
    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_e5b793d32b81744e042b9891.woff2')format("woff");}.ff1_c00000{font-family:ff1_c00000;line-height:0.758000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00000;src:url('chunks/assets/font_8ac418426cc7835642c51957.woff2')format("woff");}.ff2_c00000{font-family:ff2_c00000;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00000{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,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;}
.fc2_c00000{color:rgb(210,218,227);}
.fc1_c00000{color:rgb(55,102,156);}
.fc3_c00000{color:rgb(0,0,0);}
.fc0_c00000{color:rgb(255,255,255);}
.fs4_c00000{font-size:78.000000px;}
.fs5_c00000{font-size:84.000000px;}
.fs2_c00000{font-size:144.000000px;}
.fs0_c00000{font-size:180.000000px;}
.fs3_c00000{font-size:270.000000px;}
.fs1_c00000{font-size:300.000000px;}
.y0_c00000{bottom:0.000000px;}
.yb_c00000{bottom:12.000000px;}
.y2_c00000{bottom:19.500000px;}
.y4_c00000{bottom:36.000000px;}
.ye_c00000{bottom:42.000000px;}
.y10_c00000{bottom:105.000015px;}
.yf_c00000{bottom:128.699985px;}
.y9_c00000{bottom:178.499985px;}
.yc_c00000{bottom:256.200000px;}
.y8_c00000{bottom:261.000000px;}
.yd_c00000{bottom:329.700000px;}
.y7_c00000{bottom:343.500000px;}
.ya_c00000{bottom:392.700000px;}
.y6_c00000{bottom:496.200000px;}
.y5_c00000{bottom:932.700000px;}
.y3_c00000{bottom:1090.200000px;}
.y1_c00000{bottom:1117.200000px;}
.ha_c00000{height:28.500000px;}
.h6_c00000{height:48.000000px;}
.hb_c00000{height:55.380000px;}
.hc_c00000{height:58.500000px;}
.hd_c00000{height:59.640000px;}
.h2_c00000{height:61.500000px;}
.h4_c00000{height:93.000000px;}
.h7_c00000{height:102.240000px;}
.he_c00000{height:121.500000px;}
.h3_c00000{height:134.280000px;}
.h9_c00000{height:191.700000px;}
.h5_c00000{height:213.000000px;}
.h8_c00000{height:394.500000px;}
.h0_c00000{height:1262.700000px;}
.h1_c00000{height:1263.000000px;}
.w2_c00000{width:120.000000px;}
.w6_c00000{width:124.500000px;}
.w3_c00000{width:135.000000px;}
.w8_c00000{width:420.000000px;}
.w7_c00000{width:421.500000px;}
.w5_c00000{width:648.000000px;}
.w4_c00000{width:697.500000px;}
.w1_c00000{width:892.500000px;}
.w0_c00000{width:892.800000px;}
.x0_c00000{left:0.000000px;}
.xc_c00000{left:1.500000px;}
.x2_c00000{left:12.029550px;}
.x4_c00000{left:29.025000px;}
.xb_c00000{left:66.000000px;}
.x5_c00000{left:109.500000px;}
.x7_c00000{left:159.000000px;}
.x9_c00000{left:199.732650px;}
.x8_c00000{left:202.432650px;}
.x6_c00000{left:306.792300px;}
.xa_c00000{left:393.525000px;}
.x1_c00000{left:582.000000px;}
.x3_c00000{left:718.500000px;}
@media print{
.v0_c00000{vertical-align:0.000000pt;}
.ls0_c00000{letter-spacing:0.000000pt;}
.ws0_c00000{word-spacing:0.000000pt;}
.fs4_c00000{font-size:69.333333pt;}
.fs5_c00000{font-size:74.666667pt;}
.fs2_c00000{font-size:128.000000pt;}
.fs0_c00000{font-size:160.000000pt;}
.fs3_c00000{font-size:240.000000pt;}
.fs1_c00000{font-size:266.666667pt;}
.y0_c00000{bottom:0.000000pt;}
.yb_c00000{bottom:10.666667pt;}
.y2_c00000{bottom:17.333333pt;}
.y4_c00000{bottom:32.000000pt;}
.ye_c00000{bottom:37.333333pt;}
.y10_c00000{bottom:93.333347pt;}
.yf_c00000{bottom:114.399987pt;}
.y9_c00000{bottom:158.666653pt;}
.yc_c00000{bottom:227.733333pt;}
.y8_c00000{bottom:232.000000pt;}
.yd_c00000{bottom:293.066667pt;}
.y7_c00000{bottom:305.333333pt;}
.ya_c00000{bottom:349.066667pt;}
.y6_c00000{bottom:441.066667pt;}
.y5_c00000{bottom:829.066667pt;}
.y3_c00000{bottom:969.066667pt;}
.y1_c00000{bottom:993.066667pt;}
.ha_c00000{height:25.333333pt;}
.h6_c00000{height:42.666667pt;}
.hb_c00000{height:49.226667pt;}
.hc_c00000{height:52.000000pt;}
.hd_c00000{height:53.013333pt;}
.h2_c00000{height:54.666667pt;}
.h4_c00000{height:82.666667pt;}
.h7_c00000{height:90.880000pt;}
.he_c00000{height:108.000000pt;}
.h3_c00000{height:119.360000pt;}
.h9_c00000{height:170.400000pt;}
.h5_c00000{height:189.333333pt;}
.h8_c00000{height:350.666667pt;}
.h0_c00000{height:1122.400000pt;}
.h1_c00000{height:1122.666667pt;}
.w2_c00000{width:106.666667pt;}
.w6_c00000{width:110.666667pt;}
.w3_c00000{width:120.000000pt;}
.w8_c00000{width:373.333333pt;}
.w7_c00000{width:374.666667pt;}
.w5_c00000{width:576.000000pt;}
.w4_c00000{width:620.000000pt;}
.w1_c00000{width:793.333333pt;}
.w0_c00000{width:793.600000pt;}
.x0_c00000{left:0.000000pt;}
.xc_c00000{left:1.333333pt;}
.x2_c00000{left:10.692933pt;}
.x4_c00000{left:25.800000pt;}
.xb_c00000{left:58.666667pt;}
.x5_c00000{left:97.333333pt;}
.x7_c00000{left:141.333333pt;}
.x9_c00000{left:177.540133pt;}
.x8_c00000{left:179.940133pt;}
.x6_c00000{left:272.704267pt;}
.xa_c00000{left:349.800000pt;}
.x1_c00000{left:517.333333pt;}
.x3_c00000{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_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_ec26109997e4bfee7c0bd081.woff2')format("woff");}.ff1_c00001{font-family:ff1_c00001;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00001{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00001{vertical-align:0.000000px;}
.ls0_c00001{letter-spacing:0.000000px;}
.sc__c00001{text-shadow:none;}
.sc0_c00001{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00001{-webkit-text-stroke:0px transparent;}
.sc0_c00001{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00001{word-spacing:0.000000px;}
.fc1_c00001{color:transparent;}
.fc0_c00001{color:rgb(0,0,0);}
.fs0_c00001{font-size:78.000000px;}
.y0_c00001{bottom:0.000000px;}
.y2_c00001{bottom:1504.200000px;}
.y1_c00001{bottom:1640.700000px;}
.h2_c00001{height:0.000000px;}
.h3_c00001{height:55.380000px;}
.h0_c00001{height:1262.700000px;}
.h1_c00001{height:1263.000000px;}
.w2_c00001{width:0.000000px;}
.w1_c00001{width:892.500000px;}
.w0_c00001{width:892.800000px;}
.x0_c00001{left:0.000000px;}
.x1_c00001{left:67.500000px;}
@media print{
.v0_c00001{vertical-align:0.000000pt;}
.ls0_c00001{letter-spacing:0.000000pt;}
.ws0_c00001{word-spacing:0.000000pt;}
.fs0_c00001{font-size:69.333333pt;}
.y0_c00001{bottom:0.000000pt;}
.y2_c00001{bottom:1337.066667pt;}
.y1_c00001{bottom:1458.400000pt;}
.h2_c00001{height:0.000000pt;}
.h3_c00001{height:49.226667pt;}
.h0_c00001{height:1122.400000pt;}
.h1_c00001{height:1122.666667pt;}
.w2_c00001{width:0.000000pt;}
.w1_c00001{width:793.333333pt;}
.w0_c00001{width:793.600000pt;}
.x0_c00001{left:0.000000pt;}
.x1_c00001{left:60.000000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ec26109997e4bfee7c0bd081.woff2')format("woff");}.ff1_c00002{font-family:ff1_c00002;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00002{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,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;}
.fc1_c00002{color:transparent;}
.fc0_c00002{color:rgb(0,0,0);}
.fs0_c00002{font-size:78.000000px;}
.y0_c00002{bottom:0.000000px;}
.y2_c00002{bottom:2740.200000px;}
.y1_c00002{bottom:2876.700000px;}
.h2_c00002{height:0.000000px;}
.h3_c00002{height:55.380000px;}
.h0_c00002{height:1262.700000px;}
.h1_c00002{height:1263.000000px;}
.w2_c00002{width:0.000000px;}
.w1_c00002{width:892.500000px;}
.w0_c00002{width:892.800000px;}
.x0_c00002{left:0.000000px;}
.x1_c00002{left:67.500000px;}
@media print{
.v0_c00002{vertical-align:0.000000pt;}
.ls0_c00002{letter-spacing:0.000000pt;}
.ws0_c00002{word-spacing:0.000000pt;}
.fs0_c00002{font-size:69.333333pt;}
.y0_c00002{bottom:0.000000pt;}
.y2_c00002{bottom:2435.733333pt;}
.y1_c00002{bottom:2557.066667pt;}
.h2_c00002{height:0.000000pt;}
.h3_c00002{height:49.226667pt;}
.h0_c00002{height:1122.400000pt;}
.h1_c00002{height:1122.666667pt;}
.w2_c00002{width:0.000000pt;}
.w1_c00002{width:793.333333pt;}
.w0_c00002{width:793.600000pt;}
.x0_c00002{left:0.000000pt;}
.x1_c00002{left:60.000000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_78ab83d11150fd384bd9cd52.woff2')format("woff");}.ff1_c00003{font-family:ff1_c00003;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00003;src:url('chunks/assets/font_ac07f98e49569ca5f177621e.woff2')format("woff");}.ff2_c00003{font-family:ff2_c00003;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00003;src:url('chunks/assets/font_0c412a7ac2210fe8c6e318c5.woff2')format("woff");}.ff3_c00003{font-family:ff3_c00003;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00003;src:url('chunks/assets/font_acaf05643403fc0462b69516.woff2')format("woff");}.ff4_c00003{font-family:ff4_c00003;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00003;src:url('chunks/assets/font_b199647fa79298e9570caeab.woff2')format("woff");}.ff5_c00003{font-family:ff5_c00003;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00003;src:url('chunks/assets/font_d87914553e5a4e6343686227.woff2')format("woff");}.ff6_c00003{font-family:ff6_c00003;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00003;src:url('chunks/assets/font_a551033bf05c477b07eb599b.woff2')format("woff");}.ff7_c00003{font-family:ff7_c00003;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m36_c00003{transform:matrix(0.055557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.055557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.055557,0.000000,0.000000,0.250000,0,0);}
.m7_c00003{transform:matrix(0.107142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107142,0.000000,0.000000,0.250000,0,0);}
.m15_c00003{transform:matrix(0.109980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109980,0.000000,0.000000,0.250000,0,0);}
.m16_c00003{transform:matrix(0.117892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117892,0.000000,0.000000,0.250000,0,0);}
.m37_c00003{transform:matrix(0.125001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125001,0.000000,0.000000,0.250000,0,0);}
.m3a_c00003{transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);}
.m9_c00003{transform:matrix(0.133333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133333,0.000000,0.000000,0.250000,0,0);}
.m24_c00003{transform:matrix(0.138799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138799,0.000000,0.000000,0.250000,0,0);}
.m35_c00003{transform:matrix(0.138890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138890,0.000000,0.000000,0.250000,0,0);}
.mf_c00003{transform:matrix(0.146252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146252,0.000000,0.000000,0.250000,0,0);}
.m20_c00003{transform:matrix(0.153508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153508,0.000000,0.000000,0.250000,0,0);}
.m11_c00003{transform:matrix(0.157164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157164,0.000000,0.000000,0.250000,0,0);}
.m1a_c00003{transform:matrix(0.159740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159740,0.000000,0.000000,0.250000,0,0);}
.m8_c00003{transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);}
.m18_c00003{transform:matrix(0.175925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175925,0.000000,0.000000,0.250000,0,0);}
.m29_c00003{transform:matrix(0.189722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189722,0.000000,0.000000,0.250000,0,0);}
.m38_c00003{transform:matrix(0.190753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190753,0.000000,0.000000,0.250000,0,0);}
.m22_c00003{transform:matrix(0.192167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192167,0.000000,0.000000,0.250000,0,0);}
.m1b_c00003{transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);}
.m17_c00003{transform:matrix(0.202141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202141,0.000000,0.000000,0.250000,0,0);}
.m33_c00003{transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);}
.m27_c00003{transform:matrix(0.207047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207047,0.000000,0.000000,0.250000,0,0);}
.m2b_c00003{transform:matrix(0.207427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207427,0.000000,0.000000,0.250000,0,0);}
.m2_c00003{transform:matrix(0.211533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211533,0.000000,0.000000,0.250000,0,0);}
.m3_c00003{transform:matrix(0.215758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215758,0.000000,0.000000,0.250000,0,0);}
.m5_c00003{transform:matrix(0.222109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222109,0.000000,0.000000,0.250000,0,0);}
.m6_c00003{transform:matrix(0.222499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222499,0.000000,0.000000,0.250000,0,0);}
.m1f_c00003{transform:matrix(0.230922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230922,0.000000,0.000000,0.250000,0,0);}
.m1_c00003{transform:matrix(0.236985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236985,0.000000,0.000000,0.250000,0,0);}
.m4_c00003{transform:matrix(0.241212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241212,0.000000,0.000000,0.250000,0,0);}
.m14_c00003{transform:matrix(0.242579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242579,0.000000,0.000000,0.250000,0,0);}
.m23_c00003{transform:matrix(0.246564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246564,0.000000,0.000000,0.250000,0,0);}
.m1c_c00003{transform:matrix(0.249337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249337,0.000000,0.000000,0.250000,0,0);}
.m30_c00003{transform:matrix(0.249745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249745,0.000000,0.000000,0.250000,0,0);}
.m0_c00003{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m39_c00003{transform:matrix(0.254039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254039,0.000000,0.000000,0.250000,0,0);}
.m19_c00003{transform:matrix(0.254336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254336,0.000000,0.000000,0.250000,0,0);}
.m2e_c00003{transform:matrix(0.256541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256541,0.000000,0.000000,0.250000,0,0);}
.m28_c00003{transform:matrix(0.257211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257211,0.000000,0.000000,0.250000,0,0);}
.m26_c00003{transform:matrix(0.267746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267746,0.000000,0.000000,0.250000,0,0);}
.me_c00003{transform:matrix(0.273984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273984,0.000000,0.000000,0.250000,0,0);}
.m2d_c00003{transform:matrix(0.274962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274962,0.000000,0.000000,0.250000,0,0);}
.m2f_c00003{transform:matrix(0.275373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275373,0.000000,0.000000,0.250000,0,0);}
.m2c_c00003{transform:matrix(0.278367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278367,0.000000,0.000000,0.250000,0,0);}
.m32_c00003{transform:matrix(0.283887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283887,0.000000,0.000000,0.250000,0,0);}
.md_c00003{transform:matrix(0.303096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303096,0.000000,0.000000,0.250000,0,0);}
.m1e_c00003{transform:matrix(0.309977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309977,0.000000,0.000000,0.250000,0,0);}
.mc_c00003{transform:matrix(0.319500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00003{transform:matrix(0.320864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320864,0.000000,0.000000,0.250000,0,0);}
.m12_c00003{transform:matrix(0.324416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324416,0.000000,0.000000,0.250000,0,0);}
.mb_c00003{transform:matrix(0.325480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325480,0.000000,0.000000,0.250000,0,0);}
.ma_c00003{transform:matrix(0.335801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335801,0.000000,0.000000,0.250000,0,0);}
.m34_c00003{transform:matrix(0.339611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339611,0.000000,0.000000,0.250000,0,0);}
.m13_c00003{transform:matrix(0.346433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346433,0.000000,0.000000,0.250000,0,0);}
.m2a_c00003{transform:matrix(0.348747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348747,0.000000,0.000000,0.250000,0,0);}
.m31_c00003{transform:matrix(0.355083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355083,0.000000,0.000000,0.250000,0,0);}
.m25_c00003{transform:matrix(0.376445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376445,0.000000,0.000000,0.250000,0,0);}
.m10_c00003{transform:matrix(0.381580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381580,0.000000,0.000000,0.250000,0,0);}
.m21_c00003{transform:matrix(0.599312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.599312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.599312,0.000000,0.000000,0.250000,0,0);}
.v0_c00003{vertical-align:0.000000px;}
.ls1_c00003{letter-spacing:-2.792790px;}
.ls1b_c00003{letter-spacing:-2.577967px;}
.ls9_c00003{letter-spacing:-2.550240px;}
.ls5_c00003{letter-spacing:-2.439367px;}
.lsa_c00003{letter-spacing:-1.981980px;}
.ls18_c00003{letter-spacing:-1.815667px;}
.lsb_c00003{letter-spacing:-1.552320px;}
.ls11_c00003{letter-spacing:-1.510740px;}
.lse_c00003{letter-spacing:-1.413720px;}
.ls14_c00003{letter-spacing:-1.365217px;}
.ls1e_c00003{letter-spacing:-1.330567px;}
.ls10_c00003{letter-spacing:-1.205820px;}
.ls15_c00003{letter-spacing:-1.053360px;}
.ls13_c00003{letter-spacing:-0.145411px;}
.ls0_c00003{letter-spacing:0.000000px;}
.ls12_c00003{letter-spacing:1.267200px;}
.lsf_c00003{letter-spacing:1.722600px;}
.lsd_c00003{letter-spacing:2.019600px;}
.ls17_c00003{letter-spacing:2.593810px;}
.ls8_c00003{letter-spacing:3.395700px;}
.ls16_c00003{letter-spacing:3.474900px;}
.ls4_c00003{letter-spacing:3.484810px;}
.ls3_c00003{letter-spacing:3.633310px;}
.ls7_c00003{letter-spacing:3.643200px;}
.ls1a_c00003{letter-spacing:3.682810px;}
.ls19_c00003{letter-spacing:3.801610px;}
.ls1f_c00003{letter-spacing:4.187700px;}
.ls1d_c00003{letter-spacing:25.660998px;}
.ls20_c00003{letter-spacing:31.363200px;}
.lsc_c00003{letter-spacing:38.491398px;}
.ls2_c00003{letter-spacing:49.896198px;}
.ls1c_c00003{letter-spacing:51.321798px;}
.ls6_c00003{letter-spacing:54.172998px;}
.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;}
._2_c00003{margin-left:-10.293426px;}
._5_c00003{margin-left:-1.229184px;}
._6_c00003{width:3.149784px;}
._4_c00003{width:11.600424px;}
._3_c00003{width:27.841913px;}
._1_c00003{width:52.678098px;}
._0_c00003{width:61.026966px;}
.fc0_c00003{color:transparent;}
.fs2_c00003{font-size:17.028000px;}
.fs20_c00003{font-size:25.146000px;}
.fs10_c00003{font-size:25.344000px;}
.fs1b_c00003{font-size:25.660998px;}
.fs0_c00003{font-size:28.314000px;}
.fs11_c00003{font-size:28.512000px;}
.fs13_c00003{font-size:30.096000px;}
.fs21_c00003{font-size:31.363200px;}
.fse_c00003{font-size:34.452000px;}
.fs1d_c00003{font-size:38.016198px;}
.fs1a_c00003{font-size:38.412000px;}
.fsc_c00003{font-size:38.491398px;}
.fs1c_c00003{font-size:38.610000px;}
.fs12_c00003{font-size:39.006198px;}
.fs17_c00003{font-size:39.600000px;}
.fsd_c00003{font-size:40.392000px;}
.fsf_c00003{font-size:43.164000px;}
.fsb_c00003{font-size:44.352000px;}
.fs3_c00003{font-size:49.896198px;}
.fs19_c00003{font-size:51.321798px;}
.fs15_c00003{font-size:51.876198px;}
.fs6_c00003{font-size:54.172998px;}
.fsa_c00003{font-size:56.628000px;}
.fs8_c00003{font-size:66.330000px;}
.fs9_c00003{font-size:67.914000px;}
.fs1f_c00003{font-size:68.112198px;}
.fs14_c00003{font-size:69.498000px;}
.fs5_c00003{font-size:69.696198px;}
.fs4_c00003{font-size:72.666198px;}
.fs7_c00003{font-size:72.864000px;}
.fs18_c00003{font-size:73.656198px;}
.fs16_c00003{font-size:76.032198px;}
.fs1_c00003{font-size:79.794000px;}
.fs1e_c00003{font-size:83.754000px;}
.y0_c00003{bottom:0.000000px;}
.y1_c00003{bottom:76.500000px;}
.y12_c00003{bottom:131.067135px;}
.y11_c00003{bottom:132.136335px;}
.y10_c00003{bottom:134.274735px;}
.yf_c00003{bottom:143.897535px;}
.y15_c00003{bottom:168.132735px;}
.ye_c00003{bottom:174.186585px;}
.y14_c00003{bottom:178.468335px;}
.yd_c00003{bottom:196.288335px;}
.y13_c00003{bottom:197.001135px;}
.yb_c00003{bottom:252.955935px;}
.ya_c00003{bottom:272.914335px;}
.y8_c00003{bottom:274.334985px;}
.y9_c00003{bottom:276.834735px;}
.y7_c00003{bottom:295.006185px;}
.y6_c00003{bottom:316.038735px;}
.yc_c00003{bottom:565.157385px;}
.y5_c00003{bottom:573.359535px;}
.y4_c00003{bottom:576.918585px;}
.y3_c00003{bottom:741.577860px;}
.y2_c00003{bottom:858.118185px;}
.h1e_c00003{height:17.090225px;}
.h4_c00003{height:17.759672px;}
.h24_c00003{height:20.887891px;}
.h13_c00003{height:24.861375px;}
.he_c00003{height:25.635271px;}
.h23_c00003{height:26.226492px;}
.h2_c00003{height:29.530617px;}
.h14_c00003{height:29.737125px;}
.h16_c00003{height:30.331125px;}
.h5_c00003{height:33.230868px;}
.h10_c00003{height:33.812754px;}
.h1c_c00003{height:34.180317px;}
.h11_c00003{height:34.721156px;}
.h8_c00003{height:36.079217px;}
.h1d_c00003{height:37.699277px;}
.h15_c00003{height:39.310934px;}
.h20_c00003{height:39.649707px;}
.h1f_c00003{height:40.269023px;}
.h1a_c00003{height:41.301563px;}
.hf_c00003{height:42.127594px;}
.hd_c00003{height:43.529063px;}
.h12_c00003{height:45.018703px;}
.h18_c00003{height:50.913651px;}
.hc_c00003{height:55.577285px;}
.hb_c00003{height:66.653877px;}
.h17_c00003{height:68.208486px;}
.h7_c00003{height:68.403007px;}
.ha_c00003{height:69.180117px;}
.h22_c00003{height:71.038894px;}
.h6_c00003{height:71.317899px;}
.h9_c00003{height:71.512031px;}
.h1b_c00003{height:72.289530px;}
.h19_c00003{height:74.621444px;}
.h3_c00003{height:78.313447px;}
.h21_c00003{height:82.199971px;}
.h1_c00003{height:1110.000000px;}
.h0_c00003{height:1263.000000px;}
.w1_c00003{width:733.500000px;}
.w0_c00003{width:892.500000px;}
.x0_c00003{left:0.000000px;}
.x1_c00003{left:79.500000px;}
.x2_c00003{left:99.633135px;}
.x4_c00003{left:141.391335px;}
.x5_c00003{left:242.410935px;}
.x6_c00003{left:286.441185px;}
.x3_c00003{left:304.562789px;}
.xc_c00003{left:329.327985px;}
.x1b_c00003{left:330.877335px;}
.x34_c00003{left:334.050285px;}
.x35_c00003{left:335.985735px;}
.x37_c00003{left:340.024935px;}
.x2f_c00003{left:342.430635px;}
.x1c_c00003{left:345.167985px;}
.x38_c00003{left:347.019285px;}
.x1d_c00003{left:351.751485px;}
.x36_c00003{left:352.909785px;}
.xd_c00003{left:353.919585px;}
.x28_c00003{left:363.438435px;}
.xe_c00003{left:364.616535px;}
.x15_c00003{left:373.392885px;}
.x29_c00003{left:375.179835px;}
.x1e_c00003{left:376.917285px;}
.x16_c00003{left:378.298335px;}
.x7_c00003{left:385.238235px;}
.x17_c00003{left:386.426235px;}
.x31_c00003{left:395.950035px;}
.xf_c00003{left:397.311285px;}
.x1f_c00003{left:403.092885px;}
.x10_c00003{left:409.275435px;}
.x32_c00003{left:418.913085px;}
.x39_c00003{left:429.085335px;}
.x20_c00003{left:430.307985px;}
.x2a_c00003{left:432.035535px;}
.x18_c00003{left:440.529735px;}
.x2d_c00003{left:445.157985px;}
.x8_c00003{left:452.528535px;}
.x30_c00003{left:462.819585px;}
.x21_c00003{left:473.744235px;}
.x33_c00003{left:485.223285px;}
.x22_c00003{left:486.723135px;}
.x11_c00003{left:496.860735px;}
.x23_c00003{left:507.884385px;}
.x2b_c00003{left:518.482335px;}
.x12_c00003{left:519.803985px;}
.x19_c00003{left:529.208985px;}
.x13_c00003{left:531.070185px;}
.x24_c00003{left:561.631485px;}
.x25_c00003{left:564.987585px;}
.x2c_c00003{left:567.002235px;}
.x9_c00003{left:573.709485px;}
.x26_c00003{left:575.026185px;}
.xb_c00003{left:591.178035px;}
.x27_c00003{left:596.038935px;}
.x14_c00003{left:618.393135px;}
.x1a_c00003{left:627.911985px;}
.xa_c00003{left:639.648435px;}
.x2e_c00003{left:659.087085px;}
.x3a_c00003{left:704.552835px;}
.x3b_c00003{left:706.225935px;}
@media print{
.v0_c00003{vertical-align:0.000000pt;}
.ls1_c00003{letter-spacing:-2.482480pt;}
.ls1b_c00003{letter-spacing:-2.291526pt;}
.ls9_c00003{letter-spacing:-2.266880pt;}
.ls5_c00003{letter-spacing:-2.168326pt;}
.lsa_c00003{letter-spacing:-1.761760pt;}
.ls18_c00003{letter-spacing:-1.613926pt;}
.lsb_c00003{letter-spacing:-1.379840pt;}
.ls11_c00003{letter-spacing:-1.342880pt;}
.lse_c00003{letter-spacing:-1.256640pt;}
.ls14_c00003{letter-spacing:-1.213526pt;}
.ls1e_c00003{letter-spacing:-1.182726pt;}
.ls10_c00003{letter-spacing:-1.071840pt;}
.ls15_c00003{letter-spacing:-0.936320pt;}
.ls13_c00003{letter-spacing:-0.129254pt;}
.ls0_c00003{letter-spacing:0.000000pt;}
.ls12_c00003{letter-spacing:1.126400pt;}
.lsf_c00003{letter-spacing:1.531200pt;}
.lsd_c00003{letter-spacing:1.795200pt;}
.ls17_c00003{letter-spacing:2.305609pt;}
.ls8_c00003{letter-spacing:3.018400pt;}
.ls16_c00003{letter-spacing:3.088800pt;}
.ls4_c00003{letter-spacing:3.097609pt;}
.ls3_c00003{letter-spacing:3.229609pt;}
.ls7_c00003{letter-spacing:3.238400pt;}
.ls1a_c00003{letter-spacing:3.273609pt;}
.ls19_c00003{letter-spacing:3.379209pt;}
.ls1f_c00003{letter-spacing:3.722400pt;}
.ls1d_c00003{letter-spacing:22.809776pt;}
.ls20_c00003{letter-spacing:27.878400pt;}
.lsc_c00003{letter-spacing:34.214576pt;}
.ls2_c00003{letter-spacing:44.352176pt;}
.ls1c_c00003{letter-spacing:45.619376pt;}
.ls6_c00003{letter-spacing:48.153776pt;}
.ws0_c00003{word-spacing:0.000000pt;}
._2_c00003{margin-left:-9.149712pt;}
._5_c00003{margin-left:-1.092608pt;}
._6_c00003{width:2.799808pt;}
._4_c00003{width:10.311488pt;}
._3_c00003{width:24.748367pt;}
._1_c00003{width:46.824976pt;}
._0_c00003{width:54.246192pt;}
.fs2_c00003{font-size:15.136000pt;}
.fs20_c00003{font-size:22.352000pt;}
.fs10_c00003{font-size:22.528000pt;}
.fs1b_c00003{font-size:22.809776pt;}
.fs0_c00003{font-size:25.168000pt;}
.fs11_c00003{font-size:25.344000pt;}
.fs13_c00003{font-size:26.752000pt;}
.fs21_c00003{font-size:27.878400pt;}
.fse_c00003{font-size:30.624000pt;}
.fs1d_c00003{font-size:33.792176pt;}
.fs1a_c00003{font-size:34.144000pt;}
.fsc_c00003{font-size:34.214576pt;}
.fs1c_c00003{font-size:34.320000pt;}
.fs12_c00003{font-size:34.672176pt;}
.fs17_c00003{font-size:35.200000pt;}
.fsd_c00003{font-size:35.904000pt;}
.fsf_c00003{font-size:38.368000pt;}
.fsb_c00003{font-size:39.424000pt;}
.fs3_c00003{font-size:44.352176pt;}
.fs19_c00003{font-size:45.619376pt;}
.fs15_c00003{font-size:46.112176pt;}
.fs6_c00003{font-size:48.153776pt;}
.fsa_c00003{font-size:50.336000pt;}
.fs8_c00003{font-size:58.960000pt;}
.fs9_c00003{font-size:60.368000pt;}
.fs1f_c00003{font-size:60.544176pt;}
.fs14_c00003{font-size:61.776000pt;}
.fs5_c00003{font-size:61.952176pt;}
.fs4_c00003{font-size:64.592176pt;}
.fs7_c00003{font-size:64.768000pt;}
.fs18_c00003{font-size:65.472176pt;}
.fs16_c00003{font-size:67.584176pt;}
.fs1_c00003{font-size:70.928000pt;}
.fs1e_c00003{font-size:74.448000pt;}
.y0_c00003{bottom:0.000000pt;}
.y1_c00003{bottom:68.000000pt;}
.y12_c00003{bottom:116.504120pt;}
.y11_c00003{bottom:117.454520pt;}
.y10_c00003{bottom:119.355320pt;}
.yf_c00003{bottom:127.908920pt;}
.y15_c00003{bottom:149.451320pt;}
.ye_c00003{bottom:154.832520pt;}
.y14_c00003{bottom:158.638520pt;}
.yd_c00003{bottom:174.478520pt;}
.y13_c00003{bottom:175.112120pt;}
.yb_c00003{bottom:224.849720pt;}
.ya_c00003{bottom:242.590520pt;}
.y8_c00003{bottom:243.853320pt;}
.y9_c00003{bottom:246.075320pt;}
.y7_c00003{bottom:262.227720pt;}
.y6_c00003{bottom:280.923320pt;}
.yc_c00003{bottom:502.362120pt;}
.y5_c00003{bottom:509.652920pt;}
.y4_c00003{bottom:512.816520pt;}
.y3_c00003{bottom:659.180320pt;}
.y2_c00003{bottom:762.771720pt;}
.h1e_c00003{height:15.191311pt;}
.h4_c00003{height:15.786375pt;}
.h24_c00003{height:18.567014pt;}
.h13_c00003{height:22.099000pt;}
.he_c00003{height:22.786908pt;}
.h23_c00003{height:23.312438pt;}
.h2_c00003{height:26.249438pt;}
.h14_c00003{height:26.433000pt;}
.h16_c00003{height:26.961000pt;}
.h5_c00003{height:29.538549pt;}
.h10_c00003{height:30.055781pt;}
.h1c_c00003{height:30.382504pt;}
.h11_c00003{height:30.863250pt;}
.h8_c00003{height:32.070415pt;}
.h1d_c00003{height:33.510469pt;}
.h15_c00003{height:34.943052pt;}
.h20_c00003{height:35.244184pt;}
.h1f_c00003{height:35.794688pt;}
.h1a_c00003{height:36.712500pt;}
.hf_c00003{height:37.446750pt;}
.hd_c00003{height:38.692500pt;}
.h12_c00003{height:40.016625pt;}
.h18_c00003{height:45.256579pt;}
.hc_c00003{height:49.402031pt;}
.hb_c00003{height:59.247891pt;}
.h17_c00003{height:60.629766pt;}
.h7_c00003{height:60.802673pt;}
.ha_c00003{height:61.493438pt;}
.h22_c00003{height:63.145684pt;}
.h6_c00003{height:63.393688pt;}
.h9_c00003{height:63.566250pt;}
.h1b_c00003{height:64.257360pt;}
.h19_c00003{height:66.330173pt;}
.h3_c00003{height:69.611953pt;}
.h21_c00003{height:73.066641pt;}
.h1_c00003{height:986.666667pt;}
.h0_c00003{height:1122.666667pt;}
.w1_c00003{width:652.000000pt;}
.w0_c00003{width:793.333333pt;}
.x0_c00003{left:0.000000pt;}
.x1_c00003{left:70.666667pt;}
.x2_c00003{left:88.562787pt;}
.x4_c00003{left:125.681187pt;}
.x5_c00003{left:215.476387pt;}
.x6_c00003{left:254.614387pt;}
.x3_c00003{left:270.722479pt;}
.xc_c00003{left:292.735987pt;}
.x1b_c00003{left:294.113187pt;}
.x34_c00003{left:296.933587pt;}
.x35_c00003{left:298.653987pt;}
.x37_c00003{left:302.244387pt;}
.x2f_c00003{left:304.382787pt;}
.x1c_c00003{left:306.815987pt;}
.x38_c00003{left:308.461587pt;}
.x1d_c00003{left:312.667987pt;}
.x36_c00003{left:313.697587pt;}
.xd_c00003{left:314.595187pt;}
.x28_c00003{left:323.056387pt;}
.xe_c00003{left:324.103587pt;}
.x15_c00003{left:331.904787pt;}
.x29_c00003{left:333.493187pt;}
.x1e_c00003{left:335.037587pt;}
.x16_c00003{left:336.265187pt;}
.x7_c00003{left:342.433987pt;}
.x17_c00003{left:343.489987pt;}
.x31_c00003{left:351.955587pt;}
.xf_c00003{left:353.165587pt;}
.x1f_c00003{left:358.304787pt;}
.x10_c00003{left:363.800387pt;}
.x32_c00003{left:372.367187pt;}
.x39_c00003{left:381.409187pt;}
.x20_c00003{left:382.495987pt;}
.x2a_c00003{left:384.031587pt;}
.x18_c00003{left:391.581987pt;}
.x2d_c00003{left:395.695987pt;}
.x8_c00003{left:402.247587pt;}
.x30_c00003{left:411.395187pt;}
.x21_c00003{left:421.105987pt;}
.x33_c00003{left:431.309587pt;}
.x22_c00003{left:432.642787pt;}
.x11_c00003{left:441.653987pt;}
.x23_c00003{left:451.452787pt;}
.x2b_c00003{left:460.873187pt;}
.x12_c00003{left:462.047987pt;}
.x19_c00003{left:470.407987pt;}
.x13_c00003{left:472.062387pt;}
.x24_c00003{left:499.227987pt;}
.x25_c00003{left:502.211187pt;}
.x2c_c00003{left:504.001987pt;}
.x9_c00003{left:509.963987pt;}
.x26_c00003{left:511.134387pt;}
.xb_c00003{left:525.491587pt;}
.x27_c00003{left:529.812387pt;}
.x14_c00003{left:549.682787pt;}
.x1a_c00003{left:558.143987pt;}
.xa_c00003{left:568.576387pt;}
.x2e_c00003{left:585.855187pt;}
.x3a_c00003{left:626.269187pt;}
.x3b_c00003{left:627.756387pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d7a8bec137d6d37444efa2c9.woff2')format("woff");}.ff1_c00004{font-family:ff1_c00004;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00004;src:url('chunks/assets/font_7281c57e0951a19db2acb6ef.woff2')format("woff");}.ff2_c00004{font-family:ff2_c00004;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00004;src:url('chunks/assets/font_bfe4c963464fec273d82193f.woff2')format("woff");}.ff3_c00004{font-family:ff3_c00004;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00004{transform:matrix(0.207780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207780,0.000000,0.000000,0.250000,0,0);}
.m3_c00004{transform:matrix(0.238129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238129,0.000000,0.000000,0.250000,0,0);}
.m1_c00004{transform:matrix(0.240839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240839,0.000000,0.000000,0.250000,0,0);}
.m0_c00004{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m4_c00004{transform:matrix(0.278743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278743,0.000000,0.000000,0.250000,0,0);}
.v0_c00004{vertical-align:0.000000px;}
.ls2_c00004{letter-spacing:-2.785867px;}
.ls1_c00004{letter-spacing:-1.105001px;}
.ls0_c00004{letter-spacing:0.000000px;}
.ls3_c00004{letter-spacing:0.712800px;}
.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;}
._3_c00004{margin-left:-9.879518px;}
._2_c00004{width:1.846102px;}
._1_c00004{width:5.385501px;}
._4_c00004{width:86.474520px;}
._0_c00004{width:130.917481px;}
.fc0_c00004{color:transparent;}
.fs4_c00004{font-size:14.256000px;}
.fs5_c00004{font-size:22.176000px;}
.fs0_c00004{font-size:33.264000px;}
.fs3_c00004{font-size:49.896198px;}
.fs2_c00004{font-size:79.596198px;}
.fs1_c00004{font-size:101.376198px;}
.y0_c00004{bottom:0.000000px;}
.y1_c00004{bottom:76.500000px;}
.y5_c00004{bottom:149.238585px;}
.y4_c00004{bottom:289.303785px;}
.y3_c00004{bottom:293.936985px;}
.y2_c00004{bottom:335.640735px;}
.h6_c00004{height:13.991484px;}
.h7_c00004{height:23.128875px;}
.h2_c00004{height:34.693313px;}
.h5_c00004{height:50.286012px;}
.h4_c00004{height:78.119315px;}
.h3_c00004{height:102.168200px;}
.h1_c00004{height:1110.000000px;}
.h0_c00004{height:1263.000000px;}
.w1_c00004{width:718.500000px;}
.w0_c00004{width:892.500000px;}
.x0_c00004{left:0.000000px;}
.x1_c00004{left:87.000000px;}
.x3_c00004{left:223.367550px;}
.x2_c00004{left:261.645900px;}
.x4_c00004{left:269.120400px;}
.x7_c00004{left:270.481650px;}
.x5_c00004{left:300.538050px;}
.x8_c00004{left:343.345650px;}
.x9_c00004{left:349.765800px;}
.x6_c00004{left:369.268800px;}
.xa_c00004{left:479.807250px;}
@media print{
.v0_c00004{vertical-align:0.000000pt;}
.ls2_c00004{letter-spacing:-2.476326pt;}
.ls1_c00004{letter-spacing:-0.982223pt;}
.ls0_c00004{letter-spacing:0.000000pt;}
.ls3_c00004{letter-spacing:0.633600pt;}
.ws0_c00004{word-spacing:0.000000pt;}
._3_c00004{margin-left:-8.781794pt;}
._2_c00004{width:1.640980pt;}
._1_c00004{width:4.787112pt;}
._4_c00004{width:76.866240pt;}
._0_c00004{width:116.371094pt;}
.fs4_c00004{font-size:12.672000pt;}
.fs5_c00004{font-size:19.712000pt;}
.fs0_c00004{font-size:29.568000pt;}
.fs3_c00004{font-size:44.352176pt;}
.fs2_c00004{font-size:70.752176pt;}
.fs1_c00004{font-size:90.112176pt;}
.y0_c00004{bottom:0.000000pt;}
.y1_c00004{bottom:68.000000pt;}
.y5_c00004{bottom:132.656520pt;}
.y4_c00004{bottom:257.158920pt;}
.y3_c00004{bottom:261.277320pt;}
.y2_c00004{bottom:298.347320pt;}
.h6_c00004{height:12.436875pt;}
.h7_c00004{height:20.559000pt;}
.h2_c00004{height:30.838500pt;}
.h5_c00004{height:44.698677pt;}
.h4_c00004{height:69.439391pt;}
.h3_c00004{height:90.816177pt;}
.h1_c00004{height:986.666667pt;}
.h0_c00004{height:1122.666667pt;}
.w1_c00004{width:638.666667pt;}
.w0_c00004{width:793.333333pt;}
.x0_c00004{left:0.000000pt;}
.x1_c00004{left:77.333333pt;}
.x3_c00004{left:198.548933pt;}
.x2_c00004{left:232.574133pt;}
.x4_c00004{left:239.218133pt;}
.x7_c00004{left:240.428133pt;}
.x5_c00004{left:267.144933pt;}
.x8_c00004{left:305.196133pt;}
.x9_c00004{left:310.902933pt;}
.x6_c00004{left:328.238933pt;}
.xa_c00004{left:426.495333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_85fe68baec0c634e94eb9eca.woff2')format("woff");}.ff1_c00005{font-family:ff1_c00005;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00005;src:url('chunks/assets/font_605cd429c31dc792cdbeef7d.woff2')format("woff");}.ff2_c00005{font-family:ff2_c00005;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00005;src:url('chunks/assets/font_95c822a0fdfa30f42d2a2479.woff2')format("woff");}.ff3_c00005{font-family:ff3_c00005;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00005{transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);}
.m14_c00005{transform:matrix(0.139895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139895,0.000000,0.000000,0.250000,0,0);}
.m32_c00005{transform:matrix(0.184999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184999,0.000000,0.000000,0.250000,0,0);}
.m4e_c00005{transform:matrix(0.203704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203704,0.000000,0.000000,0.250000,0,0);}
.m70_c00005{transform:matrix(0.222093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222093,0.000000,0.000000,0.250000,0,0);}
.m26_c00005{transform:matrix(0.243544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243544,0.000000,0.000000,0.250000,0,0);}
.m0_c00005{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00005{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.m31_c00005{transform:matrix(0.256600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256600,0.000000,0.000000,0.250000,0,0);}
.m39_c00005{transform:matrix(0.258289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258289,0.000000,0.000000,0.250000,0,0);}
.m6_c00005{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m69_c00005{transform:matrix(0.262304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262304,0.000000,0.000000,0.250000,0,0);}
.m1e_c00005{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m18_c00005{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m44_c00005{transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);}
.m15_c00005{transform:matrix(0.266636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266636,0.000000,0.000000,0.250000,0,0);}
.m5d_c00005{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.mb_c00005{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m3b_c00005{transform:matrix(0.268107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268107,0.000000,0.000000,0.250000,0,0);}
.m29_c00005{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m49_c00005{transform:matrix(0.271337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271337,0.000000,0.000000,0.250000,0,0);}
.m4f_c00005{transform:matrix(0.271634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271634,0.000000,0.000000,0.250000,0,0);}
.m17_c00005{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m65_c00005{transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);}
.m11_c00005{transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);}
.m25_c00005{transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);}
.m5_c00005{transform:matrix(0.277324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277324,0.000000,0.000000,0.250000,0,0);}
.m48_c00005{transform:matrix(0.277421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277421,0.000000,0.000000,0.250000,0,0);}
.m6b_c00005{transform:matrix(0.277907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277907,0.000000,0.000000,0.250000,0,0);}
.m21_c00005{transform:matrix(0.278485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278485,0.000000,0.000000,0.250000,0,0);}
.m6e_c00005{transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);}
.m33_c00005{transform:matrix(0.279663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279663,0.000000,0.000000,0.250000,0,0);}
.m63_c00005{transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);}
.m1_c00005{transform:matrix(0.280038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280038,0.000000,0.000000,0.250000,0,0);}
.m5a_c00005{transform:matrix(0.280566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280566,0.000000,0.000000,0.250000,0,0);}
.m2b_c00005{transform:matrix(0.280961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280961,0.000000,0.000000,0.250000,0,0);}
.m20_c00005{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.m60_c00005{transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);}
.m12_c00005{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m43_c00005{transform:matrix(0.284963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284963,0.000000,0.000000,0.250000,0,0);}
.m3_c00005{transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);}
.m6d_c00005{transform:matrix(0.285833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285833,0.000000,0.000000,0.250000,0,0);}
.m19_c00005{transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);}
.m58_c00005{transform:matrix(0.285956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285956,0.000000,0.000000,0.250000,0,0);}
.m2d_c00005{transform:matrix(0.287936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287936,0.000000,0.000000,0.250000,0,0);}
.m3c_c00005{transform:matrix(0.288146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288146,0.000000,0.000000,0.250000,0,0);}
.m57_c00005{transform:matrix(0.290468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290468,0.000000,0.000000,0.250000,0,0);}
.m5b_c00005{transform:matrix(0.290479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290479,0.000000,0.000000,0.250000,0,0);}
.m36_c00005{transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);}
.m3f_c00005{transform:matrix(0.292127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292127,0.000000,0.000000,0.250000,0,0);}
.m2c_c00005{transform:matrix(0.292343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292343,0.000000,0.000000,0.250000,0,0);}
.m4_c00005{transform:matrix(0.292701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292701,0.000000,0.000000,0.250000,0,0);}
.m62_c00005{transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);}
.mf_c00005{transform:matrix(0.295251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295251,0.000000,0.000000,0.250000,0,0);}
.m4c_c00005{transform:matrix(0.295580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295580,0.000000,0.000000,0.250000,0,0);}
.m53_c00005{transform:matrix(0.296291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296291,0.000000,0.000000,0.250000,0,0);}
.m38_c00005{transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);}
.m23_c00005{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m46_c00005{transform:matrix(0.298084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298084,0.000000,0.000000,0.250000,0,0);}
.m50_c00005{transform:matrix(0.300705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300705,0.000000,0.000000,0.250000,0,0);}
.m27_c00005{transform:matrix(0.300789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300789,0.000000,0.000000,0.250000,0,0);}
.m42_c00005{transform:matrix(0.302107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302107,0.000000,0.000000,0.250000,0,0);}
.m5e_c00005{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m51_c00005{transform:matrix(0.304486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304486,0.000000,0.000000,0.250000,0,0);}
.m22_c00005{transform:matrix(0.305557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305557,0.000000,0.000000,0.250000,0,0);}
.m6a_c00005{transform:matrix(0.306871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306871,0.000000,0.000000,0.250000,0,0);}
.m7_c00005{transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);}
.m16_c00005{transform:matrix(0.308436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308436,0.000000,0.000000,0.250000,0,0);}
.m1f_c00005{transform:matrix(0.309138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309138,0.000000,0.000000,0.250000,0,0);}
.m8_c00005{transform:matrix(0.310765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310765,0.000000,0.000000,0.250000,0,0);}
.m13_c00005{transform:matrix(0.311735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311735,0.000000,0.000000,0.250000,0,0);}
.m6c_c00005{transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);}
.m41_c00005{transform:matrix(0.315678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315678,0.000000,0.000000,0.250000,0,0);}
.m1c_c00005{transform:matrix(0.316098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316098,0.000000,0.000000,0.250000,0,0);}
.m3a_c00005{transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);}
.m55_c00005{transform:matrix(0.317823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317823,0.000000,0.000000,0.250000,0,0);}
.m3e_c00005{transform:matrix(0.318203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318203,0.000000,0.000000,0.250000,0,0);}
.mc_c00005{transform:matrix(0.319130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319130,0.000000,0.000000,0.250000,0,0);}
.md_c00005{transform:matrix(0.319309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319309,0.000000,0.000000,0.250000,0,0);}
.m1a_c00005{transform:matrix(0.320477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320477,0.000000,0.000000,0.250000,0,0);}
.m45_c00005{transform:matrix(0.324130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324130,0.000000,0.000000,0.250000,0,0);}
.m67_c00005{transform:matrix(0.324287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324287,0.000000,0.000000,0.250000,0,0);}
.m59_c00005{transform:matrix(0.324687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324687,0.000000,0.000000,0.250000,0,0);}
.m28_c00005{transform:matrix(0.325336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325336,0.000000,0.000000,0.250000,0,0);}
.m30_c00005{transform:matrix(0.326063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326063,0.000000,0.000000,0.250000,0,0);}
.m40_c00005{transform:matrix(0.326627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326627,0.000000,0.000000,0.250000,0,0);}
.m52_c00005{transform:matrix(0.326944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326944,0.000000,0.000000,0.250000,0,0);}
.m10_c00005{transform:matrix(0.327290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327290,0.000000,0.000000,0.250000,0,0);}
.m5c_c00005{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.m3d_c00005{transform:matrix(0.328266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328266,0.000000,0.000000,0.250000,0,0);}
.m64_c00005{transform:matrix(0.328844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328844,0.000000,0.000000,0.250000,0,0);}
.m4a_c00005{transform:matrix(0.330230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330230,0.000000,0.000000,0.250000,0,0);}
.m66_c00005{transform:matrix(0.331020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331020,0.000000,0.000000,0.250000,0,0);}
.m4d_c00005{transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);}
.m37_c00005{transform:matrix(0.332412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332412,0.000000,0.000000,0.250000,0,0);}
.m47_c00005{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m68_c00005{transform:matrix(0.335559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335559,0.000000,0.000000,0.250000,0,0);}
.m56_c00005{transform:matrix(0.336485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336485,0.000000,0.000000,0.250000,0,0);}
.m6f_c00005{transform:matrix(0.336705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336705,0.000000,0.000000,0.250000,0,0);}
.m2a_c00005{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m61_c00005{transform:matrix(0.340015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340015,0.000000,0.000000,0.250000,0,0);}
.m5f_c00005{transform:matrix(0.341044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341044,0.000000,0.000000,0.250000,0,0);}
.m9_c00005{transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);}
.m35_c00005{transform:matrix(0.342513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342513,0.000000,0.000000,0.250000,0,0);}
.m54_c00005{transform:matrix(0.344085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344085,0.000000,0.000000,0.250000,0,0);}
.m1d_c00005{transform:matrix(0.347469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347469,0.000000,0.000000,0.250000,0,0);}
.m1b_c00005{transform:matrix(0.347514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347514,0.000000,0.000000,0.250000,0,0);}
.m2e_c00005{transform:matrix(0.348680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348680,0.000000,0.000000,0.250000,0,0);}
.ma_c00005{transform:matrix(0.348831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348831,0.000000,0.000000,0.250000,0,0);}
.m24_c00005{transform:matrix(0.355213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355213,0.000000,0.000000,0.250000,0,0);}
.m4b_c00005{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.me_c00005{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m2f_c00005{transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);}
.v0_c00005{vertical-align:0.000000px;}
.ls4_c00005{letter-spacing:-2.744280px;}
.lsc_c00005{letter-spacing:-2.375762px;}
.ls6_c00005{letter-spacing:-1.897474px;}
.ls0_c00005{letter-spacing:0.000000px;}
.ls8_c00005{letter-spacing:0.227383px;}
.ls5_c00005{letter-spacing:1.246687px;}
.ls7_c00005{letter-spacing:3.316500px;}
.lsa_c00005{letter-spacing:3.643200px;}
.ls3_c00005{letter-spacing:3.920400px;}
.ls1_c00005{letter-spacing:4.296610px;}
.ls2_c00005{letter-spacing:31.363200px;}
.lsb_c00005{letter-spacing:51.321798px;}
.ls9_c00005{letter-spacing:57.024198px;}
.sc__c00005{text-shadow:none;}
.sc0_c00005{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00005{-webkit-text-stroke:0px transparent;}
.sc0_c00005{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00005{word-spacing:0.000000px;}
._0_c00005{width:30.265488px;}
.fc0_c00005{color:transparent;}
.fs12_c00005{font-size:22.572000px;}
.fs1_c00005{font-size:27.720000px;}
.fs6_c00005{font-size:28.314000px;}
.fs9_c00005{font-size:31.363200px;}
.fs8_c00005{font-size:32.868000px;}
.fs0_c00005{font-size:33.660000px;}
.fs2_c00005{font-size:34.056198px;}
.fs5_c00005{font-size:38.808000px;}
.fs3_c00005{font-size:49.896198px;}
.fs10_c00005{font-size:51.321798px;}
.fsd_c00005{font-size:57.024198px;}
.fse_c00005{font-size:60.192000px;}
.fs7_c00005{font-size:60.984000px;}
.fsc_c00005{font-size:66.330000px;}
.fsf_c00005{font-size:72.864000px;}
.fsa_c00005{font-size:75.240000px;}
.fsb_c00005{font-size:78.408000px;}
.fs11_c00005{font-size:78.804000px;}
.fs4_c00005{font-size:85.932198px;}
.y0_c00005{bottom:0.000000px;}
.y3_c00005{bottom:58.356585px;}
.y2_c00005{bottom:64.420335px;}
.y1_c00005{bottom:76.500000px;}
.y1e_c00005{bottom:78.319935px;}
.y1d_c00005{bottom:187.021935px;}
.y1c_c00005{bottom:219.805785px;}
.y1b_c00005{bottom:251.886735px;}
.y1a_c00005{bottom:316.746585px;}
.y19_c00005{bottom:349.535385px;}
.y18_c00005{bottom:381.967785px;}
.y17_c00005{bottom:414.405135px;}
.y16_c00005{bottom:446.832585px;}
.y15_c00005{bottom:472.136985px;}
.y14_c00005{bottom:478.913535px;}
.y13_c00005{bottom:510.989535px;}
.y12_c00005{bottom:526.309785px;}
.y11_c00005{bottom:542.704185px;}
.y10_c00005{bottom:575.492985px;}
.ye_c00005{bottom:607.573935px;}
.yd_c00005{bottom:640.357785px;}
.y8_c00005{bottom:718.414335px;}
.yc_c00005{bottom:722.686185px;}
.y7_c00005{bottom:788.625135px;}
.y5_c00005{bottom:808.578585px;}
.y4_c00005{bottom:963.617535px;}
.yb_c00005{bottom:994.980735px;}
.ya_c00005{bottom:1005.667785px;}
.y9_c00005{bottom:1018.854585px;}
.yf_c00005{bottom:1024.200585px;}
.y6_c00005{bottom:1079.798985px;}
.hb_c00005{height:20.887891px;}
.h14_c00005{height:23.541891px;}
.h3_c00005{height:28.911094px;}
.h8_c00005{height:29.530617px;}
.h2_c00005{height:33.035449px;}
.h12_c00005{height:34.180317px;}
.ha_c00005{height:34.280297px;}
.h4_c00005{height:35.519550px;}
.hf_c00005{height:37.978116px;}
.h7_c00005{height:40.475531px;}
.h5_c00005{height:52.040175px;}
.h10_c00005{height:62.778375px;}
.h9_c00005{height:63.604406px;}
.he_c00005{height:69.180117px;}
.h11_c00005{height:71.512031px;}
.hd_c00005{height:76.953164px;}
.h13_c00005{height:77.341816px;}
.hc_c00005{height:78.472969px;}
.h6_c00005{height:84.337753px;}
.h1_c00005{height:1110.000000px;}
.h0_c00005{height:1263.000000px;}
.w1_c00005{width:733.500000px;}
.w0_c00005{width:892.500000px;}
.x0_c00005{left:0.000000px;}
.x3_c00005{left:3.469485px;}
.x2_c00005{left:7.721535px;}
.x16_c00005{left:73.898085px;}
.x47_c00005{left:76.734435px;}
.x1_c00005{left:79.500000px;}
.x3d_c00005{left:105.825585px;}
.x27_c00005{left:107.082885px;}
.x1c_c00005{left:116.586885px;}
.x48_c00005{left:117.779835px;}
.xc_c00005{left:128.184735px;}
.x28_c00005{left:129.496485px;}
.x31_c00005{left:139.876635px;}
.x44_c00005{left:150.019185px;}
.x51_c00005{left:151.217085px;}
.xd_c00005{left:160.775535px;}
.x49_c00005{left:162.602085px;}
.x5a_c00005{left:171.952635px;}
.x1d_c00005{left:183.703935px;}
.x3e_c00005{left:185.055285px;}
.x38_c00005{left:195.064185px;}
.x4a_c00005{left:196.509585px;}
.x52_c00005{left:205.261185px;}
.x57_c00005{left:215.987835px;}
.x1e_c00005{left:217.215435px;}
.x39_c00005{left:228.922185px;}
.xe_c00005{left:238.470735px;}
.x17_c00005{left:240.302235px;}
.x5b_c00005{left:248.420235px;}
.x53_c00005{left:249.811185px;}
.x32_c00005{left:251.756535px;}
.x1f_c00005{left:259.825035px;}
.x58_c00005{left:262.062435px;}
.x3f_c00005{left:272.328735px;}
.x29_c00005{left:273.531585px;}
.x4e_c00005{left:283.377135px;}
.x33_c00005{left:284.579985px;}
.x5c_c00005{left:293.801835px;}
.x20_c00005{left:295.103685px;}
.x4_c00005{left:296.331285px;}
.x40_c00005{left:316.091685px;}
.x50_c00005{left:317.487585px;}
.x2a_c00005{left:327.184635px;}
.x5d_c00005{left:337.906335px;}
.xf_c00005{left:339.104235px;}
.x54_c00005{left:340.500135px;}
.x3a_c00005{left:349.593285px;}
.x18_c00005{left:351.543585px;}
.x2b_c00005{left:361.210935px;}
.x21_c00005{left:372.244485px;}
.x5_c00005{left:377.600385px;}
.x34_c00005{left:382.070235px;}
.x10_c00005{left:383.149335px;}
.x4f_c00005{left:395.336235px;}
.x22_c00005{left:405.345135px;}
.x11_c00005{left:416.319285px;}
.x41_c00005{left:417.462735px;}
.x35_c00005{left:427.481535px;}
.x23_c00005{left:439.178385px;}
.x2c_c00005{left:442.014735px;}
.x3b_c00005{left:451.221735px;}
.x36_c00005{left:459.042735px;}
.x55_c00005{left:461.205885px;}
.x30_c00005{left:465.977685px;}
.x3c_c00005{left:472.105785px;}
.x4b_c00005{left:483.045285px;}
.x2d_c00005{left:494.360985px;}
.x12_c00005{left:505.107435px;}
.x4c_c00005{left:516.190485px;}
.x24_c00005{left:525.659835px;}
.x45_c00005{left:526.892385px;}
.x19_c00005{left:529.035735px;}
.x13_c00005{left:537.386385px;}
.x1a_c00005{left:548.830785px;}
.x37_c00005{left:560.433585px;}
.x56_c00005{left:569.893035px;}
.x25_c00005{left:570.922635px;}
.x2e_c00005{left:593.217435px;}
.x42_c00005{left:604.973685px;}
.x14_c00005{left:614.952885px;}
.x4d_c00005{left:616.027035px;}
.x2f_c00005{left:625.135035px;}
.x46_c00005{left:647.439735px;}
.x15_c00005{left:649.097985px;}
.x6_c00005{left:659.418735px;}
.x59_c00005{left:660.799785px;}
.x26_c00005{left:669.967185px;}
.x43_c00005{left:671.239335px;}
.x7_c00005{left:673.456935px;}
.x8_c00005{left:675.575535px;}
.x9_c00005{left:677.288235px;}
.xa_c00005{left:678.793035px;}
.xb_c00005{left:684.643935px;}
.x5e_c00005{left:690.222585px;}
.x1b_c00005{left:724.110285px;}
@media print{
.v0_c00005{vertical-align:0.000000pt;}
.ls4_c00005{letter-spacing:-2.439360pt;}
.lsc_c00005{letter-spacing:-2.111789pt;}
.ls6_c00005{letter-spacing:-1.686643pt;}
.ls0_c00005{letter-spacing:0.000000pt;}
.ls8_c00005{letter-spacing:0.202118pt;}
.ls5_c00005{letter-spacing:1.108166pt;}
.ls7_c00005{letter-spacing:2.948000pt;}
.lsa_c00005{letter-spacing:3.238400pt;}
.ls3_c00005{letter-spacing:3.484800pt;}
.ls1_c00005{letter-spacing:3.819209pt;}
.ls2_c00005{letter-spacing:27.878400pt;}
.lsb_c00005{letter-spacing:45.619376pt;}
.ls9_c00005{letter-spacing:50.688176pt;}
.ws0_c00005{word-spacing:0.000000pt;}
._0_c00005{width:26.902656pt;}
.fs12_c00005{font-size:20.064000pt;}
.fs1_c00005{font-size:24.640000pt;}
.fs6_c00005{font-size:25.168000pt;}
.fs9_c00005{font-size:27.878400pt;}
.fs8_c00005{font-size:29.216000pt;}
.fs0_c00005{font-size:29.920000pt;}
.fs2_c00005{font-size:30.272176pt;}
.fs5_c00005{font-size:34.496000pt;}
.fs3_c00005{font-size:44.352176pt;}
.fs10_c00005{font-size:45.619376pt;}
.fsd_c00005{font-size:50.688176pt;}
.fse_c00005{font-size:53.504000pt;}
.fs7_c00005{font-size:54.208000pt;}
.fsc_c00005{font-size:58.960000pt;}
.fsf_c00005{font-size:64.768000pt;}
.fsa_c00005{font-size:66.880000pt;}
.fsb_c00005{font-size:69.696000pt;}
.fs11_c00005{font-size:70.048000pt;}
.fs4_c00005{font-size:76.384176pt;}
.y0_c00005{bottom:0.000000pt;}
.y3_c00005{bottom:51.872520pt;}
.y2_c00005{bottom:57.262520pt;}
.y1_c00005{bottom:68.000000pt;}
.y1e_c00005{bottom:69.617720pt;}
.y1d_c00005{bottom:166.241720pt;}
.y1c_c00005{bottom:195.382920pt;}
.y1b_c00005{bottom:223.899320pt;}
.y1a_c00005{bottom:281.552520pt;}
.y19_c00005{bottom:310.698120pt;}
.y18_c00005{bottom:339.526920pt;}
.y17_c00005{bottom:368.360120pt;}
.y16_c00005{bottom:397.184520pt;}
.y15_c00005{bottom:419.677320pt;}
.y14_c00005{bottom:425.700920pt;}
.y13_c00005{bottom:454.212920pt;}
.y12_c00005{bottom:467.830920pt;}
.y11_c00005{bottom:482.403720pt;}
.y10_c00005{bottom:511.549320pt;}
.ye_c00005{bottom:540.065720pt;}
.yd_c00005{bottom:569.206920pt;}
.y8_c00005{bottom:638.590520pt;}
.yc_c00005{bottom:642.387720pt;}
.y7_c00005{bottom:701.000120pt;}
.y5_c00005{bottom:718.736520pt;}
.y4_c00005{bottom:856.548920pt;}
.yb_c00005{bottom:884.427320pt;}
.ya_c00005{bottom:893.926920pt;}
.y9_c00005{bottom:905.648520pt;}
.yf_c00005{bottom:910.400520pt;}
.y6_c00005{bottom:959.821320pt;}
.hb_c00005{height:18.567014pt;}
.h14_c00005{height:20.926125pt;}
.h3_c00005{height:25.698750pt;}
.h8_c00005{height:26.249438pt;}
.h2_c00005{height:29.364844pt;}
.h12_c00005{height:30.382504pt;}
.ha_c00005{height:30.471375pt;}
.h4_c00005{height:31.572934pt;}
.hf_c00005{height:33.758325pt;}
.h7_c00005{height:35.978250pt;}
.h5_c00005{height:46.257934pt;}
.h10_c00005{height:55.803000pt;}
.h9_c00005{height:56.537250pt;}
.he_c00005{height:61.493438pt;}
.h11_c00005{height:63.566250pt;}
.hd_c00005{height:68.402813pt;}
.h13_c00005{height:68.748281pt;}
.hc_c00005{height:69.753750pt;}
.h6_c00005{height:74.966891pt;}
.h1_c00005{height:986.666667pt;}
.h0_c00005{height:1122.666667pt;}
.w1_c00005{width:652.000000pt;}
.w0_c00005{width:793.333333pt;}
.x0_c00005{left:0.000000pt;}
.x3_c00005{left:3.083987pt;}
.x2_c00005{left:6.863587pt;}
.x16_c00005{left:65.687187pt;}
.x47_c00005{left:68.208387pt;}
.x1_c00005{left:70.666667pt;}
.x3d_c00005{left:94.067187pt;}
.x27_c00005{left:95.184787pt;}
.x1c_c00005{left:103.632787pt;}
.x48_c00005{left:104.693187pt;}
.xc_c00005{left:113.941987pt;}
.x28_c00005{left:115.107987pt;}
.x31_c00005{left:124.334787pt;}
.x44_c00005{left:133.350387pt;}
.x51_c00005{left:134.415187pt;}
.xd_c00005{left:142.911587pt;}
.x49_c00005{left:144.535187pt;}
.x5a_c00005{left:152.846787pt;}
.x1d_c00005{left:163.292387pt;}
.x3e_c00005{left:164.493587pt;}
.x38_c00005{left:173.390387pt;}
.x4a_c00005{left:174.675187pt;}
.x52_c00005{left:182.454387pt;}
.x57_c00005{left:191.989187pt;}
.x1e_c00005{left:193.080387pt;}
.x39_c00005{left:203.486387pt;}
.xe_c00005{left:211.973987pt;}
.x17_c00005{left:213.601987pt;}
.x5b_c00005{left:220.817987pt;}
.x53_c00005{left:222.054387pt;}
.x32_c00005{left:223.783587pt;}
.x1f_c00005{left:230.955587pt;}
.x58_c00005{left:232.944387pt;}
.x3f_c00005{left:242.069987pt;}
.x29_c00005{left:243.139187pt;}
.x4e_c00005{left:251.890787pt;}
.x33_c00005{left:252.959987pt;}
.x5c_c00005{left:261.157187pt;}
.x20_c00005{left:262.314387pt;}
.x4_c00005{left:263.405587pt;}
.x40_c00005{left:280.970387pt;}
.x50_c00005{left:282.211187pt;}
.x2a_c00005{left:290.830787pt;}
.x5d_c00005{left:300.361187pt;}
.xf_c00005{left:301.425987pt;}
.x54_c00005{left:302.666787pt;}
.x3a_c00005{left:310.749587pt;}
.x18_c00005{left:312.483187pt;}
.x2b_c00005{left:321.076387pt;}
.x21_c00005{left:330.883987pt;}
.x5_c00005{left:335.644787pt;}
.x34_c00005{left:339.617987pt;}
.x10_c00005{left:340.577187pt;}
.x4f_c00005{left:351.409987pt;}
.x22_c00005{left:360.306787pt;}
.x11_c00005{left:370.061587pt;}
.x41_c00005{left:371.077987pt;}
.x35_c00005{left:379.983587pt;}
.x23_c00005{left:390.380787pt;}
.x2c_c00005{left:392.901987pt;}
.x3b_c00005{left:401.085987pt;}
.x36_c00005{left:408.037987pt;}
.x55_c00005{left:409.960787pt;}
.x30_c00005{left:414.202387pt;}
.x3c_c00005{left:419.649587pt;}
.x4b_c00005{left:429.373587pt;}
.x2d_c00005{left:439.431987pt;}
.x12_c00005{left:448.984387pt;}
.x4c_c00005{left:458.835987pt;}
.x24_c00005{left:467.253187pt;}
.x45_c00005{left:468.348787pt;}
.x19_c00005{left:470.253987pt;}
.x13_c00005{left:477.676787pt;}
.x1a_c00005{left:487.849587pt;}
.x37_c00005{left:498.163187pt;}
.x56_c00005{left:506.571587pt;}
.x25_c00005{left:507.486787pt;}
.x2e_c00005{left:527.304387pt;}
.x42_c00005{left:537.754387pt;}
.x14_c00005{left:546.624787pt;}
.x4d_c00005{left:547.579587pt;}
.x2f_c00005{left:555.675587pt;}
.x46_c00005{left:575.501987pt;}
.x15_c00005{left:576.975987pt;}
.x6_c00005{left:586.149987pt;}
.x59_c00005{left:587.377587pt;}
.x26_c00005{left:595.526387pt;}
.x43_c00005{left:596.657187pt;}
.x7_c00005{left:598.628387pt;}
.x8_c00005{left:600.511587pt;}
.x9_c00005{left:602.033987pt;}
.xa_c00005{left:603.371587pt;}
.xb_c00005{left:608.572387pt;}
.x5e_c00005{left:613.531187pt;}
.x1b_c00005{left:643.653587pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7d7e402863147b19a979006d.woff2')format("woff");}.ff1_c00006{font-family:ff1_c00006;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00006;src:url('chunks/assets/font_a68806377dda3896ee41b6db.woff2')format("woff");}.ff2_c00006{font-family:ff2_c00006;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m74_c00006{transform:matrix(0.197741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197741,0.000000,0.000000,0.250000,0,0);}
.m83_c00006{transform:matrix(0.210402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210402,0.000000,0.000000,0.250000,0,0);}
.m84_c00006{transform:matrix(0.216704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216704,0.000000,0.000000,0.250000,0,0);}
.m63_c00006{transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);}
.m4_c00006{transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);}
.m20_c00006{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m30_c00006{transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);}
.m2_c00006{transform:matrix(0.252064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252064,0.000000,0.000000,0.250000,0,0);}
.m98_c00006{transform:matrix(0.256532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256532,0.000000,0.000000,0.250000,0,0);}
.m11_c00006{transform:matrix(0.256600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256600,0.000000,0.000000,0.250000,0,0);}
.m1a_c00006{transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);}
.m2e_c00006{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m67_c00006{transform:matrix(0.259580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259580,0.000000,0.000000,0.250000,0,0);}
.m3c_c00006{transform:matrix(0.259641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259641,0.000000,0.000000,0.250000,0,0);}
.m21_c00006{transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);}
.m73_c00006{transform:matrix(0.261021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261021,0.000000,0.000000,0.250000,0,0);}
.m15_c00006{transform:matrix(0.261468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261468,0.000000,0.000000,0.250000,0,0);}
.m18_c00006{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.m4b_c00006{transform:matrix(0.261801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261801,0.000000,0.000000,0.250000,0,0);}
.m7e_c00006{transform:matrix(0.262539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262539,0.000000,0.000000,0.250000,0,0);}
.m1d_c00006{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m9_c00006{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m45_c00006{transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);}
.m8d_c00006{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m8_c00006{transform:matrix(0.266367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266367,0.000000,0.000000,0.250000,0,0);}
.m36_c00006{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m34_c00006{transform:matrix(0.268132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268132,0.000000,0.000000,0.250000,0,0);}
.m6e_c00006{transform:matrix(0.268169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268169,0.000000,0.000000,0.250000,0,0);}
.mf_c00006{transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);}
.m51_c00006{transform:matrix(0.269857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269857,0.000000,0.000000,0.250000,0,0);}
.m81_c00006{transform:matrix(0.269941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269941,0.000000,0.000000,0.250000,0,0);}
.m5_c00006{transform:matrix(0.270977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270977,0.000000,0.000000,0.250000,0,0);}
.m1_c00006{transform:matrix(0.271706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271706,0.000000,0.000000,0.250000,0,0);}
.m1c_c00006{transform:matrix(0.272278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272278,0.000000,0.000000,0.250000,0,0);}
.m1f_c00006{transform:matrix(0.272482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272482,0.000000,0.000000,0.250000,0,0);}
.m32_c00006{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m10_c00006{transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);}
.m97_c00006{transform:matrix(0.272955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272955,0.000000,0.000000,0.250000,0,0);}
.m86_c00006{transform:matrix(0.274280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274280,0.000000,0.000000,0.250000,0,0);}
.m4e_c00006{transform:matrix(0.274698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274698,0.000000,0.000000,0.250000,0,0);}
.m24_c00006{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m0_c00006{transform:matrix(0.275719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275719,0.000000,0.000000,0.250000,0,0);}
.m3b_c00006{transform:matrix(0.275942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275942,0.000000,0.000000,0.250000,0,0);}
.m2d_c00006{transform:matrix(0.276061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276061,0.000000,0.000000,0.250000,0,0);}
.m42_c00006{transform:matrix(0.276707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276707,0.000000,0.000000,0.250000,0,0);}
.m40_c00006{transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);}
.m17_c00006{transform:matrix(0.277166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277166,0.000000,0.000000,0.250000,0,0);}
.m65_c00006{transform:matrix(0.278331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278331,0.000000,0.000000,0.250000,0,0);}
.m7_c00006{transform:matrix(0.278371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278371,0.000000,0.000000,0.250000,0,0);}
.m3a_c00006{transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);}
.m53_c00006{transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);}
.m8a_c00006{transform:matrix(0.280066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280066,0.000000,0.000000,0.250000,0,0);}
.m43_c00006{transform:matrix(0.281438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281438,0.000000,0.000000,0.250000,0,0);}
.m8f_c00006{transform:matrix(0.283001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283001,0.000000,0.000000,0.250000,0,0);}
.m58_c00006{transform:matrix(0.283772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283772,0.000000,0.000000,0.250000,0,0);}
.m80_c00006{transform:matrix(0.284092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284092,0.000000,0.000000,0.250000,0,0);}
.m87_c00006{transform:matrix(0.284681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284681,0.000000,0.000000,0.250000,0,0);}
.mb_c00006{transform:matrix(0.284930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284930,0.000000,0.000000,0.250000,0,0);}
.m49_c00006{transform:matrix(0.285011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285011,0.000000,0.000000,0.250000,0,0);}
.m78_c00006{transform:matrix(0.285311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285311,0.000000,0.000000,0.250000,0,0);}
.m77_c00006{transform:matrix(0.285404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285404,0.000000,0.000000,0.250000,0,0);}
.m7c_c00006{transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);}
.m44_c00006{transform:matrix(0.285663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285663,0.000000,0.000000,0.250000,0,0);}
.m57_c00006{transform:matrix(0.286247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286247,0.000000,0.000000,0.250000,0,0);}
.m61_c00006{transform:matrix(0.287440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287440,0.000000,0.000000,0.250000,0,0);}
.m6c_c00006{transform:matrix(0.287717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287717,0.000000,0.000000,0.250000,0,0);}
.m12_c00006{transform:matrix(0.288576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288576,0.000000,0.000000,0.250000,0,0);}
.m9f_c00006{transform:matrix(0.288635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288635,0.000000,0.000000,0.250000,0,0);}
.m28_c00006{transform:matrix(0.288667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288667,0.000000,0.000000,0.250000,0,0);}
.m95_c00006{transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);}
.m5f_c00006{transform:matrix(0.289464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289464,0.000000,0.000000,0.250000,0,0);}
.m4a_c00006{transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);}
.m55_c00006{transform:matrix(0.290479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290479,0.000000,0.000000,0.250000,0,0);}
.m37_c00006{transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);}
.m5b_c00006{transform:matrix(0.291770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291770,0.000000,0.000000,0.250000,0,0);}
.m48_c00006{transform:matrix(0.292127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292127,0.000000,0.000000,0.250000,0,0);}
.m35_c00006{transform:matrix(0.292399,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292399,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292399,0.000000,0.000000,0.250000,0,0);}
.m72_c00006{transform:matrix(0.292499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292499,0.000000,0.000000,0.250000,0,0);}
.m96_c00006{transform:matrix(0.293580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293580,0.000000,0.000000,0.250000,0,0);}
.m89_c00006{transform:matrix(0.294263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294263,0.000000,0.000000,0.250000,0,0);}
.m2a_c00006{transform:matrix(0.294691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294691,0.000000,0.000000,0.250000,0,0);}
.m23_c00006{transform:matrix(0.295427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295427,0.000000,0.000000,0.250000,0,0);}
.m27_c00006{transform:matrix(0.295614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295614,0.000000,0.000000,0.250000,0,0);}
.m54_c00006{transform:matrix(0.296138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296138,0.000000,0.000000,0.250000,0,0);}
.m2f_c00006{transform:matrix(0.296190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296190,0.000000,0.000000,0.250000,0,0);}
.ma0_c00006{transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);}
.m6f_c00006{transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);}
.m8b_c00006{transform:matrix(0.297306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297306,0.000000,0.000000,0.250000,0,0);}
.m4d_c00006{transform:matrix(0.297717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297717,0.000000,0.000000,0.250000,0,0);}
.m6_c00006{transform:matrix(0.297943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297943,0.000000,0.000000,0.250000,0,0);}
.m85_c00006{transform:matrix(0.299155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299155,0.000000,0.000000,0.250000,0,0);}
.m68_c00006{transform:matrix(0.299262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299262,0.000000,0.000000,0.250000,0,0);}
.m3d_c00006{transform:matrix(0.300052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300052,0.000000,0.000000,0.250000,0,0);}
.m7d_c00006{transform:matrix(0.300480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300480,0.000000,0.000000,0.250000,0,0);}
.m13_c00006{transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);}
.m8e_c00006{transform:matrix(0.302110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302110,0.000000,0.000000,0.250000,0,0);}
.m5e_c00006{transform:matrix(0.302117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302117,0.000000,0.000000,0.250000,0,0);}
.m22_c00006{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m92_c00006{transform:matrix(0.304295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304295,0.000000,0.000000,0.250000,0,0);}
.m8c_c00006{transform:matrix(0.304800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304800,0.000000,0.000000,0.250000,0,0);}
.m9d_c00006{transform:matrix(0.305081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305081,0.000000,0.000000,0.250000,0,0);}
.m3_c00006{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);}
.m5a_c00006{transform:matrix(0.305475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305475,0.000000,0.000000,0.250000,0,0);}
.m3e_c00006{transform:matrix(0.306712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306712,0.000000,0.000000,0.250000,0,0);}
.m29_c00006{transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);}
.m6d_c00006{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m47_c00006{transform:matrix(0.308759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308759,0.000000,0.000000,0.250000,0,0);}
.m7a_c00006{transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);}
.m14_c00006{transform:matrix(0.309963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309963,0.000000,0.000000,0.250000,0,0);}
.m2b_c00006{transform:matrix(0.309994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309994,0.000000,0.000000,0.250000,0,0);}
.m5c_c00006{transform:matrix(0.310732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310732,0.000000,0.000000,0.250000,0,0);}
.m64_c00006{transform:matrix(0.311405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311405,0.000000,0.000000,0.250000,0,0);}
.m52_c00006{transform:matrix(0.311953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311953,0.000000,0.000000,0.250000,0,0);}
.md_c00006{transform:matrix(0.311963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311963,0.000000,0.000000,0.250000,0,0);}
.m26_c00006{transform:matrix(0.313175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313175,0.000000,0.000000,0.250000,0,0);}
.m9c_c00006{transform:matrix(0.313330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313330,0.000000,0.000000,0.250000,0,0);}
.m70_c00006{transform:matrix(0.313569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313569,0.000000,0.000000,0.250000,0,0);}
.m50_c00006{transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);}
.m3f_c00006{transform:matrix(0.313595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313595,0.000000,0.000000,0.250000,0,0);}
.m46_c00006{transform:matrix(0.314943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314943,0.000000,0.000000,0.250000,0,0);}
.m56_c00006{transform:matrix(0.315372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315372,0.000000,0.000000,0.250000,0,0);}
.m41_c00006{transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);}
.m6b_c00006{transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);}
.m93_c00006{transform:matrix(0.316594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316594,0.000000,0.000000,0.250000,0,0);}
.m7b_c00006{transform:matrix(0.317925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317925,0.000000,0.000000,0.250000,0,0);}
.m69_c00006{transform:matrix(0.317971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317971,0.000000,0.000000,0.250000,0,0);}
.m79_c00006{transform:matrix(0.317982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317982,0.000000,0.000000,0.250000,0,0);}
.m5d_c00006{transform:matrix(0.318060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318060,0.000000,0.000000,0.250000,0,0);}
.m4f_c00006{transform:matrix(0.318279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318279,0.000000,0.000000,0.250000,0,0);}
.m66_c00006{transform:matrix(0.318330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318330,0.000000,0.000000,0.250000,0,0);}
.m94_c00006{transform:matrix(0.318510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318510,0.000000,0.000000,0.250000,0,0);}
.ma2_c00006{transform:matrix(0.318947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318947,0.000000,0.000000,0.250000,0,0);}
.m38_c00006{transform:matrix(0.319130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319130,0.000000,0.000000,0.250000,0,0);}
.m4c_c00006{transform:matrix(0.320003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320003,0.000000,0.000000,0.250000,0,0);}
.m25_c00006{transform:matrix(0.321107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321107,0.000000,0.000000,0.250000,0,0);}
.m33_c00006{transform:matrix(0.321895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321895,0.000000,0.000000,0.250000,0,0);}
.ma1_c00006{transform:matrix(0.322561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322561,0.000000,0.000000,0.250000,0,0);}
.m88_c00006{transform:matrix(0.326063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326063,0.000000,0.000000,0.250000,0,0);}
.m62_c00006{transform:matrix(0.326627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326627,0.000000,0.000000,0.250000,0,0);}
.m31_c00006{transform:matrix(0.326958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326958,0.000000,0.000000,0.250000,0,0);}
.me_c00006{transform:matrix(0.329080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329080,0.000000,0.000000,0.250000,0,0);}
.m99_c00006{transform:matrix(0.329756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329756,0.000000,0.000000,0.250000,0,0);}
.m9e_c00006{transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);}
.m6a_c00006{transform:matrix(0.331863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331863,0.000000,0.000000,0.250000,0,0);}
.m19_c00006{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m39_c00006{transform:matrix(0.334019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334019,0.000000,0.000000,0.250000,0,0);}
.m59_c00006{transform:matrix(0.334910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334910,0.000000,0.000000,0.250000,0,0);}
.m71_c00006{transform:matrix(0.335412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335412,0.000000,0.000000,0.250000,0,0);}
.mc_c00006{transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);}
.m91_c00006{transform:matrix(0.338338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338338,0.000000,0.000000,0.250000,0,0);}
.m7f_c00006{transform:matrix(0.339183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339183,0.000000,0.000000,0.250000,0,0);}
.m1b_c00006{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m16_c00006{transform:matrix(0.342665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342665,0.000000,0.000000,0.250000,0,0);}
.m9b_c00006{transform:matrix(0.343855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343855,0.000000,0.000000,0.250000,0,0);}
.m76_c00006{transform:matrix(0.344326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344326,0.000000,0.000000,0.250000,0,0);}
.m75_c00006{transform:matrix(0.346651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346651,0.000000,0.000000,0.250000,0,0);}
.m90_c00006{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m82_c00006{transform:matrix(0.354899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354899,0.000000,0.000000,0.250000,0,0);}
.ma_c00006{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m1e_c00006{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m9a_c00006{transform:matrix(0.363799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363799,0.000000,0.000000,0.250000,0,0);}
.m2c_c00006{transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);}
.m60_c00006{transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);}
.ma3_c00006{transform:matrix(0.412670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412670,0.000000,0.000000,0.250000,0,0);}
.v0_c00006{vertical-align:0.000000px;}
.ls4_c00006{letter-spacing:-2.744280px;}
.ls7_c00006{letter-spacing:-2.375762px;}
.lsa_c00006{letter-spacing:-0.180338px;}
.ls6_c00006{letter-spacing:0.000000px;}
.ls9_c00006{letter-spacing:0.439085px;}
.ls0_c00006{letter-spacing:1.246687px;}
.ls8_c00006{letter-spacing:1.701454px;}
.ls1_c00006{letter-spacing:3.112798px;}
.ls3_c00006{letter-spacing:3.920400px;}
.ls2_c00006{letter-spacing:4.514400px;}
.ls5_c00006{letter-spacing:4.583700px;}
.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:-19.602000px;}
.ws1_c00006{word-spacing:0.000000px;}
._3_c00006{margin-left:-16.701696px;}
._1_c00006{width:7.762392px;}
._2_c00006{width:18.401407px;}
._0_c00006{width:32.413867px;}
._4_c00006{width:88.094160px;}
.fc0_c00006{color:transparent;}
.fs7_c00006{font-size:22.176000px;}
.fs4_c00006{font-size:27.720000px;}
.fs5_c00006{font-size:33.264000px;}
.fs6_c00006{font-size:34.056198px;}
.fsb_c00006{font-size:39.204000px;}
.fs9_c00006{font-size:45.144000px;}
.fsa_c00006{font-size:66.330000px;}
.fs8_c00006{font-size:68.112198px;}
.fsc_c00006{font-size:74.844000px;}
.fs1_c00006{font-size:78.408000px;}
.fs3_c00006{font-size:78.804000px;}
.fs0_c00006{font-size:90.288000px;}
.fs2_c00006{font-size:91.674000px;}
.y0_c00006{bottom:0.000000px;}
.y21_c00006{bottom:76.181535px;}
.y1_c00006{bottom:76.500000px;}
.y20_c00006{bottom:161.717535px;}
.y1f_c00006{bottom:199.495935px;}
.y1e_c00006{bottom:214.821135px;}
.y1d_c00006{bottom:232.997535px;}
.y1c_c00006{bottom:265.073535px;}
.y1b_c00006{bottom:297.500985px;}
.y1a_c00006{bottom:329.938335px;}
.y19_c00006{bottom:347.396985px;}
.y18_c00006{bottom:353.460735px;}
.y17_c00006{bottom:362.722185px;}
.y16_c00006{bottom:384.111135px;}
.y15_c00006{bottom:396.223785px;}
.y14_c00006{bottom:429.725385px;}
.y13_c00006{bottom:462.519135px;}
.y12_c00006{bottom:482.121135px;}
.y11_c00006{bottom:494.595135px;}
.y10_c00006{bottom:522.745785px;}
.yf_c00006{bottom:526.671135px;}
.ye_c00006{bottom:577.992735px;}
.yd_c00006{bottom:591.174585px;}
.yc_c00006{bottom:622.899135px;}
.yb_c00006{bottom:655.687935px;}
.ya_c00006{bottom:688.476735px;}
.y9_c00006{bottom:721.616985px;}
.y7_c00006{bottom:786.486735px;}
.y8_c00006{bottom:788.981535px;}
.y6_c00006{bottom:818.562735px;}
.y5_c00006{bottom:852.059385px;}
.y4_c00006{bottom:884.848185px;}
.y3_c00006{bottom:916.929135px;}
.y2_c00006{bottom:1077.660585px;}
.h9_c00006{height:23.128875px;}
.h6_c00006{height:28.911094px;}
.h7_c00006{height:34.693313px;}
.h8_c00006{height:35.519550px;}
.hd_c00006{height:38.476582px;}
.hb_c00006{height:47.083781px;}
.hc_c00006{height:69.180117px;}
.ha_c00006{height:71.038894px;}
.he_c00006{height:73.455293px;}
.h3_c00006{height:76.953164px;}
.h5_c00006{height:77.341816px;}
.h2_c00006{height:88.612734px;}
.h4_c00006{height:89.973018px;}
.h1_c00006{height:1110.000000px;}
.h0_c00006{height:1263.000000px;}
.w1_c00006{width:733.500000px;}
.w0_c00006{width:892.500000px;}
.x0_c00006{left:0.000000px;}
.x1_c00006{left:79.500000px;}
.x48_c00006{left:81.590385px;}
.x31_c00006{left:83.337735px;}
.x27_c00006{left:85.708785px;}
.x3_c00006{left:87.649185px;}
.xe_c00006{left:88.881735px;}
.x65_c00006{left:104.112885px;}
.x51_c00006{left:115.195935px;}
.x28_c00006{left:117.067035px;}
.x21_c00006{left:118.482735px;}
.xf_c00006{left:120.918135px;}
.x4e_c00006{left:124.393035px;}
.x57_c00006{left:126.298785px;}
.x4_c00006{left:131.332935px;}
.x2a_c00006{left:137.114535px;}
.x52_c00006{left:147.687735px;}
.x32_c00006{left:149.103435px;}
.x60_c00006{left:158.726235px;}
.x49_c00006{left:159.755835px;}
.x2b_c00006{left:169.764735px;}
.x5_c00006{left:174.056385px;}
.x3f_c00006{left:179.951835px;}
.x33_c00006{left:181.194285px;}
.x18_c00006{left:184.045485px;}
.x66_c00006{left:192.623835px;}
.x10_c00006{left:194.336535px;}
.x37_c00006{left:202.771335px;}
.x5c_c00006{left:205.622535px;}
.x22_c00006{left:214.156335px;}
.x19_c00006{left:216.418485px;}
.x34_c00006{left:224.496885px;}
.x11_c00006{left:227.877735px;}
.x5a_c00006{left:236.456085px;}
.x5d_c00006{left:238.846935px;}
.x4f_c00006{left:246.950085px;}
.x1a_c00006{left:248.227185px;}
.x12_c00006{left:257.686635px;}
.x5e_c00006{left:259.958685px;}
.x39_c00006{left:261.003135px;}
.x5b_c00006{left:268.378635px;}
.x6_c00006{left:271.036785px;}
.x4a_c00006{left:280.100235px;}
.x53_c00006{left:281.342685px;}
.x13_c00006{left:291.500085px;}
.x1b_c00006{left:293.039535px;}
.x40_c00006{left:302.543535px;}
.x46_c00006{left:304.449285px;}
.x4b_c00006{left:314.032485px;}
.x23_c00006{left:315.492735px;}
.x2c_c00006{left:324.724485px;}
.x7_c00006{left:325.729335px;}
.x35_c00006{left:336.564885px;}
.x61_c00006{left:347.652885px;}
.x24_c00006{left:348.682485px;}
.x41_c00006{left:357.443985px;}
.x8_c00006{left:359.419035px;}
.x36_c00006{left:370.403085px;}
.x62_c00006{left:380.253585px;}
.x3a_c00006{left:391.450485px;}
.x1c_c00006{left:402.899835px;}
.x4c_c00006{left:413.581935px;}
.x2d_c00006{left:425.620335px;}
.x29_c00006{left:431.149485px;}
.x67_c00006{left:434.461035px;}
.x9_c00006{left:435.782685px;}
.x42_c00006{left:446.732085px;}
.x2e_c00006{left:458.844735px;}
.x3b_c00006{left:468.705135px;}
.x1d_c00006{left:469.878285px;}
.x47_c00006{left:475.244085px;}
.x43_c00006{left:480.901935px;}
.x5f_c00006{left:490.059435px;}
.x14_c00006{left:491.598885px;}
.x1e_c00006{left:502.370085px;}
.x1f_c00006{left:513.383835px;}
.x38_c00006{left:524.070885px;}
.xa_c00006{left:526.832985px;}
.x3c_c00006{left:534.995535px;}
.x20_c00006{left:546.385485px;}
.x2f_c00006{left:557.572485px;}
.x25_c00006{left:567.358635px;}
.x15_c00006{left:568.581285px;}
.x44_c00006{left:578.397135px;}
.xb_c00006{left:579.674235px;}
.x54_c00006{left:580.679085px;}
.x30_c00006{left:590.529585px;}
.x50_c00006{left:601.736385px;}
.x16_c00006{left:602.815485px;}
.x58_c00006{left:613.180785px;}
.x3d_c00006{left:614.230185px;}
.xc_c00006{left:624.179685px;}
.x64_c00006{left:625.199385px;}
.x3e_c00006{left:626.402235px;}
.x26_c00006{left:634.866735px;}
.xd_c00006{left:656.468535px;}
.x68_c00006{left:662.096685px;}
.x4d_c00006{left:664.616235px;}
.x2_c00006{left:668.318835px;}
.x63_c00006{left:677.525835px;}
.x55_c00006{left:678.748485px;}
.x17_c00006{left:690.484935px;}
.x56_c00006{left:692.078835px;}
.x59_c00006{left:695.222085px;}
.x45_c00006{left:700.924485px;}
@media print{
.v0_c00006{vertical-align:0.000000pt;}
.ls4_c00006{letter-spacing:-2.439360pt;}
.ls7_c00006{letter-spacing:-2.111789pt;}
.lsa_c00006{letter-spacing:-0.160301pt;}
.ls6_c00006{letter-spacing:0.000000pt;}
.ls9_c00006{letter-spacing:0.390298pt;}
.ls0_c00006{letter-spacing:1.108166pt;}
.ls8_c00006{letter-spacing:1.512403pt;}
.ls1_c00006{letter-spacing:2.766931pt;}
.ls3_c00006{letter-spacing:3.484800pt;}
.ls2_c00006{letter-spacing:4.012800pt;}
.ls5_c00006{letter-spacing:4.074400pt;}
.ws0_c00006{word-spacing:-17.424000pt;}
.ws1_c00006{word-spacing:0.000000pt;}
._3_c00006{margin-left:-14.845952pt;}
._1_c00006{width:6.899904pt;}
._2_c00006{width:16.356806pt;}
._0_c00006{width:28.812326pt;}
._4_c00006{width:78.305920pt;}
.fs7_c00006{font-size:19.712000pt;}
.fs4_c00006{font-size:24.640000pt;}
.fs5_c00006{font-size:29.568000pt;}
.fs6_c00006{font-size:30.272176pt;}
.fsb_c00006{font-size:34.848000pt;}
.fs9_c00006{font-size:40.128000pt;}
.fsa_c00006{font-size:58.960000pt;}
.fs8_c00006{font-size:60.544176pt;}
.fsc_c00006{font-size:66.528000pt;}
.fs1_c00006{font-size:69.696000pt;}
.fs3_c00006{font-size:70.048000pt;}
.fs0_c00006{font-size:80.256000pt;}
.fs2_c00006{font-size:81.488000pt;}
.y0_c00006{bottom:0.000000pt;}
.y21_c00006{bottom:67.716920pt;}
.y1_c00006{bottom:68.000000pt;}
.y20_c00006{bottom:143.748920pt;}
.y1f_c00006{bottom:177.329720pt;}
.y1e_c00006{bottom:190.952120pt;}
.y1d_c00006{bottom:207.108920pt;}
.y1c_c00006{bottom:235.620920pt;}
.y1b_c00006{bottom:264.445320pt;}
.y1a_c00006{bottom:293.278520pt;}
.y19_c00006{bottom:308.797320pt;}
.y18_c00006{bottom:314.187320pt;}
.y17_c00006{bottom:322.419720pt;}
.y16_c00006{bottom:341.432120pt;}
.y15_c00006{bottom:352.198920pt;}
.y14_c00006{bottom:381.978120pt;}
.y13_c00006{bottom:411.128120pt;}
.y12_c00006{bottom:428.552120pt;}
.y11_c00006{bottom:439.640120pt;}
.y10_c00006{bottom:464.662920pt;}
.yf_c00006{bottom:468.152120pt;}
.ye_c00006{bottom:513.771320pt;}
.yd_c00006{bottom:525.488520pt;}
.yc_c00006{bottom:553.688120pt;}
.yb_c00006{bottom:582.833720pt;}
.ya_c00006{bottom:611.979320pt;}
.y9_c00006{bottom:641.437320pt;}
.y7_c00006{bottom:699.099320pt;}
.y8_c00006{bottom:701.316920pt;}
.y6_c00006{bottom:727.611320pt;}
.y5_c00006{bottom:757.386120pt;}
.y4_c00006{bottom:786.531720pt;}
.y3_c00006{bottom:815.048120pt;}
.y2_c00006{bottom:957.920520pt;}
.h9_c00006{height:20.559000pt;}
.h6_c00006{height:25.698750pt;}
.h7_c00006{height:30.838500pt;}
.h8_c00006{height:31.572934pt;}
.hd_c00006{height:34.201406pt;}
.hb_c00006{height:41.852250pt;}
.hc_c00006{height:61.493438pt;}
.ha_c00006{height:63.145684pt;}
.he_c00006{height:65.293594pt;}
.h3_c00006{height:68.402813pt;}
.h5_c00006{height:68.748281pt;}
.h2_c00006{height:78.766875pt;}
.h4_c00006{height:79.976016pt;}
.h1_c00006{height:986.666667pt;}
.h0_c00006{height:1122.666667pt;}
.w1_c00006{width:652.000000pt;}
.w0_c00006{width:793.333333pt;}
.x0_c00006{left:0.000000pt;}
.x1_c00006{left:70.666667pt;}
.x48_c00006{left:72.524787pt;}
.x31_c00006{left:74.077987pt;}
.x27_c00006{left:76.185587pt;}
.x3_c00006{left:77.910387pt;}
.xe_c00006{left:79.005987pt;}
.x65_c00006{left:92.544787pt;}
.x51_c00006{left:102.396387pt;}
.x28_c00006{left:104.059587pt;}
.x21_c00006{left:105.317987pt;}
.xf_c00006{left:107.482787pt;}
.x4e_c00006{left:110.571587pt;}
.x57_c00006{left:112.265587pt;}
.x4_c00006{left:116.740387pt;}
.x2a_c00006{left:121.879587pt;}
.x52_c00006{left:131.277987pt;}
.x32_c00006{left:132.536387pt;}
.x60_c00006{left:141.089987pt;}
.x49_c00006{left:142.005187pt;}
.x2b_c00006{left:150.901987pt;}
.x5_c00006{left:154.716787pt;}
.x3f_c00006{left:159.957187pt;}
.x33_c00006{left:161.061587pt;}
.x18_c00006{left:163.595987pt;}
.x66_c00006{left:171.221187pt;}
.x10_c00006{left:172.743587pt;}
.x37_c00006{left:180.241187pt;}
.x5c_c00006{left:182.775587pt;}
.x22_c00006{left:190.361187pt;}
.x19_c00006{left:192.371987pt;}
.x34_c00006{left:199.552787pt;}
.x11_c00006{left:202.557987pt;}
.x5a_c00006{left:210.183187pt;}
.x5d_c00006{left:212.308387pt;}
.x4f_c00006{left:219.511187pt;}
.x1a_c00006{left:220.646387pt;}
.x12_c00006{left:229.054787pt;}
.x5e_c00006{left:231.074387pt;}
.x39_c00006{left:232.002787pt;}
.x5b_c00006{left:238.558787pt;}
.x6_c00006{left:240.921587pt;}
.x4a_c00006{left:248.977987pt;}
.x53_c00006{left:250.082387pt;}
.x13_c00006{left:259.111187pt;}
.x1b_c00006{left:260.479587pt;}
.x40_c00006{left:268.927587pt;}
.x46_c00006{left:270.621587pt;}
.x4b_c00006{left:279.139987pt;}
.x23_c00006{left:280.437987pt;}
.x2c_c00006{left:288.643987pt;}
.x7_c00006{left:289.537187pt;}
.x35_c00006{left:299.168787pt;}
.x61_c00006{left:309.024787pt;}
.x24_c00006{left:309.939987pt;}
.x41_c00006{left:317.727987pt;}
.x8_c00006{left:319.483587pt;}
.x36_c00006{left:329.247187pt;}
.x62_c00006{left:338.003187pt;}
.x3a_c00006{left:347.955987pt;}
.x1c_c00006{left:358.133187pt;}
.x4c_c00006{left:367.628387pt;}
.x2d_c00006{left:378.329187pt;}
.x29_c00006{left:383.243987pt;}
.x67_c00006{left:386.187587pt;}
.x9_c00006{left:387.362387pt;}
.x42_c00006{left:397.095187pt;}
.x2e_c00006{left:407.861987pt;}
.x3b_c00006{left:416.626787pt;}
.x1d_c00006{left:417.669587pt;}
.x47_c00006{left:422.439187pt;}
.x43_c00006{left:427.468387pt;}
.x5f_c00006{left:435.608387pt;}
.x14_c00006{left:436.976787pt;}
.x1e_c00006{left:446.551187pt;}
.x1f_c00006{left:456.341187pt;}
.x38_c00006{left:465.840787pt;}
.xa_c00006{left:468.295987pt;}
.x3c_c00006{left:475.551587pt;}
.x20_c00006{left:485.675987pt;}
.x2f_c00006{left:495.619987pt;}
.x25_c00006{left:504.318787pt;}
.x15_c00006{left:505.405587pt;}
.x44_c00006{left:514.130787pt;}
.xb_c00006{left:515.265987pt;}
.x54_c00006{left:516.159187pt;}
.x30_c00006{left:524.915187pt;}
.x50_c00006{left:534.876787pt;}
.x16_c00006{left:535.835987pt;}
.x58_c00006{left:545.049587pt;}
.x3d_c00006{left:545.982387pt;}
.xc_c00006{left:554.826387pt;}
.x64_c00006{left:555.732787pt;}
.x3e_c00006{left:556.801987pt;}
.x26_c00006{left:564.325987pt;}
.xd_c00006{left:583.527587pt;}
.x68_c00006{left:588.530387pt;}
.x4d_c00006{left:590.769987pt;}
.x2_c00006{left:594.061187pt;}
.x63_c00006{left:602.245187pt;}
.x55_c00006{left:603.331987pt;}
.x17_c00006{left:613.764387pt;}
.x56_c00006{left:615.181187pt;}
.x59_c00006{left:617.975187pt;}
.x45_c00006{left:623.043987pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e39d5557f520745e2bca4f7a.woff2')format("woff");}.ff1_c00007{font-family:ff1_c00007;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00007;src:url('chunks/assets/font_a66adb2875e73ddc27b83ff4.woff2')format("woff");}.ff2_c00007{font-family:ff2_c00007;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00007;src:url('chunks/assets/font_9fcf6385f45c3df3ebb26ffd.woff2')format("woff");}.ff3_c00007{font-family:ff3_c00007;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5_c00007{transform:matrix(0.095342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095342,0.000000,0.000000,0.250000,0,0);}
.mb0_c00007{transform:matrix(0.196729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196729,0.000000,0.000000,0.250000,0,0);}
.m80_c00007{transform:matrix(0.197602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197602,0.000000,0.000000,0.250000,0,0);}
.m20_c00007{transform:matrix(0.240282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240282,0.000000,0.000000,0.250000,0,0);}
.m4_c00007{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m96_c00007{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.mc1_c00007{transform:matrix(0.252379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252379,0.000000,0.000000,0.250000,0,0);}
.m3d_c00007{transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);}
.m7c_c00007{transform:matrix(0.255375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255375,0.000000,0.000000,0.250000,0,0);}
.mac_c00007{transform:matrix(0.255446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255446,0.000000,0.000000,0.250000,0,0);}
.m13_c00007{transform:matrix(0.255730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255730,0.000000,0.000000,0.250000,0,0);}
.m47_c00007{transform:matrix(0.256334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256334,0.000000,0.000000,0.250000,0,0);}
.m90_c00007{transform:matrix(0.257322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257322,0.000000,0.000000,0.250000,0,0);}
.m8f_c00007{transform:matrix(0.257599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257599,0.000000,0.000000,0.250000,0,0);}
.m3f_c00007{transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);}
.mb_c00007{transform:matrix(0.258311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258311,0.000000,0.000000,0.250000,0,0);}
.m12_c00007{transform:matrix(0.258394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258394,0.000000,0.000000,0.250000,0,0);}
.m84_c00007{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m5a_c00007{transform:matrix(0.259455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259455,0.000000,0.000000,0.250000,0,0);}
.m16_c00007{transform:matrix(0.259951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259951,0.000000,0.000000,0.250000,0,0);}
.ma0_c00007{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m71_c00007{transform:matrix(0.261747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261747,0.000000,0.000000,0.250000,0,0);}
.m5b_c00007{transform:matrix(0.262022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262022,0.000000,0.000000,0.250000,0,0);}
.m21_c00007{transform:matrix(0.262097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262097,0.000000,0.000000,0.250000,0,0);}
.mb4_c00007{transform:matrix(0.262545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262545,0.000000,0.000000,0.250000,0,0);}
.m77_c00007{transform:matrix(0.263001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263001,0.000000,0.000000,0.250000,0,0);}
.m5d_c00007{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m94_c00007{transform:matrix(0.263369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263369,0.000000,0.000000,0.250000,0,0);}
.md_c00007{transform:matrix(0.263582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263582,0.000000,0.000000,0.250000,0,0);}
.m44_c00007{transform:matrix(0.263698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263698,0.000000,0.000000,0.250000,0,0);}
.m7d_c00007{transform:matrix(0.263753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263753,0.000000,0.000000,0.250000,0,0);}
.m14_c00007{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m97_c00007{transform:matrix(0.264094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264094,0.000000,0.000000,0.250000,0,0);}
.m56_c00007{transform:matrix(0.265205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265205,0.000000,0.000000,0.250000,0,0);}
.m1_c00007{transform:matrix(0.265600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265600,0.000000,0.000000,0.250000,0,0);}
.m38_c00007{transform:matrix(0.265631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265631,0.000000,0.000000,0.250000,0,0);}
.m1b_c00007{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.mb1_c00007{transform:matrix(0.266684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266684,0.000000,0.000000,0.250000,0,0);}
.m30_c00007{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m92_c00007{transform:matrix(0.268946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268946,0.000000,0.000000,0.250000,0,0);}
.m50_c00007{transform:matrix(0.269857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269857,0.000000,0.000000,0.250000,0,0);}
.m1f_c00007{transform:matrix(0.271203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271203,0.000000,0.000000,0.250000,0,0);}
.m2a_c00007{transform:matrix(0.271646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271646,0.000000,0.000000,0.250000,0,0);}
.m81_c00007{transform:matrix(0.272153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272153,0.000000,0.000000,0.250000,0,0);}
.mc_c00007{transform:matrix(0.272352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272352,0.000000,0.000000,0.250000,0,0);}
.m4d_c00007{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m0_c00007{transform:matrix(0.273731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273731,0.000000,0.000000,0.250000,0,0);}
.mb7_c00007{transform:matrix(0.273810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273810,0.000000,0.000000,0.250000,0,0);}
.m34_c00007{transform:matrix(0.275044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275044,0.000000,0.000000,0.250000,0,0);}
.m7b_c00007{transform:matrix(0.275073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275073,0.000000,0.000000,0.250000,0,0);}
.m4a_c00007{transform:matrix(0.275482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275482,0.000000,0.000000,0.250000,0,0);}
.m57_c00007{transform:matrix(0.275570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275570,0.000000,0.000000,0.250000,0,0);}
.m3c_c00007{transform:matrix(0.276080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276080,0.000000,0.000000,0.250000,0,0);}
.m2_c00007{transform:matrix(0.276177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276177,0.000000,0.000000,0.250000,0,0);}
.m68_c00007{transform:matrix(0.276572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276572,0.000000,0.000000,0.250000,0,0);}
.m61_c00007{transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);}
.m6e_c00007{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.mae_c00007{transform:matrix(0.277367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277367,0.000000,0.000000,0.250000,0,0);}
.m35_c00007{transform:matrix(0.278426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278426,0.000000,0.000000,0.250000,0,0);}
.m9a_c00007{transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);}
.m45_c00007{transform:matrix(0.279458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279458,0.000000,0.000000,0.250000,0,0);}
.m8a_c00007{transform:matrix(0.279629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279629,0.000000,0.000000,0.250000,0,0);}
.m98_c00007{transform:matrix(0.279737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279737,0.000000,0.000000,0.250000,0,0);}
.m88_c00007{transform:matrix(0.279956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279956,0.000000,0.000000,0.250000,0,0);}
.m8b_c00007{transform:matrix(0.280921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280921,0.000000,0.000000,0.250000,0,0);}
.m9e_c00007{transform:matrix(0.282212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282212,0.000000,0.000000,0.250000,0,0);}
.m24_c00007{transform:matrix(0.282566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282566,0.000000,0.000000,0.250000,0,0);}
.m18_c00007{transform:matrix(0.282754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282754,0.000000,0.000000,0.250000,0,0);}
.m55_c00007{transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);}
.m63_c00007{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m4e_c00007{transform:matrix(0.283710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283710,0.000000,0.000000,0.250000,0,0);}
.m6_c00007{transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);}
.m22_c00007{transform:matrix(0.284537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284537,0.000000,0.000000,0.250000,0,0);}
.m52_c00007{transform:matrix(0.284993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284993,0.000000,0.000000,0.250000,0,0);}
.mbb_c00007{transform:matrix(0.285059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285059,0.000000,0.000000,0.250000,0,0);}
.maf_c00007{transform:matrix(0.285088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285088,0.000000,0.000000,0.250000,0,0);}
.mab_c00007{transform:matrix(0.286342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286342,0.000000,0.000000,0.250000,0,0);}
.mbf_c00007{transform:matrix(0.286741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286741,0.000000,0.000000,0.250000,0,0);}
.m2b_c00007{transform:matrix(0.286804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286804,0.000000,0.000000,0.250000,0,0);}
.mbd_c00007{transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);}
.m9_c00007{transform:matrix(0.287440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287440,0.000000,0.000000,0.250000,0,0);}
.m40_c00007{transform:matrix(0.287765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287765,0.000000,0.000000,0.250000,0,0);}
.m75_c00007{transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);}
.m83_c00007{transform:matrix(0.289772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289772,0.000000,0.000000,0.250000,0,0);}
.m67_c00007{transform:matrix(0.290228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290228,0.000000,0.000000,0.250000,0,0);}
.m6d_c00007{transform:matrix(0.290703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290703,0.000000,0.000000,0.250000,0,0);}
.m11_c00007{transform:matrix(0.290798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290798,0.000000,0.000000,0.250000,0,0);}
.ma8_c00007{transform:matrix(0.291071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291071,0.000000,0.000000,0.250000,0,0);}
.m28_c00007{transform:matrix(0.291242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291242,0.000000,0.000000,0.250000,0,0);}
.m95_c00007{transform:matrix(0.291288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291288,0.000000,0.000000,0.250000,0,0);}
.m8_c00007{transform:matrix(0.291407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291407,0.000000,0.000000,0.250000,0,0);}
.m9f_c00007{transform:matrix(0.291905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291905,0.000000,0.000000,0.250000,0,0);}
.ma6_c00007{transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);}
.m3_c00007{transform:matrix(0.294297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294297,0.000000,0.000000,0.250000,0,0);}
.m2e_c00007{transform:matrix(0.295523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295523,0.000000,0.000000,0.250000,0,0);}
.m49_c00007{transform:matrix(0.295558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295558,0.000000,0.000000,0.250000,0,0);}
.ma5_c00007{transform:matrix(0.295689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295689,0.000000,0.000000,0.250000,0,0);}
.m5c_c00007{transform:matrix(0.295879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295879,0.000000,0.000000,0.250000,0,0);}
.m7e_c00007{transform:matrix(0.296116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296116,0.000000,0.000000,0.250000,0,0);}
.m8c_c00007{transform:matrix(0.296830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296830,0.000000,0.000000,0.250000,0,0);}
.m10_c00007{transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);}
.m7a_c00007{transform:matrix(0.296905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296905,0.000000,0.000000,0.250000,0,0);}
.m6a_c00007{transform:matrix(0.296920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296920,0.000000,0.000000,0.250000,0,0);}
.m15_c00007{transform:matrix(0.297283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297283,0.000000,0.000000,0.250000,0,0);}
.m9b_c00007{transform:matrix(0.297626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297626,0.000000,0.000000,0.250000,0,0);}
.m19_c00007{transform:matrix(0.297935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297935,0.000000,0.000000,0.250000,0,0);}
.m39_c00007{transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);}
.m6c_c00007{transform:matrix(0.298650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298650,0.000000,0.000000,0.250000,0,0);}
.mb2_c00007{transform:matrix(0.298984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298984,0.000000,0.000000,0.250000,0,0);}
.m82_c00007{transform:matrix(0.299313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299313,0.000000,0.000000,0.250000,0,0);}
.m4c_c00007{transform:matrix(0.299647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299647,0.000000,0.000000,0.250000,0,0);}
.m29_c00007{transform:matrix(0.300491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300491,0.000000,0.000000,0.250000,0,0);}
.m9d_c00007{transform:matrix(0.300516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300516,0.000000,0.000000,0.250000,0,0);}
.m87_c00007{transform:matrix(0.300742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300742,0.000000,0.000000,0.250000,0,0);}
.m8d_c00007{transform:matrix(0.300917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300917,0.000000,0.000000,0.250000,0,0);}
.m99_c00007{transform:matrix(0.301405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301405,0.000000,0.000000,0.250000,0,0);}
.m48_c00007{transform:matrix(0.301556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301556,0.000000,0.000000,0.250000,0,0);}
.m3e_c00007{transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);}
.mb9_c00007{transform:matrix(0.303408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303408,0.000000,0.000000,0.250000,0,0);}
.mba_c00007{transform:matrix(0.304044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304044,0.000000,0.000000,0.250000,0,0);}
.mb6_c00007{transform:matrix(0.304348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304348,0.000000,0.000000,0.250000,0,0);}
.m64_c00007{transform:matrix(0.304365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304365,0.000000,0.000000,0.250000,0,0);}
.m78_c00007{transform:matrix(0.304509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304509,0.000000,0.000000,0.250000,0,0);}
.m89_c00007{transform:matrix(0.304557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304557,0.000000,0.000000,0.250000,0,0);}
.mf_c00007{transform:matrix(0.304621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304621,0.000000,0.000000,0.250000,0,0);}
.ma9_c00007{transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);}
.m54_c00007{transform:matrix(0.306583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306583,0.000000,0.000000,0.250000,0,0);}
.m46_c00007{transform:matrix(0.306960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306960,0.000000,0.000000,0.250000,0,0);}
.mb5_c00007{transform:matrix(0.307020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307020,0.000000,0.000000,0.250000,0,0);}
.m6b_c00007{transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);}
.m7f_c00007{transform:matrix(0.308496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308496,0.000000,0.000000,0.250000,0,0);}
.mad_c00007{transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);}
.m2d_c00007{transform:matrix(0.308789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308789,0.000000,0.000000,0.250000,0,0);}
.m2c_c00007{transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);}
.mc2_c00007{transform:matrix(0.310470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310470,0.000000,0.000000,0.250000,0,0);}
.ma2_c00007{transform:matrix(0.310491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310491,0.000000,0.000000,0.250000,0,0);}
.ma1_c00007{transform:matrix(0.310948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310948,0.000000,0.000000,0.250000,0,0);}
.m42_c00007{transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);}
.mbc_c00007{transform:matrix(0.312145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312145,0.000000,0.000000,0.250000,0,0);}
.m79_c00007{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.m58_c00007{transform:matrix(0.312571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312571,0.000000,0.000000,0.250000,0,0);}
.ma7_c00007{transform:matrix(0.312759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312759,0.000000,0.000000,0.250000,0,0);}
.m6f_c00007{transform:matrix(0.312776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312776,0.000000,0.000000,0.250000,0,0);}
.m25_c00007{transform:matrix(0.313396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313396,0.000000,0.000000,0.250000,0,0);}
.m4f_c00007{transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);}
.maa_c00007{transform:matrix(0.313920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313920,0.000000,0.000000,0.250000,0,0);}
.mb3_c00007{transform:matrix(0.314314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314314,0.000000,0.000000,0.250000,0,0);}
.m1c_c00007{transform:matrix(0.314448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314448,0.000000,0.000000,0.250000,0,0);}
.m33_c00007{transform:matrix(0.315048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315048,0.000000,0.000000,0.250000,0,0);}
.m60_c00007{transform:matrix(0.315302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315302,0.000000,0.000000,0.250000,0,0);}
.m62_c00007{transform:matrix(0.315418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315418,0.000000,0.000000,0.250000,0,0);}
.m37_c00007{transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);}
.m31_c00007{transform:matrix(0.316027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316027,0.000000,0.000000,0.250000,0,0);}
.m69_c00007{transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);}
.m36_c00007{transform:matrix(0.316282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316282,0.000000,0.000000,0.250000,0,0);}
.m65_c00007{transform:matrix(0.317008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317008,0.000000,0.000000,0.250000,0,0);}
.m41_c00007{transform:matrix(0.317620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317620,0.000000,0.000000,0.250000,0,0);}
.m7_c00007{transform:matrix(0.317920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317920,0.000000,0.000000,0.250000,0,0);}
.m85_c00007{transform:matrix(0.318079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318079,0.000000,0.000000,0.250000,0,0);}
.m5e_c00007{transform:matrix(0.318640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318640,0.000000,0.000000,0.250000,0,0);}
.m5f_c00007{transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);}
.mb8_c00007{transform:matrix(0.319176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319176,0.000000,0.000000,0.250000,0,0);}
.m91_c00007{transform:matrix(0.319462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319462,0.000000,0.000000,0.250000,0,0);}
.mc0_c00007{transform:matrix(0.319694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319694,0.000000,0.000000,0.250000,0,0);}
.m43_c00007{transform:matrix(0.319808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319808,0.000000,0.000000,0.250000,0,0);}
.ma4_c00007{transform:matrix(0.320141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320141,0.000000,0.000000,0.250000,0,0);}
.m3a_c00007{transform:matrix(0.320477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320477,0.000000,0.000000,0.250000,0,0);}
.m59_c00007{transform:matrix(0.321165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321165,0.000000,0.000000,0.250000,0,0);}
.m93_c00007{transform:matrix(0.321955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321955,0.000000,0.000000,0.250000,0,0);}
.m70_c00007{transform:matrix(0.325574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325574,0.000000,0.000000,0.250000,0,0);}
.ma_c00007{transform:matrix(0.326100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326100,0.000000,0.000000,0.250000,0,0);}
.m1d_c00007{transform:matrix(0.326105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326105,0.000000,0.000000,0.250000,0,0);}
.m1a_c00007{transform:matrix(0.326848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326848,0.000000,0.000000,0.250000,0,0);}
.me_c00007{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m23_c00007{transform:matrix(0.327311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327311,0.000000,0.000000,0.250000,0,0);}
.m3b_c00007{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.m76_c00007{transform:matrix(0.327730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327730,0.000000,0.000000,0.250000,0,0);}
.m51_c00007{transform:matrix(0.328029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328029,0.000000,0.000000,0.250000,0,0);}
.m66_c00007{transform:matrix(0.330383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330383,0.000000,0.000000,0.250000,0,0);}
.m86_c00007{transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);}
.m27_c00007{transform:matrix(0.337161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337161,0.000000,0.000000,0.250000,0,0);}
.m26_c00007{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m73_c00007{transform:matrix(0.340015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340015,0.000000,0.000000,0.250000,0,0);}
.m72_c00007{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.m2f_c00007{transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);}
.m17_c00007{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m74_c00007{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m32_c00007{transform:matrix(0.355345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355345,0.000000,0.000000,0.250000,0,0);}
.m9c_c00007{transform:matrix(0.359542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359542,0.000000,0.000000,0.250000,0,0);}
.m53_c00007{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.ma3_c00007{transform:matrix(0.362085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362085,0.000000,0.000000,0.250000,0,0);}
.m4b_c00007{transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);}
.m1e_c00007{transform:matrix(0.367513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367513,0.000000,0.000000,0.250000,0,0);}
.mc3_c00007{transform:matrix(0.370460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370460,0.000000,0.000000,0.250000,0,0);}
.m8e_c00007{transform:matrix(0.371943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371943,0.000000,0.000000,0.250000,0,0);}
.mbe_c00007{transform:matrix(0.425279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425279,0.000000,0.000000,0.250000,0,0);}
.v1_c00007{vertical-align:-21.364200px;}
.v0_c00007{vertical-align:0.000000px;}
.ls3_c00007{letter-spacing:-2.744280px;}
.ls6_c00007{letter-spacing:-2.148379px;}
.lse_c00007{letter-spacing:-0.819722px;}
.ls2_c00007{letter-spacing:0.000000px;}
.ls9_c00007{letter-spacing:1.176120px;}
.lsb_c00007{letter-spacing:1.560319px;}
.ls4_c00007{letter-spacing:2.501215px;}
.lsd_c00007{letter-spacing:2.593810px;}
.ls10_c00007{letter-spacing:2.595305px;}
.lsa_c00007{letter-spacing:3.167683px;}
.lsc_c00007{letter-spacing:3.722400px;}
.ls7_c00007{letter-spacing:3.801610px;}
.ls1_c00007{letter-spacing:3.920400px;}
.ls8_c00007{letter-spacing:4.088700px;}
.lsf_c00007{letter-spacing:4.098610px;}
.ls0_c00007{letter-spacing:4.395610px;}
.ls5_c00007{letter-spacing:4.494610px;}
.sc__c00007{text-shadow:none;}
.sc0_c00007{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00007{-webkit-text-stroke:0px transparent;}
.sc0_c00007{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00007{word-spacing:-19.602000px;}
.ws1_c00007{word-spacing:-3.841992px;}
.ws2_c00007{word-spacing:0.000000px;}
._6_c00007{margin-left:-12.074832px;}
._1_c00007{margin-left:-2.979108px;}
._0_c00007{width:7.213536px;}
._3_c00007{width:9.173340px;}
._8_c00007{width:11.369160px;}
._7_c00007{width:21.014136px;}
._2_c00007{width:29.402208px;}
._a_c00007{width:40.416030px;}
._9_c00007{width:42.932736px;}
._4_c00007{width:295.828632px;}
._5_c00007{width:330.600600px;}
.fc0_c00007{color:transparent;}
.fse_c00007{font-size:22.572000px;}
.fs3_c00007{font-size:26.928000px;}
.fs9_c00007{font-size:27.720000px;}
.fs8_c00007{font-size:33.660000px;}
.fs5_c00007{font-size:39.204000px;}
.fsa_c00007{font-size:44.352000px;}
.fs2_c00007{font-size:45.144000px;}
.fsc_c00007{font-size:51.876198px;}
.fsb_c00007{font-size:74.448000px;}
.fs4_c00007{font-size:76.032198px;}
.fs1_c00007{font-size:78.408000px;}
.fs7_c00007{font-size:81.774000px;}
.fsd_c00007{font-size:81.972198px;}
.fs0_c00007{font-size:87.912198px;}
.fs6_c00007{font-size:89.892198px;}
.y0_c00007{bottom:0.000000px;}
.y1_c00007{bottom:76.500000px;}
.y22_c00007{bottom:128.210985px;}
.y20_c00007{bottom:147.812985px;}
.y1f_c00007{bottom:179.181135px;}
.y1e_c00007{bottom:216.598185px;}
.y1d_c00007{bottom:228.002985px;}
.y1c_c00007{bottom:249.035535px;}
.y21_c00007{bottom:279.329535px;}
.y1b_c00007{bottom:281.106585px;}
.y1a_c00007{bottom:345.614985px;}
.y19_c00007{bottom:345.622113px;}
.y18_c00007{bottom:377.690985px;}
.y17_c00007{bottom:411.192585px;}
.y16_c00007{bottom:444.342735px;}
.y15_c00007{bottom:477.126585px;}
.y14_c00007{bottom:498.866985px;}
.y13_c00007{bottom:510.628185px;}
.y12_c00007{bottom:531.655785px;}
.y11_c00007{bottom:542.347785px;}
.y10_c00007{bottom:575.141535px;}
.yf_c00007{bottom:639.293535px;}
.ye_c00007{bottom:671.725935px;}
.yd_c00007{bottom:704.153385px;}
.yc_c00007{bottom:736.947135px;}
.yb_c00007{bottom:769.374585px;}
.ya_c00007{bottom:801.806985px;}
.y9_c00007{bottom:835.664985px;}
.y8_c00007{bottom:848.856735px;}
.y7_c00007{bottom:864.894735px;}
.y6_c00007{bottom:869.171535px;}
.y5_c00007{bottom:896.614335px;}
.y4_c00007{bottom:901.960335px;}
.y3_c00007{bottom:936.174735px;}
.y2_c00007{bottom:1083.724335px;}
.hf_c00007{height:23.541891px;}
.ha_c00007{height:33.035449px;}
.h6_c00007{height:38.476582px;}
.hb_c00007{height:46.257750px;}
.h4_c00007{height:47.083781px;}
.hd_c00007{height:50.913651px;}
.hc_c00007{height:73.066641px;}
.h8_c00007{height:74.621444px;}
.h3_c00007{height:76.953164px;}
.h5_c00007{height:79.299207px;}
.h9_c00007{height:80.256709px;}
.he_c00007{height:82.612606px;}
.h2_c00007{height:86.281015px;}
.h7_c00007{height:88.224276px;}
.h1_c00007{height:1110.000000px;}
.h0_c00007{height:1263.000000px;}
.w1_c00007{width:718.500000px;}
.w0_c00007{width:892.500000px;}
.x0_c00007{left:0.000000px;}
.x3c_c00007{left:29.852235px;}
.x2f_c00007{left:31.134285px;}
.x23_c00007{left:34.054785px;}
.xd_c00007{left:35.950635px;}
.x30_c00007{left:52.374735px;}
.xe_c00007{left:55.800135px;}
.x5e_c00007{left:61.012485px;}
.x53_c00007{left:70.862985px;}
.x29_c00007{left:74.679435px;}
.x4a_c00007{left:80.263035px;}
.x62_c00007{left:82.079685px;}
.x24_c00007{left:84.599235px;}
.x1_c00007{left:87.000000px;}
.x4e_c00007{left:91.370835px;}
.x36_c00007{left:94.068585px;}
.x54_c00007{left:102.057885px;}
.x43_c00007{left:103.681485px;}
.x67_c00007{left:105.062535px;}
.x6d_c00007{left:107.191035px;}
.x22_c00007{left:115.135785px;}
.x3_c00007{left:117.427635px;}
.x66_c00007{left:119.056185px;}
.x61_c00007{left:124.516035px;}
.x37_c00007{left:126.134685px;}
.x25_c00007{left:127.565235px;}
.xf_c00007{left:129.678885px;}
.x2a_c00007{left:136.282185px;}
.x3d_c00007{left:147.157335px;}
.x18_c00007{left:148.761135px;}
.x21_c00007{left:158.235435px;}
.x38_c00007{left:159.289785px;}
.x10_c00007{left:161.344035px;}
.x69_c00007{left:170.466885px;}
.x4_c00007{left:183.470535px;}
.x57_c00007{left:190.395585px;}
.x45_c00007{left:191.875635px;}
.x11_c00007{left:192.944835px;}
.x2b_c00007{left:194.474385px;}
.x39_c00007{left:203.097285px;}
.x31_c00007{left:204.166485px;}
.x4b_c00007{left:213.749685px;}
.x6a_c00007{left:215.274285px;}
.x5b_c00007{left:225.194085px;}
.x19_c00007{left:226.589985px;}
.x32_c00007{left:235.782135px;}
.x2c_c00007{left:246.246435px;}
.x3e_c00007{left:247.276035px;}
.x5_c00007{left:270.120285px;}
.x6_c00007{left:275.609835px;}
.x7_c00007{left:279.946035px;}
.x1a_c00007{left:281.119185px;}
.x3f_c00007{left:291.306285px;}
.x58_c00007{left:292.563585px;}
.x64_c00007{left:293.707035px;}
.x12_c00007{left:302.785335px;}
.x33_c00007{left:313.957485px;}
.x8_c00007{left:315.313785px;}
.x26_c00007{left:325.342485px;}
.x46_c00007{left:336.054285px;}
.x1b_c00007{left:337.103685px;}
.x50_c00007{left:345.038535px;}
.x13_c00007{left:346.711635px;}
.x55_c00007{left:348.097635px;}
.x40_c00007{left:358.086735px;}
.x47_c00007{left:367.620435px;}
.x1c_c00007{left:368.956935px;}
.x1d_c00007{left:380.411235px;}
.x9_c00007{left:392.241735px;}
.x5c_c00007{left:402.577335px;}
.x34_c00007{left:413.541585px;}
.x59_c00007{left:427.916385px;}
.x14_c00007{left:436.286835px;}
.x4c_c00007{left:439.202385px;}
.x2d_c00007{left:445.978935px;}
.x6b_c00007{left:447.577785px;}
.x51_c00007{left:456.720435px;}
.xa_c00007{left:457.754985px;}
.x5f_c00007{left:459.002385px;}
.x15_c00007{left:468.031185px;}
.x65_c00007{left:478.817235px;}
.x1e_c00007{left:480.059685px;}
.x44_c00007{left:490.731885px;}
.x52_c00007{left:491.761485px;}
.x17_c00007{left:494.939385px;}
.x27_c00007{left:501.587235px;}
.x3a_c00007{left:513.383085px;}
.x48_c00007{left:514.546335px;}
.x35_c00007{left:524.431485px;}
.x4d_c00007{left:535.420485px;}
.xb_c00007{left:536.633235px;}
.x5a_c00007{left:547.359885px;}
.x41_c00007{left:557.383635px;}
.x5d_c00007{left:558.447885px;}
.x1f_c00007{left:569.228985px;}
.x3b_c00007{left:578.569635px;}
.x16_c00007{left:579.792285px;}
.x68_c00007{left:590.756535px;}
.x63_c00007{left:591.875235px;}
.x28_c00007{left:601.834635px;}
.x2_c00007{left:612.892935px;}
.x56_c00007{left:621.510885px;}
.x2e_c00007{left:623.183985px;}
.x4f_c00007{left:624.347235px;}
.x20_c00007{left:634.841235px;}
.x6c_c00007{left:647.191485px;}
.x49_c00007{left:649.240785px;}
.xc_c00007{left:651.260385px;}
.x42_c00007{left:667.758735px;}
.x60_c00007{left:668.902185px;}
.x6f_c00007{left:706.066785px;}
.x6e_c00007{left:709.234785px;}
@media print{
.v1_c00007{vertical-align:-18.990400pt;}
.v0_c00007{vertical-align:0.000000pt;}
.ls3_c00007{letter-spacing:-2.439360pt;}
.ls6_c00007{letter-spacing:-1.909670pt;}
.lse_c00007{letter-spacing:-0.728642pt;}
.ls2_c00007{letter-spacing:0.000000pt;}
.ls9_c00007{letter-spacing:1.045440pt;}
.lsb_c00007{letter-spacing:1.386950pt;}
.ls4_c00007{letter-spacing:2.223302pt;}
.lsd_c00007{letter-spacing:2.305609pt;}
.ls10_c00007{letter-spacing:2.306938pt;}
.lsa_c00007{letter-spacing:2.815718pt;}
.lsc_c00007{letter-spacing:3.308800pt;}
.ls7_c00007{letter-spacing:3.379209pt;}
.ls1_c00007{letter-spacing:3.484800pt;}
.ls8_c00007{letter-spacing:3.634400pt;}
.lsf_c00007{letter-spacing:3.643209pt;}
.ls0_c00007{letter-spacing:3.907209pt;}
.ls5_c00007{letter-spacing:3.995209pt;}
.ws0_c00007{word-spacing:-17.424000pt;}
.ws1_c00007{word-spacing:-3.415104pt;}
.ws2_c00007{word-spacing:0.000000pt;}
._6_c00007{margin-left:-10.733184pt;}
._1_c00007{margin-left:-2.648096pt;}
._0_c00007{width:6.412032pt;}
._3_c00007{width:8.154080pt;}
._8_c00007{width:10.105920pt;}
._7_c00007{width:18.679232pt;}
._2_c00007{width:26.135296pt;}
._a_c00007{width:35.925360pt;}
._9_c00007{width:38.162432pt;}
._4_c00007{width:262.958784pt;}
._5_c00007{width:293.867200pt;}
.fse_c00007{font-size:20.064000pt;}
.fs3_c00007{font-size:23.936000pt;}
.fs9_c00007{font-size:24.640000pt;}
.fs8_c00007{font-size:29.920000pt;}
.fs5_c00007{font-size:34.848000pt;}
.fsa_c00007{font-size:39.424000pt;}
.fs2_c00007{font-size:40.128000pt;}
.fsc_c00007{font-size:46.112176pt;}
.fsb_c00007{font-size:66.176000pt;}
.fs4_c00007{font-size:67.584176pt;}
.fs1_c00007{font-size:69.696000pt;}
.fs7_c00007{font-size:72.688000pt;}
.fsd_c00007{font-size:72.864176pt;}
.fs0_c00007{font-size:78.144176pt;}
.fs6_c00007{font-size:79.904176pt;}
.y0_c00007{bottom:0.000000pt;}
.y1_c00007{bottom:68.000000pt;}
.y22_c00007{bottom:113.965320pt;}
.y20_c00007{bottom:131.389320pt;}
.y1f_c00007{bottom:159.272120pt;}
.y1e_c00007{bottom:192.531720pt;}
.y1d_c00007{bottom:202.669320pt;}
.y1c_c00007{bottom:221.364920pt;}
.y21_c00007{bottom:248.292920pt;}
.y1b_c00007{bottom:249.872520pt;}
.y1a_c00007{bottom:307.213320pt;}
.y19_c00007{bottom:307.219656pt;}
.y18_c00007{bottom:335.725320pt;}
.y17_c00007{bottom:365.504520pt;}
.y16_c00007{bottom:394.971320pt;}
.y15_c00007{bottom:424.112520pt;}
.y14_c00007{bottom:443.437320pt;}
.y13_c00007{bottom:453.891720pt;}
.y12_c00007{bottom:472.582920pt;}
.y11_c00007{bottom:482.086920pt;}
.y10_c00007{bottom:511.236920pt;}
.yf_c00007{bottom:568.260920pt;}
.ye_c00007{bottom:597.089720pt;}
.yd_c00007{bottom:625.914120pt;}
.yc_c00007{bottom:655.064120pt;}
.yb_c00007{bottom:683.888520pt;}
.ya_c00007{bottom:712.717320pt;}
.y9_c00007{bottom:742.813320pt;}
.y8_c00007{bottom:754.539320pt;}
.y7_c00007{bottom:768.795320pt;}
.y6_c00007{bottom:772.596920pt;}
.y5_c00007{bottom:796.990520pt;}
.y4_c00007{bottom:801.742520pt;}
.y3_c00007{bottom:832.155320pt;}
.y2_c00007{bottom:963.310520pt;}
.hf_c00007{height:20.926125pt;}
.ha_c00007{height:29.364844pt;}
.h6_c00007{height:34.201406pt;}
.hb_c00007{height:41.118000pt;}
.h4_c00007{height:41.852250pt;}
.hd_c00007{height:45.256579pt;}
.hc_c00007{height:64.948125pt;}
.h8_c00007{height:66.330173pt;}
.h3_c00007{height:68.402813pt;}
.h5_c00007{height:70.488184pt;}
.h9_c00007{height:71.339297pt;}
.he_c00007{height:73.433427pt;}
.h2_c00007{height:76.694235pt;}
.h7_c00007{height:78.421579pt;}
.h1_c00007{height:986.666667pt;}
.h0_c00007{height:1122.666667pt;}
.w1_c00007{width:638.666667pt;}
.w0_c00007{width:793.333333pt;}
.x0_c00007{left:0.000000pt;}
.x3c_c00007{left:26.535320pt;}
.x2f_c00007{left:27.674920pt;}
.x23_c00007{left:30.270920pt;}
.xd_c00007{left:31.956120pt;}
.x30_c00007{left:46.555320pt;}
.xe_c00007{left:49.600120pt;}
.x5e_c00007{left:54.233320pt;}
.x53_c00007{left:62.989320pt;}
.x29_c00007{left:66.381720pt;}
.x4a_c00007{left:71.344920pt;}
.x62_c00007{left:72.959720pt;}
.x24_c00007{left:75.199320pt;}
.x1_c00007{left:77.333333pt;}
.x4e_c00007{left:81.218520pt;}
.x36_c00007{left:83.616520pt;}
.x54_c00007{left:90.718120pt;}
.x43_c00007{left:92.161320pt;}
.x67_c00007{left:93.388920pt;}
.x6d_c00007{left:95.280920pt;}
.x22_c00007{left:102.342920pt;}
.x3_c00007{left:104.380120pt;}
.x66_c00007{left:105.827720pt;}
.x61_c00007{left:110.680920pt;}
.x37_c00007{left:112.119720pt;}
.x25_c00007{left:113.391320pt;}
.xf_c00007{left:115.270120pt;}
.x2a_c00007{left:121.139720pt;}
.x3d_c00007{left:130.806520pt;}
.x18_c00007{left:132.232120pt;}
.x21_c00007{left:140.653720pt;}
.x38_c00007{left:141.590920pt;}
.x10_c00007{left:143.416920pt;}
.x69_c00007{left:151.526120pt;}
.x4_c00007{left:163.084920pt;}
.x57_c00007{left:169.240520pt;}
.x45_c00007{left:170.556120pt;}
.x11_c00007{left:171.506520pt;}
.x2b_c00007{left:172.866120pt;}
.x39_c00007{left:180.530920pt;}
.x31_c00007{left:181.481320pt;}
.x4b_c00007{left:189.999720pt;}
.x6a_c00007{left:191.354920pt;}
.x5b_c00007{left:200.172520pt;}
.x19_c00007{left:201.413320pt;}
.x32_c00007{left:209.584120pt;}
.x2c_c00007{left:218.885720pt;}
.x3e_c00007{left:219.800920pt;}
.x5_c00007{left:240.106920pt;}
.x6_c00007{left:244.986520pt;}
.x7_c00007{left:248.840920pt;}
.x1a_c00007{left:249.883720pt;}
.x3f_c00007{left:258.938920pt;}
.x58_c00007{left:260.056520pt;}
.x64_c00007{left:261.072920pt;}
.x12_c00007{left:269.142520pt;}
.x33_c00007{left:279.073320pt;}
.x8_c00007{left:280.278920pt;}
.x26_c00007{left:289.193320pt;}
.x46_c00007{left:298.714920pt;}
.x1b_c00007{left:299.647720pt;}
.x50_c00007{left:306.700920pt;}
.x13_c00007{left:308.188120pt;}
.x55_c00007{left:309.420120pt;}
.x40_c00007{left:318.299320pt;}
.x47_c00007{left:326.773720pt;}
.x1c_c00007{left:327.961720pt;}
.x1d_c00007{left:338.143320pt;}
.x9_c00007{left:348.659320pt;}
.x5c_c00007{left:357.846520pt;}
.x34_c00007{left:367.592520pt;}
.x59_c00007{left:380.370120pt;}
.x14_c00007{left:387.810520pt;}
.x4c_c00007{left:390.402120pt;}
.x2d_c00007{left:396.425720pt;}
.x6b_c00007{left:397.846920pt;}
.x51_c00007{left:405.973720pt;}
.xa_c00007{left:406.893320pt;}
.x5f_c00007{left:408.002120pt;}
.x15_c00007{left:416.027720pt;}
.x65_c00007{left:425.615320pt;}
.x1e_c00007{left:426.719720pt;}
.x44_c00007{left:436.206120pt;}
.x52_c00007{left:437.121320pt;}
.x17_c00007{left:439.946120pt;}
.x27_c00007{left:445.855320pt;}
.x3a_c00007{left:456.340520pt;}
.x48_c00007{left:457.374520pt;}
.x35_c00007{left:466.161320pt;}
.x4d_c00007{left:475.929320pt;}
.xb_c00007{left:477.007320pt;}
.x5a_c00007{left:486.542120pt;}
.x41_c00007{left:495.452120pt;}
.x5d_c00007{left:496.398120pt;}
.x1f_c00007{left:505.981320pt;}
.x3b_c00007{left:514.284120pt;}
.x16_c00007{left:515.370920pt;}
.x68_c00007{left:525.116920pt;}
.x63_c00007{left:526.111320pt;}
.x28_c00007{left:534.964120pt;}
.x2_c00007{left:544.793720pt;}
.x56_c00007{left:552.454120pt;}
.x2e_c00007{left:553.941320pt;}
.x4f_c00007{left:554.975320pt;}
.x20_c00007{left:564.303320pt;}
.x6c_c00007{left:575.281320pt;}
.x49_c00007{left:577.102920pt;}
.xc_c00007{left:578.898120pt;}
.x42_c00007{left:593.563320pt;}
.x60_c00007{left:594.579720pt;}
.x6f_c00007{left:627.614920pt;}
.x6e_c00007{left:630.430920pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_aa97a0a100e607b16db60dfe.woff2')format("woff");}.ff1_c00008{font-family:ff1_c00008;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00008;src:url('chunks/assets/font_089fc5befb111c1b0f87a672.woff2')format("woff");}.ff2_c00008{font-family:ff2_c00008;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00008;src:url('chunks/assets/font_00f2b28cee2a60368b88eeb2.woff2')format("woff");}.ff3_c00008{font-family:ff3_c00008;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00008{transform:matrix(0.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);}
.m1b_c00008{transform:matrix(0.156085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156085,0.000000,0.000000,0.250000,0,0);}
.m47_c00008{transform:matrix(0.193056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193056,0.000000,0.000000,0.250000,0,0);}
.m8c_c00008{transform:matrix(0.207432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207432,0.000000,0.000000,0.250000,0,0);}
.m90_c00008{transform:matrix(0.212161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212161,0.000000,0.000000,0.250000,0,0);}
.m8f_c00008{transform:matrix(0.224013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224013,0.000000,0.000000,0.250000,0,0);}
.m8a_c00008{transform:matrix(0.224263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224263,0.000000,0.000000,0.250000,0,0);}
.m24_c00008{transform:matrix(0.224877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224877,0.000000,0.000000,0.250000,0,0);}
.m8b_c00008{transform:matrix(0.225430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225430,0.000000,0.000000,0.250000,0,0);}
.m2b_c00008{transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);}
.m9f_c00008{transform:matrix(0.243009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243009,0.000000,0.000000,0.250000,0,0);}
.m0_c00008{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3_c00008{transform:matrix(0.250799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250799,0.000000,0.000000,0.250000,0,0);}
.m69_c00008{transform:matrix(0.252078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252078,0.000000,0.000000,0.250000,0,0);}
.m83_c00008{transform:matrix(0.252202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252202,0.000000,0.000000,0.250000,0,0);}
.m29_c00008{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m84_c00008{transform:matrix(0.254914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254914,0.000000,0.000000,0.250000,0,0);}
.m57_c00008{transform:matrix(0.255079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255079,0.000000,0.000000,0.250000,0,0);}
.m43_c00008{transform:matrix(0.255131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255131,0.000000,0.000000,0.250000,0,0);}
.m5d_c00008{transform:matrix(0.255730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255730,0.000000,0.000000,0.250000,0,0);}
.m3f_c00008{transform:matrix(0.256279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256279,0.000000,0.000000,0.250000,0,0);}
.m33_c00008{transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);}
.m14_c00008{transform:matrix(0.257744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257744,0.000000,0.000000,0.250000,0,0);}
.m87_c00008{transform:matrix(0.258139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258139,0.000000,0.000000,0.250000,0,0);}
.m92_c00008{transform:matrix(0.258826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258826,0.000000,0.000000,0.250000,0,0);}
.m91_c00008{transform:matrix(0.259580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259580,0.000000,0.000000,0.250000,0,0);}
.m40_c00008{transform:matrix(0.259889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259889,0.000000,0.000000,0.250000,0,0);}
.m5e_c00008{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m6a_c00008{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.m41_c00008{transform:matrix(0.261823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261823,0.000000,0.000000,0.250000,0,0);}
.m5f_c00008{transform:matrix(0.261946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261946,0.000000,0.000000,0.250000,0,0);}
.m50_c00008{transform:matrix(0.261974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261974,0.000000,0.000000,0.250000,0,0);}
.m7d_c00008{transform:matrix(0.263242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263242,0.000000,0.000000,0.250000,0,0);}
.md_c00008{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m34_c00008{transform:matrix(0.263460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263460,0.000000,0.000000,0.250000,0,0);}
.m4b_c00008{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m16_c00008{transform:matrix(0.265174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265174,0.000000,0.000000,0.250000,0,0);}
.m5a_c00008{transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);}
.m63_c00008{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m2a_c00008{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.m82_c00008{transform:matrix(0.267739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267739,0.000000,0.000000,0.250000,0,0);}
.m12_c00008{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m9b_c00008{transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);}
.m9_c00008{transform:matrix(0.269301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269301,0.000000,0.000000,0.250000,0,0);}
.m7b_c00008{transform:matrix(0.270819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270819,0.000000,0.000000,0.250000,0,0);}
.m45_c00008{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m1c_c00008{transform:matrix(0.270919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270919,0.000000,0.000000,0.250000,0,0);}
.m49_c00008{transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);}
.m13_c00008{transform:matrix(0.272148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272148,0.000000,0.000000,0.250000,0,0);}
.m1f_c00008{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m8_c00008{transform:matrix(0.273176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273176,0.000000,0.000000,0.250000,0,0);}
.mc_c00008{transform:matrix(0.273181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273181,0.000000,0.000000,0.250000,0,0);}
.m77_c00008{transform:matrix(0.273394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273394,0.000000,0.000000,0.250000,0,0);}
.m7a_c00008{transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);}
.m1e_c00008{transform:matrix(0.274422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274422,0.000000,0.000000,0.250000,0,0);}
.m1d_c00008{transform:matrix(0.275438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275438,0.000000,0.000000,0.250000,0,0);}
.m4f_c00008{transform:matrix(0.276939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276939,0.000000,0.000000,0.250000,0,0);}
.m10_c00008{transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);}
.m98_c00008{transform:matrix(0.277907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277907,0.000000,0.000000,0.250000,0,0);}
.m22_c00008{transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);}
.m1_c00008{transform:matrix(0.279734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279734,0.000000,0.000000,0.250000,0,0);}
.m59_c00008{transform:matrix(0.280329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280329,0.000000,0.000000,0.250000,0,0);}
.m4c_c00008{transform:matrix(0.281043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281043,0.000000,0.000000,0.250000,0,0);}
.ma5_c00008{transform:matrix(0.283370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283370,0.000000,0.000000,0.250000,0,0);}
.m96_c00008{transform:matrix(0.284987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284987,0.000000,0.000000,0.250000,0,0);}
.m3d_c00008{transform:matrix(0.285586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285586,0.000000,0.000000,0.250000,0,0);}
.m5_c00008{transform:matrix(0.285890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285890,0.000000,0.000000,0.250000,0,0);}
.m2c_c00008{transform:matrix(0.285894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285894,0.000000,0.000000,0.250000,0,0);}
.mf_c00008{transform:matrix(0.286455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286455,0.000000,0.000000,0.250000,0,0);}
.m23_c00008{transform:matrix(0.286520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286520,0.000000,0.000000,0.250000,0,0);}
.ma_c00008{transform:matrix(0.286715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286715,0.000000,0.000000,0.250000,0,0);}
.m95_c00008{transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);}
.m2e_c00008{transform:matrix(0.287071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287071,0.000000,0.000000,0.250000,0,0);}
.m9e_c00008{transform:matrix(0.287135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287135,0.000000,0.000000,0.250000,0,0);}
.m46_c00008{transform:matrix(0.288265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288265,0.000000,0.000000,0.250000,0,0);}
.m30_c00008{transform:matrix(0.288337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288337,0.000000,0.000000,0.250000,0,0);}
.ma3_c00008{transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);}
.m31_c00008{transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);}
.m65_c00008{transform:matrix(0.289026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289026,0.000000,0.000000,0.250000,0,0);}
.m70_c00008{transform:matrix(0.289199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289199,0.000000,0.000000,0.250000,0,0);}
.ma4_c00008{transform:matrix(0.291151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291151,0.000000,0.000000,0.250000,0,0);}
.m4a_c00008{transform:matrix(0.291863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291863,0.000000,0.000000,0.250000,0,0);}
.m60_c00008{transform:matrix(0.291905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291905,0.000000,0.000000,0.250000,0,0);}
.m27_c00008{transform:matrix(0.292023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292023,0.000000,0.000000,0.250000,0,0);}
.m36_c00008{transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);}
.m6f_c00008{transform:matrix(0.292497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292497,0.000000,0.000000,0.250000,0,0);}
.m7_c00008{transform:matrix(0.293256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293256,0.000000,0.000000,0.250000,0,0);}
.m8e_c00008{transform:matrix(0.293983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293983,0.000000,0.000000,0.250000,0,0);}
.ma2_c00008{transform:matrix(0.294550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294550,0.000000,0.000000,0.250000,0,0);}
.m61_c00008{transform:matrix(0.294898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294898,0.000000,0.000000,0.250000,0,0);}
.m53_c00008{transform:matrix(0.295445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295445,0.000000,0.000000,0.250000,0,0);}
.m28_c00008{transform:matrix(0.296116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296116,0.000000,0.000000,0.250000,0,0);}
.m15_c00008{transform:matrix(0.296671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296671,0.000000,0.000000,0.250000,0,0);}
.m7e_c00008{transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);}
.m6e_c00008{transform:matrix(0.297273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297273,0.000000,0.000000,0.250000,0,0);}
.me_c00008{transform:matrix(0.298107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298107,0.000000,0.000000,0.250000,0,0);}
.m81_c00008{transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);}
.m38_c00008{transform:matrix(0.298595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298595,0.000000,0.000000,0.250000,0,0);}
.m9d_c00008{transform:matrix(0.299520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299520,0.000000,0.000000,0.250000,0,0);}
.m21_c00008{transform:matrix(0.300040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300040,0.000000,0.000000,0.250000,0,0);}
.m8d_c00008{transform:matrix(0.300650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300650,0.000000,0.000000,0.250000,0,0);}
.m9c_c00008{transform:matrix(0.301590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301590,0.000000,0.000000,0.250000,0,0);}
.m19_c00008{transform:matrix(0.302096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302096,0.000000,0.000000,0.250000,0,0);}
.m48_c00008{transform:matrix(0.302887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302887,0.000000,0.000000,0.250000,0,0);}
.m26_c00008{transform:matrix(0.303830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303830,0.000000,0.000000,0.250000,0,0);}
.ma0_c00008{transform:matrix(0.304372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304372,0.000000,0.000000,0.250000,0,0);}
.m51_c00008{transform:matrix(0.304616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304616,0.000000,0.000000,0.250000,0,0);}
.ma6_c00008{transform:matrix(0.304642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304642,0.000000,0.000000,0.250000,0,0);}
.m7f_c00008{transform:matrix(0.305376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305376,0.000000,0.000000,0.250000,0,0);}
.m75_c00008{transform:matrix(0.305919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305919,0.000000,0.000000,0.250000,0,0);}
.m6c_c00008{transform:matrix(0.306275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306275,0.000000,0.000000,0.250000,0,0);}
.m88_c00008{transform:matrix(0.306903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306903,0.000000,0.000000,0.250000,0,0);}
.m6b_c00008{transform:matrix(0.307871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307871,0.000000,0.000000,0.250000,0,0);}
.m4_c00008{transform:matrix(0.307938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307938,0.000000,0.000000,0.250000,0,0);}
.m54_c00008{transform:matrix(0.309294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309294,0.000000,0.000000,0.250000,0,0);}
.m1a_c00008{transform:matrix(0.310938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310938,0.000000,0.000000,0.250000,0,0);}
.m42_c00008{transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);}
.m72_c00008{transform:matrix(0.312163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312163,0.000000,0.000000,0.250000,0,0);}
.m6d_c00008{transform:matrix(0.313569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313569,0.000000,0.000000,0.250000,0,0);}
.m37_c00008{transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);}
.m5c_c00008{transform:matrix(0.313822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313822,0.000000,0.000000,0.250000,0,0);}
.m66_c00008{transform:matrix(0.313839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313839,0.000000,0.000000,0.250000,0,0);}
.m11_c00008{transform:matrix(0.314528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314528,0.000000,0.000000,0.250000,0,0);}
.m25_c00008{transform:matrix(0.316040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316040,0.000000,0.000000,0.250000,0,0);}
.m67_c00008{transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);}
.m52_c00008{transform:matrix(0.317055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317055,0.000000,0.000000,0.250000,0,0);}
.m78_c00008{transform:matrix(0.317515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317515,0.000000,0.000000,0.250000,0,0);}
.m3c_c00008{transform:matrix(0.317571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317571,0.000000,0.000000,0.250000,0,0);}
.m9a_c00008{transform:matrix(0.318082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318082,0.000000,0.000000,0.250000,0,0);}
.m35_c00008{transform:matrix(0.318696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318696,0.000000,0.000000,0.250000,0,0);}
.m55_c00008{transform:matrix(0.319065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319065,0.000000,0.000000,0.250000,0,0);}
.m68_c00008{transform:matrix(0.319130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319130,0.000000,0.000000,0.250000,0,0);}
.m89_c00008{transform:matrix(0.320110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320110,0.000000,0.000000,0.250000,0,0);}
.m94_c00008{transform:matrix(0.320835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320835,0.000000,0.000000,0.250000,0,0);}
.m58_c00008{transform:matrix(0.321234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321234,0.000000,0.000000,0.250000,0,0);}
.m20_c00008{transform:matrix(0.321921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321921,0.000000,0.000000,0.250000,0,0);}
.ma1_c00008{transform:matrix(0.322224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322224,0.000000,0.000000,0.250000,0,0);}
.m97_c00008{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.m74_c00008{transform:matrix(0.323918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323918,0.000000,0.000000,0.250000,0,0);}
.m85_c00008{transform:matrix(0.325269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325269,0.000000,0.000000,0.250000,0,0);}
.m44_c00008{transform:matrix(0.327290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327290,0.000000,0.000000,0.250000,0,0);}
.m99_c00008{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.mb_c00008{transform:matrix(0.327627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327627,0.000000,0.000000,0.250000,0,0);}
.m71_c00008{transform:matrix(0.327730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327730,0.000000,0.000000,0.250000,0,0);}
.m56_c00008{transform:matrix(0.328213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328213,0.000000,0.000000,0.250000,0,0);}
.m76_c00008{transform:matrix(0.329979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329979,0.000000,0.000000,0.250000,0,0);}
.m6_c00008{transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);}
.m4d_c00008{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m62_c00008{transform:matrix(0.334186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334186,0.000000,0.000000,0.250000,0,0);}
.m32_c00008{transform:matrix(0.335563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335563,0.000000,0.000000,0.250000,0,0);}
.m3a_c00008{transform:matrix(0.335935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335935,0.000000,0.000000,0.250000,0,0);}
.m17_c00008{transform:matrix(0.336348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336348,0.000000,0.000000,0.250000,0,0);}
.m5b_c00008{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m80_c00008{transform:matrix(0.346728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346728,0.000000,0.000000,0.250000,0,0);}
.m93_c00008{transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);}
.m2f_c00008{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m2d_c00008{transform:matrix(0.349554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349554,0.000000,0.000000,0.250000,0,0);}
.m18_c00008{transform:matrix(0.349599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349599,0.000000,0.000000,0.250000,0,0);}
.m39_c00008{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m79_c00008{transform:matrix(0.357612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357612,0.000000,0.000000,0.250000,0,0);}
.m64_c00008{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m86_c00008{transform:matrix(0.362984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362984,0.000000,0.000000,0.250000,0,0);}
.m3b_c00008{transform:matrix(0.363610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363610,0.000000,0.000000,0.250000,0,0);}
.m73_c00008{transform:matrix(0.367076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367076,0.000000,0.000000,0.250000,0,0);}
.m3e_c00008{transform:matrix(0.368506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368506,0.000000,0.000000,0.250000,0,0);}
.m4e_c00008{transform:matrix(0.380993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380993,0.000000,0.000000,0.250000,0,0);}
.m7c_c00008{transform:matrix(0.385270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385270,0.000000,0.000000,0.250000,0,0);}
.v0_c00008{vertical-align:0.000000px;}
.v1_c00008{vertical-align:22.809600px;}
.lsa_c00008{letter-spacing:-2.744280px;}
.lse_c00008{letter-spacing:-2.375762px;}
.ls0_c00008{letter-spacing:0.000000px;}
.ls7_c00008{letter-spacing:0.078943px;}
.ls10_c00008{letter-spacing:1.685772px;}
.ls4_c00008{letter-spacing:1.975882px;}
.lsd_c00008{letter-spacing:2.132698px;}
.lsb_c00008{letter-spacing:3.112798px;}
.ls5_c00008{letter-spacing:3.157704px;}
.ls9_c00008{letter-spacing:3.246091px;}
.ls8_c00008{letter-spacing:3.663000px;}
.ls11_c00008{letter-spacing:3.700858px;}
.ls3_c00008{letter-spacing:3.920400px;}
.ls1_c00008{letter-spacing:4.078810px;}
.ls2_c00008{letter-spacing:31.363200px;}
.lsc_c00008{letter-spacing:51.321798px;}
.lsf_c00008{letter-spacing:52.747398px;}
.ls6_c00008{letter-spacing:59.875398px;}
.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;}
}
.ws1_c00008{word-spacing:-19.602000px;}
.ws2_c00008{word-spacing:0.000000px;}
.ws0_c00008{word-spacing:6.429456px;}
._3_c00008{margin-left:-16.968600px;}
._7_c00008{margin-left:-7.683984px;}
._6_c00008{width:6.586272px;}
._9_c00008{width:8.154432px;}
._8_c00008{width:9.173736px;}
._5_c00008{width:28.854144px;}
._4_c00008{width:47.754432px;}
._1_c00008{width:137.575152px;}
._0_c00008{width:521.763154px;}
._2_c00008{width:538.172712px;}
.fc0_c00008{color:transparent;}
.fs1_c00008{font-size:22.176000px;}
.fs6_c00008{font-size:25.344000px;}
.fsa_c00008{font-size:26.928000px;}
.fs4_c00008{font-size:27.720000px;}
.fs7_c00008{font-size:31.363200px;}
.fs0_c00008{font-size:33.264000px;}
.fs2_c00008{font-size:33.660000px;}
.fs3_c00008{font-size:34.056198px;}
.fs10_c00008{font-size:39.204000px;}
.fsf_c00008{font-size:51.321798px;}
.fs11_c00008{font-size:52.747398px;}
.fsc_c00008{font-size:59.875398px;}
.fsd_c00008{font-size:73.260000px;}
.fse_c00008{font-size:76.824000px;}
.fs8_c00008{font-size:78.408000px;}
.fsb_c00008{font-size:79.200000px;}
.fs5_c00008{font-size:81.576198px;}
.fs9_c00008{font-size:87.714000px;}
.fs12_c00008{font-size:91.872198px;}
.y0_c00008{bottom:0.000000px;}
.y23_c00008{bottom:18.083385px;}
.y1_c00008{bottom:76.500000px;}
.y3_c00008{bottom:87.586335px;}
.y22_c00008{bottom:111.465135px;}
.y21_c00008{bottom:138.902985px;}
.y20_c00008{bottom:169.914735px;}
.y1f_c00008{bottom:205.198335px;}
.y1e_c00008{bottom:237.982185px;}
.y1d_c00008{bottom:270.770985px;}
.y1c_c00008{bottom:302.846985px;}
.y1b_c00008{bottom:334.927935px;}
.y1a_c00008{bottom:367.716735px;}
.y19_c00008{bottom:399.436335px;}
.y18_c00008{bottom:432.576585px;}
.y17_c00008{bottom:465.726735px;}
.y15_c00008{bottom:530.591535px;}
.y16_c00008{bottom:530.947935px;}
.y14_c00008{bottom:563.736735px;}
.y13_c00008{bottom:597.594735px;}
.y12_c00008{bottom:629.309385px;}
.y11_c00008{bottom:661.746735px;}
.y24_c00008{bottom:682.417935px;}
.y10_c00008{bottom:694.179135px;}
.yf_c00008{bottom:726.611535px;}
.ye_c00008{bottom:758.682585px;}
.y2_c00008{bottom:770.800185px;}
.yd_c00008{bottom:823.195935px;}
.yc_c00008{bottom:856.692585px;}
.yb_c00008{bottom:886.630185px;}
.ya_c00008{bottom:890.906985px;}
.y9_c00008{bottom:925.482735px;}
.y8_c00008{bottom:1029.546585px;}
.y7_c00008{bottom:1039.882185px;}
.y6_c00008{bottom:1077.660585px;}
.y5_c00008{bottom:1100.826585px;}
.y4_c00008{bottom:1102.969935px;}
.h8_c00008{height:20.887891px;}
.h3_c00008{height:23.128875px;}
.h7_c00008{height:24.873750px;}
.h12_c00008{height:28.911094px;}
.h4_c00008{height:33.035449px;}
.hf_c00008{height:34.180317px;}
.h2_c00008{height:34.693313px;}
.h11_c00008{height:35.129767px;}
.h10_c00008{height:38.476582px;}
.hc_c00008{height:39.877015px;}
.h5_c00008{height:51.720694px;}
.he_c00008{height:75.398555px;}
.hd_c00008{height:76.407891px;}
.h9_c00008{height:76.953164px;}
.h6_c00008{height:80.062577px;}
.hb_c00008{height:82.603125px;}
.ha_c00008{height:86.086494px;}
.h13_c00008{height:90.167538px;}
.h1_c00008{height:1110.000000px;}
.h0_c00008{height:1263.000000px;}
.w1_c00008{width:733.500000px;}
.w0_c00008{width:892.500000px;}
.x0_c00008{left:0.000000px;}
.x3_c00008{left:6.701835px;}
.x2_c00008{left:29.466885px;}
.x3c_c00008{left:57.419535px;}
.x2a_c00008{left:59.315385px;}
.x64_c00008{left:60.409335px;}
.x7_c00008{left:61.983435px;}
.x10_c00008{left:63.790185px;}
.x20_c00008{left:65.591985px;}
.x1_c00008{left:79.500000px;}
.x35_c00008{left:90.302385px;}
.x21_c00008{left:95.593935px;}
.x46_c00008{left:100.118235px;}
.x2b_c00008{left:102.415035px;}
.x1a_c00008{left:104.731635px;}
.x4b_c00008{left:110.755785px;}
.x57_c00008{left:112.354635px;}
.x22_c00008{left:113.577285px;}
.x11_c00008{left:118.789635px;}
.x42_c00008{left:122.942685px;}
.x4_c00008{left:128.184735px;}
.x53_c00008{left:133.773285px;}
.x8_c00008{left:139.099485px;}
.x23_c00008{left:145.093935px;}
.x61_c00008{left:146.623485px;}
.x1b_c00008{left:147.974835px;}
.x31_c00008{left:155.914635px;}
.x54_c00008{left:166.963035px;}
.x47_c00008{left:168.002535px;}
.x3d_c00008{left:177.110535px;}
.x43_c00008{left:178.328235px;}
.x12_c00008{left:180.506235px;}
.x2c_c00008{left:189.020235px;}
.x5b_c00008{left:190.094385px;}
.x48_c00008{left:200.786385px;}
.x24_c00008{left:210.790335px;}
.x13_c00008{left:212.349585px;}
.x4c_c00008{left:221.299185px;}
.x1c_c00008{left:222.893085px;}
.x50_c00008{left:231.669435px;}
.x36_c00008{left:233.213835px;}
.x25_c00008{left:243.821685px;}
.x9_c00008{left:255.874935px;}
.x37_c00008{left:267.106485px;}
.x65_c00008{left:268.165785px;}
.x3e_c00008{left:287.624235px;}
.x38_c00008{left:289.193385px;}
.x32_c00008{left:300.217035px;}
.x14_c00008{left:309.973485px;}
.x60_c00008{left:312.285135px;}
.xa_c00008{left:322.328685px;}
.x1d_c00008{left:324.764085px;}
.x26_c00008{left:333.040485px;}
.x33_c00008{left:334.119585px;}
.x4d_c00008{left:345.153135px;}
.xb_c00008{left:354.657135px;}
.x27_c00008{left:364.923435px;}
.x2d_c00008{left:365.962935px;}
.x63_c00008{left:367.225185px;}
.x4a_c00008{left:377.283585px;}
.x39_c00008{left:388.282485px;}
.x5e_c00008{left:389.292285px;}
.x3f_c00008{left:399.296235px;}
.x28_c00008{left:400.350585px;}
.x15_c00008{left:410.017935px;}
.x5c_c00008{left:411.052485px;}
.xc_c00008{left:421.244535px;}
.x40_c00008{left:442.613685px;}
.x16_c00008{left:444.192735px;}
.x3a_c00008{left:453.662085px;}
.x58_c00008{left:454.805535px;}
.xd_c00008{left:465.497535px;}
.x55_c00008{left:466.655835px;}
.x1e_c00008{left:476.377635px;}
.x29_c00008{left:488.396235px;}
.x67_c00008{left:491.762235px;}
.x34_c00008{left:499.088235px;}
.x4e_c00008{left:509.814885px;}
.x17_c00008{left:520.506885px;}
.x59_c00008{left:521.942385px;}
.x2e_c00008{left:531.555285px;}
.x5d_c00008{left:533.307585px;}
.x44_c00008{left:542.747235px;}
.x18_c00008{left:554.345085px;}
.xe_c00008{left:565.408335px;}
.x62_c00008{left:566.467635px;}
.x2f_c00008{left:575.199435px;}
.x5a_c00008{left:576.422085px;}
.x51_c00008{left:587.802135px;}
.xf_c00008{left:598.345635px;}
.x45_c00008{left:599.602935px;}
.x30_c00008{left:609.265335px;}
.x56_c00008{left:620.259285px;}
.x49_c00008{left:631.372035px;}
.x41_c00008{left:632.391735px;}
.x5_c00008{left:640.187985px;}
.x19_c00008{left:641.836335px;}
.x52_c00008{left:643.039185px;}
.x4f_c00008{left:652.538235px;}
.x5f_c00008{left:657.834735px;}
.x1f_c00008{left:664.289535px;}
.x3b_c00008{left:665.848785px;}
.x6_c00008{left:673.610385px;}
.x66_c00008{left:680.985885px;}
.x68_c00008{left:704.696385px;}
@media print{
.v0_c00008{vertical-align:0.000000pt;}
.v1_c00008{vertical-align:20.275200pt;}
.lsa_c00008{letter-spacing:-2.439360pt;}
.lse_c00008{letter-spacing:-2.111789pt;}
.ls0_c00008{letter-spacing:0.000000pt;}
.ls7_c00008{letter-spacing:0.070171pt;}
.ls10_c00008{letter-spacing:1.498464pt;}
.ls4_c00008{letter-spacing:1.756339pt;}
.lsd_c00008{letter-spacing:1.895731pt;}
.lsb_c00008{letter-spacing:2.766931pt;}
.ls5_c00008{letter-spacing:2.806848pt;}
.ls9_c00008{letter-spacing:2.885414pt;}
.ls8_c00008{letter-spacing:3.256000pt;}
.ls11_c00008{letter-spacing:3.289651pt;}
.ls3_c00008{letter-spacing:3.484800pt;}
.ls1_c00008{letter-spacing:3.625609pt;}
.ls2_c00008{letter-spacing:27.878400pt;}
.lsc_c00008{letter-spacing:45.619376pt;}
.lsf_c00008{letter-spacing:46.886576pt;}
.ls6_c00008{letter-spacing:53.222576pt;}
.ws1_c00008{word-spacing:-17.424000pt;}
.ws2_c00008{word-spacing:0.000000pt;}
.ws0_c00008{word-spacing:5.715072pt;}
._3_c00008{margin-left:-15.083200pt;}
._7_c00008{margin-left:-6.830208pt;}
._6_c00008{width:5.854464pt;}
._9_c00008{width:7.248384pt;}
._8_c00008{width:8.154432pt;}
._5_c00008{width:25.648128pt;}
._4_c00008{width:42.448384pt;}
._1_c00008{width:122.289024pt;}
._0_c00008{width:463.789470pt;}
._2_c00008{width:478.375744pt;}
.fs1_c00008{font-size:19.712000pt;}
.fs6_c00008{font-size:22.528000pt;}
.fsa_c00008{font-size:23.936000pt;}
.fs4_c00008{font-size:24.640000pt;}
.fs7_c00008{font-size:27.878400pt;}
.fs0_c00008{font-size:29.568000pt;}
.fs2_c00008{font-size:29.920000pt;}
.fs3_c00008{font-size:30.272176pt;}
.fs10_c00008{font-size:34.848000pt;}
.fsf_c00008{font-size:45.619376pt;}
.fs11_c00008{font-size:46.886576pt;}
.fsc_c00008{font-size:53.222576pt;}
.fsd_c00008{font-size:65.120000pt;}
.fse_c00008{font-size:68.288000pt;}
.fs8_c00008{font-size:69.696000pt;}
.fsb_c00008{font-size:70.400000pt;}
.fs5_c00008{font-size:72.512176pt;}
.fs9_c00008{font-size:77.968000pt;}
.fs12_c00008{font-size:81.664176pt;}
.y0_c00008{bottom:0.000000pt;}
.y23_c00008{bottom:16.074120pt;}
.y1_c00008{bottom:68.000000pt;}
.y3_c00008{bottom:77.854520pt;}
.y22_c00008{bottom:99.080120pt;}
.y21_c00008{bottom:123.469320pt;}
.y20_c00008{bottom:151.035320pt;}
.y1f_c00008{bottom:182.398520pt;}
.y1e_c00008{bottom:211.539720pt;}
.y1d_c00008{bottom:240.685320pt;}
.y1c_c00008{bottom:269.197320pt;}
.y1b_c00008{bottom:297.713720pt;}
.y1a_c00008{bottom:326.859320pt;}
.y19_c00008{bottom:355.054520pt;}
.y18_c00008{bottom:384.512520pt;}
.y17_c00008{bottom:413.979320pt;}
.y15_c00008{bottom:471.636920pt;}
.y16_c00008{bottom:471.953720pt;}
.y14_c00008{bottom:501.099320pt;}
.y13_c00008{bottom:531.195320pt;}
.y12_c00008{bottom:559.386120pt;}
.y11_c00008{bottom:588.219320pt;}
.y24_c00008{bottom:606.593720pt;}
.y10_c00008{bottom:617.048120pt;}
.yf_c00008{bottom:645.876920pt;}
.ye_c00008{bottom:674.384520pt;}
.y2_c00008{bottom:685.155720pt;}
.yd_c00008{bottom:731.729720pt;}
.yc_c00008{bottom:761.504520pt;}
.yb_c00008{bottom:788.115720pt;}
.ya_c00008{bottom:791.917320pt;}
.y9_c00008{bottom:822.651320pt;}
.y8_c00008{bottom:915.152520pt;}
.y7_c00008{bottom:924.339720pt;}
.y6_c00008{bottom:957.920520pt;}
.y5_c00008{bottom:978.512520pt;}
.y4_c00008{bottom:980.417720pt;}
.h8_c00008{height:18.567014pt;}
.h3_c00008{height:20.559000pt;}
.h7_c00008{height:22.110000pt;}
.h12_c00008{height:25.698750pt;}
.h4_c00008{height:29.364844pt;}
.hf_c00008{height:30.382504pt;}
.h2_c00008{height:30.838500pt;}
.h11_c00008{height:31.226460pt;}
.h10_c00008{height:34.201406pt;}
.hc_c00008{height:35.446236pt;}
.h5_c00008{height:45.973950pt;}
.he_c00008{height:67.020938pt;}
.hd_c00008{height:67.918125pt;}
.h9_c00008{height:68.402813pt;}
.h6_c00008{height:71.166735pt;}
.hb_c00008{height:73.425000pt;}
.ha_c00008{height:76.521328pt;}
.h13_c00008{height:80.148923pt;}
.h1_c00008{height:986.666667pt;}
.h0_c00008{height:1122.666667pt;}
.w1_c00008{width:652.000000pt;}
.w0_c00008{width:793.333333pt;}
.x0_c00008{left:0.000000pt;}
.x3_c00008{left:5.957187pt;}
.x2_c00008{left:26.192787pt;}
.x3c_c00008{left:51.039587pt;}
.x2a_c00008{left:52.724787pt;}
.x64_c00008{left:53.697187pt;}
.x7_c00008{left:55.096387pt;}
.x10_c00008{left:56.702387pt;}
.x20_c00008{left:58.303987pt;}
.x1_c00008{left:70.666667pt;}
.x35_c00008{left:80.268787pt;}
.x21_c00008{left:84.972387pt;}
.x46_c00008{left:88.993987pt;}
.x2b_c00008{left:91.035587pt;}
.x1a_c00008{left:93.094787pt;}
.x4b_c00008{left:98.449587pt;}
.x57_c00008{left:99.870787pt;}
.x22_c00008{left:100.957587pt;}
.x11_c00008{left:105.590787pt;}
.x42_c00008{left:109.282387pt;}
.x4_c00008{left:113.941987pt;}
.x53_c00008{left:118.909587pt;}
.x8_c00008{left:123.643987pt;}
.x23_c00008{left:128.972387pt;}
.x61_c00008{left:130.331987pt;}
.x1b_c00008{left:131.533187pt;}
.x31_c00008{left:138.590787pt;}
.x54_c00008{left:148.411587pt;}
.x47_c00008{left:149.335587pt;}
.x3d_c00008{left:157.431587pt;}
.x43_c00008{left:158.513987pt;}
.x12_c00008{left:160.449987pt;}
.x2c_c00008{left:168.017987pt;}
.x5b_c00008{left:168.972787pt;}
.x48_c00008{left:178.476787pt;}
.x24_c00008{left:187.369187pt;}
.x13_c00008{left:188.755187pt;}
.x4c_c00008{left:196.710387pt;}
.x1c_c00008{left:198.127187pt;}
.x50_c00008{left:205.928387pt;}
.x36_c00008{left:207.301187pt;}
.x25_c00008{left:216.730387pt;}
.x9_c00008{left:227.444387pt;}
.x37_c00008{left:237.427987pt;}
.x65_c00008{left:238.369587pt;}
.x3e_c00008{left:255.665987pt;}
.x38_c00008{left:257.060787pt;}
.x32_c00008{left:266.859587pt;}
.x14_c00008{left:275.531987pt;}
.x60_c00008{left:277.586787pt;}
.xa_c00008{left:286.514387pt;}
.x1d_c00008{left:288.679187pt;}
.x26_c00008{left:296.035987pt;}
.x33_c00008{left:296.995187pt;}
.x4d_c00008{left:306.802787pt;}
.xb_c00008{left:315.250787pt;}
.x27_c00008{left:324.376387pt;}
.x2d_c00008{left:325.300387pt;}
.x63_c00008{left:326.422387pt;}
.x4a_c00008{left:335.363187pt;}
.x39_c00008{left:345.139987pt;}
.x5e_c00008{left:346.037587pt;}
.x3f_c00008{left:354.929987pt;}
.x28_c00008{left:355.867187pt;}
.x15_c00008{left:364.460387pt;}
.x5c_c00008{left:365.379987pt;}
.xc_c00008{left:374.439587pt;}
.x40_c00008{left:393.434387pt;}
.x16_c00008{left:394.837987pt;}
.x3a_c00008{left:403.255187pt;}
.x58_c00008{left:404.271587pt;}
.xd_c00008{left:413.775587pt;}
.x55_c00008{left:414.805187pt;}
.x1e_c00008{left:423.446787pt;}
.x29_c00008{left:434.129987pt;}
.x67_c00008{left:437.121987pt;}
.x34_c00008{left:443.633987pt;}
.x4e_c00008{left:453.168787pt;}
.x17_c00008{left:462.672787pt;}
.x59_c00008{left:463.948787pt;}
.x2e_c00008{left:472.493587pt;}
.x5d_c00008{left:474.051187pt;}
.x44_c00008{left:482.441987pt;}
.x18_c00008{left:492.751187pt;}
.xe_c00008{left:502.585187pt;}
.x62_c00008{left:503.526787pt;}
.x2f_c00008{left:511.288387pt;}
.x5a_c00008{left:512.375187pt;}
.x51_c00008{left:522.490787pt;}
.xf_c00008{left:531.862787pt;}
.x45_c00008{left:532.980387pt;}
.x30_c00008{left:541.569187pt;}
.x56_c00008{left:551.341587pt;}
.x49_c00008{left:561.219587pt;}
.x41_c00008{left:562.125987pt;}
.x5_c00008{left:569.055987pt;}
.x19_c00008{left:570.521187pt;}
.x52_c00008{left:571.590387pt;}
.x4f_c00008{left:580.033987pt;}
.x5f_c00008{left:584.741987pt;}
.x1f_c00008{left:590.479587pt;}
.x3b_c00008{left:591.865587pt;}
.x6_c00008{left:598.764787pt;}
.x66_c00008{left:605.320787pt;}
.x68_c00008{left:626.396787pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_19fa380c4769c42297ffb974.woff2')format("woff");}.ff1_c00009{font-family:ff1_c00009;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00009;src:url('chunks/assets/font_1022e4f5c8f80bdfc00fb776.woff2')format("woff");}.ff2_c00009{font-family:ff2_c00009;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ma7_c00009{transform:matrix(0.167138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167138,0.000000,0.000000,0.250000,0,0);}
.m11_c00009{transform:matrix(0.212001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212001,0.000000,0.000000,0.250000,0,0);}
.ma2_c00009{transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);}
.ma5_c00009{transform:matrix(0.244060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244060,0.000000,0.000000,0.250000,0,0);}
.m7a_c00009{transform:matrix(0.245251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245251,0.000000,0.000000,0.250000,0,0);}
.m45_c00009{transform:matrix(0.247349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247349,0.000000,0.000000,0.250000,0,0);}
.m2_c00009{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m81_c00009{transform:matrix(0.250280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250280,0.000000,0.000000,0.250000,0,0);}
.m2b_c00009{transform:matrix(0.252064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252064,0.000000,0.000000,0.250000,0,0);}
.mb7_c00009{transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);}
.m8_c00009{transform:matrix(0.253790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253790,0.000000,0.000000,0.250000,0,0);}
.m97_c00009{transform:matrix(0.255030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255030,0.000000,0.000000,0.250000,0,0);}
.m9d_c00009{transform:matrix(0.256467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256467,0.000000,0.000000,0.250000,0,0);}
.m42_c00009{transform:matrix(0.257797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257797,0.000000,0.000000,0.250000,0,0);}
.m6e_c00009{transform:matrix(0.257917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257917,0.000000,0.000000,0.250000,0,0);}
.m58_c00009{transform:matrix(0.259212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259212,0.000000,0.000000,0.250000,0,0);}
.m37_c00009{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.m50_c00009{transform:matrix(0.262074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262074,0.000000,0.000000,0.250000,0,0);}
.m0_c00009{transform:matrix(0.263086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263086,0.000000,0.000000,0.250000,0,0);}
.m71_c00009{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m67_c00009{transform:matrix(0.263394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263394,0.000000,0.000000,0.250000,0,0);}
.m70_c00009{transform:matrix(0.263720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263720,0.000000,0.000000,0.250000,0,0);}
.m89_c00009{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.maa_c00009{transform:matrix(0.264487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264487,0.000000,0.000000,0.250000,0,0);}
.m26_c00009{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m74_c00009{transform:matrix(0.266684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266684,0.000000,0.000000,0.250000,0,0);}
.m16_c00009{transform:matrix(0.267917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267917,0.000000,0.000000,0.250000,0,0);}
.m29_c00009{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m3b_c00009{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.m99_c00009{transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);}
.m44_c00009{transform:matrix(0.269549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269549,0.000000,0.000000,0.250000,0,0);}
.m32_c00009{transform:matrix(0.269857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269857,0.000000,0.000000,0.250000,0,0);}
.m63_c00009{transform:matrix(0.270326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270326,0.000000,0.000000,0.250000,0,0);}
.mb3_c00009{transform:matrix(0.270652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270652,0.000000,0.000000,0.250000,0,0);}
.m62_c00009{transform:matrix(0.270810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270810,0.000000,0.000000,0.250000,0,0);}
.m76_c00009{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m98_c00009{transform:matrix(0.270977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270977,0.000000,0.000000,0.250000,0,0);}
.m7_c00009{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m6a_c00009{transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);}
.m5e_c00009{transform:matrix(0.276181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276181,0.000000,0.000000,0.250000,0,0);}
.m68_c00009{transform:matrix(0.276245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276245,0.000000,0.000000,0.250000,0,0);}
.m86_c00009{transform:matrix(0.276699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276699,0.000000,0.000000,0.250000,0,0);}
.m69_c00009{transform:matrix(0.277423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277423,0.000000,0.000000,0.250000,0,0);}
.m48_c00009{transform:matrix(0.278162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278162,0.000000,0.000000,0.250000,0,0);}
.mac_c00009{transform:matrix(0.278863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278863,0.000000,0.000000,0.250000,0,0);}
.m47_c00009{transform:matrix(0.279134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279134,0.000000,0.000000,0.250000,0,0);}
.me_c00009{transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);}
.m84_c00009{transform:matrix(0.280163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280163,0.000000,0.000000,0.250000,0,0);}
.m9_c00009{transform:matrix(0.280329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280329,0.000000,0.000000,0.250000,0,0);}
.m1b_c00009{transform:matrix(0.280783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280783,0.000000,0.000000,0.250000,0,0);}
.m14_c00009{transform:matrix(0.282018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282018,0.000000,0.000000,0.250000,0,0);}
.m8f_c00009{transform:matrix(0.282622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282622,0.000000,0.000000,0.250000,0,0);}
.m38_c00009{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.mb0_c00009{transform:matrix(0.284301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284301,0.000000,0.000000,0.250000,0,0);}
.m23_c00009{transform:matrix(0.284924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284924,0.000000,0.000000,0.250000,0,0);}
.m56_c00009{transform:matrix(0.286056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286056,0.000000,0.000000,0.250000,0,0);}
.ma_c00009{transform:matrix(0.286828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286828,0.000000,0.000000,0.250000,0,0);}
.m4b_c00009{transform:matrix(0.287440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287440,0.000000,0.000000,0.250000,0,0);}
.m8c_c00009{transform:matrix(0.287521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287521,0.000000,0.000000,0.250000,0,0);}
.m3f_c00009{transform:matrix(0.287688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287688,0.000000,0.000000,0.250000,0,0);}
.m20_c00009{transform:matrix(0.287771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287771,0.000000,0.000000,0.250000,0,0);}
.m9c_c00009{transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);}
.ma4_c00009{transform:matrix(0.288712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288712,0.000000,0.000000,0.250000,0,0);}
.m39_c00009{transform:matrix(0.288974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288974,0.000000,0.000000,0.250000,0,0);}
.m87_c00009{transform:matrix(0.289379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289379,0.000000,0.000000,0.250000,0,0);}
.m2c_c00009{transform:matrix(0.291110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291110,0.000000,0.000000,0.250000,0,0);}
.m40_c00009{transform:matrix(0.291234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291234,0.000000,0.000000,0.250000,0,0);}
.m57_c00009{transform:matrix(0.292518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292518,0.000000,0.000000,0.250000,0,0);}
.m79_c00009{transform:matrix(0.293146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293146,0.000000,0.000000,0.250000,0,0);}
.m12_c00009{transform:matrix(0.294119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294119,0.000000,0.000000,0.250000,0,0);}
.m24_c00009{transform:matrix(0.294443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294443,0.000000,0.000000,0.250000,0,0);}
.m49_c00009{transform:matrix(0.294507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294507,0.000000,0.000000,0.250000,0,0);}
.m17_c00009{transform:matrix(0.294640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294640,0.000000,0.000000,0.250000,0,0);}
.m54_c00009{transform:matrix(0.294735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294735,0.000000,0.000000,0.250000,0,0);}
.m9a_c00009{transform:matrix(0.294789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294789,0.000000,0.000000,0.250000,0,0);}
.m22_c00009{transform:matrix(0.295662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295662,0.000000,0.000000,0.250000,0,0);}
.m2f_c00009{transform:matrix(0.295952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295952,0.000000,0.000000,0.250000,0,0);}
.m2a_c00009{transform:matrix(0.295978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295978,0.000000,0.000000,0.250000,0,0);}
.m34_c00009{transform:matrix(0.296654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296654,0.000000,0.000000,0.250000,0,0);}
.m1d_c00009{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.maf_c00009{transform:matrix(0.297122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297122,0.000000,0.000000,0.250000,0,0);}
.m6_c00009{transform:matrix(0.297169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297169,0.000000,0.000000,0.250000,0,0);}
.m4f_c00009{transform:matrix(0.297706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297706,0.000000,0.000000,0.250000,0,0);}
.mc_c00009{transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);}
.m8b_c00009{transform:matrix(0.298417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298417,0.000000,0.000000,0.250000,0,0);}
.m3e_c00009{transform:matrix(0.298645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298645,0.000000,0.000000,0.250000,0,0);}
.m66_c00009{transform:matrix(0.298650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298650,0.000000,0.000000,0.250000,0,0);}
.m1c_c00009{transform:matrix(0.299198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299198,0.000000,0.000000,0.250000,0,0);}
.m8e_c00009{transform:matrix(0.299263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299263,0.000000,0.000000,0.250000,0,0);}
.m5a_c00009{transform:matrix(0.300121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300121,0.000000,0.000000,0.250000,0,0);}
.m9e_c00009{transform:matrix(0.300590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300590,0.000000,0.000000,0.250000,0,0);}
.m83_c00009{transform:matrix(0.300617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300617,0.000000,0.000000,0.250000,0,0);}
.m88_c00009{transform:matrix(0.301651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301651,0.000000,0.000000,0.250000,0,0);}
.mb_c00009{transform:matrix(0.301873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301873,0.000000,0.000000,0.250000,0,0);}
.m64_c00009{transform:matrix(0.301982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301982,0.000000,0.000000,0.250000,0,0);}
.m82_c00009{transform:matrix(0.302220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302220,0.000000,0.000000,0.250000,0,0);}
.m46_c00009{transform:matrix(0.302359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302359,0.000000,0.000000,0.250000,0,0);}
.m77_c00009{transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);}
.m6b_c00009{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m9b_c00009{transform:matrix(0.302754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302754,0.000000,0.000000,0.250000,0,0);}
.ma1_c00009{transform:matrix(0.302798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302798,0.000000,0.000000,0.250000,0,0);}
.ma8_c00009{transform:matrix(0.302992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302992,0.000000,0.000000,0.250000,0,0);}
.m60_c00009{transform:matrix(0.303866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303866,0.000000,0.000000,0.250000,0,0);}
.mb8_c00009{transform:matrix(0.304153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304153,0.000000,0.000000,0.250000,0,0);}
.m27_c00009{transform:matrix(0.304616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304616,0.000000,0.000000,0.250000,0,0);}
.ma9_c00009{transform:matrix(0.304631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304631,0.000000,0.000000,0.250000,0,0);}
.m1e_c00009{transform:matrix(0.306370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306370,0.000000,0.000000,0.250000,0,0);}
.mb1_c00009{transform:matrix(0.306429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306429,0.000000,0.000000,0.250000,0,0);}
.m10_c00009{transform:matrix(0.306689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306689,0.000000,0.000000,0.250000,0,0);}
.m6d_c00009{transform:matrix(0.306703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306703,0.000000,0.000000,0.250000,0,0);}
.m33_c00009{transform:matrix(0.306922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306922,0.000000,0.000000,0.250000,0,0);}
.m21_c00009{transform:matrix(0.307306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307306,0.000000,0.000000,0.250000,0,0);}
.m65_c00009{transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);}
.m75_c00009{transform:matrix(0.307787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307787,0.000000,0.000000,0.250000,0,0);}
.m19_c00009{transform:matrix(0.308030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308030,0.000000,0.000000,0.250000,0,0);}
.m4d_c00009{transform:matrix(0.308225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308225,0.000000,0.000000,0.250000,0,0);}
.m5d_c00009{transform:matrix(0.308319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308319,0.000000,0.000000,0.250000,0,0);}
.m5c_c00009{transform:matrix(0.308389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308389,0.000000,0.000000,0.250000,0,0);}
.m1a_c00009{transform:matrix(0.308497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308497,0.000000,0.000000,0.250000,0,0);}
.m31_c00009{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m52_c00009{transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);}
.m61_c00009{transform:matrix(0.309076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309076,0.000000,0.000000,0.250000,0,0);}
.m2d_c00009{transform:matrix(0.309721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309721,0.000000,0.000000,0.250000,0,0);}
.m7e_c00009{transform:matrix(0.311689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311689,0.000000,0.000000,0.250000,0,0);}
.m55_c00009{transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);}
.m80_c00009{transform:matrix(0.312347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312347,0.000000,0.000000,0.250000,0,0);}
.m96_c00009{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.mae_c00009{transform:matrix(0.312852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312852,0.000000,0.000000,0.250000,0,0);}
.m6c_c00009{transform:matrix(0.313023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313023,0.000000,0.000000,0.250000,0,0);}
.m35_c00009{transform:matrix(0.313301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313301,0.000000,0.000000,0.250000,0,0);}
.m30_c00009{transform:matrix(0.313425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313425,0.000000,0.000000,0.250000,0,0);}
.m2e_c00009{transform:matrix(0.313434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313434,0.000000,0.000000,0.250000,0,0);}
.m7c_c00009{transform:matrix(0.313839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313839,0.000000,0.000000,0.250000,0,0);}
.mad_c00009{transform:matrix(0.313897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313897,0.000000,0.000000,0.250000,0,0);}
.m93_c00009{transform:matrix(0.314604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314604,0.000000,0.000000,0.250000,0,0);}
.m94_c00009{transform:matrix(0.317925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317925,0.000000,0.000000,0.250000,0,0);}
.m3a_c00009{transform:matrix(0.317996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317996,0.000000,0.000000,0.250000,0,0);}
.m8a_c00009{transform:matrix(0.318060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318060,0.000000,0.000000,0.250000,0,0);}
.mb5_c00009{transform:matrix(0.318160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318160,0.000000,0.000000,0.250000,0,0);}
.m28_c00009{transform:matrix(0.318510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318510,0.000000,0.000000,0.250000,0,0);}
.m13_c00009{transform:matrix(0.318521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318521,0.000000,0.000000,0.250000,0,0);}
.m51_c00009{transform:matrix(0.318895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318895,0.000000,0.000000,0.250000,0,0);}
.mb6_c00009{transform:matrix(0.319694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319694,0.000000,0.000000,0.250000,0,0);}
.ma3_c00009{transform:matrix(0.319698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319698,0.000000,0.000000,0.250000,0,0);}
.m3_c00009{transform:matrix(0.320780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320780,0.000000,0.000000,0.250000,0,0);}
.mb4_c00009{transform:matrix(0.321354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321354,0.000000,0.000000,0.250000,0,0);}
.m7b_c00009{transform:matrix(0.321472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321472,0.000000,0.000000,0.250000,0,0);}
.m4_c00009{transform:matrix(0.321629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321629,0.000000,0.000000,0.250000,0,0);}
.m78_c00009{transform:matrix(0.322222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322222,0.000000,0.000000,0.250000,0,0);}
.m1f_c00009{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.m1_c00009{transform:matrix(0.323779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323779,0.000000,0.000000,0.250000,0,0);}
.md_c00009{transform:matrix(0.324229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324229,0.000000,0.000000,0.250000,0,0);}
.ma0_c00009{transform:matrix(0.324872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324872,0.000000,0.000000,0.250000,0,0);}
.m3c_c00009{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m4c_c00009{transform:matrix(0.327290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327290,0.000000,0.000000,0.250000,0,0);}
.m41_c00009{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.m43_c00009{transform:matrix(0.327729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327729,0.000000,0.000000,0.250000,0,0);}
.mf_c00009{transform:matrix(0.328813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328813,0.000000,0.000000,0.250000,0,0);}
.m90_c00009{transform:matrix(0.330299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330299,0.000000,0.000000,0.250000,0,0);}
.m25_c00009{transform:matrix(0.331751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331751,0.000000,0.000000,0.250000,0,0);}
.mab_c00009{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m85_c00009{transform:matrix(0.333358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333358,0.000000,0.000000,0.250000,0,0);}
.m4e_c00009{transform:matrix(0.334696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334696,0.000000,0.000000,0.250000,0,0);}
.m4a_c00009{transform:matrix(0.336349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336349,0.000000,0.000000,0.250000,0,0);}
.m72_c00009{transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);}
.m8d_c00009{transform:matrix(0.337511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337511,0.000000,0.000000,0.250000,0,0);}
.m15_c00009{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m95_c00009{transform:matrix(0.340203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340203,0.000000,0.000000,0.250000,0,0);}
.m7f_c00009{transform:matrix(0.341749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341749,0.000000,0.000000,0.250000,0,0);}
.m3d_c00009{transform:matrix(0.343069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343069,0.000000,0.000000,0.250000,0,0);}
.m9f_c00009{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.m6f_c00009{transform:matrix(0.345590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345590,0.000000,0.000000,0.250000,0,0);}
.m92_c00009{transform:matrix(0.346277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346277,0.000000,0.000000,0.250000,0,0);}
.m5_c00009{transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);}
.m73_c00009{transform:matrix(0.347505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347505,0.000000,0.000000,0.250000,0,0);}
.m5f_c00009{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m53_c00009{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m18_c00009{transform:matrix(0.355345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355345,0.000000,0.000000,0.250000,0,0);}
.m5b_c00009{transform:matrix(0.359351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359351,0.000000,0.000000,0.250000,0,0);}
.m7d_c00009{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m59_c00009{transform:matrix(0.362864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362864,0.000000,0.000000,0.250000,0,0);}
.m36_c00009{transform:matrix(0.366396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366396,0.000000,0.000000,0.250000,0,0);}
.mb2_c00009{transform:matrix(0.392742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392742,0.000000,0.000000,0.250000,0,0);}
.m91_c00009{transform:matrix(0.417547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417547,0.000000,0.000000,0.250000,0,0);}
.ma6_c00009{transform:matrix(0.424628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424628,0.000000,0.000000,0.250000,0,0);}
.v0_c00009{vertical-align:0.000000px;}
.ls5_c00009{letter-spacing:-2.744280px;}
.ls6_c00009{letter-spacing:-2.375762px;}
.ls4_c00009{letter-spacing:0.000000px;}
.lsa_c00009{letter-spacing:0.462607px;}
.ls3_c00009{letter-spacing:2.509056px;}
.lsb_c00009{letter-spacing:2.736439px;}
.ls0_c00009{letter-spacing:3.034390px;}
.ls9_c00009{letter-spacing:3.375900px;}
.ls8_c00009{letter-spacing:3.603610px;}
.ls7_c00009{letter-spacing:3.653813px;}
.ls2_c00009{letter-spacing:3.920400px;}
.ls1_c00009{letter-spacing:4.494610px;}
.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;}
}
.ws6_c00009{word-spacing:-23.255813px;}
.ws5_c00009{word-spacing:-22.636390px;}
.ws4_c00009{word-spacing:-22.338439px;}
.ws0_c00009{word-spacing:-19.602000px;}
.ws2_c00009{word-spacing:-2.195424px;}
.ws1_c00009{word-spacing:0.000000px;}
.ws3_c00009{word-spacing:5.096916px;}
._4_c00009{margin-left:-13.015728px;}
._8_c00009{margin-left:-11.604384px;}
._3_c00009{margin-left:-2.900304px;}
._7_c00009{width:2.195820px;}
._1_c00009{width:4.939704px;}
._11_c00009{width:6.217358px;}
._0_c00009{width:7.761600px;}
._9_c00009{width:9.173736px;}
._2_c00009{width:10.505880px;}
._b_c00009{width:11.761200px;}
._12_c00009{width:13.721400px;}
._6_c00009{width:22.346280px;}
._5_c00009{width:27.522792px;}
._a_c00009{width:29.088972px;}
._c_c00009{width:31.990464px;}
._10_c00009{width:33.413292px;}
._d_c00009{width:35.362008px;}
._e_c00009{width:46.219536px;}
._f_c00009{width:47.260224px;}
.fc0_c00009{color:transparent;}
.fs7_c00009{font-size:25.146000px;}
.fs2_c00009{font-size:27.720000px;}
.fs5_c00009{font-size:33.264000px;}
.fs6_c00009{font-size:67.518000px;}
.fs4_c00009{font-size:72.072198px;}
.fs8_c00009{font-size:77.022198px;}
.fs1_c00009{font-size:78.408000px;}
.fs3_c00009{font-size:78.804000px;}
.fs0_c00009{font-size:89.892198px;}
.y0_c00009{bottom:0.000000px;}
.y1_c00009{bottom:76.500000px;}
.y1c_c00009{bottom:141.046320px;}
.y1b_c00009{bottom:203.416320px;}
.y1a_c00009{bottom:237.630720px;}
.y19_c00009{bottom:270.058170px;}
.y18_c00009{bottom:303.921120px;}
.y17_c00009{bottom:336.348570px;}
.y16_c00009{bottom:369.142320px;}
.y15_c00009{bottom:401.569770px;}
.y14_c00009{bottom:419.751120px;}
.y13_c00009{bottom:434.002170px;}
.y12_c00009{bottom:466.078170px;}
.y11_c00009{bottom:498.515520px;}
.y10_c00009{bottom:531.660720px;}
.yf_c00009{bottom:551.614170px;}
.ye_c00009{bottom:596.520570px;}
.yd_c00009{bottom:628.601520px;}
.yc_c00009{bottom:661.385370px;}
.yb_c00009{bottom:693.466320px;}
.ya_c00009{bottom:715.919520px;}
.y9_c00009{bottom:725.898720px;}
.y8_c00009{bottom:759.043920px;}
.y7_c00009{bottom:792.540570px;}
.y6_c00009{bottom:824.621520px;}
.y5_c00009{bottom:890.550570px;}
.y4_c00009{bottom:911.221770px;}
.y3_c00009{bottom:923.344320px;}
.y1d_c00009{bottom:994.980720px;}
.y2_c00009{bottom:1079.442570px;}
.h9_c00009{height:26.226492px;}
.h4_c00009{height:28.911094px;}
.h7_c00009{height:34.693313px;}
.h8_c00009{height:70.419164px;}
.h6_c00009{height:75.169050px;}
.h3_c00009{height:76.953164px;}
.h5_c00009{height:77.341816px;}
.ha_c00009{height:80.331746px;}
.h2_c00009{height:88.224276px;}
.h1_c00009{height:1110.000000px;}
.h0_c00009{height:1263.000000px;}
.w1_c00009{width:733.500000px;}
.w0_c00009{width:892.500000px;}
.x0_c00009{left:0.000000px;}
.x6c_c00009{left:62.102235px;}
.x69_c00009{left:67.755135px;}
.x5a_c00009{left:68.764935px;}
.x19_c00009{left:69.819285px;}
.x3_c00009{left:71.343885px;}
.x49_c00009{left:73.190235px;}
.x1_c00009{left:79.500000px;}
.x61_c00009{left:89.782635px;}
.x28_c00009{left:91.059735px;}
.x6d_c00009{left:100.667685px;}
.x35_c00009{left:101.895285px;}
.xd_c00009{left:103.400085px;}
.x65_c00009{left:111.532935px;}
.x3d_c00009{left:113.468385px;}
.x14_c00009{left:122.180385px;}
.x3a_c00009{left:123.843585px;}
.x29_c00009{left:132.897135px;}
.x5b_c00009{left:134.347485px;}
.x4f_c00009{left:135.827535px;}
.x6a_c00009{left:143.242635px;}
.x66_c00009{left:145.549335px;}
.x4a_c00009{left:148.405485px;}
.xe_c00009{left:155.721585px;}
.x67_c00009{left:177.437235px;}
.x4_c00009{left:178.456935px;}
.x4b_c00009{left:180.783435px;}
.x24_c00009{left:188.708385px;}
.x5c_c00009{left:190.079535px;}
.x50_c00009{left:191.519985px;}
.x43_c00009{left:200.276535px;}
.x25_c00009{left:209.181585px;}
.x5_c00009{left:210.310185px;}
.x4c_c00009{left:212.790135px;}
.x51_c00009{left:223.130685px;}
.x2e_c00009{left:231.704085px;}
.x54_c00009{left:233.248485px;}
.x1a_c00009{left:241.955535px;}
.x15_c00009{left:243.217785px;}
.x2a_c00009{left:253.444485px;}
.x3e_c00009{left:255.300735px;}
.xf_c00009{left:264.487935px;}
.x6e_c00009{left:266.037285px;}
.x1b_c00009{left:274.437435px;}
.x57_c00009{left:275.467035px;}
.x4d_c00009{left:276.536235px;}
.x44_c00009{left:288.445935px;}
.x26_c00009{left:296.890635px;}
.x2f_c00009{left:298.826085px;}
.x30_c00009{left:309.671535px;}
.x10_c00009{left:319.794285px;}
.x6f_c00009{left:321.076335px;}
.x3f_c00009{left:332.342535px;}
.x58_c00009{left:342.970185px;}
.x31_c00009{left:344.069085px;}
.x2d_c00009{left:348.108285px;}
.x6_c00009{left:352.167285px;}
.x1c_c00009{left:353.721585px;}
.x55_c00009{left:354.756135px;}
.x40_c00009{left:364.364085px;}
.x3b_c00009{left:366.725235px;}
.x32_c00009{left:375.694635px;}
.x16_c00009{left:385.421385px;}
.x42_c00009{left:386.936085px;}
.x36_c00009{left:397.529085px;}
.x1d_c00009{left:408.468585px;}
.x5d_c00009{left:409.998135px;}
.x45_c00009{left:420.655485px;}
.x70_c00009{left:432.763185px;}
.x11_c00009{left:439.807035px;}
.x37_c00009{left:440.831685px;}
.x1e_c00009{left:442.064235px;}
.x17_c00009{left:453.063135px;}
.x71_c00009{left:454.216485px;}
.x7_c00009{left:463.403685px;}
.x46_c00009{left:475.244085px;}
.x72_c00009{left:476.625135px;}
.x12_c00009{left:485.767785px;}
.x6b_c00009{left:487.015185px;}
.x2b_c00009{left:496.083585px;}
.x8_c00009{left:497.291385px;}
.x1f_c00009{left:507.320085px;}
.x52_c00009{left:509.092185px;}
.x56_c00009{left:519.081285px;}
.x20_c00009{left:529.758435px;}
.x3c_c00009{left:530.768235px;}
.x38_c00009{left:540.999885px;}
.x62_c00009{left:542.192835px;}
.x73_c00009{left:544.994535px;}
.x13_c00009{left:551.528535px;}
.x5e_c00009{left:552.582885px;}
.x53_c00009{left:558.894135px;}
.x4e_c00009{left:562.725435px;}
.x39_c00009{left:563.903535px;}
.x5f_c00009{left:565.447935px;}
.x21_c00009{left:573.422385px;}
.x47_c00009{left:574.501485px;}
.x63_c00009{left:577.412085px;}
.x9_c00009{left:584.297535px;}
.x59_c00009{left:585.544935px;}
.x18_c00009{left:595.687485px;}
.x68_c00009{left:596.776485px;}
.x27_c00009{left:606.567585px;}
.x60_c00009{left:608.418885px;}
.xa_c00009{left:616.843785px;}
.x48_c00009{left:619.195035px;}
.x22_c00009{left:629.565285px;}
.x33_c00009{left:637.742685px;}
.x34_c00009{left:640.965135px;}
.x64_c00009{left:642.029385px;}
.x2_c00009{left:648.018885px;}
.x2c_c00009{left:651.305685px;}
.x41_c00009{left:652.558035px;}
.x23_c00009{left:662.566935px;}
.xc_c00009{left:674.927085px;}
.xb_c00009{left:678.896985px;}
.x74_c00009{left:683.648985px;}
.x75_c00009{left:734.802285px;}
@media print{
.v0_c00009{vertical-align:0.000000pt;}
.ls5_c00009{letter-spacing:-2.439360pt;}
.ls6_c00009{letter-spacing:-2.111789pt;}
.ls4_c00009{letter-spacing:0.000000pt;}
.lsa_c00009{letter-spacing:0.411206pt;}
.ls3_c00009{letter-spacing:2.230272pt;}
.lsb_c00009{letter-spacing:2.432390pt;}
.ls0_c00009{letter-spacing:2.697235pt;}
.ls9_c00009{letter-spacing:3.000800pt;}
.ls8_c00009{letter-spacing:3.203209pt;}
.ls7_c00009{letter-spacing:3.247834pt;}
.ls2_c00009{letter-spacing:3.484800pt;}
.ls1_c00009{letter-spacing:3.995209pt;}
.ws6_c00009{word-spacing:-20.671834pt;}
.ws5_c00009{word-spacing:-20.121235pt;}
.ws4_c00009{word-spacing:-19.856390pt;}
.ws0_c00009{word-spacing:-17.424000pt;}
.ws2_c00009{word-spacing:-1.951488pt;}
.ws1_c00009{word-spacing:0.000000pt;}
.ws3_c00009{word-spacing:4.530592pt;}
._4_c00009{margin-left:-11.569536pt;}
._8_c00009{margin-left:-10.315008pt;}
._3_c00009{margin-left:-2.578048pt;}
._7_c00009{width:1.951840pt;}
._1_c00009{width:4.390848pt;}
._11_c00009{width:5.526541pt;}
._0_c00009{width:6.899200pt;}
._9_c00009{width:8.154432pt;}
._2_c00009{width:9.338560pt;}
._b_c00009{width:10.454400pt;}
._12_c00009{width:12.196800pt;}
._6_c00009{width:19.863360pt;}
._5_c00009{width:24.464704pt;}
._a_c00009{width:25.856864pt;}
._c_c00009{width:28.435968pt;}
._10_c00009{width:29.700704pt;}
._d_c00009{width:31.432896pt;}
._e_c00009{width:41.084032pt;}
._f_c00009{width:42.009088pt;}
.fs7_c00009{font-size:22.352000pt;}
.fs2_c00009{font-size:24.640000pt;}
.fs5_c00009{font-size:29.568000pt;}
.fs6_c00009{font-size:60.016000pt;}
.fs4_c00009{font-size:64.064176pt;}
.fs8_c00009{font-size:68.464176pt;}
.fs1_c00009{font-size:69.696000pt;}
.fs3_c00009{font-size:70.048000pt;}
.fs0_c00009{font-size:79.904176pt;}
.y0_c00009{bottom:0.000000pt;}
.y1_c00009{bottom:68.000000pt;}
.y1c_c00009{bottom:125.374507pt;}
.y1b_c00009{bottom:180.814507pt;}
.y1a_c00009{bottom:211.227307pt;}
.y19_c00009{bottom:240.051707pt;}
.y18_c00009{bottom:270.152107pt;}
.y17_c00009{bottom:298.976507pt;}
.y16_c00009{bottom:328.126507pt;}
.y15_c00009{bottom:356.950907pt;}
.y14_c00009{bottom:373.112107pt;}
.y13_c00009{bottom:385.779707pt;}
.y12_c00009{bottom:414.291707pt;}
.y11_c00009{bottom:443.124907pt;}
.y10_c00009{bottom:472.587307pt;}
.yf_c00009{bottom:490.323707pt;}
.ye_c00009{bottom:530.240507pt;}
.yd_c00009{bottom:558.756907pt;}
.yc_c00009{bottom:587.898107pt;}
.yb_c00009{bottom:616.414507pt;}
.ya_c00009{bottom:636.372907pt;}
.y9_c00009{bottom:645.243307pt;}
.y8_c00009{bottom:674.705707pt;}
.y7_c00009{bottom:704.480507pt;}
.y6_c00009{bottom:732.996907pt;}
.y5_c00009{bottom:791.600507pt;}
.y4_c00009{bottom:809.974907pt;}
.y3_c00009{bottom:820.750507pt;}
.y1d_c00009{bottom:884.427307pt;}
.y2_c00009{bottom:959.504507pt;}
.h9_c00009{height:23.312438pt;}
.h4_c00009{height:25.698750pt;}
.h7_c00009{height:30.838500pt;}
.h8_c00009{height:62.594813pt;}
.h6_c00009{height:66.816934pt;}
.h3_c00009{height:68.402813pt;}
.h5_c00009{height:68.748281pt;}
.ha_c00009{height:71.405996pt;}
.h2_c00009{height:78.421579pt;}
.h1_c00009{height:986.666667pt;}
.h0_c00009{height:1122.666667pt;}
.w1_c00009{width:652.000000pt;}
.w0_c00009{width:793.333333pt;}
.x0_c00009{left:0.000000pt;}
.x6c_c00009{left:55.201987pt;}
.x69_c00009{left:60.226787pt;}
.x5a_c00009{left:61.124387pt;}
.x19_c00009{left:62.061587pt;}
.x3_c00009{left:63.416787pt;}
.x49_c00009{left:65.057987pt;}
.x1_c00009{left:70.666667pt;}
.x61_c00009{left:79.806787pt;}
.x28_c00009{left:80.941987pt;}
.x6d_c00009{left:89.482387pt;}
.x35_c00009{left:90.573587pt;}
.xd_c00009{left:91.911187pt;}
.x65_c00009{left:99.140387pt;}
.x3d_c00009{left:100.860787pt;}
.x14_c00009{left:108.604787pt;}
.x3a_c00009{left:110.083187pt;}
.x29_c00009{left:118.130787pt;}
.x5b_c00009{left:119.419987pt;}
.x4f_c00009{left:120.735587pt;}
.x6a_c00009{left:127.326787pt;}
.x66_c00009{left:129.377187pt;}
.x4a_c00009{left:131.915987pt;}
.xe_c00009{left:138.419187pt;}
.x67_c00009{left:157.721987pt;}
.x4_c00009{left:158.628387pt;}
.x4b_c00009{left:160.696387pt;}
.x24_c00009{left:167.740787pt;}
.x5c_c00009{left:168.959587pt;}
.x50_c00009{left:170.239987pt;}
.x43_c00009{left:178.023587pt;}
.x25_c00009{left:185.939187pt;}
.x5_c00009{left:186.942387pt;}
.x4c_c00009{left:189.146787pt;}
.x51_c00009{left:198.338387pt;}
.x2e_c00009{left:205.959187pt;}
.x54_c00009{left:207.331987pt;}
.x1a_c00009{left:215.071587pt;}
.x15_c00009{left:216.193587pt;}
.x2a_c00009{left:225.283987pt;}
.x3e_c00009{left:226.933987pt;}
.xf_c00009{left:235.100387pt;}
.x6e_c00009{left:236.477587pt;}
.x1b_c00009{left:243.944387pt;}
.x57_c00009{left:244.859587pt;}
.x4d_c00009{left:245.809987pt;}
.x44_c00009{left:256.396387pt;}
.x26_c00009{left:263.902787pt;}
.x2f_c00009{left:265.623187pt;}
.x30_c00009{left:275.263587pt;}
.x10_c00009{left:284.261587pt;}
.x6f_c00009{left:285.401187pt;}
.x3f_c00009{left:295.415587pt;}
.x58_c00009{left:304.862387pt;}
.x31_c00009{left:305.839187pt;}
.x2d_c00009{left:309.429587pt;}
.x6_c00009{left:313.037587pt;}
.x1c_c00009{left:314.419187pt;}
.x55_c00009{left:315.338787pt;}
.x40_c00009{left:323.879187pt;}
.x3b_c00009{left:325.977987pt;}
.x32_c00009{left:333.950787pt;}
.x16_c00009{left:342.596787pt;}
.x42_c00009{left:343.943187pt;}
.x36_c00009{left:353.359187pt;}
.x1d_c00009{left:363.083187pt;}
.x5d_c00009{left:364.442787pt;}
.x45_c00009{left:373.915987pt;}
.x70_c00009{left:384.678387pt;}
.x11_c00009{left:390.939587pt;}
.x37_c00009{left:391.850387pt;}
.x1e_c00009{left:392.945987pt;}
.x17_c00009{left:402.722787pt;}
.x71_c00009{left:403.747987pt;}
.x7_c00009{left:411.914387pt;}
.x46_c00009{left:422.439187pt;}
.x72_c00009{left:423.666787pt;}
.x12_c00009{left:431.793587pt;}
.x6b_c00009{left:432.902387pt;}
.x2b_c00009{left:440.963187pt;}
.x8_c00009{left:442.036787pt;}
.x1f_c00009{left:450.951187pt;}
.x52_c00009{left:452.526387pt;}
.x56_c00009{left:461.405587pt;}
.x20_c00009{left:470.896387pt;}
.x3c_c00009{left:471.793987pt;}
.x38_c00009{left:480.888787pt;}
.x62_c00009{left:481.949187pt;}
.x73_c00009{left:484.439587pt;}
.x13_c00009{left:490.247587pt;}
.x5e_c00009{left:491.184787pt;}
.x53_c00009{left:496.794787pt;}
.x4e_c00009{left:500.200387pt;}
.x39_c00009{left:501.247587pt;}
.x5f_c00009{left:502.620387pt;}
.x21_c00009{left:509.708787pt;}
.x47_c00009{left:510.667987pt;}
.x63_c00009{left:513.255187pt;}
.x9_c00009{left:519.375587pt;}
.x59_c00009{left:520.484387pt;}
.x18_c00009{left:529.499987pt;}
.x68_c00009{left:530.467987pt;}
.x27_c00009{left:539.171187pt;}
.x60_c00009{left:540.816787pt;}
.xa_c00009{left:548.305587pt;}
.x48_c00009{left:550.395587pt;}
.x22_c00009{left:559.613587pt;}
.x33_c00009{left:566.882387pt;}
.x34_c00009{left:569.746787pt;}
.x64_c00009{left:570.692787pt;}
.x2_c00009{left:576.016787pt;}
.x2c_c00009{left:578.938387pt;}
.x41_c00009{left:580.051587pt;}
.x23_c00009{left:588.948387pt;}
.xc_c00009{left:599.935187pt;}
.xb_c00009{left:603.463987pt;}
.x74_c00009{left:607.687987pt;}
.x75_c00009{left:653.157587pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ff966a7223268fd0af15034f.woff2')format("woff");}.ff1_c00010{font-family:ff1_c00010;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00010;src:url('chunks/assets/font_a1f4d9e5317853153d8c91f5.woff2')format("woff");}.ff2_c00010{font-family:ff2_c00010;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00010;src:url('chunks/assets/font_2f09274d55c113fadfa60923.woff2')format("woff");}.ff3_c00010{font-family:ff3_c00010;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00010;src:url('chunks/assets/font_541197aeb70748cd7e792701.woff2')format("woff");}.ff4_c00010{font-family:ff4_c00010;line-height:0.666000;font-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_c00010{transform:matrix(0.096850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096850,0.000000,0.000000,0.250000,0,0);}
.m60_c00010{transform:matrix(0.104829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104829,0.000000,0.000000,0.250000,0,0);}
.m37_c00010{transform:matrix(0.143553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143553,0.000000,0.000000,0.250000,0,0);}
.m16_c00010{transform:matrix(0.182837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182837,0.000000,0.000000,0.250000,0,0);}
.m23_c00010{transform:matrix(0.191931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191931,0.000000,0.000000,0.250000,0,0);}
.m6d_c00010{transform:matrix(0.201175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201175,0.000000,0.000000,0.250000,0,0);}
.m7e_c00010{transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);}
.m86_c00010{transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);}
.m28_c00010{transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);}
.m35_c00010{transform:matrix(0.239577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239577,0.000000,0.000000,0.250000,0,0);}
.mc_c00010{transform:matrix(0.239835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239835,0.000000,0.000000,0.250000,0,0);}
.m1_c00010{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m45_c00010{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.m78_c00010{transform:matrix(0.252202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252202,0.000000,0.000000,0.250000,0,0);}
.m10_c00010{transform:matrix(0.252205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252205,0.000000,0.000000,0.250000,0,0);}
.m89_c00010{transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);}
.m76_c00010{transform:matrix(0.254147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254147,0.000000,0.000000,0.250000,0,0);}
.m42_c00010{transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);}
.m12_c00010{transform:matrix(0.256532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256532,0.000000,0.000000,0.250000,0,0);}
.m9a_c00010{transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);}
.md_c00010{transform:matrix(0.257322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257322,0.000000,0.000000,0.250000,0,0);}
.m3e_c00010{transform:matrix(0.257985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257985,0.000000,0.000000,0.250000,0,0);}
.m4_c00010{transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);}
.m13_c00010{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.m6a_c00010{transform:matrix(0.261861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261861,0.000000,0.000000,0.250000,0,0);}
.m17_c00010{transform:matrix(0.262546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262546,0.000000,0.000000,0.250000,0,0);}
.ma0_c00010{transform:matrix(0.262760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262760,0.000000,0.000000,0.250000,0,0);}
.m39_c00010{transform:matrix(0.262939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262939,0.000000,0.000000,0.250000,0,0);}
.m49_c00010{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m73_c00010{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.mae_c00010{transform:matrix(0.265205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265205,0.000000,0.000000,0.250000,0,0);}
.m56_c00010{transform:matrix(0.265631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265631,0.000000,0.000000,0.250000,0,0);}
.m30_c00010{transform:matrix(0.265816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265816,0.000000,0.000000,0.250000,0,0);}
.m1d_c00010{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m81_c00010{transform:matrix(0.268378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268378,0.000000,0.000000,0.250000,0,0);}
.m54_c00010{transform:matrix(0.269932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269932,0.000000,0.000000,0.250000,0,0);}
.m80_c00010{transform:matrix(0.270553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270553,0.000000,0.000000,0.250000,0,0);}
.ma_c00010{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m4f_c00010{transform:matrix(0.270977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270977,0.000000,0.000000,0.250000,0,0);}
.m9b_c00010{transform:matrix(0.271821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271821,0.000000,0.000000,0.250000,0,0);}
.m2e_c00010{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m41_c00010{transform:matrix(0.272688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272688,0.000000,0.000000,0.250000,0,0);}
.mab_c00010{transform:matrix(0.273682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273682,0.000000,0.000000,0.250000,0,0);}
.me_c00010{transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);}
.ma2_c00010{transform:matrix(0.275533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275533,0.000000,0.000000,0.250000,0,0);}
.m98_c00010{transform:matrix(0.277054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277054,0.000000,0.000000,0.250000,0,0);}
.mb_c00010{transform:matrix(0.277761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277761,0.000000,0.000000,0.250000,0,0);}
.m1a_c00010{transform:matrix(0.278378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278378,0.000000,0.000000,0.250000,0,0);}
.m70_c00010{transform:matrix(0.278498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278498,0.000000,0.000000,0.250000,0,0);}
.m53_c00010{transform:matrix(0.278893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278893,0.000000,0.000000,0.250000,0,0);}
.ma9_c00010{transform:matrix(0.279217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279217,0.000000,0.000000,0.250000,0,0);}
.ma4_c00010{transform:matrix(0.279482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279482,0.000000,0.000000,0.250000,0,0);}
.m40_c00010{transform:matrix(0.279890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279890,0.000000,0.000000,0.250000,0,0);}
.m58_c00010{transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);}
.m9f_c00010{transform:matrix(0.280247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280247,0.000000,0.000000,0.250000,0,0);}
.m8_c00010{transform:matrix(0.280329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280329,0.000000,0.000000,0.250000,0,0);}
.m8d_c00010{transform:matrix(0.280520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280520,0.000000,0.000000,0.250000,0,0);}
.m74_c00010{transform:matrix(0.281715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281715,0.000000,0.000000,0.250000,0,0);}
.m75_c00010{transform:matrix(0.283069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283069,0.000000,0.000000,0.250000,0,0);}
.m32_c00010{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m88_c00010{transform:matrix(0.284290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284290,0.000000,0.000000,0.250000,0,0);}
.mac_c00010{transform:matrix(0.284351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284351,0.000000,0.000000,0.250000,0,0);}
.m26_c00010{transform:matrix(0.284494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284494,0.000000,0.000000,0.250000,0,0);}
.m7a_c00010{transform:matrix(0.284987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284987,0.000000,0.000000,0.250000,0,0);}
.m19_c00010{transform:matrix(0.284991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284991,0.000000,0.000000,0.250000,0,0);}
.m9_c00010{transform:matrix(0.285189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285189,0.000000,0.000000,0.250000,0,0);}
.m2d_c00010{transform:matrix(0.285198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285198,0.000000,0.000000,0.250000,0,0);}
.m1b_c00010{transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);}
.m6_c00010{transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);}
.m85_c00010{transform:matrix(0.286291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286291,0.000000,0.000000,0.250000,0,0);}
.m1f_c00010{transform:matrix(0.286407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286407,0.000000,0.000000,0.250000,0,0);}
.m87_c00010{transform:matrix(0.286472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286472,0.000000,0.000000,0.250000,0,0);}
.m22_c00010{transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);}
.m93_c00010{transform:matrix(0.287188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287188,0.000000,0.000000,0.250000,0,0);}
.ma6_c00010{transform:matrix(0.287350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287350,0.000000,0.000000,0.250000,0,0);}
.ma8_c00010{transform:matrix(0.287878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287878,0.000000,0.000000,0.250000,0,0);}
.m43_c00010{transform:matrix(0.288451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288451,0.000000,0.000000,0.250000,0,0);}
.m91_c00010{transform:matrix(0.288752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288752,0.000000,0.000000,0.250000,0,0);}
.ma7_c00010{transform:matrix(0.288806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288806,0.000000,0.000000,0.250000,0,0);}
.m66_c00010{transform:matrix(0.289122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289122,0.000000,0.000000,0.250000,0,0);}
.m15_c00010{transform:matrix(0.289652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289652,0.000000,0.000000,0.250000,0,0);}
.m31_c00010{transform:matrix(0.289771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289771,0.000000,0.000000,0.250000,0,0);}
.m3a_c00010{transform:matrix(0.289934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289934,0.000000,0.000000,0.250000,0,0);}
.m8a_c00010{transform:matrix(0.290141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290141,0.000000,0.000000,0.250000,0,0);}
.m9e_c00010{transform:matrix(0.290272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290272,0.000000,0.000000,0.250000,0,0);}
.m5b_c00010{transform:matrix(0.290364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290364,0.000000,0.000000,0.250000,0,0);}
.m3_c00010{transform:matrix(0.290445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290445,0.000000,0.000000,0.250000,0,0);}
.m95_c00010{transform:matrix(0.290905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290905,0.000000,0.000000,0.250000,0,0);}
.m90_c00010{transform:matrix(0.291407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291407,0.000000,0.000000,0.250000,0,0);}
.m4b_c00010{transform:matrix(0.292127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292127,0.000000,0.000000,0.250000,0,0);}
.m97_c00010{transform:matrix(0.292701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292701,0.000000,0.000000,0.250000,0,0);}
.m92_c00010{transform:matrix(0.292807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292807,0.000000,0.000000,0.250000,0,0);}
.m34_c00010{transform:matrix(0.292866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292866,0.000000,0.000000,0.250000,0,0);}
.m71_c00010{transform:matrix(0.293350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293350,0.000000,0.000000,0.250000,0,0);}
.m48_c00010{transform:matrix(0.293948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293948,0.000000,0.000000,0.250000,0,0);}
.m4d_c00010{transform:matrix(0.294443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294443,0.000000,0.000000,0.250000,0,0);}
.ma3_c00010{transform:matrix(0.294869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294869,0.000000,0.000000,0.250000,0,0);}
.m5a_c00010{transform:matrix(0.295268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295268,0.000000,0.000000,0.250000,0,0);}
.m8f_c00010{transform:matrix(0.295921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295921,0.000000,0.000000,0.250000,0,0);}
.m52_c00010{transform:matrix(0.296068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296068,0.000000,0.000000,0.250000,0,0);}
.m18_c00010{transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);}
.m5e_c00010{transform:matrix(0.296965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296965,0.000000,0.000000,0.250000,0,0);}
.m7b_c00010{transform:matrix(0.297295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297295,0.000000,0.000000,0.250000,0,0);}
.m62_c00010{transform:matrix(0.297375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297375,0.000000,0.000000,0.250000,0,0);}
.m72_c00010{transform:matrix(0.297395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297395,0.000000,0.000000,0.250000,0,0);}
.m36_c00010{transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);}
.m84_c00010{transform:matrix(0.298311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298311,0.000000,0.000000,0.250000,0,0);}
.maa_c00010{transform:matrix(0.300068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300068,0.000000,0.000000,0.250000,0,0);}
.m0_c00010{transform:matrix(0.300104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300104,0.000000,0.000000,0.250000,0,0);}
.m2a_c00010{transform:matrix(0.300214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300214,0.000000,0.000000,0.250000,0,0);}
.ma5_c00010{transform:matrix(0.301203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301203,0.000000,0.000000,0.250000,0,0);}
.m3f_c00010{transform:matrix(0.301637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301637,0.000000,0.000000,0.250000,0,0);}
.m38_c00010{transform:matrix(0.302297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302297,0.000000,0.000000,0.250000,0,0);}
.m9c_c00010{transform:matrix(0.302461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302461,0.000000,0.000000,0.250000,0,0);}
.m50_c00010{transform:matrix(0.303037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303037,0.000000,0.000000,0.250000,0,0);}
.m94_c00010{transform:matrix(0.303262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303262,0.000000,0.000000,0.250000,0,0);}
.m6e_c00010{transform:matrix(0.304861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304861,0.000000,0.000000,0.250000,0,0);}
.m5d_c00010{transform:matrix(0.304890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304890,0.000000,0.000000,0.250000,0,0);}
.m33_c00010{transform:matrix(0.305132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305132,0.000000,0.000000,0.250000,0,0);}
.m8e_c00010{transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);}
.m7f_c00010{transform:matrix(0.306646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306646,0.000000,0.000000,0.250000,0,0);}
.m6b_c00010{transform:matrix(0.306855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306855,0.000000,0.000000,0.250000,0,0);}
.m83_c00010{transform:matrix(0.307391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307391,0.000000,0.000000,0.250000,0,0);}
.m2b_c00010{transform:matrix(0.308428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308428,0.000000,0.000000,0.250000,0,0);}
.m51_c00010{transform:matrix(0.308464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308464,0.000000,0.000000,0.250000,0,0);}
.m4a_c00010{transform:matrix(0.308583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308583,0.000000,0.000000,0.250000,0,0);}
.m47_c00010{transform:matrix(0.308789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308789,0.000000,0.000000,0.250000,0,0);}
.m3b_c00010{transform:matrix(0.309968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309968,0.000000,0.000000,0.250000,0,0);}
.mad_c00010{transform:matrix(0.311122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311122,0.000000,0.000000,0.250000,0,0);}
.m59_c00010{transform:matrix(0.311969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311969,0.000000,0.000000,0.250000,0,0);}
.m7d_c00010{transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);}
.m55_c00010{transform:matrix(0.312316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312316,0.000000,0.000000,0.250000,0,0);}
.m6c_c00010{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.m8c_c00010{transform:matrix(0.313834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313834,0.000000,0.000000,0.250000,0,0);}
.m96_c00010{transform:matrix(0.314069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314069,0.000000,0.000000,0.250000,0,0);}
.m68_c00010{transform:matrix(0.314984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314984,0.000000,0.000000,0.250000,0,0);}
.m5f_c00010{transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);}
.m2f_c00010{transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);}
.m82_c00010{transform:matrix(0.316524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316524,0.000000,0.000000,0.250000,0,0);}
.m64_c00010{transform:matrix(0.317100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317100,0.000000,0.000000,0.250000,0,0);}
.m67_c00010{transform:matrix(0.317620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317620,0.000000,0.000000,0.250000,0,0);}
.m20_c00010{transform:matrix(0.318577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318577,0.000000,0.000000,0.250000,0,0);}
.m2_c00010{transform:matrix(0.319181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319181,0.000000,0.000000,0.250000,0,0);}
.m29_c00010{transform:matrix(0.319482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319482,0.000000,0.000000,0.250000,0,0);}
.m3d_c00010{transform:matrix(0.319694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319694,0.000000,0.000000,0.250000,0,0);}
.m69_c00010{transform:matrix(0.319794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319794,0.000000,0.000000,0.250000,0,0);}
.m79_c00010{transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);}
.m27_c00010{transform:matrix(0.320257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320257,0.000000,0.000000,0.250000,0,0);}
.m1e_c00010{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.m7_c00010{transform:matrix(0.324910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324910,0.000000,0.000000,0.250000,0,0);}
.m21_c00010{transform:matrix(0.325701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325701,0.000000,0.000000,0.250000,0,0);}
.m25_c00010{transform:matrix(0.325737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325737,0.000000,0.000000,0.250000,0,0);}
.m3c_c00010{transform:matrix(0.326928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326928,0.000000,0.000000,0.250000,0,0);}
.m11_c00010{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m4c_c00010{transform:matrix(0.327406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327406,0.000000,0.000000,0.250000,0,0);}
.m65_c00010{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.maf_c00010{transform:matrix(0.327730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327730,0.000000,0.000000,0.250000,0,0);}
.mb0_c00010{transform:matrix(0.328023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328023,0.000000,0.000000,0.250000,0,0);}
.m44_c00010{transform:matrix(0.328655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328655,0.000000,0.000000,0.250000,0,0);}
.m5c_c00010{transform:matrix(0.329367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329367,0.000000,0.000000,0.250000,0,0);}
.m1c_c00010{transform:matrix(0.329940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329940,0.000000,0.000000,0.250000,0,0);}
.m2c_c00010{transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);}
.m61_c00010{transform:matrix(0.331590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331590,0.000000,0.000000,0.250000,0,0);}
.m7c_c00010{transform:matrix(0.332358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332358,0.000000,0.000000,0.250000,0,0);}
.m8b_c00010{transform:matrix(0.332849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332849,0.000000,0.000000,0.250000,0,0);}
.m57_c00010{transform:matrix(0.333482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333482,0.000000,0.000000,0.250000,0,0);}
.ma1_c00010{transform:matrix(0.336028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336028,0.000000,0.000000,0.250000,0,0);}
.m4e_c00010{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m99_c00010{transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);}
.m46_c00010{transform:matrix(0.347100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347100,0.000000,0.000000,0.250000,0,0);}
.m5_c00010{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m9d_c00010{transform:matrix(0.349577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349577,0.000000,0.000000,0.250000,0,0);}
.mf_c00010{transform:matrix(0.353694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353694,0.000000,0.000000,0.250000,0,0);}
.m14_c00010{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m63_c00010{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m77_c00010{transform:matrix(0.367649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367649,0.000000,0.000000,0.250000,0,0);}
.m6f_c00010{transform:matrix(0.407787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407787,0.000000,0.000000,0.250000,0,0);}
.v0_c00010{vertical-align:0.000000px;}
.ls4_c00010{letter-spacing:-2.744280px;}
.ls9_c00010{letter-spacing:-2.336558px;}
.ls8_c00010{letter-spacing:-2.044350px;}
.lsf_c00010{letter-spacing:-1.724976px;}
.ls5_c00010{letter-spacing:-1.607364px;}
.ls11_c00010{letter-spacing:-1.427026px;}
.ls2_c00010{letter-spacing:0.000000px;}
.ls13_c00010{letter-spacing:0.533174px;}
.lsb_c00010{letter-spacing:0.642946px;}
.ls10_c00010{letter-spacing:1.599523px;}
.lsc_c00010{letter-spacing:1.871100px;}
.ls7_c00010{letter-spacing:2.509056px;}
.lsd_c00010{letter-spacing:2.987345px;}
.ls6_c00010{letter-spacing:3.191206px;}
.lsa_c00010{letter-spacing:3.246091px;}
.ls0_c00010{letter-spacing:3.755743px;}
.ls3_c00010{letter-spacing:3.920400px;}
.ls1_c00010{letter-spacing:3.940200px;}
.ls12_c00010{letter-spacing:3.969900px;}
.lse_c00010{letter-spacing:49.896198px;}
.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:-19.602000px;}
.ws1_c00010{word-spacing:0.000000px;}
._1_c00010{width:6.272640px;}
._0_c00010{width:7.762392px;}
._2_c00010{width:16.983965px;}
.fc0_c00010{color:transparent;}
.fs5_c00010{font-size:22.176000px;}
.fs2_c00010{font-size:27.720000px;}
.fs7_c00010{font-size:33.660000px;}
.fs8_c00010{font-size:37.422000px;}
.fsa_c00010{font-size:49.896198px;}
.fs1_c00010{font-size:56.628000px;}
.fs6_c00010{font-size:58.410000px;}
.fs4_c00010{font-size:66.330000px;}
.fsc_c00010{font-size:72.864000px;}
.fsb_c00010{font-size:74.844000px;}
.fs3_c00010{font-size:78.408000px;}
.fs0_c00010{font-size:78.804000px;}
.fs9_c00010{font-size:79.398000px;}
.y0_c00010{bottom:0.000000px;}
.y1_c00010{bottom:76.500000px;}
.y1f_c00010{bottom:140.689920px;}
.y1e_c00010{bottom:204.129120px;}
.y1d_c00010{bottom:236.917920px;}
.y1c_c00010{bottom:269.345370px;}
.y1b_c00010{bottom:302.134170px;}
.y1a_c00010{bottom:334.571520px;}
.y19_c00010{bottom:367.355370px;}
.y18_c00010{bottom:400.144170px;}
.y17_c00010{bottom:432.225120px;}
.y16_c00010{bottom:443.981370px;}
.y15_c00010{bottom:450.401520px;}
.y14_c00010{bottom:465.726720px;}
.y13_c00010{bottom:498.154170px;}
.y12_c00010{bottom:530.591520px;}
.y11_c00010{bottom:554.821770px;}
.y10_c00010{bottom:563.023920px;}
.yf_c00010{bottom:628.245120px;}
.ye_c00010{bottom:647.134320px;}
.yd_c00010{bottom:660.677520px;}
.yc_c00010{bottom:693.104970px;}
.yb_c00010{bottom:725.537370px;}
.ya_c00010{bottom:757.969770px;}
.y9_c00010{bottom:790.402170px;}
.y8_c00010{bottom:823.547370px;}
.y7_c00010{bottom:856.336170px;}
.y6_c00010{bottom:888.768570px;}
.y5_c00010{bottom:921.918720px;}
.y4_c00010{bottom:988.204170px;}
.y3_c00010{bottom:1014.577770px;}
.y2_c00010{bottom:1084.075770px;}
.h7_c00010{height:23.128875px;}
.h4_c00010{height:28.911094px;}
.h9_c00010{height:33.035449px;}
.hc_c00010{height:33.230868px;}
.ha_c00010{height:39.029977px;}
.h3_c00010{height:59.061234px;}
.h8_c00010{height:60.919805px;}
.h6_c00010{height:69.180117px;}
.hd_c00010{height:71.512031px;}
.h5_c00010{height:76.953164px;}
.h2_c00010{height:77.341816px;}
.hb_c00010{height:77.924795px;}
.h1_c00010{height:1110.000000px;}
.h0_c00010{height:1263.000000px;}
.w1_c00010{width:733.500000px;}
.w0_c00010{width:892.500000px;}
.x0_c00010{left:0.000000px;}
.x42_c00010{left:64.898985px;}
.x37_c00010{left:66.819585px;}
.x21_c00010{left:68.042235px;}
.x5_c00010{left:69.675735px;}
.x1_c00010{left:79.500000px;}
.x3d_c00010{left:87.624435px;}
.x62_c00010{left:89.644035px;}
.x6_c00010{left:91.713135px;}
.x4a_c00010{left:98.479785px;}
.x6c_c00010{left:100.296435px;}
.x43_c00010{left:108.755985px;}
.x38_c00010{left:109.934085px;}
.x22_c00010{left:111.666585px;}
.x4b_c00010{left:118.938135px;}
.x63_c00010{left:120.665685px;}
.x51_c00010{left:130.555785px;}
.x6d_c00010{left:132.020985px;}
.xf_c00010{left:134.085135px;}
.x5d_c00010{left:140.926035px;}
.x6f_c00010{left:142.262535px;}
.x4c_c00010{left:150.796335px;}
.x39_c00010{left:152.221935px;}
.x1b_c00010{left:153.929685px;}
.x7_c00010{left:157.978785px;}
.x5b_c00010{left:162.196185px;}
.x30_c00010{left:163.908885px;}
.x52_c00010{left:173.328735px;}
.x5e_c00010{left:185.119635px;}
.x10_c00010{left:188.668785px;}
.x31_c00010{left:196.059135px;}
.x5c_c00010{left:201.959535px;}
.x67_c00010{left:205.295835px;}
.x53_c00010{left:206.879835px;}
.x11_c00010{left:219.195435px;}
.x8_c00010{left:220.427985px;}
.x3a_c00010{left:228.060885px;}
.x4d_c00010{left:239.619135px;}
.x54_c00010{left:250.657635px;}
.x23_c00010{left:251.751585px;}
.x3_c00010{left:256.627335px;}
.x32_c00010{left:259.468635px;}
.x9_c00010{left:264.220635px;}
.x57_c00010{left:272.259435px;}
.x1c_c00010{left:273.952335px;}
.x24_c00010{left:284.570085px;}
.x12_c00010{left:285.639285px;}
.x33_c00010{left:294.707685px;}
.xa_c00010{left:296.504535px;}
.x1d_c00010{left:306.602535px;}
.x58_c00010{left:307.676685px;}
.x25_c00010{left:317.537085px;}
.x5f_c00010{left:318.705285px;}
.x26_c00010{left:327.412335px;}
.x70_c00010{left:329.367585px;}
.x13_c00010{left:330.471435px;}
.x27_c00010{left:335.228385px;}
.x64_c00010{left:339.812085px;}
.x28_c00010{left:341.163435px;}
.x55_c00010{left:350.840685px;}
.x44_c00010{left:351.845535px;}
.x14_c00010{left:360.998085px;}
.x3e_c00010{left:362.547435px;}
.x3b_c00010{left:372.061335px;}
.xb_c00010{left:373.952235px;}
.x45_c00010{left:383.441385px;}
.x50_c00010{left:389.396235px;}
.x2b_c00010{left:394.697685px;}
.x65_c00010{left:404.765985px;}
.x1e_c00010{left:406.102485px;}
.x2c_c00010{left:429.204135px;}
.x1f_c00010{left:439.589235px;}
.x15_c00010{left:440.653485px;}
.x60_c00010{left:450.617835px;}
.x46_c00010{left:461.859285px;}
.x16_c00010{left:472.353285px;}
.x3c_c00010{left:474.778785px;}
.xc_c00010{left:482.540385px;}
.x49_c00010{left:484.990635px;}
.x69_c00010{left:493.232385px;}
.x61_c00010{left:495.771735px;}
.x17_c00010{left:504.637185px;}
.xd_c00010{left:516.923085px;}
.x29_c00010{left:527.090385px;}
.x3f_c00010{left:528.263535px;}
.x6b_c00010{left:537.460635px;}
.x4e_c00010{left:539.346585px;}
.x2d_c00010{left:549.741585px;}
.x18_c00010{left:560.542485px;}
.x71_c00010{left:561.824535px;}
.x2e_c00010{left:571.283985px;}
.x20_c00010{left:572.471985px;}
.x19_c00010{left:581.609685px;}
.xe_c00010{left:583.564935px;}
.x59_c00010{left:592.702635px;}
.x40_c00010{left:594.603435px;}
.x47_c00010{left:605.330085px;}
.x68_c00010{left:614.353935px;}
.x4_c00010{left:615.408285px;}
.x56_c00010{left:617.026935px;}
.x48_c00010{left:625.847835px;}
.x6e_c00010{left:627.075435px;}
.x2a_c00010{left:636.856635px;}
.x2f_c00010{left:638.361435px;}
.x2_c00010{left:647.306085px;}
.x4f_c00010{left:648.776235px;}
.x34_c00010{left:649.805835px;}
.x6a_c00010{left:658.903935px;}
.x5a_c00010{left:660.037485px;}
.x66_c00010{left:670.006785px;}
.x1a_c00010{left:671.140335px;}
.x41_c00010{left:672.189735px;}
.x35_c00010{left:682.451085px;}
.x36_c00010{left:705.092385px;}
@media print{
.v0_c00010{vertical-align:0.000000pt;}
.ls4_c00010{letter-spacing:-2.439360pt;}
.ls9_c00010{letter-spacing:-2.076941pt;}
.ls8_c00010{letter-spacing:-1.817200pt;}
.lsf_c00010{letter-spacing:-1.533312pt;}
.ls5_c00010{letter-spacing:-1.428768pt;}
.ls11_c00010{letter-spacing:-1.268467pt;}
.ls2_c00010{letter-spacing:0.000000pt;}
.ls13_c00010{letter-spacing:0.473933pt;}
.lsb_c00010{letter-spacing:0.571507pt;}
.ls10_c00010{letter-spacing:1.421798pt;}
.lsc_c00010{letter-spacing:1.663200pt;}
.ls7_c00010{letter-spacing:2.230272pt;}
.lsd_c00010{letter-spacing:2.655418pt;}
.ls6_c00010{letter-spacing:2.836627pt;}
.lsa_c00010{letter-spacing:2.885414pt;}
.ls0_c00010{letter-spacing:3.338438pt;}
.ls3_c00010{letter-spacing:3.484800pt;}
.ls1_c00010{letter-spacing:3.502400pt;}
.ls12_c00010{letter-spacing:3.528800pt;}
.lse_c00010{letter-spacing:44.352176pt;}
.ws0_c00010{word-spacing:-17.424000pt;}
.ws1_c00010{word-spacing:0.000000pt;}
._1_c00010{width:5.575680pt;}
._0_c00010{width:6.899904pt;}
._2_c00010{width:15.096858pt;}
.fs5_c00010{font-size:19.712000pt;}
.fs2_c00010{font-size:24.640000pt;}
.fs7_c00010{font-size:29.920000pt;}
.fs8_c00010{font-size:33.264000pt;}
.fsa_c00010{font-size:44.352176pt;}
.fs1_c00010{font-size:50.336000pt;}
.fs6_c00010{font-size:51.920000pt;}
.fs4_c00010{font-size:58.960000pt;}
.fsc_c00010{font-size:64.768000pt;}
.fsb_c00010{font-size:66.528000pt;}
.fs3_c00010{font-size:69.696000pt;}
.fs0_c00010{font-size:70.048000pt;}
.fs9_c00010{font-size:70.576000pt;}
.y0_c00010{bottom:0.000000pt;}
.y1_c00010{bottom:68.000000pt;}
.y1f_c00010{bottom:125.057707pt;}
.y1e_c00010{bottom:181.448107pt;}
.y1d_c00010{bottom:210.593707pt;}
.y1c_c00010{bottom:239.418107pt;}
.y1b_c00010{bottom:268.563707pt;}
.y1a_c00010{bottom:297.396907pt;}
.y19_c00010{bottom:326.538107pt;}
.y18_c00010{bottom:355.683707pt;}
.y17_c00010{bottom:384.200107pt;}
.y16_c00010{bottom:394.650107pt;}
.y15_c00010{bottom:400.356907pt;}
.y14_c00010{bottom:413.979307pt;}
.y13_c00010{bottom:442.803707pt;}
.y12_c00010{bottom:471.636907pt;}
.y11_c00010{bottom:493.174907pt;}
.y10_c00010{bottom:500.465707pt;}
.yf_c00010{bottom:558.440107pt;}
.ye_c00010{bottom:575.230507pt;}
.yd_c00010{bottom:587.268907pt;}
.yc_c00010{bottom:616.093307pt;}
.yb_c00010{bottom:644.922107pt;}
.ya_c00010{bottom:673.750907pt;}
.y9_c00010{bottom:702.579707pt;}
.y8_c00010{bottom:732.042107pt;}
.y7_c00010{bottom:761.187707pt;}
.y6_c00010{bottom:790.016507pt;}
.y5_c00010{bottom:819.483307pt;}
.y4_c00010{bottom:878.403707pt;}
.y3_c00010{bottom:901.846907pt;}
.y2_c00010{bottom:963.622907pt;}
.h7_c00010{height:20.559000pt;}
.h4_c00010{height:25.698750pt;}
.h9_c00010{height:29.364844pt;}
.hc_c00010{height:29.538549pt;}
.ha_c00010{height:34.693313pt;}
.h3_c00010{height:52.498875pt;}
.h8_c00010{height:54.150938pt;}
.h6_c00010{height:61.493438pt;}
.hd_c00010{height:63.566250pt;}
.h5_c00010{height:68.402813pt;}
.h2_c00010{height:68.748281pt;}
.hb_c00010{height:69.266484pt;}
.h1_c00010{height:986.666667pt;}
.h0_c00010{height:1122.666667pt;}
.w1_c00010{width:652.000000pt;}
.w0_c00010{width:793.333333pt;}
.x0_c00010{left:0.000000pt;}
.x42_c00010{left:57.687987pt;}
.x37_c00010{left:59.395187pt;}
.x21_c00010{left:60.481987pt;}
.x5_c00010{left:61.933987pt;}
.x1_c00010{left:70.666667pt;}
.x3d_c00010{left:77.888387pt;}
.x62_c00010{left:79.683587pt;}
.x6_c00010{left:81.522787pt;}
.x4a_c00010{left:87.537587pt;}
.x6c_c00010{left:89.152387pt;}
.x43_c00010{left:96.671987pt;}
.x38_c00010{left:97.719187pt;}
.x22_c00010{left:99.259187pt;}
.x4b_c00010{left:105.722787pt;}
.x63_c00010{left:107.258387pt;}
.x51_c00010{left:116.049587pt;}
.x6d_c00010{left:117.351987pt;}
.xf_c00010{left:119.186787pt;}
.x5d_c00010{left:125.267587pt;}
.x6f_c00010{left:126.455587pt;}
.x4c_c00010{left:134.041187pt;}
.x39_c00010{left:135.308387pt;}
.x1b_c00010{left:136.826387pt;}
.x7_c00010{left:140.425587pt;}
.x5b_c00010{left:144.174387pt;}
.x30_c00010{left:145.696787pt;}
.x52_c00010{left:154.069987pt;}
.x5e_c00010{left:164.550787pt;}
.x10_c00010{left:167.705587pt;}
.x31_c00010{left:174.274787pt;}
.x5c_c00010{left:179.519587pt;}
.x67_c00010{left:182.485187pt;}
.x53_c00010{left:183.893187pt;}
.x11_c00010{left:194.840387pt;}
.x8_c00010{left:195.935987pt;}
.x3a_c00010{left:202.720787pt;}
.x4d_c00010{left:212.994787pt;}
.x54_c00010{left:222.806787pt;}
.x23_c00010{left:223.779187pt;}
.x3_c00010{left:228.113187pt;}
.x32_c00010{left:230.638787pt;}
.x9_c00010{left:234.862787pt;}
.x57_c00010{left:242.008387pt;}
.x1c_c00010{left:243.513187pt;}
.x24_c00010{left:252.951187pt;}
.x12_c00010{left:253.901587pt;}
.x33_c00010{left:261.962387pt;}
.xa_c00010{left:263.559587pt;}
.x1d_c00010{left:272.535587pt;}
.x58_c00010{left:273.490387pt;}
.x25_c00010{left:282.255187pt;}
.x5f_c00010{left:283.293587pt;}
.x26_c00010{left:291.033187pt;}
.x70_c00010{left:292.771187pt;}
.x13_c00010{left:293.752387pt;}
.x27_c00010{left:297.980787pt;}
.x64_c00010{left:302.055187pt;}
.x28_c00010{left:303.256387pt;}
.x55_c00010{left:311.858387pt;}
.x44_c00010{left:312.751587pt;}
.x14_c00010{left:320.887187pt;}
.x3e_c00010{left:322.264387pt;}
.x3b_c00010{left:330.721187pt;}
.xb_c00010{left:332.401987pt;}
.x45_c00010{left:340.836787pt;}
.x50_c00010{left:346.129987pt;}
.x2b_c00010{left:350.842387pt;}
.x65_c00010{left:359.791987pt;}
.x1e_c00010{left:360.979987pt;}
.x2c_c00010{left:381.514787pt;}
.x1f_c00010{left:390.745987pt;}
.x15_c00010{left:391.691987pt;}
.x60_c00010{left:400.549187pt;}
.x46_c00010{left:410.541587pt;}
.x16_c00010{left:419.869587pt;}
.x3c_c00010{left:422.025587pt;}
.xc_c00010{left:428.924787pt;}
.x49_c00010{left:431.102787pt;}
.x69_c00010{left:438.428787pt;}
.x61_c00010{left:440.685987pt;}
.x17_c00010{left:448.566387pt;}
.xd_c00010{left:459.487187pt;}
.x29_c00010{left:468.524787pt;}
.x3f_c00010{left:469.567587pt;}
.x6b_c00010{left:477.742787pt;}
.x4e_c00010{left:479.419187pt;}
.x2d_c00010{left:488.659187pt;}
.x18_c00010{left:498.259987pt;}
.x71_c00010{left:499.399587pt;}
.x2e_c00010{left:507.807987pt;}
.x20_c00010{left:508.863987pt;}
.x19_c00010{left:516.986387pt;}
.xe_c00010{left:518.724387pt;}
.x59_c00010{left:526.846787pt;}
.x40_c00010{left:528.536387pt;}
.x47_c00010{left:538.071187pt;}
.x68_c00010{left:546.092387pt;}
.x4_c00010{left:547.029587pt;}
.x56_c00010{left:548.468387pt;}
.x48_c00010{left:556.309187pt;}
.x6e_c00010{left:557.400387pt;}
.x2a_c00010{left:566.094787pt;}
.x2f_c00010{left:567.432387pt;}
.x2_c00010{left:575.383187pt;}
.x4f_c00010{left:576.689987pt;}
.x34_c00010{left:577.605187pt;}
.x6a_c00010{left:585.692387pt;}
.x5a_c00010{left:586.699987pt;}
.x66_c00010{left:595.561587pt;}
.x1a_c00010{left:596.569187pt;}
.x41_c00010{left:597.501987pt;}
.x35_c00010{left:606.623187pt;}
.x36_c00010{left:626.748787pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a1f4d9e5317853153d8c91f5.woff2')format("woff");}.ff1_c00011{font-family:ff1_c00011;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00011;src:url('chunks/assets/font_b6d4ba14e5afc1fb42260561.woff2')format("woff");}.ff2_c00011{font-family:ff2_c00011;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00011;src:url('chunks/assets/font_15c300d8f2f3e4b2c9b5f332.woff2')format("woff");}.ff3_c00011{font-family:ff3_c00011;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00011{transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);}
.m8f_c00011{transform:matrix(0.205237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205237,0.000000,0.000000,0.250000,0,0);}
.m11_c00011{transform:matrix(0.224706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224706,0.000000,0.000000,0.250000,0,0);}
.m70_c00011{transform:matrix(0.242684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242684,0.000000,0.000000,0.250000,0,0);}
.m5d_c00011{transform:matrix(0.248170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248170,0.000000,0.000000,0.250000,0,0);}
.m77_c00011{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m0_c00011{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3_c00011{transform:matrix(0.250311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250311,0.000000,0.000000,0.250000,0,0);}
.m3b_c00011{transform:matrix(0.250825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250825,0.000000,0.000000,0.250000,0,0);}
.m14_c00011{transform:matrix(0.251385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251385,0.000000,0.000000,0.250000,0,0);}
.m6d_c00011{transform:matrix(0.251757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251757,0.000000,0.000000,0.250000,0,0);}
.m10_c00011{transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);}
.m43_c00011{transform:matrix(0.253222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253222,0.000000,0.000000,0.250000,0,0);}
.m4f_c00011{transform:matrix(0.253959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253959,0.000000,0.000000,0.250000,0,0);}
.m36_c00011{transform:matrix(0.254174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254174,0.000000,0.000000,0.250000,0,0);}
.m52_c00011{transform:matrix(0.255266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255266,0.000000,0.000000,0.250000,0,0);}
.m4_c00011{transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);}
.ma1_c00011{transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);}
.m81_c00011{transform:matrix(0.256581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256581,0.000000,0.000000,0.250000,0,0);}
.m1_c00011{transform:matrix(0.257256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257256,0.000000,0.000000,0.250000,0,0);}
.m18_c00011{transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);}
.m96_c00011{transform:matrix(0.258186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258186,0.000000,0.000000,0.250000,0,0);}
.m16_c00011{transform:matrix(0.259501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259501,0.000000,0.000000,0.250000,0,0);}
.m65_c00011{transform:matrix(0.259823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259823,0.000000,0.000000,0.250000,0,0);}
.m9e_c00011{transform:matrix(0.259985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259985,0.000000,0.000000,0.250000,0,0);}
.m57_c00011{transform:matrix(0.260078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260078,0.000000,0.000000,0.250000,0,0);}
.m22_c00011{transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);}
.m7f_c00011{transform:matrix(0.261032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261032,0.000000,0.000000,0.250000,0,0);}
.m40_c00011{transform:matrix(0.261958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261958,0.000000,0.000000,0.250000,0,0);}
.m71_c00011{transform:matrix(0.262319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262319,0.000000,0.000000,0.250000,0,0);}
.m55_c00011{transform:matrix(0.264478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264478,0.000000,0.000000,0.250000,0,0);}
.m94_c00011{transform:matrix(0.264852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264852,0.000000,0.000000,0.250000,0,0);}
.m1b_c00011{transform:matrix(0.265158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265158,0.000000,0.000000,0.250000,0,0);}
.m1d_c00011{transform:matrix(0.265170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265170,0.000000,0.000000,0.250000,0,0);}
.mb_c00011{transform:matrix(0.265449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265449,0.000000,0.000000,0.250000,0,0);}
.m51_c00011{transform:matrix(0.266616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266616,0.000000,0.000000,0.250000,0,0);}
.m41_c00011{transform:matrix(0.266679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266679,0.000000,0.000000,0.250000,0,0);}
.m3e_c00011{transform:matrix(0.267929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267929,0.000000,0.000000,0.250000,0,0);}
.m32_c00011{transform:matrix(0.269378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269378,0.000000,0.000000,0.250000,0,0);}
.m9b_c00011{transform:matrix(0.269436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269436,0.000000,0.000000,0.250000,0,0);}
.m35_c00011{transform:matrix(0.270171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270171,0.000000,0.000000,0.250000,0,0);}
.m95_c00011{transform:matrix(0.271352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271352,0.000000,0.000000,0.250000,0,0);}
.m4d_c00011{transform:matrix(0.271491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271491,0.000000,0.000000,0.250000,0,0);}
.m46_c00011{transform:matrix(0.271747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271747,0.000000,0.000000,0.250000,0,0);}
.m83_c00011{transform:matrix(0.271812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271812,0.000000,0.000000,0.250000,0,0);}
.m47_c00011{transform:matrix(0.272663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272663,0.000000,0.000000,0.250000,0,0);}
.m4b_c00011{transform:matrix(0.273059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273059,0.000000,0.000000,0.250000,0,0);}
.m68_c00011{transform:matrix(0.273065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273065,0.000000,0.000000,0.250000,0,0);}
.m49_c00011{transform:matrix(0.273184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273184,0.000000,0.000000,0.250000,0,0);}
.m29_c00011{transform:matrix(0.273533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273533,0.000000,0.000000,0.250000,0,0);}
.ma0_c00011{transform:matrix(0.274920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274920,0.000000,0.000000,0.250000,0,0);}
.m60_c00011{transform:matrix(0.275121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275121,0.000000,0.000000,0.250000,0,0);}
.m97_c00011{transform:matrix(0.276022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276022,0.000000,0.000000,0.250000,0,0);}
.m5f_c00011{transform:matrix(0.276033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276033,0.000000,0.000000,0.250000,0,0);}
.m8_c00011{transform:matrix(0.276355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276355,0.000000,0.000000,0.250000,0,0);}
.m25_c00011{transform:matrix(0.276952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276952,0.000000,0.000000,0.250000,0,0);}
.m2a_c00011{transform:matrix(0.277081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277081,0.000000,0.000000,0.250000,0,0);}
.m5b_c00011{transform:matrix(0.278545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278545,0.000000,0.000000,0.250000,0,0);}
.m99_c00011{transform:matrix(0.278602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278602,0.000000,0.000000,0.250000,0,0);}
.m24_c00011{transform:matrix(0.278992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278992,0.000000,0.000000,0.250000,0,0);}
.m4c_c00011{transform:matrix(0.279087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279087,0.000000,0.000000,0.250000,0,0);}
.m31_c00011{transform:matrix(0.279567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279567,0.000000,0.000000,0.250000,0,0);}
.m56_c00011{transform:matrix(0.279618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279618,0.000000,0.000000,0.250000,0,0);}
.m15_c00011{transform:matrix(0.280199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280199,0.000000,0.000000,0.250000,0,0);}
.m6a_c00011{transform:matrix(0.280926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280926,0.000000,0.000000,0.250000,0,0);}
.m4a_c00011{transform:matrix(0.281760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281760,0.000000,0.000000,0.250000,0,0);}
.m4e_c00011{transform:matrix(0.281806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281806,0.000000,0.000000,0.250000,0,0);}
.m8e_c00011{transform:matrix(0.282098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282098,0.000000,0.000000,0.250000,0,0);}
.m2f_c00011{transform:matrix(0.282693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282693,0.000000,0.000000,0.250000,0,0);}
.m2c_c00011{transform:matrix(0.282797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282797,0.000000,0.000000,0.250000,0,0);}
.m30_c00011{transform:matrix(0.283007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283007,0.000000,0.000000,0.250000,0,0);}
.m2b_c00011{transform:matrix(0.283154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283154,0.000000,0.000000,0.250000,0,0);}
.m3a_c00011{transform:matrix(0.283248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283248,0.000000,0.000000,0.250000,0,0);}
.m17_c00011{transform:matrix(0.283747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283747,0.000000,0.000000,0.250000,0,0);}
.m9_c00011{transform:matrix(0.285286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285286,0.000000,0.000000,0.250000,0,0);}
.mc_c00011{transform:matrix(0.285415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285415,0.000000,0.000000,0.250000,0,0);}
.m8d_c00011{transform:matrix(0.285492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285492,0.000000,0.000000,0.250000,0,0);}
.m3c_c00011{transform:matrix(0.285567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285567,0.000000,0.000000,0.250000,0,0);}
.m33_c00011{transform:matrix(0.286125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286125,0.000000,0.000000,0.250000,0,0);}
.m62_c00011{transform:matrix(0.286470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286470,0.000000,0.000000,0.250000,0,0);}
.mf_c00011{transform:matrix(0.287198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287198,0.000000,0.000000,0.250000,0,0);}
.m90_c00011{transform:matrix(0.287275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287275,0.000000,0.000000,0.250000,0,0);}
.m86_c00011{transform:matrix(0.287484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287484,0.000000,0.000000,0.250000,0,0);}
.m1a_c00011{transform:matrix(0.287599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287599,0.000000,0.000000,0.250000,0,0);}
.m91_c00011{transform:matrix(0.287635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287635,0.000000,0.000000,0.250000,0,0);}
.m78_c00011{transform:matrix(0.287887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287887,0.000000,0.000000,0.250000,0,0);}
.m74_c00011{transform:matrix(0.288420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288420,0.000000,0.000000,0.250000,0,0);}
.m93_c00011{transform:matrix(0.289664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289664,0.000000,0.000000,0.250000,0,0);}
.m76_c00011{transform:matrix(0.289767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289767,0.000000,0.000000,0.250000,0,0);}
.m6e_c00011{transform:matrix(0.289929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289929,0.000000,0.000000,0.250000,0,0);}
.m37_c00011{transform:matrix(0.290305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290305,0.000000,0.000000,0.250000,0,0);}
.m58_c00011{transform:matrix(0.290326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290326,0.000000,0.000000,0.250000,0,0);}
.m44_c00011{transform:matrix(0.291422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291422,0.000000,0.000000,0.250000,0,0);}
.m42_c00011{transform:matrix(0.291989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291989,0.000000,0.000000,0.250000,0,0);}
.m12_c00011{transform:matrix(0.292312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292312,0.000000,0.000000,0.250000,0,0);}
.m88_c00011{transform:matrix(0.292547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292547,0.000000,0.000000,0.250000,0,0);}
.m9c_c00011{transform:matrix(0.293906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293906,0.000000,0.000000,0.250000,0,0);}
.m6_c00011{transform:matrix(0.293910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293910,0.000000,0.000000,0.250000,0,0);}
.m92_c00011{transform:matrix(0.294008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294008,0.000000,0.000000,0.250000,0,0);}
.m72_c00011{transform:matrix(0.294917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294917,0.000000,0.000000,0.250000,0,0);}
.me_c00011{transform:matrix(0.295479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295479,0.000000,0.000000,0.250000,0,0);}
.m85_c00011{transform:matrix(0.296198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296198,0.000000,0.000000,0.250000,0,0);}
.m45_c00011{transform:matrix(0.296288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296288,0.000000,0.000000,0.250000,0,0);}
.m3d_c00011{transform:matrix(0.297692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297692,0.000000,0.000000,0.250000,0,0);}
.m7c_c00011{transform:matrix(0.298713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298713,0.000000,0.000000,0.250000,0,0);}
.m48_c00011{transform:matrix(0.298927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298927,0.000000,0.000000,0.250000,0,0);}
.m38_c00011{transform:matrix(0.299722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299722,0.000000,0.000000,0.250000,0,0);}
.m9d_c00011{transform:matrix(0.299926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299926,0.000000,0.000000,0.250000,0,0);}
.m7_c00011{transform:matrix(0.301124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301124,0.000000,0.000000,0.250000,0,0);}
.m7b_c00011{transform:matrix(0.301397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301397,0.000000,0.000000,0.250000,0,0);}
.m2e_c00011{transform:matrix(0.301634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301634,0.000000,0.000000,0.250000,0,0);}
.m34_c00011{transform:matrix(0.302447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302447,0.000000,0.000000,0.250000,0,0);}
.m63_c00011{transform:matrix(0.302482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302482,0.000000,0.000000,0.250000,0,0);}
.m6b_c00011{transform:matrix(0.303067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303067,0.000000,0.000000,0.250000,0,0);}
.m1c_c00011{transform:matrix(0.303648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303648,0.000000,0.000000,0.250000,0,0);}
.m75_c00011{transform:matrix(0.303858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303858,0.000000,0.000000,0.250000,0,0);}
.m7d_c00011{transform:matrix(0.304838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304838,0.000000,0.000000,0.250000,0,0);}
.m21_c00011{transform:matrix(0.304990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304990,0.000000,0.000000,0.250000,0,0);}
.m3f_c00011{transform:matrix(0.305645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305645,0.000000,0.000000,0.250000,0,0);}
.m8a_c00011{transform:matrix(0.306345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306345,0.000000,0.000000,0.250000,0,0);}
.m8b_c00011{transform:matrix(0.307280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307280,0.000000,0.000000,0.250000,0,0);}
.m39_c00011{transform:matrix(0.307715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307715,0.000000,0.000000,0.250000,0,0);}
.m69_c00011{transform:matrix(0.308198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308198,0.000000,0.000000,0.250000,0,0);}
.m27_c00011{transform:matrix(0.308889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308889,0.000000,0.000000,0.250000,0,0);}
.m20_c00011{transform:matrix(0.309902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309902,0.000000,0.000000,0.250000,0,0);}
.m53_c00011{transform:matrix(0.310053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310053,0.000000,0.000000,0.250000,0,0);}
.m64_c00011{transform:matrix(0.310639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310639,0.000000,0.000000,0.250000,0,0);}
.m5_c00011{transform:matrix(0.310880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310880,0.000000,0.000000,0.250000,0,0);}
.m8c_c00011{transform:matrix(0.310948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310948,0.000000,0.000000,0.250000,0,0);}
.ma2_c00011{transform:matrix(0.312067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312067,0.000000,0.000000,0.250000,0,0);}
.m9a_c00011{transform:matrix(0.312543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312543,0.000000,0.000000,0.250000,0,0);}
.m7e_c00011{transform:matrix(0.313355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313355,0.000000,0.000000,0.250000,0,0);}
.m98_c00011{transform:matrix(0.313942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313942,0.000000,0.000000,0.250000,0,0);}
.m54_c00011{transform:matrix(0.314155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314155,0.000000,0.000000,0.250000,0,0);}
.m6c_c00011{transform:matrix(0.315127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315127,0.000000,0.000000,0.250000,0,0);}
.m26_c00011{transform:matrix(0.316158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316158,0.000000,0.000000,0.250000,0,0);}
.m82_c00011{transform:matrix(0.316440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316440,0.000000,0.000000,0.250000,0,0);}
.m89_c00011{transform:matrix(0.316725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316725,0.000000,0.000000,0.250000,0,0);}
.m66_c00011{transform:matrix(0.318892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318892,0.000000,0.000000,0.250000,0,0);}
.m7a_c00011{transform:matrix(0.319049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319049,0.000000,0.000000,0.250000,0,0);}
.m2d_c00011{transform:matrix(0.320282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320282,0.000000,0.000000,0.250000,0,0);}
.m79_c00011{transform:matrix(0.321270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321270,0.000000,0.000000,0.250000,0,0);}
.ma_c00011{transform:matrix(0.321803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321803,0.000000,0.000000,0.250000,0,0);}
.m80_c00011{transform:matrix(0.321994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321994,0.000000,0.000000,0.250000,0,0);}
.m6f_c00011{transform:matrix(0.322097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322097,0.000000,0.000000,0.250000,0,0);}
.m73_c00011{transform:matrix(0.326105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326105,0.000000,0.000000,0.250000,0,0);}
.m5c_c00011{transform:matrix(0.328926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328926,0.000000,0.000000,0.250000,0,0);}
.m5a_c00011{transform:matrix(0.329069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329069,0.000000,0.000000,0.250000,0,0);}
.m28_c00011{transform:matrix(0.329859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329859,0.000000,0.000000,0.250000,0,0);}
.m50_c00011{transform:matrix(0.330129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330129,0.000000,0.000000,0.250000,0,0);}
.m67_c00011{transform:matrix(0.330354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330354,0.000000,0.000000,0.250000,0,0);}
.m59_c00011{transform:matrix(0.331929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331929,0.000000,0.000000,0.250000,0,0);}
.m1f_c00011{transform:matrix(0.332212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332212,0.000000,0.000000,0.250000,0,0);}
.m23_c00011{transform:matrix(0.333044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333044,0.000000,0.000000,0.250000,0,0);}
.m1e_c00011{transform:matrix(0.336983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336983,0.000000,0.000000,0.250000,0,0);}
.m61_c00011{transform:matrix(0.337590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337590,0.000000,0.000000,0.250000,0,0);}
.m13_c00011{transform:matrix(0.339168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339168,0.000000,0.000000,0.250000,0,0);}
.m5e_c00011{transform:matrix(0.346381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346381,0.000000,0.000000,0.250000,0,0);}
.m87_c00011{transform:matrix(0.346926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346926,0.000000,0.000000,0.250000,0,0);}
.m19_c00011{transform:matrix(0.349514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349514,0.000000,0.000000,0.250000,0,0);}
.md_c00011{transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);}
.m84_c00011{transform:matrix(0.376256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376256,0.000000,0.000000,0.250000,0,0);}
.m9f_c00011{transform:matrix(0.382045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382045,0.000000,0.000000,0.250000,0,0);}
.v0_c00011{vertical-align:0.000000px;}
.ls7_c00011{letter-spacing:-2.972977px;}
.lsc_c00011{letter-spacing:-2.855167px;}
.ls2_c00011{letter-spacing:0.000000px;}
.ls5_c00011{letter-spacing:0.171310px;}
.ls8_c00011{letter-spacing:2.273402px;}
.lse_c00011{letter-spacing:2.798064px;}
.ls1_c00011{letter-spacing:3.075423px;}
.lsf_c00011{letter-spacing:3.263048px;}
.lsa_c00011{letter-spacing:3.573037px;}
.ls0_c00011{letter-spacing:3.638298px;}
.ls10_c00011{letter-spacing:3.722400px;}
.ls9_c00011{letter-spacing:3.874869px;}
.lsb_c00011{letter-spacing:4.019400px;}
.ls6_c00011{letter-spacing:4.078810px;}
.lsd_c00011{letter-spacing:4.276810px;}
.ls3_c00011{letter-spacing:4.435200px;}
.ls4_c00011{letter-spacing:31.363200px;}
.ls11_c00011{letter-spacing:52.747398px;}
.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;}
}
.ws1_c00011{word-spacing:-20.394050px;}
.ws0_c00011{word-spacing:-3.181381px;}
.ws2_c00011{word-spacing:0.000000px;}
._5_c00011{margin-left:-13.867970px;}
._3_c00011{margin-left:-7.070580px;}
._2_c00011{margin-left:-1.386682px;}
._0_c00011{width:5.220776px;}
._1_c00011{width:20.883599px;}
._4_c00011{width:21.943097px;}
._6_c00011{width:25.076441px;}
.fc0_c00011{color:transparent;}
.fs5_c00011{font-size:31.086000px;}
.fs6_c00011{font-size:31.363200px;}
.fs0_c00011{font-size:33.264000px;}
.fsc_c00011{font-size:36.828000px;}
.fs3_c00011{font-size:39.600000px;}
.fs14_c00011{font-size:42.174000px;}
.fse_c00011{font-size:48.114000px;}
.fs13_c00011{font-size:52.747398px;}
.fsa_c00011{font-size:53.262000px;}
.fs2_c00011{font-size:56.628000px;}
.fs4_c00011{font-size:67.320000px;}
.fs11_c00011{font-size:70.092198px;}
.fs8_c00011{font-size:74.052198px;}
.fs12_c00011{font-size:74.448000px;}
.fsb_c00011{font-size:74.844000px;}
.fsf_c00011{font-size:78.804000px;}
.fsd_c00011{font-size:80.388000px;}
.fs7_c00011{font-size:81.576198px;}
.fs9_c00011{font-size:84.942198px;}
.fs10_c00011{font-size:85.536198px;}
.fs1_c00011{font-size:88.704000px;}
.y0_c00011{bottom:0.000000px;}
.y23_c00011{bottom:12.737385px;}
.y1_c00011{bottom:76.500000px;}
.y22_c00011{bottom:161.361135px;}
.y21_c00011{bottom:195.219135px;}
.y20_c00011{bottom:229.077135px;}
.y1f_c00011{bottom:261.148185px;}
.y2_c00011{bottom:291.803535px;}
.y1e_c00011{bottom:293.585535px;}
.y1d_c00011{bottom:325.656585px;}
.y1c_c00011{bottom:358.806735px;}
.y1b_c00011{bottom:422.953785px;}
.y1a_c00011{bottom:453.965535px;}
.y19_c00011{bottom:485.685135px;}
.y18_c00011{bottom:517.048335px;}
.y17_c00011{bottom:548.406585px;}
.y16_c00011{bottom:581.551785px;}
.y15_c00011{bottom:613.276335px;}
.y14_c00011{bottom:677.779785px;}
.y13_c00011{bottom:710.217135px;}
.y12_c00011{bottom:741.575385px;}
.y11_c00011{bottom:755.836335px;}
.y10_c00011{bottom:766.171935px;}
.yf_c00011{bottom:774.007785px;}
.ye_c00011{bottom:805.727385px;}
.yd_c00011{bottom:817.849935px;}
.yc_c00011{bottom:837.808335px;}
.yb_c00011{bottom:869.522985px;}
.ya_c00011{bottom:901.247535px;}
.y9_c00011{bottom:934.036335px;}
.y5_c00011{bottom:949.712985px;}
.y4_c00011{bottom:1013.508585px;}
.y8_c00011{bottom:1026.695385px;}
.y7_c00011{bottom:1037.030985px;}
.y6_c00011{bottom:1049.861385px;}
.y3_c00011{bottom:1060.196985px;}
.h8_c00011{height:20.887891px;}
.h7_c00011{height:30.509209px;}
.h2_c00011{height:34.693313px;}
.h15_c00011{height:35.129767px;}
.he_c00011{height:36.144668px;}
.h5_c00011{height:41.301563px;}
.h16_c00011{height:41.391475px;}
.h10_c00011{height:47.221260px;}
.hc_c00011{height:52.273740px;}
.h4_c00011{height:59.061234px;}
.h6_c00011{height:66.070898px;}
.ha_c00011{height:72.678183px;}
.h14_c00011{height:73.066641px;}
.h13_c00011{height:73.103972px;}
.hd_c00011{height:73.455293px;}
.h11_c00011{height:77.341816px;}
.hf_c00011{height:78.896426px;}
.h9_c00011{height:80.062577px;}
.hb_c00011{height:83.366122px;}
.h12_c00011{height:83.949101px;}
.h3_c00011{height:87.058125px;}
.h1_c00011{height:1110.000000px;}
.h0_c00011{height:1263.000000px;}
.w1_c00011{width:733.500000px;}
.w0_c00011{width:892.500000px;}
.x0_c00011{left:0.000000px;}
.x2_c00011{left:2.380485px;}
.x1_c00011{left:79.500000px;}
.x76_c00011{left:81.070635px;}
.x3c_c00011{left:82.283385px;}
.x42_c00011{left:83.530785px;}
.x35_c00011{left:84.595035px;}
.x8_c00011{left:87.084885px;}
.x29_c00011{left:92.519985px;}
.x51_c00011{left:104.964285px;}
.x4a_c00011{left:114.700935px;}
.x24_c00011{left:117.903585px;}
.x77_c00011{left:124.848435px;}
.x19_c00011{left:130.229085px;}
.x43_c00011{left:135.223635px;}
.x55_c00011{left:136.649235px;}
.x3d_c00011{left:138.020385px;}
.x59_c00011{left:146.539335px;}
.x63_c00011{left:148.058985px;}
.x9_c00011{left:150.365685px;}
.x47_c00011{left:156.919485px;}
.x2e_c00011{left:159.637035px;}
.x1a_c00011{left:161.399235px;}
.x12_c00011{left:163.676235px;}
.x5f_c00011{left:168.373785px;}
.x69_c00011{left:179.080635px;}
.x25_c00011{left:182.644635px;}
.x44_c00011{left:189.935985px;}
.x4b_c00011{left:191.529885px;}
.x5e_c00011{left:200.791335px;}
.x6a_c00011{left:212.166435px;}
.x26_c00011{left:214.844385px;}
.xa_c00011{left:216.834285px;}
.x4c_c00011{left:222.368385px;}
.x56_c00011{left:223.551435px;}
.x13_c00011{left:225.942285px;}
.x1b_c00011{left:227.560935px;}
.x60_c00011{left:232.738635px;}
.x72_c00011{left:234.188985px;}
.x2f_c00011{left:246.791685px;}
.xb_c00011{left:248.558835px;}
.x5a_c00011{left:256.181835px;}
.x6e_c00011{left:257.419335px;}
.x1c_c00011{left:259.057785px;}
.x2a_c00011{left:268.710285px;}
.x4_c00011{left:278.367735px;}
.x30_c00011{left:280.436835px;}
.x14_c00011{left:281.590185px;}
.x6f_c00011{left:288.653835px;}
.x2b_c00011{left:290.792235px;}
.xc_c00011{left:293.465235px;}
.x64_c00011{left:300.063585px;}
.x36_c00011{left:302.682135px;}
.xd_c00011{left:304.033485px;}
.x1d_c00011{left:314.814585px;}
.x61_c00011{left:323.689935px;}
.x4d_c00011{left:326.798535px;}
.x5b_c00011{left:334.030485px;}
.x1e_c00011{left:346.583685px;}
.x62_c00011{left:357.245985px;}
.x15_c00011{left:359.018085px;}
.x78_c00011{left:366.477735px;}
.x73_c00011{left:368.546835px;}
.x70_c00011{left:377.080635px;}
.x52_c00011{left:378.105285px;}
.x1f_c00011{left:380.011035px;}
.x65_c00011{left:388.802235px;}
.xe_c00011{left:390.584235px;}
.x2c_c00011{left:391.836585px;}
.x79_c00011{left:399.994185px;}
.x4e_c00011{left:402.464235px;}
.x57_c00011{left:412.522635px;}
.x2d_c00011{left:413.898735px;}
.x3e_c00011{left:423.803685px;}
.x37_c00011{left:424.912485px;}
.x45_c00011{left:434.960985px;}
.x5c_c00011{left:445.182735px;}
.x74_c00011{left:455.582685px;}
.x6b_c00011{left:456.686535px;}
.x38_c00011{left:458.126985px;}
.x31_c00011{left:468.284385px;}
.x20_c00011{left:469.888185px;}
.x4f_c00011{left:477.332985px;}
.x16_c00011{left:479.882235px;}
.x7b_c00011{left:488.005185px;}
.x46_c00011{left:490.227735px;}
.x7e_c00011{left:491.366235px;}
.x66_c00011{left:499.801035px;}
.x53_c00011{left:501.236535px;}
.x27_c00011{left:502.662135px;}
.x17_c00011{left:512.067135px;}
.xf_c00011{left:513.616485px;}
.x7c_c00011{left:521.526585px;}
.x48_c00011{left:523.234335px;}
.x3f_c00011{left:524.407485px;}
.x28_c00011{left:534.371835px;}
.x5_c00011{left:535.772685px;}
.x67_c00011{left:542.776935px;}
.x71_c00011{left:544.672785px;}
.x21_c00011{left:546.093435px;}
.x40_c00011{left:556.374585px;}
.x32_c00011{left:557.894235px;}
.x75_c00011{left:566.487435px;}
.x54_c00011{left:567.893235px;}
.x10_c00011{left:577.699185px;}
.x6c_c00011{left:588.227835px;}
.x22_c00011{left:590.376135px;}
.x5d_c00011{left:600.266235px;}
.x49_c00011{left:610.473135px;}
.x18_c00011{left:612.329385px;}
.x6d_c00011{left:620.590935px;}
.x41_c00011{left:622.674885px;}
.x68_c00011{left:632.688735px;}
.x39_c00011{left:633.842085px;}
.x50_c00011{left:643.964835px;}
.x23_c00011{left:645.128085px;}
.x3_c00011{left:655.156785px;}
.x11_c00011{left:657.191235px;}
.x7d_c00011{left:665.442885px;}
.x3a_c00011{left:666.660585px;}
.x7a_c00011{left:675.877485px;}
.x6_c00011{left:677.614935px;}
.x7_c00011{left:679.669185px;}
.x34_c00011{left:687.158535px;}
.x33_c00011{left:688.193085px;}
.x58_c00011{left:690.306735px;}
.x3b_c00011{left:699.231585px;}
@media print{
.v0_c00011{vertical-align:0.000000pt;}
.ls7_c00011{letter-spacing:-2.642646pt;}
.lsc_c00011{letter-spacing:-2.537926pt;}
.ls2_c00011{letter-spacing:0.000000pt;}
.ls5_c00011{letter-spacing:0.152276pt;}
.ls8_c00011{letter-spacing:2.020802pt;}
.lse_c00011{letter-spacing:2.487168pt;}
.ls1_c00011{letter-spacing:2.733709pt;}
.lsf_c00011{letter-spacing:2.900487pt;}
.lsa_c00011{letter-spacing:3.176033pt;}
.ls0_c00011{letter-spacing:3.234043pt;}
.ls10_c00011{letter-spacing:3.308800pt;}
.ls9_c00011{letter-spacing:3.444328pt;}
.lsb_c00011{letter-spacing:3.572800pt;}
.ls6_c00011{letter-spacing:3.625609pt;}
.lsd_c00011{letter-spacing:3.801609pt;}
.ls3_c00011{letter-spacing:3.942400pt;}
.ls4_c00011{letter-spacing:27.878400pt;}
.ls11_c00011{letter-spacing:46.886576pt;}
.ws1_c00011{word-spacing:-18.128044pt;}
.ws0_c00011{word-spacing:-2.827895pt;}
.ws2_c00011{word-spacing:0.000000pt;}
._5_c00011{margin-left:-12.327084pt;}
._3_c00011{margin-left:-6.284960pt;}
._2_c00011{margin-left:-1.232606pt;}
._0_c00011{width:4.640690pt;}
._1_c00011{width:18.563199pt;}
._4_c00011{width:19.504975pt;}
._6_c00011{width:22.290170pt;}
.fs5_c00011{font-size:27.632000pt;}
.fs6_c00011{font-size:27.878400pt;}
.fs0_c00011{font-size:29.568000pt;}
.fsc_c00011{font-size:32.736000pt;}
.fs3_c00011{font-size:35.200000pt;}
.fs14_c00011{font-size:37.488000pt;}
.fse_c00011{font-size:42.768000pt;}
.fs13_c00011{font-size:46.886576pt;}
.fsa_c00011{font-size:47.344000pt;}
.fs2_c00011{font-size:50.336000pt;}
.fs4_c00011{font-size:59.840000pt;}
.fs11_c00011{font-size:62.304176pt;}
.fs8_c00011{font-size:65.824176pt;}
.fs12_c00011{font-size:66.176000pt;}
.fsb_c00011{font-size:66.528000pt;}
.fsf_c00011{font-size:70.048000pt;}
.fsd_c00011{font-size:71.456000pt;}
.fs7_c00011{font-size:72.512176pt;}
.fs9_c00011{font-size:75.504176pt;}
.fs10_c00011{font-size:76.032176pt;}
.fs1_c00011{font-size:78.848000pt;}
.y0_c00011{bottom:0.000000pt;}
.y23_c00011{bottom:11.322120pt;}
.y1_c00011{bottom:68.000000pt;}
.y22_c00011{bottom:143.432120pt;}
.y21_c00011{bottom:173.528120pt;}
.y20_c00011{bottom:203.624120pt;}
.y1f_c00011{bottom:232.131720pt;}
.y2_c00011{bottom:259.380920pt;}
.y1e_c00011{bottom:260.964920pt;}
.y1d_c00011{bottom:289.472520pt;}
.y1c_c00011{bottom:318.939320pt;}
.y1b_c00011{bottom:375.958920pt;}
.y1a_c00011{bottom:403.524920pt;}
.y19_c00011{bottom:431.720120pt;}
.y18_c00011{bottom:459.598520pt;}
.y17_c00011{bottom:487.472520pt;}
.y16_c00011{bottom:516.934920pt;}
.y15_c00011{bottom:545.134520pt;}
.y14_c00011{bottom:602.470920pt;}
.y13_c00011{bottom:631.304120pt;}
.y12_c00011{bottom:659.178120pt;}
.y11_c00011{bottom:671.854520pt;}
.y10_c00011{bottom:681.041720pt;}
.yf_c00011{bottom:688.006920pt;}
.ye_c00011{bottom:716.202120pt;}
.yd_c00011{bottom:726.977720pt;}
.yc_c00011{bottom:744.718520pt;}
.yb_c00011{bottom:772.909320pt;}
.ya_c00011{bottom:801.108920pt;}
.y9_c00011{bottom:830.254520pt;}
.y5_c00011{bottom:844.189320pt;}
.y4_c00011{bottom:900.896520pt;}
.y8_c00011{bottom:912.618120pt;}
.y7_c00011{bottom:921.805320pt;}
.y6_c00011{bottom:933.210120pt;}
.y3_c00011{bottom:942.397320pt;}
.h8_c00011{height:18.567014pt;}
.h7_c00011{height:27.119297pt;}
.h2_c00011{height:30.838500pt;}
.h15_c00011{height:31.226460pt;}
.he_c00011{height:32.128594pt;}
.h5_c00011{height:36.712500pt;}
.h16_c00011{height:36.792422pt;}
.h10_c00011{height:41.974453pt;}
.hc_c00011{height:46.465547pt;}
.h4_c00011{height:52.498875pt;}
.h6_c00011{height:58.729688pt;}
.ha_c00011{height:64.602829pt;}
.h14_c00011{height:64.948125pt;}
.h13_c00011{height:64.981309pt;}
.hd_c00011{height:65.293594pt;}
.h11_c00011{height:68.748281pt;}
.hf_c00011{height:70.130156pt;}
.h9_c00011{height:71.166735pt;}
.hb_c00011{height:74.103220pt;}
.h12_c00011{height:74.621423pt;}
.h3_c00011{height:77.385000pt;}
.h1_c00011{height:986.666667pt;}
.h0_c00011{height:1122.666667pt;}
.w1_c00011{width:652.000000pt;}
.w0_c00011{width:793.333333pt;}
.x0_c00011{left:0.000000pt;}
.x2_c00011{left:2.115987pt;}
.x1_c00011{left:70.666667pt;}
.x76_c00011{left:72.062787pt;}
.x3c_c00011{left:73.140787pt;}
.x42_c00011{left:74.249587pt;}
.x35_c00011{left:75.195587pt;}
.x8_c00011{left:77.408787pt;}
.x29_c00011{left:82.239987pt;}
.x51_c00011{left:93.301587pt;}
.x4a_c00011{left:101.956387pt;}
.x24_c00011{left:104.803187pt;}
.x77_c00011{left:110.976387pt;}
.x19_c00011{left:115.759187pt;}
.x43_c00011{left:120.198787pt;}
.x55_c00011{left:121.465987pt;}
.x3d_c00011{left:122.684787pt;}
.x59_c00011{left:130.257187pt;}
.x63_c00011{left:131.607987pt;}
.x9_c00011{left:133.658387pt;}
.x47_c00011{left:139.483987pt;}
.x2e_c00011{left:141.899587pt;}
.x1a_c00011{left:143.465987pt;}
.x12_c00011{left:145.489987pt;}
.x5f_c00011{left:149.665587pt;}
.x69_c00011{left:159.182787pt;}
.x25_c00011{left:162.350787pt;}
.x44_c00011{left:168.831987pt;}
.x4b_c00011{left:170.248787pt;}
.x5e_c00011{left:178.481187pt;}
.x6a_c00011{left:188.592387pt;}
.x26_c00011{left:190.972787pt;}
.xa_c00011{left:192.741587pt;}
.x4c_c00011{left:197.660787pt;}
.x56_c00011{left:198.712387pt;}
.x13_c00011{left:200.837587pt;}
.x1b_c00011{left:202.276387pt;}
.x60_c00011{left:206.878787pt;}
.x72_c00011{left:208.167987pt;}
.x2f_c00011{left:219.370387pt;}
.xb_c00011{left:220.941187pt;}
.x5a_c00011{left:227.717187pt;}
.x6e_c00011{left:228.817187pt;}
.x1c_c00011{left:230.273587pt;}
.x2a_c00011{left:238.853587pt;}
.x4_c00011{left:247.437987pt;}
.x30_c00011{left:249.277187pt;}
.x14_c00011{left:250.302387pt;}
.x6f_c00011{left:256.581187pt;}
.x2b_c00011{left:258.481987pt;}
.xc_c00011{left:260.857987pt;}
.x64_c00011{left:266.723187pt;}
.x36_c00011{left:269.050787pt;}
.xd_c00011{left:270.251987pt;}
.x1d_c00011{left:279.835187pt;}
.x61_c00011{left:287.724387pt;}
.x4d_c00011{left:290.487587pt;}
.x5b_c00011{left:296.915987pt;}
.x1e_c00011{left:308.074387pt;}
.x62_c00011{left:317.551987pt;}
.x15_c00011{left:319.127187pt;}
.x78_c00011{left:325.757987pt;}
.x73_c00011{left:327.597187pt;}
.x70_c00011{left:335.182787pt;}
.x52_c00011{left:336.093587pt;}
.x1f_c00011{left:337.787587pt;}
.x65_c00011{left:345.601987pt;}
.xe_c00011{left:347.185987pt;}
.x2c_c00011{left:348.299187pt;}
.x79_c00011{left:355.550387pt;}
.x4e_c00011{left:357.745987pt;}
.x57_c00011{left:366.686787pt;}
.x2d_c00011{left:367.909987pt;}
.x3e_c00011{left:376.714387pt;}
.x37_c00011{left:377.699987pt;}
.x45_c00011{left:386.631987pt;}
.x5c_c00011{left:395.717987pt;}
.x74_c00011{left:404.962387pt;}
.x6b_c00011{left:405.943587pt;}
.x38_c00011{left:407.223987pt;}
.x31_c00011{left:416.252787pt;}
.x20_c00011{left:417.678387pt;}
.x4f_c00011{left:424.295987pt;}
.x16_c00011{left:426.561987pt;}
.x7b_c00011{left:433.782387pt;}
.x46_c00011{left:435.757987pt;}
.x7e_c00011{left:436.769987pt;}
.x66_c00011{left:444.267587pt;}
.x53_c00011{left:445.543587pt;}
.x27_c00011{left:446.810787pt;}
.x17_c00011{left:455.170787pt;}
.xf_c00011{left:456.547987pt;}
.x7c_c00011{left:463.579187pt;}
.x48_c00011{left:465.097187pt;}
.x3f_c00011{left:466.139987pt;}
.x28_c00011{left:474.997187pt;}
.x5_c00011{left:476.242387pt;}
.x67_c00011{left:482.468387pt;}
.x71_c00011{left:484.153587pt;}
.x21_c00011{left:485.416387pt;}
.x40_c00011{left:494.555187pt;}
.x32_c00011{left:495.905987pt;}
.x75_c00011{left:503.544387pt;}
.x54_c00011{left:504.793987pt;}
.x10_c00011{left:513.510387pt;}
.x6c_c00011{left:522.869187pt;}
.x22_c00011{left:524.778787pt;}
.x5d_c00011{left:533.569987pt;}
.x49_c00011{left:542.642787pt;}
.x18_c00011{left:544.292787pt;}
.x6d_c00011{left:551.636387pt;}
.x41_c00011{left:553.488787pt;}
.x68_c00011{left:562.389987pt;}
.x39_c00011{left:563.415187pt;}
.x50_c00011{left:572.413187pt;}
.x23_c00011{left:573.447187pt;}
.x3_c00011{left:582.361587pt;}
.x11_c00011{left:584.169987pt;}
.x7d_c00011{left:591.504787pt;}
.x3a_c00011{left:592.587187pt;}
.x7a_c00011{left:600.779987pt;}
.x6_c00011{left:602.324387pt;}
.x7_c00011{left:604.150387pt;}
.x34_c00011{left:610.807587pt;}
.x33_c00011{left:611.727187pt;}
.x58_c00011{left:613.605987pt;}
.x3b_c00011{left:621.539187pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9e3d0510315ce56f884abd59.woff2')format("woff");}.ff1_c00012{font-family:ff1_c00012;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00012;src:url('chunks/assets/font_8b378e2b62963c9311cfd792.woff2')format("woff");}.ff2_c00012{font-family:ff2_c00012;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00012;src:url('chunks/assets/font_21826b5f96f9c6717fae459c.woff2')format("woff");}.ff3_c00012{font-family:ff3_c00012;line-height:0.666000;font-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_c00012{transform:matrix(0.223317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223317,0.000000,0.000000,0.250000,0,0);}
.m19_c00012{transform:matrix(0.229113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229113,0.000000,0.000000,0.250000,0,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);}
.m20_c00012{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.m39_c00012{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m2d_c00012{transform:matrix(0.263017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263017,0.000000,0.000000,0.250000,0,0);}
.m11_c00012{transform:matrix(0.263251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263251,0.000000,0.000000,0.250000,0,0);}
.m25_c00012{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m13_c00012{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m2_c00012{transform:matrix(0.264090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264090,0.000000,0.000000,0.250000,0,0);}
.m2e_c00012{transform:matrix(0.266300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266300,0.000000,0.000000,0.250000,0,0);}
.m17_c00012{transform:matrix(0.267809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267809,0.000000,0.000000,0.250000,0,0);}
.m9_c00012{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m12_c00012{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m7_c00012{transform:matrix(0.271124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271124,0.000000,0.000000,0.250000,0,0);}
.m30_c00012{transform:matrix(0.272806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272806,0.000000,0.000000,0.250000,0,0);}
.m2b_c00012{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m1c_c00012{transform:matrix(0.275733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275733,0.000000,0.000000,0.250000,0,0);}
.m27_c00012{transform:matrix(0.278106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278106,0.000000,0.000000,0.250000,0,0);}
.m4_c00012{transform:matrix(0.278485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278485,0.000000,0.000000,0.250000,0,0);}
.m23_c00012{transform:matrix(0.278489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278489,0.000000,0.000000,0.250000,0,0);}
.m18_c00012{transform:matrix(0.280247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280247,0.000000,0.000000,0.250000,0,0);}
.m16_c00012{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.m6_c00012{transform:matrix(0.281918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281918,0.000000,0.000000,0.250000,0,0);}
.mf_c00012{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m1f_c00012{transform:matrix(0.285462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285462,0.000000,0.000000,0.250000,0,0);}
.mb_c00012{transform:matrix(0.286768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286768,0.000000,0.000000,0.250000,0,0);}
.m24_c00012{transform:matrix(0.294021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294021,0.000000,0.000000,0.250000,0,0);}
.m1d_c00012{transform:matrix(0.294443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294443,0.000000,0.000000,0.250000,0,0);}
.m22_c00012{transform:matrix(0.294733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294733,0.000000,0.000000,0.250000,0,0);}
.m1_c00012{transform:matrix(0.295066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295066,0.000000,0.000000,0.250000,0,0);}
.m36_c00012{transform:matrix(0.296856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296856,0.000000,0.000000,0.250000,0,0);}
.m29_c00012{transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);}
.me_c00012{transform:matrix(0.299471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299471,0.000000,0.000000,0.250000,0,0);}
.m15_c00012{transform:matrix(0.299779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299779,0.000000,0.000000,0.250000,0,0);}
.m2f_c00012{transform:matrix(0.301637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301637,0.000000,0.000000,0.250000,0,0);}
.m38_c00012{transform:matrix(0.302961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302961,0.000000,0.000000,0.250000,0,0);}
.m21_c00012{transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);}
.m2c_c00012{transform:matrix(0.308789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308789,0.000000,0.000000,0.250000,0,0);}
.m1e_c00012{transform:matrix(0.309040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309040,0.000000,0.000000,0.250000,0,0);}
.mc_c00012{transform:matrix(0.311818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311818,0.000000,0.000000,0.250000,0,0);}
.m3b_c00012{transform:matrix(0.312812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312812,0.000000,0.000000,0.250000,0,0);}
.md_c00012{transform:matrix(0.315787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315787,0.000000,0.000000,0.250000,0,0);}
.m26_c00012{transform:matrix(0.318214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318214,0.000000,0.000000,0.250000,0,0);}
.m33_c00012{transform:matrix(0.318542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318542,0.000000,0.000000,0.250000,0,0);}
.m1a_c00012{transform:matrix(0.319176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319176,0.000000,0.000000,0.250000,0,0);}
.m28_c00012{transform:matrix(0.320438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320438,0.000000,0.000000,0.250000,0,0);}
.m10_c00012{transform:matrix(0.320958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320958,0.000000,0.000000,0.250000,0,0);}
.m14_c00012{transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);}
.m3_c00012{transform:matrix(0.332080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332080,0.000000,0.000000,0.250000,0,0);}
.m32_c00012{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m31_c00012{transform:matrix(0.333227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333227,0.000000,0.000000,0.250000,0,0);}
.m8_c00012{transform:matrix(0.333608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333608,0.000000,0.000000,0.250000,0,0);}
.m2a_c00012{transform:matrix(0.336485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336485,0.000000,0.000000,0.250000,0,0);}
.m34_c00012{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m3a_c00012{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.ma_c00012{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m35_c00012{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m5_c00012{transform:matrix(0.423588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423588,0.000000,0.000000,0.250000,0,0);}
.m37_c00012{transform:matrix(0.937467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.937467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.937467,0.000000,0.000000,0.250000,0,0);}
.v0_c00012{vertical-align:0.000000px;}
.ls3_c00012{letter-spacing:-3.555090px;}
.ls5_c00012{letter-spacing:-2.744280px;}
.ls0_c00012{letter-spacing:0.000000px;}
.ls6_c00012{letter-spacing:2.759962px;}
.ls4_c00012{letter-spacing:2.987345px;}
.ls1_c00012{letter-spacing:3.771900px;}
.ls2_c00012{letter-spacing:3.920400px;}
.ls7_c00012{letter-spacing:5.702598px;}
.sc__c00012{text-shadow:none;}
.sc0_c00012{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00012{-webkit-text-stroke:0px transparent;}
.sc0_c00012{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00012{word-spacing:0.000000px;}
.fc0_c00012{color:transparent;}
.fs8_c00012{font-size:5.702598px;}
.fs7_c00012{font-size:22.176000px;}
.fsb_c00012{font-size:27.720000px;}
.fs3_c00012{font-size:28.314000px;}
.fsa_c00012{font-size:39.600000px;}
.fs9_c00012{font-size:50.292000px;}
.fs0_c00012{font-size:56.628000px;}
.fs5_c00012{font-size:74.844000px;}
.fs2_c00012{font-size:75.240000px;}
.fs1_c00012{font-size:75.438000px;}
.fs4_c00012{font-size:78.408000px;}
.fs6_c00012{font-size:101.574000px;}
.y0_c00012{bottom:0.000000px;}
.y13_c00012{bottom:61.207785px;}
.y1_c00012{bottom:76.500000px;}
.y12_c00012{bottom:312.474735px;}
.y11_c00012{bottom:468.572985px;}
.y10_c00012{bottom:628.601535px;}
.yf_c00012{bottom:668.156985px;}
.ye_c00012{bottom:691.322985px;}
.yd_c00012{bottom:720.552735px;}
.yc_c00012{bottom:723.403935px;}
.yb_c00012{bottom:758.326185px;}
.ya_c00012{bottom:791.114985px;}
.y9_c00012{bottom:805.375935px;}
.y8_c00012{bottom:824.265135px;}
.y7_c00012{bottom:888.773535px;}
.y6_c00012{bottom:921.913785px;}
.y5_c00012{bottom:1045.228185px;}
.y4_c00012{bottom:1054.850985px;}
.y3_c00012{bottom:1083.006585px;}
.y2_c00012{bottom:1086.214185px;}
.ha_c00012{height:3.797930px;}
.h9_c00012{height:23.128875px;}
.h5_c00012{height:27.788643px;}
.hd_c00012{height:28.911094px;}
.hc_c00012{height:38.865234px;}
.hb_c00012{height:49.358848px;}
.h2_c00012{height:59.061234px;}
.h7_c00012{height:73.455293px;}
.h3_c00012{height:74.038271px;}
.h6_c00012{height:76.953164px;}
.h4_c00012{height:78.472969px;}
.h8_c00012{height:99.689326px;}
.h1_c00012{height:1110.000000px;}
.h0_c00012{height:1263.000000px;}
.w1_c00012{width:733.500000px;}
.w0_c00012{width:892.500000px;}
.x0_c00012{left:0.000000px;}
.x31_c00012{left:62.537835px;}
.x27_c00012{left:63.607035px;}
.x1f_c00012{left:64.686135px;}
.x7_c00012{left:66.057285px;}
.x1_c00012{left:79.500000px;}
.x32_c00012{left:93.896085px;}
.x28_c00012{left:95.168235px;}
.x8_c00012{left:97.950135px;}
.x20_c00012{left:105.112785px;}
.x16_c00012{left:117.047235px;}
.x21_c00012{left:136.832385px;}
.x9_c00012{left:139.747935px;}
.x29_c00012{left:169.814235px;}
.x1e_c00012{left:171.002235px;}
.x33_c00012{left:180.318135px;}
.x17_c00012{left:193.306935px;}
.x2a_c00012{left:202.474335px;}
.x11_c00012{left:203.845485px;}
.x34_c00012{left:214.186035px;}
.x18_c00012{left:225.056235px;}
.x12_c00012{left:226.412535px;}
.x2b_c00012{left:269.244885px;}
.x19_c00012{left:270.957585px;}
.x2_c00012{left:278.011335px;}
.x35_c00012{left:281.639685px;}
.xa_c00012{left:303.380085px;}
.x36_c00012{left:313.245435px;}
.x22_c00012{left:314.487885px;}
.x3a_c00012{left:316.027335px;}
.x1a_c00012{left:325.872885px;}
.xb_c00012{left:337.282635px;}
.x13_c00012{left:357.929085px;}
.x37_c00012{left:380.431785px;}
.x2c_c00012{left:391.009935px;}
.x23_c00012{left:413.047335px;}
.x1b_c00012{left:446.732085px;}
.x39_c00012{left:449.944635px;}
.xc_c00012{left:457.627035px;}
.x1c_c00012{left:467.606235px;}
.x24_c00012{left:478.976385px;}
.x14_c00012{left:491.524635px;}
.xd_c00012{left:502.107735px;}
.x38_c00012{left:513.651135px;}
.x3b_c00012{left:523.051185px;}
.x15_c00012{left:524.209485px;}
.x2d_c00012{left:535.802385px;}
.x25_c00012{left:546.499335px;}
.x1d_c00012{left:557.206185px;}
.x2e_c00012{left:568.586235px;}
.xe_c00012{left:579.669285px;}
.xf_c00012{left:613.136235px;}
.x3_c00012{left:632.357085px;}
.x2f_c00012{left:634.911285px;}
.x10_c00012{left:645.063735px;}
.x30_c00012{left:654.315285px;}
.x26_c00012{left:656.171535px;}
.x6_c00012{left:662.091735px;}
.x5_c00012{left:670.477035px;}
.x4_c00012{left:681.767985px;}
@media print{
.v0_c00012{vertical-align:0.000000pt;}
.ls3_c00012{letter-spacing:-3.160080pt;}
.ls5_c00012{letter-spacing:-2.439360pt;}
.ls0_c00012{letter-spacing:0.000000pt;}
.ls6_c00012{letter-spacing:2.453299pt;}
.ls4_c00012{letter-spacing:2.655418pt;}
.ls1_c00012{letter-spacing:3.352800pt;}
.ls2_c00012{letter-spacing:3.484800pt;}
.ls7_c00012{letter-spacing:5.068976pt;}
.ws0_c00012{word-spacing:0.000000pt;}
.fs8_c00012{font-size:5.068976pt;}
.fs7_c00012{font-size:19.712000pt;}
.fsb_c00012{font-size:24.640000pt;}
.fs3_c00012{font-size:25.168000pt;}
.fsa_c00012{font-size:35.200000pt;}
.fs9_c00012{font-size:44.704000pt;}
.fs0_c00012{font-size:50.336000pt;}
.fs5_c00012{font-size:66.528000pt;}
.fs2_c00012{font-size:66.880000pt;}
.fs1_c00012{font-size:67.056000pt;}
.fs4_c00012{font-size:69.696000pt;}
.fs6_c00012{font-size:90.288000pt;}
.y0_c00012{bottom:0.000000pt;}
.y13_c00012{bottom:54.406920pt;}
.y1_c00012{bottom:68.000000pt;}
.y12_c00012{bottom:277.755320pt;}
.y11_c00012{bottom:416.509320pt;}
.y10_c00012{bottom:558.756920pt;}
.yf_c00012{bottom:593.917320pt;}
.ye_c00012{bottom:614.509320pt;}
.yd_c00012{bottom:640.491320pt;}
.yc_c00012{bottom:643.025720pt;}
.yb_c00012{bottom:674.067720pt;}
.ya_c00012{bottom:703.213320pt;}
.y9_c00012{bottom:715.889720pt;}
.y8_c00012{bottom:732.680120pt;}
.y7_c00012{bottom:790.020920pt;}
.y6_c00012{bottom:819.478920pt;}
.y5_c00012{bottom:929.091720pt;}
.y4_c00012{bottom:937.645320pt;}
.y3_c00012{bottom:962.672520pt;}
.y2_c00012{bottom:965.523720pt;}
.ha_c00012{height:3.375938pt;}
.h9_c00012{height:20.559000pt;}
.h5_c00012{height:24.701016pt;}
.hd_c00012{height:25.698750pt;}
.hc_c00012{height:34.546875pt;}
.hb_c00012{height:43.874531pt;}
.h2_c00012{height:52.498875pt;}
.h7_c00012{height:65.293594pt;}
.h3_c00012{height:65.811797pt;}
.h6_c00012{height:68.402813pt;}
.h4_c00012{height:69.753750pt;}
.h8_c00012{height:88.612734pt;}
.h1_c00012{height:986.666667pt;}
.h0_c00012{height:1122.666667pt;}
.w1_c00012{width:652.000000pt;}
.w0_c00012{width:793.333333pt;}
.x0_c00012{left:0.000000pt;}
.x31_c00012{left:55.589187pt;}
.x27_c00012{left:56.539587pt;}
.x1f_c00012{left:57.498787pt;}
.x7_c00012{left:58.717587pt;}
.x1_c00012{left:70.666667pt;}
.x32_c00012{left:83.463187pt;}
.x28_c00012{left:84.593987pt;}
.x8_c00012{left:87.066787pt;}
.x20_c00012{left:93.433587pt;}
.x16_c00012{left:104.041987pt;}
.x21_c00012{left:121.628787pt;}
.x9_c00012{left:124.220387pt;}
.x29_c00012{left:150.945987pt;}
.x1e_c00012{left:152.001987pt;}
.x33_c00012{left:160.282787pt;}
.x17_c00012{left:171.828387pt;}
.x2a_c00012{left:179.977187pt;}
.x11_c00012{left:181.195987pt;}
.x34_c00012{left:190.387587pt;}
.x18_c00012{left:200.049987pt;}
.x12_c00012{left:201.255587pt;}
.x2b_c00012{left:239.328787pt;}
.x19_c00012{left:240.851187pt;}
.x2_c00012{left:247.121187pt;}
.x35_c00012{left:250.346387pt;}
.xa_c00012{left:269.671187pt;}
.x36_c00012{left:278.440387pt;}
.x22_c00012{left:279.544787pt;}
.x3a_c00012{left:280.913187pt;}
.x1a_c00012{left:289.664787pt;}
.xb_c00012{left:299.806787pt;}
.x13_c00012{left:318.159187pt;}
.x37_c00012{left:338.161587pt;}
.x2c_c00012{left:347.564387pt;}
.x23_c00012{left:367.153187pt;}
.x1b_c00012{left:397.095187pt;}
.x39_c00012{left:399.950787pt;}
.xc_c00012{left:406.779587pt;}
.x1c_c00012{left:415.649987pt;}
.x24_c00012{left:425.756787pt;}
.x14_c00012{left:436.910787pt;}
.xd_c00012{left:446.317987pt;}
.x38_c00012{left:456.578787pt;}
.x3b_c00012{left:464.934387pt;}
.x15_c00012{left:465.963987pt;}
.x2d_c00012{left:476.268787pt;}
.x25_c00012{left:485.777187pt;}
.x1d_c00012{left:495.294387pt;}
.x2e_c00012{left:505.409987pt;}
.xe_c00012{left:515.261587pt;}
.xf_c00012{left:545.009987pt;}
.x3_c00012{left:562.095187pt;}
.x2f_c00012{left:564.365587pt;}
.x10_c00012{left:573.389987pt;}
.x30_c00012{left:581.613587pt;}
.x26_c00012{left:583.263587pt;}
.x6_c00012{left:588.525987pt;}
.x5_c00012{left:595.979587pt;}
.x4_c00012{left:606.015987pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_57e4f21270af480cbb36779e.woff2')format("woff");}.ff1_c00013{font-family:ff1_c00013;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00013;src:url('chunks/assets/font_a744552a50374beccbe3b42f.woff2')format("woff");}.ff2_c00013{font-family:ff2_c00013;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00013;src:url('chunks/assets/font_8f53fd8cdd81891a567b22a6.woff2')format("woff");}.ff3_c00013{font-family:ff3_c00013;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00013;src:url('chunks/assets/font_facab5cf4cfd7620ba1b3af7.woff2')format("woff");}.ff4_c00013{font-family:ff4_c00013;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00013;src:url('chunks/assets/font_7e3d63d1ebc82fb44c6a4063.woff2')format("woff");}.ff5_c00013{font-family:ff5_c00013;line-height:0.666000;font-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_c00013{transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);}
.m4_c00013{transform:matrix(0.240364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240364,0.000000,0.000000,0.250000,0,0);}
.m3_c00013{transform:matrix(0.245906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245906,0.000000,0.000000,0.250000,0,0);}
.m5_c00013{transform:matrix(0.246843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246843,0.000000,0.000000,0.250000,0,0);}
.m0_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);}
.m2_c00013{transform:matrix(0.254392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254392,0.000000,0.000000,0.250000,0,0);}
.m1_c00013{transform:matrix(0.384841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384841,0.000000,0.000000,0.250000,0,0);}
.v0_c00013{vertical-align:0.000000px;}
.ls4_c00013{letter-spacing:-2.446290px;}
.ls3_c00013{letter-spacing:-2.376990px;}
.ls0_c00013{letter-spacing:0.000000px;}
.ls5_c00013{letter-spacing:3.042547px;}
.ls2_c00013{letter-spacing:3.395700px;}
.ls1_c00013{letter-spacing:3.494700px;}
.ls6_c00013{letter-spacing:31.363200px;}
.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;}
._2_c00013{width:3.554496px;}
._0_c00013{width:19.595554px;}
._1_c00013{width:294.795754px;}
._3_c00013{width:407.015928px;}
.fc0_c00013{color:transparent;}
.fs8_c00013{font-size:19.800000px;}
.fs1_c00013{font-size:22.176000px;}
.fsa_c00013{font-size:25.146000px;}
.fs7_c00013{font-size:26.928000px;}
.fs0_c00013{font-size:27.720000px;}
.fsb_c00013{font-size:31.363200px;}
.fs2_c00013{font-size:33.264000px;}
.fs6_c00013{font-size:34.056198px;}
.fsc_c00013{font-size:39.204000px;}
.fs9_c00013{font-size:67.320000px;}
.fs4_c00013{font-size:67.914000px;}
.fs3_c00013{font-size:69.894000px;}
.fs5_c00013{font-size:93.456198px;}
.y0_c00013{bottom:0.000000px;}
.ye_c00013{bottom:16.306335px;}
.y1_c00013{bottom:76.500000px;}
.yd_c00013{bottom:200.203785px;}
.yc_c00013{bottom:262.930185px;}
.yb_c00013{bottom:284.675535px;}
.ya_c00013{bottom:295.362585px;}
.y9_c00013{bottom:306.059535px;}
.y7_c00013{bottom:307.123785px;}
.y6_c00013{bottom:310.692735px;}
.y8_c00013{bottom:318.889935px;}
.y5_c00013{bottom:697.030335px;}
.y4_c00013{bottom:885.204585px;}
.y3_c00013{bottom:942.943365px;}
.y2_c00013{bottom:1096.193385px;}
.ha_c00013{height:20.887891px;}
.h3_c00013{height:23.128875px;}
.h9_c00013{height:26.226492px;}
.h2_c00013{height:28.911094px;}
.h4_c00013{height:34.693313px;}
.hc_c00013{height:35.519550px;}
.hb_c00013{height:38.476582px;}
.h8_c00013{height:66.070898px;}
.h6_c00013{height:66.653877px;}
.h5_c00013{height:70.440047px;}
.h7_c00013{height:97.471894px;}
.h1_c00013{height:1110.000000px;}
.h0_c00013{height:1263.000000px;}
.w1_c00013{width:718.500000px;}
.w0_c00013{width:892.500000px;}
.x0_c00013{left:0.000000px;}
.x1_c00013{left:87.000000px;}
.x6_c00013{left:231.322200px;}
.x7_c00013{left:276.565200px;}
.x2_c00013{left:295.167300px;}
.xc_c00013{left:327.431400px;}
.x8_c00013{left:365.402850px;}
.x9_c00013{left:398.543100px;}
.x11_c00013{left:405.195900px;}
.xa_c00013{left:432.203100px;}
.x10_c00013{left:464.813700px;}
.xb_c00013{left:510.437850px;}
.x4_c00013{left:512.239650px;}
.x5_c00013{left:615.907500px;}
.x12_c00013{left:674.020500px;}
.xd_c00013{left:677.064750px;}
.xe_c00013{left:678.589350px;}
.xf_c00013{left:681.099000px;}
.x3_c00013{left:682.928520px;}
@media print{
.v0_c00013{vertical-align:0.000000pt;}
.ls4_c00013{letter-spacing:-2.174480pt;}
.ls3_c00013{letter-spacing:-2.112880pt;}
.ls0_c00013{letter-spacing:0.000000pt;}
.ls5_c00013{letter-spacing:2.704486pt;}
.ls2_c00013{letter-spacing:3.018400pt;}
.ls1_c00013{letter-spacing:3.106400pt;}
.ls6_c00013{letter-spacing:27.878400pt;}
.ws0_c00013{word-spacing:0.000000pt;}
._2_c00013{width:3.159552pt;}
._0_c00013{width:17.418270pt;}
._1_c00013{width:262.040670pt;}
._3_c00013{width:361.791936pt;}
.fs8_c00013{font-size:17.600000pt;}
.fs1_c00013{font-size:19.712000pt;}
.fsa_c00013{font-size:22.352000pt;}
.fs7_c00013{font-size:23.936000pt;}
.fs0_c00013{font-size:24.640000pt;}
.fsb_c00013{font-size:27.878400pt;}
.fs2_c00013{font-size:29.568000pt;}
.fs6_c00013{font-size:30.272176pt;}
.fsc_c00013{font-size:34.848000pt;}
.fs9_c00013{font-size:59.840000pt;}
.fs4_c00013{font-size:60.368000pt;}
.fs3_c00013{font-size:62.128000pt;}
.fs5_c00013{font-size:83.072176pt;}
.y0_c00013{bottom:0.000000pt;}
.ye_c00013{bottom:14.494520pt;}
.y1_c00013{bottom:68.000000pt;}
.yd_c00013{bottom:177.958920pt;}
.yc_c00013{bottom:233.715720pt;}
.yb_c00013{bottom:253.044920pt;}
.ya_c00013{bottom:262.544520pt;}
.y9_c00013{bottom:272.052920pt;}
.y7_c00013{bottom:272.998920pt;}
.y6_c00013{bottom:276.171320pt;}
.y8_c00013{bottom:283.457720pt;}
.y5_c00013{bottom:619.582520pt;}
.y4_c00013{bottom:786.848520pt;}
.y3_c00013{bottom:838.171880pt;}
.y2_c00013{bottom:974.394120pt;}
.ha_c00013{height:18.567014pt;}
.h3_c00013{height:20.559000pt;}
.h9_c00013{height:23.312438pt;}
.h2_c00013{height:25.698750pt;}
.h4_c00013{height:30.838500pt;}
.hc_c00013{height:31.572934pt;}
.hb_c00013{height:34.201406pt;}
.h8_c00013{height:58.729688pt;}
.h6_c00013{height:59.247891pt;}
.h5_c00013{height:62.613375pt;}
.h7_c00013{height:86.641684pt;}
.h1_c00013{height:986.666667pt;}
.h0_c00013{height:1122.666667pt;}
.w1_c00013{width:638.666667pt;}
.w0_c00013{width:793.333333pt;}
.x0_c00013{left:0.000000pt;}
.x1_c00013{left:77.333333pt;}
.x6_c00013{left:205.619733pt;}
.x7_c00013{left:245.835733pt;}
.x2_c00013{left:262.370933pt;}
.xc_c00013{left:291.050133pt;}
.x8_c00013{left:324.802533pt;}
.x9_c00013{left:354.260533pt;}
.x11_c00013{left:360.174133pt;}
.xa_c00013{left:384.180533pt;}
.x10_c00013{left:413.167733pt;}
.xb_c00013{left:453.722533pt;}
.x4_c00013{left:455.324133pt;}
.x5_c00013{left:547.473333pt;}
.x12_c00013{left:599.129333pt;}
.xd_c00013{left:601.835333pt;}
.xe_c00013{left:603.190533pt;}
.xf_c00013{left:605.421333pt;}
.x3_c00013{left:607.047573pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_daa51d57387a80275a910441.woff2')format("woff");}.ff1_c00014{font-family:ff1_c00014;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00014;src:url('chunks/assets/font_77f76bd4b4930364febb2852.woff2')format("woff");}.ff2_c00014{font-family:ff2_c00014;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00014;src:url('chunks/assets/font_4cf40e9145cb00723eaf66ad.woff2')format("woff");}.ff3_c00014{font-family:ff3_c00014;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00014;src:url('chunks/assets/font_a7dd2a5568e22dba4fd074da.woff2')format("woff");}.ff4_c00014{font-family:ff4_c00014;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m44_c00014{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);}
.m43_c00014{transform:matrix(0.144132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144132,0.000000,0.000000,0.250000,0,0);}
.m3d_c00014{transform:matrix(0.164132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164132,0.000000,0.000000,0.250000,0,0);}
.m58_c00014{transform:matrix(0.213786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213786,0.000000,0.000000,0.250000,0,0);}
.m40_c00014{transform:matrix(0.225922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225922,0.000000,0.000000,0.250000,0,0);}
.m0_c00014{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m31_c00014{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.m1c_c00014{transform:matrix(0.253281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253281,0.000000,0.000000,0.250000,0,0);}
.m3_c00014{transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);}
.m30_c00014{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m59_c00014{transform:matrix(0.261624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261624,0.000000,0.000000,0.250000,0,0);}
.m18_c00014{transform:matrix(0.261938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261938,0.000000,0.000000,0.250000,0,0);}
.mb_c00014{transform:matrix(0.265774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265774,0.000000,0.000000,0.250000,0,0);}
.m2d_c00014{transform:matrix(0.267199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267199,0.000000,0.000000,0.250000,0,0);}
.m5e_c00014{transform:matrix(0.267577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267577,0.000000,0.000000,0.250000,0,0);}
.m8_c00014{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m50_c00014{transform:matrix(0.267980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267980,0.000000,0.000000,0.250000,0,0);}
.m7_c00014{transform:matrix(0.270007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270007,0.000000,0.000000,0.250000,0,0);}
.m25_c00014{transform:matrix(0.272255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272255,0.000000,0.000000,0.250000,0,0);}
.m12_c00014{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m1a_c00014{transform:matrix(0.273117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273117,0.000000,0.000000,0.250000,0,0);}
.m46_c00014{transform:matrix(0.275201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275201,0.000000,0.000000,0.250000,0,0);}
.m52_c00014{transform:matrix(0.277433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277433,0.000000,0.000000,0.250000,0,0);}
.m9_c00014{transform:matrix(0.277982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277982,0.000000,0.000000,0.250000,0,0);}
.m37_c00014{transform:matrix(0.277986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277986,0.000000,0.000000,0.250000,0,0);}
.m1d_c00014{transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);}
.m4f_c00014{transform:matrix(0.279606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279606,0.000000,0.000000,0.250000,0,0);}
.m3c_c00014{transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);}
.m48_c00014{transform:matrix(0.280163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280163,0.000000,0.000000,0.250000,0,0);}
.m34_c00014{transform:matrix(0.282157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282157,0.000000,0.000000,0.250000,0,0);}
.m17_c00014{transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);}
.m4a_c00014{transform:matrix(0.283519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283519,0.000000,0.000000,0.250000,0,0);}
.m49_c00014{transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);}
.m20_c00014{transform:matrix(0.284351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284351,0.000000,0.000000,0.250000,0,0);}
.m2a_c00014{transform:matrix(0.287116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287116,0.000000,0.000000,0.250000,0,0);}
.m2e_c00014{transform:matrix(0.290161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290161,0.000000,0.000000,0.250000,0,0);}
.m29_c00014{transform:matrix(0.290530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290530,0.000000,0.000000,0.250000,0,0);}
.m11_c00014{transform:matrix(0.291443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291443,0.000000,0.000000,0.250000,0,0);}
.m1_c00014{transform:matrix(0.292195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292195,0.000000,0.000000,0.250000,0,0);}
.m5b_c00014{transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);}
.m21_c00014{transform:matrix(0.292302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292302,0.000000,0.000000,0.250000,0,0);}
.m5_c00014{transform:matrix(0.293496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293496,0.000000,0.000000,0.250000,0,0);}
.m36_c00014{transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);}
.m26_c00014{transform:matrix(0.293689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293689,0.000000,0.000000,0.250000,0,0);}
.m15_c00014{transform:matrix(0.294223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294223,0.000000,0.000000,0.250000,0,0);}
.m10_c00014{transform:matrix(0.295116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295116,0.000000,0.000000,0.250000,0,0);}
.m22_c00014{transform:matrix(0.295292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295292,0.000000,0.000000,0.250000,0,0);}
.m55_c00014{transform:matrix(0.295589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295589,0.000000,0.000000,0.250000,0,0);}
.m53_c00014{transform:matrix(0.295701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295701,0.000000,0.000000,0.250000,0,0);}
.m5c_c00014{transform:matrix(0.296443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296443,0.000000,0.000000,0.250000,0,0);}
.m2c_c00014{transform:matrix(0.296591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296591,0.000000,0.000000,0.250000,0,0);}
.m5d_c00014{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m14_c00014{transform:matrix(0.298226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298226,0.000000,0.000000,0.250000,0,0);}
.m1e_c00014{transform:matrix(0.298835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298835,0.000000,0.000000,0.250000,0,0);}
.m4c_c00014{transform:matrix(0.299520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299520,0.000000,0.000000,0.250000,0,0);}
.m16_c00014{transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);}
.m1f_c00014{transform:matrix(0.300705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300705,0.000000,0.000000,0.250000,0,0);}
.m56_c00014{transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);}
.m54_c00014{transform:matrix(0.302057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302057,0.000000,0.000000,0.250000,0,0);}
.m5f_c00014{transform:matrix(0.302205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302205,0.000000,0.000000,0.250000,0,0);}
.m4b_c00014{transform:matrix(0.302754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302754,0.000000,0.000000,0.250000,0,0);}
.m3a_c00014{transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);}
.m57_c00014{transform:matrix(0.309355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309355,0.000000,0.000000,0.250000,0,0);}
.m51_c00014{transform:matrix(0.311148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311148,0.000000,0.000000,0.250000,0,0);}
.m33_c00014{transform:matrix(0.312444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312444,0.000000,0.000000,0.250000,0,0);}
.m3f_c00014{transform:matrix(0.314372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314372,0.000000,0.000000,0.250000,0,0);}
.m39_c00014{transform:matrix(0.314597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314597,0.000000,0.000000,0.250000,0,0);}
.m19_c00014{transform:matrix(0.316011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316011,0.000000,0.000000,0.250000,0,0);}
.m2b_c00014{transform:matrix(0.316144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316144,0.000000,0.000000,0.250000,0,0);}
.ma_c00014{transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);}
.me_c00014{transform:matrix(0.319130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319130,0.000000,0.000000,0.250000,0,0);}
.m45_c00014{transform:matrix(0.319299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319299,0.000000,0.000000,0.250000,0,0);}
.m27_c00014{transform:matrix(0.320006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320006,0.000000,0.000000,0.250000,0,0);}
.m24_c00014{transform:matrix(0.320639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320639,0.000000,0.000000,0.250000,0,0);}
.m4e_c00014{transform:matrix(0.320804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320804,0.000000,0.000000,0.250000,0,0);}
.m5a_c00014{transform:matrix(0.321492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321492,0.000000,0.000000,0.250000,0,0);}
.m38_c00014{transform:matrix(0.321612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321612,0.000000,0.000000,0.250000,0,0);}
.m42_c00014{transform:matrix(0.322675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322675,0.000000,0.000000,0.250000,0,0);}
.m6_c00014{transform:matrix(0.322980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322980,0.000000,0.000000,0.250000,0,0);}
.m4_c00014{transform:matrix(0.323918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323918,0.000000,0.000000,0.250000,0,0);}
.m3e_c00014{transform:matrix(0.324174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324174,0.000000,0.000000,0.250000,0,0);}
.m47_c00014{transform:matrix(0.325424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325424,0.000000,0.000000,0.250000,0,0);}
.m28_c00014{transform:matrix(0.326965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326965,0.000000,0.000000,0.250000,0,0);}
.m2f_c00014{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.m32_c00014{transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);}
.m35_c00014{transform:matrix(0.331590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331590,0.000000,0.000000,0.250000,0,0);}
.m3b_c00014{transform:matrix(0.332554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332554,0.000000,0.000000,0.250000,0,0);}
.mf_c00014{transform:matrix(0.333931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333931,0.000000,0.000000,0.250000,0,0);}
.m2_c00014{transform:matrix(0.337772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337772,0.000000,0.000000,0.250000,0,0);}
.m23_c00014{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.md_c00014{transform:matrix(0.348979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348979,0.000000,0.000000,0.250000,0,0);}
.m41_c00014{transform:matrix(0.349089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349089,0.000000,0.000000,0.250000,0,0);}
.mc_c00014{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m4d_c00014{transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);}
.m13_c00014{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m1b_c00014{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.v0_c00014{vertical-align:0.000000px;}
.ls5_c00014{letter-spacing:-2.744280px;}
.ls0_c00014{letter-spacing:0.000000px;}
.ls2_c00014{letter-spacing:3.643200px;}
.ls1_c00014{letter-spacing:3.722400px;}
.ls3_c00014{letter-spacing:3.920400px;}
.ls4_c00014{letter-spacing:61.300998px;}
.ls6_c00014{letter-spacing:69.854598px;}
.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;}
._1_c00014{width:7.605576px;}
._0_c00014{width:34.684848px;}
.fc0_c00014{color:transparent;}
.fs9_c00014{font-size:22.572000px;}
.fs6_c00014{font-size:27.720000px;}
.fs2_c00014{font-size:49.896198px;}
.fs0_c00014{font-size:50.688000px;}
.fs7_c00014{font-size:61.300998px;}
.fs8_c00014{font-size:69.854598px;}
.fs3_c00014{font-size:72.864000px;}
.fs1_c00014{font-size:74.448000px;}
.fs5_c00014{font-size:76.032198px;}
.fs4_c00014{font-size:78.408000px;}
.y0_c00014{bottom:0.000000px;}
.y15_c00014{bottom:75.825135px;}
.y1_c00014{bottom:76.500000px;}
.y14_c00014{bottom:142.471935px;}
.y13_c00014{bottom:172.404585px;}
.y12_c00014{bottom:209.470185px;}
.y11_c00014{bottom:233.710335px;}
.y10_c00014{bottom:241.907535px;}
.yf_c00014{bottom:306.772335px;}
.ye_c00014{bottom:339.912585px;}
.yd_c00014{bottom:372.344985px;}
.yc_c00014{bottom:405.133785px;}
.yb_c00014{bottom:438.283935px;}
.ya_c00014{bottom:470.711385px;}
.y9_c00014{bottom:502.792335px;}
.y8_c00014{bottom:534.506985px;}
.y7_c00014{bottom:570.864735px;}
.y6_c00014{bottom:594.743535px;}
.y5_c00014{bottom:632.516985px;}
.y4_c00014{bottom:668.156985px;}
.y3_c00014{bottom:1081.937385px;}
.y2_c00014{bottom:1082.650185px;}
.hb_c00014{height:23.541891px;}
.h8_c00014{height:28.911094px;}
.h9_c00014{height:40.826465px;}
.ha_c00014{height:46.523162px;}
.h4_c00014{height:52.040175px;}
.h2_c00014{height:52.866000px;}
.h3_c00014{height:73.066641px;}
.h5_c00014{height:73.433250px;}
.h6_c00014{height:76.953164px;}
.h7_c00014{height:79.299207px;}
.h1_c00014{height:1110.000000px;}
.h0_c00014{height:1263.000000px;}
.w1_c00014{width:718.500000px;}
.w0_c00014{width:892.500000px;}
.x0_c00014{left:0.000000px;}
.x15_c00014{left:60.690735px;}
.x22_c00014{left:61.957935px;}
.x1d_c00014{left:63.121185px;}
.xc_c00014{left:85.960485px;}
.x1_c00014{left:87.000000px;}
.x2c_c00014{left:92.509335px;}
.x3e_c00014{left:94.068585px;}
.x1e_c00014{left:104.384385px;}
.x5_c00014{left:115.165485px;}
.x29_c00014{left:126.134685px;}
.x16_c00014{left:136.816785px;}
.x32_c00014{left:149.622435px;}
.x6_c00014{left:170.060985px;}
.xd_c00014{left:181.733085px;}
.x7_c00014{left:204.136785px;}
.x43_c00014{left:205.255485px;}
.x3b_c00014{left:214.695135px;}
.xe_c00014{left:215.912835px;}
.x46_c00014{left:217.798785px;}
.x2d_c00014{left:225.565335px;}
.x3f_c00014{left:226.886985px;}
.x17_c00014{left:236.598885px;}
.x18_c00014{left:237.999735px;}
.x33_c00014{left:248.340285px;}
.x2e_c00014{left:259.388685px;}
.x44_c00014{left:260.447985px;}
.x31_c00014{left:261.829035px;}
.x8_c00014{left:270.654885px;}
.x34_c00014{left:281.485485px;}
.x2_c00014{left:283.203135px;}
.x9_c00014{left:292.801185px;}
.xf_c00014{left:303.968385px;}
.xa_c00014{left:326.738385px;}
.x23_c00014{left:337.004685px;}
.x40_c00014{left:338.519385px;}
.x10_c00014{left:348.523335px;}
.x19_c00014{left:359.180685px;}
.x2a_c00014{left:381.133935px;}
.x1f_c00014{left:382.351635px;}
.x1a_c00014{left:393.028785px;}
.x35_c00014{left:404.780085px;}
.x20_c00014{left:414.274185px;}
.x41_c00014{left:415.392885px;}
.x27_c00014{left:425.510685px;}
.x45_c00014{left:437.855985px;}
.xb_c00014{left:445.498785px;}
.x24_c00014{left:449.003385px;}
.x4_c00014{left:451.894185px;}
.x11_c00014{left:459.012285px;}
.x2b_c00014{left:460.046835px;}
.x42_c00014{left:470.417085px;}
.x36_c00014{left:471.699135px;}
.x3c_c00014{left:481.024935px;}
.x12_c00014{left:492.122835px;}
.x2f_c00014{left:504.215685px;}
.x37_c00014{left:514.462185px;}
.x13_c00014{left:525.268035px;}
.x38_c00014{left:536.232285px;}
.x25_c00014{left:547.399485px;}
.x30_c00014{left:570.486285px;}
.x1b_c00014{left:580.420935px;}
.x21_c00014{left:592.276185px;}
.x39_c00014{left:602.997885px;}
.x26_c00014{left:613.145385px;}
.x28_c00014{left:614.209635px;}
.x3_c00014{left:634.663035px;}
.x3a_c00014{left:647.067735px;}
.x14_c00014{left:648.191385px;}
.x3d_c00014{left:656.631135px;}
.x1c_c00014{left:679.069485px;}
@media print{
.v0_c00014{vertical-align:0.000000pt;}
.ls5_c00014{letter-spacing:-2.439360pt;}
.ls0_c00014{letter-spacing:0.000000pt;}
.ls2_c00014{letter-spacing:3.238400pt;}
.ls1_c00014{letter-spacing:3.308800pt;}
.ls3_c00014{letter-spacing:3.484800pt;}
.ls4_c00014{letter-spacing:54.489776pt;}
.ls6_c00014{letter-spacing:62.092976pt;}
.ws0_c00014{word-spacing:0.000000pt;}
._1_c00014{width:6.760512pt;}
._0_c00014{width:30.830976pt;}
.fs9_c00014{font-size:20.064000pt;}
.fs6_c00014{font-size:24.640000pt;}
.fs2_c00014{font-size:44.352176pt;}
.fs0_c00014{font-size:45.056000pt;}
.fs7_c00014{font-size:54.489776pt;}
.fs8_c00014{font-size:62.092976pt;}
.fs3_c00014{font-size:64.768000pt;}
.fs1_c00014{font-size:66.176000pt;}
.fs5_c00014{font-size:67.584176pt;}
.fs4_c00014{font-size:69.696000pt;}
.y0_c00014{bottom:0.000000pt;}
.y15_c00014{bottom:67.400120pt;}
.y1_c00014{bottom:68.000000pt;}
.y14_c00014{bottom:126.641720pt;}
.y13_c00014{bottom:153.248520pt;}
.y12_c00014{bottom:186.195720pt;}
.y11_c00014{bottom:207.742520pt;}
.y10_c00014{bottom:215.028920pt;}
.yf_c00014{bottom:272.686520pt;}
.ye_c00014{bottom:302.144520pt;}
.yd_c00014{bottom:330.973320pt;}
.yc_c00014{bottom:360.118920pt;}
.yb_c00014{bottom:389.585720pt;}
.ya_c00014{bottom:418.410120pt;}
.y9_c00014{bottom:446.926520pt;}
.y8_c00014{bottom:475.117320pt;}
.y7_c00014{bottom:507.435320pt;}
.y6_c00014{bottom:528.660920pt;}
.y5_c00014{bottom:562.237320pt;}
.y4_c00014{bottom:593.917320pt;}
.y3_c00014{bottom:961.722120pt;}
.y2_c00014{bottom:962.355720pt;}
.hb_c00014{height:20.926125pt;}
.h8_c00014{height:25.698750pt;}
.h9_c00014{height:36.290191pt;}
.ha_c00014{height:41.353922pt;}
.h4_c00014{height:46.257934pt;}
.h2_c00014{height:46.992000pt;}
.h3_c00014{height:64.948125pt;}
.h5_c00014{height:65.274000pt;}
.h6_c00014{height:68.402813pt;}
.h7_c00014{height:70.488184pt;}
.h1_c00014{height:986.666667pt;}
.h0_c00014{height:1122.666667pt;}
.w1_c00014{width:638.666667pt;}
.w0_c00014{width:793.333333pt;}
.x0_c00014{left:0.000000pt;}
.x15_c00014{left:53.947320pt;}
.x22_c00014{left:55.073720pt;}
.x1d_c00014{left:56.107720pt;}
.xc_c00014{left:76.409320pt;}
.x1_c00014{left:77.333333pt;}
.x2c_c00014{left:82.230520pt;}
.x3e_c00014{left:83.616520pt;}
.x1e_c00014{left:92.786120pt;}
.x5_c00014{left:102.369320pt;}
.x29_c00014{left:112.119720pt;}
.x16_c00014{left:121.614920pt;}
.x32_c00014{left:132.997720pt;}
.x6_c00014{left:151.165320pt;}
.xd_c00014{left:161.540520pt;}
.x7_c00014{left:181.454920pt;}
.x43_c00014{left:182.449320pt;}
.x3b_c00014{left:190.840120pt;}
.xe_c00014{left:191.922520pt;}
.x46_c00014{left:193.598920pt;}
.x2d_c00014{left:200.502520pt;}
.x3f_c00014{left:201.677320pt;}
.x17_c00014{left:210.310120pt;}
.x18_c00014{left:211.555320pt;}
.x33_c00014{left:220.746920pt;}
.x2e_c00014{left:230.567720pt;}
.x44_c00014{left:231.509320pt;}
.x31_c00014{left:232.736920pt;}
.x8_c00014{left:240.582120pt;}
.x34_c00014{left:250.209320pt;}
.x2_c00014{left:251.736120pt;}
.x9_c00014{left:260.267720pt;}
.xf_c00014{left:270.194120pt;}
.xa_c00014{left:290.434120pt;}
.x23_c00014{left:299.559720pt;}
.x40_c00014{left:300.906120pt;}
.x10_c00014{left:309.798520pt;}
.x19_c00014{left:319.271720pt;}
.x2a_c00014{left:338.785720pt;}
.x1f_c00014{left:339.868120pt;}
.x1a_c00014{left:349.358920pt;}
.x35_c00014{left:359.804520pt;}
.x20_c00014{left:368.243720pt;}
.x41_c00014{left:369.238120pt;}
.x27_c00014{left:378.231720pt;}
.x45_c00014{left:389.205320pt;}
.xb_c00014{left:395.998920pt;}
.x24_c00014{left:399.114120pt;}
.x4_c00014{left:401.683720pt;}
.x11_c00014{left:408.010920pt;}
.x2b_c00014{left:408.930520pt;}
.x42_c00014{left:418.148520pt;}
.x36_c00014{left:419.288120pt;}
.x3c_c00014{left:427.577720pt;}
.x12_c00014{left:437.442520pt;}
.x2f_c00014{left:448.191720pt;}
.x37_c00014{left:457.299720pt;}
.x13_c00014{left:466.904920pt;}
.x38_c00014{left:476.650920pt;}
.x25_c00014{left:486.577320pt;}
.x30_c00014{left:507.098920pt;}
.x1b_c00014{left:515.929720pt;}
.x21_c00014{left:526.467720pt;}
.x39_c00014{left:535.998120pt;}
.x26_c00014{left:545.018120pt;}
.x28_c00014{left:545.964120pt;}
.x3_c00014{left:564.144920pt;}
.x3a_c00014{left:575.171320pt;}
.x14_c00014{left:576.170120pt;}
.x3d_c00014{left:583.672120pt;}
.x1c_c00014{left:603.617320pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9c89eb32927b63f44d1974e4.woff2')format("woff");}.ff1_c00015{font-family:ff1_c00015;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00015;src:url('chunks/assets/font_60f27ba5cba68ced53504f6e.woff2')format("woff");}.ff2_c00015{font-family:ff2_c00015;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00015;src:url('chunks/assets/font_2698130b63cee09fed7d5b72.woff2')format("woff");}.ff3_c00015{font-family:ff3_c00015;line-height:0.666000;font-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_c00015{transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);}
.m20_c00015{transform:matrix(0.193187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193187,0.000000,0.000000,0.250000,0,0);}
.m4_c00015{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m86_c00015{transform:matrix(0.206777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206777,0.000000,0.000000,0.250000,0,0);}
.m60_c00015{transform:matrix(0.241065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241065,0.000000,0.000000,0.250000,0,0);}
.m0_c00015{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m79_c00015{transform:matrix(0.250188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250188,0.000000,0.000000,0.250000,0,0);}
.m65_c00015{transform:matrix(0.254054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254054,0.000000,0.000000,0.250000,0,0);}
.m56_c00015{transform:matrix(0.254639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254639,0.000000,0.000000,0.250000,0,0);}
.m1_c00015{transform:matrix(0.254928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254928,0.000000,0.000000,0.250000,0,0);}
.m69_c00015{transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);}
.m1a_c00015{transform:matrix(0.256600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256600,0.000000,0.000000,0.250000,0,0);}
.m23_c00015{transform:matrix(0.256621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256621,0.000000,0.000000,0.250000,0,0);}
.m6e_c00015{transform:matrix(0.256900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256900,0.000000,0.000000,0.250000,0,0);}
.m81_c00015{transform:matrix(0.259665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259665,0.000000,0.000000,0.250000,0,0);}
.m4f_c00015{transform:matrix(0.260247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260247,0.000000,0.000000,0.250000,0,0);}
.m68_c00015{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m26_c00015{transform:matrix(0.262697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262697,0.000000,0.000000,0.250000,0,0);}
.m8a_c00015{transform:matrix(0.263165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263165,0.000000,0.000000,0.250000,0,0);}
.m1e_c00015{transform:matrix(0.263278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263278,0.000000,0.000000,0.250000,0,0);}
.m74_c00015{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m48_c00015{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m1c_c00015{transform:matrix(0.265333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265333,0.000000,0.000000,0.250000,0,0);}
.m94_c00015{transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);}
.m43_c00015{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.me_c00015{transform:matrix(0.267847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267847,0.000000,0.000000,0.250000,0,0);}
.m18_c00015{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.md_c00015{transform:matrix(0.268753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268753,0.000000,0.000000,0.250000,0,0);}
.m87_c00015{transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);}
.m15_c00015{transform:matrix(0.270119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270119,0.000000,0.000000,0.250000,0,0);}
.m31_c00015{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m1b_c00015{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m46_c00015{transform:matrix(0.273247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273247,0.000000,0.000000,0.250000,0,0);}
.m7_c00015{transform:matrix(0.274054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274054,0.000000,0.000000,0.250000,0,0);}
.m29_c00015{transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);}
.m5c_c00015{transform:matrix(0.275715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275715,0.000000,0.000000,0.250000,0,0);}
.m61_c00015{transform:matrix(0.275826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275826,0.000000,0.000000,0.250000,0,0);}
.m7c_c00015{transform:matrix(0.275908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275908,0.000000,0.000000,0.250000,0,0);}
.m7b_c00015{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m54_c00015{transform:matrix(0.277767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277767,0.000000,0.000000,0.250000,0,0);}
.m36_c00015{transform:matrix(0.279111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279111,0.000000,0.000000,0.250000,0,0);}
.m63_c00015{transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);}
.m49_c00015{transform:matrix(0.279693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279693,0.000000,0.000000,0.250000,0,0);}
.m78_c00015{transform:matrix(0.279771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279771,0.000000,0.000000,0.250000,0,0);}
.m44_c00015{transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);}
.m3d_c00015{transform:matrix(0.281329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281329,0.000000,0.000000,0.250000,0,0);}
.m25_c00015{transform:matrix(0.282077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282077,0.000000,0.000000,0.250000,0,0);}
.m95_c00015{transform:matrix(0.282171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282171,0.000000,0.000000,0.250000,0,0);}
.m35_c00015{transform:matrix(0.282617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282617,0.000000,0.000000,0.250000,0,0);}
.m52_c00015{transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);}
.m34_c00015{transform:matrix(0.283021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283021,0.000000,0.000000,0.250000,0,0);}
.m32_c00015{transform:matrix(0.283405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283405,0.000000,0.000000,0.250000,0,0);}
.m66_c00015{transform:matrix(0.283905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283905,0.000000,0.000000,0.250000,0,0);}
.m1d_c00015{transform:matrix(0.285033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285033,0.000000,0.000000,0.250000,0,0);}
.m8d_c00015{transform:matrix(0.285371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285371,0.000000,0.000000,0.250000,0,0);}
.m17_c00015{transform:matrix(0.286652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286652,0.000000,0.000000,0.250000,0,0);}
.m7d_c00015{transform:matrix(0.286926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286926,0.000000,0.000000,0.250000,0,0);}
.m91_c00015{transform:matrix(0.288172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288172,0.000000,0.000000,0.250000,0,0);}
.m73_c00015{transform:matrix(0.288222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288222,0.000000,0.000000,0.250000,0,0);}
.m93_c00015{transform:matrix(0.289475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289475,0.000000,0.000000,0.250000,0,0);}
.m2c_c00015{transform:matrix(0.289860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289860,0.000000,0.000000,0.250000,0,0);}
.mf_c00015{transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);}
.m90_c00015{transform:matrix(0.290579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290579,0.000000,0.000000,0.250000,0,0);}
.m5_c00015{transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);}
.m5e_c00015{transform:matrix(0.291823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291823,0.000000,0.000000,0.250000,0,0);}
.m70_c00015{transform:matrix(0.292883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292883,0.000000,0.000000,0.250000,0,0);}
.m59_c00015{transform:matrix(0.293461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293461,0.000000,0.000000,0.250000,0,0);}
.m2b_c00015{transform:matrix(0.293864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293864,0.000000,0.000000,0.250000,0,0);}
.m4a_c00015{transform:matrix(0.294198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294198,0.000000,0.000000,0.250000,0,0);}
.m30_c00015{transform:matrix(0.294341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294341,0.000000,0.000000,0.250000,0,0);}
.m55_c00015{transform:matrix(0.294792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294792,0.000000,0.000000,0.250000,0,0);}
.m7a_c00015{transform:matrix(0.295290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295290,0.000000,0.000000,0.250000,0,0);}
.m6_c00015{transform:matrix(0.295473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295473,0.000000,0.000000,0.250000,0,0);}
.m42_c00015{transform:matrix(0.295580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295580,0.000000,0.000000,0.250000,0,0);}
.m24_c00015{transform:matrix(0.295606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295606,0.000000,0.000000,0.250000,0,0);}
.m27_c00015{transform:matrix(0.295700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295700,0.000000,0.000000,0.250000,0,0);}
.m39_c00015{transform:matrix(0.297626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297626,0.000000,0.000000,0.250000,0,0);}
.m4b_c00015{transform:matrix(0.298311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298311,0.000000,0.000000,0.250000,0,0);}
.m2e_c00015{transform:matrix(0.298698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298698,0.000000,0.000000,0.250000,0,0);}
.m6c_c00015{transform:matrix(0.300081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300081,0.000000,0.000000,0.250000,0,0);}
.m12_c00015{transform:matrix(0.300173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300173,0.000000,0.000000,0.250000,0,0);}
.m8e_c00015{transform:matrix(0.300768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300768,0.000000,0.000000,0.250000,0,0);}
.m5f_c00015{transform:matrix(0.302162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302162,0.000000,0.000000,0.250000,0,0);}
.m7f_c00015{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.mb_c00015{transform:matrix(0.302567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302567,0.000000,0.000000,0.250000,0,0);}
.m28_c00015{transform:matrix(0.302612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302612,0.000000,0.000000,0.250000,0,0);}
.m51_c00015{transform:matrix(0.304255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304255,0.000000,0.000000,0.250000,0,0);}
.ma_c00015{transform:matrix(0.304747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304747,0.000000,0.000000,0.250000,0,0);}
.m45_c00015{transform:matrix(0.305507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305507,0.000000,0.000000,0.250000,0,0);}
.m2f_c00015{transform:matrix(0.306378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306378,0.000000,0.000000,0.250000,0,0);}
.m2a_c00015{transform:matrix(0.306675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306675,0.000000,0.000000,0.250000,0,0);}
.mc_c00015{transform:matrix(0.308424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308424,0.000000,0.000000,0.250000,0,0);}
.m3c_c00015{transform:matrix(0.308496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308496,0.000000,0.000000,0.250000,0,0);}
.m21_c00015{transform:matrix(0.308746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308746,0.000000,0.000000,0.250000,0,0);}
.m4d_c00015{transform:matrix(0.308825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308825,0.000000,0.000000,0.250000,0,0);}
.m82_c00015{transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);}
.m57_c00015{transform:matrix(0.310091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310091,0.000000,0.000000,0.250000,0,0);}
.m6f_c00015{transform:matrix(0.310101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310101,0.000000,0.000000,0.250000,0,0);}
.m41_c00015{transform:matrix(0.310451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310451,0.000000,0.000000,0.250000,0,0);}
.m3_c00015{transform:matrix(0.311396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311396,0.000000,0.000000,0.250000,0,0);}
.m67_c00015{transform:matrix(0.311434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311434,0.000000,0.000000,0.250000,0,0);}
.m80_c00015{transform:matrix(0.312319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312319,0.000000,0.000000,0.250000,0,0);}
.m33_c00015{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.m8_c00015{transform:matrix(0.313301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313301,0.000000,0.000000,0.250000,0,0);}
.m3f_c00015{transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);}
.m8f_c00015{transform:matrix(0.313926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313926,0.000000,0.000000,0.250000,0,0);}
.m11_c00015{transform:matrix(0.316044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316044,0.000000,0.000000,0.250000,0,0);}
.m19_c00015{transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);}
.m62_c00015{transform:matrix(0.317701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317701,0.000000,0.000000,0.250000,0,0);}
.m92_c00015{transform:matrix(0.318018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318018,0.000000,0.000000,0.250000,0,0);}
.m3b_c00015{transform:matrix(0.318082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318082,0.000000,0.000000,0.250000,0,0);}
.m6d_c00015{transform:matrix(0.318126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318126,0.000000,0.000000,0.250000,0,0);}
.m9_c00015{transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);}
.m8c_c00015{transform:matrix(0.319562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319562,0.000000,0.000000,0.250000,0,0);}
.m5a_c00015{transform:matrix(0.319738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319738,0.000000,0.000000,0.250000,0,0);}
.m84_c00015{transform:matrix(0.320633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320633,0.000000,0.000000,0.250000,0,0);}
.m1f_c00015{transform:matrix(0.321585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321585,0.000000,0.000000,0.250000,0,0);}
.m88_c00015{transform:matrix(0.323206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323206,0.000000,0.000000,0.250000,0,0);}
.m50_c00015{transform:matrix(0.323445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323445,0.000000,0.000000,0.250000,0,0);}
.m3e_c00015{transform:matrix(0.323557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323557,0.000000,0.000000,0.250000,0,0);}
.m75_c00015{transform:matrix(0.323651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323651,0.000000,0.000000,0.250000,0,0);}
.m71_c00015{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.m6b_c00015{transform:matrix(0.323918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323918,0.000000,0.000000,0.250000,0,0);}
.m64_c00015{transform:matrix(0.324044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324044,0.000000,0.000000,0.250000,0,0);}
.m22_c00015{transform:matrix(0.325434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325434,0.000000,0.000000,0.250000,0,0);}
.m85_c00015{transform:matrix(0.326045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326045,0.000000,0.000000,0.250000,0,0);}
.m58_c00015{transform:matrix(0.326445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326445,0.000000,0.000000,0.250000,0,0);}
.m83_c00015{transform:matrix(0.327340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327340,0.000000,0.000000,0.250000,0,0);}
.m76_c00015{transform:matrix(0.328208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328208,0.000000,0.000000,0.250000,0,0);}
.m72_c00015{transform:matrix(0.328729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328729,0.000000,0.000000,0.250000,0,0);}
.m5d_c00015{transform:matrix(0.329747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329747,0.000000,0.000000,0.250000,0,0);}
.m53_c00015{transform:matrix(0.331020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331020,0.000000,0.000000,0.250000,0,0);}
.m38_c00015{transform:matrix(0.331150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331150,0.000000,0.000000,0.250000,0,0);}
.m5b_c00015{transform:matrix(0.331235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331235,0.000000,0.000000,0.250000,0,0);}
.m6a_c00015{transform:matrix(0.331947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331947,0.000000,0.000000,0.250000,0,0);}
.m89_c00015{transform:matrix(0.333376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333376,0.000000,0.000000,0.250000,0,0);}
.m3a_c00015{transform:matrix(0.335078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335078,0.000000,0.000000,0.250000,0,0);}
.m14_c00015{transform:matrix(0.336941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336941,0.000000,0.000000,0.250000,0,0);}
.m2d_c00015{transform:matrix(0.338934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338934,0.000000,0.000000,0.250000,0,0);}
.m10_c00015{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m4c_c00015{transform:matrix(0.340920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340920,0.000000,0.000000,0.250000,0,0);}
.m40_c00015{transform:matrix(0.346473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346473,0.000000,0.000000,0.250000,0,0);}
.m4e_c00015{transform:matrix(0.347707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347707,0.000000,0.000000,0.250000,0,0);}
.m16_c00015{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m7e_c00015{transform:matrix(0.349584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349584,0.000000,0.000000,0.250000,0,0);}
.m13_c00015{transform:matrix(0.350937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350937,0.000000,0.000000,0.250000,0,0);}
.m47_c00015{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m77_c00015{transform:matrix(0.357094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357094,0.000000,0.000000,0.250000,0,0);}
.m8b_c00015{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m37_c00015{transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);}
.v0_c00015{vertical-align:0.000000px;}
.ls9_c00015{letter-spacing:-2.744280px;}
.ls6_c00015{letter-spacing:-1.801800px;}
.lsc_c00015{letter-spacing:-1.685772px;}
.ls5_c00015{letter-spacing:-1.427026px;}
.ls0_c00015{letter-spacing:0.000000px;}
.ls7_c00015{letter-spacing:1.019938px;}
.lsb_c00015{letter-spacing:1.734638px;}
.lsa_c00015{letter-spacing:1.748498px;}
.ls8_c00015{letter-spacing:3.722400px;}
.ls3_c00015{letter-spacing:3.920400px;}
.ls1_c00015{letter-spacing:4.415400px;}
.ls2_c00015{letter-spacing:31.363200px;}
.ls4_c00015{letter-spacing:49.896198px;}
.sc__c00015{text-shadow:none;}
.sc0_c00015{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00015{-webkit-text-stroke:0px transparent;}
.sc0_c00015{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00015{word-spacing:0.000000px;}
._0_c00015{width:4.312440px;}
._4_c00015{width:10.115028px;}
._2_c00015{width:20.856528px;}
._1_c00015{width:36.850968px;}
._3_c00015{width:39.234096px;}
.fc0_c00015{color:transparent;}
.fsc_c00015{font-size:22.176000px;}
.fs4_c00015{font-size:25.344000px;}
.fs0_c00015{font-size:27.720000px;}
.fs5_c00015{font-size:31.363200px;}
.fsd_c00015{font-size:39.600000px;}
.fs7_c00015{font-size:49.896198px;}
.fs1_c00015{font-size:50.292000px;}
.fs8_c00015{font-size:51.480000px;}
.fse_c00015{font-size:61.776198px;}
.fsb_c00015{font-size:62.568000px;}
.fsa_c00015{font-size:64.548000px;}
.fs3_c00015{font-size:67.320000px;}
.fs9_c00015{font-size:74.448000px;}
.fs6_c00015{font-size:78.408000px;}
.fs2_c00015{font-size:88.308000px;}
.y0_c00015{bottom:0.000000px;}
.y23_c00015{bottom:66.558735px;}
.y1_c00015{bottom:76.500000px;}
.y22_c00015{bottom:102.906585px;}
.y21_c00015{bottom:134.987535px;}
.y1f_c00015{bottom:198.070335px;}
.y20_c00015{bottom:198.426735px;}
.y1e_c00015{bottom:230.502735px;}
.y1d_c00015{bottom:262.573785px;}
.y1c_c00015{bottom:294.649785px;}
.y1b_c00015{bottom:309.974985px;}
.y1a_c00015{bottom:327.443535px;}
.y19_c00015{bottom:359.870985px;}
.y18_c00015{bottom:424.384335px;}
.y17_c00015{bottom:440.060985px;}
.y16_c00015{bottom:456.455385px;}
.y15_c00015{bottom:488.892735px;}
.y14_c00015{bottom:520.963785px;}
.y13_c00015{bottom:553.401135px;}
.y12_c00015{bottom:586.897785px;}
.y11_c00015{bottom:619.691535px;}
.y10_c00015{bottom:619.697475px;}
.yf_c00015{bottom:652.118985px;}
.ye_c00015{bottom:673.151535px;}
.yd_c00015{bottom:716.983785px;}
.y2_c00015{bottom:724.468185px;}
.yc_c00015{bottom:749.772585px;}
.yb_c00015{bottom:782.561385px;}
.ya_c00015{bottom:814.642335px;}
.y9_c00015{bottom:847.431135px;}
.y8_c00015{bottom:881.645535px;}
.y7_c00015{bottom:976.804335px;}
.y6_c00015{bottom:987.134985px;}
.y5_c00015{bottom:999.970335px;}
.y3_c00015{bottom:1073.740185px;}
.y4_c00015{bottom:1077.660585px;}
.h7_c00015{height:20.887891px;}
.hd_c00015{height:23.128875px;}
.h6_c00015{height:24.873750px;}
.h2_c00015{height:28.911094px;}
.h9_c00015{height:33.230868px;}
.he_c00015{height:41.301563px;}
.h3_c00015{height:49.358848px;}
.ha_c00015{height:53.692031px;}
.hf_c00015{height:60.629960px;}
.h5_c00015{height:66.070898px;}
.hc_c00015{height:67.321547px;}
.hb_c00015{height:73.066641px;}
.h8_c00015{height:76.953164px;}
.h4_c00015{height:86.669473px;}
.h1_c00015{height:1110.000000px;}
.h0_c00015{height:1263.000000px;}
.w1_c00015{width:718.500000px;}
.w0_c00015{width:892.500000px;}
.x0_c00015{left:0.000000px;}
.x2_c00015{left:26.798085px;}
.x29_c00015{left:57.196035px;}
.x24_c00015{left:58.577085px;}
.x43_c00015{left:60.195735px;}
.x18_c00015{left:61.601535px;}
.x7_c00015{left:63.259785px;}
.x1_c00015{left:87.000000px;}
.x34_c00015{left:89.222535px;}
.x4b_c00015{left:91.009485px;}
.x2a_c00015{left:101.864835px;}
.x11_c00015{left:103.136985px;}
.x8_c00015{left:104.963535px;}
.x2d_c00015{left:111.947985px;}
.x56_c00015{left:113.932935px;}
.x51_c00015{left:123.991335px;}
.x3d_c00015{left:125.718885px;}
.x54_c00015{left:133.465635px;}
.x39_c00015{left:144.984285px;}
.x9_c00015{left:147.038535px;}
.x46_c00015{left:156.027735px;}
.x2e_c00015{left:166.640535px;}
.x3e_c00015{left:168.526485px;}
.xa_c00015{left:178.693785px;}
.x19_c00015{left:179.926335px;}
.x35_c00015{left:190.261935px;}
.x12_c00015{left:200.142135px;}
.x3a_c00015{left:211.309335px;}
.x36_c00015{left:223.347735px;}
.x25_c00015{left:232.930935px;}
.x2b_c00015{left:235.084185px;}
.x47_c00015{left:243.949635px;}
.x13_c00015{left:245.444535px;}
.x37_c00015{left:255.651435px;}
.xb_c00015{left:266.432535px;}
.x14_c00015{left:278.629335px;}
.x3_c00015{left:285.094035px;}
.x1f_c00015{left:289.712385px;}
.x5a_c00015{left:290.974635px;}
.x57_c00015{left:301.310235px;}
.x1a_c00015{left:311.784435px;}
.x5b_c00015{left:314.957385px;}
.x2f_c00015{left:322.867485px;}
.x26_c00015{left:333.559485px;}
.x1b_c00015{left:345.637485px;}
.xc_c00015{left:355.265235px;}
.x3f_c00015{left:357.052185px;}
.x20_c00015{left:366.308685px;}
.x4c_c00015{left:367.739235px;}
.x3b_c00015{left:369.466785px;}
.x38_c00015{left:377.896635px;}
.x30_c00015{left:389.449935px;}
.x15_c00015{left:399.661785px;}
.x4e_c00015{left:400.869585px;}
.x4a_c00015{left:408.883635px;}
.x3c_c00015{left:421.669485px;}
.xd_c00015{left:434.351385px;}
.x58_c00015{left:445.424535px;}
.x2c_c00015{left:455.096835px;}
.x27_c00015{left:466.372935px;}
.x21_c00015{left:477.901485px;}
.xe_c00015{left:488.563785px;}
.x40_c00015{left:489.637935px;}
.x22_c00015{left:498.102435px;}
.x16_c00015{left:499.820085px;}
.x44_c00015{left:500.973435px;}
.x52_c00015{left:511.348635px;}
.x28_c00015{left:521.713935px;}
.x48_c00015{left:523.139535px;}
.x1c_c00015{left:534.148335px;}
.x31_c00015{left:544.370085px;}
.x53_c00015{left:546.949035px;}
.x41_c00015{left:555.601635px;}
.x32_c00015{left:566.521335px;}
.x4f_c00015{left:577.257885px;}
.xf_c00015{left:578.396385px;}
.x1d_c00015{left:587.474685px;}
.x17_c00015{left:589.014135px;}
.x42_c00015{left:598.874535px;}
.x10_c00015{left:600.146685px;}
.x45_c00015{left:601.201035px;}
.x49_c00015{left:611.526735px;}
.x50_c00015{left:613.986885px;}
.x4d_c00015{left:621.976185px;}
.x4_c00015{left:630.376335px;}
.x23_c00015{left:632.534535px;}
.x59_c00015{left:642.726585px;}
.x1e_c00015{left:655.027335px;}
.x33_c00015{left:666.615285px;}
.x5c_c00015{left:673.876935px;}
.x5_c00015{left:674.926335px;}
.x6_c00015{left:676.267785px;}
.x55_c00015{left:680.816835px;}
@media print{
.v0_c00015{vertical-align:0.000000pt;}
.ls9_c00015{letter-spacing:-2.439360pt;}
.ls6_c00015{letter-spacing:-1.601600pt;}
.lsc_c00015{letter-spacing:-1.498464pt;}
.ls5_c00015{letter-spacing:-1.268467pt;}
.ls0_c00015{letter-spacing:0.000000pt;}
.ls7_c00015{letter-spacing:0.906611pt;}
.lsb_c00015{letter-spacing:1.541901pt;}
.lsa_c00015{letter-spacing:1.554221pt;}
.ls8_c00015{letter-spacing:3.308800pt;}
.ls3_c00015{letter-spacing:3.484800pt;}
.ls1_c00015{letter-spacing:3.924800pt;}
.ls2_c00015{letter-spacing:27.878400pt;}
.ls4_c00015{letter-spacing:44.352176pt;}
.ws0_c00015{word-spacing:0.000000pt;}
._0_c00015{width:3.833280pt;}
._4_c00015{width:8.991136pt;}
._2_c00015{width:18.539136pt;}
._1_c00015{width:32.756416pt;}
._3_c00015{width:34.874752pt;}
.fsc_c00015{font-size:19.712000pt;}
.fs4_c00015{font-size:22.528000pt;}
.fs0_c00015{font-size:24.640000pt;}
.fs5_c00015{font-size:27.878400pt;}
.fsd_c00015{font-size:35.200000pt;}
.fs7_c00015{font-size:44.352176pt;}
.fs1_c00015{font-size:44.704000pt;}
.fs8_c00015{font-size:45.760000pt;}
.fse_c00015{font-size:54.912176pt;}
.fsb_c00015{font-size:55.616000pt;}
.fsa_c00015{font-size:57.376000pt;}
.fs3_c00015{font-size:59.840000pt;}
.fs9_c00015{font-size:66.176000pt;}
.fs6_c00015{font-size:69.696000pt;}
.fs2_c00015{font-size:78.496000pt;}
.y0_c00015{bottom:0.000000pt;}
.y23_c00015{bottom:59.163320pt;}
.y1_c00015{bottom:68.000000pt;}
.y22_c00015{bottom:91.472520pt;}
.y21_c00015{bottom:119.988920pt;}
.y1f_c00015{bottom:176.062520pt;}
.y20_c00015{bottom:176.379320pt;}
.y1e_c00015{bottom:204.891320pt;}
.y1d_c00015{bottom:233.398920pt;}
.y1c_c00015{bottom:261.910920pt;}
.y1b_c00015{bottom:275.533320pt;}
.y1a_c00015{bottom:291.060920pt;}
.y19_c00015{bottom:319.885320pt;}
.y18_c00015{bottom:377.230520pt;}
.y17_c00015{bottom:391.165320pt;}
.y16_c00015{bottom:405.738120pt;}
.y15_c00015{bottom:434.571320pt;}
.y14_c00015{bottom:463.078920pt;}
.y13_c00015{bottom:491.912120pt;}
.y12_c00015{bottom:521.686920pt;}
.y11_c00015{bottom:550.836920pt;}
.y10_c00015{bottom:550.842200pt;}
.yf_c00015{bottom:579.661320pt;}
.ye_c00015{bottom:598.356920pt;}
.yd_c00015{bottom:637.318920pt;}
.y2_c00015{bottom:643.971720pt;}
.yc_c00015{bottom:666.464520pt;}
.yb_c00015{bottom:695.610120pt;}
.ya_c00015{bottom:724.126520pt;}
.y9_c00015{bottom:753.272120pt;}
.y8_c00015{bottom:783.684920pt;}
.y7_c00015{bottom:868.270520pt;}
.y6_c00015{bottom:877.453320pt;}
.y5_c00015{bottom:888.862520pt;}
.y3_c00015{bottom:954.435720pt;}
.y4_c00015{bottom:957.920520pt;}
.h7_c00015{height:18.567014pt;}
.hd_c00015{height:20.559000pt;}
.h6_c00015{height:22.110000pt;}
.h2_c00015{height:25.698750pt;}
.h9_c00015{height:29.538549pt;}
.he_c00015{height:36.712500pt;}
.h3_c00015{height:43.874531pt;}
.ha_c00015{height:47.726250pt;}
.hf_c00015{height:53.893298pt;}
.h5_c00015{height:58.729688pt;}
.hc_c00015{height:59.841375pt;}
.hb_c00015{height:64.948125pt;}
.h8_c00015{height:68.402813pt;}
.h4_c00015{height:77.039531pt;}
.h1_c00015{height:986.666667pt;}
.h0_c00015{height:1122.666667pt;}
.w1_c00015{width:638.666667pt;}
.w0_c00015{width:793.333333pt;}
.x0_c00015{left:0.000000pt;}
.x2_c00015{left:23.820520pt;}
.x29_c00015{left:50.840920pt;}
.x24_c00015{left:52.068520pt;}
.x43_c00015{left:53.507320pt;}
.x18_c00015{left:54.756920pt;}
.x7_c00015{left:56.230920pt;}
.x1_c00015{left:77.333333pt;}
.x34_c00015{left:79.308920pt;}
.x4b_c00015{left:80.897320pt;}
.x2a_c00015{left:90.546520pt;}
.x11_c00015{left:91.677320pt;}
.x8_c00015{left:93.300920pt;}
.x2d_c00015{left:99.509320pt;}
.x56_c00015{left:101.273720pt;}
.x51_c00015{left:110.214520pt;}
.x3d_c00015{left:111.750120pt;}
.x54_c00015{left:118.636120pt;}
.x39_c00015{left:128.874920pt;}
.x9_c00015{left:130.700920pt;}
.x46_c00015{left:138.691320pt;}
.x2e_c00015{left:148.124920pt;}
.x3e_c00015{left:149.801320pt;}
.xa_c00015{left:158.838920pt;}
.x19_c00015{left:159.934520pt;}
.x35_c00015{left:169.121720pt;}
.x12_c00015{left:177.904120pt;}
.x3a_c00015{left:187.830520pt;}
.x36_c00015{left:198.531320pt;}
.x25_c00015{left:207.049720pt;}
.x2b_c00015{left:208.963720pt;}
.x47_c00015{left:216.844120pt;}
.x13_c00015{left:218.172920pt;}
.x37_c00015{left:227.245720pt;}
.xb_c00015{left:236.828920pt;}
.x14_c00015{left:247.670520pt;}
.x3_c00015{left:253.416920pt;}
.x1f_c00015{left:257.522120pt;}
.x5a_c00015{left:258.644120pt;}
.x57_c00015{left:267.831320pt;}
.x1a_c00015{left:277.141720pt;}
.x5b_c00015{left:279.962120pt;}
.x2f_c00015{left:286.993320pt;}
.x26_c00015{left:296.497320pt;}
.x1b_c00015{left:307.233320pt;}
.xc_c00015{left:315.791320pt;}
.x3f_c00015{left:317.379720pt;}
.x20_c00015{left:325.607720pt;}
.x4c_c00015{left:326.879320pt;}
.x3b_c00015{left:328.414920pt;}
.x38_c00015{left:335.908120pt;}
.x30_c00015{left:346.177720pt;}
.x15_c00015{left:355.254920pt;}
.x4e_c00015{left:356.328520pt;}
.x4a_c00015{left:363.452120pt;}
.x3c_c00015{left:374.817320pt;}
.xd_c00015{left:386.090120pt;}
.x58_c00015{left:395.932920pt;}
.x2c_c00015{left:404.530520pt;}
.x27_c00015{left:414.553720pt;}
.x21_c00015{left:424.801320pt;}
.xe_c00015{left:434.278920pt;}
.x40_c00015{left:435.233720pt;}
.x22_c00015{left:442.757720pt;}
.x16_c00015{left:444.284520pt;}
.x44_c00015{left:445.309720pt;}
.x52_c00015{left:454.532120pt;}
.x28_c00015{left:463.745720pt;}
.x48_c00015{left:465.012920pt;}
.x1c_c00015{left:474.798520pt;}
.x31_c00015{left:483.884520pt;}
.x53_c00015{left:486.176920pt;}
.x41_c00015{left:493.868120pt;}
.x32_c00015{left:503.574520pt;}
.x4f_c00015{left:513.118120pt;}
.xf_c00015{left:514.130120pt;}
.x1d_c00015{left:522.199720pt;}
.x17_c00015{left:523.568120pt;}
.x42_c00015{left:532.332920pt;}
.x10_c00015{left:533.463720pt;}
.x45_c00015{left:534.400920pt;}
.x49_c00015{left:543.579320pt;}
.x50_c00015{left:545.766120pt;}
.x4d_c00015{left:552.867720pt;}
.x4_c00015{left:560.334520pt;}
.x23_c00015{left:562.252920pt;}
.x59_c00015{left:571.312520pt;}
.x1e_c00015{left:582.246520pt;}
.x33_c00015{left:592.546920pt;}
.x5c_c00015{left:599.001720pt;}
.x5_c00015{left:599.934520pt;}
.x6_c00015{left:601.126920pt;}
.x55_c00015{left:605.170520pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f22152f1b69dc6b4e448303b.woff2')format("woff");}.ff1_c00016{font-family:ff1_c00016;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00016;src:url('chunks/assets/font_ac2010727e97ea11094cfdde.woff2')format("woff");}.ff2_c00016{font-family:ff2_c00016;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m50_c00016{transform:matrix(0.222093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222093,0.000000,0.000000,0.250000,0,0);}
.m2b_c00016{transform:matrix(0.225922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225922,0.000000,0.000000,0.250000,0,0);}
.m85_c00016{transform:matrix(0.242070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242070,0.000000,0.000000,0.250000,0,0);}
.m0_c00016{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00016{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.m3d_c00016{transform:matrix(0.254845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254845,0.000000,0.000000,0.250000,0,0);}
.m81_c00016{transform:matrix(0.258289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258289,0.000000,0.000000,0.250000,0,0);}
.m1f_c00016{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.ma6_c00016{transform:matrix(0.260841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260841,0.000000,0.000000,0.250000,0,0);}
.m47_c00016{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m1_c00016{transform:matrix(0.261307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261307,0.000000,0.000000,0.250000,0,0);}
.m37_c00016{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.m86_c00016{transform:matrix(0.261735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261735,0.000000,0.000000,0.250000,0,0);}
.m29_c00016{transform:matrix(0.262041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262041,0.000000,0.000000,0.250000,0,0);}
.m10_c00016{transform:matrix(0.262205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262205,0.000000,0.000000,0.250000,0,0);}
.m6b_c00016{transform:matrix(0.262539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262539,0.000000,0.000000,0.250000,0,0);}
.m9c_c00016{transform:matrix(0.262939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262939,0.000000,0.000000,0.250000,0,0);}
.m9e_c00016{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.m54_c00016{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.mc_c00016{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m22_c00016{transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);}
.m41_c00016{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m48_c00016{transform:matrix(0.266343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266343,0.000000,0.000000,0.250000,0,0);}
.m56_c00016{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m2e_c00016{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.m32_c00016{transform:matrix(0.268736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268736,0.000000,0.000000,0.250000,0,0);}
.m87_c00016{transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);}
.m90_c00016{transform:matrix(0.269555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269555,0.000000,0.000000,0.250000,0,0);}
.m76_c00016{transform:matrix(0.269857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269857,0.000000,0.000000,0.250000,0,0);}
.m42_c00016{transform:matrix(0.270439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270439,0.000000,0.000000,0.250000,0,0);}
.m1a_c00016{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.me_c00016{transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);}
.m38_c00016{transform:matrix(0.271922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271922,0.000000,0.000000,0.250000,0,0);}
.m3a_c00016{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m9f_c00016{transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);}
.m62_c00016{transform:matrix(0.275124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275124,0.000000,0.000000,0.250000,0,0);}
.m97_c00016{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m8f_c00016{transform:matrix(0.276042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276042,0.000000,0.000000,0.250000,0,0);}
.m75_c00016{transform:matrix(0.276320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276320,0.000000,0.000000,0.250000,0,0);}
.m1c_c00016{transform:matrix(0.276751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276751,0.000000,0.000000,0.250000,0,0);}
.m17_c00016{transform:matrix(0.276801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276801,0.000000,0.000000,0.250000,0,0);}
.m58_c00016{transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);}
.m78_c00016{transform:matrix(0.277367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277367,0.000000,0.000000,0.250000,0,0);}
.m8e_c00016{transform:matrix(0.277433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277433,0.000000,0.000000,0.250000,0,0);}
.m5b_c00016{transform:matrix(0.278331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278331,0.000000,0.000000,0.250000,0,0);}
.m9d_c00016{transform:matrix(0.278888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278888,0.000000,0.000000,0.250000,0,0);}
.m65_c00016{transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);}
.m2d_c00016{transform:matrix(0.279653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279653,0.000000,0.000000,0.250000,0,0);}
.m20_c00016{transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);}
.m91_c00016{transform:matrix(0.280329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280329,0.000000,0.000000,0.250000,0,0);}
.m1b_c00016{transform:matrix(0.281190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281190,0.000000,0.000000,0.250000,0,0);}
.m72_c00016{transform:matrix(0.281304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281304,0.000000,0.000000,0.250000,0,0);}
.ma1_c00016{transform:matrix(0.281578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281578,0.000000,0.000000,0.250000,0,0);}
.m93_c00016{transform:matrix(0.282564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282564,0.000000,0.000000,0.250000,0,0);}
.m2_c00016{transform:matrix(0.283454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283454,0.000000,0.000000,0.250000,0,0);}
.ma7_c00016{transform:matrix(0.284756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284756,0.000000,0.000000,0.250000,0,0);}
.m9a_c00016{transform:matrix(0.284924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284924,0.000000,0.000000,0.250000,0,0);}
.m40_c00016{transform:matrix(0.285021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285021,0.000000,0.000000,0.250000,0,0);}
.m30_c00016{transform:matrix(0.285273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285273,0.000000,0.000000,0.250000,0,0);}
.m5c_c00016{transform:matrix(0.286537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286537,0.000000,0.000000,0.250000,0,0);}
.m98_c00016{transform:matrix(0.287440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287440,0.000000,0.000000,0.250000,0,0);}
.m4_c00016{transform:matrix(0.287640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287640,0.000000,0.000000,0.250000,0,0);}
.m7_c00016{transform:matrix(0.287792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287792,0.000000,0.000000,0.250000,0,0);}
.m3b_c00016{transform:matrix(0.287958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287958,0.000000,0.000000,0.250000,0,0);}
.m69_c00016{transform:matrix(0.288432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288432,0.000000,0.000000,0.250000,0,0);}
.m61_c00016{transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);}
.m66_c00016{transform:matrix(0.288699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288699,0.000000,0.000000,0.250000,0,0);}
.m19_c00016{transform:matrix(0.289504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289504,0.000000,0.000000,0.250000,0,0);}
.m46_c00016{transform:matrix(0.290414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290414,0.000000,0.000000,0.250000,0,0);}
.m5_c00016{transform:matrix(0.290775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290775,0.000000,0.000000,0.250000,0,0);}
.m15_c00016{transform:matrix(0.291121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291121,0.000000,0.000000,0.250000,0,0);}
.m3_c00016{transform:matrix(0.291407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291407,0.000000,0.000000,0.250000,0,0);}
.m96_c00016{transform:matrix(0.292156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292156,0.000000,0.000000,0.250000,0,0);}
.m4f_c00016{transform:matrix(0.292262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292262,0.000000,0.000000,0.250000,0,0);}
.m94_c00016{transform:matrix(0.292499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292499,0.000000,0.000000,0.250000,0,0);}
.m82_c00016{transform:matrix(0.293066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293066,0.000000,0.000000,0.250000,0,0);}
.m14_c00016{transform:matrix(0.293295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293295,0.000000,0.000000,0.250000,0,0);}
.m51_c00016{transform:matrix(0.293647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293647,0.000000,0.000000,0.250000,0,0);}
.m2c_c00016{transform:matrix(0.293761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293761,0.000000,0.000000,0.250000,0,0);}
.m74_c00016{transform:matrix(0.293789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293789,0.000000,0.000000,0.250000,0,0);}
.m8_c00016{transform:matrix(0.294189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294189,0.000000,0.000000,0.250000,0,0);}
.m84_c00016{transform:matrix(0.295205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295205,0.000000,0.000000,0.250000,0,0);}
.m13_c00016{transform:matrix(0.295727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295727,0.000000,0.000000,0.250000,0,0);}
.m25_c00016{transform:matrix(0.296443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296443,0.000000,0.000000,0.250000,0,0);}
.m2a_c00016{transform:matrix(0.296859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296859,0.000000,0.000000,0.250000,0,0);}
.m9_c00016{transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);}
.m83_c00016{transform:matrix(0.297115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297115,0.000000,0.000000,0.250000,0,0);}
.m8d_c00016{transform:matrix(0.299798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299798,0.000000,0.000000,0.250000,0,0);}
.m71_c00016{transform:matrix(0.300052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300052,0.000000,0.000000,0.250000,0,0);}
.m27_c00016{transform:matrix(0.300258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300258,0.000000,0.000000,0.250000,0,0);}
.m8c_c00016{transform:matrix(0.300970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300970,0.000000,0.000000,0.250000,0,0);}
.m77_c00016{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m60_c00016{transform:matrix(0.302619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302619,0.000000,0.000000,0.250000,0,0);}
.m99_c00016{transform:matrix(0.303439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303439,0.000000,0.000000,0.250000,0,0);}
.m11_c00016{transform:matrix(0.304419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304419,0.000000,0.000000,0.250000,0,0);}
.m16_c00016{transform:matrix(0.304800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304800,0.000000,0.000000,0.250000,0,0);}
.m9b_c00016{transform:matrix(0.304894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304894,0.000000,0.000000,0.250000,0,0);}
.m8a_c00016{transform:matrix(0.305461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305461,0.000000,0.000000,0.250000,0,0);}
.m4e_c00016{transform:matrix(0.306396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306396,0.000000,0.000000,0.250000,0,0);}
.m7c_c00016{transform:matrix(0.306783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306783,0.000000,0.000000,0.250000,0,0);}
.m21_c00016{transform:matrix(0.307176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307176,0.000000,0.000000,0.250000,0,0);}
.m8b_c00016{transform:matrix(0.307549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307549,0.000000,0.000000,0.250000,0,0);}
.m5a_c00016{transform:matrix(0.307705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307705,0.000000,0.000000,0.250000,0,0);}
.m23_c00016{transform:matrix(0.308140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308140,0.000000,0.000000,0.250000,0,0);}
.m53_c00016{transform:matrix(0.308436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308436,0.000000,0.000000,0.250000,0,0);}
.m1d_c00016{transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);}
.md_c00016{transform:matrix(0.309101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309101,0.000000,0.000000,0.250000,0,0);}
.ma0_c00016{transform:matrix(0.311048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311048,0.000000,0.000000,0.250000,0,0);}
.m6_c00016{transform:matrix(0.311211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311211,0.000000,0.000000,0.250000,0,0);}
.m1e_c00016{transform:matrix(0.311865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311865,0.000000,0.000000,0.250000,0,0);}
.mf_c00016{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.m26_c00016{transform:matrix(0.312852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312852,0.000000,0.000000,0.250000,0,0);}
.m6d_c00016{transform:matrix(0.313301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313301,0.000000,0.000000,0.250000,0,0);}
.m45_c00016{transform:matrix(0.313416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313416,0.000000,0.000000,0.250000,0,0);}
.m4d_c00016{transform:matrix(0.313626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313626,0.000000,0.000000,0.250000,0,0);}
.m95_c00016{transform:matrix(0.313920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313920,0.000000,0.000000,0.250000,0,0);}
.m2f_c00016{transform:matrix(0.314699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314699,0.000000,0.000000,0.250000,0,0);}
.m39_c00016{transform:matrix(0.314717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314717,0.000000,0.000000,0.250000,0,0);}
.m6c_c00016{transform:matrix(0.314788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314788,0.000000,0.000000,0.250000,0,0);}
.m6f_c00016{transform:matrix(0.315645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315645,0.000000,0.000000,0.250000,0,0);}
.m24_c00016{transform:matrix(0.316242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316242,0.000000,0.000000,0.250000,0,0);}
.m34_c00016{transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);}
.m5d_c00016{transform:matrix(0.316543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316543,0.000000,0.000000,0.250000,0,0);}
.m68_c00016{transform:matrix(0.317236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317236,0.000000,0.000000,0.250000,0,0);}
.m73_c00016{transform:matrix(0.317415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317415,0.000000,0.000000,0.250000,0,0);}
.m52_c00016{transform:matrix(0.317707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317707,0.000000,0.000000,0.250000,0,0);}
.m18_c00016{transform:matrix(0.317979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317979,0.000000,0.000000,0.250000,0,0);}
.m6e_c00016{transform:matrix(0.318696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318696,0.000000,0.000000,0.250000,0,0);}
.m31_c00016{transform:matrix(0.318994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318994,0.000000,0.000000,0.250000,0,0);}
.m4c_c00016{transform:matrix(0.319272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319272,0.000000,0.000000,0.250000,0,0);}
.m6a_c00016{transform:matrix(0.319874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319874,0.000000,0.000000,0.250000,0,0);}
.m49_c00016{transform:matrix(0.323247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323247,0.000000,0.000000,0.250000,0,0);}
.m33_c00016{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.m55_c00016{transform:matrix(0.323763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323763,0.000000,0.000000,0.250000,0,0);}
.ma5_c00016{transform:matrix(0.323918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323918,0.000000,0.000000,0.250000,0,0);}
.m59_c00016{transform:matrix(0.324044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324044,0.000000,0.000000,0.250000,0,0);}
.m7f_c00016{transform:matrix(0.325172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325172,0.000000,0.000000,0.250000,0,0);}
.m88_c00016{transform:matrix(0.325378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325378,0.000000,0.000000,0.250000,0,0);}
.m44_c00016{transform:matrix(0.325583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325583,0.000000,0.000000,0.250000,0,0);}
.m43_c00016{transform:matrix(0.326063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326063,0.000000,0.000000,0.250000,0,0);}
.m36_c00016{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m28_c00016{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.m4b_c00016{transform:matrix(0.328208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328208,0.000000,0.000000,0.250000,0,0);}
.m79_c00016{transform:matrix(0.329612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329612,0.000000,0.000000,0.250000,0,0);}
.m12_c00016{transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);}
.m67_c00016{transform:matrix(0.332340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332340,0.000000,0.000000,0.250000,0,0);}
.m80_c00016{transform:matrix(0.333645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333645,0.000000,0.000000,0.250000,0,0);}
.m57_c00016{transform:matrix(0.334616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334616,0.000000,0.000000,0.250000,0,0);}
.m89_c00016{transform:matrix(0.335078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335078,0.000000,0.000000,0.250000,0,0);}
.m63_c00016{transform:matrix(0.335345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335345,0.000000,0.000000,0.250000,0,0);}
.m3e_c00016{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m92_c00016{transform:matrix(0.339340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339340,0.000000,0.000000,0.250000,0,0);}
.m7d_c00016{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.m7e_c00016{transform:matrix(0.344477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344477,0.000000,0.000000,0.250000,0,0);}
.ma_c00016{transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);}
.m5e_c00016{transform:matrix(0.345715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345715,0.000000,0.000000,0.250000,0,0);}
.m70_c00016{transform:matrix(0.352789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352789,0.000000,0.000000,0.250000,0,0);}
.ma2_c00016{transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);}
.m5f_c00016{transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);}
.m4a_c00016{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m7b_c00016{transform:matrix(0.358842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358842,0.000000,0.000000,0.250000,0,0);}
.ma3_c00016{transform:matrix(0.359210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359210,0.000000,0.000000,0.250000,0,0);}
.ma4_c00016{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m7a_c00016{transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);}
.m64_c00016{transform:matrix(0.368506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368506,0.000000,0.000000,0.250000,0,0);}
.m35_c00016{transform:matrix(0.370345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370345,0.000000,0.000000,0.250000,0,0);}
.m3f_c00016{transform:matrix(0.377981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377981,0.000000,0.000000,0.250000,0,0);}
.mb_c00016{transform:matrix(0.408030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408030,0.000000,0.000000,0.250000,0,0);}
.v0_c00016{vertical-align:0.000000px;}
.v1_c00016{vertical-align:5.702400px;}
.lsa_c00016{letter-spacing:-3.104640px;}
.ls8_c00016{letter-spacing:-2.744280px;}
.ls9_c00016{letter-spacing:-1.897474px;}
.ls6_c00016{letter-spacing:-1.568160px;}
.ls3_c00016{letter-spacing:0.000000px;}
.lsb_c00016{letter-spacing:0.987941px;}
.ls7_c00016{letter-spacing:1.732500px;}
.ls1_c00016{letter-spacing:1.897474px;}
.lsc_c00016{letter-spacing:3.206887px;}
.ls5_c00016{letter-spacing:3.920400px;}
.ls4_c00016{letter-spacing:4.356000px;}
.ls2_c00016{letter-spacing:12.355101px;}
.ls0_c00016{letter-spacing:23.208768px;}
.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:-19.602000px;}
.ws1_c00016{word-spacing:0.000000px;}
._4_c00016{width:6.507864px;}
._2_c00016{width:7.606368px;}
._3_c00016{width:11.918808px;}
._1_c00016{width:29.655965px;}
._0_c00016{width:31.719600px;}
._5_c00016{width:49.678200px;}
.fc0_c00016{color:transparent;}
.fsa_c00016{font-size:22.176000px;}
.fs7_c00016{font-size:25.146000px;}
.fs0_c00016{font-size:27.720000px;}
.fs4_c00016{font-size:34.650000px;}
.fs2_c00016{font-size:50.688000px;}
.fs9_c00016{font-size:53.856198px;}
.fs5_c00016{font-size:64.548000px;}
.fs6_c00016{font-size:74.844000px;}
.fs3_c00016{font-size:78.408000px;}
.fs1_c00016{font-size:87.120000px;}
.fs8_c00016{font-size:88.704000px;}
.y0_c00016{bottom:0.000000px;}
.y1_c00016{bottom:76.500000px;}
.y2_c00016{bottom:94.001520px;}
.y1e_c00016{bottom:138.551520px;}
.y1d_c00016{bottom:169.558320px;}
.y1c_c00016{bottom:236.561520px;}
.y1b_c00016{bottom:249.391920px;}
.y1a_c00016{bottom:268.993920px;}
.y19_c00016{bottom:301.782720px;}
.y18_c00016{bottom:334.571520px;}
.y17_c00016{bottom:352.747920px;}
.y16_c00016{bottom:367.716720px;}
.y15_c00016{bottom:401.931120px;}
.y14_c00016{bottom:434.002170px;}
.y13_c00016{bottom:466.439520px;}
.y12_c00016{bottom:498.866970px;}
.y11_c00016{bottom:531.304320px;}
.y10_c00016{bottom:595.094970px;}
.yf_c00016{bottom:628.601520px;}
.ye_c00016{bottom:661.033920px;}
.yd_c00016{bottom:693.466320px;}
.yc_c00016{bottom:726.962970px;}
.yb_c00016{bottom:760.113120px;}
.ya_c00016{bottom:792.540570px;}
.y9_c00016{bottom:825.334320px;}
.y8_c00016{bottom:858.123120px;}
.y6_c00016{bottom:890.550570px;}
.y7_c00016{bottom:895.545120px;}
.y5_c00016{bottom:923.344320px;}
.y4_c00016{bottom:1081.937370px;}
.y3_c00016{bottom:1089.778170px;}
.hc_c00016{height:23.128875px;}
.h9_c00016{height:26.226492px;}
.h2_c00016{height:28.911094px;}
.h6_c00016{height:36.138867px;}
.h4_c00016{height:52.866000px;}
.h7_c00016{height:67.321547px;}
.h8_c00016{height:73.455293px;}
.h5_c00016{height:76.953164px;}
.hb_c00016{height:82.655564px;}
.h3_c00016{height:85.503516px;}
.ha_c00016{height:87.058125px;}
.h1_c00016{height:1110.000000px;}
.h0_c00016{height:1263.000000px;}
.w1_c00016{width:718.500000px;}
.w0_c00016{width:892.500000px;}
.x0_c00016{left:0.000000px;}
.x2_c00016{left:26.798085px;}
.x44_c00016{left:62.542035px;}
.x2f_c00016{left:63.730035px;}
.x22_c00016{left:65.170485px;}
.x1b_c00016{left:66.502035px;}
.x5_c00016{left:69.051285px;}
.x28_c00016{left:85.831785px;}
.x1_c00016{left:87.000000px;}
.x1c_c00016{left:95.999085px;}
.x47_c00016{left:99.681885px;}
.x45_c00016{left:108.265185px;}
.xe_c00016{left:109.680885px;}
.x4_c00016{left:114.269535px;}
.x40_c00016{left:118.214685px;}
.x39_c00016{left:119.699685px;}
.x3b_c00016{left:129.124485px;}
.x6_c00016{left:130.287735px;}
.x30_c00016{left:140.563935px;}
.x15_c00016{left:150.523335px;}
.xf_c00016{left:151.800435px;}
.x4a_c00016{left:162.734985px;}
.x31_c00016{left:173.832885px;}
.x23_c00016{left:183.361635px;}
.x5f_c00016{left:185.450535px;}
.x52_c00016{left:195.791085px;}
.x7_c00016{left:197.028585px;}
.x41_c00016{left:207.562185px;}
.x32_c00016{left:218.808585px;}
.x29_c00016{left:228.347235px;}
.x3c_c00016{left:229.792635px;}
.x16_c00016{left:240.504435px;}
.x3a_c00016{left:252.250785px;}
.x2a_c00016{left:262.601235px;}
.x57_c00016{left:264.690135px;}
.x33_c00016{left:272.773485px;}
.x4e_c00016{left:274.352535px;}
.x8_c00016{left:284.965335px;}
.x56_c00016{left:286.846335px;}
.x3d_c00016{left:296.434485px;}
.x53_c00016{left:297.874935px;}
.x10_c00016{left:307.888785px;}
.x38_c00016{left:318.234285px;}
.x60_c00016{left:319.575735px;}
.x2b_c00016{left:329.079735px;}
.x4b_c00016{left:331.030035px;}
.x1d_c00016{left:341.053785px;}
.x11_c00016{left:351.725985px;}
.x17_c00016{left:353.691135px;}
.x24_c00016{left:362.947635px;}
.x1e_c00016{left:372.610035px;}
.x34_c00016{left:374.174235px;}
.x9_c00016{left:385.534485px;}
.x12_c00016{left:395.578035px;}
.x58_c00016{left:396.949185px;}
.x54_c00016{left:408.735135px;}
.x1f_c00016{left:417.105585px;}
.x35_c00016{left:418.694535px;}
.x5c_c00016{left:419.778585px;}
.x18_c00016{left:429.742935px;}
.x2c_c00016{left:440.459685px;}
.x55_c00016{left:441.509085px;}
.xa_c00016{left:451.047735px;}
.x5d_c00016{left:452.557485px;}
.x48_c00016{left:463.967235px;}
.x20_c00016{left:474.688935px;}
.x2d_c00016{left:485.014635px;}
.x4c_c00016{left:486.410535px;}
.x36_c00016{left:495.671985px;}
.x4f_c00016{left:496.760985px;}
.x25_c00016{left:507.121335px;}
.x3e_c00016{left:516.595635px;}
.x13_c00016{left:518.174685px;}
.x19_c00016{left:528.876585px;}
.x50_c00016{left:529.906185px;}
.x42_c00016{left:539.915085px;}
.x49_c00016{left:540.919935px;}
.xb_c00016{left:549.740835px;}
.x26_c00016{left:551.300085px;}
.x3f_c00016{left:561.823785px;}
.x59_c00016{left:563.086035px;}
.x43_c00016{left:573.575085px;}
.x4d_c00016{left:583.242435px;}
.x37_c00016{left:585.177885px;}
.x27_c00016{left:594.602685px;}
.x61_c00016{left:596.572785px;}
.x5a_c00016{left:606.373785px;}
.x1a_c00016{left:607.606335px;}
.x14_c00016{left:617.387535px;}
.xc_c00016{left:628.178535px;}
.x21_c00016{left:629.326935px;}
.x3_c00016{left:639.642735px;}
.x5b_c00016{left:641.048535px;}
.x2e_c00016{left:651.379185px;}
.x46_c00016{left:660.878235px;}
.x62_c00016{left:662.689935px;}
.xd_c00016{left:673.832385px;}
.x5e_c00016{left:674.960985px;}
.x51_c00016{left:679.302135px;}
@media print{
.v0_c00016{vertical-align:0.000000pt;}
.v1_c00016{vertical-align:5.068800pt;}
.lsa_c00016{letter-spacing:-2.759680pt;}
.ls8_c00016{letter-spacing:-2.439360pt;}
.ls9_c00016{letter-spacing:-1.686643pt;}
.ls6_c00016{letter-spacing:-1.393920pt;}
.ls3_c00016{letter-spacing:0.000000pt;}
.lsb_c00016{letter-spacing:0.878170pt;}
.ls7_c00016{letter-spacing:1.540000pt;}
.ls1_c00016{letter-spacing:1.686643pt;}
.lsc_c00016{letter-spacing:2.850566pt;}
.ls5_c00016{letter-spacing:3.484800pt;}
.ls4_c00016{letter-spacing:3.872000pt;}
.ls2_c00016{letter-spacing:10.982312pt;}
.ls0_c00016{letter-spacing:20.630016pt;}
.ws0_c00016{word-spacing:-17.424000pt;}
.ws1_c00016{word-spacing:0.000000pt;}
._4_c00016{width:5.784768pt;}
._2_c00016{width:6.761216pt;}
._3_c00016{width:10.594496pt;}
._1_c00016{width:26.360858pt;}
._0_c00016{width:28.195200pt;}
._5_c00016{width:44.158400pt;}
.fsa_c00016{font-size:19.712000pt;}
.fs7_c00016{font-size:22.352000pt;}
.fs0_c00016{font-size:24.640000pt;}
.fs4_c00016{font-size:30.800000pt;}
.fs2_c00016{font-size:45.056000pt;}
.fs9_c00016{font-size:47.872176pt;}
.fs5_c00016{font-size:57.376000pt;}
.fs6_c00016{font-size:66.528000pt;}
.fs3_c00016{font-size:69.696000pt;}
.fs1_c00016{font-size:77.440000pt;}
.fs8_c00016{font-size:78.848000pt;}
.y0_c00016{bottom:0.000000pt;}
.y1_c00016{bottom:68.000000pt;}
.y2_c00016{bottom:83.556907pt;}
.y1e_c00016{bottom:123.156907pt;}
.y1d_c00016{bottom:150.718507pt;}
.y1c_c00016{bottom:210.276907pt;}
.y1b_c00016{bottom:221.681707pt;}
.y1a_c00016{bottom:239.105707pt;}
.y19_c00016{bottom:268.251307pt;}
.y18_c00016{bottom:297.396907pt;}
.y17_c00016{bottom:313.553707pt;}
.y16_c00016{bottom:326.859307pt;}
.y15_c00016{bottom:357.272107pt;}
.y14_c00016{bottom:385.779707pt;}
.y13_c00016{bottom:414.612907pt;}
.y12_c00016{bottom:443.437307pt;}
.y11_c00016{bottom:472.270507pt;}
.y10_c00016{bottom:528.973307pt;}
.yf_c00016{bottom:558.756907pt;}
.ye_c00016{bottom:587.585707pt;}
.yd_c00016{bottom:616.414507pt;}
.yc_c00016{bottom:646.189307pt;}
.yb_c00016{bottom:675.656107pt;}
.ya_c00016{bottom:704.480507pt;}
.y9_c00016{bottom:733.630507pt;}
.y8_c00016{bottom:762.776107pt;}
.y6_c00016{bottom:791.600507pt;}
.y7_c00016{bottom:796.040107pt;}
.y5_c00016{bottom:820.750507pt;}
.y4_c00016{bottom:961.722107pt;}
.y3_c00016{bottom:968.691707pt;}
.hc_c00016{height:20.559000pt;}
.h9_c00016{height:23.312438pt;}
.h2_c00016{height:25.698750pt;}
.h6_c00016{height:32.123438pt;}
.h4_c00016{height:46.992000pt;}
.h7_c00016{height:59.841375pt;}
.h8_c00016{height:65.293594pt;}
.h5_c00016{height:68.402813pt;}
.hb_c00016{height:73.471612pt;}
.h3_c00016{height:76.003125pt;}
.ha_c00016{height:77.385000pt;}
.h1_c00016{height:986.666667pt;}
.h0_c00016{height:1122.666667pt;}
.w1_c00016{width:638.666667pt;}
.w0_c00016{width:793.333333pt;}
.x0_c00016{left:0.000000pt;}
.x2_c00016{left:23.820520pt;}
.x44_c00016{left:55.592920pt;}
.x2f_c00016{left:56.648920pt;}
.x22_c00016{left:57.929320pt;}
.x1b_c00016{left:59.112920pt;}
.x5_c00016{left:61.378920pt;}
.x28_c00016{left:76.294920pt;}
.x1_c00016{left:77.333333pt;}
.x1c_c00016{left:85.332520pt;}
.x47_c00016{left:88.606120pt;}
.x45_c00016{left:96.235720pt;}
.xe_c00016{left:97.494120pt;}
.x4_c00016{left:101.572920pt;}
.x40_c00016{left:105.079720pt;}
.x39_c00016{left:106.399720pt;}
.x3b_c00016{left:114.777320pt;}
.x6_c00016{left:115.811320pt;}
.x30_c00016{left:124.945720pt;}
.x15_c00016{left:133.798520pt;}
.xf_c00016{left:134.933720pt;}
.x4a_c00016{left:144.653320pt;}
.x31_c00016{left:154.518120pt;}
.x23_c00016{left:162.988120pt;}
.x5f_c00016{left:164.844920pt;}
.x52_c00016{left:174.036520pt;}
.x7_c00016{left:175.136520pt;}
.x41_c00016{left:184.499720pt;}
.x32_c00016{left:194.496520pt;}
.x29_c00016{left:202.975320pt;}
.x3c_c00016{left:204.260120pt;}
.x16_c00016{left:213.781720pt;}
.x3a_c00016{left:224.222920pt;}
.x2a_c00016{left:233.423320pt;}
.x57_c00016{left:235.280120pt;}
.x33_c00016{left:242.465320pt;}
.x4e_c00016{left:243.868920pt;}
.x8_c00016{left:253.302520pt;}
.x56_c00016{left:254.974520pt;}
.x3d_c00016{left:263.497320pt;}
.x53_c00016{left:264.777720pt;}
.x10_c00016{left:273.678920pt;}
.x38_c00016{left:282.874920pt;}
.x60_c00016{left:284.067320pt;}
.x2b_c00016{left:292.515320pt;}
.x4b_c00016{left:294.248920pt;}
.x1d_c00016{left:303.158920pt;}
.x11_c00016{left:312.645320pt;}
.x17_c00016{left:314.392120pt;}
.x24_c00016{left:322.620120pt;}
.x1e_c00016{left:331.208920pt;}
.x34_c00016{left:332.599320pt;}
.x9_c00016{left:342.697320pt;}
.x12_c00016{left:351.624920pt;}
.x58_c00016{left:352.843720pt;}
.x54_c00016{left:363.320120pt;}
.x1f_c00016{left:370.760520pt;}
.x35_c00016{left:372.172920pt;}
.x5c_c00016{left:373.136520pt;}
.x18_c00016{left:381.993720pt;}
.x2c_c00016{left:391.519720pt;}
.x55_c00016{left:392.452520pt;}
.xa_c00016{left:400.931320pt;}
.x5d_c00016{left:402.273320pt;}
.x48_c00016{left:412.415320pt;}
.x20_c00016{left:421.945720pt;}
.x2d_c00016{left:431.124120pt;}
.x4c_c00016{left:432.364920pt;}
.x36_c00016{left:440.597320pt;}
.x4f_c00016{left:441.565320pt;}
.x25_c00016{left:450.774520pt;}
.x3e_c00016{left:459.196120pt;}
.x13_c00016{left:460.599720pt;}
.x19_c00016{left:470.112520pt;}
.x50_c00016{left:471.027720pt;}
.x42_c00016{left:479.924520pt;}
.x49_c00016{left:480.817720pt;}
.xb_c00016{left:488.658520pt;}
.x26_c00016{left:490.044520pt;}
.x3f_c00016{left:499.398920pt;}
.x59_c00016{left:500.520920pt;}
.x43_c00016{left:509.844520pt;}
.x4d_c00016{left:518.437720pt;}
.x37_c00016{left:520.158120pt;}
.x27_c00016{left:528.535720pt;}
.x61_c00016{left:530.286920pt;}
.x5a_c00016{left:538.998920pt;}
.x1a_c00016{left:540.094520pt;}
.x14_c00016{left:548.788920pt;}
.xc_c00016{left:558.380920pt;}
.x21_c00016{left:559.401720pt;}
.x3_c00016{left:568.571320pt;}
.x5b_c00016{left:569.820920pt;}
.x2e_c00016{left:579.003720pt;}
.x46_c00016{left:587.447320pt;}
.x62_c00016{left:589.057720pt;}
.xd_c00016{left:598.962120pt;}
.x5e_c00016{left:599.965320pt;}
.x51_c00016{left:603.824120pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ac126775e0ea6974dcc89725.woff2')format("woff");}.ff1_c00017{font-family:ff1_c00017;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00017;src:url('chunks/assets/font_7088be5a3dddbfc6cd406949.woff2')format("woff");}.ff2_c00017{font-family:ff2_c00017;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00017;src:url('chunks/assets/font_0c55ed5348e34b046113b196.woff2')format("woff");}.ff3_c00017{font-family:ff3_c00017;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00017;src:url('chunks/assets/font_31edc2eca719a4af2721dd21.woff2')format("woff");}.ff4_c00017{font-family:ff4_c00017;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2e_c00017{transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);}
.m1_c00017{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00017{transform:matrix(0.250919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250919,0.000000,0.000000,0.250000,0,0);}
.m0_c00017{transform:matrix(0.253198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253198,0.000000,0.000000,0.250000,0,0);}
.m5_c00017{transform:matrix(0.253434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253434,0.000000,0.000000,0.250000,0,0);}
.m4f_c00017{transform:matrix(0.253513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253513,0.000000,0.000000,0.250000,0,0);}
.m5d_c00017{transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);}
.m42_c00017{transform:matrix(0.258853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258853,0.000000,0.000000,0.250000,0,0);}
.m31_c00017{transform:matrix(0.259153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259153,0.000000,0.000000,0.250000,0,0);}
.m28_c00017{transform:matrix(0.259820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259820,0.000000,0.000000,0.250000,0,0);}
.m73_c00017{transform:matrix(0.260667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260667,0.000000,0.000000,0.250000,0,0);}
.m2d_c00017{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m2_c00017{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.m4e_c00017{transform:matrix(0.263017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263017,0.000000,0.000000,0.250000,0,0);}
.m4a_c00017{transform:matrix(0.263527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263527,0.000000,0.000000,0.250000,0,0);}
.m3c_c00017{transform:matrix(0.265205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265205,0.000000,0.000000,0.250000,0,0);}
.m4_c00017{transform:matrix(0.265956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265956,0.000000,0.000000,0.250000,0,0);}
.m1e_c00017{transform:matrix(0.266197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266197,0.000000,0.000000,0.250000,0,0);}
.m2a_c00017{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m14_c00017{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.ma_c00017{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m72_c00017{transform:matrix(0.268705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268705,0.000000,0.000000,0.250000,0,0);}
.m45_c00017{transform:matrix(0.269234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269234,0.000000,0.000000,0.250000,0,0);}
.m5b_c00017{transform:matrix(0.269903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269903,0.000000,0.000000,0.250000,0,0);}
.m76_c00017{transform:matrix(0.270369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270369,0.000000,0.000000,0.250000,0,0);}
.m26_c00017{transform:matrix(0.271084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271084,0.000000,0.000000,0.250000,0,0);}
.m53_c00017{transform:matrix(0.271504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271504,0.000000,0.000000,0.250000,0,0);}
.m5f_c00017{transform:matrix(0.271807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271807,0.000000,0.000000,0.250000,0,0);}
.m37_c00017{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m61_c00017{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m6c_c00017{transform:matrix(0.277795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277795,0.000000,0.000000,0.250000,0,0);}
.m3b_c00017{transform:matrix(0.277907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277907,0.000000,0.000000,0.250000,0,0);}
.m25_c00017{transform:matrix(0.278108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278108,0.000000,0.000000,0.250000,0,0);}
.m30_c00017{transform:matrix(0.278676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278676,0.000000,0.000000,0.250000,0,0);}
.m13_c00017{transform:matrix(0.278691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278691,0.000000,0.000000,0.250000,0,0);}
.m29_c00017{transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);}
.m6a_c00017{transform:matrix(0.280224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280224,0.000000,0.000000,0.250000,0,0);}
.m1d_c00017{transform:matrix(0.280850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280850,0.000000,0.000000,0.250000,0,0);}
.m6d_c00017{transform:matrix(0.280961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280961,0.000000,0.000000,0.250000,0,0);}
.m35_c00017{transform:matrix(0.281571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281571,0.000000,0.000000,0.250000,0,0);}
.m69_c00017{transform:matrix(0.281665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281665,0.000000,0.000000,0.250000,0,0);}
.m66_c00017{transform:matrix(0.281785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281785,0.000000,0.000000,0.250000,0,0);}
.m40_c00017{transform:matrix(0.281839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281839,0.000000,0.000000,0.250000,0,0);}
.m3_c00017{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m2c_c00017{transform:matrix(0.286238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286238,0.000000,0.000000,0.250000,0,0);}
.m46_c00017{transform:matrix(0.286593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286593,0.000000,0.000000,0.250000,0,0);}
.m19_c00017{transform:matrix(0.287201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287201,0.000000,0.000000,0.250000,0,0);}
.m3e_c00017{transform:matrix(0.287554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287554,0.000000,0.000000,0.250000,0,0);}
.m9_c00017{transform:matrix(0.287664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287664,0.000000,0.000000,0.250000,0,0);}
.m3a_c00017{transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);}
.m65_c00017{transform:matrix(0.289790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289790,0.000000,0.000000,0.250000,0,0);}
.m4d_c00017{transform:matrix(0.290210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290210,0.000000,0.000000,0.250000,0,0);}
.m63_c00017{transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);}
.m36_c00017{transform:matrix(0.291549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291549,0.000000,0.000000,0.250000,0,0);}
.m2b_c00017{transform:matrix(0.292265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292265,0.000000,0.000000,0.250000,0,0);}
.m22_c00017{transform:matrix(0.292499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292499,0.000000,0.000000,0.250000,0,0);}
.m10_c00017{transform:matrix(0.292992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292992,0.000000,0.000000,0.250000,0,0);}
.m2f_c00017{transform:matrix(0.293515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293515,0.000000,0.000000,0.250000,0,0);}
.m74_c00017{transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);}
.m50_c00017{transform:matrix(0.295061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295061,0.000000,0.000000,0.250000,0,0);}
.m27_c00017{transform:matrix(0.295782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295782,0.000000,0.000000,0.250000,0,0);}
.m68_c00017{transform:matrix(0.296238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296238,0.000000,0.000000,0.250000,0,0);}
.m54_c00017{transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);}
.m17_c00017{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m6_c00017{transform:matrix(0.297258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297258,0.000000,0.000000,0.250000,0,0);}
.m6f_c00017{transform:matrix(0.298758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298758,0.000000,0.000000,0.250000,0,0);}
.md_c00017{transform:matrix(0.300052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300052,0.000000,0.000000,0.250000,0,0);}
.mc_c00017{transform:matrix(0.300227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300227,0.000000,0.000000,0.250000,0,0);}
.m67_c00017{transform:matrix(0.301429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301429,0.000000,0.000000,0.250000,0,0);}
.m62_c00017{transform:matrix(0.301475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301475,0.000000,0.000000,0.250000,0,0);}
.m4c_c00017{transform:matrix(0.304689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304689,0.000000,0.000000,0.250000,0,0);}
.m43_c00017{transform:matrix(0.304909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304909,0.000000,0.000000,0.250000,0,0);}
.m52_c00017{transform:matrix(0.305129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305129,0.000000,0.000000,0.250000,0,0);}
.m58_c00017{transform:matrix(0.307450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307450,0.000000,0.000000,0.250000,0,0);}
.m1f_c00017{transform:matrix(0.307919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307919,0.000000,0.000000,0.250000,0,0);}
.m64_c00017{transform:matrix(0.308186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308186,0.000000,0.000000,0.250000,0,0);}
.m11_c00017{transform:matrix(0.308470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308470,0.000000,0.000000,0.250000,0,0);}
.m57_c00017{transform:matrix(0.308816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308816,0.000000,0.000000,0.250000,0,0);}
.m41_c00017{transform:matrix(0.309064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309064,0.000000,0.000000,0.250000,0,0);}
.m47_c00017{transform:matrix(0.310112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310112,0.000000,0.000000,0.250000,0,0);}
.m34_c00017{transform:matrix(0.311501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311501,0.000000,0.000000,0.250000,0,0);}
.m59_c00017{transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);}
.m1b_c00017{transform:matrix(0.312456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312456,0.000000,0.000000,0.250000,0,0);}
.m55_c00017{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.m44_c00017{transform:matrix(0.313924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313924,0.000000,0.000000,0.250000,0,0);}
.m75_c00017{transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);}
.m16_c00017{transform:matrix(0.317181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317181,0.000000,0.000000,0.250000,0,0);}
.m18_c00017{transform:matrix(0.318361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318361,0.000000,0.000000,0.250000,0,0);}
.m4b_c00017{transform:matrix(0.319176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319176,0.000000,0.000000,0.250000,0,0);}
.m70_c00017{transform:matrix(0.319462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319462,0.000000,0.000000,0.250000,0,0);}
.m1a_c00017{transform:matrix(0.319808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319808,0.000000,0.000000,0.250000,0,0);}
.m21_c00017{transform:matrix(0.320127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320127,0.000000,0.000000,0.250000,0,0);}
.mf_c00017{transform:matrix(0.322448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322448,0.000000,0.000000,0.250000,0,0);}
.m51_c00017{transform:matrix(0.323602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323602,0.000000,0.000000,0.250000,0,0);}
.m39_c00017{transform:matrix(0.323918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323918,0.000000,0.000000,0.250000,0,0);}
.m60_c00017{transform:matrix(0.325025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325025,0.000000,0.000000,0.250000,0,0);}
.m12_c00017{transform:matrix(0.326627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326627,0.000000,0.000000,0.250000,0,0);}
.m8_c00017{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.m3d_c00017{transform:matrix(0.327605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327605,0.000000,0.000000,0.250000,0,0);}
.m6b_c00017{transform:matrix(0.328001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328001,0.000000,0.000000,0.250000,0,0);}
.m5e_c00017{transform:matrix(0.328208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328208,0.000000,0.000000,0.250000,0,0);}
.m49_c00017{transform:matrix(0.330354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330354,0.000000,0.000000,0.250000,0,0);}
.m71_c00017{transform:matrix(0.331699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331699,0.000000,0.000000,0.250000,0,0);}
.m1c_c00017{transform:matrix(0.332761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332761,0.000000,0.000000,0.250000,0,0);}
.me_c00017{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m56_c00017{transform:matrix(0.334836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334836,0.000000,0.000000,0.250000,0,0);}
.m33_c00017{transform:matrix(0.335544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335544,0.000000,0.000000,0.250000,0,0);}
.m15_c00017{transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);}
.m5c_c00017{transform:matrix(0.346722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346722,0.000000,0.000000,0.250000,0,0);}
.m6e_c00017{transform:matrix(0.349848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349848,0.000000,0.000000,0.250000,0,0);}
.m7_c00017{transform:matrix(0.350505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350505,0.000000,0.000000,0.250000,0,0);}
.mb_c00017{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m48_c00017{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m32_c00017{transform:matrix(0.362885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362885,0.000000,0.000000,0.250000,0,0);}
.m23_c00017{transform:matrix(0.363610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363610,0.000000,0.000000,0.250000,0,0);}
.m38_c00017{transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);}
.m3f_c00017{transform:matrix(0.372521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372521,0.000000,0.000000,0.250000,0,0);}
.m20_c00017{transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);}
.m24_c00017{transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);}
.m77_c00017{transform:matrix(0.644125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644125,0.000000,0.000000,0.250000,0,0);}
.m78_c00017{transform:matrix(2.968715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.968715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.968715,0.000000,0.000000,0.250000,0,0);}
.v1_c00017{vertical-align:-17.107200px;}
.v0_c00017{vertical-align:0.000000px;}
.ls8_c00017{letter-spacing:-2.744280px;}
.lsf_c00017{letter-spacing:-2.375762px;}
.lsc_c00017{letter-spacing:-1.897474px;}
.ls2_c00017{letter-spacing:0.000000px;}
.ls3_c00017{letter-spacing:0.141134px;}
.ls5_c00017{letter-spacing:0.635105px;}
.ls9_c00017{letter-spacing:0.772210px;}
.ls11_c00017{letter-spacing:0.910800px;}
.lsa_c00017{letter-spacing:1.246687px;}
.lse_c00017{letter-spacing:2.987345px;}
.ls0_c00017{letter-spacing:3.136320px;}
.ls7_c00017{letter-spacing:3.426430px;}
.ls10_c00017{letter-spacing:3.504610px;}
.lsb_c00017{letter-spacing:3.623400px;}
.ls6_c00017{letter-spacing:3.663000px;}
.lsd_c00017{letter-spacing:3.682810px;}
.ls4_c00017{letter-spacing:3.920400px;}
.ls1_c00017{letter-spacing:4.395610px;}
.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;}
._1_c00017{width:11.443113px;}
._0_c00017{width:151.074000px;}
.fc0_c00017{color:transparent;}
.fsd_c00017{font-size:5.544198px;}
.fs6_c00017{font-size:15.444198px;}
.fsf_c00017{font-size:18.216000px;}
.fsc_c00017{font-size:22.176000px;}
.fsb_c00017{font-size:22.572000px;}
.fs5_c00017{font-size:33.660000px;}
.fs1_c00017{font-size:38.808000px;}
.fse_c00017{font-size:70.092198px;}
.fs4_c00017{font-size:70.884000px;}
.fs7_c00017{font-size:72.468000px;}
.fs3_c00017{font-size:73.260000px;}
.fs9_c00017{font-size:73.656198px;}
.fs8_c00017{font-size:74.844000px;}
.fs2_c00017{font-size:78.408000px;}
.fsa_c00017{font-size:86.328000px;}
.fs0_c00017{font-size:87.912198px;}
.y1d_c00017{bottom:-1.879965px;}
.y0_c00017{bottom:0.000000px;}
.y1_c00017{bottom:76.500000px;}
.y1c_c00017{bottom:142.471935px;}
.y1b_c00017{bottom:173.473785px;}
.y1a_c00017{bottom:211.969935px;}
.y19_c00017{bottom:245.110185px;}
.y18_c00017{bottom:277.542585px;}
.y17_c00017{bottom:370.919385px;}
.y16_c00017{bottom:374.839785px;}
.y15_c00017{bottom:438.635385px;}
.y14_c00017{bottom:447.193935px;}
.y13_c00017{bottom:462.875535px;}
.y12_c00017{bottom:537.001785px;}
.y11_c00017{bottom:569.790585px;}
.y10_c00017{bottom:602.222985px;}
.yf_c00017{bottom:611.132985px;}
.ye_c00017{bottom:634.303935px;}
.yd_c00017{bottom:667.087785px;}
.yc_c00017{bottom:699.525135px;}
.yb_c00017{bottom:727.680735px;}
.ya_c00017{bottom:733.383135px;}
.y8_c00017{bottom:798.242985px;}
.y9_c00017{bottom:799.317135px;}
.y7_c00017{bottom:830.675385px;}
.y6_c00017{bottom:863.107785px;}
.y5_c00017{bottom:896.252985px;}
.y4_c00017{bottom:928.685385px;}
.y3_c00017{bottom:1012.444335px;}
.y2_c00017{bottom:1078.729785px;}
.hf_c00017{height:5.441327px;}
.h8_c00017{height:16.107816px;}
.h11_c00017{height:17.878008px;}
.he_c00017{height:23.541891px;}
.h7_c00017{height:33.035449px;}
.h3_c00017{height:40.475531px;}
.h10_c00017{height:68.791659px;}
.h6_c00017{height:69.568770px;}
.h9_c00017{height:71.123379px;}
.ha_c00017{height:73.455293px;}
.hb_c00017{height:74.231637px;}
.h5_c00017{height:76.407891px;}
.h4_c00017{height:76.953164px;}
.hc_c00017{height:79.020563px;}
.hd_c00017{height:84.726211px;}
.h2_c00017{height:86.281015px;}
.h1_c00017{height:1110.000000px;}
.h0_c00017{height:1263.000000px;}
.w1_c00017{width:718.500000px;}
.w0_c00017{width:892.500000px;}
.x0_c00017{left:0.000000px;}
.x45_c00017{left:62.576700px;}
.x38_c00017{left:63.754800px;}
.x23_c00017{left:65.715000px;}
.x4_c00017{left:68.412750px;}
.x1_c00017{left:87.000000px;}
.x3_c00017{left:93.756750px;}
.x24_c00017{left:107.601900px;}
.x5_c00017{left:109.364100px;}
.x50_c00017{left:113.373600px;}
.x2d_c00017{left:118.427550px;}
.x2b_c00017{left:129.683850px;}
.x6_c00017{left:140.989650px;}
.x11_c00017{left:151.315350px;}
.x4a_c00017{left:152.844900px;}
.x1b_c00017{left:162.843900px;}
.x2e_c00017{left:163.898250px;}
.x7_c00017{left:172.986450px;}
.x57_c00017{left:174.946650px;}
.x1c_c00017{left:184.752600px;}
.x12_c00017{left:197.335500px;}
.x51_c00017{left:207.695850px;}
.x8_c00017{left:217.892850px;}
.x55_c00017{left:219.437250px;}
.x13_c00017{left:229.371900px;}
.x4c_c00017{left:240.504450px;}
.x40_c00017{left:250.260900px;}
.x14_c00017{left:251.924100px;}
.x25_c00017{left:262.155750px;}
.x2f_c00017{left:263.670450px;}
.x9_c00017{left:272.506200px;}
.x1d_c00017{left:273.862500px;}
.x52_c00017{left:275.090100px;}
.x46_c00017{left:285.747450px;}
.x1e_c00017{left:296.122650px;}
.x30_c00017{left:297.543300px;}
.x15_c00017{left:306.636450px;}
.x3b_c00017{left:307.779900px;}
.x16_c00017{left:318.947100px;}
.xa_c00017{left:320.902350px;}
.x31_c00017{left:329.619300px;}
.x41_c00017{left:332.614050px;}
.x4e_c00017{left:333.985200px;}
.x3c_c00017{left:339.464850px;}
.x53_c00017{left:340.494450px;}
.x4d_c00017{left:343.815900px;}
.x26_c00017{left:351.300300px;}
.xb_c00017{left:361.962600px;}
.x56_c00017{left:363.799050px;}
.x32_c00017{left:372.501150px;}
.x3d_c00017{left:381.297300px;}
.x17_c00017{left:385.876050px;}
.x5b_c00017{left:395.464200px;}
.x54_c00017{left:403.978200px;}
.x1f_c00017{left:406.963050px;}
.x5c_c00017{left:408.042150px;}
.x36_c00017{left:414.977100px;}
.xc_c00017{left:418.362900px;}
.x27_c00017{left:429.020250px;}
.x37_c00017{left:437.103600px;}
.x3e_c00017{left:440.093400px;}
.x39_c00017{left:441.469500px;}
.x20_c00017{left:451.052700px;}
.x58_c00017{left:452.547600px;}
.xd_c00017{left:462.091200px;}
.x3a_c00017{left:473.590050px;}
.x33_c00017{left:484.658250px;}
.x47_c00017{left:495.716550px;}
.x18_c00017{left:505.859100px;}
.x28_c00017{left:517.417350px;}
.x5d_c00017{left:518.516250px;}
.x44_c00017{left:524.891850px;}
.xe_c00017{left:528.510300px;}
.x34_c00017{left:539.558700px;}
.x42_c00017{left:549.691350px;}
.x59_c00017{left:550.918950px;}
.xf_c00017{left:562.328700px;}
.x21_c00017{left:573.060300px;}
.x4b_c00017{left:584.455200px;}
.x48_c00017{left:593.578050px;}
.x10_c00017{left:595.840200px;}
.x19_c00017{left:606.205500px;}
.x22_c00017{left:617.793450px;}
.x3f_c00017{left:620.357550px;}
.x4f_c00017{left:626.238150px;}
.x29_c00017{left:628.302300px;}
.x2_c00017{left:638.578500px;}
.x43_c00017{left:639.687300px;}
.x35_c00017{left:649.849650px;}
.x1a_c00017{left:651.379200px;}
.x2a_c00017{left:661.749450px;}
.x2c_c00017{left:667.224150px;}
.x5a_c00017{left:673.530450px;}
.x5e_c00017{left:679.891200px;}
.x49_c00017{left:684.267000px;}
@media print{
.v1_c00017{vertical-align:-15.206400pt;}
.v0_c00017{vertical-align:0.000000pt;}
.ls8_c00017{letter-spacing:-2.439360pt;}
.lsf_c00017{letter-spacing:-2.111789pt;}
.lsc_c00017{letter-spacing:-1.686643pt;}
.ls2_c00017{letter-spacing:0.000000pt;}
.ls3_c00017{letter-spacing:0.125453pt;}
.ls5_c00017{letter-spacing:0.564538pt;}
.ls9_c00017{letter-spacing:0.686409pt;}
.ls11_c00017{letter-spacing:0.809600pt;}
.lsa_c00017{letter-spacing:1.108166pt;}
.lse_c00017{letter-spacing:2.655418pt;}
.ls0_c00017{letter-spacing:2.787840pt;}
.ls7_c00017{letter-spacing:3.045715pt;}
.ls10_c00017{letter-spacing:3.115209pt;}
.lsb_c00017{letter-spacing:3.220800pt;}
.ls6_c00017{letter-spacing:3.256000pt;}
.lsd_c00017{letter-spacing:3.273609pt;}
.ls4_c00017{letter-spacing:3.484800pt;}
.ls1_c00017{letter-spacing:3.907209pt;}
.ws0_c00017{word-spacing:0.000000pt;}
._1_c00017{width:10.171656pt;}
._0_c00017{width:134.288000pt;}
.fsd_c00017{font-size:4.928176pt;}
.fs6_c00017{font-size:13.728176pt;}
.fsf_c00017{font-size:16.192000pt;}
.fsc_c00017{font-size:19.712000pt;}
.fsb_c00017{font-size:20.064000pt;}
.fs5_c00017{font-size:29.920000pt;}
.fs1_c00017{font-size:34.496000pt;}
.fse_c00017{font-size:62.304176pt;}
.fs4_c00017{font-size:63.008000pt;}
.fs7_c00017{font-size:64.416000pt;}
.fs3_c00017{font-size:65.120000pt;}
.fs9_c00017{font-size:65.472176pt;}
.fs8_c00017{font-size:66.528000pt;}
.fs2_c00017{font-size:69.696000pt;}
.fsa_c00017{font-size:76.736000pt;}
.fs0_c00017{font-size:78.144176pt;}
.y1d_c00017{bottom:-1.671080pt;}
.y0_c00017{bottom:0.000000pt;}
.y1_c00017{bottom:68.000000pt;}
.y1c_c00017{bottom:126.641720pt;}
.y1b_c00017{bottom:154.198920pt;}
.y1a_c00017{bottom:188.417720pt;}
.y19_c00017{bottom:217.875720pt;}
.y18_c00017{bottom:246.704520pt;}
.y17_c00017{bottom:329.706120pt;}
.y16_c00017{bottom:333.190920pt;}
.y15_c00017{bottom:389.898120pt;}
.y14_c00017{bottom:397.505720pt;}
.y13_c00017{bottom:411.444920pt;}
.y12_c00017{bottom:477.334920pt;}
.y11_c00017{bottom:506.480520pt;}
.y10_c00017{bottom:535.309320pt;}
.yf_c00017{bottom:543.229320pt;}
.ye_c00017{bottom:563.825720pt;}
.yd_c00017{bottom:592.966920pt;}
.yc_c00017{bottom:621.800120pt;}
.yb_c00017{bottom:646.827320pt;}
.ya_c00017{bottom:651.896120pt;}
.y8_c00017{bottom:709.549320pt;}
.y9_c00017{bottom:710.504120pt;}
.y7_c00017{bottom:738.378120pt;}
.y6_c00017{bottom:767.206920pt;}
.y5_c00017{bottom:796.669320pt;}
.y4_c00017{bottom:825.498120pt;}
.y3_c00017{bottom:899.950520pt;}
.y2_c00017{bottom:958.870920pt;}
.hf_c00017{height:4.836735pt;}
.h8_c00017{height:14.318059pt;}
.h11_c00017{height:15.891563pt;}
.he_c00017{height:20.926125pt;}
.h7_c00017{height:29.364844pt;}
.h3_c00017{height:35.978250pt;}
.h10_c00017{height:61.148141pt;}
.h6_c00017{height:61.838906pt;}
.h9_c00017{height:63.220781pt;}
.ha_c00017{height:65.293594pt;}
.hb_c00017{height:65.983677pt;}
.h5_c00017{height:67.918125pt;}
.h4_c00017{height:68.402813pt;}
.hc_c00017{height:70.240500pt;}
.hd_c00017{height:75.312188pt;}
.h2_c00017{height:76.694235pt;}
.h1_c00017{height:986.666667pt;}
.h0_c00017{height:1122.666667pt;}
.w1_c00017{width:638.666667pt;}
.w0_c00017{width:793.333333pt;}
.x0_c00017{left:0.000000pt;}
.x45_c00017{left:55.623733pt;}
.x38_c00017{left:56.670933pt;}
.x23_c00017{left:58.413333pt;}
.x4_c00017{left:60.811333pt;}
.x1_c00017{left:77.333333pt;}
.x3_c00017{left:83.339333pt;}
.x24_c00017{left:95.646133pt;}
.x5_c00017{left:97.212533pt;}
.x50_c00017{left:100.776533pt;}
.x2d_c00017{left:105.268933pt;}
.x2b_c00017{left:115.274533pt;}
.x6_c00017{left:125.324133pt;}
.x11_c00017{left:134.502533pt;}
.x4a_c00017{left:135.862133pt;}
.x1b_c00017{left:144.750133pt;}
.x2e_c00017{left:145.687333pt;}
.x7_c00017{left:153.765733pt;}
.x57_c00017{left:155.508133pt;}
.x1c_c00017{left:164.224533pt;}
.x12_c00017{left:175.409333pt;}
.x51_c00017{left:184.618533pt;}
.x8_c00017{left:193.682533pt;}
.x55_c00017{left:195.055333pt;}
.x13_c00017{left:203.886133pt;}
.x4c_c00017{left:213.781733pt;}
.x40_c00017{left:222.454133pt;}
.x14_c00017{left:223.932533pt;}
.x25_c00017{left:233.027333pt;}
.x2f_c00017{left:234.373733pt;}
.x9_c00017{left:242.227733pt;}
.x1d_c00017{left:243.433333pt;}
.x52_c00017{left:244.524533pt;}
.x46_c00017{left:253.997733pt;}
.x1e_c00017{left:263.220133pt;}
.x30_c00017{left:264.482933pt;}
.x15_c00017{left:272.565733pt;}
.x3b_c00017{left:273.582133pt;}
.x16_c00017{left:283.508533pt;}
.xa_c00017{left:285.246533pt;}
.x31_c00017{left:292.994933pt;}
.x41_c00017{left:295.656933pt;}
.x4e_c00017{left:296.875733pt;}
.x3c_c00017{left:301.746533pt;}
.x53_c00017{left:302.661733pt;}
.x4d_c00017{left:305.614133pt;}
.x26_c00017{left:312.266933pt;}
.xb_c00017{left:321.744533pt;}
.x56_c00017{left:323.376933pt;}
.x32_c00017{left:331.112133pt;}
.x3d_c00017{left:338.930933pt;}
.x17_c00017{left:343.000933pt;}
.x5b_c00017{left:351.523733pt;}
.x54_c00017{left:359.091733pt;}
.x1f_c00017{left:361.744933pt;}
.x5c_c00017{left:362.704133pt;}
.x36_c00017{left:368.868533pt;}
.xc_c00017{left:371.878133pt;}
.x27_c00017{left:381.351333pt;}
.x37_c00017{left:388.536533pt;}
.x3e_c00017{left:391.194133pt;}
.x39_c00017{left:392.417333pt;}
.x20_c00017{left:400.935733pt;}
.x58_c00017{left:402.264533pt;}
.xd_c00017{left:410.747733pt;}
.x3a_c00017{left:420.968933pt;}
.x33_c00017{left:430.807333pt;}
.x47_c00017{left:440.636933pt;}
.x18_c00017{left:449.652533pt;}
.x28_c00017{left:459.926533pt;}
.x5d_c00017{left:460.903333pt;}
.x44_c00017{left:466.570533pt;}
.xe_c00017{left:469.786933pt;}
.x34_c00017{left:479.607733pt;}
.x42_c00017{left:488.614533pt;}
.x59_c00017{left:489.705733pt;}
.xf_c00017{left:499.847733pt;}
.x21_c00017{left:509.386933pt;}
.x4b_c00017{left:519.515733pt;}
.x48_c00017{left:527.624933pt;}
.x10_c00017{left:529.635733pt;}
.x19_c00017{left:538.849333pt;}
.x22_c00017{left:549.149733pt;}
.x3f_c00017{left:551.428933pt;}
.x4f_c00017{left:556.656133pt;}
.x29_c00017{left:558.490933pt;}
.x2_c00017{left:567.625333pt;}
.x43_c00017{left:568.610933pt;}
.x35_c00017{left:577.644133pt;}
.x1a_c00017{left:579.003733pt;}
.x2a_c00017{left:588.221733pt;}
.x2c_c00017{left:593.088133pt;}
.x5a_c00017{left:598.693733pt;}
.x5e_c00017{left:604.347733pt;}
.x49_c00017{left:608.237333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_71d699585a97a60e657b8622.woff2')format("woff");}.ff1_c00018{font-family:ff1_c00018;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00018;src:url('chunks/assets/font_dc59a30c009e774a4723ebad.woff2')format("woff");}.ff2_c00018{font-family:ff2_c00018;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00018;src:url('chunks/assets/font_66908470165e4552436d649f.woff2')format("woff");}.ff3_c00018{font-family:ff3_c00018;line-height:0.666000;font-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_c00018{transform:matrix(0.119048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119048,0.000000,0.000000,0.250000,0,0);}
.m8_c00018{transform:matrix(0.210938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210938,0.000000,0.000000,0.250000,0,0);}
.m28_c00018{transform:matrix(0.218264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218264,0.000000,0.000000,0.250000,0,0);}
.m7_c00018{transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);}
.m0_c00018{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00018{transform:matrix(0.250909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250909,0.000000,0.000000,0.250000,0,0);}
.m2a_c00018{transform:matrix(0.252169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252169,0.000000,0.000000,0.250000,0,0);}
.m4d_c00018{transform:matrix(0.255066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255066,0.000000,0.000000,0.250000,0,0);}
.m85_c00018{transform:matrix(0.255131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255131,0.000000,0.000000,0.250000,0,0);}
.m35_c00018{transform:matrix(0.255597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255597,0.000000,0.000000,0.250000,0,0);}
.m3_c00018{transform:matrix(0.255992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255992,0.000000,0.000000,0.250000,0,0);}
.m81_c00018{transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);}
.md_c00018{transform:matrix(0.257460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257460,0.000000,0.000000,0.250000,0,0);}
.m48_c00018{transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);}
.m65_c00018{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m9d_c00018{transform:matrix(0.258846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258846,0.000000,0.000000,0.250000,0,0);}
.m59_c00018{transform:matrix(0.258965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258965,0.000000,0.000000,0.250000,0,0);}
.ma0_c00018{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m73_c00018{transform:matrix(0.261106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261106,0.000000,0.000000,0.250000,0,0);}
.m13_c00018{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.m4c_c00018{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m45_c00018{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m97_c00018{transform:matrix(0.264220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264220,0.000000,0.000000,0.250000,0,0);}
.m3b_c00018{transform:matrix(0.264797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264797,0.000000,0.000000,0.250000,0,0);}
.m4a_c00018{transform:matrix(0.265986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265986,0.000000,0.000000,0.250000,0,0);}
.m92_c00018{transform:matrix(0.266079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266079,0.000000,0.000000,0.250000,0,0);}
.mb_c00018{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m6a_c00018{transform:matrix(0.266622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266622,0.000000,0.000000,0.250000,0,0);}
.m84_c00018{transform:matrix(0.266890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266890,0.000000,0.000000,0.250000,0,0);}
.m9a_c00018{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.m58_c00018{transform:matrix(0.267700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267700,0.000000,0.000000,0.250000,0,0);}
.m32_c00018{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m53_c00018{transform:matrix(0.269830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269830,0.000000,0.000000,0.250000,0,0);}
.m68_c00018{transform:matrix(0.269911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269911,0.000000,0.000000,0.250000,0,0);}
.m26_c00018{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m1d_c00018{transform:matrix(0.271097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271097,0.000000,0.000000,0.250000,0,0);}
.m3d_c00018{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m6d_c00018{transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);}
.m30_c00018{transform:matrix(0.273680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273680,0.000000,0.000000,0.250000,0,0);}
.m55_c00018{transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);}
.m29_c00018{transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);}
.m87_c00018{transform:matrix(0.274431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274431,0.000000,0.000000,0.250000,0,0);}
.m71_c00018{transform:matrix(0.274659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274659,0.000000,0.000000,0.250000,0,0);}
.m24_c00018{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m5b_c00018{transform:matrix(0.276906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276906,0.000000,0.000000,0.250000,0,0);}
.m3f_c00018{transform:matrix(0.277907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277907,0.000000,0.000000,0.250000,0,0);}
.m34_c00018{transform:matrix(0.278331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278331,0.000000,0.000000,0.250000,0,0);}
.m7c_c00018{transform:matrix(0.278753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278753,0.000000,0.000000,0.250000,0,0);}
.m60_c00018{transform:matrix(0.279076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279076,0.000000,0.000000,0.250000,0,0);}
.m4b_c00018{transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);}
.m69_c00018{transform:matrix(0.279748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279748,0.000000,0.000000,0.250000,0,0);}
.m2e_c00018{transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);}
.m96_c00018{transform:matrix(0.280163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280163,0.000000,0.000000,0.250000,0,0);}
.m8f_c00018{transform:matrix(0.280247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280247,0.000000,0.000000,0.250000,0,0);}
.m91_c00018{transform:matrix(0.280529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280529,0.000000,0.000000,0.250000,0,0);}
.m8d_c00018{transform:matrix(0.280628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280628,0.000000,0.000000,0.250000,0,0);}
.m62_c00018{transform:matrix(0.280634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280634,0.000000,0.000000,0.250000,0,0);}
.m1_c00018{transform:matrix(0.280664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280664,0.000000,0.000000,0.250000,0,0);}
.m4f_c00018{transform:matrix(0.280769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280769,0.000000,0.000000,0.250000,0,0);}
.m6b_c00018{transform:matrix(0.280946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280946,0.000000,0.000000,0.250000,0,0);}
.m17_c00018{transform:matrix(0.281503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281503,0.000000,0.000000,0.250000,0,0);}
.m9b_c00018{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.m7a_c00018{transform:matrix(0.282727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282727,0.000000,0.000000,0.250000,0,0);}
.m9f_c00018{transform:matrix(0.282857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282857,0.000000,0.000000,0.250000,0,0);}
.m14_c00018{transform:matrix(0.283189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283189,0.000000,0.000000,0.250000,0,0);}
.m6_c00018{transform:matrix(0.283518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283518,0.000000,0.000000,0.250000,0,0);}
.m6c_c00018{transform:matrix(0.283943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283943,0.000000,0.000000,0.250000,0,0);}
.me_c00018{transform:matrix(0.284351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284351,0.000000,0.000000,0.250000,0,0);}
.m36_c00018{transform:matrix(0.285324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285324,0.000000,0.000000,0.250000,0,0);}
.m38_c00018{transform:matrix(0.286711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286711,0.000000,0.000000,0.250000,0,0);}
.m1a_c00018{transform:matrix(0.287521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287521,0.000000,0.000000,0.250000,0,0);}
.m3e_c00018{transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);}
.m1f_c00018{transform:matrix(0.288806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288806,0.000000,0.000000,0.250000,0,0);}
.ma5_c00018{transform:matrix(0.289225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289225,0.000000,0.000000,0.250000,0,0);}
.m7b_c00018{transform:matrix(0.289570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289570,0.000000,0.000000,0.250000,0,0);}
.m52_c00018{transform:matrix(0.289956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289956,0.000000,0.000000,0.250000,0,0);}
.m3c_c00018{transform:matrix(0.290388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290388,0.000000,0.000000,0.250000,0,0);}
.m7d_c00018{transform:matrix(0.290586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290586,0.000000,0.000000,0.250000,0,0);}
.mc_c00018{transform:matrix(0.290937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290937,0.000000,0.000000,0.250000,0,0);}
.m61_c00018{transform:matrix(0.291065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291065,0.000000,0.000000,0.250000,0,0);}
.ma3_c00018{transform:matrix(0.291135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291135,0.000000,0.000000,0.250000,0,0);}
.m10_c00018{transform:matrix(0.291262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291262,0.000000,0.000000,0.250000,0,0);}
.m74_c00018{transform:matrix(0.291292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291292,0.000000,0.000000,0.250000,0,0);}
.m6e_c00018{transform:matrix(0.291917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291917,0.000000,0.000000,0.250000,0,0);}
.m8e_c00018{transform:matrix(0.292322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292322,0.000000,0.000000,0.250000,0,0);}
.m50_c00018{transform:matrix(0.292551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292551,0.000000,0.000000,0.250000,0,0);}
.m7f_c00018{transform:matrix(0.292830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292830,0.000000,0.000000,0.250000,0,0);}
.m43_c00018{transform:matrix(0.292961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292961,0.000000,0.000000,0.250000,0,0);}
.m66_c00018{transform:matrix(0.293205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293205,0.000000,0.000000,0.250000,0,0);}
.m80_c00018{transform:matrix(0.294374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294374,0.000000,0.000000,0.250000,0,0);}
.m5c_c00018{transform:matrix(0.294974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294974,0.000000,0.000000,0.250000,0,0);}
.m2b_c00018{transform:matrix(0.295662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295662,0.000000,0.000000,0.250000,0,0);}
.m99_c00018{transform:matrix(0.296237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296237,0.000000,0.000000,0.250000,0,0);}
.m22_c00018{transform:matrix(0.296790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296790,0.000000,0.000000,0.250000,0,0);}
.m49_c00018{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m78_c00018{transform:matrix(0.297417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297417,0.000000,0.000000,0.250000,0,0);}
.m1b_c00018{transform:matrix(0.297597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297597,0.000000,0.000000,0.250000,0,0);}
.m1e_c00018{transform:matrix(0.298101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298101,0.000000,0.000000,0.250000,0,0);}
.m9c_c00018{transform:matrix(0.298177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298177,0.000000,0.000000,0.250000,0,0);}
.m6f_c00018{transform:matrix(0.298340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298340,0.000000,0.000000,0.250000,0,0);}
.m21_c00018{transform:matrix(0.298586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298586,0.000000,0.000000,0.250000,0,0);}
.m2d_c00018{transform:matrix(0.298777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298777,0.000000,0.000000,0.250000,0,0);}
.m76_c00018{transform:matrix(0.299457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299457,0.000000,0.000000,0.250000,0,0);}
.m54_c00018{transform:matrix(0.299948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299948,0.000000,0.000000,0.250000,0,0);}
.m27_c00018{transform:matrix(0.301206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301206,0.000000,0.000000,0.250000,0,0);}
.m47_c00018{transform:matrix(0.302372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302372,0.000000,0.000000,0.250000,0,0);}
.m83_c00018{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m15_c00018{transform:matrix(0.302708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302708,0.000000,0.000000,0.250000,0,0);}
.m5e_c00018{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);}
.m23_c00018{transform:matrix(0.304535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304535,0.000000,0.000000,0.250000,0,0);}
.m93_c00018{transform:matrix(0.304665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304665,0.000000,0.000000,0.250000,0,0);}
.m77_c00018{transform:matrix(0.305098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305098,0.000000,0.000000,0.250000,0,0);}
.m42_c00018{transform:matrix(0.305434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305434,0.000000,0.000000,0.250000,0,0);}
.m89_c00018{transform:matrix(0.305608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305608,0.000000,0.000000,0.250000,0,0);}
.m41_c00018{transform:matrix(0.306829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306829,0.000000,0.000000,0.250000,0,0);}
.m94_c00018{transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);}
.m3a_c00018{transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);}
.m20_c00018{transform:matrix(0.308992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308992,0.000000,0.000000,0.250000,0,0);}
.m5_c00018{transform:matrix(0.309515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309515,0.000000,0.000000,0.250000,0,0);}
.m31_c00018{transform:matrix(0.309556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309556,0.000000,0.000000,0.250000,0,0);}
.m39_c00018{transform:matrix(0.310575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310575,0.000000,0.000000,0.250000,0,0);}
.ma4_c00018{transform:matrix(0.311658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311658,0.000000,0.000000,0.250000,0,0);}
.m9e_c00018{transform:matrix(0.311785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311785,0.000000,0.000000,0.250000,0,0);}
.mf_c00018{transform:matrix(0.312054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312054,0.000000,0.000000,0.250000,0,0);}
.m5f_c00018{transform:matrix(0.312105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312105,0.000000,0.000000,0.250000,0,0);}
.m19_c00018{transform:matrix(0.312878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312878,0.000000,0.000000,0.250000,0,0);}
.m37_c00018{transform:matrix(0.313068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313068,0.000000,0.000000,0.250000,0,0);}
.m7e_c00018{transform:matrix(0.313229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313229,0.000000,0.000000,0.250000,0,0);}
.m2c_c00018{transform:matrix(0.314182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314182,0.000000,0.000000,0.250000,0,0);}
.m88_c00018{transform:matrix(0.314199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314199,0.000000,0.000000,0.250000,0,0);}
.m86_c00018{transform:matrix(0.314943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314943,0.000000,0.000000,0.250000,0,0);}
.m4_c00018{transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);}
.m79_c00018{transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);}
.m25_c00018{transform:matrix(0.317085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317085,0.000000,0.000000,0.250000,0,0);}
.m5a_c00018{transform:matrix(0.317796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317796,0.000000,0.000000,0.250000,0,0);}
.m70_c00018{transform:matrix(0.318082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318082,0.000000,0.000000,0.250000,0,0);}
.m44_c00018{transform:matrix(0.319299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319299,0.000000,0.000000,0.250000,0,0);}
.m12_c00018{transform:matrix(0.321331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321331,0.000000,0.000000,0.250000,0,0);}
.ma_c00018{transform:matrix(0.321773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321773,0.000000,0.000000,0.250000,0,0);}
.m16_c00018{transform:matrix(0.322916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322916,0.000000,0.000000,0.250000,0,0);}
.m56_c00018{transform:matrix(0.323210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323210,0.000000,0.000000,0.250000,0,0);}
.m51_c00018{transform:matrix(0.323694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323694,0.000000,0.000000,0.250000,0,0);}
.m46_c00018{transform:matrix(0.323918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323918,0.000000,0.000000,0.250000,0,0);}
.m90_c00018{transform:matrix(0.324699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324699,0.000000,0.000000,0.250000,0,0);}
.m8c_c00018{transform:matrix(0.326100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326100,0.000000,0.000000,0.250000,0,0);}
.m5d_c00018{transform:matrix(0.326253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326253,0.000000,0.000000,0.250000,0,0);}
.m11_c00018{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.ma2_c00018{transform:matrix(0.329080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329080,0.000000,0.000000,0.250000,0,0);}
.m75_c00018{transform:matrix(0.329237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329237,0.000000,0.000000,0.250000,0,0);}
.m98_c00018{transform:matrix(0.329886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329886,0.000000,0.000000,0.250000,0,0);}
.m33_c00018{transform:matrix(0.333623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333623,0.000000,0.000000,0.250000,0,0);}
.m95_c00018{transform:matrix(0.334086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334086,0.000000,0.000000,0.250000,0,0);}
.m63_c00018{transform:matrix(0.334184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334184,0.000000,0.000000,0.250000,0,0);}
.m2f_c00018{transform:matrix(0.335935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335935,0.000000,0.000000,0.250000,0,0);}
.m64_c00018{transform:matrix(0.341963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341963,0.000000,0.000000,0.250000,0,0);}
.m18_c00018{transform:matrix(0.342408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342408,0.000000,0.000000,0.250000,0,0);}
.m72_c00018{transform:matrix(0.342633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342633,0.000000,0.000000,0.250000,0,0);}
.m4e_c00018{transform:matrix(0.343440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343440,0.000000,0.000000,0.250000,0,0);}
.m8b_c00018{transform:matrix(0.344477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344477,0.000000,0.000000,0.250000,0,0);}
.m9_c00018{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m82_c00018{transform:matrix(0.350741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350741,0.000000,0.000000,0.250000,0,0);}
.ma1_c00018{transform:matrix(0.354539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354539,0.000000,0.000000,0.250000,0,0);}
.m57_c00018{transform:matrix(0.354559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354559,0.000000,0.000000,0.250000,0,0);}
.m8a_c00018{transform:matrix(0.360052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360052,0.000000,0.000000,0.250000,0,0);}
.m67_c00018{transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);}
.m40_c00018{transform:matrix(0.376525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376525,0.000000,0.000000,0.250000,0,0);}
.v0_c00018{vertical-align:0.000000px;}
.v1_c00018{vertical-align:8.573400px;}
.ls4_c00018{letter-spacing:-2.744280px;}
.ls9_c00018{letter-spacing:-2.375762px;}
.lsa_c00018{letter-spacing:-2.054290px;}
.lse_c00018{letter-spacing:-2.022926px;}
.ls6_c00018{letter-spacing:-1.897474px;}
.lsb_c00018{letter-spacing:-1.772021px;}
.ls0_c00018{letter-spacing:0.000000px;}
.lsd_c00018{letter-spacing:0.227383px;}
.ls7_c00018{letter-spacing:1.246687px;}
.ls3_c00018{letter-spacing:3.276900px;}
.lsc_c00018{letter-spacing:3.326400px;}
.ls1_c00018{letter-spacing:3.920400px;}
.ls8_c00018{letter-spacing:4.474810px;}
.ls2_c00018{letter-spacing:29.937798px;}
.ls5_c00018{letter-spacing:51.321798px;}
.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:-19.602000px;}
.ws1_c00018{word-spacing:0.000000px;}
._2_c00018{margin-left:-12.076020px;}
._3_c00018{margin-left:-6.863472px;}
._1_c00018{width:5.332140px;}
._0_c00018{width:30.156192px;}
._4_c00018{width:40.525056px;}
.fc0_c00018{color:transparent;}
.fsa_c00018{font-size:22.572000px;}
.fs4_c00018{font-size:26.928000px;}
.fs0_c00018{font-size:28.314000px;}
.fs5_c00018{font-size:29.937798px;}
.fs1_c00018{font-size:43.758000px;}
.fs7_c00018{font-size:51.321798px;}
.fs9_c00018{font-size:64.548000px;}
.fs6_c00018{font-size:65.538000px;}
.fse_c00018{font-size:66.528000px;}
.fs3_c00018{font-size:67.320000px;}
.fsb_c00018{font-size:71.280000px;}
.fs8_c00018{font-size:73.260000px;}
.fsd_c00018{font-size:74.844000px;}
.fs2_c00018{font-size:78.408000px;}
.fsc_c00018{font-size:89.496198px;}
.y0_c00018{bottom:0.000000px;}
.y1_c00018{bottom:76.500000px;}
.y21_c00018{bottom:141.759135px;}
.y20_c00018{bottom:200.203785px;}
.y1f_c00018{bottom:209.470185px;}
.y1e_c00018{bottom:243.328185px;}
.y1d_c00018{bottom:276.829785px;}
.y1c_c00018{bottom:309.267135px;}
.y1b_c00018{bottom:343.125135px;}
.y1a_c00018{bottom:375.552585px;}
.y19_c00018{bottom:408.341385px;}
.y18_c00018{bottom:442.560735px;}
.y17_c00018{bottom:474.988185px;}
.y16_c00018{bottom:507.069135px;}
.y15_c00018{bottom:571.572585px;}
.y14_c00018{bottom:596.169135px;}
.y13_c00018{bottom:604.361385px;}
.y12_c00018{bottom:631.809135px;}
.y11_c00018{bottom:638.575785px;}
.y10_c00018{bottom:671.364585px;}
.yf_c00018{bottom:704.153385px;}
.ye_c00018{bottom:737.303535px;}
.yd_c00018{bottom:804.306735px;}
.yc_c00018{bottom:837.446985px;}
.yb_c00018{bottom:870.953535px;}
.ya_c00018{bottom:894.114585px;}
.y9_c00018{bottom:903.385935px;}
.y8_c00018{bottom:937.238985px;}
.y7_c00018{bottom:978.581385px;}
.y6_c00018{bottom:988.916985px;}
.y5_c00018{bottom:1002.103785px;}
.y3_c00018{bottom:1010.662335px;}
.y4_c00018{bottom:1087.283385px;}
.y2_c00018{bottom:1094.767785px;}
.h7_c00018{height:19.938573px;}
.hc_c00018{height:23.541891px;}
.h6_c00018{height:28.085063px;}
.h2_c00018{height:29.530617px;}
.h9_c00018{height:34.180317px;}
.h3_c00018{height:45.638227px;}
.h10_c00018{height:65.293594px;}
.h5_c00018{height:66.070898px;}
.hb_c00018{height:67.321547px;}
.h8_c00018{height:68.354086px;}
.hf_c00018{height:73.455293px;}
.hd_c00018{height:74.342813px;}
.h4_c00018{height:76.953164px;}
.ha_c00018{height:84.981291px;}
.he_c00018{height:87.835624px;}
.h1_c00018{height:1110.000000px;}
.h0_c00018{height:1263.000000px;}
.w1_c00018{width:775.500000px;}
.w0_c00018{width:892.500000px;}
.x0_c00018{left:0.000000px;}
.x1_c00018{left:58.500000px;}
.x65_c00018{left:101.872635px;}
.x36_c00018{left:103.105185px;}
.x11_c00018{left:105.149535px;}
.x1a_c00018{left:106.322685px;}
.x5c_c00018{left:107.703735px;}
.x4d_c00018{left:108.876885px;}
.x6a_c00018{left:126.691935px;}
.x46_c00018{left:135.636585px;}
.x1b_c00018{left:136.789935px;}
.x47_c00018{left:147.556185px;}
.x2f_c00018{left:156.515685px;}
.x40_c00018{left:157.584885px;}
.x7_c00018{left:158.901585px;}
.x52_c00018{left:159.906435px;}
.x3_c00018{left:161.262735px;}
.x5d_c00018{left:168.559035px;}
.x55_c00018{left:170.306385px;}
.x2_c00018{left:177.300735px;}
.x27_c00018{left:178.503585px;}
.x3b_c00018{left:179.612385px;}
.x12_c00018{left:180.825135px;}
.x30_c00018{left:190.779585px;}
.x8_c00018{left:192.170535px;}
.x1c_c00018{left:201.362685px;}
.x19_c00018{left:211.515135px;}
.x31_c00018{left:221.623035px;}
.x61_c00018{left:223.211985px;}
.x2b_c00018{left:234.616785px;}
.x9_c00018{left:245.130585px;}
.x4e_c00018{left:247.808535px;}
.x32_c00018{left:254.837535px;}
.x13_c00018{left:256.000785px;}
.x48_c00018{left:257.777835px;}
.x2c_c00018{left:266.682885px;}
.x58_c00018{left:269.197485px;}
.x67_c00018{left:276.865035px;}
.x1d_c00018{left:278.463885px;}
.x56_c00018{left:280.240935px;}
.x37_c00018{left:289.106385px;}
.x49_c00018{left:290.210235px;}
.x41_c00018{left:300.560685px;}
.x1e_c00018{left:311.579385px;}
.x53_c00018{left:312.678285px;}
.x28_c00018{left:320.385435px;}
.xa_c00018{left:322.301085px;}
.x4a_c00018{left:323.696985px;}
.x33_c00018{left:332.795085px;}
.x2d_c00018{left:334.057335px;}
.x59_c00018{left:335.126535px;}
.x14_c00018{left:344.224635px;}
.x62_c00018{left:345.412635px;}
.x5f_c00018{left:355.802685px;}
.x2e_c00018{left:366.034335px;}
.x29_c00018{left:367.524285px;}
.x42_c00018{left:377.800485px;}
.x68_c00018{left:387.388635px;}
.x4b_c00018{left:388.972635px;}
.x57_c00018{left:390.002235px;}
.x1f_c00018{left:399.669585px;}
.x4f_c00018{left:401.060535px;}
.x20_c00018{left:410.326935px;}
.x3c_c00018{left:421.533735px;}
.x34_c00018{left:431.225835px;}
.x21_c00018{left:443.670135px;}
.xb_c00018{left:453.639435px;}
.x38_c00018{left:455.243235px;}
.x69_c00018{left:456.317385px;}
.x2a_c00018{left:466.469835px;}
.x22_c00018{left:476.993535px;}
.x15_c00018{left:478.023135px;}
.xc_c00018{left:488.254785px;}
.x5a_c00018{left:499.817985px;}
.x66_c00018{left:510.712935px;}
.x43_c00018{left:521.870235px;}
.x5e_c00018{left:531.695985px;}
.x50_c00018{left:542.932485px;}
.x63_c00018{left:543.967035px;}
.x3d_c00018{left:553.980885px;}
.x44_c00018{left:555.000585px;}
.x39_c00018{left:565.593585px;}
.x35_c00018{left:575.523285px;}
.x16_c00018{left:576.790485px;}
.xd_c00018{left:587.482485px;}
.x17_c00018{left:598.511085px;}
.x23_c00018{left:601.540485px;}
.xe_c00018{left:609.544635px;}
.x3e_c00018{left:619.761435px;}
.x24_c00018{left:620.865285px;}
.x64_c00018{left:631.666185px;}
.x3a_c00018{left:632.755185px;}
.xf_c00018{left:642.318585px;}
.x18_c00018{left:643.724385px;}
.x5b_c00018{left:653.772885px;}
.x3f_c00018{left:664.687635px;}
.x51_c00018{left:667.588335px;}
.x4_c00018{left:675.097485px;}
.x54_c00018{left:676.884435px;}
.x25_c00018{left:685.636035px;}
.x60_c00018{left:687.135885px;}
.x4c_c00018{left:698.654535px;}
.x5_c00018{left:699.684135px;}
.x6_c00018{left:701.193885px;}
.x10_c00018{left:708.995085px;}
.x26_c00018{left:719.360385px;}
.x45_c00018{left:731.468085px;}
@media print{
.v0_c00018{vertical-align:0.000000pt;}
.v1_c00018{vertical-align:7.620800pt;}
.ls4_c00018{letter-spacing:-2.439360pt;}
.ls9_c00018{letter-spacing:-2.111789pt;}
.lsa_c00018{letter-spacing:-1.826035pt;}
.lse_c00018{letter-spacing:-1.798157pt;}
.ls6_c00018{letter-spacing:-1.686643pt;}
.lsb_c00018{letter-spacing:-1.575130pt;}
.ls0_c00018{letter-spacing:0.000000pt;}
.lsd_c00018{letter-spacing:0.202118pt;}
.ls7_c00018{letter-spacing:1.108166pt;}
.ls3_c00018{letter-spacing:2.912800pt;}
.lsc_c00018{letter-spacing:2.956800pt;}
.ls1_c00018{letter-spacing:3.484800pt;}
.ls8_c00018{letter-spacing:3.977609pt;}
.ls2_c00018{letter-spacing:26.611376pt;}
.ls5_c00018{letter-spacing:45.619376pt;}
.ws0_c00018{word-spacing:-17.424000pt;}
.ws1_c00018{word-spacing:0.000000pt;}
._2_c00018{margin-left:-10.734240pt;}
._3_c00018{margin-left:-6.100864pt;}
._1_c00018{width:4.739680pt;}
._0_c00018{width:26.805504pt;}
._4_c00018{width:36.022272pt;}
.fsa_c00018{font-size:20.064000pt;}
.fs4_c00018{font-size:23.936000pt;}
.fs0_c00018{font-size:25.168000pt;}
.fs5_c00018{font-size:26.611376pt;}
.fs1_c00018{font-size:38.896000pt;}
.fs7_c00018{font-size:45.619376pt;}
.fs9_c00018{font-size:57.376000pt;}
.fs6_c00018{font-size:58.256000pt;}
.fse_c00018{font-size:59.136000pt;}
.fs3_c00018{font-size:59.840000pt;}
.fsb_c00018{font-size:63.360000pt;}
.fs8_c00018{font-size:65.120000pt;}
.fsd_c00018{font-size:66.528000pt;}
.fs2_c00018{font-size:69.696000pt;}
.fsc_c00018{font-size:79.552176pt;}
.y0_c00018{bottom:0.000000pt;}
.y1_c00018{bottom:68.000000pt;}
.y21_c00018{bottom:126.008120pt;}
.y20_c00018{bottom:177.958920pt;}
.y1f_c00018{bottom:186.195720pt;}
.y1e_c00018{bottom:216.291720pt;}
.y1d_c00018{bottom:246.070920pt;}
.y1c_c00018{bottom:274.904120pt;}
.y1b_c00018{bottom:305.000120pt;}
.y1a_c00018{bottom:333.824520pt;}
.y19_c00018{bottom:362.970120pt;}
.y18_c00018{bottom:393.387320pt;}
.y17_c00018{bottom:422.211720pt;}
.y16_c00018{bottom:450.728120pt;}
.y15_c00018{bottom:508.064520pt;}
.y14_c00018{bottom:529.928120pt;}
.y13_c00018{bottom:537.210120pt;}
.y12_c00018{bottom:561.608120pt;}
.y11_c00018{bottom:567.622920pt;}
.y10_c00018{bottom:596.768520pt;}
.yf_c00018{bottom:625.914120pt;}
.ye_c00018{bottom:655.380920pt;}
.yd_c00018{bottom:714.939320pt;}
.yc_c00018{bottom:744.397320pt;}
.yb_c00018{bottom:774.180920pt;}
.ya_c00018{bottom:794.768520pt;}
.y9_c00018{bottom:803.009720pt;}
.y8_c00018{bottom:833.101320pt;}
.y7_c00018{bottom:869.850120pt;}
.y6_c00018{bottom:879.037320pt;}
.y5_c00018{bottom:890.758920pt;}
.y3_c00018{bottom:898.366520pt;}
.y4_c00018{bottom:966.474120pt;}
.y2_c00018{bottom:973.126920pt;}
.h7_c00018{height:17.723176pt;}
.hc_c00018{height:20.926125pt;}
.h6_c00018{height:24.964500pt;}
.h2_c00018{height:26.249438pt;}
.h9_c00018{height:30.382504pt;}
.h3_c00018{height:40.567313pt;}
.h10_c00018{height:58.038750pt;}
.h5_c00018{height:58.729688pt;}
.hb_c00018{height:59.841375pt;}
.h8_c00018{height:60.759188pt;}
.hf_c00018{height:65.293594pt;}
.hd_c00018{height:66.082500pt;}
.h4_c00018{height:68.402813pt;}
.ha_c00018{height:75.538925pt;}
.he_c00018{height:78.076110pt;}
.h1_c00018{height:986.666667pt;}
.h0_c00018{height:1122.666667pt;}
.w1_c00018{width:689.333333pt;}
.w0_c00018{width:793.333333pt;}
.x0_c00018{left:0.000000pt;}
.x1_c00018{left:52.000000pt;}
.x65_c00018{left:90.553453pt;}
.x36_c00018{left:91.649053pt;}
.x11_c00018{left:93.466253pt;}
.x1a_c00018{left:94.509053pt;}
.x5c_c00018{left:95.736653pt;}
.x4d_c00018{left:96.779453pt;}
.x6a_c00018{left:112.615053pt;}
.x46_c00018{left:120.565853pt;}
.x1b_c00018{left:121.591053pt;}
.x47_c00018{left:131.161053pt;}
.x2f_c00018{left:139.125053pt;}
.x40_c00018{left:140.075453pt;}
.x7_c00018{left:141.245853pt;}
.x52_c00018{left:142.139053pt;}
.x3_c00018{left:143.344653pt;}
.x5d_c00018{left:149.830253pt;}
.x55_c00018{left:151.383453pt;}
.x2_c00018{left:157.600653pt;}
.x27_c00018{left:158.669853pt;}
.x3b_c00018{left:159.655453pt;}
.x12_c00018{left:160.733453pt;}
.x30_c00018{left:169.581853pt;}
.x8_c00018{left:170.818253pt;}
.x1c_c00018{left:178.989053pt;}
.x19_c00018{left:188.013453pt;}
.x31_c00018{left:196.998253pt;}
.x61_c00018{left:198.410653pt;}
.x2b_c00018{left:208.548253pt;}
.x9_c00018{left:217.893853pt;}
.x4e_c00018{left:220.274253pt;}
.x32_c00018{left:226.522253pt;}
.x13_c00018{left:227.556253pt;}
.x48_c00018{left:229.135853pt;}
.x2c_c00018{left:237.051453pt;}
.x58_c00018{left:239.286653pt;}
.x67_c00018{left:246.102253pt;}
.x1d_c00018{left:247.523453pt;}
.x56_c00018{left:249.103053pt;}
.x37_c00018{left:256.983453pt;}
.x49_c00018{left:257.964653pt;}
.x41_c00018{left:267.165053pt;}
.x1e_c00018{left:276.959453pt;}
.x53_c00018{left:277.936253pt;}
.x28_c00018{left:284.787053pt;}
.xa_c00018{left:286.489853pt;}
.x4a_c00018{left:287.730653pt;}
.x33_c00018{left:295.817853pt;}
.x2d_c00018{left:296.939853pt;}
.x59_c00018{left:297.890253pt;}
.x14_c00018{left:305.977453pt;}
.x62_c00018{left:307.033453pt;}
.x5f_c00018{left:316.269053pt;}
.x2e_c00018{left:325.363853pt;}
.x29_c00018{left:326.688253pt;}
.x42_c00018{left:335.822653pt;}
.x68_c00018{left:344.345453pt;}
.x4b_c00018{left:345.753453pt;}
.x57_c00018{left:346.668653pt;}
.x1f_c00018{left:355.261853pt;}
.x4f_c00018{left:356.498253pt;}
.x20_c00018{left:364.735053pt;}
.x3c_c00018{left:374.696653pt;}
.x34_c00018{left:383.311853pt;}
.x21_c00018{left:394.373453pt;}
.xb_c00018{left:403.235053pt;}
.x38_c00018{left:404.660653pt;}
.x69_c00018{left:405.615453pt;}
.x2a_c00018{left:414.639853pt;}
.x22_c00018{left:423.994253pt;}
.x15_c00018{left:424.909453pt;}
.xc_c00018{left:434.004253pt;}
.x5a_c00018{left:444.282653pt;}
.x66_c00018{left:453.967053pt;}
.x43_c00018{left:463.884653pt;}
.x5e_c00018{left:472.618653pt;}
.x50_c00018{left:482.606653pt;}
.x63_c00018{left:483.526253pt;}
.x3d_c00018{left:492.427453pt;}
.x44_c00018{left:493.333853pt;}
.x39_c00018{left:502.749853pt;}
.x35_c00018{left:511.576253pt;}
.x16_c00018{left:512.702653pt;}
.xd_c00018{left:522.206653pt;}
.x17_c00018{left:532.009853pt;}
.x23_c00018{left:534.702653pt;}
.xe_c00018{left:541.817453pt;}
.x3e_c00018{left:550.899053pt;}
.x24_c00018{left:551.880253pt;}
.x64_c00018{left:561.481053pt;}
.x3a_c00018{left:562.449053pt;}
.xf_c00018{left:570.949853pt;}
.x18_c00018{left:572.199453pt;}
.x5b_c00018{left:581.131453pt;}
.x3f_c00018{left:590.833453pt;}
.x51_c00018{left:593.411853pt;}
.x4_c00018{left:600.086653pt;}
.x54_c00018{left:601.675053pt;}
.x25_c00018{left:609.454253pt;}
.x60_c00018{left:610.787453pt;}
.x4c_c00018{left:621.026253pt;}
.x5_c00018{left:621.941453pt;}
.x6_c00018{left:623.283453pt;}
.x10_c00018{left:630.217853pt;}
.x26_c00018{left:639.431453pt;}
.x45_c00018{left:650.193853pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a98e5afda91b06594c68de3e.woff2')format("woff");}.ff1_c00019{font-family:ff1_c00019;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00019;src:url('chunks/assets/font_17ed8d99c4fa16831b86237c.woff2')format("woff");}.ff2_c00019{font-family:ff2_c00019;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00019;src:url('chunks/assets/font_b37c5ec6250f34e7074def00.woff2')format("woff");}.ff3_c00019{font-family:ff3_c00019;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00019;src:url('chunks/assets/font_03ee85a8bb0e8ff1a015cf78.woff2')format("woff");}.ff4_c00019{font-family:ff4_c00019;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00019;src:url('chunks/assets/font_c7f24fab79a600d4913d2922.woff2')format("woff");}.ff5_c00019{font-family:ff5_c00019;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m7e_c00019{transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);}
.m39_c00019{transform:matrix(0.139895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139895,0.000000,0.000000,0.250000,0,0);}
.m86_c00019{transform:matrix(0.211111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211111,0.000000,0.000000,0.250000,0,0);}
.m2b_c00019{transform:matrix(0.212719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212719,0.000000,0.000000,0.250000,0,0);}
.m11_c00019{transform:matrix(0.245747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245747,0.000000,0.000000,0.250000,0,0);}
.m69_c00019{transform:matrix(0.249378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249378,0.000000,0.000000,0.250000,0,0);}
.m0_c00019{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m55_c00019{transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);}
.m1_c00019{transform:matrix(0.251454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251454,0.000000,0.000000,0.250000,0,0);}
.m28_c00019{transform:matrix(0.251631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251631,0.000000,0.000000,0.250000,0,0);}
.m4d_c00019{transform:matrix(0.252992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252992,0.000000,0.000000,0.250000,0,0);}
.m7f_c00019{transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);}
.m71_c00019{transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);}
.m90_c00019{transform:matrix(0.257622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257622,0.000000,0.000000,0.250000,0,0);}
.m1a_c00019{transform:matrix(0.258737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258737,0.000000,0.000000,0.250000,0,0);}
.m95_c00019{transform:matrix(0.259234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259234,0.000000,0.000000,0.250000,0,0);}
.m8f_c00019{transform:matrix(0.259659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259659,0.000000,0.000000,0.250000,0,0);}
.m46_c00019{transform:matrix(0.259977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259977,0.000000,0.000000,0.250000,0,0);}
.m5c_c00019{transform:matrix(0.260817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260817,0.000000,0.000000,0.250000,0,0);}
.m2c_c00019{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m85_c00019{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m1f_c00019{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m93_c00019{transform:matrix(0.263931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263931,0.000000,0.000000,0.250000,0,0);}
.m1c_c00019{transform:matrix(0.264217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264217,0.000000,0.000000,0.250000,0,0);}
.ma7_c00019{transform:matrix(0.266001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266001,0.000000,0.000000,0.250000,0,0);}
.m40_c00019{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m5e_c00019{transform:matrix(0.266785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266785,0.000000,0.000000,0.250000,0,0);}
.m3d_c00019{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.m43_c00019{transform:matrix(0.267109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267109,0.000000,0.000000,0.250000,0,0);}
.m38_c00019{transform:matrix(0.267239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267239,0.000000,0.000000,0.250000,0,0);}
.m50_c00019{transform:matrix(0.267809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267809,0.000000,0.000000,0.250000,0,0);}
.m8_c00019{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m7a_c00019{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.m78_c00019{transform:matrix(0.269446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269446,0.000000,0.000000,0.250000,0,0);}
.ma1_c00019{transform:matrix(0.269448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269448,0.000000,0.000000,0.250000,0,0);}
.m5d_c00019{transform:matrix(0.269977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269977,0.000000,0.000000,0.250000,0,0);}
.m94_c00019{transform:matrix(0.270638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270638,0.000000,0.000000,0.250000,0,0);}
.m36_c00019{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m19_c00019{transform:matrix(0.271720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271720,0.000000,0.000000,0.250000,0,0);}
.m16_c00019{transform:matrix(0.272178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272178,0.000000,0.000000,0.250000,0,0);}
.m5_c00019{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m21_c00019{transform:matrix(0.274145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274145,0.000000,0.000000,0.250000,0,0);}
.m97_c00019{transform:matrix(0.274659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274659,0.000000,0.000000,0.250000,0,0);}
.m7c_c00019{transform:matrix(0.275708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275708,0.000000,0.000000,0.250000,0,0);}
.m54_c00019{transform:matrix(0.276135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276135,0.000000,0.000000,0.250000,0,0);}
.m47_c00019{transform:matrix(0.276460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276460,0.000000,0.000000,0.250000,0,0);}
.m80_c00019{transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);}
.m49_c00019{transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);}
.mc_c00019{transform:matrix(0.277340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277340,0.000000,0.000000,0.250000,0,0);}
.m2f_c00019{transform:matrix(0.278765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278765,0.000000,0.000000,0.250000,0,0);}
.m6f_c00019{transform:matrix(0.278924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278924,0.000000,0.000000,0.250000,0,0);}
.m13_c00019{transform:matrix(0.279200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279200,0.000000,0.000000,0.250000,0,0);}
.m9f_c00019{transform:matrix(0.280163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280163,0.000000,0.000000,0.250000,0,0);}
.m9a_c00019{transform:matrix(0.280247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280247,0.000000,0.000000,0.250000,0,0);}
.ma_c00019{transform:matrix(0.281228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281228,0.000000,0.000000,0.250000,0,0);}
.m10_c00019{transform:matrix(0.281444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281444,0.000000,0.000000,0.250000,0,0);}
.m30_c00019{transform:matrix(0.281605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281605,0.000000,0.000000,0.250000,0,0);}
.m84_c00019{transform:matrix(0.281849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281849,0.000000,0.000000,0.250000,0,0);}
.m52_c00019{transform:matrix(0.282643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282643,0.000000,0.000000,0.250000,0,0);}
.mb_c00019{transform:matrix(0.282983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282983,0.000000,0.000000,0.250000,0,0);}
.m22_c00019{transform:matrix(0.283062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283062,0.000000,0.000000,0.250000,0,0);}
.m81_c00019{transform:matrix(0.283263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283263,0.000000,0.000000,0.250000,0,0);}
.m70_c00019{transform:matrix(0.283556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283556,0.000000,0.000000,0.250000,0,0);}
.m6e_c00019{transform:matrix(0.283939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283939,0.000000,0.000000,0.250000,0,0);}
.m41_c00019{transform:matrix(0.285515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285515,0.000000,0.000000,0.250000,0,0);}
.m8e_c00019{transform:matrix(0.285686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285686,0.000000,0.000000,0.250000,0,0);}
.m48_c00019{transform:matrix(0.285798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285798,0.000000,0.000000,0.250000,0,0);}
.m2e_c00019{transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);}
.mf_c00019{transform:matrix(0.286521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286521,0.000000,0.000000,0.250000,0,0);}
.ma3_c00019{transform:matrix(0.287284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287284,0.000000,0.000000,0.250000,0,0);}
.m63_c00019{transform:matrix(0.288576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288576,0.000000,0.000000,0.250000,0,0);}
.m1b_c00019{transform:matrix(0.288718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288718,0.000000,0.000000,0.250000,0,0);}
.ma0_c00019{transform:matrix(0.288806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288806,0.000000,0.000000,0.250000,0,0);}
.m4b_c00019{transform:matrix(0.289324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289324,0.000000,0.000000,0.250000,0,0);}
.m61_c00019{transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);}
.ma5_c00019{transform:matrix(0.291208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291208,0.000000,0.000000,0.250000,0,0);}
.m60_c00019{transform:matrix(0.291383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291383,0.000000,0.000000,0.250000,0,0);}
.m8b_c00019{transform:matrix(0.291605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291605,0.000000,0.000000,0.250000,0,0);}
.m18_c00019{transform:matrix(0.292165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292165,0.000000,0.000000,0.250000,0,0);}
.m2d_c00019{transform:matrix(0.292398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292398,0.000000,0.000000,0.250000,0,0);}
.m98_c00019{transform:matrix(0.293461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293461,0.000000,0.000000,0.250000,0,0);}
.m4a_c00019{transform:matrix(0.293496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293496,0.000000,0.000000,0.250000,0,0);}
.m8d_c00019{transform:matrix(0.293509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293509,0.000000,0.000000,0.250000,0,0);}
.m79_c00019{transform:matrix(0.293547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293547,0.000000,0.000000,0.250000,0,0);}
.m72_c00019{transform:matrix(0.294533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294533,0.000000,0.000000,0.250000,0,0);}
.m44_c00019{transform:matrix(0.294549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294549,0.000000,0.000000,0.250000,0,0);}
.m9c_c00019{transform:matrix(0.294568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294568,0.000000,0.000000,0.250000,0,0);}
.m7_c00019{transform:matrix(0.294600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294600,0.000000,0.000000,0.250000,0,0);}
.m27_c00019{transform:matrix(0.294635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294635,0.000000,0.000000,0.250000,0,0);}
.m6d_c00019{transform:matrix(0.294826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294826,0.000000,0.000000,0.250000,0,0);}
.m20_c00019{transform:matrix(0.296356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296356,0.000000,0.000000,0.250000,0,0);}
.m57_c00019{transform:matrix(0.297018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297018,0.000000,0.000000,0.250000,0,0);}
.m3e_c00019{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m3f_c00019{transform:matrix(0.297567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297567,0.000000,0.000000,0.250000,0,0);}
.m96_c00019{transform:matrix(0.298793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298793,0.000000,0.000000,0.250000,0,0);}
.m1e_c00019{transform:matrix(0.299115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299115,0.000000,0.000000,0.250000,0,0);}
.m6c_c00019{transform:matrix(0.299346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299346,0.000000,0.000000,0.250000,0,0);}
.m59_c00019{transform:matrix(0.299429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299429,0.000000,0.000000,0.250000,0,0);}
.m33_c00019{transform:matrix(0.299585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299585,0.000000,0.000000,0.250000,0,0);}
.m64_c00019{transform:matrix(0.299814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299814,0.000000,0.000000,0.250000,0,0);}
.m2_c00019{transform:matrix(0.300136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300136,0.000000,0.000000,0.250000,0,0);}
.m5f_c00019{transform:matrix(0.301391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301391,0.000000,0.000000,0.250000,0,0);}
.m25_c00019{transform:matrix(0.301424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301424,0.000000,0.000000,0.250000,0,0);}
.m9e_c00019{transform:matrix(0.302504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302504,0.000000,0.000000,0.250000,0,0);}
.m2a_c00019{transform:matrix(0.302872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302872,0.000000,0.000000,0.250000,0,0);}
.m66_c00019{transform:matrix(0.304333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304333,0.000000,0.000000,0.250000,0,0);}
.m9b_c00019{transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);}
.m76_c00019{transform:matrix(0.306133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306133,0.000000,0.000000,0.250000,0,0);}
.m5b_c00019{transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);}
.m8a_c00019{transform:matrix(0.308321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308321,0.000000,0.000000,0.250000,0,0);}
.m7d_c00019{transform:matrix(0.309181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309181,0.000000,0.000000,0.250000,0,0);}
.m74_c00019{transform:matrix(0.309452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309452,0.000000,0.000000,0.250000,0,0);}
.m42_c00019{transform:matrix(0.310021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310021,0.000000,0.000000,0.250000,0,0);}
.m31_c00019{transform:matrix(0.310694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310694,0.000000,0.000000,0.250000,0,0);}
.m14_c00019{transform:matrix(0.311211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311211,0.000000,0.000000,0.250000,0,0);}
.m67_c00019{transform:matrix(0.311265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311265,0.000000,0.000000,0.250000,0,0);}
.m9d_c00019{transform:matrix(0.312250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312250,0.000000,0.000000,0.250000,0,0);}
.m51_c00019{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.ma2_c00019{transform:matrix(0.313139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313139,0.000000,0.000000,0.250000,0,0);}
.m5a_c00019{transform:matrix(0.313183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313183,0.000000,0.000000,0.250000,0,0);}
.m82_c00019{transform:matrix(0.313263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313263,0.000000,0.000000,0.250000,0,0);}
.ma4_c00019{transform:matrix(0.313569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313569,0.000000,0.000000,0.250000,0,0);}
.m87_c00019{transform:matrix(0.313760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313760,0.000000,0.000000,0.250000,0,0);}
.m4e_c00019{transform:matrix(0.314868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314868,0.000000,0.000000,0.250000,0,0);}
.ma8_c00019{transform:matrix(0.315389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315389,0.000000,0.000000,0.250000,0,0);}
.m17_c00019{transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);}
.m35_c00019{transform:matrix(0.316569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316569,0.000000,0.000000,0.250000,0,0);}
.m15_c00019{transform:matrix(0.317261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317261,0.000000,0.000000,0.250000,0,0);}
.m77_c00019{transform:matrix(0.317440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317440,0.000000,0.000000,0.250000,0,0);}
.m68_c00019{transform:matrix(0.317617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317617,0.000000,0.000000,0.250000,0,0);}
.m24_c00019{transform:matrix(0.318947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318947,0.000000,0.000000,0.250000,0,0);}
.md_c00019{transform:matrix(0.319021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319021,0.000000,0.000000,0.250000,0,0);}
.m8c_c00019{transform:matrix(0.319162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319162,0.000000,0.000000,0.250000,0,0);}
.m45_c00019{transform:matrix(0.319808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319808,0.000000,0.000000,0.250000,0,0);}
.m6a_c00019{transform:matrix(0.320815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320815,0.000000,0.000000,0.250000,0,0);}
.m99_c00019{transform:matrix(0.321048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321048,0.000000,0.000000,0.250000,0,0);}
.m56_c00019{transform:matrix(0.321416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321416,0.000000,0.000000,0.250000,0,0);}
.m62_c00019{transform:matrix(0.321928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321928,0.000000,0.000000,0.250000,0,0);}
.m89_c00019{transform:matrix(0.322269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322269,0.000000,0.000000,0.250000,0,0);}
.m37_c00019{transform:matrix(0.323918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323918,0.000000,0.000000,0.250000,0,0);}
.m58_c00019{transform:matrix(0.324242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324242,0.000000,0.000000,0.250000,0,0);}
.m9_c00019{transform:matrix(0.324455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324455,0.000000,0.000000,0.250000,0,0);}
.ma6_c00019{transform:matrix(0.324910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324910,0.000000,0.000000,0.250000,0,0);}
.m88_c00019{transform:matrix(0.325523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325523,0.000000,0.000000,0.250000,0,0);}
.m12_c00019{transform:matrix(0.327133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327133,0.000000,0.000000,0.250000,0,0);}
.m73_c00019{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m6_c00019{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.m29_c00019{transform:matrix(0.328100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328100,0.000000,0.000000,0.250000,0,0);}
.m65_c00019{transform:matrix(0.328729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328729,0.000000,0.000000,0.250000,0,0);}
.m7b_c00019{transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);}
.m53_c00019{transform:matrix(0.332379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332379,0.000000,0.000000,0.250000,0,0);}
.m4c_c00019{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m6b_c00019{transform:matrix(0.335078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335078,0.000000,0.000000,0.250000,0,0);}
.m1d_c00019{transform:matrix(0.336174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336174,0.000000,0.000000,0.250000,0,0);}
.me_c00019{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m4_c00019{transform:matrix(0.342984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342984,0.000000,0.000000,0.250000,0,0);}
.m4f_c00019{transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);}
.m32_c00019{transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);}
.m3c_c00019{transform:matrix(0.348979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348979,0.000000,0.000000,0.250000,0,0);}
.m75_c00019{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m91_c00019{transform:matrix(0.350956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350956,0.000000,0.000000,0.250000,0,0);}
.m3_c00019{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m3a_c00019{transform:matrix(0.358239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358239,0.000000,0.000000,0.250000,0,0);}
.m83_c00019{transform:matrix(0.359542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359542,0.000000,0.000000,0.250000,0,0);}
.m23_c00019{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m92_c00019{transform:matrix(0.364478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364478,0.000000,0.000000,0.250000,0,0);}
.m26_c00019{transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);}
.m34_c00019{transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);}
.m3b_c00019{transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);}
.v1_c00019{vertical-align:-4.312440px;}
.v0_c00019{vertical-align:0.000000px;}
.ls5_c00019{letter-spacing:-2.744280px;}
.ls6_c00019{letter-spacing:-1.427026px;}
.ls1_c00019{letter-spacing:0.000000px;}
.ls4_c00019{letter-spacing:0.541015px;}
.lsb_c00019{letter-spacing:1.254528px;}
.lsa_c00019{letter-spacing:1.607364px;}
.lsd_c00019{letter-spacing:1.685772px;}
.ls10_c00019{letter-spacing:3.276900px;}
.ls9_c00019{letter-spacing:3.323628px;}
.ls8_c00019{letter-spacing:3.643200px;}
.lse_c00019{letter-spacing:3.722400px;}
.ls3_c00019{letter-spacing:3.920400px;}
.ls2_c00019{letter-spacing:4.375810px;}
.ls0_c00019{letter-spacing:6.977520px;}
.lsc_c00019{letter-spacing:29.937798px;}
.lsf_c00019{letter-spacing:51.321798px;}
.ls7_c00019{letter-spacing:54.172998px;}
.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:3.606768px;}
._0_c00019{margin-left:-4.077216px;}
._1_c00019{width:31.206384px;}
.fc0_c00019{color:transparent;}
.fsa_c00019{font-size:25.146000px;}
.fs0_c00019{font-size:27.720000px;}
.fsb_c00019{font-size:29.937798px;}
.fs10_c00019{font-size:39.204000px;}
.fsf_c00019{font-size:39.600000px;}
.fsd_c00019{font-size:51.321798px;}
.fs6_c00019{font-size:54.172998px;}
.fs5_c00019{font-size:55.836198px;}
.fse_c00019{font-size:65.538000px;}
.fs7_c00019{font-size:72.864000px;}
.fsc_c00019{font-size:74.448000px;}
.fs9_c00019{font-size:74.844000px;}
.fs2_c00019{font-size:76.032198px;}
.fs8_c00019{font-size:76.230000px;}
.fs3_c00019{font-size:78.408000px;}
.fs4_c00019{font-size:78.804000px;}
.fs1_c00019{font-size:87.516198px;}
.y21_c00019{bottom:-1.879965px;}
.y0_c00019{bottom:0.000000px;}
.y1_c00019{bottom:76.500000px;}
.y2_c00019{bottom:82.235385px;}
.y20_c00019{bottom:127.859535px;}
.y1f_c00019{bottom:158.148585px;}
.y1e_c00019{bottom:192.362985px;}
.y1d_c00019{bottom:253.312335px;}
.y1c_c00019{bottom:257.232735px;}
.y1b_c00019{bottom:289.303785px;}
.y1a_c00019{bottom:322.092585px;}
.y19_c00019{bottom:336.709935px;}
.y18_c00019{bottom:347.040585px;}
.y17_c00019{bottom:353.812185px;}
.y16_c00019{bottom:386.249535px;}
.y15_c00019{bottom:419.038335px;}
.y14_c00019{bottom:431.150985px;}
.y13_c00019{bottom:452.539935px;}
.y12_c00019{bottom:484.610985px;}
.y11_c00019{bottom:518.112585px;}
.y10_c00019{bottom:550.549935px;}
.yf_c00019{bottom:585.115785px;}
.yd_c00019{bottom:617.196735px;}
.ye_c00019{bottom:618.265935px;}
.yc_c00019{bottom:714.132585px;}
.yb_c00019{bottom:746.213535px;}
.ya_c00019{bottom:780.071535px;}
.y9_c00019{bottom:793.614735px;}
.y8_c00019{bottom:813.568185px;}
.y7_c00019{bottom:846.356985px;}
.y6_c00019{bottom:879.145785px;}
.y5_c00019{bottom:911.934585px;}
.y4_c00019{bottom:986.065785px;}
.y3_c00019{bottom:1062.335385px;}
.he_c00019{height:19.938573px;}
.hd_c00019{height:26.226492px;}
.h2_c00019{height:28.911094px;}
.h10_c00019{height:34.180317px;}
.h8_c00019{height:36.079217px;}
.h13_c00019{height:38.476582px;}
.h12_c00019{height:41.301563px;}
.h7_c00019{height:58.235410px;}
.h11_c00019{height:68.354086px;}
.hc_c00019{height:71.512031px;}
.hf_c00019{height:73.066641px;}
.h9_c00019{height:73.433250px;}
.hb_c00019{height:73.455293px;}
.ha_c00019{height:74.815576px;}
.h5_c00019{height:76.953164px;}
.h6_c00019{height:77.341816px;}
.h4_c00019{height:79.299207px;}
.h3_c00019{height:85.892362px;}
.h1_c00019{height:1110.000000px;}
.h0_c00019{height:1263.000000px;}
.w1_c00019{width:718.500000px;}
.w0_c00019{width:892.500000px;}
.x0_c00019{left:0.000000px;}
.x2_c00019{left:37.846500px;}
.x29_c00019{left:69.224550px;}
.x23_c00019{left:71.051100px;}
.x16_c00019{left:73.011300px;}
.x5_c00019{left:74.050800px;}
.x1_c00019{left:87.000000px;}
.x2f_c00019{left:89.950200px;}
.x50_c00019{left:102.914250px;}
.x62_c00019{left:111.754950px;}
.x1d_c00019{left:113.893350px;}
.x36_c00019{left:122.268750px;}
.x52_c00019{left:132.396450px;}
.x30_c00019{left:133.539900px;}
.x17_c00019{left:135.935700px;}
.x2a_c00019{left:144.548700px;}
.x56_c00019{left:145.662450px;}
.x4_c00019{left:148.261200px;}
.x24_c00019{left:156.087150px;}
.x18_c00019{left:157.116750px;}
.x4d_c00019{left:165.096150px;}
.x31_c00019{left:166.195050px;}
.x45_c00019{left:176.491050px;}
.x58_c00019{left:188.484900px;}
.x3e_c00019{left:189.851100px;}
.x6_c00019{left:190.959900px;}
.xf_c00019{left:200.008500px;}
.x49_c00019{left:211.274700px;}
.x7_c00019{left:222.169650px;}
.x37_c00019{left:231.931050px;}
.x42_c00019{left:244.083300px;}
.x1e_c00019{left:253.706100px;}
.x53_c00019{left:255.116850px;}
.x2b_c00019{left:266.155350px;}
.x8_c00019{left:277.575000px;}
.x3f_c00019{left:278.609550px;}
.x46_c00019{left:288.460050px;}
.x10_c00019{left:299.859900px;}
.x25_c00019{left:310.532100px;}
.x22_c00019{left:316.175100px;}
.x4e_c00019{left:321.258750px;}
.x40_c00019{left:322.778400px;}
.x1f_c00019{left:331.935900px;}
.x32_c00019{left:333.851550px;}
.x59_c00019{left:336.014700px;}
.x63_c00019{left:342.989250px;}
.x19_c00019{left:344.211900px;}
.x9_c00019{left:354.587100px;}
.x4a_c00019{left:355.601850px;}
.x2c_c00019{left:365.843400px;}
.x60_c00019{left:376.560150px;}
.x43_c00019{left:378.035250px;}
.xa_c00019{left:388.068900px;}
.x54_c00019{left:389.123250px;}
.x3b_c00019{left:399.335100px;}
.x33_c00019{left:411.586350px;}
.x1a_c00019{left:422.293200px;}
.xb_c00019{left:433.326750px;}
.x64_c00019{left:442.464450px;}
.x2d_c00019{left:444.048450px;}
.x20_c00019{left:455.720550px;}
.x5f_c00019{left:464.655300px;}
.x38_c00019{left:465.764100px;}
.x11_c00019{left:467.125350px;}
.x41_c00019{left:477.188700px;}
.x5a_c00019{left:479.935950px;}
.x3c_c00019{left:486.613500px;}
.x1b_c00019{left:488.548950px;}
.x12_c00019{left:498.290550px;}
.x5b_c00019{left:499.636950px;}
.x57_c00019{left:509.418150px;}
.x34_c00019{left:510.675450px;}
.x44_c00019{left:521.327850px;}
.x4f_c00019{left:522.733650px;}
.x2e_c00019{left:530.851650px;}
.x4b_c00019{left:532.430700px;}
.x21_c00019{left:534.846300px;}
.x26_c00019{left:554.527500px;}
.x5c_c00019{left:555.557100px;}
.xc_c00019{left:565.575900px;}
.x13_c00019{left:577.490550px;}
.x27_c00019{left:587.623200px;}
.x39_c00019{left:589.078500px;}
.x35_c00019{left:590.499150px;}
.x3d_c00019{left:597.498450px;}
.xd_c00019{left:599.384400px;}
.x47_c00019{left:609.645750px;}
.x5d_c00019{left:612.571200px;}
.x28_c00019{left:621.505950px;}
.x61_c00019{left:632.519700px;}
.x4c_c00019{left:636.242100px;}
.x3_c00019{left:641.429700px;}
.x55_c00019{left:643.122600px;}
.x1c_c00019{left:644.315550px;}
.x48_c00019{left:653.542350px;}
.x65_c00019{left:654.611550px;}
.x5e_c00019{left:655.636200px;}
.x14_c00019{left:664.818450px;}
.x3a_c00019{left:675.525300px;}
.x66_c00019{left:682.524600px;}
.x51_c00019{left:686.073750px;}
.xe_c00019{left:687.286500px;}
.x15_c00019{left:698.127000px;}
@media print{
.v1_c00019{vertical-align:-3.833280pt;}
.v0_c00019{vertical-align:0.000000pt;}
.ls5_c00019{letter-spacing:-2.439360pt;}
.ls6_c00019{letter-spacing:-1.268467pt;}
.ls1_c00019{letter-spacing:0.000000pt;}
.ls4_c00019{letter-spacing:0.480902pt;}
.lsb_c00019{letter-spacing:1.115136pt;}
.lsa_c00019{letter-spacing:1.428768pt;}
.lsd_c00019{letter-spacing:1.498464pt;}
.ls10_c00019{letter-spacing:2.912800pt;}
.ls9_c00019{letter-spacing:2.954336pt;}
.ls8_c00019{letter-spacing:3.238400pt;}
.lse_c00019{letter-spacing:3.308800pt;}
.ls3_c00019{letter-spacing:3.484800pt;}
.ls2_c00019{letter-spacing:3.889609pt;}
.ls0_c00019{letter-spacing:6.202240pt;}
.lsc_c00019{letter-spacing:26.611376pt;}
.lsf_c00019{letter-spacing:45.619376pt;}
.ls7_c00019{letter-spacing:48.153776pt;}
.ws1_c00019{word-spacing:0.000000pt;}
.ws0_c00019{word-spacing:3.206016pt;}
._0_c00019{margin-left:-3.624192pt;}
._1_c00019{width:27.739008pt;}
.fsa_c00019{font-size:22.352000pt;}
.fs0_c00019{font-size:24.640000pt;}
.fsb_c00019{font-size:26.611376pt;}
.fs10_c00019{font-size:34.848000pt;}
.fsf_c00019{font-size:35.200000pt;}
.fsd_c00019{font-size:45.619376pt;}
.fs6_c00019{font-size:48.153776pt;}
.fs5_c00019{font-size:49.632176pt;}
.fse_c00019{font-size:58.256000pt;}
.fs7_c00019{font-size:64.768000pt;}
.fsc_c00019{font-size:66.176000pt;}
.fs9_c00019{font-size:66.528000pt;}
.fs2_c00019{font-size:67.584176pt;}
.fs8_c00019{font-size:67.760000pt;}
.fs3_c00019{font-size:69.696000pt;}
.fs4_c00019{font-size:70.048000pt;}
.fs1_c00019{font-size:77.792176pt;}
.y21_c00019{bottom:-1.671080pt;}
.y0_c00019{bottom:0.000000pt;}
.y1_c00019{bottom:68.000000pt;}
.y2_c00019{bottom:73.098120pt;}
.y20_c00019{bottom:113.652920pt;}
.y1f_c00019{bottom:140.576520pt;}
.y1e_c00019{bottom:170.989320pt;}
.y1d_c00019{bottom:225.166520pt;}
.y1c_c00019{bottom:228.651320pt;}
.y1b_c00019{bottom:257.158920pt;}
.y1a_c00019{bottom:286.304520pt;}
.y19_c00019{bottom:299.297720pt;}
.y18_c00019{bottom:308.480520pt;}
.y17_c00019{bottom:314.499720pt;}
.y16_c00019{bottom:343.332920pt;}
.y15_c00019{bottom:372.478520pt;}
.y14_c00019{bottom:383.245320pt;}
.y13_c00019{bottom:402.257720pt;}
.y12_c00019{bottom:430.765320pt;}
.y11_c00019{bottom:460.544520pt;}
.y10_c00019{bottom:489.377720pt;}
.yf_c00019{bottom:520.102920pt;}
.yd_c00019{bottom:548.619320pt;}
.ye_c00019{bottom:549.569720pt;}
.yc_c00019{bottom:634.784520pt;}
.yb_c00019{bottom:663.300920pt;}
.ya_c00019{bottom:693.396920pt;}
.y9_c00019{bottom:705.435320pt;}
.y8_c00019{bottom:723.171720pt;}
.y7_c00019{bottom:752.317320pt;}
.y6_c00019{bottom:781.462920pt;}
.y5_c00019{bottom:810.608520pt;}
.y4_c00019{bottom:876.502920pt;}
.y3_c00019{bottom:944.298120pt;}
.he_c00019{height:17.723176pt;}
.hd_c00019{height:23.312438pt;}
.h2_c00019{height:25.698750pt;}
.h10_c00019{height:30.382504pt;}
.h8_c00019{height:32.070415pt;}
.h13_c00019{height:34.201406pt;}
.h12_c00019{height:36.712500pt;}
.h7_c00019{height:51.764809pt;}
.h11_c00019{height:60.759188pt;}
.hc_c00019{height:63.566250pt;}
.hf_c00019{height:64.948125pt;}
.h9_c00019{height:65.274000pt;}
.hb_c00019{height:65.293594pt;}
.ha_c00019{height:66.502734pt;}
.h5_c00019{height:68.402813pt;}
.h6_c00019{height:68.748281pt;}
.h4_c00019{height:70.488184pt;}
.h3_c00019{height:76.348766pt;}
.h1_c00019{height:986.666667pt;}
.h0_c00019{height:1122.666667pt;}
.w1_c00019{width:638.666667pt;}
.w0_c00019{width:793.333333pt;}
.x0_c00019{left:0.000000pt;}
.x2_c00019{left:33.641333pt;}
.x29_c00019{left:61.532933pt;}
.x23_c00019{left:63.156533pt;}
.x16_c00019{left:64.898933pt;}
.x5_c00019{left:65.822933pt;}
.x1_c00019{left:77.333333pt;}
.x2f_c00019{left:79.955733pt;}
.x50_c00019{left:91.479333pt;}
.x62_c00019{left:99.337733pt;}
.x1d_c00019{left:101.238533pt;}
.x36_c00019{left:108.683333pt;}
.x52_c00019{left:117.685733pt;}
.x30_c00019{left:118.702133pt;}
.x17_c00019{left:120.831733pt;}
.x2a_c00019{left:128.487733pt;}
.x56_c00019{left:129.477733pt;}
.x4_c00019{left:131.787733pt;}
.x24_c00019{left:138.744133pt;}
.x18_c00019{left:139.659333pt;}
.x4d_c00019{left:146.752133pt;}
.x31_c00019{left:147.728933pt;}
.x45_c00019{left:156.880933pt;}
.x58_c00019{left:167.542133pt;}
.x3e_c00019{left:168.756533pt;}
.x6_c00019{left:169.742133pt;}
.xf_c00019{left:177.785333pt;}
.x49_c00019{left:187.799733pt;}
.x7_c00019{left:197.484133pt;}
.x37_c00019{left:206.160933pt;}
.x42_c00019{left:216.962933pt;}
.x1e_c00019{left:225.516533pt;}
.x53_c00019{left:226.770533pt;}
.x2b_c00019{left:236.582533pt;}
.x8_c00019{left:246.733333pt;}
.x3f_c00019{left:247.652933pt;}
.x46_c00019{left:256.408933pt;}
.x10_c00019{left:266.542133pt;}
.x25_c00019{left:276.028533pt;}
.x22_c00019{left:281.044533pt;}
.x4e_c00019{left:285.563333pt;}
.x40_c00019{left:286.914133pt;}
.x1f_c00019{left:295.054133pt;}
.x32_c00019{left:296.756933pt;}
.x59_c00019{left:298.679733pt;}
.x63_c00019{left:304.879333pt;}
.x19_c00019{left:305.966133pt;}
.x9_c00019{left:315.188533pt;}
.x4a_c00019{left:316.090533pt;}
.x2c_c00019{left:325.194133pt;}
.x60_c00019{left:334.720133pt;}
.x43_c00019{left:336.031333pt;}
.xa_c00019{left:344.950133pt;}
.x54_c00019{left:345.887333pt;}
.x3b_c00019{left:354.964533pt;}
.x33_c00019{left:365.854533pt;}
.x1a_c00019{left:375.371733pt;}
.xb_c00019{left:385.179333pt;}
.x64_c00019{left:393.301733pt;}
.x2d_c00019{left:394.709733pt;}
.x20_c00019{left:405.084933pt;}
.x5f_c00019{left:413.026933pt;}
.x38_c00019{left:414.012533pt;}
.x11_c00019{left:415.222533pt;}
.x41_c00019{left:424.167733pt;}
.x5a_c00019{left:426.609733pt;}
.x3c_c00019{left:432.545333pt;}
.x1b_c00019{left:434.265733pt;}
.x12_c00019{left:442.924933pt;}
.x5b_c00019{left:444.121733pt;}
.x57_c00019{left:452.816133pt;}
.x34_c00019{left:453.933733pt;}
.x44_c00019{left:463.402533pt;}
.x4f_c00019{left:464.652133pt;}
.x2e_c00019{left:471.868133pt;}
.x4b_c00019{left:473.271733pt;}
.x21_c00019{left:475.418933pt;}
.x26_c00019{left:492.913333pt;}
.x5c_c00019{left:493.828533pt;}
.xc_c00019{left:502.734133pt;}
.x13_c00019{left:513.324933pt;}
.x27_c00019{left:522.331733pt;}
.x39_c00019{left:523.625333pt;}
.x35_c00019{left:524.888133pt;}
.x3d_c00019{left:531.109733pt;}
.xd_c00019{left:532.786133pt;}
.x47_c00019{left:541.907333pt;}
.x5d_c00019{left:544.507733pt;}
.x28_c00019{left:552.449733pt;}
.x61_c00019{left:562.239733pt;}
.x4c_c00019{left:565.548533pt;}
.x3_c00019{left:570.159733pt;}
.x55_c00019{left:571.664533pt;}
.x1c_c00019{left:572.724933pt;}
.x48_c00019{left:580.926533pt;}
.x65_c00019{left:581.876933pt;}
.x5e_c00019{left:582.787733pt;}
.x14_c00019{left:590.949733pt;}
.x3a_c00019{left:600.466933pt;}
.x66_c00019{left:606.688533pt;}
.x51_c00019{left:609.843333pt;}
.xe_c00019{left:610.921333pt;}
.x15_c00019{left:620.557333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_164d232fa1de74af9f9a48da.woff2')format("woff");}.ff1_c00020{font-family:ff1_c00020;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00020;src:url('chunks/assets/font_2a4e75a9f775d6d05ba27a6f.woff2')format("woff");}.ff2_c00020{font-family:ff2_c00020;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00020;src:url('chunks/assets/font_0e4191b38c700af36178ebf9.woff2')format("woff");}.ff3_c00020{font-family:ff3_c00020;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00020;src:url('chunks/assets/font_08cb79062079c858a4e5948b.woff2')format("woff");}.ff4_c00020{font-family:ff4_c00020;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m8e_c00020{transform:matrix(0.086089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086089,0.000000,0.000000,0.250000,0,0);}
.m7d_c00020{transform:matrix(0.110686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110686,0.000000,0.000000,0.250000,0,0);}
.m7e_c00020{transform:matrix(0.128713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128713,0.000000,0.000000,0.250000,0,0);}
.m90_c00020{transform:matrix(0.203469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203469,0.000000,0.000000,0.250000,0,0);}
.mbf_c00020{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);}
.m12_c00020{transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);}
.m0_c00020{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m13_c00020{transform:matrix(0.250316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250316,0.000000,0.000000,0.250000,0,0);}
.m49_c00020{transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);}
.m2a_c00020{transform:matrix(0.255110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255110,0.000000,0.000000,0.250000,0,0);}
.ma9_c00020{transform:matrix(0.255192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255192,0.000000,0.000000,0.250000,0,0);}
.m9c_c00020{transform:matrix(0.255279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255279,0.000000,0.000000,0.250000,0,0);}
.m6d_c00020{transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);}
.m19_c00020{transform:matrix(0.256672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256672,0.000000,0.000000,0.250000,0,0);}
.ma_c00020{transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);}
.m50_c00020{transform:matrix(0.258294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258294,0.000000,0.000000,0.250000,0,0);}
.mbd_c00020{transform:matrix(0.258509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258509,0.000000,0.000000,0.250000,0,0);}
.m3c_c00020{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m75_c00020{transform:matrix(0.261277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261277,0.000000,0.000000,0.250000,0,0);}
.maa_c00020{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.m1_c00020{transform:matrix(0.263189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263189,0.000000,0.000000,0.250000,0,0);}
.m35_c00020{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.mb8_c00020{transform:matrix(0.263466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263466,0.000000,0.000000,0.250000,0,0);}
.m9b_c00020{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m11_c00020{transform:matrix(0.264751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264751,0.000000,0.000000,0.250000,0,0);}
.m8_c00020{transform:matrix(0.266100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266100,0.000000,0.000000,0.250000,0,0);}
.m2c_c00020{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m55_c00020{transform:matrix(0.266868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266868,0.000000,0.000000,0.250000,0,0);}
.m23_c00020{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.ma7_c00020{transform:matrix(0.266949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266949,0.000000,0.000000,0.250000,0,0);}
.m8d_c00020{transform:matrix(0.267219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267219,0.000000,0.000000,0.250000,0,0);}
.md_c00020{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m7a_c00020{transform:matrix(0.268052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268052,0.000000,0.000000,0.250000,0,0);}
.m27_c00020{transform:matrix(0.268475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268475,0.000000,0.000000,0.250000,0,0);}
.mb1_c00020{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.m66_c00020{transform:matrix(0.269337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269337,0.000000,0.000000,0.250000,0,0);}
.m1f_c00020{transform:matrix(0.269857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269857,0.000000,0.000000,0.250000,0,0);}
.m32_c00020{transform:matrix(0.270439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270439,0.000000,0.000000,0.250000,0,0);}
.m72_c00020{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m68_c00020{transform:matrix(0.272387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272387,0.000000,0.000000,0.250000,0,0);}
.m45_c00020{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m14_c00020{transform:matrix(0.272600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272600,0.000000,0.000000,0.250000,0,0);}
.m44_c00020{transform:matrix(0.272629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272629,0.000000,0.000000,0.250000,0,0);}
.m5_c00020{transform:matrix(0.273168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273168,0.000000,0.000000,0.250000,0,0);}
.m91_c00020{transform:matrix(0.273563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273563,0.000000,0.000000,0.250000,0,0);}
.m51_c00020{transform:matrix(0.273869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273869,0.000000,0.000000,0.250000,0,0);}
.mb0_c00020{transform:matrix(0.275287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275287,0.000000,0.000000,0.250000,0,0);}
.m31_c00020{transform:matrix(0.275414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275414,0.000000,0.000000,0.250000,0,0);}
.m10_c00020{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m1c_c00020{transform:matrix(0.275570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275570,0.000000,0.000000,0.250000,0,0);}
.m30_c00020{transform:matrix(0.276258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276258,0.000000,0.000000,0.250000,0,0);}
.m4f_c00020{transform:matrix(0.276573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276573,0.000000,0.000000,0.250000,0,0);}
.m4e_c00020{transform:matrix(0.276800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276800,0.000000,0.000000,0.250000,0,0);}
.m2e_c00020{transform:matrix(0.276947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276947,0.000000,0.000000,0.250000,0,0);}
.m70_c00020{transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);}
.mb9_c00020{transform:matrix(0.277433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277433,0.000000,0.000000,0.250000,0,0);}
.m40_c00020{transform:matrix(0.277554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277554,0.000000,0.000000,0.250000,0,0);}
.mba_c00020{transform:matrix(0.277582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277582,0.000000,0.000000,0.250000,0,0);}
.mb2_c00020{transform:matrix(0.278664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278664,0.000000,0.000000,0.250000,0,0);}
.m80_c00020{transform:matrix(0.279648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279648,0.000000,0.000000,0.250000,0,0);}
.m73_c00020{transform:matrix(0.279677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279677,0.000000,0.000000,0.250000,0,0);}
.m5c_c00020{transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);}
.m3b_c00020{transform:matrix(0.280224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280224,0.000000,0.000000,0.250000,0,0);}
.m15_c00020{transform:matrix(0.280247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280247,0.000000,0.000000,0.250000,0,0);}
.mf_c00020{transform:matrix(0.281260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281260,0.000000,0.000000,0.250000,0,0);}
.m2d_c00020{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.m6b_c00020{transform:matrix(0.281563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281563,0.000000,0.000000,0.250000,0,0);}
.m22_c00020{transform:matrix(0.281624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281624,0.000000,0.000000,0.250000,0,0);}
.mac_c00020{transform:matrix(0.281645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281645,0.000000,0.000000,0.250000,0,0);}
.m8a_c00020{transform:matrix(0.281958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281958,0.000000,0.000000,0.250000,0,0);}
.m1e_c00020{transform:matrix(0.282165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282165,0.000000,0.000000,0.250000,0,0);}
.m5f_c00020{transform:matrix(0.282705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282705,0.000000,0.000000,0.250000,0,0);}
.m54_c00020{transform:matrix(0.282918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282918,0.000000,0.000000,0.250000,0,0);}
.m17_c00020{transform:matrix(0.284801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284801,0.000000,0.000000,0.250000,0,0);}
.ma0_c00020{transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);}
.m6c_c00020{transform:matrix(0.285387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285387,0.000000,0.000000,0.250000,0,0);}
.m6a_c00020{transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);}
.m82_c00020{transform:matrix(0.286039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286039,0.000000,0.000000,0.250000,0,0);}
.m98_c00020{transform:matrix(0.287160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287160,0.000000,0.000000,0.250000,0,0);}
.m8c_c00020{transform:matrix(0.288217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288217,0.000000,0.000000,0.250000,0,0);}
.mbc_c00020{transform:matrix(0.288238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288238,0.000000,0.000000,0.250000,0,0);}
.m47_c00020{transform:matrix(0.288448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288448,0.000000,0.000000,0.250000,0,0);}
.m9e_c00020{transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);}
.m63_c00020{transform:matrix(0.288825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288825,0.000000,0.000000,0.250000,0,0);}
.m71_c00020{transform:matrix(0.288922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288922,0.000000,0.000000,0.250000,0,0);}
.m78_c00020{transform:matrix(0.288974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288974,0.000000,0.000000,0.250000,0,0);}
.m3_c00020{transform:matrix(0.289315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289315,0.000000,0.000000,0.250000,0,0);}
.m5a_c00020{transform:matrix(0.289520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289520,0.000000,0.000000,0.250000,0,0);}
.ma4_c00020{transform:matrix(0.289775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289775,0.000000,0.000000,0.250000,0,0);}
.m2_c00020{transform:matrix(0.289824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289824,0.000000,0.000000,0.250000,0,0);}
.m9f_c00020{transform:matrix(0.290585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290585,0.000000,0.000000,0.250000,0,0);}
.m53_c00020{transform:matrix(0.290633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290633,0.000000,0.000000,0.250000,0,0);}
.mb5_c00020{transform:matrix(0.290852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290852,0.000000,0.000000,0.250000,0,0);}
.m1a_c00020{transform:matrix(0.290943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290943,0.000000,0.000000,0.250000,0,0);}
.m57_c00020{transform:matrix(0.291146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291146,0.000000,0.000000,0.250000,0,0);}
.m79_c00020{transform:matrix(0.291194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291194,0.000000,0.000000,0.250000,0,0);}
.m9d_c00020{transform:matrix(0.291543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291543,0.000000,0.000000,0.250000,0,0);}
.m1b_c00020{transform:matrix(0.291905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291905,0.000000,0.000000,0.250000,0,0);}
.mc_c00020{transform:matrix(0.292034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292034,0.000000,0.000000,0.250000,0,0);}
.m61_c00020{transform:matrix(0.292334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292334,0.000000,0.000000,0.250000,0,0);}
.m93_c00020{transform:matrix(0.292771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292771,0.000000,0.000000,0.250000,0,0);}
.mab_c00020{transform:matrix(0.292839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292839,0.000000,0.000000,0.250000,0,0);}
.m21_c00020{transform:matrix(0.293214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293214,0.000000,0.000000,0.250000,0,0);}
.m7_c00020{transform:matrix(0.293496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293496,0.000000,0.000000,0.250000,0,0);}
.m58_c00020{transform:matrix(0.293522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293522,0.000000,0.000000,0.250000,0,0);}
.m69_c00020{transform:matrix(0.294246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294246,0.000000,0.000000,0.250000,0,0);}
.m87_c00020{transform:matrix(0.294467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294467,0.000000,0.000000,0.250000,0,0);}
.m6f_c00020{transform:matrix(0.294605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294605,0.000000,0.000000,0.250000,0,0);}
.m56_c00020{transform:matrix(0.294811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294811,0.000000,0.000000,0.250000,0,0);}
.m33_c00020{transform:matrix(0.294932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294932,0.000000,0.000000,0.250000,0,0);}
.m3a_c00020{transform:matrix(0.295436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295436,0.000000,0.000000,0.250000,0,0);}
.m64_c00020{transform:matrix(0.295446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295446,0.000000,0.000000,0.250000,0,0);}
.m2f_c00020{transform:matrix(0.295703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295703,0.000000,0.000000,0.250000,0,0);}
.m6_c00020{transform:matrix(0.296640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296640,0.000000,0.000000,0.250000,0,0);}
.m4d_c00020{transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);}
.m4b_c00020{transform:matrix(0.296926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296926,0.000000,0.000000,0.250000,0,0);}
.m92_c00020{transform:matrix(0.296948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296948,0.000000,0.000000,0.250000,0,0);}
.ma8_c00020{transform:matrix(0.297927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297927,0.000000,0.000000,0.250000,0,0);}
.mae_c00020{transform:matrix(0.298323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298323,0.000000,0.000000,0.250000,0,0);}
.m3f_c00020{transform:matrix(0.299262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299262,0.000000,0.000000,0.250000,0,0);}
.ma1_c00020{transform:matrix(0.299298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299298,0.000000,0.000000,0.250000,0,0);}
.mad_c00020{transform:matrix(0.299583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299583,0.000000,0.000000,0.250000,0,0);}
.m65_c00020{transform:matrix(0.300030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300030,0.000000,0.000000,0.250000,0,0);}
.m89_c00020{transform:matrix(0.300063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300063,0.000000,0.000000,0.250000,0,0);}
.m16_c00020{transform:matrix(0.300198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300198,0.000000,0.000000,0.250000,0,0);}
.m81_c00020{transform:matrix(0.300277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300277,0.000000,0.000000,0.250000,0,0);}
.m3e_c00020{transform:matrix(0.300456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300456,0.000000,0.000000,0.250000,0,0);}
.m95_c00020{transform:matrix(0.300499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300499,0.000000,0.000000,0.250000,0,0);}
.ma2_c00020{transform:matrix(0.300577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300577,0.000000,0.000000,0.250000,0,0);}
.ma6_c00020{transform:matrix(0.300712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300712,0.000000,0.000000,0.250000,0,0);}
.m46_c00020{transform:matrix(0.300883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300883,0.000000,0.000000,0.250000,0,0);}
.mb7_c00020{transform:matrix(0.301346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301346,0.000000,0.000000,0.250000,0,0);}
.m5b_c00020{transform:matrix(0.301413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301413,0.000000,0.000000,0.250000,0,0);}
.m97_c00020{transform:matrix(0.301571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301571,0.000000,0.000000,0.250000,0,0);}
.m7f_c00020{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m67_c00020{transform:matrix(0.302968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302968,0.000000,0.000000,0.250000,0,0);}
.m9_c00020{transform:matrix(0.303158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303158,0.000000,0.000000,0.250000,0,0);}
.m38_c00020{transform:matrix(0.303263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303263,0.000000,0.000000,0.250000,0,0);}
.ma3_c00020{transform:matrix(0.303360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303360,0.000000,0.000000,0.250000,0,0);}
.m48_c00020{transform:matrix(0.304376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304376,0.000000,0.000000,0.250000,0,0);}
.m62_c00020{transform:matrix(0.304571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304571,0.000000,0.000000,0.250000,0,0);}
.m83_c00020{transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);}
.m60_c00020{transform:matrix(0.305409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305409,0.000000,0.000000,0.250000,0,0);}
.m4_c00020{transform:matrix(0.306316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306316,0.000000,0.000000,0.250000,0,0);}
.m28_c00020{transform:matrix(0.307034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307034,0.000000,0.000000,0.250000,0,0);}
.mbe_c00020{transform:matrix(0.307327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307327,0.000000,0.000000,0.250000,0,0);}
.m94_c00020{transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);}
.m39_c00020{transform:matrix(0.307906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307906,0.000000,0.000000,0.250000,0,0);}
.mbb_c00020{transform:matrix(0.308721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308721,0.000000,0.000000,0.250000,0,0);}
.mb3_c00020{transform:matrix(0.309308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309308,0.000000,0.000000,0.250000,0,0);}
.m2b_c00020{transform:matrix(0.310104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310104,0.000000,0.000000,0.250000,0,0);}
.m24_c00020{transform:matrix(0.310684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310684,0.000000,0.000000,0.250000,0,0);}
.me_c00020{transform:matrix(0.311543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311543,0.000000,0.000000,0.250000,0,0);}
.m77_c00020{transform:matrix(0.312862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312862,0.000000,0.000000,0.250000,0,0);}
.maf_c00020{transform:matrix(0.313643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313643,0.000000,0.000000,0.250000,0,0);}
.m3d_c00020{transform:matrix(0.314868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314868,0.000000,0.000000,0.250000,0,0);}
.m5e_c00020{transform:matrix(0.315620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315620,0.000000,0.000000,0.250000,0,0);}
.m29_c00020{transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);}
.m85_c00020{transform:matrix(0.316182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316182,0.000000,0.000000,0.250000,0,0);}
.m1d_c00020{transform:matrix(0.316342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316342,0.000000,0.000000,0.250000,0,0);}
.m42_c00020{transform:matrix(0.316717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316717,0.000000,0.000000,0.250000,0,0);}
.m4a_c00020{transform:matrix(0.317920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317920,0.000000,0.000000,0.250000,0,0);}
.m20_c00020{transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);}
.m7c_c00020{transform:matrix(0.319859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319859,0.000000,0.000000,0.250000,0,0);}
.m37_c00020{transform:matrix(0.320191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320191,0.000000,0.000000,0.250000,0,0);}
.m7b_c00020{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.m26_c00020{transform:matrix(0.323918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323918,0.000000,0.000000,0.250000,0,0);}
.m36_c00020{transform:matrix(0.326063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326063,0.000000,0.000000,0.250000,0,0);}
.m6e_c00020{transform:matrix(0.326570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326570,0.000000,0.000000,0.250000,0,0);}
.m8f_c00020{transform:matrix(0.326753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326753,0.000000,0.000000,0.250000,0,0);}
.m9a_c00020{transform:matrix(0.330341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330341,0.000000,0.000000,0.250000,0,0);}
.mb4_c00020{transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);}
.m4c_c00020{transform:matrix(0.333645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333645,0.000000,0.000000,0.250000,0,0);}
.m86_c00020{transform:matrix(0.335758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335758,0.000000,0.000000,0.250000,0,0);}
.m99_c00020{transform:matrix(0.337847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337847,0.000000,0.000000,0.250000,0,0);}
.m5d_c00020{transform:matrix(0.338655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338655,0.000000,0.000000,0.250000,0,0);}
.m18_c00020{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.ma5_c00020{transform:matrix(0.340598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340598,0.000000,0.000000,0.250000,0,0);}
.m34_c00020{transform:matrix(0.341289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341289,0.000000,0.000000,0.250000,0,0);}
.m96_c00020{transform:matrix(0.342694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342694,0.000000,0.000000,0.250000,0,0);}
.m84_c00020{transform:matrix(0.343129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343129,0.000000,0.000000,0.250000,0,0);}
.mb6_c00020{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.m43_c00020{transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);}
.mb_c00020{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m59_c00020{transform:matrix(0.352634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352634,0.000000,0.000000,0.250000,0,0);}
.m8b_c00020{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m76_c00020{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m25_c00020{transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);}
.m41_c00020{transform:matrix(0.369365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369365,0.000000,0.000000,0.250000,0,0);}
.m88_c00020{transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);}
.m74_c00020{transform:matrix(0.382326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382326,0.000000,0.000000,0.250000,0,0);}
.m52_c00020{transform:matrix(0.426872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426872,0.000000,0.000000,0.250000,0,0);}
.v1_c00020{vertical-align:-5.682600px;}
.v0_c00020{vertical-align:0.000000px;}
.ls6_c00020{letter-spacing:-2.744280px;}
.lsb_c00020{letter-spacing:-2.668050px;}
.lsc_c00020{letter-spacing:-2.439367px;}
.lsd_c00020{letter-spacing:-1.884967px;}
.lsf_c00020{letter-spacing:-1.552320px;}
.ls5_c00020{letter-spacing:-1.521115px;}
.ls2_c00020{letter-spacing:0.000000px;}
.ls0_c00020{letter-spacing:0.697831px;}
.ls7_c00020{letter-spacing:2.924618px;}
.lse_c00020{letter-spacing:3.564000px;}
.ls8_c00020{letter-spacing:3.623400px;}
.lsa_c00020{letter-spacing:3.724380px;}
.ls9_c00020{letter-spacing:3.801610px;}
.ls4_c00020{letter-spacing:3.920400px;}
.ls3_c00020{letter-spacing:4.276810px;}
.ls1_c00020{letter-spacing:19.958400px;}
.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;}
._0_c00020{width:30.365201px;}
._1_c00020{width:41.007384px;}
.fc0_c00020{color:transparent;}
.fs0_c00020{font-size:22.176000px;}
.fsb_c00020{font-size:26.928000px;}
.fs8_c00020{font-size:27.720000px;}
.fs4_c00020{font-size:44.352000px;}
.fsf_c00020{font-size:47.322000px;}
.fs11_c00020{font-size:50.688000px;}
.fse_c00020{font-size:53.856198px;}
.fs12_c00020{font-size:54.450000px;}
.fs2_c00020{font-size:56.628000px;}
.fs10_c00020{font-size:69.300000px;}
.fsc_c00020{font-size:69.696198px;}
.fsd_c00020{font-size:71.280000px;}
.fs5_c00020{font-size:72.468000px;}
.fs6_c00020{font-size:76.032198px;}
.fsa_c00020{font-size:76.230000px;}
.fs3_c00020{font-size:78.408000px;}
.fs9_c00020{font-size:82.566198px;}
.fs1_c00020{font-size:85.536198px;}
.fs7_c00020{font-size:86.328000px;}
.y0_c00020{bottom:0.000000px;}
.y2a_c00020{bottom:60.499935px;}
.y27_c00020{bottom:69.048585px;}
.y1_c00020{bottom:76.500000px;}
.y29_c00020{bottom:80.814735px;}
.y26_c00020{bottom:120.018735px;}
.y28_c00020{bottom:120.372165px;}
.y25_c00020{bottom:126.790335px;}
.y23_c00020{bottom:127.146735px;}
.y24_c00020{bottom:128.572335px;}
.y22_c00020{bottom:140.328585px;}
.y21_c00020{bottom:156.366585px;}
.y20_c00020{bottom:191.650185px;}
.y1f_c00020{bottom:226.933785px;}
.y1e_c00020{bottom:259.722585px;}
.y1d_c00020{bottom:293.580585px;}
.y1c_c00020{bottom:326.017935px;}
.y1b_c00020{bottom:359.158185px;}
.y1a_c00020{bottom:391.239135px;}
.y19_c00020{bottom:400.856985px;}
.y18_c00020{bottom:420.102585px;}
.y17_c00020{bottom:423.666585px;}
.y16_c00020{bottom:442.199385px;}
.y15_c00020{bottom:456.455385px;}
.y14_c00020{bottom:489.249135px;}
.y13_c00020{bottom:547.342335px;}
.y12_c00020{bottom:554.826735px;}
.y11_c00020{bottom:587.966985px;}
.y10_c00020{bottom:607.212585px;}
.yf_c00020{bottom:621.117135px;}
.ye_c00020{bottom:654.613785px;}
.yd_c00020{bottom:687.051135px;}
.yc_c00020{bottom:719.839935px;}
.yb_c00020{bottom:752.623785px;}
.ya_c00020{bottom:767.592585px;}
.y9_c00020{bottom:785.061135px;}
.y8_c00020{bottom:817.493535px;}
.y7_c00020{bottom:851.351535px;}
.y6_c00020{bottom:884.140335px;}
.y5_c00020{bottom:916.211385px;}
.y4_c00020{bottom:980.006985px;}
.y3_c00020{bottom:1073.740185px;}
.y2_c00020{bottom:1083.719385px;}
.h2_c00020{height:23.128875px;}
.hd_c00020{height:28.085063px;}
.ha_c00020{height:28.911094px;}
.h6_c00020{height:46.257750px;}
.h11_c00020{height:49.355367px;}
.h13_c00020{height:52.866000px;}
.h10_c00020{height:56.170332px;}
.h14_c00020{height:56.789648px;}
.h4_c00020{height:59.061234px;}
.h12_c00020{height:68.014160px;}
.h7_c00020{height:71.123379px;}
.he_c00020{height:72.690957px;}
.hf_c00020{height:74.342813px;}
.h8_c00020{height:74.621444px;}
.hc_c00020{height:74.815576px;}
.h5_c00020{height:76.953164px;}
.h3_c00020{height:83.949101px;}
.h9_c00020{height:84.726211px;}
.hb_c00020{height:86.113964px;}
.h1_c00020{height:1110.000000px;}
.h0_c00020{height:1263.000000px;}
.w1_c00020{width:775.500000px;}
.w0_c00020{width:892.500000px;}
.x0_c00020{left:0.000000px;}
.x1_c00020{left:58.500000px;}
.x24_c00020{left:93.715035px;}
.x1b_c00020{left:94.749585px;}
.x5_c00020{left:97.665135px;}
.x6d_c00020{left:115.955385px;}
.x2d_c00020{left:125.434635px;}
.x5e_c00020{left:126.647385px;}
.x47_c00020{left:127.691835px;}
.xc_c00020{left:130.919235px;}
.x42_c00020{left:137.854185px;}
.x68_c00020{left:139.106535px;}
.x4e_c00020{left:148.818435px;}
.x4_c00020{left:150.748935px;}
.x1c_c00020{left:160.035135px;}
.xd_c00020{left:162.262635px;}
.x33_c00020{left:170.855835px;}
.x43_c00020{left:172.093335px;}
.x25_c00020{left:181.141935px;}
.x39_c00020{left:182.230935px;}
.xe_c00020{left:194.353485px;}
.x4a_c00020{left:195.388035px;}
.x34_c00020{left:204.302985px;}
.x53_c00020{left:205.614735px;}
.x1d_c00020{left:214.861335px;}
.x2_c00020{left:216.593835px;}
.x3a_c00020{left:227.488785px;}
.x2e_c00020{left:237.502635px;}
.x48_c00020{left:238.571835px;}
.x1e_c00020{left:248.179785px;}
.x14_c00020{left:250.318185px;}
.x61_c00020{left:259.594485px;}
.x70_c00020{left:260.629035px;}
.x65_c00020{left:269.380635px;}
.x71_c00020{left:271.316085px;}
.x26_c00020{left:280.963635px;}
.x4f_c00020{left:283.082235px;}
.x62_c00020{left:291.680385px;}
.x58_c00020{left:292.739685px;}
.x64_c00020{left:295.516635px;}
.x44_c00020{left:315.103785px;}
.x5f_c00020{left:317.227335px;}
.x59_c00020{left:326.473935px;}
.xf_c00020{left:327.666885px;}
.x3b_c00020{left:337.215435px;}
.x35_c00020{left:347.422335px;}
.x45_c00020{left:349.362735px;}
.x1f_c00020{left:358.549935px;}
.x6_c00020{left:360.975435px;}
.x5a_c00020{left:369.103335px;}
.x27_c00020{left:371.088285px;}
.x6e_c00020{left:379.904235px;}
.x69_c00020{left:381.493185px;}
.x15_c00020{left:382.542585px;}
.x49_c00020{left:390.952635px;}
.x5b_c00020{left:394.343385px;}
.x6a_c00020{left:402.312885px;}
.x2f_c00020{left:403.723635px;}
.x20_c00020{left:413.559285px;}
.x7_c00020{left:414.717585px;}
.x5c_c00020{left:416.791635px;}
.x50_c00020{left:425.305635px;}
.x28_c00020{left:436.002585px;}
.x16_c00020{left:438.111285px;}
.x54_c00020{left:447.055935px;}
.x36_c00020{left:449.466585px;}
.x3e_c00020{left:450.540735px;}
.x5d_c00020{left:454.560135px;}
.x10_c00020{left:459.287385px;}
.x30_c00020{left:469.311135px;}
.x4b_c00020{left:470.573385px;}
.x29_c00020{left:480.379335px;}
.x4c_c00020{left:491.972235px;}
.x3c_c00020{left:502.580085px;}
.x17_c00020{left:504.441285px;}
.x8_c00020{left:507.594435px;}
.x4d_c00020{left:510.267435px;}
.x21_c00020{left:512.940435px;}
.x31_c00020{left:524.023485px;}
.x60_c00020{left:535.225335px;}
.x18_c00020{left:537.205335px;}
.x3f_c00020{left:557.341935px;}
.x9_c00020{left:559.198185px;}
.x2a_c00020{left:568.771485px;}
.x11_c00020{left:570.390135px;}
.x66_c00020{left:579.963435px;}
.x63_c00020{left:583.274985px;}
.x22_c00020{left:590.566335px;}
.x37_c00020{left:591.724635px;}
.x32_c00020{left:602.416635px;}
.x6b_c00020{left:613.717485px;}
.xa_c00020{left:615.509385px;}
.x51_c00020{left:622.969035px;}
.x2b_c00020{left:624.864885px;}
.x19_c00020{left:626.958735px;}
.x2c_c00020{left:634.918335px;}
.x55_c00020{left:636.294435px;}
.x46_c00020{left:645.065835px;}
.x40_c00020{left:646.471635px;}
.xb_c00020{left:649.124835px;}
.x72_c00020{left:655.554885px;}
.x52_c00020{left:656.995335px;}
.x57_c00020{left:658.861485px;}
.x1a_c00020{left:660.193035px;}
.x38_c00020{left:668.350635px;}
.x3_c00020{left:670.102935px;}
.x12_c00020{left:671.563185px;}
.x23_c00020{left:679.433685px;}
.x41_c00020{left:690.358335px;}
.x67_c00020{left:691.521585px;}
.x3d_c00020{left:701.881935px;}
.x13_c00020{left:703.060035px;}
.x56_c00020{left:713.207535px;}
.x6f_c00020{left:723.978735px;}
.x73_c00020{left:728.067435px;}
.x75_c00020{left:746.431935px;}
.x6c_c00020{left:755.797335px;}
.x74_c00020{left:758.650515px;}
@media print{
.v1_c00020{vertical-align:-5.051200pt;}
.v0_c00020{vertical-align:0.000000pt;}
.ls6_c00020{letter-spacing:-2.439360pt;}
.lsb_c00020{letter-spacing:-2.371600pt;}
.lsc_c00020{letter-spacing:-2.168326pt;}
.lsd_c00020{letter-spacing:-1.675526pt;}
.lsf_c00020{letter-spacing:-1.379840pt;}
.ls5_c00020{letter-spacing:-1.352102pt;}
.ls2_c00020{letter-spacing:0.000000pt;}
.ls0_c00020{letter-spacing:0.620294pt;}
.ls7_c00020{letter-spacing:2.599661pt;}
.lse_c00020{letter-spacing:3.168000pt;}
.ls8_c00020{letter-spacing:3.220800pt;}
.lsa_c00020{letter-spacing:3.310560pt;}
.ls9_c00020{letter-spacing:3.379209pt;}
.ls4_c00020{letter-spacing:3.484800pt;}
.ls3_c00020{letter-spacing:3.801609pt;}
.ls1_c00020{letter-spacing:17.740800pt;}
.ws0_c00020{word-spacing:0.000000pt;}
._0_c00020{width:26.991290pt;}
._1_c00020{width:36.451008pt;}
.fs0_c00020{font-size:19.712000pt;}
.fsb_c00020{font-size:23.936000pt;}
.fs8_c00020{font-size:24.640000pt;}
.fs4_c00020{font-size:39.424000pt;}
.fsf_c00020{font-size:42.064000pt;}
.fs11_c00020{font-size:45.056000pt;}
.fse_c00020{font-size:47.872176pt;}
.fs12_c00020{font-size:48.400000pt;}
.fs2_c00020{font-size:50.336000pt;}
.fs10_c00020{font-size:61.600000pt;}
.fsc_c00020{font-size:61.952176pt;}
.fsd_c00020{font-size:63.360000pt;}
.fs5_c00020{font-size:64.416000pt;}
.fs6_c00020{font-size:67.584176pt;}
.fsa_c00020{font-size:67.760000pt;}
.fs3_c00020{font-size:69.696000pt;}
.fs9_c00020{font-size:73.392176pt;}
.fs1_c00020{font-size:76.032176pt;}
.fs7_c00020{font-size:76.736000pt;}
.y0_c00020{bottom:0.000000pt;}
.y2a_c00020{bottom:53.777720pt;}
.y27_c00020{bottom:61.376520pt;}
.y1_c00020{bottom:68.000000pt;}
.y29_c00020{bottom:71.835320pt;}
.y26_c00020{bottom:106.683320pt;}
.y28_c00020{bottom:106.997480pt;}
.y25_c00020{bottom:112.702520pt;}
.y23_c00020{bottom:113.019320pt;}
.y24_c00020{bottom:114.286520pt;}
.y22_c00020{bottom:124.736520pt;}
.y21_c00020{bottom:138.992520pt;}
.y20_c00020{bottom:170.355720pt;}
.y1f_c00020{bottom:201.718920pt;}
.y1e_c00020{bottom:230.864520pt;}
.y1d_c00020{bottom:260.960520pt;}
.y1c_c00020{bottom:289.793720pt;}
.y1b_c00020{bottom:319.251720pt;}
.y1a_c00020{bottom:347.768120pt;}
.y19_c00020{bottom:356.317320pt;}
.y18_c00020{bottom:373.424520pt;}
.y17_c00020{bottom:376.592520pt;}
.y16_c00020{bottom:393.066120pt;}
.y15_c00020{bottom:405.738120pt;}
.y14_c00020{bottom:434.888120pt;}
.y13_c00020{bottom:486.526520pt;}
.y12_c00020{bottom:493.179320pt;}
.y11_c00020{bottom:522.637320pt;}
.y10_c00020{bottom:539.744520pt;}
.yf_c00020{bottom:552.104120pt;}
.ye_c00020{bottom:581.878920pt;}
.yd_c00020{bottom:610.712120pt;}
.yc_c00020{bottom:639.857720pt;}
.yb_c00020{bottom:668.998920pt;}
.ya_c00020{bottom:682.304520pt;}
.y9_c00020{bottom:697.832120pt;}
.y8_c00020{bottom:726.660920pt;}
.y7_c00020{bottom:756.756920pt;}
.y6_c00020{bottom:785.902520pt;}
.y5_c00020{bottom:814.410120pt;}
.y4_c00020{bottom:871.117320pt;}
.y3_c00020{bottom:954.435720pt;}
.y2_c00020{bottom:963.306120pt;}
.h2_c00020{height:20.559000pt;}
.hd_c00020{height:24.964500pt;}
.ha_c00020{height:25.698750pt;}
.h6_c00020{height:41.118000pt;}
.h11_c00020{height:43.871438pt;}
.h13_c00020{height:46.992000pt;}
.h10_c00020{height:49.929184pt;}
.h14_c00020{height:50.479688pt;}
.h4_c00020{height:52.498875pt;}
.h12_c00020{height:60.457031pt;}
.h7_c00020{height:63.220781pt;}
.he_c00020{height:64.614184pt;}
.hf_c00020{height:66.082500pt;}
.h8_c00020{height:66.330173pt;}
.hc_c00020{height:66.502734pt;}
.h5_c00020{height:68.402813pt;}
.h3_c00020{height:74.621423pt;}
.h9_c00020{height:75.312188pt;}
.hb_c00020{height:76.545746pt;}
.h1_c00020{height:986.666667pt;}
.h0_c00020{height:1122.666667pt;}
.w1_c00020{width:689.333333pt;}
.w0_c00020{width:793.333333pt;}
.x0_c00020{left:0.000000pt;}
.x1_c00020{left:52.000000pt;}
.x24_c00020{left:83.302253pt;}
.x1b_c00020{left:84.221853pt;}
.x5_c00020{left:86.813453pt;}
.x6d_c00020{left:103.071453pt;}
.x2d_c00020{left:111.497453pt;}
.x5e_c00020{left:112.575453pt;}
.x47_c00020{left:113.503853pt;}
.xc_c00020{left:116.372653pt;}
.x42_c00020{left:122.537053pt;}
.x68_c00020{left:123.650253pt;}
.x4e_c00020{left:132.283053pt;}
.x4_c00020{left:133.999053pt;}
.x1c_c00020{left:142.253453pt;}
.xd_c00020{left:144.233453pt;}
.x33_c00020{left:151.871853pt;}
.x43_c00020{left:152.971853pt;}
.x25_c00020{left:161.015053pt;}
.x39_c00020{left:161.983053pt;}
.xe_c00020{left:172.758653pt;}
.x4a_c00020{left:173.678253pt;}
.x34_c00020{left:181.602653pt;}
.x53_c00020{left:182.768653pt;}
.x1d_c00020{left:190.987853pt;}
.x2_c00020{left:192.527853pt;}
.x3a_c00020{left:202.212253pt;}
.x2e_c00020{left:211.113453pt;}
.x48_c00020{left:212.063853pt;}
.x1e_c00020{left:220.604253pt;}
.x14_c00020{left:222.505053pt;}
.x61_c00020{left:230.750653pt;}
.x70_c00020{left:231.670253pt;}
.x65_c00020{left:239.449453pt;}
.x71_c00020{left:241.169853pt;}
.x26_c00020{left:249.745453pt;}
.x4f_c00020{left:251.628653pt;}
.x62_c00020{left:259.271453pt;}
.x58_c00020{left:260.213053pt;}
.x64_c00020{left:262.681453pt;}
.x44_c00020{left:280.092253pt;}
.x5f_c00020{left:281.979853pt;}
.x59_c00020{left:290.199053pt;}
.xf_c00020{left:291.259453pt;}
.x3b_c00020{left:299.747053pt;}
.x35_c00020{left:308.819853pt;}
.x45_c00020{left:310.544653pt;}
.x1f_c00020{left:318.711053pt;}
.x6_c00020{left:320.867053pt;}
.x5a_c00020{left:328.091853pt;}
.x27_c00020{left:329.856253pt;}
.x6e_c00020{left:337.692653pt;}
.x69_c00020{left:339.105053pt;}
.x15_c00020{left:340.037853pt;}
.x49_c00020{left:347.513453pt;}
.x5b_c00020{left:350.527453pt;}
.x6a_c00020{left:357.611453pt;}
.x2f_c00020{left:358.865453pt;}
.x20_c00020{left:367.608253pt;}
.x7_c00020{left:368.637853pt;}
.x5c_c00020{left:370.481453pt;}
.x50_c00020{left:378.049453pt;}
.x28_c00020{left:387.557853pt;}
.x16_c00020{left:389.432253pt;}
.x54_c00020{left:397.383053pt;}
.x36_c00020{left:399.525853pt;}
.x3e_c00020{left:400.480653pt;}
.x5d_c00020{left:404.053453pt;}
.x10_c00020{left:408.255453pt;}
.x30_c00020{left:417.165453pt;}
.x4b_c00020{left:418.287453pt;}
.x29_c00020{left:427.003853pt;}
.x4c_c00020{left:437.308653pt;}
.x3c_c00020{left:446.737853pt;}
.x17_c00020{left:448.392253pt;}
.x8_c00020{left:451.195053pt;}
.x4d_c00020{left:453.571053pt;}
.x21_c00020{left:455.947053pt;}
.x31_c00020{left:465.798653pt;}
.x60_c00020{left:475.755853pt;}
.x18_c00020{left:477.515853pt;}
.x3f_c00020{left:495.415053pt;}
.x9_c00020{left:497.065053pt;}
.x2a_c00020{left:505.574653pt;}
.x11_c00020{left:507.013453pt;}
.x66_c00020{left:515.523053pt;}
.x63_c00020{left:518.466653pt;}
.x22_c00020{left:524.947853pt;}
.x37_c00020{left:525.977453pt;}
.x32_c00020{left:535.481453pt;}
.x6b_c00020{left:545.526653pt;}
.xa_c00020{left:547.119453pt;}
.x51_c00020{left:553.750253pt;}
.x2b_c00020{left:555.435453pt;}
.x19_c00020{left:557.296653pt;}
.x2c_c00020{left:564.371853pt;}
.x55_c00020{left:565.595053pt;}
.x46_c00020{left:573.391853pt;}
.x40_c00020{left:574.641453pt;}
.xb_c00020{left:576.999853pt;}
.x72_c00020{left:582.715453pt;}
.x52_c00020{left:583.995853pt;}
.x57_c00020{left:585.654653pt;}
.x1a_c00020{left:586.838253pt;}
.x38_c00020{left:594.089453pt;}
.x3_c00020{left:595.647053pt;}
.x12_c00020{left:596.945053pt;}
.x23_c00020{left:603.941053pt;}
.x41_c00020{left:613.651853pt;}
.x67_c00020{left:614.685853pt;}
.x3d_c00020{left:623.895053pt;}
.x13_c00020{left:624.942253pt;}
.x56_c00020{left:633.962253pt;}
.x6f_c00020{left:643.536653pt;}
.x73_c00020{left:647.171053pt;}
.x75_c00020{left:663.495053pt;}
.x6c_c00020{left:671.819853pt;}
.x74_c00020{left:674.356013pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8d8dd59cfc698ff5d814d19e.woff2')format("woff");}.ff1_c00021{font-family:ff1_c00021;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00021;src:url('chunks/assets/font_5c0caedf754ba6444f5a898a.woff2')format("woff");}.ff2_c00021{font-family:ff2_c00021;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00021;src:url('chunks/assets/font_4fdd62a89b10d1c96772689f.woff2')format("woff");}.ff3_c00021{font-family:ff3_c00021;line-height:0.666000;font-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_c00021{transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);}
.m3a_c00021{transform:matrix(0.131773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131773,0.000000,0.000000,0.250000,0,0);}
.m95_c00021{transform:matrix(0.159574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159574,0.000000,0.000000,0.250000,0,0);}
.m4_c00021{transform:matrix(0.171053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171053,0.000000,0.000000,0.250000,0,0);}
.m3_c00021{transform:matrix(0.192583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192583,0.000000,0.000000,0.250000,0,0);}
.m6b_c00021{transform:matrix(0.193058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193058,0.000000,0.000000,0.250000,0,0);}
.m36_c00021{transform:matrix(0.222093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222093,0.000000,0.000000,0.250000,0,0);}
.m98_c00021{transform:matrix(0.244060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244060,0.000000,0.000000,0.250000,0,0);}
.m60_c00021{transform:matrix(0.247242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247242,0.000000,0.000000,0.250000,0,0);}
.m1_c00021{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00021{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.m21_c00021{transform:matrix(0.252064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252064,0.000000,0.000000,0.250000,0,0);}
.m62_c00021{transform:matrix(0.252155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252155,0.000000,0.000000,0.250000,0,0);}
.m58_c00021{transform:matrix(0.252433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252433,0.000000,0.000000,0.250000,0,0);}
.m43_c00021{transform:matrix(0.254582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254582,0.000000,0.000000,0.250000,0,0);}
.m7c_c00021{transform:matrix(0.255030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255030,0.000000,0.000000,0.250000,0,0);}
.mac_c00021{transform:matrix(0.257864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257864,0.000000,0.000000,0.250000,0,0);}
.ma7_c00021{transform:matrix(0.258442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258442,0.000000,0.000000,0.250000,0,0);}
.m89_c00021{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m59_c00021{transform:matrix(0.259206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259206,0.000000,0.000000,0.250000,0,0);}
.m3e_c00021{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m1d_c00021{transform:matrix(0.261836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261836,0.000000,0.000000,0.250000,0,0);}
.m15_c00021{transform:matrix(0.261931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261931,0.000000,0.000000,0.250000,0,0);}
.m83_c00021{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m4b_c00021{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m84_c00021{transform:matrix(0.265579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265579,0.000000,0.000000,0.250000,0,0);}
.m40_c00021{transform:matrix(0.265799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265799,0.000000,0.000000,0.250000,0,0);}
.m39_c00021{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m63_c00021{transform:matrix(0.266868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266868,0.000000,0.000000,0.250000,0,0);}
.mae_c00021{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.m35_c00021{transform:matrix(0.267251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267251,0.000000,0.000000,0.250000,0,0);}
.m61_c00021{transform:matrix(0.267433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267433,0.000000,0.000000,0.250000,0,0);}
.m85_c00021{transform:matrix(0.267667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267667,0.000000,0.000000,0.250000,0,0);}
.m6_c00021{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.mb1_c00021{transform:matrix(0.268100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268100,0.000000,0.000000,0.250000,0,0);}
.m6f_c00021{transform:matrix(0.268470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268470,0.000000,0.000000,0.250000,0,0);}
.m8d_c00021{transform:matrix(0.268694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268694,0.000000,0.000000,0.250000,0,0);}
.m79_c00021{transform:matrix(0.269234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269234,0.000000,0.000000,0.250000,0,0);}
.m91_c00021{transform:matrix(0.269337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269337,0.000000,0.000000,0.250000,0,0);}
.m2c_c00021{transform:matrix(0.270085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270085,0.000000,0.000000,0.250000,0,0);}
.ma4_c00021{transform:matrix(0.270874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270874,0.000000,0.000000,0.250000,0,0);}
.me_c00021{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m3f_c00021{transform:matrix(0.270977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270977,0.000000,0.000000,0.250000,0,0);}
.ma9_c00021{transform:matrix(0.271323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271323,0.000000,0.000000,0.250000,0,0);}
.mab_c00021{transform:matrix(0.271869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271869,0.000000,0.000000,0.250000,0,0);}
.m64_c00021{transform:matrix(0.271987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271987,0.000000,0.000000,0.250000,0,0);}
.m23_c00021{transform:matrix(0.272387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272387,0.000000,0.000000,0.250000,0,0);}
.m9_c00021{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m5b_c00021{transform:matrix(0.272801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272801,0.000000,0.000000,0.250000,0,0);}
.m42_c00021{transform:matrix(0.273717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273717,0.000000,0.000000,0.250000,0,0);}
.m10_c00021{transform:matrix(0.273900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273900,0.000000,0.000000,0.250000,0,0);}
.md_c00021{transform:matrix(0.274177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274177,0.000000,0.000000,0.250000,0,0);}
.m70_c00021{transform:matrix(0.274696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274696,0.000000,0.000000,0.250000,0,0);}
.m17_c00021{transform:matrix(0.275438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275438,0.000000,0.000000,0.250000,0,0);}
.m1e_c00021{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m38_c00021{transform:matrix(0.275725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275725,0.000000,0.000000,0.250000,0,0);}
.m45_c00021{transform:matrix(0.275917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275917,0.000000,0.000000,0.250000,0,0);}
.m81_c00021{transform:matrix(0.276320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276320,0.000000,0.000000,0.250000,0,0);}
.m68_c00021{transform:matrix(0.276432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276432,0.000000,0.000000,0.250000,0,0);}
.m49_c00021{transform:matrix(0.276460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276460,0.000000,0.000000,0.250000,0,0);}
.m7b_c00021{transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);}
.m9b_c00021{transform:matrix(0.277636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277636,0.000000,0.000000,0.250000,0,0);}
.ma8_c00021{transform:matrix(0.278137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278137,0.000000,0.000000,0.250000,0,0);}
.m32_c00021{transform:matrix(0.278863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278863,0.000000,0.000000,0.250000,0,0);}
.m8c_c00021{transform:matrix(0.279111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279111,0.000000,0.000000,0.250000,0,0);}
.m93_c00021{transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);}
.m52_c00021{transform:matrix(0.280174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280174,0.000000,0.000000,0.250000,0,0);}
.m0_c00021{transform:matrix(0.280664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280664,0.000000,0.000000,0.250000,0,0);}
.m22_c00021{transform:matrix(0.280769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280769,0.000000,0.000000,0.250000,0,0);}
.m9d_c00021{transform:matrix(0.281252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281252,0.000000,0.000000,0.250000,0,0);}
.m5c_c00021{transform:matrix(0.281290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281290,0.000000,0.000000,0.250000,0,0);}
.m16_c00021{transform:matrix(0.281775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281775,0.000000,0.000000,0.250000,0,0);}
.m5e_c00021{transform:matrix(0.282230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282230,0.000000,0.000000,0.250000,0,0);}
.m56_c00021{transform:matrix(0.282754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282754,0.000000,0.000000,0.250000,0,0);}
.m9c_c00021{transform:matrix(0.283129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283129,0.000000,0.000000,0.250000,0,0);}
.m2a_c00021{transform:matrix(0.283660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283660,0.000000,0.000000,0.250000,0,0);}
.m14_c00021{transform:matrix(0.284109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284109,0.000000,0.000000,0.250000,0,0);}
.m8_c00021{transform:matrix(0.284634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284634,0.000000,0.000000,0.250000,0,0);}
.m96_c00021{transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);}
.m5f_c00021{transform:matrix(0.286111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286111,0.000000,0.000000,0.250000,0,0);}
.maa_c00021{transform:matrix(0.286115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286115,0.000000,0.000000,0.250000,0,0);}
.m34_c00021{transform:matrix(0.286181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286181,0.000000,0.000000,0.250000,0,0);}
.m8b_c00021{transform:matrix(0.286383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286383,0.000000,0.000000,0.250000,0,0);}
.m78_c00021{transform:matrix(0.286496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286496,0.000000,0.000000,0.250000,0,0);}
.ma5_c00021{transform:matrix(0.286507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286507,0.000000,0.000000,0.250000,0,0);}
.m6e_c00021{transform:matrix(0.286693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286693,0.000000,0.000000,0.250000,0,0);}
.m80_c00021{transform:matrix(0.287823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287823,0.000000,0.000000,0.250000,0,0);}
.m92_c00021{transform:matrix(0.288474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288474,0.000000,0.000000,0.250000,0,0);}
.m4c_c00021{transform:matrix(0.288532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288532,0.000000,0.000000,0.250000,0,0);}
.m4d_c00021{transform:matrix(0.289550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289550,0.000000,0.000000,0.250000,0,0);}
.m9f_c00021{transform:matrix(0.289775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289775,0.000000,0.000000,0.250000,0,0);}
.m5_c00021{transform:matrix(0.289875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289875,0.000000,0.000000,0.250000,0,0);}
.mf_c00021{transform:matrix(0.290107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290107,0.000000,0.000000,0.250000,0,0);}
.m51_c00021{transform:matrix(0.291008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291008,0.000000,0.000000,0.250000,0,0);}
.m2d_c00021{transform:matrix(0.291178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291178,0.000000,0.000000,0.250000,0,0);}
.m7d_c00021{transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);}
.m73_c00021{transform:matrix(0.293261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293261,0.000000,0.000000,0.250000,0,0);}
.m1a_c00021{transform:matrix(0.293394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293394,0.000000,0.000000,0.250000,0,0);}
.m30_c00021{transform:matrix(0.293580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293580,0.000000,0.000000,0.250000,0,0);}
.m3b_c00021{transform:matrix(0.294232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294232,0.000000,0.000000,0.250000,0,0);}
.m41_c00021{transform:matrix(0.294443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294443,0.000000,0.000000,0.250000,0,0);}
.m65_c00021{transform:matrix(0.294780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294780,0.000000,0.000000,0.250000,0,0);}
.mc_c00021{transform:matrix(0.294896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294896,0.000000,0.000000,0.250000,0,0);}
.m4e_c00021{transform:matrix(0.295212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295212,0.000000,0.000000,0.250000,0,0);}
.m90_c00021{transform:matrix(0.295246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295246,0.000000,0.000000,0.250000,0,0);}
.m2e_c00021{transform:matrix(0.296152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296152,0.000000,0.000000,0.250000,0,0);}
.m46_c00021{transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);}
.m77_c00021{transform:matrix(0.296948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296948,0.000000,0.000000,0.250000,0,0);}
.m27_c00021{transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);}
.m4f_c00021{transform:matrix(0.298018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298018,0.000000,0.000000,0.250000,0,0);}
.m55_c00021{transform:matrix(0.298682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298682,0.000000,0.000000,0.250000,0,0);}
.mb4_c00021{transform:matrix(0.298686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298686,0.000000,0.000000,0.250000,0,0);}
.m25_c00021{transform:matrix(0.298938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298938,0.000000,0.000000,0.250000,0,0);}
.m76_c00021{transform:matrix(0.299319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299319,0.000000,0.000000,0.250000,0,0);}
.m5a_c00021{transform:matrix(0.299520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299520,0.000000,0.000000,0.250000,0,0);}
.m47_c00021{transform:matrix(0.300802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300802,0.000000,0.000000,0.250000,0,0);}
.m6a_c00021{transform:matrix(0.301360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301360,0.000000,0.000000,0.250000,0,0);}
.m9e_c00021{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m86_c00021{transform:matrix(0.302703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302703,0.000000,0.000000,0.250000,0,0);}
.ma0_c00021{transform:matrix(0.303086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303086,0.000000,0.000000,0.250000,0,0);}
.ma6_c00021{transform:matrix(0.303642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303642,0.000000,0.000000,0.250000,0,0);}
.mb0_c00021{transform:matrix(0.304116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304116,0.000000,0.000000,0.250000,0,0);}
.m7f_c00021{transform:matrix(0.304256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304256,0.000000,0.000000,0.250000,0,0);}
.m3d_c00021{transform:matrix(0.305069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305069,0.000000,0.000000,0.250000,0,0);}
.m53_c00021{transform:matrix(0.307601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307601,0.000000,0.000000,0.250000,0,0);}
.maf_c00021{transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);}
.m4a_c00021{transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);}
.m7a_c00021{transform:matrix(0.308140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308140,0.000000,0.000000,0.250000,0,0);}
.m99_c00021{transform:matrix(0.308319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308319,0.000000,0.000000,0.250000,0,0);}
.m33_c00021{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m24_c00021{transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);}
.mb3_c00021{transform:matrix(0.309452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309452,0.000000,0.000000,0.250000,0,0);}
.m48_c00021{transform:matrix(0.310101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310101,0.000000,0.000000,0.250000,0,0);}
.m3c_c00021{transform:matrix(0.310875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310875,0.000000,0.000000,0.250000,0,0);}
.m66_c00021{transform:matrix(0.311079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311079,0.000000,0.000000,0.250000,0,0);}
.mb_c00021{transform:matrix(0.312232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312232,0.000000,0.000000,0.250000,0,0);}
.m7_c00021{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.m74_c00021{transform:matrix(0.312674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312674,0.000000,0.000000,0.250000,0,0);}
.m75_c00021{transform:matrix(0.313023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313023,0.000000,0.000000,0.250000,0,0);}
.mad_c00021{transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);}
.ma3_c00021{transform:matrix(0.314134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314134,0.000000,0.000000,0.250000,0,0);}
.m6c_c00021{transform:matrix(0.316224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316224,0.000000,0.000000,0.250000,0,0);}
.m6d_c00021{transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);}
.m7e_c00021{transform:matrix(0.316696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316696,0.000000,0.000000,0.250000,0,0);}
.m9a_c00021{transform:matrix(0.317027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317027,0.000000,0.000000,0.250000,0,0);}
.m29_c00021{transform:matrix(0.317367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317367,0.000000,0.000000,0.250000,0,0);}
.m18_c00021{transform:matrix(0.317859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317859,0.000000,0.000000,0.250000,0,0);}
.m8f_c00021{transform:matrix(0.318314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318314,0.000000,0.000000,0.250000,0,0);}
.m44_c00021{transform:matrix(0.319130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319130,0.000000,0.000000,0.250000,0,0);}
.m67_c00021{transform:matrix(0.319290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319290,0.000000,0.000000,0.250000,0,0);}
.mb2_c00021{transform:matrix(0.320418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320418,0.000000,0.000000,0.250000,0,0);}
.m20_c00021{transform:matrix(0.321256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321256,0.000000,0.000000,0.250000,0,0);}
.ma2_c00021{transform:matrix(0.321272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321272,0.000000,0.000000,0.250000,0,0);}
.m88_c00021{transform:matrix(0.321354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321354,0.000000,0.000000,0.250000,0,0);}
.m13_c00021{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.m97_c00021{transform:matrix(0.324566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324566,0.000000,0.000000,0.250000,0,0);}
.ma1_c00021{transform:matrix(0.324926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324926,0.000000,0.000000,0.250000,0,0);}
.m26_c00021{transform:matrix(0.325086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325086,0.000000,0.000000,0.250000,0,0);}
.m57_c00021{transform:matrix(0.326627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326627,0.000000,0.000000,0.250000,0,0);}
.m19_c00021{transform:matrix(0.326944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326944,0.000000,0.000000,0.250000,0,0);}
.m5d_c00021{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.m1c_c00021{transform:matrix(0.329063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329063,0.000000,0.000000,0.250000,0,0);}
.ma_c00021{transform:matrix(0.329355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329355,0.000000,0.000000,0.250000,0,0);}
.m8a_c00021{transform:matrix(0.331235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331235,0.000000,0.000000,0.250000,0,0);}
.m82_c00021{transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);}
.m71_c00021{transform:matrix(0.331791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331791,0.000000,0.000000,0.250000,0,0);}
.m2f_c00021{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m8e_c00021{transform:matrix(0.335427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335427,0.000000,0.000000,0.250000,0,0);}
.m12_c00021{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);}
.m94_c00021{transform:matrix(0.338655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338655,0.000000,0.000000,0.250000,0,0);}
.m1f_c00021{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m28_c00021{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.m37_c00021{transform:matrix(0.344744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344744,0.000000,0.000000,0.250000,0,0);}
.m72_c00021{transform:matrix(0.348105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348105,0.000000,0.000000,0.250000,0,0);}
.m2b_c00021{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m69_c00021{transform:matrix(0.353045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353045,0.000000,0.000000,0.250000,0,0);}
.m50_c00021{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m54_c00021{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m31_c00021{transform:matrix(0.364903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364903,0.000000,0.000000,0.250000,0,0);}
.m87_c00021{transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);}
.m11_c00021{transform:matrix(0.369365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369365,0.000000,0.000000,0.250000,0,0);}
.v1_c00021{vertical-align:-71.280000px;}
.v2_c00021{vertical-align:-7.128000px;}
.v0_c00021{vertical-align:0.000000px;}
.ls6_c00021{letter-spacing:-2.744280px;}
.ls9_c00021{letter-spacing:-2.258150px;}
.lsb_c00021{letter-spacing:-1.897474px;}
.ls7_c00021{letter-spacing:-1.822590px;}
.ls1_c00021{letter-spacing:0.000000px;}
.lsf_c00021{letter-spacing:1.082030px;}
.lsa_c00021{letter-spacing:2.438489px;}
.ls5_c00021{letter-spacing:3.575405px;}
.ls4_c00021{letter-spacing:3.623400px;}
.ls8_c00021{letter-spacing:3.682810px;}
.lsc_c00021{letter-spacing:3.722400px;}
.lse_c00021{letter-spacing:3.841200px;}
.ls0_c00021{letter-spacing:3.920400px;}
.ls2_c00021{letter-spacing:31.363200px;}
.ls3_c00021{letter-spacing:54.172998px;}
.lsd_c00021{letter-spacing:67.003200px;}
.sc__c00021{text-shadow:none;}
.sc0_c00021{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00021{-webkit-text-stroke:0px transparent;}
.sc0_c00021{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00021{word-spacing:-19.602000px;}
.ws1_c00021{word-spacing:0.000000px;}
._2_c00021{width:6.585480px;}
._4_c00021{width:7.762392px;}
._3_c00021{width:9.487368px;}
._0_c00021{width:2051.359992px;}
._1_c00021{width:2137.451976px;}
.fc0_c00021{color:transparent;}
.fs4_c00021{font-size:25.344000px;}
.fs11_c00021{font-size:27.720000px;}
.fs5_c00021{font-size:31.363200px;}
.fs3_c00021{font-size:38.808000px;}
.fs8_c00021{font-size:39.204000px;}
.fsb_c00021{font-size:52.074000px;}
.fs6_c00021{font-size:54.172998px;}
.fsa_c00021{font-size:55.440000px;}
.fs1_c00021{font-size:62.568000px;}
.fs9_c00021{font-size:64.548000px;}
.fs2_c00021{font-size:66.528000px;}
.fsf_c00021{font-size:67.003200px;}
.fs7_c00021{font-size:72.468000px;}
.fsd_c00021{font-size:73.656198px;}
.fse_c00021{font-size:74.448000px;}
.fs10_c00021{font-size:76.824000px;}
.fs0_c00021{font-size:78.408000px;}
.fsc_c00021{font-size:86.328000px;}
.y0_c00021{bottom:0.000000px;}
.y21_c00021{bottom:8.460570px;}
.y1_c00021{bottom:76.500000px;}
.y20_c00021{bottom:130.710720px;}
.y1f_c00021{bottom:161.004720px;}
.y1e_c00021{bottom:196.288320px;}
.y1d_c00021{bottom:229.433520px;}
.y1c_c00021{bottom:263.647920px;}
.y1b_c00021{bottom:296.788170px;}
.y1a_c00021{bottom:329.576970px;}
.y19_c00021{bottom:363.439920px;}
.y18_c00021{bottom:395.510970px;}
.y17_c00021{bottom:427.948320px;}
.y16_c00021{bottom:460.380720px;}
.y15_c00021{bottom:492.808170px;}
.y14_c00021{bottom:556.965120px;}
.y13_c00021{bottom:589.753920px;}
.y12_c00021{bottom:599.015370px;}
.y11_c00021{bottom:621.824970px;}
.y10_c00021{bottom:654.257370px;}
.yf_c00021{bottom:673.151520px;}
.ye_c00021{bottom:678.497520px;}
.yd_c00021{bottom:687.407520px;}
.yc_c00021{bottom:720.196320px;}
.yb_c00021{bottom:752.985120px;}
.ya_c00021{bottom:785.773920px;}
.y9_c00021{bottom:850.995120px;}
.y8_c00021{bottom:876.299520px;}
.y7_c00021{bottom:884.135370px;}
.y6_c00021{bottom:916.572720px;}
.y5_c00021{bottom:944.010570px;}
.y4_c00021{bottom:956.489520px;}
.y3_c00021{bottom:985.352970px;}
.y2_c00021{bottom:1060.909770px;}
.h5_c00021{height:20.887891px;}
.h11_c00021{height:28.911094px;}
.h6_c00021{height:36.079217px;}
.h8_c00021{height:38.476582px;}
.h4_c00021{height:40.475531px;}
.hf_c00021{height:44.624131px;}
.hb_c00021{height:54.311555px;}
.ha_c00021{height:57.822188px;}
.h3_c00021{height:65.256469px;}
.h9_c00021{height:67.321547px;}
.h7_c00021{height:71.123379px;}
.hd_c00021{height:72.289530px;}
.he_c00021{height:73.066641px;}
.h10_c00021{height:75.398555px;}
.h2_c00021{height:76.953164px;}
.hc_c00021{height:84.726211px;}
.h1_c00021{height:1110.000000px;}
.h0_c00021{height:1263.000000px;}
.w1_c00021{width:718.500000px;}
.w0_c00021{width:892.500000px;}
.x0_c00021{left:0.000000px;}
.x30_c00021{left:64.789335px;}
.x22_c00021{left:66.066435px;}
.x6_c00021{left:69.645285px;}
.x1_c00021{left:87.000000px;}
.x7_c00021{left:91.420335px;}
.x45_c00021{left:96.013935px;}
.x2b_c00021{left:97.825635px;}
.x62_c00021{left:107.423685px;}
.x50_c00021{left:109.740285px;}
.xf_c00021{left:111.309435px;}
.x19_c00021{left:113.601285px;}
.x47_c00021{left:117.388035px;}
.x1a_c00021{left:120.155085px;}
.x31_c00021{left:128.644335px;}
.x4_c00021{left:137.237535px;}
.x3b_c00021{left:138.841335px;}
.x23_c00021{left:141.118335px;}
.x36_c00021{left:150.691635px;}
.x1b_c00021{left:152.141985px;}
.x3_c00021{left:154.468485px;}
.x51_c00021{left:160.537185px;}
.x60_c00021{left:162.116235px;}
.x46_c00021{left:173.818035px;}
.x24_c00021{left:183.326985px;}
.x5a_c00021{left:184.569435px;}
.x10_c00021{left:185.801985px;}
.x48_c00021{left:193.667535px;}
.x4b_c00021{left:194.919885px;}
.x52_c00021{left:195.924735px;}
.x2c_c00021{left:206.294985px;}
.x8_c00021{left:208.675935px;}
.x32_c00021{left:216.986985px;}
.x63_c00021{left:218.773935px;}
.x4c_c00021{left:228.055185px;}
.x1c_c00021{left:239.108535px;}
.x61_c00021{left:240.157935px;}
.x9_c00021{left:250.840035px;}
.x33_c00021{left:261.086535px;}
.x41_c00021{left:272.605185px;}
.x11_c00021{left:273.659535px;}
.x2d_c00021{left:283.648635px;}
.x56_c00021{left:294.350535px;}
.x5c_c00021{left:305.968185px;}
.x12_c00021{left:307.161135px;}
.x25_c00021{left:316.808685px;}
.x1d_c00021{left:328.193685px;}
.x42_c00021{left:339.583635px;}
.x26_c00021{left:350.305335px;}
.x58_c00021{left:360.992385px;}
.xa_c00021{left:372.407085px;}
.x13_c00021{left:383.440635px;}
.x27_c00021{left:394.667235px;}
.x4d_c00021{left:397.280835px;}
.x37_c00021{left:404.651385px;}
.xb_c00021{left:405.898785px;}
.x5d_c00021{left:415.021635px;}
.x1e_c00021{left:417.590685px;}
.x5e_c00021{left:429.054885px;}
.x3c_c00021{left:439.048935px;}
.xc_c00021{left:449.186535px;}
.x38_c00021{left:450.329985px;}
.x5b_c00021{left:460.739835px;}
.x14_c00021{left:461.789235px;}
.x3d_c00021{left:472.204035px;}
.x2e_c00021{left:482.767335px;}
.x53_c00021{left:493.325685px;}
.x15_c00021{left:494.924535px;}
.x5f_c00021{left:503.408835px;}
.x1f_c00021{left:505.611585px;}
.x3e_c00021{left:516.362985px;}
.x57_c00021{left:526.723335px;}
.x40_c00021{left:532.019835px;}
.x43_c00021{left:538.444935px;}
.x49_c00021{left:548.211285px;}
.xd_c00021{left:549.532935px;}
.x54_c00021{left:560.437785px;}
.x20_c00021{left:561.625785px;}
.x39_c00021{left:570.723885px;}
.x3f_c00021{left:572.000985px;}
.xe_c00021{left:583.202835px;}
.x64_c00021{left:592.152435px;}
.x59_c00021{left:593.325585px;}
.x16_c00021{left:594.429435px;}
.x4e_c00021{left:605.299635px;}
.x28_c00021{left:606.898485px;}
.x29_c00021{left:616.055985px;}
.x3a_c00021{left:617.243985px;}
.x21_c00021{left:625.970835px;}
.x4f_c00021{left:627.124185px;}
.x2_c00021{left:637.509285px;}
.x2f_c00021{left:638.915085px;}
.x4a_c00021{left:649.666485px;}
.x55_c00021{left:651.750435px;}
.x44_c00021{left:660.373335px;}
.x34_c00021{left:661.427685px;}
.x2a_c00021{left:672.114735px;}
.x5_c00021{left:677.341935px;}
.x35_c00021{left:685.316385px;}
.x18_c00021{left:690.365385px;}
.x17_c00021{left:693.850185px;}
@media print{
.v1_c00021{vertical-align:-63.360000pt;}
.v2_c00021{vertical-align:-6.336000pt;}
.v0_c00021{vertical-align:0.000000pt;}
.ls6_c00021{letter-spacing:-2.439360pt;}
.ls9_c00021{letter-spacing:-2.007245pt;}
.lsb_c00021{letter-spacing:-1.686643pt;}
.ls7_c00021{letter-spacing:-1.620080pt;}
.ls1_c00021{letter-spacing:0.000000pt;}
.lsf_c00021{letter-spacing:0.961805pt;}
.lsa_c00021{letter-spacing:2.167546pt;}
.ls5_c00021{letter-spacing:3.178138pt;}
.ls4_c00021{letter-spacing:3.220800pt;}
.ls8_c00021{letter-spacing:3.273609pt;}
.lsc_c00021{letter-spacing:3.308800pt;}
.lse_c00021{letter-spacing:3.414400pt;}
.ls0_c00021{letter-spacing:3.484800pt;}
.ls2_c00021{letter-spacing:27.878400pt;}
.ls3_c00021{letter-spacing:48.153776pt;}
.lsd_c00021{letter-spacing:59.558400pt;}
.ws0_c00021{word-spacing:-17.424000pt;}
.ws1_c00021{word-spacing:0.000000pt;}
._2_c00021{width:5.853760pt;}
._4_c00021{width:6.899904pt;}
._3_c00021{width:8.433216pt;}
._0_c00021{width:1823.431104pt;}
._1_c00021{width:1899.957312pt;}
.fs4_c00021{font-size:22.528000pt;}
.fs11_c00021{font-size:24.640000pt;}
.fs5_c00021{font-size:27.878400pt;}
.fs3_c00021{font-size:34.496000pt;}
.fs8_c00021{font-size:34.848000pt;}
.fsb_c00021{font-size:46.288000pt;}
.fs6_c00021{font-size:48.153776pt;}
.fsa_c00021{font-size:49.280000pt;}
.fs1_c00021{font-size:55.616000pt;}
.fs9_c00021{font-size:57.376000pt;}
.fs2_c00021{font-size:59.136000pt;}
.fsf_c00021{font-size:59.558400pt;}
.fs7_c00021{font-size:64.416000pt;}
.fsd_c00021{font-size:65.472176pt;}
.fse_c00021{font-size:66.176000pt;}
.fs10_c00021{font-size:68.288000pt;}
.fs0_c00021{font-size:69.696000pt;}
.fsc_c00021{font-size:76.736000pt;}
.y0_c00021{bottom:0.000000pt;}
.y21_c00021{bottom:7.520507pt;}
.y1_c00021{bottom:68.000000pt;}
.y20_c00021{bottom:116.187307pt;}
.y1f_c00021{bottom:143.115307pt;}
.y1e_c00021{bottom:174.478507pt;}
.y1d_c00021{bottom:203.940907pt;}
.y1c_c00021{bottom:234.353707pt;}
.y1b_c00021{bottom:263.811707pt;}
.y1a_c00021{bottom:292.957307pt;}
.y19_c00021{bottom:323.057707pt;}
.y18_c00021{bottom:351.565307pt;}
.y17_c00021{bottom:380.398507pt;}
.y16_c00021{bottom:409.227307pt;}
.y15_c00021{bottom:438.051707pt;}
.y14_c00021{bottom:495.080107pt;}
.y13_c00021{bottom:524.225707pt;}
.y12_c00021{bottom:532.458107pt;}
.y11_c00021{bottom:552.733307pt;}
.y10_c00021{bottom:581.562107pt;}
.yf_c00021{bottom:598.356907pt;}
.ye_c00021{bottom:603.108907pt;}
.yd_c00021{bottom:611.028907pt;}
.yc_c00021{bottom:640.174507pt;}
.yb_c00021{bottom:669.320107pt;}
.ya_c00021{bottom:698.465707pt;}
.y9_c00021{bottom:756.440107pt;}
.y8_c00021{bottom:778.932907pt;}
.y7_c00021{bottom:785.898107pt;}
.y6_c00021{bottom:814.731307pt;}
.y5_c00021{bottom:839.120507pt;}
.y4_c00021{bottom:850.212907pt;}
.y3_c00021{bottom:875.869307pt;}
.y2_c00021{bottom:943.030907pt;}
.h5_c00021{height:18.567014pt;}
.h11_c00021{height:25.698750pt;}
.h6_c00021{height:32.070415pt;}
.h8_c00021{height:34.201406pt;}
.h4_c00021{height:35.978250pt;}
.hf_c00021{height:39.665894pt;}
.hb_c00021{height:48.276938pt;}
.ha_c00021{height:51.397500pt;}
.h3_c00021{height:58.005750pt;}
.h9_c00021{height:59.841375pt;}
.h7_c00021{height:63.220781pt;}
.hd_c00021{height:64.257360pt;}
.he_c00021{height:64.948125pt;}
.h10_c00021{height:67.020938pt;}
.h2_c00021{height:68.402813pt;}
.hc_c00021{height:75.312188pt;}
.h1_c00021{height:986.666667pt;}
.h0_c00021{height:1122.666667pt;}
.w1_c00021{width:638.666667pt;}
.w0_c00021{width:793.333333pt;}
.x0_c00021{left:0.000000pt;}
.x30_c00021{left:57.590520pt;}
.x22_c00021{left:58.725720pt;}
.x6_c00021{left:61.906920pt;}
.x1_c00021{left:77.333333pt;}
.x7_c00021{left:81.262520pt;}
.x45_c00021{left:85.345720pt;}
.x2b_c00021{left:86.956120pt;}
.x62_c00021{left:95.487720pt;}
.x50_c00021{left:97.546920pt;}
.xf_c00021{left:98.941720pt;}
.x19_c00021{left:100.978920pt;}
.x47_c00021{left:104.344920pt;}
.x1a_c00021{left:106.804520pt;}
.x31_c00021{left:114.350520pt;}
.x4_c00021{left:121.988920pt;}
.x3b_c00021{left:123.414520pt;}
.x23_c00021{left:125.438520pt;}
.x36_c00021{left:133.948120pt;}
.x1b_c00021{left:135.237320pt;}
.x3_c00021{left:137.305320pt;}
.x51_c00021{left:142.699720pt;}
.x60_c00021{left:144.103320pt;}
.x46_c00021{left:154.504920pt;}
.x24_c00021{left:162.957320pt;}
.x5a_c00021{left:164.061720pt;}
.x10_c00021{left:165.157320pt;}
.x48_c00021{left:172.148920pt;}
.x4b_c00021{left:173.262120pt;}
.x52_c00021{left:174.155320pt;}
.x2c_c00021{left:183.373320pt;}
.x8_c00021{left:185.489720pt;}
.x32_c00021{left:192.877320pt;}
.x63_c00021{left:194.465720pt;}
.x4c_c00021{left:202.715720pt;}
.x1c_c00021{left:212.540920pt;}
.x61_c00021{left:213.473720pt;}
.x9_c00021{left:222.968920pt;}
.x33_c00021{left:232.076920pt;}
.x41_c00021{left:242.315720pt;}
.x11_c00021{left:243.252920pt;}
.x2d_c00021{left:252.132120pt;}
.x56_c00021{left:261.644920pt;}
.x5c_c00021{left:271.971720pt;}
.x12_c00021{left:273.032120pt;}
.x25_c00021{left:281.607720pt;}
.x1d_c00021{left:291.727720pt;}
.x42_c00021{left:301.852120pt;}
.x26_c00021{left:311.382520pt;}
.x58_c00021{left:320.882120pt;}
.xa_c00021{left:331.028520pt;}
.x13_c00021{left:340.836120pt;}
.x27_c00021{left:350.815320pt;}
.x4d_c00021{left:353.138520pt;}
.x37_c00021{left:359.690120pt;}
.xb_c00021{left:360.798920pt;}
.x5d_c00021{left:368.908120pt;}
.x1e_c00021{left:371.191720pt;}
.x5e_c00021{left:381.382120pt;}
.x3c_c00021{left:390.265720pt;}
.xc_c00021{left:399.276920pt;}
.x38_c00021{left:400.293320pt;}
.x5b_c00021{left:409.546520pt;}
.x14_c00021{left:410.479320pt;}
.x3d_c00021{left:419.736920pt;}
.x2e_c00021{left:429.126520pt;}
.x53_c00021{left:438.511720pt;}
.x15_c00021{left:439.932920pt;}
.x5f_c00021{left:447.474520pt;}
.x1f_c00021{left:449.432520pt;}
.x3e_c00021{left:458.989320pt;}
.x57_c00021{left:468.198520pt;}
.x40_c00021{left:472.906520pt;}
.x43_c00021{left:478.617720pt;}
.x49_c00021{left:487.298920pt;}
.xd_c00021{left:488.473720pt;}
.x54_c00021{left:498.166920pt;}
.x20_c00021{left:499.222920pt;}
.x39_c00021{left:507.310120pt;}
.x3f_c00021{left:508.445320pt;}
.xe_c00021{left:518.402520pt;}
.x64_c00021{left:526.357720pt;}
.x59_c00021{left:527.400520pt;}
.x16_c00021{left:528.381720pt;}
.x4e_c00021{left:538.044120pt;}
.x28_c00021{left:539.465320pt;}
.x29_c00021{left:547.605320pt;}
.x3a_c00021{left:548.661320pt;}
.x21_c00021{left:556.418520pt;}
.x4f_c00021{left:557.443720pt;}
.x2_c00021{left:566.674920pt;}
.x2f_c00021{left:567.924520pt;}
.x4a_c00021{left:577.481320pt;}
.x55_c00021{left:579.333720pt;}
.x44_c00021{left:586.998520pt;}
.x34_c00021{left:587.935720pt;}
.x2a_c00021{left:597.435320pt;}
.x5_c00021{left:602.081720pt;}
.x35_c00021{left:609.170120pt;}
.x18_c00021{left:613.658120pt;}
.x17_c00021{left:616.755720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_69f5833f10a746a050ac5584.woff2')format("woff");}.ff1_c00022{font-family:ff1_c00022;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00022;src:url('chunks/assets/font_f547bfc66eeca61229d80bf4.woff2')format("woff");}.ff2_c00022{font-family:ff2_c00022;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00022;src:url('chunks/assets/font_f26f91ffe27c22cbaa90a2fc.woff2')format("woff");}.ff3_c00022{font-family:ff3_c00022;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00022;src:url('chunks/assets/font_08cb79062079c858a4e5948b.woff2')format("woff");}.ff4_c00022{font-family:ff4_c00022;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m85_c00022{transform:matrix(0.194549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194549,0.000000,0.000000,0.250000,0,0);}
.m76_c00022{transform:matrix(0.201459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201459,0.000000,0.000000,0.250000,0,0);}
.m87_c00022{transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);}
.m2c_c00022{transform:matrix(0.215616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215616,0.000000,0.000000,0.250000,0,0);}
.m6e_c00022{transform:matrix(0.217460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217460,0.000000,0.000000,0.250000,0,0);}
.m3c_c00022{transform:matrix(0.222600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222600,0.000000,0.000000,0.250000,0,0);}
.m54_c00022{transform:matrix(0.225922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225922,0.000000,0.000000,0.250000,0,0);}
.m1_c00022{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m51_c00022{transform:matrix(0.251993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251993,0.000000,0.000000,0.250000,0,0);}
.m67_c00022{transform:matrix(0.252171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252171,0.000000,0.000000,0.250000,0,0);}
.m13_c00022{transform:matrix(0.253682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253682,0.000000,0.000000,0.250000,0,0);}
.m4c_c00022{transform:matrix(0.254631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254631,0.000000,0.000000,0.250000,0,0);}
.m1f_c00022{transform:matrix(0.255538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255538,0.000000,0.000000,0.250000,0,0);}
.m4_c00022{transform:matrix(0.256600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256600,0.000000,0.000000,0.250000,0,0);}
.m79_c00022{transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);}
.m5c_c00022{transform:matrix(0.257933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257933,0.000000,0.000000,0.250000,0,0);}
.m6d_c00022{transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);}
.m17_c00022{transform:matrix(0.260369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260369,0.000000,0.000000,0.250000,0,0);}
.mf_c00022{transform:matrix(0.260559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260559,0.000000,0.000000,0.250000,0,0);}
.m89_c00022{transform:matrix(0.261057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261057,0.000000,0.000000,0.250000,0,0);}
.m25_c00022{transform:matrix(0.262056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262056,0.000000,0.000000,0.250000,0,0);}
.m18_c00022{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m57_c00022{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m61_c00022{transform:matrix(0.264739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264739,0.000000,0.000000,0.250000,0,0);}
.m7d_c00022{transform:matrix(0.265361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265361,0.000000,0.000000,0.250000,0,0);}
.m29_c00022{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m22_c00022{transform:matrix(0.267249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267249,0.000000,0.000000,0.250000,0,0);}
.m8c_c00022{transform:matrix(0.267779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267779,0.000000,0.000000,0.250000,0,0);}
.mc_c00022{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m32_c00022{transform:matrix(0.268177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268177,0.000000,0.000000,0.250000,0,0);}
.m46_c00022{transform:matrix(0.269857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269857,0.000000,0.000000,0.250000,0,0);}
.m33_c00022{transform:matrix(0.270499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270499,0.000000,0.000000,0.250000,0,0);}
.m62_c00022{transform:matrix(0.270628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270628,0.000000,0.000000,0.250000,0,0);}
.m49_c00022{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m66_c00022{transform:matrix(0.272311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272311,0.000000,0.000000,0.250000,0,0);}
.m1e_c00022{transform:matrix(0.272357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272357,0.000000,0.000000,0.250000,0,0);}
.m5_c00022{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m3d_c00022{transform:matrix(0.272943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272943,0.000000,0.000000,0.250000,0,0);}
.m86_c00022{transform:matrix(0.273802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273802,0.000000,0.000000,0.250000,0,0);}
.m40_c00022{transform:matrix(0.274281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274281,0.000000,0.000000,0.250000,0,0);}
.m15_c00022{transform:matrix(0.275247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275247,0.000000,0.000000,0.250000,0,0);}
.m1c_c00022{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m10_c00022{transform:matrix(0.276792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276792,0.000000,0.000000,0.250000,0,0);}
.m60_c00022{transform:matrix(0.277320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277320,0.000000,0.000000,0.250000,0,0);}
.m47_c00022{transform:matrix(0.279941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279941,0.000000,0.000000,0.250000,0,0);}
.m8d_c00022{transform:matrix(0.280210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280210,0.000000,0.000000,0.250000,0,0);}
.m55_c00022{transform:matrix(0.280566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280566,0.000000,0.000000,0.250000,0,0);}
.m5a_c00022{transform:matrix(0.280957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280957,0.000000,0.000000,0.250000,0,0);}
.ma_c00022{transform:matrix(0.281514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281514,0.000000,0.000000,0.250000,0,0);}
.m68_c00022{transform:matrix(0.282371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282371,0.000000,0.000000,0.250000,0,0);}
.me_c00022{transform:matrix(0.283382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283382,0.000000,0.000000,0.250000,0,0);}
.m84_c00022{transform:matrix(0.283902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283902,0.000000,0.000000,0.250000,0,0);}
.m3_c00022{transform:matrix(0.284092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284092,0.000000,0.000000,0.250000,0,0);}
.m45_c00022{transform:matrix(0.284534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284534,0.000000,0.000000,0.250000,0,0);}
.m35_c00022{transform:matrix(0.284558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284558,0.000000,0.000000,0.250000,0,0);}
.m4a_c00022{transform:matrix(0.284987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284987,0.000000,0.000000,0.250000,0,0);}
.m56_c00022{transform:matrix(0.285291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285291,0.000000,0.000000,0.250000,0,0);}
.m23_c00022{transform:matrix(0.286496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286496,0.000000,0.000000,0.250000,0,0);}
.m2b_c00022{transform:matrix(0.286838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286838,0.000000,0.000000,0.250000,0,0);}
.m41_c00022{transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);}
.m0_c00022{transform:matrix(0.287116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287116,0.000000,0.000000,0.250000,0,0);}
.m5b_c00022{transform:matrix(0.287660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287660,0.000000,0.000000,0.250000,0,0);}
.m34_c00022{transform:matrix(0.287735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287735,0.000000,0.000000,0.250000,0,0);}
.m43_c00022{transform:matrix(0.288157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288157,0.000000,0.000000,0.250000,0,0);}
.m3f_c00022{transform:matrix(0.288484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288484,0.000000,0.000000,0.250000,0,0);}
.m27_c00022{transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);}
.m74_c00022{transform:matrix(0.290210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290210,0.000000,0.000000,0.250000,0,0);}
.m4e_c00022{transform:matrix(0.290388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290388,0.000000,0.000000,0.250000,0,0);}
.m42_c00022{transform:matrix(0.291013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291013,0.000000,0.000000,0.250000,0,0);}
.m7_c00022{transform:matrix(0.291286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291286,0.000000,0.000000,0.250000,0,0);}
.m8a_c00022{transform:matrix(0.291612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291612,0.000000,0.000000,0.250000,0,0);}
.m7c_c00022{transform:matrix(0.292051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292051,0.000000,0.000000,0.250000,0,0);}
.m3e_c00022{transform:matrix(0.292085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292085,0.000000,0.000000,0.250000,0,0);}
.m6a_c00022{transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);}
.m3b_c00022{transform:matrix(0.292612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292612,0.000000,0.000000,0.250000,0,0);}
.m73_c00022{transform:matrix(0.293037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293037,0.000000,0.000000,0.250000,0,0);}
.m30_c00022{transform:matrix(0.293096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293096,0.000000,0.000000,0.250000,0,0);}
.m1a_c00022{transform:matrix(0.293689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293689,0.000000,0.000000,0.250000,0,0);}
.m48_c00022{transform:matrix(0.294474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294474,0.000000,0.000000,0.250000,0,0);}
.m24_c00022{transform:matrix(0.294567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294567,0.000000,0.000000,0.250000,0,0);}
.m63_c00022{transform:matrix(0.295828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295828,0.000000,0.000000,0.250000,0,0);}
.m72_c00022{transform:matrix(0.295889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295889,0.000000,0.000000,0.250000,0,0);}
.m16_c00022{transform:matrix(0.297066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297066,0.000000,0.000000,0.250000,0,0);}
.m81_c00022{transform:matrix(0.297898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297898,0.000000,0.000000,0.250000,0,0);}
.m20_c00022{transform:matrix(0.298121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298121,0.000000,0.000000,0.250000,0,0);}
.m4b_c00022{transform:matrix(0.298266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298266,0.000000,0.000000,0.250000,0,0);}
.m75_c00022{transform:matrix(0.299330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299330,0.000000,0.000000,0.250000,0,0);}
.m6b_c00022{transform:matrix(0.299583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299583,0.000000,0.000000,0.250000,0,0);}
.m5e_c00022{transform:matrix(0.300052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300052,0.000000,0.000000,0.250000,0,0);}
.m5d_c00022{transform:matrix(0.300818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300818,0.000000,0.000000,0.250000,0,0);}
.m2_c00022{transform:matrix(0.303158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303158,0.000000,0.000000,0.250000,0,0);}
.m8b_c00022{transform:matrix(0.303468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303468,0.000000,0.000000,0.250000,0,0);}
.m88_c00022{transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);}
.m26_c00022{transform:matrix(0.305529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305529,0.000000,0.000000,0.250000,0,0);}
.m7f_c00022{transform:matrix(0.305723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305723,0.000000,0.000000,0.250000,0,0);}
.m9_c00022{transform:matrix(0.306246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306246,0.000000,0.000000,0.250000,0,0);}
.m59_c00022{transform:matrix(0.306449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306449,0.000000,0.000000,0.250000,0,0);}
.m83_c00022{transform:matrix(0.307225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307225,0.000000,0.000000,0.250000,0,0);}
.m65_c00022{transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);}
.m71_c00022{transform:matrix(0.307871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307871,0.000000,0.000000,0.250000,0,0);}
.m7a_c00022{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m1b_c00022{transform:matrix(0.309437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309437,0.000000,0.000000,0.250000,0,0);}
.m64_c00022{transform:matrix(0.309729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309729,0.000000,0.000000,0.250000,0,0);}
.m7e_c00022{transform:matrix(0.309750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00022{transform:matrix(0.309860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309860,0.000000,0.000000,0.250000,0,0);}
.m4f_c00022{transform:matrix(0.310012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310012,0.000000,0.000000,0.250000,0,0);}
.m6c_c00022{transform:matrix(0.311114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311114,0.000000,0.000000,0.250000,0,0);}
.m8_c00022{transform:matrix(0.311211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311211,0.000000,0.000000,0.250000,0,0);}
.m36_c00022{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.m28_c00022{transform:matrix(0.313172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313172,0.000000,0.000000,0.250000,0,0);}
.m39_c00022{transform:matrix(0.313344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313344,0.000000,0.000000,0.250000,0,0);}
.m38_c00022{transform:matrix(0.313434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313434,0.000000,0.000000,0.250000,0,0);}
.m21_c00022{transform:matrix(0.313453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313453,0.000000,0.000000,0.250000,0,0);}
.m2d_c00022{transform:matrix(0.313685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313685,0.000000,0.000000,0.250000,0,0);}
.mb_c00022{transform:matrix(0.315225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315225,0.000000,0.000000,0.250000,0,0);}
.m82_c00022{transform:matrix(0.315390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315390,0.000000,0.000000,0.250000,0,0);}
.m5f_c00022{transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);}
.m37_c00022{transform:matrix(0.316482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316482,0.000000,0.000000,0.250000,0,0);}
.m7b_c00022{transform:matrix(0.317184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317184,0.000000,0.000000,0.250000,0,0);}
.m52_c00022{transform:matrix(0.318093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318093,0.000000,0.000000,0.250000,0,0);}
.m6f_c00022{transform:matrix(0.319684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319684,0.000000,0.000000,0.250000,0,0);}
.m1d_c00022{transform:matrix(0.319808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319808,0.000000,0.000000,0.250000,0,0);}
.m6_c00022{transform:matrix(0.319859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319859,0.000000,0.000000,0.250000,0,0);}
.m70_c00022{transform:matrix(0.323503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323503,0.000000,0.000000,0.250000,0,0);}
.m53_c00022{transform:matrix(0.325665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325665,0.000000,0.000000,0.250000,0,0);}
.md_c00022{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.m58_c00022{transform:matrix(0.329003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329003,0.000000,0.000000,0.250000,0,0);}
.m44_c00022{transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);}
.m77_c00022{transform:matrix(0.333001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333001,0.000000,0.000000,0.250000,0,0);}
.m14_c00022{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m11_c00022{transform:matrix(0.333540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333540,0.000000,0.000000,0.250000,0,0);}
.m50_c00022{transform:matrix(0.333988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333988,0.000000,0.000000,0.250000,0,0);}
.m69_c00022{transform:matrix(0.334051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334051,0.000000,0.000000,0.250000,0,0);}
.m31_c00022{transform:matrix(0.335434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335434,0.000000,0.000000,0.250000,0,0);}
.m80_c00022{transform:matrix(0.339869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339869,0.000000,0.000000,0.250000,0,0);}
.m2a_c00022{transform:matrix(0.344410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344410,0.000000,0.000000,0.250000,0,0);}
.m2f_c00022{transform:matrix(0.346728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346728,0.000000,0.000000,0.250000,0,0);}
.m2e_c00022{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m19_c00022{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m78_c00022{transform:matrix(0.355515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355515,0.000000,0.000000,0.250000,0,0);}
.m4d_c00022{transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);}
.m12_c00022{transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);}
.v0_c00022{vertical-align:0.000000px;}
.ls6_c00022{letter-spacing:-2.744280px;}
.lsc_c00022{letter-spacing:-1.884967px;}
.ls4_c00022{letter-spacing:-1.521115px;}
.ls7_c00022{letter-spacing:-0.258746px;}
.ls1_c00022{letter-spacing:0.000000px;}
.ls8_c00022{letter-spacing:0.446926px;}
.ls3_c00022{letter-spacing:1.082030px;}
.ls2_c00022{letter-spacing:2.093494px;}
.lsa_c00022{letter-spacing:2.736439px;}
.ls9_c00022{letter-spacing:2.791325px;}
.ls0_c00022{letter-spacing:3.920400px;}
.ls5_c00022{letter-spacing:4.474810px;}
.lsb_c00022{letter-spacing:49.896198px;}
.lsd_c00022{letter-spacing:54.172998px;}
.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;}
}
.ws1_c00022{word-spacing:-19.602000px;}
.ws2_c00022{word-spacing:0.000000px;}
.ws0_c00022{word-spacing:3.606768px;}
._1_c00022{width:5.253336px;}
._0_c00022{width:8.624880px;}
._3_c00022{width:16.779312px;}
._4_c00022{width:31.057488px;}
._2_c00022{width:73.002600px;}
.fc0_c00022{color:transparent;}
.fsf_c00022{font-size:20.394000px;}
.fs4_c00022{font-size:26.928000px;}
.fs2_c00022{font-size:27.720000px;}
.fs8_c00022{font-size:39.204000px;}
.fsd_c00022{font-size:43.560000px;}
.fs3_c00022{font-size:44.748000px;}
.fsa_c00022{font-size:49.896198px;}
.fse_c00022{font-size:50.292000px;}
.fsb_c00022{font-size:53.856198px;}
.fsc_c00022{font-size:54.172998px;}
.fs7_c00022{font-size:66.330000px;}
.fs9_c00022{font-size:66.528000px;}
.fs1_c00022{font-size:77.616198px;}
.fs0_c00022{font-size:78.408000px;}
.fs5_c00022{font-size:78.804000px;}
.fs6_c00022{font-size:89.496198px;}
.y0_c00022{bottom:0.000000px;}
.y1e_c00022{bottom:42.318585px;}
.y21_c00022{bottom:67.622985px;}
.y1_c00022{bottom:76.500000px;}
.y20_c00022{bottom:85.804335px;}
.y1d_c00022{bottom:139.264335px;}
.y1c_c00022{bottom:169.558335px;}
.y1b_c00022{bottom:204.129135px;}
.y1f_c00022{bottom:240.125535px;}
.y1a_c00022{bottom:271.132335px;}
.y19_c00022{bottom:303.921135px;}
.y18_c00022{bottom:335.640735px;}
.y16_c00022{bottom:336.353535px;}
.y17_c00022{bottom:344.550735px;}
.y15_c00022{bottom:369.142335px;}
.y14_c00022{bottom:402.282585px;}
.y13_c00022{bottom:435.071385px;}
.y12_c00022{bottom:531.655785px;}
.y11_c00022{bottom:566.231535px;}
.y10_c00022{bottom:600.445935px;}
.yf_c00022{bottom:632.516985px;}
.ye_c00022{bottom:664.954335px;}
.yd_c00022{bottom:697.386735px;}
.yc_c00022{bottom:729.819135px;}
.yb_c00022{bottom:761.890185px;}
.ya_c00022{bottom:795.040335px;}
.y9_c00022{bottom:807.514335px;}
.y8_c00022{bottom:828.536985px;}
.y7_c00022{bottom:893.758185px;}
.y6_c00022{bottom:901.960335px;}
.y5_c00022{bottom:929.754585px;}
.y4_c00022{bottom:970.745535px;}
.y3_c00022{bottom:1003.534335px;}
.y2_c00022{bottom:1083.362985px;}
.h10_c00022{height:21.270305px;}
.h6_c00022{height:28.085063px;}
.h4_c00022{height:28.911094px;}
.hb_c00022{height:33.230868px;}
.hd_c00022{height:36.079217px;}
.h5_c00022{height:43.917715px;}
.he_c00022{height:45.431719px;}
.hf_c00022{height:49.358848px;}
.hc_c00022{height:56.170332px;}
.h9_c00022{height:69.180117px;}
.ha_c00022{height:69.386625px;}
.h2_c00022{height:76.953164px;}
.h7_c00022{height:77.341816px;}
.h3_c00022{height:80.951269px;}
.h8_c00022{height:87.835624px;}
.h1_c00022{height:1110.000000px;}
.h0_c00022{height:1263.000000px;}
.w1_c00022{width:718.500000px;}
.w0_c00022{width:892.500000px;}
.x0_c00022{left:0.000000px;}
.x34_c00022{left:54.344835px;}
.x55_c00022{left:55.379385px;}
.x25_c00022{left:56.453535px;}
.x20_c00022{left:59.428485px;}
.x5_c00022{left:60.527385px;}
.x5a_c00022{left:77.659335px;}
.x1_c00022{left:87.000000px;}
.x26_c00022{left:98.929485px;}
.x6_c00022{left:101.681685px;}
.x1a_c00022{left:109.136385px;}
.xf_c00022{left:110.903535px;}
.x56_c00022{left:120.164985px;}
.x2e_c00022{left:130.223385px;}
.x27_c00022{left:131.708385px;}
.x7_c00022{left:133.138935px;}
.xe_c00022{left:137.920635px;}
.x10_c00022{left:142.524135px;}
.x4_c00022{left:144.410085px;}
.x2f_c00022{left:150.161985px;}
.x30_c00022{left:152.676585px;}
.x21_c00022{left:165.308985px;}
.x8_c00022{left:175.119885px;}
.x4d_c00022{left:176.367285px;}
.x35_c00022{left:186.876135px;}
.x4c_c00022{left:188.123535px;}
.x1b_c00022{left:198.761085px;}
.x4a_c00022{left:207.859185px;}
.x3b_c00022{left:209.522385px;}
.x40_c00022{left:218.892735px;}
.x36_c00022{left:220.897485px;}
.x1c_c00022{left:230.302485px;}
.x9_c00022{left:241.959735px;}
.x37_c00022{left:253.374435px;}
.x28_c00022{left:255.428685px;}
.x11_c00022{left:264.417885px;}
.xa_c00022{left:275.778135px;}
.x50_c00022{left:276.847335px;}
.x3c_c00022{left:287.227485px;}
.x12_c00022{left:297.899685px;}
.x38_c00022{left:298.949085px;}
.x31_c00022{left:308.967885px;}
.x29_c00022{left:319.748985px;}
.x53_c00022{left:332.430885px;}
.x13_c00022{left:340.781535px;}
.x32_c00022{left:342.434835px;}
.x57_c00022{left:344.855385px;}
.xb_c00022{left:353.171385px;}
.x41_c00022{left:364.457385px;}
.x1d_c00022{left:371.055735px;}
.x22_c00022{left:375.347385px;}
.x5b_c00022{left:387.370935px;}
.x39_c00022{left:397.701585px;}
.x4b_c00022{left:408.279735px;}
.x3d_c00022{left:409.442985px;}
.x23_c00022{left:419.239035px;}
.x42_c00022{left:420.832935px;}
.x14_c00022{left:441.009135px;}
.x1e_c00022{left:442.895085px;}
.x2a_c00022{left:453.661335px;}
.x58_c00022{left:464.566185px;}
.x15_c00022{left:475.753185px;}
.x33_c00022{left:498.171735px;}
.x54_c00022{left:507.992535px;}
.xc_c00022{left:520.253685px;}
.x43_c00022{left:521.362485px;}
.x19_c00022{left:524.614635px;}
.x51_c00022{left:529.223085px;}
.x16_c00022{left:530.292285px;}
.x44_c00022{left:531.336735px;}
.x46_c00022{left:542.380185px;}
.x17_c00022{left:551.809935px;}
.x59_c00022{left:553.804785px;}
.x24_c00022{left:564.496785px;}
.x47_c00022{left:574.471035px;}
.x2b_c00022{left:575.535285px;}
.xd_c00022{left:585.326385px;}
.x3e_c00022{left:597.107385px;}
.x2c_c00022{left:607.967685px;}
.x1f_c00022{left:618.134985px;}
.x3a_c00022{left:619.709085px;}
.x2_c00022{left:629.307135px;}
.x45_c00022{left:630.410985px;}
.x48_c00022{left:640.771335px;}
.x4e_c00022{left:644.746185px;}
.x2d_c00022{left:651.765285px;}
.x18_c00022{left:662.823585px;}
.x49_c00022{left:664.273935px;}
.x3_c00022{left:668.303235px;}
.x4f_c00022{left:670.204035px;}
.x52_c00022{left:672.832485px;}
.x3f_c00022{left:674.248185px;}
.x5c_c00022{left:675.347085px;}
.x5d_c00022{left:707.527035px;}
.x5f_c00022{left:708.705135px;}
.x5e_c00022{left:712.417635px;}
@media print{
.v0_c00022{vertical-align:0.000000pt;}
.ls6_c00022{letter-spacing:-2.439360pt;}
.lsc_c00022{letter-spacing:-1.675526pt;}
.ls4_c00022{letter-spacing:-1.352102pt;}
.ls7_c00022{letter-spacing:-0.229997pt;}
.ls1_c00022{letter-spacing:0.000000pt;}
.ls8_c00022{letter-spacing:0.397267pt;}
.ls3_c00022{letter-spacing:0.961805pt;}
.ls2_c00022{letter-spacing:1.860883pt;}
.lsa_c00022{letter-spacing:2.432390pt;}
.ls9_c00022{letter-spacing:2.481178pt;}
.ls0_c00022{letter-spacing:3.484800pt;}
.ls5_c00022{letter-spacing:3.977609pt;}
.lsb_c00022{letter-spacing:44.352176pt;}
.lsd_c00022{letter-spacing:48.153776pt;}
.ws1_c00022{word-spacing:-17.424000pt;}
.ws2_c00022{word-spacing:0.000000pt;}
.ws0_c00022{word-spacing:3.206016pt;}
._1_c00022{width:4.669632pt;}
._0_c00022{width:7.666560pt;}
._3_c00022{width:14.914944pt;}
._4_c00022{width:27.606656pt;}
._2_c00022{width:64.891200pt;}
.fsf_c00022{font-size:18.128000pt;}
.fs4_c00022{font-size:23.936000pt;}
.fs2_c00022{font-size:24.640000pt;}
.fs8_c00022{font-size:34.848000pt;}
.fsd_c00022{font-size:38.720000pt;}
.fs3_c00022{font-size:39.776000pt;}
.fsa_c00022{font-size:44.352176pt;}
.fse_c00022{font-size:44.704000pt;}
.fsb_c00022{font-size:47.872176pt;}
.fsc_c00022{font-size:48.153776pt;}
.fs7_c00022{font-size:58.960000pt;}
.fs9_c00022{font-size:59.136000pt;}
.fs1_c00022{font-size:68.992176pt;}
.fs0_c00022{font-size:69.696000pt;}
.fs5_c00022{font-size:70.048000pt;}
.fs6_c00022{font-size:79.552176pt;}
.y0_c00022{bottom:0.000000pt;}
.y1e_c00022{bottom:37.616520pt;}
.y21_c00022{bottom:60.109320pt;}
.y1_c00022{bottom:68.000000pt;}
.y20_c00022{bottom:76.270520pt;}
.y1d_c00022{bottom:123.790520pt;}
.y1c_c00022{bottom:150.718520pt;}
.y1b_c00022{bottom:181.448120pt;}
.y1f_c00022{bottom:213.444920pt;}
.y1a_c00022{bottom:241.006520pt;}
.y19_c00022{bottom:270.152120pt;}
.y18_c00022{bottom:298.347320pt;}
.y16_c00022{bottom:298.980920pt;}
.y17_c00022{bottom:306.267320pt;}
.y15_c00022{bottom:328.126520pt;}
.y14_c00022{bottom:357.584520pt;}
.y13_c00022{bottom:386.730120pt;}
.y12_c00022{bottom:472.582920pt;}
.y11_c00022{bottom:503.316920pt;}
.y10_c00022{bottom:533.729720pt;}
.yf_c00022{bottom:562.237320pt;}
.ye_c00022{bottom:591.070520pt;}
.yd_c00022{bottom:619.899320pt;}
.yc_c00022{bottom:648.728120pt;}
.yb_c00022{bottom:677.235720pt;}
.ya_c00022{bottom:706.702520pt;}
.y9_c00022{bottom:717.790520pt;}
.y8_c00022{bottom:736.477320pt;}
.y7_c00022{bottom:794.451720pt;}
.y6_c00022{bottom:801.742520pt;}
.y5_c00022{bottom:826.448520pt;}
.y4_c00022{bottom:862.884920pt;}
.y3_c00022{bottom:892.030520pt;}
.y2_c00022{bottom:962.989320pt;}
.h10_c00022{height:18.906938pt;}
.h6_c00022{height:24.964500pt;}
.h4_c00022{height:25.698750pt;}
.hb_c00022{height:29.538549pt;}
.hd_c00022{height:32.070415pt;}
.h5_c00022{height:39.037969pt;}
.he_c00022{height:40.383750pt;}
.hf_c00022{height:43.874531pt;}
.hc_c00022{height:49.929184pt;}
.h9_c00022{height:61.493438pt;}
.ha_c00022{height:61.677000pt;}
.h2_c00022{height:68.402813pt;}
.h7_c00022{height:68.748281pt;}
.h3_c00022{height:71.956684pt;}
.h8_c00022{height:78.076110pt;}
.h1_c00022{height:986.666667pt;}
.h0_c00022{height:1122.666667pt;}
.w1_c00022{width:638.666667pt;}
.w0_c00022{width:793.333333pt;}
.x0_c00022{left:0.000000pt;}
.x34_c00022{left:48.306520pt;}
.x55_c00022{left:49.226120pt;}
.x25_c00022{left:50.180920pt;}
.x20_c00022{left:52.825320pt;}
.x5_c00022{left:53.802120pt;}
.x5a_c00022{left:69.030520pt;}
.x1_c00022{left:77.333333pt;}
.x26_c00022{left:87.937320pt;}
.x6_c00022{left:90.383720pt;}
.x1a_c00022{left:97.010120pt;}
.xf_c00022{left:98.580920pt;}
.x56_c00022{left:106.813320pt;}
.x2e_c00022{left:115.754120pt;}
.x27_c00022{left:117.074120pt;}
.x7_c00022{left:118.345720pt;}
.xe_c00022{left:122.596120pt;}
.x10_c00022{left:126.688120pt;}
.x4_c00022{left:128.364520pt;}
.x2f_c00022{left:133.477320pt;}
.x30_c00022{left:135.712520pt;}
.x21_c00022{left:146.941320pt;}
.x8_c00022{left:155.662120pt;}
.x4d_c00022{left:156.770920pt;}
.x35_c00022{left:166.112120pt;}
.x4c_c00022{left:167.220920pt;}
.x1b_c00022{left:176.676520pt;}
.x4a_c00022{left:184.763720pt;}
.x3b_c00022{left:186.242120pt;}
.x40_c00022{left:194.571320pt;}
.x36_c00022{left:196.353320pt;}
.x1c_c00022{left:204.713320pt;}
.x9_c00022{left:215.075320pt;}
.x37_c00022{left:225.221720pt;}
.x28_c00022{left:227.047720pt;}
.x11_c00022{left:235.038120pt;}
.xa_c00022{left:245.136120pt;}
.x50_c00022{left:246.086520pt;}
.x3c_c00022{left:255.313320pt;}
.x12_c00022{left:264.799720pt;}
.x38_c00022{left:265.732520pt;}
.x31_c00022{left:274.638120pt;}
.x29_c00022{left:284.221320pt;}
.x53_c00022{left:295.494120pt;}
.x13_c00022{left:302.916920pt;}
.x32_c00022{left:304.386520pt;}
.x57_c00022{left:306.538120pt;}
.xb_c00022{left:313.930120pt;}
.x41_c00022{left:323.962120pt;}
.x1d_c00022{left:329.827320pt;}
.x22_c00022{left:333.642120pt;}
.x5b_c00022{left:344.329720pt;}
.x39_c00022{left:353.512520pt;}
.x4b_c00022{left:362.915320pt;}
.x3d_c00022{left:363.949320pt;}
.x23_c00022{left:372.656920pt;}
.x42_c00022{left:374.073720pt;}
.x14_c00022{left:392.008120pt;}
.x1e_c00022{left:393.684520pt;}
.x2a_c00022{left:403.254520pt;}
.x58_c00022{left:412.947720pt;}
.x15_c00022{left:422.891720pt;}
.x33_c00022{left:442.819320pt;}
.x54_c00022{left:451.548920pt;}
.xc_c00022{left:462.447720pt;}
.x43_c00022{left:463.433320pt;}
.x19_c00022{left:466.324120pt;}
.x51_c00022{left:470.420520pt;}
.x16_c00022{left:471.370920pt;}
.x44_c00022{left:472.299320pt;}
.x46_c00022{left:482.115720pt;}
.x17_c00022{left:490.497720pt;}
.x59_c00022{left:492.270920pt;}
.x24_c00022{left:501.774920pt;}
.x47_c00022{left:510.640920pt;}
.x2b_c00022{left:511.586920pt;}
.xd_c00022{left:520.290120pt;}
.x3e_c00022{left:530.762120pt;}
.x2c_c00022{left:540.415720pt;}
.x1f_c00022{left:549.453320pt;}
.x3a_c00022{left:550.852520pt;}
.x2_c00022{left:559.384120pt;}
.x45_c00022{left:560.365320pt;}
.x48_c00022{left:569.574520pt;}
.x4e_c00022{left:573.107720pt;}
.x2d_c00022{left:579.346920pt;}
.x18_c00022{left:589.176520pt;}
.x49_c00022{left:590.465720pt;}
.x3_c00022{left:594.047320pt;}
.x4f_c00022{left:595.736920pt;}
.x52_c00022{left:598.073320pt;}
.x3f_c00022{left:599.331720pt;}
.x5c_c00022{left:600.308520pt;}
.x5d_c00022{left:628.912920pt;}
.x5f_c00022{left:629.960120pt;}
.x5e_c00022{left:633.260120pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b17006accf0782d717223b32.woff2')format("woff");}.ff1_c00023{font-family:ff1_c00023;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00023;src:url('chunks/assets/font_7e45890af637820ff788b172.woff2')format("woff");}.ff2_c00023{font-family:ff2_c00023;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00023;src:url('chunks/assets/font_9350abe32ed5cfb9a91f8233.woff2')format("woff");}.ff3_c00023{font-family:ff3_c00023;line-height:0.666000;font-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_c00023{transform:matrix(0.189474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189474,0.000000,0.000000,0.250000,0,0);}
.m60_c00023{transform:matrix(0.211463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211463,0.000000,0.000000,0.250000,0,0);}
.m86_c00023{transform:matrix(0.218160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218160,0.000000,0.000000,0.250000,0,0);}
.m81_c00023{transform:matrix(0.246148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246148,0.000000,0.000000,0.250000,0,0);}
.m1_c00023{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m58_c00023{transform:matrix(0.251421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251421,0.000000,0.000000,0.250000,0,0);}
.m55_c00023{transform:matrix(0.253759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253759,0.000000,0.000000,0.250000,0,0);}
.m14_c00023{transform:matrix(0.254953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254953,0.000000,0.000000,0.250000,0,0);}
.m36_c00023{transform:matrix(0.255400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255400,0.000000,0.000000,0.250000,0,0);}
.m28_c00023{transform:matrix(0.255538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255538,0.000000,0.000000,0.250000,0,0);}
.m93_c00023{transform:matrix(0.255977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255977,0.000000,0.000000,0.250000,0,0);}
.m9b_c00023{transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);}
.m3f_c00023{transform:matrix(0.256531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256531,0.000000,0.000000,0.250000,0,0);}
.m53_c00023{transform:matrix(0.256600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256600,0.000000,0.000000,0.250000,0,0);}
.m1d_c00023{transform:matrix(0.257621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257621,0.000000,0.000000,0.250000,0,0);}
.m74_c00023{transform:matrix(0.257845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257845,0.000000,0.000000,0.250000,0,0);}
.m94_c00023{transform:matrix(0.257906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257906,0.000000,0.000000,0.250000,0,0);}
.m6c_c00023{transform:matrix(0.257934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257934,0.000000,0.000000,0.250000,0,0);}
.m44_c00023{transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);}
.m91_c00023{transform:matrix(0.258585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258585,0.000000,0.000000,0.250000,0,0);}
.m7e_c00023{transform:matrix(0.259336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259336,0.000000,0.000000,0.250000,0,0);}
.m1b_c00023{transform:matrix(0.260950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260950,0.000000,0.000000,0.250000,0,0);}
.m33_c00023{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.mb1_c00023{transform:matrix(0.261481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261481,0.000000,0.000000,0.250000,0,0);}
.m4b_c00023{transform:matrix(0.262107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262107,0.000000,0.000000,0.250000,0,0);}
.mae_c00023{transform:matrix(0.262289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262289,0.000000,0.000000,0.250000,0,0);}
.mad_c00023{transform:matrix(0.262649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262649,0.000000,0.000000,0.250000,0,0);}
.m61_c00023{transform:matrix(0.263278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263278,0.000000,0.000000,0.250000,0,0);}
.m1c_c00023{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m67_c00023{transform:matrix(0.263314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263314,0.000000,0.000000,0.250000,0,0);}
.m4_c00023{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m2_c00023{transform:matrix(0.264073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264073,0.000000,0.000000,0.250000,0,0);}
.m20_c00023{transform:matrix(0.264128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264128,0.000000,0.000000,0.250000,0,0);}
.m7a_c00023{transform:matrix(0.264290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264290,0.000000,0.000000,0.250000,0,0);}
.m4e_c00023{transform:matrix(0.264687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264687,0.000000,0.000000,0.250000,0,0);}
.m97_c00023{transform:matrix(0.265205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265205,0.000000,0.000000,0.250000,0,0);}
.m31_c00023{transform:matrix(0.265949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265949,0.000000,0.000000,0.250000,0,0);}
.m62_c00023{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m5c_c00023{transform:matrix(0.267154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267154,0.000000,0.000000,0.250000,0,0);}
.m15_c00023{transform:matrix(0.267199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267199,0.000000,0.000000,0.250000,0,0);}
.me_c00023{transform:matrix(0.267449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267449,0.000000,0.000000,0.250000,0,0);}
.m24_c00023{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m8a_c00023{transform:matrix(0.268554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268554,0.000000,0.000000,0.250000,0,0);}
.m47_c00023{transform:matrix(0.268768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268768,0.000000,0.000000,0.250000,0,0);}
.ma3_c00023{transform:matrix(0.269022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269022,0.000000,0.000000,0.250000,0,0);}
.m2f_c00023{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m3e_c00023{transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);}
.m45_c00023{transform:matrix(0.272293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272293,0.000000,0.000000,0.250000,0,0);}
.m3b_c00023{transform:matrix(0.272387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272387,0.000000,0.000000,0.250000,0,0);}
.ma_c00023{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m8_c00023{transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);}
.m11_c00023{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.ma9_c00023{transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);}
.m96_c00023{transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);}
.m8f_c00023{transform:matrix(0.279390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279390,0.000000,0.000000,0.250000,0,0);}
.m5d_c00023{transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);}
.m2b_c00023{transform:matrix(0.279482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279482,0.000000,0.000000,0.250000,0,0);}
.m80_c00023{transform:matrix(0.279707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279707,0.000000,0.000000,0.250000,0,0);}
.m50_c00023{transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);}
.m34_c00023{transform:matrix(0.280566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280566,0.000000,0.000000,0.250000,0,0);}
.m5f_c00023{transform:matrix(0.281099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281099,0.000000,0.000000,0.250000,0,0);}
.m26_c00023{transform:matrix(0.281249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281249,0.000000,0.000000,0.250000,0,0);}
.ma5_c00023{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.m95_c00023{transform:matrix(0.282566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282566,0.000000,0.000000,0.250000,0,0);}
.mb_c00023{transform:matrix(0.282607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282607,0.000000,0.000000,0.250000,0,0);}
.m19_c00023{transform:matrix(0.283232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283232,0.000000,0.000000,0.250000,0,0);}
.m2e_c00023{transform:matrix(0.283640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283640,0.000000,0.000000,0.250000,0,0);}
.mab_c00023{transform:matrix(0.284391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284391,0.000000,0.000000,0.250000,0,0);}
.m5a_c00023{transform:matrix(0.284537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284537,0.000000,0.000000,0.250000,0,0);}
.m84_c00023{transform:matrix(0.284669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284669,0.000000,0.000000,0.250000,0,0);}
.m9f_c00023{transform:matrix(0.284844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284844,0.000000,0.000000,0.250000,0,0);}
.m17_c00023{transform:matrix(0.285151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285151,0.000000,0.000000,0.250000,0,0);}
.m54_c00023{transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);}
.m16_c00023{transform:matrix(0.286062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286062,0.000000,0.000000,0.250000,0,0);}
.m23_c00023{transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);}
.m7_c00023{transform:matrix(0.288010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288010,0.000000,0.000000,0.250000,0,0);}
.ma6_c00023{transform:matrix(0.288051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288051,0.000000,0.000000,0.250000,0,0);}
.m6f_c00023{transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);}
.m8e_c00023{transform:matrix(0.290364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290364,0.000000,0.000000,0.250000,0,0);}
.m27_c00023{transform:matrix(0.290445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290445,0.000000,0.000000,0.250000,0,0);}
.m40_c00023{transform:matrix(0.291174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291174,0.000000,0.000000,0.250000,0,0);}
.m4f_c00023{transform:matrix(0.291710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291710,0.000000,0.000000,0.250000,0,0);}
.m69_c00023{transform:matrix(0.292127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292127,0.000000,0.000000,0.250000,0,0);}
.m2d_c00023{transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);}
.m3_c00023{transform:matrix(0.292277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292277,0.000000,0.000000,0.250000,0,0);}
.ma4_c00023{transform:matrix(0.292444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292444,0.000000,0.000000,0.250000,0,0);}
.m56_c00023{transform:matrix(0.292527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292527,0.000000,0.000000,0.250000,0,0);}
.m65_c00023{transform:matrix(0.293273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293273,0.000000,0.000000,0.250000,0,0);}
.m82_c00023{transform:matrix(0.294208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294208,0.000000,0.000000,0.250000,0,0);}
.maf_c00023{transform:matrix(0.294614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294614,0.000000,0.000000,0.250000,0,0);}
.m2c_c00023{transform:matrix(0.294694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294694,0.000000,0.000000,0.250000,0,0);}
.m79_c00023{transform:matrix(0.294826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294826,0.000000,0.000000,0.250000,0,0);}
.m30_c00023{transform:matrix(0.294939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294939,0.000000,0.000000,0.250000,0,0);}
.m35_c00023{transform:matrix(0.295630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295630,0.000000,0.000000,0.250000,0,0);}
.m43_c00023{transform:matrix(0.296153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296153,0.000000,0.000000,0.250000,0,0);}
.m8b_c00023{transform:matrix(0.296472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296472,0.000000,0.000000,0.250000,0,0);}
.m38_c00023{transform:matrix(0.296617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296617,0.000000,0.000000,0.250000,0,0);}
.m8d_c00023{transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);}
.ma1_c00023{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m88_c00023{transform:matrix(0.297199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297199,0.000000,0.000000,0.250000,0,0);}
.m12_c00023{transform:matrix(0.298479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298479,0.000000,0.000000,0.250000,0,0);}
.m9d_c00023{transform:matrix(0.298777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298777,0.000000,0.000000,0.250000,0,0);}
.m87_c00023{transform:matrix(0.299360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299360,0.000000,0.000000,0.250000,0,0);}
.m10_c00023{transform:matrix(0.299989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299989,0.000000,0.000000,0.250000,0,0);}
.m92_c00023{transform:matrix(0.300052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300052,0.000000,0.000000,0.250000,0,0);}
.m78_c00023{transform:matrix(0.300577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300577,0.000000,0.000000,0.250000,0,0);}
.m46_c00023{transform:matrix(0.301666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301666,0.000000,0.000000,0.250000,0,0);}
.m42_c00023{transform:matrix(0.301920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301920,0.000000,0.000000,0.250000,0,0);}
.m75_c00023{transform:matrix(0.302087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302087,0.000000,0.000000,0.250000,0,0);}
.m49_c00023{transform:matrix(0.302300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302300,0.000000,0.000000,0.250000,0,0);}
.mf_c00023{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m72_c00023{transform:matrix(0.302559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302559,0.000000,0.000000,0.250000,0,0);}
.m71_c00023{transform:matrix(0.302706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302706,0.000000,0.000000,0.250000,0,0);}
.m3d_c00023{transform:matrix(0.302945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302945,0.000000,0.000000,0.250000,0,0);}
.m52_c00023{transform:matrix(0.303244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303244,0.000000,0.000000,0.250000,0,0);}
.m59_c00023{transform:matrix(0.303462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303462,0.000000,0.000000,0.250000,0,0);}
.mb3_c00023{transform:matrix(0.304005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304005,0.000000,0.000000,0.250000,0,0);}
.m13_c00023{transform:matrix(0.304147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304147,0.000000,0.000000,0.250000,0,0);}
.maa_c00023{transform:matrix(0.304160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304160,0.000000,0.000000,0.250000,0,0);}
.m8c_c00023{transform:matrix(0.304636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304636,0.000000,0.000000,0.250000,0,0);}
.m83_c00023{transform:matrix(0.304722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304722,0.000000,0.000000,0.250000,0,0);}
.m32_c00023{transform:matrix(0.305392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305392,0.000000,0.000000,0.250000,0,0);}
.m2a_c00023{transform:matrix(0.305941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305941,0.000000,0.000000,0.250000,0,0);}
.m85_c00023{transform:matrix(0.307652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307652,0.000000,0.000000,0.250000,0,0);}
.m9a_c00023{transform:matrix(0.308174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308174,0.000000,0.000000,0.250000,0,0);}
.m9c_c00023{transform:matrix(0.308236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308236,0.000000,0.000000,0.250000,0,0);}
.m1e_c00023{transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);}
.m70_c00023{transform:matrix(0.309093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309093,0.000000,0.000000,0.250000,0,0);}
.m0_c00023{transform:matrix(0.309183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309183,0.000000,0.000000,0.250000,0,0);}
.mc_c00023{transform:matrix(0.309193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309193,0.000000,0.000000,0.250000,0,0);}
.m7f_c00023{transform:matrix(0.309318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309318,0.000000,0.000000,0.250000,0,0);}
.m9_c00023{transform:matrix(0.310202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310202,0.000000,0.000000,0.250000,0,0);}
.m1f_c00023{transform:matrix(0.310875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310875,0.000000,0.000000,0.250000,0,0);}
.mac_c00023{transform:matrix(0.311145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311145,0.000000,0.000000,0.250000,0,0);}
.m4a_c00023{transform:matrix(0.312112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312112,0.000000,0.000000,0.250000,0,0);}
.m57_c00023{transform:matrix(0.313301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313301,0.000000,0.000000,0.250000,0,0);}
.m7b_c00023{transform:matrix(0.313649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313649,0.000000,0.000000,0.250000,0,0);}
.m76_c00023{transform:matrix(0.313917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313917,0.000000,0.000000,0.250000,0,0);}
.mb2_c00023{transform:matrix(0.314528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314528,0.000000,0.000000,0.250000,0,0);}
.m73_c00023{transform:matrix(0.314792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314792,0.000000,0.000000,0.250000,0,0);}
.m3c_c00023{transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);}
.m9e_c00023{transform:matrix(0.316290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316290,0.000000,0.000000,0.250000,0,0);}
.m89_c00023{transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);}
.m3a_c00023{transform:matrix(0.316696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316696,0.000000,0.000000,0.250000,0,0);}
.m68_c00023{transform:matrix(0.316703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316703,0.000000,0.000000,0.250000,0,0);}
.ma7_c00023{transform:matrix(0.318018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318018,0.000000,0.000000,0.250000,0,0);}
.m29_c00023{transform:matrix(0.318082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318082,0.000000,0.000000,0.250000,0,0);}
.m22_c00023{transform:matrix(0.318696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318696,0.000000,0.000000,0.250000,0,0);}
.m6_c00023{transform:matrix(0.319021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319021,0.000000,0.000000,0.250000,0,0);}
.m37_c00023{transform:matrix(0.319207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319207,0.000000,0.000000,0.250000,0,0);}
.md_c00023{transform:matrix(0.319859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319859,0.000000,0.000000,0.250000,0,0);}
.m4d_c00023{transform:matrix(0.320326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320326,0.000000,0.000000,0.250000,0,0);}
.m98_c00023{transform:matrix(0.321440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321440,0.000000,0.000000,0.250000,0,0);}
.m18_c00023{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.m41_c00023{transform:matrix(0.326842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326842,0.000000,0.000000,0.250000,0,0);}
.m6d_c00023{transform:matrix(0.327003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327003,0.000000,0.000000,0.250000,0,0);}
.m6a_c00023{transform:matrix(0.327290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327290,0.000000,0.000000,0.250000,0,0);}
.m21_c00023{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.ma2_c00023{transform:matrix(0.330831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330831,0.000000,0.000000,0.250000,0,0);}
.m39_c00023{transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);}
.m7c_c00023{transform:matrix(0.331699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331699,0.000000,0.000000,0.250000,0,0);}
.m4c_c00023{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.mb0_c00023{transform:matrix(0.335034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335034,0.000000,0.000000,0.250000,0,0);}
.m64_c00023{transform:matrix(0.337295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337295,0.000000,0.000000,0.250000,0,0);}
.ma8_c00023{transform:matrix(0.338073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338073,0.000000,0.000000,0.250000,0,0);}
.m51_c00023{transform:matrix(0.338655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338655,0.000000,0.000000,0.250000,0,0);}
.m5b_c00023{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m77_c00023{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.m66_c00023{transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);}
.m63_c00023{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m7d_c00023{transform:matrix(0.351400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351400,0.000000,0.000000,0.250000,0,0);}
.m6e_c00023{transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);}
.m25_c00023{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m5_c00023{transform:matrix(0.357225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357225,0.000000,0.000000,0.250000,0,0);}
.ma0_c00023{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m6b_c00023{transform:matrix(0.362348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362348,0.000000,0.000000,0.250000,0,0);}
.m48_c00023{transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);}
.m99_c00023{transform:matrix(0.370401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370401,0.000000,0.000000,0.250000,0,0);}
.m5e_c00023{transform:matrix(0.370958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370958,0.000000,0.000000,0.250000,0,0);}
.m1a_c00023{transform:matrix(0.381065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381065,0.000000,0.000000,0.250000,0,0);}
.v0_c00023{vertical-align:0.000000px;}
.v1_c00023{vertical-align:7.128000px;}
.lsb_c00023{letter-spacing:-2.744280px;}
.ls9_c00023{letter-spacing:-2.550240px;}
.ls5_c00023{letter-spacing:-2.399285px;}
.ls4_c00023{letter-spacing:-2.375762px;}
.lsa_c00023{letter-spacing:-1.897474px;}
.ls6_c00023{letter-spacing:-0.729194px;}
.ls2_c00023{letter-spacing:0.000000px;}
.ls7_c00023{letter-spacing:3.366000px;}
.ls8_c00023{letter-spacing:3.643200px;}
.ls1_c00023{letter-spacing:3.722400px;}
.ls3_c00023{letter-spacing:3.920400px;}
.ls0_c00023{letter-spacing:23.624964px;}
.lsc_c00023{letter-spacing:54.172998px;}
.sc__c00023{text-shadow:none;}
.sc0_c00023{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00023{-webkit-text-stroke:0px transparent;}
.sc0_c00023{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00023{word-spacing:-19.602000px;}
.ws1_c00023{word-spacing:0.000000px;}
._0_c00023{width:3.606768px;}
._1_c00023{width:30.971160px;}
.fc0_c00023{color:transparent;}
.fs5_c00023{font-size:21.780000px;}
.fse_c00023{font-size:22.374000px;}
.fs1_c00023{font-size:33.264000px;}
.fs8_c00023{font-size:36.432000px;}
.fs2_c00023{font-size:45.144000px;}
.fsd_c00023{font-size:48.114000px;}
.fsc_c00023{font-size:54.172998px;}
.fs4_c00023{font-size:65.538000px;}
.fs6_c00023{font-size:66.330000px;}
.fs9_c00023{font-size:67.320000px;}
.fsa_c00023{font-size:72.864000px;}
.fs0_c00023{font-size:74.448000px;}
.fsb_c00023{font-size:74.844000px;}
.fs3_c00023{font-size:78.408000px;}
.fs7_c00023{font-size:78.804000px;}
.y0_c00023{bottom:0.000000px;}
.y1f_c00023{bottom:70.479135px;}
.y1_c00023{bottom:76.500000px;}
.y1e_c00023{bottom:127.859535px;}
.y1d_c00023{bottom:158.509935px;}
.y1c_c00023{bottom:190.229535px;}
.y1b_c00023{bottom:224.087535px;}
.y1a_c00023{bottom:242.620335px;}
.y19_c00023{bottom:256.519935px;}
.y18_c00023{bottom:290.377935px;}
.y17_c00023{bottom:322.805385px;}
.y16_c00023{bottom:387.313785px;}
.y15_c00023{bottom:419.751135px;}
.y14_c00023{bottom:452.183535px;}
.y13_c00023{bottom:484.259535px;}
.y12_c00023{bottom:516.686985px;}
.y11_c00023{bottom:549.475785px;}
.y10_c00023{bottom:584.051535px;}
.yf_c00023{bottom:616.840335px;}
.ye_c00023{bottom:650.336985px;}
.yd_c00023{bottom:683.487135px;}
.yc_c00023{bottom:716.983785px;}
.yb_c00023{bottom:731.952585px;}
.ya_c00023{bottom:741.218985px;}
.y9_c00023{bottom:750.128985px;}
.y8_c00023{bottom:814.993785px;}
.y7_c00023{bottom:848.500335px;}
.y6_c00023{bottom:882.353385px;}
.y5_c00023{bottom:914.429385px;}
.y4_c00023{bottom:929.754585px;}
.y3_c00023{bottom:990.698985px;}
.y2_c00023{bottom:1080.155385px;}
.h7_c00023{height:21.375879px;}
.h10_c00023{height:23.335383px;}
.h3_c00023{height:34.693313px;}
.ha_c00023{height:35.756016px;}
.he_c00023{height:36.079217px;}
.h4_c00023{height:47.083781px;}
.hf_c00023{height:50.181398px;}
.h8_c00023{height:69.180117px;}
.hb_c00023{height:70.212656px;}
.hc_c00023{height:71.512031px;}
.h2_c00023{height:73.066641px;}
.hd_c00023{height:73.455293px;}
.h5_c00023{height:76.953164px;}
.h9_c00023{height:77.341816px;}
.h6_c00023{height:84.081164px;}
.h1_c00023{height:1110.000000px;}
.h0_c00023{height:1263.000000px;}
.w1_c00023{width:718.500000px;}
.w0_c00023{width:892.500000px;}
.x0_c00023{left:0.000000px;}
.x52_c00023{left:42.633150px;}
.x43_c00023{left:57.166350px;}
.x36_c00023{left:58.740450px;}
.x65_c00023{left:60.175950px;}
.x18_c00023{left:62.690550px;}
.x5_c00023{left:64.838850px;}
.x21_c00023{left:72.308400px;}
.x1_c00023{left:87.000000px;}
.x53_c00023{left:90.370950px;}
.x63_c00023{left:92.247000px;}
.x46_c00023{left:101.003550px;}
.x22_c00023{left:102.973650px;}
.x71_c00023{left:104.310150px;}
.x2c_c00023{left:112.324200px;}
.x49_c00023{left:124.060650px;}
.x6_c00023{left:125.298150px;}
.x19_c00023{left:127.327650px;}
.x11_c00023{left:135.549600px;}
.x23_c00023{left:136.836600px;}
.x3d_c00023{left:145.716900px;}
.x1a_c00023{left:146.895000px;}
.x2d_c00023{left:157.096950px;}
.x66_c00023{left:158.898750px;}
.x24_c00023{left:169.135350px;}
.x57_c00023{left:179.470950px;}
.x5d_c00023{left:180.936150px;}
.x1b_c00023{left:191.712300px;}
.x55_c00023{left:201.255900px;}
.x7_c00023{left:203.122050px;}
.x4f_c00023{left:213.744750px;}
.x25_c00023{left:225.208950px;}
.x3_c00023{left:232.064700px;}
.x1c_c00023{left:235.425750px;}
.x8_c00023{left:247.909650px;}
.x37_c00023{left:256.215750px;}
.x47_c00023{left:257.270100px;}
.x2e_c00023{left:267.066150px;}
.x9_c00023{left:269.729250px;}
.x44_c00023{left:278.480850px;}
.x61_c00023{left:279.743100px;}
.x6e_c00023{left:280.822200px;}
.x67_c00023{left:290.667750px;}
.x3e_c00023{left:301.127100px;}
.x58_c00023{left:302.542800px;}
.x4a_c00023{left:311.977500px;}
.x6f_c00023{left:323.783250px;}
.x12_c00023{left:324.991050px;}
.xa_c00023{left:326.085000px;}
.x3f_c00023{left:334.613850px;}
.x1d_c00023{left:336.747300px;}
.x4_c00023{left:344.538600px;}
.x38_c00023{left:345.682050px;}
.x54_c00023{left:347.082900px;}
.x56_c00023{left:358.076850px;}
.x2f_c00023{left:368.021400px;}
.x70_c00023{left:369.174750px;}
.xb_c00023{left:379.619250px;}
.x39_c00023{left:390.088500px;}
.x6c_c00023{left:391.296300px;}
.x50_c00023{left:401.592300px;}
.x26_c00023{left:402.681300px;}
.x30_c00023{left:412.328850px;}
.x5e_c00023{left:413.655450px;}
.x3a_c00023{left:422.471400px;}
.x13_c00023{left:424.446450px;}
.x5b_c00023{left:435.856200px;}
.x40_c00023{left:445.474050px;}
.x27_c00023{left:447.562950px;}
.x4b_c00023{left:455.963100px;}
.xc_c00023{left:458.299500px;}
.x3b_c00023{left:467.442150px;}
.x14_c00023{left:469.565700px;}
.xd_c00023{left:480.361650px;}
.x41_c00023{left:489.296400px;}
.x28_c00023{left:491.058600px;}
.x51_c00023{left:500.587350px;}
.x15_c00023{left:502.111950px;}
.x31_c00023{left:511.368450px;}
.x72_c00023{left:512.823750px;}
.x4c_c00023{left:523.164300px;}
.x29_c00023{left:524.233500px;}
.x42_c00023{left:533.702850px;}
.x59_c00023{left:534.772050px;}
.x32_c00023{left:544.726500px;}
.x1e_c00023{left:546.696600px;}
.x4d_c00023{left:555.086850px;}
.x2a_c00023{left:557.695500px;}
.x33_c00023{left:566.872800px;}
.x68_c00023{left:568.313250px;}
.x5f_c00023{left:578.287500px;}
.x62_c00023{left:579.723000px;}
.xe_c00023{left:581.227800px;}
.x4e_c00023{left:589.845750px;}
.x5a_c00023{left:590.865450px;}
.x16_c00023{left:591.919800px;}
.x3c_c00023{left:600.463500px;}
.x35_c00023{left:603.453300px;}
.x45_c00023{left:612.274200px;}
.xf_c00023{left:613.284000px;}
.x48_c00023{left:622.392000px;}
.x17_c00023{left:624.708600px;}
.x2_c00023{left:633.935400px;}
.x6d_c00023{left:634.955100px;}
.x64_c00023{left:644.493750px;}
.x1f_c00023{left:646.845000px;}
.x34_c00023{left:656.433150px;}
.x6b_c00023{left:657.527100px;}
.x73_c00023{left:667.323150px;}
.x20_c00023{left:668.372550px;}
.x2b_c00023{left:671.001000px;}
.x69_c00023{left:678.430950px;}
.x10_c00023{left:679.618950px;}
.x60_c00023{left:681.361350px;}
.x5c_c00023{left:690.315900px;}
.x6a_c00023{left:714.427350px;}
.x74_c00023{left:715.471800px;}
@media print{
.v0_c00023{vertical-align:0.000000pt;}
.v1_c00023{vertical-align:6.336000pt;}
.lsb_c00023{letter-spacing:-2.439360pt;}
.ls9_c00023{letter-spacing:-2.266880pt;}
.ls5_c00023{letter-spacing:-2.132698pt;}
.ls4_c00023{letter-spacing:-2.111789pt;}
.lsa_c00023{letter-spacing:-1.686643pt;}
.ls6_c00023{letter-spacing:-0.648173pt;}
.ls2_c00023{letter-spacing:0.000000pt;}
.ls7_c00023{letter-spacing:2.992000pt;}
.ls8_c00023{letter-spacing:3.238400pt;}
.ls1_c00023{letter-spacing:3.308800pt;}
.ls3_c00023{letter-spacing:3.484800pt;}
.ls0_c00023{letter-spacing:20.999968pt;}
.lsc_c00023{letter-spacing:48.153776pt;}
.ws0_c00023{word-spacing:-17.424000pt;}
.ws1_c00023{word-spacing:0.000000pt;}
._0_c00023{width:3.206016pt;}
._1_c00023{width:27.529920pt;}
.fs5_c00023{font-size:19.360000pt;}
.fse_c00023{font-size:19.888000pt;}
.fs1_c00023{font-size:29.568000pt;}
.fs8_c00023{font-size:32.384000pt;}
.fs2_c00023{font-size:40.128000pt;}
.fsd_c00023{font-size:42.768000pt;}
.fsc_c00023{font-size:48.153776pt;}
.fs4_c00023{font-size:58.256000pt;}
.fs6_c00023{font-size:58.960000pt;}
.fs9_c00023{font-size:59.840000pt;}
.fsa_c00023{font-size:64.768000pt;}
.fs0_c00023{font-size:66.176000pt;}
.fsb_c00023{font-size:66.528000pt;}
.fs3_c00023{font-size:69.696000pt;}
.fs7_c00023{font-size:70.048000pt;}
.y0_c00023{bottom:0.000000pt;}
.y1f_c00023{bottom:62.648120pt;}
.y1_c00023{bottom:68.000000pt;}
.y1e_c00023{bottom:113.652920pt;}
.y1d_c00023{bottom:140.897720pt;}
.y1c_c00023{bottom:169.092920pt;}
.y1b_c00023{bottom:199.188920pt;}
.y1a_c00023{bottom:215.662520pt;}
.y19_c00023{bottom:228.017720pt;}
.y18_c00023{bottom:258.113720pt;}
.y17_c00023{bottom:286.938120pt;}
.y16_c00023{bottom:344.278920pt;}
.y15_c00023{bottom:373.112120pt;}
.y14_c00023{bottom:401.940920pt;}
.y13_c00023{bottom:430.452920pt;}
.y12_c00023{bottom:459.277320pt;}
.y11_c00023{bottom:488.422920pt;}
.y10_c00023{bottom:519.156920pt;}
.yf_c00023{bottom:548.302520pt;}
.ye_c00023{bottom:578.077320pt;}
.yd_c00023{bottom:607.544120pt;}
.yc_c00023{bottom:637.318920pt;}
.yb_c00023{bottom:650.624520pt;}
.ya_c00023{bottom:658.861320pt;}
.y9_c00023{bottom:666.781320pt;}
.y8_c00023{bottom:724.438920pt;}
.y7_c00023{bottom:754.222520pt;}
.y6_c00023{bottom:784.314120pt;}
.y5_c00023{bottom:812.826120pt;}
.y4_c00023{bottom:826.448520pt;}
.y3_c00023{bottom:880.621320pt;}
.y2_c00023{bottom:960.138120pt;}
.h7_c00023{height:19.000781pt;}
.h10_c00023{height:20.742563pt;}
.h3_c00023{height:30.838500pt;}
.ha_c00023{height:31.783125pt;}
.he_c00023{height:32.070415pt;}
.h4_c00023{height:41.852250pt;}
.hf_c00023{height:44.605688pt;}
.h8_c00023{height:61.493438pt;}
.hb_c00023{height:62.411250pt;}
.hc_c00023{height:63.566250pt;}
.h2_c00023{height:64.948125pt;}
.hd_c00023{height:65.293594pt;}
.h5_c00023{height:68.402813pt;}
.h9_c00023{height:68.748281pt;}
.h6_c00023{height:74.738812pt;}
.h1_c00023{height:986.666667pt;}
.h0_c00023{height:1122.666667pt;}
.w1_c00023{width:638.666667pt;}
.w0_c00023{width:793.333333pt;}
.x0_c00023{left:0.000000pt;}
.x52_c00023{left:37.896133pt;}
.x43_c00023{left:50.814533pt;}
.x36_c00023{left:52.213733pt;}
.x65_c00023{left:53.489733pt;}
.x18_c00023{left:55.724933pt;}
.x5_c00023{left:57.634533pt;}
.x21_c00023{left:64.274133pt;}
.x1_c00023{left:77.333333pt;}
.x53_c00023{left:80.329733pt;}
.x63_c00023{left:81.997333pt;}
.x46_c00023{left:89.780933pt;}
.x22_c00023{left:91.532133pt;}
.x71_c00023{left:92.720133pt;}
.x2c_c00023{left:99.843733pt;}
.x49_c00023{left:110.276133pt;}
.x6_c00023{left:111.376133pt;}
.x19_c00023{left:113.180133pt;}
.x11_c00023{left:120.488533pt;}
.x23_c00023{left:121.632533pt;}
.x3d_c00023{left:129.526133pt;}
.x1a_c00023{left:130.573333pt;}
.x2d_c00023{left:139.641733pt;}
.x66_c00023{left:141.243333pt;}
.x24_c00023{left:150.342533pt;}
.x57_c00023{left:159.529733pt;}
.x5d_c00023{left:160.832133pt;}
.x1b_c00023{left:170.410933pt;}
.x55_c00023{left:178.894133pt;}
.x7_c00023{left:180.552933pt;}
.x4f_c00023{left:189.995333pt;}
.x25_c00023{left:200.185733pt;}
.x3_c00023{left:206.279733pt;}
.x1c_c00023{left:209.267333pt;}
.x8_c00023{left:220.364133pt;}
.x37_c00023{left:227.747333pt;}
.x47_c00023{left:228.684533pt;}
.x2e_c00023{left:237.392133pt;}
.x9_c00023{left:239.759333pt;}
.x44_c00023{left:247.538533pt;}
.x61_c00023{left:248.660533pt;}
.x6e_c00023{left:249.619733pt;}
.x67_c00023{left:258.371333pt;}
.x3e_c00023{left:267.668533pt;}
.x58_c00023{left:268.926933pt;}
.x4a_c00023{left:277.313333pt;}
.x6f_c00023{left:287.807333pt;}
.x12_c00023{left:288.880933pt;}
.xa_c00023{left:289.853333pt;}
.x3f_c00023{left:297.434533pt;}
.x1d_c00023{left:299.330933pt;}
.x4_c00023{left:306.256533pt;}
.x38_c00023{left:307.272933pt;}
.x54_c00023{left:308.518133pt;}
.x56_c00023{left:318.290533pt;}
.x2f_c00023{left:327.130133pt;}
.x70_c00023{left:328.155333pt;}
.xb_c00023{left:337.439333pt;}
.x39_c00023{left:346.745333pt;}
.x6c_c00023{left:347.818933pt;}
.x50_c00023{left:356.970933pt;}
.x26_c00023{left:357.938933pt;}
.x30_c00023{left:366.514533pt;}
.x5e_c00023{left:367.693733pt;}
.x3a_c00023{left:375.530133pt;}
.x13_c00023{left:377.285733pt;}
.x5b_c00023{left:387.427733pt;}
.x40_c00023{left:395.976933pt;}
.x27_c00023{left:397.833733pt;}
.x4b_c00023{left:405.300533pt;}
.xc_c00023{left:407.377333pt;}
.x3b_c00023{left:415.504133pt;}
.x14_c00023{left:417.391733pt;}
.xd_c00023{left:426.988133pt;}
.x41_c00023{left:434.930133pt;}
.x28_c00023{left:436.496533pt;}
.x51_c00023{left:444.966533pt;}
.x15_c00023{left:446.321733pt;}
.x31_c00023{left:454.549733pt;}
.x72_c00023{left:455.843333pt;}
.x4c_c00023{left:465.034933pt;}
.x29_c00023{left:465.985333pt;}
.x42_c00023{left:474.402533pt;}
.x59_c00023{left:475.352933pt;}
.x32_c00023{left:484.201333pt;}
.x1e_c00023{left:485.952533pt;}
.x4d_c00023{left:493.410533pt;}
.x2a_c00023{left:495.729333pt;}
.x33_c00023{left:503.886933pt;}
.x68_c00023{left:505.167333pt;}
.x5f_c00023{left:514.033333pt;}
.x62_c00023{left:515.309333pt;}
.xe_c00023{left:516.646933pt;}
.x4e_c00023{left:524.307333pt;}
.x5a_c00023{left:525.213733pt;}
.x16_c00023{left:526.150933pt;}
.x3c_c00023{left:533.745333pt;}
.x35_c00023{left:536.402933pt;}
.x45_c00023{left:544.243733pt;}
.xf_c00023{left:545.141333pt;}
.x48_c00023{left:553.237333pt;}
.x17_c00023{left:555.296533pt;}
.x2_c00023{left:563.498133pt;}
.x6d_c00023{left:564.404533pt;}
.x64_c00023{left:572.883333pt;}
.x1f_c00023{left:574.973333pt;}
.x34_c00023{left:583.496133pt;}
.x6b_c00023{left:584.468533pt;}
.x73_c00023{left:593.176133pt;}
.x20_c00023{left:594.108933pt;}
.x2b_c00023{left:596.445333pt;}
.x69_c00023{left:603.049733pt;}
.x10_c00023{left:604.105733pt;}
.x60_c00023{left:605.654533pt;}
.x5c_c00023{left:613.614133pt;}
.x6a_c00023{left:635.046533pt;}
.x74_c00023{left:635.974933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_188c8744ca55ba738f39d57a.woff2')format("woff");}.ff1_c00024{font-family:ff1_c00024;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00024;src:url('chunks/assets/font_f89e0e39c3a30d38a6cce10d.woff2')format("woff");}.ff2_c00024{font-family:ff2_c00024;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00024;src:url('chunks/assets/font_565ff4988bf701a81bcb9d45.woff2')format("woff");}.ff3_c00024{font-family:ff3_c00024;line-height:0.666000;font-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_c00024{transform:matrix(0.113638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113638,0.000000,0.000000,0.250000,0,0);}
.m73_c00024{transform:matrix(0.139895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139895,0.000000,0.000000,0.250000,0,0);}
.m8c_c00024{transform:matrix(0.209460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209460,0.000000,0.000000,0.250000,0,0);}
.m44_c00024{transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);}
.m0_c00024{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00024{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.m55_c00024{transform:matrix(0.252991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252991,0.000000,0.000000,0.250000,0,0);}
.m2_c00024{transform:matrix(0.253313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253313,0.000000,0.000000,0.250000,0,0);}
.m72_c00024{transform:matrix(0.255066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255066,0.000000,0.000000,0.250000,0,0);}
.m3c_c00024{transform:matrix(0.256159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256159,0.000000,0.000000,0.250000,0,0);}
.m66_c00024{transform:matrix(0.256600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256600,0.000000,0.000000,0.250000,0,0);}
.m62_c00024{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m2b_c00024{transform:matrix(0.262649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262649,0.000000,0.000000,0.250000,0,0);}
.m5b_c00024{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m67_c00024{transform:matrix(0.264063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264063,0.000000,0.000000,0.250000,0,0);}
.m58_c00024{transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);}
.m33_c00024{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.md_c00024{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.m9_c00024{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m1a_c00024{transform:matrix(0.268624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268624,0.000000,0.000000,0.250000,0,0);}
.m4a_c00024{transform:matrix(0.269068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269068,0.000000,0.000000,0.250000,0,0);}
.m25_c00024{transform:matrix(0.270489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270489,0.000000,0.000000,0.250000,0,0);}
.m16_c00024{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m48_c00024{transform:matrix(0.271367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271367,0.000000,0.000000,0.250000,0,0);}
.m43_c00024{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m56_c00024{transform:matrix(0.272719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272719,0.000000,0.000000,0.250000,0,0);}
.m95_c00024{transform:matrix(0.273089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273089,0.000000,0.000000,0.250000,0,0);}
.m69_c00024{transform:matrix(0.273927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273927,0.000000,0.000000,0.250000,0,0);}
.m84_c00024{transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);}
.m82_c00024{transform:matrix(0.274511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274511,0.000000,0.000000,0.250000,0,0);}
.m45_c00024{transform:matrix(0.274533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274533,0.000000,0.000000,0.250000,0,0);}
.m99_c00024{transform:matrix(0.275026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275026,0.000000,0.000000,0.250000,0,0);}
.m10_c00024{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m38_c00024{transform:matrix(0.275570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275570,0.000000,0.000000,0.250000,0,0);}
.m4_c00024{transform:matrix(0.276265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276265,0.000000,0.000000,0.250000,0,0);}
.m1b_c00024{transform:matrix(0.276669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276669,0.000000,0.000000,0.250000,0,0);}
.m86_c00024{transform:matrix(0.276882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276882,0.000000,0.000000,0.250000,0,0);}
.m83_c00024{transform:matrix(0.277756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277756,0.000000,0.000000,0.250000,0,0);}
.m5d_c00024{transform:matrix(0.279824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279824,0.000000,0.000000,0.250000,0,0);}
.m9a_c00024{transform:matrix(0.279943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279943,0.000000,0.000000,0.250000,0,0);}
.m3f_c00024{transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);}
.m2f_c00024{transform:matrix(0.280024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280024,0.000000,0.000000,0.250000,0,0);}
.m19_c00024{transform:matrix(0.280224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280224,0.000000,0.000000,0.250000,0,0);}
.m1_c00024{transform:matrix(0.280664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280664,0.000000,0.000000,0.250000,0,0);}
.m7a_c00024{transform:matrix(0.282507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282507,0.000000,0.000000,0.250000,0,0);}
.m3_c00024{transform:matrix(0.282616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282616,0.000000,0.000000,0.250000,0,0);}
.m60_c00024{transform:matrix(0.283213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283213,0.000000,0.000000,0.250000,0,0);}
.m7d_c00024{transform:matrix(0.284669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284669,0.000000,0.000000,0.250000,0,0);}
.m54_c00024{transform:matrix(0.284845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284845,0.000000,0.000000,0.250000,0,0);}
.m6c_c00024{transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);}
.m32_c00024{transform:matrix(0.285766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285766,0.000000,0.000000,0.250000,0,0);}
.m28_c00024{transform:matrix(0.287688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287688,0.000000,0.000000,0.250000,0,0);}
.m13_c00024{transform:matrix(0.287765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287765,0.000000,0.000000,0.250000,0,0);}
.m12_c00024{transform:matrix(0.287943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287943,0.000000,0.000000,0.250000,0,0);}
.m71_c00024{transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);}
.m85_c00024{transform:matrix(0.288806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288806,0.000000,0.000000,0.250000,0,0);}
.m68_c00024{transform:matrix(0.289754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289754,0.000000,0.000000,0.250000,0,0);}
.m65_c00024{transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);}
.m1c_c00024{transform:matrix(0.290895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290895,0.000000,0.000000,0.250000,0,0);}
.m6f_c00024{transform:matrix(0.291241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291241,0.000000,0.000000,0.250000,0,0);}
.m42_c00024{transform:matrix(0.292414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292414,0.000000,0.000000,0.250000,0,0);}
.m29_c00024{transform:matrix(0.292463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292463,0.000000,0.000000,0.250000,0,0);}
.m2e_c00024{transform:matrix(0.292614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292614,0.000000,0.000000,0.250000,0,0);}
.m8a_c00024{transform:matrix(0.293406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293406,0.000000,0.000000,0.250000,0,0);}
.m6d_c00024{transform:matrix(0.294128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294128,0.000000,0.000000,0.250000,0,0);}
.m39_c00024{transform:matrix(0.294157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294157,0.000000,0.000000,0.250000,0,0);}
.m90_c00024{transform:matrix(0.294377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294377,0.000000,0.000000,0.250000,0,0);}
.m1e_c00024{transform:matrix(0.294460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294460,0.000000,0.000000,0.250000,0,0);}
.m3d_c00024{transform:matrix(0.295151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295151,0.000000,0.000000,0.250000,0,0);}
.m81_c00024{transform:matrix(0.295225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295225,0.000000,0.000000,0.250000,0,0);}
.m7f_c00024{transform:matrix(0.296009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296009,0.000000,0.000000,0.250000,0,0);}
.m6e_c00024{transform:matrix(0.296475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296475,0.000000,0.000000,0.250000,0,0);}
.m2a_c00024{transform:matrix(0.296674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296674,0.000000,0.000000,0.250000,0,0);}
.m15_c00024{transform:matrix(0.296948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296948,0.000000,0.000000,0.250000,0,0);}
.m21_c00024{transform:matrix(0.297098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297098,0.000000,0.000000,0.250000,0,0);}
.m5a_c00024{transform:matrix(0.298462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298462,0.000000,0.000000,0.250000,0,0);}
.m26_c00024{transform:matrix(0.298534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298534,0.000000,0.000000,0.250000,0,0);}
.m5_c00024{transform:matrix(0.299100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299100,0.000000,0.000000,0.250000,0,0);}
.m7_c00024{transform:matrix(0.299115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299115,0.000000,0.000000,0.250000,0,0);}
.m78_c00024{transform:matrix(0.299364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299364,0.000000,0.000000,0.250000,0,0);}
.m5f_c00024{transform:matrix(0.299520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299520,0.000000,0.000000,0.250000,0,0);}
.m53_c00024{transform:matrix(0.299542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299542,0.000000,0.000000,0.250000,0,0);}
.m3a_c00024{transform:matrix(0.300052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300052,0.000000,0.000000,0.250000,0,0);}
.m1d_c00024{transform:matrix(0.301206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301206,0.000000,0.000000,0.250000,0,0);}
.m23_c00024{transform:matrix(0.302009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302009,0.000000,0.000000,0.250000,0,0);}
.m31_c00024{transform:matrix(0.302242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302242,0.000000,0.000000,0.250000,0,0);}
.m59_c00024{transform:matrix(0.302254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302254,0.000000,0.000000,0.250000,0,0);}
.me_c00024{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m14_c00024{transform:matrix(0.302525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302525,0.000000,0.000000,0.250000,0,0);}
.m2d_c00024{transform:matrix(0.302700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302700,0.000000,0.000000,0.250000,0,0);}
.m98_c00024{transform:matrix(0.303251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303251,0.000000,0.000000,0.250000,0,0);}
.m4c_c00024{transform:matrix(0.303355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303355,0.000000,0.000000,0.250000,0,0);}
.m77_c00024{transform:matrix(0.303369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303369,0.000000,0.000000,0.250000,0,0);}
.m93_c00024{transform:matrix(0.303979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303979,0.000000,0.000000,0.250000,0,0);}
.m63_c00024{transform:matrix(0.304639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304639,0.000000,0.000000,0.250000,0,0);}
.m7e_c00024{transform:matrix(0.305363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305363,0.000000,0.000000,0.250000,0,0);}
.m4f_c00024{transform:matrix(0.305557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305557,0.000000,0.000000,0.250000,0,0);}
.m6_c00024{transform:matrix(0.305723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305723,0.000000,0.000000,0.250000,0,0);}
.m3e_c00024{transform:matrix(0.305912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305912,0.000000,0.000000,0.250000,0,0);}
.m80_c00024{transform:matrix(0.306541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306541,0.000000,0.000000,0.250000,0,0);}
.m91_c00024{transform:matrix(0.307101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307101,0.000000,0.000000,0.250000,0,0);}
.m74_c00024{transform:matrix(0.307376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307376,0.000000,0.000000,0.250000,0,0);}
.m11_c00024{transform:matrix(0.308424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308424,0.000000,0.000000,0.250000,0,0);}
.m40_c00024{transform:matrix(0.308621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308621,0.000000,0.000000,0.250000,0,0);}
.m57_c00024{transform:matrix(0.309309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309309,0.000000,0.000000,0.250000,0,0);}
.m8d_c00024{transform:matrix(0.309340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309340,0.000000,0.000000,0.250000,0,0);}
.m2c_c00024{transform:matrix(0.309574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309574,0.000000,0.000000,0.250000,0,0);}
.m70_c00024{transform:matrix(0.310571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310571,0.000000,0.000000,0.250000,0,0);}
.m88_c00024{transform:matrix(0.311004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311004,0.000000,0.000000,0.250000,0,0);}
.m49_c00024{transform:matrix(0.311834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311834,0.000000,0.000000,0.250000,0,0);}
.m8f_c00024{transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);}
.m79_c00024{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.ma_c00024{transform:matrix(0.312852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312852,0.000000,0.000000,0.250000,0,0);}
.m76_c00024{transform:matrix(0.312873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312873,0.000000,0.000000,0.250000,0,0);}
.m1f_c00024{transform:matrix(0.313020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313020,0.000000,0.000000,0.250000,0,0);}
.m50_c00024{transform:matrix(0.313386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313386,0.000000,0.000000,0.250000,0,0);}
.m27_c00024{transform:matrix(0.313811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313811,0.000000,0.000000,0.250000,0,0);}
.m87_c00024{transform:matrix(0.314324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314324,0.000000,0.000000,0.250000,0,0);}
.m52_c00024{transform:matrix(0.314959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314959,0.000000,0.000000,0.250000,0,0);}
.m97_c00024{transform:matrix(0.315474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315474,0.000000,0.000000,0.250000,0,0);}
.m8b_c00024{transform:matrix(0.316435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316435,0.000000,0.000000,0.250000,0,0);}
.m94_c00024{transform:matrix(0.317473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317473,0.000000,0.000000,0.250000,0,0);}
.m18_c00024{transform:matrix(0.318379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318379,0.000000,0.000000,0.250000,0,0);}
.mc_c00024{transform:matrix(0.319227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319227,0.000000,0.000000,0.250000,0,0);}
.mf_c00024{transform:matrix(0.319860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319860,0.000000,0.000000,0.250000,0,0);}
.m17_c00024{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.m36_c00024{transform:matrix(0.323918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323918,0.000000,0.000000,0.250000,0,0);}
.m7b_c00024{transform:matrix(0.324300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324300,0.000000,0.000000,0.250000,0,0);}
.mb_c00024{transform:matrix(0.324455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324455,0.000000,0.000000,0.250000,0,0);}
.m4e_c00024{transform:matrix(0.324715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324715,0.000000,0.000000,0.250000,0,0);}
.m5e_c00024{transform:matrix(0.324871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324871,0.000000,0.000000,0.250000,0,0);}
.m51_c00024{transform:matrix(0.326313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326313,0.000000,0.000000,0.250000,0,0);}
.m34_c00024{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m37_c00024{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.m20_c00024{transform:matrix(0.327730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327730,0.000000,0.000000,0.250000,0,0);}
.m24_c00024{transform:matrix(0.329487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329487,0.000000,0.000000,0.250000,0,0);}
.m4b_c00024{transform:matrix(0.333280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333280,0.000000,0.000000,0.250000,0,0);}
.m64_c00024{transform:matrix(0.333511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333511,0.000000,0.000000,0.250000,0,0);}
.m47_c00024{transform:matrix(0.334506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334506,0.000000,0.000000,0.250000,0,0);}
.m4d_c00024{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m75_c00024{transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);}
.m8e_c00024{transform:matrix(0.342640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342640,0.000000,0.000000,0.250000,0,0);}
.m30_c00024{transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);}
.m41_c00024{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m92_c00024{transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);}
.m22_c00024{transform:matrix(0.353790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353790,0.000000,0.000000,0.250000,0,0);}
.m7c_c00024{transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);}
.m35_c00024{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m46_c00024{transform:matrix(0.355857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355857,0.000000,0.000000,0.250000,0,0);}
.m6a_c00024{transform:matrix(0.358842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358842,0.000000,0.000000,0.250000,0,0);}
.m61_c00024{transform:matrix(0.362785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362785,0.000000,0.000000,0.250000,0,0);}
.m6b_c00024{transform:matrix(0.367117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367117,0.000000,0.000000,0.250000,0,0);}
.m96_c00024{transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);}
.m3b_c00024{transform:matrix(0.368506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368506,0.000000,0.000000,0.250000,0,0);}
.m89_c00024{transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);}
.v0_c00024{vertical-align:0.000000px;}
.v1_c00024{vertical-align:18.532800px;}
.ls5_c00024{letter-spacing:-2.744280px;}
.ls4_c00024{letter-spacing:-1.325095px;}
.ls7_c00024{letter-spacing:-0.729194px;}
.ls0_c00024{letter-spacing:0.000000px;}
.ls3_c00024{letter-spacing:0.070567px;}
.ls6_c00024{letter-spacing:3.011402px;}
.ls1_c00024{letter-spacing:3.920400px;}
.ls2_c00024{letter-spacing:31.363200px;}
.ls8_c00024{letter-spacing:52.747398px;}
.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:-19.602000px;}
.ws1_c00024{word-spacing:0.000000px;}
._1_c00024{width:8.546472px;}
._2_c00024{width:10.114632px;}
._3_c00024{width:32.313600px;}
._0_c00024{width:1768.357008px;}
.fc0_c00024{color:transparent;}
.fsb_c00024{font-size:14.652198px;}
.fs0_c00024{font-size:16.632000px;}
.fsf_c00024{font-size:22.176000px;}
.fs5_c00024{font-size:25.146000px;}
.fs6_c00024{font-size:31.363200px;}
.fs3_c00024{font-size:33.264000px;}
.fs11_c00024{font-size:33.660000px;}
.fs2_c00024{font-size:38.808000px;}
.fse_c00024{font-size:52.747398px;}
.fs10_c00024{font-size:56.628000px;}
.fs8_c00024{font-size:64.548000px;}
.fs9_c00024{font-size:72.864000px;}
.fs4_c00024{font-size:73.656198px;}
.fsd_c00024{font-size:74.844000px;}
.fsa_c00024{font-size:75.240000px;}
.fsc_c00024{font-size:77.814000px;}
.fs1_c00024{font-size:78.408000px;}
.fs7_c00024{font-size:78.804000px;}
.y0_c00024{bottom:0.000000px;}
.y1_c00024{bottom:76.500000px;}
.y24_c00024{bottom:79.745535px;}
.y23_c00024{bottom:113.954985px;}
.y22_c00024{bottom:172.760985px;}
.y20_c00024{bottom:208.044585px;}
.y21_c00024{bottom:208.400985px;}
.y1f_c00024{bottom:233.710335px;}
.y1e_c00024{bottom:242.263935px;}
.y1d_c00024{bottom:274.334985px;}
.y1c_c00024{bottom:306.772335px;}
.y1b_c00024{bottom:339.561135px;}
.y1a_c00024{bottom:371.993535px;}
.y19_c00024{bottom:404.069535px;}
.y18_c00024{bottom:437.209785px;}
.y17_c00024{bottom:469.647135px;}
.y16_c00024{bottom:497.084985px;}
.y15_c00024{bottom:501.718185px;}
.y14_c00024{bottom:534.506985px;}
.y13_c00024{bottom:561.954735px;}
.y12_c00024{bottom:567.295785px;}
.y11_c00024{bottom:600.802335px;}
.y10_c00024{bottom:642.144735px;}
.yf_c00024{bottom:666.374985px;}
.ye_c00024{bottom:698.812335px;}
.yd_c00024{bottom:731.244735px;}
.yc_c00024{bottom:763.677135px;}
.yb_c00024{bottom:795.748185px;}
.ya_c00024{bottom:828.185535px;}
.y9_c00024{bottom:860.974335px;}
.y8_c00024{bottom:914.785785px;}
.y7_c00024{bottom:925.477785px;}
.y6_c00024{bottom:925.839135px;}
.y5_c00024{bottom:939.382335px;}
.y4_c00024{bottom:998.183385px;}
.y3_c00024{bottom:1076.234985px;}
.y2_c00024{bottom:1107.954585px;}
.hb_c00024{height:15.281785px;}
.h2_c00024{height:17.346656px;}
.h7_c00024{height:20.887891px;}
.hf_c00024{height:23.128875px;}
.h6_c00024{height:26.226492px;}
.h11_c00024{height:33.035449px;}
.he_c00024{height:35.129767px;}
.h4_c00024{height:40.475531px;}
.h10_c00024{height:59.061234px;}
.h9_c00024{height:67.321547px;}
.hd_c00024{height:73.455293px;}
.hc_c00024{height:76.370186px;}
.h3_c00024{height:76.953164px;}
.h8_c00024{height:77.341816px;}
.ha_c00024{height:78.472969px;}
.h5_c00024{height:95.353913px;}
.h1_c00024{height:1110.000000px;}
.h0_c00024{height:1263.000000px;}
.w1_c00024{width:718.500000px;}
.w0_c00024{width:892.500000px;}
.x0_c00024{left:0.000000px;}
.x3e_c00024{left:60.170985px;}
.x49_c00024{left:69.976935px;}
.x20_c00024{left:72.298485px;}
.x15_c00024{left:73.738935px;}
.x1_c00024{left:87.000000px;}
.x30_c00024{left:94.751685px;}
.x1c_c00024{left:104.740785px;}
.x16_c00024{left:115.318935px;}
.x56_c00024{left:117.150435px;}
.xc_c00024{left:126.298035px;}
.x31_c00024{left:127.486035px;}
.x45_c00024{left:136.316835px;}
.x3a_c00024{left:137.534535px;}
.x57_c00024{left:148.033485px;}
.x5c_c00024{left:149.300685px;}
.x42_c00024{left:151.765785px;}
.x32_c00024{left:159.636285px;}
.x60_c00024{left:161.764785px;}
.x5_c00024{left:170.145135px;}
.x3b_c00024{left:171.194535px;}
.x26_c00024{left:181.911285px;}
.x61_c00024{left:183.178485px;}
.x2a_c00024{left:193.147785px;}
.x5d_c00024{left:194.860485px;}
.xd_c00024{left:204.186285px;}
.x17_c00024{left:215.046585px;}
.x21_c00024{left:225.887085px;}
.x1d_c00024{left:236.772135px;}
.x4_c00024{left:238.455135px;}
.x6_c00024{left:248.360085px;}
.x43_c00024{left:260.101485px;}
.x58_c00024{left:269.610435px;}
.x35_c00024{left:271.189485px;}
.x4e_c00024{left:282.559635px;}
.x3c_c00024{left:293.375385px;}
.xe_c00024{left:304.641585px;}
.x22_c00024{left:315.160335px;}
.x27_c00024{left:316.427535px;}
.x7_c00024{left:326.594835px;}
.x3d_c00024{left:327.772935px;}
.x23_c00024{left:337.455135px;}
.x3f_c00024{left:338.549085px;}
.x2_c00024{left:343.291185px;}
.x2b_c00024{left:347.280885px;}
.x28_c00024{left:348.404535px;}
.x37_c00024{left:349.538085px;}
.x46_c00024{left:359.027235px;}
.x36_c00024{left:360.254835px;}
.x33_c00024{left:370.798335px;}
.x4a_c00024{left:372.020985px;}
.x2c_c00024{left:381.331935px;}
.x55_c00024{left:383.099085px;}
.xf_c00024{left:391.825935px;}
.x4f_c00024{left:393.023835px;}
.x18_c00024{left:395.498835px;}
.x1e_c00024{left:403.394085px;}
.x4b_c00024{left:404.443485px;}
.x47_c00024{left:415.506735px;}
.x8_c00024{left:426.223485px;}
.x10_c00024{left:437.227335px;}
.x4c_c00024{left:438.291585px;}
.x9_c00024{left:447.404535px;}
.x40_c00024{left:448.676685px;}
.x19_c00024{left:460.413135px;}
.x24_c00024{left:470.327985px;}
.x5a_c00024{left:471.619935px;}
.x41_c00024{left:482.143635px;}
.x1a_c00024{left:492.855435px;}
.x5e_c00024{left:498.186585px;}
.x11_c00024{left:502.849485px;}
.x4d_c00024{left:504.869085px;}
.x38_c00024{left:515.145285px;}
.x2d_c00024{left:525.302685px;}
.x50_c00024{left:526.366935px;}
.x1b_c00024{left:535.994685px;}
.x29_c00024{left:538.524135px;}
.x12_c00024{left:547.973685px;}
.x59_c00024{left:559.680435px;}
.xa_c00024{left:561.576285px;}
.x2e_c00024{left:570.887235px;}
.x51_c00024{left:573.391935px;}
.x13_c00024{left:581.603985px;}
.x52_c00024{left:591.682185px;}
.x44_c00024{left:592.885035px;}
.x1f_c00024{left:604.349235px;}
.x5b_c00024{left:612.388035px;}
.x25_c00024{left:614.660085px;}
.x5f_c00024{left:626.470785px;}
.x48_c00024{left:635.039235px;}
.x2f_c00024{left:636.286635px;}
.x3_c00024{left:646.775685px;}
.x54_c00024{left:648.923985px;}
.x53_c00024{left:659.947635px;}
.x39_c00024{left:670.337685px;}
.x62_c00024{left:675.421335px;}
.x14_c00024{left:681.732585px;}
.xb_c00024{left:686.786535px;}
.x34_c00024{left:689.796135px;}
@media print{
.v0_c00024{vertical-align:0.000000pt;}
.v1_c00024{vertical-align:16.473600pt;}
.ls5_c00024{letter-spacing:-2.439360pt;}
.ls4_c00024{letter-spacing:-1.177862pt;}
.ls7_c00024{letter-spacing:-0.648173pt;}
.ls0_c00024{letter-spacing:0.000000pt;}
.ls3_c00024{letter-spacing:0.062726pt;}
.ls6_c00024{letter-spacing:2.676802pt;}
.ls1_c00024{letter-spacing:3.484800pt;}
.ls2_c00024{letter-spacing:27.878400pt;}
.ls8_c00024{letter-spacing:46.886576pt;}
.ws0_c00024{word-spacing:-17.424000pt;}
.ws1_c00024{word-spacing:0.000000pt;}
._1_c00024{width:7.596864pt;}
._2_c00024{width:8.990784pt;}
._3_c00024{width:28.723200pt;}
._0_c00024{width:1571.872896pt;}
.fsb_c00024{font-size:13.024176pt;}
.fs0_c00024{font-size:14.784000pt;}
.fsf_c00024{font-size:19.712000pt;}
.fs5_c00024{font-size:22.352000pt;}
.fs6_c00024{font-size:27.878400pt;}
.fs3_c00024{font-size:29.568000pt;}
.fs11_c00024{font-size:29.920000pt;}
.fs2_c00024{font-size:34.496000pt;}
.fse_c00024{font-size:46.886576pt;}
.fs10_c00024{font-size:50.336000pt;}
.fs8_c00024{font-size:57.376000pt;}
.fs9_c00024{font-size:64.768000pt;}
.fs4_c00024{font-size:65.472176pt;}
.fsd_c00024{font-size:66.528000pt;}
.fsa_c00024{font-size:66.880000pt;}
.fsc_c00024{font-size:69.168000pt;}
.fs1_c00024{font-size:69.696000pt;}
.fs7_c00024{font-size:70.048000pt;}
.y0_c00024{bottom:0.000000pt;}
.y1_c00024{bottom:68.000000pt;}
.y24_c00024{bottom:70.884920pt;}
.y23_c00024{bottom:101.293320pt;}
.y22_c00024{bottom:153.565320pt;}
.y20_c00024{bottom:184.928520pt;}
.y21_c00024{bottom:185.245320pt;}
.y1f_c00024{bottom:207.742520pt;}
.y1e_c00024{bottom:215.345720pt;}
.y1d_c00024{bottom:243.853320pt;}
.y1c_c00024{bottom:272.686520pt;}
.y1b_c00024{bottom:301.832120pt;}
.y1a_c00024{bottom:330.660920pt;}
.y19_c00024{bottom:359.172920pt;}
.y18_c00024{bottom:388.630920pt;}
.y17_c00024{bottom:417.464120pt;}
.y16_c00024{bottom:441.853320pt;}
.y15_c00024{bottom:445.971720pt;}
.y14_c00024{bottom:475.117320pt;}
.y13_c00024{bottom:499.515320pt;}
.y12_c00024{bottom:504.262920pt;}
.y11_c00024{bottom:534.046520pt;}
.y10_c00024{bottom:570.795320pt;}
.yf_c00024{bottom:592.333320pt;}
.ye_c00024{bottom:621.166520pt;}
.yd_c00024{bottom:649.995320pt;}
.yc_c00024{bottom:678.824120pt;}
.yb_c00024{bottom:707.331720pt;}
.ya_c00024{bottom:736.164920pt;}
.y9_c00024{bottom:765.310520pt;}
.y8_c00024{bottom:813.142920pt;}
.y7_c00024{bottom:822.646920pt;}
.y6_c00024{bottom:822.968120pt;}
.y5_c00024{bottom:835.006520pt;}
.y4_c00024{bottom:887.274120pt;}
.y3_c00024{bottom:956.653320pt;}
.y2_c00024{bottom:984.848520pt;}
.hb_c00024{height:13.583809pt;}
.h2_c00024{height:15.419250pt;}
.h7_c00024{height:18.567014pt;}
.hf_c00024{height:20.559000pt;}
.h6_c00024{height:23.312438pt;}
.h11_c00024{height:29.364844pt;}
.he_c00024{height:31.226460pt;}
.h4_c00024{height:35.978250pt;}
.h10_c00024{height:52.498875pt;}
.h9_c00024{height:59.841375pt;}
.hd_c00024{height:65.293594pt;}
.hc_c00024{height:67.884609pt;}
.h3_c00024{height:68.402813pt;}
.h8_c00024{height:68.748281pt;}
.ha_c00024{height:69.753750pt;}
.h5_c00024{height:84.759034pt;}
.h1_c00024{height:986.666667pt;}
.h0_c00024{height:1122.666667pt;}
.w1_c00024{width:638.666667pt;}
.w0_c00024{width:793.333333pt;}
.x0_c00024{left:0.000000pt;}
.x3e_c00024{left:53.485320pt;}
.x49_c00024{left:62.201720pt;}
.x20_c00024{left:64.265320pt;}
.x15_c00024{left:65.545720pt;}
.x1_c00024{left:77.333333pt;}
.x30_c00024{left:84.223720pt;}
.x1c_c00024{left:93.102920pt;}
.x16_c00024{left:102.505720pt;}
.x56_c00024{left:104.133720pt;}
.xc_c00024{left:112.264920pt;}
.x31_c00024{left:113.320920pt;}
.x45_c00024{left:121.170520pt;}
.x3a_c00024{left:122.252920pt;}
.x57_c00024{left:131.585320pt;}
.x5c_c00024{left:132.711720pt;}
.x42_c00024{left:134.902920pt;}
.x32_c00024{left:141.898920pt;}
.x60_c00024{left:143.790920pt;}
.x5_c00024{left:151.240120pt;}
.x3b_c00024{left:152.172920pt;}
.x26_c00024{left:161.698920pt;}
.x61_c00024{left:162.825320pt;}
.x2a_c00024{left:171.686920pt;}
.x5d_c00024{left:173.209320pt;}
.xd_c00024{left:181.498920pt;}
.x17_c00024{left:191.152520pt;}
.x21_c00024{left:200.788520pt;}
.x1d_c00024{left:210.464120pt;}
.x4_c00024{left:211.960120pt;}
.x6_c00024{left:220.764520pt;}
.x43_c00024{left:231.201320pt;}
.x58_c00024{left:239.653720pt;}
.x35_c00024{left:241.057320pt;}
.x4e_c00024{left:251.164120pt;}
.x3c_c00024{left:260.778120pt;}
.xe_c00024{left:270.792520pt;}
.x22_c00024{left:280.142520pt;}
.x27_c00024{left:281.268920pt;}
.x7_c00024{left:290.306520pt;}
.x3d_c00024{left:291.353720pt;}
.x23_c00024{left:299.960120pt;}
.x3f_c00024{left:300.932520pt;}
.x2_c00024{left:305.147720pt;}
.x2b_c00024{left:308.694120pt;}
.x28_c00024{left:309.692920pt;}
.x37_c00024{left:310.700520pt;}
.x46_c00024{left:319.135320pt;}
.x36_c00024{left:320.226520pt;}
.x33_c00024{left:329.598520pt;}
.x4a_c00024{left:330.685320pt;}
.x2c_c00024{left:338.961720pt;}
.x55_c00024{left:340.532520pt;}
.xf_c00024{left:348.289720pt;}
.x4f_c00024{left:349.354520pt;}
.x18_c00024{left:351.554520pt;}
.x1e_c00024{left:358.572520pt;}
.x4b_c00024{left:359.505320pt;}
.x47_c00024{left:369.339320pt;}
.x8_c00024{left:378.865320pt;}
.x10_c00024{left:388.646520pt;}
.x4c_c00024{left:389.592520pt;}
.x9_c00024{left:397.692920pt;}
.x40_c00024{left:398.823720pt;}
.x19_c00024{left:409.256120pt;}
.x24_c00024{left:418.069320pt;}
.x5a_c00024{left:419.217720pt;}
.x41_c00024{left:428.572120pt;}
.x1a_c00024{left:438.093720pt;}
.x5e_c00024{left:442.832520pt;}
.x11_c00024{left:446.977320pt;}
.x4d_c00024{left:448.772520pt;}
.x38_c00024{left:457.906920pt;}
.x2d_c00024{left:466.935720pt;}
.x50_c00024{left:467.881720pt;}
.x1b_c00024{left:476.439720pt;}
.x29_c00024{left:478.688120pt;}
.x12_c00024{left:487.087720pt;}
.x59_c00024{left:497.493720pt;}
.xa_c00024{left:499.178920pt;}
.x2e_c00024{left:507.455320pt;}
.x51_c00024{left:509.681720pt;}
.x13_c00024{left:516.981320pt;}
.x52_c00024{left:525.939720pt;}
.x44_c00024{left:527.008920pt;}
.x1f_c00024{left:537.199320pt;}
.x5b_c00024{left:544.344920pt;}
.x25_c00024{left:546.364520pt;}
.x5f_c00024{left:556.862920pt;}
.x48_c00024{left:564.479320pt;}
.x2f_c00024{left:565.588120pt;}
.x3_c00024{left:574.911720pt;}
.x54_c00024{left:576.821320pt;}
.x53_c00024{left:586.620120pt;}
.x39_c00024{left:595.855720pt;}
.x62_c00024{left:600.374520pt;}
.x14_c00024{left:605.984520pt;}
.xb_c00024{left:610.476920pt;}
.x34_c00024{left:613.152120pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_72f3997a075253bb56dbdb2f.woff2')format("woff");}.ff1_c00025{font-family:ff1_c00025;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00025;src:url('chunks/assets/font_6ec786ace142c57a69fceec2.woff2')format("woff");}.ff2_c00025{font-family:ff2_c00025;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00025;src:url('chunks/assets/font_f37c5dbe401cb6554514cd1a.woff2')format("woff");}.ff3_c00025{font-family:ff3_c00025;line-height:0.666000;font-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_c00025{transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);}
.m88_c00025{transform:matrix(0.204955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204955,0.000000,0.000000,0.250000,0,0);}
.m85_c00025{transform:matrix(0.207207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207207,0.000000,0.000000,0.250000,0,0);}
.m3a_c00025{transform:matrix(0.213542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213542,0.000000,0.000000,0.250000,0,0);}
.m4e_c00025{transform:matrix(0.229699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229699,0.000000,0.000000,0.250000,0,0);}
.m0_c00025{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00025{transform:matrix(0.250139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250139,0.000000,0.000000,0.250000,0,0);}
.m8b_c00025{transform:matrix(0.255063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255063,0.000000,0.000000,0.250000,0,0);}
.m75_c00025{transform:matrix(0.255367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255367,0.000000,0.000000,0.250000,0,0);}
.m41_c00025{transform:matrix(0.255538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255538,0.000000,0.000000,0.250000,0,0);}
.m9c_c00025{transform:matrix(0.256222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256222,0.000000,0.000000,0.250000,0,0);}
.m80_c00025{transform:matrix(0.257872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257872,0.000000,0.000000,0.250000,0,0);}
.m7a_c00025{transform:matrix(0.259661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259661,0.000000,0.000000,0.250000,0,0);}
.m3d_c00025{transform:matrix(0.260559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260559,0.000000,0.000000,0.250000,0,0);}
.m56_c00025{transform:matrix(0.260991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260991,0.000000,0.000000,0.250000,0,0);}
.m2_c00025{transform:matrix(0.262107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262107,0.000000,0.000000,0.250000,0,0);}
.m34_c00025{transform:matrix(0.262891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262891,0.000000,0.000000,0.250000,0,0);}
.m6e_c00025{transform:matrix(0.263227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263227,0.000000,0.000000,0.250000,0,0);}
.m15_c00025{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.mb_c00025{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m9a_c00025{transform:matrix(0.266100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266100,0.000000,0.000000,0.250000,0,0);}
.m23_c00025{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m25_c00025{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.m42_c00025{transform:matrix(0.267199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267199,0.000000,0.000000,0.250000,0,0);}
.m1f_c00025{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m9f_c00025{transform:matrix(0.268581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268581,0.000000,0.000000,0.250000,0,0);}
.m8d_c00025{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.m50_c00025{transform:matrix(0.268896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268896,0.000000,0.000000,0.250000,0,0);}
.m58_c00025{transform:matrix(0.269208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269208,0.000000,0.000000,0.250000,0,0);}
.m6_c00025{transform:matrix(0.270087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270087,0.000000,0.000000,0.250000,0,0);}
.ma4_c00025{transform:matrix(0.270170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270170,0.000000,0.000000,0.250000,0,0);}
.m5c_c00025{transform:matrix(0.272104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272104,0.000000,0.000000,0.250000,0,0);}
.m30_c00025{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m28_c00025{transform:matrix(0.272730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272730,0.000000,0.000000,0.250000,0,0);}
.m6b_c00025{transform:matrix(0.272795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272795,0.000000,0.000000,0.250000,0,0);}
.ma7_c00025{transform:matrix(0.273416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273416,0.000000,0.000000,0.250000,0,0);}
.m90_c00025{transform:matrix(0.273900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273900,0.000000,0.000000,0.250000,0,0);}
.m8e_c00025{transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);}
.m2e_c00025{transform:matrix(0.274901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274901,0.000000,0.000000,0.250000,0,0);}
.m4b_c00025{transform:matrix(0.275207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275207,0.000000,0.000000,0.250000,0,0);}
.m13_c00025{transform:matrix(0.275287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275287,0.000000,0.000000,0.250000,0,0);}
.m71_c00025{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m1d_c00025{transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);}
.m35_c00025{transform:matrix(0.277247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277247,0.000000,0.000000,0.250000,0,0);}
.m72_c00025{transform:matrix(0.277389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277389,0.000000,0.000000,0.250000,0,0);}
.m74_c00025{transform:matrix(0.278367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278367,0.000000,0.000000,0.250000,0,0);}
.m9d_c00025{transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);}
.m62_c00025{transform:matrix(0.278863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278863,0.000000,0.000000,0.250000,0,0);}
.m54_c00025{transform:matrix(0.279721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279721,0.000000,0.000000,0.250000,0,0);}
.m1c_c00025{transform:matrix(0.280566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280566,0.000000,0.000000,0.250000,0,0);}
.m53_c00025{transform:matrix(0.280571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280571,0.000000,0.000000,0.250000,0,0);}
.ma6_c00025{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.m77_c00025{transform:matrix(0.281937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281937,0.000000,0.000000,0.250000,0,0);}
.m46_c00025{transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);}
.ma3_c00025{transform:matrix(0.283048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283048,0.000000,0.000000,0.250000,0,0);}
.m7_c00025{transform:matrix(0.283527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283527,0.000000,0.000000,0.250000,0,0);}
.me_c00025{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m5e_c00025{transform:matrix(0.283621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283621,0.000000,0.000000,0.250000,0,0);}
.m11_c00025{transform:matrix(0.283644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283644,0.000000,0.000000,0.250000,0,0);}
.m69_c00025{transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);}
.mf_c00025{transform:matrix(0.284263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284263,0.000000,0.000000,0.250000,0,0);}
.m4a_c00025{transform:matrix(0.284537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284537,0.000000,0.000000,0.250000,0,0);}
.m1_c00025{transform:matrix(0.284591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284591,0.000000,0.000000,0.250000,0,0);}
.mc_c00025{transform:matrix(0.284924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284924,0.000000,0.000000,0.250000,0,0);}
.m52_c00025{transform:matrix(0.285189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285189,0.000000,0.000000,0.250000,0,0);}
.m3f_c00025{transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);}
.m4f_c00025{transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);}
.m97_c00025{transform:matrix(0.286135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286135,0.000000,0.000000,0.250000,0,0);}
.m48_c00025{transform:matrix(0.286668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286668,0.000000,0.000000,0.250000,0,0);}
.m9b_c00025{transform:matrix(0.286708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286708,0.000000,0.000000,0.250000,0,0);}
.md_c00025{transform:matrix(0.287318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287318,0.000000,0.000000,0.250000,0,0);}
.m5b_c00025{transform:matrix(0.287717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287717,0.000000,0.000000,0.250000,0,0);}
.m19_c00025{transform:matrix(0.288265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288265,0.000000,0.000000,0.250000,0,0);}
.m36_c00025{transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);}
.m91_c00025{transform:matrix(0.288937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288937,0.000000,0.000000,0.250000,0,0);}
.m73_c00025{transform:matrix(0.289083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289083,0.000000,0.000000,0.250000,0,0);}
.m27_c00025{transform:matrix(0.289615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289615,0.000000,0.000000,0.250000,0,0);}
.m51_c00025{transform:matrix(0.289770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289770,0.000000,0.000000,0.250000,0,0);}
.m6f_c00025{transform:matrix(0.290015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290015,0.000000,0.000000,0.250000,0,0);}
.m43_c00025{transform:matrix(0.290313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290313,0.000000,0.000000,0.250000,0,0);}
.m22_c00025{transform:matrix(0.291357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291357,0.000000,0.000000,0.250000,0,0);}
.m84_c00025{transform:matrix(0.291503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291503,0.000000,0.000000,0.250000,0,0);}
.m79_c00025{transform:matrix(0.291513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291513,0.000000,0.000000,0.250000,0,0);}
.m2b_c00025{transform:matrix(0.292174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292174,0.000000,0.000000,0.250000,0,0);}
.m65_c00025{transform:matrix(0.292527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292527,0.000000,0.000000,0.250000,0,0);}
.m2c_c00025{transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);}
.m17_c00025{transform:matrix(0.294593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294593,0.000000,0.000000,0.250000,0,0);}
.m47_c00025{transform:matrix(0.295195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295195,0.000000,0.000000,0.250000,0,0);}
.m76_c00025{transform:matrix(0.295460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295460,0.000000,0.000000,0.250000,0,0);}
.m92_c00025{transform:matrix(0.295490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295490,0.000000,0.000000,0.250000,0,0);}
.m49_c00025{transform:matrix(0.296559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296559,0.000000,0.000000,0.250000,0,0);}
.m9_c00025{transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);}
.m31_c00025{transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);}
.m63_c00025{transform:matrix(0.296987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296987,0.000000,0.000000,0.250000,0,0);}
.m87_c00025{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m38_c00025{transform:matrix(0.297152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297152,0.000000,0.000000,0.250000,0,0);}
.m95_c00025{transform:matrix(0.300519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300519,0.000000,0.000000,0.250000,0,0);}
.m57_c00025{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m7c_c00025{transform:matrix(0.302424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302424,0.000000,0.000000,0.250000,0,0);}
.m9e_c00025{transform:matrix(0.302777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302777,0.000000,0.000000,0.250000,0,0);}
.m3c_c00025{transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);}
.m93_c00025{transform:matrix(0.303707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303707,0.000000,0.000000,0.250000,0,0);}
.m64_c00025{transform:matrix(0.303790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303790,0.000000,0.000000,0.250000,0,0);}
.m5_c00025{transform:matrix(0.304517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304517,0.000000,0.000000,0.250000,0,0);}
.m2f_c00025{transform:matrix(0.304553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304553,0.000000,0.000000,0.250000,0,0);}
.m8f_c00025{transform:matrix(0.304557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304557,0.000000,0.000000,0.250000,0,0);}
.m3b_c00025{transform:matrix(0.305152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305152,0.000000,0.000000,0.250000,0,0);}
.m12_c00025{transform:matrix(0.306784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306784,0.000000,0.000000,0.250000,0,0);}
.m82_c00025{transform:matrix(0.307101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307101,0.000000,0.000000,0.250000,0,0);}
.m26_c00025{transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);}
.m32_c00025{transform:matrix(0.307876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307876,0.000000,0.000000,0.250000,0,0);}
.m21_c00025{transform:matrix(0.307919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307919,0.000000,0.000000,0.250000,0,0);}
.m4c_c00025{transform:matrix(0.308047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308047,0.000000,0.000000,0.250000,0,0);}
.m8c_c00025{transform:matrix(0.309177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309177,0.000000,0.000000,0.250000,0,0);}
.m6d_c00025{transform:matrix(0.309828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309828,0.000000,0.000000,0.250000,0,0);}
.m20_c00025{transform:matrix(0.310571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310571,0.000000,0.000000,0.250000,0,0);}
.m66_c00025{transform:matrix(0.310999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310999,0.000000,0.000000,0.250000,0,0);}
.m4d_c00025{transform:matrix(0.311030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311030,0.000000,0.000000,0.250000,0,0);}
.ma_c00025{transform:matrix(0.311047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311047,0.000000,0.000000,0.250000,0,0);}
.m6a_c00025{transform:matrix(0.311589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311589,0.000000,0.000000,0.250000,0,0);}
.m40_c00025{transform:matrix(0.312372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312372,0.000000,0.000000,0.250000,0,0);}
.m61_c00025{transform:matrix(0.312388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312388,0.000000,0.000000,0.250000,0,0);}
.m5a_c00025{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.m39_c00025{transform:matrix(0.313292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313292,0.000000,0.000000,0.250000,0,0);}
.m3e_c00025{transform:matrix(0.314099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314099,0.000000,0.000000,0.250000,0,0);}
.m55_c00025{transform:matrix(0.315366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315366,0.000000,0.000000,0.250000,0,0);}
.m5d_c00025{transform:matrix(0.315539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315539,0.000000,0.000000,0.250000,0,0);}
.m7e_c00025{transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);}
.m45_c00025{transform:matrix(0.316261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316261,0.000000,0.000000,0.250000,0,0);}
.m44_c00025{transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);}
.m8_c00025{transform:matrix(0.317473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317473,0.000000,0.000000,0.250000,0,0);}
.m14_c00025{transform:matrix(0.319383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319383,0.000000,0.000000,0.250000,0,0);}
.m96_c00025{transform:matrix(0.319694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319694,0.000000,0.000000,0.250000,0,0);}
.m70_c00025{transform:matrix(0.319859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319859,0.000000,0.000000,0.250000,0,0);}
.m7d_c00025{transform:matrix(0.320677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320677,0.000000,0.000000,0.250000,0,0);}
.m1e_c00025{transform:matrix(0.321773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321773,0.000000,0.000000,0.250000,0,0);}
.ma1_c00025{transform:matrix(0.321816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321816,0.000000,0.000000,0.250000,0,0);}
.m59_c00025{transform:matrix(0.324062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324062,0.000000,0.000000,0.250000,0,0);}
.m6c_c00025{transform:matrix(0.324162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324162,0.000000,0.000000,0.250000,0,0);}
.m4_c00025{transform:matrix(0.324715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324715,0.000000,0.000000,0.250000,0,0);}
.ma2_c00025{transform:matrix(0.325360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325360,0.000000,0.000000,0.250000,0,0);}
.m94_c00025{transform:matrix(0.325798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325798,0.000000,0.000000,0.250000,0,0);}
.m68_c00025{transform:matrix(0.326063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326063,0.000000,0.000000,0.250000,0,0);}
.m37_c00025{transform:matrix(0.326184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326184,0.000000,0.000000,0.250000,0,0);}
.m16_c00025{transform:matrix(0.327911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327911,0.000000,0.000000,0.250000,0,0);}
.m83_c00025{transform:matrix(0.328208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328208,0.000000,0.000000,0.250000,0,0);}
.m10_c00025{transform:matrix(0.328880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328880,0.000000,0.000000,0.250000,0,0);}
.m60_c00025{transform:matrix(0.330354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330354,0.000000,0.000000,0.250000,0,0);}
.m1b_c00025{transform:matrix(0.331297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331297,0.000000,0.000000,0.250000,0,0);}
.m99_c00025{transform:matrix(0.331699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331699,0.000000,0.000000,0.250000,0,0);}
.m2d_c00025{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m7f_c00025{transform:matrix(0.333958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333958,0.000000,0.000000,0.250000,0,0);}
.m3_c00025{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m7b_c00025{transform:matrix(0.345799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345799,0.000000,0.000000,0.250000,0,0);}
.m29_c00025{transform:matrix(0.346239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346239,0.000000,0.000000,0.250000,0,0);}
.m18_c00025{transform:matrix(0.347504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347504,0.000000,0.000000,0.250000,0,0);}
.m8a_c00025{transform:matrix(0.347514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347514,0.000000,0.000000,0.250000,0,0);}
.m98_c00025{transform:matrix(0.348566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348566,0.000000,0.000000,0.250000,0,0);}
.m81_c00025{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.ma0_c00025{transform:matrix(0.350551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350551,0.000000,0.000000,0.250000,0,0);}
.m78_c00025{transform:matrix(0.351400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351400,0.000000,0.000000,0.250000,0,0);}
.m2a_c00025{transform:matrix(0.351850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351850,0.000000,0.000000,0.250000,0,0);}
.m33_c00025{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m1a_c00025{transform:matrix(0.358716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358716,0.000000,0.000000,0.250000,0,0);}
.m24_c00025{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m67_c00025{transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);}
.m86_c00025{transform:matrix(0.368506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368506,0.000000,0.000000,0.250000,0,0);}
.m5f_c00025{transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);}
.v0_c00025{vertical-align:0.000000px;}
.ls6_c00025{letter-spacing:-2.744280px;}
.lse_c00025{letter-spacing:-1.121234px;}
.ls0_c00025{letter-spacing:0.000000px;}
.ls7_c00025{letter-spacing:0.870329px;}
.ls8_c00025{letter-spacing:1.246687px;}
.ls4_c00025{letter-spacing:1.301573px;}
.lsd_c00025{letter-spacing:2.885414px;}
.ls9_c00025{letter-spacing:2.970475px;}
.lsa_c00025{letter-spacing:3.112798px;}
.ls2_c00025{letter-spacing:3.366000px;}
.ls3_c00025{letter-spacing:3.920400px;}
.ls1_c00025{letter-spacing:3.999610px;}
.lsc_c00025{letter-spacing:29.937798px;}
.ls5_c00025{letter-spacing:51.321798px;}
.lsb_c00025{letter-spacing:52.747398px;}
.sc__c00025{text-shadow:none;}
.sc0_c00025{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00025{-webkit-text-stroke:0px transparent;}
.sc0_c00025{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00025{word-spacing:0.000000px;}
._0_c00025{width:35.437248px;}
.fc0_c00025{color:transparent;}
.fs0_c00025{font-size:22.176000px;}
.fsf_c00025{font-size:29.937798px;}
.fs2_c00025{font-size:38.808000px;}
.fs5_c00025{font-size:45.144000px;}
.fs7_c00025{font-size:51.321798px;}
.fse_c00025{font-size:52.747398px;}
.fsd_c00025{font-size:66.528000px;}
.fs3_c00025{font-size:67.320000px;}
.fsc_c00025{font-size:68.112198px;}
.fs8_c00025{font-size:72.864000px;}
.fsb_c00025{font-size:74.448000px;}
.fsa_c00025{font-size:74.844000px;}
.fs4_c00025{font-size:78.408000px;}
.fs6_c00025{font-size:78.804000px;}
.fs1_c00025{font-size:79.992198px;}
.fs9_c00025{font-size:91.872198px;}
.y0_c00025{bottom:0.000000px;}
.y1_c00025{bottom:76.500000px;}
.y20_c00025{bottom:106.475535px;}
.y1f_c00025{bottom:137.120985px;}
.y1e_c00025{bottom:167.063535px;}
.y1d_c00025{bottom:203.059935px;}
.y1c_c00025{bottom:236.200185px;}
.y1b_c00025{bottom:255.807135px;}
.y1a_c00025{bottom:268.993935px;}
.y19_c00025{bottom:278.968185px;}
.y18_c00025{bottom:301.426335px;}
.y17_c00025{bottom:334.566585px;}
.y16_c00025{bottom:366.642585px;}
.y15_c00025{bottom:431.863785px;}
.y14_c00025{bottom:463.588335px;}
.y13_c00025{bottom:495.659385px;}
.y12_c00025{bottom:528.091785px;}
.y11_c00025{bottom:560.524185px;}
.y10_c00025{bottom:592.956585px;}
.yf_c00025{bottom:625.745385px;}
.ye_c00025{bottom:690.615135px;}
.yd_c00025{bottom:723.403935px;}
.yc_c00025{bottom:738.016335px;}
.yb_c00025{bottom:755.836335px;}
.ya_c00025{bottom:787.907385px;}
.y9_c00025{bottom:820.339785px;}
.y8_c00025{bottom:852.777135px;}
.y7_c00025{bottom:885.560985px;}
.y6_c00025{bottom:902.673135px;}
.y5_c00025{bottom:917.998335px;}
.y4_c00025{bottom:998.896185px;}
.y2_c00025{bottom:1026.695385px;}
.y3_c00025{bottom:1079.442585px;}
.h11_c00025{height:19.938573px;}
.h2_c00025{height:23.128875px;}
.h9_c00025{height:34.180317px;}
.h10_c00025{height:35.129767px;}
.h4_c00025{height:40.475531px;}
.h7_c00025{height:47.083781px;}
.hf_c00025{height:69.386625px;}
.h5_c00025{height:70.212656px;}
.he_c00025{height:71.038894px;}
.ha_c00025{height:71.512031px;}
.hd_c00025{height:73.066641px;}
.hc_c00025{height:73.455293px;}
.h6_c00025{height:76.953164px;}
.h8_c00025{height:77.341816px;}
.h3_c00025{height:78.507968px;}
.hb_c00025{height:90.167538px;}
.h1_c00025{height:1110.000000px;}
.h0_c00025{height:1263.000000px;}
.w1_c00025{width:718.500000px;}
.w0_c00025{width:892.500000px;}
.x0_c00025{left:0.000000px;}
.x2_c00025{left:58.898850px;}
.x42_c00025{left:61.250100px;}
.x3d_c00025{left:66.422850px;}
.x1f_c00025{left:67.457400px;}
.x5b_c00025{left:69.061200px;}
.xe_c00025{left:70.140300px;}
.x1_c00025{left:87.000000px;}
.x17_c00025{left:89.732400px;}
.x4f_c00025{left:99.914550px;}
.x37_c00025{left:111.042150px;}
.x5c_c00025{left:112.235100px;}
.x4a_c00025{left:121.169850px;}
.x5_c00025{left:122.362800px;}
.x53_c00025{left:123.936900px;}
.xf_c00025{left:133.980450px;}
.x2e_c00025{left:144.543750px;}
.x20_c00025{left:155.508000px;}
.x6_c00025{left:156.700950px;}
.x35_c00025{left:166.764300px;}
.x26_c00025{left:168.170100px;}
.x10_c00025{left:177.624600px;}
.x5d_c00025{left:179.456100px;}
.x7_c00025{left:189.915450px;}
.x27_c00025{left:200.221350px;}
.x50_c00025{left:202.478550px;}
.x54_c00025{left:210.448050px;}
.x11_c00025{left:212.007300px;}
.x21_c00025{left:221.456850px;}
.x30_c00025{left:223.060650px;}
.x28_c00025{left:233.054700px;}
.x4_c00025{left:234.891150px;}
.x3e_c00025{left:245.335650px;}
.x8_c00025{left:255.656400px;}
.x57_c00025{left:266.368200px;}
.x18_c00025{left:267.625500px;}
.x29_c00025{left:278.173950px;}
.x19_c00025{left:288.890700px;}
.x43_c00025{left:290.073750px;}
.x58_c00025{left:300.770700px;}
.x2a_c00025{left:311.447850px;}
.x47_c00025{left:312.482400px;}
.x9_c00025{left:322.496250px;}
.x38_c00025{left:323.580300px;}
.x3f_c00025{left:334.262400px;}
.x12_c00025{left:345.206850px;}
.x22_c00025{left:354.755400px;}
.x59_c00025{left:366.150300px;}
.x34_c00025{left:367.377900px;}
.x31_c00025{left:376.847250px;}
.x13_c00025{left:378.782700px;}
.x48_c00025{left:387.935250px;}
.x1a_c00025{left:389.162850px;}
.x4b_c00025{left:390.197400px;}
.x23_c00025{left:398.627250px;}
.x2b_c00025{left:400.542900px;}
.xa_c00025{left:411.269550px;}
.x1b_c00025{left:422.941650px;}
.x40_c00025{left:432.797100px;}
.x3c_c00025{left:434.430600px;}
.x44_c00025{left:435.786900px;}
.x24_c00025{left:445.063200px;}
.x14_c00025{left:455.854200px;}
.x36_c00025{left:465.630450px;}
.x4e_c00025{left:467.194650px;}
.x5e_c00025{left:478.257900px;}
.x1c_c00025{left:487.677750px;}
.x45_c00025{left:489.934950px;}
.xb_c00025{left:499.641900px;}
.x25_c00025{left:510.690300px;}
.xc_c00025{left:521.892150px;}
.x49_c00025{left:533.272200px;}
.x4c_c00025{left:535.569000px;}
.x5a_c00025{left:542.513850px;}
.x1d_c00025{left:544.157250px;}
.x15_c00025{left:555.418500px;}
.x39_c00025{left:565.066050px;}
.x2c_c00025{left:566.288700px;}
.x5f_c00025{left:567.352950px;}
.x16_c00025{left:577.505400px;}
.x51_c00025{left:587.425200px;}
.x3a_c00025{left:599.235900px;}
.x2d_c00025{left:600.409050px;}
.x60_c00025{left:609.259650px;}
.x41_c00025{left:611.506950px;}
.x46_c00025{left:621.699000px;}
.x4d_c00025{left:631.608900px;}
.x32_c00025{left:632.935500px;}
.x3_c00025{left:643.206750px;}
.x61_c00025{left:644.330400px;}
.xd_c00025{left:646.765800px;}
.x33_c00025{left:654.532350px;}
.x1e_c00025{left:666.506400px;}
.x3b_c00025{left:677.807250px;}
.x52_c00025{left:685.271850px;}
.x55_c00025{left:686.603400px;}
.x2f_c00025{left:688.137900px;}
.x56_c00025{left:689.939700px;}
@media print{
.v0_c00025{vertical-align:0.000000pt;}
.ls6_c00025{letter-spacing:-2.439360pt;}
.lse_c00025{letter-spacing:-0.996653pt;}
.ls0_c00025{letter-spacing:0.000000pt;}
.ls7_c00025{letter-spacing:0.773626pt;}
.ls8_c00025{letter-spacing:1.108166pt;}
.ls4_c00025{letter-spacing:1.156954pt;}
.lsd_c00025{letter-spacing:2.564813pt;}
.ls9_c00025{letter-spacing:2.640422pt;}
.lsa_c00025{letter-spacing:2.766931pt;}
.ls2_c00025{letter-spacing:2.992000pt;}
.ls3_c00025{letter-spacing:3.484800pt;}
.ls1_c00025{letter-spacing:3.555209pt;}
.lsc_c00025{letter-spacing:26.611376pt;}
.ls5_c00025{letter-spacing:45.619376pt;}
.lsb_c00025{letter-spacing:46.886576pt;}
.ws0_c00025{word-spacing:0.000000pt;}
._0_c00025{width:31.499776pt;}
.fs0_c00025{font-size:19.712000pt;}
.fsf_c00025{font-size:26.611376pt;}
.fs2_c00025{font-size:34.496000pt;}
.fs5_c00025{font-size:40.128000pt;}
.fs7_c00025{font-size:45.619376pt;}
.fse_c00025{font-size:46.886576pt;}
.fsd_c00025{font-size:59.136000pt;}
.fs3_c00025{font-size:59.840000pt;}
.fsc_c00025{font-size:60.544176pt;}
.fs8_c00025{font-size:64.768000pt;}
.fsb_c00025{font-size:66.176000pt;}
.fsa_c00025{font-size:66.528000pt;}
.fs4_c00025{font-size:69.696000pt;}
.fs6_c00025{font-size:70.048000pt;}
.fs1_c00025{font-size:71.104176pt;}
.fs9_c00025{font-size:81.664176pt;}
.y0_c00025{bottom:0.000000pt;}
.y1_c00025{bottom:68.000000pt;}
.y20_c00025{bottom:94.644920pt;}
.y1f_c00025{bottom:121.885320pt;}
.y1e_c00025{bottom:148.500920pt;}
.y1d_c00025{bottom:180.497720pt;}
.y1c_c00025{bottom:209.955720pt;}
.y1b_c00025{bottom:227.384120pt;}
.y1a_c00025{bottom:239.105720pt;}
.y19_c00025{bottom:247.971720pt;}
.y18_c00025{bottom:267.934520pt;}
.y17_c00025{bottom:297.392520pt;}
.y16_c00025{bottom:325.904520pt;}
.y15_c00025{bottom:383.878920pt;}
.y14_c00025{bottom:412.078520pt;}
.y13_c00025{bottom:440.586120pt;}
.y12_c00025{bottom:469.414920pt;}
.y11_c00025{bottom:498.243720pt;}
.y10_c00025{bottom:527.072520pt;}
.yf_c00025{bottom:556.218120pt;}
.ye_c00025{bottom:613.880120pt;}
.yd_c00025{bottom:643.025720pt;}
.yc_c00025{bottom:656.014520pt;}
.yb_c00025{bottom:671.854520pt;}
.ya_c00025{bottom:700.362120pt;}
.y9_c00025{bottom:729.190920pt;}
.y8_c00025{bottom:758.024120pt;}
.y7_c00025{bottom:787.165320pt;}
.y6_c00025{bottom:802.376120pt;}
.y5_c00025{bottom:815.998520pt;}
.y4_c00025{bottom:887.907720pt;}
.y2_c00025{bottom:912.618120pt;}
.y3_c00025{bottom:959.504520pt;}
.h11_c00025{height:17.723176pt;}
.h2_c00025{height:20.559000pt;}
.h9_c00025{height:30.382504pt;}
.h10_c00025{height:31.226460pt;}
.h4_c00025{height:35.978250pt;}
.h7_c00025{height:41.852250pt;}
.hf_c00025{height:61.677000pt;}
.h5_c00025{height:62.411250pt;}
.he_c00025{height:63.145684pt;}
.ha_c00025{height:63.566250pt;}
.hd_c00025{height:64.948125pt;}
.hc_c00025{height:65.293594pt;}
.h6_c00025{height:68.402813pt;}
.h8_c00025{height:68.748281pt;}
.h3_c00025{height:69.784860pt;}
.hb_c00025{height:80.148923pt;}
.h1_c00025{height:986.666667pt;}
.h0_c00025{height:1122.666667pt;}
.w1_c00025{width:638.666667pt;}
.w0_c00025{width:793.333333pt;}
.x0_c00025{left:0.000000pt;}
.x2_c00025{left:52.354533pt;}
.x42_c00025{left:54.444533pt;}
.x3d_c00025{left:59.042533pt;}
.x1f_c00025{left:59.962133pt;}
.x5b_c00025{left:61.387733pt;}
.xe_c00025{left:62.346933pt;}
.x1_c00025{left:77.333333pt;}
.x17_c00025{left:79.762133pt;}
.x4f_c00025{left:88.812933pt;}
.x37_c00025{left:98.704133pt;}
.x5c_c00025{left:99.764533pt;}
.x4a_c00025{left:107.706533pt;}
.x5_c00025{left:108.766933pt;}
.x53_c00025{left:110.166133pt;}
.xf_c00025{left:119.093733pt;}
.x2e_c00025{left:128.483333pt;}
.x20_c00025{left:138.229333pt;}
.x6_c00025{left:139.289733pt;}
.x35_c00025{left:148.234933pt;}
.x26_c00025{left:149.484533pt;}
.x10_c00025{left:157.888533pt;}
.x5d_c00025{left:159.516533pt;}
.x7_c00025{left:168.813733pt;}
.x27_c00025{left:177.974533pt;}
.x50_c00025{left:179.980933pt;}
.x54_c00025{left:187.064933pt;}
.x11_c00025{left:188.450933pt;}
.x21_c00025{left:196.850533pt;}
.x30_c00025{left:198.276133pt;}
.x28_c00025{left:207.159733pt;}
.x4_c00025{left:208.792133pt;}
.x3e_c00025{left:218.076133pt;}
.x8_c00025{left:227.250133pt;}
.x57_c00025{left:236.771733pt;}
.x18_c00025{left:237.889333pt;}
.x29_c00025{left:247.265733pt;}
.x19_c00025{left:256.791733pt;}
.x43_c00025{left:257.843333pt;}
.x58_c00025{left:267.351733pt;}
.x2a_c00025{left:276.842533pt;}
.x47_c00025{left:277.762133pt;}
.x9_c00025{left:286.663333pt;}
.x38_c00025{left:287.626933pt;}
.x3f_c00025{left:297.122133pt;}
.x12_c00025{left:306.850533pt;}
.x22_c00025{left:315.338133pt;}
.x59_c00025{left:325.466933pt;}
.x34_c00025{left:326.558133pt;}
.x31_c00025{left:334.975333pt;}
.x13_c00025{left:336.695733pt;}
.x48_c00025{left:344.831333pt;}
.x1a_c00025{left:345.922533pt;}
.x4b_c00025{left:346.842133pt;}
.x23_c00025{left:354.335333pt;}
.x2b_c00025{left:356.038133pt;}
.xa_c00025{left:365.572933pt;}
.x1b_c00025{left:375.948133pt;}
.x40_c00025{left:384.708533pt;}
.x3c_c00025{left:386.160533pt;}
.x44_c00025{left:387.366133pt;}
.x24_c00025{left:395.611733pt;}
.x14_c00025{left:405.203733pt;}
.x36_c00025{left:413.893733pt;}
.x4e_c00025{left:415.284133pt;}
.x5e_c00025{left:425.118133pt;}
.x1c_c00025{left:433.491333pt;}
.x45_c00025{left:435.497733pt;}
.xb_c00025{left:444.126133pt;}
.x25_c00025{left:453.946933pt;}
.xc_c00025{left:463.904133pt;}
.x49_c00025{left:474.019733pt;}
.x4c_c00025{left:476.061333pt;}
.x5a_c00025{left:482.234533pt;}
.x1d_c00025{left:483.695333pt;}
.x15_c00025{left:493.705333pt;}
.x39_c00025{left:502.280933pt;}
.x2c_c00025{left:503.367733pt;}
.x5f_c00025{left:504.313733pt;}
.x16_c00025{left:513.338133pt;}
.x51_c00025{left:522.155733pt;}
.x3a_c00025{left:532.654133pt;}
.x2d_c00025{left:533.696933pt;}
.x60_c00025{left:541.564133pt;}
.x41_c00025{left:543.561733pt;}
.x46_c00025{left:552.621333pt;}
.x4d_c00025{left:561.430133pt;}
.x32_c00025{left:562.609333pt;}
.x3_c00025{left:571.739333pt;}
.x61_c00025{left:572.738133pt;}
.xd_c00025{left:574.902933pt;}
.x33_c00025{left:581.806533pt;}
.x1e_c00025{left:592.450133pt;}
.x3b_c00025{left:602.495333pt;}
.x52_c00025{left:609.130533pt;}
.x55_c00025{left:610.314133pt;}
.x2f_c00025{left:611.678133pt;}
.x56_c00025{left:613.279733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cbb2895db063d24a5c52fcf1.woff2')format("woff");}.ff1_c00026{font-family:ff1_c00026;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00026;src:url('chunks/assets/font_cf5cf356350f6ce3125e45da.woff2')format("woff");}.ff2_c00026{font-family:ff2_c00026;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00026;src:url('chunks/assets/font_c2aa6675f236a6ee865a740b.woff2')format("woff");}.ff3_c00026{font-family:ff3_c00026;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00026;src:url('chunks/assets/font_f706a46659377952d74301d7.woff2')format("woff");}.ff4_c00026{font-family:ff4_c00026;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00026;src:url('chunks/assets/font_79887d399da10fbdefcc9f76.woff2')format("woff");}.ff5_c00026{font-family:ff5_c00026;line-height:0.666000;font-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_c00026{transform:matrix(0.183798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183798,0.000000,0.000000,0.250000,0,0);}
.ma7_c00026{transform:matrix(0.206790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206790,0.000000,0.000000,0.250000,0,0);}
.m3d_c00026{transform:matrix(0.220701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220701,0.000000,0.000000,0.250000,0,0);}
.m6e_c00026{transform:matrix(0.240850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240850,0.000000,0.000000,0.250000,0,0);}
.m1_c00026{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00026{transform:matrix(0.250774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250774,0.000000,0.000000,0.250000,0,0);}
.m1b_c00026{transform:matrix(0.251985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251985,0.000000,0.000000,0.250000,0,0);}
.m56_c00026{transform:matrix(0.252648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252648,0.000000,0.000000,0.250000,0,0);}
.m5c_c00026{transform:matrix(0.252684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252684,0.000000,0.000000,0.250000,0,0);}
.m0_c00026{transform:matrix(0.252693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252693,0.000000,0.000000,0.250000,0,0);}
.m9c_c00026{transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);}
.m63_c00026{transform:matrix(0.255485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255485,0.000000,0.000000,0.250000,0,0);}
.mb_c00026{transform:matrix(0.255758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255758,0.000000,0.000000,0.250000,0,0);}
.m23_c00026{transform:matrix(0.256784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256784,0.000000,0.000000,0.250000,0,0);}
.m6_c00026{transform:matrix(0.259095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259095,0.000000,0.000000,0.250000,0,0);}
.m20_c00026{transform:matrix(0.259554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259554,0.000000,0.000000,0.250000,0,0);}
.me_c00026{transform:matrix(0.259661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259661,0.000000,0.000000,0.250000,0,0);}
.m91_c00026{transform:matrix(0.260178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260178,0.000000,0.000000,0.250000,0,0);}
.m6d_c00026{transform:matrix(0.260289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260289,0.000000,0.000000,0.250000,0,0);}
.m16_c00026{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m7_c00026{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m4_c00026{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m86_c00026{transform:matrix(0.264466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264466,0.000000,0.000000,0.250000,0,0);}
.m80_c00026{transform:matrix(0.265402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265402,0.000000,0.000000,0.250000,0,0);}
.m1c_c00026{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m4d_c00026{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.m9b_c00026{transform:matrix(0.267482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267482,0.000000,0.000000,0.250000,0,0);}
.md_c00026{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.ma0_c00026{transform:matrix(0.268081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268081,0.000000,0.000000,0.250000,0,0);}
.m97_c00026{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.m60_c00026{transform:matrix(0.268926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268926,0.000000,0.000000,0.250000,0,0);}
.m98_c00026{transform:matrix(0.269185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269185,0.000000,0.000000,0.250000,0,0);}
.m2e_c00026{transform:matrix(0.269857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269857,0.000000,0.000000,0.250000,0,0);}
.m52_c00026{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m45_c00026{transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);}
.m34_c00026{transform:matrix(0.272050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272050,0.000000,0.000000,0.250000,0,0);}
.m55_c00026{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m10_c00026{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m61_c00026{transform:matrix(0.273306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273306,0.000000,0.000000,0.250000,0,0);}
.m2a_c00026{transform:matrix(0.273916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273916,0.000000,0.000000,0.250000,0,0);}
.m7f_c00026{transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);}
.ma3_c00026{transform:matrix(0.275287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275287,0.000000,0.000000,0.250000,0,0);}
.m92_c00026{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m68_c00026{transform:matrix(0.275697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275697,0.000000,0.000000,0.250000,0,0);}
.m49_c00026{transform:matrix(0.277905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277905,0.000000,0.000000,0.250000,0,0);}
.m7b_c00026{transform:matrix(0.279350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279350,0.000000,0.000000,0.250000,0,0);}
.ma1_c00026{transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);}
.mc_c00026{transform:matrix(0.279927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279927,0.000000,0.000000,0.250000,0,0);}
.m7a_c00026{transform:matrix(0.280566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280566,0.000000,0.000000,0.250000,0,0);}
.m7d_c00026{transform:matrix(0.282165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282165,0.000000,0.000000,0.250000,0,0);}
.m71_c00026{transform:matrix(0.282610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282610,0.000000,0.000000,0.250000,0,0);}
.m73_c00026{transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);}
.m8e_c00026{transform:matrix(0.283070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283070,0.000000,0.000000,0.250000,0,0);}
.m67_c00026{transform:matrix(0.283103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283103,0.000000,0.000000,0.250000,0,0);}
.m4f_c00026{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m81_c00026{transform:matrix(0.284371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284371,0.000000,0.000000,0.250000,0,0);}
.m17_c00026{transform:matrix(0.284924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284924,0.000000,0.000000,0.250000,0,0);}
.ma6_c00026{transform:matrix(0.285386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285386,0.000000,0.000000,0.250000,0,0);}
.m26_c00026{transform:matrix(0.285488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285488,0.000000,0.000000,0.250000,0,0);}
.m69_c00026{transform:matrix(0.285572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285572,0.000000,0.000000,0.250000,0,0);}
.m90_c00026{transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);}
.m93_c00026{transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);}
.m82_c00026{transform:matrix(0.286111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286111,0.000000,0.000000,0.250000,0,0);}
.m74_c00026{transform:matrix(0.286515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286515,0.000000,0.000000,0.250000,0,0);}
.m19_c00026{transform:matrix(0.286823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286823,0.000000,0.000000,0.250000,0,0);}
.m21_c00026{transform:matrix(0.286914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286914,0.000000,0.000000,0.250000,0,0);}
.m7c_c00026{transform:matrix(0.287090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287090,0.000000,0.000000,0.250000,0,0);}
.m78_c00026{transform:matrix(0.287569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287569,0.000000,0.000000,0.250000,0,0);}
.m13_c00026{transform:matrix(0.287702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287702,0.000000,0.000000,0.250000,0,0);}
.m11_c00026{transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);}
.m57_c00026{transform:matrix(0.288846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288846,0.000000,0.000000,0.250000,0,0);}
.m50_c00026{transform:matrix(0.288930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288930,0.000000,0.000000,0.250000,0,0);}
.m76_c00026{transform:matrix(0.288974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288974,0.000000,0.000000,0.250000,0,0);}
.m79_c00026{transform:matrix(0.289865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289865,0.000000,0.000000,0.250000,0,0);}
.m2d_c00026{transform:matrix(0.290081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290081,0.000000,0.000000,0.250000,0,0);}
.m95_c00026{transform:matrix(0.290972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290972,0.000000,0.000000,0.250000,0,0);}
.m62_c00026{transform:matrix(0.291033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291033,0.000000,0.000000,0.250000,0,0);}
.m5b_c00026{transform:matrix(0.291057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291057,0.000000,0.000000,0.250000,0,0);}
.m43_c00026{transform:matrix(0.291099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291099,0.000000,0.000000,0.250000,0,0);}
.m33_c00026{transform:matrix(0.291650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291650,0.000000,0.000000,0.250000,0,0);}
.m3f_c00026{transform:matrix(0.291966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291966,0.000000,0.000000,0.250000,0,0);}
.m8b_c00026{transform:matrix(0.293496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293496,0.000000,0.000000,0.250000,0,0);}
.m2b_c00026{transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);}
.m46_c00026{transform:matrix(0.293847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293847,0.000000,0.000000,0.250000,0,0);}
.m5d_c00026{transform:matrix(0.294414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294414,0.000000,0.000000,0.250000,0,0);}
.m6f_c00026{transform:matrix(0.294636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294636,0.000000,0.000000,0.250000,0,0);}
.m6a_c00026{transform:matrix(0.294780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294780,0.000000,0.000000,0.250000,0,0);}
.m3c_c00026{transform:matrix(0.295516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295516,0.000000,0.000000,0.250000,0,0);}
.m2f_c00026{transform:matrix(0.295723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295723,0.000000,0.000000,0.250000,0,0);}
.m4c_c00026{transform:matrix(0.296009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296009,0.000000,0.000000,0.250000,0,0);}
.ma_c00026{transform:matrix(0.296532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296532,0.000000,0.000000,0.250000,0,0);}
.m72_c00026{transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);}
.m12_c00026{transform:matrix(0.296881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296881,0.000000,0.000000,0.250000,0,0);}
.m9f_c00026{transform:matrix(0.297461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297461,0.000000,0.000000,0.250000,0,0);}
.m58_c00026{transform:matrix(0.297671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297671,0.000000,0.000000,0.250000,0,0);}
.m4b_c00026{transform:matrix(0.297736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297736,0.000000,0.000000,0.250000,0,0);}
.m1a_c00026{transform:matrix(0.298017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298017,0.000000,0.000000,0.250000,0,0);}
.m15_c00026{transform:matrix(0.298905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298905,0.000000,0.000000,0.250000,0,0);}
.m9e_c00026{transform:matrix(0.299520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299520,0.000000,0.000000,0.250000,0,0);}
.m89_c00026{transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);}
.m83_c00026{transform:matrix(0.300589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300589,0.000000,0.000000,0.250000,0,0);}
.m9_c00026{transform:matrix(0.300842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300842,0.000000,0.000000,0.250000,0,0);}
.m6b_c00026{transform:matrix(0.301321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301321,0.000000,0.000000,0.250000,0,0);}
.m18_c00026{transform:matrix(0.301413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301413,0.000000,0.000000,0.250000,0,0);}
.m3e_c00026{transform:matrix(0.302135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302135,0.000000,0.000000,0.250000,0,0);}
.m4e_c00026{transform:matrix(0.302354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302354,0.000000,0.000000,0.250000,0,0);}
.m5_c00026{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m77_c00026{transform:matrix(0.302709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302709,0.000000,0.000000,0.250000,0,0);}
.m41_c00026{transform:matrix(0.302907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302907,0.000000,0.000000,0.250000,0,0);}
.m3a_c00026{transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);}
.m22_c00026{transform:matrix(0.303997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303997,0.000000,0.000000,0.250000,0,0);}
.m32_c00026{transform:matrix(0.304501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304501,0.000000,0.000000,0.250000,0,0);}
.m99_c00026{transform:matrix(0.305475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305475,0.000000,0.000000,0.250000,0,0);}
.m4a_c00026{transform:matrix(0.305578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305578,0.000000,0.000000,0.250000,0,0);}
.m47_c00026{transform:matrix(0.305841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305841,0.000000,0.000000,0.250000,0,0);}
.m1f_c00026{transform:matrix(0.306357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306357,0.000000,0.000000,0.250000,0,0);}
.m5a_c00026{transform:matrix(0.306558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306558,0.000000,0.000000,0.250000,0,0);}
.m51_c00026{transform:matrix(0.306573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306573,0.000000,0.000000,0.250000,0,0);}
.m37_c00026{transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);}
.m9d_c00026{transform:matrix(0.308058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308058,0.000000,0.000000,0.250000,0,0);}
.m64_c00026{transform:matrix(0.308071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308071,0.000000,0.000000,0.250000,0,0);}
.m40_c00026{transform:matrix(0.308532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308532,0.000000,0.000000,0.250000,0,0);}
.m5f_c00026{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m70_c00026{transform:matrix(0.310271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310271,0.000000,0.000000,0.250000,0,0);}
.m3b_c00026{transform:matrix(0.310407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310407,0.000000,0.000000,0.250000,0,0);}
.m88_c00026{transform:matrix(0.310586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310586,0.000000,0.000000,0.250000,0,0);}
.m48_c00026{transform:matrix(0.311401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311401,0.000000,0.000000,0.250000,0,0);}
.m65_c00026{transform:matrix(0.312463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312463,0.000000,0.000000,0.250000,0,0);}
.m54_c00026{transform:matrix(0.314575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314575,0.000000,0.000000,0.250000,0,0);}
.m85_c00026{transform:matrix(0.316232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316232,0.000000,0.000000,0.250000,0,0);}
.m1e_c00026{transform:matrix(0.316859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316859,0.000000,0.000000,0.250000,0,0);}
.m27_c00026{transform:matrix(0.317428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317428,0.000000,0.000000,0.250000,0,0);}
.m8a_c00026{transform:matrix(0.317470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317470,0.000000,0.000000,0.250000,0,0);}
.m5e_c00026{transform:matrix(0.317689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317689,0.000000,0.000000,0.250000,0,0);}
.ma4_c00026{transform:matrix(0.319875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319875,0.000000,0.000000,0.250000,0,0);}
.m30_c00026{transform:matrix(0.321222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321222,0.000000,0.000000,0.250000,0,0);}
.m44_c00026{transform:matrix(0.321773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321773,0.000000,0.000000,0.250000,0,0);}
.m2_c00026{transform:matrix(0.322071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322071,0.000000,0.000000,0.250000,0,0);}
.m38_c00026{transform:matrix(0.323539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323539,0.000000,0.000000,0.250000,0,0);}
.m24_c00026{transform:matrix(0.324220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324220,0.000000,0.000000,0.250000,0,0);}
.m42_c00026{transform:matrix(0.324794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324794,0.000000,0.000000,0.250000,0,0);}
.m7e_c00026{transform:matrix(0.325574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325574,0.000000,0.000000,0.250000,0,0);}
.mf_c00026{transform:matrix(0.326944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326944,0.000000,0.000000,0.250000,0,0);}
.m35_c00026{transform:matrix(0.328047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328047,0.000000,0.000000,0.250000,0,0);}
.m1d_c00026{transform:matrix(0.328549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328549,0.000000,0.000000,0.250000,0,0);}
.m29_c00026{transform:matrix(0.329979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329979,0.000000,0.000000,0.250000,0,0);}
.m8d_c00026{transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);}
.m8f_c00026{transform:matrix(0.332170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332170,0.000000,0.000000,0.250000,0,0);}
.m53_c00026{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m36_c00026{transform:matrix(0.334059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334059,0.000000,0.000000,0.250000,0,0);}
.m84_c00026{transform:matrix(0.337410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337410,0.000000,0.000000,0.250000,0,0);}
.m2c_c00026{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m9a_c00026{transform:matrix(0.339317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339317,0.000000,0.000000,0.250000,0,0);}
.m75_c00026{transform:matrix(0.341129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341129,0.000000,0.000000,0.250000,0,0);}
.m8c_c00026{transform:matrix(0.341535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341535,0.000000,0.000000,0.250000,0,0);}
.m96_c00026{transform:matrix(0.343033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343033,0.000000,0.000000,0.250000,0,0);}
.m87_c00026{transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);}
.ma5_c00026{transform:matrix(0.353367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353367,0.000000,0.000000,0.250000,0,0);}
.m3_c00026{transform:matrix(0.353418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353418,0.000000,0.000000,0.250000,0,0);}
.m8_c00026{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m94_c00026{transform:matrix(0.360004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360004,0.000000,0.000000,0.250000,0,0);}
.m31_c00026{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);}
.m14_c00026{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m25_c00026{transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);}
.m28_c00026{transform:matrix(0.369365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369365,0.000000,0.000000,0.250000,0,0);}
.ma2_c00026{transform:matrix(0.382326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382326,0.000000,0.000000,0.250000,0,0);}
.m39_c00026{transform:matrix(0.382824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382824,0.000000,0.000000,0.250000,0,0);}
.m59_c00026{transform:matrix(0.402191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402191,0.000000,0.000000,0.250000,0,0);}
.v0_c00026{vertical-align:0.000000px;}
.ls8_c00026{letter-spacing:-2.744280px;}
.lsc_c00026{letter-spacing:-2.494800px;}
.lse_c00026{letter-spacing:-1.701454px;}
.lsd_c00026{letter-spacing:-1.481911px;}
.ls10_c00026{letter-spacing:-0.407722px;}
.ls2_c00026{letter-spacing:0.000000px;}
.ls7_c00026{letter-spacing:0.995782px;}
.lsa_c00026{letter-spacing:1.395900px;}
.ls11_c00026{letter-spacing:1.732817px;}
.ls9_c00026{letter-spacing:2.692810px;}
.ls0_c00026{letter-spacing:2.697235px;}
.lsf_c00026{letter-spacing:3.559723px;}
.ls4_c00026{letter-spacing:3.603610px;}
.ls5_c00026{letter-spacing:3.623400px;}
.ls6_c00026{letter-spacing:3.834151px;}
.ls3_c00026{letter-spacing:3.920400px;}
.ls1_c00026{letter-spacing:4.504500px;}
.ls12_c00026{letter-spacing:51.321798px;}
.lsb_c00026{letter-spacing:58.449798px;}
.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;}
}
.ws1_c00026{word-spacing:0.000000px;}
.ws0_c00026{word-spacing:5.253336px;}
._1_c00026{width:22.267872px;}
._0_c00026{width:35.518824px;}
.fc0_c00026{color:transparent;}
.fs9_c00026{font-size:22.572000px;}
.fs8_c00026{font-size:26.928000px;}
.fsd_c00026{font-size:27.720000px;}
.fsa_c00026{font-size:27.918000px;}
.fs1_c00026{font-size:33.264000px;}
.fs6_c00026{font-size:39.204000px;}
.fs13_c00026{font-size:39.600000px;}
.fs11_c00026{font-size:50.292000px;}
.fs10_c00026{font-size:51.321798px;}
.fs7_c00026{font-size:53.856198px;}
.fsb_c00026{font-size:58.449798px;}
.fs5_c00026{font-size:66.330000px;}
.fse_c00026{font-size:71.280000px;}
.fs3_c00026{font-size:72.072198px;}
.fs4_c00026{font-size:72.468000px;}
.fs12_c00026{font-size:72.864000px;}
.fsf_c00026{font-size:74.844000px;}
.fsc_c00026{font-size:76.824000px;}
.fs2_c00026{font-size:78.408000px;}
.fs0_c00026{font-size:90.090000px;}
.y0_c00026{bottom:0.000000px;}
.y25_c00026{bottom:59.425785px;}
.y24_c00026{bottom:60.851385px;}
.y1_c00026{bottom:76.500000px;}
.y23_c00026{bottom:94.001535px;}
.y22_c00026{bottom:98.634735px;}
.y21_c00026{bottom:138.190185px;}
.y20_c00026{bottom:168.845535px;}
.y1f_c00026{bottom:206.267535px;}
.y1e_c00026{bottom:239.056335px;}
.y28_c00026{bottom:269.706735px;}
.y1d_c00026{bottom:271.845135px;}
.y1c_c00026{bottom:304.272585px;}
.y1b_c00026{bottom:336.709935px;}
.y1a_c00026{bottom:368.780985px;}
.y17_c00026{bottom:434.007135px;}
.y19_c00026{bottom:443.273535px;}
.y18_c00026{bottom:466.078185px;}
.y16_c00026{bottom:466.439535px;}
.y15_c00026{bottom:498.866985px;}
.y14_c00026{bottom:530.942985px;}
.y13_c00026{bottom:557.316585px;}
.y12_c00026{bottom:563.375385px;}
.y11_c00026{bottom:580.487535px;}
.y10_c00026{bottom:582.620985px;}
.y27_c00026{bottom:588.676815px;}
.y26_c00026{bottom:591.178545px;}
.yd_c00026{bottom:596.520585px;}
.yf_c00026{bottom:596.881935px;}
.ye_c00026{bottom:604.009935px;}
.yc_c00026{bottom:629.314335px;}
.yb_c00026{bottom:662.103135px;}
.ya_c00026{bottom:727.324335px;}
.y9_c00026{bottom:759.751785px;}
.y8_c00026{bottom:791.476335px;}
.y7_c00026{bottom:823.908735px;}
.y6_c00026{bottom:856.336185px;}
.y5_c00026{bottom:888.417135px;}
.y4_c00026{bottom:922.275135px;}
.y3_c00026{bottom:987.139935px;}
.y2_c00026{bottom:1073.027385px;}
.hb_c00026{height:23.541891px;}
.ha_c00026{height:28.085063px;}
.hf_c00026{height:28.911094px;}
.hc_c00026{height:29.117602px;}
.h12_c00026{height:34.180317px;}
.h3_c00026{height:34.693313px;}
.h8_c00026{height:38.476582px;}
.hd_c00026{height:38.927565px;}
.h15_c00026{height:41.301563px;}
.h13_c00026{height:49.358848px;}
.h9_c00026{height:56.170332px;}
.h7_c00026{height:69.180117px;}
.h10_c00026{height:69.957422px;}
.h6_c00026{height:71.123379px;}
.h14_c00026{height:71.512031px;}
.h5_c00026{height:72.635262px;}
.h11_c00026{height:73.455293px;}
.he_c00026{height:75.398555px;}
.h4_c00026{height:76.953164px;}
.h2_c00026{height:88.418408px;}
.h1_c00026{height:1110.000000px;}
.h0_c00026{height:1263.000000px;}
.w1_c00026{width:721.500000px;}
.w0_c00026{width:892.500000px;}
.x0_c00026{left:0.000000px;}
.x4_c00026{left:69.442485px;}
.x5b_c00026{left:70.605735px;}
.x1_c00026{left:85.500000px;}
.x28_c00026{left:101.409585px;}
.x17_c00026{left:102.691635px;}
.x43_c00026{left:113.546985px;}
.x31_c00026{left:123.288585px;}
.x5c_c00026{left:125.486385px;}
.x59_c00026{left:127.070385px;}
.xe_c00026{left:135.475485px;}
.x18_c00026{left:145.979385px;}
.x4f_c00026{left:156.706035px;}
.x5_c00026{left:157.730685px;}
.xf_c00026{left:168.016785px;}
.x32_c00026{left:169.996785px;}
.x19_c00026{left:179.812635px;}
.x3c_c00026{left:181.069935px;}
.x41_c00026{left:190.430385px;}
.x53_c00026{left:191.657985px;}
.x51_c00026{left:201.206535px;}
.x24_c00026{left:202.310385px;}
.x1e_c00026{left:213.180585px;}
.x3d_c00026{left:214.873485px;}
.x47_c00026{left:215.947635px;}
.x54_c00026{left:224.021085px;}
.x29_c00026{left:225.268485px;}
.x46_c00026{left:227.372235px;}
.x6_c00026{left:235.628835px;}
.x3_c00026{left:238.910685px;}
.x10_c00026{left:247.310835px;}
.x2a_c00026{left:256.102035px;}
.x1a_c00026{left:257.725635px;}
.x1f_c00026{left:268.754235px;}
.x7_c00026{left:280.035285px;}
.x4c_c00026{left:291.222285px;}
.x11_c00026{left:301.359885px;}
.x42_c00026{left:302.632035px;}
.x48_c00026{left:303.676485px;}
.x44_c00026{left:305.408985px;}
.x33_c00026{left:312.838935px;}
.x8_c00026{left:314.373435px;}
.x2b_c00026{left:324.367485px;}
.x20_c00026{left:335.772285px;}
.x12_c00026{left:346.820685px;}
.x2c_c00026{left:355.933635px;}
.x25_c00026{left:357.388935px;}
.x21_c00026{left:367.645335px;}
.x13_c00026{left:368.798685px;}
.x1b_c00026{left:379.609485px;}
.x5a_c00026{left:380.985585px;}
.x50_c00026{left:391.246935px;}
.x9_c00026{left:402.067635px;}
.x2d_c00026{left:412.175535px;}
.x34_c00026{left:413.427885px;}
.x35_c00026{left:423.392235px;}
.xa_c00026{left:435.524685px;}
.x49_c00026{left:446.978985px;}
.x39_c00026{left:457.086885px;}
.x22_c00026{left:467.392785px;}
.xb_c00026{left:469.724235px;}
.x14_c00026{left:478.178835px;}
.x4d_c00026{left:479.757885px;}
.x45_c00026{left:490.934985px;}
.x3e_c00026{left:502.181385px;}
.x36_c00026{left:511.972485px;}
.x1c_c00026{left:523.961385px;}
.x55_c00026{left:534.460335px;}
.x2e_c00026{left:545.335485px;}
.xc_c00026{left:556.180935px;}
.x4a_c00026{left:567.966885px;}
.x2f_c00026{left:578.406435px;}
.x15_c00026{left:579.505335px;}
.x5e_c00026{left:580.980435px;}
.x4b_c00026{left:590.231985px;}
.x26_c00026{left:600.379485px;}
.x3f_c00026{left:602.334735px;}
.x16_c00026{left:611.779335px;}
.x1d_c00026{left:613.388085px;}
.x37_c00026{left:623.035635px;}
.x4e_c00026{left:624.085035px;}
.x40_c00026{left:632.747535px;}
.xd_c00026{left:634.014735px;}
.x3b_c00026{left:638.380635px;}
.x2_c00026{left:644.350335px;}
.x57_c00026{left:645.642285px;}
.x56_c00026{left:655.309635px;}
.x23_c00026{left:656.487735px;}
.x52_c00026{left:657.581685px;}
.x3a_c00026{left:659.432985px;}
.x38_c00026{left:666.318435px;}
.x27_c00026{left:668.580585px;}
.x5d_c00026{left:671.223885px;}
.x30_c00026{left:678.485535px;}
.x60_c00026{left:680.510085px;}
.x58_c00026{left:708.002385px;}
.x5f_c00026{left:711.051585px;}
.x61_c00026{left:718.645875px;}
.x62_c00026{left:720.649635px;}
@media print{
.v0_c00026{vertical-align:0.000000pt;}
.ls8_c00026{letter-spacing:-2.439360pt;}
.lsc_c00026{letter-spacing:-2.217600pt;}
.lse_c00026{letter-spacing:-1.512403pt;}
.lsd_c00026{letter-spacing:-1.317254pt;}
.ls10_c00026{letter-spacing:-0.362419pt;}
.ls2_c00026{letter-spacing:0.000000pt;}
.ls7_c00026{letter-spacing:0.885139pt;}
.lsa_c00026{letter-spacing:1.240800pt;}
.ls11_c00026{letter-spacing:1.540282pt;}
.ls9_c00026{letter-spacing:2.393609pt;}
.ls0_c00026{letter-spacing:2.397542pt;}
.lsf_c00026{letter-spacing:3.164198pt;}
.ls4_c00026{letter-spacing:3.203209pt;}
.ls5_c00026{letter-spacing:3.220800pt;}
.ls6_c00026{letter-spacing:3.408134pt;}
.ls3_c00026{letter-spacing:3.484800pt;}
.ls1_c00026{letter-spacing:4.004000pt;}
.ls12_c00026{letter-spacing:45.619376pt;}
.lsb_c00026{letter-spacing:51.955376pt;}
.ws1_c00026{word-spacing:0.000000pt;}
.ws0_c00026{word-spacing:4.669632pt;}
._1_c00026{width:19.793664pt;}
._0_c00026{width:31.572288pt;}
.fs9_c00026{font-size:20.064000pt;}
.fs8_c00026{font-size:23.936000pt;}
.fsd_c00026{font-size:24.640000pt;}
.fsa_c00026{font-size:24.816000pt;}
.fs1_c00026{font-size:29.568000pt;}
.fs6_c00026{font-size:34.848000pt;}
.fs13_c00026{font-size:35.200000pt;}
.fs11_c00026{font-size:44.704000pt;}
.fs10_c00026{font-size:45.619376pt;}
.fs7_c00026{font-size:47.872176pt;}
.fsb_c00026{font-size:51.955376pt;}
.fs5_c00026{font-size:58.960000pt;}
.fse_c00026{font-size:63.360000pt;}
.fs3_c00026{font-size:64.064176pt;}
.fs4_c00026{font-size:64.416000pt;}
.fs12_c00026{font-size:64.768000pt;}
.fsf_c00026{font-size:66.528000pt;}
.fsc_c00026{font-size:68.288000pt;}
.fs2_c00026{font-size:69.696000pt;}
.fs0_c00026{font-size:80.080000pt;}
.y0_c00026{bottom:0.000000pt;}
.y25_c00026{bottom:52.822920pt;}
.y24_c00026{bottom:54.090120pt;}
.y1_c00026{bottom:68.000000pt;}
.y23_c00026{bottom:83.556920pt;}
.y22_c00026{bottom:87.675320pt;}
.y21_c00026{bottom:122.835720pt;}
.y20_c00026{bottom:150.084920pt;}
.y1f_c00026{bottom:183.348920pt;}
.y1e_c00026{bottom:212.494520pt;}
.y28_c00026{bottom:239.739320pt;}
.y1d_c00026{bottom:241.640120pt;}
.y1c_c00026{bottom:270.464520pt;}
.y1b_c00026{bottom:299.297720pt;}
.y1a_c00026{bottom:327.805320pt;}
.y17_c00026{bottom:385.784120pt;}
.y19_c00026{bottom:394.020920pt;}
.y18_c00026{bottom:414.291720pt;}
.y16_c00026{bottom:414.612920pt;}
.y15_c00026{bottom:443.437320pt;}
.y14_c00026{bottom:471.949320pt;}
.y13_c00026{bottom:495.392520pt;}
.y12_c00026{bottom:500.778120pt;}
.y11_c00026{bottom:515.988920pt;}
.y10_c00026{bottom:517.885320pt;}
.y27_c00026{bottom:523.268280pt;}
.y26_c00026{bottom:525.492040pt;}
.yd_c00026{bottom:530.240520pt;}
.yf_c00026{bottom:530.561720pt;}
.ye_c00026{bottom:536.897720pt;}
.yc_c00026{bottom:559.390520pt;}
.yb_c00026{bottom:588.536120pt;}
.ya_c00026{bottom:646.510520pt;}
.y9_c00026{bottom:675.334920pt;}
.y8_c00026{bottom:703.534520pt;}
.y7_c00026{bottom:732.363320pt;}
.y6_c00026{bottom:761.187720pt;}
.y5_c00026{bottom:789.704120pt;}
.y4_c00026{bottom:819.800120pt;}
.y3_c00026{bottom:877.457720pt;}
.y2_c00026{bottom:953.802120pt;}
.hb_c00026{height:20.926125pt;}
.ha_c00026{height:24.964500pt;}
.hf_c00026{height:25.698750pt;}
.hc_c00026{height:25.882313pt;}
.h12_c00026{height:30.382504pt;}
.h3_c00026{height:30.838500pt;}
.h8_c00026{height:34.201406pt;}
.hd_c00026{height:34.602280pt;}
.h15_c00026{height:36.712500pt;}
.h13_c00026{height:43.874531pt;}
.h9_c00026{height:49.929184pt;}
.h7_c00026{height:61.493438pt;}
.h10_c00026{height:62.184375pt;}
.h6_c00026{height:63.220781pt;}
.h14_c00026{height:63.566250pt;}
.h5_c00026{height:64.564677pt;}
.h11_c00026{height:65.293594pt;}
.he_c00026{height:67.020938pt;}
.h4_c00026{height:68.402813pt;}
.h2_c00026{height:78.594141pt;}
.h1_c00026{height:986.666667pt;}
.h0_c00026{height:1122.666667pt;}
.w1_c00026{width:641.333333pt;}
.w0_c00026{width:793.333333pt;}
.x0_c00026{left:0.000000pt;}
.x4_c00026{left:61.726653pt;}
.x5b_c00026{left:62.760653pt;}
.x1_c00026{left:76.000000pt;}
.x28_c00026{left:90.141853pt;}
.x17_c00026{left:91.281453pt;}
.x43_c00026{left:100.930653pt;}
.x31_c00026{left:109.589853pt;}
.x5c_c00026{left:111.543453pt;}
.x59_c00026{left:112.951453pt;}
.xe_c00026{left:120.422653pt;}
.x18_c00026{left:129.759453pt;}
.x4f_c00026{left:139.294253pt;}
.x5_c00026{left:140.205053pt;}
.xf_c00026{left:149.348253pt;}
.x32_c00026{left:151.108253pt;}
.x19_c00026{left:159.833453pt;}
.x3c_c00026{left:160.951053pt;}
.x41_c00026{left:169.271453pt;}
.x53_c00026{left:170.362653pt;}
.x51_c00026{left:178.850253pt;}
.x24_c00026{left:179.831453pt;}
.x1e_c00026{left:189.493853pt;}
.x3d_c00026{left:190.998653pt;}
.x47_c00026{left:191.953453pt;}
.x54_c00026{left:199.129853pt;}
.x29_c00026{left:200.238653pt;}
.x46_c00026{left:202.108653pt;}
.x6_c00026{left:209.447853pt;}
.x3_c00026{left:212.365053pt;}
.x10_c00026{left:219.831853pt;}
.x2a_c00026{left:227.646253pt;}
.x1a_c00026{left:229.089453pt;}
.x1f_c00026{left:238.892653pt;}
.x7_c00026{left:248.920253pt;}
.x4c_c00026{left:258.864253pt;}
.x11_c00026{left:267.875453pt;}
.x42_c00026{left:269.006253pt;}
.x48_c00026{left:269.934653pt;}
.x44_c00026{left:271.474653pt;}
.x33_c00026{left:278.079053pt;}
.x8_c00026{left:279.443053pt;}
.x2b_c00026{left:288.326653pt;}
.x20_c00026{left:298.464253pt;}
.x12_c00026{left:308.285053pt;}
.x2c_c00026{left:316.385453pt;}
.x25_c00026{left:317.679053pt;}
.x21_c00026{left:326.795853pt;}
.x13_c00026{left:327.821053pt;}
.x1b_c00026{left:337.430653pt;}
.x5a_c00026{left:338.653853pt;}
.x50_c00026{left:347.775053pt;}
.x9_c00026{left:357.393453pt;}
.x2d_c00026{left:366.378253pt;}
.x34_c00026{left:367.491453pt;}
.x35_c00026{left:376.348653pt;}
.xa_c00026{left:387.133053pt;}
.x49_c00026{left:397.314653pt;}
.x39_c00026{left:406.299453pt;}
.x22_c00026{left:415.460253pt;}
.xb_c00026{left:417.532653pt;}
.x14_c00026{left:425.047853pt;}
.x4d_c00026{left:426.451453pt;}
.x45_c00026{left:436.386653pt;}
.x3e_c00026{left:446.383453pt;}
.x36_c00026{left:455.086653pt;}
.x1c_c00026{left:465.743453pt;}
.x55_c00026{left:475.075853pt;}
.x2e_c00026{left:484.742653pt;}
.xc_c00026{left:494.383053pt;}
.x4a_c00026{left:504.859453pt;}
.x2f_c00026{left:514.139053pt;}
.x15_c00026{left:515.115853pt;}
.x5e_c00026{left:516.427053pt;}
.x4b_c00026{left:524.650653pt;}
.x26_c00026{left:533.670653pt;}
.x3f_c00026{left:535.408653pt;}
.x16_c00026{left:543.803853pt;}
.x1d_c00026{left:545.233853pt;}
.x37_c00026{left:553.809453pt;}
.x4e_c00026{left:554.742253pt;}
.x40_c00026{left:562.442253pt;}
.xd_c00026{left:563.568653pt;}
.x3b_c00026{left:567.449453pt;}
.x2_c00026{left:572.755853pt;}
.x57_c00026{left:573.904253pt;}
.x56_c00026{left:582.497453pt;}
.x23_c00026{left:583.544653pt;}
.x52_c00026{left:584.517053pt;}
.x3a_c00026{left:586.162653pt;}
.x38_c00026{left:592.283053pt;}
.x27_c00026{left:594.293853pt;}
.x5d_c00026{left:596.643453pt;}
.x30_c00026{left:603.098253pt;}
.x60_c00026{left:604.897853pt;}
.x58_c00026{left:629.335453pt;}
.x5f_c00026{left:632.045853pt;}
.x61_c00026{left:638.796333pt;}
.x62_c00026{left:640.577453pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cfbd389efc94771b15012693.woff2')format("woff");}.ff1_c00027{font-family:ff1_c00027;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00027;src:url('chunks/assets/font_cdacb6e09cf54ada7b844bfd.woff2')format("woff");}.ff2_c00027{font-family:ff2_c00027;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00027;src:url('chunks/assets/font_008d44dae3b9ddbbf9e0e367.woff2')format("woff");}.ff3_c00027{font-family:ff3_c00027;line-height:0.666000;font-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_c00027{transform:matrix(0.172499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172499,0.000000,0.000000,0.250000,0,0);}
.m55_c00027{transform:matrix(0.196180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196180,0.000000,0.000000,0.250000,0,0);}
.m32_c00027{transform:matrix(0.204633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204633,0.000000,0.000000,0.250000,0,0);}
.m53_c00027{transform:matrix(0.204861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204861,0.000000,0.000000,0.250000,0,0);}
.m1f_c00027{transform:matrix(0.210317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210317,0.000000,0.000000,0.250000,0,0);}
.m54_c00027{transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);}
.m0_c00027{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00027{transform:matrix(0.256075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256075,0.000000,0.000000,0.250000,0,0);}
.m77_c00027{transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);}
.m5d_c00027{transform:matrix(0.258289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258289,0.000000,0.000000,0.250000,0,0);}
.ma9_c00027{transform:matrix(0.258509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258509,0.000000,0.000000,0.250000,0,0);}
.m4a_c00027{transform:matrix(0.259336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259336,0.000000,0.000000,0.250000,0,0);}
.m4f_c00027{transform:matrix(0.260559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260559,0.000000,0.000000,0.250000,0,0);}
.m20_c00027{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m4c_c00027{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.m93_c00027{transform:matrix(0.261993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261993,0.000000,0.000000,0.250000,0,0);}
.m7c_c00027{transform:matrix(0.263133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263133,0.000000,0.000000,0.250000,0,0);}
.m41_c00027{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m85_c00027{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m30_c00027{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m57_c00027{transform:matrix(0.266458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266458,0.000000,0.000000,0.250000,0,0);}
.m49_c00027{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.m4_c00027{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m64_c00027{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.m8f_c00027{transform:matrix(0.268694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268694,0.000000,0.000000,0.250000,0,0);}
.m48_c00027{transform:matrix(0.269470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269470,0.000000,0.000000,0.250000,0,0);}
.m4e_c00027{transform:matrix(0.270449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270449,0.000000,0.000000,0.250000,0,0);}
.m7_c00027{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m61_c00027{transform:matrix(0.270977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270977,0.000000,0.000000,0.250000,0,0);}
.m71_c00027{transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);}
.m18_c00027{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.ma0_c00027{transform:matrix(0.272823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272823,0.000000,0.000000,0.250000,0,0);}
.me_c00027{transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);}
.m50_c00027{transform:matrix(0.274157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274157,0.000000,0.000000,0.250000,0,0);}
.ma5_c00027{transform:matrix(0.274975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274975,0.000000,0.000000,0.250000,0,0);}
.m25_c00027{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m9f_c00027{transform:matrix(0.275570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275570,0.000000,0.000000,0.250000,0,0);}
.m9b_c00027{transform:matrix(0.276660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276660,0.000000,0.000000,0.250000,0,0);}
.m38_c00027{transform:matrix(0.277902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277902,0.000000,0.000000,0.250000,0,0);}
.ma3_c00027{transform:matrix(0.278227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278227,0.000000,0.000000,0.250000,0,0);}
.ma1_c00027{transform:matrix(0.278243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278243,0.000000,0.000000,0.250000,0,0);}
.m9d_c00027{transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);}
.m84_c00027{transform:matrix(0.279445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279445,0.000000,0.000000,0.250000,0,0);}
.m1c_c00027{transform:matrix(0.279503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279503,0.000000,0.000000,0.250000,0,0);}
.m29_c00027{transform:matrix(0.280105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280105,0.000000,0.000000,0.250000,0,0);}
.m5f_c00027{transform:matrix(0.280756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280756,0.000000,0.000000,0.250000,0,0);}
.m88_c00027{transform:matrix(0.280900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280900,0.000000,0.000000,0.250000,0,0);}
.m74_c00027{transform:matrix(0.281036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281036,0.000000,0.000000,0.250000,0,0);}
.m51_c00027{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.m76_c00027{transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);}
.mac_c00027{transform:matrix(0.282170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282170,0.000000,0.000000,0.250000,0,0);}
.m7a_c00027{transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);}
.m56_c00027{transform:matrix(0.282980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282980,0.000000,0.000000,0.250000,0,0);}
.m28_c00027{transform:matrix(0.283000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283000,0.000000,0.000000,0.250000,0,0);}
.m46_c00027{transform:matrix(0.283342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283342,0.000000,0.000000,0.250000,0,0);}
.m82_c00027{transform:matrix(0.283746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283746,0.000000,0.000000,0.250000,0,0);}
.m94_c00027{transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);}
.m3_c00027{transform:matrix(0.284015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284015,0.000000,0.000000,0.250000,0,0);}
.m2c_c00027{transform:matrix(0.284669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284669,0.000000,0.000000,0.250000,0,0);}
.m6f_c00027{transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);}
.m44_c00027{transform:matrix(0.285766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285766,0.000000,0.000000,0.250000,0,0);}
.m65_c00027{transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);}
.m3d_c00027{transform:matrix(0.286129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286129,0.000000,0.000000,0.250000,0,0);}
.m9_c00027{transform:matrix(0.286407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286407,0.000000,0.000000,0.250000,0,0);}
.m3c_c00027{transform:matrix(0.287284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287284,0.000000,0.000000,0.250000,0,0);}
.m2a_c00027{transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);}
.m11_c00027{transform:matrix(0.288557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288557,0.000000,0.000000,0.250000,0,0);}
.m62_c00027{transform:matrix(0.288839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288839,0.000000,0.000000,0.250000,0,0);}
.m15_c00027{transform:matrix(0.289122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289122,0.000000,0.000000,0.250000,0,0);}
.m75_c00027{transform:matrix(0.289652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289652,0.000000,0.000000,0.250000,0,0);}
.m2_c00027{transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);}
.m6a_c00027{transform:matrix(0.290579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290579,0.000000,0.000000,0.250000,0,0);}
.m2e_c00027{transform:matrix(0.290655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290655,0.000000,0.000000,0.250000,0,0);}
.m8e_c00027{transform:matrix(0.291018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291018,0.000000,0.000000,0.250000,0,0);}
.m78_c00027{transform:matrix(0.291270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291270,0.000000,0.000000,0.250000,0,0);}
.m2d_c00027{transform:matrix(0.291321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291321,0.000000,0.000000,0.250000,0,0);}
.m8b_c00027{transform:matrix(0.291497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291497,0.000000,0.000000,0.250000,0,0);}
.m59_c00027{transform:matrix(0.292158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292158,0.000000,0.000000,0.250000,0,0);}
.m52_c00027{transform:matrix(0.292439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292439,0.000000,0.000000,0.250000,0,0);}
.m23_c00027{transform:matrix(0.293745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293745,0.000000,0.000000,0.250000,0,0);}
.m83_c00027{transform:matrix(0.294494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294494,0.000000,0.000000,0.250000,0,0);}
.ma4_c00027{transform:matrix(0.295665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295665,0.000000,0.000000,0.250000,0,0);}
.m67_c00027{transform:matrix(0.295851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295851,0.000000,0.000000,0.250000,0,0);}
.m5c_c00027{transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);}
.m47_c00027{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m13_c00027{transform:matrix(0.297169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297169,0.000000,0.000000,0.250000,0,0);}
.m7e_c00027{transform:matrix(0.297276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297276,0.000000,0.000000,0.250000,0,0);}
.m9c_c00027{transform:matrix(0.297552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297552,0.000000,0.000000,0.250000,0,0);}
.m37_c00027{transform:matrix(0.297605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297605,0.000000,0.000000,0.250000,0,0);}
.m8c_c00027{transform:matrix(0.297741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297741,0.000000,0.000000,0.250000,0,0);}
.m35_c00027{transform:matrix(0.297753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297753,0.000000,0.000000,0.250000,0,0);}
.m1b_c00027{transform:matrix(0.298386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298386,0.000000,0.000000,0.250000,0,0);}
.m87_c00027{transform:matrix(0.299182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299182,0.000000,0.000000,0.250000,0,0);}
.m80_c00027{transform:matrix(0.300052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300052,0.000000,0.000000,0.250000,0,0);}
.m69_c00027{transform:matrix(0.300146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300146,0.000000,0.000000,0.250000,0,0);}
.m1e_c00027{transform:matrix(0.300614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300614,0.000000,0.000000,0.250000,0,0);}
.m96_c00027{transform:matrix(0.301028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301028,0.000000,0.000000,0.250000,0,0);}
.m5e_c00027{transform:matrix(0.301065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301065,0.000000,0.000000,0.250000,0,0);}
.m12_c00027{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m9a_c00027{transform:matrix(0.302713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302713,0.000000,0.000000,0.250000,0,0);}
.m17_c00027{transform:matrix(0.303345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303345,0.000000,0.000000,0.250000,0,0);}
.m24_c00027{transform:matrix(0.304396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304396,0.000000,0.000000,0.250000,0,0);}
.m5b_c00027{transform:matrix(0.305306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305306,0.000000,0.000000,0.250000,0,0);}
.m6d_c00027{transform:matrix(0.306100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306100,0.000000,0.000000,0.250000,0,0);}
.m95_c00027{transform:matrix(0.306455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306455,0.000000,0.000000,0.250000,0,0);}
.m6c_c00027{transform:matrix(0.306846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306846,0.000000,0.000000,0.250000,0,0);}
.m27_c00027{transform:matrix(0.308011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308011,0.000000,0.000000,0.250000,0,0);}
.m79_c00027{transform:matrix(0.308020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308020,0.000000,0.000000,0.250000,0,0);}
.ma6_c00027{transform:matrix(0.308027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308027,0.000000,0.000000,0.250000,0,0);}
.m7b_c00027{transform:matrix(0.309374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309374,0.000000,0.000000,0.250000,0,0);}
.m60_c00027{transform:matrix(0.309721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309721,0.000000,0.000000,0.250000,0,0);}
.m3b_c00027{transform:matrix(0.310875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310875,0.000000,0.000000,0.250000,0,0);}
.m3a_c00027{transform:matrix(0.311211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311211,0.000000,0.000000,0.250000,0,0);}
.m8d_c00027{transform:matrix(0.311369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311369,0.000000,0.000000,0.250000,0,0);}
.m3f_c00027{transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);}
.m73_c00027{transform:matrix(0.312330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312330,0.000000,0.000000,0.250000,0,0);}
.m58_c00027{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.ma_c00027{transform:matrix(0.313047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313047,0.000000,0.000000,0.250000,0,0);}
.m6b_c00027{transform:matrix(0.313301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313301,0.000000,0.000000,0.250000,0,0);}
.m36_c00027{transform:matrix(0.313333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313333,0.000000,0.000000,0.250000,0,0);}
.m45_c00027{transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);}
.m8a_c00027{transform:matrix(0.314995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314995,0.000000,0.000000,0.250000,0,0);}
.m21_c00027{transform:matrix(0.315963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315963,0.000000,0.000000,0.250000,0,0);}
.m19_c00027{transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);}
.m2b_c00027{transform:matrix(0.316375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316375,0.000000,0.000000,0.250000,0,0);}
.m1d_c00027{transform:matrix(0.317297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317297,0.000000,0.000000,0.250000,0,0);}
.m92_c00027{transform:matrix(0.317368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317368,0.000000,0.000000,0.250000,0,0);}
.mb_c00027{transform:matrix(0.317440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317440,0.000000,0.000000,0.250000,0,0);}
.m26_c00027{transform:matrix(0.317572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317572,0.000000,0.000000,0.250000,0,0);}
.md_c00027{transform:matrix(0.317662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317662,0.000000,0.000000,0.250000,0,0);}
.m7f_c00027{transform:matrix(0.317996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317996,0.000000,0.000000,0.250000,0,0);}
.m1a_c00027{transform:matrix(0.318231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318231,0.000000,0.000000,0.250000,0,0);}
.m81_c00027{transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);}
.m98_c00027{transform:matrix(0.319130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319130,0.000000,0.000000,0.250000,0,0);}
.m6_c00027{transform:matrix(0.319859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319859,0.000000,0.000000,0.250000,0,0);}
.m9e_c00027{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);}
.m3e_c00027{transform:matrix(0.320177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320177,0.000000,0.000000,0.250000,0,0);}
.mab_c00027{transform:matrix(0.320415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320415,0.000000,0.000000,0.250000,0,0);}
.ma8_c00027{transform:matrix(0.320465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320465,0.000000,0.000000,0.250000,0,0);}
.mf_c00027{transform:matrix(0.320654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320654,0.000000,0.000000,0.250000,0,0);}
.m70_c00027{transform:matrix(0.321386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321386,0.000000,0.000000,0.250000,0,0);}
.maa_c00027{transform:matrix(0.322246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322246,0.000000,0.000000,0.250000,0,0);}
.m63_c00027{transform:matrix(0.322297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322297,0.000000,0.000000,0.250000,0,0);}
.m31_c00027{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.m8_c00027{transform:matrix(0.324926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324926,0.000000,0.000000,0.250000,0,0);}
.m90_c00027{transform:matrix(0.326627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326627,0.000000,0.000000,0.250000,0,0);}
.m5_c00027{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.m4b_c00027{transform:matrix(0.328480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328480,0.000000,0.000000,0.250000,0,0);}
.m39_c00027{transform:matrix(0.329873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329873,0.000000,0.000000,0.250000,0,0);}
.m43_c00027{transform:matrix(0.330723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330723,0.000000,0.000000,0.250000,0,0);}
.m14_c00027{transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);}
.m22_c00027{transform:matrix(0.332554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332554,0.000000,0.000000,0.250000,0,0);}
.m33_c00027{transform:matrix(0.333265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333265,0.000000,0.000000,0.250000,0,0);}
.ma2_c00027{transform:matrix(0.335110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335110,0.000000,0.000000,0.250000,0,0);}
.mc_c00027{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m6e_c00027{transform:matrix(0.339465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339465,0.000000,0.000000,0.250000,0,0);}
.m68_c00027{transform:matrix(0.340270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340270,0.000000,0.000000,0.250000,0,0);}
.m91_c00027{transform:matrix(0.341160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341160,0.000000,0.000000,0.250000,0,0);}
.m2f_c00027{transform:matrix(0.342246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342246,0.000000,0.000000,0.250000,0,0);}
.m99_c00027{transform:matrix(0.342985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342985,0.000000,0.000000,0.250000,0,0);}
.m72_c00027{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.m4d_c00027{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.ma7_c00027{transform:matrix(0.351352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351352,0.000000,0.000000,0.250000,0,0);}
.m10_c00027{transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);}
.m5a_c00027{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m16_c00027{transform:matrix(0.355943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355943,0.000000,0.000000,0.250000,0,0);}
.m97_c00027{transform:matrix(0.359351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359351,0.000000,0.000000,0.250000,0,0);}
.m42_c00027{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m89_c00027{transform:matrix(0.361780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361780,0.000000,0.000000,0.250000,0,0);}
.m40_c00027{transform:matrix(0.363139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363139,0.000000,0.000000,0.250000,0,0);}
.m7d_c00027{transform:matrix(0.367117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367117,0.000000,0.000000,0.250000,0,0);}
.m86_c00027{transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);}
.m34_c00027{transform:matrix(0.377140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377140,0.000000,0.000000,0.250000,0,0);}
.v1_c00027{vertical-align:-65.577600px;}
.v0_c00027{vertical-align:0.000000px;}
.ls7_c00027{letter-spacing:-1.897474px;}
.lsa_c00027{letter-spacing:-1.662250px;}
.ls4_c00027{letter-spacing:-0.133294px;}
.ls1_c00027{letter-spacing:0.000000px;}
.ls6_c00027{letter-spacing:0.180338px;}
.lsf_c00027{letter-spacing:0.533174px;}
.lse_c00027{letter-spacing:1.928837px;}
.ls9_c00027{letter-spacing:3.112798px;}
.ls0_c00027{letter-spacing:3.261773px;}
.lsc_c00027{letter-spacing:3.575405px;}
.lsd_c00027{letter-spacing:3.801610px;}
.ls3_c00027{letter-spacing:3.920400px;}
.ls2_c00027{letter-spacing:4.395610px;}
.ls5_c00027{letter-spacing:51.321798px;}
.ls8_c00027{letter-spacing:52.747398px;}
.lsb_c00027{letter-spacing:57.024198px;}
.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:-19.602000px;}
.ws1_c00027{word-spacing:0.000000px;}
._5_c00027{width:7.919208px;}
._3_c00027{width:10.742688px;}
._0_c00027{width:26.017042px;}
._4_c00027{width:40.066488px;}
._2_c00027{width:160.783018px;}
._1_c00027{width:404.328672px;}
.fc0_c00027{color:transparent;}
.fs0_c00027{font-size:22.176000px;}
.fs3_c00027{font-size:27.720000px;}
.fs8_c00027{font-size:33.264000px;}
.fsf_c00027{font-size:38.808000px;}
.fsb_c00027{font-size:50.688000px;}
.fs7_c00027{font-size:51.321798px;}
.fsa_c00027{font-size:52.747398px;}
.fsd_c00027{font-size:57.024198px;}
.fs5_c00027{font-size:62.568000px;}
.fs6_c00027{font-size:66.330000px;}
.fs1_c00027{font-size:73.656198px;}
.fs9_c00027{font-size:74.844000px;}
.fse_c00027{font-size:76.032198px;}
.fsc_c00027{font-size:78.012198px;}
.fs4_c00027{font-size:78.408000px;}
.fs2_c00027{font-size:87.912198px;}
.y0_c00027{bottom:0.000000px;}
.y1_c00027{bottom:76.500000px;}
.y20_c00027{bottom:81.171135px;}
.y1f_c00027{bottom:103.267935px;}
.y1e_c00027{bottom:151.020585px;}
.y1d_c00027{bottom:180.963135px;}
.y1c_c00027{bottom:214.464735px;}
.y21_c00027{bottom:226.584711px;}
.y1b_c00027{bottom:246.535785px;}
.y1a_c00027{bottom:343.476585px;}
.y19_c00027{bottom:369.493785px;}
.y18_c00027{bottom:376.265385px;}
.y17_c00027{bottom:408.346335px;}
.y16_c00027{bottom:440.773785px;}
.y15_c00027{bottom:472.849785px;}
.y14_c00027{bottom:504.930735px;}
.y13_c00027{bottom:537.006735px;}
.y12_c00027{bottom:569.439135px;}
.y11_c00027{bottom:598.302585px;}
.y2_c00027{bottom:601.871535px;}
.y10_c00027{bottom:634.660335px;}
.yf_c00027{bottom:698.812335px;}
.ye_c00027{bottom:730.883385px;}
.yd_c00027{bottom:763.315785px;}
.yc_c00027{bottom:795.748185px;}
.yb_c00027{bottom:828.180585px;}
.ya_c00027{bottom:851.707935px;}
.y9_c00027{bottom:860.617935px;}
.y8_c00027{bottom:882.714735px;}
.y7_c00027{bottom:893.406735px;}
.y6_c00027{bottom:926.903385px;}
.y5_c00027{bottom:966.112335px;}
.y4_c00027{bottom:1078.729785px;}
.y3_c00027{bottom:1085.149935px;}
.h2_c00027{height:23.128875px;}
.h5_c00027{height:28.911094px;}
.h8_c00027{height:34.180317px;}
.h9_c00027{height:34.693313px;}
.hb_c00027{height:35.129767px;}
.he_c00027{height:37.978116px;}
.h10_c00027{height:40.475531px;}
.hd_c00027{height:52.866000px;}
.h7_c00027{height:65.256469px;}
.hc_c00027{height:69.180117px;}
.ha_c00027{height:73.455293px;}
.hf_c00027{height:74.621444px;}
.h3_c00027{height:76.821113px;}
.h6_c00027{height:76.953164px;}
.h4_c00027{height:86.281015px;}
.h1_c00027{height:1110.000000px;}
.h0_c00027{height:1263.000000px;}
.w1_c00027{width:730.500000px;}
.w0_c00027{width:892.500000px;}
.x0_c00027{left:0.000000px;}
.x2_c00027{left:39.772635px;}
.x31_c00027{left:73.269285px;}
.x11_c00027{left:75.204735px;}
.x1_c00027{left:81.000000px;}
.x26_c00027{left:96.677835px;}
.x4c_c00027{left:106.454085px;}
.x12_c00027{left:107.567835px;}
.x47_c00027{left:118.051935px;}
.x63_c00027{left:119.447835px;}
.x3a_c00027{left:127.432185px;}
.x6_c00027{left:129.174585px;}
.x5b_c00027{left:130.184385px;}
.x27_c00027{left:140.153685px;}
.x5a_c00027{left:141.861435px;}
.x48_c00027{left:151.335735px;}
.x7_c00027{left:161.027835px;}
.x28_c00027{left:162.032685px;}
.x5d_c00027{left:163.319685px;}
.x13_c00027{left:173.100885px;}
.x44_c00027{left:176.090685px;}
.x57_c00027{left:186.064935px;}
.x32_c00027{left:195.737235px;}
.x5e_c00027{left:196.776735px;}
.x8_c00027{left:207.156885px;}
.x14_c00027{left:208.552785px;}
.x3b_c00027{left:218.195385px;}
.x3_c00027{left:221.878185px;}
.x45_c00027{left:229.134885px;}
.x49_c00027{left:230.293185px;}
.x9_c00027{left:240.282285px;}
.x5_c00027{left:243.965085px;}
.x1d_c00027{left:251.909835px;}
.x3f_c00027{left:261.502935px;}
.x61_c00027{left:265.547085px;}
.x29_c00027{left:274.437285px;}
.xa_c00027{left:285.163935px;}
.x40_c00027{left:296.133135px;}
.x4a_c00027{left:306.389535px;}
.x4d_c00027{left:307.542885px;}
.x54_c00027{left:308.661585px;}
.x42_c00027{left:318.670485px;}
.x1e_c00027{left:328.144785px;}
.x15_c00027{left:329.317935px;}
.x33_c00027{left:330.451485px;}
.x2a_c00027{left:340.039635px;}
.x3c_c00027{left:351.726585px;}
.x5f_c00027{left:352.894785px;}
.x35_c00027{left:362.463135px;}
.xb_c00027{left:363.591735px;}
.x59_c00027{left:365.141085px;}
.x16_c00027{left:372.016635px;}
.x51_c00027{left:373.471935px;}
.x1f_c00027{left:383.376885px;}
.x39_c00027{left:385.000485px;}
.x36_c00027{left:395.331135px;}
.xc_c00027{left:396.751785px;}
.xd_c00027{left:407.290335px;}
.x2b_c00027{left:417.952635px;}
.x37_c00027{left:429.129735px;}
.x17_c00027{left:438.985185px;}
.x20_c00027{left:440.618685px;}
.x64_c00027{left:441.955185px;}
.x58_c00027{left:452.657085px;}
.xe_c00027{left:461.799735px;}
.x4b_c00027{left:463.042185px;}
.x21_c00027{left:473.169885px;}
.x4e_c00027{left:474.427185px;}
.x62_c00027{left:486.554685px;}
.x34_c00027{left:495.464685px;}
.x18_c00027{left:496.528935px;}
.x22_c00027{left:506.537835px;}
.x5c_c00027{left:508.260435px;}
.x55_c00027{left:518.110935px;}
.x19_c00027{left:528.253485px;}
.x2c_c00027{left:529.312785px;}
.x3d_c00027{left:538.054485px;}
.x41_c00027{left:540.286935px;}
.xf_c00027{left:550.360185px;}
.x56_c00027{left:551.444235px;}
.x2d_c00027{left:562.759935px;}
.x46_c00027{left:571.600635px;}
.x1a_c00027{left:572.635185px;}
.x23_c00027{left:583.851885px;}
.x52_c00027{left:585.307185px;}
.x2e_c00027{left:594.014235px;}
.x38_c00027{left:595.241835px;}
.x30_c00027{left:606.691185px;}
.x3e_c00027{left:618.011835px;}
.x66_c00027{left:621.704535px;}
.x24_c00027{left:628.278135px;}
.x60_c00027{left:629.307735px;}
.x53_c00027{left:640.539285px;}
.x4_c00027{left:648.315735px;}
.x10_c00027{left:649.612635px;}
.x4f_c00027{left:651.241185px;}
.x1b_c00027{left:660.730335px;}
.x2f_c00027{left:661.883685px;}
.x65_c00027{left:672.105435px;}
.x50_c00027{left:673.139985px;}
.x43_c00027{left:683.792385px;}
.x1c_c00027{left:691.682685px;}
.x25_c00027{left:694.791285px;}
.x67_c00027{left:721.499505px;}
@media print{
.v1_c00027{vertical-align:-58.291200pt;}
.v0_c00027{vertical-align:0.000000pt;}
.ls7_c00027{letter-spacing:-1.686643pt;}
.lsa_c00027{letter-spacing:-1.477555pt;}
.ls4_c00027{letter-spacing:-0.118483pt;}
.ls1_c00027{letter-spacing:0.000000pt;}
.ls6_c00027{letter-spacing:0.160301pt;}
.lsf_c00027{letter-spacing:0.473933pt;}
.lse_c00027{letter-spacing:1.714522pt;}
.ls9_c00027{letter-spacing:2.766931pt;}
.ls0_c00027{letter-spacing:2.899354pt;}
.lsc_c00027{letter-spacing:3.178138pt;}
.lsd_c00027{letter-spacing:3.379209pt;}
.ls3_c00027{letter-spacing:3.484800pt;}
.ls2_c00027{letter-spacing:3.907209pt;}
.ls5_c00027{letter-spacing:45.619376pt;}
.ls8_c00027{letter-spacing:46.886576pt;}
.lsb_c00027{letter-spacing:50.688176pt;}
.ws0_c00027{word-spacing:-17.424000pt;}
.ws1_c00027{word-spacing:0.000000pt;}
._5_c00027{width:7.039296pt;}
._3_c00027{width:9.549056pt;}
._0_c00027{width:23.126259pt;}
._4_c00027{width:35.614656pt;}
._2_c00027{width:142.918238pt;}
._1_c00027{width:359.403264pt;}
.fs0_c00027{font-size:19.712000pt;}
.fs3_c00027{font-size:24.640000pt;}
.fs8_c00027{font-size:29.568000pt;}
.fsf_c00027{font-size:34.496000pt;}
.fsb_c00027{font-size:45.056000pt;}
.fs7_c00027{font-size:45.619376pt;}
.fsa_c00027{font-size:46.886576pt;}
.fsd_c00027{font-size:50.688176pt;}
.fs5_c00027{font-size:55.616000pt;}
.fs6_c00027{font-size:58.960000pt;}
.fs1_c00027{font-size:65.472176pt;}
.fs9_c00027{font-size:66.528000pt;}
.fse_c00027{font-size:67.584176pt;}
.fsc_c00027{font-size:69.344176pt;}
.fs4_c00027{font-size:69.696000pt;}
.fs2_c00027{font-size:78.144176pt;}
.y0_c00027{bottom:0.000000pt;}
.y1_c00027{bottom:68.000000pt;}
.y20_c00027{bottom:72.152120pt;}
.y1f_c00027{bottom:91.793720pt;}
.y1e_c00027{bottom:134.240520pt;}
.y1d_c00027{bottom:160.856120pt;}
.y1c_c00027{bottom:190.635320pt;}
.y21_c00027{bottom:201.408632pt;}
.y1b_c00027{bottom:219.142920pt;}
.y1a_c00027{bottom:305.312520pt;}
.y19_c00027{bottom:328.438920pt;}
.y18_c00027{bottom:334.458120pt;}
.y17_c00027{bottom:362.974520pt;}
.y16_c00027{bottom:391.798920pt;}
.y15_c00027{bottom:420.310920pt;}
.y14_c00027{bottom:448.827320pt;}
.y13_c00027{bottom:477.339320pt;}
.y12_c00027{bottom:506.168120pt;}
.y11_c00027{bottom:531.824520pt;}
.y2_c00027{bottom:534.996920pt;}
.y10_c00027{bottom:564.142520pt;}
.yf_c00027{bottom:621.166520pt;}
.ye_c00027{bottom:649.674120pt;}
.yd_c00027{bottom:678.502920pt;}
.yc_c00027{bottom:707.331720pt;}
.yb_c00027{bottom:736.160520pt;}
.ya_c00027{bottom:757.073720pt;}
.y9_c00027{bottom:764.993720pt;}
.y8_c00027{bottom:784.635320pt;}
.y7_c00027{bottom:794.139320pt;}
.y6_c00027{bottom:823.914120pt;}
.y5_c00027{bottom:858.766520pt;}
.y4_c00027{bottom:958.870920pt;}
.y3_c00027{bottom:964.577720pt;}
.h2_c00027{height:20.559000pt;}
.h5_c00027{height:25.698750pt;}
.h8_c00027{height:30.382504pt;}
.h9_c00027{height:30.838500pt;}
.hb_c00027{height:31.226460pt;}
.he_c00027{height:33.758325pt;}
.h10_c00027{height:35.978250pt;}
.hd_c00027{height:46.992000pt;}
.h7_c00027{height:58.005750pt;}
.hc_c00027{height:61.493438pt;}
.ha_c00027{height:65.293594pt;}
.hf_c00027{height:66.330173pt;}
.h3_c00027{height:68.285434pt;}
.h6_c00027{height:68.402813pt;}
.h4_c00027{height:76.694235pt;}
.h1_c00027{height:986.666667pt;}
.h0_c00027{height:1122.666667pt;}
.w1_c00027{width:649.333333pt;}
.w0_c00027{width:793.333333pt;}
.x0_c00027{left:0.000000pt;}
.x2_c00027{left:35.353453pt;}
.x31_c00027{left:65.128253pt;}
.x11_c00027{left:66.848653pt;}
.x1_c00027{left:72.000000pt;}
.x26_c00027{left:85.935853pt;}
.x4c_c00027{left:94.625853pt;}
.x12_c00027{left:95.615853pt;}
.x47_c00027{left:104.935053pt;}
.x63_c00027{left:106.175853pt;}
.x3a_c00027{left:113.273053pt;}
.x6_c00027{left:114.821853pt;}
.x5b_c00027{left:115.719453pt;}
.x27_c00027{left:124.581053pt;}
.x5a_c00027{left:126.099053pt;}
.x48_c00027{left:134.520653pt;}
.x7_c00027{left:143.135853pt;}
.x28_c00027{left:144.029053pt;}
.x5d_c00027{left:145.173053pt;}
.x13_c00027{left:153.867453pt;}
.x44_c00027{left:156.525053pt;}
.x57_c00027{left:165.391053pt;}
.x32_c00027{left:173.988653pt;}
.x5e_c00027{left:174.912653pt;}
.x8_c00027{left:184.139453pt;}
.x14_c00027{left:185.380253pt;}
.x3b_c00027{left:193.951453pt;}
.x3_c00027{left:197.225053pt;}
.x45_c00027{left:203.675453pt;}
.x49_c00027{left:204.705053pt;}
.x9_c00027{left:213.584253pt;}
.x5_c00027{left:216.857853pt;}
.x1d_c00027{left:223.919853pt;}
.x3f_c00027{left:232.447053pt;}
.x61_c00027{left:236.041853pt;}
.x29_c00027{left:243.944253pt;}
.xa_c00027{left:253.479053pt;}
.x40_c00027{left:263.229453pt;}
.x4a_c00027{left:272.346253pt;}
.x4d_c00027{left:273.371453pt;}
.x54_c00027{left:274.365853pt;}
.x42_c00027{left:283.262653pt;}
.x1e_c00027{left:291.684253pt;}
.x15_c00027{left:292.727053pt;}
.x33_c00027{left:293.734653pt;}
.x2a_c00027{left:302.257453pt;}
.x3c_c00027{left:312.645853pt;}
.x5f_c00027{left:313.684253pt;}
.x35_c00027{left:322.189453pt;}
.xb_c00027{left:323.192653pt;}
.x59_c00027{left:324.569853pt;}
.x16_c00027{left:330.681453pt;}
.x51_c00027{left:331.975053pt;}
.x1f_c00027{left:340.779453pt;}
.x39_c00027{left:342.222653pt;}
.x36_c00027{left:351.405453pt;}
.xc_c00027{left:352.668253pt;}
.xd_c00027{left:362.035853pt;}
.x2b_c00027{left:371.513453pt;}
.x37_c00027{left:381.448653pt;}
.x17_c00027{left:390.209053pt;}
.x20_c00027{left:391.661053pt;}
.x64_c00027{left:392.849053pt;}
.x58_c00027{left:402.361853pt;}
.xe_c00027{left:410.488653pt;}
.x4b_c00027{left:411.593053pt;}
.x21_c00027{left:420.595453pt;}
.x4e_c00027{left:421.713053pt;}
.x62_c00027{left:432.493053pt;}
.x34_c00027{left:440.413053pt;}
.x18_c00027{left:441.359053pt;}
.x22_c00027{left:450.255853pt;}
.x5c_c00027{left:451.787053pt;}
.x55_c00027{left:460.543053pt;}
.x19_c00027{left:469.558653pt;}
.x2c_c00027{left:470.500253pt;}
.x3d_c00027{left:478.270653pt;}
.x41_c00027{left:480.255053pt;}
.xf_c00027{left:489.209053pt;}
.x56_c00027{left:490.172653pt;}
.x2d_c00027{left:500.231053pt;}
.x46_c00027{left:508.089453pt;}
.x1a_c00027{left:509.009053pt;}
.x23_c00027{left:518.979453pt;}
.x52_c00027{left:520.273053pt;}
.x2e_c00027{left:528.012653pt;}
.x38_c00027{left:529.103853pt;}
.x30_c00027{left:539.281053pt;}
.x3e_c00027{left:549.343853pt;}
.x66_c00027{left:552.626253pt;}
.x24_c00027{left:558.469453pt;}
.x60_c00027{left:559.384653pt;}
.x53_c00027{left:569.368253pt;}
.x4_c00027{left:576.280653pt;}
.x10_c00027{left:577.433453pt;}
.x4f_c00027{left:578.881053pt;}
.x1b_c00027{left:587.315853pt;}
.x2f_c00027{left:588.341053pt;}
.x65_c00027{left:597.427053pt;}
.x50_c00027{left:598.346653pt;}
.x43_c00027{left:607.815453pt;}
.x1c_c00027{left:614.829053pt;}
.x25_c00027{left:617.592253pt;}
.x67_c00027{left:641.332893pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7f4d0d88edeb5544df1486c2.woff2')format("woff");}.ff1_c00028{font-family:ff1_c00028;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00028;src:url('chunks/assets/font_37f7a5d4ede02f96fb855683.woff2')format("woff");}.ff2_c00028{font-family:ff2_c00028;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5f_c00028{transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);}
.m0_c00028{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m26_c00028{transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);}
.m54_c00028{transform:matrix(0.255681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255681,0.000000,0.000000,0.250000,0,0);}
.m6_c00028{transform:matrix(0.256325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256325,0.000000,0.000000,0.250000,0,0);}
.mab_c00028{transform:matrix(0.256852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256852,0.000000,0.000000,0.250000,0,0);}
.m4_c00028{transform:matrix(0.258396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258396,0.000000,0.000000,0.250000,0,0);}
.m86_c00028{transform:matrix(0.258586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258586,0.000000,0.000000,0.250000,0,0);}
.m7d_c00028{transform:matrix(0.258620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258620,0.000000,0.000000,0.250000,0,0);}
.m6b_c00028{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m1e_c00028{transform:matrix(0.260865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260865,0.000000,0.000000,0.250000,0,0);}
.md_c00028{transform:matrix(0.262747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262747,0.000000,0.000000,0.250000,0,0);}
.m4c_c00028{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m8f_c00028{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m59_c00028{transform:matrix(0.265626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265626,0.000000,0.000000,0.250000,0,0);}
.m5d_c00028{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m1_c00028{transform:matrix(0.266663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266663,0.000000,0.000000,0.250000,0,0);}
.m32_c00028{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.m11_c00028{transform:matrix(0.267146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267146,0.000000,0.000000,0.250000,0,0);}
.m1f_c00028{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m96_c00028{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.m80_c00028{transform:matrix(0.269857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269857,0.000000,0.000000,0.250000,0,0);}
.m33_c00028{transform:matrix(0.270208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270208,0.000000,0.000000,0.250000,0,0);}
.m76_c00028{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m79_c00028{transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);}
.ma6_c00028{transform:matrix(0.271852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271852,0.000000,0.000000,0.250000,0,0);}
.m12_c00028{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m77_c00028{transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);}
.m9a_c00028{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m67_c00028{transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);}
.m65_c00028{transform:matrix(0.274873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274873,0.000000,0.000000,0.250000,0,0);}
.m3a_c00028{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m7a_c00028{transform:matrix(0.276509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276509,0.000000,0.000000,0.250000,0,0);}
.m6e_c00028{transform:matrix(0.276789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276789,0.000000,0.000000,0.250000,0,0);}
.mc_c00028{transform:matrix(0.277336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277336,0.000000,0.000000,0.250000,0,0);}
.m45_c00028{transform:matrix(0.278006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278006,0.000000,0.000000,0.250000,0,0);}
.m34_c00028{transform:matrix(0.278936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278936,0.000000,0.000000,0.250000,0,0);}
.m36_c00028{transform:matrix(0.278992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278992,0.000000,0.000000,0.250000,0,0);}
.m7c_c00028{transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);}
.m9_c00028{transform:matrix(0.279410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279410,0.000000,0.000000,0.250000,0,0);}
.m71_c00028{transform:matrix(0.279766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279766,0.000000,0.000000,0.250000,0,0);}
.m8b_c00028{transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);}
.m5c_c00028{transform:matrix(0.280049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280049,0.000000,0.000000,0.250000,0,0);}
.m38_c00028{transform:matrix(0.280107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280107,0.000000,0.000000,0.250000,0,0);}
.m7b_c00028{transform:matrix(0.281047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281047,0.000000,0.000000,0.250000,0,0);}
.maa_c00028{transform:matrix(0.281271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281271,0.000000,0.000000,0.250000,0,0);}
.m64_c00028{transform:matrix(0.282468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282468,0.000000,0.000000,0.250000,0,0);}
.m2_c00028{transform:matrix(0.282619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282619,0.000000,0.000000,0.250000,0,0);}
.ma7_c00028{transform:matrix(0.283140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283140,0.000000,0.000000,0.250000,0,0);}
.m9c_c00028{transform:matrix(0.283230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283230,0.000000,0.000000,0.250000,0,0);}
.m90_c00028{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.mb_c00028{transform:matrix(0.283607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283607,0.000000,0.000000,0.250000,0,0);}
.m58_c00028{transform:matrix(0.283815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283815,0.000000,0.000000,0.250000,0,0);}
.m1b_c00028{transform:matrix(0.284752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284752,0.000000,0.000000,0.250000,0,0);}
.m74_c00028{transform:matrix(0.285573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285573,0.000000,0.000000,0.250000,0,0);}
.m3_c00028{transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);}
.m30_c00028{transform:matrix(0.286191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286191,0.000000,0.000000,0.250000,0,0);}
.m49_c00028{transform:matrix(0.286908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286908,0.000000,0.000000,0.250000,0,0);}
.m5e_c00028{transform:matrix(0.288052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288052,0.000000,0.000000,0.250000,0,0);}
.m44_c00028{transform:matrix(0.288098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288098,0.000000,0.000000,0.250000,0,0);}
.ma_c00028{transform:matrix(0.288977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288977,0.000000,0.000000,0.250000,0,0);}
.m3c_c00028{transform:matrix(0.290210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290210,0.000000,0.000000,0.250000,0,0);}
.m4b_c00028{transform:matrix(0.292055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292055,0.000000,0.000000,0.250000,0,0);}
.m84_c00028{transform:matrix(0.292127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292127,0.000000,0.000000,0.250000,0,0);}
.m81_c00028{transform:matrix(0.292795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292795,0.000000,0.000000,0.250000,0,0);}
.m14_c00028{transform:matrix(0.292877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292877,0.000000,0.000000,0.250000,0,0);}
.m9e_c00028{transform:matrix(0.293350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293350,0.000000,0.000000,0.250000,0,0);}
.m21_c00028{transform:matrix(0.294051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294051,0.000000,0.000000,0.250000,0,0);}
.m56_c00028{transform:matrix(0.294453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294453,0.000000,0.000000,0.250000,0,0);}
.ma9_c00028{transform:matrix(0.295588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295588,0.000000,0.000000,0.250000,0,0);}
.m3f_c00028{transform:matrix(0.296148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296148,0.000000,0.000000,0.250000,0,0);}
.m88_c00028{transform:matrix(0.296607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296607,0.000000,0.000000,0.250000,0,0);}
.m68_c00028{transform:matrix(0.296744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296744,0.000000,0.000000,0.250000,0,0);}
.m6f_c00028{transform:matrix(0.296843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296843,0.000000,0.000000,0.250000,0,0);}
.m66_c00028{transform:matrix(0.296948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296948,0.000000,0.000000,0.250000,0,0);}
.m89_c00028{transform:matrix(0.297023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297023,0.000000,0.000000,0.250000,0,0);}
.m10_c00028{transform:matrix(0.297419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297419,0.000000,0.000000,0.250000,0,0);}
.m29_c00028{transform:matrix(0.297737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297737,0.000000,0.000000,0.250000,0,0);}
.m42_c00028{transform:matrix(0.297747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297747,0.000000,0.000000,0.250000,0,0);}
.m16_c00028{transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);}
.m27_c00028{transform:matrix(0.298690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298690,0.000000,0.000000,0.250000,0,0);}
.m17_c00028{transform:matrix(0.298777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298777,0.000000,0.000000,0.250000,0,0);}
.m8e_c00028{transform:matrix(0.299520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299520,0.000000,0.000000,0.250000,0,0);}
.m6d_c00028{transform:matrix(0.300202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300202,0.000000,0.000000,0.250000,0,0);}
.m40_c00028{transform:matrix(0.300595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300595,0.000000,0.000000,0.250000,0,0);}
.m37_c00028{transform:matrix(0.300967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300967,0.000000,0.000000,0.250000,0,0);}
.m4f_c00028{transform:matrix(0.301939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301939,0.000000,0.000000,0.250000,0,0);}
.m20_c00028{transform:matrix(0.302300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302300,0.000000,0.000000,0.250000,0,0);}
.ma3_c00028{transform:matrix(0.303379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303379,0.000000,0.000000,0.250000,0,0);}
.m9f_c00028{transform:matrix(0.303590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303590,0.000000,0.000000,0.250000,0,0);}
.m3b_c00028{transform:matrix(0.303688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303688,0.000000,0.000000,0.250000,0,0);}
.m15_c00028{transform:matrix(0.303950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303950,0.000000,0.000000,0.250000,0,0);}
.m55_c00028{transform:matrix(0.304011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304011,0.000000,0.000000,0.250000,0,0);}
.m9d_c00028{transform:matrix(0.304093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304093,0.000000,0.000000,0.250000,0,0);}
.m8a_c00028{transform:matrix(0.304176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304176,0.000000,0.000000,0.250000,0,0);}
.me_c00028{transform:matrix(0.304800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304800,0.000000,0.000000,0.250000,0,0);}
.m35_c00028{transform:matrix(0.304801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304801,0.000000,0.000000,0.250000,0,0);}
.m98_c00028{transform:matrix(0.305270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305270,0.000000,0.000000,0.250000,0,0);}
.m87_c00028{transform:matrix(0.305278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305278,0.000000,0.000000,0.250000,0,0);}
.m75_c00028{transform:matrix(0.305449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305449,0.000000,0.000000,0.250000,0,0);}
.ma2_c00028{transform:matrix(0.306720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306720,0.000000,0.000000,0.250000,0,0);}
.m62_c00028{transform:matrix(0.307093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307093,0.000000,0.000000,0.250000,0,0);}
.ma0_c00028{transform:matrix(0.307749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307749,0.000000,0.000000,0.250000,0,0);}
.m91_c00028{transform:matrix(0.308140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308140,0.000000,0.000000,0.250000,0,0);}
.m5a_c00028{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m7_c00028{transform:matrix(0.308864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308864,0.000000,0.000000,0.250000,0,0);}
.m41_c00028{transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);}
.m39_c00028{transform:matrix(0.309468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309468,0.000000,0.000000,0.250000,0,0);}
.m2d_c00028{transform:matrix(0.309529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309529,0.000000,0.000000,0.250000,0,0);}
.m51_c00028{transform:matrix(0.309574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309574,0.000000,0.000000,0.250000,0,0);}
.m50_c00028{transform:matrix(0.309963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309963,0.000000,0.000000,0.250000,0,0);}
.mf_c00028{transform:matrix(0.310877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310877,0.000000,0.000000,0.250000,0,0);}
.m2f_c00028{transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);}
.m94_c00028{transform:matrix(0.312513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312513,0.000000,0.000000,0.250000,0,0);}
.m13_c00028{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.m2e_c00028{transform:matrix(0.312963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312963,0.000000,0.000000,0.250000,0,0);}
.m78_c00028{transform:matrix(0.314287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314287,0.000000,0.000000,0.250000,0,0);}
.m92_c00028{transform:matrix(0.315389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315389,0.000000,0.000000,0.250000,0,0);}
.m73_c00028{transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);}
.m22_c00028{transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);}
.m57_c00028{transform:matrix(0.317662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317662,0.000000,0.000000,0.250000,0,0);}
.ma8_c00028{transform:matrix(0.318577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318577,0.000000,0.000000,0.250000,0,0);}
.m5b_c00028{transform:matrix(0.319959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319959,0.000000,0.000000,0.250000,0,0);}
.ma1_c00028{transform:matrix(0.320152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320152,0.000000,0.000000,0.250000,0,0);}
.m63_c00028{transform:matrix(0.320939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320939,0.000000,0.000000,0.250000,0,0);}
.m43_c00028{transform:matrix(0.320968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320968,0.000000,0.000000,0.250000,0,0);}
.m8c_c00028{transform:matrix(0.321773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321773,0.000000,0.000000,0.250000,0,0);}
.m5_c00028{transform:matrix(0.321963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321963,0.000000,0.000000,0.250000,0,0);}
.m95_c00028{transform:matrix(0.322213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322213,0.000000,0.000000,0.250000,0,0);}
.m47_c00028{transform:matrix(0.323276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323276,0.000000,0.000000,0.250000,0,0);}
.m31_c00028{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.m60_c00028{transform:matrix(0.323688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323688,0.000000,0.000000,0.250000,0,0);}
.m82_c00028{transform:matrix(0.323745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323745,0.000000,0.000000,0.250000,0,0);}
.m4d_c00028{transform:matrix(0.323918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323918,0.000000,0.000000,0.250000,0,0);}
.m2c_c00028{transform:matrix(0.323962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323962,0.000000,0.000000,0.250000,0,0);}
.m52_c00028{transform:matrix(0.324300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324300,0.000000,0.000000,0.250000,0,0);}
.m83_c00028{transform:matrix(0.324794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324794,0.000000,0.000000,0.250000,0,0);}
.m85_c00028{transform:matrix(0.326100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326100,0.000000,0.000000,0.250000,0,0);}
.m8d_c00028{transform:matrix(0.326612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326612,0.000000,0.000000,0.250000,0,0);}
.m46_c00028{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m3e_c00028{transform:matrix(0.327290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327290,0.000000,0.000000,0.250000,0,0);}
.m2a_c00028{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.m6a_c00028{transform:matrix(0.328208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328208,0.000000,0.000000,0.250000,0,0);}
.m48_c00028{transform:matrix(0.328858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328858,0.000000,0.000000,0.250000,0,0);}
.m25_c00028{transform:matrix(0.328945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328945,0.000000,0.000000,0.250000,0,0);}
.m4e_c00028{transform:matrix(0.330076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330076,0.000000,0.000000,0.250000,0,0);}
.m1a_c00028{transform:matrix(0.330831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330831,0.000000,0.000000,0.250000,0,0);}
.m1d_c00028{transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);}
.m9b_c00028{transform:matrix(0.331277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331277,0.000000,0.000000,0.250000,0,0);}
.m18_c00028{transform:matrix(0.331699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331699,0.000000,0.000000,0.250000,0,0);}
.m6c_c00028{transform:matrix(0.332345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332345,0.000000,0.000000,0.250000,0,0);}
.m1c_c00028{transform:matrix(0.332354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332354,0.000000,0.000000,0.250000,0,0);}
.m4a_c00028{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.ma5_c00028{transform:matrix(0.333270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333270,0.000000,0.000000,0.250000,0,0);}
.m3d_c00028{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);}
.m72_c00028{transform:matrix(0.335643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335643,0.000000,0.000000,0.250000,0,0);}
.m23_c00028{transform:matrix(0.336535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336535,0.000000,0.000000,0.250000,0,0);}
.m97_c00028{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m8_c00028{transform:matrix(0.339804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339804,0.000000,0.000000,0.250000,0,0);}
.m69_c00028{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.m7e_c00028{transform:matrix(0.346499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346499,0.000000,0.000000,0.250000,0,0);}
.m7f_c00028{transform:matrix(0.346864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346864,0.000000,0.000000,0.250000,0,0);}
.m70_c00028{transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);}
.m61_c00028{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m28_c00028{transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);}
.ma4_c00028{transform:matrix(0.354879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354879,0.000000,0.000000,0.250000,0,0);}
.m19_c00028{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m93_c00028{transform:matrix(0.359480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359480,0.000000,0.000000,0.250000,0,0);}
.m53_c00028{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);}
.m24_c00028{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m2b_c00028{transform:matrix(0.376788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376788,0.000000,0.000000,0.250000,0,0);}
.m99_c00028{transform:matrix(0.377871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377871,0.000000,0.000000,0.250000,0,0);}
.v0_c00028{vertical-align:0.000000px;}
.v1_c00028{vertical-align:5.682600px;}
.ls7_c00028{letter-spacing:-2.744280px;}
.ls9_c00028{letter-spacing:-1.215324px;}
.lsa_c00028{letter-spacing:-0.305791px;}
.ls0_c00028{letter-spacing:0.000000px;}
.ls8_c00028{letter-spacing:1.082030px;}
.ls3_c00028{letter-spacing:1.960200px;}
.lsb_c00028{letter-spacing:3.158100px;}
.ls5_c00028{letter-spacing:3.217500px;}
.ls4_c00028{letter-spacing:3.504610px;}
.ls6_c00028{letter-spacing:3.682810px;}
.ls2_c00028{letter-spacing:3.920400px;}
.ls1_c00028{letter-spacing:4.078810px;}
.sc__c00028{text-shadow:none;}
.sc0_c00028{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00028{-webkit-text-stroke:0px transparent;}
.sc0_c00028{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00028{word-spacing:0.000000px;}
._1_c00028{width:9.173736px;}
._2_c00028{width:32.982048px;}
._0_c00028{width:48.273038px;}
.fc0_c00028{color:transparent;}
.fs0_c00028{font-size:22.176000px;}
.fs2_c00028{font-size:24.156000px;}
.fs1_c00028{font-size:27.720000px;}
.fs4_c00028{font-size:33.264000px;}
.fs10_c00028{font-size:34.056198px;}
.fse_c00028{font-size:34.650000px;}
.fsb_c00028{font-size:36.036198px;}
.fsd_c00028{font-size:55.440000px;}
.fsf_c00028{font-size:63.162000px;}
.fs8_c00028{font-size:64.350000px;}
.fs6_c00028{font-size:66.330000px;}
.fs7_c00028{font-size:70.092198px;}
.fsa_c00028{font-size:73.656198px;}
.fs11_c00028{font-size:76.032198px;}
.fs9_c00028{font-size:76.824000px;}
.fs5_c00028{font-size:78.408000px;}
.fsc_c00028{font-size:79.200000px;}
.fs3_c00028{font-size:81.576198px;}
.y0_c00028{bottom:0.000000px;}
.y25_c00028{bottom:57.643785px;}
.y1_c00028{bottom:76.500000px;}
.y22_c00028{bottom:117.880335px;}
.y21_c00028{bottom:172.404585px;}
.y24_c00028{bottom:203.416335px;}
.y20_c00028{bottom:208.044585px;}
.y23_c00028{bottom:221.592735px;}
.y1f_c00028{bottom:240.125535px;}
.y1e_c00028{bottom:272.557935px;}
.y1d_c00028{bottom:285.031935px;}
.y1c_c00028{bottom:304.990335px;}
.y1b_c00028{bottom:337.417785px;}
.y1a_c00028{bottom:369.498735px;}
.y19_c00028{bottom:404.777385px;}
.y18_c00028{bottom:436.853385px;}
.y17_c00028{bottom:469.290735px;}
.y16_c00028{bottom:501.361785px;}
.y3_c00028{bottom:513.127935px;}
.y15_c00028{bottom:531.660735px;}
.y14_c00028{bottom:533.081385px;}
.y13_c00028{bottom:565.875135px;}
.y12_c00028{bottom:598.302585px;}
.y11_c00028{bottom:662.098185px;}
.y10_c00028{bottom:695.956185px;}
.yf_c00028{bottom:729.462735px;}
.ye_c00028{bottom:761.895135px;}
.yd_c00028{bottom:796.109535px;}
.yc_c00028{bottom:829.606185px;}
.yb_c00028{bottom:861.687135px;}
.ya_c00028{bottom:894.119535px;}
.y9_c00028{bottom:926.546985px;}
.y8_c00028{bottom:965.399535px;}
.y2_c00028{bottom:978.581385px;}
.y7_c00028{bottom:979.649100px;}
.y6_c00028{bottom:1054.138185px;}
.y5_c00028{bottom:1081.937385px;}
.y4_c00028{bottom:1083.367935px;}
.h2_c00028{height:23.128875px;}
.h4_c00028{height:25.193953px;}
.h3_c00028{height:28.911094px;}
.h6_c00028{height:34.693313px;}
.h12_c00028{height:35.519550px;}
.h10_c00028{height:36.138867px;}
.hf_c00028{height:57.822188px;}
.ha_c00028{height:63.156006px;}
.h11_c00028{height:65.875992px;}
.h8_c00028{height:69.180117px;}
.hc_c00028{height:72.289530px;}
.h9_c00028{height:73.103972px;}
.hb_c00028{height:75.398555px;}
.h7_c00028{height:76.953164px;}
.he_c00028{height:77.730469px;}
.h13_c00028{height:79.299207px;}
.h5_c00028{height:80.062577px;}
.hd_c00028{height:82.635764px;}
.h1_c00028{height:1110.000000px;}
.h0_c00028{height:1263.000000px;}
.w1_c00028{width:739.500000px;}
.w0_c00028{width:892.500000px;}
.x0_c00028{left:0.000000px;}
.x3_c00028{left:5.043885px;}
.x2_c00028{left:51.044235px;}
.x1_c00028{left:76.500000px;}
.x9_c00028{left:88.495935px;}
.x14_c00028{left:89.768085px;}
.x3e_c00028{left:91.856985px;}
.x15_c00028{left:110.671935px;}
.x2a_c00028{left:121.799535px;}
.x22_c00028{left:122.858835px;}
.x1a_c00028{left:133.258785px;}
.x3f_c00028{left:134.936835px;}
.x40_c00028{left:143.683485px;}
.x50_c00028{left:145.693185px;}
.xa_c00028{left:155.345685px;}
.x60_c00028{left:156.414885px;}
.x3a_c00028{left:167.389035px;}
.xb_c00028{left:175.863435px;}
.x33_c00028{left:177.620685px;}
.x44_c00028{left:189.208635px;}
.x34_c00028{left:199.514535px;}
.x56_c00028{left:201.247035px;}
.x16_c00028{left:210.934185px;}
.x52_c00028{left:212.344935px;}
.xc_c00028{left:222.353835px;}
.x4_c00028{left:223.987335px;}
.x41_c00028{left:234.748635px;}
.x23_c00028{left:244.069485px;}
.x8_c00028{left:245.594085px;}
.x2b_c00028{left:254.870385px;}
.x4e_c00028{left:258.271035px;}
.x42_c00028{left:267.537435px;}
.x1b_c00028{left:275.972235px;}
.x3b_c00028{left:277.046385px;}
.x24_c00028{left:287.743335px;}
.x45_c00028{left:289.361985px;}
.x47_c00028{left:292.990335px;}
.x35_c00028{left:300.722235px;}
.x2e_c00028{left:310.701435px;}
.x57_c00028{left:313.869435px;}
.x1c_c00028{left:323.155635px;}
.x53_c00028{left:334.248585px;}
.xd_c00028{left:335.585085px;}
.x7_c00028{left:337.235019px;}
.x61_c00028{left:344.861385px;}
.x2f_c00028{left:355.330635px;}
.x51_c00028{left:356.340435px;}
.x17_c00028{left:357.365085px;}
.x25_c00028{left:366.334485px;}
.x58_c00028{left:378.283785px;}
.x5f_c00028{left:389.015385px;}
.x26_c00028{left:398.563935px;}
.x36_c00028{left:399.831135px;}
.x5c_c00028{left:400.900335px;}
.x1d_c00028{left:421.452735px;}
.x3c_c00028{left:432.540735px;}
.x5b_c00028{left:434.505885px;}
.x2c_c00028{left:443.589135px;}
.x5d_c00028{left:445.371135px;}
.x30_c00028{left:454.721685px;}
.x27_c00028{left:456.102735px;}
.xe_c00028{left:465.943335px;}
.x48_c00028{left:469.502385px;}
.x1e_c00028{left:475.912635px;}
.x46_c00028{left:477.848085px;}
.x62_c00028{left:478.877685px;}
.x31_c00028{left:488.564835px;}
.x6_c00028{left:494.762235px;}
.x3d_c00028{left:499.623135px;}
.x64_c00028{left:501.019035px;}
.x49_c00028{left:511.027935px;}
.x37_c00028{left:521.328885px;}
.x59_c00028{left:522.412935px;}
.x32_c00028{left:532.060485px;}
.x4f_c00028{left:533.099985px;}
.x1f_c00028{left:543.089085px;}
.xf_c00028{left:545.059185px;}
.x38_c00028{left:554.835435px;}
.x4c_c00028{left:566.329335px;}
.x28_c00028{left:576.610485px;}
.x43_c00028{left:577.649985px;}
.x10_c00028{left:579.001335px;}
.x11_c00028{left:599.692335px;}
.x65_c00028{left:609.191385px;}
.x18_c00028{left:610.775385px;}
.x66_c00028{left:612.596985px;}
.x63_c00028{left:620.249685px;}
.x20_c00028{left:621.477285px;}
.x4a_c00028{left:632.535585px;}
.x29_c00028{left:642.806835px;}
.x4d_c00028{left:644.326485px;}
.x21_c00028{left:653.899785px;}
.x5_c00028{left:663.517635px;}
.x12_c00028{left:665.482785px;}
.x4b_c00028{left:675.061035px;}
.x55_c00028{left:676.318335px;}
.x5a_c00028{left:677.763735px;}
.x5e_c00028{left:679.149735px;}
.x39_c00028{left:685.871835px;}
.x13_c00028{left:687.440985px;}
.x2d_c00028{left:698.781435px;}
.x67_c00028{left:701.033685px;}
.x68_c00028{left:704.201685px;}
.x19_c00028{left:709.191285px;}
.x54_c00028{left:710.938635px;}
.x69_c00028{left:727.753785px;}
@media print{
.v0_c00028{vertical-align:0.000000pt;}
.v1_c00028{vertical-align:5.051200pt;}
.ls7_c00028{letter-spacing:-2.439360pt;}
.ls9_c00028{letter-spacing:-1.080288pt;}
.lsa_c00028{letter-spacing:-0.271814pt;}
.ls0_c00028{letter-spacing:0.000000pt;}
.ls8_c00028{letter-spacing:0.961805pt;}
.ls3_c00028{letter-spacing:1.742400pt;}
.lsb_c00028{letter-spacing:2.807200pt;}
.ls5_c00028{letter-spacing:2.860000pt;}
.ls4_c00028{letter-spacing:3.115209pt;}
.ls6_c00028{letter-spacing:3.273609pt;}
.ls2_c00028{letter-spacing:3.484800pt;}
.ls1_c00028{letter-spacing:3.625609pt;}
.ws0_c00028{word-spacing:0.000000pt;}
._1_c00028{width:8.154432pt;}
._2_c00028{width:29.317376pt;}
._0_c00028{width:42.909367pt;}
.fs0_c00028{font-size:19.712000pt;}
.fs2_c00028{font-size:21.472000pt;}
.fs1_c00028{font-size:24.640000pt;}
.fs4_c00028{font-size:29.568000pt;}
.fs10_c00028{font-size:30.272176pt;}
.fse_c00028{font-size:30.800000pt;}
.fsb_c00028{font-size:32.032176pt;}
.fsd_c00028{font-size:49.280000pt;}
.fsf_c00028{font-size:56.144000pt;}
.fs8_c00028{font-size:57.200000pt;}
.fs6_c00028{font-size:58.960000pt;}
.fs7_c00028{font-size:62.304176pt;}
.fsa_c00028{font-size:65.472176pt;}
.fs11_c00028{font-size:67.584176pt;}
.fs9_c00028{font-size:68.288000pt;}
.fs5_c00028{font-size:69.696000pt;}
.fsc_c00028{font-size:70.400000pt;}
.fs3_c00028{font-size:72.512176pt;}
.y0_c00028{bottom:0.000000pt;}
.y25_c00028{bottom:51.238920pt;}
.y1_c00028{bottom:68.000000pt;}
.y22_c00028{bottom:104.782520pt;}
.y21_c00028{bottom:153.248520pt;}
.y24_c00028{bottom:180.814520pt;}
.y20_c00028{bottom:184.928520pt;}
.y23_c00028{bottom:196.971320pt;}
.y1f_c00028{bottom:213.444920pt;}
.y1e_c00028{bottom:242.273720pt;}
.y1d_c00028{bottom:253.361720pt;}
.y1c_c00028{bottom:271.102520pt;}
.y1b_c00028{bottom:299.926920pt;}
.y1a_c00028{bottom:328.443320pt;}
.y19_c00028{bottom:359.802120pt;}
.y18_c00028{bottom:388.314120pt;}
.y17_c00028{bottom:417.147320pt;}
.y16_c00028{bottom:445.654920pt;}
.y3_c00028{bottom:456.113720pt;}
.y15_c00028{bottom:472.587320pt;}
.y14_c00028{bottom:473.850120pt;}
.y13_c00028{bottom:503.000120pt;}
.y12_c00028{bottom:531.824520pt;}
.y11_c00028{bottom:588.531720pt;}
.y10_c00028{bottom:618.627720pt;}
.yf_c00028{bottom:648.411320pt;}
.ye_c00028{bottom:677.240120pt;}
.yd_c00028{bottom:707.652920pt;}
.yc_c00028{bottom:737.427720pt;}
.yb_c00028{bottom:765.944120pt;}
.ya_c00028{bottom:794.772920pt;}
.y9_c00028{bottom:823.597320pt;}
.y8_c00028{bottom:858.132920pt;}
.y2_c00028{bottom:869.850120pt;}
.y7_c00028{bottom:870.799200pt;}
.y6_c00028{bottom:937.011720pt;}
.y5_c00028{bottom:961.722120pt;}
.y4_c00028{bottom:962.993720pt;}
.h2_c00028{height:20.559000pt;}
.h4_c00028{height:22.394625pt;}
.h3_c00028{height:25.698750pt;}
.h6_c00028{height:30.838500pt;}
.h12_c00028{height:31.572934pt;}
.h10_c00028{height:32.123438pt;}
.hf_c00028{height:51.397500pt;}
.ha_c00028{height:56.138672pt;}
.h11_c00028{height:58.556438pt;}
.h8_c00028{height:61.493438pt;}
.hc_c00028{height:64.257360pt;}
.h9_c00028{height:64.981309pt;}
.hb_c00028{height:67.020938pt;}
.h7_c00028{height:68.402813pt;}
.he_c00028{height:69.093750pt;}
.h13_c00028{height:70.488184pt;}
.h5_c00028{height:71.166735pt;}
.hd_c00028{height:73.454013pt;}
.h1_c00028{height:986.666667pt;}
.h0_c00028{height:1122.666667pt;}
.w1_c00028{width:657.333333pt;}
.w0_c00028{width:793.333333pt;}
.x0_c00028{left:0.000000pt;}
.x3_c00028{left:4.483453pt;}
.x2_c00028{left:45.372653pt;}
.x1_c00028{left:68.000000pt;}
.x9_c00028{left:78.663053pt;}
.x14_c00028{left:79.793853pt;}
.x3e_c00028{left:81.650653pt;}
.x15_c00028{left:98.375053pt;}
.x2a_c00028{left:108.266253pt;}
.x22_c00028{left:109.207853pt;}
.x1a_c00028{left:118.452253pt;}
.x3f_c00028{left:119.943853pt;}
.x40_c00028{left:127.718653pt;}
.x50_c00028{left:129.505053pt;}
.xa_c00028{left:138.085053pt;}
.x60_c00028{left:139.035453pt;}
.x3a_c00028{left:148.790253pt;}
.xb_c00028{left:156.323053pt;}
.x33_c00028{left:157.885053pt;}
.x44_c00028{left:168.185453pt;}
.x34_c00028{left:177.346253pt;}
.x56_c00028{left:178.886253pt;}
.x16_c00028{left:187.497053pt;}
.x52_c00028{left:188.751053pt;}
.xc_c00028{left:197.647853pt;}
.x4_c00028{left:199.099853pt;}
.x41_c00028{left:208.665453pt;}
.x23_c00028{left:216.950653pt;}
.x8_c00028{left:218.305853pt;}
.x2b_c00028{left:226.551453pt;}
.x4e_c00028{left:229.574253pt;}
.x42_c00028{left:237.811053pt;}
.x1b_c00028{left:245.308653pt;}
.x3b_c00028{left:246.263453pt;}
.x24_c00028{left:255.771853pt;}
.x45_c00028{left:257.210653pt;}
.x47_c00028{left:260.435853pt;}
.x35_c00028{left:267.308653pt;}
.x2e_c00028{left:276.179053pt;}
.x57_c00028{left:278.995053pt;}
.x1c_c00028{left:287.249453pt;}
.x53_c00028{left:297.109853pt;}
.xd_c00028{left:298.297853pt;}
.x7_c00028{left:299.764461pt;}
.x61_c00028{left:306.543453pt;}
.x2f_c00028{left:315.849453pt;}
.x51_c00028{left:316.747053pt;}
.x17_c00028{left:317.657853pt;}
.x25_c00028{left:325.630653pt;}
.x58_c00028{left:336.252253pt;}
.x5f_c00028{left:345.791453pt;}
.x26_c00028{left:354.279053pt;}
.x36_c00028{left:355.405453pt;}
.x5c_c00028{left:356.355853pt;}
.x1d_c00028{left:374.624653pt;}
.x3c_c00028{left:384.480653pt;}
.x5b_c00028{left:386.227453pt;}
.x2c_c00028{left:394.301453pt;}
.x5d_c00028{left:395.885453pt;}
.x30_c00028{left:404.197053pt;}
.x27_c00028{left:405.424653pt;}
.xe_c00028{left:414.171853pt;}
.x48_c00028{left:417.335453pt;}
.x1e_c00028{left:423.033453pt;}
.x46_c00028{left:424.753853pt;}
.x62_c00028{left:425.669053pt;}
.x31_c00028{left:434.279853pt;}
.x6_c00028{left:439.788653pt;}
.x3d_c00028{left:444.109453pt;}
.x64_c00028{left:445.350253pt;}
.x49_c00028{left:454.247053pt;}
.x37_c00028{left:463.403453pt;}
.x59_c00028{left:464.367053pt;}
.x32_c00028{left:472.942653pt;}
.x4f_c00028{left:473.866653pt;}
.x1f_c00028{left:482.745853pt;}
.xf_c00028{left:484.497053pt;}
.x38_c00028{left:493.187053pt;}
.x4c_c00028{left:503.403853pt;}
.x28_c00028{left:512.542653pt;}
.x43_c00028{left:513.466653pt;}
.x10_c00028{left:514.667853pt;}
.x11_c00028{left:533.059853pt;}
.x65_c00028{left:541.503453pt;}
.x18_c00028{left:542.911453pt;}
.x66_c00028{left:544.530653pt;}
.x63_c00028{left:551.333053pt;}
.x20_c00028{left:552.424253pt;}
.x4a_c00028{left:562.253853pt;}
.x29_c00028{left:571.383853pt;}
.x4d_c00028{left:572.734653pt;}
.x21_c00028{left:581.244253pt;}
.x5_c00028{left:589.793453pt;}
.x12_c00028{left:591.540253pt;}
.x4b_c00028{left:600.054253pt;}
.x55_c00028{left:601.171853pt;}
.x5a_c00028{left:602.456653pt;}
.x5e_c00028{left:603.688653pt;}
.x39_c00028{left:609.663853pt;}
.x13_c00028{left:611.058653pt;}
.x2d_c00028{left:621.139053pt;}
.x67_c00028{left:623.141053pt;}
.x68_c00028{left:625.957053pt;}
.x19_c00028{left:630.392253pt;}
.x54_c00028{left:631.945453pt;}
.x69_c00028{left:646.892253pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_828034e3ec017669c6706b59.woff2')format("woff");}.ff1_c00029{font-family:ff1_c00029;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00029;src:url('chunks/assets/font_7137e85ba80e9d5ae79f63ff.woff2')format("woff");}.ff2_c00029{font-family:ff2_c00029;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00029;src:url('chunks/assets/font_e2193450500ec91a37b0373a.woff2')format("woff");}.ff3_c00029{font-family:ff3_c00029;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00029;src:url('chunks/assets/font_dff573cfb6ff9c8c3492d25d.woff2')format("woff");}.ff4_c00029{font-family:ff4_c00029;line-height:1.372070;font-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_c00029{transform:matrix(0.144273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144273,0.000000,0.000000,0.250000,0,0);}
.m47_c00029{transform:matrix(0.183532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183532,0.000000,0.000000,0.250000,0,0);}
.m8f_c00029{transform:matrix(0.200263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200263,0.000000,0.000000,0.250000,0,0);}
.m63_c00029{transform:matrix(0.200823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200823,0.000000,0.000000,0.250000,0,0);}
.mc_c00029{transform:matrix(0.209460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209460,0.000000,0.000000,0.250000,0,0);}
.m74_c00029{transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);}
.m0_c00029{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m67_c00029{transform:matrix(0.251153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251153,0.000000,0.000000,0.250000,0,0);}
.m24_c00029{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.m1_c00029{transform:matrix(0.253790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253790,0.000000,0.000000,0.250000,0,0);}
.m2e_c00029{transform:matrix(0.256359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256359,0.000000,0.000000,0.250000,0,0);}
.m3_c00029{transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);}
.m8_c00029{transform:matrix(0.258596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258596,0.000000,0.000000,0.250000,0,0);}
.m48_c00029{transform:matrix(0.260157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260157,0.000000,0.000000,0.250000,0,0);}
.m88_c00029{transform:matrix(0.260446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260446,0.000000,0.000000,0.250000,0,0);}
.m38_c00029{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m86_c00029{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.m59_c00029{transform:matrix(0.262539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262539,0.000000,0.000000,0.250000,0,0);}
.m14_c00029{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m54_c00029{transform:matrix(0.264677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264677,0.000000,0.000000,0.250000,0,0);}
.mf_c00029{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m8c_c00029{transform:matrix(0.266600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266600,0.000000,0.000000,0.250000,0,0);}
.m26_c00029{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.m18_c00029{transform:matrix(0.266916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266916,0.000000,0.000000,0.250000,0,0);}
.m16_c00029{transform:matrix(0.267239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267239,0.000000,0.000000,0.250000,0,0);}
.m1e_c00029{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m7_c00029{transform:matrix(0.269011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269011,0.000000,0.000000,0.250000,0,0);}
.m46_c00029{transform:matrix(0.269713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269713,0.000000,0.000000,0.250000,0,0);}
.m5_c00029{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m2c_c00029{transform:matrix(0.271909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271909,0.000000,0.000000,0.250000,0,0);}
.m3a_c00029{transform:matrix(0.272137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272137,0.000000,0.000000,0.250000,0,0);}
.mb_c00029{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m17_c00029{transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);}
.m51_c00029{transform:matrix(0.274431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274431,0.000000,0.000000,0.250000,0,0);}
.m79_c00029{transform:matrix(0.274664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274664,0.000000,0.000000,0.250000,0,0);}
.m4e_c00029{transform:matrix(0.274708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274708,0.000000,0.000000,0.250000,0,0);}
.m82_c00029{transform:matrix(0.274732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274732,0.000000,0.000000,0.250000,0,0);}
.m34_c00029{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m66_c00029{transform:matrix(0.276487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276487,0.000000,0.000000,0.250000,0,0);}
.m30_c00029{transform:matrix(0.276604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276604,0.000000,0.000000,0.250000,0,0);}
.m2f_c00029{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m77_c00029{transform:matrix(0.277767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277767,0.000000,0.000000,0.250000,0,0);}
.m8a_c00029{transform:matrix(0.278331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278331,0.000000,0.000000,0.250000,0,0);}
.m3f_c00029{transform:matrix(0.278721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278721,0.000000,0.000000,0.250000,0,0);}
.m7a_c00029{transform:matrix(0.279047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279047,0.000000,0.000000,0.250000,0,0);}
.m73_c00029{transform:matrix(0.282343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282343,0.000000,0.000000,0.250000,0,0);}
.m87_c00029{transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);}
.m11_c00029{transform:matrix(0.285120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285120,0.000000,0.000000,0.250000,0,0);}
.m58_c00029{transform:matrix(0.286238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286238,0.000000,0.000000,0.250000,0,0);}
.m25_c00029{transform:matrix(0.286472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286472,0.000000,0.000000,0.250000,0,0);}
.m12_c00029{transform:matrix(0.286553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286553,0.000000,0.000000,0.250000,0,0);}
.m50_c00029{transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);}
.m1a_c00029{transform:matrix(0.287310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287310,0.000000,0.000000,0.250000,0,0);}
.m57_c00029{transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);}
.m7d_c00029{transform:matrix(0.289347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289347,0.000000,0.000000,0.250000,0,0);}
.m92_c00029{transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);}
.m53_c00029{transform:matrix(0.290235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290235,0.000000,0.000000,0.250000,0,0);}
.m21_c00029{transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);}
.m55_c00029{transform:matrix(0.291532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291532,0.000000,0.000000,0.250000,0,0);}
.m80_c00029{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);}
.m76_c00029{transform:matrix(0.291816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291816,0.000000,0.000000,0.250000,0,0);}
.m13_c00029{transform:matrix(0.291867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291867,0.000000,0.000000,0.250000,0,0);}
.m8e_c00029{transform:matrix(0.292456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292456,0.000000,0.000000,0.250000,0,0);}
.m49_c00029{transform:matrix(0.293109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293109,0.000000,0.000000,0.250000,0,0);}
.m1b_c00029{transform:matrix(0.293110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293110,0.000000,0.000000,0.250000,0,0);}
.m89_c00029{transform:matrix(0.293496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293496,0.000000,0.000000,0.250000,0,0);}
.m28_c00029{transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);}
.m69_c00029{transform:matrix(0.294898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294898,0.000000,0.000000,0.250000,0,0);}
.m5a_c00029{transform:matrix(0.295292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295292,0.000000,0.000000,0.250000,0,0);}
.m4b_c00029{transform:matrix(0.295324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295324,0.000000,0.000000,0.250000,0,0);}
.m2_c00029{transform:matrix(0.295620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295620,0.000000,0.000000,0.250000,0,0);}
.m5c_c00029{transform:matrix(0.295676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295676,0.000000,0.000000,0.250000,0,0);}
.m78_c00029{transform:matrix(0.295932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295932,0.000000,0.000000,0.250000,0,0);}
.m32_c00029{transform:matrix(0.296554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296554,0.000000,0.000000,0.250000,0,0);}
.m6b_c00029{transform:matrix(0.296720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296720,0.000000,0.000000,0.250000,0,0);}
.m5f_c00029{transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);}
.m7c_c00029{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m60_c00029{transform:matrix(0.297662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297662,0.000000,0.000000,0.250000,0,0);}
.ma_c00029{transform:matrix(0.298268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298268,0.000000,0.000000,0.250000,0,0);}
.m44_c00029{transform:matrix(0.298283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298283,0.000000,0.000000,0.250000,0,0);}
.m91_c00029{transform:matrix(0.299100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299100,0.000000,0.000000,0.250000,0,0);}
.m93_c00029{transform:matrix(0.299298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299298,0.000000,0.000000,0.250000,0,0);}
.m65_c00029{transform:matrix(0.299531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299531,0.000000,0.000000,0.250000,0,0);}
.m40_c00029{transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);}
.m45_c00029{transform:matrix(0.303687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303687,0.000000,0.000000,0.250000,0,0);}
.m85_c00029{transform:matrix(0.303906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303906,0.000000,0.000000,0.250000,0,0);}
.m2d_c00029{transform:matrix(0.304345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304345,0.000000,0.000000,0.250000,0,0);}
.m5b_c00029{transform:matrix(0.304912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304912,0.000000,0.000000,0.250000,0,0);}
.m1c_c00029{transform:matrix(0.305475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305475,0.000000,0.000000,0.250000,0,0);}
.m6c_c00029{transform:matrix(0.305912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305912,0.000000,0.000000,0.250000,0,0);}
.m27_c00029{transform:matrix(0.306458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306458,0.000000,0.000000,0.250000,0,0);}
.m7b_c00029{transform:matrix(0.306485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306485,0.000000,0.000000,0.250000,0,0);}
.m37_c00029{transform:matrix(0.306706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306706,0.000000,0.000000,0.250000,0,0);}
.m33_c00029{transform:matrix(0.308761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308761,0.000000,0.000000,0.250000,0,0);}
.m8d_c00029{transform:matrix(0.308883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308883,0.000000,0.000000,0.250000,0,0);}
.m83_c00029{transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);}
.m3e_c00029{transform:matrix(0.308994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308994,0.000000,0.000000,0.250000,0,0);}
.m90_c00029{transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);}
.m5d_c00029{transform:matrix(0.311833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311833,0.000000,0.000000,0.250000,0,0);}
.m7f_c00029{transform:matrix(0.311969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311969,0.000000,0.000000,0.250000,0,0);}
.m31_c00029{transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);}
.m81_c00029{transform:matrix(0.312410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312410,0.000000,0.000000,0.250000,0,0);}
.m84_c00029{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.m52_c00029{transform:matrix(0.313287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313287,0.000000,0.000000,0.250000,0,0);}
.m3d_c00029{transform:matrix(0.315482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315482,0.000000,0.000000,0.250000,0,0);}
.m61_c00029{transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);}
.m2b_c00029{transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);}
.m8b_c00029{transform:matrix(0.317907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317907,0.000000,0.000000,0.250000,0,0);}
.m4a_c00029{transform:matrix(0.318082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318082,0.000000,0.000000,0.250000,0,0);}
.m20_c00029{transform:matrix(0.318415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318415,0.000000,0.000000,0.250000,0,0);}
.m22_c00029{transform:matrix(0.319130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319130,0.000000,0.000000,0.250000,0,0);}
.m4c_c00029{transform:matrix(0.319294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319294,0.000000,0.000000,0.250000,0,0);}
.m62_c00029{transform:matrix(0.319808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319808,0.000000,0.000000,0.250000,0,0);}
.m19_c00029{transform:matrix(0.321222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321222,0.000000,0.000000,0.250000,0,0);}
.m15_c00029{transform:matrix(0.321492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321492,0.000000,0.000000,0.250000,0,0);}
.m9_c00029{transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);}
.md_c00029{transform:matrix(0.322809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322809,0.000000,0.000000,0.250000,0,0);}
.m6d_c00029{transform:matrix(0.323065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323065,0.000000,0.000000,0.250000,0,0);}
.m6a_c00029{transform:matrix(0.324901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324901,0.000000,0.000000,0.250000,0,0);}
.m68_c00029{transform:matrix(0.325336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325336,0.000000,0.000000,0.250000,0,0);}
.m4_c00029{transform:matrix(0.326063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326063,0.000000,0.000000,0.250000,0,0);}
.m39_c00029{transform:matrix(0.326165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326165,0.000000,0.000000,0.250000,0,0);}
.m72_c00029{transform:matrix(0.326448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326448,0.000000,0.000000,0.250000,0,0);}
.m7e_c00029{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m5e_c00029{transform:matrix(0.327290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327290,0.000000,0.000000,0.250000,0,0);}
.m4d_c00029{transform:matrix(0.327297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327297,0.000000,0.000000,0.250000,0,0);}
.m3b_c00029{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.m70_c00029{transform:matrix(0.327730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327730,0.000000,0.000000,0.250000,0,0);}
.m29_c00029{transform:matrix(0.327862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327862,0.000000,0.000000,0.250000,0,0);}
.m2a_c00029{transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);}
.m42_c00029{transform:matrix(0.331303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331303,0.000000,0.000000,0.250000,0,0);}
.m10_c00029{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m4f_c00029{transform:matrix(0.334276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334276,0.000000,0.000000,0.250000,0,0);}
.m1d_c00029{transform:matrix(0.338655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338655,0.000000,0.000000,0.250000,0,0);}
.m71_c00029{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m3c_c00029{transform:matrix(0.341157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341157,0.000000,0.000000,0.250000,0,0);}
.m23_c00029{transform:matrix(0.341742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341742,0.000000,0.000000,0.250000,0,0);}
.m1f_c00029{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.m41_c00029{transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);}
.m6f_c00029{transform:matrix(0.347854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347854,0.000000,0.000000,0.250000,0,0);}
.m43_c00029{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m56_c00029{transform:matrix(0.351187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351187,0.000000,0.000000,0.250000,0,0);}
.m6_c00029{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m6e_c00029{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.me_c00029{transform:matrix(0.363556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363556,0.000000,0.000000,0.250000,0,0);}
.m35_c00029{transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);}
.m64_c00029{transform:matrix(0.382409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382409,0.000000,0.000000,0.250000,0,0);}
.m75_c00029{transform:matrix(1.686261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.686261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.686261,0.000000,0.000000,0.250000,0,0);}
.v1_c00029{vertical-align:-25.660800px;}
.v0_c00029{vertical-align:0.000000px;}
.lsb_c00029{letter-spacing:-2.744280px;}
.ls11_c00029{letter-spacing:-2.375762px;}
.ls0_c00029{letter-spacing:0.000000px;}
.lsf_c00029{letter-spacing:0.455400px;}
.lsa_c00029{letter-spacing:2.273832px;}
.ls12_c00029{letter-spacing:2.618827px;}
.ls5_c00029{letter-spacing:3.544200px;}
.ls4_c00029{letter-spacing:3.700858px;}
.lsd_c00029{letter-spacing:3.801610px;}
.ls8_c00029{letter-spacing:3.880810px;}
.ls10_c00029{letter-spacing:3.889037px;}
.ls3_c00029{letter-spacing:3.920400px;}
.ls7_c00029{letter-spacing:4.059000px;}
.ls2_c00029{letter-spacing:4.276810px;}
.ls1_c00029{letter-spacing:4.435200px;}
.ls9_c00029{letter-spacing:4.474810px;}
.lse_c00029{letter-spacing:51.321798px;}
.ls6_c00029{letter-spacing:52.747398px;}
.lsc_c00029{letter-spacing:59.875398px;}
.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:-19.602000px;}
.ws1_c00029{word-spacing:0.000000px;}
._5_c00029{margin-left:-5.410152px;}
._4_c00029{width:15.723576px;}
._1_c00029{width:21.562596px;}
._2_c00029{width:40.212216px;}
._3_c00029{width:123.342912px;}
._0_c00029{width:1630.368432px;}
.fc0_c00029{color:transparent;}
.fs6_c00029{font-size:7.722198px;}
.fs11_c00029{font-size:9.108000px;}
.fs13_c00029{font-size:21.186000px;}
.fs1_c00029{font-size:22.572000px;}
.fs0_c00029{font-size:26.928000px;}
.fs3_c00029{font-size:33.660000px;}
.fs10_c00029{font-size:51.321798px;}
.fs8_c00029{font-size:52.747398px;}
.fsd_c00029{font-size:59.875398px;}
.fs12_c00029{font-size:61.776198px;}
.fse_c00029{font-size:68.112198px;}
.fs7_c00029{font-size:70.884000px;}
.fsf_c00029{font-size:76.032198px;}
.fsa_c00029{font-size:77.616198px;}
.fs5_c00029{font-size:78.408000px;}
.fsb_c00029{font-size:78.804000px;}
.fs14_c00029{font-size:79.200000px;}
.fs9_c00029{font-size:81.180000px;}
.fs4_c00029{font-size:85.536198px;}
.fs2_c00029{font-size:88.704000px;}
.fsc_c00029{font-size:89.496198px;}
.y0_c00029{bottom:0.000000px;}
.y1e_c00029{bottom:21.290985px;}
.y1d_c00029{bottom:44.100585px;}
.y1_c00029{bottom:76.500000px;}
.y1c_c00029{bottom:115.741935px;}
.y1b_c00029{bottom:141.759135px;}
.y1a_c00029{bottom:171.696735px;}
.y19_c00029{bottom:207.336735px;}
.y18_c00029{bottom:241.551135px;}
.y17_c00029{bottom:268.281135px;}
.y16_c00029{bottom:273.983535px;}
.y15_c00029{bottom:306.772335px;}
.y14_c00029{bottom:371.993535px;}
.y13_c00029{bottom:404.420985px;}
.y12_c00029{bottom:437.209785px;}
.y11_c00029{bottom:470.716335px;}
.y10_c00029{bottom:503.143785px;}
.yf_c00029{bottom:536.650335px;}
.ye_c00029{bottom:569.082735px;}
.yd_c00029{bottom:602.227935px;}
.yc_c00029{bottom:635.016735px;}
.yb_c00029{bottom:661.390335px;}
.ya_c00029{bottom:668.156985px;}
.y9_c00029{bottom:702.371385px;}
.y8_c00029{bottom:735.160185px;}
.y7_c00029{bottom:826.759935px;}
.y6_c00029{bottom:831.388185px;}
.y5_c00029{bottom:875.938185px;}
.y4_c00029{bottom:967.181535px;}
.y3_c00029{bottom:1067.329935px;}
.y2_c00029{bottom:1084.788585px;}
.h8_c00029{height:8.054011px;}
.h13_c00029{height:9.499359px;}
.h15_c00029{height:21.134276px;}
.h5_c00029{height:23.541891px;}
.h2_c00029{height:28.085063px;}
.h4_c00029{height:33.035449px;}
.h12_c00029{height:34.180317px;}
.ha_c00029{height:35.129767px;}
.hf_c00029{height:39.877015px;}
.h14_c00029{height:60.629960px;}
.h9_c00029{height:69.568770px;}
.h10_c00029{height:71.038894px;}
.h11_c00029{height:74.621444px;}
.hc_c00029{height:76.176054px;}
.h7_c00029{height:76.953164px;}
.hd_c00029{height:77.341816px;}
.hb_c00029{height:79.673730px;}
.h16_c00029{height:82.603125px;}
.h6_c00029{height:83.949101px;}
.h3_c00029{height:87.058125px;}
.he_c00029{height:87.835624px;}
.h1_c00029{height:1110.000000px;}
.h0_c00029{height:1263.000000px;}
.w1_c00029{width:739.500000px;}
.w0_c00029{width:892.500000px;}
.x0_c00029{left:0.000000px;}
.x1_c00029{left:76.500000px;}
.x49_c00029{left:83.857785px;}
.x12_c00029{left:85.446735px;}
.x32_c00029{left:86.649585px;}
.x4d_c00029{left:87.936585px;}
.x40_c00029{left:107.939535px;}
.x56_c00029{left:118.487985px;}
.x13_c00029{left:130.377885px;}
.x6_c00029{left:140.055135px;}
.x1e_c00029{left:151.791585px;}
.x33_c00029{left:153.147885px;}
.x26_c00029{left:161.934135px;}
.x14_c00029{left:163.820085px;}
.x2c_c00029{left:165.963435px;}
.x5b_c00029{left:171.943035px;}
.xd_c00029{left:174.521985px;}
.x51_c00029{left:184.214085px;}
.x43_c00029{left:185.560485px;}
.x5_c00029{left:189.272985px;}
.x7_c00029{left:195.707985px;}
.x39_c00029{left:196.866285px;}
.x5c_c00029{left:207.033585px;}
.x34_c00029{left:208.097835px;}
.x44_c00029{left:217.487985px;}
.x3a_c00029{left:219.502635px;}
.x2_c00029{left:227.714685px;}
.x8_c00029{left:230.140185px;}
.x27_c00029{left:240.525285px;}
.x4_c00029{left:250.578735px;}
.x35_c00029{left:252.271635px;}
.x2d_c00029{left:264.374385px;}
.x1f_c00029{left:273.190335px;}
.x25_c00029{left:280.159935px;}
.x15_c00029{left:284.887185px;}
.x41_c00029{left:286.471185px;}
.x57_c00029{left:294.099135px;}
.x45_c00029{left:295.410885px;}
.x9_c00029{left:297.168135px;}
.x4e_c00029{left:306.107835px;}
.x16_c00029{left:317.740335px;}
.xa_c00029{left:329.585685px;}
.x28_c00029{left:351.598335px;}
.xb_c00029{left:362.503185px;}
.x58_c00029{left:372.749685px;}
.x2e_c00029{left:374.140635px;}
.x3e_c00029{left:377.308635px;}
.x36_c00029{left:385.040535px;}
.x17_c00029{left:395.564235px;}
.x59_c00029{left:406.246335px;}
.xc_c00029{left:416.690835px;}
.x2f_c00029{left:418.596585px;}
.x55_c00029{left:427.442235px;}
.x3b_c00029{left:429.649935px;}
.x18_c00029{left:440.426085px;}
.x46_c00029{left:450.256785px;}
.x29_c00029{left:451.494285px;}
.x20_c00029{left:462.562485px;}
.xe_c00029{left:473.249535px;}
.x19_c00029{left:474.274185px;}
.x37_c00029{left:485.352285px;}
.x4f_c00029{left:494.955285px;}
.x21_c00029{left:496.390785px;}
.xf_c00029{left:506.790735px;}
.x1a_c00029{left:517.804485px;}
.x4a_c00029{left:527.249085px;}
.x22_c00029{left:528.773685px;}
.x5d_c00029{left:538.351935px;}
.x10_c00029{left:539.401335px;}
.x30_c00029{left:546.494685px;}
.x47_c00029{left:549.256785px;}
.x54_c00029{left:560.369535px;}
.x2a_c00029{left:573.402885px;}
.x3f_c00029{left:584.748285px;}
.x52_c00029{left:594.064185px;}
.x4b_c00029{left:595.826385px;}
.x5a_c00029{left:604.904685px;}
.x23_c00029{left:606.003585px;}
.x5f_c00029{left:611.136735px;}
.x5e_c00029{left:616.844085px;}
.x3c_c00029{left:618.309285px;}
.x4c_c00029{left:627.674685px;}
.x1b_c00029{left:629.684385px;}
.x11_c00029{left:640.336785px;}
.x48_c00029{left:649.979385px;}
.x3d_c00029{left:651.419835px;}
.x1c_c00029{left:660.211035px;}
.x3_c00029{left:661.369335px;}
.x38_c00029{left:662.819685px;}
.x31_c00029{left:673.145385px;}
.x53_c00029{left:682.317735px;}
.x42_c00029{left:683.634435px;}
.x24_c00029{left:685.243185px;}
.x50_c00029{left:693.836385px;}
.x1d_c00029{left:695.935185px;}
.x2b_c00029{left:706.518285px;}
@media print{
.v1_c00029{vertical-align:-22.809600pt;}
.v0_c00029{vertical-align:0.000000pt;}
.lsb_c00029{letter-spacing:-2.439360pt;}
.ls11_c00029{letter-spacing:-2.111789pt;}
.ls0_c00029{letter-spacing:0.000000pt;}
.lsf_c00029{letter-spacing:0.404800pt;}
.lsa_c00029{letter-spacing:2.021184pt;}
.ls12_c00029{letter-spacing:2.327846pt;}
.ls5_c00029{letter-spacing:3.150400pt;}
.ls4_c00029{letter-spacing:3.289651pt;}
.lsd_c00029{letter-spacing:3.379209pt;}
.ls8_c00029{letter-spacing:3.449609pt;}
.ls10_c00029{letter-spacing:3.456922pt;}
.ls3_c00029{letter-spacing:3.484800pt;}
.ls7_c00029{letter-spacing:3.608000pt;}
.ls2_c00029{letter-spacing:3.801609pt;}
.ls1_c00029{letter-spacing:3.942400pt;}
.ls9_c00029{letter-spacing:3.977609pt;}
.lse_c00029{letter-spacing:45.619376pt;}
.ls6_c00029{letter-spacing:46.886576pt;}
.lsc_c00029{letter-spacing:53.222576pt;}
.ws0_c00029{word-spacing:-17.424000pt;}
.ws1_c00029{word-spacing:0.000000pt;}
._5_c00029{margin-left:-4.809024pt;}
._4_c00029{width:13.976512pt;}
._1_c00029{width:19.166752pt;}
._2_c00029{width:35.744192pt;}
._3_c00029{width:109.638144pt;}
._0_c00029{width:1449.216384pt;}
.fs6_c00029{font-size:6.864176pt;}
.fs11_c00029{font-size:8.096000pt;}
.fs13_c00029{font-size:18.832000pt;}
.fs1_c00029{font-size:20.064000pt;}
.fs0_c00029{font-size:23.936000pt;}
.fs3_c00029{font-size:29.920000pt;}
.fs10_c00029{font-size:45.619376pt;}
.fs8_c00029{font-size:46.886576pt;}
.fsd_c00029{font-size:53.222576pt;}
.fs12_c00029{font-size:54.912176pt;}
.fse_c00029{font-size:60.544176pt;}
.fs7_c00029{font-size:63.008000pt;}
.fsf_c00029{font-size:67.584176pt;}
.fsa_c00029{font-size:68.992176pt;}
.fs5_c00029{font-size:69.696000pt;}
.fsb_c00029{font-size:70.048000pt;}
.fs14_c00029{font-size:70.400000pt;}
.fs9_c00029{font-size:72.160000pt;}
.fs4_c00029{font-size:76.032176pt;}
.fs2_c00029{font-size:78.848000pt;}
.fsc_c00029{font-size:79.552176pt;}
.y0_c00029{bottom:0.000000pt;}
.y1e_c00029{bottom:18.925320pt;}
.y1d_c00029{bottom:39.200520pt;}
.y1_c00029{bottom:68.000000pt;}
.y1c_c00029{bottom:102.881720pt;}
.y1b_c00029{bottom:126.008120pt;}
.y1a_c00029{bottom:152.619320pt;}
.y19_c00029{bottom:184.299320pt;}
.y18_c00029{bottom:214.712120pt;}
.y17_c00029{bottom:238.472120pt;}
.y16_c00029{bottom:243.540920pt;}
.y15_c00029{bottom:272.686520pt;}
.y14_c00029{bottom:330.660920pt;}
.y13_c00029{bottom:359.485320pt;}
.y12_c00029{bottom:388.630920pt;}
.y11_c00029{bottom:418.414520pt;}
.y10_c00029{bottom:447.238920pt;}
.yf_c00029{bottom:477.022520pt;}
.ye_c00029{bottom:505.851320pt;}
.yd_c00029{bottom:535.313720pt;}
.yc_c00029{bottom:564.459320pt;}
.yb_c00029{bottom:587.902520pt;}
.ya_c00029{bottom:593.917320pt;}
.y9_c00029{bottom:624.330120pt;}
.y8_c00029{bottom:653.475720pt;}
.y7_c00029{bottom:734.897720pt;}
.y6_c00029{bottom:739.011720pt;}
.y5_c00029{bottom:778.611720pt;}
.y4_c00029{bottom:859.716920pt;}
.y3_c00029{bottom:948.737720pt;}
.y2_c00029{bottom:964.256520pt;}
.h8_c00029{height:7.159121pt;}
.h13_c00029{height:8.443875pt;}
.h15_c00029{height:18.786023pt;}
.h5_c00029{height:20.926125pt;}
.h2_c00029{height:24.964500pt;}
.h4_c00029{height:29.364844pt;}
.h12_c00029{height:30.382504pt;}
.ha_c00029{height:31.226460pt;}
.hf_c00029{height:35.446236pt;}
.h14_c00029{height:53.893298pt;}
.h9_c00029{height:61.838906pt;}
.h10_c00029{height:63.145684pt;}
.h11_c00029{height:66.330173pt;}
.hc_c00029{height:67.712048pt;}
.h7_c00029{height:68.402813pt;}
.hd_c00029{height:68.748281pt;}
.hb_c00029{height:70.821094pt;}
.h16_c00029{height:73.425000pt;}
.h6_c00029{height:74.621423pt;}
.h3_c00029{height:77.385000pt;}
.he_c00029{height:78.076110pt;}
.h1_c00029{height:986.666667pt;}
.h0_c00029{height:1122.666667pt;}
.w1_c00029{width:657.333333pt;}
.w0_c00029{width:793.333333pt;}
.x0_c00029{left:0.000000pt;}
.x1_c00029{left:68.000000pt;}
.x49_c00029{left:74.540253pt;}
.x12_c00029{left:75.952653pt;}
.x32_c00029{left:77.021853pt;}
.x4d_c00029{left:78.165853pt;}
.x40_c00029{left:95.946253pt;}
.x56_c00029{left:105.322653pt;}
.x13_c00029{left:115.891453pt;}
.x6_c00029{left:124.493453pt;}
.x1e_c00029{left:134.925853pt;}
.x33_c00029{left:136.131453pt;}
.x26_c00029{left:143.941453pt;}
.x14_c00029{left:145.617853pt;}
.x2c_c00029{left:147.523053pt;}
.x5b_c00029{left:152.838253pt;}
.xd_c00029{left:155.130653pt;}
.x51_c00029{left:163.745853pt;}
.x43_c00029{left:164.942653pt;}
.x5_c00029{left:168.242653pt;}
.x7_c00029{left:173.962653pt;}
.x39_c00029{left:174.992253pt;}
.x5c_c00029{left:184.029853pt;}
.x34_c00029{left:184.975853pt;}
.x44_c00029{left:193.322653pt;}
.x3a_c00029{left:195.113453pt;}
.x2_c00029{left:202.413053pt;}
.x8_c00029{left:204.569053pt;}
.x27_c00029{left:213.800253pt;}
.x4_c00029{left:222.736653pt;}
.x35_c00029{left:224.241453pt;}
.x2d_c00029{left:234.999453pt;}
.x1f_c00029{left:242.835853pt;}
.x25_c00029{left:249.031053pt;}
.x15_c00029{left:253.233053pt;}
.x41_c00029{left:254.641053pt;}
.x57_c00029{left:261.421453pt;}
.x45_c00029{left:262.587453pt;}
.x9_c00029{left:264.149453pt;}
.x4e_c00029{left:272.095853pt;}
.x16_c00029{left:282.435853pt;}
.xa_c00029{left:292.965053pt;}
.x28_c00029{left:312.531853pt;}
.xb_c00029{left:322.225053pt;}
.x58_c00029{left:331.333053pt;}
.x2e_c00029{left:332.569453pt;}
.x3e_c00029{left:335.385453pt;}
.x36_c00029{left:342.258253pt;}
.x17_c00029{left:351.612653pt;}
.x59_c00029{left:361.107853pt;}
.xc_c00029{left:370.391853pt;}
.x2f_c00029{left:372.085853pt;}
.x55_c00029{left:379.948653pt;}
.x3b_c00029{left:381.911053pt;}
.x18_c00029{left:391.489853pt;}
.x46_c00029{left:400.228253pt;}
.x29_c00029{left:401.328253pt;}
.x20_c00029{left:411.166653pt;}
.xe_c00029{left:420.666253pt;}
.x19_c00029{left:421.577053pt;}
.x37_c00029{left:431.424253pt;}
.x4f_c00029{left:439.960253pt;}
.x21_c00029{left:441.236253pt;}
.xf_c00029{left:450.480653pt;}
.x1a_c00029{left:460.270653pt;}
.x4a_c00029{left:468.665853pt;}
.x22_c00029{left:470.021053pt;}
.x5d_c00029{left:478.535053pt;}
.x10_c00029{left:479.467853pt;}
.x30_c00029{left:485.773053pt;}
.x47_c00029{left:488.228253pt;}
.x54_c00029{left:498.106253pt;}
.x2a_c00029{left:509.691453pt;}
.x3f_c00029{left:519.776253pt;}
.x52_c00029{left:528.057053pt;}
.x4b_c00029{left:529.623453pt;}
.x5a_c00029{left:537.693053pt;}
.x23_c00029{left:538.669853pt;}
.x5f_c00029{left:543.232653pt;}
.x5e_c00029{left:548.305853pt;}
.x3c_c00029{left:549.608253pt;}
.x4c_c00029{left:557.933053pt;}
.x1b_c00029{left:559.719453pt;}
.x11_c00029{left:569.188253pt;}
.x48_c00029{left:577.759453pt;}
.x3d_c00029{left:579.039853pt;}
.x1c_c00029{left:586.854253pt;}
.x3_c00029{left:587.883853pt;}
.x38_c00029{left:589.173053pt;}
.x31_c00029{left:598.351453pt;}
.x53_c00029{left:606.504653pt;}
.x42_c00029{left:607.675053pt;}
.x24_c00029{left:609.105053pt;}
.x50_c00029{left:616.743453pt;}
.x1d_c00029{left:618.609053pt;}
.x2b_c00029{left:628.016253pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_76727415b6b76f8461276232.woff2')format("woff");}.ff1_c00030{font-family:ff1_c00030;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00030;src:url('chunks/assets/font_b0449c99f244e84a7769b02d.woff2')format("woff");}.ff2_c00030{font-family:ff2_c00030;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00030;src:url('chunks/assets/font_03045d064765c2a5a743a836.woff2')format("woff");}.ff3_c00030{font-family:ff3_c00030;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00030;src:url('chunks/assets/font_1079488133e9f84f9391f90b.woff2')format("woff");}.ff4_c00030{font-family:ff4_c00030;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m25_c00030{transform:matrix(0.156558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156558,0.000000,0.000000,0.250000,0,0);}
.md_c00030{transform:matrix(0.166397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166397,0.000000,0.000000,0.250000,0,0);}
.m2a_c00030{transform:matrix(0.183862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183862,0.000000,0.000000,0.250000,0,0);}
.m8d_c00030{transform:matrix(0.222600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222600,0.000000,0.000000,0.250000,0,0);}
.m83_c00030{transform:matrix(0.236265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236265,0.000000,0.000000,0.250000,0,0);}
.m76_c00030{transform:matrix(0.242098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242098,0.000000,0.000000,0.250000,0,0);}
.m0_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);}
.m97_c00030{transform:matrix(0.251240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251240,0.000000,0.000000,0.250000,0,0);}
.mb_c00030{transform:matrix(0.253467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253467,0.000000,0.000000,0.250000,0,0);}
.m90_c00030{transform:matrix(0.254130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254130,0.000000,0.000000,0.250000,0,0);}
.m7e_c00030{transform:matrix(0.256552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256552,0.000000,0.000000,0.250000,0,0);}
.m30_c00030{transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);}
.m6e_c00030{transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);}
.m29_c00030{transform:matrix(0.260157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260157,0.000000,0.000000,0.250000,0,0);}
.m48_c00030{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.m32_c00030{transform:matrix(0.261874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261874,0.000000,0.000000,0.250000,0,0);}
.m1_c00030{transform:matrix(0.261976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261976,0.000000,0.000000,0.250000,0,0);}
.me_c00030{transform:matrix(0.262554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262554,0.000000,0.000000,0.250000,0,0);}
.m8f_c00030{transform:matrix(0.262670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262670,0.000000,0.000000,0.250000,0,0);}
.m95_c00030{transform:matrix(0.262979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262979,0.000000,0.000000,0.250000,0,0);}
.m4c_c00030{transform:matrix(0.263039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263039,0.000000,0.000000,0.250000,0,0);}
.m4f_c00030{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m1b_c00030{transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);}
.m3b_c00030{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m7b_c00030{transform:matrix(0.265718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265718,0.000000,0.000000,0.250000,0,0);}
.m9a_c00030{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.m7d_c00030{transform:matrix(0.267088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267088,0.000000,0.000000,0.250000,0,0);}
.m85_c00030{transform:matrix(0.267744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267744,0.000000,0.000000,0.250000,0,0);}
.m6_c00030{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m8_c00030{transform:matrix(0.267951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267951,0.000000,0.000000,0.250000,0,0);}
.m99_c00030{transform:matrix(0.268133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268133,0.000000,0.000000,0.250000,0,0);}
.m3_c00030{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.m6b_c00030{transform:matrix(0.268838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268838,0.000000,0.000000,0.250000,0,0);}
.m3a_c00030{transform:matrix(0.269870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269870,0.000000,0.000000,0.250000,0,0);}
.m7c_c00030{transform:matrix(0.269943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269943,0.000000,0.000000,0.250000,0,0);}
.m2b_c00030{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m37_c00030{transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);}
.m73_c00030{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m82_c00030{transform:matrix(0.272670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272670,0.000000,0.000000,0.250000,0,0);}
.m3c_c00030{transform:matrix(0.275414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275414,0.000000,0.000000,0.250000,0,0);}
.m8c_c00030{transform:matrix(0.275487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275487,0.000000,0.000000,0.250000,0,0);}
.m22_c00030{transform:matrix(0.276265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276265,0.000000,0.000000,0.250000,0,0);}
.m64_c00030{transform:matrix(0.276393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276393,0.000000,0.000000,0.250000,0,0);}
.m13_c00030{transform:matrix(0.276460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276460,0.000000,0.000000,0.250000,0,0);}
.m41_c00030{transform:matrix(0.276983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276983,0.000000,0.000000,0.250000,0,0);}
.m6f_c00030{transform:matrix(0.277482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277482,0.000000,0.000000,0.250000,0,0);}
.m21_c00030{transform:matrix(0.278331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278331,0.000000,0.000000,0.250000,0,0);}
.m27_c00030{transform:matrix(0.278372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278372,0.000000,0.000000,0.250000,0,0);}
.m7a_c00030{transform:matrix(0.278405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278405,0.000000,0.000000,0.250000,0,0);}
.m2d_c00030{transform:matrix(0.279179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279179,0.000000,0.000000,0.250000,0,0);}
.m17_c00030{transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);}
.m28_c00030{transform:matrix(0.280607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280607,0.000000,0.000000,0.250000,0,0);}
.m4b_c00030{transform:matrix(0.281428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281428,0.000000,0.000000,0.250000,0,0);}
.m4_c00030{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.m1f_c00030{transform:matrix(0.282068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282068,0.000000,0.000000,0.250000,0,0);}
.m20_c00030{transform:matrix(0.283405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283405,0.000000,0.000000,0.250000,0,0);}
.m58_c00030{transform:matrix(0.283542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283542,0.000000,0.000000,0.250000,0,0);}
.m15_c00030{transform:matrix(0.283581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283581,0.000000,0.000000,0.250000,0,0);}
.m80_c00030{transform:matrix(0.284636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284636,0.000000,0.000000,0.250000,0,0);}
.m72_c00030{transform:matrix(0.284681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284681,0.000000,0.000000,0.250000,0,0);}
.m9b_c00030{transform:matrix(0.285291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285291,0.000000,0.000000,0.250000,0,0);}
.m54_c00030{transform:matrix(0.285694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285694,0.000000,0.000000,0.250000,0,0);}
.m6c_c00030{transform:matrix(0.286186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286186,0.000000,0.000000,0.250000,0,0);}
.m5c_c00030{transform:matrix(0.286553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286553,0.000000,0.000000,0.250000,0,0);}
.m61_c00030{transform:matrix(0.286568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286568,0.000000,0.000000,0.250000,0,0);}
.m38_c00030{transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);}
.m3d_c00030{transform:matrix(0.287116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287116,0.000000,0.000000,0.250000,0,0);}
.m5_c00030{transform:matrix(0.287124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287124,0.000000,0.000000,0.250000,0,0);}
.mf_c00030{transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);}
.m59_c00030{transform:matrix(0.288974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288974,0.000000,0.000000,0.250000,0,0);}
.m1a_c00030{transform:matrix(0.289175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289175,0.000000,0.000000,0.250000,0,0);}
.m51_c00030{transform:matrix(0.289516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289516,0.000000,0.000000,0.250000,0,0);}
.m5e_c00030{transform:matrix(0.289849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289849,0.000000,0.000000,0.250000,0,0);}
.m89_c00030{transform:matrix(0.290475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290475,0.000000,0.000000,0.250000,0,0);}
.m63_c00030{transform:matrix(0.290506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290506,0.000000,0.000000,0.250000,0,0);}
.m9c_c00030{transform:matrix(0.290656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290656,0.000000,0.000000,0.250000,0,0);}
.m47_c00030{transform:matrix(0.291140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291140,0.000000,0.000000,0.250000,0,0);}
.m52_c00030{transform:matrix(0.291407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291407,0.000000,0.000000,0.250000,0,0);}
.m1c_c00030{transform:matrix(0.291580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291580,0.000000,0.000000,0.250000,0,0);}
.m8a_c00030{transform:matrix(0.291598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291598,0.000000,0.000000,0.250000,0,0);}
.m81_c00030{transform:matrix(0.291607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291607,0.000000,0.000000,0.250000,0,0);}
.m7f_c00030{transform:matrix(0.291795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291795,0.000000,0.000000,0.250000,0,0);}
.m71_c00030{transform:matrix(0.291833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291833,0.000000,0.000000,0.250000,0,0);}
.mc_c00030{transform:matrix(0.292092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292092,0.000000,0.000000,0.250000,0,0);}
.m9d_c00030{transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);}
.m75_c00030{transform:matrix(0.292854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292854,0.000000,0.000000,0.250000,0,0);}
.m43_c00030{transform:matrix(0.293260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293260,0.000000,0.000000,0.250000,0,0);}
.m9_c00030{transform:matrix(0.293422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293422,0.000000,0.000000,0.250000,0,0);}
.m50_c00030{transform:matrix(0.294033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294033,0.000000,0.000000,0.250000,0,0);}
.m69_c00030{transform:matrix(0.294387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294387,0.000000,0.000000,0.250000,0,0);}
.m11_c00030{transform:matrix(0.297359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297359,0.000000,0.000000,0.250000,0,0);}
.m66_c00030{transform:matrix(0.297662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297662,0.000000,0.000000,0.250000,0,0);}
.m4d_c00030{transform:matrix(0.299451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299451,0.000000,0.000000,0.250000,0,0);}
.m2c_c00030{transform:matrix(0.300883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300883,0.000000,0.000000,0.250000,0,0);}
.m7_c00030{transform:matrix(0.302008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302008,0.000000,0.000000,0.250000,0,0);}
.m2f_c00030{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m4a_c00030{transform:matrix(0.302706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302706,0.000000,0.000000,0.250000,0,0);}
.m34_c00030{transform:matrix(0.302966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302966,0.000000,0.000000,0.250000,0,0);}
.m86_c00030{transform:matrix(0.304016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304016,0.000000,0.000000,0.250000,0,0);}
.m92_c00030{transform:matrix(0.304800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304800,0.000000,0.000000,0.250000,0,0);}
.m87_c00030{transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);}
.m60_c00030{transform:matrix(0.306414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306414,0.000000,0.000000,0.250000,0,0);}
.m5b_c00030{transform:matrix(0.306823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306823,0.000000,0.000000,0.250000,0,0);}
.m39_c00030{transform:matrix(0.307477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307477,0.000000,0.000000,0.250000,0,0);}
.m5a_c00030{transform:matrix(0.307549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307549,0.000000,0.000000,0.250000,0,0);}
.m44_c00030{transform:matrix(0.307871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307871,0.000000,0.000000,0.250000,0,0);}
.m10_c00030{transform:matrix(0.308140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308140,0.000000,0.000000,0.250000,0,0);}
.m6a_c00030{transform:matrix(0.308401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308401,0.000000,0.000000,0.250000,0,0);}
.m67_c00030{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m53_c00030{transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);}
.m56_c00030{transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);}
.m42_c00030{transform:matrix(0.309656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309656,0.000000,0.000000,0.250000,0,0);}
.m18_c00030{transform:matrix(0.310026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310026,0.000000,0.000000,0.250000,0,0);}
.m2e_c00030{transform:matrix(0.311944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311944,0.000000,0.000000,0.250000,0,0);}
.m46_c00030{transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);}
.m65_c00030{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.m68_c00030{transform:matrix(0.312809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312809,0.000000,0.000000,0.250000,0,0);}
.m2_c00030{transform:matrix(0.313833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313833,0.000000,0.000000,0.250000,0,0);}
.m93_c00030{transform:matrix(0.314117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314117,0.000000,0.000000,0.250000,0,0);}
.m36_c00030{transform:matrix(0.314869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314869,0.000000,0.000000,0.250000,0,0);}
.m78_c00030{transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);}
.m55_c00030{transform:matrix(0.316253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316253,0.000000,0.000000,0.250000,0,0);}
.m6d_c00030{transform:matrix(0.316442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316442,0.000000,0.000000,0.250000,0,0);}
.m31_c00030{transform:matrix(0.316543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316543,0.000000,0.000000,0.250000,0,0);}
.m3e_c00030{transform:matrix(0.317237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317237,0.000000,0.000000,0.250000,0,0);}
.m35_c00030{transform:matrix(0.317953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317953,0.000000,0.000000,0.250000,0,0);}
.m88_c00030{transform:matrix(0.318090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318090,0.000000,0.000000,0.250000,0,0);}
.m8b_c00030{transform:matrix(0.318775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318775,0.000000,0.000000,0.250000,0,0);}
.m94_c00030{transform:matrix(0.319095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319095,0.000000,0.000000,0.250000,0,0);}
.m45_c00030{transform:matrix(0.319566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319566,0.000000,0.000000,0.250000,0,0);}
.m77_c00030{transform:matrix(0.320819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320819,0.000000,0.000000,0.250000,0,0);}
.m1e_c00030{transform:matrix(0.321107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321107,0.000000,0.000000,0.250000,0,0);}
.m57_c00030{transform:matrix(0.321378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321378,0.000000,0.000000,0.250000,0,0);}
.m96_c00030{transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);}
.m70_c00030{transform:matrix(0.322037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322037,0.000000,0.000000,0.250000,0,0);}
.m84_c00030{transform:matrix(0.322194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322194,0.000000,0.000000,0.250000,0,0);}
.m1d_c00030{transform:matrix(0.322830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322830,0.000000,0.000000,0.250000,0,0);}
.m16_c00030{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.m79_c00030{transform:matrix(0.324518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324518,0.000000,0.000000,0.250000,0,0);}
.m91_c00030{transform:matrix(0.324784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324784,0.000000,0.000000,0.250000,0,0);}
.m4e_c00030{transform:matrix(0.326667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326667,0.000000,0.000000,0.250000,0,0);}
.m14_c00030{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.m74_c00030{transform:matrix(0.330139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330139,0.000000,0.000000,0.250000,0,0);}
.m40_c00030{transform:matrix(0.330860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330860,0.000000,0.000000,0.250000,0,0);}
.m98_c00030{transform:matrix(0.331590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331590,0.000000,0.000000,0.250000,0,0);}
.m26_c00030{transform:matrix(0.333551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333551,0.000000,0.000000,0.250000,0,0);}
.m3f_c00030{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m12_c00030{transform:matrix(0.340162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340162,0.000000,0.000000,0.250000,0,0);}
.m23_c00030{transform:matrix(0.340828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340828,0.000000,0.000000,0.250000,0,0);}
.m24_c00030{transform:matrix(0.342883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342883,0.000000,0.000000,0.250000,0,0);}
.ma_c00030{transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);}
.m62_c00030{transform:matrix(0.347328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347328,0.000000,0.000000,0.250000,0,0);}
.m8e_c00030{transform:matrix(0.348658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348658,0.000000,0.000000,0.250000,0,0);}
.m49_c00030{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m19_c00030{transform:matrix(0.359351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359351,0.000000,0.000000,0.250000,0,0);}
.m5f_c00030{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m33_c00030{transform:matrix(0.368506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368506,0.000000,0.000000,0.250000,0,0);}
.m5d_c00030{transform:matrix(0.663467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.663467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.663467,0.000000,0.000000,0.250000,0,0);}
.v2_c00030{vertical-align:-51.341400px;}
.v0_c00030{vertical-align:0.000000px;}
.v1_c00030{vertical-align:22.809600px;}
.ls5_c00030{letter-spacing:-4.379767px;}
.ls12_c00030{letter-spacing:-2.744280px;}
.ls17_c00030{letter-spacing:-2.414966px;}
.ls16_c00030{letter-spacing:-1.787702px;}
.lsa_c00030{letter-spacing:-1.372140px;}
.ls11_c00030{letter-spacing:-1.058508px;}
.ls14_c00030{letter-spacing:-0.940896px;}
.ls18_c00030{letter-spacing:-0.109771px;}
.ls1_c00030{letter-spacing:0.000000px;}
.ls13_c00030{letter-spacing:0.517493px;}
.ls10_c00030{letter-spacing:0.722710px;}
.lsf_c00030{letter-spacing:1.254528px;}
.lsc_c00030{letter-spacing:1.960200px;}
.ls19_c00030{letter-spacing:2.626668px;}
.ls15_c00030{letter-spacing:2.697235px;}
.ls0_c00030{letter-spacing:2.759962px;}
.ls1b_c00030{letter-spacing:3.112798px;}
.ls7_c00030{letter-spacing:3.326400px;}
.ls1a_c00030{letter-spacing:3.544200px;}
.lsd_c00030{letter-spacing:3.700858px;}
.ls6_c00030{letter-spacing:3.801610px;}
.lsb_c00030{letter-spacing:3.826310px;}
.ls3_c00030{letter-spacing:3.920400px;}
.lse_c00030{letter-spacing:3.940200px;}
.ls1c_c00030{letter-spacing:4.059000px;}
.ls2_c00030{letter-spacing:4.296610px;}
.ls8_c00030{letter-spacing:4.474810px;}
.ls9_c00030{letter-spacing:59.875398px;}
.ls4_c00030{letter-spacing:62.726400px;}
.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:-19.602000px;}
.ws1_c00030{word-spacing:-18.661104px;}
.ws2_c00030{word-spacing:-17.814298px;}
.ws3_c00030{word-spacing:-17.187034px;}
.ws4_c00030{word-spacing:0.000000px;}
._9_c00030{margin-left:-13.878216px;}
._0_c00030{width:6.272640px;}
._a_c00030{width:8.875786px;}
._8_c00030{width:12.937320px;}
._4_c00030{width:18.097283px;}
._5_c00030{width:19.340591px;}
._1_c00030{width:22.267872px;}
._d_c00030{width:28.524830px;}
._b_c00030{width:35.912448px;}
._c_c00030{width:37.693260px;}
._2_c00030{width:85.280461px;}
._3_c00030{width:112.560901px;}
._6_c00030{width:127.672295px;}
._7_c00030{width:540.144667px;}
._e_c00030{width:1112.657040px;}
.fc0_c00030{color:transparent;}
.fse_c00030{font-size:14.454198px;}
.fs3_c00030{font-size:22.374000px;}
.fs0_c00030{font-size:27.720000px;}
.fs8_c00030{font-size:38.808000px;}
.fs14_c00030{font-size:45.144000px;}
.fsc_c00030{font-size:59.875398px;}
.fs4_c00030{font-size:62.726400px;}
.fs11_c00030{font-size:66.330000px;}
.fsa_c00030{font-size:66.528000px;}
.fs6_c00030{font-size:67.320000px;}
.fs12_c00030{font-size:70.884000px;}
.fs5_c00030{font-size:72.864000px;}
.fs9_c00030{font-size:76.032198px;}
.fs2_c00030{font-size:78.408000px;}
.fsd_c00030{font-size:78.804000px;}
.fs13_c00030{font-size:81.180000px;}
.fs1_c00030{font-size:85.932198px;}
.fsb_c00030{font-size:89.496198px;}
.fs10_c00030{font-size:107.712198px;}
.fs7_c00030{font-size:125.136198px;}
.fsf_c00030{font-size:140.976198px;}
.y0_c00030{bottom:0.000000px;}
.y23_c00030{bottom:67.271535px;}
.y1_c00030{bottom:76.500000px;}
.y22_c00030{bottom:81.171135px;}
.y21_c00030{bottom:143.184735px;}
.y20_c00030{bottom:206.980335px;}
.y1f_c00030{bottom:240.838335px;}
.y1e_c00030{bottom:272.557935px;}
.y1d_c00030{bottom:304.985385px;}
.y1c_c00030{bottom:337.066335px;}
.y1b_c00030{bottom:369.493785px;}
.y1a_c00030{bottom:408.702735px;}
.y19_c00030{bottom:434.363535px;}
.y18_c00030{bottom:466.439535px;}
.y17_c00030{bottom:498.510585px;}
.y16_c00030{bottom:525.953385px;}
.y15_c00030{bottom:530.947935px;}
.y13_c00030{bottom:563.011560px;}
.y14_c00030{bottom:563.018985px;}
.y2_c00030{bottom:572.998185px;}
.y12_c00030{bottom:595.099935px;}
.y11_c00030{bottom:627.883785px;}
.y10_c00030{bottom:659.964735px;}
.yf_c00030{bottom:659.973645px;}
.ye_c00030{bottom:694.179135px;}
.yd_c00030{bottom:728.393535px;}
.yc_c00030{bottom:795.040335px;}
.yb_c00030{bottom:814.993785px;}
.ya_c00030{bottom:824.621535px;}
.y9_c00030{bottom:826.403535px;}
.y8_c00030{bottom:846.000585px;}
.y7_c00030{bottom:858.835935px;}
.y6_c00030{bottom:891.981135px;}
.y5_c00030{bottom:915.147135px;}
.y4_c00030{bottom:924.769935px;}
.y3_c00030{bottom:1080.155385px;}
.h10_c00030{height:14.186005px;}
.h5_c00030{height:21.958857px;}
.h2_c00030{height:28.911094px;}
.he_c00030{height:39.877015px;}
.ha_c00030{height:40.475531px;}
.h6_c00030{height:41.775782px;}
.h15_c00030{height:47.083781px;}
.h8_c00030{height:66.070898px;}
.h12_c00030{height:69.180117px;}
.hc_c00030{height:69.386625px;}
.h13_c00030{height:69.568770px;}
.h7_c00030{height:71.512031px;}
.hb_c00030{height:74.621444px;}
.h4_c00030{height:76.953164px;}
.hf_c00030{height:77.341816px;}
.h14_c00030{height:79.673730px;}
.h3_c00030{height:84.337753px;}
.hd_c00030{height:87.835624px;}
.h9_c00030{height:122.814335px;}
.h11_c00030{height:147.033769px;}
.h1_c00030{height:1110.000000px;}
.h0_c00030{height:1263.000000px;}
.w1_c00030{width:739.500000px;}
.w0_c00030{width:892.500000px;}
.x0_c00030{left:0.000000px;}
.x2_c00030{left:44.604285px;}
.x1_c00030{left:76.500000px;}
.x48_c00030{left:79.590885px;}
.x35_c00030{left:81.788685px;}
.x4_c00030{left:83.620185px;}
.x53_c00030{left:93.643935px;}
.x69_c00030{left:103.058835px;}
.x5d_c00030{left:113.646885px;}
.xf_c00030{left:115.270485px;}
.x70_c00030{left:125.734785px;}
.x2e_c00030{left:135.189285px;}
.x3f_c00030{left:137.109885px;}
.x19_c00030{left:138.594885px;}
.x4e_c00030{left:147.024735px;}
.x36_c00030{left:159.612585px;}
.x5_c00030{left:161.755935px;}
.x61_c00030{left:169.943235px;}
.x73_c00030{left:171.314385px;}
.x37_c00030{left:180.432285px;}
.xe_c00030{left:181.838085px;}
.x22_c00030{left:192.921135px;}
.x10_c00030{left:194.559585px;}
.x66_c00030{left:202.915185px;}
.x6_c00030{left:204.375435px;}
.x6f_c00030{left:214.646685px;}
.x11_c00030{left:217.215735px;}
.x2d_c00030{left:218.378985px;}
.x38_c00030{left:225.076335px;}
.x58_c00030{left:226.145535px;}
.x40_c00030{left:236.248485px;}
.x7_c00030{left:239.337285px;}
.x49_c00030{left:247.618635px;}
.x6a_c00030{left:248.677935px;}
.x2f_c00030{left:257.840385px;}
.x54_c00030{left:269.764935px;}
.x55_c00030{left:281.140035px;}
.x6b_c00030{left:292.208235px;}
.x23_c00030{left:293.772435px;}
.x41_c00030{left:301.633035px;}
.x62_c00030{left:302.860635px;}
.x12_c00030{left:306.439485px;}
.x39_c00030{left:314.087235px;}
.x8_c00030{left:316.794885px;}
.x6c_c00030{left:324.373335px;}
.x1a_c00030{left:327.828435px;}
.x67_c00030{left:336.386985px;}
.x4a_c00030{left:337.406685px;}
.x3a_c00030{left:346.603785px;}
.x63_c00030{left:347.999685px;}
.x24_c00030{left:349.222335px;}
.x9_c00030{left:350.296485px;}
.x60_c00030{left:357.157185px;}
.x56_c00030{left:358.884735px;}
.x1b_c00030{left:371.338935px;}
.x4b_c00030{left:380.194485px;}
.x1c_c00030{left:381.506235px;}
.x13_c00030{left:382.966485px;}
.x42_c00030{left:391.990335px;}
.x75_c00030{left:395.658285px;}
.x30_c00030{left:403.023885px;}
.x5e_c00030{left:412.473435px;}
.x64_c00030{left:413.611935px;}
.x25_c00030{left:414.651435px;}
.x14_c00030{left:416.230485px;}
.x59_c00030{left:425.353335px;}
.x43_c00030{left:435.812685px;}
.x5b_c00030{left:440.134035px;}
.x31_c00030{left:447.598635px;}
.x26_c00030{left:449.251935px;}
.x6d_c00030{left:458.023335px;}
.x4f_c00030{left:469.210335px;}
.x3b_c00030{left:480.545835px;}
.x72_c00030{left:482.694135px;}
.x4c_c00030{left:491.396235px;}
.xa_c00030{left:496.727385px;}
.x68_c00030{left:502.276335px;}
.x1d_c00030{left:504.627585px;}
.x5f_c00030{left:508.330185px;}
.x32_c00030{left:513.171285px;}
.x27_c00030{left:515.309685px;}
.x5c_c00030{left:522.591135px;}
.x65_c00030{left:524.209785px;}
.x15_c00030{left:526.892685px;}
.x4d_c00030{left:535.629435px;}
.xb_c00030{left:538.084635px;}
.x33_c00030{left:546.474885px;}
.x28_c00030{left:547.885635px;}
.x16_c00030{left:548.954835px;}
.x50_c00030{left:558.013335px;}
.x1e_c00030{left:560.889285px;}
.x71_c00030{left:568.408335px;}
.x74_c00030{left:569.482485px;}
.x3c_c00030{left:580.520985px;}
.x57_c00030{left:591.866385px;}
.xc_c00030{left:594.697785px;}
.x44_c00030{left:601.919835px;}
.x6e_c00030{left:613.111785px;}
.x29_c00030{left:615.260085px;}
.x3d_c00030{left:624.402735px;}
.xd_c00030{left:626.679735px;}
.x3e_c00030{left:635.386785px;}
.x17_c00030{left:637.926135px;}
.x45_c00030{left:647.093535px;}
.x18_c00030{left:649.291335px;}
.x51_c00030{left:657.473685px;}
.x3_c00030{left:659.943735px;}
.x34_c00030{left:668.442885px;}
.x1f_c00030{left:670.700085px;}
.x46_c00030{left:679.798185px;}
.x2a_c00030{left:682.114785px;}
.x52_c00030{left:690.747585px;}
.x2b_c00030{left:693.163185px;}
.x21_c00030{left:698.434935px;}
.x2c_c00030{left:702.389985px;}
.x20_c00030{left:705.226335px;}
.x5a_c00030{left:723.773985px;}
.x47_c00030{left:735.178785px;}
@media print{
.v2_c00030{vertical-align:-45.636800pt;}
.v0_c00030{vertical-align:0.000000pt;}
.v1_c00030{vertical-align:20.275200pt;}
.ls5_c00030{letter-spacing:-3.893126pt;}
.ls12_c00030{letter-spacing:-2.439360pt;}
.ls17_c00030{letter-spacing:-2.146637pt;}
.ls16_c00030{letter-spacing:-1.589069pt;}
.lsa_c00030{letter-spacing:-1.219680pt;}
.ls11_c00030{letter-spacing:-0.940896pt;}
.ls14_c00030{letter-spacing:-0.836352pt;}
.ls18_c00030{letter-spacing:-0.097574pt;}
.ls1_c00030{letter-spacing:0.000000pt;}
.ls13_c00030{letter-spacing:0.459994pt;}
.ls10_c00030{letter-spacing:0.642409pt;}
.lsf_c00030{letter-spacing:1.115136pt;}
.lsc_c00030{letter-spacing:1.742400pt;}
.ls19_c00030{letter-spacing:2.334816pt;}
.ls15_c00030{letter-spacing:2.397542pt;}
.ls0_c00030{letter-spacing:2.453299pt;}
.ls1b_c00030{letter-spacing:2.766931pt;}
.ls7_c00030{letter-spacing:2.956800pt;}
.ls1a_c00030{letter-spacing:3.150400pt;}
.lsd_c00030{letter-spacing:3.289651pt;}
.ls6_c00030{letter-spacing:3.379209pt;}
.lsb_c00030{letter-spacing:3.401165pt;}
.ls3_c00030{letter-spacing:3.484800pt;}
.lse_c00030{letter-spacing:3.502400pt;}
.ls1c_c00030{letter-spacing:3.608000pt;}
.ls2_c00030{letter-spacing:3.819209pt;}
.ls8_c00030{letter-spacing:3.977609pt;}
.ls9_c00030{letter-spacing:53.222576pt;}
.ls4_c00030{letter-spacing:55.756800pt;}
.ws0_c00030{word-spacing:-17.424000pt;}
.ws1_c00030{word-spacing:-16.587648pt;}
.ws2_c00030{word-spacing:-15.834931pt;}
.ws3_c00030{word-spacing:-15.277363pt;}
.ws4_c00030{word-spacing:0.000000pt;}
._9_c00030{margin-left:-12.336192pt;}
._0_c00030{width:5.575680pt;}
._a_c00030{width:7.889587pt;}
._8_c00030{width:11.499840pt;}
._4_c00030{width:16.086473pt;}
._5_c00030{width:17.191636pt;}
._1_c00030{width:19.793664pt;}
._d_c00030{width:25.355405pt;}
._b_c00030{width:31.922176pt;}
._c_c00030{width:33.505120pt;}
._2_c00030{width:75.804854pt;}
._3_c00030{width:100.054134pt;}
._6_c00030{width:113.486484pt;}
._7_c00030{width:480.128593pt;}
._e_c00030{width:989.028480pt;}
.fse_c00030{font-size:12.848176pt;}
.fs3_c00030{font-size:19.888000pt;}
.fs0_c00030{font-size:24.640000pt;}
.fs8_c00030{font-size:34.496000pt;}
.fs14_c00030{font-size:40.128000pt;}
.fsc_c00030{font-size:53.222576pt;}
.fs4_c00030{font-size:55.756800pt;}
.fs11_c00030{font-size:58.960000pt;}
.fsa_c00030{font-size:59.136000pt;}
.fs6_c00030{font-size:59.840000pt;}
.fs12_c00030{font-size:63.008000pt;}
.fs5_c00030{font-size:64.768000pt;}
.fs9_c00030{font-size:67.584176pt;}
.fs2_c00030{font-size:69.696000pt;}
.fsd_c00030{font-size:70.048000pt;}
.fs13_c00030{font-size:72.160000pt;}
.fs1_c00030{font-size:76.384176pt;}
.fsb_c00030{font-size:79.552176pt;}
.fs10_c00030{font-size:95.744176pt;}
.fs7_c00030{font-size:111.232176pt;}
.fsf_c00030{font-size:125.312176pt;}
.y0_c00030{bottom:0.000000pt;}
.y23_c00030{bottom:59.796920pt;}
.y1_c00030{bottom:68.000000pt;}
.y22_c00030{bottom:72.152120pt;}
.y21_c00030{bottom:127.275320pt;}
.y20_c00030{bottom:183.982520pt;}
.y1f_c00030{bottom:214.078520pt;}
.y1e_c00030{bottom:242.273720pt;}
.y1d_c00030{bottom:271.098120pt;}
.y1c_c00030{bottom:299.614520pt;}
.y1b_c00030{bottom:328.438920pt;}
.y1a_c00030{bottom:363.291320pt;}
.y19_c00030{bottom:386.100920pt;}
.y18_c00030{bottom:414.612920pt;}
.y17_c00030{bottom:443.120520pt;}
.y16_c00030{bottom:467.514120pt;}
.y15_c00030{bottom:471.953720pt;}
.y13_c00030{bottom:500.454720pt;}
.y14_c00030{bottom:500.461320pt;}
.y2_c00030{bottom:509.331720pt;}
.y12_c00030{bottom:528.977720pt;}
.y11_c00030{bottom:558.118920pt;}
.y10_c00030{bottom:586.635320pt;}
.yf_c00030{bottom:586.643240pt;}
.ye_c00030{bottom:617.048120pt;}
.yd_c00030{bottom:647.460920pt;}
.yc_c00030{bottom:706.702520pt;}
.yb_c00030{bottom:724.438920pt;}
.ya_c00030{bottom:732.996920pt;}
.y9_c00030{bottom:734.580920pt;}
.y8_c00030{bottom:752.000520pt;}
.y7_c00030{bottom:763.409720pt;}
.y6_c00030{bottom:792.872120pt;}
.y5_c00030{bottom:813.464120pt;}
.y4_c00030{bottom:822.017720pt;}
.y3_c00030{bottom:960.138120pt;}
.h10_c00030{height:12.609782pt;}
.h5_c00030{height:19.518984pt;}
.h2_c00030{height:25.698750pt;}
.he_c00030{height:35.446236pt;}
.ha_c00030{height:35.978250pt;}
.h6_c00030{height:37.134029pt;}
.h15_c00030{height:41.852250pt;}
.h8_c00030{height:58.729688pt;}
.h12_c00030{height:61.493438pt;}
.hc_c00030{height:61.677000pt;}
.h13_c00030{height:61.838906pt;}
.h7_c00030{height:63.566250pt;}
.hb_c00030{height:66.330173pt;}
.h4_c00030{height:68.402813pt;}
.hf_c00030{height:68.748281pt;}
.h14_c00030{height:70.821094pt;}
.h3_c00030{height:74.966891pt;}
.hd_c00030{height:78.076110pt;}
.h9_c00030{height:109.168298pt;}
.h11_c00030{height:130.696684pt;}
.h1_c00030{height:986.666667pt;}
.h0_c00030{height:1122.666667pt;}
.w1_c00030{width:657.333333pt;}
.w0_c00030{width:793.333333pt;}
.x0_c00030{left:0.000000pt;}
.x2_c00030{left:39.648253pt;}
.x1_c00030{left:68.000000pt;}
.x48_c00030{left:70.747453pt;}
.x35_c00030{left:72.701053pt;}
.x4_c00030{left:74.329053pt;}
.x53_c00030{left:83.239053pt;}
.x69_c00030{left:91.607853pt;}
.x5d_c00030{left:101.019453pt;}
.xf_c00030{left:102.462653pt;}
.x70_c00030{left:111.764253pt;}
.x2e_c00030{left:120.168253pt;}
.x3f_c00030{left:121.875453pt;}
.x19_c00030{left:123.195453pt;}
.x4e_c00030{left:130.688653pt;}
.x36_c00030{left:141.877853pt;}
.x5_c00030{left:143.783053pt;}
.x61_c00030{left:151.060653pt;}
.x73_c00030{left:152.279453pt;}
.x37_c00030{left:160.384253pt;}
.xe_c00030{left:161.633853pt;}
.x22_c00030{left:171.485453pt;}
.x10_c00030{left:172.941853pt;}
.x66_c00030{left:180.369053pt;}
.x6_c00030{left:181.667053pt;}
.x6f_c00030{left:190.797053pt;}
.x11_c00030{left:193.080653pt;}
.x2d_c00030{left:194.114653pt;}
.x38_c00030{left:200.067853pt;}
.x58_c00030{left:201.018253pt;}
.x40_c00030{left:209.998653pt;}
.x7_c00030{left:212.744253pt;}
.x49_c00030{left:220.105453pt;}
.x6a_c00030{left:221.047053pt;}
.x2f_c00030{left:229.191453pt;}
.x54_c00030{left:239.791053pt;}
.x55_c00030{left:249.902253pt;}
.x6b_c00030{left:259.740653pt;}
.x23_c00030{left:261.131053pt;}
.x41_c00030{left:268.118253pt;}
.x62_c00030{left:269.209453pt;}
.x12_c00030{left:272.390653pt;}
.x39_c00030{left:279.188653pt;}
.x8_c00030{left:281.595453pt;}
.x6c_c00030{left:288.331853pt;}
.x1a_c00030{left:291.403053pt;}
.x67_c00030{left:299.010653pt;}
.x4a_c00030{left:299.917053pt;}
.x3a_c00030{left:308.092253pt;}
.x63_c00030{left:309.333053pt;}
.x24_c00030{left:310.419853pt;}
.x9_c00030{left:311.374653pt;}
.x60_c00030{left:317.473053pt;}
.x56_c00030{left:319.008653pt;}
.x1b_c00030{left:330.079053pt;}
.x4b_c00030{left:337.950653pt;}
.x1c_c00030{left:339.116653pt;}
.x13_c00030{left:340.414653pt;}
.x42_c00030{left:348.435853pt;}
.x75_c00030{left:351.696253pt;}
.x30_c00030{left:358.243453pt;}
.x5e_c00030{left:366.643053pt;}
.x64_c00030{left:367.655053pt;}
.x25_c00030{left:368.579053pt;}
.x14_c00030{left:369.982653pt;}
.x59_c00030{left:378.091853pt;}
.x43_c00030{left:387.389053pt;}
.x5b_c00030{left:391.230253pt;}
.x31_c00030{left:397.865453pt;}
.x26_c00030{left:399.335053pt;}
.x6d_c00030{left:407.131853pt;}
.x4f_c00030{left:417.075853pt;}
.x3b_c00030{left:427.151853pt;}
.x72_c00030{left:429.061453pt;}
.x4c_c00030{left:436.796653pt;}
.xa_c00030{left:441.535453pt;}
.x68_c00030{left:446.467853pt;}
.x1d_c00030{left:448.557853pt;}
.x5f_c00030{left:451.849053pt;}
.x32_c00030{left:456.152253pt;}
.x27_c00030{left:458.053053pt;}
.x5c_c00030{left:464.525453pt;}
.x65_c00030{left:465.964253pt;}
.x15_c00030{left:468.349053pt;}
.x4d_c00030{left:476.115053pt;}
.xb_c00030{left:478.297453pt;}
.x33_c00030{left:485.755453pt;}
.x28_c00030{left:487.009453pt;}
.x16_c00030{left:487.959853pt;}
.x50_c00030{left:496.011853pt;}
.x1e_c00030{left:498.568253pt;}
.x71_c00030{left:505.251853pt;}
.x74_c00030{left:506.206653pt;}
.x3c_c00030{left:516.018653pt;}
.x57_c00030{left:526.103453pt;}
.xc_c00030{left:528.620253pt;}
.x44_c00030{left:535.039853pt;}
.x6e_c00030{left:544.988253pt;}
.x29_c00030{left:546.897853pt;}
.x3d_c00030{left:555.024653pt;}
.xd_c00030{left:557.048653pt;}
.x3e_c00030{left:564.788253pt;}
.x17_c00030{left:567.045453pt;}
.x45_c00030{left:575.194253pt;}
.x18_c00030{left:577.147853pt;}
.x51_c00030{left:584.421053pt;}
.x3_c00030{left:586.616653pt;}
.x34_c00030{left:594.171453pt;}
.x1f_c00030{left:596.177853pt;}
.x46_c00030{left:604.265053pt;}
.x2a_c00030{left:606.324253pt;}
.x52_c00030{left:613.997853pt;}
.x2b_c00030{left:616.145053pt;}
.x21_c00030{left:620.831053pt;}
.x2c_c00030{left:624.346653pt;}
.x20_c00030{left:626.867853pt;}
.x5a_c00030{left:643.354653pt;}
.x47_c00030{left:653.492253pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6c12cfbc214fd2bcf5fbcffa.woff2')format("woff");}.ff1_c00031{font-family:ff1_c00031;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00031;src:url('chunks/assets/font_386291c4d2d23bfa4ffe5ddc.woff2')format("woff");}.ff2_c00031{font-family:ff2_c00031;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00031;src:url('chunks/assets/font_676267abd6f51c589f376231.woff2')format("woff");}.ff3_c00031{font-family:ff3_c00031;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00031;src:url('chunks/assets/font_e67972dd1298c8097c5f273a.woff2')format("woff");}.ff4_c00031{font-family:ff4_c00031;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m97_c00031{transform:matrix(0.182418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182418,0.000000,0.000000,0.250000,0,0);}
.m66_c00031{transform:matrix(0.183594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183594,0.000000,0.000000,0.250000,0,0);}
.m84_c00031{transform:matrix(0.206757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206757,0.000000,0.000000,0.250000,0,0);}
.m91_c00031{transform:matrix(0.211806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211806,0.000000,0.000000,0.250000,0,0);}
.m62_c00031{transform:matrix(0.244643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244643,0.000000,0.000000,0.250000,0,0);}
.m3a_c00031{transform:matrix(0.246148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246148,0.000000,0.000000,0.250000,0,0);}
.m0_c00031{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00031{transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);}
.m39_c00031{transform:matrix(0.251362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251362,0.000000,0.000000,0.250000,0,0);}
.m63_c00031{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.m56_c00031{transform:matrix(0.252169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252169,0.000000,0.000000,0.250000,0,0);}
.m34_c00031{transform:matrix(0.252620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252620,0.000000,0.000000,0.250000,0,0);}
.m45_c00031{transform:matrix(0.255383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255383,0.000000,0.000000,0.250000,0,0);}
.m1c_c00031{transform:matrix(0.258059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258059,0.000000,0.000000,0.250000,0,0);}
.m5f_c00031{transform:matrix(0.259032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259032,0.000000,0.000000,0.250000,0,0);}
.m14_c00031{transform:matrix(0.259662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259662,0.000000,0.000000,0.250000,0,0);}
.m8_c00031{transform:matrix(0.259985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259985,0.000000,0.000000,0.250000,0,0);}
.m27_c00031{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m81_c00031{transform:matrix(0.261993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261993,0.000000,0.000000,0.250000,0,0);}
.mb_c00031{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m65_c00031{transform:matrix(0.263875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263875,0.000000,0.000000,0.250000,0,0);}
.m5e_c00031{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m86_c00031{transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);}
.m8b_c00031{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m38_c00031{transform:matrix(0.266242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266242,0.000000,0.000000,0.250000,0,0);}
.m4f_c00031{transform:matrix(0.266852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266852,0.000000,0.000000,0.250000,0,0);}
.m61_c00031{transform:matrix(0.266949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266949,0.000000,0.000000,0.250000,0,0);}
.m1a_c00031{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m1f_c00031{transform:matrix(0.268475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268475,0.000000,0.000000,0.250000,0,0);}
.m6b_c00031{transform:matrix(0.269049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269049,0.000000,0.000000,0.250000,0,0);}
.m3c_c00031{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.me_c00031{transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);}
.m8e_c00031{transform:matrix(0.272210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272210,0.000000,0.000000,0.250000,0,0);}
.m35_c00031{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m15_c00031{transform:matrix(0.272591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272591,0.000000,0.000000,0.250000,0,0);}
.m1_c00031{transform:matrix(0.272864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272864,0.000000,0.000000,0.250000,0,0);}
.m53_c00031{transform:matrix(0.273832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273832,0.000000,0.000000,0.250000,0,0);}
.m16_c00031{transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);}
.m22_c00031{transform:matrix(0.274588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274588,0.000000,0.000000,0.250000,0,0);}
.m3b_c00031{transform:matrix(0.274756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274756,0.000000,0.000000,0.250000,0,0);}
.m5d_c00031{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m44_c00031{transform:matrix(0.278227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278227,0.000000,0.000000,0.250000,0,0);}
.m79_c00031{transform:matrix(0.278765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278765,0.000000,0.000000,0.250000,0,0);}
.m50_c00031{transform:matrix(0.279136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279136,0.000000,0.000000,0.250000,0,0);}
.m2d_c00031{transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);}
.m46_c00031{transform:matrix(0.279610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279610,0.000000,0.000000,0.250000,0,0);}
.m83_c00031{transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);}
.m75_c00031{transform:matrix(0.280119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280119,0.000000,0.000000,0.250000,0,0);}
.m2c_c00031{transform:matrix(0.280735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280735,0.000000,0.000000,0.250000,0,0);}
.md_c00031{transform:matrix(0.281519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281519,0.000000,0.000000,0.250000,0,0);}
.m36_c00031{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.m82_c00031{transform:matrix(0.282017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282017,0.000000,0.000000,0.250000,0,0);}
.m76_c00031{transform:matrix(0.282254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282254,0.000000,0.000000,0.250000,0,0);}
.m6e_c00031{transform:matrix(0.282617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282617,0.000000,0.000000,0.250000,0,0);}
.m8d_c00031{transform:matrix(0.282732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282732,0.000000,0.000000,0.250000,0,0);}
.m5c_c00031{transform:matrix(0.284561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284561,0.000000,0.000000,0.250000,0,0);}
.m78_c00031{transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);}
.m55_c00031{transform:matrix(0.286403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286403,0.000000,0.000000,0.250000,0,0);}
.m59_c00031{transform:matrix(0.286845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286845,0.000000,0.000000,0.250000,0,0);}
.m95_c00031{transform:matrix(0.287715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287715,0.000000,0.000000,0.250000,0,0);}
.m31_c00031{transform:matrix(0.288451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288451,0.000000,0.000000,0.250000,0,0);}
.m30_c00031{transform:matrix(0.290272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290272,0.000000,0.000000,0.250000,0,0);}
.m37_c00031{transform:matrix(0.290332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290332,0.000000,0.000000,0.250000,0,0);}
.m25_c00031{transform:matrix(0.290341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290341,0.000000,0.000000,0.250000,0,0);}
.m92_c00031{transform:matrix(0.290778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290778,0.000000,0.000000,0.250000,0,0);}
.m7d_c00031{transform:matrix(0.290783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290783,0.000000,0.000000,0.250000,0,0);}
.m3f_c00031{transform:matrix(0.291833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291833,0.000000,0.000000,0.250000,0,0);}
.m12_c00031{transform:matrix(0.292222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292222,0.000000,0.000000,0.250000,0,0);}
.m8a_c00031{transform:matrix(0.292328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292328,0.000000,0.000000,0.250000,0,0);}
.m93_c00031{transform:matrix(0.292506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292506,0.000000,0.000000,0.250000,0,0);}
.m48_c00031{transform:matrix(0.292685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292685,0.000000,0.000000,0.250000,0,0);}
.m2_c00031{transform:matrix(0.292839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292839,0.000000,0.000000,0.250000,0,0);}
.m8f_c00031{transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);}
.m26_c00031{transform:matrix(0.293770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293770,0.000000,0.000000,0.250000,0,0);}
.m7b_c00031{transform:matrix(0.294667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294667,0.000000,0.000000,0.250000,0,0);}
.m5b_c00031{transform:matrix(0.294997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294997,0.000000,0.000000,0.250000,0,0);}
.m1e_c00031{transform:matrix(0.295586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295586,0.000000,0.000000,0.250000,0,0);}
.m9_c00031{transform:matrix(0.295598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295598,0.000000,0.000000,0.250000,0,0);}
.m68_c00031{transform:matrix(0.296448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296448,0.000000,0.000000,0.250000,0,0);}
.m67_c00031{transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);}
.m2a_c00031{transform:matrix(0.298438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298438,0.000000,0.000000,0.250000,0,0);}
.m6c_c00031{transform:matrix(0.298824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298824,0.000000,0.000000,0.250000,0,0);}
.m17_c00031{transform:matrix(0.300052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300052,0.000000,0.000000,0.250000,0,0);}
.m77_c00031{transform:matrix(0.300888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300888,0.000000,0.000000,0.250000,0,0);}
.m70_c00031{transform:matrix(0.301042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301042,0.000000,0.000000,0.250000,0,0);}
.m20_c00031{transform:matrix(0.301143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301143,0.000000,0.000000,0.250000,0,0);}
.m73_c00031{transform:matrix(0.301814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301814,0.000000,0.000000,0.250000,0,0);}
.m6f_c00031{transform:matrix(0.302156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302156,0.000000,0.000000,0.250000,0,0);}
.m5_c00031{transform:matrix(0.302691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302691,0.000000,0.000000,0.250000,0,0);}
.m7c_c00031{transform:matrix(0.303086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303086,0.000000,0.000000,0.250000,0,0);}
.m52_c00031{transform:matrix(0.303526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303526,0.000000,0.000000,0.250000,0,0);}
.m80_c00031{transform:matrix(0.303636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303636,0.000000,0.000000,0.250000,0,0);}
.m64_c00031{transform:matrix(0.304348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304348,0.000000,0.000000,0.250000,0,0);}
.mc_c00031{transform:matrix(0.305242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305242,0.000000,0.000000,0.250000,0,0);}
.m7_c00031{transform:matrix(0.305585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305585,0.000000,0.000000,0.250000,0,0);}
.m41_c00031{transform:matrix(0.305640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305640,0.000000,0.000000,0.250000,0,0);}
.ma_c00031{transform:matrix(0.307282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307282,0.000000,0.000000,0.250000,0,0);}
.m19_c00031{transform:matrix(0.307345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307345,0.000000,0.000000,0.250000,0,0);}
.m6d_c00031{transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);}
.m4c_c00031{transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);}
.m87_c00031{transform:matrix(0.308140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308140,0.000000,0.000000,0.250000,0,0);}
.m74_c00031{transform:matrix(0.308174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308174,0.000000,0.000000,0.250000,0,0);}
.m7f_c00031{transform:matrix(0.309133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309133,0.000000,0.000000,0.250000,0,0);}
.m69_c00031{transform:matrix(0.309513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309513,0.000000,0.000000,0.250000,0,0);}
.m32_c00031{transform:matrix(0.310277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310277,0.000000,0.000000,0.250000,0,0);}
.m96_c00031{transform:matrix(0.310363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310363,0.000000,0.000000,0.250000,0,0);}
.m3e_c00031{transform:matrix(0.311442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311442,0.000000,0.000000,0.250000,0,0);}
.m3d_c00031{transform:matrix(0.311501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311501,0.000000,0.000000,0.250000,0,0);}
.m90_c00031{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.m6a_c00031{transform:matrix(0.312595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312595,0.000000,0.000000,0.250000,0,0);}
.m47_c00031{transform:matrix(0.312688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312688,0.000000,0.000000,0.250000,0,0);}
.m29_c00031{transform:matrix(0.313090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313090,0.000000,0.000000,0.250000,0,0);}
.m5a_c00031{transform:matrix(0.313369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313369,0.000000,0.000000,0.250000,0,0);}
.m85_c00031{transform:matrix(0.314052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314052,0.000000,0.000000,0.250000,0,0);}
.m51_c00031{transform:matrix(0.314172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314172,0.000000,0.000000,0.250000,0,0);}
.m4_c00031{transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);}
.m60_c00031{transform:matrix(0.316742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316742,0.000000,0.000000,0.250000,0,0);}
.m23_c00031{transform:matrix(0.318605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318605,0.000000,0.000000,0.250000,0,0);}
.m21_c00031{transform:matrix(0.319103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319103,0.000000,0.000000,0.250000,0,0);}
.m89_c00031{transform:matrix(0.322630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322630,0.000000,0.000000,0.250000,0,0);}
.m2f_c00031{transform:matrix(0.322675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322675,0.000000,0.000000,0.250000,0,0);}
.m43_c00031{transform:matrix(0.322864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322864,0.000000,0.000000,0.250000,0,0);}
.m10_c00031{transform:matrix(0.324242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324242,0.000000,0.000000,0.250000,0,0);}
.m40_c00031{transform:matrix(0.324775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324775,0.000000,0.000000,0.250000,0,0);}
.m2b_c00031{transform:matrix(0.324828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324828,0.000000,0.000000,0.250000,0,0);}
.m42_c00031{transform:matrix(0.325086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325086,0.000000,0.000000,0.250000,0,0);}
.m8c_c00031{transform:matrix(0.325523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325523,0.000000,0.000000,0.250000,0,0);}
.m88_c00031{transform:matrix(0.326271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326271,0.000000,0.000000,0.250000,0,0);}
.m11_c00031{transform:matrix(0.326944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326944,0.000000,0.000000,0.250000,0,0);}
.m54_c00031{transform:matrix(0.327823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327823,0.000000,0.000000,0.250000,0,0);}
.m13_c00031{transform:matrix(0.328406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328406,0.000000,0.000000,0.250000,0,0);}
.m4b_c00031{transform:matrix(0.330145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330145,0.000000,0.000000,0.250000,0,0);}
.m3_c00031{transform:matrix(0.331101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331101,0.000000,0.000000,0.250000,0,0);}
.m18_c00031{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m4a_c00031{transform:matrix(0.333376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333376,0.000000,0.000000,0.250000,0,0);}
.m7e_c00031{transform:matrix(0.335394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335394,0.000000,0.000000,0.250000,0,0);}
.mf_c00031{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m94_c00031{transform:matrix(0.339343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339343,0.000000,0.000000,0.250000,0,0);}
.m4e_c00031{transform:matrix(0.340838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340838,0.000000,0.000000,0.250000,0,0);}
.m6_c00031{transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);}
.m72_c00031{transform:matrix(0.345977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345977,0.000000,0.000000,0.250000,0,0);}
.m7a_c00031{transform:matrix(0.346728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346728,0.000000,0.000000,0.250000,0,0);}
.m4d_c00031{transform:matrix(0.348776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348776,0.000000,0.000000,0.250000,0,0);}
.m1b_c00031{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m24_c00031{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m28_c00031{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m58_c00031{transform:matrix(0.363431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363431,0.000000,0.000000,0.250000,0,0);}
.m2e_c00031{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);}
.m49_c00031{transform:matrix(0.369446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369446,0.000000,0.000000,0.250000,0,0);}
.m71_c00031{transform:matrix(0.382326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382326,0.000000,0.000000,0.250000,0,0);}
.m33_c00031{transform:matrix(0.416528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416528,0.000000,0.000000,0.250000,0,0);}
.m57_c00031{transform:matrix(0.440068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440068,0.000000,0.000000,0.250000,0,0);}
.v2_c00031{vertical-align:-35.640000px;}
.v1_c00031{vertical-align:-32.788800px;}
.v0_c00031{vertical-align:0.000000px;}
.ls7_c00031{letter-spacing:-2.744280px;}
.ls12_c00031{letter-spacing:-2.688840px;}
.ls3_c00031{letter-spacing:-1.897474px;}
.ls6_c00031{letter-spacing:-1.419185px;}
.ls4_c00031{letter-spacing:-0.290110px;}
.ls0_c00031{letter-spacing:0.000000px;}
.lsf_c00031{letter-spacing:0.533174px;}
.lsc_c00031{letter-spacing:2.132698px;}
.ls9_c00031{letter-spacing:2.383603px;}
.ls8_c00031{letter-spacing:3.606768px;}
.lsd_c00031{letter-spacing:3.623400px;}
.ls10_c00031{letter-spacing:3.755743px;}
.ls2_c00031{letter-spacing:3.920400px;}
.ls1_c00031{letter-spacing:4.078810px;}
.ls5_c00031{letter-spacing:4.544110px;}
.lsa_c00031{letter-spacing:49.896198px;}
.ls11_c00031{letter-spacing:51.321798px;}
.lse_c00031{letter-spacing:52.747398px;}
.lsb_c00031{letter-spacing:57.024198px;}
.sc__c00031{text-shadow:none;}
.sc0_c00031{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00031{-webkit-text-stroke:0px transparent;}
.sc0_c00031{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00031{word-spacing:0.000000px;}
._0_c00031{width:22.267476px;}
._1_c00031{width:495.095040px;}
._2_c00031{width:809.406576px;}
.fc0_c00031{color:transparent;}
.fs14_c00031{font-size:21.780000px;}
.fsc_c00031{font-size:22.176000px;}
.fs4_c00031{font-size:27.720000px;}
.fse_c00031{font-size:31.680000px;}
.fs13_c00031{font-size:33.264000px;}
.fs6_c00031{font-size:38.808000px;}
.fs0_c00031{font-size:39.204000px;}
.fs7_c00031{font-size:39.600000px;}
.fs1_c00031{font-size:45.144000px;}
.fsb_c00031{font-size:49.896198px;}
.fs16_c00031{font-size:50.292000px;}
.fs9_c00031{font-size:50.688000px;}
.fs12_c00031{font-size:51.321798px;}
.fs10_c00031{font-size:52.747398px;}
.fsd_c00031{font-size:57.024198px;}
.fs11_c00031{font-size:72.072198px;}
.fsf_c00031{font-size:72.468000px;}
.fs15_c00031{font-size:76.824000px;}
.fs3_c00031{font-size:78.408000px;}
.fsa_c00031{font-size:78.804000px;}
.fs2_c00031{font-size:81.576198px;}
.fs8_c00031{font-size:86.724000px;}
.fs5_c00031{font-size:90.882198px;}
.y0_c00031{bottom:0.000000px;}
.y28_c00031{bottom:57.643785px;}
.y1_c00031{bottom:76.500000px;}
.y27_c00031{bottom:105.044985px;}
.y26_c00031{bottom:128.215935px;}
.y25_c00031{bottom:154.945935px;}
.y24_c00031{bottom:167.419935px;}
.y23_c00031{bottom:176.329935px;}
.y22_c00031{bottom:185.952735px;}
.y21_c00031{bottom:209.118735px;}
.y20_c00031{bottom:219.454335px;}
.y1f_c00031{bottom:234.061785px;}
.y1e_c00031{bottom:251.881785px;}
.y1d_c00031{bottom:283.957785px;}
.y1c_c00031{bottom:348.466185px;}
.y1b_c00031{bottom:380.542185px;}
.y1a_c00031{bottom:404.782335px;}
.y19_c00031{bottom:412.979535px;}
.y18_c00031{bottom:413.335935px;}
.y17_c00031{bottom:428.304735px;}
.y16_c00031{bottom:445.763385px;}
.y15_c00031{bottom:478.552185px;}
.y14_c00031{bottom:511.340985px;}
.y13_c00031{bottom:543.065535px;}
.y12_c00031{bottom:575.492985px;}
.y11_c00031{bottom:595.807785px;}
.y10_c00031{bottom:607.568985px;}
.yf_c00031{bottom:672.082335px;}
.ye_c00031{bottom:704.509785px;}
.yd_c00031{bottom:736.942185px;}
.yc_c00031{bottom:754.762185px;}
.yb_c00031{bottom:762.246585px;}
.y2_c00031{bottom:768.305385px;}
.ya_c00031{bottom:770.448735px;}
.y9_c00031{bottom:802.519785px;}
.y8_c00031{bottom:834.600735px;}
.y7_c00031{bottom:899.465535px;}
.y6_c00031{bottom:911.226735px;}
.y5_c00031{bottom:931.892985px;}
.y4_c00031{bottom:1073.740185px;}
.y3_c00031{bottom:1074.452985px;}
.h16_c00031{height:22.715859px;}
.he_c00031{height:23.128875px;}
.h6_c00031{height:28.911094px;}
.h10_c00031{height:33.041250px;}
.hd_c00031{height:33.230868px;}
.h14_c00031{height:34.180317px;}
.h15_c00031{height:34.693313px;}
.h12_c00031{height:35.129767px;}
.hf_c00031{height:37.978116px;}
.h2_c00031{height:38.476582px;}
.h8_c00031{height:40.475531px;}
.h9_c00031{height:41.301563px;}
.h13_c00031{height:42.380250px;}
.h3_c00031{height:47.083781px;}
.hb_c00031{height:52.866000px;}
.h11_c00031{height:71.123379px;}
.h17_c00031{height:75.361043px;}
.h5_c00031{height:76.953164px;}
.hc_c00031{height:77.341816px;}
.h4_c00031{height:80.062577px;}
.ha_c00031{height:85.114863px;}
.h7_c00031{height:89.195907px;}
.h1_c00031{height:1110.000000px;}
.h0_c00031{height:1263.000000px;}
.w1_c00031{width:754.500000px;}
.w0_c00031{width:892.500000px;}
.x0_c00031{left:0.000000px;}
.x2_c00031{left:1.624185px;}
.x1_c00031{left:69.000000px;}
.xd_c00031{left:93.164535px;}
.x5_c00031{left:94.204035px;}
.x49_c00031{left:95.624685px;}
.x22_c00031{left:126.651285px;}
.x67_c00031{left:128.418435px;}
.x42_c00031{left:138.075885px;}
.x5d_c00031{left:139.105485px;}
.x12_c00031{left:147.797685px;}
.x46_c00031{left:150.158835px;}
.x43_c00031{left:159.197535px;}
.x2f_c00031{left:160.850835px;}
.x63_c00031{left:162.593235px;}
.x1a_c00031{left:171.493335px;}
.x5e_c00031{left:172.646685px;}
.xe_c00031{left:181.918035px;}
.x37_c00031{left:182.962485px;}
.x23_c00031{left:192.946635px;}
.x5a_c00031{left:194.382135px;}
.x1b_c00031{left:204.742485px;}
.x3e_c00031{left:216.082935px;}
.x57_c00031{left:217.112535px;}
.xf_c00031{left:225.482985px;}
.x5b_c00031{left:227.269935px;}
.x4a_c00031{left:237.674835px;}
.x33_c00031{left:248.559885px;}
.x3f_c00031{left:249.579585px;}
.x38_c00031{left:261.009135px;}
.x2b_c00031{left:271.018035px;}
.x34_c00031{left:280.838835px;}
.x13_c00031{left:282.051585px;}
.x5f_c00031{left:284.482035px;}
.x6_c00031{left:292.204035px;}
.x1c_c00031{left:294.149385px;}
.x44_c00031{left:304.885935px;}
.x10_c00031{left:315.370035px;}
.x4b_c00031{left:317.671785px;}
.x7_c00031{left:325.898685px;}
.x14_c00031{left:327.240135px;}
.x58_c00031{left:328.343985px;}
.x59_c00031{left:339.045885px;}
.x8_c00031{left:348.341985px;}
.x2c_c00031{left:349.713135px;}
.x11_c00031{left:359.761635px;}
.x68_c00031{left:361.187235px;}
.x1d_c00031{left:371.795085px;}
.x64_c00031{left:373.626585px;}
.x47_c00031{left:382.388085px;}
.x9_c00031{left:392.189085px;}
.x2a_c00031{left:393.555285px;}
.x35_c00031{left:396.064935px;}
.x1e_c00031{left:403.524585px;}
.x52_c00031{left:404.786835px;}
.x4f_c00031{left:415.325385px;}
.x6a_c00031{left:416.835135px;}
.x15_c00031{left:426.685635px;}
.x30_c00031{left:436.971735px;}
.x40_c00031{left:439.887285px;}
.x39_c00031{left:448.500285px;}
.x53_c00031{left:449.539785px;}
.x24_c00031{left:459.895185px;}
.x2d_c00031{left:470.918835px;}
.x16_c00031{left:482.274135px;}
.x3_c00031{left:483.358185px;}
.x41_c00031{left:493.050285px;}
.x48_c00031{left:503.554185px;}
.x25_c00031{left:504.727335px;}
.x17_c00031{left:513.954135px;}
.x3a_c00031{left:515.820285px;}
.x36_c00031{left:526.160835px;}
.x26_c00031{left:536.734035px;}
.x56_c00031{left:548.965485px;}
.x3b_c00031{left:551.296935px;}
.x3d_c00031{left:552.465135px;}
.x1f_c00031{left:558.627885px;}
.x54_c00031{left:560.350485px;}
.x45_c00031{left:570.710835px;}
.x62_c00031{left:575.477685px;}
.x29_c00031{left:578.997135px;}
.x18_c00031{left:581.447385px;}
.xc_c00031{left:587.238885px;}
.x31_c00031{left:591.292935px;}
.x20_c00031{left:592.451235px;}
.x60_c00031{left:593.866935px;}
.x19_c00031{left:603.059085px;}
.x4c_c00031{left:604.578735px;}
.x27_c00031{left:614.543085px;}
.xa_c00031{left:625.640985px;}
.x50_c00031{left:627.026985px;}
.x4d_c00031{left:637.466535px;}
.x28_c00031{left:646.822035px;}
.x55_c00031{left:651.499785px;}
.x51_c00031{left:657.142785px;}
.x32_c00031{left:658.627785px;}
.x4_c00031{left:669.408885px;}
.x5c_c00031{left:671.502735px;}
.xb_c00031{left:681.140385px;}
.x21_c00031{left:683.288685px;}
.x3c_c00031{left:691.906635px;}
.x61_c00031{left:693.683685px;}
.x69_c00031{left:698.762385px;}
.x2e_c00031{left:703.128285px;}
.x4e_c00031{left:704.365785px;}
.x65_c00031{left:706.256685px;}
.x66_c00031{left:707.726835px;}
@media print{
.v2_c00031{vertical-align:-31.680000pt;}
.v1_c00031{vertical-align:-29.145600pt;}
.v0_c00031{vertical-align:0.000000pt;}
.ls7_c00031{letter-spacing:-2.439360pt;}
.ls12_c00031{letter-spacing:-2.390080pt;}
.ls3_c00031{letter-spacing:-1.686643pt;}
.ls6_c00031{letter-spacing:-1.261498pt;}
.ls4_c00031{letter-spacing:-0.257875pt;}
.ls0_c00031{letter-spacing:0.000000pt;}
.lsf_c00031{letter-spacing:0.473933pt;}
.lsc_c00031{letter-spacing:1.895731pt;}
.ls9_c00031{letter-spacing:2.118758pt;}
.ls8_c00031{letter-spacing:3.206016pt;}
.lsd_c00031{letter-spacing:3.220800pt;}
.ls10_c00031{letter-spacing:3.338438pt;}
.ls2_c00031{letter-spacing:3.484800pt;}
.ls1_c00031{letter-spacing:3.625609pt;}
.ls5_c00031{letter-spacing:4.039209pt;}
.lsa_c00031{letter-spacing:44.352176pt;}
.ls11_c00031{letter-spacing:45.619376pt;}
.lse_c00031{letter-spacing:46.886576pt;}
.lsb_c00031{letter-spacing:50.688176pt;}
.ws0_c00031{word-spacing:0.000000pt;}
._0_c00031{width:19.793312pt;}
._1_c00031{width:440.084480pt;}
._2_c00031{width:719.472512pt;}
.fs14_c00031{font-size:19.360000pt;}
.fsc_c00031{font-size:19.712000pt;}
.fs4_c00031{font-size:24.640000pt;}
.fse_c00031{font-size:28.160000pt;}
.fs13_c00031{font-size:29.568000pt;}
.fs6_c00031{font-size:34.496000pt;}
.fs0_c00031{font-size:34.848000pt;}
.fs7_c00031{font-size:35.200000pt;}
.fs1_c00031{font-size:40.128000pt;}
.fsb_c00031{font-size:44.352176pt;}
.fs16_c00031{font-size:44.704000pt;}
.fs9_c00031{font-size:45.056000pt;}
.fs12_c00031{font-size:45.619376pt;}
.fs10_c00031{font-size:46.886576pt;}
.fsd_c00031{font-size:50.688176pt;}
.fs11_c00031{font-size:64.064176pt;}
.fsf_c00031{font-size:64.416000pt;}
.fs15_c00031{font-size:68.288000pt;}
.fs3_c00031{font-size:69.696000pt;}
.fsa_c00031{font-size:70.048000pt;}
.fs2_c00031{font-size:72.512176pt;}
.fs8_c00031{font-size:77.088000pt;}
.fs5_c00031{font-size:80.784176pt;}
.y0_c00031{bottom:0.000000pt;}
.y28_c00031{bottom:51.238920pt;}
.y1_c00031{bottom:68.000000pt;}
.y27_c00031{bottom:93.373320pt;}
.y26_c00031{bottom:113.969720pt;}
.y25_c00031{bottom:137.729720pt;}
.y24_c00031{bottom:148.817720pt;}
.y23_c00031{bottom:156.737720pt;}
.y22_c00031{bottom:165.291320pt;}
.y21_c00031{bottom:185.883320pt;}
.y20_c00031{bottom:195.070520pt;}
.y1f_c00031{bottom:208.054920pt;}
.y1e_c00031{bottom:223.894920pt;}
.y1d_c00031{bottom:252.406920pt;}
.y1c_c00031{bottom:309.747720pt;}
.y1b_c00031{bottom:338.259720pt;}
.y1a_c00031{bottom:359.806520pt;}
.y19_c00031{bottom:367.092920pt;}
.y18_c00031{bottom:367.409720pt;}
.y17_c00031{bottom:380.715320pt;}
.y16_c00031{bottom:396.234120pt;}
.y15_c00031{bottom:425.379720pt;}
.y14_c00031{bottom:454.525320pt;}
.y13_c00031{bottom:482.724920pt;}
.y12_c00031{bottom:511.549320pt;}
.y11_c00031{bottom:529.606920pt;}
.y10_c00031{bottom:540.061320pt;}
.yf_c00031{bottom:597.406520pt;}
.ye_c00031{bottom:626.230920pt;}
.yd_c00031{bottom:655.059720pt;}
.yc_c00031{bottom:670.899720pt;}
.yb_c00031{bottom:677.552520pt;}
.y2_c00031{bottom:682.938120pt;}
.ya_c00031{bottom:684.843320pt;}
.y9_c00031{bottom:713.350920pt;}
.y8_c00031{bottom:741.867320pt;}
.y7_c00031{bottom:799.524920pt;}
.y6_c00031{bottom:809.979320pt;}
.y5_c00031{bottom:828.349320pt;}
.y4_c00031{bottom:954.435720pt;}
.y3_c00031{bottom:955.069320pt;}
.h16_c00031{height:20.191875pt;}
.he_c00031{height:20.559000pt;}
.h6_c00031{height:25.698750pt;}
.h10_c00031{height:29.370000pt;}
.hd_c00031{height:29.538549pt;}
.h14_c00031{height:30.382504pt;}
.h15_c00031{height:30.838500pt;}
.h12_c00031{height:31.226460pt;}
.hf_c00031{height:33.758325pt;}
.h2_c00031{height:34.201406pt;}
.h8_c00031{height:35.978250pt;}
.h9_c00031{height:36.712500pt;}
.h13_c00031{height:37.671334pt;}
.h3_c00031{height:41.852250pt;}
.hb_c00031{height:46.992000pt;}
.h11_c00031{height:63.220781pt;}
.h17_c00031{height:66.987594pt;}
.h5_c00031{height:68.402813pt;}
.hc_c00031{height:68.748281pt;}
.h4_c00031{height:71.166735pt;}
.ha_c00031{height:75.657656pt;}
.h7_c00031{height:79.285251pt;}
.h1_c00031{height:986.666667pt;}
.h0_c00031{height:1122.666667pt;}
.w1_c00031{width:670.666667pt;}
.w0_c00031{width:793.333333pt;}
.x0_c00031{left:0.000000pt;}
.x2_c00031{left:1.443720pt;}
.x1_c00031{left:61.333333pt;}
.xd_c00031{left:82.812920pt;}
.x5_c00031{left:83.736920pt;}
.x49_c00031{left:84.999720pt;}
.x22_c00031{left:112.578920pt;}
.x67_c00031{left:114.149720pt;}
.x42_c00031{left:122.734120pt;}
.x5d_c00031{left:123.649320pt;}
.x12_c00031{left:131.375720pt;}
.x46_c00031{left:133.474520pt;}
.x43_c00031{left:141.508920pt;}
.x2f_c00031{left:142.978520pt;}
.x63_c00031{left:144.527320pt;}
.x1a_c00031{left:152.438520pt;}
.x5e_c00031{left:153.463720pt;}
.xe_c00031{left:161.704920pt;}
.x37_c00031{left:162.633320pt;}
.x23_c00031{left:171.508120pt;}
.x5a_c00031{left:172.784120pt;}
.x1b_c00031{left:181.993320pt;}
.x3e_c00031{left:192.073720pt;}
.x57_c00031{left:192.988920pt;}
.xf_c00031{left:200.429320pt;}
.x5b_c00031{left:202.017720pt;}
.x4a_c00031{left:211.266520pt;}
.x33_c00031{left:220.942120pt;}
.x3f_c00031{left:221.848520pt;}
.x38_c00031{left:232.008120pt;}
.x2b_c00031{left:240.904920pt;}
.x34_c00031{left:249.634520pt;}
.x13_c00031{left:250.712520pt;}
.x5f_c00031{left:252.872920pt;}
.x6_c00031{left:259.736920pt;}
.x1c_c00031{left:261.466120pt;}
.x44_c00031{left:271.009720pt;}
.x10_c00031{left:280.328920pt;}
.x4b_c00031{left:282.374920pt;}
.x7_c00031{left:289.687720pt;}
.x14_c00031{left:290.880120pt;}
.x58_c00031{left:291.861320pt;}
.x59_c00031{left:301.374120pt;}
.x8_c00031{left:309.637320pt;}
.x2c_c00031{left:310.856120pt;}
.x11_c00031{left:319.788120pt;}
.x68_c00031{left:321.055320pt;}
.x1d_c00031{left:330.484520pt;}
.x64_c00031{left:332.112520pt;}
.x47_c00031{left:339.900520pt;}
.x9_c00031{left:348.612520pt;}
.x2a_c00031{left:349.826920pt;}
.x35_c00031{left:352.057720pt;}
.x1e_c00031{left:358.688520pt;}
.x52_c00031{left:359.810520pt;}
.x4f_c00031{left:369.178120pt;}
.x6a_c00031{left:370.520120pt;}
.x15_c00031{left:379.276120pt;}
.x30_c00031{left:388.419320pt;}
.x40_c00031{left:391.010920pt;}
.x39_c00031{left:398.666920pt;}
.x53_c00031{left:399.590920pt;}
.x24_c00031{left:408.795720pt;}
.x2d_c00031{left:418.594520pt;}
.x16_c00031{left:428.688120pt;}
.x3_c00031{left:429.651720pt;}
.x41_c00031{left:438.266920pt;}
.x48_c00031{left:447.603720pt;}
.x25_c00031{left:448.646520pt;}
.x17_c00031{left:456.848120pt;}
.x3a_c00031{left:458.506920pt;}
.x36_c00031{left:467.698520pt;}
.x26_c00031{left:477.096920pt;}
.x56_c00031{left:487.969320pt;}
.x3b_c00031{left:490.041720pt;}
.x3d_c00031{left:491.080120pt;}
.x1f_c00031{left:496.558120pt;}
.x54_c00031{left:498.089320pt;}
.x45_c00031{left:507.298520pt;}
.x62_c00031{left:511.535720pt;}
.x29_c00031{left:514.664120pt;}
.x18_c00031{left:516.842120pt;}
.xc_c00031{left:521.990120pt;}
.x31_c00031{left:525.593720pt;}
.x20_c00031{left:526.623320pt;}
.x60_c00031{left:527.881720pt;}
.x19_c00031{left:536.052520pt;}
.x4c_c00031{left:537.403320pt;}
.x27_c00031{left:546.260520pt;}
.xa_c00031{left:556.125320pt;}
.x50_c00031{left:557.357320pt;}
.x4d_c00031{left:566.636920pt;}
.x28_c00031{left:574.952920pt;}
.x55_c00031{left:579.110920pt;}
.x51_c00031{left:584.126920pt;}
.x32_c00031{left:585.446920pt;}
.x4_c00031{left:595.030120pt;}
.x5c_c00031{left:596.891320pt;}
.xb_c00031{left:605.458120pt;}
.x21_c00031{left:607.367720pt;}
.x3c_c00031{left:615.028120pt;}
.x61_c00031{left:616.607720pt;}
.x69_c00031{left:621.122120pt;}
.x2e_c00031{left:625.002920pt;}
.x4e_c00031{left:626.102920pt;}
.x65_c00031{left:627.783720pt;}
.x66_c00031{left:629.090520pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5f0e798a88124ad8e9210f9c.woff2')format("woff");}.ff1_c00032{font-family:ff1_c00032;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00032;src:url('chunks/assets/font_13cba4699514c914e085e07f.woff2')format("woff");}.ff2_c00032{font-family:ff2_c00032;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00032;src:url('chunks/assets/font_21cb90d94c6f6a90bfe3fd89.woff2')format("woff");}.ff3_c00032{font-family:ff3_c00032;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00032;src:url('chunks/assets/font_ce795ef6d992372c9026ac20.woff2')format("woff");}.ff4_c00032{font-family:ff4_c00032;line-height:0.666000;font-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_c00032{transform:matrix(0.127210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127210,0.000000,0.000000,0.250000,0,0);}
.m32_c00032{transform:matrix(0.134759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134759,0.000000,0.000000,0.250000,0,0);}
.m6a_c00032{transform:matrix(0.184960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184960,0.000000,0.000000,0.250000,0,0);}
.m94_c00032{transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);}
.m97_c00032{transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);}
.m95_c00032{transform:matrix(0.213889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213889,0.000000,0.000000,0.250000,0,0);}
.m96_c00032{transform:matrix(0.225695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225695,0.000000,0.000000,0.250000,0,0);}
.m93_c00032{transform:matrix(0.225922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225922,0.000000,0.000000,0.250000,0,0);}
.m26_c00032{transform:matrix(0.248470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248470,0.000000,0.000000,0.250000,0,0);}
.m0_c00032{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m5_c00032{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.m5b_c00032{transform:matrix(0.256552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256552,0.000000,0.000000,0.250000,0,0);}
.m59_c00032{transform:matrix(0.257620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257620,0.000000,0.000000,0.250000,0,0);}
.m4a_c00032{transform:matrix(0.261490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261490,0.000000,0.000000,0.250000,0,0);}
.m43_c00032{transform:matrix(0.261874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261874,0.000000,0.000000,0.250000,0,0);}
.m31_c00032{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m62_c00032{transform:matrix(0.263629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263629,0.000000,0.000000,0.250000,0,0);}
.m11_c00032{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m1_c00032{transform:matrix(0.264919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264919,0.000000,0.000000,0.250000,0,0);}
.m71_c00032{transform:matrix(0.265600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265600,0.000000,0.000000,0.250000,0,0);}
.m88_c00032{transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);}
.m13_c00032{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.mc_c00032{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m98_c00032{transform:matrix(0.268100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268100,0.000000,0.000000,0.250000,0,0);}
.m47_c00032{transform:matrix(0.268694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268694,0.000000,0.000000,0.250000,0,0);}
.m6f_c00032{transform:matrix(0.268705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268705,0.000000,0.000000,0.250000,0,0);}
.m20_c00032{transform:matrix(0.269233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269233,0.000000,0.000000,0.250000,0,0);}
.m73_c00032{transform:matrix(0.269450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269450,0.000000,0.000000,0.250000,0,0);}
.m5d_c00032{transform:matrix(0.269564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269564,0.000000,0.000000,0.250000,0,0);}
.m76_c00032{transform:matrix(0.269833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269833,0.000000,0.000000,0.250000,0,0);}
.m19_c00032{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m84_c00032{transform:matrix(0.272328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272328,0.000000,0.000000,0.250000,0,0);}
.m45_c00032{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m99_c00032{transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);}
.m53_c00032{transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);}
.m28_c00032{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m7_c00032{transform:matrix(0.275577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275577,0.000000,0.000000,0.250000,0,0);}
.m18_c00032{transform:matrix(0.275697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275697,0.000000,0.000000,0.250000,0,0);}
.mb_c00032{transform:matrix(0.276792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276792,0.000000,0.000000,0.250000,0,0);}
.m67_c00032{transform:matrix(0.277016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277016,0.000000,0.000000,0.250000,0,0);}
.m4b_c00032{transform:matrix(0.277084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277084,0.000000,0.000000,0.250000,0,0);}
.m36_c00032{transform:matrix(0.277138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277138,0.000000,0.000000,0.250000,0,0);}
.m8d_c00032{transform:matrix(0.277763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277763,0.000000,0.000000,0.250000,0,0);}
.m30_c00032{transform:matrix(0.278684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278684,0.000000,0.000000,0.250000,0,0);}
.m38_c00032{transform:matrix(0.279077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279077,0.000000,0.000000,0.250000,0,0);}
.m9f_c00032{transform:matrix(0.279395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279395,0.000000,0.000000,0.250000,0,0);}
.m24_c00032{transform:matrix(0.279771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279771,0.000000,0.000000,0.250000,0,0);}
.m60_c00032{transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);}
.m82_c00032{transform:matrix(0.280163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280163,0.000000,0.000000,0.250000,0,0);}
.m9_c00032{transform:matrix(0.280224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280224,0.000000,0.000000,0.250000,0,0);}
.md_c00032{transform:matrix(0.280919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280919,0.000000,0.000000,0.250000,0,0);}
.m35_c00032{transform:matrix(0.281304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281304,0.000000,0.000000,0.250000,0,0);}
.m79_c00032{transform:matrix(0.281463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281463,0.000000,0.000000,0.250000,0,0);}
.m2a_c00032{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.m41_c00032{transform:matrix(0.281554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281554,0.000000,0.000000,0.250000,0,0);}
.m8b_c00032{transform:matrix(0.281754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281754,0.000000,0.000000,0.250000,0,0);}
.m7b_c00032{transform:matrix(0.281974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281974,0.000000,0.000000,0.250000,0,0);}
.m81_c00032{transform:matrix(0.282290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282290,0.000000,0.000000,0.250000,0,0);}
.m89_c00032{transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);}
.m4_c00032{transform:matrix(0.283114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283114,0.000000,0.000000,0.250000,0,0);}
.m50_c00032{transform:matrix(0.283135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283135,0.000000,0.000000,0.250000,0,0);}
.m74_c00032{transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);}
.m7e_c00032{transform:matrix(0.286698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286698,0.000000,0.000000,0.250000,0,0);}
.m87_c00032{transform:matrix(0.287000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287000,0.000000,0.000000,0.250000,0,0);}
.m52_c00032{transform:matrix(0.287592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287592,0.000000,0.000000,0.250000,0,0);}
.m57_c00032{transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);}
.m83_c00032{transform:matrix(0.288557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288557,0.000000,0.000000,0.250000,0,0);}
.m78_c00032{transform:matrix(0.288571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288571,0.000000,0.000000,0.250000,0,0);}
.m33_c00032{transform:matrix(0.289189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289189,0.000000,0.000000,0.250000,0,0);}
.m40_c00032{transform:matrix(0.289203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289203,0.000000,0.000000,0.250000,0,0);}
.m2b_c00032{transform:matrix(0.289529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289529,0.000000,0.000000,0.250000,0,0);}
.m39_c00032{transform:matrix(0.289691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289691,0.000000,0.000000,0.250000,0,0);}
.m51_c00032{transform:matrix(0.289850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289850,0.000000,0.000000,0.250000,0,0);}
.m34_c00032{transform:matrix(0.290015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290015,0.000000,0.000000,0.250000,0,0);}
.m1d_c00032{transform:matrix(0.290185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290185,0.000000,0.000000,0.250000,0,0);}
.m9b_c00032{transform:matrix(0.290655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290655,0.000000,0.000000,0.250000,0,0);}
.m63_c00032{transform:matrix(0.290864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290864,0.000000,0.000000,0.250000,0,0);}
.m15_c00032{transform:matrix(0.291665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291665,0.000000,0.000000,0.250000,0,0);}
.m58_c00032{transform:matrix(0.291977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291977,0.000000,0.000000,0.250000,0,0);}
.m1b_c00032{transform:matrix(0.293309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293309,0.000000,0.000000,0.250000,0,0);}
.m68_c00032{transform:matrix(0.293359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293359,0.000000,0.000000,0.250000,0,0);}
.m48_c00032{transform:matrix(0.293833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293833,0.000000,0.000000,0.250000,0,0);}
.m75_c00032{transform:matrix(0.294898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294898,0.000000,0.000000,0.250000,0,0);}
.m6d_c00032{transform:matrix(0.295251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295251,0.000000,0.000000,0.250000,0,0);}
.m44_c00032{transform:matrix(0.295578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295578,0.000000,0.000000,0.250000,0,0);}
.m77_c00032{transform:matrix(0.295700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295700,0.000000,0.000000,0.250000,0,0);}
.m29_c00032{transform:matrix(0.296758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296758,0.000000,0.000000,0.250000,0,0);}
.m6b_c00032{transform:matrix(0.296926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296926,0.000000,0.000000,0.250000,0,0);}
.m65_c00032{transform:matrix(0.298470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298470,0.000000,0.000000,0.250000,0,0);}
.m64_c00032{transform:matrix(0.298691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298691,0.000000,0.000000,0.250000,0,0);}
.m7f_c00032{transform:matrix(0.299348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299348,0.000000,0.000000,0.250000,0,0);}
.m12_c00032{transform:matrix(0.301535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301535,0.000000,0.000000,0.250000,0,0);}
.m2d_c00032{transform:matrix(0.302096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302096,0.000000,0.000000,0.250000,0,0);}
.m8_c00032{transform:matrix(0.302319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302319,0.000000,0.000000,0.250000,0,0);}
.m6_c00032{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m4c_c00032{transform:matrix(0.303929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303929,0.000000,0.000000,0.250000,0,0);}
.m4e_c00032{transform:matrix(0.305369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305369,0.000000,0.000000,0.250000,0,0);}
.m10_c00032{transform:matrix(0.306092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306092,0.000000,0.000000,0.250000,0,0);}
.m1c_c00032{transform:matrix(0.306746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306746,0.000000,0.000000,0.250000,0,0);}
.mf_c00032{transform:matrix(0.307458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307458,0.000000,0.000000,0.250000,0,0);}
.m22_c00032{transform:matrix(0.308020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308020,0.000000,0.000000,0.250000,0,0);}
.m66_c00032{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m37_c00032{transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);}
.m8c_c00032{transform:matrix(0.310218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310218,0.000000,0.000000,0.250000,0,0);}
.m21_c00032{transform:matrix(0.310761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310761,0.000000,0.000000,0.250000,0,0);}
.m42_c00032{transform:matrix(0.311079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311079,0.000000,0.000000,0.250000,0,0);}
.m5e_c00032{transform:matrix(0.311094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311094,0.000000,0.000000,0.250000,0,0);}
.m8e_c00032{transform:matrix(0.311211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311211,0.000000,0.000000,0.250000,0,0);}
.m56_c00032{transform:matrix(0.311405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311405,0.000000,0.000000,0.250000,0,0);}
.m1e_c00032{transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);}
.m85_c00032{transform:matrix(0.312125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312125,0.000000,0.000000,0.250000,0,0);}
.m3a_c00032{transform:matrix(0.312527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312527,0.000000,0.000000,0.250000,0,0);}
.m14_c00032{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.m7d_c00032{transform:matrix(0.313649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313649,0.000000,0.000000,0.250000,0,0);}
.m9d_c00032{transform:matrix(0.315418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315418,0.000000,0.000000,0.250000,0,0);}
.m25_c00032{transform:matrix(0.315515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315515,0.000000,0.000000,0.250000,0,0);}
.m16_c00032{transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);}
.m9a_c00032{transform:matrix(0.316253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316253,0.000000,0.000000,0.250000,0,0);}
.m4d_c00032{transform:matrix(0.316343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316343,0.000000,0.000000,0.250000,0,0);}
.m54_c00032{transform:matrix(0.316822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316822,0.000000,0.000000,0.250000,0,0);}
.m80_c00032{transform:matrix(0.317925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317925,0.000000,0.000000,0.250000,0,0);}
.m6e_c00032{transform:matrix(0.318810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318810,0.000000,0.000000,0.250000,0,0);}
.m1f_c00032{transform:matrix(0.319808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319808,0.000000,0.000000,0.250000,0,0);}
.m2c_c00032{transform:matrix(0.321223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321223,0.000000,0.000000,0.250000,0,0);}
.m55_c00032{transform:matrix(0.322763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322763,0.000000,0.000000,0.250000,0,0);}
.m92_c00032{transform:matrix(0.323122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323122,0.000000,0.000000,0.250000,0,0);}
.m1a_c00032{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.m70_c00032{transform:matrix(0.323775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323775,0.000000,0.000000,0.250000,0,0);}
.m8a_c00032{transform:matrix(0.324400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324400,0.000000,0.000000,0.250000,0,0);}
.m72_c00032{transform:matrix(0.324455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324455,0.000000,0.000000,0.250000,0,0);}
.m46_c00032{transform:matrix(0.324932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324932,0.000000,0.000000,0.250000,0,0);}
.m7a_c00032{transform:matrix(0.325523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325523,0.000000,0.000000,0.250000,0,0);}
.me_c00032{transform:matrix(0.325919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325919,0.000000,0.000000,0.250000,0,0);}
.m17_c00032{transform:matrix(0.327016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327016,0.000000,0.000000,0.250000,0,0);}
.ma_c00032{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m8f_c00032{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.m6c_c00032{transform:matrix(0.329979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329979,0.000000,0.000000,0.250000,0,0);}
.m7c_c00032{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m5a_c00032{transform:matrix(0.335777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335777,0.000000,0.000000,0.250000,0,0);}
.m61_c00032{transform:matrix(0.337295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337295,0.000000,0.000000,0.250000,0,0);}
.m3e_c00032{transform:matrix(0.337349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337349,0.000000,0.000000,0.250000,0,0);}
.m91_c00032{transform:matrix(0.337518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337518,0.000000,0.000000,0.250000,0,0);}
.m86_c00032{transform:matrix(0.337910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337910,0.000000,0.000000,0.250000,0,0);}
.m90_c00032{transform:matrix(0.338138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338138,0.000000,0.000000,0.250000,0,0);}
.m2_c00032{transform:matrix(0.338339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338339,0.000000,0.000000,0.250000,0,0);}
.m9c_c00032{transform:matrix(0.338527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338527,0.000000,0.000000,0.250000,0,0);}
.m4f_c00032{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m27_c00032{transform:matrix(0.339400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339400,0.000000,0.000000,0.250000,0,0);}
.m23_c00032{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.m9e_c00032{transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);}
.m2f_c00032{transform:matrix(0.345602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345602,0.000000,0.000000,0.250000,0,0);}
.m3c_c00032{transform:matrix(0.345765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345765,0.000000,0.000000,0.250000,0,0);}
.m5c_c00032{transform:matrix(0.347328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347328,0.000000,0.000000,0.250000,0,0);}
.m69_c00032{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m3d_c00032{transform:matrix(0.350725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350725,0.000000,0.000000,0.250000,0,0);}
.m3b_c00032{transform:matrix(0.352003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352003,0.000000,0.000000,0.250000,0,0);}
.m5f_c00032{transform:matrix(0.352906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352906,0.000000,0.000000,0.250000,0,0);}
.m3_c00032{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m2e_c00032{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m49_c00032{transform:matrix(0.368439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368439,0.000000,0.000000,0.250000,0,0);}
.v0_c00032{vertical-align:0.000000px;}
.ls8_c00032{letter-spacing:-2.744280px;}
.lsc_c00032{letter-spacing:-2.723490px;}
.ls5_c00032{letter-spacing:-2.375762px;}
.lsa_c00032{letter-spacing:-1.427026px;}
.lse_c00032{letter-spacing:-0.039204px;}
.ls2_c00032{letter-spacing:0.000000px;}
.ls0_c00032{letter-spacing:1.113394px;}
.ls1_c00032{letter-spacing:1.204870px;}
.ls6_c00032{letter-spacing:2.297354px;}
.ls7_c00032{letter-spacing:3.276900px;}
.lsd_c00032{letter-spacing:3.512678px;}
.ls9_c00032{letter-spacing:3.583246px;}
.lsf_c00032{letter-spacing:3.821400px;}
.ls4_c00032{letter-spacing:3.920400px;}
.ls3_c00032{letter-spacing:4.296610px;}
.lsb_c00032{letter-spacing:5.227200px;}
.ls11_c00032{letter-spacing:51.321798px;}
.ls10_c00032{letter-spacing:58.449798px;}
.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:-19.602000px;}
.ws1_c00032{word-spacing:-5.932476px;}
.ws2_c00032{word-spacing:0.000000px;}
._2_c00032{margin-left:-6.613200px;}
._0_c00032{width:14.035032px;}
._1_c00032{width:17.265600px;}
._3_c00032{width:23.458090px;}
.fc0_c00032{color:transparent;}
.fs0_c00032{font-size:22.176000px;}
.fs5_c00032{font-size:27.720000px;}
.fs6_c00032{font-size:29.700000px;}
.fs3_c00032{font-size:39.204000px;}
.fs7_c00032{font-size:39.600000px;}
.fsc_c00032{font-size:49.104000px;}
.fs2_c00032{font-size:50.292000px;}
.fs12_c00032{font-size:51.321798px;}
.fsd_c00032{font-size:55.440000px;}
.fs10_c00032{font-size:58.449798px;}
.fs9_c00032{font-size:65.538000px;}
.fs13_c00032{font-size:71.280000px;}
.fse_c00032{font-size:74.844000px;}
.fsf_c00032{font-size:76.428000px;}
.fsb_c00032{font-size:77.814000px;}
.fs4_c00032{font-size:78.408000px;}
.fs8_c00032{font-size:78.804000px;}
.fs1_c00032{font-size:85.932198px;}
.fs11_c00032{font-size:91.278000px;}
.fsa_c00032{font-size:104.544000px;}
.y0_c00032{bottom:0.000000px;}
.y1_c00032{bottom:76.500000px;}
.y20_c00032{bottom:178.824735px;}
.y21_c00032{bottom:180.606735px;}
.y1f_c00032{bottom:212.326335px;}
.y1e_c00032{bottom:244.753785px;}
.y1d_c00032{bottom:277.191135px;}
.y1c_c00032{bottom:309.267135px;}
.y1b_c00032{bottom:341.699535px;}
.y1a_c00032{bottom:373.775535px;}
.y19_c00032{bottom:406.207935px;}
.y18_c00032{bottom:438.635385px;}
.y17_c00032{bottom:471.785535px;}
.y16_c00032{bottom:500.292585px;}
.y15_c00032{bottom:504.569385px;}
.y14_c00032{bottom:569.434185px;}
.y13_c00032{bottom:588.679785px;}
.y12_c00032{bottom:601.866585px;}
.y11_c00032{bottom:634.303935px;}
.y10_c00032{bottom:657.826335px;}
.yf_c00032{bottom:665.667135px;}
.ye_c00032{bottom:698.450985px;}
.yd_c00032{bottom:730.531935px;}
.yc_c00032{bottom:763.320735px;}
.yb_c00032{bottom:827.824185px;}
.ya_c00032{bottom:860.256585px;}
.y9_c00032{bottom:888.417135px;}
.y8_c00032{bottom:892.693935px;}
.y7_c00032{bottom:909.088335px;}
.y6_c00032{bottom:925.834185px;}
.y5_c00032{bottom:967.532985px;}
.y4_c00032{bottom:1046.297385px;}
.y3_c00032{bottom:1073.740185px;}
.y2_c00032{bottom:1087.639785px;}
.h2_c00032{height:23.128875px;}
.h7_c00032{height:28.911094px;}
.h13_c00032{height:34.180317px;}
.h5_c00032{height:38.476582px;}
.h11_c00032{height:38.927565px;}
.h8_c00032{height:41.301563px;}
.h4_c00032{height:49.358848px;}
.hd_c00032{height:51.213938px;}
.he_c00032{height:57.822188px;}
.ha_c00032{height:68.354086px;}
.hf_c00032{height:73.455293px;}
.h14_c00032{height:74.342813px;}
.h10_c00032{height:75.009902px;}
.hc_c00032{height:76.370186px;}
.h6_c00032{height:76.953164px;}
.h9_c00032{height:77.341816px;}
.h3_c00032{height:84.337753px;}
.h12_c00032{height:89.584365px;}
.hb_c00032{height:109.036125px;}
.h1_c00032{height:1110.000000px;}
.h0_c00032{height:1263.000000px;}
.w1_c00032{width:775.500000px;}
.w0_c00032{width:892.500000px;}
.x0_c00032{left:0.000000px;}
.x50_c00032{left:38.418585px;}
.x1_c00032{left:58.500000px;}
.x6_c00032{left:102.753735px;}
.x12_c00032{left:104.486235px;}
.x57_c00032{left:105.525735px;}
.x13_c00032{left:136.626585px;}
.x58_c00032{left:137.695785px;}
.x3a_c00032{left:147.877935px;}
.x26_c00032{left:157.812585px;}
.x24_c00032{left:169.034235px;}
.x1c_c00032{left:180.706335px;}
.x2c_c00032{left:189.943035px;}
.x14_c00032{left:191.522085px;}
.x40_c00032{left:192.863535px;}
.x43_c00032{left:203.520885px;}
.x25_c00032{left:213.816885px;}
.x7_c00032{left:224.667285px;}
.x4c_c00032{left:235.205835px;}
.x49_c00032{left:236.388885px;}
.x3b_c00032{left:237.472935px;}
.x8_c00032{left:247.080885px;}
.x2f_c00032{left:257.812485px;}
.x59_c00032{left:259.455885px;}
.x1d_c00032{left:268.860885px;}
.x9_c00032{left:279.349935px;}
.x36_c00032{left:289.764735px;}
.x33_c00032{left:291.125985px;}
.x5a_c00032{left:292.368435px;}
.x1e_c00032{left:302.352585px;}
.x54_c00032{left:303.639585px;}
.x1b_c00032{left:312.034785px;}
.x15_c00032{left:314.044485px;}
.x3f_c00032{left:324.983985px;}
.x16_c00032{left:336.200685px;}
.x1f_c00032{left:347.254035px;}
.xa_c00032{left:357.782685px;}
.x38_c00032{left:358.970685px;}
.x3c_c00032{left:368.880585px;}
.xb_c00032{left:379.874535px;}
.x4f_c00032{left:381.760485px;}
.x17_c00032{left:391.036785px;}
.x34_c00032{left:402.025785px;}
.xc_c00032{left:413.064285px;}
.x2_c00032{left:423.662235px;}
.x30_c00032{left:444.442335px;}
.xd_c00032{left:445.971885px;}
.x44_c00032{left:447.422235px;}
.x31_c00032{left:448.694385px;}
.x32_c00032{left:457.010385px;}
.x52_c00032{left:458.109285px;}
.x20_c00032{left:460.193235px;}
.x2d_c00032{left:467.895435px;}
.x3d_c00032{left:469.108185px;}
.x55_c00032{left:478.988385px;}
.x27_c00032{left:491.101035px;}
.x5b_c00032{left:492.234585px;}
.x4_c00032{left:495.536235px;}
.x45_c00032{left:501.718785px;}
.x41_c00032{left:502.985985px;}
.x18_c00032{left:512.994885px;}
.xe_c00032{left:524.206635px;}
.x42_c00032{left:533.869035px;}
.x21_c00032{left:535.779735px;}
.x39_c00032{left:546.466785px;}
.x3e_c00032{left:548.981385px;}
.x28_c00032{left:556.287585px;}
.x5_c00032{left:558.307185px;}
.x19_c00032{left:567.885435px;}
.x56_c00032{left:568.915035px;}
.x35_c00032{left:578.359635px;}
.x46_c00032{left:579.993135px;}
.x4d_c00032{left:590.566335px;}
.x11_c00032{left:593.996685px;}
.x29_c00032{left:601.243485px;}
.x1a_c00032{left:612.306735px;}
.x48_c00032{left:615.237135px;}
.x4a_c00032{left:632.958135px;}
.x2a_c00032{left:634.858935px;}
.xf_c00032{left:646.298385px;}
.x53_c00032{left:656.604285px;}
.x37_c00032{left:661.133535px;}
.x3_c00032{left:678.300135px;}
.x47_c00032{left:681.161235px;}
.x51_c00032{left:688.190235px;}
.x2e_c00032{left:689.734635px;}
.x5c_c00032{left:697.293285px;}
.x22_c00032{left:700.391985px;}
.x10_c00032{left:701.852235px;}
.x2b_c00032{left:712.905585px;}
.x4b_c00032{left:714.647985px;}
.x4e_c00032{left:734.289585px;}
.x23_c00032{left:745.337985px;}
@media print{
.v0_c00032{vertical-align:0.000000pt;}
.ls8_c00032{letter-spacing:-2.439360pt;}
.lsc_c00032{letter-spacing:-2.420880pt;}
.ls5_c00032{letter-spacing:-2.111789pt;}
.lsa_c00032{letter-spacing:-1.268467pt;}
.lse_c00032{letter-spacing:-0.034848pt;}
.ls2_c00032{letter-spacing:0.000000pt;}
.ls0_c00032{letter-spacing:0.989683pt;}
.ls1_c00032{letter-spacing:1.070995pt;}
.ls6_c00032{letter-spacing:2.042093pt;}
.ls7_c00032{letter-spacing:2.912800pt;}
.lsd_c00032{letter-spacing:3.122381pt;}
.ls9_c00032{letter-spacing:3.185107pt;}
.lsf_c00032{letter-spacing:3.396800pt;}
.ls4_c00032{letter-spacing:3.484800pt;}
.ls3_c00032{letter-spacing:3.819209pt;}
.lsb_c00032{letter-spacing:4.646400pt;}
.ls11_c00032{letter-spacing:45.619376pt;}
.ls10_c00032{letter-spacing:51.955376pt;}
.ws0_c00032{word-spacing:-17.424000pt;}
.ws1_c00032{word-spacing:-5.273312pt;}
.ws2_c00032{word-spacing:0.000000pt;}
._2_c00032{margin-left:-5.878400pt;}
._0_c00032{width:12.475584pt;}
._1_c00032{width:15.347200pt;}
._3_c00032{width:20.851635pt;}
.fs0_c00032{font-size:19.712000pt;}
.fs5_c00032{font-size:24.640000pt;}
.fs6_c00032{font-size:26.400000pt;}
.fs3_c00032{font-size:34.848000pt;}
.fs7_c00032{font-size:35.200000pt;}
.fsc_c00032{font-size:43.648000pt;}
.fs2_c00032{font-size:44.704000pt;}
.fs12_c00032{font-size:45.619376pt;}
.fsd_c00032{font-size:49.280000pt;}
.fs10_c00032{font-size:51.955376pt;}
.fs9_c00032{font-size:58.256000pt;}
.fs13_c00032{font-size:63.360000pt;}
.fse_c00032{font-size:66.528000pt;}
.fsf_c00032{font-size:67.936000pt;}
.fsb_c00032{font-size:69.168000pt;}
.fs4_c00032{font-size:69.696000pt;}
.fs8_c00032{font-size:70.048000pt;}
.fs1_c00032{font-size:76.384176pt;}
.fs11_c00032{font-size:81.136000pt;}
.fsa_c00032{font-size:92.928000pt;}
.y0_c00032{bottom:0.000000pt;}
.y1_c00032{bottom:68.000000pt;}
.y20_c00032{bottom:158.955320pt;}
.y21_c00032{bottom:160.539320pt;}
.y1f_c00032{bottom:188.734520pt;}
.y1e_c00032{bottom:217.558920pt;}
.y1d_c00032{bottom:246.392120pt;}
.y1c_c00032{bottom:274.904120pt;}
.y1b_c00032{bottom:303.732920pt;}
.y1a_c00032{bottom:332.244920pt;}
.y19_c00032{bottom:361.073720pt;}
.y18_c00032{bottom:389.898120pt;}
.y17_c00032{bottom:419.364920pt;}
.y16_c00032{bottom:444.704520pt;}
.y15_c00032{bottom:448.506120pt;}
.y14_c00032{bottom:506.163720pt;}
.y13_c00032{bottom:523.270920pt;}
.y12_c00032{bottom:534.992520pt;}
.y11_c00032{bottom:563.825720pt;}
.y10_c00032{bottom:584.734520pt;}
.yf_c00032{bottom:591.704120pt;}
.ye_c00032{bottom:620.845320pt;}
.yd_c00032{bottom:649.361720pt;}
.yc_c00032{bottom:678.507320pt;}
.yb_c00032{bottom:735.843720pt;}
.ya_c00032{bottom:764.672520pt;}
.y9_c00032{bottom:789.704120pt;}
.y8_c00032{bottom:793.505720pt;}
.y7_c00032{bottom:808.078520pt;}
.y6_c00032{bottom:822.963720pt;}
.y5_c00032{bottom:860.029320pt;}
.y4_c00032{bottom:930.042120pt;}
.y3_c00032{bottom:954.435720pt;}
.y2_c00032{bottom:966.790920pt;}
.h2_c00032{height:20.559000pt;}
.h7_c00032{height:25.698750pt;}
.h13_c00032{height:30.382504pt;}
.h5_c00032{height:34.201406pt;}
.h11_c00032{height:34.602280pt;}
.h8_c00032{height:36.712500pt;}
.h4_c00032{height:43.874531pt;}
.hd_c00032{height:45.523500pt;}
.he_c00032{height:51.397500pt;}
.ha_c00032{height:60.759188pt;}
.hf_c00032{height:65.293594pt;}
.h14_c00032{height:66.082500pt;}
.h10_c00032{height:66.675469pt;}
.hc_c00032{height:67.884609pt;}
.h6_c00032{height:68.402813pt;}
.h9_c00032{height:68.748281pt;}
.h3_c00032{height:74.966891pt;}
.h12_c00032{height:79.630547pt;}
.hb_c00032{height:96.921000pt;}
.h1_c00032{height:986.666667pt;}
.h0_c00032{height:1122.666667pt;}
.w1_c00032{width:689.333333pt;}
.w0_c00032{width:793.333333pt;}
.x0_c00032{left:0.000000pt;}
.x50_c00032{left:34.149853pt;}
.x1_c00032{left:52.000000pt;}
.x6_c00032{left:91.336653pt;}
.x12_c00032{left:92.876653pt;}
.x57_c00032{left:93.800653pt;}
.x13_c00032{left:121.445853pt;}
.x58_c00032{left:122.396253pt;}
.x3a_c00032{left:131.447053pt;}
.x26_c00032{left:140.277853pt;}
.x24_c00032{left:150.252653pt;}
.x1c_c00032{left:160.627853pt;}
.x2c_c00032{left:168.838253pt;}
.x14_c00032{left:170.241853pt;}
.x40_c00032{left:171.434253pt;}
.x43_c00032{left:180.907453pt;}
.x25_c00032{left:190.059453pt;}
.x7_c00032{left:199.704253pt;}
.x4c_c00032{left:209.071853pt;}
.x49_c00032{left:210.123453pt;}
.x3b_c00032{left:211.087053pt;}
.x8_c00032{left:219.627453pt;}
.x2f_c00032{left:229.166653pt;}
.x59_c00032{left:230.627453pt;}
.x1d_c00032{left:238.987453pt;}
.x9_c00032{left:248.311053pt;}
.x36_c00032{left:257.568653pt;}
.x33_c00032{left:258.778653pt;}
.x5a_c00032{left:259.883053pt;}
.x1e_c00032{left:268.757853pt;}
.x54_c00032{left:269.901853pt;}
.x1b_c00032{left:277.364253pt;}
.x15_c00032{left:279.150653pt;}
.x3f_c00032{left:288.874653pt;}
.x16_c00032{left:298.845053pt;}
.x1f_c00032{left:308.670253pt;}
.xa_c00032{left:318.029053pt;}
.x38_c00032{left:319.085053pt;}
.x3c_c00032{left:327.893853pt;}
.xb_c00032{left:337.666253pt;}
.x4f_c00032{left:339.342653pt;}
.x17_c00032{left:347.588253pt;}
.x34_c00032{left:357.356253pt;}
.xc_c00032{left:367.168253pt;}
.x2_c00032{left:376.588653pt;}
.x30_c00032{left:395.059853pt;}
.xd_c00032{left:396.419453pt;}
.x44_c00032{left:397.708653pt;}
.x31_c00032{left:398.839453pt;}
.x32_c00032{left:406.231453pt;}
.x52_c00032{left:407.208253pt;}
.x20_c00032{left:409.060653pt;}
.x2d_c00032{left:415.907053pt;}
.x3d_c00032{left:416.985053pt;}
.x55_c00032{left:425.767453pt;}
.x27_c00032{left:436.534253pt;}
.x5b_c00032{left:437.541853pt;}
.x4_c00032{left:440.476653pt;}
.x45_c00032{left:445.972253pt;}
.x41_c00032{left:447.098653pt;}
.x18_c00032{left:455.995453pt;}
.xe_c00032{left:465.961453pt;}
.x42_c00032{left:474.550253pt;}
.x21_c00032{left:476.248653pt;}
.x39_c00032{left:485.748253pt;}
.x3e_c00032{left:487.983453pt;}
.x28_c00032{left:494.477853pt;}
.x5_c00032{left:496.273053pt;}
.x19_c00032{left:504.787053pt;}
.x56_c00032{left:505.702253pt;}
.x35_c00032{left:514.097453pt;}
.x46_c00032{left:515.549453pt;}
.x4d_c00032{left:524.947853pt;}
.x11_c00032{left:527.997053pt;}
.x29_c00032{left:534.438653pt;}
.x1a_c00032{left:544.272653pt;}
.x48_c00032{left:546.877453pt;}
.x4a_c00032{left:562.629453pt;}
.x2a_c00032{left:564.319053pt;}
.xf_c00032{left:574.487453pt;}
.x53_c00032{left:583.648253pt;}
.x37_c00032{left:587.674253pt;}
.x3_c00032{left:602.933453pt;}
.x47_c00032{left:605.476653pt;}
.x51_c00032{left:611.724653pt;}
.x2e_c00032{left:613.097453pt;}
.x5c_c00032{left:619.816253pt;}
.x22_c00032{left:622.570653pt;}
.x10_c00032{left:623.868653pt;}
.x2b_c00032{left:633.693853pt;}
.x4b_c00032{left:635.242653pt;}
.x4e_c00032{left:652.701853pt;}
.x23_c00032{left:662.522653pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7de2edc9f56ea7f7a835c944.woff2')format("woff");}.ff1_c00033{font-family:ff1_c00033;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00033;src:url('chunks/assets/font_ea37077d63071d64f37839c4.woff2')format("woff");}.ff2_c00033{font-family:ff2_c00033;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00033;src:url('chunks/assets/font_0a353ae321f5bc502373e877.woff2')format("woff");}.ff3_c00033{font-family:ff3_c00033;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00033;src:url('chunks/assets/font_4356ed2a1924a552d8de101a.woff2')format("woff");}.ff4_c00033{font-family:ff4_c00033;line-height:0.666000;font-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_c00033{transform:matrix(0.209028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209028,0.000000,0.000000,0.250000,0,0);}
.ma8_c00033{transform:matrix(0.213031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213031,0.000000,0.000000,0.250000,0,0);}
.m1_c00033{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m11_c00033{transform:matrix(0.250078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250078,0.000000,0.000000,0.250000,0,0);}
.m6a_c00033{transform:matrix(0.250225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250225,0.000000,0.000000,0.250000,0,0);}
.m76_c00033{transform:matrix(0.250919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250919,0.000000,0.000000,0.250000,0,0);}
.m4a_c00033{transform:matrix(0.251222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251222,0.000000,0.000000,0.250000,0,0);}
.m9_c00033{transform:matrix(0.252202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252202,0.000000,0.000000,0.250000,0,0);}
.m72_c00033{transform:matrix(0.252435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252435,0.000000,0.000000,0.250000,0,0);}
.m92_c00033{transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);}
.m2_c00033{transform:matrix(0.255023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255023,0.000000,0.000000,0.250000,0,0);}
.m1f_c00033{transform:matrix(0.255640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255640,0.000000,0.000000,0.250000,0,0);}
.m9f_c00033{transform:matrix(0.256680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256680,0.000000,0.000000,0.250000,0,0);}
.m97_c00033{transform:matrix(0.257042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257042,0.000000,0.000000,0.250000,0,0);}
.m43_c00033{transform:matrix(0.258258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258258,0.000000,0.000000,0.250000,0,0);}
.m81_c00033{transform:matrix(0.258509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258509,0.000000,0.000000,0.250000,0,0);}
.mf_c00033{transform:matrix(0.258686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258686,0.000000,0.000000,0.250000,0,0);}
.m68_c00033{transform:matrix(0.258788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258788,0.000000,0.000000,0.250000,0,0);}
.m35_c00033{transform:matrix(0.260564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260564,0.000000,0.000000,0.250000,0,0);}
.m58_c00033{transform:matrix(0.260756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260756,0.000000,0.000000,0.250000,0,0);}
.m3d_c00033{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m2a_c00033{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.m87_c00033{transform:matrix(0.261938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261938,0.000000,0.000000,0.250000,0,0);}
.m24_c00033{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.ma_c00033{transform:matrix(0.263649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263649,0.000000,0.000000,0.250000,0,0);}
.m64_c00033{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m8b_c00033{transform:matrix(0.264886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264886,0.000000,0.000000,0.250000,0,0);}
.m47_c00033{transform:matrix(0.266174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266174,0.000000,0.000000,0.250000,0,0);}
.m62_c00033{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m6f_c00033{transform:matrix(0.266265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266265,0.000000,0.000000,0.250000,0,0);}
.m1a_c00033{transform:matrix(0.267847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267847,0.000000,0.000000,0.250000,0,0);}
.mc_c00033{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m90_c00033{transform:matrix(0.268177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268177,0.000000,0.000000,0.250000,0,0);}
.m53_c00033{transform:matrix(0.268484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268484,0.000000,0.000000,0.250000,0,0);}
.m98_c00033{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.m46_c00033{transform:matrix(0.269571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269571,0.000000,0.000000,0.250000,0,0);}
.m4_c00033{transform:matrix(0.270400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270400,0.000000,0.000000,0.250000,0,0);}
.m15_c00033{transform:matrix(0.270676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270676,0.000000,0.000000,0.250000,0,0);}
.m21_c00033{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m25_c00033{transform:matrix(0.271348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271348,0.000000,0.000000,0.250000,0,0);}
.m32_c00033{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m88_c00033{transform:matrix(0.273482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273482,0.000000,0.000000,0.250000,0,0);}
.m65_c00033{transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);}
.m74_c00033{transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);}
.m34_c00033{transform:matrix(0.275080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275080,0.000000,0.000000,0.250000,0,0);}
.m69_c00033{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m5_c00033{transform:matrix(0.275697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275697,0.000000,0.000000,0.250000,0,0);}
.m7e_c00033{transform:matrix(0.276265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276265,0.000000,0.000000,0.250000,0,0);}
.m2b_c00033{transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);}
.ma2_c00033{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m40_c00033{transform:matrix(0.277223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277223,0.000000,0.000000,0.250000,0,0);}
.m5a_c00033{transform:matrix(0.277769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277769,0.000000,0.000000,0.250000,0,0);}
.m59_c00033{transform:matrix(0.277902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277902,0.000000,0.000000,0.250000,0,0);}
.me_c00033{transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);}
.md_c00033{transform:matrix(0.279663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279663,0.000000,0.000000,0.250000,0,0);}
.m75_c00033{transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);}
.m7b_c00033{transform:matrix(0.280174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280174,0.000000,0.000000,0.250000,0,0);}
.m7_c00033{transform:matrix(0.281937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281937,0.000000,0.000000,0.250000,0,0);}
.m7a_c00033{transform:matrix(0.282820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282820,0.000000,0.000000,0.250000,0,0);}
.m2e_c00033{transform:matrix(0.284404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284404,0.000000,0.000000,0.250000,0,0);}
.m79_c00033{transform:matrix(0.284537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284537,0.000000,0.000000,0.250000,0,0);}
.m83_c00033{transform:matrix(0.285158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285158,0.000000,0.000000,0.250000,0,0);}
.m26_c00033{transform:matrix(0.285189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285189,0.000000,0.000000,0.250000,0,0);}
.m70_c00033{transform:matrix(0.286391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286391,0.000000,0.000000,0.250000,0,0);}
.m30_c00033{transform:matrix(0.286849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286849,0.000000,0.000000,0.250000,0,0);}
.m4e_c00033{transform:matrix(0.287440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287440,0.000000,0.000000,0.250000,0,0);}
.m9b_c00033{transform:matrix(0.287771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287771,0.000000,0.000000,0.250000,0,0);}
.m41_c00033{transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);}
.m6b_c00033{transform:matrix(0.288545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288545,0.000000,0.000000,0.250000,0,0);}
.m1c_c00033{transform:matrix(0.288974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288974,0.000000,0.000000,0.250000,0,0);}
.m39_c00033{transform:matrix(0.288994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288994,0.000000,0.000000,0.250000,0,0);}
.m4b_c00033{transform:matrix(0.289344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289344,0.000000,0.000000,0.250000,0,0);}
.m0_c00033{transform:matrix(0.290342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290342,0.000000,0.000000,0.250000,0,0);}
.m8d_c00033{transform:matrix(0.290895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290895,0.000000,0.000000,0.250000,0,0);}
.m19_c00033{transform:matrix(0.292134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292134,0.000000,0.000000,0.250000,0,0);}
.m31_c00033{transform:matrix(0.292836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292836,0.000000,0.000000,0.250000,0,0);}
.ma3_c00033{transform:matrix(0.293062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293062,0.000000,0.000000,0.250000,0,0);}
.m48_c00033{transform:matrix(0.293098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293098,0.000000,0.000000,0.250000,0,0);}
.m42_c00033{transform:matrix(0.293350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293350,0.000000,0.000000,0.250000,0,0);}
.m1b_c00033{transform:matrix(0.294189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294189,0.000000,0.000000,0.250000,0,0);}
.m38_c00033{transform:matrix(0.295436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295436,0.000000,0.000000,0.250000,0,0);}
.m54_c00033{transform:matrix(0.295540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295540,0.000000,0.000000,0.250000,0,0);}
.m82_c00033{transform:matrix(0.296076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296076,0.000000,0.000000,0.250000,0,0);}
.m8e_c00033{transform:matrix(0.296802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296802,0.000000,0.000000,0.250000,0,0);}
.m80_c00033{transform:matrix(0.296948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296948,0.000000,0.000000,0.250000,0,0);}
.m1d_c00033{transform:matrix(0.297286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297286,0.000000,0.000000,0.250000,0,0);}
.ma5_c00033{transform:matrix(0.297381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297381,0.000000,0.000000,0.250000,0,0);}
.ma4_c00033{transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);}
.m6_c00033{transform:matrix(0.298500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00033{transform:matrix(0.298650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298650,0.000000,0.000000,0.250000,0,0);}
.m93_c00033{transform:matrix(0.298776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298776,0.000000,0.000000,0.250000,0,0);}
.m18_c00033{transform:matrix(0.299044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299044,0.000000,0.000000,0.250000,0,0);}
.m22_c00033{transform:matrix(0.300973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300973,0.000000,0.000000,0.250000,0,0);}
.m9e_c00033{transform:matrix(0.301785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301785,0.000000,0.000000,0.250000,0,0);}
.m9d_c00033{transform:matrix(0.302626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302626,0.000000,0.000000,0.250000,0,0);}
.ma9_c00033{transform:matrix(0.303353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303353,0.000000,0.000000,0.250000,0,0);}
.m3e_c00033{transform:matrix(0.304255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304255,0.000000,0.000000,0.250000,0,0);}
.m8f_c00033{transform:matrix(0.305149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305149,0.000000,0.000000,0.250000,0,0);}
.m95_c00033{transform:matrix(0.305270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305270,0.000000,0.000000,0.250000,0,0);}
.m36_c00033{transform:matrix(0.305639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305639,0.000000,0.000000,0.250000,0,0);}
.m45_c00033{transform:matrix(0.305655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305655,0.000000,0.000000,0.250000,0,0);}
.m56_c00033{transform:matrix(0.306326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306326,0.000000,0.000000,0.250000,0,0);}
.m14_c00033{transform:matrix(0.306525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306525,0.000000,0.000000,0.250000,0,0);}
.m86_c00033{transform:matrix(0.307194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307194,0.000000,0.000000,0.250000,0,0);}
.m77_c00033{transform:matrix(0.307232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307232,0.000000,0.000000,0.250000,0,0);}
.m94_c00033{transform:matrix(0.307853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307853,0.000000,0.000000,0.250000,0,0);}
.m28_c00033{transform:matrix(0.308232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308232,0.000000,0.000000,0.250000,0,0);}
.m96_c00033{transform:matrix(0.308507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308507,0.000000,0.000000,0.250000,0,0);}
.m27_c00033{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m7d_c00033{transform:matrix(0.308989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308989,0.000000,0.000000,0.250000,0,0);}
.m6d_c00033{transform:matrix(0.309403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309403,0.000000,0.000000,0.250000,0,0);}
.m61_c00033{transform:matrix(0.310619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310619,0.000000,0.000000,0.250000,0,0);}
.m17_c00033{transform:matrix(0.311143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311143,0.000000,0.000000,0.250000,0,0);}
.m52_c00033{transform:matrix(0.312157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312157,0.000000,0.000000,0.250000,0,0);}
.ma6_c00033{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.m44_c00033{transform:matrix(0.312751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312751,0.000000,0.000000,0.250000,0,0);}
.ma0_c00033{transform:matrix(0.315045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315045,0.000000,0.000000,0.250000,0,0);}
.m99_c00033{transform:matrix(0.315773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315773,0.000000,0.000000,0.250000,0,0);}
.m10_c00033{transform:matrix(0.317430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317430,0.000000,0.000000,0.250000,0,0);}
.m6c_c00033{transform:matrix(0.317996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317996,0.000000,0.000000,0.250000,0,0);}
.m20_c00033{transform:matrix(0.318082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318082,0.000000,0.000000,0.250000,0,0);}
.m12_c00033{transform:matrix(0.318542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318542,0.000000,0.000000,0.250000,0,0);}
.m16_c00033{transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);}
.m78_c00033{transform:matrix(0.319129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319129,0.000000,0.000000,0.250000,0,0);}
.m51_c00033{transform:matrix(0.319469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319469,0.000000,0.000000,0.250000,0,0);}
.m8a_c00033{transform:matrix(0.319503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319503,0.000000,0.000000,0.250000,0,0);}
.m9a_c00033{transform:matrix(0.319540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319540,0.000000,0.000000,0.250000,0,0);}
.m8_c00033{transform:matrix(0.319859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319859,0.000000,0.000000,0.250000,0,0);}
.m33_c00033{transform:matrix(0.320732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320732,0.000000,0.000000,0.250000,0,0);}
.m3_c00033{transform:matrix(0.321006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321006,0.000000,0.000000,0.250000,0,0);}
.m73_c00033{transform:matrix(0.321107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321107,0.000000,0.000000,0.250000,0,0);}
.m29_c00033{transform:matrix(0.323652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323652,0.000000,0.000000,0.250000,0,0);}
.m3b_c00033{transform:matrix(0.324300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324300,0.000000,0.000000,0.250000,0,0);}
.ma1_c00033{transform:matrix(0.326063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326063,0.000000,0.000000,0.250000,0,0);}
.m4f_c00033{transform:matrix(0.326627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326627,0.000000,0.000000,0.250000,0,0);}
.m8c_c00033{transform:matrix(0.328208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328208,0.000000,0.000000,0.250000,0,0);}
.m9c_c00033{transform:matrix(0.328833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328833,0.000000,0.000000,0.250000,0,0);}
.m55_c00033{transform:matrix(0.329489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329489,0.000000,0.000000,0.250000,0,0);}
.m23_c00033{transform:matrix(0.332395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332395,0.000000,0.000000,0.250000,0,0);}
.m2d_c00033{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m85_c00033{transform:matrix(0.333419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333419,0.000000,0.000000,0.250000,0,0);}
.mb_c00033{transform:matrix(0.333549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333549,0.000000,0.000000,0.250000,0,0);}
.m7f_c00033{transform:matrix(0.336458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336458,0.000000,0.000000,0.250000,0,0);}
.m2c_c00033{transform:matrix(0.336592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336592,0.000000,0.000000,0.250000,0,0);}
.m91_c00033{transform:matrix(0.336969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336969,0.000000,0.000000,0.250000,0,0);}
.m57_c00033{transform:matrix(0.338414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338414,0.000000,0.000000,0.250000,0,0);}
.m84_c00033{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m4d_c00033{transform:matrix(0.340015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340015,0.000000,0.000000,0.250000,0,0);}
.m49_c00033{transform:matrix(0.340270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340270,0.000000,0.000000,0.250000,0,0);}
.m71_c00033{transform:matrix(0.340436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340436,0.000000,0.000000,0.250000,0,0);}
.m63_c00033{transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);}
.m2f_c00033{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m1e_c00033{transform:matrix(0.353264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353264,0.000000,0.000000,0.250000,0,0);}
.m37_c00033{transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);}
.m3c_c00033{transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);}
.m4c_c00033{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m50_c00033{transform:matrix(0.355832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355832,0.000000,0.000000,0.250000,0,0);}
.ma7_c00033{transform:matrix(0.359950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359950,0.000000,0.000000,0.250000,0,0);}
.m66_c00033{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m89_c00033{transform:matrix(0.363573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363573,0.000000,0.000000,0.250000,0,0);}
.m67_c00033{transform:matrix(0.364074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364074,0.000000,0.000000,0.250000,0,0);}
.m3a_c00033{transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);}
.m13_c00033{transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);}
.m5b_c00033{transform:matrix(0.375221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375221,0.000000,0.000000,0.250000,0,0);}
.m5d_c00033{transform:matrix(0.428034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428034,0.000000,0.000000,0.250000,0,0);}
.m60_c00033{transform:matrix(0.495809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495809,0.000000,0.000000,0.250000,0,0);}
.m5f_c00033{transform:matrix(0.591243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591243,0.000000,0.000000,0.250000,0,0);}
.m5e_c00033{transform:matrix(0.960772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.960772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.960772,0.000000,0.000000,0.250000,0,0);}
.m7c_c00033{transform:matrix(1.494211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.494211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.494211,0.000000,0.000000,0.250000,0,0);}
.m5c_c00033{transform:matrix(1.542346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.542346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.542346,0.000000,0.000000,0.250000,0,0);}
.v0_c00033{vertical-align:0.000000px;}
.ls1c_c00033{letter-spacing:-2.744280px;}
.ls8_c00033{letter-spacing:-1.779862px;}
.ls13_c00033{letter-spacing:-1.670090px;}
.lsb_c00033{letter-spacing:-1.325095px;}
.ls19_c00033{letter-spacing:-0.893851px;}
.ls15_c00033{letter-spacing:-0.846806px;}
.ls6_c00033{letter-spacing:0.000000px;}
.ls17_c00033{letter-spacing:0.188100px;}
.lsf_c00033{letter-spacing:0.227710px;}
.ls16_c00033{letter-spacing:0.235224px;}
.ls11_c00033{letter-spacing:0.475210px;}
.ls12_c00033{letter-spacing:0.792000px;}
.ls10_c00033{letter-spacing:1.019700px;}
.lse_c00033{letter-spacing:1.029600px;}
.ls18_c00033{letter-spacing:1.199642px;}
.ls1b_c00033{letter-spacing:1.246687px;}
.ls2_c00033{letter-spacing:1.254528px;}
.lsd_c00033{letter-spacing:2.509056px;}
.ls0_c00033{letter-spacing:2.948141px;}
.ls4_c00033{letter-spacing:3.293136px;}
.lsc_c00033{letter-spacing:3.442111px;}
.ls7_c00033{letter-spacing:3.528360px;}
.ls1_c00033{letter-spacing:3.536201px;}
.ls1a_c00033{letter-spacing:3.559723px;}
.ls9_c00033{letter-spacing:3.603610px;}
.ls5_c00033{letter-spacing:3.920400px;}
.lsa_c00033{letter-spacing:4.474810px;}
.ls14_c00033{letter-spacing:51.321798px;}
.ls3_c00033{letter-spacing:72.798264px;}
.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:-7.762392px;}
.ws1_c00033{word-spacing:0.000000px;}
._9_c00033{margin-left:-17.798616px;}
._5_c00033{width:1.488960px;}
._4_c00033{width:6.429456px;}
._1_c00033{width:9.173340px;}
._0_c00033{width:24.306480px;}
._3_c00033{width:30.879526px;}
._6_c00033{width:38.669400px;}
._8_c00033{width:69.705900px;}
._2_c00033{width:334.253700px;}
._7_c00033{width:466.131600px;}
.fc0_c00033{color:transparent;}
.fs11_c00033{font-size:3.762000px;}
.fs9_c00033{font-size:4.158000px;}
.fs7_c00033{font-size:4.554198px;}
.fsa_c00033{font-size:9.504198px;}
.fsb_c00033{font-size:15.840000px;}
.fs2_c00033{font-size:19.998000px;}
.fs8_c00033{font-size:20.394000px;}
.fs6_c00033{font-size:20.592000px;}
.fs1_c00033{font-size:22.176000px;}
.fs3_c00033{font-size:25.344000px;}
.fs10_c00033{font-size:45.144000px;}
.fse_c00033{font-size:51.321798px;}
.fsc_c00033{font-size:60.192000px;}
.fsf_c00033{font-size:66.330000px;}
.fsd_c00033{font-size:66.528000px;}
.fs4_c00033{font-size:72.072198px;}
.fs12_c00033{font-size:76.032198px;}
.fs0_c00033{font-size:78.408000px;}
.fs13_c00033{font-size:78.804000px;}
.fs5_c00033{font-size:89.496198px;}
.y0_c00033{bottom:0.000000px;}
.y24_c00033{bottom:52.654185px;}
.y1_c00033{bottom:76.500000px;}
.y23_c00033{bottom:169.558335px;}
.y22_c00033{bottom:205.198335px;}
.y21_c00033{bottom:238.699935px;}
.y20_c00033{bottom:270.770985px;}
.y1f_c00033{bottom:295.723935px;}
.y1e_c00033{bottom:303.208335px;}
.y1d_c00033{bottom:334.927935px;}
.y1c_c00033{bottom:398.723535px;}
.y1b_c00033{bottom:426.166335px;}
.y1a_c00033{bottom:431.863785px;}
.y19_c00033{bottom:464.301135px;}
.y18_c00033{bottom:492.095385px;}
.y17_c00033{bottom:496.372185px;}
.y16_c00033{bottom:525.240585px;}
.y14_c00033{bottom:529.873785px;}
.y15_c00033{bottom:530.591535px;}
.y13_c00033{bottom:558.747135px;}
.y11_c00033{bottom:562.311135px;}
.y12_c00033{bottom:563.018985px;}
.y10_c00033{bottom:595.451385px;}
.yf_c00033{bottom:627.883785px;}
.ye_c00033{bottom:691.679385px;}
.yd_c00033{bottom:724.116735px;}
.yc_c00033{bottom:756.192735px;}
.yb_c00033{bottom:788.981535px;}
.ya_c00033{bottom:814.993785px;}
.y8_c00033{bottom:821.052585px;}
.y9_c00033{bottom:821.408985px;}
.y7_c00033{bottom:848.138985px;}
.y6_c00033{bottom:853.841385px;}
.y5_c00033{bottom:886.630185px;}
.y4_c00033{bottom:919.062585px;}
.y3_c00033{bottom:944.010585px;}
.y2_c00033{bottom:1064.830185px;}
.h12_c00033{height:3.923648px;}
.ha_c00033{height:4.469696px;}
.hc_c00033{height:9.327851px;}
.hd_c00033{height:15.963750px;}
.hb_c00033{height:20.015596px;}
.h4_c00033{height:20.154234px;}
.h9_c00033{height:20.209922px;}
.h3_c00033{height:23.128875px;}
.h5_c00033{height:24.873750px;}
.hf_c00033{height:34.180317px;}
.h11_c00033{height:47.083781px;}
.h10_c00033{height:69.180117px;}
.he_c00033{height:69.386625px;}
.h7_c00033{height:70.734921px;}
.h6_c00033{height:72.635262px;}
.h2_c00033{height:76.953164px;}
.h14_c00033{height:77.341816px;}
.h13_c00033{height:79.299207px;}
.h8_c00033{height:87.835624px;}
.h1_c00033{height:1110.000000px;}
.h0_c00033{height:1263.000000px;}
.w1_c00033{width:733.500000px;}
.w0_c00033{width:892.500000px;}
.x0_c00033{left:0.000000px;}
.x35_c00033{left:74.779185px;}
.x14_c00033{left:75.883035px;}
.xb_c00033{left:78.204585px;}
.x1_c00033{left:79.500000px;}
.x66_c00033{left:98.177835px;}
.x2c_c00033{left:105.860235px;}
.x32_c00033{left:107.389785px;}
.xc_c00033{left:108.770835px;}
.x43_c00033{left:118.121385px;}
.x4_c00033{left:128.555985px;}
.x6b_c00033{left:129.689535px;}
.xd_c00033{left:139.134135px;}
.x15_c00033{left:140.218185px;}
.x2d_c00033{left:150.920085px;}
.x67_c00033{left:152.340735px;}
.x1c_c00033{left:160.745835px;}
.x53_c00033{left:162.270435px;}
.x5c_c00033{left:173.368335px;}
.x5_c00033{left:183.797985px;}
.x2e_c00033{left:185.406735px;}
.x33_c00033{left:195.816585px;}
.x5d_c00033{left:206.305635px;}
.x24_c00033{left:207.562935px;}
.x36_c00033{left:217.017435px;}
.x4e_c00033{left:218.972685px;}
.xe_c00033{left:228.615285px;}
.x1d_c00033{left:239.663685px;}
.x4f_c00033{left:251.692185px;}
.xf_c00033{left:262.151535px;}
.x16_c00033{left:272.759385px;}
.x37_c00033{left:285.253185px;}
.x5a_c00033{left:291.544635px;}
.x2f_c00033{left:295.138335px;}
.x6_c00033{left:297.707385px;}
.x17_c00033{left:305.691735px;}
.x1e_c00033{left:307.033185px;}
.x25_c00033{left:308.696385px;}
.x54_c00033{left:318.086535px;}
.x50_c00033{left:327.541035px;}
.x1b_c00033{left:329.278485px;}
.x1f_c00033{left:339.331935px;}
.x64_c00033{left:341.168385px;}
.x3c_c00033{left:342.970185px;}
.x58_c00033{left:350.652585px;}
.x68_c00033{left:351.776235px;}
.x38_c00033{left:372.600885px;}
.x61_c00033{left:373.635435px;}
.x18_c00033{left:384.347235px;}
.x39_c00033{left:395.291685px;}
.x5e_c00033{left:398.187435px;}
.x41_c00033{left:406.419285px;}
.x26_c00033{left:416.180685px;}
.x59_c00033{left:417.507285px;}
.x69_c00033{left:418.566585px;}
.x48_c00033{left:424.501635px;}
.x3a_c00033{left:428.426985px;}
.x55_c00033{left:429.595185px;}
.x7_c00033{left:430.639635px;}
.x3_c00033{left:436.163835px;}
.x20_c00033{left:439.524885px;}
.x49_c00033{left:441.801885px;}
.x5b_c00033{left:448.004235px;}
.x30_c00033{left:450.296085px;}
.x5f_c00033{left:451.637535px;}
.x56_c00033{left:460.121835px;}
.x21_c00033{left:461.666235px;}
.x3d_c00033{left:472.209735px;}
.x62_c00033{left:474.150135px;}
.x8_c00033{left:481.862235px;}
.x27_c00033{left:484.134285px;}
.x4a_c00033{left:487.133985px;}
.x10_c00033{left:493.519485px;}
.x52_c00033{left:494.697585px;}
.x57_c00033{left:504.627285px;}
.x44_c00033{left:505.632135px;}
.x3b_c00033{left:508.315035px;}
.x3e_c00033{left:516.210285px;}
.x31_c00033{left:517.393335px;}
.x9_c00033{left:527.065635px;}
.x19_c00033{left:528.278385px;}
.x45_c00033{left:539.014935px;}
.x28_c00033{left:549.345585px;}
.x11_c00033{left:550.409835px;}
.x22_c00033{left:561.482985px;}
.x3f_c00033{left:571.605735px;}
.x12_c00033{left:582.753135px;}
.x65_c00033{left:583.767885px;}
.x29_c00033{left:594.232185px;}
.x46_c00033{left:605.344935px;}
.x13_c00033{left:607.067535px;}
.xa_c00033{left:616.690335px;}
.x6a_c00033{left:618.130785px;}
.x40_c00033{left:626.946735px;}
.x63_c00033{left:628.105035px;}
.x42_c00033{left:636.515085px;}
.x34_c00033{left:638.074335px;}
.x51_c00033{left:639.158385px;}
.x2_c00033{left:648.033735px;}
.x60_c00033{left:649.880085px;}
.x1a_c00033{left:660.091935px;}
.x2a_c00033{left:671.417535px;}
.x47_c00033{left:682.307535px;}
.x4b_c00033{left:685.891335px;}
.x4c_c00033{left:690.955185px;}
.x23_c00033{left:696.776385px;}
.x2b_c00033{left:699.771135px;}
.x4d_c00033{left:703.102485px;}
@media print{
.v0_c00033{vertical-align:0.000000pt;}
.ls1c_c00033{letter-spacing:-2.439360pt;}
.ls8_c00033{letter-spacing:-1.582099pt;}
.ls13_c00033{letter-spacing:-1.484525pt;}
.lsb_c00033{letter-spacing:-1.177862pt;}
.ls19_c00033{letter-spacing:-0.794534pt;}
.ls15_c00033{letter-spacing:-0.752717pt;}
.ls6_c00033{letter-spacing:0.000000pt;}
.ls17_c00033{letter-spacing:0.167200pt;}
.lsf_c00033{letter-spacing:0.202409pt;}
.ls16_c00033{letter-spacing:0.209088pt;}
.ls11_c00033{letter-spacing:0.422409pt;}
.ls12_c00033{letter-spacing:0.704000pt;}
.ls10_c00033{letter-spacing:0.906400pt;}
.lse_c00033{letter-spacing:0.915200pt;}
.ls18_c00033{letter-spacing:1.066349pt;}
.ls1b_c00033{letter-spacing:1.108166pt;}
.ls2_c00033{letter-spacing:1.115136pt;}
.lsd_c00033{letter-spacing:2.230272pt;}
.ls0_c00033{letter-spacing:2.620570pt;}
.ls4_c00033{letter-spacing:2.927232pt;}
.lsc_c00033{letter-spacing:3.059654pt;}
.ls7_c00033{letter-spacing:3.136320pt;}
.ls1_c00033{letter-spacing:3.143290pt;}
.ls1a_c00033{letter-spacing:3.164198pt;}
.ls9_c00033{letter-spacing:3.203209pt;}
.ls5_c00033{letter-spacing:3.484800pt;}
.lsa_c00033{letter-spacing:3.977609pt;}
.ls14_c00033{letter-spacing:45.619376pt;}
.ls3_c00033{letter-spacing:64.709568pt;}
.ws0_c00033{word-spacing:-6.899904pt;}
.ws1_c00033{word-spacing:0.000000pt;}
._9_c00033{margin-left:-15.820992pt;}
._5_c00033{width:1.323520pt;}
._4_c00033{width:5.715072pt;}
._1_c00033{width:8.154080pt;}
._0_c00033{width:21.605760pt;}
._3_c00033{width:27.448467pt;}
._6_c00033{width:34.372800pt;}
._8_c00033{width:61.960800pt;}
._2_c00033{width:297.114400pt;}
._7_c00033{width:414.339200pt;}
.fs11_c00033{font-size:3.344000pt;}
.fs9_c00033{font-size:3.696000pt;}
.fs7_c00033{font-size:4.048176pt;}
.fsa_c00033{font-size:8.448176pt;}
.fsb_c00033{font-size:14.080000pt;}
.fs2_c00033{font-size:17.776000pt;}
.fs8_c00033{font-size:18.128000pt;}
.fs6_c00033{font-size:18.304000pt;}
.fs1_c00033{font-size:19.712000pt;}
.fs3_c00033{font-size:22.528000pt;}
.fs10_c00033{font-size:40.128000pt;}
.fse_c00033{font-size:45.619376pt;}
.fsc_c00033{font-size:53.504000pt;}
.fsf_c00033{font-size:58.960000pt;}
.fsd_c00033{font-size:59.136000pt;}
.fs4_c00033{font-size:64.064176pt;}
.fs12_c00033{font-size:67.584176pt;}
.fs0_c00033{font-size:69.696000pt;}
.fs13_c00033{font-size:70.048000pt;}
.fs5_c00033{font-size:79.552176pt;}
.y0_c00033{bottom:0.000000pt;}
.y24_c00033{bottom:46.803720pt;}
.y1_c00033{bottom:68.000000pt;}
.y23_c00033{bottom:150.718520pt;}
.y22_c00033{bottom:182.398520pt;}
.y21_c00033{bottom:212.177720pt;}
.y20_c00033{bottom:240.685320pt;}
.y1f_c00033{bottom:262.865720pt;}
.y1e_c00033{bottom:269.518520pt;}
.y1d_c00033{bottom:297.713720pt;}
.y1c_c00033{bottom:354.420920pt;}
.y1b_c00033{bottom:378.814520pt;}
.y1a_c00033{bottom:383.878920pt;}
.y19_c00033{bottom:412.712120pt;}
.y18_c00033{bottom:437.418120pt;}
.y17_c00033{bottom:441.219720pt;}
.y16_c00033{bottom:466.880520pt;}
.y14_c00033{bottom:470.998920pt;}
.y15_c00033{bottom:471.636920pt;}
.y13_c00033{bottom:496.664120pt;}
.y11_c00033{bottom:499.832120pt;}
.y12_c00033{bottom:500.461320pt;}
.y10_c00033{bottom:529.290120pt;}
.yf_c00033{bottom:558.118920pt;}
.ye_c00033{bottom:614.826120pt;}
.yd_c00033{bottom:643.659320pt;}
.yc_c00033{bottom:672.171320pt;}
.yb_c00033{bottom:701.316920pt;}
.ya_c00033{bottom:724.438920pt;}
.y8_c00033{bottom:729.824520pt;}
.y9_c00033{bottom:730.141320pt;}
.y7_c00033{bottom:753.901320pt;}
.y6_c00033{bottom:758.970120pt;}
.y5_c00033{bottom:788.115720pt;}
.y4_c00033{bottom:816.944520pt;}
.y3_c00033{bottom:839.120520pt;}
.y2_c00033{bottom:946.515720pt;}
.h12_c00033{height:3.487688pt;}
.ha_c00033{height:3.973063pt;}
.hc_c00033{height:8.291423pt;}
.hd_c00033{height:14.190000pt;}
.hb_c00033{height:17.791641pt;}
.h4_c00033{height:17.914875pt;}
.h9_c00033{height:17.964375pt;}
.h3_c00033{height:20.559000pt;}
.h5_c00033{height:22.110000pt;}
.hf_c00033{height:30.382504pt;}
.h11_c00033{height:41.852250pt;}
.h10_c00033{height:61.493438pt;}
.he_c00033{height:61.677000pt;}
.h7_c00033{height:62.875485pt;}
.h6_c00033{height:64.564677pt;}
.h2_c00033{height:68.402813pt;}
.h14_c00033{height:68.748281pt;}
.h13_c00033{height:70.488184pt;}
.h8_c00033{height:78.076110pt;}
.h1_c00033{height:986.666667pt;}
.h0_c00033{height:1122.666667pt;}
.w1_c00033{width:652.000000pt;}
.w0_c00033{width:793.333333pt;}
.x0_c00033{left:0.000000pt;}
.x35_c00033{left:66.470387pt;}
.x14_c00033{left:67.451587pt;}
.xb_c00033{left:69.515187pt;}
.x1_c00033{left:70.666667pt;}
.x66_c00033{left:87.269187pt;}
.x2c_c00033{left:94.097987pt;}
.x32_c00033{left:95.457587pt;}
.xc_c00033{left:96.685187pt;}
.x43_c00033{left:104.996787pt;}
.x4_c00033{left:114.271987pt;}
.x6b_c00033{left:115.279587pt;}
.xd_c00033{left:123.674787pt;}
.x15_c00033{left:124.638387pt;}
.x2d_c00033{left:134.151187pt;}
.x67_c00033{left:135.413987pt;}
.x1c_c00033{left:142.885187pt;}
.x53_c00033{left:144.240387pt;}
.x5c_c00033{left:154.105187pt;}
.x5_c00033{left:163.375987pt;}
.x2e_c00033{left:164.805987pt;}
.x33_c00033{left:174.059187pt;}
.x5d_c00033{left:183.382787pt;}
.x24_c00033{left:184.500387pt;}
.x36_c00033{left:192.904387pt;}
.x4e_c00033{left:194.642387pt;}
.xe_c00033{left:203.213587pt;}
.x1d_c00033{left:213.034387pt;}
.x4f_c00033{left:223.726387pt;}
.xf_c00033{left:233.023587pt;}
.x16_c00033{left:242.452787pt;}
.x37_c00033{left:253.558387pt;}
.x5a_c00033{left:259.150787pt;}
.x2f_c00033{left:262.345187pt;}
.x6_c00033{left:264.628787pt;}
.x17_c00033{left:271.725987pt;}
.x1e_c00033{left:272.918387pt;}
.x25_c00033{left:274.396787pt;}
.x54_c00033{left:282.743587pt;}
.x50_c00033{left:291.147587pt;}
.x1b_c00033{left:292.691987pt;}
.x1f_c00033{left:301.628387pt;}
.x64_c00033{left:303.260787pt;}
.x3c_c00033{left:304.862387pt;}
.x58_c00033{left:311.691187pt;}
.x68_c00033{left:312.689987pt;}
.x38_c00033{left:331.200787pt;}
.x61_c00033{left:332.120387pt;}
.x18_c00033{left:341.641987pt;}
.x39_c00033{left:351.370387pt;}
.x5e_c00033{left:353.944387pt;}
.x41_c00033{left:361.261587pt;}
.x26_c00033{left:369.938387pt;}
.x59_c00033{left:371.117587pt;}
.x69_c00033{left:372.059187pt;}
.x48_c00033{left:377.334787pt;}
.x3a_c00033{left:380.823987pt;}
.x55_c00033{left:381.862387pt;}
.x7_c00033{left:382.790787pt;}
.x3_c00033{left:387.701187pt;}
.x20_c00033{left:390.688787pt;}
.x49_c00033{left:392.712787pt;}
.x5b_c00033{left:398.225987pt;}
.x30_c00033{left:400.263187pt;}
.x5f_c00033{left:401.455587pt;}
.x56_c00033{left:408.997187pt;}
.x21_c00033{left:410.369987pt;}
.x3d_c00033{left:419.741987pt;}
.x62_c00033{left:421.466787pt;}
.x8_c00033{left:428.321987pt;}
.x27_c00033{left:430.341587pt;}
.x4a_c00033{left:433.007987pt;}
.x10_c00033{left:438.683987pt;}
.x52_c00033{left:439.731187pt;}
.x57_c00033{left:448.557587pt;}
.x44_c00033{left:449.450787pt;}
.x3b_c00033{left:451.835587pt;}
.x3e_c00033{left:458.853587pt;}
.x31_c00033{left:459.905187pt;}
.x9_c00033{left:468.502787pt;}
.x19_c00033{left:469.580787pt;}
.x45_c00033{left:479.124387pt;}
.x28_c00033{left:488.307187pt;}
.x11_c00033{left:489.253187pt;}
.x22_c00033{left:499.095987pt;}
.x3f_c00033{left:508.093987pt;}
.x12_c00033{left:518.002787pt;}
.x65_c00033{left:518.904787pt;}
.x29_c00033{left:528.206387pt;}
.x46_c00033{left:538.084387pt;}
.x13_c00033{left:539.615587pt;}
.xa_c00033{left:548.169187pt;}
.x6a_c00033{left:549.449587pt;}
.x40_c00033{left:557.285987pt;}
.x63_c00033{left:558.315587pt;}
.x42_c00033{left:565.791187pt;}
.x34_c00033{left:567.177187pt;}
.x51_c00033{left:568.140787pt;}
.x2_c00033{left:576.029987pt;}
.x60_c00033{left:577.671187pt;}
.x1a_c00033{left:586.748387pt;}
.x2a_c00033{left:596.815587pt;}
.x47_c00033{left:606.495587pt;}
.x4b_c00033{left:609.681187pt;}
.x4c_c00033{left:614.182387pt;}
.x23_c00033{left:619.356787pt;}
.x2b_c00033{left:622.018787pt;}
.x4d_c00033{left:624.979987pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2f2dc59f68399752f4318fcc.woff2')format("woff");}.ff1_c00034{font-family:ff1_c00034;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00034;src:url('chunks/assets/font_181caaed4a414ebd58404aac.woff2')format("woff");}.ff2_c00034{font-family:ff2_c00034;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00034;src:url('chunks/assets/font_5b1ffe57035f2f3ade4a6ee3.woff2')format("woff");}.ff3_c00034{font-family:ff3_c00034;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00034;src:url('chunks/assets/font_e76ebd39f97e3cfa4a1e6e48.woff2')format("woff");}.ff4_c00034{font-family:ff4_c00034;line-height:0.666000;font-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_c00034{transform:matrix(0.171528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171528,0.000000,0.000000,0.250000,0,0);}
.m14_c00034{transform:matrix(0.172569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172569,0.000000,0.000000,0.250000,0,0);}
.m9b_c00034{transform:matrix(0.192568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192568,0.000000,0.000000,0.250000,0,0);}
.m9d_c00034{transform:matrix(0.206081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206081,0.000000,0.000000,0.250000,0,0);}
.m9c_c00034{transform:matrix(0.209460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209460,0.000000,0.000000,0.250000,0,0);}
.m1a_c00034{transform:matrix(0.212674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212674,0.000000,0.000000,0.250000,0,0);}
.m56_c00034{transform:matrix(0.231551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231551,0.000000,0.000000,0.250000,0,0);}
.m0_c00034{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00034{transform:matrix(0.251508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251508,0.000000,0.000000,0.250000,0,0);}
.me_c00034{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.mb_c00034{transform:matrix(0.254504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254504,0.000000,0.000000,0.250000,0,0);}
.m86_c00034{transform:matrix(0.255103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255103,0.000000,0.000000,0.250000,0,0);}
.m9f_c00034{transform:matrix(0.257432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257432,0.000000,0.000000,0.250000,0,0);}
.m4_c00034{transform:matrix(0.257696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257696,0.000000,0.000000,0.250000,0,0);}
.m87_c00034{transform:matrix(0.260392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260392,0.000000,0.000000,0.250000,0,0);}
.m34_c00034{transform:matrix(0.260859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260859,0.000000,0.000000,0.250000,0,0);}
.m8b_c00034{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m46_c00034{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.m75_c00034{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m79_c00034{transform:matrix(0.263916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263916,0.000000,0.000000,0.250000,0,0);}
.m63_c00034{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.ma0_c00034{transform:matrix(0.265403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265403,0.000000,0.000000,0.250000,0,0);}
.m7d_c00034{transform:matrix(0.265782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265782,0.000000,0.000000,0.250000,0,0);}
.m5a_c00034{transform:matrix(0.265799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265799,0.000000,0.000000,0.250000,0,0);}
.m1d_c00034{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.m61_c00034{transform:matrix(0.267199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267199,0.000000,0.000000,0.250000,0,0);}
.m17_c00034{transform:matrix(0.267692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267692,0.000000,0.000000,0.250000,0,0);}
.m93_c00034{transform:matrix(0.267705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267705,0.000000,0.000000,0.250000,0,0);}
.m78_c00034{transform:matrix(0.267898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267898,0.000000,0.000000,0.250000,0,0);}
.m5_c00034{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m90_c00034{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.mf_c00034{transform:matrix(0.268631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268631,0.000000,0.000000,0.250000,0,0);}
.m58_c00034{transform:matrix(0.269857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269857,0.000000,0.000000,0.250000,0,0);}
.md_c00034{transform:matrix(0.270122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270122,0.000000,0.000000,0.250000,0,0);}
.m30_c00034{transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);}
.m5d_c00034{transform:matrix(0.270371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270371,0.000000,0.000000,0.250000,0,0);}
.m3f_c00034{transform:matrix(0.270843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270843,0.000000,0.000000,0.250000,0,0);}
.m43_c00034{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m5c_c00034{transform:matrix(0.271169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271169,0.000000,0.000000,0.250000,0,0);}
.m68_c00034{transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);}
.m2_c00034{transform:matrix(0.271807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271807,0.000000,0.000000,0.250000,0,0);}
.mc_c00034{transform:matrix(0.272063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272063,0.000000,0.000000,0.250000,0,0);}
.m3_c00034{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m49_c00034{transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);}
.m21_c00034{transform:matrix(0.274095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274095,0.000000,0.000000,0.250000,0,0);}
.m96_c00034{transform:matrix(0.274916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274916,0.000000,0.000000,0.250000,0,0);}
.m9_c00034{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m40_c00034{transform:matrix(0.275697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275697,0.000000,0.000000,0.250000,0,0);}
.m80_c00034{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m3d_c00034{transform:matrix(0.277352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277352,0.000000,0.000000,0.250000,0,0);}
.m4d_c00034{transform:matrix(0.277737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277737,0.000000,0.000000,0.250000,0,0);}
.m28_c00034{transform:matrix(0.277907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277907,0.000000,0.000000,0.250000,0,0);}
.m51_c00034{transform:matrix(0.278177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278177,0.000000,0.000000,0.250000,0,0);}
.m36_c00034{transform:matrix(0.278489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278489,0.000000,0.000000,0.250000,0,0);}
.m71_c00034{transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);}
.m4e_c00034{transform:matrix(0.280088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280088,0.000000,0.000000,0.250000,0,0);}
.ma3_c00034{transform:matrix(0.280961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280961,0.000000,0.000000,0.250000,0,0);}
.m4c_c00034{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.m88_c00034{transform:matrix(0.282992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282992,0.000000,0.000000,0.250000,0,0);}
.m7c_c00034{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m4f_c00034{transform:matrix(0.283758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283758,0.000000,0.000000,0.250000,0,0);}
.m9a_c00034{transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);}
.m73_c00034{transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);}
.m1b_c00034{transform:matrix(0.286926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286926,0.000000,0.000000,0.250000,0,0);}
.m10_c00034{transform:matrix(0.287284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287284,0.000000,0.000000,0.250000,0,0);}
.m33_c00034{transform:matrix(0.288134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288134,0.000000,0.000000,0.250000,0,0);}
.m84_c00034{transform:matrix(0.288176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288176,0.000000,0.000000,0.250000,0,0);}
.m44_c00034{transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);}
.m2b_c00034{transform:matrix(0.288571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288571,0.000000,0.000000,0.250000,0,0);}
.m7_c00034{transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);}
.m3a_c00034{transform:matrix(0.289432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289432,0.000000,0.000000,0.250000,0,0);}
.m72_c00034{transform:matrix(0.289461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289461,0.000000,0.000000,0.250000,0,0);}
.m89_c00034{transform:matrix(0.290232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290232,0.000000,0.000000,0.250000,0,0);}
.m26_c00034{transform:matrix(0.290388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290388,0.000000,0.000000,0.250000,0,0);}
.m74_c00034{transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);}
.m67_c00034{transform:matrix(0.290669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290669,0.000000,0.000000,0.250000,0,0);}
.m37_c00034{transform:matrix(0.291272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291272,0.000000,0.000000,0.250000,0,0);}
.m3b_c00034{transform:matrix(0.291937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291937,0.000000,0.000000,0.250000,0,0);}
.m1f_c00034{transform:matrix(0.292334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292334,0.000000,0.000000,0.250000,0,0);}
.m65_c00034{transform:matrix(0.293074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293074,0.000000,0.000000,0.250000,0,0);}
.m52_c00034{transform:matrix(0.293540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293540,0.000000,0.000000,0.250000,0,0);}
.m5e_c00034{transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);}
.m3e_c00034{transform:matrix(0.293956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293956,0.000000,0.000000,0.250000,0,0);}
.m22_c00034{transform:matrix(0.294358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294358,0.000000,0.000000,0.250000,0,0);}
.m31_c00034{transform:matrix(0.294549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294549,0.000000,0.000000,0.250000,0,0);}
.m2c_c00034{transform:matrix(0.294997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294997,0.000000,0.000000,0.250000,0,0);}
.m6f_c00034{transform:matrix(0.295580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295580,0.000000,0.000000,0.250000,0,0);}
.m8a_c00034{transform:matrix(0.295701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295701,0.000000,0.000000,0.250000,0,0);}
.m1c_c00034{transform:matrix(0.296448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296448,0.000000,0.000000,0.250000,0,0);}
.m48_c00034{transform:matrix(0.296562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296562,0.000000,0.000000,0.250000,0,0);}
.m6b_c00034{transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);}
.m19_c00034{transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);}
.m8e_c00034{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m6c_c00034{transform:matrix(0.297238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297238,0.000000,0.000000,0.250000,0,0);}
.ma2_c00034{transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);}
.m98_c00034{transform:matrix(0.298394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298394,0.000000,0.000000,0.250000,0,0);}
.m15_c00034{transform:matrix(0.298408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298408,0.000000,0.000000,0.250000,0,0);}
.m91_c00034{transform:matrix(0.298886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298886,0.000000,0.000000,0.250000,0,0);}
.ma_c00034{transform:matrix(0.299044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299044,0.000000,0.000000,0.250000,0,0);}
.m7e_c00034{transform:matrix(0.299628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299628,0.000000,0.000000,0.250000,0,0);}
.m1e_c00034{transform:matrix(0.300052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300052,0.000000,0.000000,0.250000,0,0);}
.m99_c00034{transform:matrix(0.301078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301078,0.000000,0.000000,0.250000,0,0);}
.m4b_c00034{transform:matrix(0.301260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301260,0.000000,0.000000,0.250000,0,0);}
.m2f_c00034{transform:matrix(0.301320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301320,0.000000,0.000000,0.250000,0,0);}
.m8f_c00034{transform:matrix(0.302359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302359,0.000000,0.000000,0.250000,0,0);}
.m64_c00034{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m55_c00034{transform:matrix(0.302917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302917,0.000000,0.000000,0.250000,0,0);}
.m24_c00034{transform:matrix(0.303244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303244,0.000000,0.000000,0.250000,0,0);}
.m60_c00034{transform:matrix(0.303921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303921,0.000000,0.000000,0.250000,0,0);}
.m2e_c00034{transform:matrix(0.304765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304765,0.000000,0.000000,0.250000,0,0);}
.m20_c00034{transform:matrix(0.304969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304969,0.000000,0.000000,0.250000,0,0);}
.m59_c00034{transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);}
.m39_c00034{transform:matrix(0.310220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310220,0.000000,0.000000,0.250000,0,0);}
.m62_c00034{transform:matrix(0.311594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311594,0.000000,0.000000,0.250000,0,0);}
.m27_c00034{transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);}
.m6a_c00034{transform:matrix(0.312064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312064,0.000000,0.000000,0.250000,0,0);}
.m9e_c00034{transform:matrix(0.312163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312163,0.000000,0.000000,0.250000,0,0);}
.m50_c00034{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.m16_c00034{transform:matrix(0.313434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313434,0.000000,0.000000,0.250000,0,0);}
.m47_c00034{transform:matrix(0.314958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314958,0.000000,0.000000,0.250000,0,0);}
.m32_c00034{transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);}
.m5f_c00034{transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);}
.m35_c00034{transform:matrix(0.316931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316931,0.000000,0.000000,0.250000,0,0);}
.m57_c00034{transform:matrix(0.317085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317085,0.000000,0.000000,0.250000,0,0);}
.m7b_c00034{transform:matrix(0.317216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317216,0.000000,0.000000,0.250000,0,0);}
.m85_c00034{transform:matrix(0.317268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317268,0.000000,0.000000,0.250000,0,0);}
.m69_c00034{transform:matrix(0.317379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317379,0.000000,0.000000,0.250000,0,0);}
.m45_c00034{transform:matrix(0.317996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317996,0.000000,0.000000,0.250000,0,0);}
.m66_c00034{transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);}
.m97_c00034{transform:matrix(0.319354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319354,0.000000,0.000000,0.250000,0,0);}
.m29_c00034{transform:matrix(0.319628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319628,0.000000,0.000000,0.250000,0,0);}
.m54_c00034{transform:matrix(0.319859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319859,0.000000,0.000000,0.250000,0,0);}
.m8d_c00034{transform:matrix(0.320695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320695,0.000000,0.000000,0.250000,0,0);}
.m3c_c00034{transform:matrix(0.320765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320765,0.000000,0.000000,0.250000,0,0);}
.m41_c00034{transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);}
.m7f_c00034{transform:matrix(0.323210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323210,0.000000,0.000000,0.250000,0,0);}
.m2d_c00034{transform:matrix(0.323247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323247,0.000000,0.000000,0.250000,0,0);}
.m6d_c00034{transform:matrix(0.324926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324926,0.000000,0.000000,0.250000,0,0);}
.m23_c00034{transform:matrix(0.325401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325401,0.000000,0.000000,0.250000,0,0);}
.m8c_c00034{transform:matrix(0.325583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325583,0.000000,0.000000,0.250000,0,0);}
.m6e_c00034{transform:matrix(0.325785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325785,0.000000,0.000000,0.250000,0,0);}
.ma1_c00034{transform:matrix(0.327290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327290,0.000000,0.000000,0.250000,0,0);}
.m18_c00034{transform:matrix(0.327456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327456,0.000000,0.000000,0.250000,0,0);}
.m53_c00034{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.m94_c00034{transform:matrix(0.328061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328061,0.000000,0.000000,0.250000,0,0);}
.m8_c00034{transform:matrix(0.328480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328480,0.000000,0.000000,0.250000,0,0);}
.m1_c00034{transform:matrix(0.330648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330648,0.000000,0.000000,0.250000,0,0);}
.m25_c00034{transform:matrix(0.330951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330951,0.000000,0.000000,0.250000,0,0);}
.m92_c00034{transform:matrix(0.331101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331101,0.000000,0.000000,0.250000,0,0);}
.m42_c00034{transform:matrix(0.332412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332412,0.000000,0.000000,0.250000,0,0);}
.m95_c00034{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m13_c00034{transform:matrix(0.337133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337133,0.000000,0.000000,0.250000,0,0);}
.m11_c00034{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m82_c00034{transform:matrix(0.339963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339963,0.000000,0.000000,0.250000,0,0);}
.m70_c00034{transform:matrix(0.340015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340015,0.000000,0.000000,0.250000,0,0);}
.m81_c00034{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);}
.m4a_c00034{transform:matrix(0.341968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341968,0.000000,0.000000,0.250000,0,0);}
.m77_c00034{transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);}
.m76_c00034{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m6_c00034{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m5b_c00034{transform:matrix(0.356106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356106,0.000000,0.000000,0.250000,0,0);}
.m83_c00034{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m2a_c00034{transform:matrix(0.361828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361828,0.000000,0.000000,0.250000,0,0);}
.m7a_c00034{transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);}
.m38_c00034{transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);}
.v0_c00034{vertical-align:0.000000px;}
.lsa_c00034{letter-spacing:-2.744280px;}
.ls5_c00034{letter-spacing:-2.328480px;}
.ls9_c00034{letter-spacing:-0.611582px;}
.ls1_c00034{letter-spacing:0.000000px;}
.lsc_c00034{letter-spacing:1.082030px;}
.lsb_c00034{letter-spacing:1.933767px;}
.ls8_c00034{letter-spacing:2.509056px;}
.lsd_c00034{letter-spacing:3.653813px;}
.ls3_c00034{letter-spacing:3.920400px;}
.ls2_c00034{letter-spacing:3.969900px;}
.ls0_c00034{letter-spacing:4.343823px;}
.lse_c00034{letter-spacing:4.405500px;}
.ls6_c00034{letter-spacing:51.321798px;}
.lsf_c00034{letter-spacing:52.747398px;}
.ls7_c00034{letter-spacing:54.172998px;}
.ls4_c00034{letter-spacing:64.152198px;}
.sc__c00034{text-shadow:none;}
.sc0_c00034{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00034{-webkit-text-stroke:0px transparent;}
.sc0_c00034{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00034{word-spacing:0.000000px;}
.fc0_c00034{color:transparent;}
.fs1_c00034{font-size:22.176000px;}
.fs10_c00034{font-size:26.928000px;}
.fsc_c00034{font-size:39.204000px;}
.fs8_c00034{font-size:39.600000px;}
.fs6_c00034{font-size:51.321798px;}
.fsf_c00034{font-size:52.747398px;}
.fsa_c00034{font-size:54.172998px;}
.fs4_c00034{font-size:64.152198px;}
.fsd_c00034{font-size:66.330000px;}
.fs5_c00034{font-size:66.528000px;}
.fs9_c00034{font-size:69.696198px;}
.fs7_c00034{font-size:74.844000px;}
.fse_c00034{font-size:75.834000px;}
.fs3_c00034{font-size:78.408000px;}
.fsb_c00034{font-size:78.804000px;}
.fs2_c00034{font-size:79.398000px;}
.fs0_c00034{font-size:88.110000px;}
.y0_c00034{bottom:0.000000px;}
.y1_c00034{bottom:76.500000px;}
.y1f_c00034{bottom:118.231785px;}
.y1e_c00034{bottom:132.849135px;}
.y1d_c00034{bottom:150.669135px;}
.y1c_c00034{bottom:163.855935px;}
.y1b_c00034{bottom:200.560185px;}
.y1a_c00034{bottom:234.066735px;}
.y19_c00034{bottom:298.575135px;}
.y18_c00034{bottom:331.002585px;}
.y17_c00034{bottom:363.439935px;}
.y16_c00034{bottom:395.872335px;}
.y15_c00034{bottom:428.661135px;}
.y14_c00034{bottom:460.732185px;}
.y13_c00034{bottom:493.169535px;}
.y12_c00034{bottom:518.112585px;}
.y11_c00034{bottom:525.596985px;}
.y10_c00034{bottom:558.385785px;}
.yf_c00034{bottom:590.818185px;}
.ye_c00034{bottom:655.331535px;}
.yd_c00034{bottom:683.487135px;}
.yc_c00034{bottom:687.402585px;}
.yb_c00034{bottom:720.191385px;}
.ya_c00034{bottom:735.521535px;}
.y9_c00034{bottom:752.980185px;}
.y8_c00034{bottom:786.486735px;}
.y7_c00034{bottom:820.344735px;}
.y6_c00034{bottom:850.282335px;}
.y5_c00034{bottom:853.841385px;}
.y4_c00034{bottom:886.991535px;}
.y3_c00034{bottom:983.214585px;}
.y2_c00034{bottom:1082.293785px;}
.h3_c00034{height:23.128875px;}
.h12_c00034{height:28.085063px;}
.h8_c00034{height:34.180317px;}
.h11_c00034{height:35.129767px;}
.hc_c00034{height:36.079217px;}
.he_c00034{height:38.476582px;}
.ha_c00034{height:41.301563px;}
.h6_c00034{height:42.725364px;}
.hb_c00034{height:68.403007px;}
.hf_c00034{height:69.180117px;}
.h7_c00034{height:69.386625px;}
.h9_c00034{height:73.455293px;}
.h10_c00034{height:74.426924px;}
.h5_c00034{height:76.953164px;}
.hd_c00034{height:77.341816px;}
.h4_c00034{height:80.018297px;}
.h2_c00034{height:86.475146px;}
.h1_c00034{height:1110.000000px;}
.h0_c00034{height:1263.000000px;}
.w1_c00034{width:772.500000px;}
.w0_c00034{width:892.500000px;}
.x0_c00034{left:0.000000px;}
.x1_c00034{left:60.000000px;}
.xd_c00034{left:96.165135px;}
.x1c_c00034{left:98.031285px;}
.x3f_c00034{left:99.417285px;}
.x45_c00034{left:118.722285px;}
.x65_c00034{left:120.291435px;}
.x2d_c00034{left:129.780585px;}
.x60_c00034{left:131.032935px;}
.x53_c00034{left:140.279535px;}
.x4c_c00034{left:141.838785px;}
.x4_c00034{left:152.298135px;}
.x28_c00034{left:162.005085px;}
.x46_c00034{left:163.247535px;}
.xe_c00034{left:164.351385px;}
.x35_c00034{left:173.627685px;}
.x24_c00034{left:175.053285px;}
.x36_c00034{left:183.686085px;}
.x1d_c00034{left:185.388885px;}
.x64_c00034{left:187.175835px;}
.x40_c00034{left:195.214635px;}
.x15_c00034{left:196.432335px;}
.x61_c00034{left:197.506485px;}
.xf_c00034{left:207.658935px;}
.x2e_c00034{left:217.549035px;}
.x3a_c00034{left:219.128085px;}
.x5c_c00034{left:222.023835px;}
.x5_c00034{left:229.384485px;}
.x16_c00034{left:231.300135px;}
.x5b_c00034{left:240.121035px;}
.x47_c00034{left:242.031735px;}
.x3b_c00034{left:250.674435px;}
.x54_c00034{left:252.585135px;}
.x56_c00034{left:262.895985px;}
.x62_c00034{left:264.143385px;}
.x10_c00034{left:265.529385px;}
.x1e_c00034{left:274.365135px;}
.x44_c00034{left:284.161185px;}
.x17_c00034{left:285.705585px;}
.x6_c00034{left:296.229285px;}
.x50_c00034{left:308.277585px;}
.x1f_c00034{left:318.558735px;}
.x41_c00034{left:321.474285px;}
.x29_c00034{left:329.344785px;}
.x7_c00034{left:330.448635px;}
.x25_c00034{left:341.101035px;}
.x2f_c00034{left:350.862435px;}
.x11_c00034{left:352.000935px;}
.x34_c00034{left:361.391085px;}
.x51_c00034{left:363.920535px;}
.x18_c00034{left:373.731435px;}
.x57_c00034{left:374.993685px;}
.x12_c00034{left:384.774885px;}
.x3c_c00034{left:386.378685px;}
.x2a_c00034{left:395.308485px;}
.x5d_c00034{left:397.773585px;}
.x4d_c00034{left:406.990485px;}
.x48_c00034{left:408.109185px;}
.x37_c00034{left:418.296285px;}
.x59_c00034{left:428.191335px;}
.x8_c00034{left:429.522885px;}
.x58_c00034{left:430.923735px;}
.x2b_c00034{left:439.299135px;}
.x49_c00034{left:440.888085px;}
.x30_c00034{left:451.441485px;}
.x9_c00034{left:463.341285px;}
.x31_c00034{left:472.389885px;}
.x52_c00034{left:474.721335px;}
.x20_c00034{left:485.101485px;}
.x4e_c00034{left:486.165735px;}
.xa_c00034{left:495.981585px;}
.x4a_c00034{left:507.559635px;}
.x3_c00034{left:508.767435px;}
.x3d_c00034{left:518.137785px;}
.x5a_c00034{left:529.443585px;}
.x38_c00034{left:532.116585px;}
.x13_c00034{left:540.991935px;}
.x19_c00034{left:551.263185px;}
.x21_c00034{left:562.069035px;}
.xb_c00034{left:574.503435px;}
.x3e_c00034{left:583.334235px;}
.x32_c00034{left:585.185535px;}
.x42_c00034{left:595.961685px;}
.x4f_c00034{left:607.010085px;}
.x27_c00034{left:617.642685px;}
.x39_c00034{left:620.855235px;}
.x22_c00034{left:628.666335px;}
.x43_c00034{left:641.095785px;}
.x4b_c00034{left:650.659185px;}
.x1a_c00034{left:651.901635px;}
.x2c_c00034{left:661.549185px;}
.x5f_c00034{left:662.593635px;}
.x2_c00034{left:672.528285px;}
.x14_c00034{left:673.993485px;}
.x33_c00034{left:683.992485px;}
.xc_c00034{left:685.744785px;}
.x26_c00034{left:695.377485px;}
.x23_c00034{left:705.609135px;}
.x63_c00034{left:706.658535px;}
.x5e_c00034{left:707.846535px;}
.x55_c00034{left:716.944635px;}
.x1b_c00034{left:718.385085px;}
@media print{
.v0_c00034{vertical-align:0.000000pt;}
.lsa_c00034{letter-spacing:-2.439360pt;}
.ls5_c00034{letter-spacing:-2.069760pt;}
.ls9_c00034{letter-spacing:-0.543629pt;}
.ls1_c00034{letter-spacing:0.000000pt;}
.lsc_c00034{letter-spacing:0.961805pt;}
.lsb_c00034{letter-spacing:1.718904pt;}
.ls8_c00034{letter-spacing:2.230272pt;}
.lsd_c00034{letter-spacing:3.247834pt;}
.ls3_c00034{letter-spacing:3.484800pt;}
.ls2_c00034{letter-spacing:3.528800pt;}
.ls0_c00034{letter-spacing:3.861176pt;}
.lse_c00034{letter-spacing:3.916000pt;}
.ls6_c00034{letter-spacing:45.619376pt;}
.lsf_c00034{letter-spacing:46.886576pt;}
.ls7_c00034{letter-spacing:48.153776pt;}
.ls4_c00034{letter-spacing:57.024176pt;}
.ws0_c00034{word-spacing:0.000000pt;}
.fs1_c00034{font-size:19.712000pt;}
.fs10_c00034{font-size:23.936000pt;}
.fsc_c00034{font-size:34.848000pt;}
.fs8_c00034{font-size:35.200000pt;}
.fs6_c00034{font-size:45.619376pt;}
.fsf_c00034{font-size:46.886576pt;}
.fsa_c00034{font-size:48.153776pt;}
.fs4_c00034{font-size:57.024176pt;}
.fsd_c00034{font-size:58.960000pt;}
.fs5_c00034{font-size:59.136000pt;}
.fs9_c00034{font-size:61.952176pt;}
.fs7_c00034{font-size:66.528000pt;}
.fse_c00034{font-size:67.408000pt;}
.fs3_c00034{font-size:69.696000pt;}
.fsb_c00034{font-size:70.048000pt;}
.fs2_c00034{font-size:70.576000pt;}
.fs0_c00034{font-size:78.320000pt;}
.y0_c00034{bottom:0.000000pt;}
.y1_c00034{bottom:68.000000pt;}
.y1f_c00034{bottom:105.094920pt;}
.y1e_c00034{bottom:118.088120pt;}
.y1d_c00034{bottom:133.928120pt;}
.y1c_c00034{bottom:145.649720pt;}
.y1b_c00034{bottom:178.275720pt;}
.y1a_c00034{bottom:208.059320pt;}
.y19_c00034{bottom:265.400120pt;}
.y18_c00034{bottom:294.224520pt;}
.y17_c00034{bottom:323.057720pt;}
.y16_c00034{bottom:351.886520pt;}
.y15_c00034{bottom:381.032120pt;}
.y14_c00034{bottom:409.539720pt;}
.y13_c00034{bottom:438.372920pt;}
.y12_c00034{bottom:460.544520pt;}
.y11_c00034{bottom:467.197320pt;}
.y10_c00034{bottom:496.342920pt;}
.yf_c00034{bottom:525.171720pt;}
.ye_c00034{bottom:582.516920pt;}
.yd_c00034{bottom:607.544120pt;}
.yc_c00034{bottom:611.024520pt;}
.yb_c00034{bottom:640.170120pt;}
.ya_c00034{bottom:653.796920pt;}
.y9_c00034{bottom:669.315720pt;}
.y8_c00034{bottom:699.099320pt;}
.y7_c00034{bottom:729.195320pt;}
.y6_c00034{bottom:755.806520pt;}
.y5_c00034{bottom:758.970120pt;}
.y4_c00034{bottom:788.436920pt;}
.y3_c00034{bottom:873.968520pt;}
.y2_c00034{bottom:962.038920pt;}
.h3_c00034{height:20.559000pt;}
.h12_c00034{height:24.964500pt;}
.h8_c00034{height:30.382504pt;}
.h11_c00034{height:31.226460pt;}
.hc_c00034{height:32.070415pt;}
.he_c00034{height:34.201406pt;}
.ha_c00034{height:36.712500pt;}
.h6_c00034{height:37.978101pt;}
.hb_c00034{height:60.802673pt;}
.hf_c00034{height:61.493438pt;}
.h7_c00034{height:61.677000pt;}
.h9_c00034{height:65.293594pt;}
.h10_c00034{height:66.157266pt;}
.h5_c00034{height:68.402813pt;}
.hd_c00034{height:68.748281pt;}
.h4_c00034{height:71.127375pt;}
.h2_c00034{height:76.866797pt;}
.h1_c00034{height:986.666667pt;}
.h0_c00034{height:1122.666667pt;}
.w1_c00034{width:686.666667pt;}
.w0_c00034{width:793.333333pt;}
.x0_c00034{left:0.000000pt;}
.x1_c00034{left:53.333333pt;}
.xd_c00034{left:85.480120pt;}
.x1c_c00034{left:87.138920pt;}
.x3f_c00034{left:88.370920pt;}
.x45_c00034{left:105.530920pt;}
.x65_c00034{left:106.925720pt;}
.x2d_c00034{left:115.360520pt;}
.x60_c00034{left:116.473720pt;}
.x53_c00034{left:124.692920pt;}
.x4c_c00034{left:126.078920pt;}
.x4_c00034{left:135.376120pt;}
.x28_c00034{left:144.004520pt;}
.x46_c00034{left:145.108920pt;}
.xe_c00034{left:146.090120pt;}
.x35_c00034{left:154.335720pt;}
.x24_c00034{left:155.602920pt;}
.x36_c00034{left:163.276520pt;}
.x1d_c00034{left:164.790120pt;}
.x64_c00034{left:166.378520pt;}
.x40_c00034{left:173.524120pt;}
.x15_c00034{left:174.606520pt;}
.x61_c00034{left:175.561320pt;}
.xf_c00034{left:184.585720pt;}
.x2e_c00034{left:193.376920pt;}
.x3a_c00034{left:194.780520pt;}
.x5c_c00034{left:197.354520pt;}
.x5_c00034{left:203.897320pt;}
.x16_c00034{left:205.600120pt;}
.x5b_c00034{left:213.440920pt;}
.x47_c00034{left:215.139320pt;}
.x3b_c00034{left:222.821720pt;}
.x54_c00034{left:224.520120pt;}
.x56_c00034{left:233.685320pt;}
.x62_c00034{left:234.794120pt;}
.x10_c00034{left:236.026120pt;}
.x1e_c00034{left:243.880120pt;}
.x44_c00034{left:252.587720pt;}
.x17_c00034{left:253.960520pt;}
.x6_c00034{left:263.314920pt;}
.x50_c00034{left:274.024520pt;}
.x1f_c00034{left:283.163320pt;}
.x41_c00034{left:285.754920pt;}
.x29_c00034{left:292.750920pt;}
.x7_c00034{left:293.732120pt;}
.x25_c00034{left:303.200920pt;}
.x2f_c00034{left:311.877720pt;}
.x11_c00034{left:312.889720pt;}
.x34_c00034{left:321.236520pt;}
.x51_c00034{left:323.484920pt;}
.x18_c00034{left:332.205720pt;}
.x57_c00034{left:333.327720pt;}
.x12_c00034{left:342.022120pt;}
.x3c_c00034{left:343.447720pt;}
.x2a_c00034{left:351.385320pt;}
.x5d_c00034{left:353.576520pt;}
.x4d_c00034{left:361.769320pt;}
.x48_c00034{left:362.763720pt;}
.x37_c00034{left:371.818920pt;}
.x59_c00034{left:380.614520pt;}
.x8_c00034{left:381.798120pt;}
.x58_c00034{left:383.043320pt;}
.x2b_c00034{left:390.488120pt;}
.x49_c00034{left:391.900520pt;}
.x30_c00034{left:401.281320pt;}
.x9_c00034{left:411.858920pt;}
.x31_c00034{left:419.902120pt;}
.x52_c00034{left:421.974520pt;}
.x20_c00034{left:431.201320pt;}
.x4e_c00034{left:432.147320pt;}
.xa_c00034{left:440.872520pt;}
.x4a_c00034{left:451.164120pt;}
.x3_c00034{left:452.237720pt;}
.x3d_c00034{left:460.566920pt;}
.x5a_c00034{left:470.616520pt;}
.x38_c00034{left:472.992520pt;}
.x13_c00034{left:480.881720pt;}
.x19_c00034{left:490.011720pt;}
.x21_c00034{left:499.616920pt;}
.xb_c00034{left:510.669720pt;}
.x3e_c00034{left:518.519320pt;}
.x32_c00034{left:520.164920pt;}
.x42_c00034{left:529.743720pt;}
.x4f_c00034{left:539.564520pt;}
.x27_c00034{left:549.015720pt;}
.x39_c00034{left:551.871320pt;}
.x22_c00034{left:558.814520pt;}
.x43_c00034{left:569.862920pt;}
.x4b_c00034{left:578.363720pt;}
.x1a_c00034{left:579.468120pt;}
.x2c_c00034{left:588.043720pt;}
.x5f_c00034{left:588.972120pt;}
.x2_c00034{left:597.802920pt;}
.x14_c00034{left:599.105320pt;}
.x33_c00034{left:607.993320pt;}
.xc_c00034{left:609.550920pt;}
.x26_c00034{left:618.113320pt;}
.x23_c00034{left:627.208120pt;}
.x63_c00034{left:628.140920pt;}
.x5e_c00034{left:629.196920pt;}
.x55_c00034{left:637.284120pt;}
.x1b_c00034{left:638.564520pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a415da6251b097b5f8291bbb.woff2')format("woff");}.ff1_c00035{font-family:ff1_c00035;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00035;src:url('chunks/assets/font_cdd074900bf6cf87809c4cbe.woff2')format("woff");}.ff2_c00035{font-family:ff2_c00035;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00035;src:url('chunks/assets/font_a2dafaeb5209cf4e596fa27f.woff2')format("woff");}.ff3_c00035{font-family:ff3_c00035;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00035;src:url('chunks/assets/font_2da8103e075dfd9d6a889d6e.woff2')format("woff");}.ff4_c00035{font-family:ff4_c00035;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m9c_c00035{transform:matrix(0.111167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111167,0.000000,0.000000,0.250000,0,0);}
.m64_c00035{transform:matrix(0.127266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127266,0.000000,0.000000,0.250000,0,0);}
.m86_c00035{transform:matrix(0.166228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166228,0.000000,0.000000,0.250000,0,0);}
.m20_c00035{transform:matrix(0.243644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243644,0.000000,0.000000,0.250000,0,0);}
.m25_c00035{transform:matrix(0.248291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248291,0.000000,0.000000,0.250000,0,0);}
.m0_c00035{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3_c00035{transform:matrix(0.251559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251559,0.000000,0.000000,0.250000,0,0);}
.m53_c00035{transform:matrix(0.256763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256763,0.000000,0.000000,0.250000,0,0);}
.md_c00035{transform:matrix(0.260410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260410,0.000000,0.000000,0.250000,0,0);}
.m15_c00035{transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);}
.m13_c00035{transform:matrix(0.260602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260602,0.000000,0.000000,0.250000,0,0);}
.m6_c00035{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m6e_c00035{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.ma_c00035{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m28_c00035{transform:matrix(0.264211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264211,0.000000,0.000000,0.250000,0,0);}
.m6a_c00035{transform:matrix(0.265403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265403,0.000000,0.000000,0.250000,0,0);}
.m89_c00035{transform:matrix(0.265487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265487,0.000000,0.000000,0.250000,0,0);}
.m8b_c00035{transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);}
.m37_c00035{transform:matrix(0.265999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265999,0.000000,0.000000,0.250000,0,0);}
.m17_c00035{transform:matrix(0.266012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266012,0.000000,0.000000,0.250000,0,0);}
.m4f_c00035{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.m2b_c00035{transform:matrix(0.267466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267466,0.000000,0.000000,0.250000,0,0);}
.m40_c00035{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m5e_c00035{transform:matrix(0.268129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268129,0.000000,0.000000,0.250000,0,0);}
.m16_c00035{transform:matrix(0.268235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268235,0.000000,0.000000,0.250000,0,0);}
.m87_c00035{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.m21_c00035{transform:matrix(0.269077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269077,0.000000,0.000000,0.250000,0,0);}
.m76_c00035{transform:matrix(0.269155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269155,0.000000,0.000000,0.250000,0,0);}
.m85_c00035{transform:matrix(0.270271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270271,0.000000,0.000000,0.250000,0,0);}
.m33_c00035{transform:matrix(0.270470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270470,0.000000,0.000000,0.250000,0,0);}
.m34_c00035{transform:matrix(0.270563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270563,0.000000,0.000000,0.250000,0,0);}
.m60_c00035{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m4d_c00035{transform:matrix(0.271348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271348,0.000000,0.000000,0.250000,0,0);}
.m79_c00035{transform:matrix(0.271476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271476,0.000000,0.000000,0.250000,0,0);}
.m2a_c00035{transform:matrix(0.272044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272044,0.000000,0.000000,0.250000,0,0);}
.m27_c00035{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m1c_c00035{transform:matrix(0.272640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272640,0.000000,0.000000,0.250000,0,0);}
.m1d_c00035{transform:matrix(0.273970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273970,0.000000,0.000000,0.250000,0,0);}
.m5f_c00035{transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);}
.m2c_c00035{transform:matrix(0.274701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274701,0.000000,0.000000,0.250000,0,0);}
.m42_c00035{transform:matrix(0.274908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274908,0.000000,0.000000,0.250000,0,0);}
.m62_c00035{transform:matrix(0.275066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275066,0.000000,0.000000,0.250000,0,0);}
.m31_c00035{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m3a_c00035{transform:matrix(0.275566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275566,0.000000,0.000000,0.250000,0,0);}
.m48_c00035{transform:matrix(0.276414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276414,0.000000,0.000000,0.250000,0,0);}
.m98_c00035{transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);}
.m91_c00035{transform:matrix(0.277767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277767,0.000000,0.000000,0.250000,0,0);}
.m80_c00035{transform:matrix(0.278485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278485,0.000000,0.000000,0.250000,0,0);}
.m6f_c00035{transform:matrix(0.278489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278489,0.000000,0.000000,0.250000,0,0);}
.m38_c00035{transform:matrix(0.278557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278557,0.000000,0.000000,0.250000,0,0);}
.m35_c00035{transform:matrix(0.278648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278648,0.000000,0.000000,0.250000,0,0);}
.m43_c00035{transform:matrix(0.279287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279287,0.000000,0.000000,0.250000,0,0);}
.m4_c00035{transform:matrix(0.279414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279414,0.000000,0.000000,0.250000,0,0);}
.m90_c00035{transform:matrix(0.279948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279948,0.000000,0.000000,0.250000,0,0);}
.m54_c00035{transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);}
.m1_c00035{transform:matrix(0.280038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280038,0.000000,0.000000,0.250000,0,0);}
.m52_c00035{transform:matrix(0.280449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280449,0.000000,0.000000,0.250000,0,0);}
.m4e_c00035{transform:matrix(0.281475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281475,0.000000,0.000000,0.250000,0,0);}
.m7f_c00035{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.m11_c00035{transform:matrix(0.281662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281662,0.000000,0.000000,0.250000,0,0);}
.mc_c00035{transform:matrix(0.282867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282867,0.000000,0.000000,0.250000,0,0);}
.m75_c00035{transform:matrix(0.282890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282890,0.000000,0.000000,0.250000,0,0);}
.m3c_c00035{transform:matrix(0.284292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284292,0.000000,0.000000,0.250000,0,0);}
.m7e_c00035{transform:matrix(0.284669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284669,0.000000,0.000000,0.250000,0,0);}
.m56_c00035{transform:matrix(0.285646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285646,0.000000,0.000000,0.250000,0,0);}
.m73_c00035{transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);}
.m92_c00035{transform:matrix(0.287072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287072,0.000000,0.000000,0.250000,0,0);}
.m30_c00035{transform:matrix(0.288006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288006,0.000000,0.000000,0.250000,0,0);}
.m82_c00035{transform:matrix(0.288460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288460,0.000000,0.000000,0.250000,0,0);}
.m49_c00035{transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);}
.m88_c00035{transform:matrix(0.289336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289336,0.000000,0.000000,0.250000,0,0);}
.m5b_c00035{transform:matrix(0.289865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289865,0.000000,0.000000,0.250000,0,0);}
.m65_c00035{transform:matrix(0.290045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290045,0.000000,0.000000,0.250000,0,0);}
.m81_c00035{transform:matrix(0.290170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290170,0.000000,0.000000,0.250000,0,0);}
.m95_c00035{transform:matrix(0.290669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290669,0.000000,0.000000,0.250000,0,0);}
.m50_c00035{transform:matrix(0.290977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290977,0.000000,0.000000,0.250000,0,0);}
.m67_c00035{transform:matrix(0.291292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291292,0.000000,0.000000,0.250000,0,0);}
.m4b_c00035{transform:matrix(0.291867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291867,0.000000,0.000000,0.250000,0,0);}
.m8c_c00035{transform:matrix(0.292127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292127,0.000000,0.000000,0.250000,0,0);}
.mf_c00035{transform:matrix(0.292895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292895,0.000000,0.000000,0.250000,0,0);}
.m71_c00035{transform:matrix(0.292960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292960,0.000000,0.000000,0.250000,0,0);}
.me_c00035{transform:matrix(0.293938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293938,0.000000,0.000000,0.250000,0,0);}
.m63_c00035{transform:matrix(0.294655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294655,0.000000,0.000000,0.250000,0,0);}
.m93_c00035{transform:matrix(0.296607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296607,0.000000,0.000000,0.250000,0,0);}
.m74_c00035{transform:matrix(0.296872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296872,0.000000,0.000000,0.250000,0,0);}
.m8_c00035{transform:matrix(0.297238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297238,0.000000,0.000000,0.250000,0,0);}
.m3e_c00035{transform:matrix(0.297302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297302,0.000000,0.000000,0.250000,0,0);}
.m9b_c00035{transform:matrix(0.298142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298142,0.000000,0.000000,0.250000,0,0);}
.m70_c00035{transform:matrix(0.298394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298394,0.000000,0.000000,0.250000,0,0);}
.m2_c00035{transform:matrix(0.299602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299602,0.000000,0.000000,0.250000,0,0);}
.m5_c00035{transform:matrix(0.301856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301856,0.000000,0.000000,0.250000,0,0);}
.m47_c00035{transform:matrix(0.302518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302518,0.000000,0.000000,0.250000,0,0);}
.m84_c00035{transform:matrix(0.303734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303734,0.000000,0.000000,0.250000,0,0);}
.m1e_c00035{transform:matrix(0.303800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303800,0.000000,0.000000,0.250000,0,0);}
.m7_c00035{transform:matrix(0.304665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304665,0.000000,0.000000,0.250000,0,0);}
.m72_c00035{transform:matrix(0.305226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305226,0.000000,0.000000,0.250000,0,0);}
.m7d_c00035{transform:matrix(0.306060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306060,0.000000,0.000000,0.250000,0,0);}
.m83_c00035{transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);}
.m23_c00035{transform:matrix(0.309239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309239,0.000000,0.000000,0.250000,0,0);}
.m4a_c00035{transform:matrix(0.309989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309989,0.000000,0.000000,0.250000,0,0);}
.m57_c00035{transform:matrix(0.311211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311211,0.000000,0.000000,0.250000,0,0);}
.m3b_c00035{transform:matrix(0.311441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311441,0.000000,0.000000,0.250000,0,0);}
.m7c_c00035{transform:matrix(0.311744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311744,0.000000,0.000000,0.250000,0,0);}
.m77_c00035{transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);}
.m7a_c00035{transform:matrix(0.312526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312526,0.000000,0.000000,0.250000,0,0);}
.m58_c00035{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.m51_c00035{transform:matrix(0.313023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313023,0.000000,0.000000,0.250000,0,0);}
.m97_c00035{transform:matrix(0.313505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313505,0.000000,0.000000,0.250000,0,0);}
.m5d_c00035{transform:matrix(0.313695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313695,0.000000,0.000000,0.250000,0,0);}
.m44_c00035{transform:matrix(0.314276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314276,0.000000,0.000000,0.250000,0,0);}
.m5a_c00035{transform:matrix(0.314410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314410,0.000000,0.000000,0.250000,0,0);}
.m10_c00035{transform:matrix(0.315048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315048,0.000000,0.000000,0.250000,0,0);}
.m7b_c00035{transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);}
.m22_c00035{transform:matrix(0.317259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317259,0.000000,0.000000,0.250000,0,0);}
.m8e_c00035{transform:matrix(0.317440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317440,0.000000,0.000000,0.250000,0,0);}
.mb_c00035{transform:matrix(0.317568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317568,0.000000,0.000000,0.250000,0,0);}
.m1b_c00035{transform:matrix(0.317844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317844,0.000000,0.000000,0.250000,0,0);}
.m6d_c00035{transform:matrix(0.318208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318208,0.000000,0.000000,0.250000,0,0);}
.m18_c00035{transform:matrix(0.318662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318662,0.000000,0.000000,0.250000,0,0);}
.m9a_c00035{transform:matrix(0.319628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319628,0.000000,0.000000,0.250000,0,0);}
.m66_c00035{transform:matrix(0.319743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319743,0.000000,0.000000,0.250000,0,0);}
.m8a_c00035{transform:matrix(0.320780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320780,0.000000,0.000000,0.250000,0,0);}
.m29_c00035{transform:matrix(0.321092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321092,0.000000,0.000000,0.250000,0,0);}
.m6b_c00035{transform:matrix(0.321293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321293,0.000000,0.000000,0.250000,0,0);}
.m3d_c00035{transform:matrix(0.321511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321511,0.000000,0.000000,0.250000,0,0);}
.m94_c00035{transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);}
.m55_c00035{transform:matrix(0.322079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322079,0.000000,0.000000,0.250000,0,0);}
.m9_c00035{transform:matrix(0.323238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323238,0.000000,0.000000,0.250000,0,0);}
.m45_c00035{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.m8d_c00035{transform:matrix(0.324910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324910,0.000000,0.000000,0.250000,0,0);}
.m99_c00035{transform:matrix(0.325172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325172,0.000000,0.000000,0.250000,0,0);}
.m12_c00035{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.m3f_c00035{transform:matrix(0.330042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330042,0.000000,0.000000,0.250000,0,0);}
.m78_c00035{transform:matrix(0.330641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330641,0.000000,0.000000,0.250000,0,0);}
.m2d_c00035{transform:matrix(0.331108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331108,0.000000,0.000000,0.250000,0,0);}
.m4c_c00035{transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);}
.m41_c00035{transform:matrix(0.332711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332711,0.000000,0.000000,0.250000,0,0);}
.m46_c00035{transform:matrix(0.333434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333434,0.000000,0.000000,0.250000,0,0);}
.m59_c00035{transform:matrix(0.336048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336048,0.000000,0.000000,0.250000,0,0);}
.m2f_c00035{transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);}
.m5c_c00035{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m68_c00035{transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);}
.m14_c00035{transform:matrix(0.342233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342233,0.000000,0.000000,0.250000,0,0);}
.m69_c00035{transform:matrix(0.344235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344235,0.000000,0.000000,0.250000,0,0);}
.m1a_c00035{transform:matrix(0.348200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348200,0.000000,0.000000,0.250000,0,0);}
.m1f_c00035{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m39_c00035{transform:matrix(0.356775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356775,0.000000,0.000000,0.250000,0,0);}
.m32_c00035{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);}
.m6c_c00035{transform:matrix(0.359561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359561,0.000000,0.000000,0.250000,0,0);}
.m61_c00035{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m36_c00035{transform:matrix(0.361926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361926,0.000000,0.000000,0.250000,0,0);}
.m96_c00035{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);}
.m19_c00035{transform:matrix(0.365357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365357,0.000000,0.000000,0.250000,0,0);}
.m26_c00035{transform:matrix(0.366396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366396,0.000000,0.000000,0.250000,0,0);}
.m2e_c00035{transform:matrix(0.368506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368506,0.000000,0.000000,0.250000,0,0);}
.m8f_c00035{transform:matrix(0.373718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373718,0.000000,0.000000,0.250000,0,0);}
.m24_c00035{transform:matrix(0.401578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401578,0.000000,0.000000,0.250000,0,0);}
.v0_c00035{vertical-align:0.000000px;}
.ls5_c00035{letter-spacing:-2.744280px;}
.lsc_c00035{letter-spacing:-1.897474px;}
.ls7_c00035{letter-spacing:-1.826906px;}
.lsb_c00035{letter-spacing:-1.772021px;}
.lsd_c00035{letter-spacing:-1.593900px;}
.ls2_c00035{letter-spacing:0.000000px;}
.ls9_c00035{letter-spacing:1.246687px;}
.ls6_c00035{letter-spacing:1.348618px;}
.ls1_c00035{letter-spacing:2.501215px;}
.ls8_c00035{letter-spacing:3.112798px;}
.lsa_c00035{letter-spacing:3.474900px;}
.ls4_c00035{letter-spacing:3.593700px;}
.ls0_c00035{letter-spacing:3.920400px;}
.ls3_c00035{letter-spacing:4.296610px;}
.sc__c00035{text-shadow:none;}
.sc0_c00035{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00035{-webkit-text-stroke:0px transparent;}
.sc0_c00035{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00035{word-spacing:-19.602000px;}
.ws1_c00035{word-spacing:0.000000px;}
._3_c00035{margin-left:-12.803324px;}
._5_c00035{width:7.214328px;}
._1_c00035{width:14.234121px;}
._6_c00035{width:20.856528px;}
._4_c00035{width:29.122236px;}
._0_c00035{width:77.901648px;}
._2_c00035{width:102.934915px;}
.fc0_c00035{color:transparent;}
.fs5_c00035{font-size:5.742198px;}
.fs2_c00035{font-size:22.176000px;}
.fs0_c00035{font-size:27.720000px;}
.fs6_c00035{font-size:32.076198px;}
.fsa_c00035{font-size:45.540000px;}
.fs9_c00035{font-size:69.498000px;}
.fs8_c00035{font-size:70.092198px;}
.fs4_c00035{font-size:71.874000px;}
.fs7_c00035{font-size:74.844000px;}
.fs3_c00035{font-size:78.408000px;}
.fs1_c00035{font-size:85.932198px;}
.y0_c00035{bottom:0.000000px;}
.y1_c00035{bottom:76.500000px;}
.y21_c00035{bottom:96.852735px;}
.y20_c00035{bottom:138.190185px;}
.y1f_c00035{bottom:157.435785px;}
.y1e_c00035{bottom:167.776335px;}
.y1d_c00035{bottom:201.629385px;}
.y1c_c00035{bottom:235.843785px;}
.y1b_c00035{bottom:268.632585px;}
.y1a_c00035{bottom:301.069935px;}
.y19_c00035{bottom:333.140985px;}
.y18_c00035{bottom:349.896735px;}
.y17_c00035{bottom:397.649385px;}
.y16_c00035{bottom:430.086735px;}
.y15_c00035{bottom:462.870585px;}
.y13_c00035{bottom:494.946585px;}
.y14_c00035{bottom:496.733535px;}
.y12_c00035{bottom:539.140185px;}
.y11_c00035{bottom:560.529135px;}
.y10_c00035{bottom:592.961535px;}
.yf_c00035{bottom:626.106735px;}
.ye_c00035{bottom:658.539135px;}
.y2_c00035{bottom:677.423385px;}
.yd_c00035{bottom:690.971535px;}
.yc_c00035{bottom:721.973385px;}
.yb_c00035{bottom:723.042585px;}
.ya_c00035{bottom:754.767135px;}
.y9_c00035{bottom:787.912335px;}
.y8_c00035{bottom:814.285935px;}
.y7_c00035{bottom:820.344735px;}
.y6_c00035{bottom:886.630185px;}
.y5_c00035{bottom:919.062585px;}
.y4_c00035{bottom:944.723385px;}
.y3_c00035{bottom:1074.452985px;}
.h7_c00035{height:5.787059px;}
.h4_c00035{height:23.128875px;}
.h2_c00035{height:28.911094px;}
.h8_c00035{height:31.481034px;}
.hc_c00035{height:44.695020px;}
.hb_c00035{height:68.174552px;}
.ha_c00035{height:73.103972px;}
.h9_c00035{height:73.455293px;}
.h6_c00035{height:74.962336px;}
.h5_c00035{height:76.953164px;}
.h3_c00035{height:84.337753px;}
.h1_c00035{height:1110.000000px;}
.h0_c00035{height:1263.000000px;}
.w1_c00035{width:796.500000px;}
.w0_c00035{width:892.500000px;}
.x0_c00035{left:0.000000px;}
.x1_c00035{left:48.000000px;}
.x2_c00035{left:96.092085px;}
.x55_c00035{left:97.210785px;}
.x3b_c00035{left:105.081285px;}
.x6_c00035{left:106.496985px;}
.x10_c00035{left:108.095835px;}
.x56_c00035{left:129.519435px;}
.x11_c00035{left:138.869985px;}
.x52_c00035{left:150.556935px;}
.x4c_c00035{left:161.704335px;}
.x46_c00035{left:170.990535px;}
.x5c_c00035{left:172.970535px;}
.x60_c00035{left:174.014985px;}
.x53_c00035{left:182.682435px;}
.x7_c00035{left:194.473335px;}
.x3c_c00035{left:204.803985px;}
.x4d_c00035{left:206.788935px;}
.x12_c00035{left:215.179185px;}
.x20_c00035{left:216.436485px;}
.x3d_c00035{left:227.742285px;}
.x42_c00035{left:228.915435px;}
.x57_c00035{left:238.701585px;}
.x1a_c00035{left:248.690685px;}
.x8_c00035{left:254.437635px;}
.x3e_c00035{left:261.001335px;}
.x37_c00035{left:271.698285px;}
.x13_c00035{left:282.533835px;}
.x2a_c00035{left:292.958535px;}
.x61_c00035{left:295.428585px;}
.x1b_c00035{left:304.006935px;}
.x38_c00035{left:305.496885px;}
.x9_c00035{left:307.660035px;}
.x26_c00035{left:315.891885px;}
.x3f_c00035{left:326.816535px;}
.x47_c00035{left:328.638135px;}
.x5f_c00035{left:333.122835px;}
.x58_c00035{left:339.023235px;}
.x27_c00035{left:349.749885px;}
.x31_c00035{left:359.531085px;}
.x48_c00035{left:361.120035px;}
.xa_c00035{left:362.941635px;}
.x2b_c00035{left:371.826885px;}
.x1c_c00035{left:382.330785px;}
.x14_c00035{left:383.543535px;}
.x21_c00035{left:394.591935px;}
.x35_c00035{left:404.511735px;}
.xb_c00035{left:407.788635px;}
.x15_c00035{left:415.659135px;}
.x4e_c00035{left:417.035235px;}
.x22_c00035{left:427.054035px;}
.x43_c00035{left:428.138085px;}
.x1d_c00035{left:438.092535px;}
.x5_c00035{left:440.042835px;}
.x2c_c00035{left:449.348835px;}
.x4f_c00035{left:450.546735px;}
.x28_c00035{left:451.937685px;}
.x23_c00035{left:459.743835px;}
.xc_c00035{left:472.504935px;}
.x32_c00035{left:483.385035px;}
.x2d_c00035{left:493.522635px;}
.x40_c00035{left:494.779935px;}
.x5d_c00035{left:517.252935px;}
.x16_c00035{left:526.860885px;}
.x50_c00035{left:527.949885px;}
.x1e_c00035{left:537.513285px;}
.x49_c00035{left:538.968585px;}
.x24_c00035{left:549.294285px;}
.xd_c00035{left:550.675335px;}
.x2e_c00035{left:560.362485px;}
.x17_c00035{left:571.420785px;}
.x44_c00035{left:572.440485px;}
.x59_c00035{left:582.444435px;}
.x33_c00035{left:593.680935px;}
.x25_c00035{left:604.565985px;}
.x41_c00035{left:615.624285px;}
.x1f_c00035{left:618.381435px;}
.x2f_c00035{left:626.118285px;}
.x4a_c00035{left:627.751785px;}
.x45_c00035{left:638.423985px;}
.xe_c00035{left:639.864435px;}
.x5a_c00035{left:649.477335px;}
.x18_c00035{left:660.119835px;}
.x36_c00035{left:669.955485px;}
.x19_c00035{left:671.064285px;}
.x51_c00035{left:672.222585px;}
.x3_c00035{left:680.761335px;}
.x34_c00035{left:681.889935px;}
.xf_c00035{left:683.835285px;}
.x5b_c00035{left:693.101685px;}
.x4b_c00035{left:694.363935px;}
.x29_c00035{left:695.576685px;}
.x3a_c00035{left:701.615685px;}
.x4_c00035{left:703.961985px;}
.x5e_c00035{left:705.011385px;}
.x62_c00035{left:706.397385px;}
.x54_c00035{left:714.193635px;}
.x30_c00035{left:715.346985px;}
.x39_c00035{left:726.434985px;}
@media print{
.v0_c00035{vertical-align:0.000000pt;}
.ls5_c00035{letter-spacing:-2.439360pt;}
.lsc_c00035{letter-spacing:-1.686643pt;}
.ls7_c00035{letter-spacing:-1.623917pt;}
.lsb_c00035{letter-spacing:-1.575130pt;}
.lsd_c00035{letter-spacing:-1.416800pt;}
.ls2_c00035{letter-spacing:0.000000pt;}
.ls9_c00035{letter-spacing:1.108166pt;}
.ls6_c00035{letter-spacing:1.198771pt;}
.ls1_c00035{letter-spacing:2.223302pt;}
.ls8_c00035{letter-spacing:2.766931pt;}
.lsa_c00035{letter-spacing:3.088800pt;}
.ls4_c00035{letter-spacing:3.194400pt;}
.ls0_c00035{letter-spacing:3.484800pt;}
.ls3_c00035{letter-spacing:3.819209pt;}
.ws0_c00035{word-spacing:-17.424000pt;}
.ws1_c00035{word-spacing:0.000000pt;}
._3_c00035{margin-left:-11.380732pt;}
._5_c00035{width:6.412736pt;}
._1_c00035{width:12.652552pt;}
._6_c00035{width:18.539136pt;}
._4_c00035{width:25.886432pt;}
._0_c00035{width:69.245909pt;}
._2_c00035{width:91.497702pt;}
.fs5_c00035{font-size:5.104176pt;}
.fs2_c00035{font-size:19.712000pt;}
.fs0_c00035{font-size:24.640000pt;}
.fs6_c00035{font-size:28.512176pt;}
.fsa_c00035{font-size:40.480000pt;}
.fs9_c00035{font-size:61.776000pt;}
.fs8_c00035{font-size:62.304176pt;}
.fs4_c00035{font-size:63.888000pt;}
.fs7_c00035{font-size:66.528000pt;}
.fs3_c00035{font-size:69.696000pt;}
.fs1_c00035{font-size:76.384176pt;}
.y0_c00035{bottom:0.000000pt;}
.y1_c00035{bottom:68.000000pt;}
.y21_c00035{bottom:86.091320pt;}
.y20_c00035{bottom:122.835720pt;}
.y1f_c00035{bottom:139.942920pt;}
.y1e_c00035{bottom:149.134520pt;}
.y1d_c00035{bottom:179.226120pt;}
.y1c_c00035{bottom:209.638920pt;}
.y1b_c00035{bottom:238.784520pt;}
.y1a_c00035{bottom:267.617720pt;}
.y19_c00035{bottom:296.125320pt;}
.y18_c00035{bottom:311.019320pt;}
.y17_c00035{bottom:353.466120pt;}
.y16_c00035{bottom:382.299320pt;}
.y15_c00035{bottom:411.440520pt;}
.y13_c00035{bottom:439.952520pt;}
.y14_c00035{bottom:441.540920pt;}
.y12_c00035{bottom:479.235720pt;}
.y11_c00035{bottom:498.248120pt;}
.y10_c00035{bottom:527.076920pt;}
.yf_c00035{bottom:556.539320pt;}
.ye_c00035{bottom:585.368120pt;}
.y2_c00035{bottom:602.154120pt;}
.yd_c00035{bottom:614.196920pt;}
.yc_c00035{bottom:641.754120pt;}
.yb_c00035{bottom:642.704520pt;}
.ya_c00035{bottom:670.904120pt;}
.y9_c00035{bottom:700.366520pt;}
.y8_c00035{bottom:723.809720pt;}
.y7_c00035{bottom:729.195320pt;}
.y6_c00035{bottom:788.115720pt;}
.y5_c00035{bottom:816.944520pt;}
.y4_c00035{bottom:839.754120pt;}
.y3_c00035{bottom:955.069320pt;}
.h7_c00035{height:5.144052pt;}
.h4_c00035{height:20.559000pt;}
.h2_c00035{height:25.698750pt;}
.h8_c00035{height:27.983141pt;}
.hc_c00035{height:39.728906pt;}
.hb_c00035{height:60.599602pt;}
.ha_c00035{height:64.981309pt;}
.h9_c00035{height:65.293594pt;}
.h6_c00035{height:66.633188pt;}
.h5_c00035{height:68.402813pt;}
.h3_c00035{height:74.966891pt;}
.h1_c00035{height:986.666667pt;}
.h0_c00035{height:1122.666667pt;}
.w1_c00035{width:708.000000pt;}
.w0_c00035{width:793.333333pt;}
.x0_c00035{left:0.000000pt;}
.x1_c00035{left:42.666667pt;}
.x2_c00035{left:85.415187pt;}
.x55_c00035{left:86.409587pt;}
.x3b_c00035{left:93.405587pt;}
.x6_c00035{left:94.663987pt;}
.x10_c00035{left:96.085187pt;}
.x56_c00035{left:115.128387pt;}
.x11_c00035{left:123.439987pt;}
.x52_c00035{left:133.828387pt;}
.x4c_c00035{left:143.737187pt;}
.x46_c00035{left:151.991587pt;}
.x5c_c00035{left:153.751587pt;}
.x60_c00035{left:154.679987pt;}
.x53_c00035{left:162.384387pt;}
.x7_c00035{left:172.865187pt;}
.x3c_c00035{left:182.047987pt;}
.x4d_c00035{left:183.812387pt;}
.x12_c00035{left:191.270387pt;}
.x20_c00035{left:192.387987pt;}
.x3d_c00035{left:202.437587pt;}
.x42_c00035{left:203.480387pt;}
.x57_c00035{left:212.179187pt;}
.x1a_c00035{left:221.058387pt;}
.x8_c00035{left:226.166787pt;}
.x3e_c00035{left:232.001187pt;}
.x37_c00035{left:241.509587pt;}
.x13_c00035{left:251.141187pt;}
.x2a_c00035{left:260.407587pt;}
.x61_c00035{left:262.603187pt;}
.x1b_c00035{left:270.228387pt;}
.x38_c00035{left:271.552787pt;}
.x9_c00035{left:273.475587pt;}
.x26_c00035{left:280.792787pt;}
.x3f_c00035{left:290.503587pt;}
.x47_c00035{left:292.122787pt;}
.x5f_c00035{left:296.109187pt;}
.x58_c00035{left:301.353987pt;}
.x27_c00035{left:310.888787pt;}
.x31_c00035{left:319.583187pt;}
.x48_c00035{left:320.995587pt;}
.xa_c00035{left:322.614787pt;}
.x2b_c00035{left:330.512787pt;}
.x1c_c00035{left:339.849587pt;}
.x14_c00035{left:340.927587pt;}
.x21_c00035{left:350.748387pt;}
.x35_c00035{left:359.565987pt;}
.xb_c00035{left:362.478787pt;}
.x15_c00035{left:369.474787pt;}
.x4e_c00035{left:370.697987pt;}
.x22_c00035{left:379.603587pt;}
.x43_c00035{left:380.567187pt;}
.x1d_c00035{left:389.415587pt;}
.x5_c00035{left:391.149187pt;}
.x2c_c00035{left:399.421187pt;}
.x4f_c00035{left:400.485987pt;}
.x28_c00035{left:401.722387pt;}
.x23_c00035{left:408.661187pt;}
.xc_c00035{left:420.004387pt;}
.x32_c00035{left:429.675587pt;}
.x2d_c00035{left:438.686787pt;}
.x40_c00035{left:439.804387pt;}
.x5d_c00035{left:459.780387pt;}
.x16_c00035{left:468.320787pt;}
.x50_c00035{left:469.288787pt;}
.x1e_c00035{left:477.789587pt;}
.x49_c00035{left:479.083187pt;}
.x24_c00035{left:488.261587pt;}
.xd_c00035{left:489.489187pt;}
.x2e_c00035{left:498.099987pt;}
.x17_c00035{left:507.929587pt;}
.x44_c00035{left:508.835987pt;}
.x59_c00035{left:517.728387pt;}
.x33_c00035{left:527.716387pt;}
.x25_c00035{left:537.391987pt;}
.x41_c00035{left:547.221587pt;}
.x1f_c00035{left:549.672387pt;}
.x2f_c00035{left:556.549587pt;}
.x4a_c00035{left:558.001587pt;}
.x45_c00035{left:567.487987pt;}
.xe_c00035{left:568.768387pt;}
.x5a_c00035{left:577.313187pt;}
.x18_c00035{left:586.773187pt;}
.x36_c00035{left:595.515987pt;}
.x19_c00035{left:596.501587pt;}
.x51_c00035{left:597.531187pt;}
.x3_c00035{left:605.121187pt;}
.x34_c00035{left:606.124387pt;}
.xf_c00035{left:607.853587pt;}
.x5b_c00035{left:616.090387pt;}
.x4b_c00035{left:617.212387pt;}
.x29_c00035{left:618.290387pt;}
.x3a_c00035{left:623.658387pt;}
.x4_c00035{left:625.743987pt;}
.x5e_c00035{left:626.676787pt;}
.x62_c00035{left:627.908787pt;}
.x54_c00035{left:634.838787pt;}
.x30_c00035{left:635.863987pt;}
.x39_c00035{left:645.719987pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_642c7fc35cf98f67dd85921b.woff2')format("woff");}.ff1_c00036{font-family:ff1_c00036;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00036;src:url('chunks/assets/font_e615d063db80eeddef552459.woff2')format("woff");}.ff2_c00036{font-family:ff2_c00036;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00036;src:url('chunks/assets/font_88344fb82bac42f86fdf472d.woff2')format("woff");}.ff3_c00036{font-family:ff3_c00036;line-height:0.666000;font-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_c00036{transform:matrix(0.088415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088415,0.000000,0.000000,0.250000,0,0);}
.m34_c00036{transform:matrix(0.091463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091463,0.000000,0.000000,0.250000,0,0);}
.m30_c00036{transform:matrix(0.092073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092073,0.000000,0.000000,0.250000,0,0);}
.m32_c00036{transform:matrix(0.176830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176830,0.000000,0.000000,0.250000,0,0);}
.m31_c00036{transform:matrix(0.189025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189025,0.000000,0.000000,0.250000,0,0);}
.m36_c00036{transform:matrix(0.205835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205835,0.000000,0.000000,0.250000,0,0);}
.m9d_c00036{transform:matrix(0.206081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206081,0.000000,0.000000,0.250000,0,0);}
.m35_c00036{transform:matrix(0.208269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208269,0.000000,0.000000,0.250000,0,0);}
.m39_c00036{transform:matrix(0.210646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210646,0.000000,0.000000,0.250000,0,0);}
.m72_c00036{transform:matrix(0.218364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218364,0.000000,0.000000,0.250000,0,0);}
.m3d_c00036{transform:matrix(0.242568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242568,0.000000,0.000000,0.250000,0,0);}
.m1_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);}
.maa_c00036{transform:matrix(0.250839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250839,0.000000,0.000000,0.250000,0,0);}
.m70_c00036{transform:matrix(0.253145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253145,0.000000,0.000000,0.250000,0,0);}
.mae_c00036{transform:matrix(0.254582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254582,0.000000,0.000000,0.250000,0,0);}
.m65_c00036{transform:matrix(0.256952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256952,0.000000,0.000000,0.250000,0,0);}
.m3a_c00036{transform:matrix(0.257306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257306,0.000000,0.000000,0.250000,0,0);}
.m37_c00036{transform:matrix(0.258486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258486,0.000000,0.000000,0.250000,0,0);}
.m2_c00036{transform:matrix(0.258596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258596,0.000000,0.000000,0.250000,0,0);}
.m0_c00036{transform:matrix(0.258992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258992,0.000000,0.000000,0.250000,0,0);}
.m40_c00036{transform:matrix(0.259554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259554,0.000000,0.000000,0.250000,0,0);}
.m12_c00036{transform:matrix(0.259895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259895,0.000000,0.000000,0.250000,0,0);}
.m60_c00036{transform:matrix(0.260102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260102,0.000000,0.000000,0.250000,0,0);}
.m51_c00036{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m4_c00036{transform:matrix(0.261972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261972,0.000000,0.000000,0.250000,0,0);}
.m18_c00036{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m9a_c00036{transform:matrix(0.263977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263977,0.000000,0.000000,0.250000,0,0);}
.m59_c00036{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m4b_c00036{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.mf_c00036{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m94_c00036{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.m28_c00036{transform:matrix(0.269227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269227,0.000000,0.000000,0.250000,0,0);}
.m27_c00036{transform:matrix(0.269329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269329,0.000000,0.000000,0.250000,0,0);}
.ma_c00036{transform:matrix(0.269825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269825,0.000000,0.000000,0.250000,0,0);}
.md_c00036{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m22_c00036{transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);}
.m86_c00036{transform:matrix(0.271787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271787,0.000000,0.000000,0.250000,0,0);}
.ma3_c00036{transform:matrix(0.271853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271853,0.000000,0.000000,0.250000,0,0);}
.m1b_c00036{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m96_c00036{transform:matrix(0.273534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273534,0.000000,0.000000,0.250000,0,0);}
.m87_c00036{transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);}
.m17_c00036{transform:matrix(0.274659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274659,0.000000,0.000000,0.250000,0,0);}
.m46_c00036{transform:matrix(0.275105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275105,0.000000,0.000000,0.250000,0,0);}
.m13_c00036{transform:matrix(0.275884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275884,0.000000,0.000000,0.250000,0,0);}
.m42_c00036{transform:matrix(0.276181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276181,0.000000,0.000000,0.250000,0,0);}
.m83_c00036{transform:matrix(0.276682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276682,0.000000,0.000000,0.250000,0,0);}
.m1f_c00036{transform:matrix(0.276727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276727,0.000000,0.000000,0.250000,0,0);}
.m3c_c00036{transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);}
.m45_c00036{transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);}
.m73_c00036{transform:matrix(0.277708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277708,0.000000,0.000000,0.250000,0,0);}
.m3f_c00036{transform:matrix(0.277767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277767,0.000000,0.000000,0.250000,0,0);}
.m5f_c00036{transform:matrix(0.278331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278331,0.000000,0.000000,0.250000,0,0);}
.m41_c00036{transform:matrix(0.278372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278372,0.000000,0.000000,0.250000,0,0);}
.m6_c00036{transform:matrix(0.278485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278485,0.000000,0.000000,0.250000,0,0);}
.m67_c00036{transform:matrix(0.279226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279226,0.000000,0.000000,0.250000,0,0);}
.m8_c00036{transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);}
.m97_c00036{transform:matrix(0.279707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279707,0.000000,0.000000,0.250000,0,0);}
.m79_c00036{transform:matrix(0.279850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279850,0.000000,0.000000,0.250000,0,0);}
.m48_c00036{transform:matrix(0.279876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279876,0.000000,0.000000,0.250000,0,0);}
.m93_c00036{transform:matrix(0.280556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280556,0.000000,0.000000,0.250000,0,0);}
.m24_c00036{transform:matrix(0.281309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281309,0.000000,0.000000,0.250000,0,0);}
.m2f_c00036{transform:matrix(0.281701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281701,0.000000,0.000000,0.250000,0,0);}
.m74_c00036{transform:matrix(0.282254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282254,0.000000,0.000000,0.250000,0,0);}
.m1a_c00036{transform:matrix(0.282386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282386,0.000000,0.000000,0.250000,0,0);}
.m6c_c00036{transform:matrix(0.282959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282959,0.000000,0.000000,0.250000,0,0);}
.m80_c00036{transform:matrix(0.282977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282977,0.000000,0.000000,0.250000,0,0);}
.m16_c00036{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m81_c00036{transform:matrix(0.284620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284620,0.000000,0.000000,0.250000,0,0);}
.me_c00036{transform:matrix(0.284757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284757,0.000000,0.000000,0.250000,0,0);}
.m5c_c00036{transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);}
.m43_c00036{transform:matrix(0.286232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286232,0.000000,0.000000,0.250000,0,0);}
.m7c_c00036{transform:matrix(0.286758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286758,0.000000,0.000000,0.250000,0,0);}
.m3b_c00036{transform:matrix(0.287124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287124,0.000000,0.000000,0.250000,0,0);}
.mb0_c00036{transform:matrix(0.287899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287899,0.000000,0.000000,0.250000,0,0);}
.m75_c00036{transform:matrix(0.288076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288076,0.000000,0.000000,0.250000,0,0);}
.mb_c00036{transform:matrix(0.288887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288887,0.000000,0.000000,0.250000,0,0);}
.m98_c00036{transform:matrix(0.289336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289336,0.000000,0.000000,0.250000,0,0);}
.ma2_c00036{transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);}
.m10_c00036{transform:matrix(0.292446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292446,0.000000,0.000000,0.250000,0,0);}
.m82_c00036{transform:matrix(0.292612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292612,0.000000,0.000000,0.250000,0,0);}
.m95_c00036{transform:matrix(0.293018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293018,0.000000,0.000000,0.250000,0,0);}
.ma8_c00036{transform:matrix(0.293350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293350,0.000000,0.000000,0.250000,0,0);}
.m85_c00036{transform:matrix(0.293484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293484,0.000000,0.000000,0.250000,0,0);}
.m57_c00036{transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);}
.m8c_c00036{transform:matrix(0.293754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293754,0.000000,0.000000,0.250000,0,0);}
.m1e_c00036{transform:matrix(0.293864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293864,0.000000,0.000000,0.250000,0,0);}
.mc_c00036{transform:matrix(0.294780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294780,0.000000,0.000000,0.250000,0,0);}
.m71_c00036{transform:matrix(0.294898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294898,0.000000,0.000000,0.250000,0,0);}
.m5b_c00036{transform:matrix(0.296948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296948,0.000000,0.000000,0.250000,0,0);}
.m52_c00036{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m66_c00036{transform:matrix(0.297961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297961,0.000000,0.000000,0.250000,0,0);}
.m4f_c00036{transform:matrix(0.298003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298003,0.000000,0.000000,0.250000,0,0);}
.ma7_c00036{transform:matrix(0.298106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298106,0.000000,0.000000,0.250000,0,0);}
.m8e_c00036{transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);}
.m38_c00036{transform:matrix(0.298263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298263,0.000000,0.000000,0.250000,0,0);}
.ma4_c00036{transform:matrix(0.298280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298280,0.000000,0.000000,0.250000,0,0);}
.m8d_c00036{transform:matrix(0.298699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298699,0.000000,0.000000,0.250000,0,0);}
.m50_c00036{transform:matrix(0.300200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300200,0.000000,0.000000,0.250000,0,0);}
.m4c_c00036{transform:matrix(0.300735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300735,0.000000,0.000000,0.250000,0,0);}
.m9_c00036{transform:matrix(0.301321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301321,0.000000,0.000000,0.250000,0,0);}
.m4a_c00036{transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);}
.m58_c00036{transform:matrix(0.303391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303391,0.000000,0.000000,0.250000,0,0);}
.m5a_c00036{transform:matrix(0.304506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304506,0.000000,0.000000,0.250000,0,0);}
.m7b_c00036{transform:matrix(0.306237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306237,0.000000,0.000000,0.250000,0,0);}
.m6b_c00036{transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);}
.m2e_c00036{transform:matrix(0.307787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307787,0.000000,0.000000,0.250000,0,0);}
.ma9_c00036{transform:matrix(0.307938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307938,0.000000,0.000000,0.250000,0,0);}
.m99_c00036{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m55_c00036{transform:matrix(0.308839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308839,0.000000,0.000000,0.250000,0,0);}
.m47_c00036{transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);}
.m77_c00036{transform:matrix(0.309534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309534,0.000000,0.000000,0.250000,0,0);}
.m88_c00036{transform:matrix(0.310661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310661,0.000000,0.000000,0.250000,0,0);}
.mac_c00036{transform:matrix(0.311129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311129,0.000000,0.000000,0.250000,0,0);}
.m19_c00036{transform:matrix(0.311181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311181,0.000000,0.000000,0.250000,0,0);}
.m2c_c00036{transform:matrix(0.311475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311475,0.000000,0.000000,0.250000,0,0);}
.m25_c00036{transform:matrix(0.311571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311571,0.000000,0.000000,0.250000,0,0);}
.m2a_c00036{transform:matrix(0.311640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311640,0.000000,0.000000,0.250000,0,0);}
.m9c_c00036{transform:matrix(0.311744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311744,0.000000,0.000000,0.250000,0,0);}
.m6a_c00036{transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);}
.m7e_c00036{transform:matrix(0.312047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312047,0.000000,0.000000,0.250000,0,0);}
.m23_c00036{transform:matrix(0.312232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312232,0.000000,0.000000,0.250000,0,0);}
.m5e_c00036{transform:matrix(0.312526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312526,0.000000,0.000000,0.250000,0,0);}
.m84_c00036{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.m54_c00036{transform:matrix(0.312744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312744,0.000000,0.000000,0.250000,0,0);}
.m6d_c00036{transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);}
.m2b_c00036{transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);}
.m2d_c00036{transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);}
.m69_c00036{transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);}
.m14_c00036{transform:matrix(0.317678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317678,0.000000,0.000000,0.250000,0,0);}
.ma5_c00036{transform:matrix(0.318082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318082,0.000000,0.000000,0.250000,0,0);}
.m44_c00036{transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);}
.m4d_c00036{transform:matrix(0.319652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319652,0.000000,0.000000,0.250000,0,0);}
.m26_c00036{transform:matrix(0.319776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319776,0.000000,0.000000,0.250000,0,0);}
.m15_c00036{transform:matrix(0.319808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319808,0.000000,0.000000,0.250000,0,0);}
.m6f_c00036{transform:matrix(0.320496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320496,0.000000,0.000000,0.250000,0,0);}
.m8a_c00036{transform:matrix(0.320787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320787,0.000000,0.000000,0.250000,0,0);}
.m63_c00036{transform:matrix(0.321213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321213,0.000000,0.000000,0.250000,0,0);}
.m68_c00036{transform:matrix(0.321291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321291,0.000000,0.000000,0.250000,0,0);}
.m61_c00036{transform:matrix(0.321354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321354,0.000000,0.000000,0.250000,0,0);}
.m62_c00036{transform:matrix(0.321397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321397,0.000000,0.000000,0.250000,0,0);}
.mad_c00036{transform:matrix(0.321847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321847,0.000000,0.000000,0.250000,0,0);}
.m5d_c00036{transform:matrix(0.321980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321980,0.000000,0.000000,0.250000,0,0);}
.m1d_c00036{transform:matrix(0.323611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323611,0.000000,0.000000,0.250000,0,0);}
.m91_c00036{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.m9b_c00036{transform:matrix(0.323720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323720,0.000000,0.000000,0.250000,0,0);}
.m7f_c00036{transform:matrix(0.324151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324151,0.000000,0.000000,0.250000,0,0);}
.m53_c00036{transform:matrix(0.324299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324299,0.000000,0.000000,0.250000,0,0);}
.maf_c00036{transform:matrix(0.325326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325326,0.000000,0.000000,0.250000,0,0);}
.m6e_c00036{transform:matrix(0.325336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325336,0.000000,0.000000,0.250000,0,0);}
.m4e_c00036{transform:matrix(0.325680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325680,0.000000,0.000000,0.250000,0,0);}
.m7_c00036{transform:matrix(0.326100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326100,0.000000,0.000000,0.250000,0,0);}
.m92_c00036{transform:matrix(0.326563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326563,0.000000,0.000000,0.250000,0,0);}
.m7a_c00036{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.mb1_c00036{transform:matrix(0.327729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327729,0.000000,0.000000,0.250000,0,0);}
.mab_c00036{transform:matrix(0.328711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328711,0.000000,0.000000,0.250000,0,0);}
.m3e_c00036{transform:matrix(0.329003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329003,0.000000,0.000000,0.250000,0,0);}
.m64_c00036{transform:matrix(0.329080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329080,0.000000,0.000000,0.250000,0,0);}
.m11_c00036{transform:matrix(0.333215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333215,0.000000,0.000000,0.250000,0,0);}
.m21_c00036{transform:matrix(0.333623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333623,0.000000,0.000000,0.250000,0,0);}
.m89_c00036{transform:matrix(0.335559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335559,0.000000,0.000000,0.250000,0,0);}
.mb2_c00036{transform:matrix(0.335804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335804,0.000000,0.000000,0.250000,0,0);}
.m49_c00036{transform:matrix(0.337273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337273,0.000000,0.000000,0.250000,0,0);}
.m76_c00036{transform:matrix(0.337700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337700,0.000000,0.000000,0.250000,0,0);}
.m8f_c00036{transform:matrix(0.337905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337905,0.000000,0.000000,0.250000,0,0);}
.m5_c00036{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.ma6_c00036{transform:matrix(0.340130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340130,0.000000,0.000000,0.250000,0,0);}
.m7d_c00036{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.m90_c00036{transform:matrix(0.344583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344583,0.000000,0.000000,0.250000,0,0);}
.m78_c00036{transform:matrix(0.347559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347559,0.000000,0.000000,0.250000,0,0);}
.m1c_c00036{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m56_c00036{transform:matrix(0.353622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353622,0.000000,0.000000,0.250000,0,0);}
.m3_c00036{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m29_c00036{transform:matrix(0.359351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359351,0.000000,0.000000,0.250000,0,0);}
.m20_c00036{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m8b_c00036{transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);}
.ma0_c00036{transform:matrix(0.831252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.831252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.831252,0.000000,0.000000,0.250000,0,0);}
.ma1_c00036{transform:matrix(1.341619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.341619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.341619,0.000000,0.000000,0.250000,0,0);}
.m9e_c00036{transform:matrix(1.440998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440998,0.000000,0.000000,0.250000,0,0);}
.m9f_c00036{transform:matrix(1.578711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.578711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.578711,0.000000,0.000000,0.250000,0,0);}
.v0_c00036{vertical-align:0.000000px;}
.lsa_c00036{letter-spacing:-2.744280px;}
.ls9_c00036{letter-spacing:-2.716567px;}
.lsb_c00036{letter-spacing:-2.642350px;}
.lsd_c00036{letter-spacing:-1.897474px;}
.lsc_c00036{letter-spacing:-1.058508px;}
.ls2_c00036{letter-spacing:0.000000px;}
.ls13_c00036{letter-spacing:1.019700px;}
.ls0_c00036{letter-spacing:2.101334px;}
.ls10_c00036{letter-spacing:2.830529px;}
.ls5_c00036{letter-spacing:3.230410px;}
.ls6_c00036{letter-spacing:3.261773px;}
.ls3_c00036{letter-spacing:3.544200px;}
.ls11_c00036{letter-spacing:3.722400px;}
.lse_c00036{letter-spacing:3.851110px;}
.ls8_c00036{letter-spacing:3.881196px;}
.ls4_c00036{letter-spacing:3.920400px;}
.ls1_c00036{letter-spacing:4.346110px;}
.lsf_c00036{letter-spacing:51.321798px;}
.ls12_c00036{letter-spacing:52.747398px;}
.ls7_c00036{letter-spacing:58.449798px;}
.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;}
}
.ws2_c00036{word-spacing:-19.602000px;}
.ws1_c00036{word-spacing:-16.959650px;}
.ws0_c00036{word-spacing:-2.195424px;}
.ws3_c00036{word-spacing:0.000000px;}
._7_c00036{margin-left:-15.663780px;}
._8_c00036{margin-left:-10.156212px;}
._9_c00036{margin-left:-3.364020px;}
._3_c00036{width:6.429456px;}
._0_c00036{width:7.761600px;}
._2_c00036{width:13.573217px;}
._1_c00036{width:25.481808px;}
._4_c00036{width:31.676832px;}
._5_c00036{width:109.335600px;}
._6_c00036{width:473.936958px;}
.fc0_c00036{color:transparent;}
.fs11_c00036{font-size:11.682198px;}
.fsa_c00036{font-size:14.454198px;}
.fsb_c00036{font-size:17.424000px;}
.fs10_c00036{font-size:20.394000px;}
.fs12_c00036{font-size:22.176000px;}
.fs6_c00036{font-size:25.146000px;}
.fs1_c00036{font-size:27.720000px;}
.fs9_c00036{font-size:51.321798px;}
.fsf_c00036{font-size:52.747398px;}
.fs4_c00036{font-size:58.449798px;}
.fsd_c00036{font-size:60.192000px;}
.fsc_c00036{font-size:66.330000px;}
.fs2_c00036{font-size:70.884000px;}
.fse_c00036{font-size:74.448000px;}
.fs8_c00036{font-size:77.022198px;}
.fs5_c00036{font-size:77.616198px;}
.fs3_c00036{font-size:78.408000px;}
.fs7_c00036{font-size:78.804000px;}
.fs0_c00036{font-size:86.922198px;}
.y0_c00036{bottom:0.000000px;}
.y23_c00036{bottom:69.409935px;}
.y1_c00036{bottom:76.500000px;}
.y22_c00036{bottom:88.655535px;}
.y21_c00036{bottom:141.046335px;}
.y20_c00036{bottom:170.983935px;}
.y1f_c00036{bottom:205.198335px;}
.y1e_c00036{bottom:208.049535px;}
.y1d_c00036{bottom:273.270735px;}
.y1c_c00036{bottom:299.287935px;}
.y1b_c00036{bottom:306.410985px;}
.y1a_c00036{bottom:338.486985px;}
.y19_c00036{bottom:370.919385px;}
.y18_c00036{bottom:402.995385px;}
.y17_c00036{bottom:430.438185px;}
.y16_c00036{bottom:435.076335px;}
.y15_c00036{bottom:459.667935px;}
.y14_c00036{bottom:468.216585px;}
.y13_c00036{bottom:501.005385px;}
.y12_c00036{bottom:533.794185px;}
.y11_c00036{bottom:598.307535px;}
.y10_c00036{bottom:630.739935px;}
.yf_c00036{bottom:663.167385px;}
.ye_c00036{bottom:696.317535px;}
.ya_c00036{bottom:729.106335px;}
.yd_c00036{bottom:729.457785px;}
.yc_c00036{bottom:735.516585px;}
.yb_c00036{bottom:747.634185px;}
.y9_c00036{bottom:762.602985px;}
.y8_c00036{bottom:795.753135px;}
.y7_c00036{bottom:828.541935px;}
.y6_c00036{bottom:861.330735px;}
.y5_c00036{bottom:894.470985px;}
.y4_c00036{bottom:927.616185px;}
.y3_c00036{bottom:1021.349385px;}
.y2_c00036{bottom:1086.570585px;}
.h14_c00036{height:11.465438px;}
.hd_c00036{height:14.186005px;}
.he_c00036{height:17.100703px;}
.h13_c00036{height:20.015596px;}
.h15_c00036{height:23.128875px;}
.h8_c00036{height:26.226492px;}
.h3_c00036{height:28.911094px;}
.hc_c00036{height:34.180317px;}
.h12_c00036{height:35.129767px;}
.h6_c00036{height:38.927565px;}
.h10_c00036{height:62.778375px;}
.hf_c00036{height:69.180117px;}
.h4_c00036{height:69.568770px;}
.h11_c00036{height:73.066641px;}
.hb_c00036{height:75.593075px;}
.h7_c00036{height:76.176054px;}
.h5_c00036{height:76.953164px;}
.ha_c00036{height:77.341816px;}
.h9_c00036{height:80.951269px;}
.h2_c00036{height:85.309384px;}
.h1_c00036{height:1110.000000px;}
.h0_c00036{height:1263.000000px;}
.w1_c00036{width:733.500000px;}
.w0_c00036{width:892.500000px;}
.x0_c00036{left:0.000000px;}
.x42_c00036{left:65.542485px;}
.x53_c00036{left:66.690885px;}
.x17_c00036{left:67.695735px;}
.xe_c00036{left:69.279735px;}
.x1_c00036{left:79.500000px;}
.x39_c00036{left:87.357135px;}
.x3a_c00036{left:98.870835px;}
.x71_c00036{left:100.187535px;}
.x75_c00036{left:101.380485px;}
.x48_c00036{left:108.444135px;}
.x2a_c00036{left:109.562835px;}
.x18_c00036{left:110.636985px;}
.x6b_c00036{left:112.334835px;}
.x4_c00036{left:120.368685px;}
.x6c_c00036{left:122.150685px;}
.x54_c00036{left:131.253735px;}
.x4b_c00036{left:132.367485px;}
.x5b_c00036{left:134.095035px;}
.x19_c00036{left:142.173435px;}
.x76_c00036{left:144.504885px;}
.x5_c00036{left:153.018885px;}
.x67_c00036{left:154.493985px;}
.x4c_c00036{left:163.745535px;}
.x55_c00036{left:164.824635px;}
.x77_c00036{left:166.562085px;}
.x23_c00036{left:174.793935px;}
.x64_c00036{left:176.174985px;}
.x6_c00036{left:186.292785px;}
.x6d_c00036{left:189.010335px;}
.x5c_c00036{left:196.910535px;}
.x1a_c00036{left:198.296535px;}
.x78_c00036{left:199.741935px;}
.x24_c00036{left:208.622235px;}
.x3b_c00036{left:218.126235px;}
.x72_c00036{left:221.813985px;}
.x1b_c00036{left:231.025935px;}
.x7_c00036{left:239.772585px;}
.x25_c00036{left:242.084235px;}
.x2b_c00036{left:253.162335px;}
.x4d_c00036{left:255.271035px;}
.x1c_c00036{left:263.740485px;}
.x4e_c00036{left:275.625435px;}
.x3c_c00036{left:285.089835px;}
.xf_c00036{left:288.416235px;}
.x56_c00036{left:297.197535px;}
.x43_c00036{left:298.400385px;}
.x8_c00036{left:308.721135px;}
.x79_c00036{left:309.879435px;}
.x3d_c00036{left:319.502235px;}
.x1d_c00036{left:329.288385px;}
.x49_c00036{left:330.857535px;}
.x73_c00036{left:331.971285px;}
.x9_c00036{left:340.896135px;}
.x5a_c00036{left:342.940485px;}
.x10_c00036{left:353.330535px;}
.x68_c00036{left:354.419535px;}
.x1e_c00036{left:363.933435px;}
.x74_c00036{left:365.428335px;}
.x44_c00036{left:374.734335px;}
.x7a_c00036{left:376.679685px;}
.x11_c00036{left:386.416335px;}
.x1f_c00036{left:395.158035px;}
.x46_c00036{left:396.746985px;}
.x5d_c00036{left:398.157735px;}
.x26_c00036{left:408.567585px;}
.x2c_c00036{left:409.973385px;}
.x12_c00036{left:418.017135px;}
.xa_c00036{left:419.215035px;}
.x59_c00036{left:420.353535px;}
.x47_c00036{left:430.293135px;}
.x57_c00036{left:431.337585px;}
.x5e_c00036{left:442.272135px;}
.x5f_c00036{left:454.186785px;}
.x2d_c00036{left:463.814535px;}
.x4f_c00036{left:464.824335px;}
.x7b_c00036{left:475.961835px;}
.x3f_c00036{left:485.218335px;}
.x50_c00036{left:495.588585px;}
.x4a_c00036{left:496.984485px;}
.x20_c00036{left:506.968635px;}
.x65_c00036{left:509.052585px;}
.x27_c00036{left:518.012085px;}
.x2e_c00036{left:519.056535px;}
.x45_c00036{left:528.501135px;}
.xb_c00036{left:529.738635px;}
.x13_c00036{left:540.108885px;}
.x28_c00036{left:551.469135px;}
.x2f_c00036{left:552.498735px;}
.xc_c00036{left:561.289935px;}
.x21_c00036{left:562.928385px;}
.x14_c00036{left:572.298735px;}
.x60_c00036{left:575.006385px;}
.x30_c00036{left:583.802535px;}
.x15_c00036{left:585.351885px;}
.x51_c00036{left:586.356735px;}
.x6e_c00036{left:594.440085px;}
.x29_c00036{left:595.994385px;}
.x61_c00036{left:597.316035px;}
.x6f_c00036{left:602.414535px;}
.x69_c00036{left:608.136735px;}
.x7c_c00036{left:613.651035px;}
.x40_c00036{left:617.680335px;}
.x58_c00036{left:629.174235px;}
.x62_c00036{left:630.287985px;}
.x31_c00036{left:635.168685px;}
.x2_c00036{left:638.410935px;}
.x3_c00036{left:640.356285px;}
.x6a_c00036{left:641.653185px;}
.x32_c00036{left:649.731585px;}
.xd_c00036{left:650.964135px;}
.x66_c00036{left:653.003535px;}
.x33_c00036{left:655.790385px;}
.x34_c00036{left:666.125985px;}
.x70_c00036{left:672.085785px;}
.x22_c00036{left:673.402485px;}
.x52_c00036{left:674.758785px;}
.x3e_c00036{left:677.357535px;}
.x41_c00036{left:679.085085px;}
.x35_c00036{left:681.495735px;}
.x63_c00036{left:685.119135px;}
.x36_c00036{left:693.583635px;}
.x16_c00036{left:695.825985px;}
.x37_c00036{left:707.522835px;}
.x38_c00036{left:718.175235px;}
@media print{
.v0_c00036{vertical-align:0.000000pt;}
.lsa_c00036{letter-spacing:-2.439360pt;}
.ls9_c00036{letter-spacing:-2.414726pt;}
.lsb_c00036{letter-spacing:-2.348755pt;}
.lsd_c00036{letter-spacing:-1.686643pt;}
.lsc_c00036{letter-spacing:-0.940896pt;}
.ls2_c00036{letter-spacing:0.000000pt;}
.ls13_c00036{letter-spacing:0.906400pt;}
.ls0_c00036{letter-spacing:1.867853pt;}
.ls10_c00036{letter-spacing:2.516026pt;}
.ls5_c00036{letter-spacing:2.871475pt;}
.ls6_c00036{letter-spacing:2.899354pt;}
.ls3_c00036{letter-spacing:3.150400pt;}
.ls11_c00036{letter-spacing:3.308800pt;}
.lse_c00036{letter-spacing:3.423209pt;}
.ls8_c00036{letter-spacing:3.449952pt;}
.ls4_c00036{letter-spacing:3.484800pt;}
.ls1_c00036{letter-spacing:3.863209pt;}
.lsf_c00036{letter-spacing:45.619376pt;}
.ls12_c00036{letter-spacing:46.886576pt;}
.ls7_c00036{letter-spacing:51.955376pt;}
.ws2_c00036{word-spacing:-17.424000pt;}
.ws1_c00036{word-spacing:-15.075245pt;}
.ws0_c00036{word-spacing:-1.951488pt;}
.ws3_c00036{word-spacing:0.000000pt;}
._7_c00036{margin-left:-13.923360pt;}
._8_c00036{margin-left:-9.027744pt;}
._9_c00036{margin-left:-2.990240pt;}
._3_c00036{width:5.715072pt;}
._0_c00036{width:6.899200pt;}
._2_c00036{width:12.065082pt;}
._1_c00036{width:22.650496pt;}
._4_c00036{width:28.157184pt;}
._5_c00036{width:97.187200pt;}
._6_c00036{width:421.277296pt;}
.fs11_c00036{font-size:10.384176pt;}
.fsa_c00036{font-size:12.848176pt;}
.fsb_c00036{font-size:15.488000pt;}
.fs10_c00036{font-size:18.128000pt;}
.fs12_c00036{font-size:19.712000pt;}
.fs6_c00036{font-size:22.352000pt;}
.fs1_c00036{font-size:24.640000pt;}
.fs9_c00036{font-size:45.619376pt;}
.fsf_c00036{font-size:46.886576pt;}
.fs4_c00036{font-size:51.955376pt;}
.fsd_c00036{font-size:53.504000pt;}
.fsc_c00036{font-size:58.960000pt;}
.fs2_c00036{font-size:63.008000pt;}
.fse_c00036{font-size:66.176000pt;}
.fs8_c00036{font-size:68.464176pt;}
.fs5_c00036{font-size:68.992176pt;}
.fs3_c00036{font-size:69.696000pt;}
.fs7_c00036{font-size:70.048000pt;}
.fs0_c00036{font-size:77.264176pt;}
.y0_c00036{bottom:0.000000pt;}
.y23_c00036{bottom:61.697720pt;}
.y1_c00036{bottom:68.000000pt;}
.y22_c00036{bottom:78.804920pt;}
.y21_c00036{bottom:125.374520pt;}
.y20_c00036{bottom:151.985720pt;}
.y1f_c00036{bottom:182.398520pt;}
.y1e_c00036{bottom:184.932920pt;}
.y1d_c00036{bottom:242.907320pt;}
.y1c_c00036{bottom:266.033720pt;}
.y1b_c00036{bottom:272.365320pt;}
.y1a_c00036{bottom:300.877320pt;}
.y19_c00036{bottom:329.706120pt;}
.y18_c00036{bottom:358.218120pt;}
.y17_c00036{bottom:382.611720pt;}
.y16_c00036{bottom:386.734520pt;}
.y15_c00036{bottom:408.593720pt;}
.y14_c00036{bottom:416.192520pt;}
.y13_c00036{bottom:445.338120pt;}
.y12_c00036{bottom:474.483720pt;}
.y11_c00036{bottom:531.828920pt;}
.y10_c00036{bottom:560.657720pt;}
.yf_c00036{bottom:589.482120pt;}
.ye_c00036{bottom:618.948920pt;}
.ya_c00036{bottom:648.094520pt;}
.yd_c00036{bottom:648.406920pt;}
.yc_c00036{bottom:653.792520pt;}
.yb_c00036{bottom:664.563720pt;}
.y9_c00036{bottom:677.869320pt;}
.y8_c00036{bottom:707.336120pt;}
.y7_c00036{bottom:736.481720pt;}
.y6_c00036{bottom:765.627320pt;}
.y5_c00036{bottom:795.085320pt;}
.y4_c00036{bottom:824.547720pt;}
.y3_c00036{bottom:907.866120pt;}
.y2_c00036{bottom:965.840520pt;}
.h14_c00036{height:10.191501pt;}
.hd_c00036{height:12.609782pt;}
.he_c00036{height:15.200625pt;}
.h13_c00036{height:17.791641pt;}
.h15_c00036{height:20.559000pt;}
.h8_c00036{height:23.312438pt;}
.h3_c00036{height:25.698750pt;}
.hc_c00036{height:30.382504pt;}
.h12_c00036{height:31.226460pt;}
.h6_c00036{height:34.602280pt;}
.h10_c00036{height:55.803000pt;}
.hf_c00036{height:61.493438pt;}
.h4_c00036{height:61.838906pt;}
.h11_c00036{height:64.948125pt;}
.hb_c00036{height:67.193845pt;}
.h7_c00036{height:67.712048pt;}
.h5_c00036{height:68.402813pt;}
.ha_c00036{height:68.748281pt;}
.h9_c00036{height:71.956684pt;}
.h2_c00036{height:75.830563pt;}
.h1_c00036{height:986.666667pt;}
.h0_c00036{height:1122.666667pt;}
.w1_c00036{width:652.000000pt;}
.w0_c00036{width:793.333333pt;}
.x0_c00036{left:0.000000pt;}
.x42_c00036{left:58.259987pt;}
.x53_c00036{left:59.280787pt;}
.x17_c00036{left:60.173987pt;}
.xe_c00036{left:61.581987pt;}
.x1_c00036{left:70.666667pt;}
.x39_c00036{left:77.650787pt;}
.x3a_c00036{left:87.885187pt;}
.x71_c00036{left:89.055587pt;}
.x75_c00036{left:90.115987pt;}
.x48_c00036{left:96.394787pt;}
.x2a_c00036{left:97.389187pt;}
.x18_c00036{left:98.343987pt;}
.x6b_c00036{left:99.853187pt;}
.x4_c00036{left:106.994387pt;}
.x6c_c00036{left:108.578387pt;}
.x54_c00036{left:116.669987pt;}
.x4b_c00036{left:117.659987pt;}
.x5b_c00036{left:119.195587pt;}
.x19_c00036{left:126.376387pt;}
.x76_c00036{left:128.448787pt;}
.x5_c00036{left:136.016787pt;}
.x67_c00036{left:137.327987pt;}
.x4c_c00036{left:145.551587pt;}
.x55_c00036{left:146.510787pt;}
.x77_c00036{left:148.055187pt;}
.x23_c00036{left:155.372387pt;}
.x64_c00036{left:156.599987pt;}
.x6_c00036{left:165.593587pt;}
.x6d_c00036{left:168.009187pt;}
.x5c_c00036{left:175.031587pt;}
.x1a_c00036{left:176.263587pt;}
.x78_c00036{left:177.548387pt;}
.x24_c00036{left:185.441987pt;}
.x3b_c00036{left:193.889987pt;}
.x72_c00036{left:197.167987pt;}
.x1b_c00036{left:205.356387pt;}
.x7_c00036{left:213.131187pt;}
.x25_c00036{left:215.185987pt;}
.x2b_c00036{left:225.033187pt;}
.x4d_c00036{left:226.907587pt;}
.x1c_c00036{left:234.435987pt;}
.x4e_c00036{left:245.000387pt;}
.x3c_c00036{left:253.413187pt;}
.xf_c00036{left:256.369987pt;}
.x56_c00036{left:264.175587pt;}
.x43_c00036{left:265.244787pt;}
.x8_c00036{left:274.418787pt;}
.x79_c00036{left:275.448387pt;}
.x3d_c00036{left:284.001987pt;}
.x1d_c00036{left:292.700787pt;}
.x49_c00036{left:294.095587pt;}
.x73_c00036{left:295.085587pt;}
.x9_c00036{left:303.018787pt;}
.x5a_c00036{left:304.835987pt;}
.x10_c00036{left:314.071587pt;}
.x68_c00036{left:315.039587pt;}
.x1e_c00036{left:323.496387pt;}
.x74_c00036{left:324.825187pt;}
.x44_c00036{left:333.097187pt;}
.x7a_c00036{left:334.826387pt;}
.x11_c00036{left:343.481187pt;}
.x1f_c00036{left:351.251587pt;}
.x46_c00036{left:352.663987pt;}
.x5d_c00036{left:353.917987pt;}
.x26_c00036{left:363.171187pt;}
.x2c_c00036{left:364.420787pt;}
.x12_c00036{left:371.570787pt;}
.xa_c00036{left:372.635587pt;}
.x59_c00036{left:373.647587pt;}
.x47_c00036{left:382.482787pt;}
.x57_c00036{left:383.411187pt;}
.x5e_c00036{left:393.130787pt;}
.x5f_c00036{left:403.721587pt;}
.x2d_c00036{left:412.279587pt;}
.x4f_c00036{left:413.177187pt;}
.x7b_c00036{left:423.077187pt;}
.x3f_c00036{left:431.305187pt;}
.x50_c00036{left:440.523187pt;}
.x4a_c00036{left:441.763987pt;}
.x20_c00036{left:450.638787pt;}
.x65_c00036{left:452.491187pt;}
.x27_c00036{left:460.455187pt;}
.x2e_c00036{left:461.383587pt;}
.x45_c00036{left:469.778787pt;}
.xb_c00036{left:470.878787pt;}
.x13_c00036{left:480.096787pt;}
.x28_c00036{left:490.194787pt;}
.x2f_c00036{left:491.109987pt;}
.xc_c00036{left:498.924387pt;}
.x21_c00036{left:500.380787pt;}
.x14_c00036{left:508.709987pt;}
.x60_c00036{left:511.116787pt;}
.x30_c00036{left:518.935587pt;}
.x15_c00036{left:520.312787pt;}
.x51_c00036{left:521.205987pt;}
.x6e_c00036{left:528.391187pt;}
.x29_c00036{left:529.772787pt;}
.x61_c00036{left:530.947587pt;}
.x6f_c00036{left:535.479587pt;}
.x69_c00036{left:540.565987pt;}
.x7c_c00036{left:545.467587pt;}
.x40_c00036{left:549.049187pt;}
.x58_c00036{left:559.265987pt;}
.x62_c00036{left:560.255987pt;}
.x31_c00036{left:564.594387pt;}
.x2_c00036{left:567.476387pt;}
.x3_c00036{left:569.205587pt;}
.x6a_c00036{left:570.358387pt;}
.x32_c00036{left:577.539187pt;}
.xd_c00036{left:578.634787pt;}
.x66_c00036{left:580.447587pt;}
.x33_c00036{left:582.924787pt;}
.x34_c00036{left:592.111987pt;}
.x70_c00036{left:597.409587pt;}
.x22_c00036{left:598.579987pt;}
.x52_c00036{left:599.785587pt;}
.x3e_c00036{left:602.095587pt;}
.x41_c00036{left:603.631187pt;}
.x35_c00036{left:605.773987pt;}
.x63_c00036{left:608.994787pt;}
.x36_c00036{left:616.518787pt;}
.x16_c00036{left:618.511987pt;}
.x37_c00036{left:628.909187pt;}
.x38_c00036{left:638.377987pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_98d6983f5642b9aa40035424.woff2')format("woff");}.ff1_c00037{font-family:ff1_c00037;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00037;src:url('chunks/assets/font_68a6e3cd157ce5d959229507.woff2')format("woff");}.ff2_c00037{font-family:ff2_c00037;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00037;src:url('chunks/assets/font_b307c59990a92030a7873bf9.woff2')format("woff");}.ff3_c00037{font-family:ff3_c00037;line-height:0.666000;font-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_c00037{transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);}
.m57_c00037{transform:matrix(0.206757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206757,0.000000,0.000000,0.250000,0,0);}
.m75_c00037{transform:matrix(0.214121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214121,0.000000,0.000000,0.250000,0,0);}
.m4_c00037{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m51_c00037{transform:matrix(0.251240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251240,0.000000,0.000000,0.250000,0,0);}
.m5d_c00037{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.m0_c00037{transform:matrix(0.253145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253145,0.000000,0.000000,0.250000,0,0);}
.m47_c00037{transform:matrix(0.254010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254010,0.000000,0.000000,0.250000,0,0);}
.m63_c00037{transform:matrix(0.255113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255113,0.000000,0.000000,0.250000,0,0);}
.m44_c00037{transform:matrix(0.256057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256057,0.000000,0.000000,0.250000,0,0);}
.m84_c00037{transform:matrix(0.258503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258503,0.000000,0.000000,0.250000,0,0);}
.m7c_c00037{transform:matrix(0.261347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261347,0.000000,0.000000,0.250000,0,0);}
.m76_c00037{transform:matrix(0.261462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261462,0.000000,0.000000,0.250000,0,0);}
.m7f_c00037{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m48_c00037{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m45_c00037{transform:matrix(0.263955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263955,0.000000,0.000000,0.250000,0,0);}
.m2a_c00037{transform:matrix(0.266830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266830,0.000000,0.000000,0.250000,0,0);}
.m28_c00037{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.m39_c00037{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m72_c00037{transform:matrix(0.268217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268217,0.000000,0.000000,0.250000,0,0);}
.m2e_c00037{transform:matrix(0.268694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268694,0.000000,0.000000,0.250000,0,0);}
.m8c_c00037{transform:matrix(0.268705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268705,0.000000,0.000000,0.250000,0,0);}
.m3b_c00037{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m1a_c00037{transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);}
.m30_c00037{transform:matrix(0.271808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271808,0.000000,0.000000,0.250000,0,0);}
.m41_c00037{transform:matrix(0.271820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271820,0.000000,0.000000,0.250000,0,0);}
.m54_c00037{transform:matrix(0.272343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272343,0.000000,0.000000,0.250000,0,0);}
.m25_c00037{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m80_c00037{transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);}
.m79_c00037{transform:matrix(0.273343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273343,0.000000,0.000000,0.250000,0,0);}
.m38_c00037{transform:matrix(0.273612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273612,0.000000,0.000000,0.250000,0,0);}
.m34_c00037{transform:matrix(0.274952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274952,0.000000,0.000000,0.250000,0,0);}
.m1f_c00037{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m60_c00037{transform:matrix(0.276753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276753,0.000000,0.000000,0.250000,0,0);}
.m6d_c00037{transform:matrix(0.276947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276947,0.000000,0.000000,0.250000,0,0);}
.m9_c00037{transform:matrix(0.276982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276982,0.000000,0.000000,0.250000,0,0);}
.mc_c00037{transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);}
.m4e_c00037{transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);}
.md_c00037{transform:matrix(0.280040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280040,0.000000,0.000000,0.250000,0,0);}
.m2d_c00037{transform:matrix(0.280644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280644,0.000000,0.000000,0.250000,0,0);}
.m5_c00037{transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);}
.m18_c00037{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m6b_c00037{transform:matrix(0.285785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285785,0.000000,0.000000,0.250000,0,0);}
.m8e_c00037{transform:matrix(0.286548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286548,0.000000,0.000000,0.250000,0,0);}
.m27_c00037{transform:matrix(0.287082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287082,0.000000,0.000000,0.250000,0,0);}
.m52_c00037{transform:matrix(0.287518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287518,0.000000,0.000000,0.250000,0,0);}
.m6a_c00037{transform:matrix(0.287943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287943,0.000000,0.000000,0.250000,0,0);}
.m4c_c00037{transform:matrix(0.288068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288068,0.000000,0.000000,0.250000,0,0);}
.m73_c00037{transform:matrix(0.288532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288532,0.000000,0.000000,0.250000,0,0);}
.m15_c00037{transform:matrix(0.288806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288806,0.000000,0.000000,0.250000,0,0);}
.m5a_c00037{transform:matrix(0.288865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288865,0.000000,0.000000,0.250000,0,0);}
.m1c_c00037{transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);}
.m5b_c00037{transform:matrix(0.289432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289432,0.000000,0.000000,0.250000,0,0);}
.m82_c00037{transform:matrix(0.290549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290549,0.000000,0.000000,0.250000,0,0);}
.m90_c00037{transform:matrix(0.290696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290696,0.000000,0.000000,0.250000,0,0);}
.m7a_c00037{transform:matrix(0.292127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292127,0.000000,0.000000,0.250000,0,0);}
.m68_c00037{transform:matrix(0.293496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293496,0.000000,0.000000,0.250000,0,0);}
.m8d_c00037{transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);}
.m8b_c00037{transform:matrix(0.293689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293689,0.000000,0.000000,0.250000,0,0);}
.m5e_c00037{transform:matrix(0.293745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293745,0.000000,0.000000,0.250000,0,0);}
.m64_c00037{transform:matrix(0.294956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294956,0.000000,0.000000,0.250000,0,0);}
.m2f_c00037{transform:matrix(0.294966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294966,0.000000,0.000000,0.250000,0,0);}
.m35_c00037{transform:matrix(0.295187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295187,0.000000,0.000000,0.250000,0,0);}
.m4d_c00037{transform:matrix(0.295535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295535,0.000000,0.000000,0.250000,0,0);}
.m46_c00037{transform:matrix(0.295922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295922,0.000000,0.000000,0.250000,0,0);}
.m50_c00037{transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);}
.m5c_c00037{transform:matrix(0.297011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297011,0.000000,0.000000,0.250000,0,0);}
.m20_c00037{transform:matrix(0.297115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297115,0.000000,0.000000,0.250000,0,0);}
.m49_c00037{transform:matrix(0.297559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297559,0.000000,0.000000,0.250000,0,0);}
.m13_c00037{transform:matrix(0.298549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298549,0.000000,0.000000,0.250000,0,0);}
.m3_c00037{transform:matrix(0.298807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298807,0.000000,0.000000,0.250000,0,0);}
.m33_c00037{transform:matrix(0.298858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298858,0.000000,0.000000,0.250000,0,0);}
.m81_c00037{transform:matrix(0.299520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299520,0.000000,0.000000,0.250000,0,0);}
.m86_c00037{transform:matrix(0.300023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300023,0.000000,0.000000,0.250000,0,0);}
.m65_c00037{transform:matrix(0.300052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300052,0.000000,0.000000,0.250000,0,0);}
.m3e_c00037{transform:matrix(0.302096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302096,0.000000,0.000000,0.250000,0,0);}
.m8_c00037{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m23_c00037{transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);}
.m6e_c00037{transform:matrix(0.304191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304191,0.000000,0.000000,0.250000,0,0);}
.m10_c00037{transform:matrix(0.304288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304288,0.000000,0.000000,0.250000,0,0);}
.m3d_c00037{transform:matrix(0.305083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305083,0.000000,0.000000,0.250000,0,0);}
.m85_c00037{transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);}
.m17_c00037{transform:matrix(0.308183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308183,0.000000,0.000000,0.250000,0,0);}
.m58_c00037{transform:matrix(0.308727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308727,0.000000,0.000000,0.250000,0,0);}
.me_c00037{transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);}
.m6_c00037{transform:matrix(0.310021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310021,0.000000,0.000000,0.250000,0,0);}
.m67_c00037{transform:matrix(0.310673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310673,0.000000,0.000000,0.250000,0,0);}
.m77_c00037{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.m70_c00037{transform:matrix(0.312910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312910,0.000000,0.000000,0.250000,0,0);}
.m66_c00037{transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);}
.m2b_c00037{transform:matrix(0.314593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314593,0.000000,0.000000,0.250000,0,0);}
.m12_c00037{transform:matrix(0.315418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315418,0.000000,0.000000,0.250000,0,0);}
.m8f_c00037{transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);}
.m1d_c00037{transform:matrix(0.315717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315717,0.000000,0.000000,0.250000,0,0);}
.m19_c00037{transform:matrix(0.316144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316144,0.000000,0.000000,0.250000,0,0);}
.m69_c00037{transform:matrix(0.316253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316253,0.000000,0.000000,0.250000,0,0);}
.m88_c00037{transform:matrix(0.316285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316285,0.000000,0.000000,0.250000,0,0);}
.m7_c00037{transform:matrix(0.317299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317299,0.000000,0.000000,0.250000,0,0);}
.m8a_c00037{transform:matrix(0.317312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317312,0.000000,0.000000,0.250000,0,0);}
.m61_c00037{transform:matrix(0.317440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317440,0.000000,0.000000,0.250000,0,0);}
.ma_c00037{transform:matrix(0.317571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317571,0.000000,0.000000,0.250000,0,0);}
.m11_c00037{transform:matrix(0.318082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318082,0.000000,0.000000,0.250000,0,0);}
.m6c_c00037{transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);}
.m37_c00037{transform:matrix(0.319299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319299,0.000000,0.000000,0.250000,0,0);}
.m62_c00037{transform:matrix(0.319808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319808,0.000000,0.000000,0.250000,0,0);}
.m1_c00037{transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);}
.m7e_c00037{transform:matrix(0.319859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319859,0.000000,0.000000,0.250000,0,0);}
.mb_c00037{transform:matrix(0.320171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320171,0.000000,0.000000,0.250000,0,0);}
.m55_c00037{transform:matrix(0.320415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320415,0.000000,0.000000,0.250000,0,0);}
.m83_c00037{transform:matrix(0.320819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320819,0.000000,0.000000,0.250000,0,0);}
.m3f_c00037{transform:matrix(0.321272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321272,0.000000,0.000000,0.250000,0,0);}
.m5f_c00037{transform:matrix(0.321711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321711,0.000000,0.000000,0.250000,0,0);}
.m4a_c00037{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.m4b_c00037{transform:matrix(0.324371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324371,0.000000,0.000000,0.250000,0,0);}
.m53_c00037{transform:matrix(0.324647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324647,0.000000,0.000000,0.250000,0,0);}
.m3a_c00037{transform:matrix(0.325574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325574,0.000000,0.000000,0.250000,0,0);}
.m24_c00037{transform:matrix(0.325811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325811,0.000000,0.000000,0.250000,0,0);}
.m22_c00037{transform:matrix(0.326958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326958,0.000000,0.000000,0.250000,0,0);}
.mf_c00037{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.m91_c00037{transform:matrix(0.327730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327730,0.000000,0.000000,0.250000,0,0);}
.m7b_c00037{transform:matrix(0.328480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328480,0.000000,0.000000,0.250000,0,0);}
.m59_c00037{transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);}
.m29_c00037{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m2c_c00037{transform:matrix(0.333645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333645,0.000000,0.000000,0.250000,0,0);}
.m3c_c00037{transform:matrix(0.334276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334276,0.000000,0.000000,0.250000,0,0);}
.m2_c00037{transform:matrix(0.334800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334800,0.000000,0.000000,0.250000,0,0);}
.m43_c00037{transform:matrix(0.336842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336842,0.000000,0.000000,0.250000,0,0);}
.m1e_c00037{transform:matrix(0.337811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337811,0.000000,0.000000,0.250000,0,0);}
.m16_c00037{transform:matrix(0.338217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338217,0.000000,0.000000,0.250000,0,0);}
.m4f_c00037{transform:matrix(0.338257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338257,0.000000,0.000000,0.250000,0,0);}
.m42_c00037{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m40_c00037{transform:matrix(0.339789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339789,0.000000,0.000000,0.250000,0,0);}
.m71_c00037{transform:matrix(0.342876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342876,0.000000,0.000000,0.250000,0,0);}
.m6f_c00037{transform:matrix(0.343079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343079,0.000000,0.000000,0.250000,0,0);}
.m74_c00037{transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);}
.m32_c00037{transform:matrix(0.346849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346849,0.000000,0.000000,0.250000,0,0);}
.m31_c00037{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m14_c00037{transform:matrix(0.349563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349563,0.000000,0.000000,0.250000,0,0);}
.m36_c00037{transform:matrix(0.351899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351899,0.000000,0.000000,0.250000,0,0);}
.m1b_c00037{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m87_c00037{transform:matrix(0.359351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359351,0.000000,0.000000,0.250000,0,0);}
.m21_c00037{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m7d_c00037{transform:matrix(0.362348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362348,0.000000,0.000000,0.250000,0,0);}
.m89_c00037{transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);}
.m26_c00037{transform:matrix(0.375537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375537,0.000000,0.000000,0.250000,0,0);}
.m56_c00037{transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);}
.m78_c00037{transform:matrix(0.429317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429317,0.000000,0.000000,0.250000,0,0);}
.v0_c00037{vertical-align:0.000000px;}
.ls10_c00037{letter-spacing:-1.897474px;}
.ls5_c00037{letter-spacing:-1.662250px;}
.ls7_c00037{letter-spacing:0.000000px;}
.ls9_c00037{letter-spacing:1.528956px;}
.ls0_c00037{letter-spacing:1.677931px;}
.ls1_c00037{letter-spacing:1.960200px;}
.ls8_c00037{letter-spacing:3.306610px;}
.lsd_c00037{letter-spacing:3.489156px;}
.ls6_c00037{letter-spacing:3.643200px;}
.ls4_c00037{letter-spacing:3.761366px;}
.lse_c00037{letter-spacing:3.791700px;}
.ls3_c00037{letter-spacing:3.920400px;}
.lsb_c00037{letter-spacing:4.078810px;}
.ls2_c00037{letter-spacing:4.296610px;}
.lsa_c00037{letter-spacing:4.474810px;}
.ls11_c00037{letter-spacing:29.937798px;}
.lsf_c00037{letter-spacing:51.321798px;}
.lsc_c00037{letter-spacing:52.747398px;}
.sc__c00037{text-shadow:none;}
.sc0_c00037{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00037{-webkit-text-stroke:0px transparent;}
.sc0_c00037{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00037{word-spacing:0.000000px;}
._1_c00037{width:6.351840px;}
._0_c00037{width:24.669216px;}
.fc0_c00037{color:transparent;}
.fse_c00037{font-size:22.374000px;}
.fs8_c00037{font-size:22.572000px;}
.fs6_c00037{font-size:27.720000px;}
.fs11_c00037{font-size:29.937798px;}
.fs10_c00037{font-size:34.650000px;}
.fs12_c00037{font-size:39.204000px;}
.fsd_c00037{font-size:51.321798px;}
.fsc_c00037{font-size:52.747398px;}
.fsb_c00037{font-size:64.152198px;}
.fs5_c00037{font-size:66.132198px;}
.fs4_c00037{font-size:66.330000px;}
.fsf_c00037{font-size:67.320000px;}
.fs3_c00037{font-size:72.864000px;}
.fs2_c00037{font-size:75.834000px;}
.fs1_c00037{font-size:78.408000px;}
.fsa_c00037{font-size:81.576198px;}
.fs0_c00037{font-size:85.932198px;}
.fs7_c00037{font-size:89.496198px;}
.fs9_c00037{font-size:107.712198px;}
.y0_c00037{bottom:0.000000px;}
.y1e_c00037{bottom:58.712985px;}
.y1d_c00037{bottom:69.409935px;}
.y1_c00037{bottom:76.500000px;}
.y1c_c00037{bottom:79.745535px;}
.y1b_c00037{bottom:92.575935px;}
.y1a_c00037{bottom:118.949535px;}
.y19_c00037{bottom:198.783135px;}
.y18_c00037{bottom:232.997535px;}
.y17_c00037{bottom:266.494185px;}
.y16_c00037{bottom:299.287935px;}
.y15_c00037{bottom:331.363935px;}
.y14_c00037{bottom:364.504185px;}
.y13_c00037{bottom:396.936585px;}
.y12_c00037{bottom:429.373935px;}
.y11_c00037{bottom:493.882335px;}
.y10_c00037{bottom:526.309785px;}
.ye_c00037{bottom:558.747135px;}
.yf_c00037{bottom:573.359535px;}
.yd_c00037{bottom:584.046585px;}
.yc_c00037{bottom:591.530985px;}
.yb_c00037{bottom:625.745385px;}
.ya_c00037{bottom:658.534185px;}
.y9_c00037{bottom:716.627385px;}
.y8_c00037{bottom:755.118585px;}
.y7_c00037{bottom:788.976585px;}
.y6_c00037{bottom:821.765385px;}
.y5_c00037{bottom:854.197785px;}
.y4_c00037{bottom:886.986585px;}
.y3_c00037{bottom:920.131785px;}
.y2_c00037{bottom:1068.394185px;}
.h12_c00037{height:19.938573px;}
.hf_c00037{height:21.958857px;}
.ha_c00037{height:23.541891px;}
.h8_c00037{height:28.911094px;}
.he_c00037{height:34.180317px;}
.hd_c00037{height:35.129767px;}
.h11_c00037{height:36.138867px;}
.h13_c00037{height:38.476582px;}
.h10_c00037{height:66.070898px;}
.h7_c00037{height:68.973816px;}
.h6_c00037{height:69.180117px;}
.h5_c00037{height:71.512031px;}
.h4_c00037{height:74.426924px;}
.h3_c00037{height:76.953164px;}
.hc_c00037{height:80.062577px;}
.h2_c00037{height:84.337753px;}
.h9_c00037{height:87.835624px;}
.hb_c00037{height:112.340457px;}
.h1_c00037{height:1110.000000px;}
.h0_c00037{height:1263.000000px;}
.w1_c00037{width:796.500000px;}
.w0_c00037{width:892.500000px;}
.x0_c00037{left:0.000000px;}
.x1_c00037{left:48.000000px;}
.x18_c00037{left:103.358685px;}
.x3_c00037{left:104.531835px;}
.x4e_c00037{left:105.591135px;}
.x27_c00037{left:137.300835px;}
.x4_c00037{left:147.977985px;}
.x2a_c00037{left:158.382885px;}
.x51_c00037{left:159.947085px;}
.x28_c00037{left:170.089635px;}
.x1f_c00037{left:181.172685px;}
.x34_c00037{left:182.217135px;}
.x13_c00037{left:190.998435px;}
.xd_c00037{left:202.403235px;}
.x19_c00037{left:204.308985px;}
.x3a_c00037{left:207.615585px;}
.x3b_c00037{left:218.178885px;}
.x20_c00037{left:227.069085px;}
.x14_c00037{left:236.216685px;}
.x47_c00037{left:237.464085px;}
.x4a_c00037{left:238.825335px;}
.xe_c00037{left:248.873835px;}
.x21_c00037{left:257.957085px;}
.x5_c00037{left:259.199535px;}
.x55_c00037{left:260.932035px;}
.x2e_c00037{left:271.317135px;}
.x48_c00037{left:282.014085px;}
.x57_c00037{left:293.804985px;}
.x1a_c00037{left:303.546585px;}
.x46_c00037{left:304.793985px;}
.x35_c00037{left:315.807735px;}
.x1b_c00037{left:326.182935px;}
.x22_c00037{left:336.909585px;}
.x15_c00037{left:347.007585px;}
.xf_c00037{left:349.334085px;}
.x1c_c00037{left:359.328135px;}
.x3c_c00037{left:360.412185px;}
.x2b_c00037{left:370.757685px;}
.x6_c00037{left:381.563535px;}
.x3d_c00037{left:393.864285px;}
.x23_c00037{left:403.566285px;}
.x2f_c00037{left:404.581035px;}
.x7_c00037{left:413.392035px;}
.x10_c00037{left:414.594885px;}
.x42_c00037{left:418.074735px;}
.x16_c00037{left:425.905635px;}
.x4b_c00037{left:436.944135px;}
.x58_c00037{left:438.503385px;}
.x36_c00037{left:448.438035px;}
.x52_c00037{left:449.452785px;}
.x8_c00037{left:457.229235px;}
.x11_c00037{left:458.778585px;}
.x4f_c00037{left:460.520985px;}
.x24_c00037{left:469.643835px;}
.x5b_c00037{left:470.802135px;}
.x1d_c00037{left:481.137735px;}
.x4c_c00037{left:482.320785px;}
.x59_c00037{left:493.235535px;}
.x56_c00037{left:504.798735px;}
.x30_c00037{left:514.213635px;}
.x5c_c00037{left:516.465885px;}
.x37_c00037{left:526.534185px;}
.x9_c00037{left:536.067885px;}
.x3e_c00037{left:537.201435px;}
.x43_c00037{left:548.393385px;}
.x25_c00037{left:557.377635px;}
.x12_c00037{left:558.912135px;}
.x38_c00037{left:561.372285px;}
.x44_c00037{left:570.321885px;}
.x4d_c00037{left:573.108735px;}
.x31_c00037{left:581.375235px;}
.x5d_c00037{left:583.667085px;}
.x2c_c00037{left:592.423635px;}
.x50_c00037{left:593.492835px;}
.xa_c00037{left:603.368085px;}
.x32_c00037{left:614.366985px;}
.x5a_c00037{left:616.272735px;}
.x39_c00037{left:625.598535px;}
.xb_c00037{left:635.741085px;}
.x53_c00037{left:637.364685px;}
.x3f_c00037{left:659.070435px;}
.x26_c00037{left:669.316935px;}
.x54_c00037{left:670.499985px;}
.x2_c00037{left:680.078235px;}
.x45_c00037{left:681.914685px;}
.x49_c00037{left:691.418685px;}
.x33_c00037{left:693.250185px;}
.x40_c00037{left:696.066735px;}
.xc_c00037{left:703.585785px;}
.x2d_c00037{left:713.951085px;}
.x17_c00037{left:714.995535px;}
.x41_c00037{left:726.786435px;}
.x5e_c00037{left:730.434585px;}
.x29_c00037{left:731.909685px;}
.x1e_c00037{left:747.848685px;}
@media print{
.v0_c00037{vertical-align:0.000000pt;}
.ls10_c00037{letter-spacing:-1.686643pt;}
.ls5_c00037{letter-spacing:-1.477555pt;}
.ls7_c00037{letter-spacing:0.000000pt;}
.ls9_c00037{letter-spacing:1.359072pt;}
.ls0_c00037{letter-spacing:1.491494pt;}
.ls1_c00037{letter-spacing:1.742400pt;}
.ls8_c00037{letter-spacing:2.939209pt;}
.lsd_c00037{letter-spacing:3.101472pt;}
.ls6_c00037{letter-spacing:3.238400pt;}
.ls4_c00037{letter-spacing:3.343437pt;}
.lse_c00037{letter-spacing:3.370400pt;}
.ls3_c00037{letter-spacing:3.484800pt;}
.lsb_c00037{letter-spacing:3.625609pt;}
.ls2_c00037{letter-spacing:3.819209pt;}
.lsa_c00037{letter-spacing:3.977609pt;}
.ls11_c00037{letter-spacing:26.611376pt;}
.lsf_c00037{letter-spacing:45.619376pt;}
.lsc_c00037{letter-spacing:46.886576pt;}
.ws0_c00037{word-spacing:0.000000pt;}
._1_c00037{width:5.646080pt;}
._0_c00037{width:21.928192pt;}
.fse_c00037{font-size:19.888000pt;}
.fs8_c00037{font-size:20.064000pt;}
.fs6_c00037{font-size:24.640000pt;}
.fs11_c00037{font-size:26.611376pt;}
.fs10_c00037{font-size:30.800000pt;}
.fs12_c00037{font-size:34.848000pt;}
.fsd_c00037{font-size:45.619376pt;}
.fsc_c00037{font-size:46.886576pt;}
.fsb_c00037{font-size:57.024176pt;}
.fs5_c00037{font-size:58.784176pt;}
.fs4_c00037{font-size:58.960000pt;}
.fsf_c00037{font-size:59.840000pt;}
.fs3_c00037{font-size:64.768000pt;}
.fs2_c00037{font-size:67.408000pt;}
.fs1_c00037{font-size:69.696000pt;}
.fsa_c00037{font-size:72.512176pt;}
.fs0_c00037{font-size:76.384176pt;}
.fs7_c00037{font-size:79.552176pt;}
.fs9_c00037{font-size:95.744176pt;}
.y0_c00037{bottom:0.000000pt;}
.y1e_c00037{bottom:52.189320pt;}
.y1d_c00037{bottom:61.697720pt;}
.y1_c00037{bottom:68.000000pt;}
.y1c_c00037{bottom:70.884920pt;}
.y1b_c00037{bottom:82.289720pt;}
.y1a_c00037{bottom:105.732920pt;}
.y19_c00037{bottom:176.696120pt;}
.y18_c00037{bottom:207.108920pt;}
.y17_c00037{bottom:236.883720pt;}
.y16_c00037{bottom:266.033720pt;}
.y15_c00037{bottom:294.545720pt;}
.y14_c00037{bottom:324.003720pt;}
.y13_c00037{bottom:352.832520pt;}
.y12_c00037{bottom:381.665720pt;}
.y11_c00037{bottom:439.006520pt;}
.y10_c00037{bottom:467.830920pt;}
.ye_c00037{bottom:496.664120pt;}
.yf_c00037{bottom:509.652920pt;}
.yd_c00037{bottom:519.152520pt;}
.yc_c00037{bottom:525.805320pt;}
.yb_c00037{bottom:556.218120pt;}
.ya_c00037{bottom:585.363720pt;}
.y9_c00037{bottom:637.002120pt;}
.y8_c00037{bottom:671.216520pt;}
.y7_c00037{bottom:701.312520pt;}
.y6_c00037{bottom:730.458120pt;}
.y5_c00037{bottom:759.286920pt;}
.y4_c00037{bottom:788.432520pt;}
.y3_c00037{bottom:817.894920pt;}
.y2_c00037{bottom:949.683720pt;}
.h12_c00037{height:17.723176pt;}
.hf_c00037{height:19.518984pt;}
.ha_c00037{height:20.926125pt;}
.h8_c00037{height:25.698750pt;}
.he_c00037{height:30.382504pt;}
.hd_c00037{height:31.226460pt;}
.h11_c00037{height:32.123438pt;}
.h13_c00037{height:34.201406pt;}
.h10_c00037{height:58.729688pt;}
.h7_c00037{height:61.310059pt;}
.h6_c00037{height:61.493438pt;}
.h5_c00037{height:63.566250pt;}
.h4_c00037{height:66.157266pt;}
.h3_c00037{height:68.402813pt;}
.hc_c00037{height:71.166735pt;}
.h2_c00037{height:74.966891pt;}
.h9_c00037{height:78.076110pt;}
.hb_c00037{height:99.858184pt;}
.h1_c00037{height:986.666667pt;}
.h0_c00037{height:1122.666667pt;}
.w1_c00037{width:708.000000pt;}
.w0_c00037{width:793.333333pt;}
.x0_c00037{left:0.000000pt;}
.x1_c00037{left:42.666667pt;}
.x18_c00037{left:91.874387pt;}
.x3_c00037{left:92.917187pt;}
.x4e_c00037{left:93.858787pt;}
.x27_c00037{left:122.045187pt;}
.x4_c00037{left:131.535987pt;}
.x2a_c00037{left:140.784787pt;}
.x51_c00037{left:142.175187pt;}
.x28_c00037{left:151.190787pt;}
.x1f_c00037{left:161.042387pt;}
.x34_c00037{left:161.970787pt;}
.x13_c00037{left:169.776387pt;}
.xd_c00037{left:179.913987pt;}
.x19_c00037{left:181.607987pt;}
.x3a_c00037{left:184.547187pt;}
.x3b_c00037{left:193.936787pt;}
.x20_c00037{left:201.839187pt;}
.x14_c00037{left:209.970387pt;}
.x47_c00037{left:211.079187pt;}
.x4a_c00037{left:212.289187pt;}
.xe_c00037{left:221.221187pt;}
.x21_c00037{left:229.295187pt;}
.x5_c00037{left:230.399587pt;}
.x55_c00037{left:231.939587pt;}
.x2e_c00037{left:241.170787pt;}
.x48_c00037{left:250.679187pt;}
.x57_c00037{left:261.159987pt;}
.x1a_c00037{left:269.819187pt;}
.x46_c00037{left:270.927987pt;}
.x35_c00037{left:280.717987pt;}
.x1b_c00037{left:289.940387pt;}
.x22_c00037{left:299.475187pt;}
.x15_c00037{left:308.451187pt;}
.xf_c00037{left:310.519187pt;}
.x1c_c00037{left:319.402787pt;}
.x3c_c00037{left:320.366387pt;}
.x2b_c00037{left:329.562387pt;}
.x6_c00037{left:339.167587pt;}
.x3d_c00037{left:350.101587pt;}
.x23_c00037{left:358.725587pt;}
.x2f_c00037{left:359.627587pt;}
.x7_c00037{left:367.459587pt;}
.x10_c00037{left:368.528787pt;}
.x42_c00037{left:371.621987pt;}
.x16_c00037{left:378.582787pt;}
.x4b_c00037{left:388.394787pt;}
.x58_c00037{left:389.780787pt;}
.x36_c00037{left:398.611587pt;}
.x52_c00037{left:399.513587pt;}
.x8_c00037{left:406.425987pt;}
.x11_c00037{left:407.803187pt;}
.x4f_c00037{left:409.351987pt;}
.x24_c00037{left:417.461187pt;}
.x5b_c00037{left:418.490787pt;}
.x1d_c00037{left:427.677987pt;}
.x4c_c00037{left:428.729587pt;}
.x59_c00037{left:438.431587pt;}
.x56_c00037{left:448.709987pt;}
.x30_c00037{left:457.078787pt;}
.x5c_c00037{left:459.080787pt;}
.x37_c00037{left:468.030387pt;}
.x9_c00037{left:476.504787pt;}
.x3e_c00037{left:477.512387pt;}
.x43_c00037{left:487.460787pt;}
.x25_c00037{left:495.446787pt;}
.x12_c00037{left:496.810787pt;}
.x38_c00037{left:498.997587pt;}
.x44_c00037{left:506.952787pt;}
.x4d_c00037{left:509.429987pt;}
.x31_c00037{left:516.777987pt;}
.x5d_c00037{left:518.815187pt;}
.x2c_c00037{left:526.598787pt;}
.x50_c00037{left:527.549187pt;}
.xa_c00037{left:536.327187pt;}
.x32_c00037{left:546.103987pt;}
.x5a_c00037{left:547.797987pt;}
.x39_c00037{left:556.087587pt;}
.xb_c00037{left:565.103187pt;}
.x53_c00037{left:566.546387pt;}
.x3f_c00037{left:585.840387pt;}
.x26_c00037{left:594.948387pt;}
.x54_c00037{left:595.999987pt;}
.x2_c00037{left:604.513987pt;}
.x45_c00037{left:606.146387pt;}
.x49_c00037{left:614.594387pt;}
.x33_c00037{left:616.222387pt;}
.x40_c00037{left:618.725987pt;}
.xc_c00037{left:625.409587pt;}
.x2d_c00037{left:634.623187pt;}
.x17_c00037{left:635.551587pt;}
.x41_c00037{left:646.032387pt;}
.x5e_c00037{left:649.275187pt;}
.x29_c00037{left:650.586387pt;}
.x1e_c00037{left:664.754387pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2902f2dbfb8190eca30d4464.woff2')format("woff");}.ff1_c00038{font-family:ff1_c00038;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00038;src:url('chunks/assets/font_9dc3b02e0589f18d09ab4ca8.woff2')format("woff");}.ff2_c00038{font-family:ff2_c00038;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00038;src:url('chunks/assets/font_2bc837f4747386b5c694366c.woff2')format("woff");}.ff3_c00038{font-family:ff3_c00038;line-height:0.666000;font-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_c00038{transform:matrix(0.143430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143430,0.000000,0.000000,0.250000,0,0);}
.m37_c00038{transform:matrix(0.144231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144231,0.000000,0.000000,0.250000,0,0);}
.m32_c00038{transform:matrix(0.147116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147116,0.000000,0.000000,0.250000,0,0);}
.m28_c00038{transform:matrix(0.215534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215534,0.000000,0.000000,0.250000,0,0);}
.m0_c00038{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m78_c00038{transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);}
.m55_c00038{transform:matrix(0.250875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250875,0.000000,0.000000,0.250000,0,0);}
.m16_c00038{transform:matrix(0.252090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252090,0.000000,0.000000,0.250000,0,0);}
.m48_c00038{transform:matrix(0.256928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256928,0.000000,0.000000,0.250000,0,0);}
.m84_c00038{transform:matrix(0.256952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256952,0.000000,0.000000,0.250000,0,0);}
.m5a_c00038{transform:matrix(0.259016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259016,0.000000,0.000000,0.250000,0,0);}
.m1_c00038{transform:matrix(0.259032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259032,0.000000,0.000000,0.250000,0,0);}
.m62_c00038{transform:matrix(0.260734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260734,0.000000,0.000000,0.250000,0,0);}
.m9d_c00038{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m3_c00038{transform:matrix(0.261481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261481,0.000000,0.000000,0.250000,0,0);}
.m1a_c00038{transform:matrix(0.261961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261961,0.000000,0.000000,0.250000,0,0);}
.m24_c00038{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m8c_c00038{transform:matrix(0.263531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263531,0.000000,0.000000,0.250000,0,0);}
.ma4_c00038{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m89_c00038{transform:matrix(0.264467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264467,0.000000,0.000000,0.250000,0,0);}
.m6d_c00038{transform:matrix(0.264969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264969,0.000000,0.000000,0.250000,0,0);}
.ma5_c00038{transform:matrix(0.265959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265959,0.000000,0.000000,0.250000,0,0);}
.m2b_c00038{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m45_c00038{transform:matrix(0.266555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266555,0.000000,0.000000,0.250000,0,0);}
.m3a_c00038{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.mc_c00038{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m17_c00038{transform:matrix(0.268109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268109,0.000000,0.000000,0.250000,0,0);}
.m5d_c00038{transform:matrix(0.268232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268232,0.000000,0.000000,0.250000,0,0);}
.m4f_c00038{transform:matrix(0.268484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268484,0.000000,0.000000,0.250000,0,0);}
.m4d_c00038{transform:matrix(0.268554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268554,0.000000,0.000000,0.250000,0,0);}
.m86_c00038{transform:matrix(0.268768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268768,0.000000,0.000000,0.250000,0,0);}
.m63_c00038{transform:matrix(0.269233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269233,0.000000,0.000000,0.250000,0,0);}
.m9a_c00038{transform:matrix(0.269854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269854,0.000000,0.000000,0.250000,0,0);}
.m83_c00038{transform:matrix(0.270381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270381,0.000000,0.000000,0.250000,0,0);}
.m85_c00038{transform:matrix(0.270769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270769,0.000000,0.000000,0.250000,0,0);}
.m61_c00038{transform:matrix(0.270807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270807,0.000000,0.000000,0.250000,0,0);}
.m7_c00038{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m52_c00038{transform:matrix(0.271602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271602,0.000000,0.000000,0.250000,0,0);}
.m4a_c00038{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m34_c00038{transform:matrix(0.274588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274588,0.000000,0.000000,0.250000,0,0);}
.m1b_c00038{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m5c_c00038{transform:matrix(0.276792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276792,0.000000,0.000000,0.250000,0,0);}
.md_c00038{transform:matrix(0.277360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277360,0.000000,0.000000,0.250000,0,0);}
.ma2_c00038{transform:matrix(0.278247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278247,0.000000,0.000000,0.250000,0,0);}
.m49_c00038{transform:matrix(0.278953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278953,0.000000,0.000000,0.250000,0,0);}
.m3c_c00038{transform:matrix(0.279482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279482,0.000000,0.000000,0.250000,0,0);}
.m22_c00038{transform:matrix(0.279501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279501,0.000000,0.000000,0.250000,0,0);}
.m93_c00038{transform:matrix(0.279990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279990,0.000000,0.000000,0.250000,0,0);}
.ma_c00038{transform:matrix(0.280224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280224,0.000000,0.000000,0.250000,0,0);}
.m3e_c00038{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.mf_c00038{transform:matrix(0.282587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282587,0.000000,0.000000,0.250000,0,0);}
.m58_c00038{transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);}
.m15_c00038{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m57_c00038{transform:matrix(0.284933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284933,0.000000,0.000000,0.250000,0,0);}
.m87_c00038{transform:matrix(0.285273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285273,0.000000,0.000000,0.250000,0,0);}
.m41_c00038{transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);}
.m92_c00038{transform:matrix(0.285676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285676,0.000000,0.000000,0.250000,0,0);}
.m4c_c00038{transform:matrix(0.285693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285693,0.000000,0.000000,0.250000,0,0);}
.m47_c00038{transform:matrix(0.286079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286079,0.000000,0.000000,0.250000,0,0);}
.m74_c00038{transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);}
.m3b_c00038{transform:matrix(0.287694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287694,0.000000,0.000000,0.250000,0,0);}
.m9_c00038{transform:matrix(0.287765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287765,0.000000,0.000000,0.250000,0,0);}
.m27_c00038{transform:matrix(0.287876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287876,0.000000,0.000000,0.250000,0,0);}
.ma7_c00038{transform:matrix(0.289344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289344,0.000000,0.000000,0.250000,0,0);}
.ma6_c00038{transform:matrix(0.289369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289369,0.000000,0.000000,0.250000,0,0);}
.m9e_c00038{transform:matrix(0.289423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289423,0.000000,0.000000,0.250000,0,0);}
.m1e_c00038{transform:matrix(0.290932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290932,0.000000,0.000000,0.250000,0,0);}
.m97_c00038{transform:matrix(0.291537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291537,0.000000,0.000000,0.250000,0,0);}
.m7a_c00038{transform:matrix(0.291833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291833,0.000000,0.000000,0.250000,0,0);}
.m39_c00038{transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);}
.m91_c00038{transform:matrix(0.293214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293214,0.000000,0.000000,0.250000,0,0);}
.ma3_c00038{transform:matrix(0.293414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293414,0.000000,0.000000,0.250000,0,0);}
.m5f_c00038{transform:matrix(0.293607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293607,0.000000,0.000000,0.250000,0,0);}
.m14_c00038{transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);}
.m50_c00038{transform:matrix(0.293983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293983,0.000000,0.000000,0.250000,0,0);}
.m23_c00038{transform:matrix(0.294780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294780,0.000000,0.000000,0.250000,0,0);}
.m19_c00038{transform:matrix(0.295436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295436,0.000000,0.000000,0.250000,0,0);}
.m36_c00038{transform:matrix(0.295580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295580,0.000000,0.000000,0.250000,0,0);}
.m31_c00038{transform:matrix(0.295588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295588,0.000000,0.000000,0.250000,0,0);}
.m2a_c00038{transform:matrix(0.295597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295597,0.000000,0.000000,0.250000,0,0);}
.m8d_c00038{transform:matrix(0.296652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296652,0.000000,0.000000,0.250000,0,0);}
.m88_c00038{transform:matrix(0.296674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296674,0.000000,0.000000,0.250000,0,0);}
.m53_c00038{transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);}
.m25_c00038{transform:matrix(0.297007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297007,0.000000,0.000000,0.250000,0,0);}
.m2c_c00038{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.mb_c00038{transform:matrix(0.297115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297115,0.000000,0.000000,0.250000,0,0);}
.m6_c00038{transform:matrix(0.297502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297502,0.000000,0.000000,0.250000,0,0);}
.m2_c00038{transform:matrix(0.298858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298858,0.000000,0.000000,0.250000,0,0);}
.m43_c00038{transform:matrix(0.300119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300119,0.000000,0.000000,0.250000,0,0);}
.m33_c00038{transform:matrix(0.300258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300258,0.000000,0.000000,0.250000,0,0);}
.m95_c00038{transform:matrix(0.300388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300388,0.000000,0.000000,0.250000,0,0);}
.m10_c00038{transform:matrix(0.300443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300443,0.000000,0.000000,0.250000,0,0);}
.m6c_c00038{transform:matrix(0.302304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302304,0.000000,0.000000,0.250000,0,0);}
.m5_c00038{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m3d_c00038{transform:matrix(0.303030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303030,0.000000,0.000000,0.250000,0,0);}
.m8a_c00038{transform:matrix(0.303617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303617,0.000000,0.000000,0.250000,0,0);}
.m77_c00038{transform:matrix(0.303906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303906,0.000000,0.000000,0.250000,0,0);}
.m5e_c00038{transform:matrix(0.304946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304946,0.000000,0.000000,0.250000,0,0);}
.m69_c00038{transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);}
.m40_c00038{transform:matrix(0.305713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305713,0.000000,0.000000,0.250000,0,0);}
.m60_c00038{transform:matrix(0.306004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306004,0.000000,0.000000,0.250000,0,0);}
.m67_c00038{transform:matrix(0.306180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306180,0.000000,0.000000,0.250000,0,0);}
.m6b_c00038{transform:matrix(0.306561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306561,0.000000,0.000000,0.250000,0,0);}
.m73_c00038{transform:matrix(0.306784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306784,0.000000,0.000000,0.250000,0,0);}
.m3f_c00038{transform:matrix(0.307236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307236,0.000000,0.000000,0.250000,0,0);}
.m7f_c00038{transform:matrix(0.307242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307242,0.000000,0.000000,0.250000,0,0);}
.m94_c00038{transform:matrix(0.307699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307699,0.000000,0.000000,0.250000,0,0);}
.m90_c00038{transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);}
.m20_c00038{transform:matrix(0.307729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307729,0.000000,0.000000,0.250000,0,0);}
.m44_c00038{transform:matrix(0.307755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307755,0.000000,0.000000,0.250000,0,0);}
.m65_c00038{transform:matrix(0.307900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307900,0.000000,0.000000,0.250000,0,0);}
.m8b_c00038{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m7d_c00038{transform:matrix(0.309062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309062,0.000000,0.000000,0.250000,0,0);}
.m76_c00038{transform:matrix(0.309110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309110,0.000000,0.000000,0.250000,0,0);}
.m6a_c00038{transform:matrix(0.309410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309410,0.000000,0.000000,0.250000,0,0);}
.m1f_c00038{transform:matrix(0.309574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309574,0.000000,0.000000,0.250000,0,0);}
.m7c_c00038{transform:matrix(0.310011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310011,0.000000,0.000000,0.250000,0,0);}
.m9c_c00038{transform:matrix(0.310044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310044,0.000000,0.000000,0.250000,0,0);}
.m82_c00038{transform:matrix(0.310506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310506,0.000000,0.000000,0.250000,0,0);}
.m75_c00038{transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);}
.m6e_c00038{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.m13_c00038{transform:matrix(0.312744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312744,0.000000,0.000000,0.250000,0,0);}
.m1d_c00038{transform:matrix(0.312867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312867,0.000000,0.000000,0.250000,0,0);}
.m21_c00038{transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);}
.m71_c00038{transform:matrix(0.314623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314623,0.000000,0.000000,0.250000,0,0);}
.m12_c00038{transform:matrix(0.314844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314844,0.000000,0.000000,0.250000,0,0);}
.ma1_c00038{transform:matrix(0.315232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315232,0.000000,0.000000,0.250000,0,0);}
.m7b_c00038{transform:matrix(0.315277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315277,0.000000,0.000000,0.250000,0,0);}
.m99_c00038{transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);}
.m8f_c00038{transform:matrix(0.316716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316716,0.000000,0.000000,0.250000,0,0);}
.m96_c00038{transform:matrix(0.316995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316995,0.000000,0.000000,0.250000,0,0);}
.m98_c00038{transform:matrix(0.317196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317196,0.000000,0.000000,0.250000,0,0);}
.ma8_c00038{transform:matrix(0.317996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317996,0.000000,0.000000,0.250000,0,0);}
.m4_c00038{transform:matrix(0.318082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318082,0.000000,0.000000,0.250000,0,0);}
.m51_c00038{transform:matrix(0.318824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318824,0.000000,0.000000,0.250000,0,0);}
.m42_c00038{transform:matrix(0.319723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319723,0.000000,0.000000,0.250000,0,0);}
.m9b_c00038{transform:matrix(0.319842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319842,0.000000,0.000000,0.250000,0,0);}
.m2d_c00038{transform:matrix(0.319860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319860,0.000000,0.000000,0.250000,0,0);}
.m70_c00038{transform:matrix(0.320713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320713,0.000000,0.000000,0.250000,0,0);}
.m6f_c00038{transform:matrix(0.322251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322251,0.000000,0.000000,0.250000,0,0);}
.ma9_c00038{transform:matrix(0.322340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322340,0.000000,0.000000,0.250000,0,0);}
.maa_c00038{transform:matrix(0.322457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322457,0.000000,0.000000,0.250000,0,0);}
.m7e_c00038{transform:matrix(0.323017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323017,0.000000,0.000000,0.250000,0,0);}
.m8e_c00038{transform:matrix(0.323116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323116,0.000000,0.000000,0.250000,0,0);}
.m8_c00038{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.m2f_c00038{transform:matrix(0.324455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324455,0.000000,0.000000,0.250000,0,0);}
.m18_c00038{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m11_c00038{transform:matrix(0.327388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327388,0.000000,0.000000,0.250000,0,0);}
.m72_c00038{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.m4b_c00038{transform:matrix(0.328754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328754,0.000000,0.000000,0.250000,0,0);}
.m4e_c00038{transform:matrix(0.329953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329953,0.000000,0.000000,0.250000,0,0);}
.m64_c00038{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m46_c00038{transform:matrix(0.335394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335394,0.000000,0.000000,0.250000,0,0);}
.m68_c00038{transform:matrix(0.337215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337215,0.000000,0.000000,0.250000,0,0);}
.m5b_c00038{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m59_c00038{transform:matrix(0.340015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340015,0.000000,0.000000,0.250000,0,0);}
.m38_c00038{transform:matrix(0.340822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340822,0.000000,0.000000,0.250000,0,0);}
.m66_c00038{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.ma0_c00038{transform:matrix(0.344477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344477,0.000000,0.000000,0.250000,0,0);}
.m2e_c00038{transform:matrix(0.344782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344782,0.000000,0.000000,0.250000,0,0);}
.m56_c00038{transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);}
.me_c00038{transform:matrix(0.348784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348784,0.000000,0.000000,0.250000,0,0);}
.m35_c00038{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m9f_c00038{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m29_c00038{transform:matrix(0.356708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356708,0.000000,0.000000,0.250000,0,0);}
.m1c_c00038{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m54_c00038{transform:matrix(0.368506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368506,0.000000,0.000000,0.250000,0,0);}
.m79_c00038{transform:matrix(0.370042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370042,0.000000,0.000000,0.250000,0,0);}
.m80_c00038{transform:matrix(0.380375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380375,0.000000,0.000000,0.250000,0,0);}
.m81_c00038{transform:matrix(0.432348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432348,0.000000,0.000000,0.250000,0,0);}
.m26_c00038{transform:matrix(0.473217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473217,0.000000,0.000000,0.250000,0,0);}
.v0_c00038{vertical-align:0.000000px;}
.ls8_c00038{letter-spacing:-2.744280px;}
.ls6_c00038{letter-spacing:-2.399285px;}
.ls12_c00038{letter-spacing:-2.375762px;}
.ls5_c00038{letter-spacing:-1.897474px;}
.lsd_c00038{letter-spacing:-1.427026px;}
.ls4_c00038{letter-spacing:-0.972259px;}
.ls14_c00038{letter-spacing:-0.533174px;}
.ls1_c00038{letter-spacing:0.000000px;}
.ls15_c00038{letter-spacing:0.054886px;}
.ls7_c00038{letter-spacing:0.584110px;}
.ls13_c00038{letter-spacing:0.729194px;}
.ls10_c00038{letter-spacing:2.313036px;}
.lsb_c00038{letter-spacing:3.112798px;}
.ls0_c00038{letter-spacing:3.230410px;}
.lse_c00038{letter-spacing:3.276900px;}
.ls11_c00038{letter-spacing:3.484810px;}
.lsf_c00038{letter-spacing:3.653813px;}
.ls9_c00038{letter-spacing:3.880810px;}
.ls3_c00038{letter-spacing:3.920400px;}
.ls2_c00038{letter-spacing:4.296610px;}
.lsc_c00038{letter-spacing:4.464900px;}
.lsa_c00038{letter-spacing:74.131398px;}
.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:-19.602000px;}
.ws1_c00038{word-spacing:0.000000px;}
._6_c00038{margin-left:-1.960200px;}
._4_c00038{width:9.173340px;}
._0_c00038{width:11.369160px;}
._5_c00038{width:18.504288px;}
._1_c00038{width:25.712211px;}
._2_c00038{width:43.539298px;}
._3_c00038{width:61.119579px;}
.fc0_c00038{color:transparent;}
.fs3_c00038{font-size:11.682198px;}
.fs0_c00038{font-size:27.720000px;}
.fsb_c00038{font-size:53.856198px;}
.fs8_c00038{font-size:64.548000px;}
.fs9_c00038{font-size:65.538000px;}
.fsa_c00038{font-size:68.112198px;}
.fsc_c00038{font-size:69.696198px;}
.fs5_c00038{font-size:74.131398px;}
.fs6_c00038{font-size:74.844000px;}
.fs4_c00038{font-size:77.616198px;}
.fs2_c00038{font-size:78.408000px;}
.fs1_c00038{font-size:85.932198px;}
.fs7_c00038{font-size:89.298000px;}
.y0_c00038{bottom:0.000000px;}
.y1_c00038{bottom:76.500000px;}
.y1f_c00038{bottom:93.287745px;}
.y1d_c00038{bottom:167.063535px;}
.y1e_c00038{bottom:168.845535px;}
.y1c_c00038{bottom:204.129135px;}
.y1b_c00038{bottom:238.343535px;}
.y1a_c00038{bottom:271.132335px;}
.y19_c00038{bottom:303.916185px;}
.y18_c00038{bottom:336.353535px;}
.y17_c00038{bottom:369.142335px;}
.y16_c00038{bottom:401.926185px;}
.y15_c00038{bottom:427.591935px;}
.y14_c00038{bottom:434.363535px;}
.y13_c00038{bottom:466.795935px;}
.y12_c00038{bottom:499.936185px;}
.y11_c00038{bottom:564.449535px;}
.y10_c00038{bottom:597.594735px;}
.yf_c00038{bottom:629.665785px;}
.ye_c00038{bottom:629.672715px;}
.yd_c00038{bottom:661.741785px;}
.yc_c00038{bottom:693.822735px;}
.yb_c00038{bottom:726.611535px;}
.ya_c00038{bottom:759.043935px;}
.y9_c00038{bottom:791.471385px;}
.y8_c00038{bottom:820.696185px;}
.y7_c00038{bottom:824.265135px;}
.y6_c00038{bottom:857.053935px;}
.y5_c00038{bottom:890.199135px;}
.y4_c00038{bottom:922.631535px;}
.y2_c00038{bottom:1017.785385px;}
.y3_c00038{bottom:1085.501385px;}
.h5_c00038{height:12.184167px;}
.h2_c00038{height:28.911094px;}
.h7_c00038{height:49.371511px;}
.hd_c00038{height:52.856913px;}
.ha_c00038{height:67.321547px;}
.hb_c00038{height:68.354086px;}
.he_c00038{height:68.403007px;}
.hc_c00038{height:71.038894px;}
.h8_c00038{height:73.455293px;}
.h6_c00038{height:76.176054px;}
.h4_c00038{height:76.953164px;}
.h3_c00038{height:84.337753px;}
.h9_c00038{height:87.641104px;}
.h1_c00038{height:1110.000000px;}
.h0_c00038{height:1263.000000px;}
.w1_c00038{width:796.500000px;}
.w0_c00038{width:892.500000px;}
.x0_c00038{left:0.000000px;}
.x1_c00038{left:48.000000px;}
.x2_c00038{left:64.016085px;}
.xe_c00038{left:101.928135px;}
.x2f_c00038{left:103.333935px;}
.x33_c00038{left:114.144735px;}
.x23_c00038{left:124.668435px;}
.x5c_c00038{left:135.345585px;}
.x57_c00038{left:136.573185px;}
.x61_c00038{left:138.082935px;}
.x2c_c00038{left:145.656435px;}
.x18_c00038{left:146.844435px;}
.x4_c00038{left:156.600885px;}
.x4c_c00038{left:157.798785px;}
.xf_c00038{left:168.698685px;}
.x46_c00038{left:170.406435px;}
.x3b_c00038{left:171.832035px;}
.x19_c00038{left:179.207535px;}
.x3e_c00038{left:180.425235px;}
.x6e_c00038{left:190.891515px;}
.x4d_c00038{left:192.498285px;}
.x47_c00038{left:201.299385px;}
.x10_c00038{left:202.566585px;}
.x6d_c00038{left:203.620935px;}
.x11_c00038{left:213.228885px;}
.x51_c00038{left:214.317885px;}
.x24_c00038{left:224.262435px;}
.x59_c00038{left:225.356385px;}
.x5_c00038{left:235.078185px;}
.x63_c00038{left:237.261135px;}
.x12_c00038{left:247.072035px;}
.x67_c00038{left:248.180835px;}
.x34_c00038{left:258.164985px;}
.x1a_c00038{left:260.600385px;}
.x3c_c00038{left:267.931335px;}
.x48_c00038{left:269.337135px;}
.x6_c00038{left:279.850935px;}
.x68_c00038{left:281.311185px;}
.x49_c00038{left:291.255735px;}
.x25_c00038{left:302.318985px;}
.x1b_c00038{left:313.763385px;}
.x2d_c00038{left:325.494885px;}
.x13_c00038{left:335.736435px;}
.x64_c00038{left:336.874935px;}
.x30_c00038{left:347.062035px;}
.x7_c00038{left:357.239235px;}
.x42_c00038{left:358.986585px;}
.x1c_c00038{left:368.515335px;}
.x5d_c00038{left:369.876585px;}
.x14_c00038{left:379.831035px;}
.x4e_c00038{left:380.845785px;}
.x2e_c00038{left:390.740835px;}
.x43_c00038{left:392.077335px;}
.x8_c00038{left:401.645685px;}
.x5a_c00038{left:402.947535px;}
.x1d_c00038{left:413.827635px;}
.x5e_c00038{left:414.941385px;}
.x4a_c00038{left:424.217685px;}
.x44_c00038{left:425.296785px;}
.x9_c00038{left:435.290835px;}
.x69_c00038{left:436.716435px;}
.x1e_c00038{left:446.210535px;}
.x4f_c00038{left:448.061835px;}
.x2a_c00038{left:456.417435px;}
.x3f_c00038{left:457.882635px;}
.x15_c00038{left:468.416235px;}
.x52_c00038{left:470.183385px;}
.x26_c00038{left:479.825985px;}
.x5f_c00038{left:481.167435px;}
.x31_c00038{left:491.230785px;}
.x53_c00038{left:502.729635px;}
.x27_c00038{left:511.298085px;}
.x1f_c00038{left:512.629635px;}
.x45_c00038{left:514.075035px;}
.x58_c00038{left:524.712585px;}
.x2b_c00038{left:534.172035px;}
.xa_c00038{left:535.409535px;}
.x4b_c00038{left:538.211235px;}
.x35_c00038{left:546.804435px;}
.x6c_c00038{left:548.244885px;}
.x20_c00038{left:556.823235px;}
.xb_c00038{left:568.208235px;}
.x60_c00038{left:570.010035px;}
.x16_c00038{left:578.860635px;}
.x54_c00038{left:580.112985px;}
.x38_c00038{left:590.681235px;}
.x6a_c00038{left:591.745485px;}
.x28_c00038{left:593.096835px;}
.x40_c00038{left:601.595985px;}
.x55_c00038{left:602.783985px;}
.xc_c00038{left:612.228585px;}
.x6b_c00038{left:614.159085px;}
.x39_c00038{left:624.163035px;}
.x65_c00038{left:625.895535px;}
.x62_c00038{left:636.607335px;}
.x32_c00038{left:645.774735px;}
.x56_c00038{left:646.972635px;}
.x17_c00038{left:656.392485px;}
.x36_c00038{left:658.035885px;}
.x50_c00038{left:669.084285px;}
.x3_c00038{left:677.934885px;}
.x21_c00038{left:679.390185px;}
.x5b_c00038{left:680.855385px;}
.x29_c00038{left:689.468385px;}
.x3a_c00038{left:691.111785px;}
.xd_c00038{left:701.838435px;}
.x41_c00038{left:710.986035px;}
.x22_c00038{left:712.164135px;}
.x66_c00038{left:723.935235px;}
.x37_c00038{left:734.840085px;}
.x3d_c00038{left:746.036985px;}
@media print{
.v0_c00038{vertical-align:0.000000pt;}
.ls8_c00038{letter-spacing:-2.439360pt;}
.ls6_c00038{letter-spacing:-2.132698pt;}
.ls12_c00038{letter-spacing:-2.111789pt;}
.ls5_c00038{letter-spacing:-1.686643pt;}
.lsd_c00038{letter-spacing:-1.268467pt;}
.ls4_c00038{letter-spacing:-0.864230pt;}
.ls14_c00038{letter-spacing:-0.473933pt;}
.ls1_c00038{letter-spacing:0.000000pt;}
.ls15_c00038{letter-spacing:0.048787pt;}
.ls7_c00038{letter-spacing:0.519209pt;}
.ls13_c00038{letter-spacing:0.648173pt;}
.ls10_c00038{letter-spacing:2.056032pt;}
.lsb_c00038{letter-spacing:2.766931pt;}
.ls0_c00038{letter-spacing:2.871475pt;}
.lse_c00038{letter-spacing:2.912800pt;}
.ls11_c00038{letter-spacing:3.097609pt;}
.lsf_c00038{letter-spacing:3.247834pt;}
.ls9_c00038{letter-spacing:3.449609pt;}
.ls3_c00038{letter-spacing:3.484800pt;}
.ls2_c00038{letter-spacing:3.819209pt;}
.lsc_c00038{letter-spacing:3.968800pt;}
.lsa_c00038{letter-spacing:65.894576pt;}
.ws0_c00038{word-spacing:-17.424000pt;}
.ws1_c00038{word-spacing:0.000000pt;}
._6_c00038{margin-left:-1.742400pt;}
._4_c00038{width:8.154080pt;}
._0_c00038{width:10.105920pt;}
._5_c00038{width:16.448256pt;}
._1_c00038{width:22.855298pt;}
._2_c00038{width:38.701598pt;}
._3_c00038{width:54.328515pt;}
.fs3_c00038{font-size:10.384176pt;}
.fs0_c00038{font-size:24.640000pt;}
.fsb_c00038{font-size:47.872176pt;}
.fs8_c00038{font-size:57.376000pt;}
.fs9_c00038{font-size:58.256000pt;}
.fsa_c00038{font-size:60.544176pt;}
.fsc_c00038{font-size:61.952176pt;}
.fs5_c00038{font-size:65.894576pt;}
.fs6_c00038{font-size:66.528000pt;}
.fs4_c00038{font-size:68.992176pt;}
.fs2_c00038{font-size:69.696000pt;}
.fs1_c00038{font-size:76.384176pt;}
.fs7_c00038{font-size:79.376000pt;}
.y0_c00038{bottom:0.000000pt;}
.y1_c00038{bottom:68.000000pt;}
.y1f_c00038{bottom:82.922440pt;}
.y1d_c00038{bottom:148.500920pt;}
.y1e_c00038{bottom:150.084920pt;}
.y1c_c00038{bottom:181.448120pt;}
.y1b_c00038{bottom:211.860920pt;}
.y1a_c00038{bottom:241.006520pt;}
.y19_c00038{bottom:270.147720pt;}
.y18_c00038{bottom:298.980920pt;}
.y17_c00038{bottom:328.126520pt;}
.y16_c00038{bottom:357.267720pt;}
.y15_c00038{bottom:380.081720pt;}
.y14_c00038{bottom:386.100920pt;}
.y13_c00038{bottom:414.929720pt;}
.y12_c00038{bottom:444.387720pt;}
.y11_c00038{bottom:501.732920pt;}
.y10_c00038{bottom:531.195320pt;}
.yf_c00038{bottom:559.702920pt;}
.ye_c00038{bottom:559.709080pt;}
.yd_c00038{bottom:588.214920pt;}
.yc_c00038{bottom:616.731320pt;}
.yb_c00038{bottom:645.876920pt;}
.ya_c00038{bottom:674.705720pt;}
.y9_c00038{bottom:703.530120pt;}
.y8_c00038{bottom:729.507720pt;}
.y7_c00038{bottom:732.680120pt;}
.y6_c00038{bottom:761.825720pt;}
.y5_c00038{bottom:791.288120pt;}
.y4_c00038{bottom:820.116920pt;}
.y2_c00038{bottom:904.698120pt;}
.y3_c00038{bottom:964.890120pt;}
.h5_c00038{height:10.830371pt;}
.h2_c00038{height:25.698750pt;}
.h7_c00038{height:43.885788pt;}
.hd_c00038{height:46.983923pt;}
.ha_c00038{height:59.841375pt;}
.hb_c00038{height:60.759188pt;}
.he_c00038{height:60.802673pt;}
.hc_c00038{height:63.145684pt;}
.h8_c00038{height:65.293594pt;}
.h6_c00038{height:67.712048pt;}
.h4_c00038{height:68.402813pt;}
.h3_c00038{height:74.966891pt;}
.h9_c00038{height:77.903203pt;}
.h1_c00038{height:986.666667pt;}
.h0_c00038{height:1122.666667pt;}
.w1_c00038{width:708.000000pt;}
.w0_c00038{width:793.333333pt;}
.x0_c00038{left:0.000000pt;}
.x1_c00038{left:42.666667pt;}
.x2_c00038{left:56.903187pt;}
.xe_c00038{left:90.602787pt;}
.x2f_c00038{left:91.852387pt;}
.x33_c00038{left:101.461987pt;}
.x23_c00038{left:110.816387pt;}
.x5c_c00038{left:120.307187pt;}
.x57_c00038{left:121.398387pt;}
.x61_c00038{left:122.740387pt;}
.x2c_c00038{left:129.472387pt;}
.x18_c00038{left:130.528387pt;}
.x4_c00038{left:139.200787pt;}
.x4c_c00038{left:140.265587pt;}
.xf_c00038{left:149.954387pt;}
.x46_c00038{left:151.472387pt;}
.x3b_c00038{left:152.739587pt;}
.x19_c00038{left:159.295587pt;}
.x3e_c00038{left:160.377987pt;}
.x6e_c00038{left:169.681347pt;}
.x4d_c00038{left:171.109587pt;}
.x47_c00038{left:178.932787pt;}
.x10_c00038{left:180.059187pt;}
.x6d_c00038{left:180.996387pt;}
.x11_c00038{left:189.536787pt;}
.x51_c00038{left:190.504787pt;}
.x24_c00038{left:199.344387pt;}
.x59_c00038{left:200.316787pt;}
.x5_c00038{left:208.958387pt;}
.x63_c00038{left:210.898787pt;}
.x12_c00038{left:219.619587pt;}
.x67_c00038{left:220.605187pt;}
.x34_c00038{left:229.479987pt;}
.x1a_c00038{left:231.644787pt;}
.x3c_c00038{left:238.161187pt;}
.x48_c00038{left:239.410787pt;}
.x6_c00038{left:248.756387pt;}
.x68_c00038{left:250.054387pt;}
.x49_c00038{left:258.893987pt;}
.x25_c00038{left:268.727987pt;}
.x1b_c00038{left:278.900787pt;}
.x2d_c00038{left:289.328787pt;}
.x13_c00038{left:298.432387pt;}
.x64_c00038{left:299.444387pt;}
.x30_c00038{left:308.499587pt;}
.x7_c00038{left:317.545987pt;}
.x42_c00038{left:319.099187pt;}
.x1c_c00038{left:327.569187pt;}
.x5d_c00038{left:328.779187pt;}
.x14_c00038{left:337.627587pt;}
.x4e_c00038{left:338.529587pt;}
.x2e_c00038{left:347.325187pt;}
.x43_c00038{left:348.513187pt;}
.x8_c00038{left:357.018387pt;}
.x5a_c00038{left:358.175587pt;}
.x1d_c00038{left:367.846787pt;}
.x5e_c00038{left:368.836787pt;}
.x4a_c00038{left:377.082387pt;}
.x44_c00038{left:378.041587pt;}
.x9_c00038{left:386.925187pt;}
.x69_c00038{left:388.192387pt;}
.x1e_c00038{left:396.631587pt;}
.x4f_c00038{left:398.277187pt;}
.x2a_c00038{left:405.704387pt;}
.x3f_c00038{left:407.006787pt;}
.x15_c00038{left:416.369987pt;}
.x52_c00038{left:417.940787pt;}
.x26_c00038{left:426.511987pt;}
.x5f_c00038{left:427.704387pt;}
.x31_c00038{left:436.649587pt;}
.x53_c00038{left:446.870787pt;}
.x27_c00038{left:454.487187pt;}
.x1f_c00038{left:455.670787pt;}
.x45_c00038{left:456.955587pt;}
.x58_c00038{left:466.411187pt;}
.x2b_c00038{left:474.819587pt;}
.xa_c00038{left:475.919587pt;}
.x4b_c00038{left:478.409987pt;}
.x35_c00038{left:486.048387pt;}
.x6c_c00038{left:487.328787pt;}
.x20_c00038{left:494.953987pt;}
.xb_c00038{left:505.073987pt;}
.x60_c00038{left:506.675587pt;}
.x16_c00038{left:514.542787pt;}
.x54_c00038{left:515.655987pt;}
.x38_c00038{left:525.049987pt;}
.x6a_c00038{left:525.995987pt;}
.x28_c00038{left:527.197187pt;}
.x40_c00038{left:534.751987pt;}
.x55_c00038{left:535.807987pt;}
.xc_c00038{left:544.203187pt;}
.x6b_c00038{left:545.919187pt;}
.x39_c00038{left:554.811587pt;}
.x65_c00038{left:556.351587pt;}
.x62_c00038{left:565.873187pt;}
.x32_c00038{left:574.021987pt;}
.x56_c00038{left:575.086787pt;}
.x17_c00038{left:583.459987pt;}
.x36_c00038{left:584.920787pt;}
.x50_c00038{left:594.741587pt;}
.x3_c00038{left:602.608787pt;}
.x21_c00038{left:603.902387pt;}
.x5b_c00038{left:605.204787pt;}
.x29_c00038{left:612.860787pt;}
.x3a_c00038{left:614.321587pt;}
.xd_c00038{left:623.856387pt;}
.x41_c00038{left:631.987587pt;}
.x22_c00038{left:633.034787pt;}
.x66_c00038{left:643.497987pt;}
.x37_c00038{left:653.191187pt;}
.x3d_c00038{left:663.143987pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c02fd9c644ec565a1fd10a51.woff2')format("woff");}.ff1_c00039{font-family:ff1_c00039;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00039;src:url('chunks/assets/font_7e0adf4fd80c00dcfd8ca032.woff2')format("woff");}.ff2_c00039{font-family:ff2_c00039;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00039;src:url('chunks/assets/font_b84dba19fdbcb50785e45096.woff2')format("woff");}.ff3_c00039{font-family:ff3_c00039;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00039;src:url('chunks/assets/font_f44fb497f918f7d01a2b7996.woff2')format("woff");}.ff4_c00039{font-family:ff4_c00039;line-height:0.666000;font-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_c00039{transform:matrix(0.204062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204062,0.000000,0.000000,0.250000,0,0);}
.m46_c00039{transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);}
.m38_c00039{transform:matrix(0.216704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216704,0.000000,0.000000,0.250000,0,0);}
.m51_c00039{transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);}
.m1c_c00039{transform:matrix(0.249022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249022,0.000000,0.000000,0.250000,0,0);}
.m0_c00039{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00039{transform:matrix(0.250919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250919,0.000000,0.000000,0.250000,0,0);}
.m78_c00039{transform:matrix(0.257987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257987,0.000000,0.000000,0.250000,0,0);}
.m39_c00039{transform:matrix(0.258289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258289,0.000000,0.000000,0.250000,0,0);}
.m6a_c00039{transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);}
.m59_c00039{transform:matrix(0.259889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259889,0.000000,0.000000,0.250000,0,0);}
.m76_c00039{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m6c_c00039{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.m13_c00039{transform:matrix(0.261738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261738,0.000000,0.000000,0.250000,0,0);}
.m3f_c00039{transform:matrix(0.262290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262290,0.000000,0.000000,0.250000,0,0);}
.m5e_c00039{transform:matrix(0.262580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262580,0.000000,0.000000,0.250000,0,0);}
.m3d_c00039{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m19_c00039{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m54_c00039{transform:matrix(0.265350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265350,0.000000,0.000000,0.250000,0,0);}
.m4f_c00039{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m44_c00039{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.m6f_c00039{transform:matrix(0.267857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267857,0.000000,0.000000,0.250000,0,0);}
.m12_c00039{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m45_c00039{transform:matrix(0.268694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268694,0.000000,0.000000,0.250000,0,0);}
.m2f_c00039{transform:matrix(0.269567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269567,0.000000,0.000000,0.250000,0,0);}
.m17_c00039{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m4c_c00039{transform:matrix(0.271278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271278,0.000000,0.000000,0.250000,0,0);}
.m1b_c00039{transform:matrix(0.271519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271519,0.000000,0.000000,0.250000,0,0);}
.m23_c00039{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m77_c00039{transform:matrix(0.272578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272578,0.000000,0.000000,0.250000,0,0);}
.m6_c00039{transform:matrix(0.273725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273725,0.000000,0.000000,0.250000,0,0);}
.m14_c00039{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m43_c00039{transform:matrix(0.276320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276320,0.000000,0.000000,0.250000,0,0);}
.m27_c00039{transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);}
.m4d_c00039{transform:matrix(0.277907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277907,0.000000,0.000000,0.250000,0,0);}
.m42_c00039{transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);}
.m1_c00039{transform:matrix(0.280073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280073,0.000000,0.000000,0.250000,0,0);}
.m22_c00039{transform:matrix(0.280407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280407,0.000000,0.000000,0.250000,0,0);}
.m48_c00039{transform:matrix(0.280566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280566,0.000000,0.000000,0.250000,0,0);}
.m64_c00039{transform:matrix(0.281499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281499,0.000000,0.000000,0.250000,0,0);}
.m1e_c00039{transform:matrix(0.282097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282097,0.000000,0.000000,0.250000,0,0);}
.m5d_c00039{transform:matrix(0.282566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282566,0.000000,0.000000,0.250000,0,0);}
.m26_c00039{transform:matrix(0.285111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285111,0.000000,0.000000,0.250000,0,0);}
.m5a_c00039{transform:matrix(0.286654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286654,0.000000,0.000000,0.250000,0,0);}
.m15_c00039{transform:matrix(0.287057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287057,0.000000,0.000000,0.250000,0,0);}
.m60_c00039{transform:matrix(0.287593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287593,0.000000,0.000000,0.250000,0,0);}
.m74_c00039{transform:matrix(0.287664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287664,0.000000,0.000000,0.250000,0,0);}
.md_c00039{transform:matrix(0.288283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288283,0.000000,0.000000,0.250000,0,0);}
.mc_c00039{transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);}
.m2d_c00039{transform:matrix(0.288943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288943,0.000000,0.000000,0.250000,0,0);}
.m6e_c00039{transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);}
.m73_c00039{transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);}
.m37_c00039{transform:matrix(0.291645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291645,0.000000,0.000000,0.250000,0,0);}
.m3_c00039{transform:matrix(0.292127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292127,0.000000,0.000000,0.250000,0,0);}
.m10_c00039{transform:matrix(0.293522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293522,0.000000,0.000000,0.250000,0,0);}
.m4b_c00039{transform:matrix(0.293682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293682,0.000000,0.000000,0.250000,0,0);}
.m56_c00039{transform:matrix(0.293992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293992,0.000000,0.000000,0.250000,0,0);}
.m1a_c00039{transform:matrix(0.294953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294953,0.000000,0.000000,0.250000,0,0);}
.m82_c00039{transform:matrix(0.295436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295436,0.000000,0.000000,0.250000,0,0);}
.m3e_c00039{transform:matrix(0.296652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296652,0.000000,0.000000,0.250000,0,0);}
.m35_c00039{transform:matrix(0.296758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296758,0.000000,0.000000,0.250000,0,0);}
.m55_c00039{transform:matrix(0.297115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297115,0.000000,0.000000,0.250000,0,0);}
.m47_c00039{transform:matrix(0.297237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297237,0.000000,0.000000,0.250000,0,0);}
.m7e_c00039{transform:matrix(0.298477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298477,0.000000,0.000000,0.250000,0,0);}
.m8_c00039{transform:matrix(0.298650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298650,0.000000,0.000000,0.250000,0,0);}
.m9_c00039{transform:matrix(0.299569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299569,0.000000,0.000000,0.250000,0,0);}
.m3a_c00039{transform:matrix(0.299914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299914,0.000000,0.000000,0.250000,0,0);}
.m5f_c00039{transform:matrix(0.300052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300052,0.000000,0.000000,0.250000,0,0);}
.m79_c00039{transform:matrix(0.300430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300430,0.000000,0.000000,0.250000,0,0);}
.m7f_c00039{transform:matrix(0.300888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300888,0.000000,0.000000,0.250000,0,0);}
.m16_c00039{transform:matrix(0.302218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302218,0.000000,0.000000,0.250000,0,0);}
.m33_c00039{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m28_c00039{transform:matrix(0.302446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302446,0.000000,0.000000,0.250000,0,0);}
.m2e_c00039{transform:matrix(0.302568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302568,0.000000,0.000000,0.250000,0,0);}
.mf_c00039{transform:matrix(0.302588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302588,0.000000,0.000000,0.250000,0,0);}
.ma_c00039{transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);}
.m67_c00039{transform:matrix(0.303086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303086,0.000000,0.000000,0.250000,0,0);}
.m7b_c00039{transform:matrix(0.303576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303576,0.000000,0.000000,0.250000,0,0);}
.m32_c00039{transform:matrix(0.305670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305670,0.000000,0.000000,0.250000,0,0);}
.m52_c00039{transform:matrix(0.306557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306557,0.000000,0.000000,0.250000,0,0);}
.m5b_c00039{transform:matrix(0.306703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306703,0.000000,0.000000,0.250000,0,0);}
.m5c_c00039{transform:matrix(0.306759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306759,0.000000,0.000000,0.250000,0,0);}
.m7_c00039{transform:matrix(0.308299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308299,0.000000,0.000000,0.250000,0,0);}
.m57_c00039{transform:matrix(0.308764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308764,0.000000,0.000000,0.250000,0,0);}
.m7d_c00039{transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);}
.m7c_c00039{transform:matrix(0.309032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309032,0.000000,0.000000,0.250000,0,0);}
.m29_c00039{transform:matrix(0.309110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309110,0.000000,0.000000,0.250000,0,0);}
.m81_c00039{transform:matrix(0.310710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310710,0.000000,0.000000,0.250000,0,0);}
.m1f_c00039{transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);}
.m65_c00039{transform:matrix(0.313301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313301,0.000000,0.000000,0.250000,0,0);}
.m11_c00039{transform:matrix(0.313551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313551,0.000000,0.000000,0.250000,0,0);}
.m2a_c00039{transform:matrix(0.314869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314869,0.000000,0.000000,0.250000,0,0);}
.m2c_c00039{transform:matrix(0.315477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315477,0.000000,0.000000,0.250000,0,0);}
.m4a_c00039{transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);}
.m30_c00039{transform:matrix(0.316193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316193,0.000000,0.000000,0.250000,0,0);}
.m63_c00039{transform:matrix(0.316282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316282,0.000000,0.000000,0.250000,0,0);}
.m61_c00039{transform:matrix(0.317646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317646,0.000000,0.000000,0.250000,0,0);}
.m41_c00039{transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);}
.m72_c00039{transform:matrix(0.319145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319145,0.000000,0.000000,0.250000,0,0);}
.m70_c00039{transform:matrix(0.319808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319808,0.000000,0.000000,0.250000,0,0);}
.me_c00039{transform:matrix(0.320314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320314,0.000000,0.000000,0.250000,0,0);}
.mb_c00039{transform:matrix(0.320366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320366,0.000000,0.000000,0.250000,0,0);}
.m68_c00039{transform:matrix(0.321141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321141,0.000000,0.000000,0.250000,0,0);}
.m4e_c00039{transform:matrix(0.321598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321598,0.000000,0.000000,0.250000,0,0);}
.m36_c00039{transform:matrix(0.322773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322773,0.000000,0.000000,0.250000,0,0);}
.m49_c00039{transform:matrix(0.323233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323233,0.000000,0.000000,0.250000,0,0);}
.m2b_c00039{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.m58_c00039{transform:matrix(0.326800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326800,0.000000,0.000000,0.250000,0,0);}
.m53_c00039{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.m4_c00039{transform:matrix(0.327730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327730,0.000000,0.000000,0.250000,0,0);}
.m6b_c00039{transform:matrix(0.328208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328208,0.000000,0.000000,0.250000,0,0);}
.m3c_c00039{transform:matrix(0.328576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328576,0.000000,0.000000,0.250000,0,0);}
.m80_c00039{transform:matrix(0.329713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329713,0.000000,0.000000,0.250000,0,0);}
.m62_c00039{transform:matrix(0.332674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332674,0.000000,0.000000,0.250000,0,0);}
.m31_c00039{transform:matrix(0.332717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332717,0.000000,0.000000,0.250000,0,0);}
.m3b_c00039{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m69_c00039{transform:matrix(0.337070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337070,0.000000,0.000000,0.250000,0,0);}
.m5_c00039{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m66_c00039{transform:matrix(0.340528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340528,0.000000,0.000000,0.250000,0,0);}
.m25_c00039{transform:matrix(0.345602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345602,0.000000,0.000000,0.250000,0,0);}
.m50_c00039{transform:matrix(0.346849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346849,0.000000,0.000000,0.250000,0,0);}
.m7a_c00039{transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);}
.m24_c00039{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m34_c00039{transform:matrix(0.350828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350828,0.000000,0.000000,0.250000,0,0);}
.m40_c00039{transform:matrix(0.351688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351688,0.000000,0.000000,0.250000,0,0);}
.m2_c00039{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m1d_c00039{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m21_c00039{transform:matrix(0.361585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361585,0.000000,0.000000,0.250000,0,0);}
.m18_c00039{transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);}
.m75_c00039{transform:matrix(0.368290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368290,0.000000,0.000000,0.250000,0,0);}
.m6d_c00039{transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);}
.v0_c00039{vertical-align:0.000000px;}
.ls4_c00039{letter-spacing:-2.744280px;}
.ls6_c00039{letter-spacing:-1.419185px;}
.ls0_c00039{letter-spacing:0.000000px;}
.ls3_c00039{letter-spacing:2.642350px;}
.ls5_c00039{letter-spacing:3.009600px;}
.ls1_c00039{letter-spacing:3.530419px;}
.ls7_c00039{letter-spacing:3.653813px;}
.ls9_c00039{letter-spacing:3.880810px;}
.ls2_c00039{letter-spacing:3.920400px;}
.ls8_c00039{letter-spacing:49.896198px;}
.sc__c00039{text-shadow:none;}
.sc0_c00039{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00039{-webkit-text-stroke:0px transparent;}
.sc0_c00039{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00039{word-spacing:0.000000px;}
._0_c00039{width:8.624088px;}
._1_c00039{width:23.208768px;}
.fc0_c00039{color:transparent;}
.fs2_c00039{font-size:22.176000px;}
.fs9_c00039{font-size:27.720000px;}
.fs8_c00039{font-size:33.264000px;}
.fs0_c00039{font-size:44.352000px;}
.fs7_c00039{font-size:49.896198px;}
.fs5_c00039{font-size:60.192000px;}
.fs6_c00039{font-size:66.528000px;}
.fsa_c00039{font-size:77.022198px;}
.fsb_c00039{font-size:77.616198px;}
.fs3_c00039{font-size:78.408000px;}
.fs4_c00039{font-size:78.804000px;}
.fs1_c00039{font-size:88.704000px;}
.y0_c00039{bottom:0.000000px;}
.y1_c00039{bottom:76.500000px;}
.y1d_c00039{bottom:129.280185px;}
.y1c_c00039{bottom:160.648335px;}
.y1b_c00039{bottom:196.288335px;}
.y1a_c00039{bottom:213.751935px;}
.y2_c00039{bottom:274.696335px;}
.y19_c00039{bottom:296.436735px;}
.y18_c00039{bottom:337.422735px;}
.y17_c00039{bottom:344.189385px;}
.y16_c00039{bottom:404.782335px;}
.y1e_c00039{bottom:415.117935px;}
.y15_c00039{bottom:459.306585px;}
.y14_c00039{bottom:492.456735px;}
.y13_c00039{bottom:525.240585px;}
.y12_c00039{bottom:558.385785px;}
.y11_c00039{bottom:592.243785px;}
.y10_c00039{bottom:605.785005px;}
.yf_c00039{bottom:615.414735px;}
.ye_c00039{bottom:625.388985px;}
.yd_c00039{bottom:640.362735px;}
.yc_c00039{bottom:691.679385px;}
.yb_c00039{bottom:724.116735px;}
.ya_c00039{bottom:757.256985px;}
.y9_c00039{bottom:789.689385px;}
.y8_c00039{bottom:822.478185px;}
.y7_c00039{bottom:855.623385px;}
.y6_c00039{bottom:889.842735px;}
.y5_c00039{bottom:922.270185px;}
.y4_c00039{bottom:955.420335px;}
.y3_c00039{bottom:1071.958185px;}
.h4_c00039{height:23.128875px;}
.hb_c00039{height:28.911094px;}
.h9_c00039{height:33.230868px;}
.ha_c00039{height:34.693313px;}
.h2_c00039{height:46.257750px;}
.h7_c00039{height:62.778375px;}
.h8_c00039{height:69.386625px;}
.h5_c00039{height:76.953164px;}
.h6_c00039{height:77.341816px;}
.hd_c00039{height:78.222575px;}
.hc_c00039{height:80.331746px;}
.h3_c00039{height:89.397000px;}
.h1_c00039{height:1110.000000px;}
.h0_c00039{height:1263.000000px;}
.w1_c00039{width:796.500000px;}
.w0_c00039{width:892.500000px;}
.x0_c00039{left:0.000000px;}
.x1_c00039{left:48.000000px;}
.x2_c00039{left:75.356535px;}
.xd_c00039{left:120.748035px;}
.x13_c00039{left:121.822185px;}
.x14_c00039{left:155.036685px;}
.x43_c00039{left:156.204885px;}
.x1e_c00039{left:166.169235px;}
.x5_c00039{left:176.282085px;}
.x4b_c00039{left:177.663135px;}
.xe_c00039{left:188.523435px;}
.x22_c00039{left:199.670835px;}
.x46_c00039{left:200.700435px;}
.x2c_c00039{left:208.798635px;}
.x28_c00039{left:221.802285px;}
.x23_c00039{left:232.820985px;}
.x2d_c00039{left:242.636835px;}
.x29_c00039{left:255.645435px;}
.x4c_c00039{left:267.010635px;}
.x6_c00039{left:277.400685px;}
.x1f_c00039{left:288.330285px;}
.x4a_c00039{left:289.453935px;}
.x7_c00039{left:299.457885px;}
.x47_c00039{left:300.536985px;}
.x52_c00039{left:309.991485px;}
.x15_c00039{left:311.248785px;}
.x20_c00039{left:320.683485px;}
.x4_c00039{left:323.143635px;}
.x8_c00039{left:332.098185px;}
.x4d_c00039{left:334.404885px;}
.x40_c00039{left:344.037585px;}
.x24_c00039{left:355.432485px;}
.x39_c00039{left:365.238435px;}
.x4e_c00039{left:366.451185px;}
.x2a_c00039{left:377.004585px;}
.x16_c00039{left:388.241085px;}
.x33_c00039{left:389.285535px;}
.x2e_c00039{left:399.150885px;}
.x50_c00039{left:409.798335px;}
.x9_c00039{left:411.332835px;}
.x17_c00039{left:420.846735px;}
.x34_c00039{left:422.376285px;}
.x2f_c00039{left:430.855635px;}
.x48_c00039{left:433.147485px;}
.x2b_c00039{left:443.804835px;}
.x21_c00039{left:454.486935px;}
.x3a_c00039{left:464.357235px;}
.xf_c00039{left:466.173885px;}
.x25_c00039{left:476.806485px;}
.x18_c00039{left:488.716185px;}
.x26_c00039{left:498.720135px;}
.x10_c00039{left:500.467485px;}
.x3b_c00039{left:509.219085px;}
.x53_c00039{left:510.421935px;}
.x19_c00039{left:521.138685px;}
.x44_c00039{left:532.043535px;}
.xa_c00039{left:533.211735px;}
.x51_c00039{left:543.948285px;}
.x1a_c00039{left:554.689785px;}
.xb_c00039{left:565.748085px;}
.x41_c00039{left:576.742035px;}
.x35_c00039{left:587.785485px;}
.x3c_c00039{left:598.512135px;}
.x4f_c00039{left:601.259385px;}
.x11_c00039{left:609.803085px;}
.x36_c00039{left:620.846535px;}
.x30_c00039{left:622.326585px;}
.x1b_c00039{left:631.459335px;}
.x49_c00039{left:633.444285px;}
.xc_c00039{left:654.788685px;}
.x42_c00039{left:665.876685px;}
.x27_c00039{left:687.829935px;}
.x3_c00039{left:696.576585px;}
.x31_c00039{left:698.309085px;}
.x3d_c00039{left:700.303935px;}
.x1c_c00039{left:710.401935px;}
.x45_c00039{left:722.143335px;}
.x12_c00039{left:730.617735px;}
.x32_c00039{left:732.142335px;}
.x38_c00039{left:736.745835px;}
.x3e_c00039{left:739.730685px;}
.x3f_c00039{left:740.803350px;}
.x1d_c00039{left:742.453185px;}
.x54_c00039{left:776.128035px;}
.x37_c00039{left:777.677385px;}
@media print{
.v0_c00039{vertical-align:0.000000pt;}
.ls4_c00039{letter-spacing:-2.439360pt;}
.ls6_c00039{letter-spacing:-1.261498pt;}
.ls0_c00039{letter-spacing:0.000000pt;}
.ls3_c00039{letter-spacing:2.348755pt;}
.ls5_c00039{letter-spacing:2.675200pt;}
.ls1_c00039{letter-spacing:3.138150pt;}
.ls7_c00039{letter-spacing:3.247834pt;}
.ls9_c00039{letter-spacing:3.449609pt;}
.ls2_c00039{letter-spacing:3.484800pt;}
.ls8_c00039{letter-spacing:44.352176pt;}
.ws0_c00039{word-spacing:0.000000pt;}
._0_c00039{width:7.665856pt;}
._1_c00039{width:20.630016pt;}
.fs2_c00039{font-size:19.712000pt;}
.fs9_c00039{font-size:24.640000pt;}
.fs8_c00039{font-size:29.568000pt;}
.fs0_c00039{font-size:39.424000pt;}
.fs7_c00039{font-size:44.352176pt;}
.fs5_c00039{font-size:53.504000pt;}
.fs6_c00039{font-size:59.136000pt;}
.fsa_c00039{font-size:68.464176pt;}
.fsb_c00039{font-size:68.992176pt;}
.fs3_c00039{font-size:69.696000pt;}
.fs4_c00039{font-size:70.048000pt;}
.fs1_c00039{font-size:78.848000pt;}
.y0_c00039{bottom:0.000000pt;}
.y1_c00039{bottom:68.000000pt;}
.y1d_c00039{bottom:114.915720pt;}
.y1c_c00039{bottom:142.798520pt;}
.y1b_c00039{bottom:174.478520pt;}
.y1a_c00039{bottom:190.001720pt;}
.y2_c00039{bottom:244.174520pt;}
.y19_c00039{bottom:263.499320pt;}
.y18_c00039{bottom:299.931320pt;}
.y17_c00039{bottom:305.946120pt;}
.y16_c00039{bottom:359.806520pt;}
.y1e_c00039{bottom:368.993720pt;}
.y15_c00039{bottom:408.272520pt;}
.y14_c00039{bottom:437.739320pt;}
.y13_c00039{bottom:466.880520pt;}
.y12_c00039{bottom:496.342920pt;}
.y11_c00039{bottom:526.438920pt;}
.y10_c00039{bottom:538.475560pt;}
.yf_c00039{bottom:547.035320pt;}
.ye_c00039{bottom:555.901320pt;}
.yd_c00039{bottom:569.211320pt;}
.yc_c00039{bottom:614.826120pt;}
.yb_c00039{bottom:643.659320pt;}
.ya_c00039{bottom:673.117320pt;}
.y9_c00039{bottom:701.946120pt;}
.y8_c00039{bottom:731.091720pt;}
.y7_c00039{bottom:760.554120pt;}
.y6_c00039{bottom:790.971320pt;}
.y5_c00039{bottom:819.795720pt;}
.y4_c00039{bottom:849.262520pt;}
.y3_c00039{bottom:952.851720pt;}
.h4_c00039{height:20.559000pt;}
.hb_c00039{height:25.698750pt;}
.h9_c00039{height:29.538549pt;}
.ha_c00039{height:30.838500pt;}
.h2_c00039{height:41.118000pt;}
.h7_c00039{height:55.803000pt;}
.h8_c00039{height:61.677000pt;}
.h5_c00039{height:68.402813pt;}
.h6_c00039{height:68.748281pt;}
.hd_c00039{height:69.531177pt;}
.hc_c00039{height:71.405996pt;}
.h3_c00039{height:79.464000pt;}
.h1_c00039{height:986.666667pt;}
.h0_c00039{height:1122.666667pt;}
.w1_c00039{width:708.000000pt;}
.w0_c00039{width:793.333333pt;}
.x0_c00039{left:0.000000pt;}
.x1_c00039{left:42.666667pt;}
.x2_c00039{left:66.983587pt;}
.xd_c00039{left:107.331587pt;}
.x13_c00039{left:108.286387pt;}
.x14_c00039{left:137.810387pt;}
.x43_c00039{left:138.848787pt;}
.x1e_c00039{left:147.705987pt;}
.x5_c00039{left:156.695187pt;}
.x4b_c00039{left:157.922787pt;}
.xe_c00039{left:167.576387pt;}
.x22_c00039{left:177.485187pt;}
.x46_c00039{left:178.400387pt;}
.x2c_c00039{left:185.598787pt;}
.x28_c00039{left:197.157587pt;}
.x23_c00039{left:206.951987pt;}
.x2d_c00039{left:215.677187pt;}
.x29_c00039{left:227.240387pt;}
.x4c_c00039{left:237.342787pt;}
.x6_c00039{left:246.578387pt;}
.x1f_c00039{left:256.293587pt;}
.x4a_c00039{left:257.292387pt;}
.x7_c00039{left:266.184787pt;}
.x47_c00039{left:267.143987pt;}
.x52_c00039{left:275.547987pt;}
.x15_c00039{left:276.665587pt;}
.x20_c00039{left:285.051987pt;}
.x4_c00039{left:287.238787pt;}
.x8_c00039{left:295.198387pt;}
.x4d_c00039{left:297.248787pt;}
.x40_c00039{left:305.811187pt;}
.x24_c00039{left:315.939987pt;}
.x39_c00039{left:324.656387pt;}
.x4e_c00039{left:325.734387pt;}
.x2a_c00039{left:335.115187pt;}
.x16_c00039{left:345.103187pt;}
.x33_c00039{left:346.031587pt;}
.x2e_c00039{left:354.800787pt;}
.x50_c00039{left:364.265187pt;}
.x9_c00039{left:365.629187pt;}
.x17_c00039{left:374.085987pt;}
.x34_c00039{left:375.445587pt;}
.x2f_c00039{left:382.982787pt;}
.x48_c00039{left:385.019987pt;}
.x2b_c00039{left:394.493187pt;}
.x21_c00039{left:403.988387pt;}
.x3a_c00039{left:412.761987pt;}
.xf_c00039{left:414.376787pt;}
.x25_c00039{left:423.827987pt;}
.x18_c00039{left:434.414387pt;}
.x26_c00039{left:443.306787pt;}
.x10_c00039{left:444.859987pt;}
.x3b_c00039{left:452.639187pt;}
.x53_c00039{left:453.708387pt;}
.x19_c00039{left:463.234387pt;}
.x44_c00039{left:472.927587pt;}
.xa_c00039{left:473.965987pt;}
.x51_c00039{left:483.509587pt;}
.x1a_c00039{left:493.057587pt;}
.xb_c00039{left:502.887187pt;}
.x41_c00039{left:512.659587pt;}
.x35_c00039{left:522.475987pt;}
.x3c_c00039{left:532.010787pt;}
.x4f_c00039{left:534.452787pt;}
.x11_c00039{left:542.047187pt;}
.x36_c00039{left:551.863587pt;}
.x30_c00039{left:553.179187pt;}
.x1b_c00039{left:561.297187pt;}
.x49_c00039{left:563.061587pt;}
.xc_c00039{left:582.034387pt;}
.x42_c00039{left:591.890387pt;}
.x27_c00039{left:611.404387pt;}
.x3_c00039{left:619.179187pt;}
.x31_c00039{left:620.719187pt;}
.x3d_c00039{left:622.492387pt;}
.x1c_c00039{left:631.468387pt;}
.x45_c00039{left:641.905187pt;}
.x12_c00039{left:649.437987pt;}
.x32_c00039{left:650.793187pt;}
.x38_c00039{left:654.885187pt;}
.x3e_c00039{left:657.538387pt;}
.x3f_c00039{left:658.491867pt;}
.x1d_c00039{left:659.958387pt;}
.x54_c00039{left:689.891587pt;}
.x37_c00039{left:691.268787pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_992478cb37f74556180005c8.woff2')format("woff");}.ff1_c00040{font-family:ff1_c00040;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00040;src:url('chunks/assets/font_2fa9d3328f7beda099033180.woff2')format("woff");}.ff2_c00040{font-family:ff2_c00040;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00040;src:url('chunks/assets/font_696dc85c32f07524ded7fb32.woff2')format("woff");}.ff3_c00040{font-family:ff3_c00040;line-height:0.666000;font-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_c00040{transform:matrix(0.099704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099704,0.000000,0.000000,0.250000,0,0);}
.m57_c00040{transform:matrix(0.210414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210414,0.000000,0.000000,0.250000,0,0);}
.m3b_c00040{transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);}
.m0_c00040{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m31_c00040{transform:matrix(0.251226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251226,0.000000,0.000000,0.250000,0,0);}
.m81_c00040{transform:matrix(0.251714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251714,0.000000,0.000000,0.250000,0,0);}
.m1_c00040{transform:matrix(0.254317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254317,0.000000,0.000000,0.250000,0,0);}
.m7e_c00040{transform:matrix(0.257934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257934,0.000000,0.000000,0.250000,0,0);}
.m1a_c00040{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m5b_c00040{transform:matrix(0.261106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261106,0.000000,0.000000,0.250000,0,0);}
.m21_c00040{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m17_c00040{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m6d_c00040{transform:matrix(0.264878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264878,0.000000,0.000000,0.250000,0,0);}
.m70_c00040{transform:matrix(0.266187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266187,0.000000,0.000000,0.250000,0,0);}
.m8e_c00040{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m10_c00040{transform:matrix(0.266343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266343,0.000000,0.000000,0.250000,0,0);}
.m8c_c00040{transform:matrix(0.266489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266489,0.000000,0.000000,0.250000,0,0);}
.m7c_c00040{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.m78_c00040{transform:matrix(0.266911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266911,0.000000,0.000000,0.250000,0,0);}
.m54_c00040{transform:matrix(0.267857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267857,0.000000,0.000000,0.250000,0,0);}
.md_c00040{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m45_c00040{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.m77_c00040{transform:matrix(0.268624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268624,0.000000,0.000000,0.250000,0,0);}
.m7_c00040{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m6a_c00040{transform:matrix(0.270977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270977,0.000000,0.000000,0.250000,0,0);}
.m19_c00040{transform:matrix(0.271585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271585,0.000000,0.000000,0.250000,0,0);}
.m93_c00040{transform:matrix(0.272178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272178,0.000000,0.000000,0.250000,0,0);}
.m2_c00040{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m1f_c00040{transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);}
.m84_c00040{transform:matrix(0.272905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272905,0.000000,0.000000,0.250000,0,0);}
.m35_c00040{transform:matrix(0.273069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273069,0.000000,0.000000,0.250000,0,0);}
.m4b_c00040{transform:matrix(0.273168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273168,0.000000,0.000000,0.250000,0,0);}
.m24_c00040{transform:matrix(0.274096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274096,0.000000,0.000000,0.250000,0,0);}
.m41_c00040{transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);}
.m4a_c00040{transform:matrix(0.274691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274691,0.000000,0.000000,0.250000,0,0);}
.m15_c00040{transform:matrix(0.274709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274709,0.000000,0.000000,0.250000,0,0);}
.m8b_c00040{transform:matrix(0.275491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275491,0.000000,0.000000,0.250000,0,0);}
.m2c_c00040{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m39_c00040{transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);}
.m7d_c00040{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m95_c00040{transform:matrix(0.277218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277218,0.000000,0.000000,0.250000,0,0);}
.m25_c00040{transform:matrix(0.278110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278110,0.000000,0.000000,0.250000,0,0);}
.m99_c00040{transform:matrix(0.278443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278443,0.000000,0.000000,0.250000,0,0);}
.m44_c00040{transform:matrix(0.278902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278902,0.000000,0.000000,0.250000,0,0);}
.m3_c00040{transform:matrix(0.280565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280565,0.000000,0.000000,0.250000,0,0);}
.m6b_c00040{transform:matrix(0.280694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280694,0.000000,0.000000,0.250000,0,0);}
.m46_c00040{transform:matrix(0.281304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281304,0.000000,0.000000,0.250000,0,0);}
.m52_c00040{transform:matrix(0.281349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281349,0.000000,0.000000,0.250000,0,0);}
.m3c_c00040{transform:matrix(0.281417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281417,0.000000,0.000000,0.250000,0,0);}
.m4_c00040{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.ma3_c00040{transform:matrix(0.283097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283097,0.000000,0.000000,0.250000,0,0);}
.m6e_c00040{transform:matrix(0.284701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284701,0.000000,0.000000,0.250000,0,0);}
.m60_c00040{transform:matrix(0.286780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286780,0.000000,0.000000,0.250000,0,0);}
.ma_c00040{transform:matrix(0.286908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286908,0.000000,0.000000,0.250000,0,0);}
.m62_c00040{transform:matrix(0.287072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287072,0.000000,0.000000,0.250000,0,0);}
.m9b_c00040{transform:matrix(0.287242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287242,0.000000,0.000000,0.250000,0,0);}
.m22_c00040{transform:matrix(0.287440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287440,0.000000,0.000000,0.250000,0,0);}
.m55_c00040{transform:matrix(0.287775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287775,0.000000,0.000000,0.250000,0,0);}
.m3a_c00040{transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);}
.m72_c00040{transform:matrix(0.289025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289025,0.000000,0.000000,0.250000,0,0);}
.m63_c00040{transform:matrix(0.289122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289122,0.000000,0.000000,0.250000,0,0);}
.m69_c00040{transform:matrix(0.289170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289170,0.000000,0.000000,0.250000,0,0);}
.m29_c00040{transform:matrix(0.289734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289734,0.000000,0.000000,0.250000,0,0);}
.m98_c00040{transform:matrix(0.290071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290071,0.000000,0.000000,0.250000,0,0);}
.m5c_c00040{transform:matrix(0.290081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290081,0.000000,0.000000,0.250000,0,0);}
.ma4_c00040{transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);}
.m9f_c00040{transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);}
.m33_c00040{transform:matrix(0.292156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292156,0.000000,0.000000,0.250000,0,0);}
.m1e_c00040{transform:matrix(0.292643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292643,0.000000,0.000000,0.250000,0,0);}
.m7b_c00040{transform:matrix(0.293411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293411,0.000000,0.000000,0.250000,0,0);}
.m4d_c00040{transform:matrix(0.293425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293425,0.000000,0.000000,0.250000,0,0);}
.m43_c00040{transform:matrix(0.293496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293496,0.000000,0.000000,0.250000,0,0);}
.m9a_c00040{transform:matrix(0.294705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294705,0.000000,0.000000,0.250000,0,0);}
.ma9_c00040{transform:matrix(0.294780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294780,0.000000,0.000000,0.250000,0,0);}
.m1d_c00040{transform:matrix(0.295144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295144,0.000000,0.000000,0.250000,0,0);}
.m32_c00040{transform:matrix(0.295436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295436,0.000000,0.000000,0.250000,0,0);}
.m6f_c00040{transform:matrix(0.296067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296067,0.000000,0.000000,0.250000,0,0);}
.m42_c00040{transform:matrix(0.296237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296237,0.000000,0.000000,0.250000,0,0);}
.m9_c00040{transform:matrix(0.296291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296291,0.000000,0.000000,0.250000,0,0);}
.m68_c00040{transform:matrix(0.296599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296599,0.000000,0.000000,0.250000,0,0);}
.m49_c00040{transform:matrix(0.296948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296948,0.000000,0.000000,0.250000,0,0);}
.m8d_c00040{transform:matrix(0.297294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297294,0.000000,0.000000,0.250000,0,0);}
.m91_c00040{transform:matrix(0.298711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298711,0.000000,0.000000,0.250000,0,0);}
.m66_c00040{transform:matrix(0.299417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299417,0.000000,0.000000,0.250000,0,0);}
.m3d_c00040{transform:matrix(0.299573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299573,0.000000,0.000000,0.250000,0,0);}
.m73_c00040{transform:matrix(0.300413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300413,0.000000,0.000000,0.250000,0,0);}
.ma2_c00040{transform:matrix(0.300782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300782,0.000000,0.000000,0.250000,0,0);}
.m34_c00040{transform:matrix(0.301282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301282,0.000000,0.000000,0.250000,0,0);}
.m96_c00040{transform:matrix(0.301305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301305,0.000000,0.000000,0.250000,0,0);}
.m89_c00040{transform:matrix(0.301620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301620,0.000000,0.000000,0.250000,0,0);}
.ma6_c00040{transform:matrix(0.302502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302502,0.000000,0.000000,0.250000,0,0);}
.m2f_c00040{transform:matrix(0.302713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302713,0.000000,0.000000,0.250000,0,0);}
.m30_c00040{transform:matrix(0.302863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302863,0.000000,0.000000,0.250000,0,0);}
.m9d_c00040{transform:matrix(0.302936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302936,0.000000,0.000000,0.250000,0,0);}
.m94_c00040{transform:matrix(0.302980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302980,0.000000,0.000000,0.250000,0,0);}
.m16_c00040{transform:matrix(0.303955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303955,0.000000,0.000000,0.250000,0,0);}
.ma0_c00040{transform:matrix(0.304766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304766,0.000000,0.000000,0.250000,0,0);}
.mc_c00040{transform:matrix(0.305052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305052,0.000000,0.000000,0.250000,0,0);}
.m5e_c00040{transform:matrix(0.305065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305065,0.000000,0.000000,0.250000,0,0);}
.m23_c00040{transform:matrix(0.305431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305431,0.000000,0.000000,0.250000,0,0);}
.m3e_c00040{transform:matrix(0.305545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305545,0.000000,0.000000,0.250000,0,0);}
.m75_c00040{transform:matrix(0.305916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305916,0.000000,0.000000,0.250000,0,0);}
.m51_c00040{transform:matrix(0.306215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306215,0.000000,0.000000,0.250000,0,0);}
.mf_c00040{transform:matrix(0.306218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306218,0.000000,0.000000,0.250000,0,0);}
.m61_c00040{transform:matrix(0.306542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306542,0.000000,0.000000,0.250000,0,0);}
.m8a_c00040{transform:matrix(0.307291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307291,0.000000,0.000000,0.250000,0,0);}
.m64_c00040{transform:matrix(0.307672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307672,0.000000,0.000000,0.250000,0,0);}
.m76_c00040{transform:matrix(0.308280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308280,0.000000,0.000000,0.250000,0,0);}
.m5_c00040{transform:matrix(0.308752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308752,0.000000,0.000000,0.250000,0,0);}
.ma1_c00040{transform:matrix(0.309006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309006,0.000000,0.000000,0.250000,0,0);}
.m53_c00040{transform:matrix(0.309352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309352,0.000000,0.000000,0.250000,0,0);}
.m67_c00040{transform:matrix(0.309404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309404,0.000000,0.000000,0.250000,0,0);}
.maa_c00040{transform:matrix(0.309570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309570,0.000000,0.000000,0.250000,0,0);}
.m27_c00040{transform:matrix(0.309626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309626,0.000000,0.000000,0.250000,0,0);}
.ma8_c00040{transform:matrix(0.309688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309688,0.000000,0.000000,0.250000,0,0);}
.m6_c00040{transform:matrix(0.310221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310221,0.000000,0.000000,0.250000,0,0);}
.mac_c00040{transform:matrix(0.311056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311056,0.000000,0.000000,0.250000,0,0);}
.m48_c00040{transform:matrix(0.311676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311676,0.000000,0.000000,0.250000,0,0);}
.ma5_c00040{transform:matrix(0.312008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312008,0.000000,0.000000,0.250000,0,0);}
.m65_c00040{transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);}
.m4c_c00040{transform:matrix(0.312278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312278,0.000000,0.000000,0.250000,0,0);}
.m11_c00040{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.m13_c00040{transform:matrix(0.312694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312694,0.000000,0.000000,0.250000,0,0);}
.m2b_c00040{transform:matrix(0.313285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313285,0.000000,0.000000,0.250000,0,0);}
.m38_c00040{transform:matrix(0.313488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313488,0.000000,0.000000,0.250000,0,0);}
.m9e_c00040{transform:matrix(0.313569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313569,0.000000,0.000000,0.250000,0,0);}
.m58_c00040{transform:matrix(0.313589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313589,0.000000,0.000000,0.250000,0,0);}
.m20_c00040{transform:matrix(0.313649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313649,0.000000,0.000000,0.250000,0,0);}
.ma7_c00040{transform:matrix(0.313822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313822,0.000000,0.000000,0.250000,0,0);}
.m9c_c00040{transform:matrix(0.314287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314287,0.000000,0.000000,0.250000,0,0);}
.m12_c00040{transform:matrix(0.314912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314912,0.000000,0.000000,0.250000,0,0);}
.m5d_c00040{transform:matrix(0.314995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314995,0.000000,0.000000,0.250000,0,0);}
.m86_c00040{transform:matrix(0.315225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315225,0.000000,0.000000,0.250000,0,0);}
.mb_c00040{transform:matrix(0.315915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315915,0.000000,0.000000,0.250000,0,0);}
.m71_c00040{transform:matrix(0.315948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315948,0.000000,0.000000,0.250000,0,0);}
.m40_c00040{transform:matrix(0.316182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316182,0.000000,0.000000,0.250000,0,0);}
.m4f_c00040{transform:matrix(0.316253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316253,0.000000,0.000000,0.250000,0,0);}
.m1b_c00040{transform:matrix(0.317415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317415,0.000000,0.000000,0.250000,0,0);}
.m26_c00040{transform:matrix(0.319482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319482,0.000000,0.000000,0.250000,0,0);}
.m56_c00040{transform:matrix(0.319808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319808,0.000000,0.000000,0.250000,0,0);}
.m82_c00040{transform:matrix(0.319899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319899,0.000000,0.000000,0.250000,0,0);}
.m74_c00040{transform:matrix(0.320585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320585,0.000000,0.000000,0.250000,0,0);}
.m3f_c00040{transform:matrix(0.322203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322203,0.000000,0.000000,0.250000,0,0);}
.m59_c00040{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.m36_c00040{transform:matrix(0.324242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324242,0.000000,0.000000,0.250000,0,0);}
.m80_c00040{transform:matrix(0.326904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326904,0.000000,0.000000,0.250000,0,0);}
.m8f_c00040{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m50_c00040{transform:matrix(0.327238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327238,0.000000,0.000000,0.250000,0,0);}
.me_c00040{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.m37_c00040{transform:matrix(0.329532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329532,0.000000,0.000000,0.250000,0,0);}
.m92_c00040{transform:matrix(0.330372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330372,0.000000,0.000000,0.250000,0,0);}
.m18_c00040{transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);}
.m88_c00040{transform:matrix(0.331590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331590,0.000000,0.000000,0.250000,0,0);}
.m79_c00040{transform:matrix(0.332070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332070,0.000000,0.000000,0.250000,0,0);}
.m2e_c00040{transform:matrix(0.334644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334644,0.000000,0.000000,0.250000,0,0);}
.m1c_c00040{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m85_c00040{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.m7a_c00040{transform:matrix(0.345485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345485,0.000000,0.000000,0.250000,0,0);}
.m47_c00040{transform:matrix(0.346864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346864,0.000000,0.000000,0.250000,0,0);}
.m2a_c00040{transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);}
.m4e_c00040{transform:matrix(0.349022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349022,0.000000,0.000000,0.250000,0,0);}
.m8_c00040{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m90_c00040{transform:matrix(0.350792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350792,0.000000,0.000000,0.250000,0,0);}
.m2d_c00040{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m97_c00040{transform:matrix(0.357279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357279,0.000000,0.000000,0.250000,0,0);}
.m7f_c00040{transform:matrix(0.361217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361217,0.000000,0.000000,0.250000,0,0);}
.m14_c00040{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m83_c00040{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);}
.mab_c00040{transform:matrix(0.364074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364074,0.000000,0.000000,0.250000,0,0);}
.m28_c00040{transform:matrix(0.366064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366064,0.000000,0.000000,0.250000,0,0);}
.m87_c00040{transform:matrix(0.372617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372617,0.000000,0.000000,0.250000,0,0);}
.m5f_c00040{transform:matrix(0.402409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402409,0.000000,0.000000,0.250000,0,0);}
.m5a_c00040{transform:matrix(0.414699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414699,0.000000,0.000000,0.250000,0,0);}
.v0_c00040{vertical-align:0.000000px;}
.ls9_c00040{letter-spacing:-3.035340px;}
.lsc_c00040{letter-spacing:-2.744280px;}
.ls8_c00040{letter-spacing:-2.375762px;}
.lsd_c00040{letter-spacing:-1.772021px;}
.ls1_c00040{letter-spacing:0.000000px;}
.lsb_c00040{letter-spacing:0.133294px;}
.lse_c00040{letter-spacing:0.533174px;}
.ls0_c00040{letter-spacing:1.756339px;}
.ls7_c00040{letter-spacing:2.015086px;}
.lsf_c00040{letter-spacing:2.148379px;}
.ls4_c00040{letter-spacing:2.509056px;}
.lsa_c00040{letter-spacing:3.112798px;}
.ls5_c00040{letter-spacing:3.177900px;}
.ls3_c00040{letter-spacing:3.920400px;}
.ls2_c00040{letter-spacing:4.276810px;}
.ls6_c00040{letter-spacing:49.896198px;}
.sc__c00040{text-shadow:none;}
.sc0_c00040{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00040{-webkit-text-stroke:0px transparent;}
.sc0_c00040{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00040{word-spacing:-21.358339px;}
.ws1_c00040{word-spacing:0.000000px;}
._1_c00040{margin-left:-9.721800px;}
._2_c00040{width:9.000842px;}
._0_c00040{width:20.856528px;}
._3_c00040{width:33.950664px;}
.fc0_c00040{color:transparent;}
.fs8_c00040{font-size:22.176000px;}
.fs0_c00040{font-size:27.720000px;}
.fs4_c00040{font-size:49.896198px;}
.fs3_c00040{font-size:63.558000px;}
.fs5_c00040{font-size:64.548000px;}
.fs7_c00040{font-size:66.528000px;}
.fs2_c00040{font-size:78.408000px;}
.fs1_c00040{font-size:85.536198px;}
.fs6_c00040{font-size:86.724000px;}
.y0_c00040{bottom:0.000000px;}
.y1c_c00040{bottom:15.944985px;}
.y1_c00040{bottom:76.500000px;}
.y1b_c00040{bottom:135.343935px;}
.y1d_c00040{bottom:162.430335px;}
.y1a_c00040{bottom:165.989385px;}
.y19_c00040{bottom:201.990735px;}
.y18_c00040{bottom:269.350335px;}
.y3_c00040{bottom:288.947385px;}
.y2_c00040{bottom:300.000735px;}
.y17_c00040{bottom:302.139135px;}
.y16_c00040{bottom:334.210185px;}
.y15_c00040{bottom:367.360335px;}
.y14_c00040{bottom:399.431385px;}
.y13_c00040{bottom:431.507385px;}
.y12_c00040{bottom:463.944735px;}
.y11_c00040{bottom:496.020735px;}
.y10_c00040{bottom:528.453135px;}
.yf_c00040{bottom:560.885535px;}
.ye_c00040{bottom:594.030735px;}
.yd_c00040{bottom:626.106735px;}
.yc_c00040{bottom:659.251935px;}
.yb_c00040{bottom:691.684335px;}
.ya_c00040{bottom:757.969785px;}
.y9_c00040{bottom:790.763535px;}
.y8_c00040{bottom:823.908735px;}
.y7_c00040{bottom:856.697535px;}
.y6_c00040{bottom:889.481385px;}
.y5_c00040{bottom:922.270185px;}
.y4_c00040{bottom:1071.958185px;}
.ha_c00040{height:23.128875px;}
.h2_c00040{height:28.911094px;}
.h6_c00040{height:33.230868px;}
.h5_c00040{height:66.289008px;}
.h7_c00040{height:67.321547px;}
.h9_c00040{height:69.386625px;}
.h4_c00040{height:76.953164px;}
.h3_c00040{height:83.949101px;}
.h8_c00040{height:85.114863px;}
.h1_c00040{height:1110.000000px;}
.h0_c00040{height:1263.000000px;}
.w1_c00040{width:796.500000px;}
.w0_c00040{width:892.500000px;}
.x0_c00040{left:0.000000px;}
.x2_c00040{left:24.099285px;}
.x1_c00040{left:48.000000px;}
.x3_c00040{left:56.885115px;}
.x5_c00040{left:104.898135px;}
.x55_c00040{left:106.135635px;}
.x3f_c00040{left:108.056235px;}
.xf_c00040{left:127.321635px;}
.x6_c00040{left:138.394785px;}
.x53_c00040{left:140.107485px;}
.x49_c00040{left:149.774835px;}
.x10_c00040{left:160.115385px;}
.x40_c00040{left:161.164785px;}
.x43_c00040{left:170.648985px;}
.x5b_c00040{left:172.183485px;}
.x2f_c00040{left:182.558685px;}
.x63_c00040{left:183.667485px;}
.x35_c00040{left:194.641635px;}
.x23_c00040{left:204.784185px;}
.x7_c00040{left:214.520835px;}
.x17_c00040{left:216.099885px;}
.x65_c00040{left:228.930285px;}
.x18_c00040{left:238.152135px;}
.x4a_c00040{left:239.439135px;}
.x8_c00040{left:249.596535px;}
.x60_c00040{left:250.957785px;}
.x2a_c00040{left:260.605335px;}
.x19_c00040{left:271.574535px;}
.x56_c00040{left:272.945685px;}
.x30_c00040{left:283.103085px;}
.x11_c00040{left:293.795085px;}
.x57_c00040{left:295.492935px;}
.x1a_c00040{left:304.843485px;}
.x68_c00040{left:309.046035px;}
.x9_c00040{left:315.698835px;}
.x4b_c00040{left:316.975935px;}
.x12_c00040{left:327.276885px;}
.x3c_c00040{left:338.310435px;}
.x50_c00040{left:339.364785px;}
.x1b_c00040{left:349.042035px;}
.x31_c00040{left:351.220035px;}
.x24_c00040{left:360.446835px;}
.x5c_c00040{left:361.511085px;}
.x13_c00040{left:372.010035px;}
.x4c_c00040{left:374.885985px;}
.x4d_c00040{left:384.657285px;}
.x1c_c00040{left:393.567285px;}
.x36_c00040{left:394.616685px;}
.x5d_c00040{left:406.397685px;}
.x32_c00040{left:414.817635px;}
.x44_c00040{left:416.154135px;}
.xa_c00040{left:427.776735px;}
.x66_c00040{left:429.162735px;}
.x1d_c00040{left:437.760885px;}
.x45_c00040{left:438.839985px;}
.x41_c00040{left:440.572485px;}
.x33_c00040{left:448.705335px;}
.x64_c00040{left:450.576435px;}
.x37_c00040{left:459.011235px;}
.xb_c00040{left:460.199235px;}
.x5e_c00040{left:461.303085px;}
.x25_c00040{left:471.282285px;}
.x46_c00040{left:472.326735px;}
.x2b_c00040{left:482.508885px;}
.x61_c00040{left:483.533535px;}
.xc_c00040{left:493.695885px;}
.x2c_c00040{left:504.348285px;}
.x62_c00040{left:506.199585px;}
.x1e_c00040{left:515.480835px;}
.x58_c00040{left:516.906435px;}
.x26_c00040{left:525.791685px;}
.x5f_c00040{left:527.345985px;}
.x2d_c00040{left:537.745935px;}
.x39_c00040{left:549.111135px;}
.x59_c00040{left:550.373385px;}
.x27_c00040{left:551.417835px;}
.x4e_c00040{left:552.467235px;}
.x1f_c00040{left:559.872435px;}
.x3a_c00040{left:572.113785px;}
.x3d_c00040{left:573.494835px;}
.xd_c00040{left:581.286135px;}
.x5a_c00040{left:583.543335px;}
.x14_c00040{left:592.814685px;}
.x47_c00040{left:594.532335px;}
.x28_c00040{left:604.897635px;}
.x20_c00040{left:615.896535px;}
.x51_c00040{left:616.950885px;}
.x15_c00040{left:626.662785px;}
.x69_c00040{left:628.053735px;}
.xe_c00040{left:637.567635px;}
.x34_c00040{left:639.780285px;}
.x21_c00040{left:649.457535px;}
.x48_c00040{left:660.050535px;}
.x16_c00040{left:671.103885px;}
.x54_c00040{left:672.247335px;}
.x4_c00040{left:680.434635px;}
.x38_c00040{left:682.969035px;}
.x3e_c00040{left:692.354235px;}
.x42_c00040{left:693.661035px;}
.x4f_c00040{left:694.680735px;}
.x3b_c00040{left:704.239185px;}
.x52_c00040{left:705.437085px;}
.x29_c00040{left:714.584685px;}
.x2e_c00040{left:716.099385px;}
.x67_c00040{left:717.114135px;}
.x22_c00040{left:726.108285px;}
.x6a_c00040{left:765.792435px;}
@media print{
.v0_c00040{vertical-align:0.000000pt;}
.ls9_c00040{letter-spacing:-2.698080pt;}
.lsc_c00040{letter-spacing:-2.439360pt;}
.ls8_c00040{letter-spacing:-2.111789pt;}
.lsd_c00040{letter-spacing:-1.575130pt;}
.ls1_c00040{letter-spacing:0.000000pt;}
.lsb_c00040{letter-spacing:0.118483pt;}
.lse_c00040{letter-spacing:0.473933pt;}
.ls0_c00040{letter-spacing:1.561190pt;}
.ls7_c00040{letter-spacing:1.791187pt;}
.lsf_c00040{letter-spacing:1.909670pt;}
.ls4_c00040{letter-spacing:2.230272pt;}
.lsa_c00040{letter-spacing:2.766931pt;}
.ls5_c00040{letter-spacing:2.824800pt;}
.ls3_c00040{letter-spacing:3.484800pt;}
.ls2_c00040{letter-spacing:3.801609pt;}
.ls6_c00040{letter-spacing:44.352176pt;}
.ws0_c00040{word-spacing:-18.985190pt;}
.ws1_c00040{word-spacing:0.000000pt;}
._1_c00040{margin-left:-8.641600pt;}
._2_c00040{width:8.000749pt;}
._0_c00040{width:18.539136pt;}
._3_c00040{width:30.178368pt;}
.fs8_c00040{font-size:19.712000pt;}
.fs0_c00040{font-size:24.640000pt;}
.fs4_c00040{font-size:44.352176pt;}
.fs3_c00040{font-size:56.496000pt;}
.fs5_c00040{font-size:57.376000pt;}
.fs7_c00040{font-size:59.136000pt;}
.fs2_c00040{font-size:69.696000pt;}
.fs1_c00040{font-size:76.032176pt;}
.fs6_c00040{font-size:77.088000pt;}
.y0_c00040{bottom:0.000000pt;}
.y1c_c00040{bottom:14.173320pt;}
.y1_c00040{bottom:68.000000pt;}
.y1b_c00040{bottom:120.305720pt;}
.y1d_c00040{bottom:144.382520pt;}
.y1a_c00040{bottom:147.546120pt;}
.y19_c00040{bottom:179.547320pt;}
.y18_c00040{bottom:239.422520pt;}
.y3_c00040{bottom:256.842120pt;}
.y2_c00040{bottom:266.667320pt;}
.y17_c00040{bottom:268.568120pt;}
.y16_c00040{bottom:297.075720pt;}
.y15_c00040{bottom:326.542520pt;}
.y14_c00040{bottom:355.050120pt;}
.y13_c00040{bottom:383.562120pt;}
.y12_c00040{bottom:412.395320pt;}
.y11_c00040{bottom:440.907320pt;}
.y10_c00040{bottom:469.736120pt;}
.yf_c00040{bottom:498.564920pt;}
.ye_c00040{bottom:528.027320pt;}
.yd_c00040{bottom:556.539320pt;}
.yc_c00040{bottom:586.001720pt;}
.yb_c00040{bottom:614.830520pt;}
.ya_c00040{bottom:673.750920pt;}
.y9_c00040{bottom:702.900920pt;}
.y8_c00040{bottom:732.363320pt;}
.y7_c00040{bottom:761.508920pt;}
.y6_c00040{bottom:790.650120pt;}
.y5_c00040{bottom:819.795720pt;}
.y4_c00040{bottom:952.851720pt;}
.ha_c00040{height:20.559000pt;}
.h2_c00040{height:25.698750pt;}
.h6_c00040{height:29.538549pt;}
.h5_c00040{height:58.923563pt;}
.h7_c00040{height:59.841375pt;}
.h9_c00040{height:61.677000pt;}
.h4_c00040{height:68.402813pt;}
.h3_c00040{height:74.621423pt;}
.h8_c00040{height:75.657656pt;}
.h1_c00040{height:986.666667pt;}
.h0_c00040{height:1122.666667pt;}
.w1_c00040{width:708.000000pt;}
.w0_c00040{width:793.333333pt;}
.x0_c00040{left:0.000000pt;}
.x2_c00040{left:21.421587pt;}
.x1_c00040{left:42.666667pt;}
.x3_c00040{left:50.564547pt;}
.x5_c00040{left:93.242787pt;}
.x55_c00040{left:94.342787pt;}
.x3f_c00040{left:96.049987pt;}
.xf_c00040{left:113.174787pt;}
.x6_c00040{left:123.017587pt;}
.x53_c00040{left:124.539987pt;}
.x49_c00040{left:133.133187pt;}
.x10_c00040{left:142.324787pt;}
.x40_c00040{left:143.257587pt;}
.x43_c00040{left:151.687987pt;}
.x5b_c00040{left:153.051987pt;}
.x2f_c00040{left:162.274387pt;}
.x63_c00040{left:163.259987pt;}
.x35_c00040{left:173.014787pt;}
.x23_c00040{left:182.030387pt;}
.x7_c00040{left:190.685187pt;}
.x17_c00040{left:192.088787pt;}
.x65_c00040{left:203.493587pt;}
.x18_c00040{left:211.690787pt;}
.x4a_c00040{left:212.834787pt;}
.x8_c00040{left:221.863587pt;}
.x60_c00040{left:223.073587pt;}
.x2a_c00040{left:231.649187pt;}
.x19_c00040{left:241.399587pt;}
.x56_c00040{left:242.618387pt;}
.x30_c00040{left:251.647187pt;}
.x11_c00040{left:261.151187pt;}
.x57_c00040{left:262.660387pt;}
.x1a_c00040{left:270.971987pt;}
.x68_c00040{left:274.707587pt;}
.x9_c00040{left:280.621187pt;}
.x4b_c00040{left:281.756387pt;}
.x12_c00040{left:290.912787pt;}
.x3c_c00040{left:300.720387pt;}
.x50_c00040{left:301.657587pt;}
.x1b_c00040{left:310.259587pt;}
.x31_c00040{left:312.195587pt;}
.x24_c00040{left:320.397187pt;}
.x5c_c00040{left:321.343187pt;}
.x13_c00040{left:330.675587pt;}
.x4c_c00040{left:333.231987pt;}
.x4d_c00040{left:341.917587pt;}
.x1c_c00040{left:349.837587pt;}
.x36_c00040{left:350.770387pt;}
.x5d_c00040{left:361.242387pt;}
.x32_c00040{left:368.726787pt;}
.x44_c00040{left:369.914787pt;}
.xa_c00040{left:380.245987pt;}
.x66_c00040{left:381.477987pt;}
.x1d_c00040{left:389.120787pt;}
.x45_c00040{left:390.079987pt;}
.x41_c00040{left:391.619987pt;}
.x33_c00040{left:398.849187pt;}
.x64_c00040{left:400.512387pt;}
.x37_c00040{left:408.009987pt;}
.xb_c00040{left:409.065987pt;}
.x5e_c00040{left:410.047187pt;}
.x25_c00040{left:418.917587pt;}
.x46_c00040{left:419.845987pt;}
.x2b_c00040{left:428.896787pt;}
.x61_c00040{left:429.807587pt;}
.xc_c00040{left:438.840787pt;}
.x2c_c00040{left:448.309587pt;}
.x62_c00040{left:449.955187pt;}
.x1e_c00040{left:458.205187pt;}
.x58_c00040{left:459.472387pt;}
.x26_c00040{left:467.370387pt;}
.x5f_c00040{left:468.751987pt;}
.x2d_c00040{left:477.996387pt;}
.x39_c00040{left:488.098787pt;}
.x59_c00040{left:489.220787pt;}
.x27_c00040{left:490.149187pt;}
.x4e_c00040{left:491.081987pt;}
.x1f_c00040{left:497.664387pt;}
.x3a_c00040{left:508.545587pt;}
.x3d_c00040{left:509.773187pt;}
.xd_c00040{left:516.698787pt;}
.x5a_c00040{left:518.705187pt;}
.x14_c00040{left:526.946387pt;}
.x47_c00040{left:528.473187pt;}
.x28_c00040{left:537.686787pt;}
.x20_c00040{left:547.463587pt;}
.x51_c00040{left:548.400787pt;}
.x15_c00040{left:557.033587pt;}
.x69_c00040{left:558.269987pt;}
.xe_c00040{left:566.726787pt;}
.x34_c00040{left:568.693587pt;}
.x21_c00040{left:577.295587pt;}
.x48_c00040{left:586.711587pt;}
.x16_c00040{left:596.536787pt;}
.x54_c00040{left:597.553187pt;}
.x4_c00040{left:604.830787pt;}
.x38_c00040{left:607.083587pt;}
.x3e_c00040{left:615.425987pt;}
.x42_c00040{left:616.587587pt;}
.x4f_c00040{left:617.493987pt;}
.x3b_c00040{left:625.990387pt;}
.x52_c00040{left:627.055187pt;}
.x29_c00040{left:635.186387pt;}
.x2e_c00040{left:636.532787pt;}
.x67_c00040{left:637.434787pt;}
.x22_c00040{left:645.429587pt;}
.x6a_c00040{left:680.704387pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4401393d920a99d215bc0d02.woff2')format("woff");}.ff1_c00041{font-family:ff1_c00041;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00041;src:url('chunks/assets/font_513b5e05d416f856d7902220.woff2')format("woff");}.ff2_c00041{font-family:ff2_c00041;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00041;src:url('chunks/assets/font_e406f16403b6c25ef8ce3fc4.woff2')format("woff");}.ff3_c00041{font-family:ff3_c00041;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00041;src:url('chunks/assets/font_08cb79062079c858a4e5948b.woff2')format("woff");}.ff4_c00041{font-family:ff4_c00041;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m80_c00041{transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);}
.m8b_c00041{transform:matrix(0.212958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212958,0.000000,0.000000,0.250000,0,0);}
.m6a_c00041{transform:matrix(0.222689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222689,0.000000,0.000000,0.250000,0,0);}
.m63_c00041{transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);}
.m91_c00041{transform:matrix(0.243839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243839,0.000000,0.000000,0.250000,0,0);}
.m0_c00041{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00041{transform:matrix(0.250462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250462,0.000000,0.000000,0.250000,0,0);}
.md_c00041{transform:matrix(0.250767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250767,0.000000,0.000000,0.250000,0,0);}
.m4b_c00041{transform:matrix(0.251943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251943,0.000000,0.000000,0.250000,0,0);}
.m4d_c00041{transform:matrix(0.252155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252155,0.000000,0.000000,0.250000,0,0);}
.m77_c00041{transform:matrix(0.254360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254360,0.000000,0.000000,0.250000,0,0);}
.m8e_c00041{transform:matrix(0.255681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255681,0.000000,0.000000,0.250000,0,0);}
.m7f_c00041{transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);}
.m7e_c00041{transform:matrix(0.256304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256304,0.000000,0.000000,0.250000,0,0);}
.m29_c00041{transform:matrix(0.257234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257234,0.000000,0.000000,0.250000,0,0);}
.m1f_c00041{transform:matrix(0.258042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258042,0.000000,0.000000,0.250000,0,0);}
.m8_c00041{transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);}
.m22_c00041{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m20_c00041{transform:matrix(0.262415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262415,0.000000,0.000000,0.250000,0,0);}
.m36_c00041{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m3f_c00041{transform:matrix(0.263814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263814,0.000000,0.000000,0.250000,0,0);}
.m87_c00041{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m5c_c00041{transform:matrix(0.264489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264489,0.000000,0.000000,0.250000,0,0);}
.m62_c00041{transform:matrix(0.264886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264886,0.000000,0.000000,0.250000,0,0);}
.m8d_c00041{transform:matrix(0.264890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264890,0.000000,0.000000,0.250000,0,0);}
.m53_c00041{transform:matrix(0.266001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266001,0.000000,0.000000,0.250000,0,0);}
.m5_c00041{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m7a_c00041{transform:matrix(0.266927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266927,0.000000,0.000000,0.250000,0,0);}
.m40_c00041{transform:matrix(0.267049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267049,0.000000,0.000000,0.250000,0,0);}
.m5a_c00041{transform:matrix(0.267321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267321,0.000000,0.000000,0.250000,0,0);}
.m13_c00041{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m9a_c00041{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.m56_c00041{transform:matrix(0.268743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268743,0.000000,0.000000,0.250000,0,0);}
.m17_c00041{transform:matrix(0.268845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268845,0.000000,0.000000,0.250000,0,0);}
.m79_c00041{transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);}
.m2b_c00041{transform:matrix(0.269056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269056,0.000000,0.000000,0.250000,0,0);}
.m92_c00041{transform:matrix(0.270969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270969,0.000000,0.000000,0.250000,0,0);}
.m38_c00041{transform:matrix(0.271124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271124,0.000000,0.000000,0.250000,0,0);}
.m15_c00041{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m2c_c00041{transform:matrix(0.273538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273538,0.000000,0.000000,0.250000,0,0);}
.m96_c00041{transform:matrix(0.273819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273819,0.000000,0.000000,0.250000,0,0);}
.m4f_c00041{transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);}
.mf_c00041{transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);}
.m71_c00041{transform:matrix(0.274588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274588,0.000000,0.000000,0.250000,0,0);}
.m3a_c00041{transform:matrix(0.275138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275138,0.000000,0.000000,0.250000,0,0);}
.m69_c00041{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m3c_c00041{transform:matrix(0.277176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277176,0.000000,0.000000,0.250000,0,0);}
.m24_c00041{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m78_c00041{transform:matrix(0.277241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277241,0.000000,0.000000,0.250000,0,0);}
.m1_c00041{transform:matrix(0.277438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277438,0.000000,0.000000,0.250000,0,0);}
.m88_c00041{transform:matrix(0.278033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278033,0.000000,0.000000,0.250000,0,0);}
.m45_c00041{transform:matrix(0.278728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278728,0.000000,0.000000,0.250000,0,0);}
.mc_c00041{transform:matrix(0.278825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278825,0.000000,0.000000,0.250000,0,0);}
.m1a_c00041{transform:matrix(0.280140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280140,0.000000,0.000000,0.250000,0,0);}
.m68_c00041{transform:matrix(0.280319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280319,0.000000,0.000000,0.250000,0,0);}
.m74_c00041{transform:matrix(0.280534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280534,0.000000,0.000000,0.250000,0,0);}
.m64_c00041{transform:matrix(0.280769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280769,0.000000,0.000000,0.250000,0,0);}
.m70_c00041{transform:matrix(0.280807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280807,0.000000,0.000000,0.250000,0,0);}
.m48_c00041{transform:matrix(0.281385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281385,0.000000,0.000000,0.250000,0,0);}
.m72_c00041{transform:matrix(0.282550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282550,0.000000,0.000000,0.250000,0,0);}
.m6e_c00041{transform:matrix(0.283335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283335,0.000000,0.000000,0.250000,0,0);}
.m8f_c00041{transform:matrix(0.285639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285639,0.000000,0.000000,0.250000,0,0);}
.m97_c00041{transform:matrix(0.285694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285694,0.000000,0.000000,0.250000,0,0);}
.m41_c00041{transform:matrix(0.286092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286092,0.000000,0.000000,0.250000,0,0);}
.m4c_c00041{transform:matrix(0.286270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286270,0.000000,0.000000,0.250000,0,0);}
.m58_c00041{transform:matrix(0.286586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286586,0.000000,0.000000,0.250000,0,0);}
.m93_c00041{transform:matrix(0.286842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286842,0.000000,0.000000,0.250000,0,0);}
.m67_c00041{transform:matrix(0.287431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287431,0.000000,0.000000,0.250000,0,0);}
.m3d_c00041{transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);}
.m30_c00041{transform:matrix(0.289026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289026,0.000000,0.000000,0.250000,0,0);}
.m11_c00041{transform:matrix(0.289678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289678,0.000000,0.000000,0.250000,0,0);}
.m2e_c00041{transform:matrix(0.289956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289956,0.000000,0.000000,0.250000,0,0);}
.m16_c00041{transform:matrix(0.290157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290157,0.000000,0.000000,0.250000,0,0);}
.m2a_c00041{transform:matrix(0.290272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290272,0.000000,0.000000,0.250000,0,0);}
.ma_c00041{transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);}
.m84_c00041{transform:matrix(0.290777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290777,0.000000,0.000000,0.250000,0,0);}
.m1c_c00041{transform:matrix(0.291008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291008,0.000000,0.000000,0.250000,0,0);}
.m6f_c00041{transform:matrix(0.291100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291100,0.000000,0.000000,0.250000,0,0);}
.m4e_c00041{transform:matrix(0.291407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291407,0.000000,0.000000,0.250000,0,0);}
.m9_c00041{transform:matrix(0.291702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291702,0.000000,0.000000,0.250000,0,0);}
.m46_c00041{transform:matrix(0.292385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292385,0.000000,0.000000,0.250000,0,0);}
.m1b_c00041{transform:matrix(0.292612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292612,0.000000,0.000000,0.250000,0,0);}
.m89_c00041{transform:matrix(0.293576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293576,0.000000,0.000000,0.250000,0,0);}
.m2d_c00041{transform:matrix(0.293654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293654,0.000000,0.000000,0.250000,0,0);}
.m34_c00041{transform:matrix(0.294066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294066,0.000000,0.000000,0.250000,0,0);}
.m21_c00041{transform:matrix(0.294780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294780,0.000000,0.000000,0.250000,0,0);}
.m6b_c00041{transform:matrix(0.295174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295174,0.000000,0.000000,0.250000,0,0);}
.m85_c00041{transform:matrix(0.295296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295296,0.000000,0.000000,0.250000,0,0);}
.m42_c00041{transform:matrix(0.296313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296313,0.000000,0.000000,0.250000,0,0);}
.m51_c00041{transform:matrix(0.296383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296383,0.000000,0.000000,0.250000,0,0);}
.m14_c00041{transform:matrix(0.296948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296948,0.000000,0.000000,0.250000,0,0);}
.m94_c00041{transform:matrix(0.298266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298266,0.000000,0.000000,0.250000,0,0);}
.m54_c00041{transform:matrix(0.298645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298645,0.000000,0.000000,0.250000,0,0);}
.m82_c00041{transform:matrix(0.299696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299696,0.000000,0.000000,0.250000,0,0);}
.m75_c00041{transform:matrix(0.300135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300135,0.000000,0.000000,0.250000,0,0);}
.m27_c00041{transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);}
.m6d_c00041{transform:matrix(0.300736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300736,0.000000,0.000000,0.250000,0,0);}
.m4_c00041{transform:matrix(0.300777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300777,0.000000,0.000000,0.250000,0,0);}
.m6_c00041{transform:matrix(0.301206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301206,0.000000,0.000000,0.250000,0,0);}
.m52_c00041{transform:matrix(0.301406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301406,0.000000,0.000000,0.250000,0,0);}
.mb_c00041{transform:matrix(0.301673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301673,0.000000,0.000000,0.250000,0,0);}
.m44_c00041{transform:matrix(0.302203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302203,0.000000,0.000000,0.250000,0,0);}
.m86_c00041{transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);}
.m50_c00041{transform:matrix(0.302503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302503,0.000000,0.000000,0.250000,0,0);}
.m98_c00041{transform:matrix(0.303100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303100,0.000000,0.000000,0.250000,0,0);}
.m7d_c00041{transform:matrix(0.303652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303652,0.000000,0.000000,0.250000,0,0);}
.m5f_c00041{transform:matrix(0.303918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303918,0.000000,0.000000,0.250000,0,0);}
.m2_c00041{transform:matrix(0.304948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304948,0.000000,0.000000,0.250000,0,0);}
.m5b_c00041{transform:matrix(0.304988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304988,0.000000,0.000000,0.250000,0,0);}
.m19_c00041{transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);}
.m9b_c00041{transform:matrix(0.306458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306458,0.000000,0.000000,0.250000,0,0);}
.m31_c00041{transform:matrix(0.307032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307032,0.000000,0.000000,0.250000,0,0);}
.m73_c00041{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m95_c00041{transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);}
.m1e_c00041{transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);}
.m55_c00041{transform:matrix(0.309501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309501,0.000000,0.000000,0.250000,0,0);}
.m8c_c00041{transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);}
.m99_c00041{transform:matrix(0.311283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311283,0.000000,0.000000,0.250000,0,0);}
.m32_c00041{transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);}
.m33_c00041{transform:matrix(0.312229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312229,0.000000,0.000000,0.250000,0,0);}
.m4a_c00041{transform:matrix(0.312313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312313,0.000000,0.000000,0.250000,0,0);}
.m37_c00041{transform:matrix(0.313434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313434,0.000000,0.000000,0.250000,0,0);}
.me_c00041{transform:matrix(0.314782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314782,0.000000,0.000000,0.250000,0,0);}
.m3b_c00041{transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);}
.m28_c00041{transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);}
.m65_c00041{transform:matrix(0.316376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316376,0.000000,0.000000,0.250000,0,0);}
.m60_c00041{transform:matrix(0.316543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316543,0.000000,0.000000,0.250000,0,0);}
.m66_c00041{transform:matrix(0.319176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319176,0.000000,0.000000,0.250000,0,0);}
.m7b_c00041{transform:matrix(0.319473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319473,0.000000,0.000000,0.250000,0,0);}
.m47_c00041{transform:matrix(0.320110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320110,0.000000,0.000000,0.250000,0,0);}
.m23_c00041{transform:matrix(0.321083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321083,0.000000,0.000000,0.250000,0,0);}
.m6c_c00041{transform:matrix(0.321114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321114,0.000000,0.000000,0.250000,0,0);}
.m39_c00041{transform:matrix(0.321773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321773,0.000000,0.000000,0.250000,0,0);}
.m7_c00041{transform:matrix(0.321922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321922,0.000000,0.000000,0.250000,0,0);}
.m61_c00041{transform:matrix(0.322246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322246,0.000000,0.000000,0.250000,0,0);}
.m43_c00041{transform:matrix(0.323206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323206,0.000000,0.000000,0.250000,0,0);}
.m18_c00041{transform:matrix(0.324794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324794,0.000000,0.000000,0.250000,0,0);}
.m25_c00041{transform:matrix(0.325574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325574,0.000000,0.000000,0.250000,0,0);}
.m26_c00041{transform:matrix(0.329165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329165,0.000000,0.000000,0.250000,0,0);}
.m76_c00041{transform:matrix(0.331416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331416,0.000000,0.000000,0.250000,0,0);}
.m90_c00041{transform:matrix(0.332412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332412,0.000000,0.000000,0.250000,0,0);}
.m1d_c00041{transform:matrix(0.333988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333988,0.000000,0.000000,0.250000,0,0);}
.m5e_c00041{transform:matrix(0.337266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337266,0.000000,0.000000,0.250000,0,0);}
.m7c_c00041{transform:matrix(0.338138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338138,0.000000,0.000000,0.250000,0,0);}
.m8a_c00041{transform:matrix(0.338544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338544,0.000000,0.000000,0.250000,0,0);}
.m35_c00041{transform:matrix(0.339183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339183,0.000000,0.000000,0.250000,0,0);}
.m10_c00041{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m12_c00041{transform:matrix(0.340669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340669,0.000000,0.000000,0.250000,0,0);}
.m81_c00041{transform:matrix(0.341742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341742,0.000000,0.000000,0.250000,0,0);}
.m5d_c00041{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.m83_c00041{transform:matrix(0.345093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345093,0.000000,0.000000,0.250000,0,0);}
.m57_c00041{transform:matrix(0.345194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345194,0.000000,0.000000,0.250000,0,0);}
.m59_c00041{transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);}
.m49_c00041{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m2f_c00041{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m3_c00041{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.v0_c00041{vertical-align:0.000000px;}
.lse_c00041{letter-spacing:-3.381840px;}
.ls8_c00041{letter-spacing:-2.744280px;}
.ls5_c00041{letter-spacing:-1.897474px;}
.ls1_c00041{letter-spacing:0.000000px;}
.lsc_c00041{letter-spacing:1.811700px;}
.ls0_c00041{letter-spacing:2.383603px;}
.ls4_c00041{letter-spacing:2.414966px;}
.lsa_c00041{letter-spacing:3.544200px;}
.ls7_c00041{letter-spacing:3.603610px;}
.ls3_c00041{letter-spacing:3.653813px;}
.ls6_c00041{letter-spacing:3.810629px;}
.ls2_c00041{letter-spacing:3.920400px;}
.lsd_c00041{letter-spacing:3.960000px;}
.ls9_c00041{letter-spacing:48.470598px;}
.lsb_c00041{letter-spacing:49.896198px;}
.sc__c00041{text-shadow:none;}
.sc0_c00041{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00041{-webkit-text-stroke:0px transparent;}
.sc0_c00041{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00041{word-spacing:0.000000px;}
._2_c00041{width:11.996820px;}
._1_c00041{width:34.468157px;}
._0_c00041{width:36.627624px;}
.fc0_c00041{color:transparent;}
.fs9_c00041{font-size:9.504198px;}
.fsf_c00041{font-size:22.176000px;}
.fs0_c00041{font-size:27.720000px;}
.fs3_c00041{font-size:28.314000px;}
.fs2_c00041{font-size:33.264000px;}
.fsb_c00041{font-size:36.234000px;}
.fs6_c00041{font-size:48.470598px;}
.fsa_c00041{font-size:49.896198px;}
.fs7_c00041{font-size:51.876198px;}
.fs5_c00041{font-size:64.548000px;}
.fs8_c00041{font-size:70.884000px;}
.fs4_c00041{font-size:72.072198px;}
.fsc_c00041{font-size:72.864000px;}
.fs1_c00041{font-size:78.408000px;}
.fsd_c00041{font-size:79.200000px;}
.fse_c00041{font-size:96.624000px;}
.y0_c00041{bottom:0.000000px;}
.y20_c00041{bottom:9.529785px;}
.y1_c00041{bottom:76.500000px;}
.y1f_c00041{bottom:91.501785px;}
.y1e_c00041{bottom:126.790335px;}
.y1d_c00041{bottom:157.792185px;}
.y1c_c00041{bottom:182.740185px;}
.y1b_c00041{bottom:192.362985px;}
.y19_c00041{bottom:257.940585px;}
.y1a_c00041{bottom:262.935135px;}
.y18_c00041{bottom:290.377935px;}
.y17_c00041{bottom:317.820735px;}
.y16_c00041{bottom:322.453935px;}
.y15_c00041{bottom:366.291135px;}
.y14_c00041{bottom:398.010735px;}
.y13_c00041{bottom:430.086735px;}
.y12_c00041{bottom:461.806335px;}
.y11_c00041{bottom:509.202585px;}
.yf_c00041{bottom:526.671135px;}
.y10_c00041{bottom:532.017135px;}
.ye_c00041{bottom:559.811385px;}
.yd_c00041{bottom:591.892335px;}
.yc_c00041{bottom:624.681135px;}
.yb_c00041{bottom:658.182735px;}
.ya_c00041{bottom:689.902335px;}
.y9_c00041{bottom:721.973385px;}
.y8_c00041{bottom:754.049385px;}
.y7_c00041{bottom:786.486735px;}
.y6_c00041{bottom:818.919135px;}
.y5_c00041{bottom:898.391385px;}
.y4_c00041{bottom:917.636985px;}
.y2_c00041{bottom:930.823785px;}
.y3_c00041{bottom:1068.394185px;}
.hb_c00041{height:9.912582px;}
.h11_c00041{height:23.128875px;}
.h2_c00041{height:28.911094px;}
.h5_c00041{height:29.530617px;}
.h8_c00041{height:32.281418px;}
.hc_c00041{height:33.230868px;}
.h4_c00041{height:34.693313px;}
.hd_c00041{height:37.790930px;}
.h9_c00041{height:54.105253px;}
.h7_c00041{height:67.321547px;}
.ha_c00041{height:69.568770px;}
.h6_c00041{height:70.734921px;}
.he_c00041{height:71.512031px;}
.h3_c00041{height:76.953164px;}
.hf_c00041{height:82.603125px;}
.h10_c00041{height:100.775813px;}
.h1_c00041{height:1110.000000px;}
.h0_c00041{height:1263.000000px;}
.w1_c00041{width:796.500000px;}
.w0_c00041{width:892.500000px;}
.x0_c00041{left:0.000000px;}
.x1_c00041{left:48.000000px;}
.x2_c00041{left:66.867285px;}
.x32_c00041{left:106.432635px;}
.x4_c00041{left:107.892885px;}
.x54_c00041{left:129.816435px;}
.x1d_c00041{left:141.265785px;}
.xb_c00041{left:151.626135px;}
.x50_c00041{left:162.026085px;}
.x1e_c00041{left:163.322985px;}
.x59_c00041{left:174.049635px;}
.x5_c00041{left:185.627685px;}
.x55_c00041{left:194.819835px;}
.x6_c00041{left:207.501735px;}
.x23_c00041{left:217.372035px;}
.x39_c00041{left:218.609535px;}
.xc_c00041{left:229.375785px;}
.x7_c00041{left:241.730985px;}
.x15_c00041{left:252.096285px;}
.x29_c00041{left:254.893035px;}
.xd_c00041{left:262.308135px;}
.x44_c00041{left:264.228735px;}
.x2d_c00041{left:275.554335px;}
.x16_c00041{left:285.954285px;}
.x1f_c00041{left:288.018435px;}
.x41_c00041{left:296.166135px;}
.x48_c00041{left:298.606485px;}
.x33_c00041{left:307.328385px;}
.x35_c00041{left:318.386685px;}
.x2e_c00041{left:328.529235px;}
.x8_c00041{left:330.840885px;}
.x24_c00041{left:340.364685px;}
.x3a_c00041{left:341.567535px;}
.x17_c00041{left:343.260435px;}
.xe_c00041{left:351.343785px;}
.x5c_c00041{left:354.105885px;}
.x5b_c00041{left:355.576035px;}
.x4d_c00041{left:362.397135px;}
.x9_c00041{left:363.525735px;}
.x4b_c00041{left:365.619585px;}
.x47_c00041{left:384.474135px;}
.x36_c00041{left:385.711635px;}
.x2a_c00041{left:396.755085px;}
.x18_c00041{left:407.130285px;}
.x45_c00041{left:408.486585px;}
.x51_c00041{left:418.891485px;}
.x34_c00041{left:427.905435px;}
.xf_c00041{left:429.806235px;}
.x19_c00041{left:439.631985px;}
.x42_c00041{left:440.805135px;}
.x2f_c00041{left:450.814035px;}
.x52_c00041{left:455.234385px;}
.x25_c00041{left:462.248535px;}
.x3b_c00041{left:473.742435px;}
.x3e_c00041{left:485.142285px;}
.x1a_c00041{left:495.621435px;}
.x20_c00041{left:496.883685px;}
.x49_c00041{left:506.798535px;}
.x56_c00041{left:507.877635px;}
.x2b_c00041{left:518.327085px;}
.x26_c00041{left:519.331935px;}
.x46_c00041{left:529.731885px;}
.x57_c00041{left:539.587335px;}
.x43_c00041{left:541.102035px;}
.x21_c00041{left:562.020735px;}
.x10_c00041{left:563.198835px;}
.x5a_c00041{left:572.851335px;}
.x27_c00041{left:574.123485px;}
.x37_c00041{left:584.072985px;}
.x4c_c00041{left:585.320385px;}
.x11_c00041{left:586.409385px;}
.x30_c00041{left:594.695685px;}
.x1b_c00041{left:605.996535px;}
.x4e_c00041{left:607.570635px;}
.x12_c00041{left:617.723085px;}
.x4f_c00041{left:619.609035px;}
.x2c_c00041{left:628.420035px;}
.x53_c00041{left:638.032935px;}
.x1c_c00041{left:640.250535px;}
.x3c_c00041{left:650.041635px;}
.x40_c00041{left:652.432485px;}
.x58_c00041{left:660.852435px;}
.x13_c00041{left:663.352185px;}
.x28_c00041{left:672.524535px;}
.x4a_c00041{left:674.380785px;}
.x38_c00041{left:684.053085px;}
.x3_c00041{left:685.067835px;}
.x3d_c00041{left:695.076735px;}
.x14_c00041{left:696.442935px;}
.x22_c00041{left:698.234835px;}
.x31_c00041{left:705.758835px;}
.x3f_c00041{left:712.956135px;}
.xa_c00041{left:715.851885px;}
@media print{
.v0_c00041{vertical-align:0.000000pt;}
.lse_c00041{letter-spacing:-3.006080pt;}
.ls8_c00041{letter-spacing:-2.439360pt;}
.ls5_c00041{letter-spacing:-1.686643pt;}
.ls1_c00041{letter-spacing:0.000000pt;}
.lsc_c00041{letter-spacing:1.610400pt;}
.ls0_c00041{letter-spacing:2.118758pt;}
.ls4_c00041{letter-spacing:2.146637pt;}
.lsa_c00041{letter-spacing:3.150400pt;}
.ls7_c00041{letter-spacing:3.203209pt;}
.ls3_c00041{letter-spacing:3.247834pt;}
.ls6_c00041{letter-spacing:3.387226pt;}
.ls2_c00041{letter-spacing:3.484800pt;}
.lsd_c00041{letter-spacing:3.520000pt;}
.ls9_c00041{letter-spacing:43.084976pt;}
.lsb_c00041{letter-spacing:44.352176pt;}
.ws0_c00041{word-spacing:0.000000pt;}
._2_c00041{width:10.663840pt;}
._1_c00041{width:30.638362pt;}
._0_c00041{width:32.557888pt;}
.fs9_c00041{font-size:8.448176pt;}
.fsf_c00041{font-size:19.712000pt;}
.fs0_c00041{font-size:24.640000pt;}
.fs3_c00041{font-size:25.168000pt;}
.fs2_c00041{font-size:29.568000pt;}
.fsb_c00041{font-size:32.208000pt;}
.fs6_c00041{font-size:43.084976pt;}
.fsa_c00041{font-size:44.352176pt;}
.fs7_c00041{font-size:46.112176pt;}
.fs5_c00041{font-size:57.376000pt;}
.fs8_c00041{font-size:63.008000pt;}
.fs4_c00041{font-size:64.064176pt;}
.fsc_c00041{font-size:64.768000pt;}
.fs1_c00041{font-size:69.696000pt;}
.fsd_c00041{font-size:70.400000pt;}
.fse_c00041{font-size:85.888000pt;}
.y0_c00041{bottom:0.000000pt;}
.y20_c00041{bottom:8.470920pt;}
.y1_c00041{bottom:68.000000pt;}
.y1f_c00041{bottom:81.334920pt;}
.y1e_c00041{bottom:112.702520pt;}
.y1d_c00041{bottom:140.259720pt;}
.y1c_c00041{bottom:162.435720pt;}
.y1b_c00041{bottom:170.989320pt;}
.y19_c00041{bottom:229.280520pt;}
.y1a_c00041{bottom:233.720120pt;}
.y18_c00041{bottom:258.113720pt;}
.y17_c00041{bottom:282.507320pt;}
.y16_c00041{bottom:286.625720pt;}
.y15_c00041{bottom:325.592120pt;}
.y14_c00041{bottom:353.787320pt;}
.y13_c00041{bottom:382.299320pt;}
.y12_c00041{bottom:410.494520pt;}
.y11_c00041{bottom:452.624520pt;}
.yf_c00041{bottom:468.152120pt;}
.y10_c00041{bottom:472.904120pt;}
.ye_c00041{bottom:497.610120pt;}
.yd_c00041{bottom:526.126520pt;}
.yc_c00041{bottom:555.272120pt;}
.yb_c00041{bottom:585.051320pt;}
.ya_c00041{bottom:613.246520pt;}
.y9_c00041{bottom:641.754120pt;}
.y8_c00041{bottom:670.266120pt;}
.y7_c00041{bottom:699.099320pt;}
.y6_c00041{bottom:727.928120pt;}
.y5_c00041{bottom:798.570120pt;}
.y4_c00041{bottom:815.677320pt;}
.y2_c00041{bottom:827.398920pt;}
.y3_c00041{bottom:949.683720pt;}
.hb_c00041{height:8.811184pt;}
.h11_c00041{height:20.559000pt;}
.h2_c00041{height:25.698750pt;}
.h5_c00041{height:26.249438pt;}
.h8_c00041{height:28.694594pt;}
.hc_c00041{height:29.538549pt;}
.h4_c00041{height:30.838500pt;}
.hd_c00041{height:33.591938pt;}
.h9_c00041{height:48.093559pt;}
.h7_c00041{height:59.841375pt;}
.ha_c00041{height:61.838906pt;}
.h6_c00041{height:62.875485pt;}
.he_c00041{height:63.566250pt;}
.h3_c00041{height:68.402813pt;}
.hf_c00041{height:73.425000pt;}
.h10_c00041{height:89.578500pt;}
.h1_c00041{height:986.666667pt;}
.h0_c00041{height:1122.666667pt;}
.w1_c00041{width:708.000000pt;}
.w0_c00041{width:793.333333pt;}
.x0_c00041{left:0.000000pt;}
.x1_c00041{left:42.666667pt;}
.x2_c00041{left:59.437587pt;}
.x32_c00041{left:94.606787pt;}
.x4_c00041{left:95.904787pt;}
.x54_c00041{left:115.392387pt;}
.x1d_c00041{left:125.569587pt;}
.xb_c00041{left:134.778787pt;}
.x50_c00041{left:144.023187pt;}
.x1e_c00041{left:145.175987pt;}
.x59_c00041{left:154.710787pt;}
.x5_c00041{left:165.002387pt;}
.x55_c00041{left:173.173187pt;}
.x6_c00041{left:184.445987pt;}
.x23_c00041{left:193.219587pt;}
.x39_c00041{left:194.319587pt;}
.xc_c00041{left:203.889587pt;}
.x7_c00041{left:214.871987pt;}
.x15_c00041{left:224.085587pt;}
.x29_c00041{left:226.571587pt;}
.xd_c00041{left:233.162787pt;}
.x44_c00041{left:234.869987pt;}
.x2d_c00041{left:244.937187pt;}
.x16_c00041{left:254.181587pt;}
.x1f_c00041{left:256.016387pt;}
.x41_c00041{left:263.258787pt;}
.x48_c00041{left:265.427987pt;}
.x33_c00041{left:273.180787pt;}
.x35_c00041{left:283.010387pt;}
.x2e_c00041{left:292.025987pt;}
.x8_c00041{left:294.080787pt;}
.x24_c00041{left:302.546387pt;}
.x3a_c00041{left:303.615587pt;}
.x17_c00041{left:305.120387pt;}
.xe_c00041{left:312.305587pt;}
.x5c_c00041{left:314.760787pt;}
.x5b_c00041{left:316.067587pt;}
.x4d_c00041{left:322.130787pt;}
.x9_c00041{left:323.133987pt;}
.x4b_c00041{left:324.995187pt;}
.x47_c00041{left:341.754787pt;}
.x36_c00041{left:342.854787pt;}
.x2a_c00041{left:352.671187pt;}
.x18_c00041{left:361.893587pt;}
.x45_c00041{left:363.099187pt;}
.x51_c00041{left:372.347987pt;}
.x34_c00041{left:380.360387pt;}
.xf_c00041{left:382.049987pt;}
.x19_c00041{left:390.783987pt;}
.x42_c00041{left:391.826787pt;}
.x2f_c00041{left:400.723587pt;}
.x52_c00041{left:404.652787pt;}
.x25_c00041{left:410.887587pt;}
.x3b_c00041{left:421.104387pt;}
.x3e_c00041{left:431.237587pt;}
.x1a_c00041{left:440.552387pt;}
.x20_c00041{left:441.674387pt;}
.x49_c00041{left:450.487587pt;}
.x56_c00041{left:451.446787pt;}
.x2b_c00041{left:460.735187pt;}
.x26_c00041{left:461.628387pt;}
.x46_c00041{left:470.872787pt;}
.x57_c00041{left:479.633187pt;}
.x43_c00041{left:480.979587pt;}
.x21_c00041{left:499.573987pt;}
.x10_c00041{left:500.621187pt;}
.x5a_c00041{left:509.201187pt;}
.x27_c00041{left:510.331987pt;}
.x37_c00041{left:519.175987pt;}
.x4c_c00041{left:520.284787pt;}
.x11_c00041{left:521.252787pt;}
.x30_c00041{left:528.618387pt;}
.x1b_c00041{left:538.663587pt;}
.x4e_c00041{left:540.062787pt;}
.x12_c00041{left:549.087187pt;}
.x4f_c00041{left:550.763587pt;}
.x2c_c00041{left:558.595587pt;}
.x53_c00041{left:567.140387pt;}
.x1c_c00041{left:569.111587pt;}
.x3c_c00041{left:577.814787pt;}
.x40_c00041{left:579.939987pt;}
.x58_c00041{left:587.424387pt;}
.x13_c00041{left:589.646387pt;}
.x28_c00041{left:597.799587pt;}
.x4a_c00041{left:599.449587pt;}
.x38_c00041{left:608.047187pt;}
.x3_c00041{left:608.949187pt;}
.x3d_c00041{left:617.845987pt;}
.x14_c00041{left:619.060387pt;}
.x22_c00041{left:620.653187pt;}
.x31_c00041{left:627.341187pt;}
.x3f_c00041{left:633.738787pt;}
.xa_c00041{left:636.312787pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3dbd0946b66ab793f8526dbc.woff2')format("woff");}.ff1_c00042{font-family:ff1_c00042;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00042;src:url('chunks/assets/font_9f956ab8602f358da6669aae.woff2')format("woff");}.ff2_c00042{font-family:ff2_c00042;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00042;src:url('chunks/assets/font_1d78c8f574e6de8f8110199b.woff2')format("woff");}.ff3_c00042{font-family:ff3_c00042;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00042;src:url('chunks/assets/font_19999829d4c6bde25505ec73.woff2')format("woff");}.ff4_c00042{font-family:ff4_c00042;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00042;src:url('chunks/assets/font_9593a2c1c31aa82450fa0950.woff2')format("woff");}.ff5_c00042{font-family:ff5_c00042;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m13_c00042{transform:matrix(0.096154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096154,0.000000,0.000000,0.250000,0,0);}
.m95_c00042{transform:matrix(0.139895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139895,0.000000,0.000000,0.250000,0,0);}
.m12_c00042{transform:matrix(0.176282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176282,0.000000,0.000000,0.250000,0,0);}
.mb4_c00042{transform:matrix(0.184484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184484,0.000000,0.000000,0.250000,0,0);}
.m97_c00042{transform:matrix(0.198198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198198,0.000000,0.000000,0.250000,0,0);}
.m3c_c00042{transform:matrix(0.222093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222093,0.000000,0.000000,0.250000,0,0);}
.ma7_c00042{transform:matrix(0.222348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222348,0.000000,0.000000,0.250000,0,0);}
.m45_c00042{transform:matrix(0.223469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223469,0.000000,0.000000,0.250000,0,0);}
.m0_c00042{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m26_c00042{transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);}
.m74_c00042{transform:matrix(0.250712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250712,0.000000,0.000000,0.250000,0,0);}
.m6_c00042{transform:matrix(0.251792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251792,0.000000,0.000000,0.250000,0,0);}
.m2f_c00042{transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);}
.m1_c00042{transform:matrix(0.254344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254344,0.000000,0.000000,0.250000,0,0);}
.m7_c00042{transform:matrix(0.255079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255079,0.000000,0.000000,0.250000,0,0);}
.m9f_c00042{transform:matrix(0.255489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255489,0.000000,0.000000,0.250000,0,0);}
.m63_c00042{transform:matrix(0.255896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255896,0.000000,0.000000,0.250000,0,0);}
.m5a_c00042{transform:matrix(0.256600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256600,0.000000,0.000000,0.250000,0,0);}
.m2_c00042{transform:matrix(0.257063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257063,0.000000,0.000000,0.250000,0,0);}
.m8e_c00042{transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);}
.m4a_c00042{transform:matrix(0.258106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258106,0.000000,0.000000,0.250000,0,0);}
.m46_c00042{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m20_c00042{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m47_c00042{transform:matrix(0.261057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261057,0.000000,0.000000,0.250000,0,0);}
.m75_c00042{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m7d_c00042{transform:matrix(0.263972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263972,0.000000,0.000000,0.250000,0,0);}
.m8a_c00042{transform:matrix(0.264128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264128,0.000000,0.000000,0.250000,0,0);}
.m5c_c00042{transform:matrix(0.264157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264157,0.000000,0.000000,0.250000,0,0);}
.m32_c00042{transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);}
.m2b_c00042{transform:matrix(0.265694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265694,0.000000,0.000000,0.250000,0,0);}
.me_c00042{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m9d_c00042{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.ma4_c00042{transform:matrix(0.266914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266914,0.000000,0.000000,0.250000,0,0);}
.m52_c00042{transform:matrix(0.267395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267395,0.000000,0.000000,0.250000,0,0);}
.m5_c00042{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m64_c00042{transform:matrix(0.267953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267953,0.000000,0.000000,0.250000,0,0);}
.m34_c00042{transform:matrix(0.268473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268473,0.000000,0.000000,0.250000,0,0);}
.m8_c00042{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.ma9_c00042{transform:matrix(0.268639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268639,0.000000,0.000000,0.250000,0,0);}
.m80_c00042{transform:matrix(0.269001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269001,0.000000,0.000000,0.250000,0,0);}
.m7c_c00042{transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);}
.md_c00042{transform:matrix(0.270686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270686,0.000000,0.000000,0.250000,0,0);}
.m44_c00042{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m6a_c00042{transform:matrix(0.271473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271473,0.000000,0.000000,0.250000,0,0);}
.m78_c00042{transform:matrix(0.273168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273168,0.000000,0.000000,0.250000,0,0);}
.m48_c00042{transform:matrix(0.273728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273728,0.000000,0.000000,0.250000,0,0);}
.m38_c00042{transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00042{transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);}
.m68_c00042{transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);}
.m40_c00042{transform:matrix(0.275470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275470,0.000000,0.000000,0.250000,0,0);}
.m28_c00042{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m6d_c00042{transform:matrix(0.275593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275593,0.000000,0.000000,0.250000,0,0);}
.maf_c00042{transform:matrix(0.275784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275784,0.000000,0.000000,0.250000,0,0);}
.m72_c00042{transform:matrix(0.275861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275861,0.000000,0.000000,0.250000,0,0);}
.m5b_c00042{transform:matrix(0.276318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276318,0.000000,0.000000,0.250000,0,0);}
.m60_c00042{transform:matrix(0.276543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276543,0.000000,0.000000,0.250000,0,0);}
.m7f_c00042{transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);}
.mab_c00042{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m90_c00042{transform:matrix(0.277360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277360,0.000000,0.000000,0.250000,0,0);}
.mad_c00042{transform:matrix(0.277924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277924,0.000000,0.000000,0.250000,0,0);}
.m11_c00042{transform:matrix(0.279017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279017,0.000000,0.000000,0.250000,0,0);}
.m9a_c00042{transform:matrix(0.279025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279025,0.000000,0.000000,0.250000,0,0);}
.m2c_c00042{transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);}
.ma0_c00042{transform:matrix(0.279750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279750,0.000000,0.000000,0.250000,0,0);}
.m77_c00042{transform:matrix(0.280085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280085,0.000000,0.000000,0.250000,0,0);}
.ma5_c00042{transform:matrix(0.280107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280107,0.000000,0.000000,0.250000,0,0);}
.m99_c00042{transform:matrix(0.280329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280329,0.000000,0.000000,0.250000,0,0);}
.m1f_c00042{transform:matrix(0.280372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280372,0.000000,0.000000,0.250000,0,0);}
.m81_c00042{transform:matrix(0.280443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280443,0.000000,0.000000,0.250000,0,0);}
.ma8_c00042{transform:matrix(0.280970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280970,0.000000,0.000000,0.250000,0,0);}
.m5d_c00042{transform:matrix(0.281865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281865,0.000000,0.000000,0.250000,0,0);}
.mb5_c00042{transform:matrix(0.282128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282128,0.000000,0.000000,0.250000,0,0);}
.m24_c00042{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.ma3_c00042{transform:matrix(0.284850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284850,0.000000,0.000000,0.250000,0,0);}
.m62_c00042{transform:matrix(0.285068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285068,0.000000,0.000000,0.250000,0,0);}
.m2d_c00042{transform:matrix(0.285744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285744,0.000000,0.000000,0.250000,0,0);}
.m3d_c00042{transform:matrix(0.286053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286053,0.000000,0.000000,0.250000,0,0);}
.m58_c00042{transform:matrix(0.286460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286460,0.000000,0.000000,0.250000,0,0);}
.m96_c00042{transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);}
.m35_c00042{transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);}
.m4c_c00042{transform:matrix(0.289026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289026,0.000000,0.000000,0.250000,0,0);}
.mf_c00042{transform:matrix(0.289678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289678,0.000000,0.000000,0.250000,0,0);}
.m1b_c00042{transform:matrix(0.289863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289863,0.000000,0.000000,0.250000,0,0);}
.m8c_c00042{transform:matrix(0.290071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290071,0.000000,0.000000,0.250000,0,0);}
.m49_c00042{transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);}
.m36_c00042{transform:matrix(0.290445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290445,0.000000,0.000000,0.250000,0,0);}
.m87_c00042{transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);}
.m7b_c00042{transform:matrix(0.291288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291288,0.000000,0.000000,0.250000,0,0);}
.m3f_c00042{transform:matrix(0.291503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291503,0.000000,0.000000,0.250000,0,0);}
.m4d_c00042{transform:matrix(0.291530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291530,0.000000,0.000000,0.250000,0,0);}
.m29_c00042{transform:matrix(0.291702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291702,0.000000,0.000000,0.250000,0,0);}
.m98_c00042{transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);}
.ma6_c00042{transform:matrix(0.292532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292532,0.000000,0.000000,0.250000,0,0);}
.m9b_c00042{transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);}
.m42_c00042{transform:matrix(0.293692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293692,0.000000,0.000000,0.250000,0,0);}
.m1c_c00042{transform:matrix(0.294116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294116,0.000000,0.000000,0.250000,0,0);}
.m3b_c00042{transform:matrix(0.294705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294705,0.000000,0.000000,0.250000,0,0);}
.mb6_c00042{transform:matrix(0.294780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294780,0.000000,0.000000,0.250000,0,0);}
.m43_c00042{transform:matrix(0.295445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295445,0.000000,0.000000,0.250000,0,0);}
.m8b_c00042{transform:matrix(0.296343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296343,0.000000,0.000000,0.250000,0,0);}
.m57_c00042{transform:matrix(0.296564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296564,0.000000,0.000000,0.250000,0,0);}
.m6c_c00042{transform:matrix(0.296783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296783,0.000000,0.000000,0.250000,0,0);}
.m82_c00042{transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);}
.m2a_c00042{transform:matrix(0.296991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296991,0.000000,0.000000,0.250000,0,0);}
.ma1_c00042{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.mb7_c00042{transform:matrix(0.298297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298297,0.000000,0.000000,0.250000,0,0);}
.m25_c00042{transform:matrix(0.299112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299112,0.000000,0.000000,0.250000,0,0);}
.m59_c00042{transform:matrix(0.300052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300052,0.000000,0.000000,0.250000,0,0);}
.m16_c00042{transform:matrix(0.300195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300195,0.000000,0.000000,0.250000,0,0);}
.mb1_c00042{transform:matrix(0.301331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301331,0.000000,0.000000,0.250000,0,0);}
.m39_c00042{transform:matrix(0.301627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301627,0.000000,0.000000,0.250000,0,0);}
.m84_c00042{transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);}
.m10_c00042{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.ma2_c00042{transform:matrix(0.302484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302484,0.000000,0.000000,0.250000,0,0);}
.m8d_c00042{transform:matrix(0.303153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303153,0.000000,0.000000,0.250000,0,0);}
.m14_c00042{transform:matrix(0.303256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303256,0.000000,0.000000,0.250000,0,0);}
.m85_c00042{transform:matrix(0.304224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304224,0.000000,0.000000,0.250000,0,0);}
.m76_c00042{transform:matrix(0.304273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304273,0.000000,0.000000,0.250000,0,0);}
.mc_c00042{transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);}
.m70_c00042{transform:matrix(0.305409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305409,0.000000,0.000000,0.250000,0,0);}
.m6b_c00042{transform:matrix(0.306147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306147,0.000000,0.000000,0.250000,0,0);}
.m9e_c00042{transform:matrix(0.306323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306323,0.000000,0.000000,0.250000,0,0);}
.m4b_c00042{transform:matrix(0.307034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307034,0.000000,0.000000,0.250000,0,0);}
.m65_c00042{transform:matrix(0.307138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307138,0.000000,0.000000,0.250000,0,0);}
.m1d_c00042{transform:matrix(0.307189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307189,0.000000,0.000000,0.250000,0,0);}
.m55_c00042{transform:matrix(0.307515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307515,0.000000,0.000000,0.250000,0,0);}
.m56_c00042{transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);}
.mb_c00042{transform:matrix(0.308116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308116,0.000000,0.000000,0.250000,0,0);}
.m19_c00042{transform:matrix(0.308319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308319,0.000000,0.000000,0.250000,0,0);}
.m27_c00042{transform:matrix(0.308577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308577,0.000000,0.000000,0.250000,0,0);}
.m3_c00042{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m92_c00042{transform:matrix(0.309367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309367,0.000000,0.000000,0.250000,0,0);}
.m5f_c00042{transform:matrix(0.310025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310025,0.000000,0.000000,0.250000,0,0);}
.m61_c00042{transform:matrix(0.310482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310482,0.000000,0.000000,0.250000,0,0);}
.m4_c00042{transform:matrix(0.310947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310947,0.000000,0.000000,0.250000,0,0);}
.m91_c00042{transform:matrix(0.311211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311211,0.000000,0.000000,0.250000,0,0);}
.m37_c00042{transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);}
.m88_c00042{transform:matrix(0.312157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312157,0.000000,0.000000,0.250000,0,0);}
.m89_c00042{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.m1a_c00042{transform:matrix(0.313490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313490,0.000000,0.000000,0.250000,0,0);}
.m23_c00042{transform:matrix(0.314257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314257,0.000000,0.000000,0.250000,0,0);}
.m4f_c00042{transform:matrix(0.314288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314288,0.000000,0.000000,0.250000,0,0);}
.m2e_c00042{transform:matrix(0.314815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314815,0.000000,0.000000,0.250000,0,0);}
.m73_c00042{transform:matrix(0.315048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315048,0.000000,0.000000,0.250000,0,0);}
.m51_c00042{transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);}
.mae_c00042{transform:matrix(0.316989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316989,0.000000,0.000000,0.250000,0,0);}
.m94_c00042{transform:matrix(0.317287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317287,0.000000,0.000000,0.250000,0,0);}
.m3e_c00042{transform:matrix(0.317707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317707,0.000000,0.000000,0.250000,0,0);}
.m86_c00042{transform:matrix(0.318771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318771,0.000000,0.000000,0.250000,0,0);}
.m66_c00042{transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);}
.m21_c00042{transform:matrix(0.320003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320003,0.000000,0.000000,0.250000,0,0);}
.m7e_c00042{transform:matrix(0.320092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320092,0.000000,0.000000,0.250000,0,0);}
.m71_c00042{transform:matrix(0.320466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320466,0.000000,0.000000,0.250000,0,0);}
.maa_c00042{transform:matrix(0.320601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320601,0.000000,0.000000,0.250000,0,0);}
.m79_c00042{transform:matrix(0.321637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321637,0.000000,0.000000,0.250000,0,0);}
.m18_c00042{transform:matrix(0.321773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321773,0.000000,0.000000,0.250000,0,0);}
.m67_c00042{transform:matrix(0.321980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321980,0.000000,0.000000,0.250000,0,0);}
.m69_c00042{transform:matrix(0.323239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323239,0.000000,0.000000,0.250000,0,0);}
.m54_c00042{transform:matrix(0.323828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323828,0.000000,0.000000,0.250000,0,0);}
.mac_c00042{transform:matrix(0.324133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324133,0.000000,0.000000,0.250000,0,0);}
.m93_c00042{transform:matrix(0.324242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324242,0.000000,0.000000,0.250000,0,0);}
.mb2_c00042{transform:matrix(0.324794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324794,0.000000,0.000000,0.250000,0,0);}
.m41_c00042{transform:matrix(0.325899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325899,0.000000,0.000000,0.250000,0,0);}
.ma_c00042{transform:matrix(0.325953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325953,0.000000,0.000000,0.250000,0,0);}
.m31_c00042{transform:matrix(0.326063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326063,0.000000,0.000000,0.250000,0,0);}
.m7a_c00042{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.mb0_c00042{transform:matrix(0.328552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328552,0.000000,0.000000,0.250000,0,0);}
.m50_c00042{transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);}
.m5e_c00042{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.mb3_c00042{transform:matrix(0.337181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337181,0.000000,0.000000,0.250000,0,0);}
.m83_c00042{transform:matrix(0.337295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337295,0.000000,0.000000,0.250000,0,0);}
.m9_c00042{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m8f_c00042{transform:matrix(0.342597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342597,0.000000,0.000000,0.250000,0,0);}
.m30_c00042{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.m4e_c00042{transform:matrix(0.346690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346690,0.000000,0.000000,0.250000,0,0);}
.m22_c00042{transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);}
.m3a_c00042{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m9c_c00042{transform:matrix(0.352432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352432,0.000000,0.000000,0.250000,0,0);}
.m15_c00042{transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);}
.m33_c00042{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m53_c00042{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m17_c00042{transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);}
.m6f_c00042{transform:matrix(0.371126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371126,0.000000,0.000000,0.250000,0,0);}
.m6e_c00042{transform:matrix(0.386678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386678,0.000000,0.000000,0.250000,0,0);}
.v0_c00042{vertical-align:0.000000px;}
.ls9_c00042{letter-spacing:-2.744280px;}
.ls8_c00042{letter-spacing:-1.897474px;}
.lsd_c00042{letter-spacing:-0.172498px;}
.ls2_c00042{letter-spacing:0.000000px;}
.ls1_c00042{letter-spacing:1.168279px;}
.ls6_c00042{letter-spacing:1.685772px;}
.lsb_c00042{letter-spacing:1.811700px;}
.lsc_c00042{letter-spacing:3.606768px;}
.ls4_c00042{letter-spacing:3.920400px;}
.ls3_c00042{letter-spacing:4.375810px;}
.ls5_c00042{letter-spacing:4.563900px;}
.lsa_c00042{letter-spacing:49.896198px;}
.lse_c00042{letter-spacing:52.747398px;}
.ls7_c00042{letter-spacing:55.598598px;}
.ls0_c00042{letter-spacing:464.329800px;}
.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;}
}
.ws2_c00042{word-spacing:-19.602000px;}
.ws4_c00042{word-spacing:0.000000px;}
.ws0_c00042{word-spacing:0.863676px;}
.ws3_c00042{word-spacing:5.410152px;}
.ws1_c00042{word-spacing:27.787399px;}
._1_c00042{width:2.823480px;}
._7_c00042{width:6.272640px;}
._2_c00042{width:8.702100px;}
._5_c00042{width:10.585080px;}
._3_c00042{width:13.172148px;}
._0_c00042{width:23.875632px;}
._4_c00042{width:43.922736px;}
._6_c00042{width:130.769386px;}
.fc0_c00042{color:transparent;}
.fs12_c00042{font-size:3.960000px;}
.fs11_c00042{font-size:11.484198px;}
.fs15_c00042{font-size:22.176000px;}
.fsf_c00042{font-size:22.572000px;}
.fs8_c00042{font-size:23.166000px;}
.fs5_c00042{font-size:27.720000px;}
.fs9_c00042{font-size:36.234000px;}
.fs0_c00042{font-size:39.204000px;}
.fsb_c00042{font-size:39.600000px;}
.fs7_c00042{font-size:49.896198px;}
.fse_c00042{font-size:52.747398px;}
.fs4_c00042{font-size:55.598598px;}
.fs14_c00042{font-size:56.628000px;}
.fsc_c00042{font-size:66.330000px;}
.fs10_c00042{font-size:66.528000px;}
.fs6_c00042{font-size:70.884000px;}
.fs13_c00042{font-size:74.844000px;}
.fs2_c00042{font-size:78.408000px;}
.fsd_c00042{font-size:78.804000px;}
.fsa_c00042{font-size:79.200000px;}
.fs1_c00042{font-size:87.516198px;}
.fs3_c00042{font-size:91.278000px;}
.y0_c00042{bottom:0.000000px;}
.y1_c00042{bottom:76.500000px;}
.y25_c00042{bottom:86.160735px;}
.y24_c00042{bottom:117.523935px;}
.y23_c00042{bottom:139.259385px;}
.y22_c00042{bottom:169.201935px;}
.y21_c00042{bottom:198.070335px;}
.y20_c00042{bottom:202.698585px;}
.y1f_c00042{bottom:223.374735px;}
.y1e_c00042{bottom:227.290185px;}
.y1d_c00042{bottom:235.492335px;}
.y1c_c00042{bottom:255.089385px;}
.y1b_c00042{bottom:268.281135px;}
.y2_c00042{bottom:279.680985px;}
.y1a_c00042{bottom:292.872735px;}
.y19_c00042{bottom:300.713535px;}
.y18_c00042{bottom:334.215135px;}
.y17_c00042{bottom:359.519535px;}
.y16_c00042{bottom:366.642585px;}
.y15_c00042{bottom:431.150985px;}
.y13_c00042{bottom:462.870585px;}
.y14_c00042{bottom:468.216585px;}
.y12_c00042{bottom:495.307935px;}
.y11_c00042{bottom:527.378985px;}
.y10_c00042{bottom:542.352735px;}
.yf_c00042{bottom:560.529135px;}
.ye_c00042{bottom:592.961535px;}
.yd_c00042{bottom:625.388985px;}
.yc_c00042{bottom:657.469935px;}
.yb_c00042{bottom:689.545935px;}
.ya_c00042{bottom:721.973385px;}
.y9_c00042{bottom:756.549135px;}
.y8_c00042{bottom:824.260185px;}
.y7_c00042{bottom:857.410335px;}
.y6_c00042{bottom:869.879385px;}
.y5_c00042{bottom:890.550585px;}
.y4_c00042{bottom:923.339385px;}
.y3_c00042{bottom:1071.245385px;}
.h11_c00042{height:11.977660px;}
.h14_c00042{height:23.128875px;}
.hf_c00042{height:23.541891px;}
.ha_c00042{height:24.161414px;}
.h7_c00042{height:28.911094px;}
.h9_c00042{height:33.230868px;}
.he_c00042{height:35.129767px;}
.h6_c00042{height:37.028666px;}
.hb_c00042{height:37.790930px;}
.h2_c00042{height:38.476582px;}
.h13_c00042{height:59.061234px;}
.h10_c00042{height:69.256688px;}
.h8_c00042{height:69.568770px;}
.h12_c00042{height:73.455293px;}
.h4_c00042{height:76.953164px;}
.hd_c00042{height:77.341816px;}
.hc_c00042{height:82.448438px;}
.h3_c00042{height:85.892362px;}
.h5_c00042{height:89.584365px;}
.h1_c00042{height:1110.000000px;}
.h0_c00042{height:1263.000000px;}
.w1_c00042{width:733.500000px;}
.w0_c00042{width:892.500000px;}
.x0_c00042{left:0.000000px;}
.x2_c00042{left:22.665585px;}
.x2c_c00042{left:54.701985px;}
.x36_c00042{left:55.731585px;}
.x4_c00042{left:58.058085px;}
.xe_c00042{left:59.132235px;}
.x4d_c00042{left:76.071135px;}
.x1_c00042{left:79.500000px;}
.x2d_c00042{left:87.094785px;}
.x21_c00042{left:99.445035px;}
.xf_c00042{left:101.350785px;}
.x5d_c00042{left:107.553135px;}
.x23_c00042{left:108.602535px;}
.x2e_c00042{left:120.220185px;}
.x42_c00042{left:130.585485px;}
.x46_c00042{left:131.654685px;}
.x24_c00042{left:140.752785px;}
.x10_c00042{left:143.539635px;}
.x5_c00042{left:145.187985px;}
.x37_c00042{left:153.013935px;}
.x47_c00042{left:164.087085px;}
.x1b_c00042{left:167.136285px;}
.x3f_c00042{left:174.932535px;}
.x2f_c00042{left:186.911535px;}
.x6_c00042{left:189.832035px;}
.x60_c00042{left:197.583735px;}
.x48_c00042{left:208.968735px;}
.x4e_c00042{left:220.205235px;}
.x1c_c00042{left:223.219785px;}
.x30_c00042{left:230.357685px;}
.x69_c00042{left:231.426885px;}
.x11_c00042{left:235.010685px;}
.x43_c00042{left:241.514985px;}
.x6c_c00042{left:243.564285px;}
.x5c_c00042{left:251.944635px;}
.x25_c00042{left:253.533585px;}
.x31_c00042{left:263.903835px;}
.x70_c00042{left:264.968085px;}
.x12_c00042{left:267.735135px;}
.x44_c00042{left:275.308635px;}
.x6b_c00042{left:277.491585px;}
.x26_c00042{left:285.515535px;}
.x61_c00042{left:286.673835px;}
.x1d_c00042{left:288.817185px;}
.x4f_c00042{left:296.563935px;}
.x7_c00042{left:300.251685px;}
.x1a_c00042{left:306.053085px;}
.x49_c00042{left:308.117235px;}
.x32_c00042{left:309.136935px;}
.x38_c00042{left:319.497285px;}
.x56_c00042{left:330.545685px;}
.x8_c00042{left:333.070185px;}
.x50_c00042{left:340.683285px;}
.x71_c00042{left:342.084135px;}
.x39_c00042{left:353.320635px;}
.x6a_c00042{left:355.795635px;}
.x40_c00042{left:363.923535px;}
.x27_c00042{left:374.615535px;}
.x6f_c00042{left:375.793635px;}
.x13_c00042{left:377.768685px;}
.x3a_c00042{left:386.119335px;}
.x58_c00042{left:387.153885px;}
.x33_c00042{left:397.152885px;}
.x59_c00042{left:399.395235px;}
.x51_c00042{left:407.884485px;}
.x72_c00042{left:409.300185px;}
.x14_c00042{left:410.953485px;}
.x9_c00042{left:413.869035px;}
.x28_c00042{left:419.289285px;}
.x34_c00042{left:429.793185px;}
.x64_c00042{left:430.872285px;}
.x1e_c00042{left:433.198785px;}
.x4a_c00042{left:441.697935px;}
.x15_c00042{left:443.692785px;}
.x3b_c00042{left:451.998885px;}
.x65_c00042{left:453.340335px;}
.x5a_c00042{left:462.997785px;}
.x29_c00042{left:464.161035px;}
.x4b_c00042{left:474.664935px;}
.xa_c00042{left:478.105185px;}
.x3c_c00042{left:486.277635px;}
.x2a_c00042{left:496.964685px;}
.x5e_c00042{left:497.979435px;}
.xb_c00042{left:500.187135px;}
.x66_c00042{left:507.483435px;}
.x16_c00042{left:510.022785px;}
.x5b_c00042{left:519.784185px;}
.x57_c00042{left:529.387185px;}
.x17_c00042{left:530.693985px;}
.x3d_c00042{left:540.277185px;}
.x22_c00042{left:542.336385px;}
.xc_c00042{left:544.301535px;}
.x18_c00042{left:554.320335px;}
.x41_c00042{left:562.878885px;}
.x54_c00042{left:563.903535px;}
.x73_c00042{left:566.408235px;}
.x35_c00042{left:574.333185px;}
.xd_c00042{left:576.417135px;}
.x62_c00042{left:585.544935px;}
.x3e_c00042{left:595.672635px;}
.x55_c00042{left:596.865585px;}
.x4c_c00042{left:607.324935px;}
.x52_c00042{left:618.873285px;}
.x3_c00042{left:629.149485px;}
.x45_c00042{left:631.579935px;}
.x2b_c00042{left:639.683085px;}
.x67_c00042{left:640.821585px;}
.x5f_c00042{left:650.909685px;}
.x1f_c00042{left:653.255985px;}
.x6d_c00042{left:663.794535px;}
.x19_c00042{left:665.121135px;}
.x68_c00042{left:668.838585px;}
.x53_c00042{left:672.026385px;}
.x63_c00042{left:673.095585px;}
.x20_c00042{left:676.580385px;}
.x6e_c00042{left:685.133985px;}
@media print{
.v0_c00042{vertical-align:0.000000pt;}
.ls9_c00042{letter-spacing:-2.439360pt;}
.ls8_c00042{letter-spacing:-1.686643pt;}
.lsd_c00042{letter-spacing:-0.153331pt;}
.ls2_c00042{letter-spacing:0.000000pt;}
.ls1_c00042{letter-spacing:1.038470pt;}
.ls6_c00042{letter-spacing:1.498464pt;}
.lsb_c00042{letter-spacing:1.610400pt;}
.lsc_c00042{letter-spacing:3.206016pt;}
.ls4_c00042{letter-spacing:3.484800pt;}
.ls3_c00042{letter-spacing:3.889609pt;}
.ls5_c00042{letter-spacing:4.056800pt;}
.lsa_c00042{letter-spacing:44.352176pt;}
.lse_c00042{letter-spacing:46.886576pt;}
.ls7_c00042{letter-spacing:49.420976pt;}
.ls0_c00042{letter-spacing:412.737600pt;}
.ws2_c00042{word-spacing:-17.424000pt;}
.ws4_c00042{word-spacing:0.000000pt;}
.ws0_c00042{word-spacing:0.767712pt;}
.ws3_c00042{word-spacing:4.809024pt;}
.ws1_c00042{word-spacing:24.699910pt;}
._1_c00042{width:2.509760pt;}
._7_c00042{width:5.575680pt;}
._2_c00042{width:7.735200pt;}
._5_c00042{width:9.408960pt;}
._3_c00042{width:11.708576pt;}
._0_c00042{width:21.222784pt;}
._4_c00042{width:39.042432pt;}
._6_c00042{width:116.239454pt;}
.fs12_c00042{font-size:3.520000pt;}
.fs11_c00042{font-size:10.208176pt;}
.fs15_c00042{font-size:19.712000pt;}
.fsf_c00042{font-size:20.064000pt;}
.fs8_c00042{font-size:20.592000pt;}
.fs5_c00042{font-size:24.640000pt;}
.fs9_c00042{font-size:32.208000pt;}
.fs0_c00042{font-size:34.848000pt;}
.fsb_c00042{font-size:35.200000pt;}
.fs7_c00042{font-size:44.352176pt;}
.fse_c00042{font-size:46.886576pt;}
.fs4_c00042{font-size:49.420976pt;}
.fs14_c00042{font-size:50.336000pt;}
.fsc_c00042{font-size:58.960000pt;}
.fs10_c00042{font-size:59.136000pt;}
.fs6_c00042{font-size:63.008000pt;}
.fs13_c00042{font-size:66.528000pt;}
.fs2_c00042{font-size:69.696000pt;}
.fsd_c00042{font-size:70.048000pt;}
.fsa_c00042{font-size:70.400000pt;}
.fs1_c00042{font-size:77.792176pt;}
.fs3_c00042{font-size:81.136000pt;}
.y0_c00042{bottom:0.000000pt;}
.y1_c00042{bottom:68.000000pt;}
.y25_c00042{bottom:76.587320pt;}
.y24_c00042{bottom:104.465720pt;}
.y23_c00042{bottom:123.786120pt;}
.y22_c00042{bottom:150.401720pt;}
.y21_c00042{bottom:176.062520pt;}
.y20_c00042{bottom:180.176520pt;}
.y1f_c00042{bottom:198.555320pt;}
.y1e_c00042{bottom:202.035720pt;}
.y1d_c00042{bottom:209.326520pt;}
.y1c_c00042{bottom:226.746120pt;}
.y1b_c00042{bottom:238.472120pt;}
.y2_c00042{bottom:248.605320pt;}
.y1a_c00042{bottom:260.331320pt;}
.y19_c00042{bottom:267.300920pt;}
.y18_c00042{bottom:297.080120pt;}
.y17_c00042{bottom:319.572920pt;}
.y16_c00042{bottom:325.904520pt;}
.y15_c00042{bottom:383.245320pt;}
.y13_c00042{bottom:411.440520pt;}
.y14_c00042{bottom:416.192520pt;}
.y12_c00042{bottom:440.273720pt;}
.y11_c00042{bottom:468.781320pt;}
.y10_c00042{bottom:482.091320pt;}
.yf_c00042{bottom:498.248120pt;}
.ye_c00042{bottom:527.076920pt;}
.yd_c00042{bottom:555.901320pt;}
.yc_c00042{bottom:584.417720pt;}
.yb_c00042{bottom:612.929720pt;}
.ya_c00042{bottom:641.754120pt;}
.y9_c00042{bottom:672.488120pt;}
.y8_c00042{bottom:732.675720pt;}
.y7_c00042{bottom:762.142520pt;}
.y6_c00042{bottom:773.226120pt;}
.y5_c00042{bottom:791.600520pt;}
.y4_c00042{bottom:820.746120pt;}
.y3_c00042{bottom:952.218120pt;}
.h11_c00042{height:10.646809pt;}
.h14_c00042{height:20.559000pt;}
.hf_c00042{height:20.926125pt;}
.ha_c00042{height:21.476813pt;}
.h7_c00042{height:25.698750pt;}
.h9_c00042{height:29.538549pt;}
.he_c00042{height:31.226460pt;}
.h6_c00042{height:32.914370pt;}
.hb_c00042{height:33.591938pt;}
.h2_c00042{height:34.201406pt;}
.h13_c00042{height:52.498875pt;}
.h10_c00042{height:61.561500pt;}
.h8_c00042{height:61.838906pt;}
.h12_c00042{height:65.293594pt;}
.h4_c00042{height:68.402813pt;}
.hd_c00042{height:68.748281pt;}
.hc_c00042{height:73.287500pt;}
.h3_c00042{height:76.348766pt;}
.h5_c00042{height:79.630547pt;}
.h1_c00042{height:986.666667pt;}
.h0_c00042{height:1122.666667pt;}
.w1_c00042{width:652.000000pt;}
.w0_c00042{width:793.333333pt;}
.x0_c00042{left:0.000000pt;}
.x2_c00042{left:20.147187pt;}
.x2c_c00042{left:48.623987pt;}
.x36_c00042{left:49.539187pt;}
.x4_c00042{left:51.607187pt;}
.xe_c00042{left:52.561987pt;}
.x4d_c00042{left:67.618787pt;}
.x1_c00042{left:70.666667pt;}
.x2d_c00042{left:77.417587pt;}
.x21_c00042{left:88.395587pt;}
.xf_c00042{left:90.089587pt;}
.x5d_c00042{left:95.602787pt;}
.x23_c00042{left:96.535587pt;}
.x2e_c00042{left:106.862387pt;}
.x42_c00042{left:116.075987pt;}
.x46_c00042{left:117.026387pt;}
.x24_c00042{left:125.113587pt;}
.x10_c00042{left:127.590787pt;}
.x5_c00042{left:129.055987pt;}
.x37_c00042{left:136.012387pt;}
.x47_c00042{left:145.855187pt;}
.x1b_c00042{left:148.565587pt;}
.x3f_c00042{left:155.495587pt;}
.x2f_c00042{left:166.143587pt;}
.x6_c00042{left:168.739587pt;}
.x60_c00042{left:175.629987pt;}
.x48_c00042{left:185.749987pt;}
.x4e_c00042{left:195.737987pt;}
.x1c_c00042{left:198.417587pt;}
.x30_c00042{left:204.762387pt;}
.x69_c00042{left:205.712787pt;}
.x11_c00042{left:208.898387pt;}
.x43_c00042{left:214.679987pt;}
.x6c_c00042{left:216.501587pt;}
.x5c_c00042{left:223.950787pt;}
.x25_c00042{left:225.363187pt;}
.x31_c00042{left:234.581187pt;}
.x70_c00042{left:235.527187pt;}
.x12_c00042{left:237.986787pt;}
.x44_c00042{left:244.718787pt;}
.x6b_c00042{left:246.659187pt;}
.x26_c00042{left:253.791587pt;}
.x61_c00042{left:254.821187pt;}
.x1d_c00042{left:256.726387pt;}
.x4f_c00042{left:263.612387pt;}
.x7_c00042{left:266.890387pt;}
.x1a_c00042{left:272.047187pt;}
.x49_c00042{left:273.881987pt;}
.x32_c00042{left:274.788387pt;}
.x38_c00042{left:283.997587pt;}
.x56_c00042{left:293.818387pt;}
.x8_c00042{left:296.062387pt;}
.x50_c00042{left:302.829587pt;}
.x71_c00042{left:304.074787pt;}
.x39_c00042{left:314.062787pt;}
.x6a_c00042{left:316.262787pt;}
.x40_c00042{left:323.487587pt;}
.x27_c00042{left:332.991587pt;}
.x6f_c00042{left:334.038787pt;}
.x13_c00042{left:335.794387pt;}
.x3a_c00042{left:343.217187pt;}
.x58_c00042{left:344.136787pt;}
.x33_c00042{left:353.024787pt;}
.x59_c00042{left:355.017987pt;}
.x51_c00042{left:362.563987pt;}
.x72_c00042{left:363.822387pt;}
.x14_c00042{left:365.291987pt;}
.x9_c00042{left:367.883587pt;}
.x28_c00042{left:372.701587pt;}
.x34_c00042{left:382.038387pt;}
.x64_c00042{left:382.997587pt;}
.x1e_c00042{left:385.065587pt;}
.x4a_c00042{left:392.620387pt;}
.x15_c00042{left:394.393587pt;}
.x3b_c00042{left:401.776787pt;}
.x65_c00042{left:402.969187pt;}
.x5a_c00042{left:411.553587pt;}
.x29_c00042{left:412.587587pt;}
.x4b_c00042{left:421.924387pt;}
.xa_c00042{left:424.982387pt;}
.x3c_c00042{left:432.246787pt;}
.x2a_c00042{left:441.746387pt;}
.x5e_c00042{left:442.648387pt;}
.xb_c00042{left:444.610787pt;}
.x66_c00042{left:451.096387pt;}
.x16_c00042{left:453.353587pt;}
.x5b_c00042{left:462.030387pt;}
.x57_c00042{left:470.566387pt;}
.x17_c00042{left:471.727987pt;}
.x3d_c00042{left:480.246387pt;}
.x22_c00042{left:482.076787pt;}
.xc_c00042{left:483.823587pt;}
.x18_c00042{left:492.729187pt;}
.x41_c00042{left:500.336787pt;}
.x54_c00042{left:501.247587pt;}
.x73_c00042{left:503.473987pt;}
.x35_c00042{left:510.518387pt;}
.xd_c00042{left:512.370787pt;}
.x62_c00042{left:520.484387pt;}
.x3e_c00042{left:529.486787pt;}
.x55_c00042{left:530.547187pt;}
.x4c_c00042{left:539.844387pt;}
.x52_c00042{left:550.109587pt;}
.x3_c00042{left:559.243987pt;}
.x45_c00042{left:561.404387pt;}
.x2b_c00042{left:568.607187pt;}
.x67_c00042{left:569.619187pt;}
.x5f_c00042{left:578.586387pt;}
.x1f_c00042{left:580.671987pt;}
.x6d_c00042{left:590.039587pt;}
.x19_c00042{left:591.218787pt;}
.x68_c00042{left:594.523187pt;}
.x53_c00042{left:597.356787pt;}
.x63_c00042{left:598.307187pt;}
.x20_c00042{left:601.404787pt;}
.x6e_c00042{left:609.007987pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d74c88d759d2a81363a0b980.woff2')format("woff");}.ff1_c00043{font-family:ff1_c00043;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00043;src:url('chunks/assets/font_eead1c2e14b92fa890a2e9bd.woff2')format("woff");}.ff2_c00043{font-family:ff2_c00043;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00043;src:url('chunks/assets/font_b0246005951e626cdeb2bf49.woff2')format("woff");}.ff3_c00043{font-family:ff3_c00043;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00043;src:url('chunks/assets/font_627849a5f7b365dd4ecdf52e.woff2')format("woff");}.ff4_c00043{font-family:ff4_c00043;line-height:0.666000;font-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_c00043{transform:matrix(0.150656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150656,0.000000,0.000000,0.250000,0,0);}
.m40_c00043{transform:matrix(0.202702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202702,0.000000,0.000000,0.250000,0,0);}
.m53_c00043{transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);}
.m72_c00043{transform:matrix(0.216830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216830,0.000000,0.000000,0.250000,0,0);}
.m94_c00043{transform:matrix(0.218171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218171,0.000000,0.000000,0.250000,0,0);}
.m62_c00043{transform:matrix(0.218254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218254,0.000000,0.000000,0.250000,0,0);}
.m57_c00043{transform:matrix(0.244940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244940,0.000000,0.000000,0.250000,0,0);}
.m3_c00043{transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);}
.m0_c00043{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m78_c00043{transform:matrix(0.251561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251561,0.000000,0.000000,0.250000,0,0);}
.m9_c00043{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.ma1_c00043{transform:matrix(0.252090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252090,0.000000,0.000000,0.250000,0,0);}
.ma0_c00043{transform:matrix(0.254360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254360,0.000000,0.000000,0.250000,0,0);}
.m11_c00043{transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);}
.m6d_c00043{transform:matrix(0.258853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258853,0.000000,0.000000,0.250000,0,0);}
.m42_c00043{transform:matrix(0.259646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259646,0.000000,0.000000,0.250000,0,0);}
.m8c_c00043{transform:matrix(0.260408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260408,0.000000,0.000000,0.250000,0,0);}
.m1c_c00043{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m66_c00043{transform:matrix(0.263191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263191,0.000000,0.000000,0.250000,0,0);}
.m2a_c00043{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m1_c00043{transform:matrix(0.263347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263347,0.000000,0.000000,0.250000,0,0);}
.m68_c00043{transform:matrix(0.263766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263766,0.000000,0.000000,0.250000,0,0);}
.m6a_c00043{transform:matrix(0.264128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264128,0.000000,0.000000,0.250000,0,0);}
.md_c00043{transform:matrix(0.264570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264570,0.000000,0.000000,0.250000,0,0);}
.m8f_c00043{transform:matrix(0.264878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264878,0.000000,0.000000,0.250000,0,0);}
.m3f_c00043{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m88_c00043{transform:matrix(0.267213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267213,0.000000,0.000000,0.250000,0,0);}
.m6_c00043{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m89_c00043{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.m4d_c00043{transform:matrix(0.268694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268694,0.000000,0.000000,0.250000,0,0);}
.m12_c00043{transform:matrix(0.269269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269269,0.000000,0.000000,0.250000,0,0);}
.m99_c00043{transform:matrix(0.269301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269301,0.000000,0.000000,0.250000,0,0);}
.m2d_c00043{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m74_c00043{transform:matrix(0.271964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271964,0.000000,0.000000,0.250000,0,0);}
.m92_c00043{transform:matrix(0.271972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271972,0.000000,0.000000,0.250000,0,0);}
.m5d_c00043{transform:matrix(0.272458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272458,0.000000,0.000000,0.250000,0,0);}
.m30_c00043{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m9f_c00043{transform:matrix(0.273582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273582,0.000000,0.000000,0.250000,0,0);}
.m15_c00043{transform:matrix(0.273782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273782,0.000000,0.000000,0.250000,0,0);}
.m8d_c00043{transform:matrix(0.274211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274211,0.000000,0.000000,0.250000,0,0);}
.m84_c00043{transform:matrix(0.274614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274614,0.000000,0.000000,0.250000,0,0);}
.m86_c00043{transform:matrix(0.276588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276588,0.000000,0.000000,0.250000,0,0);}
.m7c_c00043{transform:matrix(0.276707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276707,0.000000,0.000000,0.250000,0,0);}
.m28_c00043{transform:matrix(0.277595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277595,0.000000,0.000000,0.250000,0,0);}
.m79_c00043{transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);}
.m83_c00043{transform:matrix(0.279768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279768,0.000000,0.000000,0.250000,0,0);}
.m18_c00043{transform:matrix(0.280847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280847,0.000000,0.000000,0.250000,0,0);}
.m98_c00043{transform:matrix(0.282098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282098,0.000000,0.000000,0.250000,0,0);}
.m75_c00043{transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);}
.m5b_c00043{transform:matrix(0.285964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285964,0.000000,0.000000,0.250000,0,0);}
.m37_c00043{transform:matrix(0.286086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286086,0.000000,0.000000,0.250000,0,0);}
.m3a_c00043{transform:matrix(0.286186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286186,0.000000,0.000000,0.250000,0,0);}
.mc_c00043{transform:matrix(0.286439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286439,0.000000,0.000000,0.250000,0,0);}
.m1d_c00043{transform:matrix(0.287201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287201,0.000000,0.000000,0.250000,0,0);}
.m51_c00043{transform:matrix(0.287624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287624,0.000000,0.000000,0.250000,0,0);}
.m55_c00043{transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);}
.m54_c00043{transform:matrix(0.289026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289026,0.000000,0.000000,0.250000,0,0);}
.m81_c00043{transform:matrix(0.290198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290198,0.000000,0.000000,0.250000,0,0);}
.m73_c00043{transform:matrix(0.290429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290429,0.000000,0.000000,0.250000,0,0);}
.m9e_c00043{transform:matrix(0.290434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290434,0.000000,0.000000,0.250000,0,0);}
.m10_c00043{transform:matrix(0.290612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290612,0.000000,0.000000,0.250000,0,0);}
.m6b_c00043{transform:matrix(0.290975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290975,0.000000,0.000000,0.250000,0,0);}
.m32_c00043{transform:matrix(0.291008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291008,0.000000,0.000000,0.250000,0,0);}
.m63_c00043{transform:matrix(0.291408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291408,0.000000,0.000000,0.250000,0,0);}
.m49_c00043{transform:matrix(0.292127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292127,0.000000,0.000000,0.250000,0,0);}
.m29_c00043{transform:matrix(0.292499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292499,0.000000,0.000000,0.250000,0,0);}
.m8e_c00043{transform:matrix(0.293496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293496,0.000000,0.000000,0.250000,0,0);}
.m9c_c00043{transform:matrix(0.293761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293761,0.000000,0.000000,0.250000,0,0);}
.m3c_c00043{transform:matrix(0.293847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293847,0.000000,0.000000,0.250000,0,0);}
.m6f_c00043{transform:matrix(0.296237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296237,0.000000,0.000000,0.250000,0,0);}
.m64_c00043{transform:matrix(0.296438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296438,0.000000,0.000000,0.250000,0,0);}
.m59_c00043{transform:matrix(0.296811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296811,0.000000,0.000000,0.250000,0,0);}
.me_c00043{transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);}
.m45_c00043{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m97_c00043{transform:matrix(0.297273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297273,0.000000,0.000000,0.250000,0,0);}
.m61_c00043{transform:matrix(0.297493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297493,0.000000,0.000000,0.250000,0,0);}
.m3e_c00043{transform:matrix(0.297525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297525,0.000000,0.000000,0.250000,0,0);}
.m4b_c00043{transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);}
.m23_c00043{transform:matrix(0.298234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298234,0.000000,0.000000,0.250000,0,0);}
.m8_c00043{transform:matrix(0.298277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298277,0.000000,0.000000,0.250000,0,0);}
.mf_c00043{transform:matrix(0.299184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299184,0.000000,0.000000,0.250000,0,0);}
.m2_c00043{transform:matrix(0.299220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299220,0.000000,0.000000,0.250000,0,0);}
.m7_c00043{transform:matrix(0.299285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299285,0.000000,0.000000,0.250000,0,0);}
.m44_c00043{transform:matrix(0.300220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300220,0.000000,0.000000,0.250000,0,0);}
.m5c_c00043{transform:matrix(0.300485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300485,0.000000,0.000000,0.250000,0,0);}
.m3d_c00043{transform:matrix(0.301847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301847,0.000000,0.000000,0.250000,0,0);}
.m6c_c00043{transform:matrix(0.302060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302060,0.000000,0.000000,0.250000,0,0);}
.m6e_c00043{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m48_c00043{transform:matrix(0.302658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302658,0.000000,0.000000,0.250000,0,0);}
.m34_c00043{transform:matrix(0.302968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302968,0.000000,0.000000,0.250000,0,0);}
.m7a_c00043{transform:matrix(0.303060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303060,0.000000,0.000000,0.250000,0,0);}
.m4a_c00043{transform:matrix(0.304285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304285,0.000000,0.000000,0.250000,0,0);}
.m7f_c00043{transform:matrix(0.304545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304545,0.000000,0.000000,0.250000,0,0);}
.m22_c00043{transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);}
.m70_c00043{transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);}
.m16_c00043{transform:matrix(0.305371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305371,0.000000,0.000000,0.250000,0,0);}
.m82_c00043{transform:matrix(0.306246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306246,0.000000,0.000000,0.250000,0,0);}
.m20_c00043{transform:matrix(0.306396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306396,0.000000,0.000000,0.250000,0,0);}
.m26_c00043{transform:matrix(0.307057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307057,0.000000,0.000000,0.250000,0,0);}
.m47_c00043{transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);}
.m39_c00043{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m46_c00043{transform:matrix(0.308843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308843,0.000000,0.000000,0.250000,0,0);}
.m38_c00043{transform:matrix(0.309062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309062,0.000000,0.000000,0.250000,0,0);}
.m36_c00043{transform:matrix(0.309240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309240,0.000000,0.000000,0.250000,0,0);}
.m3b_c00043{transform:matrix(0.311265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311265,0.000000,0.000000,0.250000,0,0);}
.m14_c00043{transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);}
.m65_c00043{transform:matrix(0.312047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312047,0.000000,0.000000,0.250000,0,0);}
.m17_c00043{transform:matrix(0.312128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312128,0.000000,0.000000,0.250000,0,0);}
.m24_c00043{transform:matrix(0.312169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312169,0.000000,0.000000,0.250000,0,0);}
.m5a_c00043{transform:matrix(0.313301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313301,0.000000,0.000000,0.250000,0,0);}
.m13_c00043{transform:matrix(0.313425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313425,0.000000,0.000000,0.250000,0,0);}
.m27_c00043{transform:matrix(0.314505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314505,0.000000,0.000000,0.250000,0,0);}
.m1e_c00043{transform:matrix(0.314941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314941,0.000000,0.000000,0.250000,0,0);}
.m91_c00043{transform:matrix(0.315418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315418,0.000000,0.000000,0.250000,0,0);}
.m87_c00043{transform:matrix(0.315917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315917,0.000000,0.000000,0.250000,0,0);}
.m9a_c00043{transform:matrix(0.316077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316077,0.000000,0.000000,0.250000,0,0);}
.m2c_c00043{transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);}
.m67_c00043{transform:matrix(0.317247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317247,0.000000,0.000000,0.250000,0,0);}
.m4e_c00043{transform:matrix(0.317804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317804,0.000000,0.000000,0.250000,0,0);}
.m77_c00043{transform:matrix(0.317996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317996,0.000000,0.000000,0.250000,0,0);}
.m5f_c00043{transform:matrix(0.319694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319694,0.000000,0.000000,0.250000,0,0);}
.m2b_c00043{transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);}
.m95_c00043{transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);}
.m1b_c00043{transform:matrix(0.322157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322157,0.000000,0.000000,0.250000,0,0);}
.m90_c00043{transform:matrix(0.323033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323033,0.000000,0.000000,0.250000,0,0);}
.m4c_c00043{transform:matrix(0.323098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323098,0.000000,0.000000,0.250000,0,0);}
.m69_c00043{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.m52_c00043{transform:matrix(0.324371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324371,0.000000,0.000000,0.250000,0,0);}
.m96_c00043{transform:matrix(0.325086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325086,0.000000,0.000000,0.250000,0,0);}
.m60_c00043{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m9b_c00043{transform:matrix(0.327238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327238,0.000000,0.000000,0.250000,0,0);}
.ma3_c00043{transform:matrix(0.327359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327359,0.000000,0.000000,0.250000,0,0);}
.m5e_c00043{transform:matrix(0.327360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327360,0.000000,0.000000,0.250000,0,0);}
.m1f_c00043{transform:matrix(0.328062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328062,0.000000,0.000000,0.250000,0,0);}
.m56_c00043{transform:matrix(0.328833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328833,0.000000,0.000000,0.250000,0,0);}
.m9d_c00043{transform:matrix(0.329576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329576,0.000000,0.000000,0.250000,0,0);}
.ma_c00043{transform:matrix(0.329646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329646,0.000000,0.000000,0.250000,0,0);}
.m43_c00043{transform:matrix(0.331251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331251,0.000000,0.000000,0.250000,0,0);}
.m1a_c00043{transform:matrix(0.331303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331303,0.000000,0.000000,0.250000,0,0);}
.m19_c00043{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m58_c00043{transform:matrix(0.335078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335078,0.000000,0.000000,0.250000,0,0);}
.m7b_c00043{transform:matrix(0.335394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335394,0.000000,0.000000,0.250000,0,0);}
.m4f_c00043{transform:matrix(0.337181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337181,0.000000,0.000000,0.250000,0,0);}
.m5_c00043{transform:matrix(0.337295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337295,0.000000,0.000000,0.250000,0,0);}
.m71_c00043{transform:matrix(0.337410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337410,0.000000,0.000000,0.250000,0,0);}
.m33_c00043{transform:matrix(0.338462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338462,0.000000,0.000000,0.250000,0,0);}
.m2e_c00043{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m76_c00043{transform:matrix(0.339340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339340,0.000000,0.000000,0.250000,0,0);}
.m7e_c00043{transform:matrix(0.340669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340669,0.000000,0.000000,0.250000,0,0);}
.m8a_c00043{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.mb_c00043{transform:matrix(0.345150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345150,0.000000,0.000000,0.250000,0,0);}
.m7d_c00043{transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);}
.m50_c00043{transform:matrix(0.348116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348116,0.000000,0.000000,0.250000,0,0);}
.m35_c00043{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.ma2_c00043{transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);}
.m2f_c00043{transform:matrix(0.352727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352727,0.000000,0.000000,0.250000,0,0);}
.m21_c00043{transform:matrix(0.352906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352906,0.000000,0.000000,0.250000,0,0);}
.m80_c00043{transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);}
.m4_c00043{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m41_c00043{transform:matrix(0.355848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355848,0.000000,0.000000,0.250000,0,0);}
.m31_c00043{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m8b_c00043{transform:matrix(0.362785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362785,0.000000,0.000000,0.250000,0,0);}
.m93_c00043{transform:matrix(0.372387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372387,0.000000,0.000000,0.250000,0,0);}
.m25_c00043{transform:matrix(0.383803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383803,0.000000,0.000000,0.250000,0,0);}
.v0_c00043{vertical-align:0.000000px;}
.ls6_c00043{letter-spacing:-2.744280px;}
.ls11_c00043{letter-spacing:-2.493374px;}
.lse_c00043{letter-spacing:-2.375762px;}
.ls8_c00043{letter-spacing:-1.897474px;}
.lsa_c00043{letter-spacing:-1.646568px;}
.lsc_c00043{letter-spacing:-1.427026px;}
.ls7_c00043{letter-spacing:-1.419185px;}
.ls3_c00043{letter-spacing:0.000000px;}
.ls12_c00043{letter-spacing:0.079655px;}
.ls2_c00043{letter-spacing:0.635105px;}
.ls9_c00043{letter-spacing:0.933055px;}
.lsb_c00043{letter-spacing:1.246687px;}
.ls13_c00043{letter-spacing:2.509056px;}
.ls1_c00043{letter-spacing:2.752121px;}
.ls10_c00043{letter-spacing:3.544200px;}
.ls5_c00043{letter-spacing:3.920400px;}
.ls4_c00043{letter-spacing:4.197610px;}
.lsf_c00043{letter-spacing:49.896198px;}
.lsd_c00043{letter-spacing:52.747398px;}
.ls0_c00043{letter-spacing:141.772686px;}
.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;}
}
.ws1_c00043{word-spacing:-20.237105px;}
.ws0_c00043{word-spacing:-19.602000px;}
.ws2_c00043{word-spacing:0.000000px;}
._1_c00043{margin-left:-16.936128px;}
._5_c00043{margin-left:-7.605576px;}
._4_c00043{width:7.919208px;}
._2_c00043{width:19.787566px;}
._0_c00043{width:27.521208px;}
._3_c00043{width:31.127976px;}
.fc0_c00043{color:transparent;}
.fs2_c00043{font-size:22.176000px;}
.fsd_c00043{font-size:25.146000px;}
.fsc_c00043{font-size:27.720000px;}
.fsb_c00043{font-size:29.502000px;}
.fs8_c00043{font-size:38.808000px;}
.fs0_c00043{font-size:39.204000px;}
.fs3_c00043{font-size:39.600000px;}
.fs7_c00043{font-size:49.896198px;}
.fs6_c00043{font-size:52.747398px;}
.fs5_c00043{font-size:66.330000px;}
.fs9_c00043{font-size:70.884000px;}
.fsf_c00043{font-size:72.864000px;}
.fs4_c00043{font-size:78.408000px;}
.fs1_c00043{font-size:83.952198px;}
.fsa_c00043{font-size:93.456198px;}
.fse_c00043{font-size:107.712198px;}
.y0_c00043{bottom:0.000000px;}
.y1_c00043{bottom:76.500000px;}
.y2_c00043{bottom:133.918335px;}
.y22_c00043{bottom:142.471935px;}
.y21_c00043{bottom:172.765935px;}
.y20_c00043{bottom:198.065385px;}
.y1f_c00043{bottom:209.118735px;}
.y1e_c00043{bottom:228.720735px;}
.y1d_c00043{bottom:242.971785px;}
.y1c_c00043{bottom:277.903935px;}
.y1b_c00043{bottom:307.485135px;}
.y1a_c00043{bottom:320.666985px;}
.y19_c00043{bottom:339.561135px;}
.y18_c00043{bottom:371.988585px;}
.y17_c00043{bottom:404.069535px;}
.y16_c00043{bottom:429.012585px;}
.y15_c00043{bottom:436.145535px;}
.y14_c00043{bottom:468.572985px;}
.y13_c00043{bottom:533.086335px;}
.y12_c00043{bottom:560.880585px;}
.y11_c00043{bottom:565.518735px;}
.y10_c00043{bottom:597.946185px;}
.yf_c00043{bottom:613.632735px;}
.ye_c00043{bottom:630.378585px;}
.yd_c00043{bottom:662.815935px;}
.yc_c00043{bottom:695.248335px;}
.yb_c00043{bottom:728.388585px;}
.ya_c00043{bottom:760.825935px;}
.y9_c00043{bottom:793.609785px;}
.y8_c00043{bottom:858.479535px;}
.y7_c00043{bottom:891.268335px;}
.y6_c00043{bottom:924.057135px;}
.y5_c00043{bottom:967.176585px;}
.y4_c00043{bottom:1061.978985px;}
.y3_c00043{bottom:1087.283385px;}
.h4_c00043{height:23.128875px;}
.he_c00043{height:26.226492px;}
.hd_c00043{height:28.911094px;}
.h9_c00043{height:33.230868px;}
.h8_c00043{height:35.129767px;}
.h2_c00043{height:38.476582px;}
.ha_c00043{height:40.475531px;}
.h5_c00043{height:41.301563px;}
.h7_c00043{height:69.180117px;}
.hb_c00043{height:73.929797px;}
.h6_c00043{height:76.953164px;}
.h3_c00043{height:84.608075px;}
.hc_c00043{height:94.186325px;}
.hf_c00043{height:105.713632px;}
.h1_c00043{height:1110.000000px;}
.h0_c00043{height:1263.000000px;}
.w1_c00043{width:733.500000px;}
.w0_c00043{width:892.500000px;}
.x0_c00043{left:0.000000px;}
.x31_c00043{left:65.364285px;}
.x5_c00043{left:66.379035px;}
.x62_c00043{left:68.012535px;}
.x4f_c00043{left:76.818585px;}
.x1_c00043{left:79.500000px;}
.x17_c00043{left:98.321385px;}
.x49_c00043{left:99.880635px;}
.x39_c00043{left:109.572735px;}
.x6_c00043{left:110.656785px;}
.x1e_c00043{left:120.066735px;}
.x59_c00043{left:121.076535px;}
.x3d_c00043{left:130.773585px;}
.x4a_c00043{left:131.897235px;}
.x63_c00043{left:133.327785px;}
.x10_c00043{left:142.722885px;}
.x36_c00043{left:153.004035px;}
.x50_c00043{left:154.637535px;}
.x7_c00043{left:164.780085px;}
.x18_c00043{left:174.610785px;}
.x32_c00043{left:176.189835px;}
.x54_c00043{left:187.045185px;}
.x40_c00043{left:188.322285px;}
.x8_c00043{left:197.054085px;}
.x44_c00043{left:198.647985px;}
.x3e_c00043{left:209.587485px;}
.x11_c00043{left:220.061685px;}
.x41_c00043{left:221.408085px;}
.x2e_c00043{left:231.070485px;}
.x1f_c00043{left:232.100085px;}
.x37_c00043{left:242.297085px;}
.x51_c00043{left:243.400935px;}
.x42_c00043{left:252.949485px;}
.x12_c00043{left:254.256285px;}
.x20_c00043{left:263.829585px;}
.x5f_c00043{left:266.324385px;}
.x45_c00043{left:275.541285px;}
.x4_c00043{left:283.109835px;}
.x27_c00043{left:284.961135px;}
.x19_c00043{left:286.317435px;}
.x9_c00043{left:297.756885px;}
.x55_c00043{left:309.473535px;}
.x52_c00043{left:310.483335px;}
.x28_c00043{left:319.982385px;}
.x60_c00043{left:321.229785px;}
.xa_c00043{left:330.699135px;}
.x5d_c00043{left:343.004835px;}
.x13_c00043{left:353.226585px;}
.x46_c00043{left:356.048085px;}
.x21_c00043{left:364.047285px;}
.x3a_c00043{left:365.086785px;}
.x4d_c00043{left:374.778885px;}
.x4b_c00043{left:376.303485px;}
.x29_c00043{left:386.470785px;}
.x22_c00043{left:396.920235px;}
.x5a_c00043{left:398.256735px;}
.x14_c00043{left:408.963585px;}
.x1a_c00043{left:411.062385px;}
.x33_c00043{left:420.011985px;}
.x58_c00043{left:421.744485px;}
.x2a_c00043{left:430.466385px;}
.xb_c00043{left:441.514785px;}
.x64_c00043{left:454.364985px;}
.xc_c00043{left:463.552185px;}
.x15_c00043{left:465.017385px;}
.x1b_c00043{left:474.843135px;}
.x38_c00043{left:476.293485px;}
.x3_c00043{left:482.139435px;}
.x23_c00043{left:485.941035px;}
.x43_c00043{left:497.910135px;}
.x5e_c00043{left:507.834885px;}
.x2f_c00043{left:509.077335px;}
.x3b_c00043{left:518.160585px;}
.x2b_c00043{left:519.289185px;}
.x24_c00043{left:529.758435px;}
.x4e_c00043{left:531.149385px;}
.xd_c00043{left:540.282135px;}
.x30_c00043{left:541.806735px;}
.x3f_c00043{left:553.270935px;}
.x47_c00043{left:563.076885px;}
.x2c_c00043{left:573.061035px;}
.xe_c00043{left:574.600485px;}
.x16_c00043{left:584.891535px;}
.x4c_c00043{left:586.450785px;}
.x61_c00043{left:597.484335px;}
.x1c_c00043{left:607.433835px;}
.x53_c00043{left:608.859435px;}
.x2d_c00043{left:617.294235px;}
.x34_c00043{left:618.487185px;}
.xf_c00043{left:630.248385px;}
.x56_c00043{left:631.337385px;}
.x2_c00043{left:639.593985px;}
.x25_c00043{left:641.603685px;}
.x1d_c00043{left:651.968985px;}
.x35_c00043{left:663.047085px;}
.x26_c00043{left:674.070735px;}
.x3c_c00043{left:679.941435px;}
.x5b_c00043{left:684.341985px;}
.x5c_c00043{left:685.911135px;}
.x57_c00043{left:693.484635px;}
.x48_c00043{left:696.538785px;}
@media print{
.v0_c00043{vertical-align:0.000000pt;}
.ls6_c00043{letter-spacing:-2.439360pt;}
.ls11_c00043{letter-spacing:-2.216333pt;}
.lse_c00043{letter-spacing:-2.111789pt;}
.ls8_c00043{letter-spacing:-1.686643pt;}
.lsa_c00043{letter-spacing:-1.463616pt;}
.lsc_c00043{letter-spacing:-1.268467pt;}
.ls7_c00043{letter-spacing:-1.261498pt;}
.ls3_c00043{letter-spacing:0.000000pt;}
.ls12_c00043{letter-spacing:0.070805pt;}
.ls2_c00043{letter-spacing:0.564538pt;}
.ls9_c00043{letter-spacing:0.829382pt;}
.lsb_c00043{letter-spacing:1.108166pt;}
.ls13_c00043{letter-spacing:2.230272pt;}
.ls1_c00043{letter-spacing:2.446330pt;}
.ls10_c00043{letter-spacing:3.150400pt;}
.ls5_c00043{letter-spacing:3.484800pt;}
.ls4_c00043{letter-spacing:3.731209pt;}
.lsf_c00043{letter-spacing:44.352176pt;}
.lsd_c00043{letter-spacing:46.886576pt;}
.ls0_c00043{letter-spacing:126.020165pt;}
.ws1_c00043{word-spacing:-17.988538pt;}
.ws0_c00043{word-spacing:-17.424000pt;}
.ws2_c00043{word-spacing:0.000000pt;}
._1_c00043{margin-left:-15.054336pt;}
._5_c00043{margin-left:-6.760512pt;}
._4_c00043{width:7.039296pt;}
._2_c00043{width:17.588947pt;}
._0_c00043{width:24.463296pt;}
._3_c00043{width:27.669312pt;}
.fs2_c00043{font-size:19.712000pt;}
.fsd_c00043{font-size:22.352000pt;}
.fsc_c00043{font-size:24.640000pt;}
.fsb_c00043{font-size:26.224000pt;}
.fs8_c00043{font-size:34.496000pt;}
.fs0_c00043{font-size:34.848000pt;}
.fs3_c00043{font-size:35.200000pt;}
.fs7_c00043{font-size:44.352176pt;}
.fs6_c00043{font-size:46.886576pt;}
.fs5_c00043{font-size:58.960000pt;}
.fs9_c00043{font-size:63.008000pt;}
.fsf_c00043{font-size:64.768000pt;}
.fs4_c00043{font-size:69.696000pt;}
.fs1_c00043{font-size:74.624176pt;}
.fsa_c00043{font-size:83.072176pt;}
.fse_c00043{font-size:95.744176pt;}
.y0_c00043{bottom:0.000000pt;}
.y1_c00043{bottom:68.000000pt;}
.y2_c00043{bottom:119.038520pt;}
.y22_c00043{bottom:126.641720pt;}
.y21_c00043{bottom:153.569720pt;}
.y20_c00043{bottom:176.058120pt;}
.y1f_c00043{bottom:185.883320pt;}
.y1e_c00043{bottom:203.307320pt;}
.y1d_c00043{bottom:215.974920pt;}
.y1c_c00043{bottom:247.025720pt;}
.y1b_c00043{bottom:273.320120pt;}
.y1a_c00043{bottom:285.037320pt;}
.y19_c00043{bottom:301.832120pt;}
.y18_c00043{bottom:330.656520pt;}
.y17_c00043{bottom:359.172920pt;}
.y16_c00043{bottom:381.344520pt;}
.y15_c00043{bottom:387.684920pt;}
.y14_c00043{bottom:416.509320pt;}
.y13_c00043{bottom:473.854520pt;}
.y12_c00043{bottom:498.560520pt;}
.y11_c00043{bottom:502.683320pt;}
.y10_c00043{bottom:531.507720pt;}
.yf_c00043{bottom:545.451320pt;}
.ye_c00043{bottom:560.336520pt;}
.yd_c00043{bottom:589.169720pt;}
.yc_c00043{bottom:617.998520pt;}
.yb_c00043{bottom:647.456520pt;}
.ya_c00043{bottom:676.289720pt;}
.y9_c00043{bottom:705.430920pt;}
.y8_c00043{bottom:763.092920pt;}
.y7_c00043{bottom:792.238520pt;}
.y6_c00043{bottom:821.384120pt;}
.y5_c00043{bottom:859.712520pt;}
.y4_c00043{bottom:943.981320pt;}
.y3_c00043{bottom:966.474120pt;}
.h4_c00043{height:20.559000pt;}
.he_c00043{height:23.312438pt;}
.hd_c00043{height:25.698750pt;}
.h9_c00043{height:29.538549pt;}
.h8_c00043{height:31.226460pt;}
.h2_c00043{height:34.201406pt;}
.ha_c00043{height:35.978250pt;}
.h5_c00043{height:36.712500pt;}
.h7_c00043{height:61.493438pt;}
.hb_c00043{height:65.715375pt;}
.h6_c00043{height:68.402813pt;}
.h3_c00043{height:75.207177pt;}
.hc_c00043{height:83.721177pt;}
.hf_c00043{height:93.967673pt;}
.h1_c00043{height:986.666667pt;}
.h0_c00043{height:1122.666667pt;}
.w1_c00043{width:652.000000pt;}
.w0_c00043{width:793.333333pt;}
.x0_c00043{left:0.000000pt;}
.x31_c00043{left:58.101587pt;}
.x5_c00043{left:59.003587pt;}
.x62_c00043{left:60.455587pt;}
.x4f_c00043{left:68.283187pt;}
.x1_c00043{left:70.666667pt;}
.x17_c00043{left:87.396787pt;}
.x49_c00043{left:88.782787pt;}
.x39_c00043{left:97.397987pt;}
.x6_c00043{left:98.361587pt;}
.x1e_c00043{left:106.725987pt;}
.x59_c00043{left:107.623587pt;}
.x3d_c00043{left:116.243187pt;}
.x4a_c00043{left:117.241987pt;}
.x63_c00043{left:118.513587pt;}
.x10_c00043{left:126.864787pt;}
.x36_c00043{left:136.003587pt;}
.x50_c00043{left:137.455587pt;}
.x7_c00043{left:146.471187pt;}
.x18_c00043{left:155.209587pt;}
.x32_c00043{left:156.613187pt;}
.x54_c00043{left:166.262387pt;}
.x40_c00043{left:167.397587pt;}
.x8_c00043{left:175.159187pt;}
.x44_c00043{left:176.575987pt;}
.x3e_c00043{left:186.299987pt;}
.x11_c00043{left:195.610387pt;}
.x41_c00043{left:196.807187pt;}
.x2e_c00043{left:205.395987pt;}
.x1f_c00043{left:206.311187pt;}
.x37_c00043{left:215.375187pt;}
.x51_c00043{left:216.356387pt;}
.x42_c00043{left:224.843987pt;}
.x12_c00043{left:226.005587pt;}
.x20_c00043{left:234.515187pt;}
.x5f_c00043{left:236.732787pt;}
.x45_c00043{left:244.925587pt;}
.x4_c00043{left:251.653187pt;}
.x27_c00043{left:253.298787pt;}
.x19_c00043{left:254.504387pt;}
.x9_c00043{left:264.672787pt;}
.x55_c00043{left:275.087587pt;}
.x52_c00043{left:275.985187pt;}
.x28_c00043{left:284.428787pt;}
.x60_c00043{left:285.537587pt;}
.xa_c00043{left:293.954787pt;}
.x5d_c00043{left:304.893187pt;}
.x13_c00043{left:313.979187pt;}
.x46_c00043{left:316.487187pt;}
.x21_c00043{left:323.597587pt;}
.x3a_c00043{left:324.521587pt;}
.x4d_c00043{left:333.136787pt;}
.x4b_c00043{left:334.491987pt;}
.x29_c00043{left:343.529587pt;}
.x22_c00043{left:352.817987pt;}
.x5a_c00043{left:354.005987pt;}
.x14_c00043{left:363.523187pt;}
.x1a_c00043{left:365.388787pt;}
.x33_c00043{left:373.343987pt;}
.x58_c00043{left:374.883987pt;}
.x2a_c00043{left:382.636787pt;}
.xb_c00043{left:392.457587pt;}
.x64_c00043{left:403.879987pt;}
.xc_c00043{left:412.046387pt;}
.x15_c00043{left:413.348787pt;}
.x1b_c00043{left:422.082787pt;}
.x38_c00043{left:423.371987pt;}
.x3_c00043{left:428.568387pt;}
.x23_c00043{left:431.947587pt;}
.x43_c00043{left:442.586787pt;}
.x5e_c00043{left:451.408787pt;}
.x2f_c00043{left:452.513187pt;}
.x3b_c00043{left:460.587187pt;}
.x2b_c00043{left:461.590387pt;}
.x24_c00043{left:470.896387pt;}
.x4e_c00043{left:472.132787pt;}
.xd_c00043{left:480.250787pt;}
.x30_c00043{left:481.605987pt;}
.x3f_c00043{left:491.796387pt;}
.x47_c00043{left:500.512787pt;}
.x2c_c00043{left:509.387587pt;}
.xe_c00043{left:510.755987pt;}
.x16_c00043{left:519.903587pt;}
.x4c_c00043{left:521.289587pt;}
.x61_c00043{left:531.097187pt;}
.x1c_c00043{left:539.941187pt;}
.x53_c00043{left:541.208387pt;}
.x2d_c00043{left:548.705987pt;}
.x34_c00043{left:549.766387pt;}
.xf_c00043{left:560.220787pt;}
.x56_c00043{left:561.188787pt;}
.x2_c00043{left:568.527987pt;}
.x25_c00043{left:570.314387pt;}
.x1d_c00043{left:579.527987pt;}
.x35_c00043{left:589.375187pt;}
.x26_c00043{left:599.173987pt;}
.x3c_c00043{left:604.392387pt;}
.x5b_c00043{left:608.303987pt;}
.x5c_c00043{left:609.698787pt;}
.x57_c00043{left:616.430787pt;}
.x48_c00043{left:619.145587pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d3ed0db326181ee2c96cec44.woff2')format("woff");}.ff1_c00044{font-family:ff1_c00044;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00044;src:url('chunks/assets/font_49d264fea5fa52363fb54eb2.woff2')format("woff");}.ff2_c00044{font-family:ff2_c00044;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00044;src:url('chunks/assets/font_f1a36960746e3c04c319d861.woff2')format("woff");}.ff3_c00044{font-family:ff3_c00044;line-height:0.666000;font-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_c00044{transform:matrix(0.190972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190972,0.000000,0.000000,0.250000,0,0);}
.m39_c00044{transform:matrix(0.194567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194567,0.000000,0.000000,0.250000,0,0);}
.m10_c00044{transform:matrix(0.198831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198831,0.000000,0.000000,0.250000,0,0);}
.m8f_c00044{transform:matrix(0.205555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205555,0.000000,0.000000,0.250000,0,0);}
.m6b_c00044{transform:matrix(0.210605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210605,0.000000,0.000000,0.250000,0,0);}
.m91_c00044{transform:matrix(0.213542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213542,0.000000,0.000000,0.250000,0,0);}
.m13_c00044{transform:matrix(0.221283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221283,0.000000,0.000000,0.250000,0,0);}
.m88_c00044{transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);}
.m9f_c00044{transform:matrix(0.244455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244455,0.000000,0.000000,0.250000,0,0);}
.m40_c00044{transform:matrix(0.247349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247349,0.000000,0.000000,0.250000,0,0);}
.m5_c00044{transform:matrix(0.249378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249378,0.000000,0.000000,0.250000,0,0);}
.m0_c00044{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m35_c00044{transform:matrix(0.250875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250875,0.000000,0.000000,0.250000,0,0);}
.m7c_c00044{transform:matrix(0.251428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251428,0.000000,0.000000,0.250000,0,0);}
.m9a_c00044{transform:matrix(0.251843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251843,0.000000,0.000000,0.250000,0,0);}
.mb8_c00044{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.m57_c00044{transform:matrix(0.253030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253030,0.000000,0.000000,0.250000,0,0);}
.m4d_c00044{transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);}
.m76_c00044{transform:matrix(0.255369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255369,0.000000,0.000000,0.250000,0,0);}
.m1_c00044{transform:matrix(0.255501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255501,0.000000,0.000000,0.250000,0,0);}
.m8e_c00044{transform:matrix(0.256696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256696,0.000000,0.000000,0.250000,0,0);}
.m47_c00044{transform:matrix(0.258243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258243,0.000000,0.000000,0.250000,0,0);}
.m27_c00044{transform:matrix(0.260956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260956,0.000000,0.000000,0.250000,0,0);}
.m3a_c00044{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m7_c00044{transform:matrix(0.261121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261121,0.000000,0.000000,0.250000,0,0);}
.ma9_c00044{transform:matrix(0.263150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263150,0.000000,0.000000,0.250000,0,0);}
.m1b_c00044{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m55_c00044{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m7d_c00044{transform:matrix(0.264518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264518,0.000000,0.000000,0.250000,0,0);}
.ma4_c00044{transform:matrix(0.264656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264656,0.000000,0.000000,0.250000,0,0);}
.mb5_c00044{transform:matrix(0.264839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264839,0.000000,0.000000,0.250000,0,0);}
.m14_c00044{transform:matrix(0.264878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264878,0.000000,0.000000,0.250000,0,0);}
.m96_c00044{transform:matrix(0.265793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265793,0.000000,0.000000,0.250000,0,0);}
.m22_c00044{transform:matrix(0.266174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266174,0.000000,0.000000,0.250000,0,0);}
.m75_c00044{transform:matrix(0.266397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266397,0.000000,0.000000,0.250000,0,0);}
.m60_c00044{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.mf_c00044{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m6c_c00044{transform:matrix(0.269234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269234,0.000000,0.000000,0.250000,0,0);}
.ma6_c00044{transform:matrix(0.269892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269892,0.000000,0.000000,0.250000,0,0);}
.m1c_c00044{transform:matrix(0.270690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270690,0.000000,0.000000,0.250000,0,0);}
.m94_c00044{transform:matrix(0.270792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270792,0.000000,0.000000,0.250000,0,0);}
.m3d_c00044{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m25_c00044{transform:matrix(0.270977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270977,0.000000,0.000000,0.250000,0,0);}
.m2b_c00044{transform:matrix(0.271124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271124,0.000000,0.000000,0.250000,0,0);}
.m4f_c00044{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m5c_c00044{transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);}
.m5e_c00044{transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);}
.m24_c00044{transform:matrix(0.275512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275512,0.000000,0.000000,0.250000,0,0);}
.m61_c00044{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.mb7_c00044{transform:matrix(0.275570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275570,0.000000,0.000000,0.250000,0,0);}
.m6f_c00044{transform:matrix(0.275620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275620,0.000000,0.000000,0.250000,0,0);}
.m81_c00044{transform:matrix(0.276546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276546,0.000000,0.000000,0.250000,0,0);}
.m84_c00044{transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);}
.m23_c00044{transform:matrix(0.277421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277421,0.000000,0.000000,0.250000,0,0);}
.m4b_c00044{transform:matrix(0.277767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277767,0.000000,0.000000,0.250000,0,0);}
.m5a_c00044{transform:matrix(0.277795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277795,0.000000,0.000000,0.250000,0,0);}
.m53_c00044{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.m26_c00044{transform:matrix(0.278433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278433,0.000000,0.000000,0.250000,0,0);}
.m3_c00044{transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);}
.m34_c00044{transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);}
.m38_c00044{transform:matrix(0.279515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279515,0.000000,0.000000,0.250000,0,0);}
.m67_c00044{transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);}
.m97_c00044{transform:matrix(0.280529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280529,0.000000,0.000000,0.250000,0,0);}
.m56_c00044{transform:matrix(0.280886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280886,0.000000,0.000000,0.250000,0,0);}
.m5d_c00044{transform:matrix(0.280905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280905,0.000000,0.000000,0.250000,0,0);}
.m1a_c00044{transform:matrix(0.282587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282587,0.000000,0.000000,0.250000,0,0);}
.mb9_c00044{transform:matrix(0.282790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282790,0.000000,0.000000,0.250000,0,0);}
.m89_c00044{transform:matrix(0.283070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283070,0.000000,0.000000,0.250000,0,0);}
.m30_c00044{transform:matrix(0.283097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283097,0.000000,0.000000,0.250000,0,0);}
.m15_c00044{transform:matrix(0.285386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285386,0.000000,0.000000,0.250000,0,0);}
.m6a_c00044{transform:matrix(0.286100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286100,0.000000,0.000000,0.250000,0,0);}
.m19_c00044{transform:matrix(0.286456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286456,0.000000,0.000000,0.250000,0,0);}
.m12_c00044{transform:matrix(0.286484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286484,0.000000,0.000000,0.250000,0,0);}
.m6d_c00044{transform:matrix(0.286746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286746,0.000000,0.000000,0.250000,0,0);}
.m65_c00044{transform:matrix(0.286901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286901,0.000000,0.000000,0.250000,0,0);}
.m62_c00044{transform:matrix(0.288069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288069,0.000000,0.000000,0.250000,0,0);}
.m32_c00044{transform:matrix(0.288234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288234,0.000000,0.000000,0.250000,0,0);}
.m17_c00044{transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);}
.ma8_c00044{transform:matrix(0.288676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288676,0.000000,0.000000,0.250000,0,0);}
.m49_c00044{transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);}
.m28_c00044{transform:matrix(0.289086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289086,0.000000,0.000000,0.250000,0,0);}
.mc_c00044{transform:matrix(0.289415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289415,0.000000,0.000000,0.250000,0,0);}
.m72_c00044{transform:matrix(0.289678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289678,0.000000,0.000000,0.250000,0,0);}
.mac_c00044{transform:matrix(0.289775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289775,0.000000,0.000000,0.250000,0,0);}
.m4a_c00044{transform:matrix(0.290272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290272,0.000000,0.000000,0.250000,0,0);}
.m11_c00044{transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);}
.m51_c00044{transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);}
.mb6_c00044{transform:matrix(0.290583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290583,0.000000,0.000000,0.250000,0,0);}
.mae_c00044{transform:matrix(0.291574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291574,0.000000,0.000000,0.250000,0,0);}
.m92_c00044{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);}
.m64_c00044{transform:matrix(0.291953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291953,0.000000,0.000000,0.250000,0,0);}
.m33_c00044{transform:matrix(0.292782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292782,0.000000,0.000000,0.250000,0,0);}
.m3e_c00044{transform:matrix(0.295324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295324,0.000000,0.000000,0.250000,0,0);}
.ma5_c00044{transform:matrix(0.296247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296247,0.000000,0.000000,0.250000,0,0);}
.m21_c00044{transform:matrix(0.296475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296475,0.000000,0.000000,0.250000,0,0);}
.m3f_c00044{transform:matrix(0.296503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296503,0.000000,0.000000,0.250000,0,0);}
.m1d_c00044{transform:matrix(0.296557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296557,0.000000,0.000000,0.250000,0,0);}
.maa_c00044{transform:matrix(0.296672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296672,0.000000,0.000000,0.250000,0,0);}
.m16_c00044{transform:matrix(0.296778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296778,0.000000,0.000000,0.250000,0,0);}
.m66_c00044{transform:matrix(0.296922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296922,0.000000,0.000000,0.250000,0,0);}
.m29_c00044{transform:matrix(0.296948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296948,0.000000,0.000000,0.250000,0,0);}
.m77_c00044{transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);}
.m3b_c00044{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.ma1_c00044{transform:matrix(0.297313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297313,0.000000,0.000000,0.250000,0,0);}
.m37_c00044{transform:matrix(0.298018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298018,0.000000,0.000000,0.250000,0,0);}
.m18_c00044{transform:matrix(0.298426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298426,0.000000,0.000000,0.250000,0,0);}
.m74_c00044{transform:matrix(0.299395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299395,0.000000,0.000000,0.250000,0,0);}
.ma_c00044{transform:matrix(0.299670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299670,0.000000,0.000000,0.250000,0,0);}
.m4c_c00044{transform:matrix(0.300569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300569,0.000000,0.000000,0.250000,0,0);}
.mbb_c00044{transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);}
.m9c_c00044{transform:matrix(0.300672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300672,0.000000,0.000000,0.250000,0,0);}
.m8b_c00044{transform:matrix(0.300736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300736,0.000000,0.000000,0.250000,0,0);}
.maf_c00044{transform:matrix(0.301074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301074,0.000000,0.000000,0.250000,0,0);}
.m5f_c00044{transform:matrix(0.301172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301172,0.000000,0.000000,0.250000,0,0);}
.m46_c00044{transform:matrix(0.301407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301407,0.000000,0.000000,0.250000,0,0);}
.m52_c00044{transform:matrix(0.301673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301673,0.000000,0.000000,0.250000,0,0);}
.m8d_c00044{transform:matrix(0.301802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301802,0.000000,0.000000,0.250000,0,0);}
.ma7_c00044{transform:matrix(0.301925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301925,0.000000,0.000000,0.250000,0,0);}
.m2a_c00044{transform:matrix(0.302703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302703,0.000000,0.000000,0.250000,0,0);}
.m9b_c00044{transform:matrix(0.302721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302721,0.000000,0.000000,0.250000,0,0);}
.ma2_c00044{transform:matrix(0.303100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303100,0.000000,0.000000,0.250000,0,0);}
.m1f_c00044{transform:matrix(0.304115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304115,0.000000,0.000000,0.250000,0,0);}
.m43_c00044{transform:matrix(0.304136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304136,0.000000,0.000000,0.250000,0,0);}
.m9d_c00044{transform:matrix(0.304173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304173,0.000000,0.000000,0.250000,0,0);}
.m71_c00044{transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);}
.m87_c00044{transform:matrix(0.305517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305517,0.000000,0.000000,0.250000,0,0);}
.m20_c00044{transform:matrix(0.305539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305539,0.000000,0.000000,0.250000,0,0);}
.m5b_c00044{transform:matrix(0.306045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306045,0.000000,0.000000,0.250000,0,0);}
.m6_c00044{transform:matrix(0.306092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306092,0.000000,0.000000,0.250000,0,0);}
.m9e_c00044{transform:matrix(0.306104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306104,0.000000,0.000000,0.250000,0,0);}
.mb1_c00044{transform:matrix(0.306936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306936,0.000000,0.000000,0.250000,0,0);}
.mb3_c00044{transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);}
.m2c_c00044{transform:matrix(0.308424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308424,0.000000,0.000000,0.250000,0,0);}
.ma3_c00044{transform:matrix(0.308528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308528,0.000000,0.000000,0.250000,0,0);}
.m41_c00044{transform:matrix(0.308920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308920,0.000000,0.000000,0.250000,0,0);}
.m3c_c00044{transform:matrix(0.308940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308940,0.000000,0.000000,0.250000,0,0);}
.m7e_c00044{transform:matrix(0.309162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309162,0.000000,0.000000,0.250000,0,0);}
.m8_c00044{transform:matrix(0.309376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309376,0.000000,0.000000,0.250000,0,0);}
.m7b_c00044{transform:matrix(0.310202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310202,0.000000,0.000000,0.250000,0,0);}
.m4e_c00044{transform:matrix(0.310732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310732,0.000000,0.000000,0.250000,0,0);}
.mb_c00044{transform:matrix(0.311969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311969,0.000000,0.000000,0.250000,0,0);}
.m2e_c00044{transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);}
.mab_c00044{transform:matrix(0.312430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312430,0.000000,0.000000,0.250000,0,0);}
.m78_c00044{transform:matrix(0.312744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312744,0.000000,0.000000,0.250000,0,0);}
.m85_c00044{transform:matrix(0.312946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312946,0.000000,0.000000,0.250000,0,0);}
.me_c00044{transform:matrix(0.313488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313488,0.000000,0.000000,0.250000,0,0);}
.m70_c00044{transform:matrix(0.313839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313839,0.000000,0.000000,0.250000,0,0);}
.m44_c00044{transform:matrix(0.315315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315315,0.000000,0.000000,0.250000,0,0);}
.m93_c00044{transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);}
.m63_c00044{transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);}
.m80_c00044{transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);}
.m8a_c00044{transform:matrix(0.316376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316376,0.000000,0.000000,0.250000,0,0);}
.m7f_c00044{transform:matrix(0.317085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317085,0.000000,0.000000,0.250000,0,0);}
.m82_c00044{transform:matrix(0.317239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317239,0.000000,0.000000,0.250000,0,0);}
.m83_c00044{transform:matrix(0.317836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317836,0.000000,0.000000,0.250000,0,0);}
.m2f_c00044{transform:matrix(0.318402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318402,0.000000,0.000000,0.250000,0,0);}
.m98_c00044{transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);}
.m4_c00044{transform:matrix(0.320786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320786,0.000000,0.000000,0.250000,0,0);}
.m68_c00044{transform:matrix(0.321250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321250,0.000000,0.000000,0.250000,0,0);}
.m58_c00044{transform:matrix(0.321397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321397,0.000000,0.000000,0.250000,0,0);}
.m86_c00044{transform:matrix(0.322246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322246,0.000000,0.000000,0.250000,0,0);}
.m7a_c00044{transform:matrix(0.323918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323918,0.000000,0.000000,0.250000,0,0);}
.m99_c00044{transform:matrix(0.323967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323967,0.000000,0.000000,0.250000,0,0);}
.m45_c00044{transform:matrix(0.326313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326313,0.000000,0.000000,0.250000,0,0);}
.m95_c00044{transform:matrix(0.326627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326627,0.000000,0.000000,0.250000,0,0);}
.m6e_c00044{transform:matrix(0.326944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326944,0.000000,0.000000,0.250000,0,0);}
.m36_c00044{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.m2d_c00044{transform:matrix(0.328729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328729,0.000000,0.000000,0.250000,0,0);}
.mad_c00044{transform:matrix(0.329405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329405,0.000000,0.000000,0.250000,0,0);}
.ma0_c00044{transform:matrix(0.330718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330718,0.000000,0.000000,0.250000,0,0);}
.mba_c00044{transform:matrix(0.332412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332412,0.000000,0.000000,0.250000,0,0);}
.m54_c00044{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.md_c00044{transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);}
.m31_c00044{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m8c_c00044{transform:matrix(0.341263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341263,0.000000,0.000000,0.250000,0,0);}
.m2_c00044{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.m48_c00044{transform:matrix(0.343787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343787,0.000000,0.000000,0.250000,0,0);}
.m9_c00044{transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);}
.mb0_c00044{transform:matrix(0.346277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346277,0.000000,0.000000,0.250000,0,0);}
.m1e_c00044{transform:matrix(0.346364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346364,0.000000,0.000000,0.250000,0,0);}
.m42_c00044{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.mb2_c00044{transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);}
.m50_c00044{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m69_c00044{transform:matrix(0.358398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358398,0.000000,0.000000,0.250000,0,0);}
.m79_c00044{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.mb4_c00044{transform:matrix(0.361544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361544,0.000000,0.000000,0.250000,0,0);}
.m59_c00044{transform:matrix(0.363845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363845,0.000000,0.000000,0.250000,0,0);}
.m73_c00044{transform:matrix(0.432348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432348,0.000000,0.000000,0.250000,0,0);}
.v0_c00044{vertical-align:0.000000px;}
.v1_c00044{vertical-align:11.404800px;}
.ls5_c00044{letter-spacing:-2.744280px;}
.ls19_c00044{letter-spacing:-2.375762px;}
.lsa_c00044{letter-spacing:-1.897474px;}
.lsb_c00044{letter-spacing:-1.748498px;}
.lsd_c00044{letter-spacing:-1.219680px;}
.ls12_c00044{letter-spacing:-0.086249px;}
.lsc_c00044{letter-spacing:-0.054886px;}
.ls2_c00044{letter-spacing:0.000000px;}
.ls10_c00044{letter-spacing:0.541015px;}
.ls18_c00044{letter-spacing:1.301573px;}
.ls11_c00044{letter-spacing:1.905314px;}
.ls14_c00044{letter-spacing:1.960200px;}
.ls8_c00044{letter-spacing:2.022926px;}
.ls1a_c00044{letter-spacing:2.854051px;}
.ls0_c00044{letter-spacing:2.979504px;}
.ls9_c00044{letter-spacing:3.246091px;}
.ls1_c00044{letter-spacing:3.528360px;}
.ls16_c00044{letter-spacing:3.564000px;}
.ls7_c00044{letter-spacing:3.747902px;}
.ls13_c00044{letter-spacing:3.857674px;}
.lse_c00044{letter-spacing:3.889037px;}
.ls4_c00044{letter-spacing:3.920400px;}
.ls3_c00044{letter-spacing:4.257000px;}
.lsf_c00044{letter-spacing:4.494610px;}
.ls15_c00044{letter-spacing:5.385610px;}
.ls17_c00044{letter-spacing:51.321798px;}
.ls6_c00044{letter-spacing:54.172998px;}
.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:-19.547114px;}
.ws1_c00044{word-spacing:0.000000px;}
._0_c00044{margin-left:-2.780712px;}
._3_c00044{width:4.447238px;}
._2_c00044{width:18.267480px;}
._1_c00044{width:127.888200px;}
.fc0_c00044{color:transparent;}
.fs6_c00044{font-size:17.028000px;}
.fsd_c00044{font-size:17.424000px;}
.fsc_c00044{font-size:22.176000px;}
.fs2_c00044{font-size:22.572000px;}
.fs4_c00044{font-size:26.928000px;}
.fs7_c00044{font-size:28.314000px;}
.fs8_c00044{font-size:31.680000px;}
.fs9_c00044{font-size:34.848000px;}
.fs0_c00044{font-size:38.808000px;}
.fs12_c00044{font-size:45.144000px;}
.fs11_c00044{font-size:51.321798px;}
.fs5_c00044{font-size:54.172998px;}
.fsa_c00044{font-size:68.706198px;}
.fsf_c00044{font-size:71.280000px;}
.fs10_c00044{font-size:76.824000px;}
.fs3_c00044{font-size:78.408000px;}
.fs1_c00044{font-size:85.140000px;}
.fsb_c00044{font-size:89.892198px;}
.fse_c00044{font-size:107.712198px;}
.y0_c00044{bottom:0.000000px;}
.y2_c00044{bottom:5.252985px;}
.y1_c00044{bottom:76.500000px;}
.y23_c00044{bottom:138.907935px;}
.y22_c00044{bottom:168.132735px;}
.y21_c00044{bottom:202.347135px;}
.y20_c00044{bottom:236.561535px;}
.y1f_c00044{bottom:254.025135px;}
.y1e_c00044{bottom:268.993935px;}
.y1d_c00044{bottom:302.495535px;}
.y1c_c00044{bottom:334.571535px;}
.y1b_c00044{bottom:368.780985px;}
.y1a_c00044{bottom:401.218335px;}
.y19_c00044{bottom:424.735785px;}
.y18_c00044{bottom:433.289385px;}
.y17_c00044{bottom:497.089935px;}
.y16_c00044{bottom:523.463535px;}
.y13_c00044{bottom:529.165935px;}
.y15_c00044{bottom:529.522335px;}
.y14_c00044{bottom:542.347785px;}
.y12_c00044{bottom:561.593385px;}
.y11_c00044{bottom:594.025785px;}
.y10_c00044{bottom:626.106735px;}
.yf_c00044{bottom:659.246985px;}
.ye_c00044{bottom:693.817785px;}
.yd_c00044{bottom:726.250185px;}
.yc_c00044{bottom:758.682585px;}
.yb_c00044{bottom:791.827785px;}
.ya_c00044{bottom:823.552335px;}
.y9_c00044{bottom:847.431135px;}
.y8_c00044{bottom:855.984735px;}
.y7_c00044{bottom:888.773535px;}
.y6_c00044{bottom:903.024585px;}
.y5_c00044{bottom:921.205935px;}
.y4_c00044{bottom:1071.958185px;}
.y3_c00044{bottom:1083.362985px;}
.hd_c00044{height:17.100703px;}
.hc_c00044{height:23.128875px;}
.h4_c00044{height:23.541891px;}
.h8_c00044{height:27.788643px;}
.h6_c00044{height:28.085063px;}
.h11_c00044{height:34.180317px;}
.h9_c00044{height:34.201406px;}
.h7_c00044{height:36.079217px;}
.h2_c00044{height:40.475531px;}
.h12_c00044{height:47.083781px;}
.ha_c00044{height:67.431376px;}
.hf_c00044{height:69.957422px;}
.h10_c00044{height:75.398555px;}
.h5_c00044{height:76.953164px;}
.h3_c00044{height:83.560254px;}
.hb_c00044{height:88.224276px;}
.he_c00044{height:105.713632px;}
.h1_c00044{height:1110.000000px;}
.h0_c00044{height:1263.000000px;}
.w1_c00044{width:733.500000px;}
.w0_c00044{width:892.500000px;}
.x0_c00044{left:0.000000px;}
.x2_c00044{left:15.542535px;}
.x49_c00044{left:55.573185px;}
.x40_c00044{left:57.196785px;}
.x71_c00044{left:58.270935px;}
.x77_c00044{left:59.409435px;}
.x5_c00044{left:60.721185px;}
.x1_c00044{left:79.500000px;}
.x1a_c00044{left:82.798185px;}
.x51_c00044{left:90.272685px;}
.x8c_c00044{left:92.425935px;}
.x6_c00044{left:93.430785px;}
.x78_c00044{left:101.726985px;}
.x32_c00044{left:102.751635px;}
.x10_c00044{left:103.850535px;}
.x41_c00044{left:110.641935px;}
.x4a_c00044{left:113.780235px;}
.x60_c00044{left:120.423135px;}
.x69_c00044{left:121.838835px;}
.x89_c00044{left:124.991985px;}
.x7_c00044{left:126.259185px;}
.x81_c00044{left:135.164235px;}
.x11_c00044{left:136.624485px;}
.x52_c00044{left:142.529835px;}
.x5b_c00044{left:144.113835px;}
.x2a_c00044{left:146.653185px;}
.x72_c00044{left:155.424585px;}
.x8a_c00044{left:156.587835px;}
.x1b_c00044{left:158.048085px;}
.x7c_c00044{left:166.958085px;}
.x83_c00044{left:168.037185px;}
.x6a_c00044{left:176.071035px;}
.x4b_c00044{left:177.585735px;}
.x87_c00044{left:179.338035px;}
.x1c_c00044{left:180.382485px;}
.x36_c00044{left:189.861735px;}
.x5c_c00044{left:199.563735px;}
.x3d_c00044{left:201.890235px;}
.x12_c00044{left:202.954485px;}
.x53_c00044{left:210.790335px;}
.x1d_c00044{left:214.280085px;}
.x6b_c00044{left:221.982285px;}
.x84_c00044{left:223.487085px;}
.x4_c00044{left:229.040985px;}
.x61_c00044{left:234.287985px;}
.x2b_c00044{left:235.733385px;}
.x13_c00044{left:237.381735px;}
.x54_c00044{left:244.257285px;}
.x8_c00044{left:245.836335px;}
.x1e_c00044{left:247.123335px;}
.x42_c00044{left:256.033335px;}
.x37_c00044{left:257.127285px;}
.x62_c00044{left:266.393685px;}
.x8b_c00044{left:268.502385px;}
.x55_c00044{left:276.897585px;}
.x7d_c00044{left:278.486535px;}
.x25_c00044{left:279.535935px;}
.x43_c00044{left:288.455835px;}
.x79_c00044{left:289.846785px;}
.x9_c00044{left:291.653535px;}
.x38_c00044{left:300.454635px;}
.x85_c00044{left:301.598085px;}
.x4c_c00044{left:310.230885px;}
.x7e_c00044{left:311.923785px;}
.x44_c00044{left:321.447585px;}
.x2c_c00044{left:322.808835px;}
.x6c_c00044{left:333.357285px;}
.x1f_c00044{left:335.777835px;}
.x4d_c00044{left:343.544385px;}
.x14_c00044{left:346.588635px;}
.x56_c00044{left:355.360035px;}
.x5d_c00044{left:377.194485px;}
.x39_c00044{left:378.466635px;}
.x20_c00044{left:379.733835px;}
.x63_c00044{left:388.609185px;}
.x2d_c00044{left:390.029835px;}
.x3e_c00044{left:391.108935px;}
.x75_c00044{left:399.647685px;}
.x26_c00044{left:401.469285px;}
.xa_c00044{left:402.538485px;}
.x82_c00044{left:408.884385px;}
.x6d_c00044{left:410.379285px;}
.x86_c00044{left:412.200885px;}
.x21_c00044{left:413.225535px;}
.x4e_c00044{left:420.947535px;}
.x5e_c00044{left:422.110785px;}
.x33_c00044{left:425.026335px;}
.x27_c00044{left:434.065035px;}
.x45_c00044{left:443.049285px;}
.x7f_c00044{left:444.806535px;}
.x15_c00044{left:446.355885px;}
.x65_c00044{left:454.716435px;}
.x3a_c00044{left:456.691485px;}
.x68_c00044{left:464.007585px;}
.x28_c00044{left:467.556735px;}
.x7a_c00044{left:476.481585px;}
.xb_c00044{left:480.327735px;}
.x73_c00044{left:487.668585px;}
.x57_c00044{left:490.866285px;}
.x4f_c00044{left:498.761535px;}
.x3b_c00044{left:501.587985px;}
.x64_c00044{left:507.800235px;}
.x6e_c00044{left:510.141585px;}
.x22_c00044{left:512.314635px;}
.x2e_c00044{left:514.017435px;}
.x80_c00044{left:520.714785px;}
.x34_c00044{left:522.877935px;}
.x58_c00044{left:532.545285px;}
.x16_c00044{left:534.050085px;}
.x46_c00044{left:542.573985px;}
.xf_c00044{left:544.410435px;}
.x23_c00044{left:545.430135px;}
.x70_c00044{left:552.444285px;}
.x50_c00044{left:554.374785px;}
.xc_c00044{left:557.126985px;}
.x59_c00044{left:565.061835px;}
.x17_c00044{left:566.284485px;}
.x5f_c00044{left:575.199435px;}
.x74_c00044{left:576.342885px;}
.x2f_c00044{left:578.555535px;}
.x66_c00044{left:586.247835px;}
.xd_c00044{left:589.965285px;}
.x88_c00044{left:599.944485px;}
.x18_c00044{left:601.043385px;}
.x47_c00044{left:609.423735px;}
.x3f_c00044{left:611.265135px;}
.x3c_c00044{left:622.402635px;}
.x67_c00044{left:631.669035px;}
.x30_c00044{left:632.975835px;}
.x29_c00044{left:635.237985px;}
.x24_c00044{left:636.475485px;}
.x48_c00044{left:642.588735px;}
.x5a_c00044{left:643.811385px;}
.x3_c00044{left:644.836035px;}
.x6f_c00044{left:653.315385px;}
.x7b_c00044{left:654.557835px;}
.x35_c00044{left:656.567535px;}
.xe_c00044{left:667.551585px;}
.x31_c00044{left:670.734435px;}
.x76_c00044{left:672.313485px;}
.x19_c00044{left:677.476335px;}
@media print{
.v0_c00044{vertical-align:0.000000pt;}
.v1_c00044{vertical-align:10.137600pt;}
.ls5_c00044{letter-spacing:-2.439360pt;}
.ls19_c00044{letter-spacing:-2.111789pt;}
.lsa_c00044{letter-spacing:-1.686643pt;}
.lsb_c00044{letter-spacing:-1.554221pt;}
.lsd_c00044{letter-spacing:-1.084160pt;}
.ls12_c00044{letter-spacing:-0.076666pt;}
.lsc_c00044{letter-spacing:-0.048787pt;}
.ls2_c00044{letter-spacing:0.000000pt;}
.ls10_c00044{letter-spacing:0.480902pt;}
.ls18_c00044{letter-spacing:1.156954pt;}
.ls11_c00044{letter-spacing:1.693613pt;}
.ls14_c00044{letter-spacing:1.742400pt;}
.ls8_c00044{letter-spacing:1.798157pt;}
.ls1a_c00044{letter-spacing:2.536934pt;}
.ls0_c00044{letter-spacing:2.648448pt;}
.ls9_c00044{letter-spacing:2.885414pt;}
.ls1_c00044{letter-spacing:3.136320pt;}
.ls16_c00044{letter-spacing:3.168000pt;}
.ls7_c00044{letter-spacing:3.331469pt;}
.ls13_c00044{letter-spacing:3.429043pt;}
.lse_c00044{letter-spacing:3.456922pt;}
.ls4_c00044{letter-spacing:3.484800pt;}
.ls3_c00044{letter-spacing:3.784000pt;}
.lsf_c00044{letter-spacing:3.995209pt;}
.ls15_c00044{letter-spacing:4.787209pt;}
.ls17_c00044{letter-spacing:45.619376pt;}
.ls6_c00044{letter-spacing:48.153776pt;}
.ws0_c00044{word-spacing:-17.375213pt;}
.ws1_c00044{word-spacing:0.000000pt;}
._0_c00044{margin-left:-2.471744pt;}
._3_c00044{width:3.953101pt;}
._2_c00044{width:16.237760pt;}
._1_c00044{width:113.678400pt;}
.fs6_c00044{font-size:15.136000pt;}
.fsd_c00044{font-size:15.488000pt;}
.fsc_c00044{font-size:19.712000pt;}
.fs2_c00044{font-size:20.064000pt;}
.fs4_c00044{font-size:23.936000pt;}
.fs7_c00044{font-size:25.168000pt;}
.fs8_c00044{font-size:28.160000pt;}
.fs9_c00044{font-size:30.976000pt;}
.fs0_c00044{font-size:34.496000pt;}
.fs12_c00044{font-size:40.128000pt;}
.fs11_c00044{font-size:45.619376pt;}
.fs5_c00044{font-size:48.153776pt;}
.fsa_c00044{font-size:61.072176pt;}
.fsf_c00044{font-size:63.360000pt;}
.fs10_c00044{font-size:68.288000pt;}
.fs3_c00044{font-size:69.696000pt;}
.fs1_c00044{font-size:75.680000pt;}
.fsb_c00044{font-size:79.904176pt;}
.fse_c00044{font-size:95.744176pt;}
.y0_c00044{bottom:0.000000pt;}
.y2_c00044{bottom:4.669320pt;}
.y1_c00044{bottom:68.000000pt;}
.y23_c00044{bottom:123.473720pt;}
.y22_c00044{bottom:149.451320pt;}
.y21_c00044{bottom:179.864120pt;}
.y20_c00044{bottom:210.276920pt;}
.y1f_c00044{bottom:225.800120pt;}
.y1e_c00044{bottom:239.105720pt;}
.y1d_c00044{bottom:268.884920pt;}
.y1c_c00044{bottom:297.396920pt;}
.y1b_c00044{bottom:327.805320pt;}
.y1a_c00044{bottom:356.638520pt;}
.y19_c00044{bottom:377.542920pt;}
.y18_c00044{bottom:385.146120pt;}
.y17_c00044{bottom:441.857720pt;}
.y16_c00044{bottom:465.300920pt;}
.y13_c00044{bottom:470.369720pt;}
.y15_c00044{bottom:470.686520pt;}
.y14_c00044{bottom:482.086920pt;}
.y12_c00044{bottom:499.194120pt;}
.y11_c00044{bottom:528.022920pt;}
.y10_c00044{bottom:556.539320pt;}
.yf_c00044{bottom:585.997320pt;}
.ye_c00044{bottom:616.726920pt;}
.yd_c00044{bottom:645.555720pt;}
.yc_c00044{bottom:674.384520pt;}
.yb_c00044{bottom:703.846920pt;}
.ya_c00044{bottom:732.046520pt;}
.y9_c00044{bottom:753.272120pt;}
.y8_c00044{bottom:760.875320pt;}
.y7_c00044{bottom:790.020920pt;}
.y6_c00044{bottom:802.688520pt;}
.y5_c00044{bottom:818.849720pt;}
.y4_c00044{bottom:952.851720pt;}
.y3_c00044{bottom:962.989320pt;}
.hd_c00044{height:15.200625pt;}
.hc_c00044{height:20.559000pt;}
.h4_c00044{height:20.926125pt;}
.h8_c00044{height:24.701016pt;}
.h6_c00044{height:24.964500pt;}
.h11_c00044{height:30.382504pt;}
.h9_c00044{height:30.401250pt;}
.h7_c00044{height:32.070415pt;}
.h2_c00044{height:35.978250pt;}
.h12_c00044{height:41.852250pt;}
.ha_c00044{height:59.939001pt;}
.hf_c00044{height:62.184375pt;}
.h10_c00044{height:67.020938pt;}
.h5_c00044{height:68.402813pt;}
.h3_c00044{height:74.275781pt;}
.hb_c00044{height:78.421579pt;}
.he_c00044{height:93.967673pt;}
.h1_c00044{height:986.666667pt;}
.h0_c00044{height:1122.666667pt;}
.w1_c00044{width:652.000000pt;}
.w0_c00044{width:793.333333pt;}
.x0_c00044{left:0.000000pt;}
.x2_c00044{left:13.815587pt;}
.x49_c00044{left:49.398387pt;}
.x40_c00044{left:50.841587pt;}
.x71_c00044{left:51.796387pt;}
.x77_c00044{left:52.808387pt;}
.x5_c00044{left:53.974387pt;}
.x1_c00044{left:70.666667pt;}
.x1a_c00044{left:73.598387pt;}
.x51_c00044{left:80.242387pt;}
.x8c_c00044{left:82.156387pt;}
.x6_c00044{left:83.049587pt;}
.x78_c00044{left:90.423987pt;}
.x32_c00044{left:91.334787pt;}
.x10_c00044{left:92.311587pt;}
.x41_c00044{left:98.348387pt;}
.x4a_c00044{left:101.137987pt;}
.x60_c00044{left:107.042787pt;}
.x69_c00044{left:108.301187pt;}
.x89_c00044{left:111.103987pt;}
.x7_c00044{left:112.230387pt;}
.x81_c00044{left:120.145987pt;}
.x11_c00044{left:121.443987pt;}
.x52_c00044{left:126.693187pt;}
.x5b_c00044{left:128.101187pt;}
.x2a_c00044{left:130.358387pt;}
.x72_c00044{left:138.155187pt;}
.x8a_c00044{left:139.189187pt;}
.x1b_c00044{left:140.487187pt;}
.x7c_c00044{left:148.407187pt;}
.x83_c00044{left:149.366387pt;}
.x6a_c00044{left:156.507587pt;}
.x4b_c00044{left:157.853987pt;}
.x87_c00044{left:159.411587pt;}
.x1c_c00044{left:160.339987pt;}
.x36_c00044{left:168.765987pt;}
.x5c_c00044{left:177.389987pt;}
.x3d_c00044{left:179.457987pt;}
.x12_c00044{left:180.403987pt;}
.x53_c00044{left:187.369187pt;}
.x1d_c00044{left:190.471187pt;}
.x6b_c00044{left:197.317587pt;}
.x84_c00044{left:198.655187pt;}
.x4_c00044{left:203.591987pt;}
.x61_c00044{left:208.255987pt;}
.x2b_c00044{left:209.540787pt;}
.x13_c00044{left:211.005987pt;}
.x54_c00044{left:217.117587pt;}
.x8_c00044{left:218.521187pt;}
.x1e_c00044{left:219.665187pt;}
.x42_c00044{left:227.585187pt;}
.x37_c00044{left:228.557587pt;}
.x62_c00044{left:236.794387pt;}
.x8b_c00044{left:238.668787pt;}
.x55_c00044{left:246.131187pt;}
.x7d_c00044{left:247.543587pt;}
.x25_c00044{left:248.476387pt;}
.x43_c00044{left:256.405187pt;}
.x79_c00044{left:257.641587pt;}
.x9_c00044{left:259.247587pt;}
.x38_c00044{left:267.070787pt;}
.x85_c00044{left:268.087187pt;}
.x4c_c00044{left:275.760787pt;}
.x7e_c00044{left:277.265587pt;}
.x44_c00044{left:285.731187pt;}
.x2c_c00044{left:286.941187pt;}
.x6c_c00044{left:296.317587pt;}
.x1f_c00044{left:298.469187pt;}
.x4d_c00044{left:305.372787pt;}
.x14_c00044{left:308.078787pt;}
.x56_c00044{left:315.875587pt;}
.x5d_c00044{left:335.283987pt;}
.x39_c00044{left:336.414787pt;}
.x20_c00044{left:337.541187pt;}
.x63_c00044{left:345.430387pt;}
.x2d_c00044{left:346.693187pt;}
.x3e_c00044{left:347.652387pt;}
.x75_c00044{left:355.242387pt;}
.x26_c00044{left:356.861587pt;}
.xa_c00044{left:357.811987pt;}
.x82_c00044{left:363.452787pt;}
.x6d_c00044{left:364.781587pt;}
.x86_c00044{left:366.400787pt;}
.x21_c00044{left:367.311587pt;}
.x4e_c00044{left:374.175587pt;}
.x5e_c00044{left:375.209587pt;}
.x33_c00044{left:377.801187pt;}
.x27_c00044{left:385.835587pt;}
.x45_c00044{left:393.821587pt;}
.x7f_c00044{left:395.383587pt;}
.x15_c00044{left:396.760787pt;}
.x65_c00044{left:404.192387pt;}
.x3a_c00044{left:405.947987pt;}
.x68_c00044{left:412.451187pt;}
.x28_c00044{left:415.605987pt;}
.x7a_c00044{left:423.539187pt;}
.xb_c00044{left:426.957987pt;}
.x73_c00044{left:433.483187pt;}
.x57_c00044{left:436.325587pt;}
.x4f_c00044{left:443.343587pt;}
.x3b_c00044{left:445.855987pt;}
.x64_c00044{left:451.377987pt;}
.x6e_c00044{left:453.459187pt;}
.x22_c00044{left:455.390787pt;}
.x2e_c00044{left:456.904387pt;}
.x80_c00044{left:462.857587pt;}
.x34_c00044{left:464.780387pt;}
.x58_c00044{left:473.373587pt;}
.x16_c00044{left:474.711187pt;}
.x46_c00044{left:482.287987pt;}
.xf_c00044{left:483.920387pt;}
.x23_c00044{left:484.826787pt;}
.x70_c00044{left:491.061587pt;}
.x50_c00044{left:492.777587pt;}
.xc_c00044{left:495.223987pt;}
.x59_c00044{left:502.277187pt;}
.x17_c00044{left:503.363987pt;}
.x5f_c00044{left:511.288387pt;}
.x74_c00044{left:512.304787pt;}
.x2f_c00044{left:514.271587pt;}
.x66_c00044{left:521.109187pt;}
.xd_c00044{left:524.413587pt;}
.x88_c00044{left:533.283987pt;}
.x18_c00044{left:534.260787pt;}
.x47_c00044{left:541.709987pt;}
.x3f_c00044{left:543.346787pt;}
.x3c_c00044{left:553.246787pt;}
.x67_c00044{left:561.483587pt;}
.x30_c00044{left:562.645187pt;}
.x29_c00044{left:564.655987pt;}
.x24_c00044{left:565.755987pt;}
.x48_c00044{left:571.189987pt;}
.x5a_c00044{left:572.276787pt;}
.x3_c00044{left:573.187587pt;}
.x6f_c00044{left:580.724787pt;}
.x7b_c00044{left:581.829187pt;}
.x35_c00044{left:583.615587pt;}
.xe_c00044{left:593.379187pt;}
.x31_c00044{left:596.208387pt;}
.x76_c00044{left:597.611987pt;}
.x19_c00044{left:602.201187pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fe904295da2b41eb98f7c6b2.woff2')format("woff");}.ff1_c00045{font-family:ff1_c00045;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00045;src:url('chunks/assets/font_9afa03ebfb3f08187f6c2d9e.woff2')format("woff");}.ff2_c00045{font-family:ff2_c00045;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00045;src:url('chunks/assets/font_a5358946e7a7414301350e86.woff2')format("woff");}.ff3_c00045{font-family:ff3_c00045;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00045;src:url('chunks/assets/font_c06ab2b2fefd87d649369949.woff2')format("woff");}.ff4_c00045{font-family:ff4_c00045;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00045;src:url('chunks/assets/font_d3d206b46b93718e7182aafd.woff2')format("woff");}.ff5_c00045{font-family:ff5_c00045;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m66_c00045{transform:matrix(0.053922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053922,0.000000,0.000000,0.250000,0,0);}
.m65_c00045{transform:matrix(0.080883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080883,0.000000,0.000000,0.250000,0,0);}
.m5e_c00045{transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);}
.m46_c00045{transform:matrix(0.178862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178862,0.000000,0.000000,0.250000,0,0);}
.m94_c00045{transform:matrix(0.183334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183334,0.000000,0.000000,0.250000,0,0);}
.m88_c00045{transform:matrix(0.192568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192568,0.000000,0.000000,0.250000,0,0);}
.m67_c00045{transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);}
.m23_c00045{transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);}
.m54_c00045{transform:matrix(0.248814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248814,0.000000,0.000000,0.250000,0,0);}
.m8a_c00045{transform:matrix(0.249994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249994,0.000000,0.000000,0.250000,0,0);}
.m3_c00045{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00045{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.m78_c00045{transform:matrix(0.252992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252992,0.000000,0.000000,0.250000,0,0);}
.m4_c00045{transform:matrix(0.254404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254404,0.000000,0.000000,0.250000,0,0);}
.m18_c00045{transform:matrix(0.255192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255192,0.000000,0.000000,0.250000,0,0);}
.m2f_c00045{transform:matrix(0.255669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255669,0.000000,0.000000,0.250000,0,0);}
.m74_c00045{transform:matrix(0.256672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256672,0.000000,0.000000,0.250000,0,0);}
.m90_c00045{transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);}
.m87_c00045{transform:matrix(0.260426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260426,0.000000,0.000000,0.250000,0,0);}
.m64_c00045{transform:matrix(0.260838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260838,0.000000,0.000000,0.250000,0,0);}
.m80_c00045{transform:matrix(0.261057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261057,0.000000,0.000000,0.250000,0,0);}
.me_c00045{transform:matrix(0.261951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261951,0.000000,0.000000,0.250000,0,0);}
.m6c_c00045{transform:matrix(0.262273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262273,0.000000,0.000000,0.250000,0,0);}
.m50_c00045{transform:matrix(0.262708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262708,0.000000,0.000000,0.250000,0,0);}
.m5b_c00045{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m1a_c00045{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m5f_c00045{transform:matrix(0.265213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265213,0.000000,0.000000,0.250000,0,0);}
.m29_c00045{transform:matrix(0.265487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265487,0.000000,0.000000,0.250000,0,0);}
.m13_c00045{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.m7c_c00045{transform:matrix(0.267199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267199,0.000000,0.000000,0.250000,0,0);}
.m8b_c00045{transform:matrix(0.267692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267692,0.000000,0.000000,0.250000,0,0);}
.m0_c00045{transform:matrix(0.267814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267814,0.000000,0.000000,0.250000,0,0);}
.m10_c00045{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m49_c00045{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.m52_c00045{transform:matrix(0.268743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268743,0.000000,0.000000,0.250000,0,0);}
.m76_c00045{transform:matrix(0.268881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268881,0.000000,0.000000,0.250000,0,0);}
.m39_c00045{transform:matrix(0.269124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269124,0.000000,0.000000,0.250000,0,0);}
.m6f_c00045{transform:matrix(0.269156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269156,0.000000,0.000000,0.250000,0,0);}
.m8_c00045{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m6a_c00045{transform:matrix(0.272153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272153,0.000000,0.000000,0.250000,0,0);}
.m5_c00045{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m7a_c00045{transform:matrix(0.273069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273069,0.000000,0.000000,0.250000,0,0);}
.m86_c00045{transform:matrix(0.273432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273432,0.000000,0.000000,0.250000,0,0);}
.m51_c00045{transform:matrix(0.273580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273580,0.000000,0.000000,0.250000,0,0);}
.m58_c00045{transform:matrix(0.273807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273807,0.000000,0.000000,0.250000,0,0);}
.ma_c00045{transform:matrix(0.274027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274027,0.000000,0.000000,0.250000,0,0);}
.m20_c00045{transform:matrix(0.275208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275208,0.000000,0.000000,0.250000,0,0);}
.m72_c00045{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m7e_c00045{transform:matrix(0.276058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276058,0.000000,0.000000,0.250000,0,0);}
.m5a_c00045{transform:matrix(0.276265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276265,0.000000,0.000000,0.250000,0,0);}
.m31_c00045{transform:matrix(0.276482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276482,0.000000,0.000000,0.250000,0,0);}
.m4b_c00045{transform:matrix(0.277166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277166,0.000000,0.000000,0.250000,0,0);}
.m48_c00045{transform:matrix(0.277176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277176,0.000000,0.000000,0.250000,0,0);}
.m2c_c00045{transform:matrix(0.277896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277896,0.000000,0.000000,0.250000,0,0);}
.m70_c00045{transform:matrix(0.277923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277923,0.000000,0.000000,0.250000,0,0);}
.m25_c00045{transform:matrix(0.278912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278912,0.000000,0.000000,0.250000,0,0);}
.m40_c00045{transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);}
.m4c_c00045{transform:matrix(0.279701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279701,0.000000,0.000000,0.250000,0,0);}
.m73_c00045{transform:matrix(0.280169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280169,0.000000,0.000000,0.250000,0,0);}
.m45_c00045{transform:matrix(0.280227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280227,0.000000,0.000000,0.250000,0,0);}
.m21_c00045{transform:matrix(0.280900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280900,0.000000,0.000000,0.250000,0,0);}
.m1_c00045{transform:matrix(0.281813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281813,0.000000,0.000000,0.250000,0,0);}
.mf_c00045{transform:matrix(0.281909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281909,0.000000,0.000000,0.250000,0,0);}
.m4a_c00045{transform:matrix(0.284420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284420,0.000000,0.000000,0.250000,0,0);}
.m43_c00045{transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);}
.m1f_c00045{transform:matrix(0.286733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286733,0.000000,0.000000,0.250000,0,0);}
.m68_c00045{transform:matrix(0.287533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287533,0.000000,0.000000,0.250000,0,0);}
.md_c00045{transform:matrix(0.288051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288051,0.000000,0.000000,0.250000,0,0);}
.m38_c00045{transform:matrix(0.288069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288069,0.000000,0.000000,0.250000,0,0);}
.m47_c00045{transform:matrix(0.288643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288643,0.000000,0.000000,0.250000,0,0);}
.m9a_c00045{transform:matrix(0.291352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291352,0.000000,0.000000,0.250000,0,0);}
.m1e_c00045{transform:matrix(0.291828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291828,0.000000,0.000000,0.250000,0,0);}
.m8f_c00045{transform:matrix(0.292499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292499,0.000000,0.000000,0.250000,0,0);}
.m6e_c00045{transform:matrix(0.292612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292612,0.000000,0.000000,0.250000,0,0);}
.m2d_c00045{transform:matrix(0.292731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292731,0.000000,0.000000,0.250000,0,0);}
.m24_c00045{transform:matrix(0.293214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293214,0.000000,0.000000,0.250000,0,0);}
.m22_c00045{transform:matrix(0.293287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293287,0.000000,0.000000,0.250000,0,0);}
.m56_c00045{transform:matrix(0.293644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293644,0.000000,0.000000,0.250000,0,0);}
.m77_c00045{transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);}
.m6b_c00045{transform:matrix(0.293983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293983,0.000000,0.000000,0.250000,0,0);}
.m8e_c00045{transform:matrix(0.294162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294162,0.000000,0.000000,0.250000,0,0);}
.m69_c00045{transform:matrix(0.295634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295634,0.000000,0.000000,0.250000,0,0);}
.m3a_c00045{transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);}
.m60_c00045{transform:matrix(0.297018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297018,0.000000,0.000000,0.250000,0,0);}
.m81_c00045{transform:matrix(0.297931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297931,0.000000,0.000000,0.250000,0,0);}
.m82_c00045{transform:matrix(0.298547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298547,0.000000,0.000000,0.250000,0,0);}
.m7d_c00045{transform:matrix(0.299494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299494,0.000000,0.000000,0.250000,0,0);}
.m53_c00045{transform:matrix(0.300052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300052,0.000000,0.000000,0.250000,0,0);}
.m19_c00045{transform:matrix(0.300113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300113,0.000000,0.000000,0.250000,0,0);}
.m75_c00045{transform:matrix(0.300361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300361,0.000000,0.000000,0.250000,0,0);}
.m4f_c00045{transform:matrix(0.300527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300527,0.000000,0.000000,0.250000,0,0);}
.m16_c00045{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m61_c00045{transform:matrix(0.302549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302549,0.000000,0.000000,0.250000,0,0);}
.m57_c00045{transform:matrix(0.303214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303214,0.000000,0.000000,0.250000,0,0);}
.m3d_c00045{transform:matrix(0.303591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303591,0.000000,0.000000,0.250000,0,0);}
.m7f_c00045{transform:matrix(0.304561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304561,0.000000,0.000000,0.250000,0,0);}
.m1c_c00045{transform:matrix(0.304592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304592,0.000000,0.000000,0.250000,0,0);}
.m3e_c00045{transform:matrix(0.304625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304625,0.000000,0.000000,0.250000,0,0);}
.m85_c00045{transform:matrix(0.306004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306004,0.000000,0.000000,0.250000,0,0);}
.m79_c00045{transform:matrix(0.306299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306299,0.000000,0.000000,0.250000,0,0);}
.m17_c00045{transform:matrix(0.306888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306888,0.000000,0.000000,0.250000,0,0);}
.m63_c00045{transform:matrix(0.307282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307282,0.000000,0.000000,0.250000,0,0);}
.m98_c00045{transform:matrix(0.307604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307604,0.000000,0.000000,0.250000,0,0);}
.m41_c00045{transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);}
.m2b_c00045{transform:matrix(0.308543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308543,0.000000,0.000000,0.250000,0,0);}
.m99_c00045{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m4d_c00045{transform:matrix(0.308966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308966,0.000000,0.000000,0.250000,0,0);}
.m5c_c00045{transform:matrix(0.310152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310152,0.000000,0.000000,0.250000,0,0);}
.m84_c00045{transform:matrix(0.310202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310202,0.000000,0.000000,0.250000,0,0);}
.m1b_c00045{transform:matrix(0.310497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310497,0.000000,0.000000,0.250000,0,0);}
.m26_c00045{transform:matrix(0.310783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310783,0.000000,0.000000,0.250000,0,0);}
.m28_c00045{transform:matrix(0.311895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311895,0.000000,0.000000,0.250000,0,0);}
.mc_c00045{transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);}
.m7b_c00045{transform:matrix(0.312157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312157,0.000000,0.000000,0.250000,0,0);}
.m36_c00045{transform:matrix(0.313839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313839,0.000000,0.000000,0.250000,0,0);}
.m12_c00045{transform:matrix(0.314528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314528,0.000000,0.000000,0.250000,0,0);}
.m1d_c00045{transform:matrix(0.315503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315503,0.000000,0.000000,0.250000,0,0);}
.m37_c00045{transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);}
.m44_c00045{transform:matrix(0.315648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315648,0.000000,0.000000,0.250000,0,0);}
.mb_c00045{transform:matrix(0.315917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315917,0.000000,0.000000,0.250000,0,0);}
.m97_c00045{transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);}
.m93_c00045{transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);}
.m89_c00045{transform:matrix(0.316427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316427,0.000000,0.000000,0.250000,0,0);}
.m6d_c00045{transform:matrix(0.317408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317408,0.000000,0.000000,0.250000,0,0);}
.m91_c00045{transform:matrix(0.317953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317953,0.000000,0.000000,0.250000,0,0);}
.m15_c00045{transform:matrix(0.320374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320374,0.000000,0.000000,0.250000,0,0);}
.m3b_c00045{transform:matrix(0.320534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320534,0.000000,0.000000,0.250000,0,0);}
.m8d_c00045{transform:matrix(0.321060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321060,0.000000,0.000000,0.250000,0,0);}
.m33_c00045{transform:matrix(0.321472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321472,0.000000,0.000000,0.250000,0,0);}
.m6_c00045{transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);}
.m95_c00045{transform:matrix(0.322461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322461,0.000000,0.000000,0.250000,0,0);}
.m42_c00045{transform:matrix(0.323033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323033,0.000000,0.000000,0.250000,0,0);}
.m62_c00045{transform:matrix(0.323511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323511,0.000000,0.000000,0.250000,0,0);}
.m92_c00045{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.m7_c00045{transform:matrix(0.325086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325086,0.000000,0.000000,0.250000,0,0);}
.m83_c00045{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m11_c00045{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.m2_c00045{transform:matrix(0.328636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328636,0.000000,0.000000,0.250000,0,0);}
.m71_c00045{transform:matrix(0.328769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328769,0.000000,0.000000,0.250000,0,0);}
.m32_c00045{transform:matrix(0.328813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328813,0.000000,0.000000,0.250000,0,0);}
.m35_c00045{transform:matrix(0.328916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328916,0.000000,0.000000,0.250000,0,0);}
.m34_c00045{transform:matrix(0.329458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329458,0.000000,0.000000,0.250000,0,0);}
.m8c_c00045{transform:matrix(0.334575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334575,0.000000,0.000000,0.250000,0,0);}
.m14_c00045{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m3c_c00045{transform:matrix(0.340744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340744,0.000000,0.000000,0.250000,0,0);}
.m55_c00045{transform:matrix(0.343489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343489,0.000000,0.000000,0.250000,0,0);}
.m9_c00045{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m4e_c00045{transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);}
.m96_c00045{transform:matrix(0.351400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351400,0.000000,0.000000,0.250000,0,0);}
.m2a_c00045{transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);}
.m59_c00045{transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);}
.m3f_c00045{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m30_c00045{transform:matrix(0.355345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355345,0.000000,0.000000,0.250000,0,0);}
.m27_c00045{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m5d_c00045{transform:matrix(0.390716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390716,0.000000,0.000000,0.250000,0,0);}
.v0_c00045{vertical-align:0.000000px;}
.ls6_c00045{letter-spacing:-2.744280px;}
.ls10_c00045{letter-spacing:-2.375762px;}
.ls8_c00045{letter-spacing:-1.419185px;}
.ls4_c00045{letter-spacing:0.000000px;}
.lsb_c00045{letter-spacing:1.685772px;}
.ls7_c00045{letter-spacing:2.509056px;}
.ls5_c00045{letter-spacing:2.877574px;}
.ls12_c00045{letter-spacing:3.177900px;}
.lsc_c00045{letter-spacing:3.425400px;}
.lsa_c00045{letter-spacing:3.653110px;}
.ls11_c00045{letter-spacing:3.700858px;}
.lse_c00045{letter-spacing:3.716539px;}
.ls3_c00045{letter-spacing:3.920400px;}
.ls2_c00045{letter-spacing:4.108500px;}
.lsd_c00045{letter-spacing:31.363200px;}
.lsf_c00045{letter-spacing:48.470598px;}
.ls13_c00045{letter-spacing:52.747398px;}
.ls14_c00045{letter-spacing:57.024198px;}
.ls9_c00045{letter-spacing:58.449798px;}
.ls0_c00045{letter-spacing:61.380000px;}
.ls1_c00045{letter-spacing:88.836264px;}
.sc__c00045{text-shadow:none;}
.sc0_c00045{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00045{-webkit-text-stroke:0px transparent;}
.sc0_c00045{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00045{word-spacing:-19.602000px;}
.ws1_c00045{word-spacing:0.000000px;}
._2_c00045{margin-left:-8.439464px;}
._0_c00045{margin-left:-2.273832px;}
._6_c00045{width:6.408072px;}
._1_c00045{width:12.858912px;}
._5_c00045{width:111.745656px;}
._3_c00045{width:204.457660px;}
._4_c00045{width:254.427514px;}
.fc0_c00045{color:transparent;}
.fs10_c00045{font-size:3.168000px;}
.fs7_c00045{font-size:25.146000px;}
.fs2_c00045{font-size:27.720000px;}
.fs8_c00045{font-size:31.363200px;}
.fs14_c00045{font-size:34.452000px;}
.fsa_c00045{font-size:39.204000px;}
.fs9_c00045{font-size:48.470598px;}
.fs12_c00045{font-size:52.747398px;}
.fs5_c00045{font-size:56.628000px;}
.fs13_c00045{font-size:57.024198px;}
.fs3_c00045{font-size:58.449798px;}
.fsf_c00045{font-size:60.192000px;}
.fsb_c00045{font-size:63.558000px;}
.fs11_c00045{font-size:66.528000px;}
.fs6_c00045{font-size:68.508000px;}
.fse_c00045{font-size:69.696198px;}
.fs4_c00045{font-size:73.062198px;}
.fsd_c00045{font-size:76.032198px;}
.fs1_c00045{font-size:78.408000px;}
.fsc_c00045{font-size:79.200000px;}
.fs0_c00045{font-size:82.170000px;}
.y0_c00045{bottom:0.000000px;}
.y1_c00045{bottom:76.500000px;}
.y1f_c00045{bottom:163.138185px;}
.y1e_c00045{bottom:170.271135px;}
.y1d_c00045{bottom:207.688185px;}
.y1c_c00045{bottom:240.125535px;}
.y1b_c00045{bottom:272.914335px;}
.y1a_c00045{bottom:299.644335px;}
.y19_c00045{bottom:305.703135px;}
.y17_c00045{bottom:370.211535px;}
.y16_c00045{bottom:402.287535px;}
.y15_c00045{bottom:435.427785px;}
.y14_c00045{bottom:467.865135px;}
.y18_c00045{bottom:470.003535px;}
.y13_c00045{bottom:480.690585px;}
.y12_c00045{bottom:491.387535px;}
.y10_c00045{bottom:499.584735px;}
.y11_c00045{bottom:500.297535px;}
.yf_c00045{bottom:524.176335px;}
.ye_c00045{bottom:532.368585px;}
.yd_c00045{bottom:565.518735px;}
.yc_c00045{bottom:598.307535px;}
.yb_c00045{bottom:631.096335px;}
.ya_c00045{bottom:696.317535px;}
.y9_c00045{bottom:728.749935px;}
.y8_c00045{bottom:761.182335px;}
.y7_c00045{bottom:793.609785px;}
.y6_c00045{bottom:826.759935px;}
.y5_c00045{bottom:860.617935px;}
.y4_c00045{bottom:895.188735px;}
.y3_c00045{bottom:926.551935px;}
.y2_c00045{bottom:1068.750585px;}
.ha_c00045{height:20.887891px;}
.h9_c00045{height:26.226492px;}
.h4_c00045{height:28.911094px;}
.hb_c00045{height:32.281418px;}
.h11_c00045{height:34.721156px;}
.hf_c00045{height:35.129767px;}
.h10_c00045{height:37.978116px;}
.hc_c00045{height:38.476582px;}
.h5_c00045{height:38.927565px;}
.h7_c00045{height:59.061234px;}
.hd_c00045{height:66.289008px;}
.h8_c00045{height:67.236855px;}
.h6_c00045{height:71.706552px;}
.h3_c00045{height:76.953164px;}
.he_c00045{height:79.818750px;}
.h2_c00045{height:80.645361px;}
.h1_c00045{height:1110.000000px;}
.h0_c00045{height:1263.000000px;}
.w1_c00045{width:733.500000px;}
.w0_c00045{width:892.500000px;}
.x0_c00045{left:0.000000px;}
.x3_c00045{left:59.884635px;}
.x10_c00045{left:61.250835px;}
.x5c_c00045{left:62.824935px;}
.x1_c00045{left:79.500000px;}
.x20_c00045{left:104.147535px;}
.x55_c00045{left:105.276135px;}
.x6_c00045{left:113.250585px;}
.x1a_c00045{left:115.230585px;}
.x5d_c00045{left:116.581935px;}
.x36_c00045{left:124.546485px;}
.x4_c00045{left:126.308685px;}
.x21_c00045{left:136.287885px;}
.x11_c00045{left:146.088885px;}
.x3e_c00045{left:147.494685px;}
.x7_c00045{left:158.043135px;}
.x59_c00045{left:159.320235px;}
.x4a_c00045{left:160.750785px;}
.x4b_c00045{left:170.017185px;}
.x2b_c00045{left:180.323085px;}
.x5e_c00045{left:181.897185px;}
.x22_c00045{left:190.643835px;}
.x1b_c00045{left:191.915985px;}
.x2c_c00045{left:203.286135px;}
.x12_c00045{left:214.017735px;}
.x23_c00045{left:224.640435px;}
.x5f_c00045{left:226.615485px;}
.x4e_c00045{left:227.828235px;}
.x54_c00045{left:231.174435px;}
.x8_c00045{left:235.738335px;}
.x60_c00045{left:238.708335px;}
.x3c_c00045{left:247.360935px;}
.x46_c00045{left:257.290635px;}
.x1c_c00045{left:258.359835px;}
.x24_c00045{left:268.764735px;}
.x9_c00045{left:269.888385px;}
.x3f_c00045{left:279.397335px;}
.x42_c00045{left:289.059735px;}
.x37_c00045{left:290.698185px;}
.x2d_c00045{left:291.985185px;}
.x31_c00045{left:301.642635px;}
.x4c_c00045{left:302.706885px;}
.x13_c00045{left:313.438485px;}
.xa_c00045{left:325.150185px;}
.x4f_c00045{left:334.901685px;}
.x4d_c00045{left:336.059985px;}
.x14_c00045{left:347.276685px;}
.x3d_c00045{left:358.156785px;}
.x47_c00045{left:368.477535px;}
.x5a_c00045{left:369.734835px;}
.x25_c00045{left:380.080335px;}
.x56_c00045{left:381.436635px;}
.x15_c00045{left:391.801935px;}
.x38_c00045{left:401.786085px;}
.xb_c00045{left:402.870135px;}
.x2e_c00045{left:412.334535px;}
.x57_c00045{left:413.537385px;}
.x1d_c00045{left:423.714585px;}
.x39_c00045{left:434.619435px;}
.xc_c00045{left:435.649035px;}
.x3a_c00045{left:445.153035px;}
.x26_c00045{left:446.375685px;}
.x40_c00045{left:457.602285px;}
.xd_c00045{left:468.724935px;}
.x32_c00045{left:478.773435px;}
.x52_c00045{left:480.585135px;}
.x1e_c00045{left:490.534635px;}
.x27_c00045{left:501.543435px;}
.x16_c00045{left:513.294735px;}
.x43_c00045{left:523.363035px;}
.x53_c00045{left:525.110385px;}
.x2f_c00045{left:534.921285px;}
.x17_c00045{left:545.395485px;}
.xe_c00045{left:556.384485px;}
.x33_c00045{left:567.071535px;}
.x28_c00045{left:568.610985px;}
.x3b_c00045{left:578.600085px;}
.x58_c00045{left:579.689085px;}
.x29_c00045{left:588.737685px;}
.x48_c00045{left:589.811835px;}
.x30_c00045{left:599.786085px;}
.x50_c00045{left:601.295835px;}
.x1f_c00045{left:611.190885px;}
.x18_c00045{left:612.319485px;}
.xf_c00045{left:623.115435px;}
.x2_c00045{left:632.713485px;}
.x49_c00045{left:634.554885px;}
.x34_c00045{left:643.984635px;}
.x19_c00045{left:645.123135px;}
.x41_c00045{left:656.250735px;}
.x2a_c00045{left:667.259535px;}
.x5b_c00045{left:669.031635px;}
.x5_c00045{left:670.650285px;}
.x44_c00045{left:674.674635px;}
.x45_c00045{left:676.288335px;}
.x35_c00045{left:678.005985px;}
.x51_c00045{left:679.154385px;}
@media print{
.v0_c00045{vertical-align:0.000000pt;}
.ls6_c00045{letter-spacing:-2.439360pt;}
.ls10_c00045{letter-spacing:-2.111789pt;}
.ls8_c00045{letter-spacing:-1.261498pt;}
.ls4_c00045{letter-spacing:0.000000pt;}
.lsb_c00045{letter-spacing:1.498464pt;}
.ls7_c00045{letter-spacing:2.230272pt;}
.ls5_c00045{letter-spacing:2.557843pt;}
.ls12_c00045{letter-spacing:2.824800pt;}
.lsc_c00045{letter-spacing:3.044800pt;}
.lsa_c00045{letter-spacing:3.247209pt;}
.ls11_c00045{letter-spacing:3.289651pt;}
.lse_c00045{letter-spacing:3.303590pt;}
.ls3_c00045{letter-spacing:3.484800pt;}
.ls2_c00045{letter-spacing:3.652000pt;}
.lsd_c00045{letter-spacing:27.878400pt;}
.lsf_c00045{letter-spacing:43.084976pt;}
.ls13_c00045{letter-spacing:46.886576pt;}
.ls14_c00045{letter-spacing:50.688176pt;}
.ls9_c00045{letter-spacing:51.955376pt;}
.ls0_c00045{letter-spacing:54.560000pt;}
.ls1_c00045{letter-spacing:78.965568pt;}
.ws0_c00045{word-spacing:-17.424000pt;}
.ws1_c00045{word-spacing:0.000000pt;}
._2_c00045{margin-left:-7.501746pt;}
._0_c00045{margin-left:-2.021184pt;}
._6_c00045{width:5.696064pt;}
._1_c00045{width:11.430144pt;}
._5_c00045{width:99.329472pt;}
._3_c00045{width:181.740142pt;}
._4_c00045{width:226.157790pt;}
.fs10_c00045{font-size:2.816000pt;}
.fs7_c00045{font-size:22.352000pt;}
.fs2_c00045{font-size:24.640000pt;}
.fs8_c00045{font-size:27.878400pt;}
.fs14_c00045{font-size:30.624000pt;}
.fsa_c00045{font-size:34.848000pt;}
.fs9_c00045{font-size:43.084976pt;}
.fs12_c00045{font-size:46.886576pt;}
.fs5_c00045{font-size:50.336000pt;}
.fs13_c00045{font-size:50.688176pt;}
.fs3_c00045{font-size:51.955376pt;}
.fsf_c00045{font-size:53.504000pt;}
.fsb_c00045{font-size:56.496000pt;}
.fs11_c00045{font-size:59.136000pt;}
.fs6_c00045{font-size:60.896000pt;}
.fse_c00045{font-size:61.952176pt;}
.fs4_c00045{font-size:64.944176pt;}
.fsd_c00045{font-size:67.584176pt;}
.fs1_c00045{font-size:69.696000pt;}
.fsc_c00045{font-size:70.400000pt;}
.fs0_c00045{font-size:73.040000pt;}
.y0_c00045{bottom:0.000000pt;}
.y1_c00045{bottom:68.000000pt;}
.y1f_c00045{bottom:145.011720pt;}
.y1e_c00045{bottom:151.352120pt;}
.y1d_c00045{bottom:184.611720pt;}
.y1c_c00045{bottom:213.444920pt;}
.y1b_c00045{bottom:242.590520pt;}
.y1a_c00045{bottom:266.350520pt;}
.y19_c00045{bottom:271.736120pt;}
.y17_c00045{bottom:329.076920pt;}
.y16_c00045{bottom:357.588920pt;}
.y15_c00045{bottom:387.046920pt;}
.y14_c00045{bottom:415.880120pt;}
.y18_c00045{bottom:417.780920pt;}
.y13_c00045{bottom:427.280520pt;}
.y12_c00045{bottom:436.788920pt;}
.y10_c00045{bottom:444.075320pt;}
.y11_c00045{bottom:444.708920pt;}
.yf_c00045{bottom:465.934520pt;}
.ye_c00045{bottom:473.216520pt;}
.yd_c00045{bottom:502.683320pt;}
.yc_c00045{bottom:531.828920pt;}
.yb_c00045{bottom:560.974520pt;}
.ya_c00045{bottom:618.948920pt;}
.y9_c00045{bottom:647.777720pt;}
.y8_c00045{bottom:676.606520pt;}
.y7_c00045{bottom:705.430920pt;}
.y6_c00045{bottom:734.897720pt;}
.y5_c00045{bottom:764.993720pt;}
.y4_c00045{bottom:795.723320pt;}
.y3_c00045{bottom:823.601720pt;}
.y2_c00045{bottom:950.000520pt;}
.ha_c00045{height:18.567014pt;}
.h9_c00045{height:23.312438pt;}
.h4_c00045{height:25.698750pt;}
.hb_c00045{height:28.694594pt;}
.h11_c00045{height:30.863250pt;}
.hf_c00045{height:31.226460pt;}
.h10_c00045{height:33.758325pt;}
.hc_c00045{height:34.201406pt;}
.h5_c00045{height:34.602280pt;}
.h7_c00045{height:52.498875pt;}
.hd_c00045{height:58.923563pt;}
.h8_c00045{height:59.766094pt;}
.h6_c00045{height:63.739157pt;}
.h3_c00045{height:68.402813pt;}
.he_c00045{height:70.950000pt;}
.h2_c00045{height:71.684766pt;}
.h1_c00045{height:986.666667pt;}
.h0_c00045{height:1122.666667pt;}
.w1_c00045{width:652.000000pt;}
.w0_c00045{width:793.333333pt;}
.x0_c00045{left:0.000000pt;}
.x3_c00045{left:53.230787pt;}
.x10_c00045{left:54.445187pt;}
.x5c_c00045{left:55.844387pt;}
.x1_c00045{left:70.666667pt;}
.x20_c00045{left:92.575587pt;}
.x55_c00045{left:93.578787pt;}
.x6_c00045{left:100.667187pt;}
.x1a_c00045{left:102.427187pt;}
.x5d_c00045{left:103.628387pt;}
.x36_c00045{left:110.707987pt;}
.x4_c00045{left:112.274387pt;}
.x21_c00045{left:121.144787pt;}
.x11_c00045{left:129.856787pt;}
.x3e_c00045{left:131.106387pt;}
.x7_c00045{left:140.482787pt;}
.x59_c00045{left:141.617987pt;}
.x4a_c00045{left:142.889587pt;}
.x4b_c00045{left:151.126387pt;}
.x2b_c00045{left:160.287187pt;}
.x5e_c00045{left:161.686387pt;}
.x22_c00045{left:169.461187pt;}
.x1b_c00045{left:170.591987pt;}
.x2c_c00045{left:180.698787pt;}
.x12_c00045{left:190.237987pt;}
.x23_c00045{left:199.680387pt;}
.x5f_c00045{left:201.435987pt;}
.x4e_c00045{left:202.513987pt;}
.x54_c00045{left:205.488387pt;}
.x8_c00045{left:209.545187pt;}
.x60_c00045{left:212.185187pt;}
.x3c_c00045{left:219.876387pt;}
.x46_c00045{left:228.702787pt;}
.x1c_c00045{left:229.653187pt;}
.x24_c00045{left:238.901987pt;}
.x9_c00045{left:239.900787pt;}
.x3f_c00045{left:248.353187pt;}
.x42_c00045{left:256.941987pt;}
.x37_c00045{left:258.398387pt;}
.x2d_c00045{left:259.542387pt;}
.x31_c00045{left:268.126787pt;}
.x4c_c00045{left:269.072787pt;}
.x13_c00045{left:278.611987pt;}
.xa_c00045{left:289.022387pt;}
.x4f_c00045{left:297.690387pt;}
.x4d_c00045{left:298.719987pt;}
.x14_c00045{left:308.690387pt;}
.x3d_c00045{left:318.361587pt;}
.x47_c00045{left:327.535587pt;}
.x5a_c00045{left:328.653187pt;}
.x25_c00045{left:337.849187pt;}
.x56_c00045{left:339.054787pt;}
.x15_c00045{left:348.268387pt;}
.x38_c00045{left:357.143187pt;}
.xb_c00045{left:358.106787pt;}
.x2e_c00045{left:366.519587pt;}
.x57_c00045{left:367.588787pt;}
.x1d_c00045{left:376.635187pt;}
.x39_c00045{left:386.328387pt;}
.xc_c00045{left:387.243587pt;}
.x3a_c00045{left:395.691587pt;}
.x26_c00045{left:396.778387pt;}
.x40_c00045{left:406.757587pt;}
.xd_c00045{left:416.644387pt;}
.x32_c00045{left:425.576387pt;}
.x52_c00045{left:427.186787pt;}
.x1e_c00045{left:436.030787pt;}
.x27_c00045{left:445.816387pt;}
.x16_c00045{left:456.261987pt;}
.x43_c00045{left:465.211587pt;}
.x53_c00045{left:466.764787pt;}
.x2f_c00045{left:475.485587pt;}
.x17_c00045{left:484.795987pt;}
.xe_c00045{left:494.563987pt;}
.x33_c00045{left:504.063587pt;}
.x28_c00045{left:505.431987pt;}
.x3b_c00045{left:514.311187pt;}
.x58_c00045{left:515.279187pt;}
.x29_c00045{left:523.322387pt;}
.x48_c00045{left:524.277187pt;}
.x30_c00045{left:533.143187pt;}
.x50_c00045{left:534.485187pt;}
.x1f_c00045{left:543.280787pt;}
.x18_c00045{left:544.283987pt;}
.xf_c00045{left:553.880387pt;}
.x2_c00045{left:562.411987pt;}
.x49_c00045{left:564.048787pt;}
.x34_c00045{left:572.430787pt;}
.x19_c00045{left:573.442787pt;}
.x41_c00045{left:583.333987pt;}
.x2a_c00045{left:593.119587pt;}
.x5b_c00045{left:594.694787pt;}
.x5_c00045{left:596.133587pt;}
.x44_c00045{left:599.710787pt;}
.x45_c00045{left:601.145187pt;}
.x35_c00045{left:602.671987pt;}
.x51_c00045{left:603.692787pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_11a53f01e8a7fbf2a71ed311.woff2')format("woff");}.ff1_c00046{font-family:ff1_c00046;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00046;src:url('chunks/assets/font_0411f1b632f77aa9a3d86a22.woff2')format("woff");}.ff2_c00046{font-family:ff2_c00046;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00046;src:url('chunks/assets/font_a98e5afda91b06594c68de3e.woff2')format("woff");}.ff3_c00046{font-family:ff3_c00046;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ma2_c00046{transform:matrix(0.161622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161622,0.000000,0.000000,0.250000,0,0);}
.m73_c00046{transform:matrix(0.163877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163877,0.000000,0.000000,0.250000,0,0);}
.m72_c00046{transform:matrix(0.185842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185842,0.000000,0.000000,0.250000,0,0);}
.m78_c00046{transform:matrix(0.235156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235156,0.000000,0.000000,0.250000,0,0);}
.m7_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);}
.m37_c00046{transform:matrix(0.252992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252992,0.000000,0.000000,0.250000,0,0);}
.m4e_c00046{transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);}
.mac_c00046{transform:matrix(0.254527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254527,0.000000,0.000000,0.250000,0,0);}
.m1e_c00046{transform:matrix(0.255172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255172,0.000000,0.000000,0.250000,0,0);}
.m5d_c00046{transform:matrix(0.257485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257485,0.000000,0.000000,0.250000,0,0);}
.m17_c00046{transform:matrix(0.257683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257683,0.000000,0.000000,0.250000,0,0);}
.m94_c00046{transform:matrix(0.258203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258203,0.000000,0.000000,0.250000,0,0);}
.m4f_c00046{transform:matrix(0.258217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258217,0.000000,0.000000,0.250000,0,0);}
.m18_c00046{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m9f_c00046{transform:matrix(0.259095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259095,0.000000,0.000000,0.250000,0,0);}
.mc_c00046{transform:matrix(0.259333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259333,0.000000,0.000000,0.250000,0,0);}
.m42_c00046{transform:matrix(0.259358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259358,0.000000,0.000000,0.250000,0,0);}
.m19_c00046{transform:matrix(0.259926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259926,0.000000,0.000000,0.250000,0,0);}
.m3b_c00046{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m91_c00046{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.m3a_c00046{transform:matrix(0.262337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262337,0.000000,0.000000,0.250000,0,0);}
.m32_c00046{transform:matrix(0.262979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262979,0.000000,0.000000,0.250000,0,0);}
.m6e_c00046{transform:matrix(0.263149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263149,0.000000,0.000000,0.250000,0,0);}
.m3f_c00046{transform:matrix(0.263235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263235,0.000000,0.000000,0.250000,0,0);}
.m5_c00046{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m2e_c00046{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m6b_c00046{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m5e_c00046{transform:matrix(0.267065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267065,0.000000,0.000000,0.250000,0,0);}
.m40_c00046{transform:matrix(0.267888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267888,0.000000,0.000000,0.250000,0,0);}
.m9_c00046{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m0_c00046{transform:matrix(0.268699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268699,0.000000,0.000000,0.250000,0,0);}
.m57_c00046{transform:matrix(0.268710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268710,0.000000,0.000000,0.250000,0,0);}
.m1f_c00046{transform:matrix(0.269066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269066,0.000000,0.000000,0.250000,0,0);}
.m79_c00046{transform:matrix(0.269202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269202,0.000000,0.000000,0.250000,0,0);}
.m95_c00046{transform:matrix(0.269234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269234,0.000000,0.000000,0.250000,0,0);}
.m63_c00046{transform:matrix(0.269336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269336,0.000000,0.000000,0.250000,0,0);}
.m9d_c00046{transform:matrix(0.269597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269597,0.000000,0.000000,0.250000,0,0);}
.m5f_c00046{transform:matrix(0.269857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269857,0.000000,0.000000,0.250000,0,0);}
.m45_c00046{transform:matrix(0.270571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270571,0.000000,0.000000,0.250000,0,0);}
.m20_c00046{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.ma7_c00046{transform:matrix(0.270973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270973,0.000000,0.000000,0.250000,0,0);}
.ma5_c00046{transform:matrix(0.271097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271097,0.000000,0.000000,0.250000,0,0);}
.m86_c00046{transform:matrix(0.271293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271293,0.000000,0.000000,0.250000,0,0);}
.m48_c00046{transform:matrix(0.271836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271836,0.000000,0.000000,0.250000,0,0);}
.ma0_c00046{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.ma8_c00046{transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);}
.m28_c00046{transform:matrix(0.273210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273210,0.000000,0.000000,0.250000,0,0);}
.m41_c00046{transform:matrix(0.273513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273513,0.000000,0.000000,0.250000,0,0);}
.m1d_c00046{transform:matrix(0.274025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274025,0.000000,0.000000,0.250000,0,0);}
.m21_c00046{transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);}
.m6c_c00046{transform:matrix(0.274947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274947,0.000000,0.000000,0.250000,0,0);}
.mb_c00046{transform:matrix(0.276653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276653,0.000000,0.000000,0.250000,0,0);}
.m11_c00046{transform:matrix(0.277164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277164,0.000000,0.000000,0.250000,0,0);}
.m3d_c00046{transform:matrix(0.278516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278516,0.000000,0.000000,0.250000,0,0);}
.m9e_c00046{transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);}
.m85_c00046{transform:matrix(0.279268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279268,0.000000,0.000000,0.250000,0,0);}
.m82_c00046{transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);}
.m30_c00046{transform:matrix(0.280177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280177,0.000000,0.000000,0.250000,0,0);}
.m8b_c00046{transform:matrix(0.280247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280247,0.000000,0.000000,0.250000,0,0);}
.m34_c00046{transform:matrix(0.281102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281102,0.000000,0.000000,0.250000,0,0);}
.m68_c00046{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.ma9_c00046{transform:matrix(0.282614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282614,0.000000,0.000000,0.250000,0,0);}
.m6_c00046{transform:matrix(0.283140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283140,0.000000,0.000000,0.250000,0,0);}
.m1b_c00046{transform:matrix(0.283249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283249,0.000000,0.000000,0.250000,0,0);}
.m76_c00046{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.mae_c00046{transform:matrix(0.286186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286186,0.000000,0.000000,0.250000,0,0);}
.m5a_c00046{transform:matrix(0.286569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286569,0.000000,0.000000,0.250000,0,0);}
.m62_c00046{transform:matrix(0.286973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286973,0.000000,0.000000,0.250000,0,0);}
.m67_c00046{transform:matrix(0.287929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287929,0.000000,0.000000,0.250000,0,0);}
.m74_c00046{transform:matrix(0.288052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288052,0.000000,0.000000,0.250000,0,0);}
.ma_c00046{transform:matrix(0.288304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288304,0.000000,0.000000,0.250000,0,0);}
.m4c_c00046{transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);}
.m4a_c00046{transform:matrix(0.288691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288691,0.000000,0.000000,0.250000,0,0);}
.m7f_c00046{transform:matrix(0.288974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288974,0.000000,0.000000,0.250000,0,0);}
.md_c00046{transform:matrix(0.289025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289025,0.000000,0.000000,0.250000,0,0);}
.m93_c00046{transform:matrix(0.289622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289622,0.000000,0.000000,0.250000,0,0);}
.ma4_c00046{transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);}
.m75_c00046{transform:matrix(0.290245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290245,0.000000,0.000000,0.250000,0,0);}
.m7c_c00046{transform:matrix(0.290577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290577,0.000000,0.000000,0.250000,0,0);}
.m96_c00046{transform:matrix(0.291020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291020,0.000000,0.000000,0.250000,0,0);}
.m5b_c00046{transform:matrix(0.291095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291095,0.000000,0.000000,0.250000,0,0);}
.m64_c00046{transform:matrix(0.291551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291551,0.000000,0.000000,0.250000,0,0);}
.m29_c00046{transform:matrix(0.292030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292030,0.000000,0.000000,0.250000,0,0);}
.mad_c00046{transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);}
.m58_c00046{transform:matrix(0.293911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293911,0.000000,0.000000,0.250000,0,0);}
.m83_c00046{transform:matrix(0.294178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294178,0.000000,0.000000,0.250000,0,0);}
.m7b_c00046{transform:matrix(0.295970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295970,0.000000,0.000000,0.250000,0,0);}
.m22_c00046{transform:matrix(0.296935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296935,0.000000,0.000000,0.250000,0,0);}
.m89_c00046{transform:matrix(0.297355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297355,0.000000,0.000000,0.250000,0,0);}
.m59_c00046{transform:matrix(0.297447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297447,0.000000,0.000000,0.250000,0,0);}
.m77_c00046{transform:matrix(0.299319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299319,0.000000,0.000000,0.250000,0,0);}
.m10_c00046{transform:matrix(0.299466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299466,0.000000,0.000000,0.250000,0,0);}
.mab_c00046{transform:matrix(0.299699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299699,0.000000,0.000000,0.250000,0,0);}
.m61_c00046{transform:matrix(0.300052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300052,0.000000,0.000000,0.250000,0,0);}
.m1c_c00046{transform:matrix(0.300200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300200,0.000000,0.000000,0.250000,0,0);}
.m25_c00046{transform:matrix(0.300361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300361,0.000000,0.000000,0.250000,0,0);}
.m47_c00046{transform:matrix(0.300748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300748,0.000000,0.000000,0.250000,0,0);}
.m9a_c00046{transform:matrix(0.301438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301438,0.000000,0.000000,0.250000,0,0);}
.m1_c00046{transform:matrix(0.301544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301544,0.000000,0.000000,0.250000,0,0);}
.m3c_c00046{transform:matrix(0.301891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301891,0.000000,0.000000,0.250000,0,0);}
.m8_c00046{transform:matrix(0.301915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301915,0.000000,0.000000,0.250000,0,0);}
.m43_c00046{transform:matrix(0.302049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302049,0.000000,0.000000,0.250000,0,0);}
.m66_c00046{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m8a_c00046{transform:matrix(0.302515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302515,0.000000,0.000000,0.250000,0,0);}
.m8d_c00046{transform:matrix(0.302665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302665,0.000000,0.000000,0.250000,0,0);}
.m81_c00046{transform:matrix(0.302767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302767,0.000000,0.000000,0.250000,0,0);}
.mf_c00046{transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);}
.m50_c00046{transform:matrix(0.303591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303591,0.000000,0.000000,0.250000,0,0);}
.m69_c00046{transform:matrix(0.303604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303604,0.000000,0.000000,0.250000,0,0);}
.m15_c00046{transform:matrix(0.303809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303809,0.000000,0.000000,0.250000,0,0);}
.m4_c00046{transform:matrix(0.303979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303979,0.000000,0.000000,0.250000,0,0);}
.m53_c00046{transform:matrix(0.304015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304015,0.000000,0.000000,0.250000,0,0);}
.m7e_c00046{transform:matrix(0.304481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304481,0.000000,0.000000,0.250000,0,0);}
.m2c_c00046{transform:matrix(0.304600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304600,0.000000,0.000000,0.250000,0,0);}
.m2d_c00046{transform:matrix(0.304985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304985,0.000000,0.000000,0.250000,0,0);}
.m7d_c00046{transform:matrix(0.305264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305264,0.000000,0.000000,0.250000,0,0);}
.maa_c00046{transform:matrix(0.305732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305732,0.000000,0.000000,0.250000,0,0);}
.m6a_c00046{transform:matrix(0.306181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306181,0.000000,0.000000,0.250000,0,0);}
.ma3_c00046{transform:matrix(0.306384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306384,0.000000,0.000000,0.250000,0,0);}
.m8f_c00046{transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);}
.m65_c00046{transform:matrix(0.308321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308321,0.000000,0.000000,0.250000,0,0);}
.m9b_c00046{transform:matrix(0.308564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308564,0.000000,0.000000,0.250000,0,0);}
.m3_c00046{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m97_c00046{transform:matrix(0.308602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308602,0.000000,0.000000,0.250000,0,0);}
.m16_c00046{transform:matrix(0.308899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308899,0.000000,0.000000,0.250000,0,0);}
.m88_c00046{transform:matrix(0.309093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309093,0.000000,0.000000,0.250000,0,0);}
.m80_c00046{transform:matrix(0.309211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309211,0.000000,0.000000,0.250000,0,0);}
.m90_c00046{transform:matrix(0.309819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309819,0.000000,0.000000,0.250000,0,0);}
.m5c_c00046{transform:matrix(0.309918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309918,0.000000,0.000000,0.250000,0,0);}
.m87_c00046{transform:matrix(0.310181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310181,0.000000,0.000000,0.250000,0,0);}
.m24_c00046{transform:matrix(0.310433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310433,0.000000,0.000000,0.250000,0,0);}
.m23_c00046{transform:matrix(0.311149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311149,0.000000,0.000000,0.250000,0,0);}
.ma1_c00046{transform:matrix(0.311255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311255,0.000000,0.000000,0.250000,0,0);}
.m44_c00046{transform:matrix(0.311967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311967,0.000000,0.000000,0.250000,0,0);}
.m14_c00046{transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);}
.m56_c00046{transform:matrix(0.312800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312800,0.000000,0.000000,0.250000,0,0);}
.m33_c00046{transform:matrix(0.313344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313344,0.000000,0.000000,0.250000,0,0);}
.m39_c00046{transform:matrix(0.314146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314146,0.000000,0.000000,0.250000,0,0);}
.m35_c00046{transform:matrix(0.315088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315088,0.000000,0.000000,0.250000,0,0);}
.m92_c00046{transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);}
.m8e_c00046{transform:matrix(0.316470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316470,0.000000,0.000000,0.250000,0,0);}
.m55_c00046{transform:matrix(0.316551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316551,0.000000,0.000000,0.250000,0,0);}
.m4d_c00046{transform:matrix(0.316723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316723,0.000000,0.000000,0.250000,0,0);}
.m1a_c00046{transform:matrix(0.317571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317571,0.000000,0.000000,0.250000,0,0);}
.m2b_c00046{transform:matrix(0.317774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317774,0.000000,0.000000,0.250000,0,0);}
.me_c00046{transform:matrix(0.318371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318371,0.000000,0.000000,0.250000,0,0);}
.m2_c00046{transform:matrix(0.320837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320837,0.000000,0.000000,0.250000,0,0);}
.m46_c00046{transform:matrix(0.320893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320893,0.000000,0.000000,0.250000,0,0);}
.m9c_c00046{transform:matrix(0.321186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321186,0.000000,0.000000,0.250000,0,0);}
.m99_c00046{transform:matrix(0.321773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321773,0.000000,0.000000,0.250000,0,0);}
.m31_c00046{transform:matrix(0.322538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322538,0.000000,0.000000,0.250000,0,0);}
.m51_c00046{transform:matrix(0.322548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322548,0.000000,0.000000,0.250000,0,0);}
.m26_c00046{transform:matrix(0.323033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323033,0.000000,0.000000,0.250000,0,0);}
.m38_c00046{transform:matrix(0.323357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323357,0.000000,0.000000,0.250000,0,0);}
.m70_c00046{transform:matrix(0.324065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324065,0.000000,0.000000,0.250000,0,0);}
.m2f_c00046{transform:matrix(0.326765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326765,0.000000,0.000000,0.250000,0,0);}
.m71_c00046{transform:matrix(0.327311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327311,0.000000,0.000000,0.250000,0,0);}
.m4b_c00046{transform:matrix(0.329979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329979,0.000000,0.000000,0.250000,0,0);}
.m60_c00046{transform:matrix(0.331424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331424,0.000000,0.000000,0.250000,0,0);}
.m84_c00046{transform:matrix(0.331802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331802,0.000000,0.000000,0.250000,0,0);}
.m6f_c00046{transform:matrix(0.331893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331893,0.000000,0.000000,0.250000,0,0);}
.m2a_c00046{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m54_c00046{transform:matrix(0.334800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334800,0.000000,0.000000,0.250000,0,0);}
.m49_c00046{transform:matrix(0.335156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335156,0.000000,0.000000,0.250000,0,0);}
.m27_c00046{transform:matrix(0.337312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337312,0.000000,0.000000,0.250000,0,0);}
.m36_c00046{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m12_c00046{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.m52_c00046{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m8c_c00046{transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);}
.m98_c00046{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m7a_c00046{transform:matrix(0.355967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355967,0.000000,0.000000,0.250000,0,0);}
.m3e_c00046{transform:matrix(0.357448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357448,0.000000,0.000000,0.250000,0,0);}
.m13_c00046{transform:matrix(0.363845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363845,0.000000,0.000000,0.250000,0,0);}
.m6d_c00046{transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);}
.ma6_c00046{transform:matrix(0.372213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372213,0.000000,0.000000,0.250000,0,0);}
.v1_c00046{vertical-align:-7.108200px;}
.v0_c00046{vertical-align:0.000000px;}
.v2_c00046{vertical-align:2.826648px;}
.v3_c00046{vertical-align:27.083232px;}
.lsf_c00046{letter-spacing:-2.744280px;}
.lsd_c00046{letter-spacing:-2.300767px;}
.ls9_c00046{letter-spacing:-1.897474px;}
.lsb_c00046{letter-spacing:-1.317254px;}
.ls8_c00046{letter-spacing:-0.290110px;}
.lse_c00046{letter-spacing:-0.023522px;}
.ls4_c00046{letter-spacing:0.000000px;}
.ls0_c00046{letter-spacing:0.101930px;}
.lsc_c00046{letter-spacing:0.493970px;}
.ls6_c00046{letter-spacing:0.533174px;}
.ls11_c00046{letter-spacing:1.583842px;}
.ls10_c00046{letter-spacing:2.509056px;}
.ls7_c00046{letter-spacing:3.544200px;}
.lsa_c00046{letter-spacing:3.643200px;}
.ls5_c00046{letter-spacing:3.724380px;}
.ls3_c00046{letter-spacing:3.920400px;}
.ls2_c00046{letter-spacing:4.207500px;}
.ls1_c00046{letter-spacing:27.806427px;}
.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:-22.111056px;}
.ws1_c00046{word-spacing:0.000000px;}
._8_c00046{margin-left:-3.370752px;}
._a_c00046{width:7.135128px;}
._b_c00046{width:17.092548px;}
._1_c00046{width:20.778516px;}
._0_c00046{width:24.683630px;}
._6_c00046{width:29.559816px;}
._9_c00046{width:31.887108px;}
._7_c00046{width:42.191345px;}
._5_c00046{width:52.014451px;}
._2_c00046{width:199.931506px;}
._3_c00046{width:220.873603px;}
._4_c00046{width:300.479900px;}
.fc0_c00046{color:transparent;}
.fsb_c00046{font-size:22.176000px;}
.fsa_c00046{font-size:22.374000px;}
.fs8_c00046{font-size:25.146000px;}
.fs9_c00046{font-size:27.720000px;}
.fs3_c00046{font-size:39.600000px;}
.fs7_c00046{font-size:65.736198px;}
.fs2_c00046{font-size:70.884000px;}
.fs5_c00046{font-size:72.864000px;}
.fs4_c00046{font-size:76.032198px;}
.fs6_c00046{font-size:76.824000px;}
.fs1_c00046{font-size:78.408000px;}
.fs0_c00046{font-size:84.150000px;}
.y0_c00046{bottom:0.000000px;}
.y21_c00046{bottom:3.119535px;}
.y1_c00046{bottom:76.500000px;}
.y20_c00046{bottom:77.250735px;}
.y1f_c00046{bottom:87.942735px;}
.y1e_c00046{bottom:136.051785px;}
.y1d_c00046{bottom:166.707135px;}
.y1c_c00046{bottom:204.485535px;}
.y1b_c00046{bottom:237.987135px;}
.y1a_c00046{bottom:302.490585px;}
.y19_c00046{bottom:334.927935px;}
.y18_c00046{bottom:367.711785px;}
.y17_c00046{bottom:400.149135px;}
.y16_c00046{bottom:432.581535px;}
.y14_c00046{bottom:434.358585px;}
.y15_c00046{bottom:439.353135px;}
.y13_c00046{bottom:465.008985px;}
.y12_c00046{bottom:497.084985px;}
.y11_c00046{bottom:529.165935px;}
.y10_c00046{bottom:561.598335px;}
.yf_c00046{bottom:594.738585px;}
.ye_c00046{bottom:629.309385px;}
.yd_c00046{bottom:662.098185px;}
.yc_c00046{bottom:687.402585px;}
.yb_c00046{bottom:695.248335px;}
.ya_c00046{bottom:710.568585px;}
.y9_c00046{bottom:727.319385px;}
.y8_c00046{bottom:759.400335px;}
.y7_c00046{bottom:791.832735px;}
.y6_c00046{bottom:823.903785px;}
.y5_c00046{bottom:856.692585px;}
.y4_c00046{bottom:890.199135px;}
.y3_c00046{bottom:922.631535px;}
.y2_c00046{bottom:1085.144985px;}
.hc_c00046{height:21.958857px;}
.hd_c00046{height:23.128875px;}
.hb_c00046{height:28.911094px;}
.h5_c00046{height:41.301563px;}
.ha_c00046{height:64.516483px;}
.h4_c00046{height:69.568770px;}
.h7_c00046{height:71.512031px;}
.h8_c00046{height:75.398555px;}
.h3_c00046{height:76.953164px;}
.h6_c00046{height:79.299207px;}
.h9_c00046{height:84.494683px;}
.h2_c00046{height:84.807422px;}
.h1_c00046{height:1110.000000px;}
.h0_c00046{height:1263.000000px;}
.w1_c00046{width:733.500000px;}
.w0_c00046{width:892.500000px;}
.x0_c00046{left:0.000000px;}
.xc_c00046{left:72.848685px;}
.x55_c00046{left:73.903035px;}
.x5c_c00046{left:75.284085px;}
.x1_c00046{left:79.500000px;}
.x38_c00046{left:93.693135px;}
.x14_c00046{left:94.782135px;}
.x21_c00046{left:104.434635px;}
.x2f_c00046{left:105.983985px;}
.x6d_c00046{left:107.642235px;}
.x15_c00046{left:116.349285px;}
.x4e_c00046{left:117.453135px;}
.x3_c00046{left:127.194735px;}
.x51_c00046{left:128.635185px;}
.x1c_c00046{left:138.451035px;}
.x58_c00046{left:140.505285px;}
.x16_c00046{left:149.464785px;}
.x63_c00046{left:152.236785px;}
.x3c_c00046{left:160.186485px;}
.x49_c00046{left:161.948685px;}
.x1d_c00046{left:171.304185px;}
.x59_c00046{left:172.472385px;}
.xd_c00046{left:181.382385px;}
.x17_c00046{left:182.600085px;}
.x64_c00046{left:185.832435px;}
.x3d_c00046{left:192.772335px;}
.x4a_c00046{left:194.123685px;}
.x5b_c00046{left:195.762135px;}
.x39_c00046{left:205.459185px;}
.x5d_c00046{left:206.835285px;}
.x26_c00046{left:216.972885px;}
.x18_c00046{left:226.798635px;}
.x44_c00046{left:228.590535px;}
.x41_c00046{left:239.822085px;}
.x4_c00046{left:248.380635px;}
.x1e_c00046{left:249.821085px;}
.x36_c00046{left:260.334885px;}
.x52_c00046{left:261.413985px;}
.x65_c00046{left:262.473285px;}
.x19_c00046{left:271.546635px;}
.xe_c00046{left:282.169335px;}
.x4b_c00046{left:283.837485px;}
.x37_c00046{left:292.564335px;}
.x30_c00046{left:293.841435px;}
.x66_c00046{left:296.306535px;}
.x35_c00046{left:297.430185px;}
.x5_c00046{left:304.498785px;}
.x5e_c00046{left:306.315435px;}
.x45_c00046{left:315.576885px;}
.xf_c00046{left:327.679635px;}
.x67_c00046{left:329.085435px;}
.x28_c00046{left:338.346885px;}
.x6_c00046{left:348.885435px;}
.x4c_c00046{left:350.147685px;}
.x6e_c00046{left:351.578235px;}
.x72_c00046{left:356.330235px;}
.x22_c00046{left:360.780285px;}
.x68_c00046{left:362.582085px;}
.x3e_c00046{left:371.497035px;}
.x42_c00046{left:372.576135px;}
.x3a_c00046{left:382.253385px;}
.x3b_c00046{left:389.911035px;}
.x7_c00046{left:393.277035px;}
.x29_c00046{left:404.325435px;}
.x31_c00046{left:415.695585px;}
.x8_c00046{left:426.031185px;}
.x69_c00046{left:428.199285px;}
.x4f_c00046{left:430.887135px;}
.x2a_c00046{left:436.500435px;}
.x43_c00046{left:438.485385px;}
.x10_c00046{left:448.142835px;}
.x46_c00046{left:459.562485px;}
.x5f_c00046{left:461.997885px;}
.x1f_c00046{left:470.610885px;}
.x6a_c00046{left:473.269035px;}
.x32_c00046{left:480.748485px;}
.x54_c00046{left:482.015685px;}
.x47_c00046{left:483.065085px;}
.x2e_c00046{left:487.658685px;}
.x53_c00046{left:492.158235px;}
.x23_c00046{left:493.242285px;}
.x9_c00046{left:503.756085px;}
.x24_c00046{left:514.245135px;}
.x33_c00046{left:515.319285px;}
.x2b_c00046{left:526.174635px;}
.x6b_c00046{left:527.991285px;}
.x11_c00046{left:536.351835px;}
.x3f_c00046{left:547.900185px;}
.x60_c00046{left:549.375285px;}
.x1a_c00046{left:559.007985px;}
.x6c_c00046{left:560.492985px;}
.xa_c00046{left:569.402985px;}
.x27_c00046{left:570.724635px;}
.x61_c00046{left:571.793835px;}
.x34_c00046{left:581.807685px;}
.x12_c00046{left:591.663135px;}
.x4d_c00046{left:592.836285px;}
.x48_c00046{left:602.325435px;}
.x56_c00046{left:603.904485px;}
.x62_c00046{left:604.963785px;}
.x71_c00046{left:612.557085px;}
.x50_c00046{left:614.942985px;}
.x20_c00046{left:624.729135px;}
.x2c_c00046{left:637.321935px;}
.x2_c00046{left:644.935035px;}
.xb_c00046{left:647.741685px;}
.x13_c00046{left:648.761385px;}
.x6f_c00046{left:650.508735px;}
.x40_c00046{left:659.458335px;}
.x2d_c00046{left:669.482085px;}
.x57_c00046{left:670.546335px;}
.x1b_c00046{left:681.530385px;}
.x70_c00046{left:683.005485px;}
.x25_c00046{left:691.578885px;}
.x5a_c00046{left:703.196535px;}
@media print{
.v1_c00046{vertical-align:-6.318400pt;}
.v0_c00046{vertical-align:0.000000pt;}
.v2_c00046{vertical-align:2.512576pt;}
.v3_c00046{vertical-align:24.073984pt;}
.lsf_c00046{letter-spacing:-2.439360pt;}
.lsd_c00046{letter-spacing:-2.045126pt;}
.ls9_c00046{letter-spacing:-1.686643pt;}
.lsb_c00046{letter-spacing:-1.170893pt;}
.ls8_c00046{letter-spacing:-0.257875pt;}
.lse_c00046{letter-spacing:-0.020909pt;}
.ls4_c00046{letter-spacing:0.000000pt;}
.ls0_c00046{letter-spacing:0.090605pt;}
.lsc_c00046{letter-spacing:0.439085pt;}
.ls6_c00046{letter-spacing:0.473933pt;}
.ls11_c00046{letter-spacing:1.407859pt;}
.ls10_c00046{letter-spacing:2.230272pt;}
.ls7_c00046{letter-spacing:3.150400pt;}
.lsa_c00046{letter-spacing:3.238400pt;}
.ls5_c00046{letter-spacing:3.310560pt;}
.ls3_c00046{letter-spacing:3.484800pt;}
.ls2_c00046{letter-spacing:3.740000pt;}
.ls1_c00046{letter-spacing:24.716824pt;}
.ws0_c00046{word-spacing:-19.654272pt;}
.ws1_c00046{word-spacing:0.000000pt;}
._8_c00046{margin-left:-2.996224pt;}
._a_c00046{width:6.342336pt;}
._b_c00046{width:15.193376pt;}
._1_c00046{width:18.469792pt;}
._0_c00046{width:21.941005pt;}
._6_c00046{width:26.275392pt;}
._9_c00046{width:28.344096pt;}
._7_c00046{width:37.503418pt;}
._5_c00046{width:46.235068pt;}
._2_c00046{width:177.716895pt;}
._3_c00046{width:196.332092pt;}
._4_c00046{width:267.093244pt;}
.fsb_c00046{font-size:19.712000pt;}
.fsa_c00046{font-size:19.888000pt;}
.fs8_c00046{font-size:22.352000pt;}
.fs9_c00046{font-size:24.640000pt;}
.fs3_c00046{font-size:35.200000pt;}
.fs7_c00046{font-size:58.432176pt;}
.fs2_c00046{font-size:63.008000pt;}
.fs5_c00046{font-size:64.768000pt;}
.fs4_c00046{font-size:67.584176pt;}
.fs6_c00046{font-size:68.288000pt;}
.fs1_c00046{font-size:69.696000pt;}
.fs0_c00046{font-size:74.800000pt;}
.y0_c00046{bottom:0.000000pt;}
.y21_c00046{bottom:2.772920pt;}
.y1_c00046{bottom:68.000000pt;}
.y20_c00046{bottom:68.667320pt;}
.y1f_c00046{bottom:78.171320pt;}
.y1e_c00046{bottom:120.934920pt;}
.y1d_c00046{bottom:148.184120pt;}
.y1c_c00046{bottom:181.764920pt;}
.y1b_c00046{bottom:211.544120pt;}
.y1a_c00046{bottom:268.880520pt;}
.y19_c00046{bottom:297.713720pt;}
.y18_c00046{bottom:326.854920pt;}
.y17_c00046{bottom:355.688120pt;}
.y16_c00046{bottom:384.516920pt;}
.y14_c00046{bottom:386.096520pt;}
.y15_c00046{bottom:390.536120pt;}
.y13_c00046{bottom:413.341320pt;}
.y12_c00046{bottom:441.853320pt;}
.y11_c00046{bottom:470.369720pt;}
.y10_c00046{bottom:499.198520pt;}
.yf_c00046{bottom:528.656520pt;}
.ye_c00046{bottom:559.386120pt;}
.yd_c00046{bottom:588.531720pt;}
.yc_c00046{bottom:611.024520pt;}
.yb_c00046{bottom:617.998520pt;}
.ya_c00046{bottom:631.616520pt;}
.y9_c00046{bottom:646.506120pt;}
.y8_c00046{bottom:675.022520pt;}
.y7_c00046{bottom:703.851320pt;}
.y6_c00046{bottom:732.358920pt;}
.y5_c00046{bottom:761.504520pt;}
.y4_c00046{bottom:791.288120pt;}
.y3_c00046{bottom:820.116920pt;}
.y2_c00046{bottom:964.573320pt;}
.hc_c00046{height:19.518984pt;}
.hd_c00046{height:20.559000pt;}
.hb_c00046{height:25.698750pt;}
.h5_c00046{height:36.712500pt;}
.ha_c00046{height:57.347985pt;}
.h4_c00046{height:61.838906pt;}
.h7_c00046{height:63.566250pt;}
.h8_c00046{height:67.020938pt;}
.h3_c00046{height:68.402813pt;}
.h6_c00046{height:70.488184pt;}
.h9_c00046{height:75.106385pt;}
.h2_c00046{height:75.384375pt;}
.h1_c00046{height:986.666667pt;}
.h0_c00046{height:1122.666667pt;}
.w1_c00046{width:652.000000pt;}
.w0_c00046{width:793.333333pt;}
.x0_c00046{left:0.000000pt;}
.xc_c00046{left:64.754387pt;}
.x55_c00046{left:65.691587pt;}
.x5c_c00046{left:66.919187pt;}
.x1_c00046{left:70.666667pt;}
.x38_c00046{left:83.282787pt;}
.x14_c00046{left:84.250787pt;}
.x21_c00046{left:92.830787pt;}
.x2f_c00046{left:94.207987pt;}
.x6d_c00046{left:95.681987pt;}
.x15_c00046{left:103.421587pt;}
.x4e_c00046{left:104.402787pt;}
.x3_c00046{left:113.061987pt;}
.x51_c00046{left:114.342387pt;}
.x1c_c00046{left:123.067587pt;}
.x58_c00046{left:124.893587pt;}
.x16_c00046{left:132.857587pt;}
.x63_c00046{left:135.321587pt;}
.x3c_c00046{left:142.387987pt;}
.x49_c00046{left:143.954387pt;}
.x1d_c00046{left:152.270387pt;}
.x59_c00046{left:153.308787pt;}
.xd_c00046{left:161.228787pt;}
.x17_c00046{left:162.311187pt;}
.x64_c00046{left:165.184387pt;}
.x3d_c00046{left:171.353187pt;}
.x4a_c00046{left:172.554387pt;}
.x5b_c00046{left:174.010787pt;}
.x39_c00046{left:182.630387pt;}
.x5d_c00046{left:183.853587pt;}
.x26_c00046{left:192.864787pt;}
.x18_c00046{left:201.598787pt;}
.x44_c00046{left:203.191587pt;}
.x41_c00046{left:213.175187pt;}
.x4_c00046{left:220.782787pt;}
.x1e_c00046{left:222.063187pt;}
.x36_c00046{left:231.408787pt;}
.x52_c00046{left:232.367987pt;}
.x65_c00046{left:233.309587pt;}
.x19_c00046{left:241.374787pt;}
.xe_c00046{left:250.817187pt;}
.x4b_c00046{left:252.299987pt;}
.x37_c00046{left:260.057187pt;}
.x30_c00046{left:261.192387pt;}
.x66_c00046{left:263.383587pt;}
.x35_c00046{left:264.382387pt;}
.x5_c00046{left:270.665587pt;}
.x5e_c00046{left:272.280387pt;}
.x45_c00046{left:280.512787pt;}
.xf_c00046{left:291.270787pt;}
.x67_c00046{left:292.520387pt;}
.x28_c00046{left:300.752787pt;}
.x6_c00046{left:310.120387pt;}
.x4c_c00046{left:311.242387pt;}
.x6e_c00046{left:312.513987pt;}
.x72_c00046{left:316.737987pt;}
.x22_c00046{left:320.693587pt;}
.x68_c00046{left:322.295187pt;}
.x3e_c00046{left:330.219587pt;}
.x42_c00046{left:331.178787pt;}
.x3a_c00046{left:339.780787pt;}
.x3b_c00046{left:346.587587pt;}
.x7_c00046{left:349.579587pt;}
.x29_c00046{left:359.400387pt;}
.x31_c00046{left:369.507187pt;}
.x8_c00046{left:378.694387pt;}
.x69_c00046{left:380.621587pt;}
.x4f_c00046{left:383.010787pt;}
.x2a_c00046{left:388.000387pt;}
.x43_c00046{left:389.764787pt;}
.x10_c00046{left:398.349187pt;}
.x46_c00046{left:408.499987pt;}
.x5f_c00046{left:410.664787pt;}
.x1f_c00046{left:418.320787pt;}
.x6a_c00046{left:420.683587pt;}
.x32_c00046{left:427.331987pt;}
.x54_c00046{left:428.458387pt;}
.x47_c00046{left:429.391187pt;}
.x2e_c00046{left:433.474387pt;}
.x53_c00046{left:437.473987pt;}
.x23_c00046{left:438.437587pt;}
.x9_c00046{left:447.783187pt;}
.x24_c00046{left:457.106787pt;}
.x33_c00046{left:458.061587pt;}
.x2b_c00046{left:467.710787pt;}
.x6b_c00046{left:469.325587pt;}
.x11_c00046{left:476.757187pt;}
.x3f_c00046{left:487.022387pt;}
.x60_c00046{left:488.333587pt;}
.x1a_c00046{left:496.895987pt;}
.x6c_c00046{left:498.215987pt;}
.xa_c00046{left:506.135987pt;}
.x27_c00046{left:507.310787pt;}
.x61_c00046{left:508.261187pt;}
.x34_c00046{left:517.162387pt;}
.x12_c00046{left:525.922787pt;}
.x4d_c00046{left:526.965587pt;}
.x48_c00046{left:535.400387pt;}
.x56_c00046{left:536.803987pt;}
.x62_c00046{left:537.745587pt;}
.x71_c00046{left:544.495187pt;}
.x50_c00046{left:546.615987pt;}
.x20_c00046{left:555.314787pt;}
.x2c_c00046{left:566.508387pt;}
.x2_c00046{left:573.275587pt;}
.xb_c00046{left:575.770387pt;}
.x13_c00046{left:576.676787pt;}
.x6f_c00046{left:578.229987pt;}
.x40_c00046{left:586.185187pt;}
.x2d_c00046{left:595.095187pt;}
.x57_c00046{left:596.041187pt;}
.x1b_c00046{left:605.804787pt;}
.x70_c00046{left:607.115987pt;}
.x25_c00046{left:614.736787pt;}
.x5a_c00046{left:625.063587pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cb9217a2d1d6f560e7a37336.woff2')format("woff");}.ff1_c00047{font-family:ff1_c00047;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00047;src:url('chunks/assets/font_3f4673fd5ce937d748b6ac79.woff2')format("woff");}.ff2_c00047{font-family:ff2_c00047;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00047;src:url('chunks/assets/font_4937ce3a550cd6667e7a5b8a.woff2')format("woff");}.ff3_c00047{font-family:ff3_c00047;line-height:0.666000;font-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_c00047{transform:matrix(0.185763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185763,0.000000,0.000000,0.250000,0,0);}
.m62_c00047{transform:matrix(0.204365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204365,0.000000,0.000000,0.250000,0,0);}
.m1_c00047{transform:matrix(0.221976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221976,0.000000,0.000000,0.250000,0,0);}
.m48_c00047{transform:matrix(0.238513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238513,0.000000,0.000000,0.250000,0,0);}
.m0_c00047{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00047{transform:matrix(0.250919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250919,0.000000,0.000000,0.250000,0,0);}
.m4f_c00047{transform:matrix(0.251686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251686,0.000000,0.000000,0.250000,0,0);}
.m45_c00047{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.mc_c00047{transform:matrix(0.252684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252684,0.000000,0.000000,0.250000,0,0);}
.m84_c00047{transform:matrix(0.252992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252992,0.000000,0.000000,0.250000,0,0);}
.ma3_c00047{transform:matrix(0.253241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253241,0.000000,0.000000,0.250000,0,0);}
.m9f_c00047{transform:matrix(0.253545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253545,0.000000,0.000000,0.250000,0,0);}
.m60_c00047{transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);}
.m1a_c00047{transform:matrix(0.255400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255400,0.000000,0.000000,0.250000,0,0);}
.m9d_c00047{transform:matrix(0.256929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256929,0.000000,0.000000,0.250000,0,0);}
.m43_c00047{transform:matrix(0.258686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258686,0.000000,0.000000,0.250000,0,0);}
.m59_c00047{transform:matrix(0.259181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259181,0.000000,0.000000,0.250000,0,0);}
.m36_c00047{transform:matrix(0.259849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259849,0.000000,0.000000,0.250000,0,0);}
.ma_c00047{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m64_c00047{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.m85_c00047{transform:matrix(0.261700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261700,0.000000,0.000000,0.250000,0,0);}
.mba_c00047{transform:matrix(0.262840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262840,0.000000,0.000000,0.250000,0,0);}
.m63_c00047{transform:matrix(0.263213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263213,0.000000,0.000000,0.250000,0,0);}
.m2c_c00047{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m52_c00047{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m16_c00047{transform:matrix(0.264839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264839,0.000000,0.000000,0.250000,0,0);}
.m8f_c00047{transform:matrix(0.264956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264956,0.000000,0.000000,0.250000,0,0);}
.m39_c00047{transform:matrix(0.265205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265205,0.000000,0.000000,0.250000,0,0);}
.ma5_c00047{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m1b_c00047{transform:matrix(0.266343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266343,0.000000,0.000000,0.250000,0,0);}
.ma1_c00047{transform:matrix(0.266682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266682,0.000000,0.000000,0.250000,0,0);}
.mb0_c00047{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.m3_c00047{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m2a_c00047{transform:matrix(0.268552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268552,0.000000,0.000000,0.250000,0,0);}
.m6d_c00047{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.m79_c00047{transform:matrix(0.268624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268624,0.000000,0.000000,0.250000,0,0);}
.m88_c00047{transform:matrix(0.268753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268753,0.000000,0.000000,0.250000,0,0);}
.m4d_c00047{transform:matrix(0.268994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268994,0.000000,0.000000,0.250000,0,0);}
.m72_c00047{transform:matrix(0.269234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269234,0.000000,0.000000,0.250000,0,0);}
.m5e_c00047{transform:matrix(0.269568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269568,0.000000,0.000000,0.250000,0,0);}
.mb8_c00047{transform:matrix(0.270327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270327,0.000000,0.000000,0.250000,0,0);}
.m9_c00047{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m20_c00047{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m19_c00047{transform:matrix(0.272696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272696,0.000000,0.000000,0.250000,0,0);}
.m2b_c00047{transform:matrix(0.272801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272801,0.000000,0.000000,0.250000,0,0);}
.m68_c00047{transform:matrix(0.273398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273398,0.000000,0.000000,0.250000,0,0);}
.m61_c00047{transform:matrix(0.274554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274554,0.000000,0.000000,0.250000,0,0);}
.m70_c00047{transform:matrix(0.274708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274708,0.000000,0.000000,0.250000,0,0);}
.m75_c00047{transform:matrix(0.274812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274812,0.000000,0.000000,0.250000,0,0);}
.m26_c00047{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m5b_c00047{transform:matrix(0.275620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275620,0.000000,0.000000,0.250000,0,0);}
.m5c_c00047{transform:matrix(0.275795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275795,0.000000,0.000000,0.250000,0,0);}
.mad_c00047{transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);}
.m54_c00047{transform:matrix(0.277164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277164,0.000000,0.000000,0.250000,0,0);}
.m12_c00047{transform:matrix(0.278581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278581,0.000000,0.000000,0.250000,0,0);}
.m4b_c00047{transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);}
.m65_c00047{transform:matrix(0.279494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279494,0.000000,0.000000,0.250000,0,0);}
.m23_c00047{transform:matrix(0.279756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279756,0.000000,0.000000,0.250000,0,0);}
.m1d_c00047{transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);}
.m5a_c00047{transform:matrix(0.279995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279995,0.000000,0.000000,0.250000,0,0);}
.mbd_c00047{transform:matrix(0.280086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280086,0.000000,0.000000,0.250000,0,0);}
.m98_c00047{transform:matrix(0.280247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280247,0.000000,0.000000,0.250000,0,0);}
.m4c_c00047{transform:matrix(0.280566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280566,0.000000,0.000000,0.250000,0,0);}
.m2d_c00047{transform:matrix(0.281021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281021,0.000000,0.000000,0.250000,0,0);}
.m8d_c00047{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.m9c_c00047{transform:matrix(0.282164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282164,0.000000,0.000000,0.250000,0,0);}
.m3c_c00047{transform:matrix(0.283037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283037,0.000000,0.000000,0.250000,0,0);}
.m87_c00047{transform:matrix(0.283086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283086,0.000000,0.000000,0.250000,0,0);}
.m95_c00047{transform:matrix(0.284742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284742,0.000000,0.000000,0.250000,0,0);}
.ma0_c00047{transform:matrix(0.284924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284924,0.000000,0.000000,0.250000,0,0);}
.m47_c00047{transform:matrix(0.285088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285088,0.000000,0.000000,0.250000,0,0);}
.m18_c00047{transform:matrix(0.286109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286109,0.000000,0.000000,0.250000,0,0);}
.m6c_c00047{transform:matrix(0.286427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286427,0.000000,0.000000,0.250000,0,0);}
.m4a_c00047{transform:matrix(0.286929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286929,0.000000,0.000000,0.250000,0,0);}
.m77_c00047{transform:matrix(0.287000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287000,0.000000,0.000000,0.250000,0,0);}
.m53_c00047{transform:matrix(0.287634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287634,0.000000,0.000000,0.250000,0,0);}
.m35_c00047{transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);}
.m1e_c00047{transform:matrix(0.288571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288571,0.000000,0.000000,0.250000,0,0);}
.mb9_c00047{transform:matrix(0.288868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288868,0.000000,0.000000,0.250000,0,0);}
.m3d_c00047{transform:matrix(0.289588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289588,0.000000,0.000000,0.250000,0,0);}
.m33_c00047{transform:matrix(0.289890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289890,0.000000,0.000000,0.250000,0,0);}
.m97_c00047{transform:matrix(0.290404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290404,0.000000,0.000000,0.250000,0,0);}
.m6_c00047{transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);}
.m1f_c00047{transform:matrix(0.290516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290516,0.000000,0.000000,0.250000,0,0);}
.m5f_c00047{transform:matrix(0.292077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292077,0.000000,0.000000,0.250000,0,0);}
.m4e_c00047{transform:matrix(0.292279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292279,0.000000,0.000000,0.250000,0,0);}
.mb7_c00047{transform:matrix(0.292392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292392,0.000000,0.000000,0.250000,0,0);}
.maf_c00047{transform:matrix(0.292515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292515,0.000000,0.000000,0.250000,0,0);}
.mac_c00047{transform:matrix(0.293585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293585,0.000000,0.000000,0.250000,0,0);}
.m38_c00047{transform:matrix(0.293597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293597,0.000000,0.000000,0.250000,0,0);}
.m10_c00047{transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);}
.m93_c00047{transform:matrix(0.294037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294037,0.000000,0.000000,0.250000,0,0);}
.m99_c00047{transform:matrix(0.294655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294655,0.000000,0.000000,0.250000,0,0);}
.m7f_c00047{transform:matrix(0.294665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294665,0.000000,0.000000,0.250000,0,0);}
.m32_c00047{transform:matrix(0.295150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295150,0.000000,0.000000,0.250000,0,0);}
.m8c_c00047{transform:matrix(0.296305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296305,0.000000,0.000000,0.250000,0,0);}
.ma4_c00047{transform:matrix(0.296343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296343,0.000000,0.000000,0.250000,0,0);}
.m7d_c00047{transform:matrix(0.296811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296811,0.000000,0.000000,0.250000,0,0);}
.mbc_c00047{transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);}
.m3b_c00047{transform:matrix(0.296922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296922,0.000000,0.000000,0.250000,0,0);}
.m83_c00047{transform:matrix(0.297306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297306,0.000000,0.000000,0.250000,0,0);}
.mbe_c00047{transform:matrix(0.297523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297523,0.000000,0.000000,0.250000,0,0);}
.mb_c00047{transform:matrix(0.297795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297795,0.000000,0.000000,0.250000,0,0);}
.m56_c00047{transform:matrix(0.298471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298471,0.000000,0.000000,0.250000,0,0);}
.m76_c00047{transform:matrix(0.298672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298672,0.000000,0.000000,0.250000,0,0);}
.m2e_c00047{transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);}
.m3e_c00047{transform:matrix(0.300667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300667,0.000000,0.000000,0.250000,0,0);}
.m58_c00047{transform:matrix(0.300721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300721,0.000000,0.000000,0.250000,0,0);}
.m7a_c00047{transform:matrix(0.301242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301242,0.000000,0.000000,0.250000,0,0);}
.md_c00047{transform:matrix(0.301438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301438,0.000000,0.000000,0.250000,0,0);}
.m2_c00047{transform:matrix(0.301470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301470,0.000000,0.000000,0.250000,0,0);}
.m6e_c00047{transform:matrix(0.301765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301765,0.000000,0.000000,0.250000,0,0);}
.m6a_c00047{transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);}
.m8e_c00047{transform:matrix(0.302587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302587,0.000000,0.000000,0.250000,0,0);}
.m66_c00047{transform:matrix(0.302713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302713,0.000000,0.000000,0.250000,0,0);}
.m6b_c00047{transform:matrix(0.303069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303069,0.000000,0.000000,0.250000,0,0);}
.m30_c00047{transform:matrix(0.303509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303509,0.000000,0.000000,0.250000,0,0);}
.mf_c00047{transform:matrix(0.304216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304216,0.000000,0.000000,0.250000,0,0);}
.m9e_c00047{transform:matrix(0.304295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304295,0.000000,0.000000,0.250000,0,0);}
.m46_c00047{transform:matrix(0.304882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304882,0.000000,0.000000,0.250000,0,0);}
.m13_c00047{transform:matrix(0.306052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306052,0.000000,0.000000,0.250000,0,0);}
.m34_c00047{transform:matrix(0.306775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306775,0.000000,0.000000,0.250000,0,0);}
.m22_c00047{transform:matrix(0.306801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306801,0.000000,0.000000,0.250000,0,0);}
.m28_c00047{transform:matrix(0.307943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307943,0.000000,0.000000,0.250000,0,0);}
.m9b_c00047{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.mab_c00047{transform:matrix(0.308963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308963,0.000000,0.000000,0.250000,0,0);}
.m50_c00047{transform:matrix(0.309015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309015,0.000000,0.000000,0.250000,0,0);}
.m94_c00047{transform:matrix(0.310296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310296,0.000000,0.000000,0.250000,0,0);}
.maa_c00047{transform:matrix(0.310673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310673,0.000000,0.000000,0.250000,0,0);}
.m3f_c00047{transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);}
.m37_c00047{transform:matrix(0.311458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311458,0.000000,0.000000,0.250000,0,0);}
.ma2_c00047{transform:matrix(0.311500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311500,0.000000,0.000000,0.250000,0,0);}
.m55_c00047{transform:matrix(0.311856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311856,0.000000,0.000000,0.250000,0,0);}
.m3a_c00047{transform:matrix(0.311923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311923,0.000000,0.000000,0.250000,0,0);}
.m96_c00047{transform:matrix(0.312430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312430,0.000000,0.000000,0.250000,0,0);}
.m2f_c00047{transform:matrix(0.312579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312579,0.000000,0.000000,0.250000,0,0);}
.m6f_c00047{transform:matrix(0.313480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313480,0.000000,0.000000,0.250000,0,0);}
.m51_c00047{transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);}
.m7c_c00047{transform:matrix(0.313780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313780,0.000000,0.000000,0.250000,0,0);}
.m92_c00047{transform:matrix(0.314471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314471,0.000000,0.000000,0.250000,0,0);}
.mb1_c00047{transform:matrix(0.314686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314686,0.000000,0.000000,0.250000,0,0);}
.mb5_c00047{transform:matrix(0.314752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314752,0.000000,0.000000,0.250000,0,0);}
.m82_c00047{transform:matrix(0.316249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316249,0.000000,0.000000,0.250000,0,0);}
.m5d_c00047{transform:matrix(0.316342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316342,0.000000,0.000000,0.250000,0,0);}
.m9a_c00047{transform:matrix(0.316615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316615,0.000000,0.000000,0.250000,0,0);}
.m31_c00047{transform:matrix(0.316716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316716,0.000000,0.000000,0.250000,0,0);}
.m74_c00047{transform:matrix(0.317925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317925,0.000000,0.000000,0.250000,0,0);}
.m81_c00047{transform:matrix(0.318082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318082,0.000000,0.000000,0.250000,0,0);}
.m8b_c00047{transform:matrix(0.318213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318213,0.000000,0.000000,0.250000,0,0);}
.mae_c00047{transform:matrix(0.318754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318754,0.000000,0.000000,0.250000,0,0);}
.m29_c00047{transform:matrix(0.318942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318942,0.000000,0.000000,0.250000,0,0);}
.m7b_c00047{transform:matrix(0.319670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319670,0.000000,0.000000,0.250000,0,0);}
.m80_c00047{transform:matrix(0.320310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320310,0.000000,0.000000,0.250000,0,0);}
.m8_c00047{transform:matrix(0.321103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321103,0.000000,0.000000,0.250000,0,0);}
.m67_c00047{transform:matrix(0.321213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321213,0.000000,0.000000,0.250000,0,0);}
.m90_c00047{transform:matrix(0.321674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321674,0.000000,0.000000,0.250000,0,0);}
.m41_c00047{transform:matrix(0.322853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322853,0.000000,0.000000,0.250000,0,0);}
.m7e_c00047{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.m5_c00047{transform:matrix(0.323918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323918,0.000000,0.000000,0.250000,0,0);}
.m89_c00047{transform:matrix(0.324242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324242,0.000000,0.000000,0.250000,0,0);}
.ma8_c00047{transform:matrix(0.324300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324300,0.000000,0.000000,0.250000,0,0);}
.m15_c00047{transform:matrix(0.324724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324724,0.000000,0.000000,0.250000,0,0);}
.m73_c00047{transform:matrix(0.325172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325172,0.000000,0.000000,0.250000,0,0);}
.m8a_c00047{transform:matrix(0.326063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326063,0.000000,0.000000,0.250000,0,0);}
.m17_c00047{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m40_c00047{transform:matrix(0.327414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327414,0.000000,0.000000,0.250000,0,0);}
.ma7_c00047{transform:matrix(0.329080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329080,0.000000,0.000000,0.250000,0,0);}
.m1c_c00047{transform:matrix(0.329931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329931,0.000000,0.000000,0.250000,0,0);}
.m44_c00047{transform:matrix(0.330299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330299,0.000000,0.000000,0.250000,0,0);}
.m14_c00047{transform:matrix(0.330560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330560,0.000000,0.000000,0.250000,0,0);}
.m57_c00047{transform:matrix(0.330718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330718,0.000000,0.000000,0.250000,0,0);}
.m69_c00047{transform:matrix(0.331540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331540,0.000000,0.000000,0.250000,0,0);}
.mb2_c00047{transform:matrix(0.331780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331780,0.000000,0.000000,0.250000,0,0);}
.m42_c00047{transform:matrix(0.331939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331939,0.000000,0.000000,0.250000,0,0);}
.m91_c00047{transform:matrix(0.335458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335458,0.000000,0.000000,0.250000,0,0);}
.m27_c00047{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.ma9_c00047{transform:matrix(0.344852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344852,0.000000,0.000000,0.250000,0,0);}
.m25_c00047{transform:matrix(0.345093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345093,0.000000,0.000000,0.250000,0,0);}
.m7_c00047{transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);}
.mb6_c00047{transform:matrix(0.348914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348914,0.000000,0.000000,0.250000,0,0);}
.m21_c00047{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.mbb_c00047{transform:matrix(0.349980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349980,0.000000,0.000000,0.250000,0,0);}
.me_c00047{transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);}
.m4_c00047{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m11_c00047{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.mb3_c00047{transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);}
.m49_c00047{transform:matrix(0.373581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373581,0.000000,0.000000,0.250000,0,0);}
.m86_c00047{transform:matrix(0.378594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378594,0.000000,0.000000,0.250000,0,0);}
.m78_c00047{transform:matrix(0.381697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381697,0.000000,0.000000,0.250000,0,0);}
.m71_c00047{transform:matrix(0.407418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407418,0.000000,0.000000,0.250000,0,0);}
.ma6_c00047{transform:matrix(0.414699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414699,0.000000,0.000000,0.250000,0,0);}
.v0_c00047{vertical-align:0.000000px;}
.ls3_c00047{letter-spacing:-3.076927px;}
.ls9_c00047{letter-spacing:-2.744280px;}
.ls6_c00047{letter-spacing:-1.897474px;}
.ls8_c00047{letter-spacing:-1.427026px;}
.ls5_c00047{letter-spacing:-0.125453px;}
.ls2_c00047{letter-spacing:0.000000px;}
.lsd_c00047{letter-spacing:0.258746px;}
.ls12_c00047{letter-spacing:0.352836px;}
.lsb_c00047{letter-spacing:1.199642px;}
.ls0_c00047{letter-spacing:1.607364px;}
.ls7_c00047{letter-spacing:1.811700px;}
.ls10_c00047{letter-spacing:1.819066px;}
.ls11_c00047{letter-spacing:1.831500px;}
.lse_c00047{letter-spacing:1.960200px;}
.ls14_c00047{letter-spacing:3.050071px;}
.lsa_c00047{letter-spacing:3.112798px;}
.ls1_c00047{letter-spacing:3.183365px;}
.ls13_c00047{letter-spacing:3.387226px;}
.ls16_c00047{letter-spacing:3.559723px;}
.ls15_c00047{letter-spacing:3.661654px;}
.lsf_c00047{letter-spacing:3.669494px;}
.ls4_c00047{letter-spacing:3.920400px;}
.lsc_c00047{letter-spacing:51.321798px;}
.sc__c00047{text-shadow:none;}
.sc0_c00047{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00047{-webkit-text-stroke:0px transparent;}
.sc0_c00047{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00047{word-spacing:-21.209364px;}
.ws1_c00047{word-spacing:-19.602000px;}
.ws2_c00047{word-spacing:-0.627264px;}
.ws3_c00047{word-spacing:0.000000px;}
._0_c00047{margin-left:-9.173736px;}
._2_c00047{width:4.312440px;}
._1_c00047{width:6.351840px;}
._3_c00047{width:10.193040px;}
._7_c00047{width:14.034240px;}
._9_c00047{width:20.756736px;}
._4_c00047{width:21.797424px;}
._6_c00047{width:23.679216px;}
._8_c00047{width:33.168168px;}
._5_c00047{width:35.518824px;}
.fc0_c00047{color:transparent;}
.fs1_c00047{font-size:22.176000px;}
.fs8_c00047{font-size:27.720000px;}
.fs3_c00047{font-size:36.234000px;}
.fs7_c00047{font-size:36.630000px;}
.fs4_c00047{font-size:39.600000px;}
.fs5_c00047{font-size:51.321798px;}
.fs6_c00047{font-size:74.844000px;}
.fs2_c00047{font-size:78.408000px;}
.fs9_c00047{font-size:78.804000px;}
.fs0_c00047{font-size:87.912198px;}
.y0_c00047{bottom:0.000000px;}
.y20_c00047{bottom:58.712985px;}
.y1_c00047{bottom:76.500000px;}
.y1f_c00047{bottom:141.759135px;}
.y1e_c00047{bottom:172.053135px;}
.y1d_c00047{bottom:207.693135px;}
.y1c_c00047{bottom:240.120585px;}
.y1b_c00047{bottom:273.270735px;}
.y1a_c00047{bottom:305.346735px;}
.y19_c00047{bottom:337.422735px;}
.y18_c00047{bottom:369.855135px;}
.y17_c00047{bottom:394.085385px;}
.y16_c00047{bottom:402.282585px;}
.y15_c00047{bottom:466.439535px;}
.y14_c00047{bottom:498.866985px;}
.y12_c00047{bottom:530.591535px;}
.y13_c00047{bottom:535.932585px;}
.y11_c00047{bottom:562.662585px;}
.y10_c00047{bottom:595.099935px;}
.yf_c00047{bottom:609.355935px;}
.ye_c00047{bottom:627.883785px;}
.yd_c00047{bottom:659.964735px;}
.yc_c00047{bottom:693.109935px;}
.yb_c00047{bottom:726.250185px;}
.ya_c00047{bottom:758.682585px;}
.y9_c00047{bottom:790.763535px;}
.y7_c00047{bottom:823.552335px;}
.y8_c00047{bottom:828.893385px;}
.y6_c00047{bottom:855.623385px;}
.y5_c00047{bottom:888.055785px;}
.y4_c00047{bottom:921.205935px;}
.y3_c00047{bottom:998.183385px;}
.y2_c00047{bottom:1069.463385px;}
.h3_c00047{height:23.128875px;}
.ha_c00047{height:28.911094px;}
.h7_c00047{height:34.180317px;}
.h5_c00047{height:37.790930px;}
.h9_c00047{height:38.203945px;}
.h6_c00047{height:41.301563px;}
.h8_c00047{height:73.455293px;}
.h4_c00047{height:76.953164px;}
.hb_c00047{height:77.341816px;}
.h2_c00047{height:86.281015px;}
.h1_c00047{height:1110.000000px;}
.h0_c00047{height:1263.000000px;}
.w1_c00047{width:733.500000px;}
.w0_c00047{width:892.500000px;}
.x0_c00047{left:0.000000px;}
.x29_c00047{left:64.186185px;}
.x5_c00047{left:65.304885px;}
.x52_c00047{left:66.359235px;}
.x1_c00047{left:79.500000px;}
.x32_c00047{left:96.890835px;}
.x17_c00047{left:98.455035px;}
.x50_c00047{left:109.191585px;}
.x58_c00047{left:110.206335px;}
.x40_c00047{left:119.279685px;}
.x5d_c00047{left:121.338885px;}
.x4f_c00047{left:127.140285px;}
.x18_c00047{left:130.060785px;}
.x11_c00047{left:140.381535px;}
.x3a_c00047{left:141.965535px;}
.x6_c00047{left:151.796235px;}
.x2a_c00047{left:163.403985px;}
.x2e_c00047{left:172.863435px;}
.x20_c00047{left:174.081135px;}
.x54_c00047{left:175.600785px;}
.x36_c00047{left:187.505535px;}
.x49_c00047{left:197.534235px;}
.x21_c00047{left:207.909435px;}
.x59_c00047{left:209.310285px;}
.x4a_c00047{left:210.419085px;}
.x7_c00047{left:218.636085px;}
.x47_c00047{left:219.675585px;}
.x19_c00047{left:229.684485px;}
.x22_c00047{left:241.044735px;}
.x5b_c00047{left:242.371335px;}
.x8_c00047{left:252.098085px;}
.x1a_c00047{left:262.978185px;}
.x53_c00047{left:264.438435px;}
.x37_c00047{left:274.556235px;}
.x9_c00047{left:285.589785px;}
.x33_c00047{left:297.019335px;}
.x4c_c00047{left:307.335135px;}
.x2b_c00047{left:318.433035px;}
.x44_c00047{left:319.833885px;}
.x48_c00047{left:328.214235px;}
.x34_c00047{left:329.837835px;}
.x1b_c00047{left:340.717935px;}
.x55_c00047{left:343.049385px;}
.xa_c00047{left:351.751485px;}
.x23_c00047{left:352.781085px;}
.x5a_c00047{left:362.111835px;}
.x5c_c00047{left:363.651285px;}
.xb_c00047{left:373.902735px;}
.x56_c00047{left:385.168935px;}
.x2f_c00047{left:386.208435px;}
.x12_c00047{left:395.722335px;}
.x38_c00047{left:396.796485px;}
.x51_c00047{left:407.132085px;}
.x41_c00047{left:416.942985px;}
.xc_c00047{left:418.487385px;}
.x13_c00047{left:428.001285px;}
.x45_c00047{left:429.624885px;}
.x30_c00047{left:436.955835px;}
.x1c_c00047{left:440.302035px;}
.xd_c00047{left:451.355385px;}
.x3b_c00047{left:462.265185px;}
.x39_c00047{left:473.259135px;}
.x31_c00047{left:474.486735px;}
.x46_c00047{left:485.178735px;}
.x60_c00047{left:487.460685px;}
.x4_c00047{left:492.831435px;}
.x24_c00047{left:495.558885px;}
.x14_c00047{left:506.607285px;}
.x42_c00047{left:516.744885px;}
.x25_c00047{left:528.704085px;}
.x57_c00047{left:530.109885px;}
.x15_c00047{left:539.104035px;}
.x5e_c00047{left:540.430635px;}
.x4b_c00047{left:549.895035px;}
.xe_c00047{left:551.132535px;}
.x3c_c00047{left:561.270135px;}
.x1d_c00047{left:573.263985px;}
.xf_c00047{left:583.594635px;}
.x3d_c00047{left:594.266835px;}
.x26_c00047{left:595.677585px;}
.x2c_c00047{left:605.988435px;}
.x16_c00047{left:616.749735px;}
.x3e_c00047{left:618.106035px;}
.x4d_c00047{left:620.090985px;}
.x1e_c00047{left:626.560635px;}
.x10_c00047{left:628.065435px;}
.x27_c00047{left:629.124735px;}
.x2_c00047{left:638.064435px;}
.x2d_c00047{left:639.851385px;}
.x3_c00047{left:649.642485px;}
.x5f_c00047{left:650.954235px;}
.x35_c00047{left:652.454085px;}
.x28_c00047{left:661.958085px;}
.x3f_c00047{left:671.066085px;}
.x1f_c00047{left:672.313485px;}
.x4e_c00047{left:673.367835px;}
.x43_c00047{left:697.578285px;}
@media print{
.v0_c00047{vertical-align:0.000000pt;}
.ls3_c00047{letter-spacing:-2.735046pt;}
.ls9_c00047{letter-spacing:-2.439360pt;}
.ls6_c00047{letter-spacing:-1.686643pt;}
.ls8_c00047{letter-spacing:-1.268467pt;}
.ls5_c00047{letter-spacing:-0.111514pt;}
.ls2_c00047{letter-spacing:0.000000pt;}
.lsd_c00047{letter-spacing:0.229997pt;}
.ls12_c00047{letter-spacing:0.313632pt;}
.lsb_c00047{letter-spacing:1.066349pt;}
.ls0_c00047{letter-spacing:1.428768pt;}
.ls7_c00047{letter-spacing:1.610400pt;}
.ls10_c00047{letter-spacing:1.616947pt;}
.ls11_c00047{letter-spacing:1.628000pt;}
.lse_c00047{letter-spacing:1.742400pt;}
.ls14_c00047{letter-spacing:2.711174pt;}
.lsa_c00047{letter-spacing:2.766931pt;}
.ls1_c00047{letter-spacing:2.829658pt;}
.ls13_c00047{letter-spacing:3.010867pt;}
.ls16_c00047{letter-spacing:3.164198pt;}
.ls15_c00047{letter-spacing:3.254803pt;}
.lsf_c00047{letter-spacing:3.261773pt;}
.ls4_c00047{letter-spacing:3.484800pt;}
.lsc_c00047{letter-spacing:45.619376pt;}
.ws0_c00047{word-spacing:-18.852768pt;}
.ws1_c00047{word-spacing:-17.424000pt;}
.ws2_c00047{word-spacing:-0.557568pt;}
.ws3_c00047{word-spacing:0.000000pt;}
._0_c00047{margin-left:-8.154432pt;}
._2_c00047{width:3.833280pt;}
._1_c00047{width:5.646080pt;}
._3_c00047{width:9.060480pt;}
._7_c00047{width:12.474880pt;}
._9_c00047{width:18.450432pt;}
._4_c00047{width:19.375488pt;}
._6_c00047{width:21.048192pt;}
._8_c00047{width:29.482816pt;}
._5_c00047{width:31.572288pt;}
.fs1_c00047{font-size:19.712000pt;}
.fs8_c00047{font-size:24.640000pt;}
.fs3_c00047{font-size:32.208000pt;}
.fs7_c00047{font-size:32.560000pt;}
.fs4_c00047{font-size:35.200000pt;}
.fs5_c00047{font-size:45.619376pt;}
.fs6_c00047{font-size:66.528000pt;}
.fs2_c00047{font-size:69.696000pt;}
.fs9_c00047{font-size:70.048000pt;}
.fs0_c00047{font-size:78.144176pt;}
.y0_c00047{bottom:0.000000pt;}
.y20_c00047{bottom:52.189320pt;}
.y1_c00047{bottom:68.000000pt;}
.y1f_c00047{bottom:126.008120pt;}
.y1e_c00047{bottom:152.936120pt;}
.y1d_c00047{bottom:184.616120pt;}
.y1c_c00047{bottom:213.440520pt;}
.y1b_c00047{bottom:242.907320pt;}
.y1a_c00047{bottom:271.419320pt;}
.y19_c00047{bottom:299.931320pt;}
.y18_c00047{bottom:328.760120pt;}
.y17_c00047{bottom:350.298120pt;}
.y16_c00047{bottom:357.584520pt;}
.y15_c00047{bottom:414.612920pt;}
.y14_c00047{bottom:443.437320pt;}
.y12_c00047{bottom:471.636920pt;}
.y13_c00047{bottom:476.384520pt;}
.y11_c00047{bottom:500.144520pt;}
.y10_c00047{bottom:528.977720pt;}
.yf_c00047{bottom:541.649720pt;}
.ye_c00047{bottom:558.118920pt;}
.yd_c00047{bottom:586.635320pt;}
.yc_c00047{bottom:616.097720pt;}
.yb_c00047{bottom:645.555720pt;}
.ya_c00047{bottom:674.384520pt;}
.y9_c00047{bottom:702.900920pt;}
.y7_c00047{bottom:732.046520pt;}
.y8_c00047{bottom:736.794120pt;}
.y6_c00047{bottom:760.554120pt;}
.y5_c00047{bottom:789.382920pt;}
.y4_c00047{bottom:818.849720pt;}
.y3_c00047{bottom:887.274120pt;}
.y2_c00047{bottom:950.634120pt;}
.h3_c00047{height:20.559000pt;}
.ha_c00047{height:25.698750pt;}
.h7_c00047{height:30.382504pt;}
.h5_c00047{height:33.591938pt;}
.h9_c00047{height:33.959063pt;}
.h6_c00047{height:36.712500pt;}
.h8_c00047{height:65.293594pt;}
.h4_c00047{height:68.402813pt;}
.hb_c00047{height:68.748281pt;}
.h2_c00047{height:76.694235pt;}
.h1_c00047{height:986.666667pt;}
.h0_c00047{height:1122.666667pt;}
.w1_c00047{width:652.000000pt;}
.w0_c00047{width:793.333333pt;}
.x0_c00047{left:0.000000pt;}
.x29_c00047{left:57.054387pt;}
.x5_c00047{left:58.048787pt;}
.x52_c00047{left:58.985987pt;}
.x1_c00047{left:70.666667pt;}
.x32_c00047{left:86.125187pt;}
.x17_c00047{left:87.515587pt;}
.x50_c00047{left:97.059187pt;}
.x58_c00047{left:97.961187pt;}
.x40_c00047{left:106.026387pt;}
.x5d_c00047{left:107.856787pt;}
.x4f_c00047{left:113.013587pt;}
.x18_c00047{left:115.609587pt;}
.x11_c00047{left:124.783587pt;}
.x3a_c00047{left:126.191587pt;}
.x6_c00047{left:134.929987pt;}
.x2a_c00047{left:145.247987pt;}
.x2e_c00047{left:153.656387pt;}
.x20_c00047{left:154.738787pt;}
.x54_c00047{left:156.089587pt;}
.x36_c00047{left:166.671587pt;}
.x49_c00047{left:175.585987pt;}
.x21_c00047{left:184.808387pt;}
.x59_c00047{left:186.053587pt;}
.x4a_c00047{left:187.039187pt;}
.x7_c00047{left:194.343187pt;}
.x47_c00047{left:195.267187pt;}
.x19_c00047{left:204.163987pt;}
.x22_c00047{left:214.261987pt;}
.x5b_c00047{left:215.441187pt;}
.x8_c00047{left:224.087187pt;}
.x1a_c00047{left:233.758387pt;}
.x53_c00047{left:235.056387pt;}
.x37_c00047{left:244.049987pt;}
.x9_c00047{left:253.857587pt;}
.x33_c00047{left:264.017187pt;}
.x4c_c00047{left:273.186787pt;}
.x2b_c00047{left:283.051587pt;}
.x44_c00047{left:284.296787pt;}
.x48_c00047{left:291.745987pt;}
.x34_c00047{left:293.189187pt;}
.x1b_c00047{left:302.860387pt;}
.x55_c00047{left:304.932787pt;}
.xa_c00047{left:312.667987pt;}
.x23_c00047{left:313.583187pt;}
.x5a_c00047{left:321.877187pt;}
.x5c_c00047{left:323.245587pt;}
.xb_c00047{left:332.357987pt;}
.x56_c00047{left:342.372387pt;}
.x2f_c00047{left:343.296387pt;}
.x12_c00047{left:351.753187pt;}
.x38_c00047{left:352.707987pt;}
.x51_c00047{left:361.895187pt;}
.x41_c00047{left:370.615987pt;}
.xc_c00047{left:371.988787pt;}
.x13_c00047{left:380.445587pt;}
.x45_c00047{left:381.888787pt;}
.x30_c00047{left:388.405187pt;}
.x1c_c00047{left:391.379587pt;}
.xd_c00047{left:401.204787pt;}
.x3b_c00047{left:410.902387pt;}
.x39_c00047{left:420.674787pt;}
.x31_c00047{left:421.765987pt;}
.x46_c00047{left:431.269987pt;}
.x60_c00047{left:433.298387pt;}
.x4_c00047{left:438.072387pt;}
.x24_c00047{left:440.496787pt;}
.x14_c00047{left:450.317587pt;}
.x42_c00047{left:459.328787pt;}
.x25_c00047{left:469.959187pt;}
.x57_c00047{left:471.208787pt;}
.x15_c00047{left:479.203587pt;}
.x5e_c00047{left:480.382787pt;}
.x4b_c00047{left:488.795587pt;}
.xe_c00047{left:489.895587pt;}
.x3c_c00047{left:498.906787pt;}
.x1d_c00047{left:509.567987pt;}
.xf_c00047{left:518.750787pt;}
.x3d_c00047{left:528.237187pt;}
.x26_c00047{left:529.491187pt;}
.x2c_c00047{left:538.656387pt;}
.x16_c00047{left:548.221987pt;}
.x3e_c00047{left:549.427587pt;}
.x4d_c00047{left:551.191987pt;}
.x1e_c00047{left:556.942787pt;}
.x10_c00047{left:558.280387pt;}
.x27_c00047{left:559.221987pt;}
.x2_c00047{left:567.168387pt;}
.x2d_c00047{left:568.756787pt;}
.x3_c00047{left:577.459987pt;}
.x5f_c00047{left:578.625987pt;}
.x35_c00047{left:579.959187pt;}
.x28_c00047{left:588.407187pt;}
.x3f_c00047{left:596.503187pt;}
.x1f_c00047{left:597.611987pt;}
.x4e_c00047{left:598.549187pt;}
.x43_c00047{left:620.069587pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ce2732f6a07db01c8adfd2e0.woff2')format("woff");}.ff1_c00048{font-family:ff1_c00048;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00048;src:url('chunks/assets/font_e4dd9c5fd9c25d721628c839.woff2')format("woff");}.ff2_c00048{font-family:ff2_c00048;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00048;src:url('chunks/assets/font_f2e585333bf17002fed29536.woff2')format("woff");}.ff3_c00048{font-family:ff3_c00048;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00048;src:url('chunks/assets/font_22f12870470eeb22d4c47579.woff2')format("woff");}.ff4_c00048{font-family:ff4_c00048;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mb8_c00048{transform:matrix(0.106337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106337,0.000000,0.000000,0.250000,0,0);}
.m84_c00048{transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);}
.mad_c00048{transform:matrix(0.242705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242705,0.000000,0.000000,0.250000,0,0);}
.m0_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);}
.m7e_c00048{transform:matrix(0.250706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250706,0.000000,0.000000,0.250000,0,0);}
.m97_c00048{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.m3f_c00048{transform:matrix(0.252064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252064,0.000000,0.000000,0.250000,0,0);}
.m4a_c00048{transform:matrix(0.252205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252205,0.000000,0.000000,0.250000,0,0);}
.m5f_c00048{transform:matrix(0.253443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253443,0.000000,0.000000,0.250000,0,0);}
.m27_c00048{transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);}
.m8a_c00048{transform:matrix(0.254360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254360,0.000000,0.000000,0.250000,0,0);}
.m7c_c00048{transform:matrix(0.254767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254767,0.000000,0.000000,0.250000,0,0);}
.m99_c00048{transform:matrix(0.257781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257781,0.000000,0.000000,0.250000,0,0);}
.ma7_c00048{transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);}
.m21_c00048{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m44_c00048{transform:matrix(0.258775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258775,0.000000,0.000000,0.250000,0,0);}
.m4_c00048{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m75_c00048{transform:matrix(0.261931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261931,0.000000,0.000000,0.250000,0,0);}
.m91_c00048{transform:matrix(0.262285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262285,0.000000,0.000000,0.250000,0,0);}
.ma1_c00048{transform:matrix(0.262979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262979,0.000000,0.000000,0.250000,0,0);}
.m1c_c00048{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m46_c00048{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m90_c00048{transform:matrix(0.264128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264128,0.000000,0.000000,0.250000,0,0);}
.mb7_c00048{transform:matrix(0.264845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264845,0.000000,0.000000,0.250000,0,0);}
.m40_c00048{transform:matrix(0.265329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265329,0.000000,0.000000,0.250000,0,0);}
.m83_c00048{transform:matrix(0.265732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265732,0.000000,0.000000,0.250000,0,0);}
.m29_c00048{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m39_c00048{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.m82_c00048{transform:matrix(0.267624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267624,0.000000,0.000000,0.250000,0,0);}
.m17_c00048{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m53_c00048{transform:matrix(0.268688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268688,0.000000,0.000000,0.250000,0,0);}
.m32_c00048{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m2a_c00048{transform:matrix(0.271146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271146,0.000000,0.000000,0.250000,0,0);}
.m6d_c00048{transform:matrix(0.271600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271600,0.000000,0.000000,0.250000,0,0);}
.m49_c00048{transform:matrix(0.272152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272152,0.000000,0.000000,0.250000,0,0);}
.m33_c00048{transform:matrix(0.272278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272278,0.000000,0.000000,0.250000,0,0);}
.m69_c00048{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m55_c00048{transform:matrix(0.272660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272660,0.000000,0.000000,0.250000,0,0);}
.m7a_c00048{transform:matrix(0.272739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272739,0.000000,0.000000,0.250000,0,0);}
.m2f_c00048{transform:matrix(0.272804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272804,0.000000,0.000000,0.250000,0,0);}
.m2b_c00048{transform:matrix(0.272932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272932,0.000000,0.000000,0.250000,0,0);}
.m1d_c00048{transform:matrix(0.273449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273449,0.000000,0.000000,0.250000,0,0);}
.m8c_c00048{transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);}
.mac_c00048{transform:matrix(0.274645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274645,0.000000,0.000000,0.250000,0,0);}
.m70_c00048{transform:matrix(0.275282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275282,0.000000,0.000000,0.250000,0,0);}
.mc_c00048{transform:matrix(0.275570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275570,0.000000,0.000000,0.250000,0,0);}
.m78_c00048{transform:matrix(0.276604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276604,0.000000,0.000000,0.250000,0,0);}
.m80_c00048{transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);}
.m56_c00048{transform:matrix(0.277075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277075,0.000000,0.000000,0.250000,0,0);}
.m8e_c00048{transform:matrix(0.277140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277140,0.000000,0.000000,0.250000,0,0);}
.m9e_c00048{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m28_c00048{transform:matrix(0.277278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277278,0.000000,0.000000,0.250000,0,0);}
.ma6_c00048{transform:matrix(0.278331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278331,0.000000,0.000000,0.250000,0,0);}
.m24_c00048{transform:matrix(0.278426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278426,0.000000,0.000000,0.250000,0,0);}
.m1_c00048{transform:matrix(0.278430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278430,0.000000,0.000000,0.250000,0,0);}
.m6f_c00048{transform:matrix(0.278499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278499,0.000000,0.000000,0.250000,0,0);}
.mb_c00048{transform:matrix(0.279794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279794,0.000000,0.000000,0.250000,0,0);}
.m6a_c00048{transform:matrix(0.280086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280086,0.000000,0.000000,0.250000,0,0);}
.m2_c00048{transform:matrix(0.280356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280356,0.000000,0.000000,0.250000,0,0);}
.m87_c00048{transform:matrix(0.280991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280991,0.000000,0.000000,0.250000,0,0);}
.m10_c00048{transform:matrix(0.281047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281047,0.000000,0.000000,0.250000,0,0);}
.m6e_c00048{transform:matrix(0.281190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281190,0.000000,0.000000,0.250000,0,0);}
.m4f_c00048{transform:matrix(0.281334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281334,0.000000,0.000000,0.250000,0,0);}
.m63_c00048{transform:matrix(0.281549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281549,0.000000,0.000000,0.250000,0,0);}
.m79_c00048{transform:matrix(0.282312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282312,0.000000,0.000000,0.250000,0,0);}
.m25_c00048{transform:matrix(0.282643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282643,0.000000,0.000000,0.250000,0,0);}
.m66_c00048{transform:matrix(0.283243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283243,0.000000,0.000000,0.250000,0,0);}
.maf_c00048{transform:matrix(0.284288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284288,0.000000,0.000000,0.250000,0,0);}
.m3e_c00048{transform:matrix(0.284534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284534,0.000000,0.000000,0.250000,0,0);}
.m89_c00048{transform:matrix(0.284758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284758,0.000000,0.000000,0.250000,0,0);}
.m4d_c00048{transform:matrix(0.284924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284924,0.000000,0.000000,0.250000,0,0);}
.m77_c00048{transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);}
.m9c_c00048{transform:matrix(0.285766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285766,0.000000,0.000000,0.250000,0,0);}
.m26_c00048{transform:matrix(0.285801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285801,0.000000,0.000000,0.250000,0,0);}
.m65_c00048{transform:matrix(0.286199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286199,0.000000,0.000000,0.250000,0,0);}
.mb6_c00048{transform:matrix(0.286238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286238,0.000000,0.000000,0.250000,0,0);}
.m23_c00048{transform:matrix(0.286270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286270,0.000000,0.000000,0.250000,0,0);}
.m59_c00048{transform:matrix(0.286472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286472,0.000000,0.000000,0.250000,0,0);}
.m93_c00048{transform:matrix(0.286756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286756,0.000000,0.000000,0.250000,0,0);}
.mb9_c00048{transform:matrix(0.288459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288459,0.000000,0.000000,0.250000,0,0);}
.m22_c00048{transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);}
.m43_c00048{transform:matrix(0.288667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288667,0.000000,0.000000,0.250000,0,0);}
.m9d_c00048{transform:matrix(0.289287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289287,0.000000,0.000000,0.250000,0,0);}
.mf_c00048{transform:matrix(0.289520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289520,0.000000,0.000000,0.250000,0,0);}
.ma9_c00048{transform:matrix(0.289662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289662,0.000000,0.000000,0.250000,0,0);}
.m85_c00048{transform:matrix(0.289772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289772,0.000000,0.000000,0.250000,0,0);}
.m2e_c00048{transform:matrix(0.290126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290126,0.000000,0.000000,0.250000,0,0);}
.m95_c00048{transform:matrix(0.290194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290194,0.000000,0.000000,0.250000,0,0);}
.m61_c00048{transform:matrix(0.290289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290289,0.000000,0.000000,0.250000,0,0);}
.m34_c00048{transform:matrix(0.290724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290724,0.000000,0.000000,0.250000,0,0);}
.m7d_c00048{transform:matrix(0.291388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291388,0.000000,0.000000,0.250000,0,0);}
.m3b_c00048{transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);}
.m5b_c00048{transform:matrix(0.291828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291828,0.000000,0.000000,0.250000,0,0);}
.m15_c00048{transform:matrix(0.292385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292385,0.000000,0.000000,0.250000,0,0);}
.m96_c00048{transform:matrix(0.292523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292523,0.000000,0.000000,0.250000,0,0);}
.m72_c00048{transform:matrix(0.293336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293336,0.000000,0.000000,0.250000,0,0);}
.mbb_c00048{transform:matrix(0.293391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293391,0.000000,0.000000,0.250000,0,0);}
.m3_c00048{transform:matrix(0.293552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293552,0.000000,0.000000,0.250000,0,0);}
.m11_c00048{transform:matrix(0.294550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294550,0.000000,0.000000,0.250000,0,0);}
.mb2_c00048{transform:matrix(0.294733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294733,0.000000,0.000000,0.250000,0,0);}
.m5e_c00048{transform:matrix(0.295269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295269,0.000000,0.000000,0.250000,0,0);}
.m2d_c00048{transform:matrix(0.295291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295291,0.000000,0.000000,0.250000,0,0);}
.ma3_c00048{transform:matrix(0.295324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295324,0.000000,0.000000,0.250000,0,0);}
.m45_c00048{transform:matrix(0.295700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295700,0.000000,0.000000,0.250000,0,0);}
.m8d_c00048{transform:matrix(0.297339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297339,0.000000,0.000000,0.250000,0,0);}
.ma5_c00048{transform:matrix(0.297461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297461,0.000000,0.000000,0.250000,0,0);}
.m57_c00048{transform:matrix(0.298177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298177,0.000000,0.000000,0.250000,0,0);}
.m35_c00048{transform:matrix(0.298419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298419,0.000000,0.000000,0.250000,0,0);}
.m60_c00048{transform:matrix(0.298475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298475,0.000000,0.000000,0.250000,0,0);}
.m5_c00048{transform:matrix(0.298552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298552,0.000000,0.000000,0.250000,0,0);}
.m8f_c00048{transform:matrix(0.298679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298679,0.000000,0.000000,0.250000,0,0);}
.m74_c00048{transform:matrix(0.299612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299612,0.000000,0.000000,0.250000,0,0);}
.m41_c00048{transform:matrix(0.299839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299839,0.000000,0.000000,0.250000,0,0);}
.m20_c00048{transform:matrix(0.300198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300198,0.000000,0.000000,0.250000,0,0);}
.m4b_c00048{transform:matrix(0.300361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300361,0.000000,0.000000,0.250000,0,0);}
.m12_c00048{transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);}
.m48_c00048{transform:matrix(0.301349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301349,0.000000,0.000000,0.250000,0,0);}
.m9f_c00048{transform:matrix(0.301981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301981,0.000000,0.000000,0.250000,0,0);}
.m71_c00048{transform:matrix(0.302241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302241,0.000000,0.000000,0.250000,0,0);}
.m18_c00048{transform:matrix(0.302365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302365,0.000000,0.000000,0.250000,0,0);}
.ma4_c00048{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.mb0_c00048{transform:matrix(0.302515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302515,0.000000,0.000000,0.250000,0,0);}
.m50_c00048{transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);}
.ma0_c00048{transform:matrix(0.303644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303644,0.000000,0.000000,0.250000,0,0);}
.m67_c00048{transform:matrix(0.304299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304299,0.000000,0.000000,0.250000,0,0);}
.m76_c00048{transform:matrix(0.304559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304559,0.000000,0.000000,0.250000,0,0);}
.m88_c00048{transform:matrix(0.307282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307282,0.000000,0.000000,0.250000,0,0);}
.m3c_c00048{transform:matrix(0.307876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307876,0.000000,0.000000,0.250000,0,0);}
.ma8_c00048{transform:matrix(0.308174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308174,0.000000,0.000000,0.250000,0,0);}
.m9_c00048{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m6b_c00048{transform:matrix(0.308579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308579,0.000000,0.000000,0.250000,0,0);}
.m6c_c00048{transform:matrix(0.309166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309166,0.000000,0.000000,0.250000,0,0);}
.m6_c00048{transform:matrix(0.309270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309270,0.000000,0.000000,0.250000,0,0);}
.ma2_c00048{transform:matrix(0.309963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309963,0.000000,0.000000,0.250000,0,0);}
.m19_c00048{transform:matrix(0.311121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311121,0.000000,0.000000,0.250000,0,0);}
.m58_c00048{transform:matrix(0.311136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311136,0.000000,0.000000,0.250000,0,0);}
.m16_c00048{transform:matrix(0.311255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311255,0.000000,0.000000,0.250000,0,0);}
.m7b_c00048{transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);}
.m8b_c00048{transform:matrix(0.312744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312744,0.000000,0.000000,0.250000,0,0);}
.m8_c00048{transform:matrix(0.312783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312783,0.000000,0.000000,0.250000,0,0);}
.m31_c00048{transform:matrix(0.313129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313129,0.000000,0.000000,0.250000,0,0);}
.ma_c00048{transform:matrix(0.313231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313231,0.000000,0.000000,0.250000,0,0);}
.m38_c00048{transform:matrix(0.313398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313398,0.000000,0.000000,0.250000,0,0);}
.mb1_c00048{transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);}
.mb4_c00048{transform:matrix(0.313722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313722,0.000000,0.000000,0.250000,0,0);}
.m3d_c00048{transform:matrix(0.313752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313752,0.000000,0.000000,0.250000,0,0);}
.m37_c00048{transform:matrix(0.313850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313850,0.000000,0.000000,0.250000,0,0);}
.m94_c00048{transform:matrix(0.313947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313947,0.000000,0.000000,0.250000,0,0);}
.m9a_c00048{transform:matrix(0.314737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314737,0.000000,0.000000,0.250000,0,0);}
.mab_c00048{transform:matrix(0.315088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315088,0.000000,0.000000,0.250000,0,0);}
.m4c_c00048{transform:matrix(0.315917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315917,0.000000,0.000000,0.250000,0,0);}
.m30_c00048{transform:matrix(0.315987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315987,0.000000,0.000000,0.250000,0,0);}
.m5a_c00048{transform:matrix(0.316214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316214,0.000000,0.000000,0.250000,0,0);}
.mb3_c00048{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);}
.m1b_c00048{transform:matrix(0.318794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318794,0.000000,0.000000,0.250000,0,0);}
.m9b_c00048{transform:matrix(0.320786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320786,0.000000,0.000000,0.250000,0,0);}
.m5c_c00048{transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);}
.maa_c00048{transform:matrix(0.322154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322154,0.000000,0.000000,0.250000,0,0);}
.me_c00048{transform:matrix(0.323918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323918,0.000000,0.000000,0.250000,0,0);}
.m47_c00048{transform:matrix(0.324254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324254,0.000000,0.000000,0.250000,0,0);}
.mba_c00048{transform:matrix(0.326045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326045,0.000000,0.000000,0.250000,0,0);}
.m81_c00048{transform:matrix(0.326965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326965,0.000000,0.000000,0.250000,0,0);}
.m68_c00048{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m73_c00048{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.m4e_c00048{transform:matrix(0.329131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329131,0.000000,0.000000,0.250000,0,0);}
.m13_c00048{transform:matrix(0.329445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329445,0.000000,0.000000,0.250000,0,0);}
.mb5_c00048{transform:matrix(0.332725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332725,0.000000,0.000000,0.250000,0,0);}
.m64_c00048{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m51_c00048{transform:matrix(0.333511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333511,0.000000,0.000000,0.250000,0,0);}
.m92_c00048{transform:matrix(0.333645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333645,0.000000,0.000000,0.250000,0,0);}
.m1f_c00048{transform:matrix(0.333988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333988,0.000000,0.000000,0.250000,0,0);}
.m7f_c00048{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);}
.m5d_c00048{transform:matrix(0.336403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336403,0.000000,0.000000,0.250000,0,0);}
.m62_c00048{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);}
.m7_c00048{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m14_c00048{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.m3a_c00048{transform:matrix(0.344474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344474,0.000000,0.000000,0.250000,0,0);}
.m52_c00048{transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);}
.m1a_c00048{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m54_c00048{transform:matrix(0.351400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351400,0.000000,0.000000,0.250000,0,0);}
.m42_c00048{transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);}
.m2c_c00048{transform:matrix(0.355102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355102,0.000000,0.000000,0.250000,0,0);}
.m98_c00048{transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);}
.m36_c00048{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m1e_c00048{transform:matrix(0.358021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358021,0.000000,0.000000,0.250000,0,0);}
.md_c00048{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.mae_c00048{transform:matrix(0.392339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392339,0.000000,0.000000,0.250000,0,0);}
.m86_c00048{transform:matrix(0.408030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408030,0.000000,0.000000,0.250000,0,0);}
.v1_c00048{vertical-align:-19.958400px;}
.v0_c00048{vertical-align:0.000000px;}
.lsd_c00048{letter-spacing:-2.577967px;}
.ls3_c00048{letter-spacing:-2.375762px;}
.ls0_c00048{letter-spacing:0.000000px;}
.ls10_c00048{letter-spacing:1.246687px;}
.lsa_c00048{letter-spacing:1.732500px;}
.lsb_c00048{letter-spacing:1.960200px;}
.ls7_c00048{letter-spacing:2.509056px;}
.ls8_c00048{letter-spacing:3.011402px;}
.ls6_c00048{letter-spacing:3.128479px;}
.lsc_c00048{letter-spacing:3.544200px;}
.ls4_c00048{letter-spacing:3.682810px;}
.ls1_c00048{letter-spacing:3.861000px;}
.ls2_c00048{letter-spacing:3.920400px;}
.ls5_c00048{letter-spacing:4.098610px;}
.lse_c00048{letter-spacing:4.395610px;}
.ls9_c00048{letter-spacing:29.937798px;}
.lsf_c00048{letter-spacing:102.643398px;}
.sc__c00048{text-shadow:none;}
.sc0_c00048{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00048{-webkit-text-stroke:0px transparent;}
.sc0_c00048{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00048{word-spacing:0.000000px;}
._0_c00048{margin-left:-11.325600px;}
._1_c00048{width:28.775736px;}
.fc0_c00048{color:transparent;}
.fs0_c00048{font-size:27.720000px;}
.fsc_c00048{font-size:29.937798px;}
.fsd_c00048{font-size:33.264000px;}
.fs1_c00048{font-size:33.660000px;}
.fse_c00048{font-size:34.650000px;}
.fs10_c00048{font-size:34.848000px;}
.fs12_c00048{font-size:36.432000px;}
.fs2_c00048{font-size:43.560000px;}
.fs9_c00048{font-size:64.548000px;}
.fsb_c00048{font-size:67.320000px;}
.fs5_c00048{font-size:70.488000px;}
.fs11_c00048{font-size:70.884000px;}
.fs7_c00048{font-size:73.656198px;}
.fsf_c00048{font-size:74.844000px;}
.fs3_c00048{font-size:77.220000px;}
.fsa_c00048{font-size:77.814000px;}
.fs4_c00048{font-size:78.408000px;}
.fs8_c00048{font-size:81.972198px;}
.fs13_c00048{font-size:87.912198px;}
.fs6_c00048{font-size:91.872198px;}
.fs14_c00048{font-size:102.643398px;}
.y0_c00048{bottom:0.000000px;}
.y4_c00048{bottom:35.546985px;}
.y1_c00048{bottom:76.500000px;}
.y25_c00048{bottom:141.046335px;}
.y3_c00048{bottom:144.966735px;}
.y24_c00048{bottom:170.627535px;}
.y23_c00048{bottom:206.267535px;}
.y22_c00048{bottom:221.592735px;}
.y21_c00048{bottom:240.125535px;}
.y20_c00048{bottom:283.962735px;}
.y1f_c00048{bottom:305.698185px;}
.y1e_c00048{bottom:338.486985px;}
.y1d_c00048{bottom:370.924335px;}
.y1b_c00048{bottom:403.356735px;}
.y1c_c00048{bottom:408.702735px;}
.y1a_c00048{bottom:414.405135px;}
.y19_c00048{bottom:425.804985px;}
.y18_c00048{bottom:435.432735px;}
.y16_c00048{bottom:436.145535px;}
.y17_c00048{bottom:448.970985px;}
.y15_c00048{bottom:468.934335px;}
.y2_c00048{bottom:469.647135px;}
.y14_c00048{bottom:501.366735px;}
.y13_c00048{bottom:533.081385px;}
.y12_c00048{bottom:565.513785px;}
.y11_c00048{bottom:598.658985px;}
.y10_c00048{bottom:631.091385px;}
.yf_c00048{bottom:663.880185px;}
.ye_c00048{bottom:697.030335px;}
.yd_c00048{bottom:729.101385px;}
.yc_c00048{bottom:761.890185px;}
.yb_c00048{bottom:793.971135px;}
.ya_c00048{bottom:826.047135px;}
.y9_c00048{bottom:850.633785px;}
.y8_c00048{bottom:858.474585px;}
.y7_c00048{bottom:890.906985px;}
.y6_c00048{bottom:923.695785px;}
.y5_c00048{bottom:1078.016985px;}
.he_c00048{height:19.938573px;}
.h2_c00048{height:28.911094px;}
.h3_c00048{height:33.035449px;}
.h12_c00048{height:34.201406px;}
.hf_c00048{height:34.693313px;}
.h14_c00048{height:35.756016px;}
.h10_c00048{height:36.138867px;}
.h4_c00048{height:42.751758px;}
.hd_c00048{height:66.070898px;}
.hb_c00048{height:67.321547px;}
.h17_c00048{height:68.360503px;}
.h7_c00048{height:69.180117px;}
.h13_c00048{height:69.568770px;}
.h9_c00048{height:72.289530px;}
.h11_c00048{height:73.455293px;}
.h15_c00048{height:74.231637px;}
.h5_c00048{height:75.787207px;}
.hc_c00048{height:76.370186px;}
.h6_c00048{height:76.953164px;}
.ha_c00048{height:80.451229px;}
.h16_c00048{height:86.281015px;}
.h8_c00048{height:90.167538px;}
.h1_c00048{height:1110.000000px;}
.h0_c00048{height:1263.000000px;}
.w1_c00048{width:733.500000px;}
.w0_c00048{width:892.500000px;}
.x0_c00048{left:0.000000px;}
.x3_c00048{left:19.126335px;}
.x2_c00048{left:30.199485px;}
.x4_c00048{left:46.217685px;}
.xf_c00048{left:63.121935px;}
.x47_c00048{left:64.176285px;}
.x52_c00048{left:65.334585px;}
.x1_c00048{left:79.500000px;}
.x15_c00048{left:95.287035px;}
.x4e_c00048{left:97.044285px;}
.x62_c00048{left:99.162885px;}
.x36_c00048{left:106.454235px;}
.x4f_c00048{left:109.216335px;}
.x6_c00048{left:118.205535px;}
.x1f_c00048{left:129.100485px;}
.x63_c00048{left:130.516185px;}
.x25_c00048{left:138.975735px;}
.x5d_c00048{left:140.891385px;}
.x60_c00048{left:141.896235px;}
.x10_c00048{left:150.162735px;}
.x7_c00048{left:151.231935px;}
.x32_c00048{left:161.216085px;}
.x26_c00048{left:162.305085px;}
.x16_c00048{left:172.680285px;}
.x53_c00048{left:174.066285px;}
.x11_c00048{left:184.015785px;}
.x59_c00048{left:185.094885px;}
.x17_c00048{left:195.083985px;}
.x64_c00048{left:196.539285px;}
.x3d_c00048{left:205.780935px;}
.x5e_c00048{left:206.810535px;}
.x20_c00048{left:217.170885px;}
.x18_c00048{left:228.575685px;}
.x3f_c00048{left:230.689335px;}
.x33_c00048{left:239.930985px;}
.x8_c00048{left:250.004235px;}
.x57_c00048{left:251.043735px;}
.x4a_c00048{left:260.488335px;}
.x42_c00048{left:261.582285px;}
.x65_c00048{left:262.814835px;}
.x27_c00048{left:272.457435px;}
.x12_c00048{left:282.743535px;}
.x21_c00048{left:283.867185px;}
.x9_c00048{left:294.415635px;}
.x2c_c00048{left:306.285735px;}
.x22_c00048{left:316.883685px;}
.x66_c00048{left:320.492235px;}
.x19_c00048{left:326.719335px;}
.x5a_c00048{left:328.729035px;}
.x2d_c00048{left:338.534985px;}
.x37_c00048{left:339.772485px;}
.x23_c00048{left:348.875535px;}
.xa_c00048{left:360.651585px;}
.x34_c00048{left:361.785135px;}
.x3b_c00048{left:372.957285px;}
.x54_c00048{left:383.164185px;}
.x43_c00048{left:384.282885px;}
.x35_c00048{left:394.306635px;}
.x50_c00048{left:395.415435px;}
.x28_c00048{left:404.459085px;}
.x13_c00048{left:405.755985px;}
.x2e_c00048{left:416.081685px;}
.x44_c00048{left:417.131085px;}
.x38_c00048{left:426.169785px;}
.xb_c00048{left:427.758735px;}
.x24_c00048{left:438.411135px;}
.x2f_c00048{left:449.018985px;}
.x55_c00048{left:450.251535px;}
.xc_c00048{left:460.483185px;}
.x58_c00048{left:474.645135px;}
.x1a_c00048{left:483.050235px;}
.x4b_c00048{left:484.109535px;}
.x40_c00048{left:493.707585px;}
.x29_c00048{left:494.761935px;}
.x39_c00048{left:505.057935px;}
.x1b_c00048{left:516.517185px;}
.x1e_c00048{left:526.496385px;}
.x48_c00048{left:527.595285px;}
.x5b_c00048{left:539.346585px;}
.x14_c00048{left:548.182335px;}
.x61_c00048{left:550.251435px;}
.xd_c00048{left:559.681185px;}
.x5f_c00048{left:560.775135px;}
.x45_c00048{left:570.199935px;}
.x56_c00048{left:571.477035px;}
.x3e_c00048{left:581.768085px;}
.x30_c00048{left:592.856085px;}
.x67_c00048{left:594.588585px;}
.xe_c00048{left:604.221285px;}
.x1c_c00048{left:615.314235px;}
.x2a_c00048{left:625.996335px;}
.x41_c00048{left:627.629835px;}
.x3a_c00048{left:637.599135px;}
.x5_c00048{left:639.138585px;}
.x1d_c00048{left:647.900085px;}
.x3c_c00048{left:649.112835px;}
.x2b_c00048{left:658.592085px;}
.x31_c00048{left:659.819685px;}
.x46_c00048{left:670.194885px;}
.x49_c00048{left:673.739085px;}
.x68_c00048{left:675.332985px;}
.x5c_c00048{left:676.352685px;}
.x4c_c00048{left:678.327735px;}
.x4d_c00048{left:682.391685px;}
.x51_c00048{left:693.707385px;}
@media print{
.v1_c00048{vertical-align:-17.740800pt;}
.v0_c00048{vertical-align:0.000000pt;}
.lsd_c00048{letter-spacing:-2.291526pt;}
.ls3_c00048{letter-spacing:-2.111789pt;}
.ls0_c00048{letter-spacing:0.000000pt;}
.ls10_c00048{letter-spacing:1.108166pt;}
.lsa_c00048{letter-spacing:1.540000pt;}
.lsb_c00048{letter-spacing:1.742400pt;}
.ls7_c00048{letter-spacing:2.230272pt;}
.ls8_c00048{letter-spacing:2.676802pt;}
.ls6_c00048{letter-spacing:2.780870pt;}
.lsc_c00048{letter-spacing:3.150400pt;}
.ls4_c00048{letter-spacing:3.273609pt;}
.ls1_c00048{letter-spacing:3.432000pt;}
.ls2_c00048{letter-spacing:3.484800pt;}
.ls5_c00048{letter-spacing:3.643209pt;}
.lse_c00048{letter-spacing:3.907209pt;}
.ls9_c00048{letter-spacing:26.611376pt;}
.lsf_c00048{letter-spacing:91.238576pt;}
.ws0_c00048{word-spacing:0.000000pt;}
._0_c00048{margin-left:-10.067200pt;}
._1_c00048{width:25.578432pt;}
.fs0_c00048{font-size:24.640000pt;}
.fsc_c00048{font-size:26.611376pt;}
.fsd_c00048{font-size:29.568000pt;}
.fs1_c00048{font-size:29.920000pt;}
.fse_c00048{font-size:30.800000pt;}
.fs10_c00048{font-size:30.976000pt;}
.fs12_c00048{font-size:32.384000pt;}
.fs2_c00048{font-size:38.720000pt;}
.fs9_c00048{font-size:57.376000pt;}
.fsb_c00048{font-size:59.840000pt;}
.fs5_c00048{font-size:62.656000pt;}
.fs11_c00048{font-size:63.008000pt;}
.fs7_c00048{font-size:65.472176pt;}
.fsf_c00048{font-size:66.528000pt;}
.fs3_c00048{font-size:68.640000pt;}
.fsa_c00048{font-size:69.168000pt;}
.fs4_c00048{font-size:69.696000pt;}
.fs8_c00048{font-size:72.864176pt;}
.fs13_c00048{font-size:78.144176pt;}
.fs6_c00048{font-size:81.664176pt;}
.fs14_c00048{font-size:91.238576pt;}
.y0_c00048{bottom:0.000000pt;}
.y4_c00048{bottom:31.597320pt;}
.y1_c00048{bottom:68.000000pt;}
.y25_c00048{bottom:125.374520pt;}
.y3_c00048{bottom:128.859320pt;}
.y24_c00048{bottom:151.668920pt;}
.y23_c00048{bottom:183.348920pt;}
.y22_c00048{bottom:196.971320pt;}
.y21_c00048{bottom:213.444920pt;}
.y20_c00048{bottom:252.411320pt;}
.y1f_c00048{bottom:271.731720pt;}
.y1e_c00048{bottom:300.877320pt;}
.y1d_c00048{bottom:329.710520pt;}
.y1b_c00048{bottom:358.539320pt;}
.y1c_c00048{bottom:363.291320pt;}
.y1a_c00048{bottom:368.360120pt;}
.y19_c00048{bottom:378.493320pt;}
.y18_c00048{bottom:387.051320pt;}
.y16_c00048{bottom:387.684920pt;}
.y17_c00048{bottom:399.085320pt;}
.y15_c00048{bottom:416.830520pt;}
.y2_c00048{bottom:417.464120pt;}
.y14_c00048{bottom:445.659320pt;}
.y13_c00048{bottom:473.850120pt;}
.y12_c00048{bottom:502.678920pt;}
.y11_c00048{bottom:532.141320pt;}
.y10_c00048{bottom:560.970120pt;}
.yf_c00048{bottom:590.115720pt;}
.ye_c00048{bottom:619.582520pt;}
.yd_c00048{bottom:648.090120pt;}
.yc_c00048{bottom:677.235720pt;}
.yb_c00048{bottom:705.752120pt;}
.ya_c00048{bottom:734.264120pt;}
.y9_c00048{bottom:756.118920pt;}
.y8_c00048{bottom:763.088520pt;}
.y7_c00048{bottom:791.917320pt;}
.y6_c00048{bottom:821.062920pt;}
.y5_c00048{bottom:958.237320pt;}
.he_c00048{height:17.723176pt;}
.h2_c00048{height:25.698750pt;}
.h3_c00048{height:29.364844pt;}
.h12_c00048{height:30.401250pt;}
.hf_c00048{height:30.838500pt;}
.h14_c00048{height:31.783125pt;}
.h10_c00048{height:32.123438pt;}
.h4_c00048{height:38.001563pt;}
.hd_c00048{height:58.729688pt;}
.hb_c00048{height:59.841375pt;}
.h17_c00048{height:60.764892pt;}
.h7_c00048{height:61.493438pt;}
.h13_c00048{height:61.838906pt;}
.h9_c00048{height:64.257360pt;}
.h11_c00048{height:65.293594pt;}
.h15_c00048{height:65.983677pt;}
.h5_c00048{height:67.366406pt;}
.hc_c00048{height:67.884609pt;}
.h6_c00048{height:68.402813pt;}
.ha_c00048{height:71.512204pt;}
.h16_c00048{height:76.694235pt;}
.h8_c00048{height:80.148923pt;}
.h1_c00048{height:986.666667pt;}
.h0_c00048{height:1122.666667pt;}
.w1_c00048{width:652.000000pt;}
.w0_c00048{width:793.333333pt;}
.x0_c00048{left:0.000000pt;}
.x3_c00048{left:17.001187pt;}
.x2_c00048{left:26.843987pt;}
.x4_c00048{left:41.082387pt;}
.xf_c00048{left:56.108387pt;}
.x47_c00048{left:57.045587pt;}
.x52_c00048{left:58.075187pt;}
.x1_c00048{left:70.666667pt;}
.x15_c00048{left:84.699587pt;}
.x4e_c00048{left:86.261587pt;}
.x62_c00048{left:88.144787pt;}
.x36_c00048{left:94.625987pt;}
.x4f_c00048{left:97.081187pt;}
.x6_c00048{left:105.071587pt;}
.x1f_c00048{left:114.755987pt;}
.x63_c00048{left:116.014387pt;}
.x25_c00048{left:123.533987pt;}
.x5d_c00048{left:125.236787pt;}
.x60_c00048{left:126.129987pt;}
.x10_c00048{left:133.477987pt;}
.x7_c00048{left:134.428387pt;}
.x32_c00048{left:143.303187pt;}
.x26_c00048{left:144.271187pt;}
.x16_c00048{left:153.493587pt;}
.x53_c00048{left:154.725587pt;}
.x11_c00048{left:163.569587pt;}
.x59_c00048{left:164.528787pt;}
.x17_c00048{left:173.407987pt;}
.x64_c00048{left:174.701587pt;}
.x3d_c00048{left:182.916387pt;}
.x5e_c00048{left:183.831587pt;}
.x20_c00048{left:193.040787pt;}
.x18_c00048{left:203.178387pt;}
.x3f_c00048{left:205.057187pt;}
.x33_c00048{left:213.271987pt;}
.x8_c00048{left:222.225987pt;}
.x57_c00048{left:223.149987pt;}
.x4a_c00048{left:231.545187pt;}
.x42_c00048{left:232.517587pt;}
.x65_c00048{left:233.613187pt;}
.x27_c00048{left:242.184387pt;}
.x12_c00048{left:251.327587pt;}
.x21_c00048{left:252.326387pt;}
.x9_c00048{left:261.702787pt;}
.x2c_c00048{left:272.253987pt;}
.x22_c00048{left:281.674387pt;}
.x66_c00048{left:284.881987pt;}
.x19_c00048{left:290.417187pt;}
.x5a_c00048{left:292.203587pt;}
.x2d_c00048{left:300.919987pt;}
.x37_c00048{left:302.019987pt;}
.x23_c00048{left:310.111587pt;}
.xa_c00048{left:320.579187pt;}
.x34_c00048{left:321.586787pt;}
.x3b_c00048{left:331.517587pt;}
.x54_c00048{left:340.590387pt;}
.x43_c00048{left:341.584787pt;}
.x35_c00048{left:350.494787pt;}
.x50_c00048{left:351.480387pt;}
.x28_c00048{left:359.519187pt;}
.x13_c00048{left:360.671987pt;}
.x2e_c00048{left:369.850387pt;}
.x44_c00048{left:370.783187pt;}
.x38_c00048{left:378.817587pt;}
.xb_c00048{left:380.229987pt;}
.x24_c00048{left:389.698787pt;}
.x2f_c00048{left:399.127987pt;}
.x55_c00048{left:400.223587pt;}
.xc_c00048{left:409.318387pt;}
.x58_c00048{left:421.906787pt;}
.x1a_c00048{left:429.377987pt;}
.x4b_c00048{left:430.319587pt;}
.x40_c00048{left:438.851187pt;}
.x29_c00048{left:439.788387pt;}
.x39_c00048{left:448.940387pt;}
.x1b_c00048{left:459.126387pt;}
.x1e_c00048{left:467.996787pt;}
.x48_c00048{left:468.973587pt;}
.x5b_c00048{left:479.419187pt;}
.x14_c00048{left:487.273187pt;}
.x61_c00048{left:489.112387pt;}
.xd_c00048{left:497.494387pt;}
.x5f_c00048{left:498.466787pt;}
.x45_c00048{left:506.844387pt;}
.x56_c00048{left:507.979587pt;}
.x3e_c00048{left:517.127187pt;}
.x30_c00048{left:526.983187pt;}
.x67_c00048{left:528.523187pt;}
.xe_c00048{left:537.085587pt;}
.x1c_c00048{left:546.945987pt;}
.x2a_c00048{left:556.441187pt;}
.x41_c00048{left:557.893187pt;}
.x3a_c00048{left:566.754787pt;}
.x5_c00048{left:568.123187pt;}
.x1d_c00048{left:575.911187pt;}
.x3c_c00048{left:576.989187pt;}
.x2b_c00048{left:585.415187pt;}
.x31_c00048{left:586.506387pt;}
.x46_c00048{left:595.728787pt;}
.x49_c00048{left:598.879187pt;}
.x68_c00048{left:600.295987pt;}
.x5c_c00048{left:601.202387pt;}
.x4c_c00048{left:602.957987pt;}
.x4d_c00048{left:606.570387pt;}
.x51_c00048{left:616.628787pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_75bab765334bb72db38c076c.woff2')format("woff");}.ff1_c00049{font-family:ff1_c00049;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00049;src:url('chunks/assets/font_c47fd8bee1aa5ce936837b5c.woff2')format("woff");}.ff2_c00049{font-family:ff2_c00049;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m86_c00049{transform:matrix(0.225521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225521,0.000000,0.000000,0.250000,0,0);}
.m63_c00049{transform:matrix(0.234091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234091,0.000000,0.000000,0.250000,0,0);}
.m8c_c00049{transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);}
.m1f_c00049{transform:matrix(0.238513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238513,0.000000,0.000000,0.250000,0,0);}
.mab_c00049{transform:matrix(0.245833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245833,0.000000,0.000000,0.250000,0,0);}
.m0_c00049{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00049{transform:matrix(0.250435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250435,0.000000,0.000000,0.250000,0,0);}
.m47_c00049{transform:matrix(0.251448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251448,0.000000,0.000000,0.250000,0,0);}
.m55_c00049{transform:matrix(0.253667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253667,0.000000,0.000000,0.250000,0,0);}
.m35_c00049{transform:matrix(0.255872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255872,0.000000,0.000000,0.250000,0,0);}
.maa_c00049{transform:matrix(0.256189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256189,0.000000,0.000000,0.250000,0,0);}
.m72_c00049{transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);}
.mc_c00049{transform:matrix(0.257193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257193,0.000000,0.000000,0.250000,0,0);}
.m40_c00049{transform:matrix(0.259776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259776,0.000000,0.000000,0.250000,0,0);}
.mf_c00049{transform:matrix(0.260021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260021,0.000000,0.000000,0.250000,0,0);}
.m99_c00049{transform:matrix(0.260359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260359,0.000000,0.000000,0.250000,0,0);}
.m5e_c00049{transform:matrix(0.260564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260564,0.000000,0.000000,0.250000,0,0);}
.m37_c00049{transform:matrix(0.260901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260901,0.000000,0.000000,0.250000,0,0);}
.m38_c00049{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m78_c00049{transform:matrix(0.262509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262509,0.000000,0.000000,0.250000,0,0);}
.m10_c00049{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m24_c00049{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m90_c00049{transform:matrix(0.264220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264220,0.000000,0.000000,0.250000,0,0);}
.m31_c00049{transform:matrix(0.264648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264648,0.000000,0.000000,0.250000,0,0);}
.ma4_c00049{transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);}
.m62_c00049{transform:matrix(0.265694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265694,0.000000,0.000000,0.250000,0,0);}
.m54_c00049{transform:matrix(0.265793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265793,0.000000,0.000000,0.250000,0,0);}
.m95_c00049{transform:matrix(0.266108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266108,0.000000,0.000000,0.250000,0,0);}
.m2c_c00049{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.mae_c00049{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.m5b_c00049{transform:matrix(0.267040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267040,0.000000,0.000000,0.250000,0,0);}
.mb_c00049{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.mac_c00049{transform:matrix(0.267980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267980,0.000000,0.000000,0.250000,0,0);}
.m21_c00049{transform:matrix(0.268294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268294,0.000000,0.000000,0.250000,0,0);}
.m3c_c00049{transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);}
.m15_c00049{transform:matrix(0.269485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269485,0.000000,0.000000,0.250000,0,0);}
.m17_c00049{transform:matrix(0.270236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270236,0.000000,0.000000,0.250000,0,0);}
.m1c_c00049{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m45_c00049{transform:matrix(0.271150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271150,0.000000,0.000000,0.250000,0,0);}
.m46_c00049{transform:matrix(0.272109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272109,0.000000,0.000000,0.250000,0,0);}
.me_c00049{transform:matrix(0.272126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272126,0.000000,0.000000,0.250000,0,0);}
.m44_c00049{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m60_c00049{transform:matrix(0.273168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273168,0.000000,0.000000,0.250000,0,0);}
.m11_c00049{transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);}
.maf_c00049{transform:matrix(0.274096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274096,0.000000,0.000000,0.250000,0,0);}
.m25_c00049{transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);}
.m5c_c00049{transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);}
.m4f_c00049{transform:matrix(0.274853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274853,0.000000,0.000000,0.250000,0,0);}
.m7_c00049{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m1a_c00049{transform:matrix(0.275570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275570,0.000000,0.000000,0.250000,0,0);}
.m97_c00049{transform:matrix(0.276460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276460,0.000000,0.000000,0.250000,0,0);}
.m42_c00049{transform:matrix(0.277367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277367,0.000000,0.000000,0.250000,0,0);}
.m7f_c00049{transform:matrix(0.277389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277389,0.000000,0.000000,0.250000,0,0);}
.md_c00049{transform:matrix(0.277423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277423,0.000000,0.000000,0.250000,0,0);}
.m81_c00049{transform:matrix(0.277767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277767,0.000000,0.000000,0.250000,0,0);}
.m61_c00049{transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);}
.m3e_c00049{transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);}
.m18_c00049{transform:matrix(0.279935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279935,0.000000,0.000000,0.250000,0,0);}
.m88_c00049{transform:matrix(0.280830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280830,0.000000,0.000000,0.250000,0,0);}
.m16_c00049{transform:matrix(0.281328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281328,0.000000,0.000000,0.250000,0,0);}
.m23_c00049{transform:matrix(0.281807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281807,0.000000,0.000000,0.250000,0,0);}
.m66_c00049{transform:matrix(0.282610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282610,0.000000,0.000000,0.250000,0,0);}
.m82_c00049{transform:matrix(0.282820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282820,0.000000,0.000000,0.250000,0,0);}
.m1d_c00049{transform:matrix(0.282947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282947,0.000000,0.000000,0.250000,0,0);}
.m73_c00049{transform:matrix(0.283519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283519,0.000000,0.000000,0.250000,0,0);}
.m48_c00049{transform:matrix(0.283705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283705,0.000000,0.000000,0.250000,0,0);}
.m84_c00049{transform:matrix(0.283801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283801,0.000000,0.000000,0.250000,0,0);}
.m33_c00049{transform:matrix(0.283958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283958,0.000000,0.000000,0.250000,0,0);}
.m5f_c00049{transform:matrix(0.284128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284128,0.000000,0.000000,0.250000,0,0);}
.m8f_c00049{transform:matrix(0.285030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285030,0.000000,0.000000,0.250000,0,0);}
.m34_c00049{transform:matrix(0.285802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285802,0.000000,0.000000,0.250000,0,0);}
.m51_c00049{transform:matrix(0.285833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285833,0.000000,0.000000,0.250000,0,0);}
.ma0_c00049{transform:matrix(0.286383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286383,0.000000,0.000000,0.250000,0,0);}
.m9_c00049{transform:matrix(0.286460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286460,0.000000,0.000000,0.250000,0,0);}
.m2_c00049{transform:matrix(0.286876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286876,0.000000,0.000000,0.250000,0,0);}
.mb1_c00049{transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);}
.m30_c00049{transform:matrix(0.287533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287533,0.000000,0.000000,0.250000,0,0);}
.ma8_c00049{transform:matrix(0.288069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288069,0.000000,0.000000,0.250000,0,0);}
.mb0_c00049{transform:matrix(0.288623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288623,0.000000,0.000000,0.250000,0,0);}
.m27_c00049{transform:matrix(0.289026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289026,0.000000,0.000000,0.250000,0,0);}
.m36_c00049{transform:matrix(0.289086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289086,0.000000,0.000000,0.250000,0,0);}
.ma2_c00049{transform:matrix(0.289155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289155,0.000000,0.000000,0.250000,0,0);}
.m59_c00049{transform:matrix(0.289203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289203,0.000000,0.000000,0.250000,0,0);}
.m12_c00049{transform:matrix(0.289931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289931,0.000000,0.000000,0.250000,0,0);}
.m3_c00049{transform:matrix(0.289966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289966,0.000000,0.000000,0.250000,0,0);}
.m28_c00049{transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);}
.m4e_c00049{transform:matrix(0.291242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291242,0.000000,0.000000,0.250000,0,0);}
.m4b_c00049{transform:matrix(0.291288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291288,0.000000,0.000000,0.250000,0,0);}
.m96_c00049{transform:matrix(0.292411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292411,0.000000,0.000000,0.250000,0,0);}
.m65_c00049{transform:matrix(0.292606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292606,0.000000,0.000000,0.250000,0,0);}
.mad_c00049{transform:matrix(0.293134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293134,0.000000,0.000000,0.250000,0,0);}
.m2b_c00049{transform:matrix(0.293256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293256,0.000000,0.000000,0.250000,0,0);}
.m3f_c00049{transform:matrix(0.293394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293394,0.000000,0.000000,0.250000,0,0);}
.m9a_c00049{transform:matrix(0.294378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294378,0.000000,0.000000,0.250000,0,0);}
.m7b_c00049{transform:matrix(0.294550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294550,0.000000,0.000000,0.250000,0,0);}
.m2f_c00049{transform:matrix(0.294932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294932,0.000000,0.000000,0.250000,0,0);}
.m9e_c00049{transform:matrix(0.294977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294977,0.000000,0.000000,0.250000,0,0);}
.m5_c00049{transform:matrix(0.295952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295952,0.000000,0.000000,0.250000,0,0);}
.ma3_c00049{transform:matrix(0.296537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296537,0.000000,0.000000,0.250000,0,0);}
.m70_c00049{transform:matrix(0.296713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296713,0.000000,0.000000,0.250000,0,0);}
.m67_c00049{transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);}
.m92_c00049{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m6c_c00049{transform:matrix(0.297216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297216,0.000000,0.000000,0.250000,0,0);}
.m3b_c00049{transform:matrix(0.298006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298006,0.000000,0.000000,0.250000,0,0);}
.m76_c00049{transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);}
.m6f_c00049{transform:matrix(0.299102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299102,0.000000,0.000000,0.250000,0,0);}
.m87_c00049{transform:matrix(0.299643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299643,0.000000,0.000000,0.250000,0,0);}
.m39_c00049{transform:matrix(0.300068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300068,0.000000,0.000000,0.250000,0,0);}
.m9c_c00049{transform:matrix(0.300184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300184,0.000000,0.000000,0.250000,0,0);}
.m64_c00049{transform:matrix(0.300744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300744,0.000000,0.000000,0.250000,0,0);}
.m29_c00049{transform:matrix(0.301298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301298,0.000000,0.000000,0.250000,0,0);}
.m7e_c00049{transform:matrix(0.302588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302588,0.000000,0.000000,0.250000,0,0);}
.m22_c00049{transform:matrix(0.302753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302753,0.000000,0.000000,0.250000,0,0);}
.m50_c00049{transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);}
.m85_c00049{transform:matrix(0.306051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306051,0.000000,0.000000,0.250000,0,0);}
.m13_c00049{transform:matrix(0.307242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307242,0.000000,0.000000,0.250000,0,0);}
.m9b_c00049{transform:matrix(0.307914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307914,0.000000,0.000000,0.250000,0,0);}
.m6e_c00049{transform:matrix(0.307943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307943,0.000000,0.000000,0.250000,0,0);}
.m49_c00049{transform:matrix(0.308174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308174,0.000000,0.000000,0.250000,0,0);}
.m7a_c00049{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m52_c00049{transform:matrix(0.308583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308583,0.000000,0.000000,0.250000,0,0);}
.m98_c00049{transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);}
.m20_c00049{transform:matrix(0.309093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309093,0.000000,0.000000,0.250000,0,0);}
.m80_c00049{transform:matrix(0.309166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309166,0.000000,0.000000,0.250000,0,0);}
.m3a_c00049{transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);}
.ma6_c00049{transform:matrix(0.311149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311149,0.000000,0.000000,0.250000,0,0);}
.m8e_c00049{transform:matrix(0.311215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311215,0.000000,0.000000,0.250000,0,0);}
.ma7_c00049{transform:matrix(0.311985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311985,0.000000,0.000000,0.250000,0,0);}
.m4a_c00049{transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);}
.m8b_c00049{transform:matrix(0.312484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312484,0.000000,0.000000,0.250000,0,0);}
.m75_c00049{transform:matrix(0.312946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312946,0.000000,0.000000,0.250000,0,0);}
.m68_c00049{transform:matrix(0.313415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313415,0.000000,0.000000,0.250000,0,0);}
.ma9_c00049{transform:matrix(0.314199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314199,0.000000,0.000000,0.250000,0,0);}
.m43_c00049{transform:matrix(0.314479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314479,0.000000,0.000000,0.250000,0,0);}
.m56_c00049{transform:matrix(0.314995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314995,0.000000,0.000000,0.250000,0,0);}
.m6d_c00049{transform:matrix(0.315048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315048,0.000000,0.000000,0.250000,0,0);}
.m79_c00049{transform:matrix(0.315444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315444,0.000000,0.000000,0.250000,0,0);}
.ma1_c00049{transform:matrix(0.316716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316716,0.000000,0.000000,0.250000,0,0);}
.m6b_c00049{transform:matrix(0.317812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317812,0.000000,0.000000,0.250000,0,0);}
.m69_c00049{transform:matrix(0.317925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317925,0.000000,0.000000,0.250000,0,0);}
.m74_c00049{transform:matrix(0.317988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317988,0.000000,0.000000,0.250000,0,0);}
.m93_c00049{transform:matrix(0.318126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318126,0.000000,0.000000,0.250000,0,0);}
.m9f_c00049{transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);}
.m4d_c00049{transform:matrix(0.318910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318910,0.000000,0.000000,0.250000,0,0);}
.m89_c00049{transform:matrix(0.319394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319394,0.000000,0.000000,0.250000,0,0);}
.m91_c00049{transform:matrix(0.319670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319670,0.000000,0.000000,0.250000,0,0);}
.m53_c00049{transform:matrix(0.321181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321181,0.000000,0.000000,0.250000,0,0);}
.m5a_c00049{transform:matrix(0.322786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322786,0.000000,0.000000,0.250000,0,0);}
.m19_c00049{transform:matrix(0.323032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323032,0.000000,0.000000,0.250000,0,0);}
.m7c_c00049{transform:matrix(0.323206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323206,0.000000,0.000000,0.250000,0,0);}
.m41_c00049{transform:matrix(0.323215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323215,0.000000,0.000000,0.250000,0,0);}
.ma5_c00049{transform:matrix(0.325176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325176,0.000000,0.000000,0.250000,0,0);}
.m58_c00049{transform:matrix(0.325602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325602,0.000000,0.000000,0.250000,0,0);}
.m57_c00049{transform:matrix(0.325972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325972,0.000000,0.000000,0.250000,0,0);}
.m6_c00049{transform:matrix(0.326100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326100,0.000000,0.000000,0.250000,0,0);}
.m2a_c00049{transform:matrix(0.327290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327290,0.000000,0.000000,0.250000,0,0);}
.m4_c00049{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m77_c00049{transform:matrix(0.335470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335470,0.000000,0.000000,0.250000,0,0);}
.m8a_c00049{transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);}
.ma_c00049{transform:matrix(0.338414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338414,0.000000,0.000000,0.250000,0,0);}
.m14_c00049{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m83_c00049{transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);}
.mb2_c00049{transform:matrix(0.341756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341756,0.000000,0.000000,0.250000,0,0);}
.m5d_c00049{transform:matrix(0.343009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343009,0.000000,0.000000,0.250000,0,0);}
.m8d_c00049{transform:matrix(0.343691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343691,0.000000,0.000000,0.250000,0,0);}
.m8_c00049{transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);}
.m2e_c00049{transform:matrix(0.345602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345602,0.000000,0.000000,0.250000,0,0);}
.m4c_c00049{transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);}
.m94_c00049{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m9d_c00049{transform:matrix(0.350956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350956,0.000000,0.000000,0.250000,0,0);}
.m6a_c00049{transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);}
.m2d_c00049{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m26_c00049{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m32_c00049{transform:matrix(0.361926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361926,0.000000,0.000000,0.250000,0,0);}
.m1b_c00049{transform:matrix(0.362096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362096,0.000000,0.000000,0.250000,0,0);}
.m3d_c00049{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);}
.m7d_c00049{transform:matrix(0.368506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368506,0.000000,0.000000,0.250000,0,0);}
.m71_c00049{transform:matrix(0.375087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375087,0.000000,0.000000,0.250000,0,0);}
.m1e_c00049{transform:matrix(0.378961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378961,0.000000,0.000000,0.250000,0,0);}
.v1_c00049{vertical-align:-25.660800px;}
.v0_c00049{vertical-align:0.000000px;}
.v2_c00049{vertical-align:31.343400px;}
.ls4_c00049{letter-spacing:-2.744280px;}
.ls7_c00049{letter-spacing:-2.485534px;}
.ls3_c00049{letter-spacing:-2.375762px;}
.ls6_c00049{letter-spacing:-1.897474px;}
.lsb_c00049{letter-spacing:-1.677931px;}
.lsa_c00049{letter-spacing:-0.533174px;}
.ls0_c00049{letter-spacing:0.000000px;}
.ls5_c00049{letter-spacing:1.405800px;}
.ls8_c00049{letter-spacing:1.427026px;}
.lsd_c00049{letter-spacing:1.521115px;}
.ls9_c00049{letter-spacing:1.819066px;}
.lse_c00049{letter-spacing:2.344399px;}
.lsc_c00049{letter-spacing:3.653813px;}
.ls2_c00049{letter-spacing:3.920400px;}
.ls1_c00049{letter-spacing:4.494610px;}
.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:-19.602000px;}
.ws1_c00049{word-spacing:0.000000px;}
._1_c00049{margin-left:-5.465592px;}
._0_c00049{margin-left:-3.821004px;}
._c_c00049{width:3.136320px;}
._3_c00049{width:6.507468px;}
._4_c00049{width:7.606368px;}
._5_c00049{width:8.703288px;}
._9_c00049{width:10.036224px;}
._8_c00049{width:18.268668px;}
._b_c00049{width:20.856528px;}
._7_c00049{width:31.160448px;}
._a_c00049{width:43.516440px;}
._2_c00049{width:1162.470672px;}
._6_c00049{width:2163.565800px;}
.fc0_c00049{color:transparent;}
.fs3_c00049{font-size:22.176000px;}
.fsa_c00049{font-size:25.740000px;}
.fs0_c00049{font-size:27.720000px;}
.fs8_c00049{font-size:28.116000px;}
.fs6_c00049{font-size:38.808000px;}
.fsb_c00049{font-size:39.600000px;}
.fs1_c00049{font-size:53.064000px;}
.fsc_c00049{font-size:66.330000px;}
.fs9_c00049{font-size:74.844000px;}
.fs4_c00049{font-size:75.240000px;}
.fs5_c00049{font-size:78.408000px;}
.fs2_c00049{font-size:89.892198px;}
.fs7_c00049{font-size:91.872198px;}
.y0_c00049{bottom:0.000000px;}
.y1_c00049{bottom:76.500000px;}
.y23_c00049{bottom:141.402735px;}
.y22_c00049{bottom:170.983935px;}
.y21_c00049{bottom:201.990735px;}
.y20_c00049{bottom:238.343535px;}
.y1f_c00049{bottom:270.414585px;}
.y1e_c00049{bottom:302.851935px;}
.y1d_c00049{bottom:319.597785px;}
.y1c_c00049{bottom:335.284335px;}
.y1b_c00049{bottom:349.540335px;}
.y1a_c00049{bottom:350.253135px;}
.y19_c00049{bottom:367.711785px;}
.y18_c00049{bottom:400.149135px;}
.y17_c00049{bottom:433.294335px;}
.y16_c00049{bottom:466.083135px;}
.y15_c00049{bottom:499.223385px;}
.y14_c00049{bottom:531.304335px;}
.y13_c00049{bottom:563.375385px;}
.y12_c00049{bottom:595.807785px;}
.y11_c00049{bottom:627.888735px;}
.y10_c00049{bottom:660.677535px;}
.yf_c00049{bottom:693.109935px;}
.ye_c00049{bottom:752.628735px;}
.yd_c00049{bottom:757.261935px;}
.yc_c00049{bottom:789.694335px;}
.yb_c00049{bottom:810.721935px;}
.ya_c00049{bottom:821.765385px;}
.y9_c00049{bottom:854.197785px;}
.y8_c00049{bottom:886.986585px;}
.y7_c00049{bottom:910.865385px;}
.y6_c00049{bottom:919.067535px;}
.y5_c00049{bottom:1061.978985px;}
.y2_c00049{bottom:1077.304185px;}
.y4_c00049{bottom:1079.086185px;}
.y3_c00049{bottom:1102.608585px;}
.he_c00049{height:23.128875px;}
.hb_c00049{height:26.846016px;}
.h9_c00049{height:27.594316px;}
.h2_c00049{height:28.911094px;}
.h7_c00049{height:40.475531px;}
.hc_c00049{height:41.301563px;}
.h5_c00049{height:52.812169px;}
.h3_c00049{height:55.344094px;}
.hd_c00049{height:69.180117px;}
.ha_c00049{height:73.455293px;}
.h6_c00049{height:76.953164px;}
.h4_c00049{height:88.224276px;}
.h8_c00049{height:95.819832px;}
.h1_c00049{height:1110.000000px;}
.h0_c00049{height:1263.000000px;}
.w1_c00049{width:733.500000px;}
.w0_c00049{width:892.500000px;}
.x0_c00049{left:0.000000px;}
.x2_c00049{left:24.140685px;}
.x1c_c00049{left:59.142135px;}
.x10_c00049{left:60.389535px;}
.x6_c00049{left:61.780485px;}
.x42_c00049{left:62.819985px;}
.x1_c00049{left:79.500000px;}
.x33_c00049{left:81.154785px;}
.x2f_c00049{left:84.619785px;}
.x27_c00049{left:92.836785px;}
.x37_c00049{left:104.696985px;}
.x1d_c00049{left:114.938535px;}
.x32_c00049{left:116.953185px;}
.x11_c00049{left:125.848335px;}
.x30_c00049{left:136.094835px;}
.x7_c00049{left:147.232335px;}
.x5d_c00049{left:148.385685px;}
.x1e_c00049{left:159.102435px;}
.x34_c00049{left:169.779585px;}
.x48_c00049{left:170.814135px;}
.x12_c00049{left:181.110135px;}
.x28_c00049{left:183.659385px;}
.x4b_c00049{left:191.920935px;}
.x38_c00049{left:203.187135px;}
.x5f_c00049{left:204.251385px;}
.x56_c00049{left:212.725785px;}
.x39_c00049{left:214.324635px;}
.x8_c00049{left:215.349285px;}
.x1f_c00049{left:225.407685px;}
.x62_c00049{left:227.184735px;}
.x3f_c00049{left:235.911585px;}
.x20_c00049{left:236.975835px;}
.x9_c00049{left:248.029185px;}
.x29_c00049{left:250.335885px;}
.x4e_c00049{left:258.785535px;}
.x13_c00049{left:259.899285px;}
.x2a_c00049{left:269.962635px;}
.x53_c00049{left:271.304085px;}
.x21_c00049{left:281.372385px;}
.x14_c00049{left:292.767285px;}
.x2b_c00049{left:302.098035px;}
.x45_c00049{left:304.097835px;}
.x43_c00049{left:314.458185px;}
.x2c_c00049{left:325.199685px;}
.x4f_c00049{left:326.209485px;}
.xa_c00049{left:337.243035px;}
.x60_c00049{left:338.366685px;}
.x49_c00049{left:348.345885px;}
.x2d_c00049{left:358.701285px;}
.x51_c00049{left:360.097185px;}
.x63_c00049{left:362.210835px;}
.x22_c00049{left:370.120935px;}
.x23_c00049{left:381.114885px;}
.x5_c00049{left:383.773035px;}
.x15_c00049{left:391.851435px;}
.x31_c00049{left:403.127535px;}
.x3a_c00049{left:413.037435px;}
.x46_c00049{left:414.631335px;}
.x16_c00049{left:423.769035px;}
.x40_c00049{left:424.952085px;}
.x24_c00049{left:436.728135px;}
.xb_c00049{left:447.771585px;}
.x3b_c00049{left:458.062635px;}
.x5a_c00049{left:459.532785px;}
.x35_c00049{left:468.581385px;}
.x17_c00049{left:469.873335px;}
.x58_c00049{left:478.035885px;}
.xc_c00049{left:480.857385px;}
.x5e_c00049{left:483.332385px;}
.x41_c00049{left:491.381085px;}
.x5b_c00049{left:492.994785px;}
.x25_c00049{left:502.073085px;}
.xd_c00049{left:513.522435px;}
.x61_c00049{left:514.799535px;}
.x18_c00049{left:524.783685px;}
.x19_c00049{left:535.287585px;}
.x3c_c00049{left:546.182535px;}
.x54_c00049{left:547.246785px;}
.x3d_c00049{left:555.993435px;}
.x2e_c00049{left:557.527935px;}
.x4a_c00049{left:568.952535px;}
.x55_c00049{left:580.377135px;}
.xe_c00049{left:591.049335px;}
.x26_c00049{left:601.771035px;}
.x64_c00049{left:603.033285px;}
.x50_c00049{left:613.883685px;}
.x3e_c00049{left:623.843085px;}
.x1a_c00049{left:624.847935px;}
.x4_c00049{left:635.203335px;}
.x59_c00049{left:636.653685px;}
.x44_c00049{left:645.944835px;}
.x5c_c00049{left:648.058485px;}
.x47_c00049{left:656.815035px;}
.x3_c00049{left:657.923835px;}
.x36_c00049{left:659.423685px;}
.x4d_c00049{left:667.511985px;}
.x52_c00049{left:669.462285px;}
.x4c_c00049{left:670.521585px;}
.xf_c00049{left:676.308135px;}
.x1b_c00049{left:679.431585px;}
.x57_c00049{left:692.895585px;}
@media print{
.v1_c00049{vertical-align:-22.809600pt;}
.v0_c00049{vertical-align:0.000000pt;}
.v2_c00049{vertical-align:27.860800pt;}
.ls4_c00049{letter-spacing:-2.439360pt;}
.ls7_c00049{letter-spacing:-2.209363pt;}
.ls3_c00049{letter-spacing:-2.111789pt;}
.ls6_c00049{letter-spacing:-1.686643pt;}
.lsb_c00049{letter-spacing:-1.491494pt;}
.lsa_c00049{letter-spacing:-0.473933pt;}
.ls0_c00049{letter-spacing:0.000000pt;}
.ls5_c00049{letter-spacing:1.249600pt;}
.ls8_c00049{letter-spacing:1.268467pt;}
.lsd_c00049{letter-spacing:1.352102pt;}
.ls9_c00049{letter-spacing:1.616947pt;}
.lse_c00049{letter-spacing:2.083910pt;}
.lsc_c00049{letter-spacing:3.247834pt;}
.ls2_c00049{letter-spacing:3.484800pt;}
.ls1_c00049{letter-spacing:3.995209pt;}
.ws0_c00049{word-spacing:-17.424000pt;}
.ws1_c00049{word-spacing:0.000000pt;}
._1_c00049{margin-left:-4.858304pt;}
._0_c00049{margin-left:-3.396448pt;}
._c_c00049{width:2.787840pt;}
._3_c00049{width:5.784416pt;}
._4_c00049{width:6.761216pt;}
._5_c00049{width:7.736256pt;}
._9_c00049{width:8.921088pt;}
._8_c00049{width:16.238816pt;}
._b_c00049{width:18.539136pt;}
._7_c00049{width:27.698176pt;}
._a_c00049{width:38.681280pt;}
._2_c00049{width:1033.307264pt;}
._6_c00049{width:1923.169600pt;}
.fs3_c00049{font-size:19.712000pt;}
.fsa_c00049{font-size:22.880000pt;}
.fs0_c00049{font-size:24.640000pt;}
.fs8_c00049{font-size:24.992000pt;}
.fs6_c00049{font-size:34.496000pt;}
.fsb_c00049{font-size:35.200000pt;}
.fs1_c00049{font-size:47.168000pt;}
.fsc_c00049{font-size:58.960000pt;}
.fs9_c00049{font-size:66.528000pt;}
.fs4_c00049{font-size:66.880000pt;}
.fs5_c00049{font-size:69.696000pt;}
.fs2_c00049{font-size:79.904176pt;}
.fs7_c00049{font-size:81.664176pt;}
.y0_c00049{bottom:0.000000pt;}
.y1_c00049{bottom:68.000000pt;}
.y23_c00049{bottom:125.691320pt;}
.y22_c00049{bottom:151.985720pt;}
.y21_c00049{bottom:179.547320pt;}
.y20_c00049{bottom:211.860920pt;}
.y1f_c00049{bottom:240.368520pt;}
.y1e_c00049{bottom:269.201720pt;}
.y1d_c00049{bottom:284.086920pt;}
.y1c_c00049{bottom:298.030520pt;}
.y1b_c00049{bottom:310.702520pt;}
.y1a_c00049{bottom:311.336120pt;}
.y19_c00049{bottom:326.854920pt;}
.y18_c00049{bottom:355.688120pt;}
.y17_c00049{bottom:385.150520pt;}
.y16_c00049{bottom:414.296120pt;}
.y15_c00049{bottom:443.754120pt;}
.y14_c00049{bottom:472.270520pt;}
.y13_c00049{bottom:500.778120pt;}
.y12_c00049{bottom:529.606920pt;}
.y11_c00049{bottom:558.123320pt;}
.y10_c00049{bottom:587.268920pt;}
.yf_c00049{bottom:616.097720pt;}
.ye_c00049{bottom:669.003320pt;}
.yd_c00049{bottom:673.121720pt;}
.yc_c00049{bottom:701.950520pt;}
.yb_c00049{bottom:720.641720pt;}
.ya_c00049{bottom:730.458120pt;}
.y9_c00049{bottom:759.286920pt;}
.y8_c00049{bottom:788.432520pt;}
.y7_c00049{bottom:809.658120pt;}
.y6_c00049{bottom:816.948920pt;}
.y5_c00049{bottom:943.981320pt;}
.y2_c00049{bottom:957.603720pt;}
.y4_c00049{bottom:959.187720pt;}
.y3_c00049{bottom:980.096520pt;}
.he_c00049{height:20.559000pt;}
.hb_c00049{height:23.863125pt;}
.h9_c00049{height:24.528281pt;}
.h2_c00049{height:25.698750pt;}
.h7_c00049{height:35.978250pt;}
.hc_c00049{height:36.712500pt;}
.h5_c00049{height:46.944150pt;}
.h3_c00049{height:49.194750pt;}
.hd_c00049{height:61.493438pt;}
.ha_c00049{height:65.293594pt;}
.h6_c00049{height:68.402813pt;}
.h4_c00049{height:78.421579pt;}
.h8_c00049{height:85.173184pt;}
.h1_c00049{height:986.666667pt;}
.h0_c00049{height:1122.666667pt;}
.w1_c00049{width:652.000000pt;}
.w0_c00049{width:793.333333pt;}
.x0_c00049{left:0.000000pt;}
.x2_c00049{left:21.458387pt;}
.x1c_c00049{left:52.570787pt;}
.x10_c00049{left:53.679587pt;}
.x6_c00049{left:54.915987pt;}
.x42_c00049{left:55.839987pt;}
.x1_c00049{left:70.666667pt;}
.x33_c00049{left:72.137587pt;}
.x2f_c00049{left:75.217587pt;}
.x27_c00049{left:82.521587pt;}
.x37_c00049{left:93.063987pt;}
.x1d_c00049{left:102.167587pt;}
.x32_c00049{left:103.958387pt;}
.x11_c00049{left:111.865187pt;}
.x30_c00049{left:120.973187pt;}
.x7_c00049{left:130.873187pt;}
.x5d_c00049{left:131.898387pt;}
.x1e_c00049{left:141.424387pt;}
.x34_c00049{left:150.915187pt;}
.x48_c00049{left:151.834787pt;}
.x12_c00049{left:160.986787pt;}
.x28_c00049{left:163.252787pt;}
.x4b_c00049{left:170.596387pt;}
.x38_c00049{left:180.610787pt;}
.x5f_c00049{left:181.556787pt;}
.x56_c00049{left:189.089587pt;}
.x39_c00049{left:190.510787pt;}
.x8_c00049{left:191.421587pt;}
.x1f_c00049{left:200.362387pt;}
.x62_c00049{left:201.941987pt;}
.x3f_c00049{left:209.699187pt;}
.x20_c00049{left:210.645187pt;}
.x9_c00049{left:220.470387pt;}
.x29_c00049{left:222.520787pt;}
.x4e_c00049{left:230.031587pt;}
.x13_c00049{left:231.021587pt;}
.x2a_c00049{left:239.966787pt;}
.x53_c00049{left:241.159187pt;}
.x21_c00049{left:250.108787pt;}
.x14_c00049{left:260.237587pt;}
.x2b_c00049{left:268.531587pt;}
.x45_c00049{left:270.309187pt;}
.x43_c00049{left:279.518387pt;}
.x2c_c00049{left:289.066387pt;}
.x4f_c00049{left:289.963987pt;}
.xa_c00049{left:299.771587pt;}
.x60_c00049{left:300.770387pt;}
.x49_c00049{left:309.640787pt;}
.x2d_c00049{left:318.845587pt;}
.x51_c00049{left:320.086387pt;}
.x63_c00049{left:321.965187pt;}
.x22_c00049{left:328.996387pt;}
.x23_c00049{left:338.768787pt;}
.x5_c00049{left:341.131587pt;}
.x15_c00049{left:348.312387pt;}
.x31_c00049{left:358.335587pt;}
.x3a_c00049{left:367.144387pt;}
.x46_c00049{left:368.561187pt;}
.x16_c00049{left:376.683587pt;}
.x40_c00049{left:377.735187pt;}
.x24_c00049{left:388.202787pt;}
.xb_c00049{left:398.019187pt;}
.x3b_c00049{left:407.166787pt;}
.x5a_c00049{left:408.473587pt;}
.x35_c00049{left:416.516787pt;}
.x17_c00049{left:417.665187pt;}
.x58_c00049{left:424.920787pt;}
.xc_c00049{left:427.428787pt;}
.x5e_c00049{left:429.628787pt;}
.x41_c00049{left:436.783187pt;}
.x5b_c00049{left:438.217587pt;}
.x25_c00049{left:446.287187pt;}
.xd_c00049{left:456.464387pt;}
.x61_c00049{left:457.599587pt;}
.x18_c00049{left:466.474387pt;}
.x19_c00049{left:475.811187pt;}
.x3c_c00049{left:485.495587pt;}
.x54_c00049{left:486.441587pt;}
.x3d_c00049{left:494.216387pt;}
.x2e_c00049{left:495.580387pt;}
.x4a_c00049{left:505.735587pt;}
.x55_c00049{left:515.890787pt;}
.xe_c00049{left:525.377187pt;}
.x26_c00049{left:534.907587pt;}
.x64_c00049{left:536.029587pt;}
.x50_c00049{left:545.674387pt;}
.x3e_c00049{left:554.527187pt;}
.x1a_c00049{left:555.420387pt;}
.x4_c00049{left:564.625187pt;}
.x59_c00049{left:565.914387pt;}
.x44_c00049{left:574.173187pt;}
.x5c_c00049{left:576.051987pt;}
.x47_c00049{left:583.835587pt;}
.x3_c00049{left:584.821187pt;}
.x36_c00049{left:586.154387pt;}
.x4d_c00049{left:593.343987pt;}
.x52_c00049{left:595.077587pt;}
.x4c_c00049{left:596.019187pt;}
.xf_c00049{left:601.162787pt;}
.x1b_c00049{left:603.939187pt;}
.x57_c00049{left:615.907187pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7d19b73333fc61c89268f0a1.woff2')format("woff");}.ff1_c00050{font-family:ff1_c00050;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00050;src:url('chunks/assets/font_a68806377dda3896ee41b6db.woff2')format("woff");}.ff2_c00050{font-family:ff2_c00050;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00050;src:url('chunks/assets/font_097e876650f0c3e703db301a.woff2')format("woff");}.ff3_c00050{font-family:ff3_c00050;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00050;src:url('chunks/assets/font_19bf5c32dc31a1473dfdd645.woff2')format("woff");}.ff4_c00050{font-family:ff4_c00050;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mad_c00050{transform:matrix(0.109682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109682,0.000000,0.000000,0.250000,0,0);}
.m2a_c00050{transform:matrix(0.198198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198198,0.000000,0.000000,0.250000,0,0);}
.m7e_c00050{transform:matrix(0.201214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201214,0.000000,0.000000,0.250000,0,0);}
.m28_c00050{transform:matrix(0.206457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206457,0.000000,0.000000,0.250000,0,0);}
.m57_c00050{transform:matrix(0.235326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235326,0.000000,0.000000,0.250000,0,0);}
.m8f_c00050{transform:matrix(0.243532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243532,0.000000,0.000000,0.250000,0,0);}
.m95_c00050{transform:matrix(0.245719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245719,0.000000,0.000000,0.250000,0,0);}
.m3e_c00050{transform:matrix(0.248550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248550,0.000000,0.000000,0.250000,0,0);}
.m10_c00050{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0_c00050{transform:matrix(0.251454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251454,0.000000,0.000000,0.250000,0,0);}
.m79_c00050{transform:matrix(0.255223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255223,0.000000,0.000000,0.250000,0,0);}
.m1e_c00050{transform:matrix(0.255459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255459,0.000000,0.000000,0.250000,0,0);}
.m43_c00050{transform:matrix(0.255721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255721,0.000000,0.000000,0.250000,0,0);}
.m30_c00050{transform:matrix(0.255742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255742,0.000000,0.000000,0.250000,0,0);}
.m9d_c00050{transform:matrix(0.255901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255901,0.000000,0.000000,0.250000,0,0);}
.me_c00050{transform:matrix(0.256159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256159,0.000000,0.000000,0.250000,0,0);}
.m8c_c00050{transform:matrix(0.256640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256640,0.000000,0.000000,0.250000,0,0);}
.m26_c00050{transform:matrix(0.257706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257706,0.000000,0.000000,0.250000,0,0);}
.m85_c00050{transform:matrix(0.257865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257865,0.000000,0.000000,0.250000,0,0);}
.m9a_c00050{transform:matrix(0.258135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258135,0.000000,0.000000,0.250000,0,0);}
.ma5_c00050{transform:matrix(0.258185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258185,0.000000,0.000000,0.250000,0,0);}
.m5d_c00050{transform:matrix(0.258337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258337,0.000000,0.000000,0.250000,0,0);}
.m13_c00050{transform:matrix(0.260021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260021,0.000000,0.000000,0.250000,0,0);}
.m9e_c00050{transform:matrix(0.263564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263564,0.000000,0.000000,0.250000,0,0);}
.m15_c00050{transform:matrix(0.264110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264110,0.000000,0.000000,0.250000,0,0);}
.m21_c00050{transform:matrix(0.264583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264583,0.000000,0.000000,0.250000,0,0);}
.m27_c00050{transform:matrix(0.264626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264626,0.000000,0.000000,0.250000,0,0);}
.m16_c00050{transform:matrix(0.265501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265501,0.000000,0.000000,0.250000,0,0);}
.maa_c00050{transform:matrix(0.266610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266610,0.000000,0.000000,0.250000,0,0);}
.m46_c00050{transform:matrix(0.267046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267046,0.000000,0.000000,0.250000,0,0);}
.m56_c00050{transform:matrix(0.267264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267264,0.000000,0.000000,0.250000,0,0);}
.ma9_c00050{transform:matrix(0.267408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267408,0.000000,0.000000,0.250000,0,0);}
.m91_c00050{transform:matrix(0.267506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267506,0.000000,0.000000,0.250000,0,0);}
.m5b_c00050{transform:matrix(0.268217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268217,0.000000,0.000000,0.250000,0,0);}
.m5e_c00050{transform:matrix(0.268991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268991,0.000000,0.000000,0.250000,0,0);}
.m7_c00050{transform:matrix(0.269145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269145,0.000000,0.000000,0.250000,0,0);}
.m4e_c00050{transform:matrix(0.269738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269738,0.000000,0.000000,0.250000,0,0);}
.m8b_c00050{transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);}
.m1_c00050{transform:matrix(0.270708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270708,0.000000,0.000000,0.250000,0,0);}
.m9f_c00050{transform:matrix(0.270723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270723,0.000000,0.000000,0.250000,0,0);}
.m3c_c00050{transform:matrix(0.271426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271426,0.000000,0.000000,0.250000,0,0);}
.m22_c00050{transform:matrix(0.271935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271935,0.000000,0.000000,0.250000,0,0);}
.m5c_c00050{transform:matrix(0.271966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271966,0.000000,0.000000,0.250000,0,0);}
.m4_c00050{transform:matrix(0.272118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272118,0.000000,0.000000,0.250000,0,0);}
.m4f_c00050{transform:matrix(0.272256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272256,0.000000,0.000000,0.250000,0,0);}
.m75_c00050{transform:matrix(0.272803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272803,0.000000,0.000000,0.250000,0,0);}
.m77_c00050{transform:matrix(0.273072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273072,0.000000,0.000000,0.250000,0,0);}
.m93_c00050{transform:matrix(0.273480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273480,0.000000,0.000000,0.250000,0,0);}
.m55_c00050{transform:matrix(0.274459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274459,0.000000,0.000000,0.250000,0,0);}
.m6f_c00050{transform:matrix(0.275373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275373,0.000000,0.000000,0.250000,0,0);}
.m78_c00050{transform:matrix(0.275488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275488,0.000000,0.000000,0.250000,0,0);}
.m32_c00050{transform:matrix(0.275913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275913,0.000000,0.000000,0.250000,0,0);}
.m58_c00050{transform:matrix(0.276474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276474,0.000000,0.000000,0.250000,0,0);}
.m4b_c00050{transform:matrix(0.276730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276730,0.000000,0.000000,0.250000,0,0);}
.m6a_c00050{transform:matrix(0.277132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277132,0.000000,0.000000,0.250000,0,0);}
.m6d_c00050{transform:matrix(0.277213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277213,0.000000,0.000000,0.250000,0,0);}
.m7a_c00050{transform:matrix(0.278304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278304,0.000000,0.000000,0.250000,0,0);}
.m6c_c00050{transform:matrix(0.278749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278749,0.000000,0.000000,0.250000,0,0);}
.mc_c00050{transform:matrix(0.279207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279207,0.000000,0.000000,0.250000,0,0);}
.m92_c00050{transform:matrix(0.279294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279294,0.000000,0.000000,0.250000,0,0);}
.ma1_c00050{transform:matrix(0.279713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279713,0.000000,0.000000,0.250000,0,0);}
.m62_c00050{transform:matrix(0.280012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280012,0.000000,0.000000,0.250000,0,0);}
.m11_c00050{transform:matrix(0.280436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280436,0.000000,0.000000,0.250000,0,0);}
.m88_c00050{transform:matrix(0.280872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280872,0.000000,0.000000,0.250000,0,0);}
.m76_c00050{transform:matrix(0.281372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281372,0.000000,0.000000,0.250000,0,0);}
.m1f_c00050{transform:matrix(0.282052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282052,0.000000,0.000000,0.250000,0,0);}
.m17_c00050{transform:matrix(0.282088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282088,0.000000,0.000000,0.250000,0,0);}
.m63_c00050{transform:matrix(0.282668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282668,0.000000,0.000000,0.250000,0,0);}
.m44_c00050{transform:matrix(0.285399,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285399,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285399,0.000000,0.000000,0.250000,0,0);}
.ma6_c00050{transform:matrix(0.285542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285542,0.000000,0.000000,0.250000,0,0);}
.m3f_c00050{transform:matrix(0.285910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285910,0.000000,0.000000,0.250000,0,0);}
.m47_c00050{transform:matrix(0.286066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286066,0.000000,0.000000,0.250000,0,0);}
.m4d_c00050{transform:matrix(0.286539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286539,0.000000,0.000000,0.250000,0,0);}
.m5f_c00050{transform:matrix(0.286824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286824,0.000000,0.000000,0.250000,0,0);}
.m9_c00050{transform:matrix(0.286941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286941,0.000000,0.000000,0.250000,0,0);}
.m2_c00050{transform:matrix(0.287231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287231,0.000000,0.000000,0.250000,0,0);}
.m54_c00050{transform:matrix(0.287304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287304,0.000000,0.000000,0.250000,0,0);}
.m8d_c00050{transform:matrix(0.287578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287578,0.000000,0.000000,0.250000,0,0);}
.m60_c00050{transform:matrix(0.288067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288067,0.000000,0.000000,0.250000,0,0);}
.m29_c00050{transform:matrix(0.288228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288228,0.000000,0.000000,0.250000,0,0);}
.m9c_c00050{transform:matrix(0.288620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288620,0.000000,0.000000,0.250000,0,0);}
.m1a_c00050{transform:matrix(0.289087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289087,0.000000,0.000000,0.250000,0,0);}
.m87_c00050{transform:matrix(0.289675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289675,0.000000,0.000000,0.250000,0,0);}
.m4a_c00050{transform:matrix(0.289736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289736,0.000000,0.000000,0.250000,0,0);}
.mf_c00050{transform:matrix(0.290006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290006,0.000000,0.000000,0.250000,0,0);}
.m64_c00050{transform:matrix(0.290210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290210,0.000000,0.000000,0.250000,0,0);}
.m72_c00050{transform:matrix(0.290590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290590,0.000000,0.000000,0.250000,0,0);}
.m18_c00050{transform:matrix(0.291493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291493,0.000000,0.000000,0.250000,0,0);}
.m31_c00050{transform:matrix(0.292397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292397,0.000000,0.000000,0.250000,0,0);}
.md_c00050{transform:matrix(0.293401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293401,0.000000,0.000000,0.250000,0,0);}
.m41_c00050{transform:matrix(0.293463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293463,0.000000,0.000000,0.250000,0,0);}
.m61_c00050{transform:matrix(0.294426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294426,0.000000,0.000000,0.250000,0,0);}
.m1c_c00050{transform:matrix(0.294516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294516,0.000000,0.000000,0.250000,0,0);}
.m2b_c00050{transform:matrix(0.294686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294686,0.000000,0.000000,0.250000,0,0);}
.m4c_c00050{transform:matrix(0.295315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295315,0.000000,0.000000,0.250000,0,0);}
.m36_c00050{transform:matrix(0.295337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295337,0.000000,0.000000,0.250000,0,0);}
.m68_c00050{transform:matrix(0.296739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296739,0.000000,0.000000,0.250000,0,0);}
.m86_c00050{transform:matrix(0.296829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296829,0.000000,0.000000,0.250000,0,0);}
.m81_c00050{transform:matrix(0.297733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297733,0.000000,0.000000,0.250000,0,0);}
.m67_c00050{transform:matrix(0.297782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297782,0.000000,0.000000,0.250000,0,0);}
.m99_c00050{transform:matrix(0.297986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297986,0.000000,0.000000,0.250000,0,0);}
.m37_c00050{transform:matrix(0.298291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298291,0.000000,0.000000,0.250000,0,0);}
.m49_c00050{transform:matrix(0.298315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298315,0.000000,0.000000,0.250000,0,0);}
.ma_c00050{transform:matrix(0.298458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298458,0.000000,0.000000,0.250000,0,0);}
.m50_c00050{transform:matrix(0.298641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298641,0.000000,0.000000,0.250000,0,0);}
.m7b_c00050{transform:matrix(0.298792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298792,0.000000,0.000000,0.250000,0,0);}
.m98_c00050{transform:matrix(0.299339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299339,0.000000,0.000000,0.250000,0,0);}
.m52_c00050{transform:matrix(0.299828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299828,0.000000,0.000000,0.250000,0,0);}
.m34_c00050{transform:matrix(0.300163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300163,0.000000,0.000000,0.250000,0,0);}
.m70_c00050{transform:matrix(0.301307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301307,0.000000,0.000000,0.250000,0,0);}
.m40_c00050{transform:matrix(0.301666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301666,0.000000,0.000000,0.250000,0,0);}
.m74_c00050{transform:matrix(0.301901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301901,0.000000,0.000000,0.250000,0,0);}
.m3_c00050{transform:matrix(0.301944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301944,0.000000,0.000000,0.250000,0,0);}
.m2f_c00050{transform:matrix(0.302130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302130,0.000000,0.000000,0.250000,0,0);}
.mb_c00050{transform:matrix(0.302410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302410,0.000000,0.000000,0.250000,0,0);}
.m1d_c00050{transform:matrix(0.303393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303393,0.000000,0.000000,0.250000,0,0);}
.m1b_c00050{transform:matrix(0.304731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304731,0.000000,0.000000,0.250000,0,0);}
.m42_c00050{transform:matrix(0.306147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306147,0.000000,0.000000,0.250000,0,0);}
.m65_c00050{transform:matrix(0.306320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306320,0.000000,0.000000,0.250000,0,0);}
.m8e_c00050{transform:matrix(0.306457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306457,0.000000,0.000000,0.250000,0,0);}
.m51_c00050{transform:matrix(0.308095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308095,0.000000,0.000000,0.250000,0,0);}
.m3b_c00050{transform:matrix(0.308155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308155,0.000000,0.000000,0.250000,0,0);}
.ma8_c00050{transform:matrix(0.308336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308336,0.000000,0.000000,0.250000,0,0);}
.m6_c00050{transform:matrix(0.308629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308629,0.000000,0.000000,0.250000,0,0);}
.ma7_c00050{transform:matrix(0.308852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308852,0.000000,0.000000,0.250000,0,0);}
.m20_c00050{transform:matrix(0.309571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309571,0.000000,0.000000,0.250000,0,0);}
.m82_c00050{transform:matrix(0.309666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309666,0.000000,0.000000,0.250000,0,0);}
.m7d_c00050{transform:matrix(0.310742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310742,0.000000,0.000000,0.250000,0,0);}
.m2d_c00050{transform:matrix(0.311499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311499,0.000000,0.000000,0.250000,0,0);}
.ma0_c00050{transform:matrix(0.311579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311579,0.000000,0.000000,0.250000,0,0);}
.m94_c00050{transform:matrix(0.311589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311589,0.000000,0.000000,0.250000,0,0);}
.m6e_c00050{transform:matrix(0.312231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312231,0.000000,0.000000,0.250000,0,0);}
.m7c_c00050{transform:matrix(0.312832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312832,0.000000,0.000000,0.250000,0,0);}
.m2e_c00050{transform:matrix(0.313910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313910,0.000000,0.000000,0.250000,0,0);}
.ma3_c00050{transform:matrix(0.314359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314359,0.000000,0.000000,0.250000,0,0);}
.m23_c00050{transform:matrix(0.314444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314444,0.000000,0.000000,0.250000,0,0);}
.m2c_c00050{transform:matrix(0.314862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314862,0.000000,0.000000,0.250000,0,0);}
.m97_c00050{transform:matrix(0.314980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314980,0.000000,0.000000,0.250000,0,0);}
.ma2_c00050{transform:matrix(0.315075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315075,0.000000,0.000000,0.250000,0,0);}
.m71_c00050{transform:matrix(0.315696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315696,0.000000,0.000000,0.250000,0,0);}
.m6b_c00050{transform:matrix(0.315820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315820,0.000000,0.000000,0.250000,0,0);}
.m9b_c00050{transform:matrix(0.315859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315859,0.000000,0.000000,0.250000,0,0);}
.m73_c00050{transform:matrix(0.317759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317759,0.000000,0.000000,0.250000,0,0);}
.m3d_c00050{transform:matrix(0.317761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317761,0.000000,0.000000,0.250000,0,0);}
.m25_c00050{transform:matrix(0.319620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319620,0.000000,0.000000,0.250000,0,0);}
.m59_c00050{transform:matrix(0.319879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319879,0.000000,0.000000,0.250000,0,0);}
.m3a_c00050{transform:matrix(0.320180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320180,0.000000,0.000000,0.250000,0,0);}
.m53_c00050{transform:matrix(0.321979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321979,0.000000,0.000000,0.250000,0,0);}
.m45_c00050{transform:matrix(0.322554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322554,0.000000,0.000000,0.250000,0,0);}
.m35_c00050{transform:matrix(0.323380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323380,0.000000,0.000000,0.250000,0,0);}
.m84_c00050{transform:matrix(0.323625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323625,0.000000,0.000000,0.250000,0,0);}
.m96_c00050{transform:matrix(0.324989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324989,0.000000,0.000000,0.250000,0,0);}
.mac_c00050{transform:matrix(0.325412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325412,0.000000,0.000000,0.250000,0,0);}
.m89_c00050{transform:matrix(0.325865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325865,0.000000,0.000000,0.250000,0,0);}
.m90_c00050{transform:matrix(0.326372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326372,0.000000,0.000000,0.250000,0,0);}
.mab_c00050{transform:matrix(0.327140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327140,0.000000,0.000000,0.250000,0,0);}
.m5a_c00050{transform:matrix(0.328889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328889,0.000000,0.000000,0.250000,0,0);}
.m12_c00050{transform:matrix(0.329069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329069,0.000000,0.000000,0.250000,0,0);}
.ma4_c00050{transform:matrix(0.330249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330249,0.000000,0.000000,0.250000,0,0);}
.m48_c00050{transform:matrix(0.331966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331966,0.000000,0.000000,0.250000,0,0);}
.m33_c00050{transform:matrix(0.335052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335052,0.000000,0.000000,0.250000,0,0);}
.m80_c00050{transform:matrix(0.335819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335819,0.000000,0.000000,0.250000,0,0);}
.m24_c00050{transform:matrix(0.338336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338336,0.000000,0.000000,0.250000,0,0);}
.m83_c00050{transform:matrix(0.340116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340116,0.000000,0.000000,0.250000,0,0);}
.m5_c00050{transform:matrix(0.341035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341035,0.000000,0.000000,0.250000,0,0);}
.m8_c00050{transform:matrix(0.344947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344947,0.000000,0.000000,0.250000,0,0);}
.m8a_c00050{transform:matrix(0.347733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347733,0.000000,0.000000,0.250000,0,0);}
.m19_c00050{transform:matrix(0.348956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348956,0.000000,0.000000,0.250000,0,0);}
.m14_c00050{transform:matrix(0.350894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350894,0.000000,0.000000,0.250000,0,0);}
.m39_c00050{transform:matrix(0.356842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356842,0.000000,0.000000,0.250000,0,0);}
.m38_c00050{transform:matrix(0.364884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364884,0.000000,0.000000,0.250000,0,0);}
.m66_c00050{transform:matrix(0.365416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365416,0.000000,0.000000,0.250000,0,0);}
.m7f_c00050{transform:matrix(0.379465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379465,0.000000,0.000000,0.250000,0,0);}
.m69_c00050{transform:matrix(0.432724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432724,0.000000,0.000000,0.250000,0,0);}
.v0_c00050{vertical-align:0.000000px;}
.ls7_c00050{letter-spacing:-2.778930px;}
.lsf_c00050{letter-spacing:-2.477218px;}
.ls10_c00050{letter-spacing:-1.496880px;}
.ls3_c00050{letter-spacing:-1.214789px;}
.lsd_c00050{letter-spacing:-0.341411px;}
.ls2_c00050{letter-spacing:0.000000px;}
.ls8_c00050{letter-spacing:0.452569px;}
.ls4_c00050{letter-spacing:2.119927px;}
.lsb_c00050{letter-spacing:2.874208px;}
.lsa_c00050{letter-spacing:3.011402px;}
.ls6_c00050{letter-spacing:3.549091px;}
.lsc_c00050{letter-spacing:3.628489px;}
.lse_c00050{letter-spacing:3.910500px;}
.ls9_c00050{letter-spacing:3.930201px;}
.ls1_c00050{letter-spacing:3.969900px;}
.ls0_c00050{letter-spacing:4.375810px;}
.ls5_c00050{letter-spacing:52.747398px;}
.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:-17.372282px;}
.ws1_c00050{word-spacing:0.000000px;}
._2_c00050{width:6.622189px;}
._0_c00050{width:30.488832px;}
._3_c00050{width:35.732585px;}
._1_c00050{width:491.762552px;}
.fc0_c00050{color:transparent;}
.fs9_c00050{font-size:11.682198px;}
.fsb_c00050{font-size:16.038000px;}
.fsd_c00050{font-size:22.176000px;}
.fse_c00050{font-size:22.572000px;}
.fs11_c00050{font-size:27.720000px;}
.fsc_c00050{font-size:27.918000px;}
.fsf_c00050{font-size:32.670000px;}
.fs8_c00050{font-size:33.264000px;}
.fs4_c00050{font-size:34.056198px;}
.fs10_c00050{font-size:42.768000px;}
.fs3_c00050{font-size:52.747398px;}
.fs7_c00050{font-size:61.776198px;}
.fs2_c00050{font-size:66.330000px;}
.fs6_c00050{font-size:74.844000px;}
.fs5_c00050{font-size:77.814000px;}
.fsa_c00050{font-size:78.210000px;}
.fs1_c00050{font-size:79.398000px;}
.fs0_c00050{font-size:87.516198px;}
.y0_c00050{bottom:0.000000px;}
.y23_c00050{bottom:19.513935px;}
.y1_c00050{bottom:76.500000px;}
.y22_c00050{bottom:80.101935px;}
.y27_c00050{bottom:94.004505px;}
.y25_c00050{bottom:130.705785px;}
.y24_c00050{bottom:137.125935px;}
.y21_c00050{bottom:147.812985px;}
.y20_c00050{bottom:173.122335px;}
.y1f_c00050{bottom:178.111935px;}
.y1e_c00050{bottom:179.181135px;}
.y1d_c00050{bottom:215.177535px;}
.y1c_c00050{bottom:247.248585px;}
.y1b_c00050{bottom:312.118335px;}
.y1a_c00050{bottom:343.837935px;}
.y18_c00050{bottom:375.552585px;}
.y19_c00050{bottom:375.913935px;}
.y17_c00050{bottom:394.085385px;}
.y16_c00050{bottom:400.149135px;}
.y15_c00050{bottom:407.989935px;}
.y14_c00050{bottom:425.809935px;}
.y13_c00050{bottom:440.773785px;}
.y12_c00050{bottom:440.777052px;}
.y11_c00050{bottom:473.211135px;}
.y10_c00050{bottom:505.643535px;}
.yf_c00050{bottom:538.783785px;}
.ye_c00050{bottom:571.572585px;}
.yd_c00050{bottom:604.361385px;}
.yc_c00050{bottom:637.511535px;}
.yb_c00050{bottom:701.663535px;}
.ya_c00050{bottom:720.909135px;}
.y9_c00050{bottom:734.452335px;}
.y8_c00050{bottom:766.523385px;}
.y7_c00050{bottom:798.599385px;}
.y6_c00050{bottom:831.388185px;}
.y26_c00050{bottom:846.713385px;}
.y5_c00050{bottom:863.820585px;}
.y4_c00050{bottom:896.609385px;}
.y3_c00050{bottom:929.046735px;}
.y2_c00050{bottom:1078.373385px;}
.hb_c00050{height:11.465438px;}
.he_c00050{height:23.128875px;}
.hf_c00050{height:23.541891px;}
.h12_c00050{height:28.911094px;}
.hd_c00050{height:29.117602px;}
.h10_c00050{height:32.063818px;}
.ha_c00050{height:34.693313px;}
.h5_c00050{height:35.129767px;}
.h6_c00050{height:35.519550px;}
.h11_c00050{height:41.974453px;}
.h9_c00050{height:60.629960px;}
.h4_c00050{height:69.180117px;}
.h8_c00050{height:73.455293px;}
.h7_c00050{height:76.370186px;}
.hc_c00050{height:76.758838px;}
.h3_c00050{height:77.924795px;}
.h2_c00050{height:85.892362px;}
.h1_c00050{height:1110.000000px;}
.h0_c00050{height:1263.000000px;}
.w1_c00050{width:733.500000px;}
.w0_c00050{width:892.500000px;}
.x0_c00050{left:0.000000px;}
.x3e_c00050{left:65.587035px;}
.xc_c00050{left:66.591885px;}
.x3_c00050{left:68.205585px;}
.x62_c00050{left:69.299535px;}
.x1_c00050{left:79.500000px;}
.x16_c00050{left:98.756985px;}
.x4_c00050{left:100.286535px;}
.x21_c00050{left:110.107335px;}
.x3f_c00050{left:111.310185px;}
.x29_c00050{left:121.259685px;}
.x43_c00050{left:122.873385px;}
.x39_c00050{left:132.748635px;}
.x60_c00050{left:134.129685px;}
.x68_c00050{left:135.198885px;}
.x1b_c00050{left:143.401035px;}
.x4f_c00050{left:144.514785px;}
.x44_c00050{left:154.592985px;}
.x56_c00050{left:155.825535px;}
.x2a_c00050{left:165.542385px;}
.x5c_c00050{left:166.938285px;}
.xd_c00050{left:176.298735px;}
.x63_c00050{left:177.961935px;}
.x22_c00050{left:187.985685px;}
.x17_c00050{left:199.717185px;}
.x23_c00050{left:209.933985px;}
.x36_c00050{left:211.117035px;}
.x32_c00050{left:220.942785px;}
.x6e_c00050{left:226.957035px;}
.x5_c00050{left:231.694185px;}
.x50_c00050{left:233.238585px;}
.x37_c00050{left:244.574085px;}
.x48_c00050{left:255.315585px;}
.x69_c00050{left:256.686735px;}
.xe_c00050{left:265.680885px;}
.x5d_c00050{left:267.438135px;}
.x1c_c00050{left:276.372885px;}
.x45_c00050{left:287.762835px;}
.x3c_c00050{left:288.797385px;}
.x31_c00050{left:297.756885px;}
.x49_c00050{left:299.494335px;}
.x33_c00050{left:308.968635px;}
.x6_c00050{left:310.201185px;}
.x24_c00050{left:320.442735px;}
.x2d_c00050{left:331.936635px;}
.x18_c00050{left:342.579135px;}
.x7_c00050{left:343.643385px;}
.x34_c00050{left:353.870085px;}
.x6a_c00050{left:355.478835px;}
.x42_c00050{left:366.170835px;}
.x8_c00050{left:375.773835px;}
.x19_c00050{left:376.852935px;}
.x5e_c00050{left:378.323085px;}
.x1d_c00050{left:388.213185px;}
.x25_c00050{left:398.474535px;}
.xf_c00050{left:408.968535px;}
.x64_c00050{left:410.255535px;}
.x10_c00050{left:418.779435px;}
.x2e_c00050{left:420.358485px;}
.x6b_c00050{left:421.784085px;}
.x57_c00050{left:431.758335px;}
.x26_c00050{left:443.078985px;}
.x11_c00050{left:454.493685px;}
.x6f_c00050{left:456.067785px;}
.x51_c00050{left:464.987685px;}
.x5f_c00050{left:466.269735px;}
.x27_c00050{left:475.932135px;}
.x6c_c00050{left:481.634535px;}
.x12_c00050{left:485.743035px;}
.x1a_c00050{left:486.975585px;}
.x61_c00050{left:488.074485px;}
.x9_c00050{left:497.340885px;}
.x46_c00050{left:498.375435px;}
.x1e_c00050{left:509.230785px;}
.x4a_c00050{left:510.438585px;}
.x35_c00050{left:521.145435px;}
.x52_c00050{left:523.645185px;}
.xa_c00050{left:531.164235px;}
.x38_c00050{left:540.668235px;}
.x2b_c00050{left:541.871085px;}
.x59_c00050{left:543.286785px;}
.x13_c00050{left:552.587835px;}
.x2f_c00050{left:553.661985px;}
.xb_c00050{left:563.086785px;}
.x3a_c00050{left:564.205485px;}
.x4b_c00050{left:575.709285px;}
.x67_c00050{left:583.040235px;}
.x14_c00050{left:586.044885px;}
.x53_c00050{left:587.420985px;}
.x3b_c00050{left:597.439785px;}
.x65_c00050{left:598.761435px;}
.x30_c00050{left:608.052585px;}
.x5a_c00050{left:609.770235px;}
.x3d_c00050{left:611.695785px;}
.x15_c00050{left:618.625785px;}
.x1f_c00050{left:620.269185px;}
.x40_c00050{left:622.724385px;}
.x58_c00050{left:631.337385px;}
.x2_c00050{left:640.910685px;}
.x28_c00050{left:641.994735px;}
.x6d_c00050{left:643.400535px;}
.x20_c00050{left:653.072835px;}
.x47_c00050{left:654.146985px;}
.x2c_c00050{left:663.641085px;}
.x66_c00050{left:668.373285px;}
.x4c_c00050{left:675.511185px;}
.x4e_c00050{left:677.278335px;}
.x54_c00050{left:680.253285px;}
.x55_c00050{left:681.599685px;}
.x70_c00050{left:684.015285px;}
.x41_c00050{left:686.915985px;}
.x5b_c00050{left:696.895185px;}
.x4d_c00050{left:721.759035px;}
.x72_c00050{left:730.171065px;}
.x71_c00050{left:731.238285px;}
@media print{
.v0_c00050{vertical-align:0.000000pt;}
.ls7_c00050{letter-spacing:-2.470160pt;}
.lsf_c00050{letter-spacing:-2.201971pt;}
.ls10_c00050{letter-spacing:-1.330560pt;}
.ls3_c00050{letter-spacing:-1.079813pt;}
.lsd_c00050{letter-spacing:-0.303477pt;}
.ls2_c00050{letter-spacing:0.000000pt;}
.ls8_c00050{letter-spacing:0.402283pt;}
.ls4_c00050{letter-spacing:1.884379pt;}
.lsb_c00050{letter-spacing:2.554851pt;}
.lsa_c00050{letter-spacing:2.676802pt;}
.ls6_c00050{letter-spacing:3.154747pt;}
.lsc_c00050{letter-spacing:3.225323pt;}
.lse_c00050{letter-spacing:3.476000pt;}
.ls9_c00050{letter-spacing:3.493512pt;}
.ls1_c00050{letter-spacing:3.528800pt;}
.ls0_c00050{letter-spacing:3.889609pt;}
.ls5_c00050{letter-spacing:46.886576pt;}
.ws0_c00050{word-spacing:-15.442029pt;}
.ws1_c00050{word-spacing:0.000000pt;}
._2_c00050{width:5.886390pt;}
._0_c00050{width:27.101184pt;}
._3_c00050{width:31.762298pt;}
._1_c00050{width:437.122268pt;}
.fs9_c00050{font-size:10.384176pt;}
.fsb_c00050{font-size:14.256000pt;}
.fsd_c00050{font-size:19.712000pt;}
.fse_c00050{font-size:20.064000pt;}
.fs11_c00050{font-size:24.640000pt;}
.fsc_c00050{font-size:24.816000pt;}
.fsf_c00050{font-size:29.040000pt;}
.fs8_c00050{font-size:29.568000pt;}
.fs4_c00050{font-size:30.272176pt;}
.fs10_c00050{font-size:38.016000pt;}
.fs3_c00050{font-size:46.886576pt;}
.fs7_c00050{font-size:54.912176pt;}
.fs2_c00050{font-size:58.960000pt;}
.fs6_c00050{font-size:66.528000pt;}
.fs5_c00050{font-size:69.168000pt;}
.fsa_c00050{font-size:69.520000pt;}
.fs1_c00050{font-size:70.576000pt;}
.fs0_c00050{font-size:77.792176pt;}
.y0_c00050{bottom:0.000000pt;}
.y23_c00050{bottom:17.345720pt;}
.y1_c00050{bottom:68.000000pt;}
.y22_c00050{bottom:71.201720pt;}
.y27_c00050{bottom:83.559560pt;}
.y25_c00050{bottom:116.182920pt;}
.y24_c00050{bottom:121.889720pt;}
.y21_c00050{bottom:131.389320pt;}
.y20_c00050{bottom:153.886520pt;}
.y1f_c00050{bottom:158.321720pt;}
.y1e_c00050{bottom:159.272120pt;}
.y1d_c00050{bottom:191.268920pt;}
.y1c_c00050{bottom:219.776520pt;}
.y1b_c00050{bottom:277.438520pt;}
.y1a_c00050{bottom:305.633720pt;}
.y18_c00050{bottom:333.824520pt;}
.y19_c00050{bottom:334.145720pt;}
.y17_c00050{bottom:350.298120pt;}
.y16_c00050{bottom:355.688120pt;}
.y15_c00050{bottom:362.657720pt;}
.y14_c00050{bottom:378.497720pt;}
.y13_c00050{bottom:391.798920pt;}
.y12_c00050{bottom:391.801824pt;}
.y11_c00050{bottom:420.632120pt;}
.y10_c00050{bottom:449.460920pt;}
.yf_c00050{bottom:478.918920pt;}
.ye_c00050{bottom:508.064520pt;}
.yd_c00050{bottom:537.210120pt;}
.yc_c00050{bottom:566.676920pt;}
.yb_c00050{bottom:623.700920pt;}
.ya_c00050{bottom:640.808120pt;}
.y9_c00050{bottom:652.846520pt;}
.y8_c00050{bottom:681.354120pt;}
.y7_c00050{bottom:709.866120pt;}
.y6_c00050{bottom:739.011720pt;}
.y26_c00050{bottom:752.634120pt;}
.y5_c00050{bottom:767.840520pt;}
.y4_c00050{bottom:796.986120pt;}
.y3_c00050{bottom:825.819320pt;}
.y2_c00050{bottom:958.554120pt;}
.hb_c00050{height:10.191501pt;}
.he_c00050{height:20.559000pt;}
.hf_c00050{height:20.926125pt;}
.h12_c00050{height:25.698750pt;}
.hd_c00050{height:25.882313pt;}
.h10_c00050{height:28.501172pt;}
.ha_c00050{height:30.838500pt;}
.h5_c00050{height:31.226460pt;}
.h6_c00050{height:31.572934pt;}
.h11_c00050{height:37.310625pt;}
.h9_c00050{height:53.893298pt;}
.h4_c00050{height:61.493438pt;}
.h8_c00050{height:65.293594pt;}
.h7_c00050{height:67.884609pt;}
.hc_c00050{height:68.230078pt;}
.h3_c00050{height:69.266484pt;}
.h2_c00050{height:76.348766pt;}
.h1_c00050{height:986.666667pt;}
.h0_c00050{height:1122.666667pt;}
.w1_c00050{width:652.000000pt;}
.w0_c00050{width:793.333333pt;}
.x0_c00050{left:0.000000pt;}
.x3e_c00050{left:58.299587pt;}
.xc_c00050{left:59.192787pt;}
.x3_c00050{left:60.627187pt;}
.x62_c00050{left:61.599587pt;}
.x1_c00050{left:70.666667pt;}
.x16_c00050{left:87.783987pt;}
.x4_c00050{left:89.143587pt;}
.x21_c00050{left:97.873187pt;}
.x3f_c00050{left:98.942387pt;}
.x29_c00050{left:107.786387pt;}
.x43_c00050{left:109.220787pt;}
.x39_c00050{left:117.998787pt;}
.x60_c00050{left:119.226387pt;}
.x68_c00050{left:120.176787pt;}
.x1b_c00050{left:127.467587pt;}
.x4f_c00050{left:128.457587pt;}
.x44_c00050{left:137.415987pt;}
.x56_c00050{left:138.511587pt;}
.x2a_c00050{left:147.148787pt;}
.x5c_c00050{left:148.389587pt;}
.xd_c00050{left:156.709987pt;}
.x63_c00050{left:158.188387pt;}
.x22_c00050{left:167.098387pt;}
.x17_c00050{left:177.526387pt;}
.x23_c00050{left:186.607987pt;}
.x36_c00050{left:187.659587pt;}
.x32_c00050{left:196.393587pt;}
.x6e_c00050{left:201.739587pt;}
.x5_c00050{left:205.950387pt;}
.x50_c00050{left:207.323187pt;}
.x37_c00050{left:217.399187pt;}
.x48_c00050{left:226.947187pt;}
.x69_c00050{left:228.165987pt;}
.xe_c00050{left:236.160787pt;}
.x5d_c00050{left:237.722787pt;}
.x1c_c00050{left:245.664787pt;}
.x45_c00050{left:255.789187pt;}
.x3c_c00050{left:256.708787pt;}
.x31_c00050{left:264.672787pt;}
.x49_c00050{left:266.217187pt;}
.x33_c00050{left:274.638787pt;}
.x6_c00050{left:275.734387pt;}
.x24_c00050{left:284.837987pt;}
.x2d_c00050{left:295.054787pt;}
.x18_c00050{left:304.514787pt;}
.x7_c00050{left:305.460787pt;}
.x34_c00050{left:314.551187pt;}
.x6a_c00050{left:315.981187pt;}
.x42_c00050{left:325.485187pt;}
.x8_c00050{left:334.021187pt;}
.x19_c00050{left:334.980387pt;}
.x5e_c00050{left:336.287187pt;}
.x1d_c00050{left:345.078387pt;}
.x25_c00050{left:354.199587pt;}
.xf_c00050{left:363.527587pt;}
.x64_c00050{left:364.671587pt;}
.x10_c00050{left:372.248387pt;}
.x2e_c00050{left:373.651987pt;}
.x6b_c00050{left:374.919187pt;}
.x57_c00050{left:383.785187pt;}
.x26_c00050{left:393.847987pt;}
.x11_c00050{left:403.994387pt;}
.x6f_c00050{left:405.393587pt;}
.x51_c00050{left:413.322387pt;}
.x5f_c00050{left:414.461987pt;}
.x27_c00050{left:423.050787pt;}
.x6c_c00050{left:428.119587pt;}
.x12_c00050{left:431.771587pt;}
.x1a_c00050{left:432.867187pt;}
.x61_c00050{left:433.843987pt;}
.x9_c00050{left:442.080787pt;}
.x46_c00050{left:443.000387pt;}
.x1e_c00050{left:452.649587pt;}
.x4a_c00050{left:453.723187pt;}
.x35_c00050{left:463.240387pt;}
.x52_c00050{left:465.462387pt;}
.xa_c00050{left:472.145987pt;}
.x38_c00050{left:480.593987pt;}
.x2b_c00050{left:481.663187pt;}
.x59_c00050{left:482.921587pt;}
.x13_c00050{left:491.189187pt;}
.x2f_c00050{left:492.143987pt;}
.xb_c00050{left:500.521587pt;}
.x3a_c00050{left:501.515987pt;}
.x4b_c00050{left:511.741587pt;}
.x67_c00050{left:518.257987pt;}
.x14_c00050{left:520.928787pt;}
.x53_c00050{left:522.151987pt;}
.x3b_c00050{left:531.057587pt;}
.x65_c00050{left:532.232387pt;}
.x30_c00050{left:540.491187pt;}
.x5a_c00050{left:542.017987pt;}
.x3d_c00050{left:543.729587pt;}
.x15_c00050{left:549.889587pt;}
.x1f_c00050{left:551.350387pt;}
.x40_c00050{left:553.532787pt;}
.x58_c00050{left:561.188787pt;}
.x2_c00050{left:569.698387pt;}
.x28_c00050{left:570.661987pt;}
.x6d_c00050{left:571.911587pt;}
.x20_c00050{left:580.509187pt;}
.x47_c00050{left:581.463987pt;}
.x2c_c00050{left:589.903187pt;}
.x66_c00050{left:594.109587pt;}
.x4c_c00050{left:600.454387pt;}
.x4e_c00050{left:602.025187pt;}
.x54_c00050{left:604.669587pt;}
.x55_c00050{left:605.866387pt;}
.x70_c00050{left:608.013587pt;}
.x41_c00050{left:610.591987pt;}
.x5b_c00050{left:619.462387pt;}
.x4d_c00050{left:641.563587pt;}
.x72_c00050{left:649.040947pt;}
.x71_c00050{left:649.989587pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3508621833f7cfb9a448edc7.woff2')format("woff");}.ff1_c00051{font-family:ff1_c00051;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00051;src:url('chunks/assets/font_8c460e9390714b5e70fd681a.woff2')format("woff");}.ff2_c00051{font-family:ff2_c00051;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00051;src:url('chunks/assets/font_f3b73a4ac8a559c6ca7ff8c0.woff2')format("woff");}.ff3_c00051{font-family:ff3_c00051;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00051;src:url('chunks/assets/font_ff2aabba9bd2cb73f09dc6a9.woff2')format("woff");}.ff4_c00051{font-family:ff4_c00051;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m90_c00051{transform:matrix(0.193694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193694,0.000000,0.000000,0.250000,0,0);}
.m37_c00051{transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);}
.m38_c00051{transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);}
.m30_c00051{transform:matrix(0.212958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212958,0.000000,0.000000,0.250000,0,0);}
.m28_c00051{transform:matrix(0.222600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222600,0.000000,0.000000,0.250000,0,0);}
.m3a_c00051{transform:matrix(0.236169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236169,0.000000,0.000000,0.250000,0,0);}
.m6d_c00051{transform:matrix(0.244940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244940,0.000000,0.000000,0.250000,0,0);}
.m0_c00051{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00051{transform:matrix(0.250538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250538,0.000000,0.000000,0.250000,0,0);}
.m5c_c00051{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.m6_c00051{transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);}
.m76_c00051{transform:matrix(0.253780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253780,0.000000,0.000000,0.250000,0,0);}
.m46_c00051{transform:matrix(0.254111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254111,0.000000,0.000000,0.250000,0,0);}
.m27_c00051{transform:matrix(0.256952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256952,0.000000,0.000000,0.250000,0,0);}
.m16_c00051{transform:matrix(0.258620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258620,0.000000,0.000000,0.250000,0,0);}
.m4d_c00051{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m7b_c00051{transform:matrix(0.259057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259057,0.000000,0.000000,0.250000,0,0);}
.m2a_c00051{transform:matrix(0.259881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259881,0.000000,0.000000,0.250000,0,0);}
.m93_c00051{transform:matrix(0.259889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259889,0.000000,0.000000,0.250000,0,0);}
.m5b_c00051{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m18_c00051{transform:matrix(0.261080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261080,0.000000,0.000000,0.250000,0,0);}
.m3e_c00051{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.m72_c00051{transform:matrix(0.261987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261987,0.000000,0.000000,0.250000,0,0);}
.m48_c00051{transform:matrix(0.262289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262289,0.000000,0.000000,0.250000,0,0);}
.m21_c00051{transform:matrix(0.262442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262442,0.000000,0.000000,0.250000,0,0);}
.m91_c00051{transform:matrix(0.263278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263278,0.000000,0.000000,0.250000,0,0);}
.m5_c00051{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m82_c00051{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.ma_c00051{transform:matrix(0.265205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265205,0.000000,0.000000,0.250000,0,0);}
.m71_c00051{transform:matrix(0.265694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265694,0.000000,0.000000,0.250000,0,0);}
.m87_c00051{transform:matrix(0.265785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265785,0.000000,0.000000,0.250000,0,0);}
.m64_c00051{transform:matrix(0.266174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266174,0.000000,0.000000,0.250000,0,0);}
.m50_c00051{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.md_c00051{transform:matrix(0.266552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266552,0.000000,0.000000,0.250000,0,0);}
.m69_c00051{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.m11_c00051{transform:matrix(0.267199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267199,0.000000,0.000000,0.250000,0,0);}
.m2c_c00051{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m43_c00051{transform:matrix(0.267985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267985,0.000000,0.000000,0.250000,0,0);}
.m8_c00051{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.m1e_c00051{transform:matrix(0.269912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269912,0.000000,0.000000,0.250000,0,0);}
.m63_c00051{transform:matrix(0.270538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270538,0.000000,0.000000,0.250000,0,0);}
.m15_c00051{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.mad_c00051{transform:matrix(0.271265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271265,0.000000,0.000000,0.250000,0,0);}
.m13_c00051{transform:matrix(0.272153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272153,0.000000,0.000000,0.250000,0,0);}
.m39_c00051{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m92_c00051{transform:matrix(0.273113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273113,0.000000,0.000000,0.250000,0,0);}
.m1b_c00051{transform:matrix(0.273229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273229,0.000000,0.000000,0.250000,0,0);}
.ma2_c00051{transform:matrix(0.274020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274020,0.000000,0.000000,0.250000,0,0);}
.m8e_c00051{transform:matrix(0.274588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274588,0.000000,0.000000,0.250000,0,0);}
.m73_c00051{transform:matrix(0.275572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275572,0.000000,0.000000,0.250000,0,0);}
.mb0_c00051{transform:matrix(0.276265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276265,0.000000,0.000000,0.250000,0,0);}
.m7e_c00051{transform:matrix(0.276341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276341,0.000000,0.000000,0.250000,0,0);}
.maf_c00051{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m2e_c00051{transform:matrix(0.277221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277221,0.000000,0.000000,0.250000,0,0);}
.m70_c00051{transform:matrix(0.277915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277915,0.000000,0.000000,0.250000,0,0);}
.mb1_c00051{transform:matrix(0.278497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278497,0.000000,0.000000,0.250000,0,0);}
.m4e_c00051{transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);}
.m4b_c00051{transform:matrix(0.278948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278948,0.000000,0.000000,0.250000,0,0);}
.m34_c00051{transform:matrix(0.280224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280224,0.000000,0.000000,0.250000,0,0);}
.m9c_c00051{transform:matrix(0.280240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280240,0.000000,0.000000,0.250000,0,0);}
.m2_c00051{transform:matrix(0.280673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280673,0.000000,0.000000,0.250000,0,0);}
.m97_c00051{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.m6e_c00051{transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);}
.m6c_c00051{transform:matrix(0.283664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283664,0.000000,0.000000,0.250000,0,0);}
.m32_c00051{transform:matrix(0.283729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283729,0.000000,0.000000,0.250000,0,0);}
.m9b_c00051{transform:matrix(0.285175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285175,0.000000,0.000000,0.250000,0,0);}
.m41_c00051{transform:matrix(0.285284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285284,0.000000,0.000000,0.250000,0,0);}
.mab_c00051{transform:matrix(0.285587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285587,0.000000,0.000000,0.250000,0,0);}
.m4f_c00051{transform:matrix(0.286011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286011,0.000000,0.000000,0.250000,0,0);}
.m98_c00051{transform:matrix(0.286308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286308,0.000000,0.000000,0.250000,0,0);}
.m6b_c00051{transform:matrix(0.286348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286348,0.000000,0.000000,0.250000,0,0);}
.m58_c00051{transform:matrix(0.287000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287000,0.000000,0.000000,0.250000,0,0);}
.m33_c00051{transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);}
.m5f_c00051{transform:matrix(0.287592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287592,0.000000,0.000000,0.250000,0,0);}
.m7a_c00051{transform:matrix(0.287855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287855,0.000000,0.000000,0.250000,0,0);}
.m9e_c00051{transform:matrix(0.288065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288065,0.000000,0.000000,0.250000,0,0);}
.m88_c00051{transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);}
.m45_c00051{transform:matrix(0.288902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288902,0.000000,0.000000,0.250000,0,0);}
.m59_c00051{transform:matrix(0.288936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288936,0.000000,0.000000,0.250000,0,0);}
.m8c_c00051{transform:matrix(0.289052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289052,0.000000,0.000000,0.250000,0,0);}
.m7c_c00051{transform:matrix(0.290400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290400,0.000000,0.000000,0.250000,0,0);}
.m80_c00051{transform:matrix(0.292277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292277,0.000000,0.000000,0.250000,0,0);}
.m12_c00051{transform:matrix(0.293309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293309,0.000000,0.000000,0.250000,0,0);}
.maa_c00051{transform:matrix(0.293522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293522,0.000000,0.000000,0.250000,0,0);}
.m3_c00051{transform:matrix(0.293654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293654,0.000000,0.000000,0.250000,0,0);}
.ma9_c00051{transform:matrix(0.293802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293802,0.000000,0.000000,0.250000,0,0);}
.m74_c00051{transform:matrix(0.294142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294142,0.000000,0.000000,0.250000,0,0);}
.ma4_c00051{transform:matrix(0.294549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294549,0.000000,0.000000,0.250000,0,0);}
.m36_c00051{transform:matrix(0.295138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295138,0.000000,0.000000,0.250000,0,0);}
.m1f_c00051{transform:matrix(0.295270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295270,0.000000,0.000000,0.250000,0,0);}
.m4c_c00051{transform:matrix(0.295588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295588,0.000000,0.000000,0.250000,0,0);}
.mae_c00051{transform:matrix(0.295937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295937,0.000000,0.000000,0.250000,0,0);}
.m78_c00051{transform:matrix(0.295952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295952,0.000000,0.000000,0.250000,0,0);}
.m9f_c00051{transform:matrix(0.296036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296036,0.000000,0.000000,0.250000,0,0);}
.m51_c00051{transform:matrix(0.296239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296239,0.000000,0.000000,0.250000,0,0);}
.m4a_c00051{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m8b_c00051{transform:matrix(0.297306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297306,0.000000,0.000000,0.250000,0,0);}
.mf_c00051{transform:matrix(0.297367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297367,0.000000,0.000000,0.250000,0,0);}
.m17_c00051{transform:matrix(0.297780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297780,0.000000,0.000000,0.250000,0,0);}
.m86_c00051{transform:matrix(0.298234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298234,0.000000,0.000000,0.250000,0,0);}
.m3c_c00051{transform:matrix(0.299102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299102,0.000000,0.000000,0.250000,0,0);}
.m1_c00051{transform:matrix(0.299220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299220,0.000000,0.000000,0.250000,0,0);}
.mb_c00051{transform:matrix(0.299337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299337,0.000000,0.000000,0.250000,0,0);}
.m67_c00051{transform:matrix(0.299860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299860,0.000000,0.000000,0.250000,0,0);}
.m31_c00051{transform:matrix(0.300711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300711,0.000000,0.000000,0.250000,0,0);}
.m7_c00051{transform:matrix(0.300972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300972,0.000000,0.000000,0.250000,0,0);}
.m6a_c00051{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m57_c00051{transform:matrix(0.302753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302753,0.000000,0.000000,0.250000,0,0);}
.m94_c00051{transform:matrix(0.303410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303410,0.000000,0.000000,0.250000,0,0);}
.m10_c00051{transform:matrix(0.303775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303775,0.000000,0.000000,0.250000,0,0);}
.m42_c00051{transform:matrix(0.304946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304946,0.000000,0.000000,0.250000,0,0);}
.m7d_c00051{transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);}
.m52_c00051{transform:matrix(0.305465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305465,0.000000,0.000000,0.250000,0,0);}
.m54_c00051{transform:matrix(0.305754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305754,0.000000,0.000000,0.250000,0,0);}
.m5d_c00051{transform:matrix(0.307076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307076,0.000000,0.000000,0.250000,0,0);}
.m4_c00051{transform:matrix(0.307223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307223,0.000000,0.000000,0.250000,0,0);}
.m26_c00051{transform:matrix(0.308174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308174,0.000000,0.000000,0.250000,0,0);}
.ma8_c00051{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m9d_c00051{transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);}
.m8f_c00051{transform:matrix(0.309307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309307,0.000000,0.000000,0.250000,0,0);}
.m24_c00051{transform:matrix(0.310270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310270,0.000000,0.000000,0.250000,0,0);}
.m19_c00051{transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);}
.mc_c00051{transform:matrix(0.311095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311095,0.000000,0.000000,0.250000,0,0);}
.m1d_c00051{transform:matrix(0.311985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311985,0.000000,0.000000,0.250000,0,0);}
.m25_c00051{transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);}
.m44_c00051{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.m8a_c00051{transform:matrix(0.312563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312563,0.000000,0.000000,0.250000,0,0);}
.m84_c00051{transform:matrix(0.313344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313344,0.000000,0.000000,0.250000,0,0);}
.m1c_c00051{transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);}
.m95_c00051{transform:matrix(0.313649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313649,0.000000,0.000000,0.250000,0,0);}
.m62_c00051{transform:matrix(0.313860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313860,0.000000,0.000000,0.250000,0,0);}
.ma6_c00051{transform:matrix(0.314182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314182,0.000000,0.000000,0.250000,0,0);}
.ma3_c00051{transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);}
.m22_c00051{transform:matrix(0.316435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316435,0.000000,0.000000,0.250000,0,0);}
.m99_c00051{transform:matrix(0.316861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316861,0.000000,0.000000,0.250000,0,0);}
.m79_c00051{transform:matrix(0.316926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316926,0.000000,0.000000,0.250000,0,0);}
.m66_c00051{transform:matrix(0.317437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317437,0.000000,0.000000,0.250000,0,0);}
.m83_c00051{transform:matrix(0.318659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318659,0.000000,0.000000,0.250000,0,0);}
.m14_c00051{transform:matrix(0.319328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319328,0.000000,0.000000,0.250000,0,0);}
.ma5_c00051{transform:matrix(0.319572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319572,0.000000,0.000000,0.250000,0,0);}
.m2d_c00051{transform:matrix(0.319591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319591,0.000000,0.000000,0.250000,0,0);}
.m56_c00051{transform:matrix(0.320460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320460,0.000000,0.000000,0.250000,0,0);}
.mac_c00051{transform:matrix(0.321123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321123,0.000000,0.000000,0.250000,0,0);}
.m49_c00051{transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);}
.mb2_c00051{transform:matrix(0.322188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322188,0.000000,0.000000,0.250000,0,0);}
.mb4_c00051{transform:matrix(0.323216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323216,0.000000,0.000000,0.250000,0,0);}
.m47_c00051{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.m40_c00051{transform:matrix(0.324287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324287,0.000000,0.000000,0.250000,0,0);}
.m9a_c00051{transform:matrix(0.324318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324318,0.000000,0.000000,0.250000,0,0);}
.ma7_c00051{transform:matrix(0.325525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325525,0.000000,0.000000,0.250000,0,0);}
.m29_c00051{transform:matrix(0.325667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325667,0.000000,0.000000,0.250000,0,0);}
.m20_c00051{transform:matrix(0.326099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326099,0.000000,0.000000,0.250000,0,0);}
.mb3_c00051{transform:matrix(0.326100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326100,0.000000,0.000000,0.250000,0,0);}
.m3d_c00051{transform:matrix(0.326848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326848,0.000000,0.000000,0.250000,0,0);}
.m85_c00051{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m3f_c00051{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.m5a_c00051{transform:matrix(0.328266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328266,0.000000,0.000000,0.250000,0,0);}
.m2f_c00051{transform:matrix(0.330592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330592,0.000000,0.000000,0.250000,0,0);}
.m5e_c00051{transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);}
.m81_c00051{transform:matrix(0.331265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331265,0.000000,0.000000,0.250000,0,0);}
.m89_c00051{transform:matrix(0.336157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336157,0.000000,0.000000,0.250000,0,0);}
.m6f_c00051{transform:matrix(0.337683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337683,0.000000,0.000000,0.250000,0,0);}
.m75_c00051{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.ma0_c00051{transform:matrix(0.339366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339366,0.000000,0.000000,0.250000,0,0);}
.m68_c00051{transform:matrix(0.340056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340056,0.000000,0.000000,0.250000,0,0);}
.m53_c00051{transform:matrix(0.341375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341375,0.000000,0.000000,0.250000,0,0);}
.me_c00051{transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);}
.m96_c00051{transform:matrix(0.341649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341649,0.000000,0.000000,0.250000,0,0);}
.m65_c00051{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.m8d_c00051{transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);}
.m3b_c00051{transform:matrix(0.345977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345977,0.000000,0.000000,0.250000,0,0);}
.m1a_c00051{transform:matrix(0.347316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347316,0.000000,0.000000,0.250000,0,0);}
.m23_c00051{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m2b_c00051{transform:matrix(0.350600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350600,0.000000,0.000000,0.250000,0,0);}
.m35_c00051{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m7f_c00051{transform:matrix(0.355596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355596,0.000000,0.000000,0.250000,0,0);}
.m60_c00051{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m9_c00051{transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);}
.m77_c00051{transform:matrix(0.378961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378961,0.000000,0.000000,0.250000,0,0);}
.m55_c00051{transform:matrix(0.416528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416528,0.000000,0.000000,0.250000,0,0);}
.m61_c00051{transform:matrix(0.421610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421610,0.000000,0.000000,0.250000,0,0);}
.v0_c00051{vertical-align:0.000000px;}
.ls9_c00051{letter-spacing:-2.744280px;}
.ls7_c00051{letter-spacing:-2.375762px;}
.ls6_c00051{letter-spacing:-1.897474px;}
.lsb_c00051{letter-spacing:-0.744876px;}
.ls4_c00051{letter-spacing:0.000000px;}
.ls2_c00051{letter-spacing:0.109771px;}
.lsd_c00051{letter-spacing:1.834747px;}
.ls1_c00051{letter-spacing:2.783484px;}
.ls0_c00051{letter-spacing:3.128479px;}
.ls3_c00051{letter-spacing:3.629578px;}
.lsf_c00051{letter-spacing:3.801610px;}
.ls5_c00051{letter-spacing:3.920400px;}
.ls8_c00051{letter-spacing:4.118400px;}
.lsc_c00051{letter-spacing:4.514400px;}
.lsa_c00051{letter-spacing:51.321798px;}
.lse_c00051{letter-spacing:52.747398px;}
.sc__c00051{text-shadow:none;}
.sc0_c00051{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00051{-webkit-text-stroke:0px transparent;}
.sc0_c00051{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00051{word-spacing:-19.602000px;}
.ws1_c00051{word-spacing:0.000000px;}
._4_c00051{margin-left:-11.683584px;}
._8_c00051{margin-left:-10.114632px;}
._e_c00051{width:4.312440px;}
._7_c00051{width:6.507864px;}
._1_c00051{width:7.762392px;}
._d_c00051{width:9.173340px;}
._2_c00051{width:10.506672px;}
._6_c00051{width:11.525976px;}
._9_c00051{width:23.679216px;}
._c_c00051{width:25.051356px;}
._0_c00051{width:30.971160px;}
._a_c00051{width:35.440416px;}
._b_c00051{width:36.851760px;}
._5_c00051{width:53.395848px;}
._3_c00051{width:287.258400px;}
.fc0_c00051{color:transparent;}
.fs1_c00051{font-size:22.374000px;}
.fsc_c00051{font-size:27.720000px;}
.fs9_c00051{font-size:32.868000px;}
.fs7_c00051{font-size:34.452000px;}
.fs5_c00051{font-size:51.321798px;}
.fsa_c00051{font-size:52.747398px;}
.fsb_c00051{font-size:64.548000px;}
.fs8_c00051{font-size:76.032198px;}
.fsd_c00051{font-size:76.824000px;}
.fs2_c00051{font-size:78.408000px;}
.fs6_c00051{font-size:78.804000px;}
.fs3_c00051{font-size:82.368000px;}
.fs0_c00051{font-size:90.288000px;}
.fs4_c00051{font-size:91.872198px;}
.y0_c00051{bottom:0.000000px;}
.y20_c00051{bottom:23.793705px;}
.y1_c00051{bottom:76.500000px;}
.y1f_c00051{bottom:102.906585px;}
.y21_c00051{bottom:109.326735px;}
.y1e_c00051{bottom:149.594985px;}
.y1d_c00051{bottom:180.250335px;}
.y1c_c00051{bottom:216.598185px;}
.y1b_c00051{bottom:303.921135px;}
.y1a_c00051{bottom:313.182585px;}
.y19_c00051{bottom:345.614985px;}
.y18_c00051{bottom:377.690985px;}
.y17_c00051{bottom:392.659785px;}
.y16_c00051{bottom:410.479785px;}
.y15_c00051{bottom:443.981385px;}
.y14_c00051{bottom:476.062335px;}
.y13_c00051{bottom:501.005385px;}
.y12_c00051{bottom:508.494735px;}
.y11_c00051{bottom:572.646735px;}
.y10_c00051{bottom:605.079135px;}
.yf_c00051{bottom:637.867935px;}
.ye_c00051{bottom:670.300335px;}
.yd_c00051{bottom:702.727785px;}
.yc_c00051{bottom:728.393535px;}
.yb_c00051{bottom:735.877935px;}
.ya_c00051{bottom:768.310335px;}
.y9_c00051{bottom:782.204985px;}
.y8_c00051{bottom:800.737785px;}
.y7_c00051{bottom:832.813785px;}
.y6_c00051{bottom:865.602585px;}
.y5_c00051{bottom:897.683535px;}
.y4_c00051{bottom:930.823785px;}
.y3_c00051{bottom:1030.615785px;}
.y2_c00051{bottom:1078.373385px;}
.h3_c00051{height:21.958857px;}
.hf_c00051{height:28.911094px;}
.h7_c00051{height:34.180317px;}
.hb_c00051{height:34.280297px;}
.h9_c00051{height:34.721156px;}
.hc_c00051{height:35.129767px;}
.hd_c00051{height:67.321547px;}
.he_c00051{height:76.626200px;}
.h4_c00051{height:76.953164px;}
.h8_c00051{height:77.341816px;}
.ha_c00051{height:79.299207px;}
.h10_c00051{height:80.125031px;}
.h5_c00051{height:80.839688px;}
.h2_c00051{height:88.612734px;}
.h6_c00051{height:95.819832px;}
.h1_c00051{height:1110.000000px;}
.h0_c00051{height:1263.000000px;}
.w1_c00051{width:733.500000px;}
.w0_c00051{width:892.500000px;}
.x0_c00051{left:0.000000px;}
.x27_c00051{left:55.696935px;}
.x4_c00051{left:56.756235px;}
.x5f_c00051{left:58.236285px;}
.x34_c00051{left:68.542185px;}
.x1_c00051{left:79.500000px;}
.x3f_c00051{left:90.223185px;}
.x2f_c00051{left:99.761835px;}
.x5_c00051{left:101.380485px;}
.x48_c00051{left:111.117135px;}
.x20_c00051{left:112.151685px;}
.x6_c00051{left:122.744685px;}
.x28_c00051{left:132.535785px;}
.x16_c00051{left:133.827735px;}
.x60_c00051{left:135.520635px;}
.x46_c00051{left:144.460335px;}
.x2e_c00051{left:155.899785px;}
.x54_c00051{left:156.904635px;}
.x3c_c00051{left:158.686635px;}
.x17_c00051{left:166.601685px;}
.x47_c00051{left:177.650085px;}
.x35_c00051{left:189.005385px;}
.x40_c00051{left:190.104285px;}
.x21_c00051{left:200.053785px;}
.x63_c00051{left:201.142785px;}
.x7_c00051{left:211.131885px;}
.x61_c00051{left:212.191185px;}
.x65_c00051{left:213.270285px;}
.x36_c00051{left:222.378285px;}
.x4b_c00051{left:231.258585px;}
.x10_c00051{left:233.971185px;}
.x4f_c00051{left:244.118685px;}
.x37_c00051{left:245.702685px;}
.x66_c00051{left:246.717435px;}
.x18_c00051{left:255.221535px;}
.x19_c00051{left:266.388735px;}
.x5d_c00051{left:267.457935px;}
.x8_c00051{left:278.164785px;}
.x11_c00051{left:289.198335px;}
.x67_c00051{left:290.594235px;}
.x1a_c00051{left:299.855685px;}
.x55_c00051{left:301.296135px;}
.x44_c00051{left:310.295235px;}
.x4c_c00051{left:311.300085px;}
.x29_c00051{left:322.709835px;}
.x9_c00051{left:332.990985px;}
.x56_c00051{left:334.094835px;}
.x2a_c00051{left:343.910685px;}
.x3d_c00051{left:345.445185px;}
.x41_c00051{left:354.775935px;}
.x5e_c00051{left:355.855035px;}
.x2b_c00051{left:365.240235px;}
.x38_c00051{left:366.542085px;}
.x50_c00051{left:367.942935px;}
.x57_c00051{left:377.917185px;}
.x58_c00051{left:383.094885px;}
.x22_c00051{left:388.020135px;}
.x4d_c00051{left:389.163585px;}
.x12_c00051{left:398.429985px;}
.x39_c00051{left:400.380285px;}
.xa_c00051{left:410.384235px;}
.x1b_c00051{left:411.423735px;}
.x59_c00051{left:422.140485px;}
.x30_c00051{left:433.510635px;}
.x1c_c00051{left:443.014635px;}
.xb_c00051{left:444.247185px;}
.x51_c00051{left:445.261935px;}
.x2c_c00051{left:455.112435px;}
.xc_c00051{left:465.071835px;}
.x31_c00051{left:466.294485px;}
.x23_c00051{left:468.418035px;}
.xd_c00051{left:476.902335px;}
.x42_c00051{left:478.431885px;}
.x1d_c00051{left:488.757585px;}
.x13_c00051{left:499.405035px;}
.x3a_c00051{left:500.494035px;}
.x3e_c00051{left:510.893985px;}
.x24_c00051{left:521.501835px;}
.x14_c00051{left:531.787935px;}
.x49_c00051{left:533.327385px;}
.x43_c00051{left:542.049285px;}
.x4a_c00051{left:543.311535px;}
.x5a_c00051{left:544.360935px;}
.x25_c00051{left:554.211435px;}
.x52_c00051{left:555.236085px;}
.x62_c00051{left:557.602185px;}
.x3b_c00051{left:564.363885px;}
.x32_c00051{left:565.621185px;}
.x68_c00051{left:577.545735px;}
.x45_c00051{left:586.247835px;}
.x2d_c00051{left:587.510085px;}
.x15_c00051{left:598.924785px;}
.xe_c00051{left:610.314735px;}
.x6a_c00051{left:618.259485px;}
.x1e_c00051{left:620.645385px;}
.x2_c00051{left:631.639335px;}
.x5c_c00051{left:633.342135px;}
.x26_c00051{left:643.430235px;}
.xf_c00051{left:654.107385px;}
.x33_c00051{left:665.007285px;}
.x64_c00051{left:666.244785px;}
.x69_c00051{left:673.145085px;}
.x1f_c00051{left:676.219035px;}
.x5b_c00051{left:679.149435px;}
.x6b_c00051{left:681.896685px;}
.x3_c00051{left:687.064485px;}
.x53_c00051{left:709.369185px;}
.x4e_c00051{left:728.491035px;}
@media print{
.v0_c00051{vertical-align:0.000000pt;}
.ls9_c00051{letter-spacing:-2.439360pt;}
.ls7_c00051{letter-spacing:-2.111789pt;}
.ls6_c00051{letter-spacing:-1.686643pt;}
.lsb_c00051{letter-spacing:-0.662112pt;}
.ls4_c00051{letter-spacing:0.000000pt;}
.ls2_c00051{letter-spacing:0.097574pt;}
.lsd_c00051{letter-spacing:1.630886pt;}
.ls1_c00051{letter-spacing:2.474208pt;}
.ls0_c00051{letter-spacing:2.780870pt;}
.ls3_c00051{letter-spacing:3.226291pt;}
.lsf_c00051{letter-spacing:3.379209pt;}
.ls5_c00051{letter-spacing:3.484800pt;}
.ls8_c00051{letter-spacing:3.660800pt;}
.lsc_c00051{letter-spacing:4.012800pt;}
.lsa_c00051{letter-spacing:45.619376pt;}
.lse_c00051{letter-spacing:46.886576pt;}
.ws0_c00051{word-spacing:-17.424000pt;}
.ws1_c00051{word-spacing:0.000000pt;}
._4_c00051{margin-left:-10.385408pt;}
._8_c00051{margin-left:-8.990784pt;}
._e_c00051{width:3.833280pt;}
._7_c00051{width:5.784768pt;}
._1_c00051{width:6.899904pt;}
._d_c00051{width:8.154080pt;}
._2_c00051{width:9.339264pt;}
._6_c00051{width:10.245312pt;}
._9_c00051{width:21.048192pt;}
._c_c00051{width:22.267872pt;}
._0_c00051{width:27.529920pt;}
._a_c00051{width:31.502592pt;}
._b_c00051{width:32.757120pt;}
._5_c00051{width:47.462976pt;}
._3_c00051{width:255.340800pt;}
.fs1_c00051{font-size:19.888000pt;}
.fsc_c00051{font-size:24.640000pt;}
.fs9_c00051{font-size:29.216000pt;}
.fs7_c00051{font-size:30.624000pt;}
.fs5_c00051{font-size:45.619376pt;}
.fsa_c00051{font-size:46.886576pt;}
.fsb_c00051{font-size:57.376000pt;}
.fs8_c00051{font-size:67.584176pt;}
.fsd_c00051{font-size:68.288000pt;}
.fs2_c00051{font-size:69.696000pt;}
.fs6_c00051{font-size:70.048000pt;}
.fs3_c00051{font-size:73.216000pt;}
.fs0_c00051{font-size:80.256000pt;}
.fs4_c00051{font-size:81.664176pt;}
.y0_c00051{bottom:0.000000pt;}
.y20_c00051{bottom:21.149960pt;}
.y1_c00051{bottom:68.000000pt;}
.y1f_c00051{bottom:91.472520pt;}
.y21_c00051{bottom:97.179320pt;}
.y1e_c00051{bottom:132.973320pt;}
.y1d_c00051{bottom:160.222520pt;}
.y1c_c00051{bottom:192.531720pt;}
.y1b_c00051{bottom:270.152120pt;}
.y1a_c00051{bottom:278.384520pt;}
.y19_c00051{bottom:307.213320pt;}
.y18_c00051{bottom:335.725320pt;}
.y17_c00051{bottom:349.030920pt;}
.y16_c00051{bottom:364.870920pt;}
.y15_c00051{bottom:394.650120pt;}
.y14_c00051{bottom:423.166520pt;}
.y13_c00051{bottom:445.338120pt;}
.y12_c00051{bottom:451.995320pt;}
.y11_c00051{bottom:509.019320pt;}
.y10_c00051{bottom:537.848120pt;}
.yf_c00051{bottom:566.993720pt;}
.ye_c00051{bottom:595.822520pt;}
.yd_c00051{bottom:624.646920pt;}
.yc_c00051{bottom:647.460920pt;}
.yb_c00051{bottom:654.113720pt;}
.ya_c00051{bottom:682.942520pt;}
.y9_c00051{bottom:695.293320pt;}
.y8_c00051{bottom:711.766920pt;}
.y7_c00051{bottom:740.278920pt;}
.y6_c00051{bottom:769.424520pt;}
.y5_c00051{bottom:797.940920pt;}
.y4_c00051{bottom:827.398920pt;}
.y3_c00051{bottom:916.102920pt;}
.y2_c00051{bottom:958.554120pt;}
.h3_c00051{height:19.518984pt;}
.hf_c00051{height:25.698750pt;}
.h7_c00051{height:30.382504pt;}
.hb_c00051{height:30.471375pt;}
.h9_c00051{height:30.863250pt;}
.hc_c00051{height:31.226460pt;}
.hd_c00051{height:59.841375pt;}
.he_c00051{height:68.112177pt;}
.h4_c00051{height:68.402813pt;}
.h8_c00051{height:68.748281pt;}
.ha_c00051{height:70.488184pt;}
.h10_c00051{height:71.222250pt;}
.h5_c00051{height:71.857500pt;}
.h2_c00051{height:78.766875pt;}
.h6_c00051{height:85.173184pt;}
.h1_c00051{height:986.666667pt;}
.h0_c00051{height:1122.666667pt;}
.w1_c00051{width:652.000000pt;}
.w0_c00051{width:793.333333pt;}
.x0_c00051{left:0.000000pt;}
.x27_c00051{left:49.508387pt;}
.x4_c00051{left:50.449987pt;}
.x5f_c00051{left:51.765587pt;}
.x34_c00051{left:60.926387pt;}
.x1_c00051{left:70.666667pt;}
.x3f_c00051{left:80.198387pt;}
.x2f_c00051{left:88.677187pt;}
.x5_c00051{left:90.115987pt;}
.x48_c00051{left:98.770787pt;}
.x20_c00051{left:99.690387pt;}
.x6_c00051{left:109.106387pt;}
.x28_c00051{left:117.809587pt;}
.x16_c00051{left:118.957987pt;}
.x60_c00051{left:120.462787pt;}
.x46_c00051{left:128.409187pt;}
.x2e_c00051{left:138.577587pt;}
.x54_c00051{left:139.470787pt;}
.x3c_c00051{left:141.054787pt;}
.x17_c00051{left:148.090387pt;}
.x47_c00051{left:157.911187pt;}
.x35_c00051{left:168.004787pt;}
.x40_c00051{left:168.981587pt;}
.x21_c00051{left:177.825587pt;}
.x63_c00051{left:178.793587pt;}
.x7_c00051{left:187.672787pt;}
.x61_c00051{left:188.614387pt;}
.x65_c00051{left:189.573587pt;}
.x36_c00051{left:197.669587pt;}
.x4b_c00051{left:205.563187pt;}
.x10_c00051{left:207.974387pt;}
.x4f_c00051{left:216.994387pt;}
.x37_c00051{left:218.402387pt;}
.x66_c00051{left:219.304387pt;}
.x18_c00051{left:226.863587pt;}
.x19_c00051{left:236.789987pt;}
.x5d_c00051{left:237.740387pt;}
.x8_c00051{left:247.257587pt;}
.x11_c00051{left:257.065187pt;}
.x67_c00051{left:258.305987pt;}
.x1a_c00051{left:266.538387pt;}
.x55_c00051{left:267.818787pt;}
.x44_c00051{left:275.817987pt;}
.x4c_c00051{left:276.711187pt;}
.x29_c00051{left:286.853187pt;}
.x9_c00051{left:295.991987pt;}
.x56_c00051{left:296.973187pt;}
.x2a_c00051{left:305.698387pt;}
.x3d_c00051{left:307.062387pt;}
.x41_c00051{left:315.356387pt;}
.x5e_c00051{left:316.315587pt;}
.x2b_c00051{left:324.657987pt;}
.x38_c00051{left:325.815187pt;}
.x50_c00051{left:327.060387pt;}
.x57_c00051{left:335.926387pt;}
.x58_c00051{left:340.528787pt;}
.x22_c00051{left:344.906787pt;}
.x4d_c00051{left:345.923187pt;}
.x12_c00051{left:354.159987pt;}
.x39_c00051{left:355.893587pt;}
.xa_c00051{left:364.785987pt;}
.x1b_c00051{left:365.709987pt;}
.x59_c00051{left:375.235987pt;}
.x30_c00051{left:385.342787pt;}
.x1c_c00051{left:393.790787pt;}
.xb_c00051{left:394.886387pt;}
.x51_c00051{left:395.788387pt;}
.x2c_c00051{left:404.544387pt;}
.xc_c00051{left:413.397187pt;}
.x31_c00051{left:414.483987pt;}
.x23_c00051{left:416.371587pt;}
.xd_c00051{left:423.913187pt;}
.x42_c00051{left:425.272787pt;}
.x1d_c00051{left:434.451187pt;}
.x13_c00051{left:443.915587pt;}
.x3a_c00051{left:444.883587pt;}
.x3e_c00051{left:454.127987pt;}
.x24_c00051{left:463.557187pt;}
.x14_c00051{left:472.700387pt;}
.x49_c00051{left:474.068787pt;}
.x43_c00051{left:481.821587pt;}
.x4a_c00051{left:482.943587pt;}
.x5a_c00051{left:483.876387pt;}
.x25_c00051{left:492.632387pt;}
.x52_c00051{left:493.543187pt;}
.x62_c00051{left:495.646387pt;}
.x3b_c00051{left:501.656787pt;}
.x32_c00051{left:502.774387pt;}
.x68_c00051{left:513.373987pt;}
.x45_c00051{left:521.109187pt;}
.x2d_c00051{left:522.231187pt;}
.x15_c00051{left:532.377587pt;}
.xe_c00051{left:542.501987pt;}
.x6a_c00051{left:549.563987pt;}
.x1e_c00051{left:551.684787pt;}
.x2_c00051{left:561.457187pt;}
.x5c_c00051{left:562.970787pt;}
.x26_c00051{left:571.937987pt;}
.xf_c00051{left:581.428787pt;}
.x33_c00051{left:591.117587pt;}
.x64_c00051{left:592.217587pt;}
.x69_c00051{left:598.351187pt;}
.x1f_c00051{left:601.083587pt;}
.x5b_c00051{left:603.688387pt;}
.x6b_c00051{left:606.130387pt;}
.x3_c00051{left:610.723987pt;}
.x53_c00051{left:630.550387pt;}
.x4e_c00051{left:647.547587pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_76abd61495ee92c6419ef5e0.woff2')format("woff");}.ff1_c00052{font-family:ff1_c00052;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00052;src:url('chunks/assets/font_a0c4a2033995da8537ec0475.woff2')format("woff");}.ff2_c00052{font-family:ff2_c00052;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00052;src:url('chunks/assets/font_f9707ea058ad2f6edf09721c.woff2')format("woff");}.ff3_c00052{font-family:ff3_c00052;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00052;src:url('chunks/assets/font_991ba030cf10a009e6cdce35.woff2')format("woff");}.ff4_c00052{font-family:ff4_c00052;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m22_c00052{transform:matrix(0.065041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065041,0.000000,0.000000,0.250000,0,0);}
.mac_c00052{transform:matrix(0.113638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113638,0.000000,0.000000,0.250000,0,0);}
.m23_c00052{transform:matrix(0.146342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146342,0.000000,0.000000,0.250000,0,0);}
.m1_c00052{transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);}
.m55_c00052{transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);}
.m56_c00052{transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);}
.m41_c00052{transform:matrix(0.230962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230962,0.000000,0.000000,0.250000,0,0);}
.m6a_c00052{transform:matrix(0.237612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237612,0.000000,0.000000,0.250000,0,0);}
.m90_c00052{transform:matrix(0.242302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242302,0.000000,0.000000,0.250000,0,0);}
.m19_c00052{transform:matrix(0.242534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242534,0.000000,0.000000,0.250000,0,0);}
.m2_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);}
.m36_c00052{transform:matrix(0.250517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250517,0.000000,0.000000,0.250000,0,0);}
.m92_c00052{transform:matrix(0.250935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250935,0.000000,0.000000,0.250000,0,0);}
.m0_c00052{transform:matrix(0.253198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253198,0.000000,0.000000,0.250000,0,0);}
.ma3_c00052{transform:matrix(0.253253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253253,0.000000,0.000000,0.250000,0,0);}
.m62_c00052{transform:matrix(0.255172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255172,0.000000,0.000000,0.250000,0,0);}
.ma0_c00052{transform:matrix(0.258017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258017,0.000000,0.000000,0.250000,0,0);}
.m2a_c00052{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m4a_c00052{transform:matrix(0.259696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259696,0.000000,0.000000,0.250000,0,0);}
.m42_c00052{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m96_c00052{transform:matrix(0.261013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261013,0.000000,0.000000,0.250000,0,0);}
.m8_c00052{transform:matrix(0.261492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261492,0.000000,0.000000,0.250000,0,0);}
.m54_c00052{transform:matrix(0.261907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261907,0.000000,0.000000,0.250000,0,0);}
.m5d_c00052{transform:matrix(0.262415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262415,0.000000,0.000000,0.250000,0,0);}
.m73_c00052{transform:matrix(0.262559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262559,0.000000,0.000000,0.250000,0,0);}
.m6_c00052{transform:matrix(0.263159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263159,0.000000,0.000000,0.250000,0,0);}
.m6c_c00052{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m7d_c00052{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m4e_c00052{transform:matrix(0.264128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264128,0.000000,0.000000,0.250000,0,0);}
.m61_c00052{transform:matrix(0.264220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264220,0.000000,0.000000,0.250000,0,0);}
.m13_c00052{transform:matrix(0.264397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264397,0.000000,0.000000,0.250000,0,0);}
.m3c_c00052{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m57_c00052{transform:matrix(0.266401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266401,0.000000,0.000000,0.250000,0,0);}
.m12_c00052{transform:matrix(0.266622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266622,0.000000,0.000000,0.250000,0,0);}
.m94_c00052{transform:matrix(0.267154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267154,0.000000,0.000000,0.250000,0,0);}
.m7_c00052{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m5c_c00052{transform:matrix(0.268375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268375,0.000000,0.000000,0.250000,0,0);}
.m1b_c00052{transform:matrix(0.268440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268440,0.000000,0.000000,0.250000,0,0);}
.m5b_c00052{transform:matrix(0.270180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270180,0.000000,0.000000,0.250000,0,0);}
.m79_c00052{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m14_c00052{transform:matrix(0.270922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270922,0.000000,0.000000,0.250000,0,0);}
.m29_c00052{transform:matrix(0.270968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270968,0.000000,0.000000,0.250000,0,0);}
.m11_c00052{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m4b_c00052{transform:matrix(0.272814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272814,0.000000,0.000000,0.250000,0,0);}
.m6d_c00052{transform:matrix(0.273903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273903,0.000000,0.000000,0.250000,0,0);}
.m8c_c00052{transform:matrix(0.274278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274278,0.000000,0.000000,0.250000,0,0);}
.m5e_c00052{transform:matrix(0.274402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274402,0.000000,0.000000,0.250000,0,0);}
.m50_c00052{transform:matrix(0.274708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274708,0.000000,0.000000,0.250000,0,0);}
.mb_c00052{transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);}
.m3a_c00052{transform:matrix(0.274853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274853,0.000000,0.000000,0.250000,0,0);}
.m30_c00052{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m15_c00052{transform:matrix(0.276376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276376,0.000000,0.000000,0.250000,0,0);}
.ma8_c00052{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m37_c00052{transform:matrix(0.277646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277646,0.000000,0.000000,0.250000,0,0);}
.m24_c00052{transform:matrix(0.278849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278849,0.000000,0.000000,0.250000,0,0);}
.m3f_c00052{transform:matrix(0.279082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279082,0.000000,0.000000,0.250000,0,0);}
.m9c_c00052{transform:matrix(0.279204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279204,0.000000,0.000000,0.250000,0,0);}
.m4f_c00052{transform:matrix(0.279677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279677,0.000000,0.000000,0.250000,0,0);}
.m70_c00052{transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);}
.m26_c00052{transform:matrix(0.280224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280224,0.000000,0.000000,0.250000,0,0);}
.m32_c00052{transform:matrix(0.280239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280239,0.000000,0.000000,0.250000,0,0);}
.md_c00052{transform:matrix(0.280324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280324,0.000000,0.000000,0.250000,0,0);}
.ma5_c00052{transform:matrix(0.280356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280356,0.000000,0.000000,0.250000,0,0);}
.m99_c00052{transform:matrix(0.281783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281783,0.000000,0.000000,0.250000,0,0);}
.m66_c00052{transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);}
.m9_c00052{transform:matrix(0.282412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282412,0.000000,0.000000,0.250000,0,0);}
.m3e_c00052{transform:matrix(0.282559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282559,0.000000,0.000000,0.250000,0,0);}
.m4d_c00052{transform:matrix(0.282587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282587,0.000000,0.000000,0.250000,0,0);}
.m2d_c00052{transform:matrix(0.282601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282601,0.000000,0.000000,0.250000,0,0);}
.m31_c00052{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m6e_c00052{transform:matrix(0.284537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284537,0.000000,0.000000,0.250000,0,0);}
.m51_c00052{transform:matrix(0.285050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285050,0.000000,0.000000,0.250000,0,0);}
.m8b_c00052{transform:matrix(0.285538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285538,0.000000,0.000000,0.250000,0,0);}
.m17_c00052{transform:matrix(0.285582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285582,0.000000,0.000000,0.250000,0,0);}
.m1f_c00052{transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);}
.m4c_c00052{transform:matrix(0.285639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285639,0.000000,0.000000,0.250000,0,0);}
.m49_c00052{transform:matrix(0.286238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286238,0.000000,0.000000,0.250000,0,0);}
.m5_c00052{transform:matrix(0.286407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286407,0.000000,0.000000,0.250000,0,0);}
.m89_c00052{transform:matrix(0.286455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286455,0.000000,0.000000,0.250000,0,0);}
.m25_c00052{transform:matrix(0.287967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287967,0.000000,0.000000,0.250000,0,0);}
.m53_c00052{transform:matrix(0.288003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288003,0.000000,0.000000,0.250000,0,0);}
.m82_c00052{transform:matrix(0.288974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288974,0.000000,0.000000,0.250000,0,0);}
.m2b_c00052{transform:matrix(0.289128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289128,0.000000,0.000000,0.250000,0,0);}
.m86_c00052{transform:matrix(0.289359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289359,0.000000,0.000000,0.250000,0,0);}
.me_c00052{transform:matrix(0.289464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289464,0.000000,0.000000,0.250000,0,0);}
.m20_c00052{transform:matrix(0.290804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290804,0.000000,0.000000,0.250000,0,0);}
.ma7_c00052{transform:matrix(0.290888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290888,0.000000,0.000000,0.250000,0,0);}
.m77_c00052{transform:matrix(0.291218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291218,0.000000,0.000000,0.250000,0,0);}
.m16_c00052{transform:matrix(0.291354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291354,0.000000,0.000000,0.250000,0,0);}
.m1c_c00052{transform:matrix(0.291407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291407,0.000000,0.000000,0.250000,0,0);}
.maa_c00052{transform:matrix(0.292206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292206,0.000000,0.000000,0.250000,0,0);}
.m9f_c00052{transform:matrix(0.292643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292643,0.000000,0.000000,0.250000,0,0);}
.m40_c00052{transform:matrix(0.293146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293146,0.000000,0.000000,0.250000,0,0);}
.m38_c00052{transform:matrix(0.294033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294033,0.000000,0.000000,0.250000,0,0);}
.m18_c00052{transform:matrix(0.294367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294367,0.000000,0.000000,0.250000,0,0);}
.ma_c00052{transform:matrix(0.294467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294467,0.000000,0.000000,0.250000,0,0);}
.m91_c00052{transform:matrix(0.294595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294595,0.000000,0.000000,0.250000,0,0);}
.m2c_c00052{transform:matrix(0.295569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295569,0.000000,0.000000,0.250000,0,0);}
.m9b_c00052{transform:matrix(0.296489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296489,0.000000,0.000000,0.250000,0,0);}
.m5a_c00052{transform:matrix(0.296503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296503,0.000000,0.000000,0.250000,0,0);}
.m67_c00052{transform:matrix(0.296573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296573,0.000000,0.000000,0.250000,0,0);}
.m7e_c00052{transform:matrix(0.296609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296609,0.000000,0.000000,0.250000,0,0);}
.m1e_c00052{transform:matrix(0.296720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296720,0.000000,0.000000,0.250000,0,0);}
.m65_c00052{transform:matrix(0.297069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297069,0.000000,0.000000,0.250000,0,0);}
.mc_c00052{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m95_c00052{transform:matrix(0.297117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297117,0.000000,0.000000,0.250000,0,0);}
.m69_c00052{transform:matrix(0.297136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297136,0.000000,0.000000,0.250000,0,0);}
.m45_c00052{transform:matrix(0.297539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297539,0.000000,0.000000,0.250000,0,0);}
.m71_c00052{transform:matrix(0.298068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298068,0.000000,0.000000,0.250000,0,0);}
.m8e_c00052{transform:matrix(0.298426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298426,0.000000,0.000000,0.250000,0,0);}
.m98_c00052{transform:matrix(0.298835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298835,0.000000,0.000000,0.250000,0,0);}
.m47_c00052{transform:matrix(0.299355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299355,0.000000,0.000000,0.250000,0,0);}
.m33_c00052{transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);}
.ma1_c00052{transform:matrix(0.300970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300970,0.000000,0.000000,0.250000,0,0);}
.m52_c00052{transform:matrix(0.301376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301376,0.000000,0.000000,0.250000,0,0);}
.m64_c00052{transform:matrix(0.301670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301670,0.000000,0.000000,0.250000,0,0);}
.m21_c00052{transform:matrix(0.301756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301756,0.000000,0.000000,0.250000,0,0);}
.m68_c00052{transform:matrix(0.301943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301943,0.000000,0.000000,0.250000,0,0);}
.m74_c00052{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m88_c00052{transform:matrix(0.302736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302736,0.000000,0.000000,0.250000,0,0);}
.m4_c00052{transform:matrix(0.302974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302974,0.000000,0.000000,0.250000,0,0);}
.m44_c00052{transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);}
.mab_c00052{transform:matrix(0.303875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303875,0.000000,0.000000,0.250000,0,0);}
.m8f_c00052{transform:matrix(0.304136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304136,0.000000,0.000000,0.250000,0,0);}
.m3d_c00052{transform:matrix(0.304665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304665,0.000000,0.000000,0.250000,0,0);}
.m1a_c00052{transform:matrix(0.305409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305409,0.000000,0.000000,0.250000,0,0);}
.ma6_c00052{transform:matrix(0.305779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305779,0.000000,0.000000,0.250000,0,0);}
.m46_c00052{transform:matrix(0.308167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308167,0.000000,0.000000,0.250000,0,0);}
.m93_c00052{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m75_c00052{transform:matrix(0.308940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308940,0.000000,0.000000,0.250000,0,0);}
.m5f_c00052{transform:matrix(0.309093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309093,0.000000,0.000000,0.250000,0,0);}
.m81_c00052{transform:matrix(0.310550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310550,0.000000,0.000000,0.250000,0,0);}
.m8a_c00052{transform:matrix(0.310657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310657,0.000000,0.000000,0.250000,0,0);}
.m87_c00052{transform:matrix(0.310698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310698,0.000000,0.000000,0.250000,0,0);}
.m80_c00052{transform:matrix(0.310822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310822,0.000000,0.000000,0.250000,0,0);}
.m59_c00052{transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);}
.m9d_c00052{transform:matrix(0.311453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311453,0.000000,0.000000,0.250000,0,0);}
.m78_c00052{transform:matrix(0.312744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312744,0.000000,0.000000,0.250000,0,0);}
.m7b_c00052{transform:matrix(0.313488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313488,0.000000,0.000000,0.250000,0,0);}
.m3_c00052{transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);}
.m83_c00052{transform:matrix(0.313598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313598,0.000000,0.000000,0.250000,0,0);}
.m34_c00052{transform:matrix(0.313627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313627,0.000000,0.000000,0.250000,0,0);}
.m97_c00052{transform:matrix(0.314792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314792,0.000000,0.000000,0.250000,0,0);}
.m9e_c00052{transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);}
.m7f_c00052{transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);}
.m58_c00052{transform:matrix(0.316522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316522,0.000000,0.000000,0.250000,0,0);}
.m72_c00052{transform:matrix(0.317253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317253,0.000000,0.000000,0.250000,0,0);}
.m76_c00052{transform:matrix(0.318082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318082,0.000000,0.000000,0.250000,0,0);}
.ma2_c00052{transform:matrix(0.319290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319290,0.000000,0.000000,0.250000,0,0);}
.m10_c00052{transform:matrix(0.320922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320922,0.000000,0.000000,0.250000,0,0);}
.m6b_c00052{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);}
.m7c_c00052{transform:matrix(0.322165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322165,0.000000,0.000000,0.250000,0,0);}
.m2f_c00052{transform:matrix(0.323249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323249,0.000000,0.000000,0.250000,0,0);}
.m8d_c00052{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.m9a_c00052{transform:matrix(0.324794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324794,0.000000,0.000000,0.250000,0,0);}
.m43_c00052{transform:matrix(0.325162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325162,0.000000,0.000000,0.250000,0,0);}
.m3b_c00052{transform:matrix(0.326063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326063,0.000000,0.000000,0.250000,0,0);}
.m27_c00052{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.ma9_c00052{transform:matrix(0.330859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330859,0.000000,0.000000,0.250000,0,0);}
.m6f_c00052{transform:matrix(0.331691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331691,0.000000,0.000000,0.250000,0,0);}
.ma4_c00052{transform:matrix(0.332535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332535,0.000000,0.000000,0.250000,0,0);}
.m84_c00052{transform:matrix(0.332595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332595,0.000000,0.000000,0.250000,0,0);}
.m28_c00052{transform:matrix(0.336783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336783,0.000000,0.000000,0.250000,0,0);}
.m2e_c00052{transform:matrix(0.338462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338462,0.000000,0.000000,0.250000,0,0);}
.m39_c00052{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m85_c00052{transform:matrix(0.343174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343174,0.000000,0.000000,0.250000,0,0);}
.m48_c00052{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.m60_c00052{transform:matrix(0.344239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344239,0.000000,0.000000,0.250000,0,0);}
.mf_c00052{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m1d_c00052{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m7a_c00052{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m63_c00052{transform:matrix(0.363431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363431,0.000000,0.000000,0.250000,0,0);}
.m35_c00052{transform:matrix(0.374949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374949,0.000000,0.000000,0.250000,0,0);}
.v0_c00052{vertical-align:0.000000px;}
.ls7_c00052{letter-spacing:-2.744280px;}
.ls11_c00052{letter-spacing:-2.375762px;}
.lsb_c00052{letter-spacing:-2.226787px;}
.ls3_c00052{letter-spacing:0.000000px;}
.lse_c00052{letter-spacing:0.533174px;}
.ls12_c00052{letter-spacing:2.414966px;}
.lsd_c00052{letter-spacing:2.736439px;}
.ls0_c00052{letter-spacing:3.081434px;}
.lsf_c00052{letter-spacing:3.191206px;}
.ls6_c00052{letter-spacing:3.207610px;}
.lsc_c00052{letter-spacing:3.544200px;}
.ls5_c00052{letter-spacing:3.724380px;}
.ls8_c00052{letter-spacing:3.801610px;}
.lsa_c00052{letter-spacing:3.841200px;}
.ls4_c00052{letter-spacing:3.920400px;}
.ls10_c00052{letter-spacing:4.078810px;}
.ls1_c00052{letter-spacing:4.395610px;}
.ls13_c00052{letter-spacing:31.363200px;}
.ls2_c00052{letter-spacing:51.321798px;}
.ls9_c00052{letter-spacing:58.449798px;}
.sc__c00052{text-shadow:none;}
.sc0_c00052{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00052{-webkit-text-stroke:0px transparent;}
.sc0_c00052{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00052{word-spacing:-22.338439px;}
.ws0_c00052{word-spacing:-19.602000px;}
.ws2_c00052{word-spacing:0.000000px;}
._9_c00052{width:5.802192px;}
._4_c00052{width:8.076024px;}
._2_c00052{width:9.173736px;}
._1_c00052{width:10.506672px;}
._0_c00052{width:22.267872px;}
._3_c00052{width:26.710200px;}
._7_c00052{width:28.395576px;}
._5_c00052{width:29.481408px;}
._8_c00052{width:35.957909px;}
._6_c00052{width:337.138560px;}
.fc0_c00052{color:transparent;}
.fs10_c00052{font-size:22.374000px;}
.fs3_c00052{font-size:22.572000px;}
.fse_c00052{font-size:25.146000px;}
.fs7_c00052{font-size:26.928000px;}
.fsf_c00052{font-size:31.363200px;}
.fsb_c00052{font-size:39.204000px;}
.fs1_c00052{font-size:51.321798px;}
.fs6_c00052{font-size:58.449798px;}
.fs4_c00052{font-size:64.152198px;}
.fsa_c00052{font-size:64.548000px;}
.fsd_c00052{font-size:66.528000px;}
.fs9_c00052{font-size:70.884000px;}
.fs5_c00052{font-size:76.032198px;}
.fs8_c00052{font-size:76.824000px;}
.fs2_c00052{font-size:78.408000px;}
.fsc_c00052{font-size:81.576198px;}
.fs0_c00052{font-size:87.912198px;}
.y0_c00052{bottom:0.000000px;}
.y21_c00052{bottom:56.930985px;}
.y20_c00052{bottom:67.271535px;}
.y1_c00052{bottom:76.500000px;}
.y1f_c00052{bottom:80.101935px;}
.y1e_c00052{bottom:138.546585px;}
.y1d_c00052{bottom:169.201935px;}
.y1c_c00052{bottom:202.698585px;}
.y1b_c00052{bottom:236.556585px;}
.y1a_c00052{bottom:303.208335px;}
.y19_c00052{bottom:335.640735px;}
.y18_c00052{bottom:350.248185px;}
.y17_c00052{bottom:368.429535px;}
.y16_c00052{bottom:400.856985px;}
.y15_c00052{bottom:433.289385px;}
.y14_c00052{bottom:466.078185px;}
.y22_c00052{bottom:483.546735px;}
.y13_c00052{bottom:489.956985px;}
.y12_c00052{bottom:497.802735px;}
.y11_c00052{bottom:530.230185px;}
.y10_c00052{bottom:562.311135px;}
.yf_c00052{bottom:595.099935px;}
.ye_c00052{bottom:628.240185px;}
.yd_c00052{bottom:693.109935px;}
.yc_c00052{bottom:708.791535px;}
.ya_c00052{bottom:726.611535px;}
.yb_c00052{bottom:727.675785px;}
.y9_c00052{bottom:751.554585px;}
.y8_c00052{bottom:759.400335px;}
.y7_c00052{bottom:791.471385px;}
.y6_c00052{bottom:825.329385px;}
.y5_c00052{bottom:857.410335px;}
.y4_c00052{bottom:903.742335px;}
.y3_c00052{bottom:922.270185px;}
.y2_c00052{bottom:1077.304185px;}
.h13_c00052{height:20.887891px;}
.h14_c00052{height:23.335383px;}
.h5_c00052{height:23.541891px;}
.h12_c00052{height:26.226492px;}
.ha_c00052{height:28.085063px;}
.h3_c00052{height:34.180317px;}
.he_c00052{height:38.476582px;}
.h8_c00052{height:38.927565px;}
.h6_c00052{height:66.908738px;}
.hd_c00052{height:67.321547px;}
.h11_c00052{height:69.386625px;}
.h10_c00052{height:69.568770px;}
.hc_c00052{height:73.929797px;}
.h7_c00052{height:74.621444px;}
.hb_c00052{height:75.398555px;}
.h4_c00052{height:76.953164px;}
.h9_c00052{height:79.299207px;}
.hf_c00052{height:80.062577px;}
.h2_c00052{height:86.281015px;}
.h1_c00052{height:1110.000000px;}
.h0_c00052{height:1263.000000px;}
.w1_c00052{width:733.500000px;}
.w0_c00052{width:892.500000px;}
.x0_c00052{left:0.000000px;}
.x1b_c00052{left:57.290835px;}
.x3_c00052{left:58.463985px;}
.x6e_c00052{left:59.661885px;}
.x1_c00052{left:79.500000px;}
.x45_c00052{left:80.704335px;}
.x24_c00052{left:91.015185px;}
.x4d_c00052{left:92.089335px;}
.x38_c00052{left:102.093285px;}
.xf_c00052{left:112.522935px;}
.x50_c00052{left:113.631735px;}
.x1c_c00052{left:124.437585px;}
.x5e_c00052{left:126.303735px;}
.x39_c00052{left:135.273135px;}
.x2d_c00052{left:145.910685px;}
.x62_c00052{left:147.524385px;}
.x4_c00052{left:150.543885px;}
.x5_c00052{left:156.612585px;}
.x5f_c00052{left:158.770785px;}
.x42_c00052{left:167.675835px;}
.x1d_c00052{left:169.051935px;}
.x4e_c00052{left:179.600385px;}
.x33_c00052{left:189.797385px;}
.x6_c00052{left:190.802235px;}
.x67_c00052{left:192.425835px;}
.x63_c00052{left:194.579085px;}
.x25_c00052{left:212.577285px;}
.x51_c00052{left:213.606885px;}
.x10_c00052{left:223.640535px;}
.x49_c00052{left:224.694885px;}
.x68_c00052{left:227.580735px;}
.x11_c00052{left:233.807835px;}
.x3a_c00052{left:236.079885px;}
.x26_c00052{left:246.316485px;}
.x4a_c00052{left:247.841085px;}
.x1e_c00052{left:256.949085px;}
.x54_c00052{left:258.884535px;}
.x12_c00052{left:268.046985px;}
.x3b_c00052{left:269.190435px;}
.x1f_c00052{left:279.134985px;}
.x64_c00052{left:280.634835px;}
.x27_c00052{left:290.252685px;}
.x2e_c00052{left:291.292185px;}
.x6f_c00052{left:292.757385px;}
.x13_c00052{left:301.197135px;}
.x69_c00052{left:302.706885px;}
.x3f_c00052{left:313.324635px;}
.x7_c00052{left:323.808735px;}
.x55_c00052{left:325.160085px;}
.x20_c00052{left:334.693785px;}
.x60_c00052{left:335.703585px;}
.x3d_c00052{left:345.682785px;}
.x4b_c00052{left:346.940085px;}
.x37_c00052{left:356.944035px;}
.x59_c00052{left:358.221135px;}
.x28_c00052{left:359.696235px;}
.x8_c00052{left:367.428135px;}
.x5d_c00052{left:369.571485px;}
.x14_c00052{left:379.248735px;}
.x4f_c00052{left:380.807985px;}
.x56_c00052{left:391.331685px;}
.x2f_c00052{left:401.454435px;}
.x46_c00052{left:402.518685px;}
.x71_c00052{left:403.563135px;}
.x43_c00052{left:412.017735px;}
.x6a_c00052{left:413.398785px;}
.x29_c00052{left:422.353335px;}
.x44_c00052{left:423.417585px;}
.x65_c00052{left:424.432335px;}
.x52_c00052{left:426.719235px;}
.x21_c00052{left:434.436285px;}
.x61_c00052{left:436.366785px;}
.x15_c00052{left:445.628235px;}
.x9_c00052{left:456.369735px;}
.x57_c00052{left:468.472485px;}
.xe_c00052{left:474.956985px;}
.x16_c00052{left:477.887385px;}
.x53_c00052{left:479.738685px;}
.x70_c00052{left:481.292985px;}
.xa_c00052{left:488.178435px;}
.x34_c00052{left:490.554435px;}
.x47_c00052{left:493.138335px;}
.x17_c00052{left:500.543535px;}
.x40_c00052{left:501.959235px;}
.x2a_c00052{left:503.295735px;}
.x22_c00052{left:512.240385px;}
.x66_c00052{left:513.913485px;}
.x2b_c00052{left:522.521535px;}
.x58_c00052{left:523.719435px;}
.x18_c00052{left:533.337285px;}
.x3e_c00052{left:534.416385px;}
.x4c_c00052{left:535.421235px;}
.x48_c00052{left:545.588535px;}
.x6b_c00052{left:546.835935px;}
.xb_c00052{left:555.434085px;}
.x5a_c00052{left:557.542785px;}
.x19_c00052{left:565.160835px;}
.x30_c00052{left:567.477435px;}
.x72_c00052{left:569.195085px;}
.x3c_c00052{left:577.887285px;}
.xc_c00052{left:589.475235px;}
.x5b_c00052{left:590.697885px;}
.x73_c00052{left:601.642335px;}
.x35_c00052{left:610.839435px;}
.x41_c00052{left:611.918535px;}
.x2c_c00052{left:622.417485px;}
.x36_c00052{left:623.461935px;}
.x6c_c00052{left:625.258785px;}
.xd_c00052{left:632.871885px;}
.x2_c00052{left:634.495485px;}
.x31_c00052{left:645.217185px;}
.x23_c00052{left:655.815135px;}
.x6d_c00052{left:658.369335px;}
.x1a_c00052{left:666.452685px;}
.x5c_c00052{left:668.125785px;}
.x74_c00052{left:674.060835px;}
.x75_c00052{left:675.575535px;}
.x32_c00052{left:677.659485px;}
.x76_c00052{left:723.154935px;}
@media print{
.v0_c00052{vertical-align:0.000000pt;}
.ls7_c00052{letter-spacing:-2.439360pt;}
.ls11_c00052{letter-spacing:-2.111789pt;}
.lsb_c00052{letter-spacing:-1.979366pt;}
.ls3_c00052{letter-spacing:0.000000pt;}
.lse_c00052{letter-spacing:0.473933pt;}
.ls12_c00052{letter-spacing:2.146637pt;}
.lsd_c00052{letter-spacing:2.432390pt;}
.ls0_c00052{letter-spacing:2.739053pt;}
.lsf_c00052{letter-spacing:2.836627pt;}
.ls6_c00052{letter-spacing:2.851209pt;}
.lsc_c00052{letter-spacing:3.150400pt;}
.ls5_c00052{letter-spacing:3.310560pt;}
.ls8_c00052{letter-spacing:3.379209pt;}
.lsa_c00052{letter-spacing:3.414400pt;}
.ls4_c00052{letter-spacing:3.484800pt;}
.ls10_c00052{letter-spacing:3.625609pt;}
.ls1_c00052{letter-spacing:3.907209pt;}
.ls13_c00052{letter-spacing:27.878400pt;}
.ls2_c00052{letter-spacing:45.619376pt;}
.ls9_c00052{letter-spacing:51.955376pt;}
.ws1_c00052{word-spacing:-19.856390pt;}
.ws0_c00052{word-spacing:-17.424000pt;}
.ws2_c00052{word-spacing:0.000000pt;}
._9_c00052{width:5.157504pt;}
._4_c00052{width:7.178688pt;}
._2_c00052{width:8.154432pt;}
._1_c00052{width:9.339264pt;}
._0_c00052{width:19.793664pt;}
._3_c00052{width:23.742400pt;}
._7_c00052{width:25.240512pt;}
._5_c00052{width:26.205696pt;}
._8_c00052{width:31.962586pt;}
._6_c00052{width:299.678720pt;}
.fs10_c00052{font-size:19.888000pt;}
.fs3_c00052{font-size:20.064000pt;}
.fse_c00052{font-size:22.352000pt;}
.fs7_c00052{font-size:23.936000pt;}
.fsf_c00052{font-size:27.878400pt;}
.fsb_c00052{font-size:34.848000pt;}
.fs1_c00052{font-size:45.619376pt;}
.fs6_c00052{font-size:51.955376pt;}
.fs4_c00052{font-size:57.024176pt;}
.fsa_c00052{font-size:57.376000pt;}
.fsd_c00052{font-size:59.136000pt;}
.fs9_c00052{font-size:63.008000pt;}
.fs5_c00052{font-size:67.584176pt;}
.fs8_c00052{font-size:68.288000pt;}
.fs2_c00052{font-size:69.696000pt;}
.fsc_c00052{font-size:72.512176pt;}
.fs0_c00052{font-size:78.144176pt;}
.y0_c00052{bottom:0.000000pt;}
.y21_c00052{bottom:50.605320pt;}
.y20_c00052{bottom:59.796920pt;}
.y1_c00052{bottom:68.000000pt;}
.y1f_c00052{bottom:71.201720pt;}
.y1e_c00052{bottom:123.152520pt;}
.y1d_c00052{bottom:150.401720pt;}
.y1c_c00052{bottom:180.176520pt;}
.y1b_c00052{bottom:210.272520pt;}
.y1a_c00052{bottom:269.518520pt;}
.y19_c00052{bottom:298.347320pt;}
.y18_c00052{bottom:311.331720pt;}
.y17_c00052{bottom:327.492920pt;}
.y16_c00052{bottom:356.317320pt;}
.y15_c00052{bottom:385.146120pt;}
.y14_c00052{bottom:414.291720pt;}
.y22_c00052{bottom:429.819320pt;}
.y13_c00052{bottom:435.517320pt;}
.y12_c00052{bottom:442.491320pt;}
.y11_c00052{bottom:471.315720pt;}
.y10_c00052{bottom:499.832120pt;}
.yf_c00052{bottom:528.977720pt;}
.ye_c00052{bottom:558.435720pt;}
.yd_c00052{bottom:616.097720pt;}
.yc_c00052{bottom:630.036920pt;}
.ya_c00052{bottom:645.876920pt;}
.yb_c00052{bottom:646.822920pt;}
.y9_c00052{bottom:668.048520pt;}
.y8_c00052{bottom:675.022520pt;}
.y7_c00052{bottom:703.530120pt;}
.y6_c00052{bottom:733.626120pt;}
.y5_c00052{bottom:762.142520pt;}
.y4_c00052{bottom:803.326520pt;}
.y3_c00052{bottom:819.795720pt;}
.y2_c00052{bottom:957.603720pt;}
.h13_c00052{height:18.567014pt;}
.h14_c00052{height:20.742563pt;}
.h5_c00052{height:20.926125pt;}
.h12_c00052{height:23.312438pt;}
.ha_c00052{height:24.964500pt;}
.h3_c00052{height:30.382504pt;}
.he_c00052{height:34.201406pt;}
.h8_c00052{height:34.602280pt;}
.h6_c00052{height:59.474434pt;}
.hd_c00052{height:59.841375pt;}
.h11_c00052{height:61.677000pt;}
.h10_c00052{height:61.838906pt;}
.hc_c00052{height:65.715375pt;}
.h7_c00052{height:66.330173pt;}
.hb_c00052{height:67.020938pt;}
.h4_c00052{height:68.402813pt;}
.h9_c00052{height:70.488184pt;}
.hf_c00052{height:71.166735pt;}
.h2_c00052{height:76.694235pt;}
.h1_c00052{height:986.666667pt;}
.h0_c00052{height:1122.666667pt;}
.w1_c00052{width:652.000000pt;}
.w0_c00052{width:793.333333pt;}
.x0_c00052{left:0.000000pt;}
.x1b_c00052{left:50.925187pt;}
.x3_c00052{left:51.967987pt;}
.x6e_c00052{left:53.032787pt;}
.x1_c00052{left:70.666667pt;}
.x45_c00052{left:71.737187pt;}
.x24_c00052{left:80.902387pt;}
.x4d_c00052{left:81.857187pt;}
.x38_c00052{left:90.749587pt;}
.xf_c00052{left:100.020387pt;}
.x50_c00052{left:101.005987pt;}
.x1c_c00052{left:110.611187pt;}
.x5e_c00052{left:112.269987pt;}
.x39_c00052{left:120.242787pt;}
.x2d_c00052{left:129.698387pt;}
.x62_c00052{left:131.132787pt;}
.x4_c00052{left:133.816787pt;}
.x5_c00052{left:139.211187pt;}
.x5f_c00052{left:141.129587pt;}
.x42_c00052{left:149.045187pt;}
.x1d_c00052{left:150.268387pt;}
.x4e_c00052{left:159.644787pt;}
.x33_c00052{left:168.708787pt;}
.x6_c00052{left:169.601987pt;}
.x67_c00052{left:171.045187pt;}
.x63_c00052{left:172.959187pt;}
.x25_c00052{left:188.957587pt;}
.x51_c00052{left:189.872787pt;}
.x10_c00052{left:198.791587pt;}
.x49_c00052{left:199.728787pt;}
.x68_c00052{left:202.293987pt;}
.x11_c00052{left:207.829187pt;}
.x3a_c00052{left:209.848787pt;}
.x26_c00052{left:218.947987pt;}
.x4a_c00052{left:220.303187pt;}
.x1e_c00052{left:228.399187pt;}
.x54_c00052{left:230.119587pt;}
.x12_c00052{left:238.263987pt;}
.x3b_c00052{left:239.280387pt;}
.x1f_c00052{left:248.119987pt;}
.x64_c00052{left:249.453187pt;}
.x27_c00052{left:258.002387pt;}
.x2e_c00052{left:258.926387pt;}
.x6f_c00052{left:260.228787pt;}
.x13_c00052{left:267.730787pt;}
.x69_c00052{left:269.072787pt;}
.x3f_c00052{left:278.510787pt;}
.x7_c00052{left:287.829987pt;}
.x55_c00052{left:289.031187pt;}
.x20_c00052{left:297.505587pt;}
.x60_c00052{left:298.403187pt;}
.x3d_c00052{left:307.273587pt;}
.x4b_c00052{left:308.391187pt;}
.x37_c00052{left:317.283587pt;}
.x59_c00052{left:318.418787pt;}
.x28_c00052{left:319.729987pt;}
.x8_c00052{left:326.602787pt;}
.x5d_c00052{left:328.507987pt;}
.x14_c00052{left:337.109987pt;}
.x4f_c00052{left:338.495987pt;}
.x56_c00052{left:347.850387pt;}
.x2f_c00052{left:356.848387pt;}
.x46_c00052{left:357.794387pt;}
.x71_c00052{left:358.722787pt;}
.x43_c00052{left:366.237987pt;}
.x6a_c00052{left:367.465587pt;}
.x29_c00052{left:375.425187pt;}
.x44_c00052{left:376.371187pt;}
.x65_c00052{left:377.273187pt;}
.x52_c00052{left:379.305987pt;}
.x21_c00052{left:386.165587pt;}
.x61_c00052{left:387.881587pt;}
.x15_c00052{left:396.113987pt;}
.x9_c00052{left:405.661987pt;}
.x57_c00052{left:416.419987pt;}
.xe_c00052{left:422.183987pt;}
.x16_c00052{left:424.788787pt;}
.x53_c00052{left:426.434387pt;}
.x70_c00052{left:427.815987pt;}
.xa_c00052{left:433.936387pt;}
.x34_c00052{left:436.048387pt;}
.x47_c00052{left:438.345187pt;}
.x17_c00052{left:444.927587pt;}
.x40_c00052{left:446.185987pt;}
.x2a_c00052{left:447.373987pt;}
.x22_c00052{left:455.324787pt;}
.x66_c00052{left:456.811987pt;}
.x2b_c00052{left:464.463587pt;}
.x58_c00052{left:465.528387pt;}
.x18_c00052{left:474.077587pt;}
.x3e_c00052{left:475.036787pt;}
.x4c_c00052{left:475.929987pt;}
.x48_c00052{left:484.967587pt;}
.x6b_c00052{left:486.076387pt;}
.xb_c00052{left:493.719187pt;}
.x5a_c00052{left:495.593587pt;}
.x19_c00052{left:502.365187pt;}
.x30_c00052{left:504.424387pt;}
.x72_c00052{left:505.951187pt;}
.x3c_c00052{left:513.677587pt;}
.xc_c00052{left:523.977987pt;}
.x5b_c00052{left:525.064787pt;}
.x73_c00052{left:534.793187pt;}
.x35_c00052{left:542.968387pt;}
.x41_c00052{left:543.927587pt;}
.x2c_c00052{left:553.259987pt;}
.x36_c00052{left:554.188387pt;}
.x6c_c00052{left:555.785587pt;}
.xd_c00052{left:562.552787pt;}
.x2_c00052{left:563.995987pt;}
.x31_c00052{left:573.526387pt;}
.x23_c00052{left:582.946787pt;}
.x6d_c00052{left:585.217187pt;}
.x1a_c00052{left:592.402387pt;}
.x5c_c00052{left:593.889587pt;}
.x74_c00052{left:599.165187pt;}
.x75_c00052{left:600.511587pt;}
.x32_c00052{left:602.363987pt;}
.x76_c00052{left:642.804387pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c9248678eab2f6b3825beed6.woff2')format("woff");}.ff1_c00053{font-family:ff1_c00053;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00053;src:url('chunks/assets/font_49e04e415091764a8f7eeec3.woff2')format("woff");}.ff2_c00053{font-family:ff2_c00053;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00053;src:url('chunks/assets/font_b5c108b52f014faf3c78a20e.woff2')format("woff");}.ff3_c00053{font-family:ff3_c00053;line-height:0.666000;font-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_c00053{transform:matrix(0.113638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113638,0.000000,0.000000,0.250000,0,0);}
.m26_c00053{transform:matrix(0.214399,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214399,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214399,0.000000,0.000000,0.250000,0,0);}
.m8d_c00053{transform:matrix(0.214435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214435,0.000000,0.000000,0.250000,0,0);}
.m76_c00053{transform:matrix(0.216704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216704,0.000000,0.000000,0.250000,0,0);}
.m7_c00053{transform:matrix(0.225922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225922,0.000000,0.000000,0.250000,0,0);}
.m51_c00053{transform:matrix(0.242241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242241,0.000000,0.000000,0.250000,0,0);}
.mbe_c00053{transform:matrix(0.245107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245107,0.000000,0.000000,0.250000,0,0);}
.m1_c00053{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00053{transform:matrix(0.251362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251362,0.000000,0.000000,0.250000,0,0);}
.mb7_c00053{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.m27_c00053{transform:matrix(0.252090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252090,0.000000,0.000000,0.250000,0,0);}
.m96_c00053{transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);}
.m77_c00053{transform:matrix(0.254786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254786,0.000000,0.000000,0.250000,0,0);}
.m2b_c00053{transform:matrix(0.256547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256547,0.000000,0.000000,0.250000,0,0);}
.m9c_c00053{transform:matrix(0.257227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257227,0.000000,0.000000,0.250000,0,0);}
.m50_c00053{transform:matrix(0.257917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257917,0.000000,0.000000,0.250000,0,0);}
.m4b_c00053{transform:matrix(0.258258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258258,0.000000,0.000000,0.250000,0,0);}
.m3e_c00053{transform:matrix(0.258289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258289,0.000000,0.000000,0.250000,0,0);}
.m4c_c00053{transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);}
.m7c_c00053{transform:matrix(0.258603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258603,0.000000,0.000000,0.250000,0,0);}
.ma9_c00053{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m5b_c00053{transform:matrix(0.259016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259016,0.000000,0.000000,0.250000,0,0);}
.m88_c00053{transform:matrix(0.260251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260251,0.000000,0.000000,0.250000,0,0);}
.m2f_c00053{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m2c_c00053{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m13_c00053{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.ma2_c00053{transform:matrix(0.264538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264538,0.000000,0.000000,0.250000,0,0);}
.m82_c00053{transform:matrix(0.264672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264672,0.000000,0.000000,0.250000,0,0);}
.m0_c00053{transform:matrix(0.264919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264919,0.000000,0.000000,0.250000,0,0);}
.m42_c00053{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.mb0_c00053{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.m3_c00053{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m72_c00053{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.m4d_c00053{transform:matrix(0.269275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269275,0.000000,0.000000,0.250000,0,0);}
.m2d_c00053{transform:matrix(0.269787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269787,0.000000,0.000000,0.250000,0,0);}
.m49_c00053{transform:matrix(0.270166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270166,0.000000,0.000000,0.250000,0,0);}
.m48_c00053{transform:matrix(0.270230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270230,0.000000,0.000000,0.250000,0,0);}
.m34_c00053{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.mad_c00053{transform:matrix(0.270916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270916,0.000000,0.000000,0.250000,0,0);}
.m1d_c00053{transform:matrix(0.271124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271124,0.000000,0.000000,0.250000,0,0);}
.m57_c00053{transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);}
.me_c00053{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m55_c00053{transform:matrix(0.272589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272589,0.000000,0.000000,0.250000,0,0);}
.m6a_c00053{transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);}
.m33_c00053{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00053{transform:matrix(0.273462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273462,0.000000,0.000000,0.250000,0,0);}
.m4_c00053{transform:matrix(0.273900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273900,0.000000,0.000000,0.250000,0,0);}
.m28_c00053{transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);}
.m62_c00053{transform:matrix(0.274558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274558,0.000000,0.000000,0.250000,0,0);}
.m84_c00053{transform:matrix(0.274708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274708,0.000000,0.000000,0.250000,0,0);}
.m52_c00053{transform:matrix(0.275379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275379,0.000000,0.000000,0.250000,0,0);}
.m74_c00053{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.mb4_c00053{transform:matrix(0.275667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275667,0.000000,0.000000,0.250000,0,0);}
.m4e_c00053{transform:matrix(0.276032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276032,0.000000,0.000000,0.250000,0,0);}
.m64_c00053{transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);}
.m40_c00053{transform:matrix(0.277143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277143,0.000000,0.000000,0.250000,0,0);}
.m5_c00053{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m1b_c00053{transform:matrix(0.277595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277595,0.000000,0.000000,0.250000,0,0);}
.m98_c00053{transform:matrix(0.277903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277903,0.000000,0.000000,0.250000,0,0);}
.ma0_c00053{transform:matrix(0.277932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277932,0.000000,0.000000,0.250000,0,0);}
.m9d_c00053{transform:matrix(0.278332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278332,0.000000,0.000000,0.250000,0,0);}
.mab_c00053{transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);}
.m6d_c00053{transform:matrix(0.279757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279757,0.000000,0.000000,0.250000,0,0);}
.m59_c00053{transform:matrix(0.280767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280767,0.000000,0.000000,0.250000,0,0);}
.m4f_c00053{transform:matrix(0.281398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281398,0.000000,0.000000,0.250000,0,0);}
.m87_c00053{transform:matrix(0.282165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282165,0.000000,0.000000,0.250000,0,0);}
.m8b_c00053{transform:matrix(0.282254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282254,0.000000,0.000000,0.250000,0,0);}
.m3b_c00053{transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);}
.m37_c00053{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m61_c00053{transform:matrix(0.283565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283565,0.000000,0.000000,0.250000,0,0);}
.m83_c00053{transform:matrix(0.284534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284534,0.000000,0.000000,0.250000,0,0);}
.m5c_c00053{transform:matrix(0.284878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284878,0.000000,0.000000,0.250000,0,0);}
.m2a_c00053{transform:matrix(0.285178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285178,0.000000,0.000000,0.250000,0,0);}
.mb1_c00053{transform:matrix(0.285205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285205,0.000000,0.000000,0.250000,0,0);}
.m43_c00053{transform:matrix(0.285589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285589,0.000000,0.000000,0.250000,0,0);}
.mba_c00053{transform:matrix(0.286350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286350,0.000000,0.000000,0.250000,0,0);}
.m9e_c00053{transform:matrix(0.287284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287284,0.000000,0.000000,0.250000,0,0);}
.m92_c00053{transform:matrix(0.287504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287504,0.000000,0.000000,0.250000,0,0);}
.m7e_c00053{transform:matrix(0.287745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287745,0.000000,0.000000,0.250000,0,0);}
.m12_c00053{transform:matrix(0.287792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287792,0.000000,0.000000,0.250000,0,0);}
.m1f_c00053{transform:matrix(0.287862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287862,0.000000,0.000000,0.250000,0,0);}
.m24_c00053{transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);}
.m54_c00053{transform:matrix(0.288532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288532,0.000000,0.000000,0.250000,0,0);}
.m45_c00053{transform:matrix(0.289956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289956,0.000000,0.000000,0.250000,0,0);}
.m19_c00053{transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);}
.mbf_c00053{transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);}
.m9b_c00053{transform:matrix(0.290785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290785,0.000000,0.000000,0.250000,0,0);}
.m30_c00053{transform:matrix(0.291652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291652,0.000000,0.000000,0.250000,0,0);}
.m47_c00053{transform:matrix(0.292061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292061,0.000000,0.000000,0.250000,0,0);}
.m6b_c00053{transform:matrix(0.292140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292140,0.000000,0.000000,0.250000,0,0);}
.m8c_c00053{transform:matrix(0.292690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292690,0.000000,0.000000,0.250000,0,0);}
.m10_c00053{transform:matrix(0.292709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292709,0.000000,0.000000,0.250000,0,0);}
.m32_c00053{transform:matrix(0.293040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293040,0.000000,0.000000,0.250000,0,0);}
.m3d_c00053{transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);}
.m7a_c00053{transform:matrix(0.293867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293867,0.000000,0.000000,0.250000,0,0);}
.m8_c00053{transform:matrix(0.294443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294443,0.000000,0.000000,0.250000,0,0);}
.mb3_c00053{transform:matrix(0.294583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294583,0.000000,0.000000,0.250000,0,0);}
.mb6_c00053{transform:matrix(0.295700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295700,0.000000,0.000000,0.250000,0,0);}
.m1c_c00053{transform:matrix(0.295937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295937,0.000000,0.000000,0.250000,0,0);}
.m31_c00053{transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);}
.m38_c00053{transform:matrix(0.296881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296881,0.000000,0.000000,0.250000,0,0);}
.ma4_c00053{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.md_c00053{transform:matrix(0.297203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297203,0.000000,0.000000,0.250000,0,0);}
.m68_c00053{transform:matrix(0.298471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298471,0.000000,0.000000,0.250000,0,0);}
.m8f_c00053{transform:matrix(0.298499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298499,0.000000,0.000000,0.250000,0,0);}
.m18_c00053{transform:matrix(0.299332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299332,0.000000,0.000000,0.250000,0,0);}
.mb_c00053{transform:matrix(0.299520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299520,0.000000,0.000000,0.250000,0,0);}
.ma8_c00053{transform:matrix(0.299974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299974,0.000000,0.000000,0.250000,0,0);}
.ma_c00053{transform:matrix(0.300471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300471,0.000000,0.000000,0.250000,0,0);}
.m99_c00053{transform:matrix(0.300614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300614,0.000000,0.000000,0.250000,0,0);}
.m90_c00053{transform:matrix(0.300761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300761,0.000000,0.000000,0.250000,0,0);}
.m86_c00053{transform:matrix(0.301160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301160,0.000000,0.000000,0.250000,0,0);}
.m44_c00053{transform:matrix(0.302071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302071,0.000000,0.000000,0.250000,0,0);}
.mbb_c00053{transform:matrix(0.302081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302081,0.000000,0.000000,0.250000,0,0);}
.m3f_c00053{transform:matrix(0.302359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302359,0.000000,0.000000,0.250000,0,0);}
.m94_c00053{transform:matrix(0.302587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302587,0.000000,0.000000,0.250000,0,0);}
.m29_c00053{transform:matrix(0.302645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302645,0.000000,0.000000,0.250000,0,0);}
.m93_c00053{transform:matrix(0.303124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303124,0.000000,0.000000,0.250000,0,0);}
.m5a_c00053{transform:matrix(0.303201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303201,0.000000,0.000000,0.250000,0,0);}
.m63_c00053{transform:matrix(0.303631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303631,0.000000,0.000000,0.250000,0,0);}
.mb8_c00053{transform:matrix(0.303765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303765,0.000000,0.000000,0.250000,0,0);}
.mb5_c00053{transform:matrix(0.303897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303897,0.000000,0.000000,0.250000,0,0);}
.m8a_c00053{transform:matrix(0.304570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304570,0.000000,0.000000,0.250000,0,0);}
.m65_c00053{transform:matrix(0.304657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304657,0.000000,0.000000,0.250000,0,0);}
.m36_c00053{transform:matrix(0.305244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305244,0.000000,0.000000,0.250000,0,0);}
.m95_c00053{transform:matrix(0.306181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306181,0.000000,0.000000,0.250000,0,0);}
.m3a_c00053{transform:matrix(0.306342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306342,0.000000,0.000000,0.250000,0,0);}
.ma7_c00053{transform:matrix(0.308311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308311,0.000000,0.000000,0.250000,0,0);}
.maa_c00053{transform:matrix(0.308772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308772,0.000000,0.000000,0.250000,0,0);}
.mc_c00053{transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);}
.m89_c00053{transform:matrix(0.309376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309376,0.000000,0.000000,0.250000,0,0);}
.mac_c00053{transform:matrix(0.309730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309730,0.000000,0.000000,0.250000,0,0);}
.m14_c00053{transform:matrix(0.309792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309792,0.000000,0.000000,0.250000,0,0);}
.m6c_c00053{transform:matrix(0.309867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309867,0.000000,0.000000,0.250000,0,0);}
.mb9_c00053{transform:matrix(0.310026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310026,0.000000,0.000000,0.250000,0,0);}
.m1a_c00053{transform:matrix(0.311136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311136,0.000000,0.000000,0.250000,0,0);}
.m7f_c00053{transform:matrix(0.311255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311255,0.000000,0.000000,0.250000,0,0);}
.mbd_c00053{transform:matrix(0.311294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311294,0.000000,0.000000,0.250000,0,0);}
.m6e_c00053{transform:matrix(0.311597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311597,0.000000,0.000000,0.250000,0,0);}
.m9f_c00053{transform:matrix(0.312046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312046,0.000000,0.000000,0.250000,0,0);}
.m6_c00053{transform:matrix(0.312184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312184,0.000000,0.000000,0.250000,0,0);}
.m35_c00053{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.m78_c00053{transform:matrix(0.312713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312713,0.000000,0.000000,0.250000,0,0);}
.m21_c00053{transform:matrix(0.312932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312932,0.000000,0.000000,0.250000,0,0);}
.ma5_c00053{transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);}
.m91_c00053{transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);}
.m5e_c00053{transform:matrix(0.315600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315600,0.000000,0.000000,0.250000,0,0);}
.m9a_c00053{transform:matrix(0.316678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316678,0.000000,0.000000,0.250000,0,0);}
.m8e_c00053{transform:matrix(0.316818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316818,0.000000,0.000000,0.250000,0,0);}
.m58_c00053{transform:matrix(0.317230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317230,0.000000,0.000000,0.250000,0,0);}
.m69_c00053{transform:matrix(0.318372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318372,0.000000,0.000000,0.250000,0,0);}
.m4a_c00053{transform:matrix(0.319423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319423,0.000000,0.000000,0.250000,0,0);}
.m97_c00053{transform:matrix(0.319531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319531,0.000000,0.000000,0.250000,0,0);}
.m7d_c00053{transform:matrix(0.319725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319725,0.000000,0.000000,0.250000,0,0);}
.m39_c00053{transform:matrix(0.320073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320073,0.000000,0.000000,0.250000,0,0);}
.m5f_c00053{transform:matrix(0.320935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320935,0.000000,0.000000,0.250000,0,0);}
.m81_c00053{transform:matrix(0.321492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321492,0.000000,0.000000,0.250000,0,0);}
.m3c_c00053{transform:matrix(0.321773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321773,0.000000,0.000000,0.250000,0,0);}
.m71_c00053{transform:matrix(0.322177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322177,0.000000,0.000000,0.250000,0,0);}
.m70_c00053{transform:matrix(0.322885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322885,0.000000,0.000000,0.250000,0,0);}
.m41_c00053{transform:matrix(0.323918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323918,0.000000,0.000000,0.250000,0,0);}
.m79_c00053{transform:matrix(0.324031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324031,0.000000,0.000000,0.250000,0,0);}
.m56_c00053{transform:matrix(0.326130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326130,0.000000,0.000000,0.250000,0,0);}
.m67_c00053{transform:matrix(0.327311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327311,0.000000,0.000000,0.250000,0,0);}
.m7b_c00053{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.m80_c00053{transform:matrix(0.329576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329576,0.000000,0.000000,0.250000,0,0);}
.mc0_c00053{transform:matrix(0.330718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330718,0.000000,0.000000,0.250000,0,0);}
.m16_c00053{transform:matrix(0.330780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330780,0.000000,0.000000,0.250000,0,0);}
.m11_c00053{transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);}
.m6f_c00053{transform:matrix(0.332340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332340,0.000000,0.000000,0.250000,0,0);}
.ma6_c00053{transform:matrix(0.332761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332761,0.000000,0.000000,0.250000,0,0);}
.m5d_c00053{transform:matrix(0.333376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333376,0.000000,0.000000,0.250000,0,0);}
.m66_c00053{transform:matrix(0.333892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333892,0.000000,0.000000,0.250000,0,0);}
.m23_c00053{transform:matrix(0.337357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337357,0.000000,0.000000,0.250000,0,0);}
.m60_c00053{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m25_c00053{transform:matrix(0.340713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340713,0.000000,0.000000,0.250000,0,0);}
.m20_c00053{transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);}
.m22_c00053{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.mb2_c00053{transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);}
.m73_c00053{transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);}
.m75_c00053{transform:matrix(0.345883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345883,0.000000,0.000000,0.250000,0,0);}
.m15_c00053{transform:matrix(0.345977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345977,0.000000,0.000000,0.250000,0,0);}
.maf_c00053{transform:matrix(0.347369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347369,0.000000,0.000000,0.250000,0,0);}
.mae_c00053{transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);}
.m17_c00053{transform:matrix(0.349039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349039,0.000000,0.000000,0.250000,0,0);}
.m9_c00053{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.mbc_c00053{transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);}
.ma1_c00053{transform:matrix(0.354499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354499,0.000000,0.000000,0.250000,0,0);}
.mf_c00053{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m85_c00053{transform:matrix(0.360095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360095,0.000000,0.000000,0.250000,0,0);}
.m46_c00053{transform:matrix(0.361772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361772,0.000000,0.000000,0.250000,0,0);}
.m2e_c00053{transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);}
.m53_c00053{transform:matrix(0.375722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375722,0.000000,0.000000,0.250000,0,0);}
.v0_c00053{vertical-align:0.000000px;}
.ls7_c00053{letter-spacing:-3.367980px;}
.ls4_c00053{letter-spacing:-2.744280px;}
.lsd_c00053{letter-spacing:-0.987941px;}
.ls1_c00053{letter-spacing:0.000000px;}
.lse_c00053{letter-spacing:0.752717px;}
.ls12_c00053{letter-spacing:1.191802px;}
.lsa_c00053{letter-spacing:1.246687px;}
.ls9_c00053{letter-spacing:1.301573px;}
.ls5_c00053{letter-spacing:2.407126px;}
.ls11_c00053{letter-spacing:2.509056px;}
.lsc_c00053{letter-spacing:2.626668px;}
.lsb_c00053{letter-spacing:3.112798px;}
.ls10_c00053{letter-spacing:3.128479px;}
.ls3_c00053{letter-spacing:3.920400px;}
.lsf_c00053{letter-spacing:4.118400px;}
.ls0_c00053{letter-spacing:4.296610px;}
.ls6_c00053{letter-spacing:4.474810px;}
.ls2_c00053{letter-spacing:31.363200px;}
.ls8_c00053{letter-spacing:51.321798px;}
.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:-19.602000px;}
.ws1_c00053{word-spacing:0.000000px;}
._0_c00053{width:9.095328px;}
._3_c00053{width:11.761200px;}
._4_c00053{width:23.208768px;}
._1_c00053{width:32.546448px;}
._5_c00053{width:33.950664px;}
._2_c00053{width:37.634256px;}
.fc0_c00053{color:transparent;}
.fs2_c00053{font-size:23.166000px;}
.fsb_c00053{font-size:27.720000px;}
.fs3_c00053{font-size:31.363200px;}
.fs7_c00053{font-size:51.321798px;}
.fsc_c00053{font-size:62.568000px;}
.fs8_c00053{font-size:64.548000px;}
.fs9_c00053{font-size:70.884000px;}
.fs1_c00053{font-size:72.864000px;}
.fs4_c00053{font-size:78.408000px;}
.fsa_c00053{font-size:82.368000px;}
.fs0_c00053{font-size:85.932198px;}
.fs5_c00053{font-size:89.496198px;}
.fs6_c00053{font-size:96.228000px;}
.y0_c00053{bottom:0.000000px;}
.y1_c00053{bottom:76.500000px;}
.y1f_c00053{bottom:92.932335px;}
.y1e_c00053{bottom:133.561935px;}
.y1d_c00053{bottom:163.850985px;}
.y1c_c00053{bottom:199.490985px;}
.y1b_c00053{bottom:231.928335px;}
.y1a_c00053{bottom:264.717135px;}
.y19_c00053{bottom:297.149535px;}
.y18_c00053{bottom:330.651135px;}
.y17_c00053{bottom:396.936585px;}
.y16_c00053{bottom:429.373935px;}
.y15_c00053{bottom:461.449935px;}
.y14_c00053{bottom:461.459241px;}
.y20_c00053{bottom:485.323785px;}
.y13_c00053{bottom:494.233785px;}
.y12_c00053{bottom:527.027535px;}
.y11_c00053{bottom:559.816335px;}
.y10_c00053{bottom:591.887385px;}
.yf_c00053{bottom:624.676185px;}
.ye_c00053{bottom:656.400735px;}
.yd_c00053{bottom:688.833135px;}
.yc_c00053{bottom:723.403935px;}
.yb_c00053{bottom:755.836335px;}
.ya_c00053{bottom:789.694335px;}
.y9_c00053{bottom:823.908735px;}
.y8_c00053{bottom:858.830985px;}
.y7_c00053{bottom:891.619785px;}
.y6_c00053{bottom:925.477785px;}
.y5_c00053{bottom:965.750985px;}
.y4_c00053{bottom:976.442985px;}
.y3_c00053{bottom:988.921935px;}
.y2_c00053{bottom:1083.719385px;}
.h5_c00053{height:20.887891px;}
.h4_c00053{height:24.161414px;}
.hd_c00053{height:28.911094px;}
.h9_c00053{height:34.180317px;}
.he_c00053{height:65.256469px;}
.ha_c00053{height:67.321547px;}
.hb_c00053{height:69.568770px;}
.h3_c00053{height:71.512031px;}
.h6_c00053{height:76.953164px;}
.hc_c00053{height:80.839688px;}
.h2_c00053{height:84.337753px;}
.h7_c00053{height:87.835624px;}
.h8_c00053{height:94.442520px;}
.h1_c00053{height:1110.000000px;}
.h0_c00053{height:1263.000000px;}
.w1_c00053{width:733.500000px;}
.w0_c00053{width:892.500000px;}
.x0_c00053{left:0.000000px;}
.x5_c00053{left:58.256085px;}
.x53_c00053{left:59.671785px;}
.x68_c00053{left:71.012235px;}
.x1_c00053{left:79.500000px;}
.x43_c00053{left:80.704335px;}
.x6_c00053{left:90.505335px;}
.x2a_c00053{left:92.767485px;}
.x1b_c00053{left:101.583435px;}
.x41_c00053{left:102.771435px;}
.x5b_c00053{left:114.131685px;}
.x33_c00053{left:124.388085px;}
.x2d_c00053{left:125.595885px;}
.x69_c00053{left:133.530735px;}
.x16_c00053{left:135.010785px;}
.x60_c00053{left:136.441335px;}
.x1c_c00053{left:145.445385px;}
.x4e_c00053{left:146.524485px;}
.x62_c00053{left:147.875835px;}
.x7_c00053{left:156.978885px;}
.x44_c00053{left:159.255885px;}
.x20_c00053{left:167.467935px;}
.x6a_c00053{left:168.943035px;}
.x63_c00053{left:170.086485px;}
.x38_c00053{left:180.144885px;}
.x47_c00053{left:181.397235px;}
.x8_c00053{left:189.970635px;}
.x2e_c00053{left:191.069535px;}
.x5e_c00053{left:192.084285px;}
.x39_c00053{left:200.969535px;}
.x54_c00053{left:203.261385px;}
.x34_c00053{left:205.018635px;}
.x1d_c00053{left:212.903985px;}
.x48_c00053{left:214.007835px;}
.x9_c00053{left:224.298885px;}
.x17_c00053{left:235.208685px;}
.x64_c00053{left:236.639235px;}
.x4f_c00053{left:245.836335px;}
.x55_c00053{left:247.148085px;}
.xf_c00053{left:257.815335px;}
.x35_c00053{left:268.264785px;}
.x21_c00053{left:278.679585px;}
.x58_c00053{left:280.456635px;}
.x3d_c00053{left:291.217935px;}
.x1e_c00053{left:301.959435px;}
.x3e_c00053{left:303.063285px;}
.x10_c00053{left:312.903885px;}
.x5f_c00053{left:314.393835px;}
.x26_c00053{left:324.818535px;}
.x11_c00053{left:334.802685px;}
.x6b_c00053{left:336.921285px;}
.xa_c00053{left:345.083835px;}
.x3a_c00053{left:347.103435px;}
.x27_c00053{left:357.622185px;}
.x59_c00053{left:359.023035px;}
.x2f_c00053{left:369.165585px;}
.xb_c00053{left:379.600185px;}
.x56_c00053{left:380.619885px;}
.x61_c00053{left:390.178335px;}
.x3f_c00053{left:391.782135px;}
.x28_c00053{left:401.048535px;}
.x22_c00053{left:402.167235px;}
.x18_c00053{left:412.230585px;}
.x49_c00053{left:413.938335px;}
.x30_c00053{left:423.927435px;}
.xc_c00053{left:434.579835px;}
.x66_c00053{left:435.901485px;}
.x19_c00053{left:445.979685px;}
.x50_c00053{left:447.068685px;}
.x4a_c00053{left:458.760585px;}
.xd_c00053{left:466.843935px;}
.x31_c00053{left:468.061635px;}
.x12_c00053{left:478.813035px;}
.x5c_c00053{left:480.233685px;}
.x51_c00053{left:490.371285px;}
.x4b_c00053{left:491.965185px;}
.x36_c00053{left:501.860235px;}
.x23_c00053{left:512.314635px;}
.x65_c00053{left:513.472935px;}
.x13_c00053{left:523.318485px;}
.x4c_c00053{left:524.397585px;}
.x2b_c00053{left:534.584685px;}
.x24_c00053{left:544.469835px;}
.x29_c00053{left:545.697435px;}
.x67_c00053{left:547.142835px;}
.x14_c00053{left:554.884635px;}
.x2c_c00053{left:557.359635px;}
.x1a_c00053{left:567.190335px;}
.x40_c00053{left:568.536735px;}
.xe_c00053{left:578.110035px;}
.x5d_c00053{left:580.342485px;}
.x3b_c00053{left:589.089135px;}
.x37_c00053{left:600.706785px;}
.x45_c00053{left:602.043285px;}
.x42_c00053{left:612.245235px;}
.x32_c00053{left:623.155035px;}
.x57_c00053{left:624.550935px;}
.x2_c00053{left:633.777735px;}
.x25_c00053{left:645.246885px;}
.x52_c00053{left:646.296285px;}
.x15_c00053{left:655.384485px;}
.x3c_c00053{left:656.473485px;}
.x1f_c00053{left:667.596135px;}
.x46_c00053{left:668.744535px;}
.x5a_c00053{left:670.343385px;}
.x3_c00053{left:673.313385px;}
.x4_c00053{left:674.877585px;}
.x4d_c00053{left:689.767185px;}
.x6c_c00053{left:725.258685px;}
@media print{
.v0_c00053{vertical-align:0.000000pt;}
.ls7_c00053{letter-spacing:-2.993760pt;}
.ls4_c00053{letter-spacing:-2.439360pt;}
.lsd_c00053{letter-spacing:-0.878170pt;}
.ls1_c00053{letter-spacing:0.000000pt;}
.lse_c00053{letter-spacing:0.669082pt;}
.ls12_c00053{letter-spacing:1.059379pt;}
.lsa_c00053{letter-spacing:1.108166pt;}
.ls9_c00053{letter-spacing:1.156954pt;}
.ls5_c00053{letter-spacing:2.139667pt;}
.ls11_c00053{letter-spacing:2.230272pt;}
.lsc_c00053{letter-spacing:2.334816pt;}
.lsb_c00053{letter-spacing:2.766931pt;}
.ls10_c00053{letter-spacing:2.780870pt;}
.ls3_c00053{letter-spacing:3.484800pt;}
.lsf_c00053{letter-spacing:3.660800pt;}
.ls0_c00053{letter-spacing:3.819209pt;}
.ls6_c00053{letter-spacing:3.977609pt;}
.ls2_c00053{letter-spacing:27.878400pt;}
.ls8_c00053{letter-spacing:45.619376pt;}
.ws0_c00053{word-spacing:-17.424000pt;}
.ws1_c00053{word-spacing:0.000000pt;}
._0_c00053{width:8.084736pt;}
._3_c00053{width:10.454400pt;}
._4_c00053{width:20.630016pt;}
._1_c00053{width:28.930176pt;}
._5_c00053{width:30.178368pt;}
._2_c00053{width:33.452672pt;}
.fs2_c00053{font-size:20.592000pt;}
.fsb_c00053{font-size:24.640000pt;}
.fs3_c00053{font-size:27.878400pt;}
.fs7_c00053{font-size:45.619376pt;}
.fsc_c00053{font-size:55.616000pt;}
.fs8_c00053{font-size:57.376000pt;}
.fs9_c00053{font-size:63.008000pt;}
.fs1_c00053{font-size:64.768000pt;}
.fs4_c00053{font-size:69.696000pt;}
.fsa_c00053{font-size:73.216000pt;}
.fs0_c00053{font-size:76.384176pt;}
.fs5_c00053{font-size:79.552176pt;}
.fs6_c00053{font-size:85.536000pt;}
.y0_c00053{bottom:0.000000pt;}
.y1_c00053{bottom:68.000000pt;}
.y1f_c00053{bottom:82.606520pt;}
.y1e_c00053{bottom:118.721720pt;}
.y1d_c00053{bottom:145.645320pt;}
.y1c_c00053{bottom:177.325320pt;}
.y1b_c00053{bottom:206.158520pt;}
.y1a_c00053{bottom:235.304120pt;}
.y19_c00053{bottom:264.132920pt;}
.y18_c00053{bottom:293.912120pt;}
.y17_c00053{bottom:352.832520pt;}
.y16_c00053{bottom:381.665720pt;}
.y15_c00053{bottom:410.177720pt;}
.y14_c00053{bottom:410.185992pt;}
.y20_c00053{bottom:431.398920pt;}
.y13_c00053{bottom:439.318920pt;}
.y12_c00053{bottom:468.468920pt;}
.y11_c00053{bottom:497.614520pt;}
.y10_c00053{bottom:526.122120pt;}
.yf_c00053{bottom:555.267720pt;}
.ye_c00053{bottom:583.467320pt;}
.yd_c00053{bottom:612.296120pt;}
.yc_c00053{bottom:643.025720pt;}
.yb_c00053{bottom:671.854520pt;}
.ya_c00053{bottom:701.950520pt;}
.y9_c00053{bottom:732.363320pt;}
.y8_c00053{bottom:763.405320pt;}
.y7_c00053{bottom:792.550920pt;}
.y6_c00053{bottom:822.646920pt;}
.y5_c00053{bottom:858.445320pt;}
.y4_c00053{bottom:867.949320pt;}
.y3_c00053{bottom:879.041720pt;}
.y2_c00053{bottom:963.306120pt;}
.h5_c00053{height:18.567014pt;}
.h4_c00053{height:21.476813pt;}
.hd_c00053{height:25.698750pt;}
.h9_c00053{height:30.382504pt;}
.he_c00053{height:58.005750pt;}
.ha_c00053{height:59.841375pt;}
.hb_c00053{height:61.838906pt;}
.h3_c00053{height:63.566250pt;}
.h6_c00053{height:68.402813pt;}
.hc_c00053{height:71.857500pt;}
.h2_c00053{height:74.966891pt;}
.h7_c00053{height:78.076110pt;}
.h8_c00053{height:83.948906pt;}
.h1_c00053{height:986.666667pt;}
.h0_c00053{height:1122.666667pt;}
.w1_c00053{width:652.000000pt;}
.w0_c00053{width:793.333333pt;}
.x0_c00053{left:0.000000pt;}
.x5_c00053{left:51.783187pt;}
.x53_c00053{left:53.041587pt;}
.x68_c00053{left:63.121987pt;}
.x1_c00053{left:70.666667pt;}
.x43_c00053{left:71.737187pt;}
.x6_c00053{left:80.449187pt;}
.x2a_c00053{left:82.459987pt;}
.x1b_c00053{left:90.296387pt;}
.x41_c00053{left:91.352387pt;}
.x5b_c00053{left:101.450387pt;}
.x33_c00053{left:110.567187pt;}
.x2d_c00053{left:111.640787pt;}
.x69_c00053{left:118.693987pt;}
.x16_c00053{left:120.009587pt;}
.x60_c00053{left:121.281187pt;}
.x1c_c00053{left:129.284787pt;}
.x4e_c00053{left:130.243987pt;}
.x62_c00053{left:131.445187pt;}
.x7_c00053{left:139.536787pt;}
.x44_c00053{left:141.560787pt;}
.x20_c00053{left:148.860387pt;}
.x6a_c00053{left:150.171587pt;}
.x63_c00053{left:151.187987pt;}
.x38_c00053{left:160.128787pt;}
.x47_c00053{left:161.241987pt;}
.x8_c00053{left:168.862787pt;}
.x2e_c00053{left:169.839587pt;}
.x5e_c00053{left:170.741587pt;}
.x39_c00053{left:178.639587pt;}
.x54_c00053{left:180.676787pt;}
.x34_c00053{left:182.238787pt;}
.x1d_c00053{left:189.247987pt;}
.x48_c00053{left:190.229187pt;}
.x9_c00053{left:199.376787pt;}
.x17_c00053{left:209.074387pt;}
.x64_c00053{left:210.345987pt;}
.x4f_c00053{left:218.521187pt;}
.x55_c00053{left:219.687187pt;}
.xf_c00053{left:229.169187pt;}
.x35_c00053{left:238.457587pt;}
.x21_c00053{left:247.715187pt;}
.x58_c00053{left:249.294787pt;}
.x3d_c00053{left:258.860387pt;}
.x1e_c00053{left:268.408387pt;}
.x3e_c00053{left:269.389587pt;}
.x10_c00053{left:278.136787pt;}
.x5f_c00053{left:279.461187pt;}
.x26_c00053{left:288.727587pt;}
.x11_c00053{left:297.602387pt;}
.x6b_c00053{left:299.485587pt;}
.xa_c00053{left:306.741187pt;}
.x3a_c00053{left:308.536387pt;}
.x27_c00053{left:317.886387pt;}
.x59_c00053{left:319.131587pt;}
.x2f_c00053{left:328.147187pt;}
.xb_c00053{left:337.422387pt;}
.x56_c00053{left:338.328787pt;}
.x61_c00053{left:346.825187pt;}
.x3f_c00053{left:348.250787pt;}
.x28_c00053{left:356.487587pt;}
.x22_c00053{left:357.481987pt;}
.x18_c00053{left:366.427187pt;}
.x49_c00053{left:367.945187pt;}
.x30_c00053{left:376.824387pt;}
.xc_c00053{left:386.293187pt;}
.x66_c00053{left:387.467987pt;}
.x19_c00053{left:396.426387pt;}
.x50_c00053{left:397.394387pt;}
.x4a_c00053{left:407.787187pt;}
.xd_c00053{left:414.972387pt;}
.x31_c00053{left:416.054787pt;}
.x12_c00053{left:425.611587pt;}
.x5c_c00053{left:426.874387pt;}
.x51_c00053{left:435.885587pt;}
.x4b_c00053{left:437.302387pt;}
.x36_c00053{left:446.097987pt;}
.x23_c00053{left:455.390787pt;}
.x65_c00053{left:456.420387pt;}
.x13_c00053{left:465.171987pt;}
.x4c_c00053{left:466.131187pt;}
.x2b_c00053{left:475.186387pt;}
.x24_c00053{left:483.973187pt;}
.x29_c00053{left:485.064387pt;}
.x67_c00053{left:486.349187pt;}
.x14_c00053{left:493.230787pt;}
.x2c_c00053{left:495.430787pt;}
.x1a_c00053{left:504.169187pt;}
.x40_c00053{left:505.365987pt;}
.xe_c00053{left:513.875587pt;}
.x5d_c00053{left:515.859987pt;}
.x3b_c00053{left:523.634787pt;}
.x37_c00053{left:533.961587pt;}
.x45_c00053{left:535.149587pt;}
.x42_c00053{left:544.217987pt;}
.x32_c00053{left:553.915587pt;}
.x57_c00053{left:555.156387pt;}
.x2_c00053{left:563.357987pt;}
.x25_c00053{left:573.552787pt;}
.x52_c00053{left:574.485587pt;}
.x15_c00053{left:582.563987pt;}
.x3c_c00053{left:583.531987pt;}
.x1f_c00053{left:593.418787pt;}
.x46_c00053{left:594.439587pt;}
.x5a_c00053{left:595.860787pt;}
.x3_c00053{left:598.500787pt;}
.x4_c00053{left:599.891187pt;}
.x4d_c00053{left:613.126387pt;}
.x6c_c00053{left:644.674387pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eb8deb5833c63292d720c446.woff2')format("woff");}.ff1_c00054{font-family:ff1_c00054;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00054;src:url('chunks/assets/font_e4aad962c92b41d4a7188170.woff2')format("woff");}.ff2_c00054{font-family:ff2_c00054;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00054;src:url('chunks/assets/font_01e02d75b82133263e8f08b3.woff2')format("woff");}.ff3_c00054{font-family:ff3_c00054;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00054;src:url('chunks/assets/font_1e79a4005df36fd9faf7f2f4.woff2')format("woff");}.ff4_c00054{font-family:ff4_c00054;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00054;src:url('chunks/assets/font_98311fe06637fee0498295e5.woff2')format("woff");}.ff5_c00054{font-family:ff5_c00054;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00054;src:url('chunks/assets/font_24fd6177ffcd3c755f25393f.woff2')format("woff");}.ff6_c00054{font-family:ff6_c00054;line-height:1.435059;font-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_c00054{transform:matrix(0.203317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203317,0.000000,0.000000,0.250000,0,0);}
.m2a_c00054{transform:matrix(0.219908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219908,0.000000,0.000000,0.250000,0,0);}
.m7_c00054{transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);}
.m8e_c00054{transform:matrix(0.236992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236992,0.000000,0.000000,0.250000,0,0);}
.m70_c00054{transform:matrix(0.246419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246419,0.000000,0.000000,0.250000,0,0);}
.m0_c00054{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m34_c00054{transform:matrix(0.251153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251153,0.000000,0.000000,0.250000,0,0);}
.m7e_c00054{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.m10_c00054{transform:matrix(0.252169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252169,0.000000,0.000000,0.250000,0,0);}
.m48_c00054{transform:matrix(0.252848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252848,0.000000,0.000000,0.250000,0,0);}
.m2e_c00054{transform:matrix(0.254117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254117,0.000000,0.000000,0.250000,0,0);}
.m66_c00054{transform:matrix(0.257620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257620,0.000000,0.000000,0.250000,0,0);}
.m58_c00054{transform:matrix(0.258139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258139,0.000000,0.000000,0.250000,0,0);}
.m9f_c00054{transform:matrix(0.260818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260818,0.000000,0.000000,0.250000,0,0);}
.m1a_c00054{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m3d_c00054{transform:matrix(0.261057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261057,0.000000,0.000000,0.250000,0,0);}
.ma7_c00054{transform:matrix(0.261179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261179,0.000000,0.000000,0.250000,0,0);}
.m17_c00054{transform:matrix(0.261836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261836,0.000000,0.000000,0.250000,0,0);}
.m54_c00054{transform:matrix(0.262289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262289,0.000000,0.000000,0.250000,0,0);}
.m4c_c00054{transform:matrix(0.262586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262586,0.000000,0.000000,0.250000,0,0);}
.m6d_c00054{transform:matrix(0.262611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262611,0.000000,0.000000,0.250000,0,0);}
.m1_c00054{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m7a_c00054{transform:matrix(0.263452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263452,0.000000,0.000000,0.250000,0,0);}
.m4a_c00054{transform:matrix(0.263764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263764,0.000000,0.000000,0.250000,0,0);}
.m4_c00054{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m3a_c00054{transform:matrix(0.265756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265756,0.000000,0.000000,0.250000,0,0);}
.m43_c00054{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m82_c00054{transform:matrix(0.266660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266660,0.000000,0.000000,0.250000,0,0);}
.m73_c00054{transform:matrix(0.267506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267506,0.000000,0.000000,0.250000,0,0);}
.m35_c00054{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m85_c00054{transform:matrix(0.268450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268450,0.000000,0.000000,0.250000,0,0);}
.ma5_c00054{transform:matrix(0.268518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268518,0.000000,0.000000,0.250000,0,0);}
.m5c_c00054{transform:matrix(0.268658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268658,0.000000,0.000000,0.250000,0,0);}
.m6_c00054{transform:matrix(0.269857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269857,0.000000,0.000000,0.250000,0,0);}
.m71_c00054{transform:matrix(0.270112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270112,0.000000,0.000000,0.250000,0,0);}
.m32_c00054{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m1d_c00054{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m59_c00054{transform:matrix(0.272719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272719,0.000000,0.000000,0.250000,0,0);}
.m36_c00054{transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);}
.m64_c00054{transform:matrix(0.273069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273069,0.000000,0.000000,0.250000,0,0);}
.m2d_c00054{transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);}
.m24_c00054{transform:matrix(0.273682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273682,0.000000,0.000000,0.250000,0,0);}
.m88_c00054{transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);}
.m7d_c00054{transform:matrix(0.274348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274348,0.000000,0.000000,0.250000,0,0);}
.m98_c00054{transform:matrix(0.275566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275566,0.000000,0.000000,0.250000,0,0);}
.m3f_c00054{transform:matrix(0.276265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276265,0.000000,0.000000,0.250000,0,0);}
.m9e_c00054{transform:matrix(0.277119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277119,0.000000,0.000000,0.250000,0,0);}
.m7c_c00054{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.ma4_c00054{transform:matrix(0.278962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278962,0.000000,0.000000,0.250000,0,0);}
.ma0_c00054{transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);}
.m27_c00054{transform:matrix(0.279677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279677,0.000000,0.000000,0.250000,0,0);}
.m1e_c00054{transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);}
.m8a_c00054{transform:matrix(0.280102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280102,0.000000,0.000000,0.250000,0,0);}
.m56_c00054{transform:matrix(0.280329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280329,0.000000,0.000000,0.250000,0,0);}
.m81_c00054{transform:matrix(0.280356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280356,0.000000,0.000000,0.250000,0,0);}
.m6a_c00054{transform:matrix(0.280475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280475,0.000000,0.000000,0.250000,0,0);}
.m37_c00054{transform:matrix(0.280588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280588,0.000000,0.000000,0.250000,0,0);}
.m47_c00054{transform:matrix(0.280783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280783,0.000000,0.000000,0.250000,0,0);}
.m5d_c00054{transform:matrix(0.281129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281129,0.000000,0.000000,0.250000,0,0);}
.m19_c00054{transform:matrix(0.281385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281385,0.000000,0.000000,0.250000,0,0);}
.m84_c00054{transform:matrix(0.282086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282086,0.000000,0.000000,0.250000,0,0);}
.m12_c00054{transform:matrix(0.282254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282254,0.000000,0.000000,0.250000,0,0);}
.m45_c00054{transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);}
.md_c00054{transform:matrix(0.283223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283223,0.000000,0.000000,0.250000,0,0);}
.m95_c00054{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m2f_c00054{transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);}
.ma2_c00054{transform:matrix(0.284023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284023,0.000000,0.000000,0.250000,0,0);}
.m9a_c00054{transform:matrix(0.287568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287568,0.000000,0.000000,0.250000,0,0);}
.m1f_c00054{transform:matrix(0.288122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288122,0.000000,0.000000,0.250000,0,0);}
.m8f_c00054{transform:matrix(0.288350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288350,0.000000,0.000000,0.250000,0,0);}
.m20_c00054{transform:matrix(0.288484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288484,0.000000,0.000000,0.250000,0,0);}
.m6b_c00054{transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);}
.m4d_c00054{transform:matrix(0.288685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288685,0.000000,0.000000,0.250000,0,0);}
.m90_c00054{transform:matrix(0.289122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289122,0.000000,0.000000,0.250000,0,0);}
.m79_c00054{transform:matrix(0.289278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289278,0.000000,0.000000,0.250000,0,0);}
.mf_c00054{transform:matrix(0.291460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291460,0.000000,0.000000,0.250000,0,0);}
.m72_c00054{transform:matrix(0.293496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293496,0.000000,0.000000,0.250000,0,0);}
.ma_c00054{transform:matrix(0.293842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293842,0.000000,0.000000,0.250000,0,0);}
.ma6_c00054{transform:matrix(0.295116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295116,0.000000,0.000000,0.250000,0,0);}
.m38_c00054{transform:matrix(0.295472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295472,0.000000,0.000000,0.250000,0,0);}
.m60_c00054{transform:matrix(0.295735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295735,0.000000,0.000000,0.250000,0,0);}
.m68_c00054{transform:matrix(0.295857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295857,0.000000,0.000000,0.250000,0,0);}
.m97_c00054{transform:matrix(0.296055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296055,0.000000,0.000000,0.250000,0,0);}
.m30_c00054{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m5_c00054{transform:matrix(0.297112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297112,0.000000,0.000000,0.250000,0,0);}
.ma3_c00054{transform:matrix(0.298499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298499,0.000000,0.000000,0.250000,0,0);}
.m87_c00054{transform:matrix(0.298630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298630,0.000000,0.000000,0.250000,0,0);}
.m40_c00054{transform:matrix(0.299729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299729,0.000000,0.000000,0.250000,0,0);}
.m13_c00054{transform:matrix(0.300091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300091,0.000000,0.000000,0.250000,0,0);}
.m51_c00054{transform:matrix(0.300499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300499,0.000000,0.000000,0.250000,0,0);}
.m77_c00054{transform:matrix(0.300518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300518,0.000000,0.000000,0.250000,0,0);}
.m9b_c00054{transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);}
.m8d_c00054{transform:matrix(0.301042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301042,0.000000,0.000000,0.250000,0,0);}
.m3_c00054{transform:matrix(0.302306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302306,0.000000,0.000000,0.250000,0,0);}
.m94_c00054{transform:matrix(0.302359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302359,0.000000,0.000000,0.250000,0,0);}
.m52_c00054{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m49_c00054{transform:matrix(0.303630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303630,0.000000,0.000000,0.250000,0,0);}
.m74_c00054{transform:matrix(0.303942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303942,0.000000,0.000000,0.250000,0,0);}
.m5a_c00054{transform:matrix(0.304946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304946,0.000000,0.000000,0.250000,0,0);}
.m31_c00054{transform:matrix(0.306198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306198,0.000000,0.000000,0.250000,0,0);}
.m16_c00054{transform:matrix(0.306230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306230,0.000000,0.000000,0.250000,0,0);}
.m5f_c00054{transform:matrix(0.306275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306275,0.000000,0.000000,0.250000,0,0);}
.m92_c00054{transform:matrix(0.306386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306386,0.000000,0.000000,0.250000,0,0);}
.m86_c00054{transform:matrix(0.306544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306544,0.000000,0.000000,0.250000,0,0);}
.m62_c00054{transform:matrix(0.306954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306954,0.000000,0.000000,0.250000,0,0);}
.m55_c00054{transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);}
.mc_c00054{transform:matrix(0.308057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308057,0.000000,0.000000,0.250000,0,0);}
.m26_c00054{transform:matrix(0.308088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308088,0.000000,0.000000,0.250000,0,0);}
.m53_c00054{transform:matrix(0.308225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308225,0.000000,0.000000,0.250000,0,0);}
.m29_c00054{transform:matrix(0.308362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308362,0.000000,0.000000,0.250000,0,0);}
.m6e_c00054{transform:matrix(0.308564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308564,0.000000,0.000000,0.250000,0,0);}
.m4b_c00054{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m3c_c00054{transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);}
.m3b_c00054{transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);}
.m61_c00054{transform:matrix(0.309240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309240,0.000000,0.000000,0.250000,0,0);}
.m96_c00054{transform:matrix(0.309929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309929,0.000000,0.000000,0.250000,0,0);}
.m57_c00054{transform:matrix(0.309963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309963,0.000000,0.000000,0.250000,0,0);}
.m5b_c00054{transform:matrix(0.310698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310698,0.000000,0.000000,0.250000,0,0);}
.m9_c00054{transform:matrix(0.311760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311760,0.000000,0.000000,0.250000,0,0);}
.ma1_c00054{transform:matrix(0.312229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312229,0.000000,0.000000,0.250000,0,0);}
.m50_c00054{transform:matrix(0.312232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312232,0.000000,0.000000,0.250000,0,0);}
.m46_c00054{transform:matrix(0.312380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312380,0.000000,0.000000,0.250000,0,0);}
.m67_c00054{transform:matrix(0.312452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312452,0.000000,0.000000,0.250000,0,0);}
.m2c_c00054{transform:matrix(0.313301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313301,0.000000,0.000000,0.250000,0,0);}
.m44_c00054{transform:matrix(0.313598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313598,0.000000,0.000000,0.250000,0,0);}
.m28_c00054{transform:matrix(0.313650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313650,0.000000,0.000000,0.250000,0,0);}
.m25_c00054{transform:matrix(0.313779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313779,0.000000,0.000000,0.250000,0,0);}
.m15_c00054{transform:matrix(0.315009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315009,0.000000,0.000000,0.250000,0,0);}
.m23_c00054{transform:matrix(0.315232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315232,0.000000,0.000000,0.250000,0,0);}
.m22_c00054{transform:matrix(0.315828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315828,0.000000,0.000000,0.250000,0,0);}
.m21_c00054{transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);}
.m14_c00054{transform:matrix(0.317571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317571,0.000000,0.000000,0.250000,0,0);}
.m91_c00054{transform:matrix(0.317787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317787,0.000000,0.000000,0.250000,0,0);}
.m89_c00054{transform:matrix(0.318195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318195,0.000000,0.000000,0.250000,0,0);}
.m78_c00054{transform:matrix(0.319222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319222,0.000000,0.000000,0.250000,0,0);}
.m2b_c00054{transform:matrix(0.320441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320441,0.000000,0.000000,0.250000,0,0);}
.m7f_c00054{transform:matrix(0.320577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320577,0.000000,0.000000,0.250000,0,0);}
.m8_c00054{transform:matrix(0.320985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320985,0.000000,0.000000,0.250000,0,0);}
.m63_c00054{transform:matrix(0.321032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321032,0.000000,0.000000,0.250000,0,0);}
.m69_c00054{transform:matrix(0.321402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321402,0.000000,0.000000,0.250000,0,0);}
.m6f_c00054{transform:matrix(0.323918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323918,0.000000,0.000000,0.250000,0,0);}
.m3e_c00054{transform:matrix(0.324242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324242,0.000000,0.000000,0.250000,0,0);}
.m93_c00054{transform:matrix(0.324908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324908,0.000000,0.000000,0.250000,0,0);}
.me_c00054{transform:matrix(0.327251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327251,0.000000,0.000000,0.250000,0,0);}
.m8b_c00054{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.m4e_c00054{transform:matrix(0.329876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329876,0.000000,0.000000,0.250000,0,0);}
.m76_c00054{transform:matrix(0.330111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330111,0.000000,0.000000,0.250000,0,0);}
.m42_c00054{transform:matrix(0.333337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333337,0.000000,0.000000,0.250000,0,0);}
.m5e_c00054{transform:matrix(0.334506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334506,0.000000,0.000000,0.250000,0,0);}
.m83_c00054{transform:matrix(0.336157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336157,0.000000,0.000000,0.250000,0,0);}
.m11_c00054{transform:matrix(0.336403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336403,0.000000,0.000000,0.250000,0,0);}
.m8c_c00054{transform:matrix(0.338003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338003,0.000000,0.000000,0.250000,0,0);}
.m9c_c00054{transform:matrix(0.338480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338480,0.000000,0.000000,0.250000,0,0);}
.m65_c00054{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m6c_c00054{transform:matrix(0.341441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341441,0.000000,0.000000,0.250000,0,0);}
.m1c_c00054{transform:matrix(0.341580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341580,0.000000,0.000000,0.250000,0,0);}
.mb_c00054{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.m75_c00054{transform:matrix(0.344474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344474,0.000000,0.000000,0.250000,0,0);}
.m33_c00054{transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);}
.m99_c00054{transform:matrix(0.346851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346851,0.000000,0.000000,0.250000,0,0);}
.m4f_c00054{transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);}
.m39_c00054{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m80_c00054{transform:matrix(0.350446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350446,0.000000,0.000000,0.250000,0,0);}
.m7b_c00054{transform:matrix(0.353109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353109,0.000000,0.000000,0.250000,0,0);}
.m9d_c00054{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m2_c00054{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m1b_c00054{transform:matrix(0.361926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361926,0.000000,0.000000,0.250000,0,0);}
.m18_c00054{transform:matrix(0.373973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373973,0.000000,0.000000,0.250000,0,0);}
.v0_c00054{vertical-align:0.000000px;}
.lse_c00054{letter-spacing:-2.882880px;}
.ls5_c00054{letter-spacing:-2.744280px;}
.ls3_c00054{letter-spacing:0.000000px;}
.lsc_c00054{letter-spacing:1.779153px;}
.lsd_c00054{letter-spacing:2.132698px;}
.lsf_c00054{letter-spacing:2.258150px;}
.ls8_c00054{letter-spacing:2.618827px;}
.ls2_c00054{letter-spacing:3.054051px;}
.ls6_c00054{letter-spacing:3.112798px;}
.lsb_c00054{letter-spacing:3.177900px;}
.ls0_c00054{letter-spacing:3.489156px;}
.lsa_c00054{letter-spacing:3.603610px;}
.ls4_c00054{letter-spacing:3.920400px;}
.ls1_c00054{letter-spacing:9.330552px;}
.ls7_c00054{letter-spacing:51.321798px;}
.ls9_c00054{letter-spacing:52.747398px;}
.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;}
}
.ws1_c00054{word-spacing:-21.734698px;}
.ws0_c00054{word-spacing:-19.602000px;}
.ws2_c00054{word-spacing:0.000000px;}
._9_c00054{width:1.097712px;}
._3_c00054{width:5.802192px;}
._4_c00054{width:6.868541px;}
._7_c00054{width:9.330552px;}
._2_c00054{width:12.623688px;}
._5_c00054{width:23.679216px;}
._0_c00054{width:28.866816px;}
._8_c00054{width:32.251032px;}
._1_c00054{width:33.765336px;}
._6_c00054{width:35.440416px;}
.fc0_c00054{color:transparent;}
.fs6_c00054{font-size:22.176000px;}
.fs10_c00054{font-size:26.928000px;}
.fs1_c00054{font-size:27.720000px;}
.fs11_c00054{font-size:32.472000px;}
.fsf_c00054{font-size:44.352000px;}
.fs2_c00054{font-size:48.114000px;}
.fs5_c00054{font-size:51.321798px;}
.fs8_c00054{font-size:52.747398px;}
.fs13_c00054{font-size:62.568000px;}
.fsb_c00054{font-size:63.558000px;}
.fs7_c00054{font-size:64.548000px;}
.fs9_c00054{font-size:72.072198px;}
.fsa_c00054{font-size:74.448000px;}
.fsc_c00054{font-size:76.032198px;}
.fs3_c00054{font-size:78.408000px;}
.fs4_c00054{font-size:78.804000px;}
.fsd_c00054{font-size:82.368000px;}
.fse_c00054{font-size:88.704000px;}
.fs0_c00054{font-size:90.090000px;}
.fs12_c00054{font-size:93.456198px;}
.y0_c00054{bottom:0.000000px;}
.y1_c00054{bottom:76.500000px;}
.y21_c00054{bottom:126.790335px;}
.y1f_c00054{bottom:132.492735px;}
.y20_c00054{bottom:136.413135px;}
.y22_c00054{bottom:136.769535px;}
.y1d_c00054{bottom:200.203785px;}
.y1e_c00054{bottom:204.129135px;}
.y1c_c00054{bottom:232.641135px;}
.y1b_c00054{bottom:265.073535px;}
.y1a_c00054{bottom:297.149535px;}
.y19_c00054{bottom:316.746585px;}
.y18_c00054{bottom:329.576985px;}
.y17_c00054{bottom:329.938335px;}
.y16_c00054{bottom:362.370735px;}
.y15_c00054{bottom:395.510985px;}
.y14_c00054{bottom:429.012585px;}
.y13_c00054{bottom:461.449935px;}
.y23_c00054{bottom:486.749385px;}
.y12_c00054{bottom:493.882335px;}
.y11_c00054{bottom:526.314735px;}
.y10_c00054{bottom:558.747135px;}
.yf_c00054{bottom:590.818185px;}
.ye_c00054{bottom:623.250585px;}
.yd_c00054{bottom:656.039385px;}
.yc_c00054{bottom:720.909135px;}
.yb_c00054{bottom:753.341535px;}
.ya_c00054{bottom:768.310335px;}
.y9_c00054{bottom:786.130335px;}
.y8_c00054{bottom:819.626985px;}
.y7_c00054{bottom:852.777135px;}
.y6_c00054{bottom:885.204585px;}
.y5_c00054{bottom:917.280585px;}
.y4_c00054{bottom:986.783535px;}
.y3_c00054{bottom:1002.460185px;}
.y2_c00054{bottom:1078.016985px;}
.h8_c00054{height:23.128875px;}
.h3_c00054{height:28.911094px;}
.h12_c00054{height:33.803859px;}
.h7_c00054{height:34.180317px;}
.ha_c00054{height:35.129767px;}
.h11_c00054{height:46.257750px;}
.h4_c00054{height:47.996534px;}
.h14_c00054{height:65.256469px;}
.hd_c00054{height:66.289008px;}
.h9_c00054{height:67.321547px;}
.hb_c00054{height:72.635262px;}
.hc_c00054{height:73.066641px;}
.he_c00054{height:74.621444px;}
.h5_c00054{height:76.953164px;}
.h6_c00054{height:77.341816px;}
.hf_c00054{height:83.011500px;}
.h2_c00054{height:88.418408px;}
.h10_c00054{height:92.515500px;}
.h13_c00054{height:94.186325px;}
.h1_c00054{height:1110.000000px;}
.h0_c00054{height:1263.000000px;}
.w1_c00054{width:733.500000px;}
.w0_c00054{width:892.500000px;}
.x0_c00054{left:0.000000px;}
.x45_c00054{left:52.781385px;}
.x5_c00054{left:54.340635px;}
.x60_c00054{left:55.721685px;}
.x1_c00054{left:79.500000px;}
.x4_c00054{left:86.055285px;}
.x6_c00054{left:87.079935px;}
.x11_c00054{left:88.475835px;}
.x54_c00054{left:97.781835px;}
.x30_c00054{left:108.508485px;}
.x46_c00054{left:110.236035px;}
.x7_c00054{left:119.492535px;}
.x23_c00054{left:120.942885px;}
.x28_c00054{left:130.610235px;}
.x4b_c00054{left:140.747835px;}
.x4e_c00054{left:141.975435px;}
.x63_c00054{left:143.014935px;}
.x3c_c00054{left:151.786335px;}
.x8_c00054{left:163.755435px;}
.x2c_c00054{left:174.932535px;}
.x5e_c00054{left:176.199735px;}
.x31_c00054{left:185.723535px;}
.x3d_c00054{left:187.451085px;}
.x4f_c00054{left:196.346235px;}
.x12_c00054{left:197.608485px;}
.x3_c00054{left:204.479085px;}
.x4c_c00054{left:207.741135px;}
.x40_c00054{left:208.983585px;}
.x9_c00054{left:211.077435px;}
.x13_c00054{left:220.036935px;}
.x1a_c00054{left:229.491435px;}
.x24_c00054{left:231.758535px;}
.x61_c00054{left:240.757635px;}
.x56_c00054{left:242.232735px;}
.x1b_c00054{left:263.898885px;}
.x1c_c00054{left:274.541385px;}
.x57_c00054{left:275.655135px;}
.xa_c00054{left:285.282885px;}
.x48_c00054{left:286.485735px;}
.x58_c00054{left:297.722235px;}
.x2d_c00054{left:306.869835px;}
.x32_c00054{left:308.414235px;}
.x41_c00054{left:309.458685px;}
.x1d_c00054{left:318.952785px;}
.xb_c00054{left:329.283435px;}
.x36_c00054{left:330.347685px;}
.x29_c00054{left:341.910885px;}
.xc_c00054{left:363.116685px;}
.x3e_c00054{left:364.180935px;}
.x14_c00054{left:373.477035px;}
.x2e_c00054{left:375.061035px;}
.x25_c00054{left:386.144085px;}
.x4d_c00054{left:397.350885px;}
.x26_c00054{left:407.211285px;}
.x15_c00054{left:408.250785px;}
.x5f_c00054{left:409.285335px;}
.x16_c00054{left:418.863585px;}
.x37_c00054{left:419.977335px;}
.x62_c00054{left:428.951685px;}
.x50_c00054{left:430.208985px;}
.xd_c00054{left:440.638635px;}
.x42_c00054{left:442.445385px;}
.x2a_c00054{left:450.860385px;}
.x38_c00054{left:453.127485px;}
.x1e_c00054{left:463.279935px;}
.x17_c00054{left:473.823435px;}
.x33_c00054{left:474.882735px;}
.x39_c00054{left:485.005485px;}
.x47_c00054{left:486.233085px;}
.x1f_c00054{left:496.538985px;}
.xe_c00054{left:507.131985px;}
.x5c_c00054{left:508.389285px;}
.x34_c00054{left:518.373435px;}
.x2f_c00054{left:529.783185px;}
.x51_c00054{left:532.164135px;}
.x55_c00054{left:539.599035px;}
.x18_c00054{left:550.444485px;}
.x59_c00054{left:551.830485px;}
.x52_c00054{left:553.924335px;}
.x27_c00054{left:560.869185px;}
.x35_c00054{left:562.844235px;}
.x2b_c00054{left:564.111435px;}
.x3a_c00054{left:573.887685px;}
.x20_c00054{left:584.272785px;}
.x49_c00054{left:585.643935px;}
.x43_c00054{left:596.058735px;}
.xf_c00054{left:606.725985px;}
.x21_c00054{left:617.442735px;}
.x5d_c00054{left:619.155435px;}
.x2_c00054{left:627.362535px;}
.x53_c00054{left:629.832585px;}
.x3b_c00054{left:638.678235px;}
.x10_c00054{left:639.871185px;}
.x4a_c00054{left:641.262135px;}
.x22_c00054{left:649.370235px;}
.x19_c00054{left:651.592785px;}
.x5a_c00054{left:662.512485px;}
.x44_c00054{left:670.699785px;}
.x3f_c00054{left:672.843135px;}
.x5b_c00054{left:676.466535px;}
.x64_c00054{left:726.327885px;}
@media print{
.v0_c00054{vertical-align:0.000000pt;}
.lse_c00054{letter-spacing:-2.562560pt;}
.ls5_c00054{letter-spacing:-2.439360pt;}
.ls3_c00054{letter-spacing:0.000000pt;}
.lsc_c00054{letter-spacing:1.581470pt;}
.lsd_c00054{letter-spacing:1.895731pt;}
.lsf_c00054{letter-spacing:2.007245pt;}
.ls8_c00054{letter-spacing:2.327846pt;}
.ls2_c00054{letter-spacing:2.714712pt;}
.ls6_c00054{letter-spacing:2.766931pt;}
.lsb_c00054{letter-spacing:2.824800pt;}
.ls0_c00054{letter-spacing:3.101472pt;}
.lsa_c00054{letter-spacing:3.203209pt;}
.ls4_c00054{letter-spacing:3.484800pt;}
.ls1_c00054{letter-spacing:8.293824pt;}
.ls7_c00054{letter-spacing:45.619376pt;}
.ls9_c00054{letter-spacing:46.886576pt;}
.ws1_c00054{word-spacing:-19.319731pt;}
.ws0_c00054{word-spacing:-17.424000pt;}
.ws2_c00054{word-spacing:0.000000pt;}
._9_c00054{width:0.975744pt;}
._3_c00054{width:5.157504pt;}
._4_c00054{width:6.105370pt;}
._7_c00054{width:8.293824pt;}
._2_c00054{width:11.221056pt;}
._5_c00054{width:21.048192pt;}
._0_c00054{width:25.659392pt;}
._8_c00054{width:28.667584pt;}
._1_c00054{width:30.013632pt;}
._6_c00054{width:31.502592pt;}
.fs6_c00054{font-size:19.712000pt;}
.fs10_c00054{font-size:23.936000pt;}
.fs1_c00054{font-size:24.640000pt;}
.fs11_c00054{font-size:28.864000pt;}
.fsf_c00054{font-size:39.424000pt;}
.fs2_c00054{font-size:42.768000pt;}
.fs5_c00054{font-size:45.619376pt;}
.fs8_c00054{font-size:46.886576pt;}
.fs13_c00054{font-size:55.616000pt;}
.fsb_c00054{font-size:56.496000pt;}
.fs7_c00054{font-size:57.376000pt;}
.fs9_c00054{font-size:64.064176pt;}
.fsa_c00054{font-size:66.176000pt;}
.fsc_c00054{font-size:67.584176pt;}
.fs3_c00054{font-size:69.696000pt;}
.fs4_c00054{font-size:70.048000pt;}
.fsd_c00054{font-size:73.216000pt;}
.fse_c00054{font-size:78.848000pt;}
.fs0_c00054{font-size:80.080000pt;}
.fs12_c00054{font-size:83.072176pt;}
.y0_c00054{bottom:0.000000pt;}
.y1_c00054{bottom:68.000000pt;}
.y21_c00054{bottom:112.702520pt;}
.y1f_c00054{bottom:117.771320pt;}
.y20_c00054{bottom:121.256120pt;}
.y22_c00054{bottom:121.572920pt;}
.y1d_c00054{bottom:177.958920pt;}
.y1e_c00054{bottom:181.448120pt;}
.y1c_c00054{bottom:206.792120pt;}
.y1b_c00054{bottom:235.620920pt;}
.y1a_c00054{bottom:264.132920pt;}
.y19_c00054{bottom:281.552520pt;}
.y18_c00054{bottom:292.957320pt;}
.y17_c00054{bottom:293.278520pt;}
.y16_c00054{bottom:322.107320pt;}
.y15_c00054{bottom:351.565320pt;}
.y14_c00054{bottom:381.344520pt;}
.y13_c00054{bottom:410.177720pt;}
.y23_c00054{bottom:432.666120pt;}
.y12_c00054{bottom:439.006520pt;}
.y11_c00054{bottom:467.835320pt;}
.y10_c00054{bottom:496.664120pt;}
.yf_c00054{bottom:525.171720pt;}
.ye_c00054{bottom:554.000520pt;}
.yd_c00054{bottom:583.146120pt;}
.yc_c00054{bottom:640.808120pt;}
.yb_c00054{bottom:669.636920pt;}
.ya_c00054{bottom:682.942520pt;}
.y9_c00054{bottom:698.782520pt;}
.y8_c00054{bottom:728.557320pt;}
.y7_c00054{bottom:758.024120pt;}
.y6_c00054{bottom:786.848520pt;}
.y5_c00054{bottom:815.360520pt;}
.y4_c00054{bottom:877.140920pt;}
.y3_c00054{bottom:891.075720pt;}
.y2_c00054{bottom:958.237320pt;}
.h8_c00054{height:20.559000pt;}
.h3_c00054{height:25.698750pt;}
.h12_c00054{height:30.047875pt;}
.h7_c00054{height:30.382504pt;}
.ha_c00054{height:31.226460pt;}
.h11_c00054{height:41.118000pt;}
.h4_c00054{height:42.663586pt;}
.h14_c00054{height:58.005750pt;}
.hd_c00054{height:58.923563pt;}
.h9_c00054{height:59.841375pt;}
.hb_c00054{height:64.564677pt;}
.hc_c00054{height:64.948125pt;}
.he_c00054{height:66.330173pt;}
.h5_c00054{height:68.402813pt;}
.h6_c00054{height:68.748281pt;}
.hf_c00054{height:73.788000pt;}
.h2_c00054{height:78.594141pt;}
.h10_c00054{height:82.236000pt;}
.h13_c00054{height:83.721177pt;}
.h1_c00054{height:986.666667pt;}
.h0_c00054{height:1122.666667pt;}
.w1_c00054{width:652.000000pt;}
.w0_c00054{width:793.333333pt;}
.x0_c00054{left:0.000000pt;}
.x45_c00054{left:46.916787pt;}
.x5_c00054{left:48.302787pt;}
.x60_c00054{left:49.530387pt;}
.x1_c00054{left:70.666667pt;}
.x4_c00054{left:76.493587pt;}
.x6_c00054{left:77.404387pt;}
.x11_c00054{left:78.645187pt;}
.x54_c00054{left:86.917187pt;}
.x30_c00054{left:96.451987pt;}
.x46_c00054{left:97.987587pt;}
.x7_c00054{left:106.215587pt;}
.x23_c00054{left:107.504787pt;}
.x28_c00054{left:116.097987pt;}
.x4b_c00054{left:125.109187pt;}
.x4e_c00054{left:126.200387pt;}
.x63_c00054{left:127.124387pt;}
.x3c_c00054{left:134.921187pt;}
.x8_c00054{left:145.560387pt;}
.x2c_c00054{left:155.495587pt;}
.x5e_c00054{left:156.621987pt;}
.x31_c00054{left:165.087587pt;}
.x3d_c00054{left:166.623187pt;}
.x4f_c00054{left:174.529987pt;}
.x12_c00054{left:175.651987pt;}
.x3_c00054{left:181.759187pt;}
.x4c_c00054{left:184.658787pt;}
.x40_c00054{left:185.763187pt;}
.x9_c00054{left:187.624387pt;}
.x13_c00054{left:195.588387pt;}
.x1a_c00054{left:203.992387pt;}
.x24_c00054{left:206.007587pt;}
.x61_c00054{left:214.006787pt;}
.x56_c00054{left:215.317987pt;}
.x1b_c00054{left:234.576787pt;}
.x1c_c00054{left:244.036787pt;}
.x57_c00054{left:245.026787pt;}
.xa_c00054{left:253.584787pt;}
.x48_c00054{left:254.653987pt;}
.x58_c00054{left:264.641987pt;}
.x2d_c00054{left:272.773187pt;}
.x32_c00054{left:274.145987pt;}
.x41_c00054{left:275.074387pt;}
.x1d_c00054{left:283.513587pt;}
.xb_c00054{left:292.696387pt;}
.x36_c00054{left:293.642387pt;}
.x29_c00054{left:303.920787pt;}
.xc_c00054{left:322.770387pt;}
.x3e_c00054{left:323.716387pt;}
.x14_c00054{left:331.979587pt;}
.x2e_c00054{left:333.387587pt;}
.x25_c00054{left:343.239187pt;}
.x4d_c00054{left:353.200787pt;}
.x26_c00054{left:361.965587pt;}
.x15_c00054{left:362.889587pt;}
.x5f_c00054{left:363.809187pt;}
.x16_c00054{left:372.323187pt;}
.x37_c00054{left:373.313187pt;}
.x62_c00054{left:381.290387pt;}
.x50_c00054{left:382.407987pt;}
.xd_c00054{left:391.678787pt;}
.x42_c00054{left:393.284787pt;}
.x2a_c00054{left:400.764787pt;}
.x38_c00054{left:402.779987pt;}
.x1e_c00054{left:411.804387pt;}
.x17_c00054{left:421.176387pt;}
.x33_c00054{left:422.117987pt;}
.x39_c00054{left:431.115987pt;}
.x47_c00054{left:432.207187pt;}
.x1f_c00054{left:441.367987pt;}
.xe_c00054{left:450.783987pt;}
.x5c_c00054{left:451.901587pt;}
.x34_c00054{left:460.776387pt;}
.x2f_c00054{left:470.918387pt;}
.x51_c00054{left:473.034787pt;}
.x55_c00054{left:479.643587pt;}
.x18_c00054{left:489.283987pt;}
.x59_c00054{left:490.515987pt;}
.x52_c00054{left:492.377187pt;}
.x27_c00054{left:498.550387pt;}
.x35_c00054{left:500.305987pt;}
.x2b_c00054{left:501.432387pt;}
.x3a_c00054{left:510.122387pt;}
.x20_c00054{left:519.353587pt;}
.x49_c00054{left:520.572387pt;}
.x43_c00054{left:529.829987pt;}
.xf_c00054{left:539.311987pt;}
.x21_c00054{left:548.837987pt;}
.x5d_c00054{left:550.360387pt;}
.x2_c00054{left:557.655587pt;}
.x53_c00054{left:559.851187pt;}
.x3b_c00054{left:567.713987pt;}
.x10_c00054{left:568.774387pt;}
.x4a_c00054{left:570.010787pt;}
.x22_c00054{left:577.217987pt;}
.x19_c00054{left:579.193587pt;}
.x5a_c00054{left:588.899987pt;}
.x44_c00054{left:596.177587pt;}
.x3f_c00054{left:598.082787pt;}
.x5b_c00054{left:601.303587pt;}
.x64_c00054{left:645.624787pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a68806377dda3896ee41b6db.woff2')format("woff");}.ff1_c00055{font-family:ff1_c00055;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00055;src:url('chunks/assets/font_2d1590abe9c4aadb0fd05370.woff2')format("woff");}.ff2_c00055{font-family:ff2_c00055;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00055;src:url('chunks/assets/font_4dca0e4b4b019aecc4e4042b.woff2')format("woff");}.ff3_c00055{font-family:ff3_c00055;line-height:0.666000;font-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_c00055{transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);}
.m0_c00055{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m35_c00055{transform:matrix(0.250919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250919,0.000000,0.000000,0.250000,0,0);}
.m7b_c00055{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.m54_c00055{transform:matrix(0.252205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252205,0.000000,0.000000,0.250000,0,0);}
.m6e_c00055{transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);}
.m1e_c00055{transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);}
.m1_c00055{transform:matrix(0.254344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254344,0.000000,0.000000,0.250000,0,0);}
.m91_c00055{transform:matrix(0.254868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254868,0.000000,0.000000,0.250000,0,0);}
.m25_c00055{transform:matrix(0.255604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255604,0.000000,0.000000,0.250000,0,0);}
.ma4_c00055{transform:matrix(0.256952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256952,0.000000,0.000000,0.250000,0,0);}
.ma6_c00055{transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);}
.m5_c00055{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m29_c00055{transform:matrix(0.259016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259016,0.000000,0.000000,0.250000,0,0);}
.m2f_c00055{transform:matrix(0.260098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260098,0.000000,0.000000,0.250000,0,0);}
.mf_c00055{transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);}
.m75_c00055{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m38_c00055{transform:matrix(0.261427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261427,0.000000,0.000000,0.250000,0,0);}
.m3a_c00055{transform:matrix(0.261492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261492,0.000000,0.000000,0.250000,0,0);}
.m88_c00055{transform:matrix(0.262899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262899,0.000000,0.000000,0.250000,0,0);}
.m19_c00055{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m95_c00055{transform:matrix(0.263917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263917,0.000000,0.000000,0.250000,0,0);}
.m2a_c00055{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m47_c00055{transform:matrix(0.266139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266139,0.000000,0.000000,0.250000,0,0);}
.m44_c00055{transform:matrix(0.266384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266384,0.000000,0.000000,0.250000,0,0);}
.m52_c00055{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.m2e_c00055{transform:matrix(0.267922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267922,0.000000,0.000000,0.250000,0,0);}
.m30_c00055{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.ma9_c00055{transform:matrix(0.268658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268658,0.000000,0.000000,0.250000,0,0);}
.m10_c00055{transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);}
.m7e_c00055{transform:matrix(0.269787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269787,0.000000,0.000000,0.250000,0,0);}
.m72_c00055{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m3b_c00055{transform:matrix(0.270922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270922,0.000000,0.000000,0.250000,0,0);}
.m9d_c00055{transform:matrix(0.270958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270958,0.000000,0.000000,0.250000,0,0);}
.m41_c00055{transform:matrix(0.271515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271515,0.000000,0.000000,0.250000,0,0);}
.m4a_c00055{transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);}
.m39_c00055{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m1a_c00055{transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);}
.m15_c00055{transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);}
.m2_c00055{transform:matrix(0.274261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274261,0.000000,0.000000,0.250000,0,0);}
.m5e_c00055{transform:matrix(0.276280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276280,0.000000,0.000000,0.250000,0,0);}
.m3_c00055{transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);}
.mb_c00055{transform:matrix(0.277246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277246,0.000000,0.000000,0.250000,0,0);}
.maa_c00055{transform:matrix(0.277612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277612,0.000000,0.000000,0.250000,0,0);}
.m2d_c00055{transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);}
.m79_c00055{transform:matrix(0.278936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278936,0.000000,0.000000,0.250000,0,0);}
.m9a_c00055{transform:matrix(0.279057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279057,0.000000,0.000000,0.250000,0,0);}
.m56_c00055{transform:matrix(0.279663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279663,0.000000,0.000000,0.250000,0,0);}
.m60_c00055{transform:matrix(0.280308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280308,0.000000,0.000000,0.250000,0,0);}
.m85_c00055{transform:matrix(0.280503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280503,0.000000,0.000000,0.250000,0,0);}
.m59_c00055{transform:matrix(0.280631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280631,0.000000,0.000000,0.250000,0,0);}
.m3f_c00055{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.m6b_c00055{transform:matrix(0.282286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282286,0.000000,0.000000,0.250000,0,0);}
.m53_c00055{transform:matrix(0.282564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282564,0.000000,0.000000,0.250000,0,0);}
.m97_c00055{transform:matrix(0.283775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283775,0.000000,0.000000,0.250000,0,0);}
.m63_c00055{transform:matrix(0.283801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283801,0.000000,0.000000,0.250000,0,0);}
.m42_c00055{transform:matrix(0.283914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283914,0.000000,0.000000,0.250000,0,0);}
.m96_c00055{transform:matrix(0.283968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283968,0.000000,0.000000,0.250000,0,0);}
.m46_c00055{transform:matrix(0.284229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284229,0.000000,0.000000,0.250000,0,0);}
.m45_c00055{transform:matrix(0.284924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284924,0.000000,0.000000,0.250000,0,0);}
.m67_c00055{transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);}
.m33_c00055{transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);}
.m89_c00055{transform:matrix(0.286278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286278,0.000000,0.000000,0.250000,0,0);}
.m8e_c00055{transform:matrix(0.286857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286857,0.000000,0.000000,0.250000,0,0);}
.m69_c00055{transform:matrix(0.286902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286902,0.000000,0.000000,0.250000,0,0);}
.m7f_c00055{transform:matrix(0.287124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287124,0.000000,0.000000,0.250000,0,0);}
.m7c_c00055{transform:matrix(0.287251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287251,0.000000,0.000000,0.250000,0,0);}
.m1b_c00055{transform:matrix(0.287458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287458,0.000000,0.000000,0.250000,0,0);}
.m26_c00055{transform:matrix(0.288069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288069,0.000000,0.000000,0.250000,0,0);}
.m6a_c00055{transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);}
.m37_c00055{transform:matrix(0.288623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288623,0.000000,0.000000,0.250000,0,0);}
.m20_c00055{transform:matrix(0.288855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288855,0.000000,0.000000,0.250000,0,0);}
.m32_c00055{transform:matrix(0.289004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289004,0.000000,0.000000,0.250000,0,0);}
.m81_c00055{transform:matrix(0.289570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289570,0.000000,0.000000,0.250000,0,0);}
.m82_c00055{transform:matrix(0.290011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290011,0.000000,0.000000,0.250000,0,0);}
.m43_c00055{transform:matrix(0.290255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290255,0.000000,0.000000,0.250000,0,0);}
.ma_c00055{transform:matrix(0.290272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290272,0.000000,0.000000,0.250000,0,0);}
.m8b_c00055{transform:matrix(0.291209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291209,0.000000,0.000000,0.250000,0,0);}
.m65_c00055{transform:matrix(0.291725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291725,0.000000,0.000000,0.250000,0,0);}
.m93_c00055{transform:matrix(0.291795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291795,0.000000,0.000000,0.250000,0,0);}
.m7_c00055{transform:matrix(0.292821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292821,0.000000,0.000000,0.250000,0,0);}
.m18_c00055{transform:matrix(0.292836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292836,0.000000,0.000000,0.250000,0,0);}
.m1f_c00055{transform:matrix(0.293040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293040,0.000000,0.000000,0.250000,0,0);}
.m66_c00055{transform:matrix(0.293146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293146,0.000000,0.000000,0.250000,0,0);}
.m48_c00055{transform:matrix(0.293173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293173,0.000000,0.000000,0.250000,0,0);}
.m34_c00055{transform:matrix(0.293256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293256,0.000000,0.000000,0.250000,0,0);}
.m2c_c00055{transform:matrix(0.293313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293313,0.000000,0.000000,0.250000,0,0);}
.ma0_c00055{transform:matrix(0.293382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293382,0.000000,0.000000,0.250000,0,0);}
.m22_c00055{transform:matrix(0.294015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294015,0.000000,0.000000,0.250000,0,0);}
.m74_c00055{transform:matrix(0.294443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294443,0.000000,0.000000,0.250000,0,0);}
.m9c_c00055{transform:matrix(0.294787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294787,0.000000,0.000000,0.250000,0,0);}
.m6_c00055{transform:matrix(0.295186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295186,0.000000,0.000000,0.250000,0,0);}
.m7a_c00055{transform:matrix(0.295735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295735,0.000000,0.000000,0.250000,0,0);}
.ma1_c00055{transform:matrix(0.295851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295851,0.000000,0.000000,0.250000,0,0);}
.m73_c00055{transform:matrix(0.296291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296291,0.000000,0.000000,0.250000,0,0);}
.m94_c00055{transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);}
.m5c_c00055{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m40_c00055{transform:matrix(0.297367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297367,0.000000,0.000000,0.250000,0,0);}
.m9_c00055{transform:matrix(0.297682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297682,0.000000,0.000000,0.250000,0,0);}
.ma7_c00055{transform:matrix(0.298499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298499,0.000000,0.000000,0.250000,0,0);}
.ma3_c00055{transform:matrix(0.298694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298694,0.000000,0.000000,0.250000,0,0);}
.mab_c00055{transform:matrix(0.299520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299520,0.000000,0.000000,0.250000,0,0);}
.m21_c00055{transform:matrix(0.299881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299881,0.000000,0.000000,0.250000,0,0);}
.m58_c00055{transform:matrix(0.301385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301385,0.000000,0.000000,0.250000,0,0);}
.m4_c00055{transform:matrix(0.301729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301729,0.000000,0.000000,0.250000,0,0);}
.m36_c00055{transform:matrix(0.302241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302241,0.000000,0.000000,0.250000,0,0);}
.m4e_c00055{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m55_c00055{transform:matrix(0.304364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304364,0.000000,0.000000,0.250000,0,0);}
.m1d_c00055{transform:matrix(0.304377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304377,0.000000,0.000000,0.250000,0,0);}
.m8c_c00055{transform:matrix(0.304381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304381,0.000000,0.000000,0.250000,0,0);}
.m24_c00055{transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);}
.m7d_c00055{transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);}
.ma8_c00055{transform:matrix(0.305639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305639,0.000000,0.000000,0.250000,0,0);}
.m8a_c00055{transform:matrix(0.306235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306235,0.000000,0.000000,0.250000,0,0);}
.m14_c00055{transform:matrix(0.307084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307084,0.000000,0.000000,0.250000,0,0);}
.md_c00055{transform:matrix(0.307138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307138,0.000000,0.000000,0.250000,0,0);}
.m61_c00055{transform:matrix(0.307491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307491,0.000000,0.000000,0.250000,0,0);}
.m86_c00055{transform:matrix(0.307731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307731,0.000000,0.000000,0.250000,0,0);}
.m50_c00055{transform:matrix(0.308211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308211,0.000000,0.000000,0.250000,0,0);}
.m64_c00055{transform:matrix(0.308362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308362,0.000000,0.000000,0.250000,0,0);}
.ma5_c00055{transform:matrix(0.308951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308951,0.000000,0.000000,0.250000,0,0);}
.m83_c00055{transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);}
.m1c_c00055{transform:matrix(0.311154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311154,0.000000,0.000000,0.250000,0,0);}
.mc_c00055{transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);}
.m68_c00055{transform:matrix(0.312229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312229,0.000000,0.000000,0.250000,0,0);}
.me_c00055{transform:matrix(0.312813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312813,0.000000,0.000000,0.250000,0,0);}
.m70_c00055{transform:matrix(0.313344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313344,0.000000,0.000000,0.250000,0,0);}
.m11_c00055{transform:matrix(0.313352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313352,0.000000,0.000000,0.250000,0,0);}
.m3d_c00055{transform:matrix(0.314257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314257,0.000000,0.000000,0.250000,0,0);}
.m17_c00055{transform:matrix(0.316186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316186,0.000000,0.000000,0.250000,0,0);}
.m9b_c00055{transform:matrix(0.318020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318020,0.000000,0.000000,0.250000,0,0);}
.m12_c00055{transform:matrix(0.318082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318082,0.000000,0.000000,0.250000,0,0);}
.m6c_c00055{transform:matrix(0.319540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319540,0.000000,0.000000,0.250000,0,0);}
.m87_c00055{transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);}
.m13_c00055{transform:matrix(0.320979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320979,0.000000,0.000000,0.250000,0,0);}
.m31_c00055{transform:matrix(0.321349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321349,0.000000,0.000000,0.250000,0,0);}
.m57_c00055{transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);}
.m5a_c00055{transform:matrix(0.322548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322548,0.000000,0.000000,0.250000,0,0);}
.m80_c00055{transform:matrix(0.322619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322619,0.000000,0.000000,0.250000,0,0);}
.m3e_c00055{transform:matrix(0.323210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323210,0.000000,0.000000,0.250000,0,0);}
.m90_c00055{transform:matrix(0.323501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323501,0.000000,0.000000,0.250000,0,0);}
.m71_c00055{transform:matrix(0.324174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324174,0.000000,0.000000,0.250000,0,0);}
.m4f_c00055{transform:matrix(0.326354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326354,0.000000,0.000000,0.250000,0,0);}
.ma2_c00055{transform:matrix(0.326563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326563,0.000000,0.000000,0.250000,0,0);}
.m8f_c00055{transform:matrix(0.326875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326875,0.000000,0.000000,0.250000,0,0);}
.m3c_c00055{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m62_c00055{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.m49_c00055{transform:matrix(0.329785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329785,0.000000,0.000000,0.250000,0,0);}
.m4d_c00055{transform:matrix(0.329886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329886,0.000000,0.000000,0.250000,0,0);}
.m5f_c00055{transform:matrix(0.329979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329979,0.000000,0.000000,0.250000,0,0);}
.m5d_c00055{transform:matrix(0.330306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330306,0.000000,0.000000,0.250000,0,0);}
.m6d_c00055{transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);}
.m27_c00055{transform:matrix(0.331845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331845,0.000000,0.000000,0.250000,0,0);}
.m9f_c00055{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m8d_c00055{transform:matrix(0.333511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333511,0.000000,0.000000,0.250000,0,0);}
.m5b_c00055{transform:matrix(0.334425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334425,0.000000,0.000000,0.250000,0,0);}
.m98_c00055{transform:matrix(0.334551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334551,0.000000,0.000000,0.250000,0,0);}
.m76_c00055{transform:matrix(0.337357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337357,0.000000,0.000000,0.250000,0,0);}
.m9e_c00055{transform:matrix(0.337545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337545,0.000000,0.000000,0.250000,0,0);}
.m92_c00055{transform:matrix(0.338217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338217,0.000000,0.000000,0.250000,0,0);}
.m28_c00055{transform:matrix(0.338414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338414,0.000000,0.000000,0.250000,0,0);}
.m16_c00055{transform:matrix(0.338655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338655,0.000000,0.000000,0.250000,0,0);}
.m84_c00055{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m78_c00055{transform:matrix(0.340015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340015,0.000000,0.000000,0.250000,0,0);}
.m2b_c00055{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.m4b_c00055{transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);}
.m51_c00055{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m23_c00055{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m8_c00055{transform:matrix(0.359609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359609,0.000000,0.000000,0.250000,0,0);}
.m99_c00055{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m77_c00055{transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);}
.m4c_c00055{transform:matrix(0.381594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381594,0.000000,0.000000,0.250000,0,0);}
.v0_c00055{vertical-align:0.000000px;}
.lsc_c00055{letter-spacing:-2.744280px;}
.ls5_c00055{letter-spacing:-2.375762px;}
.lse_c00055{letter-spacing:-2.156220px;}
.ls9_c00055{letter-spacing:-1.897474px;}
.ls2_c00055{letter-spacing:0.000000px;}
.ls12_c00055{letter-spacing:0.588060px;}
.lsf_c00055{letter-spacing:0.705672px;}
.ls10_c00055{letter-spacing:1.042826px;}
.ls11_c00055{letter-spacing:1.246687px;}
.lsa_c00055{letter-spacing:1.591682px;}
.lsb_c00055{letter-spacing:1.623046px;}
.ls1_c00055{letter-spacing:2.705076px;}
.lsd_c00055{letter-spacing:3.112798px;}
.ls8_c00055{letter-spacing:3.323628px;}
.ls6_c00055{letter-spacing:3.653813px;}
.ls0_c00055{letter-spacing:3.740062px;}
.ls13_c00055{letter-spacing:3.841992px;}
.ls4_c00055{letter-spacing:3.920400px;}
.ls3_c00055{letter-spacing:4.375810px;}
.ls7_c00055{letter-spacing:29.937798px;}
.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:-19.602000px;}
.ws1_c00055{word-spacing:0.000000px;}
._0_c00055{margin-left:-11.761200px;}
._3_c00055{width:18.857124px;}
._1_c00055{width:25.367602px;}
._2_c00055{width:36.921456px;}
.fc0_c00055{color:transparent;}
.fs5_c00055{font-size:17.028000px;}
.fs9_c00055{font-size:22.176000px;}
.fs0_c00055{font-size:27.720000px;}
.fs4_c00055{font-size:29.937798px;}
.fs8_c00055{font-size:33.264000px;}
.fs7_c00055{font-size:33.660000px;}
.fsa_c00055{font-size:62.568000px;}
.fs3_c00055{font-size:64.548000px;}
.fs6_c00055{font-size:76.230000px;}
.fs2_c00055{font-size:78.408000px;}
.fs1_c00055{font-size:87.516198px;}
.y0_c00055{bottom:0.000000px;}
.y1_c00055{bottom:76.500000px;}
.y20_c00055{bottom:103.267935px;}
.y1f_c00055{bottom:140.689935px;}
.y1e_c00055{bottom:170.983935px;}
.y1d_c00055{bottom:208.400985px;}
.y1c_c00055{bottom:241.907535px;}
.y1b_c00055{bottom:274.339935px;}
.y1a_c00055{bottom:308.549385px;}
.y17_c00055{bottom:339.912585px;}
.y19_c00055{bottom:371.993535px;}
.y16_c00055{bottom:372.349935px;}
.y18_c00055{bottom:380.547135px;}
.y15_c00055{bottom:405.133785px;}
.y14_c00055{bottom:437.571135px;}
.y13_c00055{bottom:470.003535px;}
.y21_c00055{bottom:492.456735px;}
.y12_c00055{bottom:502.079535px;}
.y11_c00055{bottom:534.150585px;}
.y10_c00055{bottom:566.944335px;}
.yf_c00055{bottom:600.089535px;}
.ye_c00055{bottom:632.878335px;}
.yd_c00055{bottom:665.310735px;}
.yc_c00055{bottom:698.450985px;}
.yb_c00055{bottom:730.888335px;}
.ya_c00055{bottom:762.602985px;}
.y9_c00055{bottom:787.199535px;}
.y8_c00055{bottom:795.035385px;}
.y2_c00055{bottom:819.631935px;}
.y7_c00055{bottom:827.116335px;}
.y6_c00055{bottom:859.548735px;}
.y5_c00055{bottom:891.976185px;}
.y4_c00055{bottom:924.769935px;}
.y3_c00055{bottom:1073.383785px;}
.h7_c00055{height:17.759672px;}
.h6_c00055{height:19.938573px;}
.hb_c00055{height:23.128875px;}
.h2_c00055{height:28.911094px;}
.h9_c00055{height:33.035449px;}
.ha_c00055{height:34.693313px;}
.hc_c00055{height:65.256469px;}
.h5_c00055{height:67.321547px;}
.h8_c00055{height:74.815576px;}
.h4_c00055{height:76.953164px;}
.h3_c00055{height:85.892362px;}
.h1_c00055{height:1110.000000px;}
.h0_c00055{height:1263.000000px;}
.w1_c00055{width:733.500000px;}
.w0_c00055{width:892.500000px;}
.x0_c00055{left:0.000000px;}
.x2_c00055{left:44.455485px;}
.x20_c00055{left:48.509535px;}
.x4_c00055{left:49.850985px;}
.x52_c00055{left:51.128085px;}
.x57_c00055{left:61.696335px;}
.x37_c00055{left:71.477535px;}
.x5d_c00055{left:72.818985px;}
.x1_c00055{left:79.500000px;}
.x49_c00055{left:81.268635px;}
.x3d_c00055{left:82.832835px;}
.x28_c00055{left:93.420885px;}
.x40_c00055{left:104.815785px;}
.x26_c00055{left:115.285035px;}
.x5_c00055{left:125.105835px;}
.x1c_c00055{left:126.333435px;}
.x5e_c00055{left:127.407585px;}
.x21_c00055{left:137.025435px;}
.x53_c00055{left:138.069885px;}
.xe_c00055{left:148.034235px;}
.x4a_c00055{left:149.435085px;}
.x15_c00055{left:159.250935px;}
.x22_c00055{left:169.249935px;}
.x6_c00055{left:170.888385px;}
.x16_c00055{left:181.540785px;}
.x1d_c00055{left:191.356635px;}
.xf_c00055{left:192.376335px;}
.x42_c00055{left:202.766385px;}
.x4e_c00055{left:203.904885px;}
.x7_c00055{left:215.428485px;}
.x38_c00055{left:226.100685px;}
.x58_c00055{left:239.228085px;}
.x31_c00055{left:247.252035px;}
.x44_c00055{left:248.850885px;}
.x55_c00055{left:249.964635px;}
.x1e_c00055{left:259.077585px;}
.x5f_c00055{left:261.349635px;}
.x29_c00055{left:270.314085px;}
.x59_c00055{left:271.749585px;}
.x2e_c00055{left:280.139835px;}
.x4f_c00055{left:282.703935px;}
.x10_c00055{left:292.019835px;}
.x8_c00055{left:303.469185px;}
.x48_c00055{left:304.498785px;}
.x2a_c00055{left:314.834385px;}
.x32_c00055{left:317.284635px;}
.x17_c00055{left:324.689835px;}
.x4b_c00055{left:326.150085px;}
.x9_c00055{left:336.837135px;}
.x3e_c00055{left:337.960785px;}
.x41_c00055{left:348.553785px;}
.x23_c00055{left:359.374485px;}
.x18_c00055{left:368.838885px;}
.x1f_c00055{left:370.061535px;}
.x2b_c00055{left:381.604935px;}
.x33_c00055{left:382.644435px;}
.x11_c00055{left:392.564235px;}
.xa_c00055{left:403.429485px;}
.x12_c00055{left:414.987735px;}
.xb_c00055{left:424.432335px;}
.x34_c00055{left:426.046035px;}
.x24_c00055{left:437.094435px;}
.x13_c00055{left:447.034035px;}
.x5a_c00055{left:448.093335px;}
.x2f_c00055{left:458.725935px;}
.x61_c00055{left:461.111835px;}
.x19_c00055{left:469.551585px;}
.x50_c00055{left:470.571285px;}
.x39_c00055{left:481.268235px;}
.xc_c00055{left:491.861235px;}
.x4d_c00055{left:493.410585px;}
.x1a_c00055{left:502.686885px;}
.x5b_c00055{left:505.686585px;}
.x3a_c00055{left:512.824485px;}
.x47_c00055{left:513.893685px;}
.x56_c00055{left:515.136135px;}
.x43_c00055{left:525.833085px;}
.x2c_c00055{left:535.223235px;}
.x3f_c00055{left:536.530035px;}
.xd_c00055{left:545.657835px;}
.x35_c00055{left:547.226985px;}
.x4c_c00055{left:550.518735px;}
.x1b_c00055{left:557.918985px;}
.x54_c00055{left:568.789185px;}
.x45_c00055{left:570.378135px;}
.x14_c00055{left:580.337535px;}
.x25_c00055{left:591.930435px;}
.x2d_c00055{left:602.117535px;}
.x46_c00055{left:603.152085px;}
.x3b_c00055{left:613.170885px;}
.x51_c00055{left:614.908335px;}
.x3_c00055{left:624.516285px;}
.x5c_c00055{left:625.981485px;}
.x36_c00055{left:628.352535px;}
.x27_c00055{left:636.623985px;}
.x60_c00055{left:647.736735px;}
.x3c_c00055{left:658.047585px;}
.x30_c00055{left:668.581185px;}
.x62_c00055{left:711.002685px;}
@media print{
.v0_c00055{vertical-align:0.000000pt;}
.lsc_c00055{letter-spacing:-2.439360pt;}
.ls5_c00055{letter-spacing:-2.111789pt;}
.lse_c00055{letter-spacing:-1.916640pt;}
.ls9_c00055{letter-spacing:-1.686643pt;}
.ls2_c00055{letter-spacing:0.000000pt;}
.ls12_c00055{letter-spacing:0.522720pt;}
.lsf_c00055{letter-spacing:0.627264pt;}
.ls10_c00055{letter-spacing:0.926957pt;}
.ls11_c00055{letter-spacing:1.108166pt;}
.lsa_c00055{letter-spacing:1.414829pt;}
.lsb_c00055{letter-spacing:1.442707pt;}
.ls1_c00055{letter-spacing:2.404512pt;}
.lsd_c00055{letter-spacing:2.766931pt;}
.ls8_c00055{letter-spacing:2.954336pt;}
.ls6_c00055{letter-spacing:3.247834pt;}
.ls0_c00055{letter-spacing:3.324499pt;}
.ls13_c00055{letter-spacing:3.415104pt;}
.ls4_c00055{letter-spacing:3.484800pt;}
.ls3_c00055{letter-spacing:3.889609pt;}
.ls7_c00055{letter-spacing:26.611376pt;}
.ws0_c00055{word-spacing:-17.424000pt;}
.ws1_c00055{word-spacing:0.000000pt;}
._0_c00055{margin-left:-10.454400pt;}
._3_c00055{width:16.761888pt;}
._1_c00055{width:22.548979pt;}
._2_c00055{width:32.819072pt;}
.fs5_c00055{font-size:15.136000pt;}
.fs9_c00055{font-size:19.712000pt;}
.fs0_c00055{font-size:24.640000pt;}
.fs4_c00055{font-size:26.611376pt;}
.fs8_c00055{font-size:29.568000pt;}
.fs7_c00055{font-size:29.920000pt;}
.fsa_c00055{font-size:55.616000pt;}
.fs3_c00055{font-size:57.376000pt;}
.fs6_c00055{font-size:67.760000pt;}
.fs2_c00055{font-size:69.696000pt;}
.fs1_c00055{font-size:77.792176pt;}
.y0_c00055{bottom:0.000000pt;}
.y1_c00055{bottom:68.000000pt;}
.y20_c00055{bottom:91.793720pt;}
.y1f_c00055{bottom:125.057720pt;}
.y1e_c00055{bottom:151.985720pt;}
.y1d_c00055{bottom:185.245320pt;}
.y1c_c00055{bottom:215.028920pt;}
.y1b_c00055{bottom:243.857720pt;}
.y1a_c00055{bottom:274.266120pt;}
.y17_c00055{bottom:302.144520pt;}
.y19_c00055{bottom:330.660920pt;}
.y16_c00055{bottom:330.977720pt;}
.y18_c00055{bottom:338.264120pt;}
.y15_c00055{bottom:360.118920pt;}
.y14_c00055{bottom:388.952120pt;}
.y13_c00055{bottom:417.780920pt;}
.y21_c00055{bottom:437.739320pt;}
.y12_c00055{bottom:446.292920pt;}
.y11_c00055{bottom:474.800520pt;}
.y10_c00055{bottom:503.950520pt;}
.yf_c00055{bottom:533.412920pt;}
.ye_c00055{bottom:562.558520pt;}
.yd_c00055{bottom:591.387320pt;}
.yc_c00055{bottom:620.845320pt;}
.yb_c00055{bottom:649.678520pt;}
.ya_c00055{bottom:677.869320pt;}
.y9_c00055{bottom:699.732920pt;}
.y8_c00055{bottom:706.698120pt;}
.y2_c00055{bottom:728.561720pt;}
.y7_c00055{bottom:735.214520pt;}
.y6_c00055{bottom:764.043320pt;}
.y5_c00055{bottom:792.867720pt;}
.y4_c00055{bottom:822.017720pt;}
.y3_c00055{bottom:954.118920pt;}
.h7_c00055{height:15.786375pt;}
.h6_c00055{height:17.723176pt;}
.hb_c00055{height:20.559000pt;}
.h2_c00055{height:25.698750pt;}
.h9_c00055{height:29.364844pt;}
.ha_c00055{height:30.838500pt;}
.hc_c00055{height:58.005750pt;}
.h5_c00055{height:59.841375pt;}
.h8_c00055{height:66.502734pt;}
.h4_c00055{height:68.402813pt;}
.h3_c00055{height:76.348766pt;}
.h1_c00055{height:986.666667pt;}
.h0_c00055{height:1122.666667pt;}
.w1_c00055{width:652.000000pt;}
.w0_c00055{width:793.333333pt;}
.x0_c00055{left:0.000000pt;}
.x2_c00055{left:39.515987pt;}
.x20_c00055{left:43.119587pt;}
.x4_c00055{left:44.311987pt;}
.x52_c00055{left:45.447187pt;}
.x57_c00055{left:54.841187pt;}
.x37_c00055{left:63.535587pt;}
.x5d_c00055{left:64.727987pt;}
.x1_c00055{left:70.666667pt;}
.x49_c00055{left:72.238787pt;}
.x3d_c00055{left:73.629187pt;}
.x28_c00055{left:83.040787pt;}
.x40_c00055{left:93.169587pt;}
.x26_c00055{left:102.475587pt;}
.x5_c00055{left:111.205187pt;}
.x1c_c00055{left:112.296387pt;}
.x5e_c00055{left:113.251187pt;}
.x21_c00055{left:121.800387pt;}
.x53_c00055{left:122.728787pt;}
.xe_c00055{left:131.585987pt;}
.x4a_c00055{left:132.831187pt;}
.x15_c00055{left:141.556387pt;}
.x22_c00055{left:150.444387pt;}
.x6_c00055{left:151.900787pt;}
.x16_c00055{left:161.369587pt;}
.x1d_c00055{left:170.094787pt;}
.xf_c00055{left:171.001187pt;}
.x42_c00055{left:180.236787pt;}
.x4e_c00055{left:181.248787pt;}
.x7_c00055{left:191.491987pt;}
.x38_c00055{left:200.978387pt;}
.x58_c00055{left:212.647187pt;}
.x31_c00055{left:219.779587pt;}
.x44_c00055{left:221.200787pt;}
.x55_c00055{left:222.190787pt;}
.x1e_c00055{left:230.291187pt;}
.x5f_c00055{left:232.310787pt;}
.x29_c00055{left:240.279187pt;}
.x59_c00055{left:241.555187pt;}
.x2e_c00055{left:249.013187pt;}
.x4f_c00055{left:251.292387pt;}
.x10_c00055{left:259.573187pt;}
.x8_c00055{left:269.750387pt;}
.x48_c00055{left:270.665587pt;}
.x2a_c00055{left:279.852787pt;}
.x32_c00055{left:282.030787pt;}
.x17_c00055{left:288.613187pt;}
.x4b_c00055{left:289.911187pt;}
.x9_c00055{left:299.410787pt;}
.x3e_c00055{left:300.409587pt;}
.x41_c00055{left:309.825587pt;}
.x23_c00055{left:319.443987pt;}
.x18_c00055{left:327.856787pt;}
.x1f_c00055{left:328.943587pt;}
.x2b_c00055{left:339.204387pt;}
.x33_c00055{left:340.128387pt;}
.x11_c00055{left:348.945987pt;}
.xa_c00055{left:358.603987pt;}
.x12_c00055{left:368.877987pt;}
.xb_c00055{left:377.273187pt;}
.x34_c00055{left:378.707587pt;}
.x24_c00055{left:388.528387pt;}
.x13_c00055{left:397.363587pt;}
.x5a_c00055{left:398.305187pt;}
.x2f_c00055{left:407.756387pt;}
.x61_c00055{left:409.877187pt;}
.x19_c00055{left:417.379187pt;}
.x50_c00055{left:418.285587pt;}
.x39_c00055{left:427.793987pt;}
.xc_c00055{left:437.209987pt;}
.x4d_c00055{left:438.587187pt;}
.x1a_c00055{left:446.832787pt;}
.x5b_c00055{left:449.499187pt;}
.x3a_c00055{left:455.843987pt;}
.x47_c00055{left:456.794387pt;}
.x56_c00055{left:457.898787pt;}
.x43_c00055{left:467.407187pt;}
.x2c_c00055{left:475.753987pt;}
.x3f_c00055{left:476.915587pt;}
.xd_c00055{left:485.029187pt;}
.x35_c00055{left:486.423987pt;}
.x4c_c00055{left:489.349987pt;}
.x1b_c00055{left:495.927987pt;}
.x54_c00055{left:505.590387pt;}
.x45_c00055{left:507.002787pt;}
.x14_c00055{left:515.855587pt;}
.x25_c00055{left:526.160387pt;}
.x2d_c00055{left:535.215587pt;}
.x46_c00055{left:536.135187pt;}
.x3b_c00055{left:545.040787pt;}
.x51_c00055{left:546.585187pt;}
.x3_c00055{left:555.125587pt;}
.x5c_c00055{left:556.427987pt;}
.x36_c00055{left:558.535587pt;}
.x27_c00055{left:565.887987pt;}
.x60_c00055{left:575.765987pt;}
.x3c_c00055{left:584.931187pt;}
.x30_c00055{left:594.294387pt;}
.x62_c00055{left:632.002387pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_47267150283ddace932067c4.woff2')format("woff");}.ff1_c00056{font-family:ff1_c00056;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00056;src:url('chunks/assets/font_604032520344ff0361885629.woff2')format("woff");}.ff2_c00056{font-family:ff2_c00056;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00056;src:url('chunks/assets/font_e023dea95ddd35b1e39a3178.woff2')format("woff");}.ff3_c00056{font-family:ff3_c00056;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00056;src:url('chunks/assets/font_b1444d7693c5023a28a313c9.woff2')format("woff");}.ff4_c00056{font-family:ff4_c00056;line-height:1.435059;font-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_c00056{transform:matrix(0.115277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115277,0.000000,0.000000,0.250000,0,0);}
.m3e_c00056{transform:matrix(0.125853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125853,0.000000,0.000000,0.250000,0,0);}
.m15_c00056{transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);}
.m7f_c00056{transform:matrix(0.214919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214919,0.000000,0.000000,0.250000,0,0);}
.m4d_c00056{transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);}
.m1_c00056{transform:matrix(0.246123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246123,0.000000,0.000000,0.250000,0,0);}
.m3c_c00056{transform:matrix(0.247276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247276,0.000000,0.000000,0.250000,0,0);}
.m97_c00056{transform:matrix(0.249994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249994,0.000000,0.000000,0.250000,0,0);}
.m0_c00056{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m44_c00056{transform:matrix(0.252992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252992,0.000000,0.000000,0.250000,0,0);}
.m32_c00056{transform:matrix(0.253107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253107,0.000000,0.000000,0.250000,0,0);}
.m37_c00056{transform:matrix(0.253568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253568,0.000000,0.000000,0.250000,0,0);}
.m1a_c00056{transform:matrix(0.255066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255066,0.000000,0.000000,0.250000,0,0);}
.m16_c00056{transform:matrix(0.259163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259163,0.000000,0.000000,0.250000,0,0);}
.m60_c00056{transform:matrix(0.260841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260841,0.000000,0.000000,0.250000,0,0);}
.m7e_c00056{transform:matrix(0.261427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261427,0.000000,0.000000,0.250000,0,0);}
.m36_c00056{transform:matrix(0.261907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261907,0.000000,0.000000,0.250000,0,0);}
.m1b_c00056{transform:matrix(0.262232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262232,0.000000,0.000000,0.250000,0,0);}
.m6b_c00056{transform:matrix(0.262722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262722,0.000000,0.000000,0.250000,0,0);}
.m43_c00056{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m78_c00056{transform:matrix(0.264397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264397,0.000000,0.000000,0.250000,0,0);}
.m8f_c00056{transform:matrix(0.265033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265033,0.000000,0.000000,0.250000,0,0);}
.m7a_c00056{transform:matrix(0.265302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265302,0.000000,0.000000,0.250000,0,0);}
.m7d_c00056{transform:matrix(0.265699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265699,0.000000,0.000000,0.250000,0,0);}
.m91_c00056{transform:matrix(0.265953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265953,0.000000,0.000000,0.250000,0,0);}
.m20_c00056{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m77_c00056{transform:matrix(0.266622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266622,0.000000,0.000000,0.250000,0,0);}
.m1f_c00056{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.m10_c00056{transform:matrix(0.267577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267577,0.000000,0.000000,0.250000,0,0);}
.m6_c00056{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m4f_c00056{transform:matrix(0.268552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268552,0.000000,0.000000,0.250000,0,0);}
.m66_c00056{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.m63_c00056{transform:matrix(0.269912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269912,0.000000,0.000000,0.250000,0,0);}
.m1d_c00056{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m57_c00056{transform:matrix(0.270977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270977,0.000000,0.000000,0.250000,0,0);}
.m5d_c00056{transform:matrix(0.271006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271006,0.000000,0.000000,0.250000,0,0);}
.m2d_c00056{transform:matrix(0.271124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271124,0.000000,0.000000,0.250000,0,0);}
.m92_c00056{transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);}
.m69_c00056{transform:matrix(0.272408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272408,0.000000,0.000000,0.250000,0,0);}
.m11_c00056{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m7b_c00056{transform:matrix(0.272614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272614,0.000000,0.000000,0.250000,0,0);}
.m79_c00056{transform:matrix(0.272729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272729,0.000000,0.000000,0.250000,0,0);}
.m53_c00056{transform:matrix(0.272823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272823,0.000000,0.000000,0.250000,0,0);}
.m84_c00056{transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);}
.m23_c00056{transform:matrix(0.275130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275130,0.000000,0.000000,0.250000,0,0);}
.m26_c00056{transform:matrix(0.275533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275533,0.000000,0.000000,0.250000,0,0);}
.m5e_c00056{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m4a_c00056{transform:matrix(0.276265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276265,0.000000,0.000000,0.250000,0,0);}
.m48_c00056{transform:matrix(0.276488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276488,0.000000,0.000000,0.250000,0,0);}
.m24_c00056{transform:matrix(0.276699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276699,0.000000,0.000000,0.250000,0,0);}
.m58_c00056{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m8b_c00056{transform:matrix(0.277239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277239,0.000000,0.000000,0.250000,0,0);}
.m5_c00056{transform:matrix(0.277595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277595,0.000000,0.000000,0.250000,0,0);}
.m67_c00056{transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);}
.m2c_c00056{transform:matrix(0.280224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280224,0.000000,0.000000,0.250000,0,0);}
.m41_c00056{transform:matrix(0.280826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280826,0.000000,0.000000,0.250000,0,0);}
.m29_c00056{transform:matrix(0.280961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280961,0.000000,0.000000,0.250000,0,0);}
.m88_c00056{transform:matrix(0.281208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281208,0.000000,0.000000,0.250000,0,0);}
.m40_c00056{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.m8e_c00056{transform:matrix(0.282686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282686,0.000000,0.000000,0.250000,0,0);}
.m47_c00056{transform:matrix(0.282727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282727,0.000000,0.000000,0.250000,0,0);}
.m73_c00056{transform:matrix(0.284926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284926,0.000000,0.000000,0.250000,0,0);}
.m83_c00056{transform:matrix(0.285237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285237,0.000000,0.000000,0.250000,0,0);}
.m35_c00056{transform:matrix(0.285661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285661,0.000000,0.000000,0.250000,0,0);}
.m9_c00056{transform:matrix(0.285932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285932,0.000000,0.000000,0.250000,0,0);}
.m74_c00056{transform:matrix(0.286100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286100,0.000000,0.000000,0.250000,0,0);}
.m81_c00056{transform:matrix(0.286165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286165,0.000000,0.000000,0.250000,0,0);}
.m94_c00056{transform:matrix(0.286254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286254,0.000000,0.000000,0.250000,0,0);}
.m17_c00056{transform:matrix(0.287284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287284,0.000000,0.000000,0.250000,0,0);}
.m9a_c00056{transform:matrix(0.287584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287584,0.000000,0.000000,0.250000,0,0);}
.m52_c00056{transform:matrix(0.287732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287732,0.000000,0.000000,0.250000,0,0);}
.mc_c00056{transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);}
.m80_c00056{transform:matrix(0.289170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289170,0.000000,0.000000,0.250000,0,0);}
.m85_c00056{transform:matrix(0.289411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289411,0.000000,0.000000,0.250000,0,0);}
.m61_c00056{transform:matrix(0.289520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289520,0.000000,0.000000,0.250000,0,0);}
.m55_c00056{transform:matrix(0.289989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289989,0.000000,0.000000,0.250000,0,0);}
.m50_c00056{transform:matrix(0.290086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290086,0.000000,0.000000,0.250000,0,0);}
.m34_c00056{transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);}
.m2e_c00056{transform:matrix(0.290414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290414,0.000000,0.000000,0.250000,0,0);}
.m76_c00056{transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);}
.m95_c00056{transform:matrix(0.290744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290744,0.000000,0.000000,0.250000,0,0);}
.m3a_c00056{transform:matrix(0.291650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291650,0.000000,0.000000,0.250000,0,0);}
.m42_c00056{transform:matrix(0.291972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291972,0.000000,0.000000,0.250000,0,0);}
.m9c_c00056{transform:matrix(0.292206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292206,0.000000,0.000000,0.250000,0,0);}
.m90_c00056{transform:matrix(0.292341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292341,0.000000,0.000000,0.250000,0,0);}
.m65_c00056{transform:matrix(0.292612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292612,0.000000,0.000000,0.250000,0,0);}
.m5a_c00056{transform:matrix(0.293110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293110,0.000000,0.000000,0.250000,0,0);}
.m5f_c00056{transform:matrix(0.293576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293576,0.000000,0.000000,0.250000,0,0);}
.m70_c00056{transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);}
.m75_c00056{transform:matrix(0.293864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293864,0.000000,0.000000,0.250000,0,0);}
.m28_c00056{transform:matrix(0.294443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294443,0.000000,0.000000,0.250000,0,0);}
.ma_c00056{transform:matrix(0.294877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294877,0.000000,0.000000,0.250000,0,0);}
.m13_c00056{transform:matrix(0.295973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295973,0.000000,0.000000,0.250000,0,0);}
.m89_c00056{transform:matrix(0.296089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296089,0.000000,0.000000,0.250000,0,0);}
.m99_c00056{transform:matrix(0.297315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297315,0.000000,0.000000,0.250000,0,0);}
.m59_c00056{transform:matrix(0.297367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297367,0.000000,0.000000,0.250000,0,0);}
.m8d_c00056{transform:matrix(0.299472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299472,0.000000,0.000000,0.250000,0,0);}
.m2b_c00056{transform:matrix(0.299708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299708,0.000000,0.000000,0.250000,0,0);}
.me_c00056{transform:matrix(0.299998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299998,0.000000,0.000000,0.250000,0,0);}
.m30_c00056{transform:matrix(0.300052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300052,0.000000,0.000000,0.250000,0,0);}
.md_c00056{transform:matrix(0.300932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300932,0.000000,0.000000,0.250000,0,0);}
.m3f_c00056{transform:matrix(0.301223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301223,0.000000,0.000000,0.250000,0,0);}
.m2a_c00056{transform:matrix(0.302357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302357,0.000000,0.000000,0.250000,0,0);}
.m27_c00056{transform:matrix(0.302580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302580,0.000000,0.000000,0.250000,0,0);}
.m4c_c00056{transform:matrix(0.302603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302603,0.000000,0.000000,0.250000,0,0);}
.m18_c00056{transform:matrix(0.302902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302902,0.000000,0.000000,0.250000,0,0);}
.m71_c00056{transform:matrix(0.303097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303097,0.000000,0.000000,0.250000,0,0);}
.m6c_c00056{transform:matrix(0.303438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303438,0.000000,0.000000,0.250000,0,0);}
.m96_c00056{transform:matrix(0.305343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305343,0.000000,0.000000,0.250000,0,0);}
.m4e_c00056{transform:matrix(0.306004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306004,0.000000,0.000000,0.250000,0,0);}
.m46_c00056{transform:matrix(0.307567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307567,0.000000,0.000000,0.250000,0,0);}
.m8c_c00056{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m6f_c00056{transform:matrix(0.309971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309971,0.000000,0.000000,0.250000,0,0);}
.m9b_c00056{transform:matrix(0.310202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310202,0.000000,0.000000,0.250000,0,0);}
.m68_c00056{transform:matrix(0.310277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310277,0.000000,0.000000,0.250000,0,0);}
.m2_c00056{transform:matrix(0.310732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310732,0.000000,0.000000,0.250000,0,0);}
.m87_c00056{transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);}
.m4_c00056{transform:matrix(0.311136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311136,0.000000,0.000000,0.250000,0,0);}
.m62_c00056{transform:matrix(0.312040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312040,0.000000,0.000000,0.250000,0,0);}
.m51_c00056{transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);}
.m82_c00056{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.m33_c00056{transform:matrix(0.313220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313220,0.000000,0.000000,0.250000,0,0);}
.m7c_c00056{transform:matrix(0.314273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314273,0.000000,0.000000,0.250000,0,0);}
.m72_c00056{transform:matrix(0.314884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314884,0.000000,0.000000,0.250000,0,0);}
.m45_c00056{transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);}
.m8a_c00056{transform:matrix(0.316040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316040,0.000000,0.000000,0.250000,0,0);}
.m6e_c00056{transform:matrix(0.317180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317180,0.000000,0.000000,0.250000,0,0);}
.m64_c00056{transform:matrix(0.317408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317408,0.000000,0.000000,0.250000,0,0);}
.m93_c00056{transform:matrix(0.317437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317437,0.000000,0.000000,0.250000,0,0);}
.m22_c00056{transform:matrix(0.318082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318082,0.000000,0.000000,0.250000,0,0);}
.m5b_c00056{transform:matrix(0.318414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318414,0.000000,0.000000,0.250000,0,0);}
.m56_c00056{transform:matrix(0.319103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319103,0.000000,0.000000,0.250000,0,0);}
.m39_c00056{transform:matrix(0.319426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319426,0.000000,0.000000,0.250000,0,0);}
.m1e_c00056{transform:matrix(0.319624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319624,0.000000,0.000000,0.250000,0,0);}
.m31_c00056{transform:matrix(0.320771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320771,0.000000,0.000000,0.250000,0,0);}
.m98_c00056{transform:matrix(0.321653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321653,0.000000,0.000000,0.250000,0,0);}
.m5c_c00056{transform:matrix(0.323322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323322,0.000000,0.000000,0.250000,0,0);}
.m6d_c00056{transform:matrix(0.325281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325281,0.000000,0.000000,0.250000,0,0);}
.m14_c00056{transform:matrix(0.326967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326967,0.000000,0.000000,0.250000,0,0);}
.m21_c00056{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.m54_c00056{transform:matrix(0.328208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328208,0.000000,0.000000,0.250000,0,0);}
.m6a_c00056{transform:matrix(0.329817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329817,0.000000,0.000000,0.250000,0,0);}
.m25_c00056{transform:matrix(0.331303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331303,0.000000,0.000000,0.250000,0,0);}
.mf_c00056{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m8_c00056{transform:matrix(0.333989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333989,0.000000,0.000000,0.250000,0,0);}
.m4b_c00056{transform:matrix(0.334273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334273,0.000000,0.000000,0.250000,0,0);}
.m86_c00056{transform:matrix(0.338655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338655,0.000000,0.000000,0.250000,0,0);}
.m19_c00056{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m1c_c00056{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);}
.m3_c00056{transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);}
.mb_c00056{transform:matrix(0.342953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342953,0.000000,0.000000,0.250000,0,0);}
.m49_c00056{transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);}
.m7_c00056{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m2f_c00056{transform:matrix(0.355198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355198,0.000000,0.000000,0.250000,0,0);}
.m12_c00056{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m3b_c00056{transform:matrix(0.682622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682622,0.000000,0.000000,0.250000,0,0);}
.m3d_c00056{transform:matrix(1.113285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.113285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.113285,0.000000,0.000000,0.250000,0,0);}
.v0_c00056{vertical-align:0.000000px;}
.ls2_c00056{letter-spacing:-3.049200px;}
.ls9_c00056{letter-spacing:-2.744280px;}
.ls11_c00056{letter-spacing:-2.375762px;}
.ls15_c00056{letter-spacing:-2.328480px;}
.lsd_c00056{letter-spacing:-2.079000px;}
.lse_c00056{letter-spacing:-1.427026px;}
.ls12_c00056{letter-spacing:-1.144757px;}
.lsb_c00056{letter-spacing:-0.942480px;}
.ls1_c00056{letter-spacing:0.000000px;}
.ls13_c00056{letter-spacing:0.705672px;}
.lsf_c00056{letter-spacing:0.940896px;}
.ls17_c00056{letter-spacing:1.246687px;}
.ls16_c00056{letter-spacing:1.325095px;}
.lsc_c00056{letter-spacing:1.346400px;}
.lsa_c00056{letter-spacing:1.663200px;}
.ls5_c00056{letter-spacing:2.234628px;}
.ls6_c00056{letter-spacing:3.112798px;}
.ls0_c00056{letter-spacing:3.206887px;}
.ls7_c00056{letter-spacing:3.740062px;}
.ls3_c00056{letter-spacing:3.920400px;}
.ls8_c00056{letter-spacing:4.029310px;}
.ls14_c00056{letter-spacing:4.356000px;}
.ls4_c00056{letter-spacing:48.470598px;}
.ls10_c00056{letter-spacing:49.896198px;}
.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:-20.927095px;}
.ws1_c00056{word-spacing:0.000000px;}
._3_c00056{margin-left:-3.669494px;}
._1_c00056{width:11.269368px;}
._4_c00056{width:19.029622px;}
._2_c00056{width:29.032344px;}
._0_c00056{width:424.987200px;}
.fc0_c00056{color:transparent;}
.fs8_c00056{font-size:22.176000px;}
.fs0_c00056{font-size:26.928000px;}
.fsf_c00056{font-size:32.472000px;}
.fs6_c00056{font-size:33.264000px;}
.fs3_c00056{font-size:36.234000px;}
.fs7_c00056{font-size:39.204000px;}
.fs13_c00056{font-size:39.600000px;}
.fs5_c00056{font-size:48.470598px;}
.fsd_c00056{font-size:49.896198px;}
.fsb_c00056{font-size:59.400000px;}
.fs14_c00056{font-size:62.568000px;}
.fsa_c00056{font-size:64.548000px;}
.fs12_c00056{font-size:65.538000px;}
.fs11_c00056{font-size:66.528000px;}
.fs4_c00056{font-size:67.320000px;}
.fs10_c00056{font-size:69.696198px;}
.fsc_c00056{font-size:75.240000px;}
.fs2_c00056{font-size:78.408000px;}
.fse_c00056{font-size:79.200000px;}
.fs9_c00056{font-size:80.586198px;}
.fs1_c00056{font-size:87.120000px;}
.y0_c00056{bottom:0.000000px;}
.y1_c00056{bottom:76.500000px;}
.y23_c00056{bottom:140.684985px;}
.y22_c00056{bottom:164.920185px;}
.y21_c00056{bottom:169.201935px;}
.y20_c00056{bottom:205.554735px;}
.y1f_c00056{bottom:238.694985px;}
.y1d_c00056{bottom:270.770985px;}
.y1e_c00056{bottom:272.914335px;}
.y1c_c00056{bottom:302.846985px;}
.y1b_c00056{bottom:367.355385px;}
.y1a_c00056{bottom:399.792735px;}
.y19_c00056{bottom:431.863785px;}
.y18_c00056{bottom:458.955135px;}
.y17_c00056{bottom:464.301135px;}
.y24_c00056{bottom:486.036585px;}
.y16_c00056{bottom:528.804585px;}
.y15_c00056{bottom:561.236985px;}
.y14_c00056{bottom:596.169135px;}
.y13_c00056{bottom:614.345535px;}
.y12_c00056{bottom:628.601535px;}
.y11_c00056{bottom:657.113535px;}
.y10_c00056{bottom:662.815935px;}
.yf_c00056{bottom:697.738185px;}
.ye_c00056{bottom:760.825935px;}
.yd_c00056{bottom:793.253385px;}
.yc_c00056{bottom:807.865785px;}
.yb_c00056{bottom:825.334335px;}
.ya_c00056{bottom:857.766735px;}
.y9_c00056{bottom:872.735535px;}
.y8_c00056{bottom:881.996985px;}
.y7_c00056{bottom:890.555535px;}
.y6_c00056{bottom:906.944985px;}
.y4_c00056{bottom:922.987935px;}
.y5_c00056{bottom:926.903385px;}
.y3_c00056{bottom:1075.522185px;}
.y2_c00056{bottom:1092.985785px;}
.ha_c00056{height:23.128875px;}
.h2_c00056{height:28.085063px;}
.h7_c00056{height:32.281418px;}
.h10_c00056{height:33.230868px;}
.hd_c00056{height:34.628344px;}
.h8_c00056{height:34.693313px;}
.h5_c00056{height:35.561689px;}
.h9_c00056{height:38.476582px;}
.h14_c00056{height:41.301563px;}
.he_c00056{height:61.836328px;}
.h15_c00056{height:65.256469px;}
.h6_c00056{height:66.070898px;}
.hc_c00056{height:67.321547px;}
.h13_c00056{height:68.354086px;}
.h12_c00056{height:69.386625px;}
.h4_c00056{height:76.953164px;}
.hf_c00056{height:78.472969px;}
.hb_c00056{height:79.090946px;}
.h11_c00056{height:82.603125px;}
.h3_c00056{height:85.503516px;}
.h1_c00056{height:1110.000000px;}
.h0_c00056{height:1263.000000px;}
.w1_c00056{width:733.500000px;}
.w0_c00056{width:892.500000px;}
.x0_c00056{left:0.000000px;}
.x31_c00056{left:45.272235px;}
.x12_c00056{left:46.851285px;}
.x5_c00056{left:47.861085px;}
.x13_c00056{left:68.472885px;}
.x1_c00056{left:79.500000px;}
.x2b_c00056{left:90.193485px;}
.x60_c00056{left:91.312185px;}
.x6_c00056{left:101.306235px;}
.x43_c00056{left:112.379385px;}
.x1e_c00056{left:122.997135px;}
.x7_c00056{left:134.842485px;}
.x46_c00056{left:144.707835px;}
.x4d_c00056{left:146.262135px;}
.x32_c00056{left:155.875035px;}
.x1f_c00056{left:167.636235px;}
.x14_c00056{left:178.041135px;}
.x23_c00056{left:189.054885px;}
.x62_c00056{left:199.925085px;}
.x37_c00056{left:210.800235px;}
.x3e_c00056{left:223.279185px;}
.x33_c00056{left:233.124735px;}
.x24_c00056{left:235.010685px;}
.x2c_c00056{left:245.237385px;}
.x55_c00056{left:246.361035px;}
.x52_c00056{left:248.143035px;}
.x8_c00056{left:256.053135px;}
.x5a_c00056{left:265.784835px;}
.x15_c00056{left:267.740085px;}
.x3f_c00056{left:276.932235px;}
.x34_c00056{left:277.961835px;}
.x4e_c00056{left:279.194385px;}
.x5c_c00056{left:288.426135px;}
.x20_c00056{left:289.831935px;}
.x5d_c00056{left:294.791835px;}
.x16_c00056{left:299.350785px;}
.x5e_c00056{left:301.637685px;}
.x25_c00056{left:311.611935px;}
.x21_c00056{left:322.343535px;}
.x61_c00056{left:323.764185px;}
.x57_c00056{left:334.243335px;}
.x9_c00056{left:344.801685px;}
.x35_c00056{left:355.493685px;}
.x58_c00056{left:357.191535px;}
.x51_c00056{left:359.800185px;}
.x17_c00056{left:366.542085px;}
.x4b_c00056{left:367.977585px;}
.xa_c00056{left:378.268635px;}
.x26_c00056{left:388.460685px;}
.x59_c00056{left:389.876385px;}
.x18_c00056{left:400.004085px;}
.xb_c00056{left:411.072285px;}
.x47_c00056{left:412.136535px;}
.x27_c00056{left:421.239585px;}
.x4c_c00056{left:423.496785px;}
.x19_c00056{left:432.619635px;}
.x5f_c00056{left:433.867035px;}
.x40_c00056{left:444.197685px;}
.x48_c00056{left:445.222335px;}
.x2d_c00056{left:454.929285px;}
.x4f_c00056{left:455.988585px;}
.x53_c00056{left:467.393385px;}
.xc_c00056{left:471.452385px;}
.x28_c00056{left:477.006285px;}
.xd_c00056{left:478.412085px;}
.x5b_c00056{left:480.515835px;}
.x2e_c00056{left:488.787285px;}
.x63_c00056{left:490.128735px;}
.x38_c00056{left:493.232385px;}
.x1a_c00056{left:499.820835px;}
.x22_c00056{left:501.726585px;}
.x44_c00056{left:510.859335px;}
.x49_c00056{left:522.254235px;}
.x2a_c00056{left:526.234035px;}
.x56_c00056{left:532.787835px;}
.x39_c00056{left:543.450135px;}
.xe_c00056{left:554.364885px;}
.x3b_c00056{left:564.467835px;}
.x3a_c00056{left:565.502385px;}
.x2f_c00056{left:577.184385px;}
.x3c_c00056{left:579.694035px;}
.xf_c00056{left:586.178535px;}
.x41_c00056{left:588.222885px;}
.x64_c00056{left:589.603935px;}
.x54_c00056{left:599.627685px;}
.x50_c00056{left:610.883985px;}
.x10_c00056{left:621.699735px;}
.x3_c00056{left:622.739235px;}
.x1b_c00056{left:632.267985px;}
.x4_c00056{left:634.455885px;}
.x2_c00056{left:637.787235px;}
.x3d_c00056{left:639.593985px;}
.x45_c00056{left:643.321335px;}
.x29_c00056{left:653.795535px;}
.x4a_c00056{left:655.226085px;}
.x30_c00056{left:665.527035px;}
.x36_c00056{left:667.111035px;}
.x11_c00056{left:669.417735px;}
.x1c_c00056{left:672.412485px;}
.x1d_c00056{left:673.451985px;}
.x42_c00056{left:675.466635px;}
.x65_c00056{left:709.220685px;}
@media print{
.v0_c00056{vertical-align:0.000000pt;}
.ls2_c00056{letter-spacing:-2.710400pt;}
.ls9_c00056{letter-spacing:-2.439360pt;}
.ls11_c00056{letter-spacing:-2.111789pt;}
.ls15_c00056{letter-spacing:-2.069760pt;}
.lsd_c00056{letter-spacing:-1.848000pt;}
.lse_c00056{letter-spacing:-1.268467pt;}
.ls12_c00056{letter-spacing:-1.017562pt;}
.lsb_c00056{letter-spacing:-0.837760pt;}
.ls1_c00056{letter-spacing:0.000000pt;}
.ls13_c00056{letter-spacing:0.627264pt;}
.lsf_c00056{letter-spacing:0.836352pt;}
.ls17_c00056{letter-spacing:1.108166pt;}
.ls16_c00056{letter-spacing:1.177862pt;}
.lsc_c00056{letter-spacing:1.196800pt;}
.lsa_c00056{letter-spacing:1.478400pt;}
.ls5_c00056{letter-spacing:1.986336pt;}
.ls6_c00056{letter-spacing:2.766931pt;}
.ls0_c00056{letter-spacing:2.850566pt;}
.ls7_c00056{letter-spacing:3.324499pt;}
.ls3_c00056{letter-spacing:3.484800pt;}
.ls8_c00056{letter-spacing:3.581609pt;}
.ls14_c00056{letter-spacing:3.872000pt;}
.ls4_c00056{letter-spacing:43.084976pt;}
.ls10_c00056{letter-spacing:44.352176pt;}
.ws0_c00056{word-spacing:-18.601862pt;}
.ws1_c00056{word-spacing:0.000000pt;}
._3_c00056{margin-left:-3.261773pt;}
._1_c00056{width:10.017216pt;}
._4_c00056{width:16.915219pt;}
._2_c00056{width:25.806528pt;}
._0_c00056{width:377.766400pt;}
.fs8_c00056{font-size:19.712000pt;}
.fs0_c00056{font-size:23.936000pt;}
.fsf_c00056{font-size:28.864000pt;}
.fs6_c00056{font-size:29.568000pt;}
.fs3_c00056{font-size:32.208000pt;}
.fs7_c00056{font-size:34.848000pt;}
.fs13_c00056{font-size:35.200000pt;}
.fs5_c00056{font-size:43.084976pt;}
.fsd_c00056{font-size:44.352176pt;}
.fsb_c00056{font-size:52.800000pt;}
.fs14_c00056{font-size:55.616000pt;}
.fsa_c00056{font-size:57.376000pt;}
.fs12_c00056{font-size:58.256000pt;}
.fs11_c00056{font-size:59.136000pt;}
.fs4_c00056{font-size:59.840000pt;}
.fs10_c00056{font-size:61.952176pt;}
.fsc_c00056{font-size:66.880000pt;}
.fs2_c00056{font-size:69.696000pt;}
.fse_c00056{font-size:70.400000pt;}
.fs9_c00056{font-size:71.632176pt;}
.fs1_c00056{font-size:77.440000pt;}
.y0_c00056{bottom:0.000000pt;}
.y1_c00056{bottom:68.000000pt;}
.y23_c00056{bottom:125.053320pt;}
.y22_c00056{bottom:146.595720pt;}
.y21_c00056{bottom:150.401720pt;}
.y20_c00056{bottom:182.715320pt;}
.y1f_c00056{bottom:212.173320pt;}
.y1d_c00056{bottom:240.685320pt;}
.y1e_c00056{bottom:242.590520pt;}
.y1c_c00056{bottom:269.197320pt;}
.y1b_c00056{bottom:326.538120pt;}
.y1a_c00056{bottom:355.371320pt;}
.y19_c00056{bottom:383.878920pt;}
.y18_c00056{bottom:407.960120pt;}
.y17_c00056{bottom:412.712120pt;}
.y24_c00056{bottom:432.032520pt;}
.y16_c00056{bottom:470.048520pt;}
.y15_c00056{bottom:498.877320pt;}
.y14_c00056{bottom:529.928120pt;}
.y13_c00056{bottom:546.084920pt;}
.y12_c00056{bottom:558.756920pt;}
.y11_c00056{bottom:584.100920pt;}
.y10_c00056{bottom:589.169720pt;}
.yf_c00056{bottom:620.211720pt;}
.ye_c00056{bottom:676.289720pt;}
.yd_c00056{bottom:705.114120pt;}
.yc_c00056{bottom:718.102920pt;}
.yb_c00056{bottom:733.630520pt;}
.ya_c00056{bottom:762.459320pt;}
.y9_c00056{bottom:775.764920pt;}
.y8_c00056{bottom:783.997320pt;}
.y7_c00056{bottom:791.604920pt;}
.y6_c00056{bottom:806.173320pt;}
.y4_c00056{bottom:820.433720pt;}
.y5_c00056{bottom:823.914120pt;}
.y3_c00056{bottom:956.019720pt;}
.y2_c00056{bottom:971.542920pt;}
.ha_c00056{height:20.559000pt;}
.h2_c00056{height:24.964500pt;}
.h7_c00056{height:28.694594pt;}
.h10_c00056{height:29.538549pt;}
.hd_c00056{height:30.780750pt;}
.h8_c00056{height:30.838500pt;}
.h5_c00056{height:31.610391pt;}
.h9_c00056{height:34.201406pt;}
.h14_c00056{height:36.712500pt;}
.he_c00056{height:54.965625pt;}
.h15_c00056{height:58.005750pt;}
.h6_c00056{height:58.729688pt;}
.hc_c00056{height:59.841375pt;}
.h13_c00056{height:60.759188pt;}
.h12_c00056{height:61.677000pt;}
.h4_c00056{height:68.402813pt;}
.hf_c00056{height:69.753750pt;}
.hb_c00056{height:70.303063pt;}
.h11_c00056{height:73.425000pt;}
.h3_c00056{height:76.003125pt;}
.h1_c00056{height:986.666667pt;}
.h0_c00056{height:1122.666667pt;}
.w1_c00056{width:652.000000pt;}
.w0_c00056{width:793.333333pt;}
.x0_c00056{left:0.000000pt;}
.x31_c00056{left:40.241987pt;}
.x12_c00056{left:41.645587pt;}
.x5_c00056{left:42.543187pt;}
.x13_c00056{left:60.864787pt;}
.x1_c00056{left:70.666667pt;}
.x2b_c00056{left:80.171987pt;}
.x60_c00056{left:81.166387pt;}
.x6_c00056{left:90.049987pt;}
.x43_c00056{left:99.892787pt;}
.x1e_c00056{left:109.330787pt;}
.x7_c00056{left:119.859987pt;}
.x46_c00056{left:128.629187pt;}
.x4d_c00056{left:130.010787pt;}
.x32_c00056{left:138.555587pt;}
.x1f_c00056{left:149.009987pt;}
.x14_c00056{left:158.258787pt;}
.x23_c00056{left:168.048787pt;}
.x62_c00056{left:177.711187pt;}
.x37_c00056{left:187.377987pt;}
.x3e_c00056{left:198.470387pt;}
.x33_c00056{left:207.221987pt;}
.x24_c00056{left:208.898387pt;}
.x2c_c00056{left:217.988787pt;}
.x55_c00056{left:218.987587pt;}
.x52_c00056{left:220.571587pt;}
.x8_c00056{left:227.602787pt;}
.x5a_c00056{left:236.253187pt;}
.x15_c00056{left:237.991187pt;}
.x3f_c00056{left:246.161987pt;}
.x34_c00056{left:247.077187pt;}
.x4e_c00056{left:248.172787pt;}
.x5c_c00056{left:256.378787pt;}
.x20_c00056{left:257.628387pt;}
.x5d_c00056{left:262.037187pt;}
.x16_c00056{left:266.089587pt;}
.x5e_c00056{left:268.122387pt;}
.x25_c00056{left:276.988387pt;}
.x21_c00056{left:286.527587pt;}
.x61_c00056{left:287.790387pt;}
.x57_c00056{left:297.105187pt;}
.x9_c00056{left:306.490387pt;}
.x35_c00056{left:315.994387pt;}
.x58_c00056{left:317.503587pt;}
.x51_c00056{left:319.822387pt;}
.x17_c00056{left:325.815187pt;}
.x4b_c00056{left:327.091187pt;}
.xa_c00056{left:336.238787pt;}
.x26_c00056{left:345.298387pt;}
.x59_c00056{left:346.556787pt;}
.x18_c00056{left:355.559187pt;}
.xb_c00056{left:365.397587pt;}
.x47_c00056{left:366.343587pt;}
.x27_c00056{left:374.435187pt;}
.x4c_c00056{left:376.441587pt;}
.x19_c00056{left:384.550787pt;}
.x5f_c00056{left:385.659587pt;}
.x40_c00056{left:394.842387pt;}
.x48_c00056{left:395.753187pt;}
.x2d_c00056{left:404.381587pt;}
.x4f_c00056{left:405.323187pt;}
.x53_c00056{left:415.460787pt;}
.xc_c00056{left:419.068787pt;}
.x28_c00056{left:424.005587pt;}
.xd_c00056{left:425.255187pt;}
.x5b_c00056{left:427.125187pt;}
.x2e_c00056{left:434.477587pt;}
.x63_c00056{left:435.669987pt;}
.x38_c00056{left:438.428787pt;}
.x1a_c00056{left:444.285187pt;}
.x22_c00056{left:445.979187pt;}
.x44_c00056{left:454.097187pt;}
.x49_c00056{left:464.225987pt;}
.x2a_c00056{left:467.763587pt;}
.x56_c00056{left:473.589187pt;}
.x39_c00056{left:483.066787pt;}
.xe_c00056{left:492.768787pt;}
.x3b_c00056{left:501.749187pt;}
.x3a_c00056{left:502.668787pt;}
.x2f_c00056{left:513.052787pt;}
.x3c_c00056{left:515.283587pt;}
.xf_c00056{left:521.047587pt;}
.x41_c00056{left:522.864787pt;}
.x64_c00056{left:524.092387pt;}
.x54_c00056{left:533.002387pt;}
.x50_c00056{left:543.007987pt;}
.x10_c00056{left:552.621987pt;}
.x3_c00056{left:553.545987pt;}
.x1b_c00056{left:562.015987pt;}
.x4_c00056{left:563.960787pt;}
.x2_c00056{left:566.921987pt;}
.x3d_c00056{left:568.527987pt;}
.x45_c00056{left:571.841187pt;}
.x29_c00056{left:581.151587pt;}
.x4a_c00056{left:582.423187pt;}
.x30_c00056{left:591.579587pt;}
.x36_c00056{left:592.987587pt;}
.x11_c00056{left:595.037987pt;}
.x1c_c00056{left:597.699987pt;}
.x1d_c00056{left:598.623987pt;}
.x42_c00056{left:600.414787pt;}
.x65_c00056{left:630.418387pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b0f3f0d901946a73206c2d35.woff2')format("woff");}.ff1_c00057{font-family:ff1_c00057;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00057;src:url('chunks/assets/font_c9168ea056f63efa1ff1acb9.woff2')format("woff");}.ff2_c00057{font-family:ff2_c00057;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00057;src:url('chunks/assets/font_661eb0978ebe48565860511f.woff2')format("woff");}.ff3_c00057{font-family:ff3_c00057;line-height:0.666000;font-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_c00057{transform:matrix(0.130787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130787,0.000000,0.000000,0.250000,0,0);}
.m1c_c00057{transform:matrix(0.163462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163462,0.000000,0.000000,0.250000,0,0);}
.m62_c00057{transform:matrix(0.184210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184210,0.000000,0.000000,0.250000,0,0);}
.m1b_c00057{transform:matrix(0.192307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192307,0.000000,0.000000,0.250000,0,0);}
.m61_c00057{transform:matrix(0.194079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194079,0.000000,0.000000,0.250000,0,0);}
.m63_c00057{transform:matrix(0.201755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201755,0.000000,0.000000,0.250000,0,0);}
.m4e_c00057{transform:matrix(0.218264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218264,0.000000,0.000000,0.250000,0,0);}
.m7d_c00057{transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);}
.m74_c00057{transform:matrix(0.248759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248759,0.000000,0.000000,0.250000,0,0);}
.m0_c00057{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m44_c00057{transform:matrix(0.250453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250453,0.000000,0.000000,0.250000,0,0);}
.m8c_c00057{transform:matrix(0.250517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250517,0.000000,0.000000,0.250000,0,0);}
.mae_c00057{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.m1_c00057{transform:matrix(0.253198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253198,0.000000,0.000000,0.250000,0,0);}
.m46_c00057{transform:matrix(0.253367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253367,0.000000,0.000000,0.250000,0,0);}
.md_c00057{transform:matrix(0.255103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255103,0.000000,0.000000,0.250000,0,0);}
.ma5_c00057{transform:matrix(0.256304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256304,0.000000,0.000000,0.250000,0,0);}
.m1f_c00057{transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);}
.mc_c00057{transform:matrix(0.258139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258139,0.000000,0.000000,0.250000,0,0);}
.mbd_c00057{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m88_c00057{transform:matrix(0.259674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259674,0.000000,0.000000,0.250000,0,0);}
.ma3_c00057{transform:matrix(0.260164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260164,0.000000,0.000000,0.250000,0,0);}
.mbf_c00057{transform:matrix(0.260579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260579,0.000000,0.000000,0.250000,0,0);}
.m45_c00057{transform:matrix(0.260978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260978,0.000000,0.000000,0.250000,0,0);}
.me_c00057{transform:matrix(0.261151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261151,0.000000,0.000000,0.250000,0,0);}
.m5a_c00057{transform:matrix(0.261823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261823,0.000000,0.000000,0.250000,0,0);}
.m27_c00057{transform:matrix(0.263290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263290,0.000000,0.000000,0.250000,0,0);}
.m2f_c00057{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m80_c00057{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m38_c00057{transform:matrix(0.265655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265655,0.000000,0.000000,0.250000,0,0);}
.m28_c00057{transform:matrix(0.266835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266835,0.000000,0.000000,0.250000,0,0);}
.m4_c00057{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m71_c00057{transform:matrix(0.268484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268484,0.000000,0.000000,0.250000,0,0);}
.m30_c00057{transform:matrix(0.268694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268694,0.000000,0.000000,0.250000,0,0);}
.mc3_c00057{transform:matrix(0.270610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270610,0.000000,0.000000,0.250000,0,0);}
.m58_c00057{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m12_c00057{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.mb_c00057{transform:matrix(0.272555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272555,0.000000,0.000000,0.250000,0,0);}
.m9e_c00057{transform:matrix(0.272863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272863,0.000000,0.000000,0.250000,0,0);}
.m2_c00057{transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);}
.m5b_c00057{transform:matrix(0.274395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274395,0.000000,0.000000,0.250000,0,0);}
.ma9_c00057{transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);}
.m6c_c00057{transform:matrix(0.274901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274901,0.000000,0.000000,0.250000,0,0);}
.mb4_c00057{transform:matrix(0.275162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275162,0.000000,0.000000,0.250000,0,0);}
.m20_c00057{transform:matrix(0.276166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276166,0.000000,0.000000,0.250000,0,0);}
.m41_c00057{transform:matrix(0.276819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276819,0.000000,0.000000,0.250000,0,0);}
.m21_c00057{transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);}
.m1d_c00057{transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);}
.m8_c00057{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.ma1_c00057{transform:matrix(0.277487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277487,0.000000,0.000000,0.250000,0,0);}
.m86_c00057{transform:matrix(0.277612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277612,0.000000,0.000000,0.250000,0,0);}
.m89_c00057{transform:matrix(0.278331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278331,0.000000,0.000000,0.250000,0,0);}
.m9f_c00057{transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);}
.m64_c00057{transform:matrix(0.278786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278786,0.000000,0.000000,0.250000,0,0);}
.mb8_c00057{transform:matrix(0.278911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278911,0.000000,0.000000,0.250000,0,0);}
.ma4_c00057{transform:matrix(0.279465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279465,0.000000,0.000000,0.250000,0,0);}
.ma2_c00057{transform:matrix(0.279648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279648,0.000000,0.000000,0.250000,0,0);}
.m51_c00057{transform:matrix(0.281218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281218,0.000000,0.000000,0.250000,0,0);}
.m3e_c00057{transform:matrix(0.281266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281266,0.000000,0.000000,0.250000,0,0);}
.m8b_c00057{transform:matrix(0.281284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281284,0.000000,0.000000,0.250000,0,0);}
.m8e_c00057{transform:matrix(0.283527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283527,0.000000,0.000000,0.250000,0,0);}
.m43_c00057{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m75_c00057{transform:matrix(0.283944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283944,0.000000,0.000000,0.250000,0,0);}
.m98_c00057{transform:matrix(0.284283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284283,0.000000,0.000000,0.250000,0,0);}
.m8d_c00057{transform:matrix(0.284880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284880,0.000000,0.000000,0.250000,0,0);}
.m70_c00057{transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);}
.m4b_c00057{transform:matrix(0.285284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285284,0.000000,0.000000,0.250000,0,0);}
.m11_c00057{transform:matrix(0.286079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286079,0.000000,0.000000,0.250000,0,0);}
.m48_c00057{transform:matrix(0.286181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286181,0.000000,0.000000,0.250000,0,0);}
.m6d_c00057{transform:matrix(0.286803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286803,0.000000,0.000000,0.250000,0,0);}
.m77_c00057{transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);}
.m69_c00057{transform:matrix(0.288557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288557,0.000000,0.000000,0.250000,0,0);}
.m90_c00057{transform:matrix(0.288860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288860,0.000000,0.000000,0.250000,0,0);}
.m9d_c00057{transform:matrix(0.289026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289026,0.000000,0.000000,0.250000,0,0);}
.m73_c00057{transform:matrix(0.289221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289221,0.000000,0.000000,0.250000,0,0);}
.m66_c00057{transform:matrix(0.289371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289371,0.000000,0.000000,0.250000,0,0);}
.mbb_c00057{transform:matrix(0.289382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289382,0.000000,0.000000,0.250000,0,0);}
.m60_c00057{transform:matrix(0.289512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289512,0.000000,0.000000,0.250000,0,0);}
.m2c_c00057{transform:matrix(0.290073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290073,0.000000,0.000000,0.250000,0,0);}
.m2a_c00057{transform:matrix(0.290107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290107,0.000000,0.000000,0.250000,0,0);}
.m39_c00057{transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);}
.mb7_c00057{transform:matrix(0.290417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290417,0.000000,0.000000,0.250000,0,0);}
.ma8_c00057{transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);}
.m7b_c00057{transform:matrix(0.290679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290679,0.000000,0.000000,0.250000,0,0);}
.m4d_c00057{transform:matrix(0.290961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290961,0.000000,0.000000,0.250000,0,0);}
.m24_c00057{transform:matrix(0.291096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291096,0.000000,0.000000,0.250000,0,0);}
.m82_c00057{transform:matrix(0.291866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291866,0.000000,0.000000,0.250000,0,0);}
.m1a_c00057{transform:matrix(0.291972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291972,0.000000,0.000000,0.250000,0,0);}
.m3d_c00057{transform:matrix(0.292737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292737,0.000000,0.000000,0.250000,0,0);}
.mf_c00057{transform:matrix(0.292878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292878,0.000000,0.000000,0.250000,0,0);}
.m79_c00057{transform:matrix(0.292912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292912,0.000000,0.000000,0.250000,0,0);}
.m84_c00057{transform:matrix(0.293553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293553,0.000000,0.000000,0.250000,0,0);}
.m97_c00057{transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);}
.m53_c00057{transform:matrix(0.293862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293862,0.000000,0.000000,0.250000,0,0);}
.ma_c00057{transform:matrix(0.293917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293917,0.000000,0.000000,0.250000,0,0);}
.m37_c00057{transform:matrix(0.294066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294066,0.000000,0.000000,0.250000,0,0);}
.m3b_c00057{transform:matrix(0.294174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294174,0.000000,0.000000,0.250000,0,0);}
.m55_c00057{transform:matrix(0.295009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295009,0.000000,0.000000,0.250000,0,0);}
.mc2_c00057{transform:matrix(0.295292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295292,0.000000,0.000000,0.250000,0,0);}
.m6_c00057{transform:matrix(0.296681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296681,0.000000,0.000000,0.250000,0,0);}
.m2e_c00057{transform:matrix(0.296742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296742,0.000000,0.000000,0.250000,0,0);}
.m67_c00057{transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);}
.m2b_c00057{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m3c_c00057{transform:matrix(0.297425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297425,0.000000,0.000000,0.250000,0,0);}
.ma0_c00057{transform:matrix(0.297708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297708,0.000000,0.000000,0.250000,0,0);}
.m6f_c00057{transform:matrix(0.298745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298745,0.000000,0.000000,0.250000,0,0);}
.m5_c00057{transform:matrix(0.299487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299487,0.000000,0.000000,0.250000,0,0);}
.m33_c00057{transform:matrix(0.300052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300052,0.000000,0.000000,0.250000,0,0);}
.m15_c00057{transform:matrix(0.300543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300543,0.000000,0.000000,0.250000,0,0);}
.m8a_c00057{transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);}
.m6a_c00057{transform:matrix(0.301336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301336,0.000000,0.000000,0.250000,0,0);}
.m26_c00057{transform:matrix(0.301637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301637,0.000000,0.000000,0.250000,0,0);}
.m57_c00057{transform:matrix(0.301741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301741,0.000000,0.000000,0.250000,0,0);}
.maf_c00057{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m3_c00057{transform:matrix(0.302735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302735,0.000000,0.000000,0.250000,0,0);}
.m34_c00057{transform:matrix(0.302778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302778,0.000000,0.000000,0.250000,0,0);}
.m5d_c00057{transform:matrix(0.302838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302838,0.000000,0.000000,0.250000,0,0);}
.m22_c00057{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);}
.m6b_c00057{transform:matrix(0.303736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303736,0.000000,0.000000,0.250000,0,0);}
.m76_c00057{transform:matrix(0.304396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304396,0.000000,0.000000,0.250000,0,0);}
.m9a_c00057{transform:matrix(0.304737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304737,0.000000,0.000000,0.250000,0,0);}
.m3f_c00057{transform:matrix(0.304901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304901,0.000000,0.000000,0.250000,0,0);}
.mb3_c00057{transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);}
.m40_c00057{transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);}
.m91_c00057{transform:matrix(0.305391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305391,0.000000,0.000000,0.250000,0,0);}
.mad_c00057{transform:matrix(0.305998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305998,0.000000,0.000000,0.250000,0,0);}
.m5f_c00057{transform:matrix(0.306244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306244,0.000000,0.000000,0.250000,0,0);}
.m96_c00057{transform:matrix(0.306809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306809,0.000000,0.000000,0.250000,0,0);}
.mb1_c00057{transform:matrix(0.307238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307238,0.000000,0.000000,0.250000,0,0);}
.m4c_c00057{transform:matrix(0.307243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307243,0.000000,0.000000,0.250000,0,0);}
.m4f_c00057{transform:matrix(0.307915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307915,0.000000,0.000000,0.250000,0,0);}
.m6e_c00057{transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);}
.m36_c00057{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m4a_c00057{transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);}
.m18_c00057{transform:matrix(0.309352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309352,0.000000,0.000000,0.250000,0,0);}
.m17_c00057{transform:matrix(0.310202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310202,0.000000,0.000000,0.250000,0,0);}
.m7e_c00057{transform:matrix(0.310265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310265,0.000000,0.000000,0.250000,0,0);}
.m7f_c00057{transform:matrix(0.311285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311285,0.000000,0.000000,0.250000,0,0);}
.m9b_c00057{transform:matrix(0.311475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311475,0.000000,0.000000,0.250000,0,0);}
.mc0_c00057{transform:matrix(0.311758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311758,0.000000,0.000000,0.250000,0,0);}
.m50_c00057{transform:matrix(0.312047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312047,0.000000,0.000000,0.250000,0,0);}
.m23_c00057{transform:matrix(0.312583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312583,0.000000,0.000000,0.250000,0,0);}
.m42_c00057{transform:matrix(0.313434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313434,0.000000,0.000000,0.250000,0,0);}
.m68_c00057{transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);}
.m83_c00057{transform:matrix(0.314182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314182,0.000000,0.000000,0.250000,0,0);}
.m92_c00057{transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);}
.m49_c00057{transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);}
.m32_c00057{transform:matrix(0.317602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317602,0.000000,0.000000,0.250000,0,0);}
.m52_c00057{transform:matrix(0.317780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317780,0.000000,0.000000,0.250000,0,0);}
.m81_c00057{transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);}
.ma6_c00057{transform:matrix(0.319628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319628,0.000000,0.000000,0.250000,0,0);}
.m59_c00057{transform:matrix(0.319919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319919,0.000000,0.000000,0.250000,0,0);}
.m3a_c00057{transform:matrix(0.320357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320357,0.000000,0.000000,0.250000,0,0);}
.m31_c00057{transform:matrix(0.320819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320819,0.000000,0.000000,0.250000,0,0);}
.m54_c00057{transform:matrix(0.321222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321222,0.000000,0.000000,0.250000,0,0);}
.m78_c00057{transform:matrix(0.322593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322593,0.000000,0.000000,0.250000,0,0);}
.m93_c00057{transform:matrix(0.323355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323355,0.000000,0.000000,0.250000,0,0);}
.mc1_c00057{transform:matrix(0.323511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323511,0.000000,0.000000,0.250000,0,0);}
.m5e_c00057{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.mba_c00057{transform:matrix(0.323918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323918,0.000000,0.000000,0.250000,0,0);}
.m72_c00057{transform:matrix(0.324107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324107,0.000000,0.000000,0.250000,0,0);}
.m87_c00057{transform:matrix(0.324174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324174,0.000000,0.000000,0.250000,0,0);}
.m7_c00057{transform:matrix(0.324262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324262,0.000000,0.000000,0.250000,0,0);}
.mab_c00057{transform:matrix(0.324269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324269,0.000000,0.000000,0.250000,0,0);}
.m99_c00057{transform:matrix(0.325206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325206,0.000000,0.000000,0.250000,0,0);}
.ma7_c00057{transform:matrix(0.325470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325470,0.000000,0.000000,0.250000,0,0);}
.m56_c00057{transform:matrix(0.325583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325583,0.000000,0.000000,0.250000,0,0);}
.m25_c00057{transform:matrix(0.326184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326184,0.000000,0.000000,0.250000,0,0);}
.m7a_c00057{transform:matrix(0.326875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326875,0.000000,0.000000,0.250000,0,0);}
.m14_c00057{transform:matrix(0.328232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328232,0.000000,0.000000,0.250000,0,0);}
.mbc_c00057{transform:matrix(0.329817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329817,0.000000,0.000000,0.250000,0,0);}
.mb5_c00057{transform:matrix(0.329979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329979,0.000000,0.000000,0.250000,0,0);}
.m8f_c00057{transform:matrix(0.330193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330193,0.000000,0.000000,0.250000,0,0);}
.m9c_c00057{transform:matrix(0.330718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330718,0.000000,0.000000,0.250000,0,0);}
.m29_c00057{transform:matrix(0.331235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331235,0.000000,0.000000,0.250000,0,0);}
.m16_c00057{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.mac_c00057{transform:matrix(0.334506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334506,0.000000,0.000000,0.250000,0,0);}
.m65_c00057{transform:matrix(0.334596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334596,0.000000,0.000000,0.250000,0,0);}
.mb6_c00057{transform:matrix(0.334684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334684,0.000000,0.000000,0.250000,0,0);}
.m47_c00057{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.mb9_c00057{transform:matrix(0.340056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340056,0.000000,0.000000,0.250000,0,0);}
.m1e_c00057{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.m95_c00057{transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);}
.m10_c00057{transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);}
.m2d_c00057{transform:matrix(0.347223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347223,0.000000,0.000000,0.250000,0,0);}
.m5c_c00057{transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);}
.m19_c00057{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.mb0_c00057{transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);}
.m9_c00057{transform:matrix(0.350093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350093,0.000000,0.000000,0.250000,0,0);}
.m35_c00057{transform:matrix(0.351332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351332,0.000000,0.000000,0.250000,0,0);}
.m13_c00057{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.maa_c00057{transform:matrix(0.361926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361926,0.000000,0.000000,0.250000,0,0);}
.mb2_c00057{transform:matrix(0.365735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365735,0.000000,0.000000,0.250000,0,0);}
.m7c_c00057{transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);}
.m85_c00057{transform:matrix(0.368506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368506,0.000000,0.000000,0.250000,0,0);}
.mbe_c00057{transform:matrix(0.402409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402409,0.000000,0.000000,0.250000,0,0);}
.v0_c00057{vertical-align:0.000000px;}
.v1_c00057{vertical-align:4.276800px;}
.lsa_c00057{letter-spacing:-2.744280px;}
.ls10_c00057{letter-spacing:-2.375762px;}
.lsc_c00057{letter-spacing:-1.920996px;}
.lse_c00057{letter-spacing:-1.685772px;}
.ls8_c00057{letter-spacing:-1.442707px;}
.ls7_c00057{letter-spacing:-1.427026px;}
.ls2_c00057{letter-spacing:0.000000px;}
.ls0_c00057{letter-spacing:1.677931px;}
.ls9_c00057{letter-spacing:2.854051px;}
.lsb_c00057{letter-spacing:3.112798px;}
.ls11_c00057{letter-spacing:3.465000px;}
.ls5_c00057{letter-spacing:3.724380px;}
.ls4_c00057{letter-spacing:3.920400px;}
.ls3_c00057{letter-spacing:4.395610px;}
.ls1_c00057{letter-spacing:13.127400px;}
.lsf_c00057{letter-spacing:51.321798px;}
.lsd_c00057{letter-spacing:54.172998px;}
.ls6_c00057{letter-spacing:55.598598px;}
.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:-19.602000px;}
.ws1_c00057{word-spacing:0.000000px;}
._4_c00057{width:4.939704px;}
._0_c00057{width:6.429060px;}
._5_c00057{width:9.095328px;}
._2_c00057{width:21.797424px;}
._1_c00057{width:28.082340px;}
._6_c00057{width:32.696136px;}
._3_c00057{width:34.656336px;}
.fc0_c00057{color:transparent;}
.fs2_c00057{font-size:22.176000px;}
.fs0_c00057{font-size:27.720000px;}
.fs5_c00057{font-size:50.292000px;}
.fs8_c00057{font-size:51.321798px;}
.fsb_c00057{font-size:52.272000px;}
.fs6_c00057{font-size:54.172998px;}
.fs4_c00057{font-size:55.598598px;}
.fsc_c00057{font-size:66.132198px;}
.fsd_c00057{font-size:66.330000px;}
.fsa_c00057{font-size:69.300000px;}
.fs9_c00057{font-size:75.240000px;}
.fs7_c00057{font-size:77.616198px;}
.fs3_c00057{font-size:78.408000px;}
.fs1_c00057{font-size:87.912198px;}
.y0_c00057{bottom:0.000000px;}
.y1_c00057{bottom:76.500000px;}
.y1f_c00057{bottom:139.615785px;}
.y1e_c00057{bottom:169.558335px;}
.y1d_c00057{bottom:236.917935px;}
.y1c_c00057{bottom:269.701785px;}
.y2_c00057{bottom:289.665135px;}
.y1b_c00057{bottom:301.777785px;}
.y1a_c00057{bottom:334.215135px;}
.y19_c00057{bottom:366.998985px;}
.y18_c00057{bottom:399.436335px;}
.y17_c00057{bottom:431.507385px;}
.y16_c00057{bottom:464.657535px;}
.y15_c00057{bottom:497.446335px;}
.y14_c00057{bottom:529.160985px;}
.y12_c00057{bottom:542.704185px;}
.y13_c00057{bottom:543.065535px;}
.y11_c00057{bottom:561.949785px;}
.y10_c00057{bottom:595.099935px;}
.yf_c00057{bottom:627.170985px;}
.ye_c00057{bottom:659.251935px;}
.yd_c00057{bottom:691.684335px;}
.yc_c00057{bottom:710.212185px;}
.yb_c00057{bottom:724.116735px;}
.ya_c00057{bottom:755.836335px;}
.y9_c00057{bottom:788.268735px;}
.y8_c00057{bottom:820.339785px;}
.y7_c00057{bottom:853.846335px;}
.y6_c00057{bottom:887.347935px;}
.y5_c00057{bottom:920.844585px;}
.y4_c00057{bottom:972.171135px;}
.y3_c00057{bottom:1074.452985px;}
.h4_c00057{height:23.128875px;}
.h2_c00057{height:28.911094px;}
.ha_c00057{height:34.180317px;}
.h8_c00057{height:36.079217px;}
.h6_c00057{height:37.028666px;}
.h7_c00057{height:49.358848px;}
.he_c00057{height:69.180117px;}
.hd_c00057{height:69.181936px;}
.hc_c00057{height:72.277734px;}
.h5_c00057{height:76.953164px;}
.hb_c00057{height:78.472969px;}
.h9_c00057{height:80.951269px;}
.h3_c00057{height:86.281015px;}
.h1_c00057{height:1110.000000px;}
.h0_c00057{height:1263.000000px;}
.w1_c00057{width:733.500000px;}
.w0_c00057{width:892.500000px;}
.x0_c00057{left:0.000000px;}
.x2_c00057{left:26.279085px;}
.x2f_c00057{left:52.068585px;}
.x18_c00057{left:53.073435px;}
.x5_c00057{left:55.048485px;}
.x5b_c00057{left:73.744635px;}
.x6_c00057{left:75.922635px;}
.x1_c00057{left:79.500000px;}
.x23_c00057{left:85.352385px;}
.x62_c00057{left:86.579985px;}
.x2a_c00057{left:96.039435px;}
.x5c_c00057{left:107.409585px;}
.x7_c00057{left:110.255835px;}
.x4c_c00057{left:118.804485px;}
.x24_c00057{left:128.635185px;}
.x38_c00057{left:129.897435px;}
.x30_c00057{left:139.876635px;}
.x4e_c00057{left:141.688335px;}
.x10_c00057{left:143.049585px;}
.x44_c00057{left:151.905135px;}
.x19_c00057{left:161.706135px;}
.x63_c00057{left:163.740585px;}
.x2b_c00057{left:173.016885px;}
.x6a_c00057{left:175.110735px;}
.x25_c00057{left:183.199035px;}
.x5d_c00057{left:184.743435px;}
.x49_c00057{left:196.143285px;}
.x1a_c00057{left:206.741235px;}
.x8_c00057{left:219.705285px;}
.x26_c00057{left:228.946935px;}
.x54_c00057{left:238.797435px;}
.x31_c00057{left:239.802285px;}
.x5e_c00057{left:241.411035px;}
.x39_c00057{left:250.202235px;}
.x4f_c00057{left:252.013935px;}
.x9_c00057{left:254.028585px;}
.x11_c00057{left:255.137385px;}
.x3d_c00057{left:262.116885px;}
.x45_c00057{left:273.165285px;}
.x12_c00057{left:275.140335px;}
.x32_c00057{left:284.881935px;}
.x3e_c00057{left:295.969935px;}
.x1b_c00057{left:306.617385px;}
.x13_c00057{left:317.819235px;}
.x64_c00057{left:319.150785px;}
.x2c_c00057{left:329.100285px;}
.xa_c00057{left:330.248685px;}
.xb_c00057{left:334.520535px;}
.x3f_c00057{left:338.901285px;}
.x5f_c00057{left:340.524885px;}
.x50_c00057{left:351.449535px;}
.x27_c00057{left:361.859385px;}
.x60_c00057{left:363.626535px;}
.x1c_c00057{left:372.407835px;}
.x4d_c00057{left:374.358135px;}
.x14_c00057{left:385.965885px;}
.x3a_c00057{left:396.093585px;}
.x33_c00057{left:406.102485px;}
.x15_c00057{left:407.602335px;}
.x55_c00057{left:417.507285px;}
.x67_c00057{left:418.883385px;}
.x51_c00057{left:428.407185px;}
.x1d_c00057{left:439.213035px;}
.x56_c00057{left:440.326785px;}
.x46_c00057{left:450.013935px;}
.xc_c00057{left:452.375085px;}
.x34_c00057{left:461.344485px;}
.x6b_c00057{left:462.383985px;}
.x1e_c00057{left:472.353285px;}
.x40_c00057{left:473.754135px;}
.x28_c00057{left:483.515535px;}
.x2d_c00057{left:495.073785px;}
.x61_c00057{left:496.835985px;}
.x35_c00057{left:506.206335px;}
.x16_c00057{left:508.300185px;}
.x3b_c00057{left:516.586485px;}
.x68_c00057{left:518.249685px;}
.x41_c00057{left:527.991285px;}
.x2e_c00057{left:529.015935px;}
.x17_c00057{left:539.920785px;}
.x4_c00057{left:544.509435px;}
.x1f_c00057{left:549.375285px;}
.x57_c00057{left:550.444485px;}
.xd_c00057{left:551.528535px;}
.x47_c00057{left:560.745435px;}
.x58_c00057{left:572.259135px;}
.x20_c00057{left:582.020535px;}
.x42_c00057{left:583.233285px;}
.x48_c00057{left:593.801535px;}
.x65_c00057{left:594.870735px;}
.x36_c00057{left:604.062885px;}
.xe_c00057{left:606.245835px;}
.x21_c00057{left:616.229985px;}
.x3_c00057{left:627.723885px;}
.x69_c00057{left:628.867335px;}
.x29_c00057{left:638.475285px;}
.xf_c00057{left:640.138485px;}
.x22_c00057{left:649.162335px;}
.x43_c00057{left:652.657035px;}
.x37_c00057{left:660.542385px;}
.x59_c00057{left:661.918485px;}
.x4a_c00057{left:669.452385px;}
.x4b_c00057{left:672.263985px;}
.x52_c00057{left:674.729085px;}
.x53_c00057{left:677.065485px;}
.x3c_c00057{left:679.109835px;}
.x66_c00057{left:681.881835px;}
.x5a_c00057{left:694.766685px;}
@media print{
.v0_c00057{vertical-align:0.000000pt;}
.v1_c00057{vertical-align:3.801600pt;}
.lsa_c00057{letter-spacing:-2.439360pt;}
.ls10_c00057{letter-spacing:-2.111789pt;}
.lsc_c00057{letter-spacing:-1.707552pt;}
.lse_c00057{letter-spacing:-1.498464pt;}
.ls8_c00057{letter-spacing:-1.282406pt;}
.ls7_c00057{letter-spacing:-1.268467pt;}
.ls2_c00057{letter-spacing:0.000000pt;}
.ls0_c00057{letter-spacing:1.491494pt;}
.ls9_c00057{letter-spacing:2.536934pt;}
.lsb_c00057{letter-spacing:2.766931pt;}
.ls11_c00057{letter-spacing:3.080000pt;}
.ls5_c00057{letter-spacing:3.310560pt;}
.ls4_c00057{letter-spacing:3.484800pt;}
.ls3_c00057{letter-spacing:3.907209pt;}
.ls1_c00057{letter-spacing:11.668800pt;}
.lsf_c00057{letter-spacing:45.619376pt;}
.lsd_c00057{letter-spacing:48.153776pt;}
.ls6_c00057{letter-spacing:49.420976pt;}
.ws0_c00057{word-spacing:-17.424000pt;}
.ws1_c00057{word-spacing:0.000000pt;}
._4_c00057{width:4.390848pt;}
._0_c00057{width:5.714720pt;}
._5_c00057{width:8.084736pt;}
._2_c00057{width:19.375488pt;}
._1_c00057{width:24.962080pt;}
._6_c00057{width:29.063232pt;}
._3_c00057{width:30.805632pt;}
.fs2_c00057{font-size:19.712000pt;}
.fs0_c00057{font-size:24.640000pt;}
.fs5_c00057{font-size:44.704000pt;}
.fs8_c00057{font-size:45.619376pt;}
.fsb_c00057{font-size:46.464000pt;}
.fs6_c00057{font-size:48.153776pt;}
.fs4_c00057{font-size:49.420976pt;}
.fsc_c00057{font-size:58.784176pt;}
.fsd_c00057{font-size:58.960000pt;}
.fsa_c00057{font-size:61.600000pt;}
.fs9_c00057{font-size:66.880000pt;}
.fs7_c00057{font-size:68.992176pt;}
.fs3_c00057{font-size:69.696000pt;}
.fs1_c00057{font-size:78.144176pt;}
.y0_c00057{bottom:0.000000pt;}
.y1_c00057{bottom:68.000000pt;}
.y1f_c00057{bottom:124.102920pt;}
.y1e_c00057{bottom:150.718520pt;}
.y1d_c00057{bottom:210.593720pt;}
.y1c_c00057{bottom:239.734920pt;}
.y2_c00057{bottom:257.480120pt;}
.y1b_c00057{bottom:268.246920pt;}
.y1a_c00057{bottom:297.080120pt;}
.y19_c00057{bottom:326.221320pt;}
.y18_c00057{bottom:355.054520pt;}
.y17_c00057{bottom:383.562120pt;}
.y16_c00057{bottom:413.028920pt;}
.y15_c00057{bottom:442.174520pt;}
.y14_c00057{bottom:470.365320pt;}
.y12_c00057{bottom:482.403720pt;}
.y13_c00057{bottom:482.724920pt;}
.y11_c00057{bottom:499.510920pt;}
.y10_c00057{bottom:528.977720pt;}
.yf_c00057{bottom:557.485320pt;}
.ye_c00057{bottom:586.001720pt;}
.yd_c00057{bottom:614.830520pt;}
.yc_c00057{bottom:631.299720pt;}
.yb_c00057{bottom:643.659320pt;}
.ya_c00057{bottom:671.854520pt;}
.y9_c00057{bottom:700.683320pt;}
.y8_c00057{bottom:729.190920pt;}
.y7_c00057{bottom:758.974520pt;}
.y6_c00057{bottom:788.753720pt;}
.y5_c00057{bottom:818.528520pt;}
.y4_c00057{bottom:864.152120pt;}
.y3_c00057{bottom:955.069320pt;}
.h4_c00057{height:20.559000pt;}
.h2_c00057{height:25.698750pt;}
.ha_c00057{height:30.382504pt;}
.h8_c00057{height:32.070415pt;}
.h6_c00057{height:32.914370pt;}
.h7_c00057{height:43.874531pt;}
.he_c00057{height:61.493438pt;}
.hd_c00057{height:61.495054pt;}
.hc_c00057{height:64.246875pt;}
.h5_c00057{height:68.402813pt;}
.hb_c00057{height:69.753750pt;}
.h9_c00057{height:71.956684pt;}
.h3_c00057{height:76.694235pt;}
.h1_c00057{height:986.666667pt;}
.h0_c00057{height:1122.666667pt;}
.w1_c00057{width:652.000000pt;}
.w0_c00057{width:793.333333pt;}
.x0_c00057{left:0.000000pt;}
.x2_c00057{left:23.359187pt;}
.x2f_c00057{left:46.283187pt;}
.x18_c00057{left:47.176387pt;}
.x5_c00057{left:48.931987pt;}
.x5b_c00057{left:65.550787pt;}
.x6_c00057{left:67.486787pt;}
.x1_c00057{left:70.666667pt;}
.x23_c00057{left:75.868787pt;}
.x62_c00057{left:76.959987pt;}
.x2a_c00057{left:85.368387pt;}
.x5c_c00057{left:95.475187pt;}
.x7_c00057{left:98.005187pt;}
.x4c_c00057{left:105.603987pt;}
.x24_c00057{left:114.342387pt;}
.x38_c00057{left:115.464387pt;}
.x30_c00057{left:124.334787pt;}
.x4e_c00057{left:125.945187pt;}
.x10_c00057{left:127.155187pt;}
.x44_c00057{left:135.026787pt;}
.x19_c00057{left:143.738787pt;}
.x63_c00057{left:145.547187pt;}
.x2b_c00057{left:153.792787pt;}
.x6a_c00057{left:155.653987pt;}
.x25_c00057{left:162.843587pt;}
.x5d_c00057{left:164.216387pt;}
.x49_c00057{left:174.349587pt;}
.x1a_c00057{left:183.769987pt;}
.x8_c00057{left:195.293587pt;}
.x26_c00057{left:203.508387pt;}
.x54_c00057{left:212.264387pt;}
.x31_c00057{left:213.157587pt;}
.x5e_c00057{left:214.587587pt;}
.x39_c00057{left:222.401987pt;}
.x4f_c00057{left:224.012387pt;}
.x9_c00057{left:225.803187pt;}
.x11_c00057{left:226.788787pt;}
.x3d_c00057{left:232.992787pt;}
.x45_c00057{left:242.813587pt;}
.x12_c00057{left:244.569187pt;}
.x32_c00057{left:253.228387pt;}
.x3e_c00057{left:263.084387pt;}
.x1b_c00057{left:272.548787pt;}
.x13_c00057{left:282.505987pt;}
.x64_c00057{left:283.689587pt;}
.x2c_c00057{left:292.533587pt;}
.xa_c00057{left:293.554387pt;}
.xb_c00057{left:297.351587pt;}
.x3f_c00057{left:301.245587pt;}
.x5f_c00057{left:302.688787pt;}
.x50_c00057{left:312.399587pt;}
.x27_c00057{left:321.652787pt;}
.x60_c00057{left:323.223587pt;}
.x1c_c00057{left:331.029187pt;}
.x4d_c00057{left:332.762787pt;}
.x14_c00057{left:343.080787pt;}
.x3a_c00057{left:352.083187pt;}
.x33_c00057{left:360.979987pt;}
.x15_c00057{left:362.313187pt;}
.x55_c00057{left:371.117587pt;}
.x67_c00057{left:372.340787pt;}
.x51_c00057{left:380.806387pt;}
.x1d_c00057{left:390.411587pt;}
.x56_c00057{left:391.401587pt;}
.x46_c00057{left:400.012387pt;}
.xc_c00057{left:402.111187pt;}
.x34_c00057{left:410.083987pt;}
.x6b_c00057{left:411.007987pt;}
.x1e_c00057{left:419.869587pt;}
.x40_c00057{left:421.114787pt;}
.x28_c00057{left:429.791587pt;}
.x2d_c00057{left:440.065587pt;}
.x61_c00057{left:441.631987pt;}
.x35_c00057{left:449.961187pt;}
.x16_c00057{left:451.822387pt;}
.x3b_c00057{left:459.187987pt;}
.x68_c00057{left:460.666387pt;}
.x41_c00057{left:469.325587pt;}
.x2e_c00057{left:470.236387pt;}
.x17_c00057{left:479.929587pt;}
.x4_c00057{left:484.008387pt;}
.x1f_c00057{left:488.333587pt;}
.x57_c00057{left:489.283987pt;}
.xd_c00057{left:490.247587pt;}
.x47_c00057{left:498.440387pt;}
.x58_c00057{left:508.674787pt;}
.x20_c00057{left:517.351587pt;}
.x42_c00057{left:518.429587pt;}
.x48_c00057{left:527.823587pt;}
.x65_c00057{left:528.773987pt;}
.x36_c00057{left:536.944787pt;}
.xe_c00057{left:538.885187pt;}
.x21_c00057{left:547.759987pt;}
.x3_c00057{left:557.976787pt;}
.x69_c00057{left:558.993187pt;}
.x29_c00057{left:567.533587pt;}
.xf_c00057{left:569.011987pt;}
.x22_c00057{left:577.033187pt;}
.x43_c00057{left:580.139587pt;}
.x37_c00057{left:587.148787pt;}
.x59_c00057{left:588.371987pt;}
.x4a_c00057{left:595.068787pt;}
.x4b_c00057{left:597.567987pt;}
.x52_c00057{left:599.759187pt;}
.x53_c00057{left:601.835987pt;}
.x3c_c00057{left:603.653187pt;}
.x66_c00057{left:606.117187pt;}
.x5a_c00057{left:617.570387pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b6fa0ffe89726d11b2a8ed4f.woff2')format("woff");}.ff1_c00058{font-family:ff1_c00058;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00058;src:url('chunks/assets/font_16b6555d866b82002b71e0f3.woff2')format("woff");}.ff2_c00058{font-family:ff2_c00058;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00058;src:url('chunks/assets/font_dcb8f024af93136852604624.woff2')format("woff");}.ff3_c00058{font-family:ff3_c00058;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m77_c00058{transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);}
.m31_c00058{transform:matrix(0.238565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238565,0.000000,0.000000,0.250000,0,0);}
.mb8_c00058{transform:matrix(0.240735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240735,0.000000,0.000000,0.250000,0,0);}
.m0_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);}
.ma1_c00058{transform:matrix(0.253545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253545,0.000000,0.000000,0.250000,0,0);}
.m6f_c00058{transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);}
.m12_c00058{transform:matrix(0.254300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254300,0.000000,0.000000,0.250000,0,0);}
.m1_c00058{transform:matrix(0.256089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256089,0.000000,0.000000,0.250000,0,0);}
.m81_c00058{transform:matrix(0.256367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256367,0.000000,0.000000,0.250000,0,0);}
.m52_c00058{transform:matrix(0.257673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257673,0.000000,0.000000,0.250000,0,0);}
.m67_c00058{transform:matrix(0.257677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257677,0.000000,0.000000,0.250000,0,0);}
.m17_c00058{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.ma5_c00058{transform:matrix(0.258853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258853,0.000000,0.000000,0.250000,0,0);}
.m4d_c00058{transform:matrix(0.260016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260016,0.000000,0.000000,0.250000,0,0);}
.m15_c00058{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m93_c00058{transform:matrix(0.262025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262025,0.000000,0.000000,0.250000,0,0);}
.m1f_c00058{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m9c_c00058{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.mb9_c00058{transform:matrix(0.265150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265150,0.000000,0.000000,0.250000,0,0);}
.ma2_c00058{transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);}
.m51_c00058{transform:matrix(0.266061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266061,0.000000,0.000000,0.250000,0,0);}
.m68_c00058{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m48_c00058{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.m13_c00058{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m49_c00058{transform:matrix(0.268244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268244,0.000000,0.000000,0.250000,0,0);}
.m7b_c00058{transform:matrix(0.268484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268484,0.000000,0.000000,0.250000,0,0);}
.m21_c00058{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.m8_c00058{transform:matrix(0.269336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269336,0.000000,0.000000,0.250000,0,0);}
.m9f_c00058{transform:matrix(0.270773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270773,0.000000,0.000000,0.250000,0,0);}
.me_c00058{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.mbd_c00058{transform:matrix(0.270977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270977,0.000000,0.000000,0.250000,0,0);}
.m73_c00058{transform:matrix(0.271027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271027,0.000000,0.000000,0.250000,0,0);}
.m80_c00058{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m6c_c00058{transform:matrix(0.273263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273263,0.000000,0.000000,0.250000,0,0);}
.m2e_c00058{transform:matrix(0.273832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273832,0.000000,0.000000,0.250000,0,0);}
.m3e_c00058{transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);}
.m5f_c00058{transform:matrix(0.274295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274295,0.000000,0.000000,0.250000,0,0);}
.m8a_c00058{transform:matrix(0.274640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274640,0.000000,0.000000,0.250000,0,0);}
.m59_c00058{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m8b_c00058{transform:matrix(0.275743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275743,0.000000,0.000000,0.250000,0,0);}
.m2f_c00058{transform:matrix(0.275954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275954,0.000000,0.000000,0.250000,0,0);}
.m5e_c00058{transform:matrix(0.276659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276659,0.000000,0.000000,0.250000,0,0);}
.m1c_c00058{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m70_c00058{transform:matrix(0.277888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277888,0.000000,0.000000,0.250000,0,0);}
.m6_c00058{transform:matrix(0.277972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277972,0.000000,0.000000,0.250000,0,0);}
.m2c_c00058{transform:matrix(0.278051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278051,0.000000,0.000000,0.250000,0,0);}
.m33_c00058{transform:matrix(0.278754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278754,0.000000,0.000000,0.250000,0,0);}
.m43_c00058{transform:matrix(0.278826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278826,0.000000,0.000000,0.250000,0,0);}
.m84_c00058{transform:matrix(0.279018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279018,0.000000,0.000000,0.250000,0,0);}
.m20_c00058{transform:matrix(0.279239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279239,0.000000,0.000000,0.250000,0,0);}
.mb5_c00058{transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);}
.m78_c00058{transform:matrix(0.279774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279774,0.000000,0.000000,0.250000,0,0);}
.mb3_c00058{transform:matrix(0.279794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279794,0.000000,0.000000,0.250000,0,0);}
.m25_c00058{transform:matrix(0.279927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279927,0.000000,0.000000,0.250000,0,0);}
.m76_c00058{transform:matrix(0.280086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280086,0.000000,0.000000,0.250000,0,0);}
.m4f_c00058{transform:matrix(0.280329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280329,0.000000,0.000000,0.250000,0,0);}
.m69_c00058{transform:matrix(0.281249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281249,0.000000,0.000000,0.250000,0,0);}
.m26_c00058{transform:matrix(0.281385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281385,0.000000,0.000000,0.250000,0,0);}
.mb0_c00058{transform:matrix(0.283050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283050,0.000000,0.000000,0.250000,0,0);}
.m16_c00058{transform:matrix(0.283271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283271,0.000000,0.000000,0.250000,0,0);}
.m27_c00058{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m37_c00058{transform:matrix(0.283943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283943,0.000000,0.000000,0.250000,0,0);}
.m19_c00058{transform:matrix(0.283944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283944,0.000000,0.000000,0.250000,0,0);}
.m7e_c00058{transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);}
.m29_c00058{transform:matrix(0.284269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284269,0.000000,0.000000,0.250000,0,0);}
.mbb_c00058{transform:matrix(0.284489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284489,0.000000,0.000000,0.250000,0,0);}
.m42_c00058{transform:matrix(0.284537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284537,0.000000,0.000000,0.250000,0,0);}
.m7a_c00058{transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);}
.m11_c00058{transform:matrix(0.285352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285352,0.000000,0.000000,0.250000,0,0);}
.m41_c00058{transform:matrix(0.286246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286246,0.000000,0.000000,0.250000,0,0);}
.mb1_c00058{transform:matrix(0.287040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287040,0.000000,0.000000,0.250000,0,0);}
.ma4_c00058{transform:matrix(0.287284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287284,0.000000,0.000000,0.250000,0,0);}
.m5_c00058{transform:matrix(0.287303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287303,0.000000,0.000000,0.250000,0,0);}
.maa_c00058{transform:matrix(0.287691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287691,0.000000,0.000000,0.250000,0,0);}
.m5d_c00058{transform:matrix(0.287845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287845,0.000000,0.000000,0.250000,0,0);}
.m8f_c00058{transform:matrix(0.288451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288451,0.000000,0.000000,0.250000,0,0);}
.m71_c00058{transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);}
.m4e_c00058{transform:matrix(0.289097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289097,0.000000,0.000000,0.250000,0,0);}
.m98_c00058{transform:matrix(0.289491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289491,0.000000,0.000000,0.250000,0,0);}
.ma8_c00058{transform:matrix(0.290117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290117,0.000000,0.000000,0.250000,0,0);}
.m3a_c00058{transform:matrix(0.290179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290179,0.000000,0.000000,0.250000,0,0);}
.m92_c00058{transform:matrix(0.290354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290354,0.000000,0.000000,0.250000,0,0);}
.m61_c00058{transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);}
.m1b_c00058{transform:matrix(0.290972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290972,0.000000,0.000000,0.250000,0,0);}
.mad_c00058{transform:matrix(0.291133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291133,0.000000,0.000000,0.250000,0,0);}
.m4b_c00058{transform:matrix(0.291770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291770,0.000000,0.000000,0.250000,0,0);}
.m7f_c00058{transform:matrix(0.292987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292987,0.000000,0.000000,0.250000,0,0);}
.m24_c00058{transform:matrix(0.293049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293049,0.000000,0.000000,0.250000,0,0);}
.m54_c00058{transform:matrix(0.293286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293286,0.000000,0.000000,0.250000,0,0);}
.m35_c00058{transform:matrix(0.293418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293418,0.000000,0.000000,0.250000,0,0);}
.m74_c00058{transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);}
.m85_c00058{transform:matrix(0.293770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293770,0.000000,0.000000,0.250000,0,0);}
.mc_c00058{transform:matrix(0.293864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293864,0.000000,0.000000,0.250000,0,0);}
.m64_c00058{transform:matrix(0.294891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294891,0.000000,0.000000,0.250000,0,0);}
.m3f_c00058{transform:matrix(0.295132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295132,0.000000,0.000000,0.250000,0,0);}
.m9_c00058{transform:matrix(0.295136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295136,0.000000,0.000000,0.250000,0,0);}
.m1e_c00058{transform:matrix(0.296093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296093,0.000000,0.000000,0.250000,0,0);}
.m72_c00058{transform:matrix(0.296133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296133,0.000000,0.000000,0.250000,0,0);}
.m99_c00058{transform:matrix(0.297479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297479,0.000000,0.000000,0.250000,0,0);}
.m14_c00058{transform:matrix(0.297746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297746,0.000000,0.000000,0.250000,0,0);}
.m50_c00058{transform:matrix(0.297759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297759,0.000000,0.000000,0.250000,0,0);}
.m53_c00058{transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);}
.m23_c00058{transform:matrix(0.298729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298729,0.000000,0.000000,0.250000,0,0);}
.m38_c00058{transform:matrix(0.299765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299765,0.000000,0.000000,0.250000,0,0);}
.m86_c00058{transform:matrix(0.300113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300113,0.000000,0.000000,0.250000,0,0);}
.m6b_c00058{transform:matrix(0.300117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300117,0.000000,0.000000,0.250000,0,0);}
.m8c_c00058{transform:matrix(0.300345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300345,0.000000,0.000000,0.250000,0,0);}
.mb2_c00058{transform:matrix(0.300353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300353,0.000000,0.000000,0.250000,0,0);}
.m79_c00058{transform:matrix(0.300495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300495,0.000000,0.000000,0.250000,0,0);}
.m47_c00058{transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);}
.m89_c00058{transform:matrix(0.301214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301214,0.000000,0.000000,0.250000,0,0);}
.ma6_c00058{transform:matrix(0.301464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301464,0.000000,0.000000,0.250000,0,0);}
.m3b_c00058{transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);}
.m57_c00058{transform:matrix(0.301660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301660,0.000000,0.000000,0.250000,0,0);}
.ma0_c00058{transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);}
.m8e_c00058{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m39_c00058{transform:matrix(0.303526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303526,0.000000,0.000000,0.250000,0,0);}
.m95_c00058{transform:matrix(0.303723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303723,0.000000,0.000000,0.250000,0,0);}
.mb_c00058{transform:matrix(0.303809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303809,0.000000,0.000000,0.250000,0,0);}
.m3_c00058{transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);}
.m7_c00058{transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);}
.mb7_c00058{transform:matrix(0.305820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305820,0.000000,0.000000,0.250000,0,0);}
.m2a_c00058{transform:matrix(0.305896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305896,0.000000,0.000000,0.250000,0,0);}
.ma7_c00058{transform:matrix(0.305932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305932,0.000000,0.000000,0.250000,0,0);}
.m9b_c00058{transform:matrix(0.306104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306104,0.000000,0.000000,0.250000,0,0);}
.m65_c00058{transform:matrix(0.306531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306531,0.000000,0.000000,0.250000,0,0);}
.m32_c00058{transform:matrix(0.306542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306542,0.000000,0.000000,0.250000,0,0);}
.mb6_c00058{transform:matrix(0.307020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307020,0.000000,0.000000,0.250000,0,0);}
.m2b_c00058{transform:matrix(0.307057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307057,0.000000,0.000000,0.250000,0,0);}
.mab_c00058{transform:matrix(0.307101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307101,0.000000,0.000000,0.250000,0,0);}
.mae_c00058{transform:matrix(0.307282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307282,0.000000,0.000000,0.250000,0,0);}
.m5c_c00058{transform:matrix(0.308280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308280,0.000000,0.000000,0.250000,0,0);}
.m56_c00058{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m90_c00058{transform:matrix(0.308759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308759,0.000000,0.000000,0.250000,0,0);}
.m2d_c00058{transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);}
.m8d_c00058{transform:matrix(0.309110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309110,0.000000,0.000000,0.250000,0,0);}
.m82_c00058{transform:matrix(0.310027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310027,0.000000,0.000000,0.250000,0,0);}
.m3d_c00058{transform:matrix(0.310884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310884,0.000000,0.000000,0.250000,0,0);}
.md_c00058{transform:matrix(0.311557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311557,0.000000,0.000000,0.250000,0,0);}
.m3c_c00058{transform:matrix(0.311689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311689,0.000000,0.000000,0.250000,0,0);}
.m83_c00058{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.ma3_c00058{transform:matrix(0.312907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312907,0.000000,0.000000,0.250000,0,0);}
.m4c_c00058{transform:matrix(0.313344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313344,0.000000,0.000000,0.250000,0,0);}
.m34_c00058{transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);}
.m4_c00058{transform:matrix(0.314278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314278,0.000000,0.000000,0.250000,0,0);}
.m66_c00058{transform:matrix(0.314792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314792,0.000000,0.000000,0.250000,0,0);}
.m10_c00058{transform:matrix(0.314987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314987,0.000000,0.000000,0.250000,0,0);}
.mba_c00058{transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);}
.m45_c00058{transform:matrix(0.316410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316410,0.000000,0.000000,0.250000,0,0);}
.m7d_c00058{transform:matrix(0.317477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317477,0.000000,0.000000,0.250000,0,0);}
.m87_c00058{transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);}
.m5a_c00058{transform:matrix(0.318980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318980,0.000000,0.000000,0.250000,0,0);}
.m9d_c00058{transform:matrix(0.319821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319821,0.000000,0.000000,0.250000,0,0);}
.m94_c00058{transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);}
.mbc_c00058{transform:matrix(0.320552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320552,0.000000,0.000000,0.250000,0,0);}
.m60_c00058{transform:matrix(0.320815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320815,0.000000,0.000000,0.250000,0,0);}
.m88_c00058{transform:matrix(0.321773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321773,0.000000,0.000000,0.250000,0,0);}
.ma9_c00058{transform:matrix(0.322508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322508,0.000000,0.000000,0.250000,0,0);}
.maf_c00058{transform:matrix(0.322669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322669,0.000000,0.000000,0.250000,0,0);}
.m6d_c00058{transform:matrix(0.323082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323082,0.000000,0.000000,0.250000,0,0);}
.m30_c00058{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.mb4_c00058{transform:matrix(0.323918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323918,0.000000,0.000000,0.250000,0,0);}
.m46_c00058{transform:matrix(0.324900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324900,0.000000,0.000000,0.250000,0,0);}
.m1d_c00058{transform:matrix(0.325282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325282,0.000000,0.000000,0.250000,0,0);}
.m6e_c00058{transform:matrix(0.326014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326014,0.000000,0.000000,0.250000,0,0);}
.m63_c00058{transform:matrix(0.326330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326330,0.000000,0.000000,0.250000,0,0);}
.m22_c00058{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.m97_c00058{transform:matrix(0.327523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327523,0.000000,0.000000,0.250000,0,0);}
.m18_c00058{transform:matrix(0.330443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330443,0.000000,0.000000,0.250000,0,0);}
.m96_c00058{transform:matrix(0.330617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330617,0.000000,0.000000,0.250000,0,0);}
.m62_c00058{transform:matrix(0.330718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330718,0.000000,0.000000,0.250000,0,0);}
.m40_c00058{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m9e_c00058{transform:matrix(0.333376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333376,0.000000,0.000000,0.250000,0,0);}
.m2_c00058{transform:matrix(0.333682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333682,0.000000,0.000000,0.250000,0,0);}
.m28_c00058{transform:matrix(0.338176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338176,0.000000,0.000000,0.250000,0,0);}
.m6a_c00058{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m44_c00058{transform:matrix(0.340270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340270,0.000000,0.000000,0.250000,0,0);}
.m75_c00058{transform:matrix(0.343266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343266,0.000000,0.000000,0.250000,0,0);}
.m1a_c00058{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.ma_c00058{transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);}
.m7c_c00058{transform:matrix(0.346277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346277,0.000000,0.000000,0.250000,0,0);}
.m55_c00058{transform:matrix(0.347852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347852,0.000000,0.000000,0.250000,0,0);}
.mf_c00058{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m36_c00058{transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);}
.m91_c00058{transform:matrix(0.350210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350210,0.000000,0.000000,0.250000,0,0);}
.m5b_c00058{transform:matrix(0.353653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353653,0.000000,0.000000,0.250000,0,0);}
.m4a_c00058{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m58_c00058{transform:matrix(0.355345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355345,0.000000,0.000000,0.250000,0,0);}
.m9a_c00058{transform:matrix(0.369566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369566,0.000000,0.000000,0.250000,0,0);}
.mac_c00058{transform:matrix(0.387067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387067,0.000000,0.000000,0.250000,0,0);}
.v1_c00058{vertical-align:-21.384000px;}
.v0_c00058{vertical-align:0.000000px;}
.ls4_c00058{letter-spacing:-2.744280px;}
.ls10_c00058{letter-spacing:-2.375762px;}
.ls9_c00058{letter-spacing:-1.685772px;}
.ls7_c00058{letter-spacing:-1.285891px;}
.lsb_c00058{letter-spacing:-0.172498px;}
.ls1_c00058{letter-spacing:0.000000px;}
.ls6_c00058{letter-spacing:0.227383px;}
.ls5_c00058{letter-spacing:1.003622px;}
.lsc_c00058{letter-spacing:1.677931px;}
.lsd_c00058{letter-spacing:2.775643px;}
.lse_c00058{letter-spacing:2.948141px;}
.lsf_c00058{letter-spacing:3.112798px;}
.lsa_c00058{letter-spacing:3.246091px;}
.ls8_c00058{letter-spacing:3.564000px;}
.ls3_c00058{letter-spacing:3.920400px;}
.ls2_c00058{letter-spacing:4.296610px;}
.ls0_c00058{letter-spacing:24.037992px;}
.sc__c00058{text-shadow:none;}
.sc0_c00058{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00058{-webkit-text-stroke:0px transparent;}
.sc0_c00058{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00058{word-spacing:-19.602000px;}
.ws2_c00058{word-spacing:0.000000px;}
.ws1_c00058{word-spacing:2.195424px;}
._2_c00058{width:7.135128px;}
._1_c00058{width:9.095328px;}
._0_c00058{width:12.388464px;}
._3_c00058{width:48.534552px;}
.fc0_c00058{color:transparent;}
.fs7_c00058{font-size:21.186000px;}
.fs0_c00058{font-size:22.176000px;}
.fs5_c00058{font-size:53.064000px;}
.fs8_c00058{font-size:60.984000px;}
.fs3_c00058{font-size:63.558000px;}
.fs4_c00058{font-size:66.330000px;}
.fs6_c00058{font-size:71.280000px;}
.fs2_c00058{font-size:78.408000px;}
.fs1_c00058{font-size:85.932198px;}
.y0_c00058{bottom:0.000000px;}
.y1e_c00058{bottom:53.015535px;}
.y1_c00058{bottom:76.500000px;}
.y1d_c00058{bottom:116.454735px;}
.y1c_c00058{bottom:141.759135px;}
.y1b_c00058{bottom:171.340335px;}
.y1a_c00058{bottom:208.044585px;}
.y19_c00058{bottom:273.983535px;}
.y18_c00058{bottom:306.415935px;}
.y17_c00058{bottom:339.204735px;}
.y16_c00058{bottom:371.280735px;}
.y15_c00058{bottom:405.138735px;}
.y14_c00058{bottom:437.214735px;}
.y13_c00058{bottom:469.290735px;}
.y12_c00058{bottom:501.361785px;}
.y11_c00058{bottom:535.937535px;}
.y10_c00058{bottom:568.369935px;}
.yf_c00058{bottom:600.802335px;}
.ye_c00058{bottom:633.591135px;}
.yd_c00058{bottom:666.379935px;}
.yb_c00058{bottom:698.450985px;}
.yc_c00058{bottom:703.801935px;}
.y1f_c00058{bottom:725.898735px;}
.ya_c00058{bottom:730.883385px;}
.y9_c00058{bottom:763.672185px;}
.y8_c00058{bottom:795.753135px;}
.y7_c00058{bottom:828.541935px;}
.y6_c00058{bottom:860.617935px;}
.y5_c00058{bottom:893.045385px;}
.y4_c00058{bottom:925.477785px;}
.y2_c00058{bottom:1047.722985px;}
.y3_c00058{bottom:1075.170735px;}
.h9_c00058{height:22.096336px;}
.h2_c00058{height:23.128875px;}
.h7_c00058{height:52.079414px;}
.ha_c00058{height:63.604406px;}
.h5_c00058{height:66.289008px;}
.h6_c00058{height:69.180117px;}
.h8_c00058{height:74.342813px;}
.h4_c00058{height:76.953164px;}
.h3_c00058{height:84.337753px;}
.h1_c00058{height:1110.000000px;}
.h0_c00058{height:1263.000000px;}
.w1_c00058{width:733.500000px;}
.w0_c00058{width:892.500000px;}
.x0_c00058{left:0.000000px;}
.x2_c00058{left:35.213835px;}
.x2b_c00058{left:45.227685px;}
.x4_c00058{left:46.653285px;}
.x5f_c00058{left:48.276885px;}
.x22_c00058{left:56.766135px;}
.x41_c00058{left:68.042235px;}
.x17_c00058{left:78.214485px;}
.x1_c00058{left:79.500000px;}
.x33_c00058{left:89.985585px;}
.xd_c00058{left:100.934985px;}
.x5_c00058{left:111.329985px;}
.x5d_c00058{left:113.121885px;}
.x23_c00058{left:122.417985px;}
.xe_c00058{left:133.263435px;}
.x49_c00058{left:144.504885px;}
.x60_c00058{left:145.940385px;}
.x6_c00058{left:155.508735px;}
.x4b_c00058{left:156.592785px;}
.x3c_c00058{left:166.675935px;}
.x18_c00058{left:177.655035px;}
.x55_c00058{left:179.224185px;}
.xf_c00058{left:188.767785px;}
.x2c_c00058{left:199.202385px;}
.x4f_c00058{left:200.434935px;}
.x61_c00058{left:201.523935px;}
.x31_c00058{left:210.775485px;}
.x19_c00058{left:222.175335px;}
.x42_c00058{left:223.244535px;}
.x28_c00058{left:233.248485px;}
.x10_c00058{left:244.950285px;}
.x24_c00058{left:255.350235px;}
.x3d_c00058{left:256.404585px;}
.x39_c00058{left:265.958085px;}
.x53_c00058{left:266.962935px;}
.x59_c00058{left:268.106385px;}
.x7_c00058{left:277.070835px;}
.x3e_c00058{left:278.115285px;}
.x1a_c00058{left:288.500385px;}
.x2d_c00058{left:299.429985px;}
.x45_c00058{left:300.677385px;}
.x56_c00058{left:311.656485px;}
.x1b_c00058{left:321.412935px;}
.x62_c00058{left:322.670235px;}
.x4c_c00058{left:331.708935px;}
.x46_c00058{left:333.129585px;}
.x11_c00058{left:344.776935px;}
.x29_c00058{left:355.107585px;}
.x34_c00058{left:356.176785px;}
.x47_c00058{left:366.556935px;}
.x63_c00058{left:367.947885px;}
.x8_c00058{left:377.412285px;}
.x35_c00058{left:388.262685px;}
.x43_c00058{left:390.044685px;}
.x9_c00058{left:399.672435px;}
.x12_c00058{left:410.691135px;}
.x50_c00058{left:412.111785px;}
.x1c_c00058{left:421.071285px;}
.x44_c00058{left:422.482035px;}
.x5b_c00058{left:433.431435px;}
.x1d_c00058{left:443.242335px;}
.x2e_c00058{left:454.582785px;}
.x25_c00058{left:465.977685px;}
.x5a_c00058{left:467.046885px;}
.x2a_c00058{left:476.669685px;}
.x57_c00058{left:477.719085px;}
.x13_c00058{left:488.074485px;}
.x4d_c00058{left:489.475335px;}
.xa_c00058{left:498.766485px;}
.x36_c00058{left:499.810935px;}
.x14_c00058{left:509.889135px;}
.xb_c00058{left:521.214735px;}
.x2f_c00058{left:522.709635px;}
.x1e_c00058{left:531.733485px;}
.x37_c00058{left:532.901685px;}
.x3a_c00058{left:542.049285px;}
.x4a_c00058{left:543.682785px;}
.x1f_c00058{left:553.978785px;}
.x5c_c00058{left:556.062735px;}
.x26_c00058{left:563.309535px;}
.xc_c00058{left:565.042035px;}
.x54_c00058{left:566.457735px;}
.x27_c00058{left:575.714235px;}
.x3f_c00058{left:577.565535px;}
.x20_c00058{left:587.821935px;}
.x40_c00058{left:588.866385px;}
.x32_c00058{left:599.226735px;}
.x15_c00058{left:609.428685px;}
.x58_c00058{left:610.646385px;}
.x3_c00058{left:620.239485px;}
.x30_c00058{left:621.333435px;}
.x16_c00058{left:630.792885px;}
.x51_c00058{left:632.129385px;}
.x4e_c00058{left:642.197685px;}
.x48_c00058{left:643.464885px;}
.x21_c00058{left:652.577835px;}
.x3b_c00058{left:654.117285px;}
.x38_c00058{left:667.239735px;}
.x64_c00058{left:668.378235px;}
.x5e_c00058{left:669.462285px;}
.x52_c00058{left:687.272385px;}
.x65_c00058{left:731.263035px;}
@media print{
.v1_c00058{vertical-align:-19.008000pt;}
.v0_c00058{vertical-align:0.000000pt;}
.ls4_c00058{letter-spacing:-2.439360pt;}
.ls10_c00058{letter-spacing:-2.111789pt;}
.ls9_c00058{letter-spacing:-1.498464pt;}
.ls7_c00058{letter-spacing:-1.143014pt;}
.lsb_c00058{letter-spacing:-0.153331pt;}
.ls1_c00058{letter-spacing:0.000000pt;}
.ls6_c00058{letter-spacing:0.202118pt;}
.ls5_c00058{letter-spacing:0.892109pt;}
.lsc_c00058{letter-spacing:1.491494pt;}
.lsd_c00058{letter-spacing:2.467238pt;}
.lse_c00058{letter-spacing:2.620570pt;}
.lsf_c00058{letter-spacing:2.766931pt;}
.lsa_c00058{letter-spacing:2.885414pt;}
.ls8_c00058{letter-spacing:3.168000pt;}
.ls3_c00058{letter-spacing:3.484800pt;}
.ls2_c00058{letter-spacing:3.819209pt;}
.ls0_c00058{letter-spacing:21.367104pt;}
.ws0_c00058{word-spacing:-17.424000pt;}
.ws2_c00058{word-spacing:0.000000pt;}
.ws1_c00058{word-spacing:1.951488pt;}
._2_c00058{width:6.342336pt;}
._1_c00058{width:8.084736pt;}
._0_c00058{width:11.011968pt;}
._3_c00058{width:43.141824pt;}
.fs7_c00058{font-size:18.832000pt;}
.fs0_c00058{font-size:19.712000pt;}
.fs5_c00058{font-size:47.168000pt;}
.fs8_c00058{font-size:54.208000pt;}
.fs3_c00058{font-size:56.496000pt;}
.fs4_c00058{font-size:58.960000pt;}
.fs6_c00058{font-size:63.360000pt;}
.fs2_c00058{font-size:69.696000pt;}
.fs1_c00058{font-size:76.384176pt;}
.y0_c00058{bottom:0.000000pt;}
.y1e_c00058{bottom:47.124920pt;}
.y1_c00058{bottom:68.000000pt;}
.y1d_c00058{bottom:103.515320pt;}
.y1c_c00058{bottom:126.008120pt;}
.y1b_c00058{bottom:152.302520pt;}
.y1a_c00058{bottom:184.928520pt;}
.y19_c00058{bottom:243.540920pt;}
.y18_c00058{bottom:272.369720pt;}
.y17_c00058{bottom:301.515320pt;}
.y16_c00058{bottom:330.027320pt;}
.y15_c00058{bottom:360.123320pt;}
.y14_c00058{bottom:388.635320pt;}
.y13_c00058{bottom:417.147320pt;}
.y12_c00058{bottom:445.654920pt;}
.y11_c00058{bottom:476.388920pt;}
.y10_c00058{bottom:505.217720pt;}
.yf_c00058{bottom:534.046520pt;}
.ye_c00058{bottom:563.192120pt;}
.yd_c00058{bottom:592.337720pt;}
.yb_c00058{bottom:620.845320pt;}
.yc_c00058{bottom:625.601720pt;}
.y1f_c00058{bottom:645.243320pt;}
.ya_c00058{bottom:649.674120pt;}
.y9_c00058{bottom:678.819720pt;}
.y8_c00058{bottom:707.336120pt;}
.y7_c00058{bottom:736.481720pt;}
.y6_c00058{bottom:764.993720pt;}
.y5_c00058{bottom:793.818120pt;}
.y4_c00058{bottom:822.646920pt;}
.y2_c00058{bottom:931.309320pt;}
.y3_c00058{bottom:955.707320pt;}
.h9_c00058{height:19.641188pt;}
.h2_c00058{height:20.559000pt;}
.h7_c00058{height:46.292813pt;}
.ha_c00058{height:56.537250pt;}
.h5_c00058{height:58.923563pt;}
.h6_c00058{height:61.493438pt;}
.h8_c00058{height:66.082500pt;}
.h4_c00058{height:68.402813pt;}
.h3_c00058{height:74.966891pt;}
.h1_c00058{height:986.666667pt;}
.h0_c00058{height:1122.666667pt;}
.w1_c00058{width:652.000000pt;}
.w0_c00058{width:793.333333pt;}
.x0_c00058{left:0.000000pt;}
.x2_c00058{left:31.301187pt;}
.x2b_c00058{left:40.202387pt;}
.x4_c00058{left:41.469587pt;}
.x5f_c00058{left:42.912787pt;}
.x22_c00058{left:50.458787pt;}
.x41_c00058{left:60.481987pt;}
.x17_c00058{left:69.523987pt;}
.x1_c00058{left:70.666667pt;}
.x33_c00058{left:79.987187pt;}
.xd_c00058{left:89.719987pt;}
.x5_c00058{left:98.959987pt;}
.x5d_c00058{left:100.552787pt;}
.x23_c00058{left:108.815987pt;}
.xe_c00058{left:118.456387pt;}
.x49_c00058{left:128.448787pt;}
.x60_c00058{left:129.724787pt;}
.x6_c00058{left:138.229987pt;}
.x4b_c00058{left:139.193587pt;}
.x3c_c00058{left:148.156387pt;}
.x18_c00058{left:157.915587pt;}
.x55_c00058{left:159.310387pt;}
.xf_c00058{left:167.793587pt;}
.x2c_c00058{left:177.068787pt;}
.x4f_c00058{left:178.164387pt;}
.x61_c00058{left:179.132387pt;}
.x31_c00058{left:187.355987pt;}
.x19_c00058{left:197.489187pt;}
.x42_c00058{left:198.439587pt;}
.x28_c00058{left:207.331987pt;}
.x10_c00058{left:217.733587pt;}
.x24_c00058{left:226.977987pt;}
.x3d_c00058{left:227.915187pt;}
.x39_c00058{left:236.407187pt;}
.x53_c00058{left:237.300387pt;}
.x59_c00058{left:238.316787pt;}
.x7_c00058{left:246.285187pt;}
.x3e_c00058{left:247.213587pt;}
.x1a_c00058{left:256.444787pt;}
.x2d_c00058{left:266.159987pt;}
.x45_c00058{left:267.268787pt;}
.x56_c00058{left:277.027987pt;}
.x1b_c00058{left:285.700387pt;}
.x62_c00058{left:286.817987pt;}
.x4c_c00058{left:294.852387pt;}
.x46_c00058{left:296.115187pt;}
.x11_c00058{left:306.468387pt;}
.x29_c00058{left:315.651187pt;}
.x34_c00058{left:316.601587pt;}
.x47_c00058{left:325.828387pt;}
.x63_c00058{left:327.064787pt;}
.x8_c00058{left:335.477587pt;}
.x35_c00058{left:345.122387pt;}
.x43_c00058{left:346.706387pt;}
.x9_c00058{left:355.264387pt;}
.x12_c00058{left:365.058787pt;}
.x50_c00058{left:366.321587pt;}
.x1c_c00058{left:374.285587pt;}
.x44_c00058{left:375.539587pt;}
.x5b_c00058{left:385.272387pt;}
.x1d_c00058{left:393.993187pt;}
.x2e_c00058{left:404.073587pt;}
.x25_c00058{left:414.202387pt;}
.x5a_c00058{left:415.152787pt;}
.x2a_c00058{left:423.706387pt;}
.x57_c00058{left:424.639187pt;}
.x13_c00058{left:433.843987pt;}
.x4d_c00058{left:435.089187pt;}
.xa_c00058{left:443.347987pt;}
.x36_c00058{left:444.276387pt;}
.x14_c00058{left:453.234787pt;}
.xb_c00058{left:463.301987pt;}
.x2f_c00058{left:464.630787pt;}
.x1e_c00058{left:472.651987pt;}
.x37_c00058{left:473.690387pt;}
.x3a_c00058{left:481.821587pt;}
.x4a_c00058{left:483.273587pt;}
.x1f_c00058{left:492.425587pt;}
.x5c_c00058{left:494.277987pt;}
.x26_c00058{left:500.719587pt;}
.xc_c00058{left:502.259587pt;}
.x54_c00058{left:503.517987pt;}
.x27_c00058{left:511.745987pt;}
.x3f_c00058{left:513.391587pt;}
.x20_c00058{left:522.508387pt;}
.x40_c00058{left:523.436787pt;}
.x32_c00058{left:532.645987pt;}
.x15_c00058{left:541.714387pt;}
.x58_c00058{left:542.796787pt;}
.x3_c00058{left:551.323987pt;}
.x30_c00058{left:552.296387pt;}
.x16_c00058{left:560.704787pt;}
.x51_c00058{left:561.892787pt;}
.x4e_c00058{left:570.842387pt;}
.x48_c00058{left:571.968787pt;}
.x21_c00058{left:580.069187pt;}
.x3b_c00058{left:581.437587pt;}
.x38_c00058{left:593.101987pt;}
.x64_c00058{left:594.113987pt;}
.x5e_c00058{left:595.077587pt;}
.x52_c00058{left:610.908787pt;}
.x65_c00058{left:650.011587pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fc9b1855db9de70e9e40b15e.woff2')format("woff");}.ff1_c00059{font-family:ff1_c00059;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00059;src:url('chunks/assets/font_84ae6b9e1a023b75363ceae7.woff2')format("woff");}.ff2_c00059{font-family:ff2_c00059;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00059;src:url('chunks/assets/font_dfc536a9f60f4375208ef686.woff2')format("woff");}.ff3_c00059{font-family:ff3_c00059;line-height:0.666000;font-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_c00059{transform:matrix(0.139895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139895,0.000000,0.000000,0.250000,0,0);}
.m97_c00059{transform:matrix(0.146169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146169,0.000000,0.000000,0.250000,0,0);}
.m32_c00059{transform:matrix(0.176641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176641,0.000000,0.000000,0.250000,0,0);}
.mad_c00059{transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);}
.m12_c00059{transform:matrix(0.218264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218264,0.000000,0.000000,0.250000,0,0);}
.m70_c00059{transform:matrix(0.227167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227167,0.000000,0.000000,0.250000,0,0);}
.m5c_c00059{transform:matrix(0.236378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236378,0.000000,0.000000,0.250000,0,0);}
.m6_c00059{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0_c00059{transform:matrix(0.251454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251454,0.000000,0.000000,0.250000,0,0);}
.m92_c00059{transform:matrix(0.252155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252155,0.000000,0.000000,0.250000,0,0);}
.m7b_c00059{transform:matrix(0.254209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254209,0.000000,0.000000,0.250000,0,0);}
.m36_c00059{transform:matrix(0.255778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255778,0.000000,0.000000,0.250000,0,0);}
.m4c_c00059{transform:matrix(0.255983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255983,0.000000,0.000000,0.250000,0,0);}
.m1_c00059{transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);}
.mf_c00059{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m9f_c00059{transform:matrix(0.258853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258853,0.000000,0.000000,0.250000,0,0);}
.m1c_c00059{transform:matrix(0.259004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259004,0.000000,0.000000,0.250000,0,0);}
.ma5_c00059{transform:matrix(0.260220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260220,0.000000,0.000000,0.250000,0,0);}
.m58_c00059{transform:matrix(0.261077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261077,0.000000,0.000000,0.250000,0,0);}
.m1b_c00059{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m3f_c00059{transform:matrix(0.263850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263850,0.000000,0.000000,0.250000,0,0);}
.m22_c00059{transform:matrix(0.263917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263917,0.000000,0.000000,0.250000,0,0);}
.m56_c00059{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m67_c00059{transform:matrix(0.265629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265629,0.000000,0.000000,0.250000,0,0);}
.m19_c00059{transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);}
.m2e_c00059{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m5b_c00059{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.md_c00059{transform:matrix(0.267201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267201,0.000000,0.000000,0.250000,0,0);}
.m15_c00059{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m8_c00059{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.m86_c00059{transform:matrix(0.268979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268979,0.000000,0.000000,0.250000,0,0);}
.m1d_c00059{transform:matrix(0.269471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269471,0.000000,0.000000,0.250000,0,0);}
.m66_c00059{transform:matrix(0.270459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270459,0.000000,0.000000,0.250000,0,0);}
.m1a_c00059{transform:matrix(0.271851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271851,0.000000,0.000000,0.250000,0,0);}
.m99_c00059{transform:matrix(0.271876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271876,0.000000,0.000000,0.250000,0,0);}
.m25_c00059{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m71_c00059{transform:matrix(0.273113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273113,0.000000,0.000000,0.250000,0,0);}
.m93_c00059{transform:matrix(0.273175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273175,0.000000,0.000000,0.250000,0,0);}
.m91_c00059{transform:matrix(0.273245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273245,0.000000,0.000000,0.250000,0,0);}
.mae_c00059{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00059{transform:matrix(0.274228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274228,0.000000,0.000000,0.250000,0,0);}
.m6e_c00059{transform:matrix(0.274480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274480,0.000000,0.000000,0.250000,0,0);}
.m82_c00059{transform:matrix(0.275208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275208,0.000000,0.000000,0.250000,0,0);}
.m5e_c00059{transform:matrix(0.275549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275549,0.000000,0.000000,0.250000,0,0);}
.m30_c00059{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m78_c00059{transform:matrix(0.275823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275823,0.000000,0.000000,0.250000,0,0);}
.m5d_c00059{transform:matrix(0.275917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275917,0.000000,0.000000,0.250000,0,0);}
.maa_c00059{transform:matrix(0.275990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275990,0.000000,0.000000,0.250000,0,0);}
.m9a_c00059{transform:matrix(0.276503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276503,0.000000,0.000000,0.250000,0,0);}
.m68_c00059{transform:matrix(0.276902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276902,0.000000,0.000000,0.250000,0,0);}
.m6c_c00059{transform:matrix(0.276926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276926,0.000000,0.000000,0.250000,0,0);}
.me_c00059{transform:matrix(0.277360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277360,0.000000,0.000000,0.250000,0,0);}
.m8d_c00059{transform:matrix(0.277595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277595,0.000000,0.000000,0.250000,0,0);}
.m60_c00059{transform:matrix(0.278006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278006,0.000000,0.000000,0.250000,0,0);}
.m9_c00059{transform:matrix(0.278581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278581,0.000000,0.000000,0.250000,0,0);}
.mab_c00059{transform:matrix(0.278705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278705,0.000000,0.000000,0.250000,0,0);}
.ma8_c00059{transform:matrix(0.279150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279150,0.000000,0.000000,0.250000,0,0);}
.ma3_c00059{transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);}
.m90_c00059{transform:matrix(0.280674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280674,0.000000,0.000000,0.250000,0,0);}
.m80_c00059{transform:matrix(0.281113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281113,0.000000,0.000000,0.250000,0,0);}
.m10_c00059{transform:matrix(0.282940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282940,0.000000,0.000000,0.250000,0,0);}
.m47_c00059{transform:matrix(0.283944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283944,0.000000,0.000000,0.250000,0,0);}
.m65_c00059{transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);}
.mb_c00059{transform:matrix(0.284367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284367,0.000000,0.000000,0.250000,0,0);}
.m4e_c00059{transform:matrix(0.284681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284681,0.000000,0.000000,0.250000,0,0);}
.m33_c00059{transform:matrix(0.284946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284946,0.000000,0.000000,0.250000,0,0);}
.m29_c00059{transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);}
.m57_c00059{transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);}
.m7d_c00059{transform:matrix(0.285618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285618,0.000000,0.000000,0.250000,0,0);}
.ma1_c00059{transform:matrix(0.286237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286237,0.000000,0.000000,0.250000,0,0);}
.m43_c00059{transform:matrix(0.286726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286726,0.000000,0.000000,0.250000,0,0);}
.mac_c00059{transform:matrix(0.287081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287081,0.000000,0.000000,0.250000,0,0);}
.m49_c00059{transform:matrix(0.287384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287384,0.000000,0.000000,0.250000,0,0);}
.m55_c00059{transform:matrix(0.288213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288213,0.000000,0.000000,0.250000,0,0);}
.m79_c00059{transform:matrix(0.288677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288677,0.000000,0.000000,0.250000,0,0);}
.m52_c00059{transform:matrix(0.288860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288860,0.000000,0.000000,0.250000,0,0);}
.mb2_c00059{transform:matrix(0.289115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289115,0.000000,0.000000,0.250000,0,0);}
.m3e_c00059{transform:matrix(0.289706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289706,0.000000,0.000000,0.250000,0,0);}
.m6a_c00059{transform:matrix(0.289935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289935,0.000000,0.000000,0.250000,0,0);}
.m69_c00059{transform:matrix(0.290066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290066,0.000000,0.000000,0.250000,0,0);}
.m4a_c00059{transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);}
.m7e_c00059{transform:matrix(0.290581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290581,0.000000,0.000000,0.250000,0,0);}
.m11_c00059{transform:matrix(0.290645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290645,0.000000,0.000000,0.250000,0,0);}
.mb3_c00059{transform:matrix(0.291648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291648,0.000000,0.000000,0.250000,0,0);}
.mb0_c00059{transform:matrix(0.292422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292422,0.000000,0.000000,0.250000,0,0);}
.m23_c00059{transform:matrix(0.293193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293193,0.000000,0.000000,0.250000,0,0);}
.m26_c00059{transform:matrix(0.293496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293496,0.000000,0.000000,0.250000,0,0);}
.m48_c00059{transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);}
.m8c_c00059{transform:matrix(0.294109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294109,0.000000,0.000000,0.250000,0,0);}
.maf_c00059{transform:matrix(0.294575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294575,0.000000,0.000000,0.250000,0,0);}
.m9b_c00059{transform:matrix(0.295253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295253,0.000000,0.000000,0.250000,0,0);}
.m18_c00059{transform:matrix(0.295340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295340,0.000000,0.000000,0.250000,0,0);}
.m17_c00059{transform:matrix(0.295550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295550,0.000000,0.000000,0.250000,0,0);}
.m4d_c00059{transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);}
.m75_c00059{transform:matrix(0.297663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297663,0.000000,0.000000,0.250000,0,0);}
.m87_c00059{transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);}
.m89_c00059{transform:matrix(0.298586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298586,0.000000,0.000000,0.250000,0,0);}
.ma6_c00059{transform:matrix(0.299423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299423,0.000000,0.000000,0.250000,0,0);}
.m74_c00059{transform:matrix(0.300198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300198,0.000000,0.000000,0.250000,0,0);}
.m42_c00059{transform:matrix(0.300674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300674,0.000000,0.000000,0.250000,0,0);}
.m35_c00059{transform:matrix(0.300777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300777,0.000000,0.000000,0.250000,0,0);}
.m64_c00059{transform:matrix(0.300789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300789,0.000000,0.000000,0.250000,0,0);}
.m76_c00059{transform:matrix(0.301207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301207,0.000000,0.000000,0.250000,0,0);}
.m24_c00059{transform:matrix(0.302575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302575,0.000000,0.000000,0.250000,0,0);}
.m40_c00059{transform:matrix(0.302705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302705,0.000000,0.000000,0.250000,0,0);}
.m7c_c00059{transform:matrix(0.302713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302713,0.000000,0.000000,0.250000,0,0);}
.m3a_c00059{transform:matrix(0.302736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302736,0.000000,0.000000,0.250000,0,0);}
.m81_c00059{transform:matrix(0.303100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303100,0.000000,0.000000,0.250000,0,0);}
.m96_c00059{transform:matrix(0.303294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303294,0.000000,0.000000,0.250000,0,0);}
.m88_c00059{transform:matrix(0.303534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303534,0.000000,0.000000,0.250000,0,0);}
.m5a_c00059{transform:matrix(0.303549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303549,0.000000,0.000000,0.250000,0,0);}
.m2a_c00059{transform:matrix(0.303979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303979,0.000000,0.000000,0.250000,0,0);}
.m62_c00059{transform:matrix(0.304655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304655,0.000000,0.000000,0.250000,0,0);}
.m5f_c00059{transform:matrix(0.304946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304946,0.000000,0.000000,0.250000,0,0);}
.m3b_c00059{transform:matrix(0.305075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305075,0.000000,0.000000,0.250000,0,0);}
.ma4_c00059{transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);}
.m13_c00059{transform:matrix(0.305434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305434,0.000000,0.000000,0.250000,0,0);}
.m95_c00059{transform:matrix(0.305707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305707,0.000000,0.000000,0.250000,0,0);}
.m20_c00059{transform:matrix(0.306004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306004,0.000000,0.000000,0.250000,0,0);}
.m84_c00059{transform:matrix(0.306111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306111,0.000000,0.000000,0.250000,0,0);}
.m2b_c00059{transform:matrix(0.306354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306354,0.000000,0.000000,0.250000,0,0);}
.m9c_c00059{transform:matrix(0.306653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306653,0.000000,0.000000,0.250000,0,0);}
.m1e_c00059{transform:matrix(0.306720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306720,0.000000,0.000000,0.250000,0,0);}
.m54_c00059{transform:matrix(0.306758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306758,0.000000,0.000000,0.250000,0,0);}
.mc_c00059{transform:matrix(0.306770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306770,0.000000,0.000000,0.250000,0,0);}
.m2d_c00059{transform:matrix(0.307236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307236,0.000000,0.000000,0.250000,0,0);}
.ma0_c00059{transform:matrix(0.308167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308167,0.000000,0.000000,0.250000,0,0);}
.m9e_c00059{transform:matrix(0.308362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308362,0.000000,0.000000,0.250000,0,0);}
.m4f_c00059{transform:matrix(0.308564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308564,0.000000,0.000000,0.250000,0,0);}
.m83_c00059{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m85_c00059{transform:matrix(0.308620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308620,0.000000,0.000000,0.250000,0,0);}
.m6b_c00059{transform:matrix(0.308786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308786,0.000000,0.000000,0.250000,0,0);}
.m5_c00059{transform:matrix(0.309092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309092,0.000000,0.000000,0.250000,0,0);}
.m6f_c00059{transform:matrix(0.310673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310673,0.000000,0.000000,0.250000,0,0);}
.m4_c00059{transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);}
.m7_c00059{transform:matrix(0.312182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312182,0.000000,0.000000,0.250000,0,0);}
.m37_c00059{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.m38_c00059{transform:matrix(0.312914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312914,0.000000,0.000000,0.250000,0,0);}
.m14_c00059{transform:matrix(0.313086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313086,0.000000,0.000000,0.250000,0,0);}
.m3_c00059{transform:matrix(0.313540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313540,0.000000,0.000000,0.250000,0,0);}
.m4b_c00059{transform:matrix(0.314278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314278,0.000000,0.000000,0.250000,0,0);}
.m41_c00059{transform:matrix(0.315366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315366,0.000000,0.000000,0.250000,0,0);}
.m45_c00059{transform:matrix(0.316169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316169,0.000000,0.000000,0.250000,0,0);}
.m2f_c00059{transform:matrix(0.321032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321032,0.000000,0.000000,0.250000,0,0);}
.m51_c00059{transform:matrix(0.321773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321773,0.000000,0.000000,0.250000,0,0);}
.m3c_c00059{transform:matrix(0.322593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322593,0.000000,0.000000,0.250000,0,0);}
.m94_c00059{transform:matrix(0.322624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322624,0.000000,0.000000,0.250000,0,0);}
.m8f_c00059{transform:matrix(0.323206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323206,0.000000,0.000000,0.250000,0,0);}
.m77_c00059{transform:matrix(0.325206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325206,0.000000,0.000000,0.250000,0,0);}
.m8a_c00059{transform:matrix(0.325583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325583,0.000000,0.000000,0.250000,0,0);}
.m39_c00059{transform:matrix(0.326237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326237,0.000000,0.000000,0.250000,0,0);}
.m50_c00059{transform:matrix(0.326875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326875,0.000000,0.000000,0.250000,0,0);}
.ma2_c00059{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.m73_c00059{transform:matrix(0.328711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328711,0.000000,0.000000,0.250000,0,0);}
.ma7_c00059{transform:matrix(0.329080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329080,0.000000,0.000000,0.250000,0,0);}
.m7a_c00059{transform:matrix(0.330718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330718,0.000000,0.000000,0.250000,0,0);}
.mb1_c00059{transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);}
.m72_c00059{transform:matrix(0.331877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331877,0.000000,0.000000,0.250000,0,0);}
.m31_c00059{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m6d_c00059{transform:matrix(0.333342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333342,0.000000,0.000000,0.250000,0,0);}
.m8b_c00059{transform:matrix(0.333403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333403,0.000000,0.000000,0.250000,0,0);}
.m34_c00059{transform:matrix(0.334225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334225,0.000000,0.000000,0.250000,0,0);}
.m8e_c00059{transform:matrix(0.334480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334480,0.000000,0.000000,0.250000,0,0);}
.m1f_c00059{transform:matrix(0.334924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334924,0.000000,0.000000,0.250000,0,0);}
.m98_c00059{transform:matrix(0.335354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335354,0.000000,0.000000,0.250000,0,0);}
.m59_c00059{transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);}
.m44_c00059{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00059{transform:matrix(0.337895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337895,0.000000,0.000000,0.250000,0,0);}
.m9d_c00059{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m61_c00059{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);}
.m53_c00059{transform:matrix(0.340626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340626,0.000000,0.000000,0.250000,0,0);}
.m46_c00059{transform:matrix(0.342926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342926,0.000000,0.000000,0.250000,0,0);}
.m21_c00059{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.m2c_c00059{transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);}
.m2_c00059{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m63_c00059{transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);}
.m27_c00059{transform:matrix(0.351275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351275,0.000000,0.000000,0.250000,0,0);}
.ma_c00059{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m3d_c00059{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m16_c00059{transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);}
.v0_c00059{vertical-align:0.000000px;}
.ls6_c00059{letter-spacing:-2.744280px;}
.lsf_c00059{letter-spacing:-0.180338px;}
.ls8_c00059{letter-spacing:-0.094090px;}
.ls5_c00059{letter-spacing:0.000000px;}
.ls12_c00059{letter-spacing:0.501811px;}
.lsa_c00059{letter-spacing:1.819066px;}
.ls9_c00059{letter-spacing:1.960200px;}
.ls0_c00059{letter-spacing:2.305195px;}
.ls10_c00059{letter-spacing:2.595305px;}
.lse_c00059{letter-spacing:3.104957px;}
.lsc_c00059{letter-spacing:3.112798px;}
.lsb_c00059{letter-spacing:3.246091px;}
.ls1_c00059{letter-spacing:3.348022px;}
.lsd_c00059{letter-spacing:3.643200px;}
.ls4_c00059{letter-spacing:3.920400px;}
.ls3_c00059{letter-spacing:4.375810px;}
.ls11_c00059{letter-spacing:51.321798px;}
.ls7_c00059{letter-spacing:52.747398px;}
.ls2_c00059{letter-spacing:1970.197746px;}
.sc__c00059{text-shadow:none;}
.sc0_c00059{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00059{-webkit-text-stroke:0px transparent;}
.sc0_c00059{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00059{word-spacing:0.000000px;}
._3_c00059{width:7.761600px;}
._4_c00059{width:20.856528px;}
._0_c00059{width:24.043536px;}
._2_c00059{width:28.752214px;}
._1_c00059{width:36.267660px;}
.fc0_c00059{color:transparent;}
.fs3_c00059{font-size:23.166000px;}
.fsc_c00059{font-size:27.720000px;}
.fs7_c00059{font-size:33.660000px;}
.fs8_c00059{font-size:38.412000px;}
.fsa_c00059{font-size:51.321798px;}
.fs5_c00059{font-size:52.747398px;}
.fsb_c00059{font-size:55.836198px;}
.fs4_c00059{font-size:66.330000px;}
.fs2_c00059{font-size:70.884000px;}
.fs9_c00059{font-size:72.864000px;}
.fs6_c00059{font-size:77.022198px;}
.fs1_c00059{font-size:78.408000px;}
.fs0_c00059{font-size:87.516198px;}
.y0_c00059{bottom:0.000000px;}
.y1c_c00059{bottom:55.861785px;}
.y1_c00059{bottom:76.500000px;}
.y1b_c00059{bottom:149.951385px;}
.y1a_c00059{bottom:211.969935px;}
.y19_c00059{bottom:244.753785px;}
.y18_c00059{bottom:276.834735px;}
.y17_c00059{bottom:308.910735px;}
.y16_c00059{bottom:340.981785px;}
.y15_c00059{bottom:373.419135px;}
.y14_c00059{bottom:405.851535px;}
.y13_c00059{bottom:438.640335px;}
.y12_c00059{bottom:452.183535px;}
.y11_c00059{bottom:471.067785px;}
.y10_c00059{bottom:502.787385px;}
.yf_c00059{bottom:535.219785px;}
.ye_c00059{bottom:568.013535px;}
.yd_c00059{bottom:600.802335px;}
.yc_c00059{bottom:633.229785px;}
.yb_c00059{bottom:665.662185px;}
.ya_c00059{bottom:731.239785px;}
.y9_c00059{bottom:764.389935px;}
.y8_c00059{bottom:796.460985px;}
.y7_c00059{bottom:811.791135px;}
.y6_c00059{bottom:828.893385px;}
.y5_c00059{bottom:861.330735px;}
.y4_c00059{bottom:893.406735px;}
.y3_c00059{bottom:926.903385px;}
.y2_c00059{bottom:1077.304185px;}
.h5_c00059{height:24.161414px;}
.h8_c00059{height:33.035449px;}
.hc_c00059{height:34.180317px;}
.h6_c00059{height:35.129767px;}
.h9_c00059{height:40.062516px;}
.hd_c00059{height:58.235410px;}
.hb_c00059{height:69.180117px;}
.h4_c00059{height:69.568770px;}
.ha_c00059{height:71.512031px;}
.h3_c00059{height:76.953164px;}
.h7_c00059{height:80.331746px;}
.h2_c00059{height:85.892362px;}
.h1_c00059{height:1110.000000px;}
.h0_c00059{height:1263.000000px;}
.w1_c00059{width:733.500000px;}
.w0_c00059{width:892.500000px;}
.x0_c00059{left:0.000000px;}
.x26_c00059{left:54.464385px;}
.x3_c00059{left:55.771185px;}
.x1_c00059{left:79.500000px;}
.x56_c00059{left:83.387235px;}
.x11_c00059{left:88.530285px;}
.x27_c00059{left:90.307335px;}
.x4_c00059{left:99.920235px;}
.x37_c00059{left:109.325235px;}
.x28_c00059{left:110.721135px;}
.x2f_c00059{left:121.338885px;}
.x4a_c00059{left:122.422935px;}
.x5_c00059{left:133.090185px;}
.x1d_c00059{left:143.435685px;}
.x30_c00059{left:154.449435px;}
.x59_c00059{left:155.870085px;}
.x53_c00059{left:157.944135px;}
.x46_c00059{left:164.666235px;}
.x12_c00059{left:165.874035px;}
.x6_c00059{left:176.546235px;}
.x54_c00059{left:178.491585px;}
.x29_c00059{left:187.951035px;}
.x1e_c00059{left:198.910335px;}
.x5d_c00059{left:200.271585px;}
.x4b_c00059{left:201.677385px;}
.x4c_c00059{left:211.785285px;}
.x7_c00059{left:220.655685px;}
.x4f_c00059{left:222.551535px;}
.x38_c00059{left:232.491135px;}
.x3e_c00059{left:244.653285px;}
.x2a_c00059{left:254.553285px;}
.x4d_c00059{left:256.206585px;}
.x13_c00059{left:265.690785px;}
.x61_c00059{left:267.106485px;}
.x8_c00059{left:277.095585px;}
.x9_c00059{left:287.015385px;}
.x31_c00059{left:288.104385px;}
.x1f_c00059{left:298.647885px;}
.x51_c00059{left:310.409085px;}
.x17_c00059{left:320.526885px;}
.x3b_c00059{left:321.932685px;}
.x39_c00059{left:332.288085px;}
.x5a_c00059{left:333.386985px;}
.x52_c00059{left:343.890885px;}
.x18_c00059{left:353.691885px;}
.x42_c00059{left:354.736335px;}
.x14_c00059{left:365.037285px;}
.x47_c00059{left:366.076785px;}
.x32_c00059{left:376.164885px;}
.x5b_c00059{left:377.922135px;}
.xa_c00059{left:387.921135px;}
.x33_c00059{left:397.395435px;}
.x15_c00059{left:398.588385px;}
.x2b_c00059{left:399.667485px;}
.x20_c00059{left:408.824985px;}
.x3c_c00059{left:409.973385px;}
.x19_c00059{left:420.363435px;}
.x5e_c00059{left:422.135535px;}
.xb_c00059{left:431.372235px;}
.x62_c00059{left:432.476085px;}
.x34_c00059{left:442.455285px;}
.x4e_c00059{left:443.504685px;}
.x1a_c00059{left:452.607735px;}
.x48_c00059{left:454.290735px;}
.xc_c00059{left:463.641285px;}
.x21_c00059{left:464.873835px;}
.x63_c00059{left:465.957885px;}
.x35_c00059{left:475.946985px;}
.x3a_c00059{left:487.995285px;}
.x22_c00059{left:497.573535px;}
.x3f_c00059{left:498.627885px;}
.x16_c00059{left:508.711035px;}
.x2c_c00059{left:509.745585px;}
.x36_c00059{left:519.719835px;}
.x3d_c00059{left:531.198885px;}
.x50_c00059{left:532.619535px;}
.xd_c00059{left:541.890885px;}
.x43_c00059{left:543.004635px;}
.x1b_c00059{left:552.751185px;}
.x55_c00059{left:553.815435px;}
.x58_c00059{left:555.186585px;}
.xe_c00059{left:563.948085px;}
.x57_c00059{left:565.398435px;}
.x2d_c00059{left:575.719185px;}
.x44_c00059{left:586.223085px;}
.x5c_c00059{left:587.470485px;}
.xf_c00059{left:596.217135px;}
.x40_c00059{left:597.489285px;}
.x2e_c00059{left:609.884085px;}
.x23_c00059{left:619.581135px;}
.x2_c00059{left:630.575085px;}
.x1c_c00059{left:642.034335px;}
.x41_c00059{left:643.153035px;}
.x24_c00059{left:652.958985px;}
.x5f_c00059{left:654.092535px;}
.x10_c00059{left:664.447935px;}
.x25_c00059{left:670.600785px;}
.x45_c00059{left:676.164585px;}
.x49_c00059{left:686.559585px;}
.x60_c00059{left:695.291385px;}
@media print{
.v0_c00059{vertical-align:0.000000pt;}
.ls6_c00059{letter-spacing:-2.439360pt;}
.lsf_c00059{letter-spacing:-0.160301pt;}
.ls8_c00059{letter-spacing:-0.083635pt;}
.ls5_c00059{letter-spacing:0.000000pt;}
.ls12_c00059{letter-spacing:0.446054pt;}
.lsa_c00059{letter-spacing:1.616947pt;}
.ls9_c00059{letter-spacing:1.742400pt;}
.ls0_c00059{letter-spacing:2.049062pt;}
.ls10_c00059{letter-spacing:2.306938pt;}
.lse_c00059{letter-spacing:2.759962pt;}
.lsc_c00059{letter-spacing:2.766931pt;}
.lsb_c00059{letter-spacing:2.885414pt;}
.ls1_c00059{letter-spacing:2.976019pt;}
.lsd_c00059{letter-spacing:3.238400pt;}
.ls4_c00059{letter-spacing:3.484800pt;}
.ls3_c00059{letter-spacing:3.889609pt;}
.ls11_c00059{letter-spacing:45.619376pt;}
.ls7_c00059{letter-spacing:46.886576pt;}
.ls2_c00059{letter-spacing:1751.286885pt;}
.ws0_c00059{word-spacing:0.000000pt;}
._3_c00059{width:6.899200pt;}
._4_c00059{width:18.539136pt;}
._0_c00059{width:21.372032pt;}
._2_c00059{width:25.557523pt;}
._1_c00059{width:32.237920pt;}
.fs3_c00059{font-size:20.592000pt;}
.fsc_c00059{font-size:24.640000pt;}
.fs7_c00059{font-size:29.920000pt;}
.fs8_c00059{font-size:34.144000pt;}
.fsa_c00059{font-size:45.619376pt;}
.fs5_c00059{font-size:46.886576pt;}
.fsb_c00059{font-size:49.632176pt;}
.fs4_c00059{font-size:58.960000pt;}
.fs2_c00059{font-size:63.008000pt;}
.fs9_c00059{font-size:64.768000pt;}
.fs6_c00059{font-size:68.464176pt;}
.fs1_c00059{font-size:69.696000pt;}
.fs0_c00059{font-size:77.792176pt;}
.y0_c00059{bottom:0.000000pt;}
.y1c_c00059{bottom:49.654920pt;}
.y1_c00059{bottom:68.000000pt;}
.y1b_c00059{bottom:133.290120pt;}
.y1a_c00059{bottom:188.417720pt;}
.y19_c00059{bottom:217.558920pt;}
.y18_c00059{bottom:246.075320pt;}
.y17_c00059{bottom:274.587320pt;}
.y16_c00059{bottom:303.094920pt;}
.y15_c00059{bottom:331.928120pt;}
.y14_c00059{bottom:360.756920pt;}
.y13_c00059{bottom:389.902520pt;}
.y12_c00059{bottom:401.940920pt;}
.y11_c00059{bottom:418.726920pt;}
.y10_c00059{bottom:446.922120pt;}
.yf_c00059{bottom:475.750920pt;}
.ye_c00059{bottom:504.900920pt;}
.yd_c00059{bottom:534.046520pt;}
.yc_c00059{bottom:562.870920pt;}
.yb_c00059{bottom:591.699720pt;}
.ya_c00059{bottom:649.990920pt;}
.y9_c00059{bottom:679.457720pt;}
.y8_c00059{bottom:707.965320pt;}
.y7_c00059{bottom:721.592120pt;}
.y6_c00059{bottom:736.794120pt;}
.y5_c00059{bottom:765.627320pt;}
.y4_c00059{bottom:794.139320pt;}
.y3_c00059{bottom:823.914120pt;}
.y2_c00059{bottom:957.603720pt;}
.h5_c00059{height:21.476813pt;}
.h8_c00059{height:29.364844pt;}
.hc_c00059{height:30.382504pt;}
.h6_c00059{height:31.226460pt;}
.h9_c00059{height:35.611125pt;}
.hd_c00059{height:51.764809pt;}
.hb_c00059{height:61.493438pt;}
.h4_c00059{height:61.838906pt;}
.ha_c00059{height:63.566250pt;}
.h3_c00059{height:68.402813pt;}
.h7_c00059{height:71.405996pt;}
.h2_c00059{height:76.348766pt;}
.h1_c00059{height:986.666667pt;}
.h0_c00059{height:1122.666667pt;}
.w1_c00059{width:652.000000pt;}
.w0_c00059{width:793.333333pt;}
.x0_c00059{left:0.000000pt;}
.x26_c00059{left:48.412787pt;}
.x3_c00059{left:49.574387pt;}
.x1_c00059{left:70.666667pt;}
.x56_c00059{left:74.121987pt;}
.x11_c00059{left:78.693587pt;}
.x27_c00059{left:80.273187pt;}
.x4_c00059{left:88.817987pt;}
.x37_c00059{left:97.177987pt;}
.x28_c00059{left:98.418787pt;}
.x2f_c00059{left:107.856787pt;}
.x4a_c00059{left:108.820387pt;}
.x5_c00059{left:118.302387pt;}
.x1d_c00059{left:127.498387pt;}
.x30_c00059{left:137.288387pt;}
.x59_c00059{left:138.551187pt;}
.x53_c00059{left:140.394787pt;}
.x46_c00059{left:146.369987pt;}
.x12_c00059{left:147.443587pt;}
.x6_c00059{left:156.929987pt;}
.x54_c00059{left:158.659187pt;}
.x29_c00059{left:167.067587pt;}
.x1e_c00059{left:176.809187pt;}
.x5d_c00059{left:178.019187pt;}
.x4b_c00059{left:179.268787pt;}
.x4c_c00059{left:188.253587pt;}
.x7_c00059{left:196.138387pt;}
.x4f_c00059{left:197.823587pt;}
.x38_c00059{left:206.658787pt;}
.x3e_c00059{left:217.469587pt;}
.x2a_c00059{left:226.269587pt;}
.x4d_c00059{left:227.739187pt;}
.x13_c00059{left:236.169587pt;}
.x61_c00059{left:237.427987pt;}
.x8_c00059{left:246.307187pt;}
.x9_c00059{left:255.124787pt;}
.x31_c00059{left:256.092787pt;}
.x1f_c00059{left:265.464787pt;}
.x51_c00059{left:275.919187pt;}
.x17_c00059{left:284.912787pt;}
.x3b_c00059{left:286.162387pt;}
.x39_c00059{left:295.367187pt;}
.x5a_c00059{left:296.343987pt;}
.x52_c00059{left:305.680787pt;}
.x18_c00059{left:314.392787pt;}
.x42_c00059{left:315.321187pt;}
.x14_c00059{left:324.477587pt;}
.x47_c00059{left:325.401587pt;}
.x32_c00059{left:334.368787pt;}
.x5b_c00059{left:335.930787pt;}
.xa_c00059{left:344.818787pt;}
.x33_c00059{left:353.240387pt;}
.x15_c00059{left:354.300787pt;}
.x2b_c00059{left:355.259987pt;}
.x20_c00059{left:363.399987pt;}
.x3c_c00059{left:364.420787pt;}
.x19_c00059{left:373.656387pt;}
.x5e_c00059{left:375.231587pt;}
.xb_c00059{left:383.441987pt;}
.x62_c00059{left:384.423187pt;}
.x34_c00059{left:393.293587pt;}
.x4e_c00059{left:394.226387pt;}
.x1a_c00059{left:402.317987pt;}
.x48_c00059{left:403.813987pt;}
.xc_c00059{left:412.125587pt;}
.x21_c00059{left:413.221187pt;}
.x63_c00059{left:414.184787pt;}
.x35_c00059{left:423.063987pt;}
.x3a_c00059{left:433.773587pt;}
.x22_c00059{left:442.287587pt;}
.x3f_c00059{left:443.224787pt;}
.x16_c00059{left:452.187587pt;}
.x2c_c00059{left:453.107187pt;}
.x36_c00059{left:461.973187pt;}
.x3d_c00059{left:472.176787pt;}
.x50_c00059{left:473.439587pt;}
.xd_c00059{left:481.680787pt;}
.x43_c00059{left:482.670787pt;}
.x1b_c00059{left:491.334387pt;}
.x55_c00059{left:492.280387pt;}
.x58_c00059{left:493.499187pt;}
.xe_c00059{left:501.287187pt;}
.x57_c00059{left:502.576387pt;}
.x2d_c00059{left:511.750387pt;}
.x44_c00059{left:521.087187pt;}
.x5c_c00059{left:522.195987pt;}
.xf_c00059{left:529.970787pt;}
.x40_c00059{left:531.101587pt;}
.x2e_c00059{left:542.119187pt;}
.x23_c00059{left:550.738787pt;}
.x2_c00059{left:560.511187pt;}
.x1c_c00059{left:570.697187pt;}
.x41_c00059{left:571.691587pt;}
.x24_c00059{left:580.407987pt;}
.x5f_c00059{left:581.415587pt;}
.x10_c00059{left:590.620387pt;}
.x25_c00059{left:596.089587pt;}
.x45_c00059{left:601.035187pt;}
.x49_c00059{left:610.275187pt;}
.x60_c00059{left:618.036787pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fb394fc315957b708a6a7b52.woff2')format("woff");}.ff1_c00060{font-family:ff1_c00060;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00060;src:url('chunks/assets/font_f211f4e810214f2f2f661c82.woff2')format("woff");}.ff2_c00060{font-family:ff2_c00060;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00060;src:url('chunks/assets/font_409bba10e16665dde34522cd.woff2')format("woff");}.ff3_c00060{font-family:ff3_c00060;line-height:0.666000;font-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_c00060{transform:matrix(0.180357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180357,0.000000,0.000000,0.250000,0,0);}
.m47_c00060{transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);}
.m3b_c00060{transform:matrix(0.204062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204062,0.000000,0.000000,0.250000,0,0);}
.m12_c00060{transform:matrix(0.213542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213542,0.000000,0.000000,0.250000,0,0);}
.m5b_c00060{transform:matrix(0.214435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214435,0.000000,0.000000,0.250000,0,0);}
.m52_c00060{transform:matrix(0.234609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234609,0.000000,0.000000,0.250000,0,0);}
.m9c_c00060{transform:matrix(0.242568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242568,0.000000,0.000000,0.250000,0,0);}
.md_c00060{transform:matrix(0.245842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245842,0.000000,0.000000,0.250000,0,0);}
.m84_c00060{transform:matrix(0.248291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248291,0.000000,0.000000,0.250000,0,0);}
.m48_c00060{transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);}
.m1_c00060{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m62_c00060{transform:matrix(0.252202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252202,0.000000,0.000000,0.250000,0,0);}
.m1d_c00060{transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);}
.m66_c00060{transform:matrix(0.252992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252992,0.000000,0.000000,0.250000,0,0);}
.m28_c00060{transform:matrix(0.253792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253792,0.000000,0.000000,0.250000,0,0);}
.m15_c00060{transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);}
.m9f_c00060{transform:matrix(0.255030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255030,0.000000,0.000000,0.250000,0,0);}
.m8e_c00060{transform:matrix(0.255066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255066,0.000000,0.000000,0.250000,0,0);}
.m81_c00060{transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);}
.m93_c00060{transform:matrix(0.256234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256234,0.000000,0.000000,0.250000,0,0);}
.m3c_c00060{transform:matrix(0.256359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256359,0.000000,0.000000,0.250000,0,0);}
.m71_c00060{transform:matrix(0.256680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256680,0.000000,0.000000,0.250000,0,0);}
.m50_c00060{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.mad_c00060{transform:matrix(0.261106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261106,0.000000,0.000000,0.250000,0,0);}
.m94_c00060{transform:matrix(0.261492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261492,0.000000,0.000000,0.250000,0,0);}
.m4c_c00060{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.m31_c00060{transform:matrix(0.262074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262074,0.000000,0.000000,0.250000,0,0);}
.m1a_c00060{transform:matrix(0.262177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262177,0.000000,0.000000,0.250000,0,0);}
.m3e_c00060{transform:matrix(0.262289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262289,0.000000,0.000000,0.250000,0,0);}
.m57_c00060{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m9b_c00060{transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);}
.mb_c00060{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m2d_c00060{transform:matrix(0.264362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264362,0.000000,0.000000,0.250000,0,0);}
.mab_c00060{transform:matrix(0.264902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264902,0.000000,0.000000,0.250000,0,0);}
.m4b_c00060{transform:matrix(0.265600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265600,0.000000,0.000000,0.250000,0,0);}
.m0_c00060{transform:matrix(0.265769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265769,0.000000,0.000000,0.250000,0,0);}
.maf_c00060{transform:matrix(0.266097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266097,0.000000,0.000000,0.250000,0,0);}
.m7d_c00060{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.m7b_c00060{transform:matrix(0.267523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267523,0.000000,0.000000,0.250000,0,0);}
.m1f_c00060{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.mc_c00060{transform:matrix(0.268624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268624,0.000000,0.000000,0.250000,0,0);}
.m65_c00060{transform:matrix(0.268658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268658,0.000000,0.000000,0.250000,0,0);}
.m7a_c00060{transform:matrix(0.269263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269263,0.000000,0.000000,0.250000,0,0);}
.m7_c00060{transform:matrix(0.270104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270104,0.000000,0.000000,0.250000,0,0);}
.m22_c00060{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m3_c00060{transform:matrix(0.270977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270977,0.000000,0.000000,0.250000,0,0);}
.m97_c00060{transform:matrix(0.271487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271487,0.000000,0.000000,0.250000,0,0);}
.m55_c00060{transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);}
.m36_c00060{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m79_c00060{transform:matrix(0.273481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273481,0.000000,0.000000,0.250000,0,0);}
.m26_c00060{transform:matrix(0.273857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273857,0.000000,0.000000,0.250000,0,0);}
.m10_c00060{transform:matrix(0.274050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274050,0.000000,0.000000,0.250000,0,0);}
.m1c_c00060{transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);}
.m6f_c00060{transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);}
.ma2_c00060{transform:matrix(0.274684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274684,0.000000,0.000000,0.250000,0,0);}
.mc4_c00060{transform:matrix(0.275202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275202,0.000000,0.000000,0.250000,0,0);}
.m3f_c00060{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m23_c00060{transform:matrix(0.275915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275915,0.000000,0.000000,0.250000,0,0);}
.mb3_c00060{transform:matrix(0.276440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276440,0.000000,0.000000,0.250000,0,0);}
.m44_c00060{transform:matrix(0.276792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276792,0.000000,0.000000,0.250000,0,0);}
.m7f_c00060{transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);}
.m1e_c00060{transform:matrix(0.277164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277164,0.000000,0.000000,0.250000,0,0);}
.m9e_c00060{transform:matrix(0.277366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277366,0.000000,0.000000,0.250000,0,0);}
.m70_c00060{transform:matrix(0.277423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277423,0.000000,0.000000,0.250000,0,0);}
.m20_c00060{transform:matrix(0.277622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277622,0.000000,0.000000,0.250000,0,0);}
.m5e_c00060{transform:matrix(0.277767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277767,0.000000,0.000000,0.250000,0,0);}
.m59_c00060{transform:matrix(0.277854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277854,0.000000,0.000000,0.250000,0,0);}
.m67_c00060{transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);}
.m88_c00060{transform:matrix(0.280247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280247,0.000000,0.000000,0.250000,0,0);}
.m11_c00060{transform:matrix(0.280866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280866,0.000000,0.000000,0.250000,0,0);}
.mb9_c00060{transform:matrix(0.281140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281140,0.000000,0.000000,0.250000,0,0);}
.m43_c00060{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.m42_c00060{transform:matrix(0.281782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281782,0.000000,0.000000,0.250000,0,0);}
.m6c_c00060{transform:matrix(0.281783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281783,0.000000,0.000000,0.250000,0,0);}
.m19_c00060{transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);}
.m82_c00060{transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);}
.m45_c00060{transform:matrix(0.283472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283472,0.000000,0.000000,0.250000,0,0);}
.ma0_c00060{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m80_c00060{transform:matrix(0.283944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283944,0.000000,0.000000,0.250000,0,0);}
.m16_c00060{transform:matrix(0.284182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284182,0.000000,0.000000,0.250000,0,0);}
.m40_c00060{transform:matrix(0.285284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285284,0.000000,0.000000,0.250000,0,0);}
.mb5_c00060{transform:matrix(0.285384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285384,0.000000,0.000000,0.250000,0,0);}
.mbe_c00060{transform:matrix(0.285879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285879,0.000000,0.000000,0.250000,0,0);}
.m99_c00060{transform:matrix(0.286079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286079,0.000000,0.000000,0.250000,0,0);}
.m73_c00060{transform:matrix(0.286521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286521,0.000000,0.000000,0.250000,0,0);}
.m86_c00060{transform:matrix(0.286857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286857,0.000000,0.000000,0.250000,0,0);}
.m17_c00060{transform:matrix(0.286954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286954,0.000000,0.000000,0.250000,0,0);}
.mc3_c00060{transform:matrix(0.287111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287111,0.000000,0.000000,0.250000,0,0);}
.m90_c00060{transform:matrix(0.287198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287198,0.000000,0.000000,0.250000,0,0);}
.m6a_c00060{transform:matrix(0.287449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287449,0.000000,0.000000,0.250000,0,0);}
.m76_c00060{transform:matrix(0.287596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287596,0.000000,0.000000,0.250000,0,0);}
.m51_c00060{transform:matrix(0.287640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287640,0.000000,0.000000,0.250000,0,0);}
.m2a_c00060{transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);}
.mae_c00060{transform:matrix(0.288557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288557,0.000000,0.000000,0.250000,0,0);}
.mc5_c00060{transform:matrix(0.288601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288601,0.000000,0.000000,0.250000,0,0);}
.m5_c00060{transform:matrix(0.288626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288626,0.000000,0.000000,0.250000,0,0);}
.m68_c00060{transform:matrix(0.288817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288817,0.000000,0.000000,0.250000,0,0);}
.m95_c00060{transform:matrix(0.288866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288866,0.000000,0.000000,0.250000,0,0);}
.m2e_c00060{transform:matrix(0.289520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289520,0.000000,0.000000,0.250000,0,0);}
.m33_c00060{transform:matrix(0.289843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289843,0.000000,0.000000,0.250000,0,0);}
.m78_c00060{transform:matrix(0.289867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289867,0.000000,0.000000,0.250000,0,0);}
.mb4_c00060{transform:matrix(0.289933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289933,0.000000,0.000000,0.250000,0,0);}
.ma8_c00060{transform:matrix(0.289935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289935,0.000000,0.000000,0.250000,0,0);}
.m3d_c00060{transform:matrix(0.290272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290272,0.000000,0.000000,0.250000,0,0);}
.m92_c00060{transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);}
.m2_c00060{transform:matrix(0.291184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291184,0.000000,0.000000,0.250000,0,0);}
.mb6_c00060{transform:matrix(0.291185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291185,0.000000,0.000000,0.250000,0,0);}
.m41_c00060{transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);}
.mb1_c00060{transform:matrix(0.292427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292427,0.000000,0.000000,0.250000,0,0);}
.m89_c00060{transform:matrix(0.292836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292836,0.000000,0.000000,0.250000,0,0);}
.m5f_c00060{transform:matrix(0.293235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293235,0.000000,0.000000,0.250000,0,0);}
.mb7_c00060{transform:matrix(0.293240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293240,0.000000,0.000000,0.250000,0,0);}
.m7c_c00060{transform:matrix(0.293408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293408,0.000000,0.000000,0.250000,0,0);}
.m5d_c00060{transform:matrix(0.293461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293461,0.000000,0.000000,0.250000,0,0);}
.m75_c00060{transform:matrix(0.293496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293496,0.000000,0.000000,0.250000,0,0);}
.m83_c00060{transform:matrix(0.294183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294183,0.000000,0.000000,0.250000,0,0);}
.m4e_c00060{transform:matrix(0.294339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294339,0.000000,0.000000,0.250000,0,0);}
.m2c_c00060{transform:matrix(0.294782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294782,0.000000,0.000000,0.250000,0,0);}
.m35_c00060{transform:matrix(0.295181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295181,0.000000,0.000000,0.250000,0,0);}
.m2f_c00060{transform:matrix(0.295291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295291,0.000000,0.000000,0.250000,0,0);}
.m64_c00060{transform:matrix(0.295735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295735,0.000000,0.000000,0.250000,0,0);}
.m6b_c00060{transform:matrix(0.295931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295931,0.000000,0.000000,0.250000,0,0);}
.m74_c00060{transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);}
.ma1_c00060{transform:matrix(0.296923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296923,0.000000,0.000000,0.250000,0,0);}
.mf_c00060{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m2b_c00060{transform:matrix(0.297238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297238,0.000000,0.000000,0.250000,0,0);}
.mb2_c00060{transform:matrix(0.297249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297249,0.000000,0.000000,0.250000,0,0);}
.m72_c00060{transform:matrix(0.297306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297306,0.000000,0.000000,0.250000,0,0);}
.m8_c00060{transform:matrix(0.297315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297315,0.000000,0.000000,0.250000,0,0);}
.m1b_c00060{transform:matrix(0.297984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297984,0.000000,0.000000,0.250000,0,0);}
.m24_c00060{transform:matrix(0.298197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298197,0.000000,0.000000,0.250000,0,0);}
.ma6_c00060{transform:matrix(0.298503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298503,0.000000,0.000000,0.250000,0,0);}
.mbd_c00060{transform:matrix(0.298532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298532,0.000000,0.000000,0.250000,0,0);}
.mbf_c00060{transform:matrix(0.299053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299053,0.000000,0.000000,0.250000,0,0);}
.mb8_c00060{transform:matrix(0.299222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299222,0.000000,0.000000,0.250000,0,0);}
.maa_c00060{transform:matrix(0.299501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299501,0.000000,0.000000,0.250000,0,0);}
.m61_c00060{transform:matrix(0.300273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300273,0.000000,0.000000,0.250000,0,0);}
.m29_c00060{transform:matrix(0.301158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301158,0.000000,0.000000,0.250000,0,0);}
.m4f_c00060{transform:matrix(0.301336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301336,0.000000,0.000000,0.250000,0,0);}
.m49_c00060{transform:matrix(0.302372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302372,0.000000,0.000000,0.250000,0,0);}
.m60_c00060{transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);}
.m69_c00060{transform:matrix(0.303932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303932,0.000000,0.000000,0.250000,0,0);}
.m8d_c00060{transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);}
.m87_c00060{transform:matrix(0.305210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305210,0.000000,0.000000,0.250000,0,0);}
.m5c_c00060{transform:matrix(0.305434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305434,0.000000,0.000000,0.250000,0,0);}
.m5a_c00060{transform:matrix(0.306226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306226,0.000000,0.000000,0.250000,0,0);}
.m53_c00060{transform:matrix(0.306259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306259,0.000000,0.000000,0.250000,0,0);}
.m58_c00060{transform:matrix(0.307902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307902,0.000000,0.000000,0.250000,0,0);}
.m39_c00060{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.ma9_c00060{transform:matrix(0.310270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310270,0.000000,0.000000,0.250000,0,0);}
.mc2_c00060{transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);}
.m8f_c00060{transform:matrix(0.311149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311149,0.000000,0.000000,0.250000,0,0);}
.mc0_c00060{transform:matrix(0.311401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311401,0.000000,0.000000,0.250000,0,0);}
.m30_c00060{transform:matrix(0.313613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313613,0.000000,0.000000,0.250000,0,0);}
.m46_c00060{transform:matrix(0.313701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313701,0.000000,0.000000,0.250000,0,0);}
.mbb_c00060{transform:matrix(0.313924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313924,0.000000,0.000000,0.250000,0,0);}
.m54_c00060{transform:matrix(0.315390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315390,0.000000,0.000000,0.250000,0,0);}
.m27_c00060{transform:matrix(0.316554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316554,0.000000,0.000000,0.250000,0,0);}
.ma3_c00060{transform:matrix(0.316917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316917,0.000000,0.000000,0.250000,0,0);}
.m3a_c00060{transform:matrix(0.317662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317662,0.000000,0.000000,0.250000,0,0);}
.m14_c00060{transform:matrix(0.318082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318082,0.000000,0.000000,0.250000,0,0);}
.m8b_c00060{transform:matrix(0.318366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318366,0.000000,0.000000,0.250000,0,0);}
.ma4_c00060{transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);}
.mc1_c00060{transform:matrix(0.320109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320109,0.000000,0.000000,0.250000,0,0);}
.mb0_c00060{transform:matrix(0.321048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321048,0.000000,0.000000,0.250000,0,0);}
.m18_c00060{transform:matrix(0.321468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321468,0.000000,0.000000,0.250000,0,0);}
.m38_c00060{transform:matrix(0.321473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321473,0.000000,0.000000,0.250000,0,0);}
.m9d_c00060{transform:matrix(0.321606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321606,0.000000,0.000000,0.250000,0,0);}
.ma5_c00060{transform:matrix(0.322676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322676,0.000000,0.000000,0.250000,0,0);}
.ma_c00060{transform:matrix(0.323944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323944,0.000000,0.000000,0.250000,0,0);}
.m4d_c00060{transform:matrix(0.324307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324307,0.000000,0.000000,0.250000,0,0);}
.mba_c00060{transform:matrix(0.325383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325383,0.000000,0.000000,0.250000,0,0);}
.m37_c00060{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m96_c00060{transform:matrix(0.327718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327718,0.000000,0.000000,0.250000,0,0);}
.m6d_c00060{transform:matrix(0.330299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330299,0.000000,0.000000,0.250000,0,0);}
.m13_c00060{transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);}
.mac_c00060{transform:matrix(0.331590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331590,0.000000,0.000000,0.250000,0,0);}
.m91_c00060{transform:matrix(0.331746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331746,0.000000,0.000000,0.250000,0,0);}
.m63_c00060{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m8c_c00060{transform:matrix(0.336260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336260,0.000000,0.000000,0.250000,0,0);}
.m6_c00060{transform:matrix(0.336458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336458,0.000000,0.000000,0.250000,0,0);}
.m85_c00060{transform:matrix(0.336597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336597,0.000000,0.000000,0.250000,0,0);}
.m21_c00060{transform:matrix(0.336976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336976,0.000000,0.000000,0.250000,0,0);}
.m56_c00060{transform:matrix(0.337161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337161,0.000000,0.000000,0.250000,0,0);}
.m6e_c00060{transform:matrix(0.337681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337681,0.000000,0.000000,0.250000,0,0);}
.m25_c00060{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m77_c00060{transform:matrix(0.340235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340235,0.000000,0.000000,0.250000,0,0);}
.m9a_c00060{transform:matrix(0.342926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342926,0.000000,0.000000,0.250000,0,0);}
.m7e_c00060{transform:matrix(0.343905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343905,0.000000,0.000000,0.250000,0,0);}
.m32_c00060{transform:matrix(0.344194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344194,0.000000,0.000000,0.250000,0,0);}
.me_c00060{transform:matrix(0.347013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347013,0.000000,0.000000,0.250000,0,0);}
.m4a_c00060{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);}
.m34_c00060{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m98_c00060{transform:matrix(0.349472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349472,0.000000,0.000000,0.250000,0,0);}
.ma7_c00060{transform:matrix(0.350717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350717,0.000000,0.000000,0.250000,0,0);}
.m8a_c00060{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m4_c00060{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m9_c00060{transform:matrix(0.385974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385974,0.000000,0.000000,0.250000,0,0);}
.v0_c00060{vertical-align:0.000000px;}
.ls6_c00060{letter-spacing:-2.744280px;}
.ls13_c00060{letter-spacing:-2.720758px;}
.lsf_c00060{letter-spacing:-2.375762px;}
.ls12_c00060{letter-spacing:-0.533174px;}
.lsd_c00060{letter-spacing:-0.180338px;}
.ls3_c00060{letter-spacing:0.000000px;}
.ls15_c00060{letter-spacing:0.580219px;}
.ls5_c00060{letter-spacing:1.831500px;}
.ls9_c00060{letter-spacing:2.132698px;}
.lsb_c00060{letter-spacing:2.705076px;}
.ls0_c00060{letter-spacing:2.712917px;}
.ls7_c00060{letter-spacing:3.112798px;}
.lsa_c00060{letter-spacing:3.603610px;}
.ls11_c00060{letter-spacing:3.643200px;}
.ls14_c00060{letter-spacing:3.682810px;}
.lse_c00060{letter-spacing:3.801610px;}
.ls10_c00060{letter-spacing:3.880810px;}
.ls4_c00060{letter-spacing:3.920400px;}
.ls2_c00060{letter-spacing:4.187700px;}
.lsc_c00060{letter-spacing:4.474810px;}
.ls1_c00060{letter-spacing:7.997616px;}
.ls8_c00060{letter-spacing:51.321798px;}
.sc__c00060{text-shadow:none;}
.sc0_c00060{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00060{-webkit-text-stroke:0px transparent;}
.sc0_c00060{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00060{word-spacing:-19.602000px;}
.ws1_c00060{word-spacing:0.000000px;}
._6_c00060{width:3.214728px;}
._3_c00060{width:7.182173px;}
._5_c00060{width:20.856528px;}
._1_c00060{width:22.267872px;}
._2_c00060{width:24.102619px;}
._0_c00060{width:30.422304px;}
._7_c00060{width:35.397648px;}
._4_c00060{width:38.655144px;}
.fc0_c00060{color:transparent;}
.fs1_c00060{font-size:27.720000px;}
.fs9_c00060{font-size:34.056198px;}
.fs3_c00060{font-size:36.630000px;}
.fs7_c00060{font-size:39.600000px;}
.fs10_c00060{font-size:45.144000px;}
.fs4_c00060{font-size:51.321798px;}
.fse_c00060{font-size:67.320000px;}
.fs5_c00060{font-size:71.280000px;}
.fs6_c00060{font-size:72.072198px;}
.fsd_c00060{font-size:72.864000px;}
.fsf_c00060{font-size:73.656198px;}
.fsa_c00060{font-size:76.032198px;}
.fsc_c00060{font-size:77.616198px;}
.fs2_c00060{font-size:78.408000px;}
.fsb_c00060{font-size:78.804000px;}
.fs0_c00060{font-size:83.754000px;}
.fs8_c00060{font-size:89.496198px;}
.y0_c00060{bottom:0.000000px;}
.y1_c00060{bottom:76.500000px;}
.y22_c00060{bottom:97.560585px;}
.y21_c00060{bottom:144.966735px;}
.y20_c00060{bottom:175.612185px;}
.y1f_c00060{bottom:196.644735px;}
.y1e_c00060{bottom:211.969935px;}
.y1d_c00060{bottom:245.110185px;}
.y1c_c00060{bottom:277.542585px;}
.y1b_c00060{bottom:309.979935px;}
.y1a_c00060{bottom:342.412335px;}
.y19_c00060{bottom:367.716735px;}
.y18_c00060{bottom:374.488335px;}
.y17_c00060{bottom:406.559385px;}
.y16_c00060{bottom:439.348185px;}
.y15_c00060{bottom:471.072735px;}
.y14_c00060{bottom:502.430985px;}
.y13_c00060{bottom:534.506985px;}
.y12_c00060{bottom:566.587935px;}
.y11_c00060{bottom:599.020335px;}
.y10_c00060{bottom:630.383535px;}
.yf_c00060{bottom:663.172335px;}
.ye_c00060{bottom:690.971535px;}
.yd_c00060{bottom:695.961135px;}
.yc_c00060{bottom:723.760335px;}
.yb_c00060{bottom:728.749935px;}
.ya_c00060{bottom:792.896985px;}
.y9_c00060{bottom:809.652735px;}
.y8_c00060{bottom:824.977935px;}
.y7_c00060{bottom:856.692585px;}
.y6_c00060{bottom:889.481385px;}
.y4_c00060{bottom:922.631535px;}
.y5_c00060{bottom:927.621135px;}
.y3_c00060{bottom:991.060335px;}
.y2_c00060{bottom:1087.283385px;}
.h3_c00060{height:28.911094px;}
.h6_c00060{height:34.180317px;}
.hb_c00060{height:35.519550px;}
.h5_c00060{height:38.203945px;}
.h9_c00060{height:41.301563px;}
.h12_c00060{height:47.083781px;}
.h10_c00060{height:66.070898px;}
.h7_c00060{height:69.957422px;}
.hf_c00060{height:71.512031px;}
.hc_c00060{height:74.621444px;}
.h8_c00060{height:75.169050px;}
.he_c00060{height:76.176054px;}
.h11_c00060{height:76.821113px;}
.h4_c00060{height:76.953164px;}
.hd_c00060{height:77.341816px;}
.h2_c00060{height:82.199971px;}
.ha_c00060{height:87.835624px;}
.h1_c00060{height:1110.000000px;}
.h0_c00060{height:1263.000000px;}
.w1_c00060{width:721.500000px;}
.w0_c00060{width:892.500000px;}
.x0_c00060{left:0.000000px;}
.x4c_c00060{left:42.658035px;}
.x34_c00060{left:43.880685px;}
.x51_c00060{left:45.024135px;}
.x19_c00060{left:46.028985px;}
.x4_c00060{left:47.212035px;}
.x35_c00060{left:67.383285px;}
.x11_c00060{left:77.545635px;}
.x64_c00060{left:78.822735px;}
.x1_c00060{left:85.500000px;}
.x65_c00060{left:87.564435px;}
.x57_c00060{left:88.608885px;}
.x27_c00060{left:99.488985px;}
.x36_c00060{left:106.399185px;}
.x37_c00060{left:108.948435px;}
.x4b_c00060{left:109.973085px;}
.x12_c00060{left:111.042285px;}
.x62_c00060{left:112.230285px;}
.x60_c00060{left:122.293635px;}
.x55_c00060{left:124.357785px;}
.x2c_c00060{left:131.010585px;}
.x67_c00060{left:134.173635px;}
.x6e_c00060{left:135.762585px;}
.x3c_c00060{left:142.380735px;}
.x5_c00060{left:143.845935px;}
.x13_c00060{left:154.948785px;}
.x28_c00060{left:165.383385px;}
.x6a_c00060{left:167.155485px;}
.x6_c00060{left:176.416935px;}
.x68_c00060{left:179.322585px;}
.x48_c00060{left:187.386135px;}
.x14_c00060{left:188.559285px;}
.x38_c00060{left:198.558285px;}
.x63_c00060{left:199.622535px;}
.x7_c00060{left:210.329385px;}
.x52_c00060{left:220.110585px;}
.x31_c00060{left:221.338185px;}
.x39_c00060{left:232.030185px;}
.x21_c00060{left:233.460735px;}
.x3d_c00060{left:243.286485px;}
.x2d_c00060{left:254.676435px;}
.x22_c00060{left:265.081335px;}
.x5e_c00060{left:266.289135px;}
.x4d_c00060{left:275.387235px;}
.x3e_c00060{left:277.278135px;}
.x42_c00060{left:286.435635px;}
.x8_c00060{left:287.480085px;}
.x5b_c00060{left:289.059135px;}
.x29_c00060{left:297.434535px;}
.x15_c00060{left:298.528485px;}
.x4e_c00060{left:310.017435px;}
.x43_c00060{left:320.709435px;}
.x49_c00060{left:321.847935px;}
.x58_c00060{left:330.985635px;}
.x1a_c00060{left:332.208285px;}
.x53_c00060{left:333.589335px;}
.x9_c00060{left:342.331035px;}
.x16_c00060{left:354.651585px;}
.x5d_c00060{left:358.571985px;}
.x2a_c00060{left:365.709885px;}
.x32_c00060{left:368.130435px;}
.x2b_c00060{left:376.382085px;}
.x23_c00060{left:377.579985px;}
.x3f_c00060{left:386.900835px;}
.x54_c00060{left:388.529385px;}
.x59_c00060{left:398.488785px;}
.x61_c00060{left:399.854985px;}
.xa_c00060{left:403.636785px;}
.xb_c00060{left:409.898535px;}
.x44_c00060{left:421.268685px;}
.x1b_c00060{left:430.807335px;}
.x40_c00060{left:431.866635px;}
.x2e_c00060{left:441.791385px;}
.x4f_c00060{left:444.088185px;}
.x5a_c00060{left:454.077285px;}
.xc_c00060{left:464.665335px;}
.x45_c00060{left:466.204785px;}
.x3a_c00060{left:476.401785px;}
.x1c_c00060{left:485.663235px;}
.x46_c00060{left:487.410585px;}
.x6b_c00060{left:489.935085px;}
.x56_c00060{left:496.711635px;}
.x5f_c00060{left:497.746185px;}
.x26_c00060{left:499.458885px;}
.x2f_c00060{left:508.982685px;}
.x24_c00060{left:510.027135px;}
.x5c_c00060{left:520.709235px;}
.x1d_c00060{left:531.445785px;}
.x4a_c00060{left:541.776435px;}
.xd_c00060{left:543.137685px;}
.x6c_c00060{left:545.662185px;}
.x1e_c00060{left:552.696135px;}
.x33_c00060{left:553.859385px;}
.xe_c00060{left:556.007685px;}
.x17_c00060{left:564.204885px;}
.xf_c00060{left:575.466135px;}
.x1f_c00060{left:585.965085px;}
.x50_c00060{left:598.409385px;}
.x47_c00060{left:600.146835px;}
.x30_c00060{left:603.012885px;}
.x41_c00060{left:607.146135px;}
.x18_c00060{left:609.442935px;}
.x6d_c00060{left:611.289285px;}
.x2_c00060{left:618.338085px;}
.x20_c00060{left:620.154735px;}
.x3_c00060{left:625.268085px;}
.x25_c00060{left:631.049685px;}
.x3b_c00060{left:642.078285px;}
.x69_c00060{left:651.587235px;}
.x10_c00060{left:653.329635px;}
.x66_c00060{left:655.398735px;}
@media print{
.v0_c00060{vertical-align:0.000000pt;}
.ls6_c00060{letter-spacing:-2.439360pt;}
.ls13_c00060{letter-spacing:-2.418451pt;}
.lsf_c00060{letter-spacing:-2.111789pt;}
.ls12_c00060{letter-spacing:-0.473933pt;}
.lsd_c00060{letter-spacing:-0.160301pt;}
.ls3_c00060{letter-spacing:0.000000pt;}
.ls15_c00060{letter-spacing:0.515750pt;}
.ls5_c00060{letter-spacing:1.628000pt;}
.ls9_c00060{letter-spacing:1.895731pt;}
.lsb_c00060{letter-spacing:2.404512pt;}
.ls0_c00060{letter-spacing:2.411482pt;}
.ls7_c00060{letter-spacing:2.766931pt;}
.lsa_c00060{letter-spacing:3.203209pt;}
.ls11_c00060{letter-spacing:3.238400pt;}
.ls14_c00060{letter-spacing:3.273609pt;}
.lse_c00060{letter-spacing:3.379209pt;}
.ls10_c00060{letter-spacing:3.449609pt;}
.ls4_c00060{letter-spacing:3.484800pt;}
.ls2_c00060{letter-spacing:3.722400pt;}
.lsc_c00060{letter-spacing:3.977609pt;}
.ls1_c00060{letter-spacing:7.108992pt;}
.ls8_c00060{letter-spacing:45.619376pt;}
.ws0_c00060{word-spacing:-17.424000pt;}
.ws1_c00060{word-spacing:0.000000pt;}
._6_c00060{width:2.857536pt;}
._3_c00060{width:6.384154pt;}
._5_c00060{width:18.539136pt;}
._1_c00060{width:19.793664pt;}
._2_c00060{width:21.424550pt;}
._0_c00060{width:27.042048pt;}
._7_c00060{width:31.464576pt;}
._4_c00060{width:34.360128pt;}
.fs1_c00060{font-size:24.640000pt;}
.fs9_c00060{font-size:30.272176pt;}
.fs3_c00060{font-size:32.560000pt;}
.fs7_c00060{font-size:35.200000pt;}
.fs10_c00060{font-size:40.128000pt;}
.fs4_c00060{font-size:45.619376pt;}
.fse_c00060{font-size:59.840000pt;}
.fs5_c00060{font-size:63.360000pt;}
.fs6_c00060{font-size:64.064176pt;}
.fsd_c00060{font-size:64.768000pt;}
.fsf_c00060{font-size:65.472176pt;}
.fsa_c00060{font-size:67.584176pt;}
.fsc_c00060{font-size:68.992176pt;}
.fs2_c00060{font-size:69.696000pt;}
.fsb_c00060{font-size:70.048000pt;}
.fs0_c00060{font-size:74.448000pt;}
.fs8_c00060{font-size:79.552176pt;}
.y0_c00060{bottom:0.000000pt;}
.y1_c00060{bottom:68.000000pt;}
.y22_c00060{bottom:86.720520pt;}
.y21_c00060{bottom:128.859320pt;}
.y20_c00060{bottom:156.099720pt;}
.y1f_c00060{bottom:174.795320pt;}
.y1e_c00060{bottom:188.417720pt;}
.y1d_c00060{bottom:217.875720pt;}
.y1c_c00060{bottom:246.704520pt;}
.y1b_c00060{bottom:275.537720pt;}
.y1a_c00060{bottom:304.366520pt;}
.y19_c00060{bottom:326.859320pt;}
.y18_c00060{bottom:332.878520pt;}
.y17_c00060{bottom:361.386120pt;}
.y16_c00060{bottom:390.531720pt;}
.y15_c00060{bottom:418.731320pt;}
.y14_c00060{bottom:446.605320pt;}
.y13_c00060{bottom:475.117320pt;}
.y12_c00060{bottom:503.633720pt;}
.y11_c00060{bottom:532.462520pt;}
.y10_c00060{bottom:560.340920pt;}
.yf_c00060{bottom:589.486520pt;}
.ye_c00060{bottom:614.196920pt;}
.yd_c00060{bottom:618.632120pt;}
.yc_c00060{bottom:643.342520pt;}
.yb_c00060{bottom:647.777720pt;}
.ya_c00060{bottom:704.797320pt;}
.y9_c00060{bottom:719.691320pt;}
.y8_c00060{bottom:733.313720pt;}
.y7_c00060{bottom:761.504520pt;}
.y6_c00060{bottom:790.650120pt;}
.y4_c00060{bottom:820.116920pt;}
.y5_c00060{bottom:824.552120pt;}
.y3_c00060{bottom:880.942520pt;}
.y2_c00060{bottom:966.474120pt;}
.h3_c00060{height:25.698750pt;}
.h6_c00060{height:30.382504pt;}
.hb_c00060{height:31.572934pt;}
.h5_c00060{height:33.959063pt;}
.h9_c00060{height:36.712500pt;}
.h12_c00060{height:41.852250pt;}
.h10_c00060{height:58.729688pt;}
.h7_c00060{height:62.184375pt;}
.hf_c00060{height:63.566250pt;}
.hc_c00060{height:66.330173pt;}
.h8_c00060{height:66.816934pt;}
.he_c00060{height:67.712048pt;}
.h11_c00060{height:68.285434pt;}
.h4_c00060{height:68.402813pt;}
.hd_c00060{height:68.748281pt;}
.h2_c00060{height:73.066641pt;}
.ha_c00060{height:78.076110pt;}
.h1_c00060{height:986.666667pt;}
.h0_c00060{height:1122.666667pt;}
.w1_c00060{width:641.333333pt;}
.w0_c00060{width:793.333333pt;}
.x0_c00060{left:0.000000pt;}
.x4c_c00060{left:37.918253pt;}
.x34_c00060{left:39.005053pt;}
.x51_c00060{left:40.021453pt;}
.x19_c00060{left:40.914653pt;}
.x4_c00060{left:41.966253pt;}
.x35_c00060{left:59.896253pt;}
.x11_c00060{left:68.929453pt;}
.x64_c00060{left:70.064653pt;}
.x1_c00060{left:76.000000pt;}
.x65_c00060{left:77.835053pt;}
.x57_c00060{left:78.763453pt;}
.x27_c00060{left:88.434653pt;}
.x36_c00060{left:94.577053pt;}
.x37_c00060{left:96.843053pt;}
.x4b_c00060{left:97.753853pt;}
.x12_c00060{left:98.704253pt;}
.x62_c00060{left:99.760253pt;}
.x60_c00060{left:108.705453pt;}
.x55_c00060{left:110.540253pt;}
.x2c_c00060{left:116.453853pt;}
.x67_c00060{left:119.265453pt;}
.x6e_c00060{left:120.677853pt;}
.x3c_c00060{left:126.560653pt;}
.x5_c00060{left:127.863053pt;}
.x13_c00060{left:137.732253pt;}
.x28_c00060{left:147.007453pt;}
.x6a_c00060{left:148.582653pt;}
.x6_c00060{left:156.815053pt;}
.x68_c00060{left:159.397853pt;}
.x48_c00060{left:166.565453pt;}
.x14_c00060{left:167.608253pt;}
.x38_c00060{left:176.496253pt;}
.x63_c00060{left:177.442253pt;}
.x7_c00060{left:186.959453pt;}
.x52_c00060{left:195.653853pt;}
.x31_c00060{left:196.745053pt;}
.x39_c00060{left:206.249053pt;}
.x21_c00060{left:207.520653pt;}
.x3d_c00060{left:216.254653pt;}
.x2d_c00060{left:226.379053pt;}
.x22_c00060{left:235.627853pt;}
.x5e_c00060{left:236.701453pt;}
.x4d_c00060{left:244.788653pt;}
.x3e_c00060{left:246.469453pt;}
.x42_c00060{left:254.609453pt;}
.x8_c00060{left:255.537853pt;}
.x5b_c00060{left:256.941453pt;}
.x29_c00060{left:264.386253pt;}
.x15_c00060{left:265.358653pt;}
.x4e_c00060{left:275.571053pt;}
.x43_c00060{left:285.075053pt;}
.x49_c00060{left:286.087053pt;}
.x58_c00060{left:294.209453pt;}
.x1a_c00060{left:295.296253pt;}
.x53_c00060{left:296.523853pt;}
.x9_c00060{left:304.294253pt;}
.x16_c00060{left:315.245853pt;}
.x5d_c00060{left:318.730653pt;}
.x2a_c00060{left:325.075453pt;}
.x32_c00060{left:327.227053pt;}
.x2b_c00060{left:334.561853pt;}
.x23_c00060{left:335.626653pt;}
.x3f_c00060{left:343.911853pt;}
.x54_c00060{left:345.359453pt;}
.x59_c00060{left:354.212253pt;}
.x61_c00060{left:355.426653pt;}
.xa_c00060{left:358.788253pt;}
.xb_c00060{left:364.354253pt;}
.x44_c00060{left:374.461053pt;}
.x1b_c00060{left:382.939853pt;}
.x40_c00060{left:383.881453pt;}
.x2e_c00060{left:392.703453pt;}
.x4f_c00060{left:394.745053pt;}
.x5a_c00060{left:403.624253pt;}
.xc_c00060{left:413.035853pt;}
.x45_c00060{left:414.404253pt;}
.x3a_c00060{left:423.468253pt;}
.x1c_c00060{left:431.700653pt;}
.x46_c00060{left:433.253853pt;}
.x6b_c00060{left:435.497853pt;}
.x56_c00060{left:441.521453pt;}
.x5f_c00060{left:442.441053pt;}
.x26_c00060{left:443.963453pt;}
.x2f_c00060{left:452.429053pt;}
.x24_c00060{left:453.357453pt;}
.x5c_c00060{left:462.852653pt;}
.x1d_c00060{left:472.396253pt;}
.x4a_c00060{left:481.579053pt;}
.xd_c00060{left:482.789053pt;}
.x6c_c00060{left:485.033053pt;}
.x1e_c00060{left:491.285453pt;}
.x33_c00060{left:492.319453pt;}
.xe_c00060{left:494.229053pt;}
.x17_c00060{left:501.515453pt;}
.xf_c00060{left:511.525453pt;}
.x1f_c00060{left:520.857853pt;}
.x50_c00060{left:531.919453pt;}
.x47_c00060{left:533.463853pt;}
.x30_c00060{left:536.011453pt;}
.x41_c00060{left:539.685453pt;}
.x18_c00060{left:541.727053pt;}
.x6d_c00060{left:543.368253pt;}
.x2_c00060{left:549.633853pt;}
.x20_c00060{left:551.248653pt;}
.x3_c00060{left:555.793853pt;}
.x25_c00060{left:560.933053pt;}
.x3b_c00060{left:570.736253pt;}
.x69_c00060{left:579.188653pt;}
.x10_c00060{left:580.737453pt;}
.x66_c00060{left:582.576653pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_57dd3f7d930a24c16780f40a.woff2')format("woff");}.ff1_c00061{font-family:ff1_c00061;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00061;src:url('chunks/assets/font_ba8def857491cae0ba44d0ce.woff2')format("woff");}.ff2_c00061{font-family:ff2_c00061;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00061;src:url('chunks/assets/font_dc88c0309d78f44eb1aeedc5.woff2')format("woff");}.ff3_c00061{font-family:ff3_c00061;line-height:0.666000;font-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_c00061{transform:matrix(0.116524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116524,0.000000,0.000000,0.250000,0,0);}
.m74_c00061{transform:matrix(0.172980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172980,0.000000,0.000000,0.250000,0,0);}
.m87_c00061{transform:matrix(0.180640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180640,0.000000,0.000000,0.250000,0,0);}
.m65_c00061{transform:matrix(0.181973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181973,0.000000,0.000000,0.250000,0,0);}
.mb3_c00061{transform:matrix(0.185516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185516,0.000000,0.000000,0.250000,0,0);}
.m8d_c00061{transform:matrix(0.186992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186992,0.000000,0.000000,0.250000,0,0);}
.m3d_c00061{transform:matrix(0.225746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225746,0.000000,0.000000,0.250000,0,0);}
.m39_c00061{transform:matrix(0.229447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229447,0.000000,0.000000,0.250000,0,0);}
.m53_c00061{transform:matrix(0.239668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239668,0.000000,0.000000,0.250000,0,0);}
.m7d_c00061{transform:matrix(0.240285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240285,0.000000,0.000000,0.250000,0,0);}
.m56_c00061{transform:matrix(0.245353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245353,0.000000,0.000000,0.250000,0,0);}
.m0_c00061{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00061{transform:matrix(0.250825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250825,0.000000,0.000000,0.250000,0,0);}
.m34_c00061{transform:matrix(0.250965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250965,0.000000,0.000000,0.250000,0,0);}
.m85_c00061{transform:matrix(0.251385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251385,0.000000,0.000000,0.250000,0,0);}
.m5c_c00061{transform:matrix(0.252411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252411,0.000000,0.000000,0.250000,0,0);}
.m5e_c00061{transform:matrix(0.253053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253053,0.000000,0.000000,0.250000,0,0);}
.m4_c00061{transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);}
.m29_c00061{transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);}
.mf_c00061{transform:matrix(0.254475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254475,0.000000,0.000000,0.250000,0,0);}
.m6e_c00061{transform:matrix(0.254614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254614,0.000000,0.000000,0.250000,0,0);}
.m26_c00061{transform:matrix(0.254652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254652,0.000000,0.000000,0.250000,0,0);}
.mae_c00061{transform:matrix(0.254883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254883,0.000000,0.000000,0.250000,0,0);}
.m40_c00061{transform:matrix(0.255132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255132,0.000000,0.000000,0.250000,0,0);}
.m18_c00061{transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);}
.m12_c00061{transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);}
.m52_c00061{transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);}
.m6c_c00061{transform:matrix(0.258186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258186,0.000000,0.000000,0.250000,0,0);}
.m15_c00061{transform:matrix(0.258788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258788,0.000000,0.000000,0.250000,0,0);}
.m4d_c00061{transform:matrix(0.259308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259308,0.000000,0.000000,0.250000,0,0);}
.m67_c00061{transform:matrix(0.259376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259376,0.000000,0.000000,0.250000,0,0);}
.m2c_c00061{transform:matrix(0.259485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259485,0.000000,0.000000,0.250000,0,0);}
.m1e_c00061{transform:matrix(0.260174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260174,0.000000,0.000000,0.250000,0,0);}
.m1f_c00061{transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);}
.m16_c00061{transform:matrix(0.260787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260787,0.000000,0.000000,0.250000,0,0);}
.m54_c00061{transform:matrix(0.261958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261958,0.000000,0.000000,0.250000,0,0);}
.m64_c00061{transform:matrix(0.262780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262780,0.000000,0.000000,0.250000,0,0);}
.m7f_c00061{transform:matrix(0.262962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262962,0.000000,0.000000,0.250000,0,0);}
.m20_c00061{transform:matrix(0.263262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263262,0.000000,0.000000,0.250000,0,0);}
.m94_c00061{transform:matrix(0.263560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263560,0.000000,0.000000,0.250000,0,0);}
.m3_c00061{transform:matrix(0.264302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264302,0.000000,0.000000,0.250000,0,0);}
.maf_c00061{transform:matrix(0.265493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265493,0.000000,0.000000,0.250000,0,0);}
.m9f_c00061{transform:matrix(0.266203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266203,0.000000,0.000000,0.250000,0,0);}
.m60_c00061{transform:matrix(0.266314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266314,0.000000,0.000000,0.250000,0,0);}
.m3a_c00061{transform:matrix(0.266333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266333,0.000000,0.000000,0.250000,0,0);}
.m49_c00061{transform:matrix(0.266448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266448,0.000000,0.000000,0.250000,0,0);}
.m1_c00061{transform:matrix(0.266654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266654,0.000000,0.000000,0.250000,0,0);}
.m42_c00061{transform:matrix(0.266822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266822,0.000000,0.000000,0.250000,0,0);}
.mb_c00061{transform:matrix(0.267754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267754,0.000000,0.000000,0.250000,0,0);}
.mb1_c00061{transform:matrix(0.268886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268886,0.000000,0.000000,0.250000,0,0);}
.m7c_c00061{transform:matrix(0.269184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269184,0.000000,0.000000,0.250000,0,0);}
.maa_c00061{transform:matrix(0.269353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269353,0.000000,0.000000,0.250000,0,0);}
.m41_c00061{transform:matrix(0.269711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269711,0.000000,0.000000,0.250000,0,0);}
.m6_c00061{transform:matrix(0.269991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269991,0.000000,0.000000,0.250000,0,0);}
.m7_c00061{transform:matrix(0.270379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270379,0.000000,0.000000,0.250000,0,0);}
.m1d_c00061{transform:matrix(0.270502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270502,0.000000,0.000000,0.250000,0,0);}
.mad_c00061{transform:matrix(0.270612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270612,0.000000,0.000000,0.250000,0,0);}
.m8a_c00061{transform:matrix(0.271211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271211,0.000000,0.000000,0.250000,0,0);}
.m9_c00061{transform:matrix(0.271725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271725,0.000000,0.000000,0.250000,0,0);}
.m17_c00061{transform:matrix(0.271747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271747,0.000000,0.000000,0.250000,0,0);}
.ma7_c00061{transform:matrix(0.271947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271947,0.000000,0.000000,0.250000,0,0);}
.ma_c00061{transform:matrix(0.272413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272413,0.000000,0.000000,0.250000,0,0);}
.md_c00061{transform:matrix(0.272535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272535,0.000000,0.000000,0.250000,0,0);}
.m86_c00061{transform:matrix(0.272905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272905,0.000000,0.000000,0.250000,0,0);}
.m51_c00061{transform:matrix(0.272921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272921,0.000000,0.000000,0.250000,0,0);}
.m3f_c00061{transform:matrix(0.273059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273059,0.000000,0.000000,0.250000,0,0);}
.m6b_c00061{transform:matrix(0.273629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273629,0.000000,0.000000,0.250000,0,0);}
.m72_c00061{transform:matrix(0.274575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274575,0.000000,0.000000,0.250000,0,0);}
.m7e_c00061{transform:matrix(0.274976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274976,0.000000,0.000000,0.250000,0,0);}
.m2a_c00061{transform:matrix(0.275369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275369,0.000000,0.000000,0.250000,0,0);}
.m50_c00061{transform:matrix(0.275619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275619,0.000000,0.000000,0.250000,0,0);}
.m3e_c00061{transform:matrix(0.276186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276186,0.000000,0.000000,0.250000,0,0);}
.m9c_c00061{transform:matrix(0.276668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276668,0.000000,0.000000,0.250000,0,0);}
.m73_c00061{transform:matrix(0.277316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277316,0.000000,0.000000,0.250000,0,0);}
.m25_c00061{transform:matrix(0.277382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277382,0.000000,0.000000,0.250000,0,0);}
.ma2_c00061{transform:matrix(0.277751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277751,0.000000,0.000000,0.250000,0,0);}
.m37_c00061{transform:matrix(0.277797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277797,0.000000,0.000000,0.250000,0,0);}
.m46_c00061{transform:matrix(0.278067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278067,0.000000,0.000000,0.250000,0,0);}
.m5a_c00061{transform:matrix(0.278387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278387,0.000000,0.000000,0.250000,0,0);}
.m80_c00061{transform:matrix(0.278680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278680,0.000000,0.000000,0.250000,0,0);}
.m4b_c00061{transform:matrix(0.278778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278778,0.000000,0.000000,0.250000,0,0);}
.m88_c00061{transform:matrix(0.279354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279354,0.000000,0.000000,0.250000,0,0);}
.m78_c00061{transform:matrix(0.279406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279406,0.000000,0.000000,0.250000,0,0);}
.m83_c00061{transform:matrix(0.279501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279501,0.000000,0.000000,0.250000,0,0);}
.m31_c00061{transform:matrix(0.280118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280118,0.000000,0.000000,0.250000,0,0);}
.m47_c00061{transform:matrix(0.280468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280468,0.000000,0.000000,0.250000,0,0);}
.m9b_c00061{transform:matrix(0.280514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280514,0.000000,0.000000,0.250000,0,0);}
.m8c_c00061{transform:matrix(0.280705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280705,0.000000,0.000000,0.250000,0,0);}
.ma3_c00061{transform:matrix(0.280711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280711,0.000000,0.000000,0.250000,0,0);}
.m95_c00061{transform:matrix(0.281948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281948,0.000000,0.000000,0.250000,0,0);}
.m3b_c00061{transform:matrix(0.282982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282982,0.000000,0.000000,0.250000,0,0);}
.m11_c00061{transform:matrix(0.283747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283747,0.000000,0.000000,0.250000,0,0);}
.m5d_c00061{transform:matrix(0.283751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283751,0.000000,0.000000,0.250000,0,0);}
.m4c_c00061{transform:matrix(0.283960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283960,0.000000,0.000000,0.250000,0,0);}
.m69_c00061{transform:matrix(0.284155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284155,0.000000,0.000000,0.250000,0,0);}
.me_c00061{transform:matrix(0.284505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284505,0.000000,0.000000,0.250000,0,0);}
.m5_c00061{transform:matrix(0.284879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284879,0.000000,0.000000,0.250000,0,0);}
.mc_c00061{transform:matrix(0.285161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285161,0.000000,0.000000,0.250000,0,0);}
.m89_c00061{transform:matrix(0.285264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285264,0.000000,0.000000,0.250000,0,0);}
.m75_c00061{transform:matrix(0.286800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286800,0.000000,0.000000,0.250000,0,0);}
.ma8_c00061{transform:matrix(0.287051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287051,0.000000,0.000000,0.250000,0,0);}
.mb5_c00061{transform:matrix(0.287206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287206,0.000000,0.000000,0.250000,0,0);}
.m71_c00061{transform:matrix(0.287639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287639,0.000000,0.000000,0.250000,0,0);}
.ma1_c00061{transform:matrix(0.288041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288041,0.000000,0.000000,0.250000,0,0);}
.m38_c00061{transform:matrix(0.288285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288285,0.000000,0.000000,0.250000,0,0);}
.mb4_c00061{transform:matrix(0.288593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288593,0.000000,0.000000,0.250000,0,0);}
.m76_c00061{transform:matrix(0.288695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288695,0.000000,0.000000,0.250000,0,0);}
.m5b_c00061{transform:matrix(0.288914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288914,0.000000,0.000000,0.250000,0,0);}
.m28_c00061{transform:matrix(0.290059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290059,0.000000,0.000000,0.250000,0,0);}
.m8_c00061{transform:matrix(0.290326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290326,0.000000,0.000000,0.250000,0,0);}
.m14_c00061{transform:matrix(0.290977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290977,0.000000,0.000000,0.250000,0,0);}
.m43_c00061{transform:matrix(0.291388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291388,0.000000,0.000000,0.250000,0,0);}
.ma4_c00061{transform:matrix(0.291738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291738,0.000000,0.000000,0.250000,0,0);}
.m57_c00061{transform:matrix(0.292490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292490,0.000000,0.000000,0.250000,0,0);}
.m9e_c00061{transform:matrix(0.292515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292515,0.000000,0.000000,0.250000,0,0);}
.m2d_c00061{transform:matrix(0.292686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292686,0.000000,0.000000,0.250000,0,0);}
.m4e_c00061{transform:matrix(0.293207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293207,0.000000,0.000000,0.250000,0,0);}
.m9d_c00061{transform:matrix(0.293261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293261,0.000000,0.000000,0.250000,0,0);}
.m2e_c00061{transform:matrix(0.293305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293305,0.000000,0.000000,0.250000,0,0);}
.m24_c00061{transform:matrix(0.294287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294287,0.000000,0.000000,0.250000,0,0);}
.m63_c00061{transform:matrix(0.294731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294731,0.000000,0.000000,0.250000,0,0);}
.m1a_c00061{transform:matrix(0.296420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296420,0.000000,0.000000,0.250000,0,0);}
.m98_c00061{transform:matrix(0.296502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296502,0.000000,0.000000,0.250000,0,0);}
.m2_c00061{transform:matrix(0.296594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296594,0.000000,0.000000,0.250000,0,0);}
.m23_c00061{transform:matrix(0.297589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297589,0.000000,0.000000,0.250000,0,0);}
.m48_c00061{transform:matrix(0.297692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297692,0.000000,0.000000,0.250000,0,0);}
.ma6_c00061{transform:matrix(0.297749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297749,0.000000,0.000000,0.250000,0,0);}
.ma0_c00061{transform:matrix(0.297943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297943,0.000000,0.000000,0.250000,0,0);}
.m91_c00061{transform:matrix(0.297985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297985,0.000000,0.000000,0.250000,0,0);}
.m4a_c00061{transform:matrix(0.298359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298359,0.000000,0.000000,0.250000,0,0);}
.mac_c00061{transform:matrix(0.298723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298723,0.000000,0.000000,0.250000,0,0);}
.m93_c00061{transform:matrix(0.299052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299052,0.000000,0.000000,0.250000,0,0);}
.m7a_c00061{transform:matrix(0.299125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299125,0.000000,0.000000,0.250000,0,0);}
.m33_c00061{transform:matrix(0.299681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299681,0.000000,0.000000,0.250000,0,0);}
.m27_c00061{transform:matrix(0.300598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300598,0.000000,0.000000,0.250000,0,0);}
.mb2_c00061{transform:matrix(0.300719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300719,0.000000,0.000000,0.250000,0,0);}
.m62_c00061{transform:matrix(0.301026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301026,0.000000,0.000000,0.250000,0,0);}
.m45_c00061{transform:matrix(0.303141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303141,0.000000,0.000000,0.250000,0,0);}
.m30_c00061{transform:matrix(0.303819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303819,0.000000,0.000000,0.250000,0,0);}
.m9a_c00061{transform:matrix(0.305045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305045,0.000000,0.000000,0.250000,0,0);}
.m36_c00061{transform:matrix(0.306444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306444,0.000000,0.000000,0.250000,0,0);}
.m84_c00061{transform:matrix(0.307853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307853,0.000000,0.000000,0.250000,0,0);}
.m79_c00061{transform:matrix(0.309145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309145,0.000000,0.000000,0.250000,0,0);}
.m6f_c00061{transform:matrix(0.309493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309493,0.000000,0.000000,0.250000,0,0);}
.m8b_c00061{transform:matrix(0.310853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310853,0.000000,0.000000,0.250000,0,0);}
.m7b_c00061{transform:matrix(0.310880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310880,0.000000,0.000000,0.250000,0,0);}
.m61_c00061{transform:matrix(0.311649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311649,0.000000,0.000000,0.250000,0,0);}
.m6d_c00061{transform:matrix(0.314128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314128,0.000000,0.000000,0.250000,0,0);}
.m70_c00061{transform:matrix(0.314374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314374,0.000000,0.000000,0.250000,0,0);}
.m44_c00061{transform:matrix(0.314459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314459,0.000000,0.000000,0.250000,0,0);}
.m10_c00061{transform:matrix(0.315938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315938,0.000000,0.000000,0.250000,0,0);}
.m1b_c00061{transform:matrix(0.316073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316073,0.000000,0.000000,0.250000,0,0);}
.m81_c00061{transform:matrix(0.316840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316840,0.000000,0.000000,0.250000,0,0);}
.m2b_c00061{transform:matrix(0.317224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317224,0.000000,0.000000,0.250000,0,0);}
.m2f_c00061{transform:matrix(0.317866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317866,0.000000,0.000000,0.250000,0,0);}
.m22_c00061{transform:matrix(0.317874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317874,0.000000,0.000000,0.250000,0,0);}
.m4f_c00061{transform:matrix(0.318242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318242,0.000000,0.000000,0.250000,0,0);}
.mb0_c00061{transform:matrix(0.318397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318397,0.000000,0.000000,0.250000,0,0);}
.mab_c00061{transform:matrix(0.318488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318488,0.000000,0.000000,0.250000,0,0);}
.m35_c00061{transform:matrix(0.319086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319086,0.000000,0.000000,0.250000,0,0);}
.m82_c00061{transform:matrix(0.319638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319638,0.000000,0.000000,0.250000,0,0);}
.m77_c00061{transform:matrix(0.320282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320282,0.000000,0.000000,0.250000,0,0);}
.m55_c00061{transform:matrix(0.322065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322065,0.000000,0.000000,0.250000,0,0);}
.m97_c00061{transform:matrix(0.323709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323709,0.000000,0.000000,0.250000,0,0);}
.m68_c00061{transform:matrix(0.325042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325042,0.000000,0.000000,0.250000,0,0);}
.m8e_c00061{transform:matrix(0.325725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325725,0.000000,0.000000,0.250000,0,0);}
.m13_c00061{transform:matrix(0.326105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326105,0.000000,0.000000,0.250000,0,0);}
.m8f_c00061{transform:matrix(0.327054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327054,0.000000,0.000000,0.250000,0,0);}
.ma5_c00061{transform:matrix(0.329385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329385,0.000000,0.000000,0.250000,0,0);}
.m32_c00061{transform:matrix(0.333044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333044,0.000000,0.000000,0.250000,0,0);}
.m59_c00061{transform:matrix(0.337327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337327,0.000000,0.000000,0.250000,0,0);}
.m1c_c00061{transform:matrix(0.341525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341525,0.000000,0.000000,0.250000,0,0);}
.m96_c00061{transform:matrix(0.341722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341722,0.000000,0.000000,0.250000,0,0);}
.m66_c00061{transform:matrix(0.344434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344434,0.000000,0.000000,0.250000,0,0);}
.m5f_c00061{transform:matrix(0.353102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353102,0.000000,0.000000,0.250000,0,0);}
.ma9_c00061{transform:matrix(0.353240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353240,0.000000,0.000000,0.250000,0,0);}
.m92_c00061{transform:matrix(0.362885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362885,0.000000,0.000000,0.250000,0,0);}
.m19_c00061{transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);}
.m99_c00061{transform:matrix(0.369365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369365,0.000000,0.000000,0.250000,0,0);}
.m58_c00061{transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);}
.m90_c00061{transform:matrix(0.376256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376256,0.000000,0.000000,0.250000,0,0);}
.m6a_c00061{transform:matrix(0.407418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407418,0.000000,0.000000,0.250000,0,0);}
.v0_c00061{vertical-align:0.000000px;}
.ls6_c00061{letter-spacing:-2.855167px;}
.lsd_c00061{letter-spacing:-2.798064px;}
.ls18_c00061{letter-spacing:-2.688840px;}
.ls19_c00061{letter-spacing:-2.634911px;}
.ls8_c00061{letter-spacing:-1.509160px;}
.ls2_c00061{letter-spacing:-1.476529px;}
.ls21_c00061{letter-spacing:-0.644452px;}
.ls22_c00061{letter-spacing:-0.579191px;}
.lsa_c00061{letter-spacing:-0.048946px;}
.ls1_c00061{letter-spacing:0.000000px;}
.ls4_c00061{letter-spacing:0.350778px;}
.ls1d_c00061{letter-spacing:0.832077px;}
.ls10_c00061{letter-spacing:0.840235px;}
.ls1a_c00061{letter-spacing:1.027860px;}
.ls14_c00061{letter-spacing:1.802834px;}
.ls16_c00061{letter-spacing:1.831500px;}
.ls12_c00061{letter-spacing:1.910700px;}
.ls17_c00061{letter-spacing:1.941514px;}
.ls1b_c00061{letter-spacing:2.194400px;}
.ls13_c00061{letter-spacing:2.227030px;}
.lse_c00061{letter-spacing:2.414655px;}
.ls5_c00061{letter-spacing:2.602281px;}
.lsb_c00061{letter-spacing:2.863325px;}
.ls0_c00061{letter-spacing:2.916302px;}
.ls20_c00061{letter-spacing:2.920428px;}
.ls7_c00061{letter-spacing:3.091738px;}
.ls1f_c00061{letter-spacing:3.326400px;}
.lsc_c00061{letter-spacing:3.336466px;}
.ls23_c00061{letter-spacing:3.360939px;}
.ls15_c00061{letter-spacing:3.524092px;}
.ls1e_c00061{letter-spacing:3.623400px;}
.lsf_c00061{letter-spacing:4.046179px;}
.ls3_c00061{letter-spacing:4.078810px;}
.ls9_c00061{letter-spacing:4.356000px;}
.ls1c_c00061{letter-spacing:58.449798px;}
.ls11_c00061{letter-spacing:59.875398px;}
.sc__c00061{text-shadow:none;}
.sc0_c00061{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00061{-webkit-text-stroke:0px transparent;}
.sc0_c00061{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00061{word-spacing:0.000000px;}
._1_c00061{width:25.720052px;}
._0_c00061{width:34.996154px;}
._2_c00061{width:820.412851px;}
.fc0_c00061{color:transparent;}
.fs1_c00061{font-size:22.176000px;}
.fs5_c00061{font-size:26.928000px;}
.fs9_c00061{font-size:36.630000px;}
.fs8_c00061{font-size:38.214000px;}
.fs6_c00061{font-size:39.204000px;}
.fsc_c00061{font-size:58.449798px;}
.fs7_c00061{font-size:59.875398px;}
.fsb_c00061{font-size:60.588000px;}
.fs4_c00061{font-size:66.330000px;}
.fse_c00061{font-size:66.528000px;}
.fsd_c00061{font-size:72.468000px;}
.fsa_c00061{font-size:76.824000px;}
.fs2_c00061{font-size:81.576198px;}
.fs3_c00061{font-size:87.120000px;}
.fs0_c00061{font-size:90.288000px;}
.y0_c00061{bottom:0.000000px;}
.y1_c00061{bottom:76.500000px;}
.y20_c00061{bottom:165.994335px;}
.y1f_c00061{bottom:198.070335px;}
.y1e_c00061{bottom:230.146335px;}
.y1d_c00061{bottom:261.509535px;}
.y1c_c00061{bottom:293.224185px;}
.y1b_c00061{bottom:324.592335px;}
.y1a_c00061{bottom:356.306985px;}
.y19_c00061{bottom:390.164985px;}
.y18_c00061{bottom:421.176735px;}
.y17_c00061{bottom:452.891385px;}
.y16_c00061{bottom:453.252735px;}
.y15_c00061{bottom:520.612335px;}
.y13_c00061{bottom:551.257785px;}
.y14_c00061{bottom:556.252335px;}
.y12_c00061{bottom:582.982335px;}
.y11_c00061{bottom:614.345535px;}
.y10_c00061{bottom:646.421535px;}
.yf_c00061{bottom:677.784735px;}
.ye_c00061{bottom:695.604735px;}
.yd_c00061{bottom:709.147935px;}
.yc_c00061{bottom:724.116735px;}
.yb_c00061{bottom:741.218985px;}
.ya_c00061{bottom:772.587135px;}
.y9_c00061{bottom:804.306735px;}
.y8_c00061{bottom:825.685785px;}
.y7_c00061{bottom:835.313535px;}
.y6_c00061{bottom:866.320335px;}
.y5_c00061{bottom:896.965785px;}
.y4_c00061{bottom:928.690335px;}
.y3_c00061{bottom:1009.236735px;}
.y2_c00061{bottom:1063.760985px;}
.h3_c00061{height:23.128875px;}
.h7_c00061{height:28.085063px;}
.hb_c00061{height:38.203945px;}
.h8_c00061{height:38.476582px;}
.he_c00061{height:38.927565px;}
.ha_c00061{height:39.856008px;}
.h9_c00061{height:39.877015px;}
.hd_c00061{height:63.191391px;}
.h6_c00061{height:69.180117px;}
.h10_c00061{height:69.386625px;}
.hf_c00061{height:71.123379px;}
.hc_c00061{height:75.398555px;}
.h4_c00061{height:80.062577px;}
.h5_c00061{height:85.503516px;}
.h2_c00061{height:88.612734px;}
.h1_c00061{height:1110.000000px;}
.h0_c00061{height:1263.000000px;}
.w1_c00061{width:721.500000px;}
.w0_c00061{width:892.500000px;}
.x0_c00061{left:0.000000px;}
.x63_c00061{left:38.519835px;}
.x3c_c00061{left:39.608835px;}
.x1f_c00061{left:41.197785px;}
.x4_c00061{left:42.628335px;}
.x6e_c00061{left:59.770185px;}
.x51_c00061{left:71.125485px;}
.x31_c00061{left:72.372885px;}
.x5_c00061{left:75.134985px;}
.x3d_c00061{left:82.535235px;}
.x37_c00061{left:83.668785px;}
.x1_c00061{left:85.500000px;}
.x5f_c00061{left:93.771735px;}
.x2a_c00061{left:94.984485px;}
.xd_c00061{left:96.276435px;}
.x8d_c00061{left:103.345035px;}
.x69_c00061{left:105.112185px;}
.x87_c00061{left:115.759635px;}
.x32_c00061{left:117.502035px;}
.x7d_c00061{left:125.822985px;}
.x57_c00061{left:127.149585px;}
.xe_c00061{left:130.020585px;}
.x81_c00061{left:137.133735px;}
.x88_c00061{left:147.573285px;}
.x18_c00061{left:149.548335px;}
.x60_c00061{left:158.953335px;}
.x2b_c00061{left:161.096685px;}
.xf_c00061{left:162.175785px;}
.x6f_c00061{left:169.764135px;}
.x20_c00061{left:173.130135px;}
.x45_c00061{left:181.970835px;}
.x58_c00061{left:183.223185px;}
.x6_c00061{left:184.272585px;}
.x77_c00061{left:192.440085px;}
.x2c_c00061{left:194.613135px;}
.x72_c00061{left:203.127135px;}
.x4c_c00061{left:205.329885px;}
.x64_c00061{left:214.957635px;}
.x46_c00061{left:217.061385px;}
.x6a_c00061{left:226.357485px;}
.x33_c00061{left:227.768235px;}
.x7_c00061{left:229.020585px;}
.x82_c00061{left:236.698035px;}
.x3e_c00061{left:237.920685px;}
.x59_c00061{left:241.306485px;}
.x8e_c00061{left:247.741485px;}
.x21_c00061{left:251.280735px;}
.x65_c00061{left:260.487735px;}
.x4d_c00061{left:261.977685px;}
.x10_c00061{left:263.071635px;}
.x3_c00061{left:264.972435px;}
.x89_c00061{left:269.298735px;}
.x6b_c00061{left:271.600485px;}
.x19_c00061{left:273.748785px;}
.x52_c00061{left:281.757885px;}
.x22_c00061{left:284.326935px;}
.x11_c00061{left:285.406035px;}
.x78_c00061{left:292.588485px;}
.x40_c00061{left:294.429885px;}
.x8_c00061{left:295.860435px;}
.x6c_c00061{left:305.042685px;}
.x83_c00061{left:314.358585px;}
.x47_c00061{left:316.526685px;}
.x12_c00061{left:318.269085px;}
.x53_c00061{left:326.297985px;}
.x9_c00061{left:327.644385px;}
.x1a_c00061{left:328.649235px;}
.x6d_c00061{left:336.494985px;}
.x5a_c00061{left:338.272035px;}
.x23_c00061{left:342.910185px;}
.x41_c00061{left:348.449235px;}
.x48_c00061{left:350.028285px;}
.x24_c00061{left:351.458835px;}
.x84_c00061{left:359.532285px;}
.x61_c00061{left:360.730185px;}
.x2d_c00061{left:362.096385px;}
.x38_c00061{left:363.566535px;}
.x7e_c00061{left:370.343085px;}
.x34_c00061{left:371.560785px;}
.x25_c00061{left:372.971535px;}
.x8f_c00061{left:381.247935px;}
.x5b_c00061{left:382.812135px;}
.x1b_c00061{left:383.876385px;}
.x66_c00061{left:402.948735px;}
.x70_c00061{left:404.151585px;}
.x26_c00061{left:405.418785px;}
.x8a_c00061{left:412.957635px;}
.x73_c00061{left:414.853485px;}
.x2e_c00061{left:416.120685px;}
.x79_c00061{left:426.223635px;}
.x5c_c00061{left:428.005635px;}
.x49_c00061{left:438.390735px;}
.xa_c00061{left:440.073735px;}
.x3f_c00061{left:444.167385px;}
.x8b_c00061{left:446.785935px;}
.x4e_c00061{left:449.468835px;}
.x39_c00061{left:450.498435px;}
.x7a_c00061{left:458.180835px;}
.x13_c00061{left:461.418135px;}
.x67_c00061{left:469.625235px;}
.x42_c00061{left:471.001335px;}
.x1c_c00061{left:472.219035px;}
.x5d_c00061{left:481.356735px;}
.x4a_c00061{left:482.618985px;}
.xb_c00061{left:484.712835px;}
.x7f_c00061{left:491.321085px;}
.x4f_c00061{left:493.038735px;}
.x14_c00061{left:495.028635px;}
.x71_c00061{left:502.998135px;}
.x1d_c00061{left:504.552435px;}
.x7b_c00061{left:514.511835px;}
.x5e_c00061{left:515.952285px;}
.x27_c00061{left:517.150185px;}
.x90_c00061{left:524.664285px;}
.x62_c00061{left:526.396785px;}
.x35_c00061{left:528.208485px;}
.x80_c00061{left:536.009685px;}
.x68_c00061{left:538.484685px;}
.x74_c00061{left:547.261035px;}
.x2f_c00061{left:549.255885px;}
.x91_c00061{left:557.393685px;}
.x43_c00061{left:562.200135px;}
.x15_c00061{left:572.728785px;}
.x85_c00061{left:580.069635px;}
.x3a_c00061{left:582.217935px;}
.x2_c00061{left:583.762335px;}
.x3b_c00061{left:586.346235px;}
.x75_c00061{left:590.954685px;}
.x30_c00061{left:593.800935px;}
.x54_c00061{left:595.013685px;}
.x28_c00061{left:603.943485px;}
.x16_c00061{left:605.210685px;}
.x55_c00061{left:614.477085px;}
.x8c_c00061{left:623.530635px;}
.x7c_c00061{left:625.401735px;}
.x50_c00061{left:626.941185px;}
.x76_c00061{left:635.836335px;}
.x4b_c00061{left:637.227285px;}
.xc_c00061{left:638.855835px;}
.x36_c00061{left:639.860685px;}
.x86_c00061{left:646.320435px;}
.x29_c00061{left:647.389635px;}
.x17_c00061{left:650.745735px;}
.x56_c00061{left:658.472685px;}
.x1e_c00061{left:660.413085px;}
.x44_c00061{left:671.110035px;}
@media print{
.v0_c00061{vertical-align:0.000000pt;}
.ls6_c00061{letter-spacing:-2.537926pt;}
.lsd_c00061{letter-spacing:-2.487168pt;}
.ls18_c00061{letter-spacing:-2.390080pt;}
.ls19_c00061{letter-spacing:-2.342143pt;}
.ls8_c00061{letter-spacing:-1.341475pt;}
.ls2_c00061{letter-spacing:-1.312470pt;}
.ls21_c00061{letter-spacing:-0.572846pt;}
.ls22_c00061{letter-spacing:-0.514836pt;}
.lsa_c00061{letter-spacing:-0.043507pt;}
.ls1_c00061{letter-spacing:0.000000pt;}
.ls4_c00061{letter-spacing:0.311802pt;}
.ls1d_c00061{letter-spacing:0.739624pt;}
.ls10_c00061{letter-spacing:0.746875pt;}
.ls1a_c00061{letter-spacing:0.913653pt;}
.ls14_c00061{letter-spacing:1.602519pt;}
.ls16_c00061{letter-spacing:1.628000pt;}
.ls12_c00061{letter-spacing:1.698400pt;}
.ls17_c00061{letter-spacing:1.725790pt;}
.ls1b_c00061{letter-spacing:1.950578pt;}
.ls13_c00061{letter-spacing:1.979582pt;}
.lse_c00061{letter-spacing:2.146360pt;}
.ls5_c00061{letter-spacing:2.313138pt;}
.lsb_c00061{letter-spacing:2.545177pt;}
.ls0_c00061{letter-spacing:2.592269pt;}
.ls20_c00061{letter-spacing:2.595936pt;}
.ls7_c00061{letter-spacing:2.748211pt;}
.ls1f_c00061{letter-spacing:2.956800pt;}
.lsc_c00061{letter-spacing:2.965748pt;}
.ls23_c00061{letter-spacing:2.987502pt;}
.ls15_c00061{letter-spacing:3.132526pt;}
.ls1e_c00061{letter-spacing:3.220800pt;}
.lsf_c00061{letter-spacing:3.596604pt;}
.ls3_c00061{letter-spacing:3.625609pt;}
.ls9_c00061{letter-spacing:3.872000pt;}
.ls1c_c00061{letter-spacing:51.955376pt;}
.ls11_c00061{letter-spacing:53.222576pt;}
.ws0_c00061{word-spacing:0.000000pt;}
._1_c00061{width:22.862268pt;}
._0_c00061{width:31.107692pt;}
._2_c00061{width:729.255868pt;}
.fs1_c00061{font-size:19.712000pt;}
.fs5_c00061{font-size:23.936000pt;}
.fs9_c00061{font-size:32.560000pt;}
.fs8_c00061{font-size:33.968000pt;}
.fs6_c00061{font-size:34.848000pt;}
.fsc_c00061{font-size:51.955376pt;}
.fs7_c00061{font-size:53.222576pt;}
.fsb_c00061{font-size:53.856000pt;}
.fs4_c00061{font-size:58.960000pt;}
.fse_c00061{font-size:59.136000pt;}
.fsd_c00061{font-size:64.416000pt;}
.fsa_c00061{font-size:68.288000pt;}
.fs2_c00061{font-size:72.512176pt;}
.fs3_c00061{font-size:77.440000pt;}
.fs0_c00061{font-size:80.256000pt;}
.y0_c00061{bottom:0.000000pt;}
.y1_c00061{bottom:68.000000pt;}
.y20_c00061{bottom:147.550520pt;}
.y1f_c00061{bottom:176.062520pt;}
.y1e_c00061{bottom:204.574520pt;}
.y1d_c00061{bottom:232.452920pt;}
.y1c_c00061{bottom:260.643720pt;}
.y1b_c00061{bottom:288.526520pt;}
.y1a_c00061{bottom:316.717320pt;}
.y19_c00061{bottom:346.813320pt;}
.y18_c00061{bottom:374.379320pt;}
.y17_c00061{bottom:402.570120pt;}
.y16_c00061{bottom:402.891320pt;}
.y15_c00061{bottom:462.766520pt;}
.y13_c00061{bottom:490.006920pt;}
.y14_c00061{bottom:494.446520pt;}
.y12_c00061{bottom:518.206520pt;}
.y11_c00061{bottom:546.084920pt;}
.y10_c00061{bottom:574.596920pt;}
.yf_c00061{bottom:602.475320pt;}
.ye_c00061{bottom:618.315320pt;}
.yd_c00061{bottom:630.353720pt;}
.yc_c00061{bottom:643.659320pt;}
.yb_c00061{bottom:658.861320pt;}
.ya_c00061{bottom:686.744120pt;}
.y9_c00061{bottom:714.939320pt;}
.y8_c00061{bottom:733.942920pt;}
.y7_c00061{bottom:742.500920pt;}
.y6_c00061{bottom:770.062520pt;}
.y5_c00061{bottom:797.302920pt;}
.y4_c00061{bottom:825.502520pt;}
.y3_c00061{bottom:897.099320pt;}
.y2_c00061{bottom:945.565320pt;}
.h3_c00061{height:20.559000pt;}
.h7_c00061{height:24.964500pt;}
.hb_c00061{height:33.959063pt;}
.h8_c00061{height:34.201406pt;}
.he_c00061{height:34.602280pt;}
.ha_c00061{height:35.427563pt;}
.h9_c00061{height:35.446236pt;}
.hd_c00061{height:56.170125pt;}
.h6_c00061{height:61.493438pt;}
.h10_c00061{height:61.677000pt;}
.hf_c00061{height:63.220781pt;}
.hc_c00061{height:67.020938pt;}
.h4_c00061{height:71.166735pt;}
.h5_c00061{height:76.003125pt;}
.h2_c00061{height:78.766875pt;}
.h1_c00061{height:986.666667pt;}
.h0_c00061{height:1122.666667pt;}
.w1_c00061{width:641.333333pt;}
.w0_c00061{width:793.333333pt;}
.x0_c00061{left:0.000000pt;}
.x63_c00061{left:34.239853pt;}
.x3c_c00061{left:35.207853pt;}
.x1f_c00061{left:36.620253pt;}
.x4_c00061{left:37.891853pt;}
.x6e_c00061{left:53.129053pt;}
.x51_c00061{left:63.222653pt;}
.x31_c00061{left:64.331453pt;}
.x5_c00061{left:66.786653pt;}
.x3d_c00061{left:73.364653pt;}
.x37_c00061{left:74.372253pt;}
.x1_c00061{left:76.000000pt;}
.x5f_c00061{left:83.352653pt;}
.x2a_c00061{left:84.430653pt;}
.xd_c00061{left:85.579053pt;}
.x8d_c00061{left:91.862253pt;}
.x69_c00061{left:93.433053pt;}
.x87_c00061{left:102.897453pt;}
.x32_c00061{left:104.446253pt;}
.x7d_c00061{left:111.842653pt;}
.x57_c00061{left:113.021853pt;}
.xe_c00061{left:115.573853pt;}
.x81_c00061{left:121.896653pt;}
.x88_c00061{left:131.176253pt;}
.x18_c00061{left:132.931853pt;}
.x60_c00061{left:141.291853pt;}
.x2b_c00061{left:143.197053pt;}
.xf_c00061{left:144.156253pt;}
.x6f_c00061{left:150.901453pt;}
.x20_c00061{left:153.893453pt;}
.x45_c00061{left:161.751853pt;}
.x58_c00061{left:162.865053pt;}
.x6_c00061{left:163.797853pt;}
.x77_c00061{left:171.057853pt;}
.x2c_c00061{left:172.989453pt;}
.x72_c00061{left:180.557453pt;}
.x4c_c00061{left:182.515453pt;}
.x64_c00061{left:191.073453pt;}
.x46_c00061{left:192.943453pt;}
.x6a_c00061{left:201.206653pt;}
.x33_c00061{left:202.460653pt;}
.x7_c00061{left:203.573853pt;}
.x82_c00061{left:210.398253pt;}
.x3e_c00061{left:211.485053pt;}
.x59_c00061{left:214.494653pt;}
.x8e_c00061{left:220.214653pt;}
.x21_c00061{left:223.360653pt;}
.x65_c00061{left:231.544653pt;}
.x4d_c00061{left:232.869053pt;}
.x10_c00061{left:233.841453pt;}
.x3_c00061{left:235.531053pt;}
.x89_c00061{left:239.376653pt;}
.x6b_c00061{left:241.422653pt;}
.x19_c00061{left:243.332253pt;}
.x52_c00061{left:250.451453pt;}
.x22_c00061{left:252.735053pt;}
.x11_c00061{left:253.694253pt;}
.x78_c00061{left:260.078653pt;}
.x40_c00061{left:261.715453pt;}
.x8_c00061{left:262.987053pt;}
.x6c_c00061{left:271.149053pt;}
.x83_c00061{left:279.429853pt;}
.x47_c00061{left:281.357053pt;}
.x12_c00061{left:282.905853pt;}
.x53_c00061{left:290.042653pt;}
.x9_c00061{left:291.239453pt;}
.x1a_c00061{left:292.132653pt;}
.x6d_c00061{left:299.106653pt;}
.x5a_c00061{left:300.686253pt;}
.x23_c00061{left:304.809053pt;}
.x41_c00061{left:309.732653pt;}
.x48_c00061{left:311.136253pt;}
.x24_c00061{left:312.407853pt;}
.x84_c00061{left:319.584253pt;}
.x61_c00061{left:320.649053pt;}
.x2d_c00061{left:321.863453pt;}
.x38_c00061{left:323.170253pt;}
.x7e_c00061{left:329.193853pt;}
.x34_c00061{left:330.276253pt;}
.x25_c00061{left:331.530253pt;}
.x8f_c00061{left:338.887053pt;}
.x5b_c00061{left:340.277453pt;}
.x1b_c00061{left:341.223453pt;}
.x66_c00061{left:358.176653pt;}
.x70_c00061{left:359.245853pt;}
.x26_c00061{left:360.372253pt;}
.x8a_c00061{left:367.073453pt;}
.x73_c00061{left:368.758653pt;}
.x2e_c00061{left:369.885053pt;}
.x79_c00061{left:378.865453pt;}
.x5c_c00061{left:380.449453pt;}
.x49_c00061{left:389.680653pt;}
.xa_c00061{left:391.176653pt;}
.x3f_c00061{left:394.815453pt;}
.x8b_c00061{left:397.143053pt;}
.x4e_c00061{left:399.527853pt;}
.x39_c00061{left:400.443053pt;}
.x7a_c00061{left:407.271853pt;}
.x13_c00061{left:410.149453pt;}
.x67_c00061{left:417.444653pt;}
.x42_c00061{left:418.667853pt;}
.x1c_c00061{left:419.750253pt;}
.x5d_c00061{left:427.872653pt;}
.x4a_c00061{left:428.994653pt;}
.xb_c00061{left:430.855853pt;}
.x7f_c00061{left:436.729853pt;}
.x4f_c00061{left:438.256653pt;}
.x14_c00061{left:440.025453pt;}
.x71_c00061{left:447.109453pt;}
.x1d_c00061{left:448.491053pt;}
.x7b_c00061{left:457.343853pt;}
.x5e_c00061{left:458.624253pt;}
.x27_c00061{left:459.689053pt;}
.x90_c00061{left:466.368253pt;}
.x62_c00061{left:467.908253pt;}
.x35_c00061{left:469.518653pt;}
.x80_c00061{left:476.453053pt;}
.x68_c00061{left:478.653053pt;}
.x74_c00061{left:486.454253pt;}
.x2f_c00061{left:488.227453pt;}
.x91_c00061{left:495.461053pt;}
.x43_c00061{left:499.733453pt;}
.x15_c00061{left:509.092253pt;}
.x85_c00061{left:515.617453pt;}
.x3a_c00061{left:517.527053pt;}
.x2_c00061{left:518.899853pt;}
.x3b_c00061{left:521.196653pt;}
.x75_c00061{left:525.293053pt;}
.x30_c00061{left:527.823053pt;}
.x54_c00061{left:528.901053pt;}
.x28_c00061{left:536.838653pt;}
.x16_c00061{left:537.965053pt;}
.x55_c00061{left:546.201853pt;}
.x8c_c00061{left:554.249453pt;}
.x7c_c00061{left:555.912653pt;}
.x50_c00061{left:557.281053pt;}
.x76_c00061{left:565.187853pt;}
.x4b_c00061{left:566.424253pt;}
.xc_c00061{left:567.871853pt;}
.x36_c00061{left:568.765053pt;}
.x86_c00061{left:574.507053pt;}
.x29_c00061{left:575.457453pt;}
.x17_c00061{left:578.440653pt;}
.x56_c00061{left:585.309053pt;}
.x1e_c00061{left:587.033853pt;}
.x44_c00061{left:596.542253pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_966013182f5c6fe109797b35.woff2')format("woff");}.ff1_c00062{font-family:ff1_c00062;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00062;src:url('chunks/assets/font_980feb507ec8439918fafe08.woff2')format("woff");}.ff2_c00062{font-family:ff2_c00062;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00062;src:url('chunks/assets/font_b12289e718e1b7b2ab69bd98.woff2')format("woff");}.ff3_c00062{font-family:ff3_c00062;line-height:0.666000;font-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_c00062{transform:matrix(0.157142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157142,0.000000,0.000000,0.250000,0,0);}
.m2b_c00062{transform:matrix(0.207206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207206,0.000000,0.000000,0.250000,0,0);}
.md_c00062{transform:matrix(0.209325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209325,0.000000,0.000000,0.250000,0,0);}
.m20_c00062{transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);}
.m0_c00062{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m44_c00062{transform:matrix(0.250519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250519,0.000000,0.000000,0.250000,0,0);}
.m7_c00062{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.m9b_c00062{transform:matrix(0.255814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255814,0.000000,0.000000,0.250000,0,0);}
.m55_c00062{transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);}
.m2f_c00062{transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);}
.m53_c00062{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m6_c00062{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m49_c00062{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m37_c00062{transform:matrix(0.264059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264059,0.000000,0.000000,0.250000,0,0);}
.m4a_c00062{transform:matrix(0.264094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264094,0.000000,0.000000,0.250000,0,0);}
.ma2_c00062{transform:matrix(0.264128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264128,0.000000,0.000000,0.250000,0,0);}
.m25_c00062{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m8a_c00062{transform:matrix(0.267239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267239,0.000000,0.000000,0.250000,0,0);}
.m4b_c00062{transform:matrix(0.267472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267472,0.000000,0.000000,0.250000,0,0);}
.me_c00062{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m54_c00062{transform:matrix(0.268106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268106,0.000000,0.000000,0.250000,0,0);}
.mf_c00062{transform:matrix(0.268552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268552,0.000000,0.000000,0.250000,0,0);}
.m23_c00062{transform:matrix(0.269234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269234,0.000000,0.000000,0.250000,0,0);}
.m4f_c00062{transform:matrix(0.269336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269336,0.000000,0.000000,0.250000,0,0);}
.m7c_c00062{transform:matrix(0.269912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269912,0.000000,0.000000,0.250000,0,0);}
.m32_c00062{transform:matrix(0.270439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270439,0.000000,0.000000,0.250000,0,0);}
.m39_c00062{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m62_c00062{transform:matrix(0.270977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270977,0.000000,0.000000,0.250000,0,0);}
.m66_c00062{transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);}
.m3_c00062{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m3a_c00062{transform:matrix(0.272747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272747,0.000000,0.000000,0.250000,0,0);}
.ma5_c00062{transform:matrix(0.272789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272789,0.000000,0.000000,0.250000,0,0);}
.m3c_c00062{transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);}
.m63_c00062{transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);}
.m42_c00062{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m7e_c00062{transform:matrix(0.275618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275618,0.000000,0.000000,0.250000,0,0);}
.m10_c00062{transform:matrix(0.275735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275735,0.000000,0.000000,0.250000,0,0);}
.m80_c00062{transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);}
.m57_c00062{transform:matrix(0.277433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277433,0.000000,0.000000,0.250000,0,0);}
.m59_c00062{transform:matrix(0.277980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277980,0.000000,0.000000,0.250000,0,0);}
.ma3_c00062{transform:matrix(0.278094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278094,0.000000,0.000000,0.250000,0,0);}
.m45_c00062{transform:matrix(0.278168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278168,0.000000,0.000000,0.250000,0,0);}
.m5d_c00062{transform:matrix(0.278863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278863,0.000000,0.000000,0.250000,0,0);}
.m5e_c00062{transform:matrix(0.279513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279513,0.000000,0.000000,0.250000,0,0);}
.m9f_c00062{transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);}
.m43_c00062{transform:matrix(0.280878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280878,0.000000,0.000000,0.250000,0,0);}
.m98_c00062{transform:matrix(0.281099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281099,0.000000,0.000000,0.250000,0,0);}
.m8f_c00062{transform:matrix(0.281457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281457,0.000000,0.000000,0.250000,0,0);}
.m9_c00062{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.m3f_c00062{transform:matrix(0.282888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282888,0.000000,0.000000,0.250000,0,0);}
.m47_c00062{transform:matrix(0.283140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283140,0.000000,0.000000,0.250000,0,0);}
.ma0_c00062{transform:matrix(0.283192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283192,0.000000,0.000000,0.250000,0,0);}
.m6d_c00062{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m60_c00062{transform:matrix(0.283944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283944,0.000000,0.000000,0.250000,0,0);}
.m4d_c00062{transform:matrix(0.284095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284095,0.000000,0.000000,0.250000,0,0);}
.m8_c00062{transform:matrix(0.285693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285693,0.000000,0.000000,0.250000,0,0);}
.m8e_c00062{transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);}
.m67_c00062{transform:matrix(0.286566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286566,0.000000,0.000000,0.250000,0,0);}
.m31_c00062{transform:matrix(0.286642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286642,0.000000,0.000000,0.250000,0,0);}
.ma4_c00062{transform:matrix(0.286765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286765,0.000000,0.000000,0.250000,0,0);}
.m34_c00062{transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);}
.m26_c00062{transform:matrix(0.287688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287688,0.000000,0.000000,0.250000,0,0);}
.m1a_c00062{transform:matrix(0.287765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287765,0.000000,0.000000,0.250000,0,0);}
.m11_c00062{transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);}
.m16_c00062{transform:matrix(0.288692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288692,0.000000,0.000000,0.250000,0,0);}
.ma_c00062{transform:matrix(0.289665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289665,0.000000,0.000000,0.250000,0,0);}
.m82_c00062{transform:matrix(0.289803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289803,0.000000,0.000000,0.250000,0,0);}
.m27_c00062{transform:matrix(0.290005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290005,0.000000,0.000000,0.250000,0,0);}
.m86_c00062{transform:matrix(0.290037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290037,0.000000,0.000000,0.250000,0,0);}
.m3b_c00062{transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);}
.m1d_c00062{transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);}
.m94_c00062{transform:matrix(0.290961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290961,0.000000,0.000000,0.250000,0,0);}
.m90_c00062{transform:matrix(0.291444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291444,0.000000,0.000000,0.250000,0,0);}
.m12_c00062{transform:matrix(0.291574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291574,0.000000,0.000000,0.250000,0,0);}
.m9d_c00062{transform:matrix(0.291648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291648,0.000000,0.000000,0.250000,0,0);}
.m51_c00062{transform:matrix(0.292174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292174,0.000000,0.000000,0.250000,0,0);}
.m6f_c00062{transform:matrix(0.292754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292754,0.000000,0.000000,0.250000,0,0);}
.m95_c00062{transform:matrix(0.292836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292836,0.000000,0.000000,0.250000,0,0);}
.m3d_c00062{transform:matrix(0.293346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293346,0.000000,0.000000,0.250000,0,0);}
.m5_c00062{transform:matrix(0.293576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293576,0.000000,0.000000,0.250000,0,0);}
.m68_c00062{transform:matrix(0.293847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293847,0.000000,0.000000,0.250000,0,0);}
.m35_c00062{transform:matrix(0.293924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293924,0.000000,0.000000,0.250000,0,0);}
.ma7_c00062{transform:matrix(0.293983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293983,0.000000,0.000000,0.250000,0,0);}
.m1e_c00062{transform:matrix(0.295016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295016,0.000000,0.000000,0.250000,0,0);}
.m38_c00062{transform:matrix(0.295121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295121,0.000000,0.000000,0.250000,0,0);}
.m76_c00062{transform:matrix(0.295144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295144,0.000000,0.000000,0.250000,0,0);}
.m13_c00062{transform:matrix(0.295219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295219,0.000000,0.000000,0.250000,0,0);}
.m8d_c00062{transform:matrix(0.295235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295235,0.000000,0.000000,0.250000,0,0);}
.m36_c00062{transform:matrix(0.296602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296602,0.000000,0.000000,0.250000,0,0);}
.m50_c00062{transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);}
.m15_c00062{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m6e_c00062{transform:matrix(0.297367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297367,0.000000,0.000000,0.250000,0,0);}
.m40_c00062{transform:matrix(0.298776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298776,0.000000,0.000000,0.250000,0,0);}
.m9a_c00062{transform:matrix(0.298915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298915,0.000000,0.000000,0.250000,0,0);}
.m8c_c00062{transform:matrix(0.299507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299507,0.000000,0.000000,0.250000,0,0);}
.m84_c00062{transform:matrix(0.299713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299713,0.000000,0.000000,0.250000,0,0);}
.m1b_c00062{transform:matrix(0.300270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300270,0.000000,0.000000,0.250000,0,0);}
.m14_c00062{transform:matrix(0.300326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300326,0.000000,0.000000,0.250000,0,0);}
.m56_c00062{transform:matrix(0.300674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300674,0.000000,0.000000,0.250000,0,0);}
.m1c_c00062{transform:matrix(0.301783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301783,0.000000,0.000000,0.250000,0,0);}
.m22_c00062{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m77_c00062{transform:matrix(0.302579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302579,0.000000,0.000000,0.250000,0,0);}
.m65_c00062{transform:matrix(0.303038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303038,0.000000,0.000000,0.250000,0,0);}
.m87_c00062{transform:matrix(0.303343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303343,0.000000,0.000000,0.250000,0,0);}
.m97_c00062{transform:matrix(0.303527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303527,0.000000,0.000000,0.250000,0,0);}
.m6a_c00062{transform:matrix(0.303768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303768,0.000000,0.000000,0.250000,0,0);}
.m69_c00062{transform:matrix(0.304516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304516,0.000000,0.000000,0.250000,0,0);}
.ma6_c00062{transform:matrix(0.304765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304765,0.000000,0.000000,0.250000,0,0);}
.m70_c00062{transform:matrix(0.304946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304946,0.000000,0.000000,0.250000,0,0);}
.m4e_c00062{transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);}
.mb_c00062{transform:matrix(0.305422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305422,0.000000,0.000000,0.250000,0,0);}
.m7a_c00062{transform:matrix(0.305534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305534,0.000000,0.000000,0.250000,0,0);}
.m7f_c00062{transform:matrix(0.305844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305844,0.000000,0.000000,0.250000,0,0);}
.m17_c00062{transform:matrix(0.305944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305944,0.000000,0.000000,0.250000,0,0);}
.m92_c00062{transform:matrix(0.306088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306088,0.000000,0.000000,0.250000,0,0);}
.m41_c00062{transform:matrix(0.306109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306109,0.000000,0.000000,0.250000,0,0);}
.m99_c00062{transform:matrix(0.306170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306170,0.000000,0.000000,0.250000,0,0);}
.m30_c00062{transform:matrix(0.306396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306396,0.000000,0.000000,0.250000,0,0);}
.m72_c00062{transform:matrix(0.306410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306410,0.000000,0.000000,0.250000,0,0);}
.ma1_c00062{transform:matrix(0.306468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306468,0.000000,0.000000,0.250000,0,0);}
.m78_c00062{transform:matrix(0.306529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306529,0.000000,0.000000,0.250000,0,0);}
.m5f_c00062{transform:matrix(0.307034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307034,0.000000,0.000000,0.250000,0,0);}
.m2d_c00062{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m46_c00062{transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);}
.m2e_c00062{transform:matrix(0.309060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309060,0.000000,0.000000,0.250000,0,0);}
.m88_c00062{transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);}
.m93_c00062{transform:matrix(0.311211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311211,0.000000,0.000000,0.250000,0,0);}
.m96_c00062{transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);}
.m75_c00062{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.m58_c00062{transform:matrix(0.312602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312602,0.000000,0.000000,0.250000,0,0);}
.m48_c00062{transform:matrix(0.312932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312932,0.000000,0.000000,0.250000,0,0);}
.m24_c00062{transform:matrix(0.313313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313313,0.000000,0.000000,0.250000,0,0);}
.m52_c00062{transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);}
.m29_c00062{transform:matrix(0.313920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313920,0.000000,0.000000,0.250000,0,0);}
.m73_c00062{transform:matrix(0.314236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314236,0.000000,0.000000,0.250000,0,0);}
.m5b_c00062{transform:matrix(0.314362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314362,0.000000,0.000000,0.250000,0,0);}
.m83_c00062{transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);}
.m6c_c00062{transform:matrix(0.315738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315738,0.000000,0.000000,0.250000,0,0);}
.m64_c00062{transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);}
.m18_c00062{transform:matrix(0.316144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316144,0.000000,0.000000,0.250000,0,0);}
.m71_c00062{transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);}
.m2_c00062{transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);}
.m9e_c00062{transform:matrix(0.317996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317996,0.000000,0.000000,0.250000,0,0);}
.m79_c00062{transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);}
.m7d_c00062{transform:matrix(0.319143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319143,0.000000,0.000000,0.250000,0,0);}
.m9c_c00062{transform:matrix(0.319768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319768,0.000000,0.000000,0.250000,0,0);}
.ma8_c00062{transform:matrix(0.321181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321181,0.000000,0.000000,0.250000,0,0);}
.m33_c00062{transform:matrix(0.321492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321492,0.000000,0.000000,0.250000,0,0);}
.m74_c00062{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.m2c_c00062{transform:matrix(0.324999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324999,0.000000,0.000000,0.250000,0,0);}
.mc_c00062{transform:matrix(0.325583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325583,0.000000,0.000000,0.250000,0,0);}
.m5c_c00062{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m7b_c00062{transform:matrix(0.327374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327374,0.000000,0.000000,0.250000,0,0);}
.m19_c00062{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.m5a_c00062{transform:matrix(0.329451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329451,0.000000,0.000000,0.250000,0,0);}
.m6b_c00062{transform:matrix(0.329713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329713,0.000000,0.000000,0.250000,0,0);}
.m1_c00062{transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);}
.m8b_c00062{transform:matrix(0.331874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331874,0.000000,0.000000,0.250000,0,0);}
.m4c_c00062{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m85_c00062{transform:matrix(0.334693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334693,0.000000,0.000000,0.250000,0,0);}
.m1f_c00062{transform:matrix(0.337295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337295,0.000000,0.000000,0.250000,0,0);}
.m89_c00062{transform:matrix(0.338655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338655,0.000000,0.000000,0.250000,0,0);}
.m61_c00062{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m91_c00062{transform:matrix(0.342665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342665,0.000000,0.000000,0.250000,0,0);}
.m2a_c00062{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m81_c00062{transform:matrix(0.355197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355197,0.000000,0.000000,0.250000,0,0);}
.m3e_c00062{transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);}
.m4_c00062{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m28_c00062{transform:matrix(0.361658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361658,0.000000,0.000000,0.250000,0,0);}
.v0_c00062{vertical-align:0.000000px;}
.lsf_c00062{letter-spacing:-1.897474px;}
.ls9_c00062{letter-spacing:-0.261479px;}
.ls1_c00062{letter-spacing:0.000000px;}
.ls0_c00062{letter-spacing:0.556697px;}
.ls4_c00062{letter-spacing:2.226787px;}
.lsd_c00062{letter-spacing:3.112798px;}
.lsb_c00062{letter-spacing:3.175524px;}
.ls2_c00062{letter-spacing:3.206887px;}
.lsa_c00062{letter-spacing:3.316658px;}
.ls5_c00062{letter-spacing:3.481315px;}
.lse_c00062{letter-spacing:3.643200px;}
.lsc_c00062{letter-spacing:3.841992px;}
.ls3_c00062{letter-spacing:3.920400px;}
.ls7_c00062{letter-spacing:49.896198px;}
.ls6_c00062{letter-spacing:51.321798px;}
.ls8_c00062{letter-spacing:52.747398px;}
.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;}
}
.ws1_c00062{word-spacing:0.000000px;}
.ws0_c00062{word-spacing:5.252940px;}
._2_c00062{width:4.939704px;}
._1_c00062{width:9.173736px;}
._4_c00062{width:22.267872px;}
._3_c00062{width:33.863861px;}
._0_c00062{width:432.511051px;}
.fc0_c00062{color:transparent;}
.fs0_c00062{font-size:22.176000px;}
.fs3_c00062{font-size:26.928000px;}
.fs7_c00062{font-size:28.116000px;}
.fs5_c00062{font-size:49.896198px;}
.fs4_c00062{font-size:51.321798px;}
.fs6_c00062{font-size:52.747398px;}
.fs9_c00062{font-size:72.864000px;}
.fs2_c00062{font-size:74.052198px;}
.fsa_c00062{font-size:77.616198px;}
.fs1_c00062{font-size:78.408000px;}
.fs8_c00062{font-size:78.804000px;}
.y0_c00062{bottom:0.000000px;}
.y20_c00062{bottom:60.851385px;}
.y1_c00062{bottom:76.500000px;}
.y1f_c00062{bottom:134.631135px;}
.y1e_c00062{bottom:155.653785px;}
.y1d_c00062{bottom:187.734735px;}
.y1c_c00062{bottom:220.879935px;}
.y1b_c00062{bottom:253.312335px;}
.y1a_c00062{bottom:285.739785px;}
.y19_c00062{bottom:309.267135px;}
.y18_c00062{bottom:318.177135px;}
.y17_c00062{bottom:350.248185px;}
.y16_c00062{bottom:382.685535px;}
.y15_c00062{bottom:416.187135px;}
.y14_c00062{bottom:448.258185px;}
.y13_c00062{bottom:480.695535px;}
.y12_c00062{bottom:513.122985px;}
.y11_c00062{bottom:577.987785px;}
.y10_c00062{bottom:610.425135px;}
.yf_c00062{bottom:642.496185px;}
.ye_c00062{bottom:674.577135px;}
.yd_c00062{bottom:706.653135px;}
.yc_c00062{bottom:734.090985px;}
.yb_c00062{bottom:739.080585px;}
.ya_c00062{bottom:763.320735px;}
.y9_c00062{bottom:771.156585px;}
.y8_c00062{bottom:803.237535px;}
.y7_c00062{bottom:836.026335px;}
.y6_c00062{bottom:868.097385px;}
.y5_c00062{bottom:900.178335px;}
.y4_c00062{bottom:931.892985px;}
.y3_c00062{bottom:932.967135px;}
.y2_c00062{bottom:1023.131385px;}
.h2_c00062{height:23.128875px;}
.h8_c00062{height:27.594316px;}
.h6_c00062{height:33.230868px;}
.h5_c00062{height:34.180317px;}
.h7_c00062{height:35.129767px;}
.h4_c00062{height:72.678183px;}
.ha_c00062{height:75.994875px;}
.h3_c00062{height:76.953164px;}
.h9_c00062{height:77.341816px;}
.hb_c00062{height:80.951269px;}
.h1_c00062{height:1110.000000px;}
.h0_c00062{height:1263.000000px;}
.w1_c00062{width:721.500000px;}
.w0_c00062{width:892.500000px;}
.x0_c00062{left:0.000000px;}
.xe_c00062{left:73.981635px;}
.x3b_c00062{left:75.521085px;}
.x1_c00062{left:85.500000px;}
.x15_c00062{left:96.865485px;}
.x23_c00062{left:106.765485px;}
.x2a_c00062{left:108.047535px;}
.x35_c00062{left:109.082085px;}
.x1d_c00062{left:118.536585px;}
.x3_c00062{left:129.223635px;}
.xf_c00062{left:130.495785px;}
.x2b_c00062{left:141.143235px;}
.x2e_c00062{left:152.191635px;}
.x47_c00062{left:153.953835px;}
.x3a_c00062{left:163.383585px;}
.x2c_c00062{left:175.605135px;}
.x2f_c00062{left:184.624035px;}
.x16_c00062{left:196.063485px;}
.x57_c00062{left:197.494035px;}
.x1e_c00062{left:207.334635px;}
.x56_c00062{left:209.190885px;}
.x4_c00062{left:218.496885px;}
.x50_c00062{left:219.585885px;}
.x17_c00062{left:230.253135px;}
.x2d_c00062{left:237.529635px;}
.x3e_c00062{left:240.430335px;}
.x24_c00062{left:252.236085px;}
.x41_c00062{left:253.359735px;}
.x5_c00062{left:263.378535px;}
.x36_c00062{left:274.431885px;}
.x25_c00062{left:284.623935px;}
.x30_c00062{left:285.826785px;}
.x4c_c00062{left:288.574035px;}
.x10_c00062{left:296.206935px;}
.x3c_c00062{left:297.236535px;}
.x37_c00062{left:307.220685px;}
.x3f_c00062{left:319.259085px;}
.x26_c00062{left:329.168985px;}
.x33_c00062{left:330.401535px;}
.x6_c00062{left:340.405485px;}
.x58_c00062{left:351.656835px;}
.x1f_c00062{left:362.734935px;}
.x42_c00062{left:363.744735px;}
.x7_c00062{left:374.223885px;}
.x51_c00062{left:375.629685px;}
.x31_c00062{left:385.292085px;}
.x43_c00062{left:396.375135px;}
.x27_c00062{left:397.409685px;}
.x8_c00062{left:406.656285px;}
.x3d_c00062{left:408.116535px;}
.x4d_c00062{left:417.590835px;}
.x18_c00062{left:418.684785px;}
.x40_c00062{left:419.808435px;}
.x28_c00062{left:429.381735px;}
.x11_c00062{left:441.118185px;}
.x19_c00062{left:451.928985px;}
.x4e_c00062{left:462.422985px;}
.x52_c00062{left:473.144685px;}
.x49_c00062{left:474.758385px;}
.x9_c00062{left:484.752435px;}
.x38_c00062{left:496.835385px;}
.x20_c00062{left:507.076935px;}
.xa_c00062{left:518.249085px;}
.x4a_c00062{left:519.664785px;}
.x12_c00062{left:528.941085px;}
.x1a_c00062{left:539.910285px;}
.x21_c00062{left:552.057585px;}
.x13_c00062{left:560.863635px;}
.x44_c00062{left:563.145585px;}
.x2_c00062{left:570.407235px;}
.xb_c00062{left:572.595135px;}
.x45_c00062{left:574.090035px;}
.x1b_c00062{left:583.990035px;}
.x4b_c00062{left:585.895785px;}
.x14_c00062{left:594.855285px;}
.x48_c00062{left:596.612535px;}
.xc_c00062{left:606.517485px;}
.x29_c00062{left:617.209485px;}
.x4f_c00062{left:628.698435px;}
.x55_c00062{left:629.812185px;}
.x32_c00062{left:639.227085px;}
.x34_c00062{left:640.469535px;}
.xd_c00062{left:649.963635px;}
.x22_c00062{left:661.521885px;}
.x53_c00062{left:662.769285px;}
.x39_c00062{left:672.020835px;}
.x46_c00062{left:673.639485px;}
.x59_c00062{left:679.678485px;}
.x54_c00062{left:683.029635px;}
.x1c_c00062{left:684.687885px;}
@media print{
.v0_c00062{vertical-align:0.000000pt;}
.lsf_c00062{letter-spacing:-1.686643pt;}
.ls9_c00062{letter-spacing:-0.232426pt;}
.ls1_c00062{letter-spacing:0.000000pt;}
.ls0_c00062{letter-spacing:0.494842pt;}
.ls4_c00062{letter-spacing:1.979366pt;}
.lsd_c00062{letter-spacing:2.766931pt;}
.lsb_c00062{letter-spacing:2.822688pt;}
.ls2_c00062{letter-spacing:2.850566pt;}
.lsa_c00062{letter-spacing:2.948141pt;}
.ls5_c00062{letter-spacing:3.094502pt;}
.lse_c00062{letter-spacing:3.238400pt;}
.lsc_c00062{letter-spacing:3.415104pt;}
.ls3_c00062{letter-spacing:3.484800pt;}
.ls7_c00062{letter-spacing:44.352176pt;}
.ls6_c00062{letter-spacing:45.619376pt;}
.ls8_c00062{letter-spacing:46.886576pt;}
.ws1_c00062{word-spacing:0.000000pt;}
.ws0_c00062{word-spacing:4.669280pt;}
._2_c00062{width:4.390848pt;}
._1_c00062{width:8.154432pt;}
._4_c00062{width:19.793664pt;}
._3_c00062{width:30.101210pt;}
._0_c00062{width:384.454268pt;}
.fs0_c00062{font-size:19.712000pt;}
.fs3_c00062{font-size:23.936000pt;}
.fs7_c00062{font-size:24.992000pt;}
.fs5_c00062{font-size:44.352176pt;}
.fs4_c00062{font-size:45.619376pt;}
.fs6_c00062{font-size:46.886576pt;}
.fs9_c00062{font-size:64.768000pt;}
.fs2_c00062{font-size:65.824176pt;}
.fsa_c00062{font-size:68.992176pt;}
.fs1_c00062{font-size:69.696000pt;}
.fs8_c00062{font-size:70.048000pt;}
.y0_c00062{bottom:0.000000pt;}
.y20_c00062{bottom:54.090120pt;}
.y1_c00062{bottom:68.000000pt;}
.y1f_c00062{bottom:119.672120pt;}
.y1e_c00062{bottom:138.358920pt;}
.y1d_c00062{bottom:166.875320pt;}
.y1c_c00062{bottom:196.337720pt;}
.y1b_c00062{bottom:225.166520pt;}
.y1a_c00062{bottom:253.990920pt;}
.y19_c00062{bottom:274.904120pt;}
.y18_c00062{bottom:282.824120pt;}
.y17_c00062{bottom:311.331720pt;}
.y16_c00062{bottom:340.164920pt;}
.y15_c00062{bottom:369.944120pt;}
.y14_c00062{bottom:398.451720pt;}
.y13_c00062{bottom:427.284920pt;}
.y12_c00062{bottom:456.109320pt;}
.y11_c00062{bottom:513.766920pt;}
.y10_c00062{bottom:542.600120pt;}
.yf_c00062{bottom:571.107720pt;}
.ye_c00062{bottom:599.624120pt;}
.yd_c00062{bottom:628.136120pt;}
.yc_c00062{bottom:652.525320pt;}
.yb_c00062{bottom:656.960520pt;}
.ya_c00062{bottom:678.507320pt;}
.y9_c00062{bottom:685.472520pt;}
.y8_c00062{bottom:713.988920pt;}
.y7_c00062{bottom:743.134520pt;}
.y6_c00062{bottom:771.642120pt;}
.y5_c00062{bottom:800.158520pt;}
.y4_c00062{bottom:828.349320pt;}
.y3_c00062{bottom:829.304120pt;}
.y2_c00062{bottom:909.450120pt;}
.h2_c00062{height:20.559000pt;}
.h8_c00062{height:24.528281pt;}
.h6_c00062{height:29.538549pt;}
.h5_c00062{height:30.382504pt;}
.h7_c00062{height:31.226460pt;}
.h4_c00062{height:64.602829pt;}
.ha_c00062{height:67.551000pt;}
.h3_c00062{height:68.402813pt;}
.h9_c00062{height:68.748281pt;}
.hb_c00062{height:71.956684pt;}
.h1_c00062{height:986.666667pt;}
.h0_c00062{height:1122.666667pt;}
.w1_c00062{width:641.333333pt;}
.w0_c00062{width:793.333333pt;}
.x0_c00062{left:0.000000pt;}
.xe_c00062{left:65.761453pt;}
.x3b_c00062{left:67.129853pt;}
.x1_c00062{left:76.000000pt;}
.x15_c00062{left:86.102653pt;}
.x23_c00062{left:94.902653pt;}
.x2a_c00062{left:96.042253pt;}
.x35_c00062{left:96.961853pt;}
.x1d_c00062{left:105.365853pt;}
.x3_c00062{left:114.865453pt;}
.xf_c00062{left:115.996253pt;}
.x2b_c00062{left:125.460653pt;}
.x2e_c00062{left:135.281453pt;}
.x47_c00062{left:136.847853pt;}
.x3a_c00062{left:145.229853pt;}
.x2c_c00062{left:156.093453pt;}
.x2f_c00062{left:164.110253pt;}
.x16_c00062{left:174.278653pt;}
.x57_c00062{left:175.550253pt;}
.x1e_c00062{left:184.297453pt;}
.x56_c00062{left:185.947453pt;}
.x4_c00062{left:194.219453pt;}
.x50_c00062{left:195.187453pt;}
.x17_c00062{left:204.669453pt;}
.x2d_c00062{left:211.137453pt;}
.x3e_c00062{left:213.715853pt;}
.x24_c00062{left:224.209853pt;}
.x41_c00062{left:225.208653pt;}
.x5_c00062{left:234.114253pt;}
.x36_c00062{left:243.939453pt;}
.x25_c00062{left:252.999053pt;}
.x30_c00062{left:254.068253pt;}
.x4c_c00062{left:256.510253pt;}
.x10_c00062{left:263.295053pt;}
.x3c_c00062{left:264.210253pt;}
.x37_c00062{left:273.085053pt;}
.x3f_c00062{left:283.785853pt;}
.x26_c00062{left:292.594653pt;}
.x33_c00062{left:293.690253pt;}
.x6_c00062{left:302.582653pt;}
.x58_c00062{left:312.583853pt;}
.x1f_c00062{left:322.431053pt;}
.x42_c00062{left:323.328653pt;}
.x7_c00062{left:332.643453pt;}
.x51_c00062{left:333.893053pt;}
.x31_c00062{left:342.481853pt;}
.x43_c00062{left:352.333453pt;}
.x27_c00062{left:353.253053pt;}
.x8_c00062{left:361.472253pt;}
.x3d_c00062{left:362.770253pt;}
.x4d_c00062{left:371.191853pt;}
.x18_c00062{left:372.164253pt;}
.x40_c00062{left:373.163053pt;}
.x28_c00062{left:381.672653pt;}
.x11_c00062{left:392.105053pt;}
.x19_c00062{left:401.714653pt;}
.x4e_c00062{left:411.042653pt;}
.x52_c00062{left:420.573053pt;}
.x49_c00062{left:422.007453pt;}
.x9_c00062{left:430.891053pt;}
.x38_c00062{left:441.631453pt;}
.x20_c00062{left:450.735053pt;}
.xa_c00062{left:460.665853pt;}
.x4a_c00062{left:461.924253pt;}
.x12_c00062{left:470.169853pt;}
.x1a_c00062{left:479.920253pt;}
.x21_c00062{left:490.717853pt;}
.x13_c00062{left:498.545453pt;}
.x44_c00062{left:500.573853pt;}
.x2_c00062{left:507.028653pt;}
.xb_c00062{left:508.973453pt;}
.x45_c00062{left:510.302253pt;}
.x1b_c00062{left:519.102253pt;}
.x4b_c00062{left:520.796253pt;}
.x14_c00062{left:528.760253pt;}
.x48_c00062{left:530.322253pt;}
.xc_c00062{left:539.126653pt;}
.x29_c00062{left:548.630653pt;}
.x4f_c00062{left:558.843053pt;}
.x55_c00062{left:559.833053pt;}
.x32_c00062{left:568.201853pt;}
.x34_c00062{left:569.306253pt;}
.xd_c00062{left:577.745453pt;}
.x22_c00062{left:588.019453pt;}
.x53_c00062{left:589.128253pt;}
.x39_c00062{left:597.351853pt;}
.x46_c00062{left:598.790653pt;}
.x59_c00062{left:604.158653pt;}
.x54_c00062{left:607.137453pt;}
.x1c_c00062{left:608.611453pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f1b7fba50b6d662ff7f06a71.woff2')format("woff");}.ff1_c00063{font-family:ff1_c00063;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00063;src:url('chunks/assets/font_d46af2b84cd22b7f7c0a92cc.woff2')format("woff");}.ff2_c00063{font-family:ff2_c00063;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00063;src:url('chunks/assets/font_16dadd950d0ec42dfe9c18d0.woff2')format("woff");}.ff3_c00063{font-family:ff3_c00063;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00063;src:url('chunks/assets/font_ae4c7dedefbe40c9338a28c7.woff2')format("woff");}.ff4_c00063{font-family:ff4_c00063;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00063;src:url('chunks/assets/font_a834b642d4dbc7a10eb90de7.woff2')format("woff");}.ff5_c00063{font-family:ff5_c00063;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m57_c00063{transform:matrix(0.102563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102563,0.000000,0.000000,0.250000,0,0);}
.m54_c00063{transform:matrix(0.137501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137501,0.000000,0.000000,0.250000,0,0);}
.m46_c00063{transform:matrix(0.142487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142487,0.000000,0.000000,0.250000,0,0);}
.mb_c00063{transform:matrix(0.154514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154514,0.000000,0.000000,0.250000,0,0);}
.m3_c00063{transform:matrix(0.201222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201222,0.000000,0.000000,0.250000,0,0);}
.m8f_c00063{transform:matrix(0.207207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207207,0.000000,0.000000,0.250000,0,0);}
.m5c_c00063{transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);}
.m8b_c00063{transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);}
.m0_c00063{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00063{transform:matrix(0.251573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251573,0.000000,0.000000,0.250000,0,0);}
.m9_c00063{transform:matrix(0.252992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252992,0.000000,0.000000,0.250000,0,0);}
.m85_c00063{transform:matrix(0.255007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255007,0.000000,0.000000,0.250000,0,0);}
.m60_c00063{transform:matrix(0.255778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255778,0.000000,0.000000,0.250000,0,0);}
.m28_c00063{transform:matrix(0.257064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257064,0.000000,0.000000,0.250000,0,0);}
.m23_c00063{transform:matrix(0.258342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258342,0.000000,0.000000,0.250000,0,0);}
.m2e_c00063{transform:matrix(0.259641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259641,0.000000,0.000000,0.250000,0,0);}
.m2a_c00063{transform:matrix(0.259863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259863,0.000000,0.000000,0.250000,0,0);}
.m8a_c00063{transform:matrix(0.260415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260415,0.000000,0.000000,0.250000,0,0);}
.m4e_c00063{transform:matrix(0.260452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260452,0.000000,0.000000,0.250000,0,0);}
.md_c00063{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m50_c00063{transform:matrix(0.261879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261879,0.000000,0.000000,0.250000,0,0);}
.m6b_c00063{transform:matrix(0.262539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262539,0.000000,0.000000,0.250000,0,0);}
.m8_c00063{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m4a_c00063{transform:matrix(0.263919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263919,0.000000,0.000000,0.250000,0,0);}
.m13_c00063{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m68_c00063{transform:matrix(0.264128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264128,0.000000,0.000000,0.250000,0,0);}
.m51_c00063{transform:matrix(0.264708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264708,0.000000,0.000000,0.250000,0,0);}
.m14_c00063{transform:matrix(0.264732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264732,0.000000,0.000000,0.250000,0,0);}
.m2b_c00063{transform:matrix(0.265369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265369,0.000000,0.000000,0.250000,0,0);}
.m81_c00063{transform:matrix(0.265953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265953,0.000000,0.000000,0.250000,0,0);}
.m70_c00063{transform:matrix(0.267036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267036,0.000000,0.000000,0.250000,0,0);}
.m2c_c00063{transform:matrix(0.267255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267255,0.000000,0.000000,0.250000,0,0);}
.m6_c00063{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m16_c00063{transform:matrix(0.268705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268705,0.000000,0.000000,0.250000,0,0);}
.m84_c00063{transform:matrix(0.269301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269301,0.000000,0.000000,0.250000,0,0);}
.m17_c00063{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m4d_c00063{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m75_c00063{transform:matrix(0.273779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273779,0.000000,0.000000,0.250000,0,0);}
.m7c_c00063{transform:matrix(0.274764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274764,0.000000,0.000000,0.250000,0,0);}
.m4b_c00063{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m8e_c00063{transform:matrix(0.275906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275906,0.000000,0.000000,0.250000,0,0);}
.mc_c00063{transform:matrix(0.277972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277972,0.000000,0.000000,0.250000,0,0);}
.m1d_c00063{transform:matrix(0.278378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278378,0.000000,0.000000,0.250000,0,0);}
.m6e_c00063{transform:matrix(0.278911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278911,0.000000,0.000000,0.250000,0,0);}
.ma_c00063{transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);}
.m71_c00063{transform:matrix(0.279845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279845,0.000000,0.000000,0.250000,0,0);}
.m4f_c00063{transform:matrix(0.280269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280269,0.000000,0.000000,0.250000,0,0);}
.m37_c00063{transform:matrix(0.281428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281428,0.000000,0.000000,0.250000,0,0);}
.m6f_c00063{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.m5e_c00063{transform:matrix(0.281937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281937,0.000000,0.000000,0.250000,0,0);}
.m1f_c00063{transform:matrix(0.283140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283140,0.000000,0.000000,0.250000,0,0);}
.m59_c00063{transform:matrix(0.283249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283249,0.000000,0.000000,0.250000,0,0);}
.m6d_c00063{transform:matrix(0.283330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283330,0.000000,0.000000,0.250000,0,0);}
.m18_c00063{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m45_c00063{transform:matrix(0.284565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284565,0.000000,0.000000,0.250000,0,0);}
.m65_c00063{transform:matrix(0.285119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285119,0.000000,0.000000,0.250000,0,0);}
.m35_c00063{transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);}
.m3f_c00063{transform:matrix(0.286054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286054,0.000000,0.000000,0.250000,0,0);}
.m47_c00063{transform:matrix(0.286698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286698,0.000000,0.000000,0.250000,0,0);}
.m89_c00063{transform:matrix(0.286809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286809,0.000000,0.000000,0.250000,0,0);}
.m55_c00063{transform:matrix(0.287186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287186,0.000000,0.000000,0.250000,0,0);}
.m32_c00063{transform:matrix(0.287436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287436,0.000000,0.000000,0.250000,0,0);}
.m82_c00063{transform:matrix(0.287440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287440,0.000000,0.000000,0.250000,0,0);}
.m3a_c00063{transform:matrix(0.287905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287905,0.000000,0.000000,0.250000,0,0);}
.m7a_c00063{transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);}
.m5f_c00063{transform:matrix(0.288677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288677,0.000000,0.000000,0.250000,0,0);}
.m10_c00063{transform:matrix(0.289122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289122,0.000000,0.000000,0.250000,0,0);}
.m3d_c00063{transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);}
.m36_c00063{transform:matrix(0.290577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290577,0.000000,0.000000,0.250000,0,0);}
.m52_c00063{transform:matrix(0.290979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290979,0.000000,0.000000,0.250000,0,0);}
.m49_c00063{transform:matrix(0.291140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291140,0.000000,0.000000,0.250000,0,0);}
.m30_c00063{transform:matrix(0.291209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291209,0.000000,0.000000,0.250000,0,0);}
.m43_c00063{transform:matrix(0.291694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291694,0.000000,0.000000,0.250000,0,0);}
.m2d_c00063{transform:matrix(0.293022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293022,0.000000,0.000000,0.250000,0,0);}
.m74_c00063{transform:matrix(0.293496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293496,0.000000,0.000000,0.250000,0,0);}
.m1_c00063{transform:matrix(0.293568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293568,0.000000,0.000000,0.250000,0,0);}
.m7_c00063{transform:matrix(0.293576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293576,0.000000,0.000000,0.250000,0,0);}
.m1a_c00063{transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);}
.m38_c00063{transform:matrix(0.293782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293782,0.000000,0.000000,0.250000,0,0);}
.m2_c00063{transform:matrix(0.293789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293789,0.000000,0.000000,0.250000,0,0);}
.m48_c00063{transform:matrix(0.294109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294109,0.000000,0.000000,0.250000,0,0);}
.m33_c00063{transform:matrix(0.294705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294705,0.000000,0.000000,0.250000,0,0);}
.m3c_c00063{transform:matrix(0.294910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294910,0.000000,0.000000,0.250000,0,0);}
.m4c_c00063{transform:matrix(0.295178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295178,0.000000,0.000000,0.250000,0,0);}
.m67_c00063{transform:matrix(0.295694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295694,0.000000,0.000000,0.250000,0,0);}
.m6c_c00063{transform:matrix(0.296130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296130,0.000000,0.000000,0.250000,0,0);}
.m41_c00063{transform:matrix(0.296785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296785,0.000000,0.000000,0.250000,0,0);}
.m76_c00063{transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);}
.m86_c00063{transform:matrix(0.298991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298991,0.000000,0.000000,0.250000,0,0);}
.m11_c00063{transform:matrix(0.299514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299514,0.000000,0.000000,0.250000,0,0);}
.m64_c00063{transform:matrix(0.300151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300151,0.000000,0.000000,0.250000,0,0);}
.m80_c00063{transform:matrix(0.301169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301169,0.000000,0.000000,0.250000,0,0);}
.m20_c00063{transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);}
.m61_c00063{transform:matrix(0.302177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302177,0.000000,0.000000,0.250000,0,0);}
.m24_c00063{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m3e_c00063{transform:matrix(0.302568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302568,0.000000,0.000000,0.250000,0,0);}
.m39_c00063{transform:matrix(0.303481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303481,0.000000,0.000000,0.250000,0,0);}
.m7f_c00063{transform:matrix(0.303831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303831,0.000000,0.000000,0.250000,0,0);}
.m79_c00063{transform:matrix(0.304223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304223,0.000000,0.000000,0.250000,0,0);}
.m3b_c00063{transform:matrix(0.304847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304847,0.000000,0.000000,0.250000,0,0);}
.m88_c00063{transform:matrix(0.307151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307151,0.000000,0.000000,0.250000,0,0);}
.m8c_c00063{transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);}
.m22_c00063{transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);}
.m56_c00063{transform:matrix(0.309152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309152,0.000000,0.000000,0.250000,0,0);}
.m5a_c00063{transform:matrix(0.310444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310444,0.000000,0.000000,0.250000,0,0);}
.m29_c00063{transform:matrix(0.310710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310710,0.000000,0.000000,0.250000,0,0);}
.m44_c00063{transform:matrix(0.311211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311211,0.000000,0.000000,0.250000,0,0);}
.m21_c00063{transform:matrix(0.312229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312229,0.000000,0.000000,0.250000,0,0);}
.m73_c00063{transform:matrix(0.312510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312510,0.000000,0.000000,0.250000,0,0);}
.m1e_c00063{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.m25_c00063{transform:matrix(0.312869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312869,0.000000,0.000000,0.250000,0,0);}
.m78_c00063{transform:matrix(0.315268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315268,0.000000,0.000000,0.250000,0,0);}
.m69_c00063{transform:matrix(0.316012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316012,0.000000,0.000000,0.250000,0,0);}
.m7d_c00063{transform:matrix(0.317836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317836,0.000000,0.000000,0.250000,0,0);}
.m2f_c00063{transform:matrix(0.317895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317895,0.000000,0.000000,0.250000,0,0);}
.m5_c00063{transform:matrix(0.318414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318414,0.000000,0.000000,0.250000,0,0);}
.m15_c00063{transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);}
.m53_c00063{transform:matrix(0.318992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318992,0.000000,0.000000,0.250000,0,0);}
.m12_c00063{transform:matrix(0.320722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320722,0.000000,0.000000,0.250000,0,0);}
.m6a_c00063{transform:matrix(0.321136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321136,0.000000,0.000000,0.250000,0,0);}
.m19_c00063{transform:matrix(0.321201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321201,0.000000,0.000000,0.250000,0,0);}
.m1b_c00063{transform:matrix(0.321598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321598,0.000000,0.000000,0.250000,0,0);}
.m83_c00063{transform:matrix(0.323057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323057,0.000000,0.000000,0.250000,0,0);}
.m34_c00063{transform:matrix(0.323263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323263,0.000000,0.000000,0.250000,0,0);}
.mf_c00063{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.m66_c00063{transform:matrix(0.326100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326100,0.000000,0.000000,0.250000,0,0);}
.m87_c00063{transform:matrix(0.328068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328068,0.000000,0.000000,0.250000,0,0);}
.m90_c00063{transform:matrix(0.329103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329103,0.000000,0.000000,0.250000,0,0);}
.m58_c00063{transform:matrix(0.329448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329448,0.000000,0.000000,0.250000,0,0);}
.m7e_c00063{transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);}
.m27_c00063{transform:matrix(0.331303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331303,0.000000,0.000000,0.250000,0,0);}
.m1c_c00063{transform:matrix(0.331496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331496,0.000000,0.000000,0.250000,0,0);}
.m72_c00063{transform:matrix(0.332527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332527,0.000000,0.000000,0.250000,0,0);}
.m7b_c00063{transform:matrix(0.333471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333471,0.000000,0.000000,0.250000,0,0);}
.m77_c00063{transform:matrix(0.336130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336130,0.000000,0.000000,0.250000,0,0);}
.m5d_c00063{transform:matrix(0.338729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338729,0.000000,0.000000,0.250000,0,0);}
.m26_c00063{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m63_c00063{transform:matrix(0.344289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344289,0.000000,0.000000,0.250000,0,0);}
.m42_c00063{transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);}
.me_c00063{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m4_c00063{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m5b_c00063{transform:matrix(0.359351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359351,0.000000,0.000000,0.250000,0,0);}
.m40_c00063{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m62_c00063{transform:matrix(0.372773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372773,0.000000,0.000000,0.250000,0,0);}
.m31_c00063{transform:matrix(0.392307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392307,0.000000,0.000000,0.250000,0,0);}
.v0_c00063{vertical-align:0.000000px;}
.ls4_c00063{letter-spacing:-2.744280px;}
.lsb_c00063{letter-spacing:-2.079000px;}
.ls6_c00063{letter-spacing:-1.905314px;}
.lsf_c00063{letter-spacing:-0.948737px;}
.ls3_c00063{letter-spacing:-0.337154px;}
.ls1_c00063{letter-spacing:0.000000px;}
.ls8_c00063{letter-spacing:0.533174px;}
.lsc_c00063{letter-spacing:1.246687px;}
.ls0_c00063{letter-spacing:1.677931px;}
.lse_c00063{letter-spacing:2.524738px;}
.ls7_c00063{letter-spacing:3.112798px;}
.lsa_c00063{letter-spacing:3.653813px;}
.ls9_c00063{letter-spacing:3.880810px;}
.ls2_c00063{letter-spacing:3.920400px;}
.ls5_c00063{letter-spacing:51.321798px;}
.ls10_c00063{letter-spacing:52.747398px;}
.lsd_c00063{letter-spacing:79.833600px;}
.sc__c00063{text-shadow:none;}
.sc0_c00063{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00063{-webkit-text-stroke:0px transparent;}
.sc0_c00063{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00063{word-spacing:0.000000px;}
._2_c00063{width:23.051952px;}
._1_c00063{width:32.224351px;}
._0_c00063{width:75.715200px;}
.fc0_c00063{color:transparent;}
.fse_c00063{font-size:22.176000px;}
.fs5_c00063{font-size:26.928000px;}
.fs7_c00063{font-size:28.314000px;}
.fs3_c00063{font-size:32.472000px;}
.fsa_c00063{font-size:33.264000px;}
.fsb_c00063{font-size:33.660000px;}
.fsd_c00063{font-size:44.352000px;}
.fs0_c00063{font-size:44.748000px;}
.fs2_c00063{font-size:51.321798px;}
.fsc_c00063{font-size:52.747398px;}
.fs6_c00063{font-size:59.400000px;}
.fs9_c00063{font-size:68.706198px;}
.fs4_c00063{font-size:77.616198px;}
.fs1_c00063{font-size:78.408000px;}
.fs8_c00063{font-size:79.833600px;}
.y0_c00063{bottom:0.000000px;}
.y25_c00063{bottom:26.636985px;}
.y24_c00063{bottom:29.136735px;}
.y1_c00063{bottom:76.500000px;}
.y23_c00063{bottom:82.235385px;}
.y22_c00063{bottom:128.928735px;}
.y21_c00063{bottom:148.887135px;}
.y20_c00063{bottom:154.589535px;}
.y1f_c00063{bottom:187.373385px;}
.y1e_c00063{bottom:220.167135px;}
.y1d_c00063{bottom:252.243135px;}
.y1c_c00063{bottom:284.319135px;}
.y1b_c00063{bottom:309.262185px;}
.y1a_c00063{bottom:316.746585px;}
.y19_c00063{bottom:317.107935px;}
.y18_c00063{bottom:350.609535px;}
.y17_c00063{bottom:380.903535px;}
.y16_c00063{bottom:412.623135px;}
.y15_c00063{bottom:444.699135px;}
.y14_c00063{bottom:477.487935px;}
.y13_c00063{bottom:509.202585px;}
.y12_c00063{bottom:535.932585px;}
.y2_c00063{bottom:537.006735px;}
.y11_c00063{bottom:541.634985px;}
.y10_c00063{bottom:568.013535px;}
.ye_c00063{bottom:574.780185px;}
.yf_c00063{bottom:575.141535px;}
.yd_c00063{bottom:607.930335px;}
.yc_c00063{bottom:641.070585px;}
.yb_c00063{bottom:738.011385px;}
.ya_c00063{bottom:772.225785px;}
.y9_c00063{bottom:803.593935px;}
.y8_c00063{bottom:836.021385px;}
.y7_c00063{bottom:868.453785px;}
.y6_c00063{bottom:900.886185px;}
.y5_c00063{bottom:927.264735px;}
.y4_c00063{bottom:933.674985px;}
.y3_c00063{bottom:1081.937385px;}
.hf_c00063{height:23.128875px;}
.h7_c00063{height:28.085063px;}
.h9_c00063{height:28.535203px;}
.hc_c00063{height:33.035449px;}
.h5_c00063{height:33.867281px;}
.h4_c00063{height:34.180317px;}
.hb_c00063{height:34.693313px;}
.hd_c00063{height:35.129767px;}
.h2_c00063{height:43.917715px;}
.he_c00063{height:46.257750px;}
.ha_c00063{height:53.169178px;}
.h8_c00063{height:61.952344px;}
.h3_c00063{height:76.953164px;}
.h6_c00063{height:78.222575px;}
.h1_c00063{height:1110.000000px;}
.h0_c00063{height:1263.000000px;}
.w1_c00063{width:733.500000px;}
.w0_c00063{width:892.500000px;}
.x0_c00063{left:0.000000px;}
.x2_c00063{left:29.056035px;}
.x22_c00063{left:74.071335px;}
.x4_c00063{left:75.095985px;}
.x5a_c00063{left:76.165185px;}
.x1_c00063{left:79.500000px;}
.x3d_c00063{left:97.108635px;}
.x5_c00063{left:109.176735px;}
.x23_c00063{left:118.789635px;}
.x35_c00063{left:129.961785px;}
.x18_c00063{left:140.945835px;}
.x3e_c00063{left:141.980385px;}
.x32_c00063{left:143.742585px;}
.x28_c00063{left:152.741685px;}
.x5b_c00063{left:153.781185px;}
.x29_c00063{left:162.493185px;}
.x49_c00063{left:163.705935px;}
.x13_c00063{left:174.803835px;}
.x19_c00063{left:185.480985px;}
.x6_c00063{left:207.577785px;}
.x12_c00063{left:211.607085px;}
.x7_c00063{left:213.359385px;}
.x14_c00063{left:218.957835px;}
.x33_c00063{left:229.649835px;}
.x8_c00063{left:230.743785px;}
.x2a_c00063{left:240.703185px;}
.x5c_c00063{left:242.861385px;}
.x9_c00063{left:252.098085px;}
.x1a_c00063{left:263.007885px;}
.x2b_c00063{left:264.171135px;}
.x4a_c00063{left:265.794735px;}
.x44_c00063{left:275.971935px;}
.xa_c00063{left:286.282785px;}
.x2c_c00063{left:296.261985px;}
.x1b_c00063{left:297.331185px;}
.x56_c00063{left:308.671635px;}
.x36_c00063{left:317.868735px;}
.x3b_c00063{left:319.145835px;}
.x15_c00063{left:329.288385px;}
.x5d_c00063{left:330.550635px;}
.x34_c00063{left:339.970485px;}
.x4b_c00063{left:341.242635px;}
.x51_c00063{left:342.366285px;}
.x1c_c00063{left:352.281135px;}
.x50_c00063{left:360.201135px;}
.x47_c00063{left:363.418635px;}
.x3f_c00063{left:374.382885px;}
.x45_c00063{left:385.777785px;}
.x4c_c00063{left:386.822235px;}
.x2d_c00063{left:396.118335px;}
.x4e_c00063{left:397.197435px;}
.xb_c00063{left:407.171685px;}
.x40_c00063{left:408.240885px;}
.x16_c00063{left:418.799235px;}
.x57_c00063{left:420.338685px;}
.x24_c00063{left:429.243735px;}
.xc_c00063{left:440.277285px;}
.x43_c00063{left:446.048985px;}
.x37_c00063{left:451.345485px;}
.x1d_c00063{left:463.458135px;}
.xd_c00063{left:473.422485px;}
.x5e_c00063{left:474.853035px;}
.x2e_c00063{left:484.510485px;}
.x46_c00063{left:485.906385px;}
.x1e_c00063{left:496.157835px;}
.x3c_c00063{left:506.775585px;}
.x52_c00063{left:507.904185px;}
.x4f_c00063{left:510.819735px;}
.x53_c00063{left:517.858635px;}
.x2f_c00063{left:519.021885px;}
.x1f_c00063{left:528.842685px;}
.x25_c00063{left:540.643485px;}
.xe_c00063{left:551.162235px;}
.x54_c00063{left:552.305685px;}
.x26_c00063{left:562.557135px;}
.x38_c00063{left:563.606535px;}
.x17_c00063{left:573.194685px;}
.xf_c00063{left:584.302485px;}
.x39_c00063{left:596.385435px;}
.x27_c00063{left:605.488485px;}
.x30_c00063{left:616.898235px;}
.x41_c00063{left:618.813885px;}
.x48_c00063{left:629.832585px;}
.x20_c00063{left:639.420735px;}
.x10_c00063{left:640.579035px;}
.x55_c00063{left:641.653185px;}
.x3_c00063{left:650.879985px;}
.x31_c00063{left:661.873935px;}
.x58_c00063{left:663.061935px;}
.x11_c00063{left:672.189735px;}
.x3a_c00063{left:673.758885px;}
.x4d_c00063{left:678.827685px;}
.x5f_c00063{left:680.609685px;}
.x42_c00063{left:683.391585px;}
.x21_c00063{left:684.401385px;}
.x59_c00063{left:696.835785px;}
@media print{
.v0_c00063{vertical-align:0.000000pt;}
.ls4_c00063{letter-spacing:-2.439360pt;}
.lsb_c00063{letter-spacing:-1.848000pt;}
.ls6_c00063{letter-spacing:-1.693613pt;}
.lsf_c00063{letter-spacing:-0.843322pt;}
.ls3_c00063{letter-spacing:-0.299693pt;}
.ls1_c00063{letter-spacing:0.000000pt;}
.ls8_c00063{letter-spacing:0.473933pt;}
.lsc_c00063{letter-spacing:1.108166pt;}
.ls0_c00063{letter-spacing:1.491494pt;}
.lse_c00063{letter-spacing:2.244211pt;}
.ls7_c00063{letter-spacing:2.766931pt;}
.lsa_c00063{letter-spacing:3.247834pt;}
.ls9_c00063{letter-spacing:3.449609pt;}
.ls2_c00063{letter-spacing:3.484800pt;}
.ls5_c00063{letter-spacing:45.619376pt;}
.ls10_c00063{letter-spacing:46.886576pt;}
.lsd_c00063{letter-spacing:70.963200pt;}
.ws0_c00063{word-spacing:0.000000pt;}
._2_c00063{width:20.490624pt;}
._1_c00063{width:28.643868pt;}
._0_c00063{width:67.302400pt;}
.fse_c00063{font-size:19.712000pt;}
.fs5_c00063{font-size:23.936000pt;}
.fs7_c00063{font-size:25.168000pt;}
.fs3_c00063{font-size:28.864000pt;}
.fsa_c00063{font-size:29.568000pt;}
.fsb_c00063{font-size:29.920000pt;}
.fsd_c00063{font-size:39.424000pt;}
.fs0_c00063{font-size:39.776000pt;}
.fs2_c00063{font-size:45.619376pt;}
.fsc_c00063{font-size:46.886576pt;}
.fs6_c00063{font-size:52.800000pt;}
.fs9_c00063{font-size:61.072176pt;}
.fs4_c00063{font-size:68.992176pt;}
.fs1_c00063{font-size:69.696000pt;}
.fs8_c00063{font-size:70.963200pt;}
.y0_c00063{bottom:0.000000pt;}
.y25_c00063{bottom:23.677320pt;}
.y24_c00063{bottom:25.899320pt;}
.y1_c00063{bottom:68.000000pt;}
.y23_c00063{bottom:73.098120pt;}
.y22_c00063{bottom:114.603320pt;}
.y21_c00063{bottom:132.344120pt;}
.y20_c00063{bottom:137.412920pt;}
.y1f_c00063{bottom:166.554120pt;}
.y1e_c00063{bottom:195.704120pt;}
.y1d_c00063{bottom:224.216120pt;}
.y1c_c00063{bottom:252.728120pt;}
.y1b_c00063{bottom:274.899720pt;}
.y1a_c00063{bottom:281.552520pt;}
.y19_c00063{bottom:281.873720pt;}
.y18_c00063{bottom:311.652920pt;}
.y17_c00063{bottom:338.580920pt;}
.y16_c00063{bottom:366.776120pt;}
.y15_c00063{bottom:395.288120pt;}
.y14_c00063{bottom:424.433720pt;}
.y13_c00063{bottom:452.624520pt;}
.y12_c00063{bottom:476.384520pt;}
.y2_c00063{bottom:477.339320pt;}
.y11_c00063{bottom:481.453320pt;}
.y10_c00063{bottom:504.900920pt;}
.ye_c00063{bottom:510.915720pt;}
.yf_c00063{bottom:511.236920pt;}
.yd_c00063{bottom:540.382520pt;}
.yc_c00063{bottom:569.840520pt;}
.yb_c00063{bottom:656.010120pt;}
.ya_c00063{bottom:686.422920pt;}
.y9_c00063{bottom:714.305720pt;}
.y8_c00063{bottom:743.130120pt;}
.y7_c00063{bottom:771.958920pt;}
.y6_c00063{bottom:800.787720pt;}
.y5_c00063{bottom:824.235320pt;}
.y4_c00063{bottom:829.933320pt;}
.y3_c00063{bottom:961.722120pt;}
.hf_c00063{height:20.559000pt;}
.h7_c00063{height:24.964500pt;}
.h9_c00063{height:25.364625pt;}
.hc_c00063{height:29.364844pt;}
.h5_c00063{height:30.104250pt;}
.h4_c00063{height:30.382504pt;}
.hb_c00063{height:30.838500pt;}
.hd_c00063{height:31.226460pt;}
.h2_c00063{height:39.037969pt;}
.he_c00063{height:41.118000pt;}
.ha_c00063{height:47.261491pt;}
.h8_c00063{height:55.068750pt;}
.h3_c00063{height:68.402813pt;}
.h6_c00063{height:69.531177pt;}
.h1_c00063{height:986.666667pt;}
.h0_c00063{height:1122.666667pt;}
.w1_c00063{width:652.000000pt;}
.w0_c00063{width:793.333333pt;}
.x0_c00063{left:0.000000pt;}
.x2_c00063{left:25.827587pt;}
.x22_c00063{left:65.841187pt;}
.x4_c00063{left:66.751987pt;}
.x5a_c00063{left:67.702387pt;}
.x1_c00063{left:70.666667pt;}
.x3d_c00063{left:86.318787pt;}
.x5_c00063{left:97.045987pt;}
.x23_c00063{left:105.590787pt;}
.x35_c00063{left:115.521587pt;}
.x18_c00063{left:125.285187pt;}
.x3e_c00063{left:126.204787pt;}
.x32_c00063{left:127.771187pt;}
.x28_c00063{left:135.770387pt;}
.x5b_c00063{left:136.694387pt;}
.x29_c00063{left:144.438387pt;}
.x49_c00063{left:145.516387pt;}
.x13_c00063{left:155.381187pt;}
.x19_c00063{left:164.871987pt;}
.x6_c00063{left:184.513587pt;}
.x12_c00063{left:188.095187pt;}
.x7_c00063{left:189.652787pt;}
.x14_c00063{left:194.629187pt;}
.x33_c00063{left:204.133187pt;}
.x8_c00063{left:205.105587pt;}
.x2a_c00063{left:213.958387pt;}
.x5c_c00063{left:215.876787pt;}
.x9_c00063{left:224.087187pt;}
.x1a_c00063{left:233.784787pt;}
.x2b_c00063{left:234.818787pt;}
.x4a_c00063{left:236.261987pt;}
.x44_c00063{left:245.308387pt;}
.xa_c00063{left:254.473587pt;}
.x2c_c00063{left:263.343987pt;}
.x1b_c00063{left:264.294387pt;}
.x56_c00063{left:274.374787pt;}
.x36_c00063{left:282.549987pt;}
.x3b_c00063{left:283.685187pt;}
.x15_c00063{left:292.700787pt;}
.x5d_c00063{left:293.822787pt;}
.x34_c00063{left:302.195987pt;}
.x4b_c00063{left:303.326787pt;}
.x51_c00063{left:304.325587pt;}
.x1c_c00063{left:313.138787pt;}
.x50_c00063{left:320.178787pt;}
.x47_c00063{left:323.038787pt;}
.x3f_c00063{left:332.784787pt;}
.x45_c00063{left:342.913587pt;}
.x4c_c00063{left:343.841987pt;}
.x2d_c00063{left:352.105187pt;}
.x4e_c00063{left:353.064387pt;}
.xb_c00063{left:361.930387pt;}
.x40_c00063{left:362.880787pt;}
.x16_c00063{left:372.265987pt;}
.x57_c00063{left:373.634387pt;}
.x24_c00063{left:381.549987pt;}
.xc_c00063{left:391.357587pt;}
.x43_c00063{left:396.487987pt;}
.x37_c00063{left:401.195987pt;}
.x1d_c00063{left:411.962787pt;}
.xd_c00063{left:420.819987pt;}
.x5e_c00063{left:422.091587pt;}
.x2e_c00063{left:430.675987pt;}
.x46_c00063{left:431.916787pt;}
.x1e_c00063{left:441.029187pt;}
.x3c_c00063{left:450.467187pt;}
.x52_c00063{left:451.470387pt;}
.x4f_c00063{left:454.061987pt;}
.x53_c00063{left:460.318787pt;}
.x2f_c00063{left:461.352787pt;}
.x1f_c00063{left:470.082387pt;}
.x25_c00063{left:480.571987pt;}
.xe_c00063{left:489.921987pt;}
.x54_c00063{left:490.938387pt;}
.x26_c00063{left:500.050787pt;}
.x38_c00063{left:500.983587pt;}
.x17_c00063{left:509.506387pt;}
.xf_c00063{left:519.379987pt;}
.x39_c00063{left:530.120387pt;}
.x27_c00063{left:538.211987pt;}
.x30_c00063{left:548.353987pt;}
.x41_c00063{left:550.056787pt;}
.x48_c00063{left:559.851187pt;}
.x20_c00063{left:568.373987pt;}
.x10_c00063{left:569.403587pt;}
.x55_c00063{left:570.358387pt;}
.x3_c00063{left:578.559987pt;}
.x31_c00063{left:588.332387pt;}
.x58_c00063{left:589.388387pt;}
.x11_c00063{left:597.501987pt;}
.x3a_c00063{left:598.896787pt;}
.x4d_c00063{left:603.402387pt;}
.x5f_c00063{left:604.986387pt;}
.x42_c00063{left:607.459187pt;}
.x21_c00063{left:608.356787pt;}
.x59_c00063{left:619.409587pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_70de65f5b10ad6fe212c2ff9.woff2')format("woff");}.ff1_c00064{font-family:ff1_c00064;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00064;src:url('chunks/assets/font_8cdd01da48a92d8f36aa44f3.woff2')format("woff");}.ff2_c00064{font-family:ff2_c00064;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00064;src:url('chunks/assets/font_421984d2913bfb8bca5d1346.woff2')format("woff");}.ff3_c00064{font-family:ff3_c00064;line-height:0.666000;font-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_c00064{transform:matrix(0.200168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200168,0.000000,0.000000,0.250000,0,0);}
.m8c_c00064{transform:matrix(0.218264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218264,0.000000,0.000000,0.250000,0,0);}
.m79_c00064{transform:matrix(0.230602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230602,0.000000,0.000000,0.250000,0,0);}
.m81_c00064{transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);}
.m0_c00064{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m74_c00064{transform:matrix(0.250298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250298,0.000000,0.000000,0.250000,0,0);}
.m1a_c00064{transform:matrix(0.251235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251235,0.000000,0.000000,0.250000,0,0);}
.m65_c00064{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.ma0_c00064{transform:matrix(0.252169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252169,0.000000,0.000000,0.250000,0,0);}
.m1_c00064{transform:matrix(0.252742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252742,0.000000,0.000000,0.250000,0,0);}
.m55_c00064{transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);}
.m9c_c00064{transform:matrix(0.256307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256307,0.000000,0.000000,0.250000,0,0);}
.m3d_c00064{transform:matrix(0.256600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256600,0.000000,0.000000,0.250000,0,0);}
.m34_c00064{transform:matrix(0.258139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258139,0.000000,0.000000,0.250000,0,0);}
.m18_c00064{transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);}
.mae_c00064{transform:matrix(0.258920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258920,0.000000,0.000000,0.250000,0,0);}
.m4_c00064{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m15_c00064{transform:matrix(0.262283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262283,0.000000,0.000000,0.250000,0,0);}
.m4e_c00064{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m2c_c00064{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m2f_c00064{transform:matrix(0.264094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264094,0.000000,0.000000,0.250000,0,0);}
.m71_c00064{transform:matrix(0.264943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264943,0.000000,0.000000,0.250000,0,0);}
.m41_c00064{transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);}
.mac_c00064{transform:matrix(0.266540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266540,0.000000,0.000000,0.250000,0,0);}
.me_c00064{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.m2_c00064{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m59_c00064{transform:matrix(0.268115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268115,0.000000,0.000000,0.250000,0,0);}
.ma6_c00064{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.m1b_c00064{transform:matrix(0.269322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269322,0.000000,0.000000,0.250000,0,0);}
.m3a_c00064{transform:matrix(0.269424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269424,0.000000,0.000000,0.250000,0,0);}
.m8e_c00064{transform:matrix(0.269857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269857,0.000000,0.000000,0.250000,0,0);}
.m37_c00064{transform:matrix(0.269871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269871,0.000000,0.000000,0.250000,0,0);}
.m97_c00064{transform:matrix(0.270708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270708,0.000000,0.000000,0.250000,0,0);}
.m12_c00064{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m88_c00064{transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);}
.m8b_c00064{transform:matrix(0.272083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272083,0.000000,0.000000,0.250000,0,0);}
.m7f_c00064{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.ma9_c00064{transform:matrix(0.272955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272955,0.000000,0.000000,0.250000,0,0);}
.m30_c00064{transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);}
.m68_c00064{transform:matrix(0.274349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274349,0.000000,0.000000,0.250000,0,0);}
.m93_c00064{transform:matrix(0.274645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274645,0.000000,0.000000,0.250000,0,0);}
.m2a_c00064{transform:matrix(0.274708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274708,0.000000,0.000000,0.250000,0,0);}
.m1c_c00064{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m5f_c00064{transform:matrix(0.276181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276181,0.000000,0.000000,0.250000,0,0);}
.m6a_c00064{transform:matrix(0.276280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276280,0.000000,0.000000,0.250000,0,0);}
.m51_c00064{transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);}
.m7_c00064{transform:matrix(0.277201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277201,0.000000,0.000000,0.250000,0,0);}
.m6_c00064{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m45_c00064{transform:matrix(0.278095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278095,0.000000,0.000000,0.250000,0,0);}
.m7b_c00064{transform:matrix(0.278586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278586,0.000000,0.000000,0.250000,0,0);}
.ma1_c00064{transform:matrix(0.278742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278742,0.000000,0.000000,0.250000,0,0);}
.m8d_c00064{transform:matrix(0.279482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279482,0.000000,0.000000,0.250000,0,0);}
.m40_c00064{transform:matrix(0.279927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279927,0.000000,0.000000,0.250000,0,0);}
.m9e_c00064{transform:matrix(0.280116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280116,0.000000,0.000000,0.250000,0,0);}
.mc_c00064{transform:matrix(0.280832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280832,0.000000,0.000000,0.250000,0,0);}
.m4d_c00064{transform:matrix(0.281665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281665,0.000000,0.000000,0.250000,0,0);}
.mb2_c00064{transform:matrix(0.281976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281976,0.000000,0.000000,0.250000,0,0);}
.m9a_c00064{transform:matrix(0.282427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282427,0.000000,0.000000,0.250000,0,0);}
.m82_c00064{transform:matrix(0.282507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282507,0.000000,0.000000,0.250000,0,0);}
.m85_c00064{transform:matrix(0.282587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282587,0.000000,0.000000,0.250000,0,0);}
.m5_c00064{transform:matrix(0.283070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283070,0.000000,0.000000,0.250000,0,0);}
.m95_c00064{transform:matrix(0.283591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283591,0.000000,0.000000,0.250000,0,0);}
.m67_c00064{transform:matrix(0.284924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284924,0.000000,0.000000,0.250000,0,0);}
.m77_c00064{transform:matrix(0.285059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285059,0.000000,0.000000,0.250000,0,0);}
.m9_c00064{transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);}
.m3e_c00064{transform:matrix(0.285398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285398,0.000000,0.000000,0.250000,0,0);}
.m76_c00064{transform:matrix(0.286756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286756,0.000000,0.000000,0.250000,0,0);}
.m5c_c00064{transform:matrix(0.288126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288126,0.000000,0.000000,0.250000,0,0);}
.m6b_c00064{transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);}
.m92_c00064{transform:matrix(0.288595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288595,0.000000,0.000000,0.250000,0,0);}
.m4c_c00064{transform:matrix(0.289075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289075,0.000000,0.000000,0.250000,0,0);}
.m86_c00064{transform:matrix(0.289356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289356,0.000000,0.000000,0.250000,0,0);}
.m75_c00064{transform:matrix(0.289546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289546,0.000000,0.000000,0.250000,0,0);}
.m49_c00064{transform:matrix(0.290336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290336,0.000000,0.000000,0.250000,0,0);}
.m1e_c00064{transform:matrix(0.290364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290364,0.000000,0.000000,0.250000,0,0);}
.m50_c00064{transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);}
.m7e_c00064{transform:matrix(0.290577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290577,0.000000,0.000000,0.250000,0,0);}
.m7a_c00064{transform:matrix(0.290621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290621,0.000000,0.000000,0.250000,0,0);}
.m89_c00064{transform:matrix(0.291313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291313,0.000000,0.000000,0.250000,0,0);}
.ma3_c00064{transform:matrix(0.291725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291725,0.000000,0.000000,0.250000,0,0);}
.m99_c00064{transform:matrix(0.292367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292367,0.000000,0.000000,0.250000,0,0);}
.ma2_c00064{transform:matrix(0.292544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292544,0.000000,0.000000,0.250000,0,0);}
.m61_c00064{transform:matrix(0.292581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292581,0.000000,0.000000,0.250000,0,0);}
.m28_c00064{transform:matrix(0.292731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292731,0.000000,0.000000,0.250000,0,0);}
.m7d_c00064{transform:matrix(0.293484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293484,0.000000,0.000000,0.250000,0,0);}
.m21_c00064{transform:matrix(0.293496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293496,0.000000,0.000000,0.250000,0,0);}
.m17_c00064{transform:matrix(0.294289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294289,0.000000,0.000000,0.250000,0,0);}
.m14_c00064{transform:matrix(0.294792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294792,0.000000,0.000000,0.250000,0,0);}
.m54_c00064{transform:matrix(0.296491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296491,0.000000,0.000000,0.250000,0,0);}
.m46_c00064{transform:matrix(0.296715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296715,0.000000,0.000000,0.250000,0,0);}
.m3c_c00064{transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);}
.m66_c00064{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m5e_c00064{transform:matrix(0.297704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297704,0.000000,0.000000,0.250000,0,0);}
.m23_c00064{transform:matrix(0.297984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297984,0.000000,0.000000,0.250000,0,0);}
.m69_c00064{transform:matrix(0.298000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298000,0.000000,0.000000,0.250000,0,0);}
.m53_c00064{transform:matrix(0.298650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298650,0.000000,0.000000,0.250000,0,0);}
.m22_c00064{transform:matrix(0.298895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298895,0.000000,0.000000,0.250000,0,0);}
.m43_c00064{transform:matrix(0.299336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299336,0.000000,0.000000,0.250000,0,0);}
.m29_c00064{transform:matrix(0.299520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299520,0.000000,0.000000,0.250000,0,0);}
.m84_c00064{transform:matrix(0.299562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299562,0.000000,0.000000,0.250000,0,0);}
.m94_c00064{transform:matrix(0.300113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300113,0.000000,0.000000,0.250000,0,0);}
.m35_c00064{transform:matrix(0.300135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300135,0.000000,0.000000,0.250000,0,0);}
.m38_c00064{transform:matrix(0.300337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300337,0.000000,0.000000,0.250000,0,0);}
.mb0_c00064{transform:matrix(0.301913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301913,0.000000,0.000000,0.250000,0,0);}
.m78_c00064{transform:matrix(0.302281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302281,0.000000,0.000000,0.250000,0,0);}
.m8a_c00064{transform:matrix(0.302288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302288,0.000000,0.000000,0.250000,0,0);}
.mf_c00064{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m48_c00064{transform:matrix(0.302665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302665,0.000000,0.000000,0.250000,0,0);}
.m2d_c00064{transform:matrix(0.302907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302907,0.000000,0.000000,0.250000,0,0);}
.m64_c00064{transform:matrix(0.302981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302981,0.000000,0.000000,0.250000,0,0);}
.m2e_c00064{transform:matrix(0.303162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303162,0.000000,0.000000,0.250000,0,0);}
.ma_c00064{transform:matrix(0.303343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303343,0.000000,0.000000,0.250000,0,0);}
.m56_c00064{transform:matrix(0.303859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303859,0.000000,0.000000,0.250000,0,0);}
.m7c_c00064{transform:matrix(0.305186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305186,0.000000,0.000000,0.250000,0,0);}
.m73_c00064{transform:matrix(0.305698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305698,0.000000,0.000000,0.250000,0,0);}
.m6c_c00064{transform:matrix(0.305849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305849,0.000000,0.000000,0.250000,0,0);}
.m90_c00064{transform:matrix(0.306291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306291,0.000000,0.000000,0.250000,0,0);}
.m44_c00064{transform:matrix(0.306666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306666,0.000000,0.000000,0.250000,0,0);}
.m2b_c00064{transform:matrix(0.306720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306720,0.000000,0.000000,0.250000,0,0);}
.m87_c00064{transform:matrix(0.307147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307147,0.000000,0.000000,0.250000,0,0);}
.m19_c00064{transform:matrix(0.307591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307591,0.000000,0.000000,0.250000,0,0);}
.maa_c00064{transform:matrix(0.307853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307853,0.000000,0.000000,0.250000,0,0);}
.m31_c00064{transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);}
.m80_c00064{transform:matrix(0.308465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308465,0.000000,0.000000,0.250000,0,0);}
.m20_c00064{transform:matrix(0.308564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308564,0.000000,0.000000,0.250000,0,0);}
.m11_c00064{transform:matrix(0.308963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308963,0.000000,0.000000,0.250000,0,0);}
.m4a_c00064{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.m13_c00064{transform:matrix(0.313434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313434,0.000000,0.000000,0.250000,0,0);}
.m33_c00064{transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);}
.m52_c00064{transform:matrix(0.314520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314520,0.000000,0.000000,0.250000,0,0);}
.m5d_c00064{transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);}
.m72_c00064{transform:matrix(0.316169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316169,0.000000,0.000000,0.250000,0,0);}
.m5a_c00064{transform:matrix(0.317322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317322,0.000000,0.000000,0.250000,0,0);}
.m4f_c00064{transform:matrix(0.317507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317507,0.000000,0.000000,0.250000,0,0);}
.ma5_c00064{transform:matrix(0.318864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318864,0.000000,0.000000,0.250000,0,0);}
.ma8_c00064{transform:matrix(0.319227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319227,0.000000,0.000000,0.250000,0,0);}
.ma4_c00064{transform:matrix(0.319846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319846,0.000000,0.000000,0.250000,0,0);}
.m91_c00064{transform:matrix(0.320064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320064,0.000000,0.000000,0.250000,0,0);}
.m39_c00064{transform:matrix(0.321037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321037,0.000000,0.000000,0.250000,0,0);}
.m4b_c00064{transform:matrix(0.321509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321509,0.000000,0.000000,0.250000,0,0);}
.m25_c00064{transform:matrix(0.322349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322349,0.000000,0.000000,0.250000,0,0);}
.mab_c00064{transform:matrix(0.322603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322603,0.000000,0.000000,0.250000,0,0);}
.m1f_c00064{transform:matrix(0.323918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323918,0.000000,0.000000,0.250000,0,0);}
.m62_c00064{transform:matrix(0.325086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325086,0.000000,0.000000,0.250000,0,0);}
.m83_c00064{transform:matrix(0.326045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326045,0.000000,0.000000,0.250000,0,0);}
.m3b_c00064{transform:matrix(0.326063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326063,0.000000,0.000000,0.250000,0,0);}
.m27_c00064{transform:matrix(0.326875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326875,0.000000,0.000000,0.250000,0,0);}
.maf_c00064{transform:matrix(0.326888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326888,0.000000,0.000000,0.250000,0,0);}
.md_c00064{transform:matrix(0.327290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327290,0.000000,0.000000,0.250000,0,0);}
.m70_c00064{transform:matrix(0.327863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327863,0.000000,0.000000,0.250000,0,0);}
.ma7_c00064{transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);}
.m9d_c00064{transform:matrix(0.331877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331877,0.000000,0.000000,0.250000,0,0);}
.m98_c00064{transform:matrix(0.332278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332278,0.000000,0.000000,0.250000,0,0);}
.m60_c00064{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.mb1_c00064{transform:matrix(0.333376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333376,0.000000,0.000000,0.250000,0,0);}
.m9f_c00064{transform:matrix(0.333645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333645,0.000000,0.000000,0.250000,0,0);}
.m8_c00064{transform:matrix(0.334632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334632,0.000000,0.000000,0.250000,0,0);}
.m10_c00064{transform:matrix(0.335691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335691,0.000000,0.000000,0.250000,0,0);}
.m8f_c00064{transform:matrix(0.336230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336230,0.000000,0.000000,0.250000,0,0);}
.mad_c00064{transform:matrix(0.337511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337511,0.000000,0.000000,0.250000,0,0);}
.m3f_c00064{transform:matrix(0.338456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338456,0.000000,0.000000,0.250000,0,0);}
.m6e_c00064{transform:matrix(0.338859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338859,0.000000,0.000000,0.250000,0,0);}
.m47_c00064{transform:matrix(0.340703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340703,0.000000,0.000000,0.250000,0,0);}
.m3_c00064{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.mb_c00064{transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);}
.m6d_c00064{transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);}
.m6f_c00064{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m26_c00064{transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);}
.m57_c00064{transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);}
.m96_c00064{transform:matrix(0.353367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353367,0.000000,0.000000,0.250000,0,0);}
.m24_c00064{transform:matrix(0.354609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354609,0.000000,0.000000,0.250000,0,0);}
.m36_c00064{transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);}
.m1d_c00064{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m58_c00064{transform:matrix(0.361141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361141,0.000000,0.000000,0.250000,0,0);}
.m63_c00064{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m5b_c00064{transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);}
.m9b_c00064{transform:matrix(0.368506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368506,0.000000,0.000000,0.250000,0,0);}
.m16_c00064{transform:matrix(0.369895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369895,0.000000,0.000000,0.250000,0,0);}
.m42_c00064{transform:matrix(0.377871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377871,0.000000,0.000000,0.250000,0,0);}
.v0_c00064{vertical-align:0.000000px;}
.lse_c00064{letter-spacing:-2.744280px;}
.ls7_c00064{letter-spacing:-2.509056px;}
.ls13_c00064{letter-spacing:-1.505434px;}
.ls14_c00064{letter-spacing:-1.427026px;}
.ls11_c00064{letter-spacing:-0.258746px;}
.ls10_c00064{letter-spacing:-0.180338px;}
.ls2_c00064{letter-spacing:0.000000px;}
.lsa_c00064{letter-spacing:1.677931px;}
.lsb_c00064{letter-spacing:2.132698px;}
.ls0_c00064{letter-spacing:2.281673px;}
.ls6_c00064{letter-spacing:2.534400px;}
.ls8_c00064{letter-spacing:2.618827px;}
.lsf_c00064{letter-spacing:3.152002px;}
.ls12_c00064{letter-spacing:3.246091px;}
.ls1_c00064{letter-spacing:3.371544px;}
.lsc_c00064{letter-spacing:3.559723px;}
.ls15_c00064{letter-spacing:3.762000px;}
.ls3_c00064{letter-spacing:3.781810px;}
.lsd_c00064{letter-spacing:3.841992px;}
.ls4_c00064{letter-spacing:3.920400px;}
.ls5_c00064{letter-spacing:4.474810px;}
.ls9_c00064{letter-spacing:52.747398px;}
.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:-19.602000px;}
.ws1_c00064{word-spacing:0.000000px;}
._1_c00064{margin-left:-4.326775px;}
._0_c00064{width:8.546472px;}
._2_c00064{width:34.890768px;}
.fc0_c00064{color:transparent;}
.fs1_c00064{font-size:22.176000px;}
.fs2_c00064{font-size:27.720000px;}
.fsc_c00064{font-size:50.292000px;}
.fs6_c00064{font-size:50.688000px;}
.fs7_c00064{font-size:52.747398px;}
.fsb_c00064{font-size:60.192000px;}
.fs9_c00064{font-size:64.548000px;}
.fs3_c00064{font-size:70.884000px;}
.fsa_c00064{font-size:75.240000px;}
.fs0_c00064{font-size:75.636198px;}
.fs4_c00064{font-size:78.408000px;}
.fs8_c00064{font-size:78.804000px;}
.fs5_c00064{font-size:89.496198px;}
.y0_c00064{bottom:0.000000px;}
.y1e_c00064{bottom:40.180185px;}
.y1_c00064{bottom:76.500000px;}
.y1d_c00064{bottom:79.740585px;}
.y1c_c00064{bottom:103.624335px;}
.y1b_c00064{bottom:167.419935px;}
.y1a_c00064{bottom:201.629385px;}
.y19_c00064{bottom:234.066735px;}
.y18_c00064{bottom:266.850585px;}
.y17_c00064{bottom:300.000735px;}
.y16_c00064{bottom:332.789535px;}
.y15_c00064{bottom:364.860585px;}
.y14_c00064{bottom:397.297935px;}
.y13_c00064{bottom:429.725385px;}
.y12_c00064{bottom:461.449935px;}
.y11_c00064{bottom:493.882335px;}
.y10_c00064{bottom:525.953385px;}
.yf_c00064{bottom:558.747135px;}
.ye_c00064{bottom:591.174585px;}
.yd_c00064{bottom:623.963385px;}
.yc_c00064{bottom:657.469935px;}
.yb_c00064{bottom:690.610185px;}
.ya_c00064{bottom:725.542335px;}
.y9_c00064{bottom:757.974735px;}
.y8_c00064{bottom:791.119935px;}
.y7_c00064{bottom:857.410335px;}
.y6_c00064{bottom:891.981135px;}
.y5_c00064{bottom:924.413535px;}
.y4_c00064{bottom:992.485935px;}
.y3_c00064{bottom:999.970335px;}
.y2_c00064{bottom:1087.996185px;}
.h3_c00064{height:23.128875px;}
.h4_c00064{height:28.911094px;}
.h9_c00064{height:35.129767px;}
.he_c00064{height:49.358848px;}
.h8_c00064{height:49.747500px;}
.hd_c00064{height:62.778375px;}
.hb_c00064{height:67.321547px;}
.h5_c00064{height:69.568770px;}
.h2_c00064{height:74.232792px;}
.h6_c00064{height:76.953164px;}
.ha_c00064{height:77.341816px;}
.hc_c00064{height:78.472969px;}
.h7_c00064{height:87.835624px;}
.h1_c00064{height:1110.000000px;}
.h0_c00064{height:1263.000000px;}
.w1_c00064{width:733.500000px;}
.w0_c00064{width:892.500000px;}
.x0_c00064{left:0.000000px;}
.x4b_c00064{left:53.083335px;}
.x6_c00064{left:54.157485px;}
.x5_c00064{left:56.573085px;}
.x10_c00064{left:65.294985px;}
.x7_c00064{left:75.719685px;}
.x1_c00064{left:79.500000px;}
.x2a_c00064{left:85.931535px;}
.x4c_c00064{left:86.995785px;}
.x56_c00064{left:96.851235px;}
.x11_c00064{left:98.049135px;}
.x20_c00064{left:108.236235px;}
.x8_c00064{left:109.904385px;}
.x3a_c00064{left:119.873685px;}
.x37_c00064{left:130.966635px;}
.x2b_c00064{left:140.411235px;}
.x9_c00064{left:142.371435px;}
.x1c_c00064{left:152.221935px;}
.x3b_c00064{left:153.365385px;}
.x31_c00064{left:163.750485px;}
.x48_c00064{left:164.770185px;}
.x38_c00064{left:175.150335px;}
.xa_c00064{left:185.659185px;}
.x12_c00064{left:187.555035px;}
.x21_c00064{left:197.935185px;}
.x1d_c00064{left:209.344935px;}
.x3c_c00064{left:219.225135px;}
.x22_c00064{left:230.714085px;}
.xb_c00064{left:240.935835px;}
.x4f_c00064{left:242.138685px;}
.x44_c00064{left:253.295985px;}
.x32_c00064{left:262.636635px;}
.x23_c00064{left:263.775135px;}
.xc_c00064{left:274.036485px;}
.x39_c00064{left:275.966985px;}
.x45_c00064{left:286.327335px;}
.x53_c00064{left:287.366835px;}
.x13_c00064{left:297.044085px;}
.x1e_c00064{left:307.825185px;}
.x42_c00064{left:309.146835px;}
.x2c_c00064{left:320.036835px;}
.x3d_c00064{left:330.545685px;}
.x5a_c00064{left:331.936635px;}
.x14_c00064{left:341.811885px;}
.x24_c00064{left:353.305785px;}
.x49_c00064{left:354.345285px;}
.x2d_c00064{left:363.463185px;}
.x33_c00064{left:364.705635px;}
.x15_c00064{left:375.432285px;}
.x58_c00064{left:376.476735px;}
.xd_c00064{left:386.302485px;}
.x2e_c00064{left:396.850935px;}
.x4d_c00064{left:397.900335px;}
.x50_c00064{left:408.562635px;}
.x25_c00064{left:418.932885px;}
.x46_c00064{left:430.109985px;}
.x40_c00064{left:431.421735px;}
.x51_c00064{left:442.064235px;}
.x16_c00064{left:453.087885px;}
.x1f_c00064{left:455.221335px;}
.x26_c00064{left:464.492685px;}
.x4_c00064{left:473.585835px;}
.x34_c00064{left:475.570785px;}
.xe_c00064{left:486.010335px;}
.x17_c00064{left:497.672535px;}
.x35_c00064{left:508.384335px;}
.xf_c00064{left:519.081285px;}
.x18_c00064{left:531.134535px;}
.x2f_c00064{left:541.509735px;}
.x27_c00064{left:551.870085px;}
.x4e_c00064{left:552.904635px;}
.x3e_c00064{left:562.933335px;}
.x28_c00064{left:573.838185px;}
.x47_c00064{left:574.843035px;}
.x19_c00064{left:585.703335px;}
.x54_c00064{left:596.415135px;}
.x55_c00064{left:597.820935px;}
.x29_c00064{left:607.334835px;}
.x43_c00064{left:608.473335px;}
.x36_c00064{left:619.086135px;}
.x41_c00064{left:629.783085px;}
.x2_c00064{left:632.040285px;}
.x4a_c00064{left:640.049385px;}
.x3_c00064{left:643.430235px;}
.x1a_c00064{left:650.439435px;}
.x3f_c00064{left:652.176885px;}
.x30_c00064{left:662.710485px;}
.x57_c00064{left:669.541485px;}
.x59_c00064{left:670.887885px;}
.x1b_c00064{left:682.817385px;}
.x52_c00064{left:685.490385px;}
@media print{
.v0_c00064{vertical-align:0.000000pt;}
.lse_c00064{letter-spacing:-2.439360pt;}
.ls7_c00064{letter-spacing:-2.230272pt;}
.ls13_c00064{letter-spacing:-1.338163pt;}
.ls14_c00064{letter-spacing:-1.268467pt;}
.ls11_c00064{letter-spacing:-0.229997pt;}
.ls10_c00064{letter-spacing:-0.160301pt;}
.ls2_c00064{letter-spacing:0.000000pt;}
.lsa_c00064{letter-spacing:1.491494pt;}
.lsb_c00064{letter-spacing:1.895731pt;}
.ls0_c00064{letter-spacing:2.028154pt;}
.ls6_c00064{letter-spacing:2.252800pt;}
.ls8_c00064{letter-spacing:2.327846pt;}
.lsf_c00064{letter-spacing:2.801779pt;}
.ls12_c00064{letter-spacing:2.885414pt;}
.ls1_c00064{letter-spacing:2.996928pt;}
.lsc_c00064{letter-spacing:3.164198pt;}
.ls15_c00064{letter-spacing:3.344000pt;}
.ls3_c00064{letter-spacing:3.361609pt;}
.lsd_c00064{letter-spacing:3.415104pt;}
.ls4_c00064{letter-spacing:3.484800pt;}
.ls5_c00064{letter-spacing:3.977609pt;}
.ls9_c00064{letter-spacing:46.886576pt;}
.ws0_c00064{word-spacing:-17.424000pt;}
.ws1_c00064{word-spacing:0.000000pt;}
._1_c00064{margin-left:-3.846022pt;}
._0_c00064{width:7.596864pt;}
._2_c00064{width:31.014016pt;}
.fs1_c00064{font-size:19.712000pt;}
.fs2_c00064{font-size:24.640000pt;}
.fsc_c00064{font-size:44.704000pt;}
.fs6_c00064{font-size:45.056000pt;}
.fs7_c00064{font-size:46.886576pt;}
.fsb_c00064{font-size:53.504000pt;}
.fs9_c00064{font-size:57.376000pt;}
.fs3_c00064{font-size:63.008000pt;}
.fsa_c00064{font-size:66.880000pt;}
.fs0_c00064{font-size:67.232176pt;}
.fs4_c00064{font-size:69.696000pt;}
.fs8_c00064{font-size:70.048000pt;}
.fs5_c00064{font-size:79.552176pt;}
.y0_c00064{bottom:0.000000pt;}
.y1e_c00064{bottom:35.715720pt;}
.y1_c00064{bottom:68.000000pt;}
.y1d_c00064{bottom:70.880520pt;}
.y1c_c00064{bottom:92.110520pt;}
.y1b_c00064{bottom:148.817720pt;}
.y1a_c00064{bottom:179.226120pt;}
.y19_c00064{bottom:208.059320pt;}
.y18_c00064{bottom:237.200520pt;}
.y17_c00064{bottom:266.667320pt;}
.y16_c00064{bottom:295.812920pt;}
.y15_c00064{bottom:324.320520pt;}
.y14_c00064{bottom:353.153720pt;}
.y13_c00064{bottom:381.978120pt;}
.y12_c00064{bottom:410.177720pt;}
.y11_c00064{bottom:439.006520pt;}
.y10_c00064{bottom:467.514120pt;}
.yf_c00064{bottom:496.664120pt;}
.ye_c00064{bottom:525.488520pt;}
.yd_c00064{bottom:554.634120pt;}
.yc_c00064{bottom:584.417720pt;}
.yb_c00064{bottom:613.875720pt;}
.ya_c00064{bottom:644.926520pt;}
.y9_c00064{bottom:673.755320pt;}
.y8_c00064{bottom:703.217720pt;}
.y7_c00064{bottom:762.142520pt;}
.y6_c00064{bottom:792.872120pt;}
.y5_c00064{bottom:821.700920pt;}
.y4_c00064{bottom:882.209720pt;}
.y3_c00064{bottom:888.862520pt;}
.y2_c00064{bottom:967.107720pt;}
.h3_c00064{height:20.559000pt;}
.h4_c00064{height:25.698750pt;}
.h9_c00064{height:31.226460pt;}
.he_c00064{height:43.874531pt;}
.h8_c00064{height:44.220000pt;}
.hd_c00064{height:55.803000pt;}
.hb_c00064{height:59.841375pt;}
.h5_c00064{height:61.838906pt;}
.h2_c00064{height:65.984704pt;}
.h6_c00064{height:68.402813pt;}
.ha_c00064{height:68.748281pt;}
.hc_c00064{height:69.753750pt;}
.h7_c00064{height:78.076110pt;}
.h1_c00064{height:986.666667pt;}
.h0_c00064{height:1122.666667pt;}
.w1_c00064{width:652.000000pt;}
.w0_c00064{width:793.333333pt;}
.x0_c00064{left:0.000000pt;}
.x4b_c00064{left:47.185187pt;}
.x6_c00064{left:48.139987pt;}
.x5_c00064{left:50.287187pt;}
.x10_c00064{left:58.039987pt;}
.x7_c00064{left:67.306387pt;}
.x1_c00064{left:70.666667pt;}
.x2a_c00064{left:76.383587pt;}
.x4c_c00064{left:77.329587pt;}
.x56_c00064{left:86.089987pt;}
.x11_c00064{left:87.154787pt;}
.x20_c00064{left:96.209987pt;}
.x8_c00064{left:97.692787pt;}
.x3a_c00064{left:106.554387pt;}
.x37_c00064{left:116.414787pt;}
.x2b_c00064{left:124.809987pt;}
.x9_c00064{left:126.552387pt;}
.x1c_c00064{left:135.308387pt;}
.x3b_c00064{left:136.324787pt;}
.x31_c00064{left:145.555987pt;}
.x48_c00064{left:146.462387pt;}
.x38_c00064{left:155.689187pt;}
.xa_c00064{left:165.030387pt;}
.x12_c00064{left:166.715587pt;}
.x21_c00064{left:175.942387pt;}
.x1d_c00064{left:186.084387pt;}
.x3c_c00064{left:194.866787pt;}
.x22_c00064{left:205.079187pt;}
.xb_c00064{left:214.165187pt;}
.x4f_c00064{left:215.234387pt;}
.x44_c00064{left:225.151987pt;}
.x32_c00064{left:233.454787pt;}
.x23_c00064{left:234.466787pt;}
.xc_c00064{left:243.587987pt;}
.x39_c00064{left:245.303987pt;}
.x45_c00064{left:254.513187pt;}
.x53_c00064{left:255.437187pt;}
.x13_c00064{left:264.039187pt;}
.x1e_c00064{left:273.622387pt;}
.x42_c00064{left:274.797187pt;}
.x2c_c00064{left:284.477187pt;}
.x3d_c00064{left:293.818387pt;}
.x5a_c00064{left:295.054787pt;}
.x14_c00064{left:303.832787pt;}
.x24_c00064{left:314.049587pt;}
.x49_c00064{left:314.973587pt;}
.x2d_c00064{left:323.078387pt;}
.x33_c00064{left:324.182787pt;}
.x15_c00064{left:333.717587pt;}
.x58_c00064{left:334.645987pt;}
.xd_c00064{left:343.379987pt;}
.x2e_c00064{left:352.756387pt;}
.x4d_c00064{left:353.689187pt;}
.x50_c00064{left:363.166787pt;}
.x25_c00064{left:372.384787pt;}
.x46_c00064{left:382.319987pt;}
.x40_c00064{left:383.485987pt;}
.x51_c00064{left:392.945987pt;}
.x16_c00064{left:402.744787pt;}
.x1f_c00064{left:404.641187pt;}
.x26_c00064{left:412.882387pt;}
.x4_c00064{left:420.965187pt;}
.x34_c00064{left:422.729587pt;}
.xe_c00064{left:432.009187pt;}
.x17_c00064{left:442.375587pt;}
.x35_c00064{left:451.897187pt;}
.xf_c00064{left:461.405587pt;}
.x18_c00064{left:472.119587pt;}
.x2f_c00064{left:481.341987pt;}
.x27_c00064{left:490.551187pt;}
.x4e_c00064{left:491.470787pt;}
.x3e_c00064{left:500.385187pt;}
.x28_c00064{left:510.078387pt;}
.x47_c00064{left:510.971587pt;}
.x19_c00064{left:520.625187pt;}
.x54_c00064{left:530.146787pt;}
.x55_c00064{left:531.396387pt;}
.x29_c00064{left:539.853187pt;}
.x43_c00064{left:540.865187pt;}
.x36_c00064{left:550.298787pt;}
.x41_c00064{left:559.807187pt;}
.x2_c00064{left:561.813587pt;}
.x4a_c00064{left:568.932787pt;}
.x3_c00064{left:571.937987pt;}
.x1a_c00064{left:578.168387pt;}
.x3f_c00064{left:579.712787pt;}
.x30_c00064{left:589.075987pt;}
.x57_c00064{left:595.147987pt;}
.x59_c00064{left:596.344787pt;}
.x1b_c00064{left:606.948787pt;}
.x52_c00064{left:609.324787pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f60417674a384478f735d0cd.woff2')format("woff");}.ff1_c00065{font-family:ff1_c00065;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00065;src:url('chunks/assets/font_4fbc149f672d63be0f565a66.woff2')format("woff");}.ff2_c00065{font-family:ff2_c00065;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00065;src:url('chunks/assets/font_74e266fc0d6ffa01ccbc1417.woff2')format("woff");}.ff3_c00065{font-family:ff3_c00065;line-height:0.666000;font-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_c00065{transform:matrix(0.202702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202702,0.000000,0.000000,0.250000,0,0);}
.m9d_c00065{transform:matrix(0.209760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209760,0.000000,0.000000,0.250000,0,0);}
.mb9_c00065{transform:matrix(0.214583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214583,0.000000,0.000000,0.250000,0,0);}
.mf_c00065{transform:matrix(0.216899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216899,0.000000,0.000000,0.250000,0,0);}
.m6e_c00065{transform:matrix(0.226922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226922,0.000000,0.000000,0.250000,0,0);}
.mb6_c00065{transform:matrix(0.227705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227705,0.000000,0.000000,0.250000,0,0);}
.m76_c00065{transform:matrix(0.244756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244756,0.000000,0.000000,0.250000,0,0);}
.m77_c00065{transform:matrix(0.245722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245722,0.000000,0.000000,0.250000,0,0);}
.m23_c00065{transform:matrix(0.248852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248852,0.000000,0.000000,0.250000,0,0);}
.m0_c00065{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00065{transform:matrix(0.250856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250856,0.000000,0.000000,0.250000,0,0);}
.m25_c00065{transform:matrix(0.253378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253378,0.000000,0.000000,0.250000,0,0);}
.m95_c00065{transform:matrix(0.256514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256514,0.000000,0.000000,0.250000,0,0);}
.m54_c00065{transform:matrix(0.257197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257197,0.000000,0.000000,0.250000,0,0);}
.me_c00065{transform:matrix(0.257444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257444,0.000000,0.000000,0.250000,0,0);}
.m4c_c00065{transform:matrix(0.258400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258400,0.000000,0.000000,0.250000,0,0);}
.m47_c00065{transform:matrix(0.259665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259665,0.000000,0.000000,0.250000,0,0);}
.m30_c00065{transform:matrix(0.261890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261890,0.000000,0.000000,0.250000,0,0);}
.m17_c00065{transform:matrix(0.264973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264973,0.000000,0.000000,0.250000,0,0);}
.m34_c00065{transform:matrix(0.265065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265065,0.000000,0.000000,0.250000,0,0);}
.mb_c00065{transform:matrix(0.265386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265386,0.000000,0.000000,0.250000,0,0);}
.mad_c00065{transform:matrix(0.265651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265651,0.000000,0.000000,0.250000,0,0);}
.m43_c00065{transform:matrix(0.267551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267551,0.000000,0.000000,0.250000,0,0);}
.m1_c00065{transform:matrix(0.268154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268154,0.000000,0.000000,0.250000,0,0);}
.m10_c00065{transform:matrix(0.270126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270126,0.000000,0.000000,0.250000,0,0);}
.m1e_c00065{transform:matrix(0.270764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270764,0.000000,0.000000,0.250000,0,0);}
.m5a_c00065{transform:matrix(0.271062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271062,0.000000,0.000000,0.250000,0,0);}
.m1f_c00065{transform:matrix(0.271565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271565,0.000000,0.000000,0.250000,0,0);}
.m84_c00065{transform:matrix(0.272137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272137,0.000000,0.000000,0.250000,0,0);}
.m14_c00065{transform:matrix(0.272659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272659,0.000000,0.000000,0.250000,0,0);}
.m32_c00065{transform:matrix(0.273033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273033,0.000000,0.000000,0.250000,0,0);}
.m6f_c00065{transform:matrix(0.273074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273074,0.000000,0.000000,0.250000,0,0);}
.mae_c00065{transform:matrix(0.273110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273110,0.000000,0.000000,0.250000,0,0);}
.m22_c00065{transform:matrix(0.273806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273806,0.000000,0.000000,0.250000,0,0);}
.m9_c00065{transform:matrix(0.274865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274865,0.000000,0.000000,0.250000,0,0);}
.m24_c00065{transform:matrix(0.276066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276066,0.000000,0.000000,0.250000,0,0);}
.ma8_c00065{transform:matrix(0.276815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276815,0.000000,0.000000,0.250000,0,0);}
.m5d_c00065{transform:matrix(0.277901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277901,0.000000,0.000000,0.250000,0,0);}
.m2c_c00065{transform:matrix(0.278056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278056,0.000000,0.000000,0.250000,0,0);}
.m40_c00065{transform:matrix(0.278639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278639,0.000000,0.000000,0.250000,0,0);}
.m2e_c00065{transform:matrix(0.279347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279347,0.000000,0.000000,0.250000,0,0);}
.m52_c00065{transform:matrix(0.279604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279604,0.000000,0.000000,0.250000,0,0);}
.m65_c00065{transform:matrix(0.279642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279642,0.000000,0.000000,0.250000,0,0);}
.m5_c00065{transform:matrix(0.281172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281172,0.000000,0.000000,0.250000,0,0);}
.m3_c00065{transform:matrix(0.281227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281227,0.000000,0.000000,0.250000,0,0);}
.m83_c00065{transform:matrix(0.281701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281701,0.000000,0.000000,0.250000,0,0);}
.m2_c00065{transform:matrix(0.282166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282166,0.000000,0.000000,0.250000,0,0);}
.m18_c00065{transform:matrix(0.282692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282692,0.000000,0.000000,0.250000,0,0);}
.m46_c00065{transform:matrix(0.283202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283202,0.000000,0.000000,0.250000,0,0);}
.m74_c00065{transform:matrix(0.284537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284537,0.000000,0.000000,0.250000,0,0);}
.m39_c00065{transform:matrix(0.284952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284952,0.000000,0.000000,0.250000,0,0);}
.ma2_c00065{transform:matrix(0.285700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285700,0.000000,0.000000,0.250000,0,0);}
.m50_c00065{transform:matrix(0.285773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285773,0.000000,0.000000,0.250000,0,0);}
.m9c_c00065{transform:matrix(0.285946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285946,0.000000,0.000000,0.250000,0,0);}
.m4f_c00065{transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);}
.m37_c00065{transform:matrix(0.286635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286635,0.000000,0.000000,0.250000,0,0);}
.m7a_c00065{transform:matrix(0.287218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287218,0.000000,0.000000,0.250000,0,0);}
.mb4_c00065{transform:matrix(0.287278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287278,0.000000,0.000000,0.250000,0,0);}
.m67_c00065{transform:matrix(0.289127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289127,0.000000,0.000000,0.250000,0,0);}
.m8a_c00065{transform:matrix(0.289731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289731,0.000000,0.000000,0.250000,0,0);}
.mb7_c00065{transform:matrix(0.290464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290464,0.000000,0.000000,0.250000,0,0);}
.m73_c00065{transform:matrix(0.290707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290707,0.000000,0.000000,0.250000,0,0);}
.m21_c00065{transform:matrix(0.291126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291126,0.000000,0.000000,0.250000,0,0);}
.m41_c00065{transform:matrix(0.291452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291452,0.000000,0.000000,0.250000,0,0);}
.m78_c00065{transform:matrix(0.292002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292002,0.000000,0.000000,0.250000,0,0);}
.mba_c00065{transform:matrix(0.292143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292143,0.000000,0.000000,0.250000,0,0);}
.ma9_c00065{transform:matrix(0.292350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292350,0.000000,0.000000,0.250000,0,0);}
.m27_c00065{transform:matrix(0.292383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292383,0.000000,0.000000,0.250000,0,0);}
.mb5_c00065{transform:matrix(0.293095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293095,0.000000,0.000000,0.250000,0,0);}
.m96_c00065{transform:matrix(0.293370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293370,0.000000,0.000000,0.250000,0,0);}
.m2a_c00065{transform:matrix(0.293614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293614,0.000000,0.000000,0.250000,0,0);}
.m7_c00065{transform:matrix(0.293670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293670,0.000000,0.000000,0.250000,0,0);}
.m89_c00065{transform:matrix(0.294128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294128,0.000000,0.000000,0.250000,0,0);}
.m7d_c00065{transform:matrix(0.294970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294970,0.000000,0.000000,0.250000,0,0);}
.m81_c00065{transform:matrix(0.295402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295402,0.000000,0.000000,0.250000,0,0);}
.m48_c00065{transform:matrix(0.295996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295996,0.000000,0.000000,0.250000,0,0);}
.m3a_c00065{transform:matrix(0.296121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296121,0.000000,0.000000,0.250000,0,0);}
.m7f_c00065{transform:matrix(0.296460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296460,0.000000,0.000000,0.250000,0,0);}
.m72_c00065{transform:matrix(0.296555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296555,0.000000,0.000000,0.250000,0,0);}
.m16_c00065{transform:matrix(0.296957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296957,0.000000,0.000000,0.250000,0,0);}
.m56_c00065{transform:matrix(0.297209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297209,0.000000,0.000000,0.250000,0,0);}
.m91_c00065{transform:matrix(0.297711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297711,0.000000,0.000000,0.250000,0,0);}
.m64_c00065{transform:matrix(0.297942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297942,0.000000,0.000000,0.250000,0,0);}
.m19_c00065{transform:matrix(0.298092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298092,0.000000,0.000000,0.250000,0,0);}
.m4b_c00065{transform:matrix(0.298210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298210,0.000000,0.000000,0.250000,0,0);}
.m36_c00065{transform:matrix(0.298236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298236,0.000000,0.000000,0.250000,0,0);}
.m38_c00065{transform:matrix(0.298307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298307,0.000000,0.000000,0.250000,0,0);}
.m68_c00065{transform:matrix(0.298468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298468,0.000000,0.000000,0.250000,0,0);}
.m63_c00065{transform:matrix(0.299087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299087,0.000000,0.000000,0.250000,0,0);}
.ma_c00065{transform:matrix(0.299537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299537,0.000000,0.000000,0.250000,0,0);}
.ma6_c00065{transform:matrix(0.299740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299740,0.000000,0.000000,0.250000,0,0);}
.m26_c00065{transform:matrix(0.300854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300854,0.000000,0.000000,0.250000,0,0);}
.mb2_c00065{transform:matrix(0.300934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300934,0.000000,0.000000,0.250000,0,0);}
.m11_c00065{transform:matrix(0.302479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302479,0.000000,0.000000,0.250000,0,0);}
.m8f_c00065{transform:matrix(0.303052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303052,0.000000,0.000000,0.250000,0,0);}
.mbb_c00065{transform:matrix(0.304430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304430,0.000000,0.000000,0.250000,0,0);}
.m1c_c00065{transform:matrix(0.304551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304551,0.000000,0.000000,0.250000,0,0);}
.m55_c00065{transform:matrix(0.304803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304803,0.000000,0.000000,0.250000,0,0);}
.m9a_c00065{transform:matrix(0.305608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305608,0.000000,0.000000,0.250000,0,0);}
.m85_c00065{transform:matrix(0.305758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305758,0.000000,0.000000,0.250000,0,0);}
.m45_c00065{transform:matrix(0.306079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306079,0.000000,0.000000,0.250000,0,0);}
.m58_c00065{transform:matrix(0.307529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307529,0.000000,0.000000,0.250000,0,0);}
.ma0_c00065{transform:matrix(0.308767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308767,0.000000,0.000000,0.250000,0,0);}
.m8d_c00065{transform:matrix(0.308861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308861,0.000000,0.000000,0.250000,0,0);}
.m61_c00065{transform:matrix(0.308972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308972,0.000000,0.000000,0.250000,0,0);}
.mab_c00065{transform:matrix(0.309577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309577,0.000000,0.000000,0.250000,0,0);}
.m92_c00065{transform:matrix(0.309757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309757,0.000000,0.000000,0.250000,0,0);}
.m8e_c00065{transform:matrix(0.309889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309889,0.000000,0.000000,0.250000,0,0);}
.mac_c00065{transform:matrix(0.309931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309931,0.000000,0.000000,0.250000,0,0);}
.m2f_c00065{transform:matrix(0.310210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310210,0.000000,0.000000,0.250000,0,0);}
.m5b_c00065{transform:matrix(0.310246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310246,0.000000,0.000000,0.250000,0,0);}
.m35_c00065{transform:matrix(0.310376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310376,0.000000,0.000000,0.250000,0,0);}
.ma3_c00065{transform:matrix(0.310407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310407,0.000000,0.000000,0.250000,0,0);}
.m4d_c00065{transform:matrix(0.310426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310426,0.000000,0.000000,0.250000,0,0);}
.m87_c00065{transform:matrix(0.311142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311142,0.000000,0.000000,0.250000,0,0);}
.m6_c00065{transform:matrix(0.311290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311290,0.000000,0.000000,0.250000,0,0);}
.m49_c00065{transform:matrix(0.311323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311323,0.000000,0.000000,0.250000,0,0);}
.m7e_c00065{transform:matrix(0.311658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311658,0.000000,0.000000,0.250000,0,0);}
.m80_c00065{transform:matrix(0.312258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312258,0.000000,0.000000,0.250000,0,0);}
.m97_c00065{transform:matrix(0.312487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312487,0.000000,0.000000,0.250000,0,0);}
.ma4_c00065{transform:matrix(0.313118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313118,0.000000,0.000000,0.250000,0,0);}
.ma5_c00065{transform:matrix(0.313547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313547,0.000000,0.000000,0.250000,0,0);}
.mb1_c00065{transform:matrix(0.314506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314506,0.000000,0.000000,0.250000,0,0);}
.mb3_c00065{transform:matrix(0.314953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314953,0.000000,0.000000,0.250000,0,0);}
.m7c_c00065{transform:matrix(0.315041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315041,0.000000,0.000000,0.250000,0,0);}
.m20_c00065{transform:matrix(0.315112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315112,0.000000,0.000000,0.250000,0,0);}
.m6c_c00065{transform:matrix(0.315147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315147,0.000000,0.000000,0.250000,0,0);}
.m1a_c00065{transform:matrix(0.315267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315267,0.000000,0.000000,0.250000,0,0);}
.m3d_c00065{transform:matrix(0.315505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315505,0.000000,0.000000,0.250000,0,0);}
.m1d_c00065{transform:matrix(0.315955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315955,0.000000,0.000000,0.250000,0,0);}
.ma1_c00065{transform:matrix(0.316573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316573,0.000000,0.000000,0.250000,0,0);}
.m94_c00065{transform:matrix(0.316597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316597,0.000000,0.000000,0.250000,0,0);}
.m13_c00065{transform:matrix(0.316908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316908,0.000000,0.000000,0.250000,0,0);}
.m1b_c00065{transform:matrix(0.317731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317731,0.000000,0.000000,0.250000,0,0);}
.m57_c00065{transform:matrix(0.319510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319510,0.000000,0.000000,0.250000,0,0);}
.m15_c00065{transform:matrix(0.320113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320113,0.000000,0.000000,0.250000,0,0);}
.m82_c00065{transform:matrix(0.321052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321052,0.000000,0.000000,0.250000,0,0);}
.m90_c00065{transform:matrix(0.322377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322377,0.000000,0.000000,0.250000,0,0);}
.m6d_c00065{transform:matrix(0.322552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322552,0.000000,0.000000,0.250000,0,0);}
.m75_c00065{transform:matrix(0.322686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322686,0.000000,0.000000,0.250000,0,0);}
.m5c_c00065{transform:matrix(0.322811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322811,0.000000,0.000000,0.250000,0,0);}
.m33_c00065{transform:matrix(0.322873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322873,0.000000,0.000000,0.250000,0,0);}
.m8b_c00065{transform:matrix(0.324326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324326,0.000000,0.000000,0.250000,0,0);}
.m9e_c00065{transform:matrix(0.324528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324528,0.000000,0.000000,0.250000,0,0);}
.maf_c00065{transform:matrix(0.325237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325237,0.000000,0.000000,0.250000,0,0);}
.ma7_c00065{transform:matrix(0.325466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325466,0.000000,0.000000,0.250000,0,0);}
.m7b_c00065{transform:matrix(0.326320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326320,0.000000,0.000000,0.250000,0,0);}
.m6b_c00065{transform:matrix(0.326323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326323,0.000000,0.000000,0.250000,0,0);}
.md_c00065{transform:matrix(0.326452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326452,0.000000,0.000000,0.250000,0,0);}
.m99_c00065{transform:matrix(0.327125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327125,0.000000,0.000000,0.250000,0,0);}
.m69_c00065{transform:matrix(0.327244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327244,0.000000,0.000000,0.250000,0,0);}
.m42_c00065{transform:matrix(0.327993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327993,0.000000,0.000000,0.250000,0,0);}
.m28_c00065{transform:matrix(0.329103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329103,0.000000,0.000000,0.250000,0,0);}
.m5e_c00065{transform:matrix(0.329207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329207,0.000000,0.000000,0.250000,0,0);}
.m9f_c00065{transform:matrix(0.329723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329723,0.000000,0.000000,0.250000,0,0);}
.m4_c00065{transform:matrix(0.329870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329870,0.000000,0.000000,0.250000,0,0);}
.m2d_c00065{transform:matrix(0.330109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330109,0.000000,0.000000,0.250000,0,0);}
.m44_c00065{transform:matrix(0.330245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330245,0.000000,0.000000,0.250000,0,0);}
.m66_c00065{transform:matrix(0.330261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330261,0.000000,0.000000,0.250000,0,0);}
.m4a_c00065{transform:matrix(0.331144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331144,0.000000,0.000000,0.250000,0,0);}
.m86_c00065{transform:matrix(0.331647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331647,0.000000,0.000000,0.250000,0,0);}
.m2b_c00065{transform:matrix(0.332642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332642,0.000000,0.000000,0.250000,0,0);}
.mb0_c00065{transform:matrix(0.333683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333683,0.000000,0.000000,0.250000,0,0);}
.m3c_c00065{transform:matrix(0.333798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333798,0.000000,0.000000,0.250000,0,0);}
.m79_c00065{transform:matrix(0.334124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334124,0.000000,0.000000,0.250000,0,0);}
.mb8_c00065{transform:matrix(0.335337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335337,0.000000,0.000000,0.250000,0,0);}
.m98_c00065{transform:matrix(0.335641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335641,0.000000,0.000000,0.250000,0,0);}
.m3f_c00065{transform:matrix(0.336711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336711,0.000000,0.000000,0.250000,0,0);}
.maa_c00065{transform:matrix(0.337473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337473,0.000000,0.000000,0.250000,0,0);}
.m53_c00065{transform:matrix(0.338785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338785,0.000000,0.000000,0.250000,0,0);}
.m3e_c00065{transform:matrix(0.339286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339286,0.000000,0.000000,0.250000,0,0);}
.m62_c00065{transform:matrix(0.339853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339853,0.000000,0.000000,0.250000,0,0);}
.m3b_c00065{transform:matrix(0.341856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341856,0.000000,0.000000,0.250000,0,0);}
.m29_c00065{transform:matrix(0.348072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348072,0.000000,0.000000,0.250000,0,0);}
.m12_c00065{transform:matrix(0.350027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350027,0.000000,0.000000,0.250000,0,0);}
.m4e_c00065{transform:matrix(0.351278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351278,0.000000,0.000000,0.250000,0,0);}
.m71_c00065{transform:matrix(0.352246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352246,0.000000,0.000000,0.250000,0,0);}
.m9b_c00065{transform:matrix(0.352277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352277,0.000000,0.000000,0.250000,0,0);}
.m88_c00065{transform:matrix(0.352309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352309,0.000000,0.000000,0.250000,0,0);}
.m31_c00065{transform:matrix(0.354288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354288,0.000000,0.000000,0.250000,0,0);}
.m8_c00065{transform:matrix(0.358352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358352,0.000000,0.000000,0.250000,0,0);}
.m51_c00065{transform:matrix(0.358859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358859,0.000000,0.000000,0.250000,0,0);}
.m59_c00065{transform:matrix(0.358986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358986,0.000000,0.000000,0.250000,0,0);}
.m5f_c00065{transform:matrix(0.364530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364530,0.000000,0.000000,0.250000,0,0);}
.m60_c00065{transform:matrix(0.365651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365651,0.000000,0.000000,0.250000,0,0);}
.mc_c00065{transform:matrix(0.370709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370709,0.000000,0.000000,0.250000,0,0);}
.m70_c00065{transform:matrix(0.376887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376887,0.000000,0.000000,0.250000,0,0);}
.m8c_c00065{transform:matrix(0.428563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428563,0.000000,0.000000,0.250000,0,0);}
.v3_c00065{vertical-align:-12.830400px;}
.v2_c00065{vertical-align:-1.451340px;}
.v0_c00065{vertical-align:0.000000px;}
.v1_c00065{vertical-align:8.553600px;}
.ls8_c00065{letter-spacing:-2.674980px;}
.lsa_c00065{letter-spacing:-0.924779px;}
.ls14_c00065{letter-spacing:-0.893970px;}
.lsf_c00065{letter-spacing:-0.221641px;}
.ls2_c00065{letter-spacing:0.000000px;}
.lse_c00065{letter-spacing:0.030571px;}
.ls10_c00065{letter-spacing:1.314562px;}
.lsc_c00065{letter-spacing:1.413918px;}
.ls6_c00065{letter-spacing:2.117056px;}
.ls9_c00065{letter-spacing:2.285197px;}
.ls1_c00065{letter-spacing:2.942478px;}
.ls7_c00065{letter-spacing:3.227400px;}
.ls12_c00065{letter-spacing:3.255833px;}
.lsb_c00065{letter-spacing:3.643200px;}
.lsd_c00065{letter-spacing:3.722400px;}
.ls4_c00065{letter-spacing:3.821400px;}
.ls3_c00065{letter-spacing:4.197610px;}
.ls0_c00065{letter-spacing:6.037812px;}
.ls11_c00065{letter-spacing:9.979398px;}
.ls13_c00065{letter-spacing:52.747398px;}
.ls5_c00065{letter-spacing:58.449798px;}
.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:-22.049478px;}
.ws1_c00065{word-spacing:-19.107000px;}
.ws2_c00065{word-spacing:-18.885359px;}
.ws3_c00065{word-spacing:0.000000px;}
._4_c00065{width:4.050684px;}
._6_c00065{width:7.314160px;}
._5_c00065{width:10.165320px;}
._1_c00065{width:13.374900px;}
._7_c00065{width:20.734916px;}
._9_c00065{width:24.303708px;}
._8_c00065{width:32.634756px;}
._a_c00065{width:37.583568px;}
._2_c00065{width:43.181820px;}
._0_c00065{width:331.642872px;}
._3_c00065{width:1791.856440px;}
.fc0_c00065{color:transparent;}
.fsf_c00065{font-size:9.979398px;}
.fsd_c00065{font-size:20.592000px;}
.fs0_c00065{font-size:22.176000px;}
.fsa_c00065{font-size:22.374000px;}
.fs12_c00065{font-size:25.542000px;}
.fs11_c00065{font-size:26.928000px;}
.fsb_c00065{font-size:27.720000px;}
.fs14_c00065{font-size:33.264000px;}
.fs13_c00065{font-size:39.204000px;}
.fs10_c00065{font-size:52.747398px;}
.fs4_c00065{font-size:58.449798px;}
.fs5_c00065{font-size:60.192000px;}
.fs6_c00065{font-size:64.548000px;}
.fsc_c00065{font-size:68.112198px;}
.fs7_c00065{font-size:70.884000px;}
.fs8_c00065{font-size:72.864000px;}
.fse_c00065{font-size:74.448000px;}
.fs3_c00065{font-size:76.428000px;}
.fs1_c00065{font-size:77.022198px;}
.fs9_c00065{font-size:78.804000px;}
.fs2_c00065{font-size:83.952198px;}
.y0_c00065{bottom:0.000000px;}
.y27_c00065{bottom:14.519385px;}
.y26_c00065{bottom:21.652335px;}
.y1_c00065{bottom:76.500000px;}
.y25_c00065{bottom:85.804335px;}
.y28_c00065{bottom:98.634735px;}
.y24_c00065{bottom:120.731535px;}
.y23_c00065{bottom:148.882185px;}
.y22_c00065{bottom:180.963135px;}
.y21_c00065{bottom:215.177535px;}
.y20_c00065{bottom:247.609935px;}
.y1f_c00065{bottom:275.760585px;}
.y1e_c00065{bottom:280.042335px;}
.y1d_c00065{bottom:312.469785px;}
.y1c_c00065{bottom:344.189385px;}
.y1a_c00065{bottom:345.263535px;}
.y1b_c00065{bottom:354.529935px;}
.y19_c00065{bottom:377.339535px;}
.y18_c00065{bottom:409.766985px;}
.y17_c00065{bottom:442.912185px;}
.y16_c00065{bottom:475.700985px;}
.y15_c00065{bottom:507.776985px;}
.y14_c00065{bottom:540.565785px;}
.y13_c00065{bottom:572.998185px;}
.y12_c00065{bottom:609.355935px;}
.y11_c00065{bottom:622.181385px;}
.y10_c00065{bottom:638.219385px;}
.yf_c00065{bottom:650.336985px;}
.ye_c00065{bottom:670.300335px;}
.yd_c00065{bottom:703.089135px;}
.yc_c00065{bottom:736.585785px;}
.yb_c00065{bottom:769.018185px;}
.ya_c00065{bottom:801.450585px;}
.y9_c00065{bottom:833.531535px;}
.y8_c00065{bottom:867.028185px;}
.y7_c00065{bottom:894.475935px;}
.y6_c00065{bottom:901.242585px;}
.y5_c00065{bottom:901.598985px;}
.y4_c00065{bottom:934.031385px;}
.y3_c00065{bottom:1082.650185px;}
.y2_c00065{bottom:1095.480585px;}
.hf_c00065{height:6.646279px;}
.hd_c00065{height:21.476813px;}
.hb_c00065{height:21.958857px;}
.h15_c00065{height:23.128875px;}
.h12_c00065{height:26.639508px;}
.h11_c00065{height:28.085063px;}
.h14_c00065{height:34.693313px;}
.h10_c00065{height:35.129767px;}
.h13_c00065{height:38.476582px;}
.h5_c00065{height:38.927565px;}
.hc_c00065{height:58.208494px;}
.h6_c00065{height:62.778375px;}
.h7_c00065{height:67.321547px;}
.h8_c00065{height:69.568770px;}
.h9_c00065{height:71.512031px;}
.he_c00065{height:73.066641px;}
.h4_c00065{height:75.009902px;}
.ha_c00065{height:77.341816px;}
.h3_c00065{height:82.394491px;}
.h2_c00065{height:88.885346px;}
.h1_c00065{height:1110.000000px;}
.h0_c00065{height:1263.000000px;}
.w1_c00065{width:733.500000px;}
.w0_c00065{width:892.500000px;}
.x0_c00065{left:0.000000px;}
.x3e_c00065{left:49.860885px;}
.x2d_c00065{left:50.944935px;}
.xf_c00065{left:52.563585px;}
.x4a_c00065{left:62.864535px;}
.x40_c00065{left:73.754535px;}
.x1_c00065{left:79.500000px;}
.x10_c00065{left:84.941535px;}
.x63_c00065{left:95.910735px;}
.x4b_c00065{left:96.940335px;}
.x42_c00065{left:105.469185px;}
.x5_c00065{left:106.830435px;}
.x45_c00065{left:108.152085px;}
.x11_c00065{left:117.146235px;}
.x2e_c00065{left:118.438185px;}
.x54_c00065{left:127.244235px;}
.x43_c00065{left:128.348085px;}
.x18_c00065{left:129.531135px;}
.x5c_c00065{left:139.876635px;}
.x3a_c00065{left:150.340935px;}
.x65_c00065{left:151.969485px;}
.x20_c00065{left:161.844735px;}
.x6_c00065{left:163.720785px;}
.x4e_c00065{left:171.388335px;}
.x49_c00065{left:172.660485px;}
.x5d_c00065{left:174.031635px;}
.x28_c00065{left:183.698985px;}
.x59_c00065{left:195.628485px;}
.x7_c00065{left:197.182785px;}
.x21_c00065{left:206.869935px;}
.x41_c00065{left:214.814685px;}
.x4c_c00065{left:216.294735px;}
.x12_c00065{left:217.938135px;}
.x2f_c00065{left:229.328085px;}
.x19_c00065{left:240.386385px;}
.x8_c00065{left:250.558635px;}
.x44_c00065{left:251.612985px;}
.x35_c00065{left:260.894235px;}
.x30_c00065{left:262.290135px;}
.x1a_c00065{left:271.907985px;}
.x64_c00065{left:273.516735px;}
.x4f_c00065{left:282.901935px;}
.x22_c00065{left:283.941435px;}
.x36_c00065{left:293.994885px;}
.x9_c00065{left:295.430385px;}
.x1b_c00065{left:306.538185px;}
.x1c_c00065{left:318.239985px;}
.x3b_c00065{left:328.991385px;}
.x56_c00065{left:339.257685px;}
.x31_c00065{left:340.435785px;}
.x46_c00065{left:351.568335px;}
.x23_c00065{left:361.879185px;}
.x1d_c00065{left:362.908785px;}
.x32_c00065{left:372.407835px;}
.x4d_c00065{left:373.541385px;}
.x37_c00065{left:383.812635px;}
.x61_c00065{left:392.980035px;}
.x50_c00065{left:394.326435px;}
.x13_c00065{left:395.415435px;}
.x5e_c00065{left:405.884685px;}
.xa_c00065{left:407.052885px;}
.x29_c00065{left:417.329085px;}
.x14_c00065{left:427.580535px;}
.x24_c00065{left:429.817935px;}
.x33_c00065{left:438.975435px;}
.x2a_c00065{left:440.232735px;}
.x3c_c00065{left:441.356385px;}
.x25_c00065{left:450.266385px;}
.x47_c00065{left:451.696935px;}
.x55_c00065{left:461.349435px;}
.x2b_c00065{left:473.085885px;}
.x5f_c00065{left:483.797685px;}
.x1e_c00065{left:484.837185px;}
.x38_c00065{left:494.865885px;}
.x51_c00065{left:497.598285px;}
.x39_c00065{left:505.028235px;}
.x3d_c00065{left:506.894385px;}
.xb_c00065{left:517.304235px;}
.x66_c00065{left:527.090385px;}
.x60_c00065{left:538.460535px;}
.xc_c00065{left:539.717835px;}
.x1f_c00065{left:550.256385px;}
.x26_c00065{left:561.136485px;}
.x15_c00065{left:571.279035px;}
.xd_c00065{left:572.541285px;}
.x2c_c00065{left:583.233285px;}
.x5a_c00065{left:584.238135px;}
.x2_c00065{left:587.990235px;}
.x57_c00065{left:594.944985px;}
.x27_c00065{left:604.424235px;}
.xe_c00065{left:606.117135px;}
.x16_c00065{left:616.868535px;}
.x3_c00065{left:628.075335px;}
.x67_c00065{left:629.134635px;}
.x17_c00065{left:639.257385px;}
.x5b_c00065{left:642.247185px;}
.x48_c00065{left:649.310835px;}
.x34_c00065{left:650.325585px;}
.x52_c00065{left:661.289835px;}
.x4_c00065{left:665.878485px;}
.x3f_c00065{left:667.818885px;}
.x68_c00065{left:669.204885px;}
.x58_c00065{left:672.263985px;}
.x53_c00065{left:683.361885px;}
.x62_c00065{left:696.563535px;}
.x69_c00065{left:724.847835px;}
@media print{
.v3_c00065{vertical-align:-11.404800pt;}
.v2_c00065{vertical-align:-1.290080pt;}
.v0_c00065{vertical-align:0.000000pt;}
.v1_c00065{vertical-align:7.603200pt;}
.ls8_c00065{letter-spacing:-2.377760pt;}
.lsa_c00065{letter-spacing:-0.822026pt;}
.ls14_c00065{letter-spacing:-0.794640pt;}
.lsf_c00065{letter-spacing:-0.197014pt;}
.ls2_c00065{letter-spacing:0.000000pt;}
.lse_c00065{letter-spacing:0.027174pt;}
.ls10_c00065{letter-spacing:1.168499pt;}
.lsc_c00065{letter-spacing:1.256816pt;}
.ls6_c00065{letter-spacing:1.881827pt;}
.ls9_c00065{letter-spacing:2.031286pt;}
.ls1_c00065{letter-spacing:2.615536pt;}
.ls7_c00065{letter-spacing:2.868800pt;}
.ls12_c00065{letter-spacing:2.894074pt;}
.lsb_c00065{letter-spacing:3.238400pt;}
.lsd_c00065{letter-spacing:3.308800pt;}
.ls4_c00065{letter-spacing:3.396800pt;}
.ls3_c00065{letter-spacing:3.731209pt;}
.ls0_c00065{letter-spacing:5.366944pt;}
.ls11_c00065{letter-spacing:8.870576pt;}
.ls13_c00065{letter-spacing:46.886576pt;}
.ls5_c00065{letter-spacing:51.955376pt;}
.ws0_c00065{word-spacing:-19.599536pt;}
.ws1_c00065{word-spacing:-16.984000pt;}
.ws2_c00065{word-spacing:-16.786986pt;}
.ws3_c00065{word-spacing:0.000000pt;}
._4_c00065{width:3.600608pt;}
._6_c00065{width:6.501475pt;}
._5_c00065{width:9.035840pt;}
._1_c00065{width:11.888800pt;}
._7_c00065{width:18.431037pt;}
._9_c00065{width:21.603296pt;}
._8_c00065{width:29.008672pt;}
._a_c00065{width:33.407616pt;}
._2_c00065{width:38.383840pt;}
._0_c00065{width:294.793664pt;}
._3_c00065{width:1592.761280pt;}
.fsf_c00065{font-size:8.870576pt;}
.fsd_c00065{font-size:18.304000pt;}
.fs0_c00065{font-size:19.712000pt;}
.fsa_c00065{font-size:19.888000pt;}
.fs12_c00065{font-size:22.704000pt;}
.fs11_c00065{font-size:23.936000pt;}
.fsb_c00065{font-size:24.640000pt;}
.fs14_c00065{font-size:29.568000pt;}
.fs13_c00065{font-size:34.848000pt;}
.fs10_c00065{font-size:46.886576pt;}
.fs4_c00065{font-size:51.955376pt;}
.fs5_c00065{font-size:53.504000pt;}
.fs6_c00065{font-size:57.376000pt;}
.fsc_c00065{font-size:60.544176pt;}
.fs7_c00065{font-size:63.008000pt;}
.fs8_c00065{font-size:64.768000pt;}
.fse_c00065{font-size:66.176000pt;}
.fs3_c00065{font-size:67.936000pt;}
.fs1_c00065{font-size:68.464176pt;}
.fs9_c00065{font-size:70.048000pt;}
.fs2_c00065{font-size:74.624176pt;}
.y0_c00065{bottom:0.000000pt;}
.y27_c00065{bottom:12.906120pt;}
.y26_c00065{bottom:19.246520pt;}
.y1_c00065{bottom:68.000000pt;}
.y25_c00065{bottom:76.270520pt;}
.y28_c00065{bottom:87.675320pt;}
.y24_c00065{bottom:107.316920pt;}
.y23_c00065{bottom:132.339720pt;}
.y22_c00065{bottom:160.856120pt;}
.y21_c00065{bottom:191.268920pt;}
.y20_c00065{bottom:220.097720pt;}
.y1f_c00065{bottom:245.120520pt;}
.y1e_c00065{bottom:248.926520pt;}
.y1d_c00065{bottom:277.750920pt;}
.y1c_c00065{bottom:305.946120pt;}
.y1a_c00065{bottom:306.900920pt;}
.y1b_c00065{bottom:315.137720pt;}
.y19_c00065{bottom:335.412920pt;}
.y18_c00065{bottom:364.237320pt;}
.y17_c00065{bottom:393.699720pt;}
.y16_c00065{bottom:422.845320pt;}
.y15_c00065{bottom:451.357320pt;}
.y14_c00065{bottom:480.502920pt;}
.y13_c00065{bottom:509.331720pt;}
.y12_c00065{bottom:541.649720pt;}
.y11_c00065{bottom:553.050120pt;}
.y10_c00065{bottom:567.306120pt;}
.yf_c00065{bottom:578.077320pt;}
.ye_c00065{bottom:595.822520pt;}
.yd_c00065{bottom:624.968120pt;}
.yc_c00065{bottom:654.742920pt;}
.yb_c00065{bottom:683.571720pt;}
.ya_c00065{bottom:712.400520pt;}
.y9_c00065{bottom:740.916920pt;}
.y8_c00065{bottom:770.691720pt;}
.y7_c00065{bottom:795.089720pt;}
.y6_c00065{bottom:801.104520pt;}
.y5_c00065{bottom:801.421320pt;}
.y4_c00065{bottom:830.250120pt;}
.y3_c00065{bottom:962.355720pt;}
.y2_c00065{bottom:973.760520pt;}
.hf_c00065{height:5.907804pt;}
.hd_c00065{height:19.090500pt;}
.hb_c00065{height:19.518984pt;}
.h15_c00065{height:20.559000pt;}
.h12_c00065{height:23.679563pt;}
.h11_c00065{height:24.964500pt;}
.h14_c00065{height:30.838500pt;}
.h10_c00065{height:31.226460pt;}
.h13_c00065{height:34.201406pt;}
.h5_c00065{height:34.602280pt;}
.hc_c00065{height:51.740884pt;}
.h6_c00065{height:55.803000pt;}
.h7_c00065{height:59.841375pt;}
.h8_c00065{height:61.838906pt;}
.h9_c00065{height:63.566250pt;}
.he_c00065{height:64.948125pt;}
.h4_c00065{height:66.675469pt;}
.ha_c00065{height:68.748281pt;}
.h3_c00065{height:73.239548pt;}
.h2_c00065{height:79.009196pt;}
.h1_c00065{height:986.666667pt;}
.h0_c00065{height:1122.666667pt;}
.w1_c00065{width:652.000000pt;}
.w0_c00065{width:793.333333pt;}
.x0_c00065{left:0.000000pt;}
.x3e_c00065{left:44.320787pt;}
.x2d_c00065{left:45.284387pt;}
.xf_c00065{left:46.723187pt;}
.x4a_c00065{left:55.879587pt;}
.x40_c00065{left:65.559587pt;}
.x1_c00065{left:70.666667pt;}
.x10_c00065{left:75.503587pt;}
.x63_c00065{left:85.253987pt;}
.x4b_c00065{left:86.169187pt;}
.x42_c00065{left:93.750387pt;}
.x5_c00065{left:94.960387pt;}
.x45_c00065{left:96.135187pt;}
.x11_c00065{left:104.129987pt;}
.x2e_c00065{left:105.278387pt;}
.x54_c00065{left:113.105987pt;}
.x43_c00065{left:114.087187pt;}
.x18_c00065{left:115.138787pt;}
.x5c_c00065{left:124.334787pt;}
.x3a_c00065{left:133.636387pt;}
.x65_c00065{left:135.083987pt;}
.x20_c00065{left:143.861987pt;}
.x6_c00065{left:145.529587pt;}
.x4e_c00065{left:152.345187pt;}
.x49_c00065{left:153.475987pt;}
.x5d_c00065{left:154.694787pt;}
.x28_c00065{left:163.287987pt;}
.x59_c00065{left:173.891987pt;}
.x7_c00065{left:175.273587pt;}
.x21_c00065{left:183.884387pt;}
.x41_c00065{left:190.946387pt;}
.x4c_c00065{left:192.261987pt;}
.x12_c00065{left:193.722787pt;}
.x2f_c00065{left:203.847187pt;}
.x19_c00065{left:213.676787pt;}
.x8_c00065{left:222.718787pt;}
.x44_c00065{left:223.655987pt;}
.x35_c00065{left:231.905987pt;}
.x30_c00065{left:233.146787pt;}
.x1a_c00065{left:241.695987pt;}
.x64_c00065{left:243.125987pt;}
.x4f_c00065{left:251.468387pt;}
.x22_c00065{left:252.392387pt;}
.x36_c00065{left:261.328787pt;}
.x9_c00065{left:262.604787pt;}
.x1b_c00065{left:272.478387pt;}
.x1c_c00065{left:282.879987pt;}
.x3b_c00065{left:292.436787pt;}
.x56_c00065{left:301.562387pt;}
.x31_c00065{left:302.609587pt;}
.x46_c00065{left:312.505187pt;}
.x23_c00065{left:321.670387pt;}
.x1d_c00065{left:322.585587pt;}
.x32_c00065{left:331.029187pt;}
.x4d_c00065{left:332.036787pt;}
.x37_c00065{left:341.166787pt;}
.x61_c00065{left:349.315587pt;}
.x50_c00065{left:350.512387pt;}
.x13_c00065{left:351.480387pt;}
.x5e_c00065{left:360.786387pt;}
.xa_c00065{left:361.824787pt;}
.x29_c00065{left:370.959187pt;}
.x14_c00065{left:380.071587pt;}
.x24_c00065{left:382.060387pt;}
.x33_c00065{left:390.200387pt;}
.x2a_c00065{left:391.317987pt;}
.x3c_c00065{left:392.316787pt;}
.x25_c00065{left:400.236787pt;}
.x47_c00065{left:401.508387pt;}
.x55_c00065{left:410.088387pt;}
.x2b_c00065{left:420.520787pt;}
.x5f_c00065{left:430.042387pt;}
.x1e_c00065{left:430.966387pt;}
.x38_c00065{left:439.880787pt;}
.x51_c00065{left:442.309587pt;}
.x39_c00065{left:448.913987pt;}
.x3d_c00065{left:450.572787pt;}
.xb_c00065{left:459.825987pt;}
.x66_c00065{left:468.524787pt;}
.x60_c00065{left:478.631587pt;}
.xc_c00065{left:479.749187pt;}
.x1f_c00065{left:489.116787pt;}
.x26_c00065{left:498.787987pt;}
.x15_c00065{left:507.803587pt;}
.xd_c00065{left:508.925587pt;}
.x2c_c00065{left:518.429587pt;}
.x5a_c00065{left:519.322787pt;}
.x2_c00065{left:522.657987pt;}
.x57_c00065{left:528.839987pt;}
.x27_c00065{left:537.265987pt;}
.xe_c00065{left:538.770787pt;}
.x16_c00065{left:548.327587pt;}
.x3_c00065{left:558.289187pt;}
.x67_c00065{left:559.230787pt;}
.x17_c00065{left:568.228787pt;}
.x5b_c00065{left:570.886387pt;}
.x48_c00065{left:577.165187pt;}
.x34_c00065{left:578.067187pt;}
.x52_c00065{left:587.813187pt;}
.x4_c00065{left:591.891987pt;}
.x3f_c00065{left:593.616787pt;}
.x68_c00065{left:594.848787pt;}
.x58_c00065{left:597.567987pt;}
.x53_c00065{left:607.432787pt;}
.x62_c00065{left:619.167587pt;}
.x69_c00065{left:644.309187pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fe86e08d8dc1d58af2a28aba.woff2')format("woff");}.ff1_c00066{font-family:ff1_c00066;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00066;src:url('chunks/assets/font_eebd2958b65bfadaa235097c.woff2')format("woff");}.ff2_c00066{font-family:ff2_c00066;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00066;src:url('chunks/assets/font_334c355002a7910a93d875a1.woff2')format("woff");}.ff3_c00066{font-family:ff3_c00066;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00066;src:url('chunks/assets/font_333365292cca1fe2da54b396.woff2')format("woff");}.ff4_c00066{font-family:ff4_c00066;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00066;src:url('chunks/assets/font_d8c49e9289663e046d62435d.woff2')format("woff");}.ff5_c00066{font-family:ff5_c00066;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m75_c00066{transform:matrix(0.077703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077703,0.000000,0.000000,0.250000,0,0);}
.m76_c00066{transform:matrix(0.087838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087838,0.000000,0.000000,0.250000,0,0);}
.m50_c00066{transform:matrix(0.096850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096850,0.000000,0.000000,0.250000,0,0);}
.m53_c00066{transform:matrix(0.124359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124359,0.000000,0.000000,0.250000,0,0);}
.m5f_c00066{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);}
.m51_c00066{transform:matrix(0.135897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135897,0.000000,0.000000,0.250000,0,0);}
.m5d_c00066{transform:matrix(0.151316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151316,0.000000,0.000000,0.250000,0,0);}
.m4e_c00066{transform:matrix(0.153277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153277,0.000000,0.000000,0.250000,0,0);}
.m29_c00066{transform:matrix(0.157986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157986,0.000000,0.000000,0.250000,0,0);}
.m41_c00066{transform:matrix(0.159524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159524,0.000000,0.000000,0.250000,0,0);}
.m4f_c00066{transform:matrix(0.160790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160790,0.000000,0.000000,0.250000,0,0);}
.m63_c00066{transform:matrix(0.171992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171992,0.000000,0.000000,0.250000,0,0);}
.m77_c00066{transform:matrix(0.175676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175676,0.000000,0.000000,0.250000,0,0);}
.m3e_c00066{transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);}
.m71_c00066{transform:matrix(0.187687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187687,0.000000,0.000000,0.250000,0,0);}
.m5e_c00066{transform:matrix(0.197368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197368,0.000000,0.000000,0.250000,0,0);}
.m61_c00066{transform:matrix(0.198715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198715,0.000000,0.000000,0.250000,0,0);}
.m34_c00066{transform:matrix(0.211806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211806,0.000000,0.000000,0.250000,0,0);}
.m6b_c00066{transform:matrix(0.213653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213653,0.000000,0.000000,0.250000,0,0);}
.ma8_c00066{transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);}
.m47_c00066{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.mab_c00066{transform:matrix(0.235475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235475,0.000000,0.000000,0.250000,0,0);}
.m1f_c00066{transform:matrix(0.238513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238513,0.000000,0.000000,0.250000,0,0);}
.m89_c00066{transform:matrix(0.241863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241863,0.000000,0.000000,0.250000,0,0);}
.m40_c00066{transform:matrix(0.249795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249795,0.000000,0.000000,0.250000,0,0);}
.m0_c00066{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m83_c00066{transform:matrix(0.250712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250712,0.000000,0.000000,0.250000,0,0);}
.m94_c00066{transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);}
.m42_c00066{transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);}
.m36_c00066{transform:matrix(0.252900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252900,0.000000,0.000000,0.250000,0,0);}
.m8d_c00066{transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);}
.m99_c00066{transform:matrix(0.254891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254891,0.000000,0.000000,0.250000,0,0);}
.ma7_c00066{transform:matrix(0.257965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257965,0.000000,0.000000,0.250000,0,0);}
.m8e_c00066{transform:matrix(0.257987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257987,0.000000,0.000000,0.250000,0,0);}
.mc_c00066{transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);}
.m38_c00066{transform:matrix(0.258620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258620,0.000000,0.000000,0.250000,0,0);}
.m28_c00066{transform:matrix(0.258745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258745,0.000000,0.000000,0.250000,0,0);}
.m27_c00066{transform:matrix(0.259016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259016,0.000000,0.000000,0.250000,0,0);}
.m73_c00066{transform:matrix(0.260579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260579,0.000000,0.000000,0.250000,0,0);}
.m9a_c00066{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m45_c00066{transform:matrix(0.261057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261057,0.000000,0.000000,0.250000,0,0);}
.m21_c00066{transform:matrix(0.261062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261062,0.000000,0.000000,0.250000,0,0);}
.m7f_c00066{transform:matrix(0.262691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262691,0.000000,0.000000,0.250000,0,0);}
.m6f_c00066{transform:matrix(0.262880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262880,0.000000,0.000000,0.250000,0,0);}
.m1d_c00066{transform:matrix(0.263297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263297,0.000000,0.000000,0.250000,0,0);}
.m13_c00066{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m97_c00066{transform:matrix(0.264839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264839,0.000000,0.000000,0.250000,0,0);}
.m3f_c00066{transform:matrix(0.265312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265312,0.000000,0.000000,0.250000,0,0);}
.mf_c00066{transform:matrix(0.265518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265518,0.000000,0.000000,0.250000,0,0);}
.m8c_c00066{transform:matrix(0.265591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265591,0.000000,0.000000,0.250000,0,0);}
.m69_c00066{transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);}
.md_c00066{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m15_c00066{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.m20_c00066{transform:matrix(0.267199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267199,0.000000,0.000000,0.250000,0,0);}
.m1_c00066{transform:matrix(0.267384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267384,0.000000,0.000000,0.250000,0,0);}
.m6e_c00066{transform:matrix(0.267869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267869,0.000000,0.000000,0.250000,0,0);}
.ma_c00066{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m7_c00066{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.m65_c00066{transform:matrix(0.268954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268954,0.000000,0.000000,0.250000,0,0);}
.m3b_c00066{transform:matrix(0.269104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269104,0.000000,0.000000,0.250000,0,0);}
.m32_c00066{transform:matrix(0.269355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269355,0.000000,0.000000,0.250000,0,0);}
.maf_c00066{transform:matrix(0.269912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269912,0.000000,0.000000,0.250000,0,0);}
.m31_c00066{transform:matrix(0.270598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270598,0.000000,0.000000,0.250000,0,0);}
.m4a_c00066{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m3c_c00066{transform:matrix(0.271371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271371,0.000000,0.000000,0.250000,0,0);}
.m35_c00066{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m8f_c00066{transform:matrix(0.272544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272544,0.000000,0.000000,0.250000,0,0);}
.m4d_c00066{transform:matrix(0.273568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273568,0.000000,0.000000,0.250000,0,0);}
.m59_c00066{transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);}
.m1b_c00066{transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);}
.m57_c00066{transform:matrix(0.274429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274429,0.000000,0.000000,0.250000,0,0);}
.m54_c00066{transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);}
.m3a_c00066{transform:matrix(0.277075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277075,0.000000,0.000000,0.250000,0,0);}
.ma3_c00066{transform:matrix(0.277092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277092,0.000000,0.000000,0.250000,0,0);}
.m24_c00066{transform:matrix(0.277247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277247,0.000000,0.000000,0.250000,0,0);}
.m48_c00066{transform:matrix(0.277377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277377,0.000000,0.000000,0.250000,0,0);}
.m25_c00066{transform:matrix(0.279350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279350,0.000000,0.000000,0.250000,0,0);}
.m72_c00066{transform:matrix(0.279645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279645,0.000000,0.000000,0.250000,0,0);}
.m17_c00066{transform:matrix(0.279890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279890,0.000000,0.000000,0.250000,0,0);}
.m67_c00066{transform:matrix(0.280335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280335,0.000000,0.000000,0.250000,0,0);}
.m56_c00066{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.maa_c00066{transform:matrix(0.283330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283330,0.000000,0.000000,0.250000,0,0);}
.m9d_c00066{transform:matrix(0.283405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283405,0.000000,0.000000,0.250000,0,0);}
.ma4_c00066{transform:matrix(0.283609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283609,0.000000,0.000000,0.250000,0,0);}
.m3d_c00066{transform:matrix(0.284003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284003,0.000000,0.000000,0.250000,0,0);}
.mac_c00066{transform:matrix(0.284924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284924,0.000000,0.000000,0.250000,0,0);}
.m9f_c00066{transform:matrix(0.285020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285020,0.000000,0.000000,0.250000,0,0);}
.m96_c00066{transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);}
.m9b_c00066{transform:matrix(0.285961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285961,0.000000,0.000000,0.250000,0,0);}
.m80_c00066{transform:matrix(0.286111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286111,0.000000,0.000000,0.250000,0,0);}
.mae_c00066{transform:matrix(0.286150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286150,0.000000,0.000000,0.250000,0,0);}
.ma9_c00066{transform:matrix(0.286526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286526,0.000000,0.000000,0.250000,0,0);}
.m66_c00066{transform:matrix(0.286589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286589,0.000000,0.000000,0.250000,0,0);}
.m93_c00066{transform:matrix(0.286684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286684,0.000000,0.000000,0.250000,0,0);}
.ma5_c00066{transform:matrix(0.287348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287348,0.000000,0.000000,0.250000,0,0);}
.mad_c00066{transform:matrix(0.287977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287977,0.000000,0.000000,0.250000,0,0);}
.m2_c00066{transform:matrix(0.288522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288522,0.000000,0.000000,0.250000,0,0);}
.m12_c00066{transform:matrix(0.288623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288623,0.000000,0.000000,0.250000,0,0);}
.m6c_c00066{transform:matrix(0.288856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288856,0.000000,0.000000,0.250000,0,0);}
.m55_c00066{transform:matrix(0.289001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289001,0.000000,0.000000,0.250000,0,0);}
.m26_c00066{transform:matrix(0.289333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289333,0.000000,0.000000,0.250000,0,0);}
.m43_c00066{transform:matrix(0.289944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289944,0.000000,0.000000,0.250000,0,0);}
.ma0_c00066{transform:matrix(0.290364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290364,0.000000,0.000000,0.250000,0,0);}
.m5a_c00066{transform:matrix(0.290386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290386,0.000000,0.000000,0.250000,0,0);}
.ma6_c00066{transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);}
.m2e_c00066{transform:matrix(0.290530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290530,0.000000,0.000000,0.250000,0,0);}
.m9_c00066{transform:matrix(0.291316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291316,0.000000,0.000000,0.250000,0,0);}
.m7e_c00066{transform:matrix(0.291381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291381,0.000000,0.000000,0.250000,0,0);}
.m58_c00066{transform:matrix(0.293153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293153,0.000000,0.000000,0.250000,0,0);}
.m49_c00066{transform:matrix(0.293711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293711,0.000000,0.000000,0.250000,0,0);}
.m84_c00066{transform:matrix(0.293761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293761,0.000000,0.000000,0.250000,0,0);}
.m52_c00066{transform:matrix(0.295198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295198,0.000000,0.000000,0.250000,0,0);}
.m8b_c00066{transform:matrix(0.296922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296922,0.000000,0.000000,0.250000,0,0);}
.m79_c00066{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m85_c00066{transform:matrix(0.297845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297845,0.000000,0.000000,0.250000,0,0);}
.m22_c00066{transform:matrix(0.299238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299238,0.000000,0.000000,0.250000,0,0);}
.m5_c00066{transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);}
.m7b_c00066{transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);}
.m9c_c00066{transform:matrix(0.303527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303527,0.000000,0.000000,0.250000,0,0);}
.m16_c00066{transform:matrix(0.305115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305115,0.000000,0.000000,0.250000,0,0);}
.m78_c00066{transform:matrix(0.306004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306004,0.000000,0.000000,0.250000,0,0);}
.m86_c00066{transform:matrix(0.306342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306342,0.000000,0.000000,0.250000,0,0);}
.m39_c00066{transform:matrix(0.307871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307871,0.000000,0.000000,0.250000,0,0);}
.m4c_c00066{transform:matrix(0.308409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308409,0.000000,0.000000,0.250000,0,0);}
.m74_c00066{transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);}
.m60_c00066{transform:matrix(0.308989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308989,0.000000,0.000000,0.250000,0,0);}
.m23_c00066{transform:matrix(0.309393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309393,0.000000,0.000000,0.250000,0,0);}
.m7c_c00066{transform:matrix(0.309451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309451,0.000000,0.000000,0.250000,0,0);}
.ma1_c00066{transform:matrix(0.310446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310446,0.000000,0.000000,0.250000,0,0);}
.mb_c00066{transform:matrix(0.311679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311679,0.000000,0.000000,0.250000,0,0);}
.m7a_c00066{transform:matrix(0.311992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311992,0.000000,0.000000,0.250000,0,0);}
.m30_c00066{transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);}
.m68_c00066{transform:matrix(0.312292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312292,0.000000,0.000000,0.250000,0,0);}
.m44_c00066{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.m6_c00066{transform:matrix(0.312752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312752,0.000000,0.000000,0.250000,0,0);}
.m2f_c00066{transform:matrix(0.313595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313595,0.000000,0.000000,0.250000,0,0);}
.m46_c00066{transform:matrix(0.313805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313805,0.000000,0.000000,0.250000,0,0);}
.m1a_c00066{transform:matrix(0.314528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314528,0.000000,0.000000,0.250000,0,0);}
.m64_c00066{transform:matrix(0.315048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315048,0.000000,0.000000,0.250000,0,0);}
.mb0_c00066{transform:matrix(0.315674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315674,0.000000,0.000000,0.250000,0,0);}
.m4b_c00066{transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);}
.m62_c00066{transform:matrix(0.316737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316737,0.000000,0.000000,0.250000,0,0);}
.ma2_c00066{transform:matrix(0.316787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316787,0.000000,0.000000,0.250000,0,0);}
.m2a_c00066{transform:matrix(0.317873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317873,0.000000,0.000000,0.250000,0,0);}
.m18_c00066{transform:matrix(0.317996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317996,0.000000,0.000000,0.250000,0,0);}
.m87_c00066{transform:matrix(0.318152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318152,0.000000,0.000000,0.250000,0,0);}
.m10_c00066{transform:matrix(0.321395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321395,0.000000,0.000000,0.250000,0,0);}
.m92_c00066{transform:matrix(0.321436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321436,0.000000,0.000000,0.250000,0,0);}
.m95_c00066{transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);}
.m4_c00066{transform:matrix(0.322107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322107,0.000000,0.000000,0.250000,0,0);}
.m19_c00066{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.m2c_c00066{transform:matrix(0.323719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323719,0.000000,0.000000,0.250000,0,0);}
.m70_c00066{transform:matrix(0.323944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323944,0.000000,0.000000,0.250000,0,0);}
.m5c_c00066{transform:matrix(0.325222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325222,0.000000,0.000000,0.250000,0,0);}
.m2b_c00066{transform:matrix(0.325919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325919,0.000000,0.000000,0.250000,0,0);}
.m82_c00066{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m5b_c00066{transform:matrix(0.327720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327720,0.000000,0.000000,0.250000,0,0);}
.m11_c00066{transform:matrix(0.329576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329576,0.000000,0.000000,0.250000,0,0);}
.m88_c00066{transform:matrix(0.332422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332422,0.000000,0.000000,0.250000,0,0);}
.me_c00066{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m33_c00066{transform:matrix(0.333900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333900,0.000000,0.000000,0.250000,0,0);}
.m9e_c00066{transform:matrix(0.334910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334910,0.000000,0.000000,0.250000,0,0);}
.m1e_c00066{transform:matrix(0.336572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336572,0.000000,0.000000,0.250000,0,0);}
.m8a_c00066{transform:matrix(0.336939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336939,0.000000,0.000000,0.250000,0,0);}
.m91_c00066{transform:matrix(0.338655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338655,0.000000,0.000000,0.250000,0,0);}
.m7d_c00066{transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);}
.m6a_c00066{transform:matrix(0.343268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343268,0.000000,0.000000,0.250000,0,0);}
.m3_c00066{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.m8_c00066{transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);}
.m2d_c00066{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m81_c00066{transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);}
.m90_c00066{transform:matrix(0.350956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350956,0.000000,0.000000,0.250000,0,0);}
.m37_c00066{transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);}
.m14_c00066{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m1c_c00066{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m98_c00066{transform:matrix(0.375277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375277,0.000000,0.000000,0.250000,0,0);}
.m6d_c00066{transform:matrix(0.418923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418923,0.000000,0.000000,0.250000,0,0);}
.v0_c00066{vertical-align:0.000000px;}
.ls12_c00066{letter-spacing:-2.938327px;}
.ls9_c00066{letter-spacing:-2.744280px;}
.ls18_c00066{letter-spacing:-2.610986px;}
.lsc_c00066{letter-spacing:-1.897474px;}
.ls5_c00066{letter-spacing:-1.685772px;}
.lse_c00066{letter-spacing:-1.066349px;}
.lsb_c00066{letter-spacing:-0.673715px;}
.ls1d_c00066{letter-spacing:-0.519757px;}
.ls1c_c00066{letter-spacing:-0.423403px;}
.ls2_c00066{letter-spacing:0.000000px;}
.ls11_c00066{letter-spacing:0.269499px;}
.ls16_c00066{letter-spacing:0.470448px;}
.ls1_c00066{letter-spacing:0.541015px;}
.ls1e_c00066{letter-spacing:0.564300px;}
.ls6_c00066{letter-spacing:1.301573px;}
.ls0_c00066{letter-spacing:1.662250px;}
.lsa_c00066{letter-spacing:1.702810px;}
.ls1f_c00066{letter-spacing:2.360081px;}
.ls8_c00066{letter-spacing:2.485534px;}
.ls14_c00066{letter-spacing:2.634509px;}
.ls1b_c00066{letter-spacing:2.673713px;}
.ls1a_c00066{letter-spacing:3.144161px;}
.ls20_c00066{letter-spacing:3.183365px;}
.ls17_c00066{letter-spacing:3.227400px;}
.ls7_c00066{letter-spacing:3.880810px;}
.ls4_c00066{letter-spacing:3.920400px;}
.ls3_c00066{letter-spacing:4.257000px;}
.ls21_c00066{letter-spacing:49.896198px;}
.lsf_c00066{letter-spacing:51.321798px;}
.ls19_c00066{letter-spacing:52.747398px;}
.ls15_c00066{letter-spacing:54.172998px;}
.ls13_c00066{letter-spacing:55.598598px;}
.ls10_c00066{letter-spacing:59.875398px;}
.lsd_c00066{letter-spacing:68.428998px;}
.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;}
}
.ws2_c00066{word-spacing:-21.264250px;}
.ws3_c00066{word-spacing:-20.143015px;}
.ws1_c00066{word-spacing:-18.535651px;}
.ws0_c00066{word-spacing:-17.916228px;}
.ws4_c00066{word-spacing:0.000000px;}
._0_c00066{margin-left:-6.351048px;}
._a_c00066{margin-left:-2.917570px;}
._8_c00066{margin-left:-1.191802px;}
._b_c00066{width:5.755147px;}
._5_c00066{width:7.716011px;}
._6_c00066{width:12.421964px;}
._d_c00066{width:21.405384px;}
._4_c00066{width:26.231702px;}
._7_c00066{width:48.368108px;}
._9_c00066{width:91.635984px;}
._3_c00066{width:133.588521px;}
._2_c00066{width:285.654479px;}
._1_c00066{width:511.774065px;}
._c_c00066{width:1138.773121px;}
.fc0_c00066{color:transparent;}
.fs8_c00066{font-size:11.286000px;}
.fs15_c00066{font-size:14.652198px;}
.fs14_c00066{font-size:14.850198px;}
.fs6_c00066{font-size:21.186000px;}
.fs18_c00066{font-size:22.176000px;}
.fs9_c00066{font-size:26.928000px;}
.fs11_c00066{font-size:27.720000px;}
.fs19_c00066{font-size:33.264000px;}
.fs5_c00066{font-size:34.056198px;}
.fs4_c00066{font-size:38.016198px;}
.fs1a_c00066{font-size:39.204000px;}
.fs0_c00066{font-size:39.600000px;}
.fs17_c00066{font-size:49.896198px;}
.fsa_c00066{font-size:51.321798px;}
.fs12_c00066{font-size:52.747398px;}
.fsf_c00066{font-size:54.172998px;}
.fs16_c00066{font-size:54.450000px;}
.fse_c00066{font-size:55.598598px;}
.fsb_c00066{font-size:59.875398px;}
.fs10_c00066{font-size:64.548000px;}
.fs7_c00066{font-size:68.428998px;}
.fsc_c00066{font-size:69.102198px;}
.fs3_c00066{font-size:77.616198px;}
.fs2_c00066{font-size:78.408000px;}
.fsd_c00066{font-size:83.952198px;}
.fs1_c00066{font-size:85.140000px;}
.fs13_c00066{font-size:93.456198px;}
.y0_c00066{bottom:0.000000px;}
.y2b_c00066{bottom:51.228585px;}
.y2a_c00066{bottom:54.792585px;}
.y29_c00066{bottom:63.707535px;}
.y1_c00066{bottom:76.500000px;}
.y28_c00066{bottom:95.070735px;}
.y27_c00066{bottom:115.024185px;}
.y26_c00066{bottom:120.731535px;}
.y25_c00066{bottom:149.243535px;}
.y24_c00066{bottom:181.314585px;}
.y23_c00066{bottom:216.598185px;}
.y20_c00066{bottom:234.774585px;}
.y22_c00066{bottom:240.838335px;}
.y21_c00066{bottom:249.391935px;}
.y2_c00066{bottom:272.909385px;}
.y1f_c00066{bottom:280.398735px;}
.y1e_c00066{bottom:313.187535px;}
.y1d_c00066{bottom:345.614985px;}
.y1c_c00066{bottom:355.950585px;}
.y1a_c00066{bottom:367.711785px;}
.y1b_c00066{bottom:373.770585px;}
.y18_c00066{bottom:377.334585px;}
.y19_c00066{bottom:378.052335px;}
.y17_c00066{bottom:410.123385px;}
.y16_c00066{bottom:441.842985px;}
.y15_c00066{bottom:456.811785px;}
.y14_c00066{bottom:473.918985px;}
.y12_c00066{bottom:505.285155px;}
.y13_c00066{bottom:505.287135px;}
.y11_c00066{bottom:538.432335px;}
.y10_c00066{bottom:569.790585px;}
.yf_c00066{bottom:603.297135px;}
.ye_c00066{bottom:635.011785px;}
.yd_c00066{bottom:668.518335px;}
.yc_c00066{bottom:697.738185px;}
.yb_c00066{bottom:701.307135px;}
.ya_c00066{bottom:728.393535px;}
.y9_c00066{bottom:733.739535px;}
.y8_c00066{bottom:762.959385px;}
.y7_c00066{bottom:768.310335px;}
.y6_c00066{bottom:800.742735px;}
.y5_c00066{bottom:897.683535px;}
.y4_c00066{bottom:930.115935px;}
.y3_c00066{bottom:1079.086185px;}
.h16_c00066{height:11.770945px;}
.h14_c00066{height:14.574657px;}
.h17_c00066{height:14.766668px;}
.h15_c00066{height:14.966215px;}
.h18_c00066{height:22.096336px;}
.h1b_c00066{height:23.128875px;}
.h9_c00066{height:28.085063px;}
.h11_c00066{height:28.911094px;}
.h1a_c00066{height:33.230868px;}
.ha_c00066{height:34.180317px;}
.h1c_c00066{height:34.693313px;}
.h12_c00066{height:35.129767px;}
.h7_c00066{height:35.519550px;}
.hf_c00066{height:36.079217px;}
.he_c00066{height:37.028666px;}
.h6_c00066{height:37.310819px;}
.h1d_c00066{height:38.476582px;}
.hb_c00066{height:39.877015px;}
.h2_c00066{height:41.301563px;}
.h8_c00066{height:45.573713px;}
.h19_c00066{height:56.789648px;}
.h10_c00066{height:67.321547px;}
.hc_c00066{height:67.820028px;}
.h4_c00066{height:76.953164px;}
.h5_c00066{height:78.222575px;}
.hd_c00066{height:82.394491px;}
.h3_c00066{height:83.560254px;}
.h13_c00066{height:94.186325px;}
.h1_c00066{height:1110.000000px;}
.h0_c00066{height:1263.000000px;}
.w1_c00066{width:733.500000px;}
.w0_c00066{width:892.500000px;}
.x0_c00066{left:0.000000px;}
.x2_c00066{left:43.252635px;}
.x32_c00066{left:56.964135px;}
.x1d_c00066{left:58.211535px;}
.x4_c00066{left:59.305485px;}
.x27_c00066{left:60.661785px;}
.x1_c00066{left:79.500000px;}
.x38_c00066{left:90.673635px;}
.x5a_c00066{left:92.396235px;}
.x3e_c00066{left:102.098235px;}
.x13_c00066{left:112.859535px;}
.x63_c00066{left:114.537585px;}
.x65_c00066{left:116.284935px;}
.x5b_c00066{left:123.655485px;}
.x5_c00066{left:124.873185px;}
.x1e_c00066{left:135.921585px;}
.x33_c00066{left:146.143335px;}
.xf_c00066{left:147.336285px;}
.x6_c00066{left:157.533285px;}
.x45_c00066{left:166.448235px;}
.x1f_c00066{left:167.626335px;}
.x4b_c00066{left:179.283585px;}
.x10_c00066{left:180.422085px;}
.x14_c00066{left:190.430985px;}
.x20_c00066{left:201.162585px;}
.x46_c00066{left:203.657385px;}
.x11_c00066{left:211.671435px;}
.x2e_c00066{left:213.215835px;}
.x7_c00066{left:223.501935px;}
.x28_c00066{left:234.822585px;}
.x41_c00066{left:236.312535px;}
.x15_c00066{left:246.059085px;}
.x50_c00066{left:247.529235px;}
.x5d_c00066{left:249.816135px;}
.x39_c00066{left:258.166785px;}
.x47_c00066{left:268.532085px;}
.x12_c00066{left:278.669685px;}
.x8_c00066{left:280.228935px;}
.x3a_c00066{left:281.372385px;}
.x21_c00066{left:290.277435px;}
.x16_c00066{left:301.325835px;}
.x2f_c00066{left:311.884185px;}
.x29_c00066{left:323.783985px;}
.x17_c00066{left:334.782885px;}
.x60_c00066{left:344.648235px;}
.x3f_c00066{left:345.940185px;}
.x42_c00066{left:357.132135px;}
.x18_c00066{left:367.611285px;}
.x4c_c00066{left:368.690385px;}
.x2a_c00066{left:378.981435px;}
.x5c_c00066{left:380.382285px;}
.x9_c00066{left:390.772335px;}
.x51_c00066{left:392.588985px;}
.x3b_c00066{left:401.320785px;}
.x19_c00066{left:412.819635px;}
.x22_c00066{left:423.219585px;}
.x48_c00066{left:424.234335px;}
.x4d_c00066{left:433.396785px;}
.xa_c00066{left:434.881785px;}
.x34_c00066{left:444.083835px;}
.x54_c00066{left:446.365785px;}
.x23_c00066{left:456.528135px;}
.xb_c00066{left:466.492485px;}
.x58_c00066{left:467.962635px;}
.x24_c00066{left:478.813035px;}
.x1a_c00066{left:489.500085px;}
.x35_c00066{left:490.509885px;}
.x62_c00066{left:501.583035px;}
.x1b_c00066{left:511.552335px;}
.x4e_c00066{left:512.601735px;}
.x43_c00066{left:520.576185px;}
.xc_c00066{left:522.645285px;}
.x40_c00066{left:524.006535px;}
.x36_c00066{left:533.495685px;}
.x4f_c00066{left:543.539235px;}
.x59_c00066{left:545.113335px;}
.xd_c00066{left:555.740985px;}
.x55_c00066{left:564.200535px;}
.x3c_c00066{left:566.635935px;}
.x25_c00066{left:567.789285px;}
.x56_c00066{left:572.754135px;}
.x2b_c00066{left:577.709085px;}
.x57_c00066{left:579.169335px;}
.x1c_c00066{left:588.460485px;}
.x52_c00066{left:589.485135px;}
.x2c_c00066{left:600.340485px;}
.x49_c00066{left:602.563035px;}
.x5e_c00066{left:607.671435px;}
.x37_c00066{left:611.270085px;}
.x66_c00066{left:622.526385px;}
.x3_c00066{left:634.134135px;}
.x30_c00066{left:644.524185px;}
.x31_c00066{left:651.800685px;}
.x26_c00066{left:654.285585px;}
.xe_c00066{left:655.948785px;}
.x44_c00066{left:662.918385px;}
.x3d_c00066{left:666.239835px;}
.x5f_c00066{left:669.422685px;}
.x53_c00066{left:670.650285px;}
.x61_c00066{left:672.041235px;}
.x2d_c00066{left:675.862635px;}
.x64_c00066{left:686.381385px;}
.x4a_c00066{left:689.786985px;}
@media print{
.v0_c00066{vertical-align:0.000000pt;}
.ls12_c00066{letter-spacing:-2.611846pt;}
.ls9_c00066{letter-spacing:-2.439360pt;}
.ls18_c00066{letter-spacing:-2.320877pt;}
.lsc_c00066{letter-spacing:-1.686643pt;}
.ls5_c00066{letter-spacing:-1.498464pt;}
.lse_c00066{letter-spacing:-0.947866pt;}
.lsb_c00066{letter-spacing:-0.598858pt;}
.ls1d_c00066{letter-spacing:-0.462006pt;}
.ls1c_c00066{letter-spacing:-0.376358pt;}
.ls2_c00066{letter-spacing:0.000000pt;}
.ls11_c00066{letter-spacing:0.239554pt;}
.ls16_c00066{letter-spacing:0.418176pt;}
.ls1_c00066{letter-spacing:0.480902pt;}
.ls1e_c00066{letter-spacing:0.501600pt;}
.ls6_c00066{letter-spacing:1.156954pt;}
.ls0_c00066{letter-spacing:1.477555pt;}
.lsa_c00066{letter-spacing:1.513609pt;}
.ls1f_c00066{letter-spacing:2.097850pt;}
.ls8_c00066{letter-spacing:2.209363pt;}
.ls14_c00066{letter-spacing:2.341786pt;}
.ls1b_c00066{letter-spacing:2.376634pt;}
.ls1a_c00066{letter-spacing:2.794810pt;}
.ls20_c00066{letter-spacing:2.829658pt;}
.ls17_c00066{letter-spacing:2.868800pt;}
.ls7_c00066{letter-spacing:3.449609pt;}
.ls4_c00066{letter-spacing:3.484800pt;}
.ls3_c00066{letter-spacing:3.784000pt;}
.ls21_c00066{letter-spacing:44.352176pt;}
.lsf_c00066{letter-spacing:45.619376pt;}
.ls19_c00066{letter-spacing:46.886576pt;}
.ls15_c00066{letter-spacing:48.153776pt;}
.ls13_c00066{letter-spacing:49.420976pt;}
.ls10_c00066{letter-spacing:53.222576pt;}
.lsd_c00066{letter-spacing:60.825776pt;}
.ws2_c00066{word-spacing:-18.901555pt;}
.ws3_c00066{word-spacing:-17.904902pt;}
.ws1_c00066{word-spacing:-16.476134pt;}
.ws0_c00066{word-spacing:-15.925536pt;}
.ws4_c00066{word-spacing:0.000000pt;}
._0_c00066{margin-left:-5.645376pt;}
._a_c00066{margin-left:-2.593395pt;}
._8_c00066{margin-left:-1.059379pt;}
._b_c00066{width:5.115686pt;}
._5_c00066{width:6.858676pt;}
._6_c00066{width:11.041746pt;}
._d_c00066{width:19.027008pt;}
._4_c00066{width:23.317068pt;}
._7_c00066{width:42.993873pt;}
._9_c00066{width:81.454208pt;}
._3_c00066{width:118.745352pt;}
._2_c00066{width:253.915092pt;}
._1_c00066{width:454.910280pt;}
._c_c00066{width:1012.242774pt;}
.fs8_c00066{font-size:10.032000pt;}
.fs15_c00066{font-size:13.024176pt;}
.fs14_c00066{font-size:13.200176pt;}
.fs6_c00066{font-size:18.832000pt;}
.fs18_c00066{font-size:19.712000pt;}
.fs9_c00066{font-size:23.936000pt;}
.fs11_c00066{font-size:24.640000pt;}
.fs19_c00066{font-size:29.568000pt;}
.fs5_c00066{font-size:30.272176pt;}
.fs4_c00066{font-size:33.792176pt;}
.fs1a_c00066{font-size:34.848000pt;}
.fs0_c00066{font-size:35.200000pt;}
.fs17_c00066{font-size:44.352176pt;}
.fsa_c00066{font-size:45.619376pt;}
.fs12_c00066{font-size:46.886576pt;}
.fsf_c00066{font-size:48.153776pt;}
.fs16_c00066{font-size:48.400000pt;}
.fse_c00066{font-size:49.420976pt;}
.fsb_c00066{font-size:53.222576pt;}
.fs10_c00066{font-size:57.376000pt;}
.fs7_c00066{font-size:60.825776pt;}
.fsc_c00066{font-size:61.424176pt;}
.fs3_c00066{font-size:68.992176pt;}
.fs2_c00066{font-size:69.696000pt;}
.fsd_c00066{font-size:74.624176pt;}
.fs1_c00066{font-size:75.680000pt;}
.fs13_c00066{font-size:83.072176pt;}
.y0_c00066{bottom:0.000000pt;}
.y2b_c00066{bottom:45.536520pt;}
.y2a_c00066{bottom:48.704520pt;}
.y29_c00066{bottom:56.628920pt;}
.y1_c00066{bottom:68.000000pt;}
.y28_c00066{bottom:84.507320pt;}
.y27_c00066{bottom:102.243720pt;}
.y26_c00066{bottom:107.316920pt;}
.y25_c00066{bottom:132.660920pt;}
.y24_c00066{bottom:161.168520pt;}
.y23_c00066{bottom:192.531720pt;}
.y20_c00066{bottom:208.688520pt;}
.y22_c00066{bottom:214.078520pt;}
.y21_c00066{bottom:221.681720pt;}
.y2_c00066{bottom:242.586120pt;}
.y1f_c00066{bottom:249.243320pt;}
.y1e_c00066{bottom:278.388920pt;}
.y1d_c00066{bottom:307.213320pt;}
.y1c_c00066{bottom:316.400520pt;}
.y1a_c00066{bottom:326.854920pt;}
.y1b_c00066{bottom:332.240520pt;}
.y18_c00066{bottom:335.408520pt;}
.y19_c00066{bottom:336.046520pt;}
.y17_c00066{bottom:364.554120pt;}
.y16_c00066{bottom:392.749320pt;}
.y15_c00066{bottom:406.054920pt;}
.y14_c00066{bottom:421.261320pt;}
.y12_c00066{bottom:449.142360pt;}
.y13_c00066{bottom:449.144120pt;}
.y11_c00066{bottom:478.606520pt;}
.y10_c00066{bottom:506.480520pt;}
.yf_c00066{bottom:536.264120pt;}
.ye_c00066{bottom:564.454920pt;}
.yd_c00066{bottom:594.238520pt;}
.yc_c00066{bottom:620.211720pt;}
.yb_c00066{bottom:623.384120pt;}
.ya_c00066{bottom:647.460920pt;}
.y9_c00066{bottom:652.212920pt;}
.y8_c00066{bottom:678.186120pt;}
.y7_c00066{bottom:682.942520pt;}
.y6_c00066{bottom:711.771320pt;}
.y5_c00066{bottom:797.940920pt;}
.y4_c00066{bottom:826.769720pt;}
.y3_c00066{bottom:959.187720pt;}
.h16_c00066{height:10.463063pt;}
.h14_c00066{height:12.955251pt;}
.h17_c00066{height:13.125927pt;}
.h15_c00066{height:13.303302pt;}
.h18_c00066{height:19.641188pt;}
.h1b_c00066{height:20.559000pt;}
.h9_c00066{height:24.964500pt;}
.h11_c00066{height:25.698750pt;}
.h1a_c00066{height:29.538549pt;}
.ha_c00066{height:30.382504pt;}
.h1c_c00066{height:30.838500pt;}
.h12_c00066{height:31.226460pt;}
.h7_c00066{height:31.572934pt;}
.hf_c00066{height:32.070415pt;}
.he_c00066{height:32.914370pt;}
.h6_c00066{height:33.165173pt;}
.h1d_c00066{height:34.201406pt;}
.hb_c00066{height:35.446236pt;}
.h2_c00066{height:36.712500pt;}
.h8_c00066{height:40.509967pt;}
.h19_c00066{height:50.479688pt;}
.h10_c00066{height:59.841375pt;}
.hc_c00066{height:60.284470pt;}
.h4_c00066{height:68.402813pt;}
.h5_c00066{height:69.531177pt;}
.hd_c00066{height:73.239548pt;}
.h3_c00066{height:74.275781pt;}
.h13_c00066{height:83.721177pt;}
.h1_c00066{height:986.666667pt;}
.h0_c00066{height:1122.666667pt;}
.w1_c00066{width:652.000000pt;}
.w0_c00066{width:793.333333pt;}
.x0_c00066{left:0.000000pt;}
.x2_c00066{left:38.446787pt;}
.x32_c00066{left:50.634787pt;}
.x1d_c00066{left:51.743587pt;}
.x4_c00066{left:52.715987pt;}
.x27_c00066{left:53.921587pt;}
.x1_c00066{left:70.666667pt;}
.x38_c00066{left:80.598787pt;}
.x5a_c00066{left:82.129987pt;}
.x3e_c00066{left:90.753987pt;}
.x13_c00066{left:100.319587pt;}
.x63_c00066{left:101.811187pt;}
.x65_c00066{left:103.364387pt;}
.x5b_c00066{left:109.915987pt;}
.x5_c00066{left:110.998387pt;}
.x1e_c00066{left:120.819187pt;}
.x33_c00066{left:129.905187pt;}
.xf_c00066{left:130.965587pt;}
.x6_c00066{left:140.029587pt;}
.x45_c00066{left:147.953987pt;}
.x1f_c00066{left:149.001187pt;}
.x4b_c00066{left:159.363187pt;}
.x10_c00066{left:160.375187pt;}
.x14_c00066{left:169.271987pt;}
.x20_c00066{left:178.811187pt;}
.x46_c00066{left:181.028787pt;}
.x11_c00066{left:188.152387pt;}
.x2e_c00066{left:189.525187pt;}
.x7_c00066{left:198.668387pt;}
.x28_c00066{left:208.731187pt;}
.x41_c00066{left:210.055587pt;}
.x15_c00066{left:218.719187pt;}
.x50_c00066{left:220.025987pt;}
.x5d_c00066{left:222.058787pt;}
.x39_c00066{left:229.481587pt;}
.x47_c00066{left:238.695187pt;}
.x12_c00066{left:247.706387pt;}
.x8_c00066{left:249.092387pt;}
.x3a_c00066{left:250.108787pt;}
.x21_c00066{left:258.024387pt;}
.x16_c00066{left:267.845187pt;}
.x2f_c00066{left:277.230387pt;}
.x29_c00066{left:287.807987pt;}
.x17_c00066{left:297.584787pt;}
.x60_c00066{left:306.353987pt;}
.x3f_c00066{left:307.502387pt;}
.x42_c00066{left:317.450787pt;}
.x18_c00066{left:326.765587pt;}
.x4c_c00066{left:327.724787pt;}
.x2a_c00066{left:336.872387pt;}
.x5c_c00066{left:338.117587pt;}
.x9_c00066{left:347.353187pt;}
.x51_c00066{left:348.967987pt;}
.x3b_c00066{left:356.729587pt;}
.x19_c00066{left:366.950787pt;}
.x22_c00066{left:376.195187pt;}
.x48_c00066{left:377.097187pt;}
.x4d_c00066{left:385.241587pt;}
.xa_c00066{left:386.561587pt;}
.x34_c00066{left:394.741187pt;}
.x54_c00066{left:396.769587pt;}
.x23_c00066{left:405.802787pt;}
.xb_c00066{left:414.659987pt;}
.x58_c00066{left:415.966787pt;}
.x24_c00066{left:425.611587pt;}
.x1a_c00066{left:435.111187pt;}
.x35_c00066{left:436.008787pt;}
.x62_c00066{left:445.851587pt;}
.x1b_c00066{left:454.713187pt;}
.x4e_c00066{left:455.645987pt;}
.x43_c00066{left:462.734387pt;}
.xc_c00066{left:464.573587pt;}
.x40_c00066{left:465.783587pt;}
.x36_c00066{left:474.218387pt;}
.x4f_c00066{left:483.145987pt;}
.x59_c00066{left:484.545187pt;}
.xd_c00066{left:493.991987pt;}
.x55_c00066{left:501.511587pt;}
.x3c_c00066{left:503.676387pt;}
.x25_c00066{left:504.701587pt;}
.x56_c00066{left:509.114787pt;}
.x2b_c00066{left:513.519187pt;}
.x57_c00066{left:514.817187pt;}
.x1c_c00066{left:523.075987pt;}
.x52_c00066{left:523.986787pt;}
.x2c_c00066{left:533.635987pt;}
.x49_c00066{left:535.611587pt;}
.x5e_c00066{left:540.152387pt;}
.x37_c00066{left:543.351187pt;}
.x66_c00066{left:553.356787pt;}
.x3_c00066{left:563.674787pt;}
.x30_c00066{left:572.910387pt;}
.x31_c00066{left:579.378387pt;}
.x26_c00066{left:581.587187pt;}
.xe_c00066{left:583.065587pt;}
.x44_c00066{left:589.260787pt;}
.x3d_c00066{left:592.213187pt;}
.x5f_c00066{left:595.042387pt;}
.x53_c00066{left:596.133587pt;}
.x61_c00066{left:597.369987pt;}
.x2d_c00066{left:600.766787pt;}
.x64_c00066{left:610.116787pt;}
.x4a_c00066{left:613.143987pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eef5c1a21ad90bedcee46cdb.woff2')format("woff");}.ff1_c00067{font-family:ff1_c00067;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00067;src:url('chunks/assets/font_101bc98aac74a1626f3b552c.woff2')format("woff");}.ff2_c00067{font-family:ff2_c00067;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00067;src:url('chunks/assets/font_dab6f5acdc891433953255bf.woff2')format("woff");}.ff3_c00067{font-family:ff3_c00067;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.maa_c00067{transform:matrix(0.039476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.039476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.039476,0.000000,0.000000,0.250000,0,0);}
.m97_c00067{transform:matrix(0.054055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054055,0.000000,0.000000,0.250000,0,0);}
.ma9_c00067{transform:matrix(0.118423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118423,0.000000,0.000000,0.250000,0,0);}
.m33_c00067{transform:matrix(0.170370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170370,0.000000,0.000000,0.250000,0,0);}
.m20_c00067{transform:matrix(0.192568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192568,0.000000,0.000000,0.250000,0,0);}
.m96_c00067{transform:matrix(0.195946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195946,0.000000,0.000000,0.250000,0,0);}
.ma8_c00067{transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);}
.m50_c00067{transform:matrix(0.230763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230763,0.000000,0.000000,0.250000,0,0);}
.m85_c00067{transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);}
.m78_c00067{transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);}
.m80_c00067{transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);}
.m7b_c00067{transform:matrix(0.241934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241934,0.000000,0.000000,0.250000,0,0);}
.m0_c00067{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m52_c00067{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.m47_c00067{transform:matrix(0.253847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253847,0.000000,0.000000,0.250000,0,0);}
.m36_c00067{transform:matrix(0.254912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254912,0.000000,0.000000,0.250000,0,0);}
.m62_c00067{transform:matrix(0.254933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254933,0.000000,0.000000,0.250000,0,0);}
.m91_c00067{transform:matrix(0.255066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255066,0.000000,0.000000,0.250000,0,0);}
.m4b_c00067{transform:matrix(0.255549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255549,0.000000,0.000000,0.250000,0,0);}
.m7c_c00067{transform:matrix(0.257372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257372,0.000000,0.000000,0.250000,0,0);}
.m8e_c00067{transform:matrix(0.257987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257987,0.000000,0.000000,0.250000,0,0);}
.m31_c00067{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m76_c00067{transform:matrix(0.262586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262586,0.000000,0.000000,0.250000,0,0);}
.m5b_c00067{transform:matrix(0.263054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263054,0.000000,0.000000,0.250000,0,0);}
.m1f_c00067{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m17_c00067{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.ma3_c00067{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);}
.m16_c00067{transform:matrix(0.266001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266001,0.000000,0.000000,0.250000,0,0);}
.m1b_c00067{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m5c_c00067{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.m8c_c00067{transform:matrix(0.267199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267199,0.000000,0.000000,0.250000,0,0);}
.m7_c00067{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m7a_c00067{transform:matrix(0.268450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268450,0.000000,0.000000,0.250000,0,0);}
.m34_c00067{transform:matrix(0.270124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270124,0.000000,0.000000,0.250000,0,0);}
.m61_c00067{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m88_c00067{transform:matrix(0.271761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271761,0.000000,0.000000,0.250000,0,0);}
.m48_c00067{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m27_c00067{transform:matrix(0.273331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273331,0.000000,0.000000,0.250000,0,0);}
.m41_c00067{transform:matrix(0.273934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273934,0.000000,0.000000,0.250000,0,0);}
.m68_c00067{transform:matrix(0.274593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274593,0.000000,0.000000,0.250000,0,0);}
.m59_c00067{transform:matrix(0.274645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274645,0.000000,0.000000,0.250000,0,0);}
.m73_c00067{transform:matrix(0.274708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274708,0.000000,0.000000,0.250000,0,0);}
.m70_c00067{transform:matrix(0.275208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275208,0.000000,0.000000,0.250000,0,0);}
.m13_c00067{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m49_c00067{transform:matrix(0.275569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275569,0.000000,0.000000,0.250000,0,0);}
.m28_c00067{transform:matrix(0.276058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276058,0.000000,0.000000,0.250000,0,0);}
.m6b_c00067{transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);}
.m56_c00067{transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);}
.m55_c00067{transform:matrix(0.277218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277218,0.000000,0.000000,0.250000,0,0);}
.m60_c00067{transform:matrix(0.277523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277523,0.000000,0.000000,0.250000,0,0);}
.m4e_c00067{transform:matrix(0.278148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278148,0.000000,0.000000,0.250000,0,0);}
.m12_c00067{transform:matrix(0.278555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278555,0.000000,0.000000,0.250000,0,0);}
.m3f_c00067{transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);}
.ma1_c00067{transform:matrix(0.279494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279494,0.000000,0.000000,0.250000,0,0);}
.m25_c00067{transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);}
.m6d_c00067{transform:matrix(0.280644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280644,0.000000,0.000000,0.250000,0,0);}
.m14_c00067{transform:matrix(0.281249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281249,0.000000,0.000000,0.250000,0,0);}
.m1_c00067{transform:matrix(0.281612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281612,0.000000,0.000000,0.250000,0,0);}
.m83_c00067{transform:matrix(0.282018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282018,0.000000,0.000000,0.250000,0,0);}
.m43_c00067{transform:matrix(0.282167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282167,0.000000,0.000000,0.250000,0,0);}
.ma5_c00067{transform:matrix(0.282535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282535,0.000000,0.000000,0.250000,0,0);}
.m95_c00067{transform:matrix(0.282727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282727,0.000000,0.000000,0.250000,0,0);}
.m54_c00067{transform:matrix(0.282804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282804,0.000000,0.000000,0.250000,0,0);}
.m2b_c00067{transform:matrix(0.283519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283519,0.000000,0.000000,0.250000,0,0);}
.m4a_c00067{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m8f_c00067{transform:matrix(0.283990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283990,0.000000,0.000000,0.250000,0,0);}
.m3b_c00067{transform:matrix(0.284316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284316,0.000000,0.000000,0.250000,0,0);}
.m86_c00067{transform:matrix(0.285609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285609,0.000000,0.000000,0.250000,0,0);}
.m5a_c00067{transform:matrix(0.285693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285693,0.000000,0.000000,0.250000,0,0);}
.m6e_c00067{transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);}
.m82_c00067{transform:matrix(0.286484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286484,0.000000,0.000000,0.250000,0,0);}
.m24_c00067{transform:matrix(0.286593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286593,0.000000,0.000000,0.250000,0,0);}
.m53_c00067{transform:matrix(0.286741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286741,0.000000,0.000000,0.250000,0,0);}
.m6f_c00067{transform:matrix(0.286756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286756,0.000000,0.000000,0.250000,0,0);}
.ma0_c00067{transform:matrix(0.287025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287025,0.000000,0.000000,0.250000,0,0);}
.m51_c00067{transform:matrix(0.288557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288557,0.000000,0.000000,0.250000,0,0);}
.m5f_c00067{transform:matrix(0.288576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288576,0.000000,0.000000,0.250000,0,0);}
.m58_c00067{transform:matrix(0.288974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288974,0.000000,0.000000,0.250000,0,0);}
.m5d_c00067{transform:matrix(0.289200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289200,0.000000,0.000000,0.250000,0,0);}
.m64_c00067{transform:matrix(0.289537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289537,0.000000,0.000000,0.250000,0,0);}
.m3a_c00067{transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);}
.m35_c00067{transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);}
.m9d_c00067{transform:matrix(0.290577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290577,0.000000,0.000000,0.250000,0,0);}
.m3_c00067{transform:matrix(0.291008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291008,0.000000,0.000000,0.250000,0,0);}
.ma6_c00067{transform:matrix(0.291065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291065,0.000000,0.000000,0.250000,0,0);}
.m89_c00067{transform:matrix(0.291403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291403,0.000000,0.000000,0.250000,0,0);}
.m69_c00067{transform:matrix(0.292912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292912,0.000000,0.000000,0.250000,0,0);}
.m57_c00067{transform:matrix(0.293042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293042,0.000000,0.000000,0.250000,0,0);}
.mf_c00067{transform:matrix(0.294116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294116,0.000000,0.000000,0.250000,0,0);}
.m32_c00067{transform:matrix(0.294232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294232,0.000000,0.000000,0.250000,0,0);}
.m65_c00067{transform:matrix(0.295153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295153,0.000000,0.000000,0.250000,0,0);}
.m45_c00067{transform:matrix(0.296102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296102,0.000000,0.000000,0.250000,0,0);}
.m44_c00067{transform:matrix(0.296134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296134,0.000000,0.000000,0.250000,0,0);}
.m9a_c00067{transform:matrix(0.296543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296543,0.000000,0.000000,0.250000,0,0);}
.m3c_c00067{transform:matrix(0.297083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297083,0.000000,0.000000,0.250000,0,0);}
.m9e_c00067{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m6_c00067{transform:matrix(0.297208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297208,0.000000,0.000000,0.250000,0,0);}
.ma4_c00067{transform:matrix(0.300115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300115,0.000000,0.000000,0.250000,0,0);}
.m1e_c00067{transform:matrix(0.300527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300527,0.000000,0.000000,0.250000,0,0);}
.m1d_c00067{transform:matrix(0.300809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300809,0.000000,0.000000,0.250000,0,0);}
.m26_c00067{transform:matrix(0.300828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300828,0.000000,0.000000,0.250000,0,0);}
.m1c_c00067{transform:matrix(0.300973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300973,0.000000,0.000000,0.250000,0,0);}
.m7f_c00067{transform:matrix(0.301166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301166,0.000000,0.000000,0.250000,0,0);}
.m8a_c00067{transform:matrix(0.301369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301369,0.000000,0.000000,0.250000,0,0);}
.m9b_c00067{transform:matrix(0.302086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302086,0.000000,0.000000,0.250000,0,0);}
.m72_c00067{transform:matrix(0.302129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302129,0.000000,0.000000,0.250000,0,0);}
.m38_c00067{transform:matrix(0.302359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302359,0.000000,0.000000,0.250000,0,0);}
.m18_c00067{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.mc_c00067{transform:matrix(0.303439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303439,0.000000,0.000000,0.250000,0,0);}
.m4_c00067{transform:matrix(0.304360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304360,0.000000,0.000000,0.250000,0,0);}
.m71_c00067{transform:matrix(0.305417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305417,0.000000,0.000000,0.250000,0,0);}
.m90_c00067{transform:matrix(0.305602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305602,0.000000,0.000000,0.250000,0,0);}
.ma_c00067{transform:matrix(0.305711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305711,0.000000,0.000000,0.250000,0,0);}
.m6a_c00067{transform:matrix(0.305850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305850,0.000000,0.000000,0.250000,0,0);}
.m4d_c00067{transform:matrix(0.306076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306076,0.000000,0.000000,0.250000,0,0);}
.m1a_c00067{transform:matrix(0.307188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307188,0.000000,0.000000,0.250000,0,0);}
.md_c00067{transform:matrix(0.307223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307223,0.000000,0.000000,0.250000,0,0);}
.m7e_c00067{transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);}
.m10_c00067{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m2a_c00067{transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);}
.m29_c00067{transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);}
.m79_c00067{transform:matrix(0.309138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309138,0.000000,0.000000,0.250000,0,0);}
.m2c_c00067{transform:matrix(0.309574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309574,0.000000,0.000000,0.250000,0,0);}
.m21_c00067{transform:matrix(0.310079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310079,0.000000,0.000000,0.250000,0,0);}
.m3d_c00067{transform:matrix(0.310710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310710,0.000000,0.000000,0.250000,0,0);}
.m93_c00067{transform:matrix(0.310783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310783,0.000000,0.000000,0.250000,0,0);}
.m19_c00067{transform:matrix(0.311405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311405,0.000000,0.000000,0.250000,0,0);}
.m37_c00067{transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);}
.m11_c00067{transform:matrix(0.312163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312163,0.000000,0.000000,0.250000,0,0);}
.m8b_c00067{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.m94_c00067{transform:matrix(0.312751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312751,0.000000,0.000000,0.250000,0,0);}
.m9c_c00067{transform:matrix(0.313434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313434,0.000000,0.000000,0.250000,0,0);}
.m8_c00067{transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);}
.m75_c00067{transform:matrix(0.313839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313839,0.000000,0.000000,0.250000,0,0);}
.m67_c00067{transform:matrix(0.314182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314182,0.000000,0.000000,0.250000,0,0);}
.m23_c00067{transform:matrix(0.314689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314689,0.000000,0.000000,0.250000,0,0);}
.m98_c00067{transform:matrix(0.315158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315158,0.000000,0.000000,0.250000,0,0);}
.ma7_c00067{transform:matrix(0.315439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315439,0.000000,0.000000,0.250000,0,0);}
.m3e_c00067{transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);}
.m99_c00067{transform:matrix(0.317953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317953,0.000000,0.000000,0.250000,0,0);}
.m8d_c00067{transform:matrix(0.317989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317989,0.000000,0.000000,0.250000,0,0);}
.m2_c00067{transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);}
.m2f_c00067{transform:matrix(0.318895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318895,0.000000,0.000000,0.250000,0,0);}
.m92_c00067{transform:matrix(0.320042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320042,0.000000,0.000000,0.250000,0,0);}
.m84_c00067{transform:matrix(0.320064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320064,0.000000,0.000000,0.250000,0,0);}
.m81_c00067{transform:matrix(0.320073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320073,0.000000,0.000000,0.250000,0,0);}
.m42_c00067{transform:matrix(0.321472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321472,0.000000,0.000000,0.250000,0,0);}
.m9f_c00067{transform:matrix(0.322183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322183,0.000000,0.000000,0.250000,0,0);}
.m2d_c00067{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.m63_c00067{transform:matrix(0.323666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323666,0.000000,0.000000,0.250000,0,0);}
.m6c_c00067{transform:matrix(0.323918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323918,0.000000,0.000000,0.250000,0,0);}
.mb_c00067{transform:matrix(0.326130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326130,0.000000,0.000000,0.250000,0,0);}
.ma2_c00067{transform:matrix(0.327290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327290,0.000000,0.000000,0.250000,0,0);}
.me_c00067{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.m74_c00067{transform:matrix(0.330225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330225,0.000000,0.000000,0.250000,0,0);}
.m39_c00067{transform:matrix(0.330592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330592,0.000000,0.000000,0.250000,0,0);}
.m30_c00067{transform:matrix(0.331496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331496,0.000000,0.000000,0.250000,0,0);}
.m4f_c00067{transform:matrix(0.331825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331825,0.000000,0.000000,0.250000,0,0);}
.m77_c00067{transform:matrix(0.333681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333681,0.000000,0.000000,0.250000,0,0);}
.m9_c00067{transform:matrix(0.335219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335219,0.000000,0.000000,0.250000,0,0);}
.m40_c00067{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m66_c00067{transform:matrix(0.339391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339391,0.000000,0.000000,0.250000,0,0);}
.m2e_c00067{transform:matrix(0.340271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340271,0.000000,0.000000,0.250000,0,0);}
.m4c_c00067{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.m5_c00067{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m46_c00067{transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);}
.m87_c00067{transform:matrix(0.353578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353578,0.000000,0.000000,0.250000,0,0);}
.m15_c00067{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m5e_c00067{transform:matrix(0.359351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359351,0.000000,0.000000,0.250000,0,0);}
.m22_c00067{transform:matrix(0.359480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359480,0.000000,0.000000,0.250000,0,0);}
.m7d_c00067{transform:matrix(0.375087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375087,0.000000,0.000000,0.250000,0,0);}
.v1_c00067{vertical-align:-42.768000px;}
.v0_c00067{vertical-align:0.000000px;}
.v2_c00067{vertical-align:64.152000px;}
.ls8_c00067{letter-spacing:-2.744280px;}
.ls3_c00067{letter-spacing:-2.560780px;}
.lsc_c00067{letter-spacing:-2.375762px;}
.lsa_c00067{letter-spacing:-1.897474px;}
.ls2_c00067{letter-spacing:0.000000px;}
.lsd_c00067{letter-spacing:0.533174px;}
.ls9_c00067{letter-spacing:1.113394px;}
.lsf_c00067{letter-spacing:1.348618px;}
.lse_c00067{letter-spacing:1.685772px;}
.ls5_c00067{letter-spacing:2.509056px;}
.lsb_c00067{letter-spacing:3.286810px;}
.ls4_c00067{letter-spacing:3.920400px;}
.ls0_c00067{letter-spacing:15.554418px;}
.ls11_c00067{letter-spacing:27.086400px;}
.ls10_c00067{letter-spacing:51.321798px;}
.ls6_c00067{letter-spacing:52.747398px;}
.ls7_c00067{letter-spacing:64.152198px;}
.ls1_c00067{letter-spacing:199.751310px;}
.sc__c00067{text-shadow:none;}
.sc0_c00067{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00067{-webkit-text-stroke:0px transparent;}
.sc0_c00067{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00067{word-spacing:0.000000px;}
._3_c00067{margin-left:-16.354063px;}
._2_c00067{margin-left:-11.080080px;}
._1_c00067{width:3.057120px;}
._0_c00067{width:566.991216px;}
.fc0_c00067{color:transparent;}
.fs2_c00067{font-size:22.572000px;}
.fse_c00067{font-size:23.166000px;}
.fsb_c00067{font-size:24.156000px;}
.fsa_c00067{font-size:27.086400px;}
.fs8_c00067{font-size:27.720000px;}
.fs0_c00067{font-size:28.314000px;}
.fsd_c00067{font-size:39.600000px;}
.fs9_c00067{font-size:51.321798px;}
.fs4_c00067{font-size:52.747398px;}
.fs5_c00067{font-size:64.152198px;}
.fs7_c00067{font-size:65.736198px;}
.fs6_c00067{font-size:66.330000px;}
.fs3_c00067{font-size:78.408000px;}
.fs1_c00067{font-size:85.932198px;}
.fsf_c00067{font-size:86.130000px;}
.fsc_c00067{font-size:140.976198px;}
.y0_c00067{bottom:0.000000px;}
.y1_c00067{bottom:76.500000px;}
.y21_c00067{bottom:78.676335px;}
.y20_c00067{bottom:87.229935px;}
.y1f_c00067{bottom:113.959935px;}
.y1e_c00067{bottom:115.741935px;}
.y1d_c00067{bottom:122.508585px;}
.y1c_c00067{bottom:142.471935px;}
.y1b_c00067{bottom:173.473785px;}
.y1a_c00067{bottom:187.021935px;}
.y19_c00067{bottom:208.757385px;}
.y18_c00067{bottom:241.551135px;}
.y17_c00067{bottom:273.978585px;}
.y16_c00067{bottom:307.128735px;}
.y15_c00067{bottom:340.268985px;}
.y14_c00067{bottom:373.057785px;}
.y13_c00067{bottom:405.490185px;}
.y12_c00067{bottom:437.566185px;}
.y11_c00067{bottom:469.998585px;}
.y10_c00067{bottom:502.787385px;}
.yf_c00067{bottom:535.224735px;}
.ye_c00067{bottom:566.939385px;}
.yd_c00067{bottom:601.515135px;}
.yc_c00067{bottom:634.303935px;}
.yb_c00067{bottom:668.156985px;}
.ya_c00067{bottom:700.237935px;}
.y9_c00067{bottom:733.378185px;}
.y8_c00067{bottom:765.459135px;}
.y7_c00067{bottom:831.031785px;}
.y6_c00067{bottom:863.112735px;}
.y5_c00067{bottom:895.545135px;}
.y4_c00067{bottom:928.333935px;}
.y3_c00067{bottom:960.048585px;}
.y2_c00067{bottom:1087.996185px;}
.hb_c00067{height:18.039542px;}
.h3_c00067{height:23.541891px;}
.he_c00067{height:24.161414px;}
.h9_c00067{height:28.911094px;}
.ha_c00067{height:34.180317px;}
.h5_c00067{height:35.129767px;}
.hd_c00067{height:41.301563px;}
.h2_c00067{height:41.569753px;}
.h6_c00067{height:42.725364px;}
.h8_c00067{height:68.560800px;}
.h7_c00067{height:69.180117px;}
.h4_c00067{height:76.953164px;}
.hf_c00067{height:93.682617px;}
.hc_c00067{height:147.033769px;}
.h1_c00067{height:1110.000000px;}
.h0_c00067{height:1263.000000px;}
.w1_c00067{width:733.500000px;}
.w0_c00067{width:892.500000px;}
.x0_c00067{left:0.000000px;}
.x22_c00067{left:54.107985px;}
.xd_c00067{left:55.211835px;}
.x4_c00067{left:58.553085px;}
.x1_c00067{left:79.500000px;}
.x38_c00067{left:87.282885px;}
.x28_c00067{left:88.520385px;}
.x23_c00067{left:98.494635px;}
.x1c_c00067{left:109.671735px;}
.x4a_c00067{left:119.715285px;}
.x5_c00067{left:133.387185px;}
.x1d_c00067{left:142.178385px;}
.x19_c00067{left:154.112835px;}
.x39_c00067{left:164.819685px;}
.x43_c00067{left:165.864135px;}
.x3d_c00067{left:175.882935px;}
.x3e_c00067{left:185.693835px;}
.x6_c00067{left:187.609485px;}
.x33_c00067{left:198.326235px;}
.x29_c00067{left:199.331085px;}
.x40_c00067{left:209.607285px;}
.xe_c00067{left:220.774485px;}
.x3a_c00067{left:232.174335px;}
.x34_c00067{left:241.915935px;}
.x7_c00067{left:243.034635px;}
.x30_c00067{left:253.380135px;}
.x46_c00067{left:254.642385px;}
.x13_c00067{left:265.081935px;}
.xf_c00067{left:275.793735px;}
.x44_c00067{left:277.159935px;}
.x1a_c00067{left:287.282685px;}
.x1e_c00067{left:297.633135px;}
.x4f_c00067{left:307.899435px;}
.x2a_c00067{left:309.166635px;}
.x1b_c00067{left:320.447685px;}
.x31_c00067{left:331.614885px;}
.x45_c00067{left:332.639535px;}
.x3b_c00067{left:342.445485px;}
.x4b_c00067{left:343.564185px;}
.x24_c00067{left:352.795935px;}
.x35_c00067{left:354.429435px;}
.x8_c00067{left:365.438235px;}
.x4c_c00067{left:376.887585px;}
.x1f_c00067{left:386.653935px;}
.x14_c00067{left:396.940035px;}
.x9_c00067{left:398.623035px;}
.x10_c00067{left:409.527885px;}
.x2d_c00067{left:419.754585px;}
.x41_c00067{left:431.050485px;}
.x25_c00067{left:440.876235px;}
.x2b_c00067{left:442.069185px;}
.x50_c00067{left:443.098785px;}
.x32_c00067{left:453.147285px;}
.x20_c00067{left:463.839285px;}
.x47_c00067{left:464.858985px;}
.x3_c00067{left:475.669785px;}
.x2_c00067{left:485.614335px;}
.x21_c00067{left:486.881535px;}
.x3c_c00067{left:496.855785px;}
.x4d_c00067{left:498.048735px;}
.x15_c00067{left:509.785185px;}
.x2e_c00067{left:519.313935px;}
.x48_c00067{left:530.971185px;}
.x16_c00067{left:541.876035px;}
.xa_c00067{left:552.226485px;}
.x2f_c00067{left:563.076885px;}
.x26_c00067{left:575.026185px;}
.xb_c00067{left:585.718185px;}
.x42_c00067{left:596.652735px;}
.x3f_c00067{left:597.801135px;}
.x36_c00067{left:607.468485px;}
.xc_c00067{left:618.318885px;}
.x17_c00067{left:619.586085px;}
.x11_c00067{left:629.921685px;}
.x49_c00067{left:639.391035px;}
.x18_c00067{left:641.286885px;}
.x2c_c00067{left:652.686735px;}
.x52_c00067{left:654.013335px;}
.x12_c00067{left:663.759885px;}
.x4e_c00067{left:666.333885px;}
.x37_c00067{left:668.383185px;}
.x53_c00067{left:672.541185px;}
.x27_c00067{left:674.070735px;}
.x51_c00067{left:688.519785px;}
@media print{
.v1_c00067{vertical-align:-38.016000pt;}
.v0_c00067{vertical-align:0.000000pt;}
.v2_c00067{vertical-align:57.024000pt;}
.ls8_c00067{letter-spacing:-2.439360pt;}
.ls3_c00067{letter-spacing:-2.276248pt;}
.lsc_c00067{letter-spacing:-2.111789pt;}
.lsa_c00067{letter-spacing:-1.686643pt;}
.ls2_c00067{letter-spacing:0.000000pt;}
.lsd_c00067{letter-spacing:0.473933pt;}
.ls9_c00067{letter-spacing:0.989683pt;}
.lsf_c00067{letter-spacing:1.198771pt;}
.lse_c00067{letter-spacing:1.498464pt;}
.ls5_c00067{letter-spacing:2.230272pt;}
.lsb_c00067{letter-spacing:2.921609pt;}
.ls4_c00067{letter-spacing:3.484800pt;}
.ls0_c00067{letter-spacing:13.826149pt;}
.ls11_c00067{letter-spacing:24.076800pt;}
.ls10_c00067{letter-spacing:45.619376pt;}
.ls6_c00067{letter-spacing:46.886576pt;}
.ls7_c00067{letter-spacing:57.024176pt;}
.ls1_c00067{letter-spacing:177.556720pt;}
.ws0_c00067{word-spacing:0.000000pt;}
._3_c00067{margin-left:-14.536945pt;}
._2_c00067{margin-left:-9.848960pt;}
._1_c00067{width:2.717440pt;}
._0_c00067{width:503.992192pt;}
.fs2_c00067{font-size:20.064000pt;}
.fse_c00067{font-size:20.592000pt;}
.fsb_c00067{font-size:21.472000pt;}
.fsa_c00067{font-size:24.076800pt;}
.fs8_c00067{font-size:24.640000pt;}
.fs0_c00067{font-size:25.168000pt;}
.fsd_c00067{font-size:35.200000pt;}
.fs9_c00067{font-size:45.619376pt;}
.fs4_c00067{font-size:46.886576pt;}
.fs5_c00067{font-size:57.024176pt;}
.fs7_c00067{font-size:58.432176pt;}
.fs6_c00067{font-size:58.960000pt;}
.fs3_c00067{font-size:69.696000pt;}
.fs1_c00067{font-size:76.384176pt;}
.fsf_c00067{font-size:76.560000pt;}
.fsc_c00067{font-size:125.312176pt;}
.y0_c00067{bottom:0.000000pt;}
.y1_c00067{bottom:68.000000pt;}
.y21_c00067{bottom:69.934520pt;}
.y20_c00067{bottom:77.537720pt;}
.y1f_c00067{bottom:101.297720pt;}
.y1e_c00067{bottom:102.881720pt;}
.y1d_c00067{bottom:108.896520pt;}
.y1c_c00067{bottom:126.641720pt;}
.y1b_c00067{bottom:154.198920pt;}
.y1a_c00067{bottom:166.241720pt;}
.y19_c00067{bottom:185.562120pt;}
.y18_c00067{bottom:214.712120pt;}
.y17_c00067{bottom:243.536520pt;}
.y16_c00067{bottom:273.003320pt;}
.y15_c00067{bottom:302.461320pt;}
.y14_c00067{bottom:331.606920pt;}
.y13_c00067{bottom:360.435720pt;}
.y12_c00067{bottom:388.947720pt;}
.y11_c00067{bottom:417.776520pt;}
.y10_c00067{bottom:446.922120pt;}
.yf_c00067{bottom:475.755320pt;}
.ye_c00067{bottom:503.946120pt;}
.yd_c00067{bottom:534.680120pt;}
.yc_c00067{bottom:563.825720pt;}
.yb_c00067{bottom:593.917320pt;}
.ya_c00067{bottom:622.433720pt;}
.y9_c00067{bottom:651.891720pt;}
.y8_c00067{bottom:680.408120pt;}
.y7_c00067{bottom:738.694920pt;}
.y6_c00067{bottom:767.211320pt;}
.y5_c00067{bottom:796.040120pt;}
.y4_c00067{bottom:825.185720pt;}
.y3_c00067{bottom:853.376520pt;}
.y2_c00067{bottom:967.107720pt;}
.hb_c00067{height:16.035149pt;}
.h3_c00067{height:20.926125pt;}
.he_c00067{height:21.476813pt;}
.h9_c00067{height:25.698750pt;}
.ha_c00067{height:30.382504pt;}
.h5_c00067{height:31.226460pt;}
.hd_c00067{height:36.712500pt;}
.h2_c00067{height:36.950891pt;}
.h6_c00067{height:37.978101pt;}
.h8_c00067{height:60.942934pt;}
.h7_c00067{height:61.493438pt;}
.h4_c00067{height:68.402813pt;}
.hf_c00067{height:83.273438pt;}
.hc_c00067{height:130.696684pt;}
.h1_c00067{height:986.666667pt;}
.h0_c00067{height:1122.666667pt;}
.w1_c00067{width:652.000000pt;}
.w0_c00067{width:793.333333pt;}
.x0_c00067{left:0.000000pt;}
.x22_c00067{left:48.095987pt;}
.xd_c00067{left:49.077187pt;}
.x4_c00067{left:52.047187pt;}
.x1_c00067{left:70.666667pt;}
.x38_c00067{left:77.584787pt;}
.x28_c00067{left:78.684787pt;}
.x23_c00067{left:87.550787pt;}
.x1c_c00067{left:97.485987pt;}
.x4a_c00067{left:106.413587pt;}
.x5_c00067{left:118.566387pt;}
.x1d_c00067{left:126.380787pt;}
.x19_c00067{left:136.989187pt;}
.x39_c00067{left:146.506387pt;}
.x43_c00067{left:147.434787pt;}
.x3d_c00067{left:156.340387pt;}
.x3e_c00067{left:165.061187pt;}
.x6_c00067{left:166.763987pt;}
.x33_c00067{left:176.289987pt;}
.x29_c00067{left:177.183187pt;}
.x40_c00067{left:186.317587pt;}
.xe_c00067{left:196.243987pt;}
.x3a_c00067{left:206.377187pt;}
.x34_c00067{left:215.036387pt;}
.x7_c00067{left:216.030787pt;}
.x30_c00067{left:225.226787pt;}
.x46_c00067{left:226.348787pt;}
.x13_c00067{left:235.628387pt;}
.xf_c00067{left:245.149987pt;}
.x44_c00067{left:246.364387pt;}
.x1a_c00067{left:255.362387pt;}
.x1e_c00067{left:264.562787pt;}
.x4f_c00067{left:273.688387pt;}
.x2a_c00067{left:274.814787pt;}
.x1b_c00067{left:284.842387pt;}
.x31_c00067{left:294.768787pt;}
.x45_c00067{left:295.679587pt;}
.x3b_c00067{left:304.395987pt;}
.x4b_c00067{left:305.390387pt;}
.x24_c00067{left:313.596387pt;}
.x35_c00067{left:315.048387pt;}
.x8_c00067{left:324.833987pt;}
.x4c_c00067{left:335.011187pt;}
.x1f_c00067{left:343.692387pt;}
.x14_c00067{left:352.835587pt;}
.x9_c00067{left:354.331587pt;}
.x10_c00067{left:364.024787pt;}
.x2d_c00067{left:373.115187pt;}
.x41_c00067{left:383.155987pt;}
.x25_c00067{left:391.889987pt;}
.x2b_c00067{left:392.950387pt;}
.x50_c00067{left:393.865587pt;}
.x32_c00067{left:402.797587pt;}
.x20_c00067{left:412.301587pt;}
.x47_c00067{left:413.207987pt;}
.x3_c00067{left:422.817587pt;}
.x2_c00067{left:431.657187pt;}
.x21_c00067{left:432.783587pt;}
.x3c_c00067{left:441.649587pt;}
.x4d_c00067{left:442.709987pt;}
.x15_c00067{left:453.142387pt;}
.x2e_c00067{left:461.612387pt;}
.x48_c00067{left:471.974387pt;}
.x16_c00067{left:481.667587pt;}
.xa_c00067{left:490.867987pt;}
.x2f_c00067{left:500.512787pt;}
.x26_c00067{left:511.134387pt;}
.xb_c00067{left:520.638387pt;}
.x42_c00067{left:530.357987pt;}
.x3f_c00067{left:531.378787pt;}
.x36_c00067{left:539.971987pt;}
.xc_c00067{left:549.616787pt;}
.x17_c00067{left:550.743187pt;}
.x11_c00067{left:559.930387pt;}
.x49_c00067{left:568.347587pt;}
.x18_c00067{left:570.032787pt;}
.x2c_c00067{left:580.165987pt;}
.x52_c00067{left:581.345187pt;}
.x12_c00067{left:590.008787pt;}
.x4e_c00067{left:592.296787pt;}
.x37_c00067{left:594.118387pt;}
.x53_c00067{left:597.814387pt;}
.x27_c00067{left:599.173987pt;}
.x51_c00067{left:612.017587pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9a6b9e24de8485bb1d598447.woff2')format("woff");}.ff1_c00068{font-family:ff1_c00068;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00068;src:url('chunks/assets/font_cad3c6ce2ebf9676ff1e9db4.woff2')format("woff");}.ff2_c00068{font-family:ff2_c00068;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00068;src:url('chunks/assets/font_40e9a0b09e819ee384400842.woff2')format("woff");}.ff3_c00068{font-family:ff3_c00068;line-height:0.666000;font-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_c00068{transform:matrix(0.119048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119048,0.000000,0.000000,0.250000,0,0);}
.m4f_c00068{transform:matrix(0.201352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201352,0.000000,0.000000,0.250000,0,0);}
.m7a_c00068{transform:matrix(0.206081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206081,0.000000,0.000000,0.250000,0,0);}
.mac_c00068{transform:matrix(0.222967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222967,0.000000,0.000000,0.250000,0,0);}
.m47_c00068{transform:matrix(0.242123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242123,0.000000,0.000000,0.250000,0,0);}
.mf_c00068{transform:matrix(0.242927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242927,0.000000,0.000000,0.250000,0,0);}
.m81_c00068{transform:matrix(0.243269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243269,0.000000,0.000000,0.250000,0,0);}
.m0_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);}
.m80_c00068{transform:matrix(0.251362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251362,0.000000,0.000000,0.250000,0,0);}
.m21_c00068{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.m6b_c00068{transform:matrix(0.255443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255443,0.000000,0.000000,0.250000,0,0);}
.m57_c00068{transform:matrix(0.257403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257403,0.000000,0.000000,0.250000,0,0);}
.m19_c00068{transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);}
.m4e_c00068{transform:matrix(0.258282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258282,0.000000,0.000000,0.250000,0,0);}
.m16_c00068{transform:matrix(0.258943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258943,0.000000,0.000000,0.250000,0,0);}
.m4a_c00068{transform:matrix(0.260579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260579,0.000000,0.000000,0.250000,0,0);}
.m8f_c00068{transform:matrix(0.261612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261612,0.000000,0.000000,0.250000,0,0);}
.m66_c00068{transform:matrix(0.262041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262041,0.000000,0.000000,0.250000,0,0);}
.m1a_c00068{transform:matrix(0.262097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262097,0.000000,0.000000,0.250000,0,0);}
.m27_c00068{transform:matrix(0.262593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262593,0.000000,0.000000,0.250000,0,0);}
.mb_c00068{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m4_c00068{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m98_c00068{transform:matrix(0.264456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264456,0.000000,0.000000,0.250000,0,0);}
.m24_c00068{transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);}
.m5_c00068{transform:matrix(0.266174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266174,0.000000,0.000000,0.250000,0,0);}
.m2b_c00068{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m54_c00068{transform:matrix(0.266914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266914,0.000000,0.000000,0.250000,0,0);}
.m9_c00068{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m73_c00068{transform:matrix(0.268107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268107,0.000000,0.000000,0.250000,0,0);}
.m2c_c00068{transform:matrix(0.268552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268552,0.000000,0.000000,0.250000,0,0);}
.m1d_c00068{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.m51_c00068{transform:matrix(0.268694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268694,0.000000,0.000000,0.250000,0,0);}
.m12_c00068{transform:matrix(0.269234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269234,0.000000,0.000000,0.250000,0,0);}
.m6d_c00068{transform:matrix(0.269706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269706,0.000000,0.000000,0.250000,0,0);}
.m8_c00068{transform:matrix(0.270261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270261,0.000000,0.000000,0.250000,0,0);}
.ma9_c00068{transform:matrix(0.270741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270741,0.000000,0.000000,0.250000,0,0);}
.m3a_c00068{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m61_c00068{transform:matrix(0.270895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270895,0.000000,0.000000,0.250000,0,0);}
.m85_c00068{transform:matrix(0.271232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271232,0.000000,0.000000,0.250000,0,0);}
.m87_c00068{transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);}
.m9a_c00068{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m59_c00068{transform:matrix(0.272698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272698,0.000000,0.000000,0.250000,0,0);}
.m5a_c00068{transform:matrix(0.275345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275345,0.000000,0.000000,0.250000,0,0);}
.m50_c00068{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m36_c00068{transform:matrix(0.276372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276372,0.000000,0.000000,0.250000,0,0);}
.m71_c00068{transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);}
.m89_c00068{transform:matrix(0.277164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277164,0.000000,0.000000,0.250000,0,0);}
.m9f_c00068{transform:matrix(0.277841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277841,0.000000,0.000000,0.250000,0,0);}
.m2d_c00068{transform:matrix(0.277872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277872,0.000000,0.000000,0.250000,0,0);}
.m5e_c00068{transform:matrix(0.278236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278236,0.000000,0.000000,0.250000,0,0);}
.m60_c00068{transform:matrix(0.278681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278681,0.000000,0.000000,0.250000,0,0);}
.m5b_c00068{transform:matrix(0.280247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280247,0.000000,0.000000,0.250000,0,0);}
.ma8_c00068{transform:matrix(0.280774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280774,0.000000,0.000000,0.250000,0,0);}
.m88_c00068{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.me_c00068{transform:matrix(0.281594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281594,0.000000,0.000000,0.250000,0,0);}
.m23_c00068{transform:matrix(0.282461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282461,0.000000,0.000000,0.250000,0,0);}
.m8b_c00068{transform:matrix(0.282587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282587,0.000000,0.000000,0.250000,0,0);}
.m29_c00068{transform:matrix(0.282986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282986,0.000000,0.000000,0.250000,0,0);}
.m2e_c00068{transform:matrix(0.283814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283814,0.000000,0.000000,0.250000,0,0);}
.m6_c00068{transform:matrix(0.284690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284690,0.000000,0.000000,0.250000,0,0);}
.m96_c00068{transform:matrix(0.285062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285062,0.000000,0.000000,0.250000,0,0);}
.m25_c00068{transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);}
.m49_c00068{transform:matrix(0.286764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286764,0.000000,0.000000,0.250000,0,0);}
.ma0_c00068{transform:matrix(0.286857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286857,0.000000,0.000000,0.250000,0,0);}
.m65_c00068{transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);}
.m63_c00068{transform:matrix(0.287251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287251,0.000000,0.000000,0.250000,0,0);}
.m8d_c00068{transform:matrix(0.287468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287468,0.000000,0.000000,0.250000,0,0);}
.m7c_c00068{transform:matrix(0.287633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287633,0.000000,0.000000,0.250000,0,0);}
.m67_c00068{transform:matrix(0.288930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288930,0.000000,0.000000,0.250000,0,0);}
.m2f_c00068{transform:matrix(0.288980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288980,0.000000,0.000000,0.250000,0,0);}
.m79_c00068{transform:matrix(0.289333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289333,0.000000,0.000000,0.250000,0,0);}
.m8c_c00068{transform:matrix(0.290036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290036,0.000000,0.000000,0.250000,0,0);}
.m3b_c00068{transform:matrix(0.290236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290236,0.000000,0.000000,0.250000,0,0);}
.m5d_c00068{transform:matrix(0.290669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290669,0.000000,0.000000,0.250000,0,0);}
.ma7_c00068{transform:matrix(0.291151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291151,0.000000,0.000000,0.250000,0,0);}
.ma3_c00068{transform:matrix(0.291243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291243,0.000000,0.000000,0.250000,0,0);}
.m14_c00068{transform:matrix(0.291741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291741,0.000000,0.000000,0.250000,0,0);}
.m35_c00068{transform:matrix(0.291841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291841,0.000000,0.000000,0.250000,0,0);}
.m6f_c00068{transform:matrix(0.291970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291970,0.000000,0.000000,0.250000,0,0);}
.m86_c00068{transform:matrix(0.292912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292912,0.000000,0.000000,0.250000,0,0);}
.m32_c00068{transform:matrix(0.293496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293496,0.000000,0.000000,0.250000,0,0);}
.m9b_c00068{transform:matrix(0.294541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294541,0.000000,0.000000,0.250000,0,0);}
.m18_c00068{transform:matrix(0.294705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294705,0.000000,0.000000,0.250000,0,0);}
.m48_c00068{transform:matrix(0.295229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295229,0.000000,0.000000,0.250000,0,0);}
.m40_c00068{transform:matrix(0.296313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296313,0.000000,0.000000,0.250000,0,0);}
.maa_c00068{transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);}
.m22_c00068{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m1_c00068{transform:matrix(0.298375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298375,0.000000,0.000000,0.250000,0,0);}
.m93_c00068{transform:matrix(0.298471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298471,0.000000,0.000000,0.250000,0,0);}
.m43_c00068{transform:matrix(0.298776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298776,0.000000,0.000000,0.250000,0,0);}
.m52_c00068{transform:matrix(0.298977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298977,0.000000,0.000000,0.250000,0,0);}
.m6a_c00068{transform:matrix(0.299220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299220,0.000000,0.000000,0.250000,0,0);}
.ma_c00068{transform:matrix(0.299862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299862,0.000000,0.000000,0.250000,0,0);}
.m1f_c00068{transform:matrix(0.300331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300331,0.000000,0.000000,0.250000,0,0);}
.m13_c00068{transform:matrix(0.300577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300577,0.000000,0.000000,0.250000,0,0);}
.m4d_c00068{transform:matrix(0.300600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300600,0.000000,0.000000,0.250000,0,0);}
.m90_c00068{transform:matrix(0.300809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300809,0.000000,0.000000,0.250000,0,0);}
.m9d_c00068{transform:matrix(0.301210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301210,0.000000,0.000000,0.250000,0,0);}
.m69_c00068{transform:matrix(0.301711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301711,0.000000,0.000000,0.250000,0,0);}
.m7b_c00068{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m99_c00068{transform:matrix(0.302521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302521,0.000000,0.000000,0.250000,0,0);}
.m91_c00068{transform:matrix(0.302918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302918,0.000000,0.000000,0.250000,0,0);}
.m75_c00068{transform:matrix(0.304939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304939,0.000000,0.000000,0.250000,0,0);}
.m3d_c00068{transform:matrix(0.305630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305630,0.000000,0.000000,0.250000,0,0);}
.m3_c00068{transform:matrix(0.305934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305934,0.000000,0.000000,0.250000,0,0);}
.m84_c00068{transform:matrix(0.306494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306494,0.000000,0.000000,0.250000,0,0);}
.m1c_c00068{transform:matrix(0.306553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306553,0.000000,0.000000,0.250000,0,0);}
.m1b_c00068{transform:matrix(0.306753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306753,0.000000,0.000000,0.250000,0,0);}
.m7f_c00068{transform:matrix(0.307236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307236,0.000000,0.000000,0.250000,0,0);}
.m45_c00068{transform:matrix(0.307693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307693,0.000000,0.000000,0.250000,0,0);}
.m4b_c00068{transform:matrix(0.308087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308087,0.000000,0.000000,0.250000,0,0);}
.m62_c00068{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m55_c00068{transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);}
.m70_c00068{transform:matrix(0.308988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308988,0.000000,0.000000,0.250000,0,0);}
.m74_c00068{transform:matrix(0.309615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309615,0.000000,0.000000,0.250000,0,0);}
.m11_c00068{transform:matrix(0.310202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310202,0.000000,0.000000,0.250000,0,0);}
.m92_c00068{transform:matrix(0.310260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310260,0.000000,0.000000,0.250000,0,0);}
.m95_c00068{transform:matrix(0.310783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310783,0.000000,0.000000,0.250000,0,0);}
.m7d_c00068{transform:matrix(0.311211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311211,0.000000,0.000000,0.250000,0,0);}
.m31_c00068{transform:matrix(0.311765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311765,0.000000,0.000000,0.250000,0,0);}
.m4c_c00068{transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);}
.m56_c00068{transform:matrix(0.312497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312497,0.000000,0.000000,0.250000,0,0);}
.m9e_c00068{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.m41_c00068{transform:matrix(0.312997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312997,0.000000,0.000000,0.250000,0,0);}
.m68_c00068{transform:matrix(0.313301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313301,0.000000,0.000000,0.250000,0,0);}
.m2_c00068{transform:matrix(0.313449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313449,0.000000,0.000000,0.250000,0,0);}
.m97_c00068{transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);}
.m8e_c00068{transform:matrix(0.313665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313665,0.000000,0.000000,0.250000,0,0);}
.m46_c00068{transform:matrix(0.313756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313756,0.000000,0.000000,0.250000,0,0);}
.m38_c00068{transform:matrix(0.314792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314792,0.000000,0.000000,0.250000,0,0);}
.m20_c00068{transform:matrix(0.315081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315081,0.000000,0.000000,0.250000,0,0);}
.md_c00068{transform:matrix(0.315432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315432,0.000000,0.000000,0.250000,0,0);}
.m58_c00068{transform:matrix(0.316076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316076,0.000000,0.000000,0.250000,0,0);}
.m5c_c00068{transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);}
.m78_c00068{transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);}
.m39_c00068{transform:matrix(0.317369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317369,0.000000,0.000000,0.250000,0,0);}
.m33_c00068{transform:matrix(0.317521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317521,0.000000,0.000000,0.250000,0,0);}
.m72_c00068{transform:matrix(0.317979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317979,0.000000,0.000000,0.250000,0,0);}
.m8a_c00068{transform:matrix(0.319500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00068{transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);}
.m64_c00068{transform:matrix(0.321492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321492,0.000000,0.000000,0.250000,0,0);}
.ma5_c00068{transform:matrix(0.322807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322807,0.000000,0.000000,0.250000,0,0);}
.m77_c00068{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.m42_c00068{transform:matrix(0.323862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323862,0.000000,0.000000,0.250000,0,0);}
.ma2_c00068{transform:matrix(0.324233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324233,0.000000,0.000000,0.250000,0,0);}
.m9c_c00068{transform:matrix(0.325136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325136,0.000000,0.000000,0.250000,0,0);}
.m6e_c00068{transform:matrix(0.325336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325336,0.000000,0.000000,0.250000,0,0);}
.m5f_c00068{transform:matrix(0.327030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327030,0.000000,0.000000,0.250000,0,0);}
.m7e_c00068{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m7_c00068{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.m44_c00068{transform:matrix(0.328907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328907,0.000000,0.000000,0.250000,0,0);}
.ma1_c00068{transform:matrix(0.329576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329576,0.000000,0.000000,0.250000,0,0);}
.m76_c00068{transform:matrix(0.329963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329963,0.000000,0.000000,0.250000,0,0);}
.m82_c00068{transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);}
.m10_c00068{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.ma4_c00068{transform:matrix(0.333402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333402,0.000000,0.000000,0.250000,0,0);}
.m3e_c00068{transform:matrix(0.333537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333537,0.000000,0.000000,0.250000,0,0);}
.m2a_c00068{transform:matrix(0.333905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333905,0.000000,0.000000,0.250000,0,0);}
.m94_c00068{transform:matrix(0.336985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336985,0.000000,0.000000,0.250000,0,0);}
.m6c_c00068{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m26_c00068{transform:matrix(0.341371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341371,0.000000,0.000000,0.250000,0,0);}
.m3c_c00068{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.mab_c00068{transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);}
.mc_c00068{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m28_c00068{transform:matrix(0.351843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351843,0.000000,0.000000,0.250000,0,0);}
.m37_c00068{transform:matrix(0.354092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354092,0.000000,0.000000,0.250000,0,0);}
.m53_c00068{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m15_c00068{transform:matrix(0.359351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359351,0.000000,0.000000,0.250000,0,0);}
.m17_c00068{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m34_c00068{transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);}
.m83_c00068{transform:matrix(0.369183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369183,0.000000,0.000000,0.250000,0,0);}
.m3f_c00068{transform:matrix(0.406255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406255,0.000000,0.000000,0.250000,0,0);}
.m30_c00068{transform:matrix(0.409469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409469,0.000000,0.000000,0.250000,0,0);}
.v0_c00068{vertical-align:0.000000px;}
.ls6_c00068{letter-spacing:-2.744280px;}
.ls13_c00068{letter-spacing:-2.313036px;}
.lsd_c00068{letter-spacing:-0.972259px;}
.lsb_c00068{letter-spacing:-0.674309px;}
.ls12_c00068{letter-spacing:-0.258746px;}
.ls5_c00068{letter-spacing:0.000000px;}
.ls2_c00068{letter-spacing:0.462607px;}
.ls3_c00068{letter-spacing:0.501811px;}
.ls7_c00068{letter-spacing:1.113394px;}
.ls9_c00068{letter-spacing:1.643400px;}
.ls8_c00068{letter-spacing:1.685772px;}
.lsf_c00068{letter-spacing:2.692810px;}
.ls10_c00068{letter-spacing:2.846210px;}
.lsc_c00068{letter-spacing:2.908937px;}
.lse_c00068{letter-spacing:3.112798px;}
.ls1_c00068{letter-spacing:3.661654px;}
.ls4_c00068{letter-spacing:3.920400px;}
.ls0_c00068{letter-spacing:19.445976px;}
.ls11_c00068{letter-spacing:29.937798px;}
.lsa_c00068{letter-spacing:52.747398px;}
.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;}
}
.ws1_c00068{word-spacing:-20.064607px;}
.ws0_c00068{word-spacing:-19.602000px;}
.ws2_c00068{word-spacing:-17.288964px;}
.ws3_c00068{word-spacing:0.000000px;}
._2_c00068{margin-left:-11.683584px;}
._3_c00068{width:1.120442px;}
._5_c00068{width:3.333132px;}
._4_c00068{width:6.351048px;}
._0_c00068{width:25.253078px;}
._1_c00068{width:32.686949px;}
.fc0_c00068{color:transparent;}
.fs6_c00068{font-size:22.374000px;}
.fsd_c00068{font-size:25.146000px;}
.fs5_c00068{font-size:27.720000px;}
.fse_c00068{font-size:29.937798px;}
.fs3_c00068{font-size:32.868000px;}
.fsb_c00068{font-size:33.660000px;}
.fsf_c00068{font-size:36.828000px;}
.fsa_c00068{font-size:39.204000px;}
.fs2_c00068{font-size:42.966198px;}
.fs4_c00068{font-size:52.747398px;}
.fs9_c00068{font-size:53.856198px;}
.fs1_c00068{font-size:64.548000px;}
.fsc_c00068{font-size:68.112198px;}
.fs8_c00068{font-size:70.884000px;}
.fs7_c00068{font-size:76.032198px;}
.fs0_c00068{font-size:78.408000px;}
.y0_c00068{bottom:0.000000px;}
.y1_c00068{bottom:76.500000px;}
.y23_c00068{bottom:99.347535px;}
.y22_c00068{bottom:159.222735px;}
.y21_c00068{bottom:181.314585px;}
.y20_c00068{bottom:190.580985px;}
.y1f_c00068{bottom:210.182985px;}
.y1d_c00068{bottom:256.871385px;}
.y1e_c00068{bottom:259.371135px;}
.y1c_c00068{bottom:288.952335px;}
.y1b_c00068{bottom:322.092585px;}
.y1a_c00068{bottom:354.524985px;}
.y19_c00068{bottom:367.716735px;}
.y18_c00068{bottom:388.026585px;}
.y17_c00068{bottom:412.979535px;}
.y16_c00068{bottom:420.463935px;}
.y15_c00068{bottom:452.891385px;}
.y14_c00068{bottom:486.397935px;}
.y13_c00068{bottom:518.468985px;}
.y12_c00068{bottom:519.538185px;}
.y11_c00068{bottom:532.017135px;}
.y10_c00068{bottom:551.619135px;}
.yf_c00068{bottom:584.051535px;}
.ye_c00068{bottom:616.840335px;}
.yd_c00068{bottom:649.629135px;}
.yb_c00068{bottom:682.061535px;}
.yc_c00068{bottom:687.402585px;}
.ya_c00068{bottom:715.558185px;}
.y9_c00068{bottom:748.346985px;}
.y8_c00068{bottom:777.576735px;}
.y7_c00068{bottom:781.135785px;}
.y6_c00068{bottom:814.285935px;}
.y5_c00068{bottom:848.138985px;}
.y4_c00068{bottom:912.652335px;}
.y3_c00068{bottom:945.792585px;}
.y2_c00068{bottom:1084.788585px;}
.h10_c00068{height:19.938573px;}
.h8_c00068{height:21.958857px;}
.hf_c00068{height:26.226492px;}
.h7_c00068{height:28.911094px;}
.hd_c00068{height:33.035449px;}
.h5_c00068{height:34.280297px;}
.h6_c00068{height:35.129767px;}
.h11_c00068{height:38.410453px;}
.hc_c00068{height:38.476582px;}
.h4_c00068{height:44.812402px;}
.hb_c00068{height:52.856913px;}
.h3_c00068{height:67.321547px;}
.ha_c00068{height:69.568770px;}
.he_c00068{height:71.038894px;}
.h2_c00068{height:76.953164px;}
.h9_c00068{height:79.299207px;}
.h1_c00068{height:1110.000000px;}
.h0_c00068{height:1263.000000px;}
.w1_c00068{width:733.500000px;}
.w0_c00068{width:892.500000px;}
.x0_c00068{left:0.000000px;}
.xd_c00068{left:44.153535px;}
.x3_c00068{left:45.351435px;}
.x28_c00068{left:76.991835px;}
.x4a_c00068{left:78.199635px;}
.x1_c00068{left:79.500000px;}
.x18_c00068{left:89.787585px;}
.xe_c00068{left:99.959835px;}
.x29_c00068{left:110.097435px;}
.x4c_c00068{left:111.696285px;}
.x4_c00068{left:112.849635px;}
.x1f_c00068{left:121.690335px;}
.x3d_c00068{left:122.734785px;}
.xf_c00068{left:132.709035px;}
.x64_c00068{left:134.169285px;}
.x32_c00068{left:143.747535px;}
.x5f_c00068{left:145.168185px;}
.x3e_c00068{left:155.879985px;}
.x10_c00068{left:165.844335px;}
.x45_c00068{left:167.769885px;}
.x19_c00068{left:177.590685px;}
.x5_c00068{left:187.762935px;}
.x54_c00068{left:189.708285px;}
.x2a_c00068{left:199.029135px;}
.x4d_c00068{left:200.108235px;}
.x6_c00068{left:209.721135px;}
.x58_c00068{left:212.196135px;}
.x3f_c00068{left:222.190185px;}
.x11_c00068{left:232.540635px;}
.x4e_c00068{left:234.258285px;}
.x1a_c00068{left:244.262235px;}
.x5a_c00068{left:245.717535px;}
.x33_c00068{left:254.865135px;}
.x55_c00068{left:256.696635px;}
.x12_c00068{left:264.908685px;}
.x2e_c00068{left:266.007585px;}
.x5b_c00068{left:267.759885px;}
.x13_c00068{left:275.823435px;}
.x40_c00068{left:278.481585px;}
.x20_c00068{left:289.173585px;}
.x39_c00068{left:310.587285px;}
.x41_c00068{left:311.592135px;}
.x51_c00068{left:322.660335px;}
.x7_c00068{left:331.976235px;}
.x5c_c00068{left:334.099785px;}
.x14_c00068{left:343.356285px;}
.x3a_c00068{left:344.440335px;}
.x60_c00068{left:346.217385px;}
.x21_c00068{left:354.424485px;}
.x1b_c00068{left:366.180735px;}
.x4f_c00068{left:367.591485px;}
.x8_c00068{left:376.338135px;}
.x5d_c00068{left:378.278535px;}
.x22_c00068{left:387.000435px;}
.x3b_c00068{left:388.955685px;}
.x65_c00068{left:390.049635px;}
.x34_c00068{left:398.355735px;}
.x52_c00068{left:399.692235px;}
.x53_c00068{left:403.637385px;}
.x1c_c00068{left:410.364435px;}
.x9_c00068{left:419.799135px;}
.x2c_c00068{left:421.927635px;}
.x42_c00068{left:432.094935px;}
.x50_c00068{left:444.192735px;}
.x57_c00068{left:446.449935px;}
.x15_c00068{left:454.572885px;}
.x2f_c00068{left:455.953935px;}
.x35_c00068{left:465.972735px;}
.x30_c00068{left:467.838885px;}
.x23_c00068{left:476.540985px;}
.x46_c00068{left:477.689385px;}
.x2d_c00068{left:487.366635px;}
.x4b_c00068{left:488.425935px;}
.x24_c00068{left:509.092185px;}
.x37_c00068{left:510.735585px;}
.xa_c00068{left:520.130685px;}
.x47_c00068{left:521.189985px;}
.x61_c00068{left:522.274035px;}
.x2b_c00068{left:532.193835px;}
.x31_c00068{left:542.955135px;}
.x48_c00068{left:545.246985px;}
.x16_c00068{left:553.300635px;}
.x59_c00068{left:554.721285px;}
.xb_c00068{left:564.309435px;}
.x1d_c00068{left:574.471785px;}
.x38_c00068{left:576.788385px;}
.x66_c00068{left:578.154585px;}
.x17_c00068{left:586.752735px;}
.x3c_c00068{left:598.761435px;}
.x25_c00068{left:609.027735px;}
.x43_c00068{left:610.646385px;}
.x2_c00068{left:620.269185px;}
.x62_c00068{left:622.397685px;}
.x26_c00068{left:630.921585px;}
.x67_c00068{left:633.406485px;}
.xc_c00068{left:642.039285px;}
.x44_c00068{left:644.098485px;}
.x36_c00068{left:645.538935px;}
.x1e_c00068{left:653.671785px;}
.x56_c00068{left:655.631985px;}
.x5e_c00068{left:660.715635px;}
.x63_c00068{left:662.388735px;}
.x27_c00068{left:667.140735px;}
.x49_c00068{left:673.164885px;}
@media print{
.v0_c00068{vertical-align:0.000000pt;}
.ls6_c00068{letter-spacing:-2.439360pt;}
.ls13_c00068{letter-spacing:-2.056032pt;}
.lsd_c00068{letter-spacing:-0.864230pt;}
.lsb_c00068{letter-spacing:-0.599386pt;}
.ls12_c00068{letter-spacing:-0.229997pt;}
.ls5_c00068{letter-spacing:0.000000pt;}
.ls2_c00068{letter-spacing:0.411206pt;}
.ls3_c00068{letter-spacing:0.446054pt;}
.ls7_c00068{letter-spacing:0.989683pt;}
.ls9_c00068{letter-spacing:1.460800pt;}
.ls8_c00068{letter-spacing:1.498464pt;}
.lsf_c00068{letter-spacing:2.393609pt;}
.ls10_c00068{letter-spacing:2.529965pt;}
.lsc_c00068{letter-spacing:2.585722pt;}
.lse_c00068{letter-spacing:2.766931pt;}
.ls1_c00068{letter-spacing:3.254803pt;}
.ls4_c00068{letter-spacing:3.484800pt;}
.ls0_c00068{letter-spacing:17.285312pt;}
.ls11_c00068{letter-spacing:26.611376pt;}
.lsa_c00068{letter-spacing:46.886576pt;}
.ws1_c00068{word-spacing:-17.835206pt;}
.ws0_c00068{word-spacing:-17.424000pt;}
.ws2_c00068{word-spacing:-15.367968pt;}
.ws3_c00068{word-spacing:0.000000pt;}
._2_c00068{margin-left:-10.385408pt;}
._3_c00068{width:0.995949pt;}
._5_c00068{width:2.962784pt;}
._4_c00068{width:5.645376pt;}
._0_c00068{width:22.447181pt;}
._1_c00068{width:29.055066pt;}
.fs6_c00068{font-size:19.888000pt;}
.fsd_c00068{font-size:22.352000pt;}
.fs5_c00068{font-size:24.640000pt;}
.fse_c00068{font-size:26.611376pt;}
.fs3_c00068{font-size:29.216000pt;}
.fsb_c00068{font-size:29.920000pt;}
.fsf_c00068{font-size:32.736000pt;}
.fsa_c00068{font-size:34.848000pt;}
.fs2_c00068{font-size:38.192176pt;}
.fs4_c00068{font-size:46.886576pt;}
.fs9_c00068{font-size:47.872176pt;}
.fs1_c00068{font-size:57.376000pt;}
.fsc_c00068{font-size:60.544176pt;}
.fs8_c00068{font-size:63.008000pt;}
.fs7_c00068{font-size:67.584176pt;}
.fs0_c00068{font-size:69.696000pt;}
.y0_c00068{bottom:0.000000pt;}
.y1_c00068{bottom:68.000000pt;}
.y23_c00068{bottom:88.308920pt;}
.y22_c00068{bottom:141.531320pt;}
.y21_c00068{bottom:161.168520pt;}
.y20_c00068{bottom:169.405320pt;}
.y1f_c00068{bottom:186.829320pt;}
.y1d_c00068{bottom:228.330120pt;}
.y1e_c00068{bottom:230.552120pt;}
.y1c_c00068{bottom:256.846520pt;}
.y1b_c00068{bottom:286.304520pt;}
.y1a_c00068{bottom:315.133320pt;}
.y19_c00068{bottom:326.859320pt;}
.y18_c00068{bottom:344.912520pt;}
.y17_c00068{bottom:367.092920pt;}
.y16_c00068{bottom:373.745720pt;}
.y15_c00068{bottom:402.570120pt;}
.y14_c00068{bottom:432.353720pt;}
.y13_c00068{bottom:460.861320pt;}
.y12_c00068{bottom:461.811720pt;}
.y11_c00068{bottom:472.904120pt;}
.y10_c00068{bottom:490.328120pt;}
.yf_c00068{bottom:519.156920pt;}
.ye_c00068{bottom:548.302520pt;}
.yd_c00068{bottom:577.448120pt;}
.yb_c00068{bottom:606.276920pt;}
.yc_c00068{bottom:611.024520pt;}
.ya_c00068{bottom:636.051720pt;}
.y9_c00068{bottom:665.197320pt;}
.y8_c00068{bottom:691.179320pt;}
.y7_c00068{bottom:694.342920pt;}
.y6_c00068{bottom:723.809720pt;}
.y5_c00068{bottom:753.901320pt;}
.y4_c00068{bottom:811.246520pt;}
.y3_c00068{bottom:840.704520pt;}
.y2_c00068{bottom:964.256520pt;}
.h10_c00068{height:17.723176pt;}
.h8_c00068{height:19.518984pt;}
.hf_c00068{height:23.312438pt;}
.h7_c00068{height:25.698750pt;}
.hd_c00068{height:29.364844pt;}
.h5_c00068{height:30.471375pt;}
.h6_c00068{height:31.226460pt;}
.h11_c00068{height:34.142625pt;}
.hc_c00068{height:34.201406pt;}
.h4_c00068{height:39.833246pt;}
.hb_c00068{height:46.983923pt;}
.h3_c00068{height:59.841375pt;}
.ha_c00068{height:61.838906pt;}
.he_c00068{height:63.145684pt;}
.h2_c00068{height:68.402813pt;}
.h9_c00068{height:70.488184pt;}
.h1_c00068{height:986.666667pt;}
.h0_c00068{height:1122.666667pt;}
.w1_c00068{width:652.000000pt;}
.w0_c00068{width:793.333333pt;}
.x0_c00068{left:0.000000pt;}
.xd_c00068{left:39.247587pt;}
.x3_c00068{left:40.312387pt;}
.x28_c00068{left:68.437187pt;}
.x4a_c00068{left:69.510787pt;}
.x1_c00068{left:70.666667pt;}
.x18_c00068{left:79.811187pt;}
.xe_c00068{left:88.853187pt;}
.x29_c00068{left:97.864387pt;}
.x4c_c00068{left:99.285587pt;}
.x4_c00068{left:100.310787pt;}
.x1f_c00068{left:108.169187pt;}
.x3d_c00068{left:109.097587pt;}
.xf_c00068{left:117.963587pt;}
.x64_c00068{left:119.261587pt;}
.x32_c00068{left:127.775587pt;}
.x5f_c00068{left:129.038387pt;}
.x3e_c00068{left:138.559987pt;}
.x10_c00068{left:147.417187pt;}
.x45_c00068{left:149.128787pt;}
.x19_c00068{left:157.858387pt;}
.x5_c00068{left:166.900387pt;}
.x54_c00068{left:168.629587pt;}
.x2a_c00068{left:176.914787pt;}
.x4d_c00068{left:177.873987pt;}
.x6_c00068{left:186.418787pt;}
.x58_c00068{left:188.618787pt;}
.x3f_c00068{left:197.502387pt;}
.x11_c00068{left:206.702787pt;}
.x4e_c00068{left:208.229587pt;}
.x1a_c00068{left:217.121987pt;}
.x5a_c00068{left:218.415587pt;}
.x33_c00068{left:226.546787pt;}
.x55_c00068{left:228.174787pt;}
.x12_c00068{left:235.474387pt;}
.x2e_c00068{left:236.451187pt;}
.x5b_c00068{left:238.008787pt;}
.x13_c00068{left:245.176387pt;}
.x40_c00068{left:247.539187pt;}
.x20_c00068{left:257.043187pt;}
.x39_c00068{left:276.077587pt;}
.x41_c00068{left:276.970787pt;}
.x51_c00068{left:286.809187pt;}
.x7_c00068{left:295.089987pt;}
.x5c_c00068{left:296.977587pt;}
.x14_c00068{left:305.205587pt;}
.x3a_c00068{left:306.169187pt;}
.x60_c00068{left:307.748787pt;}
.x21_c00068{left:315.043987pt;}
.x1b_c00068{left:325.493987pt;}
.x4f_c00068{left:326.747987pt;}
.x8_c00068{left:334.522787pt;}
.x5d_c00068{left:336.247587pt;}
.x22_c00068{left:344.000387pt;}
.x3b_c00068{left:345.738387pt;}
.x65_c00068{left:346.710787pt;}
.x34_c00068{left:354.093987pt;}
.x52_c00068{left:355.281987pt;}
.x53_c00068{left:358.788787pt;}
.x1c_c00068{left:364.768387pt;}
.x9_c00068{left:373.154787pt;}
.x2c_c00068{left:375.046787pt;}
.x42_c00068{left:384.084387pt;}
.x50_c00068{left:394.837987pt;}
.x57_c00068{left:396.844387pt;}
.x15_c00068{left:404.064787pt;}
.x2f_c00068{left:405.292387pt;}
.x35_c00068{left:414.197987pt;}
.x30_c00068{left:415.856787pt;}
.x23_c00068{left:423.591987pt;}
.x46_c00068{left:424.612787pt;}
.x2d_c00068{left:433.214787pt;}
.x4b_c00068{left:434.156387pt;}
.x24_c00068{left:452.526387pt;}
.x37_c00068{left:453.987187pt;}
.xa_c00068{left:462.338387pt;}
.x47_c00068{left:463.279987pt;}
.x61_c00068{left:464.243587pt;}
.x2b_c00068{left:473.061187pt;}
.x31_c00068{left:482.626787pt;}
.x48_c00068{left:484.663987pt;}
.x16_c00068{left:491.822787pt;}
.x59_c00068{left:493.085587pt;}
.xb_c00068{left:501.608387pt;}
.x1d_c00068{left:510.641587pt;}
.x38_c00068{left:512.700787pt;}
.x66_c00068{left:513.915187pt;}
.x17_c00068{left:521.557987pt;}
.x3c_c00068{left:532.232387pt;}
.x25_c00068{left:541.357987pt;}
.x43_c00068{left:542.796787pt;}
.x2_c00068{left:551.350387pt;}
.x62_c00068{left:553.242387pt;}
.x26_c00068{left:560.819187pt;}
.x67_c00068{left:563.027987pt;}
.xc_c00068{left:570.701587pt;}
.x44_c00068{left:572.531987pt;}
.x36_c00068{left:573.812387pt;}
.x1e_c00068{left:581.041587pt;}
.x56_c00068{left:582.783987pt;}
.x5e_c00068{left:587.302787pt;}
.x63_c00068{left:588.789987pt;}
.x27_c00068{left:593.013987pt;}
.x49_c00068{left:598.368787pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f793829c8f8d33eee776827f.woff2')format("woff");}.ff1_c00069{font-family:ff1_c00069;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00069;src:url('chunks/assets/font_c12df67b0280162f9f2afc16.woff2')format("woff");}.ff2_c00069{font-family:ff2_c00069;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00069;src:url('chunks/assets/font_4cd203c89aa29482a0f43a1d.woff2')format("woff");}.ff3_c00069{font-family:ff3_c00069;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00069;src:url('chunks/assets/font_014d897f9dbbdf452f06ed79.woff2')format("woff");}.ff4_c00069{font-family:ff4_c00069;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00069;src:url('chunks/assets/font_da7f5ed68aa26a12e97639ec.woff2')format("woff");}.ff5_c00069{font-family:ff5_c00069;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m26_c00069{transform:matrix(0.197286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197286,0.000000,0.000000,0.250000,0,0);}
.m5_c00069{transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);}
.m6_c00069{transform:matrix(0.203704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203704,0.000000,0.000000,0.250000,0,0);}
.mac_c00069{transform:matrix(0.215476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215476,0.000000,0.000000,0.250000,0,0);}
.ma3_c00069{transform:matrix(0.218254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218254,0.000000,0.000000,0.250000,0,0);}
.m7_c00069{transform:matrix(0.220832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220832,0.000000,0.000000,0.250000,0,0);}
.m38_c00069{transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);}
.m49_c00069{transform:matrix(0.225977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225977,0.000000,0.000000,0.250000,0,0);}
.mc_c00069{transform:matrix(0.226032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226032,0.000000,0.000000,0.250000,0,0);}
.m1f_c00069{transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);}
.m91_c00069{transform:matrix(0.242343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242343,0.000000,0.000000,0.250000,0,0);}
.m8b_c00069{transform:matrix(0.249994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249994,0.000000,0.000000,0.250000,0,0);}
.m1_c00069{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00069{transform:matrix(0.250462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250462,0.000000,0.000000,0.250000,0,0);}
.m28_c00069{transform:matrix(0.252064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252064,0.000000,0.000000,0.250000,0,0);}
.m92_c00069{transform:matrix(0.253065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253065,0.000000,0.000000,0.250000,0,0);}
.m6d_c00069{transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);}
.m88_c00069{transform:matrix(0.254085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254085,0.000000,0.000000,0.250000,0,0);}
.m7a_c00069{transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);}
.mae_c00069{transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);}
.m57_c00069{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m30_c00069{transform:matrix(0.260756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260756,0.000000,0.000000,0.250000,0,0);}
.maa_c00069{transform:matrix(0.261121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261121,0.000000,0.000000,0.250000,0,0);}
.m35_c00069{transform:matrix(0.261735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261735,0.000000,0.000000,0.250000,0,0);}
.m76_c00069{transform:matrix(0.261823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261823,0.000000,0.000000,0.250000,0,0);}
.m90_c00069{transform:matrix(0.262665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262665,0.000000,0.000000,0.250000,0,0);}
.m5d_c00069{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m2c_c00069{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m54_c00069{transform:matrix(0.264094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264094,0.000000,0.000000,0.250000,0,0);}
.m96_c00069{transform:matrix(0.265515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265515,0.000000,0.000000,0.250000,0,0);}
.m4_c00069{transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);}
.m7c_c00069{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m48_c00069{transform:matrix(0.266351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266351,0.000000,0.000000,0.250000,0,0);}
.m1b_c00069{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.m75_c00069{transform:matrix(0.267199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267199,0.000000,0.000000,0.250000,0,0);}
.m3f_c00069{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m5a_c00069{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.ma6_c00069{transform:matrix(0.269609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269609,0.000000,0.000000,0.250000,0,0);}
.m84_c00069{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m53_c00069{transform:matrix(0.271069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271069,0.000000,0.000000,0.250000,0,0);}
.m1c_c00069{transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);}
.mb5_c00069{transform:matrix(0.272996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272996,0.000000,0.000000,0.250000,0,0);}
.m33_c00069{transform:matrix(0.273709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273709,0.000000,0.000000,0.250000,0,0);}
.m16_c00069{transform:matrix(0.273823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273823,0.000000,0.000000,0.250000,0,0);}
.ma0_c00069{transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);}
.m97_c00069{transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);}
.mb7_c00069{transform:matrix(0.274157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274157,0.000000,0.000000,0.250000,0,0);}
.mb6_c00069{transform:matrix(0.274205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274205,0.000000,0.000000,0.250000,0,0);}
.m63_c00069{transform:matrix(0.275064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275064,0.000000,0.000000,0.250000,0,0);}
.m72_c00069{transform:matrix(0.275460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275460,0.000000,0.000000,0.250000,0,0);}
.m62_c00069{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m4d_c00069{transform:matrix(0.275942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275942,0.000000,0.000000,0.250000,0,0);}
.m64_c00069{transform:matrix(0.276360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276360,0.000000,0.000000,0.250000,0,0);}
.m23_c00069{transform:matrix(0.276991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276991,0.000000,0.000000,0.250000,0,0);}
.m94_c00069{transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);}
.m21_c00069{transform:matrix(0.277218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277218,0.000000,0.000000,0.250000,0,0);}
.m55_c00069{transform:matrix(0.277902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277902,0.000000,0.000000,0.250000,0,0);}
.mad_c00069{transform:matrix(0.277905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277905,0.000000,0.000000,0.250000,0,0);}
.m9e_c00069{transform:matrix(0.278106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278106,0.000000,0.000000,0.250000,0,0);}
.m5e_c00069{transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);}
.m59_c00069{transform:matrix(0.278580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278580,0.000000,0.000000,0.250000,0,0);}
.m0_c00069{transform:matrix(0.278671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278671,0.000000,0.000000,0.250000,0,0);}
.m18_c00069{transform:matrix(0.279122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279122,0.000000,0.000000,0.250000,0,0);}
.m61_c00069{transform:matrix(0.279578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279578,0.000000,0.000000,0.250000,0,0);}
.m2_c00069{transform:matrix(0.279667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279667,0.000000,0.000000,0.250000,0,0);}
.m6a_c00069{transform:matrix(0.279717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279717,0.000000,0.000000,0.250000,0,0);}
.m93_c00069{transform:matrix(0.280376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280376,0.000000,0.000000,0.250000,0,0);}
.m3e_c00069{transform:matrix(0.280442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280442,0.000000,0.000000,0.250000,0,0);}
.m60_c00069{transform:matrix(0.281249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281249,0.000000,0.000000,0.250000,0,0);}
.m15_c00069{transform:matrix(0.282169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282169,0.000000,0.000000,0.250000,0,0);}
.mb1_c00069{transform:matrix(0.283016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283016,0.000000,0.000000,0.250000,0,0);}
.m12_c00069{transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);}
.m73_c00069{transform:matrix(0.284370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284370,0.000000,0.000000,0.250000,0,0);}
.m7f_c00069{transform:matrix(0.284774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284774,0.000000,0.000000,0.250000,0,0);}
.m56_c00069{transform:matrix(0.285798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285798,0.000000,0.000000,0.250000,0,0);}
.ma1_c00069{transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);}
.m42_c00069{transform:matrix(0.286926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286926,0.000000,0.000000,0.250000,0,0);}
.ma7_c00069{transform:matrix(0.286982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286982,0.000000,0.000000,0.250000,0,0);}
.mba_c00069{transform:matrix(0.287126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287126,0.000000,0.000000,0.250000,0,0);}
.m71_c00069{transform:matrix(0.287144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287144,0.000000,0.000000,0.250000,0,0);}
.m89_c00069{transform:matrix(0.287521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287521,0.000000,0.000000,0.250000,0,0);}
.m7b_c00069{transform:matrix(0.287757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287757,0.000000,0.000000,0.250000,0,0);}
.md_c00069{transform:matrix(0.288337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288337,0.000000,0.000000,0.250000,0,0);}
.m8_c00069{transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);}
.m1a_c00069{transform:matrix(0.289905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289905,0.000000,0.000000,0.250000,0,0);}
.m31_c00069{transform:matrix(0.290021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290021,0.000000,0.000000,0.250000,0,0);}
.m6f_c00069{transform:matrix(0.290362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290362,0.000000,0.000000,0.250000,0,0);}
.m8f_c00069{transform:matrix(0.290504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290504,0.000000,0.000000,0.250000,0,0);}
.m4a_c00069{transform:matrix(0.291239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291239,0.000000,0.000000,0.250000,0,0);}
.m4f_c00069{transform:matrix(0.291335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291335,0.000000,0.000000,0.250000,0,0);}
.m2f_c00069{transform:matrix(0.291525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291525,0.000000,0.000000,0.250000,0,0);}
.m58_c00069{transform:matrix(0.291725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291725,0.000000,0.000000,0.250000,0,0);}
.m52_c00069{transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);}
.m2b_c00069{transform:matrix(0.292263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292263,0.000000,0.000000,0.250000,0,0);}
.m9c_c00069{transform:matrix(0.292277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292277,0.000000,0.000000,0.250000,0,0);}
.m8c_c00069{transform:matrix(0.293439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293439,0.000000,0.000000,0.250000,0,0);}
.m77_c00069{transform:matrix(0.293874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293874,0.000000,0.000000,0.250000,0,0);}
.m43_c00069{transform:matrix(0.294253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294253,0.000000,0.000000,0.250000,0,0);}
.m83_c00069{transform:matrix(0.294562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294562,0.000000,0.000000,0.250000,0,0);}
.m66_c00069{transform:matrix(0.296831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296831,0.000000,0.000000,0.250000,0,0);}
.mb3_c00069{transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);}
.ma9_c00069{transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);}
.m3b_c00069{transform:matrix(0.297274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297274,0.000000,0.000000,0.250000,0,0);}
.m7e_c00069{transform:matrix(0.298576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298576,0.000000,0.000000,0.250000,0,0);}
.m45_c00069{transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00069{transform:matrix(0.299520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299520,0.000000,0.000000,0.250000,0,0);}
.m6e_c00069{transform:matrix(0.299932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299932,0.000000,0.000000,0.250000,0,0);}
.m80_c00069{transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);}
.m46_c00069{transform:matrix(0.300970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300970,0.000000,0.000000,0.250000,0,0);}
.m6b_c00069{transform:matrix(0.301210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301210,0.000000,0.000000,0.250000,0,0);}
.m67_c00069{transform:matrix(0.301299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301299,0.000000,0.000000,0.250000,0,0);}
.ma5_c00069{transform:matrix(0.301547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301547,0.000000,0.000000,0.250000,0,0);}
.m78_c00069{transform:matrix(0.301855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301855,0.000000,0.000000,0.250000,0,0);}
.maf_c00069{transform:matrix(0.302359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302359,0.000000,0.000000,0.250000,0,0);}
.m32_c00069{transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);}
.m70_c00069{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m81_c00069{transform:matrix(0.302503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302503,0.000000,0.000000,0.250000,0,0);}
.me_c00069{transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);}
.m9_c00069{transform:matrix(0.303614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303614,0.000000,0.000000,0.250000,0,0);}
.m68_c00069{transform:matrix(0.304255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304255,0.000000,0.000000,0.250000,0,0);}
.m7d_c00069{transform:matrix(0.304360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304360,0.000000,0.000000,0.250000,0,0);}
.m79_c00069{transform:matrix(0.304443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304443,0.000000,0.000000,0.250000,0,0);}
.m24_c00069{transform:matrix(0.304761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304761,0.000000,0.000000,0.250000,0,0);}
.ma8_c00069{transform:matrix(0.305129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305129,0.000000,0.000000,0.250000,0,0);}
.mb2_c00069{transform:matrix(0.305783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305783,0.000000,0.000000,0.250000,0,0);}
.ma2_c00069{transform:matrix(0.305849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305849,0.000000,0.000000,0.250000,0,0);}
.m8a_c00069{transform:matrix(0.305975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305975,0.000000,0.000000,0.250000,0,0);}
.m95_c00069{transform:matrix(0.306092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306092,0.000000,0.000000,0.250000,0,0);}
.m65_c00069{transform:matrix(0.306458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306458,0.000000,0.000000,0.250000,0,0);}
.m34_c00069{transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);}
.m9b_c00069{transform:matrix(0.308174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308174,0.000000,0.000000,0.250000,0,0);}
.m99_c00069{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.mb8_c00069{transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);}
.m39_c00069{transform:matrix(0.308921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308921,0.000000,0.000000,0.250000,0,0);}
.m47_c00069{transform:matrix(0.308957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308957,0.000000,0.000000,0.250000,0,0);}
.mb9_c00069{transform:matrix(0.309062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309062,0.000000,0.000000,0.250000,0,0);}
.m5c_c00069{transform:matrix(0.311891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311891,0.000000,0.000000,0.250000,0,0);}
.mab_c00069{transform:matrix(0.312229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312229,0.000000,0.000000,0.250000,0,0);}
.m1d_c00069{transform:matrix(0.312232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312232,0.000000,0.000000,0.250000,0,0);}
.m86_c00069{transform:matrix(0.312487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312487,0.000000,0.000000,0.250000,0,0);}
.m74_c00069{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.m1e_c00069{transform:matrix(0.312751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312751,0.000000,0.000000,0.250000,0,0);}
.m19_c00069{transform:matrix(0.313390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313390,0.000000,0.000000,0.250000,0,0);}
.m85_c00069{transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);}
.m98_c00069{transform:matrix(0.315614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315614,0.000000,0.000000,0.250000,0,0);}
.m3_c00069{transform:matrix(0.315658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315658,0.000000,0.000000,0.250000,0,0);}
.mf_c00069{transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);}
.m27_c00069{transform:matrix(0.316169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316169,0.000000,0.000000,0.250000,0,0);}
.m11_c00069{transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);}
.m3c_c00069{transform:matrix(0.316726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316726,0.000000,0.000000,0.250000,0,0);}
.m87_c00069{transform:matrix(0.316884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316884,0.000000,0.000000,0.250000,0,0);}
.m37_c00069{transform:matrix(0.318082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318082,0.000000,0.000000,0.250000,0,0);}
.m8d_c00069{transform:matrix(0.318542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318542,0.000000,0.000000,0.250000,0,0);}
.mb0_c00069{transform:matrix(0.318847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318847,0.000000,0.000000,0.250000,0,0);}
.m40_c00069{transform:matrix(0.319563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319563,0.000000,0.000000,0.250000,0,0);}
.mb4_c00069{transform:matrix(0.319591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319591,0.000000,0.000000,0.250000,0,0);}
.m10_c00069{transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);}
.m2e_c00069{transform:matrix(0.320819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320819,0.000000,0.000000,0.250000,0,0);}
.ma_c00069{transform:matrix(0.323033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323033,0.000000,0.000000,0.250000,0,0);}
.m3a_c00069{transform:matrix(0.323503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323503,0.000000,0.000000,0.250000,0,0);}
.m36_c00069{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.m9d_c00069{transform:matrix(0.324193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324193,0.000000,0.000000,0.250000,0,0);}
.m14_c00069{transform:matrix(0.324444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324444,0.000000,0.000000,0.250000,0,0);}
.m29_c00069{transform:matrix(0.325505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325505,0.000000,0.000000,0.250000,0,0);}
.m82_c00069{transform:matrix(0.325767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325767,0.000000,0.000000,0.250000,0,0);}
.m51_c00069{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.mb_c00069{transform:matrix(0.329979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329979,0.000000,0.000000,0.250000,0,0);}
.m3d_c00069{transform:matrix(0.330111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330111,0.000000,0.000000,0.250000,0,0);}
.m22_c00069{transform:matrix(0.330718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330718,0.000000,0.000000,0.250000,0,0);}
.ma4_c00069{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m9a_c00069{transform:matrix(0.333511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333511,0.000000,0.000000,0.250000,0,0);}
.m20_c00069{transform:matrix(0.333853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333853,0.000000,0.000000,0.250000,0,0);}
.m4e_c00069{transform:matrix(0.334480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334480,0.000000,0.000000,0.250000,0,0);}
.m13_c00069{transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);}
.m5b_c00069{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m69_c00069{transform:matrix(0.340056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340056,0.000000,0.000000,0.250000,0,0);}
.m44_c00069{transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);}
.m50_c00069{transform:matrix(0.343607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343607,0.000000,0.000000,0.250000,0,0);}
.m25_c00069{transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);}
.m6c_c00069{transform:matrix(0.346807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346807,0.000000,0.000000,0.250000,0,0);}
.m8e_c00069{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m2d_c00069{transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);}
.m17_c00069{transform:matrix(0.350212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350212,0.000000,0.000000,0.250000,0,0);}
.m9f_c00069{transform:matrix(0.352906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352906,0.000000,0.000000,0.250000,0,0);}
.m2a_c00069{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.mbb_c00069{transform:matrix(0.355566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355566,0.000000,0.000000,0.250000,0,0);}
.m4b_c00069{transform:matrix(0.408030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408030,0.000000,0.000000,0.250000,0,0);}
.m41_c00069{transform:matrix(0.417534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417534,0.000000,0.000000,0.250000,0,0);}
.v0_c00069{vertical-align:0.000000px;}
.ls7_c00069{letter-spacing:-2.744280px;}
.ls11_c00069{letter-spacing:-2.563942px;}
.ls9_c00069{letter-spacing:-2.328480px;}
.ls12_c00069{letter-spacing:-1.897474px;}
.ls13_c00069{letter-spacing:-1.524600px;}
.lsc_c00069{letter-spacing:-0.180338px;}
.ls3_c00069{letter-spacing:0.000000px;}
.ls5_c00069{letter-spacing:0.392040px;}
.ls1_c00069{letter-spacing:0.533174px;}
.lsa_c00069{letter-spacing:1.427026px;}
.lsf_c00069{letter-spacing:1.732500px;}
.ls14_c00069{letter-spacing:2.178000px;}
.ls10_c00069{letter-spacing:2.414966px;}
.ls8_c00069{letter-spacing:2.587464px;}
.lse_c00069{letter-spacing:3.112798px;}
.ls15_c00069{letter-spacing:3.206887px;}
.ls4_c00069{letter-spacing:3.920400px;}
.ls2_c00069{letter-spacing:4.039200px;}
.lsd_c00069{letter-spacing:4.068900px;}
.ls0_c00069{letter-spacing:5.802192px;}
.lsb_c00069{letter-spacing:49.896198px;}
.ls6_c00069{letter-spacing:51.321798px;}
.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:-19.994040px;}
.ws1_c00069{word-spacing:-19.602000px;}
.ws2_c00069{word-spacing:0.000000px;}
._4_c00069{margin-left:-16.700904px;}
._8_c00069{margin-left:-11.761200px;}
._0_c00069{margin-left:-5.999400px;}
._5_c00069{margin-left:-1.489752px;}
._a_c00069{width:6.351048px;}
._1_c00069{width:8.076024px;}
._9_c00069{width:9.330552px;}
._2_c00069{width:11.761200px;}
._3_c00069{width:23.208768px;}
._7_c00069{width:33.856574px;}
._6_c00069{width:35.989272px;}
.fc0_c00069{color:transparent;}
.fsa_c00069{font-size:15.444198px;}
.fsb_c00069{font-size:33.264000px;}
.fs9_c00069{font-size:34.650000px;}
.fsc_c00069{font-size:43.560000px;}
.fs7_c00069{font-size:49.896198px;}
.fs3_c00069{font-size:51.321798px;}
.fs5_c00069{font-size:64.548000px;}
.fs6_c00069{font-size:66.528000px;}
.fs4_c00069{font-size:74.448000px;}
.fs1_c00069{font-size:77.022198px;}
.fs2_c00069{font-size:78.408000px;}
.fsd_c00069{font-size:78.804000px;}
.fs0_c00069{font-size:80.784000px;}
.fs8_c00069{font-size:81.378000px;}
.y0_c00069{bottom:0.000000px;}
.y1_c00069{bottom:76.500000px;}
.y1d_c00069{bottom:155.297385px;}
.y1c_c00069{bottom:187.734735px;}
.y1b_c00069{bottom:220.523535px;}
.y1a_c00069{bottom:252.955935px;}
.y19_c00069{bottom:285.383385px;}
.y18_c00069{bottom:317.820735px;}
.y17_c00069{bottom:342.768735px;}
.y16_c00069{bottom:350.253135px;}
.y15_c00069{bottom:383.393385px;}
.y14_c00069{bottom:415.112985px;}
.y13_c00069{bottom:448.263135px;}
.y12_c00069{bottom:481.051935px;}
.y11_c00069{bottom:513.840735px;}
.y10_c00069{bottom:545.916735px;}
.yf_c00069{bottom:578.705535px;}
.ye_c00069{bottom:610.776585px;}
.yd_c00069{bottom:643.208985px;}
.yb_c00069{bottom:675.289935px;}
.yc_c00069{bottom:680.630985px;}
.ya_c00069{bottom:707.360985px;}
.y9_c00069{bottom:739.793385px;}
.y8_c00069{bottom:772.230735px;}
.y7_c00069{bottom:805.014585px;}
.y6_c00069{bottom:837.451935px;}
.y5_c00069{bottom:870.240735px;}
.y4_c00069{bottom:903.380985px;}
.y3_c00069{bottom:935.813385px;}
.y2_c00069{bottom:1085.501385px;}
.hc_c00069{height:16.107816px;}
.h9_c00069{height:33.230868px;}
.h5_c00069{height:34.180317px;}
.hd_c00069{height:34.693313px;}
.hb_c00069{height:36.138867px;}
.he_c00069{height:43.900313px;}
.h7_c00069{height:67.321547px;}
.h8_c00069{height:69.386625px;}
.h6_c00069{height:73.066641px;}
.h4_c00069{height:76.953164px;}
.hf_c00069{height:77.341816px;}
.h2_c00069{height:79.285078px;}
.ha_c00069{height:79.828321px;}
.h3_c00069{height:80.331746px;}
.h1_c00069{height:1110.000000px;}
.h0_c00069{height:1263.000000px;}
.w1_c00069{width:733.500000px;}
.w0_c00069{width:892.500000px;}
.x0_c00069{left:0.000000px;}
.x12_c00069{left:51.296385px;}
.x4b_c00069{left:52.360635px;}
.x4_c00069{left:53.588235px;}
.x1_c00069{left:79.500000px;}
.x2e_c00069{left:82.694235px;}
.x40_c00069{left:84.273285px;}
.x5_c00069{left:85.698885px;}
.x27_c00069{left:94.772235px;}
.x6_c00069{left:95.905785px;}
.x4f_c00069{left:105.122685px;}
.x45_c00069{left:106.375035px;}
.x56_c00069{left:118.007535px;}
.x28_c00069{left:127.531335px;}
.x4d_c00069{left:129.060885px;}
.x60_c00069{left:130.234035px;}
.x2f_c00069{left:138.797535px;}
.x7_c00069{left:139.861785px;}
.x35_c00069{left:150.207285px;}
.x39_c00069{left:160.899285px;}
.x48_c00069{left:162.305085px;}
.x22_c00069{left:171.591285px;}
.x52_c00069{left:173.021835px;}
.x36_c00069{left:183.312885px;}
.x5a_c00069{left:184.421685px;}
.x1c_c00069{left:193.445535px;}
.x3a_c00069{left:195.410685px;}
.x1d_c00069{left:206.424435px;}
.x3b_c00069{left:207.939135px;}
.x13_c00069{left:216.373935px;}
.x5b_c00069{left:218.923185px;}
.x30_c00069{left:227.551035px;}
.x8_c00069{left:228.610335px;}
.x29_c00069{left:238.911285px;}
.x23_c00069{left:249.420135px;}
.x41_c00069{left:261.651585px;}
.x2a_c00069{left:271.180335px;}
.x9_c00069{left:272.308935px;}
.x1e_c00069{left:274.486935px;}
.xa_c00069{left:283.357335px;}
.x4c_c00069{left:284.901735px;}
.x3e_c00069{left:294.559185px;}
.x46_c00069{left:305.473935px;}
.xb_c00069{left:315.076935px;}
.x31_c00069{left:316.601535px;}
.x53_c00069{left:317.675685px;}
.x14_c00069{left:327.308385px;}
.x42_c00069{left:339.782385px;}
.x1f_c00069{left:350.825835px;}
.x3c_c00069{left:361.527735px;}
.x15_c00069{left:372.586035px;}
.xc_c00069{left:383.471085px;}
.x32_c00069{left:393.079035px;}
.x44_c00069{left:394.682835px;}
.xd_c00069{left:405.270885px;}
.x57_c00069{left:406.330185px;}
.x16_c00069{left:416.749935px;}
.x33_c00069{left:426.981585px;}
.x5c_c00069{left:428.075535px;}
.x54_c00069{left:429.481335px;}
.xe_c00069{left:438.054735px;}
.x49_c00069{left:439.257585px;}
.x2b_c00069{left:449.009085px;}
.x51_c00069{left:450.984135px;}
.x58_c00069{left:462.057285px;}
.x37_c00069{left:470.759385px;}
.x3d_c00069{left:472.046385px;}
.x61_c00069{left:473.808585px;}
.x2c_c00069{left:482.406735px;}
.x3f_c00069{left:483.436335px;}
.x17_c00069{left:493.078935px;}
.x43_c00069{left:494.266935px;}
.x62_c00069{left:495.573735px;}
.x18_c00069{left:503.246235px;}
.x24_c00069{left:505.147035px;}
.x5d_c00069{left:506.706285px;}
.x20_c00069{left:516.205335px;}
.x2d_c00069{left:526.570635px;}
.x50_c00069{left:527.639835px;}
.x19_c00069{left:537.945735px;}
.x55_c00069{left:539.673285px;}
.xf_c00069{left:548.647635px;}
.x38_c00069{left:559.146585px;}
.x47_c00069{left:560.423685px;}
.x1a_c00069{left:571.100835px;}
.x5e_c00069{left:582.753135px;}
.x25_c00069{left:592.989735px;}
.x21_c00069{left:603.548085px;}
.x4a_c00069{left:605.602335px;}
.x10_c00069{left:615.309285px;}
.x2_c00069{left:626.293335px;}
.x5f_c00069{left:627.743685px;}
.x11_c00069{left:637.594185px;}
.x59_c00069{left:639.395985px;}
.x1b_c00069{left:649.300935px;}
.x34_c00069{left:659.443485px;}
.x3_c00069{left:663.205485px;}
.x4e_c00069{left:666.432885px;}
.x26_c00069{left:670.511685px;}
@media print{
.v0_c00069{vertical-align:0.000000pt;}
.ls7_c00069{letter-spacing:-2.439360pt;}
.ls11_c00069{letter-spacing:-2.279059pt;}
.ls9_c00069{letter-spacing:-2.069760pt;}
.ls12_c00069{letter-spacing:-1.686643pt;}
.ls13_c00069{letter-spacing:-1.355200pt;}
.lsc_c00069{letter-spacing:-0.160301pt;}
.ls3_c00069{letter-spacing:0.000000pt;}
.ls5_c00069{letter-spacing:0.348480pt;}
.ls1_c00069{letter-spacing:0.473933pt;}
.lsa_c00069{letter-spacing:1.268467pt;}
.lsf_c00069{letter-spacing:1.540000pt;}
.ls14_c00069{letter-spacing:1.936000pt;}
.ls10_c00069{letter-spacing:2.146637pt;}
.ls8_c00069{letter-spacing:2.299968pt;}
.lse_c00069{letter-spacing:2.766931pt;}
.ls15_c00069{letter-spacing:2.850566pt;}
.ls4_c00069{letter-spacing:3.484800pt;}
.ls2_c00069{letter-spacing:3.590400pt;}
.lsd_c00069{letter-spacing:3.616800pt;}
.ls0_c00069{letter-spacing:5.157504pt;}
.lsb_c00069{letter-spacing:44.352176pt;}
.ls6_c00069{letter-spacing:45.619376pt;}
.ws0_c00069{word-spacing:-17.772480pt;}
.ws1_c00069{word-spacing:-17.424000pt;}
.ws2_c00069{word-spacing:0.000000pt;}
._4_c00069{margin-left:-14.845248pt;}
._8_c00069{margin-left:-10.454400pt;}
._0_c00069{margin-left:-5.332800pt;}
._5_c00069{margin-left:-1.324224pt;}
._a_c00069{width:5.645376pt;}
._1_c00069{width:7.178688pt;}
._9_c00069{width:8.293824pt;}
._2_c00069{width:10.454400pt;}
._3_c00069{width:20.630016pt;}
._7_c00069{width:30.094733pt;}
._6_c00069{width:31.990464pt;}
.fsa_c00069{font-size:13.728176pt;}
.fsb_c00069{font-size:29.568000pt;}
.fs9_c00069{font-size:30.800000pt;}
.fsc_c00069{font-size:38.720000pt;}
.fs7_c00069{font-size:44.352176pt;}
.fs3_c00069{font-size:45.619376pt;}
.fs5_c00069{font-size:57.376000pt;}
.fs6_c00069{font-size:59.136000pt;}
.fs4_c00069{font-size:66.176000pt;}
.fs1_c00069{font-size:68.464176pt;}
.fs2_c00069{font-size:69.696000pt;}
.fsd_c00069{font-size:70.048000pt;}
.fs0_c00069{font-size:71.808000pt;}
.fs8_c00069{font-size:72.336000pt;}
.y0_c00069{bottom:0.000000pt;}
.y1_c00069{bottom:68.000000pt;}
.y1d_c00069{bottom:138.042120pt;}
.y1c_c00069{bottom:166.875320pt;}
.y1b_c00069{bottom:196.020920pt;}
.y1a_c00069{bottom:224.849720pt;}
.y19_c00069{bottom:253.674120pt;}
.y18_c00069{bottom:282.507320pt;}
.y17_c00069{bottom:304.683320pt;}
.y16_c00069{bottom:311.336120pt;}
.y15_c00069{bottom:340.794120pt;}
.y14_c00069{bottom:368.989320pt;}
.y13_c00069{bottom:398.456120pt;}
.y12_c00069{bottom:427.601720pt;}
.y11_c00069{bottom:456.747320pt;}
.y10_c00069{bottom:485.259320pt;}
.yf_c00069{bottom:514.404920pt;}
.ye_c00069{bottom:542.912520pt;}
.yd_c00069{bottom:571.741320pt;}
.yb_c00069{bottom:600.257720pt;}
.yc_c00069{bottom:605.005320pt;}
.ya_c00069{bottom:628.765320pt;}
.y9_c00069{bottom:657.594120pt;}
.y8_c00069{bottom:686.427320pt;}
.y7_c00069{bottom:715.568520pt;}
.y6_c00069{bottom:744.401720pt;}
.y5_c00069{bottom:773.547320pt;}
.y4_c00069{bottom:803.005320pt;}
.y3_c00069{bottom:831.834120pt;}
.y2_c00069{bottom:964.890120pt;}
.hc_c00069{height:14.318059pt;}
.h9_c00069{height:29.538549pt;}
.h5_c00069{height:30.382504pt;}
.hd_c00069{height:30.838500pt;}
.hb_c00069{height:32.123438pt;}
.he_c00069{height:39.022500pt;}
.h7_c00069{height:59.841375pt;}
.h8_c00069{height:61.677000pt;}
.h6_c00069{height:64.948125pt;}
.h4_c00069{height:68.402813pt;}
.hf_c00069{height:68.748281pt;}
.h2_c00069{height:70.475625pt;}
.ha_c00069{height:70.958508pt;}
.h3_c00069{height:71.405996pt;}
.h1_c00069{height:986.666667pt;}
.h0_c00069{height:1122.666667pt;}
.w1_c00069{width:652.000000pt;}
.w0_c00069{width:793.333333pt;}
.x0_c00069{left:0.000000pt;}
.x12_c00069{left:45.596787pt;}
.x4b_c00069{left:46.542787pt;}
.x4_c00069{left:47.633987pt;}
.x1_c00069{left:70.666667pt;}
.x2e_c00069{left:73.505987pt;}
.x40_c00069{left:74.909587pt;}
.x5_c00069{left:76.176787pt;}
.x27_c00069{left:84.241987pt;}
.x6_c00069{left:85.249587pt;}
.x4f_c00069{left:93.442387pt;}
.x45_c00069{left:94.555587pt;}
.x56_c00069{left:104.895587pt;}
.x28_c00069{left:113.361187pt;}
.x4d_c00069{left:114.720787pt;}
.x60_c00069{left:115.763587pt;}
.x2f_c00069{left:123.375587pt;}
.x7_c00069{left:124.321587pt;}
.x35_c00069{left:133.517587pt;}
.x39_c00069{left:143.021587pt;}
.x48_c00069{left:144.271187pt;}
.x22_c00069{left:152.525587pt;}
.x52_c00069{left:153.797187pt;}
.x36_c00069{left:162.944787pt;}
.x5a_c00069{left:163.930387pt;}
.x1c_c00069{left:171.951587pt;}
.x3a_c00069{left:173.698387pt;}
.x1d_c00069{left:183.488387pt;}
.x3b_c00069{left:184.834787pt;}
.x13_c00069{left:192.332387pt;}
.x5b_c00069{left:194.598387pt;}
.x30_c00069{left:202.267587pt;}
.x8_c00069{left:203.209187pt;}
.x29_c00069{left:212.365587pt;}
.x23_c00069{left:221.706787pt;}
.x41_c00069{left:232.579187pt;}
.x2a_c00069{left:241.049187pt;}
.x9_c00069{left:242.052387pt;}
.x1e_c00069{left:243.988387pt;}
.xa_c00069{left:251.873187pt;}
.x4c_c00069{left:253.245987pt;}
.x3e_c00069{left:261.830387pt;}
.x46_c00069{left:271.532387pt;}
.xb_c00069{left:280.068387pt;}
.x31_c00069{left:281.423587pt;}
.x53_c00069{left:282.378387pt;}
.x14_c00069{left:290.940787pt;}
.x42_c00069{left:302.028787pt;}
.x1f_c00069{left:311.845187pt;}
.x3c_c00069{left:321.357987pt;}
.x15_c00069{left:331.187587pt;}
.xc_c00069{left:340.863187pt;}
.x32_c00069{left:349.403587pt;}
.x44_c00069{left:350.829187pt;}
.xd_c00069{left:360.240787pt;}
.x57_c00069{left:361.182387pt;}
.x16_c00069{left:370.444387pt;}
.x33_c00069{left:379.539187pt;}
.x5c_c00069{left:380.511587pt;}
.x54_c00069{left:381.761187pt;}
.xe_c00069{left:389.381987pt;}
.x49_c00069{left:390.451187pt;}
.x2b_c00069{left:399.119187pt;}
.x51_c00069{left:400.874787pt;}
.x58_c00069{left:410.717587pt;}
.x37_c00069{left:418.452787pt;}
.x3d_c00069{left:419.596787pt;}
.x61_c00069{left:421.163187pt;}
.x2c_c00069{left:428.805987pt;}
.x3f_c00069{left:429.721187pt;}
.x17_c00069{left:438.292387pt;}
.x43_c00069{left:439.348387pt;}
.x62_c00069{left:440.509987pt;}
.x18_c00069{left:447.329987pt;}
.x24_c00069{left:449.019587pt;}
.x5d_c00069{left:450.405587pt;}
.x20_c00069{left:458.849187pt;}
.x2d_c00069{left:468.062787pt;}
.x50_c00069{left:469.013187pt;}
.x19_c00069{left:478.173987pt;}
.x55_c00069{left:479.709587pt;}
.xf_c00069{left:487.686787pt;}
.x38_c00069{left:497.019187pt;}
.x47_c00069{left:498.154387pt;}
.x1a_c00069{left:507.645187pt;}
.x5e_c00069{left:518.002787pt;}
.x25_c00069{left:527.101987pt;}
.x21_c00069{left:536.487187pt;}
.x4a_c00069{left:538.313187pt;}
.x10_c00069{left:546.941587pt;}
.x2_c00069{left:556.705187pt;}
.x5f_c00069{left:557.994387pt;}
.x11_c00069{left:566.750387pt;}
.x59_c00069{left:568.351987pt;}
.x1b_c00069{left:577.156387pt;}
.x34_c00069{left:586.171987pt;}
.x3_c00069{left:589.515987pt;}
.x4e_c00069{left:592.384787pt;}
.x26_c00069{left:596.010387pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4ef219ef038daa6b515b514d.woff2')format("woff");}.ff1_c00070{font-family:ff1_c00070;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00070;src:url('chunks/assets/font_eea5282bb3e1b187f9800c76.woff2')format("woff");}.ff2_c00070{font-family:ff2_c00070;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00070;src:url('chunks/assets/font_01bc071c8ca473d56a1754a5.woff2')format("woff");}.ff3_c00070{font-family:ff3_c00070;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00070;src:url('chunks/assets/font_ac208c488b7bd0dd206962c0.woff2')format("woff");}.ff4_c00070{font-family:ff4_c00070;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00070;src:url('chunks/assets/font_a00dca281246f9d1ee1e07a3.woff2')format("woff");}.ff5_c00070{font-family:ff5_c00070;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m34_c00070{transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);}
.m6_c00070{transform:matrix(0.209459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209459,0.000000,0.000000,0.250000,0,0);}
.m7d_c00070{transform:matrix(0.220701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220701,0.000000,0.000000,0.250000,0,0);}
.m5d_c00070{transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);}
.m0_c00070{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m35_c00070{transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);}
.m44_c00070{transform:matrix(0.250519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250519,0.000000,0.000000,0.250000,0,0);}
.m67_c00070{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.m20_c00070{transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);}
.m19_c00070{transform:matrix(0.252992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252992,0.000000,0.000000,0.250000,0,0);}
.m86_c00070{transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);}
.m87_c00070{transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);}
.m95_c00070{transform:matrix(0.255066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255066,0.000000,0.000000,0.250000,0,0);}
.m81_c00070{transform:matrix(0.256234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256234,0.000000,0.000000,0.250000,0,0);}
.m98_c00070{transform:matrix(0.256680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256680,0.000000,0.000000,0.250000,0,0);}
.m18_c00070{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m4_c00070{transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);}
.m41_c00070{transform:matrix(0.259324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259324,0.000000,0.000000,0.250000,0,0);}
.m6f_c00070{transform:matrix(0.260855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260855,0.000000,0.000000,0.250000,0,0);}
.m91_c00070{transform:matrix(0.261492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261492,0.000000,0.000000,0.250000,0,0);}
.m5c_c00070{transform:matrix(0.261497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261497,0.000000,0.000000,0.250000,0,0);}
.m38_c00070{transform:matrix(0.262275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262275,0.000000,0.000000,0.250000,0,0);}
.m90_c00070{transform:matrix(0.263159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263159,0.000000,0.000000,0.250000,0,0);}
.m37_c00070{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m24_c00070{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m77_c00070{transform:matrix(0.265205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265205,0.000000,0.000000,0.250000,0,0);}
.m89_c00070{transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);}
.m5f_c00070{transform:matrix(0.265816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265816,0.000000,0.000000,0.250000,0,0);}
.m9_c00070{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m43_c00070{transform:matrix(0.267330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267330,0.000000,0.000000,0.250000,0,0);}
.m3e_c00070{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m2c_c00070{transform:matrix(0.268107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268107,0.000000,0.000000,0.250000,0,0);}
.m74_c00070{transform:matrix(0.268624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268624,0.000000,0.000000,0.250000,0,0);}
.m70_c00070{transform:matrix(0.268872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268872,0.000000,0.000000,0.250000,0,0);}
.m59_c00070{transform:matrix(0.269723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269723,0.000000,0.000000,0.250000,0,0);}
.m7a_c00070{transform:matrix(0.269802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269802,0.000000,0.000000,0.250000,0,0);}
.m51_c00070{transform:matrix(0.269866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269866,0.000000,0.000000,0.250000,0,0);}
.m8c_c00070{transform:matrix(0.270519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270519,0.000000,0.000000,0.250000,0,0);}
.m72_c00070{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m84_c00070{transform:matrix(0.271124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271124,0.000000,0.000000,0.250000,0,0);}
.m62_c00070{transform:matrix(0.271232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271232,0.000000,0.000000,0.250000,0,0);}
.m54_c00070{transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);}
.m8d_c00070{transform:matrix(0.271800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271800,0.000000,0.000000,0.250000,0,0);}
.m11_c00070{transform:matrix(0.271852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271852,0.000000,0.000000,0.250000,0,0);}
.m5_c00070{transform:matrix(0.272153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272153,0.000000,0.000000,0.250000,0,0);}
.m46_c00070{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m7f_c00070{transform:matrix(0.272729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272729,0.000000,0.000000,0.250000,0,0);}
.m53_c00070{transform:matrix(0.272801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272801,0.000000,0.000000,0.250000,0,0);}
.m63_c00070{transform:matrix(0.273124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273124,0.000000,0.000000,0.250000,0,0);}
.m50_c00070{transform:matrix(0.274645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274645,0.000000,0.000000,0.250000,0,0);}
.m3a_c00070{transform:matrix(0.274840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274840,0.000000,0.000000,0.250000,0,0);}
.m9a_c00070{transform:matrix(0.275408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275408,0.000000,0.000000,0.250000,0,0);}
.m66_c00070{transform:matrix(0.275570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275570,0.000000,0.000000,0.250000,0,0);}
.m29_c00070{transform:matrix(0.275906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275906,0.000000,0.000000,0.250000,0,0);}
.m85_c00070{transform:matrix(0.276116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276116,0.000000,0.000000,0.250000,0,0);}
.m2d_c00070{transform:matrix(0.276938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276938,0.000000,0.000000,0.250000,0,0);}
.m4e_c00070{transform:matrix(0.277075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277075,0.000000,0.000000,0.250000,0,0);}
.m4f_c00070{transform:matrix(0.277471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277471,0.000000,0.000000,0.250000,0,0);}
.m73_c00070{transform:matrix(0.278106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278106,0.000000,0.000000,0.250000,0,0);}
.m2f_c00070{transform:matrix(0.279246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279246,0.000000,0.000000,0.250000,0,0);}
.mf_c00070{transform:matrix(0.279350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279350,0.000000,0.000000,0.250000,0,0);}
.m68_c00070{transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);}
.m5e_c00070{transform:matrix(0.280329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280329,0.000000,0.000000,0.250000,0,0);}
.m25_c00070{transform:matrix(0.280556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280556,0.000000,0.000000,0.250000,0,0);}
.m31_c00070{transform:matrix(0.280900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280900,0.000000,0.000000,0.250000,0,0);}
.m97_c00070{transform:matrix(0.281178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281178,0.000000,0.000000,0.250000,0,0);}
.m71_c00070{transform:matrix(0.282363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282363,0.000000,0.000000,0.250000,0,0);}
.m30_c00070{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m1f_c00070{transform:matrix(0.283729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283729,0.000000,0.000000,0.250000,0,0);}
.m39_c00070{transform:matrix(0.284068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284068,0.000000,0.000000,0.250000,0,0);}
.md_c00070{transform:matrix(0.285109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285109,0.000000,0.000000,0.250000,0,0);}
.m69_c00070{transform:matrix(0.285657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285657,0.000000,0.000000,0.250000,0,0);}
.m1e_c00070{transform:matrix(0.285689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285689,0.000000,0.000000,0.250000,0,0);}
.m8b_c00070{transform:matrix(0.286764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286764,0.000000,0.000000,0.250000,0,0);}
.m8a_c00070{transform:matrix(0.287787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287787,0.000000,0.000000,0.250000,0,0);}
.m49_c00070{transform:matrix(0.289896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289896,0.000000,0.000000,0.250000,0,0);}
.m23_c00070{transform:matrix(0.290583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290583,0.000000,0.000000,0.250000,0,0);}
.m48_c00070{transform:matrix(0.291008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291008,0.000000,0.000000,0.250000,0,0);}
.m55_c00070{transform:matrix(0.291080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291080,0.000000,0.000000,0.250000,0,0);}
.m22_c00070{transform:matrix(0.291332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291332,0.000000,0.000000,0.250000,0,0);}
.m94_c00070{transform:matrix(0.291495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291495,0.000000,0.000000,0.250000,0,0);}
.m16_c00070{transform:matrix(0.291795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291795,0.000000,0.000000,0.250000,0,0);}
.m80_c00070{transform:matrix(0.291828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291828,0.000000,0.000000,0.250000,0,0);}
.m1b_c00070{transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);}
.m96_c00070{transform:matrix(0.293789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293789,0.000000,0.000000,0.250000,0,0);}
.m64_c00070{transform:matrix(0.293938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293938,0.000000,0.000000,0.250000,0,0);}
.m1a_c00070{transform:matrix(0.294576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294576,0.000000,0.000000,0.250000,0,0);}
.m27_c00070{transform:matrix(0.294640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294640,0.000000,0.000000,0.250000,0,0);}
.m4c_c00070{transform:matrix(0.295016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295016,0.000000,0.000000,0.250000,0,0);}
.m5b_c00070{transform:matrix(0.296841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296841,0.000000,0.000000,0.250000,0,0);}
.m65_c00070{transform:matrix(0.297427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297427,0.000000,0.000000,0.250000,0,0);}
.m93_c00070{transform:matrix(0.297777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297777,0.000000,0.000000,0.250000,0,0);}
.m6d_c00070{transform:matrix(0.297849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297849,0.000000,0.000000,0.250000,0,0);}
.m58_c00070{transform:matrix(0.298143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298143,0.000000,0.000000,0.250000,0,0);}
.m28_c00070{transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);}
.m6c_c00070{transform:matrix(0.298419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298419,0.000000,0.000000,0.250000,0,0);}
.m6a_c00070{transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);}
.me_c00070{transform:matrix(0.301057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301057,0.000000,0.000000,0.250000,0,0);}
.m5a_c00070{transform:matrix(0.302155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302155,0.000000,0.000000,0.250000,0,0);}
.m83_c00070{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m7c_c00070{transform:matrix(0.303052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303052,0.000000,0.000000,0.250000,0,0);}
.m2_c00070{transform:matrix(0.303404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303404,0.000000,0.000000,0.250000,0,0);}
.m1d_c00070{transform:matrix(0.303845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303845,0.000000,0.000000,0.250000,0,0);}
.m9b_c00070{transform:matrix(0.304285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304285,0.000000,0.000000,0.250000,0,0);}
.m13_c00070{transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);}
.m4d_c00070{transform:matrix(0.305204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305204,0.000000,0.000000,0.250000,0,0);}
.m4b_c00070{transform:matrix(0.305602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305602,0.000000,0.000000,0.250000,0,0);}
.m7e_c00070{transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);}
.m17_c00070{transform:matrix(0.306845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306845,0.000000,0.000000,0.250000,0,0);}
.m14_c00070{transform:matrix(0.307901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307901,0.000000,0.000000,0.250000,0,0);}
.m8e_c00070{transform:matrix(0.308319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308319,0.000000,0.000000,0.250000,0,0);}
.m61_c00070{transform:matrix(0.308564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308564,0.000000,0.000000,0.250000,0,0);}
.m3b_c00070{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m88_c00070{transform:matrix(0.308701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308701,0.000000,0.000000,0.250000,0,0);}
.m7_c00070{transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);}
.m56_c00070{transform:matrix(0.309128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309128,0.000000,0.000000,0.250000,0,0);}
.m6b_c00070{transform:matrix(0.310218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310218,0.000000,0.000000,0.250000,0,0);}
.m3c_c00070{transform:matrix(0.311069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311069,0.000000,0.000000,0.250000,0,0);}
.m2e_c00070{transform:matrix(0.311672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311672,0.000000,0.000000,0.250000,0,0);}
.m33_c00070{transform:matrix(0.311687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311687,0.000000,0.000000,0.250000,0,0);}
.m82_c00070{transform:matrix(0.311699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311699,0.000000,0.000000,0.250000,0,0);}
.ma_c00070{transform:matrix(0.314160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314160,0.000000,0.000000,0.250000,0,0);}
.m52_c00070{transform:matrix(0.314182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314182,0.000000,0.000000,0.250000,0,0);}
.m8f_c00070{transform:matrix(0.315444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315444,0.000000,0.000000,0.250000,0,0);}
.m1c_c00070{transform:matrix(0.316040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316040,0.000000,0.000000,0.250000,0,0);}
.m15_c00070{transform:matrix(0.316926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316926,0.000000,0.000000,0.250000,0,0);}
.m8_c00070{transform:matrix(0.318470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318470,0.000000,0.000000,0.250000,0,0);}
.m21_c00070{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.m36_c00070{transform:matrix(0.323918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323918,0.000000,0.000000,0.250000,0,0);}
.m78_c00070{transform:matrix(0.328833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328833,0.000000,0.000000,0.250000,0,0);}
.m12_c00070{transform:matrix(0.328907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328907,0.000000,0.000000,0.250000,0,0);}
.m2b_c00070{transform:matrix(0.329886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329886,0.000000,0.000000,0.250000,0,0);}
.mc_c00070{transform:matrix(0.331703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331703,0.000000,0.000000,0.250000,0,0);}
.m76_c00070{transform:matrix(0.331743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331743,0.000000,0.000000,0.250000,0,0);}
.m42_c00070{transform:matrix(0.332412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332412,0.000000,0.000000,0.250000,0,0);}
.m99_c00070{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m26_c00070{transform:matrix(0.333376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333376,0.000000,0.000000,0.250000,0,0);}
.m40_c00070{transform:matrix(0.334316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334316,0.000000,0.000000,0.250000,0,0);}
.m92_c00070{transform:matrix(0.335025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335025,0.000000,0.000000,0.250000,0,0);}
.m7b_c00070{transform:matrix(0.338565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338565,0.000000,0.000000,0.250000,0,0);}
.m75_c00070{transform:matrix(0.339126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339126,0.000000,0.000000,0.250000,0,0);}
.m2a_c00070{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m47_c00070{transform:matrix(0.340207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340207,0.000000,0.000000,0.250000,0,0);}
.m3_c00070{transform:matrix(0.341019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341019,0.000000,0.000000,0.250000,0,0);}
.m1_c00070{transform:matrix(0.344812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344812,0.000000,0.000000,0.250000,0,0);}
.m10_c00070{transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);}
.m3d_c00070{transform:matrix(0.347629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347629,0.000000,0.000000,0.250000,0,0);}
.m6e_c00070{transform:matrix(0.348440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348440,0.000000,0.000000,0.250000,0,0);}
.m3f_c00070{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m57_c00070{transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);}
.m32_c00070{transform:matrix(0.349720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349720,0.000000,0.000000,0.250000,0,0);}
.m4a_c00070{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.mb_c00070{transform:matrix(0.359561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359561,0.000000,0.000000,0.250000,0,0);}
.m79_c00070{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m45_c00070{transform:matrix(0.363157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363157,0.000000,0.000000,0.250000,0,0);}
.m60_c00070{transform:matrix(0.406255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406255,0.000000,0.000000,0.250000,0,0);}
.v0_c00070{vertical-align:0.000000px;}
.lsb_c00070{letter-spacing:-2.744280px;}
.ls7_c00070{letter-spacing:-1.897474px;}
.ls9_c00070{letter-spacing:-1.427026px;}
.ls1_c00070{letter-spacing:-1.280664px;}
.ls10_c00070{letter-spacing:-1.168279px;}
.ls2_c00070{letter-spacing:0.000000px;}
.ls8_c00070{letter-spacing:0.203861px;}
.ls6_c00070{letter-spacing:0.705672px;}
.lsc_c00070{letter-spacing:1.643400px;}
.lsf_c00070{letter-spacing:1.787702px;}
.lsd_c00070{letter-spacing:2.509056px;}
.lse_c00070{letter-spacing:3.702610px;}
.lsa_c00070{letter-spacing:3.831310px;}
.ls3_c00070{letter-spacing:3.920400px;}
.ls0_c00070{letter-spacing:16.465680px;}
.ls5_c00070{letter-spacing:31.363200px;}
.ls4_c00070{letter-spacing:52.747398px;}
.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:-19.602000px;}
.ws1_c00070{word-spacing:0.000000px;}
._5_c00070{width:6.899904px;}
._7_c00070{width:9.173736px;}
._6_c00070{width:10.977120px;}
._8_c00070{width:20.856528px;}
._2_c00070{width:22.267872px;}
._4_c00070{width:23.679216px;}
._0_c00070{width:29.795040px;}
._1_c00070{width:31.284792px;}
._3_c00070{width:35.675640px;}
.fc0_c00070{color:transparent;}
.fs10_c00070{font-size:22.374000px;}
.fs8_c00070{font-size:25.146000px;}
.fse_c00070{font-size:27.720000px;}
.fs5_c00070{font-size:28.512000px;}
.fs9_c00070{font-size:31.363200px;}
.fsb_c00070{font-size:32.868000px;}
.fs1_c00070{font-size:33.264000px;}
.fs11_c00070{font-size:44.352000px;}
.fs3_c00070{font-size:52.747398px;}
.fs6_c00070{font-size:60.192000px;}
.fsf_c00070{font-size:62.568000px;}
.fs4_c00070{font-size:66.330000px;}
.fs7_c00070{font-size:66.528000px;}
.fsd_c00070{font-size:74.052198px;}
.fsc_c00070{font-size:75.240000px;}
.fsa_c00070{font-size:76.626198px;}
.fs2_c00070{font-size:78.408000px;}
.fs0_c00070{font-size:83.160000px;}
.y0_c00070{bottom:0.000000px;}
.y28_c00070{bottom:14.880735px;}
.y27_c00070{bottom:41.249385px;}
.y26_c00070{bottom:46.951785px;}
.y25_c00070{bottom:55.153935px;}
.y1_c00070{bottom:76.500000px;}
.y24_c00070{bottom:84.378735px;}
.y23_c00070{bottom:87.581385px;}
.y22_c00070{bottom:176.681385px;}
.y21_c00070{bottom:202.347135px;}
.y20_c00070{bottom:209.470185px;}
.y1f_c00070{bottom:241.907535px;}
.y1e_c00070{bottom:274.339935px;}
.y1d_c00070{bottom:306.415935px;}
.y1c_c00070{bottom:330.294735px;}
.y1b_c00070{bottom:338.491935px;}
.y1a_c00070{bottom:372.349935px;}
.y19_c00070{bottom:458.598735px;}
.y18_c00070{bottom:468.572985px;}
.y17_c00070{bottom:502.074585px;}
.y15_c00070{bottom:534.511935px;}
.y16_c00070{bottom:539.496585px;}
.y14_c00070{bottom:566.944335px;}
.y13_c00070{bottom:599.376735px;}
.y12_c00070{bottom:631.447785px;}
.y11_c00070{bottom:664.236585px;}
.y10_c00070{bottom:696.317535px;}
.yf_c00070{bottom:727.680735px;}
.ye_c00070{bottom:738.367785px;}
.yd_c00070{bottom:751.203135px;}
.yc_c00070{bottom:760.820985px;}
.yb_c00070{bottom:787.550985px;}
.y9_c00070{bottom:793.253385px;}
.ya_c00070{bottom:793.609785px;}
.y8_c00070{bottom:807.514335px;}
.y7_c00070{bottom:826.042185px;}
.y6_c00070{bottom:858.474585px;}
.y5_c00070{bottom:891.263385px;}
.y4_c00070{bottom:924.413535px;}
.y3_c00070{bottom:1063.760985px;}
.y2_c00070{bottom:1079.798985px;}
.hb_c00070{height:20.887891px;}
.h12_c00070{height:21.958857px;}
.ha_c00070{height:26.226492px;}
.h10_c00070{height:28.911094px;}
.h7_c00070{height:29.737125px;}
.hd_c00070{height:34.280297px;}
.h3_c00070{height:34.693313px;}
.h5_c00070{height:35.129767px;}
.h13_c00070{height:46.257750px;}
.h8_c00070{height:62.778375px;}
.h11_c00070{height:65.256469px;}
.h6_c00070{height:69.180117px;}
.h9_c00070{height:69.386625px;}
.hf_c00070{height:74.630731px;}
.hc_c00070{height:75.167008px;}
.h4_c00070{height:76.953164px;}
.he_c00070{height:78.472969px;}
.h2_c00070{height:81.616992px;}
.h1_c00070{height:1110.000000px;}
.h0_c00070{height:1263.000000px;}
.w1_c00070{width:733.500000px;}
.w0_c00070{width:892.500000px;}
.x0_c00070{left:0.000000px;}
.x4_c00070{left:52.434885px;}
.x4a_c00070{left:53.845635px;}
.x4e_c00070{left:55.761285px;}
.x4f_c00070{left:75.620685px;}
.x1_c00070{left:79.500000px;}
.x38_c00070{left:84.530685px;}
.x59_c00070{left:85.931535px;}
.xe_c00070{left:96.569085px;}
.x61_c00070{left:98.450085px;}
.x1f_c00070{left:107.063085px;}
.x27_c00070{left:117.566985px;}
.x5_c00070{left:119.858835px;}
.xf_c00070{left:129.838035px;}
.x16_c00070{left:139.683585px;}
.x39_c00070{left:151.598235px;}
.x32_c00070{left:161.839785px;}
.x20_c00070{left:173.021835px;}
.x5a_c00070{left:174.442485px;}
.x6_c00070{left:184.936485px;}
.x50_c00070{left:194.960235px;}
.x3e_c00070{left:196.192785px;}
.x2d_c00070{left:206.523435px;}
.x5b_c00070{left:207.587685px;}
.x21_c00070{left:217.556985px;}
.x5e_c00070{left:218.957835px;}
.x10_c00070{left:228.689535px;}
.x2e_c00070{left:239.416185px;}
.x7_c00070{left:240.727935px;}
.x33_c00070{left:251.434785px;}
.x8_c00070{left:262.468335px;}
.x28_c00070{left:273.056385px;}
.x5c_c00070{left:274.942335px;}
.x11_c00070{left:283.817685px;}
.x9_c00070{left:295.118535px;}
.x53_c00070{left:296.296635px;}
.x17_c00070{left:306.632235px;}
.x22_c00070{left:317.542035px;}
.x3a_c00070{left:328.763685px;}
.x47_c00070{left:329.798235px;}
.x1e_c00070{left:336.079785px;}
.x29_c00070{left:340.054635px;}
.x5f_c00070{left:341.207985px;}
.x12_c00070{left:350.652585px;}
.x57_c00070{left:352.558335px;}
.x34_c00070{left:353.607735px;}
.x23_c00070{left:361.532685px;}
.x48_c00070{left:362.606835px;}
.x60_c00070{left:368.066685px;}
.xa_c00070{left:373.308735px;}
.x3b_c00070{left:384.683835px;}
.x51_c00070{left:395.737185px;}
.x18_c00070{left:406.112385px;}
.xb_c00070{left:417.136035px;}
.x45_c00070{left:418.878435px;}
.x3f_c00070{left:428.431935px;}
.x46_c00070{left:431.055435px;}
.x13_c00070{left:439.168485px;}
.x42_c00070{left:440.232735px;}
.x2a_c00070{left:450.647535px;}
.x1b_c00070{left:461.710785px;}
.x35_c00070{left:462.794835px;}
.x3_c00070{left:471.402885px;}
.x43_c00070{left:472.521585px;}
.x54_c00070{left:474.155085px;}
.x1c_c00070{left:483.317535px;}
.x3c_c00070{left:484.817385px;}
.x19_c00070{left:494.851035px;}
.x2f_c00070{left:495.885585px;}
.x44_c00070{left:505.869735px;}
.x55_c00070{left:506.929035px;}
.xc_c00070{left:517.635885px;}
.x40_c00070{left:528.347685px;}
.x1d_c00070{left:539.049585px;}
.x26_c00070{left:541.960185px;}
.xd_c00070{left:549.340635px;}
.x14_c00070{left:560.943435px;}
.x30_c00070{left:571.798785px;}
.x24_c00070{left:583.505535px;}
.x4c_c00070{left:584.634135px;}
.x3d_c00070{left:593.801535px;}
.x41_c00070{left:595.504335px;}
.x36_c00070{left:615.472635px;}
.x25_c00070{left:616.715085px;}
.x4d_c00070{left:617.789235px;}
.x58_c00070{left:619.878135px;}
.x2_c00070{left:626.669535px;}
.x31_c00070{left:628.436685px;}
.x1a_c00070{left:637.995135px;}
.x5d_c00070{left:639.371235px;}
.x37_c00070{left:649.840485px;}
.x52_c00070{left:650.924535px;}
.x15_c00070{left:660.898785px;}
.x56_c00070{left:662.269935px;}
.x2b_c00070{left:667.289235px;}
.x2c_c00070{left:669.160335px;}
.x62_c00070{left:670.274085px;}
.x63_c00070{left:671.298735px;}
.x4b_c00070{left:676.892235px;}
.x49_c00070{left:682.995585px;}
@media print{
.v0_c00070{vertical-align:0.000000pt;}
.lsb_c00070{letter-spacing:-2.439360pt;}
.ls7_c00070{letter-spacing:-1.686643pt;}
.ls9_c00070{letter-spacing:-1.268467pt;}
.ls1_c00070{letter-spacing:-1.138368pt;}
.ls10_c00070{letter-spacing:-1.038470pt;}
.ls2_c00070{letter-spacing:0.000000pt;}
.ls8_c00070{letter-spacing:0.181210pt;}
.ls6_c00070{letter-spacing:0.627264pt;}
.lsc_c00070{letter-spacing:1.460800pt;}
.lsf_c00070{letter-spacing:1.589069pt;}
.lsd_c00070{letter-spacing:2.230272pt;}
.lse_c00070{letter-spacing:3.291209pt;}
.lsa_c00070{letter-spacing:3.405609pt;}
.ls3_c00070{letter-spacing:3.484800pt;}
.ls0_c00070{letter-spacing:14.636160pt;}
.ls5_c00070{letter-spacing:27.878400pt;}
.ls4_c00070{letter-spacing:46.886576pt;}
.ws0_c00070{word-spacing:-17.424000pt;}
.ws1_c00070{word-spacing:0.000000pt;}
._5_c00070{width:6.133248pt;}
._7_c00070{width:8.154432pt;}
._6_c00070{width:9.757440pt;}
._8_c00070{width:18.539136pt;}
._2_c00070{width:19.793664pt;}
._4_c00070{width:21.048192pt;}
._0_c00070{width:26.484480pt;}
._1_c00070{width:27.808704pt;}
._3_c00070{width:31.711680pt;}
.fs10_c00070{font-size:19.888000pt;}
.fs8_c00070{font-size:22.352000pt;}
.fse_c00070{font-size:24.640000pt;}
.fs5_c00070{font-size:25.344000pt;}
.fs9_c00070{font-size:27.878400pt;}
.fsb_c00070{font-size:29.216000pt;}
.fs1_c00070{font-size:29.568000pt;}
.fs11_c00070{font-size:39.424000pt;}
.fs3_c00070{font-size:46.886576pt;}
.fs6_c00070{font-size:53.504000pt;}
.fsf_c00070{font-size:55.616000pt;}
.fs4_c00070{font-size:58.960000pt;}
.fs7_c00070{font-size:59.136000pt;}
.fsd_c00070{font-size:65.824176pt;}
.fsc_c00070{font-size:66.880000pt;}
.fsa_c00070{font-size:68.112176pt;}
.fs2_c00070{font-size:69.696000pt;}
.fs0_c00070{font-size:73.920000pt;}
.y0_c00070{bottom:0.000000pt;}
.y28_c00070{bottom:13.227320pt;}
.y27_c00070{bottom:36.666120pt;}
.y26_c00070{bottom:41.734920pt;}
.y25_c00070{bottom:49.025720pt;}
.y1_c00070{bottom:68.000000pt;}
.y24_c00070{bottom:75.003320pt;}
.y23_c00070{bottom:77.850120pt;}
.y22_c00070{bottom:157.050120pt;}
.y21_c00070{bottom:179.864120pt;}
.y20_c00070{bottom:186.195720pt;}
.y1f_c00070{bottom:215.028920pt;}
.y1e_c00070{bottom:243.857720pt;}
.y1d_c00070{bottom:272.369720pt;}
.y1c_c00070{bottom:293.595320pt;}
.y1b_c00070{bottom:300.881720pt;}
.y1a_c00070{bottom:330.977720pt;}
.y19_c00070{bottom:407.643320pt;}
.y18_c00070{bottom:416.509320pt;}
.y17_c00070{bottom:446.288520pt;}
.y15_c00070{bottom:475.121720pt;}
.y16_c00070{bottom:479.552520pt;}
.y14_c00070{bottom:503.950520pt;}
.y13_c00070{bottom:532.779320pt;}
.y12_c00070{bottom:561.286920pt;}
.y11_c00070{bottom:590.432520pt;}
.y10_c00070{bottom:618.948920pt;}
.yf_c00070{bottom:646.827320pt;}
.ye_c00070{bottom:656.326920pt;}
.yd_c00070{bottom:667.736120pt;}
.yc_c00070{bottom:676.285320pt;}
.yb_c00070{bottom:700.045320pt;}
.y9_c00070{bottom:705.114120pt;}
.ya_c00070{bottom:705.430920pt;}
.y8_c00070{bottom:717.790520pt;}
.y7_c00070{bottom:734.259720pt;}
.y6_c00070{bottom:763.088520pt;}
.y5_c00070{bottom:792.234120pt;}
.y4_c00070{bottom:821.700920pt;}
.y3_c00070{bottom:945.565320pt;}
.y2_c00070{bottom:959.821320pt;}
.hb_c00070{height:18.567014pt;}
.h12_c00070{height:19.518984pt;}
.ha_c00070{height:23.312438pt;}
.h10_c00070{height:25.698750pt;}
.h7_c00070{height:26.433000pt;}
.hd_c00070{height:30.471375pt;}
.h3_c00070{height:30.838500pt;}
.h5_c00070{height:31.226460pt;}
.h13_c00070{height:41.118000pt;}
.h8_c00070{height:55.803000pt;}
.h11_c00070{height:58.005750pt;}
.h6_c00070{height:61.493438pt;}
.h9_c00070{height:61.677000pt;}
.hf_c00070{height:66.338427pt;}
.hc_c00070{height:66.815118pt;}
.h4_c00070{height:68.402813pt;}
.he_c00070{height:69.753750pt;}
.h2_c00070{height:72.548438pt;}
.h1_c00070{height:986.666667pt;}
.h0_c00070{height:1122.666667pt;}
.w1_c00070{width:652.000000pt;}
.w0_c00070{width:793.333333pt;}
.x0_c00070{left:0.000000pt;}
.x4_c00070{left:46.608787pt;}
.x4a_c00070{left:47.862787pt;}
.x4e_c00070{left:49.565587pt;}
.x4f_c00070{left:67.218387pt;}
.x1_c00070{left:70.666667pt;}
.x38_c00070{left:75.138387pt;}
.x59_c00070{left:76.383587pt;}
.xe_c00070{left:85.839187pt;}
.x61_c00070{left:87.511187pt;}
.x1f_c00070{left:95.167187pt;}
.x27_c00070{left:104.503987pt;}
.x5_c00070{left:106.541187pt;}
.xf_c00070{left:115.411587pt;}
.x16_c00070{left:124.163187pt;}
.x39_c00070{left:134.753987pt;}
.x32_c00070{left:143.857587pt;}
.x20_c00070{left:153.797187pt;}
.x5a_c00070{left:155.059987pt;}
.x6_c00070{left:164.387987pt;}
.x50_c00070{left:173.297987pt;}
.x3e_c00070{left:174.393587pt;}
.x2d_c00070{left:183.576387pt;}
.x5b_c00070{left:184.522387pt;}
.x21_c00070{left:193.383987pt;}
.x5e_c00070{left:194.629187pt;}
.x10_c00070{left:203.279587pt;}
.x2e_c00070{left:212.814387pt;}
.x7_c00070{left:213.980387pt;}
.x33_c00070{left:223.497587pt;}
.x8_c00070{left:233.305187pt;}
.x28_c00070{left:242.716787pt;}
.x5c_c00070{left:244.393187pt;}
.x11_c00070{left:252.282387pt;}
.x9_c00070{left:262.327587pt;}
.x53_c00070{left:263.374787pt;}
.x17_c00070{left:272.561987pt;}
.x22_c00070{left:282.259587pt;}
.x3a_c00070{left:292.234387pt;}
.x47_c00070{left:293.153987pt;}
.x1e_c00070{left:298.737587pt;}
.x29_c00070{left:302.270787pt;}
.x5f_c00070{left:303.295987pt;}
.x12_c00070{left:311.691187pt;}
.x57_c00070{left:313.385187pt;}
.x34_c00070{left:314.317987pt;}
.x23_c00070{left:321.362387pt;}
.x48_c00070{left:322.317187pt;}
.x60_c00070{left:327.170387pt;}
.xa_c00070{left:331.829987pt;}
.x3b_c00070{left:341.941187pt;}
.x51_c00070{left:351.766387pt;}
.x18_c00070{left:360.988787pt;}
.xb_c00070{left:370.787587pt;}
.x45_c00070{left:372.336387pt;}
.x3f_c00070{left:380.828387pt;}
.x46_c00070{left:383.160387pt;}
.x13_c00070{left:390.371987pt;}
.x42_c00070{left:391.317987pt;}
.x2a_c00070{left:400.575587pt;}
.x1b_c00070{left:410.409587pt;}
.x35_c00070{left:411.373187pt;}
.x3_c00070{left:419.024787pt;}
.x43_c00070{left:420.019187pt;}
.x54_c00070{left:421.471187pt;}
.x1c_c00070{left:429.615587pt;}
.x3c_c00070{left:430.948787pt;}
.x19_c00070{left:439.867587pt;}
.x2f_c00070{left:440.787187pt;}
.x44_c00070{left:449.661987pt;}
.x55_c00070{left:450.603587pt;}
.xc_c00070{left:460.120787pt;}
.x40_c00070{left:469.642387pt;}
.x1d_c00070{left:479.155187pt;}
.x26_c00070{left:481.742387pt;}
.xd_c00070{left:488.302787pt;}
.x14_c00070{left:498.616387pt;}
.x30_c00070{left:508.265587pt;}
.x24_c00070{left:518.671587pt;}
.x4c_c00070{left:519.674787pt;}
.x3d_c00070{left:527.823587pt;}
.x41_c00070{left:529.337187pt;}
.x36_c00070{left:547.086787pt;}
.x25_c00070{left:548.191187pt;}
.x4d_c00070{left:549.145987pt;}
.x58_c00070{left:551.002787pt;}
.x2_c00070{left:557.039587pt;}
.x31_c00070{left:558.610387pt;}
.x1a_c00070{left:567.106787pt;}
.x5d_c00070{left:568.329987pt;}
.x37_c00070{left:577.635987pt;}
.x52_c00070{left:578.599587pt;}
.x15_c00070{left:587.465587pt;}
.x56_c00070{left:588.684387pt;}
.x2b_c00070{left:593.145987pt;}
.x2c_c00070{left:594.809187pt;}
.x62_c00070{left:595.799187pt;}
.x63_c00070{left:596.709987pt;}
.x4b_c00070{left:601.681987pt;}
.x49_c00070{left:607.107187pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ad97b4a239933b28035dd890.woff2')format("woff");}.ff1_c00071{font-family:ff1_c00071;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00071;src:url('chunks/assets/font_41e9392e944e59d0d8f0a519.woff2')format("woff");}.ff2_c00071{font-family:ff2_c00071;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00071;src:url('chunks/assets/font_3e8fd51be90f558ab77e072b.woff2')format("woff");}.ff3_c00071{font-family:ff3_c00071;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mb6_c00071{transform:matrix(0.069445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.069445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.069445,0.000000,0.000000,0.250000,0,0);}
.mc7_c00071{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);}
.m86_c00071{transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);}
.m5_c00071{transform:matrix(0.196729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196729,0.000000,0.000000,0.250000,0,0);}
.mbd_c00071{transform:matrix(0.202179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202179,0.000000,0.000000,0.250000,0,0);}
.m66_c00071{transform:matrix(0.207709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207709,0.000000,0.000000,0.250000,0,0);}
.mb5_c00071{transform:matrix(0.210648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210648,0.000000,0.000000,0.250000,0,0);}
.m87_c00071{transform:matrix(0.211806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211806,0.000000,0.000000,0.250000,0,0);}
.m96_c00071{transform:matrix(0.216072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216072,0.000000,0.000000,0.250000,0,0);}
.mf_c00071{transform:matrix(0.220587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220587,0.000000,0.000000,0.250000,0,0);}
.m6c_c00071{transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);}
.m54_c00071{transform:matrix(0.244940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244940,0.000000,0.000000,0.250000,0,0);}
.m6e_c00071{transform:matrix(0.245939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245939,0.000000,0.000000,0.250000,0,0);}
.mad_c00071{transform:matrix(0.248504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248504,0.000000,0.000000,0.250000,0,0);}
.m2_c00071{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00071{transform:matrix(0.250711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250711,0.000000,0.000000,0.250000,0,0);}
.m76_c00071{transform:matrix(0.250919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250919,0.000000,0.000000,0.250000,0,0);}
.m37_c00071{transform:matrix(0.251362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251362,0.000000,0.000000,0.250000,0,0);}
.m42_c00071{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.m52_c00071{transform:matrix(0.252169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252169,0.000000,0.000000,0.250000,0,0);}
.ma0_c00071{transform:matrix(0.253107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253107,0.000000,0.000000,0.250000,0,0);}
.mc0_c00071{transform:matrix(0.253688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253688,0.000000,0.000000,0.250000,0,0);}
.mb7_c00071{transform:matrix(0.254076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254076,0.000000,0.000000,0.250000,0,0);}
.m7b_c00071{transform:matrix(0.254360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254360,0.000000,0.000000,0.250000,0,0);}
.m72_c00071{transform:matrix(0.254577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254577,0.000000,0.000000,0.250000,0,0);}
.m83_c00071{transform:matrix(0.254914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254914,0.000000,0.000000,0.250000,0,0);}
.m0_c00071{transform:matrix(0.256089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256089,0.000000,0.000000,0.250000,0,0);}
.m97_c00071{transform:matrix(0.257744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257744,0.000000,0.000000,0.250000,0,0);}
.mb_c00071{transform:matrix(0.258384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258384,0.000000,0.000000,0.250000,0,0);}
.m92_c00071{transform:matrix(0.258509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258509,0.000000,0.000000,0.250000,0,0);}
.m51_c00071{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m43_c00071{transform:matrix(0.258854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258854,0.000000,0.000000,0.250000,0,0);}
.mc6_c00071{transform:matrix(0.260176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260176,0.000000,0.000000,0.250000,0,0);}
.m9a_c00071{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m2a_c00071{transform:matrix(0.261243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261243,0.000000,0.000000,0.250000,0,0);}
.ma6_c00071{transform:matrix(0.261386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261386,0.000000,0.000000,0.250000,0,0);}
.m50_c00071{transform:matrix(0.263056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263056,0.000000,0.000000,0.250000,0,0);}
.m16_c00071{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m28_c00071{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.mbe_c00071{transform:matrix(0.264732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264732,0.000000,0.000000,0.250000,0,0);}
.m84_c00071{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m6a_c00071{transform:matrix(0.266603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266603,0.000000,0.000000,0.250000,0,0);}
.m8f_c00071{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.m9_c00071{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m7_c00071{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.m2d_c00071{transform:matrix(0.269049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269049,0.000000,0.000000,0.250000,0,0);}
.m1c_c00071{transform:matrix(0.269485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269485,0.000000,0.000000,0.250000,0,0);}
.m4c_c00071{transform:matrix(0.269568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269568,0.000000,0.000000,0.250000,0,0);}
.m38_c00071{transform:matrix(0.270008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270008,0.000000,0.000000,0.250000,0,0);}
.m58_c00071{transform:matrix(0.270451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270451,0.000000,0.000000,0.250000,0,0);}
.m20_c00071{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m18_c00071{transform:matrix(0.271003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271003,0.000000,0.000000,0.250000,0,0);}
.ma4_c00071{transform:matrix(0.271138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271138,0.000000,0.000000,0.250000,0,0);}
.m26_c00071{transform:matrix(0.271328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271328,0.000000,0.000000,0.250000,0,0);}
.m12_c00071{transform:matrix(0.271509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271509,0.000000,0.000000,0.250000,0,0);}
.m5a_c00071{transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);}
.mbf_c00071{transform:matrix(0.271614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271614,0.000000,0.000000,0.250000,0,0);}
.m25_c00071{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m1_c00071{transform:matrix(0.273069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273069,0.000000,0.000000,0.250000,0,0);}
.m14_c00071{transform:matrix(0.273396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273396,0.000000,0.000000,0.250000,0,0);}
.m9c_c00071{transform:matrix(0.273473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273473,0.000000,0.000000,0.250000,0,0);}
.m4f_c00071{transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);}
.m70_c00071{transform:matrix(0.275470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275470,0.000000,0.000000,0.250000,0,0);}
.mbb_c00071{transform:matrix(0.275482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275482,0.000000,0.000000,0.250000,0,0);}
.mb2_c00071{transform:matrix(0.275905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275905,0.000000,0.000000,0.250000,0,0);}
.m5e_c00071{transform:matrix(0.275990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275990,0.000000,0.000000,0.250000,0,0);}
.m31_c00071{transform:matrix(0.276405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276405,0.000000,0.000000,0.250000,0,0);}
.m21_c00071{transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);}
.m7d_c00071{transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);}
.m1d_c00071{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.ma5_c00071{transform:matrix(0.277266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277266,0.000000,0.000000,0.250000,0,0);}
.ma2_c00071{transform:matrix(0.277468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277468,0.000000,0.000000,0.250000,0,0);}
.m6d_c00071{transform:matrix(0.277902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277902,0.000000,0.000000,0.250000,0,0);}
.m80_c00071{transform:matrix(0.278006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278006,0.000000,0.000000,0.250000,0,0);}
.m8b_c00071{transform:matrix(0.278699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278699,0.000000,0.000000,0.250000,0,0);}
.m47_c00071{transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);}
.m6b_c00071{transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);}
.m2b_c00071{transform:matrix(0.279646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279646,0.000000,0.000000,0.250000,0,0);}
.ma8_c00071{transform:matrix(0.279764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279764,0.000000,0.000000,0.250000,0,0);}
.m2f_c00071{transform:matrix(0.279941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279941,0.000000,0.000000,0.250000,0,0);}
.m49_c00071{transform:matrix(0.280081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280081,0.000000,0.000000,0.250000,0,0);}
.m99_c00071{transform:matrix(0.280679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280679,0.000000,0.000000,0.250000,0,0);}
.m62_c00071{transform:matrix(0.280989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280989,0.000000,0.000000,0.250000,0,0);}
.m63_c00071{transform:matrix(0.281596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281596,0.000000,0.000000,0.250000,0,0);}
.m35_c00071{transform:matrix(0.282193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282193,0.000000,0.000000,0.250000,0,0);}
.m64_c00071{transform:matrix(0.282254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282254,0.000000,0.000000,0.250000,0,0);}
.m4a_c00071{transform:matrix(0.282587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282587,0.000000,0.000000,0.250000,0,0);}
.m75_c00071{transform:matrix(0.282744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282744,0.000000,0.000000,0.250000,0,0);}
.m8e_c00071{transform:matrix(0.283425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283425,0.000000,0.000000,0.250000,0,0);}
.m39_c00071{transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);}
.m23_c00071{transform:matrix(0.284361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284361,0.000000,0.000000,0.250000,0,0);}
.m27_c00071{transform:matrix(0.284484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284484,0.000000,0.000000,0.250000,0,0);}
.m3_c00071{transform:matrix(0.285047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285047,0.000000,0.000000,0.250000,0,0);}
.m33_c00071{transform:matrix(0.285050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285050,0.000000,0.000000,0.250000,0,0);}
.m57_c00071{transform:matrix(0.285120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285120,0.000000,0.000000,0.250000,0,0);}
.m5b_c00071{transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);}
.m59_c00071{transform:matrix(0.285653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285653,0.000000,0.000000,0.250000,0,0);}
.m36_c00071{transform:matrix(0.285688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285688,0.000000,0.000000,0.250000,0,0);}
.m91_c00071{transform:matrix(0.285920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285920,0.000000,0.000000,0.250000,0,0);}
.m7c_c00071{transform:matrix(0.286181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286181,0.000000,0.000000,0.250000,0,0);}
.mb1_c00071{transform:matrix(0.286383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286383,0.000000,0.000000,0.250000,0,0);}
.m65_c00071{transform:matrix(0.286904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286904,0.000000,0.000000,0.250000,0,0);}
.mc2_c00071{transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);}
.m8_c00071{transform:matrix(0.287057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287057,0.000000,0.000000,0.250000,0,0);}
.ma9_c00071{transform:matrix(0.287494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287494,0.000000,0.000000,0.250000,0,0);}
.m79_c00071{transform:matrix(0.288019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288019,0.000000,0.000000,0.250000,0,0);}
.m56_c00071{transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);}
.mc5_c00071{transform:matrix(0.288722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288722,0.000000,0.000000,0.250000,0,0);}
.m3c_c00071{transform:matrix(0.289208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289208,0.000000,0.000000,0.250000,0,0);}
.m41_c00071{transform:matrix(0.289356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289356,0.000000,0.000000,0.250000,0,0);}
.m7e_c00071{transform:matrix(0.289520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289520,0.000000,0.000000,0.250000,0,0);}
.m9f_c00071{transform:matrix(0.289717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289717,0.000000,0.000000,0.250000,0,0);}
.ma_c00071{transform:matrix(0.290915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290915,0.000000,0.000000,0.250000,0,0);}
.m4e_c00071{transform:matrix(0.291080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291080,0.000000,0.000000,0.250000,0,0);}
.m22_c00071{transform:matrix(0.291116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291116,0.000000,0.000000,0.250000,0,0);}
.m5f_c00071{transform:matrix(0.291407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291407,0.000000,0.000000,0.250000,0,0);}
.m29_c00071{transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);}
.m3f_c00071{transform:matrix(0.292030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292030,0.000000,0.000000,0.250000,0,0);}
.mb9_c00071{transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);}
.m81_c00071{transform:matrix(0.292334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292334,0.000000,0.000000,0.250000,0,0);}
.m7f_c00071{transform:matrix(0.292705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292705,0.000000,0.000000,0.250000,0,0);}
.m1f_c00071{transform:matrix(0.293028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293028,0.000000,0.000000,0.250000,0,0);}
.m46_c00071{transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);}
.maa_c00071{transform:matrix(0.295731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295731,0.000000,0.000000,0.250000,0,0);}
.m10_c00071{transform:matrix(0.296513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296513,0.000000,0.000000,0.250000,0,0);}
.m2e_c00071{transform:matrix(0.296777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296777,0.000000,0.000000,0.250000,0,0);}
.m19_c00071{transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);}
.mba_c00071{transform:matrix(0.297350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297350,0.000000,0.000000,0.250000,0,0);}
.m40_c00071{transform:matrix(0.297717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297717,0.000000,0.000000,0.250000,0,0);}
.mb4_c00071{transform:matrix(0.299810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299810,0.000000,0.000000,0.250000,0,0);}
.m17_c00071{transform:matrix(0.300013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300013,0.000000,0.000000,0.250000,0,0);}
.m4b_c00071{transform:matrix(0.300146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300146,0.000000,0.000000,0.250000,0,0);}
.mc3_c00071{transform:matrix(0.300674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300674,0.000000,0.000000,0.250000,0,0);}
.m45_c00071{transform:matrix(0.301172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301172,0.000000,0.000000,0.250000,0,0);}
.m85_c00071{transform:matrix(0.301637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301637,0.000000,0.000000,0.250000,0,0);}
.me_c00071{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m88_c00071{transform:matrix(0.303150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303150,0.000000,0.000000,0.250000,0,0);}
.mbc_c00071{transform:matrix(0.303483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303483,0.000000,0.000000,0.250000,0,0);}
.mb0_c00071{transform:matrix(0.303527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303527,0.000000,0.000000,0.250000,0,0);}
.m71_c00071{transform:matrix(0.303571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303571,0.000000,0.000000,0.250000,0,0);}
.m34_c00071{transform:matrix(0.304003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304003,0.000000,0.000000,0.250000,0,0);}
.m90_c00071{transform:matrix(0.304070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304070,0.000000,0.000000,0.250000,0,0);}
.m1a_c00071{transform:matrix(0.304665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304665,0.000000,0.000000,0.250000,0,0);}
.m95_c00071{transform:matrix(0.304768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304768,0.000000,0.000000,0.250000,0,0);}
.mc_c00071{transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);}
.mc1_c00071{transform:matrix(0.305880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305880,0.000000,0.000000,0.250000,0,0);}
.m44_c00071{transform:matrix(0.306667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306667,0.000000,0.000000,0.250000,0,0);}
.m68_c00071{transform:matrix(0.307943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307943,0.000000,0.000000,0.250000,0,0);}
.m5c_c00071{transform:matrix(0.309595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309595,0.000000,0.000000,0.250000,0,0);}
.ma3_c00071{transform:matrix(0.309625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309625,0.000000,0.000000,0.250000,0,0);}
.mb8_c00071{transform:matrix(0.310974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310974,0.000000,0.000000,0.250000,0,0);}
.md_c00071{transform:matrix(0.311143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311143,0.000000,0.000000,0.250000,0,0);}
.m13_c00071{transform:matrix(0.311435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311435,0.000000,0.000000,0.250000,0,0);}
.m67_c00071{transform:matrix(0.312083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312083,0.000000,0.000000,0.250000,0,0);}
.mb3_c00071{transform:matrix(0.312852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312852,0.000000,0.000000,0.250000,0,0);}
.m48_c00071{transform:matrix(0.312946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312946,0.000000,0.000000,0.250000,0,0);}
.m8c_c00071{transform:matrix(0.315617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315617,0.000000,0.000000,0.250000,0,0);}
.m69_c00071{transform:matrix(0.316006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316006,0.000000,0.000000,0.250000,0,0);}
.m74_c00071{transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);}
.m55_c00071{transform:matrix(0.316633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316633,0.000000,0.000000,0.250000,0,0);}
.m53_c00071{transform:matrix(0.317828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317828,0.000000,0.000000,0.250000,0,0);}
.m93_c00071{transform:matrix(0.318082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318082,0.000000,0.000000,0.250000,0,0);}
.m7a_c00071{transform:matrix(0.318160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318160,0.000000,0.000000,0.250000,0,0);}
.m94_c00071{transform:matrix(0.318560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318560,0.000000,0.000000,0.250000,0,0);}
.m3b_c00071{transform:matrix(0.319388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319388,0.000000,0.000000,0.250000,0,0);}
.m89_c00071{transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);}
.m3e_c00071{transform:matrix(0.320424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320424,0.000000,0.000000,0.250000,0,0);}
.m15_c00071{transform:matrix(0.320837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320837,0.000000,0.000000,0.250000,0,0);}
.m61_c00071{transform:matrix(0.320866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320866,0.000000,0.000000,0.250000,0,0);}
.m3a_c00071{transform:matrix(0.321032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321032,0.000000,0.000000,0.250000,0,0);}
.m73_c00071{transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);}
.mac_c00071{transform:matrix(0.321992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321992,0.000000,0.000000,0.250000,0,0);}
.m4_c00071{transform:matrix(0.322980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322980,0.000000,0.000000,0.250000,0,0);}
.m9b_c00071{transform:matrix(0.323539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323539,0.000000,0.000000,0.250000,0,0);}
.m32_c00071{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.maf_c00071{transform:matrix(0.325206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325206,0.000000,0.000000,0.250000,0,0);}
.m8d_c00071{transform:matrix(0.325212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325212,0.000000,0.000000,0.250000,0,0);}
.mc4_c00071{transform:matrix(0.329576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329576,0.000000,0.000000,0.250000,0,0);}
.m78_c00071{transform:matrix(0.330111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330111,0.000000,0.000000,0.250000,0,0);}
.ma7_c00071{transform:matrix(0.330718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330718,0.000000,0.000000,0.250000,0,0);}
.m11_c00071{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m9e_c00071{transform:matrix(0.333799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333799,0.000000,0.000000,0.250000,0,0);}
.m8a_c00071{transform:matrix(0.334866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334866,0.000000,0.000000,0.250000,0,0);}
.m4d_c00071{transform:matrix(0.336230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336230,0.000000,0.000000,0.250000,0,0);}
.m82_c00071{transform:matrix(0.337129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337129,0.000000,0.000000,0.250000,0,0);}
.m98_c00071{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);}
.m77_c00071{transform:matrix(0.337545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337545,0.000000,0.000000,0.250000,0,0);}
.m60_c00071{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m9d_c00071{transform:matrix(0.340270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340270,0.000000,0.000000,0.250000,0,0);}
.m1e_c00071{transform:matrix(0.342366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342366,0.000000,0.000000,0.250000,0,0);}
.m24_c00071{transform:matrix(0.343033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343033,0.000000,0.000000,0.250000,0,0);}
.ma1_c00071{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.m3d_c00071{transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);}
.m30_c00071{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.mab_c00071{transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);}
.m6f_c00071{transform:matrix(0.354899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354899,0.000000,0.000000,0.250000,0,0);}
.m6_c00071{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.mae_c00071{transform:matrix(0.361926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361926,0.000000,0.000000,0.250000,0,0);}
.m1b_c00071{transform:matrix(0.372387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372387,0.000000,0.000000,0.250000,0,0);}
.m2c_c00071{transform:matrix(0.385852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385852,0.000000,0.000000,0.250000,0,0);}
.v0_c00071{vertical-align:0.000000px;}
.v1_c00071{vertical-align:15.681600px;}
.ls14_c00071{letter-spacing:-3.853080px;}
.ls7_c00071{letter-spacing:-2.744280px;}
.lsc_c00071{letter-spacing:-1.897474px;}
.ls12_c00071{letter-spacing:-1.764180px;}
.ls8_c00071{letter-spacing:0.000000px;}
.lse_c00071{letter-spacing:0.439085px;}
.lsb_c00071{letter-spacing:0.533174px;}
.ls11_c00071{letter-spacing:0.933055px;}
.lsa_c00071{letter-spacing:1.819066px;}
.ls1_c00071{letter-spacing:2.477693px;}
.ls4_c00071{letter-spacing:3.177900px;}
.ls13_c00071{letter-spacing:3.246091px;}
.lsd_c00071{letter-spacing:3.653813px;}
.ls5_c00071{letter-spacing:3.810629px;}
.ls0_c00071{letter-spacing:3.912559px;}
.ls6_c00071{letter-spacing:3.920400px;}
.ls3_c00071{letter-spacing:4.296610px;}
.ls2_c00071{letter-spacing:13.878216px;}
.ls15_c00071{letter-spacing:31.363200px;}
.ls9_c00071{letter-spacing:48.470598px;}
.ls10_c00071{letter-spacing:49.896198px;}
.lsf_c00071{letter-spacing:51.321798px;}
.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;}
}
.ws1_c00071{word-spacing:-23.255813px;}
.ws0_c00071{word-spacing:-19.602000px;}
.ws2_c00071{word-spacing:0.000000px;}
._4_c00071{margin-left:-2.979504px;}
._7_c00071{width:5.394074px;}
._5_c00071{width:7.919208px;}
._3_c00071{width:9.173736px;}
._0_c00071{width:19.554955px;}
._2_c00071{width:20.856528px;}
._1_c00071{width:25.948930px;}
._6_c00071{width:38.654748px;}
.fc0_c00071{color:transparent;}
.fs3_c00071{font-size:22.176000px;}
.fse_c00071{font-size:22.374000px;}
.fs6_c00071{font-size:22.572000px;}
.fsc_c00071{font-size:25.146000px;}
.fsd_c00071{font-size:31.363200px;}
.fsb_c00071{font-size:37.818000px;}
.fs4_c00071{font-size:48.470598px;}
.fs9_c00071{font-size:49.896198px;}
.fs7_c00071{font-size:51.321798px;}
.fs1_c00071{font-size:63.558000px;}
.fs8_c00071{font-size:66.330000px;}
.fs2_c00071{font-size:78.408000px;}
.fs5_c00071{font-size:78.804000px;}
.fs0_c00071{font-size:85.932198px;}
.fsa_c00071{font-size:110.088000px;}
.y0_c00071{bottom:0.000000px;}
.y22_c00071{bottom:52.654185px;}
.y1_c00071{bottom:76.500000px;}
.y21_c00071{bottom:77.963535px;}
.y20_c00071{bottom:88.294185px;}
.y1f_c00071{bottom:104.693535px;}
.y1e_c00071{bottom:149.243535px;}
.y1d_c00071{bottom:181.314585px;}
.y1c_c00071{bottom:214.464735px;}
.y1b_c00071{bottom:246.897135px;}
.y1a_c00071{bottom:279.324585px;}
.y19_c00071{bottom:311.400585px;}
.y18_c00071{bottom:343.832985px;}
.y17_c00071{bottom:407.984985px;}
.y16_c00071{bottom:441.135135px;}
.y15_c00071{bottom:473.206185px;}
.y14_c00071{bottom:506.351385px;}
.y13_c00071{bottom:538.783785px;}
.y12_c00071{bottom:571.933935px;}
.y11_c00071{bottom:571.939875px;}
.y10_c00071{bottom:604.361385px;}
.yf_c00071{bottom:632.878335px;}
.ye_c00071{bottom:636.793785px;}
.yd_c00071{bottom:668.874735px;}
.yc_c00071{bottom:701.307135px;}
.yb_c00071{bottom:716.983785px;}
.ya_c00071{bottom:733.739535px;}
.y9_c00071{bottom:766.528335px;}
.y8_c00071{bottom:798.955785px;}
.y7_c00071{bottom:831.749535px;}
.y6_c00071{bottom:864.894735px;}
.y5_c00071{bottom:898.034985px;}
.y4_c00071{bottom:922.982985px;}
.y3_c00071{bottom:930.472335px;}
.y2_c00071{bottom:1089.065385px;}
.h10_c00071{height:20.887891px;}
.h11_c00071{height:21.958857px;}
.h5_c00071{height:23.128875px;}
.h8_c00071{height:23.541891px;}
.hf_c00071{height:26.226492px;}
.h6_c00071{height:32.281418px;}
.hc_c00071{height:33.230868px;}
.ha_c00071{height:34.180317px;}
.he_c00071{height:37.116299px;}
.h3_c00071{height:66.289008px;}
.hb_c00071{height:69.180117px;}
.h4_c00071{height:76.953164px;}
.h7_c00071{height:77.341816px;}
.h2_c00071{height:84.337753px;}
.h9_c00071{height:92.634764px;}
.hd_c00071{height:114.818344px;}
.h1_c00071{height:1110.000000px;}
.h0_c00071{height:1263.000000px;}
.w1_c00071{width:733.500000px;}
.w0_c00071{width:892.500000px;}
.x0_c00071{left:0.000000px;}
.xf_c00071{left:56.276085px;}
.x4a_c00071{left:57.860085px;}
.x5b_c00071{left:59.597535px;}
.x1_c00071{left:79.500000px;}
.x1f_c00071{left:89.619285px;}
.x17_c00071{left:99.761835px;}
.x4f_c00071{left:101.741835px;}
.x63_c00071{left:102.766485px;}
.x20_c00071{left:110.493435px;}
.x3_c00071{left:112.582335px;}
.x10_c00071{left:123.091185px;}
.x2b_c00071{left:133.703985px;}
.x53_c00071{left:134.882085px;}
.x68_c00071{left:136.485885px;}
.x37_c00071{left:144.425685px;}
.x4_c00071{left:145.608735px;}
.x18_c00071{left:155.914635px;}
.x11_c00071{left:167.264985px;}
.x2c_c00071{left:177.664935px;}
.x5d_c00071{left:179.041035px;}
.x19_c00071{left:189.059835px;}
.x3d_c00071{left:190.104285px;}
.x38_c00071{left:199.974585px;}
.x64_c00071{left:209.874585px;}
.x2d_c00071{left:211.839735px;}
.x43_c00071{left:222.917835px;}
.x58_c00071{left:233.961285px;}
.x5_c00071{left:236.035335px;}
.x12_c00071{left:244.871085px;}
.x25_c00071{left:255.706635px;}
.x4b_c00071{left:257.449035px;}
.x21_c00071{left:266.190735px;}
.x54_c00071{left:267.398535px;}
.x2e_c00071{left:277.244085px;}
.x13_c00071{left:278.367735px;}
.x26_c00071{left:289.237935px;}
.x1a_c00071{left:299.330985px;}
.x39_c00071{left:301.083285px;}
.x6_c00071{left:310.904085px;}
.x59_c00071{left:312.715785px;}
.x27_c00071{left:321.997035px;}
.x32_c00071{left:333.411735px;}
.x22_c00071{left:343.222635px;}
.x44_c00071{left:345.133335px;}
.x14_c00071{left:355.137285px;}
.x4d_c00071{left:356.404485px;}
.x28_c00071{left:367.131135px;}
.x5c_c00071{left:378.045885px;}
.x69_c00071{left:379.238835px;}
.x36_c00071{left:382.292985px;}
.x23_c00071{left:388.079535px;}
.x15_c00071{left:389.302185px;}
.x2f_c00071{left:400.028835px;}
.x29_c00071{left:401.093085px;}
.x7_c00071{left:410.780235px;}
.x3e_c00071{left:412.700835px;}
.x45_c00071{left:422.496885px;}
.x60_c00071{left:423.526485px;}
.x8_c00071{left:432.431535px;}
.x55_c00071{left:434.198685px;}
.x33_c00071{left:442.658235px;}
.x30_c00071{left:443.697735px;}
.x46_c00071{left:444.836235px;}
.x4c_c00071{left:456.008385px;}
.x9_c00071{left:466.329135px;}
.x3f_c00071{left:476.105385px;}
.xe_c00071{left:477.862635px;}
.x1b_c00071{left:487.945785px;}
.x47_c00071{left:489.128835px;}
.x65_c00071{left:490.202985px;}
.xa_c00071{left:499.108035px;}
.x56_c00071{left:500.192085px;}
.x6a_c00071{left:501.241485px;}
.x16_c00071{left:510.156435px;}
.x66_c00071{left:511.240485px;}
.x3b_c00071{left:522.259185px;}
.x5e_c00071{left:523.298685px;}
.x31_c00071{left:532.485885px;}
.x57_c00071{left:533.495685px;}
.x61_c00071{left:534.683685px;}
.x1c_c00071{left:542.960085px;}
.x34_c00071{left:544.004535px;}
.xb_c00071{left:554.008485px;}
.x4e_c00071{left:555.414285px;}
.x1d_c00071{left:565.378635px;}
.x50_c00071{left:566.828985px;}
.x67_c00071{left:568.056585px;}
.x35_c00071{left:575.986485px;}
.x40_c00071{left:577.050735px;}
.x48_c00071{left:578.134785px;}
.xc_c00071{left:586.604235px;}
.x62_c00071{left:588.940635px;}
.x24_c00071{left:597.647685px;}
.xd_c00071{left:599.083185px;}
.x3a_c00071{left:609.839535px;}
.x51_c00071{left:610.908735px;}
.x49_c00071{left:621.249285px;}
.x5f_c00071{left:623.184735px;}
.x2_c00071{left:630.931485px;}
.x5a_c00071{left:633.698535px;}
.x3c_c00071{left:643.286685px;}
.x41_c00071{left:644.449935px;}
.x1e_c00071{left:654.107385px;}
.x52_c00071{left:655.879485px;}
.x2a_c00071{left:665.561685px;}
.x42_c00071{left:670.699785px;}
.x6b_c00071{left:671.778885px;}
.x6c_c00071{left:676.367535px;}
.x6d_c00071{left:677.713935px;}
@media print{
.v0_c00071{vertical-align:0.000000pt;}
.v1_c00071{vertical-align:13.939200pt;}
.ls14_c00071{letter-spacing:-3.424960pt;}
.ls7_c00071{letter-spacing:-2.439360pt;}
.lsc_c00071{letter-spacing:-1.686643pt;}
.ls12_c00071{letter-spacing:-1.568160pt;}
.ls8_c00071{letter-spacing:0.000000pt;}
.lse_c00071{letter-spacing:0.390298pt;}
.lsb_c00071{letter-spacing:0.473933pt;}
.ls11_c00071{letter-spacing:0.829382pt;}
.lsa_c00071{letter-spacing:1.616947pt;}
.ls1_c00071{letter-spacing:2.202394pt;}
.ls4_c00071{letter-spacing:2.824800pt;}
.ls13_c00071{letter-spacing:2.885414pt;}
.lsd_c00071{letter-spacing:3.247834pt;}
.ls5_c00071{letter-spacing:3.387226pt;}
.ls0_c00071{letter-spacing:3.477830pt;}
.ls6_c00071{letter-spacing:3.484800pt;}
.ls3_c00071{letter-spacing:3.819209pt;}
.ls2_c00071{letter-spacing:12.336192pt;}
.ls15_c00071{letter-spacing:27.878400pt;}
.ls9_c00071{letter-spacing:43.084976pt;}
.ls10_c00071{letter-spacing:44.352176pt;}
.lsf_c00071{letter-spacing:45.619376pt;}
.ws1_c00071{word-spacing:-20.671834pt;}
.ws0_c00071{word-spacing:-17.424000pt;}
.ws2_c00071{word-spacing:0.000000pt;}
._4_c00071{margin-left:-2.648448pt;}
._7_c00071{width:4.794733pt;}
._5_c00071{width:7.039296pt;}
._3_c00071{width:8.154432pt;}
._0_c00071{width:17.382182pt;}
._2_c00071{width:18.539136pt;}
._1_c00071{width:23.065715pt;}
._6_c00071{width:34.359776pt;}
.fs3_c00071{font-size:19.712000pt;}
.fse_c00071{font-size:19.888000pt;}
.fs6_c00071{font-size:20.064000pt;}
.fsc_c00071{font-size:22.352000pt;}
.fsd_c00071{font-size:27.878400pt;}
.fsb_c00071{font-size:33.616000pt;}
.fs4_c00071{font-size:43.084976pt;}
.fs9_c00071{font-size:44.352176pt;}
.fs7_c00071{font-size:45.619376pt;}
.fs1_c00071{font-size:56.496000pt;}
.fs8_c00071{font-size:58.960000pt;}
.fs2_c00071{font-size:69.696000pt;}
.fs5_c00071{font-size:70.048000pt;}
.fs0_c00071{font-size:76.384176pt;}
.fsa_c00071{font-size:97.856000pt;}
.y0_c00071{bottom:0.000000pt;}
.y22_c00071{bottom:46.803720pt;}
.y1_c00071{bottom:68.000000pt;}
.y21_c00071{bottom:69.300920pt;}
.y20_c00071{bottom:78.483720pt;}
.y1f_c00071{bottom:93.060920pt;}
.y1e_c00071{bottom:132.660920pt;}
.y1d_c00071{bottom:161.168520pt;}
.y1c_c00071{bottom:190.635320pt;}
.y1b_c00071{bottom:219.464120pt;}
.y1a_c00071{bottom:248.288520pt;}
.y19_c00071{bottom:276.800520pt;}
.y18_c00071{bottom:305.629320pt;}
.y17_c00071{bottom:362.653320pt;}
.y16_c00071{bottom:392.120120pt;}
.y15_c00071{bottom:420.627720pt;}
.y14_c00071{bottom:450.090120pt;}
.y13_c00071{bottom:478.918920pt;}
.y12_c00071{bottom:508.385720pt;}
.y11_c00071{bottom:508.391000pt;}
.y10_c00071{bottom:537.210120pt;}
.yf_c00071{bottom:562.558520pt;}
.ye_c00071{bottom:566.038920pt;}
.yd_c00071{bottom:594.555320pt;}
.yc_c00071{bottom:623.384120pt;}
.yb_c00071{bottom:637.318920pt;}
.ya_c00071{bottom:652.212920pt;}
.y9_c00071{bottom:681.358520pt;}
.y8_c00071{bottom:710.182920pt;}
.y7_c00071{bottom:739.332920pt;}
.y6_c00071{bottom:768.795320pt;}
.y5_c00071{bottom:798.253320pt;}
.y4_c00071{bottom:820.429320pt;}
.y3_c00071{bottom:827.086520pt;}
.y2_c00071{bottom:968.058120pt;}
.h10_c00071{height:18.567014pt;}
.h11_c00071{height:19.518984pt;}
.h5_c00071{height:20.559000pt;}
.h8_c00071{height:20.926125pt;}
.hf_c00071{height:23.312438pt;}
.h6_c00071{height:28.694594pt;}
.hc_c00071{height:29.538549pt;}
.ha_c00071{height:30.382504pt;}
.he_c00071{height:32.992266pt;}
.h3_c00071{height:58.923563pt;}
.hb_c00071{height:61.493438pt;}
.h4_c00071{height:68.402813pt;}
.h7_c00071{height:68.748281pt;}
.h2_c00071{height:74.966891pt;}
.h9_c00071{height:82.342012pt;}
.hd_c00071{height:102.060750pt;}
.h1_c00071{height:986.666667pt;}
.h0_c00071{height:1122.666667pt;}
.w1_c00071{width:652.000000pt;}
.w0_c00071{width:793.333333pt;}
.x0_c00071{left:0.000000pt;}
.xf_c00071{left:50.023187pt;}
.x4a_c00071{left:51.431187pt;}
.x5b_c00071{left:52.975587pt;}
.x1_c00071{left:70.666667pt;}
.x1f_c00071{left:79.661587pt;}
.x17_c00071{left:88.677187pt;}
.x4f_c00071{left:90.437187pt;}
.x63_c00071{left:91.347987pt;}
.x20_c00071{left:98.216387pt;}
.x3_c00071{left:100.073187pt;}
.x10_c00071{left:109.414387pt;}
.x2b_c00071{left:118.847987pt;}
.x53_c00071{left:119.895187pt;}
.x68_c00071{left:121.320787pt;}
.x37_c00071{left:128.378387pt;}
.x4_c00071{left:129.429987pt;}
.x18_c00071{left:138.590787pt;}
.x11_c00071{left:148.679987pt;}
.x2c_c00071{left:157.924387pt;}
.x5d_c00071{left:159.147587pt;}
.x19_c00071{left:168.053187pt;}
.x3d_c00071{left:168.981587pt;}
.x38_c00071{left:177.755187pt;}
.x64_c00071{left:186.555187pt;}
.x2d_c00071{left:188.301987pt;}
.x43_c00071{left:198.149187pt;}
.x58_c00071{left:207.965587pt;}
.x5_c00071{left:209.809187pt;}
.x12_c00071{left:217.663187pt;}
.x25_c00071{left:227.294787pt;}
.x4b_c00071{left:228.843587pt;}
.x21_c00071{left:236.613987pt;}
.x54_c00071{left:237.687587pt;}
.x2e_c00071{left:246.439187pt;}
.x13_c00071{left:247.437987pt;}
.x26_c00071{left:257.100387pt;}
.x1a_c00071{left:266.071987pt;}
.x39_c00071{left:267.629587pt;}
.x6_c00071{left:276.359187pt;}
.x59_c00071{left:277.969587pt;}
.x27_c00071{left:286.219587pt;}
.x32_c00071{left:296.365987pt;}
.x22_c00071{left:305.086787pt;}
.x44_c00071{left:306.785187pt;}
.x14_c00071{left:315.677587pt;}
.x4d_c00071{left:316.803987pt;}
.x28_c00071{left:326.338787pt;}
.x5c_c00071{left:336.040787pt;}
.x69_c00071{left:337.101187pt;}
.x36_c00071{left:339.815987pt;}
.x23_c00071{left:344.959587pt;}
.x15_c00071{left:346.046387pt;}
.x2f_c00071{left:355.581187pt;}
.x29_c00071{left:356.527187pt;}
.x7_c00071{left:365.137987pt;}
.x3e_c00071{left:366.845187pt;}
.x45_c00071{left:375.552787pt;}
.x60_c00071{left:376.467987pt;}
.x8_c00071{left:384.383587pt;}
.x55_c00071{left:385.954387pt;}
.x33_c00071{left:393.473987pt;}
.x30_c00071{left:394.397987pt;}
.x46_c00071{left:395.409987pt;}
.x4c_c00071{left:405.340787pt;}
.x9_c00071{left:414.514787pt;}
.x3f_c00071{left:423.204787pt;}
.xe_c00071{left:424.766787pt;}
.x1b_c00071{left:433.729587pt;}
.x47_c00071{left:434.781187pt;}
.x65_c00071{left:435.735987pt;}
.xa_c00071{left:443.651587pt;}
.x56_c00071{left:444.615187pt;}
.x6a_c00071{left:445.547987pt;}
.x16_c00071{left:453.472387pt;}
.x66_c00071{left:454.435987pt;}
.x3b_c00071{left:464.230387pt;}
.x5e_c00071{left:465.154387pt;}
.x31_c00071{left:473.320787pt;}
.x57_c00071{left:474.218387pt;}
.x61_c00071{left:475.274387pt;}
.x1c_c00071{left:482.631187pt;}
.x34_c00071{left:483.559587pt;}
.xb_c00071{left:492.451987pt;}
.x4e_c00071{left:493.701587pt;}
.x1d_c00071{left:502.558787pt;}
.x50_c00071{left:503.847987pt;}
.x67_c00071{left:504.939187pt;}
.x35_c00071{left:511.987987pt;}
.x40_c00071{left:512.933987pt;}
.x48_c00071{left:513.897587pt;}
.xc_c00071{left:521.425987pt;}
.x62_c00071{left:523.502787pt;}
.x24_c00071{left:531.242387pt;}
.xd_c00071{left:532.518387pt;}
.x3a_c00071{left:542.079587pt;}
.x51_c00071{left:543.029987pt;}
.x49_c00071{left:552.221587pt;}
.x5f_c00071{left:553.941987pt;}
.x2_c00071{left:560.827987pt;}
.x5a_c00071{left:563.287587pt;}
.x3c_c00071{left:571.810387pt;}
.x41_c00071{left:572.844387pt;}
.x1e_c00071{left:581.428787pt;}
.x52_c00071{left:583.003987pt;}
.x2a_c00071{left:591.610387pt;}
.x42_c00071{left:596.177587pt;}
.x6b_c00071{left:597.136787pt;}
.x6c_c00071{left:601.215587pt;}
.x6d_c00071{left:602.412387pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_79590eb368609f8fcf73a600.woff2')format("woff");}.ff1_c00072{font-family:ff1_c00072;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00072;src:url('chunks/assets/font_fdee501c3b0091a1bfaaa6c6.woff2')format("woff");}.ff2_c00072{font-family:ff2_c00072;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00072;src:url('chunks/assets/font_288aed506937d6676a70c7c2.woff2')format("woff");}.ff3_c00072{font-family:ff3_c00072;line-height:0.666000;font-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_c00072{transform:matrix(0.050001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050001,0.000000,0.000000,0.250000,0,0);}
.m91_c00072{transform:matrix(0.138096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138096,0.000000,0.000000,0.250000,0,0);}
.m80_c00072{transform:matrix(0.182292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182292,0.000000,0.000000,0.250000,0,0);}
.ma5_c00072{transform:matrix(0.198177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198177,0.000000,0.000000,0.250000,0,0);}
.m90_c00072{transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);}
.m81_c00072{transform:matrix(0.241287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241287,0.000000,0.000000,0.250000,0,0);}
.ma7_c00072{transform:matrix(0.241340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241340,0.000000,0.000000,0.250000,0,0);}
.m1_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);}
.m83_c00072{transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);}
.m28_c00072{transform:matrix(0.252748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252748,0.000000,0.000000,0.250000,0,0);}
.m15_c00072{transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);}
.m8c_c00072{transform:matrix(0.254519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254519,0.000000,0.000000,0.250000,0,0);}
.m2d_c00072{transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);}
.me_c00072{transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);}
.m0_c00072{transform:matrix(0.258404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258404,0.000000,0.000000,0.250000,0,0);}
.m57_c00072{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m75_c00072{transform:matrix(0.258924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258924,0.000000,0.000000,0.250000,0,0);}
.m3a_c00072{transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);}
.m3d_c00072{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.ma1_c00072{transform:matrix(0.260961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260961,0.000000,0.000000,0.250000,0,0);}
.m1d_c00072{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.m9d_c00072{transform:matrix(0.261730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261730,0.000000,0.000000,0.250000,0,0);}
.m8a_c00072{transform:matrix(0.261735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261735,0.000000,0.000000,0.250000,0,0);}
.m37_c00072{transform:matrix(0.262649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262649,0.000000,0.000000,0.250000,0,0);}
.m84_c00072{transform:matrix(0.262722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262722,0.000000,0.000000,0.250000,0,0);}
.m4_c00072{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m18_c00072{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m26_c00072{transform:matrix(0.264128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264128,0.000000,0.000000,0.250000,0,0);}
.m10_c00072{transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);}
.m35_c00072{transform:matrix(0.267304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267304,0.000000,0.000000,0.250000,0,0);}
.m42_c00072{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m49_c00072{transform:matrix(0.267967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267967,0.000000,0.000000,0.250000,0,0);}
.m31_c00072{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.m87_c00072{transform:matrix(0.269248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269248,0.000000,0.000000,0.250000,0,0);}
.m3c_c00072{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m2e_c00072{transform:matrix(0.271124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271124,0.000000,0.000000,0.250000,0,0);}
.m20_c00072{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m95_c00072{transform:matrix(0.272591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272591,0.000000,0.000000,0.250000,0,0);}
.m70_c00072{transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);}
.m8b_c00072{transform:matrix(0.273617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273617,0.000000,0.000000,0.250000,0,0);}
.m7f_c00072{transform:matrix(0.273890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273890,0.000000,0.000000,0.250000,0,0);}
.m16_c00072{transform:matrix(0.274027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274027,0.000000,0.000000,0.250000,0,0);}
.mc_c00072{transform:matrix(0.275282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275282,0.000000,0.000000,0.250000,0,0);}
.m9f_c00072{transform:matrix(0.275286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275286,0.000000,0.000000,0.250000,0,0);}
.m51_c00072{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m67_c00072{transform:matrix(0.275570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275570,0.000000,0.000000,0.250000,0,0);}
.m4a_c00072{transform:matrix(0.276723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276723,0.000000,0.000000,0.250000,0,0);}
.m9b_c00072{transform:matrix(0.276824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276824,0.000000,0.000000,0.250000,0,0);}
.m93_c00072{transform:matrix(0.277360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277360,0.000000,0.000000,0.250000,0,0);}
.m5_c00072{transform:matrix(0.278381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278381,0.000000,0.000000,0.250000,0,0);}
.m9e_c00072{transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);}
.mb_c00072{transform:matrix(0.278778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278778,0.000000,0.000000,0.250000,0,0);}
.m17_c00072{transform:matrix(0.279390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279390,0.000000,0.000000,0.250000,0,0);}
.m8d_c00072{transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);}
.m30_c00072{transform:matrix(0.279479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279479,0.000000,0.000000,0.250000,0,0);}
.m97_c00072{transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);}
.mf_c00072{transform:matrix(0.280794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280794,0.000000,0.000000,0.250000,0,0);}
.m6b_c00072{transform:matrix(0.281539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281539,0.000000,0.000000,0.250000,0,0);}
.m92_c00072{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.m9a_c00072{transform:matrix(0.282066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282066,0.000000,0.000000,0.250000,0,0);}
.m98_c00072{transform:matrix(0.282412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282412,0.000000,0.000000,0.250000,0,0);}
.m22_c00072{transform:matrix(0.282913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282913,0.000000,0.000000,0.250000,0,0);}
.m44_c00072{transform:matrix(0.282940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282940,0.000000,0.000000,0.250000,0,0);}
.m7e_c00072{transform:matrix(0.282956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282956,0.000000,0.000000,0.250000,0,0);}
.m4f_c00072{transform:matrix(0.283022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283022,0.000000,0.000000,0.250000,0,0);}
.m14_c00072{transform:matrix(0.284361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284361,0.000000,0.000000,0.250000,0,0);}
.ma3_c00072{transform:matrix(0.284607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284607,0.000000,0.000000,0.250000,0,0);}
.m33_c00072{transform:matrix(0.285273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285273,0.000000,0.000000,0.250000,0,0);}
.m86_c00072{transform:matrix(0.285552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285552,0.000000,0.000000,0.250000,0,0);}
.m38_c00072{transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);}
.m99_c00072{transform:matrix(0.285765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285765,0.000000,0.000000,0.250000,0,0);}
.m1b_c00072{transform:matrix(0.288229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288229,0.000000,0.000000,0.250000,0,0);}
.m64_c00072{transform:matrix(0.288623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288623,0.000000,0.000000,0.250000,0,0);}
.m29_c00072{transform:matrix(0.288974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288974,0.000000,0.000000,0.250000,0,0);}
.m48_c00072{transform:matrix(0.290583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290583,0.000000,0.000000,0.250000,0,0);}
.m54_c00072{transform:matrix(0.290799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290799,0.000000,0.000000,0.250000,0,0);}
.m65_c00072{transform:matrix(0.290898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290898,0.000000,0.000000,0.250000,0,0);}
.m5d_c00072{transform:matrix(0.291532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291532,0.000000,0.000000,0.250000,0,0);}
.m78_c00072{transform:matrix(0.292388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292388,0.000000,0.000000,0.250000,0,0);}
.m77_c00072{transform:matrix(0.293066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293066,0.000000,0.000000,0.250000,0,0);}
.m9_c00072{transform:matrix(0.293077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293077,0.000000,0.000000,0.250000,0,0);}
.m7a_c00072{transform:matrix(0.293171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293171,0.000000,0.000000,0.250000,0,0);}
.m4b_c00072{transform:matrix(0.293422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293422,0.000000,0.000000,0.250000,0,0);}
.m85_c00072{transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);}
.m4c_c00072{transform:matrix(0.293847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293847,0.000000,0.000000,0.250000,0,0);}
.m27_c00072{transform:matrix(0.293883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293883,0.000000,0.000000,0.250000,0,0);}
.m73_c00072{transform:matrix(0.294550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294550,0.000000,0.000000,0.250000,0,0);}
.m3b_c00072{transform:matrix(0.294675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294675,0.000000,0.000000,0.250000,0,0);}
.m71_c00072{transform:matrix(0.294701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294701,0.000000,0.000000,0.250000,0,0);}
.m89_c00072{transform:matrix(0.295248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295248,0.000000,0.000000,0.250000,0,0);}
.m9c_c00072{transform:matrix(0.295864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295864,0.000000,0.000000,0.250000,0,0);}
.m55_c00072{transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);}
.m53_c00072{transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);}
.m32_c00072{transform:matrix(0.296989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296989,0.000000,0.000000,0.250000,0,0);}
.m36_c00072{transform:matrix(0.297056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297056,0.000000,0.000000,0.250000,0,0);}
.m52_c00072{transform:matrix(0.297583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297583,0.000000,0.000000,0.250000,0,0);}
.m43_c00072{transform:matrix(0.297966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297966,0.000000,0.000000,0.250000,0,0);}
.m62_c00072{transform:matrix(0.298149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298149,0.000000,0.000000,0.250000,0,0);}
.m6d_c00072{transform:matrix(0.299446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299446,0.000000,0.000000,0.250000,0,0);}
.m2a_c00072{transform:matrix(0.301360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301360,0.000000,0.000000,0.250000,0,0);}
.m4e_c00072{transform:matrix(0.301600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301600,0.000000,0.000000,0.250000,0,0);}
.m8f_c00072{transform:matrix(0.301637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301637,0.000000,0.000000,0.250000,0,0);}
.m7_c00072{transform:matrix(0.301648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301648,0.000000,0.000000,0.250000,0,0);}
.m68_c00072{transform:matrix(0.301665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301665,0.000000,0.000000,0.250000,0,0);}
.m5a_c00072{transform:matrix(0.301729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301729,0.000000,0.000000,0.250000,0,0);}
.m96_c00072{transform:matrix(0.301818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301818,0.000000,0.000000,0.250000,0,0);}
.m7c_c00072{transform:matrix(0.302348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302348,0.000000,0.000000,0.250000,0,0);}
.ma2_c00072{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m2b_c00072{transform:matrix(0.303198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303198,0.000000,0.000000,0.250000,0,0);}
.m6e_c00072{transform:matrix(0.303779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303779,0.000000,0.000000,0.250000,0,0);}
.m24_c00072{transform:matrix(0.304045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304045,0.000000,0.000000,0.250000,0,0);}
.m3f_c00072{transform:matrix(0.306098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306098,0.000000,0.000000,0.250000,0,0);}
.m1a_c00072{transform:matrix(0.306111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306111,0.000000,0.000000,0.250000,0,0);}
.m5e_c00072{transform:matrix(0.306170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306170,0.000000,0.000000,0.250000,0,0);}
.m1f_c00072{transform:matrix(0.306598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306598,0.000000,0.000000,0.250000,0,0);}
.m2_c00072{transform:matrix(0.307020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307020,0.000000,0.000000,0.250000,0,0);}
.m56_c00072{transform:matrix(0.307213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307213,0.000000,0.000000,0.250000,0,0);}
.m5c_c00072{transform:matrix(0.308528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308528,0.000000,0.000000,0.250000,0,0);}
.m5b_c00072{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m60_c00072{transform:matrix(0.308646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308646,0.000000,0.000000,0.250000,0,0);}
.m4d_c00072{transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);}
.m66_c00072{transform:matrix(0.310383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310383,0.000000,0.000000,0.250000,0,0);}
.m2c_c00072{transform:matrix(0.310499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310499,0.000000,0.000000,0.250000,0,0);}
.m61_c00072{transform:matrix(0.310665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310665,0.000000,0.000000,0.250000,0,0);}
.m6f_c00072{transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);}
.m12_c00072{transform:matrix(0.311768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311768,0.000000,0.000000,0.250000,0,0);}
.m88_c00072{transform:matrix(0.311944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311944,0.000000,0.000000,0.250000,0,0);}
.m72_c00072{transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);}
.ma4_c00072{transform:matrix(0.312163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312163,0.000000,0.000000,0.250000,0,0);}
.m25_c00072{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.m5f_c00072{transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);}
.m3e_c00072{transform:matrix(0.315247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315247,0.000000,0.000000,0.250000,0,0);}
.m40_c00072{transform:matrix(0.315418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315418,0.000000,0.000000,0.250000,0,0);}
.m76_c00072{transform:matrix(0.316884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316884,0.000000,0.000000,0.250000,0,0);}
.m6c_c00072{transform:matrix(0.317995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317995,0.000000,0.000000,0.250000,0,0);}
.m59_c00072{transform:matrix(0.320064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320064,0.000000,0.000000,0.250000,0,0);}
.m3_c00072{transform:matrix(0.320893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320893,0.000000,0.000000,0.250000,0,0);}
.m13_c00072{transform:matrix(0.320929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320929,0.000000,0.000000,0.250000,0,0);}
.ma8_c00072{transform:matrix(0.321407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321407,0.000000,0.000000,0.250000,0,0);}
.m63_c00072{transform:matrix(0.322672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322672,0.000000,0.000000,0.250000,0,0);}
.m23_c00072{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.m58_c00072{transform:matrix(0.324455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324455,0.000000,0.000000,0.250000,0,0);}
.m6a_c00072{transform:matrix(0.324720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324720,0.000000,0.000000,0.250000,0,0);}
.ma_c00072{transform:matrix(0.324775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324775,0.000000,0.000000,0.250000,0,0);}
.m50_c00072{transform:matrix(0.325583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325583,0.000000,0.000000,0.250000,0,0);}
.m74_c00072{transform:matrix(0.326100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326100,0.000000,0.000000,0.250000,0,0);}
.md_c00072{transform:matrix(0.326386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326386,0.000000,0.000000,0.250000,0,0);}
.m69_c00072{transform:matrix(0.326934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326934,0.000000,0.000000,0.250000,0,0);}
.ma6_c00072{transform:matrix(0.327239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327239,0.000000,0.000000,0.250000,0,0);}
.m79_c00072{transform:matrix(0.327723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327723,0.000000,0.000000,0.250000,0,0);}
.m2f_c00072{transform:matrix(0.329405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329405,0.000000,0.000000,0.250000,0,0);}
.m34_c00072{transform:matrix(0.330145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330145,0.000000,0.000000,0.250000,0,0);}
.m19_c00072{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m94_c00072{transform:matrix(0.336157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336157,0.000000,0.000000,0.250000,0,0);}
.m8_c00072{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m41_c00072{transform:matrix(0.339379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339379,0.000000,0.000000,0.250000,0,0);}
.m21_c00072{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.m39_c00072{transform:matrix(0.345039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345039,0.000000,0.000000,0.250000,0,0);}
.m45_c00072{transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);}
.m1c_c00072{transform:matrix(0.347629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347629,0.000000,0.000000,0.250000,0,0);}
.m46_c00072{transform:matrix(0.349257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349257,0.000000,0.000000,0.250000,0,0);}
.m1e_c00072{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m7b_c00072{transform:matrix(0.350318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350318,0.000000,0.000000,0.250000,0,0);}
.m7d_c00072{transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);}
.m8e_c00072{transform:matrix(0.355213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355213,0.000000,0.000000,0.250000,0,0);}
.m11_c00072{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m47_c00072{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m82_c00072{transform:matrix(0.366396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366396,0.000000,0.000000,0.250000,0,0);}
.m6_c00072{transform:matrix(0.438188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438188,0.000000,0.000000,0.250000,0,0);}
.v1_c00072{vertical-align:-11.404800px;}
.v0_c00072{vertical-align:0.000000px;}
.lsd_c00072{letter-spacing:-2.744280px;}
.ls4_c00072{letter-spacing:-2.375762px;}
.ls7_c00072{letter-spacing:-1.897474px;}
.ls2_c00072{letter-spacing:0.000000px;}
.ls9_c00072{letter-spacing:0.533174px;}
.lse_c00072{letter-spacing:0.642946px;}
.ls6_c00072{letter-spacing:0.940896px;}
.lsb_c00072{letter-spacing:3.128479px;}
.ls8_c00072{letter-spacing:3.191206px;}
.ls5_c00072{letter-spacing:3.512678px;}
.lsf_c00072{letter-spacing:3.528360px;}
.ls3_c00072{letter-spacing:3.920400px;}
.lsa_c00072{letter-spacing:4.316400px;}
.ls1_c00072{letter-spacing:4.356000px;}
.ls0_c00072{letter-spacing:6.351048px;}
.ls10_c00072{letter-spacing:49.896198px;}
.lsc_c00072{letter-spacing:51.321798px;}
.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;}
}
.ws1_c00072{word-spacing:-22.793206px;}
.ws0_c00072{word-spacing:-19.602000px;}
.ws2_c00072{word-spacing:0.000000px;}
._a_c00072{margin-left:-18.113040px;}
._7_c00072{margin-left:-12.074832px;}
._8_c00072{margin-left:-10.224403px;}
._c_c00072{margin-left:-2.743884px;}
._3_c00072{width:7.855812px;}
._2_c00072{width:10.506672px;}
._5_c00072{width:23.819400px;}
._b_c00072{width:32.852952px;}
._0_c00072{width:36.106884px;}
._6_c00072{width:38.027880px;}
._1_c00072{width:41.948280px;}
._4_c00072{width:48.186759px;}
._9_c00072{width:694.069200px;}
.fc0_c00072{color:transparent;}
.fsf_c00072{font-size:22.374000px;}
.fsa_c00072{font-size:26.136000px;}
.fs1_c00072{font-size:27.720000px;}
.fs5_c00072{font-size:33.660000px;}
.fs3_c00072{font-size:36.036198px;}
.fse_c00072{font-size:45.738000px;}
.fsb_c00072{font-size:49.896198px;}
.fs9_c00072{font-size:51.321798px;}
.fs6_c00072{font-size:55.440000px;}
.fs7_c00072{font-size:56.628000px;}
.fsd_c00072{font-size:64.548000px;}
.fsc_c00072{font-size:70.884000px;}
.fs4_c00072{font-size:71.280000px;}
.fs2_c00072{font-size:78.408000px;}
.fs8_c00072{font-size:86.328000px;}
.fs0_c00072{font-size:87.120000px;}
.y0_c00072{bottom:0.000000px;}
.y1_c00072{bottom:76.500000px;}
.y21_c00072{bottom:138.902985px;}
.y20_c00072{bottom:142.828335px;}
.y1f_c00072{bottom:174.899385px;}
.y1e_c00072{bottom:209.113785px;}
.y1d_c00072{bottom:241.907535px;}
.y1c_c00072{bottom:270.058185px;}
.y1a_c00072{bottom:273.983535px;}
.y1b_c00072{bottom:274.696335px;}
.y19_c00072{bottom:307.123785px;}
.y22_c00072{bottom:322.092585px;}
.y18_c00072{bottom:343.837935px;}
.y17_c00072{bottom:344.550735px;}
.y16_c00072{bottom:403.356735px;}
.y15_c00072{bottom:436.496985px;}
.y14_c00072{bottom:461.449935px;}
.y13_c00072{bottom:468.929385px;}
.y12_c00072{bottom:502.079535px;}
.y11_c00072{bottom:534.863385px;}
.y10_c00072{bottom:567.657135px;}
.yf_c00072{bottom:599.728185px;}
.ye_c00072{bottom:632.516985px;}
.yd_c00072{bottom:690.610185px;}
.yc_c00072{bottom:698.094585px;}
.yb_c00072{bottom:730.170585px;}
.ya_c00072{bottom:762.251535px;}
.y8_c00072{bottom:794.678985px;}
.y9_c00072{bottom:797.530185px;}
.y7_c00072{bottom:826.403535px;}
.y6_c00072{bottom:860.261535px;}
.y5_c00072{bottom:893.050335px;}
.y4_c00072{bottom:925.839135px;}
.y3_c00072{bottom:1010.305935px;}
.y2_c00072{bottom:1089.421785px;}
.h11_c00072{height:21.958857px;}
.hc_c00072{height:25.651055px;}
.h3_c00072{height:28.911094px;}
.h7_c00072{height:33.035449px;}
.hd_c00072{height:33.230868px;}
.hb_c00072{height:34.180317px;}
.h10_c00072{height:44.889346px;}
.h8_c00072{height:57.822188px;}
.h9_c00072{height:59.061234px;}
.h5_c00072{height:65.548364px;}
.hf_c00072{height:67.321547px;}
.he_c00072{height:69.568770px;}
.h6_c00072{height:74.342813px;}
.h4_c00072{height:76.953164px;}
.ha_c00072{height:84.726211px;}
.h2_c00072{height:85.503516px;}
.h1_c00072{height:1110.000000px;}
.h0_c00072{height:1263.000000px;}
.w1_c00072{width:733.500000px;}
.w0_c00072{width:892.500000px;}
.x0_c00072{left:0.000000px;}
.x43_c00072{left:43.287285px;}
.x65_c00072{left:44.366385px;}
.x2d_c00072{left:46.306785px;}
.x4_c00072{left:47.702685px;}
.x44_c00072{left:75.818685px;}
.x28_c00072{left:78.417435px;}
.x1_c00072{left:79.500000px;}
.x53_c00072{left:88.861935px;}
.x5_c00072{left:91.742835px;}
.x38_c00072{left:98.459985px;}
.xe_c00072{left:101.751735px;}
.x73_c00072{left:111.013185px;}
.x4b_c00072{left:120.992385px;}
.x26_c00072{left:123.274335px;}
.xf_c00072{left:124.363335px;}
.x39_c00072{left:130.407285px;}
.x5a_c00072{left:132.011085px;}
.x7f_c00072{left:135.773085px;}
.x74_c00072{left:143.757435px;}
.x2e_c00072{left:145.098885px;}
.x4c_c00072{left:154.112835px;}
.x6_c00072{left:156.983835px;}
.x45_c00072{left:163.913835px;}
.x6e_c00072{left:165.542385px;}
.x10_c00072{left:167.487735px;}
.x3a_c00072{left:175.868085px;}
.x7c_c00072{left:176.932335px;}
.x18_c00072{left:179.080635px;}
.x5b_c00072{left:186.911535px;}
.x29_c00072{left:189.411285px;}
.x7_c00072{left:191.158635px;}
.x3b_c00072{left:197.603535px;}
.x46_c00072{left:199.004385px;}
.x54_c00072{left:209.181585px;}
.x19_c00072{left:211.612035px;}
.x5c_c00072{left:219.165735px;}
.x2f_c00072{left:222.907935px;}
.x47_c00072{left:231.812985px;}
.x6f_c00072{left:232.901985px;}
.x30_c00072{left:245.341335px;}
.x11_c00072{left:246.776835px;}
.x66_c00072{left:253.370235px;}
.x75_c00072{left:254.637435px;}
.x8_c00072{left:257.493585px;}
.x77_c00072{left:266.403585px;}
.x48_c00072{left:275.640285px;}
.x78_c00072{left:276.709485px;}
.x1f_c00072{left:278.526135px;}
.x4d_c00072{left:286.876785px;}
.x2a_c00072{left:289.911135px;}
.x60_c00072{left:298.796385px;}
.x1a_c00072{left:300.340785px;}
.x3c_c00072{left:309.127035px;}
.x79_c00072{left:310.206135px;}
.x4e_c00072{left:321.254535px;}
.x31_c00072{left:323.046435px;}
.x55_c00072{left:331.961385px;}
.x9_c00072{left:334.218585px;}
.x7d_c00072{left:342.168285px;}
.x67_c00072{left:343.187985px;}
.x20_c00072{left:345.786735px;}
.x36_c00072{left:355.369935px;}
.x12_c00072{left:356.919285px;}
.x5d_c00072{left:364.349235px;}
.x3d_c00072{left:365.804535px;}
.x32_c00072{left:366.903435px;}
.xa_c00072{left:367.972635px;}
.x49_c00072{left:376.036185px;}
.x21_c00072{left:378.535935px;}
.x4f_c00072{left:387.188535px;}
.x13_c00072{left:390.074385px;}
.x3e_c00072{left:398.227035px;}
.xb_c00072{left:400.711935px;}
.x56_c00072{left:408.389385px;}
.x33_c00072{left:410.186235px;}
.x61_c00072{left:420.007035px;}
.x1b_c00072{left:421.581135px;}
.x3f_c00072{left:430.639635px;}
.x68_c00072{left:432.045435px;}
.x14_c00072{left:433.520535px;}
.x72_c00072{left:442.202835px;}
.x22_c00072{left:445.291635px;}
.x62_c00072{left:453.825435px;}
.x27_c00072{left:457.528035px;}
.x6b_c00072{left:464.467935px;}
.x1c_c00072{left:467.051835px;}
.x70_c00072{left:475.961835px;}
.x37_c00072{left:477.154785px;}
.x5e_c00072{left:487.015185px;}
.x23_c00072{left:489.960435px;}
.x6c_c00072{left:497.350785px;}
.x71_c00072{left:507.300285px;}
.x57_c00072{left:509.433735px;}
.x34_c00072{left:511.116735px;}
.x15_c00072{left:512.304735px;}
.x40_c00072{left:519.437685px;}
.x7e_c00072{left:520.838535px;}
.x2b_c00072{left:522.981885px;}
.x50_c00072{left:530.456385px;}
.x58_c00072{left:541.316685px;}
.x69_c00072{left:542.588835px;}
.x1d_c00072{left:544.707435px;}
.x41_c00072{left:552.577935px;}
.x16_c00072{left:555.394485px;}
.x76_c00072{left:563.987685px;}
.x24_c00072{left:565.769685px;}
.xc_c00072{left:567.111135px;}
.x51_c00072{left:574.630185px;}
.x4a_c00072{left:585.247935px;}
.x6d_c00072{left:586.460685px;}
.x17_c00072{left:588.505035px;}
.x42_c00072{left:597.103185px;}
.xd_c00072{left:599.607885px;}
.x63_c00072{left:607.824885px;}
.x59_c00072{left:618.833685px;}
.x2_c00072{left:621.660135px;}
.x7a_c00072{left:629.055435px;}
.x35_c00072{left:631.154235px;}
.x25_c00072{left:632.777835px;}
.x64_c00072{left:641.326485px;}
.x2c_c00072{left:642.499635px;}
.x5f_c00072{left:652.394685px;}
.x1e_c00072{left:655.899285px;}
.x3_c00072{left:659.601885px;}
.x52_c00072{left:662.858985px;}
.x7b_c00072{left:664.284585px;}
.x6a_c00072{left:665.908185px;}
.x80_c00072{left:713.081685px;}
@media print{
.v1_c00072{vertical-align:-10.137600pt;}
.v0_c00072{vertical-align:0.000000pt;}
.lsd_c00072{letter-spacing:-2.439360pt;}
.ls4_c00072{letter-spacing:-2.111789pt;}
.ls7_c00072{letter-spacing:-1.686643pt;}
.ls2_c00072{letter-spacing:0.000000pt;}
.ls9_c00072{letter-spacing:0.473933pt;}
.lse_c00072{letter-spacing:0.571507pt;}
.ls6_c00072{letter-spacing:0.836352pt;}
.lsb_c00072{letter-spacing:2.780870pt;}
.ls8_c00072{letter-spacing:2.836627pt;}
.ls5_c00072{letter-spacing:3.122381pt;}
.lsf_c00072{letter-spacing:3.136320pt;}
.ls3_c00072{letter-spacing:3.484800pt;}
.lsa_c00072{letter-spacing:3.836800pt;}
.ls1_c00072{letter-spacing:3.872000pt;}
.ls0_c00072{letter-spacing:5.645376pt;}
.ls10_c00072{letter-spacing:44.352176pt;}
.lsc_c00072{letter-spacing:45.619376pt;}
.ws1_c00072{word-spacing:-20.260627pt;}
.ws0_c00072{word-spacing:-17.424000pt;}
.ws2_c00072{word-spacing:0.000000pt;}
._a_c00072{margin-left:-16.100480pt;}
._7_c00072{margin-left:-10.733184pt;}
._8_c00072{margin-left:-9.088358pt;}
._c_c00072{margin-left:-2.439008pt;}
._3_c00072{width:6.982944pt;}
._2_c00072{width:9.339264pt;}
._5_c00072{width:21.172800pt;}
._b_c00072{width:29.202624pt;}
._0_c00072{width:32.095008pt;}
._6_c00072{width:33.802560pt;}
._1_c00072{width:37.287360pt;}
._4_c00072{width:42.832675pt;}
._9_c00072{width:616.950400pt;}
.fsf_c00072{font-size:19.888000pt;}
.fsa_c00072{font-size:23.232000pt;}
.fs1_c00072{font-size:24.640000pt;}
.fs5_c00072{font-size:29.920000pt;}
.fs3_c00072{font-size:32.032176pt;}
.fse_c00072{font-size:40.656000pt;}
.fsb_c00072{font-size:44.352176pt;}
.fs9_c00072{font-size:45.619376pt;}
.fs6_c00072{font-size:49.280000pt;}
.fs7_c00072{font-size:50.336000pt;}
.fsd_c00072{font-size:57.376000pt;}
.fsc_c00072{font-size:63.008000pt;}
.fs4_c00072{font-size:63.360000pt;}
.fs2_c00072{font-size:69.696000pt;}
.fs8_c00072{font-size:76.736000pt;}
.fs0_c00072{font-size:77.440000pt;}
.y0_c00072{bottom:0.000000pt;}
.y1_c00072{bottom:68.000000pt;}
.y21_c00072{bottom:123.469320pt;}
.y20_c00072{bottom:126.958520pt;}
.y1f_c00072{bottom:155.466120pt;}
.y1e_c00072{bottom:185.878920pt;}
.y1d_c00072{bottom:215.028920pt;}
.y1c_c00072{bottom:240.051720pt;}
.y1a_c00072{bottom:243.540920pt;}
.y1b_c00072{bottom:244.174520pt;}
.y19_c00072{bottom:272.998920pt;}
.y22_c00072{bottom:286.304520pt;}
.y18_c00072{bottom:305.633720pt;}
.y17_c00072{bottom:306.267320pt;}
.y16_c00072{bottom:358.539320pt;}
.y15_c00072{bottom:387.997320pt;}
.y14_c00072{bottom:410.177720pt;}
.y13_c00072{bottom:416.826120pt;}
.y12_c00072{bottom:446.292920pt;}
.y11_c00072{bottom:475.434120pt;}
.y10_c00072{bottom:504.584120pt;}
.yf_c00072{bottom:533.091720pt;}
.ye_c00072{bottom:562.237320pt;}
.yd_c00072{bottom:613.875720pt;}
.yc_c00072{bottom:620.528520pt;}
.yb_c00072{bottom:649.040520pt;}
.ya_c00072{bottom:677.556920pt;}
.y8_c00072{bottom:706.381320pt;}
.y9_c00072{bottom:708.915720pt;}
.y7_c00072{bottom:734.580920pt;}
.y6_c00072{bottom:764.676920pt;}
.y5_c00072{bottom:793.822520pt;}
.y4_c00072{bottom:822.968120pt;}
.y3_c00072{bottom:898.049720pt;}
.y2_c00072{bottom:968.374920pt;}
.h11_c00072{height:19.518984pt;}
.hc_c00072{height:22.800938pt;}
.h3_c00072{height:25.698750pt;}
.h7_c00072{height:29.364844pt;}
.hd_c00072{height:29.538549pt;}
.hb_c00072{height:30.382504pt;}
.h10_c00072{height:39.901641pt;}
.h8_c00072{height:51.397500pt;}
.h9_c00072{height:52.498875pt;}
.h5_c00072{height:58.265213pt;}
.hf_c00072{height:59.841375pt;}
.he_c00072{height:61.838906pt;}
.h6_c00072{height:66.082500pt;}
.h4_c00072{height:68.402813pt;}
.ha_c00072{height:75.312188pt;}
.h2_c00072{height:76.003125pt;}
.h1_c00072{height:986.666667pt;}
.h0_c00072{height:1122.666667pt;}
.w1_c00072{width:652.000000pt;}
.w0_c00072{width:793.333333pt;}
.x0_c00072{left:0.000000pt;}
.x43_c00072{left:38.477587pt;}
.x65_c00072{left:39.436787pt;}
.x2d_c00072{left:41.161587pt;}
.x4_c00072{left:42.402387pt;}
.x44_c00072{left:67.394387pt;}
.x28_c00072{left:69.704387pt;}
.x1_c00072{left:70.666667pt;}
.x53_c00072{left:78.988387pt;}
.x5_c00072{left:81.549187pt;}
.x38_c00072{left:87.519987pt;}
.xe_c00072{left:90.445987pt;}
.x73_c00072{left:98.678387pt;}
.x4b_c00072{left:107.548787pt;}
.x26_c00072{left:109.577187pt;}
.xf_c00072{left:110.545187pt;}
.x39_c00072{left:115.917587pt;}
.x5a_c00072{left:117.343187pt;}
.x7f_c00072{left:120.687187pt;}
.x74_c00072{left:127.784387pt;}
.x2e_c00072{left:128.976787pt;}
.x4c_c00072{left:136.989187pt;}
.x6_c00072{left:139.541187pt;}
.x45_c00072{left:145.701187pt;}
.x6e_c00072{left:147.148787pt;}
.x10_c00072{left:148.877987pt;}
.x3a_c00072{left:156.327187pt;}
.x7c_c00072{left:157.273187pt;}
.x18_c00072{left:159.182787pt;}
.x5b_c00072{left:166.143587pt;}
.x29_c00072{left:168.365587pt;}
.x7_c00072{left:169.918787pt;}
.x3b_c00072{left:175.647587pt;}
.x46_c00072{left:176.892787pt;}
.x54_c00072{left:185.939187pt;}
.x19_c00072{left:188.099587pt;}
.x5c_c00072{left:194.813987pt;}
.x2f_c00072{left:198.140387pt;}
.x47_c00072{left:206.055987pt;}
.x6f_c00072{left:207.023987pt;}
.x30_c00072{left:218.081187pt;}
.x11_c00072{left:219.357187pt;}
.x66_c00072{left:225.217987pt;}
.x75_c00072{left:226.344387pt;}
.x8_c00072{left:228.883187pt;}
.x77_c00072{left:236.803187pt;}
.x48_c00072{left:245.013587pt;}
.x78_c00072{left:245.963987pt;}
.x1f_c00072{left:247.578787pt;}
.x4d_c00072{left:255.001587pt;}
.x2a_c00072{left:257.698787pt;}
.x60_c00072{left:265.596787pt;}
.x1a_c00072{left:266.969587pt;}
.x3c_c00072{left:274.779587pt;}
.x79_c00072{left:275.738787pt;}
.x4e_c00072{left:285.559587pt;}
.x31_c00072{left:287.152387pt;}
.x55_c00072{left:295.076787pt;}
.x9_c00072{left:297.083187pt;}
.x7d_c00072{left:304.149587pt;}
.x67_c00072{left:305.055987pt;}
.x20_c00072{left:307.365987pt;}
.x36_c00072{left:315.884387pt;}
.x12_c00072{left:317.261587pt;}
.x5d_c00072{left:323.865987pt;}
.x3d_c00072{left:325.159587pt;}
.x32_c00072{left:326.136387pt;}
.xa_c00072{left:327.086787pt;}
.x49_c00072{left:334.254387pt;}
.x21_c00072{left:336.476387pt;}
.x4f_c00072{left:344.167587pt;}
.x13_c00072{left:346.732787pt;}
.x3e_c00072{left:353.979587pt;}
.xb_c00072{left:356.188387pt;}
.x56_c00072{left:363.012787pt;}
.x33_c00072{left:364.609987pt;}
.x61_c00072{left:373.339587pt;}
.x1b_c00072{left:374.738787pt;}
.x3f_c00072{left:382.790787pt;}
.x68_c00072{left:384.040387pt;}
.x14_c00072{left:385.351587pt;}
.x72_c00072{left:393.069187pt;}
.x22_c00072{left:395.814787pt;}
.x62_c00072{left:403.400387pt;}
.x27_c00072{left:406.691587pt;}
.x6b_c00072{left:412.860387pt;}
.x1c_c00072{left:415.157187pt;}
.x70_c00072{left:423.077187pt;}
.x37_c00072{left:424.137587pt;}
.x5e_c00072{left:432.902387pt;}
.x23_c00072{left:435.520387pt;}
.x6c_c00072{left:442.089587pt;}
.x71_c00072{left:450.933587pt;}
.x57_c00072{left:452.829987pt;}
.x34_c00072{left:454.325987pt;}
.x15_c00072{left:455.381987pt;}
.x40_c00072{left:461.722387pt;}
.x7e_c00072{left:462.967587pt;}
.x2b_c00072{left:464.872787pt;}
.x50_c00072{left:471.516787pt;}
.x58_c00072{left:481.170387pt;}
.x69_c00072{left:482.301187pt;}
.x1d_c00072{left:484.184387pt;}
.x41_c00072{left:491.180387pt;}
.x16_c00072{left:493.683987pt;}
.x76_c00072{left:501.322387pt;}
.x24_c00072{left:502.906387pt;}
.xc_c00072{left:504.098787pt;}
.x51_c00072{left:510.782387pt;}
.x4a_c00072{left:520.220387pt;}
.x6d_c00072{left:521.298387pt;}
.x17_c00072{left:523.115587pt;}
.x42_c00072{left:530.758387pt;}
.xd_c00072{left:532.984787pt;}
.x63_c00072{left:540.288787pt;}
.x59_c00072{left:550.074387pt;}
.x2_c00072{left:552.586787pt;}
.x7a_c00072{left:559.160387pt;}
.x35_c00072{left:561.025987pt;}
.x25_c00072{left:562.469187pt;}
.x64_c00072{left:570.067987pt;}
.x2c_c00072{left:571.110787pt;}
.x5f_c00072{left:579.906387pt;}
.x1e_c00072{left:583.021587pt;}
.x3_c00072{left:586.312787pt;}
.x52_c00072{left:589.207987pt;}
.x7b_c00072{left:590.475187pt;}
.x6a_c00072{left:591.918387pt;}
.x80_c00072{left:633.850387pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6c792665bac55bf6cc16ec87.woff2')format("woff");}.ff1_c00073{font-family:ff1_c00073;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00073;src:url('chunks/assets/font_6ac98eb3d804dbf739ec490a.woff2')format("woff");}.ff2_c00073{font-family:ff2_c00073;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00073;src:url('chunks/assets/font_a6485df39d6d9e029c333376.woff2')format("woff");}.ff3_c00073{font-family:ff3_c00073;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00073;src:url('chunks/assets/font_524f2d38eeba4fbe24213e39.woff2')format("woff");}.ff4_c00073{font-family:ff4_c00073;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m8b_c00073{transform:matrix(0.038890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.038890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.038890,0.000000,0.000000,0.250000,0,0);}
.m5b_c00073{transform:matrix(0.042858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042858,0.000000,0.000000,0.250000,0,0);}
.m8a_c00073{transform:matrix(0.088889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088889,0.000000,0.000000,0.250000,0,0);}
.m8c_c00073{transform:matrix(0.098148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098148,0.000000,0.000000,0.250000,0,0);}
.m6e_c00073{transform:matrix(0.151237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151237,0.000000,0.000000,0.250000,0,0);}
.m2_c00073{transform:matrix(0.159524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159524,0.000000,0.000000,0.250000,0,0);}
.m48_c00073{transform:matrix(0.190878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190878,0.000000,0.000000,0.250000,0,0);}
.md_c00073{transform:matrix(0.217061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217061,0.000000,0.000000,0.250000,0,0);}
.m5_c00073{transform:matrix(0.238687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238687,0.000000,0.000000,0.250000,0,0);}
.m89_c00073{transform:matrix(0.247937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247937,0.000000,0.000000,0.250000,0,0);}
.m9_c00073{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m70_c00073{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.m5d_c00073{transform:matrix(0.254317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254317,0.000000,0.000000,0.250000,0,0);}
.m33_c00073{transform:matrix(0.254764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254764,0.000000,0.000000,0.250000,0,0);}
.m71_c00073{transform:matrix(0.255828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255828,0.000000,0.000000,0.250000,0,0);}
.m3a_c00073{transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);}
.m83_c00073{transform:matrix(0.256334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256334,0.000000,0.000000,0.250000,0,0);}
.m4_c00073{transform:matrix(0.256364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256364,0.000000,0.000000,0.250000,0,0);}
.m38_c00073{transform:matrix(0.258318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258318,0.000000,0.000000,0.250000,0,0);}
.m9a_c00073{transform:matrix(0.259641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259641,0.000000,0.000000,0.250000,0,0);}
.m42_c00073{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.mf_c00073{transform:matrix(0.262665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262665,0.000000,0.000000,0.250000,0,0);}
.m4d_c00073{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m7d_c00073{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m3_c00073{transform:matrix(0.264731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264731,0.000000,0.000000,0.250000,0,0);}
.m67_c00073{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.m88_c00073{transform:matrix(0.267255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267255,0.000000,0.000000,0.250000,0,0);}
.m75_c00073{transform:matrix(0.267472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267472,0.000000,0.000000,0.250000,0,0);}
.me_c00073{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m5a_c00073{transform:matrix(0.268278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268278,0.000000,0.000000,0.250000,0,0);}
.m30_c00073{transform:matrix(0.270439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270439,0.000000,0.000000,0.250000,0,0);}
.m4b_c00073{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m24_c00073{transform:matrix(0.271453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271453,0.000000,0.000000,0.250000,0,0);}
.m55_c00073{transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);}
.m21_c00073{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.mb_c00073{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m91_c00073{transform:matrix(0.275570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275570,0.000000,0.000000,0.250000,0,0);}
.m86_c00073{transform:matrix(0.276794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276794,0.000000,0.000000,0.250000,0,0);}
.m93_c00073{transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);}
.m18_c00073{transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);}
.m53_c00073{transform:matrix(0.278094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278094,0.000000,0.000000,0.250000,0,0);}
.m92_c00073{transform:matrix(0.278331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278331,0.000000,0.000000,0.250000,0,0);}
.m6d_c00073{transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);}
.m3d_c00073{transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00073{transform:matrix(0.279677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279677,0.000000,0.000000,0.250000,0,0);}
.m56_c00073{transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);}
.m12_c00073{transform:matrix(0.280088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280088,0.000000,0.000000,0.250000,0,0);}
.m54_c00073{transform:matrix(0.280159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280159,0.000000,0.000000,0.250000,0,0);}
.m2a_c00073{transform:matrix(0.280356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280356,0.000000,0.000000,0.250000,0,0);}
.m9b_c00073{transform:matrix(0.280391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280391,0.000000,0.000000,0.250000,0,0);}
.m1e_c00073{transform:matrix(0.280730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280730,0.000000,0.000000,0.250000,0,0);}
.m15_c00073{transform:matrix(0.282165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282165,0.000000,0.000000,0.250000,0,0);}
.m78_c00073{transform:matrix(0.282254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282254,0.000000,0.000000,0.250000,0,0);}
.m44_c00073{transform:matrix(0.282943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282943,0.000000,0.000000,0.250000,0,0);}
.m6c_c00073{transform:matrix(0.283049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283049,0.000000,0.000000,0.250000,0,0);}
.m2e_c00073{transform:matrix(0.283594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283594,0.000000,0.000000,0.250000,0,0);}
.m40_c00073{transform:matrix(0.283651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283651,0.000000,0.000000,0.250000,0,0);}
.m8d_c00073{transform:matrix(0.284669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284669,0.000000,0.000000,0.250000,0,0);}
.m51_c00073{transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);}
.m6b_c00073{transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);}
.m90_c00073{transform:matrix(0.285756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285756,0.000000,0.000000,0.250000,0,0);}
.m82_c00073{transform:matrix(0.285766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285766,0.000000,0.000000,0.250000,0,0);}
.m72_c00073{transform:matrix(0.285770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285770,0.000000,0.000000,0.250000,0,0);}
.m7b_c00073{transform:matrix(0.286764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286764,0.000000,0.000000,0.250000,0,0);}
.m2c_c00073{transform:matrix(0.286979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286979,0.000000,0.000000,0.250000,0,0);}
.m7f_c00073{transform:matrix(0.287186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287186,0.000000,0.000000,0.250000,0,0);}
.m22_c00073{transform:matrix(0.287792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287792,0.000000,0.000000,0.250000,0,0);}
.m8e_c00073{transform:matrix(0.287867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287867,0.000000,0.000000,0.250000,0,0);}
.m23_c00073{transform:matrix(0.288145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288145,0.000000,0.000000,0.250000,0,0);}
.m13_c00073{transform:matrix(0.288977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288977,0.000000,0.000000,0.250000,0,0);}
.m29_c00073{transform:matrix(0.289337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289337,0.000000,0.000000,0.250000,0,0);}
.m61_c00073{transform:matrix(0.289520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289520,0.000000,0.000000,0.250000,0,0);}
.m76_c00073{transform:matrix(0.290152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290152,0.000000,0.000000,0.250000,0,0);}
.m36_c00073{transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);}
.m0_c00073{transform:matrix(0.290342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290342,0.000000,0.000000,0.250000,0,0);}
.m98_c00073{transform:matrix(0.290680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290680,0.000000,0.000000,0.250000,0,0);}
.m1d_c00073{transform:matrix(0.291415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291415,0.000000,0.000000,0.250000,0,0);}
.m5c_c00073{transform:matrix(0.291602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291602,0.000000,0.000000,0.250000,0,0);}
.m2d_c00073{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_c00073{transform:matrix(0.292643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292643,0.000000,0.000000,0.250000,0,0);}
.ma_c00073{transform:matrix(0.293323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293323,0.000000,0.000000,0.250000,0,0);}
.m96_c00073{transform:matrix(0.293739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293739,0.000000,0.000000,0.250000,0,0);}
.m68_c00073{transform:matrix(0.296711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296711,0.000000,0.000000,0.250000,0,0);}
.m46_c00073{transform:matrix(0.296861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296861,0.000000,0.000000,0.250000,0,0);}
.m43_c00073{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m11_c00073{transform:matrix(0.297631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297631,0.000000,0.000000,0.250000,0,0);}
.m81_c00073{transform:matrix(0.297962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297962,0.000000,0.000000,0.250000,0,0);}
.m1a_c00073{transform:matrix(0.298266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298266,0.000000,0.000000,0.250000,0,0);}
.m34_c00073{transform:matrix(0.298350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298350,0.000000,0.000000,0.250000,0,0);}
.m41_c00073{transform:matrix(0.299520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299520,0.000000,0.000000,0.250000,0,0);}
.m5f_c00073{transform:matrix(0.301688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301688,0.000000,0.000000,0.250000,0,0);}
.m7e_c00073{transform:matrix(0.302314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302314,0.000000,0.000000,0.250000,0,0);}
.m60_c00073{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m77_c00073{transform:matrix(0.302678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302678,0.000000,0.000000,0.250000,0,0);}
.m3f_c00073{transform:matrix(0.304037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304037,0.000000,0.000000,0.250000,0,0);}
.m4f_c00073{transform:matrix(0.304106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304106,0.000000,0.000000,0.250000,0,0);}
.m4e_c00073{transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);}
.m7c_c00073{transform:matrix(0.306458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306458,0.000000,0.000000,0.250000,0,0);}
.m84_c00073{transform:matrix(0.306893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306893,0.000000,0.000000,0.250000,0,0);}
.m35_c00073{transform:matrix(0.307025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307025,0.000000,0.000000,0.250000,0,0);}
.m85_c00073{transform:matrix(0.307661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307661,0.000000,0.000000,0.250000,0,0);}
.m74_c00073{transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);}
.m4a_c00073{transform:matrix(0.307789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307789,0.000000,0.000000,0.250000,0,0);}
.m97_c00073{transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);}
.m66_c00073{transform:matrix(0.308174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308174,0.000000,0.000000,0.250000,0,0);}
.m58_c00073{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m73_c00073{transform:matrix(0.308727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308727,0.000000,0.000000,0.250000,0,0);}
.m10_c00073{transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);}
.m80_c00073{transform:matrix(0.309152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309152,0.000000,0.000000,0.250000,0,0);}
.m59_c00073{transform:matrix(0.310202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310202,0.000000,0.000000,0.250000,0,0);}
.m3c_c00073{transform:matrix(0.310783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310783,0.000000,0.000000,0.250000,0,0);}
.m65_c00073{transform:matrix(0.310939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310939,0.000000,0.000000,0.250000,0,0);}
.m3e_c00073{transform:matrix(0.311211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311211,0.000000,0.000000,0.250000,0,0);}
.m28_c00073{transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);}
.m7a_c00073{transform:matrix(0.312125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312125,0.000000,0.000000,0.250000,0,0);}
.m17_c00073{transform:matrix(0.312229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312229,0.000000,0.000000,0.250000,0,0);}
.m47_c00073{transform:matrix(0.312507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312507,0.000000,0.000000,0.250000,0,0);}
.m45_c00073{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.m79_c00073{transform:matrix(0.313422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313422,0.000000,0.000000,0.250000,0,0);}
.m4c_c00073{transform:matrix(0.313551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313551,0.000000,0.000000,0.250000,0,0);}
.m26_c00073{transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);}
.m7_c00073{transform:matrix(0.313822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313822,0.000000,0.000000,0.250000,0,0);}
.m32_c00073{transform:matrix(0.313992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313992,0.000000,0.000000,0.250000,0,0);}
.m39_c00073{transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);}
.m99_c00073{transform:matrix(0.316725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316725,0.000000,0.000000,0.250000,0,0);}
.m52_c00073{transform:matrix(0.316782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316782,0.000000,0.000000,0.250000,0,0);}
.m1c_c00073{transform:matrix(0.317273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317273,0.000000,0.000000,0.250000,0,0);}
.m8_c00073{transform:matrix(0.317982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317982,0.000000,0.000000,0.250000,0,0);}
.m6_c00073{transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);}
.m5e_c00073{transform:matrix(0.319383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319383,0.000000,0.000000,0.250000,0,0);}
.m62_c00073{transform:matrix(0.319531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319531,0.000000,0.000000,0.250000,0,0);}
.m25_c00073{transform:matrix(0.319540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319540,0.000000,0.000000,0.250000,0,0);}
.m95_c00073{transform:matrix(0.319820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319820,0.000000,0.000000,0.250000,0,0);}
.m3b_c00073{transform:matrix(0.321083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321083,0.000000,0.000000,0.250000,0,0);}
.m57_c00073{transform:matrix(0.321773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321773,0.000000,0.000000,0.250000,0,0);}
.m64_c00073{transform:matrix(0.321922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321922,0.000000,0.000000,0.250000,0,0);}
.m8f_c00073{transform:matrix(0.322624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322624,0.000000,0.000000,0.250000,0,0);}
.m27_c00073{transform:matrix(0.323516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323516,0.000000,0.000000,0.250000,0,0);}
.m49_c00073{transform:matrix(0.324381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324381,0.000000,0.000000,0.250000,0,0);}
.m37_c00073{transform:matrix(0.324566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324566,0.000000,0.000000,0.250000,0,0);}
.m1_c00073{transform:matrix(0.324869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324869,0.000000,0.000000,0.250000,0,0);}
.m94_c00073{transform:matrix(0.324872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324872,0.000000,0.000000,0.250000,0,0);}
.m14_c00073{transform:matrix(0.325387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325387,0.000000,0.000000,0.250000,0,0);}
.m2b_c00073{transform:matrix(0.325574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325574,0.000000,0.000000,0.250000,0,0);}
.m69_c00073{transform:matrix(0.327290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327290,0.000000,0.000000,0.250000,0,0);}
.m31_c00073{transform:matrix(0.327730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327730,0.000000,0.000000,0.250000,0,0);}
.m6f_c00073{transform:matrix(0.329659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329659,0.000000,0.000000,0.250000,0,0);}
.m6a_c00073{transform:matrix(0.335394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335394,0.000000,0.000000,0.250000,0,0);}
.m63_c00073{transform:matrix(0.338217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338217,0.000000,0.000000,0.250000,0,0);}
.m16_c00073{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m20_c00073{transform:matrix(0.340323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340323,0.000000,0.000000,0.250000,0,0);}
.m1f_c00073{transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);}
.m87_c00073{transform:matrix(0.348426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348426,0.000000,0.000000,0.250000,0,0);}
.m19_c00073{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m1b_c00073{transform:matrix(0.353622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353622,0.000000,0.000000,0.250000,0,0);}
.mc_c00073{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.v0_c00073{vertical-align:0.000000px;}
.ls4_c00073{letter-spacing:-2.952180px;}
.ls11_c00073{letter-spacing:-2.744280px;}
.lsf_c00073{letter-spacing:-2.367922px;}
.ls15_c00073{letter-spacing:-1.772021px;}
.ls5_c00073{letter-spacing:-1.427026px;}
.ls12_c00073{letter-spacing:-0.274428px;}
.ls8_c00073{letter-spacing:0.000000px;}
.ls16_c00073{letter-spacing:0.533174px;}
.lse_c00073{letter-spacing:0.705672px;}
.ls0_c00073{letter-spacing:1.246687px;}
.ls13_c00073{letter-spacing:1.662250px;}
.lsc_c00073{letter-spacing:1.944518px;}
.ls10_c00073{letter-spacing:2.273832px;}
.ls9_c00073{letter-spacing:3.405610px;}
.lsb_c00073{letter-spacing:3.473474px;}
.ls7_c00073{letter-spacing:3.851110px;}
.ls1_c00073{letter-spacing:3.920400px;}
.ls3_c00073{letter-spacing:4.306500px;}
.lsd_c00073{letter-spacing:49.896198px;}
.lsa_c00073{letter-spacing:51.321798px;}
.ls6_c00073{letter-spacing:52.747398px;}
.ls2_c00073{letter-spacing:59.875398px;}
.ls14_c00073{letter-spacing:64.152198px;}
.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;}
}
.ws1_c00073{word-spacing:0.000000px;}
.ws0_c00073{word-spacing:5.332536px;}
._0_c00073{width:7.761600px;}
._1_c00073{width:30.919363px;}
._2_c00073{width:130.810680px;}
.fc0_c00073{color:transparent;}
.fse_c00073{font-size:4.158000px;}
.fs9_c00073{font-size:23.166000px;}
.fsb_c00073{font-size:34.056198px;}
.fsd_c00073{font-size:44.748000px;}
.fsc_c00073{font-size:49.896198px;}
.fs8_c00073{font-size:51.321798px;}
.fs4_c00073{font-size:52.747398px;}
.fs10_c00073{font-size:53.262000px;}
.fs1_c00073{font-size:59.875398px;}
.fsf_c00073{font-size:64.152198px;}
.fsa_c00073{font-size:66.330000px;}
.fs7_c00073{font-size:68.112198px;}
.fs5_c00073{font-size:77.022198px;}
.fs0_c00073{font-size:78.408000px;}
.fs6_c00073{font-size:78.804000px;}
.fs3_c00073{font-size:84.348000px;}
.fs2_c00073{font-size:86.130000px;}
.y0_c00073{bottom:0.000000px;}
.y1_c00073{bottom:76.500000px;}
.y1d_c00073{bottom:83.309535px;}
.y1c_c00073{bottom:146.743785px;}
.y1b_c00073{bottom:178.468335px;}
.y1a_c00073{bottom:211.613535px;}
.y19_c00073{bottom:245.110185px;}
.y18_c00073{bottom:275.409135px;}
.y17_c00073{bottom:277.547535px;}
.y16_c00073{bottom:309.979935px;}
.y15_c00073{bottom:342.768735px;}
.y14_c00073{bottom:374.483385px;}
.y13_c00073{bottom:409.059135px;}
.y12_c00073{bottom:471.429135px;}
.y11_c00073{bottom:503.500185px;}
.y10_c00073{bottom:536.288985px;}
.yf_c00073{bottom:569.434185px;}
.ye_c00073{bottom:601.866585px;}
.yd_c00073{bottom:629.670735px;}
.yc_c00073{bottom:634.655385px;}
.yb_c00073{bottom:648.203535px;}
.ya_c00073{bottom:667.087785px;}
.y9_c00073{bottom:699.520185px;}
.y8_c00073{bottom:731.601135px;}
.y7_c00073{bottom:795.753135px;}
.y6_c00073{bottom:828.541935px;}
.y5_c00073{bottom:860.974335px;}
.y4_c00073{bottom:893.763135px;}
.y3_c00073{bottom:925.834185px;}
.y2_c00073{bottom:1076.947785px;}
.h10_c00073{height:4.080850px;}
.hb_c00073{height:24.161414px;}
.he_c00073{height:33.230868px;}
.ha_c00073{height:34.180317px;}
.h6_c00073{height:35.129767px;}
.hd_c00073{height:35.519550px;}
.h3_c00073{height:39.877015px;}
.h11_c00073{height:42.725364px;}
.hf_c00073{height:43.917715px;}
.h12_c00073{height:52.273740px;}
.hc_c00073{height:69.180117px;}
.h9_c00073{height:71.038894px;}
.h7_c00073{height:75.593075px;}
.h2_c00073{height:76.953164px;}
.h8_c00073{height:77.341816px;}
.h5_c00073{height:82.782949px;}
.h4_c00073{height:84.531885px;}
.h1_c00073{height:1110.000000px;}
.h0_c00073{height:1263.000000px;}
.w1_c00073{width:733.500000px;}
.w0_c00073{width:892.500000px;}
.x0_c00073{left:0.000000px;}
.x40_c00073{left:57.993735px;}
.x12_c00073{left:59.201535px;}
.x3_c00073{left:60.295485px;}
.x1_c00073{left:79.500000px;}
.x21_c00073{left:92.633835px;}
.x37_c00073{left:103.375335px;}
.x1b_c00073{left:113.666385px;}
.x4_c00073{left:118.344135px;}
.x33_c00073{left:124.853385px;}
.x28_c00073{left:136.307685px;}
.x23_c00073{left:147.341235px;}
.xb_c00073{left:148.751985px;}
.x3b_c00073{left:157.830285px;}
.x13_c00073{left:158.924235px;}
.x46_c00073{left:169.774635px;}
.x5_c00073{left:181.011135px;}
.x1c_c00073{left:192.084285px;}
.x47_c00073{left:201.974385px;}
.xc_c00073{left:213.502935px;}
.x1d_c00073{left:214.626585px;}
.x4b_c00073{left:224.873085px;}
.x4e_c00073{left:227.496585px;}
.x24_c00073{left:235.708635px;}
.x4c_c00073{left:246.172935px;}
.x14_c00073{left:247.380735px;}
.x34_c00073{left:256.864935px;}
.x29_c00073{left:259.191435px;}
.x6_c00073{left:262.057485px;}
.x25_c00073{left:279.585435px;}
.x48_c00073{left:290.420985px;}
.x3c_c00073{left:302.206935px;}
.x15_c00073{left:303.375135px;}
.xd_c00073{left:313.794885px;}
.x2e_c00073{left:322.863285px;}
.x54_c00073{left:324.130485px;}
.x7_c00073{left:336.332235px;}
.xe_c00073{left:347.286585px;}
.x22_c00073{left:357.864735px;}
.x4a_c00073{left:360.775335px;}
.x4f_c00073{left:368.680485px;}
.x8_c00073{left:370.393185px;}
.x3d_c00073{left:378.862635px;}
.x1e_c00073{left:380.317935px;}
.x35_c00073{left:391.495035px;}
.x16_c00073{left:402.177135px;}
.x4d_c00073{left:412.319685px;}
.xf_c00073{left:413.938335px;}
.x9_c00073{left:424.417485px;}
.x17_c00073{left:435.649035px;}
.x39_c00073{left:446.251935px;}
.x10_c00073{left:457.300335px;}
.x2a_c00073{left:458.463585px;}
.x18_c00073{left:469.155585px;}
.x1f_c00073{left:479.862435px;}
.x2f_c00073{left:490.386135px;}
.x2b_c00073{left:491.910735px;}
.x44_c00073{left:501.068235px;}
.x41_c00073{left:502.300785px;}
.xa_c00073{left:512.121585px;}
.x50_c00073{left:522.140385px;}
.x2c_c00073{left:524.065935px;}
.x55_c00073{left:533.183835px;}
.x52_c00073{left:534.282735px;}
.x19_c00073{left:535.396485px;}
.x26_c00073{left:545.826135px;}
.x42_c00073{left:556.721085px;}
.x1a_c00073{left:567.789285px;}
.x49_c00073{left:578.476335px;}
.x11_c00073{left:579.634635px;}
.x43_c00073{left:588.747585px;}
.x30_c00073{left:589.999935px;}
.x53_c00073{left:599.474235px;}
.x3a_c00073{left:600.696885px;}
.x2d_c00073{left:612.101685px;}
.x3e_c00073{left:622.793685px;}
.x38_c00073{left:624.194535px;}
.x20_c00073{left:634.109385px;}
.x2_c00073{left:635.203335px;}
.x27_c00073{left:646.286385px;}
.x31_c00073{left:656.899185px;}
.x51_c00073{left:666.437835px;}
.x45_c00073{left:667.987185px;}
.x56_c00073{left:672.788685px;}
.x3f_c00073{left:675.035985px;}
.x32_c00073{left:680.223585px;}
.x36_c00073{left:683.025285px;}
@media print{
.v0_c00073{vertical-align:0.000000pt;}
.ls4_c00073{letter-spacing:-2.624160pt;}
.ls11_c00073{letter-spacing:-2.439360pt;}
.lsf_c00073{letter-spacing:-2.104819pt;}
.ls15_c00073{letter-spacing:-1.575130pt;}
.ls5_c00073{letter-spacing:-1.268467pt;}
.ls12_c00073{letter-spacing:-0.243936pt;}
.ls8_c00073{letter-spacing:0.000000pt;}
.ls16_c00073{letter-spacing:0.473933pt;}
.lse_c00073{letter-spacing:0.627264pt;}
.ls0_c00073{letter-spacing:1.108166pt;}
.ls13_c00073{letter-spacing:1.477555pt;}
.lsc_c00073{letter-spacing:1.728461pt;}
.ls10_c00073{letter-spacing:2.021184pt;}
.ls9_c00073{letter-spacing:3.027209pt;}
.lsb_c00073{letter-spacing:3.087533pt;}
.ls7_c00073{letter-spacing:3.423209pt;}
.ls1_c00073{letter-spacing:3.484800pt;}
.ls3_c00073{letter-spacing:3.828000pt;}
.lsd_c00073{letter-spacing:44.352176pt;}
.lsa_c00073{letter-spacing:45.619376pt;}
.ls6_c00073{letter-spacing:46.886576pt;}
.ls2_c00073{letter-spacing:53.222576pt;}
.ls14_c00073{letter-spacing:57.024176pt;}
.ws1_c00073{word-spacing:0.000000pt;}
.ws0_c00073{word-spacing:4.740032pt;}
._0_c00073{width:6.899200pt;}
._1_c00073{width:27.483878pt;}
._2_c00073{width:116.276160pt;}
.fse_c00073{font-size:3.696000pt;}
.fs9_c00073{font-size:20.592000pt;}
.fsb_c00073{font-size:30.272176pt;}
.fsd_c00073{font-size:39.776000pt;}
.fsc_c00073{font-size:44.352176pt;}
.fs8_c00073{font-size:45.619376pt;}
.fs4_c00073{font-size:46.886576pt;}
.fs10_c00073{font-size:47.344000pt;}
.fs1_c00073{font-size:53.222576pt;}
.fsf_c00073{font-size:57.024176pt;}
.fsa_c00073{font-size:58.960000pt;}
.fs7_c00073{font-size:60.544176pt;}
.fs5_c00073{font-size:68.464176pt;}
.fs0_c00073{font-size:69.696000pt;}
.fs6_c00073{font-size:70.048000pt;}
.fs3_c00073{font-size:74.976000pt;}
.fs2_c00073{font-size:76.560000pt;}
.y0_c00073{bottom:0.000000pt;}
.y1_c00073{bottom:68.000000pt;}
.y1d_c00073{bottom:74.052920pt;}
.y1c_c00073{bottom:130.438920pt;}
.y1b_c00073{bottom:158.638520pt;}
.y1a_c00073{bottom:188.100920pt;}
.y19_c00073{bottom:217.875720pt;}
.y18_c00073{bottom:244.808120pt;}
.y17_c00073{bottom:246.708920pt;}
.y16_c00073{bottom:275.537720pt;}
.y15_c00073{bottom:304.683320pt;}
.y14_c00073{bottom:332.874120pt;}
.y13_c00073{bottom:363.608120pt;}
.y12_c00073{bottom:419.048120pt;}
.y11_c00073{bottom:447.555720pt;}
.y10_c00073{bottom:476.701320pt;}
.yf_c00073{bottom:506.163720pt;}
.ye_c00073{bottom:534.992520pt;}
.yd_c00073{bottom:559.707320pt;}
.yc_c00073{bottom:564.138120pt;}
.yb_c00073{bottom:576.180920pt;}
.ya_c00073{bottom:592.966920pt;}
.y9_c00073{bottom:621.795720pt;}
.y8_c00073{bottom:650.312120pt;}
.y7_c00073{bottom:707.336120pt;}
.y6_c00073{bottom:736.481720pt;}
.y5_c00073{bottom:765.310520pt;}
.y4_c00073{bottom:794.456120pt;}
.y3_c00073{bottom:822.963720pt;}
.y2_c00073{bottom:957.286920pt;}
.h10_c00073{height:3.627422pt;}
.hb_c00073{height:21.476813pt;}
.he_c00073{height:29.538549pt;}
.ha_c00073{height:30.382504pt;}
.h6_c00073{height:31.226460pt;}
.hd_c00073{height:31.572934pt;}
.h3_c00073{height:35.446236pt;}
.h11_c00073{height:37.978101pt;}
.hf_c00073{height:39.037969pt;}
.h12_c00073{height:46.465547pt;}
.hc_c00073{height:61.493438pt;}
.h9_c00073{height:63.145684pt;}
.h7_c00073{height:67.193845pt;}
.h2_c00073{height:68.402813pt;}
.h8_c00073{height:68.748281pt;}
.h5_c00073{height:73.584844pt;}
.h4_c00073{height:75.139453pt;}
.h1_c00073{height:986.666667pt;}
.h0_c00073{height:1122.666667pt;}
.w1_c00073{width:652.000000pt;}
.w0_c00073{width:793.333333pt;}
.x0_c00073{left:0.000000pt;}
.x40_c00073{left:51.549987pt;}
.x12_c00073{left:52.623587pt;}
.x3_c00073{left:53.595987pt;}
.x1_c00073{left:70.666667pt;}
.x21_c00073{left:82.341187pt;}
.x37_c00073{left:91.889187pt;}
.x1b_c00073{left:101.036787pt;}
.x4_c00073{left:105.194787pt;}
.x33_c00073{left:110.980787pt;}
.x28_c00073{left:121.162387pt;}
.x23_c00073{left:130.969987pt;}
.xb_c00073{left:132.223987pt;}
.x3b_c00073{left:140.293587pt;}
.x13_c00073{left:141.265987pt;}
.x46_c00073{left:150.910787pt;}
.x5_c00073{left:160.898787pt;}
.x1c_c00073{left:170.741587pt;}
.x47_c00073{left:179.532787pt;}
.xc_c00073{left:189.780387pt;}
.x1d_c00073{left:190.779187pt;}
.x4b_c00073{left:199.887187pt;}
.x4e_c00073{left:202.219187pt;}
.x24_c00073{left:209.518787pt;}
.x4c_c00073{left:218.820387pt;}
.x14_c00073{left:219.893987pt;}
.x34_c00073{left:228.324387pt;}
.x29_c00073{left:230.392387pt;}
.x6_c00073{left:232.939987pt;}
.x25_c00073{left:248.520387pt;}
.x48_c00073{left:258.151987pt;}
.x3c_c00073{left:268.628387pt;}
.x15_c00073{left:269.666787pt;}
.xd_c00073{left:278.928787pt;}
.x2e_c00073{left:286.989587pt;}
.x54_c00073{left:288.115987pt;}
.x7_c00073{left:298.961987pt;}
.xe_c00073{left:308.699187pt;}
.x22_c00073{left:318.101987pt;}
.x4a_c00073{left:320.689187pt;}
.x4f_c00073{left:327.715987pt;}
.x8_c00073{left:329.238387pt;}
.x3d_c00073{left:336.766787pt;}
.x1e_c00073{left:338.060387pt;}
.x35_c00073{left:347.995587pt;}
.x16_c00073{left:357.490787pt;}
.x4d_c00073{left:366.506387pt;}
.xf_c00073{left:367.945187pt;}
.x9_c00073{left:377.259987pt;}
.x17_c00073{left:387.243587pt;}
.x39_c00073{left:396.668387pt;}
.x10_c00073{left:406.489187pt;}
.x2a_c00073{left:407.523187pt;}
.x18_c00073{left:417.027187pt;}
.x1f_c00073{left:426.544387pt;}
.x2f_c00073{left:435.898787pt;}
.x2b_c00073{left:437.253987pt;}
.x44_c00073{left:445.393987pt;}
.x41_c00073{left:446.489587pt;}
.xa_c00073{left:455.219187pt;}
.x50_c00073{left:464.124787pt;}
.x2c_c00073{left:465.836387pt;}
.x55_c00073{left:473.941187pt;}
.x52_c00073{left:474.917987pt;}
.x19_c00073{left:475.907987pt;}
.x26_c00073{left:485.178787pt;}
.x42_c00073{left:494.863187pt;}
.x1a_c00073{left:504.701587pt;}
.x49_c00073{left:514.201187pt;}
.x11_c00073{left:515.230787pt;}
.x43_c00073{left:523.331187pt;}
.x30_c00073{left:524.444387pt;}
.x53_c00073{left:532.865987pt;}
.x3a_c00073{left:533.952787pt;}
.x2d_c00073{left:544.090387pt;}
.x3e_c00073{left:553.594387pt;}
.x38_c00073{left:554.839587pt;}
.x20_c00073{left:563.652787pt;}
.x2_c00073{left:564.625187pt;}
.x27_c00073{left:574.476787pt;}
.x31_c00073{left:583.910387pt;}
.x51_c00073{left:592.389187pt;}
.x45_c00073{left:593.766387pt;}
.x56_c00073{left:598.034387pt;}
.x3f_c00073{left:600.031987pt;}
.x32_c00073{left:604.643187pt;}
.x36_c00073{left:607.133587pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c390cfbb60078f606d5e2cfe.woff2')format("woff");}.ff1_c00074{font-family:ff1_c00074;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00074;src:url('chunks/assets/font_3db333f8b56f12adc4471622.woff2')format("woff");}.ff2_c00074{font-family:ff2_c00074;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00074;src:url('chunks/assets/font_12d71a548d59db82119e29c8.woff2')format("woff");}.ff3_c00074{font-family:ff3_c00074;line-height:0.666000;font-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_c00074{transform:matrix(0.128378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128378,0.000000,0.000000,0.250000,0,0);}
.m4a_c00074{transform:matrix(0.185811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185811,0.000000,0.000000,0.250000,0,0);}
.m48_c00074{transform:matrix(0.189188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189188,0.000000,0.000000,0.250000,0,0);}
.m67_c00074{transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);}
.m66_c00074{transform:matrix(0.204861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204861,0.000000,0.000000,0.250000,0,0);}
.m1b_c00074{transform:matrix(0.229588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229588,0.000000,0.000000,0.250000,0,0);}
.ma6_c00074{transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);}
.m41_c00074{transform:matrix(0.244940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244940,0.000000,0.000000,0.250000,0,0);}
.m0_c00074{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m96_c00074{transform:matrix(0.250258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250258,0.000000,0.000000,0.250000,0,0);}
.m54_c00074{transform:matrix(0.255492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255492,0.000000,0.000000,0.250000,0,0);}
.m7f_c00074{transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);}
.m1f_c00074{transform:matrix(0.256334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256334,0.000000,0.000000,0.250000,0,0);}
.m5b_c00074{transform:matrix(0.262931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262931,0.000000,0.000000,0.250000,0,0);}
.m7a_c00074{transform:matrix(0.262979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262979,0.000000,0.000000,0.250000,0,0);}
.m81_c00074{transform:matrix(0.263173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263173,0.000000,0.000000,0.250000,0,0);}
.m16_c00074{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m63_c00074{transform:matrix(0.263720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263720,0.000000,0.000000,0.250000,0,0);}
.m14_c00074{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m8e_c00074{transform:matrix(0.264128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264128,0.000000,0.000000,0.250000,0,0);}
.m2f_c00074{transform:matrix(0.265631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265631,0.000000,0.000000,0.250000,0,0);}
.m87_c00074{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m46_c00074{transform:matrix(0.266384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266384,0.000000,0.000000,0.250000,0,0);}
.ma5_c00074{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.me_c00074{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m6c_c00074{transform:matrix(0.268449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268449,0.000000,0.000000,0.250000,0,0);}
.m2c_c00074{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.m23_c00074{transform:matrix(0.268905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268905,0.000000,0.000000,0.250000,0,0);}
.ma_c00074{transform:matrix(0.270374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270374,0.000000,0.000000,0.250000,0,0);}
.m1e_c00074{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m9b_c00074{transform:matrix(0.271337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271337,0.000000,0.000000,0.250000,0,0);}
.m74_c00074{transform:matrix(0.271467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271467,0.000000,0.000000,0.250000,0,0);}
.m29_c00074{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m8b_c00074{transform:matrix(0.272840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272840,0.000000,0.000000,0.250000,0,0);}
.m8c_c00074{transform:matrix(0.273113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273113,0.000000,0.000000,0.250000,0,0);}
.m2a_c00074{transform:matrix(0.273753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273753,0.000000,0.000000,0.250000,0,0);}
.m78_c00074{transform:matrix(0.274038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274038,0.000000,0.000000,0.250000,0,0);}
.m26_c00074{transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);}
.m70_c00074{transform:matrix(0.274422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274422,0.000000,0.000000,0.250000,0,0);}
.m98_c00074{transform:matrix(0.275052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275052,0.000000,0.000000,0.250000,0,0);}
.m21_c00074{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m5a_c00074{transform:matrix(0.277114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277114,0.000000,0.000000,0.250000,0,0);}
.m3c_c00074{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m40_c00074{transform:matrix(0.277792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277792,0.000000,0.000000,0.250000,0,0);}
.ma0_c00074{transform:matrix(0.278073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278073,0.000000,0.000000,0.250000,0,0);}
.m65_c00074{transform:matrix(0.278581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278581,0.000000,0.000000,0.250000,0,0);}
.m28_c00074{transform:matrix(0.279376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279376,0.000000,0.000000,0.250000,0,0);}
.m11_c00074{transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);}
.m61_c00074{transform:matrix(0.280020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280020,0.000000,0.000000,0.250000,0,0);}
.m5c_c00074{transform:matrix(0.280085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280085,0.000000,0.000000,0.250000,0,0);}
.m80_c00074{transform:matrix(0.280566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280566,0.000000,0.000000,0.250000,0,0);}
.m6e_c00074{transform:matrix(0.280910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280910,0.000000,0.000000,0.250000,0,0);}
.ma3_c00074{transform:matrix(0.280919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280919,0.000000,0.000000,0.250000,0,0);}
.m92_c00074{transform:matrix(0.282615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282615,0.000000,0.000000,0.250000,0,0);}
.m6_c00074{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m1d_c00074{transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);}
.m9_c00074{transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);}
.m18_c00074{transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);}
.m9a_c00074{transform:matrix(0.286238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286238,0.000000,0.000000,0.250000,0,0);}
.md_c00074{transform:matrix(0.286831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286831,0.000000,0.000000,0.250000,0,0);}
.m5d_c00074{transform:matrix(0.286862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286862,0.000000,0.000000,0.250000,0,0);}
.m3b_c00074{transform:matrix(0.287000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00074{transform:matrix(0.287100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287100,0.000000,0.000000,0.250000,0,0);}
.m24_c00074{transform:matrix(0.287440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287440,0.000000,0.000000,0.250000,0,0);}
.m2b_c00074{transform:matrix(0.287569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287569,0.000000,0.000000,0.250000,0,0);}
.m91_c00074{transform:matrix(0.287966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287966,0.000000,0.000000,0.250000,0,0);}
.m7b_c00074{transform:matrix(0.288003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288003,0.000000,0.000000,0.250000,0,0);}
.m5f_c00074{transform:matrix(0.288477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288477,0.000000,0.000000,0.250000,0,0);}
.m36_c00074{transform:matrix(0.288557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288557,0.000000,0.000000,0.250000,0,0);}
.m1c_c00074{transform:matrix(0.288756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288756,0.000000,0.000000,0.250000,0,0);}
.m94_c00074{transform:matrix(0.288902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288902,0.000000,0.000000,0.250000,0,0);}
.m9f_c00074{transform:matrix(0.289255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289255,0.000000,0.000000,0.250000,0,0);}
.m8a_c00074{transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);}
.m37_c00074{transform:matrix(0.290302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290302,0.000000,0.000000,0.250000,0,0);}
.m34_c00074{transform:matrix(0.290325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290325,0.000000,0.000000,0.250000,0,0);}
.m50_c00074{transform:matrix(0.290586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290586,0.000000,0.000000,0.250000,0,0);}
.m17_c00074{transform:matrix(0.291893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291893,0.000000,0.000000,0.250000,0,0);}
.m5e_c00074{transform:matrix(0.291900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291900,0.000000,0.000000,0.250000,0,0);}
.m62_c00074{transform:matrix(0.292187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292187,0.000000,0.000000,0.250000,0,0);}
.m6b_c00074{transform:matrix(0.292334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292334,0.000000,0.000000,0.250000,0,0);}
.m7_c00074{transform:matrix(0.293394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293394,0.000000,0.000000,0.250000,0,0);}
.m6a_c00074{transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);}
.m20_c00074{transform:matrix(0.294086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294086,0.000000,0.000000,0.250000,0,0);}
.m4c_c00074{transform:matrix(0.295436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295436,0.000000,0.000000,0.250000,0,0);}
.ma4_c00074{transform:matrix(0.295465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295465,0.000000,0.000000,0.250000,0,0);}
.m42_c00074{transform:matrix(0.296701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296701,0.000000,0.000000,0.250000,0,0);}
.ma2_c00074{transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);}
.m85_c00074{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m51_c00074{transform:matrix(0.297530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297530,0.000000,0.000000,0.250000,0,0);}
.m72_c00074{transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);}
.m95_c00074{transform:matrix(0.299198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299198,0.000000,0.000000,0.250000,0,0);}
.m25_c00074{transform:matrix(0.299607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299607,0.000000,0.000000,0.250000,0,0);}
.m53_c00074{transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);}
.m86_c00074{transform:matrix(0.300709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300709,0.000000,0.000000,0.250000,0,0);}
.m59_c00074{transform:matrix(0.302833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302833,0.000000,0.000000,0.250000,0,0);}
.m58_c00074{transform:matrix(0.304181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304181,0.000000,0.000000,0.250000,0,0);}
.m82_c00074{transform:matrix(0.304377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304377,0.000000,0.000000,0.250000,0,0);}
.m57_c00074{transform:matrix(0.304477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304477,0.000000,0.000000,0.250000,0,0);}
.ma8_c00074{transform:matrix(0.304946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304946,0.000000,0.000000,0.250000,0,0);}
.m2_c00074{transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);}
.m30_c00074{transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);}
.m12_c00074{transform:matrix(0.306845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306845,0.000000,0.000000,0.250000,0,0);}
.m4d_c00074{transform:matrix(0.307189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307189,0.000000,0.000000,0.250000,0,0);}
.m88_c00074{transform:matrix(0.307249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307249,0.000000,0.000000,0.250000,0,0);}
.mf_c00074{transform:matrix(0.307453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307453,0.000000,0.000000,0.250000,0,0);}
.m4e_c00074{transform:matrix(0.307749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307749,0.000000,0.000000,0.250000,0,0);}
.m3_c00074{transform:matrix(0.308174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308174,0.000000,0.000000,0.250000,0,0);}
.m76_c00074{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m84_c00074{transform:matrix(0.310202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310202,0.000000,0.000000,0.250000,0,0);}
.m3e_c00074{transform:matrix(0.310842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310842,0.000000,0.000000,0.250000,0,0);}
.m93_c00074{transform:matrix(0.311211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311211,0.000000,0.000000,0.250000,0,0);}
.m32_c00074{transform:matrix(0.311237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311237,0.000000,0.000000,0.250000,0,0);}
.m64_c00074{transform:matrix(0.311255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311255,0.000000,0.000000,0.250000,0,0);}
.m79_c00074{transform:matrix(0.311943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311943,0.000000,0.000000,0.250000,0,0);}
.m4b_c00074{transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);}
.m39_c00074{transform:matrix(0.312229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312229,0.000000,0.000000,0.250000,0,0);}
.m56_c00074{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.m7c_c00074{transform:matrix(0.312549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312549,0.000000,0.000000,0.250000,0,0);}
.m4_c00074{transform:matrix(0.312774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312774,0.000000,0.000000,0.250000,0,0);}
.mb_c00074{transform:matrix(0.312985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312985,0.000000,0.000000,0.250000,0,0);}
.m31_c00074{transform:matrix(0.314493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314493,0.000000,0.000000,0.250000,0,0);}
.m4f_c00074{transform:matrix(0.314537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314537,0.000000,0.000000,0.250000,0,0);}
.m83_c00074{transform:matrix(0.314545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314545,0.000000,0.000000,0.250000,0,0);}
.m52_c00074{transform:matrix(0.314859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314859,0.000000,0.000000,0.250000,0,0);}
.m9d_c00074{transform:matrix(0.314906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314906,0.000000,0.000000,0.250000,0,0);}
.mc_c00074{transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);}
.m9e_c00074{transform:matrix(0.315523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315523,0.000000,0.000000,0.250000,0,0);}
.m55_c00074{transform:matrix(0.315917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315917,0.000000,0.000000,0.250000,0,0);}
.m33_c00074{transform:matrix(0.316040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316040,0.000000,0.000000,0.250000,0,0);}
.m2d_c00074{transform:matrix(0.316144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316144,0.000000,0.000000,0.250000,0,0);}
.m77_c00074{transform:matrix(0.316782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316782,0.000000,0.000000,0.250000,0,0);}
.m44_c00074{transform:matrix(0.317925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317925,0.000000,0.000000,0.250000,0,0);}
.m75_c00074{transform:matrix(0.317996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317996,0.000000,0.000000,0.250000,0,0);}
.m8_c00074{transform:matrix(0.319040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319040,0.000000,0.000000,0.250000,0,0);}
.m5_c00074{transform:matrix(0.319065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319065,0.000000,0.000000,0.250000,0,0);}
.m27_c00074{transform:matrix(0.319628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319628,0.000000,0.000000,0.250000,0,0);}
.m15_c00074{transform:matrix(0.319959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319959,0.000000,0.000000,0.250000,0,0);}
.m71_c00074{transform:matrix(0.321921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321921,0.000000,0.000000,0.250000,0,0);}
.ma1_c00074{transform:matrix(0.322530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322530,0.000000,0.000000,0.250000,0,0);}
.m10_c00074{transform:matrix(0.324311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324311,0.000000,0.000000,0.250000,0,0);}
.m8d_c00074{transform:matrix(0.324580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324580,0.000000,0.000000,0.250000,0,0);}
.m19_c00074{transform:matrix(0.324699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324699,0.000000,0.000000,0.250000,0,0);}
.m1_c00074{transform:matrix(0.325926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325926,0.000000,0.000000,0.250000,0,0);}
.m9c_c00074{transform:matrix(0.326313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326313,0.000000,0.000000,0.250000,0,0);}
.m47_c00074{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.m3d_c00074{transform:matrix(0.328100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328100,0.000000,0.000000,0.250000,0,0);}
.m8f_c00074{transform:matrix(0.329080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329080,0.000000,0.000000,0.250000,0,0);}
.m89_c00074{transform:matrix(0.330133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330133,0.000000,0.000000,0.250000,0,0);}
.m7e_c00074{transform:matrix(0.330711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330711,0.000000,0.000000,0.250000,0,0);}
.m60_c00074{transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);}
.m90_c00074{transform:matrix(0.331496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331496,0.000000,0.000000,0.250000,0,0);}
.m6f_c00074{transform:matrix(0.332761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332761,0.000000,0.000000,0.250000,0,0);}
.m38_c00074{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m43_c00074{transform:matrix(0.339419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339419,0.000000,0.000000,0.250000,0,0);}
.m69_c00074{transform:matrix(0.340675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340675,0.000000,0.000000,0.250000,0,0);}
.ma7_c00074{transform:matrix(0.341494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341494,0.000000,0.000000,0.250000,0,0);}
.m68_c00074{transform:matrix(0.341953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341953,0.000000,0.000000,0.250000,0,0);}
.m6d_c00074{transform:matrix(0.343191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343191,0.000000,0.000000,0.250000,0,0);}
.m99_c00074{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.m35_c00074{transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);}
.m13_c00074{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m2e_c00074{transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);}
.m73_c00074{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m22_c00074{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m45_c00074{transform:matrix(0.363691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363691,0.000000,0.000000,0.250000,0,0);}
.m97_c00074{transform:matrix(0.373191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373191,0.000000,0.000000,0.250000,0,0);}
.m3a_c00074{transform:matrix(0.387773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387773,0.000000,0.000000,0.250000,0,0);}
.m7d_c00074{transform:matrix(0.395349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395349,0.000000,0.000000,0.250000,0,0);}
.m3f_c00074{transform:matrix(0.408551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408551,0.000000,0.000000,0.250000,0,0);}
.v0_c00074{vertical-align:0.000000px;}
.ls5_c00074{letter-spacing:-2.744280px;}
.ls12_c00074{letter-spacing:-2.509056px;}
.lsb_c00074{letter-spacing:-1.897474px;}
.ls14_c00074{letter-spacing:-1.607364px;}
.ls9_c00074{letter-spacing:-1.136916px;}
.ls4_c00074{letter-spacing:-1.089871px;}
.ls1_c00074{letter-spacing:0.000000px;}
.ls6_c00074{letter-spacing:0.729194px;}
.lsc_c00074{letter-spacing:1.552478px;}
.ls0_c00074{letter-spacing:2.054290px;}
.ls8_c00074{letter-spacing:2.132698px;}
.ls11_c00074{letter-spacing:2.205408px;}
.ls13_c00074{letter-spacing:2.281673px;}
.ls7_c00074{letter-spacing:3.348022px;}
.ls10_c00074{letter-spacing:3.544200px;}
.lsf_c00074{letter-spacing:3.747902px;}
.ls3_c00074{letter-spacing:3.920400px;}
.ls2_c00074{letter-spacing:4.025745px;}
.lsd_c00074{letter-spacing:4.375810px;}
.lse_c00074{letter-spacing:51.321798px;}
.lsa_c00074{letter-spacing:52.747398px;}
.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;}
}
.ws1_c00074{word-spacing:-21.879050px;}
.ws0_c00074{word-spacing:-21.656290px;}
.ws2_c00074{word-spacing:0.000000px;}
._4_c00074{margin-left:-12.545280px;}
._1_c00074{margin-left:-1.943726px;}
._6_c00074{width:1.661946px;}
._2_c00074{width:7.683984px;}
._7_c00074{width:25.012152px;}
._0_c00074{width:26.551800px;}
._3_c00074{width:28.571875px;}
._5_c00074{width:34.813152px;}
.fc0_c00074{color:transparent;}
.fsc_c00074{font-size:22.176000px;}
.fs9_c00074{font-size:25.146000px;}
.fs0_c00074{font-size:27.720000px;}
.fsb_c00074{font-size:33.660000px;}
.fs7_c00074{font-size:39.600000px;}
.fs3_c00074{font-size:44.748000px;}
.fs6_c00074{font-size:51.321798px;}
.fs5_c00074{font-size:52.747398px;}
.fs8_c00074{font-size:70.884000px;}
.fsa_c00074{font-size:77.616198px;}
.fs2_c00074{font-size:78.408000px;}
.fs1_c00074{font-size:87.516198px;}
.fs4_c00074{font-size:91.872198px;}
.y0_c00074{bottom:0.000000px;}
.y23_c00074{bottom:43.387785px;}
.y2_c00074{bottom:74.399535px;}
.y1_c00074{bottom:76.500000px;}
.y24_c00074{bottom:96.491385px;}
.y21_c00074{bottom:181.308843px;}
.y22_c00074{bottom:181.314585px;}
.y20_c00074{bottom:215.533935px;}
.y1f_c00074{bottom:249.035535px;}
.y1e_c00074{bottom:281.462985px;}
.y1d_c00074{bottom:313.538985px;}
.y19_c00074{bottom:313.900335px;}
.y1c_c00074{bottom:321.384735px;}
.y1b_c00074{bottom:333.497385px;}
.y1a_c00074{bottom:345.619935px;}
.y18_c00074{bottom:345.971385px;}
.y17_c00074{bottom:378.408735px;}
.y16_c00074{bottom:417.251385px;}
.y15_c00074{bottom:442.560735px;}
.y14_c00074{bottom:475.344585px;}
.y13_c00074{bottom:507.425535px;}
.y12_c00074{bottom:540.214335px;}
.y11_c00074{bottom:573.003135px;}
.y10_c00074{bottom:607.217535px;}
.yf_c00074{bottom:639.293535px;}
.ye_c00074{bottom:661.746735px;}
.yc_c00074{bottom:671.712075px;}
.yd_c00074{bottom:671.720985px;}
.yb_c00074{bottom:704.153385px;}
.ya_c00074{bottom:735.877935px;}
.y9_c00074{bottom:768.305385px;}
.y8_c00074{bottom:801.455535px;}
.y7_c00074{bottom:833.887935px;}
.y6_c00074{bottom:858.123135px;}
.y5_c00074{bottom:866.315385px;}
.y4_c00074{bottom:931.536585px;}
.y3_c00074{bottom:1085.857785px;}
.he_c00074{height:23.128875px;}
.hb_c00074{height:26.226492px;}
.h2_c00074{height:28.911094px;}
.hd_c00074{height:33.035449px;}
.h8_c00074{height:34.180317px;}
.h7_c00074{height:35.129767px;}
.h9_c00074{height:41.301563px;}
.h5_c00074{height:43.917715px;}
.ha_c00074{height:69.568770px;}
.h4_c00074{height:76.953164px;}
.hc_c00074{height:80.951269px;}
.h3_c00074{height:85.892362px;}
.h6_c00074{height:90.167538px;}
.h1_c00074{height:1110.000000px;}
.h0_c00074{height:1263.000000px;}
.w1_c00074{width:733.500000px;}
.w0_c00074{width:892.500000px;}
.x0_c00074{left:0.000000px;}
.x2_c00074{left:25.209885px;}
.x35_c00074{left:49.709019px;}
.x4_c00074{left:51.385485px;}
.x55_c00074{left:52.563585px;}
.x4c_c00074{left:61.622085px;}
.x3c_c00074{left:72.101235px;}
.x1_c00074{left:79.500000px;}
.x36_c00074{left:82.372485px;}
.x56_c00074{left:83.515935px;}
.x66_c00074{left:85.273185px;}
.x2e_c00074{left:92.623935px;}
.x3d_c00074{left:93.856485px;}
.x69_c00074{left:95.277135px;}
.xd_c00074{left:105.375135px;}
.x16_c00074{left:117.052185px;}
.x41_c00074{left:126.981885px;}
.xe_c00074{left:137.178885px;}
.x51_c00074{left:139.079685px;}
.x3e_c00074{left:143.752485px;}
.x17_c00074{left:147.559035px;}
.x5_c00074{left:149.464785px;}
.x5e_c00074{left:160.161735px;}
.x49_c00074{left:171.239835px;}
.x2b_c00074{left:182.090235px;}
.x6_c00074{left:193.638585px;}
.x59_c00074{left:194.727585px;}
.x42_c00074{left:204.018735px;}
.x37_c00074{left:205.063185px;}
.xf_c00074{left:215.240385px;}
.x44_c00074{left:216.507585px;}
.x1f_c00074{left:226.848135px;}
.x2f_c00074{left:236.302635px;}
.x38_c00074{left:238.871685px;}
.x27_c00074{left:248.316285px;}
.x63_c00074{left:250.192335px;}
.x7_c00074{left:259.854735px;}
.x8_c00074{left:270.620985px;}
.x45_c00074{left:271.729785px;}
.x20_c00074{left:281.956485px;}
.x18_c00074{left:292.767285px;}
.x57_c00074{left:294.470085px;}
.x3f_c00074{left:298.682535px;}
.x3b_c00074{left:299.825985px;}
.x4d_c00074{left:304.404735px;}
.x9_c00074{left:315.532335px;}
.x28_c00074{left:317.611335px;}
.x19_c00074{left:326.268885px;}
.x67_c00074{left:327.298485px;}
.x29_c00074{left:338.356785px;}
.x10_c00074{left:347.974635px;}
.x4e_c00074{left:349.420035px;}
.x46_c00074{left:359.171535px;}
.x4f_c00074{left:360.740685px;}
.x21_c00074{left:370.462485px;}
.x39_c00074{left:382.193985px;}
.x11_c00074{left:391.851435px;}
.x30_c00074{left:393.905685px;}
.x5a_c00074{left:395.558985px;}
.x1a_c00074{left:403.929435px;}
.x22_c00074{left:413.433435px;}
.x3a_c00074{left:414.987735px;}
.x52_c00074{left:416.373735px;}
.xa_c00074{left:425.947035px;}
.x64_c00074{left:428.120085px;}
.x1b_c00074{left:436.757835px;}
.x2c_c00074{left:447.236985px;}
.x23_c00074{left:448.845735px;}
.xb_c00074{left:458.829885px;}
.x40_c00074{left:459.884235px;}
.x2a_c00074{left:470.244585px;}
.x65_c00074{left:472.328535px;}
.x1c_c00074{left:481.500885px;}
.x4a_c00074{left:482.688885px;}
.x12_c00074{left:491.994885px;}
.x31_c00074{left:493.009635px;}
.xc_c00074{left:514.616385px;}
.x5f_c00074{left:516.566685px;}
.x53_c00074{left:518.309085px;}
.x13_c00074{left:525.451935px;}
.x68_c00074{left:536.351835px;}
.x58_c00074{left:538.307085px;}
.x1d_c00074{left:547.598235px;}
.x60_c00074{left:549.296085px;}
.x24_c00074{left:558.809985px;}
.x32_c00074{left:570.056385px;}
.x47_c00074{left:572.838285px;}
.x1e_c00074{left:579.896985px;}
.x43_c00074{left:581.441385px;}
.x61_c00074{left:582.470985px;}
.x33_c00074{left:591.786885px;}
.x14_c00074{left:602.657085px;}
.x54_c00074{left:614.051985px;}
.x5c_c00074{left:615.675585px;}
.x3_c00074{left:623.452035px;}
.x25_c00074{left:625.971585px;}
.x15_c00074{left:634.936035px;}
.x62_c00074{left:637.084335px;}
.x2d_c00074{left:647.385285px;}
.x48_c00074{left:648.459435px;}
.x34_c00074{left:657.527835px;}
.x26_c00074{left:658.745535px;}
.x4b_c00074{left:670.051335px;}
.x5b_c00074{left:674.862735px;}
.x50_c00074{left:681.391785px;}
.x5d_c00074{left:692.261985px;}
.x6a_c00074{left:725.560635px;}
@media print{
.v0_c00074{vertical-align:0.000000pt;}
.ls5_c00074{letter-spacing:-2.439360pt;}
.ls12_c00074{letter-spacing:-2.230272pt;}
.lsb_c00074{letter-spacing:-1.686643pt;}
.ls14_c00074{letter-spacing:-1.428768pt;}
.ls9_c00074{letter-spacing:-1.010592pt;}
.ls4_c00074{letter-spacing:-0.968774pt;}
.ls1_c00074{letter-spacing:0.000000pt;}
.ls6_c00074{letter-spacing:0.648173pt;}
.lsc_c00074{letter-spacing:1.379981pt;}
.ls0_c00074{letter-spacing:1.826035pt;}
.ls8_c00074{letter-spacing:1.895731pt;}
.ls11_c00074{letter-spacing:1.960363pt;}
.ls13_c00074{letter-spacing:2.028154pt;}
.ls7_c00074{letter-spacing:2.976019pt;}
.ls10_c00074{letter-spacing:3.150400pt;}
.lsf_c00074{letter-spacing:3.331469pt;}
.ls3_c00074{letter-spacing:3.484800pt;}
.ls2_c00074{letter-spacing:3.578440pt;}
.lsd_c00074{letter-spacing:3.889609pt;}
.lse_c00074{letter-spacing:45.619376pt;}
.lsa_c00074{letter-spacing:46.886576pt;}
.ws1_c00074{word-spacing:-19.448044pt;}
.ws0_c00074{word-spacing:-19.250035pt;}
.ws2_c00074{word-spacing:0.000000pt;}
._4_c00074{margin-left:-11.151360pt;}
._1_c00074{margin-left:-1.727757pt;}
._6_c00074{width:1.477285pt;}
._2_c00074{width:6.830208pt;}
._7_c00074{width:22.233024pt;}
._0_c00074{width:23.601600pt;}
._3_c00074{width:25.397222pt;}
._5_c00074{width:30.945024pt;}
.fsc_c00074{font-size:19.712000pt;}
.fs9_c00074{font-size:22.352000pt;}
.fs0_c00074{font-size:24.640000pt;}
.fsb_c00074{font-size:29.920000pt;}
.fs7_c00074{font-size:35.200000pt;}
.fs3_c00074{font-size:39.776000pt;}
.fs6_c00074{font-size:45.619376pt;}
.fs5_c00074{font-size:46.886576pt;}
.fs8_c00074{font-size:63.008000pt;}
.fsa_c00074{font-size:68.992176pt;}
.fs2_c00074{font-size:69.696000pt;}
.fs1_c00074{font-size:77.792176pt;}
.fs4_c00074{font-size:81.664176pt;}
.y0_c00074{bottom:0.000000pt;}
.y23_c00074{bottom:38.566920pt;}
.y2_c00074{bottom:66.132920pt;}
.y1_c00074{bottom:68.000000pt;}
.y24_c00074{bottom:85.770120pt;}
.y21_c00074{bottom:161.163416pt;}
.y22_c00074{bottom:161.168520pt;}
.y20_c00074{bottom:191.585720pt;}
.y1f_c00074{bottom:221.364920pt;}
.y1e_c00074{bottom:250.189320pt;}
.y1d_c00074{bottom:278.701320pt;}
.y19_c00074{bottom:279.022520pt;}
.y1c_c00074{bottom:285.675320pt;}
.y1b_c00074{bottom:296.442120pt;}
.y1a_c00074{bottom:307.217720pt;}
.y18_c00074{bottom:307.530120pt;}
.y17_c00074{bottom:336.363320pt;}
.y16_c00074{bottom:370.890120pt;}
.y15_c00074{bottom:393.387320pt;}
.y14_c00074{bottom:422.528520pt;}
.y13_c00074{bottom:451.044920pt;}
.y12_c00074{bottom:480.190520pt;}
.y11_c00074{bottom:509.336120pt;}
.y10_c00074{bottom:539.748920pt;}
.yf_c00074{bottom:568.260920pt;}
.ye_c00074{bottom:588.219320pt;}
.yc_c00074{bottom:597.077400pt;}
.yd_c00074{bottom:597.085320pt;}
.yb_c00074{bottom:625.914120pt;}
.ya_c00074{bottom:654.113720pt;}
.y9_c00074{bottom:682.938120pt;}
.y8_c00074{bottom:712.404920pt;}
.y7_c00074{bottom:741.233720pt;}
.y6_c00074{bottom:762.776120pt;}
.y5_c00074{bottom:770.058120pt;}
.y4_c00074{bottom:828.032520pt;}
.y3_c00074{bottom:965.206920pt;}
.he_c00074{height:20.559000pt;}
.hb_c00074{height:23.312438pt;}
.h2_c00074{height:25.698750pt;}
.hd_c00074{height:29.364844pt;}
.h8_c00074{height:30.382504pt;}
.h7_c00074{height:31.226460pt;}
.h9_c00074{height:36.712500pt;}
.h5_c00074{height:39.037969pt;}
.ha_c00074{height:61.838906pt;}
.h4_c00074{height:68.402813pt;}
.hc_c00074{height:71.956684pt;}
.h3_c00074{height:76.348766pt;}
.h6_c00074{height:80.148923pt;}
.h1_c00074{height:986.666667pt;}
.h0_c00074{height:1122.666667pt;}
.w1_c00074{width:652.000000pt;}
.w0_c00074{width:793.333333pt;}
.x0_c00074{left:0.000000pt;}
.x2_c00074{left:22.408787pt;}
.x35_c00074{left:44.185795pt;}
.x4_c00074{left:45.675987pt;}
.x55_c00074{left:46.723187pt;}
.x4c_c00074{left:54.775187pt;}
.x3c_c00074{left:64.089987pt;}
.x1_c00074{left:70.666667pt;}
.x36_c00074{left:73.219987pt;}
.x56_c00074{left:74.236387pt;}
.x66_c00074{left:75.798387pt;}
.x2e_c00074{left:82.332387pt;}
.x3d_c00074{left:83.427987pt;}
.x69_c00074{left:84.690787pt;}
.xd_c00074{left:93.666787pt;}
.x16_c00074{left:104.046387pt;}
.x41_c00074{left:112.872787pt;}
.xe_c00074{left:121.936787pt;}
.x51_c00074{left:123.626387pt;}
.x3e_c00074{left:127.779987pt;}
.x17_c00074{left:131.163587pt;}
.x5_c00074{left:132.857587pt;}
.x5e_c00074{left:142.365987pt;}
.x49_c00074{left:152.213187pt;}
.x2b_c00074{left:161.857987pt;}
.x6_c00074{left:172.123187pt;}
.x59_c00074{left:173.091187pt;}
.x42_c00074{left:181.349987pt;}
.x37_c00074{left:182.278387pt;}
.xf_c00074{left:191.324787pt;}
.x44_c00074{left:192.451187pt;}
.x1f_c00074{left:201.642787pt;}
.x2f_c00074{left:210.046787pt;}
.x38_c00074{left:212.330387pt;}
.x27_c00074{left:220.725587pt;}
.x63_c00074{left:222.393187pt;}
.x7_c00074{left:230.981987pt;}
.x8_c00074{left:240.551987pt;}
.x45_c00074{left:241.537587pt;}
.x20_c00074{left:250.627987pt;}
.x18_c00074{left:260.237587pt;}
.x57_c00074{left:261.751187pt;}
.x3f_c00074{left:265.495587pt;}
.x3b_c00074{left:266.511987pt;}
.x4d_c00074{left:270.581987pt;}
.x9_c00074{left:280.473187pt;}
.x28_c00074{left:282.321187pt;}
.x19_c00074{left:290.016787pt;}
.x67_c00074{left:290.931987pt;}
.x29_c00074{left:300.761587pt;}
.x10_c00074{left:309.310787pt;}
.x4e_c00074{left:310.595587pt;}
.x46_c00074{left:319.263587pt;}
.x4f_c00074{left:320.658387pt;}
.x21_c00074{left:329.299987pt;}
.x39_c00074{left:339.727987pt;}
.x11_c00074{left:348.312387pt;}
.x30_c00074{left:350.138387pt;}
.x5a_c00074{left:351.607987pt;}
.x1a_c00074{left:359.048387pt;}
.x22_c00074{left:367.496387pt;}
.x3a_c00074{left:368.877987pt;}
.x52_c00074{left:370.109987pt;}
.xa_c00074{left:378.619587pt;}
.x64_c00074{left:380.551187pt;}
.x1b_c00074{left:388.229187pt;}
.x2c_c00074{left:397.543987pt;}
.x23_c00074{left:398.973987pt;}
.xb_c00074{left:407.848787pt;}
.x40_c00074{left:408.785987pt;}
.x2a_c00074{left:417.995187pt;}
.x65_c00074{left:419.847587pt;}
.x1c_c00074{left:428.000787pt;}
.x4a_c00074{left:429.056787pt;}
.x12_c00074{left:437.328787pt;}
.x31_c00074{left:438.230787pt;}
.xc_c00074{left:457.436787pt;}
.x5f_c00074{left:459.170387pt;}
.x53_c00074{left:460.719187pt;}
.x13_c00074{left:467.068387pt;}
.x68_c00074{left:476.757187pt;}
.x58_c00074{left:478.495187pt;}
.x1d_c00074{left:486.753987pt;}
.x60_c00074{left:488.263187pt;}
.x24_c00074{left:496.719987pt;}
.x32_c00074{left:506.716787pt;}
.x47_c00074{left:509.189587pt;}
.x1e_c00074{left:515.463987pt;}
.x43_c00074{left:516.836787pt;}
.x61_c00074{left:517.751987pt;}
.x33_c00074{left:526.032787pt;}
.x14_c00074{left:535.695187pt;}
.x54_c00074{left:545.823987pt;}
.x5c_c00074{left:547.267187pt;}
.x3_c00074{left:554.179587pt;}
.x25_c00074{left:556.419187pt;}
.x15_c00074{left:564.387587pt;}
.x62_c00074{left:566.297187pt;}
.x2d_c00074{left:575.453587pt;}
.x48_c00074{left:576.408387pt;}
.x34_c00074{left:584.469187pt;}
.x26_c00074{left:585.551587pt;}
.x4b_c00074{left:595.601187pt;}
.x5b_c00074{left:599.877987pt;}
.x50_c00074{left:605.681587pt;}
.x5d_c00074{left:615.343987pt;}
.x6a_c00074{left:644.942787pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2f78f21024f69a03759fe5cd.woff2')format("woff");}.ff1_c00075{font-family:ff1_c00075;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00075;src:url('chunks/assets/font_c5cac43396d347f725935475.woff2')format("woff");}.ff2_c00075{font-family:ff2_c00075;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00075;src:url('chunks/assets/font_5692dc2a62b96c3db3d71c73.woff2')format("woff");}.ff3_c00075{font-family:ff3_c00075;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00075;src:url('chunks/assets/font_301e075c8e05494714e2c749.woff2')format("woff");}.ff4_c00075{font-family:ff4_c00075;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m74_c00075{transform:matrix(0.191964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191964,0.000000,0.000000,0.250000,0,0);}
.m12_c00075{transform:matrix(0.218264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218264,0.000000,0.000000,0.250000,0,0);}
.m72_c00075{transform:matrix(0.222093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222093,0.000000,0.000000,0.250000,0,0);}
.m0_c00075{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00075{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.m28_c00075{transform:matrix(0.252992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252992,0.000000,0.000000,0.250000,0,0);}
.m43_c00075{transform:matrix(0.253513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253513,0.000000,0.000000,0.250000,0,0);}
.m4b_c00075{transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);}
.m4e_c00075{transform:matrix(0.255066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255066,0.000000,0.000000,0.250000,0,0);}
.m81_c00075{transform:matrix(0.256456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256456,0.000000,0.000000,0.250000,0,0);}
.m1_c00075{transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);}
.m21_c00075{transform:matrix(0.259109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259109,0.000000,0.000000,0.250000,0,0);}
.m93_c00075{transform:matrix(0.259641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259641,0.000000,0.000000,0.250000,0,0);}
.m91_c00075{transform:matrix(0.260579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260579,0.000000,0.000000,0.250000,0,0);}
.m67_c00075{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m47_c00075{transform:matrix(0.261551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261551,0.000000,0.000000,0.250000,0,0);}
.m5a_c00075{transform:matrix(0.261735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261735,0.000000,0.000000,0.250000,0,0);}
.m60_c00075{transform:matrix(0.261836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261836,0.000000,0.000000,0.250000,0,0);}
.m82_c00075{transform:matrix(0.261938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261938,0.000000,0.000000,0.250000,0,0);}
.m4d_c00075{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m6c_c00075{transform:matrix(0.263919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263919,0.000000,0.000000,0.250000,0,0);}
.m14_c00075{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m1c_c00075{transform:matrix(0.264128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264128,0.000000,0.000000,0.250000,0,0);}
.m2e_c00075{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m35_c00075{transform:matrix(0.266684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266684,0.000000,0.000000,0.250000,0,0);}
.m65_c00075{transform:matrix(0.266706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266706,0.000000,0.000000,0.250000,0,0);}
.m38_c00075{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.m8c_c00075{transform:matrix(0.266949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266949,0.000000,0.000000,0.250000,0,0);}
.me_c00075{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m54_c00075{transform:matrix(0.268414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268414,0.000000,0.000000,0.250000,0,0);}
.m25_c00075{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.m33_c00075{transform:matrix(0.268647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268647,0.000000,0.000000,0.250000,0,0);}
.m5_c00075{transform:matrix(0.268705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268705,0.000000,0.000000,0.250000,0,0);}
.m3f_c00075{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m18_c00075{transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);}
.m7e_c00075{transform:matrix(0.272239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272239,0.000000,0.000000,0.250000,0,0);}
.m23_c00075{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m6b_c00075{transform:matrix(0.273717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273717,0.000000,0.000000,0.250000,0,0);}
.mb_c00075{transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);}
.m24_c00075{transform:matrix(0.275287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275287,0.000000,0.000000,0.250000,0,0);}
.m99_c00075{transform:matrix(0.275308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275308,0.000000,0.000000,0.250000,0,0);}
.m3a_c00075{transform:matrix(0.275604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275604,0.000000,0.000000,0.250000,0,0);}
.m27_c00075{transform:matrix(0.275814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275814,0.000000,0.000000,0.250000,0,0);}
.m57_c00075{transform:matrix(0.276042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276042,0.000000,0.000000,0.250000,0,0);}
.m8b_c00075{transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);}
.m13_c00075{transform:matrix(0.277612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277612,0.000000,0.000000,0.250000,0,0);}
.m64_c00075{transform:matrix(0.279018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279018,0.000000,0.000000,0.250000,0,0);}
.m39_c00075{transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);}
.m8f_c00075{transform:matrix(0.279763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279763,0.000000,0.000000,0.250000,0,0);}
.m7f_c00075{transform:matrix(0.279948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279948,0.000000,0.000000,0.250000,0,0);}
.ma_c00075{transform:matrix(0.280044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280044,0.000000,0.000000,0.250000,0,0);}
.m44_c00075{transform:matrix(0.280767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280767,0.000000,0.000000,0.250000,0,0);}
.m94_c00075{transform:matrix(0.280961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280961,0.000000,0.000000,0.250000,0,0);}
.m53_c00075{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.m8d_c00075{transform:matrix(0.283272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283272,0.000000,0.000000,0.250000,0,0);}
.m59_c00075{transform:matrix(0.283519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283519,0.000000,0.000000,0.250000,0,0);}
.m34_c00075{transform:matrix(0.284095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284095,0.000000,0.000000,0.250000,0,0);}
.m20_c00075{transform:matrix(0.284367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284367,0.000000,0.000000,0.250000,0,0);}
.m8e_c00075{transform:matrix(0.284388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284388,0.000000,0.000000,0.250000,0,0);}
.m92_c00075{transform:matrix(0.284669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284669,0.000000,0.000000,0.250000,0,0);}
.m56_c00075{transform:matrix(0.284771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284771,0.000000,0.000000,0.250000,0,0);}
.m37_c00075{transform:matrix(0.285047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285047,0.000000,0.000000,0.250000,0,0);}
.m40_c00075{transform:matrix(0.285088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285088,0.000000,0.000000,0.250000,0,0);}
.m9d_c00075{transform:matrix(0.286728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286728,0.000000,0.000000,0.250000,0,0);}
.m75_c00075{transform:matrix(0.286764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286764,0.000000,0.000000,0.250000,0,0);}
.m30_c00075{transform:matrix(0.286926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286926,0.000000,0.000000,0.250000,0,0);}
.m66_c00075{transform:matrix(0.287229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287229,0.000000,0.000000,0.250000,0,0);}
.m2b_c00075{transform:matrix(0.287384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287384,0.000000,0.000000,0.250000,0,0);}
.m3c_c00075{transform:matrix(0.287855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287855,0.000000,0.000000,0.250000,0,0);}
.m8_c00075{transform:matrix(0.287994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287994,0.000000,0.000000,0.250000,0,0);}
.m9f_c00075{transform:matrix(0.288481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288481,0.000000,0.000000,0.250000,0,0);}
.mf_c00075{transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);}
.m70_c00075{transform:matrix(0.288623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288623,0.000000,0.000000,0.250000,0,0);}
.m3_c00075{transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);}
.m61_c00075{transform:matrix(0.289255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289255,0.000000,0.000000,0.250000,0,0);}
.ma0_c00075{transform:matrix(0.289333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289333,0.000000,0.000000,0.250000,0,0);}
.m9e_c00075{transform:matrix(0.289508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289508,0.000000,0.000000,0.250000,0,0);}
.m41_c00075{transform:matrix(0.290038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290038,0.000000,0.000000,0.250000,0,0);}
.m9b_c00075{transform:matrix(0.290157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290157,0.000000,0.000000,0.250000,0,0);}
.m3b_c00075{transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);}
.m86_c00075{transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);}
.m32_c00075{transform:matrix(0.291135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291135,0.000000,0.000000,0.250000,0,0);}
.md_c00075{transform:matrix(0.291201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291201,0.000000,0.000000,0.250000,0,0);}
.m4a_c00075{transform:matrix(0.292050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292050,0.000000,0.000000,0.250000,0,0);}
.m9a_c00075{transform:matrix(0.292127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292127,0.000000,0.000000,0.250000,0,0);}
.m1a_c00075{transform:matrix(0.292174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292174,0.000000,0.000000,0.250000,0,0);}
.m1e_c00075{transform:matrix(0.293350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293350,0.000000,0.000000,0.250000,0,0);}
.m48_c00075{transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);}
.m1f_c00075{transform:matrix(0.294253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294253,0.000000,0.000000,0.250000,0,0);}
.m52_c00075{transform:matrix(0.294443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294443,0.000000,0.000000,0.250000,0,0);}
.m85_c00075{transform:matrix(0.294813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294813,0.000000,0.000000,0.250000,0,0);}
.m2a_c00075{transform:matrix(0.295194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295194,0.000000,0.000000,0.250000,0,0);}
.m68_c00075{transform:matrix(0.296562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296562,0.000000,0.000000,0.250000,0,0);}
.m51_c00075{transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);}
.m79_c00075{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m62_c00075{transform:matrix(0.297263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297263,0.000000,0.000000,0.250000,0,0);}
.m50_c00075{transform:matrix(0.298711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298711,0.000000,0.000000,0.250000,0,0);}
.m78_c00075{transform:matrix(0.299640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299640,0.000000,0.000000,0.250000,0,0);}
.m8a_c00075{transform:matrix(0.300023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300023,0.000000,0.000000,0.250000,0,0);}
.m6_c00075{transform:matrix(0.300052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300052,0.000000,0.000000,0.250000,0,0);}
.m7b_c00075{transform:matrix(0.300157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300157,0.000000,0.000000,0.250000,0,0);}
.m16_c00075{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m7_c00075{transform:matrix(0.303508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303508,0.000000,0.000000,0.250000,0,0);}
.m5d_c00075{transform:matrix(0.303979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303979,0.000000,0.000000,0.250000,0,0);}
.m2d_c00075{transform:matrix(0.304556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304556,0.000000,0.000000,0.250000,0,0);}
.m5b_c00075{transform:matrix(0.304689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304689,0.000000,0.000000,0.250000,0,0);}
.m3e_c00075{transform:matrix(0.305499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305499,0.000000,0.000000,0.250000,0,0);}
.m77_c00075{transform:matrix(0.305662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305662,0.000000,0.000000,0.250000,0,0);}
.m95_c00075{transform:matrix(0.305669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305669,0.000000,0.000000,0.250000,0,0);}
.ma1_c00075{transform:matrix(0.305758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305758,0.000000,0.000000,0.250000,0,0);}
.m1d_c00075{transform:matrix(0.306553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306553,0.000000,0.000000,0.250000,0,0);}
.m7a_c00075{transform:matrix(0.307045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307045,0.000000,0.000000,0.250000,0,0);}
.m69_c00075{transform:matrix(0.307306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307306,0.000000,0.000000,0.250000,0,0);}
.m73_c00075{transform:matrix(0.307730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307730,0.000000,0.000000,0.250000,0,0);}
.m6d_c00075{transform:matrix(0.307981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307981,0.000000,0.000000,0.250000,0,0);}
.m2c_c00075{transform:matrix(0.308483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308483,0.000000,0.000000,0.250000,0,0);}
.m31_c00075{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m9c_c00075{transform:matrix(0.308944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308944,0.000000,0.000000,0.250000,0,0);}
.m1b_c00075{transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);}
.m45_c00075{transform:matrix(0.309232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309232,0.000000,0.000000,0.250000,0,0);}
.m83_c00075{transform:matrix(0.310265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310265,0.000000,0.000000,0.250000,0,0);}
.m55_c00075{transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);}
.m76_c00075{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.m89_c00075{transform:matrix(0.314182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314182,0.000000,0.000000,0.250000,0,0);}
.m15_c00075{transform:matrix(0.314276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314276,0.000000,0.000000,0.250000,0,0);}
.m49_c00075{transform:matrix(0.314537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314537,0.000000,0.000000,0.250000,0,0);}
.m42_c00075{transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);}
.m36_c00075{transform:matrix(0.315578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315578,0.000000,0.000000,0.250000,0,0);}
.mc_c00075{transform:matrix(0.315917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315917,0.000000,0.000000,0.250000,0,0);}
.m29_c00075{transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);}
.m63_c00075{transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);}
.m84_c00075{transform:matrix(0.316782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316782,0.000000,0.000000,0.250000,0,0);}
.m6e_c00075{transform:matrix(0.317373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317373,0.000000,0.000000,0.250000,0,0);}
.m90_c00075{transform:matrix(0.317762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317762,0.000000,0.000000,0.250000,0,0);}
.m6a_c00075{transform:matrix(0.317931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317931,0.000000,0.000000,0.250000,0,0);}
.m7d_c00075{transform:matrix(0.318082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318082,0.000000,0.000000,0.250000,0,0);}
.m4_c00075{transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);}
.m11_c00075{transform:matrix(0.318994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318994,0.000000,0.000000,0.250000,0,0);}
.m7c_c00075{transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);}
.m88_c00075{transform:matrix(0.321222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321222,0.000000,0.000000,0.250000,0,0);}
.m80_c00075{transform:matrix(0.322259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322259,0.000000,0.000000,0.250000,0,0);}
.m10_c00075{transform:matrix(0.322561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322561,0.000000,0.000000,0.250000,0,0);}
.m96_c00075{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.m98_c00075{transform:matrix(0.324170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324170,0.000000,0.000000,0.250000,0,0);}
.m5c_c00075{transform:matrix(0.325114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325114,0.000000,0.000000,0.250000,0,0);}
.m71_c00075{transform:matrix(0.326045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326045,0.000000,0.000000,0.250000,0,0);}
.m87_c00075{transform:matrix(0.326627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326627,0.000000,0.000000,0.250000,0,0);}
.m5e_c00075{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.m97_c00075{transform:matrix(0.327636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327636,0.000000,0.000000,0.250000,0,0);}
.m2f_c00075{transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);}
.m5f_c00075{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m17_c00075{transform:matrix(0.333836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333836,0.000000,0.000000,0.250000,0,0);}
.m4c_c00075{transform:matrix(0.337295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337295,0.000000,0.000000,0.250000,0,0);}
.m3d_c00075{transform:matrix(0.338602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338602,0.000000,0.000000,0.250000,0,0);}
.m26_c00075{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m58_c00075{transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);}
.m22_c00075{transform:matrix(0.344761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344761,0.000000,0.000000,0.250000,0,0);}
.m19_c00075{transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);}
.m2_c00075{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m9_c00075{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m6f_c00075{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m46_c00075{transform:matrix(0.409469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409469,0.000000,0.000000,0.250000,0,0);}
.v0_c00075{vertical-align:0.000000px;}
.ls9_c00075{letter-spacing:-2.744280px;}
.lsb_c00075{letter-spacing:-2.375762px;}
.ls11_c00075{letter-spacing:-1.897474px;}
.ls4_c00075{letter-spacing:0.000000px;}
.ls1_c00075{letter-spacing:0.533174px;}
.lsa_c00075{letter-spacing:0.705672px;}
.ls0_c00075{letter-spacing:0.815443px;}
.lsf_c00075{letter-spacing:1.246687px;}
.ls2_c00075{letter-spacing:1.505434px;}
.ls8_c00075{letter-spacing:1.936678px;}
.lse_c00075{letter-spacing:2.195424px;}
.ls6_c00075{letter-spacing:2.352240px;}
.ls12_c00075{letter-spacing:3.653813px;}
.ls3_c00075{letter-spacing:3.787106px;}
.lsd_c00075{letter-spacing:3.818470px;}
.ls7_c00075{letter-spacing:3.920400px;}
.ls10_c00075{letter-spacing:3.979810px;}
.ls5_c00075{letter-spacing:4.405500px;}
.lsc_c00075{letter-spacing:57.024198px;}
.sc__c00075{text-shadow:none;}
.sc0_c00075{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00075{-webkit-text-stroke:0px transparent;}
.sc0_c00075{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00075{word-spacing:-19.602000px;}
.ws1_c00075{word-spacing:0.000000px;}
._2_c00075{width:5.723784px;}
._3_c00075{width:28.854144px;}
._0_c00075{width:32.104670px;}
._1_c00075{width:33.322133px;}
.fc0_c00075{color:transparent;}
.fs9_c00075{font-size:8.712198px;}
.fs0_c00075{font-size:22.176000px;}
.fs4_c00075{font-size:27.720000px;}
.fsd_c00075{font-size:34.056198px;}
.fs7_c00075{font-size:38.808000px;}
.fsc_c00075{font-size:55.440000px;}
.fse_c00075{font-size:56.628000px;}
.fs8_c00075{font-size:57.024198px;}
.fs5_c00075{font-size:66.330000px;}
.fs3_c00075{font-size:73.260000px;}
.fs2_c00075{font-size:78.408000px;}
.fs6_c00075{font-size:78.804000px;}
.fsb_c00075{font-size:79.200000px;}
.fsa_c00075{font-size:79.596198px;}
.fs1_c00075{font-size:88.110000px;}
.y0_c00075{bottom:0.000000px;}
.y25_c00075{bottom:14.880735px;}
.y24_c00075{bottom:22.721535px;}
.y23_c00075{bottom:59.425785px;}
.y1_c00075{bottom:76.500000px;}
.y22_c00075{bottom:86.517135px;}
.y21_c00075{bottom:144.966735px;}
.y1f_c00075{bottom:149.243535px;}
.y20_c00075{bottom:149.599935px;}
.y27_c00075{bottom:160.291935px;}
.y1e_c00075{bottom:181.670985px;}
.y1d_c00075{bottom:253.663785px;}
.y1c_c00075{bottom:280.042335px;}
.y1b_c00075{bottom:312.469785px;}
.y1a_c00075{bottom:340.625385px;}
.y19_c00075{bottom:344.907135px;}
.y18_c00075{bottom:377.339535px;}
.y17_c00075{bottom:409.415535px;}
.y16_c00075{bottom:441.486585px;}
.y15_c00075{bottom:473.923935px;}
.y14_c00075{bottom:505.643535px;}
.y13_c00075{bottom:537.719535px;}
.y12_c00075{bottom:570.508335px;}
.y11_c00075{bottom:603.297135px;}
.y26_c00075{bottom:615.766185px;}
.y10_c00075{bottom:636.437385px;}
.yf_c00075{bottom:668.869785px;}
.ye_c00075{bottom:702.376335px;}
.yd_c00075{bottom:734.090985px;}
.yc_c00075{bottom:765.810585px;}
.yb_c00075{bottom:798.242985px;}
.ya_c00075{bottom:831.031785px;}
.y9_c00075{bottom:863.820585px;}
.y8_c00075{bottom:896.252985px;}
.y7_c00075{bottom:910.157535px;}
.y6_c00075{bottom:920.131785px;}
.y5_c00075{bottom:929.041785px;}
.y2_c00075{bottom:938.669535px;}
.y4_c00075{bottom:1007.806185px;}
.y3_c00075{bottom:1078.729785px;}
.ha_c00075{height:8.550546px;}
.h2_c00075{height:23.128875px;}
.h6_c00075{height:28.911094px;}
.he_c00075{height:35.519550px;}
.h9_c00075{height:37.978116px;}
.h8_c00075{height:40.475531px;}
.hd_c00075{height:57.822188px;}
.hf_c00075{height:59.061234px;}
.h5_c00075{height:76.407891px;}
.h4_c00075{height:76.953164px;}
.h7_c00075{height:77.341816px;}
.hc_c00075{height:77.730469px;}
.hb_c00075{height:80.218043px;}
.h3_c00075{height:86.475146px;}
.h1_c00075{height:1110.000000px;}
.h0_c00075{height:1263.000000px;}
.w1_c00075{width:733.500000px;}
.w0_c00075{width:892.500000px;}
.x0_c00075{left:0.000000px;}
.x2_c00075{left:24.165435px;}
.xf_c00075{left:55.201935px;}
.x5b_c00075{left:56.290935px;}
.x2a_c00075{left:77.481885px;}
.x1_c00075{left:79.500000px;}
.x25_c00075{left:88.178835px;}
.x44_c00075{left:89.198535px;}
.x16_c00075{left:98.806485px;}
.x34_c00075{left:99.930135px;}
.x5_c00075{left:109.741035px;}
.x59_c00075{left:111.414135px;}
.x3b_c00075{left:121.299285px;}
.x17_c00075{left:131.129985px;}
.x50_c00075{left:132.357585px;}
.x35_c00075{left:133.416885px;}
.x10_c00075{left:143.410935px;}
.x37_c00075{left:153.400035px;}
.x26_c00075{left:164.750385px;}
.x4a_c00075{left:165.760185px;}
.x18_c00075{left:176.229435px;}
.x2b_c00075{left:177.263985px;}
.x5c_c00075{left:180.075585px;}
.x53_c00075{left:186.748185px;}
.x6_c00075{left:187.951035px;}
.x2c_c00075{left:198.910335px;}
.x54_c00075{left:209.216235px;}
.x41_c00075{left:210.428985px;}
.x7_c00075{left:220.586385px;}
.x4d_c00075{left:222.531735px;}
.x2d_c00075{left:232.496085px;}
.x4_c00075{left:236.579835px;}
.x3c_c00075{left:243.193035px;}
.x47_c00075{left:254.998785px;}
.x38_c00075{left:265.502685px;}
.x2e_c00075{left:268.111335px;}
.x45_c00075{left:276.709485px;}
.x1d_c00075{left:287.045085px;}
.x51_c00075{left:288.094485px;}
.x21_c00075{left:298.113285px;}
.x8_c00075{left:299.469585px;}
.x19_c00075{left:309.523035px;}
.x5d_c00075{left:310.547685px;}
.x40_c00075{left:319.937835px;}
.x11_c00075{left:331.852485px;}
.x3d_c00075{left:334.198785px;}
.x2f_c00075{left:342.663285px;}
.x5e_c00075{left:343.697835px;}
.x9_c00075{left:354.419535px;}
.x42_c00075{left:355.459035px;}
.x55_c00075{left:365.448135px;}
.x58_c00075{left:369.873435px;}
.x46_c00075{left:376.857885px;}
.x1a_c00075{left:387.549885px;}
.x12_c00075{left:398.627985px;}
.x22_c00075{left:420.680235px;}
.x27_c00075{left:431.387085px;}
.x39_c00075{left:442.247385px;}
.x5f_c00075{left:443.534385px;}
.x23_c00075{left:454.206585px;}
.x56_c00075{left:455.260935px;}
.xa_c00075{left:464.071935px;}
.x36_c00075{left:465.086685px;}
.x28_c00075{left:475.942035px;}
.x3e_c00075{left:476.946885px;}
.x30_c00075{left:487.020135px;}
.x57_c00075{left:488.341785px;}
.x4b_c00075{left:499.108035px;}
.x48_c00075{left:500.484135px;}
.xb_c00075{left:508.621935px;}
.x3f_c00075{left:509.814885px;}
.x13_c00075{left:519.794085px;}
.x1e_c00075{left:530.842485px;}
.x1b_c00075{left:541.514685px;}
.x4c_c00075{left:542.915535px;}
.x1f_c00075{left:551.929485px;}
.x14_c00075{left:553.176885px;}
.x4e_c00075{left:554.350035px;}
.x31_c00075{left:563.344185px;}
.x49_c00075{left:575.382585px;}
.x3a_c00075{left:585.183585px;}
.x15_c00075{left:586.727985px;}
.xc_c00075{left:597.167535px;}
.x5a_c00075{left:598.177335px;}
.x24_c00075{left:608.408985px;}
.x32_c00075{left:619.581135px;}
.x1c_c00075{left:620.952285px;}
.x3_c00075{left:630.570135px;}
.x4f_c00075{left:641.128485px;}
.x43_c00075{left:643.083735px;}
.x33_c00075{left:652.488735px;}
.x52_c00075{left:654.087585px;}
.x29_c00075{left:663.883635px;}
.xe_c00075{left:671.363085px;}
.x61_c00075{left:672.744135px;}
.x60_c00075{left:673.758885px;}
.x20_c00075{left:674.823135px;}
.xd_c00075{left:679.763235px;}
.x62_c00075{left:715.314135px;}
.x63_c00075{left:727.674285px;}
@media print{
.v0_c00075{vertical-align:0.000000pt;}
.ls9_c00075{letter-spacing:-2.439360pt;}
.lsb_c00075{letter-spacing:-2.111789pt;}
.ls11_c00075{letter-spacing:-1.686643pt;}
.ls4_c00075{letter-spacing:0.000000pt;}
.ls1_c00075{letter-spacing:0.473933pt;}
.lsa_c00075{letter-spacing:0.627264pt;}
.ls0_c00075{letter-spacing:0.724838pt;}
.lsf_c00075{letter-spacing:1.108166pt;}
.ls2_c00075{letter-spacing:1.338163pt;}
.ls8_c00075{letter-spacing:1.721491pt;}
.lse_c00075{letter-spacing:1.951488pt;}
.ls6_c00075{letter-spacing:2.090880pt;}
.ls12_c00075{letter-spacing:3.247834pt;}
.ls3_c00075{letter-spacing:3.366317pt;}
.lsd_c00075{letter-spacing:3.394195pt;}
.ls7_c00075{letter-spacing:3.484800pt;}
.ls10_c00075{letter-spacing:3.537609pt;}
.ls5_c00075{letter-spacing:3.916000pt;}
.lsc_c00075{letter-spacing:50.688176pt;}
.ws0_c00075{word-spacing:-17.424000pt;}
.ws1_c00075{word-spacing:0.000000pt;}
._2_c00075{width:5.087808pt;}
._3_c00075{width:25.648128pt;}
._0_c00075{width:28.537485pt;}
._1_c00075{width:29.619674pt;}
.fs9_c00075{font-size:7.744176pt;}
.fs0_c00075{font-size:19.712000pt;}
.fs4_c00075{font-size:24.640000pt;}
.fsd_c00075{font-size:30.272176pt;}
.fs7_c00075{font-size:34.496000pt;}
.fsc_c00075{font-size:49.280000pt;}
.fse_c00075{font-size:50.336000pt;}
.fs8_c00075{font-size:50.688176pt;}
.fs5_c00075{font-size:58.960000pt;}
.fs3_c00075{font-size:65.120000pt;}
.fs2_c00075{font-size:69.696000pt;}
.fs6_c00075{font-size:70.048000pt;}
.fsb_c00075{font-size:70.400000pt;}
.fsa_c00075{font-size:70.752176pt;}
.fs1_c00075{font-size:78.320000pt;}
.y0_c00075{bottom:0.000000pt;}
.y25_c00075{bottom:13.227320pt;}
.y24_c00075{bottom:20.196920pt;}
.y23_c00075{bottom:52.822920pt;}
.y1_c00075{bottom:68.000000pt;}
.y22_c00075{bottom:76.904120pt;}
.y21_c00075{bottom:128.859320pt;}
.y1f_c00075{bottom:132.660920pt;}
.y20_c00075{bottom:132.977720pt;}
.y27_c00075{bottom:142.481720pt;}
.y1e_c00075{bottom:161.485320pt;}
.y1d_c00075{bottom:225.478920pt;}
.y1c_c00075{bottom:248.926520pt;}
.y1b_c00075{bottom:277.750920pt;}
.y1a_c00075{bottom:302.778120pt;}
.y19_c00075{bottom:306.584120pt;}
.y18_c00075{bottom:335.412920pt;}
.y17_c00075{bottom:363.924920pt;}
.y16_c00075{bottom:392.432520pt;}
.y15_c00075{bottom:421.265720pt;}
.y14_c00075{bottom:449.460920pt;}
.y13_c00075{bottom:477.972920pt;}
.y12_c00075{bottom:507.118520pt;}
.y11_c00075{bottom:536.264120pt;}
.y26_c00075{bottom:547.347720pt;}
.y10_c00075{bottom:565.722120pt;}
.yf_c00075{bottom:594.550920pt;}
.ye_c00075{bottom:624.334520pt;}
.yd_c00075{bottom:652.525320pt;}
.yc_c00075{bottom:680.720520pt;}
.yb_c00075{bottom:709.549320pt;}
.ya_c00075{bottom:738.694920pt;}
.y9_c00075{bottom:767.840520pt;}
.y8_c00075{bottom:796.669320pt;}
.y7_c00075{bottom:809.028920pt;}
.y6_c00075{bottom:817.894920pt;}
.y5_c00075{bottom:825.814920pt;}
.y2_c00075{bottom:834.372920pt;}
.y4_c00075{bottom:895.827720pt;}
.y3_c00075{bottom:958.870920pt;}
.ha_c00075{height:7.600485pt;}
.h2_c00075{height:20.559000pt;}
.h6_c00075{height:25.698750pt;}
.he_c00075{height:31.572934pt;}
.h9_c00075{height:33.758325pt;}
.h8_c00075{height:35.978250pt;}
.hd_c00075{height:51.397500pt;}
.hf_c00075{height:52.498875pt;}
.h5_c00075{height:67.918125pt;}
.h4_c00075{height:68.402813pt;}
.h7_c00075{height:68.748281pt;}
.hc_c00075{height:69.093750pt;}
.hb_c00075{height:71.304927pt;}
.h3_c00075{height:76.866797pt;}
.h1_c00075{height:986.666667pt;}
.h0_c00075{height:1122.666667pt;}
.w1_c00075{width:652.000000pt;}
.w0_c00075{width:793.333333pt;}
.x0_c00075{left:0.000000pt;}
.x2_c00075{left:21.480387pt;}
.xf_c00075{left:49.068387pt;}
.x5b_c00075{left:50.036387pt;}
.x2a_c00075{left:68.872787pt;}
.x1_c00075{left:70.666667pt;}
.x25_c00075{left:78.381187pt;}
.x44_c00075{left:79.287587pt;}
.x16_c00075{left:87.827987pt;}
.x34_c00075{left:88.826787pt;}
.x5_c00075{left:97.547587pt;}
.x59_c00075{left:99.034787pt;}
.x3b_c00075{left:107.821587pt;}
.x17_c00075{left:116.559987pt;}
.x50_c00075{left:117.651187pt;}
.x35_c00075{left:118.592787pt;}
.x10_c00075{left:127.476387pt;}
.x37_c00075{left:136.355587pt;}
.x26_c00075{left:146.444787pt;}
.x4a_c00075{left:147.342387pt;}
.x18_c00075{left:156.648387pt;}
.x2b_c00075{left:157.567987pt;}
.x5c_c00075{left:160.067187pt;}
.x53_c00075{left:165.998387pt;}
.x6_c00075{left:167.067587pt;}
.x2c_c00075{left:176.809187pt;}
.x54_c00075{left:185.969987pt;}
.x41_c00075{left:187.047987pt;}
.x7_c00075{left:196.076787pt;}
.x4d_c00075{left:197.805987pt;}
.x2d_c00075{left:206.663187pt;}
.x4_c00075{left:210.293187pt;}
.x3c_c00075{left:216.171587pt;}
.x47_c00075{left:226.665587pt;}
.x38_c00075{left:236.002387pt;}
.x2e_c00075{left:238.321187pt;}
.x45_c00075{left:245.963987pt;}
.x1d_c00075{left:255.151187pt;}
.x51_c00075{left:256.083987pt;}
.x21_c00075{left:264.989587pt;}
.x8_c00075{left:266.195187pt;}
.x19_c00075{left:275.131587pt;}
.x5d_c00075{left:276.042387pt;}
.x40_c00075{left:284.389187pt;}
.x11_c00075{left:294.979987pt;}
.x3d_c00075{left:297.065587pt;}
.x2f_c00075{left:304.589587pt;}
.x5e_c00075{left:305.509187pt;}
.x9_c00075{left:315.039587pt;}
.x42_c00075{left:315.963587pt;}
.x55_c00075{left:324.842787pt;}
.x58_c00075{left:328.776387pt;}
.x46_c00075{left:334.984787pt;}
.x1a_c00075{left:344.488787pt;}
.x12_c00075{left:354.335987pt;}
.x22_c00075{left:373.937987pt;}
.x27_c00075{left:383.455187pt;}
.x39_c00075{left:393.108787pt;}
.x5f_c00075{left:394.252787pt;}
.x23_c00075{left:403.739187pt;}
.x56_c00075{left:404.676387pt;}
.xa_c00075{left:412.508387pt;}
.x36_c00075{left:413.410387pt;}
.x28_c00075{left:423.059587pt;}
.x3e_c00075{left:423.952787pt;}
.x30_c00075{left:432.906787pt;}
.x57_c00075{left:434.081587pt;}
.x4b_c00075{left:443.651587pt;}
.x48_c00075{left:444.874787pt;}
.xb_c00075{left:452.108387pt;}
.x3f_c00075{left:453.168787pt;}
.x13_c00075{left:462.039187pt;}
.x1e_c00075{left:471.859987pt;}
.x1b_c00075{left:481.346387pt;}
.x4c_c00075{left:482.591587pt;}
.x1f_c00075{left:490.603987pt;}
.x14_c00075{left:491.712787pt;}
.x4e_c00075{left:492.755587pt;}
.x31_c00075{left:500.750387pt;}
.x49_c00075{left:511.451187pt;}
.x3a_c00075{left:520.163187pt;}
.x15_c00075{left:521.535987pt;}
.xc_c00075{left:530.815587pt;}
.x5a_c00075{left:531.713187pt;}
.x24_c00075{left:540.807987pt;}
.x32_c00075{left:550.738787pt;}
.x1c_c00075{left:551.957587pt;}
.x3_c00075{left:560.506787pt;}
.x4f_c00075{left:569.891987pt;}
.x43_c00075{left:571.629987pt;}
.x33_c00075{left:579.989987pt;}
.x52_c00075{left:581.411187pt;}
.x29_c00075{left:590.118787pt;}
.xe_c00075{left:596.767187pt;}
.x61_c00075{left:597.994787pt;}
.x60_c00075{left:598.896787pt;}
.x20_c00075{left:599.842787pt;}
.xd_c00075{left:604.233987pt;}
.x62_c00075{left:635.834787pt;}
.x63_c00075{left:646.821587pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1e5c7d533fadf81cd5a668e5.woff2')format("woff");}.ff1_c00076{font-family:ff1_c00076;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00076;src:url('chunks/assets/font_2ddfb5bbbb40fa35e81001f1.woff2')format("woff");}.ff2_c00076{font-family:ff2_c00076;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00076;src:url('chunks/assets/font_d3ed0db326181ee2c96cec44.woff2')format("woff");}.ff3_c00076{font-family:ff3_c00076;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00076;src:url('chunks/assets/font_c4314ecea0447e30dd93cf04.woff2')format("woff");}.ff4_c00076{font-family:ff4_c00076;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m59_c00076{transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);}
.m28_c00076{transform:matrix(0.147804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147804,0.000000,0.000000,0.250000,0,0);}
.m27_c00076{transform:matrix(0.202702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202702,0.000000,0.000000,0.250000,0,0);}
.m3c_c00076{transform:matrix(0.224773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224773,0.000000,0.000000,0.250000,0,0);}
.m38_c00076{transform:matrix(0.227167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227167,0.000000,0.000000,0.250000,0,0);}
.m45_c00076{transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);}
.m75_c00076{transform:matrix(0.234468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234468,0.000000,0.000000,0.250000,0,0);}
.m90_c00076{transform:matrix(0.239946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239946,0.000000,0.000000,0.250000,0,0);}
.m8b_c00076{transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);}
.m1_c00076{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00076{transform:matrix(0.250462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250462,0.000000,0.000000,0.250000,0,0);}
.m2e_c00076{transform:matrix(0.250712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250712,0.000000,0.000000,0.250000,0,0);}
.m97_c00076{transform:matrix(0.253545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253545,0.000000,0.000000,0.250000,0,0);}
.m5b_c00076{transform:matrix(0.254845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254845,0.000000,0.000000,0.250000,0,0);}
.m2c_c00076{transform:matrix(0.258233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258233,0.000000,0.000000,0.250000,0,0);}
.m7d_c00076{transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);}
.m0_c00076{transform:matrix(0.258953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258953,0.000000,0.000000,0.250000,0,0);}
.m70_c00076{transform:matrix(0.259975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259975,0.000000,0.000000,0.250000,0,0);}
.m11_c00076{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m72_c00076{transform:matrix(0.261121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261121,0.000000,0.000000,0.250000,0,0);}
.m3a_c00076{transform:matrix(0.263091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263091,0.000000,0.000000,0.250000,0,0);}
.m8_c00076{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m25_c00076{transform:matrix(0.263522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263522,0.000000,0.000000,0.250000,0,0);}
.m76_c00076{transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);}
.m4_c00076{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m89_c00076{transform:matrix(0.264030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264030,0.000000,0.000000,0.250000,0,0);}
.m65_c00076{transform:matrix(0.264094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264094,0.000000,0.000000,0.250000,0,0);}
.m2f_c00076{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m43_c00076{transform:matrix(0.266600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266600,0.000000,0.000000,0.250000,0,0);}
.m9c_c00076{transform:matrix(0.267711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267711,0.000000,0.000000,0.250000,0,0);}
.m98_c00076{transform:matrix(0.267794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267794,0.000000,0.000000,0.250000,0,0);}
.m19_c00076{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m6_c00076{transform:matrix(0.269234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269234,0.000000,0.000000,0.250000,0,0);}
.m86_c00076{transform:matrix(0.269301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269301,0.000000,0.000000,0.250000,0,0);}
.m4f_c00076{transform:matrix(0.269986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269986,0.000000,0.000000,0.250000,0,0);}
.m4c_c00076{transform:matrix(0.270266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270266,0.000000,0.000000,0.250000,0,0);}
.m5f_c00076{transform:matrix(0.270638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270638,0.000000,0.000000,0.250000,0,0);}
.m18_c00076{transform:matrix(0.270687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270687,0.000000,0.000000,0.250000,0,0);}
.m2_c00076{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m84_c00076{transform:matrix(0.271420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271420,0.000000,0.000000,0.250000,0,0);}
.m50_c00076{transform:matrix(0.271583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271583,0.000000,0.000000,0.250000,0,0);}
.ma3_c00076{transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);}
.m8f_c00076{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m99_c00076{transform:matrix(0.272560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272560,0.000000,0.000000,0.250000,0,0);}
.m9b_c00076{transform:matrix(0.272581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272581,0.000000,0.000000,0.250000,0,0);}
.m6c_c00076{transform:matrix(0.272611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272611,0.000000,0.000000,0.250000,0,0);}
.m7f_c00076{transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);}
.m21_c00076{transform:matrix(0.274243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274243,0.000000,0.000000,0.250000,0,0);}
.m6d_c00076{transform:matrix(0.274422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274422,0.000000,0.000000,0.250000,0,0);}
.me_c00076{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.ma4_c00076{transform:matrix(0.276488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276488,0.000000,0.000000,0.250000,0,0);}
.m7_c00076{transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);}
.m22_c00076{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m39_c00076{transform:matrix(0.277658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277658,0.000000,0.000000,0.250000,0,0);}
.m96_c00076{transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);}
.m67_c00076{transform:matrix(0.279390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279390,0.000000,0.000000,0.250000,0,0);}
.m34_c00076{transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);}
.m9d_c00076{transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);}
.m49_c00076{transform:matrix(0.280356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280356,0.000000,0.000000,0.250000,0,0);}
.m51_c00076{transform:matrix(0.280559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280559,0.000000,0.000000,0.250000,0,0);}
.m3e_c00076{transform:matrix(0.280971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280971,0.000000,0.000000,0.250000,0,0);}
.ma1_c00076{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.m37_c00076{transform:matrix(0.282515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282515,0.000000,0.000000,0.250000,0,0);}
.m10_c00076{transform:matrix(0.283506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283506,0.000000,0.000000,0.250000,0,0);}
.m2d_c00076{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m81_c00076{transform:matrix(0.283772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283772,0.000000,0.000000,0.250000,0,0);}
.m5e_c00076{transform:matrix(0.284388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284388,0.000000,0.000000,0.250000,0,0);}
.m60_c00076{transform:matrix(0.285386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285386,0.000000,0.000000,0.250000,0,0);}
.m1b_c00076{transform:matrix(0.286238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286238,0.000000,0.000000,0.250000,0,0);}
.m40_c00076{transform:matrix(0.288201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288201,0.000000,0.000000,0.250000,0,0);}
.m62_c00076{transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);}
.m23_c00076{transform:matrix(0.288643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288643,0.000000,0.000000,0.250000,0,0);}
.m61_c00076{transform:matrix(0.288824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288824,0.000000,0.000000,0.250000,0,0);}
.m56_c00076{transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);}
.m55_c00076{transform:matrix(0.289167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289167,0.000000,0.000000,0.250000,0,0);}
.m54_c00076{transform:matrix(0.289191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289191,0.000000,0.000000,0.250000,0,0);}
.m91_c00076{transform:matrix(0.289515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289515,0.000000,0.000000,0.250000,0,0);}
.m58_c00076{transform:matrix(0.290371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290371,0.000000,0.000000,0.250000,0,0);}
.m26_c00076{transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);}
.m8e_c00076{transform:matrix(0.291008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291008,0.000000,0.000000,0.250000,0,0);}
.m31_c00076{transform:matrix(0.291197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291197,0.000000,0.000000,0.250000,0,0);}
.m35_c00076{transform:matrix(0.291407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291407,0.000000,0.000000,0.250000,0,0);}
.m8c_c00076{transform:matrix(0.291893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291893,0.000000,0.000000,0.250000,0,0);}
.m33_c00076{transform:matrix(0.293287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293287,0.000000,0.000000,0.250000,0,0);}
.mc_c00076{transform:matrix(0.293496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293496,0.000000,0.000000,0.250000,0,0);}
.m2a_c00076{transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);}
.m4d_c00076{transform:matrix(0.294463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294463,0.000000,0.000000,0.250000,0,0);}
.m6b_c00076{transform:matrix(0.294920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294920,0.000000,0.000000,0.250000,0,0);}
.m6f_c00076{transform:matrix(0.294926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294926,0.000000,0.000000,0.250000,0,0);}
.m16_c00076{transform:matrix(0.295112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295112,0.000000,0.000000,0.250000,0,0);}
.m29_c00076{transform:matrix(0.295731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295731,0.000000,0.000000,0.250000,0,0);}
.m5_c00076{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m7a_c00076{transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);}
.m79_c00076{transform:matrix(0.298434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298434,0.000000,0.000000,0.250000,0,0);}
.m87_c00076{transform:matrix(0.298448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298448,0.000000,0.000000,0.250000,0,0);}
.m9_c00076{transform:matrix(0.299336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299336,0.000000,0.000000,0.250000,0,0);}
.m63_c00076{transform:matrix(0.299343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299343,0.000000,0.000000,0.250000,0,0);}
.m3d_c00076{transform:matrix(0.300548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300548,0.000000,0.000000,0.250000,0,0);}
.m9f_c00076{transform:matrix(0.300550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300550,0.000000,0.000000,0.250000,0,0);}
.m92_c00076{transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);}
.m14_c00076{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m1d_c00076{transform:matrix(0.302633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302633,0.000000,0.000000,0.250000,0,0);}
.m46_c00076{transform:matrix(0.302868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302868,0.000000,0.000000,0.250000,0,0);}
.m47_c00076{transform:matrix(0.302966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302966,0.000000,0.000000,0.250000,0,0);}
.m93_c00076{transform:matrix(0.303322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303322,0.000000,0.000000,0.250000,0,0);}
.m73_c00076{transform:matrix(0.304600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304600,0.000000,0.000000,0.250000,0,0);}
.m57_c00076{transform:matrix(0.305129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305129,0.000000,0.000000,0.250000,0,0);}
.ma0_c00076{transform:matrix(0.305409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305409,0.000000,0.000000,0.250000,0,0);}
.m7e_c00076{transform:matrix(0.305417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305417,0.000000,0.000000,0.250000,0,0);}
.m9e_c00076{transform:matrix(0.305914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305914,0.000000,0.000000,0.250000,0,0);}
.m53_c00076{transform:matrix(0.306438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306438,0.000000,0.000000,0.250000,0,0);}
.ma5_c00076{transform:matrix(0.307579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307579,0.000000,0.000000,0.250000,0,0);}
.m68_c00076{transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);}
.m4e_c00076{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m24_c00076{transform:matrix(0.308672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308672,0.000000,0.000000,0.250000,0,0);}
.m1f_c00076{transform:matrix(0.309376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309376,0.000000,0.000000,0.250000,0,0);}
.m5c_c00076{transform:matrix(0.310202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310202,0.000000,0.000000,0.250000,0,0);}
.m4b_c00076{transform:matrix(0.311094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311094,0.000000,0.000000,0.250000,0,0);}
.mb_c00076{transform:matrix(0.311666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311666,0.000000,0.000000,0.250000,0,0);}
.m2b_c00076{transform:matrix(0.311728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311728,0.000000,0.000000,0.250000,0,0);}
.m32_c00076{transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);}
.m74_c00076{transform:matrix(0.312145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312145,0.000000,0.000000,0.250000,0,0);}
.m3b_c00076{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.m30_c00076{transform:matrix(0.315128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315128,0.000000,0.000000,0.250000,0,0);}
.m8d_c00076{transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);}
.m66_c00076{transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);}
.m48_c00076{transform:matrix(0.318888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318888,0.000000,0.000000,0.250000,0,0);}
.m71_c00076{transform:matrix(0.319391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319391,0.000000,0.000000,0.250000,0,0);}
.m80_c00076{transform:matrix(0.319456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319456,0.000000,0.000000,0.250000,0,0);}
.m78_c00076{transform:matrix(0.319566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319566,0.000000,0.000000,0.250000,0,0);}
.m1c_c00076{transform:matrix(0.320098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320098,0.000000,0.000000,0.250000,0,0);}
.m42_c00076{transform:matrix(0.320819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320819,0.000000,0.000000,0.250000,0,0);}
.m83_c00076{transform:matrix(0.321674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321674,0.000000,0.000000,0.250000,0,0);}
.m88_c00076{transform:matrix(0.322294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322294,0.000000,0.000000,0.250000,0,0);}
.m41_c00076{transform:matrix(0.323233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323233,0.000000,0.000000,0.250000,0,0);}
.ma2_c00076{transform:matrix(0.323688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323688,0.000000,0.000000,0.250000,0,0);}
.m44_c00076{transform:matrix(0.323761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323761,0.000000,0.000000,0.250000,0,0);}
.md_c00076{transform:matrix(0.324031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324031,0.000000,0.000000,0.250000,0,0);}
.m9a_c00076{transform:matrix(0.324242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324242,0.000000,0.000000,0.250000,0,0);}
.m8a_c00076{transform:matrix(0.325086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325086,0.000000,0.000000,0.250000,0,0);}
.m3f_c00076{transform:matrix(0.326078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326078,0.000000,0.000000,0.250000,0,0);}
.m52_c00076{transform:matrix(0.327311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327311,0.000000,0.000000,0.250000,0,0);}
.m6a_c00076{transform:matrix(0.327407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327407,0.000000,0.000000,0.250000,0,0);}
.m82_c00076{transform:matrix(0.329576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329576,0.000000,0.000000,0.250000,0,0);}
.mf_c00076{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m1e_c00076{transform:matrix(0.333600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333600,0.000000,0.000000,0.250000,0,0);}
.m7b_c00076{transform:matrix(0.335418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335418,0.000000,0.000000,0.250000,0,0);}
.m13_c00076{transform:matrix(0.337295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337295,0.000000,0.000000,0.250000,0,0);}
.m64_c00076{transform:matrix(0.338217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338217,0.000000,0.000000,0.250000,0,0);}
.m15_c00076{transform:matrix(0.338564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338564,0.000000,0.000000,0.250000,0,0);}
.m95_c00076{transform:matrix(0.338655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338655,0.000000,0.000000,0.250000,0,0);}
.m5d_c00076{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m6e_c00076{transform:matrix(0.343013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343013,0.000000,0.000000,0.250000,0,0);}
.m12_c00076{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.m85_c00076{transform:matrix(0.343691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343691,0.000000,0.000000,0.250000,0,0);}
.ma_c00076{transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);}
.m7c_c00076{transform:matrix(0.346239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346239,0.000000,0.000000,0.250000,0,0);}
.m20_c00076{transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);}
.m69_c00076{transform:matrix(0.348088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348088,0.000000,0.000000,0.250000,0,0);}
.m1a_c00076{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m77_c00076{transform:matrix(0.350041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350041,0.000000,0.000000,0.250000,0,0);}
.m4a_c00076{transform:matrix(0.351187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351187,0.000000,0.000000,0.250000,0,0);}
.m17_c00076{transform:matrix(0.353116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353116,0.000000,0.000000,0.250000,0,0);}
.m3_c00076{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m94_c00076{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m36_c00076{transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);}
.v0_c00076{vertical-align:0.000000px;}
.ls16_c00076{letter-spacing:-3.659040px;}
.lsc_c00076{letter-spacing:-2.744280px;}
.ls15_c00076{letter-spacing:-1.066349px;}
.lsd_c00076{letter-spacing:-0.799762px;}
.ls4_c00076{letter-spacing:0.000000px;}
.ls7_c00076{letter-spacing:0.533174px;}
.ls0_c00076{letter-spacing:0.799762px;}
.ls13_c00076{letter-spacing:1.427026px;}
.ls17_c00076{letter-spacing:1.826906px;}
.ls9_c00076{letter-spacing:2.069971px;}
.ls1_c00076{letter-spacing:2.563942px;}
.ls12_c00076{letter-spacing:2.571782px;}
.lse_c00076{letter-spacing:3.112798px;}
.ls8_c00076{letter-spacing:3.128479px;}
.lsa_c00076{letter-spacing:3.191206px;}
.lsf_c00076{letter-spacing:3.465634px;}
.ls6_c00076{letter-spacing:3.598927px;}
.ls14_c00076{letter-spacing:3.794947px;}
.ls10_c00076{letter-spacing:3.811500px;}
.ls5_c00076{letter-spacing:3.920400px;}
.ls3_c00076{letter-spacing:4.395610px;}
.ls2_c00076{letter-spacing:4.547664px;}
.ls11_c00076{letter-spacing:31.363200px;}
.lsb_c00076{letter-spacing:52.747398px;}
.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:-22.173782px;}
.ws0_c00076{word-spacing:-19.602000px;}
.ws2_c00076{word-spacing:0.000000px;}
._5_c00076{margin-left:-14.157396px;}
._6_c00076{width:2.069971px;}
._a_c00076{width:6.743088px;}
._8_c00076{width:9.565776px;}
._3_c00076{width:12.388464px;}
._4_c00076{width:14.740704px;}
._0_c00076{width:24.620112px;}
._7_c00076{width:32.539320px;}
._2_c00076{width:33.897600px;}
._1_c00076{width:36.836712px;}
._9_c00076{width:40.380516px;}
.fc0_c00076{color:transparent;}
.fs9_c00076{font-size:22.572000px;}
.fsa_c00076{font-size:27.720000px;}
.fs8_c00076{font-size:31.363200px;}
.fs4_c00076{font-size:39.600000px;}
.fs6_c00076{font-size:44.352000px;}
.fs2_c00076{font-size:52.747398px;}
.fs3_c00076{font-size:74.844000px;}
.fs7_c00076{font-size:76.230000px;}
.fs1_c00076{font-size:78.408000px;}
.fs5_c00076{font-size:79.398000px;}
.fs0_c00076{font-size:87.912198px;}
.fsb_c00076{font-size:104.544000px;}
.y0_c00076{bottom:0.000000px;}
.y1_c00076{bottom:76.500000px;}
.y1e_c00076{bottom:151.381935px;}
.y1d_c00076{bottom:183.096585px;}
.y1c_c00076{bottom:216.959535px;}
.y1b_c00076{bottom:249.748335px;}
.y1a_c00076{bottom:282.180735px;}
.y19_c00076{bottom:342.050985px;}
.y18_c00076{bottom:346.332735px;}
.y17_c00076{bottom:380.190735px;}
.y16_c00076{bottom:412.618185px;}
.y15_c00076{bottom:445.768335px;}
.y14_c00076{bottom:461.449935px;}
.y13_c00076{bottom:477.839385px;}
.y12_c00076{bottom:510.628185px;}
.y11_c00076{bottom:532.017135px;}
.y10_c00076{bottom:543.060585px;}
.yf_c00076{bottom:566.587935px;}
.ye_c00076{bottom:575.849385px;}
.yd_c00076{bottom:608.638185px;}
.yc_c00076{bottom:668.513385px;}
.yb_c00076{bottom:672.790185px;}
.ya_c00076{bottom:705.222585px;}
.y9_c00076{bottom:736.585785px;}
.y8_c00076{bottom:769.374585px;}
.y7_c00076{bottom:801.099135px;}
.y6_c00076{bottom:833.887935px;}
.y5_c00076{bottom:866.676735px;}
.y4_c00076{bottom:899.816985px;}
.y3_c00076{bottom:931.897935px;}
.y2_c00076{bottom:1080.868185px;}
.h9_c00076{height:20.887891px;}
.ha_c00076{height:23.541891px;}
.hb_c00076{height:28.911094px;}
.h4_c00076{height:35.129767px;}
.h5_c00076{height:41.301563px;}
.h7_c00076{height:46.257750px;}
.h8_c00076{height:74.778354px;}
.h3_c00076{height:76.953164px;}
.h6_c00076{height:77.924795px;}
.h2_c00076{height:86.281015px;}
.hc_c00076{height:102.604219px;}
.h1_c00076{height:1110.000000px;}
.h0_c00076{height:1263.000000px;}
.w1_c00076{width:733.500000px;}
.w0_c00076{width:892.500000px;}
.x0_c00076{left:0.000000px;}
.x2c_c00076{left:58.716435px;}
.x3_c00076{left:60.008385px;}
.x56_c00076{left:61.117185px;}
.x40_c00076{left:70.730085px;}
.x57_c00076{left:72.130935px;}
.x1_c00076{left:79.500000px;}
.x4_c00076{left:82.822935px;}
.x28_c00076{left:91.935885px;}
.x5c_c00076{left:93.524835px;}
.x22_c00076{left:102.895185px;}
.x5e_c00076{left:105.305835px;}
.x5_c00076{left:115.240485px;}
.x47_c00076{left:125.056335px;}
.x41_c00076{left:127.293735px;}
.x1b_c00076{left:136.584885px;}
.x4b_c00076{left:137.703585px;}
.x6_c00076{left:147.717435px;}
.x34_c00076{left:157.275885px;}
.x4d_c00076{left:158.711385px;}
.x1c_c00076{left:169.433085px;}
.x29_c00076{left:170.502285px;}
.x17_c00076{left:180.273585px;}
.x7_c00076{left:192.490185px;}
.x23_c00076{left:202.454535px;}
.x58_c00076{left:203.543535px;}
.x3c_c00076{left:213.106935px;}
.x24_c00076{left:214.572135px;}
.x8_c00076{left:224.868135px;}
.x10_c00076{left:226.397685px;}
.x33_c00076{left:237.144135px;}
.x4a_c00076{left:247.469835px;}
.x5f_c00076{left:249.256785px;}
.x11_c00076{left:258.429135px;}
.x9_c00076{left:269.596335px;}
.x51_c00076{left:270.620985px;}
.x2d_c00076{left:280.318035px;}
.x1d_c00076{left:291.698085px;}
.xa_c00076{left:302.751435px;}
.x44_c00076{left:310.656585px;}
.x39_c00076{left:314.324535px;}
.x25_c00076{left:324.823485px;}
.x5d_c00076{left:326.194635px;}
.x30_c00076{left:335.861985px;}
.xb_c00076{left:337.267785px;}
.x52_c00076{left:346.618335px;}
.x12_c00076{left:347.657835px;}
.x18_c00076{left:357.988485px;}
.x3a_c00076{left:370.071435px;}
.x4c_c00076{left:375.907485px;}
.x26_c00076{left:380.317935px;}
.x3d_c00076{left:381.842535px;}
.x1e_c00076{left:390.623835px;}
.x13_c00076{left:392.534535px;}
.x3b_c00076{left:402.875085px;}
.x53_c00076{left:403.973985px;}
.x48_c00076{left:412.968135px;}
.x31_c00076{left:414.136335px;}
.x1f_c00076{left:424.150185px;}
.xc_c00076{left:425.258985px;}
.x35_c00076{left:435.663885px;}
.x3e_c00076{left:446.543985px;}
.xd_c00076{left:457.424085px;}
.x4e_c00076{left:458.859585px;}
.x2e_c00076{left:469.848585px;}
.x19_c00076{left:480.520785px;}
.x20_c00076{left:491.064285px;}
.x59_c00076{left:492.697785px;}
.x2a_c00076{left:502.310685px;}
.x45_c00076{left:503.676885px;}
.x36_c00076{left:513.705585px;}
.x54_c00076{left:514.740135px;}
.x2f_c00076{left:524.798535px;}
.x60_c00076{left:526.199385px;}
.x32_c00076{left:534.569835px;}
.x4f_c00076{left:535.896435px;}
.x42_c00076{left:547.523985px;}
.x14_c00076{left:556.310235px;}
.x2b_c00076{left:557.894235px;}
.x1a_c00076{left:567.002235px;}
.x27_c00076{left:568.269435px;}
.xe_c00076{left:579.986085px;}
.x21_c00076{left:591.074085px;}
.x43_c00076{left:600.850335px;}
.x46_c00076{left:602.127435px;}
.x37_c00076{left:612.814485px;}
.x15_c00076{left:623.867835px;}
.x61_c00076{left:625.288485px;}
.x2_c00076{left:634.490535px;}
.x5a_c00076{left:636.668535px;}
.x50_c00076{left:645.360735px;}
.x38_c00076{left:646.632885px;}
.x55_c00076{left:656.023035px;}
.xf_c00076{left:657.235785px;}
.x16_c00076{left:668.274285px;}
.x3f_c00076{left:683.589585px;}
.x49_c00076{left:690.479985px;}
.x5b_c00076{left:691.568985px;}
@media print{
.v0_c00076{vertical-align:0.000000pt;}
.ls16_c00076{letter-spacing:-3.252480pt;}
.lsc_c00076{letter-spacing:-2.439360pt;}
.ls15_c00076{letter-spacing:-0.947866pt;}
.lsd_c00076{letter-spacing:-0.710899pt;}
.ls4_c00076{letter-spacing:0.000000pt;}
.ls7_c00076{letter-spacing:0.473933pt;}
.ls0_c00076{letter-spacing:0.710899pt;}
.ls13_c00076{letter-spacing:1.268467pt;}
.ls17_c00076{letter-spacing:1.623917pt;}
.ls9_c00076{letter-spacing:1.839974pt;}
.ls1_c00076{letter-spacing:2.279059pt;}
.ls12_c00076{letter-spacing:2.286029pt;}
.lse_c00076{letter-spacing:2.766931pt;}
.ls8_c00076{letter-spacing:2.780870pt;}
.lsa_c00076{letter-spacing:2.836627pt;}
.lsf_c00076{letter-spacing:3.080563pt;}
.ls6_c00076{letter-spacing:3.199046pt;}
.ls14_c00076{letter-spacing:3.373286pt;}
.ls10_c00076{letter-spacing:3.388000pt;}
.ls5_c00076{letter-spacing:3.484800pt;}
.ls3_c00076{letter-spacing:3.907209pt;}
.ls2_c00076{letter-spacing:4.042368pt;}
.ls11_c00076{letter-spacing:27.878400pt;}
.lsb_c00076{letter-spacing:46.886576pt;}
.ws1_c00076{word-spacing:-19.710029pt;}
.ws0_c00076{word-spacing:-17.424000pt;}
.ws2_c00076{word-spacing:0.000000pt;}
._5_c00076{margin-left:-12.584352pt;}
._6_c00076{width:1.839974pt;}
._a_c00076{width:5.993856pt;}
._8_c00076{width:8.502912pt;}
._3_c00076{width:11.011968pt;}
._4_c00076{width:13.102848pt;}
._0_c00076{width:21.884544pt;}
._7_c00076{width:28.923840pt;}
._2_c00076{width:30.131200pt;}
._1_c00076{width:32.743744pt;}
._9_c00076{width:35.893792pt;}
.fs9_c00076{font-size:20.064000pt;}
.fsa_c00076{font-size:24.640000pt;}
.fs8_c00076{font-size:27.878400pt;}
.fs4_c00076{font-size:35.200000pt;}
.fs6_c00076{font-size:39.424000pt;}
.fs2_c00076{font-size:46.886576pt;}
.fs3_c00076{font-size:66.528000pt;}
.fs7_c00076{font-size:67.760000pt;}
.fs1_c00076{font-size:69.696000pt;}
.fs5_c00076{font-size:70.576000pt;}
.fs0_c00076{font-size:78.144176pt;}
.fsb_c00076{font-size:92.928000pt;}
.y0_c00076{bottom:0.000000pt;}
.y1_c00076{bottom:68.000000pt;}
.y1e_c00076{bottom:134.561720pt;}
.y1d_c00076{bottom:162.752520pt;}
.y1c_c00076{bottom:192.852920pt;}
.y1b_c00076{bottom:221.998520pt;}
.y1a_c00076{bottom:250.827320pt;}
.y19_c00076{bottom:304.045320pt;}
.y18_c00076{bottom:307.851320pt;}
.y17_c00076{bottom:337.947320pt;}
.y16_c00076{bottom:366.771720pt;}
.y15_c00076{bottom:396.238520pt;}
.y14_c00076{bottom:410.177720pt;}
.y13_c00076{bottom:424.746120pt;}
.y12_c00076{bottom:453.891720pt;}
.y11_c00076{bottom:472.904120pt;}
.y10_c00076{bottom:482.720520pt;}
.yf_c00076{bottom:503.633720pt;}
.ye_c00076{bottom:511.866120pt;}
.yd_c00076{bottom:541.011720pt;}
.yc_c00076{bottom:594.234120pt;}
.yb_c00076{bottom:598.035720pt;}
.ya_c00076{bottom:626.864520pt;}
.y9_c00076{bottom:654.742920pt;}
.y8_c00076{bottom:683.888520pt;}
.y7_c00076{bottom:712.088120pt;}
.y6_c00076{bottom:741.233720pt;}
.y5_c00076{bottom:770.379320pt;}
.y4_c00076{bottom:799.837320pt;}
.y3_c00076{bottom:828.353720pt;}
.y2_c00076{bottom:960.771720pt;}
.h9_c00076{height:18.567014pt;}
.ha_c00076{height:20.926125pt;}
.hb_c00076{height:25.698750pt;}
.h4_c00076{height:31.226460pt;}
.h5_c00076{height:36.712500pt;}
.h7_c00076{height:41.118000pt;}
.h8_c00076{height:66.469648pt;}
.h3_c00076{height:68.402813pt;}
.h6_c00076{height:69.266484pt;}
.h2_c00076{height:76.694235pt;}
.hc_c00076{height:91.203750pt;}
.h1_c00076{height:986.666667pt;}
.h0_c00076{height:1122.666667pt;}
.w1_c00076{width:652.000000pt;}
.w0_c00076{width:793.333333pt;}
.x0_c00076{left:0.000000pt;}
.x2c_c00076{left:52.192387pt;}
.x3_c00076{left:53.340787pt;}
.x56_c00076{left:54.326387pt;}
.x40_c00076{left:62.871187pt;}
.x57_c00076{left:64.116387pt;}
.x1_c00076{left:70.666667pt;}
.x4_c00076{left:73.620387pt;}
.x28_c00076{left:81.720787pt;}
.x5c_c00076{left:83.133187pt;}
.x22_c00076{left:91.462387pt;}
.x5e_c00076{left:93.605187pt;}
.x5_c00076{left:102.435987pt;}
.x47_c00076{left:111.161187pt;}
.x41_c00076{left:113.149987pt;}
.x1b_c00076{left:121.408787pt;}
.x4b_c00076{left:122.403187pt;}
.x6_c00076{left:131.304387pt;}
.x34_c00076{left:139.800787pt;}
.x4d_c00076{left:141.076787pt;}
.x1c_c00076{left:150.607187pt;}
.x29_c00076{left:151.557587pt;}
.x17_c00076{left:160.243187pt;}
.x7_c00076{left:171.102387pt;}
.x23_c00076{left:179.959587pt;}
.x58_c00076{left:180.927587pt;}
.x3c_c00076{left:189.428387pt;}
.x24_c00076{left:190.730787pt;}
.x8_c00076{left:199.882787pt;}
.x10_c00076{left:201.242387pt;}
.x33_c00076{left:210.794787pt;}
.x4a_c00076{left:219.973187pt;}
.x5f_c00076{left:221.561587pt;}
.x11_c00076{left:229.714787pt;}
.x9_c00076{left:239.641187pt;}
.x51_c00076{left:240.551987pt;}
.x2d_c00076{left:249.171587pt;}
.x1d_c00076{left:259.287187pt;}
.xa_c00076{left:269.112387pt;}
.x44_c00076{left:276.139187pt;}
.x39_c00076{left:279.399587pt;}
.x25_c00076{left:288.731987pt;}
.x5d_c00076{left:289.950787pt;}
.x30_c00076{left:298.543987pt;}
.xb_c00076{left:299.793587pt;}
.x52_c00076{left:308.105187pt;}
.x12_c00076{left:309.029187pt;}
.x18_c00076{left:318.211987pt;}
.x3a_c00076{left:328.952387pt;}
.x4c_c00076{left:334.139987pt;}
.x26_c00076{left:338.060387pt;}
.x3d_c00076{left:339.415587pt;}
.x1e_c00076{left:347.221187pt;}
.x13_c00076{left:348.919587pt;}
.x3b_c00076{left:358.111187pt;}
.x53_c00076{left:359.087987pt;}
.x48_c00076{left:367.082787pt;}
.x31_c00076{left:368.121187pt;}
.x1f_c00076{left:377.022387pt;}
.xc_c00076{left:378.007987pt;}
.x35_c00076{left:387.256787pt;}
.x3e_c00076{left:396.927987pt;}
.xd_c00076{left:406.599187pt;}
.x4e_c00076{left:407.875187pt;}
.x2e_c00076{left:417.643187pt;}
.x19_c00076{left:427.129587pt;}
.x20_c00076{left:436.501587pt;}
.x59_c00076{left:437.953587pt;}
.x2a_c00076{left:446.498387pt;}
.x45_c00076{left:447.712787pt;}
.x36_c00076{left:456.627187pt;}
.x54_c00076{left:457.546787pt;}
.x2f_c00076{left:466.487587pt;}
.x60_c00076{left:467.732787pt;}
.x32_c00076{left:475.173187pt;}
.x4f_c00076{left:476.352387pt;}
.x42_c00076{left:486.687987pt;}
.x14_c00076{left:494.497987pt;}
.x2b_c00076{left:495.905987pt;}
.x1a_c00076{left:504.001987pt;}
.x27_c00076{left:505.128387pt;}
.xe_c00076{left:515.543187pt;}
.x21_c00076{left:525.399187pt;}
.x43_c00076{left:534.089187pt;}
.x46_c00076{left:535.224387pt;}
.x37_c00076{left:544.723987pt;}
.x15_c00076{left:554.549187pt;}
.x61_c00076{left:555.811987pt;}
.x2_c00076{left:563.991587pt;}
.x5a_c00076{left:565.927587pt;}
.x50_c00076{left:573.653987pt;}
.x38_c00076{left:574.784787pt;}
.x55_c00076{left:583.131587pt;}
.xf_c00076{left:584.209587pt;}
.x16_c00076{left:594.021587pt;}
.x3f_c00076{left:607.635187pt;}
.x49_c00076{left:613.759987pt;}
.x5b_c00076{left:614.727987pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_00600cba7032d8d5861a3b12.woff2')format("woff");}.ff1_c00077{font-family:ff1_c00077;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00077;src:url('chunks/assets/font_cf8eee3339cd5376c5cc1af9.woff2')format("woff");}.ff2_c00077{font-family:ff2_c00077;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00077;src:url('chunks/assets/font_c26470651238b70b6ee0902f.woff2')format("woff");}.ff3_c00077{font-family:ff3_c00077;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00077;src:url('chunks/assets/font_d5266e4d5283a076b2e9da2c.woff2')format("woff");}.ff4_c00077{font-family:ff4_c00077;line-height:0.666000;font-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_c00077{transform:matrix(0.196154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196154,0.000000,0.000000,0.250000,0,0);}
.m66_c00077{transform:matrix(0.220828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220828,0.000000,0.000000,0.250000,0,0);}
.m78_c00077{transform:matrix(0.222191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222191,0.000000,0.000000,0.250000,0,0);}
.m9d_c00077{transform:matrix(0.225746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225746,0.000000,0.000000,0.250000,0,0);}
.m1d_c00077{transform:matrix(0.228694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228694,0.000000,0.000000,0.250000,0,0);}
.m39_c00077{transform:matrix(0.231988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231988,0.000000,0.000000,0.250000,0,0);}
.m8a_c00077{transform:matrix(0.246914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246914,0.000000,0.000000,0.250000,0,0);}
.m69_c00077{transform:matrix(0.248109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248109,0.000000,0.000000,0.250000,0,0);}
.m4c_c00077{transform:matrix(0.248170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248170,0.000000,0.000000,0.250000,0,0);}
.m0_c00077{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00077{transform:matrix(0.250766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250766,0.000000,0.000000,0.250000,0,0);}
.m7_c00077{transform:matrix(0.252117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252117,0.000000,0.000000,0.250000,0,0);}
.m43_c00077{transform:matrix(0.252887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252887,0.000000,0.000000,0.250000,0,0);}
.mc_c00077{transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);}
.m94_c00077{transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);}
.m85_c00077{transform:matrix(0.255317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255317,0.000000,0.000000,0.250000,0,0);}
.m75_c00077{transform:matrix(0.255670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255670,0.000000,0.000000,0.250000,0,0);}
.m2e_c00077{transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);}
.m2f_c00077{transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);}
.m56_c00077{transform:matrix(0.256876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256876,0.000000,0.000000,0.250000,0,0);}
.m9_c00077{transform:matrix(0.257017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257017,0.000000,0.000000,0.250000,0,0);}
.m2_c00077{transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);}
.m88_c00077{transform:matrix(0.257618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257618,0.000000,0.000000,0.250000,0,0);}
.m99_c00077{transform:matrix(0.258066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258066,0.000000,0.000000,0.250000,0,0);}
.m5e_c00077{transform:matrix(0.258186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258186,0.000000,0.000000,0.250000,0,0);}
.m67_c00077{transform:matrix(0.258315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258315,0.000000,0.000000,0.250000,0,0);}
.m97_c00077{transform:matrix(0.258804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258804,0.000000,0.000000,0.250000,0,0);}
.m38_c00077{transform:matrix(0.259346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259346,0.000000,0.000000,0.250000,0,0);}
.m16_c00077{transform:matrix(0.259376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259376,0.000000,0.000000,0.250000,0,0);}
.md_c00077{transform:matrix(0.260082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260082,0.000000,0.000000,0.250000,0,0);}
.m6a_c00077{transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);}
.m5d_c00077{transform:matrix(0.260481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260481,0.000000,0.000000,0.250000,0,0);}
.m71_c00077{transform:matrix(0.260782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260782,0.000000,0.000000,0.250000,0,0);}
.m9f_c00077{transform:matrix(0.261022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261022,0.000000,0.000000,0.250000,0,0);}
.m20_c00077{transform:matrix(0.261330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261330,0.000000,0.000000,0.250000,0,0);}
.ma6_c00077{transform:matrix(0.261675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261675,0.000000,0.000000,0.250000,0,0);}
.m92_c00077{transform:matrix(0.261824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261824,0.000000,0.000000,0.250000,0,0);}
.m1a_c00077{transform:matrix(0.261958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261958,0.000000,0.000000,0.250000,0,0);}
.m1e_c00077{transform:matrix(0.262227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262227,0.000000,0.000000,0.250000,0,0);}
.m29_c00077{transform:matrix(0.262658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262658,0.000000,0.000000,0.250000,0,0);}
.m30_c00077{transform:matrix(0.263508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263508,0.000000,0.000000,0.250000,0,0);}
.m55_c00077{transform:matrix(0.265049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265049,0.000000,0.000000,0.250000,0,0);}
.m32_c00077{transform:matrix(0.265607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265607,0.000000,0.000000,0.250000,0,0);}
.m25_c00077{transform:matrix(0.266448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266448,0.000000,0.000000,0.250000,0,0);}
.m79_c00077{transform:matrix(0.266534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266534,0.000000,0.000000,0.250000,0,0);}
.m90_c00077{transform:matrix(0.267905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267905,0.000000,0.000000,0.250000,0,0);}
.m8e_c00077{transform:matrix(0.268180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268180,0.000000,0.000000,0.250000,0,0);}
.m49_c00077{transform:matrix(0.268509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268509,0.000000,0.000000,0.250000,0,0);}
.m3c_c00077{transform:matrix(0.269251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269251,0.000000,0.000000,0.250000,0,0);}
.m53_c00077{transform:matrix(0.269442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269442,0.000000,0.000000,0.250000,0,0);}
.ma4_c00077{transform:matrix(0.269669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269669,0.000000,0.000000,0.250000,0,0);}
.m3e_c00077{transform:matrix(0.270035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270035,0.000000,0.000000,0.250000,0,0);}
.m83_c00077{transform:matrix(0.271747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271747,0.000000,0.000000,0.250000,0,0);}
.m3a_c00077{transform:matrix(0.272168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272168,0.000000,0.000000,0.250000,0,0);}
.m5a_c00077{transform:matrix(0.272218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272218,0.000000,0.000000,0.250000,0,0);}
.m37_c00077{transform:matrix(0.272535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272535,0.000000,0.000000,0.250000,0,0);}
.m19_c00077{transform:matrix(0.273058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273058,0.000000,0.000000,0.250000,0,0);}
.m63_c00077{transform:matrix(0.273160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273160,0.000000,0.000000,0.250000,0,0);}
.m10_c00077{transform:matrix(0.273343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273343,0.000000,0.000000,0.250000,0,0);}
.m93_c00077{transform:matrix(0.273343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273343,0.000000,0.000000,0.250000,0,0);}
.m5c_c00077{transform:matrix(0.273481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273481,0.000000,0.000000,0.250000,0,0);}
.m46_c00077{transform:matrix(0.273713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273713,0.000000,0.000000,0.250000,0,0);}
.m52_c00077{transform:matrix(0.273727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273727,0.000000,0.000000,0.250000,0,0);}
.ma5_c00077{transform:matrix(0.274468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274468,0.000000,0.000000,0.250000,0,0);}
.m44_c00077{transform:matrix(0.274752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274752,0.000000,0.000000,0.250000,0,0);}
.m48_c00077{transform:matrix(0.274757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274757,0.000000,0.000000,0.250000,0,0);}
.ma0_c00077{transform:matrix(0.275149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275149,0.000000,0.000000,0.250000,0,0);}
.m9b_c00077{transform:matrix(0.275332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275332,0.000000,0.000000,0.250000,0,0);}
.m9c_c00077{transform:matrix(0.275369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275369,0.000000,0.000000,0.250000,0,0);}
.m4f_c00077{transform:matrix(0.275811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275811,0.000000,0.000000,0.250000,0,0);}
.m4_c00077{transform:matrix(0.276127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276127,0.000000,0.000000,0.250000,0,0);}
.m18_c00077{transform:matrix(0.277020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277020,0.000000,0.000000,0.250000,0,0);}
.m1b_c00077{transform:matrix(0.277316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277316,0.000000,0.000000,0.250000,0,0);}
.m2b_c00077{transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);}
.m73_c00077{transform:matrix(0.278044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278044,0.000000,0.000000,0.250000,0,0);}
.m65_c00077{transform:matrix(0.279300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279300,0.000000,0.000000,0.250000,0,0);}
.m5f_c00077{transform:matrix(0.280422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280422,0.000000,0.000000,0.250000,0,0);}
.m28_c00077{transform:matrix(0.280545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280545,0.000000,0.000000,0.250000,0,0);}
.m7a_c00077{transform:matrix(0.281686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281686,0.000000,0.000000,0.250000,0,0);}
.m54_c00077{transform:matrix(0.281848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281848,0.000000,0.000000,0.250000,0,0);}
.m3d_c00077{transform:matrix(0.282228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282228,0.000000,0.000000,0.250000,0,0);}
.m15_c00077{transform:matrix(0.282382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282382,0.000000,0.000000,0.250000,0,0);}
.m26_c00077{transform:matrix(0.283024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283024,0.000000,0.000000,0.250000,0,0);}
.mad_c00077{transform:matrix(0.283255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283255,0.000000,0.000000,0.250000,0,0);}
.m77_c00077{transform:matrix(0.283342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283342,0.000000,0.000000,0.250000,0,0);}
.m87_c00077{transform:matrix(0.283681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283681,0.000000,0.000000,0.250000,0,0);}
.m6c_c00077{transform:matrix(0.283785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283785,0.000000,0.000000,0.250000,0,0);}
.ma2_c00077{transform:matrix(0.283853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283853,0.000000,0.000000,0.250000,0,0);}
.m51_c00077{transform:matrix(0.284243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284243,0.000000,0.000000,0.250000,0,0);}
.m24_c00077{transform:matrix(0.285051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285051,0.000000,0.000000,0.250000,0,0);}
.m60_c00077{transform:matrix(0.285085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285085,0.000000,0.000000,0.250000,0,0);}
.mac_c00077{transform:matrix(0.285324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285324,0.000000,0.000000,0.250000,0,0);}
.m8f_c00077{transform:matrix(0.285383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285383,0.000000,0.000000,0.250000,0,0);}
.m9a_c00077{transform:matrix(0.285408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285408,0.000000,0.000000,0.250000,0,0);}
.m95_c00077{transform:matrix(0.286002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286002,0.000000,0.000000,0.250000,0,0);}
.m2d_c00077{transform:matrix(0.286173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286173,0.000000,0.000000,0.250000,0,0);}
.ma1_c00077{transform:matrix(0.286531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286531,0.000000,0.000000,0.250000,0,0);}
.m91_c00077{transform:matrix(0.286829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286829,0.000000,0.000000,0.250000,0,0);}
.m3_c00077{transform:matrix(0.286955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286955,0.000000,0.000000,0.250000,0,0);}
.ma8_c00077{transform:matrix(0.287129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287129,0.000000,0.000000,0.250000,0,0);}
.m57_c00077{transform:matrix(0.287278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287278,0.000000,0.000000,0.250000,0,0);}
.m8_c00077{transform:matrix(0.288216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288216,0.000000,0.000000,0.250000,0,0);}
.m6d_c00077{transform:matrix(0.288236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288236,0.000000,0.000000,0.250000,0,0);}
.m3b_c00077{transform:matrix(0.288997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288997,0.000000,0.000000,0.250000,0,0);}
.m84_c00077{transform:matrix(0.289031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289031,0.000000,0.000000,0.250000,0,0);}
.m2c_c00077{transform:matrix(0.289302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289302,0.000000,0.000000,0.250000,0,0);}
.m76_c00077{transform:matrix(0.289888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289888,0.000000,0.000000,0.250000,0,0);}
.m42_c00077{transform:matrix(0.290544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290544,0.000000,0.000000,0.250000,0,0);}
.m4e_c00077{transform:matrix(0.290590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290590,0.000000,0.000000,0.250000,0,0);}
.m7e_c00077{transform:matrix(0.290662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290662,0.000000,0.000000,0.250000,0,0);}
.m72_c00077{transform:matrix(0.290749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290749,0.000000,0.000000,0.250000,0,0);}
.m7b_c00077{transform:matrix(0.292400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292400,0.000000,0.000000,0.250000,0,0);}
.m45_c00077{transform:matrix(0.293261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293261,0.000000,0.000000,0.250000,0,0);}
.ma_c00077{transform:matrix(0.293612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293612,0.000000,0.000000,0.250000,0,0);}
.mf_c00077{transform:matrix(0.294120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294120,0.000000,0.000000,0.250000,0,0);}
.me_c00077{transform:matrix(0.294370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294370,0.000000,0.000000,0.250000,0,0);}
.m47_c00077{transform:matrix(0.295311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295311,0.000000,0.000000,0.250000,0,0);}
.m3f_c00077{transform:matrix(0.295504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295504,0.000000,0.000000,0.250000,0,0);}
.m5b_c00077{transform:matrix(0.295568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295568,0.000000,0.000000,0.250000,0,0);}
.m8c_c00077{transform:matrix(0.296580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296580,0.000000,0.000000,0.250000,0,0);}
.m62_c00077{transform:matrix(0.296594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296594,0.000000,0.000000,0.250000,0,0);}
.m68_c00077{transform:matrix(0.297855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297855,0.000000,0.000000,0.250000,0,0);}
.m33_c00077{transform:matrix(0.298549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298549,0.000000,0.000000,0.250000,0,0);}
.m34_c00077{transform:matrix(0.298640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298640,0.000000,0.000000,0.250000,0,0);}
.m8b_c00077{transform:matrix(0.299136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299136,0.000000,0.000000,0.250000,0,0);}
.m61_c00077{transform:matrix(0.299499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299499,0.000000,0.000000,0.250000,0,0);}
.m80_c00077{transform:matrix(0.300320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300320,0.000000,0.000000,0.250000,0,0);}
.m8d_c00077{transform:matrix(0.300840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300840,0.000000,0.000000,0.250000,0,0);}
.m1f_c00077{transform:matrix(0.300856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300856,0.000000,0.000000,0.250000,0,0);}
.m27_c00077{transform:matrix(0.301133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301133,0.000000,0.000000,0.250000,0,0);}
.m4a_c00077{transform:matrix(0.302767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302767,0.000000,0.000000,0.250000,0,0);}
.m12_c00077{transform:matrix(0.304481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304481,0.000000,0.000000,0.250000,0,0);}
.mb_c00077{transform:matrix(0.305157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305157,0.000000,0.000000,0.250000,0,0);}
.m40_c00077{transform:matrix(0.306037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306037,0.000000,0.000000,0.250000,0,0);}
.m59_c00077{transform:matrix(0.306049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306049,0.000000,0.000000,0.250000,0,0);}
.m14_c00077{transform:matrix(0.306107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306107,0.000000,0.000000,0.250000,0,0);}
.m70_c00077{transform:matrix(0.306505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306505,0.000000,0.000000,0.250000,0,0);}
.m21_c00077{transform:matrix(0.307388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307388,0.000000,0.000000,0.250000,0,0);}
.m22_c00077{transform:matrix(0.307690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307690,0.000000,0.000000,0.250000,0,0);}
.m4d_c00077{transform:matrix(0.308372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308372,0.000000,0.000000,0.250000,0,0);}
.m4b_c00077{transform:matrix(0.308636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308636,0.000000,0.000000,0.250000,0,0);}
.m6f_c00077{transform:matrix(0.309052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309052,0.000000,0.000000,0.250000,0,0);}
.m7f_c00077{transform:matrix(0.310880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310880,0.000000,0.000000,0.250000,0,0);}
.maa_c00077{transform:matrix(0.311828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311828,0.000000,0.000000,0.250000,0,0);}
.m35_c00077{transform:matrix(0.312161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312161,0.000000,0.000000,0.250000,0,0);}
.m6e_c00077{transform:matrix(0.312986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312986,0.000000,0.000000,0.250000,0,0);}
.m82_c00077{transform:matrix(0.314269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314269,0.000000,0.000000,0.250000,0,0);}
.m31_c00077{transform:matrix(0.314459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314459,0.000000,0.000000,0.250000,0,0);}
.m1c_c00077{transform:matrix(0.316300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316300,0.000000,0.000000,0.250000,0,0);}
.ma9_c00077{transform:matrix(0.317544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317544,0.000000,0.000000,0.250000,0,0);}
.m81_c00077{transform:matrix(0.317799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317799,0.000000,0.000000,0.250000,0,0);}
.m86_c00077{transform:matrix(0.317866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317866,0.000000,0.000000,0.250000,0,0);}
.m5_c00077{transform:matrix(0.320282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320282,0.000000,0.000000,0.250000,0,0);}
.m89_c00077{transform:matrix(0.322131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322131,0.000000,0.000000,0.250000,0,0);}
.m50_c00077{transform:matrix(0.322497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322497,0.000000,0.000000,0.250000,0,0);}
.m7d_c00077{transform:matrix(0.325725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325725,0.000000,0.000000,0.250000,0,0);}
.m2a_c00077{transform:matrix(0.326105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326105,0.000000,0.000000,0.250000,0,0);}
.m1_c00077{transform:matrix(0.326690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326690,0.000000,0.000000,0.250000,0,0);}
.m7c_c00077{transform:matrix(0.327827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327827,0.000000,0.000000,0.250000,0,0);}
.m9e_c00077{transform:matrix(0.329385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329385,0.000000,0.000000,0.250000,0,0);}
.m74_c00077{transform:matrix(0.332168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332168,0.000000,0.000000,0.250000,0,0);}
.m23_c00077{transform:matrix(0.333017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333017,0.000000,0.000000,0.250000,0,0);}
.m96_c00077{transform:matrix(0.333044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333044,0.000000,0.000000,0.250000,0,0);}
.m98_c00077{transform:matrix(0.333878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333878,0.000000,0.000000,0.250000,0,0);}
.m6_c00077{transform:matrix(0.335512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335512,0.000000,0.000000,0.250000,0,0);}
.ma7_c00077{transform:matrix(0.335736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335736,0.000000,0.000000,0.250000,0,0);}
.m36_c00077{transform:matrix(0.337672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337672,0.000000,0.000000,0.250000,0,0);}
.m17_c00077{transform:matrix(0.347313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347313,0.000000,0.000000,0.250000,0,0);}
.m11_c00077{transform:matrix(0.349926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349926,0.000000,0.000000,0.250000,0,0);}
.mab_c00077{transform:matrix(0.352050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352050,0.000000,0.000000,0.250000,0,0);}
.m6b_c00077{transform:matrix(0.358891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358891,0.000000,0.000000,0.250000,0,0);}
.m13_c00077{transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);}
.m41_c00077{transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);}
.m58_c00077{transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);}
.v0_c00077{vertical-align:0.000000px;}
.lsf_c00077{letter-spacing:-3.118500px;}
.ls6_c00077{letter-spacing:-2.855167px;}
.ls5_c00077{letter-spacing:-2.798064px;}
.ls12_c00077{letter-spacing:-2.227030px;}
.ls3_c00077{letter-spacing:0.000000px;}
.lsb_c00077{letter-spacing:0.546561px;}
.ls9_c00077{letter-spacing:0.919274px;}
.lsc_c00077{letter-spacing:1.027860px;}
.lsd_c00077{letter-spacing:1.892568px;}
.ls7_c00077{letter-spacing:2.153612px;}
.ls11_c00077{letter-spacing:2.692810px;}
.ls0_c00077{letter-spacing:2.789906px;}
.lsa_c00077{letter-spacing:3.524400px;}
.ls4_c00077{letter-spacing:3.623400px;}
.ls8_c00077{letter-spacing:3.785136px;}
.ls2_c00077{letter-spacing:4.078810px;}
.ls10_c00077{letter-spacing:4.276810px;}
.ls1_c00077{letter-spacing:4.410450px;}
.lse_c00077{letter-spacing:55.598598px;}
.sc__c00077{text-shadow:none;}
.sc0_c00077{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00077{-webkit-text-stroke:0px transparent;}
.sc0_c00077{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00077{word-spacing:0.000000px;}
._0_c00077{width:24.929716px;}
.fc0_c00077{color:transparent;}
.fs9_c00077{font-size:22.176000px;}
.fsb_c00077{font-size:27.720000px;}
.fs8_c00077{font-size:33.660000px;}
.fsf_c00077{font-size:35.244000px;}
.fs10_c00077{font-size:50.292000px;}
.fse_c00077{font-size:53.856198px;}
.fs7_c00077{font-size:55.598598px;}
.fs4_c00077{font-size:70.092198px;}
.fs6_c00077{font-size:70.488000px;}
.fs2_c00077{font-size:72.468000px;}
.fs3_c00077{font-size:74.844000px;}
.fsa_c00077{font-size:76.824000px;}
.fsd_c00077{font-size:79.200000px;}
.fs1_c00077{font-size:81.576198px;}
.fsc_c00077{font-size:85.536198px;}
.fs5_c00077{font-size:86.724000px;}
.fs0_c00077{font-size:89.100000px;}
.y0_c00077{bottom:0.000000px;}
.y20_c00077{bottom:40.536585px;}
.y1f_c00077{bottom:69.409935px;}
.y1_c00077{bottom:76.500000px;}
.y1e_c00077{bottom:171.340335px;}
.y1d_c00077{bottom:203.059935px;}
.y1c_c00077{bottom:235.487385px;}
.y1b_c00077{bottom:258.653385px;}
.y1a_c00077{bottom:266.850585px;}
.y19_c00077{bottom:298.931535px;}
.y18_c00077{bottom:322.097535px;}
.y17_c00077{bottom:329.933385px;}
.y16_c00077{bottom:361.301535px;}
.y15_c00077{bottom:392.664735px;}
.y14_c00077{bottom:455.747535px;}
.y13_c00077{bottom:481.403385px;}
.y12_c00077{bottom:486.754335px;}
.y11_c00077{bottom:512.058735px;}
.y10_c00077{bottom:518.825385px;}
.yf_c00077{bottom:550.549935px;}
.ye_c00077{bottom:582.620985px;}
.yd_c00077{bottom:614.345535px;}
.yc_c00077{bottom:646.060185px;}
.yb_c00077{bottom:677.779785px;}
.ya_c00077{bottom:709.147935px;}
.y9_c00077{bottom:740.867535px;}
.y8_c00077{bottom:772.230735px;}
.y7_c00077{bottom:803.945385px;}
.y6_c00077{bottom:835.313535px;}
.y5_c00077{bottom:867.033135px;}
.y4_c00077{bottom:898.391385px;}
.y3_c00077{bottom:930.828735px;}
.y2_c00077{bottom:1065.542985px;}
.hb_c00077{height:23.128875px;}
.hd_c00077{height:28.911094px;}
.ha_c00077{height:33.035449px;}
.h11_c00077{height:36.758391px;}
.h9_c00077{height:37.028666px;}
.h12_c00077{height:49.358848px;}
.h10_c00077{height:52.856913px;}
.h8_c00077{height:69.180117px;}
.h4_c00077{height:71.123379px;}
.h6_c00077{height:73.103972px;}
.h5_c00077{height:73.455293px;}
.hc_c00077{height:75.398555px;}
.hf_c00077{height:77.730469px;}
.h3_c00077{height:80.062577px;}
.he_c00077{height:83.949101px;}
.h7_c00077{height:85.072518px;}
.h2_c00077{height:87.446777px;}
.h1_c00077{height:1110.000000px;}
.h0_c00077{height:1263.000000px;}
.w1_c00077{width:733.500000px;}
.w0_c00077{width:892.500000px;}
.x0_c00077{left:0.000000px;}
.x1c_c00077{left:65.191035px;}
.x3_c00077{left:66.339435px;}
.x34_c00077{left:67.388835px;}
.x5a_c00077{left:69.101535px;}
.x1_c00077{left:79.500000px;}
.x3f_c00077{left:88.782735px;}
.x14_c00077{left:99.588585px;}
.x1d_c00077{left:109.572735px;}
.x4e_c00077{left:111.344835px;}
.x3c_c00077{left:120.982485px;}
.x4_c00077{left:132.387285px;}
.x56_c00077{left:134.664285px;}
.x29_c00077{left:143.435685px;}
.x5c_c00077{left:144.494985px;}
.x1e_c00077{left:154.355385px;}
.x4f_c00077{left:155.474085px;}
.xd_c00077{left:164.992935px;}
.x5_c00077{left:166.121535px;}
.x58_c00077{left:177.041235px;}
.x5b_c00077{left:178.654935px;}
.x23_c00077{left:187.089735px;}
.x39_c00077{left:188.644035px;}
.x40_c00077{left:199.034085px;}
.x24_c00077{left:208.859835px;}
.x45_c00077{left:221.655585px;}
.x6_c00077{left:232.411935px;}
.x42_c00077{left:242.361435px;}
.x25_c00077{left:243.564285px;}
.x51_c00077{left:245.762085px;}
.xe_c00077{left:254.370135px;}
.x1f_c00077{left:255.637335px;}
.x2a_c00077{left:265.685835px;}
.x7_c00077{left:277.719285px;}
.x49_c00077{left:287.223285px;}
.x43_c00077{left:289.510185px;}
.x2b_c00077{left:298.771635px;}
.x5d_c00077{left:300.202185px;}
.x8_c00077{left:310.003185px;}
.x3a_c00077{left:311.587185px;}
.x20_c00077{left:321.615885px;}
.x35_c00077{left:332.045535px;}
.xf_c00077{left:333.273135px;}
.x15_c00077{left:343.019685px;}
.x37_c00077{left:344.435385px;}
.x52_c00077{left:354.404685px;}
.x3d_c00077{left:366.185685px;}
.x30_c00077{left:377.204385px;}
.x16_c00077{left:387.525135px;}
.x4a_c00077{left:388.633935px;}
.x26_c00077{left:399.662535px;}
.x5e_c00077{left:400.682235px;}
.x21_c00077{left:409.488285px;}
.x44_c00077{left:410.696085px;}
.x17_c00077{left:422.016735px;}
.x9_c00077{left:432.124635px;}
.x4b_c00077{left:433.827435px;}
.x50_c00077{left:442.979985px;}
.x46_c00077{left:444.568935px;}
.x10_c00077{left:454.548135px;}
.x3b_c00077{left:455.582685px;}
.x4c_c00077{left:465.943035px;}
.x18_c00077{left:476.313285px;}
.x55_c00077{left:477.728985px;}
.x2c_c00077{left:487.361685px;}
.x31_c00077{left:488.673435px;}
.xa_c00077{left:497.494335px;}
.x53_c00077{left:498.583335px;}
.x41_c00077{left:499.721835px;}
.x36_c00077{left:509.735685px;}
.x59_c00077{left:510.765285px;}
.x54_c00077{left:519.952485px;}
.x27_c00077{left:521.546385px;}
.x19_c00077{left:532.144335px;}
.x5f_c00077{left:543.544185px;}
.x11_c00077{left:554.661885px;}
.xb_c00077{left:564.448035px;}
.x2d_c00077{left:577.159635px;}
.x12_c00077{left:587.000235px;}
.x47_c00077{left:588.445635px;}
.x2e_c00077{left:598.840635px;}
.x2_c00077{left:608.121885px;}
.x22_c00077{left:618.695085px;}
.x28_c00077{left:620.551335px;}
.x32_c00077{left:630.283035px;}
.x2f_c00077{left:631.337385px;}
.x1a_c00077{left:642.633285px;}
.x38_c00077{left:652.577835px;}
.x4d_c00077{left:653.746035px;}
.xc_c00077{left:664.725135px;}
.x3e_c00077{left:666.581385px;}
.x1b_c00077{left:675.832935px;}
.x60_c00077{left:678.797985px;}
.x48_c00077{left:679.891935px;}
.x57_c00077{left:680.985885px;}
.x13_c00077{left:686.950635px;}
.x33_c00077{left:688.000035px;}
@media print{
.v0_c00077{vertical-align:0.000000pt;}
.lsf_c00077{letter-spacing:-2.772000pt;}
.ls6_c00077{letter-spacing:-2.537926pt;}
.ls5_c00077{letter-spacing:-2.487168pt;}
.ls12_c00077{letter-spacing:-1.979582pt;}
.ls3_c00077{letter-spacing:0.000000pt;}
.lsb_c00077{letter-spacing:0.485832pt;}
.ls9_c00077{letter-spacing:0.817133pt;}
.lsc_c00077{letter-spacing:0.913653pt;}
.lsd_c00077{letter-spacing:1.682282pt;}
.ls7_c00077{letter-spacing:1.914321pt;}
.ls11_c00077{letter-spacing:2.393609pt;}
.ls0_c00077{letter-spacing:2.479916pt;}
.lsa_c00077{letter-spacing:3.132800pt;}
.ls4_c00077{letter-spacing:3.220800pt;}
.ls8_c00077{letter-spacing:3.364565pt;}
.ls2_c00077{letter-spacing:3.625609pt;}
.ls10_c00077{letter-spacing:3.801609pt;}
.ls1_c00077{letter-spacing:3.920400pt;}
.lse_c00077{letter-spacing:49.420976pt;}
.ws0_c00077{word-spacing:0.000000pt;}
._0_c00077{width:22.159747pt;}
.fs9_c00077{font-size:19.712000pt;}
.fsb_c00077{font-size:24.640000pt;}
.fs8_c00077{font-size:29.920000pt;}
.fsf_c00077{font-size:31.328000pt;}
.fs10_c00077{font-size:44.704000pt;}
.fse_c00077{font-size:47.872176pt;}
.fs7_c00077{font-size:49.420976pt;}
.fs4_c00077{font-size:62.304176pt;}
.fs6_c00077{font-size:62.656000pt;}
.fs2_c00077{font-size:64.416000pt;}
.fs3_c00077{font-size:66.528000pt;}
.fsa_c00077{font-size:68.288000pt;}
.fsd_c00077{font-size:70.400000pt;}
.fs1_c00077{font-size:72.512176pt;}
.fsc_c00077{font-size:76.032176pt;}
.fs5_c00077{font-size:77.088000pt;}
.fs0_c00077{font-size:79.200000pt;}
.y0_c00077{bottom:0.000000pt;}
.y20_c00077{bottom:36.032520pt;}
.y1f_c00077{bottom:61.697720pt;}
.y1_c00077{bottom:68.000000pt;}
.y1e_c00077{bottom:152.302520pt;}
.y1d_c00077{bottom:180.497720pt;}
.y1c_c00077{bottom:209.322120pt;}
.y1b_c00077{bottom:229.914120pt;}
.y1a_c00077{bottom:237.200520pt;}
.y19_c00077{bottom:265.716920pt;}
.y18_c00077{bottom:286.308920pt;}
.y17_c00077{bottom:293.274120pt;}
.y16_c00077{bottom:321.156920pt;}
.y15_c00077{bottom:349.035320pt;}
.y14_c00077{bottom:405.108920pt;}
.y13_c00077{bottom:427.914120pt;}
.y12_c00077{bottom:432.670520pt;}
.y11_c00077{bottom:455.163320pt;}
.y10_c00077{bottom:461.178120pt;}
.yf_c00077{bottom:489.377720pt;}
.ye_c00077{bottom:517.885320pt;}
.yd_c00077{bottom:546.084920pt;}
.yc_c00077{bottom:574.275720pt;}
.yb_c00077{bottom:602.470920pt;}
.ya_c00077{bottom:630.353720pt;}
.y9_c00077{bottom:658.548920pt;}
.y8_c00077{bottom:686.427320pt;}
.y7_c00077{bottom:714.618120pt;}
.y6_c00077{bottom:742.500920pt;}
.y5_c00077{bottom:770.696120pt;}
.y4_c00077{bottom:798.570120pt;}
.y3_c00077{bottom:827.403320pt;}
.y2_c00077{bottom:947.149320pt;}
.hb_c00077{height:20.559000pt;}
.hd_c00077{height:25.698750pt;}
.ha_c00077{height:29.364844pt;}
.h11_c00077{height:32.674125pt;}
.h9_c00077{height:32.914370pt;}
.h12_c00077{height:43.874531pt;}
.h10_c00077{height:46.983923pt;}
.h8_c00077{height:61.493438pt;}
.h4_c00077{height:63.220781pt;}
.h6_c00077{height:64.981309pt;}
.h5_c00077{height:65.293594pt;}
.hc_c00077{height:67.020938pt;}
.hf_c00077{height:69.093750pt;}
.h3_c00077{height:71.166735pt;}
.he_c00077{height:74.621423pt;}
.h7_c00077{height:75.620016pt;}
.h2_c00077{height:77.730469pt;}
.h1_c00077{height:986.666667pt;}
.h0_c00077{height:1122.666667pt;}
.w1_c00077{width:652.000000pt;}
.w0_c00077{width:793.333333pt;}
.x0_c00077{left:0.000000pt;}
.x1c_c00077{left:57.947587pt;}
.x3_c00077{left:58.968387pt;}
.x34_c00077{left:59.901187pt;}
.x5a_c00077{left:61.423587pt;}
.x1_c00077{left:70.666667pt;}
.x3f_c00077{left:78.917987pt;}
.x14_c00077{left:88.523187pt;}
.x1d_c00077{left:97.397987pt;}
.x4e_c00077{left:98.973187pt;}
.x3c_c00077{left:107.539987pt;}
.x4_c00077{left:117.677587pt;}
.x56_c00077{left:119.701587pt;}
.x29_c00077{left:127.498387pt;}
.x5c_c00077{left:128.439987pt;}
.x1e_c00077{left:137.204787pt;}
.x4f_c00077{left:138.199187pt;}
.xd_c00077{left:146.660387pt;}
.x5_c00077{left:147.663587pt;}
.x58_c00077{left:157.369987pt;}
.x5b_c00077{left:158.804387pt;}
.x23_c00077{left:166.301987pt;}
.x39_c00077{left:167.683587pt;}
.x40_c00077{left:176.919187pt;}
.x24_c00077{left:185.653187pt;}
.x45_c00077{left:197.027187pt;}
.x6_c00077{left:206.588387pt;}
.x42_c00077{left:215.432387pt;}
.x25_c00077{left:216.501587pt;}
.x51_c00077{left:218.455187pt;}
.xe_c00077{left:226.106787pt;}
.x1f_c00077{left:227.233187pt;}
.x2a_c00077{left:236.165187pt;}
.x7_c00077{left:246.861587pt;}
.x49_c00077{left:255.309587pt;}
.x43_c00077{left:257.342387pt;}
.x2b_c00077{left:265.574787pt;}
.x5d_c00077{left:266.846387pt;}
.x8_c00077{left:275.558387pt;}
.x3a_c00077{left:276.966387pt;}
.x20_c00077{left:285.880787pt;}
.x35_c00077{left:295.151587pt;}
.xf_c00077{left:296.242787pt;}
.x15_c00077{left:304.906387pt;}
.x37_c00077{left:306.164787pt;}
.x52_c00077{left:315.026387pt;}
.x3d_c00077{left:325.498387pt;}
.x30_c00077{left:335.292787pt;}
.x16_c00077{left:344.466787pt;}
.x4a_c00077{left:345.452387pt;}
.x26_c00077{left:355.255587pt;}
.x5e_c00077{left:356.161987pt;}
.x21_c00077{left:363.989587pt;}
.x44_c00077{left:365.063187pt;}
.x17_c00077{left:375.125987pt;}
.x9_c00077{left:384.110787pt;}
.x4b_c00077{left:385.624387pt;}
.x50_c00077{left:393.759987pt;}
.x46_c00077{left:395.172387pt;}
.x10_c00077{left:404.042787pt;}
.x3b_c00077{left:404.962387pt;}
.x4c_c00077{left:414.171587pt;}
.x18_c00077{left:423.389587pt;}
.x55_c00077{left:424.647987pt;}
.x2c_c00077{left:433.210387pt;}
.x31_c00077{left:434.376387pt;}
.xa_c00077{left:442.217187pt;}
.x53_c00077{left:443.185187pt;}
.x41_c00077{left:444.197187pt;}
.x36_c00077{left:453.098387pt;}
.x59_c00077{left:454.013587pt;}
.x54_c00077{left:462.179987pt;}
.x27_c00077{left:463.596787pt;}
.x19_c00077{left:473.017187pt;}
.x5f_c00077{left:483.150387pt;}
.x11_c00077{left:493.032787pt;}
.xb_c00077{left:501.731587pt;}
.x2d_c00077{left:513.030787pt;}
.x12_c00077{left:521.777987pt;}
.x47_c00077{left:523.062787pt;}
.x2e_c00077{left:532.302787pt;}
.x2_c00077{left:540.552787pt;}
.x22_c00077{left:549.951187pt;}
.x28_c00077{left:551.601187pt;}
.x32_c00077{left:560.251587pt;}
.x2f_c00077{left:561.188787pt;}
.x1a_c00077{left:571.229587pt;}
.x38_c00077{left:580.069187pt;}
.x4d_c00077{left:581.107587pt;}
.xc_c00077{left:590.866787pt;}
.x3e_c00077{left:592.516787pt;}
.x1b_c00077{left:600.740387pt;}
.x60_c00077{left:603.375987pt;}
.x48_c00077{left:604.348387pt;}
.x57_c00077{left:605.320787pt;}
.x13_c00077{left:610.622787pt;}
.x33_c00077{left:611.555587pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eb80123b448e78191fe0c9be.woff2')format("woff");}.ff1_c00078{font-family:ff1_c00078;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00078;src:url('chunks/assets/font_2441a109e5a98077ddc863bc.woff2')format("woff");}.ff2_c00078{font-family:ff2_c00078;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00078;src:url('chunks/assets/font_c94d0c799c2ad2192863984e.woff2')format("woff");}.ff3_c00078{font-family:ff3_c00078;line-height:0.666000;font-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_c00078{transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);}
.m81_c00078{transform:matrix(0.168759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168759,0.000000,0.000000,0.250000,0,0);}
.m52_c00078{transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);}
.m68_c00078{transform:matrix(0.233008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233008,0.000000,0.000000,0.250000,0,0);}
.m32_c00078{transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);}
.m0_c00078{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00078{transform:matrix(0.251164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251164,0.000000,0.000000,0.250000,0,0);}
.m3b_c00078{transform:matrix(0.253545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253545,0.000000,0.000000,0.250000,0,0);}
.m67_c00078{transform:matrix(0.254391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254391,0.000000,0.000000,0.250000,0,0);}
.m1d_c00078{transform:matrix(0.256189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256189,0.000000,0.000000,0.250000,0,0);}
.m6a_c00078{transform:matrix(0.256595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256595,0.000000,0.000000,0.250000,0,0);}
.m9e_c00078{transform:matrix(0.258653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258653,0.000000,0.000000,0.250000,0,0);}
.maa_c00078{transform:matrix(0.259580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259580,0.000000,0.000000,0.250000,0,0);}
.m40_c00078{transform:matrix(0.260579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260579,0.000000,0.000000,0.250000,0,0);}
.m17_c00078{transform:matrix(0.261539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261539,0.000000,0.000000,0.250000,0,0);}
.m5b_c00078{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.m2f_c00078{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m1b_c00078{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m89_c00078{transform:matrix(0.264174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264174,0.000000,0.000000,0.250000,0,0);}
.m7_c00078{transform:matrix(0.265205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265205,0.000000,0.000000,0.250000,0,0);}
.m9_c00078{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m11_c00078{transform:matrix(0.266343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266343,0.000000,0.000000,0.250000,0,0);}
.m26_c00078{transform:matrix(0.267040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267040,0.000000,0.000000,0.250000,0,0);}
.m75_c00078{transform:matrix(0.267275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267275,0.000000,0.000000,0.250000,0,0);}
.m5f_c00078{transform:matrix(0.267577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267577,0.000000,0.000000,0.250000,0,0);}
.mb_c00078{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m72_c00078{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.m45_c00078{transform:matrix(0.268694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268694,0.000000,0.000000,0.250000,0,0);}
.m5_c00078{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.ma1_c00078{transform:matrix(0.270977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270977,0.000000,0.000000,0.250000,0,0);}
.ma0_c00078{transform:matrix(0.271206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271206,0.000000,0.000000,0.250000,0,0);}
.mab_c00078{transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);}
.m2d_c00078{transform:matrix(0.271634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271634,0.000000,0.000000,0.250000,0,0);}
.m34_c00078{transform:matrix(0.271853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271853,0.000000,0.000000,0.250000,0,0);}
.m3f_c00078{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m50_c00078{transform:matrix(0.273214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273214,0.000000,0.000000,0.250000,0,0);}
.ma5_c00078{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00078{transform:matrix(0.273453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273453,0.000000,0.000000,0.250000,0,0);}
.m64_c00078{transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);}
.m6f_c00078{transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);}
.m37_c00078{transform:matrix(0.274583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274583,0.000000,0.000000,0.250000,0,0);}
.m6c_c00078{transform:matrix(0.275416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275416,0.000000,0.000000,0.250000,0,0);}
.md_c00078{transform:matrix(0.275438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275438,0.000000,0.000000,0.250000,0,0);}
.m77_c00078{transform:matrix(0.275570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275570,0.000000,0.000000,0.250000,0,0);}
.mc_c00078{transform:matrix(0.275905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275905,0.000000,0.000000,0.250000,0,0);}
.m4b_c00078{transform:matrix(0.275961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275961,0.000000,0.000000,0.250000,0,0);}
.m14_c00078{transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);}
.ma9_c00078{transform:matrix(0.277352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277352,0.000000,0.000000,0.250000,0,0);}
.m3c_c00078{transform:matrix(0.277423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277423,0.000000,0.000000,0.250000,0,0);}
.m38_c00078{transform:matrix(0.278331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278331,0.000000,0.000000,0.250000,0,0);}
.ma4_c00078{transform:matrix(0.278443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278443,0.000000,0.000000,0.250000,0,0);}
.m4_c00078{transform:matrix(0.279088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279088,0.000000,0.000000,0.250000,0,0);}
.m60_c00078{transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);}
.m98_c00078{transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);}
.m53_c00078{transform:matrix(0.279997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279997,0.000000,0.000000,0.250000,0,0);}
.m48_c00078{transform:matrix(0.280188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280188,0.000000,0.000000,0.250000,0,0);}
.ma_c00078{transform:matrix(0.280243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280243,0.000000,0.000000,0.250000,0,0);}
.m31_c00078{transform:matrix(0.280983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280983,0.000000,0.000000,0.250000,0,0);}
.m7e_c00078{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.m9d_c00078{transform:matrix(0.282545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282545,0.000000,0.000000,0.250000,0,0);}
.m29_c00078{transform:matrix(0.283330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283330,0.000000,0.000000,0.250000,0,0);}
.m4f_c00078{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m3d_c00078{transform:matrix(0.283914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283914,0.000000,0.000000,0.250000,0,0);}
.m21_c00078{transform:matrix(0.284388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284388,0.000000,0.000000,0.250000,0,0);}
.mac_c00078{transform:matrix(0.284684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284684,0.000000,0.000000,0.250000,0,0);}
.m24_c00078{transform:matrix(0.284894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284894,0.000000,0.000000,0.250000,0,0);}
.m9b_c00078{transform:matrix(0.285147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285147,0.000000,0.000000,0.250000,0,0);}
.m93_c00078{transform:matrix(0.285198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285198,0.000000,0.000000,0.250000,0,0);}
.m66_c00078{transform:matrix(0.285558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285558,0.000000,0.000000,0.250000,0,0);}
.m9c_c00078{transform:matrix(0.286642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286642,0.000000,0.000000,0.250000,0,0);}
.m41_c00078{transform:matrix(0.286929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286929,0.000000,0.000000,0.250000,0,0);}
.m96_c00078{transform:matrix(0.287569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287569,0.000000,0.000000,0.250000,0,0);}
.m2c_c00078{transform:matrix(0.288005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288005,0.000000,0.000000,0.250000,0,0);}
.m7f_c00078{transform:matrix(0.288624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288624,0.000000,0.000000,0.250000,0,0);}
.m94_c00078{transform:matrix(0.288974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288974,0.000000,0.000000,0.250000,0,0);}
.m3_c00078{transform:matrix(0.289508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289508,0.000000,0.000000,0.250000,0,0);}
.m9f_c00078{transform:matrix(0.289664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289664,0.000000,0.000000,0.250000,0,0);}
.m65_c00078{transform:matrix(0.289980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289980,0.000000,0.000000,0.250000,0,0);}
.m5e_c00078{transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);}
.m1a_c00078{transform:matrix(0.290272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290272,0.000000,0.000000,0.250000,0,0);}
.ma3_c00078{transform:matrix(0.290304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290304,0.000000,0.000000,0.250000,0,0);}
.m18_c00078{transform:matrix(0.291828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291828,0.000000,0.000000,0.250000,0,0);}
.m2e_c00078{transform:matrix(0.291917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291917,0.000000,0.000000,0.250000,0,0);}
.m80_c00078{transform:matrix(0.292227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292227,0.000000,0.000000,0.250000,0,0);}
.m55_c00078{transform:matrix(0.292514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292514,0.000000,0.000000,0.250000,0,0);}
.m22_c00078{transform:matrix(0.293286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293286,0.000000,0.000000,0.250000,0,0);}
.m86_c00078{transform:matrix(0.293942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293942,0.000000,0.000000,0.250000,0,0);}
.m15_c00078{transform:matrix(0.294066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294066,0.000000,0.000000,0.250000,0,0);}
.m76_c00078{transform:matrix(0.294132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294132,0.000000,0.000000,0.250000,0,0);}
.m51_c00078{transform:matrix(0.295249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295249,0.000000,0.000000,0.250000,0,0);}
.m20_c00078{transform:matrix(0.295994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295994,0.000000,0.000000,0.250000,0,0);}
.m43_c00078{transform:matrix(0.296903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296903,0.000000,0.000000,0.250000,0,0);}
.m42_c00078{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m7c_c00078{transform:matrix(0.297238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297238,0.000000,0.000000,0.250000,0,0);}
.m9a_c00078{transform:matrix(0.297306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297306,0.000000,0.000000,0.250000,0,0);}
.m92_c00078{transform:matrix(0.297631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297631,0.000000,0.000000,0.250000,0,0);}
.m84_c00078{transform:matrix(0.297709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297709,0.000000,0.000000,0.250000,0,0);}
.m12_c00078{transform:matrix(0.298549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298549,0.000000,0.000000,0.250000,0,0);}
.m57_c00078{transform:matrix(0.298604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298604,0.000000,0.000000,0.250000,0,0);}
.m27_c00078{transform:matrix(0.298951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298951,0.000000,0.000000,0.250000,0,0);}
.m90_c00078{transform:matrix(0.299267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299267,0.000000,0.000000,0.250000,0,0);}
.m7b_c00078{transform:matrix(0.300244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300244,0.000000,0.000000,0.250000,0,0);}
.maf_c00078{transform:matrix(0.300504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300504,0.000000,0.000000,0.250000,0,0);}
.m44_c00078{transform:matrix(0.300523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300523,0.000000,0.000000,0.250000,0,0);}
.m70_c00078{transform:matrix(0.301780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301780,0.000000,0.000000,0.250000,0,0);}
.m85_c00078{transform:matrix(0.302346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302346,0.000000,0.000000,0.250000,0,0);}
.m35_c00078{transform:matrix(0.303356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303356,0.000000,0.000000,0.250000,0,0);}
.m71_c00078{transform:matrix(0.303821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303821,0.000000,0.000000,0.250000,0,0);}
.m3e_c00078{transform:matrix(0.304540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304540,0.000000,0.000000,0.250000,0,0);}
.m8f_c00078{transform:matrix(0.304766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304766,0.000000,0.000000,0.250000,0,0);}
.m7d_c00078{transform:matrix(0.304800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304800,0.000000,0.000000,0.250000,0,0);}
.m79_c00078{transform:matrix(0.305153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305153,0.000000,0.000000,0.250000,0,0);}
.ma2_c00078{transform:matrix(0.305564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305564,0.000000,0.000000,0.250000,0,0);}
.m36_c00078{transform:matrix(0.306300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306300,0.000000,0.000000,0.250000,0,0);}
.m82_c00078{transform:matrix(0.307637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307637,0.000000,0.000000,0.250000,0,0);}
.ma6_c00078{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m5c_c00078{transform:matrix(0.308583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308583,0.000000,0.000000,0.250000,0,0);}
.m8c_c00078{transform:matrix(0.308602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308602,0.000000,0.000000,0.250000,0,0);}
.m47_c00078{transform:matrix(0.308789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308789,0.000000,0.000000,0.250000,0,0);}
.m91_c00078{transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);}
.m5a_c00078{transform:matrix(0.308942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308942,0.000000,0.000000,0.250000,0,0);}
.m28_c00078{transform:matrix(0.309394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309394,0.000000,0.000000,0.250000,0,0);}
.m23_c00078{transform:matrix(0.310033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310033,0.000000,0.000000,0.250000,0,0);}
.m8b_c00078{transform:matrix(0.311188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311188,0.000000,0.000000,0.250000,0,0);}
.m8e_c00078{transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);}
.m4c_c00078{transform:matrix(0.313301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313301,0.000000,0.000000,0.250000,0,0);}
.m8_c00078{transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);}
.m2b_c00078{transform:matrix(0.313927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313927,0.000000,0.000000,0.250000,0,0);}
.m63_c00078{transform:matrix(0.314528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314528,0.000000,0.000000,0.250000,0,0);}
.m97_c00078{transform:matrix(0.314543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314543,0.000000,0.000000,0.250000,0,0);}
.m78_c00078{transform:matrix(0.314784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314784,0.000000,0.000000,0.250000,0,0);}
.m95_c00078{transform:matrix(0.314809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314809,0.000000,0.000000,0.250000,0,0);}
.m4a_c00078{transform:matrix(0.314995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314995,0.000000,0.000000,0.250000,0,0);}
.m1e_c00078{transform:matrix(0.315134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315134,0.000000,0.000000,0.250000,0,0);}
.m16_c00078{transform:matrix(0.315872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315872,0.000000,0.000000,0.250000,0,0);}
.m1c_c00078{transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);}
.me_c00078{transform:matrix(0.316232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316232,0.000000,0.000000,0.250000,0,0);}
.m87_c00078{transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);}
.m46_c00078{transform:matrix(0.316467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316467,0.000000,0.000000,0.250000,0,0);}
.m13_c00078{transform:matrix(0.318503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318503,0.000000,0.000000,0.250000,0,0);}
.m8a_c00078{transform:matrix(0.319218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319218,0.000000,0.000000,0.250000,0,0);}
.m2_c00078{transform:matrix(0.319448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319448,0.000000,0.000000,0.250000,0,0);}
.m6e_c00078{transform:matrix(0.319793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319793,0.000000,0.000000,0.250000,0,0);}
.m61_c00078{transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);}
.m30_c00078{transform:matrix(0.320626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320626,0.000000,0.000000,0.250000,0,0);}
.m58_c00078{transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);}
.m4d_c00078{transform:matrix(0.321773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321773,0.000000,0.000000,0.250000,0,0);}
.mad_c00078{transform:matrix(0.322136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322136,0.000000,0.000000,0.250000,0,0);}
.mae_c00078{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.m2a_c00078{transform:matrix(0.324242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324242,0.000000,0.000000,0.250000,0,0);}
.m33_c00078{transform:matrix(0.325086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325086,0.000000,0.000000,0.250000,0,0);}
.m5d_c00078{transform:matrix(0.326030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326030,0.000000,0.000000,0.250000,0,0);}
.m83_c00078{transform:matrix(0.326078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326078,0.000000,0.000000,0.250000,0,0);}
.ma7_c00078{transform:matrix(0.327110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327110,0.000000,0.000000,0.250000,0,0);}
.m8d_c00078{transform:matrix(0.327213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327213,0.000000,0.000000,0.250000,0,0);}
.m73_c00078{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.m4e_c00078{transform:matrix(0.327729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327729,0.000000,0.000000,0.250000,0,0);}
.m19_c00078{transform:matrix(0.328056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328056,0.000000,0.000000,0.250000,0,0);}
.m88_c00078{transform:matrix(0.332612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332612,0.000000,0.000000,0.250000,0,0);}
.m39_c00078{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.ma8_c00078{transform:matrix(0.333374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333374,0.000000,0.000000,0.250000,0,0);}
.m59_c00078{transform:matrix(0.334621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334621,0.000000,0.000000,0.250000,0,0);}
.m49_c00078{transform:matrix(0.335721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335721,0.000000,0.000000,0.250000,0,0);}
.m69_c00078{transform:matrix(0.336465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336465,0.000000,0.000000,0.250000,0,0);}
.m10_c00078{transform:matrix(0.338655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338655,0.000000,0.000000,0.250000,0,0);}
.m56_c00078{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m62_c00078{transform:matrix(0.340271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340271,0.000000,0.000000,0.250000,0,0);}
.m25_c00078{transform:matrix(0.342687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342687,0.000000,0.000000,0.250000,0,0);}
.m6_c00078{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.m74_c00078{transform:matrix(0.343626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343626,0.000000,0.000000,0.250000,0,0);}
.m99_c00078{transform:matrix(0.347206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347206,0.000000,0.000000,0.250000,0,0);}
.mf_c00078{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m54_c00078{transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);}
.m1f_c00078{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m6b_c00078{transform:matrix(0.367865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367865,0.000000,0.000000,0.250000,0,0);}
.m6d_c00078{transform:matrix(0.373718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373718,0.000000,0.000000,0.250000,0,0);}
.v0_c00078{vertical-align:0.000000px;}
.lsa_c00078{letter-spacing:-2.744280px;}
.ls7_c00078{letter-spacing:-2.375762px;}
.lsd_c00078{letter-spacing:-1.897474px;}
.ls10_c00078{letter-spacing:-1.427026px;}
.lsb_c00078{letter-spacing:-1.066349px;}
.ls12_c00078{letter-spacing:-0.180338px;}
.ls1_c00078{letter-spacing:0.000000px;}
.lse_c00078{letter-spacing:0.462607px;}
.lsc_c00078{letter-spacing:1.246687px;}
.ls0_c00078{letter-spacing:1.685772px;}
.ls5_c00078{letter-spacing:2.775643px;}
.ls11_c00078{letter-spacing:2.783484px;}
.ls8_c00078{letter-spacing:2.869733px;}
.ls9_c00078{letter-spacing:3.112798px;}
.lsf_c00078{letter-spacing:3.781810px;}
.ls6_c00078{letter-spacing:3.841992px;}
.ls4_c00078{letter-spacing:3.920400px;}
.ls2_c00078{letter-spacing:4.277592px;}
.ls3_c00078{letter-spacing:31.363200px;}
.sc__c00078{text-shadow:none;}
.sc0_c00078{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00078{-webkit-text-stroke:0px transparent;}
.sc0_c00078{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00078{word-spacing:0.000000px;}
._3_c00078{width:11.918016px;}
._2_c00078{width:20.856528px;}
._1_c00078{width:27.129168px;}
._0_c00078{width:29.755836px;}
._4_c00078{width:35.126784px;}
.fc0_c00078{color:transparent;}
.fs2_c00078{font-size:22.176000px;}
.fsc_c00078{font-size:23.166000px;}
.fsd_c00078{font-size:27.720000px;}
.fse_c00078{font-size:27.918000px;}
.fs5_c00078{font-size:31.363200px;}
.fs4_c00078{font-size:32.868000px;}
.fs0_c00078{font-size:33.660000px;}
.fs9_c00078{font-size:45.144000px;}
.fs8_c00078{font-size:50.292000px;}
.fsb_c00078{font-size:64.548000px;}
.fs3_c00078{font-size:66.528000px;}
.fs7_c00078{font-size:70.884000px;}
.fsa_c00078{font-size:75.636198px;}
.fs6_c00078{font-size:78.408000px;}
.fs1_c00078{font-size:87.120000px;}
.y0_c00078{bottom:0.000000px;}
.y24_c00078{bottom:34.121385px;}
.y23_c00078{bottom:62.638335px;}
.y1_c00078{bottom:76.500000px;}
.y22_c00078{bottom:143.897535px;}
.y21_c00078{bottom:169.201935px;}
.y20_c00078{bottom:175.973535px;}
.y1f_c00078{bottom:209.113785px;}
.y1e_c00078{bottom:241.551135px;}
.y1d_c00078{bottom:274.696335px;}
.y1c_c00078{bottom:308.549385px;}
.y1b_c00078{bottom:340.986735px;}
.y1a_c00078{bottom:373.057785px;}
.y19_c00078{bottom:405.133785px;}
.y18_c00078{bottom:437.571135px;}
.y17_c00078{bottom:469.647135px;}
.y16_c00078{bottom:502.430985px;}
.y15_c00078{bottom:540.927135px;}
.y13_c00078{bottom:568.726335px;}
.y14_c00078{bottom:574.785135px;}
.y12_c00078{bottom:602.222985px;}
.y11_c00078{bottom:635.373135px;}
.y10_c00078{bottom:667.800585px;}
.yf_c00078{bottom:700.232985px;}
.ye_c00078{bottom:732.313935px;}
.yd_c00078{bottom:764.389935px;}
.yc_c00078{bottom:796.109535px;}
.y2_c00078{bottom:819.270585px;}
.yb_c00078{bottom:828.541935px;}
.ya_c00078{bottom:861.330735px;}
.y9_c00078{bottom:893.401785px;}
.y8_c00078{bottom:926.551935px;}
.y4_c00078{bottom:996.049935px;}
.y7_c00078{bottom:1074.452985px;}
.y6_c00078{bottom:1085.144985px;}
.y3_c00078{bottom:1085.501385px;}
.y5_c00078{bottom:1097.975385px;}
.h7_c00078{height:20.887891px;}
.he_c00078{height:22.736162px;}
.h4_c00078{height:23.128875px;}
.hf_c00078{height:28.911094px;}
.h10_c00078{height:29.117602px;}
.h2_c00078{height:33.035449px;}
.h6_c00078{height:34.280297px;}
.hb_c00078{height:47.083781px;}
.ha_c00078{height:49.358848px;}
.hd_c00078{height:67.321547px;}
.h5_c00078{height:69.386625px;}
.h9_c00078{height:69.568770px;}
.hc_c00078{height:74.232792px;}
.h8_c00078{height:76.953164px;}
.h3_c00078{height:85.503516px;}
.h1_c00078{height:1110.000000px;}
.h0_c00078{height:1263.000000px;}
.w1_c00078{width:733.500000px;}
.w0_c00078{width:892.500000px;}
.x0_c00078{left:0.000000px;}
.x2_c00078{left:18.769935px;}
.x38_c00078{left:48.445185px;}
.x12_c00078{left:49.930185px;}
.x7_c00078{left:51.439935px;}
.x1_c00078{left:79.500000px;}
.x3a_c00078{left:82.456635px;}
.x48_c00078{left:83.481285px;}
.x40_c00078{left:92.995185px;}
.x32_c00078{left:94.222785px;}
.x54_c00078{left:104.028735px;}
.x1d_c00078{left:105.097935px;}
.x13_c00078{left:116.349285px;}
.x2d_c00078{left:126.150285px;}
.x8_c00078{left:127.724385px;}
.x44_c00078{left:137.188785px;}
.x4f_c00078{left:147.509535px;}
.x14_c00078{left:148.529235px;}
.x2e_c00078{left:158.993535px;}
.x5e_c00078{left:160.532985px;}
.x19_c00078{left:170.012235px;}
.x3c_c00078{left:171.170535px;}
.x59_c00078{left:181.872435px;}
.x24_c00078{left:182.906985px;}
.x41_c00078{left:192.069435px;}
.x1e_c00078{left:193.297035px;}
.x46_c00078{left:204.701835px;}
.x39_c00078{left:215.398785px;}
.x1a_c00078{left:216.472935px;}
.x45_c00078{left:225.927435px;}
.x9_c00078{left:227.357985px;}
.x3d_c00078{left:237.832185px;}
.x25_c00078{left:249.271635px;}
.x50_c00078{left:250.964535px;}
.x49_c00078{left:259.636935px;}
.x15_c00078{left:260.770485px;}
.x51_c00078{left:269.447835px;}
.x4b_c00078{left:270.922935px;}
.x5a_c00078{left:280.496235px;}
.x26_c00078{left:282.090135px;}
.x27_c00078{left:291.901035px;}
.x16_c00078{left:293.643435px;}
.x2f_c00078{left:303.979035px;}
.x1f_c00078{left:315.537285px;}
.x3e_c00078{left:325.867935px;}
.xa_c00078{left:327.669735px;}
.x33_c00078{left:337.312335px;}
.x28_c00078{left:338.396385px;}
.x4a_c00078{left:347.143035px;}
.x20_c00078{left:348.949785px;}
.x5b_c00078{left:359.216085px;}
.xb_c00078{left:360.453585px;}
.x30_c00078{left:370.338735px;}
.x56_c00078{left:381.649485px;}
.xc_c00078{left:392.366235px;}
.x47_c00078{left:393.583935px;}
.x5c_c00078{left:403.414635px;}
.x34_c00078{left:404.597685px;}
.x3f_c00078{left:414.477885px;}
.x17_c00078{left:425.150085px;}
.x57_c00078{left:426.402435px;}
.x35_c00078{left:436.267785px;}
.x21_c00078{left:437.440935px;}
.x4d_c00078{left:447.613185px;}
.xd_c00078{left:459.532785px;}
.x29_c00078{left:469.655535px;}
.x42_c00078{left:470.917785px;}
.x5f_c00078{left:478.550685px;}
.x55_c00078{left:482.015685px;}
.x5d_c00078{left:491.791935px;}
.x36_c00078{left:493.410585px;}
.x31_c00078{left:504.122385px;}
.x37_c00078{left:514.680735px;}
.x4_c00078{left:523.481835px;}
.xe_c00078{left:526.387485px;}
.x2a_c00078{left:528.639735px;}
.x22_c00078{left:536.332035px;}
.xf_c00078{left:547.939785px;}
.x52_c00078{left:557.404185px;}
.x1b_c00078{left:558.517935px;}
.x4e_c00078{left:568.784235px;}
.x10_c00078{left:579.832635px;}
.x58_c00078{left:580.971135px;}
.x3b_c00078{left:583.203585px;}
.x18_c00078{left:592.469985px;}
.x4c_c00078{left:602.775885px;}
.x2b_c00078{left:603.830235px;}
.x3_c00078{left:613.829235px;}
.x23_c00078{left:625.615185px;}
.x1c_c00078{left:636.698235px;}
.x43_c00078{left:647.162535px;}
.x11_c00078{left:648.791085px;}
.x2c_c00078{left:658.399035px;}
.x5_c00078{left:665.863635px;}
.x6_c00078{left:667.388235px;}
.x53_c00078{left:669.452385px;}
.x60_c00078{left:697.132785px;}
@media print{
.v0_c00078{vertical-align:0.000000pt;}
.lsa_c00078{letter-spacing:-2.439360pt;}
.ls7_c00078{letter-spacing:-2.111789pt;}
.lsd_c00078{letter-spacing:-1.686643pt;}
.ls10_c00078{letter-spacing:-1.268467pt;}
.lsb_c00078{letter-spacing:-0.947866pt;}
.ls12_c00078{letter-spacing:-0.160301pt;}
.ls1_c00078{letter-spacing:0.000000pt;}
.lse_c00078{letter-spacing:0.411206pt;}
.lsc_c00078{letter-spacing:1.108166pt;}
.ls0_c00078{letter-spacing:1.498464pt;}
.ls5_c00078{letter-spacing:2.467238pt;}
.ls11_c00078{letter-spacing:2.474208pt;}
.ls8_c00078{letter-spacing:2.550874pt;}
.ls9_c00078{letter-spacing:2.766931pt;}
.lsf_c00078{letter-spacing:3.361609pt;}
.ls6_c00078{letter-spacing:3.415104pt;}
.ls4_c00078{letter-spacing:3.484800pt;}
.ls2_c00078{letter-spacing:3.802304pt;}
.ls3_c00078{letter-spacing:27.878400pt;}
.ws0_c00078{word-spacing:0.000000pt;}
._3_c00078{width:10.593792pt;}
._2_c00078{width:18.539136pt;}
._1_c00078{width:24.114816pt;}
._0_c00078{width:26.449632pt;}
._4_c00078{width:31.223808pt;}
.fs2_c00078{font-size:19.712000pt;}
.fsc_c00078{font-size:20.592000pt;}
.fsd_c00078{font-size:24.640000pt;}
.fse_c00078{font-size:24.816000pt;}
.fs5_c00078{font-size:27.878400pt;}
.fs4_c00078{font-size:29.216000pt;}
.fs0_c00078{font-size:29.920000pt;}
.fs9_c00078{font-size:40.128000pt;}
.fs8_c00078{font-size:44.704000pt;}
.fsb_c00078{font-size:57.376000pt;}
.fs3_c00078{font-size:59.136000pt;}
.fs7_c00078{font-size:63.008000pt;}
.fsa_c00078{font-size:67.232176pt;}
.fs6_c00078{font-size:69.696000pt;}
.fs1_c00078{font-size:77.440000pt;}
.y0_c00078{bottom:0.000000pt;}
.y24_c00078{bottom:30.330120pt;}
.y23_c00078{bottom:55.678520pt;}
.y1_c00078{bottom:68.000000pt;}
.y22_c00078{bottom:127.908920pt;}
.y21_c00078{bottom:150.401720pt;}
.y20_c00078{bottom:156.420920pt;}
.y1f_c00078{bottom:185.878920pt;}
.y1e_c00078{bottom:214.712120pt;}
.y1d_c00078{bottom:244.174520pt;}
.y1c_c00078{bottom:274.266120pt;}
.y1b_c00078{bottom:303.099320pt;}
.y1a_c00078{bottom:331.606920pt;}
.y19_c00078{bottom:360.118920pt;}
.y18_c00078{bottom:388.952120pt;}
.y17_c00078{bottom:417.464120pt;}
.y16_c00078{bottom:446.605320pt;}
.y15_c00078{bottom:480.824120pt;}
.y13_c00078{bottom:505.534520pt;}
.y14_c00078{bottom:510.920120pt;}
.y12_c00078{bottom:535.309320pt;}
.y11_c00078{bottom:564.776120pt;}
.y10_c00078{bottom:593.600520pt;}
.yf_c00078{bottom:622.429320pt;}
.ye_c00078{bottom:650.945720pt;}
.yd_c00078{bottom:679.457720pt;}
.yc_c00078{bottom:707.652920pt;}
.y2_c00078{bottom:728.240520pt;}
.yb_c00078{bottom:736.481720pt;}
.ya_c00078{bottom:765.627320pt;}
.y9_c00078{bottom:794.134920pt;}
.y8_c00078{bottom:823.601720pt;}
.y4_c00078{bottom:885.377720pt;}
.y7_c00078{bottom:955.069320pt;}
.y6_c00078{bottom:964.573320pt;}
.y3_c00078{bottom:964.890120pt;}
.y5_c00078{bottom:975.978120pt;}
.h7_c00078{height:18.567014pt;}
.he_c00078{height:20.209922pt;}
.h4_c00078{height:20.559000pt;}
.hf_c00078{height:25.698750pt;}
.h10_c00078{height:25.882313pt;}
.h2_c00078{height:29.364844pt;}
.h6_c00078{height:30.471375pt;}
.hb_c00078{height:41.852250pt;}
.ha_c00078{height:43.874531pt;}
.hd_c00078{height:59.841375pt;}
.h5_c00078{height:61.677000pt;}
.h9_c00078{height:61.838906pt;}
.hc_c00078{height:65.984704pt;}
.h8_c00078{height:68.402813pt;}
.h3_c00078{height:76.003125pt;}
.h1_c00078{height:986.666667pt;}
.h0_c00078{height:1122.666667pt;}
.w1_c00078{width:652.000000pt;}
.w0_c00078{width:793.333333pt;}
.x0_c00078{left:0.000000pt;}
.x2_c00078{left:16.684387pt;}
.x38_c00078{left:43.062387pt;}
.x12_c00078{left:44.382387pt;}
.x7_c00078{left:45.724387pt;}
.x1_c00078{left:70.666667pt;}
.x3a_c00078{left:73.294787pt;}
.x48_c00078{left:74.205587pt;}
.x40_c00078{left:82.662387pt;}
.x32_c00078{left:83.753587pt;}
.x54_c00078{left:92.469987pt;}
.x1d_c00078{left:93.420387pt;}
.x13_c00078{left:103.421587pt;}
.x2d_c00078{left:112.133587pt;}
.x8_c00078{left:113.532787pt;}
.x44_c00078{left:121.945587pt;}
.x4f_c00078{left:131.119587pt;}
.x14_c00078{left:132.025987pt;}
.x2e_c00078{left:141.327587pt;}
.x5e_c00078{left:142.695987pt;}
.x19_c00078{left:151.121987pt;}
.x3c_c00078{left:152.151587pt;}
.x59_c00078{left:161.664387pt;}
.x24_c00078{left:162.583987pt;}
.x41_c00078{left:170.728387pt;}
.x1e_c00078{left:171.819587pt;}
.x46_c00078{left:181.957187pt;}
.x39_c00078{left:191.465587pt;}
.x1a_c00078{left:192.420387pt;}
.x45_c00078{left:200.824387pt;}
.x9_c00078{left:202.095987pt;}
.x3d_c00078{left:211.406387pt;}
.x25_c00078{left:221.574787pt;}
.x50_c00078{left:223.079587pt;}
.x49_c00078{left:230.788387pt;}
.x15_c00078{left:231.795987pt;}
.x51_c00078{left:239.509187pt;}
.x4b_c00078{left:240.820387pt;}
.x5a_c00078{left:249.329987pt;}
.x26_c00078{left:250.746787pt;}
.x27_c00078{left:259.467587pt;}
.x16_c00078{left:261.016387pt;}
.x2f_c00078{left:270.203587pt;}
.x1f_c00078{left:280.477587pt;}
.x3e_c00078{left:289.660387pt;}
.xa_c00078{left:291.261987pt;}
.x33_c00078{left:299.833187pt;}
.x28_c00078{left:300.796787pt;}
.x4a_c00078{left:308.571587pt;}
.x20_c00078{left:310.177587pt;}
.x5b_c00078{left:319.303187pt;}
.xb_c00078{left:320.403187pt;}
.x30_c00078{left:329.189987pt;}
.x56_c00078{left:339.243987pt;}
.xc_c00078{left:348.769987pt;}
.x47_c00078{left:349.852387pt;}
.x5c_c00078{left:358.590787pt;}
.x34_c00078{left:359.642387pt;}
.x3f_c00078{left:368.424787pt;}
.x17_c00078{left:377.911187pt;}
.x57_c00078{left:379.024387pt;}
.x35_c00078{left:387.793587pt;}
.x21_c00078{left:388.836387pt;}
.x4d_c00078{left:397.878387pt;}
.xd_c00078{left:408.473587pt;}
.x29_c00078{left:417.471587pt;}
.x42_c00078{left:418.593587pt;}
.x5f_c00078{left:425.378387pt;}
.x55_c00078{left:428.458387pt;}
.x5d_c00078{left:437.148387pt;}
.x36_c00078{left:438.587187pt;}
.x31_c00078{left:448.108787pt;}
.x37_c00078{left:457.493987pt;}
.x4_c00078{left:465.317187pt;}
.xe_c00078{left:467.899987pt;}
.x2a_c00078{left:469.901987pt;}
.x22_c00078{left:476.739587pt;}
.xf_c00078{left:487.057587pt;}
.x52_c00078{left:495.470387pt;}
.x1b_c00078{left:496.460387pt;}
.x4e_c00078{left:505.585987pt;}
.x10_c00078{left:515.406787pt;}
.x58_c00078{left:516.418787pt;}
.x3b_c00078{left:518.403187pt;}
.x18_c00078{left:526.639987pt;}
.x4c_c00078{left:535.800787pt;}
.x2b_c00078{left:536.737987pt;}
.x3_c00078{left:545.625987pt;}
.x23_c00078{left:556.102387pt;}
.x1c_c00078{left:565.953987pt;}
.x43_c00078{left:575.255587pt;}
.x11_c00078{left:576.703187pt;}
.x2c_c00078{left:585.243587pt;}
.x5_c00078{left:591.878787pt;}
.x6_c00078{left:593.233987pt;}
.x53_c00078{left:595.068787pt;}
.x60_c00078{left:619.673587pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_665530cf172e719214662df9.woff2')format("woff");}.ff1_c00079{font-family:ff1_c00079;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00079;src:url('chunks/assets/font_19c37a195728792f68d1794f.woff2')format("woff");}.ff2_c00079{font-family:ff2_c00079;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00079;src:url('chunks/assets/font_d7a8bec137d6d37444efa2c9.woff2')format("woff");}.ff3_c00079{font-family:ff3_c00079;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00079;src:url('chunks/assets/font_92d601ab037577038b51cb21.woff2')format("woff");}.ff4_c00079{font-family:ff4_c00079;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00079;src:url('chunks/assets/font_ebd4c87a759ea640fe62c722.woff2')format("woff");}.ff5_c00079{font-family:ff5_c00079;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m6d_c00079{transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);}
.m1_c00079{transform:matrix(0.240315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240315,0.000000,0.000000,0.250000,0,0);}
.m5f_c00079{transform:matrix(0.240857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240857,0.000000,0.000000,0.250000,0,0);}
.m85_c00079{transform:matrix(0.249184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249184,0.000000,0.000000,0.250000,0,0);}
.m0_c00079{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00079{transform:matrix(0.250702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250702,0.000000,0.000000,0.250000,0,0);}
.m67_c00079{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.m13_c00079{transform:matrix(0.253513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253513,0.000000,0.000000,0.250000,0,0);}
.m24_c00079{transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);}
.m41_c00079{transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);}
.m18_c00079{transform:matrix(0.257891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257891,0.000000,0.000000,0.250000,0,0);}
.m9c_c00079{transform:matrix(0.258203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258203,0.000000,0.000000,0.250000,0,0);}
.m11_c00079{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m27_c00079{transform:matrix(0.258949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258949,0.000000,0.000000,0.250000,0,0);}
.m8a_c00079{transform:matrix(0.258963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258963,0.000000,0.000000,0.250000,0,0);}
.m86_c00079{transform:matrix(0.260198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260198,0.000000,0.000000,0.250000,0,0);}
.m74_c00079{transform:matrix(0.260228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260228,0.000000,0.000000,0.250000,0,0);}
.m87_c00079{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m16_c00079{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.m32_c00079{transform:matrix(0.261907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261907,0.000000,0.000000,0.250000,0,0);}
.m2f_c00079{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m2a_c00079{transform:matrix(0.263875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263875,0.000000,0.000000,0.250000,0,0);}
.m59_c00079{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m35_c00079{transform:matrix(0.264128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264128,0.000000,0.000000,0.250000,0,0);}
.m65_c00079{transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);}
.m33_c00079{transform:matrix(0.265694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265694,0.000000,0.000000,0.250000,0,0);}
.m8_c00079{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m68_c00079{transform:matrix(0.266963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266963,0.000000,0.000000,0.250000,0,0);}
.m28_c00079{transform:matrix(0.267728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267728,0.000000,0.000000,0.250000,0,0);}
.m14_c00079{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m1d_c00079{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.m3c_c00079{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m8c_c00079{transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);}
.m31_c00079{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m72_c00079{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00079{transform:matrix(0.273912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273912,0.000000,0.000000,0.250000,0,0);}
.me_c00079{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m10_c00079{transform:matrix(0.276438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276438,0.000000,0.000000,0.250000,0,0);}
.m77_c00079{transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);}
.m4b_c00079{transform:matrix(0.278158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278158,0.000000,0.000000,0.250000,0,0);}
.m88_c00079{transform:matrix(0.278950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278950,0.000000,0.000000,0.250000,0,0);}
.m2d_c00079{transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);}
.m64_c00079{transform:matrix(0.279578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279578,0.000000,0.000000,0.250000,0,0);}
.m1e_c00079{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.m7_c00079{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m73_c00079{transform:matrix(0.282440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282440,0.000000,0.000000,0.250000,0,0);}
.m2b_c00079{transform:matrix(0.282959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282959,0.000000,0.000000,0.250000,0,0);}
.m39_c00079{transform:matrix(0.283189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283189,0.000000,0.000000,0.250000,0,0);}
.ma_c00079{transform:matrix(0.283217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283217,0.000000,0.000000,0.250000,0,0);}
.m52_c00079{transform:matrix(0.284404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284404,0.000000,0.000000,0.250000,0,0);}
.m61_c00079{transform:matrix(0.284570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284570,0.000000,0.000000,0.250000,0,0);}
.m48_c00079{transform:matrix(0.284669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284669,0.000000,0.000000,0.250000,0,0);}
.m21_c00079{transform:matrix(0.284844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284844,0.000000,0.000000,0.250000,0,0);}
.m42_c00079{transform:matrix(0.284924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284924,0.000000,0.000000,0.250000,0,0);}
.m90_c00079{transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);}
.m89_c00079{transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);}
.m1f_c00079{transform:matrix(0.285806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285806,0.000000,0.000000,0.250000,0,0);}
.m2e_c00079{transform:matrix(0.286455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286455,0.000000,0.000000,0.250000,0,0);}
.m4c_c00079{transform:matrix(0.286698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286698,0.000000,0.000000,0.250000,0,0);}
.m75_c00079{transform:matrix(0.286764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286764,0.000000,0.000000,0.250000,0,0);}
.m25_c00079{transform:matrix(0.287688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287688,0.000000,0.000000,0.250000,0,0);}
.m60_c00079{transform:matrix(0.287855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287855,0.000000,0.000000,0.250000,0,0);}
.m8b_c00079{transform:matrix(0.288063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288063,0.000000,0.000000,0.250000,0,0);}
.m37_c00079{transform:matrix(0.288481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288481,0.000000,0.000000,0.250000,0,0);}
.m56_c00079{transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);}
.m70_c00079{transform:matrix(0.288617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288617,0.000000,0.000000,0.250000,0,0);}
.m6c_c00079{transform:matrix(0.288793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288793,0.000000,0.000000,0.250000,0,0);}
.m1b_c00079{transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);}
.m80_c00079{transform:matrix(0.289128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289128,0.000000,0.000000,0.250000,0,0);}
.m12_c00079{transform:matrix(0.289412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289412,0.000000,0.000000,0.250000,0,0);}
.m38_c00079{transform:matrix(0.290157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290157,0.000000,0.000000,0.250000,0,0);}
.m6b_c00079{transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);}
.m84_c00079{transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);}
.m26_c00079{transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);}
.m6_c00079{transform:matrix(0.290577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290577,0.000000,0.000000,0.250000,0,0);}
.m45_c00079{transform:matrix(0.291415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291415,0.000000,0.000000,0.250000,0,0);}
.m3b_c00079{transform:matrix(0.292316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292316,0.000000,0.000000,0.250000,0,0);}
.mc_c00079{transform:matrix(0.292551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292551,0.000000,0.000000,0.250000,0,0);}
.m36_c00079{transform:matrix(0.292867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292867,0.000000,0.000000,0.250000,0,0);}
.m6f_c00079{transform:matrix(0.293214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293214,0.000000,0.000000,0.250000,0,0);}
.m55_c00079{transform:matrix(0.293292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293292,0.000000,0.000000,0.250000,0,0);}
.m71_c00079{transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);}
.m69_c00079{transform:matrix(0.294467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294467,0.000000,0.000000,0.250000,0,0);}
.m15_c00079{transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);}
.m8e_c00079{transform:matrix(0.295037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295037,0.000000,0.000000,0.250000,0,0);}
.m96_c00079{transform:matrix(0.295421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295421,0.000000,0.000000,0.250000,0,0);}
.m9f_c00079{transform:matrix(0.296042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296042,0.000000,0.000000,0.250000,0,0);}
.m17_c00079{transform:matrix(0.296084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296084,0.000000,0.000000,0.250000,0,0);}
.m43_c00079{transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);}
.m9b_c00079{transform:matrix(0.297177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297177,0.000000,0.000000,0.250000,0,0);}
.ma0_c00079{transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);}
.m7e_c00079{transform:matrix(0.298588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298588,0.000000,0.000000,0.250000,0,0);}
.m81_c00079{transform:matrix(0.298790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298790,0.000000,0.000000,0.250000,0,0);}
.m44_c00079{transform:matrix(0.298840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298840,0.000000,0.000000,0.250000,0,0);}
.m79_c00079{transform:matrix(0.300015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300015,0.000000,0.000000,0.250000,0,0);}
.m78_c00079{transform:matrix(0.300441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300441,0.000000,0.000000,0.250000,0,0);}
.m7a_c00079{transform:matrix(0.301814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301814,0.000000,0.000000,0.250000,0,0);}
.mb_c00079{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m4a_c00079{transform:matrix(0.302709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302709,0.000000,0.000000,0.250000,0,0);}
.m9d_c00079{transform:matrix(0.303528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303528,0.000000,0.000000,0.250000,0,0);}
.m40_c00079{transform:matrix(0.303605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303605,0.000000,0.000000,0.250000,0,0);}
.m1c_c00079{transform:matrix(0.303892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303892,0.000000,0.000000,0.250000,0,0);}
.m47_c00079{transform:matrix(0.304360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304360,0.000000,0.000000,0.250000,0,0);}
.m98_c00079{transform:matrix(0.306902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306902,0.000000,0.000000,0.250000,0,0);}
.m82_c00079{transform:matrix(0.307477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307477,0.000000,0.000000,0.250000,0,0);}
.m2_c00079{transform:matrix(0.307567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307567,0.000000,0.000000,0.250000,0,0);}
.m6a_c00079{transform:matrix(0.308173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308173,0.000000,0.000000,0.250000,0,0);}
.m92_c00079{transform:matrix(0.308184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308184,0.000000,0.000000,0.250000,0,0);}
.m3a_c00079{transform:matrix(0.308338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308338,0.000000,0.000000,0.250000,0,0);}
.m8f_c00079{transform:matrix(0.308360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308360,0.000000,0.000000,0.250000,0,0);}
.m3f_c00079{transform:matrix(0.308513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308513,0.000000,0.000000,0.250000,0,0);}
.m4e_c00079{transform:matrix(0.308569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308569,0.000000,0.000000,0.250000,0,0);}
.m34_c00079{transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);}
.m91_c00079{transform:matrix(0.310202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310202,0.000000,0.000000,0.250000,0,0);}
.m5c_c00079{transform:matrix(0.310331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310331,0.000000,0.000000,0.250000,0,0);}
.m66_c00079{transform:matrix(0.311943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311943,0.000000,0.000000,0.250000,0,0);}
.m50_c00079{transform:matrix(0.312526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312526,0.000000,0.000000,0.250000,0,0);}
.m8d_c00079{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.m53_c00079{transform:matrix(0.313425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313425,0.000000,0.000000,0.250000,0,0);}
.m4_c00079{transform:matrix(0.314543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314543,0.000000,0.000000,0.250000,0,0);}
.m51_c00079{transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);}
.m94_c00079{transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);}
.m6e_c00079{transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);}
.m63_c00079{transform:matrix(0.316807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316807,0.000000,0.000000,0.250000,0,0);}
.m2c_c00079{transform:matrix(0.318082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318082,0.000000,0.000000,0.250000,0,0);}
.m5d_c00079{transform:matrix(0.319299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319299,0.000000,0.000000,0.250000,0,0);}
.m95_c00079{transform:matrix(0.319482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319482,0.000000,0.000000,0.250000,0,0);}
.m4d_c00079{transform:matrix(0.321284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321284,0.000000,0.000000,0.250000,0,0);}
.m58_c00079{transform:matrix(0.321386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321386,0.000000,0.000000,0.250000,0,0);}
.m30_c00079{transform:matrix(0.321492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321492,0.000000,0.000000,0.250000,0,0);}
.m7b_c00079{transform:matrix(0.321598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321598,0.000000,0.000000,0.250000,0,0);}
.m23_c00079{transform:matrix(0.321699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321699,0.000000,0.000000,0.250000,0,0);}
.m97_c00079{transform:matrix(0.322139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322139,0.000000,0.000000,0.250000,0,0);}
.m29_c00079{transform:matrix(0.322424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322424,0.000000,0.000000,0.250000,0,0);}
.m7f_c00079{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.m46_c00079{transform:matrix(0.324174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324174,0.000000,0.000000,0.250000,0,0);}
.m99_c00079{transform:matrix(0.325336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325336,0.000000,0.000000,0.250000,0,0);}
.m3e_c00079{transform:matrix(0.326627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326627,0.000000,0.000000,0.250000,0,0);}
.m57_c00079{transform:matrix(0.326895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326895,0.000000,0.000000,0.250000,0,0);}
.m9e_c00079{transform:matrix(0.326965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326965,0.000000,0.000000,0.250000,0,0);}
.mf_c00079{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m7d_c00079{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.m22_c00079{transform:matrix(0.327730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327730,0.000000,0.000000,0.250000,0,0);}
.m83_c00079{transform:matrix(0.329535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329535,0.000000,0.000000,0.250000,0,0);}
.m19_c00079{transform:matrix(0.329886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329886,0.000000,0.000000,0.250000,0,0);}
.m5_c00079{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m5a_c00079{transform:matrix(0.335434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335434,0.000000,0.000000,0.250000,0,0);}
.m93_c00079{transform:matrix(0.337410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337410,0.000000,0.000000,0.250000,0,0);}
.m9a_c00079{transform:matrix(0.338602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338602,0.000000,0.000000,0.250000,0,0);}
.m4f_c00079{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m1a_c00079{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.m7c_c00079{transform:matrix(0.343930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343930,0.000000,0.000000,0.250000,0,0);}
.m9_c00079{transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);}
.m3_c00079{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m20_c00079{transform:matrix(0.350422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350422,0.000000,0.000000,0.250000,0,0);}
.m3d_c00079{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m76_c00079{transform:matrix(0.357520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357520,0.000000,0.000000,0.250000,0,0);}
.m62_c00079{transform:matrix(0.359351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359351,0.000000,0.000000,0.250000,0,0);}
.md_c00079{transform:matrix(0.359480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359480,0.000000,0.000000,0.250000,0,0);}
.m54_c00079{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m49_c00079{transform:matrix(0.368506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368506,0.000000,0.000000,0.250000,0,0);}
.ma1_c00079{transform:matrix(0.375491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375491,0.000000,0.000000,0.250000,0,0);}
.v0_c00079{vertical-align:0.000000px;}
.ls1_c00079{letter-spacing:-3.146227px;}
.ls6_c00079{letter-spacing:-2.744280px;}
.ls5_c00079{letter-spacing:-2.375762px;}
.ls4_c00079{letter-spacing:-1.364299px;}
.ls9_c00079{letter-spacing:-0.392040px;}
.ls0_c00079{letter-spacing:0.000000px;}
.ls8_c00079{letter-spacing:2.783484px;}
.ls3_c00079{letter-spacing:2.932459px;}
.ls2_c00079{letter-spacing:3.920400px;}
.ls7_c00079{letter-spacing:31.363200px;}
.sc__c00079{text-shadow:none;}
.sc0_c00079{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00079{-webkit-text-stroke:0px transparent;}
.sc0_c00079{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00079{word-spacing:0.000000px;}
._3_c00079{width:1.228392px;}
._2_c00079{width:10.507068px;}
._0_c00079{width:26.823456px;}
._1_c00079{width:242.860068px;}
._4_c00079{width:590.911992px;}
.fc0_c00079{color:transparent;}
.fs4_c00079{font-size:22.176000px;}
.fse_c00079{font-size:27.720000px;}
.fsc_c00079{font-size:27.918000px;}
.fsa_c00079{font-size:31.363200px;}
.fs9_c00079{font-size:32.868000px;}
.fs3_c00079{font-size:33.264000px;}
.fs8_c00079{font-size:37.818000px;}
.fs7_c00079{font-size:38.016198px;}
.fs2_c00079{font-size:64.548000px;}
.fsd_c00079{font-size:70.884000px;}
.fs5_c00079{font-size:74.844000px;}
.fsb_c00079{font-size:76.824000px;}
.fs1_c00079{font-size:78.408000px;}
.fs6_c00079{font-size:78.804000px;}
.fs0_c00079{font-size:89.892198px;}
.y0_c00079{bottom:0.000000px;}
.y20_c00079{bottom:58.000185px;}
.y1_c00079{bottom:76.500000px;}
.y1f_c00079{bottom:144.253935px;}
.y1e_c00079{bottom:175.973535px;}
.y1d_c00079{bottom:204.485535px;}
.y1c_c00079{bottom:210.182985px;}
.y1b_c00079{bottom:243.333135px;}
.y1a_c00079{bottom:277.186185px;}
.y19_c00079{bottom:309.979935px;}
.y18_c00079{bottom:342.055935px;}
.y14_c00079{bottom:367.711785px;}
.y13_c00079{bottom:375.557535px;}
.y12_c00079{bottom:407.633535px;}
.y17_c00079{bottom:420.458985px;}
.y16_c00079{bottom:431.155935px;}
.y15_c00079{bottom:447.188985px;}
.y11_c00079{bottom:472.141935px;}
.y10_c00079{bottom:504.212985px;}
.yf_c00079{bottom:536.645385px;}
.ye_c00079{bottom:569.077785px;}
.yd_c00079{bottom:601.510185px;}
.yc_c00079{bottom:633.591135px;}
.yb_c00079{bottom:666.023535px;}
.ya_c00079{bottom:698.450985px;}
.y9_c00079{bottom:730.883385px;}
.y8_c00079{bottom:828.185535px;}
.y7_c00079{bottom:840.654585px;}
.y6_c00079{bottom:860.256585px;}
.y5_c00079{bottom:893.045385px;}
.y4_c00079{bottom:919.775385px;}
.y3_c00079{bottom:927.259785px;}
.y2_c00079{bottom:1085.857785px;}
.hc_c00079{height:20.887891px;}
.h6_c00079{height:23.128875px;}
.h10_c00079{height:28.911094px;}
.he_c00079{height:29.117602px;}
.hb_c00079{height:34.280297px;}
.h4_c00079{height:34.693313px;}
.ha_c00079{height:37.116299px;}
.h9_c00079{height:39.649707px;}
.h5_c00079{height:67.321547px;}
.hf_c00079{height:69.568770px;}
.h7_c00079{height:73.455293px;}
.hd_c00079{height:75.398555px;}
.h3_c00079{height:76.953164px;}
.h8_c00079{height:77.341816px;}
.h2_c00079{height:88.224276px;}
.h1_c00079{height:1110.000000px;}
.h0_c00079{height:1263.000000px;}
.w1_c00079{width:733.500000px;}
.w0_c00079{width:892.500000px;}
.x0_c00079{left:0.000000px;}
.x11_c00079{left:55.889985px;}
.x4_c00079{left:57.493785px;}
.x49_c00079{left:59.973735px;}
.x1_c00079{left:79.500000px;}
.x35_c00079{left:89.619285px;}
.x45_c00079{left:91.000335px;}
.x21_c00079{left:99.445035px;}
.x12_c00079{left:101.350785px;}
.x58_c00079{left:102.811035px;}
.x18_c00079{left:112.765485px;}
.x27_c00079{left:123.294135px;}
.x5_c00079{left:134.134635px;}
.x3b_c00079{left:135.218685px;}
.x19_c00079{left:145.183035px;}
.x4f_c00079{left:146.984835px;}
.x54_c00079{left:156.374985px;}
.x6_c00079{left:166.903635px;}
.x3c_c00079{left:167.943135px;}
.x1a_c00079{left:177.090735px;}
.x41_c00079{left:178.154985px;}
.x59_c00079{left:180.120135px;}
.x4c_c00079{left:190.450785px;}
.x24_c00079{left:200.192385px;}
.x55_c00079{left:201.875385px;}
.x39_c00079{left:212.537685px;}
.x51_c00079{left:223.447485px;}
.x25_c00079{left:233.481135px;}
.x22_c00079{left:244.831485px;}
.x3f_c00079{left:246.370935px;}
.x2c_c00079{left:255.221535px;}
.x7_c00079{left:267.240135px;}
.x36_c00079{left:277.253985px;}
.x28_c00079{left:279.144885px;}
.x8_c00079{left:289.836885px;}
.x31_c00079{left:300.568485px;}
.x29_c00079{left:310.686285px;}
.x37_c00079{left:311.884185px;}
.x50_c00079{left:313.047435px;}
.x9_c00079{left:321.977235px;}
.x3d_c00079{left:323.066235px;}
.x5a_c00079{left:324.076035px;}
.x23_c00079{left:333.273135px;}
.x2d_c00079{left:347.227185px;}
.x13_c00079{left:356.018385px;}
.x3e_c00079{left:357.211335px;}
.x1b_c00079{left:366.878685px;}
.x52_c00079{left:368.398335px;}
.xa_c00079{left:399.984285px;}
.x5b_c00079{left:401.469285px;}
.x2a_c00079{left:411.097035px;}
.x32_c00079{left:412.443435px;}
.x14_c00079{left:422.833485px;}
.x3a_c00079{left:433.188885px;}
.x5c_c00079{left:435.441135px;}
.x1c_c00079{left:443.880885px;}
.x56_c00079{left:445.182735px;}
.x2e_c00079{left:454.642185px;}
.xb_c00079{left:455.978685px;}
.x20_c00079{left:464.675835px;}
.x1d_c00079{left:466.660785px;}
.x42_c00079{left:469.472385px;}
.x15_c00079{left:487.534935px;}
.xc_c00079{left:489.054585px;}
.x1e_c00079{left:498.934785px;}
.x46_c00079{left:501.241485px;}
.x2f_c00079{left:510.527685px;}
.x4d_c00079{left:512.250285px;}
.x10_c00079{left:520.635585px;}
.xd_c00079{left:521.907735px;}
.x5d_c00079{left:523.199685px;}
.x47_c00079{left:531.921585px;}
.x33_c00079{left:533.347185px;}
.x30_c00079{left:543.821385px;}
.x40_c00079{left:545.093535px;}
.x2b_c00079{left:554.711385px;}
.x16_c00079{left:565.546935px;}
.x5e_c00079{left:567.071535px;}
.x1f_c00079{left:576.783435px;}
.x4a_c00079{left:577.852635px;}
.x17_c00079{left:587.510085px;}
.x57_c00079{left:588.712935px;}
.x26_c00079{left:599.617785px;}
.xe_c00079{left:621.229485px;}
.x48_c00079{left:622.768935px;}
.x2_c00079{left:631.995735px;}
.x53_c00079{left:633.475785px;}
.x3_c00079{left:643.435185px;}
.xf_c00079{left:654.844935px;}
.x4b_c00079{left:655.889385px;}
.x34_c00079{left:666.962535px;}
.x38_c00079{left:669.630585px;}
.x4e_c00079{left:671.056185px;}
.x43_c00079{left:674.941935px;}
.x44_c00079{left:676.298235px;}
@media print{
.v0_c00079{vertical-align:0.000000pt;}
.ls1_c00079{letter-spacing:-2.796646pt;}
.ls6_c00079{letter-spacing:-2.439360pt;}
.ls5_c00079{letter-spacing:-2.111789pt;}
.ls4_c00079{letter-spacing:-1.212710pt;}
.ls9_c00079{letter-spacing:-0.348480pt;}
.ls0_c00079{letter-spacing:0.000000pt;}
.ls8_c00079{letter-spacing:2.474208pt;}
.ls3_c00079{letter-spacing:2.606630pt;}
.ls2_c00079{letter-spacing:3.484800pt;}
.ls7_c00079{letter-spacing:27.878400pt;}
.ws0_c00079{word-spacing:0.000000pt;}
._3_c00079{width:1.091904pt;}
._2_c00079{width:9.339616pt;}
._0_c00079{width:23.843072pt;}
._1_c00079{width:215.875616pt;}
._4_c00079{width:525.255104pt;}
.fs4_c00079{font-size:19.712000pt;}
.fse_c00079{font-size:24.640000pt;}
.fsc_c00079{font-size:24.816000pt;}
.fsa_c00079{font-size:27.878400pt;}
.fs9_c00079{font-size:29.216000pt;}
.fs3_c00079{font-size:29.568000pt;}
.fs8_c00079{font-size:33.616000pt;}
.fs7_c00079{font-size:33.792176pt;}
.fs2_c00079{font-size:57.376000pt;}
.fsd_c00079{font-size:63.008000pt;}
.fs5_c00079{font-size:66.528000pt;}
.fsb_c00079{font-size:68.288000pt;}
.fs1_c00079{font-size:69.696000pt;}
.fs6_c00079{font-size:70.048000pt;}
.fs0_c00079{font-size:79.904176pt;}
.y0_c00079{bottom:0.000000pt;}
.y20_c00079{bottom:51.555720pt;}
.y1_c00079{bottom:68.000000pt;}
.y1f_c00079{bottom:128.225720pt;}
.y1e_c00079{bottom:156.420920pt;}
.y1d_c00079{bottom:181.764920pt;}
.y1c_c00079{bottom:186.829320pt;}
.y1b_c00079{bottom:216.296120pt;}
.y1a_c00079{bottom:246.387720pt;}
.y19_c00079{bottom:275.537720pt;}
.y18_c00079{bottom:304.049720pt;}
.y14_c00079{bottom:326.854920pt;}
.y13_c00079{bottom:333.828920pt;}
.y12_c00079{bottom:362.340920pt;}
.y17_c00079{bottom:373.741320pt;}
.y16_c00079{bottom:383.249720pt;}
.y15_c00079{bottom:397.501320pt;}
.y11_c00079{bottom:419.681720pt;}
.y10_c00079{bottom:448.189320pt;}
.yf_c00079{bottom:477.018120pt;}
.ye_c00079{bottom:505.846920pt;}
.yd_c00079{bottom:534.675720pt;}
.yc_c00079{bottom:563.192120pt;}
.yb_c00079{bottom:592.020920pt;}
.ya_c00079{bottom:620.845320pt;}
.y9_c00079{bottom:649.674120pt;}
.y8_c00079{bottom:736.164920pt;}
.y7_c00079{bottom:747.248520pt;}
.y6_c00079{bottom:764.672520pt;}
.y5_c00079{bottom:793.818120pt;}
.y4_c00079{bottom:817.578120pt;}
.y3_c00079{bottom:824.230920pt;}
.y2_c00079{bottom:965.206920pt;}
.hc_c00079{height:18.567014pt;}
.h6_c00079{height:20.559000pt;}
.h10_c00079{height:25.698750pt;}
.he_c00079{height:25.882313pt;}
.hb_c00079{height:30.471375pt;}
.h4_c00079{height:30.838500pt;}
.ha_c00079{height:32.992266pt;}
.h9_c00079{height:35.244184pt;}
.h5_c00079{height:59.841375pt;}
.hf_c00079{height:61.838906pt;}
.h7_c00079{height:65.293594pt;}
.hd_c00079{height:67.020938pt;}
.h3_c00079{height:68.402813pt;}
.h8_c00079{height:68.748281pt;}
.h2_c00079{height:78.421579pt;}
.h1_c00079{height:986.666667pt;}
.h0_c00079{height:1122.666667pt;}
.w1_c00079{width:652.000000pt;}
.w0_c00079{width:793.333333pt;}
.x0_c00079{left:0.000000pt;}
.x11_c00079{left:49.679987pt;}
.x4_c00079{left:51.105587pt;}
.x49_c00079{left:53.309987pt;}
.x1_c00079{left:70.666667pt;}
.x35_c00079{left:79.661587pt;}
.x45_c00079{left:80.889187pt;}
.x21_c00079{left:88.395587pt;}
.x12_c00079{left:90.089587pt;}
.x58_c00079{left:91.387587pt;}
.x18_c00079{left:100.235987pt;}
.x27_c00079{left:109.594787pt;}
.x5_c00079{left:119.230787pt;}
.x3b_c00079{left:120.194387pt;}
.x19_c00079{left:129.051587pt;}
.x4f_c00079{left:130.653187pt;}
.x54_c00079{left:138.999987pt;}
.x6_c00079{left:148.358787pt;}
.x3c_c00079{left:149.282787pt;}
.x1a_c00079{left:157.413987pt;}
.x41_c00079{left:158.359987pt;}
.x59_c00079{left:160.106787pt;}
.x4c_c00079{left:169.289587pt;}
.x24_c00079{left:177.948787pt;}
.x55_c00079{left:179.444787pt;}
.x39_c00079{left:188.922387pt;}
.x51_c00079{left:198.619987pt;}
.x25_c00079{left:207.538787pt;}
.x22_c00079{left:217.627987pt;}
.x3f_c00079{left:218.996387pt;}
.x2c_c00079{left:226.863587pt;}
.x7_c00079{left:237.546787pt;}
.x36_c00079{left:246.447987pt;}
.x28_c00079{left:248.128787pt;}
.x8_c00079{left:257.632787pt;}
.x31_c00079{left:267.171987pt;}
.x29_c00079{left:276.165587pt;}
.x37_c00079{left:277.230387pt;}
.x50_c00079{left:278.264387pt;}
.x9_c00079{left:286.201987pt;}
.x3d_c00079{left:287.169987pt;}
.x5a_c00079{left:288.067587pt;}
.x23_c00079{left:296.242787pt;}
.x2d_c00079{left:308.646387pt;}
.x13_c00079{left:316.460787pt;}
.x3e_c00079{left:317.521187pt;}
.x1b_c00079{left:326.114387pt;}
.x52_c00079{left:327.465187pt;}
.xa_c00079{left:355.541587pt;}
.x5b_c00079{left:356.861587pt;}
.x2a_c00079{left:365.419587pt;}
.x32_c00079{left:366.616387pt;}
.x14_c00079{left:375.851987pt;}
.x3a_c00079{left:385.056787pt;}
.x5c_c00079{left:387.058787pt;}
.x1c_c00079{left:394.560787pt;}
.x56_c00079{left:395.717987pt;}
.x2e_c00079{left:404.126387pt;}
.xb_c00079{left:405.314387pt;}
.x20_c00079{left:413.045187pt;}
.x1d_c00079{left:414.809587pt;}
.x42_c00079{left:417.308787pt;}
.x15_c00079{left:433.364387pt;}
.xc_c00079{left:434.715187pt;}
.x1e_c00079{left:443.497587pt;}
.x46_c00079{left:445.547987pt;}
.x2f_c00079{left:453.802387pt;}
.x4d_c00079{left:455.333587pt;}
.x10_c00079{left:462.787187pt;}
.xd_c00079{left:463.917987pt;}
.x5d_c00079{left:465.066387pt;}
.x47_c00079{left:472.819187pt;}
.x33_c00079{left:474.086387pt;}
.x30_c00079{left:483.396787pt;}
.x40_c00079{left:484.527587pt;}
.x2b_c00079{left:493.076787pt;}
.x16_c00079{left:502.708387pt;}
.x5e_c00079{left:504.063587pt;}
.x1f_c00079{left:512.696387pt;}
.x4a_c00079{left:513.646787pt;}
.x17_c00079{left:522.231187pt;}
.x57_c00079{left:523.300387pt;}
.x26_c00079{left:532.993587pt;}
.xe_c00079{left:552.203987pt;}
.x48_c00079{left:553.572387pt;}
.x2_c00079{left:561.773987pt;}
.x53_c00079{left:563.089587pt;}
.x3_c00079{left:571.942387pt;}
.xf_c00079{left:582.084387pt;}
.x4b_c00079{left:583.012787pt;}
.x34_c00079{left:592.855587pt;}
.x38_c00079{left:595.227187pt;}
.x4e_c00079{left:596.494387pt;}
.x43_c00079{left:599.948387pt;}
.x44_c00079{left:601.153987pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9905c1136c01126bd56b8be4.woff2')format("woff");}.ff1_c00080{font-family:ff1_c00080;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00080;src:url('chunks/assets/font_a48d2d35e4fdc4ff248ae102.woff2')format("woff");}.ff2_c00080{font-family:ff2_c00080;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00080;src:url('chunks/assets/font_63de36a4771e26c4a8ad1331.woff2')format("woff");}.ff3_c00080{font-family:ff3_c00080;line-height:0.666000;font-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_c00080{transform:matrix(0.209325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209325,0.000000,0.000000,0.250000,0,0);}
.m9d_c00080{transform:matrix(0.240857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240857,0.000000,0.000000,0.250000,0,0);}
.m1_c00080{transform:matrix(0.247962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247962,0.000000,0.000000,0.250000,0,0);}
.m0_c00080{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m58_c00080{transform:matrix(0.252155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252155,0.000000,0.000000,0.250000,0,0);}
.m77_c00080{transform:matrix(0.253847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253847,0.000000,0.000000,0.250000,0,0);}
.m89_c00080{transform:matrix(0.253946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253946,0.000000,0.000000,0.250000,0,0);}
.m34_c00080{transform:matrix(0.255538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255538,0.000000,0.000000,0.250000,0,0);}
.m57_c00080{transform:matrix(0.255557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255557,0.000000,0.000000,0.250000,0,0);}
.m88_c00080{transform:matrix(0.256542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256542,0.000000,0.000000,0.250000,0,0);}
.m1b_c00080{transform:matrix(0.257987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257987,0.000000,0.000000,0.250000,0,0);}
.m98_c00080{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m63_c00080{transform:matrix(0.258997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258997,0.000000,0.000000,0.250000,0,0);}
.m73_c00080{transform:matrix(0.259633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259633,0.000000,0.000000,0.250000,0,0);}
.ma_c00080{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m66_c00080{transform:matrix(0.262398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262398,0.000000,0.000000,0.250000,0,0);}
.m4a_c00080{transform:matrix(0.262580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262580,0.000000,0.000000,0.250000,0,0);}
.m26_c00080{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m2d_c00080{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m13_c00080{transform:matrix(0.265237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265237,0.000000,0.000000,0.250000,0,0);}
.m4e_c00080{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m54_c00080{transform:matrix(0.266384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266384,0.000000,0.000000,0.250000,0,0);}
.m17_c00080{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.m44_c00080{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m67_c00080{transform:matrix(0.267954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267954,0.000000,0.000000,0.250000,0,0);}
.m74_c00080{transform:matrix(0.268207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268207,0.000000,0.000000,0.250000,0,0);}
.m41_c00080{transform:matrix(0.268278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268278,0.000000,0.000000,0.250000,0,0);}
.m2e_c00080{transform:matrix(0.268966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268966,0.000000,0.000000,0.250000,0,0);}
.mb_c00080{transform:matrix(0.269234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269234,0.000000,0.000000,0.250000,0,0);}
.m49_c00080{transform:matrix(0.269336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269336,0.000000,0.000000,0.250000,0,0);}
.m94_c00080{transform:matrix(0.270977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270977,0.000000,0.000000,0.250000,0,0);}
.m7d_c00080{transform:matrix(0.270979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270979,0.000000,0.000000,0.250000,0,0);}
.m1a_c00080{transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);}
.m1d_c00080{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m95_c00080{transform:matrix(0.272813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272813,0.000000,0.000000,0.250000,0,0);}
.m68_c00080{transform:matrix(0.273698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273698,0.000000,0.000000,0.250000,0,0);}
.m2_c00080{transform:matrix(0.273830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273830,0.000000,0.000000,0.250000,0,0);}
.m79_c00080{transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);}
.me_c00080{transform:matrix(0.274348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274348,0.000000,0.000000,0.250000,0,0);}
.m2b_c00080{transform:matrix(0.274422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274422,0.000000,0.000000,0.250000,0,0);}
.m6_c00080{transform:matrix(0.274588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274588,0.000000,0.000000,0.250000,0,0);}
.m1c_c00080{transform:matrix(0.275169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275169,0.000000,0.000000,0.250000,0,0);}
.m7b_c00080{transform:matrix(0.275545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275545,0.000000,0.000000,0.250000,0,0);}
.m31_c00080{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m4f_c00080{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m78_c00080{transform:matrix(0.277612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277612,0.000000,0.000000,0.250000,0,0);}
.m47_c00080{transform:matrix(0.277657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277657,0.000000,0.000000,0.250000,0,0);}
.m70_c00080{transform:matrix(0.278158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278158,0.000000,0.000000,0.250000,0,0);}
.m29_c00080{transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);}
.ma2_c00080{transform:matrix(0.280224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280224,0.000000,0.000000,0.250000,0,0);}
.m8c_c00080{transform:matrix(0.280971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280971,0.000000,0.000000,0.250000,0,0);}
.m30_c00080{transform:matrix(0.282215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282215,0.000000,0.000000,0.250000,0,0);}
.m7e_c00080{transform:matrix(0.282439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282439,0.000000,0.000000,0.250000,0,0);}
.m85_c00080{transform:matrix(0.282587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282587,0.000000,0.000000,0.250000,0,0);}
.m21_c00080{transform:matrix(0.283070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283070,0.000000,0.000000,0.250000,0,0);}
.m84_c00080{transform:matrix(0.284116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284116,0.000000,0.000000,0.250000,0,0);}
.mc_c00080{transform:matrix(0.284924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284924,0.000000,0.000000,0.250000,0,0);}
.m87_c00080{transform:matrix(0.285189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285189,0.000000,0.000000,0.250000,0,0);}
.ma0_c00080{transform:matrix(0.285265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285265,0.000000,0.000000,0.250000,0,0);}
.m6f_c00080{transform:matrix(0.285552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285552,0.000000,0.000000,0.250000,0,0);}
.m14_c00080{transform:matrix(0.285745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285745,0.000000,0.000000,0.250000,0,0);}
.m3a_c00080{transform:matrix(0.286006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286006,0.000000,0.000000,0.250000,0,0);}
.mf_c00080{transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);}
.m32_c00080{transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);}
.md_c00080{transform:matrix(0.289171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289171,0.000000,0.000000,0.250000,0,0);}
.m39_c00080{transform:matrix(0.289480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289480,0.000000,0.000000,0.250000,0,0);}
.m2a_c00080{transform:matrix(0.290210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290210,0.000000,0.000000,0.250000,0,0);}
.m9e_c00080{transform:matrix(0.290255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290255,0.000000,0.000000,0.250000,0,0);}
.m50_c00080{transform:matrix(0.290656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290656,0.000000,0.000000,0.250000,0,0);}
.m60_c00080{transform:matrix(0.290972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290972,0.000000,0.000000,0.250000,0,0);}
.m1f_c00080{transform:matrix(0.290977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290977,0.000000,0.000000,0.250000,0,0);}
.m6e_c00080{transform:matrix(0.291008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291008,0.000000,0.000000,0.250000,0,0);}
.m2f_c00080{transform:matrix(0.292236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292236,0.000000,0.000000,0.250000,0,0);}
.m6a_c00080{transform:matrix(0.293147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293147,0.000000,0.000000,0.250000,0,0);}
.m40_c00080{transform:matrix(0.293644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293644,0.000000,0.000000,0.250000,0,0);}
.m5_c00080{transform:matrix(0.294480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294480,0.000000,0.000000,0.250000,0,0);}
.m16_c00080{transform:matrix(0.294614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294614,0.000000,0.000000,0.250000,0,0);}
.m71_c00080{transform:matrix(0.294730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294730,0.000000,0.000000,0.250000,0,0);}
.m97_c00080{transform:matrix(0.296027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296027,0.000000,0.000000,0.250000,0,0);}
.m69_c00080{transform:matrix(0.296494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296494,0.000000,0.000000,0.250000,0,0);}
.m9c_c00080{transform:matrix(0.296765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296765,0.000000,0.000000,0.250000,0,0);}
.m91_c00080{transform:matrix(0.297085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297085,0.000000,0.000000,0.250000,0,0);}
.m20_c00080{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m5c_c00080{transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);}
.m81_c00080{transform:matrix(0.298530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298530,0.000000,0.000000,0.250000,0,0);}
.m86_c00080{transform:matrix(0.298790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298790,0.000000,0.000000,0.250000,0,0);}
.m10_c00080{transform:matrix(0.299343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299343,0.000000,0.000000,0.250000,0,0);}
.m90_c00080{transform:matrix(0.299395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299395,0.000000,0.000000,0.250000,0,0);}
.m46_c00080{transform:matrix(0.299520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299520,0.000000,0.000000,0.250000,0,0);}
.m35_c00080{transform:matrix(0.300146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300146,0.000000,0.000000,0.250000,0,0);}
.m36_c00080{transform:matrix(0.300280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300280,0.000000,0.000000,0.250000,0,0);}
.m80_c00080{transform:matrix(0.300744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300744,0.000000,0.000000,0.250000,0,0);}
.m1e_c00080{transform:matrix(0.300945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300945,0.000000,0.000000,0.250000,0,0);}
.m5e_c00080{transform:matrix(0.301688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301688,0.000000,0.000000,0.250000,0,0);}
.m8e_c00080{transform:matrix(0.301981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301981,0.000000,0.000000,0.250000,0,0);}
.m18_c00080{transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);}
.m38_c00080{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m8d_c00080{transform:matrix(0.302966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302966,0.000000,0.000000,0.250000,0,0);}
.m6b_c00080{transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);}
.m4_c00080{transform:matrix(0.304443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304443,0.000000,0.000000,0.250000,0,0);}
.m33_c00080{transform:matrix(0.305129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305129,0.000000,0.000000,0.250000,0,0);}
.m72_c00080{transform:matrix(0.305149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305149,0.000000,0.000000,0.250000,0,0);}
.m62_c00080{transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);}
.m92_c00080{transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);}
.m23_c00080{transform:matrix(0.305746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305746,0.000000,0.000000,0.250000,0,0);}
.m64_c00080{transform:matrix(0.305777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305777,0.000000,0.000000,0.250000,0,0);}
.m42_c00080{transform:matrix(0.306092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306092,0.000000,0.000000,0.250000,0,0);}
.m8f_c00080{transform:matrix(0.308088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308088,0.000000,0.000000,0.250000,0,0);}
.m4d_c00080{transform:matrix(0.308144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308144,0.000000,0.000000,0.250000,0,0);}
.m8_c00080{transform:matrix(0.308312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308312,0.000000,0.000000,0.250000,0,0);}
.m59_c00080{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m53_c00080{transform:matrix(0.309847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309847,0.000000,0.000000,0.250000,0,0);}
.m3d_c00080{transform:matrix(0.309919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309919,0.000000,0.000000,0.250000,0,0);}
.m5b_c00080{transform:matrix(0.310242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310242,0.000000,0.000000,0.250000,0,0);}
.m93_c00080{transform:matrix(0.311143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311143,0.000000,0.000000,0.250000,0,0);}
.m3b_c00080{transform:matrix(0.311211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311211,0.000000,0.000000,0.250000,0,0);}
.m43_c00080{transform:matrix(0.311858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311858,0.000000,0.000000,0.250000,0,0);}
.m7c_c00080{transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);}
.m48_c00080{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.m96_c00080{transform:matrix(0.312732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312732,0.000000,0.000000,0.250000,0,0);}
.m55_c00080{transform:matrix(0.312809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312809,0.000000,0.000000,0.250000,0,0);}
.m7_c00080{transform:matrix(0.312852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312852,0.000000,0.000000,0.250000,0,0);}
.m56_c00080{transform:matrix(0.312932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312932,0.000000,0.000000,0.250000,0,0);}
.m5d_c00080{transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);}
.m9_c00080{transform:matrix(0.313704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313704,0.000000,0.000000,0.250000,0,0);}
.m28_c00080{transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);}
.m3e_c00080{transform:matrix(0.316284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316284,0.000000,0.000000,0.250000,0,0);}
.m51_c00080{transform:matrix(0.317085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317085,0.000000,0.000000,0.250000,0,0);}
.m12_c00080{transform:matrix(0.317925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317925,0.000000,0.000000,0.250000,0,0);}
.m37_c00080{transform:matrix(0.318082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318082,0.000000,0.000000,0.250000,0,0);}
.m9b_c00080{transform:matrix(0.318414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318414,0.000000,0.000000,0.250000,0,0);}
.m8b_c00080{transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);}
.m19_c00080{transform:matrix(0.319765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319765,0.000000,0.000000,0.250000,0,0);}
.m6c_c00080{transform:matrix(0.320085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320085,0.000000,0.000000,0.250000,0,0);}
.m27_c00080{transform:matrix(0.321006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321006,0.000000,0.000000,0.250000,0,0);}
.m83_c00080{transform:matrix(0.321492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321492,0.000000,0.000000,0.250000,0,0);}
.m4b_c00080{transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);}
.m2c_c00080{transform:matrix(0.323405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323405,0.000000,0.000000,0.250000,0,0);}
.m75_c00080{transform:matrix(0.323918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323918,0.000000,0.000000,0.250000,0,0);}
.m5a_c00080{transform:matrix(0.324151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324151,0.000000,0.000000,0.250000,0,0);}
.m6d_c00080{transform:matrix(0.324174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324174,0.000000,0.000000,0.250000,0,0);}
.m76_c00080{transform:matrix(0.326936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326936,0.000000,0.000000,0.250000,0,0);}
.m52_c00080{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m82_c00080{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.ma1_c00080{transform:matrix(0.327730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327730,0.000000,0.000000,0.250000,0,0);}
.m7a_c00080{transform:matrix(0.329003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329003,0.000000,0.000000,0.250000,0,0);}
.m3f_c00080{transform:matrix(0.332527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332527,0.000000,0.000000,0.250000,0,0);}
.m99_c00080{transform:matrix(0.332561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332561,0.000000,0.000000,0.250000,0,0);}
.m25_c00080{transform:matrix(0.334943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334943,0.000000,0.000000,0.250000,0,0);}
.m4c_c00080{transform:matrix(0.338456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338456,0.000000,0.000000,0.250000,0,0);}
.m11_c00080{transform:matrix(0.338655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338655,0.000000,0.000000,0.250000,0,0);}
.m3c_c00080{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m61_c00080{transform:matrix(0.340015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340015,0.000000,0.000000,0.250000,0,0);}
.m15_c00080{transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);}
.m5f_c00080{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.ma3_c00080{transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);}
.m65_c00080{transform:matrix(0.346375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346375,0.000000,0.000000,0.250000,0,0);}
.m24_c00080{transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);}
.m45_c00080{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m9f_c00080{transform:matrix(0.351400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351400,0.000000,0.000000,0.250000,0,0);}
.m22_c00080{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m9a_c00080{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m3_c00080{transform:matrix(0.362336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362336,0.000000,0.000000,0.250000,0,0);}
.m8a_c00080{transform:matrix(0.382023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382023,0.000000,0.000000,0.250000,0,0);}
.v0_c00080{vertical-align:0.000000px;}
.ls4_c00080{letter-spacing:-3.049200px;}
.ls12_c00080{letter-spacing:-2.744280px;}
.ls13_c00080{letter-spacing:-1.897474px;}
.lsc_c00080{letter-spacing:-1.427026px;}
.lsa_c00080{letter-spacing:-0.948737px;}
.ls3_c00080{letter-spacing:0.000000px;}
.ls1_c00080{letter-spacing:0.305791px;}
.lsf_c00080{letter-spacing:1.027145px;}
.ls7_c00080{letter-spacing:1.643400px;}
.lse_c00080{letter-spacing:1.920996px;}
.ls5_c00080{letter-spacing:2.603146px;}
.ls8_c00080{letter-spacing:2.759962px;}
.ls9_c00080{letter-spacing:3.206887px;}
.lsb_c00080{letter-spacing:3.308818px;}
.ls2_c00080{letter-spacing:3.481315px;}
.lsd_c00080{letter-spacing:3.583246px;}
.ls0_c00080{letter-spacing:3.661654px;}
.ls6_c00080{letter-spacing:3.920400px;}
.ls10_c00080{letter-spacing:4.356000px;}
.ls11_c00080{letter-spacing:51.321798px;}
.sc__c00080{text-shadow:none;}
.sc0_c00080{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00080{-webkit-text-stroke:0px transparent;}
.sc0_c00080{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00080{word-spacing:0.000000px;}
._2_c00080{margin-left:-25.325784px;}
._6_c00080{width:6.429456px;}
._5_c00080{width:9.095328px;}
._0_c00080{width:19.429502px;}
._3_c00080{width:20.746757px;}
._1_c00080{width:27.183262px;}
._4_c00080{width:78.759648px;}
.fc0_c00080{color:transparent;}
.fs5_c00080{font-size:22.176000px;}
.fs9_c00080{font-size:26.928000px;}
.fsa_c00080{font-size:27.720000px;}
.fs3_c00080{font-size:32.472000px;}
.fs2_c00080{font-size:32.868000px;}
.fsb_c00080{font-size:33.660000px;}
.fs7_c00080{font-size:46.728000px;}
.fs6_c00080{font-size:51.321798px;}
.fs4_c00080{font-size:64.548000px;}
.fsc_c00080{font-size:68.112198px;}
.fs8_c00080{font-size:74.844000px;}
.fs1_c00080{font-size:78.408000px;}
.fs0_c00080{font-size:87.120000px;}
.y0_c00080{bottom:0.000000px;}
.y20_c00080{bottom:61.569135px;}
.y1_c00080{bottom:76.500000px;}
.y1f_c00080{bottom:87.586335px;}
.y1e_c00080{bottom:151.738335px;}
.y1d_c00080{bottom:214.108335px;}
.y1b_c00080{bottom:215.177535px;}
.y1c_c00080{bottom:219.810735px;}
.y1a_c00080{bottom:247.604985px;}
.y19_c00080{bottom:279.329535px;}
.y18_c00080{bottom:312.118335px;}
.y17_c00080{bottom:343.837935px;}
.y16_c00080{bottom:375.913935px;}
.y15_c00080{bottom:409.415535px;}
.y13_c00080{bottom:439.704189px;}
.y14_c00080{bottom:439.709535px;}
.y12_c00080{bottom:472.498335px;}
.y11_c00080{bottom:504.217935px;}
.y10_c00080{bottom:537.006735px;}
.yf_c00080{bottom:569.439135px;}
.ye_c00080{bottom:601.871535px;}
.yd_c00080{bottom:627.175935px;}
.yc_c00080{bottom:633.942585px;}
.yb_c00080{bottom:666.023535px;}
.ya_c00080{bottom:698.455935px;}
.y9_c00080{bottom:764.033535px;}
.y8_c00080{bottom:796.465935px;}
.y7_c00080{bottom:830.680335px;}
.y6_c00080{bottom:863.107785px;}
.y5_c00080{bottom:896.965785px;}
.y3_c00080{bottom:928.690335px;}
.y4_c00080{bottom:936.174735px;}
.y2_c00080{bottom:1087.639785px;}
.h7_c00080{height:23.128875px;}
.ha_c00080{height:28.085063px;}
.hb_c00080{height:28.911094px;}
.hc_c00080{height:33.035449px;}
.h5_c00080{height:33.867281px;}
.h8_c00080{height:34.180317px;}
.h4_c00080{height:34.280297px;}
.h6_c00080{height:67.321547px;}
.hd_c00080{height:71.038894px;}
.h9_c00080{height:73.455293px;}
.h3_c00080{height:76.953164px;}
.h2_c00080{height:85.503516px;}
.h1_c00080{height:1110.000000px;}
.h0_c00080{height:1263.000000px;}
.w1_c00080{width:733.500000px;}
.w0_c00080{width:892.500000px;}
.x0_c00080{left:0.000000px;}
.x3f_c00080{left:51.365685px;}
.x26_c00080{left:53.187285px;}
.x70_c00080{left:54.984135px;}
.x17_c00080{left:56.276085px;}
.xd_c00080{left:57.335385px;}
.x4_c00080{left:58.968885px;}
.x1_c00080{left:79.500000px;}
.x27_c00080{left:85.961235px;}
.x5d_c00080{left:96.029535px;}
.x32_c00080{left:97.791735px;}
.x38_c00080{left:106.459185px;}
.x61_c00080{left:107.607585px;}
.x40_c00080{left:118.091685px;}
.x1f_c00080{left:122.759535px;}
.x49_c00080{left:129.872685px;}
.x18_c00080{left:134.817735px;}
.x57_c00080{left:140.188485px;}
.x39_c00080{left:150.890385px;}
.x28_c00080{left:152.167485px;}
.x20_c00080{left:154.993935px;}
.xe_c00080{left:156.983835px;}
.x4a_c00080{left:160.745835px;}
.x5_c00080{left:168.012435px;}
.x67_c00080{left:173.016885px;}
.x29_c00080{left:174.447435px;}
.x33_c00080{left:184.589985px;}
.x41_c00080{left:195.291885px;}
.xf_c00080{left:200.989335px;}
.x2a_c00080{left:206.681835px;}
.x6_c00080{left:213.983085px;}
.x42_c00080{left:218.339085px;}
.x7_c00080{left:226.838235px;}
.x4f_c00080{left:228.981585px;}
.x68_c00080{left:240.326985px;}
.x72_c00080{left:241.376385px;}
.x10_c00080{left:245.177985px;}
.x8_c00080{left:246.400635px;}
.x62_c00080{left:251.414985px;}
.x43_c00080{left:261.988185px;}
.x2b_c00080{left:263.532585px;}
.x19_c00080{left:267.339135px;}
.x58_c00080{left:273.041535px;}
.x21_c00080{left:276.892635px;}
.x11_c00080{left:279.897285px;}
.x50_c00080{left:284.159235px;}
.x47_c00080{left:295.252185px;}
.x69_c00080{left:305.909535px;}
.x34_c00080{left:307.379685px;}
.x3a_c00080{left:317.670735px;}
.x59_c00080{left:328.753785px;}
.x35_c00080{left:330.511035px;}
.x44_c00080{left:339.099285px;}
.x71_c00080{left:340.475385px;}
.x65_c00080{left:342.237585px;}
.x9_c00080{left:346.237185px;}
.x6e_c00080{left:350.603085px;}
.x73_c00080{left:351.835635px;}
.x22_c00080{left:355.459035px;}
.x12_c00080{left:356.909385px;}
.x5e_c00080{left:361.285185px;}
.x51_c00080{left:362.443485px;}
.x1a_c00080{left:366.898485px;}
.x63_c00080{left:372.912735px;}
.x52_c00080{left:383.139435px;}
.x74_c00080{left:384.332385px;}
.x2c_c00080{left:386.079735px;}
.x3b_c00080{left:395.271885px;}
.x4b_c00080{left:406.087635px;}
.x1b_c00080{left:411.804885px;}
.x53_c00080{left:417.150885px;}
.x3c_c00080{left:428.530935px;}
.x6a_c00080{left:439.247685px;}
.x2d_c00080{left:441.351435px;}
.x1c_c00080{left:444.435285px;}
.x5a_c00080{left:450.964335px;}
.x13_c00080{left:456.236085px;}
.x4c_c00080{left:461.997885px;}
.x2e_c00080{left:472.239435px;}
.x36_c00080{left:473.778885px;}
.x54_c00080{left:483.767985px;}
.x75_c00080{left:484.792635px;}
.x23_c00080{left:487.529985px;}
.x14_c00080{left:489.019935px;}
.x45_c00080{left:494.756985px;}
.x6b_c00080{left:504.993585px;}
.x2f_c00080{left:506.839935px;}
.xa_c00080{left:511.943385px;}
.x3d_c00080{left:516.571635px;}
.x5f_c00080{left:527.090385px;}
.x4d_c00080{left:528.986235px;}
.x48_c00080{left:539.039685px;}
.x24_c00080{left:543.633285px;}
.x5b_c00080{left:548.820885px;}
.x6d_c00080{left:550.048485px;}
.x1d_c00080{left:554.528235px;}
.xb_c00080{left:556.795335px;}
.x4e_c00080{left:560.661285px;}
.x15_c00080{left:565.571685px;}
.x64_c00080{left:571.833435px;}
.x30_c00080{left:572.892735px;}
.x25_c00080{left:576.981435px;}
.x37_c00080{left:584.163885px;}
.x6c_c00080{left:594.445035px;}
.x31_c00080{left:606.280485px;}
.x60_c00080{left:615.056835px;}
.x6f_c00080{left:617.071485px;}
.xc_c00080{left:622.387785px;}
.x2_c00080{left:635.213235px;}
.x55_c00080{left:638.118885px;}
.x3e_c00080{left:639.460335px;}
.x1e_c00080{left:642.910485px;}
.x3_c00080{left:646.642785px;}
.x5c_c00080{left:649.523685px;}
.x46_c00080{left:660.572085px;}
.x16_c00080{left:666.932835px;}
.x76_c00080{left:669.982035px;}
.x56_c00080{left:671.768985px;}
.x66_c00080{left:683.149035px;}
@media print{
.v0_c00080{vertical-align:0.000000pt;}
.ls4_c00080{letter-spacing:-2.710400pt;}
.ls12_c00080{letter-spacing:-2.439360pt;}
.ls13_c00080{letter-spacing:-1.686643pt;}
.lsc_c00080{letter-spacing:-1.268467pt;}
.lsa_c00080{letter-spacing:-0.843322pt;}
.ls3_c00080{letter-spacing:0.000000pt;}
.ls1_c00080{letter-spacing:0.271814pt;}
.lsf_c00080{letter-spacing:0.913018pt;}
.ls7_c00080{letter-spacing:1.460800pt;}
.lse_c00080{letter-spacing:1.707552pt;}
.ls5_c00080{letter-spacing:2.313907pt;}
.ls8_c00080{letter-spacing:2.453299pt;}
.ls9_c00080{letter-spacing:2.850566pt;}
.lsb_c00080{letter-spacing:2.941171pt;}
.ls2_c00080{letter-spacing:3.094502pt;}
.lsd_c00080{letter-spacing:3.185107pt;}
.ls0_c00080{letter-spacing:3.254803pt;}
.ls6_c00080{letter-spacing:3.484800pt;}
.ls10_c00080{letter-spacing:3.872000pt;}
.ls11_c00080{letter-spacing:45.619376pt;}
.ws0_c00080{word-spacing:0.000000pt;}
._2_c00080{margin-left:-22.511808pt;}
._6_c00080{width:5.715072pt;}
._5_c00080{width:8.084736pt;}
._0_c00080{width:17.270669pt;}
._3_c00080{width:18.441562pt;}
._1_c00080{width:24.162899pt;}
._4_c00080{width:70.008576pt;}
.fs5_c00080{font-size:19.712000pt;}
.fs9_c00080{font-size:23.936000pt;}
.fsa_c00080{font-size:24.640000pt;}
.fs3_c00080{font-size:28.864000pt;}
.fs2_c00080{font-size:29.216000pt;}
.fsb_c00080{font-size:29.920000pt;}
.fs7_c00080{font-size:41.536000pt;}
.fs6_c00080{font-size:45.619376pt;}
.fs4_c00080{font-size:57.376000pt;}
.fsc_c00080{font-size:60.544176pt;}
.fs8_c00080{font-size:66.528000pt;}
.fs1_c00080{font-size:69.696000pt;}
.fs0_c00080{font-size:77.440000pt;}
.y0_c00080{bottom:0.000000pt;}
.y20_c00080{bottom:54.728120pt;}
.y1_c00080{bottom:68.000000pt;}
.y1f_c00080{bottom:77.854520pt;}
.y1e_c00080{bottom:134.878520pt;}
.y1d_c00080{bottom:190.318520pt;}
.y1b_c00080{bottom:191.268920pt;}
.y1c_c00080{bottom:195.387320pt;}
.y1a_c00080{bottom:220.093320pt;}
.y19_c00080{bottom:248.292920pt;}
.y18_c00080{bottom:277.438520pt;}
.y17_c00080{bottom:305.633720pt;}
.y16_c00080{bottom:334.145720pt;}
.y15_c00080{bottom:363.924920pt;}
.y13_c00080{bottom:390.848168pt;}
.y14_c00080{bottom:390.852920pt;}
.y12_c00080{bottom:419.998520pt;}
.y11_c00080{bottom:448.193720pt;}
.y10_c00080{bottom:477.339320pt;}
.yf_c00080{bottom:506.168120pt;}
.ye_c00080{bottom:534.996920pt;}
.yd_c00080{bottom:557.489720pt;}
.yc_c00080{bottom:563.504520pt;}
.yb_c00080{bottom:592.020920pt;}
.ya_c00080{bottom:620.849720pt;}
.y9_c00080{bottom:679.140920pt;}
.y8_c00080{bottom:707.969720pt;}
.y7_c00080{bottom:738.382520pt;}
.y6_c00080{bottom:767.206920pt;}
.y5_c00080{bottom:797.302920pt;}
.y3_c00080{bottom:825.502520pt;}
.y4_c00080{bottom:832.155320pt;}
.y2_c00080{bottom:966.790920pt;}
.h7_c00080{height:20.559000pt;}
.ha_c00080{height:24.964500pt;}
.hb_c00080{height:25.698750pt;}
.hc_c00080{height:29.364844pt;}
.h5_c00080{height:30.104250pt;}
.h8_c00080{height:30.382504pt;}
.h4_c00080{height:30.471375pt;}
.h6_c00080{height:59.841375pt;}
.hd_c00080{height:63.145684pt;}
.h9_c00080{height:65.293594pt;}
.h3_c00080{height:68.402813pt;}
.h2_c00080{height:76.003125pt;}
.h1_c00080{height:986.666667pt;}
.h0_c00080{height:1122.666667pt;}
.w1_c00080{width:652.000000pt;}
.w0_c00080{width:793.333333pt;}
.x0_c00080{left:0.000000pt;}
.x3f_c00080{left:45.658387pt;}
.x26_c00080{left:47.277587pt;}
.x70_c00080{left:48.874787pt;}
.x17_c00080{left:50.023187pt;}
.xd_c00080{left:50.964787pt;}
.x4_c00080{left:52.416787pt;}
.x1_c00080{left:70.666667pt;}
.x27_c00080{left:76.409987pt;}
.x5d_c00080{left:85.359587pt;}
.x32_c00080{left:86.925987pt;}
.x38_c00080{left:94.630387pt;}
.x61_c00080{left:95.651187pt;}
.x40_c00080{left:104.970387pt;}
.x1f_c00080{left:109.119587pt;}
.x49_c00080{left:115.442387pt;}
.x18_c00080{left:119.837987pt;}
.x57_c00080{left:124.611987pt;}
.x39_c00080{left:134.124787pt;}
.x28_c00080{left:135.259987pt;}
.x20_c00080{left:137.772387pt;}
.xe_c00080{left:139.541187pt;}
.x4a_c00080{left:142.885187pt;}
.x5_c00080{left:149.344387pt;}
.x67_c00080{left:153.792787pt;}
.x29_c00080{left:155.064387pt;}
.x33_c00080{left:164.079987pt;}
.x41_c00080{left:173.592787pt;}
.xf_c00080{left:178.657187pt;}
.x2a_c00080{left:183.717187pt;}
.x6_c00080{left:190.207187pt;}
.x42_c00080{left:194.079187pt;}
.x7_c00080{left:201.633987pt;}
.x4f_c00080{left:203.539187pt;}
.x68_c00080{left:213.623987pt;}
.x72_c00080{left:214.556787pt;}
.x10_c00080{left:217.935987pt;}
.x8_c00080{left:219.022787pt;}
.x62_c00080{left:223.479987pt;}
.x43_c00080{left:232.878387pt;}
.x2b_c00080{left:234.251187pt;}
.x19_c00080{left:237.634787pt;}
.x58_c00080{left:242.703587pt;}
.x21_c00080{left:246.126787pt;}
.x11_c00080{left:248.797587pt;}
.x50_c00080{left:252.585987pt;}
.x47_c00080{left:262.446387pt;}
.x69_c00080{left:271.919587pt;}
.x34_c00080{left:273.226387pt;}
.x3a_c00080{left:282.373987pt;}
.x59_c00080{left:292.225587pt;}
.x35_c00080{left:293.787587pt;}
.x44_c00080{left:301.421587pt;}
.x71_c00080{left:302.644787pt;}
.x65_c00080{left:304.211187pt;}
.x9_c00080{left:307.766387pt;}
.x6e_c00080{left:311.647187pt;}
.x73_c00080{left:312.742787pt;}
.x22_c00080{left:315.963587pt;}
.x12_c00080{left:317.252787pt;}
.x5e_c00080{left:321.142387pt;}
.x51_c00080{left:322.171987pt;}
.x1a_c00080{left:326.131987pt;}
.x63_c00080{left:331.477987pt;}
.x52_c00080{left:340.568387pt;}
.x74_c00080{left:341.628787pt;}
.x2c_c00080{left:343.181987pt;}
.x3b_c00080{left:351.352787pt;}
.x4b_c00080{left:360.966787pt;}
.x1b_c00080{left:366.048787pt;}
.x53_c00080{left:370.800787pt;}
.x3c_c00080{left:380.916387pt;}
.x6a_c00080{left:390.442387pt;}
.x2d_c00080{left:392.312387pt;}
.x1c_c00080{left:395.053587pt;}
.x5a_c00080{left:400.857187pt;}
.x13_c00080{left:405.543187pt;}
.x4c_c00080{left:410.664787pt;}
.x2e_c00080{left:419.768387pt;}
.x36_c00080{left:421.136787pt;}
.x54_c00080{left:430.015987pt;}
.x75_c00080{left:430.926787pt;}
.x23_c00080{left:433.359987pt;}
.x14_c00080{left:434.684387pt;}
.x45_c00080{left:439.783987pt;}
.x6b_c00080{left:448.883187pt;}
.x2f_c00080{left:450.524387pt;}
.xa_c00080{left:455.060787pt;}
.x3d_c00080{left:459.174787pt;}
.x5f_c00080{left:468.524787pt;}
.x4d_c00080{left:470.209987pt;}
.x48_c00080{left:479.146387pt;}
.x24_c00080{left:483.229587pt;}
.x5b_c00080{left:487.840787pt;}
.x6d_c00080{left:488.931987pt;}
.x1d_c00080{left:492.913987pt;}
.xb_c00080{left:494.929187pt;}
.x4e_c00080{left:498.365587pt;}
.x15_c00080{left:502.730387pt;}
.x64_c00080{left:508.296387pt;}
.x30_c00080{left:509.237987pt;}
.x25_c00080{left:512.872387pt;}
.x37_c00080{left:519.256787pt;}
.x6c_c00080{left:528.395587pt;}
.x31_c00080{left:538.915987pt;}
.x60_c00080{left:546.717187pt;}
.x6f_c00080{left:548.507987pt;}
.xc_c00080{left:553.233587pt;}
.x2_c00080{left:564.633987pt;}
.x55_c00080{left:567.216787pt;}
.x3e_c00080{left:568.409187pt;}
.x1e_c00080{left:571.475987pt;}
.x3_c00080{left:574.793587pt;}
.x5c_c00080{left:577.354387pt;}
.x46_c00080{left:587.175187pt;}
.x16_c00080{left:592.829187pt;}
.x76_c00080{left:595.539587pt;}
.x56_c00080{left:597.127987pt;}
.x66_c00080{left:607.243587pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f7d2ed0b36534e3877acf9d2.woff2')format("woff");}.ff1_c00081{font-family:ff1_c00081;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00081;src:url('chunks/assets/font_34ce171e571615e2c264a32f.woff2')format("woff");}.ff2_c00081{font-family:ff2_c00081;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00081;src:url('chunks/assets/font_af53481505ce7862013cd2d1.woff2')format("woff");}.ff3_c00081{font-family:ff3_c00081;line-height:0.666000;font-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_c00081{transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);}
.mad_c00081{transform:matrix(0.175002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175002,0.000000,0.000000,0.250000,0,0);}
.m55_c00081{transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);}
.m53_c00081{transform:matrix(0.202380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202380,0.000000,0.000000,0.250000,0,0);}
.m54_c00081{transform:matrix(0.208929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208929,0.000000,0.000000,0.250000,0,0);}
.m30_c00081{transform:matrix(0.213031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213031,0.000000,0.000000,0.250000,0,0);}
.m97_c00081{transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);}
.m1_c00081{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00081{transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);}
.m96_c00081{transform:matrix(0.250510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250510,0.000000,0.000000,0.250000,0,0);}
.m34_c00081{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.m2f_c00081{transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);}
.m8d_c00081{transform:matrix(0.252992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252992,0.000000,0.000000,0.250000,0,0);}
.m22_c00081{transform:matrix(0.256952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256952,0.000000,0.000000,0.250000,0,0);}
.m50_c00081{transform:matrix(0.257917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257917,0.000000,0.000000,0.250000,0,0);}
.m3_c00081{transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);}
.m1e_c00081{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m0_c00081{transform:matrix(0.258992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258992,0.000000,0.000000,0.250000,0,0);}
.m82_c00081{transform:matrix(0.258997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258997,0.000000,0.000000,0.250000,0,0);}
.m89_c00081{transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);}
.m3d_c00081{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m66_c00081{transform:matrix(0.261106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261106,0.000000,0.000000,0.250000,0,0);}
.m6a_c00081{transform:matrix(0.261278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261278,0.000000,0.000000,0.250000,0,0);}
.m43_c00081{transform:matrix(0.262751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262751,0.000000,0.000000,0.250000,0,0);}
.me_c00081{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m78_c00081{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m33_c00081{transform:matrix(0.264732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264732,0.000000,0.000000,0.250000,0,0);}
.m17_c00081{transform:matrix(0.264878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264878,0.000000,0.000000,0.250000,0,0);}
.m15_c00081{transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);}
.m3c_c00081{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m45_c00081{transform:matrix(0.266302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266302,0.000000,0.000000,0.250000,0,0);}
.m1c_c00081{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.m2b_c00081{transform:matrix(0.267040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267040,0.000000,0.000000,0.250000,0,0);}
.m5_c00081{transform:matrix(0.267199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267199,0.000000,0.000000,0.250000,0,0);}
.m6_c00081{transform:matrix(0.267232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267232,0.000000,0.000000,0.250000,0,0);}
.m39_c00081{transform:matrix(0.267737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267737,0.000000,0.000000,0.250000,0,0);}
.mb_c00081{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m68_c00081{transform:matrix(0.269403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269403,0.000000,0.000000,0.250000,0,0);}
.m56_c00081{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m91_c00081{transform:matrix(0.271853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271853,0.000000,0.000000,0.250000,0,0);}
.m13_c00081{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m48_c00081{transform:matrix(0.274030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274030,0.000000,0.000000,0.250000,0,0);}
.ma2_c00081{transform:matrix(0.274096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274096,0.000000,0.000000,0.250000,0,0);}
.m20_c00081{transform:matrix(0.275503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275503,0.000000,0.000000,0.250000,0,0);}
.ma7_c00081{transform:matrix(0.275551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275551,0.000000,0.000000,0.250000,0,0);}
.ma9_c00081{transform:matrix(0.276040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276040,0.000000,0.000000,0.250000,0,0);}
.m4c_c00081{transform:matrix(0.276280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276280,0.000000,0.000000,0.250000,0,0);}
.m35_c00081{transform:matrix(0.277895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277895,0.000000,0.000000,0.250000,0,0);}
.ma_c00081{transform:matrix(0.278106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278106,0.000000,0.000000,0.250000,0,0);}
.m83_c00081{transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);}
.maa_c00081{transform:matrix(0.280088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280088,0.000000,0.000000,0.250000,0,0);}
.ma1_c00081{transform:matrix(0.280227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280227,0.000000,0.000000,0.250000,0,0);}
.m9_c00081{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.m8_c00081{transform:matrix(0.281782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281782,0.000000,0.000000,0.250000,0,0);}
.m72_c00081{transform:matrix(0.283049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283049,0.000000,0.000000,0.250000,0,0);}
.m65_c00081{transform:matrix(0.283221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283221,0.000000,0.000000,0.250000,0,0);}
.m10_c00081{transform:matrix(0.283326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283326,0.000000,0.000000,0.250000,0,0);}
.m25_c00081{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.ma3_c00081{transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);}
.m49_c00081{transform:matrix(0.284987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284987,0.000000,0.000000,0.250000,0,0);}
.m88_c00081{transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);}
.m80_c00081{transform:matrix(0.285285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285285,0.000000,0.000000,0.250000,0,0);}
.m6e_c00081{transform:matrix(0.285531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285531,0.000000,0.000000,0.250000,0,0);}
.m5e_c00081{transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);}
.m63_c00081{transform:matrix(0.285694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285694,0.000000,0.000000,0.250000,0,0);}
.m28_c00081{transform:matrix(0.286238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286238,0.000000,0.000000,0.250000,0,0);}
.m3a_c00081{transform:matrix(0.286407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286407,0.000000,0.000000,0.250000,0,0);}
.m7b_c00081{transform:matrix(0.287597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287597,0.000000,0.000000,0.250000,0,0);}
.m31_c00081{transform:matrix(0.287624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287624,0.000000,0.000000,0.250000,0,0);}
.m87_c00081{transform:matrix(0.288035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288035,0.000000,0.000000,0.250000,0,0);}
.m12_c00081{transform:matrix(0.288101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288101,0.000000,0.000000,0.250000,0,0);}
.m4d_c00081{transform:matrix(0.288480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288480,0.000000,0.000000,0.250000,0,0);}
.m69_c00081{transform:matrix(0.288481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288481,0.000000,0.000000,0.250000,0,0);}
.m8c_c00081{transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);}
.m8f_c00081{transform:matrix(0.288790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288790,0.000000,0.000000,0.250000,0,0);}
.m73_c00081{transform:matrix(0.288860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288860,0.000000,0.000000,0.250000,0,0);}
.m9d_c00081{transform:matrix(0.289115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289115,0.000000,0.000000,0.250000,0,0);}
.m99_c00081{transform:matrix(0.289570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289570,0.000000,0.000000,0.250000,0,0);}
.m6d_c00081{transform:matrix(0.289669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289669,0.000000,0.000000,0.250000,0,0);}
.m4f_c00081{transform:matrix(0.289813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289813,0.000000,0.000000,0.250000,0,0);}
.m7a_c00081{transform:matrix(0.292020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292020,0.000000,0.000000,0.250000,0,0);}
.m8e_c00081{transform:matrix(0.292039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292039,0.000000,0.000000,0.250000,0,0);}
.ma6_c00081{transform:matrix(0.292354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292354,0.000000,0.000000,0.250000,0,0);}
.m1a_c00081{transform:matrix(0.293171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293171,0.000000,0.000000,0.250000,0,0);}
.m79_c00081{transform:matrix(0.293214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293214,0.000000,0.000000,0.250000,0,0);}
.m5d_c00081{transform:matrix(0.293867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293867,0.000000,0.000000,0.250000,0,0);}
.m21_c00081{transform:matrix(0.295037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295037,0.000000,0.000000,0.250000,0,0);}
.m70_c00081{transform:matrix(0.295093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295093,0.000000,0.000000,0.250000,0,0);}
.m7d_c00081{transform:matrix(0.296011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296011,0.000000,0.000000,0.250000,0,0);}
.m4b_c00081{transform:matrix(0.296298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296298,0.000000,0.000000,0.250000,0,0);}
.m62_c00081{transform:matrix(0.296695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296695,0.000000,0.000000,0.250000,0,0);}
.m4a_c00081{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m44_c00081{transform:matrix(0.297251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297251,0.000000,0.000000,0.250000,0,0);}
.m5c_c00081{transform:matrix(0.298777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298777,0.000000,0.000000,0.250000,0,0);}
.m9a_c00081{transform:matrix(0.299719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299719,0.000000,0.000000,0.250000,0,0);}
.m51_c00081{transform:matrix(0.300241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300241,0.000000,0.000000,0.250000,0,0);}
.m57_c00081{transform:matrix(0.300258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300258,0.000000,0.000000,0.250000,0,0);}
.ma5_c00081{transform:matrix(0.300552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300552,0.000000,0.000000,0.250000,0,0);}
.m59_c00081{transform:matrix(0.300744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300744,0.000000,0.000000,0.250000,0,0);}
.m7_c00081{transform:matrix(0.301609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301609,0.000000,0.000000,0.250000,0,0);}
.m47_c00081{transform:matrix(0.302031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302031,0.000000,0.000000,0.250000,0,0);}
.m23_c00081{transform:matrix(0.302092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302092,0.000000,0.000000,0.250000,0,0);}
.m64_c00081{transform:matrix(0.302095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302095,0.000000,0.000000,0.250000,0,0);}
.m3e_c00081{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.mab_c00081{transform:matrix(0.303651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303651,0.000000,0.000000,0.250000,0,0);}
.m2c_c00081{transform:matrix(0.304209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304209,0.000000,0.000000,0.250000,0,0);}
.m2e_c00081{transform:matrix(0.304670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304670,0.000000,0.000000,0.250000,0,0);}
.m58_c00081{transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);}
.m3b_c00081{transform:matrix(0.305392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305392,0.000000,0.000000,0.250000,0,0);}
.m95_c00081{transform:matrix(0.305850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305850,0.000000,0.000000,0.250000,0,0);}
.m29_c00081{transform:matrix(0.306071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306071,0.000000,0.000000,0.250000,0,0);}
.m9f_c00081{transform:matrix(0.306506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306506,0.000000,0.000000,0.250000,0,0);}
.m90_c00081{transform:matrix(0.307057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307057,0.000000,0.000000,0.250000,0,0);}
.m76_c00081{transform:matrix(0.307400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307400,0.000000,0.000000,0.250000,0,0);}
.m94_c00081{transform:matrix(0.307686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307686,0.000000,0.000000,0.250000,0,0);}
.m4_c00081{transform:matrix(0.307789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307789,0.000000,0.000000,0.250000,0,0);}
.m6b_c00081{transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);}
.m24_c00081{transform:matrix(0.308491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308491,0.000000,0.000000,0.250000,0,0);}
.m7f_c00081{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m42_c00081{transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);}
.m84_c00081{transform:matrix(0.309196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309196,0.000000,0.000000,0.250000,0,0);}
.m8b_c00081{transform:matrix(0.309429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309429,0.000000,0.000000,0.250000,0,0);}
.m2d_c00081{transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);}
.m41_c00081{transform:matrix(0.312181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312181,0.000000,0.000000,0.250000,0,0);}
.m6c_c00081{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.ma8_c00081{transform:matrix(0.312688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312688,0.000000,0.000000,0.250000,0,0);}
.m26_c00081{transform:matrix(0.312972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312972,0.000000,0.000000,0.250000,0,0);}
.m9e_c00081{transform:matrix(0.313480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313480,0.000000,0.000000,0.250000,0,0);}
.m77_c00081{transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);}
.m36_c00081{transform:matrix(0.315225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315225,0.000000,0.000000,0.250000,0,0);}
.m4e_c00081{transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);}
.m71_c00081{transform:matrix(0.317148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317148,0.000000,0.000000,0.250000,0,0);}
.m5b_c00081{transform:matrix(0.317841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317841,0.000000,0.000000,0.250000,0,0);}
.m9c_c00081{transform:matrix(0.318361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318361,0.000000,0.000000,0.250000,0,0);}
.md_c00081{transform:matrix(0.318413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318413,0.000000,0.000000,0.250000,0,0);}
.m3f_c00081{transform:matrix(0.318560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318560,0.000000,0.000000,0.250000,0,0);}
.m52_c00081{transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);}
.ma4_c00081{transform:matrix(0.319263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319263,0.000000,0.000000,0.250000,0,0);}
.m14_c00081{transform:matrix(0.319859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319859,0.000000,0.000000,0.250000,0,0);}
.m8a_c00081{transform:matrix(0.320544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320544,0.000000,0.000000,0.250000,0,0);}
.m32_c00081{transform:matrix(0.321274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321274,0.000000,0.000000,0.250000,0,0);}
.m93_c00081{transform:matrix(0.323206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323206,0.000000,0.000000,0.250000,0,0);}
.m19_c00081{transform:matrix(0.323210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323210,0.000000,0.000000,0.250000,0,0);}
.m18_c00081{transform:matrix(0.323582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323582,0.000000,0.000000,0.250000,0,0);}
.m61_c00081{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.m9b_c00081{transform:matrix(0.324269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324269,0.000000,0.000000,0.250000,0,0);}
.m40_c00081{transform:matrix(0.324455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324455,0.000000,0.000000,0.250000,0,0);}
.m5a_c00081{transform:matrix(0.325872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325872,0.000000,0.000000,0.250000,0,0);}
.m1b_c00081{transform:matrix(0.326313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326313,0.000000,0.000000,0.250000,0,0);}
.m46_c00081{transform:matrix(0.326989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326989,0.000000,0.000000,0.250000,0,0);}
.m92_c00081{transform:matrix(0.327407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327407,0.000000,0.000000,0.250000,0,0);}
.m37_c00081{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.m7c_c00081{transform:matrix(0.327682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327682,0.000000,0.000000,0.250000,0,0);}
.m5f_c00081{transform:matrix(0.328605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328605,0.000000,0.000000,0.250000,0,0);}
.m60_c00081{transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);}
.m81_c00081{transform:matrix(0.331265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331265,0.000000,0.000000,0.250000,0,0);}
.m75_c00081{transform:matrix(0.331424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331424,0.000000,0.000000,0.250000,0,0);}
.m16_c00081{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.mac_c00081{transform:matrix(0.334629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334629,0.000000,0.000000,0.250000,0,0);}
.m67_c00081{transform:matrix(0.335728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335728,0.000000,0.000000,0.250000,0,0);}
.m27_c00081{transform:matrix(0.337511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337511,0.000000,0.000000,0.250000,0,0);}
.m11_c00081{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.ma0_c00081{transform:matrix(0.339832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339832,0.000000,0.000000,0.250000,0,0);}
.mc_c00081{transform:matrix(0.340828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340828,0.000000,0.000000,0.250000,0,0);}
.mf_c00081{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.m1f_c00081{transform:matrix(0.344811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344811,0.000000,0.000000,0.250000,0,0);}
.m1d_c00081{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m86_c00081{transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);}
.m38_c00081{transform:matrix(0.352963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352963,0.000000,0.000000,0.250000,0,0);}
.m98_c00081{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m74_c00081{transform:matrix(0.364624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364624,0.000000,0.000000,0.250000,0,0);}
.m6f_c00081{transform:matrix(0.386403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386403,0.000000,0.000000,0.250000,0,0);}
.m85_c00081{transform:matrix(0.410123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410123,0.000000,0.000000,0.250000,0,0);}
.m2a_c00081{transform:matrix(0.421610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421610,0.000000,0.000000,0.250000,0,0);}
.v0_c00081{vertical-align:0.000000px;}
.ls6_c00081{letter-spacing:-2.744280px;}
.lsb_c00081{letter-spacing:-2.375762px;}
.ls10_c00081{letter-spacing:-0.721354px;}
.ls1_c00081{letter-spacing:0.000000px;}
.ls5_c00081{letter-spacing:0.533174px;}
.ls8_c00081{letter-spacing:0.588060px;}
.lsd_c00081{letter-spacing:0.603900px;}
.lsf_c00081{letter-spacing:1.042826px;}
.ls9_c00081{letter-spacing:2.164061px;}
.ls4_c00081{letter-spacing:3.112798px;}
.ls7_c00081{letter-spacing:3.326400px;}
.lsc_c00081{letter-spacing:3.524400px;}
.ls3_c00081{letter-spacing:3.920400px;}
.lse_c00081{letter-spacing:3.950110px;}
.ls0_c00081{letter-spacing:4.346110px;}
.ls11_c00081{letter-spacing:7.128198px;}
.ls2_c00081{letter-spacing:31.363200px;}
.lsa_c00081{letter-spacing:49.896198px;}
.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:-19.602000px;}
.ws1_c00081{word-spacing:0.000000px;}
._0_c00081{width:6.507864px;}
._2_c00081{width:7.919208px;}
._1_c00081{width:99.732600px;}
.fc0_c00081{color:transparent;}
.fs11_c00081{font-size:7.128198px;}
.fse_c00081{font-size:11.484198px;}
.fsf_c00081{font-size:12.078000px;}
.fs2_c00081{font-size:25.146000px;}
.fs3_c00081{font-size:31.363200px;}
.fsb_c00081{font-size:39.600000px;}
.fsc_c00081{font-size:49.896198px;}
.fsa_c00081{font-size:53.856198px;}
.fs9_c00081{font-size:55.440000px;}
.fs8_c00081{font-size:60.192000px;}
.fs5_c00081{font-size:66.330000px;}
.fs6_c00081{font-size:66.528000px;}
.fs1_c00081{font-size:67.320000px;}
.fsd_c00081{font-size:70.488000px;}
.fs7_c00081{font-size:75.240000px;}
.fs4_c00081{font-size:78.408000px;}
.fs10_c00081{font-size:79.002198px;}
.fs0_c00081{font-size:86.922198px;}
.y0_c00081{bottom:0.000000px;}
.y22_c00081{bottom:27.706185px;}
.y1_c00081{bottom:76.500000px;}
.y21_c00081{bottom:151.025535px;}
.y20_c00081{bottom:182.745135px;}
.y1f_c00081{bottom:215.528985px;}
.y1e_c00081{bottom:248.322735px;}
.y1d_c00081{bottom:280.755135px;}
.y1c_c00081{bottom:307.485135px;}
.y1b_c00081{bottom:313.187535px;}
.y1a_c00081{bottom:377.334585px;}
.y19_c00081{bottom:409.410585px;}
.y18_c00081{bottom:441.847935px;}
.y17_c00081{bottom:473.567535px;}
.y16_c00081{bottom:505.638585px;}
.y15_c00081{bottom:538.432335px;}
.y14_c00081{bottom:571.221135px;}
.y13_c00081{bottom:607.217535px;}
.y12_c00081{bottom:628.596585px;}
.yf_c00081{bottom:635.373135px;}
.y11_c00081{bottom:636.080985px;}
.y10_c00081{bottom:643.208985px;}
.ye_c00081{bottom:667.805535px;}
.yd_c00081{bottom:700.237935px;}
.yc_c00081{bottom:732.308985px;}
.yb_c00081{bottom:764.389935px;}
.ya_c00081{bottom:797.178735px;}
.y9_c00081{bottom:829.249785px;}
.y8_c00081{bottom:862.399935px;}
.y7_c00081{bottom:895.188735px;}
.y6_c00081{bottom:927.621135px;}
.y5_c00081{bottom:998.539785px;}
.y4_c00081{bottom:1008.875385px;}
.y3_c00081{bottom:1021.705785px;}
.y2_c00081{bottom:1075.522185px;}
.h12_c00081{height:4.747380px;}
.h10_c00081{height:11.853896px;}
.hf_c00081{height:11.977660px;}
.h5_c00081{height:20.887891px;}
.h4_c00081{height:26.226492px;}
.he_c00081{height:33.230868px;}
.hd_c00081{height:41.301563px;}
.hc_c00081{height:52.856913px;}
.hb_c00081{height:57.822188px;}
.ha_c00081{height:62.778375px;}
.h8_c00081{height:65.293594px;}
.h3_c00081{height:66.070898px;}
.h7_c00081{height:69.180117px;}
.h6_c00081{height:76.953164px;}
.h11_c00081{height:77.536337px;}
.h9_c00081{height:78.472969px;}
.h2_c00081{height:85.309384px;}
.h1_c00081{height:1110.000000px;}
.h0_c00081{height:1263.000000px;}
.w1_c00081{width:733.500000px;}
.w0_c00081{width:892.500000px;}
.x0_c00081{left:0.000000px;}
.x34_c00081{left:51.999285px;}
.xd_c00081{left:53.979285px;}
.x5_c00081{left:55.058385px;}
.x1f_c00081{left:65.393985px;}
.x1_c00081{left:79.500000px;}
.xe_c00081{left:86.198835px;}
.x25_c00081{left:87.466035px;}
.x43_c00081{left:97.420485px;}
.x6_c00081{left:99.242085px;}
.x40_c00081{left:107.904585px;}
.x57_c00081{left:109.231185px;}
.x35_c00081{left:119.373735px;}
.x3c_c00081{left:120.497385px;}
.x3f_c00081{left:128.867835px;}
.x18_c00081{left:131.308185px;}
.x52_c00081{left:141.084435px;}
.x26_c00081{left:142.376385px;}
.xf_c00081{left:153.018885px;}
.x4b_c00081{left:163.626735px;}
.x46_c00081{left:174.407835px;}
.x2f_c00081{left:175.501785px;}
.x27_c00081{left:185.777985px;}
.x20_c00081{left:186.896685px;}
.x41_c00081{left:196.771935px;}
.x36_c00081{left:207.939135px;}
.x19_c00081{left:209.176635px;}
.x47_c00081{left:218.997435px;}
.x21_c00081{left:220.393335px;}
.x7_c00081{left:231.110085px;}
.x4c_c00081{left:242.148585px;}
.x53_c00081{left:251.880285px;}
.x28_c00081{left:252.964335px;}
.x59_c00081{left:263.418735px;}
.x10_c00081{left:264.616635px;}
.x8_c00081{left:274.764135px;}
.x4d_c00081{left:285.094785px;}
.x30_c00081{left:286.134285px;}
.x54_c00081{left:295.747185px;}
.x11_c00081{left:297.727185px;}
.x22_c00081{left:308.810235px;}
.x50_c00081{left:318.730035px;}
.x12_c00081{left:330.689235px;}
.x29_c00081{left:341.594085px;}
.x31_c00081{left:352.459335px;}
.x9_c00081{left:353.681985px;}
.x5a_c00081{left:355.439235px;}
.x2a_c00081{left:364.012635px;}
.x37_c00081{left:375.100635px;}
.x3a_c00081{left:385.238235px;}
.x23_c00081{left:387.168735px;}
.x1a_c00081{left:396.286635px;}
.x13_c00081{left:397.677585px;}
.x5b_c00081{left:406.661835px;}
.x2b_c00081{left:407.879535px;}
.x38_c00081{left:419.150685px;}
.x14_c00081{left:420.274335px;}
.x3d_c00081{left:429.981285px;}
.x1b_c00081{left:441.197985px;}
.x5d_c00081{left:444.177885px;}
.x4f_c00081{left:451.518735px;}
.x15_c00081{left:453.157185px;}
.x55_c00081{left:461.527635px;}
.x3e_c00081{left:463.804635px;}
.x24_c00081{left:474.768885px;}
.x44_c00081{left:485.030235px;}
.x3b_c00081{left:486.114285px;}
.x56_c00081{left:495.717285px;}
.x2c_c00081{left:497.350785px;}
.x1c_c00081{left:507.676485px;}
.x2d_c00081{left:518.536785px;}
.xa_c00081{left:529.595085px;}
.x51_c00081{left:530.822685px;}
.x1d_c00081{left:541.014735px;}
.x2e_c00081{left:552.498735px;}
.xb_c00081{left:562.908585px;}
.x4e_c00081{left:573.932235px;}
.x16_c00081{left:584.653935px;}
.x48_c00081{left:585.762735px;}
.xc_c00081{left:594.841035px;}
.x32_c00081{left:596.400285px;}
.x49_c00081{left:606.909135px;}
.x17_c00081{left:618.828735px;}
.x58_c00081{left:628.288185px;}
.x2_c00081{left:629.857335px;}
.x33_c00081{left:640.138485px;}
.x45_c00081{left:641.474985px;}
.x42_c00081{left:651.657135px;}
.x4a_c00081{left:653.731185px;}
.x1e_c00081{left:662.354085px;}
.x3_c00081{left:671.199735px;}
.x4_c00081{left:673.080735px;}
.x5e_c00081{left:676.466535px;}
.x39_c00081{left:680.381985px;}
.x5c_c00081{left:684.421185px;}
@media print{
.v0_c00081{vertical-align:0.000000pt;}
.ls6_c00081{letter-spacing:-2.439360pt;}
.lsb_c00081{letter-spacing:-2.111789pt;}
.ls10_c00081{letter-spacing:-0.641203pt;}
.ls1_c00081{letter-spacing:0.000000pt;}
.ls5_c00081{letter-spacing:0.473933pt;}
.ls8_c00081{letter-spacing:0.522720pt;}
.lsd_c00081{letter-spacing:0.536800pt;}
.lsf_c00081{letter-spacing:0.926957pt;}
.ls9_c00081{letter-spacing:1.923610pt;}
.ls4_c00081{letter-spacing:2.766931pt;}
.ls7_c00081{letter-spacing:2.956800pt;}
.lsc_c00081{letter-spacing:3.132800pt;}
.ls3_c00081{letter-spacing:3.484800pt;}
.lse_c00081{letter-spacing:3.511209pt;}
.ls0_c00081{letter-spacing:3.863209pt;}
.ls11_c00081{letter-spacing:6.336176pt;}
.ls2_c00081{letter-spacing:27.878400pt;}
.lsa_c00081{letter-spacing:44.352176pt;}
.ws0_c00081{word-spacing:-17.424000pt;}
.ws1_c00081{word-spacing:0.000000pt;}
._0_c00081{width:5.784768pt;}
._2_c00081{width:7.039296pt;}
._1_c00081{width:88.651200pt;}
.fs11_c00081{font-size:6.336176pt;}
.fse_c00081{font-size:10.208176pt;}
.fsf_c00081{font-size:10.736000pt;}
.fs2_c00081{font-size:22.352000pt;}
.fs3_c00081{font-size:27.878400pt;}
.fsb_c00081{font-size:35.200000pt;}
.fsc_c00081{font-size:44.352176pt;}
.fsa_c00081{font-size:47.872176pt;}
.fs9_c00081{font-size:49.280000pt;}
.fs8_c00081{font-size:53.504000pt;}
.fs5_c00081{font-size:58.960000pt;}
.fs6_c00081{font-size:59.136000pt;}
.fs1_c00081{font-size:59.840000pt;}
.fsd_c00081{font-size:62.656000pt;}
.fs7_c00081{font-size:66.880000pt;}
.fs4_c00081{font-size:69.696000pt;}
.fs10_c00081{font-size:70.224176pt;}
.fs0_c00081{font-size:77.264176pt;}
.y0_c00081{bottom:0.000000pt;}
.y22_c00081{bottom:24.627720pt;}
.y1_c00081{bottom:68.000000pt;}
.y21_c00081{bottom:134.244920pt;}
.y20_c00081{bottom:162.440120pt;}
.y1f_c00081{bottom:191.581320pt;}
.y1e_c00081{bottom:220.731320pt;}
.y1d_c00081{bottom:249.560120pt;}
.y1c_c00081{bottom:273.320120pt;}
.y1b_c00081{bottom:278.388920pt;}
.y1a_c00081{bottom:335.408520pt;}
.y19_c00081{bottom:363.920520pt;}
.y18_c00081{bottom:392.753720pt;}
.y17_c00081{bottom:420.948920pt;}
.y16_c00081{bottom:449.456520pt;}
.y15_c00081{bottom:478.606520pt;}
.y14_c00081{bottom:507.752120pt;}
.y13_c00081{bottom:539.748920pt;}
.y12_c00081{bottom:558.752520pt;}
.yf_c00081{bottom:564.776120pt;}
.y11_c00081{bottom:565.405320pt;}
.y10_c00081{bottom:571.741320pt;}
.ye_c00081{bottom:593.604920pt;}
.yd_c00081{bottom:622.433720pt;}
.yc_c00081{bottom:650.941320pt;}
.yb_c00081{bottom:679.457720pt;}
.ya_c00081{bottom:708.603320pt;}
.y9_c00081{bottom:737.110920pt;}
.y8_c00081{bottom:766.577720pt;}
.y7_c00081{bottom:795.723320pt;}
.y6_c00081{bottom:824.552120pt;}
.y5_c00081{bottom:887.590920pt;}
.y4_c00081{bottom:896.778120pt;}
.y3_c00081{bottom:908.182920pt;}
.y2_c00081{bottom:956.019720pt;}
.h12_c00081{height:4.219893pt;}
.h10_c00081{height:10.536797pt;}
.hf_c00081{height:10.646809pt;}
.h5_c00081{height:18.567014pt;}
.h4_c00081{height:23.312438pt;}
.he_c00081{height:29.538549pt;}
.hd_c00081{height:36.712500pt;}
.hc_c00081{height:46.983923pt;}
.hb_c00081{height:51.397500pt;}
.ha_c00081{height:55.803000pt;}
.h8_c00081{height:58.038750pt;}
.h3_c00081{height:58.729688pt;}
.h7_c00081{height:61.493438pt;}
.h6_c00081{height:68.402813pt;}
.h11_c00081{height:68.921188pt;}
.h9_c00081{height:69.753750pt;}
.h2_c00081{height:75.830563pt;}
.h1_c00081{height:986.666667pt;}
.h0_c00081{height:1122.666667pt;}
.w1_c00081{width:652.000000pt;}
.w0_c00081{width:793.333333pt;}
.x0_c00081{left:0.000000pt;}
.x34_c00081{left:46.221587pt;}
.xd_c00081{left:47.981587pt;}
.x5_c00081{left:48.940787pt;}
.x1f_c00081{left:58.127987pt;}
.x1_c00081{left:70.666667pt;}
.xe_c00081{left:76.621187pt;}
.x25_c00081{left:77.747587pt;}
.x43_c00081{left:86.595987pt;}
.x6_c00081{left:88.215187pt;}
.x40_c00081{left:95.915187pt;}
.x57_c00081{left:97.094387pt;}
.x35_c00081{left:106.109987pt;}
.x3c_c00081{left:107.108787pt;}
.x3f_c00081{left:114.549187pt;}
.x18_c00081{left:116.718387pt;}
.x52_c00081{left:125.408387pt;}
.x26_c00081{left:126.556787pt;}
.xf_c00081{left:136.016787pt;}
.x4b_c00081{left:145.445987pt;}
.x46_c00081{left:155.029187pt;}
.x2f_c00081{left:156.001587pt;}
.x27_c00081{left:165.135987pt;}
.x20_c00081{left:166.130387pt;}
.x41_c00081{left:174.908387pt;}
.x36_c00081{left:184.834787pt;}
.x19_c00081{left:185.934787pt;}
.x47_c00081{left:194.664387pt;}
.x21_c00081{left:195.905187pt;}
.x7_c00081{left:205.431187pt;}
.x4c_c00081{left:215.243187pt;}
.x53_c00081{left:223.893587pt;}
.x28_c00081{left:224.857187pt;}
.x59_c00081{left:234.149987pt;}
.x10_c00081{left:235.214787pt;}
.x8_c00081{left:244.234787pt;}
.x4d_c00081{left:253.417587pt;}
.x30_c00081{left:254.341587pt;}
.x54_c00081{left:262.886387pt;}
.x11_c00081{left:264.646387pt;}
.x22_c00081{left:274.497987pt;}
.x50_c00081{left:283.315587pt;}
.x12_c00081{left:293.945987pt;}
.x29_c00081{left:303.639187pt;}
.x31_c00081{left:313.297187pt;}
.x9_c00081{left:314.383987pt;}
.x5a_c00081{left:315.945987pt;}
.x2a_c00081{left:323.566787pt;}
.x37_c00081{left:333.422787pt;}
.x3a_c00081{left:342.433987pt;}
.x23_c00081{left:344.149987pt;}
.x1a_c00081{left:352.254787pt;}
.x13_c00081{left:353.491187pt;}
.x5b_c00081{left:361.477187pt;}
.x2b_c00081{left:362.559587pt;}
.x38_c00081{left:372.578387pt;}
.x14_c00081{left:373.577187pt;}
.x3d_c00081{left:382.205587pt;}
.x1b_c00081{left:392.175987pt;}
.x5d_c00081{left:394.824787pt;}
.x4f_c00081{left:401.349987pt;}
.x15_c00081{left:402.806387pt;}
.x55_c00081{left:410.246787pt;}
.x3e_c00081{left:412.270787pt;}
.x24_c00081{left:422.016787pt;}
.x44_c00081{left:431.137987pt;}
.x3b_c00081{left:432.101587pt;}
.x56_c00081{left:440.637587pt;}
.x2c_c00081{left:442.089587pt;}
.x1c_c00081{left:451.267987pt;}
.x2d_c00081{left:460.921587pt;}
.xa_c00081{left:470.751187pt;}
.x51_c00081{left:471.842387pt;}
.x1d_c00081{left:480.901987pt;}
.x2e_c00081{left:491.109987pt;}
.xb_c00081{left:500.363187pt;}
.x4e_c00081{left:510.161987pt;}
.x16_c00081{left:519.692387pt;}
.x48_c00081{left:520.677987pt;}
.xc_c00081{left:528.747587pt;}
.x32_c00081{left:530.133587pt;}
.x49_c00081{left:539.474787pt;}
.x17_c00081{left:550.069987pt;}
.x58_c00081{left:558.478387pt;}
.x2_c00081{left:559.873187pt;}
.x33_c00081{left:569.011987pt;}
.x45_c00081{left:570.199987pt;}
.x42_c00081{left:579.250787pt;}
.x4a_c00081{left:581.094387pt;}
.x1e_c00081{left:588.759187pt;}
.x3_c00081{left:596.621987pt;}
.x4_c00081{left:598.293987pt;}
.x5e_c00081{left:601.303587pt;}
.x39_c00081{left:604.783987pt;}
.x5c_c00081{left:608.374387pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_044a96db481b851497497a53.woff2')format("woff");}.ff1_c00082{font-family:ff1_c00082;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00082;src:url('chunks/assets/font_7aa5a14cafd159dfc70da1a4.woff2')format("woff");}.ff2_c00082{font-family:ff2_c00082;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00082;src:url('chunks/assets/font_e3ff7069da64b2da0e676212.woff2')format("woff");}.ff3_c00082{font-family:ff3_c00082;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00082;src:url('chunks/assets/font_6e114999b84be4391056810d.woff2')format("woff");}.ff4_c00082{font-family:ff4_c00082;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m8e_c00082{transform:matrix(0.036766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036766,0.000000,0.000000,0.250000,0,0);}
.m8f_c00082{transform:matrix(0.073530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073530,0.000000,0.000000,0.250000,0,0);}
.m26_c00082{transform:matrix(0.195330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195330,0.000000,0.000000,0.250000,0,0);}
.m8d_c00082{transform:matrix(0.210784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210784,0.000000,0.000000,0.250000,0,0);}
.m9f_c00082{transform:matrix(0.210938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210938,0.000000,0.000000,0.250000,0,0);}
.mac_c00082{transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);}
.ma9_c00082{transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);}
.m47_c00082{transform:matrix(0.246527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246527,0.000000,0.000000,0.250000,0,0);}
.m6_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);}
.m6c_c00082{transform:matrix(0.251362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251362,0.000000,0.000000,0.250000,0,0);}
.ma0_c00082{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.mb4_c00082{transform:matrix(0.253107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253107,0.000000,0.000000,0.250000,0,0);}
.mb8_c00082{transform:matrix(0.253556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253556,0.000000,0.000000,0.250000,0,0);}
.m89_c00082{transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);}
.m24_c00082{transform:matrix(0.258376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258376,0.000000,0.000000,0.250000,0,0);}
.m40_c00082{transform:matrix(0.258509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258509,0.000000,0.000000,0.250000,0,0);}
.m4a_c00082{transform:matrix(0.259464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259464,0.000000,0.000000,0.250000,0,0);}
.m1_c00082{transform:matrix(0.260619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260619,0.000000,0.000000,0.250000,0,0);}
.m35_c00082{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m6b_c00082{transform:matrix(0.261054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261054,0.000000,0.000000,0.250000,0,0);}
.m2b_c00082{transform:matrix(0.261057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261057,0.000000,0.000000,0.250000,0,0);}
.m99_c00082{transform:matrix(0.261551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261551,0.000000,0.000000,0.250000,0,0);}
.ma3_c00082{transform:matrix(0.262051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262051,0.000000,0.000000,0.250000,0,0);}
.mb3_c00082{transform:matrix(0.262580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262580,0.000000,0.000000,0.250000,0,0);}
.m0_c00082{transform:matrix(0.263189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263189,0.000000,0.000000,0.250000,0,0);}
.m12_c00082{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.mf_c00082{transform:matrix(0.263806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263806,0.000000,0.000000,0.250000,0,0);}
.m14_c00082{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m3_c00082{transform:matrix(0.264128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264128,0.000000,0.000000,0.250000,0,0);}
.m45_c00082{transform:matrix(0.264911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264911,0.000000,0.000000,0.250000,0,0);}
.m1e_c00082{transform:matrix(0.266174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266174,0.000000,0.000000,0.250000,0,0);}
.m2_c00082{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m23_c00082{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.m77_c00082{transform:matrix(0.267077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267077,0.000000,0.000000,0.250000,0,0);}
.m9a_c00082{transform:matrix(0.267199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267199,0.000000,0.000000,0.250000,0,0);}
.m1f_c00082{transform:matrix(0.267205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267205,0.000000,0.000000,0.250000,0,0);}
.m30_c00082{transform:matrix(0.267213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267213,0.000000,0.000000,0.250000,0,0);}
.m1c_c00082{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m1d_c00082{transform:matrix(0.268356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268356,0.000000,0.000000,0.250000,0,0);}
.m36_c00082{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.ma_c00082{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m86_c00082{transform:matrix(0.271342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271342,0.000000,0.000000,0.250000,0,0);}
.m49_c00082{transform:matrix(0.271514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271514,0.000000,0.000000,0.250000,0,0);}
.m46_c00082{transform:matrix(0.271867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271867,0.000000,0.000000,0.250000,0,0);}
.m38_c00082{transform:matrix(0.272153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272153,0.000000,0.000000,0.250000,0,0);}
.m97_c00082{transform:matrix(0.272463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272463,0.000000,0.000000,0.250000,0,0);}
.mc_c00082{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.mbc_c00082{transform:matrix(0.272806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272806,0.000000,0.000000,0.250000,0,0);}
.mbe_c00082{transform:matrix(0.272943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272943,0.000000,0.000000,0.250000,0,0);}
.m39_c00082{transform:matrix(0.272973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272973,0.000000,0.000000,0.250000,0,0);}
.m7d_c00082{transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);}
.m32_c00082{transform:matrix(0.274157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274157,0.000000,0.000000,0.250000,0,0);}
.m70_c00082{transform:matrix(0.274292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274292,0.000000,0.000000,0.250000,0,0);}
.mba_c00082{transform:matrix(0.274408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274408,0.000000,0.000000,0.250000,0,0);}
.m13_c00082{transform:matrix(0.275286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275286,0.000000,0.000000,0.250000,0,0);}
.m64_c00082{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.mb5_c00082{transform:matrix(0.275604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275604,0.000000,0.000000,0.250000,0,0);}
.m17_c00082{transform:matrix(0.275761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275761,0.000000,0.000000,0.250000,0,0);}
.m27_c00082{transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);}
.m81_c00082{transform:matrix(0.276638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276638,0.000000,0.000000,0.250000,0,0);}
.m4b_c00082{transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);}
.m7f_c00082{transform:matrix(0.277346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277346,0.000000,0.000000,0.250000,0,0);}
.m80_c00082{transform:matrix(0.277564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277564,0.000000,0.000000,0.250000,0,0);}
.m92_c00082{transform:matrix(0.277612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277612,0.000000,0.000000,0.250000,0,0);}
.m84_c00082{transform:matrix(0.278110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278110,0.000000,0.000000,0.250000,0,0);}
.m67_c00082{transform:matrix(0.278158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278158,0.000000,0.000000,0.250000,0,0);}
.mb2_c00082{transform:matrix(0.278910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278910,0.000000,0.000000,0.250000,0,0);}
.m33_c00082{transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);}
.m29_c00082{transform:matrix(0.279585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279585,0.000000,0.000000,0.250000,0,0);}
.m3e_c00082{transform:matrix(0.280088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280088,0.000000,0.000000,0.250000,0,0);}
.m7b_c00082{transform:matrix(0.280356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280356,0.000000,0.000000,0.250000,0,0);}
.m51_c00082{transform:matrix(0.283211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283211,0.000000,0.000000,0.250000,0,0);}
.maa_c00082{transform:matrix(0.283870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283870,0.000000,0.000000,0.250000,0,0);}
.m9b_c00082{transform:matrix(0.284924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284924,0.000000,0.000000,0.250000,0,0);}
.m62_c00082{transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);}
.m66_c00082{transform:matrix(0.285552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285552,0.000000,0.000000,0.250000,0,0);}
.m18_c00082{transform:matrix(0.285718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285718,0.000000,0.000000,0.250000,0,0);}
.m5b_c00082{transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);}
.m7c_c00082{transform:matrix(0.286455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286455,0.000000,0.000000,0.250000,0,0);}
.m82_c00082{transform:matrix(0.287124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287124,0.000000,0.000000,0.250000,0,0);}
.m48_c00082{transform:matrix(0.287283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287283,0.000000,0.000000,0.250000,0,0);}
.ma5_c00082{transform:matrix(0.288064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288064,0.000000,0.000000,0.250000,0,0);}
.m52_c00082{transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);}
.m3d_c00082{transform:matrix(0.288617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288617,0.000000,0.000000,0.250000,0,0);}
.m10_c00082{transform:matrix(0.288697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288697,0.000000,0.000000,0.250000,0,0);}
.m7a_c00082{transform:matrix(0.289129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289129,0.000000,0.000000,0.250000,0,0);}
.ma1_c00082{transform:matrix(0.289520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289520,0.000000,0.000000,0.250000,0,0);}
.m4d_c00082{transform:matrix(0.289896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289896,0.000000,0.000000,0.250000,0,0);}
.m6e_c00082{transform:matrix(0.290021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290021,0.000000,0.000000,0.250000,0,0);}
.m11_c00082{transform:matrix(0.290055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290055,0.000000,0.000000,0.250000,0,0);}
.mae_c00082{transform:matrix(0.290158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290158,0.000000,0.000000,0.250000,0,0);}
.m5a_c00082{transform:matrix(0.290475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290475,0.000000,0.000000,0.250000,0,0);}
.m7e_c00082{transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);}
.m65_c00082{transform:matrix(0.291008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291008,0.000000,0.000000,0.250000,0,0);}
.m19_c00082{transform:matrix(0.291665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291665,0.000000,0.000000,0.250000,0,0);}
.mbd_c00082{transform:matrix(0.291679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291679,0.000000,0.000000,0.250000,0,0);}
.m8b_c00082{transform:matrix(0.292061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292061,0.000000,0.000000,0.250000,0,0);}
.mb7_c00082{transform:matrix(0.292503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292503,0.000000,0.000000,0.250000,0,0);}
.m20_c00082{transform:matrix(0.293256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293256,0.000000,0.000000,0.250000,0,0);}
.mb6_c00082{transform:matrix(0.293496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293496,0.000000,0.000000,0.250000,0,0);}
.m60_c00082{transform:matrix(0.293689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293689,0.000000,0.000000,0.250000,0,0);}
.m9_c00082{transform:matrix(0.294193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294193,0.000000,0.000000,0.250000,0,0);}
.m31_c00082{transform:matrix(0.294635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294635,0.000000,0.000000,0.250000,0,0);}
.m74_c00082{transform:matrix(0.295172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295172,0.000000,0.000000,0.250000,0,0);}
.m69_c00082{transform:matrix(0.295174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295174,0.000000,0.000000,0.250000,0,0);}
.m63_c00082{transform:matrix(0.295931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295931,0.000000,0.000000,0.250000,0,0);}
.m72_c00082{transform:matrix(0.295952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295952,0.000000,0.000000,0.250000,0,0);}
.m54_c00082{transform:matrix(0.296313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296313,0.000000,0.000000,0.250000,0,0);}
.m16_c00082{transform:matrix(0.296528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296528,0.000000,0.000000,0.250000,0,0);}
.mb1_c00082{transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);}
.m5e_c00082{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m57_c00082{transform:matrix(0.297306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297306,0.000000,0.000000,0.250000,0,0);}
.m15_c00082{transform:matrix(0.297370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297370,0.000000,0.000000,0.250000,0,0);}
.m91_c00082{transform:matrix(0.297741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297741,0.000000,0.000000,0.250000,0,0);}
.m2e_c00082{transform:matrix(0.297860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297860,0.000000,0.000000,0.250000,0,0);}
.m5_c00082{transform:matrix(0.298081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298081,0.000000,0.000000,0.250000,0,0);}
.m3b_c00082{transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);}
.m55_c00082{transform:matrix(0.298244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298244,0.000000,0.000000,0.250000,0,0);}
.m56_c00082{transform:matrix(0.298866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298866,0.000000,0.000000,0.250000,0,0);}
.m44_c00082{transform:matrix(0.298895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298895,0.000000,0.000000,0.250000,0,0);}
.m85_c00082{transform:matrix(0.299051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299051,0.000000,0.000000,0.250000,0,0);}
.mab_c00082{transform:matrix(0.299145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299145,0.000000,0.000000,0.250000,0,0);}
.mad_c00082{transform:matrix(0.300175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300175,0.000000,0.000000,0.250000,0,0);}
.m42_c00082{transform:matrix(0.300194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300194,0.000000,0.000000,0.250000,0,0);}
.ma8_c00082{transform:matrix(0.300523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300523,0.000000,0.000000,0.250000,0,0);}
.m1a_c00082{transform:matrix(0.301042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301042,0.000000,0.000000,0.250000,0,0);}
.m59_c00082{transform:matrix(0.301172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301172,0.000000,0.000000,0.250000,0,0);}
.mc2_c00082{transform:matrix(0.301408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301408,0.000000,0.000000,0.250000,0,0);}
.m4c_c00082{transform:matrix(0.301484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301484,0.000000,0.000000,0.250000,0,0);}
.m93_c00082{transform:matrix(0.302149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302149,0.000000,0.000000,0.250000,0,0);}
.m22_c00082{transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);}
.m95_c00082{transform:matrix(0.303386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303386,0.000000,0.000000,0.250000,0,0);}
.m3f_c00082{transform:matrix(0.303651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303651,0.000000,0.000000,0.250000,0,0);}
.m96_c00082{transform:matrix(0.303734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303734,0.000000,0.000000,0.250000,0,0);}
.m25_c00082{transform:matrix(0.303896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303896,0.000000,0.000000,0.250000,0,0);}
.m58_c00082{transform:matrix(0.304372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304372,0.000000,0.000000,0.250000,0,0);}
.m53_c00082{transform:matrix(0.304757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304757,0.000000,0.000000,0.250000,0,0);}
.md_c00082{transform:matrix(0.305030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305030,0.000000,0.000000,0.250000,0,0);}
.m61_c00082{transform:matrix(0.305129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305129,0.000000,0.000000,0.250000,0,0);}
.m21_c00082{transform:matrix(0.305850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305850,0.000000,0.000000,0.250000,0,0);}
.m87_c00082{transform:matrix(0.306458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306458,0.000000,0.000000,0.250000,0,0);}
.mbf_c00082{transform:matrix(0.306494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306494,0.000000,0.000000,0.250000,0,0);}
.m8_c00082{transform:matrix(0.306954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306954,0.000000,0.000000,0.250000,0,0);}
.maf_c00082{transform:matrix(0.308097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308097,0.000000,0.000000,0.250000,0,0);}
.m79_c00082{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.ma4_c00082{transform:matrix(0.308797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308797,0.000000,0.000000,0.250000,0,0);}
.m28_c00082{transform:matrix(0.309122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309122,0.000000,0.000000,0.250000,0,0);}
.m9c_c00082{transform:matrix(0.309478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309478,0.000000,0.000000,0.250000,0,0);}
.m8a_c00082{transform:matrix(0.309513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309513,0.000000,0.000000,0.250000,0,0);}
.m3c_c00082{transform:matrix(0.310227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310227,0.000000,0.000000,0.250000,0,0);}
.m3a_c00082{transform:matrix(0.310560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310560,0.000000,0.000000,0.250000,0,0);}
.m75_c00082{transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);}
.m73_c00082{transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);}
.m6a_c00082{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.m90_c00082{transform:matrix(0.313627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313627,0.000000,0.000000,0.250000,0,0);}
.m8c_c00082{transform:matrix(0.314432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314432,0.000000,0.000000,0.250000,0,0);}
.m68_c00082{transform:matrix(0.314792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314792,0.000000,0.000000,0.250000,0,0);}
.m2d_c00082{transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);}
.m71_c00082{transform:matrix(0.315772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315772,0.000000,0.000000,0.250000,0,0);}
.mb9_c00082{transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);}
.m50_c00082{transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);}
.m2c_c00082{transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);}
.m78_c00082{transform:matrix(0.317404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317404,0.000000,0.000000,0.250000,0,0);}
.m9d_c00082{transform:matrix(0.318065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318065,0.000000,0.000000,0.250000,0,0);}
.m4_c00082{transform:matrix(0.318082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318082,0.000000,0.000000,0.250000,0,0);}
.m2a_c00082{transform:matrix(0.319227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319227,0.000000,0.000000,0.250000,0,0);}
.ma7_c00082{transform:matrix(0.319330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319330,0.000000,0.000000,0.250000,0,0);}
.m43_c00082{transform:matrix(0.319859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319859,0.000000,0.000000,0.250000,0,0);}
.m83_c00082{transform:matrix(0.321124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321124,0.000000,0.000000,0.250000,0,0);}
.m6d_c00082{transform:matrix(0.326049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326049,0.000000,0.000000,0.250000,0,0);}
.m4e_c00082{transform:matrix(0.326313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326313,0.000000,0.000000,0.250000,0,0);}
.m37_c00082{transform:matrix(0.326944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326944,0.000000,0.000000,0.250000,0,0);}
.m1b_c00082{transform:matrix(0.327297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327297,0.000000,0.000000,0.250000,0,0);}
.mb_c00082{transform:matrix(0.327311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327311,0.000000,0.000000,0.250000,0,0);}
.ma6_c00082{transform:matrix(0.327718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327718,0.000000,0.000000,0.250000,0,0);}
.mb0_c00082{transform:matrix(0.328528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328528,0.000000,0.000000,0.250000,0,0);}
.me_c00082{transform:matrix(0.328705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328705,0.000000,0.000000,0.250000,0,0);}
.mc1_c00082{transform:matrix(0.334766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334766,0.000000,0.000000,0.250000,0,0);}
.m88_c00082{transform:matrix(0.335078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335078,0.000000,0.000000,0.250000,0,0);}
.mc0_c00082{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);}
.m5c_c00082{transform:matrix(0.339379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339379,0.000000,0.000000,0.250000,0,0);}
.ma2_c00082{transform:matrix(0.340270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340270,0.000000,0.000000,0.250000,0,0);}
.m76_c00082{transform:matrix(0.341020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341020,0.000000,0.000000,0.250000,0,0);}
.m94_c00082{transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);}
.m4f_c00082{transform:matrix(0.341706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341706,0.000000,0.000000,0.250000,0,0);}
.m9e_c00082{transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);}
.m34_c00082{transform:matrix(0.345929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345929,0.000000,0.000000,0.250000,0,0);}
.m5d_c00082{transform:matrix(0.347027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347027,0.000000,0.000000,0.250000,0,0);}
.m2f_c00082{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m98_c00082{transform:matrix(0.349602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349602,0.000000,0.000000,0.250000,0,0);}
.m7_c00082{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m6f_c00082{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m5f_c00082{transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);}
.m41_c00082{transform:matrix(0.380993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380993,0.000000,0.000000,0.250000,0,0);}
.mbb_c00082{transform:matrix(0.440068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440068,0.000000,0.000000,0.250000,0,0);}
.v0_c00082{vertical-align:0.000000px;}
.ls11_c00082{letter-spacing:-2.744280px;}
.lsc_c00082{letter-spacing:-1.897474px;}
.lsf_c00082{letter-spacing:-1.834747px;}
.ls14_c00082{letter-spacing:-1.685772px;}
.ls4_c00082{letter-spacing:-1.143450px;}
.lsb_c00082{letter-spacing:-0.602494px;}
.lsa_c00082{letter-spacing:-0.258746px;}
.ls2_c00082{letter-spacing:0.000000px;}
.ls6_c00082{letter-spacing:0.015682px;}
.ls5_c00082{letter-spacing:1.677931px;}
.ls3_c00082{letter-spacing:1.685772px;}
.ls10_c00082{letter-spacing:3.042230px;}
.ls9_c00082{letter-spacing:3.112798px;}
.ls8_c00082{letter-spacing:3.300977px;}
.ls13_c00082{letter-spacing:3.544200px;}
.ls12_c00082{letter-spacing:3.564000px;}
.lse_c00082{letter-spacing:3.643200px;}
.ls1_c00082{letter-spacing:3.920400px;}
.ls0_c00082{letter-spacing:4.276810px;}
.lsd_c00082{letter-spacing:48.470598px;}
.ls7_c00082{letter-spacing:51.321798px;}
.sc__c00082{text-shadow:none;}
.sc0_c00082{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00082{-webkit-text-stroke:0px transparent;}
.sc0_c00082{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00082{word-spacing:0.000000px;}
._1_c00082{width:10.036224px;}
._0_c00082{width:35.125200px;}
.fc0_c00082{color:transparent;}
.fsb_c00082{font-size:22.176000px;}
.fs9_c00082{font-size:27.720000px;}
.fsd_c00082{font-size:31.878000px;}
.fs4_c00082{font-size:32.670000px;}
.fs14_c00082{font-size:33.660000px;}
.fs3_c00082{font-size:34.056198px;}
.fs8_c00082{font-size:38.610000px;}
.fsf_c00082{font-size:38.808000px;}
.fs10_c00082{font-size:39.600000px;}
.fse_c00082{font-size:48.470598px;}
.fs6_c00082{font-size:51.321798px;}
.fs12_c00082{font-size:60.192000px;}
.fs2_c00082{font-size:66.330000px;}
.fsc_c00082{font-size:66.528000px;}
.fs7_c00082{font-size:70.884000px;}
.fs11_c00082{font-size:71.280000px;}
.fsa_c00082{font-size:72.864000px;}
.fs13_c00082{font-size:74.844000px;}
.fs1_c00082{font-size:78.408000px;}
.fs5_c00082{font-size:78.804000px;}
.fs0_c00082{font-size:85.536198px;}
.y0_c00082{bottom:0.000000px;}
.y29_c00082{bottom:72.973935px;}
.y1_c00082{bottom:76.500000px;}
.y28_c00082{bottom:162.068985px;}
.y27_c00082{bottom:194.862735px;}
.y26_c00082{bottom:220.523535px;}
.y24_c00082{bottom:227.651535px;}
.y25_c00082{bottom:228.007935px;}
.y23_c00082{bottom:259.727535px;}
.y22_c00082{bottom:274.334985px;}
.y21_c00082{bottom:292.867785px;}
.y20_c00082{bottom:309.974985px;}
.y1f_c00082{bottom:325.305135px;}
.y1e_c00082{bottom:350.253135px;}
.y1d_c00082{bottom:357.376185px;}
.y1b_c00082{bottom:357.737535px;}
.y1c_c00082{bottom:368.073135px;}
.y1a_c00082{bottom:375.908985px;}
.y19_c00082{bottom:389.813535px;}
.y18_c00082{bottom:422.245935px;}
.y17_c00082{bottom:433.645785px;}
.y16_c00082{bottom:459.311535px;}
.y15_c00082{bottom:486.754335px;}
.y14_c00082{bottom:503.148735px;}
.y13_c00082{bottom:519.186735px;}
.y12_c00082{bottom:551.614185px;}
.y11_c00082{bottom:584.046585px;}
.y10_c00082{bottom:616.835385px;}
.yf_c00082{bottom:642.857535px;}
.ye_c00082{bottom:649.267785px;}
.yd_c00082{bottom:649.624185px;}
.yc_c00082{bottom:682.056585px;}
.yb_c00082{bottom:714.845385px;}
.ya_c00082{bottom:746.569935px;}
.y9_c00082{bottom:779.002335px;}
.y8_c00082{bottom:811.073385px;}
.y7_c00082{bottom:844.218585px;}
.y6_c00082{bottom:862.038585px;}
.y5_c00082{bottom:876.650985px;}
.y4_c00082{bottom:908.731935px;}
.y3_c00082{bottom:941.872185px;}
.y2_c00082{bottom:1089.778185px;}
.hc_c00082{height:23.128875px;}
.ha_c00082{height:28.911094px;}
.he_c00082{height:31.286514px;}
.h6_c00082{height:32.063818px;}
.hf_c00082{height:32.281418px;}
.h16_c00082{height:33.035449px;}
.h8_c00082{height:34.180317px;}
.h5_c00082{height:35.519550px;}
.h9_c00082{height:40.269023px;}
.h10_c00082{height:40.475531px;}
.h11_c00082{height:41.301563px;}
.h14_c00082{height:62.778375px;}
.h4_c00082{height:69.180117px;}
.hd_c00082{height:69.386625px;}
.h13_c00082{height:69.568770px;}
.h12_c00082{height:69.957422px;}
.hb_c00082{height:71.512031px;}
.h15_c00082{height:73.455293px;}
.h3_c00082{height:76.953164px;}
.h7_c00082{height:77.341816px;}
.h2_c00082{height:83.949101px;}
.h1_c00082{height:1110.000000px;}
.h0_c00082{height:1263.000000px;}
.w1_c00082{width:733.500000px;}
.w0_c00082{width:892.500000px;}
.x0_c00082{left:0.000000px;}
.xd_c00082{left:59.661885px;}
.x3_c00082{left:61.453785px;}
.x1_c00082{left:79.500000px;}
.x1d_c00082{left:82.134885px;}
.x17_c00082{left:93.509985px;}
.x1e_c00082{left:104.231685px;}
.x27_c00082{left:105.998835px;}
.x3e_c00082{left:114.745485px;}
.x2d_c00082{left:115.968135px;}
.xe_c00082{left:125.967135px;}
.x40_c00082{left:127.372935px;}
.x28_c00082{left:129.125235px;}
.x1f_c00082{left:137.248185px;}
.x4_c00082{left:138.426285px;}
.x59_c00082{left:139.807335px;}
.x34_c00082{left:147.593685px;}
.x3f_c00082{left:149.440035px;}
.xf_c00082{left:159.691485px;}
.x5_c00082{left:170.527035px;}
.x4c_c00082{left:180.674535px;}
.x43_c00082{left:182.085285px;}
.x20_c00082{left:192.604035px;}
.x5a_c00082{left:194.371185px;}
.x2e_c00082{left:203.667285px;}
.x6_c00082{left:215.383935px;}
.x18_c00082{left:225.907635px;}
.x57_c00082{left:227.189685px;}
.x37_c00082{left:236.807535px;}
.x29_c00082{left:248.370735px;}
.x4a_c00082{left:249.608235px;}
.x44_c00082{left:260.181435px;}
.x10_c00082{left:271.447635px;}
.x21_c00082{left:281.540685px;}
.x48_c00082{left:290.727885px;}
.x7_c00082{left:292.990035px;}
.x2f_c00082{left:304.355235px;}
.x49_c00082{left:313.953285px;}
.x11_c00082{left:315.220485px;}
.x5b_c00082{left:316.616385px;}
.x19_c00082{left:325.001685px;}
.x52_c00082{left:326.224335px;}
.x54_c00082{left:337.322235px;}
.x22_c00082{left:347.989485px;}
.x39_c00082{left:349.053735px;}
.x30_c00082{left:358.577535px;}
.x5c_c00082{left:360.107085px;}
.x12_c00082{left:370.106085px;}
.x3a_c00082{left:380.644635px;}
.x4e_c00082{left:382.520685px;}
.x2a_c00082{left:392.564235px;}
.x8_c00082{left:403.379985px;}
.x5d_c00082{left:405.023385px;}
.x1c_c00082{left:414.299685px;}
.x31_c00082{left:415.334235px;}
.x9_c00082{left:425.664885px;}
.x2b_c00082{left:437.064735px;}
.x32_c00082{left:447.365685px;}
.xa_c00082{left:459.013035px;}
.x38_c00082{left:468.987285px;}
.x13_c00082{left:470.566335px;}
.x1a_c00082{left:480.030735px;}
.x53_c00082{left:482.139435px;}
.x35_c00082{left:483.738285px;}
.x45_c00082{left:492.697785px;}
.x33_c00082{left:503.048235px;}
.x55_c00082{left:505.478685px;}
.x23_c00082{left:514.091685px;}
.x3b_c00082{left:524.937135px;}
.x46_c00082{left:536.005335px;}
.x5e_c00082{left:537.416085px;}
.x24_c00082{left:547.949685px;}
.x14_c00082{left:557.933835px;}
.x41_c00082{left:559.324785px;}
.x56_c00082{left:561.433485px;}
.xb_c00082{left:569.665335px;}
.x25_c00082{left:580.025685px;}
.x15_c00082{left:590.866185px;}
.x1b_c00082{left:592.088835px;}
.x36_c00082{left:602.567985px;}
.x3d_c00082{left:614.546985px;}
.x26_c00082{left:624.585585px;}
.x4b_c00082{left:626.332935px;}
.x2_c00082{left:635.559735px;}
.x58_c00082{left:637.361535px;}
.x2c_c00082{left:647.207085px;}
.x4f_c00082{left:648.310935px;}
.x3c_c00082{left:658.626735px;}
.x16_c00082{left:669.130635px;}
.xc_c00082{left:670.170135px;}
.x42_c00082{left:678.015885px;}
.x50_c00082{left:679.317735px;}
.x47_c00082{left:680.852235px;}
.x4d_c00082{left:682.970835px;}
.x51_c00082{left:685.930935px;}
@media print{
.v0_c00082{vertical-align:0.000000pt;}
.ls11_c00082{letter-spacing:-2.439360pt;}
.lsc_c00082{letter-spacing:-1.686643pt;}
.lsf_c00082{letter-spacing:-1.630886pt;}
.ls14_c00082{letter-spacing:-1.498464pt;}
.ls4_c00082{letter-spacing:-1.016400pt;}
.lsb_c00082{letter-spacing:-0.535550pt;}
.lsa_c00082{letter-spacing:-0.229997pt;}
.ls2_c00082{letter-spacing:0.000000pt;}
.ls6_c00082{letter-spacing:0.013939pt;}
.ls5_c00082{letter-spacing:1.491494pt;}
.ls3_c00082{letter-spacing:1.498464pt;}
.ls10_c00082{letter-spacing:2.704205pt;}
.ls9_c00082{letter-spacing:2.766931pt;}
.ls8_c00082{letter-spacing:2.934202pt;}
.ls13_c00082{letter-spacing:3.150400pt;}
.ls12_c00082{letter-spacing:3.168000pt;}
.lse_c00082{letter-spacing:3.238400pt;}
.ls1_c00082{letter-spacing:3.484800pt;}
.ls0_c00082{letter-spacing:3.801609pt;}
.lsd_c00082{letter-spacing:43.084976pt;}
.ls7_c00082{letter-spacing:45.619376pt;}
.ws0_c00082{word-spacing:0.000000pt;}
._1_c00082{width:8.921088pt;}
._0_c00082{width:31.222400pt;}
.fsb_c00082{font-size:19.712000pt;}
.fs9_c00082{font-size:24.640000pt;}
.fsd_c00082{font-size:28.336000pt;}
.fs4_c00082{font-size:29.040000pt;}
.fs14_c00082{font-size:29.920000pt;}
.fs3_c00082{font-size:30.272176pt;}
.fs8_c00082{font-size:34.320000pt;}
.fsf_c00082{font-size:34.496000pt;}
.fs10_c00082{font-size:35.200000pt;}
.fse_c00082{font-size:43.084976pt;}
.fs6_c00082{font-size:45.619376pt;}
.fs12_c00082{font-size:53.504000pt;}
.fs2_c00082{font-size:58.960000pt;}
.fsc_c00082{font-size:59.136000pt;}
.fs7_c00082{font-size:63.008000pt;}
.fs11_c00082{font-size:63.360000pt;}
.fsa_c00082{font-size:64.768000pt;}
.fs13_c00082{font-size:66.528000pt;}
.fs1_c00082{font-size:69.696000pt;}
.fs5_c00082{font-size:70.048000pt;}
.fs0_c00082{font-size:76.032176pt;}
.y0_c00082{bottom:0.000000pt;}
.y29_c00082{bottom:64.865720pt;}
.y1_c00082{bottom:68.000000pt;}
.y28_c00082{bottom:144.061320pt;}
.y27_c00082{bottom:173.211320pt;}
.y26_c00082{bottom:196.020920pt;}
.y24_c00082{bottom:202.356920pt;}
.y25_c00082{bottom:202.673720pt;}
.y23_c00082{bottom:230.868920pt;}
.y22_c00082{bottom:243.853320pt;}
.y21_c00082{bottom:260.326920pt;}
.y20_c00082{bottom:275.533320pt;}
.y1f_c00082{bottom:289.160120pt;}
.y1e_c00082{bottom:311.336120pt;}
.y1d_c00082{bottom:317.667720pt;}
.y1b_c00082{bottom:317.988920pt;}
.y1c_c00082{bottom:327.176120pt;}
.y1a_c00082{bottom:334.141320pt;}
.y19_c00082{bottom:346.500920pt;}
.y18_c00082{bottom:375.329720pt;}
.y17_c00082{bottom:385.462920pt;}
.y16_c00082{bottom:408.276920pt;}
.y15_c00082{bottom:432.670520pt;}
.y14_c00082{bottom:447.243320pt;}
.y13_c00082{bottom:461.499320pt;}
.y12_c00082{bottom:490.323720pt;}
.y11_c00082{bottom:519.152520pt;}
.y10_c00082{bottom:548.298120pt;}
.yf_c00082{bottom:571.428920pt;}
.ye_c00082{bottom:577.126920pt;}
.yd_c00082{bottom:577.443720pt;}
.yc_c00082{bottom:606.272520pt;}
.yb_c00082{bottom:635.418120pt;}
.ya_c00082{bottom:663.617720pt;}
.y9_c00082{bottom:692.446520pt;}
.y8_c00082{bottom:720.954120pt;}
.y7_c00082{bottom:750.416520pt;}
.y6_c00082{bottom:766.256520pt;}
.y5_c00082{bottom:779.245320pt;}
.y4_c00082{bottom:807.761720pt;}
.y3_c00082{bottom:837.219720pt;}
.y2_c00082{bottom:968.691720pt;}
.hc_c00082{height:20.559000pt;}
.ha_c00082{height:25.698750pt;}
.he_c00082{height:27.810234pt;}
.h6_c00082{height:28.501172pt;}
.hf_c00082{height:28.694594pt;}
.h16_c00082{height:29.364844pt;}
.h8_c00082{height:30.382504pt;}
.h5_c00082{height:31.572934pt;}
.h9_c00082{height:35.794688pt;}
.h10_c00082{height:35.978250pt;}
.h11_c00082{height:36.712500pt;}
.h14_c00082{height:55.803000pt;}
.h4_c00082{height:61.493438pt;}
.hd_c00082{height:61.677000pt;}
.h13_c00082{height:61.838906pt;}
.h12_c00082{height:62.184375pt;}
.hb_c00082{height:63.566250pt;}
.h15_c00082{height:65.293594pt;}
.h3_c00082{height:68.402813pt;}
.h7_c00082{height:68.748281pt;}
.h2_c00082{height:74.621423pt;}
.h1_c00082{height:986.666667pt;}
.h0_c00082{height:1122.666667pt;}
.w1_c00082{width:652.000000pt;}
.w0_c00082{width:793.333333pt;}
.x0_c00082{left:0.000000pt;}
.xd_c00082{left:53.032787pt;}
.x3_c00082{left:54.625587pt;}
.x1_c00082{left:70.666667pt;}
.x1d_c00082{left:73.008787pt;}
.x17_c00082{left:83.119987pt;}
.x1e_c00082{left:92.650387pt;}
.x27_c00082{left:94.221187pt;}
.x3e_c00082{left:101.995987pt;}
.x2d_c00082{left:103.082787pt;}
.xe_c00082{left:111.970787pt;}
.x40_c00082{left:113.220387pt;}
.x28_c00082{left:114.777987pt;}
.x1f_c00082{left:121.998387pt;}
.x4_c00082{left:123.045587pt;}
.x59_c00082{left:124.273187pt;}
.x34_c00082{left:131.194387pt;}
.x3f_c00082{left:132.835587pt;}
.xf_c00082{left:141.947987pt;}
.x5_c00082{left:151.579587pt;}
.x4c_c00082{left:160.599587pt;}
.x43_c00082{left:161.853587pt;}
.x20_c00082{left:171.203587pt;}
.x5a_c00082{left:172.774387pt;}
.x2e_c00082{left:181.037587pt;}
.x6_c00082{left:191.452387pt;}
.x18_c00082{left:200.806787pt;}
.x57_c00082{left:201.946387pt;}
.x37_c00082{left:210.495587pt;}
.x29_c00082{left:220.773987pt;}
.x4a_c00082{left:221.873987pt;}
.x44_c00082{left:231.272387pt;}
.x10_c00082{left:241.286787pt;}
.x21_c00082{left:250.258387pt;}
.x48_c00082{left:258.424787pt;}
.x7_c00082{left:260.435587pt;}
.x2f_c00082{left:270.537987pt;}
.x49_c00082{left:279.069587pt;}
.x11_c00082{left:280.195987pt;}
.x5b_c00082{left:281.436787pt;}
.x19_c00082{left:288.890387pt;}
.x52_c00082{left:289.977187pt;}
.x54_c00082{left:299.841987pt;}
.x22_c00082{left:309.323987pt;}
.x39_c00082{left:310.269987pt;}
.x30_c00082{left:318.735587pt;}
.x5c_c00082{left:320.095187pt;}
.x12_c00082{left:328.983187pt;}
.x3a_c00082{left:338.350787pt;}
.x4e_c00082{left:340.018387pt;}
.x2a_c00082{left:348.945987pt;}
.x8_c00082{left:358.559987pt;}
.x5d_c00082{left:360.020787pt;}
.x1c_c00082{left:368.266387pt;}
.x31_c00082{left:369.185987pt;}
.x9_c00082{left:378.368787pt;}
.x2b_c00082{left:388.501987pt;}
.x32_c00082{left:397.658387pt;}
.xa_c00082{left:408.011587pt;}
.x38_c00082{left:416.877587pt;}
.x13_c00082{left:418.281187pt;}
.x1a_c00082{left:426.693987pt;}
.x53_c00082{left:428.568387pt;}
.x35_c00082{left:429.989587pt;}
.x45_c00082{left:437.953587pt;}
.x33_c00082{left:447.153987pt;}
.x55_c00082{left:449.314387pt;}
.x23_c00082{left:456.970387pt;}
.x3b_c00082{left:466.610787pt;}
.x46_c00082{left:476.449187pt;}
.x5e_c00082{left:477.703187pt;}
.x24_c00082{left:487.066387pt;}
.x14_c00082{left:495.941187pt;}
.x41_c00082{left:497.177587pt;}
.x56_c00082{left:499.051987pt;}
.xb_c00082{left:506.369187pt;}
.x25_c00082{left:515.578387pt;}
.x15_c00082{left:525.214387pt;}
.x1b_c00082{left:526.301187pt;}
.x36_c00082{left:535.615987pt;}
.x3d_c00082{left:546.263987pt;}
.x26_c00082{left:555.187187pt;}
.x4b_c00082{left:556.740387pt;}
.x2_c00082{left:564.941987pt;}
.x58_c00082{left:566.543587pt;}
.x2c_c00082{left:575.295187pt;}
.x4f_c00082{left:576.276387pt;}
.x3c_c00082{left:585.445987pt;}
.x16_c00082{left:594.782787pt;}
.xc_c00082{left:595.706787pt;}
.x42_c00082{left:602.680787pt;}
.x50_c00082{left:603.837987pt;}
.x47_c00082{left:605.201987pt;}
.x4d_c00082{left:607.085187pt;}
.x51_c00082{left:609.716387pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4c0a2640aa1bdab3f6be3cac.woff2')format("woff");}.ff1_c00083{font-family:ff1_c00083;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00083;src:url('chunks/assets/font_c3e9f1f96fbe43a5fdf9293c.woff2')format("woff");}.ff2_c00083{font-family:ff2_c00083;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00083;src:url('chunks/assets/font_841cf5d821b70ece2d12b864.woff2')format("woff");}.ff3_c00083{font-family:ff3_c00083;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00083;src:url('chunks/assets/font_0fbee27f094b6301fbfaf483.woff2')format("woff");}.ff4_c00083{font-family:ff4_c00083;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5c_c00083{transform:matrix(0.057144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.057144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.057144,0.000000,0.000000,0.250000,0,0);}
.m1c_c00083{transform:matrix(0.123412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123412,0.000000,0.000000,0.250000,0,0);}
.m87_c00083{transform:matrix(0.192568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192568,0.000000,0.000000,0.250000,0,0);}
.m89_c00083{transform:matrix(0.198198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198198,0.000000,0.000000,0.250000,0,0);}
.m88_c00083{transform:matrix(0.199325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199325,0.000000,0.000000,0.250000,0,0);}
.m7e_c00083{transform:matrix(0.209647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209647,0.000000,0.000000,0.250000,0,0);}
.ma9_c00083{transform:matrix(0.220714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220714,0.000000,0.000000,0.250000,0,0);}
.m2c_c00083{transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);}
.m77_c00083{transform:matrix(0.242641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242641,0.000000,0.000000,0.250000,0,0);}
.m62_c00083{transform:matrix(0.245508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245508,0.000000,0.000000,0.250000,0,0);}
.m9d_c00083{transform:matrix(0.245930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245930,0.000000,0.000000,0.250000,0,0);}
.m2e_c00083{transform:matrix(0.246419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246419,0.000000,0.000000,0.250000,0,0);}
.m70_c00083{transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);}
.m6b_c00083{transform:matrix(0.249662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249662,0.000000,0.000000,0.250000,0,0);}
.m1_c00083{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00083{transform:matrix(0.250677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250677,0.000000,0.000000,0.250000,0,0);}
.m30_c00083{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.m85_c00083{transform:matrix(0.254042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254042,0.000000,0.000000,0.250000,0,0);}
.m49_c00083{transform:matrix(0.254408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254408,0.000000,0.000000,0.250000,0,0);}
.ma7_c00083{transform:matrix(0.255030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255030,0.000000,0.000000,0.250000,0,0);}
.mf_c00083{transform:matrix(0.255653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255653,0.000000,0.000000,0.250000,0,0);}
.m38_c00083{transform:matrix(0.256494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256494,0.000000,0.000000,0.250000,0,0);}
.m9f_c00083{transform:matrix(0.257917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257917,0.000000,0.000000,0.250000,0,0);}
.mb0_c00083{transform:matrix(0.258139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258139,0.000000,0.000000,0.250000,0,0);}
.m69_c00083{transform:matrix(0.258996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258996,0.000000,0.000000,0.250000,0,0);}
.m43_c00083{transform:matrix(0.259618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259618,0.000000,0.000000,0.250000,0,0);}
.m31_c00083{transform:matrix(0.260579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260579,0.000000,0.000000,0.250000,0,0);}
.m6d_c00083{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m2a_c00083{transform:matrix(0.262939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262939,0.000000,0.000000,0.250000,0,0);}
.m74_c00083{transform:matrix(0.263017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263017,0.000000,0.000000,0.250000,0,0);}
.m15_c00083{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m54_c00083{transform:matrix(0.263541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263541,0.000000,0.000000,0.250000,0,0);}
.m50_c00083{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.mad_c00083{transform:matrix(0.264128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264128,0.000000,0.000000,0.250000,0,0);}
.m7_c00083{transform:matrix(0.264162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264162,0.000000,0.000000,0.250000,0,0);}
.m59_c00083{transform:matrix(0.266174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266174,0.000000,0.000000,0.250000,0,0);}
.m32_c00083{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m8b_c00083{transform:matrix(0.267403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267403,0.000000,0.000000,0.250000,0,0);}
.m46_c00083{transform:matrix(0.267573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267573,0.000000,0.000000,0.250000,0,0);}
.m4e_c00083{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m8_c00083{transform:matrix(0.268110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268110,0.000000,0.000000,0.250000,0,0);}
.ma0_c00083{transform:matrix(0.270504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270504,0.000000,0.000000,0.250000,0,0);}
.m68_c00083{transform:matrix(0.270546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270546,0.000000,0.000000,0.250000,0,0);}
.m21_c00083{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m1f_c00083{transform:matrix(0.271063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271063,0.000000,0.000000,0.250000,0,0);}
.mc_c00083{transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);}
.mb8_c00083{transform:matrix(0.271722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271722,0.000000,0.000000,0.250000,0,0);}
.m79_c00083{transform:matrix(0.271810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271810,0.000000,0.000000,0.250000,0,0);}
.m71_c00083{transform:matrix(0.272698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272698,0.000000,0.000000,0.250000,0,0);}
.m5b_c00083{transform:matrix(0.273434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273434,0.000000,0.000000,0.250000,0,0);}
.ma_c00083{transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);}
.m99_c00083{transform:matrix(0.274132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274132,0.000000,0.000000,0.250000,0,0);}
.m65_c00083{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m8a_c00083{transform:matrix(0.276058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276058,0.000000,0.000000,0.250000,0,0);}
.m92_c00083{transform:matrix(0.276958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276958,0.000000,0.000000,0.250000,0,0);}
.m3_c00083{transform:matrix(0.276980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276980,0.000000,0.000000,0.250000,0,0);}
.md_c00083{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.mb2_c00083{transform:matrix(0.278643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278643,0.000000,0.000000,0.250000,0,0);}
.maa_c00083{transform:matrix(0.278967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278967,0.000000,0.000000,0.250000,0,0);}
.m9e_c00083{transform:matrix(0.279018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279018,0.000000,0.000000,0.250000,0,0);}
.m95_c00083{transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);}
.ma8_c00083{transform:matrix(0.279482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279482,0.000000,0.000000,0.250000,0,0);}
.m8d_c00083{transform:matrix(0.280159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280159,0.000000,0.000000,0.250000,0,0);}
.m4c_c00083{transform:matrix(0.280392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280392,0.000000,0.000000,0.250000,0,0);}
.m4d_c00083{transform:matrix(0.280427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280427,0.000000,0.000000,0.250000,0,0);}
.ma5_c00083{transform:matrix(0.281376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281376,0.000000,0.000000,0.250000,0,0);}
.mb3_c00083{transform:matrix(0.281428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281428,0.000000,0.000000,0.250000,0,0);}
.m9_c00083{transform:matrix(0.281509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281509,0.000000,0.000000,0.250000,0,0);}
.m51_c00083{transform:matrix(0.281782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281782,0.000000,0.000000,0.250000,0,0);}
.mbd_c00083{transform:matrix(0.281783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281783,0.000000,0.000000,0.250000,0,0);}
.m7d_c00083{transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);}
.m35_c00083{transform:matrix(0.282148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282148,0.000000,0.000000,0.250000,0,0);}
.m29_c00083{transform:matrix(0.282388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282388,0.000000,0.000000,0.250000,0,0);}
.m63_c00083{transform:matrix(0.283720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283720,0.000000,0.000000,0.250000,0,0);}
.m58_c00083{transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);}
.m7b_c00083{transform:matrix(0.284116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284116,0.000000,0.000000,0.250000,0,0);}
.m42_c00083{transform:matrix(0.284207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284207,0.000000,0.000000,0.250000,0,0);}
.mbc_c00083{transform:matrix(0.284534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284534,0.000000,0.000000,0.250000,0,0);}
.m91_c00083{transform:matrix(0.284570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284570,0.000000,0.000000,0.250000,0,0);}
.m6c_c00083{transform:matrix(0.284900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284900,0.000000,0.000000,0.250000,0,0);}
.m52_c00083{transform:matrix(0.285801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285801,0.000000,0.000000,0.250000,0,0);}
.m39_c00083{transform:matrix(0.286425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286425,0.000000,0.000000,0.250000,0,0);}
.m73_c00083{transform:matrix(0.286907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286907,0.000000,0.000000,0.250000,0,0);}
.m17_c00083{transform:matrix(0.287071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287071,0.000000,0.000000,0.250000,0,0);}
.m2b_c00083{transform:matrix(0.287183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287183,0.000000,0.000000,0.250000,0,0);}
.mba_c00083{transform:matrix(0.288208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288208,0.000000,0.000000,0.250000,0,0);}
.m6f_c00083{transform:matrix(0.288578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288578,0.000000,0.000000,0.250000,0,0);}
.m8f_c00083{transform:matrix(0.288623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288623,0.000000,0.000000,0.250000,0,0);}
.m60_c00083{transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);}
.mb_c00083{transform:matrix(0.289117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289117,0.000000,0.000000,0.250000,0,0);}
.m7f_c00083{transform:matrix(0.289170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289170,0.000000,0.000000,0.250000,0,0);}
.m3e_c00083{transform:matrix(0.289278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289278,0.000000,0.000000,0.250000,0,0);}
.m3d_c00083{transform:matrix(0.289740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289740,0.000000,0.000000,0.250000,0,0);}
.m96_c00083{transform:matrix(0.289951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289951,0.000000,0.000000,0.250000,0,0);}
.m90_c00083{transform:matrix(0.290157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290157,0.000000,0.000000,0.250000,0,0);}
.m1a_c00083{transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);}
.m10_c00083{transform:matrix(0.290950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290950,0.000000,0.000000,0.250000,0,0);}
.mb6_c00083{transform:matrix(0.291341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291341,0.000000,0.000000,0.250000,0,0);}
.m20_c00083{transform:matrix(0.291537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291537,0.000000,0.000000,0.250000,0,0);}
.m76_c00083{transform:matrix(0.291699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291699,0.000000,0.000000,0.250000,0,0);}
.m12_c00083{transform:matrix(0.292699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292699,0.000000,0.000000,0.250000,0,0);}
.m66_c00083{transform:matrix(0.293092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293092,0.000000,0.000000,0.250000,0,0);}
.mab_c00083{transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);}
.m6_c00083{transform:matrix(0.293929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293929,0.000000,0.000000,0.250000,0,0);}
.m9a_c00083{transform:matrix(0.294443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294443,0.000000,0.000000,0.250000,0,0);}
.m75_c00083{transform:matrix(0.295199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295199,0.000000,0.000000,0.250000,0,0);}
.m4f_c00083{transform:matrix(0.295292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295292,0.000000,0.000000,0.250000,0,0);}
.m2f_c00083{transform:matrix(0.296679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296679,0.000000,0.000000,0.250000,0,0);}
.m64_c00083{transform:matrix(0.297009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297009,0.000000,0.000000,0.250000,0,0);}
.m5e_c00083{transform:matrix(0.297256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297256,0.000000,0.000000,0.250000,0,0);}
.ma2_c00083{transform:matrix(0.297306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297306,0.000000,0.000000,0.250000,0,0);}
.m83_c00083{transform:matrix(0.297588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297588,0.000000,0.000000,0.250000,0,0);}
.m3f_c00083{transform:matrix(0.298595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298595,0.000000,0.000000,0.250000,0,0);}
.m93_c00083{transform:matrix(0.298951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298951,0.000000,0.000000,0.250000,0,0);}
.me_c00083{transform:matrix(0.299719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299719,0.000000,0.000000,0.250000,0,0);}
.mb9_c00083{transform:matrix(0.299763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299763,0.000000,0.000000,0.250000,0,0);}
.m5_c00083{transform:matrix(0.299809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299809,0.000000,0.000000,0.250000,0,0);}
.m82_c00083{transform:matrix(0.300074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300074,0.000000,0.000000,0.250000,0,0);}
.m26_c00083{transform:matrix(0.300181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300181,0.000000,0.000000,0.250000,0,0);}
.m47_c00083{transform:matrix(0.300360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300360,0.000000,0.000000,0.250000,0,0);}
.m37_c00083{transform:matrix(0.300485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300485,0.000000,0.000000,0.250000,0,0);}
.m0_c00083{transform:matrix(0.301173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301173,0.000000,0.000000,0.250000,0,0);}
.ma1_c00083{transform:matrix(0.301981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301981,0.000000,0.000000,0.250000,0,0);}
.m33_c00083{transform:matrix(0.303162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303162,0.000000,0.000000,0.250000,0,0);}
.m61_c00083{transform:matrix(0.303605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303605,0.000000,0.000000,0.250000,0,0);}
.m25_c00083{transform:matrix(0.304001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304001,0.000000,0.000000,0.250000,0,0);}
.maf_c00083{transform:matrix(0.304307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304307,0.000000,0.000000,0.250000,0,0);}
.m94_c00083{transform:matrix(0.304481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304481,0.000000,0.000000,0.250000,0,0);}
.mb4_c00083{transform:matrix(0.304826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304826,0.000000,0.000000,0.250000,0,0);}
.m56_c00083{transform:matrix(0.304920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304920,0.000000,0.000000,0.250000,0,0);}
.m7a_c00083{transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);}
.mac_c00083{transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);}
.m40_c00083{transform:matrix(0.305381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305381,0.000000,0.000000,0.250000,0,0);}
.m14_c00083{transform:matrix(0.305419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305419,0.000000,0.000000,0.250000,0,0);}
.mae_c00083{transform:matrix(0.306846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306846,0.000000,0.000000,0.250000,0,0);}
.m18_c00083{transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);}
.m36_c00083{transform:matrix(0.310465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310465,0.000000,0.000000,0.250000,0,0);}
.m44_c00083{transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);}
.m9b_c00083{transform:matrix(0.311211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311211,0.000000,0.000000,0.250000,0,0);}
.m84_c00083{transform:matrix(0.311511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311511,0.000000,0.000000,0.250000,0,0);}
.m9c_c00083{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.m55_c00083{transform:matrix(0.314011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314011,0.000000,0.000000,0.250000,0,0);}
.m5a_c00083{transform:matrix(0.314570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314570,0.000000,0.000000,0.250000,0,0);}
.m6e_c00083{transform:matrix(0.314815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314815,0.000000,0.000000,0.250000,0,0);}
.m67_c00083{transform:matrix(0.315418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315418,0.000000,0.000000,0.250000,0,0);}
.m81_c00083{transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);}
.m4b_c00083{transform:matrix(0.316193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316193,0.000000,0.000000,0.250000,0,0);}
.mbb_c00083{transform:matrix(0.316427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316427,0.000000,0.000000,0.250000,0,0);}
.m13_c00083{transform:matrix(0.316831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316831,0.000000,0.000000,0.250000,0,0);}
.ma6_c00083{transform:matrix(0.316991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316991,0.000000,0.000000,0.250000,0,0);}
.m19_c00083{transform:matrix(0.317172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317172,0.000000,0.000000,0.250000,0,0);}
.mb7_c00083{transform:matrix(0.317553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317553,0.000000,0.000000,0.250000,0,0);}
.ma4_c00083{transform:matrix(0.317620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317620,0.000000,0.000000,0.250000,0,0);}
.m34_c00083{transform:matrix(0.317787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317787,0.000000,0.000000,0.250000,0,0);}
.m8e_c00083{transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);}
.m22_c00083{transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);}
.m80_c00083{transform:matrix(0.319883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319883,0.000000,0.000000,0.250000,0,0);}
.m24_c00083{transform:matrix(0.320895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320895,0.000000,0.000000,0.250000,0,0);}
.m53_c00083{transform:matrix(0.321370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321370,0.000000,0.000000,0.250000,0,0);}
.m3c_c00083{transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);}
.mb5_c00083{transform:matrix(0.321977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321977,0.000000,0.000000,0.250000,0,0);}
.m97_c00083{transform:matrix(0.323210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323210,0.000000,0.000000,0.250000,0,0);}
.m57_c00083{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.m1e_c00083{transform:matrix(0.324484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324484,0.000000,0.000000,0.250000,0,0);}
.m86_c00083{transform:matrix(0.324701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324701,0.000000,0.000000,0.250000,0,0);}
.m98_c00083{transform:matrix(0.324775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324775,0.000000,0.000000,0.250000,0,0);}
.ma3_c00083{transform:matrix(0.325825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325825,0.000000,0.000000,0.250000,0,0);}
.m4a_c00083{transform:matrix(0.326960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326960,0.000000,0.000000,0.250000,0,0);}
.m78_c00083{transform:matrix(0.327213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327213,0.000000,0.000000,0.250000,0,0);}
.m5d_c00083{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.m23_c00083{transform:matrix(0.327636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327636,0.000000,0.000000,0.250000,0,0);}
.m48_c00083{transform:matrix(0.327729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327729,0.000000,0.000000,0.250000,0,0);}
.m28_c00083{transform:matrix(0.329023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329023,0.000000,0.000000,0.250000,0,0);}
.m72_c00083{transform:matrix(0.329679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329679,0.000000,0.000000,0.250000,0,0);}
.m3a_c00083{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m27_c00083{transform:matrix(0.339766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339766,0.000000,0.000000,0.250000,0,0);}
.mb1_c00083{transform:matrix(0.341828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341828,0.000000,0.000000,0.250000,0,0);}
.m3b_c00083{transform:matrix(0.342108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342108,0.000000,0.000000,0.250000,0,0);}
.m11_c00083{transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);}
.m45_c00083{transform:matrix(0.349123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349123,0.000000,0.000000,0.250000,0,0);}
.m5f_c00083{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m6a_c00083{transform:matrix(0.349685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349685,0.000000,0.000000,0.250000,0,0);}
.m2d_c00083{transform:matrix(0.352963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352963,0.000000,0.000000,0.250000,0,0);}
.m16_c00083{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m2_c00083{transform:matrix(0.358323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358323,0.000000,0.000000,0.250000,0,0);}
.m4_c00083{transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);}
.m8c_c00083{transform:matrix(0.378365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378365,0.000000,0.000000,0.250000,0,0);}
.m7c_c00083{transform:matrix(0.378961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378961,0.000000,0.000000,0.250000,0,0);}
.m41_c00083{transform:matrix(0.432296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432296,0.000000,0.000000,0.250000,0,0);}
.m1b_c00083{transform:matrix(0.457726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457726,0.000000,0.000000,0.250000,0,0);}
.v0_c00083{vertical-align:0.000000px;}
.v1_c00083{vertical-align:57.024000px;}
.lsf_c00083{letter-spacing:-2.827440px;}
.ls9_c00083{letter-spacing:-2.744280px;}
.ls10_c00083{letter-spacing:-2.328480px;}
.ls6_c00083{letter-spacing:-1.760220px;}
.lsa_c00083{letter-spacing:-0.180338px;}
.ls2_c00083{letter-spacing:0.000000px;}
.ls0_c00083{letter-spacing:0.705672px;}
.ls8_c00083{letter-spacing:1.246687px;}
.ls5_c00083{letter-spacing:1.544400px;}
.lsc_c00083{letter-spacing:1.685772px;}
.lse_c00083{letter-spacing:2.132698px;}
.ls7_c00083{letter-spacing:2.877574px;}
.ls11_c00083{letter-spacing:3.246091px;}
.ls4_c00083{letter-spacing:3.622450px;}
.ls13_c00083{letter-spacing:3.742200px;}
.ls1_c00083{letter-spacing:3.821400px;}
.ls3_c00083{letter-spacing:3.920400px;}
.lsb_c00083{letter-spacing:4.395610px;}
.lsd_c00083{letter-spacing:49.896198px;}
.ls12_c00083{letter-spacing:52.747398px;}
.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:0.000000px;}
.ws0_c00083{word-spacing:22.738716px;}
._4_c00083{width:7.919208px;}
._0_c00083{width:9.487368px;}
._2_c00083{width:28.775736px;}
._1_c00083{width:31.755240px;}
._3_c00083{width:33.715440px;}
._5_c00083{width:620.900676px;}
.fc0_c00083{color:transparent;}
.fs3_c00083{font-size:30.888000px;}
.fs1_c00083{font-size:43.560000px;}
.fs6_c00083{font-size:49.896198px;}
.fs4_c00083{font-size:50.292000px;}
.fsb_c00083{font-size:52.747398px;}
.fse_c00083{font-size:54.846198px;}
.fsc_c00083{font-size:60.588000px;}
.fs9_c00083{font-size:66.528000px;}
.fsd_c00083{font-size:74.844000px;}
.fs7_c00083{font-size:76.032198px;}
.fs0_c00083{font-size:76.428000px;}
.fs2_c00083{font-size:78.408000px;}
.fs8_c00083{font-size:80.784000px;}
.fs5_c00083{font-size:87.912198px;}
.fsa_c00083{font-size:90.288000px;}
.y0_c00083{bottom:0.000000px;}
.y23_c00083{bottom:26.641935px;}
.y1_c00083{bottom:76.500000px;}
.y22_c00083{bottom:150.312735px;}
.y21_c00083{bottom:182.032335px;}
.y24_c00083{bottom:192.011535px;}
.y20_c00083{bottom:215.172585px;}
.y1f_c00083{bottom:249.748335px;}
.y1e_c00083{bottom:282.893535px;}
.y1d_c00083{bottom:316.395135px;}
.y1c_c00083{bottom:349.540335px;}
.y1b_c00083{bottom:380.542185px;}
.y19_c00083{bottom:411.910335px;}
.y1a_c00083{bottom:412.261785px;}
.y18_c00083{bottom:444.699135px;}
.y16_c00083{bottom:445.050585px;}
.y17_c00083{bottom:454.673385px;}
.y15_c00083{bottom:476.775135px;}
.y14_c00083{bottom:509.202585px;}
.y13_c00083{bottom:542.352735px;}
.y12_c00083{bottom:567.295785px;}
.y11_c00083{bottom:575.141535px;}
.y10_c00083{bottom:608.638185px;}
.yf_c00083{bottom:642.496185px;}
.yd_c00083{bottom:675.284985px;}
.ye_c00083{bottom:680.992335px;}
.yc_c00083{bottom:707.722335px;}
.yb_c00083{bottom:740.154735px;}
.ya_c00083{bottom:772.225785px;}
.y9_c00083{bottom:803.950335px;}
.y8_c00083{bottom:853.133535px;}
.y6_c00083{bottom:868.815135px;}
.y7_c00083{bottom:874.156185px;}
.y5_c00083{bottom:900.886185px;}
.y4_c00083{bottom:933.674985px;}
.y3_c00083{bottom:1005.672735px;}
.y2_c00083{bottom:1091.916585px;}
.h5_c00083{height:32.215219px;}
.h8_c00083{height:33.230868px;}
.hd_c00083{height:35.129767px;}
.h3_c00083{height:42.751758px;}
.h6_c00083{height:49.358848px;}
.h10_c00083{height:57.202871px;}
.he_c00083{height:63.191391px;}
.hb_c00083{height:65.261109px;}
.hf_c00083{height:73.455293px;}
.h2_c00083{height:75.009902px;}
.h4_c00083{height:76.953164px;}
.ha_c00083{height:79.285078px;}
.h9_c00083{height:79.299207px;}
.h7_c00083{height:86.281015px;}
.hc_c00083{height:151.191562px;}
.h1_c00083{height:1110.000000px;}
.h0_c00083{height:1263.000000px;}
.w1_c00083{width:733.500000px;}
.w0_c00083{width:892.500000px;}
.x0_c00083{left:0.000000px;}
.x2c_c00083{left:51.360735px;}
.x4_c00083{left:52.420035px;}
.x34_c00083{left:74.402985px;}
.x1_c00083{left:79.500000px;}
.xf_c00083{left:84.070335px;}
.x5b_c00083{left:85.985985px;}
.x4e_c00083{left:95.133585px;}
.x5_c00083{left:96.212685px;}
.x1e_c00083{left:105.766185px;}
.x35_c00083{left:107.087835px;}
.x56_c00083{left:110.260785px;}
.x6_c00083{left:118.467885px;}
.x2d_c00083{left:127.917435px;}
.x3b_c00083{left:129.179685px;}
.x49_c00083{left:139.876635px;}
.x63_c00083{left:140.950785px;}
.x1f_c00083{left:149.301435px;}
.x57_c00083{left:154.563285px;}
.x10_c00083{left:161.958585px;}
.x64_c00083{left:162.998085px;}
.x36_c00083{left:173.026785px;}
.x5e_c00083{left:174.739485px;}
.x4a_c00083{left:184.055385px;}
.x2e_c00083{left:193.138635px;}
.x7_c00083{left:195.069135px;}
.x3c_c00083{left:196.484835px;}
.x11_c00083{left:205.295835px;}
.x2f_c00083{left:217.378785px;}
.x8_c00083{left:228.402435px;}
.x4f_c00083{left:229.649835px;}
.x45_c00083{left:239.841885px;}
.x12_c00083{left:241.089285px;}
.x25_c00083{left:251.424885px;}
.x65_c00083{left:252.464385px;}
.x16_c00083{left:262.433685px;}
.x52_c00083{left:264.577035px;}
.x20_c00083{left:273.120735px;}
.x26_c00083{left:283.817685px;}
.x37_c00083{left:284.842335px;}
.x17_c00083{left:295.247235px;}
.x58_c00083{left:296.544135px;}
.x3d_c00083{left:307.691535px;}
.x38_c00083{left:317.517285px;}
.x59_c00083{left:318.640935px;}
.x54_c00083{left:320.521935px;}
.x9_c00083{left:328.050885px;}
.x53_c00083{left:329.803185px;}
.x3e_c00083{left:331.194135px;}
.x27_c00083{left:339.826935px;}
.xa_c00083{left:350.835735px;}
.x13_c00083{left:351.914835px;}
.x4b_c00083{left:361.042635px;}
.x61_c00083{left:363.621585px;}
.x21_c00083{left:372.595935px;}
.x28_c00083{left:373.942335px;}
.x5c_c00083{left:383.495835px;}
.x46_c00083{left:384.673935px;}
.x5a_c00083{left:385.757985px;}
.x4c_c00083{left:395.227335px;}
.x30_c00083{left:396.459885px;}
.x3_c00083{left:402.974085px;}
.x18_c00083{left:406.453935px;}
.x5d_c00083{left:417.824085px;}
.xb_c00083{left:428.021085px;}
.x5f_c00083{left:429.263535px;}
.x19_c00083{left:439.450635px;}
.x14_c00083{left:449.885235px;}
.xc_c00083{left:451.528635px;}
.x3f_c00083{left:462.022635px;}
.x29_c00083{left:472.749285px;}
.x50_c00083{left:477.709185px;}
.x2a_c00083{left:483.985785px;}
.x51_c00083{left:485.059935px;}
.x40_c00083{left:495.024285px;}
.x22_c00083{left:506.938935px;}
.xd_c00083{left:516.571635px;}
.x2b_c00083{left:517.789335px;}
.x41_c00083{left:528.634785px;}
.x23_c00083{left:539.381235px;}
.x66_c00083{left:540.445485px;}
.x1a_c00083{left:549.964335px;}
.x31_c00083{left:562.032435px;}
.x15_c00083{left:572.006685px;}
.x55_c00083{left:573.244185px;}
.x24_c00083{left:583.535235px;}
.x32_c00083{left:586.025085px;}
.x42_c00083{left:593.014485px;}
.xe_c00083{left:594.959835px;}
.x39_c00083{left:605.146935px;}
.x62_c00083{left:606.364635px;}
.x47_c00083{left:617.091285px;}
.x2_c00083{left:627.357585px;}
.x3a_c00083{left:638.707935px;}
.x33_c00083{left:646.385385px;}
.x43_c00083{left:649.454385px;}
.x48_c00083{left:650.543385px;}
.x44_c00083{left:661.611585px;}
.x4d_c00083{left:670.402785px;}
.x1d_c00083{left:673.154985px;}
.x67_c00083{left:676.243785px;}
.x1b_c00083{left:684.035085px;}
.x60_c00083{left:694.756785px;}
.x1c_c00083{left:696.301185px;}
.x68_c00083{left:713.754885px;}
@media print{
.v0_c00083{vertical-align:0.000000pt;}
.v1_c00083{vertical-align:50.688000pt;}
.lsf_c00083{letter-spacing:-2.513280pt;}
.ls9_c00083{letter-spacing:-2.439360pt;}
.ls10_c00083{letter-spacing:-2.069760pt;}
.ls6_c00083{letter-spacing:-1.564640pt;}
.lsa_c00083{letter-spacing:-0.160301pt;}
.ls2_c00083{letter-spacing:0.000000pt;}
.ls0_c00083{letter-spacing:0.627264pt;}
.ls8_c00083{letter-spacing:1.108166pt;}
.ls5_c00083{letter-spacing:1.372800pt;}
.lsc_c00083{letter-spacing:1.498464pt;}
.lse_c00083{letter-spacing:1.895731pt;}
.ls7_c00083{letter-spacing:2.557843pt;}
.ls11_c00083{letter-spacing:2.885414pt;}
.ls4_c00083{letter-spacing:3.219955pt;}
.ls13_c00083{letter-spacing:3.326400pt;}
.ls1_c00083{letter-spacing:3.396800pt;}
.ls3_c00083{letter-spacing:3.484800pt;}
.lsb_c00083{letter-spacing:3.907209pt;}
.lsd_c00083{letter-spacing:44.352176pt;}
.ls12_c00083{letter-spacing:46.886576pt;}
.ws1_c00083{word-spacing:0.000000pt;}
.ws0_c00083{word-spacing:20.212192pt;}
._4_c00083{width:7.039296pt;}
._0_c00083{width:8.433216pt;}
._2_c00083{width:25.578432pt;}
._1_c00083{width:28.226880pt;}
._3_c00083{width:29.969280pt;}
._5_c00083{width:551.911712pt;}
.fs3_c00083{font-size:27.456000pt;}
.fs1_c00083{font-size:38.720000pt;}
.fs6_c00083{font-size:44.352176pt;}
.fs4_c00083{font-size:44.704000pt;}
.fsb_c00083{font-size:46.886576pt;}
.fse_c00083{font-size:48.752176pt;}
.fsc_c00083{font-size:53.856000pt;}
.fs9_c00083{font-size:59.136000pt;}
.fsd_c00083{font-size:66.528000pt;}
.fs7_c00083{font-size:67.584176pt;}
.fs0_c00083{font-size:67.936000pt;}
.fs2_c00083{font-size:69.696000pt;}
.fs8_c00083{font-size:71.808000pt;}
.fs5_c00083{font-size:78.144176pt;}
.fsa_c00083{font-size:80.256000pt;}
.y0_c00083{bottom:0.000000pt;}
.y23_c00083{bottom:23.681720pt;}
.y1_c00083{bottom:68.000000pt;}
.y22_c00083{bottom:133.611320pt;}
.y21_c00083{bottom:161.806520pt;}
.y24_c00083{bottom:170.676920pt;}
.y20_c00083{bottom:191.264520pt;}
.y1f_c00083{bottom:221.998520pt;}
.y1e_c00083{bottom:251.460920pt;}
.y1d_c00083{bottom:281.240120pt;}
.y1c_c00083{bottom:310.702520pt;}
.y1b_c00083{bottom:338.259720pt;}
.y19_c00083{bottom:366.142520pt;}
.y1a_c00083{bottom:366.454920pt;}
.y18_c00083{bottom:395.288120pt;}
.y16_c00083{bottom:395.600520pt;}
.y17_c00083{bottom:404.154120pt;}
.y15_c00083{bottom:423.800120pt;}
.y14_c00083{bottom:452.624520pt;}
.y13_c00083{bottom:482.091320pt;}
.y12_c00083{bottom:504.262920pt;}
.y11_c00083{bottom:511.236920pt;}
.y10_c00083{bottom:541.011720pt;}
.yf_c00083{bottom:571.107720pt;}
.yd_c00083{bottom:600.253320pt;}
.ye_c00083{bottom:605.326520pt;}
.yc_c00083{bottom:629.086520pt;}
.yb_c00083{bottom:657.915320pt;}
.ya_c00083{bottom:686.422920pt;}
.y9_c00083{bottom:714.622520pt;}
.y8_c00083{bottom:758.340920pt;}
.y6_c00083{bottom:772.280120pt;}
.y7_c00083{bottom:777.027720pt;}
.y5_c00083{bottom:800.787720pt;}
.y4_c00083{bottom:829.933320pt;}
.y3_c00083{bottom:893.931320pt;}
.y2_c00083{bottom:970.592520pt;}
.h5_c00083{height:28.635750pt;}
.h8_c00083{height:29.538549pt;}
.hd_c00083{height:31.226460pt;}
.h3_c00083{height:38.001563pt;}
.h6_c00083{height:43.874531pt;}
.h10_c00083{height:50.846996pt;}
.he_c00083{height:56.170125pt;}
.hb_c00083{height:58.009875pt;}
.hf_c00083{height:65.293594pt;}
.h2_c00083{height:66.675469pt;}
.h4_c00083{height:68.402813pt;}
.ha_c00083{height:70.475625pt;}
.h9_c00083{height:70.488184pt;}
.h7_c00083{height:76.694235pt;}
.hc_c00083{height:134.392500pt;}
.h1_c00083{height:986.666667pt;}
.h0_c00083{height:1122.666667pt;}
.w1_c00083{width:652.000000pt;}
.w0_c00083{width:793.333333pt;}
.x0_c00083{left:0.000000pt;}
.x2c_c00083{left:45.653987pt;}
.x4_c00083{left:46.595587pt;}
.x34_c00083{left:66.135987pt;}
.x1_c00083{left:70.666667pt;}
.xf_c00083{left:74.729187pt;}
.x5b_c00083{left:76.431987pt;}
.x4e_c00083{left:84.563187pt;}
.x5_c00083{left:85.522387pt;}
.x1e_c00083{left:94.014387pt;}
.x35_c00083{left:95.189187pt;}
.x56_c00083{left:98.009587pt;}
.x6_c00083{left:105.304787pt;}
.x2d_c00083{left:113.704387pt;}
.x3b_c00083{left:114.826387pt;}
.x49_c00083{left:124.334787pt;}
.x63_c00083{left:125.289587pt;}
.x1f_c00083{left:132.712387pt;}
.x57_c00083{left:137.389587pt;}
.x10_c00083{left:143.963187pt;}
.x64_c00083{left:144.887187pt;}
.x36_c00083{left:153.801587pt;}
.x5e_c00083{left:155.323987pt;}
.x4a_c00083{left:163.604787pt;}
.x2e_c00083{left:171.678787pt;}
.x7_c00083{left:173.394787pt;}
.x3c_c00083{left:174.653187pt;}
.x11_c00083{left:182.485187pt;}
.x2f_c00083{left:193.225587pt;}
.x8_c00083{left:203.024387pt;}
.x4f_c00083{left:204.133187pt;}
.x45_c00083{left:213.192787pt;}
.x12_c00083{left:214.301587pt;}
.x25_c00083{left:223.488787pt;}
.x65_c00083{left:224.412787pt;}
.x16_c00083{left:233.274387pt;}
.x52_c00083{left:235.179587pt;}
.x20_c00083{left:242.773987pt;}
.x26_c00083{left:252.282387pt;}
.x37_c00083{left:253.193187pt;}
.x17_c00083{left:262.441987pt;}
.x58_c00083{left:263.594787pt;}
.x3d_c00083{left:273.503587pt;}
.x38_c00083{left:282.237587pt;}
.x59_c00083{left:283.236387pt;}
.x54_c00083{left:284.908387pt;}
.x9_c00083{left:291.600787pt;}
.x53_c00083{left:293.158387pt;}
.x3e_c00083{left:294.394787pt;}
.x27_c00083{left:302.068387pt;}
.xa_c00083{left:311.853987pt;}
.x13_c00083{left:312.813187pt;}
.x4b_c00083{left:320.926787pt;}
.x61_c00083{left:323.219187pt;}
.x21_c00083{left:331.196387pt;}
.x28_c00083{left:332.393187pt;}
.x5c_c00083{left:340.885187pt;}
.x46_c00083{left:341.932387pt;}
.x5a_c00083{left:342.895987pt;}
.x4c_c00083{left:351.313187pt;}
.x30_c00083{left:352.408787pt;}
.x3_c00083{left:358.199187pt;}
.x18_c00083{left:361.292387pt;}
.x5d_c00083{left:371.399187pt;}
.xb_c00083{left:380.463187pt;}
.x5f_c00083{left:381.567587pt;}
.x19_c00083{left:390.622787pt;}
.x14_c00083{left:399.897987pt;}
.xc_c00083{left:401.358787pt;}
.x3f_c00083{left:410.686787pt;}
.x29_c00083{left:420.221587pt;}
.x50_c00083{left:424.630387pt;}
.x2a_c00083{left:430.209587pt;}
.x51_c00083{left:431.164387pt;}
.x40_c00083{left:440.021587pt;}
.x22_c00083{left:450.612387pt;}
.xd_c00083{left:459.174787pt;}
.x2b_c00083{left:460.257187pt;}
.x41_c00083{left:469.897587pt;}
.x23_c00083{left:479.449987pt;}
.x66_c00083{left:480.395987pt;}
.x1a_c00083{left:488.857187pt;}
.x31_c00083{left:499.584387pt;}
.x15_c00083{left:508.450387pt;}
.x55_c00083{left:509.550387pt;}
.x24_c00083{left:518.697987pt;}
.x32_c00083{left:520.911187pt;}
.x42_c00083{left:527.123987pt;}
.xe_c00083{left:528.853187pt;}
.x39_c00083{left:537.908387pt;}
.x62_c00083{left:538.990787pt;}
.x47_c00083{left:548.525587pt;}
.x2_c00083{left:557.651187pt;}
.x3a_c00083{left:567.740387pt;}
.x33_c00083{left:574.564787pt;}
.x43_c00083{left:577.292787pt;}
.x48_c00083{left:578.260787pt;}
.x44_c00083{left:588.099187pt;}
.x4d_c00083{left:595.913587pt;}
.x1d_c00083{left:598.359987pt;}
.x67_c00083{left:601.105587pt;}
.x1b_c00083{left:608.031187pt;}
.x60_c00083{left:617.561587pt;}
.x1c_c00083{left:618.934387pt;}
.x68_c00083{left:634.448787pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f558b234812cb81e6226f191.woff2')format("woff");}.ff1_c00084{font-family:ff1_c00084;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00084;src:url('chunks/assets/font_240a76a4c395c0a5bd944187.woff2')format("woff");}.ff2_c00084{font-family:ff2_c00084;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00084;src:url('chunks/assets/font_ea8cddd1939ffe850b5787f4.woff2')format("woff");}.ff3_c00084{font-family:ff3_c00084;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00084;src:url('chunks/assets/font_386291c4d2d23bfa4ffe5ddc.woff2')format("woff");}.ff4_c00084{font-family:ff4_c00084;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2c_c00084{transform:matrix(0.179762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179762,0.000000,0.000000,0.250000,0,0);}
.m2b_c00084{transform:matrix(0.194935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194935,0.000000,0.000000,0.250000,0,0);}
.mf_c00084{transform:matrix(0.220701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220701,0.000000,0.000000,0.250000,0,0);}
.m1_c00084{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m65_c00084{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.m5_c00084{transform:matrix(0.252369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252369,0.000000,0.000000,0.250000,0,0);}
.m77_c00084{transform:matrix(0.254912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254912,0.000000,0.000000,0.250000,0,0);}
.m4d_c00084{transform:matrix(0.255286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255286,0.000000,0.000000,0.250000,0,0);}
.m67_c00084{transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);}
.m5a_c00084{transform:matrix(0.258745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258745,0.000000,0.000000,0.250000,0,0);}
.m3b_c00084{transform:matrix(0.261436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261436,0.000000,0.000000,0.250000,0,0);}
.mb_c00084{transform:matrix(0.262708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262708,0.000000,0.000000,0.250000,0,0);}
.m11_c00084{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m1b_c00084{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m3_c00084{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m4b_c00084{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.m18_c00084{transform:matrix(0.267061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267061,0.000000,0.000000,0.250000,0,0);}
.m14_c00084{transform:matrix(0.267199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267199,0.000000,0.000000,0.250000,0,0);}
.m1c_c00084{transform:matrix(0.267466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267466,0.000000,0.000000,0.250000,0,0);}
.m47_c00084{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m78_c00084{transform:matrix(0.268199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268199,0.000000,0.000000,0.250000,0,0);}
.m49_c00084{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m3a_c00084{transform:matrix(0.270973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270973,0.000000,0.000000,0.250000,0,0);}
.m5f_c00084{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m53_c00084{transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);}
.m0_c00084{transform:matrix(0.276759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276759,0.000000,0.000000,0.250000,0,0);}
.m25_c00084{transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);}
.m43_c00084{transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);}
.m28_c00084{transform:matrix(0.278988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278988,0.000000,0.000000,0.250000,0,0);}
.m4f_c00084{transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);}
.m6c_c00084{transform:matrix(0.280086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280086,0.000000,0.000000,0.250000,0,0);}
.m5c_c00084{transform:matrix(0.282017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282017,0.000000,0.000000,0.250000,0,0);}
.m7d_c00084{transform:matrix(0.282371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282371,0.000000,0.000000,0.250000,0,0);}
.m39_c00084{transform:matrix(0.282618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282618,0.000000,0.000000,0.250000,0,0);}
.m1f_c00084{transform:matrix(0.283016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283016,0.000000,0.000000,0.250000,0,0);}
.m66_c00084{transform:matrix(0.283519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283519,0.000000,0.000000,0.250000,0,0);}
.ma_c00084{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m59_c00084{transform:matrix(0.284092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284092,0.000000,0.000000,0.250000,0,0);}
.m29_c00084{transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);}
.m40_c00084{transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);}
.md_c00084{transform:matrix(0.286477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286477,0.000000,0.000000,0.250000,0,0);}
.m32_c00084{transform:matrix(0.287026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287026,0.000000,0.000000,0.250000,0,0);}
.m6_c00084{transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);}
.m4_c00084{transform:matrix(0.287072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287072,0.000000,0.000000,0.250000,0,0);}
.m6a_c00084{transform:matrix(0.287765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287765,0.000000,0.000000,0.250000,0,0);}
.m5e_c00084{transform:matrix(0.287986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287986,0.000000,0.000000,0.250000,0,0);}
.m31_c00084{transform:matrix(0.288107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288107,0.000000,0.000000,0.250000,0,0);}
.m57_c00084{transform:matrix(0.288576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288576,0.000000,0.000000,0.250000,0,0);}
.m38_c00084{transform:matrix(0.288902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288902,0.000000,0.000000,0.250000,0,0);}
.m6f_c00084{transform:matrix(0.288974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288974,0.000000,0.000000,0.250000,0,0);}
.m46_c00084{transform:matrix(0.289122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289122,0.000000,0.000000,0.250000,0,0);}
.m42_c00084{transform:matrix(0.290489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290489,0.000000,0.000000,0.250000,0,0);}
.m37_c00084{transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);}
.m70_c00084{transform:matrix(0.292866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292866,0.000000,0.000000,0.250000,0,0);}
.m83_c00084{transform:matrix(0.293146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293146,0.000000,0.000000,0.250000,0,0);}
.m79_c00084{transform:matrix(0.293313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293313,0.000000,0.000000,0.250000,0,0);}
.m51_c00084{transform:matrix(0.293400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293400,0.000000,0.000000,0.250000,0,0);}
.m52_c00084{transform:matrix(0.293874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293874,0.000000,0.000000,0.250000,0,0);}
.m48_c00084{transform:matrix(0.295345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295345,0.000000,0.000000,0.250000,0,0);}
.m30_c00084{transform:matrix(0.295938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295938,0.000000,0.000000,0.250000,0,0);}
.m2a_c00084{transform:matrix(0.295955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295955,0.000000,0.000000,0.250000,0,0);}
.m23_c00084{transform:matrix(0.296313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296313,0.000000,0.000000,0.250000,0,0);}
.m26_c00084{transform:matrix(0.296987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296987,0.000000,0.000000,0.250000,0,0);}
.m63_c00084{transform:matrix(0.297286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297286,0.000000,0.000000,0.250000,0,0);}
.m64_c00084{transform:matrix(0.297305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297305,0.000000,0.000000,0.250000,0,0);}
.m22_c00084{transform:matrix(0.297736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297736,0.000000,0.000000,0.250000,0,0);}
.me_c00084{transform:matrix(0.298573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298573,0.000000,0.000000,0.250000,0,0);}
.m6b_c00084{transform:matrix(0.298580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298580,0.000000,0.000000,0.250000,0,0);}
.m80_c00084{transform:matrix(0.298777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298777,0.000000,0.000000,0.250000,0,0);}
.m3c_c00084{transform:matrix(0.299369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299369,0.000000,0.000000,0.250000,0,0);}
.m21_c00084{transform:matrix(0.299427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299427,0.000000,0.000000,0.250000,0,0);}
.m2d_c00084{transform:matrix(0.299850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299850,0.000000,0.000000,0.250000,0,0);}
.m76_c00084{transform:matrix(0.301257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301257,0.000000,0.000000,0.250000,0,0);}
.m10_c00084{transform:matrix(0.302218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302218,0.000000,0.000000,0.250000,0,0);}
.m19_c00084{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m7f_c00084{transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);}
.m7_c00084{transform:matrix(0.303282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303282,0.000000,0.000000,0.250000,0,0);}
.m17_c00084{transform:matrix(0.303446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303446,0.000000,0.000000,0.250000,0,0);}
.m5b_c00084{transform:matrix(0.303692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303692,0.000000,0.000000,0.250000,0,0);}
.m4e_c00084{transform:matrix(0.304294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304294,0.000000,0.000000,0.250000,0,0);}
.m2e_c00084{transform:matrix(0.304481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304481,0.000000,0.000000,0.250000,0,0);}
.m81_c00084{transform:matrix(0.304486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304486,0.000000,0.000000,0.250000,0,0);}
.m41_c00084{transform:matrix(0.305129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305129,0.000000,0.000000,0.250000,0,0);}
.m3f_c00084{transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);}
.m72_c00084{transform:matrix(0.306699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306699,0.000000,0.000000,0.250000,0,0);}
.m1e_c00084{transform:matrix(0.306703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306703,0.000000,0.000000,0.250000,0,0);}
.m15_c00084{transform:matrix(0.307011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307011,0.000000,0.000000,0.250000,0,0);}
.m7a_c00084{transform:matrix(0.307034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307034,0.000000,0.000000,0.250000,0,0);}
.m4c_c00084{transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);}
.m33_c00084{transform:matrix(0.308027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308027,0.000000,0.000000,0.250000,0,0);}
.m71_c00084{transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);}
.m73_c00084{transform:matrix(0.310082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310082,0.000000,0.000000,0.250000,0,0);}
.m44_c00084{transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);}
.m13_c00084{transform:matrix(0.311211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311211,0.000000,0.000000,0.250000,0,0);}
.m75_c00084{transform:matrix(0.311369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311369,0.000000,0.000000,0.250000,0,0);}
.m2f_c00084{transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);}
.m7b_c00084{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.m69_c00084{transform:matrix(0.312852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312852,0.000000,0.000000,0.250000,0,0);}
.m9_c00084{transform:matrix(0.313323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313323,0.000000,0.000000,0.250000,0,0);}
.m60_c00084{transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);}
.m68_c00084{transform:matrix(0.314276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314276,0.000000,0.000000,0.250000,0,0);}
.m34_c00084{transform:matrix(0.314318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314318,0.000000,0.000000,0.250000,0,0);}
.m62_c00084{transform:matrix(0.314798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314798,0.000000,0.000000,0.250000,0,0);}
.m74_c00084{transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);}
.m4a_c00084{transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);}
.m6d_c00084{transform:matrix(0.320064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320064,0.000000,0.000000,0.250000,0,0);}
.m3e_c00084{transform:matrix(0.320945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320945,0.000000,0.000000,0.250000,0,0);}
.m7e_c00084{transform:matrix(0.321133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321133,0.000000,0.000000,0.250000,0,0);}
.m12_c00084{transform:matrix(0.322179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322179,0.000000,0.000000,0.250000,0,0);}
.m7c_c00084{transform:matrix(0.323146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323146,0.000000,0.000000,0.250000,0,0);}
.m1a_c00084{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.m56_c00084{transform:matrix(0.326063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326063,0.000000,0.000000,0.250000,0,0);}
.m16_c00084{transform:matrix(0.329713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329713,0.000000,0.000000,0.250000,0,0);}
.m58_c00084{transform:matrix(0.329940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329940,0.000000,0.000000,0.250000,0,0);}
.m27_c00084{transform:matrix(0.330356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330356,0.000000,0.000000,0.250000,0,0);}
.m45_c00084{transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);}
.m54_c00084{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m24_c00084{transform:matrix(0.335434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335434,0.000000,0.000000,0.250000,0,0);}
.m3d_c00084{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m20_c00084{transform:matrix(0.340731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340731,0.000000,0.000000,0.250000,0,0);}
.m6e_c00084{transform:matrix(0.342244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342244,0.000000,0.000000,0.250000,0,0);}
.m36_c00084{transform:matrix(0.345227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345227,0.000000,0.000000,0.250000,0,0);}
.mc_c00084{transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);}
.m82_c00084{transform:matrix(0.348797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348797,0.000000,0.000000,0.250000,0,0);}
.m8_c00084{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m55_c00084{transform:matrix(0.349656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349656,0.000000,0.000000,0.250000,0,0);}
.m50_c00084{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m5d_c00084{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m61_c00084{transform:matrix(0.365783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365783,0.000000,0.000000,0.250000,0,0);}
.m35_c00084{transform:matrix(0.369396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369396,0.000000,0.000000,0.250000,0,0);}
.m2_c00084{transform:matrix(0.371882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371882,0.000000,0.000000,0.250000,0,0);}
.m1d_c00084{transform:matrix(0.416528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416528,0.000000,0.000000,0.250000,0,0);}
.v0_c00084{vertical-align:0.000000px;}
.ls5_c00084{letter-spacing:-2.744280px;}
.lsf_c00084{letter-spacing:-2.375762px;}
.ls7_c00084{letter-spacing:-2.101334px;}
.ls4_c00084{letter-spacing:-1.685772px;}
.lsa_c00084{letter-spacing:-1.288980px;}
.ls2_c00084{letter-spacing:0.000000px;}
.lsd_c00084{letter-spacing:0.007841px;}
.lse_c00084{letter-spacing:0.070567px;}
.ls8_c00084{letter-spacing:0.533174px;}
.ls6_c00084{letter-spacing:1.246687px;}
.lsc_c00084{letter-spacing:3.112798px;}
.ls3_c00084{letter-spacing:3.920400px;}
.ls1_c00084{letter-spacing:4.197610px;}
.ls9_c00084{letter-spacing:4.494610px;}
.ls0_c00084{letter-spacing:7.213536px;}
.lsb_c00084{letter-spacing:49.896198px;}
.sc__c00084{text-shadow:none;}
.sc0_c00084{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00084{-webkit-text-stroke:0px transparent;}
.sc0_c00084{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00084{word-spacing:-19.602000px;}
.ws1_c00084{word-spacing:0.000000px;}
._2_c00084{width:4.626468px;}
._4_c00084{width:8.703288px;}
._3_c00084{width:22.267872px;}
._0_c00084{width:35.440416px;}
._5_c00084{width:37.165392px;}
._1_c00084{width:41.634648px;}
.fc0_c00084{color:transparent;}
.fs7_c00084{font-size:22.374000px;}
.fs9_c00084{font-size:26.136000px;}
.fs6_c00084{font-size:27.720000px;}
.fsb_c00084{font-size:33.660000px;}
.fs3_c00084{font-size:36.828000px;}
.fs8_c00084{font-size:39.600000px;}
.fs5_c00084{font-size:49.896198px;}
.fsa_c00084{font-size:56.628000px;}
.fs4_c00084{font-size:74.844000px;}
.fs1_c00084{font-size:78.408000px;}
.fs0_c00084{font-size:83.952198px;}
.fs2_c00084{font-size:89.892198px;}
.y0_c00084{bottom:0.000000px;}
.y1_c00084{bottom:76.500000px;}
.y1a_c00084{bottom:84.373785px;}
.y19_c00084{bottom:91.506735px;}
.y18_c00084{bottom:181.670985px;}
.y17_c00084{bottom:214.464735px;}
.y16_c00084{bottom:246.897135px;}
.y14_c00084{bottom:279.324585px;}
.y13_c00084{bottom:311.400585px;}
.y12_c00084{bottom:343.837935px;}
.y11_c00084{bottom:376.270335px;}
.y10_c00084{bottom:408.697785px;}
.yf_c00084{bottom:441.491535px;}
.y15_c00084{bottom:458.598735px;}
.ye_c00084{bottom:473.918985px;}
.yd_c00084{bottom:506.356335px;}
.yc_c00084{bottom:533.794185px;}
.yb_c00084{bottom:538.432335px;}
.ya_c00084{bottom:587.971935px;}
.y8_c00084{bottom:638.224335px;}
.y9_c00084{bottom:648.559935px;}
.y7_c00084{bottom:800.386335px;}
.y6_c00084{bottom:833.526585px;}
.y5_c00084{bottom:865.958985px;}
.y4_c00084{bottom:898.039935px;}
.y3_c00084{bottom:930.110985px;}
.y2_c00084{bottom:1080.511785px;}
.h9_c00084{height:21.958857px;}
.hb_c00084{height:27.259031px;}
.h8_c00084{height:28.911094px;}
.hd_c00084{height:33.035449px;}
.h7_c00084{height:33.230868px;}
.h5_c00084{height:36.144668px;}
.ha_c00084{height:41.301563px;}
.hc_c00084{height:59.061234px;}
.h6_c00084{height:73.455293px;}
.h3_c00084{height:76.953164px;}
.h2_c00084{height:82.394491px;}
.h4_c00084{height:90.594481px;}
.h1_c00084{height:1110.000000px;}
.h0_c00084{height:1263.000000px;}
.w1_c00084{width:733.500000px;}
.w0_c00084{width:892.500000px;}
.x0_c00084{left:0.000000px;}
.x31_c00084{left:75.848385px;}
.x4_c00084{left:77.001735px;}
.x1_c00084{left:79.500000px;}
.x4b_c00084{left:98.529285px;}
.x3a_c00084{left:110.280585px;}
.x18_c00084{left:120.433035px;}
.x24_c00084{left:131.966535px;}
.x32_c00084{left:143.772285px;}
.x29_c00084{left:153.647535px;}
.x5_c00084{left:155.889885px;}
.x41_c00084{left:164.463285px;}
.x19_c00084{left:166.210635px;}
.x33_c00084{left:176.259135px;}
.x6_c00084{left:187.599585px;}
.x3b_c00084{left:198.197535px;}
.x34_c00084{left:208.825185px;}
.x48_c00084{left:210.018135px;}
.x25_c00084{left:215.007735px;}
.x2a_c00084{left:220.383435px;}
.x1a_c00084{left:221.393235px;}
.x4c_c00084{left:231.699135px;}
.x3c_c00084{left:243.193035px;}
.x46_c00084{left:253.053435px;}
.x10_c00084{left:254.657235px;}
.x1b_c00084{left:265.898685px;}
.x3d_c00084{left:275.833335px;}
.x7_c00084{left:277.095585px;}
.x35_c00084{left:286.886685px;}
.x1c_c00084{left:288.119235px;}
.x8_c00084{left:298.796385px;}
.x51_c00084{left:309.136935px;}
.x42_c00084{left:310.206135px;}
.x49_c00084{left:319.833885px;}
.x9_c00084{left:320.922885px;}
.x1d_c00084{left:331.619835px;}
.x11_c00084{left:343.024635px;}
.x3e_c00084{left:353.573085px;}
.x26_c00084{left:365.081835px;}
.x4d_c00084{left:375.259035px;}
.x12_c00084{left:376.887585px;}
.x43_c00084{left:386.500485px;}
.x13_c00084{left:387.510285px;}
.xa_c00084{left:398.583435px;}
.x20_c00084{left:409.379385px;}
.x36_c00084{left:421.086135px;}
.x30_c00084{left:429.921885px;}
.xb_c00084{left:431.753385px;}
.x2b_c00084{left:442.623585px;}
.x4a_c00084{left:453.127485px;}
.x14_c00084{left:454.157085px;}
.x21_c00084{left:464.735235px;}
.x47_c00084{left:474.843135px;}
.x2c_c00084{left:486.505335px;}
.x1e_c00084{left:498.335835px;}
.x37_c00084{left:508.389285px;}
.x15_c00084{left:520.150485px;}
.x22_c00084{left:530.332635px;}
.x1f_c00084{left:531.520635px;}
.x50_c00084{left:540.980085px;}
.x2d_c00084{left:542.212635px;}
.xc_c00084{left:553.300635px;}
.x16_c00084{left:564.576735px;}
.x2e_c00084{left:574.461885px;}
.x17_c00084{left:576.045885px;}
.x3f_c00084{left:586.079535px;}
.x38_c00084{left:596.583435px;}
.xd_c00084{left:597.731835px;}
.x44_c00084{left:608.503035px;}
.xe_c00084{left:619.462335px;}
.x28_c00084{left:625.763685px;}
.x39_c00084{left:629.896935px;}
.xf_c00084{left:630.990885px;}
.x45_c00084{left:641.643285px;}
.x4e_c00084{left:651.152235px;}
.x2_c00084{left:652.300635px;}
.x40_c00084{left:663.759885px;}
.x2f_c00084{left:664.838985px;}
.x3_c00084{left:675.258735px;}
.x27_c00084{left:681.698685px;}
.x52_c00084{left:682.881735px;}
.x53_c00084{left:684.168735px;}
.x23_c00084{left:685.327035px;}
.x4f_c00084{left:717.803985px;}
@media print{
.v0_c00084{vertical-align:0.000000pt;}
.ls5_c00084{letter-spacing:-2.439360pt;}
.lsf_c00084{letter-spacing:-2.111789pt;}
.ls7_c00084{letter-spacing:-1.867853pt;}
.ls4_c00084{letter-spacing:-1.498464pt;}
.lsa_c00084{letter-spacing:-1.145760pt;}
.ls2_c00084{letter-spacing:0.000000pt;}
.lsd_c00084{letter-spacing:0.006970pt;}
.lse_c00084{letter-spacing:0.062726pt;}
.ls8_c00084{letter-spacing:0.473933pt;}
.ls6_c00084{letter-spacing:1.108166pt;}
.lsc_c00084{letter-spacing:2.766931pt;}
.ls3_c00084{letter-spacing:3.484800pt;}
.ls1_c00084{letter-spacing:3.731209pt;}
.ls9_c00084{letter-spacing:3.995209pt;}
.ls0_c00084{letter-spacing:6.412032pt;}
.lsb_c00084{letter-spacing:44.352176pt;}
.ws0_c00084{word-spacing:-17.424000pt;}
.ws1_c00084{word-spacing:0.000000pt;}
._2_c00084{width:4.112416pt;}
._4_c00084{width:7.736256pt;}
._3_c00084{width:19.793664pt;}
._0_c00084{width:31.502592pt;}
._5_c00084{width:33.035904pt;}
._1_c00084{width:37.008576pt;}
.fs7_c00084{font-size:19.888000pt;}
.fs9_c00084{font-size:23.232000pt;}
.fs6_c00084{font-size:24.640000pt;}
.fsb_c00084{font-size:29.920000pt;}
.fs3_c00084{font-size:32.736000pt;}
.fs8_c00084{font-size:35.200000pt;}
.fs5_c00084{font-size:44.352176pt;}
.fsa_c00084{font-size:50.336000pt;}
.fs4_c00084{font-size:66.528000pt;}
.fs1_c00084{font-size:69.696000pt;}
.fs0_c00084{font-size:74.624176pt;}
.fs2_c00084{font-size:79.904176pt;}
.y0_c00084{bottom:0.000000pt;}
.y1_c00084{bottom:68.000000pt;}
.y1a_c00084{bottom:74.998920pt;}
.y19_c00084{bottom:81.339320pt;}
.y18_c00084{bottom:161.485320pt;}
.y17_c00084{bottom:190.635320pt;}
.y16_c00084{bottom:219.464120pt;}
.y14_c00084{bottom:248.288520pt;}
.y13_c00084{bottom:276.800520pt;}
.y12_c00084{bottom:305.633720pt;}
.y11_c00084{bottom:334.462520pt;}
.y10_c00084{bottom:363.286920pt;}
.yf_c00084{bottom:392.436920pt;}
.y15_c00084{bottom:407.643320pt;}
.ye_c00084{bottom:421.261320pt;}
.yd_c00084{bottom:450.094520pt;}
.yc_c00084{bottom:474.483720pt;}
.yb_c00084{bottom:478.606520pt;}
.ya_c00084{bottom:522.641720pt;}
.y8_c00084{bottom:567.310520pt;}
.y9_c00084{bottom:576.497720pt;}
.y7_c00084{bottom:711.454520pt;}
.y6_c00084{bottom:740.912520pt;}
.y5_c00084{bottom:769.741320pt;}
.y4_c00084{bottom:798.257720pt;}
.y3_c00084{bottom:826.765320pt;}
.y2_c00084{bottom:960.454920pt;}
.h9_c00084{height:19.518984pt;}
.hb_c00084{height:24.230250pt;}
.h8_c00084{height:25.698750pt;}
.hd_c00084{height:29.364844pt;}
.h7_c00084{height:29.538549pt;}
.h5_c00084{height:32.128594pt;}
.ha_c00084{height:36.712500pt;}
.hc_c00084{height:52.498875pt;}
.h6_c00084{height:65.293594pt;}
.h3_c00084{height:68.402813pt;}
.h2_c00084{height:73.239548pt;}
.h4_c00084{height:80.528427pt;}
.h1_c00084{height:986.666667pt;}
.h0_c00084{height:1122.666667pt;}
.w1_c00084{width:652.000000pt;}
.w0_c00084{width:793.333333pt;}
.x0_c00084{left:0.000000pt;}
.x31_c00084{left:67.420787pt;}
.x4_c00084{left:68.445987pt;}
.x1_c00084{left:70.666667pt;}
.x4b_c00084{left:87.581587pt;}
.x3a_c00084{left:98.027187pt;}
.x18_c00084{left:107.051587pt;}
.x24_c00084{left:117.303587pt;}
.x32_c00084{left:127.797587pt;}
.x29_c00084{left:136.575587pt;}
.x5_c00084{left:138.568787pt;}
.x41_c00084{left:146.189587pt;}
.x19_c00084{left:147.742787pt;}
.x33_c00084{left:156.674787pt;}
.x6_c00084{left:166.755187pt;}
.x3b_c00084{left:176.175587pt;}
.x34_c00084{left:185.622387pt;}
.x48_c00084{left:186.682787pt;}
.x25_c00084{left:191.117987pt;}
.x2a_c00084{left:195.896387pt;}
.x1a_c00084{left:196.793987pt;}
.x4c_c00084{left:205.954787pt;}
.x3c_c00084{left:216.171587pt;}
.x46_c00084{left:224.936387pt;}
.x10_c00084{left:226.361987pt;}
.x1b_c00084{left:236.354387pt;}
.x3d_c00084{left:245.185187pt;}
.x7_c00084{left:246.307187pt;}
.x35_c00084{left:255.010387pt;}
.x1c_c00084{left:256.105987pt;}
.x8_c00084{left:265.596787pt;}
.x51_c00084{left:274.788387pt;}
.x42_c00084{left:275.738787pt;}
.x49_c00084{left:284.296787pt;}
.x9_c00084{left:285.264787pt;}
.x1d_c00084{left:294.773187pt;}
.x11_c00084{left:304.910787pt;}
.x3e_c00084{left:314.287187pt;}
.x26_c00084{left:324.517187pt;}
.x4d_c00084{left:333.563587pt;}
.x12_c00084{left:335.011187pt;}
.x43_c00084{left:343.555987pt;}
.x13_c00084{left:344.453587pt;}
.xa_c00084{left:354.296387pt;}
.x20_c00084{left:363.892787pt;}
.x36_c00084{left:374.298787pt;}
.x30_c00084{left:382.152787pt;}
.xb_c00084{left:383.780787pt;}
.x2b_c00084{left:393.443187pt;}
.x4a_c00084{left:402.779987pt;}
.x14_c00084{left:403.695187pt;}
.x21_c00084{left:413.097987pt;}
.x47_c00084{left:422.082787pt;}
.x2c_c00084{left:432.449187pt;}
.x1e_c00084{left:442.965187pt;}
.x37_c00084{left:451.901587pt;}
.x15_c00084{left:462.355987pt;}
.x22_c00084{left:471.406787pt;}
.x1f_c00084{left:472.462787pt;}
.x50_c00084{left:480.871187pt;}
.x2d_c00084{left:481.966787pt;}
.xc_c00084{left:491.822787pt;}
.x16_c00084{left:501.845987pt;}
.x2e_c00084{left:510.632787pt;}
.x17_c00084{left:512.040787pt;}
.x3f_c00084{left:520.959587pt;}
.x38_c00084{left:530.296387pt;}
.xd_c00084{left:531.317187pt;}
.x44_c00084{left:540.891587pt;}
.xe_c00084{left:550.633187pt;}
.x28_c00084{left:556.234387pt;}
.x39_c00084{left:559.908387pt;}
.xf_c00084{left:560.880787pt;}
.x45_c00084{left:570.349587pt;}
.x4e_c00084{left:578.801987pt;}
.x2_c00084{left:579.822787pt;}
.x40_c00084{left:590.008787pt;}
.x2f_c00084{left:590.967987pt;}
.x3_c00084{left:600.229987pt;}
.x27_c00084{left:605.954387pt;}
.x52_c00084{left:607.005987pt;}
.x53_c00084{left:608.149987pt;}
.x23_c00084{left:609.179587pt;}
.x4f_c00084{left:638.047987pt;}
}





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

.ir_c00085:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00085{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00085;src:url('chunks/assets/font_458728ee397d390752f489c0.woff2')format("woff");}.ff1_c00085{font-family:ff1_c00085;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00085;src:url('chunks/assets/font_fda166a949886e72a58a6940.woff2')format("woff");}.ff2_c00085{font-family:ff2_c00085;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00085;src:url('chunks/assets/font_ea96547a6fdf53f218711e75.woff2')format("woff");}.ff3_c00085{font-family:ff3_c00085;line-height:0.666000;font-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_c00085{transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);}
.m10_c00085{transform:matrix(0.167396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167396,0.000000,0.000000,0.250000,0,0);}
.m9c_c00085{transform:matrix(0.213031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213031,0.000000,0.000000,0.250000,0,0);}
.m50_c00085{transform:matrix(0.249022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249022,0.000000,0.000000,0.250000,0,0);}
.m1f_c00085{transform:matrix(0.249355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249355,0.000000,0.000000,0.250000,0,0);}
.m0_c00085{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m97_c00085{transform:matrix(0.250517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250517,0.000000,0.000000,0.250000,0,0);}
.m12_c00085{transform:matrix(0.252102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252102,0.000000,0.000000,0.250000,0,0);}
.m6d_c00085{transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);}
.m24_c00085{transform:matrix(0.253545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253545,0.000000,0.000000,0.250000,0,0);}
.m5d_c00085{transform:matrix(0.253919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253919,0.000000,0.000000,0.250000,0,0);}
.m27_c00085{transform:matrix(0.254830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254830,0.000000,0.000000,0.250000,0,0);}
.m15_c00085{transform:matrix(0.254997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254997,0.000000,0.000000,0.250000,0,0);}
.m31_c00085{transform:matrix(0.255443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255443,0.000000,0.000000,0.250000,0,0);}
.m64_c00085{transform:matrix(0.258087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258087,0.000000,0.000000,0.250000,0,0);}
.m43_c00085{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m51_c00085{transform:matrix(0.258705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258705,0.000000,0.000000,0.250000,0,0);}
.ma3_c00085{transform:matrix(0.259633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259633,0.000000,0.000000,0.250000,0,0);}
.m4e_c00085{transform:matrix(0.260738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260738,0.000000,0.000000,0.250000,0,0);}
.md_c00085{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m45_c00085{transform:matrix(0.263196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263196,0.000000,0.000000,0.250000,0,0);}
.m33_c00085{transform:matrix(0.263278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263278,0.000000,0.000000,0.250000,0,0);}
.m1a_c00085{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m61_c00085{transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);}
.m77_c00085{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m2a_c00085{transform:matrix(0.265205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265205,0.000000,0.000000,0.250000,0,0);}
.m93_c00085{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m8b_c00085{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.m2e_c00085{transform:matrix(0.267678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267678,0.000000,0.000000,0.250000,0,0);}
.m3d_c00085{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.maa_c00085{transform:matrix(0.268300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268300,0.000000,0.000000,0.250000,0,0);}
.m3c_c00085{transform:matrix(0.268694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268694,0.000000,0.000000,0.250000,0,0);}
.m35_c00085{transform:matrix(0.270343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270343,0.000000,0.000000,0.250000,0,0);}
.me_c00085{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m74_c00085{transform:matrix(0.271475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271475,0.000000,0.000000,0.250000,0,0);}
.m7f_c00085{transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);}
.m3e_c00085{transform:matrix(0.272478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272478,0.000000,0.000000,0.250000,0,0);}
.mac_c00085{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m6f_c00085{transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);}
.m16_c00085{transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);}
.m63_c00085{transform:matrix(0.274645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274645,0.000000,0.000000,0.250000,0,0);}
.m26_c00085{transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);}
.m66_c00085{transform:matrix(0.274853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274853,0.000000,0.000000,0.250000,0,0);}
.m9b_c00085{transform:matrix(0.275251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275251,0.000000,0.000000,0.250000,0,0);}
.m3b_c00085{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m69_c00085{transform:matrix(0.275566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275566,0.000000,0.000000,0.250000,0,0);}
.m59_c00085{transform:matrix(0.275963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275963,0.000000,0.000000,0.250000,0,0);}
.m4d_c00085{transform:matrix(0.276983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276983,0.000000,0.000000,0.250000,0,0);}
.m36_c00085{transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);}
.m5b_c00085{transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);}
.mae_c00085{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m40_c00085{transform:matrix(0.277360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277360,0.000000,0.000000,0.250000,0,0);}
.m76_c00085{transform:matrix(0.278110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278110,0.000000,0.000000,0.250000,0,0);}
.m23_c00085{transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);}
.m58_c00085{transform:matrix(0.279470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279470,0.000000,0.000000,0.250000,0,0);}
.m52_c00085{transform:matrix(0.279482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279482,0.000000,0.000000,0.250000,0,0);}
.m49_c00085{transform:matrix(0.279948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279948,0.000000,0.000000,0.250000,0,0);}
.m83_c00085{transform:matrix(0.280013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280013,0.000000,0.000000,0.250000,0,0);}
.m65_c00085{transform:matrix(0.280356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280356,0.000000,0.000000,0.250000,0,0);}
.m98_c00085{transform:matrix(0.280670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280670,0.000000,0.000000,0.250000,0,0);}
.ma6_c00085{transform:matrix(0.281043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281043,0.000000,0.000000,0.250000,0,0);}
.m53_c00085{transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);}
.m1c_c00085{transform:matrix(0.282111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282111,0.000000,0.000000,0.250000,0,0);}
.m5f_c00085{transform:matrix(0.282254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282254,0.000000,0.000000,0.250000,0,0);}
.m2f_c00085{transform:matrix(0.284684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284684,0.000000,0.000000,0.250000,0,0);}
.m95_c00085{transform:matrix(0.284814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284814,0.000000,0.000000,0.250000,0,0);}
.m14_c00085{transform:matrix(0.285386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285386,0.000000,0.000000,0.250000,0,0);}
.m85_c00085{transform:matrix(0.285777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285777,0.000000,0.000000,0.250000,0,0);}
.m87_c00085{transform:matrix(0.286238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286238,0.000000,0.000000,0.250000,0,0);}
.m19_c00085{transform:matrix(0.287040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287040,0.000000,0.000000,0.250000,0,0);}
.mb4_c00085{transform:matrix(0.287147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287147,0.000000,0.000000,0.250000,0,0);}
.m90_c00085{transform:matrix(0.287478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287478,0.000000,0.000000,0.250000,0,0);}
.m37_c00085{transform:matrix(0.287771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287771,0.000000,0.000000,0.250000,0,0);}
.m8a_c00085{transform:matrix(0.287790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287790,0.000000,0.000000,0.250000,0,0);}
.m99_c00085{transform:matrix(0.288640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288640,0.000000,0.000000,0.250000,0,0);}
.m18_c00085{transform:matrix(0.290141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290141,0.000000,0.000000,0.250000,0,0);}
.m44_c00085{transform:matrix(0.290388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290388,0.000000,0.000000,0.250000,0,0);}
.m32_c00085{transform:matrix(0.290525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290525,0.000000,0.000000,0.250000,0,0);}
.m79_c00085{transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);}
.ma7_c00085{transform:matrix(0.290705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290705,0.000000,0.000000,0.250000,0,0);}
.m71_c00085{transform:matrix(0.290977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290977,0.000000,0.000000,0.250000,0,0);}
.m68_c00085{transform:matrix(0.291957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291957,0.000000,0.000000,0.250000,0,0);}
.m38_c00085{transform:matrix(0.291984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291984,0.000000,0.000000,0.250000,0,0);}
.m55_c00085{transform:matrix(0.292424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292424,0.000000,0.000000,0.250000,0,0);}
.m8_c00085{transform:matrix(0.292462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292462,0.000000,0.000000,0.250000,0,0);}
.ma4_c00085{transform:matrix(0.292738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292738,0.000000,0.000000,0.250000,0,0);}
.mb6_c00085{transform:matrix(0.292959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292959,0.000000,0.000000,0.250000,0,0);}
.m9d_c00085{transform:matrix(0.293651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293651,0.000000,0.000000,0.250000,0,0);}
.m67_c00085{transform:matrix(0.294467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294467,0.000000,0.000000,0.250000,0,0);}
.m56_c00085{transform:matrix(0.295013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295013,0.000000,0.000000,0.250000,0,0);}
.m7d_c00085{transform:matrix(0.295271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295271,0.000000,0.000000,0.250000,0,0);}
.m6e_c00085{transform:matrix(0.296264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296264,0.000000,0.000000,0.250000,0,0);}
.m41_c00085{transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);}
.ma9_c00085{transform:matrix(0.297246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297246,0.000000,0.000000,0.250000,0,0);}
.mb0_c00085{transform:matrix(0.297385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297385,0.000000,0.000000,0.250000,0,0);}
.mb1_c00085{transform:matrix(0.298174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298174,0.000000,0.000000,0.250000,0,0);}
.m3a_c00085{transform:matrix(0.299348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299348,0.000000,0.000000,0.250000,0,0);}
.m9f_c00085{transform:matrix(0.299713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299713,0.000000,0.000000,0.250000,0,0);}
.mb_c00085{transform:matrix(0.299763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299763,0.000000,0.000000,0.250000,0,0);}
.m11_c00085{transform:matrix(0.299812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299812,0.000000,0.000000,0.250000,0,0);}
.m91_c00085{transform:matrix(0.300521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300521,0.000000,0.000000,0.250000,0,0);}
.ma5_c00085{transform:matrix(0.300527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300527,0.000000,0.000000,0.250000,0,0);}
.m4b_c00085{transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);}
.m84_c00085{transform:matrix(0.300634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300634,0.000000,0.000000,0.250000,0,0);}
.m13_c00085{transform:matrix(0.301184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301184,0.000000,0.000000,0.250000,0,0);}
.m96_c00085{transform:matrix(0.301634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301634,0.000000,0.000000,0.250000,0,0);}
.m4c_c00085{transform:matrix(0.302938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302938,0.000000,0.000000,0.250000,0,0);}
.m92_c00085{transform:matrix(0.303347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303347,0.000000,0.000000,0.250000,0,0);}
.m1b_c00085{transform:matrix(0.303939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303939,0.000000,0.000000,0.250000,0,0);}
.m88_c00085{transform:matrix(0.304667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304667,0.000000,0.000000,0.250000,0,0);}
.m7b_c00085{transform:matrix(0.304698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304698,0.000000,0.000000,0.250000,0,0);}
.m72_c00085{transform:matrix(0.306271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306271,0.000000,0.000000,0.250000,0,0);}
.mab_c00085{transform:matrix(0.307232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307232,0.000000,0.000000,0.250000,0,0);}
.m57_c00085{transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);}
.m22_c00085{transform:matrix(0.307807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307807,0.000000,0.000000,0.250000,0,0);}
.m25_c00085{transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);}
.mb5_c00085{transform:matrix(0.308280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308280,0.000000,0.000000,0.250000,0,0);}
.m1d_c00085{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m75_c00085{transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);}
.m54_c00085{transform:matrix(0.309093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309093,0.000000,0.000000,0.250000,0,0);}
.m5c_c00085{transform:matrix(0.309497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309497,0.000000,0.000000,0.250000,0,0);}
.m21_c00085{transform:matrix(0.309970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309970,0.000000,0.000000,0.250000,0,0);}
.m60_c00085{transform:matrix(0.310047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310047,0.000000,0.000000,0.250000,0,0);}
.m6c_c00085{transform:matrix(0.310506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310506,0.000000,0.000000,0.250000,0,0);}
.m2_c00085{transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);}
.mad_c00085{transform:matrix(0.311255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311255,0.000000,0.000000,0.250000,0,0);}
.m9a_c00085{transform:matrix(0.311920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311920,0.000000,0.000000,0.250000,0,0);}
.m29_c00085{transform:matrix(0.312086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312086,0.000000,0.000000,0.250000,0,0);}
.m9e_c00085{transform:matrix(0.312088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312088,0.000000,0.000000,0.250000,0,0);}
.m2c_c00085{transform:matrix(0.313023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313023,0.000000,0.000000,0.250000,0,0);}
.ma2_c00085{transform:matrix(0.313225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313225,0.000000,0.000000,0.250000,0,0);}
.m20_c00085{transform:matrix(0.313434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313434,0.000000,0.000000,0.250000,0,0);}
.m89_c00085{transform:matrix(0.314182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314182,0.000000,0.000000,0.250000,0,0);}
.m7c_c00085{transform:matrix(0.314364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314364,0.000000,0.000000,0.250000,0,0);}
.m81_c00085{transform:matrix(0.314604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314604,0.000000,0.000000,0.250000,0,0);}
.m7e_c00085{transform:matrix(0.314869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314869,0.000000,0.000000,0.250000,0,0);}
.ma0_c00085{transform:matrix(0.315718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315718,0.000000,0.000000,0.250000,0,0);}
.mb3_c00085{transform:matrix(0.317167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317167,0.000000,0.000000,0.250000,0,0);}
.m78_c00085{transform:matrix(0.318674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318674,0.000000,0.000000,0.250000,0,0);}
.m7_c00085{transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);}
.mb2_c00085{transform:matrix(0.319176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319176,0.000000,0.000000,0.250000,0,0);}
.m6b_c00085{transform:matrix(0.319530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319530,0.000000,0.000000,0.250000,0,0);}
.m1e_c00085{transform:matrix(0.320866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320866,0.000000,0.000000,0.250000,0,0);}
.m5a_c00085{transform:matrix(0.320922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320922,0.000000,0.000000,0.250000,0,0);}
.ma_c00085{transform:matrix(0.321083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321083,0.000000,0.000000,0.250000,0,0);}
.m62_c00085{transform:matrix(0.321257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321257,0.000000,0.000000,0.250000,0,0);}
.m86_c00085{transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);}
.m48_c00085{transform:matrix(0.321575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321575,0.000000,0.000000,0.250000,0,0);}
.m7a_c00085{transform:matrix(0.322153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322153,0.000000,0.000000,0.250000,0,0);}
.m4_c00085{transform:matrix(0.323501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323501,0.000000,0.000000,0.250000,0,0);}
.m8e_c00085{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.m70_c00085{transform:matrix(0.324328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324328,0.000000,0.000000,0.250000,0,0);}
.m8d_c00085{transform:matrix(0.324871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324871,0.000000,0.000000,0.250000,0,0);}
.maf_c00085{transform:matrix(0.325172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325172,0.000000,0.000000,0.250000,0,0);}
.mc_c00085{transform:matrix(0.325602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325602,0.000000,0.000000,0.250000,0,0);}
.m2b_c00085{transform:matrix(0.326100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326100,0.000000,0.000000,0.250000,0,0);}
.m3_c00085{transform:matrix(0.326875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326875,0.000000,0.000000,0.250000,0,0);}
.m4f_c00085{transform:matrix(0.328833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328833,0.000000,0.000000,0.250000,0,0);}
.m8f_c00085{transform:matrix(0.329208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329208,0.000000,0.000000,0.250000,0,0);}
.m4a_c00085{transform:matrix(0.329336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329336,0.000000,0.000000,0.250000,0,0);}
.mf_c00085{transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);}
.m47_c00085{transform:matrix(0.330860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330860,0.000000,0.000000,0.250000,0,0);}
.m17_c00085{transform:matrix(0.332527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332527,0.000000,0.000000,0.250000,0,0);}
.m34_c00085{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m94_c00085{transform:matrix(0.333358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333358,0.000000,0.000000,0.250000,0,0);}
.mb7_c00085{transform:matrix(0.338122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338122,0.000000,0.000000,0.250000,0,0);}
.m28_c00085{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m42_c00085{transform:matrix(0.339379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339379,0.000000,0.000000,0.250000,0,0);}
.m3f_c00085{transform:matrix(0.340913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340913,0.000000,0.000000,0.250000,0,0);}
.m82_c00085{transform:matrix(0.345647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345647,0.000000,0.000000,0.250000,0,0);}
.m73_c00085{transform:matrix(0.347003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347003,0.000000,0.000000,0.250000,0,0);}
.m6a_c00085{transform:matrix(0.348399,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348399,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348399,0.000000,0.000000,0.250000,0,0);}
.m39_c00085{transform:matrix(0.349123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349123,0.000000,0.000000,0.250000,0,0);}
.m5_c00085{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m6_c00085{transform:matrix(0.350956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350956,0.000000,0.000000,0.250000,0,0);}
.m30_c00085{transform:matrix(0.355170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355170,0.000000,0.000000,0.250000,0,0);}
.m8c_c00085{transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);}
.m46_c00085{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.ma1_c00085{transform:matrix(0.359096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359096,0.000000,0.000000,0.250000,0,0);}
.m80_c00085{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m5e_c00085{transform:matrix(0.366157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366157,0.000000,0.000000,0.250000,0,0);}
.m9_c00085{transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);}
.m2d_c00085{transform:matrix(0.368506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368506,0.000000,0.000000,0.250000,0,0);}
.ma8_c00085{transform:matrix(0.404579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404579,0.000000,0.000000,0.250000,0,0);}
.v2_c00085{vertical-align:-27.126396px;}
.v1_c00085{vertical-align:-7.108200px;}
.v0_c00085{vertical-align:0.000000px;}
.lsa_c00085{letter-spacing:-2.744280px;}
.ls12_c00085{letter-spacing:-2.665872px;}
.lsd_c00085{letter-spacing:-2.375762px;}
.ls9_c00085{letter-spacing:-1.897474px;}
.lsf_c00085{letter-spacing:-1.701454px;}
.ls6_c00085{letter-spacing:-1.175331px;}
.ls8_c00085{letter-spacing:-1.058508px;}
.ls5_c00085{letter-spacing:0.000000px;}
.ls11_c00085{letter-spacing:0.838966px;}
.ls13_c00085{letter-spacing:1.309414px;}
.lsc_c00085{letter-spacing:1.732817px;}
.ls1_c00085{letter-spacing:2.391444px;}
.ls10_c00085{letter-spacing:2.509056px;}
.ls3_c00085{letter-spacing:3.112798px;}
.ls4_c00085{letter-spacing:3.120638px;}
.lse_c00085{letter-spacing:3.762000px;}
.ls2_c00085{letter-spacing:3.920400px;}
.lsb_c00085{letter-spacing:4.356000px;}
.ls0_c00085{letter-spacing:18.554118px;}
.ls7_c00085{letter-spacing:31.363200px;}
.sc__c00085{text-shadow:none;}
.sc0_c00085{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00085{-webkit-text-stroke:0px transparent;}
.sc0_c00085{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00085{word-spacing:-20.911414px;}
.ws0_c00085{word-spacing:-19.602000px;}
.ws2_c00085{word-spacing:-16.936128px;}
.ws1_c00085{word-spacing:-4.312440px;}
.ws4_c00085{word-spacing:0.000000px;}
._a_c00085{margin-left:-13.172544px;}
._2_c00085{width:6.507864px;}
._6_c00085{width:8.154432px;}
._0_c00085{width:9.330552px;}
._8_c00085{width:10.507068px;}
._f_c00085{width:12.388464px;}
._9_c00085{width:14.899963px;}
._c_c00085{width:17.955432px;}
._7_c00085{width:22.267476px;}
._e_c00085{width:28.713010px;}
._1_c00085{width:30.029868px;}
._d_c00085{width:31.833648px;}
._5_c00085{width:33.166980px;}
._4_c00085{width:36.067680px;}
._3_c00085{width:39.674448px;}
._10_c00085{width:758.815992px;}
._b_c00085{width:1217.339640px;}
.fc0_c00085{color:transparent;}
.fs10_c00085{font-size:21.582000px;}
.fsf_c00085{font-size:22.176000px;}
.fs0_c00085{font-size:22.572000px;}
.fs3_c00085{font-size:25.146000px;}
.fsd_c00085{font-size:26.928000px;}
.fsa_c00085{font-size:27.720000px;}
.fs12_c00085{font-size:28.314000px;}
.fs4_c00085{font-size:31.363200px;}
.fs5_c00085{font-size:39.204000px;}
.fs11_c00085{font-size:45.144000px;}
.fse_c00085{font-size:64.548000px;}
.fsc_c00085{font-size:68.112198px;}
.fs2_c00085{font-size:72.072198px;}
.fsb_c00085{font-size:74.844000px;}
.fs8_c00085{font-size:75.240000px;}
.fs6_c00085{font-size:78.408000px;}
.fs1_c00085{font-size:83.952198px;}
.fs7_c00085{font-size:87.120000px;}
.fs9_c00085{font-size:91.872198px;}
.y0_c00085{bottom:0.000000px;}
.y2b_c00085{bottom:4.901634px;}
.y2a_c00085{bottom:36.259785px;}
.y29_c00085{bottom:59.069385px;}
.y1_c00085{bottom:76.500000px;}
.y28_c00085{bottom:94.001535px;}
.y27_c00085{bottom:149.951385px;}
.y26_c00085{bottom:182.027385px;}
.y25_c00085{bottom:215.533935px;}
.y24_c00085{bottom:239.412735px;}
.y23_c00085{bottom:247.609935px;}
.y2c_c00085{bottom:273.270735px;}
.y22_c00085{bottom:280.037385px;}
.y21_c00085{bottom:296.080335px;}
.y20_c00085{bottom:312.474735px;}
.y1f_c00085{bottom:326.730735px;}
.y1e_c00085{bottom:344.550735px;}
.y1d_c00085{bottom:376.983135px;}
.y1c_c00085{bottom:409.059135px;}
.y1b_c00085{bottom:441.842985px;}
.y1a_c00085{bottom:465.721785px;}
.y19_c00085{bottom:473.918985px;}
.y18_c00085{bottom:505.999935px;}
.y17_c00085{bottom:506.001915px;}
.y16_c00085{bottom:538.070985px;}
.y15_c00085{bottom:570.151935px;}
.y13_c00085{bottom:634.298985px;}
.y2_c00085{bottom:636.798735px;}
.y14_c00085{bottom:640.001385px;}
.y12_c00085{bottom:667.087785px;}
.y11_c00085{bottom:699.520185px;}
.y10_c00085{bottom:722.329785px;}
.yf_c00085{bottom:732.665385px;}
.ye_c00085{bottom:765.815535px;}
.yd_c00085{bottom:798.960735px;}
.yc_c00085{bottom:831.036735px;}
.yb_c00085{bottom:864.181935px;}
.ya_c00085{bottom:896.257935px;}
.y9_c00085{bottom:896.263875px;}
.y8_c00085{bottom:928.685385px;}
.y7_c00085{bottom:1001.390985px;}
.y6_c00085{bottom:1012.087935px;}
.y5_c00085{bottom:1022.774985px;}
.y4_c00085{bottom:1034.892585px;}
.y3_c00085{bottom:1087.639785px;}
.h6_c00085{height:20.887891px;}
.h11_c00085{height:22.509352px;}
.h10_c00085{height:23.128875px;}
.h2_c00085{height:23.541891px;}
.h5_c00085{height:26.226492px;}
.he_c00085{height:28.085063px;}
.hc_c00085{height:28.911094px;}
.h13_c00085{height:29.530617px;}
.h7_c00085{height:38.476582px;}
.h12_c00085{height:47.083781px;}
.hd_c00085{height:63.930694px;}
.hf_c00085{height:67.321547px;}
.h4_c00085{height:75.169050px;}
.h8_c00085{height:76.953164px;}
.ha_c00085{height:78.472969px;}
.h3_c00085{height:82.394491px;}
.h9_c00085{height:85.503516px;}
.hb_c00085{height:90.167538px;}
.h1_c00085{height:1110.000000px;}
.h0_c00085{height:1263.000000px;}
.w1_c00085{width:733.500000px;}
.w0_c00085{width:892.500000px;}
.x0_c00085{left:0.000000px;}
.x2_c00085{left:33.020985px;}
.x1d_c00085{left:66.250335px;}
.x14_c00085{left:67.884825px;}
.x1_c00085{left:79.500000px;}
.x34_c00085{left:88.574835px;}
.x5f_c00085{left:90.366735px;}
.x15_c00085{left:100.271685px;}
.x69_c00085{left:101.702235px;}
.x1e_c00085{left:103.098135px;}
.x2f_c00085{left:110.493435px;}
.x27_c00085{left:111.557685px;}
.x7_c00085{left:121.809135px;}
.x8_c00085{left:133.421835px;}
.x5c_c00085{left:134.872185px;}
.x30_c00085{left:144.158385px;}
.x40_c00085{left:154.657335px;}
.x59_c00085{left:155.904735px;}
.x9_c00085{left:166.195785px;}
.x45_c00085{left:167.245185px;}
.x52_c00085{left:177.085785px;}
.x1f_c00085{left:178.333185px;}
.x4c_c00085{left:187.431285px;}
.x4d_c00085{left:190.242885px;}
.x28_c00085{left:199.548885px;}
.x39_c00085{left:200.736885px;}
.x20_c00085{left:211.567485px;}
.xa_c00085{left:221.368485px;}
.x16_c00085{left:222.541635px;}
.x60_c00085{left:225.343335px;}
.x53_c00085{left:227.442135px;}
.x54_c00085{left:230.367585px;}
.x3a_c00085{left:232.629735px;}
.x29_c00085{left:233.936535px;}
.x56_c00085{left:236.391735px;}
.x17_c00085{left:244.653285px;}
.x3f_c00085{left:251.355585px;}
.x21_c00085{left:255.350235px;}
.x4e_c00085{left:256.449135px;}
.x18_c00085{left:266.398635px;}
.x2a_c00085{left:267.754935px;}
.x46_c00085{left:278.788485px;}
.x35_c00085{left:289.549785px;}
.x6b_c00085{left:290.599185px;}
.xb_c00085{left:299.860635px;}
.x19_c00085{left:302.286135px;}
.x22_c00085{left:310.958535px;}
.x64_c00085{left:312.022785px;}
.x36_c00085{left:321.284235px;}
.x23_c00085{left:322.665285px;}
.xc_c00085{left:333.050385px;}
.x31_c00085{left:344.088885px;}
.x3b_c00085{left:345.148185px;}
.xd_c00085{left:355.295685px;}
.x5a_c00085{left:356.518335px;}
.x32_c00085{left:366.507435px;}
.x47_c00085{left:377.590485px;}
.x57_c00085{left:388.995285px;}
.xe_c00085{left:399.974385px;}
.x65_c00085{left:401.068335px;}
.x37_c00085{left:410.725785px;}
.x5b_c00085{left:412.136535px;}
.x48_c00085{left:422.076135px;}
.x2b_c00085{left:423.976935px;}
.x1a_c00085{left:433.169085px;}
.x41_c00085{left:444.202635px;}
.xf_c00085{left:452.954235px;}
.x1b_c00085{left:454.652085px;}
.x4f_c00085{left:456.305385px;}
.x66_c00085{left:458.067585px;}
.x1c_c00085{left:465.982635px;}
.x24_c00085{left:476.674635px;}
.x42_c00085{left:478.050735px;}
.x2c_c00085{left:488.752635px;}
.x49_c00085{left:499.355535px;}
.x6c_c00085{left:500.533635px;}
.x10_c00085{left:510.181185px;}
.x2d_c00085{left:521.585985px;}
.x61_c00085{left:532.980885px;}
.x25_c00085{left:543.291735px;}
.x2e_c00085{left:544.375785px;}
.x68_c00085{left:545.444985px;}
.x3c_c00085{left:555.047985px;}
.x4a_c00085{left:556.067685px;}
.x50_c00085{left:566.131035px;}
.x11_c00085{left:576.105285px;}
.x5d_c00085{left:577.516035px;}
.x3d_c00085{left:587.475435px;}
.x4b_c00085{left:588.881235px;}
.x12_c00085{left:598.157535px;}
.x6a_c00085{left:600.310785px;}
.x38_c00085{left:609.968235px;}
.x62_c00085{left:610.978035px;}
.x67_c00085{left:612.497685px;}
.x26_c00085{left:620.645385px;}
.x43_c00085{left:621.759135px;}
.x13_c00085{left:631.485885px;}
.x5e_c00085{left:633.584685px;}
.x3_c00085{left:642.707535px;}
.x51_c00085{left:644.519235px;}
.x33_c00085{left:654.008385px;}
.x58_c00085{left:655.028085px;}
.x55_c00085{left:666.274485px;}
.x63_c00085{left:676.689285px;}
.x6d_c00085{left:681.173985px;}
.x3e_c00085{left:683.079735px;}
.x4_c00085{left:686.153685px;}
.x5_c00085{left:687.693135px;}
.x6_c00085{left:690.202785px;}
.x44_c00085{left:698.677185px;}
.x6e_c00085{left:723.333135px;}
@media print{
.v2_c00085{vertical-align:-24.112352pt;}
.v1_c00085{vertical-align:-6.318400pt;}
.v0_c00085{vertical-align:0.000000pt;}
.lsa_c00085{letter-spacing:-2.439360pt;}
.ls12_c00085{letter-spacing:-2.369664pt;}
.lsd_c00085{letter-spacing:-2.111789pt;}
.ls9_c00085{letter-spacing:-1.686643pt;}
.lsf_c00085{letter-spacing:-1.512403pt;}
.ls6_c00085{letter-spacing:-1.044738pt;}
.ls8_c00085{letter-spacing:-0.940896pt;}
.ls5_c00085{letter-spacing:0.000000pt;}
.ls11_c00085{letter-spacing:0.745747pt;}
.ls13_c00085{letter-spacing:1.163923pt;}
.lsc_c00085{letter-spacing:1.540282pt;}
.ls1_c00085{letter-spacing:2.125728pt;}
.ls10_c00085{letter-spacing:2.230272pt;}
.ls3_c00085{letter-spacing:2.766931pt;}
.ls4_c00085{letter-spacing:2.773901pt;}
.lse_c00085{letter-spacing:3.344000pt;}
.ls2_c00085{letter-spacing:3.484800pt;}
.lsb_c00085{letter-spacing:3.872000pt;}
.ls0_c00085{letter-spacing:16.492549pt;}
.ls7_c00085{letter-spacing:27.878400pt;}
.ws3_c00085{word-spacing:-18.587923pt;}
.ws0_c00085{word-spacing:-17.424000pt;}
.ws2_c00085{word-spacing:-15.054336pt;}
.ws1_c00085{word-spacing:-3.833280pt;}
.ws4_c00085{word-spacing:0.000000pt;}
._a_c00085{margin-left:-11.708928pt;}
._2_c00085{width:5.784768pt;}
._6_c00085{width:7.248384pt;}
._0_c00085{width:8.293824pt;}
._8_c00085{width:9.339616pt;}
._f_c00085{width:11.011968pt;}
._9_c00085{width:13.244412pt;}
._c_c00085{width:15.960384pt;}
._7_c00085{width:19.793312pt;}
._e_c00085{width:25.522675pt;}
._1_c00085{width:26.693216pt;}
._d_c00085{width:28.296576pt;}
._5_c00085{width:29.481760pt;}
._4_c00085{width:32.060160pt;}
._3_c00085{width:35.266176pt;}
._10_c00085{width:674.503104pt;}
._b_c00085{width:1082.079680pt;}
.fs10_c00085{font-size:19.184000pt;}
.fsf_c00085{font-size:19.712000pt;}
.fs0_c00085{font-size:20.064000pt;}
.fs3_c00085{font-size:22.352000pt;}
.fsd_c00085{font-size:23.936000pt;}
.fsa_c00085{font-size:24.640000pt;}
.fs12_c00085{font-size:25.168000pt;}
.fs4_c00085{font-size:27.878400pt;}
.fs5_c00085{font-size:34.848000pt;}
.fs11_c00085{font-size:40.128000pt;}
.fse_c00085{font-size:57.376000pt;}
.fsc_c00085{font-size:60.544176pt;}
.fs2_c00085{font-size:64.064176pt;}
.fsb_c00085{font-size:66.528000pt;}
.fs8_c00085{font-size:66.880000pt;}
.fs6_c00085{font-size:69.696000pt;}
.fs1_c00085{font-size:74.624176pt;}
.fs7_c00085{font-size:77.440000pt;}
.fs9_c00085{font-size:81.664176pt;}
.y0_c00085{bottom:0.000000pt;}
.y2b_c00085{bottom:4.357008pt;}
.y2a_c00085{bottom:32.230920pt;}
.y29_c00085{bottom:52.506120pt;}
.y1_c00085{bottom:68.000000pt;}
.y28_c00085{bottom:83.556920pt;}
.y27_c00085{bottom:133.290120pt;}
.y26_c00085{bottom:161.802120pt;}
.y25_c00085{bottom:191.585720pt;}
.y24_c00085{bottom:212.811320pt;}
.y23_c00085{bottom:220.097720pt;}
.y2c_c00085{bottom:242.907320pt;}
.y22_c00085{bottom:248.922120pt;}
.y21_c00085{bottom:263.182520pt;}
.y20_c00085{bottom:277.755320pt;}
.y1f_c00085{bottom:290.427320pt;}
.y1e_c00085{bottom:306.267320pt;}
.y1d_c00085{bottom:335.096120pt;}
.y1c_c00085{bottom:363.608120pt;}
.y1b_c00085{bottom:392.749320pt;}
.y1a_c00085{bottom:413.974920pt;}
.y19_c00085{bottom:421.261320pt;}
.y18_c00085{bottom:449.777720pt;}
.y17_c00085{bottom:449.779480pt;}
.y16_c00085{bottom:478.285320pt;}
.y15_c00085{bottom:506.801720pt;}
.y13_c00085{bottom:563.821320pt;}
.y2_c00085{bottom:566.043320pt;}
.y14_c00085{bottom:568.890120pt;}
.y12_c00085{bottom:592.966920pt;}
.y11_c00085{bottom:621.795720pt;}
.y10_c00085{bottom:642.070920pt;}
.yf_c00085{bottom:651.258120pt;}
.ye_c00085{bottom:680.724920pt;}
.yd_c00085{bottom:710.187320pt;}
.yc_c00085{bottom:738.699320pt;}
.yb_c00085{bottom:768.161720pt;}
.ya_c00085{bottom:796.673720pt;}
.y9_c00085{bottom:796.679000pt;}
.y8_c00085{bottom:825.498120pt;}
.y7_c00085{bottom:890.125320pt;}
.y6_c00085{bottom:899.633720pt;}
.y5_c00085{bottom:909.133320pt;}
.y4_c00085{bottom:919.904520pt;}
.y3_c00085{bottom:966.790920pt;}
.h6_c00085{height:18.567014pt;}
.h11_c00085{height:20.008313pt;}
.h10_c00085{height:20.559000pt;}
.h2_c00085{height:20.926125pt;}
.h5_c00085{height:23.312438pt;}
.he_c00085{height:24.964500pt;}
.hc_c00085{height:25.698750pt;}
.h13_c00085{height:26.249438pt;}
.h7_c00085{height:34.201406pt;}
.h12_c00085{height:41.852250pt;}
.hd_c00085{height:56.827284pt;}
.hf_c00085{height:59.841375pt;}
.h4_c00085{height:66.816934pt;}
.h8_c00085{height:68.402813pt;}
.ha_c00085{height:69.753750pt;}
.h3_c00085{height:73.239548pt;}
.h9_c00085{height:76.003125pt;}
.hb_c00085{height:80.148923pt;}
.h1_c00085{height:986.666667pt;}
.h0_c00085{height:1122.666667pt;}
.w1_c00085{width:652.000000pt;}
.w0_c00085{width:793.333333pt;}
.x0_c00085{left:0.000000pt;}
.x2_c00085{left:29.351987pt;}
.x1d_c00085{left:58.889187pt;}
.x14_c00085{left:60.342067pt;}
.x1_c00085{left:70.666667pt;}
.x34_c00085{left:78.733187pt;}
.x5f_c00085{left:80.325987pt;}
.x15_c00085{left:89.130387pt;}
.x69_c00085{left:90.401987pt;}
.x1e_c00085{left:91.642787pt;}
.x2f_c00085{left:98.216387pt;}
.x27_c00085{left:99.162387pt;}
.x7_c00085{left:108.274787pt;}
.x8_c00085{left:118.597187pt;}
.x5c_c00085{left:119.886387pt;}
.x30_c00085{left:128.140787pt;}
.x40_c00085{left:137.473187pt;}
.x59_c00085{left:138.581987pt;}
.x9_c00085{left:147.729587pt;}
.x45_c00085{left:148.662387pt;}
.x52_c00085{left:157.409587pt;}
.x1f_c00085{left:158.518387pt;}
.x4c_c00085{left:166.605587pt;}
.x4d_c00085{left:169.104787pt;}
.x28_c00085{left:177.376787pt;}
.x39_c00085{left:178.432787pt;}
.x20_c00085{left:188.059987pt;}
.xa_c00085{left:196.771987pt;}
.x16_c00085{left:197.814787pt;}
.x60_c00085{left:200.305187pt;}
.x53_c00085{left:202.170787pt;}
.x54_c00085{left:204.771187pt;}
.x3a_c00085{left:206.781987pt;}
.x29_c00085{left:207.943587pt;}
.x56_c00085{left:210.125987pt;}
.x17_c00085{left:217.469587pt;}
.x3f_c00085{left:223.427187pt;}
.x21_c00085{left:226.977987pt;}
.x4e_c00085{left:227.954787pt;}
.x18_c00085{left:236.798787pt;}
.x2a_c00085{left:238.004387pt;}
.x46_c00085{left:247.811987pt;}
.x35_c00085{left:257.377587pt;}
.x6b_c00085{left:258.310387pt;}
.xb_c00085{left:266.542787pt;}
.x19_c00085{left:268.698787pt;}
.x22_c00085{left:276.407587pt;}
.x64_c00085{left:277.353587pt;}
.x36_c00085{left:285.585987pt;}
.x23_c00085{left:286.813587pt;}
.xc_c00085{left:296.044787pt;}
.x31_c00085{left:305.856787pt;}
.x3b_c00085{left:306.798387pt;}
.xd_c00085{left:315.818387pt;}
.x5a_c00085{left:316.905187pt;}
.x32_c00085{left:325.784387pt;}
.x47_c00085{left:335.635987pt;}
.x57_c00085{left:345.773587pt;}
.xe_c00085{left:355.532787pt;}
.x65_c00085{left:356.505187pt;}
.x37_c00085{left:365.089587pt;}
.x5b_c00085{left:366.343587pt;}
.x48_c00085{left:375.178787pt;}
.x2b_c00085{left:376.868387pt;}
.x1a_c00085{left:385.039187pt;}
.x41_c00085{left:394.846787pt;}
.xf_c00085{left:402.625987pt;}
.x1b_c00085{left:404.135187pt;}
.x4f_c00085{left:405.604787pt;}
.x66_c00085{left:407.171187pt;}
.x1c_c00085{left:414.206787pt;}
.x24_c00085{left:423.710787pt;}
.x42_c00085{left:424.933987pt;}
.x2c_c00085{left:434.446787pt;}
.x49_c00085{left:443.871587pt;}
.x6c_c00085{left:444.918787pt;}
.x10_c00085{left:453.494387pt;}
.x2d_c00085{left:463.631987pt;}
.x61_c00085{left:473.760787pt;}
.x25_c00085{left:482.925987pt;}
.x2e_c00085{left:483.889587pt;}
.x68_c00085{left:484.839987pt;}
.x3c_c00085{left:493.375987pt;}
.x4a_c00085{left:494.282387pt;}
.x50_c00085{left:503.227587pt;}
.x11_c00085{left:512.093587pt;}
.x5d_c00085{left:513.347587pt;}
.x3d_c00085{left:522.200387pt;}
.x4b_c00085{left:523.449987pt;}
.x12_c00085{left:531.695587pt;}
.x6a_c00085{left:533.609587pt;}
.x38_c00085{left:542.193987pt;}
.x62_c00085{left:543.091587pt;}
.x67_c00085{left:544.442387pt;}
.x26_c00085{left:551.684787pt;}
.x43_c00085{left:552.674787pt;}
.x13_c00085{left:561.320787pt;}
.x5e_c00085{left:563.186387pt;}
.x3_c00085{left:571.295587pt;}
.x51_c00085{left:572.905987pt;}
.x33_c00085{left:581.340787pt;}
.x58_c00085{left:582.247187pt;}
.x55_c00085{left:592.243987pt;}
.x63_c00085{left:601.501587pt;}
.x6d_c00085{left:605.487987pt;}
.x3e_c00085{left:607.181987pt;}
.x4_c00085{left:609.914387pt;}
.x5_c00085{left:611.282787pt;}
.x6_c00085{left:613.513587pt;}
.x44_c00085{left:621.046387pt;}
.x6e_c00085{left:642.962787pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e7cf7c1f0fdb4e6ecfc30ac6.woff2')format("woff");}.ff1_c00086{font-family:ff1_c00086;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00086;src:url('chunks/assets/font_daef8eb6162dd0851a7e2486.woff2')format("woff");}.ff2_c00086{font-family:ff2_c00086;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00086;src:url('chunks/assets/font_01e09fa3cabf12af47c9d659.woff2')format("woff");}.ff3_c00086{font-family:ff3_c00086;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00086;src:url('chunks/assets/font_64eae5f9d74be9bb3a648b98.woff2')format("woff");}.ff4_c00086{font-family:ff4_c00086;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m95_c00086{transform:matrix(0.139492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139492,0.000000,0.000000,0.250000,0,0);}
.m8b_c00086{transform:matrix(0.187755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187755,0.000000,0.000000,0.250000,0,0);}
.m55_c00086{transform:matrix(0.197917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197917,0.000000,0.000000,0.250000,0,0);}
.m17_c00086{transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);}
.m20_c00086{transform:matrix(0.216704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216704,0.000000,0.000000,0.250000,0,0);}
.m9_c00086{transform:matrix(0.242302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242302,0.000000,0.000000,0.250000,0,0);}
.m64_c00086{transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);}
.m0_c00086{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m30_c00086{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.ma1_c00086{transform:matrix(0.253547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253547,0.000000,0.000000,0.250000,0,0);}
.m1a_c00086{transform:matrix(0.253847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253847,0.000000,0.000000,0.250000,0,0);}
.m12_c00086{transform:matrix(0.254054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254054,0.000000,0.000000,0.250000,0,0);}
.m3_c00086{transform:matrix(0.255030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255030,0.000000,0.000000,0.250000,0,0);}
.m90_c00086{transform:matrix(0.257128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257128,0.000000,0.000000,0.250000,0,0);}
.m7a_c00086{transform:matrix(0.257987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257987,0.000000,0.000000,0.250000,0,0);}
.m8c_c00086{transform:matrix(0.259181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259181,0.000000,0.000000,0.250000,0,0);}
.ma8_c00086{transform:matrix(0.260359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260359,0.000000,0.000000,0.250000,0,0);}
.m65_c00086{transform:matrix(0.260644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260644,0.000000,0.000000,0.250000,0,0);}
.m7d_c00086{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m13_c00086{transform:matrix(0.261125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261125,0.000000,0.000000,0.250000,0,0);}
.m76_c00086{transform:matrix(0.261665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261665,0.000000,0.000000,0.250000,0,0);}
.m25_c00086{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m7_c00086{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m36_c00086{transform:matrix(0.264661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264661,0.000000,0.000000,0.250000,0,0);}
.m1_c00086{transform:matrix(0.266146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266146,0.000000,0.000000,0.250000,0,0);}
.m37_c00086{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m5d_c00086{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.m18_c00086{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m2b_c00086{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.m14_c00086{transform:matrix(0.269191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269191,0.000000,0.000000,0.250000,0,0);}
.ma6_c00086{transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);}
.ma_c00086{transform:matrix(0.270538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270538,0.000000,0.000000,0.250000,0,0);}
.m4e_c00086{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m7c_c00086{transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);}
.m93_c00086{transform:matrix(0.271853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271853,0.000000,0.000000,0.250000,0,0);}
.m7f_c00086{transform:matrix(0.272293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272293,0.000000,0.000000,0.250000,0,0);}
.m23_c00086{transform:matrix(0.273354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273354,0.000000,0.000000,0.250000,0,0);}
.m4f_c00086{transform:matrix(0.273534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273534,0.000000,0.000000,0.250000,0,0);}
.m3b_c00086{transform:matrix(0.273816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273816,0.000000,0.000000,0.250000,0,0);}
.m5b_c00086{transform:matrix(0.274705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274705,0.000000,0.000000,0.250000,0,0);}
.m15_c00086{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m53_c00086{transform:matrix(0.275570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275570,0.000000,0.000000,0.250000,0,0);}
.mb_c00086{transform:matrix(0.276072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276072,0.000000,0.000000,0.250000,0,0);}
.m99_c00086{transform:matrix(0.276792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276792,0.000000,0.000000,0.250000,0,0);}
.m84_c00086{transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);}
.m45_c00086{transform:matrix(0.277767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277767,0.000000,0.000000,0.250000,0,0);}
.m1d_c00086{transform:matrix(0.279178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279178,0.000000,0.000000,0.250000,0,0);}
.ma0_c00086{transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);}
.m24_c00086{transform:matrix(0.280710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280710,0.000000,0.000000,0.250000,0,0);}
.m49_c00086{transform:matrix(0.280783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280783,0.000000,0.000000,0.250000,0,0);}
.ma3_c00086{transform:matrix(0.281190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281190,0.000000,0.000000,0.250000,0,0);}
.m1c_c00086{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.m5a_c00086{transform:matrix(0.281954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281954,0.000000,0.000000,0.250000,0,0);}
.m69_c00086{transform:matrix(0.283330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283330,0.000000,0.000000,0.250000,0,0);}
.m81_c00086{transform:matrix(0.284625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284625,0.000000,0.000000,0.250000,0,0);}
.m6b_c00086{transform:matrix(0.284669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284669,0.000000,0.000000,0.250000,0,0);}
.m87_c00086{transform:matrix(0.285047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285047,0.000000,0.000000,0.250000,0,0);}
.m67_c00086{transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);}
.m19_c00086{transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);}
.m40_c00086{transform:matrix(0.286373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286373,0.000000,0.000000,0.250000,0,0);}
.m9b_c00086{transform:matrix(0.286457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286457,0.000000,0.000000,0.250000,0,0);}
.m9f_c00086{transform:matrix(0.286523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286523,0.000000,0.000000,0.250000,0,0);}
.m4d_c00086{transform:matrix(0.286692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286692,0.000000,0.000000,0.250000,0,0);}
.m59_c00086{transform:matrix(0.286992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286992,0.000000,0.000000,0.250000,0,0);}
.m96_c00086{transform:matrix(0.287026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287026,0.000000,0.000000,0.250000,0,0);}
.m86_c00086{transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);}
.m71_c00086{transform:matrix(0.287440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287440,0.000000,0.000000,0.250000,0,0);}
.m9d_c00086{transform:matrix(0.288481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288481,0.000000,0.000000,0.250000,0,0);}
.m2e_c00086{transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);}
.m60_c00086{transform:matrix(0.288626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288626,0.000000,0.000000,0.250000,0,0);}
.m94_c00086{transform:matrix(0.288737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288737,0.000000,0.000000,0.250000,0,0);}
.mc_c00086{transform:matrix(0.289076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289076,0.000000,0.000000,0.250000,0,0);}
.m26_c00086{transform:matrix(0.290074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290074,0.000000,0.000000,0.250000,0,0);}
.m1b_c00086{transform:matrix(0.290107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290107,0.000000,0.000000,0.250000,0,0);}
.m48_c00086{transform:matrix(0.290286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290286,0.000000,0.000000,0.250000,0,0);}
.m4c_c00086{transform:matrix(0.290818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290818,0.000000,0.000000,0.250000,0,0);}
.m8f_c00086{transform:matrix(0.290859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290859,0.000000,0.000000,0.250000,0,0);}
.m56_c00086{transform:matrix(0.291694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291694,0.000000,0.000000,0.250000,0,0);}
.ma2_c00086{transform:matrix(0.291710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291710,0.000000,0.000000,0.250000,0,0);}
.m61_c00086{transform:matrix(0.293195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293195,0.000000,0.000000,0.250000,0,0);}
.m74_c00086{transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);}
.m2a_c00086{transform:matrix(0.294247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294247,0.000000,0.000000,0.250000,0,0);}
.m8d_c00086{transform:matrix(0.294292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294292,0.000000,0.000000,0.250000,0,0);}
.m41_c00086{transform:matrix(0.294399,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294399,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294399,0.000000,0.000000,0.250000,0,0);}
.m5_c00086{transform:matrix(0.294414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294414,0.000000,0.000000,0.250000,0,0);}
.m47_c00086{transform:matrix(0.294572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294572,0.000000,0.000000,0.250000,0,0);}
.m4_c00086{transform:matrix(0.295580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295580,0.000000,0.000000,0.250000,0,0);}
.m5f_c00086{transform:matrix(0.295679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295679,0.000000,0.000000,0.250000,0,0);}
.m3d_c00086{transform:matrix(0.295853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295853,0.000000,0.000000,0.250000,0,0);}
.m89_c00086{transform:matrix(0.295977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295977,0.000000,0.000000,0.250000,0,0);}
.m9c_c00086{transform:matrix(0.296672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296672,0.000000,0.000000,0.250000,0,0);}
.m57_c00086{transform:matrix(0.296735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296735,0.000000,0.000000,0.250000,0,0);}
.m9a_c00086{transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);}
.m39_c00086{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m92_c00086{transform:matrix(0.297212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297212,0.000000,0.000000,0.250000,0,0);}
.m27_c00086{transform:matrix(0.297612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297612,0.000000,0.000000,0.250000,0,0);}
.ma7_c00086{transform:matrix(0.297631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297631,0.000000,0.000000,0.250000,0,0);}
.m68_c00086{transform:matrix(0.297966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297966,0.000000,0.000000,0.250000,0,0);}
.m3e_c00086{transform:matrix(0.299520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299520,0.000000,0.000000,0.250000,0,0);}
.m54_c00086{transform:matrix(0.299574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299574,0.000000,0.000000,0.250000,0,0);}
.m78_c00086{transform:matrix(0.300052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300052,0.000000,0.000000,0.250000,0,0);}
.m33_c00086{transform:matrix(0.300323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300323,0.000000,0.000000,0.250000,0,0);}
.m5c_c00086{transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);}
.m6c_c00086{transform:matrix(0.300643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300643,0.000000,0.000000,0.250000,0,0);}
.m11_c00086{transform:matrix(0.300970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300970,0.000000,0.000000,0.250000,0,0);}
.m72_c00086{transform:matrix(0.301673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301673,0.000000,0.000000,0.250000,0,0);}
.m6d_c00086{transform:matrix(0.301836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301836,0.000000,0.000000,0.250000,0,0);}
.m9e_c00086{transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);}
.m31_c00086{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m1e_c00086{transform:matrix(0.302580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302580,0.000000,0.000000,0.250000,0,0);}
.m1f_c00086{transform:matrix(0.303745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303745,0.000000,0.000000,0.250000,0,0);}
.m82_c00086{transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);}
.m8e_c00086{transform:matrix(0.306275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306275,0.000000,0.000000,0.250000,0,0);}
.m51_c00086{transform:matrix(0.306620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306620,0.000000,0.000000,0.250000,0,0);}
.m22_c00086{transform:matrix(0.307076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307076,0.000000,0.000000,0.250000,0,0);}
.m7b_c00086{transform:matrix(0.307816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307816,0.000000,0.000000,0.250000,0,0);}
.m43_c00086{transform:matrix(0.308140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308140,0.000000,0.000000,0.250000,0,0);}
.m63_c00086{transform:matrix(0.308776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308776,0.000000,0.000000,0.250000,0,0);}
.m5e_c00086{transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);}
.m2f_c00086{transform:matrix(0.309993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309993,0.000000,0.000000,0.250000,0,0);}
.m97_c00086{transform:matrix(0.310026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310026,0.000000,0.000000,0.250000,0,0);}
.m91_c00086{transform:matrix(0.310518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310518,0.000000,0.000000,0.250000,0,0);}
.m66_c00086{transform:matrix(0.310949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310949,0.000000,0.000000,0.250000,0,0);}
.ma5_c00086{transform:matrix(0.311211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311211,0.000000,0.000000,0.250000,0,0);}
.m50_c00086{transform:matrix(0.311501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311501,0.000000,0.000000,0.250000,0,0);}
.m10_c00086{transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);}
.m8_c00086{transform:matrix(0.312078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312078,0.000000,0.000000,0.250000,0,0);}
.m29_c00086{transform:matrix(0.312086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312086,0.000000,0.000000,0.250000,0,0);}
.m44_c00086{transform:matrix(0.312229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312229,0.000000,0.000000,0.250000,0,0);}
.m21_c00086{transform:matrix(0.312886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312886,0.000000,0.000000,0.250000,0,0);}
.m70_c00086{transform:matrix(0.313225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313225,0.000000,0.000000,0.250000,0,0);}
.m35_c00086{transform:matrix(0.313519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313519,0.000000,0.000000,0.250000,0,0);}
.m46_c00086{transform:matrix(0.313620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313620,0.000000,0.000000,0.250000,0,0);}
.m6a_c00086{transform:matrix(0.314287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314287,0.000000,0.000000,0.250000,0,0);}
.m88_c00086{transform:matrix(0.314364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314364,0.000000,0.000000,0.250000,0,0);}
.md_c00086{transform:matrix(0.315252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315252,0.000000,0.000000,0.250000,0,0);}
.m80_c00086{transform:matrix(0.317212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317212,0.000000,0.000000,0.250000,0,0);}
.m62_c00086{transform:matrix(0.317408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317408,0.000000,0.000000,0.250000,0,0);}
.m3f_c00086{transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);}
.m2d_c00086{transform:matrix(0.319963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319963,0.000000,0.000000,0.250000,0,0);}
.m7e_c00086{transform:matrix(0.320725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320725,0.000000,0.000000,0.250000,0,0);}
.m8a_c00086{transform:matrix(0.321773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321773,0.000000,0.000000,0.250000,0,0);}
.m73_c00086{transform:matrix(0.321881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321881,0.000000,0.000000,0.250000,0,0);}
.m2_c00086{transform:matrix(0.321997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321997,0.000000,0.000000,0.250000,0,0);}
.m58_c00086{transform:matrix(0.322681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322681,0.000000,0.000000,0.250000,0,0);}
.m85_c00086{transform:matrix(0.322809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322809,0.000000,0.000000,0.250000,0,0);}
.m16_c00086{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.m32_c00086{transform:matrix(0.323924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323924,0.000000,0.000000,0.250000,0,0);}
.m2c_c00086{transform:matrix(0.324242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324242,0.000000,0.000000,0.250000,0,0);}
.m83_c00086{transform:matrix(0.325872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325872,0.000000,0.000000,0.250000,0,0);}
.m75_c00086{transform:matrix(0.325919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325919,0.000000,0.000000,0.250000,0,0);}
.m4b_c00086{transform:matrix(0.326130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326130,0.000000,0.000000,0.250000,0,0);}
.me_c00086{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.m6e_c00086{transform:matrix(0.331266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331266,0.000000,0.000000,0.250000,0,0);}
.m28_c00086{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.mf_c00086{transform:matrix(0.334121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334121,0.000000,0.000000,0.250000,0,0);}
.m77_c00086{transform:matrix(0.336449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336449,0.000000,0.000000,0.250000,0,0);}
.m79_c00086{transform:matrix(0.337235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337235,0.000000,0.000000,0.250000,0,0);}
.m98_c00086{transform:matrix(0.337357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337357,0.000000,0.000000,0.250000,0,0);}
.m3a_c00086{transform:matrix(0.339200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339200,0.000000,0.000000,0.250000,0,0);}
.m3c_c00086{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m6_c00086{transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);}
.m42_c00086{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.m34_c00086{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m4a_c00086{transform:matrix(0.351213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351213,0.000000,0.000000,0.250000,0,0);}
.m52_c00086{transform:matrix(0.352884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352884,0.000000,0.000000,0.250000,0,0);}
.m6f_c00086{transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);}
.m38_c00086{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.ma9_c00086{transform:matrix(0.372221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372221,0.000000,0.000000,0.250000,0,0);}
.ma4_c00086{transform:matrix(0.377842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377842,0.000000,0.000000,0.250000,0,0);}
.v1_c00086{vertical-align:-22.809600px;}
.v0_c00086{vertical-align:0.000000px;}
.ls3_c00086{letter-spacing:-2.744280px;}
.ls10_c00086{letter-spacing:-2.217600px;}
.ls8_c00086{letter-spacing:-1.897474px;}
.ls11_c00086{letter-spacing:-1.772021px;}
.ls9_c00086{letter-spacing:-1.701454px;}
.lse_c00086{letter-spacing:-1.685772px;}
.ls7_c00086{letter-spacing:-0.846806px;}
.ls0_c00086{letter-spacing:0.000000px;}
.ls6_c00086{letter-spacing:0.533174px;}
.lsd_c00086{letter-spacing:2.305195px;}
.lsa_c00086{letter-spacing:3.010867px;}
.lsf_c00086{letter-spacing:3.207610px;}
.lsb_c00086{letter-spacing:3.685176px;}
.ls12_c00086{letter-spacing:3.742200px;}
.ls5_c00086{letter-spacing:3.801610px;}
.ls2_c00086{letter-spacing:3.920400px;}
.ls1_c00086{letter-spacing:4.276810px;}
.ls4_c00086{letter-spacing:49.896198px;}
.lsc_c00086{letter-spacing:51.321798px;}
.sc__c00086{text-shadow:none;}
.sc0_c00086{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00086{-webkit-text-stroke:0px transparent;}
.sc0_c00086{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00086{word-spacing:-19.602000px;}
.ws1_c00086{word-spacing:-15.840000px;}
.ws2_c00086{word-spacing:0.000000px;}
._2_c00086{margin-left:-25.047000px;}
._3_c00086{margin-left:-2.090880px;}
._1_c00086{width:7.919208px;}
._0_c00086{width:9.330552px;}
._4_c00086{width:1435.456440px;}
.fc0_c00086{color:transparent;}
.fs7_c00086{font-size:27.720000px;}
.fs10_c00086{font-size:33.264000px;}
.fs0_c00086{font-size:33.660000px;}
.fsa_c00086{font-size:39.204000px;}
.fs3_c00086{font-size:49.896198px;}
.fs6_c00086{font-size:51.321798px;}
.fsd_c00086{font-size:63.360000px;}
.fsc_c00086{font-size:64.152198px;}
.fse_c00086{font-size:64.548000px;}
.fs9_c00086{font-size:68.112198px;}
.fs5_c00086{font-size:71.280000px;}
.fsf_c00086{font-size:74.844000px;}
.fs4_c00086{font-size:76.032198px;}
.fs2_c00086{font-size:78.408000px;}
.fs8_c00086{font-size:79.200000px;}
.fs1_c00086{font-size:85.536198px;}
.fsb_c00086{font-size:104.544000px;}
.y0_c00086{bottom:0.000000px;}
.y1_c00086{bottom:76.500000px;}
.y2_c00086{bottom:85.799385px;}
.y21_c00086{bottom:109.683135px;}
.y20_c00086{bottom:128.567385px;}
.y1f_c00086{bottom:158.861385px;}
.y1e_c00086{bottom:190.580985px;}
.y1d_c00086{bottom:224.443935px;}
.y1c_c00086{bottom:224.800335px;}
.y1b_c00086{bottom:256.519935px;}
.y1a_c00086{bottom:277.186185px;}
.y19_c00086{bottom:288.595935px;}
.y18_c00086{bottom:325.661535px;}
.y16_c00086{bottom:352.742985px;}
.y17_c00086{bottom:364.860585px;}
.y15_c00086{bottom:384.818985px;}
.y14_c00086{bottom:407.633535px;}
.y13_c00086{bottom:417.607785px;}
.y12_c00086{bottom:450.401535px;}
.y11_c00086{bottom:482.828985px;}
.y10_c00086{bottom:514.909935px;}
.yf_c00086{bottom:546.980985px;}
.ye_c00086{bottom:579.061935px;}
.yd_c00086{bottom:611.137935px;}
.yc_c00086{bottom:643.926735px;}
.yb_c00086{bottom:676.354185px;}
.ya_c00086{bottom:709.147935px;}
.y9_c00086{bottom:741.218985px;}
.y8_c00086{bottom:773.651385px;}
.y7_c00086{bottom:837.803385px;}
.y6_c00086{bottom:870.240735px;}
.y5_c00086{bottom:902.316735px;}
.y4_c00086{bottom:934.744185px;}
.y3_c00086{bottom:1084.080735px;}
.h9_c00086{height:28.911094px;}
.h2_c00086{height:33.035449px;}
.h5_c00086{height:33.230868px;}
.h8_c00086{height:34.180317px;}
.h11_c00086{height:34.693313px;}
.hb_c00086{height:38.476582px;}
.h12_c00086{height:48.229294px;}
.he_c00086{height:62.184375px;}
.hd_c00086{height:66.908738px;}
.hf_c00086{height:67.321547px;}
.h7_c00086{height:69.957422px;}
.h10_c00086{height:75.428719px;}
.h6_c00086{height:76.626200px;}
.h4_c00086{height:76.953164px;}
.ha_c00086{height:82.603125px;}
.h3_c00086{height:83.949101px;}
.hc_c00086{height:109.036125px;}
.h1_c00086{height:1110.000000px;}
.h0_c00086{height:1263.000000px;}
.w1_c00086{width:733.500000px;}
.w0_c00086{width:892.500000px;}
.x0_c00086{left:0.000000px;}
.x2_c00086{left:30.174735px;}
.x4c_c00086{left:51.632985px;}
.x1c_c00086{left:59.493585px;}
.x4_c00086{left:61.364685px;}
.x1_c00086{left:79.500000px;}
.x1d_c00086{left:92.990235px;}
.x4a_c00086{left:94.059435px;}
.xe_c00086{left:105.503835px;}
.x27_c00086{left:115.087035px;}
.x5_c00086{left:127.051185px;}
.x41_c00086{left:129.471735px;}
.x1e_c00086{left:137.515485px;}
.x5b_c00086{left:138.792585px;}
.x51_c00086{left:147.860985px;}
.x16_c00086{left:149.138085px;}
.x30_c00086{left:159.434085px;}
.x6_c00086{left:171.195285px;}
.xf_c00086{left:182.263485px;}
.x37_c00086{left:192.604035px;}
.x28_c00086{left:193.965285px;}
.x4d_c00086{left:195.762135px;}
.x1f_c00086{left:203.474235px;}
.x56_c00086{left:204.696885px;}
.x50_c00086{left:213.849435px;}
.x2c_c00086{left:215.289885px;}
.x29_c00086{left:226.184835px;}
.x10_c00086{left:227.199585px;}
.x52_c00086{left:236.168985px;}
.x31_c00086{left:237.752985px;}
.x53_c00086{left:241.935735px;}
.x7_c00086{left:248.910285px;}
.x20_c00086{left:259.701285px;}
.x38_c00086{left:269.764635px;}
.x32_c00086{left:270.828885px;}
.x4f_c00086{left:278.828085px;}
.x17_c00086{left:280.496235px;}
.x57_c00086{left:284.396835px;}
.x47_c00086{left:292.569285px;}
.x11_c00086{left:304.137435px;}
.x3b_c00086{left:305.162085px;}
.x49_c00086{left:311.042685px;}
.x5d_c00086{left:313.181085px;}
.x18_c00086{left:315.220485px;}
.x2d_c00086{left:325.699635px;}
.x42_c00086{left:326.942085px;}
.x21_c00086{left:337.317285px;}
.x58_c00086{left:339.742785px;}
.x12_c00086{left:348.340935px;}
.x22_c00086{left:359.582385px;}
.x39_c00086{left:370.784235px;}
.x3e_c00086{left:381.154485px;}
.x19_c00086{left:382.555335px;}
.x48_c00086{left:391.648485px;}
.x8_c00086{left:393.197835px;}
.x54_c00086{left:403.825485px;}
.x43_c00086{left:404.978835px;}
.x35_c00086{left:414.621435px;}
.x9_c00086{left:425.353035px;}
.x23_c00086{left:437.114235px;}
.x2e_c00086{left:447.801285px;}
.x1a_c00086{left:457.983435px;}
.x45_c00086{left:459.166485px;}
.x24_c00086{left:469.690185px;}
.xa_c00086{left:470.902935px;}
.x2a_c00086{left:481.941435px;}
.x13_c00086{left:492.153285px;}
.x2f_c00086{left:503.404635px;}
.x3c_c00086{left:504.419385px;}
.x33_c00086{left:514.814385px;}
.x36_c00086{left:525.491535px;}
.x2b_c00086{left:536.327085px;}
.x1b_c00086{left:547.469535px;}
.x3a_c00086{left:549.395085px;}
.x25_c00086{left:556.973535px;}
.x55_c00086{left:558.062535px;}
.xb_c00086{left:568.442685px;}
.x26_c00086{left:569.996985px;}
.x59_c00086{left:579.159435px;}
.x34_c00086{left:580.604835px;}
.x46_c00086{left:590.519685px;}
.x3f_c00086{left:592.123485px;}
.xc_c00086{left:602.706585px;}
.x3d_c00086{left:614.061885px;}
.x14_c00086{left:616.685385px;}
.x40_c00086{left:625.169685px;}
.x3_c00086{left:635.916135px;}
.x4b_c00086{left:658.072335px;}
.xd_c00086{left:659.116785px;}
.x5c_c00086{left:669.303885px;}
.x44_c00086{left:675.600285px;}
.x15_c00086{left:681.213585px;}
.x4e_c00086{left:684.856785px;}
.x5a_c00086{left:691.192785px;}
@media print{
.v1_c00086{vertical-align:-20.275200pt;}
.v0_c00086{vertical-align:0.000000pt;}
.ls3_c00086{letter-spacing:-2.439360pt;}
.ls10_c00086{letter-spacing:-1.971200pt;}
.ls8_c00086{letter-spacing:-1.686643pt;}
.ls11_c00086{letter-spacing:-1.575130pt;}
.ls9_c00086{letter-spacing:-1.512403pt;}
.lse_c00086{letter-spacing:-1.498464pt;}
.ls7_c00086{letter-spacing:-0.752717pt;}
.ls0_c00086{letter-spacing:0.000000pt;}
.ls6_c00086{letter-spacing:0.473933pt;}
.lsd_c00086{letter-spacing:2.049062pt;}
.lsa_c00086{letter-spacing:2.676326pt;}
.lsf_c00086{letter-spacing:2.851209pt;}
.lsb_c00086{letter-spacing:3.275712pt;}
.ls12_c00086{letter-spacing:3.326400pt;}
.ls5_c00086{letter-spacing:3.379209pt;}
.ls2_c00086{letter-spacing:3.484800pt;}
.ls1_c00086{letter-spacing:3.801609pt;}
.ls4_c00086{letter-spacing:44.352176pt;}
.lsc_c00086{letter-spacing:45.619376pt;}
.ws0_c00086{word-spacing:-17.424000pt;}
.ws1_c00086{word-spacing:-14.080000pt;}
.ws2_c00086{word-spacing:0.000000pt;}
._2_c00086{margin-left:-22.264000pt;}
._3_c00086{margin-left:-1.858560pt;}
._1_c00086{width:7.039296pt;}
._0_c00086{width:8.293824pt;}
._4_c00086{width:1275.961280pt;}
.fs7_c00086{font-size:24.640000pt;}
.fs10_c00086{font-size:29.568000pt;}
.fs0_c00086{font-size:29.920000pt;}
.fsa_c00086{font-size:34.848000pt;}
.fs3_c00086{font-size:44.352176pt;}
.fs6_c00086{font-size:45.619376pt;}
.fsd_c00086{font-size:56.320000pt;}
.fsc_c00086{font-size:57.024176pt;}
.fse_c00086{font-size:57.376000pt;}
.fs9_c00086{font-size:60.544176pt;}
.fs5_c00086{font-size:63.360000pt;}
.fsf_c00086{font-size:66.528000pt;}
.fs4_c00086{font-size:67.584176pt;}
.fs2_c00086{font-size:69.696000pt;}
.fs8_c00086{font-size:70.400000pt;}
.fs1_c00086{font-size:76.032176pt;}
.fsb_c00086{font-size:92.928000pt;}
.y0_c00086{bottom:0.000000pt;}
.y1_c00086{bottom:68.000000pt;}
.y2_c00086{bottom:76.266120pt;}
.y21_c00086{bottom:97.496120pt;}
.y20_c00086{bottom:114.282120pt;}
.y1f_c00086{bottom:141.210120pt;}
.y1e_c00086{bottom:169.405320pt;}
.y1d_c00086{bottom:199.505720pt;}
.y1c_c00086{bottom:199.822520pt;}
.y1b_c00086{bottom:228.017720pt;}
.y1a_c00086{bottom:246.387720pt;}
.y19_c00086{bottom:256.529720pt;}
.y18_c00086{bottom:289.476920pt;}
.y16_c00086{bottom:313.549320pt;}
.y17_c00086{bottom:324.320520pt;}
.y15_c00086{bottom:342.061320pt;}
.y14_c00086{bottom:362.340920pt;}
.y13_c00086{bottom:371.206920pt;}
.y12_c00086{bottom:400.356920pt;}
.y11_c00086{bottom:429.181320pt;}
.y10_c00086{bottom:457.697720pt;}
.yf_c00086{bottom:486.205320pt;}
.ye_c00086{bottom:514.721720pt;}
.yd_c00086{bottom:543.233720pt;}
.yc_c00086{bottom:572.379320pt;}
.yb_c00086{bottom:601.203720pt;}
.ya_c00086{bottom:630.353720pt;}
.y9_c00086{bottom:658.861320pt;}
.y8_c00086{bottom:687.690120pt;}
.y7_c00086{bottom:744.714120pt;}
.y6_c00086{bottom:773.547320pt;}
.y5_c00086{bottom:802.059320pt;}
.y4_c00086{bottom:830.883720pt;}
.y3_c00086{bottom:963.627320pt;}
.h9_c00086{height:25.698750pt;}
.h2_c00086{height:29.364844pt;}
.h5_c00086{height:29.538549pt;}
.h8_c00086{height:30.382504pt;}
.h11_c00086{height:30.838500pt;}
.hb_c00086{height:34.201406pt;}
.h12_c00086{height:42.870484pt;}
.he_c00086{height:55.275000pt;}
.hd_c00086{height:59.474434pt;}
.hf_c00086{height:59.841375pt;}
.h7_c00086{height:62.184375pt;}
.h10_c00086{height:67.047750pt;}
.h6_c00086{height:68.112177pt;}
.h4_c00086{height:68.402813pt;}
.ha_c00086{height:73.425000pt;}
.h3_c00086{height:74.621423pt;}
.hc_c00086{height:96.921000pt;}
.h1_c00086{height:986.666667pt;}
.h0_c00086{height:1122.666667pt;}
.w1_c00086{width:652.000000pt;}
.w0_c00086{width:793.333333pt;}
.x0_c00086{left:0.000000pt;}
.x2_c00086{left:26.821987pt;}
.x4c_c00086{left:45.895987pt;}
.x1c_c00086{left:52.883187pt;}
.x4_c00086{left:54.546387pt;}
.x1_c00086{left:70.666667pt;}
.x1d_c00086{left:82.657987pt;}
.x4a_c00086{left:83.608387pt;}
.xe_c00086{left:93.781187pt;}
.x27_c00086{left:102.299587pt;}
.x5_c00086{left:112.934387pt;}
.x41_c00086{left:115.085987pt;}
.x1e_c00086{left:122.235987pt;}
.x5b_c00086{left:123.371187pt;}
.x51_c00086{left:131.431987pt;}
.x16_c00086{left:132.567187pt;}
.x30_c00086{left:141.719187pt;}
.x6_c00086{left:152.173587pt;}
.xf_c00086{left:162.011987pt;}
.x37_c00086{left:171.203587pt;}
.x28_c00086{left:172.413587pt;}
.x4d_c00086{left:174.010787pt;}
.x1f_c00086{left:180.865987pt;}
.x56_c00086{left:181.952787pt;}
.x50_c00086{left:190.088387pt;}
.x2c_c00086{left:191.368787pt;}
.x29_c00086{left:201.053187pt;}
.x10_c00086{left:201.955187pt;}
.x52_c00086{left:209.927987pt;}
.x31_c00086{left:211.335987pt;}
.x53_c00086{left:215.053987pt;}
.x7_c00086{left:221.253587pt;}
.x20_c00086{left:230.845587pt;}
.x38_c00086{left:239.790787pt;}
.x32_c00086{left:240.736787pt;}
.x4f_c00086{left:247.847187pt;}
.x17_c00086{left:249.329987pt;}
.x57_c00086{left:252.797187pt;}
.x47_c00086{left:260.061587pt;}
.x11_c00086{left:270.344387pt;}
.x3b_c00086{left:271.255187pt;}
.x49_c00086{left:276.482387pt;}
.x5d_c00086{left:278.383187pt;}
.x18_c00086{left:280.195987pt;}
.x2d_c00086{left:289.510787pt;}
.x42_c00086{left:290.615187pt;}
.x21_c00086{left:299.837587pt;}
.x58_c00086{left:301.993587pt;}
.x12_c00086{left:309.636387pt;}
.x22_c00086{left:319.628787pt;}
.x39_c00086{left:329.585987pt;}
.x3e_c00086{left:338.803987pt;}
.x19_c00086{left:340.049187pt;}
.x48_c00086{left:348.131987pt;}
.x8_c00086{left:349.509187pt;}
.x54_c00086{left:358.955987pt;}
.x43_c00086{left:359.981187pt;}
.x35_c00086{left:368.552387pt;}
.x9_c00086{left:378.091587pt;}
.x23_c00086{left:388.545987pt;}
.x2e_c00086{left:398.045587pt;}
.x1a_c00086{left:407.096387pt;}
.x45_c00086{left:408.147987pt;}
.x24_c00086{left:417.502387pt;}
.xa_c00086{left:418.580387pt;}
.x2a_c00086{left:428.392387pt;}
.x13_c00086{left:437.469587pt;}
.x2f_c00086{left:447.470787pt;}
.x3c_c00086{left:448.372787pt;}
.x33_c00086{left:457.612787pt;}
.x36_c00086{left:467.103587pt;}
.x2b_c00086{left:476.735187pt;}
.x1b_c00086{left:486.639587pt;}
.x3a_c00086{left:488.351187pt;}
.x25_c00086{left:495.087587pt;}
.x55_c00086{left:496.055587pt;}
.xb_c00086{left:505.282387pt;}
.x26_c00086{left:506.663987pt;}
.x59_c00086{left:514.808387pt;}
.x34_c00086{left:516.093187pt;}
.x46_c00086{left:524.906387pt;}
.x3f_c00086{left:526.331987pt;}
.xc_c00086{left:535.739187pt;}
.x3d_c00086{left:545.832787pt;}
.x14_c00086{left:548.164787pt;}
.x40_c00086{left:555.706387pt;}
.x3_c00086{left:565.258787pt;}
.x4b_c00086{left:584.953187pt;}
.xd_c00086{left:585.881587pt;}
.x5c_c00086{left:594.936787pt;}
.x44_c00086{left:600.533587pt;}
.x15_c00086{left:605.523187pt;}
.x4e_c00086{left:608.761587pt;}
.x5a_c00086{left:614.393587pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2b8bfe7d39e341f554bd2295.woff2')format("woff");}.ff1_c00087{font-family:ff1_c00087;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00087;src:url('chunks/assets/font_ca9c0b297ead05ab38475ec2.woff2')format("woff");}.ff2_c00087{font-family:ff2_c00087;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00087;src:url('chunks/assets/font_74407d5801f3c5a9c7cc374a.woff2')format("woff");}.ff3_c00087{font-family:ff3_c00087;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00087;src:url('chunks/assets/font_9fcf6385f45c3df3ebb26ffd.woff2')format("woff");}.ff4_c00087{font-family:ff4_c00087;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m12_c00087{transform:matrix(0.132979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132979,0.000000,0.000000,0.250000,0,0);}
.m13_c00087{transform:matrix(0.159575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159575,0.000000,0.000000,0.250000,0,0);}
.m17_c00087{transform:matrix(0.182433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182433,0.000000,0.000000,0.250000,0,0);}
.m16_c00087{transform:matrix(0.184684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184684,0.000000,0.000000,0.250000,0,0);}
.m38_c00087{transform:matrix(0.215534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215534,0.000000,0.000000,0.250000,0,0);}
.m40_c00087{transform:matrix(0.220647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220647,0.000000,0.000000,0.250000,0,0);}
.ma9_c00087{transform:matrix(0.229751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229751,0.000000,0.000000,0.250000,0,0);}
.m18_c00087{transform:matrix(0.233107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233107,0.000000,0.000000,0.250000,0,0);}
.m20_c00087{transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);}
.m0_c00087{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00087{transform:matrix(0.251454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251454,0.000000,0.000000,0.250000,0,0);}
.m3c_c00087{transform:matrix(0.251812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251812,0.000000,0.000000,0.250000,0,0);}
.m66_c00087{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.m1e_c00087{transform:matrix(0.252070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252070,0.000000,0.000000,0.250000,0,0);}
.m50_c00087{transform:matrix(0.252155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252155,0.000000,0.000000,0.250000,0,0);}
.mbe_c00087{transform:matrix(0.252169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252169,0.000000,0.000000,0.250000,0,0);}
.mc3_c00087{transform:matrix(0.256494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256494,0.000000,0.000000,0.250000,0,0);}
.m67_c00087{transform:matrix(0.257497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257497,0.000000,0.000000,0.250000,0,0);}
.m6e_c00087{transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);}
.m7f_c00087{transform:matrix(0.259882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259882,0.000000,0.000000,0.250000,0,0);}
.mdc_c00087{transform:matrix(0.260523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260523,0.000000,0.000000,0.250000,0,0);}
.m23_c00087{transform:matrix(0.260771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260771,0.000000,0.000000,0.250000,0,0);}
.m56_c00087{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m97_c00087{transform:matrix(0.261624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261624,0.000000,0.000000,0.250000,0,0);}
.md6_c00087{transform:matrix(0.263088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263088,0.000000,0.000000,0.250000,0,0);}
.m9_c00087{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m6c_c00087{transform:matrix(0.263520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263520,0.000000,0.000000,0.250000,0,0);}
.m65_c00087{transform:matrix(0.263875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263875,0.000000,0.000000,0.250000,0,0);}
.m59_c00087{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.mcd_c00087{transform:matrix(0.265242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265242,0.000000,0.000000,0.250000,0,0);}
.m72_c00087{transform:matrix(0.267664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267664,0.000000,0.000000,0.250000,0,0);}
.m81_c00087{transform:matrix(0.267742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267742,0.000000,0.000000,0.250000,0,0);}
.m31_c00087{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.ma0_c00087{transform:matrix(0.267925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267925,0.000000,0.000000,0.250000,0,0);}
.m95_c00087{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.m47_c00087{transform:matrix(0.268679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268679,0.000000,0.000000,0.250000,0,0);}
.m88_c00087{transform:matrix(0.268850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268850,0.000000,0.000000,0.250000,0,0);}
.m60_c00087{transform:matrix(0.268958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268958,0.000000,0.000000,0.250000,0,0);}
.md3_c00087{transform:matrix(0.269423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269423,0.000000,0.000000,0.250000,0,0);}
.md_c00087{transform:matrix(0.269485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269485,0.000000,0.000000,0.250000,0,0);}
.mb5_c00087{transform:matrix(0.270075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270075,0.000000,0.000000,0.250000,0,0);}
.mad_c00087{transform:matrix(0.270334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270334,0.000000,0.000000,0.250000,0,0);}
.m83_c00087{transform:matrix(0.270364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270364,0.000000,0.000000,0.250000,0,0);}
.m32_c00087{transform:matrix(0.270546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270546,0.000000,0.000000,0.250000,0,0);}
.m1a_c00087{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.mb6_c00087{transform:matrix(0.271035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271035,0.000000,0.000000,0.250000,0,0);}
.mc6_c00087{transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);}
.md5_c00087{transform:matrix(0.271197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271197,0.000000,0.000000,0.250000,0,0);}
.m61_c00087{transform:matrix(0.271844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271844,0.000000,0.000000,0.250000,0,0);}
.m36_c00087{transform:matrix(0.272083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272083,0.000000,0.000000,0.250000,0,0);}
.m4b_c00087{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m3b_c00087{transform:matrix(0.273212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273212,0.000000,0.000000,0.250000,0,0);}
.ma6_c00087{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.md4_c00087{transform:matrix(0.273287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273287,0.000000,0.000000,0.250000,0,0);}
.m80_c00087{transform:matrix(0.273354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273354,0.000000,0.000000,0.250000,0,0);}
.mb0_c00087{transform:matrix(0.274352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274352,0.000000,0.000000,0.250000,0,0);}
.m24_c00087{transform:matrix(0.274864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274864,0.000000,0.000000,0.250000,0,0);}
.m42_c00087{transform:matrix(0.274901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274901,0.000000,0.000000,0.250000,0,0);}
.md9_c00087{transform:matrix(0.275491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275491,0.000000,0.000000,0.250000,0,0);}
.m8e_c00087{transform:matrix(0.275537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275537,0.000000,0.000000,0.250000,0,0);}
.m4_c00087{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m4c_c00087{transform:matrix(0.276363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276363,0.000000,0.000000,0.250000,0,0);}
.mc9_c00087{transform:matrix(0.276792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276792,0.000000,0.000000,0.250000,0,0);}
.m70_c00087{transform:matrix(0.277004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277004,0.000000,0.000000,0.250000,0,0);}
.ma_c00087{transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);}
.mdf_c00087{transform:matrix(0.277352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277352,0.000000,0.000000,0.250000,0,0);}
.m26_c00087{transform:matrix(0.277366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277366,0.000000,0.000000,0.250000,0,0);}
.mbd_c00087{transform:matrix(0.277586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277586,0.000000,0.000000,0.250000,0,0);}
.ma3_c00087{transform:matrix(0.279178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279178,0.000000,0.000000,0.250000,0,0);}
.m5a_c00087{transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);}
.m75_c00087{transform:matrix(0.279482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279482,0.000000,0.000000,0.250000,0,0);}
.m25_c00087{transform:matrix(0.280329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280329,0.000000,0.000000,0.250000,0,0);}
.m28_c00087{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.m54_c00087{transform:matrix(0.281612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281612,0.000000,0.000000,0.250000,0,0);}
.m3a_c00087{transform:matrix(0.281862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281862,0.000000,0.000000,0.250000,0,0);}
.m1c_c00087{transform:matrix(0.282867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282867,0.000000,0.000000,0.250000,0,0);}
.mb2_c00087{transform:matrix(0.283112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283112,0.000000,0.000000,0.250000,0,0);}
.m3e_c00087{transform:matrix(0.283266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283266,0.000000,0.000000,0.250000,0,0);}
.m5c_c00087{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m33_c00087{transform:matrix(0.283870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283870,0.000000,0.000000,0.250000,0,0);}
.m77_c00087{transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);}
.m93_c00087{transform:matrix(0.284018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284018,0.000000,0.000000,0.250000,0,0);}
.m79_c00087{transform:matrix(0.284316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284316,0.000000,0.000000,0.250000,0,0);}
.ma1_c00087{transform:matrix(0.284533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284533,0.000000,0.000000,0.250000,0,0);}
.m94_c00087{transform:matrix(0.285047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285047,0.000000,0.000000,0.250000,0,0);}
.m3f_c00087{transform:matrix(0.285193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285193,0.000000,0.000000,0.250000,0,0);}
.m7d_c00087{transform:matrix(0.285304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285304,0.000000,0.000000,0.250000,0,0);}
.m8d_c00087{transform:matrix(0.285694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285694,0.000000,0.000000,0.250000,0,0);}
.m21_c00087{transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);}
.m2_c00087{transform:matrix(0.286064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286064,0.000000,0.000000,0.250000,0,0);}
.m5f_c00087{transform:matrix(0.287215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287215,0.000000,0.000000,0.250000,0,0);}
.m51_c00087{transform:matrix(0.287401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287401,0.000000,0.000000,0.250000,0,0);}
.mce_c00087{transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);}
.m37_c00087{transform:matrix(0.288737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288737,0.000000,0.000000,0.250000,0,0);}
.m52_c00087{transform:matrix(0.289155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289155,0.000000,0.000000,0.250000,0,0);}
.md2_c00087{transform:matrix(0.289889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289889,0.000000,0.000000,0.250000,0,0);}
.m4d_c00087{transform:matrix(0.290128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290128,0.000000,0.000000,0.250000,0,0);}
.mab_c00087{transform:matrix(0.290271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290271,0.000000,0.000000,0.250000,0,0);}
.m86_c00087{transform:matrix(0.291218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291218,0.000000,0.000000,0.250000,0,0);}
.m62_c00087{transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);}
.m9f_c00087{transform:matrix(0.292548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292548,0.000000,0.000000,0.250000,0,0);}
.mb1_c00087{transform:matrix(0.292638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292638,0.000000,0.000000,0.250000,0,0);}
.mbb_c00087{transform:matrix(0.292646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292646,0.000000,0.000000,0.250000,0,0);}
.mb3_c00087{transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);}
.m2a_c00087{transform:matrix(0.293719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293719,0.000000,0.000000,0.250000,0,0);}
.m1f_c00087{transform:matrix(0.293833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293833,0.000000,0.000000,0.250000,0,0);}
.maf_c00087{transform:matrix(0.294072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294072,0.000000,0.000000,0.250000,0,0);}
.m84_c00087{transform:matrix(0.294133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294133,0.000000,0.000000,0.250000,0,0);}
.m1b_c00087{transform:matrix(0.294292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294292,0.000000,0.000000,0.250000,0,0);}
.m49_c00087{transform:matrix(0.295292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295292,0.000000,0.000000,0.250000,0,0);}
.m9a_c00087{transform:matrix(0.295739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295739,0.000000,0.000000,0.250000,0,0);}
.m90_c00087{transform:matrix(0.296528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296528,0.000000,0.000000,0.250000,0,0);}
.m8f_c00087{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m15_c00087{transform:matrix(0.298005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298005,0.000000,0.000000,0.250000,0,0);}
.m53_c00087{transform:matrix(0.298017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298017,0.000000,0.000000,0.250000,0,0);}
.m7a_c00087{transform:matrix(0.298060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298060,0.000000,0.000000,0.250000,0,0);}
.m6d_c00087{transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);}
.m6_c00087{transform:matrix(0.298951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298951,0.000000,0.000000,0.250000,0,0);}
.mae_c00087{transform:matrix(0.299451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299451,0.000000,0.000000,0.250000,0,0);}
.m46_c00087{transform:matrix(0.299508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299508,0.000000,0.000000,0.250000,0,0);}
.m19_c00087{transform:matrix(0.299520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299520,0.000000,0.000000,0.250000,0,0);}
.m4e_c00087{transform:matrix(0.299616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299616,0.000000,0.000000,0.250000,0,0);}
.mb8_c00087{transform:matrix(0.299694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299694,0.000000,0.000000,0.250000,0,0);}
.m3_c00087{transform:matrix(0.300223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300223,0.000000,0.000000,0.250000,0,0);}
.md7_c00087{transform:matrix(0.300569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300569,0.000000,0.000000,0.250000,0,0);}
.mca_c00087{transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);}
.mc1_c00087{transform:matrix(0.300705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300705,0.000000,0.000000,0.250000,0,0);}
.mc7_c00087{transform:matrix(0.301189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301189,0.000000,0.000000,0.250000,0,0);}
.mde_c00087{transform:matrix(0.301670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301670,0.000000,0.000000,0.250000,0,0);}
.m2e_c00087{transform:matrix(0.301688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301688,0.000000,0.000000,0.250000,0,0);}
.m22_c00087{transform:matrix(0.301933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301933,0.000000,0.000000,0.250000,0,0);}
.m7c_c00087{transform:matrix(0.302300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302300,0.000000,0.000000,0.250000,0,0);}
.m55_c00087{transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);}
.m69_c00087{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m39_c00087{transform:matrix(0.302835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302835,0.000000,0.000000,0.250000,0,0);}
.ma5_c00087{transform:matrix(0.302835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302835,0.000000,0.000000,0.250000,0,0);}
.m82_c00087{transform:matrix(0.303298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303298,0.000000,0.000000,0.250000,0,0);}
.m2f_c00087{transform:matrix(0.304878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304878,0.000000,0.000000,0.250000,0,0);}
.mdb_c00087{transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);}
.m87_c00087{transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);}
.m41_c00087{transform:matrix(0.306117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306117,0.000000,0.000000,0.250000,0,0);}
.m76_c00087{transform:matrix(0.306176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306176,0.000000,0.000000,0.250000,0,0);}
.m9b_c00087{transform:matrix(0.307134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307134,0.000000,0.000000,0.250000,0,0);}
.m9c_c00087{transform:matrix(0.307148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307148,0.000000,0.000000,0.250000,0,0);}
.m68_c00087{transform:matrix(0.307242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307242,0.000000,0.000000,0.250000,0,0);}
.m11_c00087{transform:matrix(0.307491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307491,0.000000,0.000000,0.250000,0,0);}
.mf_c00087{transform:matrix(0.307641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307641,0.000000,0.000000,0.250000,0,0);}
.m91_c00087{transform:matrix(0.308225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308225,0.000000,0.000000,0.250000,0,0);}
.m73_c00087{transform:matrix(0.308561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308561,0.000000,0.000000,0.250000,0,0);}
.m30_c00087{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.md0_c00087{transform:matrix(0.308603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308603,0.000000,0.000000,0.250000,0,0);}
.m34_c00087{transform:matrix(0.310720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310720,0.000000,0.000000,0.250000,0,0);}
.m5e_c00087{transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);}
.m8c_c00087{transform:matrix(0.311182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311182,0.000000,0.000000,0.250000,0,0);}
.m6b_c00087{transform:matrix(0.311255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311255,0.000000,0.000000,0.250000,0,0);}
.m4f_c00087{transform:matrix(0.311891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311891,0.000000,0.000000,0.250000,0,0);}
.m5b_c00087{transform:matrix(0.312509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312509,0.000000,0.000000,0.250000,0,0);}
.m44_c00087{transform:matrix(0.312879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312879,0.000000,0.000000,0.250000,0,0);}
.m96_c00087{transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);}
.m2b_c00087{transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);}
.m35_c00087{transform:matrix(0.314177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314177,0.000000,0.000000,0.250000,0,0);}
.m5d_c00087{transform:matrix(0.314503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314503,0.000000,0.000000,0.250000,0,0);}
.mb_c00087{transform:matrix(0.314610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314610,0.000000,0.000000,0.250000,0,0);}
.m78_c00087{transform:matrix(0.314792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314792,0.000000,0.000000,0.250000,0,0);}
.ma2_c00087{transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);}
.mba_c00087{transform:matrix(0.315694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315694,0.000000,0.000000,0.250000,0,0);}
.m9d_c00087{transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);}
.m8a_c00087{transform:matrix(0.316703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316703,0.000000,0.000000,0.250000,0,0);}
.m74_c00087{transform:matrix(0.316884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316884,0.000000,0.000000,0.250000,0,0);}
.m27_c00087{transform:matrix(0.317031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317031,0.000000,0.000000,0.250000,0,0);}
.mb4_c00087{transform:matrix(0.318247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318247,0.000000,0.000000,0.250000,0,0);}
.m3d_c00087{transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);}
.ma7_c00087{transform:matrix(0.319176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319176,0.000000,0.000000,0.250000,0,0);}
.mac_c00087{transform:matrix(0.319694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319694,0.000000,0.000000,0.250000,0,0);}
.m63_c00087{transform:matrix(0.320003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320003,0.000000,0.000000,0.250000,0,0);}
.m14_c00087{transform:matrix(0.320385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320385,0.000000,0.000000,0.250000,0,0);}
.mc5_c00087{transform:matrix(0.320590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320590,0.000000,0.000000,0.250000,0,0);}
.m7b_c00087{transform:matrix(0.322527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322527,0.000000,0.000000,0.250000,0,0);}
.mb7_c00087{transform:matrix(0.323069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323069,0.000000,0.000000,0.250000,0,0);}
.m4a_c00087{transform:matrix(0.324532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324532,0.000000,0.000000,0.250000,0,0);}
.mc4_c00087{transform:matrix(0.324647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324647,0.000000,0.000000,0.250000,0,0);}
.mc2_c00087{transform:matrix(0.324931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324931,0.000000,0.000000,0.250000,0,0);}
.m64_c00087{transform:matrix(0.324999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324999,0.000000,0.000000,0.250000,0,0);}
.m57_c00087{transform:matrix(0.325136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325136,0.000000,0.000000,0.250000,0,0);}
.mcc_c00087{transform:matrix(0.325602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325602,0.000000,0.000000,0.250000,0,0);}
.m71_c00087{transform:matrix(0.325984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325984,0.000000,0.000000,0.250000,0,0);}
.me_c00087{transform:matrix(0.326063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326063,0.000000,0.000000,0.250000,0,0);}
.m48_c00087{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m45_c00087{transform:matrix(0.327294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327294,0.000000,0.000000,0.250000,0,0);}
.m8b_c00087{transform:matrix(0.327297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327297,0.000000,0.000000,0.250000,0,0);}
.md1_c00087{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.m6f_c00087{transform:matrix(0.327687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327687,0.000000,0.000000,0.250000,0,0);}
.mcb_c00087{transform:matrix(0.327734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327734,0.000000,0.000000,0.250000,0,0);}
.me0_c00087{transform:matrix(0.328256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328256,0.000000,0.000000,0.250000,0,0);}
.m85_c00087{transform:matrix(0.328655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328655,0.000000,0.000000,0.250000,0,0);}
.m92_c00087{transform:matrix(0.328802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328802,0.000000,0.000000,0.250000,0,0);}
.m58_c00087{transform:matrix(0.331631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331631,0.000000,0.000000,0.250000,0,0);}
.m2d_c00087{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m1d_c00087{transform:matrix(0.333885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333885,0.000000,0.000000,0.250000,0,0);}
.mcf_c00087{transform:matrix(0.335135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335135,0.000000,0.000000,0.250000,0,0);}
.mbf_c00087{transform:matrix(0.336424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336424,0.000000,0.000000,0.250000,0,0);}
.m6a_c00087{transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);}
.m8_c00087{transform:matrix(0.338939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338939,0.000000,0.000000,0.250000,0,0);}
.m10_c00087{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m43_c00087{transform:matrix(0.339741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339741,0.000000,0.000000,0.250000,0,0);}
.m9e_c00087{transform:matrix(0.342184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342184,0.000000,0.000000,0.250000,0,0);}
.ma8_c00087{transform:matrix(0.342572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342572,0.000000,0.000000,0.250000,0,0);}
.m99_c00087{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.mda_c00087{transform:matrix(0.344474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344474,0.000000,0.000000,0.250000,0,0);}
.m89_c00087{transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);}
.m29_c00087{transform:matrix(0.346848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346848,0.000000,0.000000,0.250000,0,0);}
.m98_c00087{transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);}
.mdd_c00087{transform:matrix(0.348765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348765,0.000000,0.000000,0.250000,0,0);}
.mb9_c00087{transform:matrix(0.348995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348995,0.000000,0.000000,0.250000,0,0);}
.m5_c00087{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.mc8_c00087{transform:matrix(0.350956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350956,0.000000,0.000000,0.250000,0,0);}
.m7_c00087{transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);}
.maa_c00087{transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);}
.mc_c00087{transform:matrix(0.358675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358675,0.000000,0.000000,0.250000,0,0);}
.m7e_c00087{transform:matrix(0.360964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360964,0.000000,0.000000,0.250000,0,0);}
.mc0_c00087{transform:matrix(0.366407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366407,0.000000,0.000000,0.250000,0,0);}
.mbc_c00087{transform:matrix(0.368506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368506,0.000000,0.000000,0.250000,0,0);}
.m2c_c00087{transform:matrix(0.378304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378304,0.000000,0.000000,0.250000,0,0);}
.md8_c00087{transform:matrix(0.407787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407787,0.000000,0.000000,0.250000,0,0);}
.ma4_c00087{transform:matrix(0.615855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615855,0.000000,0.000000,0.250000,0,0);}
.v0_c00087{vertical-align:0.000000px;}
.ls6_c00087{letter-spacing:-2.744280px;}
.lsa_c00087{letter-spacing:-2.730427px;}
.lsc_c00087{letter-spacing:-2.375762px;}
.ls14_c00087{letter-spacing:-1.685772px;}
.ls1_c00087{letter-spacing:0.000000px;}
.lsb_c00087{letter-spacing:0.392040px;}
.ls8_c00087{letter-spacing:0.533174px;}
.lsf_c00087{letter-spacing:1.039500px;}
.ls17_c00087{letter-spacing:1.246687px;}
.ls7_c00087{letter-spacing:1.385330px;}
.ls16_c00087{letter-spacing:2.059200px;}
.lsd_c00087{letter-spacing:2.509056px;}
.ls13_c00087{letter-spacing:3.112798px;}
.lse_c00087{letter-spacing:3.246091px;}
.ls11_c00087{letter-spacing:3.277454px;}
.ls15_c00087{letter-spacing:3.348022px;}
.ls9_c00087{letter-spacing:3.366000px;}
.ls12_c00087{letter-spacing:3.465000px;}
.ls3_c00087{letter-spacing:3.920400px;}
.ls2_c00087{letter-spacing:4.375810px;}
.ls10_c00087{letter-spacing:5.227200px;}
.ls0_c00087{letter-spacing:20.857320px;}
.ls5_c00087{letter-spacing:52.747398px;}
.ls4_c00087{letter-spacing:67.003200px;}
.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:-19.602000px;}
.ws1_c00087{word-spacing:-17.916228px;}
.ws2_c00087{word-spacing:0.000000px;}
._2_c00087{margin-left:-13.015728px;}
._1_c00087{width:3.528360px;}
._7_c00087{width:5.527764px;}
._4_c00087{width:7.683984px;}
._0_c00087{width:9.331344px;}
._6_c00087{width:12.388464px;}
._5_c00087{width:20.856528px;}
._9_c00087{width:24.071256px;}
._8_c00087{width:31.672872px;}
._3_c00087{width:35.105252px;}
.fc0_c00087{color:transparent;}
.fse_c00087{font-size:17.028000px;}
.fs12_c00087{font-size:20.790000px;}
.fsf_c00087{font-size:22.176000px;}
.fs1_c00087{font-size:27.720000px;}
.fs0_c00087{font-size:28.314000px;}
.fs15_c00087{font-size:41.184000px;}
.fs10_c00087{font-size:49.896198px;}
.fs7_c00087{font-size:52.747398px;}
.fs11_c00087{font-size:53.856198px;}
.fs17_c00087{font-size:62.568000px;}
.fs4_c00087{font-size:64.548000px;}
.fs5_c00087{font-size:67.003200px;}
.fsb_c00087{font-size:67.320000px;}
.fs14_c00087{font-size:69.300000px;}
.fs6_c00087{font-size:70.092198px;}
.fsd_c00087{font-size:71.280000px;}
.fs9_c00087{font-size:74.844000px;}
.fsc_c00087{font-size:78.012198px;}
.fs3_c00087{font-size:78.408000px;}
.fsa_c00087{font-size:78.804000px;}
.fs16_c00087{font-size:79.398000px;}
.fs8_c00087{font-size:81.972198px;}
.fs2_c00087{font-size:87.516198px;}
.fs13_c00087{font-size:104.544000px;}
.y0_c00087{bottom:0.000000px;}
.y27_c00087{bottom:32.700735px;}
.y26_c00087{bottom:61.564185px;}
.y1_c00087{bottom:76.500000px;}
.y25_c00087{bottom:86.517135px;}
.y24_c00087{bottom:117.523935px;}
.y22_c00087{bottom:149.599935px;}
.y23_c00087{bottom:155.297385px;}
.y21_c00087{bottom:181.314585px;}
.y20_c00087{bottom:215.177535px;}
.y1f_c00087{bottom:247.609935px;}
.y1e_c00087{bottom:280.398735px;}
.y1d_c00087{bottom:314.251785px;}
.y1c_c00087{bottom:345.971385px;}
.y1b_c00087{bottom:372.349935px;}
.y1a_c00087{bottom:379.834335px;}
.y19_c00087{bottom:411.910335px;}
.y16_c00087{bottom:444.699135px;}
.y18_c00087{bottom:445.050585px;}
.y17_c00087{bottom:454.321935px;}
.y15_c00087{bottom:477.131535px;}
.y14_c00087{bottom:509.558985px;}
.y13_c00087{bottom:541.991385px;}
.y12_c00087{bottom:555.890985px;}
.y11_c00087{bottom:574.428735px;}
.y10_c00087{bottom:602.940735px;}
.yf_c00087{bottom:606.861135px;}
.ye_c00087{bottom:638.932185px;}
.yd_c00087{bottom:671.720985px;}
.y2_c00087{bottom:680.274585px;}
.yc_c00087{bottom:704.153385px;}
.yb_c00087{bottom:737.659935px;}
.ya_c00087{bottom:770.448735px;}
.y9_c00087{bottom:802.163385px;}
.y8_c00087{bottom:834.600735px;}
.y7_c00087{bottom:866.676735px;}
.y6_c00087{bottom:899.821935px;}
.y5_c00087{bottom:932.254335px;}
.y4_c00087{bottom:1079.798985px;}
.y3_c00087{bottom:1101.182985px;}
.h11_c00087{height:17.759672px;}
.h15_c00087{height:21.683320px;}
.h12_c00087{height:23.128875px;}
.h3_c00087{height:28.911094px;}
.h2_c00087{height:29.530617px;}
.h9_c00087{height:35.129767px;}
.h18_c00087{height:40.419844px;}
.h7_c00087{height:44.624131px;}
.h13_c00087{height:52.040175px;}
.h14_c00087{height:56.170332px;}
.h1a_c00087{height:65.256469px;}
.h6_c00087{height:67.321547px;}
.h17_c00087{height:68.014160px;}
.h8_c00087{height:68.791659px;}
.hf_c00087{height:69.957422px;}
.hd_c00087{height:70.212656px;}
.hb_c00087{height:73.455293px;}
.he_c00087{height:76.564706px;}
.h5_c00087{height:76.953164px;}
.hc_c00087{height:77.341816px;}
.h19_c00087{height:77.924795px;}
.h10_c00087{height:79.020563px;}
.ha_c00087{height:80.451229px;}
.h4_c00087{height:85.892362px;}
.h16_c00087{height:109.036125px;}
.h1_c00087{height:1110.000000px;}
.h0_c00087{height:1263.000000px;}
.w1_c00087{width:733.500000px;}
.w0_c00087{width:892.500000px;}
.x0_c00087{left:0.000000px;}
.x2_c00087{left:45.460335px;}
.x3f_c00087{left:66.948285px;}
.x5_c00087{left:68.032335px;}
.x44_c00087{left:69.606435px;}
.x69_c00087{left:71.546835px;}
.x1_c00087{left:79.500000px;}
.x19_c00087{left:90.188535px;}
.x6c_c00087{left:91.520085px;}
.x13_c00087{left:101.330985px;}
.x26_c00087{left:111.879435px;}
.x6d_c00087{left:113.478285px;}
.x22_c00087{left:121.185435px;}
.x1a_c00087{left:123.333735px;}
.x45_c00087{left:125.556285px;}
.x1b_c00087{left:133.669335px;}
.x27_c00087{left:144.806835px;}
.x55_c00087{left:145.994835px;}
.x6_c00087{left:155.310735px;}
.x4e_c00087{left:156.543285px;}
.x14_c00087{left:166.908585px;}
.x7_c00087{left:167.977785px;}
.x40_c00087{left:177.100635px;}
.x28_c00087{left:178.887585px;}
.x1c_c00087{left:188.921235px;}
.x46_c00087{left:200.459685px;}
.x6e_c00087{left:202.152585px;}
.x4d_c00087{left:209.839935px;}
.x41_c00087{left:211.374435px;}
.x67_c00087{left:212.849535px;}
.x30_c00087{left:221.229885px;}
.x29_c00087{left:223.190085px;}
.x60_c00087{left:224.452335px;}
.x47_c00087{left:233.609835px;}
.x3_c00087{left:239.762685px;}
.x37_c00087{left:244.084035px;}
.x8_c00087{left:245.336385px;}
.x2a_c00087{left:256.023435px;}
.x23_c00087{left:266.195685px;}
.x56_c00087{left:267.809385px;}
.x73_c00087{left:275.759085px;}
.x9_c00087{left:278.476635px;}
.x3b_c00087{left:288.297435px;}
.x42_c00087{left:289.381485px;}
.x31_c00087{left:299.900235px;}
.xa_c00087{left:310.602135px;}
.x64_c00087{left:312.374235px;}
.xb_c00087{left:321.125835px;}
.x4f_c00087{left:322.714785px;}
.x38_c00087{left:331.768335px;}
.x32_c00087{left:332.832585px;}
.x6a_c00087{left:334.946235px;}
.x61_c00087{left:343.658235px;}
.x15_c00087{left:345.073935px;}
.x50_c00087{left:347.212335px;}
.x48_c00087{left:355.498635px;}
.x54_c00087{left:357.043035px;}
.xc_c00087{left:366.457935px;}
.x62_c00087{left:369.061635px;}
.x16_c00087{left:378.110235px;}
.x65_c00087{left:381.050535px;}
.x1d_c00087{left:389.336835px;}
.xd_c00087{left:399.464535px;}
.x49_c00087{left:401.078235px;}
.x5e_c00087{left:402.830535px;}
.x1e_c00087{left:410.968335px;}
.x3c_c00087{left:412.443435px;}
.x33_c00087{left:420.838635px;}
.x1f_c00087{left:422.120685px;}
.x6f_c00087{left:423.511635px;}
.x24_c00087{left:433.174035px;}
.x34_c00087{left:444.044235px;}
.x4a_c00087{left:454.711485px;}
.x5b_c00087{left:455.944035px;}
.x2b_c00087{left:465.977685px;}
.x17_c00087{left:477.595335px;}
.x6b_c00087{left:478.986285px;}
.x20_c00087{left:488.074485px;}
.x18_c00087{left:489.351585px;}
.x2c_c00087{left:498.221985px;}
.xe_c00087{left:499.484235px;}
.x58_c00087{left:500.701935px;}
.x3d_c00087{left:510.527685px;}
.x70_c00087{left:512.240385px;}
.x35_c00087{left:521.016735px;}
.x51_c00087{left:522.635385px;}
.xf_c00087{left:531.401835px;}
.x43_c00087{left:532.416585px;}
.x2d_c00087{left:542.757135px;}
.x52_c00087{left:544.702485px;}
.x21_c00087{left:555.082635px;}
.x71_c00087{left:556.483485px;}
.x4b_c00087{left:566.012235px;}
.x66_c00087{left:568.571385px;}
.x39_c00087{left:575.620185px;}
.x10_c00087{left:576.664635px;}
.x36_c00087{left:587.119035px;}
.x5c_c00087{left:588.925785px;}
.x2e_c00087{left:598.380285px;}
.x53_c00087{left:600.157335px;}
.x5d_c00087{left:610.547385px;}
.x25_c00087{left:619.432635px;}
.x2f_c00087{left:620.462235px;}
.x68_c00087{left:621.605685px;}
.x3a_c00087{left:631.134435px;}
.x11_c00087{left:632.193735px;}
.x63_c00087{left:633.564885px;}
.x59_c00087{left:635.158785px;}
.x4_c00087{left:643.761885px;}
.x5f_c00087{left:653.354985px;}
.x12_c00087{left:654.830085px;}
.x57_c00087{left:665.002335px;}
.x3e_c00087{left:666.076485px;}
.x4c_c00087{left:676.931835px;}
.x72_c00087{left:680.352285px;}
.x5a_c00087{left:683.035185px;}
@media print{
.v0_c00087{vertical-align:0.000000pt;}
.ls6_c00087{letter-spacing:-2.439360pt;}
.lsa_c00087{letter-spacing:-2.427046pt;}
.lsc_c00087{letter-spacing:-2.111789pt;}
.ls14_c00087{letter-spacing:-1.498464pt;}
.ls1_c00087{letter-spacing:0.000000pt;}
.lsb_c00087{letter-spacing:0.348480pt;}
.ls8_c00087{letter-spacing:0.473933pt;}
.lsf_c00087{letter-spacing:0.924000pt;}
.ls17_c00087{letter-spacing:1.108166pt;}
.ls7_c00087{letter-spacing:1.231405pt;}
.ls16_c00087{letter-spacing:1.830400pt;}
.lsd_c00087{letter-spacing:2.230272pt;}
.ls13_c00087{letter-spacing:2.766931pt;}
.lse_c00087{letter-spacing:2.885414pt;}
.ls11_c00087{letter-spacing:2.913293pt;}
.ls15_c00087{letter-spacing:2.976019pt;}
.ls9_c00087{letter-spacing:2.992000pt;}
.ls12_c00087{letter-spacing:3.080000pt;}
.ls3_c00087{letter-spacing:3.484800pt;}
.ls2_c00087{letter-spacing:3.889609pt;}
.ls10_c00087{letter-spacing:4.646400pt;}
.ls0_c00087{letter-spacing:18.539840pt;}
.ls5_c00087{letter-spacing:46.886576pt;}
.ls4_c00087{letter-spacing:59.558400pt;}
.ws0_c00087{word-spacing:-17.424000pt;}
.ws1_c00087{word-spacing:-15.925536pt;}
.ws2_c00087{word-spacing:0.000000pt;}
._2_c00087{margin-left:-11.569536pt;}
._1_c00087{width:3.136320pt;}
._7_c00087{width:4.913568pt;}
._4_c00087{width:6.830208pt;}
._0_c00087{width:8.294528pt;}
._6_c00087{width:11.011968pt;}
._5_c00087{width:18.539136pt;}
._9_c00087{width:21.396672pt;}
._8_c00087{width:28.153664pt;}
._3_c00087{width:31.204668pt;}
.fse_c00087{font-size:15.136000pt;}
.fs12_c00087{font-size:18.480000pt;}
.fsf_c00087{font-size:19.712000pt;}
.fs1_c00087{font-size:24.640000pt;}
.fs0_c00087{font-size:25.168000pt;}
.fs15_c00087{font-size:36.608000pt;}
.fs10_c00087{font-size:44.352176pt;}
.fs7_c00087{font-size:46.886576pt;}
.fs11_c00087{font-size:47.872176pt;}
.fs17_c00087{font-size:55.616000pt;}
.fs4_c00087{font-size:57.376000pt;}
.fs5_c00087{font-size:59.558400pt;}
.fsb_c00087{font-size:59.840000pt;}
.fs14_c00087{font-size:61.600000pt;}
.fs6_c00087{font-size:62.304176pt;}
.fsd_c00087{font-size:63.360000pt;}
.fs9_c00087{font-size:66.528000pt;}
.fsc_c00087{font-size:69.344176pt;}
.fs3_c00087{font-size:69.696000pt;}
.fsa_c00087{font-size:70.048000pt;}
.fs16_c00087{font-size:70.576000pt;}
.fs8_c00087{font-size:72.864176pt;}
.fs2_c00087{font-size:77.792176pt;}
.fs13_c00087{font-size:92.928000pt;}
.y0_c00087{bottom:0.000000pt;}
.y27_c00087{bottom:29.067320pt;}
.y26_c00087{bottom:54.723720pt;}
.y1_c00087{bottom:68.000000pt;}
.y25_c00087{bottom:76.904120pt;}
.y24_c00087{bottom:104.465720pt;}
.y22_c00087{bottom:132.977720pt;}
.y23_c00087{bottom:138.042120pt;}
.y21_c00087{bottom:161.168520pt;}
.y20_c00087{bottom:191.268920pt;}
.y1f_c00087{bottom:220.097720pt;}
.y1e_c00087{bottom:249.243320pt;}
.y1d_c00087{bottom:279.334920pt;}
.y1c_c00087{bottom:307.530120pt;}
.y1b_c00087{bottom:330.977720pt;}
.y1a_c00087{bottom:337.630520pt;}
.y19_c00087{bottom:366.142520pt;}
.y16_c00087{bottom:395.288120pt;}
.y18_c00087{bottom:395.600520pt;}
.y17_c00087{bottom:403.841720pt;}
.y15_c00087{bottom:424.116920pt;}
.y14_c00087{bottom:452.941320pt;}
.y13_c00087{bottom:481.770120pt;}
.y12_c00087{bottom:494.125320pt;}
.y11_c00087{bottom:510.603320pt;}
.y10_c00087{bottom:535.947320pt;}
.yf_c00087{bottom:539.432120pt;}
.ye_c00087{bottom:567.939720pt;}
.yd_c00087{bottom:597.085320pt;}
.y2_c00087{bottom:604.688520pt;}
.yc_c00087{bottom:625.914120pt;}
.yb_c00087{bottom:655.697720pt;}
.ya_c00087{bottom:684.843320pt;}
.y9_c00087{bottom:713.034120pt;}
.y8_c00087{bottom:741.867320pt;}
.y7_c00087{bottom:770.379320pt;}
.y6_c00087{bottom:799.841720pt;}
.y5_c00087{bottom:828.670520pt;}
.y4_c00087{bottom:959.821320pt;}
.y3_c00087{bottom:978.829320pt;}
.h11_c00087{height:15.786375pt;}
.h15_c00087{height:19.274063pt;}
.h12_c00087{height:20.559000pt;}
.h3_c00087{height:25.698750pt;}
.h2_c00087{height:26.249438pt;}
.h9_c00087{height:31.226460pt;}
.h18_c00087{height:35.928750pt;}
.h7_c00087{height:39.665894pt;}
.h13_c00087{height:46.257934pt;}
.h14_c00087{height:49.929184pt;}
.h1a_c00087{height:58.005750pt;}
.h6_c00087{height:59.841375pt;}
.h17_c00087{height:60.457031pt;}
.h8_c00087{height:61.148141pt;}
.hf_c00087{height:62.184375pt;}
.hd_c00087{height:62.411250pt;}
.hb_c00087{height:65.293594pt;}
.he_c00087{height:68.057516pt;}
.h5_c00087{height:68.402813pt;}
.hc_c00087{height:68.748281pt;}
.h19_c00087{height:69.266484pt;}
.h10_c00087{height:70.240500pt;}
.ha_c00087{height:71.512204pt;}
.h4_c00087{height:76.348766pt;}
.h16_c00087{height:96.921000pt;}
.h1_c00087{height:986.666667pt;}
.h0_c00087{height:1122.666667pt;}
.w1_c00087{width:652.000000pt;}
.w0_c00087{width:793.333333pt;}
.x0_c00087{left:0.000000pt;}
.x2_c00087{left:40.409187pt;}
.x3f_c00087{left:59.509587pt;}
.x5_c00087{left:60.473187pt;}
.x44_c00087{left:61.872387pt;}
.x69_c00087{left:63.597187pt;}
.x1_c00087{left:70.666667pt;}
.x19_c00087{left:80.167587pt;}
.x6c_c00087{left:81.351187pt;}
.x13_c00087{left:90.071987pt;}
.x26_c00087{left:99.448387pt;}
.x6d_c00087{left:100.869587pt;}
.x22_c00087{left:107.720387pt;}
.x1a_c00087{left:109.629987pt;}
.x45_c00087{left:111.605587pt;}
.x1b_c00087{left:118.817187pt;}
.x27_c00087{left:128.717187pt;}
.x55_c00087{left:129.773187pt;}
.x6_c00087{left:138.053987pt;}
.x4e_c00087{left:139.149587pt;}
.x14_c00087{left:148.363187pt;}
.x7_c00087{left:149.313587pt;}
.x40_c00087{left:157.422787pt;}
.x28_c00087{left:159.011187pt;}
.x1c_c00087{left:167.929987pt;}
.x46_c00087{left:178.186387pt;}
.x6e_c00087{left:179.691187pt;}
.x4d_c00087{left:186.524387pt;}
.x41_c00087{left:187.888387pt;}
.x67_c00087{left:189.199587pt;}
.x30_c00087{left:196.648787pt;}
.x29_c00087{left:198.391187pt;}
.x60_c00087{left:199.513187pt;}
.x47_c00087{left:207.653187pt;}
.x3_c00087{left:213.122387pt;}
.x37_c00087{left:216.963587pt;}
.x8_c00087{left:218.076787pt;}
.x2a_c00087{left:227.576387pt;}
.x23_c00087{left:236.618387pt;}
.x56_c00087{left:238.052787pt;}
.x73_c00087{left:245.119187pt;}
.x9_c00087{left:247.534787pt;}
.x3b_c00087{left:256.264387pt;}
.x42_c00087{left:257.227987pt;}
.x31_c00087{left:266.577987pt;}
.xa_c00087{left:276.090787pt;}
.x64_c00087{left:277.665987pt;}
.xb_c00087{left:285.445187pt;}
.x4f_c00087{left:286.857587pt;}
.x38_c00087{left:294.905187pt;}
.x32_c00087{left:295.851187pt;}
.x6a_c00087{left:297.729987pt;}
.x61_c00087{left:305.473987pt;}
.x15_c00087{left:306.732387pt;}
.x50_c00087{left:308.633187pt;}
.x48_c00087{left:315.998787pt;}
.x54_c00087{left:317.371587pt;}
.xc_c00087{left:325.740387pt;}
.x62_c00087{left:328.054787pt;}
.x16_c00087{left:336.097987pt;}
.x65_c00087{left:338.711587pt;}
.x1d_c00087{left:346.077187pt;}
.xd_c00087{left:355.079587pt;}
.x49_c00087{left:356.513987pt;}
.x5e_c00087{left:358.071587pt;}
.x1e_c00087{left:365.305187pt;}
.x3c_c00087{left:366.616387pt;}
.x33_c00087{left:374.078787pt;}
.x1f_c00087{left:375.218387pt;}
.x6f_c00087{left:376.454787pt;}
.x24_c00087{left:385.043587pt;}
.x34_c00087{left:394.705987pt;}
.x4a_c00087{left:404.187987pt;}
.x5b_c00087{left:405.283587pt;}
.x2b_c00087{left:414.202387pt;}
.x17_c00087{left:424.529187pt;}
.x6b_c00087{left:425.765587pt;}
.x20_c00087{left:433.843987pt;}
.x18_c00087{left:434.979187pt;}
.x2c_c00087{left:442.863987pt;}
.xe_c00087{left:443.985987pt;}
.x58_c00087{left:445.068387pt;}
.x3d_c00087{left:453.802387pt;}
.x70_c00087{left:455.324787pt;}
.x35_c00087{left:463.125987pt;}
.x51_c00087{left:464.564787pt;}
.xf_c00087{left:472.357187pt;}
.x43_c00087{left:473.259187pt;}
.x2d_c00087{left:482.450787pt;}
.x52_c00087{left:484.179987pt;}
.x21_c00087{left:493.406787pt;}
.x71_c00087{left:494.651987pt;}
.x4b_c00087{left:503.121987pt;}
.x66_c00087{left:505.396787pt;}
.x39_c00087{left:511.662387pt;}
.x10_c00087{left:512.590787pt;}
.x36_c00087{left:521.883587pt;}
.x5c_c00087{left:523.489587pt;}
.x2e_c00087{left:531.893587pt;}
.x53_c00087{left:533.473187pt;}
.x5d_c00087{left:542.708787pt;}
.x25_c00087{left:550.606787pt;}
.x2f_c00087{left:551.521987pt;}
.x68_c00087{left:552.538387pt;}
.x3a_c00087{left:561.008387pt;}
.x11_c00087{left:561.949987pt;}
.x63_c00087{left:563.168787pt;}
.x59_c00087{left:564.585587pt;}
.x4_c00087{left:572.232787pt;}
.x5f_c00087{left:580.759987pt;}
.x12_c00087{left:582.071187pt;}
.x57_c00087{left:591.113187pt;}
.x3e_c00087{left:592.067987pt;}
.x4c_c00087{left:601.717187pt;}
.x72_c00087{left:604.757587pt;}
.x5a_c00087{left:607.142387pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7aa5a14cafd159dfc70da1a4.woff2')format("woff");}.ff1_c00088{font-family:ff1_c00088;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00088;src:url('chunks/assets/font_865aac58039e86ff19aec564.woff2')format("woff");}.ff2_c00088{font-family:ff2_c00088;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00088;src:url('chunks/assets/font_594eb2834d931d6af7f66bec.woff2')format("woff");}.ff3_c00088{font-family:ff3_c00088;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00088;src:url('chunks/assets/font_d97c085ca48bdf674321adb5.woff2')format("woff");}.ff4_c00088{font-family:ff4_c00088;line-height:0.666000;font-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_c00088{transform:matrix(0.195513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195513,0.000000,0.000000,0.250000,0,0);}
.m91_c00088{transform:matrix(0.200772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200772,0.000000,0.000000,0.250000,0,0);}
.m40_c00088{transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);}
.m7c_c00088{transform:matrix(0.242568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242568,0.000000,0.000000,0.250000,0,0);}
.m0_c00088{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00088{transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);}
.mb0_c00088{transform:matrix(0.256672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256672,0.000000,0.000000,0.250000,0,0);}
.m64_c00088{transform:matrix(0.256919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256919,0.000000,0.000000,0.250000,0,0);}
.m1_c00088{transform:matrix(0.259116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259116,0.000000,0.000000,0.250000,0,0);}
.m83_c00088{transform:matrix(0.259196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259196,0.000000,0.000000,0.250000,0,0);}
.m98_c00088{transform:matrix(0.259723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259723,0.000000,0.000000,0.250000,0,0);}
.m6b_c00088{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m1b_c00088{transform:matrix(0.261735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261735,0.000000,0.000000,0.250000,0,0);}
.m9f_c00088{transform:matrix(0.261738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261738,0.000000,0.000000,0.250000,0,0);}
.m2b_c00088{transform:matrix(0.261916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261916,0.000000,0.000000,0.250000,0,0);}
.m74_c00088{transform:matrix(0.262150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262150,0.000000,0.000000,0.250000,0,0);}
.m94_c00088{transform:matrix(0.263120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263120,0.000000,0.000000,0.250000,0,0);}
.mf_c00088{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m16_c00088{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m2d_c00088{transform:matrix(0.263992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263992,0.000000,0.000000,0.250000,0,0);}
.m30_c00088{transform:matrix(0.264100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264100,0.000000,0.000000,0.250000,0,0);}
.ma4_c00088{transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);}
.m58_c00088{transform:matrix(0.265953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265953,0.000000,0.000000,0.250000,0,0);}
.m8b_c00088{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m8_c00088{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.mb3_c00088{transform:matrix(0.266949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266949,0.000000,0.000000,0.250000,0,0);}
.m8c_c00088{transform:matrix(0.267199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267199,0.000000,0.000000,0.250000,0,0);}
.m32_c00088{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m70_c00088{transform:matrix(0.267925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267925,0.000000,0.000000,0.250000,0,0);}
.m12_c00088{transform:matrix(0.268689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268689,0.000000,0.000000,0.250000,0,0);}
.m4c_c00088{transform:matrix(0.269234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269234,0.000000,0.000000,0.250000,0,0);}
.m45_c00088{transform:matrix(0.269360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269360,0.000000,0.000000,0.250000,0,0);}
.ma1_c00088{transform:matrix(0.270334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270334,0.000000,0.000000,0.250000,0,0);}
.m3_c00088{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m81_c00088{transform:matrix(0.271185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271185,0.000000,0.000000,0.250000,0,0);}
.mb2_c00088{transform:matrix(0.271602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271602,0.000000,0.000000,0.250000,0,0);}
.m22_c00088{transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);}
.m80_c00088{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m86_c00088{transform:matrix(0.273113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273113,0.000000,0.000000,0.250000,0,0);}
.m1e_c00088{transform:matrix(0.273580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273580,0.000000,0.000000,0.250000,0,0);}
.m1f_c00088{transform:matrix(0.274157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274157,0.000000,0.000000,0.250000,0,0);}
.m5d_c00088{transform:matrix(0.274227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274227,0.000000,0.000000,0.250000,0,0);}
.m1a_c00088{transform:matrix(0.275080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275080,0.000000,0.000000,0.250000,0,0);}
.m3e_c00088{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.mb9_c00088{transform:matrix(0.275559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275559,0.000000,0.000000,0.250000,0,0);}
.m67_c00088{transform:matrix(0.276277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276277,0.000000,0.000000,0.250000,0,0);}
.m3c_c00088{transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);}
.m9a_c00088{transform:matrix(0.277164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277164,0.000000,0.000000,0.250000,0,0);}
.m9_c00088{transform:matrix(0.277214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277214,0.000000,0.000000,0.250000,0,0);}
.m9e_c00088{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m2_c00088{transform:matrix(0.277438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277438,0.000000,0.000000,0.250000,0,0);}
.m72_c00088{transform:matrix(0.277682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277682,0.000000,0.000000,0.250000,0,0);}
.m7e_c00088{transform:matrix(0.279246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279246,0.000000,0.000000,0.250000,0,0);}
.m13_c00088{transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);}
.ma8_c00088{transform:matrix(0.279901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279901,0.000000,0.000000,0.250000,0,0);}
.m4e_c00088{transform:matrix(0.280024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280024,0.000000,0.000000,0.250000,0,0);}
.m43_c00088{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.m61_c00088{transform:matrix(0.282106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282106,0.000000,0.000000,0.250000,0,0);}
.m25_c00088{transform:matrix(0.282820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282820,0.000000,0.000000,0.250000,0,0);}
.ma0_c00088{transform:matrix(0.283546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283546,0.000000,0.000000,0.250000,0,0);}
.m5b_c00088{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.mab_c00088{transform:matrix(0.283772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283772,0.000000,0.000000,0.250000,0,0);}
.mb8_c00088{transform:matrix(0.284903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284903,0.000000,0.000000,0.250000,0,0);}
.m6f_c00088{transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);}
.m44_c00088{transform:matrix(0.286095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286095,0.000000,0.000000,0.250000,0,0);}
.m18_c00088{transform:matrix(0.286509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286509,0.000000,0.000000,0.250000,0,0);}
.m21_c00088{transform:matrix(0.286698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286698,0.000000,0.000000,0.250000,0,0);}
.m2f_c00088{transform:matrix(0.286764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286764,0.000000,0.000000,0.250000,0,0);}
.m9c_c00088{transform:matrix(0.286855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286855,0.000000,0.000000,0.250000,0,0);}
.m56_c00088{transform:matrix(0.287751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287751,0.000000,0.000000,0.250000,0,0);}
.m5e_c00088{transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);}
.m90_c00088{transform:matrix(0.288737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288737,0.000000,0.000000,0.250000,0,0);}
.m78_c00088{transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);}
.m48_c00088{transform:matrix(0.289155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289155,0.000000,0.000000,0.250000,0,0);}
.mb7_c00088{transform:matrix(0.289268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289268,0.000000,0.000000,0.250000,0,0);}
.m79_c00088{transform:matrix(0.289313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289313,0.000000,0.000000,0.250000,0,0);}
.m60_c00088{transform:matrix(0.289360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289360,0.000000,0.000000,0.250000,0,0);}
.m17_c00088{transform:matrix(0.289843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289843,0.000000,0.000000,0.250000,0,0);}
.m3d_c00088{transform:matrix(0.289966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289966,0.000000,0.000000,0.250000,0,0);}
.m9d_c00088{transform:matrix(0.290312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290312,0.000000,0.000000,0.250000,0,0);}
.m49_c00088{transform:matrix(0.291061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291061,0.000000,0.000000,0.250000,0,0);}
.m4a_c00088{transform:matrix(0.291066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291066,0.000000,0.000000,0.250000,0,0);}
.m55_c00088{transform:matrix(0.291365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291365,0.000000,0.000000,0.250000,0,0);}
.m47_c00088{transform:matrix(0.291411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291411,0.000000,0.000000,0.250000,0,0);}
.m1c_c00088{transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);}
.m51_c00088{transform:matrix(0.292054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292054,0.000000,0.000000,0.250000,0,0);}
.m19_c00088{transform:matrix(0.292095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292095,0.000000,0.000000,0.250000,0,0);}
.m2e_c00088{transform:matrix(0.292129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292129,0.000000,0.000000,0.250000,0,0);}
.m20_c00088{transform:matrix(0.292144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292144,0.000000,0.000000,0.250000,0,0);}
.mae_c00088{transform:matrix(0.292206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292206,0.000000,0.000000,0.250000,0,0);}
.m88_c00088{transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);}
.m95_c00088{transform:matrix(0.293776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293776,0.000000,0.000000,0.250000,0,0);}
.m8a_c00088{transform:matrix(0.294128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294128,0.000000,0.000000,0.250000,0,0);}
.m52_c00088{transform:matrix(0.294968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294968,0.000000,0.000000,0.250000,0,0);}
.m7_c00088{transform:matrix(0.295355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295355,0.000000,0.000000,0.250000,0,0);}
.mc_c00088{transform:matrix(0.296009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296009,0.000000,0.000000,0.250000,0,0);}
.m14_c00088{transform:matrix(0.296156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296156,0.000000,0.000000,0.250000,0,0);}
.m10_c00088{transform:matrix(0.296265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296265,0.000000,0.000000,0.250000,0,0);}
.m76_c00088{transform:matrix(0.297493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297493,0.000000,0.000000,0.250000,0,0);}
.m62_c00088{transform:matrix(0.298607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298607,0.000000,0.000000,0.250000,0,0);}
.m2a_c00088{transform:matrix(0.299674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299674,0.000000,0.000000,0.250000,0,0);}
.m27_c00088{transform:matrix(0.299866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299866,0.000000,0.000000,0.250000,0,0);}
.m89_c00088{transform:matrix(0.301659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301659,0.000000,0.000000,0.250000,0,0);}
.m4_c00088{transform:matrix(0.301814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301814,0.000000,0.000000,0.250000,0,0);}
.m37_c00088{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m71_c00088{transform:matrix(0.302583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302583,0.000000,0.000000,0.250000,0,0);}
.m3b_c00088{transform:matrix(0.302734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302734,0.000000,0.000000,0.250000,0,0);}
.m57_c00088{transform:matrix(0.303278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303278,0.000000,0.000000,0.250000,0,0);}
.m8e_c00088{transform:matrix(0.303828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303828,0.000000,0.000000,0.250000,0,0);}
.ma_c00088{transform:matrix(0.304071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304071,0.000000,0.000000,0.250000,0,0);}
.m34_c00088{transform:matrix(0.304737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304737,0.000000,0.000000,0.250000,0,0);}
.m99_c00088{transform:matrix(0.305075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305075,0.000000,0.000000,0.250000,0,0);}
.ma2_c00088{transform:matrix(0.305354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305354,0.000000,0.000000,0.250000,0,0);}
.mac_c00088{transform:matrix(0.305713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305713,0.000000,0.000000,0.250000,0,0);}
.m68_c00088{transform:matrix(0.305914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305914,0.000000,0.000000,0.250000,0,0);}
.ma3_c00088{transform:matrix(0.306430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306430,0.000000,0.000000,0.250000,0,0);}
.m97_c00088{transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);}
.mad_c00088{transform:matrix(0.308174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308174,0.000000,0.000000,0.250000,0,0);}
.m4d_c00088{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m73_c00088{transform:matrix(0.308656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308656,0.000000,0.000000,0.250000,0,0);}
.m54_c00088{transform:matrix(0.308746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308746,0.000000,0.000000,0.250000,0,0);}
.ma9_c00088{transform:matrix(0.308864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308864,0.000000,0.000000,0.250000,0,0);}
.m15_c00088{transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);}
.ma5_c00088{transform:matrix(0.308921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308921,0.000000,0.000000,0.250000,0,0);}
.m42_c00088{transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);}
.ma6_c00088{transform:matrix(0.309702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309702,0.000000,0.000000,0.250000,0,0);}
.m46_c00088{transform:matrix(0.309842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309842,0.000000,0.000000,0.250000,0,0);}
.m9b_c00088{transform:matrix(0.311501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311501,0.000000,0.000000,0.250000,0,0);}
.maa_c00088{transform:matrix(0.312073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312073,0.000000,0.000000,0.250000,0,0);}
.m36_c00088{transform:matrix(0.312086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312086,0.000000,0.000000,0.250000,0,0);}
.m5_c00088{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.m8f_c00088{transform:matrix(0.313225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313225,0.000000,0.000000,0.250000,0,0);}
.m75_c00088{transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);}
.m24_c00088{transform:matrix(0.313773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313773,0.000000,0.000000,0.250000,0,0);}
.mb6_c00088{transform:matrix(0.314251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314251,0.000000,0.000000,0.250000,0,0);}
.m6e_c00088{transform:matrix(0.315144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315144,0.000000,0.000000,0.250000,0,0);}
.mb5_c00088{transform:matrix(0.315414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315414,0.000000,0.000000,0.250000,0,0);}
.m35_c00088{transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);}
.m82_c00088{transform:matrix(0.315674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315674,0.000000,0.000000,0.250000,0,0);}
.m5a_c00088{transform:matrix(0.316176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316176,0.000000,0.000000,0.250000,0,0);}
.m96_c00088{transform:matrix(0.316451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316451,0.000000,0.000000,0.250000,0,0);}
.m26_c00088{transform:matrix(0.316503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316503,0.000000,0.000000,0.250000,0,0);}
.m8d_c00088{transform:matrix(0.316884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316884,0.000000,0.000000,0.250000,0,0);}
.m28_c00088{transform:matrix(0.318154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318154,0.000000,0.000000,0.250000,0,0);}
.m6d_c00088{transform:matrix(0.318312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318312,0.000000,0.000000,0.250000,0,0);}
.m5c_c00088{transform:matrix(0.318469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318469,0.000000,0.000000,0.250000,0,0);}
.m92_c00088{transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);}
.m23_c00088{transform:matrix(0.318980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318980,0.000000,0.000000,0.250000,0,0);}
.me_c00088{transform:matrix(0.319073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319073,0.000000,0.000000,0.250000,0,0);}
.m69_c00088{transform:matrix(0.319290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319290,0.000000,0.000000,0.250000,0,0);}
.m4b_c00088{transform:matrix(0.321473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321473,0.000000,0.000000,0.250000,0,0);}
.m29_c00088{transform:matrix(0.321792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321792,0.000000,0.000000,0.250000,0,0);}
.m3f_c00088{transform:matrix(0.321847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321847,0.000000,0.000000,0.250000,0,0);}
.m11_c00088{transform:matrix(0.322089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322089,0.000000,0.000000,0.250000,0,0);}
.m2c_c00088{transform:matrix(0.322136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322136,0.000000,0.000000,0.250000,0,0);}
.m5f_c00088{transform:matrix(0.323141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323141,0.000000,0.000000,0.250000,0,0);}
.m50_c00088{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.m31_c00088{transform:matrix(0.324328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324328,0.000000,0.000000,0.250000,0,0);}
.m7d_c00088{transform:matrix(0.324420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324420,0.000000,0.000000,0.250000,0,0);}
.mb4_c00088{transform:matrix(0.324910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324910,0.000000,0.000000,0.250000,0,0);}
.m84_c00088{transform:matrix(0.325172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325172,0.000000,0.000000,0.250000,0,0);}
.ma7_c00088{transform:matrix(0.326126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326126,0.000000,0.000000,0.250000,0,0);}
.m6_c00088{transform:matrix(0.326137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326137,0.000000,0.000000,0.250000,0,0);}
.m41_c00088{transform:matrix(0.326965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326965,0.000000,0.000000,0.250000,0,0);}
.m4f_c00088{transform:matrix(0.327290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327290,0.000000,0.000000,0.250000,0,0);}
.m1d_c00088{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.md_c00088{transform:matrix(0.327712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327712,0.000000,0.000000,0.250000,0,0);}
.m93_c00088{transform:matrix(0.329713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329713,0.000000,0.000000,0.250000,0,0);}
.m63_c00088{transform:matrix(0.331699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331699,0.000000,0.000000,0.250000,0,0);}
.m6c_c00088{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m7b_c00088{transform:matrix(0.335147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335147,0.000000,0.000000,0.250000,0,0);}
.mba_c00088{transform:matrix(0.337421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337421,0.000000,0.000000,0.250000,0,0);}
.mb_c00088{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m85_c00088{transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);}
.mb1_c00088{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.m7f_c00088{transform:matrix(0.343331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343331,0.000000,0.000000,0.250000,0,0);}
.m87_c00088{transform:matrix(0.343701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343701,0.000000,0.000000,0.250000,0,0);}
.m38_c00088{transform:matrix(0.345227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345227,0.000000,0.000000,0.250000,0,0);}
.maf_c00088{transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);}
.m53_c00088{transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);}
.m6a_c00088{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m66_c00088{transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);}
.m77_c00088{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m59_c00088{transform:matrix(0.364549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364549,0.000000,0.000000,0.250000,0,0);}
.m7a_c00088{transform:matrix(0.380655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380655,0.000000,0.000000,0.250000,0,0);}
.m3a_c00088{transform:matrix(0.401218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401218,0.000000,0.000000,0.250000,0,0);}
.m39_c00088{transform:matrix(0.430697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430697,0.000000,0.000000,0.250000,0,0);}
.v0_c00088{vertical-align:0.000000px;}
.lsb_c00088{letter-spacing:-2.744280px;}
.ls11_c00088{letter-spacing:-2.375762px;}
.ls3_c00088{letter-spacing:-1.897474px;}
.ls5_c00088{letter-spacing:-0.893851px;}
.ls0_c00088{letter-spacing:0.000000px;}
.lsa_c00088{letter-spacing:0.762300px;}
.ls9_c00088{letter-spacing:0.792000px;}
.lsc_c00088{letter-spacing:2.132698px;}
.lsf_c00088{letter-spacing:2.362937px;}
.ls6_c00088{letter-spacing:2.987345px;}
.ls7_c00088{letter-spacing:3.504610px;}
.ls8_c00088{letter-spacing:3.716539px;}
.ls4_c00088{letter-spacing:3.752110px;}
.ls2_c00088{letter-spacing:3.920400px;}
.ls1_c00088{letter-spacing:4.197610px;}
.lsd_c00088{letter-spacing:4.375810px;}
.ls10_c00088{letter-spacing:52.747398px;}
.lse_c00088{letter-spacing:55.598598px;}
.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:-19.602000px;}
.ws2_c00088{word-spacing:0.000000px;}
.ws0_c00088{word-spacing:25.979184px;}
._5_c00088{width:7.761600px;}
._4_c00088{width:10.506672px;}
._0_c00088{width:30.423096px;}
._2_c00088{width:34.010856px;}
._1_c00088{width:40.126680px;}
._3_c00088{width:51.830064px;}
.fc0_c00088{color:transparent;}
.fs6_c00088{font-size:5.742198px;}
.fs8_c00088{font-size:15.246000px;}
.fs7_c00088{font-size:15.840000px;}
.fs11_c00088{font-size:22.176000px;}
.fsd_c00088{font-size:22.572000px;}
.fs19_c00088{font-size:27.720000px;}
.fs0_c00088{font-size:28.314000px;}
.fs15_c00088{font-size:33.264000px;}
.fs18_c00088{font-size:38.808000px;}
.fs14_c00088{font-size:39.204000px;}
.fs9_c00088{font-size:39.600000px;}
.fsf_c00088{font-size:52.747398px;}
.fsc_c00088{font-size:55.598598px;}
.fs13_c00088{font-size:56.628000px;}
.fs17_c00088{font-size:60.192000px;}
.fs1a_c00088{font-size:61.776198px;}
.fs4_c00088{font-size:64.548000px;}
.fs5_c00088{font-size:70.092198px;}
.fsa_c00088{font-size:70.884000px;}
.fs12_c00088{font-size:73.656198px;}
.fs3_c00088{font-size:75.042198px;}
.fs10_c00088{font-size:76.824000px;}
.fs2_c00088{font-size:78.408000px;}
.fse_c00088{font-size:78.804000px;}
.fs1_c00088{font-size:83.952198px;}
.fsb_c00088{font-size:87.516198px;}
.fs16_c00088{font-size:96.624000px;}
.y29_c00088{bottom:-0.449415px;}
.y0_c00088{bottom:0.000000px;}
.y28_c00088{bottom:2.050335px;}
.y27_c00088{bottom:31.270185px;}
.y26_c00088{bottom:34.477785px;}
.y25_c00088{bottom:65.845935px;}
.y24_c00088{bottom:67.984335px;}
.y1_c00088{bottom:76.500000px;}
.y23_c00088{bottom:94.001535px;}
.y22_c00088{bottom:103.267935px;}
.y21_c00088{bottom:132.136335px;}
.y20_c00088{bottom:136.413135px;}
.y1f_c00088{bottom:158.509935px;}
.y1e_c00088{bottom:173.122335px;}
.y2a_c00088{bottom:174.899385px;}
.y1d_c00088{bottom:189.873135px;}
.y1c_c00088{bottom:222.661935px;}
.y1b_c00088{bottom:254.737935px;}
.y1a_c00088{bottom:287.165385px;}
.y19_c00088{bottom:319.602735px;}
.y18_c00088{bottom:353.099385px;}
.y17_c00088{bottom:385.888185px;}
.y16_c00088{bottom:418.320585px;}
.y15_c00088{bottom:435.076335px;}
.y14_c00088{bottom:450.757935px;}
.y13_c00088{bottom:482.833935px;}
.y12_c00088{bottom:515.261385px;}
.y11_c00088{bottom:546.985935px;}
.y2_c00088{bottom:575.849385px;}
.y10_c00088{bottom:579.056985px;}
.yf_c00088{bottom:611.489385px;}
.ye_c00088{bottom:639.293535px;}
.yd_c00088{bottom:643.926735px;}
.yc_c00088{bottom:677.066985px;}
.yb_c00088{bottom:705.222585px;}
.ya_c00088{bottom:709.855785px;}
.y9_c00088{bottom:774.012735px;}
.y8_c00088{bottom:806.440185px;}
.y7_c00088{bottom:838.872585px;}
.y6_c00088{bottom:871.661385px;}
.y5_c00088{bottom:903.742335px;}
.y4_c00088{bottom:936.531135px;}
.y3_c00088{bottom:1086.926985px;}
.h8_c00088{height:5.635653px;}
.h9_c00088{height:15.546094px;}
.ha_c00088{height:15.901102px;}
.h13_c00088{height:23.128875px;}
.hf_c00088{height:23.541891px;}
.h1b_c00088{height:28.911094px;}
.h2_c00088{height:29.530617px;}
.h17_c00088{height:34.693313px;}
.h11_c00088{height:35.129767px;}
.he_c00088{height:37.028666px;}
.h16_c00088{height:38.476582px;}
.h1a_c00088{height:40.475531px;}
.hb_c00088{height:41.301563px;}
.h15_c00088{height:59.061234px;}
.h1c_c00088{height:60.629960px;}
.h19_c00088{height:62.778375px;}
.h6_c00088{height:67.321547px;}
.h7_c00088{height:68.791659px;}
.hc_c00088{height:69.568770px;}
.h5_c00088{height:73.649813px;}
.h12_c00088{height:75.398555px;}
.h14_c00088{height:76.821113px;}
.h4_c00088{height:76.953164px;}
.h10_c00088{height:77.341816px;}
.h3_c00088{height:82.394491px;}
.hd_c00088{height:85.892362px;}
.h18_c00088{height:100.775813px;}
.h1_c00088{height:1110.000000px;}
.h0_c00088{height:1263.000000px;}
.w1_c00088{width:733.500000px;}
.w0_c00088{width:892.500000px;}
.x0_c00088{left:0.000000px;}
.x2_c00088{left:15.879135px;}
.x33_c00088{left:73.932735px;}
.x4_c00088{left:75.308835px;}
.x5d_c00088{left:76.610685px;}
.x6a_c00088{left:78.194685px;}
.x1_c00088{left:79.500000px;}
.x5e_c00088{left:99.157935px;}
.xc_c00088{left:108.112485px;}
.x49_c00088{left:109.543035px;}
.x6b_c00088{left:110.617185px;}
.x5_c00088{left:120.601335px;}
.x14_c00088{left:126.476985px;}
.x15_c00088{left:129.382635px;}
.x1c_c00088{left:131.194335px;}
.x62_c00088{left:132.382335px;}
.x4a_c00088{left:142.015035px;}
.x6c_c00088{left:143.782185px;}
.x6_c00088{left:153.023835px;}
.x45_c00088{left:162.527835px;}
.x16_c00088{left:163.720785px;}
.x58_c00088{left:164.765235px;}
.x34_c00088{left:175.125585px;}
.x63_c00088{left:176.501685px;}
.x3d_c00088{left:177.580785px;}
.x29_c00088{left:186.020535px;}
.x4b_c00088{left:187.193685px;}
.x24_c00088{left:195.989835px;}
.xd_c00088{left:197.261985px;}
.x1d_c00088{left:207.582735px;}
.x64_c00088{left:209.018235px;}
.x4c_c00088{left:219.650835px;}
.x55_c00088{left:228.328185px;}
.x7_c00088{left:230.387385px;}
.x6e_c00088{left:239.787435px;}
.x2c_c00088{left:241.445685px;}
.x59_c00088{left:242.509935px;}
.x39_c00088{left:251.365485px;}
.x3e_c00088{left:253.385085px;}
.xe_c00088{left:254.721585px;}
.x1e_c00088{left:263.062335px;}
.x41_c00088{left:265.299735px;}
.x8_c00088{left:274.902735px;}
.x3f_c00088{left:275.932335px;}
.x17_c00088{left:286.347135px;}
.x4d_c00088{left:287.713335px;}
.x25_c00088{left:297.039135px;}
.x42_c00088{left:298.103385px;}
.x2d_c00088{left:306.815385px;}
.x35_c00088{left:308.394435px;}
.x1f_c00088{left:318.170685px;}
.x5a_c00088{left:320.180385px;}
.x18_c00088{left:329.837835px;}
.x50_c00088{left:331.585185px;}
.x65_c00088{left:333.664185px;}
.x26_c00088{left:340.886235px;}
.x5f_c00088{left:341.940585px;}
.x69_c00088{left:342.975135px;}
.x4e_c00088{left:351.419835px;}
.x3a_c00088{left:353.325585px;}
.x2e_c00088{left:363.299835px;}
.x51_c00088{left:364.364085px;}
.x46_c00088{left:366.834135px;}
.x19_c00088{left:373.481985px;}
.x37_c00088{left:374.669985px;}
.x9_c00088{left:386.094585px;}
.x52_c00088{left:397.004385px;}
.xf_c00088{left:407.874585px;}
.x6d_c00088{left:409.948635px;}
.x5b_c00088{left:420.165435px;}
.x3b_c00088{left:431.005935px;}
.x2f_c00088{left:439.792185px;}
.x43_c00088{left:441.732585px;}
.x36_c00088{left:450.855435px;}
.x20_c00088{left:452.068185px;}
.x5c_c00088{left:453.419535px;}
.x2a_c00088{left:463.002735px;}
.x47_c00088{left:475.234185px;}
.x1a_c00088{left:484.683735px;}
.x44_c00088{left:485.817285px;}
.xa_c00088{left:495.558885px;}
.x21_c00088{left:496.915185px;}
.x10_c00088{left:518.373435px;}
.x60_c00088{left:519.521835px;}
.x30_c00088{left:527.743785px;}
.x48_c00088{left:530.476185px;}
.x31_c00088{left:538.792185px;}
.xb_c00088{left:540.806835px;}
.x66_c00088{left:542.212635px;}
.x32_c00088{left:547.038885px;}
.x11_c00088{left:551.399835px;}
.x6f_c00088{left:552.914535px;}
.x2b_c00088{left:554.300535px;}
.x22_c00088{left:562.086885px;}
.x1b_c00088{left:563.230335px;}
.x53_c00088{left:574.244085px;}
.x12_c00088{left:584.243085px;}
.x57_c00088{left:586.064685px;}
.x54_c00088{left:595.910235px;}
.x4f_c00088{left:607.027935px;}
.x61_c00088{left:617.294235px;}
.x27_c00088{left:618.506985px;}
.x23_c00088{left:629.243535px;}
.x67_c00088{left:631.515585px;}
.x38_c00088{left:641.257185px;}
.x3_c00088{left:650.894835px;}
.x40_c00088{left:652.018485px;}
.x28_c00088{left:661.918485px;}
.x68_c00088{left:664.071735px;}
.x13_c00088{left:673.536135px;}
.x3c_c00088{left:685.084485px;}
.x56_c00088{left:686.529885px;}
.x71_c00088{left:687.623835px;}
.x70_c00088{left:688.693035px;}
.x72_c00088{left:692.959935px;}
@media print{
.v0_c00088{vertical-align:0.000000pt;}
.lsb_c00088{letter-spacing:-2.439360pt;}
.ls11_c00088{letter-spacing:-2.111789pt;}
.ls3_c00088{letter-spacing:-1.686643pt;}
.ls5_c00088{letter-spacing:-0.794534pt;}
.ls0_c00088{letter-spacing:0.000000pt;}
.lsa_c00088{letter-spacing:0.677600pt;}
.ls9_c00088{letter-spacing:0.704000pt;}
.lsc_c00088{letter-spacing:1.895731pt;}
.lsf_c00088{letter-spacing:2.100389pt;}
.ls6_c00088{letter-spacing:2.655418pt;}
.ls7_c00088{letter-spacing:3.115209pt;}
.ls8_c00088{letter-spacing:3.303590pt;}
.ls4_c00088{letter-spacing:3.335209pt;}
.ls2_c00088{letter-spacing:3.484800pt;}
.ls1_c00088{letter-spacing:3.731209pt;}
.lsd_c00088{letter-spacing:3.889609pt;}
.ls10_c00088{letter-spacing:46.886576pt;}
.lse_c00088{letter-spacing:49.420976pt;}
.ws1_c00088{word-spacing:-17.424000pt;}
.ws2_c00088{word-spacing:0.000000pt;}
.ws0_c00088{word-spacing:23.092608pt;}
._5_c00088{width:6.899200pt;}
._4_c00088{width:9.339264pt;}
._0_c00088{width:27.042752pt;}
._2_c00088{width:30.231872pt;}
._1_c00088{width:35.668160pt;}
._3_c00088{width:46.071168pt;}
.fs6_c00088{font-size:5.104176pt;}
.fs8_c00088{font-size:13.552000pt;}
.fs7_c00088{font-size:14.080000pt;}
.fs11_c00088{font-size:19.712000pt;}
.fsd_c00088{font-size:20.064000pt;}
.fs19_c00088{font-size:24.640000pt;}
.fs0_c00088{font-size:25.168000pt;}
.fs15_c00088{font-size:29.568000pt;}
.fs18_c00088{font-size:34.496000pt;}
.fs14_c00088{font-size:34.848000pt;}
.fs9_c00088{font-size:35.200000pt;}
.fsf_c00088{font-size:46.886576pt;}
.fsc_c00088{font-size:49.420976pt;}
.fs13_c00088{font-size:50.336000pt;}
.fs17_c00088{font-size:53.504000pt;}
.fs1a_c00088{font-size:54.912176pt;}
.fs4_c00088{font-size:57.376000pt;}
.fs5_c00088{font-size:62.304176pt;}
.fsa_c00088{font-size:63.008000pt;}
.fs12_c00088{font-size:65.472176pt;}
.fs3_c00088{font-size:66.704176pt;}
.fs10_c00088{font-size:68.288000pt;}
.fs2_c00088{font-size:69.696000pt;}
.fse_c00088{font-size:70.048000pt;}
.fs1_c00088{font-size:74.624176pt;}
.fsb_c00088{font-size:77.792176pt;}
.fs16_c00088{font-size:85.888000pt;}
.y29_c00088{bottom:-0.399480pt;}
.y0_c00088{bottom:0.000000pt;}
.y28_c00088{bottom:1.822520pt;}
.y27_c00088{bottom:27.795720pt;}
.y26_c00088{bottom:30.646920pt;}
.y25_c00088{bottom:58.529720pt;}
.y24_c00088{bottom:60.430520pt;}
.y1_c00088{bottom:68.000000pt;}
.y23_c00088{bottom:83.556920pt;}
.y22_c00088{bottom:91.793720pt;}
.y21_c00088{bottom:117.454520pt;}
.y20_c00088{bottom:121.256120pt;}
.y1f_c00088{bottom:140.897720pt;}
.y1e_c00088{bottom:153.886520pt;}
.y2a_c00088{bottom:155.466120pt;}
.y1d_c00088{bottom:168.776120pt;}
.y1c_c00088{bottom:197.921720pt;}
.y1b_c00088{bottom:226.433720pt;}
.y1a_c00088{bottom:255.258120pt;}
.y19_c00088{bottom:284.091320pt;}
.y18_c00088{bottom:313.866120pt;}
.y17_c00088{bottom:343.011720pt;}
.y16_c00088{bottom:371.840520pt;}
.y15_c00088{bottom:386.734520pt;}
.y14_c00088{bottom:400.673720pt;}
.y13_c00088{bottom:429.185720pt;}
.y12_c00088{bottom:458.010120pt;}
.y11_c00088{bottom:486.209720pt;}
.y2_c00088{bottom:511.866120pt;}
.y10_c00088{bottom:514.717320pt;}
.yf_c00088{bottom:543.546120pt;}
.ye_c00088{bottom:568.260920pt;}
.yd_c00088{bottom:572.379320pt;}
.yc_c00088{bottom:601.837320pt;}
.yb_c00088{bottom:626.864520pt;}
.ya_c00088{bottom:630.982920pt;}
.y9_c00088{bottom:688.011320pt;}
.y8_c00088{bottom:716.835720pt;}
.y7_c00088{bottom:745.664520pt;}
.y6_c00088{bottom:774.810120pt;}
.y5_c00088{bottom:803.326520pt;}
.y4_c00088{bottom:832.472120pt;}
.y3_c00088{bottom:966.157320pt;}
.h8_c00088{height:5.009470pt;}
.h9_c00088{height:13.818750pt;}
.ha_c00088{height:14.134313pt;}
.h13_c00088{height:20.559000pt;}
.hf_c00088{height:20.926125pt;}
.h1b_c00088{height:25.698750pt;}
.h2_c00088{height:26.249438pt;}
.h17_c00088{height:30.838500pt;}
.h11_c00088{height:31.226460pt;}
.he_c00088{height:32.914370pt;}
.h16_c00088{height:34.201406pt;}
.h1a_c00088{height:35.978250pt;}
.hb_c00088{height:36.712500pt;}
.h15_c00088{height:52.498875pt;}
.h1c_c00088{height:53.893298pt;}
.h19_c00088{height:55.803000pt;}
.h6_c00088{height:59.841375pt;}
.h7_c00088{height:61.148141pt;}
.hc_c00088{height:61.838906pt;}
.h5_c00088{height:65.466501pt;}
.h12_c00088{height:67.020938pt;}
.h14_c00088{height:68.285434pt;}
.h4_c00088{height:68.402813pt;}
.h10_c00088{height:68.748281pt;}
.h3_c00088{height:73.239548pt;}
.hd_c00088{height:76.348766pt;}
.h18_c00088{height:89.578500pt;}
.h1_c00088{height:986.666667pt;}
.h0_c00088{height:1122.666667pt;}
.w1_c00088{width:652.000000pt;}
.w0_c00088{width:793.333333pt;}
.x0_c00088{left:0.000000pt;}
.x2_c00088{left:14.114787pt;}
.x33_c00088{left:65.717987pt;}
.x4_c00088{left:66.941187pt;}
.x5d_c00088{left:68.098387pt;}
.x6a_c00088{left:69.506387pt;}
.x1_c00088{left:70.666667pt;}
.x5e_c00088{left:88.140387pt;}
.xc_c00088{left:96.099987pt;}
.x49_c00088{left:97.371587pt;}
.x6b_c00088{left:98.326387pt;}
.x5_c00088{left:107.201187pt;}
.x14_c00088{left:112.423987pt;}
.x15_c00088{left:115.006787pt;}
.x1c_c00088{left:116.617187pt;}
.x62_c00088{left:117.673187pt;}
.x4a_c00088{left:126.235587pt;}
.x6c_c00088{left:127.806387pt;}
.x6_c00088{left:136.021187pt;}
.x45_c00088{left:144.469187pt;}
.x16_c00088{left:145.529587pt;}
.x58_c00088{left:146.457987pt;}
.x34_c00088{left:155.667187pt;}
.x63_c00088{left:156.890387pt;}
.x3d_c00088{left:157.849587pt;}
.x29_c00088{left:165.351587pt;}
.x4b_c00088{left:166.394387pt;}
.x24_c00088{left:174.213187pt;}
.xd_c00088{left:175.343987pt;}
.x1d_c00088{left:184.517987pt;}
.x64_c00088{left:185.793987pt;}
.x4c_c00088{left:195.245187pt;}
.x55_c00088{left:202.958387pt;}
.x7_c00088{left:204.788787pt;}
.x6e_c00088{left:213.144387pt;}
.x2c_c00088{left:214.618387pt;}
.x59_c00088{left:215.564387pt;}
.x39_c00088{left:223.435987pt;}
.x3e_c00088{left:225.231187pt;}
.xe_c00088{left:226.419187pt;}
.x1e_c00088{left:233.833187pt;}
.x41_c00088{left:235.821987pt;}
.x8_c00088{left:244.357987pt;}
.x3f_c00088{left:245.273187pt;}
.x17_c00088{left:254.530787pt;}
.x4d_c00088{left:255.745187pt;}
.x25_c00088{left:264.034787pt;}
.x42_c00088{left:264.980787pt;}
.x2d_c00088{left:272.724787pt;}
.x35_c00088{left:274.128387pt;}
.x1f_c00088{left:282.818387pt;}
.x5a_c00088{left:284.604787pt;}
.x18_c00088{left:293.189187pt;}
.x50_c00088{left:294.742387pt;}
.x65_c00088{left:296.590387pt;}
.x26_c00088{left:303.009987pt;}
.x5f_c00088{left:303.947187pt;}
.x69_c00088{left:304.866787pt;}
.x4e_c00088{left:312.373187pt;}
.x3a_c00088{left:314.067187pt;}
.x2e_c00088{left:322.933187pt;}
.x51_c00088{left:323.879187pt;}
.x46_c00088{left:326.074787pt;}
.x19_c00088{left:331.983987pt;}
.x37_c00088{left:333.039987pt;}
.x9_c00088{left:343.195187pt;}
.x52_c00088{left:352.892787pt;}
.xf_c00088{left:362.555187pt;}
.x6d_c00088{left:364.398787pt;}
.x5b_c00088{left:373.480387pt;}
.x3b_c00088{left:383.116387pt;}
.x2f_c00088{left:390.926387pt;}
.x43_c00088{left:392.651187pt;}
.x36_c00088{left:400.760387pt;}
.x20_c00088{left:401.838387pt;}
.x5c_c00088{left:403.039587pt;}
.x2a_c00088{left:411.557987pt;}
.x47_c00088{left:422.430387pt;}
.x1a_c00088{left:430.829987pt;}
.x44_c00088{left:431.837587pt;}
.xa_c00088{left:440.496787pt;}
.x21_c00088{left:441.702387pt;}
.x10_c00088{left:460.776387pt;}
.x60_c00088{left:461.797187pt;}
.x30_c00088{left:469.105587pt;}
.x48_c00088{left:471.534387pt;}
.x31_c00088{left:478.926387pt;}
.xb_c00088{left:480.717187pt;}
.x66_c00088{left:481.966787pt;}
.x32_c00088{left:486.256787pt;}
.x11_c00088{left:490.133187pt;}
.x6f_c00088{left:491.479587pt;}
.x2b_c00088{left:492.711587pt;}
.x22_c00088{left:499.632787pt;}
.x1b_c00088{left:500.649187pt;}
.x53_c00088{left:510.439187pt;}
.x12_c00088{left:519.327187pt;}
.x57_c00088{left:520.946387pt;}
.x54_c00088{left:529.697987pt;}
.x4f_c00088{left:539.580387pt;}
.x61_c00088{left:548.705987pt;}
.x27_c00088{left:549.783987pt;}
.x23_c00088{left:559.327587pt;}
.x67_c00088{left:561.347187pt;}
.x38_c00088{left:570.006387pt;}
.x3_c00088{left:578.573187pt;}
.x40_c00088{left:579.571987pt;}
.x28_c00088{left:588.371987pt;}
.x68_c00088{left:590.285987pt;}
.x13_c00088{left:598.698787pt;}
.x3c_c00088{left:608.963987pt;}
.x56_c00088{left:610.248787pt;}
.x71_c00088{left:611.221187pt;}
.x70_c00088{left:612.171587pt;}
.x72_c00088{left:615.964387pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e2dd41ad6a03b0d30d0d3926.woff2')format("woff");}.ff1_c00089{font-family:ff1_c00089;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00089;src:url('chunks/assets/font_a5613d84c9a7b2f1d9562db7.woff2')format("woff");}.ff2_c00089{font-family:ff2_c00089;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00089;src:url('chunks/assets/font_7015f2ba35d825d29830501c.woff2')format("woff");}.ff3_c00089{font-family:ff3_c00089;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00089;src:url('chunks/assets/font_d7a8bec137d6d37444efa2c9.woff2')format("woff");}.ff4_c00089{font-family:ff4_c00089;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1a_c00089{transform:matrix(0.060001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060001,0.000000,0.000000,0.250000,0,0);}
.m1c_c00089{transform:matrix(0.195001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195001,0.000000,0.000000,0.250000,0,0);}
.m1b_c00089{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m41_c00089{transform:matrix(0.210586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210586,0.000000,0.000000,0.250000,0,0);}
.m1_c00089{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00089{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.m11_c00089{transform:matrix(0.256581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256581,0.000000,0.000000,0.250000,0,0);}
.m4d_c00089{transform:matrix(0.257373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257373,0.000000,0.000000,0.250000,0,0);}
.m38_c00089{transform:matrix(0.257475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257475,0.000000,0.000000,0.250000,0,0);}
.m22_c00089{transform:matrix(0.257917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257917,0.000000,0.000000,0.250000,0,0);}
.m5f_c00089{transform:matrix(0.260077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260077,0.000000,0.000000,0.250000,0,0);}
.m4b_c00089{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m6b_c00089{transform:matrix(0.260981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260981,0.000000,0.000000,0.250000,0,0);}
.m70_c00089{transform:matrix(0.261717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261717,0.000000,0.000000,0.250000,0,0);}
.m52_c00089{transform:matrix(0.262114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262114,0.000000,0.000000,0.250000,0,0);}
.m3e_c00089{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m26_c00089{transform:matrix(0.263875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263875,0.000000,0.000000,0.250000,0,0);}
.mc_c00089{transform:matrix(0.265600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265600,0.000000,0.000000,0.250000,0,0);}
.m53_c00089{transform:matrix(0.266174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266174,0.000000,0.000000,0.250000,0,0);}
.m3a_c00089{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m7c_c00089{transform:matrix(0.266696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266696,0.000000,0.000000,0.250000,0,0);}
.m16_c00089{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.mf_c00089{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m85_c00089{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.m3f_c00089{transform:matrix(0.269145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269145,0.000000,0.000000,0.250000,0,0);}
.m29_c00089{transform:matrix(0.269830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269830,0.000000,0.000000,0.250000,0,0);}
.m82_c00089{transform:matrix(0.270007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270007,0.000000,0.000000,0.250000,0,0);}
.m88_c00089{transform:matrix(0.270439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270439,0.000000,0.000000,0.250000,0,0);}
.m14_c00089{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m3c_c00089{transform:matrix(0.272050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272050,0.000000,0.000000,0.250000,0,0);}
.m23_c00089{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m4f_c00089{transform:matrix(0.272975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272975,0.000000,0.000000,0.250000,0,0);}
.m51_c00089{transform:matrix(0.273534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273534,0.000000,0.000000,0.250000,0,0);}
.m32_c00089{transform:matrix(0.273580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273580,0.000000,0.000000,0.250000,0,0);}
.m44_c00089{transform:matrix(0.274227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274227,0.000000,0.000000,0.250000,0,0);}
.m45_c00089{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m6d_c00089{transform:matrix(0.275570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275570,0.000000,0.000000,0.250000,0,0);}
.m64_c00089{transform:matrix(0.275687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275687,0.000000,0.000000,0.250000,0,0);}
.m12_c00089{transform:matrix(0.275881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275881,0.000000,0.000000,0.250000,0,0);}
.m46_c00089{transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);}
.m8b_c00089{transform:matrix(0.278025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278025,0.000000,0.000000,0.250000,0,0);}
.md_c00089{transform:matrix(0.278443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278443,0.000000,0.000000,0.250000,0,0);}
.m5_c00089{transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);}
.m72_c00089{transform:matrix(0.279898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279898,0.000000,0.000000,0.250000,0,0);}
.m60_c00089{transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);}
.m19_c00089{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00089{transform:matrix(0.281178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281178,0.000000,0.000000,0.250000,0,0);}
.m2b_c00089{transform:matrix(0.282943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282943,0.000000,0.000000,0.250000,0,0);}
.m34_c00089{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m4a_c00089{transform:matrix(0.284841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284841,0.000000,0.000000,0.250000,0,0);}
.m87_c00089{transform:matrix(0.286407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286407,0.000000,0.000000,0.250000,0,0);}
.m71_c00089{transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);}
.me_c00089{transform:matrix(0.288372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288372,0.000000,0.000000,0.250000,0,0);}
.m1d_c00089{transform:matrix(0.289601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289601,0.000000,0.000000,0.250000,0,0);}
.m0_c00089{transform:matrix(0.290045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290045,0.000000,0.000000,0.250000,0,0);}
.m66_c00089{transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);}
.m49_c00089{transform:matrix(0.290979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290979,0.000000,0.000000,0.250000,0,0);}
.m3d_c00089{transform:matrix(0.291066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291066,0.000000,0.000000,0.250000,0,0);}
.m39_c00089{transform:matrix(0.291629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291629,0.000000,0.000000,0.250000,0,0);}
.m81_c00089{transform:matrix(0.291684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291684,0.000000,0.000000,0.250000,0,0);}
.m9_c00089{transform:matrix(0.292955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292955,0.000000,0.000000,0.250000,0,0);}
.m31_c00089{transform:matrix(0.293069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293069,0.000000,0.000000,0.250000,0,0);}
.m33_c00089{transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);}
.m5b_c00089{transform:matrix(0.296103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296103,0.000000,0.000000,0.250000,0,0);}
.m4_c00089{transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);}
.m2a_c00089{transform:matrix(0.296935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296935,0.000000,0.000000,0.250000,0,0);}
.m4e_c00089{transform:matrix(0.296940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296940,0.000000,0.000000,0.250000,0,0);}
.m35_c00089{transform:matrix(0.297810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297810,0.000000,0.000000,0.250000,0,0);}
.m56_c00089{transform:matrix(0.299536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299536,0.000000,0.000000,0.250000,0,0);}
.m28_c00089{transform:matrix(0.299763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299763,0.000000,0.000000,0.250000,0,0);}
.m2_c00089{transform:matrix(0.301163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301163,0.000000,0.000000,0.250000,0,0);}
.m36_c00089{transform:matrix(0.302288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302288,0.000000,0.000000,0.250000,0,0);}
.m67_c00089{transform:matrix(0.302567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302567,0.000000,0.000000,0.250000,0,0);}
.m84_c00089{transform:matrix(0.302622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302622,0.000000,0.000000,0.250000,0,0);}
.m8a_c00089{transform:matrix(0.303965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303965,0.000000,0.000000,0.250000,0,0);}
.m42_c00089{transform:matrix(0.304071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304071,0.000000,0.000000,0.250000,0,0);}
.m25_c00089{transform:matrix(0.304720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304720,0.000000,0.000000,0.250000,0,0);}
.m6a_c00089{transform:matrix(0.306047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306047,0.000000,0.000000,0.250000,0,0);}
.m63_c00089{transform:matrix(0.306396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306396,0.000000,0.000000,0.250000,0,0);}
.m48_c00089{transform:matrix(0.306572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306572,0.000000,0.000000,0.250000,0,0);}
.m80_c00089{transform:matrix(0.306703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306703,0.000000,0.000000,0.250000,0,0);}
.m6e_c00089{transform:matrix(0.306809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306809,0.000000,0.000000,0.250000,0,0);}
.m77_c00089{transform:matrix(0.307242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307242,0.000000,0.000000,0.250000,0,0);}
.mb_c00089{transform:matrix(0.307711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307711,0.000000,0.000000,0.250000,0,0);}
.m65_c00089{transform:matrix(0.307871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307871,0.000000,0.000000,0.250000,0,0);}
.m15_c00089{transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);}
.m76_c00089{transform:matrix(0.309189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309189,0.000000,0.000000,0.250000,0,0);}
.m10_c00089{transform:matrix(0.309349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309349,0.000000,0.000000,0.250000,0,0);}
.m21_c00089{transform:matrix(0.309470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309470,0.000000,0.000000,0.250000,0,0);}
.m58_c00089{transform:matrix(0.311130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311130,0.000000,0.000000,0.250000,0,0);}
.m2e_c00089{transform:matrix(0.311211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311211,0.000000,0.000000,0.250000,0,0);}
.m78_c00089{transform:matrix(0.311407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311407,0.000000,0.000000,0.250000,0,0);}
.m6c_c00089{transform:matrix(0.311699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311699,0.000000,0.000000,0.250000,0,0);}
.m3b_c00089{transform:matrix(0.312086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312086,0.000000,0.000000,0.250000,0,0);}
.m13_c00089{transform:matrix(0.312507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312507,0.000000,0.000000,0.250000,0,0);}
.m55_c00089{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.m83_c00089{transform:matrix(0.313627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313627,0.000000,0.000000,0.250000,0,0);}
.m54_c00089{transform:matrix(0.314503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314503,0.000000,0.000000,0.250000,0,0);}
.m47_c00089{transform:matrix(0.314610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314610,0.000000,0.000000,0.250000,0,0);}
.m20_c00089{transform:matrix(0.315951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315951,0.000000,0.000000,0.250000,0,0);}
.m5a_c00089{transform:matrix(0.317571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317571,0.000000,0.000000,0.250000,0,0);}
.m74_c00089{transform:matrix(0.317587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317587,0.000000,0.000000,0.250000,0,0);}
.m57_c00089{transform:matrix(0.317996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317996,0.000000,0.000000,0.250000,0,0);}
.m1e_c00089{transform:matrix(0.318957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318957,0.000000,0.000000,0.250000,0,0);}
.m3_c00089{transform:matrix(0.319679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319679,0.000000,0.000000,0.250000,0,0);}
.m89_c00089{transform:matrix(0.319683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319683,0.000000,0.000000,0.250000,0,0);}
.m61_c00089{transform:matrix(0.319854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319854,0.000000,0.000000,0.250000,0,0);}
.m8c_c00089{transform:matrix(0.320228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320228,0.000000,0.000000,0.250000,0,0);}
.m79_c00089{transform:matrix(0.321272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321272,0.000000,0.000000,0.250000,0,0);}
.m1f_c00089{transform:matrix(0.321390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321390,0.000000,0.000000,0.250000,0,0);}
.m30_c00089{transform:matrix(0.321549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321549,0.000000,0.000000,0.250000,0,0);}
.m5d_c00089{transform:matrix(0.321809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321809,0.000000,0.000000,0.250000,0,0);}
.ma_c00089{transform:matrix(0.323164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323164,0.000000,0.000000,0.250000,0,0);}
.m40_c00089{transform:matrix(0.323503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323503,0.000000,0.000000,0.250000,0,0);}
.m86_c00089{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.m62_c00089{transform:matrix(0.325086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325086,0.000000,0.000000,0.250000,0,0);}
.m7d_c00089{transform:matrix(0.326746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326746,0.000000,0.000000,0.250000,0,0);}
.m6f_c00089{transform:matrix(0.326875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326875,0.000000,0.000000,0.250000,0,0);}
.m5e_c00089{transform:matrix(0.327932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327932,0.000000,0.000000,0.250000,0,0);}
.m69_c00089{transform:matrix(0.329313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329313,0.000000,0.000000,0.250000,0,0);}
.m2f_c00089{transform:matrix(0.330951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330951,0.000000,0.000000,0.250000,0,0);}
.m75_c00089{transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);}
.m7f_c00089{transform:matrix(0.338338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338338,0.000000,0.000000,0.250000,0,0);}
.m8_c00089{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m7b_c00089{transform:matrix(0.340531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340531,0.000000,0.000000,0.250000,0,0);}
.m2c_c00089{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.m7a_c00089{transform:matrix(0.343694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343694,0.000000,0.000000,0.250000,0,0);}
.m68_c00089{transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);}
.m27_c00089{transform:matrix(0.347013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347013,0.000000,0.000000,0.250000,0,0);}
.m6_c00089{transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);}
.m24_c00089{transform:matrix(0.348765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348765,0.000000,0.000000,0.250000,0,0);}
.m43_c00089{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m50_c00089{transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);}
.m7e_c00089{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m59_c00089{transform:matrix(0.355530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355530,0.000000,0.000000,0.250000,0,0);}
.m73_c00089{transform:matrix(0.359351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359351,0.000000,0.000000,0.250000,0,0);}
.m37_c00089{transform:matrix(0.360514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360514,0.000000,0.000000,0.250000,0,0);}
.m7_c00089{transform:matrix(0.363431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363431,0.000000,0.000000,0.250000,0,0);}
.m17_c00089{transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);}
.m5c_c00089{transform:matrix(0.387416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387416,0.000000,0.000000,0.250000,0,0);}
.m18_c00089{transform:matrix(0.550001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550001,0.000000,0.000000,0.250000,0,0);}
.v0_c00089{vertical-align:0.000000px;}
.ls6_c00089{letter-spacing:-1.897474px;}
.ls2_c00089{letter-spacing:0.000000px;}
.ls0_c00089{letter-spacing:1.826906px;}
.ls1_c00089{letter-spacing:3.880810px;}
.ls3_c00089{letter-spacing:3.920400px;}
.ls4_c00089{letter-spacing:35.640000px;}
.ls5_c00089{letter-spacing:52.747398px;}
.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:-19.602000px;}
.ws2_c00089{word-spacing:0.000000px;}
.ws1_c00089{word-spacing:23.020985px;}
._0_c00089{margin-left:-20.464488px;}
._5_c00089{width:3.606768px;}
._8_c00089{width:5.879808px;}
._1_c00089{width:7.683984px;}
._7_c00089{width:9.095328px;}
._3_c00089{width:35.989272px;}
._2_c00089{width:38.640888px;}
._4_c00089{width:69.388704px;}
._6_c00089{width:153.944604px;}
.fc0_c00089{color:transparent;}
.fs8_c00089{font-size:9.702198px;}
.fs5_c00089{font-size:16.632000px;}
.fs6_c00089{font-size:28.512000px;}
.fs10_c00089{font-size:34.056198px;}
.fs3_c00089{font-size:35.640000px;}
.fsb_c00089{font-size:44.748000px;}
.fse_c00089{font-size:50.688000px;}
.fs9_c00089{font-size:52.747398px;}
.fsd_c00089{font-size:56.628000px;}
.fsa_c00089{font-size:64.548000px;}
.fsf_c00089{font-size:70.884000px;}
.fsc_c00089{font-size:73.656198px;}
.fs1_c00089{font-size:75.240000px;}
.fs0_c00089{font-size:77.616198px;}
.fs2_c00089{font-size:78.408000px;}
.fs7_c00089{font-size:79.794000px;}
.fs4_c00089{font-size:91.872198px;}
.y0_c00089{bottom:0.000000px;}
.y1c_c00089{bottom:75.468735px;}
.y1_c00089{bottom:76.500000px;}
.y1b_c00089{bottom:158.866335px;}
.y1a_c00089{bottom:190.580985px;}
.y15_c00089{bottom:287.878185px;}
.y19_c00089{bottom:291.090735px;}
.y18_c00089{bottom:296.436735px;}
.y17_c00089{bottom:420.463935px;}
.y16_c00089{bottom:421.528185px;}
.y14_c00089{bottom:450.757935px;}
.y13_c00089{bottom:483.185385px;}
.y12_c00089{bottom:514.909935px;}
.y11_c00089{bottom:546.980985px;}
.y10_c00089{bottom:579.418335px;}
.yf_c00089{bottom:611.494335px;}
.ye_c00089{bottom:643.565385px;}
.yd_c00089{bottom:676.354185px;}
.yc_c00089{bottom:707.009535px;}
.yb_c00089{bottom:708.786585px;}
.ya_c00089{bottom:773.656335px;}
.y9_c00089{bottom:806.445135px;}
.y8_c00089{bottom:831.749535px;}
.y7_c00089{bottom:837.808335px;}
.y6_c00089{bottom:869.884335px;}
.y5_c00089{bottom:890.550585px;}
.y4_c00089{bottom:902.311785px;}
.y3_c00089{bottom:934.387785px;}
.y2_c00089{bottom:1086.214185px;}
.h5_c00089{height:23.736240px;}
.h7_c00089{height:29.737125px;}
.h9_c00089{height:35.129767px;}
.h10_c00089{height:35.519550px;}
.hb_c00089{height:43.917715px;}
.he_c00089{height:52.866000px;}
.hd_c00089{height:59.061234px;}
.ha_c00089{height:67.321547px;}
.hf_c00089{height:69.568770px;}
.h2_c00089{height:76.176054px;}
.hc_c00089{height:76.821113px;}
.h4_c00089{height:76.953164px;}
.h3_c00089{height:78.472969px;}
.h8_c00089{height:83.222648px;}
.h6_c00089{height:95.819832px;}
.h1_c00089{height:1110.000000px;}
.h0_c00089{height:1263.000000px;}
.w1_c00089{width:733.500000px;}
.w0_c00089{width:892.500000px;}
.x0_c00089{left:0.000000px;}
.x13_c00089{left:76.947285px;}
.x4_c00089{left:78.140235px;}
.x1_c00089{left:79.500000px;}
.x4a_c00089{left:110.102385px;}
.x5_c00089{left:111.730935px;}
.x54_c00089{left:113.097135px;}
.x44_c00089{left:121.155735px;}
.x6_c00089{left:123.110985px;}
.x38_c00089{left:130.357785px;}
.x26_c00089{left:133.238685px;}
.x39_c00089{left:143.757435px;}
.x14_c00089{left:144.856335px;}
.x42_c00089{left:154.291035px;}
.x36_c00089{left:165.888885px;}
.x7_c00089{left:176.457135px;}
.x2f_c00089{left:177.650085px;}
.x51_c00089{left:187.376835px;}
.x15_c00089{left:188.510385px;}
.x27_c00089{left:199.667685px;}
.x8_c00089{left:210.805185px;}
.x9_c00089{left:220.621035px;}
.x16_c00089{left:221.843685px;}
.x4b_c00089{left:222.893085px;}
.x28_c00089{left:232.847535px;}
.x3a_c00089{left:243.648435px;}
.xa_c00089{left:255.266085px;}
.x17_c00089{left:256.404585px;}
.x37_c00089{left:266.037285px;}
.x18_c00089{left:277.580685px;}
.x29_c00089{left:288.302385px;}
.xb_c00089{left:289.549785px;}
.x31_c00089{left:300.261585px;}
.xc_c00089{left:310.359585px;}
.x20_c00089{left:320.422935px;}
.x19_c00089{left:322.333635px;}
.x2a_c00089{left:332.961285px;}
.x2b_c00089{left:342.509835px;}
.x4c_c00089{left:343.608735px;}
.x3b_c00089{left:353.558235px;}
.xd_c00089{left:355.765935px;}
.x21_c00089{left:359.626935px;}
.x22_c00089{left:366.398535px;}
.x23_c00089{left:367.824135px;}
.x52_c00089{left:377.956785px;}
.x24_c00089{left:382.792935px;}
.xe_c00089{left:388.515135px;}
.x25_c00089{left:396.469785px;}
.xf_c00089{left:399.999135px;}
.x32_c00089{left:409.463535px;}
.x3c_c00089{left:410.611935px;}
.x30_c00089{left:421.402935px;}
.x43_c00089{left:431.253435px;}
.x48_c00089{left:432.451335px;}
.x4d_c00089{left:433.535385px;}
.x1a_c00089{left:443.870985px;}
.x45_c00089{left:455.255985px;}
.x33_c00089{left:476.308335px;}
.x10_c00089{left:477.372585px;}
.x3d_c00089{left:487.723035px;}
.x11_c00089{left:499.073385px;}
.x1b_c00089{left:500.964285px;}
.x4f_c00089{left:511.210785px;}
.x3e_c00089{left:519.952485px;}
.x46_c00089{left:521.907735px;}
.x34_c00089{left:531.787935px;}
.x1c_c00089{left:543.286785px;}
.x1d_c00089{left:555.052935px;}
.x49_c00089{left:564.190635px;}
.x2c_c00089{left:566.116185px;}
.x2d_c00089{left:576.100335px;}
.x12_c00089{left:587.475435px;}
.x2e_c00089{left:597.667485px;}
.x35_c00089{left:609.577185px;}
.x47_c00089{left:621.358185px;}
.x1e_c00089{left:631.347285px;}
.x3f_c00089{left:642.405585px;}
.x50_c00089{left:643.484685px;}
.x2_c00089{left:653.736135px;}
.x40_c00089{left:665.551785px;}
.x1f_c00089{left:676.204185px;}
.x55_c00089{left:678.748485px;}
.x53_c00089{left:686.089335px;}
.x41_c00089{left:687.599085px;}
.x3_c00089{left:688.707885px;}
.x4e_c00089{left:698.696985px;}
@media print{
.v0_c00089{vertical-align:0.000000pt;}
.ls6_c00089{letter-spacing:-1.686643pt;}
.ls2_c00089{letter-spacing:0.000000pt;}
.ls0_c00089{letter-spacing:1.623917pt;}
.ls1_c00089{letter-spacing:3.449609pt;}
.ls3_c00089{letter-spacing:3.484800pt;}
.ls4_c00089{letter-spacing:31.680000pt;}
.ls5_c00089{letter-spacing:46.886576pt;}
.ws0_c00089{word-spacing:-17.424000pt;}
.ws2_c00089{word-spacing:0.000000pt;}
.ws1_c00089{word-spacing:20.463098pt;}
._0_c00089{margin-left:-18.190656pt;}
._5_c00089{width:3.206016pt;}
._8_c00089{width:5.226496pt;}
._1_c00089{width:6.830208pt;}
._7_c00089{width:8.084736pt;}
._3_c00089{width:31.990464pt;}
._2_c00089{width:34.347456pt;}
._4_c00089{width:61.678848pt;}
._6_c00089{width:136.839648pt;}
.fs8_c00089{font-size:8.624176pt;}
.fs5_c00089{font-size:14.784000pt;}
.fs6_c00089{font-size:25.344000pt;}
.fs10_c00089{font-size:30.272176pt;}
.fs3_c00089{font-size:31.680000pt;}
.fsb_c00089{font-size:39.776000pt;}
.fse_c00089{font-size:45.056000pt;}
.fs9_c00089{font-size:46.886576pt;}
.fsd_c00089{font-size:50.336000pt;}
.fsa_c00089{font-size:57.376000pt;}
.fsf_c00089{font-size:63.008000pt;}
.fsc_c00089{font-size:65.472176pt;}
.fs1_c00089{font-size:66.880000pt;}
.fs0_c00089{font-size:68.992176pt;}
.fs2_c00089{font-size:69.696000pt;}
.fs7_c00089{font-size:70.928000pt;}
.fs4_c00089{font-size:81.664176pt;}
.y0_c00089{bottom:0.000000pt;}
.y1c_c00089{bottom:67.083320pt;}
.y1_c00089{bottom:68.000000pt;}
.y1b_c00089{bottom:141.214520pt;}
.y1a_c00089{bottom:169.405320pt;}
.y15_c00089{bottom:255.891720pt;}
.y19_c00089{bottom:258.747320pt;}
.y18_c00089{bottom:263.499320pt;}
.y17_c00089{bottom:373.745720pt;}
.y16_c00089{bottom:374.691720pt;}
.y14_c00089{bottom:400.673720pt;}
.y13_c00089{bottom:429.498120pt;}
.y12_c00089{bottom:457.697720pt;}
.y11_c00089{bottom:486.205320pt;}
.y10_c00089{bottom:515.038520pt;}
.yf_c00089{bottom:543.550520pt;}
.ye_c00089{bottom:572.058120pt;}
.yd_c00089{bottom:601.203720pt;}
.yc_c00089{bottom:628.452920pt;}
.yb_c00089{bottom:630.032520pt;}
.ya_c00089{bottom:687.694520pt;}
.y9_c00089{bottom:716.840120pt;}
.y8_c00089{bottom:739.332920pt;}
.y7_c00089{bottom:744.718520pt;}
.y6_c00089{bottom:773.230520pt;}
.y5_c00089{bottom:791.600520pt;}
.y4_c00089{bottom:802.054920pt;}
.y3_c00089{bottom:830.566920pt;}
.y2_c00089{bottom:965.523720pt;}
.h5_c00089{height:21.098880pt;}
.h7_c00089{height:26.433000pt;}
.h9_c00089{height:31.226460pt;}
.h10_c00089{height:31.572934pt;}
.hb_c00089{height:39.037969pt;}
.he_c00089{height:46.992000pt;}
.hd_c00089{height:52.498875pt;}
.ha_c00089{height:59.841375pt;}
.hf_c00089{height:61.838906pt;}
.h2_c00089{height:67.712048pt;}
.hc_c00089{height:68.285434pt;}
.h4_c00089{height:68.402813pt;}
.h3_c00089{height:69.753750pt;}
.h8_c00089{height:73.975688pt;}
.h6_c00089{height:85.173184pt;}
.h1_c00089{height:986.666667pt;}
.h0_c00089{height:1122.666667pt;}
.w1_c00089{width:652.000000pt;}
.w0_c00089{width:793.333333pt;}
.x0_c00089{left:0.000000pt;}
.x13_c00089{left:68.397587pt;}
.x4_c00089{left:69.457987pt;}
.x1_c00089{left:70.666667pt;}
.x4a_c00089{left:97.868787pt;}
.x5_c00089{left:99.316387pt;}
.x54_c00089{left:100.530787pt;}
.x44_c00089{left:107.693987pt;}
.x6_c00089{left:109.431987pt;}
.x38_c00089{left:115.873587pt;}
.x26_c00089{left:118.434387pt;}
.x39_c00089{left:127.784387pt;}
.x14_c00089{left:128.761187pt;}
.x42_c00089{left:137.147587pt;}
.x36_c00089{left:147.456787pt;}
.x7_c00089{left:156.850787pt;}
.x2f_c00089{left:157.911187pt;}
.x51_c00089{left:166.557187pt;}
.x15_c00089{left:167.564787pt;}
.x27_c00089{left:177.482387pt;}
.x8_c00089{left:187.382387pt;}
.x9_c00089{left:196.107587pt;}
.x16_c00089{left:197.194387pt;}
.x4b_c00089{left:198.127187pt;}
.x28_c00089{left:206.975587pt;}
.x3a_c00089{left:216.576387pt;}
.xa_c00089{left:226.903187pt;}
.x17_c00089{left:227.915187pt;}
.x37_c00089{left:236.477587pt;}
.x18_c00089{left:246.738387pt;}
.x29_c00089{left:256.268787pt;}
.xb_c00089{left:257.377587pt;}
.x31_c00089{left:266.899187pt;}
.xc_c00089{left:275.875187pt;}
.x20_c00089{left:284.820387pt;}
.x19_c00089{left:286.518787pt;}
.x2a_c00089{left:295.965587pt;}
.x2b_c00089{left:304.453187pt;}
.x4c_c00089{left:305.429987pt;}
.x3b_c00089{left:314.273987pt;}
.xd_c00089{left:316.236387pt;}
.x21_c00089{left:319.668387pt;}
.x22_c00089{left:325.687587pt;}
.x23_c00089{left:326.954787pt;}
.x52_c00089{left:335.961587pt;}
.x24_c00089{left:340.260387pt;}
.xe_c00089{left:345.346787pt;}
.x25_c00089{left:352.417587pt;}
.xf_c00089{left:355.554787pt;}
.x32_c00089{left:363.967587pt;}
.x3c_c00089{left:364.988387pt;}
.x30_c00089{left:374.580387pt;}
.x43_c00089{left:383.336387pt;}
.x48_c00089{left:384.401187pt;}
.x4d_c00089{left:385.364787pt;}
.x1a_c00089{left:394.551987pt;}
.x45_c00089{left:404.671987pt;}
.x33_c00089{left:423.385187pt;}
.x10_c00089{left:424.331187pt;}
.x3d_c00089{left:433.531587pt;}
.x11_c00089{left:443.620787pt;}
.x1b_c00089{left:445.301587pt;}
.x4f_c00089{left:454.409587pt;}
.x3e_c00089{left:462.179987pt;}
.x46_c00089{left:463.917987pt;}
.x34_c00089{left:472.700387pt;}
.x1c_c00089{left:482.921587pt;}
.x1d_c00089{left:493.380387pt;}
.x49_c00089{left:501.502787pt;}
.x2c_c00089{left:503.214387pt;}
.x2d_c00089{left:512.089187pt;}
.x12_c00089{left:522.200387pt;}
.x2e_c00089{left:531.259987pt;}
.x35_c00089{left:541.846387pt;}
.x47_c00089{left:552.318387pt;}
.x1e_c00089{left:561.197587pt;}
.x3f_c00089{left:571.027187pt;}
.x50_c00089{left:571.986387pt;}
.x2_c00089{left:581.098787pt;}
.x40_c00089{left:591.601587pt;}
.x1f_c00089{left:601.070387pt;}
.x55_c00089{left:603.331987pt;}
.x53_c00089{left:609.857187pt;}
.x41_c00089{left:611.199187pt;}
.x3_c00089{left:612.184787pt;}
.x4e_c00089{left:621.063987pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_49461087d569d7f594ce2329.woff2')format("woff");}.ff1_c00090{font-family:ff1_c00090;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00090;src:url('chunks/assets/font_adcb51420154f692e8b1e914.woff2')format("woff");}.ff2_c00090{font-family:ff2_c00090;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00090;src:url('chunks/assets/font_04a0843e6a8ed310f2d283fd.woff2')format("woff");}.ff3_c00090{font-family:ff3_c00090;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00090;src:url('chunks/assets/font_4f02ce983239f334ca975d3a.woff2')format("woff");}.ff4_c00090{font-family:ff4_c00090;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mac_c00090{transform:matrix(0.119852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119852,0.000000,0.000000,0.250000,0,0);}
.m36_c00090{transform:matrix(0.144145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144145,0.000000,0.000000,0.250000,0,0);}
.m2d_c00090{transform:matrix(0.214121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214121,0.000000,0.000000,0.250000,0,0);}
.m6b_c00090{transform:matrix(0.223918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223918,0.000000,0.000000,0.250000,0,0);}
.m0_c00090{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m60_c00090{transform:matrix(0.255335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255335,0.000000,0.000000,0.250000,0,0);}
.m3_c00090{transform:matrix(0.258702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258702,0.000000,0.000000,0.250000,0,0);}
.m70_c00090{transform:matrix(0.260196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260196,0.000000,0.000000,0.250000,0,0);}
.m91_c00090{transform:matrix(0.262233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262233,0.000000,0.000000,0.250000,0,0);}
.m51_c00090{transform:matrix(0.263129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263129,0.000000,0.000000,0.250000,0,0);}
.ma9_c00090{transform:matrix(0.263376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263376,0.000000,0.000000,0.250000,0,0);}
.ma_c00090{transform:matrix(0.264040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264040,0.000000,0.000000,0.250000,0,0);}
.m53_c00090{transform:matrix(0.264679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264679,0.000000,0.000000,0.250000,0,0);}
.m43_c00090{transform:matrix(0.265017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265017,0.000000,0.000000,0.250000,0,0);}
.m1_c00090{transform:matrix(0.265141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265141,0.000000,0.000000,0.250000,0,0);}
.m11_c00090{transform:matrix(0.265386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265386,0.000000,0.000000,0.250000,0,0);}
.m82_c00090{transform:matrix(0.266368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266368,0.000000,0.000000,0.250000,0,0);}
.m7e_c00090{transform:matrix(0.266919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266919,0.000000,0.000000,0.250000,0,0);}
.m27_c00090{transform:matrix(0.267721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267721,0.000000,0.000000,0.250000,0,0);}
.m79_c00090{transform:matrix(0.268319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268319,0.000000,0.000000,0.250000,0,0);}
.m9e_c00090{transform:matrix(0.269084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269084,0.000000,0.000000,0.250000,0,0);}
.m8e_c00090{transform:matrix(0.269815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269815,0.000000,0.000000,0.250000,0,0);}
.m2_c00090{transform:matrix(0.270126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270126,0.000000,0.000000,0.250000,0,0);}
.m40_c00090{transform:matrix(0.270529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270529,0.000000,0.000000,0.250000,0,0);}
.m14_c00090{transform:matrix(0.270764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270764,0.000000,0.000000,0.250000,0,0);}
.m5d_c00090{transform:matrix(0.271470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271470,0.000000,0.000000,0.250000,0,0);}
.ma7_c00090{transform:matrix(0.272670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272670,0.000000,0.000000,0.250000,0,0);}
.m3d_c00090{transform:matrix(0.273110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273110,0.000000,0.000000,0.250000,0,0);}
.m7d_c00090{transform:matrix(0.273286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273286,0.000000,0.000000,0.250000,0,0);}
.m45_c00090{transform:matrix(0.273520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273520,0.000000,0.000000,0.250000,0,0);}
.m18_c00090{transform:matrix(0.273865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273865,0.000000,0.000000,0.250000,0,0);}
.m2f_c00090{transform:matrix(0.274013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274013,0.000000,0.000000,0.250000,0,0);}
.m35_c00090{transform:matrix(0.274865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274865,0.000000,0.000000,0.250000,0,0);}
.m6c_c00090{transform:matrix(0.274909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274909,0.000000,0.000000,0.250000,0,0);}
.m64_c00090{transform:matrix(0.275578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275578,0.000000,0.000000,0.250000,0,0);}
.m48_c00090{transform:matrix(0.275909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275909,0.000000,0.000000,0.250000,0,0);}
.m9b_c00090{transform:matrix(0.276988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276988,0.000000,0.000000,0.250000,0,0);}
.m52_c00090{transform:matrix(0.277901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277901,0.000000,0.000000,0.250000,0,0);}
.m59_c00090{transform:matrix(0.279486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279486,0.000000,0.000000,0.250000,0,0);}
.m93_c00090{transform:matrix(0.279672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279672,0.000000,0.000000,0.250000,0,0);}
.m38_c00090{transform:matrix(0.281130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281130,0.000000,0.000000,0.250000,0,0);}
.m6f_c00090{transform:matrix(0.281172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281172,0.000000,0.000000,0.250000,0,0);}
.m1a_c00090{transform:matrix(0.281227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281227,0.000000,0.000000,0.250000,0,0);}
.m6_c00090{transform:matrix(0.281451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281451,0.000000,0.000000,0.250000,0,0);}
.m6d_c00090{transform:matrix(0.281843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281843,0.000000,0.000000,0.250000,0,0);}
.m92_c00090{transform:matrix(0.281936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281936,0.000000,0.000000,0.250000,0,0);}
.md_c00090{transform:matrix(0.281955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281955,0.000000,0.000000,0.250000,0,0);}
.m22_c00090{transform:matrix(0.282692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282692,0.000000,0.000000,0.250000,0,0);}
.m4d_c00090{transform:matrix(0.283479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283479,0.000000,0.000000,0.250000,0,0);}
.m80_c00090{transform:matrix(0.284421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284421,0.000000,0.000000,0.250000,0,0);}
.m1e_c00090{transform:matrix(0.285182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285182,0.000000,0.000000,0.250000,0,0);}
.m2a_c00090{transform:matrix(0.285280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285280,0.000000,0.000000,0.250000,0,0);}
.m37_c00090{transform:matrix(0.285700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285700,0.000000,0.000000,0.250000,0,0);}
.ma2_c00090{transform:matrix(0.286635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286635,0.000000,0.000000,0.250000,0,0);}
.mc_c00090{transform:matrix(0.287758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287758,0.000000,0.000000,0.250000,0,0);}
.m6e_c00090{transform:matrix(0.288038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288038,0.000000,0.000000,0.250000,0,0);}
.m46_c00090{transform:matrix(0.288190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288190,0.000000,0.000000,0.250000,0,0);}
.m1b_c00090{transform:matrix(0.288841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288841,0.000000,0.000000,0.250000,0,0);}
.m61_c00090{transform:matrix(0.289105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289105,0.000000,0.000000,0.250000,0,0);}
.m15_c00090{transform:matrix(0.289738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289738,0.000000,0.000000,0.250000,0,0);}
.m6a_c00090{transform:matrix(0.290604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290604,0.000000,0.000000,0.250000,0,0);}
.m1c_c00090{transform:matrix(0.290851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290851,0.000000,0.000000,0.250000,0,0);}
.m42_c00090{transform:matrix(0.291302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291302,0.000000,0.000000,0.250000,0,0);}
.m7_c00090{transform:matrix(0.291696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291696,0.000000,0.000000,0.250000,0,0);}
.m20_c00090{transform:matrix(0.291727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291727,0.000000,0.000000,0.250000,0,0);}
.maa_c00090{transform:matrix(0.293614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293614,0.000000,0.000000,0.250000,0,0);}
.m9d_c00090{transform:matrix(0.294359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294359,0.000000,0.000000,0.250000,0,0);}
.mf_c00090{transform:matrix(0.295171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295171,0.000000,0.000000,0.250000,0,0);}
.m94_c00090{transform:matrix(0.295552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295552,0.000000,0.000000,0.250000,0,0);}
.m90_c00090{transform:matrix(0.295703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295703,0.000000,0.000000,0.250000,0,0);}
.m56_c00090{transform:matrix(0.295863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295863,0.000000,0.000000,0.250000,0,0);}
.m3b_c00090{transform:matrix(0.296490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296490,0.000000,0.000000,0.250000,0,0);}
.m26_c00090{transform:matrix(0.297792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297792,0.000000,0.000000,0.250000,0,0);}
.m21_c00090{transform:matrix(0.298683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298683,0.000000,0.000000,0.250000,0,0);}
.m95_c00090{transform:matrix(0.298956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298956,0.000000,0.000000,0.250000,0,0);}
.m16_c00090{transform:matrix(0.298990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298990,0.000000,0.000000,0.250000,0,0);}
.m1d_c00090{transform:matrix(0.300565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300565,0.000000,0.000000,0.250000,0,0);}
.m87_c00090{transform:matrix(0.300573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300573,0.000000,0.000000,0.250000,0,0);}
.m44_c00090{transform:matrix(0.301078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301078,0.000000,0.000000,0.250000,0,0);}
.m4c_c00090{transform:matrix(0.301163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301163,0.000000,0.000000,0.250000,0,0);}
.m30_c00090{transform:matrix(0.301258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301258,0.000000,0.000000,0.250000,0,0);}
.m41_c00090{transform:matrix(0.301565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301565,0.000000,0.000000,0.250000,0,0);}
.m9c_c00090{transform:matrix(0.301650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301650,0.000000,0.000000,0.250000,0,0);}
.m96_c00090{transform:matrix(0.301682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301682,0.000000,0.000000,0.250000,0,0);}
.ma3_c00090{transform:matrix(0.302229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302229,0.000000,0.000000,0.250000,0,0);}
.m71_c00090{transform:matrix(0.302640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302640,0.000000,0.000000,0.250000,0,0);}
.m8c_c00090{transform:matrix(0.304255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304255,0.000000,0.000000,0.250000,0,0);}
.m34_c00090{transform:matrix(0.304283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304283,0.000000,0.000000,0.250000,0,0);}
.m4e_c00090{transform:matrix(0.304803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304803,0.000000,0.000000,0.250000,0,0);}
.ma1_c00090{transform:matrix(0.304812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304812,0.000000,0.000000,0.250000,0,0);}
.m66_c00090{transform:matrix(0.305305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305305,0.000000,0.000000,0.250000,0,0);}
.m4_c00090{transform:matrix(0.305510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305510,0.000000,0.000000,0.250000,0,0);}
.m75_c00090{transform:matrix(0.305866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305866,0.000000,0.000000,0.250000,0,0);}
.m5e_c00090{transform:matrix(0.306387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306387,0.000000,0.000000,0.250000,0,0);}
.m99_c00090{transform:matrix(0.306927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306927,0.000000,0.000000,0.250000,0,0);}
.m8f_c00090{transform:matrix(0.307097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307097,0.000000,0.000000,0.250000,0,0);}
.m78_c00090{transform:matrix(0.307523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307523,0.000000,0.000000,0.250000,0,0);}
.m72_c00090{transform:matrix(0.308246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308246,0.000000,0.000000,0.250000,0,0);}
.m69_c00090{transform:matrix(0.308415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308415,0.000000,0.000000,0.250000,0,0);}
.m3a_c00090{transform:matrix(0.309368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309368,0.000000,0.000000,0.250000,0,0);}
.m8a_c00090{transform:matrix(0.309645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309645,0.000000,0.000000,0.250000,0,0);}
.m7c_c00090{transform:matrix(0.310210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310210,0.000000,0.000000,0.250000,0,0);}
.m74_c00090{transform:matrix(0.310246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310246,0.000000,0.000000,0.250000,0,0);}
.mb_c00090{transform:matrix(0.310426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310426,0.000000,0.000000,0.250000,0,0);}
.m32_c00090{transform:matrix(0.310699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310699,0.000000,0.000000,0.250000,0,0);}
.m5b_c00090{transform:matrix(0.310949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310949,0.000000,0.000000,0.250000,0,0);}
.m97_c00090{transform:matrix(0.311286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311286,0.000000,0.000000,0.250000,0,0);}
.m47_c00090{transform:matrix(0.311984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311984,0.000000,0.000000,0.250000,0,0);}
.m25_c00090{transform:matrix(0.312137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312137,0.000000,0.000000,0.250000,0,0);}
.m31_c00090{transform:matrix(0.314112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314112,0.000000,0.000000,0.250000,0,0);}
.m9f_c00090{transform:matrix(0.314658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314658,0.000000,0.000000,0.250000,0,0);}
.ma4_c00090{transform:matrix(0.315486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315486,0.000000,0.000000,0.250000,0,0);}
.m68_c00090{transform:matrix(0.315955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315955,0.000000,0.000000,0.250000,0,0);}
.m8b_c00090{transform:matrix(0.316044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316044,0.000000,0.000000,0.250000,0,0);}
.m8d_c00090{transform:matrix(0.316908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316908,0.000000,0.000000,0.250000,0,0);}
.m4a_c00090{transform:matrix(0.317101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317101,0.000000,0.000000,0.250000,0,0);}
.m54_c00090{transform:matrix(0.318043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318043,0.000000,0.000000,0.250000,0,0);}
.m23_c00090{transform:matrix(0.318277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318277,0.000000,0.000000,0.250000,0,0);}
.m2c_c00090{transform:matrix(0.318632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318632,0.000000,0.000000,0.250000,0,0);}
.m76_c00090{transform:matrix(0.318722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318722,0.000000,0.000000,0.250000,0,0);}
.m24_c00090{transform:matrix(0.318782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318782,0.000000,0.000000,0.250000,0,0);}
.m2b_c00090{transform:matrix(0.319441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319441,0.000000,0.000000,0.250000,0,0);}
.m5c_c00090{transform:matrix(0.320130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320130,0.000000,0.000000,0.250000,0,0);}
.ma6_c00090{transform:matrix(0.320637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320637,0.000000,0.000000,0.250000,0,0);}
.m5f_c00090{transform:matrix(0.321602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321602,0.000000,0.000000,0.250000,0,0);}
.m7f_c00090{transform:matrix(0.321981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321981,0.000000,0.000000,0.250000,0,0);}
.ma8_c00090{transform:matrix(0.322692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322692,0.000000,0.000000,0.250000,0,0);}
.m85_c00090{transform:matrix(0.322694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322694,0.000000,0.000000,0.250000,0,0);}
.m5a_c00090{transform:matrix(0.324384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324384,0.000000,0.000000,0.250000,0,0);}
.m84_c00090{transform:matrix(0.325059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325059,0.000000,0.000000,0.250000,0,0);}
.m57_c00090{transform:matrix(0.325799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325799,0.000000,0.000000,0.250000,0,0);}
.ma0_c00090{transform:matrix(0.326323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326323,0.000000,0.000000,0.250000,0,0);}
.m62_c00090{transform:matrix(0.326475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326475,0.000000,0.000000,0.250000,0,0);}
.m88_c00090{transform:matrix(0.327398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327398,0.000000,0.000000,0.250000,0,0);}
.m83_c00090{transform:matrix(0.328132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328132,0.000000,0.000000,0.250000,0,0);}
.m73_c00090{transform:matrix(0.328146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328146,0.000000,0.000000,0.250000,0,0);}
.m55_c00090{transform:matrix(0.328554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328554,0.000000,0.000000,0.250000,0,0);}
.m13_c00090{transform:matrix(0.330109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330109,0.000000,0.000000,0.250000,0,0);}
.m33_c00090{transform:matrix(0.330171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330171,0.000000,0.000000,0.250000,0,0);}
.m3f_c00090{transform:matrix(0.330295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330295,0.000000,0.000000,0.250000,0,0);}
.m67_c00090{transform:matrix(0.331102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331102,0.000000,0.000000,0.250000,0,0);}
.m1f_c00090{transform:matrix(0.331503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331503,0.000000,0.000000,0.250000,0,0);}
.m9a_c00090{transform:matrix(0.331505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331505,0.000000,0.000000,0.250000,0,0);}
.m86_c00090{transform:matrix(0.332040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332040,0.000000,0.000000,0.250000,0,0);}
.m50_c00090{transform:matrix(0.332050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332050,0.000000,0.000000,0.250000,0,0);}
.m2e_c00090{transform:matrix(0.333327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333327,0.000000,0.000000,0.250000,0,0);}
.ma5_c00090{transform:matrix(0.334478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334478,0.000000,0.000000,0.250000,0,0);}
.m3c_c00090{transform:matrix(0.334548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334548,0.000000,0.000000,0.250000,0,0);}
.m29_c00090{transform:matrix(0.334905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334905,0.000000,0.000000,0.250000,0,0);}
.m65_c00090{transform:matrix(0.335946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335946,0.000000,0.000000,0.250000,0,0);}
.m19_c00090{transform:matrix(0.336990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336990,0.000000,0.000000,0.250000,0,0);}
.m9_c00090{transform:matrix(0.341847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341847,0.000000,0.000000,0.250000,0,0);}
.m3e_c00090{transform:matrix(0.341856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341856,0.000000,0.000000,0.250000,0,0);}
.m7b_c00090{transform:matrix(0.342013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342013,0.000000,0.000000,0.250000,0,0);}
.m49_c00090{transform:matrix(0.342177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342177,0.000000,0.000000,0.250000,0,0);}
.m63_c00090{transform:matrix(0.343758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343758,0.000000,0.000000,0.250000,0,0);}
.m4b_c00090{transform:matrix(0.344584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344584,0.000000,0.000000,0.250000,0,0);}
.me_c00090{transform:matrix(0.347585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347585,0.000000,0.000000,0.250000,0,0);}
.m28_c00090{transform:matrix(0.348072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348072,0.000000,0.000000,0.250000,0,0);}
.m17_c00090{transform:matrix(0.352173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352173,0.000000,0.000000,0.250000,0,0);}
.m5_c00090{transform:matrix(0.354209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354209,0.000000,0.000000,0.250000,0,0);}
.m10_c00090{transform:matrix(0.354679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354679,0.000000,0.000000,0.250000,0,0);}
.m39_c00090{transform:matrix(0.356372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356372,0.000000,0.000000,0.250000,0,0);}
.m8_c00090{transform:matrix(0.358352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358352,0.000000,0.000000,0.250000,0,0);}
.m58_c00090{transform:matrix(0.358405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358405,0.000000,0.000000,0.250000,0,0);}
.mab_c00090{transform:matrix(0.360125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360125,0.000000,0.000000,0.250000,0,0);}
.m7a_c00090{transform:matrix(0.363354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363354,0.000000,0.000000,0.250000,0,0);}
.m89_c00090{transform:matrix(0.364424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364424,0.000000,0.000000,0.250000,0,0);}
.m12_c00090{transform:matrix(0.364530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364530,0.000000,0.000000,0.250000,0,0);}
.m4f_c00090{transform:matrix(0.369169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369169,0.000000,0.000000,0.250000,0,0);}
.m81_c00090{transform:matrix(0.370709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370709,0.000000,0.000000,0.250000,0,0);}
.m77_c00090{transform:matrix(0.386047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386047,0.000000,0.000000,0.250000,0,0);}
.m98_c00090{transform:matrix(0.427091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427091,0.000000,0.000000,0.250000,0,0);}
.v0_c00090{vertical-align:0.000000px;}
.ls7_c00090{letter-spacing:-2.674980px;}
.lsa_c00090{letter-spacing:-2.217600px;}
.ls8_c00090{letter-spacing:-1.398632px;}
.ls3_c00090{letter-spacing:-0.924779px;}
.ls0_c00090{letter-spacing:0.000000px;}
.ls6_c00090{letter-spacing:0.076428px;}
.ls9_c00090{letter-spacing:3.630330px;}
.ls2_c00090{letter-spacing:3.821400px;}
.ls1_c00090{letter-spacing:4.197610px;}
.ls4_c00090{letter-spacing:51.321798px;}
.ls5_c00090{letter-spacing:52.747398px;}
.sc__c00090{text-shadow:none;}
.sc0_c00090{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00090{-webkit-text-stroke:0px transparent;}
.sc0_c00090{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00090{word-spacing:-19.107000px;}
.ws1_c00090{word-spacing:0.000000px;}
._4_c00090{margin-left:-15.668532px;}
._2_c00090{width:7.107804px;}
._0_c00090{width:9.553500px;}
._1_c00090{width:13.833468px;}
._3_c00090{width:36.991152px;}
.fc0_c00090{color:transparent;}
.fs7_c00090{font-size:26.928000px;}
.fs0_c00090{font-size:28.314000px;}
.fs8_c00090{font-size:30.096000px;}
.fs4_c00090{font-size:32.868000px;}
.fs9_c00090{font-size:42.372000px;}
.fs3_c00090{font-size:51.321798px;}
.fs6_c00090{font-size:52.747398px;}
.fsa_c00090{font-size:63.360000px;}
.fs2_c00090{font-size:76.428000px;}
.fs5_c00090{font-size:77.616198px;}
.fs1_c00090{font-size:83.952198px;}
.y0_c00090{bottom:0.000000px;}
.y22_c00090{bottom:16.301385px;}
.y21_c00090{bottom:29.849535px;}
.y20_c00090{bottom:55.861785px;}
.y1_c00090{bottom:76.500000px;}
.y1f_c00090{bottom:82.240335px;}
.y1e_c00090{bottom:150.669135px;}
.y1d_c00090{bottom:182.383785px;}
.y1c_c00090{bottom:215.177535px;}
.y1b_c00090{bottom:247.609935px;}
.y1a_c00090{bottom:273.627135px;}
.y19_c00090{bottom:279.324585px;}
.y18_c00090{bottom:312.113385px;}
.y17_c00090{bottom:345.614985px;}
.y16_c00090{bottom:378.047385px;}
.y15_c00090{bottom:410.836185px;}
.y14_c00090{bottom:474.993135px;}
.y2_c00090{bottom:493.525935px;}
.y13_c00090{bottom:507.420585px;}
.y12_c00090{bottom:539.145135px;}
.y11_c00090{bottom:571.572585px;}
.y10_c00090{bottom:603.648585px;}
.yf_c00090{bottom:636.437385px;}
.ye_c00090{bottom:668.874735px;}
.yd_c00090{bottom:701.307135px;}
.yc_c00090{bottom:733.739535px;}
.yb_c00090{bottom:740.154735px;}
.ya_c00090{bottom:752.267385px;}
.y9_c00090{bottom:766.884735px;}
.y8_c00090{bottom:799.317135px;}
.y7_c00090{bottom:831.388185px;}
.y6_c00090{bottom:864.538335px;}
.y5_c00090{bottom:896.257935px;}
.y4_c00090{bottom:928.690335px;}
.y3_c00090{bottom:1078.016985px;}
.h2_c00090{height:29.530617px;}
.h9_c00090{height:30.331125px;}
.h5_c00090{height:34.180317px;}
.h6_c00090{height:34.280297px;}
.h8_c00090{height:35.129767px;}
.ha_c00090{height:44.192672px;}
.hb_c00090{height:62.184375px;}
.h4_c00090{height:75.009902px;}
.h7_c00090{height:80.951269px;}
.h3_c00090{height:82.394491px;}
.h1_c00090{height:1110.000000px;}
.h0_c00090{height:1263.000000px;}
.w1_c00090{width:733.500000px;}
.w0_c00090{width:892.500000px;}
.x0_c00090{left:0.000000px;}
.x2_c00090{left:37.263135px;}
.xc_c00090{left:65.562285px;}
.x4_c00090{left:67.171035px;}
.x5f_c00090{left:68.235285px;}
.x1_c00090{left:79.500000px;}
.xd_c00090{left:88.708485px;}
.x5_c00090{left:98.692635px;}
.x23_c00090{left:99.969735px;}
.x3d_c00090{left:110.651835px;}
.x58_c00090{left:111.725985px;}
.x4b_c00090{left:121.616085px;}
.x6_c00090{left:132.976335px;}
.x2b_c00090{left:143.440635px;}
.x37_c00090{left:144.787035px;}
.x63_c00090{left:146.267085px;}
.x3e_c00090{left:152.905035px;}
.x39_c00090{left:154.474185px;}
.x52_c00090{left:156.246285px;}
.x1c_c00090{left:166.171035px;}
.x36_c00090{left:175.368135px;}
.x30_c00090{left:177.620385px;}
.x41_c00090{left:186.723435px;}
.xe_c00090{left:187.995585px;}
.x47_c00090{left:199.593435px;}
.x24_c00090{left:210.087435px;}
.x50_c00090{left:211.107135px;}
.x15_c00090{left:221.447685px;}
.x64_c00090{left:222.531735px;}
.x65_c00090{left:227.704485px;}
.x3a_c00090{left:232.897035px;}
.x59_c00090{left:233.941485px;}
.x25_c00090{left:242.668335px;}
.x7_c00090{left:243.910785px;}
.x16_c00090{left:255.295785px;}
.x53_c00090{left:267.121335px;}
.x1d_c00090{left:277.768785px;}
.xf_c00090{left:287.782635px;}
.x60_c00090{left:289.534935px;}
.x10_c00090{left:299.197335px;}
.x1e_c00090{left:308.651835px;}
.x26_c00090{left:310.557585px;}
.x17_c00090{left:320.927835px;}
.x31_c00090{left:321.947535px;}
.x8_c00090{left:331.976235px;}
.x4c_c00090{left:333.723585px;}
.x1f_c00090{left:343.252335px;}
.x32_c00090{left:354.444285px;}
.x48_c00090{left:355.488735px;}
.x18_c00090{left:364.557135px;}
.x9_c00090{left:365.819385px;}
.x4d_c00090{left:366.883635px;}
.x27_c00090{left:376.115385px;}
.x11_c00090{left:377.560785px;}
.x38_c00090{left:387.376635px;}
.x54_c00090{left:388.822035px;}
.x3b_c00090{left:397.395435px;}
.x49_c00090{left:399.311085px;}
.x42_c00090{left:409.834785px;}
.x2c_c00090{left:419.809035px;}
.x55_c00090{left:422.140485px;}
.x20_c00090{left:432.094935px;}
.x3f_c00090{left:443.489835px;}
.xa_c00090{left:454.176885px;}
.x19_c00090{left:465.636135px;}
.x66_c00090{left:466.670685px;}
.x12_c00090{left:475.961835px;}
.x67_c00090{left:477.060735px;}
.x2d_c00090{left:487.327035px;}
.x5a_c00090{left:488.416035px;}
.x28_c00090{left:498.058635px;}
.x4e_c00090{left:499.459485px;}
.x13_c00090{left:509.121885px;}
.x56_c00090{left:510.344535px;}
.x14_c00090{left:520.482135px;}
.x43_c00090{left:521.556285px;}
.x29_c00090{left:532.208685px;}
.x51_c00090{left:533.312535px;}
.x21_c00090{left:542.321535px;}
.x46_c00090{left:543.544185px;}
.x1a_c00090{left:553.963935px;}
.x5b_c00090{left:555.414285px;}
.x40_c00090{left:565.284585px;}
.x33_c00090{left:575.714235px;}
.x61_c00090{left:577.169535px;}
.x2a_c00090{left:586.604235px;}
.x5c_c00090{left:587.851635px;}
.x4a_c00090{left:597.281385px;}
.x22_c00090{left:598.489185px;}
.x34_c00090{left:608.418885px;}
.xb_c00090{left:619.234635px;}
.x3c_c00090{left:620.576085px;}
.x62_c00090{left:622.021485px;}
.x5d_c00090{left:627.684285px;}
.x2e_c00090{left:630.842385px;}
.x3_c00090{left:641.623485px;}
.x44_c00090{left:643.469835px;}
.x4f_c00090{left:654.488535px;}
.x1b_c00090{left:664.497435px;}
.x45_c00090{left:665.848785px;}
.x5e_c00090{left:676.570485px;}
.x57_c00090{left:687.287235px;}
.x68_c00090{left:688.405935px;}
.x2f_c00090{left:691.267035px;}
.x35_c00090{left:692.722335px;}
@media print{
.v0_c00090{vertical-align:0.000000pt;}
.ls7_c00090{letter-spacing:-2.377760pt;}
.lsa_c00090{letter-spacing:-1.971200pt;}
.ls8_c00090{letter-spacing:-1.243229pt;}
.ls3_c00090{letter-spacing:-0.822026pt;}
.ls0_c00090{letter-spacing:0.000000pt;}
.ls6_c00090{letter-spacing:0.067936pt;}
.ls9_c00090{letter-spacing:3.226960pt;}
.ls2_c00090{letter-spacing:3.396800pt;}
.ls1_c00090{letter-spacing:3.731209pt;}
.ls4_c00090{letter-spacing:45.619376pt;}
.ls5_c00090{letter-spacing:46.886576pt;}
.ws0_c00090{word-spacing:-16.984000pt;}
.ws1_c00090{word-spacing:0.000000pt;}
._4_c00090{margin-left:-13.927584pt;}
._2_c00090{width:6.318048pt;}
._0_c00090{width:8.492000pt;}
._1_c00090{width:12.296416pt;}
._3_c00090{width:32.881024pt;}
.fs7_c00090{font-size:23.936000pt;}
.fs0_c00090{font-size:25.168000pt;}
.fs8_c00090{font-size:26.752000pt;}
.fs4_c00090{font-size:29.216000pt;}
.fs9_c00090{font-size:37.664000pt;}
.fs3_c00090{font-size:45.619376pt;}
.fs6_c00090{font-size:46.886576pt;}
.fsa_c00090{font-size:56.320000pt;}
.fs2_c00090{font-size:67.936000pt;}
.fs5_c00090{font-size:68.992176pt;}
.fs1_c00090{font-size:74.624176pt;}
.y0_c00090{bottom:0.000000pt;}
.y22_c00090{bottom:14.490120pt;}
.y21_c00090{bottom:26.532920pt;}
.y20_c00090{bottom:49.654920pt;}
.y1_c00090{bottom:68.000000pt;}
.y1f_c00090{bottom:73.102520pt;}
.y1e_c00090{bottom:133.928120pt;}
.y1d_c00090{bottom:162.118920pt;}
.y1c_c00090{bottom:191.268920pt;}
.y1b_c00090{bottom:220.097720pt;}
.y1a_c00090{bottom:243.224120pt;}
.y19_c00090{bottom:248.288520pt;}
.y18_c00090{bottom:277.434120pt;}
.y17_c00090{bottom:307.213320pt;}
.y16_c00090{bottom:336.042120pt;}
.y15_c00090{bottom:365.187720pt;}
.y14_c00090{bottom:422.216120pt;}
.y2_c00090{bottom:438.689720pt;}
.y13_c00090{bottom:451.040520pt;}
.y12_c00090{bottom:479.240120pt;}
.y11_c00090{bottom:508.064520pt;}
.y10_c00090{bottom:536.576520pt;}
.yf_c00090{bottom:565.722120pt;}
.ye_c00090{bottom:594.555320pt;}
.yd_c00090{bottom:623.384120pt;}
.yc_c00090{bottom:652.212920pt;}
.yb_c00090{bottom:657.915320pt;}
.ya_c00090{bottom:668.682120pt;}
.y9_c00090{bottom:681.675320pt;}
.y8_c00090{bottom:710.504120pt;}
.y7_c00090{bottom:739.011720pt;}
.y6_c00090{bottom:768.478520pt;}
.y5_c00090{bottom:796.673720pt;}
.y4_c00090{bottom:825.502520pt;}
.y3_c00090{bottom:958.237320pt;}
.h2_c00090{height:26.249438pt;}
.h9_c00090{height:26.961000pt;}
.h5_c00090{height:30.382504pt;}
.h6_c00090{height:30.471375pt;}
.h8_c00090{height:31.226460pt;}
.ha_c00090{height:39.282375pt;}
.hb_c00090{height:55.275000pt;}
.h4_c00090{height:66.675469pt;}
.h7_c00090{height:71.956684pt;}
.h3_c00090{height:73.239548pt;}
.h1_c00090{height:986.666667pt;}
.h0_c00090{height:1122.666667pt;}
.w1_c00090{width:652.000000pt;}
.w0_c00090{width:793.333333pt;}
.x0_c00090{left:0.000000pt;}
.x2_c00090{left:33.122787pt;}
.xc_c00090{left:58.277587pt;}
.x4_c00090{left:59.707587pt;}
.x5f_c00090{left:60.653587pt;}
.x1_c00090{left:70.666667pt;}
.xd_c00090{left:78.851987pt;}
.x5_c00090{left:87.726787pt;}
.x23_c00090{left:88.861987pt;}
.x3d_c00090{left:98.357187pt;}
.x58_c00090{left:99.311987pt;}
.x4b_c00090{left:108.103187pt;}
.x6_c00090{left:118.201187pt;}
.x2b_c00090{left:127.502787pt;}
.x37_c00090{left:128.699587pt;}
.x63_c00090{left:130.015187pt;}
.x3e_c00090{left:135.915587pt;}
.x39_c00090{left:137.310387pt;}
.x52_c00090{left:138.885587pt;}
.x1c_c00090{left:147.707587pt;}
.x36_c00090{left:155.882787pt;}
.x30_c00090{left:157.884787pt;}
.x41_c00090{left:165.976387pt;}
.xe_c00090{left:167.107187pt;}
.x47_c00090{left:177.416387pt;}
.x24_c00090{left:186.744387pt;}
.x50_c00090{left:187.650787pt;}
.x15_c00090{left:196.842387pt;}
.x64_c00090{left:197.805987pt;}
.x65_c00090{left:202.403987pt;}
.x3a_c00090{left:207.019587pt;}
.x59_c00090{left:207.947987pt;}
.x25_c00090{left:215.705187pt;}
.x7_c00090{left:216.809587pt;}
.x16_c00090{left:226.929587pt;}
.x53_c00090{left:237.441187pt;}
.x1d_c00090{left:246.905587pt;}
.xf_c00090{left:255.806787pt;}
.x60_c00090{left:257.364387pt;}
.x10_c00090{left:265.953187pt;}
.x1e_c00090{left:274.357187pt;}
.x26_c00090{left:276.051187pt;}
.x17_c00090{left:285.269187pt;}
.x31_c00090{left:286.175587pt;}
.x8_c00090{left:295.089987pt;}
.x4c_c00090{left:296.643187pt;}
.x1f_c00090{left:305.113187pt;}
.x32_c00090{left:315.061587pt;}
.x48_c00090{left:315.989987pt;}
.x18_c00090{left:324.050787pt;}
.x9_c00090{left:325.172787pt;}
.x4d_c00090{left:326.118787pt;}
.x27_c00090{left:334.324787pt;}
.x11_c00090{left:335.609587pt;}
.x38_c00090{left:344.334787pt;}
.x54_c00090{left:345.619587pt;}
.x3b_c00090{left:353.240387pt;}
.x49_c00090{left:354.943187pt;}
.x42_c00090{left:364.297587pt;}
.x2c_c00090{left:373.163587pt;}
.x55_c00090{left:375.235987pt;}
.x20_c00090{left:384.084387pt;}
.x3f_c00090{left:394.213187pt;}
.xa_c00090{left:403.712787pt;}
.x19_c00090{left:413.898787pt;}
.x66_c00090{left:414.818387pt;}
.x12_c00090{left:423.077187pt;}
.x67_c00090{left:424.053987pt;}
.x2d_c00090{left:433.179587pt;}
.x5a_c00090{left:434.147587pt;}
.x28_c00090{left:442.718787pt;}
.x4e_c00090{left:443.963987pt;}
.x13_c00090{left:452.552787pt;}
.x56_c00090{left:453.639587pt;}
.x14_c00090{left:462.650787pt;}
.x43_c00090{left:463.605587pt;}
.x29_c00090{left:473.074387pt;}
.x51_c00090{left:474.055587pt;}
.x21_c00090{left:482.063587pt;}
.x46_c00090{left:483.150387pt;}
.x1a_c00090{left:492.412387pt;}
.x5b_c00090{left:493.701587pt;}
.x40_c00090{left:502.475187pt;}
.x33_c00090{left:511.745987pt;}
.x61_c00090{left:513.039587pt;}
.x2a_c00090{left:521.425987pt;}
.x5c_c00090{left:522.534787pt;}
.x4a_c00090{left:530.916787pt;}
.x22_c00090{left:531.990387pt;}
.x34_c00090{left:540.816787pt;}
.xb_c00090{left:550.430787pt;}
.x3c_c00090{left:551.623187pt;}
.x62_c00090{left:552.907987pt;}
.x5d_c00090{left:557.941587pt;}
.x2e_c00090{left:560.748787pt;}
.x3_c00090{left:570.331987pt;}
.x44_c00090{left:571.973187pt;}
.x4f_c00090{left:581.767587pt;}
.x1b_c00090{left:590.664387pt;}
.x45_c00090{left:591.865587pt;}
.x5e_c00090{left:601.395987pt;}
.x57_c00090{left:610.921987pt;}
.x68_c00090{left:611.916387pt;}
.x2f_c00090{left:614.459587pt;}
.x35_c00090{left:615.753187pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7fe0a6ab83dc3ccbe2b6bbe2.woff2')format("woff");}.ff1_c00091{font-family:ff1_c00091;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00091;src:url('chunks/assets/font_674bdc0233e5239e2857cf4c.woff2')format("woff");}.ff2_c00091{font-family:ff2_c00091;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00091;src:url('chunks/assets/font_cae6870d2b68943e79c0be4f.woff2')format("woff");}.ff3_c00091{font-family:ff3_c00091;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00091;src:url('chunks/assets/font_768a7ded1c2d3e2d46fedb6f.woff2')format("woff");}.ff4_c00091{font-family:ff4_c00091;line-height:0.666000;font-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_c00091{transform:matrix(0.064103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064103,0.000000,0.000000,0.250000,0,0);}
.mad_c00091{transform:matrix(0.106718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106718,0.000000,0.000000,0.250000,0,0);}
.m59_c00091{transform:matrix(0.131072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131072,0.000000,0.000000,0.250000,0,0);}
.mae_c00091{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);}
.m3_c00091{transform:matrix(0.163600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163600,0.000000,0.000000,0.250000,0,0);}
.m9c_c00091{transform:matrix(0.189103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189103,0.000000,0.000000,0.250000,0,0);}
.m64_c00091{transform:matrix(0.192568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192568,0.000000,0.000000,0.250000,0,0);}
.m6c_c00091{transform:matrix(0.215534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215534,0.000000,0.000000,0.250000,0,0);}
.m26_c00091{transform:matrix(0.222348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222348,0.000000,0.000000,0.250000,0,0);}
.m58_c00091{transform:matrix(0.224364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224364,0.000000,0.000000,0.250000,0,0);}
.m30_c00091{transform:matrix(0.230210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230210,0.000000,0.000000,0.250000,0,0);}
.m69_c00091{transform:matrix(0.232318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232318,0.000000,0.000000,0.250000,0,0);}
.m82_c00091{transform:matrix(0.236169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236169,0.000000,0.000000,0.250000,0,0);}
.m68_c00091{transform:matrix(0.245621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245621,0.000000,0.000000,0.250000,0,0);}
.m1_c00091{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m36_c00091{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.m9e_c00091{transform:matrix(0.255030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255030,0.000000,0.000000,0.250000,0,0);}
.m4e_c00091{transform:matrix(0.257917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257917,0.000000,0.000000,0.250000,0,0);}
.m49_c00091{transform:matrix(0.257987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257987,0.000000,0.000000,0.250000,0,0);}
.m90_c00091{transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);}
.m0_c00091{transform:matrix(0.260231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260231,0.000000,0.000000,0.250000,0,0);}
.m1a_c00091{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m71_c00091{transform:matrix(0.262646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262646,0.000000,0.000000,0.250000,0,0);}
.m25_c00091{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m3c_c00091{transform:matrix(0.263698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263698,0.000000,0.000000,0.250000,0,0);}
.ma6_c00091{transform:matrix(0.263916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263916,0.000000,0.000000,0.250000,0,0);}
.m5c_c00091{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m73_c00091{transform:matrix(0.266653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266653,0.000000,0.000000,0.250000,0,0);}
.m39_c00091{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.m99_c00091{transform:matrix(0.266949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266949,0.000000,0.000000,0.250000,0,0);}
.m2_c00091{transform:matrix(0.267040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267040,0.000000,0.000000,0.250000,0,0);}
.m38_c00091{transform:matrix(0.267904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267904,0.000000,0.000000,0.250000,0,0);}
.m28_c00091{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.maa_c00091{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.m6a_c00091{transform:matrix(0.269273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269273,0.000000,0.000000,0.250000,0,0);}
.m4c_c00091{transform:matrix(0.270056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270056,0.000000,0.000000,0.250000,0,0);}
.m47_c00091{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m2a_c00091{transform:matrix(0.272255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272255,0.000000,0.000000,0.250000,0,0);}
.mf_c00091{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.ma9_c00091{transform:matrix(0.272571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272571,0.000000,0.000000,0.250000,0,0);}
.m7_c00091{transform:matrix(0.273619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273619,0.000000,0.000000,0.250000,0,0);}
.m9f_c00091{transform:matrix(0.273774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273774,0.000000,0.000000,0.250000,0,0);}
.mab_c00091{transform:matrix(0.273938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273938,0.000000,0.000000,0.250000,0,0);}
.m27_c00091{transform:matrix(0.275291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275291,0.000000,0.000000,0.250000,0,0);}
.m32_c00091{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m65_c00091{transform:matrix(0.276360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276360,0.000000,0.000000,0.250000,0,0);}
.m60_c00091{transform:matrix(0.277513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277513,0.000000,0.000000,0.250000,0,0);}
.m86_c00091{transform:matrix(0.277893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277893,0.000000,0.000000,0.250000,0,0);}
.m62_c00091{transform:matrix(0.277967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277967,0.000000,0.000000,0.250000,0,0);}
.m31_c00091{transform:matrix(0.278158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278158,0.000000,0.000000,0.250000,0,0);}
.m13_c00091{transform:matrix(0.278485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278485,0.000000,0.000000,0.250000,0,0);}
.m4_c00091{transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);}
.m22_c00091{transform:matrix(0.279794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279794,0.000000,0.000000,0.250000,0,0);}
.m67_c00091{transform:matrix(0.279838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279838,0.000000,0.000000,0.250000,0,0);}
.mb_c00091{transform:matrix(0.280105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280105,0.000000,0.000000,0.250000,0,0);}
.m92_c00091{transform:matrix(0.280113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280113,0.000000,0.000000,0.250000,0,0);}
.m66_c00091{transform:matrix(0.280783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280783,0.000000,0.000000,0.250000,0,0);}
.m7c_c00091{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.m7e_c00091{transform:matrix(0.282896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282896,0.000000,0.000000,0.250000,0,0);}
.m56_c00091{transform:matrix(0.283189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283189,0.000000,0.000000,0.250000,0,0);}
.m33_c00091{transform:matrix(0.284116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284116,0.000000,0.000000,0.250000,0,0);}
.m5d_c00091{transform:matrix(0.284987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284987,0.000000,0.000000,0.250000,0,0);}
.m55_c00091{transform:matrix(0.285552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285552,0.000000,0.000000,0.250000,0,0);}
.m21_c00091{transform:matrix(0.285568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285568,0.000000,0.000000,0.250000,0,0);}
.m6f_c00091{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);}
.m6d_c00091{transform:matrix(0.287458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287458,0.000000,0.000000,0.250000,0,0);}
.m72_c00091{transform:matrix(0.288481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288481,0.000000,0.000000,0.250000,0,0);}
.m48_c00091{transform:matrix(0.288865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288865,0.000000,0.000000,0.250000,0,0);}
.m1d_c00091{transform:matrix(0.289075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289075,0.000000,0.000000,0.250000,0,0);}
.m5_c00091{transform:matrix(0.289616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289616,0.000000,0.000000,0.250000,0,0);}
.m96_c00091{transform:matrix(0.289643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289643,0.000000,0.000000,0.250000,0,0);}
.m76_c00091{transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);}
.m2e_c00091{transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);}
.m85_c00091{transform:matrix(0.290680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290680,0.000000,0.000000,0.250000,0,0);}
.m8a_c00091{transform:matrix(0.290975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290975,0.000000,0.000000,0.250000,0,0);}
.m7a_c00091{transform:matrix(0.291725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291725,0.000000,0.000000,0.250000,0,0);}
.m50_c00091{transform:matrix(0.292061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292061,0.000000,0.000000,0.250000,0,0);}
.m9a_c00091{transform:matrix(0.292127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292127,0.000000,0.000000,0.250000,0,0);}
.md_c00091{transform:matrix(0.292520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292520,0.000000,0.000000,0.250000,0,0);}
.mc_c00091{transform:matrix(0.292619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292619,0.000000,0.000000,0.250000,0,0);}
.m91_c00091{transform:matrix(0.292854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292854,0.000000,0.000000,0.250000,0,0);}
.m5f_c00091{transform:matrix(0.292914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292914,0.000000,0.000000,0.250000,0,0);}
.m2f_c00091{transform:matrix(0.292987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292987,0.000000,0.000000,0.250000,0,0);}
.m37_c00091{transform:matrix(0.293220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293220,0.000000,0.000000,0.250000,0,0);}
.m15_c00091{transform:matrix(0.293949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293949,0.000000,0.000000,0.250000,0,0);}
.m7d_c00091{transform:matrix(0.294644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294644,0.000000,0.000000,0.250000,0,0);}
.m1c_c00091{transform:matrix(0.294852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294852,0.000000,0.000000,0.250000,0,0);}
.m4f_c00091{transform:matrix(0.295385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295385,0.000000,0.000000,0.250000,0,0);}
.m17_c00091{transform:matrix(0.295540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295540,0.000000,0.000000,0.250000,0,0);}
.me_c00091{transform:matrix(0.296261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296261,0.000000,0.000000,0.250000,0,0);}
.m70_c00091{transform:matrix(0.296504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296504,0.000000,0.000000,0.250000,0,0);}
.m7f_c00091{transform:matrix(0.296695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296695,0.000000,0.000000,0.250000,0,0);}
.m1b_c00091{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m3f_c00091{transform:matrix(0.297758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297758,0.000000,0.000000,0.250000,0,0);}
.m3d_c00091{transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);}
.m10_c00091{transform:matrix(0.298193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298193,0.000000,0.000000,0.250000,0,0);}
.m5e_c00091{transform:matrix(0.298326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298326,0.000000,0.000000,0.250000,0,0);}
.m7b_c00091{transform:matrix(0.298624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298624,0.000000,0.000000,0.250000,0,0);}
.m6e_c00091{transform:matrix(0.299192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299192,0.000000,0.000000,0.250000,0,0);}
.m8d_c00091{transform:matrix(0.299448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299448,0.000000,0.000000,0.250000,0,0);}
.m8f_c00091{transform:matrix(0.299520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299520,0.000000,0.000000,0.250000,0,0);}
.m97_c00091{transform:matrix(0.299896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299896,0.000000,0.000000,0.250000,0,0);}
.ma2_c00091{transform:matrix(0.300742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300742,0.000000,0.000000,0.250000,0,0);}
.m75_c00091{transform:matrix(0.301206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301206,0.000000,0.000000,0.250000,0,0);}
.ma7_c00091{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m2d_c00091{transform:matrix(0.302492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302492,0.000000,0.000000,0.250000,0,0);}
.m4d_c00091{transform:matrix(0.304044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304044,0.000000,0.000000,0.250000,0,0);}
.m79_c00091{transform:matrix(0.304071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304071,0.000000,0.000000,0.250000,0,0);}
.m3a_c00091{transform:matrix(0.304539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304539,0.000000,0.000000,0.250000,0,0);}
.m11_c00091{transform:matrix(0.304881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304881,0.000000,0.000000,0.250000,0,0);}
.m12_c00091{transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);}
.m44_c00091{transform:matrix(0.305233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305233,0.000000,0.000000,0.250000,0,0);}
.m3e_c00091{transform:matrix(0.305468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305468,0.000000,0.000000,0.250000,0,0);}
.m63_c00091{transform:matrix(0.305789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305789,0.000000,0.000000,0.250000,0,0);}
.m94_c00091{transform:matrix(0.307305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307305,0.000000,0.000000,0.250000,0,0);}
.m6_c00091{transform:matrix(0.307689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307689,0.000000,0.000000,0.250000,0,0);}
.ma_c00091{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.ma0_c00091{transform:matrix(0.309770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309770,0.000000,0.000000,0.250000,0,0);}
.m45_c00091{transform:matrix(0.310012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310012,0.000000,0.000000,0.250000,0,0);}
.m5a_c00091{transform:matrix(0.310082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310082,0.000000,0.000000,0.250000,0,0);}
.m78_c00091{transform:matrix(0.310202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310202,0.000000,0.000000,0.250000,0,0);}
.m8_c00091{transform:matrix(0.311260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311260,0.000000,0.000000,0.250000,0,0);}
.m89_c00091{transform:matrix(0.311568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311568,0.000000,0.000000,0.250000,0,0);}
.m88_c00091{transform:matrix(0.313301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313301,0.000000,0.000000,0.250000,0,0);}
.m16_c00091{transform:matrix(0.313379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313379,0.000000,0.000000,0.250000,0,0);}
.m95_c00091{transform:matrix(0.313822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313822,0.000000,0.000000,0.250000,0,0);}
.m43_c00091{transform:matrix(0.314368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314368,0.000000,0.000000,0.250000,0,0);}
.m98_c00091{transform:matrix(0.314815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314815,0.000000,0.000000,0.250000,0,0);}
.m3b_c00091{transform:matrix(0.315515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315515,0.000000,0.000000,0.250000,0,0);}
.m18_c00091{transform:matrix(0.316182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316182,0.000000,0.000000,0.250000,0,0);}
.m24_c00091{transform:matrix(0.316622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316622,0.000000,0.000000,0.250000,0,0);}
.m19_c00091{transform:matrix(0.316729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316729,0.000000,0.000000,0.250000,0,0);}
.m84_c00091{transform:matrix(0.317925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317925,0.000000,0.000000,0.250000,0,0);}
.m74_c00091{transform:matrix(0.318082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318082,0.000000,0.000000,0.250000,0,0);}
.m35_c00091{transform:matrix(0.318314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318314,0.000000,0.000000,0.250000,0,0);}
.m2b_c00091{transform:matrix(0.318552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318552,0.000000,0.000000,0.250000,0,0);}
.m1f_c00091{transform:matrix(0.319700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319700,0.000000,0.000000,0.250000,0,0);}
.mac_c00091{transform:matrix(0.320780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320780,0.000000,0.000000,0.250000,0,0);}
.m81_c00091{transform:matrix(0.320864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320864,0.000000,0.000000,0.250000,0,0);}
.m34_c00091{transform:matrix(0.321492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321492,0.000000,0.000000,0.250000,0,0);}
.m4b_c00091{transform:matrix(0.321922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321922,0.000000,0.000000,0.250000,0,0);}
.m2c_c00091{transform:matrix(0.323207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323207,0.000000,0.000000,0.250000,0,0);}
.ma1_c00091{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.ma3_c00091{transform:matrix(0.323811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323811,0.000000,0.000000,0.250000,0,0);}
.m51_c00091{transform:matrix(0.324586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324586,0.000000,0.000000,0.250000,0,0);}
.ma8_c00091{transform:matrix(0.325357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325357,0.000000,0.000000,0.250000,0,0);}
.m20_c00091{transform:matrix(0.325633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325633,0.000000,0.000000,0.250000,0,0);}
.ma5_c00091{transform:matrix(0.326049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326049,0.000000,0.000000,0.250000,0,0);}
.m5b_c00091{transform:matrix(0.326563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326563,0.000000,0.000000,0.250000,0,0);}
.m6b_c00091{transform:matrix(0.326908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326908,0.000000,0.000000,0.250000,0,0);}
.m8e_c00091{transform:matrix(0.327456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327456,0.000000,0.000000,0.250000,0,0);}
.ma4_c00091{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.m8b_c00091{transform:matrix(0.327464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327464,0.000000,0.000000,0.250000,0,0);}
.m4a_c00091{transform:matrix(0.329092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329092,0.000000,0.000000,0.250000,0,0);}
.m77_c00091{transform:matrix(0.331554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331554,0.000000,0.000000,0.250000,0,0);}
.m87_c00091{transform:matrix(0.337410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337410,0.000000,0.000000,0.250000,0,0);}
.m9b_c00091{transform:matrix(0.338565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338565,0.000000,0.000000,0.250000,0,0);}
.m29_c00091{transform:matrix(0.339183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339183,0.000000,0.000000,0.250000,0,0);}
.m23_c00091{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m46_c00091{transform:matrix(0.339459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339459,0.000000,0.000000,0.250000,0,0);}
.m52_c00091{transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);}
.m40_c00091{transform:matrix(0.342184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342184,0.000000,0.000000,0.250000,0,0);}
.m57_c00091{transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);}
.m54_c00091{transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);}
.m14_c00091{transform:matrix(0.348286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348286,0.000000,0.000000,0.250000,0,0);}
.m80_c00091{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m41_c00091{transform:matrix(0.349656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349656,0.000000,0.000000,0.250000,0,0);}
.m1e_c00091{transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);}
.m8c_c00091{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m53_c00091{transform:matrix(0.360964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360964,0.000000,0.000000,0.250000,0,0);}
.m83_c00091{transform:matrix(0.371972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371972,0.000000,0.000000,0.250000,0,0);}
.m93_c00091{transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);}
.m9_c00091{transform:matrix(0.409469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409469,0.000000,0.000000,0.250000,0,0);}
.m42_c00091{transform:matrix(0.421909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421909,0.000000,0.000000,0.250000,0,0);}
.m61_c00091{transform:matrix(0.432348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432348,0.000000,0.000000,0.250000,0,0);}
.v0_c00091{vertical-align:0.000000px;}
.lsc_c00091{letter-spacing:-3.659040px;}
.ls5_c00091{letter-spacing:-2.744280px;}
.ls16_c00091{letter-spacing:-2.259180px;}
.lsd_c00091{letter-spacing:-2.009700px;}
.ls9_c00091{letter-spacing:-1.897474px;}
.ls3_c00091{letter-spacing:0.000000px;}
.ls1_c00091{letter-spacing:0.305791px;}
.ls11_c00091{letter-spacing:0.423403px;}
.ls12_c00091{letter-spacing:0.556697px;}
.ls8_c00091{letter-spacing:0.580219px;}
.ls6_c00091{letter-spacing:0.933055px;}
.ls14_c00091{letter-spacing:1.685772px;}
.ls10_c00091{letter-spacing:2.132698px;}
.ls13_c00091{letter-spacing:2.618827px;}
.lsb_c00091{letter-spacing:3.042230px;}
.ls0_c00091{letter-spacing:3.128479px;}
.lsa_c00091{letter-spacing:3.442111px;}
.ls7_c00091{letter-spacing:3.606768px;}
.ls4_c00091{letter-spacing:3.920400px;}
.lsf_c00091{letter-spacing:3.969900px;}
.ls2_c00091{letter-spacing:4.276810px;}
.ls17_c00091{letter-spacing:31.363200px;}
.lse_c00091{letter-spacing:52.747398px;}
.ls15_c00091{letter-spacing:55.598598px;}
.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;}
}
.ws2_c00091{word-spacing:-27.720000px;}
.ws1_c00091{word-spacing:-22.730479px;}
.ws3_c00091{word-spacing:-19.907791px;}
.ws0_c00091{word-spacing:-19.602000px;}
.ws4_c00091{word-spacing:0.000000px;}
._5_c00091{margin-left:-26.722080px;}
._4_c00091{margin-left:-25.280640px;}
._0_c00091{width:6.037416px;}
._6_c00091{width:7.166491px;}
._1_c00091{width:22.267872px;}
._3_c00091{width:26.658720px;}
._2_c00091{width:35.440416px;}
.fc0_c00091{color:transparent;}
.fs2_c00091{font-size:22.176000px;}
.fs1_c00091{font-size:27.720000px;}
.fs10_c00091{font-size:31.363200px;}
.fsf_c00091{font-size:32.868000px;}
.fsc_c00091{font-size:33.264000px;}
.fs11_c00091{font-size:39.204000px;}
.fsa_c00091{font-size:52.747398px;}
.fsb_c00091{font-size:55.598598px;}
.fs8_c00091{font-size:57.420000px;}
.fsd_c00091{font-size:64.548000px;}
.fs6_c00091{font-size:69.696198px;}
.fs5_c00091{font-size:71.280000px;}
.fse_c00091{font-size:72.864000px;}
.fs3_c00091{font-size:78.408000px;}
.fs4_c00091{font-size:79.398000px;}
.fs0_c00091{font-size:85.536198px;}
.fs7_c00091{font-size:104.544000px;}
.fs9_c00091{font-size:110.880000px;}
.y0_c00091{bottom:0.000000px;}
.y1e_c00091{bottom:63.702585px;}
.y1d_c00091{bottom:72.261135px;}
.y1_c00091{bottom:76.500000px;}
.y22_c00091{bottom:92.219535px;}
.y21_c00091{bottom:102.911535px;}
.y20_c00091{bottom:113.603535px;}
.y1f_c00091{bottom:126.077535px;}
.y1c_c00091{bottom:158.153535px;}
.y1b_c00091{bottom:189.873135px;}
.y1a_c00091{bottom:223.018335px;}
.y19_c00091{bottom:254.737935px;}
.y18_c00091{bottom:286.452585px;}
.y17_c00091{bottom:318.889935px;}
.y16_c00091{bottom:351.322335px;}
.y15_c00091{bottom:383.749785px;}
.y14_c00091{bottom:415.469385px;}
.y13_c00091{bottom:448.619535px;}
.y12_c00091{bottom:479.977785px;}
.y11_c00091{bottom:512.766585px;}
.y10_c00091{bottom:539.852985px;}
.yf_c00091{bottom:544.847535px;}
.ye_c00091{bottom:576.918585px;}
.yd_c00091{bottom:675.997785px;}
.yc_c00091{bottom:708.786585px;}
.yb_c00091{bottom:741.575385px;}
.ya_c00091{bottom:774.364185px;}
.y9_c00091{bottom:806.445135px;}
.y8_c00091{bottom:838.516185px;}
.y7_c00091{bottom:870.948585px;}
.y6_c00091{bottom:903.380985px;}
.y5_c00091{bottom:935.818335px;}
.y4_c00091{bottom:949.005135px;}
.y3_c00091{bottom:1045.584585px;}
.y2_c00091{bottom:1085.144985px;}
.h12_c00091{height:20.887891px;}
.h4_c00091{height:23.128875px;}
.h3_c00091{height:28.911094px;}
.h11_c00091{height:34.280297px;}
.he_c00091{height:34.693313px;}
.hc_c00091{height:35.129767px;}
.hd_c00091{height:37.028666px;}
.h13_c00091{height:38.476582px;}
.ha_c00091{height:56.354590px;}
.hf_c00091{height:67.321547px;}
.h7_c00091{height:69.957422px;}
.h10_c00091{height:71.512031px;}
.h8_c00091{height:72.554831px;}
.h5_c00091{height:76.953164px;}
.h6_c00091{height:77.924795px;}
.h2_c00091{height:83.949101px;}
.hb_c00091{height:108.822656px;}
.h9_c00091{height:109.036125px;}
.h1_c00091{height:1110.000000px;}
.h0_c00091{height:1263.000000px;}
.w1_c00091{width:733.500000px;}
.w0_c00091{width:892.500000px;}
.x0_c00091{left:0.000000px;}
.x1e_c00091{left:62.874435px;}
.x5_c00091{left:64.300035px;}
.x5a_c00091{left:65.750385px;}
.x1_c00091{left:79.500000px;}
.x16_c00091{left:85.669185px;}
.x41_c00091{left:96.425535px;}
.x6_c00091{left:97.539285px;}
.x7_c00091{left:107.285835px;}
.x52_c00091{left:108.483735px;}
.x24_c00091{left:118.487685px;}
.x25_c00091{left:128.640135px;}
.x42_c00091{left:129.887535px;}
.x2b_c00091{left:140.104335px;}
.x8_c00091{left:141.886335px;}
.x44_c00091{left:151.276485px;}
.x12_c00091{left:152.315985px;}
.x4_c00091{left:172.071435px;}
.x17_c00091{left:173.303985px;}
.x32_c00091{left:174.432585px;}
.x2c_c00091{left:183.778185px;}
.x9_c00091{left:185.129535px;}
.x49_c00091{left:187.203585px;}
.x36_c00091{left:195.093885px;}
.x1f_c00091{left:207.038235px;}
.x45_c00091{left:216.953085px;}
.x58_c00091{left:218.601435px;}
.x18_c00091{left:228.897435px;}
.x53_c00091{left:230.040885px;}
.x26_c00091{left:240.020085px;}
.x50_c00091{left:241.059585px;}
.xa_c00091{left:251.513985px;}
.x3f_c00091{left:256.756035px;}
.x4a_c00091{left:263.156385px;}
.x27_c00091{left:273.556335px;}
.x40_c00091{left:277.491585px;}
.xb_c00091{left:284.649285px;}
.x19_c00091{left:295.598685px;}
.x20_c00091{left:317.888535px;}
.x3b_c00091{left:329.125035px;}
.x1a_c00091{left:340.480335px;}
.x48_c00091{left:350.271435px;}
.x2d_c00091{left:351.899985px;}
.x3_c00091{left:353.454285px;}
.x3c_c00091{left:361.983135px;}
.x2f_c00091{left:372.873135px;}
.xc_c00091{left:374.026485px;}
.x2e_c00091{left:384.990735px;}
.xd_c00091{left:395.291685px;}
.x13_c00091{left:407.137035px;}
.x1b_c00091{left:417.329085px;}
.x37_c00091{left:418.526985px;}
.x5b_c00091{left:423.645285px;}
.x59_c00091{left:428.134935px;}
.x28_c00091{left:429.238785px;}
.xe_c00091{left:439.529835px;}
.x21_c00091{left:442.390935px;}
.x33_c00091{left:450.251535px;}
.x38_c00091{left:451.335585px;}
.x46_c00091{left:462.324585px;}
.xf_c00091{left:472.363185px;}
.x4b_c00091{left:473.417535px;}
.x39_c00091{left:483.743235px;}
.x47_c00091{left:495.548985px;}
.x51_c00091{left:504.988635px;}
.x10_c00091{left:516.685485px;}
.x29_c00091{left:527.803185px;}
.x55_c00091{left:534.109485px;}
.x56_c00091{left:535.990485px;}
.x30_c00091{left:538.559535px;}
.x3d_c00091{left:539.930685px;}
.x14_c00091{left:550.058385px;}
.x4c_c00091{left:551.132535px;}
.x4e_c00091{left:559.913835px;}
.x3e_c00091{left:562.180935px;}
.x34_c00091{left:571.640385px;}
.x22_c00091{left:572.813535px;}
.x43_c00091{left:583.238235px;}
.x31_c00091{left:593.004585px;}
.x15_c00091{left:594.296535px;}
.x23_c00091{left:605.320185px;}
.x4f_c00091{left:616.690335px;}
.x1c_c00091{left:628.451535px;}
.x2_c00091{left:639.128685px;}
.x3a_c00091{left:650.518635px;}
.x35_c00091{left:660.750285px;}
.x57_c00091{left:662.210535px;}
.x11_c00091{left:671.075985px;}
.x2a_c00091{left:672.140235px;}
.x1d_c00091{left:683.351985px;}
.x4d_c00091{left:685.143885px;}
.x5c_c00091{left:686.614035px;}
.x5d_c00091{left:691.133385px;}
.x5e_c00091{left:692.692635px;}
.x54_c00091{left:694.043985px;}
.x5f_c00091{left:695.548785px;}
@media print{
.v0_c00091{vertical-align:0.000000pt;}
.lsc_c00091{letter-spacing:-3.252480pt;}
.ls5_c00091{letter-spacing:-2.439360pt;}
.ls16_c00091{letter-spacing:-2.008160pt;}
.lsd_c00091{letter-spacing:-1.786400pt;}
.ls9_c00091{letter-spacing:-1.686643pt;}
.ls3_c00091{letter-spacing:0.000000pt;}
.ls1_c00091{letter-spacing:0.271814pt;}
.ls11_c00091{letter-spacing:0.376358pt;}
.ls12_c00091{letter-spacing:0.494842pt;}
.ls8_c00091{letter-spacing:0.515750pt;}
.ls6_c00091{letter-spacing:0.829382pt;}
.ls14_c00091{letter-spacing:1.498464pt;}
.ls10_c00091{letter-spacing:1.895731pt;}
.ls13_c00091{letter-spacing:2.327846pt;}
.lsb_c00091{letter-spacing:2.704205pt;}
.ls0_c00091{letter-spacing:2.780870pt;}
.lsa_c00091{letter-spacing:3.059654pt;}
.ls7_c00091{letter-spacing:3.206016pt;}
.ls4_c00091{letter-spacing:3.484800pt;}
.lsf_c00091{letter-spacing:3.528800pt;}
.ls2_c00091{letter-spacing:3.801609pt;}
.ls17_c00091{letter-spacing:27.878400pt;}
.lse_c00091{letter-spacing:46.886576pt;}
.ls15_c00091{letter-spacing:49.420976pt;}
.ws2_c00091{word-spacing:-24.640000pt;}
.ws1_c00091{word-spacing:-20.204870pt;}
.ws3_c00091{word-spacing:-17.695814pt;}
.ws0_c00091{word-spacing:-17.424000pt;}
.ws4_c00091{word-spacing:0.000000pt;}
._5_c00091{margin-left:-23.752960pt;}
._4_c00091{margin-left:-22.471680pt;}
._0_c00091{width:5.366592pt;}
._6_c00091{width:6.370214pt;}
._1_c00091{width:19.793664pt;}
._3_c00091{width:23.696640pt;}
._2_c00091{width:31.502592pt;}
.fs2_c00091{font-size:19.712000pt;}
.fs1_c00091{font-size:24.640000pt;}
.fs10_c00091{font-size:27.878400pt;}
.fsf_c00091{font-size:29.216000pt;}
.fsc_c00091{font-size:29.568000pt;}
.fs11_c00091{font-size:34.848000pt;}
.fsa_c00091{font-size:46.886576pt;}
.fsb_c00091{font-size:49.420976pt;}
.fs8_c00091{font-size:51.040000pt;}
.fsd_c00091{font-size:57.376000pt;}
.fs6_c00091{font-size:61.952176pt;}
.fs5_c00091{font-size:63.360000pt;}
.fse_c00091{font-size:64.768000pt;}
.fs3_c00091{font-size:69.696000pt;}
.fs4_c00091{font-size:70.576000pt;}
.fs0_c00091{font-size:76.032176pt;}
.fs7_c00091{font-size:92.928000pt;}
.fs9_c00091{font-size:98.560000pt;}
.y0_c00091{bottom:0.000000pt;}
.y1e_c00091{bottom:56.624520pt;}
.y1d_c00091{bottom:64.232120pt;}
.y1_c00091{bottom:68.000000pt;}
.y22_c00091{bottom:81.972920pt;}
.y21_c00091{bottom:91.476920pt;}
.y20_c00091{bottom:100.980920pt;}
.y1f_c00091{bottom:112.068920pt;}
.y1c_c00091{bottom:140.580920pt;}
.y1b_c00091{bottom:168.776120pt;}
.y1a_c00091{bottom:198.238520pt;}
.y19_c00091{bottom:226.433720pt;}
.y18_c00091{bottom:254.624520pt;}
.y17_c00091{bottom:283.457720pt;}
.y16_c00091{bottom:312.286520pt;}
.y15_c00091{bottom:341.110920pt;}
.y14_c00091{bottom:369.306120pt;}
.y13_c00091{bottom:398.772920pt;}
.y12_c00091{bottom:426.646920pt;}
.y11_c00091{bottom:455.792520pt;}
.y10_c00091{bottom:479.869320pt;}
.yf_c00091{bottom:484.308920pt;}
.ye_c00091{bottom:512.816520pt;}
.yd_c00091{bottom:600.886920pt;}
.yc_c00091{bottom:630.032520pt;}
.yb_c00091{bottom:659.178120pt;}
.ya_c00091{bottom:688.323720pt;}
.y9_c00091{bottom:716.840120pt;}
.y8_c00091{bottom:745.347720pt;}
.y7_c00091{bottom:774.176520pt;}
.y6_c00091{bottom:803.005320pt;}
.y5_c00091{bottom:831.838520pt;}
.y4_c00091{bottom:843.560120pt;}
.y3_c00091{bottom:929.408520pt;}
.y2_c00091{bottom:964.573320pt;}
.h12_c00091{height:18.567014pt;}
.h4_c00091{height:20.559000pt;}
.h3_c00091{height:25.698750pt;}
.h11_c00091{height:30.471375pt;}
.he_c00091{height:30.838500pt;}
.hc_c00091{height:31.226460pt;}
.hd_c00091{height:32.914370pt;}
.h13_c00091{height:34.201406pt;}
.ha_c00091{height:50.092969pt;}
.hf_c00091{height:59.841375pt;}
.h7_c00091{height:62.184375pt;}
.h10_c00091{height:63.566250pt;}
.h8_c00091{height:64.493183pt;}
.h5_c00091{height:68.402813pt;}
.h6_c00091{height:69.266484pt;}
.h2_c00091{height:74.621423pt;}
.hb_c00091{height:96.731250pt;}
.h9_c00091{height:96.921000pt;}
.h1_c00091{height:986.666667pt;}
.h0_c00091{height:1122.666667pt;}
.w1_c00091{width:652.000000pt;}
.w0_c00091{width:793.333333pt;}
.x0_c00091{left:0.000000pt;}
.x1e_c00091{left:55.888387pt;}
.x5_c00091{left:57.155587pt;}
.x5a_c00091{left:58.444787pt;}
.x1_c00091{left:70.666667pt;}
.x16_c00091{left:76.150387pt;}
.x41_c00091{left:85.711587pt;}
.x6_c00091{left:86.701587pt;}
.x7_c00091{left:95.365187pt;}
.x52_c00091{left:96.429987pt;}
.x24_c00091{left:105.322387pt;}
.x25_c00091{left:114.346787pt;}
.x42_c00091{left:115.455587pt;}
.x2b_c00091{left:124.537187pt;}
.x8_c00091{left:126.121187pt;}
.x44_c00091{left:134.467987pt;}
.x12_c00091{left:135.391987pt;}
.x4_c00091{left:152.952387pt;}
.x17_c00091{left:154.047987pt;}
.x32_c00091{left:155.051187pt;}
.x2c_c00091{left:163.358387pt;}
.x9_c00091{left:164.559587pt;}
.x49_c00091{left:166.403187pt;}
.x36_c00091{left:173.416787pt;}
.x1f_c00091{left:184.033987pt;}
.x45_c00091{left:192.847187pt;}
.x58_c00091{left:194.312387pt;}
.x18_c00091{left:203.464387pt;}
.x53_c00091{left:204.480787pt;}
.x26_c00091{left:213.351187pt;}
.x50_c00091{left:214.275187pt;}
.xa_c00091{left:223.567987pt;}
.x3f_c00091{left:228.227587pt;}
.x4a_c00091{left:233.916787pt;}
.x27_c00091{left:243.161187pt;}
.x40_c00091{left:246.659187pt;}
.xb_c00091{left:253.021587pt;}
.x19_c00091{left:262.754387pt;}
.x20_c00091{left:282.567587pt;}
.x3b_c00091{left:292.555587pt;}
.x1a_c00091{left:302.649187pt;}
.x48_c00091{left:311.352387pt;}
.x2d_c00091{left:312.799987pt;}
.x3_c00091{left:314.181587pt;}
.x3c_c00091{left:321.762787pt;}
.x2f_c00091{left:331.442787pt;}
.xc_c00091{left:332.467987pt;}
.x2e_c00091{left:342.213987pt;}
.xd_c00091{left:351.370387pt;}
.x13_c00091{left:361.899587pt;}
.x1b_c00091{left:370.959187pt;}
.x37_c00091{left:372.023987pt;}
.x5b_c00091{left:376.573587pt;}
.x59_c00091{left:380.564387pt;}
.x28_c00091{left:381.545587pt;}
.xe_c00091{left:390.693187pt;}
.x21_c00091{left:393.236387pt;}
.x33_c00091{left:400.223587pt;}
.x38_c00091{left:401.187187pt;}
.x46_c00091{left:410.955187pt;}
.xf_c00091{left:419.878387pt;}
.x4b_c00091{left:420.815587pt;}
.x39_c00091{left:429.993987pt;}
.x47_c00091{left:440.487987pt;}
.x51_c00091{left:448.878787pt;}
.x10_c00091{left:459.275987pt;}
.x29_c00091{left:469.158387pt;}
.x55_c00091{left:474.763987pt;}
.x56_c00091{left:476.435987pt;}
.x30_c00091{left:478.719587pt;}
.x3d_c00091{left:479.938387pt;}
.x14_c00091{left:488.940787pt;}
.x4c_c00091{left:489.895587pt;}
.x4e_c00091{left:497.701187pt;}
.x3e_c00091{left:499.716387pt;}
.x34_c00091{left:508.124787pt;}
.x22_c00091{left:509.167587pt;}
.x43_c00091{left:518.433987pt;}
.x31_c00091{left:527.115187pt;}
.x15_c00091{left:528.263587pt;}
.x23_c00091{left:538.062387pt;}
.x4f_c00091{left:548.169187pt;}
.x1c_c00091{left:558.623587pt;}
.x2_c00091{left:568.114387pt;}
.x3a_c00091{left:578.238787pt;}
.x35_c00091{left:587.333587pt;}
.x57_c00091{left:588.631587pt;}
.x11_c00091{left:596.511987pt;}
.x2a_c00091{left:597.457987pt;}
.x1d_c00091{left:607.423987pt;}
.x4d_c00091{left:609.016787pt;}
.x5c_c00091{left:610.323587pt;}
.x5d_c00091{left:614.340787pt;}
.x5e_c00091{left:615.726787pt;}
.x54_c00091{left:616.927987pt;}
.x5f_c00091{left:618.265587pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_52a4a820dd7a78d28b4126b8.woff2')format("woff");}.ff1_c00092{font-family:ff1_c00092;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00092;src:url('chunks/assets/font_c96e640d30c3f72a3d2f0b51.woff2')format("woff");}.ff2_c00092{font-family:ff2_c00092;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00092;src:url('chunks/assets/font_d04bcf60e5ba5fbdc6df757d.woff2')format("woff");}.ff3_c00092{font-family:ff3_c00092;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00092;src:url('chunks/assets/font_f7667c9dd9ab93e9ffd64e28.woff2')format("woff");}.ff4_c00092{font-family:ff4_c00092;line-height:0.666000;font-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_c00092{transform:matrix(0.146945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146945,0.000000,0.000000,0.250000,0,0);}
.m7c_c00092{transform:matrix(0.155621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155621,0.000000,0.000000,0.250000,0,0);}
.m76_c00092{transform:matrix(0.192105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192105,0.000000,0.000000,0.250000,0,0);}
.m85_c00092{transform:matrix(0.222973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222973,0.000000,0.000000,0.250000,0,0);}
.m4_c00092{transform:matrix(0.228279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228279,0.000000,0.000000,0.250000,0,0);}
.m72_c00092{transform:matrix(0.229621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229621,0.000000,0.000000,0.250000,0,0);}
.m8d_c00092{transform:matrix(0.231887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231887,0.000000,0.000000,0.250000,0,0);}
.m87_c00092{transform:matrix(0.242175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242175,0.000000,0.000000,0.250000,0,0);}
.m48_c00092{transform:matrix(0.243363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243363,0.000000,0.000000,0.250000,0,0);}
.m99_c00092{transform:matrix(0.244373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244373,0.000000,0.000000,0.250000,0,0);}
.m7b_c00092{transform:matrix(0.247378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247378,0.000000,0.000000,0.250000,0,0);}
.m9c_c00092{transform:matrix(0.249040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249040,0.000000,0.000000,0.250000,0,0);}
.m6_c00092{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m55_c00092{transform:matrix(0.250020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250020,0.000000,0.000000,0.250000,0,0);}
.me_c00092{transform:matrix(0.251205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251205,0.000000,0.000000,0.250000,0,0);}
.m5f_c00092{transform:matrix(0.251247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251247,0.000000,0.000000,0.250000,0,0);}
.m3c_c00092{transform:matrix(0.251626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251626,0.000000,0.000000,0.250000,0,0);}
.m7a_c00092{transform:matrix(0.251953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251953,0.000000,0.000000,0.250000,0,0);}
.m50_c00092{transform:matrix(0.254484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254484,0.000000,0.000000,0.250000,0,0);}
.m9b_c00092{transform:matrix(0.254514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254514,0.000000,0.000000,0.250000,0,0);}
.m26_c00092{transform:matrix(0.255101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255101,0.000000,0.000000,0.250000,0,0);}
.m95_c00092{transform:matrix(0.256119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256119,0.000000,0.000000,0.250000,0,0);}
.m5c_c00092{transform:matrix(0.256801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256801,0.000000,0.000000,0.250000,0,0);}
.m36_c00092{transform:matrix(0.256819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256819,0.000000,0.000000,0.250000,0,0);}
.m4e_c00092{transform:matrix(0.257425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257425,0.000000,0.000000,0.250000,0,0);}
.m33_c00092{transform:matrix(0.257617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257617,0.000000,0.000000,0.250000,0,0);}
.m6b_c00092{transform:matrix(0.258022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258022,0.000000,0.000000,0.250000,0,0);}
.m4d_c00092{transform:matrix(0.259656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259656,0.000000,0.000000,0.250000,0,0);}
.m6e_c00092{transform:matrix(0.260318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260318,0.000000,0.000000,0.250000,0,0);}
.m14_c00092{transform:matrix(0.261325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261325,0.000000,0.000000,0.250000,0,0);}
.m43_c00092{transform:matrix(0.261331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261331,0.000000,0.000000,0.250000,0,0);}
.m73_c00092{transform:matrix(0.261937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261937,0.000000,0.000000,0.250000,0,0);}
.m3b_c00092{transform:matrix(0.261939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261939,0.000000,0.000000,0.250000,0,0);}
.ma0_c00092{transform:matrix(0.262002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262002,0.000000,0.000000,0.250000,0,0);}
.m6d_c00092{transform:matrix(0.262740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262740,0.000000,0.000000,0.250000,0,0);}
.ma4_c00092{transform:matrix(0.263023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263023,0.000000,0.000000,0.250000,0,0);}
.m1c_c00092{transform:matrix(0.263210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263210,0.000000,0.000000,0.250000,0,0);}
.md_c00092{transform:matrix(0.263658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263658,0.000000,0.000000,0.250000,0,0);}
.m44_c00092{transform:matrix(0.263704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263704,0.000000,0.000000,0.250000,0,0);}
.ma1_c00092{transform:matrix(0.264211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264211,0.000000,0.000000,0.250000,0,0);}
.m13_c00092{transform:matrix(0.264517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264517,0.000000,0.000000,0.250000,0,0);}
.m17_c00092{transform:matrix(0.265289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265289,0.000000,0.000000,0.250000,0,0);}
.m2b_c00092{transform:matrix(0.265830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265830,0.000000,0.000000,0.250000,0,0);}
.m0_c00092{transform:matrix(0.266146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266146,0.000000,0.000000,0.250000,0,0);}
.m38_c00092{transform:matrix(0.266276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266276,0.000000,0.000000,0.250000,0,0);}
.m1b_c00092{transform:matrix(0.266708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266708,0.000000,0.000000,0.250000,0,0);}
.m97_c00092{transform:matrix(0.266860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266860,0.000000,0.000000,0.250000,0,0);}
.m6c_c00092{transform:matrix(0.267010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267010,0.000000,0.000000,0.250000,0,0);}
.m8a_c00092{transform:matrix(0.267100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267100,0.000000,0.000000,0.250000,0,0);}
.m35_c00092{transform:matrix(0.267894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267894,0.000000,0.000000,0.250000,0,0);}
.m84_c00092{transform:matrix(0.267956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267956,0.000000,0.000000,0.250000,0,0);}
.m60_c00092{transform:matrix(0.268506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268506,0.000000,0.000000,0.250000,0,0);}
.m9a_c00092{transform:matrix(0.269678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269678,0.000000,0.000000,0.250000,0,0);}
.m83_c00092{transform:matrix(0.271779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271779,0.000000,0.000000,0.250000,0,0);}
.m56_c00092{transform:matrix(0.272219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272219,0.000000,0.000000,0.250000,0,0);}
.m63_c00092{transform:matrix(0.272515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272515,0.000000,0.000000,0.250000,0,0);}
.m9_c00092{transform:matrix(0.272859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272859,0.000000,0.000000,0.250000,0,0);}
.m96_c00092{transform:matrix(0.273307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273307,0.000000,0.000000,0.250000,0,0);}
.ma6_c00092{transform:matrix(0.273322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273322,0.000000,0.000000,0.250000,0,0);}
.m8f_c00092{transform:matrix(0.273940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273940,0.000000,0.000000,0.250000,0,0);}
.m9f_c00092{transform:matrix(0.274264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274264,0.000000,0.000000,0.250000,0,0);}
.m6f_c00092{transform:matrix(0.274889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274889,0.000000,0.000000,0.250000,0,0);}
.mc_c00092{transform:matrix(0.275264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275264,0.000000,0.000000,0.250000,0,0);}
.ma5_c00092{transform:matrix(0.275575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275575,0.000000,0.000000,0.250000,0,0);}
.m41_c00092{transform:matrix(0.276143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276143,0.000000,0.000000,0.250000,0,0);}
.ma7_c00092{transform:matrix(0.276424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276424,0.000000,0.000000,0.250000,0,0);}
.m52_c00092{transform:matrix(0.277095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277095,0.000000,0.000000,0.250000,0,0);}
.ma2_c00092{transform:matrix(0.277542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277542,0.000000,0.000000,0.250000,0,0);}
.m74_c00092{transform:matrix(0.277853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277853,0.000000,0.000000,0.250000,0,0);}
.ma3_c00092{transform:matrix(0.278248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278248,0.000000,0.000000,0.250000,0,0);}
.m3a_c00092{transform:matrix(0.279810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279810,0.000000,0.000000,0.250000,0,0);}
.m91_c00092{transform:matrix(0.280044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280044,0.000000,0.000000,0.250000,0,0);}
.ma_c00092{transform:matrix(0.280440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280440,0.000000,0.000000,0.250000,0,0);}
.ma8_c00092{transform:matrix(0.280817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280817,0.000000,0.000000,0.250000,0,0);}
.m20_c00092{transform:matrix(0.280949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280949,0.000000,0.000000,0.250000,0,0);}
.m6a_c00092{transform:matrix(0.281415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281415,0.000000,0.000000,0.250000,0,0);}
.m40_c00092{transform:matrix(0.281493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281493,0.000000,0.000000,0.250000,0,0);}
.m7_c00092{transform:matrix(0.282212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282212,0.000000,0.000000,0.250000,0,0);}
.m71_c00092{transform:matrix(0.282317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282317,0.000000,0.000000,0.250000,0,0);}
.m4a_c00092{transform:matrix(0.282591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282591,0.000000,0.000000,0.250000,0,0);}
.m2a_c00092{transform:matrix(0.282655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282655,0.000000,0.000000,0.250000,0,0);}
.m79_c00092{transform:matrix(0.283321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283321,0.000000,0.000000,0.250000,0,0);}
.m69_c00092{transform:matrix(0.283537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283537,0.000000,0.000000,0.250000,0,0);}
.m67_c00092{transform:matrix(0.284380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284380,0.000000,0.000000,0.250000,0,0);}
.m98_c00092{transform:matrix(0.284688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284688,0.000000,0.000000,0.250000,0,0);}
.m5b_c00092{transform:matrix(0.285809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285809,0.000000,0.000000,0.250000,0,0);}
.m5d_c00092{transform:matrix(0.286063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286063,0.000000,0.000000,0.250000,0,0);}
.m1a_c00092{transform:matrix(0.286325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286325,0.000000,0.000000,0.250000,0,0);}
.m3d_c00092{transform:matrix(0.286744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286744,0.000000,0.000000,0.250000,0,0);}
.m1d_c00092{transform:matrix(0.286894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286894,0.000000,0.000000,0.250000,0,0);}
.m18_c00092{transform:matrix(0.286943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286943,0.000000,0.000000,0.250000,0,0);}
.m8b_c00092{transform:matrix(0.287655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287655,0.000000,0.000000,0.250000,0,0);}
.m47_c00092{transform:matrix(0.287696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287696,0.000000,0.000000,0.250000,0,0);}
.m88_c00092{transform:matrix(0.288304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288304,0.000000,0.000000,0.250000,0,0);}
.m45_c00092{transform:matrix(0.288447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288447,0.000000,0.000000,0.250000,0,0);}
.m46_c00092{transform:matrix(0.289788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289788,0.000000,0.000000,0.250000,0,0);}
.m4b_c00092{transform:matrix(0.289988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289988,0.000000,0.000000,0.250000,0,0);}
.m28_c00092{transform:matrix(0.290416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290416,0.000000,0.000000,0.250000,0,0);}
.m27_c00092{transform:matrix(0.291679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291679,0.000000,0.000000,0.250000,0,0);}
.m15_c00092{transform:matrix(0.292550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292550,0.000000,0.000000,0.250000,0,0);}
.m9d_c00092{transform:matrix(0.293184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293184,0.000000,0.000000,0.250000,0,0);}
.m5a_c00092{transform:matrix(0.294038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294038,0.000000,0.000000,0.250000,0,0);}
.m2_c00092{transform:matrix(0.294214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294214,0.000000,0.000000,0.250000,0,0);}
.m2d_c00092{transform:matrix(0.294703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294703,0.000000,0.000000,0.250000,0,0);}
.m61_c00092{transform:matrix(0.294814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294814,0.000000,0.000000,0.250000,0,0);}
.m5e_c00092{transform:matrix(0.294963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294963,0.000000,0.000000,0.250000,0,0);}
.m23_c00092{transform:matrix(0.295022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295022,0.000000,0.000000,0.250000,0,0);}
.m7f_c00092{transform:matrix(0.295053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295053,0.000000,0.000000,0.250000,0,0);}
.m49_c00092{transform:matrix(0.295216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295216,0.000000,0.000000,0.250000,0,0);}
.m39_c00092{transform:matrix(0.295424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295424,0.000000,0.000000,0.250000,0,0);}
.m37_c00092{transform:matrix(0.296299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296299,0.000000,0.000000,0.250000,0,0);}
.m3_c00092{transform:matrix(0.296504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296504,0.000000,0.000000,0.250000,0,0);}
.m2f_c00092{transform:matrix(0.296629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296629,0.000000,0.000000,0.250000,0,0);}
.m64_c00092{transform:matrix(0.296969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296969,0.000000,0.000000,0.250000,0,0);}
.m62_c00092{transform:matrix(0.297584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297584,0.000000,0.000000,0.250000,0,0);}
.mf_c00092{transform:matrix(0.297596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297596,0.000000,0.000000,0.250000,0,0);}
.m42_c00092{transform:matrix(0.297631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297631,0.000000,0.000000,0.250000,0,0);}
.m2c_c00092{transform:matrix(0.297742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297742,0.000000,0.000000,0.250000,0,0);}
.m94_c00092{transform:matrix(0.297997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297997,0.000000,0.000000,0.250000,0,0);}
.m10_c00092{transform:matrix(0.298102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298102,0.000000,0.000000,0.250000,0,0);}
.m11_c00092{transform:matrix(0.299520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299520,0.000000,0.000000,0.250000,0,0);}
.m4f_c00092{transform:matrix(0.301373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301373,0.000000,0.000000,0.250000,0,0);}
.m1_c00092{transform:matrix(0.301688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301688,0.000000,0.000000,0.250000,0,0);}
.m68_c00092{transform:matrix(0.303546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303546,0.000000,0.000000,0.250000,0,0);}
.m30_c00092{transform:matrix(0.304086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304086,0.000000,0.000000,0.250000,0,0);}
.m59_c00092{transform:matrix(0.305847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305847,0.000000,0.000000,0.250000,0,0);}
.m32_c00092{transform:matrix(0.306990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306990,0.000000,0.000000,0.250000,0,0);}
.m54_c00092{transform:matrix(0.307201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307201,0.000000,0.000000,0.250000,0,0);}
.m21_c00092{transform:matrix(0.307456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307456,0.000000,0.000000,0.250000,0,0);}
.m93_c00092{transform:matrix(0.308136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308136,0.000000,0.000000,0.250000,0,0);}
.m1f_c00092{transform:matrix(0.310147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310147,0.000000,0.000000,0.250000,0,0);}
.m4c_c00092{transform:matrix(0.310705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310705,0.000000,0.000000,0.250000,0,0);}
.m65_c00092{transform:matrix(0.311618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311618,0.000000,0.000000,0.250000,0,0);}
.m24_c00092{transform:matrix(0.313083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313083,0.000000,0.000000,0.250000,0,0);}
.m51_c00092{transform:matrix(0.314505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314505,0.000000,0.000000,0.250000,0,0);}
.m25_c00092{transform:matrix(0.315448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315448,0.000000,0.000000,0.250000,0,0);}
.m80_c00092{transform:matrix(0.316437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316437,0.000000,0.000000,0.250000,0,0);}
.m90_c00092{transform:matrix(0.317150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317150,0.000000,0.000000,0.250000,0,0);}
.m8c_c00092{transform:matrix(0.317874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317874,0.000000,0.000000,0.250000,0,0);}
.m70_c00092{transform:matrix(0.318275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318275,0.000000,0.000000,0.250000,0,0);}
.m9e_c00092{transform:matrix(0.318704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318704,0.000000,0.000000,0.250000,0,0);}
.m89_c00092{transform:matrix(0.319020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319020,0.000000,0.000000,0.250000,0,0);}
.m1e_c00092{transform:matrix(0.319107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319107,0.000000,0.000000,0.250000,0,0);}
.m3e_c00092{transform:matrix(0.320439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320439,0.000000,0.000000,0.250000,0,0);}
.m58_c00092{transform:matrix(0.321454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321454,0.000000,0.000000,0.250000,0,0);}
.m19_c00092{transform:matrix(0.322237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322237,0.000000,0.000000,0.250000,0,0);}
.m2e_c00092{transform:matrix(0.325016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325016,0.000000,0.000000,0.250000,0,0);}
.m57_c00092{transform:matrix(0.326401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326401,0.000000,0.000000,0.250000,0,0);}
.m75_c00092{transform:matrix(0.326885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326885,0.000000,0.000000,0.250000,0,0);}
.m16_c00092{transform:matrix(0.327133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327133,0.000000,0.000000,0.250000,0,0);}
.m12_c00092{transform:matrix(0.327533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327533,0.000000,0.000000,0.250000,0,0);}
.m31_c00092{transform:matrix(0.328070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328070,0.000000,0.000000,0.250000,0,0);}
.m29_c00092{transform:matrix(0.328996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328996,0.000000,0.000000,0.250000,0,0);}
.m86_c00092{transform:matrix(0.329087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329087,0.000000,0.000000,0.250000,0,0);}
.m22_c00092{transform:matrix(0.330539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330539,0.000000,0.000000,0.250000,0,0);}
.m82_c00092{transform:matrix(0.330590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330590,0.000000,0.000000,0.250000,0,0);}
.m5_c00092{transform:matrix(0.330925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330925,0.000000,0.000000,0.250000,0,0);}
.m92_c00092{transform:matrix(0.333325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333325,0.000000,0.000000,0.250000,0,0);}
.m8_c00092{transform:matrix(0.334253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334253,0.000000,0.000000,0.250000,0,0);}
.m7e_c00092{transform:matrix(0.334825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334825,0.000000,0.000000,0.250000,0,0);}
.m77_c00092{transform:matrix(0.336724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336724,0.000000,0.000000,0.250000,0,0);}
.m66_c00092{transform:matrix(0.336835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336835,0.000000,0.000000,0.250000,0,0);}
.m34_c00092{transform:matrix(0.337967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337967,0.000000,0.000000,0.250000,0,0);}
.m7d_c00092{transform:matrix(0.346256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346256,0.000000,0.000000,0.250000,0,0);}
.m53_c00092{transform:matrix(0.347283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347283,0.000000,0.000000,0.250000,0,0);}
.m8e_c00092{transform:matrix(0.368990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368990,0.000000,0.000000,0.250000,0,0);}
.mb_c00092{transform:matrix(0.370070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370070,0.000000,0.000000,0.250000,0,0);}
.m3f_c00092{transform:matrix(0.375943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375943,0.000000,0.000000,0.250000,0,0);}
.m81_c00092{transform:matrix(0.383861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383861,0.000000,0.000000,0.250000,0,0);}
.v0_c00092{vertical-align:0.000000px;}
.v1_c00092{vertical-align:7.128000px;}
.ls3_c00092{letter-spacing:-3.035340px;}
.lsb_c00092{letter-spacing:-2.813580px;}
.ls8_c00092{letter-spacing:-1.062270px;}
.lsc_c00092{letter-spacing:-0.651143px;}
.ls5_c00092{letter-spacing:0.000000px;}
.ls12_c00092{letter-spacing:1.061122px;}
.lsd_c00092{letter-spacing:1.205820px;}
.ls6_c00092{letter-spacing:1.672070px;}
.ls10_c00092{letter-spacing:2.017739px;}
.ls9_c00092{letter-spacing:2.765347px;}
.lse_c00092{letter-spacing:2.829658px;}
.ls4_c00092{letter-spacing:3.400412px;}
.ls11_c00092{letter-spacing:3.425400px;}
.ls0_c00092{letter-spacing:3.866663px;}
.ls7_c00092{letter-spacing:3.960000px;}
.ls2_c00092{letter-spacing:4.019400px;}
.ls14_c00092{letter-spacing:4.078810px;}
.ls1_c00092{letter-spacing:4.276810px;}
.lsa_c00092{letter-spacing:4.494610px;}
.ls13_c00092{letter-spacing:52.747398px;}
.lsf_c00092{letter-spacing:54.172998px;}
.sc__c00092{text-shadow:none;}
.sc0_c00092{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00092{-webkit-text-stroke:0px transparent;}
.sc0_c00092{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00092{word-spacing:-22.926658px;}
.ws1_c00092{word-spacing:0.000000px;}
._5_c00092{margin-left:-2.733192px;}
._2_c00092{width:3.262961px;}
._4_c00092{width:13.907124px;}
._3_c00092{width:14.954148px;}
._1_c00092{width:53.406034px;}
._0_c00092{width:359.686800px;}
.fc0_c00092{color:transparent;}
.fs6_c00092{font-size:27.720000px;}
.fsd_c00092{font-size:33.264000px;}
.fs5_c00092{font-size:37.026198px;}
.fs3_c00092{font-size:49.104000px;}
.fsf_c00092{font-size:52.747398px;}
.fsc_c00092{font-size:54.172998px;}
.fs4_c00092{font-size:66.330000px;}
.fse_c00092{font-size:68.508000px;}
.fs8_c00092{font-size:73.260000px;}
.fsb_c00092{font-size:74.844000px;}
.fsa_c00092{font-size:78.804000px;}
.fs7_c00092{font-size:79.200000px;}
.fs1_c00092{font-size:80.388000px;}
.fs10_c00092{font-size:81.576198px;}
.fs0_c00092{font-size:85.536198px;}
.fs2_c00092{font-size:86.724000px;}
.fs9_c00092{font-size:89.892198px;}
.y0_c00092{bottom:0.000000px;}
.y21_c00092{bottom:17.370585px;}
.y1_c00092{bottom:76.500000px;}
.y20_c00092{bottom:151.025535px;}
.y1f_c00092{bottom:183.096585px;}
.y1e_c00092{bottom:214.464735px;}
.y1d_c00092{bottom:246.184335px;}
.y1c_c00092{bottom:277.547535px;}
.y1b_c00092{bottom:308.910735px;}
.y1a_c00092{bottom:333.495207px;}
.y19_c00092{bottom:340.630335px;}
.y18_c00092{bottom:371.280735px;}
.y17_c00092{bottom:404.064585px;}
.y16_c00092{bottom:435.789135px;}
.y15_c00092{bottom:467.860185px;}
.y14_c00092{bottom:499.223385px;}
.y13_c00092{bottom:530.591535px;}
.y12_c00092{bottom:562.306185px;}
.y11_c00092{bottom:593.669385px;}
.y10_c00092{bottom:625.032585px;}
.yf_c00092{bottom:656.400735px;}
.ye_c00092{bottom:687.763935px;}
.yd_c00092{bottom:718.770735px;}
.yc_c00092{bottom:750.490335px;}
.yb_c00092{bottom:812.860335px;}
.ya_c00092{bottom:844.218585px;}
.y9_c00092{bottom:875.581785px;}
.y8_c00092{bottom:888.768585px;}
.y7_c00092{bottom:905.519385px;}
.y6_c00092{bottom:907.301385px;}
.y5_c00092{bottom:933.318585px;}
.y3_c00092{bottom:937.600335px;}
.y4_c00092{bottom:938.669535px;}
.y2_c00092{bottom:1065.547935px;}
.h8_c00092{height:28.911094px;}
.hf_c00092{height:34.693313px;}
.h11_c00092{height:35.129767px;}
.he_c00092{height:36.079217px;}
.h5_c00092{height:49.487625px;}
.h10_c00092{height:67.236855px;}
.h6_c00092{height:69.180117px;}
.hd_c00092{height:73.455293px;}
.h7_c00092{height:76.308117px;}
.ha_c00092{height:76.407891px;}
.hc_c00092{height:77.341816px;}
.h9_c00092{height:77.730469px;}
.h3_c00092{height:78.896426px;}
.h12_c00092{height:80.062577px;}
.h2_c00092{height:83.949101px;}
.h4_c00092{height:85.114863px;}
.hb_c00092{height:88.224276px;}
.h1_c00092{height:1110.000000px;}
.h0_c00092{height:1263.000000px;}
.w1_c00092{width:733.500000px;}
.w0_c00092{width:892.500000px;}
.x0_c00092{left:0.000000px;}
.x1d_c00092{left:70.185585px;}
.x3_c00092{left:71.358735px;}
.x55_c00092{left:72.680385px;}
.x64_c00092{left:74.190135px;}
.x1_c00092{left:79.500000px;}
.x17_c00092{left:103.677285px;}
.xe_c00092{left:104.909835px;}
.x65_c00092{left:106.335435px;}
.x4_c00092{left:115.611735px;}
.x25_c00092{left:125.749335px;}
.x5a_c00092{left:128.783685px;}
.x2c_c00092{left:137.352135px;}
.x56_c00092{left:149.494485px;}
.x68_c00092{left:150.835935px;}
.x26_c00092{left:159.448935px;}
.x5_c00092{left:160.498335px;}
.x60_c00092{left:161.542785px;}
.x18_c00092{left:169.611285px;}
.x51_c00092{left:183.293085px;}
.x1e_c00092{left:192.084285px;}
.x3b_c00092{left:194.039535px;}
.x46_c00092{left:195.618585px;}
.x27_c00092{left:203.107935px;}
.x4a_c00092{left:204.691935px;}
.xf_c00092{left:213.775185px;}
.x2d_c00092{left:215.750235px;}
.x1f_c00092{left:226.120485px;}
.x40_c00092{left:227.184735px;}
.x10_c00092{left:237.163935px;}
.x33_c00092{left:239.233035px;}
.x16_c00092{left:244.395885px;}
.x6_c00092{left:248.662785px;}
.x52_c00092{left:250.276485px;}
.x37_c00092{left:259.958685px;}
.x5b_c00092{left:260.988285px;}
.x20_c00092{left:271.348635px;}
.x66_c00092{left:272.724735px;}
.x7_c00092{left:282.347535px;}
.x53_c00092{left:283.842435px;}
.x41_c00092{left:292.920735px;}
.x61_c00092{left:294.064185px;}
.x2e_c00092{left:304.172085px;}
.x47_c00092{left:305.473935px;}
.x8_c00092{left:313.547385px;}
.x34_c00092{left:315.185835px;}
.x57_c00092{left:316.621335px;}
.x11_c00092{left:324.531435px;}
.x4b_c00092{left:326.333235px;}
.x5c_c00092{left:327.704385px;}
.x28_c00092{left:336.946035px;}
.x69_c00092{left:339.787335px;}
.x48_c00092{left:350.048685px;}
.xd_c00092{left:355.800585px;}
.x38_c00092{left:359.592285px;}
.x21_c00092{left:360.765435px;}
.x19_c00092{left:371.462385px;}
.x5d_c00092{left:372.942435px;}
.x9_c00092{left:382.025685px;}
.x39_c00092{left:383.278035px;}
.x22_c00092{left:393.227535px;}
.x12_c00092{left:403.934385px;}
.x35_c00092{left:405.038235px;}
.x67_c00092{left:406.448985px;}
.x29_c00092{left:415.675785px;}
.x4e_c00092{left:417.071685px;}
.x42_c00092{left:426.719235px;}
.x36_c00092{left:437.629035px;}
.x13_c00092{left:449.103135px;}
.x62_c00092{left:450.622785px;}
.x2f_c00092{left:460.250535px;}
.xa_c00092{left:469.868385px;}
.x4c_c00092{left:471.125685px;}
.x3a_c00092{left:484.084785px;}
.x23_c00092{left:493.064085px;}
.x2a_c00092{left:494.113485px;}
.x63_c00092{left:495.841035px;}
.x58_c00092{left:503.602635px;}
.x3c_c00092{left:506.404335px;}
.x1a_c00092{left:514.606485px;}
.xb_c00092{left:515.839035px;}
.x24_c00092{left:526.575585px;}
.x30_c00092{left:538.604085px;}
.x14_c00092{left:548.271435px;}
.x6a_c00092{left:550.409835px;}
.x1b_c00092{left:558.131835px;}
.x4f_c00092{left:560.042535px;}
.x31_c00092{left:571.427535px;}
.x3d_c00092{left:581.787885px;}
.x43_c00092{left:583.213485px;}
.x5e_c00092{left:584.441085px;}
.x2b_c00092{left:593.182785px;}
.x50_c00092{left:603.701535px;}
.x54_c00092{left:605.676585px;}
.x2_c00092{left:613.106535px;}
.x44_c00092{left:614.893485px;}
.x5f_c00092{left:615.992385px;}
.x49_c00092{left:626.521035px;}
.xc_c00092{left:637.643685px;}
.x3e_c00092{left:638.702985px;}
.x45_c00092{left:648.815835px;}
.x15_c00092{left:650.399835px;}
.x1c_c00092{left:658.770285px;}
.x4d_c00092{left:662.527335px;}
.x32_c00092{left:669.986985px;}
.x3f_c00092{left:671.927385px;}
.x59_c00092{left:683.594535px;}
.x6b_c00092{left:685.619085px;}
@media print{
.v0_c00092{vertical-align:0.000000pt;}
.v1_c00092{vertical-align:6.336000pt;}
.ls3_c00092{letter-spacing:-2.698080pt;}
.lsb_c00092{letter-spacing:-2.500960pt;}
.ls8_c00092{letter-spacing:-0.944240pt;}
.lsc_c00092{letter-spacing:-0.578794pt;}
.ls5_c00092{letter-spacing:0.000000pt;}
.ls12_c00092{letter-spacing:0.943219pt;}
.lsd_c00092{letter-spacing:1.071840pt;}
.ls6_c00092{letter-spacing:1.486285pt;}
.ls10_c00092{letter-spacing:1.793546pt;}
.ls9_c00092{letter-spacing:2.458086pt;}
.lse_c00092{letter-spacing:2.515251pt;}
.ls4_c00092{letter-spacing:3.022589pt;}
.ls11_c00092{letter-spacing:3.044800pt;}
.ls0_c00092{letter-spacing:3.437034pt;}
.ls7_c00092{letter-spacing:3.520000pt;}
.ls2_c00092{letter-spacing:3.572800pt;}
.ls14_c00092{letter-spacing:3.625609pt;}
.ls1_c00092{letter-spacing:3.801609pt;}
.lsa_c00092{letter-spacing:3.995209pt;}
.ls13_c00092{letter-spacing:46.886576pt;}
.lsf_c00092{letter-spacing:48.153776pt;}
.ws0_c00092{word-spacing:-20.379251pt;}
.ws1_c00092{word-spacing:0.000000pt;}
._5_c00092{margin-left:-2.429504pt;}
._2_c00092{width:2.900410pt;}
._4_c00092{width:12.361888pt;}
._3_c00092{width:13.292576pt;}
._1_c00092{width:47.472030pt;}
._0_c00092{width:319.721600pt;}
.fs6_c00092{font-size:24.640000pt;}
.fsd_c00092{font-size:29.568000pt;}
.fs5_c00092{font-size:32.912176pt;}
.fs3_c00092{font-size:43.648000pt;}
.fsf_c00092{font-size:46.886576pt;}
.fsc_c00092{font-size:48.153776pt;}
.fs4_c00092{font-size:58.960000pt;}
.fse_c00092{font-size:60.896000pt;}
.fs8_c00092{font-size:65.120000pt;}
.fsb_c00092{font-size:66.528000pt;}
.fsa_c00092{font-size:70.048000pt;}
.fs7_c00092{font-size:70.400000pt;}
.fs1_c00092{font-size:71.456000pt;}
.fs10_c00092{font-size:72.512176pt;}
.fs0_c00092{font-size:76.032176pt;}
.fs2_c00092{font-size:77.088000pt;}
.fs9_c00092{font-size:79.904176pt;}
.y0_c00092{bottom:0.000000pt;}
.y21_c00092{bottom:15.440520pt;}
.y1_c00092{bottom:68.000000pt;}
.y20_c00092{bottom:134.244920pt;}
.y1f_c00092{bottom:162.752520pt;}
.y1e_c00092{bottom:190.635320pt;}
.y1d_c00092{bottom:218.830520pt;}
.y1c_c00092{bottom:246.708920pt;}
.y1b_c00092{bottom:274.587320pt;}
.y1a_c00092{bottom:296.440184pt;}
.y19_c00092{bottom:302.782520pt;}
.y18_c00092{bottom:330.027320pt;}
.y17_c00092{bottom:359.168520pt;}
.y16_c00092{bottom:387.368120pt;}
.y15_c00092{bottom:415.875720pt;}
.y14_c00092{bottom:443.754120pt;}
.y13_c00092{bottom:471.636920pt;}
.y12_c00092{bottom:499.827720pt;}
.y11_c00092{bottom:527.706120pt;}
.y10_c00092{bottom:555.584520pt;}
.yf_c00092{bottom:583.467320pt;}
.ye_c00092{bottom:611.345720pt;}
.yd_c00092{bottom:638.907320pt;}
.yc_c00092{bottom:667.102520pt;}
.yb_c00092{bottom:722.542520pt;}
.ya_c00092{bottom:750.416520pt;}
.y9_c00092{bottom:778.294920pt;}
.y8_c00092{bottom:790.016520pt;}
.y7_c00092{bottom:804.906120pt;}
.y6_c00092{bottom:806.490120pt;}
.y5_c00092{bottom:829.616520pt;}
.y3_c00092{bottom:833.422520pt;}
.y4_c00092{bottom:834.372920pt;}
.y2_c00092{bottom:947.153720pt;}
.h8_c00092{height:25.698750pt;}
.hf_c00092{height:30.838500pt;}
.h11_c00092{height:31.226460pt;}
.he_c00092{height:32.070415pt;}
.h5_c00092{height:43.989000pt;}
.h10_c00092{height:59.766094pt;}
.h6_c00092{height:61.493438pt;}
.hd_c00092{height:65.293594pt;}
.h7_c00092{height:67.829438pt;}
.ha_c00092{height:67.918125pt;}
.hc_c00092{height:68.748281pt;}
.h9_c00092{height:69.093750pt;}
.h3_c00092{height:70.130156pt;}
.h12_c00092{height:71.166735pt;}
.h2_c00092{height:74.621423pt;}
.h4_c00092{height:75.657656pt;}
.hb_c00092{height:78.421579pt;}
.h1_c00092{height:986.666667pt;}
.h0_c00092{height:1122.666667pt;}
.w1_c00092{width:652.000000pt;}
.w0_c00092{width:793.333333pt;}
.x0_c00092{left:0.000000pt;}
.x1d_c00092{left:62.387187pt;}
.x3_c00092{left:63.429987pt;}
.x55_c00092{left:64.604787pt;}
.x64_c00092{left:65.946787pt;}
.x1_c00092{left:70.666667pt;}
.x17_c00092{left:92.157587pt;}
.xe_c00092{left:93.253187pt;}
.x65_c00092{left:94.520387pt;}
.x4_c00092{left:102.765987pt;}
.x25_c00092{left:111.777187pt;}
.x5a_c00092{left:114.474387pt;}
.x2c_c00092{left:122.090787pt;}
.x56_c00092{left:132.883987pt;}
.x68_c00092{left:134.076387pt;}
.x26_c00092{left:141.732387pt;}
.x5_c00092{left:142.665187pt;}
.x60_c00092{left:143.593587pt;}
.x18_c00092{left:150.765587pt;}
.x51_c00092{left:162.927187pt;}
.x1e_c00092{left:170.741587pt;}
.x3b_c00092{left:172.479587pt;}
.x46_c00092{left:173.883187pt;}
.x27_c00092{left:180.540387pt;}
.x4a_c00092{left:181.948387pt;}
.xf_c00092{left:190.022387pt;}
.x2d_c00092{left:191.777987pt;}
.x1f_c00092{left:200.995987pt;}
.x40_c00092{left:201.941987pt;}
.x10_c00092{left:210.812387pt;}
.x33_c00092{left:212.651587pt;}
.x16_c00092{left:217.240787pt;}
.x6_c00092{left:221.033587pt;}
.x52_c00092{left:222.467987pt;}
.x37_c00092{left:231.074387pt;}
.x5b_c00092{left:231.989587pt;}
.x20_c00092{left:241.198787pt;}
.x66_c00092{left:242.421987pt;}
.x7_c00092{left:250.975587pt;}
.x53_c00092{left:252.304387pt;}
.x41_c00092{left:260.373987pt;}
.x61_c00092{left:261.390387pt;}
.x2e_c00092{left:270.375187pt;}
.x47_c00092{left:271.532387pt;}
.x8_c00092{left:278.708787pt;}
.x34_c00092{left:280.165187pt;}
.x57_c00092{left:281.441187pt;}
.x11_c00092{left:288.472387pt;}
.x4b_c00092{left:290.073987pt;}
.x5c_c00092{left:291.292787pt;}
.x28_c00092{left:299.507587pt;}
.x69_c00092{left:302.033187pt;}
.x48_c00092{left:311.154387pt;}
.xd_c00092{left:316.267187pt;}
.x38_c00092{left:319.637587pt;}
.x21_c00092{left:320.680387pt;}
.x19_c00092{left:330.188787pt;}
.x5d_c00092{left:331.504387pt;}
.x9_c00092{left:339.578387pt;}
.x39_c00092{left:340.691587pt;}
.x22_c00092{left:349.535587pt;}
.x12_c00092{left:359.052787pt;}
.x35_c00092{left:360.033987pt;}
.x67_c00092{left:361.287987pt;}
.x29_c00092{left:369.489587pt;}
.x4e_c00092{left:370.730387pt;}
.x42_c00092{left:379.305987pt;}
.x36_c00092{left:389.003587pt;}
.x13_c00092{left:399.202787pt;}
.x62_c00092{left:400.553587pt;}
.x2f_c00092{left:409.111587pt;}
.xa_c00092{left:417.660787pt;}
.x4c_c00092{left:418.778387pt;}
.x3a_c00092{left:430.297587pt;}
.x23_c00092{left:438.279187pt;}
.x2a_c00092{left:439.211987pt;}
.x63_c00092{left:440.747587pt;}
.x58_c00092{left:447.646787pt;}
.x3c_c00092{left:450.137187pt;}
.x1a_c00092{left:457.427987pt;}
.xb_c00092{left:458.523587pt;}
.x24_c00092{left:468.067187pt;}
.x30_c00092{left:478.759187pt;}
.x14_c00092{left:487.352387pt;}
.x6a_c00092{left:489.253187pt;}
.x1b_c00092{left:496.117187pt;}
.x4f_c00092{left:497.815587pt;}
.x31_c00092{left:507.935587pt;}
.x3d_c00092{left:517.144787pt;}
.x43_c00092{left:518.411987pt;}
.x5e_c00092{left:519.503187pt;}
.x2b_c00092{left:527.273587pt;}
.x50_c00092{left:536.623587pt;}
.x54_c00092{left:538.379187pt;}
.x2_c00092{left:544.983587pt;}
.x44_c00092{left:546.571987pt;}
.x5f_c00092{left:547.548787pt;}
.x49_c00092{left:556.907587pt;}
.xc_c00092{left:566.794387pt;}
.x3e_c00092{left:567.735987pt;}
.x45_c00092{left:576.725187pt;}
.x15_c00092{left:578.133187pt;}
.x1c_c00092{left:585.573587pt;}
.x4d_c00092{left:588.913187pt;}
.x32_c00092{left:595.543987pt;}
.x3f_c00092{left:597.268787pt;}
.x59_c00092{left:607.639587pt;}
.x6b_c00092{left:609.439187pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a2f5908c224b5af08e2c622f.woff2')format("woff");}.ff1_c00093{font-family:ff1_c00093;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00093;src:url('chunks/assets/font_102bbb1a02d49d2fc5d75ce9.woff2')format("woff");}.ff2_c00093{font-family:ff2_c00093;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00093;src:url('chunks/assets/font_c7a28156902ef8be8e049c6f.woff2')format("woff");}.ff3_c00093{font-family:ff3_c00093;line-height:0.666000;font-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_c00093{transform:matrix(0.211428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211428,0.000000,0.000000,0.250000,0,0);}
.m46_c00093{transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);}
.m0_c00093{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00093{transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);}
.m90_c00093{transform:matrix(0.250278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250278,0.000000,0.000000,0.250000,0,0);}
.m41_c00093{transform:matrix(0.250919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250919,0.000000,0.000000,0.250000,0,0);}
.md_c00093{transform:matrix(0.252992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252992,0.000000,0.000000,0.250000,0,0);}
.m59_c00093{transform:matrix(0.254597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254597,0.000000,0.000000,0.250000,0,0);}
.m5a_c00093{transform:matrix(0.255778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255778,0.000000,0.000000,0.250000,0,0);}
.m42_c00093{transform:matrix(0.256275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256275,0.000000,0.000000,0.250000,0,0);}
.m8e_c00093{transform:matrix(0.256696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256696,0.000000,0.000000,0.250000,0,0);}
.m67_c00093{transform:matrix(0.257197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257197,0.000000,0.000000,0.250000,0,0);}
.m65_c00093{transform:matrix(0.257618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257618,0.000000,0.000000,0.250000,0,0);}
.m9f_c00093{transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);}
.ma0_c00093{transform:matrix(0.259128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259128,0.000000,0.000000,0.250000,0,0);}
.m15_c00093{transform:matrix(0.259258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259258,0.000000,0.000000,0.250000,0,0);}
.m4d_c00093{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m6f_c00093{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.m63_c00093{transform:matrix(0.262593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262593,0.000000,0.000000,0.250000,0,0);}
.m97_c00093{transform:matrix(0.263069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263069,0.000000,0.000000,0.250000,0,0);}
.m1_c00093{transform:matrix(0.263189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263189,0.000000,0.000000,0.250000,0,0);}
.m16_c00093{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.mf_c00093{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m2e_c00093{transform:matrix(0.265441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265441,0.000000,0.000000,0.250000,0,0);}
.m2f_c00093{transform:matrix(0.265775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265775,0.000000,0.000000,0.250000,0,0);}
.m9c_c00093{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m45_c00093{transform:matrix(0.266393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266393,0.000000,0.000000,0.250000,0,0);}
.m43_c00093{transform:matrix(0.267311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267311,0.000000,0.000000,0.250000,0,0);}
.ma7_c00093{transform:matrix(0.267430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267430,0.000000,0.000000,0.250000,0,0);}
.ma3_c00093{transform:matrix(0.267678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267678,0.000000,0.000000,0.250000,0,0);}
.m5_c00093{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m30_c00093{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.m84_c00093{transform:matrix(0.268932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268932,0.000000,0.000000,0.250000,0,0);}
.m95_c00093{transform:matrix(0.269234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269234,0.000000,0.000000,0.250000,0,0);}
.m64_c00093{transform:matrix(0.269485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269485,0.000000,0.000000,0.250000,0,0);}
.m57_c00093{transform:matrix(0.270085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270085,0.000000,0.000000,0.250000,0,0);}
.m34_c00093{transform:matrix(0.270258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270258,0.000000,0.000000,0.250000,0,0);}
.m6a_c00093{transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);}
.m38_c00093{transform:matrix(0.271008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271008,0.000000,0.000000,0.250000,0,0);}
.m62_c00093{transform:matrix(0.271462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271462,0.000000,0.000000,0.250000,0,0);}
.m76_c00093{transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);}
.m68_c00093{transform:matrix(0.271634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271634,0.000000,0.000000,0.250000,0,0);}
.m9d_c00093{transform:matrix(0.272020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272020,0.000000,0.000000,0.250000,0,0);}
.m52_c00093{transform:matrix(0.272136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272136,0.000000,0.000000,0.250000,0,0);}
.m32_c00093{transform:matrix(0.272184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272184,0.000000,0.000000,0.250000,0,0);}
.m2d_c00093{transform:matrix(0.272339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272339,0.000000,0.000000,0.250000,0,0);}
.m26_c00093{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m47_c00093{transform:matrix(0.272801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272801,0.000000,0.000000,0.250000,0,0);}
.m75_c00093{transform:matrix(0.272918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272918,0.000000,0.000000,0.250000,0,0);}
.m21_c00093{transform:matrix(0.272966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272966,0.000000,0.000000,0.250000,0,0);}
.m19_c00093{transform:matrix(0.273403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273403,0.000000,0.000000,0.250000,0,0);}
.m49_c00093{transform:matrix(0.274164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274164,0.000000,0.000000,0.250000,0,0);}
.m31_c00093{transform:matrix(0.274645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274645,0.000000,0.000000,0.250000,0,0);}
.m72_c00093{transform:matrix(0.274722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274722,0.000000,0.000000,0.250000,0,0);}
.m50_c00093{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m33_c00093{transform:matrix(0.275910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275910,0.000000,0.000000,0.250000,0,0);}
.m7d_c00093{transform:matrix(0.276405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276405,0.000000,0.000000,0.250000,0,0);}
.m58_c00093{transform:matrix(0.276487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276487,0.000000,0.000000,0.250000,0,0);}
.m14_c00093{transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);}
.m8f_c00093{transform:matrix(0.277451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277451,0.000000,0.000000,0.250000,0,0);}
.m89_c00093{transform:matrix(0.278287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278287,0.000000,0.000000,0.250000,0,0);}
.m5c_c00093{transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);}
.m44_c00093{transform:matrix(0.280097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280097,0.000000,0.000000,0.250000,0,0);}
.m9_c00093{transform:matrix(0.280224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280224,0.000000,0.000000,0.250000,0,0);}
.m56_c00093{transform:matrix(0.281216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281216,0.000000,0.000000,0.250000,0,0);}
.m98_c00093{transform:matrix(0.282243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282243,0.000000,0.000000,0.250000,0,0);}
.me_c00093{transform:matrix(0.282521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282521,0.000000,0.000000,0.250000,0,0);}
.m10_c00093{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m3e_c00093{transform:matrix(0.283699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283699,0.000000,0.000000,0.250000,0,0);}
.ma2_c00093{transform:matrix(0.283965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283965,0.000000,0.000000,0.250000,0,0);}
.m4c_c00093{transform:matrix(0.284952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284952,0.000000,0.000000,0.250000,0,0);}
.m8c_c00093{transform:matrix(0.285033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285033,0.000000,0.000000,0.250000,0,0);}
.m6c_c00093{transform:matrix(0.285081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285081,0.000000,0.000000,0.250000,0,0);}
.m1f_c00093{transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);}
.m2a_c00093{transform:matrix(0.286266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286266,0.000000,0.000000,0.250000,0,0);}
.m1e_c00093{transform:matrix(0.286450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286450,0.000000,0.000000,0.250000,0,0);}
.m13_c00093{transform:matrix(0.286607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286607,0.000000,0.000000,0.250000,0,0);}
.m3d_c00093{transform:matrix(0.286703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286703,0.000000,0.000000,0.250000,0,0);}
.m23_c00093{transform:matrix(0.287092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287092,0.000000,0.000000,0.250000,0,0);}
.ma6_c00093{transform:matrix(0.287199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287199,0.000000,0.000000,0.250000,0,0);}
.m3c_c00093{transform:matrix(0.288372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288372,0.000000,0.000000,0.250000,0,0);}
.m1b_c00093{transform:matrix(0.288436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288436,0.000000,0.000000,0.250000,0,0);}
.m55_c00093{transform:matrix(0.288481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288481,0.000000,0.000000,0.250000,0,0);}
.m40_c00093{transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);}
.m37_c00093{transform:matrix(0.288580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288580,0.000000,0.000000,0.250000,0,0);}
.m28_c00093{transform:matrix(0.288885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288885,0.000000,0.000000,0.250000,0,0);}
.m11_c00093{transform:matrix(0.288977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288977,0.000000,0.000000,0.250000,0,0);}
.ma1_c00093{transform:matrix(0.289032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289032,0.000000,0.000000,0.250000,0,0);}
.m6e_c00093{transform:matrix(0.289849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289849,0.000000,0.000000,0.250000,0,0);}
.mc_c00093{transform:matrix(0.289896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289896,0.000000,0.000000,0.250000,0,0);}
.m4_c00093{transform:matrix(0.290825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290825,0.000000,0.000000,0.250000,0,0);}
.m48_c00093{transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);}
.m25_c00093{transform:matrix(0.294086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294086,0.000000,0.000000,0.250000,0,0);}
.m39_c00093{transform:matrix(0.294271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294271,0.000000,0.000000,0.250000,0,0);}
.m94_c00093{transform:matrix(0.294364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294364,0.000000,0.000000,0.250000,0,0);}
.m24_c00093{transform:matrix(0.294463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294463,0.000000,0.000000,0.250000,0,0);}
.m96_c00093{transform:matrix(0.294932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294932,0.000000,0.000000,0.250000,0,0);}
.m51_c00093{transform:matrix(0.295461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295461,0.000000,0.000000,0.250000,0,0);}
.m54_c00093{transform:matrix(0.296735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296735,0.000000,0.000000,0.250000,0,0);}
.m29_c00093{transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);}
.m7_c00093{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m88_c00093{transform:matrix(0.297356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297356,0.000000,0.000000,0.250000,0,0);}
.ma4_c00093{transform:matrix(0.297760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297760,0.000000,0.000000,0.250000,0,0);}
.m5f_c00093{transform:matrix(0.298106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298106,0.000000,0.000000,0.250000,0,0);}
.m8d_c00093{transform:matrix(0.298381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298381,0.000000,0.000000,0.250000,0,0);}
.m5b_c00093{transform:matrix(0.298645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298645,0.000000,0.000000,0.250000,0,0);}
.m91_c00093{transform:matrix(0.298950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298950,0.000000,0.000000,0.250000,0,0);}
.m8_c00093{transform:matrix(0.299645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299645,0.000000,0.000000,0.250000,0,0);}
.m3f_c00093{transform:matrix(0.300081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300081,0.000000,0.000000,0.250000,0,0);}
.m36_c00093{transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);}
.m8a_c00093{transform:matrix(0.300674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300674,0.000000,0.000000,0.250000,0,0);}
.m78_c00093{transform:matrix(0.300760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300760,0.000000,0.000000,0.250000,0,0);}
.m99_c00093{transform:matrix(0.301074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301074,0.000000,0.000000,0.250000,0,0);}
.m69_c00093{transform:matrix(0.301578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301578,0.000000,0.000000,0.250000,0,0);}
.m7a_c00093{transform:matrix(0.302074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302074,0.000000,0.000000,0.250000,0,0);}
.m6d_c00093{transform:matrix(0.303118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303118,0.000000,0.000000,0.250000,0,0);}
.m6b_c00093{transform:matrix(0.304443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304443,0.000000,0.000000,0.250000,0,0);}
.m2c_c00093{transform:matrix(0.304746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304746,0.000000,0.000000,0.250000,0,0);}
.m9b_c00093{transform:matrix(0.305470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305470,0.000000,0.000000,0.250000,0,0);}
.m3b_c00093{transform:matrix(0.305914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305914,0.000000,0.000000,0.250000,0,0);}
.m6_c00093{transform:matrix(0.306304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306304,0.000000,0.000000,0.250000,0,0);}
.m87_c00093{transform:matrix(0.307034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307034,0.000000,0.000000,0.250000,0,0);}
.m1d_c00093{transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);}
.m35_c00093{transform:matrix(0.307739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307739,0.000000,0.000000,0.250000,0,0);}
.ma5_c00093{transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);}
.m1a_c00093{transform:matrix(0.308308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308308,0.000000,0.000000,0.250000,0,0);}
.m4e_c00093{transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);}
.m80_c00093{transform:matrix(0.309513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309513,0.000000,0.000000,0.250000,0,0);}
.m85_c00093{transform:matrix(0.309982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309982,0.000000,0.000000,0.250000,0,0);}
.m5e_c00093{transform:matrix(0.310023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310023,0.000000,0.000000,0.250000,0,0);}
.m2_c00093{transform:matrix(0.311207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311207,0.000000,0.000000,0.250000,0,0);}
.m8b_c00093{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.m66_c00093{transform:matrix(0.314545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314545,0.000000,0.000000,0.250000,0,0);}
.m4a_c00093{transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);}
.m4f_c00093{transform:matrix(0.316095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316095,0.000000,0.000000,0.250000,0,0);}
.m93_c00093{transform:matrix(0.316193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316193,0.000000,0.000000,0.250000,0,0);}
.m77_c00093{transform:matrix(0.316259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316259,0.000000,0.000000,0.250000,0,0);}
.m9a_c00093{transform:matrix(0.316535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316535,0.000000,0.000000,0.250000,0,0);}
.m5d_c00093{transform:matrix(0.317491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317491,0.000000,0.000000,0.250000,0,0);}
.m74_c00093{transform:matrix(0.319563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319563,0.000000,0.000000,0.250000,0,0);}
.m61_c00093{transform:matrix(0.320064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320064,0.000000,0.000000,0.250000,0,0);}
.m20_c00093{transform:matrix(0.320804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320804,0.000000,0.000000,0.250000,0,0);}
.m79_c00093{transform:matrix(0.321066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321066,0.000000,0.000000,0.250000,0,0);}
.m3a_c00093{transform:matrix(0.321944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321944,0.000000,0.000000,0.250000,0,0);}
.m92_c00093{transform:matrix(0.322704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322704,0.000000,0.000000,0.250000,0,0);}
.m7e_c00093{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.m71_c00093{transform:matrix(0.324242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324242,0.000000,0.000000,0.250000,0,0);}
.m7b_c00093{transform:matrix(0.324405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324405,0.000000,0.000000,0.250000,0,0);}
.m9e_c00093{transform:matrix(0.326063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326063,0.000000,0.000000,0.250000,0,0);}
.m70_c00093{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m7f_c00093{transform:matrix(0.331265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331265,0.000000,0.000000,0.250000,0,0);}
.mb_c00093{transform:matrix(0.332122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332122,0.000000,0.000000,0.250000,0,0);}
.m83_c00093{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m82_c00093{transform:matrix(0.335263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335263,0.000000,0.000000,0.250000,0,0);}
.m81_c00093{transform:matrix(0.336540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336540,0.000000,0.000000,0.250000,0,0);}
.m22_c00093{transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);}
.m27_c00093{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m3_c00093{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.m53_c00093{transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);}
.m1c_c00093{transform:matrix(0.344474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344474,0.000000,0.000000,0.250000,0,0);}
.m18_c00093{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m4b_c00093{transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);}
.ma_c00093{transform:matrix(0.351400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351400,0.000000,0.000000,0.250000,0,0);}
.m73_c00093{transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);}
.m86_c00093{transform:matrix(0.353778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353778,0.000000,0.000000,0.250000,0,0);}
.m12_c00093{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m7c_c00093{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m60_c00093{transform:matrix(0.374809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374809,0.000000,0.000000,0.250000,0,0);}
.v0_c00093{vertical-align:0.000000px;}
.ls8_c00093{letter-spacing:-2.744280px;}
.lsb_c00093{letter-spacing:-1.427026px;}
.ls5_c00093{letter-spacing:-0.258746px;}
.ls0_c00093{letter-spacing:0.000000px;}
.ls3_c00093{letter-spacing:0.705672px;}
.ls6_c00093{letter-spacing:1.082030px;}
.lsa_c00093{letter-spacing:2.352240px;}
.ls7_c00093{letter-spacing:3.387226px;}
.ls9_c00093{letter-spacing:3.653813px;}
.ls2_c00093{letter-spacing:3.920400px;}
.ls1_c00093{letter-spacing:4.276810px;}
.ls4_c00093{letter-spacing:49.896198px;}
.sc__c00093{text-shadow:none;}
.sc0_c00093{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00093{-webkit-text-stroke:0px transparent;}
.sc0_c00093{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00093{word-spacing:-19.602000px;}
.ws1_c00093{word-spacing:0.000000px;}
._0_c00093{width:7.762392px;}
._1_c00093{width:22.267872px;}
.fc0_c00093{color:transparent;}
.fsb_c00093{font-size:22.374000px;}
.fs0_c00093{font-size:27.720000px;}
.fs9_c00093{font-size:33.660000px;}
.fs8_c00093{font-size:44.352000px;}
.fs5_c00093{font-size:49.896198px;}
.fs3_c00093{font-size:64.548000px;}
.fsa_c00093{font-size:70.884000px;}
.fs6_c00093{font-size:74.844000px;}
.fs2_c00093{font-size:78.408000px;}
.fs4_c00093{font-size:78.804000px;}
.fs7_c00093{font-size:81.972198px;}
.fs1_c00093{font-size:85.536198px;}
.fsc_c00093{font-size:89.496198px;}
.y0_c00093{bottom:0.000000px;}
.y1f_c00093{bottom:0.268335px;}
.y1e_c00093{bottom:10.600965px;}
.y1_c00093{bottom:76.500000px;}
.y1d_c00093{bottom:163.850985px;}
.y1c_c00093{bottom:226.933785px;}
.y1b_c00093{bottom:258.653385px;}
.y1a_c00093{bottom:291.085785px;}
.y19_c00093{bottom:323.161785px;}
.y18_c00093{bottom:354.886335px;}
.y17_c00093{bottom:387.318735px;}
.y20_c00093{bottom:405.495135px;}
.y16_c00093{bottom:419.746185px;}
.y2_c00093{bottom:427.230585px;}
.y15_c00093{bottom:453.250260px;}
.y13_c00093{bottom:484.254585px;}
.y14_c00093{bottom:488.887785px;}
.y12_c00093{bottom:516.691935px;}
.y11_c00093{bottom:548.406585px;}
.y10_c00093{bottom:580.838985px;}
.yf_c00093{bottom:612.558585px;}
.ye_c00093{bottom:644.634585px;}
.yd_c00093{bottom:666.379935px;}
.yc_c00093{bottom:677.071935px;}
.yb_c00093{bottom:709.504335px;}
.ya_c00093{bottom:741.936735px;}
.y9_c00093{bottom:774.725535px;}
.y8_c00093{bottom:806.796585px;}
.y7_c00093{bottom:839.228985px;}
.y6_c00093{bottom:871.666335px;}
.y5_c00093{bottom:904.098735px;}
.y4_c00093{bottom:936.169785px;}
.y3_c00093{bottom:1085.501385px;}
.hd_c00093{height:21.958857px;}
.h2_c00093{height:28.911094px;}
.hb_c00093{height:33.035449px;}
.h7_c00093{height:33.230868px;}
.ha_c00093{height:46.257750px;}
.h5_c00093{height:67.321547px;}
.hc_c00093{height:69.568770px;}
.h8_c00093{height:73.455293px;}
.h4_c00093{height:76.953164px;}
.h6_c00093{height:77.341816px;}
.h9_c00093{height:80.451229px;}
.h3_c00093{height:83.949101px;}
.he_c00093{height:87.835624px;}
.h1_c00093{height:1110.000000px;}
.h0_c00093{height:1263.000000px;}
.w1_c00093{width:733.500000px;}
.w0_c00093{width:892.500000px;}
.x0_c00093{left:0.000000px;}
.x2_c00093{left:38.040285px;}
.x26_c00093{left:63.760485px;}
.x20_c00093{left:64.839585px;}
.x4_c00093{left:66.012735px;}
.x1_c00093{left:79.500000px;}
.x50_c00093{left:87.812535px;}
.x32_c00093{left:97.271985px;}
.xe_c00093{left:98.529285px;}
.x4d_c00093{left:99.573735px;}
.x27_c00093{left:109.572735px;}
.x4a_c00093{left:119.720235px;}
.x56_c00093{left:120.987435px;}
.xf_c00093{left:131.639835px;}
.x42_c00093{left:141.455685px;}
.x59_c00093{left:143.089185px;}
.x5_c00093{left:153.741585px;}
.x49_c00093{left:164.111835px;}
.x3c_c00093{left:165.146385px;}
.x54_c00093{left:175.863135px;}
.x6_c00093{left:186.525435px;}
.x10_c00093{left:197.964885px;}
.x36_c00093{left:206.681835px;}
.x28_c00093{left:209.008335px;}
.x21_c00093{left:219.675585px;}
.x46_c00093{left:222.506985px;}
.x1c_c00093{left:230.714085px;}
.x43_c00093{left:232.862385px;}
.x51_c00093{left:242.504985px;}
.x37_c00093{left:251.944635px;}
.x7_c00093{left:253.563285px;}
.x29_c00093{left:258.354885px;}
.x53_c00093{left:264.789885px;}
.x3d_c00093{left:275.655135px;}
.x8_c00093{left:285.787785px;}
.x18_c00093{left:287.084685px;}
.x11_c00093{left:288.851835px;}
.x22_c00093{left:296.920335px;}
.x57_c00093{left:298.385535px;}
.x33_c00093{left:308.839935px;}
.x4b_c00093{left:319.497285px;}
.x2d_c00093{left:330.511035px;}
.x23_c00093{left:341.381235px;}
.x2a_c00093{left:353.370135px;}
.x52_c00093{left:364.047285px;}
.x3e_c00093{left:365.081835px;}
.x19_c00093{left:375.615435px;}
.x12_c00093{left:386.505435px;}
.x2e_c00093{left:397.192485px;}
.x44_c00093{left:408.597285px;}
.x4e_c00093{left:409.607085px;}
.x9_c00093{left:419.422935px;}
.x13_c00093{left:430.580235px;}
.xa_c00093{left:441.613785px;}
.x47_c00093{left:452.672085px;}
.x14_c00093{left:463.468035px;}
.x55_c00093{left:464.517435px;}
.xb_c00093{left:475.051035px;}
.x1a_c00093{left:484.965885px;}
.x48_c00093{left:486.282585px;}
.x24_c00093{left:496.791435px;}
.x58_c00093{left:498.543735px;}
.x2b_c00093{left:507.122085px;}
.x1d_c00093{left:508.364535px;}
.x3a_c00093{left:517.823985px;}
.x4f_c00093{left:519.764385px;}
.x45_c00093{left:521.536485px;}
.x2f_c00093{left:529.906935px;}
.x3f_c00093{left:531.292935px;}
.x1e_c00093{left:542.207685px;}
.x30_c00093{left:551.810685px;}
.x15_c00093{left:563.453085px;}
.x34_c00093{left:573.783735px;}
.xc_c00093{left:575.001435px;}
.x16_c00093{left:585.332085px;}
.x3b_c00093{left:587.797185px;}
.x4c_c00093{left:595.840935px;}
.x38_c00093{left:606.884385px;}
.xd_c00093{left:608.087235px;}
.x17_c00093{left:618.487185px;}
.x40_c00093{left:628.976235px;}
.x25_c00093{left:639.292035px;}
.x3_c00093{left:641.262135px;}
.x2c_c00093{left:651.538335px;}
.x31_c00093{left:662.230335px;}
.x1b_c00093{left:663.279735px;}
.x35_c00093{left:674.803335px;}
.x1f_c00093{left:685.341885px;}
.x41_c00093{left:686.381385px;}
.x5a_c00093{left:687.401085px;}
.x39_c00093{left:693.751935px;}
.x5b_c00093{left:696.712035px;}
@media print{
.v0_c00093{vertical-align:0.000000pt;}
.ls8_c00093{letter-spacing:-2.439360pt;}
.lsb_c00093{letter-spacing:-1.268467pt;}
.ls5_c00093{letter-spacing:-0.229997pt;}
.ls0_c00093{letter-spacing:0.000000pt;}
.ls3_c00093{letter-spacing:0.627264pt;}
.ls6_c00093{letter-spacing:0.961805pt;}
.lsa_c00093{letter-spacing:2.090880pt;}
.ls7_c00093{letter-spacing:3.010867pt;}
.ls9_c00093{letter-spacing:3.247834pt;}
.ls2_c00093{letter-spacing:3.484800pt;}
.ls1_c00093{letter-spacing:3.801609pt;}
.ls4_c00093{letter-spacing:44.352176pt;}
.ws0_c00093{word-spacing:-17.424000pt;}
.ws1_c00093{word-spacing:0.000000pt;}
._0_c00093{width:6.899904pt;}
._1_c00093{width:19.793664pt;}
.fsb_c00093{font-size:19.888000pt;}
.fs0_c00093{font-size:24.640000pt;}
.fs9_c00093{font-size:29.920000pt;}
.fs8_c00093{font-size:39.424000pt;}
.fs5_c00093{font-size:44.352176pt;}
.fs3_c00093{font-size:57.376000pt;}
.fsa_c00093{font-size:63.008000pt;}
.fs6_c00093{font-size:66.528000pt;}
.fs2_c00093{font-size:69.696000pt;}
.fs4_c00093{font-size:70.048000pt;}
.fs7_c00093{font-size:72.864176pt;}
.fs1_c00093{font-size:76.032176pt;}
.fsc_c00093{font-size:79.552176pt;}
.y0_c00093{bottom:0.000000pt;}
.y1f_c00093{bottom:0.238520pt;}
.y1e_c00093{bottom:9.423080pt;}
.y1_c00093{bottom:68.000000pt;}
.y1d_c00093{bottom:145.645320pt;}
.y1c_c00093{bottom:201.718920pt;}
.y1b_c00093{bottom:229.914120pt;}
.y1a_c00093{bottom:258.742920pt;}
.y19_c00093{bottom:287.254920pt;}
.y18_c00093{bottom:315.454520pt;}
.y17_c00093{bottom:344.283320pt;}
.y20_c00093{bottom:360.440120pt;}
.y16_c00093{bottom:373.107720pt;}
.y2_c00093{bottom:379.760520pt;}
.y15_c00093{bottom:402.889120pt;}
.y13_c00093{bottom:430.448520pt;}
.y14_c00093{bottom:434.566920pt;}
.y12_c00093{bottom:459.281720pt;}
.y11_c00093{bottom:487.472520pt;}
.y10_c00093{bottom:516.301320pt;}
.yf_c00093{bottom:544.496520pt;}
.ye_c00093{bottom:573.008520pt;}
.yd_c00093{bottom:592.337720pt;}
.yc_c00093{bottom:601.841720pt;}
.yb_c00093{bottom:630.670520pt;}
.ya_c00093{bottom:659.499320pt;}
.y9_c00093{bottom:688.644920pt;}
.y8_c00093{bottom:717.152520pt;}
.y7_c00093{bottom:745.981320pt;}
.y6_c00093{bottom:774.814520pt;}
.y5_c00093{bottom:803.643320pt;}
.y4_c00093{bottom:832.150920pt;}
.y3_c00093{bottom:964.890120pt;}
.hd_c00093{height:19.518984pt;}
.h2_c00093{height:25.698750pt;}
.hb_c00093{height:29.364844pt;}
.h7_c00093{height:29.538549pt;}
.ha_c00093{height:41.118000pt;}
.h5_c00093{height:59.841375pt;}
.hc_c00093{height:61.838906pt;}
.h8_c00093{height:65.293594pt;}
.h4_c00093{height:68.402813pt;}
.h6_c00093{height:68.748281pt;}
.h9_c00093{height:71.512204pt;}
.h3_c00093{height:74.621423pt;}
.he_c00093{height:78.076110pt;}
.h1_c00093{height:986.666667pt;}
.h0_c00093{height:1122.666667pt;}
.w1_c00093{width:652.000000pt;}
.w0_c00093{width:793.333333pt;}
.x0_c00093{left:0.000000pt;}
.x2_c00093{left:33.813587pt;}
.x26_c00093{left:56.675987pt;}
.x20_c00093{left:57.635187pt;}
.x4_c00093{left:58.677987pt;}
.x1_c00093{left:70.666667pt;}
.x50_c00093{left:78.055587pt;}
.x32_c00093{left:86.463987pt;}
.xe_c00093{left:87.581587pt;}
.x4d_c00093{left:88.509987pt;}
.x27_c00093{left:97.397987pt;}
.x4a_c00093{left:106.417987pt;}
.x56_c00093{left:107.544387pt;}
.xf_c00093{left:117.013187pt;}
.x42_c00093{left:125.738387pt;}
.x59_c00093{left:127.190387pt;}
.x5_c00093{left:136.659187pt;}
.x49_c00093{left:145.877187pt;}
.x3c_c00093{left:146.796787pt;}
.x54_c00093{left:156.322787pt;}
.x6_c00093{left:165.800387pt;}
.x10_c00093{left:175.968787pt;}
.x36_c00093{left:183.717187pt;}
.x28_c00093{left:185.785187pt;}
.x21_c00093{left:195.267187pt;}
.x46_c00093{left:197.783987pt;}
.x1c_c00093{left:205.079187pt;}
.x43_c00093{left:206.988787pt;}
.x51_c00093{left:215.559987pt;}
.x37_c00093{left:223.950787pt;}
.x7_c00093{left:225.389587pt;}
.x29_c00093{left:229.648787pt;}
.x53_c00093{left:235.368787pt;}
.x3d_c00093{left:245.026787pt;}
.x8_c00093{left:254.033587pt;}
.x18_c00093{left:255.186387pt;}
.x11_c00093{left:256.757187pt;}
.x22_c00093{left:263.929187pt;}
.x57_c00093{left:265.231587pt;}
.x33_c00093{left:274.524387pt;}
.x4b_c00093{left:283.997587pt;}
.x2d_c00093{left:293.787587pt;}
.x23_c00093{left:303.449987pt;}
.x2a_c00093{left:314.106787pt;}
.x52_c00093{left:323.597587pt;}
.x3e_c00093{left:324.517187pt;}
.x19_c00093{left:333.880387pt;}
.x12_c00093{left:343.560387pt;}
.x2e_c00093{left:353.059987pt;}
.x44_c00093{left:363.197587pt;}
.x4e_c00093{left:364.095187pt;}
.x9_c00093{left:372.820387pt;}
.x13_c00093{left:382.737987pt;}
.xa_c00093{left:392.545587pt;}
.x47_c00093{left:402.375187pt;}
.x14_c00093{left:411.971587pt;}
.x55_c00093{left:412.904387pt;}
.xb_c00093{left:422.267587pt;}
.x1a_c00093{left:431.080787pt;}
.x48_c00093{left:432.251187pt;}
.x24_c00093{left:441.592387pt;}
.x58_c00093{left:443.149987pt;}
.x2b_c00093{left:450.775187pt;}
.x1d_c00093{left:451.879587pt;}
.x3a_c00093{left:460.287987pt;}
.x4f_c00093{left:462.012787pt;}
.x45_c00093{left:463.587987pt;}
.x2f_c00093{left:471.028387pt;}
.x3f_c00093{left:472.260387pt;}
.x1e_c00093{left:481.962387pt;}
.x30_c00093{left:490.498387pt;}
.x15_c00093{left:500.847187pt;}
.x34_c00093{left:510.029987pt;}
.xc_c00093{left:511.112387pt;}
.x16_c00093{left:520.295187pt;}
.x3b_c00093{left:522.486387pt;}
.x4c_c00093{left:529.636387pt;}
.x38_c00093{left:539.452787pt;}
.xd_c00093{left:540.521987pt;}
.x17_c00093{left:549.766387pt;}
.x40_c00093{left:559.089987pt;}
.x25_c00093{left:568.259587pt;}
.x3_c00093{left:570.010787pt;}
.x2c_c00093{left:579.145187pt;}
.x31_c00093{left:588.649187pt;}
.x1b_c00093{left:589.581987pt;}
.x35_c00093{left:599.825187pt;}
.x1f_c00093{left:609.192787pt;}
.x41_c00093{left:610.116787pt;}
.x5a_c00093{left:611.023187pt;}
.x39_c00093{left:616.668387pt;}
.x5b_c00093{left:619.299587pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_dea69ef75ebee0a4e929894d.woff2')format("woff");}.ff1_c00094{font-family:ff1_c00094;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00094;src:url('chunks/assets/font_83a8a75e4fb9a3ff56cd1e5d.woff2')format("woff");}.ff2_c00094{font-family:ff2_c00094;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00094;src:url('chunks/assets/font_49e04e415091764a8f7eeec3.woff2')format("woff");}.ff3_c00094{font-family:ff3_c00094;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m99_c00094{transform:matrix(0.147060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147060,0.000000,0.000000,0.250000,0,0);}
.m86_c00094{transform:matrix(0.203572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203572,0.000000,0.000000,0.250000,0,0);}
.m26_c00094{transform:matrix(0.211420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211420,0.000000,0.000000,0.250000,0,0);}
.m4a_c00094{transform:matrix(0.213281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213281,0.000000,0.000000,0.250000,0,0);}
.m0_c00094{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00094{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.m3d_c00094{transform:matrix(0.252254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252254,0.000000,0.000000,0.250000,0,0);}
.m8_c00094{transform:matrix(0.257381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257381,0.000000,0.000000,0.250000,0,0);}
.m67_c00094{transform:matrix(0.257987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257987,0.000000,0.000000,0.250000,0,0);}
.m8e_c00094{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m71_c00094{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m85_c00094{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.m1_c00094{transform:matrix(0.261584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261584,0.000000,0.000000,0.250000,0,0);}
.m5_c00094{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m3a_c00094{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m18_c00094{transform:matrix(0.264128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264128,0.000000,0.000000,0.250000,0,0);}
.m6_c00094{transform:matrix(0.265124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265124,0.000000,0.000000,0.250000,0,0);}
.m13_c00094{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m6d_c00094{transform:matrix(0.266427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266427,0.000000,0.000000,0.250000,0,0);}
.m33_c00094{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.m7b_c00094{transform:matrix(0.267040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267040,0.000000,0.000000,0.250000,0,0);}
.m46_c00094{transform:matrix(0.267199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267199,0.000000,0.000000,0.250000,0,0);}
.m5d_c00094{transform:matrix(0.267809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267809,0.000000,0.000000,0.250000,0,0);}
.m2d_c00094{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.mf_c00094{transform:matrix(0.268316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268316,0.000000,0.000000,0.250000,0,0);}
.m31_c00094{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.m7_c00094{transform:matrix(0.268872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268872,0.000000,0.000000,0.250000,0,0);}
.m40_c00094{transform:matrix(0.269191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269191,0.000000,0.000000,0.250000,0,0);}
.m4c_c00094{transform:matrix(0.269340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269340,0.000000,0.000000,0.250000,0,0);}
.m14_c00094{transform:matrix(0.269449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269449,0.000000,0.000000,0.250000,0,0);}
.m78_c00094{transform:matrix(0.269851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269851,0.000000,0.000000,0.250000,0,0);}
.m57_c00094{transform:matrix(0.269986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269986,0.000000,0.000000,0.250000,0,0);}
.m2c_c00094{transform:matrix(0.269993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269993,0.000000,0.000000,0.250000,0,0);}
.m91_c00094{transform:matrix(0.270511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270511,0.000000,0.000000,0.250000,0,0);}
.m15_c00094{transform:matrix(0.270687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270687,0.000000,0.000000,0.250000,0,0);}
.m44_c00094{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m39_c00094{transform:matrix(0.270977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270977,0.000000,0.000000,0.250000,0,0);}
.m19_c00094{transform:matrix(0.272136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272136,0.000000,0.000000,0.250000,0,0);}
.m2b_c00094{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m87_c00094{transform:matrix(0.272726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272726,0.000000,0.000000,0.250000,0,0);}
.m1b_c00094{transform:matrix(0.272917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272917,0.000000,0.000000,0.250000,0,0);}
.m29_c00094{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m92_c00094{transform:matrix(0.277006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277006,0.000000,0.000000,0.250000,0,0);}
.m89_c00094{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m8f_c00094{transform:matrix(0.277902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277902,0.000000,0.000000,0.250000,0,0);}
.m60_c00094{transform:matrix(0.278003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278003,0.000000,0.000000,0.250000,0,0);}
.m5b_c00094{transform:matrix(0.278057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278057,0.000000,0.000000,0.250000,0,0);}
.m54_c00094{transform:matrix(0.278681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278681,0.000000,0.000000,0.250000,0,0);}
.m8d_c00094{transform:matrix(0.278953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278953,0.000000,0.000000,0.250000,0,0);}
.m80_c00094{transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);}
.m42_c00094{transform:matrix(0.279782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279782,0.000000,0.000000,0.250000,0,0);}
.m75_c00094{transform:matrix(0.280247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280247,0.000000,0.000000,0.250000,0,0);}
.m94_c00094{transform:matrix(0.280566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280566,0.000000,0.000000,0.250000,0,0);}
.m24_c00094{transform:matrix(0.281997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281997,0.000000,0.000000,0.250000,0,0);}
.m6b_c00094{transform:matrix(0.282732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282732,0.000000,0.000000,0.250000,0,0);}
.m36_c00094{transform:matrix(0.283326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283326,0.000000,0.000000,0.250000,0,0);}
.m47_c00094{transform:matrix(0.283727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283727,0.000000,0.000000,0.250000,0,0);}
.m5f_c00094{transform:matrix(0.285273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285273,0.000000,0.000000,0.250000,0,0);}
.m22_c00094{transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);}
.m96_c00094{transform:matrix(0.285711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285711,0.000000,0.000000,0.250000,0,0);}
.m7d_c00094{transform:matrix(0.286388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286388,0.000000,0.000000,0.250000,0,0);}
.m65_c00094{transform:matrix(0.286607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286607,0.000000,0.000000,0.250000,0,0);}
.me_c00094{transform:matrix(0.286764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286764,0.000000,0.000000,0.250000,0,0);}
.m4f_c00094{transform:matrix(0.287129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287129,0.000000,0.000000,0.250000,0,0);}
.m53_c00094{transform:matrix(0.287521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287521,0.000000,0.000000,0.250000,0,0);}
.m81_c00094{transform:matrix(0.287754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287754,0.000000,0.000000,0.250000,0,0);}
.m20_c00094{transform:matrix(0.287862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287862,0.000000,0.000000,0.250000,0,0);}
.m21_c00094{transform:matrix(0.290162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290162,0.000000,0.000000,0.250000,0,0);}
.m4_c00094{transform:matrix(0.291008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291008,0.000000,0.000000,0.250000,0,0);}
.m3_c00094{transform:matrix(0.291444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291444,0.000000,0.000000,0.250000,0,0);}
.m8b_c00094{transform:matrix(0.291677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291677,0.000000,0.000000,0.250000,0,0);}
.m74_c00094{transform:matrix(0.291867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291867,0.000000,0.000000,0.250000,0,0);}
.m97_c00094{transform:matrix(0.291905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291905,0.000000,0.000000,0.250000,0,0);}
.m10_c00094{transform:matrix(0.293040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293040,0.000000,0.000000,0.250000,0,0);}
.m28_c00094{transform:matrix(0.293273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293273,0.000000,0.000000,0.250000,0,0);}
.m52_c00094{transform:matrix(0.293597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293597,0.000000,0.000000,0.250000,0,0);}
.m23_c00094{transform:matrix(0.293653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293653,0.000000,0.000000,0.250000,0,0);}
.m4d_c00094{transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);}
.m41_c00094{transform:matrix(0.293864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293864,0.000000,0.000000,0.250000,0,0);}
.m6e_c00094{transform:matrix(0.294488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294488,0.000000,0.000000,0.250000,0,0);}
.m7e_c00094{transform:matrix(0.295816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295816,0.000000,0.000000,0.250000,0,0);}
.m12_c00094{transform:matrix(0.296721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296721,0.000000,0.000000,0.250000,0,0);}
.m1d_c00094{transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);}
.m27_c00094{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m1c_c00094{transform:matrix(0.297518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297518,0.000000,0.000000,0.250000,0,0);}
.m93_c00094{transform:matrix(0.297852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297852,0.000000,0.000000,0.250000,0,0);}
.ma_c00094{transform:matrix(0.298364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298364,0.000000,0.000000,0.250000,0,0);}
.m35_c00094{transform:matrix(0.298499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298499,0.000000,0.000000,0.250000,0,0);}
.m7c_c00094{transform:matrix(0.298866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298866,0.000000,0.000000,0.250000,0,0);}
.m2e_c00094{transform:matrix(0.299304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299304,0.000000,0.000000,0.250000,0,0);}
.m8a_c00094{transform:matrix(0.299520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299520,0.000000,0.000000,0.250000,0,0);}
.m2a_c00094{transform:matrix(0.301063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301063,0.000000,0.000000,0.250000,0,0);}
.m79_c00094{transform:matrix(0.302158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302158,0.000000,0.000000,0.250000,0,0);}
.m3e_c00094{transform:matrix(0.302161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302161,0.000000,0.000000,0.250000,0,0);}
.m5a_c00094{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m5e_c00094{transform:matrix(0.302688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302688,0.000000,0.000000,0.250000,0,0);}
.m3b_c00094{transform:matrix(0.303609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303609,0.000000,0.000000,0.250000,0,0);}
.m4e_c00094{transform:matrix(0.303630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303630,0.000000,0.000000,0.250000,0,0);}
.m63_c00094{transform:matrix(0.303907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303907,0.000000,0.000000,0.250000,0,0);}
.m82_c00094{transform:matrix(0.304153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304153,0.000000,0.000000,0.250000,0,0);}
.m70_c00094{transform:matrix(0.304712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304712,0.000000,0.000000,0.250000,0,0);}
.m76_c00094{transform:matrix(0.305670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305670,0.000000,0.000000,0.250000,0,0);}
.mc_c00094{transform:matrix(0.306462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306462,0.000000,0.000000,0.250000,0,0);}
.m6a_c00094{transform:matrix(0.307567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307567,0.000000,0.000000,0.250000,0,0);}
.m17_c00094{transform:matrix(0.308174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308174,0.000000,0.000000,0.250000,0,0);}
.m9_c00094{transform:matrix(0.308583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308583,0.000000,0.000000,0.250000,0,0);}
.md_c00094{transform:matrix(0.309742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309742,0.000000,0.000000,0.250000,0,0);}
.m64_c00094{transform:matrix(0.311118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311118,0.000000,0.000000,0.250000,0,0);}
.m4b_c00094{transform:matrix(0.311780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311780,0.000000,0.000000,0.250000,0,0);}
.m45_c00094{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.m1f_c00094{transform:matrix(0.312889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312889,0.000000,0.000000,0.250000,0,0);}
.m50_c00094{transform:matrix(0.313247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313247,0.000000,0.000000,0.250000,0,0);}
.m43_c00094{transform:matrix(0.314543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314543,0.000000,0.000000,0.250000,0,0);}
.m95_c00094{transform:matrix(0.314569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314569,0.000000,0.000000,0.250000,0,0);}
.m6f_c00094{transform:matrix(0.315285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315285,0.000000,0.000000,0.250000,0,0);}
.m68_c00094{transform:matrix(0.316040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316040,0.000000,0.000000,0.250000,0,0);}
.m59_c00094{transform:matrix(0.316249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316249,0.000000,0.000000,0.250000,0,0);}
.m56_c00094{transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);}
.m1a_c00094{transform:matrix(0.317169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317169,0.000000,0.000000,0.250000,0,0);}
.m7a_c00094{transform:matrix(0.317869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317869,0.000000,0.000000,0.250000,0,0);}
.m90_c00094{transform:matrix(0.318077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318077,0.000000,0.000000,0.250000,0,0);}
.m84_c00094{transform:matrix(0.318082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318082,0.000000,0.000000,0.250000,0,0);}
.m62_c00094{transform:matrix(0.319042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319042,0.000000,0.000000,0.250000,0,0);}
.m25_c00094{transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);}
.m30_c00094{transform:matrix(0.320195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320195,0.000000,0.000000,0.250000,0,0);}
.m34_c00094{transform:matrix(0.321083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321083,0.000000,0.000000,0.250000,0,0);}
.m11_c00094{transform:matrix(0.321674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321674,0.000000,0.000000,0.250000,0,0);}
.m83_c00094{transform:matrix(0.322878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322878,0.000000,0.000000,0.250000,0,0);}
.m61_c00094{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.m48_c00094{transform:matrix(0.324061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324061,0.000000,0.000000,0.250000,0,0);}
.m3c_c00094{transform:matrix(0.324117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324117,0.000000,0.000000,0.250000,0,0);}
.m51_c00094{transform:matrix(0.325512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325512,0.000000,0.000000,0.250000,0,0);}
.m58_c00094{transform:matrix(0.326372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326372,0.000000,0.000000,0.250000,0,0);}
.mb_c00094{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.m69_c00094{transform:matrix(0.329535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329535,0.000000,0.000000,0.250000,0,0);}
.m49_c00094{transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);}
.m66_c00094{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m72_c00094{transform:matrix(0.333227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333227,0.000000,0.000000,0.250000,0,0);}
.m2_c00094{transform:matrix(0.333317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333317,0.000000,0.000000,0.250000,0,0);}
.m77_c00094{transform:matrix(0.334800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334800,0.000000,0.000000,0.250000,0,0);}
.m55_c00094{transform:matrix(0.335078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335078,0.000000,0.000000,0.250000,0,0);}
.m37_c00094{transform:matrix(0.336426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336426,0.000000,0.000000,0.250000,0,0);}
.m2f_c00094{transform:matrix(0.337905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337905,0.000000,0.000000,0.250000,0,0);}
.m16_c00094{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m73_c00094{transform:matrix(0.342744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342744,0.000000,0.000000,0.250000,0,0);}
.m5c_c00094{transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);}
.m98_c00094{transform:matrix(0.349338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349338,0.000000,0.000000,0.250000,0,0);}
.m32_c00094{transform:matrix(0.351400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351400,0.000000,0.000000,0.250000,0,0);}
.m88_c00094{transform:matrix(0.352906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352906,0.000000,0.000000,0.250000,0,0);}
.m3f_c00094{transform:matrix(0.353056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353056,0.000000,0.000000,0.250000,0,0);}
.m6c_c00094{transform:matrix(0.353894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353894,0.000000,0.000000,0.250000,0,0);}
.m8c_c00094{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m38_c00094{transform:matrix(0.357203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357203,0.000000,0.000000,0.250000,0,0);}
.m1e_c00094{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.v1_c00094{vertical-align:-18.532800px;}
.v0_c00094{vertical-align:0.000000px;}
.lse_c00094{letter-spacing:-2.375762px;}
.ls2_c00094{letter-spacing:0.000000px;}
.ls0_c00094{letter-spacing:0.157885px;}
.lsb_c00094{letter-spacing:0.831125px;}
.ls1_c00094{letter-spacing:0.933055px;}
.ls9_c00094{letter-spacing:1.819066px;}
.ls6_c00094{letter-spacing:1.960200px;}
.ls11_c00094{letter-spacing:2.062130px;}
.ls5_c00094{letter-spacing:2.673713px;}
.ls10_c00094{letter-spacing:3.112798px;}
.ls8_c00094{letter-spacing:3.552417px;}
.lsc_c00094{letter-spacing:3.779266px;}
.lsd_c00094{letter-spacing:3.781810px;}
.ls4_c00094{letter-spacing:3.920400px;}
.ls3_c00094{letter-spacing:4.158000px;}
.ls12_c00094{letter-spacing:24.235398px;}
.lsf_c00094{letter-spacing:49.896198px;}
.ls7_c00094{letter-spacing:51.321798px;}
.lsa_c00094{letter-spacing:57.024198px;}
.sc__c00094{text-shadow:none;}
.sc0_c00094{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00094{-webkit-text-stroke:0px transparent;}
.sc0_c00094{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00094{word-spacing:0.000000px;}
._2_c00094{width:25.584530px;}
._0_c00094{width:27.910674px;}
._1_c00094{width:30.309048px;}
._3_c00094{width:1709.745840px;}
.fc0_c00094{color:transparent;}
.fs1_c00094{font-size:20.394000px;}
.fsf_c00094{font-size:24.235398px;}
.fse_c00094{font-size:26.928000px;}
.fsb_c00094{font-size:27.720000px;}
.fs6_c00094{font-size:33.264000px;}
.fsd_c00094{font-size:37.818000px;}
.fs0_c00094{font-size:44.748000px;}
.fsc_c00094{font-size:45.144000px;}
.fsa_c00094{font-size:49.896198px;}
.fs4_c00094{font-size:51.321798px;}
.fs7_c00094{font-size:57.024198px;}
.fs8_c00094{font-size:64.548000px;}
.fs9_c00094{font-size:75.636198px;}
.fs3_c00094{font-size:78.408000px;}
.fs2_c00094{font-size:83.160000px;}
.fs5_c00094{font-size:87.714000px;}
.y0_c00094{bottom:0.000000px;}
.y22_c00094{bottom:1.693935px;}
.y21_c00094{bottom:10.242585px;}
.y20_c00094{bottom:26.641935px;}
.y1f_c00094{bottom:45.169785px;}
.y1_c00094{bottom:76.500000px;}
.y1e_c00094{bottom:169.914735px;}
.y1d_c00094{bottom:202.347135px;}
.y1c_c00094{bottom:230.502735px;}
.y1b_c00094{bottom:262.935135px;}
.y1a_c00094{bottom:265.786335px;}
.y19_c00094{bottom:297.862335px;}
.y18_c00094{bottom:329.581935px;}
.y17_c00094{bottom:361.652985px;}
.y16_c00094{bottom:393.728985px;}
.y15_c00094{bottom:425.804985px;}
.y14_c00094{bottom:457.885935px;}
.y13_c00094{bottom:489.961935px;}
.y12_c00094{bottom:521.681535px;}
.y11_c00094{bottom:554.821785px;}
.y10_c00094{bottom:586.541385px;}
.yf_c00094{bottom:618.265935px;}
.ye_c00094{bottom:656.039385px;}
.yd_c00094{bottom:681.705135px;}
.yc_c00094{bottom:714.132585px;}
.yb_c00094{bottom:746.213535px;}
.ya_c00094{bottom:778.289535px;}
.y9_c00094{bottom:810.009135px;}
.y8_c00094{bottom:842.085135px;}
.y7_c00094{bottom:873.804735px;}
.y6_c00094{bottom:905.875785px;}
.y5_c00094{bottom:937.951785px;}
.y4_c00094{bottom:1084.075785px;}
.y3_c00094{bottom:1092.629385px;}
.y2_c00094{bottom:1098.331785px;}
.h10_c00094{height:16.140775px;}
.h3_c00094{height:20.015596px;}
.hf_c00094{height:28.085063px;}
.hd_c00094{height:28.911094px;}
.hc_c00094{height:33.230868px;}
.h6_c00094{height:34.180317px;}
.h8_c00094{height:34.693313px;}
.he_c00094{height:37.116299px;}
.h9_c00094{height:37.978116px;}
.h2_c00094{height:43.917715px;}
.ha_c00094{height:67.321547px;}
.hb_c00094{height:74.232792px;}
.h5_c00094{height:76.953164px;}
.h4_c00094{height:81.616992px;}
.h7_c00094{height:86.086494px;}
.h1_c00094{height:1110.000000px;}
.h0_c00094{height:1263.000000px;}
.w1_c00094{width:733.500000px;}
.w0_c00094{width:892.500000px;}
.x0_c00094{left:0.000000px;}
.x13_c00094{left:68.829285px;}
.xd_c00094{left:70.334085px;}
.x1_c00094{left:79.500000px;}
.x37_c00094{left:90.836985px;}
.x21_c00094{left:102.325935px;}
.x2b_c00094{left:113.859435px;}
.x41_c00094{left:115.200885px;}
.x5_c00094{left:125.986935px;}
.x2e_c00094{left:136.129485px;}
.x14_c00094{left:146.875935px;}
.x49_c00094{left:148.761885px;}
.x2f_c00094{left:158.661885px;}
.x38_c00094{left:169.735035px;}
.xe_c00094{left:180.481485px;}
.x6_c00094{left:202.568385px;}
.x27_c00094{left:213.973185px;}
.xf_c00094{left:225.115635px;}
.x4b_c00094{left:235.183935px;}
.x22_c00094{left:236.421435px;}
.x46_c00094{left:240.703185px;}
.x28_c00094{left:247.128285px;}
.x3c_c00094{left:248.187585px;}
.x50_c00094{left:256.157085px;}
.x7_c00094{left:258.176685px;}
.x15_c00094{left:259.245885px;}
.x48_c00094{left:270.635835px;}
.x42_c00094{left:280.931835px;}
.x16_c00094{left:291.519885px;}
.x43_c00094{left:302.622735px;}
.x8_c00094{left:313.443435px;}
.x1c_c00094{left:324.363135px;}
.x47_c00094{left:326.199585px;}
.x10_c00094{left:335.822385px;}
.x3d_c00094{left:337.238085px;}
.x9_c00094{left:347.286585px;}
.x17_c00094{left:358.696335px;}
.x23_c00094{left:368.131035px;}
.x1d_c00094{left:369.705135px;}
.x44_c00094{left:380.788185px;}
.x36_c00094{left:383.243385px;}
.x30_c00094{left:391.846485px;}
.x29_c00094{left:402.290985px;}
.x1e_c00094{left:403.543335px;}
.x24_c00094{left:414.284835px;}
.x4d_c00094{left:424.996635px;}
.x35_c00094{left:426.036135px;}
.xa_c00094{left:435.129285px;}
.x3e_c00094{left:436.218285px;}
.x33_c00094{left:438.841785px;}
.x31_c00094{left:457.735935px;}
.x18_c00094{left:458.765535px;}
.x2_c00094{left:461.725635px;}
.x3_c00094{left:463.284885px;}
.x45_c00094{left:469.536735px;}
.x2c_c00094{left:480.916785px;}
.x19_c00094{left:491.588985px;}
.x34_c00094{left:493.667985px;}
.x25_c00094{left:502.691835px;}
.xb_c00094{left:513.532335px;}
.x4c_c00094{left:525.100485px;}
.x11_c00094{left:536.183535px;}
.x32_c00094{left:547.108185px;}
.x1a_c00094{left:557.577435px;}
.x1f_c00094{left:568.591185px;}
.x26_c00094{left:580.238535px;}
.x12_c00094{left:590.593935px;}
.x3f_c00094{left:591.707685px;}
.xc_c00094{left:601.934385px;}
.x4e_c00094{left:613.061985px;}
.x2a_c00094{left:624.847935px;}
.x2d_c00094{left:635.054835px;}
.x39_c00094{left:636.247785px;}
.x4_c00094{left:646.974435px;}
.x1b_c00094{left:656.458635px;}
.x20_c00094{left:657.725835px;}
.x3a_c00094{left:668.917785px;}
.x40_c00094{left:687.094185px;}
.x4a_c00094{left:688.113885px;}
.x51_c00094{left:693.831135px;}
.x52_c00094{left:695.162685px;}
.x3b_c00094{left:702.597585px;}
.x4f_c00094{left:714.992385px;}
@media print{
.v1_c00094{vertical-align:-16.473600pt;}
.v0_c00094{vertical-align:0.000000pt;}
.lse_c00094{letter-spacing:-2.111789pt;}
.ls2_c00094{letter-spacing:0.000000pt;}
.ls0_c00094{letter-spacing:0.140342pt;}
.lsb_c00094{letter-spacing:0.738778pt;}
.ls1_c00094{letter-spacing:0.829382pt;}
.ls9_c00094{letter-spacing:1.616947pt;}
.ls6_c00094{letter-spacing:1.742400pt;}
.ls11_c00094{letter-spacing:1.833005pt;}
.ls5_c00094{letter-spacing:2.376634pt;}
.ls10_c00094{letter-spacing:2.766931pt;}
.ls8_c00094{letter-spacing:3.157704pt;}
.lsc_c00094{letter-spacing:3.359347pt;}
.lsd_c00094{letter-spacing:3.361609pt;}
.ls4_c00094{letter-spacing:3.484800pt;}
.ls3_c00094{letter-spacing:3.696000pt;}
.ls12_c00094{letter-spacing:21.542576pt;}
.lsf_c00094{letter-spacing:44.352176pt;}
.ls7_c00094{letter-spacing:45.619376pt;}
.lsa_c00094{letter-spacing:50.688176pt;}
.ws0_c00094{word-spacing:0.000000pt;}
._2_c00094{width:22.741805pt;}
._0_c00094{width:24.809488pt;}
._1_c00094{width:26.941376pt;}
._3_c00094{width:1519.774080pt;}
.fs1_c00094{font-size:18.128000pt;}
.fsf_c00094{font-size:21.542576pt;}
.fse_c00094{font-size:23.936000pt;}
.fsb_c00094{font-size:24.640000pt;}
.fs6_c00094{font-size:29.568000pt;}
.fsd_c00094{font-size:33.616000pt;}
.fs0_c00094{font-size:39.776000pt;}
.fsc_c00094{font-size:40.128000pt;}
.fsa_c00094{font-size:44.352176pt;}
.fs4_c00094{font-size:45.619376pt;}
.fs7_c00094{font-size:50.688176pt;}
.fs8_c00094{font-size:57.376000pt;}
.fs9_c00094{font-size:67.232176pt;}
.fs3_c00094{font-size:69.696000pt;}
.fs2_c00094{font-size:73.920000pt;}
.fs5_c00094{font-size:77.968000pt;}
.y0_c00094{bottom:0.000000pt;}
.y22_c00094{bottom:1.505720pt;}
.y21_c00094{bottom:9.104520pt;}
.y20_c00094{bottom:23.681720pt;}
.y1f_c00094{bottom:40.150920pt;}
.y1_c00094{bottom:68.000000pt;}
.y1e_c00094{bottom:151.035320pt;}
.y1d_c00094{bottom:179.864120pt;}
.y1c_c00094{bottom:204.891320pt;}
.y1b_c00094{bottom:233.720120pt;}
.y1a_c00094{bottom:236.254520pt;}
.y19_c00094{bottom:264.766520pt;}
.y18_c00094{bottom:292.961720pt;}
.y17_c00094{bottom:321.469320pt;}
.y16_c00094{bottom:349.981320pt;}
.y15_c00094{bottom:378.493320pt;}
.y14_c00094{bottom:407.009720pt;}
.y13_c00094{bottom:435.521720pt;}
.y12_c00094{bottom:463.716920pt;}
.y11_c00094{bottom:493.174920pt;}
.y10_c00094{bottom:521.370120pt;}
.yf_c00094{bottom:549.569720pt;}
.ye_c00094{bottom:583.146120pt;}
.yd_c00094{bottom:605.960120pt;}
.yc_c00094{bottom:634.784520pt;}
.yb_c00094{bottom:663.300920pt;}
.ya_c00094{bottom:691.812920pt;}
.y9_c00094{bottom:720.008120pt;}
.y8_c00094{bottom:748.520120pt;}
.y7_c00094{bottom:776.715320pt;}
.y6_c00094{bottom:805.222920pt;}
.y5_c00094{bottom:833.734920pt;}
.y4_c00094{bottom:963.622920pt;}
.y3_c00094{bottom:971.226120pt;}
.y2_c00094{bottom:976.294920pt;}
.h10_c00094{height:14.347356pt;}
.h3_c00094{height:17.791641pt;}
.hf_c00094{height:24.964500pt;}
.hd_c00094{height:25.698750pt;}
.hc_c00094{height:29.538549pt;}
.h6_c00094{height:30.382504pt;}
.h8_c00094{height:30.838500pt;}
.he_c00094{height:32.992266pt;}
.h9_c00094{height:33.758325pt;}
.h2_c00094{height:39.037969pt;}
.ha_c00094{height:59.841375pt;}
.hb_c00094{height:65.984704pt;}
.h5_c00094{height:68.402813pt;}
.h4_c00094{height:72.548438pt;}
.h7_c00094{height:76.521328pt;}
.h1_c00094{height:986.666667pt;}
.h0_c00094{height:1122.666667pt;}
.w1_c00094{width:652.000000pt;}
.w0_c00094{width:793.333333pt;}
.x0_c00094{left:0.000000pt;}
.x13_c00094{left:61.181587pt;}
.xd_c00094{left:62.519187pt;}
.x1_c00094{left:70.666667pt;}
.x37_c00094{left:80.743987pt;}
.x21_c00094{left:90.956387pt;}
.x2b_c00094{left:101.208387pt;}
.x41_c00094{left:102.400787pt;}
.x5_c00094{left:111.988387pt;}
.x2e_c00094{left:121.003987pt;}
.x14_c00094{left:130.556387pt;}
.x49_c00094{left:132.232787pt;}
.x2f_c00094{left:141.032787pt;}
.x38_c00094{left:150.875587pt;}
.xe_c00094{left:160.427987pt;}
.x6_c00094{left:180.060787pt;}
.x27_c00094{left:190.198387pt;}
.xf_c00094{left:200.102787pt;}
.x4b_c00094{left:209.052387pt;}
.x22_c00094{left:210.152387pt;}
.x46_c00094{left:213.958387pt;}
.x28_c00094{left:219.669587pt;}
.x3c_c00094{left:220.611187pt;}
.x50_c00094{left:227.695187pt;}
.x7_c00094{left:229.490387pt;}
.x15_c00094{left:230.440787pt;}
.x48_c00094{left:240.565187pt;}
.x42_c00094{left:249.717187pt;}
.x16_c00094{left:259.128787pt;}
.x43_c00094{left:268.997987pt;}
.x8_c00094{left:278.616387pt;}
.x1c_c00094{left:288.322787pt;}
.x47_c00094{left:289.955187pt;}
.x10_c00094{left:298.508787pt;}
.x3d_c00094{left:299.767187pt;}
.x9_c00094{left:308.699187pt;}
.x17_c00094{left:318.841187pt;}
.x23_c00094{left:327.227587pt;}
.x1d_c00094{left:328.626787pt;}
.x44_c00094{left:338.478387pt;}
.x36_c00094{left:340.660787pt;}
.x30_c00094{left:348.307987pt;}
.x29_c00094{left:357.591987pt;}
.x1e_c00094{left:358.705187pt;}
.x24_c00094{left:368.253187pt;}
.x4d_c00094{left:377.774787pt;}
.x35_c00094{left:378.698787pt;}
.xa_c00094{left:386.781587pt;}
.x3e_c00094{left:387.749587pt;}
.x33_c00094{left:390.081587pt;}
.x31_c00094{left:406.876387pt;}
.x18_c00094{left:407.791587pt;}
.x2_c00094{left:410.422787pt;}
.x3_c00094{left:411.808787pt;}
.x45_c00094{left:417.365987pt;}
.x2c_c00094{left:427.481587pt;}
.x19_c00094{left:436.967987pt;}
.x34_c00094{left:438.815987pt;}
.x25_c00094{left:446.837187pt;}
.xb_c00094{left:456.473187pt;}
.x4c_c00094{left:466.755987pt;}
.x11_c00094{left:476.607587pt;}
.x32_c00094{left:486.318387pt;}
.x1a_c00094{left:495.624387pt;}
.x1f_c00094{left:505.414387pt;}
.x26_c00094{left:515.767587pt;}
.x12_c00094{left:524.972387pt;}
.x3f_c00094{left:525.962387pt;}
.xc_c00094{left:535.052787pt;}
.x4e_c00094{left:544.943987pt;}
.x2a_c00094{left:555.420387pt;}
.x2d_c00094{left:564.493187pt;}
.x39_c00094{left:565.553587pt;}
.x4_c00094{left:575.088387pt;}
.x1b_c00094{left:583.518787pt;}
.x20_c00094{left:584.645187pt;}
.x3a_c00094{left:594.593587pt;}
.x40_c00094{left:610.750387pt;}
.x4a_c00094{left:611.656787pt;}
.x51_c00094{left:616.738787pt;}
.x52_c00094{left:617.922387pt;}
.x3b_c00094{left:624.531187pt;}
.x4f_c00094{left:635.548787pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d7a8bec137d6d37444efa2c9.woff2')format("woff");}.ff1_c00095{font-family:ff1_c00095;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00095;src:url('chunks/assets/font_66440fb079e6923cae3fcb0b.woff2')format("woff");}.ff2_c00095{font-family:ff2_c00095;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00095;src:url('chunks/assets/font_3619dc1193a45a4eb53b5d13.woff2')format("woff");}.ff3_c00095{font-family:ff3_c00095;line-height:0.666000;font-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_c00095{transform:matrix(0.171151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171151,0.000000,0.000000,0.250000,0,0);}
.m14_c00095{transform:matrix(0.175430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175430,0.000000,0.000000,0.250000,0,0);}
.m53_c00095{transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);}
.m54_c00095{transform:matrix(0.213492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213492,0.000000,0.000000,0.250000,0,0);}
.m16_c00095{transform:matrix(0.239982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239982,0.000000,0.000000,0.250000,0,0);}
.m0_c00095{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m39_c00095{transform:matrix(0.250703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250703,0.000000,0.000000,0.250000,0,0);}
.m68_c00095{transform:matrix(0.250875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250875,0.000000,0.000000,0.250000,0,0);}
.m4c_c00095{transform:matrix(0.251593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251593,0.000000,0.000000,0.250000,0,0);}
.m5e_c00095{transform:matrix(0.251759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251759,0.000000,0.000000,0.250000,0,0);}
.mf_c00095{transform:matrix(0.252100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252100,0.000000,0.000000,0.250000,0,0);}
.m7e_c00095{transform:matrix(0.253254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253254,0.000000,0.000000,0.250000,0,0);}
.m2f_c00095{transform:matrix(0.253632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253632,0.000000,0.000000,0.250000,0,0);}
.mc_c00095{transform:matrix(0.254597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254597,0.000000,0.000000,0.250000,0,0);}
.m2d_c00095{transform:matrix(0.257563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257563,0.000000,0.000000,0.250000,0,0);}
.m11_c00095{transform:matrix(0.260231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260231,0.000000,0.000000,0.250000,0,0);}
.m75_c00095{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m4b_c00095{transform:matrix(0.261742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261742,0.000000,0.000000,0.250000,0,0);}
.m12_c00095{transform:matrix(0.262095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262095,0.000000,0.000000,0.250000,0,0);}
.m50_c00095{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m1c_c00095{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m74_c00095{transform:matrix(0.264073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264073,0.000000,0.000000,0.250000,0,0);}
.ma_c00095{transform:matrix(0.264850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264850,0.000000,0.000000,0.250000,0,0);}
.m89_c00095{transform:matrix(0.265230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265230,0.000000,0.000000,0.250000,0,0);}
.m18_c00095{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m61_c00095{transform:matrix(0.266364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266364,0.000000,0.000000,0.250000,0,0);}
.m47_c00095{transform:matrix(0.266384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266384,0.000000,0.000000,0.250000,0,0);}
.m82_c00095{transform:matrix(0.266684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266684,0.000000,0.000000,0.250000,0,0);}
.m6d_c00095{transform:matrix(0.266914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266914,0.000000,0.000000,0.250000,0,0);}
.m1_c00095{transform:matrix(0.267528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267528,0.000000,0.000000,0.250000,0,0);}
.m23_c00095{transform:matrix(0.267602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267602,0.000000,0.000000,0.250000,0,0);}
.m4_c00095{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m9d_c00095{transform:matrix(0.270459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270459,0.000000,0.000000,0.250000,0,0);}
.m9f_c00095{transform:matrix(0.270657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270657,0.000000,0.000000,0.250000,0,0);}
.m7_c00095{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m30_c00095{transform:matrix(0.270977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270977,0.000000,0.000000,0.250000,0,0);}
.m99_c00095{transform:matrix(0.271124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271124,0.000000,0.000000,0.250000,0,0);}
.m15_c00095{transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);}
.m5c_c00095{transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);}
.m32_c00095{transform:matrix(0.271940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271940,0.000000,0.000000,0.250000,0,0);}
.m56_c00095{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m36_c00095{transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);}
.m41_c00095{transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);}
.m9_c00095{transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);}
.m37_c00095{transform:matrix(0.274593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274593,0.000000,0.000000,0.250000,0,0);}
.m7a_c00095{transform:matrix(0.275336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275336,0.000000,0.000000,0.250000,0,0);}
.m24_c00095{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m3_c00095{transform:matrix(0.276734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276734,0.000000,0.000000,0.250000,0,0);}
.m40_c00095{transform:matrix(0.276938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276938,0.000000,0.000000,0.250000,0,0);}
.m58_c00095{transform:matrix(0.278302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278302,0.000000,0.000000,0.250000,0,0);}
.m97_c00095{transform:matrix(0.279178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279178,0.000000,0.000000,0.250000,0,0);}
.m60_c00095{transform:matrix(0.279350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279350,0.000000,0.000000,0.250000,0,0);}
.m6f_c00095{transform:matrix(0.279482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279482,0.000000,0.000000,0.250000,0,0);}
.m6c_c00095{transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);}
.m7d_c00095{transform:matrix(0.280398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280398,0.000000,0.000000,0.250000,0,0);}
.m10_c00095{transform:matrix(0.282873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282873,0.000000,0.000000,0.250000,0,0);}
.m2_c00095{transform:matrix(0.283090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283090,0.000000,0.000000,0.250000,0,0);}
.me_c00095{transform:matrix(0.285047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285047,0.000000,0.000000,0.250000,0,0);}
.mb_c00095{transform:matrix(0.285134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285134,0.000000,0.000000,0.250000,0,0);}
.m6b_c00095{transform:matrix(0.285915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285915,0.000000,0.000000,0.250000,0,0);}
.m98_c00095{transform:matrix(0.286039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286039,0.000000,0.000000,0.250000,0,0);}
.m5a_c00095{transform:matrix(0.286835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286835,0.000000,0.000000,0.250000,0,0);}
.m65_c00095{transform:matrix(0.286857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286857,0.000000,0.000000,0.250000,0,0);}
.m3f_c00095{transform:matrix(0.287131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287131,0.000000,0.000000,0.250000,0,0);}
.m3c_c00095{transform:matrix(0.287635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287635,0.000000,0.000000,0.250000,0,0);}
.m8e_c00095{transform:matrix(0.287837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287837,0.000000,0.000000,0.250000,0,0);}
.ma3_c00095{transform:matrix(0.288128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288128,0.000000,0.000000,0.250000,0,0);}
.m63_c00095{transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);}
.m46_c00095{transform:matrix(0.290030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290030,0.000000,0.000000,0.250000,0,0);}
.m2e_c00095{transform:matrix(0.290272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290272,0.000000,0.000000,0.250000,0,0);}
.m3d_c00095{transform:matrix(0.290336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290336,0.000000,0.000000,0.250000,0,0);}
.m22_c00095{transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);}
.m72_c00095{transform:matrix(0.290836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290836,0.000000,0.000000,0.250000,0,0);}
.m49_c00095{transform:matrix(0.291658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291658,0.000000,0.000000,0.250000,0,0);}
.m33_c00095{transform:matrix(0.291994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291994,0.000000,0.000000,0.250000,0,0);}
.m48_c00095{transform:matrix(0.292187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292187,0.000000,0.000000,0.250000,0,0);}
.m7b_c00095{transform:matrix(0.292563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292563,0.000000,0.000000,0.250000,0,0);}
.m64_c00095{transform:matrix(0.292888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292888,0.000000,0.000000,0.250000,0,0);}
.m90_c00095{transform:matrix(0.293496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293496,0.000000,0.000000,0.250000,0,0);}
.m1f_c00095{transform:matrix(0.293745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293745,0.000000,0.000000,0.250000,0,0);}
.m5f_c00095{transform:matrix(0.293749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293749,0.000000,0.000000,0.250000,0,0);}
.m59_c00095{transform:matrix(0.294465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294465,0.000000,0.000000,0.250000,0,0);}
.m35_c00095{transform:matrix(0.295259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295259,0.000000,0.000000,0.250000,0,0);}
.m91_c00095{transform:matrix(0.295879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295879,0.000000,0.000000,0.250000,0,0);}
.m5b_c00095{transform:matrix(0.296388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296388,0.000000,0.000000,0.250000,0,0);}
.m44_c00095{transform:matrix(0.297864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297864,0.000000,0.000000,0.250000,0,0);}
.m26_c00095{transform:matrix(0.298247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298247,0.000000,0.000000,0.250000,0,0);}
.m4a_c00095{transform:matrix(0.298912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298912,0.000000,0.000000,0.250000,0,0);}
.m9a_c00095{transform:matrix(0.300441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300441,0.000000,0.000000,0.250000,0,0);}
.m81_c00095{transform:matrix(0.300548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300548,0.000000,0.000000,0.250000,0,0);}
.m6a_c00095{transform:matrix(0.301368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301368,0.000000,0.000000,0.250000,0,0);}
.ma2_c00095{transform:matrix(0.302081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302081,0.000000,0.000000,0.250000,0,0);}
.m4e_c00095{transform:matrix(0.302483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302483,0.000000,0.000000,0.250000,0,0);}
.m96_c00095{transform:matrix(0.302508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302508,0.000000,0.000000,0.250000,0,0);}
.m1b_c00095{transform:matrix(0.302754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302754,0.000000,0.000000,0.250000,0,0);}
.m55_c00095{transform:matrix(0.302973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302973,0.000000,0.000000,0.250000,0,0);}
.m70_c00095{transform:matrix(0.303150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303150,0.000000,0.000000,0.250000,0,0);}
.m28_c00095{transform:matrix(0.303162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303162,0.000000,0.000000,0.250000,0,0);}
.m3a_c00095{transform:matrix(0.303632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303632,0.000000,0.000000,0.250000,0,0);}
.m94_c00095{transform:matrix(0.304812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304812,0.000000,0.000000,0.250000,0,0);}
.m45_c00095{transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);}
.md_c00095{transform:matrix(0.305571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305571,0.000000,0.000000,0.250000,0,0);}
.m34_c00095{transform:matrix(0.306147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306147,0.000000,0.000000,0.250000,0,0);}
.m31_c00095{transform:matrix(0.307853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307853,0.000000,0.000000,0.250000,0,0);}
.m9b_c00095{transform:matrix(0.308268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308268,0.000000,0.000000,0.250000,0,0);}
.m2b_c00095{transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);}
.m73_c00095{transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);}
.m79_c00095{transform:matrix(0.309240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309240,0.000000,0.000000,0.250000,0,0);}
.m8f_c00095{transform:matrix(0.309297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309297,0.000000,0.000000,0.250000,0,0);}
.m88_c00095{transform:matrix(0.309554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309554,0.000000,0.000000,0.250000,0,0);}
.ma0_c00095{transform:matrix(0.310202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310202,0.000000,0.000000,0.250000,0,0);}
.m71_c00095{transform:matrix(0.310544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310544,0.000000,0.000000,0.250000,0,0);}
.m84_c00095{transform:matrix(0.312319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312319,0.000000,0.000000,0.250000,0,0);}
.m87_c00095{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.m93_c00095{transform:matrix(0.312879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312879,0.000000,0.000000,0.250000,0,0);}
.m5_c00095{transform:matrix(0.313595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313595,0.000000,0.000000,0.250000,0,0);}
.m1d_c00095{transform:matrix(0.314613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314613,0.000000,0.000000,0.250000,0,0);}
.m5d_c00095{transform:matrix(0.314720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314720,0.000000,0.000000,0.250000,0,0);}
.m8d_c00095{transform:matrix(0.316326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316326,0.000000,0.000000,0.250000,0,0);}
.m62_c00095{transform:matrix(0.316537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316537,0.000000,0.000000,0.250000,0,0);}
.m1e_c00095{transform:matrix(0.316696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316696,0.000000,0.000000,0.250000,0,0);}
.m76_c00095{transform:matrix(0.316703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316703,0.000000,0.000000,0.250000,0,0);}
.m6_c00095{transform:matrix(0.317515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317515,0.000000,0.000000,0.250000,0,0);}
.m51_c00095{transform:matrix(0.317869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317869,0.000000,0.000000,0.250000,0,0);}
.m69_c00095{transform:matrix(0.318082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318082,0.000000,0.000000,0.250000,0,0);}
.m2c_c00095{transform:matrix(0.318559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318559,0.000000,0.000000,0.250000,0,0);}
.m27_c00095{transform:matrix(0.319843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319843,0.000000,0.000000,0.250000,0,0);}
.m43_c00095{transform:matrix(0.320720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320720,0.000000,0.000000,0.250000,0,0);}
.m19_c00095{transform:matrix(0.321234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321234,0.000000,0.000000,0.250000,0,0);}
.m2a_c00095{transform:matrix(0.321585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321585,0.000000,0.000000,0.250000,0,0);}
.m3e_c00095{transform:matrix(0.322271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322271,0.000000,0.000000,0.250000,0,0);}
.m42_c00095{transform:matrix(0.323602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323602,0.000000,0.000000,0.250000,0,0);}
.m8_c00095{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.m78_c00095{transform:matrix(0.323918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323918,0.000000,0.000000,0.250000,0,0);}
.m4f_c00095{transform:matrix(0.324175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324175,0.000000,0.000000,0.250000,0,0);}
.m8a_c00095{transform:matrix(0.324879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324879,0.000000,0.000000,0.250000,0,0);}
.m67_c00095{transform:matrix(0.325329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325329,0.000000,0.000000,0.250000,0,0);}
.m7c_c00095{transform:matrix(0.326842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326842,0.000000,0.000000,0.250000,0,0);}
.m66_c00095{transform:matrix(0.326875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326875,0.000000,0.000000,0.250000,0,0);}
.m21_c00095{transform:matrix(0.327729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327729,0.000000,0.000000,0.250000,0,0);}
.m86_c00095{transform:matrix(0.327736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327736,0.000000,0.000000,0.250000,0,0);}
.m92_c00095{transform:matrix(0.328170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328170,0.000000,0.000000,0.250000,0,0);}
.m83_c00095{transform:matrix(0.330139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330139,0.000000,0.000000,0.250000,0,0);}
.ma1_c00095{transform:matrix(0.330609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330609,0.000000,0.000000,0.250000,0,0);}
.m29_c00095{transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);}
.m95_c00095{transform:matrix(0.331698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331698,0.000000,0.000000,0.250000,0,0);}
.m20_c00095{transform:matrix(0.334191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334191,0.000000,0.000000,0.250000,0,0);}
.m80_c00095{transform:matrix(0.335670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335670,0.000000,0.000000,0.250000,0,0);}
.m9e_c00095{transform:matrix(0.338858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338858,0.000000,0.000000,0.250000,0,0);}
.m25_c00095{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m1a_c00095{transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);}
.m6e_c00095{transform:matrix(0.342744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342744,0.000000,0.000000,0.250000,0,0);}
.m9c_c00095{transform:matrix(0.344056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344056,0.000000,0.000000,0.250000,0,0);}
.m7f_c00095{transform:matrix(0.346958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346958,0.000000,0.000000,0.250000,0,0);}
.m8b_c00095{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m17_c00095{transform:matrix(0.349696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349696,0.000000,0.000000,0.250000,0,0);}
.m8c_c00095{transform:matrix(0.350280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350280,0.000000,0.000000,0.250000,0,0);}
.m85_c00095{transform:matrix(0.354539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354539,0.000000,0.000000,0.250000,0,0);}
.m52_c00095{transform:matrix(0.354932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354932,0.000000,0.000000,0.250000,0,0);}
.m4d_c00095{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m77_c00095{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m57_c00095{transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);}
.m38_c00095{transform:matrix(0.372071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372071,0.000000,0.000000,0.250000,0,0);}
.m3b_c00095{transform:matrix(0.392742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392742,0.000000,0.000000,0.250000,0,0);}
.v0_c00095{vertical-align:0.000000px;}
.ls4_c00095{letter-spacing:-4.518367px;}
.ls6_c00095{letter-spacing:-2.375762px;}
.ls3_c00095{letter-spacing:-2.058217px;}
.ls0_c00095{letter-spacing:0.000000px;}
.ls9_c00095{letter-spacing:1.113394px;}
.lsa_c00095{letter-spacing:1.638727px;}
.ls5_c00095{letter-spacing:2.062130px;}
.ls8_c00095{letter-spacing:3.484810px;}
.lsb_c00095{letter-spacing:3.489156px;}
.ls1_c00095{letter-spacing:3.920400px;}
.ls2_c00095{letter-spacing:4.276810px;}
.ls7_c00095{letter-spacing:49.896198px;}
.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:-19.602000px;}
.ws1_c00095{word-spacing:0.000000px;}
._1_c00095{width:7.683984px;}
._0_c00095{width:10.036224px;}
._2_c00095{width:11.918016px;}
._3_c00095{width:35.754048px;}
.fc0_c00095{color:transparent;}
.fs0_c00095{font-size:22.176000px;}
.fs7_c00095{font-size:33.660000px;}
.fs5_c00095{font-size:49.896198px;}
.fs3_c00095{font-size:58.806198px;}
.fs6_c00095{font-size:69.696198px;}
.fs1_c00095{font-size:78.408000px;}
.fs2_c00095{font-size:85.536198px;}
.fs4_c00095{font-size:129.096198px;}
.y20_c00095{bottom:-1.879965px;}
.y0_c00095{bottom:0.000000px;}
.y1_c00095{bottom:76.500000px;}
.y1f_c00095{bottom:122.869935px;}
.y1e_c00095{bottom:185.239935px;}
.y1d_c00095{bottom:219.092985px;}
.y1c_c00095{bottom:251.173935px;}
.y3_c00095{bottom:276.835329px;}
.y1b_c00095{bottom:283.249935px;}
.y1a_c00095{bottom:315.325935px;}
.y19_c00095{bottom:349.178985px;}
.y18_c00095{bottom:381.259935px;}
.y17_c00095{bottom:413.335935px;}
.y16_c00095{bottom:446.476185px;}
.y15_c00095{bottom:478.557135px;}
.y14_c00095{bottom:542.347785px;}
.y2_c00095{bottom:558.742185px;}
.y13_c00095{bottom:574.780185px;}
.y12_c00095{bottom:607.217535px;}
.y11_c00095{bottom:640.001385px;}
.y10_c00095{bottom:672.082335px;}
.yf_c00095{bottom:704.153385px;}
.ye_c00095{bottom:736.590735px;}
.yd_c00095{bottom:768.305385px;}
.yc_c00095{bottom:801.094185px;}
.yb_c00095{bottom:832.818735px;}
.ya_c00095{bottom:866.315385px;}
.y9_c00095{bottom:898.391385px;}
.y5_c00095{bottom:898.747785px;}
.y8_c00095{bottom:921.562335px;}
.y4_c00095{bottom:931.536585px;}
.y7_c00095{bottom:931.897935px;}
.y6_c00095{bottom:1082.293785px;}
.h2_c00095{height:23.128875px;}
.h9_c00095{height:33.035449px;}
.h7_c00095{height:33.230868px;}
.h5_c00095{height:57.715067px;}
.h8_c00095{height:68.403007px;}
.h3_c00095{height:76.953164px;}
.h4_c00095{height:83.949101px;}
.h6_c00095{height:126.700858px;}
.h1_c00095{height:1110.000000px;}
.h0_c00095{height:1263.000000px;}
.w1_c00095{width:733.500000px;}
.w0_c00095{width:892.500000px;}
.x0_c00095{left:0.000000px;}
.x3_c00095{left:53.388651px;}
.x2_c00095{left:72.992235px;}
.x22_c00095{left:78.348135px;}
.x1_c00095{left:79.500000px;}
.x60_c00095{left:80.704335px;}
.x52_c00095{left:100.479585px;}
.xc_c00095{left:111.532935px;}
.x36_c00095{left:113.111985px;}
.x23_c00095{left:122.997135px;}
.x4_c00095{left:124.175235px;}
.x2d_c00095{left:134.535585px;}
.x3e_c00095{left:144.351435px;}
.x19_c00095{left:146.267085px;}
.xd_c00095{left:155.919585px;}
.x4e_c00095{left:157.632285px;}
.x4b_c00095{left:163.988085px;}
.x24_c00095{left:167.304585px;}
.x1a_c00095{left:179.006385px;}
.x2e_c00095{left:189.228135px;}
.x5d_c00095{left:191.138835px;}
.x44_c00095{left:200.083485px;}
.x5_c00095{left:210.597285px;}
.x37_c00095{left:212.230785px;}
.x2f_c00095{left:221.660535px;}
.x4f_c00095{left:224.254335px;}
.x1b_c00095{left:233.887035px;}
.x30_c00095{left:244.524585px;}
.x45_c00095{left:245.653185px;}
.x25_c00095{left:257.097585px;}
.x1c_c00095{left:267.061935px;}
.x57_c00095{left:268.838985px;}
.x3f_c00095{left:278.392485px;}
.x5a_c00095{left:279.877485px;}
.x6_c00095{left:289.559685px;}
.x4c_c00095{left:290.604135px;}
.x31_c00095{left:299.340885px;}
.xe_c00095{left:300.959535px;}
.x38_c00095{left:312.012885px;}
.xf_c00095{left:321.427785px;}
.x7_c00095{left:322.511835px;}
.x48_c00095{left:324.090885px;}
.x5e_c00095{left:335.149185px;}
.x42_c00095{left:344.182935px;}
.x1d_c00095{left:355.855035px;}
.x46_c00095{left:356.909385px;}
.x39_c00095{left:367.408335px;}
.x53_c00095{left:378.110235px;}
.x32_c00095{left:379.327935px;}
.x3a_c00095{left:389.708085px;}
.x1e_c00095{left:399.835785px;}
.x3b_c00095{left:400.994085px;}
.x10_c00095{left:403.543335px;}
.x26_c00095{left:412.487985px;}
.x8_c00095{left:423.031485px;}
.x50_c00095{left:424.249185px;}
.x29_c00095{left:434.253135px;}
.x9_c00095{left:444.514485px;}
.x58_c00095{left:446.296485px;}
.x51_c00095{left:456.310335px;}
.x49_c00095{left:468.096285px;}
.x11_c00095{left:477.134985px;}
.x1f_c00095{left:478.743735px;}
.x2a_c00095{left:480.307935px;}
.x27_c00095{left:489.118935px;}
.x33_c00095{left:490.128735px;}
.x3c_c00095{left:500.711835px;}
.x5b_c00095{left:501.964185px;}
.x40_c00095{left:512.304735px;}
.x34_c00095{left:522.600735px;}
.x12_c00095{left:532.951185px;}
.xa_c00095{left:534.381735px;}
.x2b_c00095{left:545.459835px;}
.x4d_c00095{left:546.469635px;}
.x41_c00095{left:555.755835px;}
.xb_c00095{left:566.824035px;}
.x28_c00095{left:577.055685px;}
.x3d_c00095{left:578.560485px;}
.x20_c00095{left:588.168435px;}
.x35_c00095{left:589.405935px;}
.x47_c00095{left:599.083185px;}
.x14_c00095{left:609.997935px;}
.x5c_c00095{left:611.374035px;}
.x17_c00095{left:613.121385px;}
.x15_c00095{left:621.006735px;}
.x43_c00095{left:622.041285px;}
.x4a_c00095{left:623.120385px;}
.x5f_c00095{left:633.129285px;}
.x59_c00095{left:644.880585px;}
.x2c_c00095{left:654.745935px;}
.x13_c00095{left:655.879485px;}
.x54_c00095{left:666.150735px;}
.x21_c00095{left:667.264485px;}
.x18_c00095{left:677.258535px;}
.x62_c00095{left:680.248335px;}
.x61_c00095{left:682.436235px;}
.x55_c00095{left:686.381385px;}
.x56_c00095{left:688.895985px;}
.x16_c00095{left:698.197035px;}
@media print{
.v0_c00095{vertical-align:0.000000pt;}
.ls4_c00095{letter-spacing:-4.016326pt;}
.ls6_c00095{letter-spacing:-2.111789pt;}
.ls3_c00095{letter-spacing:-1.829526pt;}
.ls0_c00095{letter-spacing:0.000000pt;}
.ls9_c00095{letter-spacing:0.989683pt;}
.lsa_c00095{letter-spacing:1.456646pt;}
.ls5_c00095{letter-spacing:1.833005pt;}
.ls8_c00095{letter-spacing:3.097609pt;}
.lsb_c00095{letter-spacing:3.101472pt;}
.ls1_c00095{letter-spacing:3.484800pt;}
.ls2_c00095{letter-spacing:3.801609pt;}
.ls7_c00095{letter-spacing:44.352176pt;}
.ws0_c00095{word-spacing:-17.424000pt;}
.ws1_c00095{word-spacing:0.000000pt;}
._1_c00095{width:6.830208pt;}
._0_c00095{width:8.921088pt;}
._2_c00095{width:10.593792pt;}
._3_c00095{width:31.781376pt;}
.fs0_c00095{font-size:19.712000pt;}
.fs7_c00095{font-size:29.920000pt;}
.fs5_c00095{font-size:44.352176pt;}
.fs3_c00095{font-size:52.272176pt;}
.fs6_c00095{font-size:61.952176pt;}
.fs1_c00095{font-size:69.696000pt;}
.fs2_c00095{font-size:76.032176pt;}
.fs4_c00095{font-size:114.752176pt;}
.y20_c00095{bottom:-1.671080pt;}
.y0_c00095{bottom:0.000000pt;}
.y1_c00095{bottom:68.000000pt;}
.y1f_c00095{bottom:109.217720pt;}
.y1e_c00095{bottom:164.657720pt;}
.y1d_c00095{bottom:194.749320pt;}
.y1c_c00095{bottom:223.265720pt;}
.y3_c00095{bottom:246.075848pt;}
.y1b_c00095{bottom:251.777720pt;}
.y1a_c00095{bottom:280.289720pt;}
.y19_c00095{bottom:310.381320pt;}
.y18_c00095{bottom:338.897720pt;}
.y17_c00095{bottom:367.409720pt;}
.y16_c00095{bottom:396.867720pt;}
.y15_c00095{bottom:425.384120pt;}
.y14_c00095{bottom:482.086920pt;}
.y2_c00095{bottom:496.659720pt;}
.y13_c00095{bottom:510.915720pt;}
.y12_c00095{bottom:539.748920pt;}
.y11_c00095{bottom:568.890120pt;}
.y10_c00095{bottom:597.406520pt;}
.yf_c00095{bottom:625.914120pt;}
.ye_c00095{bottom:654.747320pt;}
.yd_c00095{bottom:682.938120pt;}
.yc_c00095{bottom:712.083720pt;}
.yb_c00095{bottom:740.283320pt;}
.ya_c00095{bottom:770.058120pt;}
.y9_c00095{bottom:798.570120pt;}
.y5_c00095{bottom:798.886920pt;}
.y8_c00095{bottom:819.166520pt;}
.y4_c00095{bottom:828.032520pt;}
.y7_c00095{bottom:828.353720pt;}
.y6_c00095{bottom:962.038920pt;}
.h2_c00095{height:20.559000pt;}
.h9_c00095{height:29.364844pt;}
.h7_c00095{height:29.538549pt;}
.h5_c00095{height:51.302282pt;}
.h8_c00095{height:60.802673pt;}
.h3_c00095{height:68.402813pt;}
.h4_c00095{height:74.621423pt;}
.h6_c00095{height:112.622985pt;}
.h1_c00095{height:986.666667pt;}
.h0_c00095{height:1122.666667pt;}
.w1_c00095{width:652.000000pt;}
.w0_c00095{width:793.333333pt;}
.x0_c00095{left:0.000000pt;}
.x3_c00095{left:47.456579pt;}
.x2_c00095{left:64.881987pt;}
.x22_c00095{left:69.642787pt;}
.x1_c00095{left:70.666667pt;}
.x60_c00095{left:71.737187pt;}
.x52_c00095{left:89.315187pt;}
.xc_c00095{left:99.140387pt;}
.x36_c00095{left:100.543987pt;}
.x23_c00095{left:109.330787pt;}
.x4_c00095{left:110.377987pt;}
.x2d_c00095{left:119.587187pt;}
.x3e_c00095{left:128.312387pt;}
.x19_c00095{left:130.015187pt;}
.xd_c00095{left:138.595187pt;}
.x4e_c00095{left:140.117587pt;}
.x4b_c00095{left:145.767187pt;}
.x24_c00095{left:148.715187pt;}
.x1a_c00095{left:159.116787pt;}
.x2e_c00095{left:168.202787pt;}
.x5d_c00095{left:169.901187pt;}
.x44_c00095{left:177.851987pt;}
.x5_c00095{left:187.197587pt;}
.x37_c00095{left:188.649587pt;}
.x2f_c00095{left:197.031587pt;}
.x4f_c00095{left:199.337187pt;}
.x1b_c00095{left:207.899587pt;}
.x30_c00095{left:217.355187pt;}
.x45_c00095{left:218.358387pt;}
.x25_c00095{left:228.531187pt;}
.x1c_c00095{left:237.388387pt;}
.x57_c00095{left:238.967987pt;}
.x3f_c00095{left:247.459987pt;}
.x5a_c00095{left:248.779987pt;}
.x6_c00095{left:257.386387pt;}
.x4c_c00095{left:258.314787pt;}
.x31_c00095{left:266.080787pt;}
.xe_c00095{left:267.519587pt;}
.x38_c00095{left:277.344787pt;}
.xf_c00095{left:285.713587pt;}
.x7_c00095{left:286.677187pt;}
.x48_c00095{left:288.080787pt;}
.x5e_c00095{left:297.910387pt;}
.x42_c00095{left:305.940387pt;}
.x1d_c00095{left:316.315587pt;}
.x46_c00095{left:317.252787pt;}
.x39_c00095{left:326.585187pt;}
.x53_c00095{left:336.097987pt;}
.x32_c00095{left:337.180387pt;}
.x3a_c00095{left:346.407187pt;}
.x1e_c00095{left:355.409587pt;}
.x3b_c00095{left:356.439187pt;}
.x10_c00095{left:358.705187pt;}
.x26_c00095{left:366.655987pt;}
.x8_c00095{left:376.027987pt;}
.x50_c00095{left:377.110387pt;}
.x29_c00095{left:386.002787pt;}
.x9_c00095{left:395.123987pt;}
.x58_c00095{left:396.707987pt;}
.x51_c00095{left:405.609187pt;}
.x49_c00095{left:416.085587pt;}
.x11_c00095{left:424.119987pt;}
.x1f_c00095{left:425.549987pt;}
.x2a_c00095{left:426.940387pt;}
.x27_c00095{left:434.772387pt;}
.x33_c00095{left:435.669987pt;}
.x3c_c00095{left:445.077187pt;}
.x5b_c00095{left:446.190387pt;}
.x40_c00095{left:455.381987pt;}
.x34_c00095{left:464.533987pt;}
.x12_c00095{left:473.734387pt;}
.xa_c00095{left:475.005987pt;}
.x2b_c00095{left:484.853187pt;}
.x4d_c00095{left:485.750787pt;}
.x41_c00095{left:494.005187pt;}
.xb_c00095{left:503.843587pt;}
.x28_c00095{left:512.938387pt;}
.x3d_c00095{left:514.275987pt;}
.x20_c00095{left:522.816387pt;}
.x35_c00095{left:523.916387pt;}
.x47_c00095{left:532.518387pt;}
.x14_c00095{left:542.220387pt;}
.x5c_c00095{left:543.443587pt;}
.x17_c00095{left:544.996787pt;}
.x15_c00095{left:552.005987pt;}
.x43_c00095{left:552.925587pt;}
.x4a_c00095{left:553.884787pt;}
.x5f_c00095{left:562.781587pt;}
.x59_c00095{left:573.227187pt;}
.x2c_c00095{left:581.996387pt;}
.x13_c00095{left:583.003987pt;}
.x54_c00095{left:592.133987pt;}
.x21_c00095{left:593.123987pt;}
.x18_c00095{left:602.007587pt;}
.x62_c00095{left:604.665187pt;}
.x61_c00095{left:606.609987pt;}
.x55_c00095{left:610.116787pt;}
.x56_c00095{left:612.351987pt;}
.x16_c00095{left:620.619587pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c20173432cf00e5bba6b50dd.woff2')format("woff");}.ff1_c00096{font-family:ff1_c00096;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00096;src:url('chunks/assets/font_3f445792f8704afecbb6ad52.woff2')format("woff");}.ff2_c00096{font-family:ff2_c00096;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00096;src:url('chunks/assets/font_d109b5ab0b714f71a0cd3829.woff2')format("woff");}.ff3_c00096{font-family:ff3_c00096;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ma3_c00096{transform:matrix(0.105042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105042,0.000000,0.000000,0.250000,0,0);}
.m98_c00096{transform:matrix(0.198549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198549,0.000000,0.000000,0.250000,0,0);}
.m68_c00096{transform:matrix(0.245407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245407,0.000000,0.000000,0.250000,0,0);}
.m0_c00096{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m62_c00096{transform:matrix(0.250052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250052,0.000000,0.000000,0.250000,0,0);}
.m9a_c00096{transform:matrix(0.250188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250188,0.000000,0.000000,0.250000,0,0);}
.m78_c00096{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.m46_c00096{transform:matrix(0.252595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252595,0.000000,0.000000,0.250000,0,0);}
.m2f_c00096{transform:matrix(0.257600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257600,0.000000,0.000000,0.250000,0,0);}
.m33_c00096{transform:matrix(0.257987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257987,0.000000,0.000000,0.250000,0,0);}
.m23_c00096{transform:matrix(0.259568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259568,0.000000,0.000000,0.250000,0,0);}
.mc_c00096{transform:matrix(0.259641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259641,0.000000,0.000000,0.250000,0,0);}
.m9_c00096{transform:matrix(0.260559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260559,0.000000,0.000000,0.250000,0,0);}
.m52_c00096{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m1_c00096{transform:matrix(0.262501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262501,0.000000,0.000000,0.250000,0,0);}
.m28_c00096{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m47_c00096{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m3b_c00096{transform:matrix(0.266364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266364,0.000000,0.000000,0.250000,0,0);}
.m26_c00096{transform:matrix(0.266555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266555,0.000000,0.000000,0.250000,0,0);}
.m3f_c00096{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.m8f_c00096{transform:matrix(0.267324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267324,0.000000,0.000000,0.250000,0,0);}
.m7_c00096{transform:matrix(0.267676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267676,0.000000,0.000000,0.250000,0,0);}
.m2d_c00096{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m59_c00096{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.m4a_c00096{transform:matrix(0.269234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269234,0.000000,0.000000,0.250000,0,0);}
.m8_c00096{transform:matrix(0.269857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269857,0.000000,0.000000,0.250000,0,0);}
.m2e_c00096{transform:matrix(0.270280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270280,0.000000,0.000000,0.250000,0,0);}
.m7b_c00096{transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);}
.m7e_c00096{transform:matrix(0.271650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271650,0.000000,0.000000,0.250000,0,0);}
.m5_c00096{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m4b_c00096{transform:matrix(0.272672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272672,0.000000,0.000000,0.250000,0,0);}
.m69_c00096{transform:matrix(0.274157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274157,0.000000,0.000000,0.250000,0,0);}
.m99_c00096{transform:matrix(0.275040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275040,0.000000,0.000000,0.250000,0,0);}
.m53_c00096{transform:matrix(0.276251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276251,0.000000,0.000000,0.250000,0,0);}
.m22_c00096{transform:matrix(0.276341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276341,0.000000,0.000000,0.250000,0,0);}
.m25_c00096{transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);}
.m86_c00096{transform:matrix(0.277679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277679,0.000000,0.000000,0.250000,0,0);}
.m11_c00096{transform:matrix(0.277748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277748,0.000000,0.000000,0.250000,0,0);}
.m72_c00096{transform:matrix(0.280247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280247,0.000000,0.000000,0.250000,0,0);}
.m65_c00096{transform:matrix(0.280367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280367,0.000000,0.000000,0.250000,0,0);}
.m79_c00096{transform:matrix(0.280737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280737,0.000000,0.000000,0.250000,0,0);}
.m6f_c00096{transform:matrix(0.281043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281043,0.000000,0.000000,0.250000,0,0);}
.m9f_c00096{transform:matrix(0.281818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281818,0.000000,0.000000,0.250000,0,0);}
.m94_c00096{transform:matrix(0.282018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282018,0.000000,0.000000,0.250000,0,0);}
.m8d_c00096{transform:matrix(0.282049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282049,0.000000,0.000000,0.250000,0,0);}
.m13_c00096{transform:matrix(0.282710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282710,0.000000,0.000000,0.250000,0,0);}
.m63_c00096{transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);}
.m4d_c00096{transform:matrix(0.283152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283152,0.000000,0.000000,0.250000,0,0);}
.m55_c00096{transform:matrix(0.283477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283477,0.000000,0.000000,0.250000,0,0);}
.m5a_c00096{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m50_c00096{transform:matrix(0.283938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283938,0.000000,0.000000,0.250000,0,0);}
.m75_c00096{transform:matrix(0.284686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284686,0.000000,0.000000,0.250000,0,0);}
.m48_c00096{transform:matrix(0.286810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286810,0.000000,0.000000,0.250000,0,0);}
.m74_c00096{transform:matrix(0.287072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287072,0.000000,0.000000,0.250000,0,0);}
.m6e_c00096{transform:matrix(0.288441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288441,0.000000,0.000000,0.250000,0,0);}
.m83_c00096{transform:matrix(0.288642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288642,0.000000,0.000000,0.250000,0,0);}
.m30_c00096{transform:matrix(0.288806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288806,0.000000,0.000000,0.250000,0,0);}
.m70_c00096{transform:matrix(0.289956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289956,0.000000,0.000000,0.250000,0,0);}
.m5d_c00096{transform:matrix(0.290268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290268,0.000000,0.000000,0.250000,0,0);}
.m82_c00096{transform:matrix(0.290772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290772,0.000000,0.000000,0.250000,0,0);}
.m2a_c00096{transform:matrix(0.291008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291008,0.000000,0.000000,0.250000,0,0);}
.m10_c00096{transform:matrix(0.291710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291710,0.000000,0.000000,0.250000,0,0);}
.m39_c00096{transform:matrix(0.292334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292334,0.000000,0.000000,0.250000,0,0);}
.m14_c00096{transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);}
.m64_c00096{transform:matrix(0.293886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293886,0.000000,0.000000,0.250000,0,0);}
.m60_c00096{transform:matrix(0.294182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294182,0.000000,0.000000,0.250000,0,0);}
.m3_c00096{transform:matrix(0.294348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294348,0.000000,0.000000,0.250000,0,0);}
.m1f_c00096{transform:matrix(0.294374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294374,0.000000,0.000000,0.250000,0,0);}
.m4c_c00096{transform:matrix(0.294961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294961,0.000000,0.000000,0.250000,0,0);}
.m67_c00096{transform:matrix(0.295324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295324,0.000000,0.000000,0.250000,0,0);}
.m45_c00096{transform:matrix(0.295490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295490,0.000000,0.000000,0.250000,0,0);}
.m9d_c00096{transform:matrix(0.295977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295977,0.000000,0.000000,0.250000,0,0);}
.m9b_c00096{transform:matrix(0.296686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296686,0.000000,0.000000,0.250000,0,0);}
.ma0_c00096{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m9c_c00096{transform:matrix(0.297131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297131,0.000000,0.000000,0.250000,0,0);}
.m49_c00096{transform:matrix(0.297169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297169,0.000000,0.000000,0.250000,0,0);}
.m84_c00096{transform:matrix(0.297315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297315,0.000000,0.000000,0.250000,0,0);}
.m12_c00096{transform:matrix(0.297388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297388,0.000000,0.000000,0.250000,0,0);}
.m96_c00096{transform:matrix(0.299798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299798,0.000000,0.000000,0.250000,0,0);}
.m6d_c00096{transform:matrix(0.300511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300511,0.000000,0.000000,0.250000,0,0);}
.m38_c00096{transform:matrix(0.300547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300547,0.000000,0.000000,0.250000,0,0);}
.m20_c00096{transform:matrix(0.300668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300668,0.000000,0.000000,0.250000,0,0);}
.m3d_c00096{transform:matrix(0.300705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300705,0.000000,0.000000,0.250000,0,0);}
.m2c_c00096{transform:matrix(0.300970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300970,0.000000,0.000000,0.250000,0,0);}
.m85_c00096{transform:matrix(0.301273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301273,0.000000,0.000000,0.250000,0,0);}
.m88_c00096{transform:matrix(0.303037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303037,0.000000,0.000000,0.250000,0,0);}
.m6c_c00096{transform:matrix(0.303531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303531,0.000000,0.000000,0.250000,0,0);}
.m24_c00096{transform:matrix(0.303868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303868,0.000000,0.000000,0.250000,0,0);}
.m8b_c00096{transform:matrix(0.304049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304049,0.000000,0.000000,0.250000,0,0);}
.m1d_c00096{transform:matrix(0.304313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304313,0.000000,0.000000,0.250000,0,0);}
.m93_c00096{transform:matrix(0.304525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304525,0.000000,0.000000,0.250000,0,0);}
.m80_c00096{transform:matrix(0.305164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305164,0.000000,0.000000,0.250000,0,0);}
.m71_c00096{transform:matrix(0.305339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305339,0.000000,0.000000,0.250000,0,0);}
.m6b_c00096{transform:matrix(0.305475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305475,0.000000,0.000000,0.250000,0,0);}
.m4e_c00096{transform:matrix(0.305713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305713,0.000000,0.000000,0.250000,0,0);}
.m73_c00096{transform:matrix(0.306458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306458,0.000000,0.000000,0.250000,0,0);}
.m43_c00096{transform:matrix(0.306462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306462,0.000000,0.000000,0.250000,0,0);}
.m77_c00096{transform:matrix(0.306668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306668,0.000000,0.000000,0.250000,0,0);}
.m76_c00096{transform:matrix(0.307672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307672,0.000000,0.000000,0.250000,0,0);}
.m16_c00096{transform:matrix(0.308174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308174,0.000000,0.000000,0.250000,0,0);}
.m90_c00096{transform:matrix(0.308621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308621,0.000000,0.000000,0.250000,0,0);}
.m7d_c00096{transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);}
.m18_c00096{transform:matrix(0.310181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310181,0.000000,0.000000,0.250000,0,0);}
.m8a_c00096{transform:matrix(0.310202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310202,0.000000,0.000000,0.250000,0,0);}
.m97_c00096{transform:matrix(0.310240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310240,0.000000,0.000000,0.250000,0,0);}
.m58_c00096{transform:matrix(0.311134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311134,0.000000,0.000000,0.250000,0,0);}
.m4f_c00096{transform:matrix(0.311143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311143,0.000000,0.000000,0.250000,0,0);}
.m2_c00096{transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);}
.m35_c00096{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.ma_c00096{transform:matrix(0.312879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312879,0.000000,0.000000,0.250000,0,0);}
.m95_c00096{transform:matrix(0.315158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315158,0.000000,0.000000,0.250000,0,0);}
.m34_c00096{transform:matrix(0.315917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315917,0.000000,0.000000,0.250000,0,0);}
.m66_c00096{transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);}
.m5f_c00096{transform:matrix(0.316742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316742,0.000000,0.000000,0.250000,0,0);}
.m3e_c00096{transform:matrix(0.317668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317668,0.000000,0.000000,0.250000,0,0);}
.m8e_c00096{transform:matrix(0.318734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318734,0.000000,0.000000,0.250000,0,0);}
.mf_c00096{transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);}
.m1a_c00096{transform:matrix(0.319130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319130,0.000000,0.000000,0.250000,0,0);}
.m5e_c00096{transform:matrix(0.319808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319808,0.000000,0.000000,0.250000,0,0);}
.m51_c00096{transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);}
.m7a_c00096{transform:matrix(0.320064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320064,0.000000,0.000000,0.250000,0,0);}
.m1c_c00096{transform:matrix(0.320535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320535,0.000000,0.000000,0.250000,0,0);}
.m3c_c00096{transform:matrix(0.321121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321121,0.000000,0.000000,0.250000,0,0);}
.m36_c00096{transform:matrix(0.321222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321222,0.000000,0.000000,0.250000,0,0);}
.m31_c00096{transform:matrix(0.322089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322089,0.000000,0.000000,0.250000,0,0);}
.m81_c00096{transform:matrix(0.323356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323356,0.000000,0.000000,0.250000,0,0);}
.m6_c00096{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.m8c_c00096{transform:matrix(0.323709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323709,0.000000,0.000000,0.250000,0,0);}
.m3a_c00096{transform:matrix(0.324455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324455,0.000000,0.000000,0.250000,0,0);}
.md_c00096{transform:matrix(0.324570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324570,0.000000,0.000000,0.250000,0,0);}
.m21_c00096{transform:matrix(0.326566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326566,0.000000,0.000000,0.250000,0,0);}
.mb_c00096{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m42_c00096{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.m91_c00096{transform:matrix(0.328208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328208,0.000000,0.000000,0.250000,0,0);}
.m41_c00096{transform:matrix(0.328664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328664,0.000000,0.000000,0.250000,0,0);}
.m5c_c00096{transform:matrix(0.330042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330042,0.000000,0.000000,0.250000,0,0);}
.m1e_c00096{transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);}
.m4_c00096{transform:matrix(0.331297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331297,0.000000,0.000000,0.250000,0,0);}
.m57_c00096{transform:matrix(0.331699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331699,0.000000,0.000000,0.250000,0,0);}
.m37_c00096{transform:matrix(0.332200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332200,0.000000,0.000000,0.250000,0,0);}
.m17_c00096{transform:matrix(0.332991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332991,0.000000,0.000000,0.250000,0,0);}
.m56_c00096{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.me_c00096{transform:matrix(0.333338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333338,0.000000,0.000000,0.250000,0,0);}
.m6a_c00096{transform:matrix(0.335263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335263,0.000000,0.000000,0.250000,0,0);}
.m7c_c00096{transform:matrix(0.336174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336174,0.000000,0.000000,0.250000,0,0);}
.m44_c00096{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m19_c00096{transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);}
.m9e_c00096{transform:matrix(0.343331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343331,0.000000,0.000000,0.250000,0,0);}
.m15_c00096{transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);}
.m61_c00096{transform:matrix(0.348039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348039,0.000000,0.000000,0.250000,0,0);}
.m5b_c00096{transform:matrix(0.348738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348738,0.000000,0.000000,0.250000,0,0);}
.m32_c00096{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m87_c00096{transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);}
.ma1_c00096{transform:matrix(0.350600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350600,0.000000,0.000000,0.250000,0,0);}
.m89_c00096{transform:matrix(0.350746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350746,0.000000,0.000000,0.250000,0,0);}
.m27_c00096{transform:matrix(0.354071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354071,0.000000,0.000000,0.250000,0,0);}
.m1b_c00096{transform:matrix(0.354953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354953,0.000000,0.000000,0.250000,0,0);}
.m54_c00096{transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);}
.ma2_c00096{transform:matrix(0.355372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355372,0.000000,0.000000,0.250000,0,0);}
.m92_c00096{transform:matrix(0.361004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361004,0.000000,0.000000,0.250000,0,0);}
.m40_c00096{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m7f_c00096{transform:matrix(0.361585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361585,0.000000,0.000000,0.250000,0,0);}
.m29_c00096{transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);}
.m2b_c00096{transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);}
.v0_c00096{vertical-align:0.000000px;}
.lsd_c00096{letter-spacing:-2.744280px;}
.ls10_c00096{letter-spacing:-2.550240px;}
.lsb_c00096{letter-spacing:-2.328718px;}
.lsc_c00096{letter-spacing:-1.897474px;}
.lsf_c00096{letter-spacing:-1.552320px;}
.ls5_c00096{letter-spacing:-1.228392px;}
.ls4_c00096{letter-spacing:0.000000px;}
.ls9_c00096{letter-spacing:1.885554px;}
.ls1_c00096{letter-spacing:1.960200px;}
.ls7_c00096{letter-spacing:2.305195px;}
.ls8_c00096{letter-spacing:2.599245px;}
.lsa_c00096{letter-spacing:3.026549px;}
.ls2_c00096{letter-spacing:3.489156px;}
.ls3_c00096{letter-spacing:3.559723px;}
.lse_c00096{letter-spacing:3.722400px;}
.ls6_c00096{letter-spacing:3.920400px;}
.ls0_c00096{letter-spacing:17.859600px;}
.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:-19.602000px;}
.ws0_c00096{word-spacing:-17.273282px;}
.ws2_c00096{word-spacing:0.000000px;}
._7_c00096{margin-left:-11.211552px;}
._4_c00096{margin-left:-4.931863px;}
._5_c00096{margin-left:-3.057912px;}
._2_c00096{width:8.703288px;}
._1_c00096{width:11.918016px;}
._0_c00096{width:23.208768px;}
._6_c00096{width:26.700062px;}
._3_c00096{width:28.383696px;}
.fc0_c00096{color:transparent;}
.fs0_c00096{font-size:21.582000px;}
.fs4_c00096{font-size:22.572000px;}
.fs9_c00096{font-size:38.808000px;}
.fs6_c00096{font-size:44.352000px;}
.fs8_c00096{font-size:55.440000px;}
.fs7_c00096{font-size:67.320000px;}
.fsa_c00096{font-size:72.864000px;}
.fs5_c00096{font-size:74.448000px;}
.fsb_c00096{font-size:77.022198px;}
.fs2_c00096{font-size:78.408000px;}
.fs1_c00096{font-size:87.120000px;}
.fs3_c00096{font-size:88.110000px;}
.y0_c00096{bottom:0.000000px;}
.y21_c00096{bottom:19.508985px;}
.y1_c00096{bottom:76.500000px;}
.y20_c00096{bottom:85.799583px;}
.y1f_c00096{bottom:114.672735px;}
.y1e_c00096{bottom:148.174335px;}
.y1d_c00096{bottom:178.824735px;}
.y1c_c00096{bottom:210.544335px;}
.y1b_c00096{bottom:214.464735px;}
.y19_c00096{bottom:244.397385px;}
.y1a_c00096{bottom:245.827935px;}
.y22_c00096{bottom:256.158585px;}
.y18_c00096{bottom:277.547535px;}
.y17_c00096{bottom:309.974985px;}
.y16_c00096{bottom:342.055935px;}
.y2_c00096{bottom:360.940185px;}
.y15_c00096{bottom:374.844735px;}
.y14_c00096{bottom:407.277135px;}
.y13_c00096{bottom:440.065935px;}
.y12_c00096{bottom:472.141935px;}
.y11_c00096{bottom:504.217935px;}
.y10_c00096{bottom:519.181785px;}
.yf_c00096{bottom:536.650335px;}
.ye_c00096{bottom:569.082735px;}
.yd_c00096{bottom:601.515135px;}
.yc_c00096{bottom:636.085935px;}
.yb_c00096{bottom:668.874735px;}
.ya_c00096{bottom:700.950735px;}
.y9_c00096{bottom:767.236185px;}
.y8_c00096{bottom:799.317135px;}
.y7_c00096{bottom:831.388185px;}
.y6_c00096{bottom:863.820585px;}
.y5_c00096{bottom:896.257935px;}
.y4_c00096{bottom:927.972585px;}
.y3_c00096{bottom:1082.650185px;}
.h2_c00096{height:22.509352px;}
.h6_c00096{height:23.541891px;}
.hb_c00096{height:40.475531px;}
.h8_c00096{height:46.257750px;}
.ha_c00096{height:57.822188px;}
.h9_c00096{height:66.070898px;}
.h7_c00096{height:75.029625px;}
.hc_c00096{height:75.994875px;}
.h4_c00096{height:76.953164px;}
.hd_c00096{height:80.331746px;}
.h5_c00096{height:86.475146px;}
.h3_c00096{height:87.800625px;}
.h1_c00096{height:1110.000000px;}
.h0_c00096{height:1263.000000px;}
.w1_c00096{width:733.500000px;}
.w0_c00096{width:892.500000px;}
.x0_c00096{left:0.000000px;}
.x2_c00096{left:23.818935px;}
.x3e_c00096{left:67.329435px;}
.xf_c00096{left:68.373885px;}
.x4_c00096{left:70.190535px;}
.x5a_c00096{left:71.220135px;}
.x1_c00096{left:79.500000px;}
.x4c_c00096{left:80.664735px;}
.x26_c00096{left:101.692335px;}
.x51_c00096{left:103.801035px;}
.x1f_c00096{left:123.997035px;}
.x59_c00096{left:125.363235px;}
.x27_c00096{left:135.218685px;}
.x52_c00096{left:136.273035px;}
.x33_c00096{left:138.030285px;}
.x10_c00096{left:147.281835px;}
.x4d_c00096{left:158.033235px;}
.x19_c00096{left:168.017385px;}
.x3a_c00096{left:169.106385px;}
.x5b_c00096{left:170.527035px;}
.x11_c00096{left:177.808485px;}
.x47_c00096{left:179.778585px;}
.x3f_c00096{left:180.823035px;}
.x2b_c00096{left:188.901435px;}
.x28_c00096{left:190.302285px;}
.x57_c00096{left:191.906085px;}
.x34_c00096{left:201.528885px;}
.x55_c00096{left:202.954485px;}
.x5_c00096{left:212.899035px;}
.x3c_c00096{left:213.923685px;}
.x5c_c00096{left:215.393835px;}
.x3b_c00096{left:223.977135px;}
.x2c_c00096{left:235.327485px;}
.x48_c00096{left:236.456085px;}
.x12_c00096{left:246.242235px;}
.x29_c00096{left:247.450035px;}
.x6_c00096{left:257.716335px;}
.x7_c00096{left:268.700385px;}
.x35_c00096{left:278.318235px;}
.x20_c00096{left:279.907185px;}
.x1a_c00096{left:290.505135px;}
.x56_c00096{left:292.000035px;}
.x40_c00096{left:302.395035px;}
.x13_c00096{left:313.022685px;}
.x36_c00096{left:323.229585px;}
.x2d_c00096{left:324.496785px;}
.x8_c00096{left:335.159085px;}
.x53_c00096{left:336.881685px;}
.x41_c00096{left:346.563885px;}
.x4e_c00096{left:347.573685px;}
.x23_c00096{left:357.953835px;}
.x1b_c00096{left:368.987385px;}
.x44_c00096{left:381.471285px;}
.x2a_c00096{left:390.762435px;}
.x9_c00096{left:401.820735px;}
.x21_c00096{left:412.834485px;}
.x45_c00096{left:424.066035px;}
.xa_c00096{left:435.312435px;}
.x14_c00096{left:444.628335px;}
.x31_c00096{left:446.365785px;}
.x49_c00096{left:447.415185px;}
.x4f_c00096{left:457.235985px;}
.x42_c00096{left:468.413085px;}
.xb_c00096{left:478.322985px;}
.x46_c00096{left:480.357435px;}
.x24_c00096{left:489.346635px;}
.x1c_c00096{left:491.242485px;}
.x15_c00096{left:501.904785px;}
.x5d_c00096{left:503.365035px;}
.x2e_c00096{left:512.903685px;}
.x50_c00096{left:516.378585px;}
.x37_c00096{left:523.531335px;}
.x25_c00096{left:535.460835px;}
.x43_c00096{left:547.251735px;}
.x16_c00096{left:556.834935px;}
.x4a_c00096{left:557.879385px;}
.x38_c00096{left:567.888285px;}
.x2f_c00096{left:578.595135px;}
.x5e_c00096{left:579.986085px;}
.xc_c00096{left:590.539485px;}
.x1d_c00096{left:601.691835px;}
.x22_c00096{left:604.201485px;}
.xd_c00096{left:612.101685px;}
.x3d_c00096{left:616.804185px;}
.x32_c00096{left:622.957035px;}
.x54_c00096{left:624.209385px;}
.x17_c00096{left:634.198485px;}
.x1e_c00096{left:635.911185px;}
.x3_c00096{left:646.009185px;}
.xe_c00096{left:656.468535px;}
.x30_c00096{left:657.651585px;}
.x18_c00096{left:667.719885px;}
.x39_c00096{left:669.076185px;}
.x58_c00096{left:687.039735px;}
.x4b_c00096{left:690.123585px;}
.x5f_c00096{left:697.904985px;}
@media print{
.v0_c00096{vertical-align:0.000000pt;}
.lsd_c00096{letter-spacing:-2.439360pt;}
.ls10_c00096{letter-spacing:-2.266880pt;}
.lsb_c00096{letter-spacing:-2.069971pt;}
.lsc_c00096{letter-spacing:-1.686643pt;}
.lsf_c00096{letter-spacing:-1.379840pt;}
.ls5_c00096{letter-spacing:-1.091904pt;}
.ls4_c00096{letter-spacing:0.000000pt;}
.ls9_c00096{letter-spacing:1.676048pt;}
.ls1_c00096{letter-spacing:1.742400pt;}
.ls7_c00096{letter-spacing:2.049062pt;}
.ls8_c00096{letter-spacing:2.310440pt;}
.lsa_c00096{letter-spacing:2.690266pt;}
.ls2_c00096{letter-spacing:3.101472pt;}
.ls3_c00096{letter-spacing:3.164198pt;}
.lse_c00096{letter-spacing:3.308800pt;}
.ls6_c00096{letter-spacing:3.484800pt;}
.ls0_c00096{letter-spacing:15.875200pt;}
.ws1_c00096{word-spacing:-17.424000pt;}
.ws0_c00096{word-spacing:-15.354029pt;}
.ws2_c00096{word-spacing:0.000000pt;}
._7_c00096{margin-left:-9.965824pt;}
._4_c00096{margin-left:-4.383878pt;}
._5_c00096{margin-left:-2.718144pt;}
._2_c00096{width:7.736256pt;}
._1_c00096{width:10.593792pt;}
._0_c00096{width:20.630016pt;}
._6_c00096{width:23.733389pt;}
._3_c00096{width:25.229952pt;}
.fs0_c00096{font-size:19.184000pt;}
.fs4_c00096{font-size:20.064000pt;}
.fs9_c00096{font-size:34.496000pt;}
.fs6_c00096{font-size:39.424000pt;}
.fs8_c00096{font-size:49.280000pt;}
.fs7_c00096{font-size:59.840000pt;}
.fsa_c00096{font-size:64.768000pt;}
.fs5_c00096{font-size:66.176000pt;}
.fsb_c00096{font-size:68.464176pt;}
.fs2_c00096{font-size:69.696000pt;}
.fs1_c00096{font-size:77.440000pt;}
.fs3_c00096{font-size:78.320000pt;}
.y0_c00096{bottom:0.000000pt;}
.y21_c00096{bottom:17.341320pt;}
.y1_c00096{bottom:68.000000pt;}
.y20_c00096{bottom:76.266296pt;}
.y1f_c00096{bottom:101.931320pt;}
.y1e_c00096{bottom:131.710520pt;}
.y1d_c00096{bottom:158.955320pt;}
.y1c_c00096{bottom:187.150520pt;}
.y1b_c00096{bottom:190.635320pt;}
.y19_c00096{bottom:217.242120pt;}
.y1a_c00096{bottom:218.513720pt;}
.y22_c00096{bottom:227.696520pt;}
.y18_c00096{bottom:246.708920pt;}
.y17_c00096{bottom:275.533320pt;}
.y16_c00096{bottom:304.049720pt;}
.y2_c00096{bottom:320.835720pt;}
.y15_c00096{bottom:333.195320pt;}
.y14_c00096{bottom:362.024120pt;}
.y13_c00096{bottom:391.169720pt;}
.y12_c00096{bottom:419.681720pt;}
.y11_c00096{bottom:448.193720pt;}
.y10_c00096{bottom:461.494920pt;}
.yf_c00096{bottom:477.022520pt;}
.ye_c00096{bottom:505.851320pt;}
.yd_c00096{bottom:534.680120pt;}
.yc_c00096{bottom:565.409720pt;}
.yb_c00096{bottom:594.555320pt;}
.ya_c00096{bottom:623.067320pt;}
.y9_c00096{bottom:681.987720pt;}
.y8_c00096{bottom:710.504120pt;}
.y7_c00096{bottom:739.011720pt;}
.y6_c00096{bottom:767.840520pt;}
.y5_c00096{bottom:796.673720pt;}
.y4_c00096{bottom:824.864520pt;}
.y3_c00096{bottom:962.355720pt;}
.h2_c00096{height:20.008313pt;}
.h6_c00096{height:20.926125pt;}
.hb_c00096{height:35.978250pt;}
.h8_c00096{height:41.118000pt;}
.ha_c00096{height:51.397500pt;}
.h9_c00096{height:58.729688pt;}
.h7_c00096{height:66.693000pt;}
.hc_c00096{height:67.551000pt;}
.h4_c00096{height:68.402813pt;}
.hd_c00096{height:71.405996pt;}
.h5_c00096{height:76.866797pt;}
.h3_c00096{height:78.045000pt;}
.h1_c00096{height:986.666667pt;}
.h0_c00096{height:1122.666667pt;}
.w1_c00096{width:652.000000pt;}
.w0_c00096{width:793.333333pt;}
.x0_c00096{left:0.000000pt;}
.x2_c00096{left:21.172387pt;}
.x3e_c00096{left:59.848387pt;}
.xf_c00096{left:60.776787pt;}
.x4_c00096{left:62.391587pt;}
.x5a_c00096{left:63.306787pt;}
.x1_c00096{left:70.666667pt;}
.x4c_c00096{left:71.701987pt;}
.x26_c00096{left:90.393187pt;}
.x51_c00096{left:92.267587pt;}
.x1f_c00096{left:110.219587pt;}
.x59_c00096{left:111.433987pt;}
.x27_c00096{left:120.194387pt;}
.x52_c00096{left:121.131587pt;}
.x33_c00096{left:122.693587pt;}
.x10_c00096{left:130.917187pt;}
.x4d_c00096{left:140.473987pt;}
.x19_c00096{left:149.348787pt;}
.x3a_c00096{left:150.316787pt;}
.x5b_c00096{left:151.579587pt;}
.x11_c00096{left:158.051987pt;}
.x47_c00096{left:159.803187pt;}
.x3f_c00096{left:160.731587pt;}
.x2b_c00096{left:167.912387pt;}
.x28_c00096{left:169.157587pt;}
.x57_c00096{left:170.583187pt;}
.x34_c00096{left:179.136787pt;}
.x55_c00096{left:180.403987pt;}
.x5_c00096{left:189.243587pt;}
.x3c_c00096{left:190.154387pt;}
.x5c_c00096{left:191.461187pt;}
.x3b_c00096{left:199.090787pt;}
.x2c_c00096{left:209.179987pt;}
.x48_c00096{left:210.183187pt;}
.x12_c00096{left:218.881987pt;}
.x29_c00096{left:219.955587pt;}
.x6_c00096{left:229.081187pt;}
.x7_c00096{left:238.844787pt;}
.x35_c00096{left:247.393987pt;}
.x20_c00096{left:248.806387pt;}
.x1a_c00096{left:258.226787pt;}
.x56_c00096{left:259.555587pt;}
.x40_c00096{left:268.795587pt;}
.x13_c00096{left:278.242387pt;}
.x36_c00096{left:287.315187pt;}
.x2d_c00096{left:288.441587pt;}
.x8_c00096{left:297.919187pt;}
.x53_c00096{left:299.450387pt;}
.x41_c00096{left:308.056787pt;}
.x4e_c00096{left:308.954387pt;}
.x23_c00096{left:318.181187pt;}
.x1b_c00096{left:327.988787pt;}
.x44_c00096{left:339.085587pt;}
.x2a_c00096{left:347.344387pt;}
.x9_c00096{left:357.173987pt;}
.x21_c00096{left:366.963987pt;}
.x45_c00096{left:376.947587pt;}
.xa_c00096{left:386.944387pt;}
.x14_c00096{left:395.225187pt;}
.x31_c00096{left:396.769587pt;}
.x49_c00096{left:397.702387pt;}
.x4f_c00096{left:406.431987pt;}
.x42_c00096{left:416.367187pt;}
.xb_c00096{left:425.175987pt;}
.x46_c00096{left:426.984387pt;}
.x24_c00096{left:434.974787pt;}
.x1c_c00096{left:436.659987pt;}
.x15_c00096{left:446.137587pt;}
.x5d_c00096{left:447.435587pt;}
.x2e_c00096{left:455.914387pt;}
.x50_c00096{left:459.003187pt;}
.x37_c00096{left:465.361187pt;}
.x25_c00096{left:475.965187pt;}
.x43_c00096{left:486.445987pt;}
.x16_c00096{left:494.964387pt;}
.x4a_c00096{left:495.892787pt;}
.x38_c00096{left:504.789587pt;}
.x2f_c00096{left:514.306787pt;}
.x5e_c00096{left:515.543187pt;}
.xc_c00096{left:524.923987pt;}
.x1d_c00096{left:534.837187pt;}
.x22_c00096{left:537.067987pt;}
.xd_c00096{left:544.090387pt;}
.x3d_c00096{left:548.270387pt;}
.x32_c00096{left:553.739587pt;}
.x54_c00096{left:554.852787pt;}
.x17_c00096{left:563.731987pt;}
.x1e_c00096{left:565.254387pt;}
.x3_c00096{left:574.230387pt;}
.xe_c00096{left:583.527587pt;}
.x30_c00096{left:584.579187pt;}
.x18_c00096{left:593.528787pt;}
.x39_c00096{left:594.734387pt;}
.x58_c00096{left:610.701987pt;}
.x4b_c00096{left:613.443187pt;}
.x5f_c00096{left:620.359987pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a57101ec478e9e72246c1711.woff2')format("woff");}.ff1_c00097{font-family:ff1_c00097;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00097;src:url('chunks/assets/font_d337a6f08bdba19d22f0b122.woff2')format("woff");}.ff2_c00097{font-family:ff2_c00097;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00097;src:url('chunks/assets/font_5785c84ced1f97215b7009c0.woff2')format("woff");}.ff3_c00097{font-family:ff3_c00097;line-height:0.666000;font-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_c00097{transform:matrix(0.117195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117195,0.000000,0.000000,0.250000,0,0);}
.m81_c00097{transform:matrix(0.185976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185976,0.000000,0.000000,0.250000,0,0);}
.m53_c00097{transform:matrix(0.196053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196053,0.000000,0.000000,0.250000,0,0);}
.m44_c00097{transform:matrix(0.224013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224013,0.000000,0.000000,0.250000,0,0);}
.m16_c00097{transform:matrix(0.233513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233513,0.000000,0.000000,0.250000,0,0);}
.m4c_c00097{transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);}
.m26_c00097{transform:matrix(0.246419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246419,0.000000,0.000000,0.250000,0,0);}
.m1_c00097{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00097{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.m8c_c00097{transform:matrix(0.252567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252567,0.000000,0.000000,0.250000,0,0);}
.m7c_c00097{transform:matrix(0.253330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253330,0.000000,0.000000,0.250000,0,0);}
.m51_c00097{transform:matrix(0.255214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255214,0.000000,0.000000,0.250000,0,0);}
.m14_c00097{transform:matrix(0.256123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256123,0.000000,0.000000,0.250000,0,0);}
.m1a_c00097{transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);}
.m18_c00097{transform:matrix(0.256725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256725,0.000000,0.000000,0.250000,0,0);}
.m8a_c00097{transform:matrix(0.260228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260228,0.000000,0.000000,0.250000,0,0);}
.m0_c00097{transform:matrix(0.260231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260231,0.000000,0.000000,0.250000,0,0);}
.m90_c00097{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m10_c00097{transform:matrix(0.261857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261857,0.000000,0.000000,0.250000,0,0);}
.m68_c00097{transform:matrix(0.262304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262304,0.000000,0.000000,0.250000,0,0);}
.m93_c00097{transform:matrix(0.262649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262649,0.000000,0.000000,0.250000,0,0);}
.m35_c00097{transform:matrix(0.263278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263278,0.000000,0.000000,0.250000,0,0);}
.m1b_c00097{transform:matrix(0.264094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264094,0.000000,0.000000,0.250000,0,0);}
.m2b_c00097{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m8_c00097{transform:matrix(0.266739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266739,0.000000,0.000000,0.250000,0,0);}
.m23_c00097{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.m83_c00097{transform:matrix(0.267232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267232,0.000000,0.000000,0.250000,0,0);}
.m60_c00097{transform:matrix(0.267525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267525,0.000000,0.000000,0.250000,0,0);}
.m7_c00097{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m43_c00097{transform:matrix(0.268068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268068,0.000000,0.000000,0.250000,0,0);}
.ma4_c00097{transform:matrix(0.268539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268539,0.000000,0.000000,0.250000,0,0);}
.m52_c00097{transform:matrix(0.268694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268694,0.000000,0.000000,0.250000,0,0);}
.m8f_c00097{transform:matrix(0.269659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269659,0.000000,0.000000,0.250000,0,0);}
.m47_c00097{transform:matrix(0.269857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269857,0.000000,0.000000,0.250000,0,0);}
.mf_c00097{transform:matrix(0.270512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270512,0.000000,0.000000,0.250000,0,0);}
.m1f_c00097{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m5b_c00097{transform:matrix(0.270977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270977,0.000000,0.000000,0.250000,0,0);}
.m6c_c00097{transform:matrix(0.270995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270995,0.000000,0.000000,0.250000,0,0);}
.m58_c00097{transform:matrix(0.271574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271574,0.000000,0.000000,0.250000,0,0);}
.m55_c00097{transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);}
.m84_c00097{transform:matrix(0.272148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272148,0.000000,0.000000,0.250000,0,0);}
.m76_c00097{transform:matrix(0.272255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272255,0.000000,0.000000,0.250000,0,0);}
.m4_c00097{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.ma7_c00097{transform:matrix(0.272623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272623,0.000000,0.000000,0.250000,0,0);}
.m62_c00097{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00097{transform:matrix(0.273394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273394,0.000000,0.000000,0.250000,0,0);}
.m85_c00097{transform:matrix(0.275080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275080,0.000000,0.000000,0.250000,0,0);}
.m50_c00097{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m63_c00097{transform:matrix(0.275733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275733,0.000000,0.000000,0.250000,0,0);}
.ma5_c00097{transform:matrix(0.277131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277131,0.000000,0.000000,0.250000,0,0);}
.m7d_c00097{transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);}
.m59_c00097{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m4f_c00097{transform:matrix(0.278236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278236,0.000000,0.000000,0.250000,0,0);}
.m89_c00097{transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);}
.m61_c00097{transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);}
.m88_c00097{transform:matrix(0.280631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280631,0.000000,0.000000,0.250000,0,0);}
.m49_c00097{transform:matrix(0.282494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282494,0.000000,0.000000,0.250000,0,0);}
.m3d_c00097{transform:matrix(0.282506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282506,0.000000,0.000000,0.250000,0,0);}
.m71_c00097{transform:matrix(0.282775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282775,0.000000,0.000000,0.250000,0,0);}
.m2a_c00097{transform:matrix(0.283230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283230,0.000000,0.000000,0.250000,0,0);}
.m8b_c00097{transform:matrix(0.283330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283330,0.000000,0.000000,0.250000,0,0);}
.m34_c00097{transform:matrix(0.283664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283664,0.000000,0.000000,0.250000,0,0);}
.m12_c00097{transform:matrix(0.284467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284467,0.000000,0.000000,0.250000,0,0);}
.ma6_c00097{transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);}
.ma3_c00097{transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);}
.m2e_c00097{transform:matrix(0.286086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286086,0.000000,0.000000,0.250000,0,0);}
.m42_c00097{transform:matrix(0.286364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286364,0.000000,0.000000,0.250000,0,0);}
.m19_c00097{transform:matrix(0.286764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286764,0.000000,0.000000,0.250000,0,0);}
.m7f_c00097{transform:matrix(0.287569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287569,0.000000,0.000000,0.250000,0,0);}
.m9c_c00097{transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);}
.m30_c00097{transform:matrix(0.289464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289464,0.000000,0.000000,0.250000,0,0);}
.m92_c00097{transform:matrix(0.289876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289876,0.000000,0.000000,0.250000,0,0);}
.m7a_c00097{transform:matrix(0.290756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290756,0.000000,0.000000,0.250000,0,0);}
.m74_c00097{transform:matrix(0.291262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291262,0.000000,0.000000,0.250000,0,0);}
.m69_c00097{transform:matrix(0.291928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291928,0.000000,0.000000,0.250000,0,0);}
.m97_c00097{transform:matrix(0.292347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292347,0.000000,0.000000,0.250000,0,0);}
.m9b_c00097{transform:matrix(0.292416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292416,0.000000,0.000000,0.250000,0,0);}
.m79_c00097{transform:matrix(0.292713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292713,0.000000,0.000000,0.250000,0,0);}
.m40_c00097{transform:matrix(0.292771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292771,0.000000,0.000000,0.250000,0,0);}
.m86_c00097{transform:matrix(0.293040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293040,0.000000,0.000000,0.250000,0,0);}
.m78_c00097{transform:matrix(0.293145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293145,0.000000,0.000000,0.250000,0,0);}
.m4d_c00097{transform:matrix(0.293410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293410,0.000000,0.000000,0.250000,0,0);}
.m9e_c00097{transform:matrix(0.293544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293544,0.000000,0.000000,0.250000,0,0);}
.m22_c00097{transform:matrix(0.294443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294443,0.000000,0.000000,0.250000,0,0);}
.m38_c00097{transform:matrix(0.294562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294562,0.000000,0.000000,0.250000,0,0);}
.m6f_c00097{transform:matrix(0.295036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295036,0.000000,0.000000,0.250000,0,0);}
.m45_c00097{transform:matrix(0.296008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296008,0.000000,0.000000,0.250000,0,0);}
.m2d_c00097{transform:matrix(0.296610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296610,0.000000,0.000000,0.250000,0,0);}
.m1c_c00097{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m75_c00097{transform:matrix(0.297529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297529,0.000000,0.000000,0.250000,0,0);}
.m7e_c00097{transform:matrix(0.297645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297645,0.000000,0.000000,0.250000,0,0);}
.m31_c00097{transform:matrix(0.297935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297935,0.000000,0.000000,0.250000,0,0);}
.m1d_c00097{transform:matrix(0.298706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298706,0.000000,0.000000,0.250000,0,0);}
.m32_c00097{transform:matrix(0.300235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300235,0.000000,0.000000,0.250000,0,0);}
.m70_c00097{transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);}
.m73_c00097{transform:matrix(0.300785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300785,0.000000,0.000000,0.250000,0,0);}
.ma_c00097{transform:matrix(0.301437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301437,0.000000,0.000000,0.250000,0,0);}
.m87_c00097{transform:matrix(0.302066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302066,0.000000,0.000000,0.250000,0,0);}
.m28_c00097{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m91_c00097{transform:matrix(0.302431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302431,0.000000,0.000000,0.250000,0,0);}
.m6e_c00097{transform:matrix(0.302579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302579,0.000000,0.000000,0.250000,0,0);}
.m36_c00097{transform:matrix(0.302911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302911,0.000000,0.000000,0.250000,0,0);}
.m80_c00097{transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);}
.m4e_c00097{transform:matrix(0.303571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303571,0.000000,0.000000,0.250000,0,0);}
.m7b_c00097{transform:matrix(0.303806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303806,0.000000,0.000000,0.250000,0,0);}
.ma8_c00097{transform:matrix(0.304209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304209,0.000000,0.000000,0.250000,0,0);}
.m72_c00097{transform:matrix(0.304629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304629,0.000000,0.000000,0.250000,0,0);}
.m29_c00097{transform:matrix(0.304851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304851,0.000000,0.000000,0.250000,0,0);}
.m3a_c00097{transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);}
.m94_c00097{transform:matrix(0.305134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305134,0.000000,0.000000,0.250000,0,0);}
.m5a_c00097{transform:matrix(0.305878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305878,0.000000,0.000000,0.250000,0,0);}
.m3_c00097{transform:matrix(0.307835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307835,0.000000,0.000000,0.250000,0,0);}
.m98_c00097{transform:matrix(0.308186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308186,0.000000,0.000000,0.250000,0,0);}
.m96_c00097{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m56_c00097{transform:matrix(0.308789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308789,0.000000,0.000000,0.250000,0,0);}
.m2c_c00097{transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);}
.m3c_c00097{transform:matrix(0.310076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310076,0.000000,0.000000,0.250000,0,0);}
.m17_c00097{transform:matrix(0.310707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310707,0.000000,0.000000,0.250000,0,0);}
.ma2_c00097{transform:matrix(0.311211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311211,0.000000,0.000000,0.250000,0,0);}
.m11_c00097{transform:matrix(0.311379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311379,0.000000,0.000000,0.250000,0,0);}
.m37_c00097{transform:matrix(0.311666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311666,0.000000,0.000000,0.250000,0,0);}
.m39_c00097{transform:matrix(0.311778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311778,0.000000,0.000000,0.250000,0,0);}
.m6b_c00097{transform:matrix(0.312510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312510,0.000000,0.000000,0.250000,0,0);}
.m5_c00097{transform:matrix(0.314367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314367,0.000000,0.000000,0.250000,0,0);}
.m8e_c00097{transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);}
.ma1_c00097{transform:matrix(0.317838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317838,0.000000,0.000000,0.250000,0,0);}
.m65_c00097{transform:matrix(0.317873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317873,0.000000,0.000000,0.250000,0,0);}
.m3b_c00097{transform:matrix(0.318263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318263,0.000000,0.000000,0.250000,0,0);}
.m4b_c00097{transform:matrix(0.318552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318552,0.000000,0.000000,0.250000,0,0);}
.m5f_c00097{transform:matrix(0.319172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319172,0.000000,0.000000,0.250000,0,0);}
.m3e_c00097{transform:matrix(0.319429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319429,0.000000,0.000000,0.250000,0,0);}
.m5d_c00097{transform:matrix(0.319808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319808,0.000000,0.000000,0.250000,0,0);}
.m21_c00097{transform:matrix(0.319859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319859,0.000000,0.000000,0.250000,0,0);}
.mb_c00097{transform:matrix(0.320078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320078,0.000000,0.000000,0.250000,0,0);}
.ma0_c00097{transform:matrix(0.321131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321131,0.000000,0.000000,0.250000,0,0);}
.m9f_c00097{transform:matrix(0.321222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321222,0.000000,0.000000,0.250000,0,0);}
.m95_c00097{transform:matrix(0.321893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321893,0.000000,0.000000,0.250000,0,0);}
.m6d_c00097{transform:matrix(0.321925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321925,0.000000,0.000000,0.250000,0,0);}
.m2f_c00097{transform:matrix(0.321992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321992,0.000000,0.000000,0.250000,0,0);}
.m5e_c00097{transform:matrix(0.322194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322194,0.000000,0.000000,0.250000,0,0);}
.m67_c00097{transform:matrix(0.322672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322672,0.000000,0.000000,0.250000,0,0);}
.m5c_c00097{transform:matrix(0.323136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323136,0.000000,0.000000,0.250000,0,0);}
.m13_c00097{transform:matrix(0.323647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323647,0.000000,0.000000,0.250000,0,0);}
.m20_c00097{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.m57_c00097{transform:matrix(0.325045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325045,0.000000,0.000000,0.250000,0,0);}
.m6a_c00097{transform:matrix(0.325878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325878,0.000000,0.000000,0.250000,0,0);}
.m27_c00097{transform:matrix(0.327290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327290,0.000000,0.000000,0.250000,0,0);}
.m9d_c00097{transform:matrix(0.327730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327730,0.000000,0.000000,0.250000,0,0);}
.m9a_c00097{transform:matrix(0.328011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328011,0.000000,0.000000,0.250000,0,0);}
.m1e_c00097{transform:matrix(0.328436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328436,0.000000,0.000000,0.250000,0,0);}
.m15_c00097{transform:matrix(0.328483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328483,0.000000,0.000000,0.250000,0,0);}
.m66_c00097{transform:matrix(0.329088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329088,0.000000,0.000000,0.250000,0,0);}
.m8d_c00097{transform:matrix(0.330528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330528,0.000000,0.000000,0.250000,0,0);}
.md_c00097{transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);}
.m25_c00097{transform:matrix(0.332422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332422,0.000000,0.000000,0.250000,0,0);}
.m33_c00097{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m99_c00097{transform:matrix(0.335078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335078,0.000000,0.000000,0.250000,0,0);}
.m46_c00097{transform:matrix(0.335458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335458,0.000000,0.000000,0.250000,0,0);}
.m48_c00097{transform:matrix(0.336446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336446,0.000000,0.000000,0.250000,0,0);}
.m9_c00097{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.me_c00097{transform:matrix(0.340270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340270,0.000000,0.000000,0.250000,0,0);}
.m77_c00097{transform:matrix(0.349848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349848,0.000000,0.000000,0.250000,0,0);}
.m64_c00097{transform:matrix(0.350547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350547,0.000000,0.000000,0.250000,0,0);}
.m54_c00097{transform:matrix(0.351953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351953,0.000000,0.000000,0.250000,0,0);}
.m24_c00097{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m6_c00097{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m2_c00097{transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);}
.mc_c00097{transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);}
.m82_c00097{transform:matrix(0.392339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392339,0.000000,0.000000,0.250000,0,0);}
.v0_c00097{vertical-align:0.000000px;}
.ls7_c00097{letter-spacing:-2.744280px;}
.ls4_c00097{letter-spacing:-2.375762px;}
.lsb_c00097{letter-spacing:-1.593900px;}
.ls2_c00097{letter-spacing:0.000000px;}
.lsd_c00097{letter-spacing:1.246687px;}
.ls0_c00097{letter-spacing:1.960200px;}
.ls5_c00097{letter-spacing:2.509056px;}
.ls8_c00097{letter-spacing:2.532578px;}
.lse_c00097{letter-spacing:3.120638px;}
.ls9_c00097{letter-spacing:3.246091px;}
.lsa_c00097{letter-spacing:3.489156px;}
.ls6_c00097{letter-spacing:3.811500px;}
.ls3_c00097{letter-spacing:3.920400px;}
.ls1_c00097{letter-spacing:4.276810px;}
.lsc_c00097{letter-spacing:54.172998px;}
.lsf_c00097{letter-spacing:58.449798px;}
.sc__c00097{text-shadow:none;}
.sc0_c00097{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00097{-webkit-text-stroke:0px transparent;}
.sc0_c00097{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00097{word-spacing:0.000000px;}
._0_c00097{width:24.646248px;}
._2_c00097{width:25.953048px;}
._1_c00097{width:29.559816px;}
.fc0_c00097{color:transparent;}
.fs1_c00097{font-size:22.176000px;}
.fsb_c00097{font-size:22.374000px;}
.fsa_c00097{font-size:33.660000px;}
.fs10_c00097{font-size:38.808000px;}
.fs7_c00097{font-size:39.600000px;}
.fs6_c00097{font-size:45.540000px;}
.fs8_c00097{font-size:54.172998px;}
.fsd_c00097{font-size:58.449798px;}
.fs9_c00097{font-size:62.568000px;}
.fsf_c00097{font-size:65.538000px;}
.fs4_c00097{font-size:70.884000px;}
.fs5_c00097{font-size:72.864000px;}
.fsc_c00097{font-size:74.844000px;}
.fs3_c00097{font-size:76.230000px;}
.fs2_c00097{font-size:78.408000px;}
.fse_c00097{font-size:78.804000px;}
.fs0_c00097{font-size:85.536198px;}
.y0_c00097{bottom:0.000000px;}
.y23_c00097{bottom:16.306335px;}
.y1_c00097{bottom:76.500000px;}
.y22_c00097{bottom:113.603535px;}
.y21_c00097{bottom:144.253935px;}
.y20_c00097{bottom:174.904335px;}
.y1f_c00097{bottom:210.544335px;}
.y1e_c00097{bottom:243.684585px;}
.y1d_c00097{bottom:276.478335px;}
.y1c_c00097{bottom:307.836585px;}
.y1b_c00097{bottom:344.194335px;}
.y1a_c00097{bottom:348.109785px;}
.y19_c00097{bottom:350.609535px;}
.y18_c00097{bottom:374.839785px;}
.y17_c00097{bottom:407.277135px;}
.y16_c00097{bottom:441.135135px;}
.y15_c00097{bottom:473.923935px;}
.y14_c00097{bottom:487.823535px;}
.y13_c00097{bottom:505.994985px;}
.y12_c00097{bottom:538.075935px;}
.y11_c00097{bottom:570.503385px;}
.y10_c00097{bottom:603.297135px;}
.yf_c00097{bottom:635.368185px;}
.ye_c00097{bottom:635.724585px;}
.yd_c00097{bottom:649.267785px;}
.yc_c00097{bottom:653.544585px;}
.yb_c00097{bottom:701.663535px;}
.ya_c00097{bottom:734.452335px;}
.y9_c00097{bottom:767.241135px;}
.y8_c00097{bottom:799.673535px;}
.y7_c00097{bottom:832.462335px;}
.y6_c00097{bottom:865.251135px;}
.y5_c00097{bottom:899.109135px;}
.y4_c00097{bottom:932.967135px;}
.y3_c00097{bottom:1050.930585px;}
.y2_c00097{bottom:1083.006585px;}
.hd_c00097{height:21.958857px;}
.h3_c00097{height:23.128875px;}
.hc_c00097{height:33.035449px;}
.ha_c00097{height:36.079217px;}
.hf_c00097{height:38.927565px;}
.h12_c00097{height:40.475531px;}
.h9_c00097{height:41.301563px;}
.h8_c00097{height:47.496797px;}
.hb_c00097{height:65.256469px;}
.h11_c00097{height:68.354086px;}
.h6_c00097{height:69.568770px;}
.h7_c00097{height:71.512031px;}
.he_c00097{height:73.455293px;}
.h5_c00097{height:74.815576px;}
.h4_c00097{height:76.953164px;}
.h10_c00097{height:77.341816px;}
.h2_c00097{height:83.949101px;}
.h1_c00097{height:1110.000000px;}
.h0_c00097{height:1263.000000px;}
.w1_c00097{width:733.500000px;}
.w0_c00097{width:892.500000px;}
.x0_c00097{left:0.000000px;}
.x1d_c00097{left:67.695735px;}
.x4_c00097{left:69.616335px;}
.xe_c00097{left:71.700285px;}
.x1_c00097{left:79.500000px;}
.x16_c00097{left:91.119135px;}
.x39_c00097{left:100.831035px;}
.x2b_c00097{left:102.053685px;}
.x5_c00097{left:103.162485px;}
.x57_c00097{left:112.958535px;}
.x44_c00097{left:114.141585px;}
.x32_c00097{left:123.214935px;}
.x49_c00097{left:125.239485px;}
.x3a_c00097{left:135.218685px;}
.x26_c00097{left:136.258185px;}
.x2f_c00097{left:146.999685px;}
.x38_c00097{left:155.756235px;}
.x1e_c00097{left:157.562985px;}
.x17_c00097{left:159.726135px;}
.x51_c00097{left:168.710385px;}
.xf_c00097{left:178.887585px;}
.x2c_c00097{left:180.481485px;}
.x1f_c00097{left:190.841835px;}
.x53_c00097{left:201.419985px;}
.x6_c00097{left:212.928735px;}
.x3b_c00097{left:233.387085px;}
.x7_c00097{left:245.529435px;}
.x4c_c00097{left:246.747135px;}
.x10_c00097{left:257.434185px;}
.x18_c00097{left:268.269735px;}
.x3c_c00097{left:279.199335px;}
.x27_c00097{left:280.926885px;}
.x5c_c00097{left:286.856985px;}
.x11_c00097{left:290.985285px;}
.x55_c00097{left:292.054485px;}
.x30_c00097{left:301.840635px;}
.x54_c00097{left:303.068235px;}
.x28_c00097{left:311.819835px;}
.x4a_c00097{left:313.082085px;}
.x41_c00097{left:323.160285px;}
.x12_c00097{left:324.467085px;}
.x2d_c00097{left:335.490735px;}
.x45_c00097{left:338.693385px;}
.x19_c00097{left:346.890585px;}
.x5d_c00097{left:357.122235px;}
.x3d_c00097{left:359.027985px;}
.x2e_c00097{left:368.135985px;}
.x8_c00097{left:369.759585px;}
.x56_c00097{left:380.080335px;}
.x20_c00097{left:381.129735px;}
.x5a_c00097{left:391.301985px;}
.x3e_c00097{left:392.480085px;}
.x29_c00097{left:401.701935px;}
.x4d_c00097{left:403.553235px;}
.x21_c00097{left:413.928435px;}
.x9_c00097{left:424.234335px;}
.x13_c00097{left:425.323335px;}
.x33_c00097{left:435.327285px;}
.x4b_c00097{left:446.905335px;}
.xa_c00097{left:457.424085px;}
.x34_c00097{left:467.927985px;}
.x4e_c00097{left:469.516935px;}
.x1a_c00097{left:480.184185px;}
.x48_c00097{left:486.470685px;}
.xb_c00097{left:490.732635px;}
.x59_c00097{left:492.648285px;}
.x46_c00097{left:501.107835px;}
.x35_c00097{left:502.206735px;}
.x42_c00097{left:503.409585px;}
.x36_c00097{left:513.547185px;}
.x22_c00097{left:535.703385px;}
.x47_c00097{left:545.613285px;}
.x4f_c00097{left:546.756735px;}
.x14_c00097{left:557.661585px;}
.x2a_c00097{left:567.358635px;}
.x3f_c00097{left:568.586235px;}
.x1b_c00097{left:578.357535px;}
.x25_c00097{left:580.352385px;}
.x23_c00097{left:590.361285px;}
.xc_c00097{left:601.944285px;}
.x58_c00097{left:613.849035px;}
.x37_c00097{left:623.862885px;}
.x3_c00097{left:625.412235px;}
.x15_c00097{left:634.648935px;}
.x40_c00097{left:636.901185px;}
.x1c_c00097{left:638.054535px;}
.x2_c00097{left:646.969485px;}
.xd_c00097{left:657.720885px;}
.x24_c00097{left:668.323785px;}
.x52_c00097{left:679.817685px;}
.x5b_c00097{left:681.173985px;}
.x43_c00097{left:684.064785px;}
.x31_c00097{left:685.242885px;}
.x50_c00097{left:691.222485px;}
.x5e_c00097{left:713.289585px;}
@media print{
.v0_c00097{vertical-align:0.000000pt;}
.ls7_c00097{letter-spacing:-2.439360pt;}
.ls4_c00097{letter-spacing:-2.111789pt;}
.lsb_c00097{letter-spacing:-1.416800pt;}
.ls2_c00097{letter-spacing:0.000000pt;}
.lsd_c00097{letter-spacing:1.108166pt;}
.ls0_c00097{letter-spacing:1.742400pt;}
.ls5_c00097{letter-spacing:2.230272pt;}
.ls8_c00097{letter-spacing:2.251181pt;}
.lse_c00097{letter-spacing:2.773901pt;}
.ls9_c00097{letter-spacing:2.885414pt;}
.lsa_c00097{letter-spacing:3.101472pt;}
.ls6_c00097{letter-spacing:3.388000pt;}
.ls3_c00097{letter-spacing:3.484800pt;}
.ls1_c00097{letter-spacing:3.801609pt;}
.lsc_c00097{letter-spacing:48.153776pt;}
.lsf_c00097{letter-spacing:51.955376pt;}
.ws0_c00097{word-spacing:0.000000pt;}
._0_c00097{width:21.907776pt;}
._2_c00097{width:23.069376pt;}
._1_c00097{width:26.275392pt;}
.fs1_c00097{font-size:19.712000pt;}
.fsb_c00097{font-size:19.888000pt;}
.fsa_c00097{font-size:29.920000pt;}
.fs10_c00097{font-size:34.496000pt;}
.fs7_c00097{font-size:35.200000pt;}
.fs6_c00097{font-size:40.480000pt;}
.fs8_c00097{font-size:48.153776pt;}
.fsd_c00097{font-size:51.955376pt;}
.fs9_c00097{font-size:55.616000pt;}
.fsf_c00097{font-size:58.256000pt;}
.fs4_c00097{font-size:63.008000pt;}
.fs5_c00097{font-size:64.768000pt;}
.fsc_c00097{font-size:66.528000pt;}
.fs3_c00097{font-size:67.760000pt;}
.fs2_c00097{font-size:69.696000pt;}
.fse_c00097{font-size:70.048000pt;}
.fs0_c00097{font-size:76.032176pt;}
.y0_c00097{bottom:0.000000pt;}
.y23_c00097{bottom:14.494520pt;}
.y1_c00097{bottom:68.000000pt;}
.y22_c00097{bottom:100.980920pt;}
.y21_c00097{bottom:128.225720pt;}
.y20_c00097{bottom:155.470520pt;}
.y1f_c00097{bottom:187.150520pt;}
.y1e_c00097{bottom:216.608520pt;}
.y1d_c00097{bottom:245.758520pt;}
.y1c_c00097{bottom:273.632520pt;}
.y1b_c00097{bottom:305.950520pt;}
.y1a_c00097{bottom:309.430920pt;}
.y19_c00097{bottom:311.652920pt;}
.y18_c00097{bottom:333.190920pt;}
.y17_c00097{bottom:362.024120pt;}
.y16_c00097{bottom:392.120120pt;}
.y15_c00097{bottom:421.265720pt;}
.y14_c00097{bottom:433.620920pt;}
.y13_c00097{bottom:449.773320pt;}
.y12_c00097{bottom:478.289720pt;}
.y11_c00097{bottom:507.114120pt;}
.y10_c00097{bottom:536.264120pt;}
.yf_c00097{bottom:564.771720pt;}
.ye_c00097{bottom:565.088520pt;}
.yd_c00097{bottom:577.126920pt;}
.yc_c00097{bottom:580.928520pt;}
.yb_c00097{bottom:623.700920pt;}
.ya_c00097{bottom:652.846520pt;}
.y9_c00097{bottom:681.992120pt;}
.y8_c00097{bottom:710.820920pt;}
.y7_c00097{bottom:739.966520pt;}
.y6_c00097{bottom:769.112120pt;}
.y5_c00097{bottom:799.208120pt;}
.y4_c00097{bottom:829.304120pt;}
.y3_c00097{bottom:934.160520pt;}
.y2_c00097{bottom:962.672520pt;}
.hd_c00097{height:19.518984pt;}
.h3_c00097{height:20.559000pt;}
.hc_c00097{height:29.364844pt;}
.ha_c00097{height:32.070415pt;}
.hf_c00097{height:34.602280pt;}
.h12_c00097{height:35.978250pt;}
.h9_c00097{height:36.712500pt;}
.h8_c00097{height:42.219375pt;}
.hb_c00097{height:58.005750pt;}
.h11_c00097{height:60.759188pt;}
.h6_c00097{height:61.838906pt;}
.h7_c00097{height:63.566250pt;}
.he_c00097{height:65.293594pt;}
.h5_c00097{height:66.502734pt;}
.h4_c00097{height:68.402813pt;}
.h10_c00097{height:68.748281pt;}
.h2_c00097{height:74.621423pt;}
.h1_c00097{height:986.666667pt;}
.h0_c00097{height:1122.666667pt;}
.w1_c00097{width:652.000000pt;}
.w0_c00097{width:793.333333pt;}
.x0_c00097{left:0.000000pt;}
.x1d_c00097{left:60.173987pt;}
.x4_c00097{left:61.881187pt;}
.xe_c00097{left:63.733587pt;}
.x1_c00097{left:70.666667pt;}
.x16_c00097{left:80.994787pt;}
.x39_c00097{left:89.627587pt;}
.x2b_c00097{left:90.714387pt;}
.x5_c00097{left:91.699987pt;}
.x57_c00097{left:100.407587pt;}
.x44_c00097{left:101.459187pt;}
.x32_c00097{left:109.524387pt;}
.x49_c00097{left:111.323987pt;}
.x3a_c00097{left:120.194387pt;}
.x26_c00097{left:121.118387pt;}
.x2f_c00097{left:130.666387pt;}
.x38_c00097{left:138.449987pt;}
.x1e_c00097{left:140.055987pt;}
.x17_c00097{left:141.978787pt;}
.x51_c00097{left:149.964787pt;}
.xf_c00097{left:159.011187pt;}
.x2c_c00097{left:160.427987pt;}
.x1f_c00097{left:169.637187pt;}
.x53_c00097{left:179.039987pt;}
.x6_c00097{left:189.269987pt;}
.x3b_c00097{left:207.455187pt;}
.x7_c00097{left:218.248387pt;}
.x4c_c00097{left:219.330787pt;}
.x10_c00097{left:228.830387pt;}
.x18_c00097{left:238.461987pt;}
.x3c_c00097{left:248.177187pt;}
.x27_c00097{left:249.712787pt;}
.x5c_c00097{left:254.983987pt;}
.x11_c00097{left:258.653587pt;}
.x55_c00097{left:259.603987pt;}
.x30_c00097{left:268.302787pt;}
.x54_c00097{left:269.393987pt;}
.x28_c00097{left:277.173187pt;}
.x4a_c00097{left:278.295187pt;}
.x41_c00097{left:287.253587pt;}
.x12_c00097{left:288.415187pt;}
.x2d_c00097{left:298.213987pt;}
.x45_c00097{left:301.060787pt;}
.x19_c00097{left:308.347187pt;}
.x5d_c00097{left:317.441987pt;}
.x3d_c00097{left:319.135987pt;}
.x2e_c00097{left:327.231987pt;}
.x8_c00097{left:328.675187pt;}
.x56_c00097{left:337.849187pt;}
.x20_c00097{left:338.781987pt;}
.x5a_c00097{left:347.823987pt;}
.x3e_c00097{left:348.871187pt;}
.x29_c00097{left:357.068387pt;}
.x4d_c00097{left:358.713987pt;}
.x21_c00097{left:367.936387pt;}
.x9_c00097{left:377.097187pt;}
.x13_c00097{left:378.065187pt;}
.x33_c00097{left:386.957587pt;}
.x4b_c00097{left:397.249187pt;}
.xa_c00097{left:406.599187pt;}
.x34_c00097{left:415.935987pt;}
.x4e_c00097{left:417.348387pt;}
.x1a_c00097{left:426.830387pt;}
.x48_c00097{left:432.418387pt;}
.xb_c00097{left:436.206787pt;}
.x59_c00097{left:437.909587pt;}
.x46_c00097{left:445.429187pt;}
.x35_c00097{left:446.405987pt;}
.x42_c00097{left:447.475187pt;}
.x36_c00097{left:456.486387pt;}
.x22_c00097{left:476.180787pt;}
.x47_c00097{left:484.989587pt;}
.x4f_c00097{left:486.005987pt;}
.x14_c00097{left:495.699187pt;}
.x2a_c00097{left:504.318787pt;}
.x3f_c00097{left:505.409987pt;}
.x1b_c00097{left:514.095587pt;}
.x25_c00097{left:515.868787pt;}
.x23_c00097{left:524.765587pt;}
.xc_c00097{left:535.061587pt;}
.x58_c00097{left:545.643587pt;}
.x37_c00097{left:554.544787pt;}
.x3_c00097{left:555.921987pt;}
.x15_c00097{left:564.132387pt;}
.x40_c00097{left:566.134387pt;}
.x1c_c00097{left:567.159587pt;}
.x2_c00097{left:575.083987pt;}
.xd_c00097{left:584.640787pt;}
.x24_c00097{left:594.065587pt;}
.x52_c00097{left:604.282387pt;}
.x5b_c00097{left:605.487987pt;}
.x43_c00097{left:608.057587pt;}
.x31_c00097{left:609.104787pt;}
.x50_c00097{left:614.419987pt;}
.x5e_c00097{left:634.035187pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_88a1766e38218d942d98d36b.woff2')format("woff");}.ff1_c00098{font-family:ff1_c00098;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00098;src:url('chunks/assets/font_3c275ded1461421e43bc9da0.woff2')format("woff");}.ff2_c00098{font-family:ff2_c00098;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00098;src:url('chunks/assets/font_5627b4589afd8677680f8e45.woff2')format("woff");}.ff3_c00098{font-family:ff3_c00098;line-height:0.666000;font-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_c00098{transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);}
.m97_c00098{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m79_c00098{transform:matrix(0.190754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190754,0.000000,0.000000,0.250000,0,0);}
.m86_c00098{transform:matrix(0.221355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221355,0.000000,0.000000,0.250000,0,0);}
.m8a_c00098{transform:matrix(0.227206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227206,0.000000,0.000000,0.250000,0,0);}
.m4f_c00098{transform:matrix(0.244060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244060,0.000000,0.000000,0.250000,0,0);}
.m3f_c00098{transform:matrix(0.247242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247242,0.000000,0.000000,0.250000,0,0);}
.m0_c00098{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00098{transform:matrix(0.250603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250603,0.000000,0.000000,0.250000,0,0);}
.m4b_c00098{transform:matrix(0.250677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250677,0.000000,0.000000,0.250000,0,0);}
.m1_c00098{transform:matrix(0.250847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250847,0.000000,0.000000,0.250000,0,0);}
.m14_c00098{transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);}
.m78_c00098{transform:matrix(0.254434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254434,0.000000,0.000000,0.250000,0,0);}
.m24_c00098{transform:matrix(0.255103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255103,0.000000,0.000000,0.250000,0,0);}
.m66_c00098{transform:matrix(0.256579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256579,0.000000,0.000000,0.250000,0,0);}
.m23_c00098{transform:matrix(0.256716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256716,0.000000,0.000000,0.250000,0,0);}
.m9a_c00098{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m59_c00098{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.m75_c00098{transform:matrix(0.263109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263109,0.000000,0.000000,0.250000,0,0);}
.m4_c00098{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m3c_c00098{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m25_c00098{transform:matrix(0.264128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264128,0.000000,0.000000,0.250000,0,0);}
.m1b_c00098{transform:matrix(0.264840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264840,0.000000,0.000000,0.250000,0,0);}
.m2d_c00098{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m82_c00098{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.m51_c00098{transform:matrix(0.267199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267199,0.000000,0.000000,0.250000,0,0);}
.md_c00098{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m65_c00098{transform:matrix(0.269597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269597,0.000000,0.000000,0.250000,0,0);}
.ma_c00098{transform:matrix(0.269857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269857,0.000000,0.000000,0.250000,0,0);}
.m74_c00098{transform:matrix(0.270235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270235,0.000000,0.000000,0.250000,0,0);}
.m62_c00098{transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);}
.m96_c00098{transform:matrix(0.270399,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270399,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270399,0.000000,0.000000,0.250000,0,0);}
.m21_c00098{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m1f_c00098{transform:matrix(0.272071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272071,0.000000,0.000000,0.250000,0,0);}
.m12_c00098{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m5e_c00098{transform:matrix(0.273069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273069,0.000000,0.000000,0.250000,0,0);}
.m92_c00098{transform:matrix(0.273624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273624,0.000000,0.000000,0.250000,0,0);}
.m40_c00098{transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);}
.m72_c00098{transform:matrix(0.275282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275282,0.000000,0.000000,0.250000,0,0);}
.m30_c00098{transform:matrix(0.275438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275438,0.000000,0.000000,0.250000,0,0);}
.mc_c00098{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m9_c00098{transform:matrix(0.276048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276048,0.000000,0.000000,0.250000,0,0);}
.m8e_c00098{transform:matrix(0.276150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276150,0.000000,0.000000,0.250000,0,0);}
.m2c_c00098{transform:matrix(0.276588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276588,0.000000,0.000000,0.250000,0,0);}
.m81_c00098{transform:matrix(0.276857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276857,0.000000,0.000000,0.250000,0,0);}
.m67_c00098{transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);}
.m5b_c00098{transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);}
.m98_c00098{transform:matrix(0.278540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278540,0.000000,0.000000,0.250000,0,0);}
.m9c_c00098{transform:matrix(0.279071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279071,0.000000,0.000000,0.250000,0,0);}
.m9d_c00098{transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);}
.m8c_c00098{transform:matrix(0.279794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279794,0.000000,0.000000,0.250000,0,0);}
.m53_c00098{transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);}
.m5c_c00098{transform:matrix(0.280054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280054,0.000000,0.000000,0.250000,0,0);}
.m3b_c00098{transform:matrix(0.280224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280224,0.000000,0.000000,0.250000,0,0);}
.m19_c00098{transform:matrix(0.280359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280359,0.000000,0.000000,0.250000,0,0);}
.m7d_c00098{transform:matrix(0.280688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280688,0.000000,0.000000,0.250000,0,0);}
.m1e_c00098{transform:matrix(0.281595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281595,0.000000,0.000000,0.250000,0,0);}
.m5d_c00098{transform:matrix(0.282935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282935,0.000000,0.000000,0.250000,0,0);}
.m11_c00098{transform:matrix(0.283405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283405,0.000000,0.000000,0.250000,0,0);}
.m43_c00098{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m7b_c00098{transform:matrix(0.285265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285265,0.000000,0.000000,0.250000,0,0);}
.m76_c00098{transform:matrix(0.285729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285729,0.000000,0.000000,0.250000,0,0);}
.m39_c00098{transform:matrix(0.285757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285757,0.000000,0.000000,0.250000,0,0);}
.me_c00098{transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);}
.m42_c00098{transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);}
.m80_c00098{transform:matrix(0.286350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286350,0.000000,0.000000,0.250000,0,0);}
.m1a_c00098{transform:matrix(0.288487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288487,0.000000,0.000000,0.250000,0,0);}
.m36_c00098{transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);}
.m89_c00098{transform:matrix(0.288974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288974,0.000000,0.000000,0.250000,0,0);}
.m83_c00098{transform:matrix(0.289989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289989,0.000000,0.000000,0.250000,0,0);}
.m77_c00098{transform:matrix(0.290157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290157,0.000000,0.000000,0.250000,0,0);}
.m94_c00098{transform:matrix(0.290336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290336,0.000000,0.000000,0.250000,0,0);}
.m32_c00098{transform:matrix(0.291702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291702,0.000000,0.000000,0.250000,0,0);}
.m29_c00098{transform:matrix(0.293040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293040,0.000000,0.000000,0.250000,0,0);}
.m99_c00098{transform:matrix(0.293098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293098,0.000000,0.000000,0.250000,0,0);}
.m7f_c00098{transform:matrix(0.293208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293208,0.000000,0.000000,0.250000,0,0);}
.m41_c00098{transform:matrix(0.293644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293644,0.000000,0.000000,0.250000,0,0);}
.m34_c00098{transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);}
.m16_c00098{transform:matrix(0.293689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293689,0.000000,0.000000,0.250000,0,0);}
.mb_c00098{transform:matrix(0.295788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295788,0.000000,0.000000,0.250000,0,0);}
.m5_c00098{transform:matrix(0.297381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297381,0.000000,0.000000,0.250000,0,0);}
.m20_c00098{transform:matrix(0.297645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297645,0.000000,0.000000,0.250000,0,0);}
.m6e_c00098{transform:matrix(0.297658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297658,0.000000,0.000000,0.250000,0,0);}
.m50_c00098{transform:matrix(0.297852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297852,0.000000,0.000000,0.250000,0,0);}
.mf_c00098{transform:matrix(0.297890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297890,0.000000,0.000000,0.250000,0,0);}
.m95_c00098{transform:matrix(0.298246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298246,0.000000,0.000000,0.250000,0,0);}
.m5f_c00098{transform:matrix(0.298853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298853,0.000000,0.000000,0.250000,0,0);}
.m49_c00098{transform:matrix(0.299789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299789,0.000000,0.000000,0.250000,0,0);}
.m58_c00098{transform:matrix(0.299939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299939,0.000000,0.000000,0.250000,0,0);}
.m18_c00098{transform:matrix(0.300104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300104,0.000000,0.000000,0.250000,0,0);}
.m4d_c00098{transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);}
.m7e_c00098{transform:matrix(0.301207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301207,0.000000,0.000000,0.250000,0,0);}
.m61_c00098{transform:matrix(0.301424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301424,0.000000,0.000000,0.250000,0,0);}
.m55_c00098{transform:matrix(0.301673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301673,0.000000,0.000000,0.250000,0,0);}
.m84_c00098{transform:matrix(0.301789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301789,0.000000,0.000000,0.250000,0,0);}
.m3d_c00098{transform:matrix(0.302071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302071,0.000000,0.000000,0.250000,0,0);}
.m45_c00098{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m85_c00098{transform:matrix(0.302718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302718,0.000000,0.000000,0.250000,0,0);}
.m47_c00098{transform:matrix(0.303488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303488,0.000000,0.000000,0.250000,0,0);}
.m6d_c00098{transform:matrix(0.304443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304443,0.000000,0.000000,0.250000,0,0);}
.m33_c00098{transform:matrix(0.304636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304636,0.000000,0.000000,0.250000,0,0);}
.m2e_c00098{transform:matrix(0.305122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305122,0.000000,0.000000,0.250000,0,0);}
.m8d_c00098{transform:matrix(0.305227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305227,0.000000,0.000000,0.250000,0,0);}
.m1c_c00098{transform:matrix(0.305282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305282,0.000000,0.000000,0.250000,0,0);}
.m6b_c00098{transform:matrix(0.305475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305475,0.000000,0.000000,0.250000,0,0);}
.m7_c00098{transform:matrix(0.305545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305545,0.000000,0.000000,0.250000,0,0);}
.m68_c00098{transform:matrix(0.305945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305945,0.000000,0.000000,0.250000,0,0);}
.m17_c00098{transform:matrix(0.305975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305975,0.000000,0.000000,0.250000,0,0);}
.m8f_c00098{transform:matrix(0.306258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306258,0.000000,0.000000,0.250000,0,0);}
.m46_c00098{transform:matrix(0.307372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307372,0.000000,0.000000,0.250000,0,0);}
.m93_c00098{transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);}
.m3e_c00098{transform:matrix(0.307850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307850,0.000000,0.000000,0.250000,0,0);}
.m4c_c00098{transform:matrix(0.308409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308409,0.000000,0.000000,0.250000,0,0);}
.m8_c00098{transform:matrix(0.309029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309029,0.000000,0.000000,0.250000,0,0);}
.m2a_c00098{transform:matrix(0.309683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309683,0.000000,0.000000,0.250000,0,0);}
.m88_c00098{transform:matrix(0.310426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310426,0.000000,0.000000,0.250000,0,0);}
.m44_c00098{transform:matrix(0.310628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310628,0.000000,0.000000,0.250000,0,0);}
.m22_c00098{transform:matrix(0.310958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310958,0.000000,0.000000,0.250000,0,0);}
.m37_c00098{transform:matrix(0.311463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311463,0.000000,0.000000,0.250000,0,0);}
.m6a_c00098{transform:matrix(0.312229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312229,0.000000,0.000000,0.250000,0,0);}
.m64_c00098{transform:matrix(0.312661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312661,0.000000,0.000000,0.250000,0,0);}
.m70_c00098{transform:matrix(0.314576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314576,0.000000,0.000000,0.250000,0,0);}
.m9f_c00098{transform:matrix(0.314815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314815,0.000000,0.000000,0.250000,0,0);}
.m71_c00098{transform:matrix(0.314995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314995,0.000000,0.000000,0.250000,0,0);}
.m69_c00098{transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);}
.m91_c00098{transform:matrix(0.315789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315789,0.000000,0.000000,0.250000,0,0);}
.m60_c00098{transform:matrix(0.316085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316085,0.000000,0.000000,0.250000,0,0);}
.m4a_c00098{transform:matrix(0.316169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316169,0.000000,0.000000,0.250000,0,0);}
.m52_c00098{transform:matrix(0.317518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317518,0.000000,0.000000,0.250000,0,0);}
.m9e_c00098{transform:matrix(0.319554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319554,0.000000,0.000000,0.250000,0,0);}
.m13_c00098{transform:matrix(0.319859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319859,0.000000,0.000000,0.250000,0,0);}
.m8b_c00098{transform:matrix(0.323268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323268,0.000000,0.000000,0.250000,0,0);}
.m3a_c00098{transform:matrix(0.323918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323918,0.000000,0.000000,0.250000,0,0);}
.m87_c00098{transform:matrix(0.324174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324174,0.000000,0.000000,0.250000,0,0);}
.m63_c00098{transform:matrix(0.324300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324300,0.000000,0.000000,0.250000,0,0);}
.m9b_c00098{transform:matrix(0.324407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324407,0.000000,0.000000,0.250000,0,0);}
.m26_c00098{transform:matrix(0.327636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327636,0.000000,0.000000,0.250000,0,0);}
.m73_c00098{transform:matrix(0.329226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329226,0.000000,0.000000,0.250000,0,0);}
.m27_c00098{transform:matrix(0.329261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329261,0.000000,0.000000,0.250000,0,0);}
.m7a_c00098{transform:matrix(0.330299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330299,0.000000,0.000000,0.250000,0,0);}
.m4e_c00098{transform:matrix(0.330443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330443,0.000000,0.000000,0.250000,0,0);}
.m6_c00098{transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);}
.m10_c00098{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m5a_c00098{transform:matrix(0.337641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337641,0.000000,0.000000,0.250000,0,0);}
.m1d_c00098{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m6f_c00098{transform:matrix(0.340762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340762,0.000000,0.000000,0.250000,0,0);}
.m57_c00098{transform:matrix(0.344410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344410,0.000000,0.000000,0.250000,0,0);}
.m56_c00098{transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);}
.m48_c00098{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m38_c00098{transform:matrix(0.349631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349631,0.000000,0.000000,0.250000,0,0);}
.m54_c00098{transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);}
.m31_c00098{transform:matrix(0.355046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355046,0.000000,0.000000,0.250000,0,0);}
.m2b_c00098{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m90_c00098{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);}
.m7c_c00098{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m35_c00098{transform:matrix(0.361926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361926,0.000000,0.000000,0.250000,0,0);}
.m3_c00098{transform:matrix(0.366374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366374,0.000000,0.000000,0.250000,0,0);}
.m6c_c00098{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);}
.m28_c00098{transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);}
.m15_c00098{transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);}
.v1_c00098{vertical-align:-1.447776px;}
.v0_c00098{vertical-align:0.000000px;}
.lse_c00098{letter-spacing:-3.367980px;}
.lsa_c00098{letter-spacing:-2.744280px;}
.ls8_c00098{letter-spacing:-1.427026px;}
.lsf_c00098{letter-spacing:-1.261267px;}
.ls0_c00098{letter-spacing:0.000000px;}
.ls9_c00098{letter-spacing:1.301573px;}
.ls4_c00098{letter-spacing:1.960200px;}
.lsb_c00098{letter-spacing:2.118764px;}
.ls10_c00098{letter-spacing:2.407126px;}
.lsd_c00098{letter-spacing:2.599245px;}
.lsc_c00098{letter-spacing:3.177900px;}
.ls6_c00098{letter-spacing:3.435310px;}
.ls7_c00098{letter-spacing:3.691809px;}
.ls1_c00098{letter-spacing:3.880810px;}
.ls3_c00098{letter-spacing:3.920400px;}
.ls5_c00098{letter-spacing:4.405500px;}
.ls2_c00098{letter-spacing:29.937798px;}
.ls11_c00098{letter-spacing:48.470598px;}
.ls12_c00098{letter-spacing:49.896198px;}
.sc__c00098{text-shadow:none;}
.sc0_c00098{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00098{-webkit-text-stroke:0px transparent;}
.sc0_c00098{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00098{word-spacing:0.000000px;}
._0_c00098{margin-left:-1.490148px;}
._4_c00098{width:7.246800px;}
._2_c00098{width:23.679216px;}
._1_c00098{width:32.588820px;}
._3_c00098{width:62.270901px;}
._5_c00098{width:79.961112px;}
.fc0_c00098{color:transparent;}
.fs0_c00098{font-size:22.176000px;}
.fse_c00098{font-size:25.146000px;}
.fs5_c00098{font-size:27.720000px;}
.fs3_c00098{font-size:29.937798px;}
.fs15_c00098{font-size:33.264000px;}
.fs6_c00098{font-size:33.660000px;}
.fsd_c00098{font-size:36.036198px;}
.fs12_c00098{font-size:41.382000px;}
.fs14_c00098{font-size:44.748000px;}
.fsf_c00098{font-size:48.470598px;}
.fs11_c00098{font-size:49.896198px;}
.fsa_c00098{font-size:60.192000px;}
.fsb_c00098{font-size:63.558000px;}
.fs1_c00098{font-size:66.528000px;}
.fs8_c00098{font-size:68.706198px;}
.fs9_c00098{font-size:69.696198px;}
.fs10_c00098{font-size:72.864000px;}
.fs2_c00098{font-size:77.616198px;}
.fs4_c00098{font-size:78.408000px;}
.fs13_c00098{font-size:86.130000px;}
.fs7_c00098{font-size:88.110000px;}
.fsc_c00098{font-size:96.228000px;}
.y0_c00098{bottom:0.000000px;}
.y2c_c00098{bottom:12.380985px;}
.y2b_c00098{bottom:19.508985px;}
.y26_c00098{bottom:61.213329px;}
.y25_c00098{bottom:76.176585px;}
.y1_c00098{bottom:76.500000px;}
.y2a_c00098{bottom:84.730185px;}
.y29_c00098{bottom:108.613935px;}
.y27_c00098{bottom:113.959935px;}
.y28_c00098{bottom:116.093385px;}
.y24_c00098{bottom:143.541135px;}
.y23_c00098{bottom:173.830185px;}
.y2_c00098{bottom:201.277935px;}
.y22_c00098{bottom:206.980335px;}
.y21_c00098{bottom:239.412735px;}
.y1e_c00098{bottom:239.769135px;}
.y1f_c00098{bottom:244.753785px;}
.y20_c00098{bottom:252.243135px;}
.y1d_c00098{bottom:262.217385px;}
.y1c_c00098{bottom:272.557935px;}
.y1b_c00098{bottom:304.277535px;}
.y1a_c00098{bottom:336.348585px;}
.y19_c00098{bottom:349.891785px;}
.y18_c00098{bottom:370.211535px;}
.y17_c00098{bottom:403.351785px;}
.y14_c00098{bottom:468.577935px;}
.y16_c00098{bottom:470.716335px;}
.y15_c00098{bottom:477.131535px;}
.y13_c00098{bottom:501.361785px;}
.y12_c00098{bottom:534.506985px;}
.y11_c00098{bottom:567.657135px;}
.y10_c00098{bottom:600.445935px;}
.yf_c00098{bottom:631.809135px;}
.ye_c00098{bottom:664.241535px;}
.yd_c00098{bottom:698.099535px;}
.yc_c00098{bottom:730.888335px;}
.yb_c00098{bottom:762.959385px;}
.y9_c00098{bottom:791.471385px;}
.y8_c00098{bottom:860.261535px;}
.y7_c00098{bottom:893.050335px;}
.y6_c00098{bottom:926.908335px;}
.ya_c00098{bottom:1059.840585px;}
.y5_c00098{bottom:1070.532585px;}
.y4_c00098{bottom:1081.224585px;}
.y3_c00098{bottom:1093.698585px;}
.h5_c00098{height:19.938573px;}
.h2_c00098{height:23.128875px;}
.hf_c00098{height:26.226492px;}
.h7_c00098{height:28.911094px;}
.h13_c00098{height:31.587673px;}
.h10_c00098{height:32.281418px;}
.h8_c00098{height:33.035449px;}
.h12_c00098{height:33.230868px;}
.h17_c00098{height:34.693313px;}
.he_c00098{height:35.367558px;}
.h14_c00098{height:43.160133px;}
.h16_c00098{height:43.917715px;}
.hb_c00098{height:62.778375px;}
.hc_c00098{height:66.289008px;}
.ha_c00098{height:67.431376px;}
.h3_c00098{height:69.386625px;}
.h11_c00098{height:71.512031px;}
.h4_c00098{height:76.176054px;}
.h6_c00098{height:76.953164px;}
.h15_c00098{height:84.531885px;}
.h9_c00098{height:86.475146px;}
.hd_c00098{height:94.442520px;}
.h1_c00098{height:1110.000000px;}
.h0_c00098{height:1263.000000px;}
.w1_c00098{width:733.500000px;}
.w0_c00098{width:892.500000px;}
.x0_c00098{left:0.000000px;}
.x2_c00098{left:8.483835px;}
.x7_c00098{left:73.086285px;}
.x2a_c00098{left:74.214885px;}
.x31_c00098{left:75.660285px;}
.x1_c00098{left:79.500000px;}
.x18_c00098{left:105.251385px;}
.x59_c00098{left:106.904685px;}
.x8_c00098{left:117.067035px;}
.x1d_c00098{left:127.768935px;}
.x51_c00098{left:128.951985px;}
.x19_c00098{left:137.545185px;}
.x56_c00098{left:139.728135px;}
.x32_c00098{left:149.930085px;}
.x9_c00098{left:151.226985px;}
.x2b_c00098{left:160.498335px;}
.x44_c00098{left:161.562585px;}
.x25_c00098{left:171.957585px;}
.x33_c00098{left:182.411985px;}
.xf_c00098{left:183.679185px;}
.x2c_c00098{left:193.564335px;}
.x1e_c00098{left:204.830535px;}
.x10_c00098{left:215.235435px;}
.x1a_c00098{left:216.359085px;}
.x49_c00098{left:226.229385px;}
.x26_c00098{left:227.501535px;}
.x1f_c00098{left:237.673785px;}
.x52_c00098{left:239.262735px;}
.x5b_c00098{left:244.064235px;}
.xa_c00098{left:249.623085px;}
.x11_c00098{left:261.047685px;}
.x57_c00098{left:262.804935px;}
.x3a_c00098{left:270.873435px;}
.x45_c00098{left:271.977285px;}
.x4c_c00098{left:283.461285px;}
.x2d_c00098{left:284.545335px;}
.x12_c00098{left:292.970235px;}
.xb_c00098{left:294.163185px;}
.x41_c00098{left:295.955085px;}
.x20_c00098{left:303.201885px;}
.x27_c00098{left:305.929335px;}
.x2e_c00098{left:316.809435px;}
.x34_c00098{left:327.214335px;}
.x13_c00098{left:338.718135px;}
.x4f_c00098{left:350.023935px;}
.x3d_c00098{left:371.021835px;}
.x42_c00098{left:372.422685px;}
.x53_c00098{left:373.640385px;}
.x21_c00098{left:382.936485px;}
.x38_c00098{left:383.956185px;}
.xc_c00098{left:394.554135px;}
.x58_c00098{left:405.622335px;}
.x54_c00098{left:407.117235px;}
.x46_c00098{left:408.181485px;}
.x22_c00098{left:416.784585px;}
.x4d_c00098{left:427.842885px;}
.x14_c00098{left:439.524885px;}
.x28_c00098{left:440.603985px;}
.x39_c00098{left:450.261435px;}
.x4a_c00098{left:460.953435px;}
.x4e_c00098{left:461.992935px;}
.x15_c00098{left:471.467235px;}
.x55_c00098{left:474.952035px;}
.x23_c00098{left:482.604735px;}
.x5c_c00098{left:494.614425px;}
.x47_c00098{left:502.642335px;}
.x35_c00098{left:505.057935px;}
.x3e_c00098{left:506.117235px;}
.x29_c00098{left:516.779535px;}
.xd_c00098{left:527.615085px;}
.x50_c00098{left:538.485285px;}
.x3b_c00098{left:539.752485px;}
.x36_c00098{left:550.241535px;}
.x16_c00098{left:560.403885px;}
.x2f_c00098{left:561.829485px;}
.x24_c00098{left:572.100735px;}
.x37_c00098{left:581.971035px;}
.x5a_c00098{left:583.441185px;}
.x30_c00098{left:594.143085px;}
.x17_c00098{left:605.285535px;}
.x48_c00098{left:616.022085px;}
.x3c_c00098{left:627.956535px;}
.x4b_c00098{left:629.367285px;}
.xe_c00098{left:638.118885px;}
.x3f_c00098{left:639.455385px;}
.x4_c00098{left:649.142535px;}
.x5_c00098{left:660.552285px;}
.x40_c00098{left:671.917485px;}
.x43_c00098{left:686.302185px;}
.x1b_c00098{left:688.113885px;}
.x3_c00098{left:689.742435px;}
.x6_c00098{left:691.425435px;}
.x1c_c00098{left:694.147935px;}
@media print{
.v1_c00098{vertical-align:-1.286912pt;}
.v0_c00098{vertical-align:0.000000pt;}
.lse_c00098{letter-spacing:-2.993760pt;}
.lsa_c00098{letter-spacing:-2.439360pt;}
.ls8_c00098{letter-spacing:-1.268467pt;}
.lsf_c00098{letter-spacing:-1.121126pt;}
.ls0_c00098{letter-spacing:0.000000pt;}
.ls9_c00098{letter-spacing:1.156954pt;}
.ls4_c00098{letter-spacing:1.742400pt;}
.lsb_c00098{letter-spacing:1.883346pt;}
.ls10_c00098{letter-spacing:2.139667pt;}
.lsd_c00098{letter-spacing:2.310440pt;}
.lsc_c00098{letter-spacing:2.824800pt;}
.ls6_c00098{letter-spacing:3.053609pt;}
.ls7_c00098{letter-spacing:3.281608pt;}
.ls1_c00098{letter-spacing:3.449609pt;}
.ls3_c00098{letter-spacing:3.484800pt;}
.ls5_c00098{letter-spacing:3.916000pt;}
.ls2_c00098{letter-spacing:26.611376pt;}
.ls11_c00098{letter-spacing:43.084976pt;}
.ls12_c00098{letter-spacing:44.352176pt;}
.ws0_c00098{word-spacing:0.000000pt;}
._0_c00098{margin-left:-1.324576pt;}
._4_c00098{width:6.441600pt;}
._2_c00098{width:21.048192pt;}
._1_c00098{width:28.967840pt;}
._3_c00098{width:55.351912pt;}
._5_c00098{width:71.076544pt;}
.fs0_c00098{font-size:19.712000pt;}
.fse_c00098{font-size:22.352000pt;}
.fs5_c00098{font-size:24.640000pt;}
.fs3_c00098{font-size:26.611376pt;}
.fs15_c00098{font-size:29.568000pt;}
.fs6_c00098{font-size:29.920000pt;}
.fsd_c00098{font-size:32.032176pt;}
.fs12_c00098{font-size:36.784000pt;}
.fs14_c00098{font-size:39.776000pt;}
.fsf_c00098{font-size:43.084976pt;}
.fs11_c00098{font-size:44.352176pt;}
.fsa_c00098{font-size:53.504000pt;}
.fsb_c00098{font-size:56.496000pt;}
.fs1_c00098{font-size:59.136000pt;}
.fs8_c00098{font-size:61.072176pt;}
.fs9_c00098{font-size:61.952176pt;}
.fs10_c00098{font-size:64.768000pt;}
.fs2_c00098{font-size:68.992176pt;}
.fs4_c00098{font-size:69.696000pt;}
.fs13_c00098{font-size:76.560000pt;}
.fs7_c00098{font-size:78.320000pt;}
.fsc_c00098{font-size:85.536000pt;}
.y0_c00098{bottom:0.000000pt;}
.y2c_c00098{bottom:11.005320pt;}
.y2b_c00098{bottom:17.341320pt;}
.y26_c00098{bottom:54.411848pt;}
.y25_c00098{bottom:67.712520pt;}
.y1_c00098{bottom:68.000000pt;}
.y2a_c00098{bottom:75.315720pt;}
.y29_c00098{bottom:96.545720pt;}
.y27_c00098{bottom:101.297720pt;}
.y28_c00098{bottom:103.194120pt;}
.y24_c00098{bottom:127.592120pt;}
.y23_c00098{bottom:154.515720pt;}
.y2_c00098{bottom:178.913720pt;}
.y22_c00098{bottom:183.982520pt;}
.y21_c00098{bottom:212.811320pt;}
.y1e_c00098{bottom:213.128120pt;}
.y1f_c00098{bottom:217.558920pt;}
.y20_c00098{bottom:224.216120pt;}
.y1d_c00098{bottom:233.082120pt;}
.y1c_c00098{bottom:242.273720pt;}
.y1b_c00098{bottom:270.468920pt;}
.y1a_c00098{bottom:298.976520pt;}
.y19_c00098{bottom:311.014920pt;}
.y18_c00098{bottom:329.076920pt;}
.y17_c00098{bottom:358.534920pt;}
.y14_c00098{bottom:416.513720pt;}
.y16_c00098{bottom:418.414520pt;}
.y15_c00098{bottom:424.116920pt;}
.y13_c00098{bottom:445.654920pt;}
.y12_c00098{bottom:475.117320pt;}
.y11_c00098{bottom:504.584120pt;}
.y10_c00098{bottom:533.729720pt;}
.yf_c00098{bottom:561.608120pt;}
.ye_c00098{bottom:590.436920pt;}
.yd_c00098{bottom:620.532920pt;}
.yc_c00098{bottom:649.678520pt;}
.yb_c00098{bottom:678.186120pt;}
.y9_c00098{bottom:703.530120pt;}
.y8_c00098{bottom:764.676920pt;}
.y7_c00098{bottom:793.822520pt;}
.y6_c00098{bottom:823.918520pt;}
.ya_c00098{bottom:942.080520pt;}
.y5_c00098{bottom:951.584520pt;}
.y4_c00098{bottom:961.088520pt;}
.y3_c00098{bottom:972.176520pt;}
.h5_c00098{height:17.723176pt;}
.h2_c00098{height:20.559000pt;}
.hf_c00098{height:23.312438pt;}
.h7_c00098{height:25.698750pt;}
.h13_c00098{height:28.077932pt;}
.h10_c00098{height:28.694594pt;}
.h8_c00098{height:29.364844pt;}
.h12_c00098{height:29.538549pt;}
.h17_c00098{height:30.838500pt;}
.he_c00098{height:31.437829pt;}
.h14_c00098{height:38.364562pt;}
.h16_c00098{height:39.037969pt;}
.hb_c00098{height:55.803000pt;}
.hc_c00098{height:58.923563pt;}
.ha_c00098{height:59.939001pt;}
.h3_c00098{height:61.677000pt;}
.h11_c00098{height:63.566250pt;}
.h4_c00098{height:67.712048pt;}
.h6_c00098{height:68.402813pt;}
.h15_c00098{height:75.139453pt;}
.h9_c00098{height:76.866797pt;}
.hd_c00098{height:83.948906pt;}
.h1_c00098{height:986.666667pt;}
.h0_c00098{height:1122.666667pt;}
.w1_c00098{width:652.000000pt;}
.w0_c00098{width:793.333333pt;}
.x0_c00098{left:0.000000pt;}
.x2_c00098{left:7.541187pt;}
.x7_c00098{left:64.965587pt;}
.x2a_c00098{left:65.968787pt;}
.x31_c00098{left:67.253587pt;}
.x1_c00098{left:70.666667pt;}
.x18_c00098{left:93.556787pt;}
.x59_c00098{left:95.026387pt;}
.x8_c00098{left:104.059587pt;}
.x1d_c00098{left:113.572387pt;}
.x51_c00098{left:114.623987pt;}
.x19_c00098{left:122.262387pt;}
.x56_c00098{left:124.202787pt;}
.x32_c00098{left:133.271187pt;}
.x9_c00098{left:134.423987pt;}
.x2b_c00098{left:142.665187pt;}
.x44_c00098{left:143.611187pt;}
.x25_c00098{left:152.851187pt;}
.x33_c00098{left:162.143987pt;}
.xf_c00098{left:163.270387pt;}
.x2c_c00098{left:172.057187pt;}
.x1e_c00098{left:182.071587pt;}
.x10_c00098{left:191.320387pt;}
.x1a_c00098{left:192.319187pt;}
.x49_c00098{left:201.092787pt;}
.x26_c00098{left:202.223587pt;}
.x1f_c00098{left:211.265587pt;}
.x52_c00098{left:212.677987pt;}
.x5b_c00098{left:216.945987pt;}
.xa_c00098{left:221.887187pt;}
.x11_c00098{left:232.042387pt;}
.x57_c00098{left:233.604387pt;}
.x3a_c00098{left:240.776387pt;}
.x45_c00098{left:241.757587pt;}
.x4c_c00098{left:251.965587pt;}
.x2d_c00098{left:252.929187pt;}
.x12_c00098{left:260.417987pt;}
.xb_c00098{left:261.478387pt;}
.x41_c00098{left:263.071187pt;}
.x20_c00098{left:269.512787pt;}
.x27_c00098{left:271.937187pt;}
.x2e_c00098{left:281.608387pt;}
.x34_c00098{left:290.857187pt;}
.x13_c00098{left:301.082787pt;}
.x4f_c00098{left:311.132387pt;}
.x3d_c00098{left:329.797187pt;}
.x42_c00098{left:331.042387pt;}
.x53_c00098{left:332.124787pt;}
.x21_c00098{left:340.387987pt;}
.x38_c00098{left:341.294387pt;}
.xc_c00098{left:350.714787pt;}
.x58_c00098{left:360.553187pt;}
.x54_c00098{left:361.881987pt;}
.x46_c00098{left:362.827987pt;}
.x22_c00098{left:370.475187pt;}
.x4d_c00098{left:380.304787pt;}
.x14_c00098{left:390.688787pt;}
.x28_c00098{left:391.647987pt;}
.x39_c00098{left:400.232387pt;}
.x4a_c00098{left:409.736387pt;}
.x4e_c00098{left:410.660387pt;}
.x15_c00098{left:419.081987pt;}
.x55_c00098{left:422.179587pt;}
.x23_c00098{left:428.981987pt;}
.x5c_c00098{left:439.657267pt;}
.x47_c00098{left:446.793187pt;}
.x35_c00098{left:448.940387pt;}
.x3e_c00098{left:449.881987pt;}
.x29_c00098{left:459.359587pt;}
.xd_c00098{left:468.991187pt;}
.x50_c00098{left:478.653587pt;}
.x3b_c00098{left:479.779987pt;}
.x36_c00098{left:489.103587pt;}
.x16_c00098{left:498.136787pt;}
.x2f_c00098{left:499.403987pt;}
.x24_c00098{left:508.533987pt;}
.x37_c00098{left:517.307587pt;}
.x5a_c00098{left:518.614387pt;}
.x30_c00098{left:528.127187pt;}
.x17_c00098{left:538.031587pt;}
.x48_c00098{left:547.575187pt;}
.x3c_c00098{left:558.183587pt;}
.x4b_c00098{left:559.437587pt;}
.xe_c00098{left:567.216787pt;}
.x3f_c00098{left:568.404787pt;}
.x4_c00098{left:577.015587pt;}
.x5_c00098{left:587.157587pt;}
.x40_c00098{left:597.259987pt;}
.x43_c00098{left:610.046387pt;}
.x1b_c00098{left:611.656787pt;}
.x3_c00098{left:613.104387pt;}
.x6_c00098{left:614.600387pt;}
.x1c_c00098{left:617.020387pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ec91ab3fea074b6844a7c9f5.woff2')format("woff");}.ff1_c00099{font-family:ff1_c00099;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00099;src:url('chunks/assets/font_e615d063db80eeddef552459.woff2')format("woff");}.ff2_c00099{font-family:ff2_c00099;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00099;src:url('chunks/assets/font_5d229049d20a47c24d8c1d41.woff2')format("woff");}.ff3_c00099{font-family:ff3_c00099;line-height:0.666000;font-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_c00099{transform:matrix(0.080883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080883,0.000000,0.000000,0.250000,0,0);}
.m4f_c00099{transform:matrix(0.150146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150146,0.000000,0.000000,0.250000,0,0);}
.m85_c00099{transform:matrix(0.195946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195946,0.000000,0.000000,0.250000,0,0);}
.m98_c00099{transform:matrix(0.196874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196874,0.000000,0.000000,0.250000,0,0);}
.m40_c00099{transform:matrix(0.213320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213320,0.000000,0.000000,0.250000,0,0);}
.m66_c00099{transform:matrix(0.216216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216216,0.000000,0.000000,0.250000,0,0);}
.m9c_c00099{transform:matrix(0.237277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237277,0.000000,0.000000,0.250000,0,0);}
.m1_c00099{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00099{transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);}
.m89_c00099{transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);}
.m95_c00099{transform:matrix(0.258254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258254,0.000000,0.000000,0.250000,0,0);}
.m5f_c00099{transform:matrix(0.258509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258509,0.000000,0.000000,0.250000,0,0);}
.m21_c00099{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m18_c00099{transform:matrix(0.259283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259283,0.000000,0.000000,0.250000,0,0);}
.m6c_c00099{transform:matrix(0.259554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259554,0.000000,0.000000,0.250000,0,0);}
.m0_c00099{transform:matrix(0.260124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260124,0.000000,0.000000,0.250000,0,0);}
.m82_c00099{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m2_c00099{transform:matrix(0.262352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262352,0.000000,0.000000,0.250000,0,0);}
.mc_c00099{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m34_c00099{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m2f_c00099{transform:matrix(0.264732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264732,0.000000,0.000000,0.250000,0,0);}
.m63_c00099{transform:matrix(0.265571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265571,0.000000,0.000000,0.250000,0,0);}
.me_c00099{transform:matrix(0.266174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266174,0.000000,0.000000,0.250000,0,0);}
.m62_c00099{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m30_c00099{transform:matrix(0.266351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266351,0.000000,0.000000,0.250000,0,0);}
.m69_c00099{transform:matrix(0.266789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266789,0.000000,0.000000,0.250000,0,0);}
.md_c00099{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.m93_c00099{transform:matrix(0.267419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267419,0.000000,0.000000,0.250000,0,0);}
.m16_c00099{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m2e_c00099{transform:matrix(0.268302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268302,0.000000,0.000000,0.250000,0,0);}
.m1f_c00099{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.m53_c00099{transform:matrix(0.269232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269232,0.000000,0.000000,0.250000,0,0);}
.m50_c00099{transform:matrix(0.269644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269644,0.000000,0.000000,0.250000,0,0);}
.m14_c00099{transform:matrix(0.269679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269679,0.000000,0.000000,0.250000,0,0);}
.m65_c00099{transform:matrix(0.269857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269857,0.000000,0.000000,0.250000,0,0);}
.m9a_c00099{transform:matrix(0.270180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270180,0.000000,0.000000,0.250000,0,0);}
.m5c_c00099{transform:matrix(0.270325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270325,0.000000,0.000000,0.250000,0,0);}
.m4_c00099{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.mf_c00099{transform:matrix(0.271006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271006,0.000000,0.000000,0.250000,0,0);}
.m9b_c00099{transform:matrix(0.271194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271194,0.000000,0.000000,0.250000,0,0);}
.m60_c00099{transform:matrix(0.271337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271337,0.000000,0.000000,0.250000,0,0);}
.m75_c00099{transform:matrix(0.272071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272071,0.000000,0.000000,0.250000,0,0);}
.m3b_c00099{transform:matrix(0.272137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272137,0.000000,0.000000,0.250000,0,0);}
.m6_c00099{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m77_c00099{transform:matrix(0.272823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272823,0.000000,0.000000,0.250000,0,0);}
.m54_c00099{transform:matrix(0.272881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272881,0.000000,0.000000,0.250000,0,0);}
.m79_c00099{transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);}
.m1c_c00099{transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);}
.m44_c00099{transform:matrix(0.274853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274853,0.000000,0.000000,0.250000,0,0);}
.m8a_c00099{transform:matrix(0.275438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275438,0.000000,0.000000,0.250000,0,0);}
.m8e_c00099{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m76_c00099{transform:matrix(0.275570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275570,0.000000,0.000000,0.250000,0,0);}
.m22_c00099{transform:matrix(0.275758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275758,0.000000,0.000000,0.250000,0,0);}
.m11_c00099{transform:matrix(0.276320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276320,0.000000,0.000000,0.250000,0,0);}
.m5b_c00099{transform:matrix(0.276699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276699,0.000000,0.000000,0.250000,0,0);}
.m9d_c00099{transform:matrix(0.276807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276807,0.000000,0.000000,0.250000,0,0);}
.ma0_c00099{transform:matrix(0.276947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276947,0.000000,0.000000,0.250000,0,0);}
.m6f_c00099{transform:matrix(0.277213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277213,0.000000,0.000000,0.250000,0,0);}
.m51_c00099{transform:matrix(0.277360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277360,0.000000,0.000000,0.250000,0,0);}
.m9_c00099{transform:matrix(0.277516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277516,0.000000,0.000000,0.250000,0,0);}
.m8d_c00099{transform:matrix(0.277767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277767,0.000000,0.000000,0.250000,0,0);}
.m4d_c00099{transform:matrix(0.277848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277848,0.000000,0.000000,0.250000,0,0);}
.m7_c00099{transform:matrix(0.278263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278263,0.000000,0.000000,0.250000,0,0);}
.m32_c00099{transform:matrix(0.278724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278724,0.000000,0.000000,0.250000,0,0);}
.m8f_c00099{transform:matrix(0.279677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279677,0.000000,0.000000,0.250000,0,0);}
.m41_c00099{transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);}
.m91_c00099{transform:matrix(0.280024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280024,0.000000,0.000000,0.250000,0,0);}
.m48_c00099{transform:matrix(0.280359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280359,0.000000,0.000000,0.250000,0,0);}
.m99_c00099{transform:matrix(0.280826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280826,0.000000,0.000000,0.250000,0,0);}
.m33_c00099{transform:matrix(0.281043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281043,0.000000,0.000000,0.250000,0,0);}
.m7a_c00099{transform:matrix(0.281178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281178,0.000000,0.000000,0.250000,0,0);}
.m5a_c00099{transform:matrix(0.281964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281964,0.000000,0.000000,0.250000,0,0);}
.m10_c00099{transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);}
.m94_c00099{transform:matrix(0.283141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283141,0.000000,0.000000,0.250000,0,0);}
.m67_c00099{transform:matrix(0.283229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283229,0.000000,0.000000,0.250000,0,0);}
.mb_c00099{transform:matrix(0.283242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283242,0.000000,0.000000,0.250000,0,0);}
.m29_c00099{transform:matrix(0.283354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283354,0.000000,0.000000,0.250000,0,0);}
.m86_c00099{transform:matrix(0.283805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283805,0.000000,0.000000,0.250000,0,0);}
.m1d_c00099{transform:matrix(0.284903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284903,0.000000,0.000000,0.250000,0,0);}
.m5e_c00099{transform:matrix(0.285047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285047,0.000000,0.000000,0.250000,0,0);}
.m74_c00099{transform:matrix(0.285268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285268,0.000000,0.000000,0.250000,0,0);}
.m96_c00099{transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);}
.m49_c00099{transform:matrix(0.285711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285711,0.000000,0.000000,0.250000,0,0);}
.m8c_c00099{transform:matrix(0.286908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286908,0.000000,0.000000,0.250000,0,0);}
.m2d_c00099{transform:matrix(0.286945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286945,0.000000,0.000000,0.250000,0,0);}
.m36_c00099{transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);}
.m84_c00099{transform:matrix(0.288623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288623,0.000000,0.000000,0.250000,0,0);}
.m81_c00099{transform:matrix(0.289463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289463,0.000000,0.000000,0.250000,0,0);}
.m52_c00099{transform:matrix(0.290045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290045,0.000000,0.000000,0.250000,0,0);}
.m6b_c00099{transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);}
.m70_c00099{transform:matrix(0.290649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290649,0.000000,0.000000,0.250000,0,0);}
.m68_c00099{transform:matrix(0.290853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290853,0.000000,0.000000,0.250000,0,0);}
.m24_c00099{transform:matrix(0.291537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291537,0.000000,0.000000,0.250000,0,0);}
.m3e_c00099{transform:matrix(0.292127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292127,0.000000,0.000000,0.250000,0,0);}
.m39_c00099{transform:matrix(0.293919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293919,0.000000,0.000000,0.250000,0,0);}
.m6a_c00099{transform:matrix(0.294614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294614,0.000000,0.000000,0.250000,0,0);}
.m8_c00099{transform:matrix(0.294932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294932,0.000000,0.000000,0.250000,0,0);}
.m7d_c00099{transform:matrix(0.295415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295415,0.000000,0.000000,0.250000,0,0);}
.m42_c00099{transform:matrix(0.295578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295578,0.000000,0.000000,0.250000,0,0);}
.m1e_c00099{transform:matrix(0.295897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295897,0.000000,0.000000,0.250000,0,0);}
.m19_c00099{transform:matrix(0.296383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296383,0.000000,0.000000,0.250000,0,0);}
.m4b_c00099{transform:matrix(0.296494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296494,0.000000,0.000000,0.250000,0,0);}
.m83_c00099{transform:matrix(0.296819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296819,0.000000,0.000000,0.250000,0,0);}
.m4e_c00099{transform:matrix(0.297007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297007,0.000000,0.000000,0.250000,0,0);}
.m87_c00099{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m55_c00099{transform:matrix(0.297253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297253,0.000000,0.000000,0.250000,0,0);}
.m7f_c00099{transform:matrix(0.297319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297319,0.000000,0.000000,0.250000,0,0);}
.m2b_c00099{transform:matrix(0.297345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297345,0.000000,0.000000,0.250000,0,0);}
.m64_c00099{transform:matrix(0.297687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297687,0.000000,0.000000,0.250000,0,0);}
.m20_c00099{transform:matrix(0.298473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298473,0.000000,0.000000,0.250000,0,0);}
.m12_c00099{transform:matrix(0.300181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300181,0.000000,0.000000,0.250000,0,0);}
.m8b_c00099{transform:matrix(0.301415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301415,0.000000,0.000000,0.250000,0,0);}
.m73_c00099{transform:matrix(0.302633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302633,0.000000,0.000000,0.250000,0,0);}
.m5d_c00099{transform:matrix(0.302869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302869,0.000000,0.000000,0.250000,0,0);}
.m56_c00099{transform:matrix(0.303304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303304,0.000000,0.000000,0.250000,0,0);}
.m78_c00099{transform:matrix(0.304423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304423,0.000000,0.000000,0.250000,0,0);}
.m2a_c00099{transform:matrix(0.305409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305409,0.000000,0.000000,0.250000,0,0);}
.m72_c00099{transform:matrix(0.305475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305475,0.000000,0.000000,0.250000,0,0);}
.m7e_c00099{transform:matrix(0.305643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305643,0.000000,0.000000,0.250000,0,0);}
.m88_c00099{transform:matrix(0.305668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305668,0.000000,0.000000,0.250000,0,0);}
.m97_c00099{transform:matrix(0.307726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307726,0.000000,0.000000,0.250000,0,0);}
.m5_c00099{transform:matrix(0.307881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307881,0.000000,0.000000,0.250000,0,0);}
.m1b_c00099{transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);}
.m43_c00099{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m38_c00099{transform:matrix(0.309138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309138,0.000000,0.000000,0.250000,0,0);}
.m7b_c00099{transform:matrix(0.311761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311761,0.000000,0.000000,0.250000,0,0);}
.m26_c00099{transform:matrix(0.311968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311968,0.000000,0.000000,0.250000,0,0);}
.m61_c00099{transform:matrix(0.312156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312156,0.000000,0.000000,0.250000,0,0);}
.m31_c00099{transform:matrix(0.312210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312210,0.000000,0.000000,0.250000,0,0);}
.m7c_c00099{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.m58_c00099{transform:matrix(0.312751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312751,0.000000,0.000000,0.250000,0,0);}
.m59_c00099{transform:matrix(0.314128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314128,0.000000,0.000000,0.250000,0,0);}
.m9f_c00099{transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);}
.m3c_c00099{transform:matrix(0.315652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315652,0.000000,0.000000,0.250000,0,0);}
.m35_c00099{transform:matrix(0.315838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315838,0.000000,0.000000,0.250000,0,0);}
.m9e_c00099{transform:matrix(0.316333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316333,0.000000,0.000000,0.250000,0,0);}
.m71_c00099{transform:matrix(0.317036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317036,0.000000,0.000000,0.250000,0,0);}
.m4a_c00099{transform:matrix(0.317138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317138,0.000000,0.000000,0.250000,0,0);}
.m27_c00099{transform:matrix(0.317237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317237,0.000000,0.000000,0.250000,0,0);}
.m28_c00099{transform:matrix(0.318082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318082,0.000000,0.000000,0.250000,0,0);}
.m47_c00099{transform:matrix(0.322251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322251,0.000000,0.000000,0.250000,0,0);}
.m1a_c00099{transform:matrix(0.322908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322908,0.000000,0.000000,0.250000,0,0);}
.m80_c00099{transform:matrix(0.324061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324061,0.000000,0.000000,0.250000,0,0);}
.m13_c00099{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m3_c00099{transform:matrix(0.328378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328378,0.000000,0.000000,0.250000,0,0);}
.m92_c00099{transform:matrix(0.331040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331040,0.000000,0.000000,0.250000,0,0);}
.m45_c00099{transform:matrix(0.332499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332499,0.000000,0.000000,0.250000,0,0);}
.m2c_c00099{transform:matrix(0.333547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333547,0.000000,0.000000,0.250000,0,0);}
.m3f_c00099{transform:matrix(0.337811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337811,0.000000,0.000000,0.250000,0,0);}
.m57_c00099{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m17_c00099{transform:matrix(0.341019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341019,0.000000,0.000000,0.250000,0,0);}
.m23_c00099{transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);}
.m6d_c00099{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m37_c00099{transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);}
.m15_c00099{transform:matrix(0.350937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350937,0.000000,0.000000,0.250000,0,0);}
.m90_c00099{transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);}
.m3a_c00099{transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);}
.m46_c00099{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.ma_c00099{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m4c_c00099{transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);}
.m25_c00099{transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);}
.v0_c00099{vertical-align:0.000000px;}
.lsa_c00099{letter-spacing:-2.744280px;}
.lsc_c00099{letter-spacing:-2.485534px;}
.ls9_c00099{letter-spacing:-1.427026px;}
.ls1_c00099{letter-spacing:0.000000px;}
.ls10_c00099{letter-spacing:1.536797px;}
.ls3_c00099{letter-spacing:2.407126px;}
.ls4_c00099{letter-spacing:3.206887px;}
.ls5_c00099{letter-spacing:3.387226px;}
.ls8_c00099{letter-spacing:3.435310px;}
.lse_c00099{letter-spacing:3.591086px;}
.lsf_c00099{letter-spacing:3.724380px;}
.lsb_c00099{letter-spacing:3.779266px;}
.ls2_c00099{letter-spacing:3.920400px;}
.ls6_c00099{letter-spacing:4.237200px;}
.ls0_c00099{letter-spacing:4.375810px;}
.lsd_c00099{letter-spacing:48.470598px;}
.ls7_c00099{letter-spacing:52.747398px;}
.ls11_c00099{letter-spacing:57.024198px;}
.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:-19.602000px;}
.ws1_c00099{word-spacing:0.000000px;}
._1_c00099{margin-left:-9.878616px;}
._0_c00099{width:10.506672px;}
.fc0_c00099{color:transparent;}
.fs1_c00099{font-size:22.176000px;}
.fsb_c00099{font-size:23.166000px;}
.fs4_c00099{font-size:27.720000px;}
.fs10_c00099{font-size:33.264000px;}
.fsd_c00099{font-size:33.660000px;}
.fs7_c00099{font-size:38.808000px;}
.fse_c00099{font-size:39.204000px;}
.fsc_c00099{font-size:48.470598px;}
.fs6_c00099{font-size:52.747398px;}
.fsf_c00099{font-size:57.024198px;}
.fsa_c00099{font-size:64.548000px;}
.fs8_c00099{font-size:68.706198px;}
.fs3_c00099{font-size:70.884000px;}
.fs2_c00099{font-size:78.408000px;}
.fs5_c00099{font-size:84.744000px;}
.fs0_c00099{font-size:87.516198px;}
.fs9_c00099{font-size:91.872198px;}
.y0_c00099{bottom:0.000000px;}
.y28_c00099{bottom:20.580165px;}
.y1_c00099{bottom:76.500000px;}
.y26_c00099{bottom:85.443975px;}
.y25_c00099{bottom:89.723943px;}
.y24_c00099{bottom:93.288735px;}
.y22_c00099{bottom:119.305935px;}
.y27_c00099{bottom:132.492735px;}
.y23_c00099{bottom:153.876735px;}
.y21_c00099{bottom:175.260735px;}
.y20_c00099{bottom:210.900735px;}
.y1f_c00099{bottom:243.684585px;}
.y1e_c00099{bottom:277.547535px;}
.y1d_c00099{bottom:311.049135px;}
.y1c_c00099{bottom:344.194335px;}
.y1b_c00099{bottom:376.270335px;}
.y1a_c00099{bottom:393.377535px;}
.y19_c00099{bottom:401.213385px;}
.y16_c00099{bottom:409.059135px;}
.y18_c00099{bottom:410.123385px;}
.y17_c00099{bottom:422.245935px;}
.y15_c00099{bottom:441.842985px;}
.y14_c00099{bottom:474.280335px;}
.y13_c00099{bottom:506.351385px;}
.y12_c00099{bottom:528.804585px;}
.y11_c00099{bottom:539.140185px;}
.y10_c00099{bottom:571.577535px;}
.ye_c00099{bottom:604.361385px;}
.yf_c00099{bottom:615.409785px;}
.yd_c00099{bottom:642.139785px;}
.yc_c00099{bottom:701.302185px;}
.yb_c00099{bottom:727.324335px;}
.ya_c00099{bottom:735.160185px;}
.y9_c00099{bottom:768.305385px;}
.y8_c00099{bottom:801.094185px;}
.y7_c00099{bottom:834.952185px;}
.y6_c00099{bottom:867.740985px;}
.y5_c00099{bottom:899.821935px;}
.y4_c00099{bottom:932.962185px;}
.y3_c00099{bottom:984.640185px;}
.y2_c00099{bottom:1082.650185px;}
.h3_c00099{height:23.128875px;}
.hd_c00099{height:24.161414px;}
.h6_c00099{height:28.911094px;}
.he_c00099{height:32.281418px;}
.hf_c00099{height:33.035449px;}
.h12_c00099{height:34.693313px;}
.h8_c00099{height:35.129767px;}
.h11_c00099{height:37.978116px;}
.h10_c00099{height:38.476582px;}
.h9_c00099{height:40.475531px;}
.hc_c00099{height:67.321547px;}
.ha_c00099{height:67.431376px;}
.h5_c00099{height:69.568770px;}
.h4_c00099{height:76.953164px;}
.h7_c00099{height:83.171602px;}
.h2_c00099{height:85.892362px;}
.hb_c00099{height:95.819832px;}
.h1_c00099{height:1110.000000px;}
.h0_c00099{height:1263.000000px;}
.w1_c00099{width:733.500000px;}
.w0_c00099{width:892.500000px;}
.x0_c00099{left:0.000000px;}
.x44_c00099{left:67.324485px;}
.x1d_c00099{left:68.373885px;}
.x15_c00099{left:69.977685px;}
.x4_c00099{left:71.254785px;}
.x5b_c00099{left:72.833835px;}
.x1_c00099{left:79.500000px;}
.x32_c00099{left:102.088335px;}
.x4a_c00099{left:103.840635px;}
.x39_c00099{left:112.275435px;}
.x31_c00099{left:115.760235px;}
.x34_c00099{left:124.199985px;}
.x16_c00099{left:126.254235px;}
.x5_c00099{left:135.758235px;}
.x2d_c00099{left:146.074035px;}
.x4e_c00099{left:147.351135px;}
.x3a_c00099{left:157.691685px;}
.x17_c00099{left:159.092535px;}
.x1e_c00099{left:168.740085px;}
.x45_c00099{left:180.486435px;}
.xc_c00099{left:191.148735px;}
.x6_c00099{left:202.018935px;}
.x1f_c00099{left:214.329585px;}
.x24_c00099{left:223.774185px;}
.xd_c00099{left:224.937435px;}
.x3_c00099{left:229.095435px;}
.x35_c00099{left:235.198785px;}
.x5c_c00099{left:237.505485px;}
.x20_c00099{left:247.029285px;}
.x4f_c00099{left:248.553885px;}
.x3f_c00099{left:257.582685px;}
.x46_c00099{left:258.874635px;}
.x5d_c00099{left:269.695335px;}
.x4b_c00099{left:279.738885px;}
.x2a_c00099{left:291.698085px;}
.x3b_c00099{left:292.742535px;}
.x47_c00099{left:301.553535px;}
.x18_c00099{left:302.662335px;}
.x63_c00099{left:304.533435px;}
.x2b_c00099{left:311.399085px;}
.x56_c00099{left:312.889035px;}
.x7_c00099{left:314.126535px;}
.xe_c00099{left:324.491835px;}
.x50_c00099{left:336.782685px;}
.x8_c00099{left:346.034235px;}
.x60_c00099{left:348.692385px;}
.xf_c00099{left:357.632085px;}
.x4c_c00099{left:359.023035px;}
.x48_c00099{left:370.378335px;}
.x57_c00099{left:381.481185px;}
.x2c_c00099{left:391.128735px;}
.x25_c00099{left:392.494935px;}
.x2e_c00099{left:401.286135px;}
.x10_c00099{left:402.355335px;}
.x61_c00099{left:403.681935px;}
.x19_c00099{left:413.230485px;}
.x26_c00099{left:424.991685px;}
.x2f_c00099{left:435.455985px;}
.x40_c00099{left:436.747935px;}
.x9_c00099{left:446.375685px;}
.x11_c00099{left:447.420135px;}
.x27_c00099{left:458.092335px;}
.x30_c00099{left:467.923035px;}
.x5e_c00099{left:469.511985px;}
.x58_c00099{left:470.526735px;}
.xa_c00099{left:479.694135px;}
.x5a_c00099{left:480.906885px;}
.x64_c00099{left:482.307735px;}
.x21_c00099{left:491.598885px;}
.x36_c00099{left:501.107835px;}
.x51_c00099{left:502.493835px;}
.x59_c00099{left:503.736285px;}
.x4d_c00099{left:505.830135px;}
.x3c_c00099{left:513.705585px;}
.x28_c00099{left:536.163735px;}
.x66_c00099{left:544.153035px;}
.x1a_c00099{left:546.524085px;}
.x37_c00099{left:547.563585px;}
.xb_c00099{left:567.715035px;}
.x1b_c00099{left:568.972335px;}
.x12_c00099{left:577.733835px;}
.x22_c00099{left:580.005885px;}
.x49_c00099{left:591.425535px;}
.x3d_c00099{left:602.122485px;}
.x5f_c00099{left:613.042185px;}
.x13_c00099{left:622.952085px;}
.x41_c00099{left:624.912285px;}
.x29_c00099{left:634.782585px;}
.x3e_c00099{left:636.628935px;}
.x2_c00099{left:646.251735px;}
.x65_c00099{left:647.756535px;}
.x53_c00099{left:658.077285px;}
.x62_c00099{left:659.483085px;}
.x14_c00099{left:667.150635px;}
.x1c_c00099{left:668.729685px;}
.x42_c00099{left:670.150335px;}
.x23_c00099{left:680.441385px;}
.x33_c00099{left:682.767885px;}
.x38_c00099{left:684.505335px;}
.x67_c00099{left:686.312085px;}
.x55_c00099{left:688.420785px;}
.x43_c00099{left:690.143385px;}
.x52_c00099{left:691.984785px;}
.x54_c00099{left:694.860735px;}
.x68_c00099{left:724.467675px;}
@media print{
.v0_c00099{vertical-align:0.000000pt;}
.lsa_c00099{letter-spacing:-2.439360pt;}
.lsc_c00099{letter-spacing:-2.209363pt;}
.ls9_c00099{letter-spacing:-1.268467pt;}
.ls1_c00099{letter-spacing:0.000000pt;}
.ls10_c00099{letter-spacing:1.366042pt;}
.ls3_c00099{letter-spacing:2.139667pt;}
.ls4_c00099{letter-spacing:2.850566pt;}
.ls5_c00099{letter-spacing:3.010867pt;}
.ls8_c00099{letter-spacing:3.053609pt;}
.lse_c00099{letter-spacing:3.192077pt;}
.lsf_c00099{letter-spacing:3.310560pt;}
.lsb_c00099{letter-spacing:3.359347pt;}
.ls2_c00099{letter-spacing:3.484800pt;}
.ls6_c00099{letter-spacing:3.766400pt;}
.ls0_c00099{letter-spacing:3.889609pt;}
.lsd_c00099{letter-spacing:43.084976pt;}
.ls7_c00099{letter-spacing:46.886576pt;}
.ls11_c00099{letter-spacing:50.688176pt;}
.ws0_c00099{word-spacing:-17.424000pt;}
.ws1_c00099{word-spacing:0.000000pt;}
._1_c00099{margin-left:-8.780992pt;}
._0_c00099{width:9.339264pt;}
.fs1_c00099{font-size:19.712000pt;}
.fsb_c00099{font-size:20.592000pt;}
.fs4_c00099{font-size:24.640000pt;}
.fs10_c00099{font-size:29.568000pt;}
.fsd_c00099{font-size:29.920000pt;}
.fs7_c00099{font-size:34.496000pt;}
.fse_c00099{font-size:34.848000pt;}
.fsc_c00099{font-size:43.084976pt;}
.fs6_c00099{font-size:46.886576pt;}
.fsf_c00099{font-size:50.688176pt;}
.fsa_c00099{font-size:57.376000pt;}
.fs8_c00099{font-size:61.072176pt;}
.fs3_c00099{font-size:63.008000pt;}
.fs2_c00099{font-size:69.696000pt;}
.fs5_c00099{font-size:75.328000pt;}
.fs0_c00099{font-size:77.792176pt;}
.fs9_c00099{font-size:81.664176pt;}
.y0_c00099{bottom:0.000000pt;}
.y28_c00099{bottom:18.293480pt;}
.y1_c00099{bottom:68.000000pt;}
.y26_c00099{bottom:75.950200pt;}
.y25_c00099{bottom:79.754616pt;}
.y24_c00099{bottom:82.923320pt;}
.y22_c00099{bottom:106.049720pt;}
.y27_c00099{bottom:117.771320pt;}
.y23_c00099{bottom:136.779320pt;}
.y21_c00099{bottom:155.787320pt;}
.y20_c00099{bottom:187.467320pt;}
.y1f_c00099{bottom:216.608520pt;}
.y1e_c00099{bottom:246.708920pt;}
.y1d_c00099{bottom:276.488120pt;}
.y1c_c00099{bottom:305.950520pt;}
.y1b_c00099{bottom:334.462520pt;}
.y1a_c00099{bottom:349.668920pt;}
.y19_c00099{bottom:356.634120pt;}
.y16_c00099{bottom:363.608120pt;}
.y18_c00099{bottom:364.554120pt;}
.y17_c00099{bottom:375.329720pt;}
.y15_c00099{bottom:392.749320pt;}
.y14_c00099{bottom:421.582520pt;}
.y13_c00099{bottom:450.090120pt;}
.y12_c00099{bottom:470.048520pt;}
.y11_c00099{bottom:479.235720pt;}
.y10_c00099{bottom:508.068920pt;}
.ye_c00099{bottom:537.210120pt;}
.yf_c00099{bottom:547.030920pt;}
.yd_c00099{bottom:570.790920pt;}
.yc_c00099{bottom:623.379720pt;}
.yb_c00099{bottom:646.510520pt;}
.ya_c00099{bottom:653.475720pt;}
.y9_c00099{bottom:682.938120pt;}
.y8_c00099{bottom:712.083720pt;}
.y7_c00099{bottom:742.179720pt;}
.y6_c00099{bottom:771.325320pt;}
.y5_c00099{bottom:799.841720pt;}
.y4_c00099{bottom:829.299720pt;}
.y3_c00099{bottom:875.235720pt;}
.y2_c00099{bottom:962.355720pt;}
.h3_c00099{height:20.559000pt;}
.hd_c00099{height:21.476813pt;}
.h6_c00099{height:25.698750pt;}
.he_c00099{height:28.694594pt;}
.hf_c00099{height:29.364844pt;}
.h12_c00099{height:30.838500pt;}
.h8_c00099{height:31.226460pt;}
.h11_c00099{height:33.758325pt;}
.h10_c00099{height:34.201406pt;}
.h9_c00099{height:35.978250pt;}
.hc_c00099{height:59.841375pt;}
.ha_c00099{height:59.939001pt;}
.h5_c00099{height:61.838906pt;}
.h4_c00099{height:68.402813pt;}
.h7_c00099{height:73.930313pt;}
.h2_c00099{height:76.348766pt;}
.hb_c00099{height:85.173184pt;}
.h1_c00099{height:986.666667pt;}
.h0_c00099{height:1122.666667pt;}
.w1_c00099{width:652.000000pt;}
.w0_c00099{width:793.333333pt;}
.x0_c00099{left:0.000000pt;}
.x44_c00099{left:59.843987pt;}
.x1d_c00099{left:60.776787pt;}
.x15_c00099{left:62.202387pt;}
.x4_c00099{left:63.337587pt;}
.x5b_c00099{left:64.741187pt;}
.x1_c00099{left:70.666667pt;}
.x32_c00099{left:90.745187pt;}
.x4a_c00099{left:92.302787pt;}
.x39_c00099{left:99.800387pt;}
.x31_c00099{left:102.897987pt;}
.x34_c00099{left:110.399987pt;}
.x16_c00099{left:112.225987pt;}
.x5_c00099{left:120.673987pt;}
.x2d_c00099{left:129.843587pt;}
.x4e_c00099{left:130.978787pt;}
.x3a_c00099{left:140.170387pt;}
.x17_c00099{left:141.415587pt;}
.x1e_c00099{left:149.991187pt;}
.x45_c00099{left:160.432387pt;}
.xc_c00099{left:169.909987pt;}
.x6_c00099{left:179.572387pt;}
.x1f_c00099{left:190.515187pt;}
.x24_c00099{left:198.910387pt;}
.xd_c00099{left:199.944387pt;}
.x3_c00099{left:203.640387pt;}
.x35_c00099{left:209.065587pt;}
.x5c_c00099{left:211.115987pt;}
.x20_c00099{left:219.581587pt;}
.x4f_c00099{left:220.936787pt;}
.x3f_c00099{left:228.962387pt;}
.x46_c00099{left:230.110787pt;}
.x5d_c00099{left:239.729187pt;}
.x4b_c00099{left:248.656787pt;}
.x2a_c00099{left:259.287187pt;}
.x3b_c00099{left:260.215587pt;}
.x47_c00099{left:268.047587pt;}
.x18_c00099{left:269.033187pt;}
.x63_c00099{left:270.696387pt;}
.x2b_c00099{left:276.799187pt;}
.x56_c00099{left:278.123587pt;}
.x7_c00099{left:279.223587pt;}
.xe_c00099{left:288.437187pt;}
.x50_c00099{left:299.362387pt;}
.x8_c00099{left:307.585987pt;}
.x60_c00099{left:309.948787pt;}
.xf_c00099{left:317.895187pt;}
.x4c_c00099{left:319.131587pt;}
.x48_c00099{left:329.225187pt;}
.x57_c00099{left:339.094387pt;}
.x2c_c00099{left:347.669987pt;}
.x25_c00099{left:348.884387pt;}
.x2e_c00099{left:356.698787pt;}
.x10_c00099{left:357.649187pt;}
.x61_c00099{left:358.828387pt;}
.x19_c00099{left:367.315987pt;}
.x26_c00099{left:377.770387pt;}
.x2f_c00099{left:387.071987pt;}
.x40_c00099{left:388.220387pt;}
.x9_c00099{left:396.778387pt;}
.x11_c00099{left:397.706787pt;}
.x27_c00099{left:407.193187pt;}
.x30_c00099{left:415.931587pt;}
.x5e_c00099{left:417.343987pt;}
.x58_c00099{left:418.245987pt;}
.xa_c00099{left:426.394787pt;}
.x5a_c00099{left:427.472787pt;}
.x64_c00099{left:428.717987pt;}
.x21_c00099{left:436.976787pt;}
.x36_c00099{left:445.429187pt;}
.x51_c00099{left:446.661187pt;}
.x59_c00099{left:447.765587pt;}
.x4d_c00099{left:449.626787pt;}
.x3c_c00099{left:456.627187pt;}
.x28_c00099{left:476.589987pt;}
.x66_c00099{left:483.691587pt;}
.x1a_c00099{left:485.799187pt;}
.x37_c00099{left:486.723187pt;}
.xb_c00099{left:504.635587pt;}
.x1b_c00099{left:505.753187pt;}
.x12_c00099{left:513.541187pt;}
.x22_c00099{left:515.560787pt;}
.x49_c00099{left:525.711587pt;}
.x3d_c00099{left:535.219987pt;}
.x5f_c00099{left:544.926387pt;}
.x13_c00099{left:553.735187pt;}
.x41_c00099{left:555.477587pt;}
.x29_c00099{left:564.251187pt;}
.x3e_c00099{left:565.892387pt;}
.x2_c00099{left:574.445987pt;}
.x65_c00099{left:575.783587pt;}
.x53_c00099{left:584.957587pt;}
.x62_c00099{left:586.207187pt;}
.x14_c00099{left:593.022787pt;}
.x1c_c00099{left:594.426387pt;}
.x42_c00099{left:595.689187pt;}
.x23_c00099{left:604.836787pt;}
.x33_c00099{left:606.904787pt;}
.x38_c00099{left:608.449187pt;}
.x67_c00099{left:610.055187pt;}
.x55_c00099{left:611.929587pt;}
.x43_c00099{left:613.460787pt;}
.x52_c00099{left:615.097587pt;}
.x54_c00099{left:617.653987pt;}
.x68_c00099{left:643.971267pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a63f7267c8c127c438b2639f.woff2')format("woff");}.ff1_c00100{font-family:ff1_c00100;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00100;src:url('chunks/assets/font_75667912186e24dcaf9ec667.woff2')format("woff");}.ff2_c00100{font-family:ff2_c00100;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00100;src:url('chunks/assets/font_50a201a57c1938e574648454.woff2')format("woff");}.ff3_c00100{font-family:ff3_c00100;line-height:0.666000;font-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_c00100{transform:matrix(0.227142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227142,0.000000,0.000000,0.250000,0,0);}
.m8d_c00100{transform:matrix(0.242547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242547,0.000000,0.000000,0.250000,0,0);}
.m6e_c00100{transform:matrix(0.248109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248109,0.000000,0.000000,0.250000,0,0);}
.m19_c00100{transform:matrix(0.249569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249569,0.000000,0.000000,0.250000,0,0);}
.m8_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);}
.mf_c00100{transform:matrix(0.250007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250007,0.000000,0.000000,0.250000,0,0);}
.m85_c00100{transform:matrix(0.250440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250440,0.000000,0.000000,0.250000,0,0);}
.m50_c00100{transform:matrix(0.251385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251385,0.000000,0.000000,0.250000,0,0);}
.m2d_c00100{transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);}
.m97_c00100{transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);}
.m43_c00100{transform:matrix(0.253783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253783,0.000000,0.000000,0.250000,0,0);}
.m71_c00100{transform:matrix(0.254963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254963,0.000000,0.000000,0.250000,0,0);}
.m2f_c00100{transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);}
.m12_c00100{transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);}
.ma_c00100{transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);}
.m34_c00100{transform:matrix(0.258281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258281,0.000000,0.000000,0.250000,0,0);}
.m6a_c00100{transform:matrix(0.258636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258636,0.000000,0.000000,0.250000,0,0);}
.m33_c00100{transform:matrix(0.258988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258988,0.000000,0.000000,0.250000,0,0);}
.m84_c00100{transform:matrix(0.260160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260160,0.000000,0.000000,0.250000,0,0);}
.m10_c00100{transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);}
.m96_c00100{transform:matrix(0.260954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260954,0.000000,0.000000,0.250000,0,0);}
.me_c00100{transform:matrix(0.261958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261958,0.000000,0.000000,0.250000,0,0);}
.m3_c00100{transform:matrix(0.262285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262285,0.000000,0.000000,0.250000,0,0);}
.m75_c00100{transform:matrix(0.263577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263577,0.000000,0.000000,0.250000,0,0);}
.m57_c00100{transform:matrix(0.263736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263736,0.000000,0.000000,0.250000,0,0);}
.m55_c00100{transform:matrix(0.264852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264852,0.000000,0.000000,0.250000,0,0);}
.m94_c00100{transform:matrix(0.264864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264864,0.000000,0.000000,0.250000,0,0);}
.m6c_c00100{transform:matrix(0.265576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265576,0.000000,0.000000,0.250000,0,0);}
.m4f_c00100{transform:matrix(0.266015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266015,0.000000,0.000000,0.250000,0,0);}
.m0_c00100{transform:matrix(0.266146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266146,0.000000,0.000000,0.250000,0,0);}
.m86_c00100{transform:matrix(0.266398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266398,0.000000,0.000000,0.250000,0,0);}
.m79_c00100{transform:matrix(0.267365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267365,0.000000,0.000000,0.250000,0,0);}
.m81_c00100{transform:matrix(0.267599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267599,0.000000,0.000000,0.250000,0,0);}
.m63_c00100{transform:matrix(0.267900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267900,0.000000,0.000000,0.250000,0,0);}
.m2c_c00100{transform:matrix(0.268157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268157,0.000000,0.000000,0.250000,0,0);}
.m44_c00100{transform:matrix(0.268857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268857,0.000000,0.000000,0.250000,0,0);}
.m25_c00100{transform:matrix(0.269149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269149,0.000000,0.000000,0.250000,0,0);}
.m4b_c00100{transform:matrix(0.269786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269786,0.000000,0.000000,0.250000,0,0);}
.m47_c00100{transform:matrix(0.270258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270258,0.000000,0.000000,0.250000,0,0);}
.m67_c00100{transform:matrix(0.271752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271752,0.000000,0.000000,0.250000,0,0);}
.m80_c00100{transform:matrix(0.272994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272994,0.000000,0.000000,0.250000,0,0);}
.m70_c00100{transform:matrix(0.273059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273059,0.000000,0.000000,0.250000,0,0);}
.m6d_c00100{transform:matrix(0.273167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273167,0.000000,0.000000,0.250000,0,0);}
.m8a_c00100{transform:matrix(0.274521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274521,0.000000,0.000000,0.250000,0,0);}
.m7a_c00100{transform:matrix(0.274757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274757,0.000000,0.000000,0.250000,0,0);}
.m3c_c00100{transform:matrix(0.275369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275369,0.000000,0.000000,0.250000,0,0);}
.m66_c00100{transform:matrix(0.275627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275627,0.000000,0.000000,0.250000,0,0);}
.m3f_c00100{transform:matrix(0.276127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276127,0.000000,0.000000,0.250000,0,0);}
.m5_c00100{transform:matrix(0.276237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276237,0.000000,0.000000,0.250000,0,0);}
.md_c00100{transform:matrix(0.276915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276915,0.000000,0.000000,0.250000,0,0);}
.m83_c00100{transform:matrix(0.277397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277397,0.000000,0.000000,0.250000,0,0);}
.m5c_c00100{transform:matrix(0.277590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277590,0.000000,0.000000,0.250000,0,0);}
.m6b_c00100{transform:matrix(0.277601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277601,0.000000,0.000000,0.250000,0,0);}
.m14_c00100{transform:matrix(0.277751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277751,0.000000,0.000000,0.250000,0,0);}
.m36_c00100{transform:matrix(0.277835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277835,0.000000,0.000000,0.250000,0,0);}
.m4_c00100{transform:matrix(0.277937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277937,0.000000,0.000000,0.250000,0,0);}
.m46_c00100{transform:matrix(0.278341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278341,0.000000,0.000000,0.250000,0,0);}
.m13_c00100{transform:matrix(0.278521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278521,0.000000,0.000000,0.250000,0,0);}
.m3a_c00100{transform:matrix(0.279217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279217,0.000000,0.000000,0.250000,0,0);}
.m15_c00100{transform:matrix(0.279751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279751,0.000000,0.000000,0.250000,0,0);}
.mb_c00100{transform:matrix(0.279777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279777,0.000000,0.000000,0.250000,0,0);}
.m88_c00100{transform:matrix(0.279984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279984,0.000000,0.000000,0.250000,0,0);}
.m16_c00100{transform:matrix(0.280468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280468,0.000000,0.000000,0.250000,0,0);}
.m8e_c00100{transform:matrix(0.280497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280497,0.000000,0.000000,0.250000,0,0);}
.m89_c00100{transform:matrix(0.280568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280568,0.000000,0.000000,0.250000,0,0);}
.m9_c00100{transform:matrix(0.281828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281828,0.000000,0.000000,0.250000,0,0);}
.m22_c00100{transform:matrix(0.282098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282098,0.000000,0.000000,0.250000,0,0);}
.m91_c00100{transform:matrix(0.282174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282174,0.000000,0.000000,0.250000,0,0);}
.m7f_c00100{transform:matrix(0.282511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282511,0.000000,0.000000,0.250000,0,0);}
.m58_c00100{transform:matrix(0.282729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282729,0.000000,0.000000,0.250000,0,0);}
.m1d_c00100{transform:matrix(0.282754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282754,0.000000,0.000000,0.250000,0,0);}
.m92_c00100{transform:matrix(0.282820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282820,0.000000,0.000000,0.250000,0,0);}
.m74_c00100{transform:matrix(0.283673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283673,0.000000,0.000000,0.250000,0,0);}
.m29_c00100{transform:matrix(0.283747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283747,0.000000,0.000000,0.250000,0,0);}
.m53_c00100{transform:matrix(0.283760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283760,0.000000,0.000000,0.250000,0,0);}
.m2a_c00100{transform:matrix(0.283989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283989,0.000000,0.000000,0.250000,0,0);}
.m69_c00100{transform:matrix(0.284240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284240,0.000000,0.000000,0.250000,0,0);}
.m77_c00100{transform:matrix(0.284281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284281,0.000000,0.000000,0.250000,0,0);}
.m52_c00100{transform:matrix(0.284292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284292,0.000000,0.000000,0.250000,0,0);}
.m7d_c00100{transform:matrix(0.284391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284391,0.000000,0.000000,0.250000,0,0);}
.m21_c00100{transform:matrix(0.284396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284396,0.000000,0.000000,0.250000,0,0);}
.m73_c00100{transform:matrix(0.285010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285010,0.000000,0.000000,0.250000,0,0);}
.m6f_c00100{transform:matrix(0.285335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285335,0.000000,0.000000,0.250000,0,0);}
.m31_c00100{transform:matrix(0.285721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285721,0.000000,0.000000,0.250000,0,0);}
.m3e_c00100{transform:matrix(0.285848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285848,0.000000,0.000000,0.250000,0,0);}
.m5b_c00100{transform:matrix(0.287698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287698,0.000000,0.000000,0.250000,0,0);}
.m62_c00100{transform:matrix(0.288228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288228,0.000000,0.000000,0.250000,0,0);}
.m1e_c00100{transform:matrix(0.288855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288855,0.000000,0.000000,0.250000,0,0);}
.m60_c00100{transform:matrix(0.289603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289603,0.000000,0.000000,0.250000,0,0);}
.m23_c00100{transform:matrix(0.289699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289699,0.000000,0.000000,0.250000,0,0);}
.m18_c00100{transform:matrix(0.289792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289792,0.000000,0.000000,0.250000,0,0);}
.m51_c00100{transform:matrix(0.290068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290068,0.000000,0.000000,0.250000,0,0);}
.m59_c00100{transform:matrix(0.290332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290332,0.000000,0.000000,0.250000,0,0);}
.m8b_c00100{transform:matrix(0.290405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290405,0.000000,0.000000,0.250000,0,0);}
.m20_c00100{transform:matrix(0.290712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290712,0.000000,0.000000,0.250000,0,0);}
.m5f_c00100{transform:matrix(0.290950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290950,0.000000,0.000000,0.250000,0,0);}
.m6_c00100{transform:matrix(0.291392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291392,0.000000,0.000000,0.250000,0,0);}
.m61_c00100{transform:matrix(0.292121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292121,0.000000,0.000000,0.250000,0,0);}
.m64_c00100{transform:matrix(0.292372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292372,0.000000,0.000000,0.250000,0,0);}
.m2_c00100{transform:matrix(0.295311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295311,0.000000,0.000000,0.250000,0,0);}
.m32_c00100{transform:matrix(0.295371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295371,0.000000,0.000000,0.250000,0,0);}
.m45_c00100{transform:matrix(0.295545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295545,0.000000,0.000000,0.250000,0,0);}
.m35_c00100{transform:matrix(0.296057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296057,0.000000,0.000000,0.250000,0,0);}
.m40_c00100{transform:matrix(0.296067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296067,0.000000,0.000000,0.250000,0,0);}
.m56_c00100{transform:matrix(0.296581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296581,0.000000,0.000000,0.250000,0,0);}
.m72_c00100{transform:matrix(0.296594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296594,0.000000,0.000000,0.250000,0,0);}
.m95_c00100{transform:matrix(0.296937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296937,0.000000,0.000000,0.250000,0,0);}
.m54_c00100{transform:matrix(0.297211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297211,0.000000,0.000000,0.250000,0,0);}
.m4e_c00100{transform:matrix(0.298982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298982,0.000000,0.000000,0.250000,0,0);}
.m1c_c00100{transform:matrix(0.299926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299926,0.000000,0.000000,0.250000,0,0);}
.m76_c00100{transform:matrix(0.300374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300374,0.000000,0.000000,0.250000,0,0);}
.m9a_c00100{transform:matrix(0.300402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300402,0.000000,0.000000,0.250000,0,0);}
.m17_c00100{transform:matrix(0.300646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300646,0.000000,0.000000,0.250000,0,0);}
.m48_c00100{transform:matrix(0.301133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301133,0.000000,0.000000,0.250000,0,0);}
.m38_c00100{transform:matrix(0.301225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301225,0.000000,0.000000,0.250000,0,0);}
.m3d_c00100{transform:matrix(0.303087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303087,0.000000,0.000000,0.250000,0,0);}
.m7e_c00100{transform:matrix(0.303894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303894,0.000000,0.000000,0.250000,0,0);}
.m8f_c00100{transform:matrix(0.310003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310003,0.000000,0.000000,0.250000,0,0);}
.m4a_c00100{transform:matrix(0.310325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310325,0.000000,0.000000,0.250000,0,0);}
.m7b_c00100{transform:matrix(0.310528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310528,0.000000,0.000000,0.250000,0,0);}
.m4d_c00100{transform:matrix(0.310937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310937,0.000000,0.000000,0.250000,0,0);}
.m1_c00100{transform:matrix(0.314217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314217,0.000000,0.000000,0.250000,0,0);}
.m5e_c00100{transform:matrix(0.314579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314579,0.000000,0.000000,0.250000,0,0);}
.m8c_c00100{transform:matrix(0.315997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315997,0.000000,0.000000,0.250000,0,0);}
.m87_c00100{transform:matrix(0.316044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316044,0.000000,0.000000,0.250000,0,0);}
.m37_c00100{transform:matrix(0.316073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316073,0.000000,0.000000,0.250000,0,0);}
.m90_c00100{transform:matrix(0.316699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316699,0.000000,0.000000,0.250000,0,0);}
.m4c_c00100{transform:matrix(0.316777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316777,0.000000,0.000000,0.250000,0,0);}
.m26_c00100{transform:matrix(0.317123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317123,0.000000,0.000000,0.250000,0,0);}
.m93_c00100{transform:matrix(0.319863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319863,0.000000,0.000000,0.250000,0,0);}
.m28_c00100{transform:matrix(0.320764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320764,0.000000,0.000000,0.250000,0,0);}
.m2e_c00100{transform:matrix(0.321647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321647,0.000000,0.000000,0.250000,0,0);}
.m82_c00100{transform:matrix(0.321661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321661,0.000000,0.000000,0.250000,0,0);}
.m7c_c00100{transform:matrix(0.323709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323709,0.000000,0.000000,0.250000,0,0);}
.m30_c00100{transform:matrix(0.325725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325725,0.000000,0.000000,0.250000,0,0);}
.m5a_c00100{transform:matrix(0.326105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326105,0.000000,0.000000,0.250000,0,0);}
.m2b_c00100{transform:matrix(0.327601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327601,0.000000,0.000000,0.250000,0,0);}
.m3b_c00100{transform:matrix(0.328117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328117,0.000000,0.000000,0.250000,0,0);}
.m78_c00100{transform:matrix(0.329385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329385,0.000000,0.000000,0.250000,0,0);}
.m49_c00100{transform:matrix(0.333044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333044,0.000000,0.000000,0.250000,0,0);}
.m1a_c00100{transform:matrix(0.335786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335786,0.000000,0.000000,0.250000,0,0);}
.m65_c00100{transform:matrix(0.336704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336704,0.000000,0.000000,0.250000,0,0);}
.m41_c00100{transform:matrix(0.338539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338539,0.000000,0.000000,0.250000,0,0);}
.m98_c00100{transform:matrix(0.338834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338834,0.000000,0.000000,0.250000,0,0);}
.m1b_c00100{transform:matrix(0.339770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339770,0.000000,0.000000,0.250000,0,0);}
.m42_c00100{transform:matrix(0.341404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341404,0.000000,0.000000,0.250000,0,0);}
.m24_c00100{transform:matrix(0.343445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343445,0.000000,0.000000,0.250000,0,0);}
.m11_c00100{transform:matrix(0.347313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347313,0.000000,0.000000,0.250000,0,0);}
.m7_c00100{transform:matrix(0.358891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358891,0.000000,0.000000,0.250000,0,0);}
.m68_c00100{transform:matrix(0.360520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360520,0.000000,0.000000,0.250000,0,0);}
.m1f_c00100{transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);}
.m39_c00100{transform:matrix(0.366873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366873,0.000000,0.000000,0.250000,0,0);}
.mc_c00100{transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);}
.m99_c00100{transform:matrix(0.373079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373079,0.000000,0.000000,0.250000,0,0);}
.m27_c00100{transform:matrix(0.376256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376256,0.000000,0.000000,0.250000,0,0);}
.v0_c00100{vertical-align:0.000000px;}
.ls4_c00100{letter-spacing:-2.855167px;}
.ls12_c00100{letter-spacing:-2.798064px;}
.lsc_c00100{letter-spacing:-0.636294px;}
.lse_c00100{letter-spacing:-0.549569px;}
.ls6_c00100{letter-spacing:-0.301832px;}
.ls2_c00100{letter-spacing:0.000000px;}
.ls9_c00100{letter-spacing:0.130522px;}
.lsf_c00100{letter-spacing:0.652610px;}
.ls5_c00100{letter-spacing:1.158382px;}
.lsb_c00100{letter-spacing:2.145454px;}
.ls11_c00100{letter-spacing:2.585965px;}
.ls3_c00100{letter-spacing:2.961216px;}
.ls10_c00100{letter-spacing:3.091738px;}
.ls14_c00100{letter-spacing:3.524400px;}
.ls7_c00100{letter-spacing:3.623400px;}
.lsa_c00100{letter-spacing:3.695402px;}
.ls13_c00100{letter-spacing:3.980918px;}
.ls8_c00100{letter-spacing:3.999610px;}
.ls1_c00100{letter-spacing:4.078810px;}
.ls0_c00100{letter-spacing:4.276810px;}
.lsd_c00100{letter-spacing:49.896198px;}
.sc__c00100{text-shadow:none;}
.sc0_c00100{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00100{-webkit-text-stroke:0px transparent;}
.sc0_c00100{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00100{word-spacing:0.000000px;}
.fc0_c00100{color:transparent;}
.fs8_c00100{font-size:21.384000px;}
.fs12_c00100{font-size:22.572000px;}
.fs11_c00100{font-size:27.720000px;}
.fs6_c00100{font-size:33.264000px;}
.fsd_c00100{font-size:38.610000px;}
.fs2_c00100{font-size:39.600000px;}
.fs13_c00100{font-size:44.352000px;}
.fs7_c00100{font-size:49.896198px;}
.fs10_c00100{font-size:50.292000px;}
.fsf_c00100{font-size:60.192000px;}
.fsc_c00100{font-size:66.330000px;}
.fs9_c00100{font-size:70.092198px;}
.fse_c00100{font-size:70.488000px;}
.fs4_c00100{font-size:72.468000px;}
.fsa_c00100{font-size:74.844000px;}
.fs3_c00100{font-size:78.804000px;}
.fs5_c00100{font-size:79.992198px;}
.fs1_c00100{font-size:81.576198px;}
.fsb_c00100{font-size:83.556198px;}
.fs0_c00100{font-size:85.536198px;}
.y0_c00100{bottom:0.000000px;}
.y25_c00100{bottom:22.721535px;}
.y24_c00100{bottom:53.371935px;}
.y1_c00100{bottom:76.500000px;}
.y23_c00100{bottom:83.309535px;}
.y22_c00100{bottom:88.655535px;}
.y21_c00100{bottom:111.821535px;}
.y20_c00100{bottom:116.818263px;}
.y1f_c00100{bottom:146.747547px;}
.y1e_c00100{bottom:154.589535px;}
.y1c_c00100{bottom:184.883535px;}
.y1d_c00100{bottom:186.665535px;}
.y1b_c00100{bottom:216.246735px;}
.y1a_c00100{bottom:247.966335px;}
.y19_c00100{bottom:279.680985px;}
.y18_c00100{bottom:311.405535px;}
.y17_c00100{bottom:343.125135px;}
.y16_c00100{bottom:375.201135px;}
.y15_c00100{bottom:406.920735px;}
.y14_c00100{bottom:438.635385px;}
.y13_c00100{bottom:464.652585px;}
.y12_c00100{bottom:470.003535px;}
.y11_c00100{bottom:493.882335px;}
.y10_c00100{bottom:500.653935px;}
.yf_c00100{bottom:532.017135px;}
.ye_c00100{bottom:594.738585px;}
.yd_c00100{bottom:626.819535px;}
.yc_c00100{bottom:658.534185px;}
.yb_c00100{bottom:690.615135px;}
.ya_c00100{bottom:722.329785px;}
.y9_c00100{bottom:754.054335px;}
.y8_c00100{bottom:785.773935px;}
.y7_c00100{bottom:847.426185px;}
.y6_c00100{bottom:879.507135px;}
.y5_c00100{bottom:910.157535px;}
.y4_c00100{bottom:925.477785px;}
.y3_c00100{bottom:941.877135px;}
.y2_c00100{bottom:1079.086185px;}
.ha_c00100{height:20.987227px;}
.h13_c00100{height:23.541891px;}
.h12_c00100{height:28.911094px;}
.h9_c00100{height:33.230868px;}
.h8_c00100{height:34.693313px;}
.hf_c00100{height:40.269023px;}
.h4_c00100{height:41.301563px;}
.h14_c00100{height:46.257750px;}
.h11_c00100{height:49.358848px;}
.h10_c00100{height:62.778375px;}
.he_c00100{height:69.180117px;}
.h6_c00100{height:71.123379px;}
.hb_c00100{height:73.103972px;}
.hc_c00100{height:73.455293px;}
.h5_c00100{height:77.341816px;}
.h7_c00100{height:78.507968px;}
.h3_c00100{height:80.062577px;}
.hd_c00100{height:82.005839px;}
.h2_c00100{height:83.949101px;}
.h1_c00100{height:1110.000000px;}
.h0_c00100{height:1263.000000px;}
.w1_c00100{width:733.500000px;}
.w0_c00100{width:892.500000px;}
.x0_c00100{left:0.000000px;}
.x38_c00100{left:14.908935px;}
.x2d_c00100{left:75.709785px;}
.x3_c00100{left:77.026485px;}
.x1_c00100{left:79.500000px;}
.x14_c00100{left:108.152085px;}
.x34_c00100{left:120.259785px;}
.x23_c00100{left:130.412235px;}
.x21_c00100{left:141.262635px;}
.x15_c00100{left:152.697135px;}
.xa_c00100{left:163.750485px;}
.x57_c00100{left:166.185885px;}
.x58_c00100{left:170.086485px;}
.x47_c00100{left:173.576235px;}
.x4_c00100{left:175.387935px;}
.x22_c00100{left:185.466135px;}
.x16_c00100{left:186.525435px;}
.xb_c00100{left:195.791835px;}
.x30_c00100{left:197.059035px;}
.x4e_c00100{left:207.033285px;}
.x3f_c00100{left:208.538085px;}
.x24_c00100{left:218.992485px;}
.x4c_c00100{left:220.022085px;}
.x2e_c00100{left:230.337885px;}
.x39_c00100{left:241.049685px;}
.x25_c00100{left:252.439635px;}
.x4a_c00100{left:262.780185px;}
.x17_c00100{left:263.898885px;}
.x59_c00100{left:264.948285px;}
.x5_c00100{left:273.368235px;}
.x50_c00100{left:274.947285px;}
.x26_c00100{left:286.654035px;}
.x18_c00100{left:297.276735px;}
.xc_c00100{left:307.201485px;}
.x6_c00100{left:308.325135px;}
.x51_c00100{left:319.487385px;}
.x35_c00100{left:320.804085px;}
.xd_c00100{left:329.773485px;}
.x43_c00100{left:331.199085px;}
.x19_c00100{left:341.212935px;}
.x36_c00100{left:351.741585px;}
.x3a_c00100{left:352.998885px;}
.x27_c00100{left:363.695835px;}
.xe_c00100{left:374.541285px;}
.x3d_c00100{left:385.753035px;}
.x54_c00100{left:396.326235px;}
.x48_c00100{left:397.781535px;}
.x4b_c00100{left:406.924185px;}
.x7_c00100{left:409.191285px;}
.x1a_c00100{left:420.234735px;}
.x3e_c00100{left:430.644585px;}
.x3b_c00100{left:432.000885px;}
.x29_c00100{left:442.405785px;}
.x1b_c00100{left:453.142335px;}
.xf_c00100{left:463.482885px;}
.x3c_c00100{left:464.799585px;}
.x2a_c00100{left:473.308635px;}
.x8_c00100{left:474.843135px;}
.x9_c00100{left:485.520285px;}
.x5a_c00100{left:486.579585px;}
.x10_c00100{left:496.004385px;}
.x40_c00100{left:498.033885px;}
.x2b_c00100{left:507.117135px;}
.x31_c00100{left:519.383235px;}
.x4f_c00100{left:529.263435px;}
.x1c_c00100{left:531.065235px;}
.x37_c00100{left:541.410735px;}
.x11_c00100{left:551.870085px;}
.x4d_c00100{left:553.107585px;}
.x28_c00100{left:563.245185px;}
.x1d_c00100{left:573.056085px;}
.x44_c00100{left:575.036085px;}
.x12_c00100{left:584.104485px;}
.x41_c00100{left:585.673635px;}
.x32_c00100{left:596.939835px;}
.x1e_c00100{left:607.240785px;}
.x55_c00100{left:608.493135px;}
.x42_c00100{left:619.204935px;}
.x52_c00100{left:628.669335px;}
.x49_c00100{left:630.223635px;}
.x1f_c00100{left:639.391035px;}
.x2c_c00100{left:641.301735px;}
.x2_c00100{left:650.884935px;}
.x13_c00100{left:652.350135px;}
.x2f_c00100{left:661.487835px;}
.x33_c00100{left:663.007485px;}
.x45_c00100{left:664.051935px;}
.x20_c00100{left:673.204485px;}
.x53_c00100{left:674.758785px;}
.x46_c00100{left:689.321685px;}
.x56_c00100{left:696.528885px;}
@media print{
.v0_c00100{vertical-align:0.000000pt;}
.ls4_c00100{letter-spacing:-2.537926pt;}
.ls12_c00100{letter-spacing:-2.487168pt;}
.lsc_c00100{letter-spacing:-0.565595pt;}
.lse_c00100{letter-spacing:-0.488506pt;}
.ls6_c00100{letter-spacing:-0.268295pt;}
.ls2_c00100{letter-spacing:0.000000pt;}
.ls9_c00100{letter-spacing:0.116019pt;}
.lsf_c00100{letter-spacing:0.580097pt;}
.ls5_c00100{letter-spacing:1.029673pt;}
.lsb_c00100{letter-spacing:1.907070pt;}
.ls11_c00100{letter-spacing:2.298636pt;}
.ls3_c00100{letter-spacing:2.632192pt;}
.ls10_c00100{letter-spacing:2.748211pt;}
.ls14_c00100{letter-spacing:3.132800pt;}
.ls7_c00100{letter-spacing:3.220800pt;}
.lsa_c00100{letter-spacing:3.284802pt;}
.ls13_c00100{letter-spacing:3.538594pt;}
.ls8_c00100{letter-spacing:3.555209pt;}
.ls1_c00100{letter-spacing:3.625609pt;}
.ls0_c00100{letter-spacing:3.801609pt;}
.lsd_c00100{letter-spacing:44.352176pt;}
.ws0_c00100{word-spacing:0.000000pt;}
.fs8_c00100{font-size:19.008000pt;}
.fs12_c00100{font-size:20.064000pt;}
.fs11_c00100{font-size:24.640000pt;}
.fs6_c00100{font-size:29.568000pt;}
.fsd_c00100{font-size:34.320000pt;}
.fs2_c00100{font-size:35.200000pt;}
.fs13_c00100{font-size:39.424000pt;}
.fs7_c00100{font-size:44.352176pt;}
.fs10_c00100{font-size:44.704000pt;}
.fsf_c00100{font-size:53.504000pt;}
.fsc_c00100{font-size:58.960000pt;}
.fs9_c00100{font-size:62.304176pt;}
.fse_c00100{font-size:62.656000pt;}
.fs4_c00100{font-size:64.416000pt;}
.fsa_c00100{font-size:66.528000pt;}
.fs3_c00100{font-size:70.048000pt;}
.fs5_c00100{font-size:71.104176pt;}
.fs1_c00100{font-size:72.512176pt;}
.fsb_c00100{font-size:74.272176pt;}
.fs0_c00100{font-size:76.032176pt;}
.y0_c00100{bottom:0.000000pt;}
.y25_c00100{bottom:20.196920pt;}
.y24_c00100{bottom:47.441720pt;}
.y1_c00100{bottom:68.000000pt;}
.y23_c00100{bottom:74.052920pt;}
.y22_c00100{bottom:78.804920pt;}
.y21_c00100{bottom:99.396920pt;}
.y20_c00100{bottom:103.838456pt;}
.y1f_c00100{bottom:130.442264pt;}
.y1e_c00100{bottom:137.412920pt;}
.y1c_c00100{bottom:164.340920pt;}
.y1d_c00100{bottom:165.924920pt;}
.y1b_c00100{bottom:192.219320pt;}
.y1a_c00100{bottom:220.414520pt;}
.y19_c00100{bottom:248.605320pt;}
.y18_c00100{bottom:276.804920pt;}
.y17_c00100{bottom:305.000120pt;}
.y16_c00100{bottom:333.512120pt;}
.y15_c00100{bottom:361.707320pt;}
.y14_c00100{bottom:389.898120pt;}
.y13_c00100{bottom:413.024520pt;}
.y12_c00100{bottom:417.780920pt;}
.y11_c00100{bottom:439.006520pt;}
.y10_c00100{bottom:445.025720pt;}
.yf_c00100{bottom:472.904120pt;}
.ye_c00100{bottom:528.656520pt;}
.yd_c00100{bottom:557.172920pt;}
.yc_c00100{bottom:585.363720pt;}
.yb_c00100{bottom:613.880120pt;}
.ya_c00100{bottom:642.070920pt;}
.y9_c00100{bottom:670.270520pt;}
.y8_c00100{bottom:698.465720pt;}
.y7_c00100{bottom:753.267720pt;}
.y6_c00100{bottom:781.784120pt;}
.y5_c00100{bottom:809.028920pt;}
.y4_c00100{bottom:822.646920pt;}
.y3_c00100{bottom:837.224120pt;}
.y2_c00100{bottom:959.187720pt;}
.ha_c00100{height:18.655313pt;}
.h13_c00100{height:20.926125pt;}
.h12_c00100{height:25.698750pt;}
.h9_c00100{height:29.538549pt;}
.h8_c00100{height:30.838500pt;}
.hf_c00100{height:35.794688pt;}
.h4_c00100{height:36.712500pt;}
.h14_c00100{height:41.118000pt;}
.h11_c00100{height:43.874531pt;}
.h10_c00100{height:55.803000pt;}
.he_c00100{height:61.493438pt;}
.h6_c00100{height:63.220781pt;}
.hb_c00100{height:64.981309pt;}
.hc_c00100{height:65.293594pt;}
.h5_c00100{height:68.748281pt;}
.h7_c00100{height:69.784860pt;}
.h3_c00100{height:71.166735pt;}
.hd_c00100{height:72.894079pt;}
.h2_c00100{height:74.621423pt;}
.h1_c00100{height:986.666667pt;}
.h0_c00100{height:1122.666667pt;}
.w1_c00100{width:652.000000pt;}
.w0_c00100{width:793.333333pt;}
.x0_c00100{left:0.000000pt;}
.x38_c00100{left:13.252387pt;}
.x2d_c00100{left:67.297587pt;}
.x3_c00100{left:68.467987pt;}
.x1_c00100{left:70.666667pt;}
.x14_c00100{left:96.135187pt;}
.x34_c00100{left:106.897587pt;}
.x23_c00100{left:115.921987pt;}
.x21_c00100{left:125.566787pt;}
.x15_c00100{left:135.730787pt;}
.xa_c00100{left:145.555987pt;}
.x57_c00100{left:147.720787pt;}
.x58_c00100{left:151.187987pt;}
.x47_c00100{left:154.289987pt;}
.x4_c00100{left:155.900387pt;}
.x22_c00100{left:164.858787pt;}
.x16_c00100{left:165.800387pt;}
.xb_c00100{left:174.037187pt;}
.x30_c00100{left:175.163587pt;}
.x4e_c00100{left:184.029587pt;}
.x3f_c00100{left:185.367187pt;}
.x24_c00100{left:194.659987pt;}
.x4c_c00100{left:195.575187pt;}
.x2e_c00100{left:204.744787pt;}
.x39_c00100{left:214.266387pt;}
.x25_c00100{left:224.390787pt;}
.x4a_c00100{left:233.582387pt;}
.x17_c00100{left:234.576787pt;}
.x59_c00100{left:235.509587pt;}
.x5_c00100{left:242.993987pt;}
.x50_c00100{left:244.397587pt;}
.x26_c00100{left:254.803587pt;}
.x18_c00100{left:264.245987pt;}
.xc_c00100{left:273.067987pt;}
.x6_c00100{left:274.066787pt;}
.x51_c00100{left:283.988787pt;}
.x35_c00100{left:285.159187pt;}
.xd_c00100{left:293.131987pt;}
.x43_c00100{left:294.399187pt;}
.x19_c00100{left:303.300387pt;}
.x36_c00100{left:312.659187pt;}
.x3a_c00100{left:313.776787pt;}
.x27_c00100{left:323.285187pt;}
.xe_c00100{left:332.925587pt;}
.x3d_c00100{left:342.891587pt;}
.x54_c00100{left:352.289987pt;}
.x48_c00100{left:353.583587pt;}
.x4b_c00100{left:361.710387pt;}
.x7_c00100{left:363.725587pt;}
.x1a_c00100{left:373.541987pt;}
.x3e_c00100{left:382.795187pt;}
.x3b_c00100{left:384.000787pt;}
.x29_c00100{left:393.249587pt;}
.x1b_c00100{left:402.793187pt;}
.xf_c00100{left:411.984787pt;}
.x3c_c00100{left:413.155187pt;}
.x2a_c00100{left:420.718787pt;}
.x8_c00100{left:422.082787pt;}
.x9_c00100{left:431.573587pt;}
.x5a_c00100{left:432.515187pt;}
.x10_c00100{left:440.892787pt;}
.x40_c00100{left:442.696787pt;}
.x2b_c00100{left:450.770787pt;}
.x31_c00100{left:461.673987pt;}
.x4f_c00100{left:470.456387pt;}
.x1c_c00100{left:472.057987pt;}
.x37_c00100{left:481.253987pt;}
.x11_c00100{left:490.551187pt;}
.x4d_c00100{left:491.651187pt;}
.x28_c00100{left:500.662387pt;}
.x1d_c00100{left:509.383187pt;}
.x44_c00100{left:511.143187pt;}
.x12_c00100{left:519.203987pt;}
.x41_c00100{left:520.598787pt;}
.x32_c00100{left:530.613187pt;}
.x1e_c00100{left:539.769587pt;}
.x55_c00100{left:540.882787pt;}
.x42_c00100{left:550.404387pt;}
.x52_c00100{left:558.817187pt;}
.x49_c00100{left:560.198787pt;}
.x1f_c00100{left:568.347587pt;}
.x2c_c00100{left:570.045987pt;}
.x2_c00100{left:578.564387pt;}
.x13_c00100{left:579.866787pt;}
.x2f_c00100{left:587.989187pt;}
.x33_c00100{left:589.339987pt;}
.x45_c00100{left:590.268387pt;}
.x20_c00100{left:598.403987pt;}
.x53_c00100{left:599.785587pt;}
.x46_c00100{left:612.730387pt;}
.x56_c00100{left:619.136787pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9f5ccb45cf1b8ead92c68e1f.woff2')format("woff");}.ff1_c00101{font-family:ff1_c00101;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00101;src:url('chunks/assets/font_ea82122f477939c41e8622d4.woff2')format("woff");}.ff2_c00101{font-family:ff2_c00101;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00101;src:url('chunks/assets/font_7607acef0201605e9e1b731f.woff2')format("woff");}.ff3_c00101{font-family:ff3_c00101;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00101;src:url('chunks/assets/font_8be90c319cba287fa3e0cf2b.woff2')format("woff");}.ff4_c00101{font-family:ff4_c00101;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00101;src:url('chunks/assets/font_a8c1173024f5914c3441a7b5.woff2')format("woff");}.ff5_c00101{font-family:ff5_c00101;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00101;src:url('chunks/assets/font_3395a4617ee09130e76f1233.woff2')format("woff");}.ff6_c00101{font-family:ff6_c00101;line-height:1.435059;font-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_c00101{transform:matrix(0.115967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115967,0.000000,0.000000,0.250000,0,0);}
.m6_c00101{transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);}
.m83_c00101{transform:matrix(0.183914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183914,0.000000,0.000000,0.250000,0,0);}
.m4c_c00101{transform:matrix(0.188988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188988,0.000000,0.000000,0.250000,0,0);}
.m40_c00101{transform:matrix(0.199324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199324,0.000000,0.000000,0.250000,0,0);}
.m68_c00101{transform:matrix(0.201922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201922,0.000000,0.000000,0.250000,0,0);}
.m64_c00101{transform:matrix(0.218572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218572,0.000000,0.000000,0.250000,0,0);}
.m51_c00101{transform:matrix(0.238513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238513,0.000000,0.000000,0.250000,0,0);}
.m9b_c00101{transform:matrix(0.240455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240455,0.000000,0.000000,0.250000,0,0);}
.m32_c00101{transform:matrix(0.246419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246419,0.000000,0.000000,0.250000,0,0);}
.m0_c00101{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m48_c00101{transform:matrix(0.251943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251943,0.000000,0.000000,0.250000,0,0);}
.m62_c00101{transform:matrix(0.253374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253374,0.000000,0.000000,0.250000,0,0);}
.m69_c00101{transform:matrix(0.253467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253467,0.000000,0.000000,0.250000,0,0);}
.m6c_c00101{transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);}
.m39_c00101{transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);}
.m63_c00101{transform:matrix(0.258392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258392,0.000000,0.000000,0.250000,0,0);}
.m85_c00101{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m1_c00101{transform:matrix(0.259032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259032,0.000000,0.000000,0.250000,0,0);}
.m4e_c00101{transform:matrix(0.260046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260046,0.000000,0.000000,0.250000,0,0);}
.m8e_c00101{transform:matrix(0.260777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260777,0.000000,0.000000,0.250000,0,0);}
.m34_c00101{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m47_c00101{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.m76_c00101{transform:matrix(0.262480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262480,0.000000,0.000000,0.250000,0,0);}
.m6e_c00101{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m18_c00101{transform:matrix(0.263772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263772,0.000000,0.000000,0.250000,0,0);}
.m7b_c00101{transform:matrix(0.264128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264128,0.000000,0.000000,0.250000,0,0);}
.m25_c00101{transform:matrix(0.265249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265249,0.000000,0.000000,0.250000,0,0);}
.m56_c00101{transform:matrix(0.265387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265387,0.000000,0.000000,0.250000,0,0);}
.m24_c00101{transform:matrix(0.265699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265699,0.000000,0.000000,0.250000,0,0);}
.m7c_c00101{transform:matrix(0.266301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266301,0.000000,0.000000,0.250000,0,0);}
.m74_c00101{transform:matrix(0.266364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266364,0.000000,0.000000,0.250000,0,0);}
.m4b_c00101{transform:matrix(0.267530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267530,0.000000,0.000000,0.250000,0,0);}
.ma_c00101{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m92_c00101{transform:matrix(0.268050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268050,0.000000,0.000000,0.250000,0,0);}
.m5a_c00101{transform:matrix(0.270638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270638,0.000000,0.000000,0.250000,0,0);}
.m61_c00101{transform:matrix(0.270870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270870,0.000000,0.000000,0.250000,0,0);}
.m1d_c00101{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.mc_c00101{transform:matrix(0.271006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271006,0.000000,0.000000,0.250000,0,0);}
.m44_c00101{transform:matrix(0.271319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271319,0.000000,0.000000,0.250000,0,0);}
.m54_c00101{transform:matrix(0.272249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272249,0.000000,0.000000,0.250000,0,0);}
.m15_c00101{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m3f_c00101{transform:matrix(0.272747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272747,0.000000,0.000000,0.250000,0,0);}
.m98_c00101{transform:matrix(0.273069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273069,0.000000,0.000000,0.250000,0,0);}
.m37_c00101{transform:matrix(0.273300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273300,0.000000,0.000000,0.250000,0,0);}
.m27_c00101{transform:matrix(0.273493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273493,0.000000,0.000000,0.250000,0,0);}
.m49_c00101{transform:matrix(0.273616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273616,0.000000,0.000000,0.250000,0,0);}
.m8f_c00101{transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);}
.m60_c00101{transform:matrix(0.275172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275172,0.000000,0.000000,0.250000,0,0);}
.m7f_c00101{transform:matrix(0.275438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275438,0.000000,0.000000,0.250000,0,0);}
.m11_c00101{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m45_c00101{transform:matrix(0.275704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275704,0.000000,0.000000,0.250000,0,0);}
.m93_c00101{transform:matrix(0.276213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276213,0.000000,0.000000,0.250000,0,0);}
.m16_c00101{transform:matrix(0.276448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276448,0.000000,0.000000,0.250000,0,0);}
.m5c_c00101{transform:matrix(0.276482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276482,0.000000,0.000000,0.250000,0,0);}
.m13_c00101{transform:matrix(0.276845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276845,0.000000,0.000000,0.250000,0,0);}
.m3d_c00101{transform:matrix(0.277767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277767,0.000000,0.000000,0.250000,0,0);}
.m2a_c00101{transform:matrix(0.278448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278448,0.000000,0.000000,0.250000,0,0);}
.m36_c00101{transform:matrix(0.278485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278485,0.000000,0.000000,0.250000,0,0);}
.m6d_c00101{transform:matrix(0.278953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278953,0.000000,0.000000,0.250000,0,0);}
.me_c00101{transform:matrix(0.279178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279178,0.000000,0.000000,0.250000,0,0);}
.m30_c00101{transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);}
.mf_c00101{transform:matrix(0.280503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280503,0.000000,0.000000,0.250000,0,0);}
.m90_c00101{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.m17_c00101{transform:matrix(0.281782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281782,0.000000,0.000000,0.250000,0,0);}
.m55_c00101{transform:matrix(0.282254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282254,0.000000,0.000000,0.250000,0,0);}
.m4d_c00101{transform:matrix(0.282543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282543,0.000000,0.000000,0.250000,0,0);}
.m75_c00101{transform:matrix(0.282587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282587,0.000000,0.000000,0.250000,0,0);}
.m5f_c00101{transform:matrix(0.283023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283023,0.000000,0.000000,0.250000,0,0);}
.m2b_c00101{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m41_c00101{transform:matrix(0.284362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284362,0.000000,0.000000,0.250000,0,0);}
.m86_c00101{transform:matrix(0.284418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284418,0.000000,0.000000,0.250000,0,0);}
.m43_c00101{transform:matrix(0.285129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285129,0.000000,0.000000,0.250000,0,0);}
.m1c_c00101{transform:matrix(0.285655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285655,0.000000,0.000000,0.250000,0,0);}
.m9e_c00101{transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);}
.m88_c00101{transform:matrix(0.286914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286914,0.000000,0.000000,0.250000,0,0);}
.m99_c00101{transform:matrix(0.287480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287480,0.000000,0.000000,0.250000,0,0);}
.m19_c00101{transform:matrix(0.287561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287561,0.000000,0.000000,0.250000,0,0);}
.m4_c00101{transform:matrix(0.287732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287732,0.000000,0.000000,0.250000,0,0);}
.m21_c00101{transform:matrix(0.287747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287747,0.000000,0.000000,0.250000,0,0);}
.m2c_c00101{transform:matrix(0.288304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288304,0.000000,0.000000,0.250000,0,0);}
.m1b_c00101{transform:matrix(0.288481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288481,0.000000,0.000000,0.250000,0,0);}
.m78_c00101{transform:matrix(0.289023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289023,0.000000,0.000000,0.250000,0,0);}
.m8d_c00101{transform:matrix(0.290389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290389,0.000000,0.000000,0.250000,0,0);}
.m46_c00101{transform:matrix(0.290535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290535,0.000000,0.000000,0.250000,0,0);}
.m6f_c00101{transform:matrix(0.291403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291403,0.000000,0.000000,0.250000,0,0);}
.m6b_c00101{transform:matrix(0.292215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292215,0.000000,0.000000,0.250000,0,0);}
.m80_c00101{transform:matrix(0.294105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294105,0.000000,0.000000,0.250000,0,0);}
.md_c00101{transform:matrix(0.294358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294358,0.000000,0.000000,0.250000,0,0);}
.m91_c00101{transform:matrix(0.294550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294550,0.000000,0.000000,0.250000,0,0);}
.m84_c00101{transform:matrix(0.295851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295851,0.000000,0.000000,0.250000,0,0);}
.m67_c00101{transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);}
.m2e_c00101{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m96_c00101{transform:matrix(0.297178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297178,0.000000,0.000000,0.250000,0,0);}
.m77_c00101{transform:matrix(0.299619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299619,0.000000,0.000000,0.250000,0,0);}
.m7_c00101{transform:matrix(0.300326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300326,0.000000,0.000000,0.250000,0,0);}
.m89_c00101{transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);}
.m2f_c00101{transform:matrix(0.301732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301732,0.000000,0.000000,0.250000,0,0);}
.m9d_c00101{transform:matrix(0.302057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302057,0.000000,0.000000,0.250000,0,0);}
.m52_c00101{transform:matrix(0.302713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302713,0.000000,0.000000,0.250000,0,0);}
.m4f_c00101{transform:matrix(0.303054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303054,0.000000,0.000000,0.250000,0,0);}
.m81_c00101{transform:matrix(0.304978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304978,0.000000,0.000000,0.250000,0,0);}
.m8a_c00101{transform:matrix(0.307576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307576,0.000000,0.000000,0.250000,0,0);}
.m3b_c00101{transform:matrix(0.307706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307706,0.000000,0.000000,0.250000,0,0);}
.m9c_c00101{transform:matrix(0.307871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307871,0.000000,0.000000,0.250000,0,0);}
.m1a_c00101{transform:matrix(0.308275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308275,0.000000,0.000000,0.250000,0,0);}
.m10_c00101{transform:matrix(0.308285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308285,0.000000,0.000000,0.250000,0,0);}
.m5e_c00101{transform:matrix(0.308583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308583,0.000000,0.000000,0.250000,0,0);}
.m71_c00101{transform:matrix(0.308738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308738,0.000000,0.000000,0.250000,0,0);}
.m5d_c00101{transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);}
.m29_c00101{transform:matrix(0.309889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309889,0.000000,0.000000,0.250000,0,0);}
.m53_c00101{transform:matrix(0.310436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310436,0.000000,0.000000,0.250000,0,0);}
.m23_c00101{transform:matrix(0.310586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310586,0.000000,0.000000,0.250000,0,0);}
.mb_c00101{transform:matrix(0.310626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310626,0.000000,0.000000,0.250000,0,0);}
.m7d_c00101{transform:matrix(0.312030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312030,0.000000,0.000000,0.250000,0,0);}
.m3_c00101{transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);}
.m42_c00101{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.m7e_c00101{transform:matrix(0.314420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314420,0.000000,0.000000,0.250000,0,0);}
.m3a_c00101{transform:matrix(0.314570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314570,0.000000,0.000000,0.250000,0,0);}
.m9_c00101{transform:matrix(0.315202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315202,0.000000,0.000000,0.250000,0,0);}
.m31_c00101{transform:matrix(0.316143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316143,0.000000,0.000000,0.250000,0,0);}
.m6a_c00101{transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);}
.m28_c00101{transform:matrix(0.317077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317077,0.000000,0.000000,0.250000,0,0);}
.m57_c00101{transform:matrix(0.317883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317883,0.000000,0.000000,0.250000,0,0);}
.m70_c00101{transform:matrix(0.318082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318082,0.000000,0.000000,0.250000,0,0);}
.m58_c00101{transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);}
.m2_c00101{transform:matrix(0.318866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318866,0.000000,0.000000,0.250000,0,0);}
.m9a_c00101{transform:matrix(0.319808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319808,0.000000,0.000000,0.250000,0,0);}
.m8b_c00101{transform:matrix(0.322752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322752,0.000000,0.000000,0.250000,0,0);}
.m66_c00101{transform:matrix(0.322883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322883,0.000000,0.000000,0.250000,0,0);}
.m20_c00101{transform:matrix(0.323442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323442,0.000000,0.000000,0.250000,0,0);}
.m1f_c00101{transform:matrix(0.323918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323918,0.000000,0.000000,0.250000,0,0);}
.m7a_c00101{transform:matrix(0.326133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326133,0.000000,0.000000,0.250000,0,0);}
.m87_c00101{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m12_c00101{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.m4a_c00101{transform:matrix(0.327605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327605,0.000000,0.000000,0.250000,0,0);}
.m14_c00101{transform:matrix(0.327607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327607,0.000000,0.000000,0.250000,0,0);}
.m38_c00101{transform:matrix(0.328480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328480,0.000000,0.000000,0.250000,0,0);}
.m95_c00101{transform:matrix(0.328524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328524,0.000000,0.000000,0.250000,0,0);}
.m79_c00101{transform:matrix(0.328659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328659,0.000000,0.000000,0.250000,0,0);}
.m59_c00101{transform:matrix(0.328843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328843,0.000000,0.000000,0.250000,0,0);}
.m33_c00101{transform:matrix(0.331163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331163,0.000000,0.000000,0.250000,0,0);}
.m72_c00101{transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);}
.m73_c00101{transform:matrix(0.332332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332332,0.000000,0.000000,0.250000,0,0);}
.m26_c00101{transform:matrix(0.332458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332458,0.000000,0.000000,0.250000,0,0);}
.m5b_c00101{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m97_c00101{transform:matrix(0.334989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334989,0.000000,0.000000,0.250000,0,0);}
.m65_c00101{transform:matrix(0.335529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335529,0.000000,0.000000,0.250000,0,0);}
.m50_c00101{transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);}
.m82_c00101{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m22_c00101{transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);}
.m8_c00101{transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);}
.m2d_c00101{transform:matrix(0.345984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345984,0.000000,0.000000,0.250000,0,0);}
.m3e_c00101{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m35_c00101{transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);}
.m94_c00101{transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);}
.m3c_c00101{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m1e_c00101{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m8c_c00101{transform:matrix(0.366424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366424,0.000000,0.000000,0.250000,0,0);}
.v0_c00101{vertical-align:0.000000px;}
.ls9_c00101{letter-spacing:-2.744280px;}
.ls12_c00101{letter-spacing:-2.375762px;}
.ls5_c00101{letter-spacing:-1.386000px;}
.lsc_c00101{letter-spacing:-1.089871px;}
.ls2_c00101{letter-spacing:0.000000px;}
.ls0_c00101{letter-spacing:0.533174px;}
.lsf_c00101{letter-spacing:1.928837px;}
.ls8_c00101{letter-spacing:3.125905px;}
.ls14_c00101{letter-spacing:3.177900px;}
.ls13_c00101{letter-spacing:3.463068px;}
.ls7_c00101{letter-spacing:3.465000px;}
.lsa_c00101{letter-spacing:3.489156px;}
.ls1_c00101{letter-spacing:3.536201px;}
.ls4_c00101{letter-spacing:3.920400px;}
.lsd_c00101{letter-spacing:4.068900px;}
.ls3_c00101{letter-spacing:4.296610px;}
.ls6_c00101{letter-spacing:31.363200px;}
.ls10_c00101{letter-spacing:49.896198px;}
.lsb_c00101{letter-spacing:52.747398px;}
.ls11_c00101{letter-spacing:55.598598px;}
.lse_c00101{letter-spacing:59.875398px;}
.sc__c00101{text-shadow:none;}
.sc0_c00101{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00101{-webkit-text-stroke:0px transparent;}
.sc0_c00101{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00101{word-spacing:0.000000px;}
._1_c00101{width:9.095328px;}
._5_c00101{width:22.267872px;}
._4_c00101{width:25.499074px;}
._2_c00101{width:30.955874px;}
._3_c00101{width:35.440416px;}
._0_c00101{width:39.634848px;}
.fc0_c00101{color:transparent;}
.fs0_c00101{font-size:27.720000px;}
.fs6_c00101{font-size:31.363200px;}
.fs15_c00101{font-size:32.670000px;}
.fs5_c00101{font-size:34.650000px;}
.fs10_c00101{font-size:38.808000px;}
.fsf_c00101{font-size:39.204000px;}
.fs3_c00101{font-size:39.600000px;}
.fsd_c00101{font-size:49.896198px;}
.fs9_c00101{font-size:52.747398px;}
.fse_c00101{font-size:55.598598px;}
.fsb_c00101{font-size:59.875398px;}
.fs13_c00101{font-size:61.578000px;}
.fs14_c00101{font-size:63.558000px;}
.fs7_c00101{font-size:69.300000px;}
.fs4_c00101{font-size:72.864000px;}
.fs12_c00101{font-size:74.448000px;}
.fs8_c00101{font-size:76.428000px;}
.fs2_c00101{font-size:78.408000px;}
.fsc_c00101{font-size:78.804000px;}
.fsa_c00101{font-size:81.378000px;}
.fs1_c00101{font-size:85.932198px;}
.fs11_c00101{font-size:91.476198px;}
.y0_c00101{bottom:0.000000px;}
.y26_c00101{bottom:46.956735px;}
.y25_c00101{bottom:54.792585px;}
.y1_c00101{bottom:76.500000px;}
.y24_c00101{bottom:148.174335px;}
.y23_c00101{bottom:211.257135px;}
.y22_c00101{bottom:230.502735px;}
.y21_c00101{bottom:243.684585px;}
.y20_c00101{bottom:276.473385px;}
.y1f_c00101{bottom:308.554335px;}
.y1e_c00101{bottom:309.623535px;}
.y1d_c00101{bottom:341.343135px;}
.y1c_c00101{bottom:364.147785px;}
.y1b_c00101{bottom:374.131935px;}
.y1a_c00101{bottom:406.564335px;}
.y19_c00101{bottom:439.704585px;}
.y16_c00101{bottom:470.716335px;}
.y18_c00101{bottom:471.429135px;}
.y17_c00101{bottom:475.705935px;}
.y15_c00101{bottom:503.505135px;}
.y14_c00101{bottom:536.288985px;}
.y13_c00101{bottom:568.008585px;}
.y12_c00101{bottom:600.440985px;}
.y11_c00101{bottom:633.229785px;}
.y10_c00101{bottom:649.985535px;}
.yf_c00101{bottom:665.662185px;}
.y2_c00101{bottom:680.992335px;}
.ye_c00101{bottom:699.168735px;}
.yd_c00101{bottom:731.957535px;}
.yc_c00101{bottom:764.028585px;}
.yb_c00101{bottom:796.460985px;}
.ya_c00101{bottom:829.611135px;}
.y9_c00101{bottom:863.107785px;}
.y5_c00101{bottom:915.498585px;}
.y8_c00101{bottom:928.685385px;}
.y4_c00101{bottom:932.605785px;}
.y7_c00101{bottom:939.382335px;}
.y6_c00101{bottom:951.856335px;}
.y3_c00101{bottom:1083.006585px;}
.h8_c00101{height:20.887891px;}
.h2_c00101{height:28.911094px;}
.h18_c00101{height:32.063818px;}
.hf_c00101{height:33.230868px;}
.hb_c00101{height:35.129767px;}
.h7_c00101{height:36.138867px;}
.h10_c00101{height:37.028666px;}
.h11_c00101{height:38.476582px;}
.hd_c00101{height:39.877015px;}
.h12_c00101{height:40.475531px;}
.h5_c00101{height:41.301563px;}
.h16_c00101{height:64.223930px;}
.h17_c00101{height:66.289008px;}
.h9_c00101{height:67.980322px;}
.h6_c00101{height:71.512031px;}
.h14_c00101{height:73.066641px;}
.h4_c00101{height:76.953164px;}
.he_c00101{height:77.341816px;}
.ha_c00101{height:79.712016px;}
.hc_c00101{height:79.828321px;}
.h15_c00101{height:84.295794px;}
.h3_c00101{height:84.337753px;}
.h13_c00101{height:95.228151px;}
.h1_c00101{height:1110.000000px;}
.h0_c00101{height:1263.000000px;}
.w1_c00101{width:733.500000px;}
.w0_c00101{width:892.500000px;}
.x0_c00101{left:0.000000px;}
.x2_c00101{left:39.822285px;}
.x35_c00101{left:70.537035px;}
.x25_c00101{left:71.601285px;}
.x4_c00101{left:72.650685px;}
.x58_c00101{left:75.620685px;}
.x1_c00101{left:79.500000px;}
.x1a_c00101{left:104.944485px;}
.x46_c00101{left:106.300785px;}
.x4f_c00101{left:117.042285px;}
.xa_c00101{left:127.140285px;}
.x56_c00101{left:129.159885px;}
.x1b_c00101{left:139.148985px;}
.x3e_c00101{left:149.840985px;}
.x4a_c00101{left:150.850785px;}
.x12_c00101{left:161.577435px;}
.x3c_c00101{left:171.729885px;}
.x5_c00101{left:182.961435px;}
.x3f_c00101{left:193.128735px;}
.x2d_c00101{left:194.381085px;}
.xb_c00101{left:205.092885px;}
.x44_c00101{left:206.256135px;}
.x26_c00101{left:216.779835px;}
.x5b_c00101{left:222.502035px;}
.x6_c00101{left:227.555985px;}
.x4b_c00101{left:236.079885px;}
.x13_c00101{left:238.911285px;}
.xc_c00101{left:250.132935px;}
.x5c_c00101{left:261.795135px;}
.x1c_c00101{left:272.096085px;}
.xd_c00101{left:283.283085px;}
.x27_c00101{left:294.197835px;}
.x5d_c00101{left:295.212585px;}
.x41_c00101{left:297.296535px;}
.x1d_c00101{left:304.256235px;}
.x2e_c00101{left:305.419485px;}
.x36_c00101{left:317.007435px;}
.x52_c00101{left:326.417385px;}
.x2f_c00101{left:328.313235px;}
.x28_c00101{left:337.703385px;}
.xe_c00101{left:338.742885px;}
.x4c_c00101{left:340.138785px;}
.x14_c00101{left:350.830785px;}
.x37_c00101{left:361.111935px;}
.x5e_c00101{left:362.235585px;}
.x1e_c00101{left:363.621585px;}
.xf_c00101{left:372.407835px;}
.x59_c00101{left:382.426635px;}
.x15_c00101{left:383.629485px;}
.x38_c00101{left:394.356135px;}
.x47_c00101{left:396.044085px;}
.x51_c00101{left:399.019035px;}
.x42_c00101{left:407.023185px;}
.x30_c00101{left:417.022185px;}
.x49_c00101{left:426.937035px;}
.x16_c00101{left:428.179485px;}
.x1f_c00101{left:439.049685px;}
.x29_c00101{left:441.277185px;}
.x31_c00101{left:449.538735px;}
.x43_c00101{left:460.864335px;}
.x39_c00101{left:471.912735px;}
.x54_c00101{left:473.105685px;}
.x10_c00101{left:483.772935px;}
.x5f_c00101{left:493.945185px;}
.x20_c00101{left:495.177735px;}
.x5a_c00101{left:504.270885px;}
.x2a_c00101{left:505.889535px;}
.x17_c00101{left:517.244835px;}
.x32_c00101{left:526.729035px;}
.x21_c00101{left:527.946735px;}
.x40_c00101{left:538.856535px;}
.x2b_c00101{left:550.399935px;}
.x22_c00101{left:561.086985px;}
.x45_c00101{left:570.937485px;}
.x50_c00101{left:572.189835px;}
.x7_c00101{left:578.684235px;}
.x55_c00101{left:581.604735px;}
.x60_c00101{left:582.738285px;}
.x3a_c00101{left:583.871835px;}
.x33_c00101{left:592.346235px;}
.x57_c00101{left:593.707485px;}
.x18_c00101{left:604.612335px;}
.x48_c00101{left:605.646885px;}
.x11_c00101{left:615.987435px;}
.x23_c00101{left:627.070485px;}
.x34_c00101{left:638.000085px;}
.x19_c00101{left:639.168285px;}
.x3_c00101{left:649.820685px;}
.x24_c00101{left:660.557235px;}
.x2c_c00101{left:661.809585px;}
.x3b_c00101{left:685.054785px;}
.x61_c00101{left:686.510085px;}
.x4e_c00101{left:688.069335px;}
.x4d_c00101{left:689.183085px;}
.x3d_c00101{left:690.252285px;}
.x8_c00101{left:693.271785px;}
.x9_c00101{left:694.826085px;}
.x53_c00101{left:704.735985px;}
@media print{
.v0_c00101{vertical-align:0.000000pt;}
.ls9_c00101{letter-spacing:-2.439360pt;}
.ls12_c00101{letter-spacing:-2.111789pt;}
.ls5_c00101{letter-spacing:-1.232000pt;}
.lsc_c00101{letter-spacing:-0.968774pt;}
.ls2_c00101{letter-spacing:0.000000pt;}
.ls0_c00101{letter-spacing:0.473933pt;}
.lsf_c00101{letter-spacing:1.714522pt;}
.ls8_c00101{letter-spacing:2.778582pt;}
.ls14_c00101{letter-spacing:2.824800pt;}
.ls13_c00101{letter-spacing:3.078282pt;}
.ls7_c00101{letter-spacing:3.080000pt;}
.lsa_c00101{letter-spacing:3.101472pt;}
.ls1_c00101{letter-spacing:3.143290pt;}
.ls4_c00101{letter-spacing:3.484800pt;}
.lsd_c00101{letter-spacing:3.616800pt;}
.ls3_c00101{letter-spacing:3.819209pt;}
.ls6_c00101{letter-spacing:27.878400pt;}
.ls10_c00101{letter-spacing:44.352176pt;}
.lsb_c00101{letter-spacing:46.886576pt;}
.ls11_c00101{letter-spacing:49.420976pt;}
.lse_c00101{letter-spacing:53.222576pt;}
.ws0_c00101{word-spacing:0.000000pt;}
._1_c00101{width:8.084736pt;}
._5_c00101{width:19.793664pt;}
._4_c00101{width:22.665843pt;}
._2_c00101{width:27.516333pt;}
._3_c00101{width:31.502592pt;}
._0_c00101{width:35.230976pt;}
.fs0_c00101{font-size:24.640000pt;}
.fs6_c00101{font-size:27.878400pt;}
.fs15_c00101{font-size:29.040000pt;}
.fs5_c00101{font-size:30.800000pt;}
.fs10_c00101{font-size:34.496000pt;}
.fsf_c00101{font-size:34.848000pt;}
.fs3_c00101{font-size:35.200000pt;}
.fsd_c00101{font-size:44.352176pt;}
.fs9_c00101{font-size:46.886576pt;}
.fse_c00101{font-size:49.420976pt;}
.fsb_c00101{font-size:53.222576pt;}
.fs13_c00101{font-size:54.736000pt;}
.fs14_c00101{font-size:56.496000pt;}
.fs7_c00101{font-size:61.600000pt;}
.fs4_c00101{font-size:64.768000pt;}
.fs12_c00101{font-size:66.176000pt;}
.fs8_c00101{font-size:67.936000pt;}
.fs2_c00101{font-size:69.696000pt;}
.fsc_c00101{font-size:70.048000pt;}
.fsa_c00101{font-size:72.336000pt;}
.fs1_c00101{font-size:76.384176pt;}
.fs11_c00101{font-size:81.312176pt;}
.y0_c00101{bottom:0.000000pt;}
.y26_c00101{bottom:41.739320pt;}
.y25_c00101{bottom:48.704520pt;}
.y1_c00101{bottom:68.000000pt;}
.y24_c00101{bottom:131.710520pt;}
.y23_c00101{bottom:187.784120pt;}
.y22_c00101{bottom:204.891320pt;}
.y21_c00101{bottom:216.608520pt;}
.y20_c00101{bottom:245.754120pt;}
.y1f_c00101{bottom:274.270520pt;}
.y1e_c00101{bottom:275.220920pt;}
.y1d_c00101{bottom:303.416120pt;}
.y1c_c00101{bottom:323.686920pt;}
.y1b_c00101{bottom:332.561720pt;}
.y1a_c00101{bottom:361.390520pt;}
.y19_c00101{bottom:390.848520pt;}
.y16_c00101{bottom:418.414520pt;}
.y18_c00101{bottom:419.048120pt;}
.y17_c00101{bottom:422.849720pt;}
.y15_c00101{bottom:447.560120pt;}
.y14_c00101{bottom:476.701320pt;}
.y13_c00101{bottom:504.896520pt;}
.y12_c00101{bottom:533.725320pt;}
.y11_c00101{bottom:562.870920pt;}
.y10_c00101{bottom:577.764920pt;}
.yf_c00101{bottom:591.699720pt;}
.y2_c00101{bottom:605.326520pt;}
.ye_c00101{bottom:621.483320pt;}
.yd_c00101{bottom:650.628920pt;}
.yc_c00101{bottom:679.136520pt;}
.yb_c00101{bottom:707.965320pt;}
.ya_c00101{bottom:737.432120pt;}
.y9_c00101{bottom:767.206920pt;}
.y5_c00101{bottom:813.776520pt;}
.y8_c00101{bottom:825.498120pt;}
.y4_c00101{bottom:828.982920pt;}
.y7_c00101{bottom:835.006520pt;}
.y6_c00101{bottom:846.094520pt;}
.y3_c00101{bottom:962.672520pt;}
.h8_c00101{height:18.567014pt;}
.h2_c00101{height:25.698750pt;}
.h18_c00101{height:28.501172pt;}
.hf_c00101{height:29.538549pt;}
.hb_c00101{height:31.226460pt;}
.h7_c00101{height:32.123438pt;}
.h10_c00101{height:32.914370pt;}
.h11_c00101{height:34.201406pt;}
.hd_c00101{height:35.446236pt;}
.h12_c00101{height:35.978250pt;}
.h5_c00101{height:36.712500pt;}
.h16_c00101{height:57.087938pt;}
.h17_c00101{height:58.923563pt;}
.h9_c00101{height:60.426953pt;}
.h6_c00101{height:63.566250pt;}
.h14_c00101{height:64.948125pt;}
.h4_c00101{height:68.402813pt;}
.he_c00101{height:68.748281pt;}
.ha_c00101{height:70.855125pt;}
.hc_c00101{height:70.958508pt;}
.h15_c00101{height:74.929595pt;}
.h3_c00101{height:74.966891pt;}
.h13_c00101{height:84.647246pt;}
.h1_c00101{height:986.666667pt;}
.h0_c00101{height:1122.666667pt;}
.w1_c00101{width:652.000000pt;}
.w0_c00101{width:793.333333pt;}
.x0_c00101{left:0.000000pt;}
.x2_c00101{left:35.397587pt;}
.x35_c00101{left:62.699587pt;}
.x25_c00101{left:63.645587pt;}
.x4_c00101{left:64.578387pt;}
.x58_c00101{left:67.218387pt;}
.x1_c00101{left:70.666667pt;}
.x1a_c00101{left:93.283987pt;}
.x46_c00101{left:94.489587pt;}
.x4f_c00101{left:104.037587pt;}
.xa_c00101{left:113.013587pt;}
.x56_c00101{left:114.808787pt;}
.x1b_c00101{left:123.687987pt;}
.x3e_c00101{left:133.191987pt;}
.x4a_c00101{left:134.089587pt;}
.x12_c00101{left:143.624387pt;}
.x3c_c00101{left:152.648787pt;}
.x5_c00101{left:162.632387pt;}
.x3f_c00101{left:171.669987pt;}
.x2d_c00101{left:172.783187pt;}
.xb_c00101{left:182.304787pt;}
.x44_c00101{left:183.338787pt;}
.x26_c00101{left:192.693187pt;}
.x5b_c00101{left:197.779587pt;}
.x6_c00101{left:202.271987pt;}
.x4b_c00101{left:209.848787pt;}
.x13_c00101{left:212.365587pt;}
.xc_c00101{left:222.340387pt;}
.x5c_c00101{left:232.706787pt;}
.x1c_c00101{left:241.863187pt;}
.xd_c00101{left:251.807187pt;}
.x27_c00101{left:261.509187pt;}
.x5d_c00101{left:262.411187pt;}
.x41_c00101{left:264.263587pt;}
.x1d_c00101{left:270.449987pt;}
.x2e_c00101{left:271.483987pt;}
.x36_c00101{left:281.784387pt;}
.x52_c00101{left:290.148787pt;}
.x2f_c00101{left:291.833987pt;}
.x28_c00101{left:300.180787pt;}
.xe_c00101{left:301.104787pt;}
.x4c_c00101{left:302.345587pt;}
.x14_c00101{left:311.849587pt;}
.x37_c00101{left:320.988387pt;}
.x5e_c00101{left:321.987187pt;}
.x1e_c00101{left:323.219187pt;}
.xf_c00101{left:331.029187pt;}
.x59_c00101{left:339.934787pt;}
.x15_c00101{left:341.003987pt;}
.x38_c00101{left:350.538787pt;}
.x47_c00101{left:352.039187pt;}
.x51_c00101{left:354.683587pt;}
.x42_c00101{left:361.798387pt;}
.x30_c00101{left:370.686387pt;}
.x49_c00101{left:379.499587pt;}
.x16_c00101{left:380.603987pt;}
.x1f_c00101{left:390.266387pt;}
.x29_c00101{left:392.246387pt;}
.x31_c00101{left:399.589987pt;}
.x43_c00101{left:409.657187pt;}
.x39_c00101{left:419.477987pt;}
.x54_c00101{left:420.538387pt;}
.x10_c00101{left:430.020387pt;}
.x5f_c00101{left:439.062387pt;}
.x20_c00101{left:440.157987pt;}
.x5a_c00101{left:448.240787pt;}
.x2a_c00101{left:449.679587pt;}
.x17_c00101{left:459.773187pt;}
.x32_c00101{left:468.203587pt;}
.x21_c00101{left:469.285987pt;}
.x40_c00101{left:478.983587pt;}
.x2b_c00101{left:489.244387pt;}
.x22_c00101{left:498.743987pt;}
.x45_c00101{left:507.499987pt;}
.x50_c00101{left:508.613187pt;}
.x7_c00101{left:514.385987pt;}
.x55_c00101{left:516.981987pt;}
.x60_c00101{left:517.989587pt;}
.x3a_c00101{left:518.997187pt;}
.x33_c00101{left:526.529987pt;}
.x57_c00101{left:527.739987pt;}
.x18_c00101{left:537.433187pt;}
.x48_c00101{left:538.352787pt;}
.x11_c00101{left:547.544387pt;}
.x23_c00101{left:557.395987pt;}
.x34_c00101{left:567.111187pt;}
.x19_c00101{left:568.149587pt;}
.x3_c00101{left:577.618387pt;}
.x24_c00101{left:587.161987pt;}
.x2c_c00101{left:588.275187pt;}
.x3b_c00101{left:608.937587pt;}
.x61_c00101{left:610.231187pt;}
.x4e_c00101{left:611.617187pt;}
.x4d_c00101{left:612.607187pt;}
.x3d_c00101{left:613.557587pt;}
.x8_c00101{left:616.241587pt;}
.x9_c00101{left:617.623187pt;}
.x53_c00101{left:626.431987pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_130127eedaf6938b7eadec50.woff2')format("woff");}.ff1_c00102{font-family:ff1_c00102;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00102;src:url('chunks/assets/font_fe9ba906de90875f8d001a97.woff2')format("woff");}.ff2_c00102{font-family:ff2_c00102;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00102;src:url('chunks/assets/font_72226a38bfff7d5757465a1e.woff2')format("woff");}.ff3_c00102{font-family:ff3_c00102;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00102;src:url('chunks/assets/font_a2509d8024d291aa9577364e.woff2')format("woff");}.ff4_c00102{font-family:ff4_c00102;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00102;src:url('chunks/assets/font_7723c6fa6b22ddd46716b19a.woff2')format("woff");}.ff5_c00102{font-family:ff5_c00102;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3d_c00102{transform:matrix(0.176388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176388,0.000000,0.000000,0.250000,0,0);}
.m34_c00102{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00102{transform:matrix(0.203755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203755,0.000000,0.000000,0.250000,0,0);}
.ma4_c00102{transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);}
.m50_c00102{transform:matrix(0.232032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232032,0.000000,0.000000,0.250000,0,0);}
.m0_c00102{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m73_c00102{transform:matrix(0.253985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253985,0.000000,0.000000,0.250000,0,0);}
.m67_c00102{transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);}
.m1a_c00102{transform:matrix(0.255241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255241,0.000000,0.000000,0.250000,0,0);}
.m12_c00102{transform:matrix(0.256368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256368,0.000000,0.000000,0.250000,0,0);}
.m9b_c00102{transform:matrix(0.256552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256552,0.000000,0.000000,0.250000,0,0);}
.m29_c00102{transform:matrix(0.257128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257128,0.000000,0.000000,0.250000,0,0);}
.m9_c00102{transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);}
.ma0_c00102{transform:matrix(0.258030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258030,0.000000,0.000000,0.250000,0,0);}
.m4_c00102{transform:matrix(0.258620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258620,0.000000,0.000000,0.250000,0,0);}
.maa_c00102{transform:matrix(0.259641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259641,0.000000,0.000000,0.250000,0,0);}
.m85_c00102{transform:matrix(0.260644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260644,0.000000,0.000000,0.250000,0,0);}
.m76_c00102{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m8a_c00102{transform:matrix(0.261462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261462,0.000000,0.000000,0.250000,0,0);}
.m75_c00102{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.maf_c00102{transform:matrix(0.261717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261717,0.000000,0.000000,0.250000,0,0);}
.ma9_c00102{transform:matrix(0.262539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262539,0.000000,0.000000,0.250000,0,0);}
.m17_c00102{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m31_c00102{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m10_c00102{transform:matrix(0.264732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264732,0.000000,0.000000,0.250000,0,0);}
.m14_c00102{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m99_c00102{transform:matrix(0.266830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266830,0.000000,0.000000,0.250000,0,0);}
.m6d_c00102{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.m8c_c00102{transform:matrix(0.267013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267013,0.000000,0.000000,0.250000,0,0);}
.m8_c00102{transform:matrix(0.267077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267077,0.000000,0.000000,0.250000,0,0);}
.m5_c00102{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m93_c00102{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.m39_c00102{transform:matrix(0.269722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269722,0.000000,0.000000,0.250000,0,0);}
.m53_c00102{transform:matrix(0.270610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270610,0.000000,0.000000,0.250000,0,0);}
.m2f_c00102{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m35_c00102{transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);}
.m81_c00102{transform:matrix(0.272184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272184,0.000000,0.000000,0.250000,0,0);}
.m3f_c00102{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m84_c00102{transform:matrix(0.273449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273449,0.000000,0.000000,0.250000,0,0);}
.m8e_c00102{transform:matrix(0.274030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274030,0.000000,0.000000,0.250000,0,0);}
.m63_c00102{transform:matrix(0.274218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274218,0.000000,0.000000,0.250000,0,0);}
.m56_c00102{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m86_c00102{transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);}
.m5e_c00102{transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);}
.m7d_c00102{transform:matrix(0.277360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277360,0.000000,0.000000,0.250000,0,0);}
.m27_c00102{transform:matrix(0.279513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279513,0.000000,0.000000,0.250000,0,0);}
.m66_c00102{transform:matrix(0.279920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279920,0.000000,0.000000,0.250000,0,0);}
.m32_c00102{transform:matrix(0.280040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280040,0.000000,0.000000,0.250000,0,0);}
.m9e_c00102{transform:matrix(0.280163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280163,0.000000,0.000000,0.250000,0,0);}
.m6b_c00102{transform:matrix(0.280566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280566,0.000000,0.000000,0.250000,0,0);}
.m6a_c00102{transform:matrix(0.280664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280664,0.000000,0.000000,0.250000,0,0);}
.m37_c00102{transform:matrix(0.281104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281104,0.000000,0.000000,0.250000,0,0);}
.m6e_c00102{transform:matrix(0.281937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281937,0.000000,0.000000,0.250000,0,0);}
.m28_c00102{transform:matrix(0.282715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282715,0.000000,0.000000,0.250000,0,0);}
.m59_c00102{transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);}
.m1d_c00102{transform:matrix(0.283092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283092,0.000000,0.000000,0.250000,0,0);}
.m64_c00102{transform:matrix(0.283130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283130,0.000000,0.000000,0.250000,0,0);}
.m8d_c00102{transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);}
.m3a_c00102{transform:matrix(0.284987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284987,0.000000,0.000000,0.250000,0,0);}
.m23_c00102{transform:matrix(0.285386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285386,0.000000,0.000000,0.250000,0,0);}
.ma3_c00102{transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);}
.m3e_c00102{transform:matrix(0.285989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285989,0.000000,0.000000,0.250000,0,0);}
.m54_c00102{transform:matrix(0.286764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286764,0.000000,0.000000,0.250000,0,0);}
.m96_c00102{transform:matrix(0.286926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286926,0.000000,0.000000,0.250000,0,0);}
.m5c_c00102{transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);}
.m22_c00102{transform:matrix(0.287247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287247,0.000000,0.000000,0.250000,0,0);}
.m5d_c00102{transform:matrix(0.287830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287830,0.000000,0.000000,0.250000,0,0);}
.m2c_c00102{transform:matrix(0.288806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288806,0.000000,0.000000,0.250000,0,0);}
.mab_c00102{transform:matrix(0.289122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289122,0.000000,0.000000,0.250000,0,0);}
.m5b_c00102{transform:matrix(0.289601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289601,0.000000,0.000000,0.250000,0,0);}
.m89_c00102{transform:matrix(0.289956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289956,0.000000,0.000000,0.250000,0,0);}
.mc_c00102{transform:matrix(0.290336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290336,0.000000,0.000000,0.250000,0,0);}
.m43_c00102{transform:matrix(0.290479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290479,0.000000,0.000000,0.250000,0,0);}
.m8f_c00102{transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);}
.m7b_c00102{transform:matrix(0.290586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290586,0.000000,0.000000,0.250000,0,0);}
.m78_c00102{transform:matrix(0.290852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290852,0.000000,0.000000,0.250000,0,0);}
.mad_c00102{transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);}
.m36_c00102{transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);}
.m18_c00102{transform:matrix(0.292334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292334,0.000000,0.000000,0.250000,0,0);}
.m4a_c00102{transform:matrix(0.292497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292497,0.000000,0.000000,0.250000,0,0);}
.m52_c00102{transform:matrix(0.292643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292643,0.000000,0.000000,0.250000,0,0);}
.mb2_c00102{transform:matrix(0.293077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293077,0.000000,0.000000,0.250000,0,0);}
.m2d_c00102{transform:matrix(0.294898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294898,0.000000,0.000000,0.250000,0,0);}
.m24_c00102{transform:matrix(0.294965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294965,0.000000,0.000000,0.250000,0,0);}
.m82_c00102{transform:matrix(0.295122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295122,0.000000,0.000000,0.250000,0,0);}
.m2_c00102{transform:matrix(0.295952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295952,0.000000,0.000000,0.250000,0,0);}
.m71_c00102{transform:matrix(0.296237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296237,0.000000,0.000000,0.250000,0,0);}
.m88_c00102{transform:matrix(0.296313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296313,0.000000,0.000000,0.250000,0,0);}
.m77_c00102{transform:matrix(0.296369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296369,0.000000,0.000000,0.250000,0,0);}
.m1_c00102{transform:matrix(0.296478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296478,0.000000,0.000000,0.250000,0,0);}
.m95_c00102{transform:matrix(0.296518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296518,0.000000,0.000000,0.250000,0,0);}
.m3c_c00102{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m33_c00102{transform:matrix(0.298309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298309,0.000000,0.000000,0.250000,0,0);}
.m97_c00102{transform:matrix(0.298698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298698,0.000000,0.000000,0.250000,0,0);}
.m44_c00102{transform:matrix(0.298758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298758,0.000000,0.000000,0.250000,0,0);}
.ma6_c00102{transform:matrix(0.298899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298899,0.000000,0.000000,0.250000,0,0);}
.m48_c00102{transform:matrix(0.298934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298934,0.000000,0.000000,0.250000,0,0);}
.m2e_c00102{transform:matrix(0.299146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299146,0.000000,0.000000,0.250000,0,0);}
.mb0_c00102{transform:matrix(0.299776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299776,0.000000,0.000000,0.250000,0,0);}
.m6f_c00102{transform:matrix(0.299934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299934,0.000000,0.000000,0.250000,0,0);}
.m9c_c00102{transform:matrix(0.299977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299977,0.000000,0.000000,0.250000,0,0);}
.m83_c00102{transform:matrix(0.300052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300052,0.000000,0.000000,0.250000,0,0);}
.m40_c00102{transform:matrix(0.300516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300516,0.000000,0.000000,0.250000,0,0);}
.ma2_c00102{transform:matrix(0.300970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300970,0.000000,0.000000,0.250000,0,0);}
.m1c_c00102{transform:matrix(0.300973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300973,0.000000,0.000000,0.250000,0,0);}
.m16_c00102{transform:matrix(0.301809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301809,0.000000,0.000000,0.250000,0,0);}
.m11_c00102{transform:matrix(0.301847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301847,0.000000,0.000000,0.250000,0,0);}
.ma1_c00102{transform:matrix(0.302375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302375,0.000000,0.000000,0.250000,0,0);}
.m58_c00102{transform:matrix(0.302461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302461,0.000000,0.000000,0.250000,0,0);}
.me_c00102{transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);}
.m19_c00102{transform:matrix(0.303459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303459,0.000000,0.000000,0.250000,0,0);}
.m25_c00102{transform:matrix(0.303838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303838,0.000000,0.000000,0.250000,0,0);}
.m3b_c00102{transform:matrix(0.304104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304104,0.000000,0.000000,0.250000,0,0);}
.m7c_c00102{transform:matrix(0.304188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304188,0.000000,0.000000,0.250000,0,0);}
.m38_c00102{transform:matrix(0.304191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304191,0.000000,0.000000,0.250000,0,0);}
.m26_c00102{transform:matrix(0.304860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304860,0.000000,0.000000,0.250000,0,0);}
.m98_c00102{transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);}
.m7a_c00102{transform:matrix(0.305114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305114,0.000000,0.000000,0.250000,0,0);}
.m8b_c00102{transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);}
.ma7_c00102{transform:matrix(0.306511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306511,0.000000,0.000000,0.250000,0,0);}
.mb1_c00102{transform:matrix(0.306720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306720,0.000000,0.000000,0.250000,0,0);}
.m4b_c00102{transform:matrix(0.307550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307550,0.000000,0.000000,0.250000,0,0);}
.m7_c00102{transform:matrix(0.307938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307938,0.000000,0.000000,0.250000,0,0);}
.m4c_c00102{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m94_c00102{transform:matrix(0.309780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309780,0.000000,0.000000,0.250000,0,0);}
.m7f_c00102{transform:matrix(0.310875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310875,0.000000,0.000000,0.250000,0,0);}
.mae_c00102{transform:matrix(0.311023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311023,0.000000,0.000000,0.250000,0,0);}
.m6c_c00102{transform:matrix(0.311353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311353,0.000000,0.000000,0.250000,0,0);}
.m72_c00102{transform:matrix(0.311496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311496,0.000000,0.000000,0.250000,0,0);}
.mf_c00102{transform:matrix(0.311606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311606,0.000000,0.000000,0.250000,0,0);}
.m45_c00102{transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);}
.mb_c00102{transform:matrix(0.312229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312229,0.000000,0.000000,0.250000,0,0);}
.m55_c00102{transform:matrix(0.312330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312330,0.000000,0.000000,0.250000,0,0);}
.m6_c00102{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.m57_c00102{transform:matrix(0.312852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312852,0.000000,0.000000,0.250000,0,0);}
.m92_c00102{transform:matrix(0.314182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314182,0.000000,0.000000,0.250000,0,0);}
.m4f_c00102{transform:matrix(0.314376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314376,0.000000,0.000000,0.250000,0,0);}
.mac_c00102{transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);}
.m7e_c00102{transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);}
.m79_c00102{transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);}
.m1e_c00102{transform:matrix(0.316967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316967,0.000000,0.000000,0.250000,0,0);}
.m4d_c00102{transform:matrix(0.317333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317333,0.000000,0.000000,0.250000,0,0);}
.m9f_c00102{transform:matrix(0.317662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317662,0.000000,0.000000,0.250000,0,0);}
.m20_c00102{transform:matrix(0.317927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317927,0.000000,0.000000,0.250000,0,0);}
.m41_c00102{transform:matrix(0.317996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317996,0.000000,0.000000,0.250000,0,0);}
.m9a_c00102{transform:matrix(0.318082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318082,0.000000,0.000000,0.250000,0,0);}
.m68_c00102{transform:matrix(0.318306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318306,0.000000,0.000000,0.250000,0,0);}
.m69_c00102{transform:matrix(0.318980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318980,0.000000,0.000000,0.250000,0,0);}
.m46_c00102{transform:matrix(0.319808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319808,0.000000,0.000000,0.250000,0,0);}
.m42_c00102{transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);}
.m62_c00102{transform:matrix(0.320455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320455,0.000000,0.000000,0.250000,0,0);}
.m80_c00102{transform:matrix(0.322251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322251,0.000000,0.000000,0.250000,0,0);}
.m5f_c00102{transform:matrix(0.322595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322595,0.000000,0.000000,0.250000,0,0);}
.m60_c00102{transform:matrix(0.325353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325353,0.000000,0.000000,0.250000,0,0);}
.m47_c00102{transform:matrix(0.326501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326501,0.000000,0.000000,0.250000,0,0);}
.m4e_c00102{transform:matrix(0.326791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326791,0.000000,0.000000,0.250000,0,0);}
.m1f_c00102{transform:matrix(0.326944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326944,0.000000,0.000000,0.250000,0,0);}
.m49_c00102{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.m90_c00102{transform:matrix(0.327730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327730,0.000000,0.000000,0.250000,0,0);}
.m2a_c00102{transform:matrix(0.327741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327741,0.000000,0.000000,0.250000,0,0);}
.m9d_c00102{transform:matrix(0.327911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327911,0.000000,0.000000,0.250000,0,0);}
.m70_c00102{transform:matrix(0.329208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329208,0.000000,0.000000,0.250000,0,0);}
.m3_c00102{transform:matrix(0.330225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330225,0.000000,0.000000,0.250000,0,0);}
.m5a_c00102{transform:matrix(0.333227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333227,0.000000,0.000000,0.250000,0,0);}
.m87_c00102{transform:matrix(0.338217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338217,0.000000,0.000000,0.250000,0,0);}
.ma_c00102{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.ma5_c00102{transform:matrix(0.341309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341309,0.000000,0.000000,0.250000,0,0);}
.m1b_c00102{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.m51_c00102{transform:matrix(0.344230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344230,0.000000,0.000000,0.250000,0,0);}
.m13_c00102{transform:matrix(0.344852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344852,0.000000,0.000000,0.250000,0,0);}
.m91_c00102{transform:matrix(0.346132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346132,0.000000,0.000000,0.250000,0,0);}
.m74_c00102{transform:matrix(0.349110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349110,0.000000,0.000000,0.250000,0,0);}
.m61_c00102{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m15_c00102{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.md_c00102{transform:matrix(0.360614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360614,0.000000,0.000000,0.250000,0,0);}
.m21_c00102{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.ma8_c00102{transform:matrix(0.366851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366851,0.000000,0.000000,0.250000,0,0);}
.m65_c00102{transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);}
.m30_c00102{transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);}
.v1_c00102{vertical-align:-44.173800px;}
.v0_c00102{vertical-align:0.000000px;}
.ls5_c00102{letter-spacing:-2.744280px;}
.ls4_c00102{letter-spacing:-1.427026px;}
.ls1_c00102{letter-spacing:0.000000px;}
.ls0_c00102{letter-spacing:1.246687px;}
.ls6_c00102{letter-spacing:2.132698px;}
.ls9_c00102{letter-spacing:2.970000px;}
.lsd_c00102{letter-spacing:2.979504px;}
.lsa_c00102{letter-spacing:3.246091px;}
.lsb_c00102{letter-spacing:3.356110px;}
.ls2_c00102{letter-spacing:3.712500px;}
.lsc_c00102{letter-spacing:3.801610px;}
.ls3_c00102{letter-spacing:3.920400px;}
.ls8_c00102{letter-spacing:51.321798px;}
.ls7_c00102{letter-spacing:54.172998px;}
.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;}
._4_c00102{width:7.606368px;}
._0_c00102{width:10.585080px;}
._2_c00102{width:13.094136px;}
._3_c00102{width:20.856528px;}
._1_c00102{width:22.267872px;}
._7_c00102{width:24.620112px;}
._5_c00102{width:26.501904px;}
._6_c00102{width:37.870272px;}
._8_c00102{width:40.205563px;}
._9_c00102{width:1735.129440px;}
.fc0_c00102{color:transparent;}
.fs6_c00102{font-size:19.800000px;}
.fs9_c00102{font-size:22.176000px;}
.fsa_c00102{font-size:25.344000px;}
.fsc_c00102{font-size:27.720000px;}
.fsb_c00102{font-size:38.808000px;}
.fs0_c00102{font-size:39.204000px;}
.fs10_c00102{font-size:45.144000px;}
.fs4_c00102{font-size:51.321798px;}
.fs3_c00102{font-size:54.172998px;}
.fsd_c00102{font-size:56.430000px;}
.fs5_c00102{font-size:59.400000px;}
.fs8_c00102{font-size:67.122198px;}
.fsf_c00102{font-size:72.864000px;}
.fs1_c00102{font-size:74.250000px;}
.fs7_c00102{font-size:74.844000px;}
.fse_c00102{font-size:76.032198px;}
.fs2_c00102{font-size:78.408000px;}
.y0_c00102{bottom:0.000000px;}
.y2_c00102{bottom:26.641935px;}
.y26_c00102{bottom:45.526185px;}
.y25_c00102{bottom:48.377385px;}
.y24_c00102{bottom:55.861785px;}
.y1_c00102{bottom:76.500000px;}
.y23_c00102{bottom:86.868585px;}
.y22_c00102{bottom:112.534335px;}
.y21_c00102{bottom:115.029135px;}
.y20_c00102{bottom:119.662335px;}
.y1f_c00102{bottom:145.323135px;}
.y1e_c00102{bottom:175.612185px;}
.y1d_c00102{bottom:226.933785px;}
.y1c_c00102{bottom:268.632585px;}
.y1b_c00102{bottom:272.909385px;}
.y1a_c00102{bottom:286.813935px;}
.y19_c00102{bottom:305.698185px;}
.y18_c00102{bottom:319.959135px;}
.y17_c00102{bottom:338.130585px;}
.y16_c00102{bottom:370.919385px;}
.y15_c00102{bottom:404.782335px;}
.y14_c00102{bottom:437.922585px;}
.y13_c00102{bottom:470.003535px;}
.y12_c00102{bottom:501.718185px;}
.y11_c00102{bottom:533.799135px;}
.y10_c00102{bottom:566.231535px;}
.yf_c00102{bottom:598.658985px;}
.ye_c00102{bottom:624.324735px;}
.yd_c00102{bottom:631.091385px;}
.yc_c00102{bottom:663.172335px;}
.yb_c00102{bottom:695.604735px;}
.ya_c00102{bottom:729.462735px;}
.y9_c00102{bottom:762.251535px;}
.y8_c00102{bottom:795.396735px;}
.y7_c00102{bottom:828.893385px;}
.y6_c00102{bottom:861.325785px;}
.y5_c00102{bottom:894.832335px;}
.y4_c00102{bottom:927.621135px;}
.y3_c00102{bottom:1081.580985px;}
.h8_c00102{height:20.650781px;}
.hb_c00102{height:23.128875px;}
.hc_c00102{height:24.873750px;}
.he_c00102{height:28.911094px;}
.h6_c00102{height:34.180317px;}
.h5_c00102{height:36.079217px;}
.h2_c00102{height:38.476582px;}
.hd_c00102{height:40.475531px;}
.h11_c00102{height:47.083781px;}
.h7_c00102{height:61.952344px;}
.ha_c00102{height:70.006355px;}
.h10_c00102{height:71.512031px;}
.h3_c00102{height:72.872314px;}
.h9_c00102{height:73.455293px;}
.hf_c00102{height:76.626200px;}
.h4_c00102{height:76.953164px;}
.h1_c00102{height:1110.000000px;}
.h0_c00102{height:1263.000000px;}
.w1_c00102{width:733.500000px;}
.w0_c00102{width:892.500000px;}
.x0_c00102{left:0.000000px;}
.x2_c00102{left:38.347185px;}
.x24_c00102{left:68.027385px;}
.x4_c00102{left:69.116385px;}
.x31_c00102{left:70.244985px;}
.x6e_c00102{left:72.031935px;}
.x1_c00102{left:79.500000px;}
.x5b_c00102{left:91.990335px;}
.x32_c00102{left:101.236935px;}
.x47_c00102{left:103.132785px;}
.x5f_c00102{left:104.226735px;}
.x2a_c00102{left:113.498085px;}
.x14_c00102{left:114.547485px;}
.x57_c00102{left:115.616685px;}
.x6c_c00102{left:126.729435px;}
.xe_c00102{left:134.015835px;}
.x1d_c00102{left:135.253335px;}
.x48_c00102{left:136.312635px;}
.x42_c00102{left:138.381735px;}
.x15_c00102{left:146.603685px;}
.x58_c00102{left:147.677835px;}
.x5_c00102{left:157.983735px;}
.x1e_c00102{left:169.378635px;}
.x63_c00102{left:170.527035px;}
.x16_c00102{left:179.308335px;}
.x39_c00102{left:180.456735px;}
.x68_c00102{left:182.228835px;}
.x59_c00102{left:192.920835px;}
.x6f_c00102{left:194.024685px;}
.x25_c00102{left:201.860535px;}
.x33_c00102{left:214.676085px;}
.x62_c00102{left:222.323835px;}
.x1f_c00102{left:224.650335px;}
.x2b_c00102{left:225.709635px;}
.x70_c00102{left:226.838235px;}
.xf_c00102{left:235.263135px;}
.x60_c00102{left:237.495585px;}
.x6b_c00102{left:244.752285px;}
.x3a_c00102{left:247.860885px;}
.x71_c00102{left:248.900385px;}
.x3b_c00102{left:258.359835px;}
.x50_c00102{left:259.567635px;}
.x6_c00102{left:268.022235px;}
.x38_c00102{left:269.799285px;}
.x72_c00102{left:272.101035px;}
.x29_c00102{left:280.991235px;}
.x10_c00102{left:291.292185px;}
.x17_c00102{left:302.395035px;}
.x7_c00102{left:313.438485px;}
.x61_c00102{left:314.507685px;}
.x43_c00102{left:326.239185px;}
.x18_c00102{left:335.767935px;}
.x64_c00102{left:337.599435px;}
.x8_c00102{left:346.930185px;}
.x51_c00102{left:348.593385px;}
.x34_c00102{left:358.344885px;}
.x44_c00102{left:359.706135px;}
.x20_c00102{left:369.764535px;}
.x49_c00102{left:370.789185px;}
.x5a_c00102{left:371.823735px;}
.x19_c00102{left:380.317935px;}
.x52_c00102{left:382.174185px;}
.x9_c00102{left:390.569385px;}
.x35_c00102{left:392.202885px;}
.x6d_c00102{left:393.272085px;}
.x3c_c00102{left:403.563135px;}
.x2c_c00102{left:414.106635px;}
.x5c_c00102{left:415.368885px;}
.x11_c00102{left:424.625385px;}
.x4e_c00102{left:425.645085px;}
.x73_c00102{left:427.085535px;}
.x4a_c00102{left:436.317285px;}
.x65_c00102{left:438.153735px;}
.x36_c00102{left:446.969685px;}
.x26_c00102{left:458.503185px;}
.xa_c00102{left:467.918085px;}
.x4f_c00102{left:469.353585px;}
.x66_c00102{left:470.883135px;}
.x2d_c00102{left:480.050535px;}
.x53_c00102{left:482.015685px;}
.x21_c00102{left:490.722735px;}
.x12_c00102{left:502.112685px;}
.x54_c00102{left:503.711535px;}
.x74_c00102{left:505.156935px;}
.x1a_c00102{left:513.829335px;}
.x22_c00102{left:523.561035px;}
.x2e_c00102{left:525.852885px;}
.x3d_c00102{left:536.153835px;}
.x55_c00102{left:537.574485px;}
.xb_c00102{left:546.890385px;}
.x37_c00102{left:547.934835px;}
.x5d_c00102{left:548.944635px;}
.x45_c00102{left:557.419035px;}
.x2f_c00102{left:558.626835px;}
.x4b_c00102{left:569.566335px;}
.x1b_c00102{left:579.189135px;}
.x3e_c00102{left:580.550385px;}
.x13_c00102{left:589.806885px;}
.xc_c00102{left:591.346335px;}
.x69_c00102{left:592.796685px;}
.x46_c00102{left:603.018435px;}
.x40_c00102{left:604.889535px;}
.x23_c00102{left:613.482735px;}
.x27_c00102{left:622.996635px;}
.xd_c00102{left:624.169785px;}
.x30_c00102{left:625.590435px;}
.x41_c00102{left:634.658835px;}
.x3_c00102{left:635.921085px;}
.x56_c00102{left:636.970485px;}
.x1c_c00102{left:646.489335px;}
.x4c_c00102{left:647.692185px;}
.x3f_c00102{left:658.433685px;}
.x28_c00102{left:669.130635px;}
.x5e_c00102{left:671.793735px;}
.x4d_c00102{left:682.728285px;}
.x75_c00102{left:684.148935px;}
.x76_c00102{left:685.262685px;}
.x67_c00102{left:690.361185px;}
.x6a_c00102{left:692.974785px;}
@media print{
.v1_c00102{vertical-align:-39.265600pt;}
.v0_c00102{vertical-align:0.000000pt;}
.ls5_c00102{letter-spacing:-2.439360pt;}
.ls4_c00102{letter-spacing:-1.268467pt;}
.ls1_c00102{letter-spacing:0.000000pt;}
.ls0_c00102{letter-spacing:1.108166pt;}
.ls6_c00102{letter-spacing:1.895731pt;}
.ls9_c00102{letter-spacing:2.640000pt;}
.lsd_c00102{letter-spacing:2.648448pt;}
.lsa_c00102{letter-spacing:2.885414pt;}
.lsb_c00102{letter-spacing:2.983209pt;}
.ls2_c00102{letter-spacing:3.300000pt;}
.lsc_c00102{letter-spacing:3.379209pt;}
.ls3_c00102{letter-spacing:3.484800pt;}
.ls8_c00102{letter-spacing:45.619376pt;}
.ls7_c00102{letter-spacing:48.153776pt;}
.ws0_c00102{word-spacing:0.000000pt;}
._4_c00102{width:6.761216pt;}
._0_c00102{width:9.408960pt;}
._2_c00102{width:11.639232pt;}
._3_c00102{width:18.539136pt;}
._1_c00102{width:19.793664pt;}
._7_c00102{width:21.884544pt;}
._5_c00102{width:23.557248pt;}
._6_c00102{width:33.662464pt;}
._8_c00102{width:35.738278pt;}
._9_c00102{width:1542.337280pt;}
.fs6_c00102{font-size:17.600000pt;}
.fs9_c00102{font-size:19.712000pt;}
.fsa_c00102{font-size:22.528000pt;}
.fsc_c00102{font-size:24.640000pt;}
.fsb_c00102{font-size:34.496000pt;}
.fs0_c00102{font-size:34.848000pt;}
.fs10_c00102{font-size:40.128000pt;}
.fs4_c00102{font-size:45.619376pt;}
.fs3_c00102{font-size:48.153776pt;}
.fsd_c00102{font-size:50.160000pt;}
.fs5_c00102{font-size:52.800000pt;}
.fs8_c00102{font-size:59.664176pt;}
.fsf_c00102{font-size:64.768000pt;}
.fs1_c00102{font-size:66.000000pt;}
.fs7_c00102{font-size:66.528000pt;}
.fse_c00102{font-size:67.584176pt;}
.fs2_c00102{font-size:69.696000pt;}
.y0_c00102{bottom:0.000000pt;}
.y2_c00102{bottom:23.681720pt;}
.y26_c00102{bottom:40.467720pt;}
.y25_c00102{bottom:43.002120pt;}
.y24_c00102{bottom:49.654920pt;}
.y1_c00102{bottom:68.000000pt;}
.y23_c00102{bottom:77.216520pt;}
.y22_c00102{bottom:100.030520pt;}
.y21_c00102{bottom:102.248120pt;}
.y20_c00102{bottom:106.366520pt;}
.y1f_c00102{bottom:129.176120pt;}
.y1e_c00102{bottom:156.099720pt;}
.y1d_c00102{bottom:201.718920pt;}
.y1c_c00102{bottom:238.784520pt;}
.y1b_c00102{bottom:242.586120pt;}
.y1a_c00102{bottom:254.945720pt;}
.y19_c00102{bottom:271.731720pt;}
.y18_c00102{bottom:284.408120pt;}
.y17_c00102{bottom:300.560520pt;}
.y16_c00102{bottom:329.706120pt;}
.y15_c00102{bottom:359.806520pt;}
.y14_c00102{bottom:389.264520pt;}
.y13_c00102{bottom:417.780920pt;}
.y12_c00102{bottom:445.971720pt;}
.y11_c00102{bottom:474.488120pt;}
.y10_c00102{bottom:503.316920pt;}
.yf_c00102{bottom:532.141320pt;}
.ye_c00102{bottom:554.955320pt;}
.yd_c00102{bottom:560.970120pt;}
.yc_c00102{bottom:589.486520pt;}
.yb_c00102{bottom:618.315320pt;}
.ya_c00102{bottom:648.411320pt;}
.y9_c00102{bottom:677.556920pt;}
.y8_c00102{bottom:707.019320pt;}
.y7_c00102{bottom:736.794120pt;}
.y6_c00102{bottom:765.622920pt;}
.y5_c00102{bottom:795.406520pt;}
.y4_c00102{bottom:824.552120pt;}
.y3_c00102{bottom:961.405320pt;}
.h8_c00102{height:18.356250pt;}
.hb_c00102{height:20.559000pt;}
.hc_c00102{height:22.110000pt;}
.he_c00102{height:25.698750pt;}
.h6_c00102{height:30.382504pt;}
.h5_c00102{height:32.070415pt;}
.h2_c00102{height:34.201406pt;}
.hd_c00102{height:35.978250pt;}
.h11_c00102{height:41.852250pt;}
.h7_c00102{height:55.068750pt;}
.ha_c00102{height:62.227871pt;}
.h10_c00102{height:63.566250pt;}
.h3_c00102{height:64.775391pt;}
.h9_c00102{height:65.293594pt;}
.hf_c00102{height:68.112177pt;}
.h4_c00102{height:68.402813pt;}
.h1_c00102{height:986.666667pt;}
.h0_c00102{height:1122.666667pt;}
.w1_c00102{width:652.000000pt;}
.w0_c00102{width:793.333333pt;}
.x0_c00102{left:0.000000pt;}
.x2_c00102{left:34.086387pt;}
.x24_c00102{left:60.468787pt;}
.x4_c00102{left:61.436787pt;}
.x31_c00102{left:62.439987pt;}
.x6e_c00102{left:64.028387pt;}
.x1_c00102{left:70.666667pt;}
.x5b_c00102{left:81.769187pt;}
.x32_c00102{left:89.988387pt;}
.x47_c00102{left:91.673587pt;}
.x5f_c00102{left:92.645987pt;}
.x2a_c00102{left:100.887187pt;}
.x14_c00102{left:101.819987pt;}
.x57_c00102{left:102.770387pt;}
.x6c_c00102{left:112.648387pt;}
.xe_c00102{left:119.125187pt;}
.x1d_c00102{left:120.225187pt;}
.x48_c00102{left:121.166787pt;}
.x42_c00102{left:123.005987pt;}
.x15_c00102{left:130.314387pt;}
.x58_c00102{left:131.269187pt;}
.x5_c00102{left:140.429987pt;}
.x1e_c00102{left:150.558787pt;}
.x63_c00102{left:151.579587pt;}
.x16_c00102{left:159.385187pt;}
.x39_c00102{left:160.405987pt;}
.x68_c00102{left:161.981187pt;}
.x59_c00102{left:171.485187pt;}
.x6f_c00102{left:172.466387pt;}
.x25_c00102{left:179.431587pt;}
.x33_c00102{left:190.823187pt;}
.x62_c00102{left:197.621187pt;}
.x1f_c00102{left:199.689187pt;}
.x2b_c00102{left:200.630787pt;}
.x70_c00102{left:201.633987pt;}
.xf_c00102{left:209.122787pt;}
.x60_c00102{left:211.107187pt;}
.x6b_c00102{left:217.557587pt;}
.x3a_c00102{left:220.320787pt;}
.x71_c00102{left:221.244787pt;}
.x3b_c00102{left:229.653187pt;}
.x50_c00102{left:230.726787pt;}
.x6_c00102{left:238.241987pt;}
.x38_c00102{left:239.821587pt;}
.x72_c00102{left:241.867587pt;}
.x29_c00102{left:249.769987pt;}
.x10_c00102{left:258.926387pt;}
.x17_c00102{left:268.795587pt;}
.x7_c00102{left:278.611987pt;}
.x61_c00102{left:279.562387pt;}
.x43_c00102{left:289.990387pt;}
.x18_c00102{left:298.460387pt;}
.x64_c00102{left:300.088387pt;}
.x8_c00102{left:308.382387pt;}
.x51_c00102{left:309.860787pt;}
.x34_c00102{left:318.528787pt;}
.x44_c00102{left:319.738787pt;}
.x20_c00102{left:328.679587pt;}
.x49_c00102{left:329.590387pt;}
.x5a_c00102{left:330.509987pt;}
.x19_c00102{left:338.060387pt;}
.x52_c00102{left:339.710387pt;}
.x9_c00102{left:347.172787pt;}
.x35_c00102{left:348.624787pt;}
.x6d_c00102{left:349.575187pt;}
.x3c_c00102{left:358.722787pt;}
.x2c_c00102{left:368.094787pt;}
.x5c_c00102{left:369.216787pt;}
.x11_c00102{left:377.444787pt;}
.x4e_c00102{left:378.351187pt;}
.x73_c00102{left:379.631587pt;}
.x4a_c00102{left:387.837587pt;}
.x65_c00102{left:389.469987pt;}
.x36_c00102{left:397.306387pt;}
.x26_c00102{left:407.558387pt;}
.xa_c00102{left:415.927187pt;}
.x4f_c00102{left:417.203187pt;}
.x66_c00102{left:418.562787pt;}
.x2d_c00102{left:426.711587pt;}
.x53_c00102{left:428.458387pt;}
.x21_c00102{left:436.197987pt;}
.x12_c00102{left:446.322387pt;}
.x54_c00102{left:447.743587pt;}
.x74_c00102{left:449.028387pt;}
.x1a_c00102{left:456.737187pt;}
.x22_c00102{left:465.387587pt;}
.x2e_c00102{left:467.424787pt;}
.x3d_c00102{left:476.581187pt;}
.x55_c00102{left:477.843987pt;}
.xb_c00102{left:486.124787pt;}
.x37_c00102{left:487.053187pt;}
.x5d_c00102{left:487.950787pt;}
.x45_c00102{left:495.483587pt;}
.x2f_c00102{left:496.557187pt;}
.x4b_c00102{left:506.281187pt;}
.x1b_c00102{left:514.834787pt;}
.x3e_c00102{left:516.044787pt;}
.x13_c00102{left:524.272787pt;}
.xc_c00102{left:525.641187pt;}
.x69_c00102{left:526.930387pt;}
.x46_c00102{left:536.016387pt;}
.x40_c00102{left:537.679587pt;}
.x23_c00102{left:545.317987pt;}
.x27_c00102{left:553.774787pt;}
.xd_c00102{left:554.817587pt;}
.x30_c00102{left:556.080387pt;}
.x41_c00102{left:564.141187pt;}
.x3_c00102{left:565.263187pt;}
.x56_c00102{left:566.195987pt;}
.x1c_c00102{left:574.657187pt;}
.x4c_c00102{left:575.726387pt;}
.x3f_c00102{left:585.274387pt;}
.x28_c00102{left:594.782787pt;}
.x5e_c00102{left:597.149987pt;}
.x4d_c00102{left:606.869587pt;}
.x75_c00102{left:608.132387pt;}
.x76_c00102{left:609.122387pt;}
.x67_c00102{left:613.654387pt;}
.x6a_c00102{left:615.977587pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4ae7d32916ef2409eedce19c.woff2')format("woff");}.ff1_c00103{font-family:ff1_c00103;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00103;src:url('chunks/assets/font_910c8a76bb77714daecd6fa0.woff2')format("woff");}.ff2_c00103{font-family:ff2_c00103;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00103;src:url('chunks/assets/font_a2f5908c224b5af08e2c622f.woff2')format("woff");}.ff3_c00103{font-family:ff3_c00103;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00103;src:url('chunks/assets/font_012f24d26b9c420b795ffb9f.woff2')format("woff");}.ff4_c00103{font-family:ff4_c00103;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m75_c00103{transform:matrix(0.167683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167683,0.000000,0.000000,0.250000,0,0);}
.m7b_c00103{transform:matrix(0.173864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173864,0.000000,0.000000,0.250000,0,0);}
.m65_c00103{transform:matrix(0.200658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200658,0.000000,0.000000,0.250000,0,0);}
.m6e_c00103{transform:matrix(0.229667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229667,0.000000,0.000000,0.250000,0,0);}
.m1_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);}
.m94_c00103{transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);}
.m11_c00103{transform:matrix(0.250131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250131,0.000000,0.000000,0.250000,0,0);}
.m82_c00103{transform:matrix(0.252167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252167,0.000000,0.000000,0.250000,0,0);}
.m37_c00103{transform:matrix(0.252405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252405,0.000000,0.000000,0.250000,0,0);}
.m5a_c00103{transform:matrix(0.257917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257917,0.000000,0.000000,0.250000,0,0);}
.m1b_c00103{transform:matrix(0.259977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259977,0.000000,0.000000,0.250000,0,0);}
.m88_c00103{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.m6c_c00103{transform:matrix(0.262415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262415,0.000000,0.000000,0.250000,0,0);}
.m35_c00103{transform:matrix(0.262652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262652,0.000000,0.000000,0.250000,0,0);}
.m7_c00103{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m22_c00103{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m50_c00103{transform:matrix(0.265403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265403,0.000000,0.000000,0.250000,0,0);}
.m25_c00103{transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);}
.m5c_c00103{transform:matrix(0.265700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265700,0.000000,0.000000,0.250000,0,0);}
.m6d_c00103{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m18_c00103{transform:matrix(0.266713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266713,0.000000,0.000000,0.250000,0,0);}
.m7d_c00103{transform:matrix(0.267384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267384,0.000000,0.000000,0.250000,0,0);}
.m20_c00103{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m69_c00103{transform:matrix(0.268201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268201,0.000000,0.000000,0.250000,0,0);}
.m4f_c00103{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.m90_c00103{transform:matrix(0.270074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270074,0.000000,0.000000,0.250000,0,0);}
.m5d_c00103{transform:matrix(0.270227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270227,0.000000,0.000000,0.250000,0,0);}
.m2c_c00103{transform:matrix(0.270820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270820,0.000000,0.000000,0.250000,0,0);}
.m3e_c00103{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m70_c00103{transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);}
.m74_c00103{transform:matrix(0.271801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271801,0.000000,0.000000,0.250000,0,0);}
.m4b_c00103{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m87_c00103{transform:matrix(0.272619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272619,0.000000,0.000000,0.250000,0,0);}
.m98_c00103{transform:matrix(0.273580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273580,0.000000,0.000000,0.250000,0,0);}
.m5b_c00103{transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);}
.m66_c00103{transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);}
.m47_c00103{transform:matrix(0.274280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274280,0.000000,0.000000,0.250000,0,0);}
.m48_c00103{transform:matrix(0.274835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274835,0.000000,0.000000,0.250000,0,0);}
.m13_c00103{transform:matrix(0.276607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276607,0.000000,0.000000,0.250000,0,0);}
.m55_c00103{transform:matrix(0.277177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277177,0.000000,0.000000,0.250000,0,0);}
.m26_c00103{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m8d_c00103{transform:matrix(0.277371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277371,0.000000,0.000000,0.250000,0,0);}
.m8e_c00103{transform:matrix(0.277650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277650,0.000000,0.000000,0.250000,0,0);}
.m68_c00103{transform:matrix(0.277985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277985,0.000000,0.000000,0.250000,0,0);}
.m53_c00103{transform:matrix(0.278648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278648,0.000000,0.000000,0.250000,0,0);}
.m8a_c00103{transform:matrix(0.279178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279178,0.000000,0.000000,0.250000,0,0);}
.m15_c00103{transform:matrix(0.279482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279482,0.000000,0.000000,0.250000,0,0);}
.m3a_c00103{transform:matrix(0.280250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280250,0.000000,0.000000,0.250000,0,0);}
.m62_c00103{transform:matrix(0.280554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280554,0.000000,0.000000,0.250000,0,0);}
.m78_c00103{transform:matrix(0.280566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280566,0.000000,0.000000,0.250000,0,0);}
.m0_c00103{transform:matrix(0.280756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280756,0.000000,0.000000,0.250000,0,0);}
.m79_c00103{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.m41_c00103{transform:matrix(0.281612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281612,0.000000,0.000000,0.250000,0,0);}
.m42_c00103{transform:matrix(0.282165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282165,0.000000,0.000000,0.250000,0,0);}
.m92_c00103{transform:matrix(0.282543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282543,0.000000,0.000000,0.250000,0,0);}
.m9_c00103{transform:matrix(0.283230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283230,0.000000,0.000000,0.250000,0,0);}
.m17_c00103{transform:matrix(0.283329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283329,0.000000,0.000000,0.250000,0,0);}
.m4e_c00103{transform:matrix(0.283958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283958,0.000000,0.000000,0.250000,0,0);}
.m93_c00103{transform:matrix(0.285083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285083,0.000000,0.000000,0.250000,0,0);}
.mf_c00103{transform:matrix(0.285096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285096,0.000000,0.000000,0.250000,0,0);}
.m2d_c00103{transform:matrix(0.285589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285589,0.000000,0.000000,0.250000,0,0);}
.m16_c00103{transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);}
.m19_c00103{transform:matrix(0.286096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286096,0.000000,0.000000,0.250000,0,0);}
.ma5_c00103{transform:matrix(0.286234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286234,0.000000,0.000000,0.250000,0,0);}
.m72_c00103{transform:matrix(0.286597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286597,0.000000,0.000000,0.250000,0,0);}
.m77_c00103{transform:matrix(0.286764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286764,0.000000,0.000000,0.250000,0,0);}
.m30_c00103{transform:matrix(0.286780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286780,0.000000,0.000000,0.250000,0,0);}
.ma0_c00103{transform:matrix(0.286872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286872,0.000000,0.000000,0.250000,0,0);}
.m4_c00103{transform:matrix(0.286908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286908,0.000000,0.000000,0.250000,0,0);}
.m12_c00103{transform:matrix(0.288272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288272,0.000000,0.000000,0.250000,0,0);}
.m45_c00103{transform:matrix(0.288699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288699,0.000000,0.000000,0.250000,0,0);}
.m64_c00103{transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);}
.m44_c00103{transform:matrix(0.290092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290092,0.000000,0.000000,0.250000,0,0);}
.m57_c00103{transform:matrix(0.290479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290479,0.000000,0.000000,0.250000,0,0);}
.ma4_c00103{transform:matrix(0.291891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291891,0.000000,0.000000,0.250000,0,0);}
.m9e_c00103{transform:matrix(0.292385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292385,0.000000,0.000000,0.250000,0,0);}
.m6a_c00103{transform:matrix(0.292672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292672,0.000000,0.000000,0.250000,0,0);}
.m67_c00103{transform:matrix(0.293422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293422,0.000000,0.000000,0.250000,0,0);}
.m9d_c00103{transform:matrix(0.294562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294562,0.000000,0.000000,0.250000,0,0);}
.ma6_c00103{transform:matrix(0.294749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294749,0.000000,0.000000,0.250000,0,0);}
.m32_c00103{transform:matrix(0.294846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294846,0.000000,0.000000,0.250000,0,0);}
.m49_c00103{transform:matrix(0.295706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295706,0.000000,0.000000,0.250000,0,0);}
.m46_c00103{transform:matrix(0.295937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295937,0.000000,0.000000,0.250000,0,0);}
.m4d_c00103{transform:matrix(0.296343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296343,0.000000,0.000000,0.250000,0,0);}
.ma3_c00103{transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);}
.m97_c00103{transform:matrix(0.296926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296926,0.000000,0.000000,0.250000,0,0);}
.m86_c00103{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m6b_c00103{transform:matrix(0.297784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297784,0.000000,0.000000,0.250000,0,0);}
.m2e_c00103{transform:matrix(0.298379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298379,0.000000,0.000000,0.250000,0,0);}
.m96_c00103{transform:matrix(0.298752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298752,0.000000,0.000000,0.250000,0,0);}
.m80_c00103{transform:matrix(0.298829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298829,0.000000,0.000000,0.250000,0,0);}
.m9b_c00103{transform:matrix(0.298853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298853,0.000000,0.000000,0.250000,0,0);}
.m83_c00103{transform:matrix(0.299271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299271,0.000000,0.000000,0.250000,0,0);}
.m1f_c00103{transform:matrix(0.299293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299293,0.000000,0.000000,0.250000,0,0);}
.m73_c00103{transform:matrix(0.299924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299924,0.000000,0.000000,0.250000,0,0);}
.m3d_c00103{transform:matrix(0.299969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299969,0.000000,0.000000,0.250000,0,0);}
.m10_c00103{transform:matrix(0.300411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300411,0.000000,0.000000,0.250000,0,0);}
.m21_c00103{transform:matrix(0.300559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300559,0.000000,0.000000,0.250000,0,0);}
.m38_c00103{transform:matrix(0.300705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300705,0.000000,0.000000,0.250000,0,0);}
.m29_c00103{transform:matrix(0.300857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300857,0.000000,0.000000,0.250000,0,0);}
.m2b_c00103{transform:matrix(0.301032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301032,0.000000,0.000000,0.250000,0,0);}
.m4a_c00103{transform:matrix(0.301706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301706,0.000000,0.000000,0.250000,0,0);}
.m4c_c00103{transform:matrix(0.302117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302117,0.000000,0.000000,0.250000,0,0);}
.mb_c00103{transform:matrix(0.302155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302155,0.000000,0.000000,0.250000,0,0);}
.m84_c00103{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m56_c00103{transform:matrix(0.302622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302622,0.000000,0.000000,0.250000,0,0);}
.m7f_c00103{transform:matrix(0.304144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304144,0.000000,0.000000,0.250000,0,0);}
.m60_c00103{transform:matrix(0.304215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304215,0.000000,0.000000,0.250000,0,0);}
.m34_c00103{transform:matrix(0.304425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304425,0.000000,0.000000,0.250000,0,0);}
.m28_c00103{transform:matrix(0.304655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304655,0.000000,0.000000,0.250000,0,0);}
.mc_c00103{transform:matrix(0.304957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304957,0.000000,0.000000,0.250000,0,0);}
.m7e_c00103{transform:matrix(0.305153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305153,0.000000,0.000000,0.250000,0,0);}
.m54_c00103{transform:matrix(0.305639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305639,0.000000,0.000000,0.250000,0,0);}
.me_c00103{transform:matrix(0.305662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305662,0.000000,0.000000,0.250000,0,0);}
.m2a_c00103{transform:matrix(0.307871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307871,0.000000,0.000000,0.250000,0,0);}
.m2_c00103{transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);}
.m33_c00103{transform:matrix(0.309528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309528,0.000000,0.000000,0.250000,0,0);}
.m9a_c00103{transform:matrix(0.309779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309779,0.000000,0.000000,0.250000,0,0);}
.m85_c00103{transform:matrix(0.309886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309886,0.000000,0.000000,0.250000,0,0);}
.m3f_c00103{transform:matrix(0.310012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310012,0.000000,0.000000,0.250000,0,0);}
.m1c_c00103{transform:matrix(0.310363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310363,0.000000,0.000000,0.250000,0,0);}
.m95_c00103{transform:matrix(0.310723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310723,0.000000,0.000000,0.250000,0,0);}
.m99_c00103{transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);}
.m24_c00103{transform:matrix(0.311143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311143,0.000000,0.000000,0.250000,0,0);}
.m6f_c00103{transform:matrix(0.311511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311511,0.000000,0.000000,0.250000,0,0);}
.m5e_c00103{transform:matrix(0.311968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311968,0.000000,0.000000,0.250000,0,0);}
.ma2_c00103{transform:matrix(0.312070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312070,0.000000,0.000000,0.250000,0,0);}
.md_c00103{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.m3b_c00103{transform:matrix(0.312688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312688,0.000000,0.000000,0.250000,0,0);}
.ma_c00103{transform:matrix(0.313921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313921,0.000000,0.000000,0.250000,0,0);}
.m1d_c00103{transform:matrix(0.315194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315194,0.000000,0.000000,0.250000,0,0);}
.m59_c00103{transform:matrix(0.316282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316282,0.000000,0.000000,0.250000,0,0);}
.m76_c00103{transform:matrix(0.317307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317307,0.000000,0.000000,0.250000,0,0);}
.m39_c00103{transform:matrix(0.317419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317419,0.000000,0.000000,0.250000,0,0);}
.m61_c00103{transform:matrix(0.317489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317489,0.000000,0.000000,0.250000,0,0);}
.m6_c00103{transform:matrix(0.317995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317995,0.000000,0.000000,0.250000,0,0);}
.m14_c00103{transform:matrix(0.318082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318082,0.000000,0.000000,0.250000,0,0);}
.m27_c00103{transform:matrix(0.318683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318683,0.000000,0.000000,0.250000,0,0);}
.m3_c00103{transform:matrix(0.318840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318840,0.000000,0.000000,0.250000,0,0);}
.m81_c00103{transform:matrix(0.319227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319227,0.000000,0.000000,0.250000,0,0);}
.m9f_c00103{transform:matrix(0.319485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319485,0.000000,0.000000,0.250000,0,0);}
.m1e_c00103{transform:matrix(0.319808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319808,0.000000,0.000000,0.250000,0,0);}
.m7c_c00103{transform:matrix(0.319859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319859,0.000000,0.000000,0.250000,0,0);}
.m89_c00103{transform:matrix(0.321107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321107,0.000000,0.000000,0.250000,0,0);}
.m52_c00103{transform:matrix(0.322864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322864,0.000000,0.000000,0.250000,0,0);}
.m51_c00103{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.m40_c00103{transform:matrix(0.323713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323713,0.000000,0.000000,0.250000,0,0);}
.m3c_c00103{transform:matrix(0.324269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324269,0.000000,0.000000,0.250000,0,0);}
.m58_c00103{transform:matrix(0.325862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325862,0.000000,0.000000,0.250000,0,0);}
.m8c_c00103{transform:matrix(0.326787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326787,0.000000,0.000000,0.250000,0,0);}
.m8f_c00103{transform:matrix(0.330032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330032,0.000000,0.000000,0.250000,0,0);}
.m8b_c00103{transform:matrix(0.330354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330354,0.000000,0.000000,0.250000,0,0);}
.ma1_c00103{transform:matrix(0.332996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332996,0.000000,0.000000,0.250000,0,0);}
.m1a_c00103{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m5_c00103{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);}
.m43_c00103{transform:matrix(0.340728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340728,0.000000,0.000000,0.250000,0,0);}
.m23_c00103{transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);}
.m71_c00103{transform:matrix(0.347328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347328,0.000000,0.000000,0.250000,0,0);}
.m9c_c00103{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m7a_c00103{transform:matrix(0.352727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352727,0.000000,0.000000,0.250000,0,0);}
.m31_c00103{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m8_c00103{transform:matrix(0.357753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357753,0.000000,0.000000,0.250000,0,0);}
.m63_c00103{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m5f_c00103{transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);}
.m91_c00103{transform:matrix(0.368636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368636,0.000000,0.000000,0.250000,0,0);}
.m2f_c00103{transform:matrix(0.414699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414699,0.000000,0.000000,0.250000,0,0);}
.m36_c00103{transform:matrix(0.430633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430633,0.000000,0.000000,0.250000,0,0);}
.v0_c00103{vertical-align:0.000000px;}
.ls7_c00103{letter-spacing:-2.744280px;}
.ls9_c00103{letter-spacing:-2.642350px;}
.lsc_c00103{letter-spacing:-2.375762px;}
.lsd_c00103{letter-spacing:-2.164061px;}
.ls4_c00103{letter-spacing:-1.897474px;}
.ls1_c00103{letter-spacing:0.000000px;}
.ls2_c00103{letter-spacing:0.439085px;}
.ls5_c00103{letter-spacing:1.246687px;}
.ls8_c00103{letter-spacing:1.861200px;}
.ls0_c00103{letter-spacing:3.920400px;}
.ls3_c00103{letter-spacing:4.118400px;}
.ls6_c00103{letter-spacing:54.172998px;}
.lsa_c00103{letter-spacing:58.449798px;}
.lsb_c00103{letter-spacing:62.726400px;}
.sc__c00103{text-shadow:none;}
.sc0_c00103{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00103{-webkit-text-stroke:0px transparent;}
.sc0_c00103{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00103{word-spacing:0.000000px;}
._0_c00103{width:6.351048px;}
._1_c00103{width:20.856528px;}
.fc0_c00103{color:transparent;}
.fs8_c00103{font-size:22.176000px;}
.fs5_c00103{font-size:37.224000px;}
.fs3_c00103{font-size:54.172998px;}
.fs6_c00103{font-size:58.449798px;}
.fs7_c00103{font-size:62.726400px;}
.fs2_c00103{font-size:66.330000px;}
.fs0_c00103{font-size:78.408000px;}
.fs4_c00103{font-size:78.804000px;}
.fs1_c00103{font-size:82.368000px;}
.y0_c00103{bottom:0.000000px;}
.y1_c00103{bottom:76.500000px;}
.y1b_c00103{bottom:115.736970px;}
.y1a_c00103{bottom:154.940970px;}
.y19_c00103{bottom:184.883520px;}
.y18_c00103{bottom:218.741520px;}
.y17_c00103{bottom:250.817520px;}
.y16_c00103{bottom:282.888570px;}
.y15_c00103{bottom:315.320970px;}
.y14_c00103{bottom:347.758320px;}
.y13_c00103{bottom:379.477920px;}
.y12_c00103{bottom:406.564320px;}
.y11_c00103{bottom:412.618170px;}
.y10_c00103{bottom:444.342720px;}
.yf_c00103{bottom:508.489770px;}
.ye_c00103{bottom:540.570720px;}
.yd_c00103{bottom:573.003120px;}
.yc_c00103{bottom:605.430570px;}
.yb_c00103{bottom:637.862970px;}
.ya_c00103{bottom:670.651770px;}
.y9_c00103{bottom:704.158320px;}
.y8_c00103{bottom:768.305370px;}
.y7_c00103{bottom:801.094170px;}
.y6_c00103{bottom:833.175120px;}
.y5_c00103{bottom:864.889770px;}
.y4_c00103{bottom:897.678570px;}
.y3_c00103{bottom:929.759520px;}
.y2_c00103{bottom:1079.442570px;}
.ha_c00103{height:23.128875px;}
.h5_c00103{height:36.079217px;}
.h7_c00103{height:36.533320px;}
.h8_c00103{height:38.927565px;}
.h9_c00103{height:41.775782px;}
.h4_c00103{height:69.180117px;}
.h2_c00103{height:76.953164px;}
.h6_c00103{height:77.341816px;}
.h3_c00103{height:80.799469px;}
.h1_c00103{height:1110.000000px;}
.h0_c00103{height:1263.000000px;}
.w1_c00103{width:733.500000px;}
.w0_c00103{width:892.500000px;}
.x0_c00103{left:0.000000px;}
.x48_c00103{left:65.547435px;}
.x15_c00103{left:67.200735px;}
.x3_c00103{left:68.245185px;}
.x33_c00103{left:70.314285px;}
.x1_c00103{left:79.500000px;}
.x4_c00103{left:89.614335px;}
.x25_c00103{left:99.751935px;}
.x57_c00103{left:101.751735px;}
.x21_c00103{left:110.137035px;}
.xd_c00103{left:111.523035px;}
.x29_c00103{left:122.521935px;}
.x51_c00103{left:124.170285px;}
.x5_c00103{left:133.659435px;}
.x34_c00103{left:144.024735px;}
.x58_c00103{left:145.173135px;}
.x1b_c00103{left:155.182035px;}
.x52_c00103{left:157.265985px;}
.x2e_c00103{left:166.245285px;}
.x44_c00103{left:178.338135px;}
.x59_c00103{left:179.397435px;}
.x16_c00103{left:188.945985px;}
.x2f_c00103{left:198.524235px;}
.x1c_c00103{left:199.969635px;}
.x43_c00103{left:211.354635px;}
.xe_c00103{left:222.546585px;}
.x17_c00103{left:232.025835px;}
.x30_c00103{left:233.411835px;}
.x3c_c00103{left:234.599835px;}
.x22_c00103{left:244.435485px;}
.x5a_c00103{left:256.295685px;}
.x5c_c00103{left:257.760885px;}
.xf_c00103{left:266.745135px;}
.x4d_c00103{left:268.185585px;}
.x6_c00103{left:277.318335px;}
.x45_c00103{left:279.199335px;}
.x35_c00103{left:289.539885px;}
.x31_c00103{left:299.672535px;}
.x5d_c00103{left:300.776385px;}
.x3d_c00103{left:311.300085px;}
.x26_c00103{left:321.992085px;}
.x4e_c00103{left:323.031585px;}
.x7_c00103{left:333.575085px;}
.x10_c00103{left:344.321535px;}
.x27_c00103{left:355.810485px;}
.x38_c00103{left:356.879685px;}
.x3e_c00103{left:367.383585px;}
.x8_c00103{left:377.907285px;}
.x28_c00103{left:389.673435px;}
.x46_c00103{left:399.449685px;}
.x5b_c00103{left:401.127735px;}
.x2a_c00103{left:411.205935px;}
.x3f_c00103{left:412.864185px;}
.x1d_c00103{left:421.660335px;}
.x3b_c00103{left:423.536385px;}
.x49_c00103{left:424.927335px;}
.x2b_c00103{left:432.639435px;}
.x40_c00103{left:434.510535px;}
.x9_c00103{left:444.598635px;}
.x18_c00103{left:455.820285px;}
.x2c_c00103{left:465.784635px;}
.x4f_c00103{left:467.012235px;}
.xa_c00103{left:476.159835px;}
.x11_c00103{left:477.917085px;}
.x32_c00103{left:488.599185px;}
.x23_c00103{left:489.797085px;}
.x12_c00103{left:499.810935px;}
.x53_c00103{left:511.215735px;}
.x41_c00103{left:521.066235px;}
.x36_c00103{left:523.328385px;}
.x2d_c00103{left:531.758235px;}
.x24_c00103{left:534.055035px;}
.x4a_c00103{left:542.806635px;}
.x1e_c00103{left:544.034235px;}
.x55_c00103{left:545.068785px;}
.x19_c00103{left:556.067685px;}
.x4c_c00103{left:565.705335px;}
.x39_c00103{left:567.116085px;}
.xb_c00103{left:576.961635px;}
.x1a_c00103{left:586.955685px;}
.x1f_c00103{left:588.846585px;}
.x13_c00103{left:598.380285px;}
.x50_c00103{left:599.439585px;}
.x20_c00103{left:622.387785px;}
.x42_c00103{left:632.223435px;}
.x2_c00103{left:633.782685px;}
.x4b_c00103{left:643.464885px;}
.x14_c00103{left:654.310335px;}
.x56_c00103{left:656.270535px;}
.x47_c00103{left:665.304285px;}
.xc_c00103{left:667.635735px;}
.x3a_c00103{left:677.317935px;}
.x5e_c00103{left:683.505435px;}
.x54_c00103{left:684.599385px;}
.x37_c00103{left:687.282285px;}
@media print{
.v0_c00103{vertical-align:0.000000pt;}
.ls7_c00103{letter-spacing:-2.439360pt;}
.ls9_c00103{letter-spacing:-2.348755pt;}
.lsc_c00103{letter-spacing:-2.111789pt;}
.lsd_c00103{letter-spacing:-1.923610pt;}
.ls4_c00103{letter-spacing:-1.686643pt;}
.ls1_c00103{letter-spacing:0.000000pt;}
.ls2_c00103{letter-spacing:0.390298pt;}
.ls5_c00103{letter-spacing:1.108166pt;}
.ls8_c00103{letter-spacing:1.654400pt;}
.ls0_c00103{letter-spacing:3.484800pt;}
.ls3_c00103{letter-spacing:3.660800pt;}
.ls6_c00103{letter-spacing:48.153776pt;}
.lsa_c00103{letter-spacing:51.955376pt;}
.lsb_c00103{letter-spacing:55.756800pt;}
.ws0_c00103{word-spacing:0.000000pt;}
._0_c00103{width:5.645376pt;}
._1_c00103{width:18.539136pt;}
.fs8_c00103{font-size:19.712000pt;}
.fs5_c00103{font-size:33.088000pt;}
.fs3_c00103{font-size:48.153776pt;}
.fs6_c00103{font-size:51.955376pt;}
.fs7_c00103{font-size:55.756800pt;}
.fs2_c00103{font-size:58.960000pt;}
.fs0_c00103{font-size:69.696000pt;}
.fs4_c00103{font-size:70.048000pt;}
.fs1_c00103{font-size:73.216000pt;}
.y0_c00103{bottom:0.000000pt;}
.y1_c00103{bottom:68.000000pt;}
.y1b_c00103{bottom:102.877307pt;}
.y1a_c00103{bottom:137.725307pt;}
.y19_c00103{bottom:164.340907pt;}
.y18_c00103{bottom:194.436907pt;}
.y17_c00103{bottom:222.948907pt;}
.y16_c00103{bottom:251.456507pt;}
.y15_c00103{bottom:280.285307pt;}
.y14_c00103{bottom:309.118507pt;}
.y13_c00103{bottom:337.313707pt;}
.y12_c00103{bottom:361.390507pt;}
.y11_c00103{bottom:366.771707pt;}
.y10_c00103{bottom:394.971307pt;}
.yf_c00103{bottom:451.990907pt;}
.ye_c00103{bottom:480.507307pt;}
.yd_c00103{bottom:509.336107pt;}
.yc_c00103{bottom:538.160507pt;}
.yb_c00103{bottom:566.989307pt;}
.ya_c00103{bottom:596.134907pt;}
.y9_c00103{bottom:625.918507pt;}
.y8_c00103{bottom:682.938107pt;}
.y7_c00103{bottom:712.083707pt;}
.y6_c00103{bottom:740.600107pt;}
.y5_c00103{bottom:768.790907pt;}
.y4_c00103{bottom:797.936507pt;}
.y3_c00103{bottom:826.452907pt;}
.y2_c00103{bottom:959.504507pt;}
.ha_c00103{height:20.559000pt;}
.h5_c00103{height:32.070415pt;}
.h7_c00103{height:32.474063pt;}
.h8_c00103{height:34.602280pt;}
.h9_c00103{height:37.134029pt;}
.h4_c00103{height:61.493438pt;}
.h2_c00103{height:68.402813pt;}
.h6_c00103{height:68.748281pt;}
.h3_c00103{height:71.821750pt;}
.h1_c00103{height:986.666667pt;}
.h0_c00103{height:1122.666667pt;}
.w1_c00103{width:652.000000pt;}
.w0_c00103{width:793.333333pt;}
.x0_c00103{left:0.000000pt;}
.x48_c00103{left:58.264387pt;}
.x15_c00103{left:59.733987pt;}
.x3_c00103{left:60.662387pt;}
.x33_c00103{left:62.501587pt;}
.x1_c00103{left:70.666667pt;}
.x4_c00103{left:79.657187pt;}
.x25_c00103{left:88.668387pt;}
.x57_c00103{left:90.445987pt;}
.x21_c00103{left:97.899587pt;}
.xd_c00103{left:99.131587pt;}
.x29_c00103{left:108.908387pt;}
.x51_c00103{left:110.373587pt;}
.x5_c00103{left:118.808387pt;}
.x34_c00103{left:128.021987pt;}
.x58_c00103{left:129.042787pt;}
.x1b_c00103{left:137.939587pt;}
.x52_c00103{left:139.791987pt;}
.x2e_c00103{left:147.773587pt;}
.x44_c00103{left:158.522787pt;}
.x59_c00103{left:159.464387pt;}
.x16_c00103{left:167.951987pt;}
.x2f_c00103{left:176.465987pt;}
.x1c_c00103{left:177.750787pt;}
.x43_c00103{left:187.870787pt;}
.xe_c00103{left:197.819187pt;}
.x17_c00103{left:206.245187pt;}
.x30_c00103{left:207.477187pt;}
.x3c_c00103{left:208.533187pt;}
.x22_c00103{left:217.275987pt;}
.x5a_c00103{left:227.818387pt;}
.x5c_c00103{left:229.120787pt;}
.xf_c00103{left:237.106787pt;}
.x4d_c00103{left:238.387187pt;}
.x6_c00103{left:246.505187pt;}
.x45_c00103{left:248.177187pt;}
.x35_c00103{left:257.368787pt;}
.x31_c00103{left:266.375587pt;}
.x5d_c00103{left:267.356787pt;}
.x3d_c00103{left:276.711187pt;}
.x26_c00103{left:286.215187pt;}
.x4e_c00103{left:287.139187pt;}
.x7_c00103{left:296.511187pt;}
.x10_c00103{left:306.063587pt;}
.x27_c00103{left:316.275987pt;}
.x38_c00103{left:317.226387pt;}
.x3e_c00103{left:326.563187pt;}
.x8_c00103{left:335.917587pt;}
.x28_c00103{left:346.376387pt;}
.x46_c00103{left:355.066387pt;}
.x5b_c00103{left:356.557987pt;}
.x2a_c00103{left:365.516387pt;}
.x3f_c00103{left:366.990387pt;}
.x1d_c00103{left:374.809187pt;}
.x3b_c00103{left:376.476787pt;}
.x49_c00103{left:377.713187pt;}
.x2b_c00103{left:384.568387pt;}
.x40_c00103{left:386.231587pt;}
.x9_c00103{left:395.198787pt;}
.x18_c00103{left:405.173587pt;}
.x2c_c00103{left:414.030787pt;}
.x4f_c00103{left:415.121987pt;}
.xa_c00103{left:423.253187pt;}
.x11_c00103{left:424.815187pt;}
.x32_c00103{left:434.310387pt;}
.x23_c00103{left:435.375187pt;}
.x12_c00103{left:444.276387pt;}
.x53_c00103{left:454.413987pt;}
.x41_c00103{left:463.169987pt;}
.x36_c00103{left:465.180787pt;}
.x2d_c00103{left:472.673987pt;}
.x24_c00103{left:474.715587pt;}
.x4a_c00103{left:482.494787pt;}
.x1e_c00103{left:483.585987pt;}
.x55_c00103{left:484.505587pt;}
.x19_c00103{left:494.282387pt;}
.x4c_c00103{left:502.849187pt;}
.x39_c00103{left:504.103187pt;}
.xb_c00103{left:512.854787pt;}
.x1a_c00103{left:521.738387pt;}
.x1f_c00103{left:523.419187pt;}
.x13_c00103{left:531.893587pt;}
.x50_c00103{left:532.835187pt;}
.x20_c00103{left:553.233587pt;}
.x42_c00103{left:561.976387pt;}
.x2_c00103{left:563.362387pt;}
.x4b_c00103{left:571.968787pt;}
.x14_c00103{left:581.609187pt;}
.x56_c00103{left:583.351587pt;}
.x47_c00103{left:591.381587pt;}
.xc_c00103{left:593.453987pt;}
.x3a_c00103{left:602.060387pt;}
.x5e_c00103{left:607.560387pt;}
.x54_c00103{left:608.532787pt;}
.x37_c00103{left:610.917587pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fe929d07e0d1cd40827f103e.woff2')format("woff");}.ff1_c00104{font-family:ff1_c00104;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00104;src:url('chunks/assets/font_d70b12b6a3d86a351aa2bb11.woff2')format("woff");}.ff2_c00104{font-family:ff2_c00104;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00104;src:url('chunks/assets/font_24083f1324bc83b0bb19dbae.woff2')format("woff");}.ff3_c00104{font-family:ff3_c00104;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00104;src:url('chunks/assets/font_838b8de7a9c1be472399f3d0.woff2')format("woff");}.ff4_c00104{font-family:ff4_c00104;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00104;src:url('chunks/assets/font_23e18519227b6118c403ae15.woff2')format("woff");}.ff5_c00104{font-family:ff5_c00104;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1e_c00104{transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);}
.m49_c00104{transform:matrix(0.139895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139895,0.000000,0.000000,0.250000,0,0);}
.m1a_c00104{transform:matrix(0.175596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175596,0.000000,0.000000,0.250000,0,0);}
.m87_c00104{transform:matrix(0.179264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179264,0.000000,0.000000,0.250000,0,0);}
.m1d_c00104{transform:matrix(0.184146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184146,0.000000,0.000000,0.250000,0,0);}
.m82_c00104{transform:matrix(0.189366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189366,0.000000,0.000000,0.250000,0,0);}
.m79_c00104{transform:matrix(0.213031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213031,0.000000,0.000000,0.250000,0,0);}
.m65_c00104{transform:matrix(0.214435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214435,0.000000,0.000000,0.250000,0,0);}
.m22_c00104{transform:matrix(0.224573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224573,0.000000,0.000000,0.250000,0,0);}
.m38_c00104{transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);}
.m0_c00104{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m31_c00104{transform:matrix(0.252090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252090,0.000000,0.000000,0.250000,0,0);}
.m78_c00104{transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);}
.m27_c00104{transform:matrix(0.257069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257069,0.000000,0.000000,0.250000,0,0);}
.m5c_c00104{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m98_c00104{transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);}
.m77_c00104{transform:matrix(0.259574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259574,0.000000,0.000000,0.250000,0,0);}
.m85_c00104{transform:matrix(0.259670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259670,0.000000,0.000000,0.250000,0,0);}
.m6_c00104{transform:matrix(0.260016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260016,0.000000,0.000000,0.250000,0,0);}
.m44_c00104{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m7e_c00104{transform:matrix(0.261427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261427,0.000000,0.000000,0.250000,0,0);}
.m30_c00104{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.mac_c00104{transform:matrix(0.263038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263038,0.000000,0.000000,0.250000,0,0);}
.m42_c00104{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m2c_c00104{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m2f_c00104{transform:matrix(0.264309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264309,0.000000,0.000000,0.250000,0,0);}
.m25_c00104{transform:matrix(0.265297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265297,0.000000,0.000000,0.250000,0,0);}
.m19_c00104{transform:matrix(0.265693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265693,0.000000,0.000000,0.250000,0,0);}
.m2e_c00104{transform:matrix(0.267664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267664,0.000000,0.000000,0.250000,0,0);}
.m72_c00104{transform:matrix(0.267694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267694,0.000000,0.000000,0.250000,0,0);}
.m10_c00104{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m3d_c00104{transform:matrix(0.268210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268210,0.000000,0.000000,0.250000,0,0);}
.m52_c00104{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.m14_c00104{transform:matrix(0.269857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269857,0.000000,0.000000,0.250000,0,0);}
.m3f_c00104{transform:matrix(0.270698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270698,0.000000,0.000000,0.250000,0,0);}
.mae_c00104{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m29_c00104{transform:matrix(0.272102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272102,0.000000,0.000000,0.250000,0,0);}
.m4_c00104{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m7_c00104{transform:matrix(0.272544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272544,0.000000,0.000000,0.250000,0,0);}
.m5e_c00104{transform:matrix(0.273737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273737,0.000000,0.000000,0.250000,0,0);}
.m35_c00104{transform:matrix(0.276738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276738,0.000000,0.000000,0.250000,0,0);}
.m4a_c00104{transform:matrix(0.276912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276912,0.000000,0.000000,0.250000,0,0);}
.md_c00104{transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);}
.ma0_c00104{transform:matrix(0.277164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277164,0.000000,0.000000,0.250000,0,0);}
.m5_c00104{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m34_c00104{transform:matrix(0.277421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277421,0.000000,0.000000,0.250000,0,0);}
.m4d_c00104{transform:matrix(0.277948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277948,0.000000,0.000000,0.250000,0,0);}
.m60_c00104{transform:matrix(0.278764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278764,0.000000,0.000000,0.250000,0,0);}
.m7c_c00104{transform:matrix(0.278962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278962,0.000000,0.000000,0.250000,0,0);}
.m62_c00104{transform:matrix(0.280544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280544,0.000000,0.000000,0.250000,0,0);}
.m51_c00104{transform:matrix(0.280644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280644,0.000000,0.000000,0.250000,0,0);}
.m61_c00104{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.ma5_c00104{transform:matrix(0.281592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281592,0.000000,0.000000,0.250000,0,0);}
.m96_c00104{transform:matrix(0.281782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281782,0.000000,0.000000,0.250000,0,0);}
.m28_c00104{transform:matrix(0.282543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282543,0.000000,0.000000,0.250000,0,0);}
.m84_c00104{transform:matrix(0.283075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283075,0.000000,0.000000,0.250000,0,0);}
.m46_c00104{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m9_c00104{transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);}
.m83_c00104{transform:matrix(0.285021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285021,0.000000,0.000000,0.250000,0,0);}
.m58_c00104{transform:matrix(0.285324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285324,0.000000,0.000000,0.250000,0,0);}
.m54_c00104{transform:matrix(0.286384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286384,0.000000,0.000000,0.250000,0,0);}
.m80_c00104{transform:matrix(0.286685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286685,0.000000,0.000000,0.250000,0,0);}
.m64_c00104{transform:matrix(0.286891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286891,0.000000,0.000000,0.250000,0,0);}
.m4f_c00104{transform:matrix(0.286908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286908,0.000000,0.000000,0.250000,0,0);}
.m2b_c00104{transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);}
.m6c_c00104{transform:matrix(0.288208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288208,0.000000,0.000000,0.250000,0,0);}
.mb_c00104{transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);}
.ma_c00104{transform:matrix(0.290107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290107,0.000000,0.000000,0.250000,0,0);}
.mb0_c00104{transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);}
.m16_c00104{transform:matrix(0.290972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290972,0.000000,0.000000,0.250000,0,0);}
.m9e_c00104{transform:matrix(0.291146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291146,0.000000,0.000000,0.250000,0,0);}
.m95_c00104{transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);}
.m8a_c00104{transform:matrix(0.292055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292055,0.000000,0.000000,0.250000,0,0);}
.m6f_c00104{transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);}
.maa_c00104{transform:matrix(0.292861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292861,0.000000,0.000000,0.250000,0,0);}
.m3b_c00104{transform:matrix(0.292920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292920,0.000000,0.000000,0.250000,0,0);}
.m5b_c00104{transform:matrix(0.293350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293350,0.000000,0.000000,0.250000,0,0);}
.m8c_c00104{transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);}
.m41_c00104{transform:matrix(0.293991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293991,0.000000,0.000000,0.250000,0,0);}
.m93_c00104{transform:matrix(0.294390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294390,0.000000,0.000000,0.250000,0,0);}
.me_c00104{transform:matrix(0.294898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294898,0.000000,0.000000,0.250000,0,0);}
.mab_c00104{transform:matrix(0.295189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295189,0.000000,0.000000,0.250000,0,0);}
.m1_c00104{transform:matrix(0.295340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295340,0.000000,0.000000,0.250000,0,0);}
.mf_c00104{transform:matrix(0.295542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295542,0.000000,0.000000,0.250000,0,0);}
.m4b_c00104{transform:matrix(0.296390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296390,0.000000,0.000000,0.250000,0,0);}
.m7d_c00104{transform:matrix(0.296885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296885,0.000000,0.000000,0.250000,0,0);}
.m94_c00104{transform:matrix(0.297181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297181,0.000000,0.000000,0.250000,0,0);}
.m55_c00104{transform:matrix(0.297753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297753,0.000000,0.000000,0.250000,0,0);}
.m53_c00104{transform:matrix(0.298471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298471,0.000000,0.000000,0.250000,0,0);}
.ma6_c00104{transform:matrix(0.299511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299511,0.000000,0.000000,0.250000,0,0);}
.m9b_c00104{transform:matrix(0.300352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300352,0.000000,0.000000,0.250000,0,0);}
.m8e_c00104{transform:matrix(0.301074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301074,0.000000,0.000000,0.250000,0,0);}
.m15_c00104{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m8_c00104{transform:matrix(0.302583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302583,0.000000,0.000000,0.250000,0,0);}
.m12_c00104{transform:matrix(0.302681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302681,0.000000,0.000000,0.250000,0,0);}
.m9d_c00104{transform:matrix(0.302909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302909,0.000000,0.000000,0.250000,0,0);}
.m6a_c00104{transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);}
.m97_c00104{transform:matrix(0.303528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303528,0.000000,0.000000,0.250000,0,0);}
.m17_c00104{transform:matrix(0.303583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303583,0.000000,0.000000,0.250000,0,0);}
.m23_c00104{transform:matrix(0.304008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304008,0.000000,0.000000,0.250000,0,0);}
.m3_c00104{transform:matrix(0.304511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304511,0.000000,0.000000,0.250000,0,0);}
.m74_c00104{transform:matrix(0.305366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305366,0.000000,0.000000,0.250000,0,0);}
.maf_c00104{transform:matrix(0.305501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305501,0.000000,0.000000,0.250000,0,0);}
.m8f_c00104{transform:matrix(0.305626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305626,0.000000,0.000000,0.250000,0,0);}
.m90_c00104{transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);}
.m70_c00104{transform:matrix(0.305693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305693,0.000000,0.000000,0.250000,0,0);}
.m4e_c00104{transform:matrix(0.306110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306110,0.000000,0.000000,0.250000,0,0);}
.m50_c00104{transform:matrix(0.306999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306999,0.000000,0.000000,0.250000,0,0);}
.m73_c00104{transform:matrix(0.307101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307101,0.000000,0.000000,0.250000,0,0);}
.m69_c00104{transform:matrix(0.307828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307828,0.000000,0.000000,0.250000,0,0);}
.m1f_c00104{transform:matrix(0.308369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308369,0.000000,0.000000,0.250000,0,0);}
.m5a_c00104{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.ma2_c00104{transform:matrix(0.308858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308858,0.000000,0.000000,0.250000,0,0);}
.m56_c00104{transform:matrix(0.308876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308876,0.000000,0.000000,0.250000,0,0);}
.m92_c00104{transform:matrix(0.309093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309093,0.000000,0.000000,0.250000,0,0);}
.m39_c00104{transform:matrix(0.310694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310694,0.000000,0.000000,0.250000,0,0);}
.m5f_c00104{transform:matrix(0.311828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311828,0.000000,0.000000,0.250000,0,0);}
.m63_c00104{transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);}
.m2a_c00104{transform:matrix(0.312328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312328,0.000000,0.000000,0.250000,0,0);}
.m45_c00104{transform:matrix(0.313292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313292,0.000000,0.000000,0.250000,0,0);}
.mad_c00104{transform:matrix(0.313329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313329,0.000000,0.000000,0.250000,0,0);}
.m36_c00104{transform:matrix(0.313422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313422,0.000000,0.000000,0.250000,0,0);}
.m86_c00104{transform:matrix(0.314528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314528,0.000000,0.000000,0.250000,0,0);}
.m99_c00104{transform:matrix(0.314737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314737,0.000000,0.000000,0.250000,0,0);}
.m57_c00104{transform:matrix(0.314815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314815,0.000000,0.000000,0.250000,0,0);}
.m3c_c00104{transform:matrix(0.315593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315593,0.000000,0.000000,0.250000,0,0);}
.m76_c00104{transform:matrix(0.315626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315626,0.000000,0.000000,0.250000,0,0);}
.m3a_c00104{transform:matrix(0.316735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316735,0.000000,0.000000,0.250000,0,0);}
.m88_c00104{transform:matrix(0.317085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317085,0.000000,0.000000,0.250000,0,0);}
.m7f_c00104{transform:matrix(0.317319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317319,0.000000,0.000000,0.250000,0,0);}
.m6d_c00104{transform:matrix(0.317571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317571,0.000000,0.000000,0.250000,0,0);}
.m33_c00104{transform:matrix(0.318696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318696,0.000000,0.000000,0.250000,0,0);}
.m8b_c00104{transform:matrix(0.319135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319135,0.000000,0.000000,0.250000,0,0);}
.m2d_c00104{transform:matrix(0.319290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319290,0.000000,0.000000,0.250000,0,0);}
.m24_c00104{transform:matrix(0.320140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320140,0.000000,0.000000,0.250000,0,0);}
.m47_c00104{transform:matrix(0.320438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320438,0.000000,0.000000,0.250000,0,0);}
.m5d_c00104{transform:matrix(0.321601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321601,0.000000,0.000000,0.250000,0,0);}
.m11_c00104{transform:matrix(0.322864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322864,0.000000,0.000000,0.250000,0,0);}
.m48_c00104{transform:matrix(0.323623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323623,0.000000,0.000000,0.250000,0,0);}
.m1b_c00104{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.m3e_c00104{transform:matrix(0.325179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325179,0.000000,0.000000,0.250000,0,0);}
.m66_c00104{transform:matrix(0.325417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325417,0.000000,0.000000,0.250000,0,0);}
.m9a_c00104{transform:matrix(0.326063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326063,0.000000,0.000000,0.250000,0,0);}
.m89_c00104{transform:matrix(0.326749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326749,0.000000,0.000000,0.250000,0,0);}
.ma7_c00104{transform:matrix(0.327605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327605,0.000000,0.000000,0.250000,0,0);}
.m91_c00104{transform:matrix(0.327616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327616,0.000000,0.000000,0.250000,0,0);}
.m68_c00104{transform:matrix(0.328754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328754,0.000000,0.000000,0.250000,0,0);}
.m6b_c00104{transform:matrix(0.328859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328859,0.000000,0.000000,0.250000,0,0);}
.ma9_c00104{transform:matrix(0.328947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328947,0.000000,0.000000,0.250000,0,0);}
.m81_c00104{transform:matrix(0.329402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329402,0.000000,0.000000,0.250000,0,0);}
.m26_c00104{transform:matrix(0.330032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330032,0.000000,0.000000,0.250000,0,0);}
.m20_c00104{transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);}
.m9f_c00104{transform:matrix(0.330837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330837,0.000000,0.000000,0.250000,0,0);}
.m67_c00104{transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);}
.m7b_c00104{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.ma1_c00104{transform:matrix(0.335804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335804,0.000000,0.000000,0.250000,0,0);}
.m4c_c00104{transform:matrix(0.338064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338064,0.000000,0.000000,0.250000,0,0);}
.mc_c00104{transform:matrix(0.338217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338217,0.000000,0.000000,0.250000,0,0);}
.m40_c00104{transform:matrix(0.338672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338672,0.000000,0.000000,0.250000,0,0);}
.m8d_c00104{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m1c_c00104{transform:matrix(0.340270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340270,0.000000,0.000000,0.250000,0,0);}
.m18_c00104{transform:matrix(0.342513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342513,0.000000,0.000000,0.250000,0,0);}
.ma4_c00104{transform:matrix(0.342735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342735,0.000000,0.000000,0.250000,0,0);}
.m75_c00104{transform:matrix(0.344194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344194,0.000000,0.000000,0.250000,0,0);}
.m37_c00104{transform:matrix(0.345326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345326,0.000000,0.000000,0.250000,0,0);}
.m43_c00104{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m59_c00104{transform:matrix(0.351332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351332,0.000000,0.000000,0.250000,0,0);}
.m6e_c00104{transform:matrix(0.355213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355213,0.000000,0.000000,0.250000,0,0);}
.m71_c00104{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.ma3_c00104{transform:matrix(0.359561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359561,0.000000,0.000000,0.250000,0,0);}
.m32_c00104{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m7a_c00104{transform:matrix(0.361926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361926,0.000000,0.000000,0.250000,0,0);}
.m9c_c00104{transform:matrix(0.366374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366374,0.000000,0.000000,0.250000,0,0);}
.ma8_c00104{transform:matrix(0.366424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366424,0.000000,0.000000,0.250000,0,0);}
.m21_c00104{transform:matrix(0.366758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366758,0.000000,0.000000,0.250000,0,0);}
.m13_c00104{transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);}
.m2_c00104{transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);}
.v1_c00104{vertical-align:-32.788800px;}
.v0_c00104{vertical-align:0.000000px;}
.ls13_c00104{letter-spacing:-2.827440px;}
.ls6_c00104{letter-spacing:-2.744280px;}
.lsc_c00104{letter-spacing:-2.375762px;}
.ls1_c00104{letter-spacing:0.000000px;}
.ls16_c00104{letter-spacing:0.446926px;}
.ls11_c00104{letter-spacing:0.990000px;}
.ls10_c00104{letter-spacing:1.693613px;}
.ls0_c00104{letter-spacing:1.960200px;}
.ls5_c00104{letter-spacing:2.085653px;}
.lsa_c00104{letter-spacing:2.132698px;}
.ls14_c00104{letter-spacing:2.469852px;}
.ls4_c00104{letter-spacing:2.877574px;}
.ls18_c00104{letter-spacing:3.286810px;}
.lsb_c00104{letter-spacing:3.442111px;}
.ls7_c00104{letter-spacing:3.465634px;}
.ls2_c00104{letter-spacing:3.603610px;}
.ls12_c00104{letter-spacing:3.779266px;}
.lse_c00104{letter-spacing:3.801610px;}
.lsf_c00104{letter-spacing:3.826310px;}
.ls19_c00104{letter-spacing:3.880810px;}
.ls3_c00104{letter-spacing:3.920400px;}
.lsd_c00104{letter-spacing:4.009500px;}
.ls17_c00104{letter-spacing:27.086400px;}
.ls9_c00104{letter-spacing:31.363200px;}
.ls8_c00104{letter-spacing:58.449798px;}
.ls15_c00104{letter-spacing:61.300998px;}
.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:-21.734698px;}
.ws1_c00104{word-spacing:0.000000px;}
._2_c00104{width:8.201477px;}
._0_c00104{width:29.559816px;}
._1_c00104{width:32.696136px;}
._3_c00104{width:36.616536px;}
.fc0_c00104{color:transparent;}
.fs8_c00104{font-size:19.800000px;}
.fs11_c00104{font-size:22.572000px;}
.fs4_c00104{font-size:26.928000px;}
.fsd_c00104{font-size:27.086400px;}
.fs13_c00104{font-size:27.720000px;}
.fsa_c00104{font-size:28.314000px;}
.fs5_c00104{font-size:31.363200px;}
.fs0_c00104{font-size:34.056198px;}
.fs10_c00104{font-size:39.600000px;}
.fs12_c00104{font-size:50.688000px;}
.fs3_c00104{font-size:58.449798px;}
.fsc_c00104{font-size:61.300998px;}
.fse_c00104{font-size:65.736198px;}
.fs1_c00104{font-size:72.072198px;}
.fs7_c00104{font-size:76.032198px;}
.fsf_c00104{font-size:77.616198px;}
.fs9_c00104{font-size:78.012198px;}
.fs2_c00104{font-size:78.408000px;}
.fs6_c00104{font-size:80.190000px;}
.fsb_c00104{font-size:80.784000px;}
.y0_c00104{bottom:0.000000px;}
.y27_c00104{bottom:3.475935px;}
.y26_c00104{bottom:58.356585px;}
.y1_c00104{bottom:76.500000px;}
.y25_c00104{bottom:91.150335px;}
.y24_c00104{bottom:151.381935px;}
.y23_c00104{bottom:187.378335px;}
.y22_c00104{bottom:213.751935px;}
.y21_c00104{bottom:239.769135px;}
.y20_c00104{bottom:246.540735px;}
.y1f_c00104{bottom:278.260335px;}
.y1e_c00104{bottom:310.687785px;}
.y1d_c00104{bottom:343.120185px;}
.y1c_c00104{bottom:375.908985px;}
.y1b_c00104{bottom:408.697785px;}
.y1a_c00104{bottom:441.491535px;}
.y19_c00104{bottom:473.567535px;}
.y18_c00104{bottom:529.517385px;}
.y17_c00104{bottom:535.576185px;}
.y15_c00104{bottom:537.719535px;}
.y16_c00104{bottom:539.501535px;}
.y2_c00104{bottom:562.306185px;}
.y14_c00104{bottom:569.439135px;}
.y13_c00104{bottom:601.871535px;}
.y11_c00104{bottom:629.309385px;}
.y12_c00104{bottom:632.516985px;}
.y10_c00104{bottom:634.303935px;}
.yf_c00104{bottom:634.660335px;}
.ye_c00104{bottom:666.731385px;}
.yd_c00104{bottom:699.163785px;}
.yc_c00104{bottom:731.596185px;}
.yb_c00104{bottom:763.677135px;}
.ya_c00104{bottom:795.391785px;}
.y9_c00104{bottom:812.142585px;}
.y8_c00104{bottom:822.478185px;}
.y6_c00104{bottom:828.180585px;}
.y7_c00104{bottom:828.898335px;}
.y5_c00104{bottom:860.617935px;}
.y4_c00104{bottom:926.908335px;}
.y3_c00104{bottom:1077.660585px;}
.h10_c00104{height:18.039542px;}
.ha_c00104{height:20.650781px;}
.h7_c00104{height:20.887891px;}
.h6_c00104{height:28.085063px;}
.h15_c00104{height:28.911094px;}
.hc_c00104{height:29.530617px;}
.h2_c00104{height:35.519550px;}
.h5_c00104{height:38.927565px;}
.hf_c00104{height:40.826465px;}
.h13_c00104{height:41.301563px;}
.h14_c00104{height:52.866000px;}
.h11_c00104{height:68.560800px;}
.h3_c00104{height:70.734921px;}
.h9_c00104{height:74.621444px;}
.hd_c00104{height:75.169050px;}
.h12_c00104{height:76.138155px;}
.h4_c00104{height:76.953164px;}
.h8_c00104{height:78.662944px;}
.hb_c00104{height:81.364285px;}
.he_c00104{height:84.255188px;}
.h1_c00104{height:1110.000000px;}
.h0_c00104{height:1263.000000px;}
.w1_c00104{width:775.500000px;}
.w0_c00104{width:892.500000px;}
.x0_c00104{left:0.000000px;}
.x2_c00104{left:43.259685px;}
.x1_c00104{left:58.500000px;}
.x22_c00104{left:73.548735px;}
.x4_c00104{left:74.929785px;}
.x4a_c00104{left:107.758185px;}
.x5_c00104{left:108.792735px;}
.x35_c00104{left:118.474935px;}
.x10_c00104{left:128.904585px;}
.x2d_c00104{left:130.305435px;}
.x37_c00104{left:140.368785px;}
.x18_c00104{left:141.626085px;}
.x48_c00104{left:144.056535px;}
.x23_c00104{left:151.941885px;}
.x19_c00104{left:161.431035px;}
.x40_c00104{left:163.015035px;}
.x3a_c00104{left:165.757335px;}
.x11_c00104{left:172.835835px;}
.x2e_c00104{left:173.880285px;}
.x53_c00104{left:176.800785px;}
.x24_c00104{left:184.705935px;}
.x1a_c00104{left:196.318635px;}
.x41_c00104{left:207.876885px;}
.x6_c00104{left:218.603535px;}
.x54_c00104{left:220.994385px;}
.x3b_c00104{left:229.676685px;}
.x55_c00104{left:239.428185px;}
.x1b_c00104{left:240.581535px;}
.x7_c00104{left:251.243835px;}
.x50_c00104{left:252.426885px;}
.x2f_c00104{left:263.871285px;}
.x12_c00104{left:273.647535px;}
.x25_c00104{left:275.221635px;}
.x56_c00104{left:283.978185px;}
.x8_c00104{left:285.072135px;}
.x4d_c00104{left:286.334385px;}
.x1c_c00104{left:296.308635px;}
.x49_c00104{left:307.678785px;}
.x5b_c00104{left:317.484735px;}
.x42_c00104{left:318.563835px;}
.x5d_c00104{left:322.657485px;}
.x30_c00104{left:329.453835px;}
.x5e_c00104{left:330.849735px;}
.x26_c00104{left:341.210085px;}
.x9_c00104{left:351.778335px;}
.x51_c00104{left:353.248485px;}
.x27_c00104{left:362.653485px;}
.xa_c00104{left:374.875035px;}
.x3c_c00104{left:385.824435px;}
.x31_c00104{left:396.709485px;}
.x1d_c00104{left:400.105185px;}
.x13_c00104{left:408.520185px;}
.x38_c00104{left:418.915185px;}
.x1e_c00104{left:429.938835px;}
.x59_c00104{left:440.165535px;}
.x3d_c00104{left:451.703985px;}
.xb_c00104{left:462.757335px;}
.xc_c00104{left:472.568235px;}
.x28_c00104{left:474.028485px;}
.x46_c00104{left:485.547135px;}
.x14_c00104{left:496.308435px;}
.x29_c00104{left:506.391585px;}
.xd_c00104{left:507.980535px;}
.x4e_c00104{left:517.474635px;}
.x1f_c00104{left:529.389285px;}
.x43_c00104{left:532.136535px;}
.x39_c00104{left:540.393135px;}
.x57_c00104{left:551.797935px;}
.x5c_c00104{left:554.233335px;}
.x47_c00104{left:561.618735px;}
.x20_c00104{left:563.252235px;}
.x15_c00104{left:573.181935px;}
.x32_c00104{left:574.275885px;}
.x44_c00104{left:575.696535px;}
.xe_c00104{left:584.512485px;}
.x52_c00104{left:594.239235px;}
.x45_c00104{left:595.669785px;}
.x2a_c00104{left:598.065585px;}
.x16_c00104{left:606.015285px;}
.xf_c00104{left:617.222085px;}
.x58_c00104{left:629.389185px;}
.x3e_c00104{left:639.878235px;}
.x3_c00104{left:642.318585px;}
.x36_c00104{left:650.446485px;}
.x17_c00104{left:651.495885px;}
.x2b_c00104{left:662.331435px;}
.x4f_c00104{left:663.682785px;}
.x3f_c00104{left:673.330335px;}
.x33_c00104{left:684.061935px;}
.x4c_c00104{left:693.367935px;}
.x5a_c00104{left:695.441985px;}
.x21_c00104{left:696.560685px;}
.x4b_c00104{left:702.708585px;}
.x34_c00104{left:717.716985px;}
.x2c_c00104{left:748.882185px;}
@media print{
.v1_c00104{vertical-align:-29.145600pt;}
.v0_c00104{vertical-align:0.000000pt;}
.ls13_c00104{letter-spacing:-2.513280pt;}
.ls6_c00104{letter-spacing:-2.439360pt;}
.lsc_c00104{letter-spacing:-2.111789pt;}
.ls1_c00104{letter-spacing:0.000000pt;}
.ls16_c00104{letter-spacing:0.397267pt;}
.ls11_c00104{letter-spacing:0.880000pt;}
.ls10_c00104{letter-spacing:1.505434pt;}
.ls0_c00104{letter-spacing:1.742400pt;}
.ls5_c00104{letter-spacing:1.853914pt;}
.lsa_c00104{letter-spacing:1.895731pt;}
.ls14_c00104{letter-spacing:2.195424pt;}
.ls4_c00104{letter-spacing:2.557843pt;}
.ls18_c00104{letter-spacing:2.921609pt;}
.lsb_c00104{letter-spacing:3.059654pt;}
.ls7_c00104{letter-spacing:3.080563pt;}
.ls2_c00104{letter-spacing:3.203209pt;}
.ls12_c00104{letter-spacing:3.359347pt;}
.lse_c00104{letter-spacing:3.379209pt;}
.lsf_c00104{letter-spacing:3.401165pt;}
.ls19_c00104{letter-spacing:3.449609pt;}
.ls3_c00104{letter-spacing:3.484800pt;}
.lsd_c00104{letter-spacing:3.564000pt;}
.ls17_c00104{letter-spacing:24.076800pt;}
.ls9_c00104{letter-spacing:27.878400pt;}
.ls8_c00104{letter-spacing:51.955376pt;}
.ls15_c00104{letter-spacing:54.489776pt;}
.ws0_c00104{word-spacing:-19.319731pt;}
.ws1_c00104{word-spacing:0.000000pt;}
._2_c00104{width:7.290202pt;}
._0_c00104{width:26.275392pt;}
._1_c00104{width:29.063232pt;}
._3_c00104{width:32.548032pt;}
.fs8_c00104{font-size:17.600000pt;}
.fs11_c00104{font-size:20.064000pt;}
.fs4_c00104{font-size:23.936000pt;}
.fsd_c00104{font-size:24.076800pt;}
.fs13_c00104{font-size:24.640000pt;}
.fsa_c00104{font-size:25.168000pt;}
.fs5_c00104{font-size:27.878400pt;}
.fs0_c00104{font-size:30.272176pt;}
.fs10_c00104{font-size:35.200000pt;}
.fs12_c00104{font-size:45.056000pt;}
.fs3_c00104{font-size:51.955376pt;}
.fsc_c00104{font-size:54.489776pt;}
.fse_c00104{font-size:58.432176pt;}
.fs1_c00104{font-size:64.064176pt;}
.fs7_c00104{font-size:67.584176pt;}
.fsf_c00104{font-size:68.992176pt;}
.fs9_c00104{font-size:69.344176pt;}
.fs2_c00104{font-size:69.696000pt;}
.fs6_c00104{font-size:71.280000pt;}
.fsb_c00104{font-size:71.808000pt;}
.y0_c00104{bottom:0.000000pt;}
.y27_c00104{bottom:3.089720pt;}
.y26_c00104{bottom:51.872520pt;}
.y1_c00104{bottom:68.000000pt;}
.y25_c00104{bottom:81.022520pt;}
.y24_c00104{bottom:134.561720pt;}
.y23_c00104{bottom:166.558520pt;}
.y22_c00104{bottom:190.001720pt;}
.y21_c00104{bottom:213.128120pt;}
.y20_c00104{bottom:219.147320pt;}
.y1f_c00104{bottom:247.342520pt;}
.y1e_c00104{bottom:276.166920pt;}
.y1d_c00104{bottom:304.995720pt;}
.y1c_c00104{bottom:334.141320pt;}
.y1b_c00104{bottom:363.286920pt;}
.y1a_c00104{bottom:392.436920pt;}
.y19_c00104{bottom:420.948920pt;}
.y18_c00104{bottom:470.682120pt;}
.y17_c00104{bottom:476.067720pt;}
.y15_c00104{bottom:477.972920pt;}
.y16_c00104{bottom:479.556920pt;}
.y2_c00104{bottom:499.827720pt;}
.y14_c00104{bottom:506.168120pt;}
.y13_c00104{bottom:534.996920pt;}
.y11_c00104{bottom:559.386120pt;}
.y12_c00104{bottom:562.237320pt;}
.y10_c00104{bottom:563.825720pt;}
.yf_c00104{bottom:564.142520pt;}
.ye_c00104{bottom:592.650120pt;}
.yd_c00104{bottom:621.478920pt;}
.yc_c00104{bottom:650.307720pt;}
.yb_c00104{bottom:678.824120pt;}
.ya_c00104{bottom:707.014920pt;}
.y9_c00104{bottom:721.904520pt;}
.y8_c00104{bottom:731.091720pt;}
.y6_c00104{bottom:736.160520pt;}
.y7_c00104{bottom:736.798520pt;}
.y5_c00104{bottom:764.993720pt;}
.y4_c00104{bottom:823.918520pt;}
.y3_c00104{bottom:957.920520pt;}
.h10_c00104{height:16.035149pt;}
.ha_c00104{height:18.356250pt;}
.h7_c00104{height:18.567014pt;}
.h6_c00104{height:24.964500pt;}
.h15_c00104{height:25.698750pt;}
.hc_c00104{height:26.249438pt;}
.h2_c00104{height:31.572934pt;}
.h5_c00104{height:34.602280pt;}
.hf_c00104{height:36.290191pt;}
.h13_c00104{height:36.712500pt;}
.h14_c00104{height:46.992000pt;}
.h11_c00104{height:60.942934pt;}
.h3_c00104{height:62.875485pt;}
.h9_c00104{height:66.330173pt;}
.hd_c00104{height:66.816934pt;}
.h12_c00104{height:67.678360pt;}
.h4_c00104{height:68.402813pt;}
.h8_c00104{height:69.922617pt;}
.hb_c00104{height:72.323809pt;}
.he_c00104{height:74.893500pt;}
.h1_c00104{height:986.666667pt;}
.h0_c00104{height:1122.666667pt;}
.w1_c00104{width:689.333333pt;}
.w0_c00104{width:793.333333pt;}
.x0_c00104{left:0.000000pt;}
.x2_c00104{left:38.453053pt;}
.x1_c00104{left:52.000000pt;}
.x22_c00104{left:65.376653pt;}
.x4_c00104{left:66.604253pt;}
.x4a_c00104{left:95.785053pt;}
.x5_c00104{left:96.704653pt;}
.x35_c00104{left:105.311053pt;}
.x10_c00104{left:114.581853pt;}
.x2d_c00104{left:115.827053pt;}
.x37_c00104{left:124.772253pt;}
.x18_c00104{left:125.889853pt;}
.x48_c00104{left:128.050253pt;}
.x23_c00104{left:135.059453pt;}
.x19_c00104{left:143.494253pt;}
.x40_c00104{left:144.902253pt;}
.x3a_c00104{left:147.339853pt;}
.x11_c00104{left:153.631853pt;}
.x2e_c00104{left:154.560253pt;}
.x53_c00104{left:157.156253pt;}
.x24_c00104{left:164.183053pt;}
.x1a_c00104{left:174.505453pt;}
.x41_c00104{left:184.779453pt;}
.x6_c00104{left:194.314253pt;}
.x54_c00104{left:196.439453pt;}
.x3b_c00104{left:204.157053pt;}
.x55_c00104{left:212.825053pt;}
.x1b_c00104{left:213.850253pt;}
.x7_c00104{left:223.327853pt;}
.x50_c00104{left:224.379453pt;}
.x2f_c00104{left:234.552253pt;}
.x12_c00104{left:243.242253pt;}
.x25_c00104{left:244.641453pt;}
.x56_c00104{left:252.425053pt;}
.x8_c00104{left:253.397453pt;}
.x4d_c00104{left:254.519453pt;}
.x1c_c00104{left:263.385453pt;}
.x49_c00104{left:273.492253pt;}
.x5b_c00104{left:282.208653pt;}
.x42_c00104{left:283.167853pt;}
.x5d_c00104{left:286.806653pt;}
.x30_c00104{left:292.847853pt;}
.x5e_c00104{left:294.088653pt;}
.x26_c00104{left:303.297853pt;}
.x9_c00104{left:312.691853pt;}
.x51_c00104{left:313.998653pt;}
.x27_c00104{left:322.358653pt;}
.xa_c00104{left:333.222253pt;}
.x3c_c00104{left:342.955053pt;}
.x31_c00104{left:352.630653pt;}
.x1d_c00104{left:355.649053pt;}
.x13_c00104{left:363.129053pt;}
.x38_c00104{left:372.369053pt;}
.x1e_c00104{left:382.167853pt;}
.x59_c00104{left:391.258253pt;}
.x3d_c00104{left:401.514653pt;}
.xb_c00104{left:411.339853pt;}
.xc_c00104{left:420.060653pt;}
.x28_c00104{left:421.358653pt;}
.x46_c00104{left:431.597453pt;}
.x14_c00104{left:441.163053pt;}
.x29_c00104{left:450.125853pt;}
.xd_c00104{left:451.538253pt;}
.x4e_c00104{left:459.977453pt;}
.x1f_c00104{left:470.568253pt;}
.x43_c00104{left:473.010253pt;}
.x39_c00104{left:480.349453pt;}
.x57_c00104{left:490.487053pt;}
.x5c_c00104{left:492.651853pt;}
.x47_c00104{left:499.216653pt;}
.x20_c00104{left:500.668653pt;}
.x15_c00104{left:509.495053pt;}
.x32_c00104{left:510.467453pt;}
.x44_c00104{left:511.730253pt;}
.xe_c00104{left:519.566653pt;}
.x52_c00104{left:528.212653pt;}
.x45_c00104{left:529.484253pt;}
.x2a_c00104{left:531.613853pt;}
.x16_c00104{left:538.680253pt;}
.xf_c00104{left:548.641853pt;}
.x58_c00104{left:559.457053pt;}
.x3e_c00104{left:568.780653pt;}
.x3_c00104{left:570.949853pt;}
.x36_c00104{left:578.174653pt;}
.x17_c00104{left:579.107453pt;}
.x2b_c00104{left:588.739053pt;}
.x4f_c00104{left:589.940253pt;}
.x3f_c00104{left:598.515853pt;}
.x33_c00104{left:608.055053pt;}
.x4c_c00104{left:616.327053pt;}
.x5a_c00104{left:618.170653pt;}
.x21_c00104{left:619.165053pt;}
.x4b_c00104{left:624.629853pt;}
.x34_c00104{left:637.970653pt;}
.x2c_c00104{left:665.673053pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2ba300aa61219802dc8bbcb5.woff2')format("woff");}.ff1_c00105{font-family:ff1_c00105;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00105;src:url('chunks/assets/font_1455314a889ea7337dc8bf0a.woff2')format("woff");}.ff2_c00105{font-family:ff2_c00105;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_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);}
.m87_c00105{transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);}
.m70_c00105{transform:matrix(0.258571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258571,0.000000,0.000000,0.250000,0,0);}
.m8b_c00105{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m98_c00105{transform:matrix(0.259151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259151,0.000000,0.000000,0.250000,0,0);}
.m46_c00105{transform:matrix(0.259670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259670,0.000000,0.000000,0.250000,0,0);}
.m55_c00105{transform:matrix(0.259942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259942,0.000000,0.000000,0.250000,0,0);}
.m1a_c00105{transform:matrix(0.259977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259977,0.000000,0.000000,0.250000,0,0);}
.m10_c00105{transform:matrix(0.260579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260579,0.000000,0.000000,0.250000,0,0);}
.mc_c00105{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.m47_c00105{transform:matrix(0.262295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262295,0.000000,0.000000,0.250000,0,0);}
.m1d_c00105{transform:matrix(0.262539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262539,0.000000,0.000000,0.250000,0,0);}
.m6c_c00105{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m52_c00105{transform:matrix(0.263735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263735,0.000000,0.000000,0.250000,0,0);}
.ma_c00105{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m33_c00105{transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);}
.m23_c00105{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m7a_c00105{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.m3_c00105{transform:matrix(0.266933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266933,0.000000,0.000000,0.250000,0,0);}
.m3a_c00105{transform:matrix(0.267769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267769,0.000000,0.000000,0.250000,0,0);}
.m13_c00105{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m6e_c00105{transform:matrix(0.268484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268484,0.000000,0.000000,0.250000,0,0);}
.m89_c00105{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.m26_c00105{transform:matrix(0.269741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269741,0.000000,0.000000,0.250000,0,0);}
.m39_c00105{transform:matrix(0.269857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269857,0.000000,0.000000,0.250000,0,0);}
.m82_c00105{transform:matrix(0.269996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269996,0.000000,0.000000,0.250000,0,0);}
.m21_c00105{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m6a_c00105{transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);}
.m5_c00105{transform:matrix(0.271847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271847,0.000000,0.000000,0.250000,0,0);}
.m29_c00105{transform:matrix(0.271993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271993,0.000000,0.000000,0.250000,0,0);}
.m7_c00105{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m62_c00105{transform:matrix(0.272589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272589,0.000000,0.000000,0.250000,0,0);}
.m12_c00105{transform:matrix(0.273782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273782,0.000000,0.000000,0.250000,0,0);}
.m44_c00105{transform:matrix(0.273903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273903,0.000000,0.000000,0.250000,0,0);}
.mb_c00105{transform:matrix(0.274364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274364,0.000000,0.000000,0.250000,0,0);}
.m49_c00105{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m73_c00105{transform:matrix(0.276280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276280,0.000000,0.000000,0.250000,0,0);}
.m88_c00105{transform:matrix(0.276438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276438,0.000000,0.000000,0.250000,0,0);}
.m4a_c00105{transform:matrix(0.278106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278106,0.000000,0.000000,0.250000,0,0);}
.m99_c00105{transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);}
.m51_c00105{transform:matrix(0.279794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279794,0.000000,0.000000,0.250000,0,0);}
.m6_c00105{transform:matrix(0.280163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280163,0.000000,0.000000,0.250000,0,0);}
.m97_c00105{transform:matrix(0.282254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282254,0.000000,0.000000,0.250000,0,0);}
.m2_c00105{transform:matrix(0.282365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282365,0.000000,0.000000,0.250000,0,0);}
.m30_c00105{transform:matrix(0.282651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282651,0.000000,0.000000,0.250000,0,0);}
.m57_c00105{transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);}
.m17_c00105{transform:matrix(0.283070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283070,0.000000,0.000000,0.250000,0,0);}
.m4f_c00105{transform:matrix(0.283441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283441,0.000000,0.000000,0.250000,0,0);}
.m2b_c00105{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m7e_c00105{transform:matrix(0.283746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283746,0.000000,0.000000,0.250000,0,0);}
.m76_c00105{transform:matrix(0.284141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284141,0.000000,0.000000,0.250000,0,0);}
.m7b_c00105{transform:matrix(0.284404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284404,0.000000,0.000000,0.250000,0,0);}
.m8c_c00105{transform:matrix(0.285711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285711,0.000000,0.000000,0.250000,0,0);}
.m77_c00105{transform:matrix(0.286181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286181,0.000000,0.000000,0.250000,0,0);}
.m94_c00105{transform:matrix(0.286472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286472,0.000000,0.000000,0.250000,0,0);}
.m3c_c00105{transform:matrix(0.286888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286888,0.000000,0.000000,0.250000,0,0);}
.m2c_c00105{transform:matrix(0.287251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287251,0.000000,0.000000,0.250000,0,0);}
.m95_c00105{transform:matrix(0.287254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287254,0.000000,0.000000,0.250000,0,0);}
.m5a_c00105{transform:matrix(0.287518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287518,0.000000,0.000000,0.250000,0,0);}
.m24_c00105{transform:matrix(0.287592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287592,0.000000,0.000000,0.250000,0,0);}
.m36_c00105{transform:matrix(0.288506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288506,0.000000,0.000000,0.250000,0,0);}
.me_c00105{transform:matrix(0.289122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289122,0.000000,0.000000,0.250000,0,0);}
.m19_c00105{transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);}
.m15_c00105{transform:matrix(0.290787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290787,0.000000,0.000000,0.250000,0,0);}
.m4d_c00105{transform:matrix(0.290804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290804,0.000000,0.000000,0.250000,0,0);}
.m31_c00105{transform:matrix(0.290835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290835,0.000000,0.000000,0.250000,0,0);}
.m1c_c00105{transform:matrix(0.291680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291680,0.000000,0.000000,0.250000,0,0);}
.m59_c00105{transform:matrix(0.291702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291702,0.000000,0.000000,0.250000,0,0);}
.m90_c00105{transform:matrix(0.291753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291753,0.000000,0.000000,0.250000,0,0);}
.m58_c00105{transform:matrix(0.292127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292127,0.000000,0.000000,0.250000,0,0);}
.m8d_c00105{transform:matrix(0.293194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293194,0.000000,0.000000,0.250000,0,0);}
.m93_c00105{transform:matrix(0.294358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294358,0.000000,0.000000,0.250000,0,0);}
.m3f_c00105{transform:matrix(0.294932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294932,0.000000,0.000000,0.250000,0,0);}
.m0_c00105{transform:matrix(0.294995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294995,0.000000,0.000000,0.250000,0,0);}
.m18_c00105{transform:matrix(0.295170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295170,0.000000,0.000000,0.250000,0,0);}
.m1f_c00105{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m35_c00105{transform:matrix(0.297461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297461,0.000000,0.000000,0.250000,0,0);}
.m72_c00105{transform:matrix(0.297807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297807,0.000000,0.000000,0.250000,0,0);}
.m67_c00105{transform:matrix(0.297924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297924,0.000000,0.000000,0.250000,0,0);}
.m4b_c00105{transform:matrix(0.298690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298690,0.000000,0.000000,0.250000,0,0);}
.m64_c00105{transform:matrix(0.298758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298758,0.000000,0.000000,0.250000,0,0);}
.m5d_c00105{transform:matrix(0.298840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298840,0.000000,0.000000,0.250000,0,0);}
.m22_c00105{transform:matrix(0.299140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299140,0.000000,0.000000,0.250000,0,0);}
.m74_c00105{transform:matrix(0.299519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299519,0.000000,0.000000,0.250000,0,0);}
.m6f_c00105{transform:matrix(0.299713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299713,0.000000,0.000000,0.250000,0,0);}
.m27_c00105{transform:matrix(0.299939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299939,0.000000,0.000000,0.250000,0,0);}
.m8a_c00105{transform:matrix(0.300160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300160,0.000000,0.000000,0.250000,0,0);}
.m5f_c00105{transform:matrix(0.300349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300349,0.000000,0.000000,0.250000,0,0);}
.m7f_c00105{transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);}
.m7d_c00105{transform:matrix(0.300627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300627,0.000000,0.000000,0.250000,0,0);}
.m9a_c00105{transform:matrix(0.301275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301275,0.000000,0.000000,0.250000,0,0);}
.m9_c00105{transform:matrix(0.301408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301408,0.000000,0.000000,0.250000,0,0);}
.m41_c00105{transform:matrix(0.301535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301535,0.000000,0.000000,0.250000,0,0);}
.m2f_c00105{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m56_c00105{transform:matrix(0.302703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302703,0.000000,0.000000,0.250000,0,0);}
.m84_c00105{transform:matrix(0.302808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302808,0.000000,0.000000,0.250000,0,0);}
.m2a_c00105{transform:matrix(0.303086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303086,0.000000,0.000000,0.250000,0,0);}
.m71_c00105{transform:matrix(0.303531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303531,0.000000,0.000000,0.250000,0,0);}
.m2e_c00105{transform:matrix(0.304176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304176,0.000000,0.000000,0.250000,0,0);}
.m7c_c00105{transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);}
.m80_c00105{transform:matrix(0.305149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305149,0.000000,0.000000,0.250000,0,0);}
.m3b_c00105{transform:matrix(0.305475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305475,0.000000,0.000000,0.250000,0,0);}
.m20_c00105{transform:matrix(0.307102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307102,0.000000,0.000000,0.250000,0,0);}
.m4_c00105{transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);}
.m79_c00105{transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);}
.m37_c00105{transform:matrix(0.308095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308095,0.000000,0.000000,0.250000,0,0);}
.m3e_c00105{transform:matrix(0.308239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308239,0.000000,0.000000,0.250000,0,0);}
.m4e_c00105{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m60_c00105{transform:matrix(0.309770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309770,0.000000,0.000000,0.250000,0,0);}
.m34_c00105{transform:matrix(0.309845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309845,0.000000,0.000000,0.250000,0,0);}
.m48_c00105{transform:matrix(0.310600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310600,0.000000,0.000000,0.250000,0,0);}
.m45_c00105{transform:matrix(0.310613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310613,0.000000,0.000000,0.250000,0,0);}
.m6d_c00105{transform:matrix(0.310801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310801,0.000000,0.000000,0.250000,0,0);}
.m6b_c00105{transform:matrix(0.310956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310956,0.000000,0.000000,0.250000,0,0);}
.m53_c00105{transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);}
.m16_c00105{transform:matrix(0.312316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312316,0.000000,0.000000,0.250000,0,0);}
.m8_c00105{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.m54_c00105{transform:matrix(0.312932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312932,0.000000,0.000000,0.250000,0,0);}
.m69_c00105{transform:matrix(0.314097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314097,0.000000,0.000000,0.250000,0,0);}
.m42_c00105{transform:matrix(0.314105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314105,0.000000,0.000000,0.250000,0,0);}
.m85_c00105{transform:matrix(0.314815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314815,0.000000,0.000000,0.250000,0,0);}
.m32_c00105{transform:matrix(0.314941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314941,0.000000,0.000000,0.250000,0,0);}
.m43_c00105{transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);}
.m96_c00105{transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);}
.m2d_c00105{transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);}
.m5e_c00105{transform:matrix(0.316688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316688,0.000000,0.000000,0.250000,0,0);}
.m50_c00105{transform:matrix(0.317426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317426,0.000000,0.000000,0.250000,0,0);}
.m92_c00105{transform:matrix(0.318082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318082,0.000000,0.000000,0.250000,0,0);}
.m8f_c00105{transform:matrix(0.320757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320757,0.000000,0.000000,0.250000,0,0);}
.mf_c00105{transform:matrix(0.323053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323053,0.000000,0.000000,0.250000,0,0);}
.m8e_c00105{transform:matrix(0.323122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323122,0.000000,0.000000,0.250000,0,0);}
.m28_c00105{transform:matrix(0.323713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323713,0.000000,0.000000,0.250000,0,0);}
.m4c_c00105{transform:matrix(0.324455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324455,0.000000,0.000000,0.250000,0,0);}
.m38_c00105{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.md_c00105{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.m78_c00105{transform:matrix(0.327640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327640,0.000000,0.000000,0.250000,0,0);}
.m86_c00105{transform:matrix(0.329458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329458,0.000000,0.000000,0.250000,0,0);}
.m1e_c00105{transform:matrix(0.330354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330354,0.000000,0.000000,0.250000,0,0);}
.m3d_c00105{transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);}
.m68_c00105{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m91_c00105{transform:matrix(0.333227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333227,0.000000,0.000000,0.250000,0,0);}
.m65_c00105{transform:matrix(0.336666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336666,0.000000,0.000000,0.250000,0,0);}
.m75_c00105{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m25_c00105{transform:matrix(0.339465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339465,0.000000,0.000000,0.250000,0,0);}
.m81_c00105{transform:matrix(0.340015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340015,0.000000,0.000000,0.250000,0,0);}
.m66_c00105{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.m5c_c00105{transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);}
.m61_c00105{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m83_c00105{transform:matrix(0.349980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349980,0.000000,0.000000,0.250000,0,0);}
.m11_c00105{transform:matrix(0.351400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351400,0.000000,0.000000,0.250000,0,0);}
.m40_c00105{transform:matrix(0.351580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351580,0.000000,0.000000,0.250000,0,0);}
.m63_c00105{transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);}
.m1b_c00105{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m14_c00105{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m5b_c00105{transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);}
.v0_c00105{vertical-align:0.000000px;}
.v1_c00105{vertical-align:17.087400px;}
.lsb_c00105{letter-spacing:-1.419185px;}
.ls1_c00105{letter-spacing:0.000000px;}
.ls4_c00105{letter-spacing:0.533174px;}
.ls9_c00105{letter-spacing:0.541015px;}
.ls8_c00105{letter-spacing:1.301573px;}
.ls6_c00105{letter-spacing:1.348618px;}
.lsa_c00105{letter-spacing:2.132698px;}
.ls3_c00105{letter-spacing:3.206887px;}
.ls5_c00105{letter-spacing:3.489156px;}
.ls0_c00105{letter-spacing:3.762000px;}
.ls2_c00105{letter-spacing:3.920400px;}
.ls7_c00105{letter-spacing:4.237200px;}
.sc__c00105{text-shadow:none;}
.sc0_c00105{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00105{-webkit-text-stroke:0px transparent;}
.sc0_c00105{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00105{word-spacing:-21.734698px;}
.ws1_c00105{word-spacing:0.000000px;}
._1_c00105{width:6.868541px;}
._0_c00105{width:1993.536072px;}
.fc0_c00105{color:transparent;}
.fs1_c00105{font-size:22.176000px;}
.fs2_c00105{font-size:27.720000px;}
.fs7_c00105{font-size:33.660000px;}
.fs8_c00105{font-size:34.848000px;}
.fs9_c00105{font-size:39.204000px;}
.fs5_c00105{font-size:56.628000px;}
.fs4_c00105{font-size:62.568000px;}
.fs0_c00105{font-size:75.240000px;}
.fs3_c00105{font-size:78.408000px;}
.fs6_c00105{font-size:84.744000px;}
.y0_c00105{bottom:0.000000px;}
.y20_c00105{bottom:12.385440px;}
.y1_c00105{bottom:76.500000px;}
.y1f_c00105{bottom:147.100185px;}
.y1e_c00105{bottom:168.489135px;}
.y1d_c00105{bottom:184.527135px;}
.y1c_c00105{bottom:201.272985px;}
.y1b_c00105{bottom:235.843785px;}
.y1a_c00105{bottom:268.993935px;}
.y19_c00105{bottom:301.064985px;}
.y18_c00105{bottom:333.502335px;}
.y17_c00105{bottom:359.519535px;}
.y16_c00105{bottom:367.003935px;}
.y15_c00105{bottom:399.431385px;}
.y14_c00105{bottom:432.576585px;}
.y13_c00105{bottom:465.365385px;}
.y12_c00105{bottom:497.441385px;}
.y11_c00105{bottom:529.165935px;}
.y10_c00105{bottom:562.662585px;}
.yf_c00105{bottom:600.445935px;}
.ye_c00105{bottom:601.871535px;}
.yd_c00105{bottom:659.603385px;}
.yc_c00105{bottom:692.397135px;}
.yb_c00105{bottom:724.468185px;}
.ya_c00105{bottom:756.905535px;}
.y9_c00105{bottom:790.407135px;}
.y8_c00105{bottom:823.195935px;}
.y7_c00105{bottom:855.623385px;}
.y6_c00105{bottom:888.773535px;}
.y5_c00105{bottom:922.987935px;}
.y4_c00105{bottom:1003.534335px;}
.y3_c00105{bottom:1049.504985px;}
.y2_c00105{bottom:1083.006585px;}
.h3_c00105{height:23.128875px;}
.h4_c00105{height:28.911094px;}
.h9_c00105{height:33.035449px;}
.ha_c00105{height:34.201406px;}
.hb_c00105{height:38.476582px;}
.h7_c00105{height:59.061234px;}
.h2_c00105{height:73.843945px;}
.h5_c00105{height:76.953164px;}
.h6_c00105{height:82.343869px;}
.h8_c00105{height:83.171602px;}
.h1_c00105{height:1110.000000px;}
.h0_c00105{height:1263.000000px;}
.w1_c00105{width:733.500000px;}
.w0_c00105{width:892.500000px;}
.x0_c00105{left:0.000000px;}
.x5e_c00105{left:66.299835px;}
.x16_c00105{left:67.878885px;}
.x52_c00105{left:69.264885px;}
.x5_c00105{left:70.339035px;}
.x1_c00105{left:79.500000px;}
.x17_c00105{left:100.979535px;}
.x2a_c00105{left:112.423935px;}
.x3a_c00105{left:123.492135px;}
.x42_c00105{left:125.907735px;}
.x18_c00105{left:134.491035px;}
.x4e_c00105{left:146.950185px;}
.x36_c00105{left:155.785935px;}
.x6_c00105{left:156.968985px;}
.x4b_c00105{left:167.670885px;}
.x24_c00105{left:178.006485px;}
.x53_c00105{left:179.065785px;}
.x5a_c00105{left:180.070635px;}
.x2b_c00105{left:189.218235px;}
.x62_c00105{left:191.158635px;}
.x43_c00105{left:200.425035px;}
.x19_c00105{left:211.364535px;}
.x5f_c00105{left:213.245535px;}
.x3b_c00105{left:222.581235px;}
.xf_c00105{left:224.318685px;}
.x31_c00105{left:234.312735px;}
.x4f_c00105{left:235.664085px;}
.x25_c00105{left:244.098885px;}
.x7_c00105{left:245.222535px;}
.x48_c00105{left:246.410535px;}
.x10_c00105{left:256.394685px;}
.x3e_c00105{left:257.434185px;}
.x50_c00105{left:268.408335px;}
.x8_c00105{left:277.244085px;}
.x37_c00105{left:278.877585px;}
.x5b_c00105{left:280.214085px;}
.x20_c00105{left:289.292385px;}
.x11_c00105{left:300.063585px;}
.x56_c00105{left:301.197135px;}
.x2c_c00105{left:311.240685px;}
.x44_c00105{left:312.314835px;}
.x1a_c00105{left:322.714785px;}
.x32_c00105{left:333.629535px;}
.x54_c00105{left:337.049985px;}
.x1b_c00105{left:345.014535px;}
.x26_c00105{left:355.295685px;}
.x49_c00105{left:357.542985px;}
.x9_c00105{left:367.428135px;}
.x1c_c00105{left:377.402385px;}
.x55_c00105{left:379.718985px;}
.x12_c00105{left:390.351585px;}
.xa_c00105{left:399.494235px;}
.x4c_c00105{left:412.077135px;}
.x21_c00105{left:423.531435px;}
.x5d_c00105{left:424.605585px;}
.x1d_c00105{left:432.639435px;}
.x60_c00105{left:433.708635px;}
.x57_c00105{left:434.857035px;}
.x2d_c00105{left:445.316385px;}
.x4a_c00105{left:456.671685px;}
.x2e_c00105{left:465.789585px;}
.x38_c00105{left:467.383485px;}
.xb_c00105{left:477.733935px;}
.x27_c00105{left:489.455535px;}
.x33_c00105{left:500.528685px;}
.x4_c00105{left:502.073085px;}
.xc_c00105{left:511.230585px;}
.x28_c00105{left:521.729535px;}
.x3c_c00105{left:523.684785px;}
.x13_c00105{left:533.342235px;}
.x3f_c00105{left:534.376785px;}
.x34_c00105{left:544.549035px;}
.x22_c00105{left:545.786535px;}
.x51_c00105{left:550.875135px;}
.xd_c00105{left:555.241035px;}
.x3d_c00105{left:556.844835px;}
.x58_c00105{left:566.838885px;}
.x23_c00105{left:576.625035px;}
.x45_c00105{left:577.699185px;}
.x40_c00105{left:578.842635px;}
.x2f_c00105{left:588.460485px;}
.x1e_c00105{left:598.360485px;}
.x14_c00105{left:600.246435px;}
.x29_c00105{left:610.483035px;}
.x5c_c00105{left:611.552235px;}
.x4d_c00105{left:622.615485px;}
.x3_c00105{left:625.055835px;}
.x15_c00105{left:632.921385px;}
.x59_c00105{left:634.005435px;}
.x2_c00105{left:649.820685px;}
.xe_c00105{left:655.231035px;}
.x46_c00105{left:656.978385px;}
.x1f_c00105{left:666.269535px;}
.x35_c00105{left:667.650585px;}
.x30_c00105{left:679.080135px;}
.x64_c00105{left:688.781640px;}
.x47_c00105{left:690.658185px;}
.x39_c00105{left:692.148135px;}
.x61_c00105{left:694.553835px;}
.x63_c00105{left:698.043585px;}
.x41_c00105{left:700.469085px;}
@media print{
.v0_c00105{vertical-align:0.000000pt;}
.v1_c00105{vertical-align:15.188800pt;}
.lsb_c00105{letter-spacing:-1.261498pt;}
.ls1_c00105{letter-spacing:0.000000pt;}
.ls4_c00105{letter-spacing:0.473933pt;}
.ls9_c00105{letter-spacing:0.480902pt;}
.ls8_c00105{letter-spacing:1.156954pt;}
.ls6_c00105{letter-spacing:1.198771pt;}
.lsa_c00105{letter-spacing:1.895731pt;}
.ls3_c00105{letter-spacing:2.850566pt;}
.ls5_c00105{letter-spacing:3.101472pt;}
.ls0_c00105{letter-spacing:3.344000pt;}
.ls2_c00105{letter-spacing:3.484800pt;}
.ls7_c00105{letter-spacing:3.766400pt;}
.ws0_c00105{word-spacing:-19.319731pt;}
.ws1_c00105{word-spacing:0.000000pt;}
._1_c00105{width:6.105370pt;}
._0_c00105{width:1772.032064pt;}
.fs1_c00105{font-size:19.712000pt;}
.fs2_c00105{font-size:24.640000pt;}
.fs7_c00105{font-size:29.920000pt;}
.fs8_c00105{font-size:30.976000pt;}
.fs9_c00105{font-size:34.848000pt;}
.fs5_c00105{font-size:50.336000pt;}
.fs4_c00105{font-size:55.616000pt;}
.fs0_c00105{font-size:66.880000pt;}
.fs3_c00105{font-size:69.696000pt;}
.fs6_c00105{font-size:75.328000pt;}
.y0_c00105{bottom:0.000000pt;}
.y20_c00105{bottom:11.009280pt;}
.y1_c00105{bottom:68.000000pt;}
.y1f_c00105{bottom:130.755720pt;}
.y1e_c00105{bottom:149.768120pt;}
.y1d_c00105{bottom:164.024120pt;}
.y1c_c00105{bottom:178.909320pt;}
.y1b_c00105{bottom:209.638920pt;}
.y1a_c00105{bottom:239.105720pt;}
.y19_c00105{bottom:267.613320pt;}
.y18_c00105{bottom:296.446520pt;}
.y17_c00105{bottom:319.572920pt;}
.y16_c00105{bottom:326.225720pt;}
.y15_c00105{bottom:355.050120pt;}
.y14_c00105{bottom:384.512520pt;}
.y13_c00105{bottom:413.658120pt;}
.y12_c00105{bottom:442.170120pt;}
.y11_c00105{bottom:470.369720pt;}
.y10_c00105{bottom:500.144520pt;}
.yf_c00105{bottom:533.729720pt;}
.ye_c00105{bottom:534.996920pt;}
.yd_c00105{bottom:586.314120pt;}
.yc_c00105{bottom:615.464120pt;}
.yb_c00105{bottom:643.971720pt;}
.ya_c00105{bottom:672.804920pt;}
.y9_c00105{bottom:702.584120pt;}
.y8_c00105{bottom:731.729720pt;}
.y7_c00105{bottom:760.554120pt;}
.y6_c00105{bottom:790.020920pt;}
.y5_c00105{bottom:820.433720pt;}
.y4_c00105{bottom:892.030520pt;}
.y3_c00105{bottom:932.893320pt;}
.y2_c00105{bottom:962.672520pt;}
.h3_c00105{height:20.559000pt;}
.h4_c00105{height:25.698750pt;}
.h9_c00105{height:29.364844pt;}
.ha_c00105{height:30.401250pt;}
.hb_c00105{height:34.201406pt;}
.h7_c00105{height:52.498875pt;}
.h2_c00105{height:65.639063pt;}
.h5_c00105{height:68.402813pt;}
.h6_c00105{height:73.194550pt;}
.h8_c00105{height:73.930313pt;}
.h1_c00105{height:986.666667pt;}
.h0_c00105{height:1122.666667pt;}
.w1_c00105{width:652.000000pt;}
.w0_c00105{width:793.333333pt;}
.x0_c00105{left:0.000000pt;}
.x5e_c00105{left:58.933187pt;}
.x16_c00105{left:60.336787pt;}
.x52_c00105{left:61.568787pt;}
.x5_c00105{left:62.523587pt;}
.x1_c00105{left:70.666667pt;}
.x17_c00105{left:89.759587pt;}
.x2a_c00105{left:99.932387pt;}
.x3a_c00105{left:109.770787pt;}
.x42_c00105{left:111.917987pt;}
.x18_c00105{left:119.547587pt;}
.x4e_c00105{left:130.622387pt;}
.x36_c00105{left:138.476387pt;}
.x6_c00105{left:139.527987pt;}
.x4b_c00105{left:149.040787pt;}
.x24_c00105{left:158.227987pt;}
.x53_c00105{left:159.169587pt;}
.x5a_c00105{left:160.062787pt;}
.x2b_c00105{left:168.193987pt;}
.x62_c00105{left:169.918787pt;}
.x43_c00105{left:178.155587pt;}
.x19_c00105{left:187.879587pt;}
.x5f_c00105{left:189.551587pt;}
.x3b_c00105{left:197.849987pt;}
.xf_c00105{left:199.394387pt;}
.x31_c00105{left:208.277987pt;}
.x4f_c00105{left:209.479187pt;}
.x25_c00105{left:216.976787pt;}
.x7_c00105{left:217.975587pt;}
.x48_c00105{left:219.031587pt;}
.x10_c00105{left:227.906387pt;}
.x3e_c00105{left:228.830387pt;}
.x50_c00105{left:238.585187pt;}
.x8_c00105{left:246.439187pt;}
.x37_c00105{left:247.891187pt;}
.x5b_c00105{left:249.079187pt;}
.x20_c00105{left:257.148787pt;}
.x11_c00105{left:266.723187pt;}
.x56_c00105{left:267.730787pt;}
.x2c_c00105{left:276.658387pt;}
.x44_c00105{left:277.613187pt;}
.x1a_c00105{left:286.857587pt;}
.x32_c00105{left:296.559587pt;}
.x54_c00105{left:299.599987pt;}
.x1b_c00105{left:306.679587pt;}
.x26_c00105{left:315.818387pt;}
.x49_c00105{left:317.815987pt;}
.x9_c00105{left:326.602787pt;}
.x1c_c00105{left:335.468787pt;}
.x55_c00105{left:337.527987pt;}
.x12_c00105{left:346.979187pt;}
.xa_c00105{left:355.105987pt;}
.x4c_c00105{left:366.290787pt;}
.x21_c00105{left:376.472387pt;}
.x5d_c00105{left:377.427187pt;}
.x1d_c00105{left:384.568387pt;}
.x60_c00105{left:385.518787pt;}
.x57_c00105{left:386.539587pt;}
.x2d_c00105{left:395.836787pt;}
.x4a_c00105{left:405.930387pt;}
.x2e_c00105{left:414.035187pt;}
.x38_c00105{left:415.451987pt;}
.xb_c00105{left:424.652387pt;}
.x27_c00105{left:435.071587pt;}
.x33_c00105{left:444.914387pt;}
.x4_c00105{left:446.287187pt;}
.xc_c00105{left:454.427187pt;}
.x28_c00105{left:463.759587pt;}
.x3c_c00105{left:465.497587pt;}
.x13_c00105{left:474.081987pt;}
.x3f_c00105{left:475.001587pt;}
.x34_c00105{left:484.043587pt;}
.x22_c00105{left:485.143587pt;}
.x51_c00105{left:489.666787pt;}
.xd_c00105{left:493.547587pt;}
.x3d_c00105{left:494.973187pt;}
.x58_c00105{left:503.856787pt;}
.x23_c00105{left:512.555587pt;}
.x45_c00105{left:513.510387pt;}
.x40_c00105{left:514.526787pt;}
.x2f_c00105{left:523.075987pt;}
.x1e_c00105{left:531.875987pt;}
.x14_c00105{left:533.552387pt;}
.x29_c00105{left:542.651587pt;}
.x5c_c00105{left:543.601987pt;}
.x4d_c00105{left:553.435987pt;}
.x3_c00105{left:555.605187pt;}
.x15_c00105{left:562.596787pt;}
.x59_c00105{left:563.560387pt;}
.x2_c00105{left:577.618387pt;}
.xe_c00105{left:582.427587pt;}
.x46_c00105{left:583.980787pt;}
.x1f_c00105{left:592.239587pt;}
.x35_c00105{left:593.467187pt;}
.x30_c00105{left:603.626787pt;}
.x64_c00105{left:612.250347pt;}
.x47_c00105{left:613.918387pt;}
.x39_c00105{left:615.242787pt;}
.x61_c00105{left:617.381187pt;}
.x63_c00105{left:620.483187pt;}
.x41_c00105{left:622.639187pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c3e20f42a7f02c4404bf36c1.woff2')format("woff");}.ff1_c00106{font-family:ff1_c00106;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00106;src:url('chunks/assets/font_1204df718fbc33d67e0615ab.woff2')format("woff");}.ff2_c00106{font-family:ff2_c00106;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00106;src:url('chunks/assets/font_5a3e50efd11bd4d4ec2f6bb2.woff2')format("woff");}.ff3_c00106{font-family:ff3_c00106;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00106;src:url('chunks/assets/font_e65060340111ac368c4958e0.woff2')format("woff");}.ff4_c00106{font-family:ff4_c00106;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00106;src:url('chunks/assets/font_08cb79062079c858a4e5948b.woff2')format("woff");}.ff5_c00106{font-family:ff5_c00106;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00106;src:url('chunks/assets/font_b9c109855e60455b33048b3f.woff2')format("woff");}.ff6_c00106{font-family:ff6_c00106;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mb_c00106{transform:matrix(0.109893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109893,0.000000,0.000000,0.250000,0,0);}
.m9f_c00106{transform:matrix(0.156977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156977,0.000000,0.000000,0.250000,0,0);}
.m98_c00106{transform:matrix(0.186241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186241,0.000000,0.000000,0.250000,0,0);}
.mb1_c00106{transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);}
.mb8_c00106{transform:matrix(0.209086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209086,0.000000,0.000000,0.250000,0,0);}
.m2e_c00106{transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);}
.m23_c00106{transform:matrix(0.218264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218264,0.000000,0.000000,0.250000,0,0);}
.m2_c00106{transform:matrix(0.238687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238687,0.000000,0.000000,0.250000,0,0);}
.m0_c00106{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m78_c00106{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.m9e_c00106{transform:matrix(0.252174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252174,0.000000,0.000000,0.250000,0,0);}
.m5b_c00106{transform:matrix(0.255859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255859,0.000000,0.000000,0.250000,0,0);}
.ma4_c00106{transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);}
.maf_c00106{transform:matrix(0.258997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258997,0.000000,0.000000,0.250000,0,0);}
.m62_c00106{transform:matrix(0.259151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259151,0.000000,0.000000,0.250000,0,0);}
.mac_c00106{transform:matrix(0.259211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259211,0.000000,0.000000,0.250000,0,0);}
.m1b_c00106{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m44_c00106{transform:matrix(0.261823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261823,0.000000,0.000000,0.250000,0,0);}
.m5f_c00106{transform:matrix(0.262122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262122,0.000000,0.000000,0.250000,0,0);}
.m52_c00106{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m66_c00106{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.md_c00106{transform:matrix(0.264390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264390,0.000000,0.000000,0.250000,0,0);}
.mb0_c00106{transform:matrix(0.265699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265699,0.000000,0.000000,0.250000,0,0);}
.m9d_c00106{transform:matrix(0.265894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265894,0.000000,0.000000,0.250000,0,0);}
.m72_c00106{transform:matrix(0.265916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265916,0.000000,0.000000,0.250000,0,0);}
.m91_c00106{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.m6_c00106{transform:matrix(0.267199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267199,0.000000,0.000000,0.250000,0,0);}
.m8_c00106{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m79_c00106{transform:matrix(0.268107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268107,0.000000,0.000000,0.250000,0,0);}
.m55_c00106{transform:matrix(0.269857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269857,0.000000,0.000000,0.250000,0,0);}
.m13_c00106{transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);}
.m1f_c00106{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.mb5_c00106{transform:matrix(0.271035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271035,0.000000,0.000000,0.250000,0,0);}
.m6f_c00106{transform:matrix(0.271504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271504,0.000000,0.000000,0.250000,0,0);}
.m19_c00106{transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);}
.m26_c00106{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m87_c00106{transform:matrix(0.273774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273774,0.000000,0.000000,0.250000,0,0);}
.m8f_c00106{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.maa_c00106{transform:matrix(0.275693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275693,0.000000,0.000000,0.250000,0,0);}
.m94_c00106{transform:matrix(0.276181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276181,0.000000,0.000000,0.250000,0,0);}
.mbb_c00106{transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);}
.m1a_c00106{transform:matrix(0.277241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277241,0.000000,0.000000,0.250000,0,0);}
.m22_c00106{transform:matrix(0.279018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279018,0.000000,0.000000,0.250000,0,0);}
.m47_c00106{transform:matrix(0.279721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279721,0.000000,0.000000,0.250000,0,0);}
.m7c_c00106{transform:matrix(0.280392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280392,0.000000,0.000000,0.250000,0,0);}
.ma_c00106{transform:matrix(0.280503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280503,0.000000,0.000000,0.250000,0,0);}
.m42_c00106{transform:matrix(0.280858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280858,0.000000,0.000000,0.250000,0,0);}
.m48_c00106{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.m75_c00106{transform:matrix(0.281974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281974,0.000000,0.000000,0.250000,0,0);}
.m5e_c00106{transform:matrix(0.282446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282446,0.000000,0.000000,0.250000,0,0);}
.ma1_c00106{transform:matrix(0.282543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282543,0.000000,0.000000,0.250000,0,0);}
.m8d_c00106{transform:matrix(0.282587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282587,0.000000,0.000000,0.250000,0,0);}
.m34_c00106{transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);}
.m88_c00106{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m33_c00106{transform:matrix(0.283931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283931,0.000000,0.000000,0.250000,0,0);}
.m4_c00106{transform:matrix(0.284784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284784,0.000000,0.000000,0.250000,0,0);}
.m6d_c00106{transform:matrix(0.285021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285021,0.000000,0.000000,0.250000,0,0);}
.m3a_c00106{transform:matrix(0.285076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285076,0.000000,0.000000,0.250000,0,0);}
.m3_c00106{transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);}
.m9_c00106{transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);}
.m1c_c00106{transform:matrix(0.286030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286030,0.000000,0.000000,0.250000,0,0);}
.m70_c00106{transform:matrix(0.286477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286477,0.000000,0.000000,0.250000,0,0);}
.m6a_c00106{transform:matrix(0.286785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286785,0.000000,0.000000,0.250000,0,0);}
.m6e_c00106{transform:matrix(0.287090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287090,0.000000,0.000000,0.250000,0,0);}
.m4e_c00106{transform:matrix(0.287431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287431,0.000000,0.000000,0.250000,0,0);}
.m10_c00106{transform:matrix(0.287504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287504,0.000000,0.000000,0.250000,0,0);}
.m80_c00106{transform:matrix(0.287688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287688,0.000000,0.000000,0.250000,0,0);}
.m5_c00106{transform:matrix(0.287971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287971,0.000000,0.000000,0.250000,0,0);}
.mbc_c00106{transform:matrix(0.288372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288372,0.000000,0.000000,0.250000,0,0);}
.mc0_c00106{transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);}
.m3f_c00106{transform:matrix(0.288532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288532,0.000000,0.000000,0.250000,0,0);}
.mc1_c00106{transform:matrix(0.289278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289278,0.000000,0.000000,0.250000,0,0);}
.m65_c00106{transform:matrix(0.289421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289421,0.000000,0.000000,0.250000,0,0);}
.m1_c00106{transform:matrix(0.289529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289529,0.000000,0.000000,0.250000,0,0);}
.m3b_c00106{transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);}
.m64_c00106{transform:matrix(0.291302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291302,0.000000,0.000000,0.250000,0,0);}
.m81_c00106{transform:matrix(0.291530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291530,0.000000,0.000000,0.250000,0,0);}
.m2f_c00106{transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);}
.m4a_c00106{transform:matrix(0.292203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292203,0.000000,0.000000,0.250000,0,0);}
.m9c_c00106{transform:matrix(0.292614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292614,0.000000,0.000000,0.250000,0,0);}
.mb4_c00106{transform:matrix(0.293442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293442,0.000000,0.000000,0.250000,0,0);}
.m43_c00106{transform:matrix(0.293525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293525,0.000000,0.000000,0.250000,0,0);}
.me_c00106{transform:matrix(0.293670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293670,0.000000,0.000000,0.250000,0,0);}
.m68_c00106{transform:matrix(0.293738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293738,0.000000,0.000000,0.250000,0,0);}
.m54_c00106{transform:matrix(0.294116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294116,0.000000,0.000000,0.250000,0,0);}
.m3e_c00106{transform:matrix(0.294443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294443,0.000000,0.000000,0.250000,0,0);}
.mad_c00106{transform:matrix(0.294775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294775,0.000000,0.000000,0.250000,0,0);}
.m36_c00106{transform:matrix(0.294920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294920,0.000000,0.000000,0.250000,0,0);}
.m4b_c00106{transform:matrix(0.295112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295112,0.000000,0.000000,0.250000,0,0);}
.m8b_c00106{transform:matrix(0.295345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295345,0.000000,0.000000,0.250000,0,0);}
.m18_c00106{transform:matrix(0.295347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295347,0.000000,0.000000,0.250000,0,0);}
.m29_c00106{transform:matrix(0.296089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296089,0.000000,0.000000,0.250000,0,0);}
.m30_c00106{transform:matrix(0.296830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296830,0.000000,0.000000,0.250000,0,0);}
.mf_c00106{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m46_c00106{transform:matrix(0.297216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297216,0.000000,0.000000,0.250000,0,0);}
.m9a_c00106{transform:matrix(0.297367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297367,0.000000,0.000000,0.250000,0,0);}
.m85_c00106{transform:matrix(0.297808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297808,0.000000,0.000000,0.250000,0,0);}
.m9b_c00106{transform:matrix(0.298017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298017,0.000000,0.000000,0.250000,0,0);}
.m57_c00106{transform:matrix(0.298825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298825,0.000000,0.000000,0.250000,0,0);}
.m83_c00106{transform:matrix(0.299511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299511,0.000000,0.000000,0.250000,0,0);}
.m38_c00106{transform:matrix(0.300393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300393,0.000000,0.000000,0.250000,0,0);}
.mbf_c00106{transform:matrix(0.300434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300434,0.000000,0.000000,0.250000,0,0);}
.m56_c00106{transform:matrix(0.300577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300577,0.000000,0.000000,0.250000,0,0);}
.m4d_c00106{transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);}
.mb3_c00106{transform:matrix(0.301056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301056,0.000000,0.000000,0.250000,0,0);}
.mba_c00106{transform:matrix(0.301394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301394,0.000000,0.000000,0.250000,0,0);}
.m11_c00106{transform:matrix(0.301967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301967,0.000000,0.000000,0.250000,0,0);}
.m5c_c00106{transform:matrix(0.302359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302359,0.000000,0.000000,0.250000,0,0);}
.m1d_c00106{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m14_c00106{transform:matrix(0.302452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302452,0.000000,0.000000,0.250000,0,0);}
.m71_c00106{transform:matrix(0.302581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302581,0.000000,0.000000,0.250000,0,0);}
.m31_c00106{transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);}
.m7e_c00106{transform:matrix(0.303408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303408,0.000000,0.000000,0.250000,0,0);}
.m20_c00106{transform:matrix(0.304105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304105,0.000000,0.000000,0.250000,0,0);}
.m37_c00106{transform:matrix(0.304153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304153,0.000000,0.000000,0.250000,0,0);}
.m17_c00106{transform:matrix(0.304516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304516,0.000000,0.000000,0.250000,0,0);}
.m49_c00106{transform:matrix(0.304819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304819,0.000000,0.000000,0.250000,0,0);}
.m58_c00106{transform:matrix(0.305107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305107,0.000000,0.000000,0.250000,0,0);}
.ma7_c00106{transform:matrix(0.305394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305394,0.000000,0.000000,0.250000,0,0);}
.m32_c00106{transform:matrix(0.305866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305866,0.000000,0.000000,0.250000,0,0);}
.ma6_c00106{transform:matrix(0.306455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306455,0.000000,0.000000,0.250000,0,0);}
.m4c_c00106{transform:matrix(0.306661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306661,0.000000,0.000000,0.250000,0,0);}
.m7b_c00106{transform:matrix(0.307112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307112,0.000000,0.000000,0.250000,0,0);}
.m3c_c00106{transform:matrix(0.307519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307519,0.000000,0.000000,0.250000,0,0);}
.m24_c00106{transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);}
.m12_c00106{transform:matrix(0.307919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307919,0.000000,0.000000,0.250000,0,0);}
.m1e_c00106{transform:matrix(0.308509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308509,0.000000,0.000000,0.250000,0,0);}
.m2c_c00106{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m8e_c00106{transform:matrix(0.308629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308629,0.000000,0.000000,0.250000,0,0);}
.m21_c00106{transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);}
.m97_c00106{transform:matrix(0.309509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309509,0.000000,0.000000,0.250000,0,0);}
.mc_c00106{transform:matrix(0.310455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310455,0.000000,0.000000,0.250000,0,0);}
.m7d_c00106{transform:matrix(0.311143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311143,0.000000,0.000000,0.250000,0,0);}
.m73_c00106{transform:matrix(0.311256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311256,0.000000,0.000000,0.250000,0,0);}
.m41_c00106{transform:matrix(0.312391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312391,0.000000,0.000000,0.250000,0,0);}
.m53_c00106{transform:matrix(0.312443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312443,0.000000,0.000000,0.250000,0,0);}
.mae_c00106{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.mb7_c00106{transform:matrix(0.313301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313301,0.000000,0.000000,0.250000,0,0);}
.m95_c00106{transform:matrix(0.313395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313395,0.000000,0.000000,0.250000,0,0);}
.m7_c00106{transform:matrix(0.314528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314528,0.000000,0.000000,0.250000,0,0);}
.ma5_c00106{transform:matrix(0.314593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314593,0.000000,0.000000,0.250000,0,0);}
.m39_c00106{transform:matrix(0.314959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314959,0.000000,0.000000,0.250000,0,0);}
.ma3_c00106{transform:matrix(0.315314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315314,0.000000,0.000000,0.250000,0,0);}
.m82_c00106{transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);}
.mb6_c00106{transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);}
.ma9_c00106{transform:matrix(0.316708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316708,0.000000,0.000000,0.250000,0,0);}
.m2d_c00106{transform:matrix(0.316886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316886,0.000000,0.000000,0.250000,0,0);}
.mbe_c00106{transform:matrix(0.317419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317419,0.000000,0.000000,0.250000,0,0);}
.m96_c00106{transform:matrix(0.318218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318218,0.000000,0.000000,0.250000,0,0);}
.mb9_c00106{transform:matrix(0.318405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318405,0.000000,0.000000,0.250000,0,0);}
.m5d_c00106{transform:matrix(0.318694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318694,0.000000,0.000000,0.250000,0,0);}
.m76_c00106{transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);}
.m40_c00106{transform:matrix(0.319808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319808,0.000000,0.000000,0.250000,0,0);}
.m50_c00106{transform:matrix(0.321186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321186,0.000000,0.000000,0.250000,0,0);}
.m86_c00106{transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);}
.m15_c00106{transform:matrix(0.321640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321640,0.000000,0.000000,0.250000,0,0);}
.mab_c00106{transform:matrix(0.325086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325086,0.000000,0.000000,0.250000,0,0);}
.m7a_c00106{transform:matrix(0.325470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325470,0.000000,0.000000,0.250000,0,0);}
.m5a_c00106{transform:matrix(0.325617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325617,0.000000,0.000000,0.250000,0,0);}
.m84_c00106{transform:matrix(0.325824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325824,0.000000,0.000000,0.250000,0,0);}
.m90_c00106{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.m93_c00106{transform:matrix(0.327636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327636,0.000000,0.000000,0.250000,0,0);}
.m89_c00106{transform:matrix(0.327932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327932,0.000000,0.000000,0.250000,0,0);}
.m51_c00106{transform:matrix(0.328208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328208,0.000000,0.000000,0.250000,0,0);}
.m2b_c00106{transform:matrix(0.328844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328844,0.000000,0.000000,0.250000,0,0);}
.m35_c00106{transform:matrix(0.328916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328916,0.000000,0.000000,0.250000,0,0);}
.ma2_c00106{transform:matrix(0.329713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329713,0.000000,0.000000,0.250000,0,0);}
.m74_c00106{transform:matrix(0.330723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330723,0.000000,0.000000,0.250000,0,0);}
.m92_c00106{transform:matrix(0.330808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330808,0.000000,0.000000,0.250000,0,0);}
.m8a_c00106{transform:matrix(0.331794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331794,0.000000,0.000000,0.250000,0,0);}
.m69_c00106{transform:matrix(0.332458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332458,0.000000,0.000000,0.250000,0,0);}
.m28_c00106{transform:matrix(0.332499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332499,0.000000,0.000000,0.250000,0,0);}
.m60_c00106{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m99_c00106{transform:matrix(0.333350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333350,0.000000,0.000000,0.250000,0,0);}
.mbd_c00106{transform:matrix(0.335271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335271,0.000000,0.000000,0.250000,0,0);}
.m8c_c00106{transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);}
.m4f_c00106{transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);}
.m16_c00106{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m6b_c00106{transform:matrix(0.339419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339419,0.000000,0.000000,0.250000,0,0);}
.m7f_c00106{transform:matrix(0.340270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340270,0.000000,0.000000,0.250000,0,0);}
.m67_c00106{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.m63_c00106{transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);}
.m59_c00106{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m77_c00106{transform:matrix(0.350937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350937,0.000000,0.000000,0.250000,0,0);}
.m61_c00106{transform:matrix(0.350982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350982,0.000000,0.000000,0.250000,0,0);}
.m3d_c00106{transform:matrix(0.354088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354088,0.000000,0.000000,0.250000,0,0);}
.m25_c00106{transform:matrix(0.355213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355213,0.000000,0.000000,0.250000,0,0);}
.m2a_c00106{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.mb2_c00106{transform:matrix(0.355348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355348,0.000000,0.000000,0.250000,0,0);}
.m27_c00106{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.ma8_c00106{transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);}
.m6c_c00106{transform:matrix(0.379255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379255,0.000000,0.000000,0.250000,0,0);}
.m45_c00106{transform:matrix(0.381458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381458,0.000000,0.000000,0.250000,0,0);}
.ma0_c00106{transform:matrix(0.389181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389181,0.000000,0.000000,0.250000,0,0);}
.v0_c00106{vertical-align:0.000000px;}
.ls4_c00106{letter-spacing:-2.952180px;}
.ls10_c00106{letter-spacing:-2.938327px;}
.ls8_c00106{letter-spacing:-2.744280px;}
.ls7_c00106{letter-spacing:-2.418577px;}
.lsa_c00106{letter-spacing:-1.427026px;}
.ls12_c00106{letter-spacing:-1.419185px;}
.ls2_c00106{letter-spacing:0.000000px;}
.ls6_c00106{letter-spacing:0.588060px;}
.lsf_c00106{letter-spacing:1.623046px;}
.lsb_c00106{letter-spacing:1.960200px;}
.lse_c00106{letter-spacing:2.908937px;}
.ls1_c00106{letter-spacing:3.559723px;}
.ls3_c00106{letter-spacing:3.801610px;}
.lsc_c00106{letter-spacing:3.831310px;}
.ls5_c00106{letter-spacing:3.920400px;}
.lsd_c00106{letter-spacing:4.197610px;}
.ls0_c00106{letter-spacing:9.408960px;}
.ls9_c00106{letter-spacing:49.896198px;}
.ls13_c00106{letter-spacing:51.321798px;}
.ls11_c00106{letter-spacing:61.300998px;}
.sc__c00106{text-shadow:none;}
.sc0_c00106{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00106{-webkit-text-stroke:0px transparent;}
.sc0_c00106{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00106{word-spacing:0.000000px;}
._0_c00106{width:9.487368px;}
._2_c00106{width:10.506672px;}
._1_c00106{width:22.267872px;}
.fc0_c00106{color:transparent;}
.fs6_c00106{font-size:13.860000px;}
.fs3_c00106{font-size:22.176000px;}
.fs8_c00106{font-size:26.928000px;}
.fs0_c00106{font-size:27.720000px;}
.fs10_c00106{font-size:32.472000px;}
.fs14_c00106{font-size:33.660000px;}
.fsa_c00106{font-size:39.600000px;}
.fs13_c00106{font-size:46.134000px;}
.fsd_c00106{font-size:47.322000px;}
.fs9_c00106{font-size:49.896198px;}
.fsf_c00106{font-size:51.321798px;}
.fs12_c00106{font-size:56.628000px;}
.fse_c00106{font-size:61.300998px;}
.fs11_c00106{font-size:66.330000px;}
.fs7_c00106{font-size:69.102198px;}
.fs2_c00106{font-size:75.240000px;}
.fs1_c00106{font-size:76.032198px;}
.fsb_c00106{font-size:76.626198px;}
.fs5_c00106{font-size:78.408000px;}
.fsc_c00106{font-size:83.952198px;}
.fs4_c00106{font-size:84.348000px;}
.y0_c00106{bottom:0.000000px;}
.y2a_c00106{bottom:41.610735px;}
.y29_c00106{bottom:50.872185px;}
.y27_c00106{bottom:65.133135px;}
.y1_c00106{bottom:76.500000px;}
.y28_c00106{bottom:109.683135px;}
.y26_c00106{bottom:134.274735px;}
.y25_c00106{bottom:149.243535px;}
.y24_c00106{bottom:164.920185px;}
.y23_c00106{bottom:176.329935px;}
.y22_c00106{bottom:201.629385px;}
.y21_c00106{bottom:221.231385px;}
.y20_c00106{bottom:235.487385px;}
.y1f_c00106{bottom:267.924735px;}
.y1e_c00106{bottom:301.069935px;}
.y1d_c00106{bottom:323.523135px;}
.y1c_c00106{bottom:334.210185px;}
.y1b_c00106{bottom:368.073135px;}
.y1a_c00106{bottom:400.861935px;}
.y19_c00106{bottom:433.650735px;}
.y18_c00106{bottom:465.721785px;}
.y17_c00106{bottom:492.100335px;}
.y16_c00106{bottom:499.936185px;}
.y15_c00106{bottom:532.012185px;}
.y14_c00106{bottom:564.444585px;}
.y13_c00106{bottom:597.233385px;}
.y12_c00106{bottom:628.957935px;}
.y11_c00106{bottom:661.746735px;}
.y10_c00106{bottom:694.174185px;}
.yf_c00106{bottom:726.250185px;}
.ye_c00106{bottom:759.395385px;}
.yd_c00106{bottom:774.364185px;}
.yc_c00106{bottom:792.184185px;}
.yb_c00106{bottom:826.403535px;}
.ya_c00106{bottom:859.192335px;}
.y9_c00106{bottom:892.337535px;}
.y7_c00106{bottom:920.493135px;}
.y8_c00106{bottom:920.844585px;}
.y6_c00106{bottom:925.834185px;}
.y5_c00106{bottom:1054.850985px;}
.y4_c00106{bottom:1064.473785px;}
.y3_c00106{bottom:1077.660585px;}
.y2_c00106{bottom:1081.224585px;}
.h8_c00106{height:14.455547px;}
.h5_c00106{height:23.128875px;}
.ha_c00106{height:28.085063px;}
.h2_c00106{height:28.911094px;}
.h18_c00106{height:33.035449px;}
.hb_c00106{height:33.230868px;}
.h14_c00106{height:33.867281px;}
.h13_c00106{height:34.180317px;}
.h12_c00106{height:40.826465px;}
.hc_c00106{height:41.301563px;}
.h17_c00106{height:48.116320px;}
.hf_c00106{height:49.355367px;}
.h16_c00106{height:59.061234px;}
.h9_c00106{height:67.820028px;}
.h15_c00106{height:69.180117px;}
.h3_c00106{height:74.621444px;}
.hd_c00106{height:75.167008px;}
.h7_c00106{height:76.953164px;}
.h4_c00106{height:78.472969px;}
.h11_c00106{height:79.020563px;}
.he_c00106{height:82.353499px;}
.h10_c00106{height:82.394491px;}
.h6_c00106{height:82.782949px;}
.h1_c00106{height:1110.000000px;}
.h0_c00106{height:1263.000000px;}
.w1_c00106{width:733.500000px;}
.w0_c00106{width:892.500000px;}
.x0_c00106{left:0.000000px;}
.x2_c00106{left:38.396685px;}
.x46_c00106{left:67.656135px;}
.x1c_c00106{left:68.755035px;}
.x67_c00106{left:70.408335px;}
.x13_c00106{left:71.710185px;}
.x1_c00106{left:79.500000px;}
.x50_c00106{left:89.792535px;}
.x68_c00106{left:91.401285px;}
.x22_c00106{left:102.098235px;}
.x51_c00106{left:108.246135px;}
.x41_c00106{left:112.661535px;}
.x5e_c00106{left:113.750535px;}
.x52_c00106{left:122.997135px;}
.x6_c00106{left:124.630635px;}
.x29_c00106{left:134.654385px;}
.x38_c00106{left:135.901785px;}
.x23_c00106{left:146.969985px;}
.x7_c00106{left:157.409535px;}
.x32_c00106{left:167.547135px;}
.x3d_c00106{left:168.710385px;}
.x57_c00106{left:178.956885px;}
.x14_c00106{left:180.125085px;}
.x10_c00106{left:189.208335px;}
.x8_c00106{left:190.718085px;}
.x42_c00106{left:199.949835px;}
.x2a_c00106{left:201.167535px;}
.x69_c00106{left:202.236735px;}
.x24_c00106{left:213.151485px;}
.x31_c00106{left:218.576685px;}
.x33_c00106{left:223.595985px;}
.x49_c00106{left:224.660235px;}
.x11_c00106{left:233.654385px;}
.x2b_c00106{left:234.985935px;}
.x43_c00106{left:236.045235px;}
.x12_c00106{left:245.747235px;}
.x25_c00106{left:246.752085px;}
.x55_c00106{left:258.146985px;}
.x63_c00106{left:259.240935px;}
.x39_c00106{left:267.269835px;}
.x2c_c00106{left:269.185485px;}
.x9_c00106{left:278.966685px;}
.x66_c00106{left:280.511085px;}
.x15_c00106{left:290.985285px;}
.x64_c00106{left:292.326735px;}
.x5a_c00106{left:293.811735px;}
.x4c_c00106{left:301.117935px;}
.x5b_c00106{left:304.830435px;}
.x34_c00106{left:313.418685px;}
.x6a_c00106{left:319.239885px;}
.x16_c00106{left:323.511735px;}
.x1d_c00106{left:324.759135px;}
.x2d_c00106{left:335.159085px;}
.x5f_c00106{left:336.183735px;}
.x5c_c00106{left:338.168685px;}
.x3e_c00106{left:345.667935px;}
.x1e_c00106{left:356.731185px;}
.x26_c00106{left:358.676535px;}
.xa_c00106{left:368.680485px;}
.x54_c00106{left:370.036785px;}
.x3a_c00106{left:380.773335px;}
.x27_c00106{left:391.133685px;}
.x35_c00106{left:402.894885px;}
.xb_c00106{left:413.898735px;}
.x36_c00106{left:422.699835px;}
.x17_c00106{left:424.506585px;}
.x44_c00106{left:435.040185px;}
.x60_c00106{left:436.668735px;}
.x2e_c00106{left:446.692485px;}
.x18_c00106{left:458.097285px;}
.x37_c00106{left:468.249735px;}
.x1f_c00106{left:478.902135px;}
.x2f_c00106{left:480.179235px;}
.xc_c00106{left:490.569285px;}
.x59_c00106{left:494.613435px;}
.x56_c00106{left:502.206735px;}
.x3f_c00106{left:513.725385px;}
.xd_c00106{left:522.848235px;}
.x61_c00106{left:525.466785px;}
.x47_c00106{left:534.500535px;}
.x19_c00106{left:537.297285px;}
.x28_c00106{left:546.167685px;}
.xe_c00106{left:556.666635px;}
.x4a_c00106{left:557.928885px;}
.x4d_c00106{left:568.140735px;}
.x3b_c00106{left:569.274285px;}
.x20_c00106{left:579.659385px;}
.x40_c00106{left:590.989935px;}
.x30_c00106{left:600.835485px;}
.x53_c00106{left:602.478885px;}
.x4f_c00106{left:604.508385px;}
.x4b_c00106{left:611.190885px;}
.x1a_c00106{left:612.339285px;}
.xf_c00106{left:624.897435px;}
.x45_c00106{left:634.074735px;}
.x3c_c00106{left:635.228085px;}
.x3_c00106{left:646.613085px;}
.x5d_c00106{left:649.058385px;}
.x21_c00106{left:657.176385px;}
.x4e_c00106{left:658.408935px;}
.x1b_c00106{left:668.412885px;}
.x48_c00106{left:679.421685px;}
.x58_c00106{left:680.565135px;}
.x5_c00106{left:684.218235px;}
.x62_c00106{left:686.198235px;}
.x65_c00106{left:687.401085px;}
.x4_c00106{left:692.930235px;}
@media print{
.v0_c00106{vertical-align:0.000000pt;}
.ls4_c00106{letter-spacing:-2.624160pt;}
.ls10_c00106{letter-spacing:-2.611846pt;}
.ls8_c00106{letter-spacing:-2.439360pt;}
.ls7_c00106{letter-spacing:-2.149846pt;}
.lsa_c00106{letter-spacing:-1.268467pt;}
.ls12_c00106{letter-spacing:-1.261498pt;}
.ls2_c00106{letter-spacing:0.000000pt;}
.ls6_c00106{letter-spacing:0.522720pt;}
.lsf_c00106{letter-spacing:1.442707pt;}
.lsb_c00106{letter-spacing:1.742400pt;}
.lse_c00106{letter-spacing:2.585722pt;}
.ls1_c00106{letter-spacing:3.164198pt;}
.ls3_c00106{letter-spacing:3.379209pt;}
.lsc_c00106{letter-spacing:3.405609pt;}
.ls5_c00106{letter-spacing:3.484800pt;}
.lsd_c00106{letter-spacing:3.731209pt;}
.ls0_c00106{letter-spacing:8.363520pt;}
.ls9_c00106{letter-spacing:44.352176pt;}
.ls13_c00106{letter-spacing:45.619376pt;}
.ls11_c00106{letter-spacing:54.489776pt;}
.ws0_c00106{word-spacing:0.000000pt;}
._0_c00106{width:8.433216pt;}
._2_c00106{width:9.339264pt;}
._1_c00106{width:19.793664pt;}
.fs6_c00106{font-size:12.320000pt;}
.fs3_c00106{font-size:19.712000pt;}
.fs8_c00106{font-size:23.936000pt;}
.fs0_c00106{font-size:24.640000pt;}
.fs10_c00106{font-size:28.864000pt;}
.fs14_c00106{font-size:29.920000pt;}
.fsa_c00106{font-size:35.200000pt;}
.fs13_c00106{font-size:41.008000pt;}
.fsd_c00106{font-size:42.064000pt;}
.fs9_c00106{font-size:44.352176pt;}
.fsf_c00106{font-size:45.619376pt;}
.fs12_c00106{font-size:50.336000pt;}
.fse_c00106{font-size:54.489776pt;}
.fs11_c00106{font-size:58.960000pt;}
.fs7_c00106{font-size:61.424176pt;}
.fs2_c00106{font-size:66.880000pt;}
.fs1_c00106{font-size:67.584176pt;}
.fsb_c00106{font-size:68.112176pt;}
.fs5_c00106{font-size:69.696000pt;}
.fsc_c00106{font-size:74.624176pt;}
.fs4_c00106{font-size:74.976000pt;}
.y0_c00106{bottom:0.000000pt;}
.y2a_c00106{bottom:36.987320pt;}
.y29_c00106{bottom:45.219720pt;}
.y27_c00106{bottom:57.896120pt;}
.y1_c00106{bottom:68.000000pt;}
.y28_c00106{bottom:97.496120pt;}
.y26_c00106{bottom:119.355320pt;}
.y25_c00106{bottom:132.660920pt;}
.y24_c00106{bottom:146.595720pt;}
.y23_c00106{bottom:156.737720pt;}
.y22_c00106{bottom:179.226120pt;}
.y21_c00106{bottom:196.650120pt;}
.y20_c00106{bottom:209.322120pt;}
.y1f_c00106{bottom:238.155320pt;}
.y1e_c00106{bottom:267.617720pt;}
.y1d_c00106{bottom:287.576120pt;}
.y1c_c00106{bottom:297.075720pt;}
.y1b_c00106{bottom:327.176120pt;}
.y1a_c00106{bottom:356.321720pt;}
.y19_c00106{bottom:385.467320pt;}
.y18_c00106{bottom:413.974920pt;}
.y17_c00106{bottom:437.422520pt;}
.y16_c00106{bottom:444.387720pt;}
.y15_c00106{bottom:472.899720pt;}
.y14_c00106{bottom:501.728520pt;}
.y13_c00106{bottom:530.874120pt;}
.y12_c00106{bottom:559.073720pt;}
.y11_c00106{bottom:588.219320pt;}
.y10_c00106{bottom:617.043720pt;}
.yf_c00106{bottom:645.555720pt;}
.ye_c00106{bottom:675.018120pt;}
.yd_c00106{bottom:688.323720pt;}
.yc_c00106{bottom:704.163720pt;}
.yb_c00106{bottom:734.580920pt;}
.ya_c00106{bottom:763.726520pt;}
.y9_c00106{bottom:793.188920pt;}
.y7_c00106{bottom:818.216120pt;}
.y8_c00106{bottom:818.528520pt;}
.y6_c00106{bottom:822.963720pt;}
.y5_c00106{bottom:937.645320pt;}
.y4_c00106{bottom:946.198920pt;}
.y3_c00106{bottom:957.920520pt;}
.y2_c00106{bottom:961.088520pt;}
.h8_c00106{height:12.849375pt;}
.h5_c00106{height:20.559000pt;}
.ha_c00106{height:24.964500pt;}
.h2_c00106{height:25.698750pt;}
.h18_c00106{height:29.364844pt;}
.hb_c00106{height:29.538549pt;}
.h14_c00106{height:30.104250pt;}
.h13_c00106{height:30.382504pt;}
.h12_c00106{height:36.290191pt;}
.hc_c00106{height:36.712500pt;}
.h17_c00106{height:42.770063pt;}
.hf_c00106{height:43.871438pt;}
.h16_c00106{height:52.498875pt;}
.h9_c00106{height:60.284470pt;}
.h15_c00106{height:61.493438pt;}
.h3_c00106{height:66.330173pt;}
.hd_c00106{height:66.815118pt;}
.h7_c00106{height:68.402813pt;}
.h4_c00106{height:69.753750pt;}
.h11_c00106{height:70.240500pt;}
.he_c00106{height:73.203110pt;}
.h10_c00106{height:73.239548pt;}
.h6_c00106{height:73.584844pt;}
.h1_c00106{height:986.666667pt;}
.h0_c00106{height:1122.666667pt;}
.w1_c00106{width:652.000000pt;}
.w0_c00106{width:793.333333pt;}
.x0_c00106{left:0.000000pt;}
.x2_c00106{left:34.130387pt;}
.x46_c00106{left:60.138787pt;}
.x1c_c00106{left:61.115587pt;}
.x67_c00106{left:62.585187pt;}
.x13_c00106{left:63.742387pt;}
.x1_c00106{left:70.666667pt;}
.x50_c00106{left:79.815587pt;}
.x68_c00106{left:81.245587pt;}
.x22_c00106{left:90.753987pt;}
.x51_c00106{left:96.218787pt;}
.x41_c00106{left:100.143587pt;}
.x5e_c00106{left:101.111587pt;}
.x52_c00106{left:109.330787pt;}
.x6_c00106{left:110.782787pt;}
.x29_c00106{left:119.692787pt;}
.x38_c00106{left:120.801587pt;}
.x23_c00106{left:130.639987pt;}
.x7_c00106{left:139.919587pt;}
.x32_c00106{left:148.930787pt;}
.x3d_c00106{left:149.964787pt;}
.x57_c00106{left:159.072787pt;}
.x14_c00106{left:160.111187pt;}
.x10_c00106{left:168.185187pt;}
.x8_c00106{left:169.527187pt;}
.x42_c00106{left:177.733187pt;}
.x2a_c00106{left:178.815587pt;}
.x69_c00106{left:179.765987pt;}
.x24_c00106{left:189.467987pt;}
.x31_c00106{left:194.290387pt;}
.x33_c00106{left:198.751987pt;}
.x49_c00106{left:199.697987pt;}
.x11_c00106{left:207.692787pt;}
.x2b_c00106{left:208.876387pt;}
.x43_c00106{left:209.817987pt;}
.x12_c00106{left:218.441987pt;}
.x25_c00106{left:219.335187pt;}
.x55_c00106{left:229.463987pt;}
.x63_c00106{left:230.436387pt;}
.x39_c00106{left:237.573187pt;}
.x2c_c00106{left:239.275987pt;}
.x9_c00106{left:247.970387pt;}
.x66_c00106{left:249.343187pt;}
.x15_c00106{left:258.653587pt;}
.x64_c00106{left:259.845987pt;}
.x5a_c00106{left:261.165987pt;}
.x4c_c00106{left:267.660387pt;}
.x5b_c00106{left:270.960387pt;}
.x34_c00106{left:278.594387pt;}
.x6a_c00106{left:283.768787pt;}
.x16_c00106{left:287.565987pt;}
.x1d_c00106{left:288.674787pt;}
.x2d_c00106{left:297.919187pt;}
.x5f_c00106{left:298.829987pt;}
.x5c_c00106{left:300.594387pt;}
.x3e_c00106{left:307.260387pt;}
.x1e_c00106{left:317.094387pt;}
.x26_c00106{left:318.823587pt;}
.xa_c00106{left:327.715987pt;}
.x54_c00106{left:328.921587pt;}
.x3a_c00106{left:338.465187pt;}
.x27_c00106{left:347.674387pt;}
.x35_c00106{left:358.128787pt;}
.xb_c00106{left:367.909987pt;}
.x36_c00106{left:375.733187pt;}
.x17_c00106{left:377.339187pt;}
.x44_c00106{left:386.702387pt;}
.x60_c00106{left:388.149987pt;}
.x2e_c00106{left:397.059987pt;}
.x18_c00106{left:407.197587pt;}
.x37_c00106{left:416.221987pt;}
.x1f_c00106{left:425.690787pt;}
.x2f_c00106{left:426.825987pt;}
.xc_c00106{left:436.061587pt;}
.x59_c00106{left:439.656387pt;}
.x56_c00106{left:446.405987pt;}
.x3f_c00106{left:456.644787pt;}
.xd_c00106{left:464.753987pt;}
.x61_c00106{left:467.081587pt;}
.x47_c00106{left:475.111587pt;}
.x19_c00106{left:477.597587pt;}
.x28_c00106{left:485.482387pt;}
.xe_c00106{left:494.814787pt;}
.x4a_c00106{left:495.936787pt;}
.x4d_c00106{left:505.013987pt;}
.x3b_c00106{left:506.021587pt;}
.x20_c00106{left:515.252787pt;}
.x40_c00106{left:525.324387pt;}
.x30_c00106{left:534.075987pt;}
.x53_c00106{left:535.536787pt;}
.x4f_c00106{left:537.340787pt;}
.x4b_c00106{left:543.280787pt;}
.x1a_c00106{left:544.301587pt;}
.xf_c00106{left:555.464387pt;}
.x45_c00106{left:563.621987pt;}
.x3c_c00106{left:564.647187pt;}
.x3_c00106{left:574.767187pt;}
.x5d_c00106{left:576.940787pt;}
.x21_c00106{left:584.156787pt;}
.x4e_c00106{left:585.252387pt;}
.x1b_c00106{left:594.144787pt;}
.x48_c00106{left:603.930387pt;}
.x58_c00106{left:604.946787pt;}
.x5_c00106{left:608.193987pt;}
.x62_c00106{left:609.953987pt;}
.x65_c00106{left:611.023187pt;}
.x4_c00106{left:615.937987pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4d5c2a7e7efc5a61f9eac562.woff2')format("woff");}.ff1_c00107{font-family:ff1_c00107;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00107;src:url('chunks/assets/font_01c4af5e014af0a8dc0907f4.woff2')format("woff");}.ff2_c00107{font-family:ff2_c00107;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00107;src:url('chunks/assets/font_d2e047ac53c8325357f14456.woff2')format("woff");}.ff3_c00107{font-family:ff3_c00107;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00107;src:url('chunks/assets/font_6988dd9b0250b2a57724d594.woff2')format("woff");}.ff4_c00107{font-family:ff4_c00107;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m56_c00107{transform:matrix(0.217346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217346,0.000000,0.000000,0.250000,0,0);}
.m6a_c00107{transform:matrix(0.218572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218572,0.000000,0.000000,0.250000,0,0);}
.m0_c00107{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00107{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.mab_c00107{transform:matrix(0.252606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252606,0.000000,0.000000,0.250000,0,0);}
.m41_c00107{transform:matrix(0.253933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253933,0.000000,0.000000,0.250000,0,0);}
.m1c_c00107{transform:matrix(0.257128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257128,0.000000,0.000000,0.250000,0,0);}
.ma2_c00107{transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);}
.md_c00107{transform:matrix(0.258914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258914,0.000000,0.000000,0.250000,0,0);}
.m13_c00107{transform:matrix(0.259020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259020,0.000000,0.000000,0.250000,0,0);}
.m52_c00107{transform:matrix(0.259662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259662,0.000000,0.000000,0.250000,0,0);}
.m3_c00107{transform:matrix(0.259985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259985,0.000000,0.000000,0.250000,0,0);}
.m63_c00107{transform:matrix(0.261386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261386,0.000000,0.000000,0.250000,0,0);}
.m85_c00107{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.m6f_c00107{transform:matrix(0.262307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262307,0.000000,0.000000,0.250000,0,0);}
.m3e_c00107{transform:matrix(0.262842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262842,0.000000,0.000000,0.250000,0,0);}
.m7_c00107{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m6_c00107{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m77_c00107{transform:matrix(0.264094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264094,0.000000,0.000000,0.250000,0,0);}
.ma7_c00107{transform:matrix(0.264527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264527,0.000000,0.000000,0.250000,0,0);}
.m8f_c00107{transform:matrix(0.265274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265274,0.000000,0.000000,0.250000,0,0);}
.m76_c00107{transform:matrix(0.265334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265334,0.000000,0.000000,0.250000,0,0);}
.m8c_c00107{transform:matrix(0.265699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265699,0.000000,0.000000,0.250000,0,0);}
.m34_c00107{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m29_c00107{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.m3d_c00107{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.maa_c00107{transform:matrix(0.267950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267950,0.000000,0.000000,0.250000,0,0);}
.m5e_c00107{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.m61_c00107{transform:matrix(0.269857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269857,0.000000,0.000000,0.250000,0,0);}
.m23_c00107{transform:matrix(0.270444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270444,0.000000,0.000000,0.250000,0,0);}
.m4b_c00107{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m95_c00107{transform:matrix(0.272103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272103,0.000000,0.000000,0.250000,0,0);}
.m19_c00107{transform:matrix(0.272432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272432,0.000000,0.000000,0.250000,0,0);}
.m3b_c00107{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m70_c00107{transform:matrix(0.273493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273493,0.000000,0.000000,0.250000,0,0);}
.m38_c00107{transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);}
.m99_c00107{transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);}
.m7d_c00107{transform:matrix(0.274717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274717,0.000000,0.000000,0.250000,0,0);}
.m91_c00107{transform:matrix(0.275103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275103,0.000000,0.000000,0.250000,0,0);}
.m49_c00107{transform:matrix(0.275114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275114,0.000000,0.000000,0.250000,0,0);}
.m16_c00107{transform:matrix(0.275178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275178,0.000000,0.000000,0.250000,0,0);}
.mc_c00107{transform:matrix(0.275287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275287,0.000000,0.000000,0.250000,0,0);}
.m97_c00107{transform:matrix(0.275438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275438,0.000000,0.000000,0.250000,0,0);}
.m2b_c00107{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m51_c00107{transform:matrix(0.275747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275747,0.000000,0.000000,0.250000,0,0);}
.m9_c00107{transform:matrix(0.276438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276438,0.000000,0.000000,0.250000,0,0);}
.m9d_c00107{transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);}
.m6d_c00107{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m89_c00107{transform:matrix(0.277612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277612,0.000000,0.000000,0.250000,0,0);}
.m66_c00107{transform:matrix(0.278258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278258,0.000000,0.000000,0.250000,0,0);}
.m5b_c00107{transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);}
.m65_c00107{transform:matrix(0.279178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279178,0.000000,0.000000,0.250000,0,0);}
.m68_c00107{transform:matrix(0.279223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279223,0.000000,0.000000,0.250000,0,0);}
.mb_c00107{transform:matrix(0.279387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279387,0.000000,0.000000,0.250000,0,0);}
.m93_c00107{transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);}
.m5f_c00107{transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);}
.m21_c00107{transform:matrix(0.280064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280064,0.000000,0.000000,0.250000,0,0);}
.m86_c00107{transform:matrix(0.280356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280356,0.000000,0.000000,0.250000,0,0);}
.m73_c00107{transform:matrix(0.280644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280644,0.000000,0.000000,0.250000,0,0);}
.m87_c00107{transform:matrix(0.280754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280754,0.000000,0.000000,0.250000,0,0);}
.m7b_c00107{transform:matrix(0.281084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281084,0.000000,0.000000,0.250000,0,0);}
.m43_c00107{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.m45_c00107{transform:matrix(0.282543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282543,0.000000,0.000000,0.250000,0,0);}
.m46_c00107{transform:matrix(0.283075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283075,0.000000,0.000000,0.250000,0,0);}
.m35_c00107{transform:matrix(0.283509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283509,0.000000,0.000000,0.250000,0,0);}
.m15_c00107{transform:matrix(0.284629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284629,0.000000,0.000000,0.250000,0,0);}
.m18_c00107{transform:matrix(0.284740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284740,0.000000,0.000000,0.250000,0,0);}
.m31_c00107{transform:matrix(0.285088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285088,0.000000,0.000000,0.250000,0,0);}
.m17_c00107{transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);}
.m74_c00107{transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);}
.m6e_c00107{transform:matrix(0.285908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285908,0.000000,0.000000,0.250000,0,0);}
.m4d_c00107{transform:matrix(0.286758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286758,0.000000,0.000000,0.250000,0,0);}
.m22_c00107{transform:matrix(0.287090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287090,0.000000,0.000000,0.250000,0,0);}
.m2c_c00107{transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);}
.m96_c00107{transform:matrix(0.288739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288739,0.000000,0.000000,0.250000,0,0);}
.m53_c00107{transform:matrix(0.289310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289310,0.000000,0.000000,0.250000,0,0);}
.m37_c00107{transform:matrix(0.289775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289775,0.000000,0.000000,0.250000,0,0);}
.m8d_c00107{transform:matrix(0.290061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290061,0.000000,0.000000,0.250000,0,0);}
.m48_c00107{transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);}
.m8a_c00107{transform:matrix(0.291122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291122,0.000000,0.000000,0.250000,0,0);}
.m4a_c00107{transform:matrix(0.291340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291340,0.000000,0.000000,0.250000,0,0);}
.m8b_c00107{transform:matrix(0.291342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291342,0.000000,0.000000,0.250000,0,0);}
.m7e_c00107{transform:matrix(0.292051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292051,0.000000,0.000000,0.250000,0,0);}
.m6c_c00107{transform:matrix(0.292638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292638,0.000000,0.000000,0.250000,0,0);}
.m1_c00107{transform:matrix(0.293246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293246,0.000000,0.000000,0.250000,0,0);}
.m57_c00107{transform:matrix(0.293461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293461,0.000000,0.000000,0.250000,0,0);}
.m64_c00107{transform:matrix(0.293864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293864,0.000000,0.000000,0.250000,0,0);}
.ma9_c00107{transform:matrix(0.294139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294139,0.000000,0.000000,0.250000,0,0);}
.m6b_c00107{transform:matrix(0.294339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294339,0.000000,0.000000,0.250000,0,0);}
.m2_c00107{transform:matrix(0.295229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295229,0.000000,0.000000,0.250000,0,0);}
.m88_c00107{transform:matrix(0.295347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295347,0.000000,0.000000,0.250000,0,0);}
.m98_c00107{transform:matrix(0.295952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295952,0.000000,0.000000,0.250000,0,0);}
.m3a_c00107{transform:matrix(0.296931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296931,0.000000,0.000000,0.250000,0,0);}
.m54_c00107{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m36_c00107{transform:matrix(0.299142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299142,0.000000,0.000000,0.250000,0,0);}
.m4c_c00107{transform:matrix(0.300146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300146,0.000000,0.000000,0.250000,0,0);}
.m5_c00107{transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);}
.ma6_c00107{transform:matrix(0.301242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301242,0.000000,0.000000,0.250000,0,0);}
.ma_c00107{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m10_c00107{transform:matrix(0.302581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302581,0.000000,0.000000,0.250000,0,0);}
.m5c_c00107{transform:matrix(0.302597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302597,0.000000,0.000000,0.250000,0,0);}
.m2d_c00107{transform:matrix(0.303331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303331,0.000000,0.000000,0.250000,0,0);}
.m72_c00107{transform:matrix(0.303799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303799,0.000000,0.000000,0.250000,0,0);}
.m55_c00107{transform:matrix(0.304071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304071,0.000000,0.000000,0.250000,0,0);}
.m3f_c00107{transform:matrix(0.304174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304174,0.000000,0.000000,0.250000,0,0);}
.m7a_c00107{transform:matrix(0.305058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305058,0.000000,0.000000,0.250000,0,0);}
.m9b_c00107{transform:matrix(0.305475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305475,0.000000,0.000000,0.250000,0,0);}
.m28_c00107{transform:matrix(0.305633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305633,0.000000,0.000000,0.250000,0,0);}
.mf_c00107{transform:matrix(0.306758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306758,0.000000,0.000000,0.250000,0,0);}
.m11_c00107{transform:matrix(0.307034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307034,0.000000,0.000000,0.250000,0,0);}
.m4_c00107{transform:matrix(0.307393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307393,0.000000,0.000000,0.250000,0,0);}
.ma3_c00107{transform:matrix(0.307719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307719,0.000000,0.000000,0.250000,0,0);}
.m1a_c00107{transform:matrix(0.307853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307853,0.000000,0.000000,0.250000,0,0);}
.m67_c00107{transform:matrix(0.308464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308464,0.000000,0.000000,0.250000,0,0);}
.m4f_c00107{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m9c_c00107{transform:matrix(0.309822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309822,0.000000,0.000000,0.250000,0,0);}
.m1e_c00107{transform:matrix(0.310446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310446,0.000000,0.000000,0.250000,0,0);}
.m32_c00107{transform:matrix(0.311165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311165,0.000000,0.000000,0.250000,0,0);}
.m2f_c00107{transform:matrix(0.311211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311211,0.000000,0.000000,0.250000,0,0);}
.m75_c00107{transform:matrix(0.311256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311256,0.000000,0.000000,0.250000,0,0);}
.m25_c00107{transform:matrix(0.312391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312391,0.000000,0.000000,0.250000,0,0);}
.m12_c00107{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.m94_c00107{transform:matrix(0.313301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313301,0.000000,0.000000,0.250000,0,0);}
.m60_c00107{transform:matrix(0.313648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313648,0.000000,0.000000,0.250000,0,0);}
.m3c_c00107{transform:matrix(0.314528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314528,0.000000,0.000000,0.250000,0,0);}
.m80_c00107{transform:matrix(0.314940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314940,0.000000,0.000000,0.250000,0,0);}
.ma1_c00107{transform:matrix(0.315669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315669,0.000000,0.000000,0.250000,0,0);}
.m62_c00107{transform:matrix(0.316138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316138,0.000000,0.000000,0.250000,0,0);}
.m24_c00107{transform:matrix(0.319808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319808,0.000000,0.000000,0.250000,0,0);}
.m81_c00107{transform:matrix(0.319859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319859,0.000000,0.000000,0.250000,0,0);}
.m58_c00107{transform:matrix(0.320236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320236,0.000000,0.000000,0.250000,0,0);}
.m8_c00107{transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);}
.m27_c00107{transform:matrix(0.321636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321636,0.000000,0.000000,0.250000,0,0);}
.m4e_c00107{transform:matrix(0.323414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323414,0.000000,0.000000,0.250000,0,0);}
.m84_c00107{transform:matrix(0.323498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323498,0.000000,0.000000,0.250000,0,0);}
.m39_c00107{transform:matrix(0.323602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323602,0.000000,0.000000,0.250000,0,0);}
.m9f_c00107{transform:matrix(0.324136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324136,0.000000,0.000000,0.250000,0,0);}
.m30_c00107{transform:matrix(0.324231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324231,0.000000,0.000000,0.250000,0,0);}
.m50_c00107{transform:matrix(0.324715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324715,0.000000,0.000000,0.250000,0,0);}
.m47_c00107{transform:matrix(0.325179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325179,0.000000,0.000000,0.250000,0,0);}
.m1f_c00107{transform:matrix(0.326513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326513,0.000000,0.000000,0.250000,0,0);}
.m9a_c00107{transform:matrix(0.326894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326894,0.000000,0.000000,0.250000,0,0);}
.m1d_c00107{transform:matrix(0.326944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326944,0.000000,0.000000,0.250000,0,0);}
.m26_c00107{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.m8e_c00107{transform:matrix(0.327605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327605,0.000000,0.000000,0.250000,0,0);}
.ma8_c00107{transform:matrix(0.329713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329713,0.000000,0.000000,0.250000,0,0);}
.m69_c00107{transform:matrix(0.329734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329734,0.000000,0.000000,0.250000,0,0);}
.m2a_c00107{transform:matrix(0.330203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330203,0.000000,0.000000,0.250000,0,0);}
.m40_c00107{transform:matrix(0.330344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330344,0.000000,0.000000,0.250000,0,0);}
.m7f_c00107{transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);}
.m90_c00107{transform:matrix(0.333172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333172,0.000000,0.000000,0.250000,0,0);}
.me_c00107{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m42_c00107{transform:matrix(0.333350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333350,0.000000,0.000000,0.250000,0,0);}
.ma4_c00107{transform:matrix(0.335412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335412,0.000000,0.000000,0.250000,0,0);}
.m14_c00107{transform:matrix(0.337875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337875,0.000000,0.000000,0.250000,0,0);}
.m44_c00107{transform:matrix(0.339256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339256,0.000000,0.000000,0.250000,0,0);}
.m79_c00107{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m82_c00107{transform:matrix(0.339434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339434,0.000000,0.000000,0.250000,0,0);}
.m5d_c00107{transform:matrix(0.340015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340015,0.000000,0.000000,0.250000,0,0);}
.m5a_c00107{transform:matrix(0.340664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340664,0.000000,0.000000,0.250000,0,0);}
.m78_c00107{transform:matrix(0.341309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341309,0.000000,0.000000,0.250000,0,0);}
.m59_c00107{transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);}
.m33_c00107{transform:matrix(0.343111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343111,0.000000,0.000000,0.250000,0,0);}
.ma5_c00107{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.m20_c00107{transform:matrix(0.344241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344241,0.000000,0.000000,0.250000,0,0);}
.ma0_c00107{transform:matrix(0.352464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352464,0.000000,0.000000,0.250000,0,0);}
.m83_c00107{transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);}
.m1b_c00107{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m9e_c00107{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m2e_c00107{transform:matrix(0.364506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364506,0.000000,0.000000,0.250000,0,0);}
.m7c_c00107{transform:matrix(0.366301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366301,0.000000,0.000000,0.250000,0,0);}
.m71_c00107{transform:matrix(0.422543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422543,0.000000,0.000000,0.250000,0,0);}
.v0_c00107{vertical-align:0.000000px;}
.ls4_c00107{letter-spacing:-1.427026px;}
.ls9_c00107{letter-spacing:-1.089871px;}
.ls6_c00107{letter-spacing:-1.058508px;}
.lsd_c00107{letter-spacing:-0.705672px;}
.ls1_c00107{letter-spacing:0.000000px;}
.ls7_c00107{letter-spacing:0.360677px;}
.lsa_c00107{letter-spacing:0.729194px;}
.ls5_c00107{letter-spacing:1.685772px;}
.lse_c00107{letter-spacing:3.010867px;}
.ls0_c00107{letter-spacing:3.112798px;}
.lsc_c00107{letter-spacing:3.306610px;}
.ls2_c00107{letter-spacing:3.722400px;}
.ls3_c00107{letter-spacing:3.920400px;}
.lsb_c00107{letter-spacing:3.979810px;}
.ls8_c00107{letter-spacing:49.896198px;}
.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;}
}
.ws0_c00107{word-spacing:0.000000px;}
._3_c00107{width:5.723784px;}
._2_c00107{width:12.231648px;}
._0_c00107{width:27.356551px;}
._1_c00107{width:37.557432px;}
.fc0_c00107{color:transparent;}
.fs4_c00107{font-size:22.176000px;}
.fs8_c00107{font-size:22.572000px;}
.fsa_c00107{font-size:27.720000px;}
.fs0_c00107{font-size:34.056198px;}
.fs7_c00107{font-size:42.966198px;}
.fsb_c00107{font-size:48.114000px;}
.fs6_c00107{font-size:49.896198px;}
.fs5_c00107{font-size:60.192000px;}
.fsc_c00107{font-size:66.132198px;}
.fs3_c00107{font-size:66.330000px;}
.fs1_c00107{font-size:74.448000px;}
.fsd_c00107{font-size:76.032198px;}
.fs2_c00107{font-size:78.408000px;}
.fs9_c00107{font-size:79.596198px;}
.y0_c00107{bottom:0.000000px;}
.y23_c00107{bottom:10.598985px;}
.y1_c00107{bottom:76.500000px;}
.y22_c00107{bottom:117.880335px;}
.y21_c00107{bottom:145.318185px;}
.y20_c00107{bottom:175.617135px;}
.y1f_c00107{bottom:203.772735px;}
.y1e_c00107{bottom:211.257135px;}
.y1d_c00107{bottom:243.684585px;}
.y1c_c00107{bottom:276.121935px;}
.y1b_c00107{bottom:308.554335px;}
.y19_c00107{bottom:372.706335px;}
.y1a_c00107{bottom:399.787785px;}
.y18_c00107{bottom:405.495135px;}
.y2_c00107{bottom:431.868735px;}
.y17_c00107{bottom:437.927535px;}
.y16_c00107{bottom:455.034735px;}
.y15_c00107{bottom:470.354985px;}
.y14_c00107{bottom:502.435935px;}
.y13_c00107{bottom:534.863385px;}
.y12_c00107{bottom:563.736735px;}
.y11_c00107{bottom:568.726335px;}
.y10_c00107{bottom:600.802335px;}
.yf_c00107{bottom:632.521935px;}
.ye_c00107{bottom:642.139785px;}
.yc_c00107{bottom:665.305785px;}
.yd_c00107{bottom:698.094585px;}
.yb_c00107{bottom:698.450985px;}
.ya_c00107{bottom:731.239785px;}
.y9_c00107{bottom:763.315785px;}
.y8_c00107{bottom:795.396735px;}
.y7_c00107{bottom:826.759935px;}
.y6_c00107{bottom:859.905135px;}
.y5_c00107{bottom:893.763135px;}
.y4_c00107{bottom:926.195535px;}
.y3_c00107{bottom:1077.660585px;}
.h6_c00107{height:23.128875px;}
.ha_c00107{height:23.541891px;}
.hc_c00107{height:28.911094px;}
.h8_c00107{height:33.230868px;}
.h2_c00107{height:35.519550px;}
.h9_c00107{height:42.168974px;}
.hd_c00107{height:50.181398px;}
.h7_c00107{height:62.778375px;}
.he_c00107{height:68.973816px;}
.h5_c00107{height:69.180117px;}
.h3_c00107{height:73.066641px;}
.h4_c00107{height:76.953164px;}
.hb_c00107{height:78.119315px;}
.hf_c00107{height:79.299207px;}
.h1_c00107{height:1110.000000px;}
.h0_c00107{height:1263.000000px;}
.w1_c00107{width:733.500000px;}
.w0_c00107{width:892.500000px;}
.x0_c00107{left:0.000000px;}
.x2_c00107{left:40.792485px;}
.x26_c00107{left:64.552485px;}
.x4_c00107{left:66.027585px;}
.x4f_c00107{left:67.903635px;}
.x1_c00107{left:79.500000px;}
.x1c_c00107{left:98.539185px;}
.x54_c00107{left:100.227135px;}
.x27_c00107{left:110.587485px;}
.x69_c00107{left:112.072485px;}
.x43_c00107{left:119.705385px;}
.x5_c00107{left:120.987435px;}
.x15_c00107{left:122.185335px;}
.x50_c00107{left:132.387285px;}
.x55_c00107{left:133.411935px;}
.x2d_c00107{left:141.856635px;}
.x22_c00107{left:143.084235px;}
.x38_c00107{left:153.647535px;}
.x6_c00107{left:165.487935px;}
.x23_c00107{left:176.204685px;}
.x5e_c00107{left:177.947085px;}
.x2e_c00107{left:187.569885px;}
.x62_c00107{left:189.737985px;}
.x3f_c00107{left:197.964885px;}
.xe_c00107{left:199.311285px;}
.x52_c00107{left:211.151685px;}
.x1d_c00107{left:221.447685px;}
.xf_c00107{left:231.644685px;}
.x28_c00107{left:232.852485px;}
.x40_c00107{left:244.222635px;}
.x39_c00107{left:254.261235px;}
.x29_c00107{left:265.324485px;}
.x33_c00107{left:266.670885px;}
.x7_c00107{left:276.249135px;}
.x10_c00107{left:277.407435px;}
.x6b_c00107{left:278.699385px;}
.x44_c00107{left:287.955885px;}
.x5f_c00107{left:290.574435px;}
.x24_c00107{left:299.494335px;}
.x1e_c00107{left:301.573335px;}
.x16_c00107{left:309.032985px;}
.x2f_c00107{left:310.557585px;}
.x57_c00107{left:311.611935px;}
.x45_c00107{left:321.442635px;}
.x6a_c00107{left:322.511835px;}
.x4e_c00107{left:326.694585px;}
.x8_c00107{left:331.976235px;}
.x63_c00107{left:333.273135px;}
.x1f_c00107{left:345.405585px;}
.x3b_c00107{left:353.810685px;}
.x49_c00107{left:356.176785px;}
.x5c_c00107{left:365.319435px;}
.x53_c00107{left:366.928185px;}
.x51_c00107{left:369.645735px;}
.x9_c00107{left:376.526235px;}
.x3a_c00107{left:378.278535px;}
.x17_c00107{left:386.347035px;}
.x11_c00107{left:388.282485px;}
.x58_c00107{left:389.356635px;}
.x30_c00107{left:398.974485px;}
.x2a_c00107{left:409.819935px;}
.xa_c00107{left:411.022785px;}
.x34_c00107{left:420.942585px;}
.x4a_c00107{left:422.709735px;}
.x64_c00107{left:423.863085px;}
.x18_c00107{left:431.560335px;}
.x46_c00107{left:433.005735px;}
.x59_c00107{left:434.228385px;}
.x3c_c00107{left:444.108585px;}
.x2b_c00107{left:454.746135px;}
.xb_c00107{left:465.141135px;}
.x5a_c00107{left:466.824135px;}
.x31_c00107{left:477.337935px;}
.x4b_c00107{left:488.430885px;}
.x65_c00107{left:489.816885px;}
.x5b_c00107{left:500.107935px;}
.x19_c00107{left:509.943585px;}
.x2c_c00107{left:511.220685px;}
.x20_c00107{left:521.640435px;}
.x60_c00107{left:522.665085px;}
.x35_c00107{left:524.323335px;}
.x1a_c00107{left:531.787935px;}
.x4c_c00107{left:533.564985px;}
.x12_c00107{left:543.969885px;}
.x25_c00107{left:554.602485px;}
.x5d_c00107{left:555.790485px;}
.x4d_c00107{left:567.507135px;}
.x47_c00107{left:577.516035px;}
.xc_c00107{left:587.015085px;}
.x3d_c00107{left:588.549585px;}
.x56_c00107{left:589.589085px;}
.x61_c00107{left:599.058435px;}
.x1b_c00107{left:608.344635px;}
.x13_c00107{left:609.596985px;}
.x66_c00107{left:610.671135px;}
.xd_c00107{left:620.288985px;}
.x3e_c00107{left:622.288785px;}
.x6e_c00107{left:630.401835px;}
.x32_c00107{left:632.733285px;}
.x3_c00107{left:643.410435px;}
.x41_c00107{left:644.529135px;}
.x14_c00107{left:654.151935px;}
.x6c_c00107{left:656.295285px;}
.x21_c00107{left:665.546835px;}
.x48_c00107{left:666.952635px;}
.x67_c00107{left:677.129835px;}
.x42_c00107{left:686.792235px;}
.x37_c00107{left:689.509785px;}
.x36_c00107{left:690.989835px;}
.x68_c00107{left:711.151185px;}
.x6d_c00107{left:724.258785px;}
@media print{
.v0_c00107{vertical-align:0.000000pt;}
.ls4_c00107{letter-spacing:-1.268467pt;}
.ls9_c00107{letter-spacing:-0.968774pt;}
.ls6_c00107{letter-spacing:-0.940896pt;}
.lsd_c00107{letter-spacing:-0.627264pt;}
.ls1_c00107{letter-spacing:0.000000pt;}
.ls7_c00107{letter-spacing:0.320602pt;}
.lsa_c00107{letter-spacing:0.648173pt;}
.ls5_c00107{letter-spacing:1.498464pt;}
.lse_c00107{letter-spacing:2.676326pt;}
.ls0_c00107{letter-spacing:2.766931pt;}
.lsc_c00107{letter-spacing:2.939209pt;}
.ls2_c00107{letter-spacing:3.308800pt;}
.ls3_c00107{letter-spacing:3.484800pt;}
.lsb_c00107{letter-spacing:3.537609pt;}
.ls8_c00107{letter-spacing:44.352176pt;}
.ws0_c00107{word-spacing:0.000000pt;}
._3_c00107{width:5.087808pt;}
._2_c00107{width:10.872576pt;}
._0_c00107{width:24.316934pt;}
._1_c00107{width:33.384384pt;}
.fs4_c00107{font-size:19.712000pt;}
.fs8_c00107{font-size:20.064000pt;}
.fsa_c00107{font-size:24.640000pt;}
.fs0_c00107{font-size:30.272176pt;}
.fs7_c00107{font-size:38.192176pt;}
.fsb_c00107{font-size:42.768000pt;}
.fs6_c00107{font-size:44.352176pt;}
.fs5_c00107{font-size:53.504000pt;}
.fsc_c00107{font-size:58.784176pt;}
.fs3_c00107{font-size:58.960000pt;}
.fs1_c00107{font-size:66.176000pt;}
.fsd_c00107{font-size:67.584176pt;}
.fs2_c00107{font-size:69.696000pt;}
.fs9_c00107{font-size:70.752176pt;}
.y0_c00107{bottom:0.000000pt;}
.y23_c00107{bottom:9.421320pt;}
.y1_c00107{bottom:68.000000pt;}
.y22_c00107{bottom:104.782520pt;}
.y21_c00107{bottom:129.171720pt;}
.y20_c00107{bottom:156.104120pt;}
.y1f_c00107{bottom:181.131320pt;}
.y1e_c00107{bottom:187.784120pt;}
.y1d_c00107{bottom:216.608520pt;}
.y1c_c00107{bottom:245.441720pt;}
.y1b_c00107{bottom:274.270520pt;}
.y19_c00107{bottom:331.294520pt;}
.y1a_c00107{bottom:355.366920pt;}
.y18_c00107{bottom:360.440120pt;}
.y2_c00107{bottom:383.883320pt;}
.y17_c00107{bottom:389.268920pt;}
.y16_c00107{bottom:404.475320pt;}
.y15_c00107{bottom:418.093320pt;}
.y14_c00107{bottom:446.609720pt;}
.y13_c00107{bottom:475.434120pt;}
.y12_c00107{bottom:501.099320pt;}
.y11_c00107{bottom:505.534520pt;}
.y10_c00107{bottom:534.046520pt;}
.yf_c00107{bottom:562.241720pt;}
.ye_c00107{bottom:570.790920pt;}
.yc_c00107{bottom:591.382920pt;}
.yd_c00107{bottom:620.528520pt;}
.yb_c00107{bottom:620.845320pt;}
.ya_c00107{bottom:649.990920pt;}
.y9_c00107{bottom:678.502920pt;}
.y8_c00107{bottom:707.019320pt;}
.y7_c00107{bottom:734.897720pt;}
.y6_c00107{bottom:764.360120pt;}
.y5_c00107{bottom:794.456120pt;}
.y4_c00107{bottom:823.284920pt;}
.y3_c00107{bottom:957.920520pt;}
.h6_c00107{height:20.559000pt;}
.ha_c00107{height:20.926125pt;}
.hc_c00107{height:25.698750pt;}
.h8_c00107{height:29.538549pt;}
.h2_c00107{height:31.572934pt;}
.h9_c00107{height:37.483532pt;}
.hd_c00107{height:44.605688pt;}
.h7_c00107{height:55.803000pt;}
.he_c00107{height:61.310059pt;}
.h5_c00107{height:61.493438pt;}
.h3_c00107{height:64.948125pt;}
.h4_c00107{height:68.402813pt;}
.hb_c00107{height:69.439391pt;}
.hf_c00107{height:70.488184pt;}
.h1_c00107{height:986.666667pt;}
.h0_c00107{height:1122.666667pt;}
.w1_c00107{width:652.000000pt;}
.w0_c00107{width:793.333333pt;}
.x0_c00107{left:0.000000pt;}
.x2_c00107{left:36.259987pt;}
.x26_c00107{left:57.379987pt;}
.x4_c00107{left:58.691187pt;}
.x4f_c00107{left:60.358787pt;}
.x1_c00107{left:70.666667pt;}
.x1c_c00107{left:87.590387pt;}
.x54_c00107{left:89.090787pt;}
.x27_c00107{left:98.299987pt;}
.x69_c00107{left:99.619987pt;}
.x43_c00107{left:106.404787pt;}
.x5_c00107{left:107.544387pt;}
.x15_c00107{left:108.609187pt;}
.x50_c00107{left:117.677587pt;}
.x55_c00107{left:118.588387pt;}
.x2d_c00107{left:126.094787pt;}
.x22_c00107{left:127.185987pt;}
.x38_c00107{left:136.575587pt;}
.x6_c00107{left:147.100387pt;}
.x23_c00107{left:156.626387pt;}
.x5e_c00107{left:158.175187pt;}
.x2e_c00107{left:166.728787pt;}
.x62_c00107{left:168.655987pt;}
.x3f_c00107{left:175.968787pt;}
.xe_c00107{left:177.165587pt;}
.x52_c00107{left:187.690387pt;}
.x1d_c00107{left:196.842387pt;}
.xf_c00107{left:205.906387pt;}
.x28_c00107{left:206.979987pt;}
.x40_c00107{left:217.086787pt;}
.x39_c00107{left:226.009987pt;}
.x29_c00107{left:235.843987pt;}
.x33_c00107{left:237.040787pt;}
.x7_c00107{left:245.554787pt;}
.x10_c00107{left:246.584387pt;}
.x6b_c00107{left:247.732787pt;}
.x44_c00107{left:255.960787pt;}
.x5f_c00107{left:258.288387pt;}
.x24_c00107{left:266.217187pt;}
.x1e_c00107{left:268.065187pt;}
.x16_c00107{left:274.695987pt;}
.x2f_c00107{left:276.051187pt;}
.x57_c00107{left:276.988387pt;}
.x45_c00107{left:285.726787pt;}
.x6a_c00107{left:286.677187pt;}
.x4e_c00107{left:290.395187pt;}
.x8_c00107{left:295.089987pt;}
.x63_c00107{left:296.242787pt;}
.x1f_c00107{left:307.027187pt;}
.x3b_c00107{left:314.498387pt;}
.x49_c00107{left:316.601587pt;}
.x5c_c00107{left:324.728387pt;}
.x53_c00107{left:326.158387pt;}
.x51_c00107{left:328.573987pt;}
.x9_c00107{left:334.689987pt;}
.x3a_c00107{left:336.247587pt;}
.x17_c00107{left:343.419587pt;}
.x11_c00107{left:345.139987pt;}
.x58_c00107{left:346.094787pt;}
.x30_c00107{left:354.643987pt;}
.x2a_c00107{left:364.284387pt;}
.xa_c00107{left:365.353587pt;}
.x34_c00107{left:374.171187pt;}
.x4a_c00107{left:375.741987pt;}
.x64_c00107{left:376.767187pt;}
.x18_c00107{left:383.609187pt;}
.x46_c00107{left:384.893987pt;}
.x59_c00107{left:385.980787pt;}
.x3c_c00107{left:394.763187pt;}
.x2b_c00107{left:404.218787pt;}
.xb_c00107{left:413.458787pt;}
.x5a_c00107{left:414.954787pt;}
.x31_c00107{left:424.300387pt;}
.x4b_c00107{left:434.160787pt;}
.x65_c00107{left:435.392787pt;}
.x5b_c00107{left:444.540387pt;}
.x19_c00107{left:453.283187pt;}
.x2c_c00107{left:454.418387pt;}
.x20_c00107{left:463.680387pt;}
.x60_c00107{left:464.591187pt;}
.x35_c00107{left:466.065187pt;}
.x1a_c00107{left:472.700387pt;}
.x4c_c00107{left:474.279987pt;}
.x12_c00107{left:483.528787pt;}
.x25_c00107{left:492.979987pt;}
.x5d_c00107{left:494.035987pt;}
.x4d_c00107{left:504.450787pt;}
.x47_c00107{left:513.347587pt;}
.xc_c00107{left:521.791187pt;}
.x3d_c00107{left:523.155187pt;}
.x56_c00107{left:524.079187pt;}
.x61_c00107{left:532.496387pt;}
.x1b_c00107{left:540.750787pt;}
.x13_c00107{left:541.863987pt;}
.x66_c00107{left:542.818787pt;}
.xd_c00107{left:551.367987pt;}
.x3e_c00107{left:553.145587pt;}
.x6e_c00107{left:560.357187pt;}
.x32_c00107{left:562.429587pt;}
.x3_c00107{left:571.920387pt;}
.x41_c00107{left:572.914787pt;}
.x14_c00107{left:581.468387pt;}
.x6c_c00107{left:583.373587pt;}
.x21_c00107{left:591.597187pt;}
.x48_c00107{left:592.846787pt;}
.x67_c00107{left:601.893187pt;}
.x42_c00107{left:610.481987pt;}
.x37_c00107{left:612.897587pt;}
.x36_c00107{left:614.213187pt;}
.x68_c00107{left:632.134387pt;}
.x6d_c00107{left:643.785587pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c22ab30372a2d22e11f27029.woff2')format("woff");}.ff1_c00108{font-family:ff1_c00108;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00108;src:url('chunks/assets/font_d2ef11172004103f0f2a2a71.woff2')format("woff");}.ff2_c00108{font-family:ff2_c00108;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00108;src:url('chunks/assets/font_8518b50dc515293d3165b6b5.woff2')format("woff");}.ff3_c00108{font-family:ff3_c00108;line-height:0.666000;font-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_c00108{transform:matrix(0.120313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120313,0.000000,0.000000,0.250000,0,0);}
.mca_c00108{transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);}
.m63_c00108{transform:matrix(0.189024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189024,0.000000,0.000000,0.250000,0,0);}
.m73_c00108{transform:matrix(0.189703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189703,0.000000,0.000000,0.250000,0,0);}
.m8d_c00108{transform:matrix(0.219067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219067,0.000000,0.000000,0.250000,0,0);}
.mbc_c00108{transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);}
.m1_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);}
.m87_c00108{transform:matrix(0.250504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250504,0.000000,0.000000,0.250000,0,0);}
.m3_c00108{transform:matrix(0.251240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251240,0.000000,0.000000,0.250000,0,0);}
.m4e_c00108{transform:matrix(0.251395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251395,0.000000,0.000000,0.250000,0,0);}
.mbb_c00108{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.m6c_c00108{transform:matrix(0.253593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253593,0.000000,0.000000,0.250000,0,0);}
.m93_c00108{transform:matrix(0.257151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257151,0.000000,0.000000,0.250000,0,0);}
.m7d_c00108{transform:matrix(0.258620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258620,0.000000,0.000000,0.250000,0,0);}
.m6d_c00108{transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);}
.m70_c00108{transform:matrix(0.260579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260579,0.000000,0.000000,0.250000,0,0);}
.m8a_c00108{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m3a_c00108{transform:matrix(0.261462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261462,0.000000,0.000000,0.250000,0,0);}
.m8e_c00108{transform:matrix(0.261788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261788,0.000000,0.000000,0.250000,0,0);}
.mb4_c00108{transform:matrix(0.261865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261865,0.000000,0.000000,0.250000,0,0);}
.m15_c00108{transform:matrix(0.261986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261986,0.000000,0.000000,0.250000,0,0);}
.m5b_c00108{transform:matrix(0.262140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262140,0.000000,0.000000,0.250000,0,0);}
.m7b_c00108{transform:matrix(0.262256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262256,0.000000,0.000000,0.250000,0,0);}
.m7c_c00108{transform:matrix(0.262289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262289,0.000000,0.000000,0.250000,0,0);}
.m66_c00108{transform:matrix(0.262811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262811,0.000000,0.000000,0.250000,0,0);}
.md_c00108{transform:matrix(0.262842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262842,0.000000,0.000000,0.250000,0,0);}
.m5_c00108{transform:matrix(0.263278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263278,0.000000,0.000000,0.250000,0,0);}
.m6_c00108{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m12_c00108{transform:matrix(0.263333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263333,0.000000,0.000000,0.250000,0,0);}
.m74_c00108{transform:matrix(0.263574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263574,0.000000,0.000000,0.250000,0,0);}
.m21_c00108{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m76_c00108{transform:matrix(0.264030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264030,0.000000,0.000000,0.250000,0,0);}
.mba_c00108{transform:matrix(0.264732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264732,0.000000,0.000000,0.250000,0,0);}
.m8b_c00108{transform:matrix(0.265699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265699,0.000000,0.000000,0.250000,0,0);}
.m80_c00108{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m19_c00108{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.maf_c00108{transform:matrix(0.267598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267598,0.000000,0.000000,0.250000,0,0);}
.m47_c00108{transform:matrix(0.267641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267641,0.000000,0.000000,0.250000,0,0);}
.m3b_c00108{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.mb6_c00108{transform:matrix(0.268317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268317,0.000000,0.000000,0.250000,0,0);}
.m83_c00108{transform:matrix(0.268484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268484,0.000000,0.000000,0.250000,0,0);}
.ma1_c00108{transform:matrix(0.269301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269301,0.000000,0.000000,0.250000,0,0);}
.mb3_c00108{transform:matrix(0.269857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269857,0.000000,0.000000,0.250000,0,0);}
.m1a_c00108{transform:matrix(0.269870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269870,0.000000,0.000000,0.250000,0,0);}
.m50_c00108{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.mc4_c00108{transform:matrix(0.270977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270977,0.000000,0.000000,0.250000,0,0);}
.m82_c00108{transform:matrix(0.271549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271549,0.000000,0.000000,0.250000,0,0);}
.m7a_c00108{transform:matrix(0.271578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271578,0.000000,0.000000,0.250000,0,0);}
.m4a_c00108{transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);}
.mc_c00108{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m9e_c00108{transform:matrix(0.272975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272975,0.000000,0.000000,0.250000,0,0);}
.m0_c00108{transform:matrix(0.273795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273795,0.000000,0.000000,0.250000,0,0);}
.mb7_c00108{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.mb0_c00108{transform:matrix(0.276488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276488,0.000000,0.000000,0.250000,0,0);}
.ma0_c00108{transform:matrix(0.277902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277902,0.000000,0.000000,0.250000,0,0);}
.m8c_c00108{transform:matrix(0.278236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278236,0.000000,0.000000,0.250000,0,0);}
.m4_c00108{transform:matrix(0.278302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278302,0.000000,0.000000,0.250000,0,0);}
.m5e_c00108{transform:matrix(0.278304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278304,0.000000,0.000000,0.250000,0,0);}
.mac_c00108{transform:matrix(0.278863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278863,0.000000,0.000000,0.250000,0,0);}
.m9_c00108{transform:matrix(0.279482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279482,0.000000,0.000000,0.250000,0,0);}
.ma2_c00108{transform:matrix(0.279537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279537,0.000000,0.000000,0.250000,0,0);}
.m1b_c00108{transform:matrix(0.279605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279605,0.000000,0.000000,0.250000,0,0);}
.m32_c00108{transform:matrix(0.279920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279920,0.000000,0.000000,0.250000,0,0);}
.m11_c00108{transform:matrix(0.280991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280991,0.000000,0.000000,0.250000,0,0);}
.m49_c00108{transform:matrix(0.281178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281178,0.000000,0.000000,0.250000,0,0);}
.ma8_c00108{transform:matrix(0.281226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281226,0.000000,0.000000,0.250000,0,0);}
.m42_c00108{transform:matrix(0.281937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281937,0.000000,0.000000,0.250000,0,0);}
.m91_c00108{transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);}
.m27_c00108{transform:matrix(0.283405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283405,0.000000,0.000000,0.250000,0,0);}
.m78_c00108{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m16_c00108{transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);}
.m96_c00108{transform:matrix(0.283996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283996,0.000000,0.000000,0.250000,0,0);}
.m3f_c00108{transform:matrix(0.284016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284016,0.000000,0.000000,0.250000,0,0);}
.m79_c00108{transform:matrix(0.284018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284018,0.000000,0.000000,0.250000,0,0);}
.m38_c00108{transform:matrix(0.284216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284216,0.000000,0.000000,0.250000,0,0);}
.m51_c00108{transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);}
.m85_c00108{transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);}
.mb2_c00108{transform:matrix(0.286336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286336,0.000000,0.000000,0.250000,0,0);}
.m10_c00108{transform:matrix(0.286764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286764,0.000000,0.000000,0.250000,0,0);}
.m57_c00108{transform:matrix(0.286908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286908,0.000000,0.000000,0.250000,0,0);}
.m5a_c00108{transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);}
.m2a_c00108{transform:matrix(0.288626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288626,0.000000,0.000000,0.250000,0,0);}
.mc3_c00108{transform:matrix(0.288714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288714,0.000000,0.000000,0.250000,0,0);}
.m2e_c00108{transform:matrix(0.288788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288788,0.000000,0.000000,0.250000,0,0);}
.ma7_c00108{transform:matrix(0.288980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288980,0.000000,0.000000,0.250000,0,0);}
.m4b_c00108{transform:matrix(0.289356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289356,0.000000,0.000000,0.250000,0,0);}
.m6f_c00108{transform:matrix(0.289431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289431,0.000000,0.000000,0.250000,0,0);}
.m8f_c00108{transform:matrix(0.289520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289520,0.000000,0.000000,0.250000,0,0);}
.mb5_c00108{transform:matrix(0.289775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289775,0.000000,0.000000,0.250000,0,0);}
.m54_c00108{transform:matrix(0.290198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290198,0.000000,0.000000,0.250000,0,0);}
.m30_c00108{transform:matrix(0.290457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290457,0.000000,0.000000,0.250000,0,0);}
.mf_c00108{transform:matrix(0.291408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291408,0.000000,0.000000,0.250000,0,0);}
.m1f_c00108{transform:matrix(0.291879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291879,0.000000,0.000000,0.250000,0,0);}
.ma5_c00108{transform:matrix(0.291974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291974,0.000000,0.000000,0.250000,0,0);}
.m67_c00108{transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);}
.m25_c00108{transform:matrix(0.292334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292334,0.000000,0.000000,0.250000,0,0);}
.m8_c00108{transform:matrix(0.292586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292586,0.000000,0.000000,0.250000,0,0);}
.m62_c00108{transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);}
.ma6_c00108{transform:matrix(0.293865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293865,0.000000,0.000000,0.250000,0,0);}
.m31_c00108{transform:matrix(0.293968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293968,0.000000,0.000000,0.250000,0,0);}
.ma9_c00108{transform:matrix(0.294116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294116,0.000000,0.000000,0.250000,0,0);}
.m89_c00108{transform:matrix(0.294174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294174,0.000000,0.000000,0.250000,0,0);}
.m6a_c00108{transform:matrix(0.294217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294217,0.000000,0.000000,0.250000,0,0);}
.m84_c00108{transform:matrix(0.295101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295101,0.000000,0.000000,0.250000,0,0);}
.m4c_c00108{transform:matrix(0.295694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295694,0.000000,0.000000,0.250000,0,0);}
.m53_c00108{transform:matrix(0.295842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295842,0.000000,0.000000,0.250000,0,0);}
.mc1_c00108{transform:matrix(0.296324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296324,0.000000,0.000000,0.250000,0,0);}
.m1c_c00108{transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);}
.m18_c00108{transform:matrix(0.296939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296939,0.000000,0.000000,0.250000,0,0);}
.m2c_c00108{transform:matrix(0.297268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297268,0.000000,0.000000,0.250000,0,0);}
.m4d_c00108{transform:matrix(0.297347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297347,0.000000,0.000000,0.250000,0,0);}
.m6b_c00108{transform:matrix(0.297398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297398,0.000000,0.000000,0.250000,0,0);}
.mb_c00108{transform:matrix(0.297645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297645,0.000000,0.000000,0.250000,0,0);}
.m24_c00108{transform:matrix(0.297790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297790,0.000000,0.000000,0.250000,0,0);}
.me_c00108{transform:matrix(0.297870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297870,0.000000,0.000000,0.250000,0,0);}
.m9d_c00108{transform:matrix(0.298063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298063,0.000000,0.000000,0.250000,0,0);}
.m5c_c00108{transform:matrix(0.298434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298434,0.000000,0.000000,0.250000,0,0);}
.m61_c00108{transform:matrix(0.298454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298454,0.000000,0.000000,0.250000,0,0);}
.mb8_c00108{transform:matrix(0.298503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298503,0.000000,0.000000,0.250000,0,0);}
.m36_c00108{transform:matrix(0.298829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298829,0.000000,0.000000,0.250000,0,0);}
.mad_c00108{transform:matrix(0.300571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300571,0.000000,0.000000,0.250000,0,0);}
.m45_c00108{transform:matrix(0.300712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300712,0.000000,0.000000,0.250000,0,0);}
.m77_c00108{transform:matrix(0.300946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300946,0.000000,0.000000,0.250000,0,0);}
.m35_c00108{transform:matrix(0.301913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301913,0.000000,0.000000,0.250000,0,0);}
.m37_c00108{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m56_c00108{transform:matrix(0.302687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302687,0.000000,0.000000,0.250000,0,0);}
.m94_c00108{transform:matrix(0.302703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302703,0.000000,0.000000,0.250000,0,0);}
.mbd_c00108{transform:matrix(0.302705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302705,0.000000,0.000000,0.250000,0,0);}
.m75_c00108{transform:matrix(0.303244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303244,0.000000,0.000000,0.250000,0,0);}
.m3d_c00108{transform:matrix(0.304818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304818,0.000000,0.000000,0.250000,0,0);}
.m3e_c00108{transform:matrix(0.304961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304961,0.000000,0.000000,0.250000,0,0);}
.m86_c00108{transform:matrix(0.306111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306111,0.000000,0.000000,0.250000,0,0);}
.m55_c00108{transform:matrix(0.306324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306324,0.000000,0.000000,0.250000,0,0);}
.mc8_c00108{transform:matrix(0.306447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306447,0.000000,0.000000,0.250000,0,0);}
.mc5_c00108{transform:matrix(0.306461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306461,0.000000,0.000000,0.250000,0,0);}
.m29_c00108{transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);}
.m23_c00108{transform:matrix(0.308174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308174,0.000000,0.000000,0.250000,0,0);}
.m68_c00108{transform:matrix(0.308408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308408,0.000000,0.000000,0.250000,0,0);}
.m58_c00108{transform:matrix(0.309540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309540,0.000000,0.000000,0.250000,0,0);}
.m2d_c00108{transform:matrix(0.309933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309933,0.000000,0.000000,0.250000,0,0);}
.m9a_c00108{transform:matrix(0.310202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310202,0.000000,0.000000,0.250000,0,0);}
.mae_c00108{transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);}
.m2f_c00108{transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);}
.m2b_c00108{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.m7f_c00108{transform:matrix(0.312601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312601,0.000000,0.000000,0.250000,0,0);}
.m33_c00108{transform:matrix(0.312744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312744,0.000000,0.000000,0.250000,0,0);}
.m72_c00108{transform:matrix(0.312877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312877,0.000000,0.000000,0.250000,0,0);}
.maa_c00108{transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);}
.mc6_c00108{transform:matrix(0.314584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314584,0.000000,0.000000,0.250000,0,0);}
.m1d_c00108{transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);}
.m28_c00108{transform:matrix(0.317174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317174,0.000000,0.000000,0.250000,0,0);}
.m95_c00108{transform:matrix(0.317798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317798,0.000000,0.000000,0.250000,0,0);}
.m52_c00108{transform:matrix(0.317888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317888,0.000000,0.000000,0.250000,0,0);}
.m7_c00108{transform:matrix(0.317979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317979,0.000000,0.000000,0.250000,0,0);}
.m1e_c00108{transform:matrix(0.318082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318082,0.000000,0.000000,0.250000,0,0);}
.mc9_c00108{transform:matrix(0.318096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318096,0.000000,0.000000,0.250000,0,0);}
.m26_c00108{transform:matrix(0.319181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319181,0.000000,0.000000,0.250000,0,0);}
.m5d_c00108{transform:matrix(0.319610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319610,0.000000,0.000000,0.250000,0,0);}
.m40_c00108{transform:matrix(0.320396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320396,0.000000,0.000000,0.250000,0,0);}
.m13_c00108{transform:matrix(0.320415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320415,0.000000,0.000000,0.250000,0,0);}
.m71_c00108{transform:matrix(0.320485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320485,0.000000,0.000000,0.250000,0,0);}
.m90_c00108{transform:matrix(0.322857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322857,0.000000,0.000000,0.250000,0,0);}
.m2_c00108{transform:matrix(0.324242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324242,0.000000,0.000000,0.250000,0,0);}
.mc0_c00108{transform:matrix(0.324286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324286,0.000000,0.000000,0.250000,0,0);}
.m88_c00108{transform:matrix(0.325136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325136,0.000000,0.000000,0.250000,0,0);}
.m7e_c00108{transform:matrix(0.325580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325580,0.000000,0.000000,0.250000,0,0);}
.ma_c00108{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.m46_c00108{transform:matrix(0.327730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327730,0.000000,0.000000,0.250000,0,0);}
.m48_c00108{transform:matrix(0.329713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329713,0.000000,0.000000,0.250000,0,0);}
.m9f_c00108{transform:matrix(0.329817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329817,0.000000,0.000000,0.250000,0,0);}
.mc2_c00108{transform:matrix(0.329967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329967,0.000000,0.000000,0.250000,0,0);}
.m92_c00108{transform:matrix(0.330354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330354,0.000000,0.000000,0.250000,0,0);}
.mb1_c00108{transform:matrix(0.332278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332278,0.000000,0.000000,0.250000,0,0);}
.m3c_c00108{transform:matrix(0.332326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332326,0.000000,0.000000,0.250000,0,0);}
.m81_c00108{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m9c_c00108{transform:matrix(0.333638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333638,0.000000,0.000000,0.250000,0,0);}
.m59_c00108{transform:matrix(0.334441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334441,0.000000,0.000000,0.250000,0,0);}
.mbe_c00108{transform:matrix(0.335855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335855,0.000000,0.000000,0.250000,0,0);}
.m4f_c00108{transform:matrix(0.336976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336976,0.000000,0.000000,0.250000,0,0);}
.m6e_c00108{transform:matrix(0.338397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338397,0.000000,0.000000,0.250000,0,0);}
.m9b_c00108{transform:matrix(0.338858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338858,0.000000,0.000000,0.250000,0,0);}
.m22_c00108{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m34_c00108{transform:matrix(0.340056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340056,0.000000,0.000000,0.250000,0,0);}
.m20_c00108{transform:matrix(0.343860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343860,0.000000,0.000000,0.250000,0,0);}
.m43_c00108{transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);}
.mbf_c00108{transform:matrix(0.346273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346273,0.000000,0.000000,0.250000,0,0);}
.mc7_c00108{transform:matrix(0.346431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346431,0.000000,0.000000,0.250000,0,0);}
.m14_c00108{transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);}
.m60_c00108{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m99_c00108{transform:matrix(0.350446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350446,0.000000,0.000000,0.250000,0,0);}
.mab_c00108{transform:matrix(0.354683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354683,0.000000,0.000000,0.250000,0,0);}
.m98_c00108{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m41_c00108{transform:matrix(0.356360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356360,0.000000,0.000000,0.250000,0,0);}
.m65_c00108{transform:matrix(0.359480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359480,0.000000,0.000000,0.250000,0,0);}
.mb9_c00108{transform:matrix(0.361141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361141,0.000000,0.000000,0.250000,0,0);}
.ma4_c00108{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m64_c00108{transform:matrix(0.363525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363525,0.000000,0.000000,0.250000,0,0);}
.m69_c00108{transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);}
.m5f_c00108{transform:matrix(0.367843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367843,0.000000,0.000000,0.250000,0,0);}
.m39_c00108{transform:matrix(0.368506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368506,0.000000,0.000000,0.250000,0,0);}
.m44_c00108{transform:matrix(0.379684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379684,0.000000,0.000000,0.250000,0,0);}
.m97_c00108{transform:matrix(0.396487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396487,0.000000,0.000000,0.250000,0,0);}
.ma3_c00108{transform:matrix(0.416528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416528,0.000000,0.000000,0.250000,0,0);}
.v0_c00108{vertical-align:0.000000px;}
.v1_c00108{vertical-align:18.532800px;}
.ls5_c00108{letter-spacing:-2.744280px;}
.ls3_c00108{letter-spacing:-1.662250px;}
.ls2_c00108{letter-spacing:0.000000px;}
.ls6_c00108{letter-spacing:0.399881px;}
.lsc_c00108{letter-spacing:1.246687px;}
.ls7_c00108{letter-spacing:1.654409px;}
.ls4_c00108{letter-spacing:3.112798px;}
.lsb_c00108{letter-spacing:3.167683px;}
.lsa_c00108{letter-spacing:3.323628px;}
.lsf_c00108{letter-spacing:3.366000px;}
.ls0_c00108{letter-spacing:3.489156px;}
.lse_c00108{letter-spacing:3.512134px;}
.lsd_c00108{letter-spacing:3.583810px;}
.ls1_c00108{letter-spacing:3.920400px;}
.ls8_c00108{letter-spacing:4.336200px;}
.ls10_c00108{letter-spacing:31.363200px;}
.ls9_c00108{letter-spacing:58.449798px;}
.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;}
}
.ws1_c00108{word-spacing:-19.602000px;}
.ws0_c00108{word-spacing:-2.195424px;}
.ws2_c00108{word-spacing:0.000000px;}
._4_c00108{margin-left:-14.426280px;}
._b_c00108{margin-left:-7.527168px;}
._d_c00108{margin-left:-4.981680px;}
._5_c00108{margin-left:-2.509056px;}
._2_c00108{width:5.096520px;}
._0_c00108{width:7.213536px;}
._6_c00108{width:8.546472px;}
._3_c00108{width:10.506672px;}
._8_c00108{width:15.367968px;}
._1_c00108{width:20.856528px;}
._c_c00108{width:22.783464px;}
._7_c00108{width:29.363400px;}
._9_c00108{width:32.382504px;}
._a_c00108{width:48.769776px;}
.fc0_c00108{color:transparent;}
.fs1_c00108{font-size:22.176000px;}
.fs5_c00108{font-size:22.374000px;}
.fse_c00108{font-size:31.363200px;}
.fs9_c00108{font-size:33.264000px;}
.fsd_c00108{font-size:34.650000px;}
.fsf_c00108{font-size:44.352000px;}
.fsc_c00108{font-size:47.916198px;}
.fs6_c00108{font-size:50.688000px;}
.fsa_c00108{font-size:56.628000px;}
.fs3_c00108{font-size:58.449798px;}
.fs8_c00108{font-size:67.320000px;}
.fs7_c00108{font-size:71.676198px;}
.fsb_c00108{font-size:72.864000px;}
.fs4_c00108{font-size:76.230000px;}
.fs0_c00108{font-size:78.408000px;}
.fs2_c00108{font-size:86.724000px;}
.y0_c00108{bottom:0.000000px;}
.y26_c00108{bottom:2.401785px;}
.y25_c00108{bottom:14.162985px;}
.y24_c00108{bottom:19.870335px;}
.y23_c00108{bottom:37.328985px;}
.y22_c00108{bottom:53.371935px;}
.y1_c00108{bottom:76.500000px;}
.y21_c00108{bottom:88.299135px;}
.y20_c00108{bottom:141.759135px;}
.y1f_c00108{bottom:154.940985px;}
.y1e_c00108{bottom:172.409535px;}
.y1d_c00108{bottom:207.693135px;}
.y1c_c00108{bottom:241.194735px;}
.y1a_c00108{bottom:241.551135px;}
.y1b_c00108{bottom:253.663785px;}
.y19_c00108{bottom:273.983535px;}
.y18_c00108{bottom:306.772335px;}
.y17_c00108{bottom:339.561135px;}
.y16_c00108{bottom:372.349935px;}
.y15_c00108{bottom:404.782335px;}
.y14_c00108{bottom:437.571135px;}
.y13_c00108{bottom:469.290735px;}
.y12_c00108{bottom:501.366735px;}
.y11_c00108{bottom:501.368715px;}
.y10_c00108{bottom:533.437785px;}
.yf_c00108{bottom:567.300735px;}
.ye_c00108{bottom:600.797385px;}
.yd_c00108{bottom:632.878335px;}
.yc_c00108{bottom:731.239785px;}
.yb_c00108{bottom:763.677135px;}
.ya_c00108{bottom:797.178735px;}
.y9_c00108{bottom:820.339785px;}
.y8_c00108{bottom:829.967535px;}
.y7_c00108{bottom:862.038585px;}
.y6_c00108{bottom:895.188735px;}
.y5_c00108{bottom:927.977535px;}
.y4_c00108{bottom:974.659005px;}
.y3_c00108{bottom:991.773135px;}
.y2_c00108{bottom:1079.086185px;}
.hf_c00108{height:20.887891px;}
.h7_c00108{height:21.958857px;}
.h3_c00108{height:23.128875px;}
.hb_c00108{height:34.693313px;}
.h5_c00108{height:38.927565px;}
.h10_c00108{height:46.257750px;}
.h8_c00108{height:52.866000px;}
.he_c00108{height:54.671667px;}
.hc_c00108{height:59.061234px;}
.ha_c00108{height:66.070898px;}
.h9_c00108{height:70.346269px;}
.hd_c00108{height:71.512031px;}
.h6_c00108{height:74.815576px;}
.h2_c00108{height:76.953164px;}
.h4_c00108{height:85.114863px;}
.h1_c00108{height:1110.000000px;}
.h0_c00108{height:1263.000000px;}
.w1_c00108{width:733.500000px;}
.w0_c00108{width:892.500000px;}
.x0_c00108{left:0.000000px;}
.x21_c00108{left:77.734335px;}
.x1_c00108{left:79.500000px;}
.x5b_c00108{left:81.382485px;}
.x4c_c00108{left:89.614335px;}
.x63_c00108{left:101.657685px;}
.x32_c00108{left:111.938835px;}
.xe_c00108{left:123.457485px;}
.x5_c00108{left:133.208985px;}
.x61_c00108{left:134.837535px;}
.x4f_c00108{left:145.791885px;}
.x5d_c00108{left:146.974935px;}
.x41_c00108{left:156.597735px;}
.x6_c00108{left:168.309435px;}
.x2e_c00108{left:177.882735px;}
.x4d_c00108{left:178.951935px;}
.x55_c00108{left:180.125085px;}
.x1a_c00108{left:189.332085px;}
.x59_c00108{left:190.485435px;}
.x22_c00108{left:199.553835px;}
.x29_c00108{left:211.295235px;}
.x23_c00108{left:212.889135px;}
.x7_c00108{left:221.650635px;}
.x33_c00108{left:223.249485px;}
.x5e_c00108{left:224.645385px;}
.x38_c00108{left:233.723685px;}
.x5c_c00108{left:235.020585px;}
.xf_c00108{left:245.361135px;}
.x56_c00108{left:246.410535px;}
.x1b_c00108{left:255.191835px;}
.x48_c00108{left:256.736235px;}
.x2a_c00108{left:267.383685px;}
.x10_c00108{left:278.872635px;}
.x67_c00108{left:280.624935px;}
.x1c_c00108{left:289.916085px;}
.x8_c00108{left:290.950635px;}
.x39_c00108{left:299.281485px;}
.x42_c00108{left:301.122885px;}
.x34_c00108{left:312.156435px;}
.x68_c00108{left:313.740435px;}
.x11_c00108{left:322.412835px;}
.x3e_c00108{left:323.605785px;}
.x3a_c00108{left:333.268185px;}
.x1d_c00108{left:335.485785px;}
.x35_c00108{left:344.252235px;}
.x12_c00108{left:346.227285px;}
.x2f_c00108{left:355.251135px;}
.x2b_c00108{left:356.419335px;}
.x43_c00108{left:357.963735px;}
.x69_c00108{left:359.691285px;}
.x3f_c00108{left:366.705435px;}
.x9_c00108{left:368.314185px;}
.x13_c00108{left:379.016085px;}
.x24_c00108{left:390.069435px;}
.x65_c00108{left:391.440585px;}
.x49_c00108{left:401.781135px;}
.x36_c00108{left:410.938635px;}
.x14_c00108{left:412.908735px;}
.x3b_c00108{left:421.987035px;}
.x44_c00108{left:424.234335px;}
.x5a_c00108{left:434.025435px;}
.x25_c00108{left:435.243135px;}
.x62_c00108{left:436.361835px;}
.x50_c00108{left:437.718135px;}
.xa_c00108{left:445.128285px;}
.x15_c00108{left:446.514285px;}
.x37_c00108{left:456.354885px;}
.x4e_c00108{left:457.513185px;}
.x26_c00108{left:468.066585px;}
.xb_c00108{left:478.813035px;}
.x30_c00108{left:489.861435px;}
.x51_c00108{left:490.930635px;}
.x16_c00108{left:492.999735px;}
.x1e_c00108{left:500.904885px;}
.x45_c00108{left:511.388985px;}
.xc_c00108{left:512.621535px;}
.x2c_c00108{left:522.877935px;}
.x64_c00108{left:524.016435px;}
.x27_c00108{left:534.767835px;}
.x1f_c00108{left:545.454885px;}
.x52_c00108{left:547.226985px;}
.x5f_c00108{left:556.874535px;}
.x53_c00108{left:566.685435px;}
.x17_c00108{left:567.898185px;}
.x40_c00108{left:579.228735px;}
.x31_c00108{left:589.618785px;}
.x3c_c00108{left:601.320585px;}
.x20_c00108{left:610.473135px;}
.xd_c00108{left:611.557185px;}
.x66_c00108{left:622.600635px;}
.x46_c00108{left:625.931985px;}
.x57_c00108{left:632.886735px;}
.x3d_c00108{left:634.445985px;}
.x18_c00108{left:644.885535px;}
.x54_c00108{left:646.241835px;}
.x2d_c00108{left:655.374585px;}
.x2_c00108{left:656.958585px;}
.x28_c00108{left:667.576335px;}
.x19_c00108{left:677.431785px;}
.x58_c00108{left:679.090035px;}
.x4_c00108{left:687.781245px;}
.x60_c00108{left:690.153285px;}
.x4a_c00108{left:692.271885px;}
.x3_c00108{left:693.841035px;}
.x6a_c00108{left:698.617785px;}
.x6b_c00108{left:699.988935px;}
.x4b_c00108{left:702.181785px;}
.x47_c00108{left:714.180585px;}
@media print{
.v0_c00108{vertical-align:0.000000pt;}
.v1_c00108{vertical-align:16.473600pt;}
.ls5_c00108{letter-spacing:-2.439360pt;}
.ls3_c00108{letter-spacing:-1.477555pt;}
.ls2_c00108{letter-spacing:0.000000pt;}
.ls6_c00108{letter-spacing:0.355450pt;}
.lsc_c00108{letter-spacing:1.108166pt;}
.ls7_c00108{letter-spacing:1.470586pt;}
.ls4_c00108{letter-spacing:2.766931pt;}
.lsb_c00108{letter-spacing:2.815718pt;}
.lsa_c00108{letter-spacing:2.954336pt;}
.lsf_c00108{letter-spacing:2.992000pt;}
.ls0_c00108{letter-spacing:3.101472pt;}
.lse_c00108{letter-spacing:3.121897pt;}
.lsd_c00108{letter-spacing:3.185609pt;}
.ls1_c00108{letter-spacing:3.484800pt;}
.ls8_c00108{letter-spacing:3.854400pt;}
.ls10_c00108{letter-spacing:27.878400pt;}
.ls9_c00108{letter-spacing:51.955376pt;}
.ws1_c00108{word-spacing:-17.424000pt;}
.ws0_c00108{word-spacing:-1.951488pt;}
.ws2_c00108{word-spacing:0.000000pt;}
._4_c00108{margin-left:-12.823360pt;}
._b_c00108{margin-left:-6.690816pt;}
._d_c00108{margin-left:-4.428160pt;}
._5_c00108{margin-left:-2.230272pt;}
._2_c00108{width:4.530240pt;}
._0_c00108{width:6.412032pt;}
._6_c00108{width:7.596864pt;}
._3_c00108{width:9.339264pt;}
._8_c00108{width:13.660416pt;}
._1_c00108{width:18.539136pt;}
._c_c00108{width:20.251968pt;}
._7_c00108{width:26.100800pt;}
._9_c00108{width:28.784448pt;}
._a_c00108{width:43.350912pt;}
.fs1_c00108{font-size:19.712000pt;}
.fs5_c00108{font-size:19.888000pt;}
.fse_c00108{font-size:27.878400pt;}
.fs9_c00108{font-size:29.568000pt;}
.fsd_c00108{font-size:30.800000pt;}
.fsf_c00108{font-size:39.424000pt;}
.fsc_c00108{font-size:42.592176pt;}
.fs6_c00108{font-size:45.056000pt;}
.fsa_c00108{font-size:50.336000pt;}
.fs3_c00108{font-size:51.955376pt;}
.fs8_c00108{font-size:59.840000pt;}
.fs7_c00108{font-size:63.712176pt;}
.fsb_c00108{font-size:64.768000pt;}
.fs4_c00108{font-size:67.760000pt;}
.fs0_c00108{font-size:69.696000pt;}
.fs2_c00108{font-size:77.088000pt;}
.y0_c00108{bottom:0.000000pt;}
.y26_c00108{bottom:2.134920pt;}
.y25_c00108{bottom:12.589320pt;}
.y24_c00108{bottom:17.662520pt;}
.y23_c00108{bottom:33.181320pt;}
.y22_c00108{bottom:47.441720pt;}
.y1_c00108{bottom:68.000000pt;}
.y21_c00108{bottom:78.488120pt;}
.y20_c00108{bottom:126.008120pt;}
.y1f_c00108{bottom:137.725320pt;}
.y1e_c00108{bottom:153.252920pt;}
.y1d_c00108{bottom:184.616120pt;}
.y1c_c00108{bottom:214.395320pt;}
.y1a_c00108{bottom:214.712120pt;}
.y1b_c00108{bottom:225.478920pt;}
.y19_c00108{bottom:243.540920pt;}
.y18_c00108{bottom:272.686520pt;}
.y17_c00108{bottom:301.832120pt;}
.y16_c00108{bottom:330.977720pt;}
.y15_c00108{bottom:359.806520pt;}
.y14_c00108{bottom:388.952120pt;}
.y13_c00108{bottom:417.147320pt;}
.y12_c00108{bottom:445.659320pt;}
.y11_c00108{bottom:445.661080pt;}
.y10_c00108{bottom:474.166920pt;}
.yf_c00108{bottom:504.267320pt;}
.ye_c00108{bottom:534.042120pt;}
.yd_c00108{bottom:562.558520pt;}
.yc_c00108{bottom:649.990920pt;}
.yb_c00108{bottom:678.824120pt;}
.ya_c00108{bottom:708.603320pt;}
.y9_c00108{bottom:729.190920pt;}
.y8_c00108{bottom:737.748920pt;}
.y7_c00108{bottom:766.256520pt;}
.y6_c00108{bottom:795.723320pt;}
.y5_c00108{bottom:824.868920pt;}
.y4_c00108{bottom:866.363560pt;}
.y3_c00108{bottom:881.576120pt;}
.y2_c00108{bottom:959.187720pt;}
.hf_c00108{height:18.567014pt;}
.h7_c00108{height:19.518984pt;}
.h3_c00108{height:20.559000pt;}
.hb_c00108{height:30.838500pt;}
.h5_c00108{height:34.602280pt;}
.h10_c00108{height:41.118000pt;}
.h8_c00108{height:46.992000pt;}
.he_c00108{height:48.597038pt;}
.hc_c00108{height:52.498875pt;}
.ha_c00108{height:58.729688pt;}
.h9_c00108{height:62.530016pt;}
.hd_c00108{height:63.566250pt;}
.h6_c00108{height:66.502734pt;}
.h2_c00108{height:68.402813pt;}
.h4_c00108{height:75.657656pt;}
.h1_c00108{height:986.666667pt;}
.h0_c00108{height:1122.666667pt;}
.w1_c00108{width:652.000000pt;}
.w0_c00108{width:793.333333pt;}
.x0_c00108{left:0.000000pt;}
.x21_c00108{left:69.097187pt;}
.x1_c00108{left:70.666667pt;}
.x5b_c00108{left:72.339987pt;}
.x4c_c00108{left:79.657187pt;}
.x63_c00108{left:90.362387pt;}
.x32_c00108{left:99.501187pt;}
.xe_c00108{left:109.739987pt;}
.x5_c00108{left:118.407987pt;}
.x61_c00108{left:119.855587pt;}
.x4f_c00108{left:129.592787pt;}
.x5d_c00108{left:130.644387pt;}
.x41_c00108{left:139.197987pt;}
.x6_c00108{left:149.608387pt;}
.x2e_c00108{left:158.117987pt;}
.x4d_c00108{left:159.068387pt;}
.x55_c00108{left:160.111187pt;}
.x1a_c00108{left:168.295187pt;}
.x59_c00108{left:169.320387pt;}
.x22_c00108{left:177.381187pt;}
.x29_c00108{left:187.817987pt;}
.x23_c00108{left:189.234787pt;}
.x7_c00108{left:197.022787pt;}
.x33_c00108{left:198.443987pt;}
.x5e_c00108{left:199.684787pt;}
.x38_c00108{left:207.754387pt;}
.x5c_c00108{left:208.907187pt;}
.xf_c00108{left:218.098787pt;}
.x56_c00108{left:219.031587pt;}
.x1b_c00108{left:226.837187pt;}
.x48_c00108{left:228.209987pt;}
.x2a_c00108{left:237.674387pt;}
.x10_c00108{left:247.886787pt;}
.x67_c00108{left:249.444387pt;}
.x1c_c00108{left:257.703187pt;}
.x8_c00108{left:258.622787pt;}
.x39_c00108{left:266.027987pt;}
.x42_c00108{left:267.664787pt;}
.x34_c00108{left:277.472387pt;}
.x68_c00108{left:278.880387pt;}
.x11_c00108{left:286.589187pt;}
.x3e_c00108{left:287.649587pt;}
.x3a_c00108{left:296.238387pt;}
.x1d_c00108{left:298.209587pt;}
.x35_c00108{left:306.001987pt;}
.x12_c00108{left:307.757587pt;}
.x2f_c00108{left:315.778787pt;}
.x2b_c00108{left:316.817187pt;}
.x43_c00108{left:318.189987pt;}
.x69_c00108{left:319.725587pt;}
.x3f_c00108{left:325.960387pt;}
.x9_c00108{left:327.390387pt;}
.x13_c00108{left:336.903187pt;}
.x24_c00108{left:346.728387pt;}
.x65_c00108{left:347.947187pt;}
.x49_c00108{left:357.138787pt;}
.x36_c00108{left:365.278787pt;}
.x14_c00108{left:367.029987pt;}
.x3b_c00108{left:375.099587pt;}
.x44_c00108{left:377.097187pt;}
.x5a_c00108{left:385.800387pt;}
.x25_c00108{left:386.882787pt;}
.x62_c00108{left:387.877187pt;}
.x50_c00108{left:389.082787pt;}
.xa_c00108{left:395.669587pt;}
.x15_c00108{left:396.901587pt;}
.x37_c00108{left:405.648787pt;}
.x4e_c00108{left:406.678387pt;}
.x26_c00108{left:416.059187pt;}
.xb_c00108{left:425.611587pt;}
.x30_c00108{left:435.432387pt;}
.x51_c00108{left:436.382787pt;}
.x16_c00108{left:438.221987pt;}
.x1e_c00108{left:445.248787pt;}
.x45_c00108{left:454.567987pt;}
.xc_c00108{left:455.663587pt;}
.x2c_c00108{left:464.780387pt;}
.x64_c00108{left:465.792387pt;}
.x27_c00108{left:475.349187pt;}
.x1f_c00108{left:484.848787pt;}
.x52_c00108{left:486.423987pt;}
.x5f_c00108{left:494.999587pt;}
.x53_c00108{left:503.720387pt;}
.x17_c00108{left:504.798387pt;}
.x40_c00108{left:514.869987pt;}
.x31_c00108{left:524.105587pt;}
.x3c_c00108{left:534.507187pt;}
.x20_c00108{left:542.642787pt;}
.xd_c00108{left:543.606387pt;}
.x66_c00108{left:553.422787pt;}
.x46_c00108{left:556.383987pt;}
.x57_c00108{left:562.565987pt;}
.x3d_c00108{left:563.951987pt;}
.x18_c00108{left:573.231587pt;}
.x54_c00108{left:574.437187pt;}
.x2d_c00108{left:582.555187pt;}
.x2_c00108{left:583.963187pt;}
.x28_c00108{left:593.401187pt;}
.x19_c00108{left:602.161587pt;}
.x58_c00108{left:603.635587pt;}
.x4_c00108{left:611.361107pt;}
.x60_c00108{left:613.469587pt;}
.x4a_c00108{left:615.352787pt;}
.x3_c00108{left:616.747587pt;}
.x6a_c00108{left:620.993587pt;}
.x6b_c00108{left:622.212387pt;}
.x4b_c00108{left:624.161587pt;}
.x47_c00108{left:634.827187pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6bec477b0365e37d640e9542.woff2')format("woff");}.ff1_c00109{font-family:ff1_c00109;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00109;src:url('chunks/assets/font_80dccd5ddcc25d49e2017a02.woff2')format("woff");}.ff2_c00109{font-family:ff2_c00109;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00109;src:url('chunks/assets/font_51962813d8d9242c285ec068.woff2')format("woff");}.ff3_c00109{font-family:ff3_c00109;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00109;src:url('chunks/assets/font_fd21ffe081a4adde22959d82.woff2')format("woff");}.ff4_c00109{font-family:ff4_c00109;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00109;src:url('chunks/assets/font_8c400a2d0e97466bc6f14faa.woff2')format("woff");}.ff5_c00109{font-family:ff5_c00109;line-height:1.401855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m50_c00109{transform:matrix(0.182909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182909,0.000000,0.000000,0.250000,0,0);}
.ma_c00109{transform:matrix(0.192434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192434,0.000000,0.000000,0.250000,0,0);}
.m25_c00109{transform:matrix(0.208964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208964,0.000000,0.000000,0.250000,0,0);}
.m52_c00109{transform:matrix(0.229751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229751,0.000000,0.000000,0.250000,0,0);}
.m4e_c00109{transform:matrix(0.244137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244137,0.000000,0.000000,0.250000,0,0);}
.m0_c00109{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m72_c00109{transform:matrix(0.250703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250703,0.000000,0.000000,0.250000,0,0);}
.m7e_c00109{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.mb3_c00109{transform:matrix(0.252645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252645,0.000000,0.000000,0.250000,0,0);}
.m97_c00109{transform:matrix(0.253121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253121,0.000000,0.000000,0.250000,0,0);}
.m65_c00109{transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);}
.m32_c00109{transform:matrix(0.257917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257917,0.000000,0.000000,0.250000,0,0);}
.mb_c00109{transform:matrix(0.260495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260495,0.000000,0.000000,0.250000,0,0);}
.mb2_c00109{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m6a_c00109{transform:matrix(0.261121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261121,0.000000,0.000000,0.250000,0,0);}
.m98_c00109{transform:matrix(0.261295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261295,0.000000,0.000000,0.250000,0,0);}
.m3d_c00109{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m79_c00109{transform:matrix(0.263560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263560,0.000000,0.000000,0.250000,0,0);}
.m3f_c00109{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m2_c00109{transform:matrix(0.264751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264751,0.000000,0.000000,0.250000,0,0);}
.m45_c00109{transform:matrix(0.264818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264818,0.000000,0.000000,0.250000,0,0);}
.mad_c00109{transform:matrix(0.265631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265631,0.000000,0.000000,0.250000,0,0);}
.ma2_c00109{transform:matrix(0.266622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266622,0.000000,0.000000,0.250000,0,0);}
.m28_c00109{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m85_c00109{transform:matrix(0.268129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268129,0.000000,0.000000,0.250000,0,0);}
.m20_c00109{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.m70_c00109{transform:matrix(0.269697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269697,0.000000,0.000000,0.250000,0,0);}
.m5a_c00109{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m19_c00109{transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);}
.m15_c00109{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.ma3_c00109{transform:matrix(0.272872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272872,0.000000,0.000000,0.250000,0,0);}
.m8_c00109{transform:matrix(0.273493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273493,0.000000,0.000000,0.250000,0,0);}
.ma6_c00109{transform:matrix(0.274027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274027,0.000000,0.000000,0.250000,0,0);}
.mac_c00109{transform:matrix(0.274588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274588,0.000000,0.000000,0.250000,0,0);}
.m11_c00109{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m60_c00109{transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);}
.mc_c00109{transform:matrix(0.277352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277352,0.000000,0.000000,0.250000,0,0);}
.m18_c00109{transform:matrix(0.278217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278217,0.000000,0.000000,0.250000,0,0);}
.m86_c00109{transform:matrix(0.278724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278724,0.000000,0.000000,0.250000,0,0);}
.m1e_c00109{transform:matrix(0.279272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279272,0.000000,0.000000,0.250000,0,0);}
.m93_c00109{transform:matrix(0.279390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279390,0.000000,0.000000,0.250000,0,0);}
.m2c_c00109{transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);}
.maa_c00109{transform:matrix(0.279610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279610,0.000000,0.000000,0.250000,0,0);}
.m9c_c00109{transform:matrix(0.280024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280024,0.000000,0.000000,0.250000,0,0);}
.m38_c00109{transform:matrix(0.280392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280392,0.000000,0.000000,0.250000,0,0);}
.m2b_c00109{transform:matrix(0.281043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281043,0.000000,0.000000,0.250000,0,0);}
.ma0_c00109{transform:matrix(0.281581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281581,0.000000,0.000000,0.250000,0,0);}
.m73_c00109{transform:matrix(0.282371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282371,0.000000,0.000000,0.250000,0,0);}
.m36_c00109{transform:matrix(0.282400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282400,0.000000,0.000000,0.250000,0,0);}
.m48_c00109{transform:matrix(0.282543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282543,0.000000,0.000000,0.250000,0,0);}
.m34_c00109{transform:matrix(0.282867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282867,0.000000,0.000000,0.250000,0,0);}
.m5e_c00109{transform:matrix(0.282874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282874,0.000000,0.000000,0.250000,0,0);}
.m61_c00109{transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);}
.m1_c00109{transform:matrix(0.283076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283076,0.000000,0.000000,0.250000,0,0);}
.m44_c00109{transform:matrix(0.283261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283261,0.000000,0.000000,0.250000,0,0);}
.m7f_c00109{transform:matrix(0.283519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283519,0.000000,0.000000,0.250000,0,0);}
.m16_c00109{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m41_c00109{transform:matrix(0.284292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284292,0.000000,0.000000,0.250000,0,0);}
.m7d_c00109{transform:matrix(0.284537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284537,0.000000,0.000000,0.250000,0,0);}
.m8d_c00109{transform:matrix(0.285371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285371,0.000000,0.000000,0.250000,0,0);}
.m8a_c00109{transform:matrix(0.286199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286199,0.000000,0.000000,0.250000,0,0);}
.m37_c00109{transform:matrix(0.286350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286350,0.000000,0.000000,0.250000,0,0);}
.ma4_c00109{transform:matrix(0.286764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286764,0.000000,0.000000,0.250000,0,0);}
.m5_c00109{transform:matrix(0.287295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287295,0.000000,0.000000,0.250000,0,0);}
.m12_c00109{transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);}
.m43_c00109{transform:matrix(0.288798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288798,0.000000,0.000000,0.250000,0,0);}
.m57_c00109{transform:matrix(0.288974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288974,0.000000,0.000000,0.250000,0,0);}
.m6_c00109{transform:matrix(0.289474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289474,0.000000,0.000000,0.250000,0,0);}
.m67_c00109{transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);}
.m2e_c00109{transform:matrix(0.291133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291133,0.000000,0.000000,0.250000,0,0);}
.m31_c00109{transform:matrix(0.291335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291335,0.000000,0.000000,0.250000,0,0);}
.m42_c00109{transform:matrix(0.291420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291420,0.000000,0.000000,0.250000,0,0);}
.m49_c00109{transform:matrix(0.291805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291805,0.000000,0.000000,0.250000,0,0);}
.m8f_c00109{transform:matrix(0.292112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292112,0.000000,0.000000,0.250000,0,0);}
.mab_c00109{transform:matrix(0.294390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294390,0.000000,0.000000,0.250000,0,0);}
.maf_c00109{transform:matrix(0.295773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295773,0.000000,0.000000,0.250000,0,0);}
.m3_c00109{transform:matrix(0.295850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295850,0.000000,0.000000,0.250000,0,0);}
.m9a_c00109{transform:matrix(0.295906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295906,0.000000,0.000000,0.250000,0,0);}
.m33_c00109{transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);}
.m35_c00109{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m66_c00109{transform:matrix(0.297178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297178,0.000000,0.000000,0.250000,0,0);}
.m87_c00109{transform:matrix(0.297276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297276,0.000000,0.000000,0.250000,0,0);}
.m3c_c00109{transform:matrix(0.297742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297742,0.000000,0.000000,0.250000,0,0);}
.m76_c00109{transform:matrix(0.298005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298005,0.000000,0.000000,0.250000,0,0);}
.m64_c00109{transform:matrix(0.298122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298122,0.000000,0.000000,0.250000,0,0);}
.m5b_c00109{transform:matrix(0.298886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298886,0.000000,0.000000,0.250000,0,0);}
.mf_c00109{transform:matrix(0.299990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299990,0.000000,0.000000,0.250000,0,0);}
.m7c_c00109{transform:matrix(0.300516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300516,0.000000,0.000000,0.250000,0,0);}
.m63_c00109{transform:matrix(0.300601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300601,0.000000,0.000000,0.250000,0,0);}
.m2a_c00109{transform:matrix(0.301525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301525,0.000000,0.000000,0.250000,0,0);}
.m9_c00109{transform:matrix(0.301689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301689,0.000000,0.000000,0.250000,0,0);}
.m6d_c00109{transform:matrix(0.301802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301802,0.000000,0.000000,0.250000,0,0);}
.m68_c00109{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m82_c00109{transform:matrix(0.302503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302503,0.000000,0.000000,0.250000,0,0);}
.m4_c00109{transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);}
.m99_c00109{transform:matrix(0.303033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303033,0.000000,0.000000,0.250000,0,0);}
.m96_c00109{transform:matrix(0.303323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303323,0.000000,0.000000,0.250000,0,0);}
.m95_c00109{transform:matrix(0.304737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304737,0.000000,0.000000,0.250000,0,0);}
.m1b_c00109{transform:matrix(0.304822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304822,0.000000,0.000000,0.250000,0,0);}
.m89_c00109{transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);}
.mb7_c00109{transform:matrix(0.305475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305475,0.000000,0.000000,0.250000,0,0);}
.m54_c00109{transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);}
.m1c_c00109{transform:matrix(0.305866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305866,0.000000,0.000000,0.250000,0,0);}
.ma8_c00109{transform:matrix(0.306364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306364,0.000000,0.000000,0.250000,0,0);}
.mb5_c00109{transform:matrix(0.306396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306396,0.000000,0.000000,0.250000,0,0);}
.m56_c00109{transform:matrix(0.306458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306458,0.000000,0.000000,0.250000,0,0);}
.m69_c00109{transform:matrix(0.306468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306468,0.000000,0.000000,0.250000,0,0);}
.m80_c00109{transform:matrix(0.306769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306769,0.000000,0.000000,0.250000,0,0);}
.m75_c00109{transform:matrix(0.307034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307034,0.000000,0.000000,0.250000,0,0);}
.m6f_c00109{transform:matrix(0.307518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307518,0.000000,0.000000,0.250000,0,0);}
.m53_c00109{transform:matrix(0.307730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307730,0.000000,0.000000,0.250000,0,0);}
.m58_c00109{transform:matrix(0.307972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307972,0.000000,0.000000,0.250000,0,0);}
.m17_c00109{transform:matrix(0.308189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308189,0.000000,0.000000,0.250000,0,0);}
.m1d_c00109{transform:matrix(0.308435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308435,0.000000,0.000000,0.250000,0,0);}
.m29_c00109{transform:matrix(0.308583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308583,0.000000,0.000000,0.250000,0,0);}
.m9d_c00109{transform:matrix(0.308646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308646,0.000000,0.000000,0.250000,0,0);}
.m23_c00109{transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);}
.m13_c00109{transform:matrix(0.309775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309775,0.000000,0.000000,0.250000,0,0);}
.m3a_c00109{transform:matrix(0.310104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310104,0.000000,0.000000,0.250000,0,0);}
.m6c_c00109{transform:matrix(0.310202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310202,0.000000,0.000000,0.250000,0,0);}
.ma1_c00109{transform:matrix(0.310431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310431,0.000000,0.000000,0.250000,0,0);}
.m4f_c00109{transform:matrix(0.310591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310591,0.000000,0.000000,0.250000,0,0);}
.m26_c00109{transform:matrix(0.310661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310661,0.000000,0.000000,0.250000,0,0);}
.mb1_c00109{transform:matrix(0.310862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310862,0.000000,0.000000,0.250000,0,0);}
.ma5_c00109{transform:matrix(0.311211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311211,0.000000,0.000000,0.250000,0,0);}
.m51_c00109{transform:matrix(0.311265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311265,0.000000,0.000000,0.250000,0,0);}
.m84_c00109{transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);}
.m92_c00109{transform:matrix(0.312184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312184,0.000000,0.000000,0.250000,0,0);}
.m1a_c00109{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.m40_c00109{transform:matrix(0.314995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314995,0.000000,0.000000,0.250000,0,0);}
.m3e_c00109{transform:matrix(0.315208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315208,0.000000,0.000000,0.250000,0,0);}
.m91_c00109{transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);}
.m90_c00109{transform:matrix(0.315704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315704,0.000000,0.000000,0.250000,0,0);}
.m88_c00109{transform:matrix(0.315917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315917,0.000000,0.000000,0.250000,0,0);}
.m8e_c00109{transform:matrix(0.316290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316290,0.000000,0.000000,0.250000,0,0);}
.me_c00109{transform:matrix(0.317533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317533,0.000000,0.000000,0.250000,0,0);}
.m8c_c00109{transform:matrix(0.317869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317869,0.000000,0.000000,0.250000,0,0);}
.mb0_c00109{transform:matrix(0.318294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318294,0.000000,0.000000,0.250000,0,0);}
.m14_c00109{transform:matrix(0.318597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318597,0.000000,0.000000,0.250000,0,0);}
.m7b_c00109{transform:matrix(0.320491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320491,0.000000,0.000000,0.250000,0,0);}
.mae_c00109{transform:matrix(0.321537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321537,0.000000,0.000000,0.250000,0,0);}
.mb4_c00109{transform:matrix(0.323511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323511,0.000000,0.000000,0.250000,0,0);}
.m30_c00109{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.m6e_c00109{transform:matrix(0.324242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324242,0.000000,0.000000,0.250000,0,0);}
.m46_c00109{transform:matrix(0.325179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325179,0.000000,0.000000,0.250000,0,0);}
.m71_c00109{transform:matrix(0.325473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325473,0.000000,0.000000,0.250000,0,0);}
.m10_c00109{transform:matrix(0.326362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326362,0.000000,0.000000,0.250000,0,0);}
.md_c00109{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m8b_c00109{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.ma7_c00109{transform:matrix(0.328916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328916,0.000000,0.000000,0.250000,0,0);}
.m27_c00109{transform:matrix(0.329832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329832,0.000000,0.000000,0.250000,0,0);}
.m59_c00109{transform:matrix(0.330994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330994,0.000000,0.000000,0.250000,0,0);}
.m83_c00109{transform:matrix(0.333129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333129,0.000000,0.000000,0.250000,0,0);}
.m78_c00109{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.ma9_c00109{transform:matrix(0.333376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333376,0.000000,0.000000,0.250000,0,0);}
.m74_c00109{transform:matrix(0.333631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333631,0.000000,0.000000,0.250000,0,0);}
.mb6_c00109{transform:matrix(0.334234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334234,0.000000,0.000000,0.250000,0,0);}
.m62_c00109{transform:matrix(0.335434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335434,0.000000,0.000000,0.250000,0,0);}
.m9f_c00109{transform:matrix(0.337036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337036,0.000000,0.000000,0.250000,0,0);}
.m7_c00109{transform:matrix(0.338861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338861,0.000000,0.000000,0.250000,0,0);}
.m81_c00109{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m9e_c00109{transform:matrix(0.339338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339338,0.000000,0.000000,0.250000,0,0);}
.m24_c00109{transform:matrix(0.339794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339794,0.000000,0.000000,0.250000,0,0);}
.m7a_c00109{transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);}
.m2f_c00109{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.m5f_c00109{transform:matrix(0.344852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344852,0.000000,0.000000,0.250000,0,0);}
.m6b_c00109{transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);}
.m39_c00109{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m77_c00109{transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);}
.m94_c00109{transform:matrix(0.350114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350114,0.000000,0.000000,0.250000,0,0);}
.m2d_c00109{transform:matrix(0.350827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350827,0.000000,0.000000,0.250000,0,0);}
.m9b_c00109{transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);}
.m5d_c00109{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m3b_c00109{transform:matrix(0.355848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355848,0.000000,0.000000,0.250000,0,0);}
.m21_c00109{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m22_c00109{transform:matrix(0.363073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363073,0.000000,0.000000,0.250000,0,0);}
.m47_c00109{transform:matrix(0.363123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363123,0.000000,0.000000,0.250000,0,0);}
.m1f_c00109{transform:matrix(0.367551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367551,0.000000,0.000000,0.250000,0,0);}
.m55_c00109{transform:matrix(0.376208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376208,0.000000,0.000000,0.250000,0,0);}
.m5c_c00109{transform:matrix(0.409469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409469,0.000000,0.000000,0.250000,0,0);}
.m4d_c00109{transform:matrix(0.758682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.758682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.758682,0.000000,0.000000,0.250000,0,0);}
.m4c_c00109{transform:matrix(1.328278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.328278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.328278,0.000000,0.000000,0.250000,0,0);}
.m4b_c00109{transform:matrix(1.594977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.594977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.594977,0.000000,0.000000,0.250000,0,0);}
.m4a_c00109{transform:matrix(3.189954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.189954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.189954,0.000000,0.000000,0.250000,0,0);}
.v0_c00109{vertical-align:0.000000px;}
.lse_c00109{letter-spacing:-2.744280px;}
.ls7_c00109{letter-spacing:-2.375762px;}
.lsb_c00109{letter-spacing:-1.136520px;}
.ls1_c00109{letter-spacing:0.000000px;}
.lsa_c00109{letter-spacing:0.584110px;}
.lsf_c00109{letter-spacing:0.642946px;}
.ls9_c00109{letter-spacing:1.246687px;}
.ls10_c00109{letter-spacing:1.568160px;}
.lsc_c00109{letter-spacing:1.623600px;}
.lsd_c00109{letter-spacing:2.593810px;}
.ls6_c00109{letter-spacing:3.112798px;}
.ls8_c00109{letter-spacing:3.402907px;}
.ls4_c00109{letter-spacing:3.781810px;}
.ls2_c00109{letter-spacing:3.920400px;}
.ls0_c00109{letter-spacing:21.936024px;}
.ls5_c00109{letter-spacing:51.321798px;}
.ls3_c00109{letter-spacing:54.172998px;}
.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:-19.602000px;}
.ws1_c00109{word-spacing:0.000000px;}
._4_c00109{margin-left:-11.525976px;}
._1_c00109{margin-left:-9.430344px;}
._0_c00109{width:3.350160px;}
._2_c00109{width:7.919208px;}
._6_c00109{width:20.856528px;}
._5_c00109{width:22.267872px;}
._3_c00109{width:497.769514px;}
.fc0_c00109{color:transparent;}
.fs8_c00109{font-size:11.682198px;}
.fs6_c00109{font-size:17.028000px;}
.fs0_c00109{font-size:28.314000px;}
.fs9_c00109{font-size:32.472000px;}
.fsf_c00109{font-size:33.264000px;}
.fs10_c00109{font-size:38.808000px;}
.fs2_c00109{font-size:39.600000px;}
.fs7_c00109{font-size:51.321798px;}
.fsb_c00109{font-size:51.876198px;}
.fs3_c00109{font-size:54.172998px;}
.fsa_c00109{font-size:55.836198px;}
.fse_c00109{font-size:59.400000px;}
.fs11_c00109{font-size:67.518000px;}
.fsd_c00109{font-size:69.696198px;}
.fs5_c00109{font-size:74.844000px;}
.fs4_c00109{font-size:75.636198px;}
.fs1_c00109{font-size:78.408000px;}
.fsc_c00109{font-size:101.376198px;}
.y0_c00109{bottom:0.000000px;}
.y29_c00109{bottom:46.595385px;}
.y1_c00109{bottom:76.500000px;}
.y28_c00109{bottom:87.581385px;}
.y27_c00109{bottom:149.951385px;}
.y26_c00109{bottom:181.314585px;}
.y25_c00109{bottom:214.464735px;}
.y24_c00109{bottom:247.253535px;}
.y23_c00109{bottom:280.037385px;}
.y22_c00109{bottom:311.400585px;}
.y21_c00109{bottom:319.241385px;}
.y20_c00109{bottom:344.550735px;}
.y1f_c00109{bottom:376.983135px;}
.y1e_c00109{bottom:409.410585px;}
.y1d_c00109{bottom:434.719935px;}
.y1c_c00109{bottom:441.842985px;}
.y1b_c00109{bottom:474.280335px;}
.y1a_c00109{bottom:506.707785px;}
.y18_c00109{bottom:570.859785px;}
.y19_c00109{bottom:574.072335px;}
.y17_c00109{bottom:603.653535px;}
.y15_c00109{bottom:628.240185px;}
.y13_c00109{bottom:635.724585px;}
.y14_c00109{bottom:636.080985px;}
.y16_c00109{bottom:636.442335px;}
.y12_c00109{bottom:654.262335px;}
.y11_c00109{bottom:668.513385px;}
.y10_c00109{bottom:700.594335px;}
.yf_c00109{bottom:733.026735px;}
.ye_c00109{bottom:765.454185px;}
.yd_c00109{bottom:797.178735px;}
.yc_c00109{bottom:830.318985px;}
.yb_c00109{bottom:862.751385px;}
.ya_c00109{bottom:879.150735px;}
.y9_c00109{bottom:900.173385px;}
.y8_c00109{bottom:910.508985px;}
.y7_c00109{bottom:921.918735px;}
.y2_c00109{bottom:929.403135px;}
.y6_c00109{bottom:929.754585px;}
.y5_c00109{bottom:930.110985px;}
.y4_c00109{bottom:944.371935px;}
.y3_c00109{bottom:1083.006585px;}
.ha_c00109{height:12.184167px;}
.h8_c00109{height:17.759672px;}
.h2_c00109{height:29.530617px;}
.hb_c00109{height:33.867281px;}
.h9_c00109{height:34.180317px;}
.h10_c00109{height:34.693313px;}
.h5_c00109{height:36.079217px;}
.h11_c00109{height:40.475531px;}
.h4_c00109{height:41.301563px;}
.hd_c00109{height:50.913651px;}
.hc_c00109{height:56.272418px;}
.h12_c00109{height:66.265225px;}
.hf_c00109{height:72.690957px;}
.h3_c00109{height:76.953164px;}
.h7_c00109{height:78.059953px;}
.h6_c00109{height:78.886191px;}
.he_c00109{height:105.732207px;}
.h1_c00109{height:1110.000000px;}
.h0_c00109{height:1263.000000px;}
.w1_c00109{width:733.500000px;}
.w0_c00109{width:892.500000px;}
.x0_c00109{left:0.000000px;}
.x2_c00109{left:40.827135px;}
.x25_c00109{left:72.507135px;}
.x5_c00109{left:73.754535px;}
.x5b_c00109{left:74.937585px;}
.x3d_c00109{left:75.972135px;}
.x1_c00109{left:79.500000px;}
.x2e_c00109{left:107.404635px;}
.x63_c00109{left:108.854985px;}
.x4b_c00109{left:117.368985px;}
.x6_c00109{left:119.150985px;}
.x15_c00109{left:128.214435px;}
.x52_c00109{left:130.169685px;}
.x3f_c00109{left:138.302535px;}
.x2f_c00109{left:140.237985px;}
.x34_c00109{left:151.286385px;}
.x40_c00109{left:152.870385px;}
.x41_c00109{left:159.151935px;}
.x4f_c00109{left:161.928885px;}
.x53_c00109{left:163.037685px;}
.x42_c00109{left:169.705335px;}
.x57_c00109{left:170.715135px;}
.x60_c00109{left:172.818885px;}
.x14_c00109{left:174.546435px;}
.x67_c00109{left:177.229335px;}
.x7_c00109{left:183.228735px;}
.x16_c00109{left:184.703835px;}
.x43_c00109{left:187.446135px;}
.x44_c00109{left:190.356735px;}
.x1d_c00109{left:194.752335px;}
.x58_c00109{left:196.168035px;}
.x6b_c00109{left:197.563935px;}
.x45_c00109{left:200.499285px;}
.x71_c00109{left:207.760935px;}
.x46_c00109{left:209.607285px;}
.x47_c00109{left:214.468185px;}
.x17_c00109{left:217.576785px;}
.x5e_c00109{left:218.596485px;}
.x1e_c00109{left:228.857835px;}
.x8_c00109{left:239.901285px;}
.x61_c00109{left:241.411035px;}
.x4_c00109{left:247.801485px;}
.x38_c00109{left:250.944735px;}
.x68_c00109{left:253.147485px;}
.x1f_c00109{left:262.116885px;}
.x30_c00109{left:263.181135px;}
.x26_c00109{left:273.873135px;}
.x6c_c00109{left:275.293785px;}
.x2a_c00109{left:284.570085px;}
.x3e_c00109{left:296.484735px;}
.x31_c00109{left:307.364835px;}
.x27_c00109{left:317.670735px;}
.x6d_c00109{left:320.130885px;}
.x18_c00109{left:328.283535px;}
.x20_c00109{left:329.882385px;}
.x35_c00109{left:339.604185px;}
.x5f_c00109{left:341.044635px;}
.x9_c00109{left:350.736735px;}
.x69_c00109{left:352.894935px;}
.x5c_c00109{left:364.047285px;}
.x64_c00109{left:365.834235px;}
.x54_c00109{left:373.902735px;}
.x4c_c00109{left:375.070935px;}
.x48_c00109{left:385.040235px;}
.x39_c00109{left:396.469785px;}
.x72_c00109{left:397.583535px;}
.x4d_c00109{left:407.765685px;}
.x19_c00109{left:418.205235px;}
.x62_c00109{left:419.422935px;}
.x28_c00109{left:429.619935px;}
.x5d_c00109{left:430.659435px;}
.x3a_c00109{left:439.411035px;}
.x2b_c00109{left:440.539635px;}
.x65_c00109{left:441.737535px;}
.xa_c00109{left:452.404785px;}
.x21_c00109{left:462.403785px;}
.x6a_c00109{left:463.804635px;}
.xb_c00109{left:473.754135px;}
.x3b_c00109{left:484.030335px;}
.x32_c00109{left:485.926185px;}
.x49_c00109{left:496.147935px;}
.x22_c00109{left:506.958735px;}
.x50_c00109{left:508.032885px;}
.x1a_c00109{left:518.695185px;}
.x73_c00109{left:520.828635px;}
.xc_c00109{left:529.411935px;}
.x6e_c00109{left:530.877135px;}
.x2c_c00109{left:540.252435px;}
.x51_c00109{left:541.831485px;}
.x1b_c00109{left:551.394885px;}
.x59_c00109{left:552.919485px;}
.xd_c00109{left:560.760285px;}
.x33_c00109{left:563.260035px;}
.xe_c00109{left:573.565935px;}
.x66_c00109{left:575.362785px;}
.x1c_c00109{left:584.465835px;}
.x29_c00109{left:585.579585px;}
.x23_c00109{left:594.445035px;}
.x2d_c00109{left:596.385435px;}
.x36_c00109{left:606.760635px;}
.x4e_c00109{left:617.804085px;}
.x6f_c00109{left:619.496985px;}
.xf_c00109{left:628.352535px;}
.x55_c00109{left:630.550335px;}
.x37_c00109{left:640.608735px;}
.x3_c00109{left:650.889885px;}
.x70_c00109{left:652.676835px;}
.x56_c00109{left:663.042135px;}
.x4a_c00109{left:673.397535px;}
.x10_c00109{left:684.777585px;}
.x3c_c00109{left:688.336635px;}
.x5a_c00109{left:689.420685px;}
.x13_c00109{left:690.608685px;}
.x12_c00109{left:693.751935px;}
.x24_c00109{left:695.845785px;}
.x11_c00109{left:719.640435px;}
@media print{
.v0_c00109{vertical-align:0.000000pt;}
.lse_c00109{letter-spacing:-2.439360pt;}
.ls7_c00109{letter-spacing:-2.111789pt;}
.lsb_c00109{letter-spacing:-1.010240pt;}
.ls1_c00109{letter-spacing:0.000000pt;}
.lsa_c00109{letter-spacing:0.519209pt;}
.lsf_c00109{letter-spacing:0.571507pt;}
.ls9_c00109{letter-spacing:1.108166pt;}
.ls10_c00109{letter-spacing:1.393920pt;}
.lsc_c00109{letter-spacing:1.443200pt;}
.lsd_c00109{letter-spacing:2.305609pt;}
.ls6_c00109{letter-spacing:2.766931pt;}
.ls8_c00109{letter-spacing:3.024806pt;}
.ls4_c00109{letter-spacing:3.361609pt;}
.ls2_c00109{letter-spacing:3.484800pt;}
.ls0_c00109{letter-spacing:19.498688pt;}
.ls5_c00109{letter-spacing:45.619376pt;}
.ls3_c00109{letter-spacing:48.153776pt;}
.ws0_c00109{word-spacing:-17.424000pt;}
.ws1_c00109{word-spacing:0.000000pt;}
._4_c00109{margin-left:-10.245312pt;}
._1_c00109{margin-left:-8.382528pt;}
._0_c00109{width:2.977920pt;}
._2_c00109{width:7.039296pt;}
._6_c00109{width:18.539136pt;}
._5_c00109{width:19.793664pt;}
._3_c00109{width:442.461790pt;}
.fs8_c00109{font-size:10.384176pt;}
.fs6_c00109{font-size:15.136000pt;}
.fs0_c00109{font-size:25.168000pt;}
.fs9_c00109{font-size:28.864000pt;}
.fsf_c00109{font-size:29.568000pt;}
.fs10_c00109{font-size:34.496000pt;}
.fs2_c00109{font-size:35.200000pt;}
.fs7_c00109{font-size:45.619376pt;}
.fsb_c00109{font-size:46.112176pt;}
.fs3_c00109{font-size:48.153776pt;}
.fsa_c00109{font-size:49.632176pt;}
.fse_c00109{font-size:52.800000pt;}
.fs11_c00109{font-size:60.016000pt;}
.fsd_c00109{font-size:61.952176pt;}
.fs5_c00109{font-size:66.528000pt;}
.fs4_c00109{font-size:67.232176pt;}
.fs1_c00109{font-size:69.696000pt;}
.fsc_c00109{font-size:90.112176pt;}
.y0_c00109{bottom:0.000000pt;}
.y29_c00109{bottom:41.418120pt;}
.y1_c00109{bottom:68.000000pt;}
.y28_c00109{bottom:77.850120pt;}
.y27_c00109{bottom:133.290120pt;}
.y26_c00109{bottom:161.168520pt;}
.y25_c00109{bottom:190.635320pt;}
.y24_c00109{bottom:219.780920pt;}
.y23_c00109{bottom:248.922120pt;}
.y22_c00109{bottom:276.800520pt;}
.y21_c00109{bottom:283.770120pt;}
.y20_c00109{bottom:306.267320pt;}
.y1f_c00109{bottom:335.096120pt;}
.y1e_c00109{bottom:363.920520pt;}
.y1d_c00109{bottom:386.417720pt;}
.y1c_c00109{bottom:392.749320pt;}
.y1b_c00109{bottom:421.582520pt;}
.y1a_c00109{bottom:450.406920pt;}
.y18_c00109{bottom:507.430920pt;}
.y19_c00109{bottom:510.286520pt;}
.y17_c00109{bottom:536.580920pt;}
.y15_c00109{bottom:558.435720pt;}
.y13_c00109{bottom:565.088520pt;}
.y14_c00109{bottom:565.405320pt;}
.y16_c00109{bottom:565.726520pt;}
.y12_c00109{bottom:581.566520pt;}
.y11_c00109{bottom:594.234120pt;}
.y10_c00109{bottom:622.750520pt;}
.yf_c00109{bottom:651.579320pt;}
.ye_c00109{bottom:680.403720pt;}
.yd_c00109{bottom:708.603320pt;}
.yc_c00109{bottom:738.061320pt;}
.yb_c00109{bottom:766.890120pt;}
.ya_c00109{bottom:781.467320pt;}
.y9_c00109{bottom:800.154120pt;}
.y8_c00109{bottom:809.341320pt;}
.y7_c00109{bottom:819.483320pt;}
.y2_c00109{bottom:826.136120pt;}
.y6_c00109{bottom:826.448520pt;}
.y5_c00109{bottom:826.765320pt;}
.y4_c00109{bottom:839.441720pt;}
.y3_c00109{bottom:962.672520pt;}
.ha_c00109{height:10.830371pt;}
.h8_c00109{height:15.786375pt;}
.h2_c00109{height:26.249438pt;}
.hb_c00109{height:30.104250pt;}
.h9_c00109{height:30.382504pt;}
.h10_c00109{height:30.838500pt;}
.h5_c00109{height:32.070415pt;}
.h11_c00109{height:35.978250pt;}
.h4_c00109{height:36.712500pt;}
.hd_c00109{height:45.256579pt;}
.hc_c00109{height:50.019927pt;}
.h12_c00109{height:58.902422pt;}
.hf_c00109{height:64.614184pt;}
.h3_c00109{height:68.402813pt;}
.h7_c00109{height:69.386625pt;}
.h6_c00109{height:70.121059pt;}
.he_c00109{height:93.984184pt;}
.h1_c00109{height:986.666667pt;}
.h0_c00109{height:1122.666667pt;}
.w1_c00109{width:652.000000pt;}
.w0_c00109{width:793.333333pt;}
.x0_c00109{left:0.000000pt;}
.x2_c00109{left:36.290787pt;}
.x25_c00109{left:64.450787pt;}
.x5_c00109{left:65.559587pt;}
.x5b_c00109{left:66.611187pt;}
.x3d_c00109{left:67.530787pt;}
.x1_c00109{left:70.666667pt;}
.x2e_c00109{left:95.470787pt;}
.x63_c00109{left:96.759987pt;}
.x4b_c00109{left:104.327987pt;}
.x6_c00109{left:105.911987pt;}
.x15_c00109{left:113.968387pt;}
.x52_c00109{left:115.706387pt;}
.x3f_c00109{left:122.935587pt;}
.x2f_c00109{left:124.655987pt;}
.x34_c00109{left:134.476787pt;}
.x40_c00109{left:135.884787pt;}
.x41_c00109{left:141.468387pt;}
.x4f_c00109{left:143.936787pt;}
.x53_c00109{left:144.922387pt;}
.x42_c00109{left:150.849187pt;}
.x57_c00109{left:151.746787pt;}
.x60_c00109{left:153.616787pt;}
.x14_c00109{left:155.152387pt;}
.x67_c00109{left:157.537187pt;}
.x7_c00109{left:162.869987pt;}
.x16_c00109{left:164.181187pt;}
.x43_c00109{left:166.618787pt;}
.x44_c00109{left:169.205987pt;}
.x1d_c00109{left:173.113187pt;}
.x58_c00109{left:174.371587pt;}
.x6b_c00109{left:175.612387pt;}
.x45_c00109{left:178.221587pt;}
.x71_c00109{left:184.676387pt;}
.x46_c00109{left:186.317587pt;}
.x47_c00109{left:190.638387pt;}
.x17_c00109{left:193.401587pt;}
.x5e_c00109{left:194.307987pt;}
.x1e_c00109{left:203.429187pt;}
.x8_c00109{left:213.245587pt;}
.x61_c00109{left:214.587587pt;}
.x4_c00109{left:220.267987pt;}
.x38_c00109{left:223.061987pt;}
.x68_c00109{left:225.019987pt;}
.x1f_c00109{left:232.992787pt;}
.x30_c00109{left:233.938787pt;}
.x26_c00109{left:243.442787pt;}
.x6c_c00109{left:244.705587pt;}
.x2a_c00109{left:252.951187pt;}
.x3e_c00109{left:263.541987pt;}
.x31_c00109{left:273.213187pt;}
.x27_c00109{left:282.373987pt;}
.x6d_c00109{left:284.560787pt;}
.x18_c00109{left:291.807587pt;}
.x20_c00109{left:293.228787pt;}
.x35_c00109{left:301.870387pt;}
.x5f_c00109{left:303.150787pt;}
.x9_c00109{left:311.765987pt;}
.x69_c00109{left:313.684387pt;}
.x5c_c00109{left:323.597587pt;}
.x64_c00109{left:325.185987pt;}
.x54_c00109{left:332.357987pt;}
.x4c_c00109{left:333.396387pt;}
.x48_c00109{left:342.257987pt;}
.x39_c00109{left:352.417587pt;}
.x72_c00109{left:353.407587pt;}
.x4d_c00109{left:362.458387pt;}
.x19_c00109{left:371.737987pt;}
.x62_c00109{left:372.820387pt;}
.x28_c00109{left:381.884387pt;}
.x5d_c00109{left:382.808387pt;}
.x3a_c00109{left:390.587587pt;}
.x2b_c00109{left:391.590787pt;}
.x65_c00109{left:392.655587pt;}
.xa_c00109{left:402.137587pt;}
.x21_c00109{left:411.025587pt;}
.x6a_c00109{left:412.270787pt;}
.xb_c00109{left:421.114787pt;}
.x3b_c00109{left:430.249187pt;}
.x32_c00109{left:431.934387pt;}
.x49_c00109{left:441.020387pt;}
.x22_c00109{left:450.629987pt;}
.x50_c00109{left:451.584787pt;}
.x1a_c00109{left:461.062387pt;}
.x73_c00109{left:462.958787pt;}
.xc_c00109{left:470.588387pt;}
.x6e_c00109{left:471.890787pt;}
.x2c_c00109{left:480.224387pt;}
.x51_c00109{left:481.627987pt;}
.x1b_c00109{left:490.128787pt;}
.x59_c00109{left:491.483987pt;}
.xd_c00109{left:498.453587pt;}
.x33_c00109{left:500.675587pt;}
.xe_c00109{left:509.836387pt;}
.x66_c00109{left:511.433587pt;}
.x1c_c00109{left:519.525187pt;}
.x29_c00109{left:520.515187pt;}
.x23_c00109{left:528.395587pt;}
.x2d_c00109{left:530.120387pt;}
.x36_c00109{left:539.342787pt;}
.x4e_c00109{left:549.159187pt;}
.x6f_c00109{left:550.663987pt;}
.xf_c00109{left:558.535587pt;}
.x55_c00109{left:560.489187pt;}
.x37_c00109{left:569.429987pt;}
.x3_c00109{left:578.568787pt;}
.x70_c00109{left:580.157187pt;}
.x56_c00109{left:589.370787pt;}
.x4a_c00109{left:598.575587pt;}
.x10_c00109{left:608.691187pt;}
.x3c_c00109{left:611.854787pt;}
.x5a_c00109{left:612.818387pt;}
.x13_c00109{left:613.874387pt;}
.x12_c00109{left:616.668387pt;}
.x24_c00109{left:618.529587pt;}
.x11_c00109{left:639.680387pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d7c61ad899ca561cd980c0e4.woff2')format("woff");}.ff1_c00110{font-family:ff1_c00110;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00110;src:url('chunks/assets/font_807cb3e88bf4aa67e47c9e3b.woff2')format("woff");}.ff2_c00110{font-family:ff2_c00110;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00110;src:url('chunks/assets/font_cb240107d68cc9917480fe42.woff2')format("woff");}.ff3_c00110{font-family:ff3_c00110;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00110;src:url('chunks/assets/font_26be8049936f0c3f948e6761.woff2')format("woff");}.ff4_c00110{font-family:ff4_c00110;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m70_c00110{transform:matrix(0.064286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064286,0.000000,0.000000,0.250000,0,0);}
.ma7_c00110{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);}
.m4e_c00110{transform:matrix(0.173610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173610,0.000000,0.000000,0.250000,0,0);}
.m6f_c00110{transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);}
.m83_c00110{transform:matrix(0.207235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207235,0.000000,0.000000,0.250000,0,0);}
.m58_c00110{transform:matrix(0.209242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209242,0.000000,0.000000,0.250000,0,0);}
.m4f_c00110{transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);}
.m6e_c00110{transform:matrix(0.219643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219643,0.000000,0.000000,0.250000,0,0);}
.m46_c00110{transform:matrix(0.234468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234468,0.000000,0.000000,0.250000,0,0);}
.mc_c00110{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m64_c00110{transform:matrix(0.251848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251848,0.000000,0.000000,0.250000,0,0);}
.m34_c00110{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.m3d_c00110{transform:matrix(0.255400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255400,0.000000,0.000000,0.250000,0,0);}
.m55_c00110{transform:matrix(0.257592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257592,0.000000,0.000000,0.250000,0,0);}
.m59_c00110{transform:matrix(0.257917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257917,0.000000,0.000000,0.250000,0,0);}
.m67_c00110{transform:matrix(0.260266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260266,0.000000,0.000000,0.250000,0,0);}
.m13_c00110{transform:matrix(0.262842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262842,0.000000,0.000000,0.250000,0,0);}
.m28_c00110{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.mf_c00110{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m1f_c00110{transform:matrix(0.264128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264128,0.000000,0.000000,0.250000,0,0);}
.ma3_c00110{transform:matrix(0.264787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264787,0.000000,0.000000,0.250000,0,0);}
.m7_c00110{transform:matrix(0.265121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265121,0.000000,0.000000,0.250000,0,0);}
.ma8_c00110{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.ma2_c00110{transform:matrix(0.267694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267694,0.000000,0.000000,0.250000,0,0);}
.m8_c00110{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m14_c00110{transform:matrix(0.268295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268295,0.000000,0.000000,0.250000,0,0);}
.m89_c00110{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.m8e_c00110{transform:matrix(0.269458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269458,0.000000,0.000000,0.250000,0,0);}
.m6_c00110{transform:matrix(0.269819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269819,0.000000,0.000000,0.250000,0,0);}
.m1e_c00110{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.ma4_c00110{transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);}
.m29_c00110{transform:matrix(0.271650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271650,0.000000,0.000000,0.250000,0,0);}
.m5d_c00110{transform:matrix(0.271696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271696,0.000000,0.000000,0.250000,0,0);}
.m51_c00110{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m3e_c00110{transform:matrix(0.273398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273398,0.000000,0.000000,0.250000,0,0);}
.m9_c00110{transform:matrix(0.273616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273616,0.000000,0.000000,0.250000,0,0);}
.m26_c00110{transform:matrix(0.274027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274027,0.000000,0.000000,0.250000,0,0);}
.m61_c00110{transform:matrix(0.274588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274588,0.000000,0.000000,0.250000,0,0);}
.m19_c00110{transform:matrix(0.276546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276546,0.000000,0.000000,0.250000,0,0);}
.m94_c00110{transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);}
.m5f_c00110{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m80_c00110{transform:matrix(0.277689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277689,0.000000,0.000000,0.250000,0,0);}
.m8f_c00110{transform:matrix(0.278106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278106,0.000000,0.000000,0.250000,0,0);}
.m18_c00110{transform:matrix(0.278536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278536,0.000000,0.000000,0.250000,0,0);}
.m2b_c00110{transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);}
.m6b_c00110{transform:matrix(0.281337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281337,0.000000,0.000000,0.250000,0,0);}
.m72_c00110{transform:matrix(0.282165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282165,0.000000,0.000000,0.250000,0,0);}
.m16_c00110{transform:matrix(0.282308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282308,0.000000,0.000000,0.250000,0,0);}
.m9c_c00110{transform:matrix(0.282494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282494,0.000000,0.000000,0.250000,0,0);}
.m85_c00110{transform:matrix(0.282587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282587,0.000000,0.000000,0.250000,0,0);}
.m5_c00110{transform:matrix(0.283238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283238,0.000000,0.000000,0.250000,0,0);}
.m81_c00110{transform:matrix(0.283330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283330,0.000000,0.000000,0.250000,0,0);}
.m38_c00110{transform:matrix(0.283405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283405,0.000000,0.000000,0.250000,0,0);}
.m82_c00110{transform:matrix(0.284734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284734,0.000000,0.000000,0.250000,0,0);}
.m84_c00110{transform:matrix(0.284803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284803,0.000000,0.000000,0.250000,0,0);}
.m47_c00110{transform:matrix(0.285047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285047,0.000000,0.000000,0.250000,0,0);}
.m3b_c00110{transform:matrix(0.285059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285059,0.000000,0.000000,0.250000,0,0);}
.m7e_c00110{transform:matrix(0.285424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285424,0.000000,0.000000,0.250000,0,0);}
.m10_c00110{transform:matrix(0.285961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285961,0.000000,0.000000,0.250000,0,0);}
.m24_c00110{transform:matrix(0.286557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286557,0.000000,0.000000,0.250000,0,0);}
.m8c_c00110{transform:matrix(0.286888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286888,0.000000,0.000000,0.250000,0,0);}
.m68_c00110{transform:matrix(0.287114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287114,0.000000,0.000000,0.250000,0,0);}
.m98_c00110{transform:matrix(0.287144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287144,0.000000,0.000000,0.250000,0,0);}
.m78_c00110{transform:matrix(0.288432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288432,0.000000,0.000000,0.250000,0,0);}
.m93_c00110{transform:matrix(0.288865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288865,0.000000,0.000000,0.250000,0,0);}
.m0_c00110{transform:matrix(0.289529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289529,0.000000,0.000000,0.250000,0,0);}
.m2c_c00110{transform:matrix(0.289896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289896,0.000000,0.000000,0.250000,0,0);}
.m8b_c00110{transform:matrix(0.290584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290584,0.000000,0.000000,0.250000,0,0);}
.m9e_c00110{transform:matrix(0.292055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292055,0.000000,0.000000,0.250000,0,0);}
.m2e_c00110{transform:matrix(0.292819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292819,0.000000,0.000000,0.250000,0,0);}
.m9f_c00110{transform:matrix(0.292891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292891,0.000000,0.000000,0.250000,0,0);}
.m1b_c00110{transform:matrix(0.293864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293864,0.000000,0.000000,0.250000,0,0);}
.m95_c00110{transform:matrix(0.293907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293907,0.000000,0.000000,0.250000,0,0);}
.m7b_c00110{transform:matrix(0.294391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294391,0.000000,0.000000,0.250000,0,0);}
.m4d_c00110{transform:matrix(0.294682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294682,0.000000,0.000000,0.250000,0,0);}
.m41_c00110{transform:matrix(0.295401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295401,0.000000,0.000000,0.250000,0,0);}
.ma1_c00110{transform:matrix(0.295693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295693,0.000000,0.000000,0.250000,0,0);}
.m32_c00110{transform:matrix(0.295779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295779,0.000000,0.000000,0.250000,0,0);}
.m97_c00110{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m5b_c00110{transform:matrix(0.297355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297355,0.000000,0.000000,0.250000,0,0);}
.m23_c00110{transform:matrix(0.297485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297485,0.000000,0.000000,0.250000,0,0);}
.m6a_c00110{transform:matrix(0.298350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298350,0.000000,0.000000,0.250000,0,0);}
.m1_c00110{transform:matrix(0.298777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298777,0.000000,0.000000,0.250000,0,0);}
.me_c00110{transform:matrix(0.298869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298869,0.000000,0.000000,0.250000,0,0);}
.m60_c00110{transform:matrix(0.299006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299006,0.000000,0.000000,0.250000,0,0);}
.mab_c00110{transform:matrix(0.299341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299341,0.000000,0.000000,0.250000,0,0);}
.m48_c00110{transform:matrix(0.299934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299934,0.000000,0.000000,0.250000,0,0);}
.maa_c00110{transform:matrix(0.300100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300100,0.000000,0.000000,0.250000,0,0);}
.ma_c00110{transform:matrix(0.300111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300111,0.000000,0.000000,0.250000,0,0);}
.m86_c00110{transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);}
.m7c_c00110{transform:matrix(0.301584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301584,0.000000,0.000000,0.250000,0,0);}
.m57_c00110{transform:matrix(0.301857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301857,0.000000,0.000000,0.250000,0,0);}
.m1d_c00110{transform:matrix(0.302040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302040,0.000000,0.000000,0.250000,0,0);}
.m22_c00110{transform:matrix(0.302197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302197,0.000000,0.000000,0.250000,0,0);}
.m35_c00110{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m92_c00110{transform:matrix(0.302658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302658,0.000000,0.000000,0.250000,0,0);}
.m45_c00110{transform:matrix(0.302713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302713,0.000000,0.000000,0.250000,0,0);}
.m52_c00110{transform:matrix(0.302822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302822,0.000000,0.000000,0.250000,0,0);}
.m62_c00110{transform:matrix(0.303152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303152,0.000000,0.000000,0.250000,0,0);}
.m2f_c00110{transform:matrix(0.303461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303461,0.000000,0.000000,0.250000,0,0);}
.m1a_c00110{transform:matrix(0.303475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303475,0.000000,0.000000,0.250000,0,0);}
.m66_c00110{transform:matrix(0.303559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303559,0.000000,0.000000,0.250000,0,0);}
.m3f_c00110{transform:matrix(0.304948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304948,0.000000,0.000000,0.250000,0,0);}
.m4c_c00110{transform:matrix(0.306543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306543,0.000000,0.000000,0.250000,0,0);}
.m71_c00110{transform:matrix(0.307567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307567,0.000000,0.000000,0.250000,0,0);}
.m49_c00110{transform:matrix(0.307947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307947,0.000000,0.000000,0.250000,0,0);}
.m91_c00110{transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);}
.m99_c00110{transform:matrix(0.308174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308174,0.000000,0.000000,0.250000,0,0);}
.md_c00110{transform:matrix(0.308258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308258,0.000000,0.000000,0.250000,0,0);}
.m5e_c00110{transform:matrix(0.308415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308415,0.000000,0.000000,0.250000,0,0);}
.m37_c00110{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m4a_c00110{transform:matrix(0.308762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308762,0.000000,0.000000,0.250000,0,0);}
.m96_c00110{transform:matrix(0.308890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308890,0.000000,0.000000,0.250000,0,0);}
.m6d_c00110{transform:matrix(0.308933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308933,0.000000,0.000000,0.250000,0,0);}
.m17_c00110{transform:matrix(0.309645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309645,0.000000,0.000000,0.250000,0,0);}
.m9a_c00110{transform:matrix(0.310895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310895,0.000000,0.000000,0.250000,0,0);}
.m4b_c00110{transform:matrix(0.310974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310974,0.000000,0.000000,0.250000,0,0);}
.m8d_c00110{transform:matrix(0.311922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311922,0.000000,0.000000,0.250000,0,0);}
.m79_c00110{transform:matrix(0.311969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311969,0.000000,0.000000,0.250000,0,0);}
.m3a_c00110{transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);}
.m36_c00110{transform:matrix(0.312316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312316,0.000000,0.000000,0.250000,0,0);}
.m7f_c00110{transform:matrix(0.312879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312879,0.000000,0.000000,0.250000,0,0);}
.m9b_c00110{transform:matrix(0.312977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312977,0.000000,0.000000,0.250000,0,0);}
.m75_c00110{transform:matrix(0.313301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313301,0.000000,0.000000,0.250000,0,0);}
.m8a_c00110{transform:matrix(0.313504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313504,0.000000,0.000000,0.250000,0,0);}
.m5a_c00110{transform:matrix(0.314584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314584,0.000000,0.000000,0.250000,0,0);}
.m20_c00110{transform:matrix(0.315032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315032,0.000000,0.000000,0.250000,0,0);}
.m77_c00110{transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);}
.m42_c00110{transform:matrix(0.317237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317237,0.000000,0.000000,0.250000,0,0);}
.m44_c00110{transform:matrix(0.318082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318082,0.000000,0.000000,0.250000,0,0);}
.m87_c00110{transform:matrix(0.318648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318648,0.000000,0.000000,0.250000,0,0);}
.m69_c00110{transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);}
.m56_c00110{transform:matrix(0.318980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318980,0.000000,0.000000,0.250000,0,0);}
.m2a_c00110{transform:matrix(0.319221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319221,0.000000,0.000000,0.250000,0,0);}
.m7d_c00110{transform:matrix(0.319246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319246,0.000000,0.000000,0.250000,0,0);}
.ma6_c00110{transform:matrix(0.319859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319859,0.000000,0.000000,0.250000,0,0);}
.m50_c00110{transform:matrix(0.319959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319959,0.000000,0.000000,0.250000,0,0);}
.m63_c00110{transform:matrix(0.321509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321509,0.000000,0.000000,0.250000,0,0);}
.m33_c00110{transform:matrix(0.323475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323475,0.000000,0.000000,0.250000,0,0);}
.m15_c00110{transform:matrix(0.325179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325179,0.000000,0.000000,0.250000,0,0);}
.m2_c00110{transform:matrix(0.325345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325345,0.000000,0.000000,0.250000,0,0);}
.m25_c00110{transform:matrix(0.326563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326563,0.000000,0.000000,0.250000,0,0);}
.m74_c00110{transform:matrix(0.326765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326765,0.000000,0.000000,0.250000,0,0);}
.m3c_c00110{transform:matrix(0.327374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327374,0.000000,0.000000,0.250000,0,0);}
.m76_c00110{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.m73_c00110{transform:matrix(0.328192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328192,0.000000,0.000000,0.250000,0,0);}
.m1c_c00110{transform:matrix(0.328429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328429,0.000000,0.000000,0.250000,0,0);}
.m88_c00110{transform:matrix(0.328465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328465,0.000000,0.000000,0.250000,0,0);}
.m21_c00110{transform:matrix(0.328655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328655,0.000000,0.000000,0.250000,0,0);}
.m7a_c00110{transform:matrix(0.328711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328711,0.000000,0.000000,0.250000,0,0);}
.m43_c00110{transform:matrix(0.329080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329080,0.000000,0.000000,0.250000,0,0);}
.m6c_c00110{transform:matrix(0.329131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329131,0.000000,0.000000,0.250000,0,0);}
.m27_c00110{transform:matrix(0.329158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329158,0.000000,0.000000,0.250000,0,0);}
.m30_c00110{transform:matrix(0.330631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330631,0.000000,0.000000,0.250000,0,0);}
.m9d_c00110{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m4_c00110{transform:matrix(0.333511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333511,0.000000,0.000000,0.250000,0,0);}
.m39_c00110{transform:matrix(0.334251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334251,0.000000,0.000000,0.250000,0,0);}
.mb_c00110{transform:matrix(0.337181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337181,0.000000,0.000000,0.250000,0,0);}
.m40_c00110{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.ma5_c00110{transform:matrix(0.339841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339841,0.000000,0.000000,0.250000,0,0);}
.ma9_c00110{transform:matrix(0.340270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340270,0.000000,0.000000,0.250000,0,0);}
.m12_c00110{transform:matrix(0.340426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340426,0.000000,0.000000,0.250000,0,0);}
.m2d_c00110{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.m65_c00110{transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);}
.m3_c00110{transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);}
.m11_c00110{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m5c_c00110{transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);}
.m53_c00110{transform:matrix(0.354731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354731,0.000000,0.000000,0.250000,0,0);}
.ma0_c00110{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m90_c00110{transform:matrix(0.357105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357105,0.000000,0.000000,0.250000,0,0);}
.m54_c00110{transform:matrix(0.361049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361049,0.000000,0.000000,0.250000,0,0);}
.m31_c00110{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.v0_c00110{vertical-align:0.000000px;}
.ls9_c00110{letter-spacing:-2.744280px;}
.ls7_c00110{letter-spacing:-1.058508px;}
.lsc_c00110{letter-spacing:-0.019067px;}
.ls4_c00110{letter-spacing:0.000000px;}
.ls1_c00110{letter-spacing:0.776239px;}
.ls8_c00110{letter-spacing:2.509056px;}
.ls5_c00110{letter-spacing:3.534310px;}
.ls2_c00110{letter-spacing:3.801610px;}
.ls3_c00110{letter-spacing:3.920400px;}
.ls6_c00110{letter-spacing:37.065798px;}
.lsb_c00110{letter-spacing:49.896198px;}
.lsa_c00110{letter-spacing:51.321798px;}
.ls0_c00110{letter-spacing:55.284294px;}
.sc__c00110{text-shadow:none;}
.sc0_c00110{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00110{-webkit-text-stroke:0px transparent;}
.sc0_c00110{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00110{word-spacing:-19.602000px;}
.ws2_c00110{word-spacing:-17.669124px;}
.ws3_c00110{word-spacing:-17.650057px;}
.ws4_c00110{word-spacing:0.000000px;}
.ws1_c00110{word-spacing:3.541739px;}
._8_c00110{margin-left:-24.852366px;}
._c_c00110{margin-left:-17.406576px;}
._7_c00110{margin-left:-3.240864px;}
._9_c00110{width:4.125904px;}
._a_c00110{width:5.723784px;}
._2_c00110{width:7.213536px;}
._6_c00110{width:11.211552px;}
._b_c00110{width:12.545280px;}
._1_c00110{width:22.267872px;}
._4_c00110{width:31.928688px;}
._0_c00110{width:33.402600px;}
._d_c00110{width:37.675044px;}
._5_c00110{width:40.525056px;}
._3_c00110{width:45.476640px;}
.fc0_c00110{color:transparent;}
.fsd_c00110{font-size:22.176000px;}
.fs11_c00110{font-size:22.770000px;}
.fs12_c00110{font-size:27.720000px;}
.fsc_c00110{font-size:33.264000px;}
.fs3_c00110{font-size:33.660000px;}
.fs13_c00110{font-size:35.640000px;}
.fs4_c00110{font-size:37.065798px;}
.fsf_c00110{font-size:39.204000px;}
.fs9_c00110{font-size:49.896198px;}
.fs8_c00110{font-size:51.321798px;}
.fsa_c00110{font-size:63.558000px;}
.fs7_c00110{font-size:64.548000px;}
.fs10_c00110{font-size:67.518000px;}
.fs2_c00110{font-size:70.686198px;}
.fs6_c00110{font-size:74.448000px;}
.fsb_c00110{font-size:74.844000px;}
.fse_c00110{font-size:75.240000px;}
.fs0_c00110{font-size:76.032198px;}
.fs1_c00110{font-size:78.408000px;}
.fs5_c00110{font-size:89.892198px;}
.y0_c00110{bottom:0.000000px;}
.y25_c00110{bottom:0.981135px;}
.y24_c00110{bottom:5.257935px;}
.y23_c00110{bottom:34.121385px;}
.y22_c00110{bottom:61.207785px;}
.y1_c00110{bottom:76.500000px;}
.y1e_c00110{bottom:89.369721px;}
.y21_c00110{bottom:122.152185px;}
.y1d_c00110{bottom:148.169385px;}
.y1c_c00110{bottom:187.378335px;}
.y20_c00110{bottom:219.449385px;}
.y1b_c00110{bottom:220.162185px;}
.y1f_c00110{bottom:239.056335px;}
.y1a_c00110{bottom:285.388335px;}
.y19_c00110{bottom:317.820735px;}
.y18_c00110{bottom:350.248185px;}
.y17_c00110{bottom:376.626735px;}
.y16_c00110{bottom:383.036985px;}
.y15_c00110{bottom:414.756585px;}
.y14_c00110{bottom:447.193935px;}
.y13_c00110{bottom:479.269935px;}
.y12_c00110{bottom:511.702335px;}
.y11_c00110{bottom:543.773385px;}
.y10_c00110{bottom:576.567135px;}
.yf_c00110{bottom:609.355935px;}
.ye_c00110{bottom:641.783385px;}
.yd_c00110{bottom:673.859385px;}
.yc_c00110{bottom:705.940335px;}
.yb_c00110{bottom:738.011385px;}
.ya_c00110{bottom:770.443785px;}
.y9_c00110{bottom:789.337935px;}
.y8_c00110{bottom:802.163385px;}
.y7_c00110{bottom:802.524735px;}
.y6_c00110{bottom:810.360585px;}
.y5_c00110{bottom:867.028185px;}
.y4_c00110{bottom:900.534735px;}
.y3_c00110{bottom:933.323535px;}
.y2_c00110{bottom:1084.075785px;}
.he_c00110{height:23.128875px;}
.h12_c00110{height:23.748398px;}
.h6_c00110{height:24.685821px;}
.h13_c00110{height:28.911094px;}
.h5_c00110{height:33.035449px;}
.ha_c00110{height:33.230868px;}
.h9_c00110{height:34.180317px;}
.hd_c00110{height:34.693313px;}
.h14_c00110{height:37.171406px;}
.h10_c00110{height:38.476582px;}
.h11_c00110{height:66.265225px;}
.hb_c00110{height:66.289008px;}
.h8_c00110{height:67.321547px;}
.h4_c00110{height:69.374638px;}
.hc_c00110{height:73.455293px;}
.h2_c00110{height:74.621444px;}
.h3_c00110{height:76.953164px;}
.hf_c00110{height:78.472969px;}
.h7_c00110{height:93.754753px;}
.h1_c00110{height:1110.000000px;}
.h0_c00110{height:1263.000000px;}
.w1_c00110{width:733.500000px;}
.w0_c00110{width:892.500000px;}
.x0_c00110{left:0.000000px;}
.x14_c00110{left:71.190435px;}
.x3_c00110{left:72.675435px;}
.x1_c00110{left:79.500000px;}
.x28_c00110{left:94.415835px;}
.x5e_c00110{left:105.538485px;}
.x33_c00110{left:116.898735px;}
.xc_c00110{left:128.645085px;}
.x2f_c00110{left:130.501335px;}
.x4_c00110{left:138.683685px;}
.x52_c00110{left:142.302135px;}
.xd_c00110{left:150.177585px;}
.x15_c00110{left:153.310935px;}
.x49_c00110{left:161.592285px;}
.x22_c00110{left:172.289235px;}
.x34_c00110{left:182.515935px;}
.x1b_c00110{left:183.991035px;}
.x29_c00110{left:195.435435px;}
.x57_c00110{left:204.226635px;}
.x4f_c00110{left:205.790835px;}
.x3c_c00110{left:207.260985px;}
.x53_c00110{left:215.542335px;}
.x16_c00110{left:216.962985px;}
.x54_c00110{left:226.679835px;}
.x2a_c00110{left:227.867835px;}
.x39_c00110{left:231.045735px;}
.x4a_c00110{left:239.663685px;}
.x5_c00110{left:250.632885px;}
.x62_c00110{left:254.399835px;}
.x23_c00110{left:261.339735px;}
.x17_c00110{left:262.433685px;}
.x41_c00110{left:272.784135px;}
.x4b_c00110{left:273.808785px;}
.x6_c00110{left:284.188935px;}
.x2b_c00110{left:294.905685px;}
.x3a_c00110{left:305.602635px;}
.x5c_c00110{left:306.652035px;}
.x18_c00110{left:316.522335px;}
.x50_c00110{left:318.007335px;}
.x42_c00110{left:326.753985px;}
.x1c_c00110{left:328.026135px;}
.x44_c00110{left:338.554785px;}
.x5f_c00110{left:340.445685px;}
.x61_c00110{left:342.257385px;}
.x5a_c00110{left:349.192335px;}
.x2c_c00110{left:350.840685px;}
.x3d_c00110{left:361.760385px;}
.x7_c00110{left:363.111735px;}
.x3e_c00110{left:371.388135px;}
.x35_c00110{left:373.585935px;}
.x24_c00110{left:384.258135px;}
.xe_c00110{left:395.415435px;}
.x8_c00110{left:405.236235px;}
.x3f_c00110{left:406.656885px;}
.x19_c00110{left:409.359585px;}
.x45_c00110{left:428.080485px;}
.x1d_c00110{left:429.243735px;}
.xf_c00110{left:438.703185px;}
.x5b_c00110{left:439.955535px;}
.x30_c00110{left:450.083235px;}
.x9_c00110{left:460.864335px;}
.x4c_c00110{left:462.359235px;}
.x25_c00110{left:472.348335px;}
.x5d_c00110{left:473.412585px;}
.x55_c00110{left:482.792835px;}
.x46_c00110{left:493.890735px;}
.x2d_c00110{left:495.905385px;}
.x1e_c00110{left:505.419285px;}
.x10_c00110{left:506.572635px;}
.x2e_c00110{left:517.432935px;}
.x4d_c00110{left:527.798235px;}
.x58_c00110{left:528.911985px;}
.x36_c00110{left:539.039685px;}
.x11_c00110{left:541.291935px;}
.xa_c00110{left:550.444485px;}
.x60_c00110{left:561.854235px;}
.x3b_c00110{left:571.318635px;}
.x37_c00110{left:572.635335px;}
.xb_c00110{left:583.213485px;}
.x47_c00110{left:584.624235px;}
.x1f_c00110{left:586.331985px;}
.x26_c00110{left:594.643035px;}
.x31_c00110{left:605.295435px;}
.x38_c00110{left:606.334935px;}
.x43_c00110{left:616.126035px;}
.x48_c00110{left:617.714985px;}
.x20_c00110{left:627.639735px;}
.x12_c00110{left:639.188085px;}
.x2_c00110{left:650.533485px;}
.x1a_c00110{left:653.518335px;}
.x13_c00110{left:661.646235px;}
.x56_c00110{left:673.689585px;}
.x40_c00110{left:682.812435px;}
.x51_c00110{left:684.302385px;}
.x21_c00110{left:688.009935px;}
.x59_c00110{left:689.876085px;}
.x27_c00110{left:693.880635px;}
.x4e_c00110{left:695.350785px;}
.x63_c00110{left:700.414635px;}
.x32_c00110{left:717.209985px;}
@media print{
.v0_c00110{vertical-align:0.000000pt;}
.ls9_c00110{letter-spacing:-2.439360pt;}
.ls7_c00110{letter-spacing:-0.940896pt;}
.lsc_c00110{letter-spacing:-0.016949pt;}
.ls4_c00110{letter-spacing:0.000000pt;}
.ls1_c00110{letter-spacing:0.689990pt;}
.ls8_c00110{letter-spacing:2.230272pt;}
.ls5_c00110{letter-spacing:3.141609pt;}
.ls2_c00110{letter-spacing:3.379209pt;}
.ls3_c00110{letter-spacing:3.484800pt;}
.ls6_c00110{letter-spacing:32.947376pt;}
.lsb_c00110{letter-spacing:44.352176pt;}
.lsa_c00110{letter-spacing:45.619376pt;}
.ls0_c00110{letter-spacing:49.141595pt;}
.ws0_c00110{word-spacing:-17.424000pt;}
.ws2_c00110{word-spacing:-15.705888pt;}
.ws3_c00110{word-spacing:-15.688939pt;}
.ws4_c00110{word-spacing:0.000000pt;}
.ws1_c00110{word-spacing:3.148212pt;}
._8_c00110{margin-left:-22.090992pt;}
._c_c00110{margin-left:-15.472512pt;}
._7_c00110{margin-left:-2.880768pt;}
._9_c00110{width:3.667470pt;}
._a_c00110{width:5.087808pt;}
._2_c00110{width:6.412032pt;}
._6_c00110{width:9.965824pt;}
._b_c00110{width:11.151360pt;}
._1_c00110{width:19.793664pt;}
._4_c00110{width:28.381056pt;}
._0_c00110{width:29.691200pt;}
._d_c00110{width:33.488928pt;}
._5_c00110{width:36.022272pt;}
._3_c00110{width:40.423680pt;}
.fsd_c00110{font-size:19.712000pt;}
.fs11_c00110{font-size:20.240000pt;}
.fs12_c00110{font-size:24.640000pt;}
.fsc_c00110{font-size:29.568000pt;}
.fs3_c00110{font-size:29.920000pt;}
.fs13_c00110{font-size:31.680000pt;}
.fs4_c00110{font-size:32.947376pt;}
.fsf_c00110{font-size:34.848000pt;}
.fs9_c00110{font-size:44.352176pt;}
.fs8_c00110{font-size:45.619376pt;}
.fsa_c00110{font-size:56.496000pt;}
.fs7_c00110{font-size:57.376000pt;}
.fs10_c00110{font-size:60.016000pt;}
.fs2_c00110{font-size:62.832176pt;}
.fs6_c00110{font-size:66.176000pt;}
.fsb_c00110{font-size:66.528000pt;}
.fse_c00110{font-size:66.880000pt;}
.fs0_c00110{font-size:67.584176pt;}
.fs1_c00110{font-size:69.696000pt;}
.fs5_c00110{font-size:79.904176pt;}
.y0_c00110{bottom:0.000000pt;}
.y25_c00110{bottom:0.872120pt;}
.y24_c00110{bottom:4.673720pt;}
.y23_c00110{bottom:30.330120pt;}
.y22_c00110{bottom:54.406920pt;}
.y1_c00110{bottom:68.000000pt;}
.y1e_c00110{bottom:79.439752pt;}
.y21_c00110{bottom:108.579720pt;}
.y1d_c00110{bottom:131.706120pt;}
.y1c_c00110{bottom:166.558520pt;}
.y20_c00110{bottom:195.066120pt;}
.y1b_c00110{bottom:195.699720pt;}
.y1f_c00110{bottom:212.494520pt;}
.y1a_c00110{bottom:253.678520pt;}
.y19_c00110{bottom:282.507320pt;}
.y18_c00110{bottom:311.331720pt;}
.y17_c00110{bottom:334.779320pt;}
.y16_c00110{bottom:340.477320pt;}
.y15_c00110{bottom:368.672520pt;}
.y14_c00110{bottom:397.505720pt;}
.y13_c00110{bottom:426.017720pt;}
.y12_c00110{bottom:454.846520pt;}
.y11_c00110{bottom:483.354120pt;}
.y10_c00110{bottom:512.504120pt;}
.yf_c00110{bottom:541.649720pt;}
.ye_c00110{bottom:570.474120pt;}
.yd_c00110{bottom:598.986120pt;}
.yc_c00110{bottom:627.502520pt;}
.yb_c00110{bottom:656.010120pt;}
.ya_c00110{bottom:684.838920pt;}
.y9_c00110{bottom:701.633720pt;}
.y8_c00110{bottom:713.034120pt;}
.y7_c00110{bottom:713.355320pt;}
.y6_c00110{bottom:720.320520pt;}
.y5_c00110{bottom:770.691720pt;}
.y4_c00110{bottom:800.475320pt;}
.y3_c00110{bottom:829.620920pt;}
.y2_c00110{bottom:963.622920pt;}
.he_c00110{height:20.559000pt;}
.h12_c00110{height:21.109688pt;}
.h6_c00110{height:21.942952pt;}
.h13_c00110{height:25.698750pt;}
.h5_c00110{height:29.364844pt;}
.ha_c00110{height:29.538549pt;}
.h9_c00110{height:30.382504pt;}
.hd_c00110{height:30.838500pt;}
.h14_c00110{height:33.041250pt;}
.h10_c00110{height:34.201406pt;}
.h11_c00110{height:58.902422pt;}
.hb_c00110{height:58.923563pt;}
.h8_c00110{height:59.841375pt;}
.h4_c00110{height:61.666345pt;}
.hc_c00110{height:65.293594pt;}
.h2_c00110{height:66.330173pt;}
.h3_c00110{height:68.402813pt;}
.hf_c00110{height:69.753750pt;}
.h7_c00110{height:83.337559pt;}
.h1_c00110{height:986.666667pt;}
.h0_c00110{height:1122.666667pt;}
.w1_c00110{width:652.000000pt;}
.w0_c00110{width:793.333333pt;}
.x0_c00110{left:0.000000pt;}
.x14_c00110{left:63.280387pt;}
.x3_c00110{left:64.600387pt;}
.x1_c00110{left:70.666667pt;}
.x28_c00110{left:83.925187pt;}
.x5e_c00110{left:93.811987pt;}
.x33_c00110{left:103.909987pt;}
.xc_c00110{left:114.351187pt;}
.x2f_c00110{left:116.001187pt;}
.x4_c00110{left:123.274387pt;}
.x52_c00110{left:126.490787pt;}
.xd_c00110{left:133.491187pt;}
.x15_c00110{left:136.276387pt;}
.x49_c00110{left:143.637587pt;}
.x22_c00110{left:153.145987pt;}
.x34_c00110{left:162.236387pt;}
.x1b_c00110{left:163.547587pt;}
.x29_c00110{left:173.720387pt;}
.x57_c00110{left:181.534787pt;}
.x4f_c00110{left:182.925187pt;}
.x3c_c00110{left:184.231987pt;}
.x53_c00110{left:191.593187pt;}
.x16_c00110{left:192.855987pt;}
.x54_c00110{left:201.493187pt;}
.x2a_c00110{left:202.549187pt;}
.x39_c00110{left:205.373987pt;}
.x4a_c00110{left:213.034387pt;}
.x5_c00110{left:222.784787pt;}
.x62_c00110{left:226.133187pt;}
.x23_c00110{left:232.301987pt;}
.x17_c00110{left:233.274387pt;}
.x41_c00110{left:242.474787pt;}
.x4b_c00110{left:243.385587pt;}
.x6_c00110{left:252.612387pt;}
.x2b_c00110{left:262.138387pt;}
.x3a_c00110{left:271.646787pt;}
.x5c_c00110{left:272.579587pt;}
.x18_c00110{left:281.353187pt;}
.x50_c00110{left:282.673187pt;}
.x42_c00110{left:290.447987pt;}
.x1c_c00110{left:291.578787pt;}
.x44_c00110{left:300.937587pt;}
.x5f_c00110{left:302.618387pt;}
.x61_c00110{left:304.228787pt;}
.x5a_c00110{left:310.393187pt;}
.x2c_c00110{left:311.858387pt;}
.x3d_c00110{left:321.564787pt;}
.x7_c00110{left:322.765987pt;}
.x3e_c00110{left:330.122787pt;}
.x35_c00110{left:332.076387pt;}
.x24_c00110{left:341.562787pt;}
.xe_c00110{left:351.480387pt;}
.x8_c00110{left:360.209987pt;}
.x3f_c00110{left:361.472787pt;}
.x19_c00110{left:363.875187pt;}
.x45_c00110{left:380.515987pt;}
.x1d_c00110{left:381.549987pt;}
.xf_c00110{left:389.958387pt;}
.x5b_c00110{left:391.071587pt;}
.x30_c00110{left:400.073987pt;}
.x9_c00110{left:409.657187pt;}
.x4c_c00110{left:410.985987pt;}
.x25_c00110{left:419.865187pt;}
.x5d_c00110{left:420.811187pt;}
.x55_c00110{left:429.149187pt;}
.x46_c00110{left:439.013987pt;}
.x2d_c00110{left:440.804787pt;}
.x1e_c00110{left:449.261587pt;}
.x10_c00110{left:450.286787pt;}
.x2e_c00110{left:459.940387pt;}
.x4d_c00110{left:469.153987pt;}
.x58_c00110{left:470.143987pt;}
.x36_c00110{left:479.146387pt;}
.x11_c00110{left:481.148387pt;}
.xa_c00110{left:489.283987pt;}
.x60_c00110{left:499.425987pt;}
.x3b_c00110{left:507.838787pt;}
.x37_c00110{left:509.009187pt;}
.xb_c00110{left:518.411987pt;}
.x47_c00110{left:519.665987pt;}
.x1f_c00110{left:521.183987pt;}
.x26_c00110{left:528.571587pt;}
.x31_c00110{left:538.040387pt;}
.x38_c00110{left:538.964387pt;}
.x43_c00110{left:547.667587pt;}
.x48_c00110{left:549.079987pt;}
.x20_c00110{left:557.901987pt;}
.x12_c00110{left:568.167187pt;}
.x2_c00110{left:578.251987pt;}
.x1a_c00110{left:580.905187pt;}
.x13_c00110{left:588.129987pt;}
.x56_c00110{left:598.835187pt;}
.x40_c00110{left:606.944387pt;}
.x51_c00110{left:608.268787pt;}
.x21_c00110{left:611.564387pt;}
.x59_c00110{left:613.223187pt;}
.x27_c00110{left:616.782787pt;}
.x4e_c00110{left:618.089587pt;}
.x63_c00110{left:622.590787pt;}
.x32_c00110{left:637.519987pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_84e3de01f2ab4faf0a4cb9fe.woff2')format("woff");}.ff1_c00111{font-family:ff1_c00111;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00111;src:url('chunks/assets/font_142efe3b295c3d34525683be.woff2')format("woff");}.ff2_c00111{font-family:ff2_c00111;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00111;src:url('chunks/assets/font_f09c6f77a48f9d5731a23ac8.woff2')format("woff");}.ff3_c00111{font-family:ff3_c00111;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00111;src:url('chunks/assets/font_12f54e8dc62db3b39c4e2856.woff2')format("woff");}.ff4_c00111{font-family:ff4_c00111;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00111;src:url('chunks/assets/font_98a3047a422a5e26872b5d99.woff2')format("woff");}.ff5_c00111{font-family:ff5_c00111;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m9d_c00111{transform:matrix(0.103078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103078,0.000000,0.000000,0.250000,0,0);}
.m78_c00111{transform:matrix(0.119058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119058,0.000000,0.000000,0.250000,0,0);}
.m8d_c00111{transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);}
.ma7_c00111{transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);}
.m1_c00111{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m79_c00111{transform:matrix(0.251136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251136,0.000000,0.000000,0.250000,0,0);}
.m3f_c00111{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.m7c_c00111{transform:matrix(0.253253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253253,0.000000,0.000000,0.250000,0,0);}
.m2f_c00111{transform:matrix(0.253849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253849,0.000000,0.000000,0.250000,0,0);}
.ma2_c00111{transform:matrix(0.254852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254852,0.000000,0.000000,0.250000,0,0);}
.m61_c00111{transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);}
.m92_c00111{transform:matrix(0.256595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256595,0.000000,0.000000,0.250000,0,0);}
.m29_c00111{transform:matrix(0.257079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257079,0.000000,0.000000,0.250000,0,0);}
.m1c_c00111{transform:matrix(0.257917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257917,0.000000,0.000000,0.250000,0,0);}
.m8c_c00111{transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);}
.m60_c00111{transform:matrix(0.258705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258705,0.000000,0.000000,0.250000,0,0);}
.m95_c00111{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m99_c00111{transform:matrix(0.261624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261624,0.000000,0.000000,0.250000,0,0);}
.m9c_c00111{transform:matrix(0.262220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262220,0.000000,0.000000,0.250000,0,0);}
.m50_c00111{transform:matrix(0.262271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262271,0.000000,0.000000,0.250000,0,0);}
.m14_c00111{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m5a_c00111{transform:matrix(0.265720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265720,0.000000,0.000000,0.250000,0,0);}
.m4_c00111{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m2c_c00111{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.m8a_c00111{transform:matrix(0.267199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267199,0.000000,0.000000,0.250000,0,0);}
.mb_c00111{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m6d_c00111{transform:matrix(0.268424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268424,0.000000,0.000000,0.250000,0,0);}
.m84_c00111{transform:matrix(0.268484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268484,0.000000,0.000000,0.250000,0,0);}
.m40_c00111{transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);}
.m66_c00111{transform:matrix(0.269290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269290,0.000000,0.000000,0.250000,0,0);}
.m82_c00111{transform:matrix(0.269713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269713,0.000000,0.000000,0.250000,0,0);}
.m5_c00111{transform:matrix(0.269857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269857,0.000000,0.000000,0.250000,0,0);}
.m10_c00111{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m9f_c00111{transform:matrix(0.271315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271315,0.000000,0.000000,0.250000,0,0);}
.m32_c00111{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m46_c00111{transform:matrix(0.272823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272823,0.000000,0.000000,0.250000,0,0);}
.m35_c00111{transform:matrix(0.272938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272938,0.000000,0.000000,0.250000,0,0);}
.m38_c00111{transform:matrix(0.273186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273186,0.000000,0.000000,0.250000,0,0);}
.m51_c00111{transform:matrix(0.273271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273271,0.000000,0.000000,0.250000,0,0);}
.m5d_c00111{transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);}
.ma1_c00111{transform:matrix(0.274918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274918,0.000000,0.000000,0.250000,0,0);}
.m39_c00111{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m4f_c00111{transform:matrix(0.276042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276042,0.000000,0.000000,0.250000,0,0);}
.m6f_c00111{transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);}
.m5e_c00111{transform:matrix(0.277767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277767,0.000000,0.000000,0.250000,0,0);}
.m9_c00111{transform:matrix(0.277902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277902,0.000000,0.000000,0.250000,0,0);}
.m1a_c00111{transform:matrix(0.278302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278302,0.000000,0.000000,0.250000,0,0);}
.m0_c00111{transform:matrix(0.278436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278436,0.000000,0.000000,0.250000,0,0);}
.m58_c00111{transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);}
.m80_c00111{transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);}
.m6a_c00111{transform:matrix(0.279839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279839,0.000000,0.000000,0.250000,0,0);}
.ma5_c00111{transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);}
.m71_c00111{transform:matrix(0.282430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282430,0.000000,0.000000,0.250000,0,0);}
.m31_c00111{transform:matrix(0.282566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282566,0.000000,0.000000,0.250000,0,0);}
.m42_c00111{transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);}
.m75_c00111{transform:matrix(0.283378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283378,0.000000,0.000000,0.250000,0,0);}
.m2d_c00111{transform:matrix(0.285711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285711,0.000000,0.000000,0.250000,0,0);}
.m55_c00111{transform:matrix(0.286274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286274,0.000000,0.000000,0.250000,0,0);}
.m7a_c00111{transform:matrix(0.286870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286870,0.000000,0.000000,0.250000,0,0);}
.m1e_c00111{transform:matrix(0.287369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287369,0.000000,0.000000,0.250000,0,0);}
.m6e_c00111{transform:matrix(0.287831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287831,0.000000,0.000000,0.250000,0,0);}
.m9b_c00111{transform:matrix(0.288297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288297,0.000000,0.000000,0.250000,0,0);}
.m5c_c00111{transform:matrix(0.288908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288908,0.000000,0.000000,0.250000,0,0);}
.m4b_c00111{transform:matrix(0.288974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288974,0.000000,0.000000,0.250000,0,0);}
.m47_c00111{transform:matrix(0.289789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289789,0.000000,0.000000,0.250000,0,0);}
.mf_c00111{transform:matrix(0.290161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290161,0.000000,0.000000,0.250000,0,0);}
.m33_c00111{transform:matrix(0.290405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290405,0.000000,0.000000,0.250000,0,0);}
.m87_c00111{transform:matrix(0.291014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291014,0.000000,0.000000,0.250000,0,0);}
.m4d_c00111{transform:matrix(0.291407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291407,0.000000,0.000000,0.250000,0,0);}
.m68_c00111{transform:matrix(0.291699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291699,0.000000,0.000000,0.250000,0,0);}
.m88_c00111{transform:matrix(0.291846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291846,0.000000,0.000000,0.250000,0,0);}
.m65_c00111{transform:matrix(0.291994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291994,0.000000,0.000000,0.250000,0,0);}
.m19_c00111{transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);}
.ma0_c00111{transform:matrix(0.292328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292328,0.000000,0.000000,0.250000,0,0);}
.m7f_c00111{transform:matrix(0.292731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292731,0.000000,0.000000,0.250000,0,0);}
.m27_c00111{transform:matrix(0.292737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292737,0.000000,0.000000,0.250000,0,0);}
.m59_c00111{transform:matrix(0.292819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292819,0.000000,0.000000,0.250000,0,0);}
.m63_c00111{transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);}
.m52_c00111{transform:matrix(0.293907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293907,0.000000,0.000000,0.250000,0,0);}
.m13_c00111{transform:matrix(0.294374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294374,0.000000,0.000000,0.250000,0,0);}
.m9a_c00111{transform:matrix(0.294494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294494,0.000000,0.000000,0.250000,0,0);}
.m96_c00111{transform:matrix(0.294915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294915,0.000000,0.000000,0.250000,0,0);}
.m48_c00111{transform:matrix(0.295172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295172,0.000000,0.000000,0.250000,0,0);}
.m28_c00111{transform:matrix(0.295724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295724,0.000000,0.000000,0.250000,0,0);}
.m4a_c00111{transform:matrix(0.296157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296157,0.000000,0.000000,0.250000,0,0);}
.m3c_c00111{transform:matrix(0.296744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296744,0.000000,0.000000,0.250000,0,0);}
.m26_c00111{transform:matrix(0.296920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296920,0.000000,0.000000,0.250000,0,0);}
.m41_c00111{transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);}
.m3b_c00111{transform:matrix(0.297018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297018,0.000000,0.000000,0.250000,0,0);}
.m2a_c00111{transform:matrix(0.297275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297275,0.000000,0.000000,0.250000,0,0);}
.m3_c00111{transform:matrix(0.297645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297645,0.000000,0.000000,0.250000,0,0);}
.m98_c00111{transform:matrix(0.298281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298281,0.000000,0.000000,0.250000,0,0);}
.m54_c00111{transform:matrix(0.298650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298650,0.000000,0.000000,0.250000,0,0);}
.ma4_c00111{transform:matrix(0.298909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298909,0.000000,0.000000,0.250000,0,0);}
.m7d_c00111{transform:matrix(0.299253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299253,0.000000,0.000000,0.250000,0,0);}
.m70_c00111{transform:matrix(0.299360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299360,0.000000,0.000000,0.250000,0,0);}
.m1d_c00111{transform:matrix(0.299948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299948,0.000000,0.000000,0.250000,0,0);}
.m91_c00111{transform:matrix(0.300426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300426,0.000000,0.000000,0.250000,0,0);}
.m4c_c00111{transform:matrix(0.300883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300883,0.000000,0.000000,0.250000,0,0);}
.m8b_c00111{transform:matrix(0.302299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302299,0.000000,0.000000,0.250000,0,0);}
.m62_c00111{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m53_c00111{transform:matrix(0.302417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302417,0.000000,0.000000,0.250000,0,0);}
.m93_c00111{transform:matrix(0.302957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302957,0.000000,0.000000,0.250000,0,0);}
.m16_c00111{transform:matrix(0.303030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303030,0.000000,0.000000,0.250000,0,0);}
.m21_c00111{transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);}
.m6b_c00111{transform:matrix(0.303559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303559,0.000000,0.000000,0.250000,0,0);}
.m76_c00111{transform:matrix(0.304254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304254,0.000000,0.000000,0.250000,0,0);}
.m11_c00111{transform:matrix(0.304506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304506,0.000000,0.000000,0.250000,0,0);}
.md_c00111{transform:matrix(0.304737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304737,0.000000,0.000000,0.250000,0,0);}
.m25_c00111{transform:matrix(0.304835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304835,0.000000,0.000000,0.250000,0,0);}
.m23_c00111{transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);}
.m49_c00111{transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);}
.m89_c00111{transform:matrix(0.306703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306703,0.000000,0.000000,0.250000,0,0);}
.m45_c00111{transform:matrix(0.307295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307295,0.000000,0.000000,0.250000,0,0);}
.ma3_c00111{transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);}
.m72_c00111{transform:matrix(0.308343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308343,0.000000,0.000000,0.250000,0,0);}
.m5b_c00111{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m94_c00111{transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);}
.ma_c00111{transform:matrix(0.309955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309955,0.000000,0.000000,0.250000,0,0);}
.m74_c00111{transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);}
.m8e_c00111{transform:matrix(0.312701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312701,0.000000,0.000000,0.250000,0,0);}
.m9e_c00111{transform:matrix(0.313414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313414,0.000000,0.000000,0.250000,0,0);}
.m97_c00111{transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);}
.m64_c00111{transform:matrix(0.315859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315859,0.000000,0.000000,0.250000,0,0);}
.m7e_c00111{transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);}
.m24_c00111{transform:matrix(0.316221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316221,0.000000,0.000000,0.250000,0,0);}
.m2e_c00111{transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);}
.m69_c00111{transform:matrix(0.316688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316688,0.000000,0.000000,0.250000,0,0);}
.m1b_c00111{transform:matrix(0.316761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316761,0.000000,0.000000,0.250000,0,0);}
.m43_c00111{transform:matrix(0.316822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316822,0.000000,0.000000,0.250000,0,0);}
.m83_c00111{transform:matrix(0.318980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318980,0.000000,0.000000,0.250000,0,0);}
.m8_c00111{transform:matrix(0.319485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319485,0.000000,0.000000,0.250000,0,0);}
.m17_c00111{transform:matrix(0.319648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319648,0.000000,0.000000,0.250000,0,0);}
.m8f_c00111{transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);}
.m44_c00111{transform:matrix(0.321849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321849,0.000000,0.000000,0.250000,0,0);}
.m7_c00111{transform:matrix(0.322626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322626,0.000000,0.000000,0.250000,0,0);}
.m7b_c00111{transform:matrix(0.322661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322661,0.000000,0.000000,0.250000,0,0);}
.m77_c00111{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.m57_c00111{transform:matrix(0.323700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323700,0.000000,0.000000,0.250000,0,0);}
.m37_c00111{transform:matrix(0.324085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324085,0.000000,0.000000,0.250000,0,0);}
.m20_c00111{transform:matrix(0.325326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325326,0.000000,0.000000,0.250000,0,0);}
.m81_c00111{transform:matrix(0.325817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325817,0.000000,0.000000,0.250000,0,0);}
.m56_c00111{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.me_c00111{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.m3e_c00111{transform:matrix(0.328149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328149,0.000000,0.000000,0.250000,0,0);}
.ma6_c00111{transform:matrix(0.330354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330354,0.000000,0.000000,0.250000,0,0);}
.m4e_c00111{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m30_c00111{transform:matrix(0.335412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335412,0.000000,0.000000,0.250000,0,0);}
.m5f_c00111{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);}
.m67_c00111{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m3d_c00111{transform:matrix(0.339972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339972,0.000000,0.000000,0.250000,0,0);}
.m86_c00111{transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);}
.m36_c00111{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.m6_c00111{transform:matrix(0.345862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345862,0.000000,0.000000,0.250000,0,0);}
.m85_c00111{transform:matrix(0.346277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346277,0.000000,0.000000,0.250000,0,0);}
.m15_c00111{transform:matrix(0.347279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347279,0.000000,0.000000,0.250000,0,0);}
.m73_c00111{transform:matrix(0.347328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347328,0.000000,0.000000,0.250000,0,0);}
.m2b_c00111{transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);}
.m90_c00111{transform:matrix(0.347545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347545,0.000000,0.000000,0.250000,0,0);}
.m34_c00111{transform:matrix(0.349100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349100,0.000000,0.000000,0.250000,0,0);}
.m3a_c00111{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m22_c00111{transform:matrix(0.352013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352013,0.000000,0.000000,0.250000,0,0);}
.m6c_c00111{transform:matrix(0.358622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358622,0.000000,0.000000,0.250000,0,0);}
.mc_c00111{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m1f_c00111{transform:matrix(0.368032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368032,0.000000,0.000000,0.250000,0,0);}
.m12_c00111{transform:matrix(0.371072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371072,0.000000,0.000000,0.250000,0,0);}
.m18_c00111{transform:matrix(0.371863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371863,0.000000,0.000000,0.250000,0,0);}
.m2_c00111{transform:matrix(0.433479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433479,0.000000,0.000000,0.250000,0,0);}
.v1_c00111{vertical-align:-49.896000px;}
.v0_c00111{vertical-align:0.000000px;}
.lsa_c00111{letter-spacing:-2.744280px;}
.ls3_c00111{letter-spacing:-0.101930px;}
.ls1_c00111{letter-spacing:0.000000px;}
.ls7_c00111{letter-spacing:1.724976px;}
.lsb_c00111{letter-spacing:2.509056px;}
.ls9_c00111{letter-spacing:2.908937px;}
.ls8_c00111{letter-spacing:3.435310px;}
.ls2_c00111{letter-spacing:3.544200px;}
.ls4_c00111{letter-spacing:3.722400px;}
.ls6_c00111{letter-spacing:3.801610px;}
.ls0_c00111{letter-spacing:3.920400px;}
.ls5_c00111{letter-spacing:4.167900px;}
.lsc_c00111{letter-spacing:51.321798px;}
.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:-19.602000px;}
.ws1_c00111{word-spacing:0.000000px;}
._0_c00111{margin-left:-21.640608px;}
._2_c00111{width:4.547664px;}
._1_c00111{width:29.539070px;}
.fc0_c00111{color:transparent;}
.fs12_c00111{font-size:22.176000px;}
.fs8_c00111{font-size:23.166000px;}
.fs4_c00111{font-size:27.720000px;}
.fs11_c00111{font-size:31.878000px;}
.fs10_c00111{font-size:33.264000px;}
.fsa_c00111{font-size:33.660000px;}
.fsf_c00111{font-size:38.808000px;}
.fs1_c00111{font-size:39.204000px;}
.fs9_c00111{font-size:40.788000px;}
.fse_c00111{font-size:51.321798px;}
.fs14_c00111{font-size:59.400000px;}
.fsb_c00111{font-size:60.192000px;}
.fs3_c00111{font-size:64.548000px;}
.fsc_c00111{font-size:68.706198px;}
.fsd_c00111{font-size:70.092198px;}
.fs2_c00111{font-size:70.884000px;}
.fs5_c00111{font-size:74.448000px;}
.fs7_c00111{font-size:76.032198px;}
.fs0_c00111{font-size:78.408000px;}
.fs6_c00111{font-size:83.358000px;}
.fs13_c00111{font-size:96.822198px;}
.y0_c00111{bottom:0.000000px;}
.y26_c00111{bottom:9.886185px;}
.y25_c00111{bottom:46.951785px;}
.y24_c00111{bottom:71.191935px;}
.y1_c00111{bottom:76.500000px;}
.y23_c00111{bottom:79.032735px;}
.y22_c00111{bottom:109.683135px;}
.y21_c00111{bottom:112.890735px;}
.y20_c00111{bottom:141.046335px;}
.y1f_c00111{bottom:157.440735px;}
.y1e_c00111{bottom:170.983935px;}
.y1d_c00111{bottom:203.059935px;}
.y1c_c00111{bottom:235.843785px;}
.y1b_c00111{bottom:268.637535px;}
.y1a_c00111{bottom:300.708585px;}
.y19_c00111{bottom:333.145935px;}
.y18_c00111{bottom:365.221935px;}
.y17_c00111{bottom:390.164985px;}
.y16_c00111{bottom:398.010735px;}
.y15_c00111{bottom:429.730335px;}
.y14_c00111{bottom:493.164585px;}
.y13_c00111{bottom:525.240585px;}
.y12_c00111{bottom:540.209385px;}
.y11_c00111{bottom:558.390735px;}
.y10_c00111{bottom:590.818185px;}
.yf_c00111{bottom:622.181385px;}
.ye_c00111{bottom:643.213935px;}
.yd_c00111{bottom:648.911385px;}
.yc_c00111{bottom:685.976985px;}
.yb_c00111{bottom:718.409385px;}
.ya_c00111{bottom:749.772585px;}
.y9_c00111{bottom:793.258335px;}
.y8_c00111{bottom:824.977935px;}
.y7_c00111{bottom:863.112735px;}
.y6_c00111{bottom:869.171535px;}
.y5_c00111{bottom:901.242585px;}
.y4_c00111{bottom:934.031385px;}
.y3_c00111{bottom:1007.098335px;}
.y2_c00111{bottom:1083.367935px;}
.ha_c00111{height:22.736162px;}
.h13_c00111{height:23.128875px;}
.h6_c00111{height:28.911094px;}
.h12_c00111{height:31.286514px;}
.he_c00111{height:34.180317px;}
.h11_c00111{height:34.693313px;}
.h3_c00111{height:38.476582px;}
.hb_c00111{height:40.031191px;}
.h10_c00111{height:40.475531px;}
.h15_c00111{height:58.268848px;}
.hc_c00111{height:62.778375px;}
.h5_c00111{height:67.321547px;}
.hd_c00111{height:67.431376px;}
.hf_c00111{height:69.568770px;}
.h4_c00111{height:71.437781px;}
.h9_c00111{height:74.621444px;}
.h7_c00111{height:75.029625px;}
.h2_c00111{height:76.953164px;}
.h8_c00111{height:84.009234px;}
.h14_c00111{height:95.025692px;}
.h1_c00111{height:1110.000000px;}
.h0_c00111{height:1263.000000px;}
.w1_c00111{width:733.500000px;}
.w0_c00111{width:892.500000px;}
.x0_c00111{left:0.000000px;}
.x2d_c00111{left:65.161335px;}
.x3c_c00111{left:66.403785px;}
.x5a_c00111{left:68.161035px;}
.x1_c00111{left:79.500000px;}
.x53_c00111{left:87.965985px;}
.x33_c00111{left:98.494635px;}
.x4f_c00111{left:99.588585px;}
.x5b_c00111{left:100.979535px;}
.x37_c00111{left:109.038135px;}
.x56_c00111{left:110.933985px;}
.x28_c00111{left:120.433035px;}
.x34_c00111{left:131.323035px;}
.x44_c00111{left:133.055535px;}
.x2e_c00111{left:143.321835px;}
.x29_c00111{left:154.132635px;}
.x3d_c00111{left:164.695935px;}
.x22_c00111{left:175.838385px;}
.x4_c00111{left:176.952135px;}
.x2a_c00111{left:187.193685px;}
.x5_c00111{left:199.113285px;}
.x15_c00111{left:209.112285px;}
.x6_c00111{left:221.086335px;}
.x38_c00111{left:229.887435px;}
.x1c_c00111{left:231.644685px;}
.x5c_c00111{left:242.618835px;}
.xd_c00111{left:243.796935px;}
.x1d_c00111{left:254.488935px;}
.x14_c00111{left:257.018385px;}
.x17_c00111{left:265.289835px;}
.x54_c00111{left:266.725335px;}
.x35_c00111{left:275.971935px;}
.x3e_c00111{left:286.446135px;}
.x2f_c00111{left:288.099435px;}
.x55_c00111{left:297.603435px;}
.x18_c00111{left:298.826085px;}
.x7_c00111{left:300.231885px;}
.x48_c00111{left:308.295435px;}
.x23_c00111{left:309.518085px;}
.x40_c00111{left:319.952685px;}
.x8_c00111{left:332.203935px;}
.x2b_c00111{left:342.064335px;}
.x24_c00111{left:343.381035px;}
.x49_c00111{left:354.751185px;}
.x41_c00111{left:365.116485px;}
.x19_c00111{left:366.507435px;}
.x9_c00111{left:376.877685px;}
.x58_c00111{left:377.922135px;}
.x43_c00111{left:386.193585px;}
.x1e_c00111{left:387.445935px;}
.x1a_c00111{left:400.033785px;}
.x36_c00111{left:409.305135px;}
.xe_c00111{left:410.691135px;}
.xa_c00111{left:421.952385px;}
.x39_c00111{left:431.763285px;}
.xf_c00111{left:442.603785px;}
.x50_c00111{left:443.796735px;}
.x45_c00111{left:454.176885px;}
.x4a_c00111{left:464.908485px;}
.x25_c00111{left:465.952935px;}
.x3a_c00111{left:475.239135px;}
.x3f_c00111{left:476.298435px;}
.x10_c00111{left:499.122885px;}
.x30_c00111{left:509.616885px;}
.xb_c00111{left:520.655385px;}
.x46_c00111{left:531.372135px;}
.x11_c00111{left:532.604685px;}
.x51_c00111{left:542.984835px;}
.x1f_c00111{left:554.359935px;}
.x5d_c00111{left:563.834235px;}
.x4c_c00111{left:565.042035px;}
.x12_c00111{left:576.337935px;}
.x26_c00111{left:578.892135px;}
.x31_c00111{left:587.435835px;}
.x20_c00111{left:597.281385px;}
.x47_c00111{left:598.504035px;}
.x59_c00111{left:603.701535px;}
.x2c_c00111{left:608.290185px;}
.xc_c00111{left:609.923685px;}
.x4d_c00111{left:611.873985px;}
.x4e_c00111{left:617.066535px;}
.x16_c00111{left:620.180085px;}
.x1b_c00111{left:631.654185px;}
.x3b_c00111{left:642.356085px;}
.x2_c00111{left:644.479635px;}
.x4b_c00111{left:653.795535px;}
.x57_c00111{left:665.195385px;}
.x42_c00111{left:675.060735px;}
.x21_c00111{left:676.075485px;}
.x13_c00111{left:677.654535px;}
.x32_c00111{left:687.376335px;}
.x3_c00111{left:689.489985px;}
.x27_c00111{left:691.366035px;}
.x52_c00111{left:692.950035px;}
.x5e_c00111{left:694.553835px;}
@media print{
.v1_c00111{vertical-align:-44.352000pt;}
.v0_c00111{vertical-align:0.000000pt;}
.lsa_c00111{letter-spacing:-2.439360pt;}
.ls3_c00111{letter-spacing:-0.090605pt;}
.ls1_c00111{letter-spacing:0.000000pt;}
.ls7_c00111{letter-spacing:1.533312pt;}
.lsb_c00111{letter-spacing:2.230272pt;}
.ls9_c00111{letter-spacing:2.585722pt;}
.ls8_c00111{letter-spacing:3.053609pt;}
.ls2_c00111{letter-spacing:3.150400pt;}
.ls4_c00111{letter-spacing:3.308800pt;}
.ls6_c00111{letter-spacing:3.379209pt;}
.ls0_c00111{letter-spacing:3.484800pt;}
.ls5_c00111{letter-spacing:3.704800pt;}
.lsc_c00111{letter-spacing:45.619376pt;}
.ws0_c00111{word-spacing:-17.424000pt;}
.ws1_c00111{word-spacing:0.000000pt;}
._0_c00111{margin-left:-19.236096pt;}
._2_c00111{width:4.042368pt;}
._1_c00111{width:26.256951pt;}
.fs12_c00111{font-size:19.712000pt;}
.fs8_c00111{font-size:20.592000pt;}
.fs4_c00111{font-size:24.640000pt;}
.fs11_c00111{font-size:28.336000pt;}
.fs10_c00111{font-size:29.568000pt;}
.fsa_c00111{font-size:29.920000pt;}
.fsf_c00111{font-size:34.496000pt;}
.fs1_c00111{font-size:34.848000pt;}
.fs9_c00111{font-size:36.256000pt;}
.fse_c00111{font-size:45.619376pt;}
.fs14_c00111{font-size:52.800000pt;}
.fsb_c00111{font-size:53.504000pt;}
.fs3_c00111{font-size:57.376000pt;}
.fsc_c00111{font-size:61.072176pt;}
.fsd_c00111{font-size:62.304176pt;}
.fs2_c00111{font-size:63.008000pt;}
.fs5_c00111{font-size:66.176000pt;}
.fs7_c00111{font-size:67.584176pt;}
.fs0_c00111{font-size:69.696000pt;}
.fs6_c00111{font-size:74.096000pt;}
.fs13_c00111{font-size:86.064176pt;}
.y0_c00111{bottom:0.000000pt;}
.y26_c00111{bottom:8.787720pt;}
.y25_c00111{bottom:41.734920pt;}
.y24_c00111{bottom:63.281720pt;}
.y1_c00111{bottom:68.000000pt;}
.y23_c00111{bottom:70.251320pt;}
.y22_c00111{bottom:97.496120pt;}
.y21_c00111{bottom:100.347320pt;}
.y20_c00111{bottom:125.374520pt;}
.y1f_c00111{bottom:139.947320pt;}
.y1e_c00111{bottom:151.985720pt;}
.y1d_c00111{bottom:180.497720pt;}
.y1c_c00111{bottom:209.638920pt;}
.y1b_c00111{bottom:238.788920pt;}
.y1a_c00111{bottom:267.296520pt;}
.y19_c00111{bottom:296.129720pt;}
.y18_c00111{bottom:324.641720pt;}
.y17_c00111{bottom:346.813320pt;}
.y16_c00111{bottom:353.787320pt;}
.y15_c00111{bottom:381.982520pt;}
.y14_c00111{bottom:438.368520pt;}
.y13_c00111{bottom:466.880520pt;}
.y12_c00111{bottom:480.186120pt;}
.y11_c00111{bottom:496.347320pt;}
.y10_c00111{bottom:525.171720pt;}
.yf_c00111{bottom:553.050120pt;}
.ye_c00111{bottom:571.745720pt;}
.yd_c00111{bottom:576.810120pt;}
.yc_c00111{bottom:609.757320pt;}
.yb_c00111{bottom:638.586120pt;}
.ya_c00111{bottom:666.464520pt;}
.y9_c00111{bottom:705.118520pt;}
.y8_c00111{bottom:733.313720pt;}
.y7_c00111{bottom:767.211320pt;}
.y6_c00111{bottom:772.596920pt;}
.y5_c00111{bottom:801.104520pt;}
.y4_c00111{bottom:830.250120pt;}
.y3_c00111{bottom:895.198520pt;}
.y2_c00111{bottom:962.993720pt;}
.ha_c00111{height:20.209922pt;}
.h13_c00111{height:20.559000pt;}
.h6_c00111{height:25.698750pt;}
.h12_c00111{height:27.810234pt;}
.he_c00111{height:30.382504pt;}
.h11_c00111{height:30.838500pt;}
.h3_c00111{height:34.201406pt;}
.hb_c00111{height:35.583281pt;}
.h10_c00111{height:35.978250pt;}
.h15_c00111{height:51.794531pt;}
.hc_c00111{height:55.803000pt;}
.h5_c00111{height:59.841375pt;}
.hd_c00111{height:59.939001pt;}
.hf_c00111{height:61.838906pt;}
.h4_c00111{height:63.500250pt;}
.h9_c00111{height:66.330173pt;}
.h7_c00111{height:66.693000pt;}
.h2_c00111{height:68.402813pt;}
.h8_c00111{height:74.674875pt;}
.h14_c00111{height:84.467282pt;}
.h1_c00111{height:986.666667pt;}
.h0_c00111{height:1122.666667pt;}
.w1_c00111{width:652.000000pt;}
.w0_c00111{width:793.333333pt;}
.x0_c00111{left:0.000000pt;}
.x2d_c00111{left:57.921187pt;}
.x3c_c00111{left:59.025587pt;}
.x5a_c00111{left:60.587587pt;}
.x1_c00111{left:70.666667pt;}
.x53_c00111{left:78.191987pt;}
.x33_c00111{left:87.550787pt;}
.x4f_c00111{left:88.523187pt;}
.x5b_c00111{left:89.759587pt;}
.x37_c00111{left:96.922787pt;}
.x56_c00111{left:98.607987pt;}
.x28_c00111{left:107.051587pt;}
.x34_c00111{left:116.731587pt;}
.x44_c00111{left:118.271587pt;}
.x2e_c00111{left:127.397187pt;}
.x29_c00111{left:137.006787pt;}
.x3d_c00111{left:146.396387pt;}
.x22_c00111{left:156.300787pt;}
.x4_c00111{left:157.290787pt;}
.x2a_c00111{left:166.394387pt;}
.x5_c00111{left:176.989587pt;}
.x15_c00111{left:185.877587pt;}
.x6_c00111{left:196.521187pt;}
.x38_c00111{left:204.344387pt;}
.x1c_c00111{left:205.906387pt;}
.x5c_c00111{left:215.661187pt;}
.xd_c00111{left:216.708387pt;}
.x1d_c00111{left:226.212387pt;}
.x14_c00111{left:228.460787pt;}
.x17_c00111{left:235.813187pt;}
.x54_c00111{left:237.089187pt;}
.x35_c00111{left:245.308387pt;}
.x3e_c00111{left:254.618787pt;}
.x2f_c00111{left:256.088387pt;}
.x55_c00111{left:264.536387pt;}
.x18_c00111{left:265.623187pt;}
.x7_c00111{left:266.872787pt;}
.x48_c00111{left:274.040387pt;}
.x23_c00111{left:275.127187pt;}
.x40_c00111{left:284.402387pt;}
.x8_c00111{left:295.292387pt;}
.x2b_c00111{left:304.057187pt;}
.x24_c00111{left:305.227587pt;}
.x49_c00111{left:315.334387pt;}
.x41_c00111{left:324.547987pt;}
.x19_c00111{left:325.784387pt;}
.x9_c00111{left:335.002387pt;}
.x58_c00111{left:335.930787pt;}
.x43_c00111{left:343.283187pt;}
.x1e_c00111{left:344.396387pt;}
.x1a_c00111{left:355.585587pt;}
.x36_c00111{left:363.826787pt;}
.xe_c00111{left:365.058787pt;}
.xa_c00111{left:375.068787pt;}
.x39_c00111{left:383.789587pt;}
.xf_c00111{left:393.425587pt;}
.x50_c00111{left:394.485987pt;}
.x45_c00111{left:403.712787pt;}
.x4a_c00111{left:413.251987pt;}
.x25_c00111{left:414.180387pt;}
.x3a_c00111{left:422.434787pt;}
.x3f_c00111{left:423.376387pt;}
.x10_c00111{left:443.664787pt;}
.x30_c00111{left:452.992787pt;}
.xb_c00111{left:462.804787pt;}
.x46_c00111{left:472.330787pt;}
.x11_c00111{left:473.426387pt;}
.x51_c00111{left:482.653187pt;}
.x1f_c00111{left:492.764387pt;}
.x5d_c00111{left:501.185987pt;}
.x4c_c00111{left:502.259587pt;}
.x12_c00111{left:512.300387pt;}
.x26_c00111{left:514.570787pt;}
.x31_c00111{left:522.165187pt;}
.x20_c00111{left:530.916787pt;}
.x47_c00111{left:532.003587pt;}
.x59_c00111{left:536.623587pt;}
.x2c_c00111{left:540.702387pt;}
.xc_c00111{left:542.154387pt;}
.x4d_c00111{left:543.887987pt;}
.x4e_c00111{left:548.503587pt;}
.x16_c00111{left:551.271187pt;}
.x1b_c00111{left:561.470387pt;}
.x3b_c00111{left:570.983187pt;}
.x2_c00111{left:572.870787pt;}
.x4b_c00111{left:581.151587pt;}
.x57_c00111{left:591.284787pt;}
.x42_c00111{left:600.053987pt;}
.x21_c00111{left:600.955987pt;}
.x13_c00111{left:602.359587pt;}
.x32_c00111{left:611.001187pt;}
.x3_c00111{left:612.879987pt;}
.x27_c00111{left:614.547587pt;}
.x52_c00111{left:615.955587pt;}
.x5e_c00111{left:617.381187pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4369c4ff31ac2221aa299f14.woff2')format("woff");}.ff1_c00112{font-family:ff1_c00112;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00112;src:url('chunks/assets/font_bbb1dbffbffa459b83f2a56f.woff2')format("woff");}.ff2_c00112{font-family:ff2_c00112;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00112;src:url('chunks/assets/font_9979cf4f69664904005dbffe.woff2')format("woff");}.ff3_c00112{font-family:ff3_c00112;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00112;src:url('chunks/assets/font_fc8d56420a6a2297ca86f24c.woff2')format("woff");}.ff4_c00112{font-family:ff4_c00112;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m69_c00112{transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);}
.m66_c00112{transform:matrix(0.102084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102084,0.000000,0.000000,0.250000,0,0);}
.m67_c00112{transform:matrix(0.112500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112500,0.000000,0.000000,0.250000,0,0);}
.m1_c00112{transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);}
.m65_c00112{transform:matrix(0.158749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158749,0.000000,0.000000,0.250000,0,0);}
.m86_c00112{transform:matrix(0.176830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176830,0.000000,0.000000,0.250000,0,0);}
.m94_c00112{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m85_c00112{transform:matrix(0.184960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184960,0.000000,0.000000,0.250000,0,0);}
.m84_c00112{transform:matrix(0.187282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187282,0.000000,0.000000,0.250000,0,0);}
.m68_c00112{transform:matrix(0.187499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187499,0.000000,0.000000,0.250000,0,0);}
.m87_c00112{transform:matrix(0.189025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189025,0.000000,0.000000,0.250000,0,0);}
.ma1_c00112{transform:matrix(0.206564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206564,0.000000,0.000000,0.250000,0,0);}
.m88_c00112{transform:matrix(0.210705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210705,0.000000,0.000000,0.250000,0,0);}
.m8c_c00112{transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);}
.ma3_c00112{transform:matrix(0.223802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223802,0.000000,0.000000,0.250000,0,0);}
.m93_c00112{transform:matrix(0.245681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245681,0.000000,0.000000,0.250000,0,0);}
.m51_c00112{transform:matrix(0.247668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247668,0.000000,0.000000,0.250000,0,0);}
.m0_c00112{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m89_c00112{transform:matrix(0.250508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250508,0.000000,0.000000,0.250000,0,0);}
.m76_c00112{transform:matrix(0.251774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251774,0.000000,0.000000,0.250000,0,0);}
.m5c_c00112{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.m52_c00112{transform:matrix(0.253660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253660,0.000000,0.000000,0.250000,0,0);}
.m53_c00112{transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);}
.maf_c00112{transform:matrix(0.256595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256595,0.000000,0.000000,0.250000,0,0);}
.m6b_c00112{transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);}
.m7_c00112{transform:matrix(0.258601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258601,0.000000,0.000000,0.250000,0,0);}
.m98_c00112{transform:matrix(0.259336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259336,0.000000,0.000000,0.250000,0,0);}
.m13_c00112{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m2b_c00112{transform:matrix(0.261624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261624,0.000000,0.000000,0.250000,0,0);}
.m77_c00112{transform:matrix(0.262842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262842,0.000000,0.000000,0.250000,0,0);}
.m48_c00112{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m80_c00112{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m4f_c00112{transform:matrix(0.264128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264128,0.000000,0.000000,0.250000,0,0);}
.ma2_c00112{transform:matrix(0.264742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264742,0.000000,0.000000,0.250000,0,0);}
.m4d_c00112{transform:matrix(0.266174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266174,0.000000,0.000000,0.250000,0,0);}
.m28_c00112{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m7b_c00112{transform:matrix(0.266398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266398,0.000000,0.000000,0.250000,0,0);}
.m4a_c00112{transform:matrix(0.266686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266686,0.000000,0.000000,0.250000,0,0);}
.m3_c00112{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.m34_c00112{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.ma5_c00112{transform:matrix(0.268316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268316,0.000000,0.000000,0.250000,0,0);}
.m63_c00112{transform:matrix(0.268521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268521,0.000000,0.000000,0.250000,0,0);}
.m17_c00112{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.m1a_c00112{transform:matrix(0.269095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269095,0.000000,0.000000,0.250000,0,0);}
.m64_c00112{transform:matrix(0.270074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270074,0.000000,0.000000,0.250000,0,0);}
.m3d_c00112{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m30_c00112{transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);}
.m9f_c00112{transform:matrix(0.272194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272194,0.000000,0.000000,0.250000,0,0);}
.m4_c00112{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m82_c00112{transform:matrix(0.272609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272609,0.000000,0.000000,0.250000,0,0);}
.m45_c00112{transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);}
.m24_c00112{transform:matrix(0.273802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273802,0.000000,0.000000,0.250000,0,0);}
.m55_c00112{transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);}
.m3f_c00112{transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);}
.ma9_c00112{transform:matrix(0.274308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274308,0.000000,0.000000,0.250000,0,0);}
.m2e_c00112{transform:matrix(0.274926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274926,0.000000,0.000000,0.250000,0,0);}
.m47_c00112{transform:matrix(0.275323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275323,0.000000,0.000000,0.250000,0,0);}
.m2f_c00112{transform:matrix(0.277265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277265,0.000000,0.000000,0.250000,0,0);}
.m5_c00112{transform:matrix(0.278765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278765,0.000000,0.000000,0.250000,0,0);}
.ma8_c00112{transform:matrix(0.278816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278816,0.000000,0.000000,0.250000,0,0);}
.m7c_c00112{transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);}
.m19_c00112{transform:matrix(0.280812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280812,0.000000,0.000000,0.250000,0,0);}
.m57_c00112{transform:matrix(0.281178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281178,0.000000,0.000000,0.250000,0,0);}
.m92_c00112{transform:matrix(0.281475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281475,0.000000,0.000000,0.250000,0,0);}
.m4e_c00112{transform:matrix(0.282018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282018,0.000000,0.000000,0.250000,0,0);}
.m70_c00112{transform:matrix(0.282073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282073,0.000000,0.000000,0.250000,0,0);}
.m12_c00112{transform:matrix(0.282430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282430,0.000000,0.000000,0.250000,0,0);}
.m5d_c00112{transform:matrix(0.283705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283705,0.000000,0.000000,0.250000,0,0);}
.m43_c00112{transform:matrix(0.284031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284031,0.000000,0.000000,0.250000,0,0);}
.m33_c00112{transform:matrix(0.284658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284658,0.000000,0.000000,0.250000,0,0);}
.m5e_c00112{transform:matrix(0.285189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285189,0.000000,0.000000,0.250000,0,0);}
.m36_c00112{transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);}
.m72_c00112{transform:matrix(0.288109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288109,0.000000,0.000000,0.250000,0,0);}
.m3e_c00112{transform:matrix(0.288557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288557,0.000000,0.000000,0.250000,0,0);}
.m44_c00112{transform:matrix(0.288908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288908,0.000000,0.000000,0.250000,0,0);}
.m8f_c00112{transform:matrix(0.289026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289026,0.000000,0.000000,0.250000,0,0);}
.m59_c00112{transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);}
.m95_c00112{transform:matrix(0.291041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291041,0.000000,0.000000,0.250000,0,0);}
.m8a_c00112{transform:matrix(0.291723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291723,0.000000,0.000000,0.250000,0,0);}
.m23_c00112{transform:matrix(0.291868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291868,0.000000,0.000000,0.250000,0,0);}
.m2d_c00112{transform:matrix(0.292384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292384,0.000000,0.000000,0.250000,0,0);}
.m37_c00112{transform:matrix(0.292470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292470,0.000000,0.000000,0.250000,0,0);}
.m20_c00112{transform:matrix(0.292732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292732,0.000000,0.000000,0.250000,0,0);}
.m39_c00112{transform:matrix(0.293109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293109,0.000000,0.000000,0.250000,0,0);}
.mab_c00112{transform:matrix(0.293335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293335,0.000000,0.000000,0.250000,0,0);}
.m7f_c00112{transform:matrix(0.293614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293614,0.000000,0.000000,0.250000,0,0);}
.m75_c00112{transform:matrix(0.293886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293886,0.000000,0.000000,0.250000,0,0);}
.mf_c00112{transform:matrix(0.293907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293907,0.000000,0.000000,0.250000,0,0);}
.m7a_c00112{transform:matrix(0.294271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294271,0.000000,0.000000,0.250000,0,0);}
.ma7_c00112{transform:matrix(0.294374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294374,0.000000,0.000000,0.250000,0,0);}
.m1e_c00112{transform:matrix(0.294572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294572,0.000000,0.000000,0.250000,0,0);}
.mb1_c00112{transform:matrix(0.294705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294705,0.000000,0.000000,0.250000,0,0);}
.m79_c00112{transform:matrix(0.294932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294932,0.000000,0.000000,0.250000,0,0);}
.ma4_c00112{transform:matrix(0.295626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295626,0.000000,0.000000,0.250000,0,0);}
.m97_c00112{transform:matrix(0.296586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296586,0.000000,0.000000,0.250000,0,0);}
.m8b_c00112{transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);}
.m6c_c00112{transform:matrix(0.296922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296922,0.000000,0.000000,0.250000,0,0);}
.m32_c00112{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m11_c00112{transform:matrix(0.298361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298361,0.000000,0.000000,0.250000,0,0);}
.m40_c00112{transform:matrix(0.298685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298685,0.000000,0.000000,0.250000,0,0);}
.mb_c00112{transform:matrix(0.298761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298761,0.000000,0.000000,0.250000,0,0);}
.m7e_c00112{transform:matrix(0.302220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302220,0.000000,0.000000,0.250000,0,0);}
.m78_c00112{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m14_c00112{transform:matrix(0.302504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302504,0.000000,0.000000,0.250000,0,0);}
.m29_c00112{transform:matrix(0.302903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302903,0.000000,0.000000,0.250000,0,0);}
.m74_c00112{transform:matrix(0.302943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302943,0.000000,0.000000,0.250000,0,0);}
.m61_c00112{transform:matrix(0.304739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304739,0.000000,0.000000,0.250000,0,0);}
.maa_c00112{transform:matrix(0.304836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304836,0.000000,0.000000,0.250000,0,0);}
.m10_c00112{transform:matrix(0.305475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305475,0.000000,0.000000,0.250000,0,0);}
.m50_c00112{transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);}
.m2_c00112{transform:matrix(0.306338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306338,0.000000,0.000000,0.250000,0,0);}
.m71_c00112{transform:matrix(0.307515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307515,0.000000,0.000000,0.250000,0,0);}
.ma_c00112{transform:matrix(0.307862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307862,0.000000,0.000000,0.250000,0,0);}
.m7d_c00112{transform:matrix(0.307943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307943,0.000000,0.000000,0.250000,0,0);}
.m31_c00112{transform:matrix(0.308058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308058,0.000000,0.000000,0.250000,0,0);}
.m49_c00112{transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);}
.m38_c00112{transform:matrix(0.309215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309215,0.000000,0.000000,0.250000,0,0);}
.m8d_c00112{transform:matrix(0.309682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309682,0.000000,0.000000,0.250000,0,0);}
.m62_c00112{transform:matrix(0.310202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310202,0.000000,0.000000,0.250000,0,0);}
.m1c_c00112{transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);}
.m46_c00112{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.m5f_c00112{transform:matrix(0.313265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313265,0.000000,0.000000,0.250000,0,0);}
.m8_c00112{transform:matrix(0.313497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313497,0.000000,0.000000,0.250000,0,0);}
.m22_c00112{transform:matrix(0.313696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313696,0.000000,0.000000,0.250000,0,0);}
.m54_c00112{transform:matrix(0.313857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313857,0.000000,0.000000,0.250000,0,0);}
.m16_c00112{transform:matrix(0.314182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314182,0.000000,0.000000,0.250000,0,0);}
.m42_c00112{transform:matrix(0.314199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314199,0.000000,0.000000,0.250000,0,0);}
.m9c_c00112{transform:matrix(0.314493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314493,0.000000,0.000000,0.250000,0,0);}
.m99_c00112{transform:matrix(0.314528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314528,0.000000,0.000000,0.250000,0,0);}
.m21_c00112{transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);}
.m1b_c00112{transform:matrix(0.315523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315523,0.000000,0.000000,0.250000,0,0);}
.m18_c00112{transform:matrix(0.316139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316139,0.000000,0.000000,0.250000,0,0);}
.m2a_c00112{transform:matrix(0.318980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318980,0.000000,0.000000,0.250000,0,0);}
.m83_c00112{transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);}
.me_c00112{transform:matrix(0.319959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319959,0.000000,0.000000,0.250000,0,0);}
.ma6_c00112{transform:matrix(0.319968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319968,0.000000,0.000000,0.250000,0,0);}
.m9a_c00112{transform:matrix(0.320922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320922,0.000000,0.000000,0.250000,0,0);}
.mad_c00112{transform:matrix(0.321314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321314,0.000000,0.000000,0.250000,0,0);}
.mb0_c00112{transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);}
.m27_c00112{transform:matrix(0.321773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321773,0.000000,0.000000,0.250000,0,0);}
.mc_c00112{transform:matrix(0.321925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321925,0.000000,0.000000,0.250000,0,0);}
.m73_c00112{transform:matrix(0.323406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323406,0.000000,0.000000,0.250000,0,0);}
.m9_c00112{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.m9b_c00112{transform:matrix(0.325417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325417,0.000000,0.000000,0.250000,0,0);}
.m56_c00112{transform:matrix(0.326063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326063,0.000000,0.000000,0.250000,0,0);}
.m5a_c00112{transform:matrix(0.326100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326100,0.000000,0.000000,0.250000,0,0);}
.m1f_c00112{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.m6a_c00112{transform:matrix(0.327854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327854,0.000000,0.000000,0.250000,0,0);}
.m3a_c00112{transform:matrix(0.328951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328951,0.000000,0.000000,0.250000,0,0);}
.m90_c00112{transform:matrix(0.329670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329670,0.000000,0.000000,0.250000,0,0);}
.mac_c00112{transform:matrix(0.329979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329979,0.000000,0.000000,0.250000,0,0);}
.m1d_c00112{transform:matrix(0.330043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330043,0.000000,0.000000,0.250000,0,0);}
.m81_c00112{transform:matrix(0.330631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330631,0.000000,0.000000,0.250000,0,0);}
.m35_c00112{transform:matrix(0.331699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331699,0.000000,0.000000,0.250000,0,0);}
.m15_c00112{transform:matrix(0.334191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334191,0.000000,0.000000,0.250000,0,0);}
.m3c_c00112{transform:matrix(0.335559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335559,0.000000,0.000000,0.250000,0,0);}
.m2c_c00112{transform:matrix(0.337214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337214,0.000000,0.000000,0.250000,0,0);}
.m96_c00112{transform:matrix(0.338602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338602,0.000000,0.000000,0.250000,0,0);}
.m60_c00112{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m6_c00112{transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);}
.m58_c00112{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.ma0_c00112{transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);}
.m25_c00112{transform:matrix(0.344259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344259,0.000000,0.000000,0.250000,0,0);}
.m6e_c00112{transform:matrix(0.345602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345602,0.000000,0.000000,0.250000,0,0);}
.m8e_c00112{transform:matrix(0.349153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349153,0.000000,0.000000,0.250000,0,0);}
.md_c00112{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m9d_c00112{transform:matrix(0.349477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349477,0.000000,0.000000,0.250000,0,0);}
.m9e_c00112{transform:matrix(0.352148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352148,0.000000,0.000000,0.250000,0,0);}
.mae_c00112{transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);}
.m6d_c00112{transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);}
.m26_c00112{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m41_c00112{transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);}
.m6f_c00112{transform:matrix(0.369943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369943,0.000000,0.000000,0.250000,0,0);}
.m91_c00112{transform:matrix(0.370958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370958,0.000000,0.000000,0.250000,0,0);}
.m5b_c00112{transform:matrix(0.375087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375087,0.000000,0.000000,0.250000,0,0);}
.m3b_c00112{transform:matrix(0.380331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380331,0.000000,0.000000,0.250000,0,0);}
.m4b_c00112{transform:matrix(0.417547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417547,0.000000,0.000000,0.250000,0,0);}
.m4c_c00112{transform:matrix(0.424628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424628,0.000000,0.000000,0.250000,0,0);}
.v1_c00112{vertical-align:-32.769000px;}
.v2_c00112{vertical-align:-25.660800px;}
.v0_c00112{vertical-align:0.000000px;}
.ls8_c00112{letter-spacing:-3.083850px;}
.ls11_c00112{letter-spacing:-2.744280px;}
.lsa_c00112{letter-spacing:-1.897474px;}
.ls10_c00112{letter-spacing:-1.427026px;}
.ls5_c00112{letter-spacing:-0.972259px;}
.lsd_c00112{letter-spacing:-0.337154px;}
.ls2_c00112{letter-spacing:0.000000px;}
.ls7_c00112{letter-spacing:0.196020px;}
.ls6_c00112{letter-spacing:0.939948px;}
.ls14_c00112{letter-spacing:3.277454px;}
.ls12_c00112{letter-spacing:3.747902px;}
.lsc_c00112{letter-spacing:3.801610px;}
.ls4_c00112{letter-spacing:3.920400px;}
.ls1_c00112{letter-spacing:4.370256px;}
.ls9_c00112{letter-spacing:4.405500px;}
.ls0_c00112{letter-spacing:10.036224px;}
.ls3_c00112{letter-spacing:31.363200px;}
.lsf_c00112{letter-spacing:49.896198px;}
.ls13_c00112{letter-spacing:52.747398px;}
.lsb_c00112{letter-spacing:57.024198px;}
.lse_c00112{letter-spacing:58.449798px;}
.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:-19.602000px;}
.ws1_c00112{word-spacing:0.000000px;}
._1_c00112{width:4.940100px;}
._8_c00112{width:9.095328px;}
._5_c00112{width:10.506672px;}
._2_c00112{width:11.918016px;}
._a_c00112{width:17.092944px;}
._e_c00112{width:19.240397px;}
._9_c00112{width:20.856528px;}
._4_c00112{width:22.267872px;}
._0_c00112{width:24.698520px;}
._d_c00112{width:35.235970px;}
._6_c00112{width:37.243008px;}
._3_c00112{width:38.263104px;}
._7_c00112{width:40.615344px;}
._b_c00112{width:79.772506px;}
._f_c00112{width:108.604800px;}
._c_c00112{width:478.827195px;}
._11_c00112{width:757.471968px;}
._10_c00112{width:1250.293176px;}
.fc0_c00112{color:transparent;}
.fsb_c00112{font-size:13.464198px;}
.fs12_c00112{font-size:22.572000px;}
.fs2_c00112{font-size:25.146000px;}
.fs10_c00112{font-size:27.720000px;}
.fs3_c00112{font-size:31.363200px;}
.fs11_c00112{font-size:32.868000px;}
.fsf_c00112{font-size:38.808000px;}
.fs5_c00112{font-size:39.600000px;}
.fs14_c00112{font-size:46.728000px;}
.fsa_c00112{font-size:49.896198px;}
.fs13_c00112{font-size:51.084000px;}
.fsc_c00112{font-size:52.747398px;}
.fs7_c00112{font-size:57.024198px;}
.fs9_c00112{font-size:58.449798px;}
.fsd_c00112{font-size:60.192000px;}
.fs6_c00112{font-size:68.112198px;}
.fs1_c00112{font-size:72.072198px;}
.fs8_c00112{font-size:76.032198px;}
.fs4_c00112{font-size:78.408000px;}
.fse_c00112{font-size:86.328000px;}
.fs0_c00112{font-size:88.110000px;}
.y24_c00112{bottom:-0.800865px;}
.y0_c00112{bottom:0.000000px;}
.y23_c00112{bottom:38.398185px;}
.y22_c00112{bottom:65.133135px;}
.y21_c00112{bottom:66.915135px;}
.y1_c00112{bottom:76.500000px;}
.y20_c00112{bottom:141.397785px;}
.y1f_c00112{bottom:187.734735px;}
.y1e_c00112{bottom:220.879935px;}
.y1d_c00112{bottom:223.731135px;}
.y1c_c00112{bottom:256.163535px;}
.y1b_c00112{bottom:288.590985px;}
.y1a_c00112{bottom:321.379785px;}
.y19_c00112{bottom:348.471135px;}
.y18_c00112{bottom:353.099385px;}
.y17_c00112{bottom:385.536735px;}
.y16_c00112{bottom:416.899935px;}
.y15_c00112{bottom:449.332335px;}
.y14_c00112{bottom:481.046985px;}
.y13_c00112{bottom:513.484335px;}
.y12_c00112{bottom:545.555385px;}
.y11_c00112{bottom:577.636335px;}
.y10_c00112{bottom:611.494335px;}
.yf_c00112{bottom:643.921785px;}
.ye_c00112{bottom:677.071935px;}
.yd_c00112{bottom:740.867535px;}
.yc_c00112{bottom:772.938585px;}
.yb_c00112{bottom:805.019535px;}
.ya_c00112{bottom:821.765385px;}
.y9_c00112{bottom:837.451935px;}
.y8_c00112{bottom:870.240735px;}
.y7_c00112{bottom:902.673135px;}
.y6_c00112{bottom:935.461935px;}
.y5_c00112{bottom:1045.584585px;}
.y4_c00112{bottom:1056.276585px;}
.y3_c00112{bottom:1068.394185px;}
.y2_c00112{bottom:1087.283385px;}
.hd_c00112{height:14.042738px;}
.h5_c00112{height:20.887891px;}
.h13_c00112{height:24.475352px;}
.h4_c00112{height:26.226492px;}
.hc_c00112{height:33.230868px;}
.h12_c00112{height:34.280297px;}
.he_c00112{height:35.129767px;}
.h9_c00112{height:37.978116px;}
.hb_c00112{height:38.927565px;}
.h11_c00112{height:40.475531px;}
.h7_c00112{height:41.301563px;}
.h14_c00112{height:48.735844px;}
.hf_c00112{height:62.778375px;}
.h8_c00112{height:66.848397px;}
.ha_c00112{height:74.621444px;}
.h3_c00112{height:75.169050px;}
.h6_c00112{height:76.953164px;}
.h10_c00112{height:84.726211px;}
.h2_c00112{height:86.475146px;}
.h1_c00112{height:1110.000000px;}
.h0_c00112{height:1263.000000px;}
.w1_c00112{width:733.500000px;}
.w0_c00112{width:892.500000px;}
.x0_c00112{left:0.000000px;}
.x27_c00112{left:76.031535px;}
.x5_c00112{left:77.115585px;}
.x1_c00112{left:79.500000px;}
.x3a_c00112{left:98.534235px;}
.x13_c00112{left:110.132085px;}
.x5b_c00112{left:111.339885px;}
.x48_c00112{left:121.908135px;}
.x31_c00112{left:131.743785px;}
.x6_c00112{left:142.366485px;}
.x53_c00112{left:143.777235px;}
.x1b_c00112{left:154.073235px;}
.x5d_c00112{left:165.492885px;}
.x3b_c00112{left:174.957285px;}
.x14_c00112{left:176.580885px;}
.x7_c00112{left:186.911535px;}
.x49_c00112{left:190.688385px;}
.x4c_c00112{left:197.484735px;}
.x15_c00112{left:198.811335px;}
.x28_c00112{left:208.889535px;}
.x4a_c00112{left:212.433735px;}
.x5a_c00112{left:213.542535px;}
.x8_c00112{left:220.294335px;}
.x44_c00112{left:232.515885px;}
.x23_c00112{left:242.495085px;}
.x4b_c00112{left:243.499935px;}
.x4d_c00112{left:254.409735px;}
.x57_c00112{left:257.023335px;}
.x16_c00112{left:264.844335px;}
.x56_c00112{left:266.324385px;}
.x9_c00112{left:276.655035px;}
.x37_c00112{left:287.421285px;}
.x5c_c00112{left:289.539885px;}
.x3c_c00112{left:299.093385px;}
.xa_c00112{left:308.201385px;}
.x1c_c00112{left:309.676485px;}
.x5e_c00112{left:310.874385px;}
.x54_c00112{left:319.710135px;}
.x17_c00112{left:320.898135px;}
.x26_c00112{left:329.773485px;}
.x32_c00112{left:331.738635px;}
.xb_c00112{left:342.678135px;}
.xc_c00112{left:352.845435px;}
.x29_c00112{left:353.865135px;}
.x24_c00112{left:364.725435px;}
.x5f_c00112{left:365.804535px;}
.x60_c00112{left:373.724535px;}
.x3d_c00112{left:376.521285px;}
.x1d_c00112{left:387.213285px;}
.x2a_c00112{left:388.282485px;}
.x33_c00112{left:399.157635px;}
.xd_c00112{left:409.661535px;}
.x1e_c00112{left:421.412835px;}
.x2c_c00112{left:432.347385px;}
.xe_c00112{left:443.153235px;}
.x38_c00112{left:454.216485px;}
.x1f_c00112{left:464.908485px;}
.x2d_c00112{left:465.938085px;}
.x55_c00112{left:468.413085px;}
.x25_c00112{left:476.293485px;}
.x45_c00112{left:477.298335px;}
.xf_c00112{left:486.406335px;}
.x4e_c00112{left:490.504935px;}
.x10_c00112{left:497.187435px;}
.x3e_c00112{left:499.093185px;}
.x61_c00112{left:500.974185px;}
.x46_c00112{left:510.493035px;}
.x34_c00112{left:519.640635px;}
.x20_c00112{left:521.511735px;}
.x3f_c00112{left:530.946435px;}
.x43_c00112{left:543.955035px;}
.x18_c00112{left:553.657035px;}
.x35_c00112{left:555.047985px;}
.x11_c00112{left:564.764835px;}
.x4f_c00112{left:576.110235px;}
.x2e_c00112{left:587.133885px;}
.x40_c00112{left:590.296935px;}
.x19_c00112{left:596.939835px;}
.x2b_c00112{left:598.127835px;}
.x50_c00112{left:609.265335px;}
.x58_c00112{left:618.719835px;}
.x12_c00112{left:619.858335px;}
.x21_c00112{left:631.312635px;}
.x39_c00112{left:642.138285px;}
.x51_c00112{left:643.326285px;}
.x59_c00112{left:652.533285px;}
.x2_c00112{left:654.097485px;}
.x47_c00112{left:656.958585px;}
.x2f_c00112{left:663.269835px;}
.x41_c00112{left:664.309335px;}
.x1a_c00112{left:665.838885px;}
.x22_c00112{left:675.422085px;}
.x52_c00112{left:677.273385px;}
.x36_c00112{left:687.613935px;}
.x42_c00112{left:693.776685px;}
.x30_c00112{left:695.078535px;}
.x3_c00112{left:697.914885px;}
.x4_c00112{left:699.454335px;}
@media print{
.v1_c00112{vertical-align:-29.128000pt;}
.v2_c00112{vertical-align:-22.809600pt;}
.v0_c00112{vertical-align:0.000000pt;}
.ls8_c00112{letter-spacing:-2.741200pt;}
.ls11_c00112{letter-spacing:-2.439360pt;}
.lsa_c00112{letter-spacing:-1.686643pt;}
.ls10_c00112{letter-spacing:-1.268467pt;}
.ls5_c00112{letter-spacing:-0.864230pt;}
.lsd_c00112{letter-spacing:-0.299693pt;}
.ls2_c00112{letter-spacing:0.000000pt;}
.ls7_c00112{letter-spacing:0.174240pt;}
.ls6_c00112{letter-spacing:0.835510pt;}
.ls14_c00112{letter-spacing:2.913293pt;}
.ls12_c00112{letter-spacing:3.331469pt;}
.lsc_c00112{letter-spacing:3.379209pt;}
.ls4_c00112{letter-spacing:3.484800pt;}
.ls1_c00112{letter-spacing:3.884672pt;}
.ls9_c00112{letter-spacing:3.916000pt;}
.ls0_c00112{letter-spacing:8.921088pt;}
.ls3_c00112{letter-spacing:27.878400pt;}
.lsf_c00112{letter-spacing:44.352176pt;}
.ls13_c00112{letter-spacing:46.886576pt;}
.lsb_c00112{letter-spacing:50.688176pt;}
.lse_c00112{letter-spacing:51.955376pt;}
.ws0_c00112{word-spacing:-17.424000pt;}
.ws1_c00112{word-spacing:0.000000pt;}
._1_c00112{width:4.391200pt;}
._8_c00112{width:8.084736pt;}
._5_c00112{width:9.339264pt;}
._2_c00112{width:10.593792pt;}
._a_c00112{width:15.193728pt;}
._e_c00112{width:17.102575pt;}
._9_c00112{width:18.539136pt;}
._4_c00112{width:19.793664pt;}
._0_c00112{width:21.954240pt;}
._d_c00112{width:31.320862pt;}
._6_c00112{width:33.104896pt;}
._3_c00112{width:34.011648pt;}
._7_c00112{width:36.102528pt;}
._b_c00112{width:70.908894pt;}
._f_c00112{width:96.537600pt;}
._c_c00112{width:425.624173pt;}
._11_c00112{width:673.308416pt;}
._10_c00112{width:1111.371712pt;}
.fsb_c00112{font-size:11.968176pt;}
.fs12_c00112{font-size:20.064000pt;}
.fs2_c00112{font-size:22.352000pt;}
.fs10_c00112{font-size:24.640000pt;}
.fs3_c00112{font-size:27.878400pt;}
.fs11_c00112{font-size:29.216000pt;}
.fsf_c00112{font-size:34.496000pt;}
.fs5_c00112{font-size:35.200000pt;}
.fs14_c00112{font-size:41.536000pt;}
.fsa_c00112{font-size:44.352176pt;}
.fs13_c00112{font-size:45.408000pt;}
.fsc_c00112{font-size:46.886576pt;}
.fs7_c00112{font-size:50.688176pt;}
.fs9_c00112{font-size:51.955376pt;}
.fsd_c00112{font-size:53.504000pt;}
.fs6_c00112{font-size:60.544176pt;}
.fs1_c00112{font-size:64.064176pt;}
.fs8_c00112{font-size:67.584176pt;}
.fs4_c00112{font-size:69.696000pt;}
.fse_c00112{font-size:76.736000pt;}
.fs0_c00112{font-size:78.320000pt;}
.y24_c00112{bottom:-0.711880pt;}
.y0_c00112{bottom:0.000000pt;}
.y23_c00112{bottom:34.131720pt;}
.y22_c00112{bottom:57.896120pt;}
.y21_c00112{bottom:59.480120pt;}
.y1_c00112{bottom:68.000000pt;}
.y20_c00112{bottom:125.686920pt;}
.y1f_c00112{bottom:166.875320pt;}
.y1e_c00112{bottom:196.337720pt;}
.y1d_c00112{bottom:198.872120pt;}
.y1c_c00112{bottom:227.700920pt;}
.y1b_c00112{bottom:256.525320pt;}
.y1a_c00112{bottom:285.670920pt;}
.y19_c00112{bottom:309.752120pt;}
.y18_c00112{bottom:313.866120pt;}
.y17_c00112{bottom:342.699320pt;}
.y16_c00112{bottom:370.577720pt;}
.y15_c00112{bottom:399.406520pt;}
.y14_c00112{bottom:427.597320pt;}
.y13_c00112{bottom:456.430520pt;}
.y12_c00112{bottom:484.938120pt;}
.y11_c00112{bottom:513.454520pt;}
.y10_c00112{bottom:543.550520pt;}
.yf_c00112{bottom:572.374920pt;}
.ye_c00112{bottom:601.841720pt;}
.yd_c00112{bottom:658.548920pt;}
.yc_c00112{bottom:687.056520pt;}
.yb_c00112{bottom:715.572920pt;}
.ya_c00112{bottom:730.458120pt;}
.y9_c00112{bottom:744.401720pt;}
.y8_c00112{bottom:773.547320pt;}
.y7_c00112{bottom:802.376120pt;}
.y6_c00112{bottom:831.521720pt;}
.y5_c00112{bottom:929.408520pt;}
.y4_c00112{bottom:938.912520pt;}
.y3_c00112{bottom:949.683720pt;}
.y2_c00112{bottom:966.474120pt;}
.hd_c00112{height:12.482434pt;}
.h5_c00112{height:18.567014pt;}
.h13_c00112{height:21.755869pt;}
.h4_c00112{height:23.312438pt;}
.hc_c00112{height:29.538549pt;}
.h12_c00112{height:30.471375pt;}
.he_c00112{height:31.226460pt;}
.h9_c00112{height:33.758325pt;}
.hb_c00112{height:34.602280pt;}
.h11_c00112{height:35.978250pt;}
.h7_c00112{height:36.712500pt;}
.h14_c00112{height:43.320750pt;}
.hf_c00112{height:55.803000pt;}
.h8_c00112{height:59.420798pt;}
.ha_c00112{height:66.330173pt;}
.h3_c00112{height:66.816934pt;}
.h6_c00112{height:68.402813pt;}
.h10_c00112{height:75.312188pt;}
.h2_c00112{height:76.866797pt;}
.h1_c00112{height:986.666667pt;}
.h0_c00112{height:1122.666667pt;}
.w1_c00112{width:652.000000pt;}
.w0_c00112{width:793.333333pt;}
.x0_c00112{left:0.000000pt;}
.x27_c00112{left:67.583587pt;}
.x5_c00112{left:68.547187pt;}
.x1_c00112{left:70.666667pt;}
.x3a_c00112{left:87.585987pt;}
.x13_c00112{left:97.895187pt;}
.x5b_c00112{left:98.968787pt;}
.x48_c00112{left:108.362787pt;}
.x31_c00112{left:117.105587pt;}
.x6_c00112{left:126.547987pt;}
.x53_c00112{left:127.801987pt;}
.x1b_c00112{left:136.953987pt;}
.x5d_c00112{left:147.104787pt;}
.x3b_c00112{left:155.517587pt;}
.x14_c00112{left:156.960787pt;}
.x7_c00112{left:166.143587pt;}
.x49_c00112{left:169.500787pt;}
.x4c_c00112{left:175.541987pt;}
.x15_c00112{left:176.721187pt;}
.x28_c00112{left:185.679587pt;}
.x4a_c00112{left:188.829987pt;}
.x5a_c00112{left:189.815587pt;}
.x8_c00112{left:195.817187pt;}
.x44_c00112{left:206.680787pt;}
.x23_c00112{left:215.551187pt;}
.x4b_c00112{left:216.444387pt;}
.x4d_c00112{left:226.141987pt;}
.x57_c00112{left:228.465187pt;}
.x16_c00112{left:235.417187pt;}
.x56_c00112{left:236.732787pt;}
.x9_c00112{left:245.915587pt;}
.x37_c00112{left:255.485587pt;}
.x5c_c00112{left:257.368787pt;}
.x3c_c00112{left:265.860787pt;}
.xa_c00112{left:273.956787pt;}
.x1c_c00112{left:275.267987pt;}
.x5e_c00112{left:276.332787pt;}
.x54_c00112{left:284.186787pt;}
.x17_c00112{left:285.242787pt;}
.x26_c00112{left:293.131987pt;}
.x32_c00112{left:294.878787pt;}
.xb_c00112{left:304.602787pt;}
.xc_c00112{left:313.640387pt;}
.x29_c00112{left:314.546787pt;}
.x24_c00112{left:324.200387pt;}
.x5f_c00112{left:325.159587pt;}
.x60_c00112{left:332.199587pt;}
.x3d_c00112{left:334.685587pt;}
.x1d_c00112{left:344.189587pt;}
.x2a_c00112{left:345.139987pt;}
.x33_c00112{left:354.806787pt;}
.xd_c00112{left:364.143587pt;}
.x1e_c00112{left:374.589187pt;}
.x2c_c00112{left:384.308787pt;}
.xe_c00112{left:393.913987pt;}
.x38_c00112{left:403.747987pt;}
.x1f_c00112{left:413.251987pt;}
.x2d_c00112{left:414.167187pt;}
.x55_c00112{left:416.367187pt;}
.x25_c00112{left:423.371987pt;}
.x45_c00112{left:424.265187pt;}
.xf_c00112{left:432.361187pt;}
.x4e_c00112{left:436.004387pt;}
.x10_c00112{left:441.944387pt;}
.x3e_c00112{left:443.638387pt;}
.x61_c00112{left:445.310387pt;}
.x46_c00112{left:453.771587pt;}
.x34_c00112{left:461.902787pt;}
.x20_c00112{left:463.565987pt;}
.x3f_c00112{left:471.952387pt;}
.x43_c00112{left:483.515587pt;}
.x18_c00112{left:492.139587pt;}
.x35_c00112{left:493.375987pt;}
.x11_c00112{left:502.013187pt;}
.x4f_c00112{left:512.097987pt;}
.x2e_c00112{left:521.896787pt;}
.x40_c00112{left:524.708387pt;}
.x19_c00112{left:530.613187pt;}
.x2b_c00112{left:531.669187pt;}
.x50_c00112{left:541.569187pt;}
.x58_c00112{left:549.973187pt;}
.x12_c00112{left:550.985187pt;}
.x21_c00112{left:561.166787pt;}
.x39_c00112{left:570.789587pt;}
.x51_c00112{left:571.845587pt;}
.x59_c00112{left:580.029587pt;}
.x2_c00112{left:581.419987pt;}
.x47_c00112{left:583.963187pt;}
.x2f_c00112{left:589.573187pt;}
.x41_c00112{left:590.497187pt;}
.x1a_c00112{left:591.856787pt;}
.x22_c00112{left:600.375187pt;}
.x52_c00112{left:602.020787pt;}
.x36_c00112{left:611.212387pt;}
.x42_c00112{left:616.690387pt;}
.x30_c00112{left:617.847587pt;}
.x3_c00112{left:620.368787pt;}
.x4_c00112{left:621.737187pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_12a77c7418beec8cc4bc0948.woff2')format("woff");}.ff1_c00113{font-family:ff1_c00113;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00113;src:url('chunks/assets/font_ff877f827e28315a8cfb7ce8.woff2')format("woff");}.ff2_c00113{font-family:ff2_c00113;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00113;src:url('chunks/assets/font_780f56d2dc0596b68442bade.woff2')format("woff");}.ff3_c00113{font-family:ff3_c00113;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00113;src:url('chunks/assets/font_8a21251fb8da3c1cc1b172a9.woff2')format("woff");}.ff4_c00113{font-family:ff4_c00113;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3_c00113{transform:matrix(0.081081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081081,0.000000,0.000000,0.250000,0,0);}
.m16_c00113{transform:matrix(0.091216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091216,0.000000,0.000000,0.250000,0,0);}
.m6a_c00113{transform:matrix(0.117667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117667,0.000000,0.000000,0.250000,0,0);}
.m9d_c00113{transform:matrix(0.119566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119566,0.000000,0.000000,0.250000,0,0);}
.m3f_c00113{transform:matrix(0.136219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136219,0.000000,0.000000,0.250000,0,0);}
.m15_c00113{transform:matrix(0.148648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148648,0.000000,0.000000,0.250000,0,0);}
.m18_c00113{transform:matrix(0.162162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162162,0.000000,0.000000,0.250000,0,0);}
.m2_c00113{transform:matrix(0.175676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175676,0.000000,0.000000,0.250000,0,0);}
.m17_c00113{transform:matrix(0.182433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182433,0.000000,0.000000,0.250000,0,0);}
.m5d_c00113{transform:matrix(0.189188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189188,0.000000,0.000000,0.250000,0,0);}
.m92_c00113{transform:matrix(0.191177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191177,0.000000,0.000000,0.250000,0,0);}
.m1_c00113{transform:matrix(0.191441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191441,0.000000,0.000000,0.250000,0,0);}
.m5c_c00113{transform:matrix(0.192568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192568,0.000000,0.000000,0.250000,0,0);}
.m76_c00113{transform:matrix(0.201941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201941,0.000000,0.000000,0.250000,0,0);}
.m3a_c00113{transform:matrix(0.216704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216704,0.000000,0.000000,0.250000,0,0);}
.m89_c00113{transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);}
.mb9_c00113{transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);}
.m39_c00113{transform:matrix(0.248291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248291,0.000000,0.000000,0.250000,0,0);}
.mc_c00113{transform:matrix(0.249022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249022,0.000000,0.000000,0.250000,0,0);}
.m5_c00113{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m67_c00113{transform:matrix(0.250547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250547,0.000000,0.000000,0.250000,0,0);}
.m0_c00113{transform:matrix(0.250969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250969,0.000000,0.000000,0.250000,0,0);}
.m9a_c00113{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.ma1_c00113{transform:matrix(0.252202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252202,0.000000,0.000000,0.250000,0,0);}
.m5a_c00113{transform:matrix(0.253273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253273,0.000000,0.000000,0.250000,0,0);}
.m33_c00113{transform:matrix(0.254360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254360,0.000000,0.000000,0.250000,0,0);}
.m35_c00113{transform:matrix(0.254597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254597,0.000000,0.000000,0.250000,0,0);}
.m58_c00113{transform:matrix(0.254805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254805,0.000000,0.000000,0.250000,0,0);}
.m84_c00113{transform:matrix(0.257043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257043,0.000000,0.000000,0.250000,0,0);}
.m20_c00113{transform:matrix(0.257875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257875,0.000000,0.000000,0.250000,0,0);}
.m6b_c00113{transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);}
.m29_c00113{transform:matrix(0.258304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258304,0.000000,0.000000,0.250000,0,0);}
.m4_c00113{transform:matrix(0.260855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260855,0.000000,0.000000,0.250000,0,0);}
.m7c_c00113{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m80_c00113{transform:matrix(0.261624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261624,0.000000,0.000000,0.250000,0,0);}
.mb2_c00113{transform:matrix(0.263429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263429,0.000000,0.000000,0.250000,0,0);}
.m3b_c00113{transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);}
.m3d_c00113{transform:matrix(0.264661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264661,0.000000,0.000000,0.250000,0,0);}
.m12_c00113{transform:matrix(0.265694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265694,0.000000,0.000000,0.250000,0,0);}
.m6e_c00113{transform:matrix(0.266063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266063,0.000000,0.000000,0.250000,0,0);}
.m19_c00113{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m59_c00113{transform:matrix(0.267441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267441,0.000000,0.000000,0.250000,0,0);}
.m55_c00113{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m99_c00113{transform:matrix(0.268352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268352,0.000000,0.000000,0.250000,0,0);}
.m48_c00113{transform:matrix(0.268484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268484,0.000000,0.000000,0.250000,0,0);}
.mf_c00113{transform:matrix(0.268648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268648,0.000000,0.000000,0.250000,0,0);}
.m83_c00113{transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);}
.m94_c00113{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m51_c00113{transform:matrix(0.271035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271035,0.000000,0.000000,0.250000,0,0);}
.m23_c00113{transform:matrix(0.271343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271343,0.000000,0.000000,0.250000,0,0);}
.m6_c00113{transform:matrix(0.271578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271578,0.000000,0.000000,0.250000,0,0);}
.m27_c00113{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m95_c00113{transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);}
.m3e_c00113{transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);}
.m8e_c00113{transform:matrix(0.274278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274278,0.000000,0.000000,0.250000,0,0);}
.m4b_c00113{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m72_c00113{transform:matrix(0.275809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275809,0.000000,0.000000,0.250000,0,0);}
.mab_c00113{transform:matrix(0.276160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276160,0.000000,0.000000,0.250000,0,0);}
.m53_c00113{transform:matrix(0.276376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276376,0.000000,0.000000,0.250000,0,0);}
.m9_c00113{transform:matrix(0.276947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276947,0.000000,0.000000,0.250000,0,0);}
.ma0_c00113{transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);}
.m63_c00113{transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);}
.m9c_c00113{transform:matrix(0.277164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277164,0.000000,0.000000,0.250000,0,0);}
.m38_c00113{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m60_c00113{transform:matrix(0.278073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278073,0.000000,0.000000,0.250000,0,0);}
.m1c_c00113{transform:matrix(0.278778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278778,0.000000,0.000000,0.250000,0,0);}
.m65_c00113{transform:matrix(0.280159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280159,0.000000,0.000000,0.250000,0,0);}
.m2e_c00113{transform:matrix(0.280443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280443,0.000000,0.000000,0.250000,0,0);}
.m62_c00113{transform:matrix(0.280684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280684,0.000000,0.000000,0.250000,0,0);}
.mb_c00113{transform:matrix(0.280754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280754,0.000000,0.000000,0.250000,0,0);}
.m93_c00113{transform:matrix(0.280818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280818,0.000000,0.000000,0.250000,0,0);}
.m1e_c00113{transform:matrix(0.281060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281060,0.000000,0.000000,0.250000,0,0);}
.m57_c00113{transform:matrix(0.281340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281340,0.000000,0.000000,0.250000,0,0);}
.m50_c00113{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.m2c_c00113{transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);}
.mc0_c00113{transform:matrix(0.281974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281974,0.000000,0.000000,0.250000,0,0);}
.m21_c00113{transform:matrix(0.282587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282587,0.000000,0.000000,0.250000,0,0);}
.mad_c00113{transform:matrix(0.282727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282727,0.000000,0.000000,0.250000,0,0);}
.m2f_c00113{transform:matrix(0.283328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283328,0.000000,0.000000,0.250000,0,0);}
.mb8_c00113{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.ma2_c00113{transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);}
.mae_c00113{transform:matrix(0.284299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284299,0.000000,0.000000,0.250000,0,0);}
.m73_c00113{transform:matrix(0.284537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284537,0.000000,0.000000,0.250000,0,0);}
.maf_c00113{transform:matrix(0.286238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286238,0.000000,0.000000,0.250000,0,0);}
.m1a_c00113{transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);}
.m97_c00113{transform:matrix(0.287771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287771,0.000000,0.000000,0.250000,0,0);}
.m30_c00113{transform:matrix(0.288372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288372,0.000000,0.000000,0.250000,0,0);}
.m96_c00113{transform:matrix(0.288643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288643,0.000000,0.000000,0.250000,0,0);}
.m64_c00113{transform:matrix(0.289549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289549,0.000000,0.000000,0.250000,0,0);}
.m1f_c00113{transform:matrix(0.290895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290895,0.000000,0.000000,0.250000,0,0);}
.m2a_c00113{transform:matrix(0.291008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291008,0.000000,0.000000,0.250000,0,0);}
.m45_c00113{transform:matrix(0.291135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291135,0.000000,0.000000,0.250000,0,0);}
.m78_c00113{transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);}
.mbe_c00113{transform:matrix(0.292520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292520,0.000000,0.000000,0.250000,0,0);}
.m9f_c00113{transform:matrix(0.293432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293432,0.000000,0.000000,0.250000,0,0);}
.m36_c00113{transform:matrix(0.293916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293916,0.000000,0.000000,0.250000,0,0);}
.m7a_c00113{transform:matrix(0.294193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294193,0.000000,0.000000,0.250000,0,0);}
.mbb_c00113{transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);}
.m68_c00113{transform:matrix(0.295933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295933,0.000000,0.000000,0.250000,0,0);}
.m85_c00113{transform:matrix(0.296562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296562,0.000000,0.000000,0.250000,0,0);}
.mac_c00113{transform:matrix(0.296783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296783,0.000000,0.000000,0.250000,0,0);}
.m47_c00113{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m4e_c00113{transform:matrix(0.297717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297717,0.000000,0.000000,0.250000,0,0);}
.m4f_c00113{transform:matrix(0.298706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298706,0.000000,0.000000,0.250000,0,0);}
.m49_c00113{transform:matrix(0.298884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298884,0.000000,0.000000,0.250000,0,0);}
.m71_c00113{transform:matrix(0.299202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299202,0.000000,0.000000,0.250000,0,0);}
.m6c_c00113{transform:matrix(0.299263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299263,0.000000,0.000000,0.250000,0,0);}
.ma6_c00113{transform:matrix(0.300441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300441,0.000000,0.000000,0.250000,0,0);}
.m74_c00113{transform:matrix(0.300521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300521,0.000000,0.000000,0.250000,0,0);}
.m90_c00113{transform:matrix(0.301729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301729,0.000000,0.000000,0.250000,0,0);}
.m14_c00113{transform:matrix(0.301880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301880,0.000000,0.000000,0.250000,0,0);}
.m56_c00113{transform:matrix(0.302310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302310,0.000000,0.000000,0.250000,0,0);}
.m8f_c00113{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.mb5_c00113{transform:matrix(0.303007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303007,0.000000,0.000000,0.250000,0,0);}
.mb0_c00113{transform:matrix(0.303265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303265,0.000000,0.000000,0.250000,0,0);}
.m5b_c00113{transform:matrix(0.304054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304054,0.000000,0.000000,0.250000,0,0);}
.ma8_c00113{transform:matrix(0.304372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304372,0.000000,0.000000,0.250000,0,0);}
.m7f_c00113{transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);}
.m46_c00113{transform:matrix(0.306022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306022,0.000000,0.000000,0.250000,0,0);}
.m9b_c00113{transform:matrix(0.306206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306206,0.000000,0.000000,0.250000,0,0);}
.me_c00113{transform:matrix(0.306533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306533,0.000000,0.000000,0.250000,0,0);}
.m91_c00113{transform:matrix(0.306647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306647,0.000000,0.000000,0.250000,0,0);}
.mbc_c00113{transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);}
.maa_c00113{transform:matrix(0.307730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307730,0.000000,0.000000,0.250000,0,0);}
.ma3_c00113{transform:matrix(0.310059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310059,0.000000,0.000000,0.250000,0,0);}
.ma9_c00113{transform:matrix(0.310246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310246,0.000000,0.000000,0.250000,0,0);}
.mba_c00113{transform:matrix(0.310305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310305,0.000000,0.000000,0.250000,0,0);}
.m41_c00113{transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);}
.m25_c00113{transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);}
.m7_c00113{transform:matrix(0.312562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312562,0.000000,0.000000,0.250000,0,0);}
.m81_c00113{transform:matrix(0.312744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312744,0.000000,0.000000,0.250000,0,0);}
.mb7_c00113{transform:matrix(0.312932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312932,0.000000,0.000000,0.250000,0,0);}
.m8c_c00113{transform:matrix(0.313921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313921,0.000000,0.000000,0.250000,0,0);}
.m7b_c00113{transform:matrix(0.314036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314036,0.000000,0.000000,0.250000,0,0);}
.m3c_c00113{transform:matrix(0.314182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314182,0.000000,0.000000,0.250000,0,0);}
.ma7_c00113{transform:matrix(0.314528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314528,0.000000,0.000000,0.250000,0,0);}
.m11_c00113{transform:matrix(0.314869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314869,0.000000,0.000000,0.250000,0,0);}
.mb6_c00113{transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);}
.m61_c00113{transform:matrix(0.315717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315717,0.000000,0.000000,0.250000,0,0);}
.m28_c00113{transform:matrix(0.316298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316298,0.000000,0.000000,0.250000,0,0);}
.m4a_c00113{transform:matrix(0.317085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317085,0.000000,0.000000,0.250000,0,0);}
.m82_c00113{transform:matrix(0.317150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317150,0.000000,0.000000,0.250000,0,0);}
.ma5_c00113{transform:matrix(0.317237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317237,0.000000,0.000000,0.250000,0,0);}
.mbf_c00113{transform:matrix(0.317558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317558,0.000000,0.000000,0.250000,0,0);}
.ma4_c00113{transform:matrix(0.317834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317834,0.000000,0.000000,0.250000,0,0);}
.m4c_c00113{transform:matrix(0.318777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318777,0.000000,0.000000,0.250000,0,0);}
.m8a_c00113{transform:matrix(0.318892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318892,0.000000,0.000000,0.250000,0,0);}
.m6d_c00113{transform:matrix(0.319038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319038,0.000000,0.000000,0.250000,0,0);}
.m8b_c00113{transform:matrix(0.319290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319290,0.000000,0.000000,0.250000,0,0);}
.md_c00113{transform:matrix(0.319402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319402,0.000000,0.000000,0.250000,0,0);}
.mb4_c00113{transform:matrix(0.321236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321236,0.000000,0.000000,0.250000,0,0);}
.m7d_c00113{transform:matrix(0.323157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323157,0.000000,0.000000,0.250000,0,0);}
.m4d_c00113{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.m52_c00113{transform:matrix(0.324794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324794,0.000000,0.000000,0.250000,0,0);}
.m40_c00113{transform:matrix(0.326020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326020,0.000000,0.000000,0.250000,0,0);}
.m43_c00113{transform:matrix(0.326563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326563,0.000000,0.000000,0.250000,0,0);}
.m13_c00113{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.mbd_c00113{transform:matrix(0.328093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328093,0.000000,0.000000,0.250000,0,0);}
.m70_c00113{transform:matrix(0.329080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329080,0.000000,0.000000,0.250000,0,0);}
.m31_c00113{transform:matrix(0.330076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330076,0.000000,0.000000,0.250000,0,0);}
.m32_c00113{transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);}
.m22_c00113{transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);}
.m2d_c00113{transform:matrix(0.331631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331631,0.000000,0.000000,0.250000,0,0);}
.m5e_c00113{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m86_c00113{transform:matrix(0.334392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334392,0.000000,0.000000,0.250000,0,0);}
.m26_c00113{transform:matrix(0.336157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336157,0.000000,0.000000,0.250000,0,0);}
.m66_c00113{transform:matrix(0.337511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337511,0.000000,0.000000,0.250000,0,0);}
.m9e_c00113{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m2b_c00113{transform:matrix(0.339419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339419,0.000000,0.000000,0.250000,0,0);}
.m42_c00113{transform:matrix(0.340001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340001,0.000000,0.000000,0.250000,0,0);}
.mb3_c00113{transform:matrix(0.340935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340935,0.000000,0.000000,0.250000,0,0);}
.mb1_c00113{transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);}
.m98_c00113{transform:matrix(0.341742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341742,0.000000,0.000000,0.250000,0,0);}
.m1d_c00113{transform:matrix(0.343011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343011,0.000000,0.000000,0.250000,0,0);}
.m75_c00113{transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);}
.m24_c00113{transform:matrix(0.345023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345023,0.000000,0.000000,0.250000,0,0);}
.m8_c00113{transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);}
.m6f_c00113{transform:matrix(0.348765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348765,0.000000,0.000000,0.250000,0,0);}
.m7e_c00113{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m54_c00113{transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);}
.ma_c00113{transform:matrix(0.360514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360514,0.000000,0.000000,0.250000,0,0);}
.m44_c00113{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m34_c00113{transform:matrix(0.362739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362739,0.000000,0.000000,0.250000,0,0);}
.m87_c00113{transform:matrix(0.363115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363115,0.000000,0.000000,0.250000,0,0);}
.m77_c00113{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);}
.m8d_c00113{transform:matrix(0.367117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367117,0.000000,0.000000,0.250000,0,0);}
.m79_c00113{transform:matrix(0.372071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372071,0.000000,0.000000,0.250000,0,0);}
.m1b_c00113{transform:matrix(0.373973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373973,0.000000,0.000000,0.250000,0,0);}
.m37_c00113{transform:matrix(0.385852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385852,0.000000,0.000000,0.250000,0,0);}
.m88_c00113{transform:matrix(0.392742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392742,0.000000,0.000000,0.250000,0,0);}
.m10_c00113{transform:matrix(0.414699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414699,0.000000,0.000000,0.250000,0,0);}
.m5f_c00113{transform:matrix(0.432348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432348,0.000000,0.000000,0.250000,0,0);}
.m69_c00113{transform:matrix(1.453281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.453281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.453281,0.000000,0.000000,0.250000,0,0);}
.v1_c00113{vertical-align:-44.193600px;}
.v2_c00113{vertical-align:-8.589636px;}
.v0_c00113{vertical-align:0.000000px;}
.lsc_c00113{letter-spacing:-2.744280px;}
.ls17_c00113{letter-spacing:-2.375762px;}
.ls14_c00113{letter-spacing:-1.663200px;}
.lse_c00113{letter-spacing:-1.246687px;}
.ls11_c00113{letter-spacing:-0.640312px;}
.lsa_c00113{letter-spacing:0.000000px;}
.ls4_c00113{letter-spacing:0.023522px;}
.ls6_c00113{letter-spacing:0.110603px;}
.ls5_c00113{letter-spacing:0.462607px;}
.ls1_c00113{letter-spacing:0.493970px;}
.ls13_c00113{letter-spacing:0.970200px;}
.lsf_c00113{letter-spacing:1.395900px;}
.ls12_c00113{letter-spacing:1.732817px;}
.ls18_c00113{letter-spacing:2.038608px;}
.ls2_c00113{letter-spacing:2.455992px;}
.ls0_c00113{letter-spacing:2.563942px;}
.ls3_c00113{letter-spacing:2.982276px;}
.ls10_c00113{letter-spacing:3.246091px;}
.lsb_c00113{letter-spacing:3.920400px;}
.lsd_c00113{letter-spacing:4.336200px;}
.ls8_c00113{letter-spacing:4.385700px;}
.ls7_c00113{letter-spacing:5.357880px;}
.ls16_c00113{letter-spacing:32.788998px;}
.ls15_c00113{letter-spacing:48.470598px;}
.ls9_c00113{letter-spacing:52.747398px;}
.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;}
}
.ws7_c00113{word-spacing:-22.848091px;}
.ws4_c00113{word-spacing:-20.095970px;}
.ws8_c00113{word-spacing:-20.064607px;}
.ws1_c00113{word-spacing:-19.602000px;}
.ws5_c00113{word-spacing:-7.455690px;}
.ws0_c00113{word-spacing:-4.077216px;}
.ws6_c00113{word-spacing:-0.313632px;}
.wsa_c00113{word-spacing:0.000000px;}
.ws3_c00113{word-spacing:1.412136px;}
.ws9_c00113{word-spacing:2.352240px;}
.ws2_c00113{word-spacing:7.859430px;}
._0_c00113{margin-left:-15.916824px;}
._1b_c00113{margin-left:-13.115520px;}
._3_c00113{margin-left:-10.349856px;}
._f_c00113{margin-left:-6.664680px;}
._17_c00113{margin-left:-5.253336px;}
._15_c00113{margin-left:-3.449952px;}
._14_c00113{width:2.979108px;}
._2_c00113{width:4.626468px;}
._1_c00113{width:6.429456px;}
._a_c00113{width:7.919604px;}
._4_c00113{width:9.095328px;}
._5_c00113{width:10.898316px;}
._1e_c00113{width:11.918016px;}
._11_c00113{width:15.446376px;}
._d_c00113{width:17.444196px;}
._7_c00113{width:21.640608px;}
._9_c00113{width:23.536498px;}
._8_c00113{width:25.012152px;}
._18_c00113{width:26.345088px;}
._1d_c00113{width:27.427752px;}
._13_c00113{width:29.874794px;}
._c_c00113{width:30.971556px;}
._e_c00113{width:33.244992px;}
._10_c00113{width:35.397648px;}
._6_c00113{width:37.479024px;}
._16_c00113{width:39.752856px;}
._1f_c00113{width:41.635044px;}
._1c_c00113{width:43.546536px;}
._b_c00113{width:46.507824px;}
._12_c00113{width:53.149536px;}
._1a_c00113{width:699.913962px;}
._19_c00113{width:920.185200px;}
.fc0_c00113{color:transparent;}
.fs7_c00113{font-size:19.404000px;}
.fse_c00113{font-size:25.146000px;}
.fs4_c00113{font-size:27.918000px;}
.fs11_c00113{font-size:28.908000px;}
.fsf_c00113{font-size:32.788998px;}
.fsd_c00113{font-size:39.600000px;}
.fs8_c00113{font-size:47.520000px;}
.fsb_c00113{font-size:48.470598px;}
.fs1_c00113{font-size:52.747398px;}
.fs6_c00113{font-size:60.192000px;}
.fs9_c00113{font-size:66.132198px;}
.fsc_c00113{font-size:68.112198px;}
.fs2_c00113{font-size:78.408000px;}
.fs5_c00113{font-size:78.804000px;}
.fsa_c00113{font-size:83.952198px;}
.fs3_c00113{font-size:86.724000px;}
.fs0_c00113{font-size:87.714000px;}
.fs10_c00113{font-size:107.712198px;}
.y0_c00113{bottom:0.000000px;}
.y1_c00113{bottom:76.500000px;}
.y24_c00113{bottom:150.312735px;}
.y23_c00113{bottom:180.958185px;}
.y22_c00113{bottom:214.108335px;}
.y21_c00113{bottom:253.307385px;}
.y20_c00113{bottom:274.696335px;}
.y1f_c00113{bottom:278.973135px;}
.y1e_c00113{bottom:311.761935px;}
.y1d_c00113{bottom:344.902185px;}
.y18_c00113{bottom:345.976335px;}
.y1c_c00113{bottom:359.875935px;}
.y1b_c00113{bottom:370.567935px;}
.y1a_c00113{bottom:375.557535px;}
.y17_c00113{bottom:377.695935px;}
.y19_c00113{bottom:388.031535px;}
.y16_c00113{bottom:409.771935px;}
.y15_c00113{bottom:442.912185px;}
.y14_c00113{bottom:477.487935px;}
.y13_c00113{bottom:509.558985px;}
.y12_c00113{bottom:541.278585px;}
.y11_c00113{bottom:541.996335px;}
.y10_c00113{bottom:574.072335px;}
.yf_c00113{bottom:638.575785px;}
.ye_c00113{bottom:671.013135px;}
.yd_c00113{bottom:704.153385px;}
.yc_c00113{bottom:736.234335px;}
.yb_c00113{bottom:768.305385px;}
.ya_c00113{bottom:801.094185px;}
.y9_c00113{bottom:827.824185px;}
.y6_c00113{bottom:832.818735px;}
.y7_c00113{bottom:833.175135px;}
.y8_c00113{bottom:833.526585px;}
.y5_c00113{bottom:865.958985px;}
.y4_c00113{bottom:898.396335px;}
.y3_c00113{bottom:931.897935px;}
.y2_c00113{bottom:1081.937385px;}
.h8_c00113{height:19.043965px;}
.hf_c00113{height:21.837473px;}
.he_c00113{height:26.226492px;}
.h6_c00113{height:29.117602px;}
.h11_c00113{height:30.150141px;}
.hc_c00113{height:32.281418px;}
.h3_c00113{height:35.129767px;}
.h9_c00113{height:46.638281px;}
.ha_c00113{height:68.973816px;}
.hd_c00113{height:71.038894px;}
.h4_c00113{height:76.953164px;}
.h7_c00113{height:77.341816px;}
.hb_c00113{height:82.394491px;}
.h2_c00113{height:86.086494px;}
.h5_c00113{height:90.450422px;}
.h10_c00113{height:105.713632px;}
.h1_c00113{height:1110.000000px;}
.h0_c00113{height:1263.000000px;}
.w1_c00113{width:733.500000px;}
.w0_c00113{width:892.500000px;}
.x0_c00113{left:0.000000px;}
.x11_c00113{left:72.977385px;}
.x1c_c00113{left:74.506935px;}
.x1_c00113{left:79.500000px;}
.x1d_c00113{left:85.198935px;}
.x1e_c00113{left:95.885985px;}
.x31_c00113{left:106.370085px;}
.x12_c00113{left:107.429385px;}
.x1f_c00113{left:118.339185px;}
.x4a_c00113{left:128.986635px;}
.x3_c00113{left:130.105335px;}
.x29_c00113{left:138.955935px;}
.x49_c00113{left:142.658535px;}
.x20_c00113{left:151.613085px;}
.x45_c00113{left:159.320235px;}
.x53_c00113{left:162.671385px;}
.x3c_c00113{left:165.230535px;}
.x40_c00113{left:173.016885px;}
.x6b_c00113{left:174.328635px;}
.x21_c00113{left:184.099935px;}
.x13_c00113{left:193.851435px;}
.x4_c00113{left:195.682935px;}
.x35_c00113{left:206.513535px;}
.x5_c00113{left:208.513335px;}
.x3d_c00113{left:218.249985px;}
.x64_c00113{left:219.294435px;}
.x6_c00113{left:227.570835px;}
.x22_c00113{left:228.620235px;}
.x54_c00113{left:230.199285px;}
.x14_c00113{left:240.673485px;}
.x3e_c00113{left:251.187285px;}
.x68_c00113{left:252.464385px;}
.x36_c00113{left:262.473285px;}
.x4b_c00113{left:263.532585px;}
.x23_c00113{left:273.115785px;}
.x5a_c00113{left:274.199835px;}
.x2a_c00113{left:284.456235px;}
.x65_c00113{left:285.965985px;}
.x41_c00113{left:295.846185px;}
.x24_c00113{left:305.968935px;}
.x5b_c00113{left:307.607385px;}
.x7_c00113{left:316.651035px;}
.x37_c00113{left:318.408285px;}
.x2b_c00113{left:328.387485px;}
.x25_c00113{left:339.099285px;}
.x5c_c00113{left:340.851585px;}
.x8_c00113{left:349.949685px;}
.x32_c00113{left:351.197085px;}
.x15_c00113{left:361.785135px;}
.x58_c00113{left:363.344385px;}
.x66_c00113{left:365.413485px;}
.x9_c00113{left:372.972135px;}
.x4c_c00113{left:374.234385px;}
.x59_c00113{left:385.228335px;}
.x38_c00113{left:395.410485px;}
.x4d_c00113{left:396.687585px;}
.xa_c00113{left:406.775685px;}
.x16_c00113{left:416.611335px;}
.x4e_c00113{left:418.071585px;}
.x67_c00113{left:429.951585px;}
.x39_c00113{left:438.381435px;}
.x42_c00113{left:440.277285px;}
.x26_c00113{left:449.741685px;}
.x17_c00113{left:451.286085px;}
.x69_c00113{left:452.384985px;}
.x18_c00113{left:461.458335px;}
.x46_c00113{left:462.661185px;}
.x60_c00113{left:472.239435px;}
.x55_c00113{left:473.630385px;}
.x19_c00113{left:483.797685px;}
.xb_c00113{left:495.826185px;}
.x1a_c00113{left:506.057835px;}
.x43_c00113{left:507.290385px;}
.x47_c00113{left:517.784385px;}
.x3a_c00113{left:519.744585px;}
.xc_c00113{left:528.362535px;}
.x56_c00113{left:529.451535px;}
.x33_c00113{left:539.722785px;}
.x4f_c00113{left:540.727635px;}
.x2f_c00113{left:546.583485px;}
.x48_c00113{left:550.800885px;}
.x5e_c00113{left:553.904535px;}
.x3b_c00113{left:561.458235px;}
.x27_c00113{left:562.542285px;}
.x2c_c00113{left:572.516535px;}
.x50_c00113{left:573.778785px;}
.x44_c00113{left:584.149035px;}
.x28_c00113{left:594.266835px;}
.x6a_c00113{left:595.316235px;}
.x5f_c00113{left:597.741735px;}
.x1b_c00113{left:605.686485px;}
.xd_c00113{left:606.745785px;}
.x34_c00113{left:617.071485px;}
.xe_c00113{left:628.456485px;}
.x57_c00113{left:631.505685px;}
.x2d_c00113{left:638.826735px;}
.x5d_c00113{left:640.940385px;}
.x51_c00113{left:649.726635px;}
.x2_c00113{left:651.246285px;}
.x2e_c00113{left:672.724335px;}
.xf_c00113{left:684.094485px;}
.x3f_c00113{left:685.153785px;}
.x30_c00113{left:690.633435px;}
.x52_c00113{left:691.672935px;}
.x10_c00113{left:694.954785px;}
.x61_c00113{left:697.781235px;}
.x63_c00113{left:699.454335px;}
.x62_c00113{left:706.013085px;}
@media print{
.v1_c00113{vertical-align:-39.283200pt;}
.v2_c00113{vertical-align:-7.635232pt;}
.v0_c00113{vertical-align:0.000000pt;}
.lsc_c00113{letter-spacing:-2.439360pt;}
.ls17_c00113{letter-spacing:-2.111789pt;}
.ls14_c00113{letter-spacing:-1.478400pt;}
.lse_c00113{letter-spacing:-1.108166pt;}
.ls11_c00113{letter-spacing:-0.569166pt;}
.lsa_c00113{letter-spacing:0.000000pt;}
.ls4_c00113{letter-spacing:0.020909pt;}
.ls6_c00113{letter-spacing:0.098314pt;}
.ls5_c00113{letter-spacing:0.411206pt;}
.ls1_c00113{letter-spacing:0.439085pt;}
.ls13_c00113{letter-spacing:0.862400pt;}
.lsf_c00113{letter-spacing:1.240800pt;}
.ls12_c00113{letter-spacing:1.540282pt;}
.ls18_c00113{letter-spacing:1.812096pt;}
.ls2_c00113{letter-spacing:2.183104pt;}
.ls0_c00113{letter-spacing:2.279059pt;}
.ls3_c00113{letter-spacing:2.650912pt;}
.ls10_c00113{letter-spacing:2.885414pt;}
.lsb_c00113{letter-spacing:3.484800pt;}
.lsd_c00113{letter-spacing:3.854400pt;}
.ls8_c00113{letter-spacing:3.898400pt;}
.ls7_c00113{letter-spacing:4.762560pt;}
.ls16_c00113{letter-spacing:29.145776pt;}
.ls15_c00113{letter-spacing:43.084976pt;}
.ls9_c00113{letter-spacing:46.886576pt;}
.ws7_c00113{word-spacing:-20.309414pt;}
.ws4_c00113{word-spacing:-17.863085pt;}
.ws8_c00113{word-spacing:-17.835206pt;}
.ws1_c00113{word-spacing:-17.424000pt;}
.ws5_c00113{word-spacing:-6.627280pt;}
.ws0_c00113{word-spacing:-3.624192pt;}
.ws6_c00113{word-spacing:-0.278784pt;}
.wsa_c00113{word-spacing:0.000000pt;}
.ws3_c00113{word-spacing:1.255232pt;}
.ws9_c00113{word-spacing:2.090880pt;}
.ws2_c00113{word-spacing:6.986160pt;}
._0_c00113{margin-left:-14.148288pt;}
._1b_c00113{margin-left:-11.658240pt;}
._3_c00113{margin-left:-9.199872pt;}
._f_c00113{margin-left:-5.924160pt;}
._17_c00113{margin-left:-4.669632pt;}
._15_c00113{margin-left:-3.066624pt;}
._14_c00113{width:2.648096pt;}
._2_c00113{width:4.112416pt;}
._1_c00113{width:5.715072pt;}
._a_c00113{width:7.039648pt;}
._4_c00113{width:8.084736pt;}
._5_c00113{width:9.687392pt;}
._1e_c00113{width:10.593792pt;}
._11_c00113{width:13.730112pt;}
._d_c00113{width:15.505952pt;}
._7_c00113{width:19.236096pt;}
._9_c00113{width:20.921331pt;}
._8_c00113{width:22.233024pt;}
._18_c00113{width:23.417856pt;}
._1d_c00113{width:24.380224pt;}
._13_c00113{width:26.555373pt;}
._c_c00113{width:27.530272pt;}
._e_c00113{width:29.551104pt;}
._10_c00113{width:31.464576pt;}
._6_c00113{width:33.314688pt;}
._16_c00113{width:35.335872pt;}
._1f_c00113{width:37.008928pt;}
._1c_c00113{width:38.708032pt;}
._b_c00113{width:41.340288pt;}
._12_c00113{width:47.244032pt;}
._1a_c00113{width:622.145744pt;}
._19_c00113{width:817.942400pt;}
.fs7_c00113{font-size:17.248000pt;}
.fse_c00113{font-size:22.352000pt;}
.fs4_c00113{font-size:24.816000pt;}
.fs11_c00113{font-size:25.696000pt;}
.fsf_c00113{font-size:29.145776pt;}
.fsd_c00113{font-size:35.200000pt;}
.fs8_c00113{font-size:42.240000pt;}
.fsb_c00113{font-size:43.084976pt;}
.fs1_c00113{font-size:46.886576pt;}
.fs6_c00113{font-size:53.504000pt;}
.fs9_c00113{font-size:58.784176pt;}
.fsc_c00113{font-size:60.544176pt;}
.fs2_c00113{font-size:69.696000pt;}
.fs5_c00113{font-size:70.048000pt;}
.fsa_c00113{font-size:74.624176pt;}
.fs3_c00113{font-size:77.088000pt;}
.fs0_c00113{font-size:77.968000pt;}
.fs10_c00113{font-size:95.744176pt;}
.y0_c00113{bottom:0.000000pt;}
.y1_c00113{bottom:68.000000pt;}
.y24_c00113{bottom:133.611320pt;}
.y23_c00113{bottom:160.851720pt;}
.y22_c00113{bottom:190.318520pt;}
.y21_c00113{bottom:225.162120pt;}
.y20_c00113{bottom:244.174520pt;}
.y1f_c00113{bottom:247.976120pt;}
.y1e_c00113{bottom:277.121720pt;}
.y1d_c00113{bottom:306.579720pt;}
.y18_c00113{bottom:307.534520pt;}
.y1c_c00113{bottom:319.889720pt;}
.y1b_c00113{bottom:329.393720pt;}
.y1a_c00113{bottom:333.828920pt;}
.y17_c00113{bottom:335.729720pt;}
.y19_c00113{bottom:344.916920pt;}
.y16_c00113{bottom:364.241720pt;}
.y15_c00113{bottom:393.699720pt;}
.y14_c00113{bottom:424.433720pt;}
.y13_c00113{bottom:452.941320pt;}
.y12_c00113{bottom:481.136520pt;}
.y11_c00113{bottom:481.774520pt;}
.y10_c00113{bottom:510.286520pt;}
.yf_c00113{bottom:567.622920pt;}
.ye_c00113{bottom:596.456120pt;}
.yd_c00113{bottom:625.914120pt;}
.yc_c00113{bottom:654.430520pt;}
.yb_c00113{bottom:682.938120pt;}
.ya_c00113{bottom:712.083720pt;}
.y9_c00113{bottom:735.843720pt;}
.y6_c00113{bottom:740.283320pt;}
.y7_c00113{bottom:740.600120pt;}
.y8_c00113{bottom:740.912520pt;}
.y5_c00113{bottom:769.741320pt;}
.y4_c00113{bottom:798.574520pt;}
.y3_c00113{bottom:828.353720pt;}
.y2_c00113{bottom:961.722120pt;}
.h8_c00113{height:16.927969pt;}
.hf_c00113{height:19.411087pt;}
.he_c00113{height:23.312438pt;}
.h6_c00113{height:25.882313pt;}
.h11_c00113{height:26.800125pt;}
.hc_c00113{height:28.694594pt;}
.h3_c00113{height:31.226460pt;}
.h9_c00113{height:41.456250pt;}
.ha_c00113{height:61.310059pt;}
.hd_c00113{height:63.145684pt;}
.h4_c00113{height:68.402813pt;}
.h7_c00113{height:68.748281pt;}
.hb_c00113{height:73.239548pt;}
.h2_c00113{height:76.521328pt;}
.h5_c00113{height:80.400375pt;}
.h10_c00113{height:93.967673pt;}
.h1_c00113{height:986.666667pt;}
.h0_c00113{height:1122.666667pt;}
.w1_c00113{width:652.000000pt;}
.w0_c00113{width:793.333333pt;}
.x0_c00113{left:0.000000pt;}
.x11_c00113{left:64.868787pt;}
.x1c_c00113{left:66.228387pt;}
.x1_c00113{left:70.666667pt;}
.x1d_c00113{left:75.732387pt;}
.x1e_c00113{left:85.231987pt;}
.x31_c00113{left:94.551187pt;}
.x12_c00113{left:95.492787pt;}
.x1f_c00113{left:105.190387pt;}
.x4a_c00113{left:114.654787pt;}
.x3_c00113{left:115.649187pt;}
.x29_c00113{left:123.516387pt;}
.x49_c00113{left:126.807587pt;}
.x20_c00113{left:134.767187pt;}
.x45_c00113{left:141.617987pt;}
.x53_c00113{left:144.596787pt;}
.x3c_c00113{left:146.871587pt;}
.x40_c00113{left:153.792787pt;}
.x6b_c00113{left:154.958787pt;}
.x21_c00113{left:163.644387pt;}
.x13_c00113{left:172.312387pt;}
.x4_c00113{left:173.940387pt;}
.x35_c00113{left:183.567587pt;}
.x5_c00113{left:185.345187pt;}
.x3d_c00113{left:193.999987pt;}
.x64_c00113{left:194.928387pt;}
.x6_c00113{left:202.285187pt;}
.x22_c00113{left:203.217987pt;}
.x54_c00113{left:204.621587pt;}
.x14_c00113{left:213.931987pt;}
.x3e_c00113{left:223.277587pt;}
.x68_c00113{left:224.412787pt;}
.x36_c00113{left:233.309587pt;}
.x4b_c00113{left:234.251187pt;}
.x23_c00113{left:242.769587pt;}
.x5a_c00113{left:243.733187pt;}
.x2a_c00113{left:252.849987pt;}
.x65_c00113{left:254.191987pt;}
.x41_c00113{left:262.974387pt;}
.x24_c00113{left:271.972387pt;}
.x5b_c00113{left:273.428787pt;}
.x7_c00113{left:281.467587pt;}
.x37_c00113{left:283.029587pt;}
.x2b_c00113{left:291.899987pt;}
.x25_c00113{left:301.421587pt;}
.x5c_c00113{left:302.979187pt;}
.x8_c00113{left:311.066387pt;}
.x32_c00113{left:312.175187pt;}
.x15_c00113{left:321.586787pt;}
.x58_c00113{left:322.972787pt;}
.x66_c00113{left:324.811987pt;}
.x9_c00113{left:331.530787pt;}
.x4c_c00113{left:332.652787pt;}
.x59_c00113{left:342.425187pt;}
.x38_c00113{left:351.475987pt;}
.x4d_c00113{left:352.611187pt;}
.xa_c00113{left:361.578387pt;}
.x16_c00113{left:370.321187pt;}
.x4e_c00113{left:371.619187pt;}
.x67_c00113{left:382.179187pt;}
.x39_c00113{left:389.672387pt;}
.x42_c00113{left:391.357587pt;}
.x26_c00113{left:399.770387pt;}
.x17_c00113{left:401.143187pt;}
.x69_c00113{left:402.119987pt;}
.x18_c00113{left:410.185187pt;}
.x46_c00113{left:411.254387pt;}
.x60_c00113{left:419.768387pt;}
.x55_c00113{left:421.004787pt;}
.x19_c00113{left:430.042387pt;}
.xb_c00113{left:440.734387pt;}
.x1a_c00113{left:449.829187pt;}
.x43_c00113{left:450.924787pt;}
.x47_c00113{left:460.252787pt;}
.x3a_c00113{left:461.995187pt;}
.xc_c00113{left:469.655587pt;}
.x56_c00113{left:470.623587pt;}
.x33_c00113{left:479.753587pt;}
.x4f_c00113{left:480.646787pt;}
.x2f_c00113{left:485.851987pt;}
.x48_c00113{left:489.600787pt;}
.x5e_c00113{left:492.359587pt;}
.x3b_c00113{left:499.073987pt;}
.x27_c00113{left:500.037587pt;}
.x2c_c00113{left:508.903587pt;}
.x50_c00113{left:510.025587pt;}
.x44_c00113{left:519.243587pt;}
.x28_c00113{left:528.237187pt;}
.x6a_c00113{left:529.169987pt;}
.x5f_c00113{left:531.325987pt;}
.x1b_c00113{left:538.387987pt;}
.xd_c00113{left:539.329587pt;}
.x34_c00113{left:548.507987pt;}
.xe_c00113{left:558.627987pt;}
.x57_c00113{left:561.338387pt;}
.x2d_c00113{left:567.845987pt;}
.x5d_c00113{left:569.724787pt;}
.x51_c00113{left:577.534787pt;}
.x2_c00113{left:578.885587pt;}
.x2e_c00113{left:597.977187pt;}
.xf_c00113{left:608.083987pt;}
.x3f_c00113{left:609.025587pt;}
.x30_c00113{left:613.896387pt;}
.x52_c00113{left:614.820387pt;}
.x10_c00113{left:617.737587pt;}
.x61_c00113{left:620.249987pt;}
.x63_c00113{left:621.737187pt;}
.x62_c00113{left:627.567187pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e0e4a7cb99760ecb02f34cab.woff2')format("woff");}.ff1_c00114{font-family:ff1_c00114;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00114;src:url('chunks/assets/font_2d3496055d1cc86d0e66d3dd.woff2')format("woff");}.ff2_c00114{font-family:ff2_c00114;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00114;src:url('chunks/assets/font_a6485df39d6d9e029c333376.woff2')format("woff");}.ff3_c00114{font-family:ff3_c00114;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00114;src:url('chunks/assets/font_b88cc9cd09963777ce3a94be.woff2')format("woff");}.ff4_c00114{font-family:ff4_c00114;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00114;src:url('chunks/assets/font_9eb735cf1bea951839b78e51.woff2')format("woff");}.ff5_c00114{font-family:ff5_c00114;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m6b_c00114{transform:matrix(0.109199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109199,0.000000,0.000000,0.250000,0,0);}
.m5e_c00114{transform:matrix(0.152139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152139,0.000000,0.000000,0.250000,0,0);}
.m5c_c00114{transform:matrix(0.190790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190790,0.000000,0.000000,0.250000,0,0);}
.m5a_c00114{transform:matrix(0.200293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200293,0.000000,0.000000,0.250000,0,0);}
.m81_c00114{transform:matrix(0.207770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207770,0.000000,0.000000,0.250000,0,0);}
.mb_c00114{transform:matrix(0.220377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220377,0.000000,0.000000,0.250000,0,0);}
.m9b_c00114{transform:matrix(0.229270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229270,0.000000,0.000000,0.250000,0,0);}
.m7d_c00114{transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);}
.m0_c00114{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m39_c00114{transform:matrix(0.251559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251559,0.000000,0.000000,0.250000,0,0);}
.m7f_c00114{transform:matrix(0.252169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252169,0.000000,0.000000,0.250000,0,0);}
.m3a_c00114{transform:matrix(0.253863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253863,0.000000,0.000000,0.250000,0,0);}
.m1e_c00114{transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);}
.m5f_c00114{transform:matrix(0.256263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256263,0.000000,0.000000,0.250000,0,0);}
.m75_c00114{transform:matrix(0.256600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256600,0.000000,0.000000,0.250000,0,0);}
.m15_c00114{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m1a_c00114{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m46_c00114{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m14_c00114{transform:matrix(0.264489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264489,0.000000,0.000000,0.250000,0,0);}
.m29_c00114{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);}
.m7c_c00114{transform:matrix(0.265487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265487,0.000000,0.000000,0.250000,0,0);}
.m32_c00114{transform:matrix(0.265817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265817,0.000000,0.000000,0.250000,0,0);}
.m92_c00114{transform:matrix(0.265894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265894,0.000000,0.000000,0.250000,0,0);}
.m36_c00114{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.md_c00114{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.m33_c00114{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m72_c00114{transform:matrix(0.269191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269191,0.000000,0.000000,0.250000,0,0);}
.m1_c00114{transform:matrix(0.269334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269334,0.000000,0.000000,0.250000,0,0);}
.m40_c00114{transform:matrix(0.269904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269904,0.000000,0.000000,0.250000,0,0);}
.m25_c00114{transform:matrix(0.269911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269911,0.000000,0.000000,0.250000,0,0);}
.m4f_c00114{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m84_c00114{transform:matrix(0.271338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271338,0.000000,0.000000,0.250000,0,0);}
.m87_c00114{transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);}
.m51_c00114{transform:matrix(0.271722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271722,0.000000,0.000000,0.250000,0,0);}
.m57_c00114{transform:matrix(0.271967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271967,0.000000,0.000000,0.250000,0,0);}
.m3_c00114{transform:matrix(0.272255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272255,0.000000,0.000000,0.250000,0,0);}
.m42_c00114{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m96_c00114{transform:matrix(0.273381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273381,0.000000,0.000000,0.250000,0,0);}
.m65_c00114{transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);}
.m62_c00114{transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);}
.m23_c00114{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m68_c00114{transform:matrix(0.275603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275603,0.000000,0.000000,0.250000,0,0);}
.m8b_c00114{transform:matrix(0.275788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275788,0.000000,0.000000,0.250000,0,0);}
.m7_c00114{transform:matrix(0.275973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275973,0.000000,0.000000,0.250000,0,0);}
.m98_c00114{transform:matrix(0.276973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276973,0.000000,0.000000,0.250000,0,0);}
.m93_c00114{transform:matrix(0.278481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278481,0.000000,0.000000,0.250000,0,0);}
.m56_c00114{transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);}
.m70_c00114{transform:matrix(0.280767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280767,0.000000,0.000000,0.250000,0,0);}
.m47_c00114{transform:matrix(0.281173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281173,0.000000,0.000000,0.250000,0,0);}
.m6_c00114{transform:matrix(0.281539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281539,0.000000,0.000000,0.250000,0,0);}
.m3e_c00114{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.m8f_c00114{transform:matrix(0.282754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282754,0.000000,0.000000,0.250000,0,0);}
.m83_c00114{transform:matrix(0.283000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00114{transform:matrix(0.283069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283069,0.000000,0.000000,0.250000,0,0);}
.m9_c00114{transform:matrix(0.283405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283405,0.000000,0.000000,0.250000,0,0);}
.m24_c00114{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m55_c00114{transform:matrix(0.284167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284167,0.000000,0.000000,0.250000,0,0);}
.m17_c00114{transform:matrix(0.284665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284665,0.000000,0.000000,0.250000,0,0);}
.m7b_c00114{transform:matrix(0.285299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285299,0.000000,0.000000,0.250000,0,0);}
.m3f_c00114{transform:matrix(0.285554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285554,0.000000,0.000000,0.250000,0,0);}
.m52_c00114{transform:matrix(0.285662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285662,0.000000,0.000000,0.250000,0,0);}
.m8c_c00114{transform:matrix(0.285693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285693,0.000000,0.000000,0.250000,0,0);}
.m85_c00114{transform:matrix(0.285777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285777,0.000000,0.000000,0.250000,0,0);}
.m97_c00114{transform:matrix(0.286214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286214,0.000000,0.000000,0.250000,0,0);}
.m89_c00114{transform:matrix(0.287631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287631,0.000000,0.000000,0.250000,0,0);}
.m4_c00114{transform:matrix(0.287733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287733,0.000000,0.000000,0.250000,0,0);}
.m1f_c00114{transform:matrix(0.288623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288623,0.000000,0.000000,0.250000,0,0);}
.m8d_c00114{transform:matrix(0.288946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288946,0.000000,0.000000,0.250000,0,0);}
.m43_c00114{transform:matrix(0.289122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289122,0.000000,0.000000,0.250000,0,0);}
.m9c_c00114{transform:matrix(0.289806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289806,0.000000,0.000000,0.250000,0,0);}
.m20_c00114{transform:matrix(0.290054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290054,0.000000,0.000000,0.250000,0,0);}
.m58_c00114{transform:matrix(0.291561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291561,0.000000,0.000000,0.250000,0,0);}
.m3c_c00114{transform:matrix(0.291725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291725,0.000000,0.000000,0.250000,0,0);}
.m94_c00114{transform:matrix(0.291828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291828,0.000000,0.000000,0.250000,0,0);}
.m2b_c00114{transform:matrix(0.292042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292042,0.000000,0.000000,0.250000,0,0);}
.m38_c00114{transform:matrix(0.292385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292385,0.000000,0.000000,0.250000,0,0);}
.ma_c00114{transform:matrix(0.292443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292443,0.000000,0.000000,0.250000,0,0);}
.m22_c00114{transform:matrix(0.292727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292727,0.000000,0.000000,0.250000,0,0);}
.m3b_c00114{transform:matrix(0.292992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292992,0.000000,0.000000,0.250000,0,0);}
.m7a_c00114{transform:matrix(0.293201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293201,0.000000,0.000000,0.250000,0,0);}
.m64_c00114{transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);}
.m53_c00114{transform:matrix(0.295782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295782,0.000000,0.000000,0.250000,0,0);}
.m95_c00114{transform:matrix(0.296723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296723,0.000000,0.000000,0.250000,0,0);}
.m4b_c00114{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m48_c00114{transform:matrix(0.299245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299245,0.000000,0.000000,0.250000,0,0);}
.m78_c00114{transform:matrix(0.300336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300336,0.000000,0.000000,0.250000,0,0);}
.m76_c00114{transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);}
.m7e_c00114{transform:matrix(0.300727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300727,0.000000,0.000000,0.250000,0,0);}
.m2d_c00114{transform:matrix(0.300959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300959,0.000000,0.000000,0.250000,0,0);}
.m79_c00114{transform:matrix(0.301610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301610,0.000000,0.000000,0.250000,0,0);}
.m28_c00114{transform:matrix(0.301814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301814,0.000000,0.000000,0.250000,0,0);}
.m35_c00114{transform:matrix(0.302049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302049,0.000000,0.000000,0.250000,0,0);}
.m91_c00114{transform:matrix(0.302388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302388,0.000000,0.000000,0.250000,0,0);}
.m16_c00114{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m19_c00114{transform:matrix(0.302658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302658,0.000000,0.000000,0.250000,0,0);}
.mc_c00114{transform:matrix(0.303298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303298,0.000000,0.000000,0.250000,0,0);}
.m86_c00114{transform:matrix(0.305132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305132,0.000000,0.000000,0.250000,0,0);}
.m8a_c00114{transform:matrix(0.306204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306204,0.000000,0.000000,0.250000,0,0);}
.m77_c00114{transform:matrix(0.306426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306426,0.000000,0.000000,0.250000,0,0);}
.m63_c00114{transform:matrix(0.307511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307511,0.000000,0.000000,0.250000,0,0);}
.m26_c00114{transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);}
.m18_c00114{transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);}
.m74_c00114{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m4c_c00114{transform:matrix(0.310441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310441,0.000000,0.000000,0.250000,0,0);}
.m37_c00114{transform:matrix(0.311404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311404,0.000000,0.000000,0.250000,0,0);}
.m3d_c00114{transform:matrix(0.311880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311880,0.000000,0.000000,0.250000,0,0);}
.m30_c00114{transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);}
.m34_c00114{transform:matrix(0.312852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312852,0.000000,0.000000,0.250000,0,0);}
.m10_c00114{transform:matrix(0.313301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313301,0.000000,0.000000,0.250000,0,0);}
.mf_c00114{transform:matrix(0.313444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313444,0.000000,0.000000,0.250000,0,0);}
.m49_c00114{transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);}
.m71_c00114{transform:matrix(0.314400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314400,0.000000,0.000000,0.250000,0,0);}
.m8e_c00114{transform:matrix(0.314510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314510,0.000000,0.000000,0.250000,0,0);}
.m5d_c00114{transform:matrix(0.314594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314594,0.000000,0.000000,0.250000,0,0);}
.m88_c00114{transform:matrix(0.315439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315439,0.000000,0.000000,0.250000,0,0);}
.m6a_c00114{transform:matrix(0.315813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315813,0.000000,0.000000,0.250000,0,0);}
.m9a_c00114{transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);}
.m12_c00114{transform:matrix(0.317069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317069,0.000000,0.000000,0.250000,0,0);}
.m4e_c00114{transform:matrix(0.317506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317506,0.000000,0.000000,0.250000,0,0);}
.m60_c00114{transform:matrix(0.319176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319176,0.000000,0.000000,0.250000,0,0);}
.m99_c00114{transform:matrix(0.319227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319227,0.000000,0.000000,0.250000,0,0);}
.m21_c00114{transform:matrix(0.319330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319330,0.000000,0.000000,0.250000,0,0);}
.m80_c00114{transform:matrix(0.319369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319369,0.000000,0.000000,0.250000,0,0);}
.m2e_c00114{transform:matrix(0.319462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319462,0.000000,0.000000,0.250000,0,0);}
.m82_c00114{transform:matrix(0.321440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321440,0.000000,0.000000,0.250000,0,0);}
.m41_c00114{transform:matrix(0.321629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321629,0.000000,0.000000,0.250000,0,0);}
.m2f_c00114{transform:matrix(0.321713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321713,0.000000,0.000000,0.250000,0,0);}
.m67_c00114{transform:matrix(0.323216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323216,0.000000,0.000000,0.250000,0,0);}
.m1c_c00114{transform:matrix(0.323414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323414,0.000000,0.000000,0.250000,0,0);}
.m66_c00114{transform:matrix(0.323501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323501,0.000000,0.000000,0.250000,0,0);}
.m59_c00114{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.m44_c00114{transform:matrix(0.323953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323953,0.000000,0.000000,0.250000,0,0);}
.m6e_c00114{transform:matrix(0.324174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324174,0.000000,0.000000,0.250000,0,0);}
.m5_c00114{transform:matrix(0.324242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324242,0.000000,0.000000,0.250000,0,0);}
.m73_c00114{transform:matrix(0.324254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324254,0.000000,0.000000,0.250000,0,0);}
.m4a_c00114{transform:matrix(0.325337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325337,0.000000,0.000000,0.250000,0,0);}
.m6d_c00114{transform:matrix(0.325528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325528,0.000000,0.000000,0.250000,0,0);}
.m61_c00114{transform:matrix(0.326888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326888,0.000000,0.000000,0.250000,0,0);}
.m31_c00114{transform:matrix(0.327126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327126,0.000000,0.000000,0.250000,0,0);}
.m45_c00114{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.m1b_c00114{transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);}
.m2_c00114{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m1d_c00114{transform:matrix(0.333713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333713,0.000000,0.000000,0.250000,0,0);}
.m6c_c00114{transform:matrix(0.334105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334105,0.000000,0.000000,0.250000,0,0);}
.m2c_c00114{transform:matrix(0.336022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336022,0.000000,0.000000,0.250000,0,0);}
.me_c00114{transform:matrix(0.337385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337385,0.000000,0.000000,0.250000,0,0);}
.m69_c00114{transform:matrix(0.338858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338858,0.000000,0.000000,0.250000,0,0);}
.m13_c00114{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m6f_c00114{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.m8_c00114{transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);}
.m50_c00114{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m27_c00114{transform:matrix(0.352320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352320,0.000000,0.000000,0.250000,0,0);}
.m4d_c00114{transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);}
.m54_c00114{transform:matrix(0.359210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359210,0.000000,0.000000,0.250000,0,0);}
.m90_c00114{transform:matrix(0.368506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368506,0.000000,0.000000,0.250000,0,0);}
.m11_c00114{transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);}
.m2a_c00114{transform:matrix(0.428522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428522,0.000000,0.000000,0.250000,0,0);}
.v0_c00114{vertical-align:0.000000px;}
.ls5_c00114{letter-spacing:-2.744280px;}
.ls9_c00114{letter-spacing:-2.375762px;}
.lsd_c00114{letter-spacing:-1.897474px;}
.ls1_c00114{letter-spacing:0.000000px;}
.ls10_c00114{letter-spacing:0.258746px;}
.ls4_c00114{letter-spacing:1.301573px;}
.ls11_c00114{letter-spacing:2.893255px;}
.ls13_c00114{letter-spacing:3.018708px;}
.ls12_c00114{letter-spacing:3.112798px;}
.ls6_c00114{letter-spacing:3.247200px;}
.ls0_c00114{letter-spacing:3.653813px;}
.ls2_c00114{letter-spacing:3.722400px;}
.ls7_c00114{letter-spacing:3.732310px;}
.ls8_c00114{letter-spacing:3.912559px;}
.ls3_c00114{letter-spacing:3.920400px;}
.lsb_c00114{letter-spacing:3.960000px;}
.lsf_c00114{letter-spacing:4.118400px;}
.lsa_c00114{letter-spacing:4.455000px;}
.lse_c00114{letter-spacing:52.747398px;}
.lsc_c00114{letter-spacing:54.172998px;}
.sc__c00114{text-shadow:none;}
.sc0_c00114{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00114{-webkit-text-stroke:0px transparent;}
.sc0_c00114{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00114{word-spacing:-19.602000px;}
.ws2_c00114{word-spacing:0.000000px;}
.ws1_c00114{word-spacing:34.341912px;}
._4_c00114{margin-left:-7.444800px;}
._3_c00114{width:7.213536px;}
._0_c00114{width:8.703288px;}
._2_c00114{width:24.855336px;}
._1_c00114{width:39.158460px;}
.fc0_c00114{color:transparent;}
.fs1_c00114{font-size:22.176000px;}
.fs2_c00114{font-size:27.720000px;}
.fs12_c00114{font-size:34.650000px;}
.fs6_c00114{font-size:39.600000px;}
.fs13_c00114{font-size:43.560000px;}
.fs11_c00114{font-size:50.688000px;}
.fse_c00114{font-size:52.747398px;}
.fsd_c00114{font-size:54.172998px;}
.fsb_c00114{font-size:62.568000px;}
.fs5_c00114{font-size:64.944000px;}
.fs4_c00114{font-size:66.330000px;}
.fs10_c00114{font-size:70.884000px;}
.fs0_c00114{font-size:74.448000px;}
.fs8_c00114{font-size:74.646198px;}
.fsc_c00114{font-size:76.032198px;}
.fs3_c00114{font-size:78.408000px;}
.fs7_c00114{font-size:78.804000px;}
.fsa_c00114{font-size:79.200000px;}
.fsf_c00114{font-size:82.368000px;}
.fs9_c00114{font-size:89.100000px;}
.y0_c00114{bottom:0.000000px;}
.y22_c00114{bottom:25.572735px;}
.y21_c00114{bottom:51.941385px;}
.y1_c00114{bottom:76.500000px;}
.y20_c00114{bottom:122.869935px;}
.y1f_c00114{bottom:147.456585px;}
.y1e_c00114{bottom:195.570585px;}
.y1d_c00114{bottom:211.969935px;}
.y1c_c00114{bottom:245.466585px;}
.y1b_c00114{bottom:278.255385px;}
.y1a_c00114{bottom:309.623535px;}
.y19_c00114{bottom:342.050985px;}
.y18_c00114{bottom:374.488335px;}
.y17_c00114{bottom:406.920735px;}
.y16_c00114{bottom:440.422335px;}
.y15_c00114{bottom:472.498335px;}
.y14_c00114{bottom:506.356335px;}
.y13_c00114{bottom:529.522335px;}
.y12_c00114{bottom:563.380335px;}
.y11_c00114{bottom:571.221135px;}
.y10_c00114{bottom:603.297135px;}
.yf_c00114{bottom:636.085935px;}
.ye_c00114{bottom:648.911385px;}
.yd_c00114{bottom:667.800585px;}
.yc_c00114{bottom:700.945785px;}
.yb_c00114{bottom:733.378185px;}
.ya_c00114{bottom:765.810585px;}
.y9_c00114{bottom:831.036735px;}
.y8_c00114{bottom:859.192335px;}
.y7_c00114{bottom:864.533385px;}
.y6_c00114{bottom:898.752735px;}
.y5_c00114{bottom:933.323535px;}
.y4_c00114{bottom:967.889385px;}
.y3_c00114{bottom:1038.100185px;}
.y2_c00114{bottom:1083.006585px;}
.h3_c00114{height:23.128875px;}
.h4_c00114{height:28.911094px;}
.h10_c00114{height:35.129767px;}
.hf_c00114{height:36.079217px;}
.h8_c00114{height:41.301563px;}
.h14_c00114{height:42.751758px;}
.h13_c00114{height:52.866000px;}
.hd_c00114{height:65.256469px;}
.h7_c00114{height:67.734563px;}
.h6_c00114{height:69.180117px;}
.h12_c00114{height:69.568770px;}
.h2_c00114{height:73.066641px;}
.ha_c00114{height:75.229371px;}
.h5_c00114{height:76.953164px;}
.h9_c00114{height:77.341816px;}
.hc_c00114{height:77.730469px;}
.he_c00114{height:79.299207px;}
.h11_c00114{height:80.839688px;}
.hb_c00114{height:87.446777px;}
.h1_c00114{height:1110.000000px;}
.h0_c00114{height:1263.000000px;}
.w1_c00114{width:733.500000px;}
.w0_c00114{width:892.500000px;}
.x0_c00114{left:0.000000px;}
.x19_c00114{left:64.210935px;}
.xf_c00114{left:73.012035px;}
.x21_c00114{left:74.071335px;}
.x6_c00114{left:75.640485px;}
.x1_c00114{left:79.500000px;}
.x38_c00114{left:106.607685px;}
.x7_c00114{left:108.478785px;}
.x55_c00114{left:119.022285px;}
.x10_c00114{left:128.278785px;}
.x42_c00114{left:129.313335px;}
.x56_c00114{left:130.570635px;}
.x4e_c00114{left:139.668735px;}
.x3f_c00114{left:141.272535px;}
.x40_c00114{left:150.949785px;}
.x2a_c00114{left:152.162535px;}
.x22_c00114{left:162.661485px;}
.x1a_c00114{left:173.501985px;}
.x46_c00114{left:184.387035px;}
.x1b_c00114{left:196.811535px;}
.x8_c00114{left:206.330385px;}
.x4f_c00114{left:207.582735px;}
.x23_c00114{left:218.245035px;}
.x4b_c00114{left:220.962585px;}
.x1c_c00114{left:229.318185px;}
.x3c_c00114{left:240.722985px;}
.x39_c00114{left:250.880385px;}
.x11_c00114{left:263.225685px;}
.x32_c00114{left:264.898785px;}
.x12_c00114{left:272.977185px;}
.x49_c00114{left:274.110735px;}
.x2e_c00114{left:284.377035px;}
.x2b_c00114{left:285.639285px;}
.x13_c00114{left:296.687685px;}
.x24_c00114{left:306.652035px;}
.x4a_c00114{left:317.561835px;}
.x9_c00114{left:319.423035px;}
.x25_c00114{left:329.120085px;}
.x50_c00114{left:332.278185px;}
.x14_c00114{left:340.524885px;}
.x53_c00114{left:351.726735px;}
.x52_c00114{left:354.082935px;}
.x26_c00114{left:362.854335px;}
.xa_c00114{left:374.269035px;}
.x43_c00114{left:383.852235px;}
.x15_c00114{left:386.059935px;}
.x3d_c00114{left:396.123285px;}
.x47_c00114{left:407.028135px;}
.x5_c00114{left:408.339885px;}
.x51_c00114{left:418.452735px;}
.x2c_c00114{left:429.570435px;}
.x33_c00114{left:439.772385px;}
.x3e_c00114{left:440.900985px;}
.x1d_c00114{left:451.721685px;}
.x57_c00114{left:463.814535px;}
.x4_c00114{left:468.952635px;}
.x2f_c00114{left:472.546335px;}
.x16_c00114{left:474.808485px;}
.x48_c00114{left:484.510485px;}
.xb_c00114{left:486.262785px;}
.x58_c00114{left:495.964785px;}
.x20_c00114{left:497.662635px;}
.x41_c00114{left:501.385035px;}
.x54_c00114{left:506.409285px;}
.x17_c00114{left:507.636885px;}
.x3a_c00114{left:518.348685px;}
.x27_c00114{left:530.015835px;}
.x2d_c00114{left:539.549535px;}
.x44_c00114{left:540.831585px;}
.x4c_c00114{left:552.181935px;}
.x3b_c00114{left:562.210635px;}
.x28_c00114{left:563.606535px;}
.x1e_c00114{left:573.615435px;}
.x30_c00114{left:585.351885px;}
.xc_c00114{left:595.835985px;}
.x1f_c00114{left:606.735885px;}
.x31_c00114{left:617.017035px;}
.xd_c00114{left:618.784185px;}
.x29_c00114{left:629.030685px;}
.x34_c00114{left:638.678235px;}
.xe_c00114{left:650.756235px;}
.x2_c00114{left:652.003635px;}
.x3_c00114{left:663.284685px;}
.x35_c00114{left:673.412385px;}
.x18_c00114{left:684.396435px;}
.x4d_c00114{left:685.797285px;}
.x37_c00114{left:692.826285px;}
.x45_c00114{left:695.840835px;}
.x36_c00114{left:706.517985px;}
@media print{
.v0_c00114{vertical-align:0.000000pt;}
.ls5_c00114{letter-spacing:-2.439360pt;}
.ls9_c00114{letter-spacing:-2.111789pt;}
.lsd_c00114{letter-spacing:-1.686643pt;}
.ls1_c00114{letter-spacing:0.000000pt;}
.ls10_c00114{letter-spacing:0.229997pt;}
.ls4_c00114{letter-spacing:1.156954pt;}
.ls11_c00114{letter-spacing:2.571782pt;}
.ls13_c00114{letter-spacing:2.683296pt;}
.ls12_c00114{letter-spacing:2.766931pt;}
.ls6_c00114{letter-spacing:2.886400pt;}
.ls0_c00114{letter-spacing:3.247834pt;}
.ls2_c00114{letter-spacing:3.308800pt;}
.ls7_c00114{letter-spacing:3.317609pt;}
.ls8_c00114{letter-spacing:3.477830pt;}
.ls3_c00114{letter-spacing:3.484800pt;}
.lsb_c00114{letter-spacing:3.520000pt;}
.lsf_c00114{letter-spacing:3.660800pt;}
.lsa_c00114{letter-spacing:3.960000pt;}
.lse_c00114{letter-spacing:46.886576pt;}
.lsc_c00114{letter-spacing:48.153776pt;}
.ws0_c00114{word-spacing:-17.424000pt;}
.ws2_c00114{word-spacing:0.000000pt;}
.ws1_c00114{word-spacing:30.526144pt;}
._4_c00114{margin-left:-6.617600pt;}
._3_c00114{width:6.412032pt;}
._0_c00114{width:7.736256pt;}
._2_c00114{width:22.093632pt;}
._1_c00114{width:34.807520pt;}
.fs1_c00114{font-size:19.712000pt;}
.fs2_c00114{font-size:24.640000pt;}
.fs12_c00114{font-size:30.800000pt;}
.fs6_c00114{font-size:35.200000pt;}
.fs13_c00114{font-size:38.720000pt;}
.fs11_c00114{font-size:45.056000pt;}
.fse_c00114{font-size:46.886576pt;}
.fsd_c00114{font-size:48.153776pt;}
.fsb_c00114{font-size:55.616000pt;}
.fs5_c00114{font-size:57.728000pt;}
.fs4_c00114{font-size:58.960000pt;}
.fs10_c00114{font-size:63.008000pt;}
.fs0_c00114{font-size:66.176000pt;}
.fs8_c00114{font-size:66.352176pt;}
.fsc_c00114{font-size:67.584176pt;}
.fs3_c00114{font-size:69.696000pt;}
.fs7_c00114{font-size:70.048000pt;}
.fsa_c00114{font-size:70.400000pt;}
.fsf_c00114{font-size:73.216000pt;}
.fs9_c00114{font-size:79.200000pt;}
.y0_c00114{bottom:0.000000pt;}
.y22_c00114{bottom:22.731320pt;}
.y21_c00114{bottom:46.170120pt;}
.y1_c00114{bottom:68.000000pt;}
.y20_c00114{bottom:109.217720pt;}
.y1f_c00114{bottom:131.072520pt;}
.y1e_c00114{bottom:173.840520pt;}
.y1d_c00114{bottom:188.417720pt;}
.y1c_c00114{bottom:218.192520pt;}
.y1b_c00114{bottom:247.338120pt;}
.y1a_c00114{bottom:275.220920pt;}
.y19_c00114{bottom:304.045320pt;}
.y18_c00114{bottom:332.878520pt;}
.y17_c00114{bottom:361.707320pt;}
.y16_c00114{bottom:391.486520pt;}
.y15_c00114{bottom:419.998520pt;}
.y14_c00114{bottom:450.094520pt;}
.y13_c00114{bottom:470.686520pt;}
.y12_c00114{bottom:500.782520pt;}
.y11_c00114{bottom:507.752120pt;}
.y10_c00114{bottom:536.264120pt;}
.yf_c00114{bottom:565.409720pt;}
.ye_c00114{bottom:576.810120pt;}
.yd_c00114{bottom:593.600520pt;}
.yc_c00114{bottom:623.062920pt;}
.yb_c00114{bottom:651.891720pt;}
.ya_c00114{bottom:680.720520pt;}
.y9_c00114{bottom:738.699320pt;}
.y8_c00114{bottom:763.726520pt;}
.y7_c00114{bottom:768.474120pt;}
.y6_c00114{bottom:798.891320pt;}
.y5_c00114{bottom:829.620920pt;}
.y4_c00114{bottom:860.346120pt;}
.y3_c00114{bottom:922.755720pt;}
.y2_c00114{bottom:962.672520pt;}
.h3_c00114{height:20.559000pt;}
.h4_c00114{height:25.698750pt;}
.h10_c00114{height:31.226460pt;}
.hf_c00114{height:32.070415pt;}
.h8_c00114{height:36.712500pt;}
.h14_c00114{height:38.001563pt;}
.h13_c00114{height:46.992000pt;}
.hd_c00114{height:58.005750pt;}
.h7_c00114{height:60.208500pt;}
.h6_c00114{height:61.493438pt;}
.h12_c00114{height:61.838906pt;}
.h2_c00114{height:64.948125pt;}
.ha_c00114{height:66.870552pt;}
.h5_c00114{height:68.402813pt;}
.h9_c00114{height:68.748281pt;}
.hc_c00114{height:69.093750pt;}
.he_c00114{height:70.488184pt;}
.h11_c00114{height:71.857500pt;}
.hb_c00114{height:77.730469pt;}
.h1_c00114{height:986.666667pt;}
.h0_c00114{height:1122.666667pt;}
.w1_c00114{width:652.000000pt;}
.w0_c00114{width:793.333333pt;}
.x0_c00114{left:0.000000pt;}
.x19_c00114{left:57.076387pt;}
.xf_c00114{left:64.899587pt;}
.x21_c00114{left:65.841187pt;}
.x6_c00114{left:67.235987pt;}
.x1_c00114{left:70.666667pt;}
.x38_c00114{left:94.762387pt;}
.x7_c00114{left:96.425587pt;}
.x55_c00114{left:105.797587pt;}
.x10_c00114{left:114.025587pt;}
.x42_c00114{left:114.945187pt;}
.x56_c00114{left:116.062787pt;}
.x4e_c00114{left:124.149987pt;}
.x3f_c00114{left:125.575587pt;}
.x40_c00114{left:134.177587pt;}
.x2a_c00114{left:135.255587pt;}
.x22_c00114{left:144.587987pt;}
.x1a_c00114{left:154.223987pt;}
.x46_c00114{left:163.899587pt;}
.x1b_c00114{left:174.943587pt;}
.x8_c00114{left:183.404787pt;}
.x4f_c00114{left:184.517987pt;}
.x23_c00114{left:193.995587pt;}
.x4b_c00114{left:196.411187pt;}
.x1c_c00114{left:203.838387pt;}
.x3c_c00114{left:213.975987pt;}
.x39_c00114{left:223.004787pt;}
.x11_c00114{left:233.978387pt;}
.x32_c00114{left:235.465587pt;}
.x12_c00114{left:242.646387pt;}
.x49_c00114{left:243.653987pt;}
.x2e_c00114{left:252.779587pt;}
.x2b_c00114{left:253.901587pt;}
.x13_c00114{left:263.722387pt;}
.x24_c00114{left:272.579587pt;}
.x4a_c00114{left:282.277187pt;}
.x9_c00114{left:283.931587pt;}
.x25_c00114{left:292.551187pt;}
.x50_c00114{left:295.358387pt;}
.x14_c00114{left:302.688787pt;}
.x53_c00114{left:312.645987pt;}
.x52_c00114{left:314.740387pt;}
.x26_c00114{left:322.537187pt;}
.xa_c00114{left:332.683587pt;}
.x43_c00114{left:341.201987pt;}
.x15_c00114{left:343.164387pt;}
.x3d_c00114{left:352.109587pt;}
.x47_c00114{left:361.802787pt;}
.x5_c00114{left:362.968787pt;}
.x51_c00114{left:371.957987pt;}
.x2c_c00114{left:381.840387pt;}
.x33_c00114{left:390.908787pt;}
.x3e_c00114{left:391.911987pt;}
.x1d_c00114{left:401.530387pt;}
.x57_c00114{left:412.279587pt;}
.x4_c00114{left:416.846787pt;}
.x2f_c00114{left:420.041187pt;}
.x16_c00114{left:422.051987pt;}
.x48_c00114{left:430.675987pt;}
.xb_c00114{left:432.233587pt;}
.x58_c00114{left:440.857587pt;}
.x20_c00114{left:442.366787pt;}
.x41_c00114{left:445.675587pt;}
.x54_c00114{left:450.141587pt;}
.x17_c00114{left:451.232787pt;}
.x3a_c00114{left:460.754387pt;}
.x27_c00114{left:471.125187pt;}
.x2d_c00114{left:479.599587pt;}
.x44_c00114{left:480.739187pt;}
.x4c_c00114{left:490.828387pt;}
.x3b_c00114{left:499.742787pt;}
.x28_c00114{left:500.983587pt;}
.x1e_c00114{left:509.880387pt;}
.x30_c00114{left:520.312787pt;}
.xc_c00114{left:529.631987pt;}
.x1f_c00114{left:539.320787pt;}
.x31_c00114{left:548.459587pt;}
.xd_c00114{left:550.030387pt;}
.x29_c00114{left:559.138387pt;}
.x34_c00114{left:567.713987pt;}
.xe_c00114{left:578.449987pt;}
.x2_c00114{left:579.558787pt;}
.x3_c00114{left:589.586387pt;}
.x35_c00114{left:598.588787pt;}
.x18_c00114{left:608.352387pt;}
.x4d_c00114{left:609.597587pt;}
.x37_c00114{left:615.845587pt;}
.x45_c00114{left:618.525187pt;}
.x36_c00114{left:628.015987pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eb22a71728fd742f903f1e5e.woff2')format("woff");}.ff1_c00115{font-family:ff1_c00115;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00115;src:url('chunks/assets/font_bf8691e9c97e681ea845e576.woff2')format("woff");}.ff2_c00115{font-family:ff2_c00115;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00115;src:url('chunks/assets/font_790dd6f0a8ef350e79a1e6fd.woff2')format("woff");}.ff3_c00115{font-family:ff3_c00115;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00115;src:url('chunks/assets/font_a14855debd0026023b3629b1.woff2')format("woff");}.ff4_c00115{font-family:ff4_c00115;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00115;src:url('chunks/assets/font_4642a042f8c16f9e416e70aa.woff2')format("woff");}.ff5_c00115{font-family:ff5_c00115;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00115;src:url('chunks/assets/font_7f8c87dbb0444dd977f49b44.woff2')format("woff");}.ff6_c00115{font-family:ff6_c00115;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m20_c00115{transform:matrix(0.146960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146960,0.000000,0.000000,0.250000,0,0);}
.m21_c00115{transform:matrix(0.162162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162162,0.000000,0.000000,0.250000,0,0);}
.m93_c00115{transform:matrix(0.167073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167073,0.000000,0.000000,0.250000,0,0);}
.ma8_c00115{transform:matrix(0.179563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179563,0.000000,0.000000,0.250000,0,0);}
.m22_c00115{transform:matrix(0.189188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189188,0.000000,0.000000,0.250000,0,0);}
.mb9_c00115{transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);}
.m26_c00115{transform:matrix(0.234722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234722,0.000000,0.000000,0.250000,0,0);}
.ma3_c00115{transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);}
.m2_c00115{transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);}
.m0_c00115{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m42_c00115{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.m76_c00115{transform:matrix(0.252233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252233,0.000000,0.000000,0.250000,0,0);}
.m46_c00115{transform:matrix(0.252830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252830,0.000000,0.000000,0.250000,0,0);}
.m9f_c00115{transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);}
.m7c_c00115{transform:matrix(0.257917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257917,0.000000,0.000000,0.250000,0,0);}
.mb1_c00115{transform:matrix(0.258788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258788,0.000000,0.000000,0.250000,0,0);}
.m3a_c00115{transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);}
.m6b_c00115{transform:matrix(0.260228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260228,0.000000,0.000000,0.250000,0,0);}
.m3d_c00115{transform:matrix(0.260834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260834,0.000000,0.000000,0.250000,0,0);}
.m1b_c00115{transform:matrix(0.261624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261624,0.000000,0.000000,0.250000,0,0);}
.m47_c00115{transform:matrix(0.261836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261836,0.000000,0.000000,0.250000,0,0);}
.mc_c00115{transform:matrix(0.262649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262649,0.000000,0.000000,0.250000,0,0);}
.m1f_c00115{transform:matrix(0.263039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263039,0.000000,0.000000,0.250000,0,0);}
.m35_c00115{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m50_c00115{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m74_c00115{transform:matrix(0.264128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264128,0.000000,0.000000,0.250000,0,0);}
.m15_c00115{transform:matrix(0.265880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265880,0.000000,0.000000,0.250000,0,0);}
.m43_c00115{transform:matrix(0.266174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266174,0.000000,0.000000,0.250000,0,0);}
.m5c_c00115{transform:matrix(0.266179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266179,0.000000,0.000000,0.250000,0,0);}
.m4d_c00115{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m2e_c00115{transform:matrix(0.266295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266295,0.000000,0.000000,0.250000,0,0);}
.m82_c00115{transform:matrix(0.266660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266660,0.000000,0.000000,0.250000,0,0);}
.m5a_c00115{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.m8c_c00115{transform:matrix(0.267040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267040,0.000000,0.000000,0.250000,0,0);}
.m1d_c00115{transform:matrix(0.267255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267255,0.000000,0.000000,0.250000,0,0);}
.m9_c00115{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m6a_c00115{transform:matrix(0.268624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268624,0.000000,0.000000,0.250000,0,0);}
.m9d_c00115{transform:matrix(0.268694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268694,0.000000,0.000000,0.250000,0,0);}
.m8e_c00115{transform:matrix(0.269403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269403,0.000000,0.000000,0.250000,0,0);}
.m4b_c00115{transform:matrix(0.269871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269871,0.000000,0.000000,0.250000,0,0);}
.m36_c00115{transform:matrix(0.270327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270327,0.000000,0.000000,0.250000,0,0);}
.m30_c00115{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m24_c00115{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m62_c00115{transform:matrix(0.272825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272825,0.000000,0.000000,0.250000,0,0);}
.mb2_c00115{transform:matrix(0.273113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273113,0.000000,0.000000,0.250000,0,0);}
.m3f_c00115{transform:matrix(0.275040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275040,0.000000,0.000000,0.250000,0,0);}
.m86_c00115{transform:matrix(0.276800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276800,0.000000,0.000000,0.250000,0,0);}
.m96_c00115{transform:matrix(0.276926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276926,0.000000,0.000000,0.250000,0,0);}
.m28_c00115{transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);}
.m85_c00115{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m70_c00115{transform:matrix(0.277235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277235,0.000000,0.000000,0.250000,0,0);}
.m87_c00115{transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);}
.ma1_c00115{transform:matrix(0.278133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278133,0.000000,0.000000,0.250000,0,0);}
.mb0_c00115{transform:matrix(0.278236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278236,0.000000,0.000000,0.250000,0,0);}
.m6e_c00115{transform:matrix(0.278522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278522,0.000000,0.000000,0.250000,0,0);}
.m55_c00115{transform:matrix(0.278623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278623,0.000000,0.000000,0.250000,0,0);}
.m32_c00115{transform:matrix(0.279178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279178,0.000000,0.000000,0.250000,0,0);}
.m67_c00115{transform:matrix(0.279390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279390,0.000000,0.000000,0.250000,0,0);}
.me_c00115{transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);}
.m3e_c00115{transform:matrix(0.279867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279867,0.000000,0.000000,0.250000,0,0);}
.m5f_c00115{transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);}
.m4a_c00115{transform:matrix(0.280024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280024,0.000000,0.000000,0.250000,0,0);}
.ma6_c00115{transform:matrix(0.280163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280163,0.000000,0.000000,0.250000,0,0);}
.ma7_c00115{transform:matrix(0.280247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280247,0.000000,0.000000,0.250000,0,0);}
.m8_c00115{transform:matrix(0.281334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281334,0.000000,0.000000,0.250000,0,0);}
.mb_c00115{transform:matrix(0.281489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281489,0.000000,0.000000,0.250000,0,0);}
.m14_c00115{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.m56_c00115{transform:matrix(0.282454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282454,0.000000,0.000000,0.250000,0,0);}
.m91_c00115{transform:matrix(0.282543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282543,0.000000,0.000000,0.250000,0,0);}
.m23_c00115{transform:matrix(0.282623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282623,0.000000,0.000000,0.250000,0,0);}
.m1_c00115{transform:matrix(0.283076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283076,0.000000,0.000000,0.250000,0,0);}
.m68_c00115{transform:matrix(0.283266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283266,0.000000,0.000000,0.250000,0,0);}
.m5d_c00115{transform:matrix(0.285632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285632,0.000000,0.000000,0.250000,0,0);}
.mb5_c00115{transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);}
.m37_c00115{transform:matrix(0.286764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286764,0.000000,0.000000,0.250000,0,0);}
.m2b_c00115{transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);}
.m1e_c00115{transform:matrix(0.287072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287072,0.000000,0.000000,0.250000,0,0);}
.mb4_c00115{transform:matrix(0.288256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288256,0.000000,0.000000,0.250000,0,0);}
.m58_c00115{transform:matrix(0.288481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288481,0.000000,0.000000,0.250000,0,0);}
.m25_c00115{transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);}
.m6c_c00115{transform:matrix(0.288778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288778,0.000000,0.000000,0.250000,0,0);}
.m54_c00115{transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);}
.m75_c00115{transform:matrix(0.289004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289004,0.000000,0.000000,0.250000,0,0);}
.m51_c00115{transform:matrix(0.289111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289111,0.000000,0.000000,0.250000,0,0);}
.m49_c00115{transform:matrix(0.289801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289801,0.000000,0.000000,0.250000,0,0);}
.m6f_c00115{transform:matrix(0.290194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290194,0.000000,0.000000,0.250000,0,0);}
.m8a_c00115{transform:matrix(0.291492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291492,0.000000,0.000000,0.250000,0,0);}
.m3b_c00115{transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);}
.m9b_c00115{transform:matrix(0.292520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292520,0.000000,0.000000,0.250000,0,0);}
.m72_c00115{transform:matrix(0.292528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292528,0.000000,0.000000,0.250000,0,0);}
.m13_c00115{transform:matrix(0.292545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292545,0.000000,0.000000,0.250000,0,0);}
.mbb_c00115{transform:matrix(0.293146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293146,0.000000,0.000000,0.250000,0,0);}
.m4f_c00115{transform:matrix(0.293210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293210,0.000000,0.000000,0.250000,0,0);}
.m1a_c00115{transform:matrix(0.293622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293622,0.000000,0.000000,0.250000,0,0);}
.m78_c00115{transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);}
.m38_c00115{transform:matrix(0.293745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293745,0.000000,0.000000,0.250000,0,0);}
.m98_c00115{transform:matrix(0.294705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294705,0.000000,0.000000,0.250000,0,0);}
.m7f_c00115{transform:matrix(0.295345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295345,0.000000,0.000000,0.250000,0,0);}
.m65_c00115{transform:matrix(0.296063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296063,0.000000,0.000000,0.250000,0,0);}
.m7e_c00115{transform:matrix(0.296112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296112,0.000000,0.000000,0.250000,0,0);}
.m90_c00115{transform:matrix(0.296654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296654,0.000000,0.000000,0.250000,0,0);}
.ma9_c00115{transform:matrix(0.297502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297502,0.000000,0.000000,0.250000,0,0);}
.mb7_c00115{transform:matrix(0.298290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298290,0.000000,0.000000,0.250000,0,0);}
.m27_c00115{transform:matrix(0.298934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298934,0.000000,0.000000,0.250000,0,0);}
.ma4_c00115{transform:matrix(0.299207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299207,0.000000,0.000000,0.250000,0,0);}
.ma2_c00115{transform:matrix(0.299763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299763,0.000000,0.000000,0.250000,0,0);}
.m3c_c00115{transform:matrix(0.300052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300052,0.000000,0.000000,0.250000,0,0);}
.m39_c00115{transform:matrix(0.300099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300099,0.000000,0.000000,0.250000,0,0);}
.m4_c00115{transform:matrix(0.300485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300485,0.000000,0.000000,0.250000,0,0);}
.m84_c00115{transform:matrix(0.300836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300836,0.000000,0.000000,0.250000,0,0);}
.m4c_c00115{transform:matrix(0.301223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301223,0.000000,0.000000,0.250000,0,0);}
.m53_c00115{transform:matrix(0.301475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301475,0.000000,0.000000,0.250000,0,0);}
.m7d_c00115{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m64_c00115{transform:matrix(0.303179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303179,0.000000,0.000000,0.250000,0,0);}
.m8b_c00115{transform:matrix(0.304295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304295,0.000000,0.000000,0.250000,0,0);}
.m94_c00115{transform:matrix(0.304610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304610,0.000000,0.000000,0.250000,0,0);}
.ma5_c00115{transform:matrix(0.305186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305186,0.000000,0.000000,0.250000,0,0);}
.m11_c00115{transform:matrix(0.305448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305448,0.000000,0.000000,0.250000,0,0);}
.md_c00115{transform:matrix(0.305499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305499,0.000000,0.000000,0.250000,0,0);}
.m48_c00115{transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);}
.m1c_c00115{transform:matrix(0.308375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308375,0.000000,0.000000,0.250000,0,0);}
.maa_c00115{transform:matrix(0.308602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308602,0.000000,0.000000,0.250000,0,0);}
.m34_c00115{transform:matrix(0.310598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310598,0.000000,0.000000,0.250000,0,0);}
.maf_c00115{transform:matrix(0.311225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311225,0.000000,0.000000,0.250000,0,0);}
.mb3_c00115{transform:matrix(0.311554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311554,0.000000,0.000000,0.250000,0,0);}
.m7_c00115{transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);}
.ma0_c00115{transform:matrix(0.312347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312347,0.000000,0.000000,0.250000,0,0);}
.mac_c00115{transform:matrix(0.314528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314528,0.000000,0.000000,0.250000,0,0);}
.m80_c00115{transform:matrix(0.314657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314657,0.000000,0.000000,0.250000,0,0);}
.m66_c00115{transform:matrix(0.314970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314970,0.000000,0.000000,0.250000,0,0);}
.m10_c00115{transform:matrix(0.315136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315136,0.000000,0.000000,0.250000,0,0);}
.m89_c00115{transform:matrix(0.315432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315432,0.000000,0.000000,0.250000,0,0);}
.m81_c00115{transform:matrix(0.317362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317362,0.000000,0.000000,0.250000,0,0);}
.m9c_c00115{transform:matrix(0.317996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317996,0.000000,0.000000,0.250000,0,0);}
.m18_c00115{transform:matrix(0.318241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318241,0.000000,0.000000,0.250000,0,0);}
.m92_c00115{transform:matrix(0.318283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318283,0.000000,0.000000,0.250000,0,0);}
.m99_c00115{transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);}
.ma_c00115{transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);}
.m63_c00115{transform:matrix(0.320018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320018,0.000000,0.000000,0.250000,0,0);}
.m41_c00115{transform:matrix(0.320757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320757,0.000000,0.000000,0.250000,0,0);}
.m16_c00115{transform:matrix(0.320919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320919,0.000000,0.000000,0.250000,0,0);}
.m88_c00115{transform:matrix(0.321213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321213,0.000000,0.000000,0.250000,0,0);}
.m4e_c00115{transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);}
.m29_c00115{transform:matrix(0.321835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321835,0.000000,0.000000,0.250000,0,0);}
.mb8_c00115{transform:matrix(0.322251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322251,0.000000,0.000000,0.250000,0,0);}
.m6_c00115{transform:matrix(0.322593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322593,0.000000,0.000000,0.250000,0,0);}
.mba_c00115{transform:matrix(0.323210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323210,0.000000,0.000000,0.250000,0,0);}
.m2d_c00115{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.m97_c00115{transform:matrix(0.324242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324242,0.000000,0.000000,0.250000,0,0);}
.m3_c00115{transform:matrix(0.324299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324299,0.000000,0.000000,0.250000,0,0);}
.m61_c00115{transform:matrix(0.324371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324371,0.000000,0.000000,0.250000,0,0);}
.mab_c00115{transform:matrix(0.325489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325489,0.000000,0.000000,0.250000,0,0);}
.m5b_c00115{transform:matrix(0.326185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326185,0.000000,0.000000,0.250000,0,0);}
.m2c_c00115{transform:matrix(0.326246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326246,0.000000,0.000000,0.250000,0,0);}
.m57_c00115{transform:matrix(0.327290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327290,0.000000,0.000000,0.250000,0,0);}
.m33_c00115{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.m44_c00115{transform:matrix(0.327806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327806,0.000000,0.000000,0.250000,0,0);}
.m8f_c00115{transform:matrix(0.330032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330032,0.000000,0.000000,0.250000,0,0);}
.m60_c00115{transform:matrix(0.331020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331020,0.000000,0.000000,0.250000,0,0);}
.m2f_c00115{transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);}
.m6d_c00115{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m77_c00115{transform:matrix(0.333988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333988,0.000000,0.000000,0.250000,0,0);}
.m17_c00115{transform:matrix(0.334620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334620,0.000000,0.000000,0.250000,0,0);}
.m9a_c00115{transform:matrix(0.335563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335563,0.000000,0.000000,0.250000,0,0);}
.m83_c00115{transform:matrix(0.336157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336157,0.000000,0.000000,0.250000,0,0);}
.m8d_c00115{transform:matrix(0.336348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336348,0.000000,0.000000,0.250000,0,0);}
.mae_c00115{transform:matrix(0.337511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337511,0.000000,0.000000,0.250000,0,0);}
.m69_c00115{transform:matrix(0.338582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338582,0.000000,0.000000,0.250000,0,0);}
.m79_c00115{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.mad_c00115{transform:matrix(0.342740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342740,0.000000,0.000000,0.250000,0,0);}
.m5_c00115{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.m5e_c00115{transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);}
.m95_c00115{transform:matrix(0.343872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343872,0.000000,0.000000,0.250000,0,0);}
.m31_c00115{transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);}
.m59_c00115{transform:matrix(0.346316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346316,0.000000,0.000000,0.250000,0,0);}
.m52_c00115{transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);}
.m7b_c00115{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m73_c00115{transform:matrix(0.351556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351556,0.000000,0.000000,0.250000,0,0);}
.m7a_c00115{transform:matrix(0.353129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353129,0.000000,0.000000,0.250000,0,0);}
.mb6_c00115{transform:matrix(0.355033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355033,0.000000,0.000000,0.250000,0,0);}
.m2a_c00115{transform:matrix(0.355222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355222,0.000000,0.000000,0.250000,0,0);}
.mf_c00115{transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);}
.m12_c00115{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m45_c00115{transform:matrix(0.355345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355345,0.000000,0.000000,0.250000,0,0);}
.m19_c00115{transform:matrix(0.368506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368506,0.000000,0.000000,0.250000,0,0);}
.m40_c00115{transform:matrix(0.372071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372071,0.000000,0.000000,0.250000,0,0);}
.m71_c00115{transform:matrix(0.383677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383677,0.000000,0.000000,0.250000,0,0);}
.m9e_c00115{transform:matrix(0.408030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408030,0.000000,0.000000,0.250000,0,0);}
.v1_c00115{vertical-align:-52.727400px;}
.v2_c00115{vertical-align:-9.979200px;}
.v0_c00115{vertical-align:0.000000px;}
.ls4_c00115{letter-spacing:-2.744280px;}
.ls8_c00115{letter-spacing:-2.375762px;}
.lsa_c00115{letter-spacing:-0.964418px;}
.ls2_c00115{letter-spacing:0.000000px;}
.ls5_c00115{letter-spacing:0.407722px;}
.ls9_c00115{letter-spacing:0.533174px;}
.lse_c00115{letter-spacing:1.246687px;}
.ls11_c00115{letter-spacing:1.732500px;}
.ls12_c00115{letter-spacing:3.112798px;}
.lsb_c00115{letter-spacing:3.643200px;}
.lsd_c00115{letter-spacing:3.702610px;}
.lsc_c00115{letter-spacing:3.755743px;}
.ls3_c00115{letter-spacing:3.920400px;}
.lsf_c00115{letter-spacing:4.158000px;}
.ls0_c00115{letter-spacing:7.088400px;}
.ls13_c00115{letter-spacing:48.470598px;}
.ls7_c00115{letter-spacing:51.321798px;}
.ls6_c00115{letter-spacing:52.747398px;}
.ls10_c00115{letter-spacing:58.449798px;}
.ls1_c00115{letter-spacing:851.193288px;}
.sc__c00115{text-shadow:none;}
.sc0_c00115{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00115{-webkit-text-stroke:0px transparent;}
.sc0_c00115{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00115{word-spacing:-19.602000px;}
.ws1_c00115{word-spacing:-18.637582px;}
.ws2_c00115{word-spacing:0.000000px;}
._b_c00115{margin-left:-3.450744px;}
._8_c00115{margin-left:-1.027541px;}
._d_c00115{width:4.626072px;}
._7_c00115{width:6.586272px;}
._6_c00115{width:7.919208px;}
._3_c00115{width:10.507068px;}
._5_c00115{width:11.918016px;}
._0_c00115{width:20.856528px;}
._2_c00115{width:22.267476px;}
._9_c00115{width:31.520016px;}
._4_c00115{width:41.085000px;}
._c_c00115{width:45.521784px;}
._1_c00115{width:86.407200px;}
._a_c00115{width:704.029480px;}
.fc0_c00115{color:transparent;}
.fse_c00115{font-size:13.464198px;}
.fs0_c00115{font-size:22.176000px;}
.fs3_c00115{font-size:25.344000px;}
.fsa_c00115{font-size:27.720000px;}
.fs16_c00115{font-size:28.314000px;}
.fs5_c00115{font-size:34.056198px;}
.fs14_c00115{font-size:34.650000px;}
.fsc_c00115{font-size:38.808000px;}
.fsb_c00115{font-size:39.600000px;}
.fs18_c00115{font-size:44.748000px;}
.fs15_c00115{font-size:48.470598px;}
.fs17_c00115{font-size:49.896198px;}
.fs6_c00115{font-size:51.321798px;}
.fs4_c00115{font-size:52.747398px;}
.fs13_c00115{font-size:58.449798px;}
.fs7_c00115{font-size:62.568000px;}
.fs11_c00115{font-size:63.162000px;}
.fs10_c00115{font-size:64.548000px;}
.fsd_c00115{font-size:72.864000px;}
.fsf_c00115{font-size:74.052198px;}
.fs1_c00115{font-size:78.408000px;}
.fs2_c00115{font-size:79.200000px;}
.fs12_c00115{font-size:83.160000px;}
.fs8_c00115{font-size:91.872198px;}
.fs9_c00115{font-size:124.740000px;}
.y0_c00115{bottom:0.000000px;}
.y2b_c00115{bottom:52.297785px;}
.y1_c00115{bottom:76.500000px;}
.y2a_c00115{bottom:79.740585px;}
.y29_c00115{bottom:116.098335px;}
.y28_c00115{bottom:129.285135px;}
.y27_c00115{bottom:175.255785px;}
.y26_c00115{bottom:185.239935px;}
.y25_c00115{bottom:218.023785px;}
.y24_c00115{bottom:249.748335px;}
.y22_c00115{bottom:282.532185px;}
.y23_c00115{bottom:287.883135px;}
.y21_c00115{bottom:314.613135px;}
.y20_c00115{bottom:346.327785px;}
.y1f_c00115{bottom:378.765135px;}
.y1e_c00115{bottom:410.836185px;}
.y1d_c00115{bottom:437.214735px;}
.y1c_c00115{bottom:443.273535px;}
.y3_c00115{bottom:474.634161px;}
.y1b_c00115{bottom:475.344585px;}
.y1a_c00115{bottom:506.707785px;}
.y19_c00115{bottom:514.909935px;}
.y18_c00115{bottom:540.214335px;}
.y17_c00115{bottom:548.055135px;}
.y15_c00115{bottom:572.646735px;}
.y16_c00115{bottom:585.472185px;}
.y14_c00115{bottom:605.074185px;}
.y2_c00115{bottom:613.627785px;}
.y13_c00115{bottom:636.798735px;}
.y12_c00115{bottom:668.869785px;}
.y11_c00115{bottom:700.945785px;}
.y10_c00115{bottom:733.383135px;}
.yf_c00115{bottom:765.454185px;}
.ye_c00115{bottom:782.566335px;}
.yd_c00115{bottom:795.035385px;}
.yc_c00115{bottom:797.886585px;}
.yb_c00115{bottom:830.318985px;}
.ya_c00115{bottom:856.697535px;}
.y9_c00115{bottom:862.756335px;}
.y7_c00115{bottom:863.107785px;}
.y8_c00115{bottom:873.799785px;}
.y6_c00115{bottom:895.188735px;}
.y5_c00115{bottom:927.977535px;}
.y4_c00115{bottom:1077.304185px;}
.he_c00115{height:14.042738px;}
.h2_c00115{height:23.128875px;}
.ha_c00115{height:28.911094px;}
.h15_c00115{height:29.530617px;}
.h14_c00115{height:32.281418px;}
.h7_c00115{height:34.180317px;}
.h5_c00115{height:35.129767px;}
.h6_c00115{height:35.519550px;}
.h13_c00115{height:36.138867px;}
.h12_c00115{height:38.927565px;}
.hc_c00115{height:40.475531px;}
.hb_c00115{height:41.301563px;}
.h16_c00115{height:52.040175px;}
.h8_c00115{height:65.256469px;}
.h10_c00115{height:67.321547px;}
.hd_c00115{height:71.512031px;}
.hf_c00115{height:72.678183px;}
.h3_c00115{height:76.953164px;}
.h4_c00115{height:82.603125px;}
.h11_c00115{height:83.809688px;}
.h9_c00115{height:90.167538px;}
.h1_c00115{height:1110.000000px;}
.h0_c00115{height:1263.000000px;}
.w1_c00115{width:733.500000px;}
.w0_c00115{width:892.500000px;}
.x0_c00115{left:0.000000px;}
.x2_c00115{left:44.123835px;}
.x3_c00115{left:59.447451px;}
.x3e_c00115{left:73.734735px;}
.x1e_c00115{left:74.784135px;}
.x5_c00115{left:76.442385px;}
.x1_c00115{left:79.500000px;}
.x2f_c00115{left:84.867285px;}
.x4d_c00115{left:106.573035px;}
.x36_c00115{left:108.132285px;}
.x10_c00115{left:119.720235px;}
.x54_c00115{left:129.704385px;}
.x6_c00115{left:130.996335px;}
.x3f_c00115{left:140.688435px;}
.x62_c00115{left:142.712985px;}
.x11_c00115{left:152.578335px;}
.x12_c00115{left:162.171435px;}
.x7_c00115{left:163.705935px;}
.x55_c00115{left:174.833535px;}
.x1f_c00115{left:177.565935px;}
.x5b_c00115{left:184.268235px;}
.x13_c00115{left:185.768085px;}
.x47_c00115{left:188.272785px;}
.x14_c00115{left:196.311585px;}
.x42_c00115{left:207.572835px;}
.x20_c00115{left:219.136035px;}
.x37_c00115{left:229.684485px;}
.x15_c00115{left:230.748735px;}
.x21_c00115{left:241.094235px;}
.x63_c00115{left:242.811885px;}
.x40_c00115{left:252.647535px;}
.x59_c00115{left:254.612685px;}
.x38_c00115{left:263.547435px;}
.x8_c00115{left:264.720585px;}
.x2b_c00115{left:275.184885px;}
.x48_c00115{left:282.278235px;}
.x22_c00115{left:285.604635px;}
.x9_c00115{left:297.370785px;}
.x16_c00115{left:308.047935px;}
.x43_c00115{left:319.106235px;}
.xa_c00115{left:329.996235px;}
.x17_c00115{left:341.554485px;}
.x64_c00115{left:342.643485px;}
.x5f_c00115{left:344.336385px;}
.x49_c00115{left:352.286085px;}
.x23_c00115{left:353.295885px;}
.x44_c00115{left:363.705735px;}
.x18_c00115{left:375.927285px;}
.x39_c00115{left:377.526135px;}
.x30_c00115{left:385.787685px;}
.x5a_c00115{left:387.203385px;}
.x4a_c00115{left:396.850935px;}
.x4e_c00115{left:408.023085px;}
.x4b_c00115{left:409.235835px;}
.xb_c00115{left:419.254635px;}
.x56_c00115{left:429.778335px;}
.x24_c00115{left:433.139385px;}
.x5c_c00115{left:440.519835px;}
.x2c_c00115{left:441.564285px;}
.x51_c00115{left:442.732485px;}
.x19_c00115{left:452.078085px;}
.xc_c00115{left:463.453185px;}
.x52_c00115{left:473.917485px;}
.x5d_c00115{left:475.570785px;}
.x68_c00115{left:477.016185px;}
.x1a_c00115{left:484.357035px;}
.x31_c00115{left:485.579685px;}
.x25_c00115{left:496.806285px;}
.x5e_c00115{left:507.651735px;}
.x45_c00115{left:508.715985px;}
.x26_c00115{left:518.695185px;}
.x1b_c00115{left:519.789135px;}
.x3a_c00115{left:530.491035px;}
.x32_c00115{left:532.876935px;}
.x2d_c00115{left:540.965235px;}
.x61_c00115{left:542.227485px;}
.xd_c00115{left:552.226485px;}
.x57_c00115{left:553.468935px;}
.x41_c00115{left:563.962935px;}
.x3b_c00115{left:574.318335px;}
.xe_c00115{left:586.069635px;}
.x66_c00115{left:594.484635px;}
.x3c_c00115{left:596.385435px;}
.x1c_c00115{left:607.468485px;}
.x53_c00115{left:619.234635px;}
.x58_c00115{left:621.264135px;}
.xf_c00115{left:629.362335px;}
.x65_c00115{left:639.747435px;}
.x33_c00115{left:641.593785px;}
.x60_c00115{left:651.869985px;}
.x4_c00115{left:653.028285px;}
.x4c_c00115{left:662.161035px;}
.x28_c00115{left:663.631185px;}
.x27_c00115{left:665.947785px;}
.x3d_c00115{left:673.753935px;}
.x34_c00115{left:674.813235px;}
.x67_c00115{left:682.347135px;}
.x2e_c00115{left:685.158735px;}
.x46_c00115{left:686.519985px;}
.x35_c00115{left:692.113485px;}
.x50_c00115{left:693.128235px;}
.x4f_c00115{left:694.885485px;}
.x1d_c00115{left:696.726885px;}
.x2a_c00115{left:701.201685px;}
.x29_c00115{left:707.473335px;}
@media print{
.v1_c00115{vertical-align:-46.868800pt;}
.v2_c00115{vertical-align:-8.870400pt;}
.v0_c00115{vertical-align:0.000000pt;}
.ls4_c00115{letter-spacing:-2.439360pt;}
.ls8_c00115{letter-spacing:-2.111789pt;}
.lsa_c00115{letter-spacing:-0.857261pt;}
.ls2_c00115{letter-spacing:0.000000pt;}
.ls5_c00115{letter-spacing:0.362419pt;}
.ls9_c00115{letter-spacing:0.473933pt;}
.lse_c00115{letter-spacing:1.108166pt;}
.ls11_c00115{letter-spacing:1.540000pt;}
.ls12_c00115{letter-spacing:2.766931pt;}
.lsb_c00115{letter-spacing:3.238400pt;}
.lsd_c00115{letter-spacing:3.291209pt;}
.lsc_c00115{letter-spacing:3.338438pt;}
.ls3_c00115{letter-spacing:3.484800pt;}
.lsf_c00115{letter-spacing:3.696000pt;}
.ls0_c00115{letter-spacing:6.300800pt;}
.ls13_c00115{letter-spacing:43.084976pt;}
.ls7_c00115{letter-spacing:45.619376pt;}
.ls6_c00115{letter-spacing:46.886576pt;}
.ls10_c00115{letter-spacing:51.955376pt;}
.ls1_c00115{letter-spacing:756.616256pt;}
.ws0_c00115{word-spacing:-17.424000pt;}
.ws1_c00115{word-spacing:-16.566739pt;}
.ws2_c00115{word-spacing:0.000000pt;}
._b_c00115{margin-left:-3.067328pt;}
._8_c00115{margin-left:-0.913370pt;}
._d_c00115{width:4.112064pt;}
._7_c00115{width:5.854464pt;}
._6_c00115{width:7.039296pt;}
._3_c00115{width:9.339616pt;}
._5_c00115{width:10.593792pt;}
._0_c00115{width:18.539136pt;}
._2_c00115{width:19.793312pt;}
._9_c00115{width:28.017792pt;}
._4_c00115{width:36.520000pt;}
._c_c00115{width:40.463808pt;}
._1_c00115{width:76.806400pt;}
._a_c00115{width:625.803982pt;}
.fse_c00115{font-size:11.968176pt;}
.fs0_c00115{font-size:19.712000pt;}
.fs3_c00115{font-size:22.528000pt;}
.fsa_c00115{font-size:24.640000pt;}
.fs16_c00115{font-size:25.168000pt;}
.fs5_c00115{font-size:30.272176pt;}
.fs14_c00115{font-size:30.800000pt;}
.fsc_c00115{font-size:34.496000pt;}
.fsb_c00115{font-size:35.200000pt;}
.fs18_c00115{font-size:39.776000pt;}
.fs15_c00115{font-size:43.084976pt;}
.fs17_c00115{font-size:44.352176pt;}
.fs6_c00115{font-size:45.619376pt;}
.fs4_c00115{font-size:46.886576pt;}
.fs13_c00115{font-size:51.955376pt;}
.fs7_c00115{font-size:55.616000pt;}
.fs11_c00115{font-size:56.144000pt;}
.fs10_c00115{font-size:57.376000pt;}
.fsd_c00115{font-size:64.768000pt;}
.fsf_c00115{font-size:65.824176pt;}
.fs1_c00115{font-size:69.696000pt;}
.fs2_c00115{font-size:70.400000pt;}
.fs12_c00115{font-size:73.920000pt;}
.fs8_c00115{font-size:81.664176pt;}
.fs9_c00115{font-size:110.880000pt;}
.y0_c00115{bottom:0.000000pt;}
.y2b_c00115{bottom:46.486920pt;}
.y1_c00115{bottom:68.000000pt;}
.y2a_c00115{bottom:70.880520pt;}
.y29_c00115{bottom:103.198520pt;}
.y28_c00115{bottom:114.920120pt;}
.y27_c00115{bottom:155.782920pt;}
.y26_c00115{bottom:164.657720pt;}
.y25_c00115{bottom:193.798920pt;}
.y24_c00115{bottom:221.998520pt;}
.y22_c00115{bottom:251.139720pt;}
.y23_c00115{bottom:255.896120pt;}
.y21_c00115{bottom:279.656120pt;}
.y20_c00115{bottom:307.846920pt;}
.y1f_c00115{bottom:336.680120pt;}
.y1e_c00115{bottom:365.187720pt;}
.y1d_c00115{bottom:388.635320pt;}
.y1c_c00115{bottom:394.020920pt;}
.y3_c00115{bottom:421.897032pt;}
.y1b_c00115{bottom:422.528520pt;}
.y1a_c00115{bottom:450.406920pt;}
.y19_c00115{bottom:457.697720pt;}
.y18_c00115{bottom:480.190520pt;}
.y17_c00115{bottom:487.160120pt;}
.y15_c00115{bottom:509.019320pt;}
.y16_c00115{bottom:520.419720pt;}
.y14_c00115{bottom:537.843720pt;}
.y2_c00115{bottom:545.446920pt;}
.y13_c00115{bottom:566.043320pt;}
.y12_c00115{bottom:594.550920pt;}
.y11_c00115{bottom:623.062920pt;}
.y10_c00115{bottom:651.896120pt;}
.yf_c00115{bottom:680.403720pt;}
.ye_c00115{bottom:695.614520pt;}
.yd_c00115{bottom:706.698120pt;}
.yc_c00115{bottom:709.232520pt;}
.yb_c00115{bottom:738.061320pt;}
.ya_c00115{bottom:761.508920pt;}
.y9_c00115{bottom:766.894520pt;}
.y7_c00115{bottom:767.206920pt;}
.y8_c00115{bottom:776.710920pt;}
.y6_c00115{bottom:795.723320pt;}
.y5_c00115{bottom:824.868920pt;}
.y4_c00115{bottom:957.603720pt;}
.he_c00115{height:12.482434pt;}
.h2_c00115{height:20.559000pt;}
.ha_c00115{height:25.698750pt;}
.h15_c00115{height:26.249438pt;}
.h14_c00115{height:28.694594pt;}
.h7_c00115{height:30.382504pt;}
.h5_c00115{height:31.226460pt;}
.h6_c00115{height:31.572934pt;}
.h13_c00115{height:32.123438pt;}
.h12_c00115{height:34.602280pt;}
.hc_c00115{height:35.978250pt;}
.hb_c00115{height:36.712500pt;}
.h16_c00115{height:46.257934pt;}
.h8_c00115{height:58.005750pt;}
.h10_c00115{height:59.841375pt;}
.hd_c00115{height:63.566250pt;}
.hf_c00115{height:64.602829pt;}
.h3_c00115{height:68.402813pt;}
.h4_c00115{height:73.425000pt;}
.h11_c00115{height:74.497500pt;}
.h9_c00115{height:80.148923pt;}
.h1_c00115{height:986.666667pt;}
.h0_c00115{height:1122.666667pt;}
.w1_c00115{width:652.000000pt;}
.w0_c00115{width:793.333333pt;}
.x0_c00115{left:0.000000pt;}
.x2_c00115{left:39.221187pt;}
.x3_c00115{left:52.842179pt;}
.x3e_c00115{left:65.541987pt;}
.x1e_c00115{left:66.474787pt;}
.x5_c00115{left:67.948787pt;}
.x1_c00115{left:70.666667pt;}
.x2f_c00115{left:75.437587pt;}
.x4d_c00115{left:94.731587pt;}
.x36_c00115{left:96.117587pt;}
.x10_c00115{left:106.417987pt;}
.x54_c00115{left:115.292787pt;}
.x6_c00115{left:116.441187pt;}
.x3f_c00115{left:125.056387pt;}
.x62_c00115{left:126.855987pt;}
.x11_c00115{left:135.625187pt;}
.x12_c00115{left:144.152387pt;}
.x7_c00115{left:145.516387pt;}
.x55_c00115{left:155.407587pt;}
.x1f_c00115{left:157.836387pt;}
.x5b_c00115{left:163.793987pt;}
.x13_c00115{left:165.127187pt;}
.x47_c00115{left:167.353587pt;}
.x14_c00115{left:174.499187pt;}
.x42_c00115{left:184.509187pt;}
.x20_c00115{left:194.787587pt;}
.x37_c00115{left:204.163987pt;}
.x15_c00115{left:205.109987pt;}
.x21_c00115{left:214.305987pt;}
.x63_c00115{left:215.832787pt;}
.x40_c00115{left:224.575587pt;}
.x59_c00115{left:226.322387pt;}
.x38_c00115{left:234.264387pt;}
.x8_c00115{left:235.307187pt;}
.x2b_c00115{left:244.608787pt;}
.x48_c00115{left:250.913987pt;}
.x22_c00115{left:253.870787pt;}
.x9_c00115{left:264.329587pt;}
.x16_c00115{left:273.820387pt;}
.x43_c00115{left:283.649987pt;}
.xa_c00115{left:293.329987pt;}
.x17_c00115{left:303.603987pt;}
.x64_c00115{left:304.571987pt;}
.x5f_c00115{left:306.076787pt;}
.x49_c00115{left:313.143187pt;}
.x23_c00115{left:314.040787pt;}
.x44_c00115{left:323.293987pt;}
.x18_c00115{left:334.157587pt;}
.x39_c00115{left:335.578787pt;}
.x30_c00115{left:342.922387pt;}
.x5a_c00115{left:344.180787pt;}
.x4a_c00115{left:352.756387pt;}
.x4e_c00115{left:362.687187pt;}
.x4b_c00115{left:363.765187pt;}
.xb_c00115{left:372.670787pt;}
.x56_c00115{left:382.025187pt;}
.x24_c00115{left:385.012787pt;}
.x5c_c00115{left:391.573187pt;}
.x2c_c00115{left:392.501587pt;}
.x51_c00115{left:393.539987pt;}
.x19_c00115{left:401.847187pt;}
.xc_c00115{left:411.958387pt;}
.x52_c00115{left:421.259987pt;}
.x5d_c00115{left:422.729587pt;}
.x68_c00115{left:424.014387pt;}
.x1a_c00115{left:430.539587pt;}
.x31_c00115{left:431.626387pt;}
.x25_c00115{left:441.605587pt;}
.x5e_c00115{left:451.245987pt;}
.x45_c00115{left:452.191987pt;}
.x26_c00115{left:461.062387pt;}
.x1b_c00115{left:462.034787pt;}
.x3a_c00115{left:471.547587pt;}
.x32_c00115{left:473.668387pt;}
.x2d_c00115{left:480.857987pt;}
.x61_c00115{left:481.979987pt;}
.xd_c00115{left:490.867987pt;}
.x57_c00115{left:491.972387pt;}
.x41_c00115{left:501.300387pt;}
.x3b_c00115{left:510.505187pt;}
.xe_c00115{left:520.950787pt;}
.x66_c00115{left:528.430787pt;}
.x3c_c00115{left:530.120387pt;}
.x1c_c00115{left:539.971987pt;}
.x53_c00115{left:550.430787pt;}
.x58_c00115{left:552.234787pt;}
.xf_c00115{left:559.433187pt;}
.x65_c00115{left:568.664387pt;}
.x33_c00115{left:570.305587pt;}
.x60_c00115{left:579.439987pt;}
.x4_c00115{left:580.469587pt;}
.x4c_c00115{left:588.587587pt;}
.x28_c00115{left:589.894387pt;}
.x27_c00115{left:591.953587pt;}
.x3d_c00115{left:598.892387pt;}
.x34_c00115{left:599.833987pt;}
.x67_c00115{left:606.530787pt;}
.x2e_c00115{left:609.029987pt;}
.x46_c00115{left:610.239987pt;}
.x35_c00115{left:615.211987pt;}
.x50_c00115{left:616.113987pt;}
.x4f_c00115{left:617.675987pt;}
.x1d_c00115{left:619.312787pt;}
.x2a_c00115{left:623.290387pt;}
.x29_c00115{left:628.865187pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_dbcbaaeaf97a0bc1d10478a5.woff2')format("woff");}.ff1_c00116{font-family:ff1_c00116;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00116;src:url('chunks/assets/font_6fd9fde586ce05e075777ad3.woff2')format("woff");}.ff2_c00116{font-family:ff2_c00116;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00116;src:url('chunks/assets/font_2739c48a24c395f62f3546d5.woff2')format("woff");}.ff3_c00116{font-family:ff3_c00116;line-height:0.666000;font-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_c00116{transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);}
.m2e_c00116{transform:matrix(0.184889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184889,0.000000,0.000000,0.250000,0,0);}
.ma5_c00116{transform:matrix(0.194872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194872,0.000000,0.000000,0.250000,0,0);}
.m1c_c00116{transform:matrix(0.224999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224999,0.000000,0.000000,0.250000,0,0);}
.m1e_c00116{transform:matrix(0.228339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228339,0.000000,0.000000,0.250000,0,0);}
.m88_c00116{transform:matrix(0.231503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231503,0.000000,0.000000,0.250000,0,0);}
.m2b_c00116{transform:matrix(0.241214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241214,0.000000,0.000000,0.250000,0,0);}
.m0_c00116{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m97_c00116{transform:matrix(0.250909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250909,0.000000,0.000000,0.250000,0,0);}
.m4_c00116{transform:matrix(0.251385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251385,0.000000,0.000000,0.250000,0,0);}
.ma2_c00116{transform:matrix(0.251570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251570,0.000000,0.000000,0.250000,0,0);}
.m30_c00116{transform:matrix(0.253013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253013,0.000000,0.000000,0.250000,0,0);}
.m14_c00116{transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);}
.m43_c00116{transform:matrix(0.253416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253416,0.000000,0.000000,0.250000,0,0);}
.m75_c00116{transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);}
.m67_c00116{transform:matrix(0.254614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254614,0.000000,0.000000,0.250000,0,0);}
.me_c00116{transform:matrix(0.255317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255317,0.000000,0.000000,0.250000,0,0);}
.m8d_c00116{transform:matrix(0.255771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255771,0.000000,0.000000,0.250000,0,0);}
.m52_c00116{transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);}
.m39_c00116{transform:matrix(0.256300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256300,0.000000,0.000000,0.250000,0,0);}
.m8_c00116{transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);}
.m81_c00116{transform:matrix(0.257436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257436,0.000000,0.000000,0.250000,0,0);}
.m19_c00116{transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);}
.ma1_c00116{transform:matrix(0.257576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257576,0.000000,0.000000,0.250000,0,0);}
.m17_c00116{transform:matrix(0.258186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258186,0.000000,0.000000,0.250000,0,0);}
.m62_c00116{transform:matrix(0.259376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259376,0.000000,0.000000,0.250000,0,0);}
.m3a_c00116{transform:matrix(0.259659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259659,0.000000,0.000000,0.250000,0,0);}
.m3c_c00116{transform:matrix(0.259674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259674,0.000000,0.000000,0.250000,0,0);}
.m59_c00116{transform:matrix(0.260291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260291,0.000000,0.000000,0.250000,0,0);}
.m9b_c00116{transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);}
.m77_c00116{transform:matrix(0.260576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260576,0.000000,0.000000,0.250000,0,0);}
.m36_c00116{transform:matrix(0.260653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260653,0.000000,0.000000,0.250000,0,0);}
.ma_c00116{transform:matrix(0.260799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260799,0.000000,0.000000,0.250000,0,0);}
.m32_c00116{transform:matrix(0.262041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262041,0.000000,0.000000,0.250000,0,0);}
.m5d_c00116{transform:matrix(0.262726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262726,0.000000,0.000000,0.250000,0,0);}
.m34_c00116{transform:matrix(0.263796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263796,0.000000,0.000000,0.250000,0,0);}
.md_c00116{transform:matrix(0.264359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264359,0.000000,0.000000,0.250000,0,0);}
.m5a_c00116{transform:matrix(0.264852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264852,0.000000,0.000000,0.250000,0,0);}
.m7f_c00116{transform:matrix(0.265142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265142,0.000000,0.000000,0.250000,0,0);}
.m8e_c00116{transform:matrix(0.265643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265643,0.000000,0.000000,0.250000,0,0);}
.m7b_c00116{transform:matrix(0.265727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265727,0.000000,0.000000,0.250000,0,0);}
.m90_c00116{transform:matrix(0.265919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265919,0.000000,0.000000,0.250000,0,0);}
.m79_c00116{transform:matrix(0.266061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266061,0.000000,0.000000,0.250000,0,0);}
.m2a_c00116{transform:matrix(0.267265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267265,0.000000,0.000000,0.250000,0,0);}
.m4f_c00116{transform:matrix(0.270365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270365,0.000000,0.000000,0.250000,0,0);}
.m69_c00116{transform:matrix(0.270604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270604,0.000000,0.000000,0.250000,0,0);}
.m3d_c00116{transform:matrix(0.270821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270821,0.000000,0.000000,0.250000,0,0);}
.mc_c00116{transform:matrix(0.270994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270994,0.000000,0.000000,0.250000,0,0);}
.m53_c00116{transform:matrix(0.271925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271925,0.000000,0.000000,0.250000,0,0);}
.m23_c00116{transform:matrix(0.273059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273059,0.000000,0.000000,0.250000,0,0);}
.m22_c00116{transform:matrix(0.273569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273569,0.000000,0.000000,0.250000,0,0);}
.m87_c00116{transform:matrix(0.273625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273625,0.000000,0.000000,0.250000,0,0);}
.m18_c00116{transform:matrix(0.274089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274089,0.000000,0.000000,0.250000,0,0);}
.m50_c00116{transform:matrix(0.274521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274521,0.000000,0.000000,0.250000,0,0);}
.m5f_c00116{transform:matrix(0.274757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274757,0.000000,0.000000,0.250000,0,0);}
.m76_c00116{transform:matrix(0.275369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275369,0.000000,0.000000,0.250000,0,0);}
.m71_c00116{transform:matrix(0.276592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276592,0.000000,0.000000,0.250000,0,0);}
.m27_c00116{transform:matrix(0.277198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277198,0.000000,0.000000,0.250000,0,0);}
.m7d_c00116{transform:matrix(0.277317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277317,0.000000,0.000000,0.250000,0,0);}
.m46_c00116{transform:matrix(0.277504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277504,0.000000,0.000000,0.250000,0,0);}
.m98_c00116{transform:matrix(0.277832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277832,0.000000,0.000000,0.250000,0,0);}
.ma3_c00116{transform:matrix(0.278144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278144,0.000000,0.000000,0.250000,0,0);}
.m2c_c00116{transform:matrix(0.278286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278286,0.000000,0.000000,0.250000,0,0);}
.m1_c00116{transform:matrix(0.278680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278680,0.000000,0.000000,0.250000,0,0);}
.m5e_c00116{transform:matrix(0.278685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278685,0.000000,0.000000,0.250000,0,0);}
.m6_c00116{transform:matrix(0.278923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278923,0.000000,0.000000,0.250000,0,0);}
.m28_c00116{transform:matrix(0.279666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279666,0.000000,0.000000,0.250000,0,0);}
.m9_c00116{transform:matrix(0.279791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279791,0.000000,0.000000,0.250000,0,0);}
.m40_c00116{transform:matrix(0.280468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280468,0.000000,0.000000,0.250000,0,0);}
.m61_c00116{transform:matrix(0.280531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280531,0.000000,0.000000,0.250000,0,0);}
.m8f_c00116{transform:matrix(0.280627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280627,0.000000,0.000000,0.250000,0,0);}
.m51_c00116{transform:matrix(0.280637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280637,0.000000,0.000000,0.250000,0,0);}
.m8c_c00116{transform:matrix(0.280760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280760,0.000000,0.000000,0.250000,0,0);}
.m41_c00116{transform:matrix(0.280897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280897,0.000000,0.000000,0.250000,0,0);}
.m94_c00116{transform:matrix(0.280931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280931,0.000000,0.000000,0.250000,0,0);}
.m29_c00116{transform:matrix(0.281671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281671,0.000000,0.000000,0.250000,0,0);}
.m13_c00116{transform:matrix(0.281768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281768,0.000000,0.000000,0.250000,0,0);}
.m6f_c00116{transform:matrix(0.281950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281950,0.000000,0.000000,0.250000,0,0);}
.m20_c00116{transform:matrix(0.281965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281965,0.000000,0.000000,0.250000,0,0);}
.m16_c00116{transform:matrix(0.282243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282243,0.000000,0.000000,0.250000,0,0);}
.m93_c00116{transform:matrix(0.282496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282496,0.000000,0.000000,0.250000,0,0);}
.m68_c00116{transform:matrix(0.282943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282943,0.000000,0.000000,0.250000,0,0);}
.m6a_c00116{transform:matrix(0.284155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284155,0.000000,0.000000,0.250000,0,0);}
.m3b_c00116{transform:matrix(0.284467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284467,0.000000,0.000000,0.250000,0,0);}
.m65_c00116{transform:matrix(0.284908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284908,0.000000,0.000000,0.250000,0,0);}
.m60_c00116{transform:matrix(0.285219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285219,0.000000,0.000000,0.250000,0,0);}
.m9c_c00116{transform:matrix(0.285286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285286,0.000000,0.000000,0.250000,0,0);}
.m47_c00116{transform:matrix(0.285567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285567,0.000000,0.000000,0.250000,0,0);}
.m44_c00116{transform:matrix(0.286098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286098,0.000000,0.000000,0.250000,0,0);}
.m63_c00116{transform:matrix(0.286565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286565,0.000000,0.000000,0.250000,0,0);}
.m49_c00116{transform:matrix(0.286698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286698,0.000000,0.000000,0.250000,0,0);}
.m8a_c00116{transform:matrix(0.287109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287109,0.000000,0.000000,0.250000,0,0);}
.m4e_c00116{transform:matrix(0.287639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287639,0.000000,0.000000,0.250000,0,0);}
.m92_c00116{transform:matrix(0.288490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288490,0.000000,0.000000,0.250000,0,0);}
.m9a_c00116{transform:matrix(0.288612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288612,0.000000,0.000000,0.250000,0,0);}
.m4d_c00116{transform:matrix(0.288914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288914,0.000000,0.000000,0.250000,0,0);}
.m2d_c00116{transform:matrix(0.289056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289056,0.000000,0.000000,0.250000,0,0);}
.m24_c00116{transform:matrix(0.290735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290735,0.000000,0.000000,0.250000,0,0);}
.m9d_c00116{transform:matrix(0.290842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290842,0.000000,0.000000,0.250000,0,0);}
.m84_c00116{transform:matrix(0.291380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291380,0.000000,0.000000,0.250000,0,0);}
.m6d_c00116{transform:matrix(0.292185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292185,0.000000,0.000000,0.250000,0,0);}
.m3_c00116{transform:matrix(0.292690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292690,0.000000,0.000000,0.250000,0,0);}
.m74_c00116{transform:matrix(0.292735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292735,0.000000,0.000000,0.250000,0,0);}
.m91_c00116{transform:matrix(0.292991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292991,0.000000,0.000000,0.250000,0,0);}
.ma4_c00116{transform:matrix(0.293139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293139,0.000000,0.000000,0.250000,0,0);}
.mf_c00116{transform:matrix(0.293641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293641,0.000000,0.000000,0.250000,0,0);}
.m86_c00116{transform:matrix(0.293755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293755,0.000000,0.000000,0.250000,0,0);}
.m6e_c00116{transform:matrix(0.293900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293900,0.000000,0.000000,0.250000,0,0);}
.ma0_c00116{transform:matrix(0.295096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295096,0.000000,0.000000,0.250000,0,0);}
.m6b_c00116{transform:matrix(0.295655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295655,0.000000,0.000000,0.250000,0,0);}
.m4b_c00116{transform:matrix(0.295993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295993,0.000000,0.000000,0.250000,0,0);}
.m3f_c00116{transform:matrix(0.296797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296797,0.000000,0.000000,0.250000,0,0);}
.m37_c00116{transform:matrix(0.296869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296869,0.000000,0.000000,0.250000,0,0);}
.m33_c00116{transform:matrix(0.297117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297117,0.000000,0.000000,0.250000,0,0);}
.m85_c00116{transform:matrix(0.297389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297389,0.000000,0.000000,0.250000,0,0);}
.m25_c00116{transform:matrix(0.297943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297943,0.000000,0.000000,0.250000,0,0);}
.m3e_c00116{transform:matrix(0.299125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299125,0.000000,0.000000,0.250000,0,0);}
.m1b_c00116{transform:matrix(0.299810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299810,0.000000,0.000000,0.250000,0,0);}
.m6c_c00116{transform:matrix(0.299926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299926,0.000000,0.000000,0.250000,0,0);}
.m48_c00116{transform:matrix(0.300754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300754,0.000000,0.000000,0.250000,0,0);}
.m7a_c00116{transform:matrix(0.302344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302344,0.000000,0.000000,0.250000,0,0);}
.m66_c00116{transform:matrix(0.303508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303508,0.000000,0.000000,0.250000,0,0);}
.mb_c00116{transform:matrix(0.303894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303894,0.000000,0.000000,0.250000,0,0);}
.m83_c00116{transform:matrix(0.304570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304570,0.000000,0.000000,0.250000,0,0);}
.m56_c00116{transform:matrix(0.305664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305664,0.000000,0.000000,0.250000,0,0);}
.m57_c00116{transform:matrix(0.306037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306037,0.000000,0.000000,0.250000,0,0);}
.m1d_c00116{transform:matrix(0.306455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306455,0.000000,0.000000,0.250000,0,0);}
.m5b_c00116{transform:matrix(0.307078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307078,0.000000,0.000000,0.250000,0,0);}
.m64_c00116{transform:matrix(0.307388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307388,0.000000,0.000000,0.250000,0,0);}
.m82_c00116{transform:matrix(0.308048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308048,0.000000,0.000000,0.250000,0,0);}
.m54_c00116{transform:matrix(0.308127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308127,0.000000,0.000000,0.250000,0,0);}
.m89_c00116{transform:matrix(0.308758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308758,0.000000,0.000000,0.250000,0,0);}
.m73_c00116{transform:matrix(0.312561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312561,0.000000,0.000000,0.250000,0,0);}
.m1a_c00116{transform:matrix(0.312929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312929,0.000000,0.000000,0.250000,0,0);}
.m42_c00116{transform:matrix(0.313263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313263,0.000000,0.000000,0.250000,0,0);}
.m80_c00116{transform:matrix(0.314608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314608,0.000000,0.000000,0.250000,0,0);}
.m5_c00116{transform:matrix(0.316142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316142,0.000000,0.000000,0.250000,0,0);}
.m7e_c00116{transform:matrix(0.316813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316813,0.000000,0.000000,0.250000,0,0);}
.m95_c00116{transform:matrix(0.316843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316843,0.000000,0.000000,0.250000,0,0);}
.m2f_c00116{transform:matrix(0.317215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317215,0.000000,0.000000,0.250000,0,0);}
.m99_c00116{transform:matrix(0.317544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317544,0.000000,0.000000,0.250000,0,0);}
.m5c_c00116{transform:matrix(0.317866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317866,0.000000,0.000000,0.250000,0,0);}
.m58_c00116{transform:matrix(0.318985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318985,0.000000,0.000000,0.250000,0,0);}
.m38_c00116{transform:matrix(0.319547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319547,0.000000,0.000000,0.250000,0,0);}
.m78_c00116{transform:matrix(0.320282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320282,0.000000,0.000000,0.250000,0,0);}
.m11_c00116{transform:matrix(0.320559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320559,0.000000,0.000000,0.250000,0,0);}
.m4a_c00116{transform:matrix(0.320768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320768,0.000000,0.000000,0.250000,0,0);}
.m9e_c00116{transform:matrix(0.322200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322200,0.000000,0.000000,0.250000,0,0);}
.m96_c00116{transform:matrix(0.322695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322695,0.000000,0.000000,0.250000,0,0);}
.m45_c00116{transform:matrix(0.324772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324772,0.000000,0.000000,0.250000,0,0);}
.m15_c00116{transform:matrix(0.325725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325725,0.000000,0.000000,0.250000,0,0);}
.m7_c00116{transform:matrix(0.326105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326105,0.000000,0.000000,0.250000,0,0);}
.m1f_c00116{transform:matrix(0.329385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329385,0.000000,0.000000,0.250000,0,0);}
.m4c_c00116{transform:matrix(0.330786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330786,0.000000,0.000000,0.250000,0,0);}
.m2_c00116{transform:matrix(0.331929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331929,0.000000,0.000000,0.250000,0,0);}
.m72_c00116{transform:matrix(0.333044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333044,0.000000,0.000000,0.250000,0,0);}
.m12_c00116{transform:matrix(0.347542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347542,0.000000,0.000000,0.250000,0,0);}
.m8b_c00116{transform:matrix(0.353102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353102,0.000000,0.000000,0.250000,0,0);}
.m9f_c00116{transform:matrix(0.356276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356276,0.000000,0.000000,0.250000,0,0);}
.m7c_c00116{transform:matrix(0.358891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358891,0.000000,0.000000,0.250000,0,0);}
.m70_c00116{transform:matrix(0.359253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359253,0.000000,0.000000,0.250000,0,0);}
.m35_c00116{transform:matrix(0.362885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362885,0.000000,0.000000,0.250000,0,0);}
.m26_c00116{transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);}
.m21_c00116{transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);}
.m31_c00116{transform:matrix(0.375162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375162,0.000000,0.000000,0.250000,0,0);}
.m10_c00116{transform:matrix(0.377007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377007,0.000000,0.000000,0.250000,0,0);}
.m55_c00116{transform:matrix(0.397731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397731,0.000000,0.000000,0.250000,0,0);}
.v0_c00116{vertical-align:0.000000px;}
.ls6_c00116{letter-spacing:-2.855167px;}
.lsa_c00116{letter-spacing:-1.876253px;}
.lsb_c00116{letter-spacing:-1.434517px;}
.ls17_c00116{letter-spacing:-1.182855px;}
.ls3_c00116{letter-spacing:-0.856550px;}
.ls15_c00116{letter-spacing:-0.048946px;}
.ls2_c00116{letter-spacing:0.000000px;}
.ls7_c00116{letter-spacing:0.766816px;}
.ls16_c00116{letter-spacing:0.783132px;}
.ls18_c00116{letter-spacing:1.305219px;}
.ls13_c00116{letter-spacing:1.998617px;}
.ls1_c00116{letter-spacing:2.018654px;}
.lse_c00116{letter-spacing:2.096508px;}
.ls14_c00116{letter-spacing:2.554200px;}
.ls10_c00116{letter-spacing:2.920500px;}
.ls9_c00116{letter-spacing:3.311994px;}
.ls19_c00116{letter-spacing:3.326400px;}
.ls11_c00116{letter-spacing:3.405610px;}
.ls5_c00116{letter-spacing:3.425400px;}
.lsc_c00116{letter-spacing:3.623400px;}
.ls8_c00116{letter-spacing:3.760663px;}
.lsd_c00116{letter-spacing:3.817766px;}
.ls12_c00116{letter-spacing:3.842239px;}
.lsf_c00116{letter-spacing:4.005391px;}
.ls0_c00116{letter-spacing:4.046179px;}
.ls4_c00116{letter-spacing:4.078810px;}
.ls1b_c00116{letter-spacing:31.363200px;}
.ls1a_c00116{letter-spacing:55.598598px;}
.sc__c00116{text-shadow:none;}
.sc0_c00116{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00116{-webkit-text-stroke:0px transparent;}
.sc0_c00116{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00116{word-spacing:0.000000px;}
._0_c00116{width:18.484736px;}
._1_c00116{width:31.080517px;}
.fc0_c00116{color:transparent;}
.fs1_c00116{font-size:22.374000px;}
.fsd_c00116{font-size:25.146000px;}
.fs12_c00116{font-size:28.908000px;}
.fse_c00116{font-size:31.363200px;}
.fs11_c00116{font-size:35.244000px;}
.fsa_c00116{font-size:39.600000px;}
.fs4_c00116{font-size:40.986198px;}
.fsf_c00116{font-size:44.352000px;}
.fs9_c00116{font-size:51.084000px;}
.fsc_c00116{font-size:55.598598px;}
.fs6_c00116{font-size:58.410000px;}
.fsb_c00116{font-size:66.528000px;}
.fs7_c00116{font-size:68.112198px;}
.fs3_c00116{font-size:68.508000px;}
.fs5_c00116{font-size:72.468000px;}
.fs8_c00116{font-size:74.844000px;}
.fs10_c00116{font-size:79.200000px;}
.fs2_c00116{font-size:81.576198px;}
.fs0_c00116{font-size:85.536198px;}
.y0_c00116{bottom:0.000000px;}
.y22_c00116{bottom:11.311785px;}
.y21_c00116{bottom:52.302735px;}
.y20_c00116{bottom:73.330335px;}
.y1_c00116{bottom:76.500000px;}
.y1f_c00116{bottom:136.051785px;}
.y1e_c00116{bottom:140.328585px;}
.y1d_c00116{bottom:152.094735px;}
.y1c_c00116{bottom:162.430335px;}
.y1b_c00116{bottom:171.340335px;}
.y1a_c00116{bottom:203.059935px;}
.y19_c00116{bottom:235.487385px;}
.y18_c00116{bottom:261.865935px;}
.y17_c00116{bottom:267.211935px;}
.y16_c00116{bottom:298.931535px;}
.y15_c00116{bottom:360.227385px;}
.y14_c00116{bottom:391.951935px;}
.y13_c00116{bottom:423.671535px;}
.y12_c00116{bottom:455.747535px;}
.y11_c00116{bottom:487.110735px;}
.y10_c00116{bottom:518.473935px;}
.yf_c00116{bottom:550.544985px;}
.ye_c00116{bottom:612.914985px;}
.yd_c00116{bottom:644.639535px;}
.yc_c00116{bottom:676.002735px;}
.yb_c00116{bottom:707.717385px;}
.ya_c00116{bottom:739.436985px;}
.y9_c00116{bottom:770.805135px;}
.y8_c00116{bottom:802.524735px;}
.y7_c00116{bottom:833.531535px;}
.y6_c00116{bottom:865.602585px;}
.y5_c00116{bottom:896.970735px;}
.y4_c00116{bottom:929.759535px;}
.y3_c00116{bottom:996.401385px;}
.y2_c00116{bottom:1065.899385px;}
.h10_c00116{height:20.887891px;}
.h3_c00116{height:21.958857px;}
.hf_c00116{height:26.226492px;}
.h14_c00116{height:30.150141px;}
.h13_c00116{height:36.758391px;}
.he_c00116{height:37.028666px;}
.h6_c00116{height:40.225712px;}
.hc_c00116{height:41.301563px;}
.h11_c00116{height:46.257750px;}
.hb_c00116{height:53.279016px;}
.h8_c00116{height:57.326221px;}
.hd_c00116{height:65.293594px;}
.h5_c00116{height:67.236855px;}
.h9_c00116{height:71.038894px;}
.h7_c00116{height:71.123379px;}
.ha_c00116{height:73.455293px;}
.h4_c00116{height:80.062577px;}
.h12_c00116{height:82.603125px;}
.h2_c00116{height:83.949101px;}
.h1_c00116{height:1110.000000px;}
.h0_c00116{height:1263.000000px;}
.w1_c00116{width:775.500000px;}
.w0_c00116{width:892.500000px;}
.x0_c00116{left:0.000000px;}
.x1_c00116{left:58.500000px;}
.x16_c00116{left:85.111935px;}
.xd_c00116{left:86.740485px;}
.x5f_c00116{left:106.679085px;}
.x36_c00116{left:119.177835px;}
.x17_c00116{left:130.226235px;}
.x2f_c00116{left:140.007435px;}
.x4_c00116{left:141.076635px;}
.x50_c00116{left:150.382635px;}
.x5b_c00116{left:151.951785px;}
.x20_c00116{left:152.961585px;}
.x4c_c00116{left:161.386485px;}
.x18_c00116{left:163.341735px;}
.x5c_c00116{left:172.370535px;}
.x27_c00116{left:174.221835px;}
.xe_c00116{left:185.987985px;}
.x4e_c00116{left:194.754435px;}
.x21_c00116{left:206.312685px;}
.x19_c00116{left:208.238235px;}
.x39_c00116{left:217.341285px;}
.x5_c00116{left:219.633135px;}
.x41_c00116{left:229.632135px;}
.x28_c00116{left:241.294335px;}
.x4d_c00116{left:251.392335px;}
.x6_c00116{left:252.733785px;}
.x5d_c00116{left:261.911085px;}
.x4a_c00116{left:263.143635px;}
.xf_c00116{left:274.553385px;}
.x30_c00116{left:275.810685px;}
.x7_c00116{left:284.354385px;}
.x29_c00116{left:285.923535px;}
.x3a_c00116{left:296.303685px;}
.x37_c00116{left:297.976785px;}
.x60_c00116{left:306.579885px;}
.x1a_c00116{left:307.703535px;}
.x31_c00116{left:309.792435px;}
.x56_c00116{left:317.667885px;}
.x47_c00116{left:329.676585px;}
.x32_c00116{left:331.478385px;}
.x61_c00116{left:339.596385px;}
.x51_c00116{left:340.734885px;}
.x3b_c00116{left:341.799135px;}
.x1b_c00116{left:351.852585px;}
.x53_c00116{left:362.237685px;}
.x2a_c00116{left:363.653385px;}
.x3c_c00116{left:374.587935px;}
.x22_c00116{left:385.398735px;}
.x8_c00116{left:386.453085px;}
.x33_c00116{left:397.164885px;}
.x4f_c00116{left:405.574935px;}
.x10_c00116{left:407.851935px;}
.x9_c00116{left:418.682535px;}
.x23_c00116{left:429.567585px;}
.x34_c00116{left:440.898135px;}
.x11_c00116{left:451.624785px;}
.x57_c00116{left:462.356385px;}
.x3d_c00116{left:463.737435px;}
.x43_c00116{left:472.875135px;}
.x24_c00116{left:474.379935px;}
.x1c_c00116{left:485.537235px;}
.x40_c00116{left:495.328335px;}
.x2b_c00116{left:496.937085px;}
.x3_c00116{left:501.708885px;}
.x54_c00116{left:506.173785px;}
.xa_c00116{left:507.525135px;}
.x63_c00116{left:509.906085px;}
.x4b_c00116{left:517.598385px;}
.x45_c00116{left:519.014085px;}
.x2c_c00116{left:528.622035px;}
.x55_c00116{left:538.823985px;}
.x42_c00116{left:540.774285px;}
.x48_c00116{left:551.095035px;}
.x2d_c00116{left:562.163235px;}
.x1d_c00116{left:573.043335px;}
.x12_c00116{left:574.231335px;}
.x58_c00116{left:583.888785px;}
.x5e_c00116{left:593.863035px;}
.xb_c00116{left:596.308335px;}
.x52_c00116{left:605.648985px;}
.x13_c00116{left:606.703335px;}
.x2e_c00116{left:616.093485px;}
.x25_c00116{left:617.781435px;}
.x35_c00116{left:619.350585px;}
.x2_c00116{left:628.418985px;}
.x38_c00116{left:640.195035px;}
.x26_c00116{left:650.149485px;}
.x3e_c00116{left:651.594885px;}
.x59_c00116{left:661.262235px;}
.x44_c00116{left:671.795835px;}
.xc_c00116{left:674.043135px;}
.x49_c00116{left:683.517435px;}
.x14_c00116{left:685.126185px;}
.x46_c00116{left:694.219335px;}
.x5a_c00116{left:696.862635px;}
.x62_c00116{left:702.634335px;}
.x3f_c00116{left:704.941035px;}
.x15_c00116{left:706.292385px;}
.x1e_c00116{left:719.508885px;}
.x1f_c00116{left:750.317685px;}
@media print{
.v0_c00116{vertical-align:0.000000pt;}
.ls6_c00116{letter-spacing:-2.537926pt;}
.lsa_c00116{letter-spacing:-1.667780pt;}
.lsb_c00116{letter-spacing:-1.275126pt;}
.ls17_c00116{letter-spacing:-1.051427pt;}
.ls3_c00116{letter-spacing:-0.761378pt;}
.ls15_c00116{letter-spacing:-0.043507pt;}
.ls2_c00116{letter-spacing:0.000000pt;}
.ls7_c00116{letter-spacing:0.681614pt;}
.ls16_c00116{letter-spacing:0.696117pt;}
.ls18_c00116{letter-spacing:1.160195pt;}
.ls13_c00116{letter-spacing:1.776548pt;}
.ls1_c00116{letter-spacing:1.794359pt;}
.lse_c00116{letter-spacing:1.863563pt;}
.ls14_c00116{letter-spacing:2.270400pt;}
.ls10_c00116{letter-spacing:2.596000pt;}
.ls9_c00116{letter-spacing:2.943994pt;}
.ls19_c00116{letter-spacing:2.956800pt;}
.ls11_c00116{letter-spacing:3.027209pt;}
.ls5_c00116{letter-spacing:3.044800pt;}
.lsc_c00116{letter-spacing:3.220800pt;}
.ls8_c00116{letter-spacing:3.342811pt;}
.lsd_c00116{letter-spacing:3.393570pt;}
.ls12_c00116{letter-spacing:3.415323pt;}
.lsf_c00116{letter-spacing:3.560348pt;}
.ls0_c00116{letter-spacing:3.596604pt;}
.ls4_c00116{letter-spacing:3.625609pt;}
.ls1b_c00116{letter-spacing:27.878400pt;}
.ls1a_c00116{letter-spacing:49.420976pt;}
.ws0_c00116{word-spacing:0.000000pt;}
._0_c00116{width:16.430876pt;}
._1_c00116{width:27.627126pt;}
.fs1_c00116{font-size:19.888000pt;}
.fsd_c00116{font-size:22.352000pt;}
.fs12_c00116{font-size:25.696000pt;}
.fse_c00116{font-size:27.878400pt;}
.fs11_c00116{font-size:31.328000pt;}
.fsa_c00116{font-size:35.200000pt;}
.fs4_c00116{font-size:36.432176pt;}
.fsf_c00116{font-size:39.424000pt;}
.fs9_c00116{font-size:45.408000pt;}
.fsc_c00116{font-size:49.420976pt;}
.fs6_c00116{font-size:51.920000pt;}
.fsb_c00116{font-size:59.136000pt;}
.fs7_c00116{font-size:60.544176pt;}
.fs3_c00116{font-size:60.896000pt;}
.fs5_c00116{font-size:64.416000pt;}
.fs8_c00116{font-size:66.528000pt;}
.fs10_c00116{font-size:70.400000pt;}
.fs2_c00116{font-size:72.512176pt;}
.fs0_c00116{font-size:76.032176pt;}
.y0_c00116{bottom:0.000000pt;}
.y22_c00116{bottom:10.054920pt;}
.y21_c00116{bottom:46.491320pt;}
.y20_c00116{bottom:65.182520pt;}
.y1_c00116{bottom:68.000000pt;}
.y1f_c00116{bottom:120.934920pt;}
.y1e_c00116{bottom:124.736520pt;}
.y1d_c00116{bottom:135.195320pt;}
.y1c_c00116{bottom:144.382520pt;}
.y1b_c00116{bottom:152.302520pt;}
.y1a_c00116{bottom:180.497720pt;}
.y19_c00116{bottom:209.322120pt;}
.y18_c00116{bottom:232.769720pt;}
.y17_c00116{bottom:237.521720pt;}
.y16_c00116{bottom:265.716920pt;}
.y15_c00116{bottom:320.202120pt;}
.y14_c00116{bottom:348.401720pt;}
.y13_c00116{bottom:376.596920pt;}
.y12_c00116{bottom:405.108920pt;}
.y11_c00116{bottom:432.987320pt;}
.y10_c00116{bottom:460.865720pt;}
.yf_c00116{bottom:489.373320pt;}
.ye_c00116{bottom:544.813320pt;}
.yd_c00116{bottom:573.012920pt;}
.yc_c00116{bottom:600.891320pt;}
.yb_c00116{bottom:629.082120pt;}
.ya_c00116{bottom:657.277320pt;}
.y9_c00116{bottom:685.160120pt;}
.y8_c00116{bottom:713.355320pt;}
.y7_c00116{bottom:740.916920pt;}
.y6_c00116{bottom:769.424520pt;}
.y5_c00116{bottom:797.307320pt;}
.y4_c00116{bottom:826.452920pt;}
.y3_c00116{bottom:885.690120pt;}
.y2_c00116{bottom:947.466120pt;}
.h10_c00116{height:18.567014pt;}
.h3_c00116{height:19.518984pt;}
.hf_c00116{height:23.312438pt;}
.h14_c00116{height:26.800125pt;}
.h13_c00116{height:32.674125pt;}
.he_c00116{height:32.914370pt;}
.h6_c00116{height:35.756188pt;}
.hc_c00116{height:36.712500pt;}
.h11_c00116{height:41.118000pt;}
.hb_c00116{height:47.359125pt;}
.h8_c00116{height:50.956641pt;}
.hd_c00116{height:58.038750pt;}
.h5_c00116{height:59.766094pt;}
.h9_c00116{height:63.145684pt;}
.h7_c00116{height:63.220781pt;}
.ha_c00116{height:65.293594pt;}
.h4_c00116{height:71.166735pt;}
.h12_c00116{height:73.425000pt;}
.h2_c00116{height:74.621423pt;}
.h1_c00116{height:986.666667pt;}
.h0_c00116{height:1122.666667pt;}
.w1_c00116{width:689.333333pt;}
.w0_c00116{width:793.333333pt;}
.x0_c00116{left:0.000000pt;}
.x1_c00116{left:52.000000pt;}
.x16_c00116{left:75.655053pt;}
.xd_c00116{left:77.102653pt;}
.x5f_c00116{left:94.825853pt;}
.x36_c00116{left:105.935853pt;}
.x17_c00116{left:115.756653pt;}
.x2f_c00116{left:124.451053pt;}
.x4_c00116{left:125.401453pt;}
.x50_c00116{left:133.673453pt;}
.x5b_c00116{left:135.068253pt;}
.x20_c00116{left:135.965853pt;}
.x4c_c00116{left:143.454653pt;}
.x18_c00116{left:145.192653pt;}
.x5c_c00116{left:153.218253pt;}
.x27_c00116{left:154.863853pt;}
.xe_c00116{left:165.322653pt;}
.x4e_c00116{left:173.115053pt;}
.x21_c00116{left:183.389053pt;}
.x19_c00116{left:185.100653pt;}
.x39_c00116{left:193.192253pt;}
.x5_c00116{left:195.229453pt;}
.x41_c00116{left:204.117453pt;}
.x28_c00116{left:214.483853pt;}
.x4d_c00116{left:223.459853pt;}
.x6_c00116{left:224.652253pt;}
.x5d_c00116{left:232.809853pt;}
.x4a_c00116{left:233.905453pt;}
.xf_c00116{left:244.047453pt;}
.x30_c00116{left:245.165053pt;}
.x7_c00116{left:252.759453pt;}
.x29_c00116{left:254.154253pt;}
.x3a_c00116{left:263.381053pt;}
.x37_c00116{left:264.868253pt;}
.x60_c00116{left:272.515453pt;}
.x1a_c00116{left:273.514253pt;}
.x31_c00116{left:275.371053pt;}
.x56_c00116{left:282.371453pt;}
.x47_c00116{left:293.045853pt;}
.x32_c00116{left:294.647453pt;}
.x61_c00116{left:301.863453pt;}
.x51_c00116{left:302.875453pt;}
.x3b_c00116{left:303.821453pt;}
.x1b_c00116{left:312.757853pt;}
.x53_c00116{left:321.989053pt;}
.x2a_c00116{left:323.247453pt;}
.x3c_c00116{left:332.967053pt;}
.x22_c00116{left:342.576653pt;}
.x8_c00116{left:343.513853pt;}
.x33_c00116{left:353.035453pt;}
.x4f_c00116{left:360.511053pt;}
.x10_c00116{left:362.535053pt;}
.x9_c00116{left:372.162253pt;}
.x23_c00116{left:381.837853pt;}
.x34_c00116{left:391.909453pt;}
.x11_c00116{left:401.444253pt;}
.x57_c00116{left:410.983453pt;}
.x3d_c00116{left:412.211053pt;}
.x43_c00116{left:420.333453pt;}
.x24_c00116{left:421.671053pt;}
.x1c_c00116{left:431.588653pt;}
.x40_c00116{left:440.291853pt;}
.x2b_c00116{left:441.721853pt;}
.x3_c00116{left:445.963453pt;}
.x54_c00116{left:449.932253pt;}
.xa_c00116{left:451.133453pt;}
.x63_c00116{left:453.249853pt;}
.x4b_c00116{left:460.087453pt;}
.x45_c00116{left:461.345853pt;}
.x2c_c00116{left:469.886253pt;}
.x55_c00116{left:478.954653pt;}
.x42_c00116{left:480.688253pt;}
.x48_c00116{left:489.862253pt;}
.x2d_c00116{left:499.700653pt;}
.x1d_c00116{left:509.371853pt;}
.x12_c00116{left:510.427853pt;}
.x58_c00116{left:519.012253pt;}
.x5e_c00116{left:527.878253pt;}
.xb_c00116{left:530.051853pt;}
.x52_c00116{left:538.354653pt;}
.x13_c00116{left:539.291853pt;}
.x2e_c00116{left:547.638653pt;}
.x25_c00116{left:549.139053pt;}
.x35_c00116{left:550.533853pt;}
.x2_c00116{left:558.594653pt;}
.x38_c00116{left:569.062253pt;}
.x26_c00116{left:577.910653pt;}
.x3e_c00116{left:579.195453pt;}
.x59_c00116{left:587.788653pt;}
.x44_c00116{left:597.151853pt;}
.xc_c00116{left:599.149453pt;}
.x49_c00116{left:607.571053pt;}
.x14_c00116{left:609.001053pt;}
.x46_c00116{left:617.083853pt;}
.x5a_c00116{left:619.433453pt;}
.x62_c00116{left:624.563853pt;}
.x3f_c00116{left:626.614253pt;}
.x15_c00116{left:627.815453pt;}
.x1e_c00116{left:639.563453pt;}
.x1f_c00116{left:666.949053pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_efa64685e41c2919ab7a7637.woff2')format("woff");}.ff1_c00117{font-family:ff1_c00117;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00117;src:url('chunks/assets/font_daa51d57387a80275a910441.woff2')format("woff");}.ff2_c00117{font-family:ff2_c00117;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00117;src:url('chunks/assets/font_52584983bb93e164aeafa504.woff2')format("woff");}.ff3_c00117{font-family:ff3_c00117;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00117;src:url('chunks/assets/font_abaa96ab53ced8b0b1afb034.woff2')format("woff");}.ff4_c00117{font-family:ff4_c00117;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00117;src:url('chunks/assets/font_feba0154212fc2a1b5ceae56.woff2')format("woff");}.ff5_c00117{font-family:ff5_c00117;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mc_c00117{transform:matrix(0.058824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.058824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.058824,0.000000,0.000000,0.250000,0,0);}
.md_c00117{transform:matrix(0.080883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080883,0.000000,0.000000,0.250000,0,0);}
.m5c_c00117{transform:matrix(0.085527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085527,0.000000,0.000000,0.250000,0,0);}
.maa_c00117{transform:matrix(0.110372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110372,0.000000,0.000000,0.250000,0,0);}
.m5b_c00117{transform:matrix(0.138158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138158,0.000000,0.000000,0.250000,0,0);}
.m5a_c00117{transform:matrix(0.146929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146929,0.000000,0.000000,0.250000,0,0);}
.mb8_c00117{transform:matrix(0.150146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150146,0.000000,0.000000,0.250000,0,0);}
.m9_c00117{transform:matrix(0.169118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169118,0.000000,0.000000,0.250000,0,0);}
.m89_c00117{transform:matrix(0.170731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170731,0.000000,0.000000,0.250000,0,0);}
.m8a_c00117{transform:matrix(0.174797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174797,0.000000,0.000000,0.250000,0,0);}
.m8b_c00117{transform:matrix(0.181184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181184,0.000000,0.000000,0.250000,0,0);}
.m41_c00117{transform:matrix(0.190725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190725,0.000000,0.000000,0.250000,0,0);}
.mb_c00117{transform:matrix(0.194852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194852,0.000000,0.000000,0.250000,0,0);}
.ma_c00117{transform:matrix(0.198530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198530,0.000000,0.000000,0.250000,0,0);}
.m5d_c00117{transform:matrix(0.200658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200658,0.000000,0.000000,0.250000,0,0);}
.m82_c00117{transform:matrix(0.222805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222805,0.000000,0.000000,0.250000,0,0);}
.m3b_c00117{transform:matrix(0.227167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227167,0.000000,0.000000,0.250000,0,0);}
.m81_c00117{transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);}
.m69_c00117{transform:matrix(0.236466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236466,0.000000,0.000000,0.250000,0,0);}
.m7c_c00117{transform:matrix(0.238687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238687,0.000000,0.000000,0.250000,0,0);}
.mbd_c00117{transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);}
.m30_c00117{transform:matrix(0.241287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241287,0.000000,0.000000,0.250000,0,0);}
.mb2_c00117{transform:matrix(0.243933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243933,0.000000,0.000000,0.250000,0,0);}
.m0_c00117{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00117{transform:matrix(0.251362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251362,0.000000,0.000000,0.250000,0,0);}
.m10_c00117{transform:matrix(0.251642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251642,0.000000,0.000000,0.250000,0,0);}
.m29_c00117{transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);}
.mad_c00117{transform:matrix(0.255341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255341,0.000000,0.000000,0.250000,0,0);}
.md4_c00117{transform:matrix(0.255374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255374,0.000000,0.000000,0.250000,0,0);}
.m80_c00117{transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);}
.mc2_c00117{transform:matrix(0.256791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256791,0.000000,0.000000,0.250000,0,0);}
.m17_c00117{transform:matrix(0.258289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258289,0.000000,0.000000,0.250000,0,0);}
.md8_c00117{transform:matrix(0.259723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259723,0.000000,0.000000,0.250000,0,0);}
.mdf_c00117{transform:matrix(0.259881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259881,0.000000,0.000000,0.250000,0,0);}
.mb6_c00117{transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);}
.m14_c00117{transform:matrix(0.260559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260559,0.000000,0.000000,0.250000,0,0);}
.m4c_c00117{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m3f_c00117{transform:matrix(0.261436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261436,0.000000,0.000000,0.250000,0,0);}
.m26_c00117{transform:matrix(0.261717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261717,0.000000,0.000000,0.250000,0,0);}
.mb3_c00117{transform:matrix(0.262256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262256,0.000000,0.000000,0.250000,0,0);}
.m96_c00117{transform:matrix(0.262669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262669,0.000000,0.000000,0.250000,0,0);}
.m9f_c00117{transform:matrix(0.262708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262708,0.000000,0.000000,0.250000,0,0);}
.m95_c00117{transform:matrix(0.262842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262842,0.000000,0.000000,0.250000,0,0);}
.m61_c00117{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m64_c00117{transform:matrix(0.263305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263305,0.000000,0.000000,0.250000,0,0);}
.m40_c00117{transform:matrix(0.263459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263459,0.000000,0.000000,0.250000,0,0);}
.m46_c00117{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.mc1_c00117{transform:matrix(0.263947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263947,0.000000,0.000000,0.250000,0,0);}
.m39_c00117{transform:matrix(0.264128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264128,0.000000,0.000000,0.250000,0,0);}
.m62_c00117{transform:matrix(0.264780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264780,0.000000,0.000000,0.250000,0,0);}
.m6a_c00117{transform:matrix(0.264839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264839,0.000000,0.000000,0.250000,0,0);}
.m1d_c00117{transform:matrix(0.265506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265506,0.000000,0.000000,0.250000,0,0);}
.mb7_c00117{transform:matrix(0.265571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265571,0.000000,0.000000,0.250000,0,0);}
.m9d_c00117{transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);}
.m3e_c00117{transform:matrix(0.265699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265699,0.000000,0.000000,0.250000,0,0);}
.maf_c00117{transform:matrix(0.265916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265916,0.000000,0.000000,0.250000,0,0);}
.m4b_c00117{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m56_c00117{transform:matrix(0.266657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266657,0.000000,0.000000,0.250000,0,0);}
.m99_c00117{transform:matrix(0.266660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266660,0.000000,0.000000,0.250000,0,0);}
.m1b_c00117{transform:matrix(0.266706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266706,0.000000,0.000000,0.250000,0,0);}
.m13_c00117{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.m23_c00117{transform:matrix(0.267575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267575,0.000000,0.000000,0.250000,0,0);}
.m38_c00117{transform:matrix(0.267782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267782,0.000000,0.000000,0.250000,0,0);}
.m4_c00117{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.mb5_c00117{transform:matrix(0.267951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267951,0.000000,0.000000,0.250000,0,0);}
.m59_c00117{transform:matrix(0.268552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268552,0.000000,0.000000,0.250000,0,0);}
.m5_c00117{transform:matrix(0.269301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269301,0.000000,0.000000,0.250000,0,0);}
.mf_c00117{transform:matrix(0.269336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269336,0.000000,0.000000,0.250000,0,0);}
.m90_c00117{transform:matrix(0.269402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269402,0.000000,0.000000,0.250000,0,0);}
.m4e_c00117{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m12_c00117{transform:matrix(0.270977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270977,0.000000,0.000000,0.250000,0,0);}
.m58_c00117{transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);}
.m20_c00117{transform:matrix(0.271940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271940,0.000000,0.000000,0.250000,0,0);}
.m2e_c00117{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m2f_c00117{transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);}
.m7d_c00117{transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);}
.m43_c00117{transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);}
.mdc_c00117{transform:matrix(0.274114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274114,0.000000,0.000000,0.250000,0,0);}
.m35_c00117{transform:matrix(0.274273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274273,0.000000,0.000000,0.250000,0,0);}
.m4a_c00117{transform:matrix(0.275308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275308,0.000000,0.000000,0.250000,0,0);}
.m6_c00117{transform:matrix(0.275467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275467,0.000000,0.000000,0.250000,0,0);}
.m44_c00117{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m97_c00117{transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);}
.md1_c00117{transform:matrix(0.277164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277164,0.000000,0.000000,0.250000,0,0);}
.mba_c00117{transform:matrix(0.277360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277360,0.000000,0.000000,0.250000,0,0);}
.m8e_c00117{transform:matrix(0.277627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277627,0.000000,0.000000,0.250000,0,0);}
.m5e_c00117{transform:matrix(0.278331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278331,0.000000,0.000000,0.250000,0,0);}
.mb0_c00117{transform:matrix(0.279178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279178,0.000000,0.000000,0.250000,0,0);}
.md6_c00117{transform:matrix(0.280064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280064,0.000000,0.000000,0.250000,0,0);}
.m18_c00117{transform:matrix(0.280157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280157,0.000000,0.000000,0.250000,0,0);}
.m71_c00117{transform:matrix(0.280475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280475,0.000000,0.000000,0.250000,0,0);}
.ma3_c00117{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.m72_c00117{transform:matrix(0.281605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281605,0.000000,0.000000,0.250000,0,0);}
.m2b_c00117{transform:matrix(0.281783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281783,0.000000,0.000000,0.250000,0,0);}
.mc9_c00117{transform:matrix(0.282133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282133,0.000000,0.000000,0.250000,0,0);}
.m52_c00117{transform:matrix(0.282587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282587,0.000000,0.000000,0.250000,0,0);}
.m2a_c00117{transform:matrix(0.282651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282651,0.000000,0.000000,0.250000,0,0);}
.m84_c00117{transform:matrix(0.282867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282867,0.000000,0.000000,0.250000,0,0);}
.m28_c00117{transform:matrix(0.283157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283157,0.000000,0.000000,0.250000,0,0);}
.m49_c00117{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m6e_c00117{transform:matrix(0.283801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283801,0.000000,0.000000,0.250000,0,0);}
.m31_c00117{transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);}
.mac_c00117{transform:matrix(0.284740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284740,0.000000,0.000000,0.250000,0,0);}
.mcc_c00117{transform:matrix(0.286456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286456,0.000000,0.000000,0.250000,0,0);}
.m8_c00117{transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);}
.mc8_c00117{transform:matrix(0.287501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287501,0.000000,0.000000,0.250000,0,0);}
.me0_c00117{transform:matrix(0.287899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287899,0.000000,0.000000,0.250000,0,0);}
.m91_c00117{transform:matrix(0.287958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287958,0.000000,0.000000,0.250000,0,0);}
.m2_c00117{transform:matrix(0.288005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288005,0.000000,0.000000,0.250000,0,0);}
.m9b_c00117{transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);}
.m8d_c00117{transform:matrix(0.288712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288712,0.000000,0.000000,0.250000,0,0);}
.m22_c00117{transform:matrix(0.288974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288974,0.000000,0.000000,0.250000,0,0);}
.m16_c00117{transform:matrix(0.289328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289328,0.000000,0.000000,0.250000,0,0);}
.mce_c00117{transform:matrix(0.289520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289520,0.000000,0.000000,0.250000,0,0);}
.m2d_c00117{transform:matrix(0.291146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291146,0.000000,0.000000,0.250000,0,0);}
.m21_c00117{transform:matrix(0.291314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291314,0.000000,0.000000,0.250000,0,0);}
.m57_c00117{transform:matrix(0.291966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291966,0.000000,0.000000,0.250000,0,0);}
.m83_c00117{transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);}
.m4f_c00117{transform:matrix(0.292334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292334,0.000000,0.000000,0.250000,0,0);}
.m87_c00117{transform:matrix(0.292499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292499,0.000000,0.000000,0.250000,0,0);}
.m8f_c00117{transform:matrix(0.293104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293104,0.000000,0.000000,0.250000,0,0);}
.m1c_c00117{transform:matrix(0.293648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293648,0.000000,0.000000,0.250000,0,0);}
.m79_c00117{transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);}
.m15_c00117{transform:matrix(0.293847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293847,0.000000,0.000000,0.250000,0,0);}
.mbe_c00117{transform:matrix(0.294116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294116,0.000000,0.000000,0.250000,0,0);}
.ma4_c00117{transform:matrix(0.294136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294136,0.000000,0.000000,0.250000,0,0);}
.m7_c00117{transform:matrix(0.294953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294953,0.000000,0.000000,0.250000,0,0);}
.md7_c00117{transform:matrix(0.295961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295961,0.000000,0.000000,0.250000,0,0);}
.m65_c00117{transform:matrix(0.296280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296280,0.000000,0.000000,0.250000,0,0);}
.md9_c00117{transform:matrix(0.296592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296592,0.000000,0.000000,0.250000,0,0);}
.m7f_c00117{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m37_c00117{transform:matrix(0.297181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297181,0.000000,0.000000,0.250000,0,0);}
.m73_c00117{transform:matrix(0.297306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297306,0.000000,0.000000,0.250000,0,0);}
.m11_c00117{transform:matrix(0.298854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298854,0.000000,0.000000,0.250000,0,0);}
.mcb_c00117{transform:matrix(0.298917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298917,0.000000,0.000000,0.250000,0,0);}
.m60_c00117{transform:matrix(0.299227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299227,0.000000,0.000000,0.250000,0,0);}
.m2c_c00117{transform:matrix(0.300069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300069,0.000000,0.000000,0.250000,0,0);}
.m25_c00117{transform:matrix(0.300181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300181,0.000000,0.000000,0.250000,0,0);}
.m6b_c00117{transform:matrix(0.301331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301331,0.000000,0.000000,0.250000,0,0);}
.ma0_c00117{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.ma2_c00117{transform:matrix(0.302468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302468,0.000000,0.000000,0.250000,0,0);}
.mcf_c00117{transform:matrix(0.302587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302587,0.000000,0.000000,0.250000,0,0);}
.m6d_c00117{transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);}
.mca_c00117{transform:matrix(0.303681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303681,0.000000,0.000000,0.250000,0,0);}
.mc5_c00117{transform:matrix(0.304443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304443,0.000000,0.000000,0.250000,0,0);}
.m48_c00117{transform:matrix(0.304878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304878,0.000000,0.000000,0.250000,0,0);}
.m86_c00117{transform:matrix(0.305914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305914,0.000000,0.000000,0.250000,0,0);}
.m50_c00117{transform:matrix(0.306888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306888,0.000000,0.000000,0.250000,0,0);}
.m19_c00117{transform:matrix(0.307034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307034,0.000000,0.000000,0.250000,0,0);}
.m77_c00117{transform:matrix(0.307200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307200,0.000000,0.000000,0.250000,0,0);}
.m66_c00117{transform:matrix(0.307667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307667,0.000000,0.000000,0.250000,0,0);}
.m67_c00117{transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);}
.me_c00117{transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);}
.m27_c00117{transform:matrix(0.308319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308319,0.000000,0.000000,0.250000,0,0);}
.m7a_c00117{transform:matrix(0.308326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308326,0.000000,0.000000,0.250000,0,0);}
.m98_c00117{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m3c_c00117{transform:matrix(0.309093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309093,0.000000,0.000000,0.250000,0,0);}
.mbf_c00117{transform:matrix(0.311649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311649,0.000000,0.000000,0.250000,0,0);}
.ma1_c00117{transform:matrix(0.311985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311985,0.000000,0.000000,0.250000,0,0);}
.m1f_c00117{transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);}
.m5f_c00117{transform:matrix(0.312313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312313,0.000000,0.000000,0.250000,0,0);}
.m63_c00117{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.m24_c00117{transform:matrix(0.312879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312879,0.000000,0.000000,0.250000,0,0);}
.mc4_c00117{transform:matrix(0.313404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313404,0.000000,0.000000,0.250000,0,0);}
.m9e_c00117{transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);}
.m78_c00117{transform:matrix(0.314146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314146,0.000000,0.000000,0.250000,0,0);}
.mc0_c00117{transform:matrix(0.314257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314257,0.000000,0.000000,0.250000,0,0);}
.m76_c00117{transform:matrix(0.316242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316242,0.000000,0.000000,0.250000,0,0);}
.m74_c00117{transform:matrix(0.317415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317415,0.000000,0.000000,0.250000,0,0);}
.ma9_c00117{transform:matrix(0.317996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317996,0.000000,0.000000,0.250000,0,0);}
.m36_c00117{transform:matrix(0.318110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318110,0.000000,0.000000,0.250000,0,0);}
.mde_c00117{transform:matrix(0.318864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318864,0.000000,0.000000,0.250000,0,0);}
.mb1_c00117{transform:matrix(0.320941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320941,0.000000,0.000000,0.250000,0,0);}
.m6f_c00117{transform:matrix(0.321492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321492,0.000000,0.000000,0.250000,0,0);}
.ma7_c00117{transform:matrix(0.323416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323416,0.000000,0.000000,0.250000,0,0);}
.m53_c00117{transform:matrix(0.324300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324300,0.000000,0.000000,0.250000,0,0);}
.md2_c00117{transform:matrix(0.324535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324535,0.000000,0.000000,0.250000,0,0);}
.m33_c00117{transform:matrix(0.324871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324871,0.000000,0.000000,0.250000,0,0);}
.md3_c00117{transform:matrix(0.327605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327605,0.000000,0.000000,0.250000,0,0);}
.m85_c00117{transform:matrix(0.327729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327729,0.000000,0.000000,0.250000,0,0);}
.m54_c00117{transform:matrix(0.329861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329861,0.000000,0.000000,0.250000,0,0);}
.ma8_c00117{transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);}
.mbc_c00117{transform:matrix(0.331422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331422,0.000000,0.000000,0.250000,0,0);}
.m7b_c00117{transform:matrix(0.331442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331442,0.000000,0.000000,0.250000,0,0);}
.m93_c00117{transform:matrix(0.332554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332554,0.000000,0.000000,0.250000,0,0);}
.m94_c00117{transform:matrix(0.332823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332823,0.000000,0.000000,0.250000,0,0);}
.mdb_c00117{transform:matrix(0.332844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332844,0.000000,0.000000,0.250000,0,0);}
.m1_c00117{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m75_c00117{transform:matrix(0.333343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333343,0.000000,0.000000,0.250000,0,0);}
.md5_c00117{transform:matrix(0.333451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333451,0.000000,0.000000,0.250000,0,0);}
.mbb_c00117{transform:matrix(0.333901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333901,0.000000,0.000000,0.250000,0,0);}
.m1a_c00117{transform:matrix(0.334246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334246,0.000000,0.000000,0.250000,0,0);}
.m3_c00117{transform:matrix(0.335394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335394,0.000000,0.000000,0.250000,0,0);}
.mb9_c00117{transform:matrix(0.335653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335653,0.000000,0.000000,0.250000,0,0);}
.mdd_c00117{transform:matrix(0.336485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336485,0.000000,0.000000,0.250000,0,0);}
.m47_c00117{transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);}
.mda_c00117{transform:matrix(0.337511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337511,0.000000,0.000000,0.250000,0,0);}
.me2_c00117{transform:matrix(0.337700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337700,0.000000,0.000000,0.250000,0,0);}
.m8c_c00117{transform:matrix(0.337910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337910,0.000000,0.000000,0.250000,0,0);}
.m4d_c00117{transform:matrix(0.338203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338203,0.000000,0.000000,0.250000,0,0);}
.m9a_c00117{transform:matrix(0.338414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338414,0.000000,0.000000,0.250000,0,0);}
.m88_c00117{transform:matrix(0.339025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339025,0.000000,0.000000,0.250000,0,0);}
.m34_c00117{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m92_c00117{transform:matrix(0.340270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340270,0.000000,0.000000,0.250000,0,0);}
.m7e_c00117{transform:matrix(0.340878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340878,0.000000,0.000000,0.250000,0,0);}
.m42_c00117{transform:matrix(0.341295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341295,0.000000,0.000000,0.250000,0,0);}
.m55_c00117{transform:matrix(0.342408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342408,0.000000,0.000000,0.250000,0,0);}
.mc3_c00117{transform:matrix(0.343235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343235,0.000000,0.000000,0.250000,0,0);}
.mcd_c00117{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.mc6_c00117{transform:matrix(0.343551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343551,0.000000,0.000000,0.250000,0,0);}
.mae_c00117{transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);}
.ma6_c00117{transform:matrix(0.345927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345927,0.000000,0.000000,0.250000,0,0);}
.m51_c00117{transform:matrix(0.346325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346325,0.000000,0.000000,0.250000,0,0);}
.m45_c00117{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m1e_c00117{transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);}
.m70_c00117{transform:matrix(0.350318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350318,0.000000,0.000000,0.250000,0,0);}
.mc7_c00117{transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);}
.mb4_c00117{transform:matrix(0.354899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354899,0.000000,0.000000,0.250000,0,0);}
.ma5_c00117{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.md0_c00117{transform:matrix(0.358146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358146,0.000000,0.000000,0.250000,0,0);}
.m32_c00117{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);}
.mab_c00117{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m3d_c00117{transform:matrix(0.372071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372071,0.000000,0.000000,0.250000,0,0);}
.me1_c00117{transform:matrix(0.373039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373039,0.000000,0.000000,0.250000,0,0);}
.m3a_c00117{transform:matrix(0.378961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378961,0.000000,0.000000,0.250000,0,0);}
.m68_c00117{transform:matrix(0.387297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387297,0.000000,0.000000,0.250000,0,0);}
.m6c_c00117{transform:matrix(0.396487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396487,0.000000,0.000000,0.250000,0,0);}
.v0_c00117{vertical-align:0.000000px;}
.ls10_c00117{letter-spacing:-2.952180px;}
.lsa_c00117{letter-spacing:-2.744280px;}
.ls15_c00117{letter-spacing:-2.665872px;}
.lsf_c00117{letter-spacing:-2.391444px;}
.ls9_c00117{letter-spacing:-1.897474px;}
.ls8_c00117{letter-spacing:-1.772021px;}
.ls18_c00117{letter-spacing:-1.661002px;}
.lsc_c00117{letter-spacing:-0.431244px;}
.ls2_c00117{letter-spacing:0.000000px;}
.ls17_c00117{letter-spacing:0.125453px;}
.ls0_c00117{letter-spacing:1.709294px;}
.ls5_c00117{letter-spacing:1.913155px;}
.ls13_c00117{letter-spacing:1.960200px;}
.ls4_c00117{letter-spacing:2.062130px;}
.ls1_c00117{letter-spacing:2.067120px;}
.ls16_c00117{letter-spacing:3.308818px;}
.lse_c00117{letter-spacing:3.484810px;}
.lsb_c00117{letter-spacing:3.559723px;}
.ls6_c00117{letter-spacing:3.682810px;}
.ls14_c00117{letter-spacing:3.771900px;}
.ls12_c00117{letter-spacing:3.791700px;}
.ls3_c00117{letter-spacing:3.920400px;}
.ls19_c00117{letter-spacing:4.197610px;}
.ls7_c00117{letter-spacing:48.470598px;}
.lsd_c00117{letter-spacing:54.172998px;}
.ls11_c00117{letter-spacing:58.449798px;}
.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;}
}
.ws1_c00117{word-spacing:-23.161723px;}
.ws0_c00117{word-spacing:-19.602000px;}
.ws2_c00117{word-spacing:-1.881792px;}
.ws3_c00117{word-spacing:0.000000px;}
._8_c00117{margin-left:-12.388464px;}
._3_c00117{margin-left:-10.271448px;}
._7_c00117{margin-left:-3.057912px;}
._1_c00117{width:7.213536px;}
._6_c00117{width:9.095328px;}
._0_c00117{width:10.585080px;}
._c_c00117{width:11.760804px;}
._4_c00117{width:17.406576px;}
._b_c00117{width:20.856528px;}
._9_c00117{width:26.475293px;}
._a_c00117{width:29.010960px;}
._f_c00117{width:31.755240px;}
._2_c00117{width:33.166584px;}
._d_c00117{width:36.459720px;}
._e_c00117{width:39.988080px;}
._5_c00117{width:42.026688px;}
._10_c00117{width:44.300520px;}
.fc0_c00117{color:transparent;}
.fs9_c00117{font-size:22.176000px;}
.fs1_c00117{font-size:27.720000px;}
.fs10_c00117{font-size:28.314000px;}
.fs0_c00117{font-size:33.660000px;}
.fs5_c00117{font-size:48.470598px;}
.fs7_c00117{font-size:54.172998px;}
.fsb_c00117{font-size:58.449798px;}
.fs14_c00117{font-size:68.112198px;}
.fs11_c00117{font-size:69.498000px;}
.fs8_c00117{font-size:69.696198px;}
.fs6_c00117{font-size:72.864000px;}
.fs3_c00117{font-size:73.656198px;}
.fse_c00117{font-size:75.438000px;}
.fsc_c00117{font-size:75.834000px;}
.fs4_c00117{font-size:77.616198px;}
.fsf_c00117{font-size:78.012198px;}
.fs2_c00117{font-size:78.408000px;}
.fs12_c00117{font-size:83.952198px;}
.fsa_c00117{font-size:84.348000px;}
.fsd_c00117{font-size:89.100000px;}
.fs13_c00117{font-size:91.872198px;}
.y0_c00117{bottom:0.000000px;}
.y27_c00117{bottom:22.721535px;}
.y26_c00117{bottom:30.918735px;}
.y1_c00117{bottom:76.500000px;}
.y25_c00117{bottom:121.087935px;}
.y24_c00117{bottom:128.572335px;}
.y23_c00117{bottom:152.807535px;}
.y22_c00117{bottom:175.255785px;}
.y21_c00117{bottom:183.096585px;}
.y1f_c00117{bottom:183.452985px;}
.y20_c00117{bottom:183.809385px;}
.y1e_c00117{bottom:201.629385px;}
.y1d_c00117{bottom:216.959535px;}
.y1c_c00117{bottom:249.030585px;}
.y1b_c00117{bottom:281.467935px;}
.y1a_c00117{bottom:313.895385px;}
.y19_c00117{bottom:345.976335px;}
.y18_c00117{bottom:378.765135px;}
.y17_c00117{bottom:410.841135px;}
.y16_c00117{bottom:444.699135px;}
.y15_c00117{bottom:477.126585px;}
.y14_c00117{bottom:508.851135px;}
.y13_c00117{bottom:540.927135px;}
.y12_c00117{bottom:555.895935px;}
.y11_c00117{bottom:572.998185px;}
.y10_c00117{bottom:605.430585px;}
.yf_c00117{bottom:637.150185px;}
.ye_c00117{bottom:669.582585px;}
.yd_c00117{bottom:702.019935px;}
.yc_c00117{bottom:734.452335px;}
.yb_c00117{bottom:766.523385px;}
.ya_c00117{bottom:798.599385px;}
.y9_c00117{bottom:830.680335px;}
.y8_c00117{bottom:863.112735px;}
.y4_c00117{bottom:927.264735px;}
.y3_c00117{bottom:952.212735px;}
.y7_c00117{bottom:1052.712585px;}
.y6_c00117{bottom:1063.404585px;}
.y2_c00117{bottom:1076.947785px;}
.y5_c00117{bottom:1080.868185px;}
.hb_c00117{height:23.128875px;}
.h3_c00117{height:28.911094px;}
.h12_c00117{height:29.530617px;}
.h7_c00117{height:32.281418px;}
.h2_c00117{height:33.035449px;}
.h9_c00117{height:36.079217px;}
.hd_c00117{height:38.927565px;}
.h13_c00117{height:68.208486px;}
.ha_c00117{height:68.403007px;}
.h17_c00117{height:71.038894px;}
.h8_c00117{height:71.512031px;}
.h10_c00117{height:74.038271px;}
.h5_c00117{height:74.231637px;}
.h6_c00117{height:76.176054px;}
.he_c00117{height:76.426453px;}
.h11_c00117{height:76.564706px;}
.h16_c00117{height:76.821113px;}
.h4_c00117{height:76.953164px;}
.h14_c00117{height:82.353499px;}
.hc_c00117{height:82.782949px;}
.hf_c00117{height:87.446777px;}
.h15_c00117{height:95.819832px;}
.h1_c00117{height:1110.000000px;}
.h0_c00117{height:1263.000000px;}
.w1_c00117{width:733.500000px;}
.w0_c00117{width:892.500000px;}
.x0_c00117{left:0.000000px;}
.x2_c00117{left:42.648735px;}
.x22_c00117{left:68.893635px;}
.x28_c00117{left:69.982635px;}
.x4_c00117{left:71.363685px;}
.x1_c00117{left:79.500000px;}
.x58_c00117{left:81.600285px;}
.x43_c00117{left:92.114085px;}
.x61_c00117{left:95.628585px;}
.x5_c00117{left:103.038735px;}
.x3a_c00117{left:113.730735px;}
.x6b_c00117{left:115.285035px;}
.x10_c00117{left:125.353335px;}
.x11_c00117{left:135.921585px;}
.x62_c00117{left:137.035335px;}
.x23_c00117{left:147.356085px;}
.x63_c00117{left:148.430235px;}
.x5b_c00117{left:149.786535px;}
.x30_c00117{left:158.008485px;}
.x4f_c00117{left:159.082635px;}
.x56_c00117{left:163.220835px;}
.x37_c00117{left:167.873835px;}
.x29_c00117{left:168.972735px;}
.x12_c00117{left:170.022135px;}
.x44_c00117{left:173.937585px;}
.x6_c00117{left:179.239035px;}
.x13_c00117{left:180.357735px;}
.x6f_c00117{left:181.446735px;}
.x14_c00117{left:191.757585px;}
.x59_c00117{left:193.331685px;}
.x31_c00117{left:202.875285px;}
.x15_c00117{left:214.215735px;}
.x16_c00117{left:218.131185px;}
.x17_c00117{left:225.264135px;}
.x48_c00117{left:227.600535px;}
.x24_c00117{left:234.877035px;}
.x3b_c00117{left:236.609535px;}
.x18_c00117{left:247.162935px;}
.x5e_c00117{left:248.840985px;}
.x2a_c00117{left:258.325185px;}
.x50_c00117{left:259.612185px;}
.x6c_c00117{left:262.369335px;}
.x7_c00117{left:270.244785px;}
.x19_c00117{left:281.001135px;}
.x2b_c00117{left:291.663435px;}
.x64_c00117{left:293.054385px;}
.x8_c00117{left:302.746485px;}
.x67_c00117{left:304.023585px;}
.x51_c00117{left:314.027535px;}
.x1a_c00117{left:325.184835px;}
.x6d_c00117{left:326.288685px;}
.x2c_c00117{left:335.337285px;}
.x32_c00117{left:336.614385px;}
.x57_c00117{left:347.652885px;}
.x70_c00117{left:349.410135px;}
.x33_c00117{left:357.439035px;}
.x9_c00117{left:358.701285px;}
.x25_c00117{left:369.393285px;}
.x5f_c00117{left:370.804035px;}
.x68_c00117{left:380.590185px;}
.x38_c00117{left:381.783135px;}
.xa_c00117{left:391.861335px;}
.x65_c00117{left:393.608685px;}
.xb_c00117{left:403.602735px;}
.x1b_c00117{left:414.576885px;}
.x1c_c00117{left:425.714385px;}
.xc_c00117{left:435.842085px;}
.x5c_c00117{left:437.109285px;}
.x3c_c00117{left:447.088485px;}
.x5a_c00117{left:448.434885px;}
.x1d_c00117{left:457.587435px;}
.x3e_c00117{left:458.854635px;}
.x49_c00117{left:461.240535px;}
.x34_c00117{left:469.061535px;}
.x41_c00117{left:470.586135px;}
.x4a_c00117{left:481.629585px;}
.x35_c00117{left:491.811735px;}
.x1e_c00117{left:502.201785px;}
.x3f_c00117{left:503.374935px;}
.x66_c00117{left:504.389685px;}
.x2d_c00117{left:514.324335px;}
.x36_c00117{left:524.224335px;}
.x52_c00117{left:526.486485px;}
.x4b_c00117{left:536.356785px;}
.x45_c00117{left:541.158285px;}
.x46_c00117{left:547.241835px;}
.x26_c00117{left:548.246685px;}
.x4e_c00117{left:557.062635px;}
.x2e_c00117{left:558.973335px;}
.x3d_c00117{left:568.467435px;}
.x4c_c00117{left:569.690085px;}
.x6e_c00117{left:573.600585px;}
.x39_c00117{left:580.416735px;}
.x1f_c00117{left:590.890935px;}
.x40_c00117{left:592.474935px;}
.x42_c00117{left:594.177735px;}
.x69_c00117{left:601.577985px;}
.x5d_c00117{left:602.825385px;}
.x3_c00117{left:611.844285px;}
.x27_c00117{left:614.160885px;}
.x20_c00117{left:624.219285px;}
.x47_c00117{left:625.625085px;}
.x53_c00117{left:636.703185px;}
.x60_c00117{left:646.494285px;}
.xd_c00117{left:647.791185px;}
.x54_c00117{left:658.686135px;}
.x21_c00117{left:668.229735px;}
.x4d_c00117{left:669.818685px;}
.x2f_c00117{left:680.352285px;}
.xf_c00117{left:690.252285px;}
.x55_c00117{left:694.311285px;}
.x71_c00117{left:695.608185px;}
.x6a_c00117{left:697.315935px;}
.xe_c00117{left:698.627685px;}
@media print{
.v0_c00117{vertical-align:0.000000pt;}
.ls10_c00117{letter-spacing:-2.624160pt;}
.lsa_c00117{letter-spacing:-2.439360pt;}
.ls15_c00117{letter-spacing:-2.369664pt;}
.lsf_c00117{letter-spacing:-2.125728pt;}
.ls9_c00117{letter-spacing:-1.686643pt;}
.ls8_c00117{letter-spacing:-1.575130pt;}
.ls18_c00117{letter-spacing:-1.476446pt;}
.lsc_c00117{letter-spacing:-0.383328pt;}
.ls2_c00117{letter-spacing:0.000000pt;}
.ls17_c00117{letter-spacing:0.111514pt;}
.ls0_c00117{letter-spacing:1.519373pt;}
.ls5_c00117{letter-spacing:1.700582pt;}
.ls13_c00117{letter-spacing:1.742400pt;}
.ls4_c00117{letter-spacing:1.833005pt;}
.ls1_c00117{letter-spacing:1.837440pt;}
.ls16_c00117{letter-spacing:2.941171pt;}
.lse_c00117{letter-spacing:3.097609pt;}
.lsb_c00117{letter-spacing:3.164198pt;}
.ls6_c00117{letter-spacing:3.273609pt;}
.ls14_c00117{letter-spacing:3.352800pt;}
.ls12_c00117{letter-spacing:3.370400pt;}
.ls3_c00117{letter-spacing:3.484800pt;}
.ls19_c00117{letter-spacing:3.731209pt;}
.ls7_c00117{letter-spacing:43.084976pt;}
.lsd_c00117{letter-spacing:48.153776pt;}
.ls11_c00117{letter-spacing:51.955376pt;}
.ws1_c00117{word-spacing:-20.588198pt;}
.ws0_c00117{word-spacing:-17.424000pt;}
.ws2_c00117{word-spacing:-1.672704pt;}
.ws3_c00117{word-spacing:0.000000pt;}
._8_c00117{margin-left:-11.011968pt;}
._3_c00117{margin-left:-9.130176pt;}
._7_c00117{margin-left:-2.718144pt;}
._1_c00117{width:6.412032pt;}
._6_c00117{width:8.084736pt;}
._0_c00117{width:9.408960pt;}
._c_c00117{width:10.454048pt;}
._4_c00117{width:15.472512pt;}
._b_c00117{width:18.539136pt;}
._9_c00117{width:23.533594pt;}
._a_c00117{width:25.787520pt;}
._f_c00117{width:28.226880pt;}
._2_c00117{width:29.481408pt;}
._d_c00117{width:32.408640pt;}
._e_c00117{width:35.544960pt;}
._5_c00117{width:37.357056pt;}
._10_c00117{width:39.378240pt;}
.fs9_c00117{font-size:19.712000pt;}
.fs1_c00117{font-size:24.640000pt;}
.fs10_c00117{font-size:25.168000pt;}
.fs0_c00117{font-size:29.920000pt;}
.fs5_c00117{font-size:43.084976pt;}
.fs7_c00117{font-size:48.153776pt;}
.fsb_c00117{font-size:51.955376pt;}
.fs14_c00117{font-size:60.544176pt;}
.fs11_c00117{font-size:61.776000pt;}
.fs8_c00117{font-size:61.952176pt;}
.fs6_c00117{font-size:64.768000pt;}
.fs3_c00117{font-size:65.472176pt;}
.fse_c00117{font-size:67.056000pt;}
.fsc_c00117{font-size:67.408000pt;}
.fs4_c00117{font-size:68.992176pt;}
.fsf_c00117{font-size:69.344176pt;}
.fs2_c00117{font-size:69.696000pt;}
.fs12_c00117{font-size:74.624176pt;}
.fsa_c00117{font-size:74.976000pt;}
.fsd_c00117{font-size:79.200000pt;}
.fs13_c00117{font-size:81.664176pt;}
.y0_c00117{bottom:0.000000pt;}
.y27_c00117{bottom:20.196920pt;}
.y26_c00117{bottom:27.483320pt;}
.y1_c00117{bottom:68.000000pt;}
.y25_c00117{bottom:107.633720pt;}
.y24_c00117{bottom:114.286520pt;}
.y23_c00117{bottom:135.828920pt;}
.y22_c00117{bottom:155.782920pt;}
.y21_c00117{bottom:162.752520pt;}
.y1f_c00117{bottom:163.069320pt;}
.y20_c00117{bottom:163.386120pt;}
.y1e_c00117{bottom:179.226120pt;}
.y1d_c00117{bottom:192.852920pt;}
.y1c_c00117{bottom:221.360520pt;}
.y1b_c00117{bottom:250.193720pt;}
.y1a_c00117{bottom:279.018120pt;}
.y19_c00117{bottom:307.534520pt;}
.y18_c00117{bottom:336.680120pt;}
.y17_c00117{bottom:365.192120pt;}
.y16_c00117{bottom:395.288120pt;}
.y15_c00117{bottom:424.112520pt;}
.y14_c00117{bottom:452.312120pt;}
.y13_c00117{bottom:480.824120pt;}
.y12_c00117{bottom:494.129720pt;}
.y11_c00117{bottom:509.331720pt;}
.y10_c00117{bottom:538.160520pt;}
.yf_c00117{bottom:566.355720pt;}
.ye_c00117{bottom:595.184520pt;}
.yd_c00117{bottom:624.017720pt;}
.yc_c00117{bottom:652.846520pt;}
.yb_c00117{bottom:681.354120pt;}
.ya_c00117{bottom:709.866120pt;}
.y9_c00117{bottom:738.382520pt;}
.y8_c00117{bottom:767.211320pt;}
.y4_c00117{bottom:824.235320pt;}
.y3_c00117{bottom:846.411320pt;}
.y7_c00117{bottom:935.744520pt;}
.y6_c00117{bottom:945.248520pt;}
.y2_c00117{bottom:957.286920pt;}
.y5_c00117{bottom:960.771720pt;}
.hb_c00117{height:20.559000pt;}
.h3_c00117{height:25.698750pt;}
.h12_c00117{height:26.249438pt;}
.h7_c00117{height:28.694594pt;}
.h2_c00117{height:29.364844pt;}
.h9_c00117{height:32.070415pt;}
.hd_c00117{height:34.602280pt;}
.h13_c00117{height:60.629766pt;}
.ha_c00117{height:60.802673pt;}
.h17_c00117{height:63.145684pt;}
.h8_c00117{height:63.566250pt;}
.h10_c00117{height:65.811797pt;}
.h5_c00117{height:65.983677pt;}
.h6_c00117{height:67.712048pt;}
.he_c00117{height:67.934625pt;}
.h11_c00117{height:68.057516pt;}
.h16_c00117{height:68.285434pt;}
.h4_c00117{height:68.402813pt;}
.h14_c00117{height:73.203110pt;}
.hc_c00117{height:73.584844pt;}
.hf_c00117{height:77.730469pt;}
.h15_c00117{height:85.173184pt;}
.h1_c00117{height:986.666667pt;}
.h0_c00117{height:1122.666667pt;}
.w1_c00117{width:652.000000pt;}
.w0_c00117{width:793.333333pt;}
.x0_c00117{left:0.000000pt;}
.x2_c00117{left:37.909987pt;}
.x22_c00117{left:61.238787pt;}
.x28_c00117{left:62.206787pt;}
.x4_c00117{left:63.434387pt;}
.x1_c00117{left:70.666667pt;}
.x58_c00117{left:72.533587pt;}
.x43_c00117{left:81.879187pt;}
.x61_c00117{left:85.003187pt;}
.x5_c00117{left:91.589987pt;}
.x3a_c00117{left:101.093987pt;}
.x6b_c00117{left:102.475587pt;}
.x10_c00117{left:111.425187pt;}
.x11_c00117{left:120.819187pt;}
.x62_c00117{left:121.809187pt;}
.x23_c00117{left:130.983187pt;}
.x63_c00117{left:131.937987pt;}
.x5b_c00117{left:133.143587pt;}
.x30_c00117{left:140.451987pt;}
.x4f_c00117{left:141.406787pt;}
.x56_c00117{left:145.085187pt;}
.x37_c00117{left:149.221187pt;}
.x29_c00117{left:150.197987pt;}
.x12_c00117{left:151.130787pt;}
.x44_c00117{left:154.611187pt;}
.x6_c00117{left:159.323587pt;}
.x13_c00117{left:160.317987pt;}
.x6f_c00117{left:161.285987pt;}
.x14_c00117{left:170.451187pt;}
.x59_c00117{left:171.850387pt;}
.x31_c00117{left:180.333587pt;}
.x15_c00117{left:190.413987pt;}
.x16_c00117{left:193.894387pt;}
.x17_c00117{left:200.234787pt;}
.x48_c00117{left:202.311587pt;}
.x24_c00117{left:208.779587pt;}
.x3b_c00117{left:210.319587pt;}
.x18_c00117{left:219.700387pt;}
.x5e_c00117{left:221.191987pt;}
.x2a_c00117{left:229.622387pt;}
.x50_c00117{left:230.766387pt;}
.x6c_c00117{left:233.217187pt;}
.x7_c00117{left:240.217587pt;}
.x19_c00117{left:249.778787pt;}
.x2b_c00117{left:259.256387pt;}
.x64_c00117{left:260.492787pt;}
.x8_c00117{left:269.107987pt;}
.x67_c00117{left:270.243187pt;}
.x51_c00117{left:279.135587pt;}
.x1a_c00117{left:289.053187pt;}
.x6d_c00117{left:290.034387pt;}
.x2c_c00117{left:298.077587pt;}
.x32_c00117{left:299.212787pt;}
.x57_c00117{left:309.024787pt;}
.x70_c00117{left:310.586787pt;}
.x33_c00117{left:317.723587pt;}
.x9_c00117{left:318.845587pt;}
.x25_c00117{left:328.349587pt;}
.x5f_c00117{left:329.603587pt;}
.x68_c00117{left:338.302387pt;}
.x38_c00117{left:339.362787pt;}
.xa_c00117{left:348.321187pt;}
.x65_c00117{left:349.874387pt;}
.xb_c00117{left:358.757987pt;}
.x1b_c00117{left:368.512787pt;}
.x1c_c00117{left:378.412787pt;}
.xc_c00117{left:387.415187pt;}
.x5c_c00117{left:388.541587pt;}
.x3c_c00117{left:397.411987pt;}
.x5a_c00117{left:398.608787pt;}
.x1d_c00117{left:406.744387pt;}
.x3e_c00117{left:407.870787pt;}
.x49_c00117{left:409.991587pt;}
.x34_c00117{left:416.943587pt;}
.x41_c00117{left:418.298787pt;}
.x4a_c00117{left:428.115187pt;}
.x35_c00117{left:437.165987pt;}
.x1e_c00117{left:446.401587pt;}
.x3f_c00117{left:447.444387pt;}
.x66_c00117{left:448.346387pt;}
.x2d_c00117{left:457.177187pt;}
.x36_c00117{left:465.977187pt;}
.x52_c00117{left:467.987987pt;}
.x4b_c00117{left:476.761587pt;}
.x45_c00117{left:481.029587pt;}
.x46_c00117{left:486.437187pt;}
.x26_c00117{left:487.330387pt;}
.x4e_c00117{left:495.166787pt;}
.x2e_c00117{left:496.865187pt;}
.x3d_c00117{left:505.304387pt;}
.x4c_c00117{left:506.391187pt;}
.x6e_c00117{left:509.867187pt;}
.x39_c00117{left:515.925987pt;}
.x1f_c00117{left:525.236387pt;}
.x40_c00117{left:526.644387pt;}
.x42_c00117{left:528.157987pt;}
.x69_c00117{left:534.735987pt;}
.x5d_c00117{left:535.844787pt;}
.x3_c00117{left:543.861587pt;}
.x27_c00117{left:545.920787pt;}
.x20_c00117{left:554.861587pt;}
.x47_c00117{left:556.111187pt;}
.x53_c00117{left:565.958387pt;}
.x60_c00117{left:574.661587pt;}
.xd_c00117{left:575.814387pt;}
.x54_c00117{left:585.498787pt;}
.x21_c00117{left:593.981987pt;}
.x4d_c00117{left:595.394387pt;}
.x2f_c00117{left:604.757587pt;}
.xf_c00117{left:613.557587pt;}
.x55_c00117{left:617.165587pt;}
.x71_c00117{left:618.318387pt;}
.x6a_c00117{left:619.836387pt;}
.xe_c00117{left:621.002387pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ff1b4875376a12c70eeac03e.woff2')format("woff");}.ff1_c00118{font-family:ff1_c00118;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00118;src:url('chunks/assets/font_6a3fdb4f3cfbeebc9e11d6e2.woff2')format("woff");}.ff2_c00118{font-family:ff2_c00118;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00118;src:url('chunks/assets/font_c59d5e969071ba92809b1700.woff2')format("woff");}.ff3_c00118{font-family:ff3_c00118;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00118;src:url('chunks/assets/font_a6c5263d4c37119bde3fa502.woff2')format("woff");}.ff4_c00118{font-family:ff4_c00118;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00118;src:url('chunks/assets/font_06d24300fef195a5d0e590f9.woff2')format("woff");}.ff5_c00118{font-family:ff5_c00118;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00118;src:url('chunks/assets/font_3e38895009e30e9a143f9ccc.woff2')format("woff");}.ff6_c00118{font-family:ff6_c00118;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m66_c00118{transform:matrix(0.068288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.068288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.068288,0.000000,0.000000,0.250000,0,0);}
.m40_c00118{transform:matrix(0.085002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085002,0.000000,0.000000,0.250000,0,0);}
.m92_c00118{transform:matrix(0.099484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099484,0.000000,0.000000,0.250000,0,0);}
.m69_c00118{transform:matrix(0.138889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138889,0.000000,0.000000,0.250000,0,0);}
.m67_c00118{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);}
.m4e_c00118{transform:matrix(0.182737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182737,0.000000,0.000000,0.250000,0,0);}
.m50_c00118{transform:matrix(0.196520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196520,0.000000,0.000000,0.250000,0,0);}
.m68_c00118{transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);}
.m48_c00118{transform:matrix(0.215534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215534,0.000000,0.000000,0.250000,0,0);}
.ma7_c00118{transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);}
.m21_c00118{transform:matrix(0.235239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235239,0.000000,0.000000,0.250000,0,0);}
.m5a_c00118{transform:matrix(0.244060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244060,0.000000,0.000000,0.250000,0,0);}
.m1_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);}
.m39_c00118{transform:matrix(0.250350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250350,0.000000,0.000000,0.250000,0,0);}
.m78_c00118{transform:matrix(0.251508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251508,0.000000,0.000000,0.250000,0,0);}
.m5_c00118{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.m54_c00118{transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);}
.m4_c00118{transform:matrix(0.257725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257725,0.000000,0.000000,0.250000,0,0);}
.m2d_c00118{transform:matrix(0.258509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258509,0.000000,0.000000,0.250000,0,0);}
.maf_c00118{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m53_c00118{transform:matrix(0.258896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258896,0.000000,0.000000,0.250000,0,0);}
.m1a_c00118{transform:matrix(0.258938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258938,0.000000,0.000000,0.250000,0,0);}
.m90_c00118{transform:matrix(0.259104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259104,0.000000,0.000000,0.250000,0,0);}
.m59_c00118{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m29_c00118{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.me_c00118{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m64_c00118{transform:matrix(0.263628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263628,0.000000,0.000000,0.250000,0,0);}
.m91_c00118{transform:matrix(0.263649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263649,0.000000,0.000000,0.250000,0,0);}
.m22_c00118{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m63_c00118{transform:matrix(0.264128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264128,0.000000,0.000000,0.250000,0,0);}
.m17_c00118{transform:matrix(0.264886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264886,0.000000,0.000000,0.250000,0,0);}
.mab_c00118{transform:matrix(0.264902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264902,0.000000,0.000000,0.250000,0,0);}
.m37_c00118{transform:matrix(0.265619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265619,0.000000,0.000000,0.250000,0,0);}
.m8f_c00118{transform:matrix(0.265699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265699,0.000000,0.000000,0.250000,0,0);}
.m33_c00118{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m2f_c00118{transform:matrix(0.267199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267199,0.000000,0.000000,0.250000,0,0);}
.m3f_c00118{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m43_c00118{transform:matrix(0.268484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268484,0.000000,0.000000,0.250000,0,0);}
.m7b_c00118{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.m15_c00118{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.mb0_c00118{transform:matrix(0.272153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272153,0.000000,0.000000,0.250000,0,0);}
.m84_c00118{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m74_c00118{transform:matrix(0.272806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272806,0.000000,0.000000,0.250000,0,0);}
.m2a_c00118{transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);}
.m8c_c00118{transform:matrix(0.273227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273227,0.000000,0.000000,0.250000,0,0);}
.m3e_c00118{transform:matrix(0.273418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273418,0.000000,0.000000,0.250000,0,0);}
.m2b_c00118{transform:matrix(0.273934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273934,0.000000,0.000000,0.250000,0,0);}
.m95_c00118{transform:matrix(0.274708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274708,0.000000,0.000000,0.250000,0,0);}
.m23_c00118{transform:matrix(0.275454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275454,0.000000,0.000000,0.250000,0,0);}
.ma8_c00118{transform:matrix(0.275733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275733,0.000000,0.000000,0.250000,0,0);}
.m5e_c00118{transform:matrix(0.276042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276042,0.000000,0.000000,0.250000,0,0);}
.m1c_c00118{transform:matrix(0.276912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276912,0.000000,0.000000,0.250000,0,0);}
.m6c_c00118{transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);}
.m52_c00118{transform:matrix(0.278129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278129,0.000000,0.000000,0.250000,0,0);}
.m47_c00118{transform:matrix(0.278466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278466,0.000000,0.000000,0.250000,0,0);}
.m56_c00118{transform:matrix(0.279063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279063,0.000000,0.000000,0.250000,0,0);}
.m7_c00118{transform:matrix(0.279111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279111,0.000000,0.000000,0.250000,0,0);}
.m6_c00118{transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);}
.m99_c00118{transform:matrix(0.279482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279482,0.000000,0.000000,0.250000,0,0);}
.m7f_c00118{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.m60_c00118{transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);}
.m65_c00118{transform:matrix(0.282169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282169,0.000000,0.000000,0.250000,0,0);}
.m88_c00118{transform:matrix(0.282376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282376,0.000000,0.000000,0.250000,0,0);}
.ma_c00118{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m3c_c00118{transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);}
.m16_c00118{transform:matrix(0.284016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284016,0.000000,0.000000,0.250000,0,0);}
.mb1_c00118{transform:matrix(0.284051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284051,0.000000,0.000000,0.250000,0,0);}
.m75_c00118{transform:matrix(0.284205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284205,0.000000,0.000000,0.250000,0,0);}
.m9b_c00118{transform:matrix(0.284316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284316,0.000000,0.000000,0.250000,0,0);}
.m89_c00118{transform:matrix(0.284417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284417,0.000000,0.000000,0.250000,0,0);}
.m85_c00118{transform:matrix(0.285705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285705,0.000000,0.000000,0.250000,0,0);}
.m1e_c00118{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mf_c00118{transform:matrix(0.288190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288190,0.000000,0.000000,0.250000,0,0);}
.mac_c00118{transform:matrix(0.288455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288455,0.000000,0.000000,0.250000,0,0);}
.m9d_c00118{transform:matrix(0.290037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290037,0.000000,0.000000,0.250000,0,0);}
.m8d_c00118{transform:matrix(0.291702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291702,0.000000,0.000000,0.250000,0,0);}
.m0_c00118{transform:matrix(0.292357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292357,0.000000,0.000000,0.250000,0,0);}
.m14_c00118{transform:matrix(0.292398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292398,0.000000,0.000000,0.250000,0,0);}
.m58_c00118{transform:matrix(0.292756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292756,0.000000,0.000000,0.250000,0,0);}
.m3a_c00118{transform:matrix(0.293331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293331,0.000000,0.000000,0.250000,0,0);}
.m42_c00118{transform:matrix(0.293496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293496,0.000000,0.000000,0.250000,0,0);}
.m77_c00118{transform:matrix(0.293983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293983,0.000000,0.000000,0.250000,0,0);}
.m25_c00118{transform:matrix(0.294693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294693,0.000000,0.000000,0.250000,0,0);}
.m1b_c00118{transform:matrix(0.294920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294920,0.000000,0.000000,0.250000,0,0);}
.m35_c00118{transform:matrix(0.295251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295251,0.000000,0.000000,0.250000,0,0);}
.m10_c00118{transform:matrix(0.295980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295980,0.000000,0.000000,0.250000,0,0);}
.m27_c00118{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.ma9_c00118{transform:matrix(0.297366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297366,0.000000,0.000000,0.250000,0,0);}
.m32_c00118{transform:matrix(0.297502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297502,0.000000,0.000000,0.250000,0,0);}
.m6e_c00118{transform:matrix(0.297662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297662,0.000000,0.000000,0.250000,0,0);}
.ma3_c00118{transform:matrix(0.297869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297869,0.000000,0.000000,0.250000,0,0);}
.m28_c00118{transform:matrix(0.297913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297913,0.000000,0.000000,0.250000,0,0);}
.m4c_c00118{transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);}
.m97_c00118{transform:matrix(0.298405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298405,0.000000,0.000000,0.250000,0,0);}
.m9c_c00118{transform:matrix(0.300015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300015,0.000000,0.000000,0.250000,0,0);}
.m87_c00118{transform:matrix(0.300220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300220,0.000000,0.000000,0.250000,0,0);}
.m79_c00118{transform:matrix(0.300674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300674,0.000000,0.000000,0.250000,0,0);}
.m19_c00118{transform:matrix(0.300736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300736,0.000000,0.000000,0.250000,0,0);}
.m7a_c00118{transform:matrix(0.301687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301687,0.000000,0.000000,0.250000,0,0);}
.m73_c00118{transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);}
.m31_c00118{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m24_c00118{transform:matrix(0.302561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302561,0.000000,0.000000,0.250000,0,0);}
.m8a_c00118{transform:matrix(0.303395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303395,0.000000,0.000000,0.250000,0,0);}
.m18_c00118{transform:matrix(0.304282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304282,0.000000,0.000000,0.250000,0,0);}
.m36_c00118{transform:matrix(0.304992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304992,0.000000,0.000000,0.250000,0,0);}
.m82_c00118{transform:matrix(0.305409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305409,0.000000,0.000000,0.250000,0,0);}
.m72_c00118{transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);}
.m9_c00118{transform:matrix(0.305735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305735,0.000000,0.000000,0.250000,0,0);}
.m4b_c00118{transform:matrix(0.306239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306239,0.000000,0.000000,0.250000,0,0);}
.m98_c00118{transform:matrix(0.306760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306760,0.000000,0.000000,0.250000,0,0);}
.m70_c00118{transform:matrix(0.307014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307014,0.000000,0.000000,0.250000,0,0);}
.m45_c00118{transform:matrix(0.307282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307282,0.000000,0.000000,0.250000,0,0);}
.m61_c00118{transform:matrix(0.307424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307424,0.000000,0.000000,0.250000,0,0);}
.mb_c00118{transform:matrix(0.308579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308579,0.000000,0.000000,0.250000,0,0);}
.m4d_c00118{transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);}
.ma5_c00118{transform:matrix(0.309682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309682,0.000000,0.000000,0.250000,0,0);}
.m1f_c00118{transform:matrix(0.311011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311011,0.000000,0.000000,0.250000,0,0);}
.m83_c00118{transform:matrix(0.311922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311922,0.000000,0.000000,0.250000,0,0);}
.ma1_c00118{transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);}
.m55_c00118{transform:matrix(0.312083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312083,0.000000,0.000000,0.250000,0,0);}
.m9e_c00118{transform:matrix(0.312355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312355,0.000000,0.000000,0.250000,0,0);}
.m6f_c00118{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.m9f_c00118{transform:matrix(0.312674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312674,0.000000,0.000000,0.250000,0,0);}
.m51_c00118{transform:matrix(0.313683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313683,0.000000,0.000000,0.250000,0,0);}
.m7e_c00118{transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);}
.ma0_c00118{transform:matrix(0.313796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313796,0.000000,0.000000,0.250000,0,0);}
.m71_c00118{transform:matrix(0.313886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313886,0.000000,0.000000,0.250000,0,0);}
.m46_c00118{transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);}
.m30_c00118{transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);}
.ma4_c00118{transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);}
.m20_c00118{transform:matrix(0.319077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319077,0.000000,0.000000,0.250000,0,0);}
.m2e_c00118{transform:matrix(0.319227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319227,0.000000,0.000000,0.250000,0,0);}
.m3_c00118{transform:matrix(0.319604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319604,0.000000,0.000000,0.250000,0,0);}
.m94_c00118{transform:matrix(0.319694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319694,0.000000,0.000000,0.250000,0,0);}
.m76_c00118{transform:matrix(0.320465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320465,0.000000,0.000000,0.250000,0,0);}
.m57_c00118{transform:matrix(0.320819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320819,0.000000,0.000000,0.250000,0,0);}
.m7d_c00118{transform:matrix(0.321492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321492,0.000000,0.000000,0.250000,0,0);}
.ma6_c00118{transform:matrix(0.322301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322301,0.000000,0.000000,0.250000,0,0);}
.m26_c00118{transform:matrix(0.322883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322883,0.000000,0.000000,0.250000,0,0);}
.m3d_c00118{transform:matrix(0.323033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323033,0.000000,0.000000,0.250000,0,0);}
.m96_c00118{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.m8e_c00118{transform:matrix(0.326063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326063,0.000000,0.000000,0.250000,0,0);}
.m2c_c00118{transform:matrix(0.327852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327852,0.000000,0.000000,0.250000,0,0);}
.m11_c00118{transform:matrix(0.328208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328208,0.000000,0.000000,0.250000,0,0);}
.m80_c00118{transform:matrix(0.328551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328551,0.000000,0.000000,0.250000,0,0);}
.m62_c00118{transform:matrix(0.328605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328605,0.000000,0.000000,0.250000,0,0);}
.m5c_c00118{transform:matrix(0.329080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329080,0.000000,0.000000,0.250000,0,0);}
.m41_c00118{transform:matrix(0.329205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329205,0.000000,0.000000,0.250000,0,0);}
.m6b_c00118{transform:matrix(0.330299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330299,0.000000,0.000000,0.250000,0,0);}
.m93_c00118{transform:matrix(0.331261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331261,0.000000,0.000000,0.250000,0,0);}
.m7c_c00118{transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);}
.m12_c00118{transform:matrix(0.332412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332412,0.000000,0.000000,0.250000,0,0);}
.m9a_c00118{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.ma2_c00118{transform:matrix(0.335470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335470,0.000000,0.000000,0.250000,0,0);}
.m3b_c00118{transform:matrix(0.335559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335559,0.000000,0.000000,0.250000,0,0);}
.m4a_c00118{transform:matrix(0.337641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337641,0.000000,0.000000,0.250000,0,0);}
.m49_c00118{transform:matrix(0.338975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338975,0.000000,0.000000,0.250000,0,0);}
.m8_c00118{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m8b_c00118{transform:matrix(0.339465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339465,0.000000,0.000000,0.250000,0,0);}
.m6a_c00118{transform:matrix(0.341242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341242,0.000000,0.000000,0.250000,0,0);}
.m38_c00118{transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);}
.mae_c00118{transform:matrix(0.342246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342246,0.000000,0.000000,0.250000,0,0);}
.m5d_c00118{transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);}
.m2_c00118{transform:matrix(0.346515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346515,0.000000,0.000000,0.250000,0,0);}
.m44_c00118{transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);}
.maa_c00118{transform:matrix(0.350588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350588,0.000000,0.000000,0.250000,0,0);}
.m13_c00118{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m81_c00118{transform:matrix(0.355345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355345,0.000000,0.000000,0.250000,0,0);}
.md_c00118{transform:matrix(0.355934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355934,0.000000,0.000000,0.250000,0,0);}
.m6d_c00118{transform:matrix(0.357553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357553,0.000000,0.000000,0.250000,0,0);}
.m34_c00118{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m1d_c00118{transform:matrix(0.363123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363123,0.000000,0.000000,0.250000,0,0);}
.mad_c00118{transform:matrix(0.365181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365181,0.000000,0.000000,0.250000,0,0);}
.mc_c00118{transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);}
.m86_c00118{transform:matrix(0.374714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374714,0.000000,0.000000,0.250000,0,0);}
.m5f_c00118{transform:matrix(0.378961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378961,0.000000,0.000000,0.250000,0,0);}
.m4f_c00118{transform:matrix(0.414699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414699,0.000000,0.000000,0.250000,0,0);}
.m5b_c00118{transform:matrix(0.424628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424628,0.000000,0.000000,0.250000,0,0);}
.v1_c00118{vertical-align:-5.702400px;}
.v0_c00118{vertical-align:0.000000px;}
.lsd_c00118{letter-spacing:-2.744280px;}
.ls13_c00118{letter-spacing:-1.704780px;}
.lse_c00118{letter-spacing:-0.886010px;}
.ls5_c00118{letter-spacing:0.000000px;}
.ls2_c00118{letter-spacing:0.760558px;}
.lsc_c00118{letter-spacing:1.702810px;}
.lsb_c00118{letter-spacing:1.821600px;}
.ls9_c00118{letter-spacing:1.960200px;}
.ls14_c00118{letter-spacing:2.673713px;}
.lsa_c00118{letter-spacing:2.759962px;}
.ls11_c00118{letter-spacing:3.112798px;}
.ls3_c00118{letter-spacing:3.202769px;}
.ls7_c00118{letter-spacing:3.238250px;}
.ls10_c00118{letter-spacing:3.324499px;}
.ls17_c00118{letter-spacing:3.614609px;}
.ls4_c00118{letter-spacing:3.702610px;}
.ls1_c00118{letter-spacing:3.747902px;}
.ls0_c00118{letter-spacing:3.865514px;}
.lsf_c00118{letter-spacing:3.881196px;}
.ls6_c00118{letter-spacing:3.920400px;}
.ls16_c00118{letter-spacing:4.078810px;}
.ls8_c00118{letter-spacing:4.316400px;}
.ls15_c00118{letter-spacing:51.321798px;}
.ls12_c00118{letter-spacing:59.875398px;}
.sc__c00118{text-shadow:none;}
.sc0_c00118{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00118{-webkit-text-stroke:0px transparent;}
.sc0_c00118{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00118{word-spacing:-23.467514px;}
.ws1_c00118{word-spacing:-23.349902px;}
.ws2_c00118{word-spacing:-19.602000px;}
.ws3_c00118{word-spacing:-2.195424px;}
.ws4_c00118{word-spacing:0.000000px;}
._d_c00118{margin-left:-13.015728px;}
._10_c00118{margin-left:-3.856077px;}
._3_c00118{width:4.829933px;}
._9_c00118{width:7.135128px;}
._7_c00118{width:9.173736px;}
._1_c00118{width:11.761200px;}
._f_c00118{width:13.329360px;}
._0_c00118{width:20.713797px;}
._4_c00118{width:22.267872px;}
._c_c00118{width:26.737128px;}
._a_c00118{width:28.540512px;}
._b_c00118{width:30.657528px;}
._e_c00118{width:34.265563px;}
._6_c00118{width:35.440416px;}
._5_c00118{width:37.902427px;}
._2_c00118{width:38.915712px;}
._8_c00118{width:44.458128px;}
._11_c00118{width:186.350472px;}
.fc0_c00118{color:transparent;}
.fs1_c00118{font-size:22.176000px;}
.fs9_c00118{font-size:33.264000px;}
.fs5_c00118{font-size:34.056198px;}
.fs6_c00118{font-size:36.036198px;}
.fs4_c00118{font-size:36.432000px;}
.fsa_c00118{font-size:39.204000px;}
.fsf_c00118{font-size:39.600000px;}
.fsb_c00118{font-size:48.708000px;}
.fsc_c00118{font-size:51.321798px;}
.fs8_c00118{font-size:59.875398px;}
.fs7_c00118{font-size:66.528000px;}
.fs0_c00118{font-size:74.052198px;}
.fse_c00118{font-size:75.240000px;}
.fs2_c00118{font-size:78.408000px;}
.fsd_c00118{font-size:81.576198px;}
.fs3_c00118{font-size:86.328000px;}
.y0_c00118{bottom:0.000000px;}
.y1_c00118{bottom:76.500000px;}
.y23_c00118{bottom:137.477385px;}
.y22_c00118{bottom:143.541135px;}
.y21_c00118{bottom:173.117385px;}
.y20_c00118{bottom:208.757385px;}
.y1f_c00118{bottom:274.696335px;}
.y1e_c00118{bottom:306.415935px;}
.y1d_c00118{bottom:338.491935px;}
.y1c_c00118{bottom:350.965935px;}
.y1b_c00118{bottom:371.988585px;}
.y1a_c00118{bottom:404.064585px;}
.y19_c00118{bottom:436.853385px;}
.y18_c00118{bottom:468.934335px;}
.y17_c00118{bottom:500.648985px;}
.y16_c00118{bottom:532.017135px;}
.y15_c00118{bottom:564.449535px;}
.y13_c00118{bottom:596.169135px;}
.y14_c00118{bottom:597.594735px;}
.y12_c00118{bottom:612.914985px;}
.y11_c00118{bottom:621.824985px;}
.y10_c00118{bottom:628.601535px;}
.yf_c00118{bottom:628.957935px;}
.ye_c00118{bottom:647.129385px;}
.yd_c00118{bottom:661.741785px;}
.yc_c00118{bottom:694.886985px;}
.yb_c00118{bottom:726.967935px;}
.ya_c00118{bottom:792.540585px;}
.y9_c00118{bottom:823.903785px;}
.y8_c00118{bottom:849.208185px;}
.y6_c00118{bottom:857.410335px;}
.y7_c00118{bottom:862.394985px;}
.y5_c00118{bottom:889.842735px;}
.y4_c00118{bottom:922.631535px;}
.y3_c00118{bottom:999.970335px;}
.y2_c00118{bottom:1075.522185px;}
.h3_c00118{height:23.128875px;}
.he_c00118{height:34.180317px;}
.h7_c00118{height:34.322262px;}
.hb_c00118{height:34.693313px;}
.h11_c00118{height:35.599163px;}
.h6_c00118{height:35.756016px;}
.h8_c00118{height:37.584628px;}
.hc_c00118{height:38.476582px;}
.ha_c00118{height:39.877015px;}
.hd_c00118{height:47.804238px;}
.h9_c00118{height:69.386625px;}
.h2_c00118{height:72.678183px;}
.h4_c00118{height:76.953164px;}
.h10_c00118{height:78.472969px;}
.hf_c00118{height:80.022745px;}
.h5_c00118{height:84.726211px;}
.h1_c00118{height:1110.000000px;}
.h0_c00118{height:1263.000000px;}
.w1_c00118{width:733.500000px;}
.w0_c00118{width:892.500000px;}
.x0_c00118{left:0.000000px;}
.x67_c00118{left:45.930585px;}
.x3b_c00118{left:73.224885px;}
.x4_c00118{left:74.888085px;}
.xe_c00118{left:75.962235px;}
.x1_c00118{left:79.500000px;}
.xf_c00118{left:97.697685px;}
.x3c_c00118{left:105.721635px;}
.x19_c00118{left:107.602635px;}
.x3d_c00118{left:110.127135px;}
.x3e_c00118{left:118.423335px;}
.x72_c00118{left:119.477685px;}
.x2d_c00118{left:128.912385px;}
.x75_c00118{left:130.357785px;}
.x6f_c00118{left:132.580335px;}
.x5d_c00118{left:139.005435px;}
.x2b_c00118{left:140.742885px;}
.x10_c00118{left:141.965535px;}
.x5_c00118{left:144.405885px;}
.x5e_c00118{left:151.152735px;}
.x25_c00118{left:152.167485px;}
.x4b_c00118{left:162.537735px;}
.x35_c00118{left:172.769385px;}
.x11_c00118{left:174.685035px;}
.x4c_c00118{left:184.614735px;}
.x46_c00118{left:194.524635px;}
.x56_c00118{left:195.623535px;}
.x3f_c00118{left:196.875885px;}
.x68_c00118{left:206.869935px;}
.x26_c00118{left:207.963885px;}
.x6d_c00118{left:217.368885px;}
.x6_c00118{left:218.443035px;}
.x50_c00118{left:228.055935px;}
.x40_c00118{left:229.199385px;}
.x2c_c00118{left:230.704185px;}
.x2e_c00118{left:240.376485px;}
.x12_c00118{left:242.163435px;}
.x70_c00118{left:252.132735px;}
.x1a_c00118{left:253.563285px;}
.x41_c00118{left:263.532585px;}
.x27_c00118{left:265.314585px;}
.x5f_c00118{left:274.927485px;}
.x13_c00118{left:276.026385px;}
.x57_c00118{left:285.238335px;}
.x1b_c00118{left:286.322385px;}
.x7_c00118{left:296.469885px;}
.x79_c00118{left:297.553935px;}
.x51_c00118{left:307.384635px;}
.x69_c00118{left:308.429085px;}
.x42_c00118{left:318.056835px;}
.x64_c00118{left:319.091385px;}
.x36_c00118{left:329.481435px;}
.x77_c00118{left:339.980385px;}
.x3_c00118{left:341.005035px;}
.x52_c00118{left:351.964335px;}
.x7a_c00118{left:353.330535px;}
.x2f_c00118{left:362.983035px;}
.x7d_c00118{left:367.022235px;}
.x28_c00118{left:374.194785px;}
.x8_c00118{left:376.130235px;}
.x60_c00118{left:384.956085px;}
.x7b_c00118{left:386.178735px;}
.x43_c00118{left:396.286635px;}
.x1c_c00118{left:399.865485px;}
.x9_c00118{left:407.335035px;}
.x76_c00118{left:408.904185px;}
.x4d_c00118{left:419.274435px;}
.x14_c00118{left:420.828735px;}
.x6a_c00118{left:430.307985px;}
.x1d_c00118{left:431.644485px;}
.x30_c00118{left:441.034635px;}
.x53_c00118{left:451.988985px;}
.xa_c00118{left:453.488835px;}
.x1e_c00118{left:455.924235px;}
.x61_c00118{left:463.126485px;}
.x29_c00118{left:464.839185px;}
.x37_c00118{left:474.358035px;}
.x73_c00118{left:484.748085px;}
.x15_c00118{left:486.950835px;}
.x58_c00118{left:496.276635px;}
.x38_c00118{left:507.691335px;}
.x39_c00118{left:517.145835px;}
.x47_c00118{left:518.244735px;}
.x1f_c00118{left:519.784185px;}
.x23_c00118{left:527.263635px;}
.x62_c00118{left:529.738635px;}
.x4e_c00118{left:532.203735px;}
.x54_c00118{left:540.257385px;}
.x31_c00118{left:541.871085px;}
.xb_c00118{left:552.761085px;}
.x16_c00118{left:554.285685px;}
.x20_c00118{left:564.621285px;}
.x65_c00118{left:572.031435px;}
.x32_c00118{left:573.922335px;}
.xc_c00118{left:575.664735px;}
.x2a_c00118{left:585.158835px;}
.x24_c00118{left:590.816685px;}
.x78_c00118{left:595.969635px;}
.x33_c00118{left:606.211185px;}
.xd_c00118{left:607.636785px;}
.x74_c00118{left:608.686185px;}
.x48_c00118{left:617.299185px;}
.x21_c00118{left:618.393135px;}
.x4f_c00118{left:628.312935px;}
.x6e_c00118{left:639.905835px;}
.x17_c00118{left:641.643285px;}
.x71_c00118{left:642.697635px;}
.x3a_c00118{left:650.394885px;}
.x44_c00118{left:661.393785px;}
.x59_c00118{left:663.279735px;}
.x2_c00118{left:665.863635px;}
.x6b_c00118{left:672.501585px;}
.x63_c00118{left:673.625235px;}
.x18_c00118{left:675.164685px;}
.x5a_c00118{left:685.020135px;}
.x22_c00118{left:686.693235px;}
.x34_c00118{left:687.930735px;}
.x55_c00118{left:694.197435px;}
.x5b_c00118{left:695.355735px;}
.x66_c00118{left:696.370485px;}
.x45_c00118{left:699.008835px;}
.x49_c00118{left:701.993685px;}
.x4a_c00118{left:703.389585px;}
.x6c_c00118{left:705.329985px;}
.x5c_c00118{left:707.473335px;}
.x7c_c00118{left:718.279185px;}
@media print{
.v1_c00118{vertical-align:-5.068800pt;}
.v0_c00118{vertical-align:0.000000pt;}
.lsd_c00118{letter-spacing:-2.439360pt;}
.ls13_c00118{letter-spacing:-1.515360pt;}
.lse_c00118{letter-spacing:-0.787565pt;}
.ls5_c00118{letter-spacing:0.000000pt;}
.ls2_c00118{letter-spacing:0.676051pt;}
.lsc_c00118{letter-spacing:1.513609pt;}
.lsb_c00118{letter-spacing:1.619200pt;}
.ls9_c00118{letter-spacing:1.742400pt;}
.ls14_c00118{letter-spacing:2.376634pt;}
.lsa_c00118{letter-spacing:2.453299pt;}
.ls11_c00118{letter-spacing:2.766931pt;}
.ls3_c00118{letter-spacing:2.846906pt;}
.ls7_c00118{letter-spacing:2.878445pt;}
.ls10_c00118{letter-spacing:2.955110pt;}
.ls17_c00118{letter-spacing:3.212986pt;}
.ls4_c00118{letter-spacing:3.291209pt;}
.ls1_c00118{letter-spacing:3.331469pt;}
.ls0_c00118{letter-spacing:3.436013pt;}
.lsf_c00118{letter-spacing:3.449952pt;}
.ls6_c00118{letter-spacing:3.484800pt;}
.ls16_c00118{letter-spacing:3.625609pt;}
.ls8_c00118{letter-spacing:3.836800pt;}
.ls15_c00118{letter-spacing:45.619376pt;}
.ls12_c00118{letter-spacing:53.222576pt;}
.ws0_c00118{word-spacing:-20.860013pt;}
.ws1_c00118{word-spacing:-20.755469pt;}
.ws2_c00118{word-spacing:-17.424000pt;}
.ws3_c00118{word-spacing:-1.951488pt;}
.ws4_c00118{word-spacing:0.000000pt;}
._d_c00118{margin-left:-11.569536pt;}
._10_c00118{margin-left:-3.427624pt;}
._3_c00118{width:4.293274pt;}
._9_c00118{width:6.342336pt;}
._7_c00118{width:8.154432pt;}
._1_c00118{width:10.454400pt;}
._f_c00118{width:11.848320pt;}
._0_c00118{width:18.412264pt;}
._4_c00118{width:19.793664pt;}
._c_c00118{width:23.766336pt;}
._a_c00118{width:25.369344pt;}
._b_c00118{width:27.251136pt;}
._e_c00118{width:30.458278pt;}
._6_c00118{width:31.502592pt;}
._5_c00118{width:33.691046pt;}
._2_c00118{width:34.591744pt;}
._8_c00118{width:39.518336pt;}
._11_c00118{width:165.644864pt;}
.fs1_c00118{font-size:19.712000pt;}
.fs9_c00118{font-size:29.568000pt;}
.fs5_c00118{font-size:30.272176pt;}
.fs6_c00118{font-size:32.032176pt;}
.fs4_c00118{font-size:32.384000pt;}
.fsa_c00118{font-size:34.848000pt;}
.fsf_c00118{font-size:35.200000pt;}
.fsb_c00118{font-size:43.296000pt;}
.fsc_c00118{font-size:45.619376pt;}
.fs8_c00118{font-size:53.222576pt;}
.fs7_c00118{font-size:59.136000pt;}
.fs0_c00118{font-size:65.824176pt;}
.fse_c00118{font-size:66.880000pt;}
.fs2_c00118{font-size:69.696000pt;}
.fsd_c00118{font-size:72.512176pt;}
.fs3_c00118{font-size:76.736000pt;}
.y0_c00118{bottom:0.000000pt;}
.y1_c00118{bottom:68.000000pt;}
.y23_c00118{bottom:122.202120pt;}
.y22_c00118{bottom:127.592120pt;}
.y21_c00118{bottom:153.882120pt;}
.y20_c00118{bottom:185.562120pt;}
.y1f_c00118{bottom:244.174520pt;}
.y1e_c00118{bottom:272.369720pt;}
.y1d_c00118{bottom:300.881720pt;}
.y1c_c00118{bottom:311.969720pt;}
.y1b_c00118{bottom:330.656520pt;}
.y1a_c00118{bottom:359.168520pt;}
.y19_c00118{bottom:388.314120pt;}
.y18_c00118{bottom:416.830520pt;}
.y17_c00118{bottom:445.021320pt;}
.y16_c00118{bottom:472.904120pt;}
.y15_c00118{bottom:501.732920pt;}
.y13_c00118{bottom:529.928120pt;}
.y14_c00118{bottom:531.195320pt;}
.y12_c00118{bottom:544.813320pt;}
.y11_c00118{bottom:552.733320pt;}
.y10_c00118{bottom:558.756920pt;}
.yf_c00118{bottom:559.073720pt;}
.ye_c00118{bottom:575.226120pt;}
.yd_c00118{bottom:588.214920pt;}
.yc_c00118{bottom:617.677320pt;}
.yb_c00118{bottom:646.193720pt;}
.ya_c00118{bottom:704.480520pt;}
.y9_c00118{bottom:732.358920pt;}
.y8_c00118{bottom:754.851720pt;}
.y6_c00118{bottom:762.142520pt;}
.y7_c00118{bottom:766.573320pt;}
.y5_c00118{bottom:790.971320pt;}
.y4_c00118{bottom:820.116920pt;}
.y3_c00118{bottom:888.862520pt;}
.y2_c00118{bottom:956.019720pt;}
.h3_c00118{height:20.559000pt;}
.he_c00118{height:30.382504pt;}
.h7_c00118{height:30.508677pt;}
.hb_c00118{height:30.838500pt;}
.h11_c00118{height:31.643700pt;}
.h6_c00118{height:31.783125pt;}
.h8_c00118{height:33.408559pt;}
.hc_c00118{height:34.201406pt;}
.ha_c00118{height:35.446236pt;}
.hd_c00118{height:42.492656pt;}
.h9_c00118{height:61.677000pt;}
.h2_c00118{height:64.602829pt;}
.h4_c00118{height:68.402813pt;}
.h10_c00118{height:69.753750pt;}
.hf_c00118{height:71.131329pt;}
.h5_c00118{height:75.312188pt;}
.h1_c00118{height:986.666667pt;}
.h0_c00118{height:1122.666667pt;}
.w1_c00118{width:652.000000pt;}
.w0_c00118{width:793.333333pt;}
.x0_c00118{left:0.000000pt;}
.x67_c00118{left:40.827187pt;}
.x3b_c00118{left:65.088787pt;}
.x4_c00118{left:66.567187pt;}
.xe_c00118{left:67.521987pt;}
.x1_c00118{left:70.666667pt;}
.xf_c00118{left:86.842387pt;}
.x3c_c00118{left:93.974787pt;}
.x19_c00118{left:95.646787pt;}
.x3d_c00118{left:97.890787pt;}
.x3e_c00118{left:105.265187pt;}
.x72_c00118{left:106.202387pt;}
.x2d_c00118{left:114.588787pt;}
.x75_c00118{left:115.873587pt;}
.x6f_c00118{left:117.849187pt;}
.x5d_c00118{left:123.560387pt;}
.x2b_c00118{left:125.104787pt;}
.x10_c00118{left:126.191587pt;}
.x5_c00118{left:128.360787pt;}
.x5e_c00118{left:134.357987pt;}
.x25_c00118{left:135.259987pt;}
.x4b_c00118{left:144.477987pt;}
.x35_c00118{left:153.572787pt;}
.x11_c00118{left:155.275587pt;}
.x4c_c00118{left:164.101987pt;}
.x46_c00118{left:172.910787pt;}
.x56_c00118{left:173.887587pt;}
.x3f_c00118{left:175.000787pt;}
.x68_c00118{left:183.884387pt;}
.x26_c00118{left:184.856787pt;}
.x6d_c00118{left:193.216787pt;}
.x6_c00118{left:194.171587pt;}
.x50_c00118{left:202.716387pt;}
.x40_c00118{left:203.732787pt;}
.x2c_c00118{left:205.070387pt;}
.x2e_c00118{left:213.667987pt;}
.x12_c00118{left:215.256387pt;}
.x70_c00118{left:224.117987pt;}
.x1a_c00118{left:225.389587pt;}
.x41_c00118{left:234.251187pt;}
.x27_c00118{left:235.835187pt;}
.x5f_c00118{left:244.379987pt;}
.x13_c00118{left:245.356787pt;}
.x57_c00118{left:253.545187pt;}
.x1b_c00118{left:254.508787pt;}
.x7_c00118{left:263.528787pt;}
.x79_c00118{left:264.492387pt;}
.x51_c00118{left:273.230787pt;}
.x69_c00118{left:274.159187pt;}
.x42_c00118{left:282.717187pt;}
.x64_c00118{left:283.636787pt;}
.x36_c00118{left:292.872387pt;}
.x77_c00118{left:302.204787pt;}
.x3_c00118{left:303.115587pt;}
.x52_c00118{left:312.857187pt;}
.x7a_c00118{left:314.071587pt;}
.x2f_c00118{left:322.651587pt;}
.x7d_c00118{left:326.241987pt;}
.x28_c00118{left:332.617587pt;}
.x8_c00118{left:334.337987pt;}
.x60_c00118{left:342.183187pt;}
.x7b_c00118{left:343.269987pt;}
.x43_c00118{left:352.254787pt;}
.x1c_c00118{left:355.435987pt;}
.x9_c00118{left:362.075587pt;}
.x76_c00118{left:363.470387pt;}
.x4d_c00118{left:372.688387pt;}
.x14_c00118{left:374.069987pt;}
.x6a_c00118{left:382.495987pt;}
.x1d_c00118{left:383.683987pt;}
.x30_c00118{left:392.030787pt;}
.x53_c00118{left:401.767987pt;}
.xa_c00118{left:403.101187pt;}
.x1e_c00118{left:405.265987pt;}
.x61_c00118{left:411.667987pt;}
.x29_c00118{left:413.190387pt;}
.x37_c00118{left:421.651587pt;}
.x73_c00118{left:430.887187pt;}
.x15_c00118{left:432.845187pt;}
.x58_c00118{left:441.134787pt;}
.x38_c00118{left:451.281187pt;}
.x39_c00118{left:459.685187pt;}
.x47_c00118{left:460.661987pt;}
.x1f_c00118{left:462.030387pt;}
.x23_c00118{left:468.678787pt;}
.x62_c00118{left:470.878787pt;}
.x4e_c00118{left:473.069987pt;}
.x54_c00118{left:480.228787pt;}
.x31_c00118{left:481.663187pt;}
.xb_c00118{left:491.343187pt;}
.x16_c00118{left:492.698387pt;}
.x20_c00118{left:501.885587pt;}
.x65_c00118{left:508.472387pt;}
.x32_c00118{left:510.153187pt;}
.xc_c00118{left:511.701987pt;}
.x2a_c00118{left:520.141187pt;}
.x24_c00118{left:525.170387pt;}
.x78_c00118{left:529.750787pt;}
.x33_c00118{left:538.854387pt;}
.xd_c00118{left:540.121587pt;}
.x74_c00118{left:541.054387pt;}
.x48_c00118{left:548.710387pt;}
.x21_c00118{left:549.682787pt;}
.x4f_c00118{left:558.500387pt;}
.x6e_c00118{left:568.805187pt;}
.x17_c00118{left:570.349587pt;}
.x71_c00118{left:571.286787pt;}
.x3a_c00118{left:578.128787pt;}
.x44_c00118{left:587.905587pt;}
.x59_c00118{left:589.581987pt;}
.x2_c00118{left:591.878787pt;}
.x6b_c00118{left:597.779187pt;}
.x63_c00118{left:598.777987pt;}
.x18_c00118{left:600.146387pt;}
.x5a_c00118{left:608.906787pt;}
.x22_c00118{left:610.393987pt;}
.x34_c00118{left:611.493987pt;}
.x55_c00118{left:617.064387pt;}
.x5b_c00118{left:618.093987pt;}
.x66_c00118{left:618.995987pt;}
.x45_c00118{left:621.341187pt;}
.x49_c00118{left:623.994387pt;}
.x4a_c00118{left:625.235187pt;}
.x6c_c00118{left:626.959987pt;}
.x5c_c00118{left:628.865187pt;}
.x7c_c00118{left:638.470387pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a5f502c10d8b32a094854a8e.woff2')format("woff");}.ff1_c00119{font-family:ff1_c00119;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00119;src:url('chunks/assets/font_e5ccfc9998e172e2109ca615.woff2')format("woff");}.ff2_c00119{font-family:ff2_c00119;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00119;src:url('chunks/assets/font_3b96a9ec2658f73092e19a1d.woff2')format("woff");}.ff3_c00119{font-family:ff3_c00119;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00119;src:url('chunks/assets/font_11aa27b2d75e859ddc0af7da.woff2')format("woff");}.ff4_c00119{font-family:ff4_c00119;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00119;src:url('chunks/assets/font_6b00f69eaca612947678bed2.woff2')format("woff");}.ff5_c00119{font-family:ff5_c00119;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00119;src:url('chunks/assets/font_0ec22f1df3076b6bae5756ff.woff2')format("woff");}.ff6_c00119{font-family:ff6_c00119;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mbb_c00119{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00119{transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);}
.mbc_c00119{transform:matrix(0.197917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197917,0.000000,0.000000,0.250000,0,0);}
.mbd_c00119{transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);}
.m2_c00119{transform:matrix(0.216823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216823,0.000000,0.000000,0.250000,0,0);}
.m9e_c00119{transform:matrix(0.220701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220701,0.000000,0.000000,0.250000,0,0);}
.m40_c00119{transform:matrix(0.234468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234468,0.000000,0.000000,0.250000,0,0);}
.mae_c00119{transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);}
.mdc_c00119{transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);}
.m6_c00119{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m28_c00119{transform:matrix(0.250712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250712,0.000000,0.000000,0.250000,0,0);}
.m0_c00119{transform:matrix(0.250784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250784,0.000000,0.000000,0.250000,0,0);}
.m36_c00119{transform:matrix(0.251084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251084,0.000000,0.000000,0.250000,0,0);}
.m3_c00119{transform:matrix(0.251100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251100,0.000000,0.000000,0.250000,0,0);}
.m37_c00119{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.md8_c00119{transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);}
.m39_c00119{transform:matrix(0.253545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253545,0.000000,0.000000,0.250000,0,0);}
.m5d_c00119{transform:matrix(0.253632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253632,0.000000,0.000000,0.250000,0,0);}
.m7c_c00119{transform:matrix(0.253786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253786,0.000000,0.000000,0.250000,0,0);}
.m8d_c00119{transform:matrix(0.255172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255172,0.000000,0.000000,0.250000,0,0);}
.mb_c00119{transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);}
.md9_c00119{transform:matrix(0.256268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256268,0.000000,0.000000,0.250000,0,0);}
.ma9_c00119{transform:matrix(0.256424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256424,0.000000,0.000000,0.250000,0,0);}
.m65_c00119{transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);}
.m81_c00119{transform:matrix(0.257336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257336,0.000000,0.000000,0.250000,0,0);}
.m79_c00119{transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);}
.m47_c00119{transform:matrix(0.258509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258509,0.000000,0.000000,0.250000,0,0);}
.mcc_c00119{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.ma3_c00119{transform:matrix(0.261639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261639,0.000000,0.000000,0.250000,0,0);}
.m32_c00119{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m49_c00119{transform:matrix(0.263720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263720,0.000000,0.000000,0.250000,0,0);}
.ma5_c00119{transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);}
.m15_c00119{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m9b_c00119{transform:matrix(0.264886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264886,0.000000,0.000000,0.250000,0,0);}
.m2d_c00119{transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);}
.m8b_c00119{transform:matrix(0.265699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265699,0.000000,0.000000,0.250000,0,0);}
.m89_c00119{transform:matrix(0.266097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266097,0.000000,0.000000,0.250000,0,0);}
.m60_c00119{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m75_c00119{transform:matrix(0.267515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267515,0.000000,0.000000,0.250000,0,0);}
.m4e_c00119{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m52_c00119{transform:matrix(0.268060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268060,0.000000,0.000000,0.250000,0,0);}
.m90_c00119{transform:matrix(0.268484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268484,0.000000,0.000000,0.250000,0,0);}
.md7_c00119{transform:matrix(0.269337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269337,0.000000,0.000000,0.250000,0,0);}
.m3c_c00119{transform:matrix(0.269403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269403,0.000000,0.000000,0.250000,0,0);}
.m1f_c00119{transform:matrix(0.269622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269622,0.000000,0.000000,0.250000,0,0);}
.mc6_c00119{transform:matrix(0.269968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269968,0.000000,0.000000,0.250000,0,0);}
.mc8_c00119{transform:matrix(0.270074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270074,0.000000,0.000000,0.250000,0,0);}
.m8_c00119{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m96_c00119{transform:matrix(0.271388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271388,0.000000,0.000000,0.250000,0,0);}
.m14_c00119{transform:matrix(0.271934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271934,0.000000,0.000000,0.250000,0,0);}
.mb6_c00119{transform:matrix(0.272153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272153,0.000000,0.000000,0.250000,0,0);}
.m83_c00119{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m18_c00119{transform:matrix(0.273008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273008,0.000000,0.000000,0.250000,0,0);}
.m70_c00119{transform:matrix(0.273398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273398,0.000000,0.000000,0.250000,0,0);}
.m63_c00119{transform:matrix(0.273845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273845,0.000000,0.000000,0.250000,0,0);}
.m4d_c00119{transform:matrix(0.274533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274533,0.000000,0.000000,0.250000,0,0);}
.mad_c00119{transform:matrix(0.274853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274853,0.000000,0.000000,0.250000,0,0);}
.m2a_c00119{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m57_c00119{transform:matrix(0.275711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275711,0.000000,0.000000,0.250000,0,0);}
.m73_c00119{transform:matrix(0.276607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276607,0.000000,0.000000,0.250000,0,0);}
.m66_c00119{transform:matrix(0.276841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276841,0.000000,0.000000,0.250000,0,0);}
.m69_c00119{transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);}
.m93_c00119{transform:matrix(0.277101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277101,0.000000,0.000000,0.250000,0,0);}
.mc4_c00119{transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);}
.m4c_c00119{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m11_c00119{transform:matrix(0.277813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277813,0.000000,0.000000,0.250000,0,0);}
.m9a_c00119{transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);}
.m4_c00119{transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);}
.m5b_c00119{transform:matrix(0.279890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279890,0.000000,0.000000,0.250000,0,0);}
.m9f_c00119{transform:matrix(0.280116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280116,0.000000,0.000000,0.250000,0,0);}
.m7b_c00119{transform:matrix(0.280159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280159,0.000000,0.000000,0.250000,0,0);}
.m7_c00119{transform:matrix(0.280247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280247,0.000000,0.000000,0.250000,0,0);}
.m1d_c00119{transform:matrix(0.280265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280265,0.000000,0.000000,0.250000,0,0);}
.m82_c00119{transform:matrix(0.280812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280812,0.000000,0.000000,0.250000,0,0);}
.m80_c00119{transform:matrix(0.280911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280911,0.000000,0.000000,0.250000,0,0);}
.m78_c00119{transform:matrix(0.281097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281097,0.000000,0.000000,0.250000,0,0);}
.ma2_c00119{transform:matrix(0.281338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281338,0.000000,0.000000,0.250000,0,0);}
.m61_c00119{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.m27_c00119{transform:matrix(0.281734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281734,0.000000,0.000000,0.250000,0,0);}
.mf_c00119{transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);}
.m53_c00119{transform:matrix(0.282049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282049,0.000000,0.000000,0.250000,0,0);}
.maf_c00119{transform:matrix(0.282371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282371,0.000000,0.000000,0.250000,0,0);}
.mc_c00119{transform:matrix(0.282587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282587,0.000000,0.000000,0.250000,0,0);}
.m87_c00119{transform:matrix(0.282615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282615,0.000000,0.000000,0.250000,0,0);}
.m25_c00119{transform:matrix(0.282785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282785,0.000000,0.000000,0.250000,0,0);}
.m8c_c00119{transform:matrix(0.282995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282995,0.000000,0.000000,0.250000,0,0);}
.m74_c00119{transform:matrix(0.283000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00119{transform:matrix(0.283801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283801,0.000000,0.000000,0.250000,0,0);}
.m35_c00119{transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);}
.mb5_c00119{transform:matrix(0.284588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284588,0.000000,0.000000,0.250000,0,0);}
.mca_c00119{transform:matrix(0.285021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285021,0.000000,0.000000,0.250000,0,0);}
.m84_c00119{transform:matrix(0.285189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285189,0.000000,0.000000,0.250000,0,0);}
.mc3_c00119{transform:matrix(0.285388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285388,0.000000,0.000000,0.250000,0,0);}
.m42_c00119{transform:matrix(0.286456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286456,0.000000,0.000000,0.250000,0,0);}
.md6_c00119{transform:matrix(0.286810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286810,0.000000,0.000000,0.250000,0,0);}
.m5e_c00119{transform:matrix(0.287765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287765,0.000000,0.000000,0.250000,0,0);}
.m7a_c00119{transform:matrix(0.288712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288712,0.000000,0.000000,0.250000,0,0);}
.md0_c00119{transform:matrix(0.288855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288855,0.000000,0.000000,0.250000,0,0);}
.m33_c00119{transform:matrix(0.289652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289652,0.000000,0.000000,0.250000,0,0);}
.m3f_c00119{transform:matrix(0.291008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291008,0.000000,0.000000,0.250000,0,0);}
.m1a_c00119{transform:matrix(0.291725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291725,0.000000,0.000000,0.250000,0,0);}
.m23_c00119{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);}
.mcd_c00119{transform:matrix(0.292206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292206,0.000000,0.000000,0.250000,0,0);}
.m8f_c00119{transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);}
.m95_c00119{transform:matrix(0.292399,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292399,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292399,0.000000,0.000000,0.250000,0,0);}
.m34_c00119{transform:matrix(0.292499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292499,0.000000,0.000000,0.250000,0,0);}
.m43_c00119{transform:matrix(0.292520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292520,0.000000,0.000000,0.250000,0,0);}
.ma_c00119{transform:matrix(0.292643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292643,0.000000,0.000000,0.250000,0,0);}
.m3a_c00119{transform:matrix(0.292708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292708,0.000000,0.000000,0.250000,0,0);}
.m68_c00119{transform:matrix(0.293193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293193,0.000000,0.000000,0.250000,0,0);}
.m20_c00119{transform:matrix(0.293496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293496,0.000000,0.000000,0.250000,0,0);}
.mc5_c00119{transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);}
.m97_c00119{transform:matrix(0.294290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294290,0.000000,0.000000,0.250000,0,0);}
.mab_c00119{transform:matrix(0.294638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294638,0.000000,0.000000,0.250000,0,0);}
.m85_c00119{transform:matrix(0.294653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294653,0.000000,0.000000,0.250000,0,0);}
.m71_c00119{transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);}
.m4a_c00119{transform:matrix(0.294852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294852,0.000000,0.000000,0.250000,0,0);}
.m86_c00119{transform:matrix(0.295696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295696,0.000000,0.000000,0.250000,0,0);}
.ma7_c00119{transform:matrix(0.296331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296331,0.000000,0.000000,0.250000,0,0);}
.md_c00119{transform:matrix(0.296774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296774,0.000000,0.000000,0.250000,0,0);}
.ma4_c00119{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m1c_c00119{transform:matrix(0.297275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297275,0.000000,0.000000,0.250000,0,0);}
.m92_c00119{transform:matrix(0.297429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297429,0.000000,0.000000,0.250000,0,0);}
.m5f_c00119{transform:matrix(0.297518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297518,0.000000,0.000000,0.250000,0,0);}
.m3d_c00119{transform:matrix(0.298907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298907,0.000000,0.000000,0.250000,0,0);}
.m5a_c00119{transform:matrix(0.299336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299336,0.000000,0.000000,0.250000,0,0);}
.m2c_c00119{transform:matrix(0.299763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299763,0.000000,0.000000,0.250000,0,0);}
.mb0_c00119{transform:matrix(0.299812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299812,0.000000,0.000000,0.250000,0,0);}
.md4_c00119{transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);}
.m72_c00119{transform:matrix(0.301739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301739,0.000000,0.000000,0.250000,0,0);}
.m6a_c00119{transform:matrix(0.302081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302081,0.000000,0.000000,0.250000,0,0);}
.m6f_c00119{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m5_c00119{transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);}
.m99_c00119{transform:matrix(0.303446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303446,0.000000,0.000000,0.250000,0,0);}
.m9c_c00119{transform:matrix(0.303918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303918,0.000000,0.000000,0.250000,0,0);}
.m7e_c00119{transform:matrix(0.304295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304295,0.000000,0.000000,0.250000,0,0);}
.m67_c00119{transform:matrix(0.304617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304617,0.000000,0.000000,0.250000,0,0);}
.m22_c00119{transform:matrix(0.304642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304642,0.000000,0.000000,0.250000,0,0);}
.mac_c00119{transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);}
.m1b_c00119{transform:matrix(0.305298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305298,0.000000,0.000000,0.250000,0,0);}
.m8e_c00119{transform:matrix(0.307464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307464,0.000000,0.000000,0.250000,0,0);}
.m56_c00119{transform:matrix(0.307853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307853,0.000000,0.000000,0.250000,0,0);}
.m10_c00119{transform:matrix(0.307919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307919,0.000000,0.000000,0.250000,0,0);}
.mc1_c00119{transform:matrix(0.308470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308470,0.000000,0.000000,0.250000,0,0);}
.m3b_c00119{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m4f_c00119{transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);}
.m88_c00119{transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);}
.mce_c00119{transform:matrix(0.309227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309227,0.000000,0.000000,0.250000,0,0);}
.m55_c00119{transform:matrix(0.309355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309355,0.000000,0.000000,0.250000,0,0);}
.m62_c00119{transform:matrix(0.310676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310676,0.000000,0.000000,0.250000,0,0);}
.m54_c00119{transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);}
.md5_c00119{transform:matrix(0.310999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310999,0.000000,0.000000,0.250000,0,0);}
.m6e_c00119{transform:matrix(0.311480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311480,0.000000,0.000000,0.250000,0,0);}
.m13_c00119{transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);}
.mba_c00119{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00119{transform:matrix(0.312744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312744,0.000000,0.000000,0.250000,0,0);}
.m44_c00119{transform:matrix(0.313839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313839,0.000000,0.000000,0.250000,0,0);}
.m8a_c00119{transform:matrix(0.313983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313983,0.000000,0.000000,0.250000,0,0);}
.m6c_c00119{transform:matrix(0.314021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314021,0.000000,0.000000,0.250000,0,0);}
.m31_c00119{transform:matrix(0.314095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314095,0.000000,0.000000,0.250000,0,0);}
.mb3_c00119{transform:matrix(0.315081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315081,0.000000,0.000000,0.250000,0,0);}
.m48_c00119{transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);}
.m1_c00119{transform:matrix(0.316371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316371,0.000000,0.000000,0.250000,0,0);}
.mcf_c00119{transform:matrix(0.316735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316735,0.000000,0.000000,0.250000,0,0);}
.md1_c00119{transform:matrix(0.316737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316737,0.000000,0.000000,0.250000,0,0);}
.m9d_c00119{transform:matrix(0.317873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317873,0.000000,0.000000,0.250000,0,0);}
.m91_c00119{transform:matrix(0.320372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320372,0.000000,0.000000,0.250000,0,0);}
.m12_c00119{transform:matrix(0.321261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321261,0.000000,0.000000,0.250000,0,0);}
.m6b_c00119{transform:matrix(0.321858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321858,0.000000,0.000000,0.250000,0,0);}
.mc0_c00119{transform:matrix(0.322679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322679,0.000000,0.000000,0.250000,0,0);}
.mda_c00119{transform:matrix(0.323322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323322,0.000000,0.000000,0.250000,0,0);}
.m4b_c00119{transform:matrix(0.323470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323470,0.000000,0.000000,0.250000,0,0);}
.m7f_c00119{transform:matrix(0.324259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324259,0.000000,0.000000,0.250000,0,0);}
.m29_c00119{transform:matrix(0.324455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324455,0.000000,0.000000,0.250000,0,0);}
.m19_c00119{transform:matrix(0.324676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324676,0.000000,0.000000,0.250000,0,0);}
.m45_c00119{transform:matrix(0.325383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325383,0.000000,0.000000,0.250000,0,0);}
.mbe_c00119{transform:matrix(0.326063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326063,0.000000,0.000000,0.250000,0,0);}
.m94_c00119{transform:matrix(0.326806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326806,0.000000,0.000000,0.250000,0,0);}
.m2e_c00119{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.mc9_c00119{transform:matrix(0.327363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327363,0.000000,0.000000,0.250000,0,0);}
.m17_c00119{transform:matrix(0.328108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328108,0.000000,0.000000,0.250000,0,0);}
.m77_c00119{transform:matrix(0.328660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328660,0.000000,0.000000,0.250000,0,0);}
.m21_c00119{transform:matrix(0.329451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329451,0.000000,0.000000,0.250000,0,0);}
.ma0_c00119{transform:matrix(0.330032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330032,0.000000,0.000000,0.250000,0,0);}
.ma6_c00119{transform:matrix(0.332220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332220,0.000000,0.000000,0.250000,0,0);}
.mc7_c00119{transform:matrix(0.332458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332458,0.000000,0.000000,0.250000,0,0);}
.mb2_c00119{transform:matrix(0.332825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332825,0.000000,0.000000,0.250000,0,0);}
.m26_c00119{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m1e_c00119{transform:matrix(0.333376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333376,0.000000,0.000000,0.250000,0,0);}
.m30_c00119{transform:matrix(0.334461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334461,0.000000,0.000000,0.250000,0,0);}
.m38_c00119{transform:matrix(0.335104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335104,0.000000,0.000000,0.250000,0,0);}
.mc2_c00119{transform:matrix(0.335561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335561,0.000000,0.000000,0.250000,0,0);}
.m41_c00119{transform:matrix(0.337138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337138,0.000000,0.000000,0.250000,0,0);}
.m6d_c00119{transform:matrix(0.337147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337147,0.000000,0.000000,0.250000,0,0);}
.m16_c00119{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.mb8_c00119{transform:matrix(0.340713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340713,0.000000,0.000000,0.250000,0,0);}
.m76_c00119{transform:matrix(0.341963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341963,0.000000,0.000000,0.250000,0,0);}
.m2b_c00119{transform:matrix(0.342809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342809,0.000000,0.000000,0.250000,0,0);}
.m46_c00119{transform:matrix(0.344328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344328,0.000000,0.000000,0.250000,0,0);}
.ma8_c00119{transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);}
.m3e_c00119{transform:matrix(0.345590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345590,0.000000,0.000000,0.250000,0,0);}
.md2_c00119{transform:matrix(0.346958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346958,0.000000,0.000000,0.250000,0,0);}
.mb7_c00119{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.mcb_c00119{transform:matrix(0.351401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351401,0.000000,0.000000,0.250000,0,0);}
.mb1_c00119{transform:matrix(0.354899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354899,0.000000,0.000000,0.250000,0,0);}
.m58_c00119{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m24_c00119{transform:matrix(0.359169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359169,0.000000,0.000000,0.250000,0,0);}
.ma1_c00119{transform:matrix(0.359822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359822,0.000000,0.000000,0.250000,0,0);}
.m9_c00119{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);}
.m98_c00119{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.md3_c00119{transform:matrix(0.368887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368887,0.000000,0.000000,0.250000,0,0);}
.m5c_c00119{transform:matrix(0.372071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372071,0.000000,0.000000,0.250000,0,0);}
.m50_c00119{transform:matrix(0.372773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372773,0.000000,0.000000,0.250000,0,0);}
.me_c00119{transform:matrix(0.378961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378961,0.000000,0.000000,0.250000,0,0);}
.m59_c00119{transform:matrix(0.385852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385852,0.000000,0.000000,0.250000,0,0);}
.mb4_c00119{transform:matrix(0.399633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399633,0.000000,0.000000,0.250000,0,0);}
.mdb_c00119{transform:matrix(0.421610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421610,0.000000,0.000000,0.250000,0,0);}
.m64_c00119{transform:matrix(0.424701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424701,0.000000,0.000000,0.250000,0,0);}
.m51_c00119{transform:matrix(0.432348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432348,0.000000,0.000000,0.250000,0,0);}
.m7d_c00119{transform:matrix(0.440068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440068,0.000000,0.000000,0.250000,0,0);}
.maa_c00119{transform:matrix(0.637362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.637362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.637362,0.000000,0.000000,0.250000,0,0);}
.v0_c00119{vertical-align:0.000000px;}
.v1_c00119{vertical-align:7.135920px;}
.ls3_c00119{letter-spacing:-2.744280px;}
.ls7_c00119{letter-spacing:-2.375762px;}
.lsa_c00119{letter-spacing:-1.427026px;}
.ls6_c00119{letter-spacing:-1.223165px;}
.ls9_c00119{letter-spacing:-1.058508px;}
.ls8_c00119{letter-spacing:-0.893851px;}
.lsc_c00119{letter-spacing:-0.250906px;}
.ls4_c00119{letter-spacing:0.000000px;}
.lsb_c00119{letter-spacing:0.533174px;}
.lse_c00119{letter-spacing:1.930500px;}
.ls0_c00119{letter-spacing:2.038608px;}
.lsd_c00119{letter-spacing:2.494810px;}
.ls12_c00119{letter-spacing:3.559723px;}
.ls10_c00119{letter-spacing:3.682810px;}
.ls2_c00119{letter-spacing:3.920400px;}
.ls11_c00119{letter-spacing:3.953822px;}
.ls5_c00119{letter-spacing:4.118400px;}
.ls1_c00119{letter-spacing:4.316400px;}
.lsf_c00119{letter-spacing:51.321798px;}
.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;}
}
.ws3_c00119{word-spacing:-23.161723px;}
.ws0_c00119{word-spacing:-21.640608px;}
.ws1_c00119{word-spacing:-19.602000px;}
.ws2_c00119{word-spacing:-4.155624px;}
.ws4_c00119{word-spacing:0.000000px;}
._12_c00119{margin-left:-11.525976px;}
._6_c00119{margin-left:-1.254528px;}
._0_c00119{width:2.352240px;}
._c_c00119{width:4.626468px;}
._d_c00119{width:6.507864px;}
._1_c00119{width:7.683984px;}
._7_c00119{width:9.173340px;}
._13_c00119{width:10.506672px;}
._e_c00119{width:12.702096px;}
._f_c00119{width:17.328168px;}
._4_c00119{width:18.504288px;}
._10_c00119{width:20.855736px;}
._2_c00119{width:22.267872px;}
._a_c00119{width:23.679216px;}
._15_c00119{width:25.090560px;}
._17_c00119{width:26.501904px;}
._16_c00119{width:27.600012px;}
._b_c00119{width:30.092198px;}
._11_c00119{width:31.809888px;}
._9_c00119{width:33.105600px;}
._3_c00119{width:36.067680px;}
._5_c00119{width:37.557432px;}
._8_c00119{width:39.674448px;}
._18_c00119{width:42.826054px;}
._19_c00119{width:45.242208px;}
._14_c00119{width:506.407176px;}
.fc0_c00119{color:transparent;}
.fsb_c00119{font-size:11.088000px;}
.fs12_c00119{font-size:22.374000px;}
.fs4_c00119{font-size:26.928000px;}
.fsf_c00119{font-size:27.720000px;}
.fsc_c00119{font-size:38.610000px;}
.fsa_c00119{font-size:38.808000px;}
.fs6_c00119{font-size:39.600000px;}
.fs11_c00119{font-size:44.748000px;}
.fs7_c00119{font-size:45.144000px;}
.fs8_c00119{font-size:49.896198px;}
.fsd_c00119{font-size:51.321798px;}
.fs13_c00119{font-size:56.628000px;}
.fs9_c00119{font-size:60.192000px;}
.fs3_c00119{font-size:64.548000px;}
.fs10_c00119{font-size:70.884000px;}
.fse_c00119{font-size:73.656198px;}
.fs5_c00119{font-size:74.844000px;}
.fs1_c00119{font-size:78.408000px;}
.fs2_c00119{font-size:82.368000px;}
.fs0_c00119{font-size:86.328000px;}
.y0_c00119{bottom:0.000000px;}
.y24_c00119{bottom:22.721535px;}
.y23_c00119{bottom:52.654185px;}
.y22_c00119{bottom:58.000185px;}
.y1_c00119{bottom:76.500000px;}
.y21_c00119{bottom:115.029135px;}
.y20_c00119{bottom:145.674585px;}
.y1f_c00119{bottom:160.648335px;}
.y1e_c00119{bottom:175.617135px;}
.y1d_c00119{bottom:210.182985px;}
.y1c_c00119{bottom:242.620335px;}
.y1b_c00119{bottom:266.850585px;}
.y1a_c00119{bottom:275.409135px;}
.y19_c00119{bottom:309.267135px;}
.y18_c00119{bottom:342.055935px;}
.y17_c00119{bottom:374.483385px;}
.y16_c00119{bottom:400.861935px;}
.y15_c00119{bottom:407.277135px;}
.y14_c00119{bottom:419.394735px;}
.y13_c00119{bottom:440.065935px;}
.y12_c00119{bottom:472.493385px;}
.y11_c00119{bottom:568.721385px;}
.y10_c00119{bottom:601.866585px;}
.yf_c00119{bottom:616.478985px;}
.ye_c00119{bottom:635.724585px;}
.yd_c00119{bottom:668.869785px;}
.yc_c00119{bottom:702.371385px;}
.yb_c00119{bottom:735.160185px;}
.ya_c00119{bottom:767.948985px;}
.y9_c00119{bottom:786.125385px;}
.y8_c00119{bottom:801.455535px;}
.y7_c00119{bottom:816.067935px;}
.y6_c00119{bottom:834.244335px;}
.y5_c00119{bottom:866.676735px;}
.y4_c00119{bottom:899.104185px;}
.y3_c00119{bottom:931.536585px;}
.y2_c00119{bottom:1082.650185px;}
.h15_c00119{height:21.958857px;}
.h7_c00119{height:28.085063px;}
.h11_c00119{height:28.911094px;}
.hf_c00119{height:34.180317px;}
.he_c00119{height:38.515737px;}
.hd_c00119{height:40.269023px;}
.hc_c00119{height:40.475531px;}
.h8_c00119{height:41.301563px;}
.h14_c00119{height:43.917715px;}
.h9_c00119{height:47.083781px;}
.ha_c00119{height:48.970390px;}
.h16_c00119{height:59.061234px;}
.hb_c00119{height:62.778375px;}
.h6_c00119{height:67.321547px;}
.h12_c00119{height:69.568770px;}
.h13_c00119{height:73.455293px;}
.h10_c00119{height:74.231637px;}
.h3_c00119{height:76.953164px;}
.h5_c00119{height:80.799469px;}
.h4_c00119{height:84.089084px;}
.h2_c00119{height:84.726211px;}
.h1_c00119{height:1110.000000px;}
.h0_c00119{height:1263.000000px;}
.w1_c00119{width:733.500000px;}
.w0_c00119{width:892.500000px;}
.x0_c00119{left:0.000000px;}
.x38_c00119{left:67.255185px;}
.x3_c00119{left:68.502585px;}
.x6c_c00119{left:69.695535px;}
.x1_c00119{left:79.500000px;}
.x11_c00119{left:90.841935px;}
.x65_c00119{left:92.114085px;}
.x1f_c00119{left:101.152785px;}
.x67_c00119{left:103.875285px;}
.x12_c00119{left:112.760535px;}
.x5f_c00119{left:114.131685px;}
.x71_c00119{left:115.280085px;}
.x1a_c00119{left:122.576385px;}
.x4_c00119{left:124.219785px;}
.x66_c00119{left:125.254335px;}
.x6d_c00119{left:126.486885px;}
.x20_c00119{left:134.525685px;}
.x72_c00119{left:136.995735px;}
.x5_c00119{left:145.970085px;}
.x59_c00119{left:147.365985px;}
.x60_c00119{left:152.746635px;}
.x3e_c00119{left:156.142335px;}
.x5a_c00119{left:158.033235px;}
.x42_c00119{left:166.403685px;}
.x3f_c00119{left:167.636235px;}
.x2b_c00119{left:168.665835px;}
.x35_c00119{left:179.085585px;}
.x1b_c00119{left:189.737985px;}
.x57_c00119{left:191.529885px;}
.x21_c00119{left:199.974585px;}
.x6_c00119{left:201.850635px;}
.x68_c00119{left:202.944585px;}
.x4d_c00119{left:212.577285px;}
.x47_c00119{left:222.368385px;}
.x39_c00119{left:223.952385px;}
.x7_c00119{left:233.837535px;}
.x53_c00119{left:234.931485px;}
.x32_c00119{left:236.203635px;}
.x43_c00119{left:245.534385px;}
.x13_c00119{left:246.761985px;}
.x6e_c00119{left:247.816335px;}
.x3a_c00119{left:257.795535px;}
.x14_c00119{left:268.160835px;}
.x61_c00119{left:269.249835px;}
.x69_c00119{left:280.288335px;}
.x8_c00119{left:290.549685px;}
.x5b_c00119{left:291.663435px;}
.x4a_c00119{left:300.098235px;}
.x22_c00119{left:301.454535px;}
.x2c_c00119{left:312.002985px;}
.x62_c00119{left:313.082085px;}
.x3b_c00119{left:323.224635px;}
.x23_c00119{left:324.407685px;}
.x1c_c00119{left:334.827435px;}
.x4b_c00119{left:336.218385px;}
.x4e_c00119{left:346.618335px;}
.x2d_c00119{left:356.924235px;}
.x24_c00119{left:357.953835px;}
.x9_c00119{left:367.957785px;}
.x5c_c00119{left:369.036885px;}
.x1d_c00119{left:379.387335px;}
.x63_c00119{left:380.807985px;}
.x25_c00119{left:390.752535px;}
.x58_c00119{left:391.787085px;}
.x64_c00119{left:402.696885px;}
.x15_c00119{left:412.517685px;}
.x33_c00119{left:413.576985px;}
.x2e_c00119{left:423.021585px;}
.xa_c00119{left:424.610535px;}
.x26_c00119{left:434.079885px;}
.x55_c00119{left:435.980685px;}
.x40_c00119{left:445.979685px;}
.x6a_c00119{left:447.434985px;}
.x44_c00119{left:455.845035px;}
.xb_c00119{left:457.414185px;}
.x48_c00119{left:467.630985px;}
.x73_c00119{left:469.551585px;}
.x6b_c00119{left:471.214785px;}
.xc_c00119{left:478.580385px;}
.x41_c00119{left:479.887185px;}
.x36_c00119{left:491.257335px;}
.x2a_c00119{left:492.376035px;}
.x31_c00119{left:496.925085px;}
.x1e_c00119{left:500.716785px;}
.x5d_c00119{left:501.756285px;}
.xd_c00119{left:512.646285px;}
.x4f_c00119{left:513.656085px;}
.x34_c00119{left:523.328385px;}
.x74_c00119{left:524.412435px;}
.x16_c00119{left:534.411435px;}
.x50_c00119{left:535.460835px;}
.x54_c00119{left:538.262535px;}
.x27_c00119{left:545.761785px;}
.x37_c00119{left:555.241035px;}
.x4c_c00119{left:557.166585px;}
.x2f_c00119{left:567.140835px;}
.xe_c00119{left:577.704135px;}
.x17_c00119{left:579.228735px;}
.x6f_c00119{left:590.237535px;}
.x3c_c00119{left:600.340485px;}
.xf_c00119{left:611.987835px;}
.x18_c00119{left:621.571035px;}
.x45_c00119{left:623.026335px;}
.x49_c00119{left:633.723285px;}
.x28_c00119{left:634.881585px;}
.x2_c00119{left:645.905235px;}
.x5e_c00119{left:648.345585px;}
.x10_c00119{left:656.107185px;}
.x51_c00119{left:657.696135px;}
.x30_c00119{left:666.121035px;}
.x29_c00119{left:667.502085px;}
.x3d_c00119{left:677.169435px;}
.x19_c00119{left:678.991035px;}
.x52_c00119{left:689.885985px;}
.x46_c00119{left:691.865985px;}
.x56_c00119{left:692.984685px;}
.x75_c00119{left:694.192485px;}
.x70_c00119{left:701.726385px;}
@media print{
.v0_c00119{vertical-align:0.000000pt;}
.v1_c00119{vertical-align:6.343040pt;}
.ls3_c00119{letter-spacing:-2.439360pt;}
.ls7_c00119{letter-spacing:-2.111789pt;}
.lsa_c00119{letter-spacing:-1.268467pt;}
.ls6_c00119{letter-spacing:-1.087258pt;}
.ls9_c00119{letter-spacing:-0.940896pt;}
.ls8_c00119{letter-spacing:-0.794534pt;}
.lsc_c00119{letter-spacing:-0.223027pt;}
.ls4_c00119{letter-spacing:0.000000pt;}
.lsb_c00119{letter-spacing:0.473933pt;}
.lse_c00119{letter-spacing:1.716000pt;}
.ls0_c00119{letter-spacing:1.812096pt;}
.lsd_c00119{letter-spacing:2.217609pt;}
.ls12_c00119{letter-spacing:3.164198pt;}
.ls10_c00119{letter-spacing:3.273609pt;}
.ls2_c00119{letter-spacing:3.484800pt;}
.ls11_c00119{letter-spacing:3.514509pt;}
.ls5_c00119{letter-spacing:3.660800pt;}
.ls1_c00119{letter-spacing:3.836800pt;}
.lsf_c00119{letter-spacing:45.619376pt;}
.ws3_c00119{word-spacing:-20.588198pt;}
.ws0_c00119{word-spacing:-19.236096pt;}
.ws1_c00119{word-spacing:-17.424000pt;}
.ws2_c00119{word-spacing:-3.693888pt;}
.ws4_c00119{word-spacing:0.000000pt;}
._12_c00119{margin-left:-10.245312pt;}
._6_c00119{margin-left:-1.115136pt;}
._0_c00119{width:2.090880pt;}
._c_c00119{width:4.112416pt;}
._d_c00119{width:5.784768pt;}
._1_c00119{width:6.830208pt;}
._7_c00119{width:8.154080pt;}
._13_c00119{width:9.339264pt;}
._e_c00119{width:11.290752pt;}
._f_c00119{width:15.402816pt;}
._4_c00119{width:16.448256pt;}
._10_c00119{width:18.538432pt;}
._2_c00119{width:19.793664pt;}
._a_c00119{width:21.048192pt;}
._15_c00119{width:22.302720pt;}
._17_c00119{width:23.557248pt;}
._16_c00119{width:24.533344pt;}
._b_c00119{width:26.748621pt;}
._11_c00119{width:28.275456pt;}
._9_c00119{width:29.427200pt;}
._3_c00119{width:32.060160pt;}
._5_c00119{width:33.384384pt;}
._8_c00119{width:35.266176pt;}
._18_c00119{width:38.067603pt;}
._19_c00119{width:40.215296pt;}
._14_c00119{width:450.139712pt;}
.fsb_c00119{font-size:9.856000pt;}
.fs12_c00119{font-size:19.888000pt;}
.fs4_c00119{font-size:23.936000pt;}
.fsf_c00119{font-size:24.640000pt;}
.fsc_c00119{font-size:34.320000pt;}
.fsa_c00119{font-size:34.496000pt;}
.fs6_c00119{font-size:35.200000pt;}
.fs11_c00119{font-size:39.776000pt;}
.fs7_c00119{font-size:40.128000pt;}
.fs8_c00119{font-size:44.352176pt;}
.fsd_c00119{font-size:45.619376pt;}
.fs13_c00119{font-size:50.336000pt;}
.fs9_c00119{font-size:53.504000pt;}
.fs3_c00119{font-size:57.376000pt;}
.fs10_c00119{font-size:63.008000pt;}
.fse_c00119{font-size:65.472176pt;}
.fs5_c00119{font-size:66.528000pt;}
.fs1_c00119{font-size:69.696000pt;}
.fs2_c00119{font-size:73.216000pt;}
.fs0_c00119{font-size:76.736000pt;}
.y0_c00119{bottom:0.000000pt;}
.y24_c00119{bottom:20.196920pt;}
.y23_c00119{bottom:46.803720pt;}
.y22_c00119{bottom:51.555720pt;}
.y1_c00119{bottom:68.000000pt;}
.y21_c00119{bottom:102.248120pt;}
.y20_c00119{bottom:129.488520pt;}
.y1f_c00119{bottom:142.798520pt;}
.y1e_c00119{bottom:156.104120pt;}
.y1d_c00119{bottom:186.829320pt;}
.y1c_c00119{bottom:215.662520pt;}
.y1b_c00119{bottom:237.200520pt;}
.y1a_c00119{bottom:244.808120pt;}
.y19_c00119{bottom:274.904120pt;}
.y18_c00119{bottom:304.049720pt;}
.y17_c00119{bottom:332.874120pt;}
.y16_c00119{bottom:356.321720pt;}
.y15_c00119{bottom:362.024120pt;}
.y14_c00119{bottom:372.795320pt;}
.y13_c00119{bottom:391.169720pt;}
.y12_c00119{bottom:419.994120pt;}
.y11_c00119{bottom:505.530120pt;}
.y10_c00119{bottom:534.992520pt;}
.yf_c00119{bottom:547.981320pt;}
.ye_c00119{bottom:565.088520pt;}
.yd_c00119{bottom:594.550920pt;}
.yc_c00119{bottom:624.330120pt;}
.yb_c00119{bottom:653.475720pt;}
.ya_c00119{bottom:682.621320pt;}
.y9_c00119{bottom:698.778120pt;}
.y8_c00119{bottom:712.404920pt;}
.y7_c00119{bottom:725.393720pt;}
.y6_c00119{bottom:741.550520pt;}
.y5_c00119{bottom:770.379320pt;}
.y4_c00119{bottom:799.203720pt;}
.y3_c00119{bottom:828.032520pt;}
.y2_c00119{bottom:962.355720pt;}
.h15_c00119{height:19.518984pt;}
.h7_c00119{height:24.964500pt;}
.h11_c00119{height:25.698750pt;}
.hf_c00119{height:30.382504pt;}
.he_c00119{height:34.236211pt;}
.hd_c00119{height:35.794688pt;}
.hc_c00119{height:35.978250pt;}
.h8_c00119{height:36.712500pt;}
.h14_c00119{height:39.037969pt;}
.h9_c00119{height:41.852250pt;}
.ha_c00119{height:43.529235pt;}
.h16_c00119{height:52.498875pt;}
.hb_c00119{height:55.803000pt;}
.h6_c00119{height:59.841375pt;}
.h12_c00119{height:61.838906pt;}
.h13_c00119{height:65.293594pt;}
.h10_c00119{height:65.983677pt;}
.h3_c00119{height:68.402813pt;}
.h5_c00119{height:71.821750pt;}
.h4_c00119{height:74.745852pt;}
.h2_c00119{height:75.312188pt;}
.h1_c00119{height:986.666667pt;}
.h0_c00119{height:1122.666667pt;}
.w1_c00119{width:652.000000pt;}
.w0_c00119{width:793.333333pt;}
.x0_c00119{left:0.000000pt;}
.x38_c00119{left:59.782387pt;}
.x3_c00119{left:60.891187pt;}
.x6c_c00119{left:61.951587pt;}
.x1_c00119{left:70.666667pt;}
.x11_c00119{left:80.748387pt;}
.x65_c00119{left:81.879187pt;}
.x1f_c00119{left:89.913587pt;}
.x67_c00119{left:92.333587pt;}
.x12_c00119{left:100.231587pt;}
.x5f_c00119{left:101.450387pt;}
.x71_c00119{left:102.471187pt;}
.x1a_c00119{left:108.956787pt;}
.x4_c00119{left:110.417587pt;}
.x66_c00119{left:111.337187pt;}
.x6d_c00119{left:112.432787pt;}
.x20_c00119{left:119.578387pt;}
.x72_c00119{left:121.773987pt;}
.x5_c00119{left:129.751187pt;}
.x59_c00119{left:130.991987pt;}
.x60_c00119{left:135.774787pt;}
.x3e_c00119{left:138.793187pt;}
.x5a_c00119{left:140.473987pt;}
.x42_c00119{left:147.914387pt;}
.x3f_c00119{left:149.009987pt;}
.x2b_c00119{left:149.925187pt;}
.x35_c00119{left:159.187187pt;}
.x1b_c00119{left:168.655987pt;}
.x57_c00119{left:170.248787pt;}
.x21_c00119{left:177.755187pt;}
.x6_c00119{left:179.422787pt;}
.x68_c00119{left:180.395187pt;}
.x4d_c00119{left:188.957587pt;}
.x47_c00119{left:197.660787pt;}
.x39_c00119{left:199.068787pt;}
.x7_c00119{left:207.855587pt;}
.x53_c00119{left:208.827987pt;}
.x32_c00119{left:209.958787pt;}
.x43_c00119{left:218.252787pt;}
.x13_c00119{left:219.343987pt;}
.x6e_c00119{left:220.281187pt;}
.x3a_c00119{left:229.151587pt;}
.x14_c00119{left:238.365187pt;}
.x61_c00119{left:239.333187pt;}
.x69_c00119{left:249.145187pt;}
.x8_c00119{left:258.266387pt;}
.x5b_c00119{left:259.256387pt;}
.x4a_c00119{left:266.753987pt;}
.x22_c00119{left:267.959587pt;}
.x2c_c00119{left:277.335987pt;}
.x62_c00119{left:278.295187pt;}
.x3b_c00119{left:287.310787pt;}
.x23_c00119{left:288.362387pt;}
.x1c_c00119{left:297.624387pt;}
.x4b_c00119{left:298.860787pt;}
.x4e_c00119{left:308.105187pt;}
.x2d_c00119{left:317.265987pt;}
.x24_c00119{left:318.181187pt;}
.x9_c00119{left:327.073587pt;}
.x5c_c00119{left:328.032787pt;}
.x1d_c00119{left:337.233187pt;}
.x63_c00119{left:338.495987pt;}
.x25_c00119{left:347.335587pt;}
.x58_c00119{left:348.255187pt;}
.x64_c00119{left:357.952787pt;}
.x15_c00119{left:366.682387pt;}
.x33_c00119{left:367.623987pt;}
.x2e_c00119{left:376.019187pt;}
.xa_c00119{left:377.431587pt;}
.x26_c00119{left:385.848787pt;}
.x55_c00119{left:387.538387pt;}
.x40_c00119{left:396.426387pt;}
.x6a_c00119{left:397.719987pt;}
.x44_c00119{left:405.195587pt;}
.xb_c00119{left:406.590387pt;}
.x48_c00119{left:415.671987pt;}
.x73_c00119{left:417.379187pt;}
.x6b_c00119{left:418.857587pt;}
.xc_c00119{left:425.404787pt;}
.x41_c00119{left:426.566387pt;}
.x36_c00119{left:436.673187pt;}
.x2a_c00119{left:437.667587pt;}
.x31_c00119{left:441.711187pt;}
.x1e_c00119{left:445.081587pt;}
.x5d_c00119{left:446.005587pt;}
.xd_c00119{left:455.685587pt;}
.x4f_c00119{left:456.583187pt;}
.x34_c00119{left:465.180787pt;}
.x74_c00119{left:466.144387pt;}
.x16_c00119{left:475.032387pt;}
.x50_c00119{left:475.965187pt;}
.x54_c00119{left:478.455587pt;}
.x27_c00119{left:485.121587pt;}
.x37_c00119{left:493.547587pt;}
.x4c_c00119{left:495.259187pt;}
.x2f_c00119{left:504.125187pt;}
.xe_c00119{left:513.514787pt;}
.x17_c00119{left:514.869987pt;}
.x6f_c00119{left:524.655587pt;}
.x3c_c00119{left:533.635987pt;}
.xf_c00119{left:543.989187pt;}
.x18_c00119{left:552.507587pt;}
.x45_c00119{left:553.801187pt;}
.x49_c00119{left:563.309587pt;}
.x28_c00119{left:564.339187pt;}
.x2_c00119{left:574.137987pt;}
.x5e_c00119{left:576.307187pt;}
.x10_c00119{left:583.206387pt;}
.x51_c00119{left:584.618787pt;}
.x30_c00119{left:592.107587pt;}
.x29_c00119{left:593.335187pt;}
.x3d_c00119{left:601.928387pt;}
.x19_c00119{left:603.547587pt;}
.x52_c00119{left:613.231987pt;}
.x46_c00119{left:614.991987pt;}
.x56_c00119{left:615.986387pt;}
.x75_c00119{left:617.059987pt;}
.x70_c00119{left:623.756787pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fffab302a477cef2d5bc436b.woff2')format("woff");}.ff1_c00120{font-family:ff1_c00120;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00120;src:url('chunks/assets/font_7f70fd92597b6c26e4417df1.woff2')format("woff");}.ff2_c00120{font-family:ff2_c00120;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00120;src:url('chunks/assets/font_9e648b75cac953dd7873cd3e.woff2')format("woff");}.ff3_c00120{font-family:ff3_c00120;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00120;src:url('chunks/assets/font_55eb758deb094fb03c3072a0.woff2')format("woff");}.ff4_c00120{font-family:ff4_c00120;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m6b_c00120{transform:matrix(0.042684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042684,0.000000,0.000000,0.250000,0,0);}
.m6a_c00120{transform:matrix(0.085366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085366,0.000000,0.000000,0.250000,0,0);}
.m24_c00120{transform:matrix(0.115394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115394,0.000000,0.000000,0.250000,0,0);}
.m71_c00120{transform:matrix(0.139895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139895,0.000000,0.000000,0.250000,0,0);}
.m6c_c00120{transform:matrix(0.153963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153963,0.000000,0.000000,0.250000,0,0);}
.m6d_c00120{transform:matrix(0.178862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178862,0.000000,0.000000,0.250000,0,0);}
.m60_c00120{transform:matrix(0.199410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199410,0.000000,0.000000,0.250000,0,0);}
.mc6_c00120{transform:matrix(0.216704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216704,0.000000,0.000000,0.250000,0,0);}
.m88_c00120{transform:matrix(0.218925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218925,0.000000,0.000000,0.250000,0,0);}
.m7c_c00120{transform:matrix(0.219067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219067,0.000000,0.000000,0.250000,0,0);}
.mbf_c00120{transform:matrix(0.226134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226134,0.000000,0.000000,0.250000,0,0);}
.mc8_c00120{transform:matrix(0.233952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233952,0.000000,0.000000,0.250000,0,0);}
.mab_c00120{transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);}
.m55_c00120{transform:matrix(0.249022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249022,0.000000,0.000000,0.250000,0,0);}
.m5_c00120{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.mc_c00120{transform:matrix(0.250258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250258,0.000000,0.000000,0.250000,0,0);}
.mb5_c00120{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.mb9_c00120{transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);}
.m7e_c00120{transform:matrix(0.252497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252497,0.000000,0.000000,0.250000,0,0);}
.m7b_c00120{transform:matrix(0.253131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253131,0.000000,0.000000,0.250000,0,0);}
.m2e_c00120{transform:matrix(0.253167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253167,0.000000,0.000000,0.250000,0,0);}
.m5e_c00120{transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);}
.m6e_c00120{transform:matrix(0.255206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255206,0.000000,0.000000,0.250000,0,0);}
.m69_c00120{transform:matrix(0.255862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255862,0.000000,0.000000,0.250000,0,0);}
.mc5_c00120{transform:matrix(0.256948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256948,0.000000,0.000000,0.250000,0,0);}
.m29_c00120{transform:matrix(0.257128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257128,0.000000,0.000000,0.250000,0,0);}
.mc1_c00120{transform:matrix(0.257280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257280,0.000000,0.000000,0.250000,0,0);}
.m66_c00120{transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);}
.m59_c00120{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m3a_c00120{transform:matrix(0.259057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259057,0.000000,0.000000,0.250000,0,0);}
.m83_c00120{transform:matrix(0.260113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260113,0.000000,0.000000,0.250000,0,0);}
.m40_c00120{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m9a_c00120{transform:matrix(0.261662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261662,0.000000,0.000000,0.250000,0,0);}
.m8a_c00120{transform:matrix(0.263068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263068,0.000000,0.000000,0.250000,0,0);}
.m9_c00120{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m74_c00120{transform:matrix(0.263720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263720,0.000000,0.000000,0.250000,0,0);}
.m94_c00120{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.ma_c00120{transform:matrix(0.265699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265699,0.000000,0.000000,0.250000,0,0);}
.m2c_c00120{transform:matrix(0.266178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266178,0.000000,0.000000,0.250000,0,0);}
.mc4_c00120{transform:matrix(0.266381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266381,0.000000,0.000000,0.250000,0,0);}
.m65_c00120{transform:matrix(0.267201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267201,0.000000,0.000000,0.250000,0,0);}
.m50_c00120{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.ma0_c00120{transform:matrix(0.267941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267941,0.000000,0.000000,0.250000,0,0);}
.m6f_c00120{transform:matrix(0.268278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268278,0.000000,0.000000,0.250000,0,0);}
.m47_c00120{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.m7f_c00120{transform:matrix(0.269061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269061,0.000000,0.000000,0.250000,0,0);}
.mb8_c00120{transform:matrix(0.269676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269676,0.000000,0.000000,0.250000,0,0);}
.m1c_c00120{transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);}
.m2b_c00120{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.maf_c00120{transform:matrix(0.272825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272825,0.000000,0.000000,0.250000,0,0);}
.m10_c00120{transform:matrix(0.273493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273493,0.000000,0.000000,0.250000,0,0);}
.m70_c00120{transform:matrix(0.273538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273538,0.000000,0.000000,0.250000,0,0);}
.m1f_c00120{transform:matrix(0.273621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273621,0.000000,0.000000,0.250000,0,0);}
.m57_c00120{transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);}
.m5b_c00120{transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);}
.m84_c00120{transform:matrix(0.275182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275182,0.000000,0.000000,0.250000,0,0);}
.m37_c00120{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m0_c00120{transform:matrix(0.276116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276116,0.000000,0.000000,0.250000,0,0);}
.m39_c00120{transform:matrix(0.276607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276607,0.000000,0.000000,0.250000,0,0);}
.m68_c00120{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m86_c00120{transform:matrix(0.277606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277606,0.000000,0.000000,0.250000,0,0);}
.m92_c00120{transform:matrix(0.279268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279268,0.000000,0.000000,0.250000,0,0);}
.m82_c00120{transform:matrix(0.280174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280174,0.000000,0.000000,0.250000,0,0);}
.m3e_c00120{transform:matrix(0.280224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280224,0.000000,0.000000,0.250000,0,0);}
.m4f_c00120{transform:matrix(0.280961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280961,0.000000,0.000000,0.250000,0,0);}
.m67_c00120{transform:matrix(0.281043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281043,0.000000,0.000000,0.250000,0,0);}
.mba_c00120{transform:matrix(0.281592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281592,0.000000,0.000000,0.250000,0,0);}
.m18_c00120{transform:matrix(0.281782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281782,0.000000,0.000000,0.250000,0,0);}
.mae_c00120{transform:matrix(0.282165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282165,0.000000,0.000000,0.250000,0,0);}
.m12_c00120{transform:matrix(0.282543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282543,0.000000,0.000000,0.250000,0,0);}
.m49_c00120{transform:matrix(0.283405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283405,0.000000,0.000000,0.250000,0,0);}
.ma9_c00120{transform:matrix(0.283440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283440,0.000000,0.000000,0.250000,0,0);}
.ma3_c00120{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m22_c00120{transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);}
.me_c00120{transform:matrix(0.284025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284025,0.000000,0.000000,0.250000,0,0);}
.m27_c00120{transform:matrix(0.284340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284340,0.000000,0.000000,0.250000,0,0);}
.ma4_c00120{transform:matrix(0.284343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284343,0.000000,0.000000,0.250000,0,0);}
.m85_c00120{transform:matrix(0.284669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284669,0.000000,0.000000,0.250000,0,0);}
.m31_c00120{transform:matrix(0.285083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285083,0.000000,0.000000,0.250000,0,0);}
.m13_c00120{transform:matrix(0.285691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285691,0.000000,0.000000,0.250000,0,0);}
.m98_c00120{transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);}
.m4c_c00120{transform:matrix(0.286659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286659,0.000000,0.000000,0.250000,0,0);}
.mbd_c00120{transform:matrix(0.286926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286926,0.000000,0.000000,0.250000,0,0);}
.ma1_c00120{transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);}
.m9b_c00120{transform:matrix(0.287254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287254,0.000000,0.000000,0.250000,0,0);}
.mbe_c00120{transform:matrix(0.288372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288372,0.000000,0.000000,0.250000,0,0);}
.mc2_c00120{transform:matrix(0.288481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288481,0.000000,0.000000,0.250000,0,0);}
.m9c_c00120{transform:matrix(0.288557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288557,0.000000,0.000000,0.250000,0,0);}
.md_c00120{transform:matrix(0.289652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289652,0.000000,0.000000,0.250000,0,0);}
.m7a_c00120{transform:matrix(0.289896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289896,0.000000,0.000000,0.250000,0,0);}
.mb7_c00120{transform:matrix(0.291905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291905,0.000000,0.000000,0.250000,0,0);}
.m3f_c00120{transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);}
.m6_c00120{transform:matrix(0.292662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292662,0.000000,0.000000,0.250000,0,0);}
.ma6_c00120{transform:matrix(0.293568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293568,0.000000,0.000000,0.250000,0,0);}
.mb0_c00120{transform:matrix(0.293651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293651,0.000000,0.000000,0.250000,0,0);}
.m1a_c00120{transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);}
.mb6_c00120{transform:matrix(0.294116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294116,0.000000,0.000000,0.250000,0,0);}
.m4a_c00120{transform:matrix(0.294807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294807,0.000000,0.000000,0.250000,0,0);}
.m4d_c00120{transform:matrix(0.294953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294953,0.000000,0.000000,0.250000,0,0);}
.m90_c00120{transform:matrix(0.294997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294997,0.000000,0.000000,0.250000,0,0);}
.mc3_c00120{transform:matrix(0.295682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295682,0.000000,0.000000,0.250000,0,0);}
.mb_c00120{transform:matrix(0.295955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295955,0.000000,0.000000,0.250000,0,0);}
.m63_c00120{transform:matrix(0.296009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296009,0.000000,0.000000,0.250000,0,0);}
.m7d_c00120{transform:matrix(0.296135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296135,0.000000,0.000000,0.250000,0,0);}
.m45_c00120{transform:matrix(0.296830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296830,0.000000,0.000000,0.250000,0,0);}
.m91_c00120{transform:matrix(0.296904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296904,0.000000,0.000000,0.250000,0,0);}
.m64_c00120{transform:matrix(0.297336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297336,0.000000,0.000000,0.250000,0,0);}
.m8f_c00120{transform:matrix(0.299321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299321,0.000000,0.000000,0.250000,0,0);}
.m52_c00120{transform:matrix(0.299939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299939,0.000000,0.000000,0.250000,0,0);}
.m3b_c00120{transform:matrix(0.300548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300548,0.000000,0.000000,0.250000,0,0);}
.m5f_c00120{transform:matrix(0.300657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300657,0.000000,0.000000,0.250000,0,0);}
.ma8_c00120{transform:matrix(0.301382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301382,0.000000,0.000000,0.250000,0,0);}
.m46_c00120{transform:matrix(0.301780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301780,0.000000,0.000000,0.250000,0,0);}
.mca_c00120{transform:matrix(0.302199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302199,0.000000,0.000000,0.250000,0,0);}
.m34_c00120{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m33_c00120{transform:matrix(0.302644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302644,0.000000,0.000000,0.250000,0,0);}
.m9f_c00120{transform:matrix(0.303278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303278,0.000000,0.000000,0.250000,0,0);}
.m35_c00120{transform:matrix(0.303868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303868,0.000000,0.000000,0.250000,0,0);}
.m93_c00120{transform:matrix(0.304039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304039,0.000000,0.000000,0.250000,0,0);}
.m62_c00120{transform:matrix(0.304295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304295,0.000000,0.000000,0.250000,0,0);}
.m4e_c00120{transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);}
.m81_c00120{transform:matrix(0.305639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305639,0.000000,0.000000,0.250000,0,0);}
.m21_c00120{transform:matrix(0.305952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305952,0.000000,0.000000,0.250000,0,0);}
.mc9_c00120{transform:matrix(0.306003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306003,0.000000,0.000000,0.250000,0,0);}
.m42_c00120{transform:matrix(0.306147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306147,0.000000,0.000000,0.250000,0,0);}
.m96_c00120{transform:matrix(0.306759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306759,0.000000,0.000000,0.250000,0,0);}
.m72_c00120{transform:matrix(0.307109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307109,0.000000,0.000000,0.250000,0,0);}
.m2_c00120{transform:matrix(0.308239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308239,0.000000,0.000000,0.250000,0,0);}
.mbb_c00120{transform:matrix(0.308319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308319,0.000000,0.000000,0.250000,0,0);}
.m16_c00120{transform:matrix(0.308886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308886,0.000000,0.000000,0.250000,0,0);}
.mb3_c00120{transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);}
.m44_c00120{transform:matrix(0.309148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309148,0.000000,0.000000,0.250000,0,0);}
.m2d_c00120{transform:matrix(0.310056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310056,0.000000,0.000000,0.250000,0,0);}
.m61_c00120{transform:matrix(0.310324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310324,0.000000,0.000000,0.250000,0,0);}
.m1d_c00120{transform:matrix(0.310673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310673,0.000000,0.000000,0.250000,0,0);}
.m2a_c00120{transform:matrix(0.310711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310711,0.000000,0.000000,0.250000,0,0);}
.ma5_c00120{transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);}
.m32_c00120{transform:matrix(0.311194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311194,0.000000,0.000000,0.250000,0,0);}
.m3_c00120{transform:matrix(0.311211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311211,0.000000,0.000000,0.250000,0,0);}
.m8b_c00120{transform:matrix(0.311441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311441,0.000000,0.000000,0.250000,0,0);}
.m20_c00120{transform:matrix(0.311969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311969,0.000000,0.000000,0.250000,0,0);}
.maa_c00120{transform:matrix(0.312047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312047,0.000000,0.000000,0.250000,0,0);}
.m7_c00120{transform:matrix(0.312507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312507,0.000000,0.000000,0.250000,0,0);}
.m4_c00120{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.mc0_c00120{transform:matrix(0.312705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312705,0.000000,0.000000,0.250000,0,0);}
.m76_c00120{transform:matrix(0.315045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315045,0.000000,0.000000,0.250000,0,0);}
.m36_c00120{transform:matrix(0.316097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316097,0.000000,0.000000,0.250000,0,0);}
.mb2_c00120{transform:matrix(0.316144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316144,0.000000,0.000000,0.250000,0,0);}
.m26_c00120{transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);}
.mc7_c00120{transform:matrix(0.317242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317242,0.000000,0.000000,0.250000,0,0);}
.mac_c00120{transform:matrix(0.317571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317571,0.000000,0.000000,0.250000,0,0);}
.m17_c00120{transform:matrix(0.317737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317737,0.000000,0.000000,0.250000,0,0);}
.ma2_c00120{transform:matrix(0.317925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317925,0.000000,0.000000,0.250000,0,0);}
.m75_c00120{transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);}
.mb4_c00120{transform:matrix(0.318980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318980,0.000000,0.000000,0.250000,0,0);}
.m3d_c00120{transform:matrix(0.319767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319767,0.000000,0.000000,0.250000,0,0);}
.m53_c00120{transform:matrix(0.321258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321258,0.000000,0.000000,0.250000,0,0);}
.m51_c00120{transform:matrix(0.321773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321773,0.000000,0.000000,0.250000,0,0);}
.m30_c00120{transform:matrix(0.322841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322841,0.000000,0.000000,0.250000,0,0);}
.mb1_c00120{transform:matrix(0.323210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323210,0.000000,0.000000,0.250000,0,0);}
.m99_c00120{transform:matrix(0.323503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323503,0.000000,0.000000,0.250000,0,0);}
.m8e_c00120{transform:matrix(0.326662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326662,0.000000,0.000000,0.250000,0,0);}
.m56_c00120{transform:matrix(0.327117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327117,0.000000,0.000000,0.250000,0,0);}
.m1_c00120{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.m77_c00120{transform:matrix(0.327727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327727,0.000000,0.000000,0.250000,0,0);}
.mbc_c00120{transform:matrix(0.328192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328192,0.000000,0.000000,0.250000,0,0);}
.m23_c00120{transform:matrix(0.328524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328524,0.000000,0.000000,0.250000,0,0);}
.m87_c00120{transform:matrix(0.330139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330139,0.000000,0.000000,0.250000,0,0);}
.m19_c00120{transform:matrix(0.330190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330190,0.000000,0.000000,0.250000,0,0);}
.ma7_c00120{transform:matrix(0.330368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330368,0.000000,0.000000,0.250000,0,0);}
.m58_c00120{transform:matrix(0.331020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331020,0.000000,0.000000,0.250000,0,0);}
.m5a_c00120{transform:matrix(0.331265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331265,0.000000,0.000000,0.250000,0,0);}
.m38_c00120{transform:matrix(0.332333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332333,0.000000,0.000000,0.250000,0,0);}
.m28_c00120{transform:matrix(0.332664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332664,0.000000,0.000000,0.250000,0,0);}
.m48_c00120{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m79_c00120{transform:matrix(0.335559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335559,0.000000,0.000000,0.250000,0,0);}
.m80_c00120{transform:matrix(0.335778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335778,0.000000,0.000000,0.250000,0,0);}
.m5c_c00120{transform:matrix(0.337061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337061,0.000000,0.000000,0.250000,0,0);}
.m2f_c00120{transform:matrix(0.338861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338861,0.000000,0.000000,0.250000,0,0);}
.m54_c00120{transform:matrix(0.338926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338926,0.000000,0.000000,0.250000,0,0);}
.m15_c00120{transform:matrix(0.339183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339183,0.000000,0.000000,0.250000,0,0);}
.m41_c00120{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m1b_c00120{transform:matrix(0.340068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340068,0.000000,0.000000,0.250000,0,0);}
.mad_c00120{transform:matrix(0.340958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340958,0.000000,0.000000,0.250000,0,0);}
.mf_c00120{transform:matrix(0.341914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341914,0.000000,0.000000,0.250000,0,0);}
.m89_c00120{transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);}
.m11_c00120{transform:matrix(0.344121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344121,0.000000,0.000000,0.250000,0,0);}
.m1e_c00120{transform:matrix(0.344891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344891,0.000000,0.000000,0.250000,0,0);}
.m25_c00120{transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);}
.m78_c00120{transform:matrix(0.346299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346299,0.000000,0.000000,0.250000,0,0);}
.m97_c00120{transform:matrix(0.348848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348848,0.000000,0.000000,0.250000,0,0);}
.m5d_c00120{transform:matrix(0.349257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349257,0.000000,0.000000,0.250000,0,0);}
.m3c_c00120{transform:matrix(0.351275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351275,0.000000,0.000000,0.250000,0,0);}
.m43_c00120{transform:matrix(0.352906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352906,0.000000,0.000000,0.250000,0,0);}
.m8_c00120{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m14_c00120{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m73_c00120{transform:matrix(0.361669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361669,0.000000,0.000000,0.250000,0,0);}
.m9e_c00120{transform:matrix(0.367117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367117,0.000000,0.000000,0.250000,0,0);}
.m95_c00120{transform:matrix(0.369771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369771,0.000000,0.000000,0.250000,0,0);}
.m8d_c00120{transform:matrix(0.385852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385852,0.000000,0.000000,0.250000,0,0);}
.m8c_c00120{transform:matrix(0.388143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388143,0.000000,0.000000,0.250000,0,0);}
.m9d_c00120{transform:matrix(0.414699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414699,0.000000,0.000000,0.250000,0,0);}
.m4b_c00120{transform:matrix(0.423078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423078,0.000000,0.000000,0.250000,0,0);}
.v0_c00120{vertical-align:0.000000px;}
.lse_c00120{letter-spacing:-3.811500px;}
.ls6_c00120{letter-spacing:-2.744280px;}
.lsa_c00120{letter-spacing:-2.375762px;}
.ls7_c00120{letter-spacing:-0.164657px;}
.ls3_c00120{letter-spacing:0.000000px;}
.ls4_c00120{letter-spacing:0.933055px;}
.ls5_c00120{letter-spacing:1.148400px;}
.ls9_c00120{letter-spacing:1.960200px;}
.lsd_c00120{letter-spacing:2.438489px;}
.lsb_c00120{letter-spacing:2.971663px;}
.lsf_c00120{letter-spacing:3.112798px;}
.ls0_c00120{letter-spacing:3.355862px;}
.ls1_c00120{letter-spacing:3.598927px;}
.ls8_c00120{letter-spacing:3.889037px;}
.ls2_c00120{letter-spacing:3.920400px;}
.ls10_c00120{letter-spacing:52.747398px;}
.lsc_c00120{letter-spacing:58.449798px;}
.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:-19.602000px;}
.ws1_c00120{word-spacing:-1.644984px;}
.ws2_c00120{word-spacing:0.000000px;}
._11_c00120{margin-left:-10.271448px;}
._13_c00120{margin-left:-8.939304px;}
._d_c00120{margin-left:-7.213140px;}
._2_c00120{width:3.841992px;}
._b_c00120{width:6.507468px;}
._14_c00120{width:8.076420px;}
._0_c00120{width:9.173736px;}
._4_c00120{width:10.506672px;}
._f_c00120{width:20.856528px;}
._3_c00120{width:22.267872px;}
._7_c00120{width:23.679216px;}
._a_c00120{width:25.090560px;}
._15_c00120{width:26.232070px;}
._c_c00120{width:28.932552px;}
._9_c00120{width:30.135600px;}
._5_c00120{width:32.617332px;}
._8_c00120{width:33.976008px;}
._e_c00120{width:35.048376px;}
._1_c00120{width:36.851760px;}
._6_c00120{width:41.595048px;}
._16_c00120{width:44.927784px;}
._10_c00120{width:46.887984px;}
._12_c00120{width:66.646800px;}
.fc0_c00120{color:transparent;}
.fsb_c00120{font-size:22.176000px;}
.fs1_c00120{font-size:22.968000px;}
.fs7_c00120{font-size:33.264000px;}
.fs4_c00120{font-size:45.144000px;}
.fs6_c00120{font-size:50.292000px;}
.fsa_c00120{font-size:52.747398px;}
.fs8_c00120{font-size:58.449798px;}
.fs2_c00120{font-size:64.548000px;}
.fs3_c00120{font-size:75.240000px;}
.fs0_c00120{font-size:78.408000px;}
.fs5_c00120{font-size:78.804000px;}
.fs9_c00120{font-size:108.900000px;}
.y0_c00120{bottom:0.000000px;}
.y1_c00120{bottom:76.500000px;}
.y20_c00120{bottom:101.485935px;}
.y1f_c00120{bottom:170.627535px;}
.y1e_c00120{bottom:205.911135px;}
.y1d_c00120{bottom:238.699935px;}
.y1c_c00120{bottom:271.483785px;}
.y1b_c00120{bottom:304.272585px;}
.y1a_c00120{bottom:336.353535px;}
.y19_c00120{bottom:369.142335px;}
.y18_c00120{bottom:401.569785px;}
.y17_c00120{bottom:433.289385px;}
.y16_c00120{bottom:466.439535px;}
.y15_c00120{bottom:498.159135px;}
.y14_c00120{bottom:532.729935px;}
.y13_c00120{bottom:564.444585px;}
.y12_c00120{bottom:601.510185px;}
.y11_c00120{bottom:628.601535px;}
.y10_c00120{bottom:642.501135px;}
.yf_c00120{bottom:660.321135px;}
.ye_c00120{bottom:692.397135px;}
.yd_c00120{bottom:724.468185px;}
.yc_c00120{bottom:757.613385px;}
.yb_c00120{bottom:788.981535px;}
.y9_c00120{bottom:789.689385px;}
.ya_c00120{bottom:803.950335px;}
.y8_c00120{bottom:824.260185px;}
.y7_c00120{bottom:838.872585px;}
.y6_c00120{bottom:857.410335px;}
.y5_c00120{bottom:880.932735px;}
.y4_c00120{bottom:891.263385px;}
.y3_c00120{bottom:926.903385px;}
.y2_c00120{bottom:1079.798985px;}
.hd_c00120{height:23.128875px;}
.h3_c00120{height:23.954906px;}
.h9_c00120{height:34.693313px;}
.hc_c00120{height:35.129767px;}
.ha_c00120{height:38.927565px;}
.h6_c00120{height:47.083781px;}
.h8_c00120{height:49.358848px;}
.h4_c00120{height:67.321547px;}
.h2_c00120{height:76.953164px;}
.h7_c00120{height:77.341816px;}
.h5_c00120{height:78.472969px;}
.hb_c00120{height:106.879395px;}
.h1_c00120{height:1110.000000px;}
.h0_c00120{height:1263.000000px;}
.w1_c00120{width:775.500000px;}
.w0_c00120{width:892.500000px;}
.x0_c00120{left:0.000000px;}
.x1b_c00120{left:46.615785px;}
.x1_c00120{left:58.500000px;}
.x42_c00120{left:76.276185px;}
.x3_c00120{left:77.454285px;}
.x63_c00120{left:78.835335px;}
.x3c_c00120{left:88.859085px;}
.x44_c00120{left:98.308635px;}
.x5e_c00120{left:109.040235px;}
.xf_c00120{left:110.634135px;}
.x6f_c00120{left:111.841935px;}
.x4_c00120{left:121.474635px;}
.x48_c00120{left:131.399385px;}
.x50_c00120{left:132.725985px;}
.x10_c00120{left:142.789335px;}
.x36_c00120{left:143.853585px;}
.x67_c00120{left:145.001985px;}
.x37_c00120{left:155.020785px;}
.x3d_c00120{left:156.228585px;}
.x49_c00120{left:164.475285px;}
.x2d_c00120{left:165.564285px;}
.x1c_c00120{left:176.553285px;}
.x68_c00120{left:177.622485px;}
.x1d_c00120{left:187.591785px;}
.x11_c00120{left:199.006485px;}
.x38_c00120{left:209.861835px;}
.x3e_c00120{left:211.074585px;}
.x1e_c00120{left:221.236935px;}
.x64_c00120{left:222.518985px;}
.x51_c00120{left:224.880135px;}
.x52_c00120{left:227.726385px;}
.x25_c00120{left:230.929035px;}
.x4a_c00120{left:232.493235px;}
.x12_c00120{left:243.205035px;}
.x5_c00120{left:244.566285px;}
.x3f_c00120{left:255.089985px;}
.x26_c00120{left:265.088985px;}
.x53_c00120{left:266.217585px;}
.x2e_c00120{left:275.746335px;}
.x4e_c00120{left:277.726335px;}
.x65_c00120{left:278.795535px;}
.x13_c00120{left:287.492685px;}
.x45_c00120{left:299.481585px;}
.x69_c00120{left:300.590385px;}
.x6_c00120{left:310.193385px;}
.x2f_c00120{left:321.608085px;}
.x4b_c00120{left:322.647585px;}
.x27_c00120{left:332.775285px;}
.x46_c00120{left:342.125835px;}
.x39_c00120{left:343.566285px;}
.x7_c00120{left:354.629535px;}
.x14_c00120{left:366.093735px;}
.x8_c00120{left:367.182735px;}
.x54_c00120{left:368.603385px;}
.x59_c00120{left:375.894735px;}
.x30_c00120{left:377.562885px;}
.x28_c00120{left:388.428135px;}
.x31_c00120{left:397.630185px;}
.x40_c00120{left:399.268635px;}
.x6c_c00120{left:400.372485px;}
.x1f_c00120{left:410.648685px;}
.x9_c00120{left:421.400085px;}
.x4f_c00120{left:422.439585px;}
.x55_c00120{left:423.870135px;}
.x32_c00120{left:431.834685px;}
.xa_c00120{left:434.289885px;}
.x3a_c00120{left:442.274235px;}
.x20_c00120{left:443.496885px;}
.x29_c00120{left:454.550235px;}
.x6d_c00120{left:456.262935px;}
.x15_c00120{left:465.885735px;}
.x1a_c00120{left:473.513685px;}
.x56_c00120{left:476.236185px;}
.x41_c00120{left:477.627135px;}
.xb_c00120{left:479.463585px;}
.x2a_c00120{left:487.680585px;}
.x5f_c00120{left:497.872635px;}
.x71_c00120{left:507.059835px;}
.x21_c00120{left:509.569485px;}
.x16_c00120{left:520.711935px;}
.x47_c00120{left:521.914785px;}
.x2b_c00120{left:532.240485px;}
.xc_c00120{left:543.249285px;}
.x70_c00120{left:546.031185px;}
.x61_c00120{left:553.431435px;}
.x6a_c00120{left:554.698635px;}
.x34_c00120{left:565.380735px;}
.x4c_c00120{left:574.855035px;}
.xd_c00120{left:576.439035px;}
.x6e_c00120{left:578.859585px;}
.x22_c00120{left:587.096385px;}
.x66_c00120{left:588.482385px;}
.x3b_c00120{left:598.154685px;}
.x6b_c00120{left:599.223885px;}
.xe_c00120{left:609.584235px;}
.x57_c00120{left:620.276235px;}
.x5a_c00120{left:623.444235px;}
.x5c_c00120{left:632.666085px;}
.x17_c00120{left:642.679935px;}
.x5b_c00120{left:652.451235px;}
.x2_c00120{left:654.431235px;}
.x60_c00120{left:663.598635px;}
.x35_c00120{left:664.697535px;}
.x62_c00120{left:666.167685px;}
.x4d_c00120{left:675.745935px;}
.x18_c00120{left:676.948785px;}
.x19_c00120{left:686.843835px;}
.x33_c00120{left:696.115185px;}
.x58_c00120{left:697.233885px;}
.x23_c00120{left:699.005985px;}
.x24_c00120{left:705.643935px;}
.x43_c00120{left:709.341585px;}
.x2c_c00120{left:712.113585px;}
.x5d_c00120{left:720.300885px;}
@media print{
.v0_c00120{vertical-align:0.000000pt;}
.lse_c00120{letter-spacing:-3.388000pt;}
.ls6_c00120{letter-spacing:-2.439360pt;}
.lsa_c00120{letter-spacing:-2.111789pt;}
.ls7_c00120{letter-spacing:-0.146362pt;}
.ls3_c00120{letter-spacing:0.000000pt;}
.ls4_c00120{letter-spacing:0.829382pt;}
.ls5_c00120{letter-spacing:1.020800pt;}
.ls9_c00120{letter-spacing:1.742400pt;}
.lsd_c00120{letter-spacing:2.167546pt;}
.lsb_c00120{letter-spacing:2.641478pt;}
.lsf_c00120{letter-spacing:2.766931pt;}
.ls0_c00120{letter-spacing:2.982989pt;}
.ls1_c00120{letter-spacing:3.199046pt;}
.ls8_c00120{letter-spacing:3.456922pt;}
.ls2_c00120{letter-spacing:3.484800pt;}
.ls10_c00120{letter-spacing:46.886576pt;}
.lsc_c00120{letter-spacing:51.955376pt;}
.ws0_c00120{word-spacing:-17.424000pt;}
.ws1_c00120{word-spacing:-1.462208pt;}
.ws2_c00120{word-spacing:0.000000pt;}
._11_c00120{margin-left:-9.130176pt;}
._13_c00120{margin-left:-7.946048pt;}
._d_c00120{margin-left:-6.411680pt;}
._2_c00120{width:3.415104pt;}
._b_c00120{width:5.784416pt;}
._14_c00120{width:7.179040pt;}
._0_c00120{width:8.154432pt;}
._4_c00120{width:9.339264pt;}
._f_c00120{width:18.539136pt;}
._3_c00120{width:19.793664pt;}
._7_c00120{width:21.048192pt;}
._a_c00120{width:22.302720pt;}
._15_c00120{width:23.317395pt;}
._c_c00120{width:25.717824pt;}
._9_c00120{width:26.787200pt;}
._5_c00120{width:28.993184pt;}
._8_c00120{width:30.200896pt;}
._e_c00120{width:31.154112pt;}
._1_c00120{width:32.757120pt;}
._6_c00120{width:36.973376pt;}
._16_c00120{width:39.935808pt;}
._10_c00120{width:41.678208pt;}
._12_c00120{width:59.241600pt;}
.fsb_c00120{font-size:19.712000pt;}
.fs1_c00120{font-size:20.416000pt;}
.fs7_c00120{font-size:29.568000pt;}
.fs4_c00120{font-size:40.128000pt;}
.fs6_c00120{font-size:44.704000pt;}
.fsa_c00120{font-size:46.886576pt;}
.fs8_c00120{font-size:51.955376pt;}
.fs2_c00120{font-size:57.376000pt;}
.fs3_c00120{font-size:66.880000pt;}
.fs0_c00120{font-size:69.696000pt;}
.fs5_c00120{font-size:70.048000pt;}
.fs9_c00120{font-size:96.800000pt;}
.y0_c00120{bottom:0.000000pt;}
.y1_c00120{bottom:68.000000pt;}
.y20_c00120{bottom:90.209720pt;}
.y1f_c00120{bottom:151.668920pt;}
.y1e_c00120{bottom:183.032120pt;}
.y1d_c00120{bottom:212.177720pt;}
.y1c_c00120{bottom:241.318920pt;}
.y1b_c00120{bottom:270.464520pt;}
.y1a_c00120{bottom:298.980920pt;}
.y19_c00120{bottom:328.126520pt;}
.y18_c00120{bottom:356.950920pt;}
.y17_c00120{bottom:385.146120pt;}
.y16_c00120{bottom:414.612920pt;}
.y15_c00120{bottom:442.808120pt;}
.y14_c00120{bottom:473.537720pt;}
.y13_c00120{bottom:501.728520pt;}
.y12_c00120{bottom:534.675720pt;}
.y11_c00120{bottom:558.756920pt;}
.y10_c00120{bottom:571.112120pt;}
.yf_c00120{bottom:586.952120pt;}
.ye_c00120{bottom:615.464120pt;}
.yd_c00120{bottom:643.971720pt;}
.yc_c00120{bottom:673.434120pt;}
.yb_c00120{bottom:701.316920pt;}
.y9_c00120{bottom:701.946120pt;}
.ya_c00120{bottom:714.622520pt;}
.y8_c00120{bottom:732.675720pt;}
.y7_c00120{bottom:745.664520pt;}
.y6_c00120{bottom:762.142520pt;}
.y5_c00120{bottom:783.051320pt;}
.y4_c00120{bottom:792.234120pt;}
.y3_c00120{bottom:823.914120pt;}
.y2_c00120{bottom:959.821320pt;}
.hd_c00120{height:20.559000pt;}
.h3_c00120{height:21.293250pt;}
.h9_c00120{height:30.838500pt;}
.hc_c00120{height:31.226460pt;}
.ha_c00120{height:34.602280pt;}
.h6_c00120{height:41.852250pt;}
.h8_c00120{height:43.874531pt;}
.h4_c00120{height:59.841375pt;}
.h2_c00120{height:68.402813pt;}
.h7_c00120{height:68.748281pt;}
.h5_c00120{height:69.753750pt;}
.hb_c00120{height:95.003906pt;}
.h1_c00120{height:986.666667pt;}
.h0_c00120{height:1122.666667pt;}
.w1_c00120{width:689.333333pt;}
.w0_c00120{width:793.333333pt;}
.x0_c00120{left:0.000000pt;}
.x1b_c00120{left:41.436253pt;}
.x1_c00120{left:52.000000pt;}
.x42_c00120{left:67.801053pt;}
.x3_c00120{left:68.848253pt;}
.x63_c00120{left:70.075853pt;}
.x3c_c00120{left:78.985853pt;}
.x44_c00120{left:87.385453pt;}
.x5e_c00120{left:96.924653pt;}
.xf_c00120{left:98.341453pt;}
.x6f_c00120{left:99.415053pt;}
.x4_c00120{left:107.977453pt;}
.x48_c00120{left:116.799453pt;}
.x50_c00120{left:117.978653pt;}
.x10_c00120{left:126.923853pt;}
.x36_c00120{left:127.869853pt;}
.x67_c00120{left:128.890653pt;}
.x37_c00120{left:137.796253pt;}
.x3d_c00120{left:138.869853pt;}
.x49_c00120{left:146.200253pt;}
.x2d_c00120{left:147.168253pt;}
.x1c_c00120{left:156.936253pt;}
.x68_c00120{left:157.886653pt;}
.x1d_c00120{left:166.748253pt;}
.x11_c00120{left:176.894653pt;}
.x38_c00120{left:186.543853pt;}
.x3e_c00120{left:187.621853pt;}
.x1e_c00120{left:196.655053pt;}
.x64_c00120{left:197.794653pt;}
.x51_c00120{left:199.893453pt;}
.x52_c00120{left:202.423453pt;}
.x25_c00120{left:205.270253pt;}
.x4a_c00120{left:206.660653pt;}
.x12_c00120{left:216.182253pt;}
.x5_c00120{left:217.392253pt;}
.x3f_c00120{left:226.746653pt;}
.x26_c00120{left:235.634653pt;}
.x53_c00120{left:236.637853pt;}
.x2e_c00120{left:245.107853pt;}
.x4e_c00120{left:246.867853pt;}
.x65_c00120{left:247.818253pt;}
.x13_c00120{left:255.549053pt;}
.x45_c00120{left:266.205853pt;}
.x69_c00120{left:267.191453pt;}
.x6_c00120{left:275.727453pt;}
.x2f_c00120{left:285.873853pt;}
.x4b_c00120{left:286.797853pt;}
.x27_c00120{left:295.800253pt;}
.x46_c00120{left:304.111853pt;}
.x39_c00120{left:305.392253pt;}
.x7_c00120{left:315.226253pt;}
.x14_c00120{left:325.416653pt;}
.x8_c00120{left:326.384653pt;}
.x54_c00120{left:327.647453pt;}
.x59_c00120{left:334.128653pt;}
.x30_c00120{left:335.611453pt;}
.x28_c00120{left:345.269453pt;}
.x31_c00120{left:353.449053pt;}
.x40_c00120{left:354.905453pt;}
.x6c_c00120{left:355.886653pt;}
.x1f_c00120{left:365.021053pt;}
.x9_c00120{left:374.577853pt;}
.x4f_c00120{left:375.501853pt;}
.x55_c00120{left:376.773453pt;}
.x32_c00120{left:383.853053pt;}
.xa_c00120{left:386.035453pt;}
.x3a_c00120{left:393.132653pt;}
.x20_c00120{left:394.219453pt;}
.x29_c00120{left:404.044653pt;}
.x6d_c00120{left:405.567053pt;}
.x15_c00120{left:414.120653pt;}
.x1a_c00120{left:420.901053pt;}
.x56_c00120{left:423.321053pt;}
.x41_c00120{left:424.557453pt;}
.xb_c00120{left:426.189853pt;}
.x2a_c00120{left:433.493853pt;}
.x5f_c00120{left:442.553453pt;}
.x71_c00120{left:450.719853pt;}
.x21_c00120{left:452.950653pt;}
.x16_c00120{left:462.855053pt;}
.x47_c00120{left:463.924253pt;}
.x2b_c00120{left:473.102653pt;}
.xc_c00120{left:482.888253pt;}
.x70_c00120{left:485.361053pt;}
.x61_c00120{left:491.939053pt;}
.x6a_c00120{left:493.065453pt;}
.x34_c00120{left:502.560653pt;}
.x4c_c00120{left:510.982253pt;}
.xd_c00120{left:512.390253pt;}
.x6e_c00120{left:514.541853pt;}
.x22_c00120{left:521.863453pt;}
.x66_c00120{left:523.095453pt;}
.x3b_c00120{left:531.693053pt;}
.x6b_c00120{left:532.643453pt;}
.xe_c00120{left:541.852653pt;}
.x57_c00120{left:551.356653pt;}
.x5a_c00120{left:554.172653pt;}
.x5c_c00120{left:562.369853pt;}
.x17_c00120{left:571.271053pt;}
.x5b_c00120{left:579.956653pt;}
.x2_c00120{left:581.716653pt;}
.x60_c00120{left:589.865453pt;}
.x35_c00120{left:590.842253pt;}
.x62_c00120{left:592.149053pt;}
.x4d_c00120{left:600.663053pt;}
.x18_c00120{left:601.732253pt;}
.x19_c00120{left:610.527853pt;}
.x33_c00120{left:618.769053pt;}
.x58_c00120{left:619.763453pt;}
.x23_c00120{left:621.338653pt;}
.x24_c00120{left:627.239053pt;}
.x43_c00120{left:630.525853pt;}
.x2c_c00120{left:632.989853pt;}
.x5d_c00120{left:640.267453pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_49e04e415091764a8f7eeec3.woff2')format("woff");}.ff1_c00121{font-family:ff1_c00121;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00121;src:url('chunks/assets/font_7c95c7f95d546c24dab60efb.woff2')format("woff");}.ff2_c00121{font-family:ff2_c00121;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00121;src:url('chunks/assets/font_6a62a296e2a56498ecd6bc34.woff2')format("woff");}.ff3_c00121{font-family:ff3_c00121;line-height:0.666000;font-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_c00121{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);}
.ma0_c00121{transform:matrix(0.173296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173296,0.000000,0.000000,0.250000,0,0);}
.m96_c00121{transform:matrix(0.178572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178572,0.000000,0.000000,0.250000,0,0);}
.m95_c00121{transform:matrix(0.186011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186011,0.000000,0.000000,0.250000,0,0);}
.m8d_c00121{transform:matrix(0.196886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196886,0.000000,0.000000,0.250000,0,0);}
.m98_c00121{transform:matrix(0.220911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220911,0.000000,0.000000,0.250000,0,0);}
.m6f_c00121{transform:matrix(0.241869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241869,0.000000,0.000000,0.250000,0,0);}
.m6_c00121{transform:matrix(0.248109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248109,0.000000,0.000000,0.250000,0,0);}
.m0_c00121{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m92_c00121{transform:matrix(0.250356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250356,0.000000,0.000000,0.250000,0,0);}
.mb_c00121{transform:matrix(0.251385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251385,0.000000,0.000000,0.250000,0,0);}
.m33_c00121{transform:matrix(0.252911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252911,0.000000,0.000000,0.250000,0,0);}
.m21_c00121{transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);}
.m23_c00121{transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);}
.m1d_c00121{transform:matrix(0.253959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253959,0.000000,0.000000,0.250000,0,0);}
.m24_c00121{transform:matrix(0.254614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254614,0.000000,0.000000,0.250000,0,0);}
.m7d_c00121{transform:matrix(0.254732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254732,0.000000,0.000000,0.250000,0,0);}
.m7b_c00121{transform:matrix(0.255317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255317,0.000000,0.000000,0.250000,0,0);}
.m5a_c00121{transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);}
.m18_c00121{transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);}
.m1a_c00121{transform:matrix(0.256689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256689,0.000000,0.000000,0.250000,0,0);}
.m3_c00121{transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);}
.m2a_c00121{transform:matrix(0.257847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257847,0.000000,0.000000,0.250000,0,0);}
.m82_c00121{transform:matrix(0.258186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258186,0.000000,0.000000,0.250000,0,0);}
.m52_c00121{transform:matrix(0.258484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258484,0.000000,0.000000,0.250000,0,0);}
.m2_c00121{transform:matrix(0.259109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259109,0.000000,0.000000,0.250000,0,0);}
.m44_c00121{transform:matrix(0.259376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259376,0.000000,0.000000,0.250000,0,0);}
.m7_c00121{transform:matrix(0.260353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260353,0.000000,0.000000,0.250000,0,0);}
.m66_c00121{transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);}
.m2d_c00121{transform:matrix(0.260366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260366,0.000000,0.000000,0.250000,0,0);}
.m6d_c00121{transform:matrix(0.261293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261293,0.000000,0.000000,0.250000,0,0);}
.m90_c00121{transform:matrix(0.261612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261612,0.000000,0.000000,0.250000,0,0);}
.m28_c00121{transform:matrix(0.261958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261958,0.000000,0.000000,0.250000,0,0);}
.m78_c00121{transform:matrix(0.262635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262635,0.000000,0.000000,0.250000,0,0);}
.m70_c00121{transform:matrix(0.262776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262776,0.000000,0.000000,0.250000,0,0);}
.m67_c00121{transform:matrix(0.263075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263075,0.000000,0.000000,0.250000,0,0);}
.m43_c00121{transform:matrix(0.263404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263404,0.000000,0.000000,0.250000,0,0);}
.m36_c00121{transform:matrix(0.263940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263940,0.000000,0.000000,0.250000,0,0);}
.m3d_c00121{transform:matrix(0.264513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264513,0.000000,0.000000,0.250000,0,0);}
.m55_c00121{transform:matrix(0.264719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264719,0.000000,0.000000,0.250000,0,0);}
.m2b_c00121{transform:matrix(0.264852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264852,0.000000,0.000000,0.250000,0,0);}
.m11_c00121{transform:matrix(0.264858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264858,0.000000,0.000000,0.250000,0,0);}
.m60_c00121{transform:matrix(0.265552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265552,0.000000,0.000000,0.250000,0,0);}
.m39_c00121{transform:matrix(0.265714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265714,0.000000,0.000000,0.250000,0,0);}
.m48_c00121{transform:matrix(0.266702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266702,0.000000,0.000000,0.250000,0,0);}
.m5b_c00121{transform:matrix(0.267754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267754,0.000000,0.000000,0.250000,0,0);}
.m12_c00121{transform:matrix(0.267761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267761,0.000000,0.000000,0.250000,0,0);}
.m3c_c00121{transform:matrix(0.268134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268134,0.000000,0.000000,0.250000,0,0);}
.m41_c00121{transform:matrix(0.268503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268503,0.000000,0.000000,0.250000,0,0);}
.m88_c00121{transform:matrix(0.268539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268539,0.000000,0.000000,0.250000,0,0);}
.m4c_c00121{transform:matrix(0.268802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268802,0.000000,0.000000,0.250000,0,0);}
.m59_c00121{transform:matrix(0.269854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269854,0.000000,0.000000,0.250000,0,0);}
.m84_c00121{transform:matrix(0.270066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270066,0.000000,0.000000,0.250000,0,0);}
.m47_c00121{transform:matrix(0.270658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270658,0.000000,0.000000,0.250000,0,0);}
.m13_c00121{transform:matrix(0.270838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270838,0.000000,0.000000,0.250000,0,0);}
.m45_c00121{transform:matrix(0.271115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271115,0.000000,0.000000,0.250000,0,0);}
.m32_c00121{transform:matrix(0.271207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271207,0.000000,0.000000,0.250000,0,0);}
.m5d_c00121{transform:matrix(0.271240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271240,0.000000,0.000000,0.250000,0,0);}
.m6e_c00121{transform:matrix(0.271640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271640,0.000000,0.000000,0.250000,0,0);}
.m46_c00121{transform:matrix(0.271925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271925,0.000000,0.000000,0.250000,0,0);}
.m9f_c00121{transform:matrix(0.272018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272018,0.000000,0.000000,0.250000,0,0);}
.m5f_c00121{transform:matrix(0.272248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272248,0.000000,0.000000,0.250000,0,0);}
.m1e_c00121{transform:matrix(0.272535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272535,0.000000,0.000000,0.250000,0,0);}
.m54_c00121{transform:matrix(0.272764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272764,0.000000,0.000000,0.250000,0,0);}
.m68_c00121{transform:matrix(0.274556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274556,0.000000,0.000000,0.250000,0,0);}
.m14_c00121{transform:matrix(0.275136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275136,0.000000,0.000000,0.250000,0,0);}
.m9d_c00121{transform:matrix(0.275215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275215,0.000000,0.000000,0.250000,0,0);}
.m2c_c00121{transform:matrix(0.277211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277211,0.000000,0.000000,0.250000,0,0);}
.md_c00121{transform:matrix(0.277277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277277,0.000000,0.000000,0.250000,0,0);}
.m85_c00121{transform:matrix(0.277432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277432,0.000000,0.000000,0.250000,0,0);}
.m74_c00121{transform:matrix(0.277590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277590,0.000000,0.000000,0.250000,0,0);}
.m8c_c00121{transform:matrix(0.277826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277826,0.000000,0.000000,0.250000,0,0);}
.m34_c00121{transform:matrix(0.278118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278118,0.000000,0.000000,0.250000,0,0);}
.m16_c00121{transform:matrix(0.278556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278556,0.000000,0.000000,0.250000,0,0);}
.m17_c00121{transform:matrix(0.278680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278680,0.000000,0.000000,0.250000,0,0);}
.m87_c00121{transform:matrix(0.278780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278780,0.000000,0.000000,0.250000,0,0);}
.m9e_c00121{transform:matrix(0.278923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278923,0.000000,0.000000,0.250000,0,0);}
.m72_c00121{transform:matrix(0.279195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279195,0.000000,0.000000,0.250000,0,0);}
.m65_c00121{transform:matrix(0.280286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280286,0.000000,0.000000,0.250000,0,0);}
.m35_c00121{transform:matrix(0.280468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280468,0.000000,0.000000,0.250000,0,0);}
.m7a_c00121{transform:matrix(0.281118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281118,0.000000,0.000000,0.250000,0,0);}
.m8a_c00121{transform:matrix(0.281467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281467,0.000000,0.000000,0.250000,0,0);}
.m6a_c00121{transform:matrix(0.281999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281999,0.000000,0.000000,0.250000,0,0);}
.m31_c00121{transform:matrix(0.282228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282228,0.000000,0.000000,0.250000,0,0);}
.m25_c00121{transform:matrix(0.283030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283030,0.000000,0.000000,0.250000,0,0);}
.m3a_c00121{transform:matrix(0.283112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283112,0.000000,0.000000,0.250000,0,0);}
.m1f_c00121{transform:matrix(0.284570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284570,0.000000,0.000000,0.250000,0,0);}
.m80_c00121{transform:matrix(0.284573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284573,0.000000,0.000000,0.250000,0,0);}
.m61_c00121{transform:matrix(0.285695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285695,0.000000,0.000000,0.250000,0,0);}
.m3e_c00121{transform:matrix(0.285792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285792,0.000000,0.000000,0.250000,0,0);}
.m4b_c00121{transform:matrix(0.286490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286490,0.000000,0.000000,0.250000,0,0);}
.m19_c00121{transform:matrix(0.287896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287896,0.000000,0.000000,0.250000,0,0);}
.m8b_c00121{transform:matrix(0.288695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288695,0.000000,0.000000,0.250000,0,0);}
.mc_c00121{transform:matrix(0.288855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288855,0.000000,0.000000,0.250000,0,0);}
.m1c_c00121{transform:matrix(0.289023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289023,0.000000,0.000000,0.250000,0,0);}
.m1b_c00121{transform:matrix(0.289920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289920,0.000000,0.000000,0.250000,0,0);}
.m57_c00121{transform:matrix(0.290586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290586,0.000000,0.000000,0.250000,0,0);}
.mf_c00121{transform:matrix(0.290667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290667,0.000000,0.000000,0.250000,0,0);}
.m9a_c00121{transform:matrix(0.290724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290724,0.000000,0.000000,0.250000,0,0);}
.m64_c00121{transform:matrix(0.290755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290755,0.000000,0.000000,0.250000,0,0);}
.m4f_c00121{transform:matrix(0.290837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290837,0.000000,0.000000,0.250000,0,0);}
.m77_c00121{transform:matrix(0.291243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291243,0.000000,0.000000,0.250000,0,0);}
.m99_c00121{transform:matrix(0.291388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291388,0.000000,0.000000,0.250000,0,0);}
.m9_c00121{transform:matrix(0.291621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291621,0.000000,0.000000,0.250000,0,0);}
.m27_c00121{transform:matrix(0.291916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291916,0.000000,0.000000,0.250000,0,0);}
.m71_c00121{transform:matrix(0.292405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292405,0.000000,0.000000,0.250000,0,0);}
.m53_c00121{transform:matrix(0.292607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292607,0.000000,0.000000,0.250000,0,0);}
.m9c_c00121{transform:matrix(0.293261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293261,0.000000,0.000000,0.250000,0,0);}
.m1_c00121{transform:matrix(0.293929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293929,0.000000,0.000000,0.250000,0,0);}
.m8_c00121{transform:matrix(0.294440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294440,0.000000,0.000000,0.250000,0,0);}
.m56_c00121{transform:matrix(0.296594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296594,0.000000,0.000000,0.250000,0,0);}
.m94_c00121{transform:matrix(0.299119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299119,0.000000,0.000000,0.250000,0,0);}
.m2f_c00121{transform:matrix(0.300611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300611,0.000000,0.000000,0.250000,0,0);}
.m81_c00121{transform:matrix(0.301712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301712,0.000000,0.000000,0.250000,0,0);}
.m38_c00121{transform:matrix(0.301804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301804,0.000000,0.000000,0.250000,0,0);}
.m49_c00121{transform:matrix(0.302358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302358,0.000000,0.000000,0.250000,0,0);}
.m3f_c00121{transform:matrix(0.302823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302823,0.000000,0.000000,0.250000,0,0);}
.m58_c00121{transform:matrix(0.302897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302897,0.000000,0.000000,0.250000,0,0);}
.m93_c00121{transform:matrix(0.303229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303229,0.000000,0.000000,0.250000,0,0);}
.m4e_c00121{transform:matrix(0.304908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304908,0.000000,0.000000,0.250000,0,0);}
.m10_c00121{transform:matrix(0.304936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304936,0.000000,0.000000,0.250000,0,0);}
.m86_c00121{transform:matrix(0.306002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306002,0.000000,0.000000,0.250000,0,0);}
.m6c_c00121{transform:matrix(0.306345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306345,0.000000,0.000000,0.250000,0,0);}
.me_c00121{transform:matrix(0.306829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306829,0.000000,0.000000,0.250000,0,0);}
.m8e_c00121{transform:matrix(0.307707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307707,0.000000,0.000000,0.250000,0,0);}
.m79_c00121{transform:matrix(0.308747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308747,0.000000,0.000000,0.250000,0,0);}
.m4a_c00121{transform:matrix(0.309365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309365,0.000000,0.000000,0.250000,0,0);}
.m7f_c00121{transform:matrix(0.309882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309882,0.000000,0.000000,0.250000,0,0);}
.m5_c00121{transform:matrix(0.310853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310853,0.000000,0.000000,0.250000,0,0);}
.m7c_c00121{transform:matrix(0.310880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310880,0.000000,0.000000,0.250000,0,0);}
.m40_c00121{transform:matrix(0.312561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312561,0.000000,0.000000,0.250000,0,0);}
.m3b_c00121{transform:matrix(0.314246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314246,0.000000,0.000000,0.250000,0,0);}
.m83_c00121{transform:matrix(0.314374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314374,0.000000,0.000000,0.250000,0,0);}
.m91_c00121{transform:matrix(0.315723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315723,0.000000,0.000000,0.250000,0,0);}
.m5e_c00121{transform:matrix(0.315977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315977,0.000000,0.000000,0.250000,0,0);}
.m42_c00121{transform:matrix(0.316486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316486,0.000000,0.000000,0.250000,0,0);}
.m69_c00121{transform:matrix(0.316777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316777,0.000000,0.000000,0.250000,0,0);}
.m51_c00121{transform:matrix(0.316986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316986,0.000000,0.000000,0.250000,0,0);}
.m26_c00121{transform:matrix(0.317866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317866,0.000000,0.000000,0.250000,0,0);}
.m6b_c00121{transform:matrix(0.317968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317968,0.000000,0.000000,0.250000,0,0);}
.ma_c00121{transform:matrix(0.318051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318051,0.000000,0.000000,0.250000,0,0);}
.m76_c00121{transform:matrix(0.320200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320200,0.000000,0.000000,0.250000,0,0);}
.m5c_c00121{transform:matrix(0.320282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320282,0.000000,0.000000,0.250000,0,0);}
.m75_c00121{transform:matrix(0.320283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320283,0.000000,0.000000,0.250000,0,0);}
.m7e_c00121{transform:matrix(0.322065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322065,0.000000,0.000000,0.250000,0,0);}
.m9b_c00121{transform:matrix(0.323729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323729,0.000000,0.000000,0.250000,0,0);}
.m29_c00121{transform:matrix(0.325725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325725,0.000000,0.000000,0.250000,0,0);}
.m62_c00121{transform:matrix(0.326105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326105,0.000000,0.000000,0.250000,0,0);}
.m20_c00121{transform:matrix(0.332074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332074,0.000000,0.000000,0.250000,0,0);}
.m4_c00121{transform:matrix(0.333044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333044,0.000000,0.000000,0.250000,0,0);}
.m50_c00121{transform:matrix(0.333345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333345,0.000000,0.000000,0.250000,0,0);}
.m8f_c00121{transform:matrix(0.334888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334888,0.000000,0.000000,0.250000,0,0);}
.m30_c00121{transform:matrix(0.336661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336661,0.000000,0.000000,0.250000,0,0);}
.m2e_c00121{transform:matrix(0.336704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336704,0.000000,0.000000,0.250000,0,0);}
.m37_c00121{transform:matrix(0.346237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346237,0.000000,0.000000,0.250000,0,0);}
.m73_c00121{transform:matrix(0.360520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360520,0.000000,0.000000,0.250000,0,0);}
.m63_c00121{transform:matrix(0.362128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362128,0.000000,0.000000,0.250000,0,0);}
.m15_c00121{transform:matrix(0.362885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362885,0.000000,0.000000,0.250000,0,0);}
.m4d_c00121{transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);}
.m22_c00121{transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);}
.m89_c00121{transform:matrix(0.376256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376256,0.000000,0.000000,0.250000,0,0);}
.v0_c00121{vertical-align:0.000000px;}
.ls8_c00121{letter-spacing:-2.855167px;}
.lsb_c00121{letter-spacing:-2.585965px;}
.ls12_c00121{letter-spacing:-2.384910px;}
.ls5_c00121{letter-spacing:0.000000px;}
.lsf_c00121{letter-spacing:0.546561px;}
.lse_c00121{letter-spacing:0.840235px;}
.ls2_c00121{letter-spacing:1.468372px;}
.ls9_c00121{letter-spacing:1.615209px;}
.lsa_c00121{letter-spacing:1.681416px;}
.lsd_c00121{letter-spacing:1.802834px;}
.ls11_c00121{letter-spacing:2.643069px;}
.ls0_c00121{letter-spacing:2.716487px;}
.ls4_c00121{letter-spacing:2.993846px;}
.ls3_c00121{letter-spacing:3.263048px;}
.ls14_c00121{letter-spacing:3.597510px;}
.lsc_c00121{letter-spacing:3.623400px;}
.ls6_c00121{letter-spacing:3.682810px;}
.ls1_c00121{letter-spacing:3.866712px;}
.ls16_c00121{letter-spacing:3.964603px;}
.ls7_c00121{letter-spacing:4.078810px;}
.ls10_c00121{letter-spacing:4.187700px;}
.ls15_c00121{letter-spacing:55.598598px;}
.ls13_c00121{letter-spacing:58.449798px;}
.ls17_c00121{letter-spacing:59.875398px;}
.ls18_c00121{letter-spacing:62.726400px;}
.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:-20.394050px;}
.ws1_c00121{word-spacing:0.000000px;}
._2_c00121{margin-left:-37.659600px;}
._1_c00121{width:14.797962px;}
._3_c00121{width:18.266877px;}
._4_c00121{width:21.659940px;}
._0_c00121{width:25.688374px;}
.fc0_c00121{color:transparent;}
.fs0_c00121{font-size:22.176000px;}
.fsa_c00121{font-size:25.146000px;}
.fsc_c00121{font-size:27.720000px;}
.fs9_c00121{font-size:34.848000px;}
.fsd_c00121{font-size:39.204000px;}
.fs14_c00121{font-size:39.600000px;}
.fsf_c00121{font-size:55.598598px;}
.fs8_c00121{font-size:58.449798px;}
.fs11_c00121{font-size:59.875398px;}
.fs12_c00121{font-size:62.726400px;}
.fs10_c00121{font-size:70.092198px;}
.fs5_c00121{font-size:72.468000px;}
.fs1_c00121{font-size:73.656198px;}
.fse_c00121{font-size:74.844000px;}
.fs3_c00121{font-size:76.428000px;}
.fs13_c00121{font-size:77.616198px;}
.fsb_c00121{font-size:78.408000px;}
.fs2_c00121{font-size:81.576198px;}
.fs4_c00121{font-size:83.556198px;}
.fs6_c00121{font-size:83.754000px;}
.fs7_c00121{font-size:86.724000px;}
.y0_c00121{bottom:0.000000px;}
.y22_c00121{bottom:46.951785px;}
.y1_c00121{bottom:76.500000px;}
.y21_c00121{bottom:79.745535px;}
.y20_c00121{bottom:127.141785px;}
.y1f_c00121{bottom:136.408185px;}
.y1e_c00121{bottom:170.271135px;}
.y1d_c00121{bottom:202.698585px;}
.y1c_c00121{bottom:234.418185px;}
.y1b_c00121{bottom:266.499135px;}
.y1a_c00121{bottom:297.857385px;}
.y19_c00121{bottom:329.220585px;}
.y13_c00121{bottom:391.951935px;}
.y18_c00121{bottom:395.154585px;}
.y17_c00121{bottom:404.777385px;}
.y16_c00121{bottom:416.538585px;}
.y15_c00121{bottom:421.884585px;}
.y12_c00121{bottom:422.958735px;}
.y14_c00121{bottom:432.937935px;}
.y11_c00121{bottom:455.034735px;}
.y10_c00121{bottom:485.680185px;}
.yf_c00121{bottom:517.756185px;}
.y2_c00121{bottom:533.442735px;}
.ye_c00121{bottom:549.480735px;}
.yd_c00121{bottom:580.843935px;}
.yc_c00121{bottom:612.914985px;}
.yb_c00121{bottom:644.995935px;}
.ya_c00121{bottom:738.372735px;}
.y9_c00121{bottom:769.379535px;}
.y8_c00121{bottom:801.099135px;}
.y7_c00121{bottom:832.457385px;}
.y6_c00121{bottom:864.538335px;}
.y5_c00121{bottom:896.609385px;}
.y4_c00121{bottom:929.041785px;}
.y3_c00121{bottom:1065.899385px;}
.h2_c00121{height:23.128875px;}
.hc_c00121{height:26.226492px;}
.h15_c00121{height:28.911094px;}
.hb_c00121{height:34.201406px;}
.hf_c00121{height:37.028666px;}
.he_c00121{height:38.476582px;}
.ha_c00121{height:38.927565px;}
.h12_c00121{height:39.877015px;}
.h16_c00121{height:41.301563px;}
.h13_c00121{height:41.775782px;}
.h7_c00121{height:71.123379px;}
.h3_c00121{height:72.289530px;}
.h11_c00121{height:73.103972px;}
.h10_c00121{height:73.455293px;}
.h5_c00121{height:75.009902px;}
.h14_c00121{height:76.176054px;}
.hd_c00121{height:76.953164px;}
.h4_c00121{height:80.062577px;}
.h6_c00121{height:82.005839px;}
.h8_c00121{height:82.199971px;}
.h9_c00121{height:85.114863px;}
.h1_c00121{height:1110.000000px;}
.h0_c00121{height:1263.000000px;}
.w1_c00121{width:775.500000px;}
.w0_c00121{width:892.500000px;}
.x0_c00121{left:0.000000px;}
.x1_c00121{left:58.500000px;}
.x2_c00121{left:63.698235px;}
.x1f_c00121{left:89.388735px;}
.xd_c00121{left:91.294485px;}
.x40_c00121{left:112.277535px;}
.x45_c00121{left:121.766685px;}
.x3c_c00121{left:123.043785px;}
.x25_c00121{left:133.245735px;}
.x57_c00121{left:134.785185px;}
.x4_c00121{left:145.348485px;}
.x4e_c00121{left:156.471135px;}
.x20_c00121{left:167.875935px;}
.x41_c00121{left:178.305585px;}
.x47_c00121{left:188.844135px;}
.xe_c00121{left:190.789485px;}
.x29_c00121{left:200.159835px;}
.x2d_c00121{left:202.120035px;}
.x17_c00121{left:211.213185px;}
.xf_c00121{left:221.969535px;}
.x46_c00121{left:223.246635px;}
.x5_c00121{left:234.290085px;}
.x18_c00121{left:245.348385px;}
.x33_c00121{left:256.134435px;}
.x2e_c00121{left:258.451035px;}
.x6_c00121{left:267.400635px;}
.x3d_c00121{left:279.538035px;}
.x19_c00121{left:290.234985px;}
.x10_c00121{left:291.957585px;}
.x2a_c00121{left:300.902235px;}
.x7_c00121{left:312.292185px;}
.x1a_c00121{left:321.811035px;}
.x55_c00121{left:322.815885px;}
.x58_c00121{left:333.532635px;}
.x2f_c00121{left:335.027535px;}
.x5c_c00121{left:344.234535px;}
.x21_c00121{left:346.442235px;}
.x3a_c00121{left:357.178785px;}
.x4f_c00121{left:366.316485px;}
.x42_c00121{left:368.291535px;}
.x11_c00121{left:378.369735px;}
.x8_c00121{left:389.690385px;}
.x1b_c00121{left:401.728785px;}
.x37_c00121{left:411.777285px;}
.x12_c00121{left:412.801935px;}
.x26_c00121{left:422.805885px;}
.x3e_c00121{left:432.978135px;}
.x9_c00121{left:434.230485px;}
.x4b_c00121{left:444.026535px;}
.x30_c00121{left:445.615485px;}
.x38_c00121{left:456.673785px;}
.x27_c00121{left:467.157885px;}
.x3f_c00121{left:468.321135px;}
.x5a_c00121{left:478.008285px;}
.x13_c00121{left:479.354685px;}
.x50_c00121{left:489.630885px;}
.x34_c00121{left:501.199035px;}
.x5d_c00121{left:508.129035px;}
.x48_c00121{left:510.673335px;}
.x14_c00121{left:511.915785px;}
.x4c_c00121{left:523.543335px;}
.xa_c00121{left:532.681035px;}
.x1c_c00121{left:534.690735px;}
.x2b_c00121{left:554.852085px;}
.x31_c00121{left:557.064735px;}
.xb_c00121{left:566.900385px;}
.x35_c00121{left:568.217085px;}
.x56_c00121{left:578.211135px;}
.x4d_c00121{left:579.255585px;}
.x22_c00121{left:588.353685px;}
.x43_c00121{left:589.601085px;}
.x36_c00121{left:600.283185px;}
.x39_c00121{left:609.782235px;}
.x1d_c00121{left:610.792035px;}
.x3_c00121{left:621.642435px;}
.x44_c00121{left:623.013585px;}
.x15_c00121{left:632.740335px;}
.x59_c00121{left:644.130285px;}
.x2c_c00121{left:654.451035px;}
.x49_c00121{left:656.247885px;}
.x28_c00121{left:665.336085px;}
.x23_c00121{left:666.608235px;}
.x52_c00121{left:677.112135px;}
.xc_c00121{left:679.022835px;}
.x5b_c00121{left:688.343685px;}
.x32_c00121{left:690.259335px;}
.x24_c00121{left:699.332685px;}
.x51_c00121{left:702.010635px;}
.x53_c00121{left:703.347135px;}
.x54_c00121{left:705.856785px;}
.x3b_c00121{left:711.385935px;}
.x4a_c00121{left:712.559085px;}
.x16_c00121{left:720.949335px;}
.x1e_c00121{left:722.503635px;}
.x5e_c00121{left:744.263835px;}
@media print{
.v0_c00121{vertical-align:0.000000pt;}
.ls8_c00121{letter-spacing:-2.537926pt;}
.lsb_c00121{letter-spacing:-2.298636pt;}
.ls12_c00121{letter-spacing:-2.119920pt;}
.ls5_c00121{letter-spacing:0.000000pt;}
.lsf_c00121{letter-spacing:0.485832pt;}
.lse_c00121{letter-spacing:0.746875pt;}
.ls2_c00121{letter-spacing:1.305219pt;}
.ls9_c00121{letter-spacing:1.435741pt;}
.lsa_c00121{letter-spacing:1.494592pt;}
.lsd_c00121{letter-spacing:1.602519pt;}
.ls11_c00121{letter-spacing:2.349395pt;}
.ls0_c00121{letter-spacing:2.414655pt;}
.ls4_c00121{letter-spacing:2.661197pt;}
.ls3_c00121{letter-spacing:2.900487pt;}
.ls14_c00121{letter-spacing:3.197787pt;}
.lsc_c00121{letter-spacing:3.220800pt;}
.ls6_c00121{letter-spacing:3.273609pt;}
.ls1_c00121{letter-spacing:3.437077pt;}
.ls16_c00121{letter-spacing:3.524092pt;}
.ls7_c00121{letter-spacing:3.625609pt;}
.ls10_c00121{letter-spacing:3.722400pt;}
.ls15_c00121{letter-spacing:49.420976pt;}
.ls13_c00121{letter-spacing:51.955376pt;}
.ls17_c00121{letter-spacing:53.222576pt;}
.ls18_c00121{letter-spacing:55.756800pt;}
.ws0_c00121{word-spacing:-18.128044pt;}
.ws1_c00121{word-spacing:0.000000pt;}
._2_c00121{margin-left:-33.475200pt;}
._1_c00121{width:13.153744pt;}
._3_c00121{width:16.237224pt;}
._4_c00121{width:19.253280pt;}
._0_c00121{width:22.834110pt;}
.fs0_c00121{font-size:19.712000pt;}
.fsa_c00121{font-size:22.352000pt;}
.fsc_c00121{font-size:24.640000pt;}
.fs9_c00121{font-size:30.976000pt;}
.fsd_c00121{font-size:34.848000pt;}
.fs14_c00121{font-size:35.200000pt;}
.fsf_c00121{font-size:49.420976pt;}
.fs8_c00121{font-size:51.955376pt;}
.fs11_c00121{font-size:53.222576pt;}
.fs12_c00121{font-size:55.756800pt;}
.fs10_c00121{font-size:62.304176pt;}
.fs5_c00121{font-size:64.416000pt;}
.fs1_c00121{font-size:65.472176pt;}
.fse_c00121{font-size:66.528000pt;}
.fs3_c00121{font-size:67.936000pt;}
.fs13_c00121{font-size:68.992176pt;}
.fsb_c00121{font-size:69.696000pt;}
.fs2_c00121{font-size:72.512176pt;}
.fs4_c00121{font-size:74.272176pt;}
.fs6_c00121{font-size:74.448000pt;}
.fs7_c00121{font-size:77.088000pt;}
.y0_c00121{bottom:0.000000pt;}
.y22_c00121{bottom:41.734920pt;}
.y1_c00121{bottom:68.000000pt;}
.y21_c00121{bottom:70.884920pt;}
.y20_c00121{bottom:113.014920pt;}
.y1f_c00121{bottom:121.251720pt;}
.y1e_c00121{bottom:151.352120pt;}
.y1d_c00121{bottom:180.176520pt;}
.y1c_c00121{bottom:208.371720pt;}
.y1b_c00121{bottom:236.888120pt;}
.y1a_c00121{bottom:264.762120pt;}
.y19_c00121{bottom:292.640520pt;}
.y13_c00121{bottom:348.401720pt;}
.y18_c00121{bottom:351.248520pt;}
.y17_c00121{bottom:359.802120pt;}
.y16_c00121{bottom:370.256520pt;}
.y15_c00121{bottom:375.008520pt;}
.y12_c00121{bottom:375.963320pt;}
.y14_c00121{bottom:384.833720pt;}
.y11_c00121{bottom:404.475320pt;}
.y10_c00121{bottom:431.715720pt;}
.yf_c00121{bottom:460.227720pt;}
.y2_c00121{bottom:474.171320pt;}
.ye_c00121{bottom:488.427320pt;}
.yd_c00121{bottom:516.305720pt;}
.yc_c00121{bottom:544.813320pt;}
.yb_c00121{bottom:573.329720pt;}
.ya_c00121{bottom:656.331320pt;}
.y9_c00121{bottom:683.892920pt;}
.y8_c00121{bottom:712.088120pt;}
.y7_c00121{bottom:739.962120pt;}
.y6_c00121{bottom:768.478520pt;}
.y5_c00121{bottom:796.986120pt;}
.y4_c00121{bottom:825.814920pt;}
.y3_c00121{bottom:947.466120pt;}
.h2_c00121{height:20.559000pt;}
.hc_c00121{height:23.312438pt;}
.h15_c00121{height:25.698750pt;}
.hb_c00121{height:30.401250pt;}
.hf_c00121{height:32.914370pt;}
.he_c00121{height:34.201406pt;}
.ha_c00121{height:34.602280pt;}
.h12_c00121{height:35.446236pt;}
.h16_c00121{height:36.712500pt;}
.h13_c00121{height:37.134029pt;}
.h7_c00121{height:63.220781pt;}
.h3_c00121{height:64.257360pt;}
.h11_c00121{height:64.981309pt;}
.h10_c00121{height:65.293594pt;}
.h5_c00121{height:66.675469pt;}
.h14_c00121{height:67.712048pt;}
.hd_c00121{height:68.402813pt;}
.h4_c00121{height:71.166735pt;}
.h6_c00121{height:72.894079pt;}
.h8_c00121{height:73.066641pt;}
.h9_c00121{height:75.657656pt;}
.h1_c00121{height:986.666667pt;}
.h0_c00121{height:1122.666667pt;}
.w1_c00121{width:689.333333pt;}
.w0_c00121{width:793.333333pt;}
.x0_c00121{left:0.000000pt;}
.x1_c00121{left:52.000000pt;}
.x2_c00121{left:56.620653pt;}
.x1f_c00121{left:79.456653pt;}
.xd_c00121{left:81.150653pt;}
.x40_c00121{left:99.802253pt;}
.x45_c00121{left:108.237053pt;}
.x3c_c00121{left:109.372253pt;}
.x25_c00121{left:118.440653pt;}
.x57_c00121{left:119.809053pt;}
.x4_c00121{left:129.198653pt;}
.x4e_c00121{left:139.085453pt;}
.x20_c00121{left:149.223053pt;}
.x41_c00121{left:158.493853pt;}
.x47_c00121{left:167.861453pt;}
.xe_c00121{left:169.590653pt;}
.x29_c00121{left:177.919853pt;}
.x2d_c00121{left:179.662253pt;}
.x17_c00121{left:187.745053pt;}
.xf_c00121{left:197.306253pt;}
.x46_c00121{left:198.441453pt;}
.x5_c00121{left:208.257853pt;}
.x18_c00121{left:218.087453pt;}
.x33_c00121{left:227.675053pt;}
.x2e_c00121{left:229.734253pt;}
.x6_c00121{left:237.689453pt;}
.x3d_c00121{left:248.478253pt;}
.x19_c00121{left:257.986653pt;}
.x10_c00121{left:259.517853pt;}
.x2a_c00121{left:267.468653pt;}
.x7_c00121{left:277.593053pt;}
.x1a_c00121{left:286.054253pt;}
.x55_c00121{left:286.947453pt;}
.x58_c00121{left:296.473453pt;}
.x2f_c00121{left:297.802253pt;}
.x5c_c00121{left:305.986253pt;}
.x21_c00121{left:307.948653pt;}
.x3a_c00121{left:317.492253pt;}
.x4f_c00121{left:325.614653pt;}
.x42_c00121{left:327.370253pt;}
.x11_c00121{left:336.328653pt;}
.x8_c00121{left:346.391453pt;}
.x1b_c00121{left:357.092253pt;}
.x37_c00121{left:366.024253pt;}
.x12_c00121{left:366.935053pt;}
.x26_c00121{left:375.827453pt;}
.x3e_c00121{left:384.869453pt;}
.x9_c00121{left:385.982653pt;}
.x4b_c00121{left:394.690253pt;}
.x30_c00121{left:396.102653pt;}
.x38_c00121{left:405.932253pt;}
.x27_c00121{left:415.251453pt;}
.x3f_c00121{left:416.285453pt;}
.x5a_c00121{left:424.896253pt;}
.x13_c00121{left:426.093053pt;}
.x50_c00121{left:435.227453pt;}
.x34_c00121{left:445.510253pt;}
.x5d_c00121{left:451.670253pt;}
.x48_c00121{left:453.931853pt;}
.x14_c00121{left:455.036253pt;}
.x4c_c00121{left:465.371853pt;}
.xa_c00121{left:473.494253pt;}
.x1c_c00121{left:475.280653pt;}
.x2b_c00121{left:493.201853pt;}
.x31_c00121{left:495.168653pt;}
.xb_c00121{left:503.911453pt;}
.x35_c00121{left:505.081853pt;}
.x56_c00121{left:513.965453pt;}
.x4d_c00121{left:514.893853pt;}
.x22_c00121{left:522.981053pt;}
.x43_c00121{left:524.089853pt;}
.x36_c00121{left:533.585053pt;}
.x39_c00121{left:542.028653pt;}
.x1d_c00121{left:542.926253pt;}
.x3_c00121{left:552.571053pt;}
.x44_c00121{left:553.789853pt;}
.x15_c00121{left:562.435853pt;}
.x59_c00121{left:572.560253pt;}
.x2c_c00121{left:581.734253pt;}
.x49_c00121{left:583.331453pt;}
.x28_c00121{left:591.409853pt;}
.x23_c00121{left:592.540653pt;}
.x52_c00121{left:601.877453pt;}
.xc_c00121{left:603.575853pt;}
.x5b_c00121{left:611.861053pt;}
.x32_c00121{left:613.563853pt;}
.x24_c00121{left:621.629053pt;}
.x51_c00121{left:624.009453pt;}
.x53_c00121{left:625.197453pt;}
.x54_c00121{left:627.428253pt;}
.x3b_c00121{left:632.343053pt;}
.x4a_c00121{left:633.385853pt;}
.x16_c00121{left:640.843853pt;}
.x1e_c00121{left:642.225453pt;}
.x5e_c00121{left:661.567853pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2ab26e252d5882ccf36efb23.woff2')format("woff");}.ff1_c00122{font-family:ff1_c00122;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00122;src:url('chunks/assets/font_48a9c771c168acf50d9170c0.woff2')format("woff");}.ff2_c00122{font-family:ff2_c00122;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00122;src:url('chunks/assets/font_1f75df636d0cf76f068afa03.woff2')format("woff");}.ff3_c00122{font-family:ff3_c00122;line-height:0.666000;font-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_c00122{transform:matrix(0.056910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056910,0.000000,0.000000,0.250000,0,0);}
.m8c_c00122{transform:matrix(0.146342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146342,0.000000,0.000000,0.250000,0,0);}
.m8a_c00122{transform:matrix(0.170731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170731,0.000000,0.000000,0.250000,0,0);}
.m8d_c00122{transform:matrix(0.170732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170732,0.000000,0.000000,0.250000,0,0);}
.m95_c00122{transform:matrix(0.170896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170896,0.000000,0.000000,0.250000,0,0);}
.mbc_c00122{transform:matrix(0.184210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184210,0.000000,0.000000,0.250000,0,0);}
.m6d_c00122{transform:matrix(0.184966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184966,0.000000,0.000000,0.250000,0,0);}
.mbb_c00122{transform:matrix(0.190790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190790,0.000000,0.000000,0.250000,0,0);}
.m5_c00122{transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);}
.m7_c00122{transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);}
.m6_c00122{transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);}
.m88_c00122{transform:matrix(0.216704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216704,0.000000,0.000000,0.250000,0,0);}
.m8_c00122{transform:matrix(0.219643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219643,0.000000,0.000000,0.250000,0,0);}
.m4_c00122{transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);}
.mce_c00122{transform:matrix(0.225922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225922,0.000000,0.000000,0.250000,0,0);}
.m26_c00122{transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);}
.m4b_c00122{transform:matrix(0.236720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236720,0.000000,0.000000,0.250000,0,0);}
.ma8_c00122{transform:matrix(0.244940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244940,0.000000,0.000000,0.250000,0,0);}
.mc1_c00122{transform:matrix(0.248291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248291,0.000000,0.000000,0.250000,0,0);}
.m0_c00122{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00122{transform:matrix(0.251593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251593,0.000000,0.000000,0.250000,0,0);}
.md9_c00122{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.ma0_c00122{transform:matrix(0.252254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252254,0.000000,0.000000,0.250000,0,0);}
.ma3_c00122{transform:matrix(0.253479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253479,0.000000,0.000000,0.250000,0,0);}
.m37_c00122{transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);}
.m3_c00122{transform:matrix(0.254261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254261,0.000000,0.000000,0.250000,0,0);}
.m40_c00122{transform:matrix(0.254597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254597,0.000000,0.000000,0.250000,0,0);}
.mae_c00122{transform:matrix(0.256057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256057,0.000000,0.000000,0.250000,0,0);}
.m78_c00122{transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);}
.m2_c00122{transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);}
.m86_c00122{transform:matrix(0.258030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258030,0.000000,0.000000,0.250000,0,0);}
.m5d_c00122{transform:matrix(0.259791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259791,0.000000,0.000000,0.250000,0,0);}
.m41_c00122{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m54_c00122{transform:matrix(0.261106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261106,0.000000,0.000000,0.250000,0,0);}
.md8_c00122{transform:matrix(0.261823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261823,0.000000,0.000000,0.250000,0,0);}
.ma_c00122{transform:matrix(0.261948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261948,0.000000,0.000000,0.250000,0,0);}
.m1e_c00122{transform:matrix(0.263105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263105,0.000000,0.000000,0.250000,0,0);}
.m2e_c00122{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m29_c00122{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.mc5_c00122{transform:matrix(0.265479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265479,0.000000,0.000000,0.250000,0,0);}
.mda_c00122{transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);}
.m1b_c00122{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m6e_c00122{transform:matrix(0.267205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267205,0.000000,0.000000,0.250000,0,0);}
.me_c00122{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m38_c00122{transform:matrix(0.268694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268694,0.000000,0.000000,0.250000,0,0);}
.m89_c00122{transform:matrix(0.268709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268709,0.000000,0.000000,0.250000,0,0);}
.m56_c00122{transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);}
.m42_c00122{transform:matrix(0.269854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269854,0.000000,0.000000,0.250000,0,0);}
.m79_c00122{transform:matrix(0.269871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269871,0.000000,0.000000,0.250000,0,0);}
.m73_c00122{transform:matrix(0.270008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270008,0.000000,0.000000,0.250000,0,0);}
.mc3_c00122{transform:matrix(0.270443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270443,0.000000,0.000000,0.250000,0,0);}
.m34_c00122{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m57_c00122{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m71_c00122{transform:matrix(0.273028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273028,0.000000,0.000000,0.250000,0,0);}
.m1c_c00122{transform:matrix(0.273394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273394,0.000000,0.000000,0.250000,0,0);}
.m48_c00122{transform:matrix(0.273725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273725,0.000000,0.000000,0.250000,0,0);}
.mc6_c00122{transform:matrix(0.273795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273795,0.000000,0.000000,0.250000,0,0);}
.m17_c00122{transform:matrix(0.274138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274138,0.000000,0.000000,0.250000,0,0);}
.m58_c00122{transform:matrix(0.274867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274867,0.000000,0.000000,0.250000,0,0);}
.mb9_c00122{transform:matrix(0.275023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275023,0.000000,0.000000,0.250000,0,0);}
.m5b_c00122{transform:matrix(0.275191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275191,0.000000,0.000000,0.250000,0,0);}
.m62_c00122{transform:matrix(0.276890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276890,0.000000,0.000000,0.250000,0,0);}
.mc2_c00122{transform:matrix(0.276983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276983,0.000000,0.000000,0.250000,0,0);}
.mc8_c00122{transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);}
.mdd_c00122{transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);}
.m9b_c00122{transform:matrix(0.277164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277164,0.000000,0.000000,0.250000,0,0);}
.m7c_c00122{transform:matrix(0.278133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278133,0.000000,0.000000,0.250000,0,0);}
.m90_c00122{transform:matrix(0.278778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278778,0.000000,0.000000,0.250000,0,0);}
.mb6_c00122{transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);}
.m75_c00122{transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);}
.md5_c00122{transform:matrix(0.280247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280247,0.000000,0.000000,0.250000,0,0);}
.ma7_c00122{transform:matrix(0.280297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280297,0.000000,0.000000,0.250000,0,0);}
.m45_c00122{transform:matrix(0.280356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280356,0.000000,0.000000,0.250000,0,0);}
.md3_c00122{transform:matrix(0.280644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280644,0.000000,0.000000,0.250000,0,0);}
.mbf_c00122{transform:matrix(0.280913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280913,0.000000,0.000000,0.250000,0,0);}
.m9a_c00122{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.m32_c00122{transform:matrix(0.281560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281560,0.000000,0.000000,0.250000,0,0);}
.m7f_c00122{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m9d_c00122{transform:matrix(0.283801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283801,0.000000,0.000000,0.250000,0,0);}
.mad_c00122{transform:matrix(0.285386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285386,0.000000,0.000000,0.250000,0,0);}
.mb1_c00122{transform:matrix(0.285627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285627,0.000000,0.000000,0.250000,0,0);}
.mab_c00122{transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);}
.m10_c00122{transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);}
.mcd_c00122{transform:matrix(0.286335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286335,0.000000,0.000000,0.250000,0,0);}
.m68_c00122{transform:matrix(0.286857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286857,0.000000,0.000000,0.250000,0,0);}
.ma2_c00122{transform:matrix(0.286926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286926,0.000000,0.000000,0.250000,0,0);}
.m6f_c00122{transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);}
.m21_c00122{transform:matrix(0.287449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287449,0.000000,0.000000,0.250000,0,0);}
.m30_c00122{transform:matrix(0.288270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288270,0.000000,0.000000,0.250000,0,0);}
.m43_c00122{transform:matrix(0.288372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288372,0.000000,0.000000,0.250000,0,0);}
.ma9_c00122{transform:matrix(0.288532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288532,0.000000,0.000000,0.250000,0,0);}
.m96_c00122{transform:matrix(0.288557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288557,0.000000,0.000000,0.250000,0,0);}
.m76_c00122{transform:matrix(0.288623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288623,0.000000,0.000000,0.250000,0,0);}
.mb_c00122{transform:matrix(0.288790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288790,0.000000,0.000000,0.250000,0,0);}
.maa_c00122{transform:matrix(0.288943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288943,0.000000,0.000000,0.250000,0,0);}
.m23_c00122{transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);}
.mb7_c00122{transform:matrix(0.289075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289075,0.000000,0.000000,0.250000,0,0);}
.md4_c00122{transform:matrix(0.289347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289347,0.000000,0.000000,0.250000,0,0);}
.m7a_c00122{transform:matrix(0.289931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289931,0.000000,0.000000,0.250000,0,0);}
.m15_c00122{transform:matrix(0.289967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289967,0.000000,0.000000,0.250000,0,0);}
.m4c_c00122{transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);}
.mac_c00122{transform:matrix(0.290785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290785,0.000000,0.000000,0.250000,0,0);}
.m1_c00122{transform:matrix(0.290924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290924,0.000000,0.000000,0.250000,0,0);}
.m87_c00122{transform:matrix(0.291645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291645,0.000000,0.000000,0.250000,0,0);}
.m18_c00122{transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);}
.m63_c00122{transform:matrix(0.292127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292127,0.000000,0.000000,0.250000,0,0);}
.m81_c00122{transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);}
.mc4_c00122{transform:matrix(0.292265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292265,0.000000,0.000000,0.250000,0,0);}
.ma5_c00122{transform:matrix(0.292392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292392,0.000000,0.000000,0.250000,0,0);}
.m51_c00122{transform:matrix(0.292987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292987,0.000000,0.000000,0.250000,0,0);}
.m9_c00122{transform:matrix(0.293214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293214,0.000000,0.000000,0.250000,0,0);}
.m92_c00122{transform:matrix(0.293485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293485,0.000000,0.000000,0.250000,0,0);}
.mcb_c00122{transform:matrix(0.293544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293544,0.000000,0.000000,0.250000,0,0);}
.m60_c00122{transform:matrix(0.293903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293903,0.000000,0.000000,0.250000,0,0);}
.m4e_c00122{transform:matrix(0.294266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294266,0.000000,0.000000,0.250000,0,0);}
.m6b_c00122{transform:matrix(0.294494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294494,0.000000,0.000000,0.250000,0,0);}
.m9f_c00122{transform:matrix(0.294655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294655,0.000000,0.000000,0.250000,0,0);}
.m36_c00122{transform:matrix(0.294846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294846,0.000000,0.000000,0.250000,0,0);}
.m55_c00122{transform:matrix(0.294890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294890,0.000000,0.000000,0.250000,0,0);}
.mb8_c00122{transform:matrix(0.294898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294898,0.000000,0.000000,0.250000,0,0);}
.mb3_c00122{transform:matrix(0.295009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295009,0.000000,0.000000,0.250000,0,0);}
.m9c_c00122{transform:matrix(0.296006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296006,0.000000,0.000000,0.250000,0,0);}
.m3a_c00122{transform:matrix(0.296379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296379,0.000000,0.000000,0.250000,0,0);}
.mbd_c00122{transform:matrix(0.296436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296436,0.000000,0.000000,0.250000,0,0);}
.m3c_c00122{transform:matrix(0.297073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297073,0.000000,0.000000,0.250000,0,0);}
.m61_c00122{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m2d_c00122{transform:matrix(0.297268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297268,0.000000,0.000000,0.250000,0,0);}
.mdc_c00122{transform:matrix(0.297382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297382,0.000000,0.000000,0.250000,0,0);}
.mcc_c00122{transform:matrix(0.298177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298177,0.000000,0.000000,0.250000,0,0);}
.ma6_c00122{transform:matrix(0.298477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298477,0.000000,0.000000,0.250000,0,0);}
.m3d_c00122{transform:matrix(0.298673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298673,0.000000,0.000000,0.250000,0,0);}
.m97_c00122{transform:matrix(0.298711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298711,0.000000,0.000000,0.250000,0,0);}
.m33_c00122{transform:matrix(0.299932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299932,0.000000,0.000000,0.250000,0,0);}
.m5c_c00122{transform:matrix(0.300777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300777,0.000000,0.000000,0.250000,0,0);}
.m99_c00122{transform:matrix(0.301117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301117,0.000000,0.000000,0.250000,0,0);}
.mca_c00122{transform:matrix(0.301939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301939,0.000000,0.000000,0.250000,0,0);}
.m8f_c00122{transform:matrix(0.302241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302241,0.000000,0.000000,0.250000,0,0);}
.m59_c00122{transform:matrix(0.302588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302588,0.000000,0.000000,0.250000,0,0);}
.m49_c00122{transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);}
.mba_c00122{transform:matrix(0.303162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303162,0.000000,0.000000,0.250000,0,0);}
.m67_c00122{transform:matrix(0.303826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303826,0.000000,0.000000,0.250000,0,0);}
.md_c00122{transform:matrix(0.304254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304254,0.000000,0.000000,0.250000,0,0);}
.m9e_c00122{transform:matrix(0.305459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305459,0.000000,0.000000,0.250000,0,0);}
.m7d_c00122{transform:matrix(0.306319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306319,0.000000,0.000000,0.250000,0,0);}
.m2c_c00122{transform:matrix(0.307097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307097,0.000000,0.000000,0.250000,0,0);}
.m19_c00122{transform:matrix(0.307247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307247,0.000000,0.000000,0.250000,0,0);}
.mb0_c00122{transform:matrix(0.307896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307896,0.000000,0.000000,0.250000,0,0);}
.m84_c00122{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m72_c00122{transform:matrix(0.308710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308710,0.000000,0.000000,0.250000,0,0);}
.m13_c00122{transform:matrix(0.308789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308789,0.000000,0.000000,0.250000,0,0);}
.m2a_c00122{transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);}
.m12_c00122{transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);}
.m64_c00122{transform:matrix(0.309256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309256,0.000000,0.000000,0.250000,0,0);}
.m44_c00122{transform:matrix(0.309467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309467,0.000000,0.000000,0.250000,0,0);}
.m5e_c00122{transform:matrix(0.310506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310506,0.000000,0.000000,0.250000,0,0);}
.m7e_c00122{transform:matrix(0.310694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310694,0.000000,0.000000,0.250000,0,0);}
.m66_c00122{transform:matrix(0.311028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311028,0.000000,0.000000,0.250000,0,0);}
.m93_c00122{transform:matrix(0.311211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311211,0.000000,0.000000,0.250000,0,0);}
.m46_c00122{transform:matrix(0.312047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312047,0.000000,0.000000,0.250000,0,0);}
.m31_c00122{transform:matrix(0.312507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312507,0.000000,0.000000,0.250000,0,0);}
.m2f_c00122{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.m85_c00122{transform:matrix(0.313369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313369,0.000000,0.000000,0.250000,0,0);}
.m83_c00122{transform:matrix(0.313480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313480,0.000000,0.000000,0.250000,0,0);}
.m77_c00122{transform:matrix(0.313756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313756,0.000000,0.000000,0.250000,0,0);}
.m3f_c00122{transform:matrix(0.313924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313924,0.000000,0.000000,0.250000,0,0);}
.mb5_c00122{transform:matrix(0.314011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314011,0.000000,0.000000,0.250000,0,0);}
.m20_c00122{transform:matrix(0.314146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314146,0.000000,0.000000,0.250000,0,0);}
.m8e_c00122{transform:matrix(0.314940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314940,0.000000,0.000000,0.250000,0,0);}
.ma1_c00122{transform:matrix(0.314943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314943,0.000000,0.000000,0.250000,0,0);}
.mc0_c00122{transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);}
.m4f_c00122{transform:matrix(0.316571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316571,0.000000,0.000000,0.250000,0,0);}
.m24_c00122{transform:matrix(0.316811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316811,0.000000,0.000000,0.250000,0,0);}
.m52_c00122{transform:matrix(0.316995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316995,0.000000,0.000000,0.250000,0,0);}
.m50_c00122{transform:matrix(0.317031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317031,0.000000,0.000000,0.250000,0,0);}
.m25_c00122{transform:matrix(0.317704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317704,0.000000,0.000000,0.250000,0,0);}
.m80_c00122{transform:matrix(0.318910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318910,0.000000,0.000000,0.250000,0,0);}
.mb2_c00122{transform:matrix(0.319333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319333,0.000000,0.000000,0.250000,0,0);}
.ma4_c00122{transform:matrix(0.319634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319634,0.000000,0.000000,0.250000,0,0);}
.m74_c00122{transform:matrix(0.319854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319854,0.000000,0.000000,0.250000,0,0);}
.m98_c00122{transform:matrix(0.321059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321059,0.000000,0.000000,0.250000,0,0);}
.m11_c00122{transform:matrix(0.321407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321407,0.000000,0.000000,0.250000,0,0);}
.maf_c00122{transform:matrix(0.321739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321739,0.000000,0.000000,0.250000,0,0);}
.m7b_c00122{transform:matrix(0.322750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322750,0.000000,0.000000,0.250000,0,0);}
.m91_c00122{transform:matrix(0.323114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323114,0.000000,0.000000,0.250000,0,0);}
.mc9_c00122{transform:matrix(0.323133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323133,0.000000,0.000000,0.250000,0,0);}
.m94_c00122{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.m4d_c00122{transform:matrix(0.323720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323720,0.000000,0.000000,0.250000,0,0);}
.mdb_c00122{transform:matrix(0.323745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323745,0.000000,0.000000,0.250000,0,0);}
.m35_c00122{transform:matrix(0.324031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324031,0.000000,0.000000,0.250000,0,0);}
.m39_c00122{transform:matrix(0.326100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326100,0.000000,0.000000,0.250000,0,0);}
.m6c_c00122{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.md2_c00122{transform:matrix(0.329679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329679,0.000000,0.000000,0.250000,0,0);}
.m1d_c00122{transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);}
.m2b_c00122{transform:matrix(0.330860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330860,0.000000,0.000000,0.250000,0,0);}
.m5f_c00122{transform:matrix(0.331244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331244,0.000000,0.000000,0.250000,0,0);}
.mc_c00122{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.mf_c00122{transform:matrix(0.333645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333645,0.000000,0.000000,0.250000,0,0);}
.m47_c00122{transform:matrix(0.334461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334461,0.000000,0.000000,0.250000,0,0);}
.m14_c00122{transform:matrix(0.335804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335804,0.000000,0.000000,0.250000,0,0);}
.m4a_c00122{transform:matrix(0.337061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337061,0.000000,0.000000,0.250000,0,0);}
.m16_c00122{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m1f_c00122{transform:matrix(0.343691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343691,0.000000,0.000000,0.250000,0,0);}
.m27_c00122{transform:matrix(0.343768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343768,0.000000,0.000000,0.250000,0,0);}
.m69_c00122{transform:matrix(0.343889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343889,0.000000,0.000000,0.250000,0,0);}
.md1_c00122{transform:matrix(0.345987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345987,0.000000,0.000000,0.250000,0,0);}
.m1a_c00122{transform:matrix(0.347328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347328,0.000000,0.000000,0.250000,0,0);}
.m22_c00122{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m82_c00122{transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);}
.m5a_c00122{transform:matrix(0.350422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350422,0.000000,0.000000,0.250000,0,0);}
.m6a_c00122{transform:matrix(0.350446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350446,0.000000,0.000000,0.250000,0,0);}
.m65_c00122{transform:matrix(0.351571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351571,0.000000,0.000000,0.250000,0,0);}
.mb4_c00122{transform:matrix(0.352464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352464,0.000000,0.000000,0.250000,0,0);}
.mbe_c00122{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.md6_c00122{transform:matrix(0.360514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360514,0.000000,0.000000,0.250000,0,0);}
.m28_c00122{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m3e_c00122{transform:matrix(0.366157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366157,0.000000,0.000000,0.250000,0,0);}
.md7_c00122{transform:matrix(0.366396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366396,0.000000,0.000000,0.250000,0,0);}
.mcf_c00122{transform:matrix(0.371331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371331,0.000000,0.000000,0.250000,0,0);}
.m70_c00122{transform:matrix(0.378961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378961,0.000000,0.000000,0.250000,0,0);}
.m53_c00122{transform:matrix(0.414699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414699,0.000000,0.000000,0.250000,0,0);}
.mc7_c00122{transform:matrix(0.421610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421610,0.000000,0.000000,0.250000,0,0);}
.md0_c00122{transform:matrix(0.432348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432348,0.000000,0.000000,0.250000,0,0);}
.v1_c00122{vertical-align:-28.512000px;}
.v0_c00122{vertical-align:0.000000px;}
.ls7_c00122{letter-spacing:-2.744280px;}
.ls9_c00122{letter-spacing:-1.677931px;}
.ls2_c00122{letter-spacing:0.000000px;}
.ls1_c00122{letter-spacing:1.960200px;}
.lsd_c00122{letter-spacing:3.167683px;}
.ls0_c00122{letter-spacing:3.206887px;}
.ls8_c00122{letter-spacing:3.722400px;}
.ls3_c00122{letter-spacing:3.752110px;}
.ls4_c00122{letter-spacing:3.920400px;}
.ls6_c00122{letter-spacing:3.950110px;}
.lsb_c00122{letter-spacing:4.435200px;}
.ls5_c00122{letter-spacing:49.896198px;}
.lsc_c00122{letter-spacing:54.172998px;}
.lsa_c00122{letter-spacing:58.449798px;}
.sc__c00122{text-shadow:none;}
.sc0_c00122{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00122{-webkit-text-stroke:0px transparent;}
.sc0_c00122{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00122{word-spacing:-19.602000px;}
.ws0_c00122{word-spacing:0.000000px;}
.ws3_c00122{word-spacing:2.037816px;}
.ws2_c00122{word-spacing:5.018112px;}
._1_c00122{width:6.899904px;}
._8_c00122{width:7.919208px;}
._6_c00122{width:10.585080px;}
._b_c00122{width:11.918808px;}
._3_c00122{width:20.855736px;}
._5_c00122{width:22.267476px;}
._0_c00122{width:26.506102px;}
._9_c00122{width:29.550312px;}
._7_c00122{width:32.068872px;}
._a_c00122{width:33.081048px;}
._c_c00122{width:34.506648px;}
._4_c00122{width:35.536248px;}
._2_c00122{width:36.930168px;}
._d_c00122{width:38.184696px;}
._e_c00122{width:1695.710808px;}
.fc0_c00122{color:transparent;}
.fsd_c00122{font-size:22.176000px;}
.fs0_c00122{font-size:27.720000px;}
.fsf_c00122{font-size:33.264000px;}
.fsb_c00122{font-size:39.600000px;}
.fs3_c00122{font-size:49.896198px;}
.fsc_c00122{font-size:54.172998px;}
.fse_c00122{font-size:56.628000px;}
.fs8_c00122{font-size:58.449798px;}
.fsa_c00122{font-size:60.192000px;}
.fs7_c00122{font-size:64.548000px;}
.fs5_c00122{font-size:70.884000px;}
.fs6_c00122{font-size:74.448000px;}
.fs1_c00122{font-size:75.042198px;}
.fs2_c00122{font-size:78.408000px;}
.fs4_c00122{font-size:79.002198px;}
.fs9_c00122{font-size:88.704000px;}
.y0_c00122{bottom:0.000000px;}
.y23_c00122{bottom:26.998335px;}
.y1_c00122{bottom:76.500000px;}
.y22_c00122{bottom:87.948279px;}
.y20_c00122{bottom:142.115535px;}
.y21_c00122{bottom:156.015135px;}
.y1f_c00122{bottom:173.117385px;}
.y1e_c00122{bottom:208.757385px;}
.y1d_c00122{bottom:221.592735px;}
.y1c_c00122{bottom:241.907535px;}
.y1b_c00122{bottom:254.737935px;}
.y1a_c00122{bottom:275.047785px;}
.y19_c00122{bottom:288.947385px;}
.y18_c00122{bottom:307.841535px;}
.y17_c00122{bottom:333.858735px;}
.y16_c00122{bottom:340.630335px;}
.y15_c00122{bottom:372.344985px;}
.y14_c00122{bottom:405.138735px;}
.y13_c00122{bottom:437.927535px;}
.y12_c00122{bottom:470.003535px;}
.y11_c00122{bottom:502.787385px;}
.y10_c00122{bottom:535.219785px;}
.yf_c00122{bottom:567.652185px;}
.ye_c00122{bottom:600.440985px;}
.yd_c00122{bottom:632.873385px;}
.yc_c00122{bottom:665.305785px;}
.yb_c00122{bottom:730.175535px;}
.ya_c00122{bottom:762.607935px;}
.y9_c00122{bottom:794.678985px;}
.y8_c00122{bottom:827.467785px;}
.y7_c00122{bottom:859.905135px;}
.y6_c00122{bottom:893.406735px;}
.y5_c00122{bottom:925.834185px;}
.y4_c00122{bottom:1021.349385px;}
.y3_c00122{bottom:1078.016985px;}
.y2_c00122{bottom:1081.580985px;}
.hf_c00122{height:23.128875px;}
.h2_c00122{height:28.911094px;}
.h5_c00122{height:33.230868px;}
.h11_c00122{height:34.693313px;}
.he_c00122{height:36.079217px;}
.ha_c00122{height:38.927565px;}
.hd_c00122{height:41.301563px;}
.h10_c00122{height:59.061234px;}
.hc_c00122{height:62.778375px;}
.h9_c00122{height:67.321547px;}
.h7_c00122{height:69.568770px;}
.h8_c00122{height:73.066641px;}
.h3_c00122{height:73.649813px;}
.h4_c00122{height:76.953164px;}
.h6_c00122{height:77.536337px;}
.hb_c00122{height:87.058125px;}
.h1_c00122{height:1110.000000px;}
.h0_c00122{height:1263.000000px;}
.w1_c00122{width:733.500000px;}
.w0_c00122{width:892.500000px;}
.x0_c00122{left:0.000000px;}
.x1_c00122{left:79.500000px;}
.x15_c00122{left:81.050835px;}
.x39_c00122{left:82.124985px;}
.x5_c00122{left:83.189235px;}
.x6e_c00122{left:84.248535px;}
.x43_c00122{left:103.038735px;}
.x16_c00122{left:104.182185px;}
.x6_c00122{left:114.958335px;}
.x68_c00122{left:116.205735px;}
.x1e_c00122{left:126.308685px;}
.x3f_c00122{left:136.738335px;}
.x72_c00122{left:138.802485px;}
.x7_c00122{left:147.212535px;}
.x37_c00122{left:148.707435px;}
.x62_c00122{left:149.781585px;}
.x2f_c00122{left:158.280735px;}
.x8_c00122{left:159.686535px;}
.x9_c00122{left:170.017185px;}
.x30_c00122{left:171.195285px;}
.x3a_c00122{left:181.209135px;}
.x6a_c00122{left:182.461485px;}
.xa_c00122{left:192.475335px;}
.xb_c00122{left:202.810935px;}
.x57_c00122{left:204.355335px;}
.x28_c00122{left:213.097035px;}
.x3b_c00122{left:214.364235px;}
.x6f_c00122{left:215.710635px;}
.x5b_c00122{left:216.883785px;}
.x17_c00122{left:225.729435px;}
.x29_c00122{left:235.906635px;}
.x31_c00122{left:238.653885px;}
.x51_c00122{left:246.994635px;}
.x69_c00122{left:248.930085px;}
.xc_c00122{left:258.498435px;}
.x3c_c00122{left:259.894335px;}
.x77_c00122{left:267.185685px;}
.x58_c00122{left:271.239735px;}
.x1f_c00122{left:281.011035px;}
.x4e_c00122{left:282.055485px;}
.x73_c00122{left:283.490985px;}
.x18_c00122{left:291.148635px;}
.x3d_c00122{left:292.430685px;}
.x52_c00122{left:293.460285px;}
.xd_c00122{left:303.449385px;}
.x2a_c00122{left:304.508685px;}
.x56_c00122{left:314.864085px;}
.x6b_c00122{left:315.933285px;}
.x44_c00122{left:325.338285px;}
.x66_c00122{left:326.610435px;}
.x2b_c00122{left:336.559935px;}
.x20_c00122{left:347.628135px;}
.x63_c00122{left:348.959685px;}
.x4f_c00122{left:359.770485px;}
.x21_c00122{left:369.205185px;}
.x3e_c00122{left:370.269435px;}
.x32_c00122{left:380.619885px;}
.x45_c00122{left:381.788085px;}
.x19_c00122{left:392.004885px;}
.x6c_c00122{left:393.970035px;}
.xe_c00122{left:403.973985px;}
.x70_c00122{left:405.033285px;}
.x22_c00122{left:414.477885px;}
.x4a_c00122{left:416.022285px;}
.x4_c00122{left:418.675485px;}
.xf_c00122{left:425.516385px;}
.x71_c00122{left:426.917235px;}
.x23_c00122{left:435.173835px;}
.x33_c00122{left:437.094435px;}
.x74_c00122{left:438.569535px;}
.x48_c00122{left:447.969585px;}
.x10_c00122{left:459.483285px;}
.x40_c00122{left:470.699985px;}
.x53_c00122{left:481.179135px;}
.x4b_c00122{left:482.337435px;}
.x2_c00122{left:485.678685px;}
.x11_c00122{left:491.801835px;}
.x24_c00122{left:504.092685px;}
.x2c_c00122{left:513.542235px;}
.x1a_c00122{left:514.720335px;}
.x5f_c00122{left:515.843985px;}
.x5c_c00122{left:517.947735px;}
.x2d_c00122{left:525.852885px;}
.x75_c00122{left:526.922085px;}
.x61_c00122{left:530.198985px;}
.x25_c00122{left:536.510235px;}
.x1b_c00122{left:547.028985px;}
.x54_c00122{left:548.994135px;}
.x41_c00122{left:558.453585px;}
.x26_c00122{left:568.789185px;}
.x46_c00122{left:570.714735px;}
.x59_c00122{left:573.551085px;}
.x34_c00122{left:581.060235px;}
.x12_c00122{left:591.074085px;}
.x5d_c00122{left:592.499685px;}
.x2e_c00122{left:602.657085px;}
.x6d_c00122{left:604.572735px;}
.x38_c00122{left:612.611535px;}
.x1c_c00122{left:613.759935px;}
.x5e_c00122{left:614.908335px;}
.x4c_c00122{left:617.021985px;}
.x13_c00122{left:624.402435px;}
.x50_c00122{left:625.422135px;}
.x60_c00122{left:635.470635px;}
.x42_c00122{left:637.331835px;}
.x27_c00122{left:645.840885px;}
.x1d_c00122{left:647.350635px;}
.x64_c00122{left:648.419835px;}
.x3_c00122{left:658.022835px;}
.x5a_c00122{left:660.156285px;}
.x14_c00122{left:667.546635px;}
.x35_c00122{left:669.571185px;}
.x47_c00122{left:680.886885px;}
.x65_c00122{left:681.931335px;}
.x4d_c00122{left:691.321485px;}
.x55_c00122{left:692.667885px;}
.x36_c00122{left:695.558685px;}
.x76_c00122{left:697.139715px;}
.x49_c00122{left:703.320285px;}
.x67_c00122{left:725.763585px;}
@media print{
.v1_c00122{vertical-align:-25.344000pt;}
.v0_c00122{vertical-align:0.000000pt;}
.ls7_c00122{letter-spacing:-2.439360pt;}
.ls9_c00122{letter-spacing:-1.491494pt;}
.ls2_c00122{letter-spacing:0.000000pt;}
.ls1_c00122{letter-spacing:1.742400pt;}
.lsd_c00122{letter-spacing:2.815718pt;}
.ls0_c00122{letter-spacing:2.850566pt;}
.ls8_c00122{letter-spacing:3.308800pt;}
.ls3_c00122{letter-spacing:3.335209pt;}
.ls4_c00122{letter-spacing:3.484800pt;}
.ls6_c00122{letter-spacing:3.511209pt;}
.lsb_c00122{letter-spacing:3.942400pt;}
.ls5_c00122{letter-spacing:44.352176pt;}
.lsc_c00122{letter-spacing:48.153776pt;}
.lsa_c00122{letter-spacing:51.955376pt;}
.ws1_c00122{word-spacing:-17.424000pt;}
.ws0_c00122{word-spacing:0.000000pt;}
.ws3_c00122{word-spacing:1.811392pt;}
.ws2_c00122{word-spacing:4.460544pt;}
._1_c00122{width:6.133248pt;}
._8_c00122{width:7.039296pt;}
._6_c00122{width:9.408960pt;}
._b_c00122{width:10.594496pt;}
._3_c00122{width:18.538432pt;}
._5_c00122{width:19.793312pt;}
._0_c00122{width:23.560979pt;}
._9_c00122{width:26.266944pt;}
._7_c00122{width:28.505664pt;}
._a_c00122{width:29.405376pt;}
._c_c00122{width:30.672576pt;}
._4_c00122{width:31.587776pt;}
._2_c00122{width:32.826816pt;}
._d_c00122{width:33.941952pt;}
._e_c00122{width:1507.298496pt;}
.fsd_c00122{font-size:19.712000pt;}
.fs0_c00122{font-size:24.640000pt;}
.fsf_c00122{font-size:29.568000pt;}
.fsb_c00122{font-size:35.200000pt;}
.fs3_c00122{font-size:44.352176pt;}
.fsc_c00122{font-size:48.153776pt;}
.fse_c00122{font-size:50.336000pt;}
.fs8_c00122{font-size:51.955376pt;}
.fsa_c00122{font-size:53.504000pt;}
.fs7_c00122{font-size:57.376000pt;}
.fs5_c00122{font-size:63.008000pt;}
.fs6_c00122{font-size:66.176000pt;}
.fs1_c00122{font-size:66.704176pt;}
.fs2_c00122{font-size:69.696000pt;}
.fs4_c00122{font-size:70.224176pt;}
.fs9_c00122{font-size:78.848000pt;}
.y0_c00122{bottom:0.000000pt;}
.y23_c00122{bottom:23.998520pt;}
.y1_c00122{bottom:68.000000pt;}
.y22_c00122{bottom:78.176248pt;}
.y20_c00122{bottom:126.324920pt;}
.y21_c00122{bottom:138.680120pt;}
.y1f_c00122{bottom:153.882120pt;}
.y1e_c00122{bottom:185.562120pt;}
.y1d_c00122{bottom:196.971320pt;}
.y1c_c00122{bottom:215.028920pt;}
.y1b_c00122{bottom:226.433720pt;}
.y1a_c00122{bottom:244.486920pt;}
.y19_c00122{bottom:256.842120pt;}
.y18_c00122{bottom:273.636920pt;}
.y17_c00122{bottom:296.763320pt;}
.y16_c00122{bottom:302.782520pt;}
.y15_c00122{bottom:330.973320pt;}
.y14_c00122{bottom:360.123320pt;}
.y13_c00122{bottom:389.268920pt;}
.y12_c00122{bottom:417.780920pt;}
.y11_c00122{bottom:446.922120pt;}
.y10_c00122{bottom:475.750920pt;}
.yf_c00122{bottom:504.579720pt;}
.ye_c00122{bottom:533.725320pt;}
.yd_c00122{bottom:562.554120pt;}
.yc_c00122{bottom:591.382920pt;}
.yb_c00122{bottom:649.044920pt;}
.ya_c00122{bottom:677.873720pt;}
.y9_c00122{bottom:706.381320pt;}
.y8_c00122{bottom:735.526920pt;}
.y7_c00122{bottom:764.360120pt;}
.y6_c00122{bottom:794.139320pt;}
.y5_c00122{bottom:822.963720pt;}
.y4_c00122{bottom:907.866120pt;}
.y3_c00122{bottom:958.237320pt;}
.y2_c00122{bottom:961.405320pt;}
.hf_c00122{height:20.559000pt;}
.h2_c00122{height:25.698750pt;}
.h5_c00122{height:29.538549pt;}
.h11_c00122{height:30.838500pt;}
.he_c00122{height:32.070415pt;}
.ha_c00122{height:34.602280pt;}
.hd_c00122{height:36.712500pt;}
.h10_c00122{height:52.498875pt;}
.hc_c00122{height:55.803000pt;}
.h9_c00122{height:59.841375pt;}
.h7_c00122{height:61.838906pt;}
.h8_c00122{height:64.948125pt;}
.h3_c00122{height:65.466501pt;}
.h4_c00122{height:68.402813pt;}
.h6_c00122{height:68.921188pt;}
.hb_c00122{height:77.385000pt;}
.h1_c00122{height:986.666667pt;}
.h0_c00122{height:1122.666667pt;}
.w1_c00122{width:652.000000pt;}
.w0_c00122{width:793.333333pt;}
.x0_c00122{left:0.000000pt;}
.x1_c00122{left:70.666667pt;}
.x15_c00122{left:72.045187pt;}
.x39_c00122{left:72.999987pt;}
.x5_c00122{left:73.945987pt;}
.x6e_c00122{left:74.887587pt;}
.x43_c00122{left:91.589987pt;}
.x16_c00122{left:92.606387pt;}
.x6_c00122{left:102.185187pt;}
.x68_c00122{left:103.293987pt;}
.x1e_c00122{left:112.274387pt;}
.x3f_c00122{left:121.545187pt;}
.x72_c00122{left:123.379987pt;}
.x7_c00122{left:130.855587pt;}
.x37_c00122{left:132.184387pt;}
.x62_c00122{left:133.139187pt;}
.x2f_c00122{left:140.693987pt;}
.x8_c00122{left:141.943587pt;}
.x9_c00122{left:151.126387pt;}
.x30_c00122{left:152.173587pt;}
.x3a_c00122{left:161.074787pt;}
.x6a_c00122{left:162.187987pt;}
.xa_c00122{left:171.089187pt;}
.xb_c00122{left:180.276387pt;}
.x57_c00122{left:181.649187pt;}
.x28_c00122{left:189.419587pt;}
.x3b_c00122{left:190.545987pt;}
.x6f_c00122{left:191.742787pt;}
.x5b_c00122{left:192.785587pt;}
.x17_c00122{left:200.648387pt;}
.x29_c00122{left:209.694787pt;}
.x31_c00122{left:212.136787pt;}
.x51_c00122{left:219.550787pt;}
.x69_c00122{left:221.271187pt;}
.xc_c00122{left:229.776387pt;}
.x3c_c00122{left:231.017187pt;}
.x77_c00122{left:237.498387pt;}
.x58_c00122{left:241.101987pt;}
.x1f_c00122{left:249.787587pt;}
.x4e_c00122{left:250.715987pt;}
.x73_c00122{left:251.991987pt;}
.x18_c00122{left:258.798787pt;}
.x3d_c00122{left:259.938387pt;}
.x52_c00122{left:260.853587pt;}
.xd_c00122{left:269.732787pt;}
.x2a_c00122{left:270.674387pt;}
.x56_c00122{left:279.879187pt;}
.x6b_c00122{left:280.829587pt;}
.x44_c00122{left:289.189587pt;}
.x66_c00122{left:290.320387pt;}
.x2b_c00122{left:299.164387pt;}
.x20_c00122{left:309.002787pt;}
.x63_c00122{left:310.186387pt;}
.x4f_c00122{left:319.795987pt;}
.x21_c00122{left:328.182387pt;}
.x3e_c00122{left:329.128387pt;}
.x32_c00122{left:338.328787pt;}
.x45_c00122{left:339.367187pt;}
.x19_c00122{left:348.448787pt;}
.x6c_c00122{left:350.195587pt;}
.xe_c00122{left:359.087987pt;}
.x70_c00122{left:360.029587pt;}
.x22_c00122{left:368.424787pt;}
.x4a_c00122{left:369.797587pt;}
.x4_c00122{left:372.155987pt;}
.xf_c00122{left:378.236787pt;}
.x71_c00122{left:379.481987pt;}
.x23_c00122{left:386.821187pt;}
.x33_c00122{left:388.528387pt;}
.x74_c00122{left:389.839587pt;}
.x48_c00122{left:398.195187pt;}
.x10_c00122{left:408.429587pt;}
.x40_c00122{left:418.399987pt;}
.x53_c00122{left:427.714787pt;}
.x4b_c00122{left:428.744387pt;}
.x2_c00122{left:431.714387pt;}
.x11_c00122{left:437.157187pt;}
.x24_c00122{left:448.082387pt;}
.x2c_c00122{left:456.481987pt;}
.x1a_c00122{left:457.529187pt;}
.x5f_c00122{left:458.527987pt;}
.x5c_c00122{left:460.397987pt;}
.x2d_c00122{left:467.424787pt;}
.x75_c00122{left:468.375187pt;}
.x61_c00122{left:471.287987pt;}
.x25_c00122{left:476.897987pt;}
.x1b_c00122{left:486.247987pt;}
.x54_c00122{left:487.994787pt;}
.x41_c00122{left:496.403187pt;}
.x26_c00122{left:505.590387pt;}
.x46_c00122{left:507.301987pt;}
.x59_c00122{left:509.823187pt;}
.x34_c00122{left:516.497987pt;}
.x12_c00122{left:525.399187pt;}
.x5d_c00122{left:526.666387pt;}
.x2e_c00122{left:535.695187pt;}
.x6d_c00122{left:537.397987pt;}
.x38_c00122{left:544.543587pt;}
.x1c_c00122{left:545.564387pt;}
.x5e_c00122{left:546.585187pt;}
.x4c_c00122{left:548.463987pt;}
.x13_c00122{left:555.024387pt;}
.x50_c00122{left:555.930787pt;}
.x60_c00122{left:564.862787pt;}
.x42_c00122{left:566.517187pt;}
.x27_c00122{left:574.080787pt;}
.x1d_c00122{left:575.422787pt;}
.x64_c00122{left:576.373187pt;}
.x3_c00122{left:584.909187pt;}
.x5a_c00122{left:586.805587pt;}
.x14_c00122{left:593.374787pt;}
.x35_c00122{left:595.174387pt;}
.x47_c00122{left:605.232787pt;}
.x65_c00122{left:606.161187pt;}
.x4d_c00122{left:614.507987pt;}
.x55_c00122{left:615.704787pt;}
.x36_c00122{left:618.274387pt;}
.x76_c00122{left:619.679747pt;}
.x49_c00122{left:625.173587pt;}
.x67_c00122{left:645.123187pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_53a8aaddb187344a4ddd41c7.woff2')format("woff");}.ff1_c00123{font-family:ff1_c00123;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00123;src:url('chunks/assets/font_43913528e24eb2132c2b20f2.woff2')format("woff");}.ff2_c00123{font-family:ff2_c00123;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00123;src:url('chunks/assets/font_db1fbf6d206358b5a3676aae.woff2')format("woff");}.ff3_c00123{font-family:ff3_c00123;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00123;src:url('chunks/assets/font_718dd29fffa7cc0b56988410.woff2')format("woff");}.ff4_c00123{font-family:ff4_c00123;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m14_c00123{transform:matrix(0.071429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071429,0.000000,0.000000,0.250000,0,0);}
.m8_c00123{transform:matrix(0.207176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207176,0.000000,0.000000,0.250000,0,0);}
.m13_c00123{transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);}
.m3_c00123{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m10_c00123{transform:matrix(0.257747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257747,0.000000,0.000000,0.250000,0,0);}
.m16_c00123{transform:matrix(0.259641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259641,0.000000,0.000000,0.250000,0,0);}
.mf_c00123{transform:matrix(0.266002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266002,0.000000,0.000000,0.250000,0,0);}
.md_c00123{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m5_c00123{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.ma_c00123{transform:matrix(0.270977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270977,0.000000,0.000000,0.250000,0,0);}
.m2_c00123{transform:matrix(0.278381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278381,0.000000,0.000000,0.250000,0,0);}
.m11_c00123{transform:matrix(0.280858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280858,0.000000,0.000000,0.250000,0,0);}
.m1a_c00123{transform:matrix(0.281072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281072,0.000000,0.000000,0.250000,0,0);}
.m12_c00123{transform:matrix(0.285319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285319,0.000000,0.000000,0.250000,0,0);}
.m0_c00123{transform:matrix(0.294248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294248,0.000000,0.000000,0.250000,0,0);}
.m15_c00123{transform:matrix(0.298226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298226,0.000000,0.000000,0.250000,0,0);}
.m1_c00123{transform:matrix(0.298698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298698,0.000000,0.000000,0.250000,0,0);}
.m17_c00123{transform:matrix(0.303829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303829,0.000000,0.000000,0.250000,0,0);}
.mb_c00123{transform:matrix(0.306809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306809,0.000000,0.000000,0.250000,0,0);}
.m9_c00123{transform:matrix(0.313434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313434,0.000000,0.000000,0.250000,0,0);}
.m7_c00123{transform:matrix(0.315515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315515,0.000000,0.000000,0.250000,0,0);}
.mc_c00123{transform:matrix(0.322978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322978,0.000000,0.000000,0.250000,0,0);}
.m18_c00123{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.m4_c00123{transform:matrix(0.331500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331500,0.000000,0.000000,0.250000,0,0);}
.me_c00123{transform:matrix(0.332332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332332,0.000000,0.000000,0.250000,0,0);}
.m6_c00123{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m19_c00123{transform:matrix(0.340141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340141,0.000000,0.000000,0.250000,0,0);}
.v0_c00123{vertical-align:0.000000px;}
.ls2_c00123{letter-spacing:0.000000px;}
.ls0_c00123{letter-spacing:3.722400px;}
.ls1_c00123{letter-spacing:3.920400px;}
.ls4_c00123{letter-spacing:49.896198px;}
.ls3_c00123{letter-spacing:51.321798px;}
.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:-19.602000px;}
.ws1_c00123{word-spacing:0.000000px;}
._0_c00123{width:9.095328px;}
._1_c00123{width:23.600808px;}
.fc0_c00123{color:transparent;}
.fs9_c00123{font-size:22.176000px;}
.fs6_c00123{font-size:28.314000px;}
.fs5_c00123{font-size:33.264000px;}
.fs7_c00123{font-size:34.056198px;}
.fs3_c00123{font-size:34.848000px;}
.fs4_c00123{font-size:49.896198px;}
.fs2_c00123{font-size:51.321798px;}
.fs8_c00123{font-size:60.192000px;}
.fs0_c00123{font-size:74.448000px;}
.fs1_c00123{font-size:78.408000px;}
.y0_c00123{bottom:0.000000px;}
.y1_c00123{bottom:76.500000px;}
.yb_c00123{bottom:221.592735px;}
.ya_c00123{bottom:563.736735px;}
.y9_c00123{bottom:610.425135px;}
.y8_c00123{bottom:636.798735px;}
.y7_c00123{bottom:863.107785px;}
.y6_c00123{bottom:888.055785px;}
.y5_c00123{bottom:896.965785px;}
.y4_c00123{bottom:916.567785px;}
.y3_c00123{bottom:929.754585px;}
.y2_c00123{bottom:1080.511785px;}
.hb_c00123{height:23.128875px;}
.h8_c00123{height:27.788643px;}
.h6_c00123{height:33.230868px;}
.h9_c00123{height:33.424296px;}
.h4_c00123{height:34.180317px;}
.h5_c00123{height:34.201406px;}
.h7_c00123{height:34.693313px;}
.ha_c00123{height:62.778375px;}
.h2_c00123{height:75.029625px;}
.h3_c00123{height:76.953164px;}
.h1_c00123{height:1110.000000px;}
.h0_c00123{height:1263.000000px;}
.w1_c00123{width:733.500000px;}
.w0_c00123{width:892.500000px;}
.x0_c00123{left:0.000000px;}
.x20_c00123{left:41.955735px;}
.x3_c00123{left:70.962735px;}
.x18_c00123{left:72.462585px;}
.x1_c00123{left:79.500000px;}
.x19_c00123{left:137.376885px;}
.x4_c00123{left:160.864635px;}
.x1a_c00123{left:169.254885px;}
.x10_c00123{left:204.023685px;}
.x5_c00123{left:215.428485px;}
.x6_c00123{left:226.278885px;}
.x1b_c00123{left:237.104535px;}
.x11_c00123{left:238.584585px;}
.x12_c00123{left:260.280435px;}
.x7_c00123{left:305.572935px;}
.x8_c00123{left:338.658735px;}
.x9_c00123{left:372.091035px;}
.x1c_c00123{left:394.316535px;}
.x1d_c00123{left:426.753885px;}
.xa_c00123{left:436.604385px;}
.x1e_c00123{left:470.937585px;}
.x22_c00123{left:490.282185px;}
.xb_c00123{left:515.160885px;}
.x13_c00123{left:525.649935px;}
.xc_c00123{left:538.618935px;}
.x14_c00123{left:569.536635px;}
.xd_c00123{left:593.029335px;}
.x1f_c00123{left:604.939035px;}
.xe_c00123{left:626.679435px;}
.x23_c00123{left:634.322235px;}
.x15_c00123{left:648.098085px;}
.x2_c00123{left:650.285985px;}
.x16_c00123{left:671.120535px;}
.x21_c00123{left:693.073785px;}
.xf_c00123{left:694.197435px;}
.x17_c00123{left:697.004085px;}
@media print{
.v0_c00123{vertical-align:0.000000pt;}
.ls2_c00123{letter-spacing:0.000000pt;}
.ls0_c00123{letter-spacing:3.308800pt;}
.ls1_c00123{letter-spacing:3.484800pt;}
.ls4_c00123{letter-spacing:44.352176pt;}
.ls3_c00123{letter-spacing:45.619376pt;}
.ws0_c00123{word-spacing:-17.424000pt;}
.ws1_c00123{word-spacing:0.000000pt;}
._0_c00123{width:8.084736pt;}
._1_c00123{width:20.978496pt;}
.fs9_c00123{font-size:19.712000pt;}
.fs6_c00123{font-size:25.168000pt;}
.fs5_c00123{font-size:29.568000pt;}
.fs7_c00123{font-size:30.272176pt;}
.fs3_c00123{font-size:30.976000pt;}
.fs4_c00123{font-size:44.352176pt;}
.fs2_c00123{font-size:45.619376pt;}
.fs8_c00123{font-size:53.504000pt;}
.fs0_c00123{font-size:66.176000pt;}
.fs1_c00123{font-size:69.696000pt;}
.y0_c00123{bottom:0.000000pt;}
.y1_c00123{bottom:68.000000pt;}
.yb_c00123{bottom:196.971320pt;}
.ya_c00123{bottom:501.099320pt;}
.y9_c00123{bottom:542.600120pt;}
.y8_c00123{bottom:566.043320pt;}
.y7_c00123{bottom:767.206920pt;}
.y6_c00123{bottom:789.382920pt;}
.y5_c00123{bottom:797.302920pt;}
.y4_c00123{bottom:814.726920pt;}
.y3_c00123{bottom:826.448520pt;}
.y2_c00123{bottom:960.454920pt;}
.hb_c00123{height:20.559000pt;}
.h8_c00123{height:24.701016pt;}
.h6_c00123{height:29.538549pt;}
.h9_c00123{height:29.710485pt;}
.h4_c00123{height:30.382504pt;}
.h5_c00123{height:30.401250pt;}
.h7_c00123{height:30.838500pt;}
.ha_c00123{height:55.803000pt;}
.h2_c00123{height:66.693000pt;}
.h3_c00123{height:68.402813pt;}
.h1_c00123{height:986.666667pt;}
.h0_c00123{height:1122.666667pt;}
.w1_c00123{width:652.000000pt;}
.w0_c00123{width:793.333333pt;}
.x0_c00123{left:0.000000pt;}
.x20_c00123{left:37.293987pt;}
.x3_c00123{left:63.077987pt;}
.x18_c00123{left:64.411187pt;}
.x1_c00123{left:70.666667pt;}
.x19_c00123{left:122.112787pt;}
.x4_c00123{left:142.990787pt;}
.x1a_c00123{left:150.448787pt;}
.x10_c00123{left:181.354387pt;}
.x5_c00123{left:191.491987pt;}
.x6_c00123{left:201.136787pt;}
.x1b_c00123{left:210.759587pt;}
.x11_c00123{left:212.075187pt;}
.x12_c00123{left:231.360387pt;}
.x7_c00123{left:271.620387pt;}
.x8_c00123{left:301.029987pt;}
.x9_c00123{left:330.747587pt;}
.x1c_c00123{left:350.503587pt;}
.x1d_c00123{left:379.336787pt;}
.xa_c00123{left:388.092787pt;}
.x1e_c00123{left:418.611187pt;}
.x22_c00123{left:435.806387pt;}
.xb_c00123{left:457.920787pt;}
.x13_c00123{left:467.244387pt;}
.xc_c00123{left:478.772387pt;}
.x14_c00123{left:506.254787pt;}
.xd_c00123{left:527.137187pt;}
.x1f_c00123{left:537.723587pt;}
.xe_c00123{left:557.048387pt;}
.x23_c00123{left:563.841987pt;}
.x15_c00123{left:576.087187pt;}
.x2_c00123{left:578.031987pt;}
.x16_c00123{left:596.551587pt;}
.x21_c00123{left:616.065587pt;}
.xf_c00123{left:617.064387pt;}
.x17_c00123{left:619.559187pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d3ed0db326181ee2c96cec44.woff2')format("woff");}.ff1_c00124{font-family:ff1_c00124;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00124;src:url('chunks/assets/font_a23ef77160183e2e0ca13b42.woff2')format("woff");}.ff2_c00124{font-family:ff2_c00124;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00124;src:url('chunks/assets/font_06dab0c004bf43b369d1879d.woff2')format("woff");}.ff3_c00124{font-family:ff3_c00124;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00124;src:url('chunks/assets/font_565b741acfe482821fcb221a.woff2')format("woff");}.ff4_c00124{font-family:ff4_c00124;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00124;src:url('chunks/assets/font_a834b642d4dbc7a10eb90de7.woff2')format("woff");}.ff5_c00124{font-family:ff5_c00124;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m7_c00124{transform:matrix(0.140777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140777,0.000000,0.000000,0.250000,0,0);}
.mb_c00124{transform:matrix(0.148958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148958,0.000000,0.000000,0.250000,0,0);}
.m6_c00124{transform:matrix(0.217895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217895,0.000000,0.000000,0.250000,0,0);}
.m4_c00124{transform:matrix(0.242563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242563,0.000000,0.000000,0.250000,0,0);}
.ma_c00124{transform:matrix(0.245194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245194,0.000000,0.000000,0.250000,0,0);}
.m2_c00124{transform:matrix(0.245732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245732,0.000000,0.000000,0.250000,0,0);}
.m0_c00124{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m5_c00124{transform:matrix(0.257214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257214,0.000000,0.000000,0.250000,0,0);}
.m3_c00124{transform:matrix(0.262568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262568,0.000000,0.000000,0.250000,0,0);}
.m8_c00124{transform:matrix(0.276132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276132,0.000000,0.000000,0.250000,0,0);}
.m1_c00124{transform:matrix(0.286961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286961,0.000000,0.000000,0.250000,0,0);}
.m9_c00124{transform:matrix(0.294380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294380,0.000000,0.000000,0.250000,0,0);}
.mc_c00124{transform:matrix(7.277381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(7.277381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(7.277381,0.000000,0.000000,0.250000,0,0);}
.v3_c00124{vertical-align:-18.532800px;}
.v0_c00124{vertical-align:0.000000px;}
.v2_c00124{vertical-align:1.425600px;}
.v1_c00124{vertical-align:15.701400px;}
.lsc_c00124{letter-spacing:-2.522527px;}
.ls4_c00124{letter-spacing:-2.439367px;}
.ls3_c00124{letter-spacing:-2.167552px;}
.lsa_c00124{letter-spacing:-2.162166px;}
.ls7_c00124{letter-spacing:-2.141370px;}
.lse_c00124{letter-spacing:-2.079000px;}
.ls8_c00124{letter-spacing:-0.020909px;}
.ls1_c00124{letter-spacing:0.000000px;}
.lsf_c00124{letter-spacing:0.207900px;}
.lsb_c00124{letter-spacing:1.455858px;}
.lsd_c00124{letter-spacing:2.457662px;}
.ls6_c00124{letter-spacing:3.484810px;}
.ls5_c00124{letter-spacing:3.544200px;}
.ls9_c00124{letter-spacing:3.603610px;}
.ls2_c00124{letter-spacing:3.643200px;}
.ls0_c00124{letter-spacing:203.662800px;}
.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:-18.018050px;}
.ws1_c00124{word-spacing:0.000000px;}
._3_c00124{margin-left:-17.225384px;}
._0_c00124{margin-left:-7.351399px;}
._4_c00124{width:5.266800px;}
._1_c00124{width:20.946624px;}
._2_c00124{width:24.359835px;}
._6_c00124{width:38.461500px;}
._7_c00124{width:65.934000px;}
._5_c00124{width:161.973900px;}
._8_c00124{width:505.929600px;}
.fc0_c00124{color:transparent;}
.fsb_c00124{font-size:4.158000px;}
.fsa_c00124{font-size:13.860000px;}
.fs1_c00124{font-size:22.176000px;}
.fs0_c00124{font-size:33.264000px;}
.fs6_c00124{font-size:39.600000px;}
.fsc_c00124{font-size:50.688000px;}
.fs8_c00124{font-size:59.400000px;}
.fs5_c00124{font-size:61.182000px;}
.fs3_c00124{font-size:69.696198px;}
.fs4_c00124{font-size:70.884000px;}
.fs7_c00124{font-size:72.072198px;}
.fs2_c00124{font-size:72.864000px;}
.fs9_c00124{font-size:79.200000px;}
.y0_c00124{bottom:0.000000px;}
.yc_c00124{bottom:6.678585px;}
.y1_c00124{bottom:76.500000px;}
.yb_c00124{bottom:164.212335px;}
.y9_c00124{bottom:275.760585px;}
.ya_c00124{bottom:280.042335px;}
.y8_c00124{bottom:283.957785px;}
.y7_c00124{bottom:312.474735px;}
.y6_c00124{bottom:316.395135px;}
.y5_c00124{bottom:384.103809px;}
.y4_c00124{bottom:492.450300px;}
.y3_c00124{bottom:611.845785px;}
.y2_c00124{bottom:739.080585px;}
.hc_c00124{height:4.080850px;}
.h3_c00124{height:23.128875px;}
.h2_c00124{height:34.693313px;}
.h8_c00124{height:41.301563px;}
.he_c00124{height:52.866000px;}
.h7_c00124{height:60.046787px;}
.hd_c00124{height:61.285950px;}
.ha_c00124{height:61.952344px;}
.h5_c00124{height:68.403007px;}
.h6_c00124{height:69.534158px;}
.h9_c00124{height:70.734921px;}
.h4_c00124{height:73.433250px;}
.hb_c00124{height:79.818750px;}
.h1_c00124{height:1110.000000px;}
.h0_c00124{height:1263.000000px;}
.w1_c00124{width:733.500000px;}
.w0_c00124{width:892.500000px;}
.x0_c00124{left:0.000000px;}
.x1a_c00124{left:4.335735px;}
.x2_c00124{left:78.293685px;}
.x1_c00124{left:79.500000px;}
.x4_c00124{left:92.592651px;}
.x6_c00124{left:246.519435px;}
.x5_c00124{left:254.754651px;}
.x7_c00124{left:302.137635px;}
.x10_c00124{left:303.652335px;}
.x8_c00124{left:335.456085px;}
.x11_c00124{left:344.494785px;}
.x16_c00124{left:352.350435px;}
.x12_c00124{left:367.418235px;}
.x19_c00124{left:403.018635px;}
.x9_c00124{left:414.636285px;}
.x13_c00124{left:435.485685px;}
.xa_c00124{left:448.761585px;}
.xf_c00124{left:483.025485px;}
.x17_c00124{left:515.586585px;}
.xb_c00124{left:525.239085px;}
.x18_c00124{left:544.222335px;}
.xc_c00124{left:559.171335px;}
.x14_c00124{left:612.576885px;}
.xd_c00124{left:624.021285px;}
.x3_c00124{left:636.104235px;}
.x15_c00124{left:656.112135px;}
.xe_c00124{left:657.824835px;}
@media print{
.v3_c00124{vertical-align:-16.473600pt;}
.v0_c00124{vertical-align:0.000000pt;}
.v2_c00124{vertical-align:1.267200pt;}
.v1_c00124{vertical-align:13.956800pt;}
.lsc_c00124{letter-spacing:-2.242246pt;}
.ls4_c00124{letter-spacing:-2.168326pt;}
.ls3_c00124{letter-spacing:-1.926713pt;}
.lsa_c00124{letter-spacing:-1.921925pt;}
.ls7_c00124{letter-spacing:-1.903440pt;}
.lse_c00124{letter-spacing:-1.848000pt;}
.ls8_c00124{letter-spacing:-0.018586pt;}
.ls1_c00124{letter-spacing:0.000000pt;}
.lsf_c00124{letter-spacing:0.184800pt;}
.lsb_c00124{letter-spacing:1.294096pt;}
.lsd_c00124{letter-spacing:2.184588pt;}
.ls6_c00124{letter-spacing:3.097609pt;}
.ls5_c00124{letter-spacing:3.150400pt;}
.ls9_c00124{letter-spacing:3.203209pt;}
.ls2_c00124{letter-spacing:3.238400pt;}
.ls0_c00124{letter-spacing:181.033600pt;}
.ws0_c00124{word-spacing:-16.016044pt;}
.ws1_c00124{word-spacing:0.000000pt;}
._3_c00124{margin-left:-15.311452pt;}
._0_c00124{margin-left:-6.534577pt;}
._4_c00124{width:4.681600pt;}
._1_c00124{width:18.619221pt;}
._2_c00124{width:21.653187pt;}
._6_c00124{width:34.188000pt;}
._7_c00124{width:58.608000pt;}
._5_c00124{width:143.976800pt;}
._8_c00124{width:449.715200pt;}
.fsb_c00124{font-size:3.696000pt;}
.fsa_c00124{font-size:12.320000pt;}
.fs1_c00124{font-size:19.712000pt;}
.fs0_c00124{font-size:29.568000pt;}
.fs6_c00124{font-size:35.200000pt;}
.fsc_c00124{font-size:45.056000pt;}
.fs8_c00124{font-size:52.800000pt;}
.fs5_c00124{font-size:54.384000pt;}
.fs3_c00124{font-size:61.952176pt;}
.fs4_c00124{font-size:63.008000pt;}
.fs7_c00124{font-size:64.064176pt;}
.fs2_c00124{font-size:64.768000pt;}
.fs9_c00124{font-size:70.400000pt;}
.y0_c00124{bottom:0.000000pt;}
.yc_c00124{bottom:5.936520pt;}
.y1_c00124{bottom:68.000000pt;}
.yb_c00124{bottom:145.966520pt;}
.y9_c00124{bottom:245.120520pt;}
.ya_c00124{bottom:248.926520pt;}
.y8_c00124{bottom:252.406920pt;}
.y7_c00124{bottom:277.755320pt;}
.y6_c00124{bottom:281.240120pt;}
.y5_c00124{bottom:341.425608pt;}
.y4_c00124{bottom:437.733600pt;}
.y3_c00124{bottom:543.862920pt;}
.y2_c00124{bottom:656.960520pt;}
.hc_c00124{height:3.627422pt;}
.h3_c00124{height:20.559000pt;}
.h2_c00124{height:30.838500pt;}
.h8_c00124{height:36.712500pt;}
.he_c00124{height:46.992000pt;}
.h7_c00124{height:53.374922pt;}
.hd_c00124{height:54.476400pt;}
.ha_c00124{height:55.068750pt;}
.h5_c00124{height:60.802673pt;}
.h6_c00124{height:61.808141pt;}
.h9_c00124{height:62.875485pt;}
.h4_c00124{height:65.274000pt;}
.hb_c00124{height:70.950000pt;}
.h1_c00124{height:986.666667pt;}
.h0_c00124{height:1122.666667pt;}
.w1_c00124{width:652.000000pt;}
.w0_c00124{width:793.333333pt;}
.x0_c00124{left:0.000000pt;}
.x1a_c00124{left:3.853987pt;}
.x2_c00124{left:69.594387pt;}
.x1_c00124{left:70.666667pt;}
.x4_c00124{left:82.304579pt;}
.x6_c00124{left:219.128387pt;}
.x5_c00124{left:226.448579pt;}
.x7_c00124{left:268.566787pt;}
.x10_c00124{left:269.913187pt;}
.x8_c00124{left:298.183187pt;}
.x11_c00124{left:306.217587pt;}
.x16_c00124{left:313.200387pt;}
.x12_c00124{left:326.593987pt;}
.x19_c00124{left:358.238787pt;}
.x9_c00124{left:368.565587pt;}
.x13_c00124{left:387.098387pt;}
.xa_c00124{left:398.899187pt;}
.xf_c00124{left:429.355987pt;}
.x17_c00124{left:458.299187pt;}
.xb_c00124{left:466.879187pt;}
.x18_c00124{left:483.753187pt;}
.xc_c00124{left:497.041187pt;}
.x14_c00124{left:544.512787pt;}
.xd_c00124{left:554.685587pt;}
.x3_c00124{left:565.425987pt;}
.x15_c00124{left:583.210787pt;}
.xe_c00124{left:584.733187pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4e2c6651c8e2049e7164023f.woff2')format("woff");}.ff1_c00125{font-family:ff1_c00125;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00125;src:url('chunks/assets/font_e7cdb997545689db1ab8391f.woff2')format("woff");}.ff2_c00125{font-family:ff2_c00125;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00125;src:url('chunks/assets/font_4cf40e9145cb00723eaf66ad.woff2')format("woff");}.ff3_c00125{font-family:ff3_c00125;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00125;src:url('chunks/assets/font_4b6af48af1debd7632782e99.woff2')format("woff");}.ff4_c00125{font-family:ff4_c00125;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00125;src:url('chunks/assets/font_e77ad2763cf0a0dd4ac919ec.woff2')format("woff");}.ff5_c00125{font-family:ff5_c00125;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mf_c00125{transform:matrix(0.180716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180716,0.000000,0.000000,0.250000,0,0);}
.m15_c00125{transform:matrix(0.180987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180987,0.000000,0.000000,0.250000,0,0);}
.m56_c00125{transform:matrix(0.202872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202872,0.000000,0.000000,0.250000,0,0);}
.m18_c00125{transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);}
.m0_c00125{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m41_c00125{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.m55_c00125{transform:matrix(0.252936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252936,0.000000,0.000000,0.250000,0,0);}
.m11_c00125{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m59_c00125{transform:matrix(0.257771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257771,0.000000,0.000000,0.250000,0,0);}
.m5_c00125{transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);}
.m23_c00125{transform:matrix(0.258484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258484,0.000000,0.000000,0.250000,0,0);}
.m1a_c00125{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.ma_c00125{transform:matrix(0.260030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260030,0.000000,0.000000,0.250000,0,0);}
.m29_c00125{transform:matrix(0.260369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260369,0.000000,0.000000,0.250000,0,0);}
.m24_c00125{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m2e_c00125{transform:matrix(0.263305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263305,0.000000,0.000000,0.250000,0,0);}
.m12_c00125{transform:matrix(0.263582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263582,0.000000,0.000000,0.250000,0,0);}
.m33_c00125{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m3f_c00125{transform:matrix(0.265421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265421,0.000000,0.000000,0.250000,0,0);}
.m2d_c00125{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m65_c00125{transform:matrix(0.266342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266342,0.000000,0.000000,0.250000,0,0);}
.m4e_c00125{transform:matrix(0.266398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266398,0.000000,0.000000,0.250000,0,0);}
.m1e_c00125{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m4c_c00125{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.m2b_c00125{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m8_c00125{transform:matrix(0.271600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271600,0.000000,0.000000,0.250000,0,0);}
.m58_c00125{transform:matrix(0.272466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272466,0.000000,0.000000,0.250000,0,0);}
.m4a_c00125{transform:matrix(0.272511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272511,0.000000,0.000000,0.250000,0,0);}
.m34_c00125{transform:matrix(0.272821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272821,0.000000,0.000000,0.250000,0,0);}
.m61_c00125{transform:matrix(0.273320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273320,0.000000,0.000000,0.250000,0,0);}
.m32_c00125{transform:matrix(0.274162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274162,0.000000,0.000000,0.250000,0,0);}
.m54_c00125{transform:matrix(0.274295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274295,0.000000,0.000000,0.250000,0,0);}
.m3c_c00125{transform:matrix(0.275459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275459,0.000000,0.000000,0.250000,0,0);}
.m3d_c00125{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m47_c00125{transform:matrix(0.276684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276684,0.000000,0.000000,0.250000,0,0);}
.m5c_c00125{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m26_c00125{transform:matrix(0.277767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277767,0.000000,0.000000,0.250000,0,0);}
.m16_c00125{transform:matrix(0.278623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278623,0.000000,0.000000,0.250000,0,0);}
.m53_c00125{transform:matrix(0.278706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278706,0.000000,0.000000,0.250000,0,0);}
.m37_c00125{transform:matrix(0.280910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280910,0.000000,0.000000,0.250000,0,0);}
.m48_c00125{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.m10_c00125{transform:matrix(0.282543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282543,0.000000,0.000000,0.250000,0,0);}
.m1b_c00125{transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);}
.m39_c00125{transform:matrix(0.283092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283092,0.000000,0.000000,0.250000,0,0);}
.m13_c00125{transform:matrix(0.283402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283402,0.000000,0.000000,0.250000,0,0);}
.m4_c00125{transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);}
.m4b_c00125{transform:matrix(0.285852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285852,0.000000,0.000000,0.250000,0,0);}
.m7_c00125{transform:matrix(0.286314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286314,0.000000,0.000000,0.250000,0,0);}
.m49_c00125{transform:matrix(0.288623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288623,0.000000,0.000000,0.250000,0,0);}
.m36_c00125{transform:matrix(0.289570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289570,0.000000,0.000000,0.250000,0,0);}
.m3a_c00125{transform:matrix(0.290806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290806,0.000000,0.000000,0.250000,0,0);}
.m42_c00125{transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);}
.mc_c00125{transform:matrix(0.292127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292127,0.000000,0.000000,0.250000,0,0);}
.m1_c00125{transform:matrix(0.292577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292577,0.000000,0.000000,0.250000,0,0);}
.m5a_c00125{transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);}
.m25_c00125{transform:matrix(0.296097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296097,0.000000,0.000000,0.250000,0,0);}
.m5b_c00125{transform:matrix(0.296581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296581,0.000000,0.000000,0.250000,0,0);}
.m2a_c00125{transform:matrix(0.296813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296813,0.000000,0.000000,0.250000,0,0);}
.m6_c00125{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m44_c00125{transform:matrix(0.298322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298322,0.000000,0.000000,0.250000,0,0);}
.m66_c00125{transform:matrix(0.298405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298405,0.000000,0.000000,0.250000,0,0);}
.m20_c00125{transform:matrix(0.299044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299044,0.000000,0.000000,0.250000,0,0);}
.m3_c00125{transform:matrix(0.301434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301434,0.000000,0.000000,0.250000,0,0);}
.m51_c00125{transform:matrix(0.302285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302285,0.000000,0.000000,0.250000,0,0);}
.m9_c00125{transform:matrix(0.303033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303033,0.000000,0.000000,0.250000,0,0);}
.m5d_c00125{transform:matrix(0.303829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303829,0.000000,0.000000,0.250000,0,0);}
.me_c00125{transform:matrix(0.305095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305095,0.000000,0.000000,0.250000,0,0);}
.m40_c00125{transform:matrix(0.305557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305557,0.000000,0.000000,0.250000,0,0);}
.m64_c00125{transform:matrix(0.306109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306109,0.000000,0.000000,0.250000,0,0);}
.m1f_c00125{transform:matrix(0.311441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311441,0.000000,0.000000,0.250000,0,0);}
.m63_c00125{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.m50_c00125{transform:matrix(0.313756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313756,0.000000,0.000000,0.250000,0,0);}
.m31_c00125{transform:matrix(0.313965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313965,0.000000,0.000000,0.250000,0,0);}
.m17_c00125{transform:matrix(0.315658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315658,0.000000,0.000000,0.250000,0,0);}
.m4f_c00125{transform:matrix(0.316672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316672,0.000000,0.000000,0.250000,0,0);}
.m3e_c00125{transform:matrix(0.317662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317662,0.000000,0.000000,0.250000,0,0);}
.m1c_c00125{transform:matrix(0.317971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317971,0.000000,0.000000,0.250000,0,0);}
.m21_c00125{transform:matrix(0.318444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318444,0.000000,0.000000,0.250000,0,0);}
.m46_c00125{transform:matrix(0.319292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319292,0.000000,0.000000,0.250000,0,0);}
.m19_c00125{transform:matrix(0.320518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320518,0.000000,0.000000,0.250000,0,0);}
.m27_c00125{transform:matrix(0.321902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321902,0.000000,0.000000,0.250000,0,0);}
.m2_c00125{transform:matrix(0.325483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325483,0.000000,0.000000,0.250000,0,0);}
.m30_c00125{transform:matrix(0.325850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325850,0.000000,0.000000,0.250000,0,0);}
.m2f_c00125{transform:matrix(0.325899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325899,0.000000,0.000000,0.250000,0,0);}
.md_c00125{transform:matrix(0.327290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327290,0.000000,0.000000,0.250000,0,0);}
.m14_c00125{transform:matrix(0.327297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327297,0.000000,0.000000,0.250000,0,0);}
.m45_c00125{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);}
.m1d_c00125{transform:matrix(0.327600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327600,0.000000,0.000000,0.250000,0,0);}
.m57_c00125{transform:matrix(0.333440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333440,0.000000,0.000000,0.250000,0,0);}
.m2c_c00125{transform:matrix(0.336976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336976,0.000000,0.000000,0.250000,0,0);}
.m3b_c00125{transform:matrix(0.336991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336991,0.000000,0.000000,0.250000,0,0);}
.m5f_c00125{transform:matrix(0.337181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337181,0.000000,0.000000,0.250000,0,0);}
.m35_c00125{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m62_c00125{transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);}
.m52_c00125{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m60_c00125{transform:matrix(0.351556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351556,0.000000,0.000000,0.250000,0,0);}
.m38_c00125{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m4d_c00125{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m22_c00125{transform:matrix(0.363115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363115,0.000000,0.000000,0.250000,0,0);}
.m43_c00125{transform:matrix(0.365569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365569,0.000000,0.000000,0.250000,0,0);}
.mb_c00125{transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);}
.m28_c00125{transform:matrix(0.372158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372158,0.000000,0.000000,0.250000,0,0);}
.m5e_c00125{transform:matrix(0.387416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387416,0.000000,0.000000,0.250000,0,0);}
.m67_c00125{transform:matrix(0.416660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416660,0.000000,0.000000,0.250000,0,0);}
.v0_c00125{vertical-align:0.000000px;}
.ls8_c00125{letter-spacing:-2.744280px;}
.lsa_c00125{letter-spacing:-1.897474px;}
.ls2_c00125{letter-spacing:0.000000px;}
.ls1_c00125{letter-spacing:2.132698px;}
.lsb_c00125{letter-spacing:3.366000px;}
.ls4_c00125{letter-spacing:3.603610px;}
.ls9_c00125{letter-spacing:3.722400px;}
.ls3_c00125{letter-spacing:3.762000px;}
.ls7_c00125{letter-spacing:3.801610px;}
.ls5_c00125{letter-spacing:3.920400px;}
.ls0_c00125{letter-spacing:4.704480px;}
.lsc_c00125{letter-spacing:12.830598px;}
.ls6_c00125{letter-spacing:61.300998px;}
.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:-19.602000px;}
.ws1_c00125{word-spacing:-0.784080px;}
.ws2_c00125{word-spacing:0.000000px;}
._5_c00125{width:2.273832px;}
._b_c00125{width:5.174928px;}
._8_c00125{width:6.272640px;}
._7_c00125{width:8.545680px;}
._4_c00125{width:10.741896px;}
._9_c00125{width:13.172544px;}
._2_c00125{width:17.092944px;}
._1_c00125{width:20.856528px;}
._3_c00125{width:22.267872px;}
._6_c00125{width:23.679216px;}
._0_c00125{width:31.111027px;}
._c_c00125{width:38.811960px;}
._a_c00125{width:1970.498376px;}
.fc0_c00125{color:transparent;}
.fsa_c00125{font-size:11.088000px;}
.fsc_c00125{font-size:12.830598px;}
.fs0_c00125{font-size:22.176000px;}
.fsd_c00125{font-size:25.146000px;}
.fs9_c00125{font-size:38.808000px;}
.fs5_c00125{font-size:61.300998px;}
.fs8_c00125{font-size:64.548000px;}
.fs2_c00125{font-size:65.538000px;}
.fsb_c00125{font-size:67.320000px;}
.fs3_c00125{font-size:72.072198px;}
.fs7_c00125{font-size:74.448000px;}
.fs1_c00125{font-size:75.240000px;}
.fs6_c00125{font-size:76.032198px;}
.fs4_c00125{font-size:78.408000px;}
.y0_c00125{bottom:0.000000px;}
.y1_c00125{bottom:76.500000px;}
.y14_c00125{bottom:91.863135px;}
.y13_c00125{bottom:174.904335px;}
.y12_c00125{bottom:178.468335px;}
.y11_c00125{bottom:213.395535px;}
.y10_c00125{bottom:246.897135px;}
.yf_c00125{bottom:273.270735px;}
.ye_c00125{bottom:279.324585px;}
.y2_c00125{bottom:308.192985px;}
.yd_c00125{bottom:312.113385px;}
.yc_c00125{bottom:343.832985px;}
.yb_c00125{bottom:376.270335px;}
.ya_c00125{bottom:408.697785px;}
.y9_c00125{bottom:441.135135px;}
.y8_c00125{bottom:473.206185px;}
.y7_c00125{bottom:505.994985px;}
.y6_c00125{bottom:539.145135px;}
.y5_c00125{bottom:636.442335px;}
.y4_c00125{bottom:800.381385px;}
.y3_c00125{bottom:1090.134585px;}
.hd_c00125{height:8.545178px;}
.h2_c00125{height:23.128875px;}
.he_c00125{height:26.226492px;}
.hb_c00125{height:40.475531px;}
.h7_c00125{height:40.826465px;}
.h4_c00125{height:64.321963px;}
.ha_c00125{height:67.321547px;}
.hc_c00125{height:70.212656px;}
.h5_c00125{height:72.635262px;}
.h9_c00125{height:73.066641px;}
.h3_c00125{height:73.843945px;}
.h6_c00125{height:76.953164px;}
.h8_c00125{height:79.299207px;}
.h1_c00125{height:1110.000000px;}
.h0_c00125{height:1263.000000px;}
.w1_c00125{width:733.500000px;}
.w0_c00125{width:892.500000px;}
.x0_c00125{left:0.000000px;}
.x2_c00125{left:53.390235px;}
.x10_c00125{left:77.669985px;}
.x1_c00125{left:79.500000px;}
.x17_c00125{left:101.063685px;}
.x33_c00125{left:111.171585px;}
.x37_c00125{left:112.305135px;}
.x18_c00125{left:114.463335px;}
.x3e_c00125{left:123.002085px;}
.x5_c00125{left:133.916835px;}
.x46_c00125{left:135.584985px;}
.x21_c00125{left:144.673185px;}
.x11_c00125{left:157.261035px;}
.x7_c00125{left:167.680785px;}
.x38_c00125{left:171.051735px;}
.x19_c00125{left:178.719285px;}
.x1a_c00125{left:188.926185px;}
.x22_c00125{left:190.124085px;}
.x6_c00125{left:200.850735px;}
.x8_c00125{left:212.092185px;}
.x1b_c00125{left:221.650635px;}
.x2b_c00125{left:222.724785px;}
.x3f_c00125{left:224.328585px;}
.x49_c00125{left:233.050485px;}
.x23_c00125{left:234.317685px;}
.x9_c00125{left:244.465185px;}
.x39_c00125{left:246.405585px;}
.x24_c00125{left:267.131235px;}
.x12_c00125{left:270.229935px;}
.x3a_c00125{left:279.852735px;}
.xa_c00125{left:301.137735px;}
.x2c_c00125{left:302.365335px;}
.x3b_c00125{left:312.572235px;}
.x43_c00125{left:323.769135px;}
.x1c_c00125{left:333.243435px;}
.xb_c00125{left:334.550235px;}
.x34_c00125{left:345.509535px;}
.x40_c00125{left:355.340235px;}
.x25_c00125{left:356.567835px;}
.x44_c00125{left:365.636235px;}
.x47_c00125{left:368.665635px;}
.x1d_c00125{left:378.095385px;}
.x26_c00125{left:390.455535px;}
.x41_c00125{left:401.805885px;}
.xc_c00125{left:412.839435px;}
.x2d_c00125{left:413.923485px;}
.x27_c00125{left:424.585785px;}
.x2e_c00125{left:445.539135px;}
.x3c_c00125{left:448.429935px;}
.x1e_c00125{left:456.899385px;}
.x2f_c00125{left:465.769785px;}
.x30_c00125{left:468.101235px;}
.x13_c00125{left:478.327935px;}
.x3d_c00125{left:500.721735px;}
.x42_c00125{left:523.006635px;}
.x31_c00125{left:524.080785px;}
.x28_c00125{left:534.406485px;}
.x14_c00125{left:535.797435px;}
.xd_c00125{left:557.557635px;}
.x29_c00125{left:567.546735px;}
.x15_c00125{left:568.957485px;}
.x45_c00125{left:577.629885px;}
.x32_c00125{left:578.976285px;}
.x1f_c00125{left:589.292085px;}
.x16_c00125{left:601.389885px;}
.x20_c00125{left:622.605585px;}
.x35_c00125{left:634.158885px;}
.xe_c00125{left:657.008085px;}
.x3_c00125{left:658.017885px;}
.x36_c00125{left:666.804135px;}
.xf_c00125{left:678.698985px;}
.x4_c00125{left:693.370785px;}
.x2a_c00125{left:700.761135px;}
.x48_c00125{left:724.872585px;}
@media print{
.v0_c00125{vertical-align:0.000000pt;}
.ls8_c00125{letter-spacing:-2.439360pt;}
.lsa_c00125{letter-spacing:-1.686643pt;}
.ls2_c00125{letter-spacing:0.000000pt;}
.ls1_c00125{letter-spacing:1.895731pt;}
.lsb_c00125{letter-spacing:2.992000pt;}
.ls4_c00125{letter-spacing:3.203209pt;}
.ls9_c00125{letter-spacing:3.308800pt;}
.ls3_c00125{letter-spacing:3.344000pt;}
.ls7_c00125{letter-spacing:3.379209pt;}
.ls5_c00125{letter-spacing:3.484800pt;}
.ls0_c00125{letter-spacing:4.181760pt;}
.lsc_c00125{letter-spacing:11.404976pt;}
.ls6_c00125{letter-spacing:54.489776pt;}
.ws0_c00125{word-spacing:-17.424000pt;}
.ws1_c00125{word-spacing:-0.696960pt;}
.ws2_c00125{word-spacing:0.000000pt;}
._5_c00125{width:2.021184pt;}
._b_c00125{width:4.599936pt;}
._8_c00125{width:5.575680pt;}
._7_c00125{width:7.596160pt;}
._4_c00125{width:9.548352pt;}
._9_c00125{width:11.708928pt;}
._2_c00125{width:15.193728pt;}
._1_c00125{width:18.539136pt;}
._3_c00125{width:19.793664pt;}
._6_c00125{width:21.048192pt;}
._0_c00125{width:27.654246pt;}
._c_c00125{width:34.499520pt;}
._a_c00125{width:1751.554112pt;}
.fsa_c00125{font-size:9.856000pt;}
.fsc_c00125{font-size:11.404976pt;}
.fs0_c00125{font-size:19.712000pt;}
.fsd_c00125{font-size:22.352000pt;}
.fs9_c00125{font-size:34.496000pt;}
.fs5_c00125{font-size:54.489776pt;}
.fs8_c00125{font-size:57.376000pt;}
.fs2_c00125{font-size:58.256000pt;}
.fsb_c00125{font-size:59.840000pt;}
.fs3_c00125{font-size:64.064176pt;}
.fs7_c00125{font-size:66.176000pt;}
.fs1_c00125{font-size:66.880000pt;}
.fs6_c00125{font-size:67.584176pt;}
.fs4_c00125{font-size:69.696000pt;}
.y0_c00125{bottom:0.000000pt;}
.y1_c00125{bottom:68.000000pt;}
.y14_c00125{bottom:81.656120pt;}
.y13_c00125{bottom:155.470520pt;}
.y12_c00125{bottom:158.638520pt;}
.y11_c00125{bottom:189.684920pt;}
.y10_c00125{bottom:219.464120pt;}
.yf_c00125{bottom:242.907320pt;}
.ye_c00125{bottom:248.288520pt;}
.y2_c00125{bottom:273.949320pt;}
.yd_c00125{bottom:277.434120pt;}
.yc_c00125{bottom:305.629320pt;}
.yb_c00125{bottom:334.462520pt;}
.ya_c00125{bottom:363.286920pt;}
.y9_c00125{bottom:392.120120pt;}
.y8_c00125{bottom:420.627720pt;}
.y7_c00125{bottom:449.773320pt;}
.y6_c00125{bottom:479.240120pt;}
.y5_c00125{bottom:565.726520pt;}
.y4_c00125{bottom:711.450120pt;}
.y3_c00125{bottom:969.008520pt;}
.hd_c00125{height:7.595714pt;}
.h2_c00125{height:20.559000pt;}
.he_c00125{height:23.312438pt;}
.hb_c00125{height:35.978250pt;}
.h7_c00125{height:36.290191pt;}
.h4_c00125{height:57.175078pt;}
.ha_c00125{height:59.841375pt;}
.hc_c00125{height:62.411250pt;}
.h5_c00125{height:64.564677pt;}
.h9_c00125{height:64.948125pt;}
.h3_c00125{height:65.639063pt;}
.h6_c00125{height:68.402813pt;}
.h8_c00125{height:70.488184pt;}
.h1_c00125{height:986.666667pt;}
.h0_c00125{height:1122.666667pt;}
.w1_c00125{width:652.000000pt;}
.w0_c00125{width:793.333333pt;}
.x0_c00125{left:0.000000pt;}
.x2_c00125{left:47.457987pt;}
.x10_c00125{left:69.039987pt;}
.x1_c00125{left:70.666667pt;}
.x17_c00125{left:89.834387pt;}
.x33_c00125{left:98.819187pt;}
.x37_c00125{left:99.826787pt;}
.x18_c00125{left:101.745187pt;}
.x3e_c00125{left:109.335187pt;}
.x5_c00125{left:119.037187pt;}
.x46_c00125{left:120.519987pt;}
.x21_c00125{left:128.598387pt;}
.x11_c00125{left:139.787587pt;}
.x7_c00125{left:149.049587pt;}
.x38_c00125{left:152.045987pt;}
.x19_c00125{left:158.861587pt;}
.x1a_c00125{left:167.934387pt;}
.x22_c00125{left:168.999187pt;}
.x6_c00125{left:178.533987pt;}
.x8_c00125{left:188.526387pt;}
.x1b_c00125{left:197.022787pt;}
.x2b_c00125{left:197.977587pt;}
.x3f_c00125{left:199.403187pt;}
.x49_c00125{left:207.155987pt;}
.x23_c00125{left:208.282387pt;}
.x9_c00125{left:217.302387pt;}
.x39_c00125{left:219.027187pt;}
.x24_c00125{left:237.449987pt;}
.x12_c00125{left:240.204387pt;}
.x3a_c00125{left:248.757987pt;}
.xa_c00125{left:267.677987pt;}
.x2c_c00125{left:268.769187pt;}
.x3b_c00125{left:277.841987pt;}
.x43_c00125{left:287.794787pt;}
.x1c_c00125{left:296.216387pt;}
.xb_c00125{left:297.377987pt;}
.x34_c00125{left:307.119587pt;}
.x40_c00125{left:315.857987pt;}
.x25_c00125{left:316.949187pt;}
.x44_c00125{left:325.009987pt;}
.x47_c00125{left:327.702787pt;}
.x1d_c00125{left:336.084787pt;}
.x26_c00125{left:347.071587pt;}
.x41_c00125{left:357.160787pt;}
.xc_c00125{left:366.968387pt;}
.x2d_c00125{left:367.931987pt;}
.x27_c00125{left:377.409587pt;}
.x2e_c00125{left:396.034787pt;}
.x3c_c00125{left:398.604387pt;}
.x1e_c00125{left:406.132787pt;}
.x2f_c00125{left:414.017587pt;}
.x30_c00125{left:416.089987pt;}
.x13_c00125{left:425.180387pt;}
.x3d_c00125{left:445.085987pt;}
.x42_c00125{left:464.894787pt;}
.x31_c00125{left:465.849587pt;}
.x28_c00125{left:475.027987pt;}
.x14_c00125{left:476.264387pt;}
.xd_c00125{left:495.606787pt;}
.x29_c00125{left:504.485987pt;}
.x15_c00125{left:505.739987pt;}
.x45_c00125{left:513.448787pt;}
.x32_c00125{left:514.645587pt;}
.x1f_c00125{left:523.815187pt;}
.x16_c00125{left:534.568787pt;}
.x20_c00125{left:553.427187pt;}
.x35_c00125{left:563.696787pt;}
.xe_c00125{left:584.007187pt;}
.x3_c00125{left:584.904787pt;}
.x36_c00125{left:592.714787pt;}
.xf_c00125{left:603.287987pt;}
.x4_c00125{left:616.329587pt;}
.x2a_c00125{left:622.898787pt;}
.x48_c00125{left:644.331187pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_dd7b51c8b91361fd88e6373f.woff2')format("woff");}.ff1_c00126{font-family:ff1_c00126;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00126;src:url('chunks/assets/font_a49828bb16cbeea81be9295f.woff2')format("woff");}.ff2_c00126{font-family:ff2_c00126;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00126;src:url('chunks/assets/font_48dd33a3ba5f74a52875628e.woff2')format("woff");}.ff3_c00126{font-family:ff3_c00126;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00126;src:url('chunks/assets/font_0cf42376a7f8208240297b77.woff2')format("woff");}.ff4_c00126{font-family:ff4_c00126;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m64_c00126{transform:matrix(0.117378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117378,0.000000,0.000000,0.250000,0,0);}
.m19_c00126{transform:matrix(0.166063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166063,0.000000,0.000000,0.250000,0,0);}
.m6a_c00126{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);}
.m42_c00126{transform:matrix(0.170078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170078,0.000000,0.000000,0.250000,0,0);}
.m74_c00126{transform:matrix(0.198198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198198,0.000000,0.000000,0.250000,0,0);}
.m6c_c00126{transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);}
.m75_c00126{transform:matrix(0.206081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206081,0.000000,0.000000,0.250000,0,0);}
.m6b_c00126{transform:matrix(0.210070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210070,0.000000,0.000000,0.250000,0,0);}
.m8d_c00126{transform:matrix(0.212003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212003,0.000000,0.000000,0.250000,0,0);}
.m6e_c00126{transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);}
.mc0_c00126{transform:matrix(0.213293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213293,0.000000,0.000000,0.250000,0,0);}
.m9e_c00126{transform:matrix(0.221711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221711,0.000000,0.000000,0.250000,0,0);}
.m5_c00126{transform:matrix(0.230202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230202,0.000000,0.000000,0.250000,0,0);}
.m59_c00126{transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);}
.m5e_c00126{transform:matrix(0.246148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246148,0.000000,0.000000,0.250000,0,0);}
.m0_c00126{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00126{transform:matrix(0.252088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252088,0.000000,0.000000,0.250000,0,0);}
.mad_c00126{transform:matrix(0.252369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252369,0.000000,0.000000,0.250000,0,0);}
.m89_c00126{transform:matrix(0.252757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252757,0.000000,0.000000,0.250000,0,0);}
.m7a_c00126{transform:matrix(0.253684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253684,0.000000,0.000000,0.250000,0,0);}
.m4_c00126{transform:matrix(0.254076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254076,0.000000,0.000000,0.250000,0,0);}
.m32_c00126{transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);}
.ma9_c00126{transform:matrix(0.255214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255214,0.000000,0.000000,0.250000,0,0);}
.mb4_c00126{transform:matrix(0.255608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255608,0.000000,0.000000,0.250000,0,0);}
.m63_c00126{transform:matrix(0.255653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255653,0.000000,0.000000,0.250000,0,0);}
.m4f_c00126{transform:matrix(0.256450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256450,0.000000,0.000000,0.250000,0,0);}
.m17_c00126{transform:matrix(0.256952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256952,0.000000,0.000000,0.250000,0,0);}
.mbe_c00126{transform:matrix(0.257599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257599,0.000000,0.000000,0.250000,0,0);}
.mb9_c00126{transform:matrix(0.258426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258426,0.000000,0.000000,0.250000,0,0);}
.m68_c00126{transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);}
.m6_c00126{transform:matrix(0.260559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260559,0.000000,0.000000,0.250000,0,0);}
.m8f_c00126{transform:matrix(0.260655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260655,0.000000,0.000000,0.250000,0,0);}
.m84_c00126{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m91_c00126{transform:matrix(0.261021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261021,0.000000,0.000000,0.250000,0,0);}
.md_c00126{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.m9a_c00126{transform:matrix(0.261823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261823,0.000000,0.000000,0.250000,0,0);}
.m79_c00126{transform:matrix(0.262546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262546,0.000000,0.000000,0.250000,0,0);}
.m22_c00126{transform:matrix(0.262994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262994,0.000000,0.000000,0.250000,0,0);}
.m35_c00126{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m8a_c00126{transform:matrix(0.263587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263587,0.000000,0.000000,0.250000,0,0);}
.mc1_c00126{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m24_c00126{transform:matrix(0.264134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264134,0.000000,0.000000,0.250000,0,0);}
.m38_c00126{transform:matrix(0.264998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264998,0.000000,0.000000,0.250000,0,0);}
.m1e_c00126{transform:matrix(0.265371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265371,0.000000,0.000000,0.250000,0,0);}
.ma7_c00126{transform:matrix(0.265515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265515,0.000000,0.000000,0.250000,0,0);}
.m2f_c00126{transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);}
.m2b_c00126{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m76_c00126{transform:matrix(0.266425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266425,0.000000,0.000000,0.250000,0,0);}
.m34_c00126{transform:matrix(0.266725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266725,0.000000,0.000000,0.250000,0,0);}
.m15_c00126{transform:matrix(0.267145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267145,0.000000,0.000000,0.250000,0,0);}
.m8c_c00126{transform:matrix(0.267199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267199,0.000000,0.000000,0.250000,0,0);}
.m8_c00126{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.mc2_c00126{transform:matrix(0.268443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268443,0.000000,0.000000,0.250000,0,0);}
.m1_c00126{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.m3c_c00126{transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);}
.mb5_c00126{transform:matrix(0.269449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269449,0.000000,0.000000,0.250000,0,0);}
.ma1_c00126{transform:matrix(0.270090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270090,0.000000,0.000000,0.250000,0,0);}
.m85_c00126{transform:matrix(0.270773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270773,0.000000,0.000000,0.250000,0,0);}
.mb6_c00126{transform:matrix(0.270784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270784,0.000000,0.000000,0.250000,0,0);}
.m12_c00126{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m92_c00126{transform:matrix(0.270958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270958,0.000000,0.000000,0.250000,0,0);}
.m54_c00126{transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);}
.m6d_c00126{transform:matrix(0.272357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272357,0.000000,0.000000,0.250000,0,0);}
.m77_c00126{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m40_c00126{transform:matrix(0.275453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275453,0.000000,0.000000,0.250000,0,0);}
.m3e_c00126{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m87_c00126{transform:matrix(0.275569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275569,0.000000,0.000000,0.250000,0,0);}
.m53_c00126{transform:matrix(0.275570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275570,0.000000,0.000000,0.250000,0,0);}
.maf_c00126{transform:matrix(0.275936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275936,0.000000,0.000000,0.250000,0,0);}
.m50_c00126{transform:matrix(0.276518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276518,0.000000,0.000000,0.250000,0,0);}
.m7b_c00126{transform:matrix(0.278665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278665,0.000000,0.000000,0.250000,0,0);}
.m39_c00126{transform:matrix(0.279663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279663,0.000000,0.000000,0.250000,0,0);}
.mb1_c00126{transform:matrix(0.279774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279774,0.000000,0.000000,0.250000,0,0);}
.m97_c00126{transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);}
.m7f_c00126{transform:matrix(0.280247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280247,0.000000,0.000000,0.250000,0,0);}
.m10_c00126{transform:matrix(0.281402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281402,0.000000,0.000000,0.250000,0,0);}
.m57_c00126{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.mae_c00126{transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);}
.m44_c00126{transform:matrix(0.282111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282111,0.000000,0.000000,0.250000,0,0);}
.ma8_c00126{transform:matrix(0.282165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282165,0.000000,0.000000,0.250000,0,0);}
.m93_c00126{transform:matrix(0.282243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282243,0.000000,0.000000,0.250000,0,0);}
.mbd_c00126{transform:matrix(0.282559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282559,0.000000,0.000000,0.250000,0,0);}
.m36_c00126{transform:matrix(0.282593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282593,0.000000,0.000000,0.250000,0,0);}
.m4a_c00126{transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);}
.m8e_c00126{transform:matrix(0.282927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282927,0.000000,0.000000,0.250000,0,0);}
.m58_c00126{transform:matrix(0.283223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283223,0.000000,0.000000,0.250000,0,0);}
.m27_c00126{transform:matrix(0.284635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284635,0.000000,0.000000,0.250000,0,0);}
.m3a_c00126{transform:matrix(0.284646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284646,0.000000,0.000000,0.250000,0,0);}
.m9b_c00126{transform:matrix(0.284938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284938,0.000000,0.000000,0.250000,0,0);}
.m73_c00126{transform:matrix(0.285184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285184,0.000000,0.000000,0.250000,0,0);}
.m2a_c00126{transform:matrix(0.285694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285694,0.000000,0.000000,0.250000,0,0);}
.ma2_c00126{transform:matrix(0.286086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286086,0.000000,0.000000,0.250000,0,0);}
.ma5_c00126{transform:matrix(0.286652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286652,0.000000,0.000000,0.250000,0,0);}
.m95_c00126{transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);}
.mc4_c00126{transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);}
.m5a_c00126{transform:matrix(0.290491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290491,0.000000,0.000000,0.250000,0,0);}
.m4e_c00126{transform:matrix(0.290525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290525,0.000000,0.000000,0.250000,0,0);}
.m3b_c00126{transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);}
.m72_c00126{transform:matrix(0.290804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290804,0.000000,0.000000,0.250000,0,0);}
.mb2_c00126{transform:matrix(0.290979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290979,0.000000,0.000000,0.250000,0,0);}
.m90_c00126{transform:matrix(0.291133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291133,0.000000,0.000000,0.250000,0,0);}
.m29_c00126{transform:matrix(0.291146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291146,0.000000,0.000000,0.250000,0,0);}
.m46_c00126{transform:matrix(0.291407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291407,0.000000,0.000000,0.250000,0,0);}
.m11_c00126{transform:matrix(0.291525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291525,0.000000,0.000000,0.250000,0,0);}
.m88_c00126{transform:matrix(0.291663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291663,0.000000,0.000000,0.250000,0,0);}
.m51_c00126{transform:matrix(0.293149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293149,0.000000,0.000000,0.250000,0,0);}
.m4b_c00126{transform:matrix(0.293599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293599,0.000000,0.000000,0.250000,0,0);}
.ma6_c00126{transform:matrix(0.293689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293689,0.000000,0.000000,0.250000,0,0);}
.m7_c00126{transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);}
.m1b_c00126{transform:matrix(0.295116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295116,0.000000,0.000000,0.250000,0,0);}
.m1a_c00126{transform:matrix(0.295919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295919,0.000000,0.000000,0.250000,0,0);}
.me_c00126{transform:matrix(0.296132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296132,0.000000,0.000000,0.250000,0,0);}
.m47_c00126{transform:matrix(0.296267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296267,0.000000,0.000000,0.250000,0,0);}
.m7e_c00126{transform:matrix(0.296762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296762,0.000000,0.000000,0.250000,0,0);}
.m48_c00126{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m31_c00126{transform:matrix(0.297216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297216,0.000000,0.000000,0.250000,0,0);}
.m20_c00126{transform:matrix(0.298124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298124,0.000000,0.000000,0.250000,0,0);}
.m13_c00126{transform:matrix(0.298942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298942,0.000000,0.000000,0.250000,0,0);}
.mb7_c00126{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m52_c00126{transform:matrix(0.300583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300583,0.000000,0.000000,0.250000,0,0);}
.m1c_c00126{transform:matrix(0.300614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300614,0.000000,0.000000,0.250000,0,0);}
.mb_c00126{transform:matrix(0.300944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300944,0.000000,0.000000,0.250000,0,0);}
.mc3_c00126{transform:matrix(0.301052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301052,0.000000,0.000000,0.250000,0,0);}
.mc5_c00126{transform:matrix(0.301346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301346,0.000000,0.000000,0.250000,0,0);}
.m41_c00126{transform:matrix(0.302598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302598,0.000000,0.000000,0.250000,0,0);}
.m94_c00126{transform:matrix(0.303864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303864,0.000000,0.000000,0.250000,0,0);}
.m21_c00126{transform:matrix(0.304138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304138,0.000000,0.000000,0.250000,0,0);}
.m4d_c00126{transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);}
.m43_c00126{transform:matrix(0.305152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305152,0.000000,0.000000,0.250000,0,0);}
.m81_c00126{transform:matrix(0.305914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305914,0.000000,0.000000,0.250000,0,0);}
.ma3_c00126{transform:matrix(0.307013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307013,0.000000,0.000000,0.250000,0,0);}
.mb3_c00126{transform:matrix(0.307034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307034,0.000000,0.000000,0.250000,0,0);}
.m2_c00126{transform:matrix(0.307787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307787,0.000000,0.000000,0.250000,0,0);}
.maa_c00126{transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);}
.m82_c00126{transform:matrix(0.308319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308319,0.000000,0.000000,0.250000,0,0);}
.m23_c00126{transform:matrix(0.308369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308369,0.000000,0.000000,0.250000,0,0);}
.mf_c00126{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m5b_c00126{transform:matrix(0.308866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308866,0.000000,0.000000,0.250000,0,0);}
.mbb_c00126{transform:matrix(0.308959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308959,0.000000,0.000000,0.250000,0,0);}
.m86_c00126{transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);}
.m99_c00126{transform:matrix(0.309629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309629,0.000000,0.000000,0.250000,0,0);}
.m60_c00126{transform:matrix(0.310694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310694,0.000000,0.000000,0.250000,0,0);}
.m5c_c00126{transform:matrix(0.310986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310986,0.000000,0.000000,0.250000,0,0);}
.m26_c00126{transform:matrix(0.311202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311202,0.000000,0.000000,0.250000,0,0);}
.m28_c00126{transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);}
.ma4_c00126{transform:matrix(0.312347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312347,0.000000,0.000000,0.250000,0,0);}
.m3f_c00126{transform:matrix(0.313369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313369,0.000000,0.000000,0.250000,0,0);}
.m62_c00126{transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);}
.m14_c00126{transform:matrix(0.315515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315515,0.000000,0.000000,0.250000,0,0);}
.m25_c00126{transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);}
.m98_c00126{transform:matrix(0.316581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316581,0.000000,0.000000,0.250000,0,0);}
.m2d_c00126{transform:matrix(0.317662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317662,0.000000,0.000000,0.250000,0,0);}
.mb8_c00126{transform:matrix(0.318265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318265,0.000000,0.000000,0.250000,0,0);}
.m9f_c00126{transform:matrix(0.318732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318732,0.000000,0.000000,0.250000,0,0);}
.m3d_c00126{transform:matrix(0.320366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320366,0.000000,0.000000,0.250000,0,0);}
.mac_c00126{transform:matrix(0.320374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320374,0.000000,0.000000,0.250000,0,0);}
.mbf_c00126{transform:matrix(0.320598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320598,0.000000,0.000000,0.250000,0,0);}
.m9d_c00126{transform:matrix(0.321004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321004,0.000000,0.000000,0.250000,0,0);}
.m70_c00126{transform:matrix(0.321236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321236,0.000000,0.000000,0.250000,0,0);}
.m69_c00126{transform:matrix(0.321739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321739,0.000000,0.000000,0.250000,0,0);}
.m30_c00126{transform:matrix(0.322154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322154,0.000000,0.000000,0.250000,0,0);}
.m96_c00126{transform:matrix(0.323210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323210,0.000000,0.000000,0.250000,0,0);}
.mba_c00126{transform:matrix(0.324052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324052,0.000000,0.000000,0.250000,0,0);}
.m5d_c00126{transform:matrix(0.324456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324456,0.000000,0.000000,0.250000,0,0);}
.m83_c00126{transform:matrix(0.324667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324667,0.000000,0.000000,0.250000,0,0);}
.m67_c00126{transform:matrix(0.324775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324775,0.000000,0.000000,0.250000,0,0);}
.m2e_c00126{transform:matrix(0.325287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325287,0.000000,0.000000,0.250000,0,0);}
.m4c_c00126{transform:matrix(0.325367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325367,0.000000,0.000000,0.250000,0,0);}
.m5f_c00126{transform:matrix(0.325574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325574,0.000000,0.000000,0.250000,0,0);}
.ma_c00126{transform:matrix(0.326806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326806,0.000000,0.000000,0.250000,0,0);}
.m45_c00126{transform:matrix(0.327126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327126,0.000000,0.000000,0.250000,0,0);}
.m80_c00126{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m56_c00126{transform:matrix(0.327209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327209,0.000000,0.000000,0.250000,0,0);}
.m71_c00126{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.m61_c00126{transform:matrix(0.327527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327527,0.000000,0.000000,0.250000,0,0);}
.m49_c00126{transform:matrix(0.331158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331158,0.000000,0.000000,0.250000,0,0);}
.m3_c00126{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m16_c00126{transform:matrix(0.335182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335182,0.000000,0.000000,0.250000,0,0);}
.m37_c00126{transform:matrix(0.336157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336157,0.000000,0.000000,0.250000,0,0);}
.m55_c00126{transform:matrix(0.336348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336348,0.000000,0.000000,0.250000,0,0);}
.m6f_c00126{transform:matrix(0.336783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336783,0.000000,0.000000,0.250000,0,0);}
.m18_c00126{transform:matrix(0.337477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337477,0.000000,0.000000,0.250000,0,0);}
.mb0_c00126{transform:matrix(0.338749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338749,0.000000,0.000000,0.250000,0,0);}
.m8b_c00126{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m33_c00126{transform:matrix(0.340035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340035,0.000000,0.000000,0.250000,0,0);}
.m9c_c00126{transform:matrix(0.342407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342407,0.000000,0.000000,0.250000,0,0);}
.ma0_c00126{transform:matrix(0.342949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342949,0.000000,0.000000,0.250000,0,0);}
.m1f_c00126{transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);}
.m2c_c00126{transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);}
.m7d_c00126{transform:matrix(0.345636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345636,0.000000,0.000000,0.250000,0,0);}
.m1d_c00126{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m65_c00126{transform:matrix(0.352906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352906,0.000000,0.000000,0.250000,0,0);}
.m7c_c00126{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.mc_c00126{transform:matrix(0.359169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359169,0.000000,0.000000,0.250000,0,0);}
.m9_c00126{transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);}
.m66_c00126{transform:matrix(0.374321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374321,0.000000,0.000000,0.250000,0,0);}
.m78_c00126{transform:matrix(0.381466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381466,0.000000,0.000000,0.250000,0,0);}
.mab_c00126{transform:matrix(0.407787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407787,0.000000,0.000000,0.250000,0,0);}
.v0_c00126{vertical-align:0.000000px;}
.ls7_c00126{letter-spacing:-2.744280px;}
.lse_c00126{letter-spacing:-2.328480px;}
.lsb_c00126{letter-spacing:-1.960200px;}
.ls13_c00126{letter-spacing:-1.262369px;}
.ls11_c00126{letter-spacing:-0.972259px;}
.ls15_c00126{letter-spacing:-0.721354px;}
.ls18_c00126{letter-spacing:-0.172498px;}
.ls6_c00126{letter-spacing:0.000000px;}
.ls17_c00126{letter-spacing:0.321473px;}
.ls1_c00126{letter-spacing:0.493970px;}
.ls2_c00126{letter-spacing:1.272308px;}
.lsa_c00126{letter-spacing:1.427026px;}
.ls5_c00126{letter-spacing:2.132698px;}
.ls3_c00126{letter-spacing:2.509056px;}
.lsd_c00126{letter-spacing:3.112798px;}
.ls16_c00126{letter-spacing:3.177900px;}
.ls8_c00126{letter-spacing:3.573900px;}
.ls4_c00126{letter-spacing:3.920400px;}
.ls14_c00126{letter-spacing:4.039200px;}
.lsc_c00126{letter-spacing:4.563900px;}
.ls0_c00126{letter-spacing:18.728226px;}
.ls10_c00126{letter-spacing:51.321798px;}
.ls12_c00126{letter-spacing:52.747398px;}
.ls19_c00126{letter-spacing:57.024198px;}
.lsf_c00126{letter-spacing:58.449798px;}
.ls9_c00126{letter-spacing:65.577798px;}
.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;}
}
.ws2_c00126{word-spacing:-20.095970px;}
.ws1_c00126{word-spacing:-19.602000px;}
.ws0_c00126{word-spacing:0.000000px;}
._c_c00126{margin-left:-2.665872px;}
._7_c00126{width:6.201281px;}
._4_c00126{width:7.919208px;}
._9_c00126{width:9.173340px;}
._0_c00126{width:10.585080px;}
._d_c00126{width:15.367968px;}
._5_c00126{width:17.484984px;}
._2_c00126{width:20.856528px;}
._6_c00126{width:22.267476px;}
._e_c00126{width:23.679216px;}
._f_c00126{width:26.658720px;}
._a_c00126{width:27.991656px;}
._1_c00126{width:31.284792px;}
._3_c00126{width:32.617728px;}
._8_c00126{width:34.107480px;}
._b_c00126{width:35.910864px;}
.fc0_c00126{color:transparent;}
.fs8_c00126{font-size:28.314000px;}
.fs5_c00126{font-size:32.868000px;}
.fs7_c00126{font-size:39.204000px;}
.fsa_c00126{font-size:51.321798px;}
.fsb_c00126{font-size:52.747398px;}
.fsf_c00126{font-size:57.024198px;}
.fs9_c00126{font-size:58.449798px;}
.fse_c00126{font-size:63.558000px;}
.fs3_c00126{font-size:65.577798px;}
.fs6_c00126{font-size:66.528000px;}
.fs0_c00126{font-size:71.478000px;}
.fs2_c00126{font-size:76.032198px;}
.fs1_c00126{font-size:78.408000px;}
.fsd_c00126{font-size:80.784000px;}
.fsc_c00126{font-size:89.496198px;}
.fs4_c00126{font-size:91.278000px;}
.y0_c00126{bottom:0.000000px;}
.y1f_c00126{bottom:20.226735px;}
.y1_c00126{bottom:76.500000px;}
.y1e_c00126{bottom:142.828335px;}
.y1d_c00126{bottom:172.404585px;}
.y1c_c00126{bottom:206.618985px;}
.y1b_c00126{bottom:239.769135px;}
.y1a_c00126{bottom:271.488735px;}
.y19_c00126{bottom:303.916185px;}
.y18_c00126{bottom:335.279385px;}
.y17_c00126{bottom:367.711785px;}
.y16_c00126{bottom:400.149135px;}
.y15_c00126{bottom:432.581535px;}
.y14_c00126{bottom:463.944735px;}
.y13_c00126{bottom:497.797785px;}
.y12_c00126{bottom:530.235135px;}
.y11_c00126{bottom:570.864735px;}
.y10_c00126{bottom:595.094985px;}
.yf_c00126{bottom:627.532335px;}
.ye_c00126{bottom:660.316185px;}
.yd_c00126{bottom:692.397135px;}
.yc_c00126{bottom:719.834985px;}
.yb_c00126{bottom:725.185935px;}
.ya_c00126{bottom:741.223935px;}
.y9_c00126{bottom:757.256985px;}
.y8_c00126{bottom:789.689385px;}
.y7_c00126{bottom:822.478185px;}
.y6_c00126{bottom:855.984735px;}
.y5_c00126{bottom:888.055785px;}
.y4_c00126{bottom:912.652335px;}
.y3_c00126{bottom:920.488185px;}
.y2_c00126{bottom:1080.155385px;}
.ha_c00126{height:29.530617px;}
.hc_c00126{height:34.180317px;}
.h7_c00126{height:34.280297px;}
.hd_c00126{height:35.129767px;}
.h11_c00126{height:37.978116px;}
.h9_c00126{height:38.476582px;}
.hb_c00126{height:38.927565px;}
.h5_c00126{height:43.674813px;}
.h10_c00126{height:66.289008px;}
.h8_c00126{height:69.386625px;}
.h2_c00126{height:70.151748px;}
.h3_c00126{height:76.953164px;}
.hf_c00126{height:79.285078px;}
.h4_c00126{height:79.299207px;}
.he_c00126{height:87.835624px;}
.h6_c00126{height:89.584365px;}
.h1_c00126{height:1110.000000px;}
.h0_c00126{height:1263.000000px;}
.w1_c00126{width:733.500000px;}
.w0_c00126{width:892.500000px;}
.x0_c00126{left:0.000000px;}
.x29_c00126{left:72.512085px;}
.x12_c00126{left:73.858485px;}
.x20_c00126{left:75.279135px;}
.x1_c00126{left:79.500000px;}
.x61_c00126{left:83.372385px;}
.x32_c00126{left:105.122685px;}
.x13_c00126{left:106.696785px;}
.x5e_c00126{left:117.418485px;}
.x6a_c00126{left:118.764885px;}
.x5b_c00126{left:120.225135px;}
.x3_c00126{left:127.843185px;}
.x4f_c00126{left:129.130185px;}
.x14_c00126{left:139.158885px;}
.x15_c00126{left:149.979585px;}
.x4_c00126{left:161.607135px;}
.x68_c00126{left:163.374285px;}
.x21_c00126{left:171.051735px;}
.x59_c00126{left:172.660485px;}
.x66_c00126{left:174.006885px;}
.x16_c00126{left:183.708885px;}
.x5f_c00126{left:184.743435px;}
.x5_c00126{left:194.366235px;}
.x22_c00126{left:205.983885px;}
.x39_c00126{left:216.487785px;}
.x17_c00126{left:218.259885px;}
.x6_c00126{left:227.917335px;}
.x63_c00126{left:229.605285px;}
.x43_c00126{left:239.653785px;}
.x18_c00126{left:250.340835px;}
.x3d_c00126{left:261.369435px;}
.x7_c00126{left:262.750485px;}
.x69_c00126{left:264.864135px;}
.x19_c00126{left:271.893135px;}
.x23_c00126{left:273.378135px;}
.x52_c00126{left:275.095785px;}
.x2f_c00126{left:284.198835px;}
.x33_c00126{left:286.663935px;}
.x8_c00126{left:294.885885px;}
.x48_c00126{left:295.910535px;}
.x53_c00126{left:301.355535px;}
.x62_c00126{left:305.087835px;}
.x2a_c00126{left:306.394635px;}
.x1a_c00126{left:317.329185px;}
.x4b_c00126{left:318.640935px;}
.x5c_c00126{left:327.065835px;}
.x4c_c00126{left:328.976535px;}
.x54_c00126{left:339.623985px;}
.x30_c00126{left:351.127785px;}
.x34_c00126{left:361.557435px;}
.x1b_c00126{left:362.587035px;}
.x2b_c00126{left:372.516735px;}
.x4d_c00126{left:373.526535px;}
.x44_c00126{left:383.664135px;}
.x24_c00126{left:385.025385px;}
.x5d_c00126{left:386.792535px;}
.x9_c00126{left:395.068935px;}
.x55_c00126{left:406.453935px;}
.x64_c00126{left:407.508285px;}
.x45_c00126{left:415.928235px;}
.x1c_c00126{left:417.487485px;}
.x4e_c00126{left:418.556685px;}
.x49_c00126{left:426.887535px;}
.x50_c00126{left:428.021085px;}
.x56_c00126{left:431.302935px;}
.x40_c00126{left:439.604085px;}
.x2c_c00126{left:450.296085px;}
.x1d_c00126{left:451.340535px;}
.x25_c00126{left:461.666235px;}
.x35_c00126{left:472.392885px;}
.x3a_c00126{left:482.535435px;}
.xa_c00126{left:484.099635px;}
.x41_c00126{left:495.563835px;}
.x4a_c00126{left:498.266535px;}
.xb_c00126{left:506.290485px;}
.xc_c00126{left:516.759735px;}
.x5a_c00126{left:518.046735px;}
.x60_c00126{left:527.125035px;}
.x65_c00126{left:529.070385px;}
.xd_c00126{left:540.084135px;}
.x3e_c00126{left:550.731585px;}
.x26_c00126{left:561.849285px;}
.x1e_c00126{left:572.744235px;}
.x57_c00126{left:581.510685px;}
.x27_c00126{left:583.198635px;}
.x36_c00126{left:585.638985px;}
.xe_c00126{left:594.281685px;}
.x67_c00126{left:595.336035px;}
.x2d_c00126{left:605.686485px;}
.x28_c00126{left:615.838935px;}
.xf_c00126{left:627.738735px;}
.x1f_c00126{left:637.925835px;}
.x31_c00126{left:639.128685px;}
.x3f_c00126{left:648.301035px;}
.x58_c00126{left:649.825635px;}
.x2_c00126{left:652.369935px;}
.x10_c00126{left:661.161135px;}
.x42_c00126{left:671.432385px;}
.x11_c00126{left:672.496635px;}
.x46_c00126{left:683.347035px;}
.x6b_c00126{left:684.450885px;}
.x37_c00126{left:694.494435px;}
.x38_c00126{left:696.969435px;}
.x3c_c00126{left:699.825585px;}
.x51_c00126{left:703.840035px;}
.x2e_c00126{left:705.448785px;}
.x3b_c00126{left:706.577385px;}
.x47_c00126{left:716.497185px;}
@media print{
.v0_c00126{vertical-align:0.000000pt;}
.ls7_c00126{letter-spacing:-2.439360pt;}
.lse_c00126{letter-spacing:-2.069760pt;}
.lsb_c00126{letter-spacing:-1.742400pt;}
.ls13_c00126{letter-spacing:-1.122106pt;}
.ls11_c00126{letter-spacing:-0.864230pt;}
.ls15_c00126{letter-spacing:-0.641203pt;}
.ls18_c00126{letter-spacing:-0.153331pt;}
.ls6_c00126{letter-spacing:0.000000pt;}
.ls17_c00126{letter-spacing:0.285754pt;}
.ls1_c00126{letter-spacing:0.439085pt;}
.ls2_c00126{letter-spacing:1.130941pt;}
.lsa_c00126{letter-spacing:1.268467pt;}
.ls5_c00126{letter-spacing:1.895731pt;}
.ls3_c00126{letter-spacing:2.230272pt;}
.lsd_c00126{letter-spacing:2.766931pt;}
.ls16_c00126{letter-spacing:2.824800pt;}
.ls8_c00126{letter-spacing:3.176800pt;}
.ls4_c00126{letter-spacing:3.484800pt;}
.ls14_c00126{letter-spacing:3.590400pt;}
.lsc_c00126{letter-spacing:4.056800pt;}
.ls0_c00126{letter-spacing:16.647312pt;}
.ls10_c00126{letter-spacing:45.619376pt;}
.ls12_c00126{letter-spacing:46.886576pt;}
.ls19_c00126{letter-spacing:50.688176pt;}
.lsf_c00126{letter-spacing:51.955376pt;}
.ls9_c00126{letter-spacing:58.291376pt;}
.ws2_c00126{word-spacing:-17.863085pt;}
.ws1_c00126{word-spacing:-17.424000pt;}
.ws0_c00126{word-spacing:0.000000pt;}
._c_c00126{margin-left:-2.369664pt;}
._7_c00126{width:5.512250pt;}
._4_c00126{width:7.039296pt;}
._9_c00126{width:8.154080pt;}
._0_c00126{width:9.408960pt;}
._d_c00126{width:13.660416pt;}
._5_c00126{width:15.542208pt;}
._2_c00126{width:18.539136pt;}
._6_c00126{width:19.793312pt;}
._e_c00126{width:21.048192pt;}
._f_c00126{width:23.696640pt;}
._a_c00126{width:24.881472pt;}
._1_c00126{width:27.808704pt;}
._3_c00126{width:28.993536pt;}
._8_c00126{width:30.317760pt;}
._b_c00126{width:31.920768pt;}
.fs8_c00126{font-size:25.168000pt;}
.fs5_c00126{font-size:29.216000pt;}
.fs7_c00126{font-size:34.848000pt;}
.fsa_c00126{font-size:45.619376pt;}
.fsb_c00126{font-size:46.886576pt;}
.fsf_c00126{font-size:50.688176pt;}
.fs9_c00126{font-size:51.955376pt;}
.fse_c00126{font-size:56.496000pt;}
.fs3_c00126{font-size:58.291376pt;}
.fs6_c00126{font-size:59.136000pt;}
.fs0_c00126{font-size:63.536000pt;}
.fs2_c00126{font-size:67.584176pt;}
.fs1_c00126{font-size:69.696000pt;}
.fsd_c00126{font-size:71.808000pt;}
.fsc_c00126{font-size:79.552176pt;}
.fs4_c00126{font-size:81.136000pt;}
.y0_c00126{bottom:0.000000pt;}
.y1f_c00126{bottom:17.979320pt;}
.y1_c00126{bottom:68.000000pt;}
.y1e_c00126{bottom:126.958520pt;}
.y1d_c00126{bottom:153.248520pt;}
.y1c_c00126{bottom:183.661320pt;}
.y1b_c00126{bottom:213.128120pt;}
.y1a_c00126{bottom:241.323320pt;}
.y19_c00126{bottom:270.147720pt;}
.y18_c00126{bottom:298.026120pt;}
.y17_c00126{bottom:326.854920pt;}
.y16_c00126{bottom:355.688120pt;}
.y15_c00126{bottom:384.516920pt;}
.y14_c00126{bottom:412.395320pt;}
.y13_c00126{bottom:442.486920pt;}
.y12_c00126{bottom:471.320120pt;}
.y11_c00126{bottom:507.435320pt;}
.y10_c00126{bottom:528.973320pt;}
.yf_c00126{bottom:557.806520pt;}
.ye_c00126{bottom:586.947720pt;}
.yd_c00126{bottom:615.464120pt;}
.yc_c00126{bottom:639.853320pt;}
.yb_c00126{bottom:644.609720pt;}
.ya_c00126{bottom:658.865720pt;}
.y9_c00126{bottom:673.117320pt;}
.y8_c00126{bottom:701.946120pt;}
.y7_c00126{bottom:731.091720pt;}
.y6_c00126{bottom:760.875320pt;}
.y5_c00126{bottom:789.382920pt;}
.y4_c00126{bottom:811.246520pt;}
.y3_c00126{bottom:818.211720pt;}
.y2_c00126{bottom:960.138120pt;}
.ha_c00126{height:26.249438pt;}
.hc_c00126{height:30.382504pt;}
.h7_c00126{height:30.471375pt;}
.hd_c00126{height:31.226460pt;}
.h11_c00126{height:33.758325pt;}
.h9_c00126{height:34.201406pt;}
.hb_c00126{height:34.602280pt;}
.h5_c00126{height:38.822056pt;}
.h10_c00126{height:58.923563pt;}
.h8_c00126{height:61.677000pt;}
.h2_c00126{height:62.357109pt;}
.h3_c00126{height:68.402813pt;}
.hf_c00126{height:70.475625pt;}
.h4_c00126{height:70.488184pt;}
.he_c00126{height:78.076110pt;}
.h6_c00126{height:79.630547pt;}
.h1_c00126{height:986.666667pt;}
.h0_c00126{height:1122.666667pt;}
.w1_c00126{width:652.000000pt;}
.w0_c00126{width:793.333333pt;}
.x0_c00126{left:0.000000pt;}
.x29_c00126{left:64.455187pt;}
.x12_c00126{left:65.651987pt;}
.x20_c00126{left:66.914787pt;}
.x1_c00126{left:70.666667pt;}
.x61_c00126{left:74.108787pt;}
.x32_c00126{left:93.442387pt;}
.x13_c00126{left:94.841587pt;}
.x5e_c00126{left:104.371987pt;}
.x6a_c00126{left:105.568787pt;}
.x5b_c00126{left:106.866787pt;}
.x3_c00126{left:113.638387pt;}
.x4f_c00126{left:114.782387pt;}
.x14_c00126{left:123.696787pt;}
.x15_c00126{left:133.315187pt;}
.x4_c00126{left:143.650787pt;}
.x68_c00126{left:145.221587pt;}
.x21_c00126{left:152.045987pt;}
.x59_c00126{left:153.475987pt;}
.x66_c00126{left:154.672787pt;}
.x16_c00126{left:163.296787pt;}
.x5f_c00126{left:164.216387pt;}
.x5_c00126{left:172.769987pt;}
.x22_c00126{left:183.096787pt;}
.x39_c00126{left:192.433587pt;}
.x17_c00126{left:194.008787pt;}
.x6_c00126{left:202.593187pt;}
.x63_c00126{left:204.093587pt;}
.x43_c00126{left:213.025587pt;}
.x18_c00126{left:222.525187pt;}
.x3d_c00126{left:232.328387pt;}
.x7_c00126{left:233.555987pt;}
.x69_c00126{left:235.434787pt;}
.x19_c00126{left:241.682787pt;}
.x23_c00126{left:243.002787pt;}
.x52_c00126{left:244.529587pt;}
.x2f_c00126{left:252.621187pt;}
.x33_c00126{left:254.812387pt;}
.x8_c00126{left:262.120787pt;}
.x48_c00126{left:263.031587pt;}
.x53_c00126{left:267.871587pt;}
.x62_c00126{left:271.189187pt;}
.x2a_c00126{left:272.350787pt;}
.x1a_c00126{left:282.070387pt;}
.x4b_c00126{left:283.236387pt;}
.x5c_c00126{left:290.725187pt;}
.x4c_c00126{left:292.423587pt;}
.x54_c00126{left:301.887987pt;}
.x30_c00126{left:312.113587pt;}
.x34_c00126{left:321.384387pt;}
.x1b_c00126{left:322.299587pt;}
.x2b_c00126{left:331.125987pt;}
.x4d_c00126{left:332.023587pt;}
.x44_c00126{left:341.034787pt;}
.x24_c00126{left:342.244787pt;}
.x5d_c00126{left:343.815587pt;}
.x9_c00126{left:351.172387pt;}
.x55_c00126{left:361.292387pt;}
.x64_c00126{left:362.229587pt;}
.x45_c00126{left:369.713987pt;}
.x1c_c00126{left:371.099987pt;}
.x4e_c00126{left:372.050387pt;}
.x49_c00126{left:379.455587pt;}
.x50_c00126{left:380.463187pt;}
.x56_c00126{left:383.380387pt;}
.x40_c00126{left:390.759187pt;}
.x2c_c00126{left:400.263187pt;}
.x1d_c00126{left:401.191587pt;}
.x25_c00126{left:410.369987pt;}
.x35_c00126{left:419.904787pt;}
.x3a_c00126{left:428.920387pt;}
.xa_c00126{left:430.310787pt;}
.x41_c00126{left:440.501187pt;}
.x4a_c00126{left:442.903587pt;}
.xb_c00126{left:450.035987pt;}
.xc_c00126{left:459.341987pt;}
.x5a_c00126{left:460.485987pt;}
.x60_c00126{left:468.555587pt;}
.x65_c00126{left:470.284787pt;}
.xd_c00126{left:480.074787pt;}
.x3e_c00126{left:489.539187pt;}
.x26_c00126{left:499.421587pt;}
.x1e_c00126{left:509.105987pt;}
.x57_c00126{left:516.898387pt;}
.x27_c00126{left:518.398787pt;}
.x36_c00126{left:520.567987pt;}
.xe_c00126{left:528.250387pt;}
.x67_c00126{left:529.187587pt;}
.x2d_c00126{left:538.387987pt;}
.x28_c00126{left:547.412387pt;}
.xf_c00126{left:557.989987pt;}
.x1f_c00126{left:567.045187pt;}
.x31_c00126{left:568.114387pt;}
.x3f_c00126{left:576.267587pt;}
.x58_c00126{left:577.622787pt;}
.x2_c00126{left:579.884387pt;}
.x10_c00126{left:587.698787pt;}
.x42_c00126{left:596.828787pt;}
.x11_c00126{left:597.774787pt;}
.x46_c00126{left:607.419587pt;}
.x6b_c00126{left:608.400787pt;}
.x37_c00126{left:617.328387pt;}
.x38_c00126{left:619.528387pt;}
.x3c_c00126{left:622.067187pt;}
.x51_c00126{left:625.635587pt;}
.x2e_c00126{left:627.065587pt;}
.x3b_c00126{left:628.068787pt;}
.x47_c00126{left:636.886387pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c188786d57379ce28650791f.woff2')format("woff");}.ff1_c00127{font-family:ff1_c00127;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00127;src:url('chunks/assets/font_df7a154488ade0693012a86c.woff2')format("woff");}.ff2_c00127{font-family:ff2_c00127;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00127;src:url('chunks/assets/font_eebc73a239e3d55021d411d2.woff2')format("woff");}.ff3_c00127{font-family:ff3_c00127;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00127;src:url('chunks/assets/font_a315f2c59a10fffe988b072c.woff2')format("woff");}.ff4_c00127{font-family:ff4_c00127;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ma7_c00127{transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);}
.m85_c00127{transform:matrix(0.223810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223810,0.000000,0.000000,0.250000,0,0);}
.m50_c00127{transform:matrix(0.231988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231988,0.000000,0.000000,0.250000,0,0);}
.ma1_c00127{transform:matrix(0.232347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232347,0.000000,0.000000,0.250000,0,0);}
.m46_c00127{transform:matrix(0.245353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245353,0.000000,0.000000,0.250000,0,0);}
.m29_c00127{transform:matrix(0.246084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246084,0.000000,0.000000,0.250000,0,0);}
.m74_c00127{transform:matrix(0.248109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248109,0.000000,0.000000,0.250000,0,0);}
.m0_c00127{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m56_c00127{transform:matrix(0.250440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250440,0.000000,0.000000,0.250000,0,0);}
.m36_c00127{transform:matrix(0.250919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250919,0.000000,0.000000,0.250000,0,0);}
.m9d_c00127{transform:matrix(0.252581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252581,0.000000,0.000000,0.250000,0,0);}
.m27_c00127{transform:matrix(0.252609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252609,0.000000,0.000000,0.250000,0,0);}
.ma6_c00127{transform:matrix(0.252874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252874,0.000000,0.000000,0.250000,0,0);}
.m1b_c00127{transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);}
.m20_c00127{transform:matrix(0.253456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253456,0.000000,0.000000,0.250000,0,0);}
.m45_c00127{transform:matrix(0.254614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254614,0.000000,0.000000,0.250000,0,0);}
.m40_c00127{transform:matrix(0.254719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254719,0.000000,0.000000,0.250000,0,0);}
.m33_c00127{transform:matrix(0.255381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255381,0.000000,0.000000,0.250000,0,0);}
.m88_c00127{transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);}
.m5d_c00127{transform:matrix(0.256770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256770,0.000000,0.000000,0.250000,0,0);}
.ma3_c00127{transform:matrix(0.256771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256771,0.000000,0.000000,0.250000,0,0);}
.m6_c00127{transform:matrix(0.257133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257133,0.000000,0.000000,0.250000,0,0);}
.m52_c00127{transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);}
.m6c_c00127{transform:matrix(0.257990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257990,0.000000,0.000000,0.250000,0,0);}
.m42_c00127{transform:matrix(0.258788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258788,0.000000,0.000000,0.250000,0,0);}
.m90_c00127{transform:matrix(0.259894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259894,0.000000,0.000000,0.250000,0,0);}
.m35_c00127{transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);}
.m6d_c00127{transform:matrix(0.261263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261263,0.000000,0.000000,0.250000,0,0);}
.m77_c00127{transform:matrix(0.261486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261486,0.000000,0.000000,0.250000,0,0);}
.m7_c00127{transform:matrix(0.261958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261958,0.000000,0.000000,0.250000,0,0);}
.m41_c00127{transform:matrix(0.262227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262227,0.000000,0.000000,0.250000,0,0);}
.m6f_c00127{transform:matrix(0.263289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263289,0.000000,0.000000,0.250000,0,0);}
.m81_c00127{transform:matrix(0.265167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265167,0.000000,0.000000,0.250000,0,0);}
.m1_c00127{transform:matrix(0.265392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265392,0.000000,0.000000,0.250000,0,0);}
.mb_c00127{transform:matrix(0.266393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266393,0.000000,0.000000,0.250000,0,0);}
.m80_c00127{transform:matrix(0.266463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266463,0.000000,0.000000,0.250000,0,0);}
.m60_c00127{transform:matrix(0.266822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266822,0.000000,0.000000,0.250000,0,0);}
.me_c00127{transform:matrix(0.267437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267437,0.000000,0.000000,0.250000,0,0);}
.m4e_c00127{transform:matrix(0.267673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267673,0.000000,0.000000,0.250000,0,0);}
.m66_c00127{transform:matrix(0.268079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268079,0.000000,0.000000,0.250000,0,0);}
.m8f_c00127{transform:matrix(0.268134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268134,0.000000,0.000000,0.250000,0,0);}
.m37_c00127{transform:matrix(0.269069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269069,0.000000,0.000000,0.250000,0,0);}
.m9_c00127{transform:matrix(0.270851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270851,0.000000,0.000000,0.250000,0,0);}
.m7a_c00127{transform:matrix(0.270979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270979,0.000000,0.000000,0.250000,0,0);}
.m7b_c00127{transform:matrix(0.272325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272325,0.000000,0.000000,0.250000,0,0);}
.m5a_c00127{transform:matrix(0.272605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272605,0.000000,0.000000,0.250000,0,0);}
.m1d_c00127{transform:matrix(0.272880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272880,0.000000,0.000000,0.250000,0,0);}
.m7c_c00127{transform:matrix(0.272984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272984,0.000000,0.000000,0.250000,0,0);}
.m26_c00127{transform:matrix(0.273059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273059,0.000000,0.000000,0.250000,0,0);}
.m65_c00127{transform:matrix(0.273186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273186,0.000000,0.000000,0.250000,0,0);}
.m95_c00127{transform:matrix(0.273519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273519,0.000000,0.000000,0.250000,0,0);}
.m9f_c00127{transform:matrix(0.273522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273522,0.000000,0.000000,0.250000,0,0);}
.m7d_c00127{transform:matrix(0.274768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274768,0.000000,0.000000,0.250000,0,0);}
.m8d_c00127{transform:matrix(0.275243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275243,0.000000,0.000000,0.250000,0,0);}
.m96_c00127{transform:matrix(0.275369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275369,0.000000,0.000000,0.250000,0,0);}
.m62_c00127{transform:matrix(0.275643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275643,0.000000,0.000000,0.250000,0,0);}
.m2d_c00127{transform:matrix(0.276127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276127,0.000000,0.000000,0.250000,0,0);}
.m3c_c00127{transform:matrix(0.276321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276321,0.000000,0.000000,0.250000,0,0);}
.m86_c00127{transform:matrix(0.276587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276587,0.000000,0.000000,0.250000,0,0);}
.m39_c00127{transform:matrix(0.276652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276652,0.000000,0.000000,0.250000,0,0);}
.m53_c00127{transform:matrix(0.276938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276938,0.000000,0.000000,0.250000,0,0);}
.m98_c00127{transform:matrix(0.277239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277239,0.000000,0.000000,0.250000,0,0);}
.m75_c00127{transform:matrix(0.277538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277538,0.000000,0.000000,0.250000,0,0);}
.m43_c00127{transform:matrix(0.277807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277807,0.000000,0.000000,0.250000,0,0);}
.m21_c00127{transform:matrix(0.278275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278275,0.000000,0.000000,0.250000,0,0);}
.mc_c00127{transform:matrix(0.278680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278680,0.000000,0.000000,0.250000,0,0);}
.m5f_c00127{transform:matrix(0.278873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278873,0.000000,0.000000,0.250000,0,0);}
.m55_c00127{transform:matrix(0.278918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278918,0.000000,0.000000,0.250000,0,0);}
.m38_c00127{transform:matrix(0.279816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279816,0.000000,0.000000,0.250000,0,0);}
.m51_c00127{transform:matrix(0.279871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279871,0.000000,0.000000,0.250000,0,0);}
.ma5_c00127{transform:matrix(0.280038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280038,0.000000,0.000000,0.250000,0,0);}
.m94_c00127{transform:matrix(0.280598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280598,0.000000,0.000000,0.250000,0,0);}
.m93_c00127{transform:matrix(0.281751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281751,0.000000,0.000000,0.250000,0,0);}
.m13_c00127{transform:matrix(0.281999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281999,0.000000,0.000000,0.250000,0,0);}
.m82_c00127{transform:matrix(0.282309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282309,0.000000,0.000000,0.250000,0,0);}
.m6e_c00127{transform:matrix(0.283112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283112,0.000000,0.000000,0.250000,0,0);}
.m18_c00127{transform:matrix(0.283650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283650,0.000000,0.000000,0.250000,0,0);}
.m87_c00127{transform:matrix(0.283965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283965,0.000000,0.000000,0.250000,0,0);}
.m91_c00127{transform:matrix(0.284417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284417,0.000000,0.000000,0.250000,0,0);}
.m8e_c00127{transform:matrix(0.284439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284439,0.000000,0.000000,0.250000,0,0);}
.m3a_c00127{transform:matrix(0.284485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284485,0.000000,0.000000,0.250000,0,0);}
.m89_c00127{transform:matrix(0.285286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285286,0.000000,0.000000,0.250000,0,0);}
.m99_c00127{transform:matrix(0.285394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285394,0.000000,0.000000,0.250000,0,0);}
.m4f_c00127{transform:matrix(0.285845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285845,0.000000,0.000000,0.250000,0,0);}
.m23_c00127{transform:matrix(0.286331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286331,0.000000,0.000000,0.250000,0,0);}
.m1c_c00127{transform:matrix(0.286788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286788,0.000000,0.000000,0.250000,0,0);}
.m7f_c00127{transform:matrix(0.287576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287576,0.000000,0.000000,0.250000,0,0);}
.m1f_c00127{transform:matrix(0.288004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288004,0.000000,0.000000,0.250000,0,0);}
.m71_c00127{transform:matrix(0.289169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289169,0.000000,0.000000,0.250000,0,0);}
.mf_c00127{transform:matrix(0.289175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289175,0.000000,0.000000,0.250000,0,0);}
.m16_c00127{transform:matrix(0.289473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289473,0.000000,0.000000,0.250000,0,0);}
.m2_c00127{transform:matrix(0.290030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290030,0.000000,0.000000,0.250000,0,0);}
.m58_c00127{transform:matrix(0.290326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290326,0.000000,0.000000,0.250000,0,0);}
.m76_c00127{transform:matrix(0.290667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290667,0.000000,0.000000,0.250000,0,0);}
.m8c_c00127{transform:matrix(0.290755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290755,0.000000,0.000000,0.250000,0,0);}
.m44_c00127{transform:matrix(0.290946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290946,0.000000,0.000000,0.250000,0,0);}
.m9a_c00127{transform:matrix(0.291139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291139,0.000000,0.000000,0.250000,0,0);}
.m17_c00127{transform:matrix(0.291272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291272,0.000000,0.000000,0.250000,0,0);}
.m3_c00127{transform:matrix(0.292095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292095,0.000000,0.000000,0.250000,0,0);}
.m69_c00127{transform:matrix(0.292437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292437,0.000000,0.000000,0.250000,0,0);}
.m78_c00127{transform:matrix(0.292727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292727,0.000000,0.000000,0.250000,0,0);}
.m22_c00127{transform:matrix(0.292766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292766,0.000000,0.000000,0.250000,0,0);}
.m6b_c00127{transform:matrix(0.292980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292980,0.000000,0.000000,0.250000,0,0);}
.m4b_c00127{transform:matrix(0.293038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293038,0.000000,0.000000,0.250000,0,0);}
.m2b_c00127{transform:matrix(0.293261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293261,0.000000,0.000000,0.250000,0,0);}
.m57_c00127{transform:matrix(0.293880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293880,0.000000,0.000000,0.250000,0,0);}
.m63_c00127{transform:matrix(0.293982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293982,0.000000,0.000000,0.250000,0,0);}
.m79_c00127{transform:matrix(0.294591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294591,0.000000,0.000000,0.250000,0,0);}
.m4a_c00127{transform:matrix(0.295671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295671,0.000000,0.000000,0.250000,0,0);}
.m59_c00127{transform:matrix(0.296420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296420,0.000000,0.000000,0.250000,0,0);}
.m31_c00127{transform:matrix(0.296594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296594,0.000000,0.000000,0.250000,0,0);}
.m48_c00127{transform:matrix(0.296976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296976,0.000000,0.000000,0.250000,0,0);}
.m3d_c00127{transform:matrix(0.297066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297066,0.000000,0.000000,0.250000,0,0);}
.m11_c00127{transform:matrix(0.297118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297118,0.000000,0.000000,0.250000,0,0);}
.m3e_c00127{transform:matrix(0.297213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297213,0.000000,0.000000,0.250000,0,0);}
.m8_c00127{transform:matrix(0.299532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299532,0.000000,0.000000,0.250000,0,0);}
.m5_c00127{transform:matrix(0.299718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299718,0.000000,0.000000,0.250000,0,0);}
.m5b_c00127{transform:matrix(0.299926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299926,0.000000,0.000000,0.250000,0,0);}
.m70_c00127{transform:matrix(0.300906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300906,0.000000,0.000000,0.250000,0,0);}
.m24_c00127{transform:matrix(0.301133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301133,0.000000,0.000000,0.250000,0,0);}
.m2e_c00127{transform:matrix(0.301306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301306,0.000000,0.000000,0.250000,0,0);}
.m1a_c00127{transform:matrix(0.301469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301469,0.000000,0.000000,0.250000,0,0);}
.m73_c00127{transform:matrix(0.301972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301972,0.000000,0.000000,0.250000,0,0);}
.m25_c00127{transform:matrix(0.303177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303177,0.000000,0.000000,0.250000,0,0);}
.m5c_c00127{transform:matrix(0.303261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303261,0.000000,0.000000,0.250000,0,0);}
.m68_c00127{transform:matrix(0.305325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305325,0.000000,0.000000,0.250000,0,0);}
.m9c_c00127{transform:matrix(0.305472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305472,0.000000,0.000000,0.250000,0,0);}
.m6a_c00127{transform:matrix(0.306145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306145,0.000000,0.000000,0.250000,0,0);}
.m84_c00127{transform:matrix(0.306870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306870,0.000000,0.000000,0.250000,0,0);}
.m19_c00127{transform:matrix(0.306882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306882,0.000000,0.000000,0.250000,0,0);}
.m2a_c00127{transform:matrix(0.308132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308132,0.000000,0.000000,0.250000,0,0);}
.m4_c00127{transform:matrix(0.309108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309108,0.000000,0.000000,0.250000,0,0);}
.m92_c00127{transform:matrix(0.309882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309882,0.000000,0.000000,0.250000,0,0);}
.m2f_c00127{transform:matrix(0.310195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310195,0.000000,0.000000,0.250000,0,0);}
.m10_c00127{transform:matrix(0.311423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311423,0.000000,0.000000,0.250000,0,0);}
.m9b_c00127{transform:matrix(0.311803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311803,0.000000,0.000000,0.250000,0,0);}
.m9e_c00127{transform:matrix(0.312835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312835,0.000000,0.000000,0.250000,0,0);}
.m8a_c00127{transform:matrix(0.313185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313185,0.000000,0.000000,0.250000,0,0);}
.m14_c00127{transform:matrix(0.313352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313352,0.000000,0.000000,0.250000,0,0);}
.m32_c00127{transform:matrix(0.313561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313561,0.000000,0.000000,0.250000,0,0);}
.ma4_c00127{transform:matrix(0.314374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314374,0.000000,0.000000,0.250000,0,0);}
.m1e_c00127{transform:matrix(0.314459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314459,0.000000,0.000000,0.250000,0,0);}
.m28_c00127{transform:matrix(0.317290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317290,0.000000,0.000000,0.250000,0,0);}
.m54_c00127{transform:matrix(0.317544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317544,0.000000,0.000000,0.250000,0,0);}
.m3f_c00127{transform:matrix(0.319164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319164,0.000000,0.000000,0.250000,0,0);}
.ma_c00127{transform:matrix(0.319440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319440,0.000000,0.000000,0.250000,0,0);}
.m2c_c00127{transform:matrix(0.324044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324044,0.000000,0.000000,0.250000,0,0);}
.m7e_c00127{transform:matrix(0.326612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326612,0.000000,0.000000,0.250000,0,0);}
.m4c_c00127{transform:matrix(0.327951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327951,0.000000,0.000000,0.250000,0,0);}
.m4d_c00127{transform:matrix(0.328954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328954,0.000000,0.000000,0.250000,0,0);}
.m72_c00127{transform:matrix(0.329385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329385,0.000000,0.000000,0.250000,0,0);}
.m83_c00127{transform:matrix(0.330094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330094,0.000000,0.000000,0.250000,0,0);}
.m30_c00127{transform:matrix(0.330856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330856,0.000000,0.000000,0.250000,0,0);}
.m3b_c00127{transform:matrix(0.332229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332229,0.000000,0.000000,0.250000,0,0);}
.m97_c00127{transform:matrix(0.332551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332551,0.000000,0.000000,0.250000,0,0);}
.m64_c00127{transform:matrix(0.337590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337590,0.000000,0.000000,0.250000,0,0);}
.m5e_c00127{transform:matrix(0.341640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341640,0.000000,0.000000,0.250000,0,0);}
.m8b_c00127{transform:matrix(0.345597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345597,0.000000,0.000000,0.250000,0,0);}
.m47_c00127{transform:matrix(0.347313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347313,0.000000,0.000000,0.250000,0,0);}
.md_c00127{transform:matrix(0.349514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349514,0.000000,0.000000,0.250000,0,0);}
.ma0_c00127{transform:matrix(0.352841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352841,0.000000,0.000000,0.250000,0,0);}
.m67_c00127{transform:matrix(0.356776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356776,0.000000,0.000000,0.250000,0,0);}
.m61_c00127{transform:matrix(0.364504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364504,0.000000,0.000000,0.250000,0,0);}
.m12_c00127{transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);}
.m15_c00127{transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);}
.m49_c00127{transform:matrix(0.376256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376256,0.000000,0.000000,0.250000,0,0);}
.m34_c00127{transform:matrix(0.423626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423626,0.000000,0.000000,0.250000,0,0);}
.ma2_c00127{transform:matrix(0.486057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486057,0.000000,0.000000,0.250000,0,0);}
.v1_c00127{vertical-align:-19.958400px;}
.v0_c00127{vertical-align:0.000000px;}
.ls7_c00127{letter-spacing:-2.855167px;}
.lsd_c00127{letter-spacing:-2.798064px;}
.ls8_c00127{letter-spacing:-0.889181px;}
.ls6_c00127{letter-spacing:-0.636294px;}
.ls2_c00127{letter-spacing:0.000000px;}
.ls5_c00127{letter-spacing:0.244729px;}
.lsb_c00127{letter-spacing:2.851200px;}
.ls4_c00127{letter-spacing:3.091738px;}
.ls1_c00127{letter-spacing:3.156999px;}
.ls3_c00127{letter-spacing:3.420371px;}
.lsa_c00127{letter-spacing:3.663000px;}
.lsf_c00127{letter-spacing:3.861000px;}
.ls10_c00127{letter-spacing:3.920400px;}
.ls9_c00127{letter-spacing:3.989076px;}
.ls0_c00127{letter-spacing:4.078810px;}
.lsc_c00127{letter-spacing:4.633200px;}
.ls11_c00127{letter-spacing:31.363200px;}
.lse_c00127{letter-spacing:59.875398px;}
.sc__c00127{text-shadow:none;}
.sc0_c00127{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00127{-webkit-text-stroke:0px transparent;}
.sc0_c00127{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00127{word-spacing:0.000000px;}
._3_c00127{margin-left:-14.439403px;}
._5_c00127{margin-left:-6.058800px;}
._0_c00127{width:16.722480px;}
._2_c00127{width:21.517760px;}
._1_c00127{width:25.614809px;}
._4_c00127{width:70.466946px;}
.fc0_c00127{color:transparent;}
.fs0_c00127{font-size:22.176000px;}
.fs1_c00127{font-size:27.720000px;}
.fse_c00127{font-size:31.363200px;}
.fsd_c00127{font-size:32.868000px;}
.fsc_c00127{font-size:33.660000px;}
.fsb_c00127{font-size:37.818000px;}
.fs6_c00127{font-size:57.024000px;}
.fs8_c00127{font-size:59.875398px;}
.fs4_c00127{font-size:72.864000px;}
.fs5_c00127{font-size:73.260000px;}
.fs3_c00127{font-size:74.844000px;}
.fs9_c00127{font-size:77.220000px;}
.fsa_c00127{font-size:78.408000px;}
.fs2_c00127{font-size:81.576198px;}
.fs7_c00127{font-size:92.664000px;}
.y0_c00127{bottom:0.000000px;}
.y1e_c00127{bottom:23.434335px;}
.y1d_c00127{bottom:39.110985px;}
.y1c_c00127{bottom:50.159385px;}
.y1_c00127{bottom:76.500000px;}
.y1b_c00127{bottom:165.632985px;}
.y1a_c00127{bottom:196.644735px;}
.y19_c00127{bottom:229.077135px;}
.y18_c00127{bottom:291.803535px;}
.y17_c00127{bottom:322.810335px;}
.y16_c00127{bottom:354.524985px;}
.y15_c00127{bottom:386.605935px;}
.y2_c00127{bottom:401.926185px;}
.y14_c00127{bottom:417.256335px;}
.y13_c00127{bottom:449.332335px;}
.y12_c00127{bottom:481.051935px;}
.y11_c00127{bottom:513.479385px;}
.y10_c00127{bottom:544.842585px;}
.yf_c00127{bottom:574.072335px;}
.ye_c00127{bottom:606.856185px;}
.yd_c00127{bottom:638.937135px;}
.yc_c00127{bottom:670.300335px;}
.yb_c00127{bottom:702.371385px;}
.ya_c00127{bottom:734.095935px;}
.y9_c00127{bottom:765.810585px;}
.y8_c00127{bottom:796.822335px;}
.y7_c00127{bottom:828.536985px;}
.y6_c00127{bottom:860.612985px;}
.y5_c00127{bottom:922.982985px;}
.y4_c00127{bottom:1071.601785px;}
.y3_c00127{bottom:1085.501385px;}
.hf_c00127{height:20.887891px;}
.h2_c00127{height:23.128875px;}
.h3_c00127{height:28.911094px;}
.he_c00127{height:33.035449px;}
.hd_c00127{height:37.116299px;}
.ha_c00127{height:39.877015px;}
.h8_c00127{height:59.474250px;}
.h6_c00127{height:71.512031px;}
.h5_c00127{height:73.455293px;}
.hb_c00127{height:75.787207px;}
.h7_c00127{height:76.407891px;}
.hc_c00127{height:76.914879px;}
.h4_c00127{height:80.062577px;}
.h9_c00127{height:90.944648px;}
.h1_c00127{height:1110.000000px;}
.h0_c00127{height:1263.000000px;}
.w1_c00127{width:733.500000px;}
.w0_c00127{width:892.500000px;}
.x0_c00127{left:0.000000px;}
.x2_c00127{left:56.597835px;}
.x5_c00127{left:74.462385px;}
.x14_c00127{left:76.016685px;}
.x1_c00127{left:79.500000px;}
.x30_c00127{left:98.093685px;}
.x45_c00127{left:107.285835px;}
.x3c_c00127{left:108.825285px;}
.x4a_c00127{left:119.561835px;}
.x4d_c00127{left:128.645085px;}
.xd_c00127{left:129.986535px;}
.x15_c00127{left:141.242835px;}
.x54_c00127{left:142.297185px;}
.x40_c00127{left:153.063435px;}
.x6_c00127{left:163.983135px;}
.x52_c00127{left:173.576235px;}
.x16_c00127{left:175.491885px;}
.x36_c00127{left:185.421585px;}
.x3d_c00127{left:195.999735px;}
.x31_c00127{left:207.914385px;}
.x41_c00127{left:218.091585px;}
.x7_c00127{left:219.299385px;}
.xe_c00127{left:220.388385px;}
.x3_c00127{left:224.793885px;}
.x3e_c00127{left:230.050785px;}
.x17_c00127{left:231.060585px;}
.x58_c00127{left:242.049585px;}
.x32_c00127{left:252.627735px;}
.x46_c00127{left:263.864235px;}
.x8_c00127{left:274.551285px;}
.xf_c00127{left:287.020335px;}
.x59_c00127{left:296.801535px;}
.x4f_c00127{left:298.088535px;}
.x2a_c00127{left:308.419185px;}
.x47_c00127{left:309.721035px;}
.x10_c00127{left:319.423035px;}
.x4b_c00127{left:320.556585px;}
.x9_c00127{left:331.243635px;}
.x18_c00127{left:341.178285px;}
.x24_c00127{left:342.242535px;}
.x2b_c00127{left:352.261335px;}
.x55_c00127{left:353.672085px;}
.x5a_c00127{left:362.141535px;}
.x1e_c00127{left:363.636435px;}
.x19_c00127{left:374.526435px;}
.xa_c00127{left:386.144085px;}
.x1f_c00127{left:396.291585px;}
.x4e_c00127{left:397.504335px;}
.x25_c00127{left:409.270485px;}
.x5b_c00127{left:418.066635px;}
.xb_c00127{left:419.927835px;}
.x37_c00127{left:429.649635px;}
.x2c_c00127{left:430.694085px;}
.x33_c00127{left:442.786935px;}
.x11_c00127{left:453.478935px;}
.x5c_c00127{left:464.195685px;}
.x56_c00127{left:474.531285px;}
.x20_c00127{left:475.917285px;}
.x26_c00127{left:486.525135px;}
.x1a_c00127{left:496.093485px;}
.x2d_c00127{left:497.217135px;}
.x4c_c00127{left:498.726885px;}
.x50_c00127{left:507.488385px;}
.xc_c00127{left:509.067435px;}
.x1b_c00127{left:518.665485px;}
.x38_c00127{left:520.754385px;}
.x27_c00127{left:529.218885px;}
.x3f_c00127{left:530.817735px;}
.x12_c00127{left:541.148385px;}
.x2e_c00127{left:542.529435px;}
.x1c_c00127{left:552.582885px;}
.x34_c00127{left:562.052235px;}
.x43_c00127{left:563.091735px;}
.x21_c00127{left:564.329235px;}
.x28_c00127{left:573.991635px;}
.x57_c00127{left:584.866785px;}
.x39_c00127{left:586.193385px;}
.x22_c00127{left:597.771435px;}
.x4_c00127{left:607.057635px;}
.x13_c00127{left:618.828735px;}
.x23_c00127{left:630.406785px;}
.x2f_c00127{left:641.281935px;}
.x35_c00127{left:651.998685px;}
.x51_c00127{left:654.057885px;}
.x3a_c00127{left:663.061935px;}
.x48_c00127{left:664.482585px;}
.x5d_c00127{left:672.729285px;}
.x29_c00127{left:675.120135px;}
.x1d_c00127{left:684.876585px;}
.x44_c00127{left:686.564535px;}
.x42_c00127{left:694.553835px;}
.x53_c00127{left:697.647585px;}
.x5f_c00127{left:699.137535px;}
.x5e_c00127{left:701.671935px;}
.x3b_c00127{left:704.899335px;}
.x49_c00127{left:718.982085px;}
@media print{
.v1_c00127{vertical-align:-17.740800pt;}
.v0_c00127{vertical-align:0.000000pt;}
.ls7_c00127{letter-spacing:-2.537926pt;}
.lsd_c00127{letter-spacing:-2.487168pt;}
.ls8_c00127{letter-spacing:-0.790383pt;}
.ls6_c00127{letter-spacing:-0.565595pt;}
.ls2_c00127{letter-spacing:0.000000pt;}
.ls5_c00127{letter-spacing:0.217537pt;}
.lsb_c00127{letter-spacing:2.534400pt;}
.ls4_c00127{letter-spacing:2.748211pt;}
.ls1_c00127{letter-spacing:2.806221pt;}
.ls3_c00127{letter-spacing:3.040330pt;}
.lsa_c00127{letter-spacing:3.256000pt;}
.lsf_c00127{letter-spacing:3.432000pt;}
.ls10_c00127{letter-spacing:3.484800pt;}
.ls9_c00127{letter-spacing:3.545845pt;}
.ls0_c00127{letter-spacing:3.625609pt;}
.lsc_c00127{letter-spacing:4.118400pt;}
.ls11_c00127{letter-spacing:27.878400pt;}
.lse_c00127{letter-spacing:53.222576pt;}
.ws0_c00127{word-spacing:0.000000pt;}
._3_c00127{margin-left:-12.835025pt;}
._5_c00127{margin-left:-5.385600pt;}
._0_c00127{width:14.864426pt;}
._2_c00127{width:19.126898pt;}
._1_c00127{width:22.768719pt;}
._4_c00127{width:62.637285pt;}
.fs0_c00127{font-size:19.712000pt;}
.fs1_c00127{font-size:24.640000pt;}
.fse_c00127{font-size:27.878400pt;}
.fsd_c00127{font-size:29.216000pt;}
.fsc_c00127{font-size:29.920000pt;}
.fsb_c00127{font-size:33.616000pt;}
.fs6_c00127{font-size:50.688000pt;}
.fs8_c00127{font-size:53.222576pt;}
.fs4_c00127{font-size:64.768000pt;}
.fs5_c00127{font-size:65.120000pt;}
.fs3_c00127{font-size:66.528000pt;}
.fs9_c00127{font-size:68.640000pt;}
.fsa_c00127{font-size:69.696000pt;}
.fs2_c00127{font-size:72.512176pt;}
.fs7_c00127{font-size:82.368000pt;}
.y0_c00127{bottom:0.000000pt;}
.y1e_c00127{bottom:20.830520pt;}
.y1d_c00127{bottom:34.765320pt;}
.y1c_c00127{bottom:44.586120pt;}
.y1_c00127{bottom:68.000000pt;}
.y1b_c00127{bottom:147.229320pt;}
.y1a_c00127{bottom:174.795320pt;}
.y19_c00127{bottom:203.624120pt;}
.y18_c00127{bottom:259.380920pt;}
.y17_c00127{bottom:286.942520pt;}
.y16_c00127{bottom:315.133320pt;}
.y15_c00127{bottom:343.649720pt;}
.y2_c00127{bottom:357.267720pt;}
.y14_c00127{bottom:370.894520pt;}
.y13_c00127{bottom:399.406520pt;}
.y12_c00127{bottom:427.601720pt;}
.y11_c00127{bottom:456.426120pt;}
.y10_c00127{bottom:484.304520pt;}
.yf_c00127{bottom:510.286520pt;}
.ye_c00127{bottom:539.427720pt;}
.yd_c00127{bottom:567.944120pt;}
.yc_c00127{bottom:595.822520pt;}
.yb_c00127{bottom:624.330120pt;}
.ya_c00127{bottom:652.529720pt;}
.y9_c00127{bottom:680.720520pt;}
.y8_c00127{bottom:708.286520pt;}
.y7_c00127{bottom:736.477320pt;}
.y6_c00127{bottom:764.989320pt;}
.y5_c00127{bottom:820.429320pt;}
.y4_c00127{bottom:952.534920pt;}
.y3_c00127{bottom:964.890120pt;}
.hf_c00127{height:18.567014pt;}
.h2_c00127{height:20.559000pt;}
.h3_c00127{height:25.698750pt;}
.he_c00127{height:29.364844pt;}
.hd_c00127{height:32.992266pt;}
.ha_c00127{height:35.446236pt;}
.h8_c00127{height:52.866000pt;}
.h6_c00127{height:63.566250pt;}
.h5_c00127{height:65.293594pt;}
.hb_c00127{height:67.366406pt;}
.h7_c00127{height:67.918125pt;}
.hc_c00127{height:68.368781pt;}
.h4_c00127{height:71.166735pt;}
.h9_c00127{height:80.839688pt;}
.h1_c00127{height:986.666667pt;}
.h0_c00127{height:1122.666667pt;}
.w1_c00127{width:652.000000pt;}
.w0_c00127{width:793.333333pt;}
.x0_c00127{left:0.000000pt;}
.x2_c00127{left:50.309187pt;}
.x5_c00127{left:66.188787pt;}
.x14_c00127{left:67.570387pt;}
.x1_c00127{left:70.666667pt;}
.x30_c00127{left:87.194387pt;}
.x45_c00127{left:95.365187pt;}
.x3c_c00127{left:96.733587pt;}
.x4a_c00127{left:106.277187pt;}
.x4d_c00127{left:114.351187pt;}
.xd_c00127{left:115.543587pt;}
.x15_c00127{left:125.549187pt;}
.x54_c00127{left:126.486387pt;}
.x40_c00127{left:136.056387pt;}
.x6_c00127{left:145.762787pt;}
.x52_c00127{left:154.289987pt;}
.x16_c00127{left:155.992787pt;}
.x36_c00127{left:164.819187pt;}
.x3d_c00127{left:174.221987pt;}
.x31_c00127{left:184.812787pt;}
.x41_c00127{left:193.859187pt;}
.x7_c00127{left:194.932787pt;}
.xe_c00127{left:195.900787pt;}
.x3_c00127{left:199.816787pt;}
.x3e_c00127{left:204.489587pt;}
.x17_c00127{left:205.387187pt;}
.x58_c00127{left:215.155187pt;}
.x32_c00127{left:224.557987pt;}
.x46_c00127{left:234.545987pt;}
.x8_c00127{left:244.045587pt;}
.xf_c00127{left:255.129187pt;}
.x59_c00127{left:263.823587pt;}
.x4f_c00127{left:264.967587pt;}
.x2a_c00127{left:274.150387pt;}
.x47_c00127{left:275.307587pt;}
.x10_c00127{left:283.931587pt;}
.x4b_c00127{left:284.939187pt;}
.x9_c00127{left:294.438787pt;}
.x18_c00127{left:303.269587pt;}
.x24_c00127{left:304.215587pt;}
.x2b_c00127{left:313.121187pt;}
.x55_c00127{left:314.375187pt;}
.x5a_c00127{left:321.903587pt;}
.x1e_c00127{left:323.232387pt;}
.x19_c00127{left:332.912387pt;}
.xa_c00127{left:343.239187pt;}
.x1f_c00127{left:352.259187pt;}
.x4e_c00127{left:353.337187pt;}
.x25_c00127{left:363.795987pt;}
.x5b_c00127{left:371.614787pt;}
.xb_c00127{left:373.269187pt;}
.x37_c00127{left:381.910787pt;}
.x2c_c00127{left:382.839187pt;}
.x33_c00127{left:393.588387pt;}
.x11_c00127{left:403.092387pt;}
.x5c_c00127{left:412.618387pt;}
.x56_c00127{left:421.805587pt;}
.x20_c00127{left:423.037587pt;}
.x26_c00127{left:432.466787pt;}
.x1a_c00127{left:440.971987pt;}
.x2d_c00127{left:441.970787pt;}
.x4c_c00127{left:443.312787pt;}
.x50_c00127{left:451.100787pt;}
.xc_c00127{left:452.504387pt;}
.x1b_c00127{left:461.035987pt;}
.x38_c00127{left:462.892787pt;}
.x27_c00127{left:470.416787pt;}
.x3f_c00127{left:471.837987pt;}
.x12_c00127{left:481.020787pt;}
.x2e_c00127{left:482.248387pt;}
.x1c_c00127{left:491.184787pt;}
.x34_c00127{left:499.601987pt;}
.x43_c00127{left:500.525987pt;}
.x21_c00127{left:501.625987pt;}
.x28_c00127{left:510.214787pt;}
.x57_c00127{left:519.881587pt;}
.x39_c00127{left:521.060787pt;}
.x22_c00127{left:531.352387pt;}
.x4_c00127{left:539.606787pt;}
.x13_c00127{left:550.069987pt;}
.x23_c00127{left:560.361587pt;}
.x2f_c00127{left:570.028387pt;}
.x35_c00127{left:579.554387pt;}
.x51_c00127{left:581.384787pt;}
.x3a_c00127{left:589.388387pt;}
.x48_c00127{left:590.651187pt;}
.x5d_c00127{left:597.981587pt;}
.x29_c00127{left:600.106787pt;}
.x1d_c00127{left:608.779187pt;}
.x44_c00127{left:610.279587pt;}
.x42_c00127{left:617.381187pt;}
.x53_c00127{left:620.131187pt;}
.x5f_c00127{left:621.455587pt;}
.x5e_c00127{left:623.708387pt;}
.x3b_c00127{left:626.577187pt;}
.x49_c00127{left:639.095187pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7dafee78f983d50e6789968e.woff2')format("woff");}.ff1_c00128{font-family:ff1_c00128;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00128;src:url('chunks/assets/font_3d67d157db065ca89baba05f.woff2')format("woff");}.ff2_c00128{font-family:ff2_c00128;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00128;src:url('chunks/assets/font_2691178b570567f4ea5b9634.woff2')format("woff");}.ff3_c00128{font-family:ff3_c00128;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00128;src:url('chunks/assets/font_0dc23e217d6e3fa1a03cd1bc.woff2')format("woff");}.ff4_c00128{font-family:ff4_c00128;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m26_c00128{transform:matrix(0.148648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148648,0.000000,0.000000,0.250000,0,0);}
.m27_c00128{transform:matrix(0.158783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158783,0.000000,0.000000,0.250000,0,0);}
.m9a_c00128{transform:matrix(0.171512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171512,0.000000,0.000000,0.250000,0,0);}
.m5a_c00128{transform:matrix(0.176687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176687,0.000000,0.000000,0.250000,0,0);}
.m24_c00128{transform:matrix(0.182433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182433,0.000000,0.000000,0.250000,0,0);}
.m69_c00128{transform:matrix(0.184524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184524,0.000000,0.000000,0.250000,0,0);}
.m15_c00128{transform:matrix(0.196729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196729,0.000000,0.000000,0.250000,0,0);}
.m23_c00128{transform:matrix(0.209460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209460,0.000000,0.000000,0.250000,0,0);}
.m8c_c00128{transform:matrix(0.213964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213964,0.000000,0.000000,0.250000,0,0);}
.m25_c00128{transform:matrix(0.216216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216216,0.000000,0.000000,0.250000,0,0);}
.m38_c00128{transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);}
.m12_c00128{transform:matrix(0.243372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243372,0.000000,0.000000,0.250000,0,0);}
.m0_c00128{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m16_c00128{transform:matrix(0.250058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250058,0.000000,0.000000,0.250000,0,0);}
.m28_c00128{transform:matrix(0.250520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250520,0.000000,0.000000,0.250000,0,0);}
.m13_c00128{transform:matrix(0.251867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251867,0.000000,0.000000,0.250000,0,0);}
.m2c_c00128{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.m21_c00128{transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);}
.m89_c00128{transform:matrix(0.255206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255206,0.000000,0.000000,0.250000,0,0);}
.m7e_c00128{transform:matrix(0.255679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255679,0.000000,0.000000,0.250000,0,0);}
.m67_c00128{transform:matrix(0.256279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256279,0.000000,0.000000,0.250000,0,0);}
.ma2_c00128{transform:matrix(0.257987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257987,0.000000,0.000000,0.250000,0,0);}
.m61_c00128{transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);}
.m32_c00128{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m1f_c00128{transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);}
.m76_c00128{transform:matrix(0.260148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260148,0.000000,0.000000,0.250000,0,0);}
.m59_c00128{transform:matrix(0.261100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261100,0.000000,0.000000,0.250000,0,0);}
.m54_c00128{transform:matrix(0.261106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261106,0.000000,0.000000,0.250000,0,0);}
.m56_c00128{transform:matrix(0.262539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262539,0.000000,0.000000,0.250000,0,0);}
.m17_c00128{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m66_c00128{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m8_c00128{transform:matrix(0.263958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263958,0.000000,0.000000,0.250000,0,0);}
.m6a_c00128{transform:matrix(0.264821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264821,0.000000,0.000000,0.250000,0,0);}
.m7d_c00128{transform:matrix(0.265379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265379,0.000000,0.000000,0.250000,0,0);}
.m93_c00128{transform:matrix(0.265600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265600,0.000000,0.000000,0.250000,0,0);}
.m90_c00128{transform:matrix(0.265767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265767,0.000000,0.000000,0.250000,0,0);}
.mc_c00128{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m33_c00128{transform:matrix(0.266706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266706,0.000000,0.000000,0.250000,0,0);}
.m1a_c00128{transform:matrix(0.266730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266730,0.000000,0.000000,0.250000,0,0);}
.m47_c00128{transform:matrix(0.267809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267809,0.000000,0.000000,0.250000,0,0);}
.m3e_c00128{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m5f_c00128{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.m51_c00128{transform:matrix(0.268869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268869,0.000000,0.000000,0.250000,0,0);}
.m6f_c00128{transform:matrix(0.269141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269141,0.000000,0.000000,0.250000,0,0);}
.m2f_c00128{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m68_c00128{transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);}
.m3_c00128{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m50_c00128{transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);}
.m96_c00128{transform:matrix(0.275180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275180,0.000000,0.000000,0.250000,0,0);}
.m31_c00128{transform:matrix(0.276792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276792,0.000000,0.000000,0.250000,0,0);}
.md_c00128{transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);}
.m5e_c00128{transform:matrix(0.277421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277421,0.000000,0.000000,0.250000,0,0);}
.m71_c00128{transform:matrix(0.277860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277860,0.000000,0.000000,0.250000,0,0);}
.m1c_c00128{transform:matrix(0.278302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278302,0.000000,0.000000,0.250000,0,0);}
.m95_c00128{transform:matrix(0.278773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278773,0.000000,0.000000,0.250000,0,0);}
.m34_c00128{transform:matrix(0.280282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280282,0.000000,0.000000,0.250000,0,0);}
.m8a_c00128{transform:matrix(0.280374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280374,0.000000,0.000000,0.250000,0,0);}
.m35_c00128{transform:matrix(0.280480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280480,0.000000,0.000000,0.250000,0,0);}
.m9f_c00128{transform:matrix(0.281110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281110,0.000000,0.000000,0.250000,0,0);}
.m62_c00128{transform:matrix(0.283518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283518,0.000000,0.000000,0.250000,0,0);}
.m43_c00128{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m73_c00128{transform:matrix(0.284099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284099,0.000000,0.000000,0.250000,0,0);}
.m18_c00128{transform:matrix(0.284574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284574,0.000000,0.000000,0.250000,0,0);}
.m58_c00128{transform:matrix(0.284870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284870,0.000000,0.000000,0.250000,0,0);}
.m52_c00128{transform:matrix(0.285061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285061,0.000000,0.000000,0.250000,0,0);}
.m81_c00128{transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);}
.m5b_c00128{transform:matrix(0.285890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285890,0.000000,0.000000,0.250000,0,0);}
.mb_c00128{transform:matrix(0.286947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286947,0.000000,0.000000,0.250000,0,0);}
.m74_c00128{transform:matrix(0.287876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287876,0.000000,0.000000,0.250000,0,0);}
.m4a_c00128{transform:matrix(0.288449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288449,0.000000,0.000000,0.250000,0,0);}
.m3a_c00128{transform:matrix(0.288865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288865,0.000000,0.000000,0.250000,0,0);}
.m6e_c00128{transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);}
.m7c_c00128{transform:matrix(0.289203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289203,0.000000,0.000000,0.250000,0,0);}
.m7_c00128{transform:matrix(0.289940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289940,0.000000,0.000000,0.250000,0,0);}
.m65_c00128{transform:matrix(0.290272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290272,0.000000,0.000000,0.250000,0,0);}
.m37_c00128{transform:matrix(0.290380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290380,0.000000,0.000000,0.250000,0,0);}
.m22_c00128{transform:matrix(0.290549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290549,0.000000,0.000000,0.250000,0,0);}
.m64_c00128{transform:matrix(0.290711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290711,0.000000,0.000000,0.250000,0,0);}
.m97_c00128{transform:matrix(0.290836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290836,0.000000,0.000000,0.250000,0,0);}
.m8e_c00128{transform:matrix(0.291135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291135,0.000000,0.000000,0.250000,0,0);}
.m10_c00128{transform:matrix(0.291188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291188,0.000000,0.000000,0.250000,0,0);}
.m85_c00128{transform:matrix(0.291402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291402,0.000000,0.000000,0.250000,0,0);}
.ma3_c00128{transform:matrix(0.291914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291914,0.000000,0.000000,0.250000,0,0);}
.m75_c00128{transform:matrix(0.292127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292127,0.000000,0.000000,0.250000,0,0);}
.m87_c00128{transform:matrix(0.292793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292793,0.000000,0.000000,0.250000,0,0);}
.m45_c00128{transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);}
.m5_c00128{transform:matrix(0.293689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293689,0.000000,0.000000,0.250000,0,0);}
.m57_c00128{transform:matrix(0.293691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293691,0.000000,0.000000,0.250000,0,0);}
.m6c_c00128{transform:matrix(0.293937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293937,0.000000,0.000000,0.250000,0,0);}
.m3d_c00128{transform:matrix(0.294463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294463,0.000000,0.000000,0.250000,0,0);}
.m1_c00128{transform:matrix(0.294627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294627,0.000000,0.000000,0.250000,0,0);}
.m40_c00128{transform:matrix(0.295251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295251,0.000000,0.000000,0.250000,0,0);}
.m4d_c00128{transform:matrix(0.296089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296089,0.000000,0.000000,0.250000,0,0);}
.m3b_c00128{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.me_c00128{transform:matrix(0.297292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297292,0.000000,0.000000,0.250000,0,0);}
.m9_c00128{transform:matrix(0.297559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297559,0.000000,0.000000,0.250000,0,0);}
.m9c_c00128{transform:matrix(0.297684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297684,0.000000,0.000000,0.250000,0,0);}
.m55_c00128{transform:matrix(0.298075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298075,0.000000,0.000000,0.250000,0,0);}
.m11_c00128{transform:matrix(0.298461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298461,0.000000,0.000000,0.250000,0,0);}
.m70_c00128{transform:matrix(0.301943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301943,0.000000,0.000000,0.250000,0,0);}
.m2_c00128{transform:matrix(0.301976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301976,0.000000,0.000000,0.250000,0,0);}
.m94_c00128{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m2b_c00128{transform:matrix(0.302525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302525,0.000000,0.000000,0.250000,0,0);}
.mf_c00128{transform:matrix(0.302568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302568,0.000000,0.000000,0.250000,0,0);}
.m2e_c00128{transform:matrix(0.302967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302967,0.000000,0.000000,0.250000,0,0);}
.m7b_c00128{transform:matrix(0.303806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303806,0.000000,0.000000,0.250000,0,0);}
.m49_c00128{transform:matrix(0.304944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304944,0.000000,0.000000,0.250000,0,0);}
.ma0_c00128{transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);}
.m60_c00128{transform:matrix(0.305619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305619,0.000000,0.000000,0.250000,0,0);}
.m20_c00128{transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);}
.m98_c00128{transform:matrix(0.307034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307034,0.000000,0.000000,0.250000,0,0);}
.m8b_c00128{transform:matrix(0.307218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307218,0.000000,0.000000,0.250000,0,0);}
.m91_c00128{transform:matrix(0.307515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307515,0.000000,0.000000,0.250000,0,0);}
.m99_c00128{transform:matrix(0.307919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307919,0.000000,0.000000,0.250000,0,0);}
.m53_c00128{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m6d_c00128{transform:matrix(0.308583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308583,0.000000,0.000000,0.250000,0,0);}
.m63_c00128{transform:matrix(0.309307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309307,0.000000,0.000000,0.250000,0,0);}
.m8d_c00128{transform:matrix(0.309919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309919,0.000000,0.000000,0.250000,0,0);}
.m7a_c00128{transform:matrix(0.310079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310079,0.000000,0.000000,0.250000,0,0);}
.m4c_c00128{transform:matrix(0.311443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311443,0.000000,0.000000,0.250000,0,0);}
.m3c_c00128{transform:matrix(0.313453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313453,0.000000,0.000000,0.250000,0,0);}
.m86_c00128{transform:matrix(0.314918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314918,0.000000,0.000000,0.250000,0,0);}
.m82_c00128{transform:matrix(0.315136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315136,0.000000,0.000000,0.250000,0,0);}
.m88_c00128{transform:matrix(0.315622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315622,0.000000,0.000000,0.250000,0,0);}
.ma1_c00128{transform:matrix(0.317303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317303,0.000000,0.000000,0.250000,0,0);}
.m2d_c00128{transform:matrix(0.317369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317369,0.000000,0.000000,0.250000,0,0);}
.m8f_c00128{transform:matrix(0.317662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317662,0.000000,0.000000,0.250000,0,0);}
.m5c_c00128{transform:matrix(0.319290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319290,0.000000,0.000000,0.250000,0,0);}
.m77_c00128{transform:matrix(0.319310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319310,0.000000,0.000000,0.250000,0,0);}
.m19_c00128{transform:matrix(0.319876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319876,0.000000,0.000000,0.250000,0,0);}
.m9b_c00128{transform:matrix(0.320257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320257,0.000000,0.000000,0.250000,0,0);}
.ma5_c00128{transform:matrix(0.323623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323623,0.000000,0.000000,0.250000,0,0);}
.m7f_c00128{transform:matrix(0.324193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324193,0.000000,0.000000,0.250000,0,0);}
.m80_c00128{transform:matrix(0.324580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324580,0.000000,0.000000,0.250000,0,0);}
.m84_c00128{transform:matrix(0.324852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324852,0.000000,0.000000,0.250000,0,0);}
.m44_c00128{transform:matrix(0.326468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326468,0.000000,0.000000,0.250000,0,0);}
.m48_c00128{transform:matrix(0.326902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326902,0.000000,0.000000,0.250000,0,0);}
.m2a_c00128{transform:matrix(0.328086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328086,0.000000,0.000000,0.250000,0,0);}
.ma4_c00128{transform:matrix(0.328405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328405,0.000000,0.000000,0.250000,0,0);}
.m92_c00128{transform:matrix(0.331063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331063,0.000000,0.000000,0.250000,0,0);}
.m39_c00128{transform:matrix(0.331496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331496,0.000000,0.000000,0.250000,0,0);}
.m4b_c00128{transform:matrix(0.332497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332497,0.000000,0.000000,0.250000,0,0);}
.ma_c00128{transform:matrix(0.332554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332554,0.000000,0.000000,0.250000,0,0);}
.m72_c00128{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m41_c00128{transform:matrix(0.333754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333754,0.000000,0.000000,0.250000,0,0);}
.m29_c00128{transform:matrix(0.336485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336485,0.000000,0.000000,0.250000,0,0);}
.m1b_c00128{transform:matrix(0.337511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337511,0.000000,0.000000,0.250000,0,0);}
.m6_c00128{transform:matrix(0.338262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338262,0.000000,0.000000,0.250000,0,0);}
.m9e_c00128{transform:matrix(0.338886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338886,0.000000,0.000000,0.250000,0,0);}
.m46_c00128{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m9d_c00128{transform:matrix(0.339334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339334,0.000000,0.000000,0.250000,0,0);}
.m4f_c00128{transform:matrix(0.340207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340207,0.000000,0.000000,0.250000,0,0);}
.m1e_c00128{transform:matrix(0.341239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341239,0.000000,0.000000,0.250000,0,0);}
.m36_c00128{transform:matrix(0.342735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342735,0.000000,0.000000,0.250000,0,0);}
.m3f_c00128{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.m83_c00128{transform:matrix(0.343854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343854,0.000000,0.000000,0.250000,0,0);}
.m30_c00128{transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);}
.m1d_c00128{transform:matrix(0.345858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345858,0.000000,0.000000,0.250000,0,0);}
.m4e_c00128{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m4_c00128{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m6b_c00128{transform:matrix(0.355345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355345,0.000000,0.000000,0.250000,0,0);}
.m42_c00128{transform:matrix(0.361926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361926,0.000000,0.000000,0.250000,0,0);}
.m14_c00128{transform:matrix(0.363115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363115,0.000000,0.000000,0.250000,0,0);}
.m5d_c00128{transform:matrix(0.381299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381299,0.000000,0.000000,0.250000,0,0);}
.m79_c00128{transform:matrix(0.385852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385852,0.000000,0.000000,0.250000,0,0);}
.m78_c00128{transform:matrix(0.416528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416528,0.000000,0.000000,0.250000,0,0);}
.v0_c00128{vertical-align:0.000000px;}
.v1_c00128{vertical-align:8.533800px;}
.ls6_c00128{letter-spacing:-3.908527px;}
.ls7_c00128{letter-spacing:-2.744280px;}
.ls9_c00128{letter-spacing:-1.897474px;}
.lsd_c00128{letter-spacing:-1.223165px;}
.ls17_c00128{letter-spacing:-1.011463px;}
.ls11_c00128{letter-spacing:-0.964418px;}
.lsc_c00128{letter-spacing:-0.297950px;}
.ls2_c00128{letter-spacing:0.000000px;}
.ls1_c00128{letter-spacing:1.654409px;}
.ls0_c00128{letter-spacing:1.677931px;}
.ls16_c00128{letter-spacing:1.732817px;}
.ls18_c00128{letter-spacing:1.873951px;}
.lse_c00128{letter-spacing:1.960200px;}
.lsf_c00128{letter-spacing:2.762496px;}
.ls14_c00128{letter-spacing:3.112798px;}
.lsb_c00128{letter-spacing:3.559723px;}
.ls3_c00128{letter-spacing:3.643200px;}
.ls15_c00128{letter-spacing:3.722400px;}
.ls4_c00128{letter-spacing:3.920400px;}
.ls19_c00128{letter-spacing:3.945190px;}
.ls13_c00128{letter-spacing:4.316400px;}
.ls12_c00128{letter-spacing:4.435200px;}
.ls5_c00128{letter-spacing:4.494610px;}
.lsa_c00128{letter-spacing:49.896198px;}
.ls8_c00128{letter-spacing:52.747398px;}
.ls10_c00128{letter-spacing:59.875398px;}
.ls1a_c00128{letter-spacing:61.300998px;}
.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;}
}
.ws3_c00128{word-spacing:-23.161723px;}
.ws2_c00128{word-spacing:-21.279931px;}
.ws1_c00128{word-spacing:-19.602000px;}
.ws4_c00128{word-spacing:-18.378835px;}
.ws5_c00128{word-spacing:0.000000px;}
.ws0_c00128{word-spacing:2.195424px;}
._7_c00128{width:2.838370px;}
._4_c00128{width:5.394470px;}
._0_c00128{width:7.683588px;}
._5_c00128{width:9.095328px;}
._1_c00128{width:10.506672px;}
._2_c00128{width:12.388464px;}
._e_c00128{width:20.856528px;}
._b_c00128{width:22.353329px;}
._8_c00128{width:25.247376px;}
._c_c00128{width:26.873986px;}
._d_c00128{width:31.371120px;}
._f_c00128{width:33.237943px;}
._a_c00128{width:36.043128px;}
._6_c00128{width:41.399424px;}
._3_c00128{width:46.887984px;}
._9_c00128{width:379.140152px;}
.fc0_c00128{color:transparent;}
.fs8_c00128{font-size:5.742198px;}
.fs0_c00128{font-size:22.176000px;}
.fsa_c00128{font-size:22.374000px;}
.fs12_c00128{font-size:34.056198px;}
.fsb_c00128{font-size:38.610000px;}
.fs13_c00128{font-size:44.352000px;}
.fs9_c00128{font-size:49.896198px;}
.fs6_c00128{font-size:52.747398px;}
.fsd_c00128{font-size:59.875398px;}
.fs10_c00128{font-size:61.300998px;}
.fs1_c00128{font-size:72.864000px;}
.fs4_c00128{font-size:73.260000px;}
.fsf_c00128{font-size:74.448000px;}
.fs7_c00128{font-size:74.844000px;}
.fs2_c00128{font-size:78.408000px;}
.fs11_c00128{font-size:78.804000px;}
.fsc_c00128{font-size:86.328000px;}
.fse_c00128{font-size:88.704000px;}
.fs3_c00128{font-size:89.892198px;}
.fs5_c00128{font-size:111.672198px;}
.y0_c00128{bottom:0.000000px;}
.y1_c00128{bottom:76.500000px;}
.y22_c00128{bottom:85.091535px;}
.y21_c00128{bottom:144.605385px;}
.y20_c00128{bottom:169.201935px;}
.y1f_c00128{bottom:174.542985px;}
.y1d_c00128{bottom:175.260735px;}
.y1e_c00128{bottom:188.798985px;}
.y1c_c00128{bottom:210.182985px;}
.y1b_c00128{bottom:242.615385px;}
.y1a_c00128{bottom:275.409135px;}
.y19_c00128{bottom:341.694585px;}
.y18_c00128{bottom:373.770585px;}
.y17_c00128{bottom:406.202985px;}
.y16_c00128{bottom:438.278985px;}
.y15_c00128{bottom:470.716335px;}
.y14_c00128{bottom:502.074585px;}
.y13_c00128{bottom:534.150585px;}
.y12_c00128{bottom:566.231535px;}
.y11_c00128{bottom:599.020335px;}
.y10_c00128{bottom:612.563535px;}
.yf_c00128{bottom:630.734985px;}
.ye_c00128{bottom:644.278185px;}
.yd_c00128{bottom:663.172335px;}
.yc_c00128{bottom:695.604735px;}
.yb_c00128{bottom:758.326185px;}
.ya_c00128{bottom:791.471385px;}
.y9_c00128{bottom:825.329385px;}
.y8_c00128{bottom:857.410335px;}
.y7_c00128{bottom:889.481385px;}
.y6_c00128{bottom:909.444735px;}
.y5_c00128{bottom:923.339385px;}
.y2_c00128{bottom:930.115935px;}
.y4_c00128{bottom:1076.234985px;}
.y3_c00128{bottom:1096.552260px;}
.hb_c00128{height:5.635653px;}
.hd_c00128{height:21.958857px;}
.h2_c00128{height:23.128875px;}
.hc_c00128{height:33.230868px;}
.h8_c00128{height:35.129767px;}
.h14_c00128{height:35.519550px;}
.hf_c00128{height:39.877015px;}
.h12_c00128{height:40.826465px;}
.h15_c00128{height:46.257750px;}
.h3_c00128{height:71.512031px;}
.h11_c00128{height:73.066641px;}
.ha_c00128{height:73.433250px;}
.h9_c00128{height:73.455293px;}
.h6_c00128{height:76.407891px;}
.h4_c00128{height:76.953164px;}
.h13_c00128{height:77.341816px;}
.he_c00128{height:84.726211px;}
.h10_c00128{height:87.058125px;}
.h5_c00128{height:88.224276px;}
.h7_c00128{height:109.600155px;}
.h1_c00128{height:1110.000000px;}
.h0_c00128{height:1263.000000px;}
.w1_c00128{width:733.500000px;}
.w0_c00128{width:892.500000px;}
.x0_c00128{left:0.000000px;}
.x2_c00128{left:45.549435px;}
.x33_c00128{left:59.523285px;}
.x27_c00128{left:70.274685px;}
.x5_c00128{left:71.363685px;}
.x60_c00128{left:72.497235px;}
.x1_c00128{left:79.500000px;}
.x36_c00128{left:92.287335px;}
.x3b_c00128{left:102.652635px;}
.x19_c00128{left:104.588085px;}
.x3_c00128{left:106.139811px;}
.x43_c00128{left:113.305035px;}
.x1a_c00128{left:115.052385px;}
.x37_c00128{left:125.650335px;}
.x28_c00128{left:127.011585px;}
.xf_c00128{left:137.748135px;}
.x58_c00128{left:138.792585px;}
.x1b_c00128{left:148.469835px;}
.x10_c00128{left:149.831085px;}
.x55_c00128{left:151.910085px;}
.x6_c00128{left:159.468735px;}
.x1c_c00128{left:161.760585px;}
.x4e_c00128{left:170.888385px;}
.x1d_c00128{left:180.971535px;}
.x11_c00128{left:182.283285px;}
.x7_c00128{left:192.935685px;}
.x53_c00128{left:202.088235px;}
.x12_c00128{left:203.157435px;}
.x1e_c00128{left:205.082985px;}
.x4c_c00128{left:213.809835px;}
.x1f_c00128{left:215.433435px;}
.x8_c00128{left:225.575985px;}
.x5b_c00128{left:226.694685px;}
.x47_c00128{left:237.881685px;}
.x13_c00128{left:248.717235px;}
.x34_c00128{left:259.933935px;}
.x41_c00128{left:271.393185px;}
.x29_c00128{left:282.788085px;}
.x3d_c00128{left:293.722635px;}
.x9_c00128{left:304.454235px;}
.x2a_c00128{left:315.071985px;}
.x42_c00128{left:325.046235px;}
.x20_c00128{left:326.625285px;}
.x2b_c00128{left:336.099585px;}
.x14_c00128{left:337.673685px;}
.x59_c00128{left:347.464785px;}
.x44_c00128{left:348.667635px;}
.x15_c00128{left:360.344685px;}
.x51_c00128{left:370.833735px;}
.x21_c00128{left:382.377135px;}
.x2c_c00128{left:393.484935px;}
.x5a_c00128{left:396.405435px;}
.x22_c00128{left:403.409685px;}
.x2d_c00128{left:405.953985px;}
.x4f_c00128{left:415.180785px;}
.x45_c00128{left:416.418285px;}
.x5d_c00128{left:426.229185px;}
.x2e_c00128{left:437.836935px;}
.xa_c00128{left:449.538735px;}
.x3e_c00128{left:459.542685px;}
.x23_c00128{left:470.972235px;}
.x3c_c00128{left:481.807785px;}
.x2f_c00128{left:483.074985px;}
.x52_c00128{left:485.163885px;}
.x50_c00128{left:492.509685px;}
.x16_c00128{left:493.588785px;}
.x5f_c00128{left:501.385035px;}
.x24_c00128{left:505.171785px;}
.x48_c00128{left:515.834085px;}
.x4a_c00128{left:525.669735px;}
.x25_c00128{left:526.699335px;}
.x17_c00128{left:536.341935px;}
.x30_c00128{left:537.594285px;}
.x38_c00128{left:548.662485px;}
.xb_c00128{left:551.790885px;}
.x26_c00128{left:558.800085px;}
.x3f_c00128{left:570.724635px;}
.x39_c00128{left:581.777985px;}
.x35_c00128{left:591.514635px;}
.x40_c00128{left:599.469285px;}
.x56_c00128{left:602.330385px;}
.xc_c00128{left:603.335235px;}
.x3a_c00128{left:614.408385px;}
.x4b_c00128{left:625.144935px;}
.x31_c00128{left:626.179485px;}
.x54_c00128{left:637.381335px;}
.x4_c00128{left:648.761385px;}
.x4d_c00128{left:651.612585px;}
.x49_c00128{left:659.146485px;}
.x5c_c00128{left:668.412885px;}
.x5e_c00128{left:669.813735px;}
.xd_c00128{left:671.541285px;}
.x61_c00128{left:672.942135px;}
.x57_c00128{left:680.763135px;}
.x32_c00128{left:681.842235px;}
.x46_c00128{left:693.063885px;}
.x18_c00128{left:694.336035px;}
.xe_c00128{left:703.998435px;}
@media print{
.v0_c00128{vertical-align:0.000000pt;}
.v1_c00128{vertical-align:7.585600pt;}
.ls6_c00128{letter-spacing:-3.474246pt;}
.ls7_c00128{letter-spacing:-2.439360pt;}
.ls9_c00128{letter-spacing:-1.686643pt;}
.lsd_c00128{letter-spacing:-1.087258pt;}
.ls17_c00128{letter-spacing:-0.899078pt;}
.ls11_c00128{letter-spacing:-0.857261pt;}
.lsc_c00128{letter-spacing:-0.264845pt;}
.ls2_c00128{letter-spacing:0.000000pt;}
.ls1_c00128{letter-spacing:1.470586pt;}
.ls0_c00128{letter-spacing:1.491494pt;}
.ls16_c00128{letter-spacing:1.540282pt;}
.ls18_c00128{letter-spacing:1.665734pt;}
.lse_c00128{letter-spacing:1.742400pt;}
.lsf_c00128{letter-spacing:2.455552pt;}
.ls14_c00128{letter-spacing:2.766931pt;}
.lsb_c00128{letter-spacing:3.164198pt;}
.ls3_c00128{letter-spacing:3.238400pt;}
.ls15_c00128{letter-spacing:3.308800pt;}
.ls4_c00128{letter-spacing:3.484800pt;}
.ls19_c00128{letter-spacing:3.506835pt;}
.ls13_c00128{letter-spacing:3.836800pt;}
.ls12_c00128{letter-spacing:3.942400pt;}
.ls5_c00128{letter-spacing:3.995209pt;}
.lsa_c00128{letter-spacing:44.352176pt;}
.ls8_c00128{letter-spacing:46.886576pt;}
.ls10_c00128{letter-spacing:53.222576pt;}
.ls1a_c00128{letter-spacing:54.489776pt;}
.ws3_c00128{word-spacing:-20.588198pt;}
.ws2_c00128{word-spacing:-18.915494pt;}
.ws1_c00128{word-spacing:-17.424000pt;}
.ws4_c00128{word-spacing:-16.336742pt;}
.ws5_c00128{word-spacing:0.000000pt;}
.ws0_c00128{word-spacing:1.951488pt;}
._7_c00128{width:2.522995pt;}
._4_c00128{width:4.795085pt;}
._0_c00128{width:6.829856pt;}
._5_c00128{width:8.084736pt;}
._1_c00128{width:9.339264pt;}
._2_c00128{width:11.011968pt;}
._e_c00128{width:18.539136pt;}
._b_c00128{width:19.869626pt;}
._8_c00128{width:22.442112pt;}
._c_c00128{width:23.887987pt;}
._d_c00128{width:27.885440pt;}
._f_c00128{width:29.544838pt;}
._a_c00128{width:32.038336pt;}
._6_c00128{width:36.799488pt;}
._3_c00128{width:41.678208pt;}
._9_c00128{width:337.013468pt;}
.fs8_c00128{font-size:5.104176pt;}
.fs0_c00128{font-size:19.712000pt;}
.fsa_c00128{font-size:19.888000pt;}
.fs12_c00128{font-size:30.272176pt;}
.fsb_c00128{font-size:34.320000pt;}
.fs13_c00128{font-size:39.424000pt;}
.fs9_c00128{font-size:44.352176pt;}
.fs6_c00128{font-size:46.886576pt;}
.fsd_c00128{font-size:53.222576pt;}
.fs10_c00128{font-size:54.489776pt;}
.fs1_c00128{font-size:64.768000pt;}
.fs4_c00128{font-size:65.120000pt;}
.fsf_c00128{font-size:66.176000pt;}
.fs7_c00128{font-size:66.528000pt;}
.fs2_c00128{font-size:69.696000pt;}
.fs11_c00128{font-size:70.048000pt;}
.fsc_c00128{font-size:76.736000pt;}
.fse_c00128{font-size:78.848000pt;}
.fs3_c00128{font-size:79.904176pt;}
.fs5_c00128{font-size:99.264176pt;}
.y0_c00128{bottom:0.000000pt;}
.y1_c00128{bottom:68.000000pt;}
.y22_c00128{bottom:75.636920pt;}
.y21_c00128{bottom:128.538120pt;}
.y20_c00128{bottom:150.401720pt;}
.y1f_c00128{bottom:155.149320pt;}
.y1d_c00128{bottom:155.787320pt;}
.y1e_c00128{bottom:167.821320pt;}
.y1c_c00128{bottom:186.829320pt;}
.y1b_c00128{bottom:215.658120pt;}
.y1a_c00128{bottom:244.808120pt;}
.y19_c00128{bottom:303.728520pt;}
.y18_c00128{bottom:332.240520pt;}
.y17_c00128{bottom:361.069320pt;}
.y16_c00128{bottom:389.581320pt;}
.y15_c00128{bottom:418.414520pt;}
.y14_c00128{bottom:446.288520pt;}
.y13_c00128{bottom:474.800520pt;}
.y12_c00128{bottom:503.316920pt;}
.y11_c00128{bottom:532.462520pt;}
.y10_c00128{bottom:544.500920pt;}
.yf_c00128{bottom:560.653320pt;}
.ye_c00128{bottom:572.691720pt;}
.yd_c00128{bottom:589.486520pt;}
.yc_c00128{bottom:618.315320pt;}
.yb_c00128{bottom:674.067720pt;}
.ya_c00128{bottom:703.530120pt;}
.y9_c00128{bottom:733.626120pt;}
.y8_c00128{bottom:762.142520pt;}
.y7_c00128{bottom:790.650120pt;}
.y6_c00128{bottom:808.395320pt;}
.y5_c00128{bottom:820.746120pt;}
.y2_c00128{bottom:826.769720pt;}
.y4_c00128{bottom:956.653320pt;}
.y3_c00128{bottom:974.713120pt;}
.hb_c00128{height:5.009470pt;}
.hd_c00128{height:19.518984pt;}
.h2_c00128{height:20.559000pt;}
.hc_c00128{height:29.538549pt;}
.h8_c00128{height:31.226460pt;}
.h14_c00128{height:31.572934pt;}
.hf_c00128{height:35.446236pt;}
.h12_c00128{height:36.290191pt;}
.h15_c00128{height:41.118000pt;}
.h3_c00128{height:63.566250pt;}
.h11_c00128{height:64.948125pt;}
.ha_c00128{height:65.274000pt;}
.h9_c00128{height:65.293594pt;}
.h6_c00128{height:67.918125pt;}
.h4_c00128{height:68.402813pt;}
.h13_c00128{height:68.748281pt;}
.he_c00128{height:75.312188pt;}
.h10_c00128{height:77.385000pt;}
.h5_c00128{height:78.421579pt;}
.h7_c00128{height:97.422360pt;}
.h1_c00128{height:986.666667pt;}
.h0_c00128{height:1122.666667pt;}
.w1_c00128{width:652.000000pt;}
.w0_c00128{width:793.333333pt;}
.x0_c00128{left:0.000000pt;}
.x2_c00128{left:40.488387pt;}
.x33_c00128{left:52.909587pt;}
.x27_c00128{left:62.466387pt;}
.x5_c00128{left:63.434387pt;}
.x60_c00128{left:64.441987pt;}
.x1_c00128{left:70.666667pt;}
.x36_c00128{left:82.033187pt;}
.x3b_c00128{left:91.246787pt;}
.x19_c00128{left:92.967187pt;}
.x3_c00128{left:94.346499pt;}
.x43_c00128{left:100.715587pt;}
.x1a_c00128{left:102.268787pt;}
.x37_c00128{left:111.689187pt;}
.x28_c00128{left:112.899187pt;}
.xf_c00128{left:122.442787pt;}
.x58_c00128{left:123.371187pt;}
.x1b_c00128{left:131.973187pt;}
.x10_c00128{left:133.183187pt;}
.x55_c00128{left:135.031187pt;}
.x6_c00128{left:141.749987pt;}
.x1c_c00128{left:143.787187pt;}
.x4e_c00128{left:151.900787pt;}
.x1d_c00128{left:160.863587pt;}
.x11_c00128{left:162.029587pt;}
.x7_c00128{left:171.498387pt;}
.x53_c00128{left:179.633987pt;}
.x12_c00128{left:180.584387pt;}
.x1e_c00128{left:182.295987pt;}
.x4c_c00128{left:190.053187pt;}
.x1f_c00128{left:191.496387pt;}
.x8_c00128{left:200.511987pt;}
.x5b_c00128{left:201.506387pt;}
.x47_c00128{left:211.450387pt;}
.x13_c00128{left:221.081987pt;}
.x34_c00128{left:231.052387pt;}
.x41_c00128{left:241.238387pt;}
.x29_c00128{left:251.367187pt;}
.x3d_c00128{left:261.086787pt;}
.x9_c00128{left:270.625987pt;}
.x2a_c00128{left:280.063987pt;}
.x42_c00128{left:288.929987pt;}
.x20_c00128{left:290.333587pt;}
.x2b_c00128{left:298.755187pt;}
.x14_c00128{left:300.154387pt;}
.x59_c00128{left:308.857587pt;}
.x44_c00128{left:309.926787pt;}
.x15_c00128{left:320.306387pt;}
.x51_c00128{left:329.629987pt;}
.x21_c00128{left:339.890787pt;}
.x2c_c00128{left:349.764387pt;}
.x5a_c00128{left:352.360387pt;}
.x22_c00128{left:358.586387pt;}
.x2d_c00128{left:360.847987pt;}
.x4f_c00128{left:369.049587pt;}
.x45_c00128{left:370.149587pt;}
.x5d_c00128{left:378.870387pt;}
.x2e_c00128{left:389.188387pt;}
.xa_c00128{left:399.589987pt;}
.x3e_c00128{left:408.482387pt;}
.x23_c00128{left:418.641987pt;}
.x3c_c00128{left:428.273587pt;}
.x2f_c00128{left:429.399987pt;}
.x52_c00128{left:431.256787pt;}
.x50_c00128{left:437.786387pt;}
.x16_c00128{left:438.745587pt;}
.x5f_c00128{left:445.675587pt;}
.x24_c00128{left:449.041587pt;}
.x48_c00128{left:458.519187pt;}
.x4a_c00128{left:467.261987pt;}
.x25_c00128{left:468.177187pt;}
.x17_c00128{left:476.748387pt;}
.x30_c00128{left:477.861587pt;}
.x38_c00128{left:487.699987pt;}
.xb_c00128{left:490.480787pt;}
.x26_c00128{left:496.711187pt;}
.x3f_c00128{left:507.310787pt;}
.x39_c00128{left:517.135987pt;}
.x35_c00128{left:525.790787pt;}
.x40_c00128{left:532.861587pt;}
.x56_c00128{left:535.404787pt;}
.xc_c00128{left:536.297987pt;}
.x3a_c00128{left:546.140787pt;}
.x4b_c00128{left:555.684387pt;}
.x31_c00128{left:556.603987pt;}
.x54_c00128{left:566.561187pt;}
.x4_c00128{left:576.676787pt;}
.x4d_c00128{left:579.211187pt;}
.x49_c00128{left:585.907987pt;}
.x5c_c00128{left:594.144787pt;}
.x5e_c00128{left:595.389987pt;}
.xd_c00128{left:596.925587pt;}
.x61_c00128{left:598.170787pt;}
.x57_c00128{left:605.122787pt;}
.x32_c00128{left:606.081987pt;}
.x46_c00128{left:616.056787pt;}
.x18_c00128{left:617.187587pt;}
.xe_c00128{left:625.776387pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0351c7854396e767ebd5e966.woff2')format("woff");}.ff1_c00129{font-family:ff1_c00129;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00129;src:url('chunks/assets/font_d3ed0db326181ee2c96cec44.woff2')format("woff");}.ff2_c00129{font-family:ff2_c00129;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00129;src:url('chunks/assets/font_f3a56672574fcd2e1e6662ae.woff2')format("woff");}.ff3_c00129{font-family:ff3_c00129;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00129;src:url('chunks/assets/font_013b09fbcaa74fee975d3df8.woff2')format("woff");}.ff4_c00129{font-family:ff4_c00129;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m70_c00129{transform:matrix(0.073121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073121,0.000000,0.000000,0.250000,0,0);}
.m86_c00129{transform:matrix(0.083334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083334,0.000000,0.000000,0.250000,0,0);}
.m6d_c00129{transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);}
.m3_c00129{transform:matrix(0.183036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183036,0.000000,0.000000,0.250000,0,0);}
.m1f_c00129{transform:matrix(0.189025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189025,0.000000,0.000000,0.250000,0,0);}
.m87_c00129{transform:matrix(0.195157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195157,0.000000,0.000000,0.250000,0,0);}
.mc_c00129{transform:matrix(0.195536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195536,0.000000,0.000000,0.250000,0,0);}
.m8c_c00129{transform:matrix(0.198886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198886,0.000000,0.000000,0.250000,0,0);}
.mac_c00129{transform:matrix(0.216164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216164,0.000000,0.000000,0.250000,0,0);}
.m6f_c00129{transform:matrix(0.238701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238701,0.000000,0.000000,0.250000,0,0);}
.m84_c00129{transform:matrix(0.249103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249103,0.000000,0.000000,0.250000,0,0);}
.m1_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);}
.m6b_c00129{transform:matrix(0.251042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251042,0.000000,0.000000,0.250000,0,0);}
.mb8_c00129{transform:matrix(0.251407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251407,0.000000,0.000000,0.250000,0,0);}
.m71_c00129{transform:matrix(0.252184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252184,0.000000,0.000000,0.250000,0,0);}
.m6c_c00129{transform:matrix(0.252725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252725,0.000000,0.000000,0.250000,0,0);}
.m5b_c00129{transform:matrix(0.256952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256952,0.000000,0.000000,0.250000,0,0);}
.m65_c00129{transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);}
.m29_c00129{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m5f_c00129{transform:matrix(0.261993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261993,0.000000,0.000000,0.250000,0,0);}
.m10_c00129{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m7f_c00129{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m4_c00129{transform:matrix(0.263970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263970,0.000000,0.000000,0.250000,0,0);}
.m68_c00129{transform:matrix(0.264917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264917,0.000000,0.000000,0.250000,0,0);}
.ma1_c00129{transform:matrix(0.265371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265371,0.000000,0.000000,0.250000,0,0);}
.m52_c00129{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m5e_c00129{transform:matrix(0.266295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266295,0.000000,0.000000,0.250000,0,0);}
.m46_c00129{transform:matrix(0.266625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266625,0.000000,0.000000,0.250000,0,0);}
.m72_c00129{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m2_c00129{transform:matrix(0.268137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268137,0.000000,0.000000,0.250000,0,0);}
.m74_c00129{transform:matrix(0.268230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268230,0.000000,0.000000,0.250000,0,0);}
.m16_c00129{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.ma3_c00129{transform:matrix(0.269697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269697,0.000000,0.000000,0.250000,0,0);}
.m2a_c00129{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m56_c00129{transform:matrix(0.270977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270977,0.000000,0.000000,0.250000,0,0);}
.m25_c00129{transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);}
.m4a_c00129{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.maa_c00129{transform:matrix(0.272918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272918,0.000000,0.000000,0.250000,0,0);}
.ma0_c00129{transform:matrix(0.273113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273113,0.000000,0.000000,0.250000,0,0);}
.m19_c00129{transform:matrix(0.273669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273669,0.000000,0.000000,0.250000,0,0);}
.mb9_c00129{transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);}
.m6e_c00129{transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);}
.m9e_c00129{transform:matrix(0.275572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275572,0.000000,0.000000,0.250000,0,0);}
.m91_c00129{transform:matrix(0.276509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276509,0.000000,0.000000,0.250000,0,0);}
.m26_c00129{transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);}
.m5a_c00129{transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);}
.m8b_c00129{transform:matrix(0.278681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278681,0.000000,0.000000,0.250000,0,0);}
.m7b_c00129{transform:matrix(0.278811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278811,0.000000,0.000000,0.250000,0,0);}
.me_c00129{transform:matrix(0.279178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279178,0.000000,0.000000,0.250000,0,0);}
.m64_c00129{transform:matrix(0.279313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279313,0.000000,0.000000,0.250000,0,0);}
.m15_c00129{transform:matrix(0.279578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279578,0.000000,0.000000,0.250000,0,0);}
.ma4_c00129{transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);}
.mbf_c00129{transform:matrix(0.280356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280356,0.000000,0.000000,0.250000,0,0);}
.m22_c00129{transform:matrix(0.280877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280877,0.000000,0.000000,0.250000,0,0);}
.m1d_c00129{transform:matrix(0.280891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280891,0.000000,0.000000,0.250000,0,0);}
.m99_c00129{transform:matrix(0.281084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281084,0.000000,0.000000,0.250000,0,0);}
.mb3_c00129{transform:matrix(0.281190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281190,0.000000,0.000000,0.250000,0,0);}
.m13_c00129{transform:matrix(0.281790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281790,0.000000,0.000000,0.250000,0,0);}
.ma_c00129{transform:matrix(0.281974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281974,0.000000,0.000000,0.250000,0,0);}
.m92_c00129{transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);}
.m28_c00129{transform:matrix(0.283242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283242,0.000000,0.000000,0.250000,0,0);}
.mb_c00129{transform:matrix(0.283519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283519,0.000000,0.000000,0.250000,0,0);}
.m36_c00129{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m90_c00129{transform:matrix(0.284924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284924,0.000000,0.000000,0.250000,0,0);}
.m98_c00129{transform:matrix(0.285021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285021,0.000000,0.000000,0.250000,0,0);}
.m94_c00129{transform:matrix(0.285449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285449,0.000000,0.000000,0.250000,0,0);}
.m7c_c00129{transform:matrix(0.285574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285574,0.000000,0.000000,0.250000,0,0);}
.m18_c00129{transform:matrix(0.286238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286238,0.000000,0.000000,0.250000,0,0);}
.ma6_c00129{transform:matrix(0.286397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286397,0.000000,0.000000,0.250000,0,0);}
.m60_c00129{transform:matrix(0.286559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286559,0.000000,0.000000,0.250000,0,0);}
.m57_c00129{transform:matrix(0.286698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286698,0.000000,0.000000,0.250000,0,0);}
.m9a_c00129{transform:matrix(0.286857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286857,0.000000,0.000000,0.250000,0,0);}
.m39_c00129{transform:matrix(0.287284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287284,0.000000,0.000000,0.250000,0,0);}
.m8d_c00129{transform:matrix(0.287323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287323,0.000000,0.000000,0.250000,0,0);}
.m48_c00129{transform:matrix(0.287365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287365,0.000000,0.000000,0.250000,0,0);}
.mb1_c00129{transform:matrix(0.287765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287765,0.000000,0.000000,0.250000,0,0);}
.m4c_c00129{transform:matrix(0.288532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288532,0.000000,0.000000,0.250000,0,0);}
.m54_c00129{transform:matrix(0.288974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288974,0.000000,0.000000,0.250000,0,0);}
.m31_c00129{transform:matrix(0.289464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289464,0.000000,0.000000,0.250000,0,0);}
.m42_c00129{transform:matrix(0.289935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289935,0.000000,0.000000,0.250000,0,0);}
.m0_c00129{transform:matrix(0.290285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290285,0.000000,0.000000,0.250000,0,0);}
.m8f_c00129{transform:matrix(0.290480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290480,0.000000,0.000000,0.250000,0,0);}
.md_c00129{transform:matrix(0.290584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290584,0.000000,0.000000,0.250000,0,0);}
.m53_c00129{transform:matrix(0.291091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291091,0.000000,0.000000,0.250000,0,0);}
.m9c_c00129{transform:matrix(0.291292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291292,0.000000,0.000000,0.250000,0,0);}
.m8a_c00129{transform:matrix(0.291407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291407,0.000000,0.000000,0.250000,0,0);}
.m47_c00129{transform:matrix(0.291415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291415,0.000000,0.000000,0.250000,0,0);}
.mad_c00129{transform:matrix(0.291980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291980,0.000000,0.000000,0.250000,0,0);}
.m93_c00129{transform:matrix(0.292334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292334,0.000000,0.000000,0.250000,0,0);}
.maf_c00129{transform:matrix(0.292367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292367,0.000000,0.000000,0.250000,0,0);}
.mb7_c00129{transform:matrix(0.292402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292402,0.000000,0.000000,0.250000,0,0);}
.m11_c00129{transform:matrix(0.292497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292497,0.000000,0.000000,0.250000,0,0);}
.m2c_c00129{transform:matrix(0.292589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292589,0.000000,0.000000,0.250000,0,0);}
.m5_c00129{transform:matrix(0.292861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292861,0.000000,0.000000,0.250000,0,0);}
.m59_c00129{transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);}
.m45_c00129{transform:matrix(0.293689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293689,0.000000,0.000000,0.250000,0,0);}
.m3f_c00129{transform:matrix(0.294250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294250,0.000000,0.000000,0.250000,0,0);}
.m78_c00129{transform:matrix(0.295472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295472,0.000000,0.000000,0.250000,0,0);}
.m35_c00129{transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);}
.m24_c00129{transform:matrix(0.297104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297104,0.000000,0.000000,0.250000,0,0);}
.m61_c00129{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.mbd_c00129{transform:matrix(0.297355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297355,0.000000,0.000000,0.250000,0,0);}
.m3a_c00129{transform:matrix(0.298095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298095,0.000000,0.000000,0.250000,0,0);}
.mb2_c00129{transform:matrix(0.298175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298175,0.000000,0.000000,0.250000,0,0);}
.m20_c00129{transform:matrix(0.298258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298258,0.000000,0.000000,0.250000,0,0);}
.m3d_c00129{transform:matrix(0.298646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298646,0.000000,0.000000,0.250000,0,0);}
.m33_c00129{transform:matrix(0.298797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298797,0.000000,0.000000,0.250000,0,0);}
.ma8_c00129{transform:matrix(0.299057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299057,0.000000,0.000000,0.250000,0,0);}
.m55_c00129{transform:matrix(0.299066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299066,0.000000,0.000000,0.250000,0,0);}
.mf_c00129{transform:matrix(0.299638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299638,0.000000,0.000000,0.250000,0,0);}
.mc0_c00129{transform:matrix(0.300359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300359,0.000000,0.000000,0.250000,0,0);}
.m50_c00129{transform:matrix(0.300548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300548,0.000000,0.000000,0.250000,0,0);}
.m9d_c00129{transform:matrix(0.300643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300643,0.000000,0.000000,0.250000,0,0);}
.m77_c00129{transform:matrix(0.301283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301283,0.000000,0.000000,0.250000,0,0);}
.m3c_c00129{transform:matrix(0.302010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302010,0.000000,0.000000,0.250000,0,0);}
.m7_c00129{transform:matrix(0.302042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302042,0.000000,0.000000,0.250000,0,0);}
.m7d_c00129{transform:matrix(0.303955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303955,0.000000,0.000000,0.250000,0,0);}
.m30_c00129{transform:matrix(0.304083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304083,0.000000,0.000000,0.250000,0,0);}
.m49_c00129{transform:matrix(0.304209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304209,0.000000,0.000000,0.250000,0,0);}
.m58_c00129{transform:matrix(0.305844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305844,0.000000,0.000000,0.250000,0,0);}
.m89_c00129{transform:matrix(0.306004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306004,0.000000,0.000000,0.250000,0,0);}
.ma5_c00129{transform:matrix(0.306769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306769,0.000000,0.000000,0.250000,0,0);}
.m8_c00129{transform:matrix(0.307034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307034,0.000000,0.000000,0.250000,0,0);}
.m6_c00129{transform:matrix(0.307171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307171,0.000000,0.000000,0.250000,0,0);}
.m81_c00129{transform:matrix(0.308484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308484,0.000000,0.000000,0.250000,0,0);}
.m88_c00129{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m34_c00129{transform:matrix(0.308602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308602,0.000000,0.000000,0.250000,0,0);}
.mb4_c00129{transform:matrix(0.308756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308756,0.000000,0.000000,0.250000,0,0);}
.m4f_c00129{transform:matrix(0.308858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308858,0.000000,0.000000,0.250000,0,0);}
.m73_c00129{transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);}
.m1b_c00129{transform:matrix(0.309088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309088,0.000000,0.000000,0.250000,0,0);}
.m8e_c00129{transform:matrix(0.309501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309501,0.000000,0.000000,0.250000,0,0);}
.m75_c00129{transform:matrix(0.310777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310777,0.000000,0.000000,0.250000,0,0);}
.m7e_c00129{transform:matrix(0.310827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310827,0.000000,0.000000,0.250000,0,0);}
.m6a_c00129{transform:matrix(0.311223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311223,0.000000,0.000000,0.250000,0,0);}
.m1a_c00129{transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);}
.m2f_c00129{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.m43_c00129{transform:matrix(0.314182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314182,0.000000,0.000000,0.250000,0,0);}
.m27_c00129{transform:matrix(0.314610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314610,0.000000,0.000000,0.250000,0,0);}
.m12_c00129{transform:matrix(0.314673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314673,0.000000,0.000000,0.250000,0,0);}
.m69_c00129{transform:matrix(0.315048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315048,0.000000,0.000000,0.250000,0,0);}
.m82_c00129{transform:matrix(0.315482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315482,0.000000,0.000000,0.250000,0,0);}
.m79_c00129{transform:matrix(0.315664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315664,0.000000,0.000000,0.250000,0,0);}
.m4b_c00129{transform:matrix(0.316008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316008,0.000000,0.000000,0.250000,0,0);}
.mae_c00129{transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);}
.m37_c00129{transform:matrix(0.316193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316193,0.000000,0.000000,0.250000,0,0);}
.m76_c00129{transform:matrix(0.317164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317164,0.000000,0.000000,0.250000,0,0);}
.m67_c00129{transform:matrix(0.317203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317203,0.000000,0.000000,0.250000,0,0);}
.ma9_c00129{transform:matrix(0.317910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317910,0.000000,0.000000,0.250000,0,0);}
.mab_c00129{transform:matrix(0.318082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318082,0.000000,0.000000,0.250000,0,0);}
.m85_c00129{transform:matrix(0.319808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319808,0.000000,0.000000,0.250000,0,0);}
.mb0_c00129{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.m9_c00129{transform:matrix(0.324040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324040,0.000000,0.000000,0.250000,0,0);}
.m9b_c00129{transform:matrix(0.324242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324242,0.000000,0.000000,0.250000,0,0);}
.m38_c00129{transform:matrix(0.324306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324306,0.000000,0.000000,0.250000,0,0);}
.ma7_c00129{transform:matrix(0.324557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324557,0.000000,0.000000,0.250000,0,0);}
.m40_c00129{transform:matrix(0.324586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324586,0.000000,0.000000,0.250000,0,0);}
.m32_c00129{transform:matrix(0.324865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324865,0.000000,0.000000,0.250000,0,0);}
.m5d_c00129{transform:matrix(0.325473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325473,0.000000,0.000000,0.250000,0,0);}
.mbe_c00129{transform:matrix(0.325523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325523,0.000000,0.000000,0.250000,0,0);}
.ma2_c00129{transform:matrix(0.326821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326821,0.000000,0.000000,0.250000,0,0);}
.m4e_c00129{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m2d_c00129{transform:matrix(0.328083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328083,0.000000,0.000000,0.250000,0,0);}
.m5c_c00129{transform:matrix(0.329080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329080,0.000000,0.000000,0.250000,0,0);}
.m3b_c00129{transform:matrix(0.329131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329131,0.000000,0.000000,0.250000,0,0);}
.m1e_c00129{transform:matrix(0.329713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329713,0.000000,0.000000,0.250000,0,0);}
.m23_c00129{transform:matrix(0.329756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329756,0.000000,0.000000,0.250000,0,0);}
.m2b_c00129{transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);}
.mba_c00129{transform:matrix(0.332278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332278,0.000000,0.000000,0.250000,0,0);}
.mbc_c00129{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m80_c00129{transform:matrix(0.336133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336133,0.000000,0.000000,0.250000,0,0);}
.m62_c00129{transform:matrix(0.336446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336446,0.000000,0.000000,0.250000,0,0);}
.m83_c00129{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.mb6_c00129{transform:matrix(0.339945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339945,0.000000,0.000000,0.250000,0,0);}
.m1c_c00129{transform:matrix(0.340235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340235,0.000000,0.000000,0.250000,0,0);}
.m21_c00129{transform:matrix(0.342608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342608,0.000000,0.000000,0.250000,0,0);}
.m2e_c00129{transform:matrix(0.343011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343011,0.000000,0.000000,0.250000,0,0);}
.m17_c00129{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.m3e_c00129{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m41_c00129{transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);}
.m9f_c00129{transform:matrix(0.353367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353367,0.000000,0.000000,0.250000,0,0);}
.m63_c00129{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m14_c00129{transform:matrix(0.359212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359212,0.000000,0.000000,0.250000,0,0);}
.m51_c00129{transform:matrix(0.359561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359561,0.000000,0.000000,0.250000,0,0);}
.mbb_c00129{transform:matrix(0.359622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359622,0.000000,0.000000,0.250000,0,0);}
.m44_c00129{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m97_c00129{transform:matrix(0.361916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361916,0.000000,0.000000,0.250000,0,0);}
.m4d_c00129{transform:matrix(0.362869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362869,0.000000,0.000000,0.250000,0,0);}
.m96_c00129{transform:matrix(0.378800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378800,0.000000,0.000000,0.250000,0,0);}
.mb5_c00129{transform:matrix(0.381065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381065,0.000000,0.000000,0.250000,0,0);}
.m95_c00129{transform:matrix(0.387610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387610,0.000000,0.000000,0.250000,0,0);}
.m7a_c00129{transform:matrix(0.414699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414699,0.000000,0.000000,0.250000,0,0);}
.m66_c00129{transform:matrix(0.432348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432348,0.000000,0.000000,0.250000,0,0);}
.v1_c00129{vertical-align:-74.131200px;}
.v0_c00129{vertical-align:0.000000px;}
.lsd_c00129{letter-spacing:-2.744280px;}
.ls4_c00129{letter-spacing:-1.897474px;}
.ls13_c00129{letter-spacing:-0.015682px;}
.ls1_c00129{letter-spacing:0.000000px;}
.lsa_c00129{letter-spacing:0.705672px;}
.lsf_c00129{letter-spacing:1.748498px;}
.ls8_c00129{letter-spacing:3.104957px;}
.ls5_c00129{letter-spacing:3.269614px;}
.ls9_c00129{letter-spacing:3.559723px;}
.lsb_c00129{letter-spacing:3.603610px;}
.ls11_c00129{letter-spacing:3.643200px;}
.ls7_c00129{letter-spacing:3.677335px;}
.ls0_c00129{letter-spacing:3.791700px;}
.ls10_c00129{letter-spacing:3.841200px;}
.ls2_c00129{letter-spacing:3.920400px;}
.ls12_c00129{letter-spacing:3.979810px;}
.lsc_c00129{letter-spacing:31.363200px;}
.lse_c00129{letter-spacing:55.598598px;}
.ls3_c00129{letter-spacing:57.024198px;}
.ls6_c00129{letter-spacing:58.449798px;}
.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:-23.161723px;}
.ws4_c00129{word-spacing:-21.350498px;}
.ws0_c00129{word-spacing:-19.602000px;}
.ws3_c00129{word-spacing:-1.332144px;}
.ws2_c00129{word-spacing:-1.097712px;}
.ws5_c00129{word-spacing:0.000000px;}
._5_c00129{margin-left:-1.254528px;}
._3_c00129{width:3.230014px;}
._2_c00129{width:7.683984px;}
._0_c00129{width:9.173736px;}
._4_c00129{width:14.035032px;}
._8_c00129{width:16.324942px;}
._7_c00129{width:20.856528px;}
._1_c00129{width:29.867112px;}
._6_c00129{width:454.787784px;}
.fc0_c00129{color:transparent;}
.fs8_c00129{font-size:11.286000px;}
.fs10_c00129{font-size:22.176000px;}
.fs12_c00129{font-size:22.374000px;}
.fs11_c00129{font-size:28.314000px;}
.fs7_c00129{font-size:31.363200px;}
.fse_c00129{font-size:33.264000px;}
.fs1_c00129{font-size:50.688000px;}
.fsb_c00129{font-size:55.598598px;}
.fsf_c00129{font-size:56.628000px;}
.fs3_c00129{font-size:57.024198px;}
.fs4_c00129{font-size:58.449798px;}
.fs6_c00129{font-size:72.072198px;}
.fs5_c00129{font-size:72.864000px;}
.fs0_c00129{font-size:75.834000px;}
.fsc_c00129{font-size:76.824000px;}
.fs2_c00129{font-size:78.408000px;}
.fsd_c00129{font-size:79.596198px;}
.fs9_c00129{font-size:93.456198px;}
.fsa_c00129{font-size:120.384000px;}
.y0_c00129{bottom:0.000000px;}
.y1_c00129{bottom:76.500000px;}
.y24_c00129{bottom:118.236735px;}
.y23_c00129{bottom:122.157135px;}
.y22_c00129{bottom:125.008335px;}
.y21_c00129{bottom:143.541135px;}
.y20_c00129{bottom:173.117385px;}
.y1f_c00129{bottom:185.952735px;}
.y1e_c00129{bottom:209.831535px;}
.y1d_c00129{bottom:244.753785px;}
.y1c_c00129{bottom:277.547535px;}
.y1b_c00129{bottom:314.964585px;}
.y1a_c00129{bottom:317.464335px;}
.y19_c00129{bottom:342.055935px;}
.y18_c00129{bottom:374.844735px;}
.y17_c00129{bottom:407.272185px;}
.y16_c00129{bottom:439.704585px;}
.y15_c00129{bottom:472.141935px;}
.y14_c00129{bottom:486.754335px;}
.y13_c00129{bottom:494.951535px;}
.y12_c00129{bottom:503.861535px;}
.y11_c00129{bottom:518.117535px;}
.yf_c00129{bottom:535.928625px;}
.y10_c00129{bottom:535.937535px;}
.ye_c00129{bottom:568.369935px;}
.yd_c00129{bottom:601.515135px;}
.yc_c00129{bottom:666.379935px;}
.yb_c00129{bottom:698.812335px;}
.ya_c00129{bottom:731.601135px;}
.y9_c00129{bottom:763.672185px;}
.y8_c00129{bottom:796.104585px;}
.y7_c00129{bottom:828.185535px;}
.y6_c00129{bottom:860.974335px;}
.y5_c00129{bottom:893.406735px;}
.y4_c00129{bottom:925.834185px;}
.y3_c00129{bottom:940.807935px;}
.y2_c00129{bottom:1078.373385px;}
.h9_c00129{height:20.887891px;}
.h14_c00129{height:21.958857px;}
.h12_c00129{height:23.128875px;}
.h13_c00129{height:29.530617px;}
.h10_c00129{height:34.693313px;}
.hc_c00129{height:37.028666px;}
.h5_c00129{height:37.978116px;}
.h6_c00129{height:38.927565px;}
.h3_c00129{height:52.866000px;}
.h11_c00129{height:59.061234px;}
.h8_c00129{height:70.734921px;}
.h7_c00129{height:71.512031px;}
.he_c00129{height:73.433250px;}
.h2_c00129{height:74.426924px;}
.h4_c00129{height:76.953164px;}
.hd_c00129{height:77.424188px;}
.hf_c00129{height:78.119315px;}
.ha_c00129{height:97.471894px;}
.hb_c00129{height:118.150313px;}
.h1_c00129{height:1110.000000px;}
.h0_c00129{height:1263.000000px;}
.w1_c00129{width:733.500000px;}
.w0_c00129{width:892.500000px;}
.x0_c00129{left:0.000000px;}
.x5a_c00129{left:46.999785px;}
.x13_c00129{left:77.650185px;}
.x1_c00129{left:79.500000px;}
.x5f_c00129{left:80.595435px;}
.x46_c00129{left:100.271685px;}
.x14_c00129{left:111.359685px;}
.x60_c00129{left:112.428885px;}
.x35_c00129{left:121.135935px;}
.x15_c00129{left:133.332735px;}
.x4c_c00129{left:143.995035px;}
.xb_c00129{left:145.173135px;}
.x43_c00129{left:154.241535px;}
.x22_c00129{left:156.271035px;}
.x55_c00129{left:159.087585px;}
.x31_c00129{left:166.383885px;}
.x5b_c00129{left:167.651085px;}
.x39_c00129{left:177.105585px;}
.x50_c00129{left:178.397535px;}
.x3b_c00129{left:188.668785px;}
.x4_c00129{left:189.767685px;}
.x16_c00129{left:200.261685px;}
.x3e_c00129{left:201.479385px;}
.x51_c00129{left:210.909135px;}
.x5_c00129{left:212.077335px;}
.x3_c00129{left:217.819335px;}
.x5c_c00129{left:223.422735px;}
.x4d_c00129{left:226.595685px;}
.xc_c00129{left:232.991085px;}
.x17_c00129{left:234.327585px;}
.x3f_c00129{left:244.791885px;}
.x3a_c00129{left:254.790885px;}
.x23_c00129{left:255.914535px;}
.x52_c00129{left:257.043135px;}
.x36_c00129{left:266.982735px;}
.x44_c00129{left:268.126185px;}
.x28_c00129{left:278.362785px;}
.xd_c00129{left:288.658785px;}
.x18_c00129{left:289.807185px;}
.x6_c00129{left:299.647785px;}
.x57_c00129{left:301.622835px;}
.x32_c00129{left:312.324735px;}
.x2d_c00129{left:322.883085px;}
.xe_c00129{left:333.609735px;}
.x29_c00129{left:334.787835px;}
.x3c_c00129{left:344.613585px;}
.x24_c00129{left:345.821385px;}
.x40_c00129{left:356.567835px;}
.x58_c00129{left:367.027185px;}
.x19_c00129{left:368.319135px;}
.x7_c00129{left:378.699285px;}
.x45_c00129{left:381.050535px;}
.x5d_c00129{left:389.673435px;}
.x37_c00129{left:401.078235px;}
.x47_c00129{left:402.162285px;}
.x4e_c00129{left:408.849735px;}
.x1a_c00129{left:412.487985px;}
.xf_c00129{left:423.531435px;}
.x3d_c00129{left:433.901685px;}
.x38_c00129{left:435.282735px;}
.x1b_c00129{left:445.648035px;}
.x25_c00129{left:456.359835px;}
.x8_c00129{left:466.838985px;}
.x61_c00129{left:477.917085px;}
.x5e_c00129{left:489.138735px;}
.x10_c00129{left:490.198035px;}
.x1c_c00129{left:500.553435px;}
.x48_c00129{left:501.597885px;}
.x33_c00129{left:511.963185px;}
.x2e_c00129{left:523.234335px;}
.x1d_c00129{left:533.084835px;}
.x49_c00129{left:535.054935px;}
.x11_c00129{left:544.905435px;}
.x4f_c00129{left:555.191535px;}
.x34_c00129{left:567.071535px;}
.x41_c00129{left:578.416935px;}
.x26_c00129{left:581.035485px;}
.x62_c00129{left:587.356635px;}
.x2f_c00129{left:588.386235px;}
.x2a_c00129{left:589.623735px;}
.x1e_c00129{left:599.949435px;}
.x9_c00129{left:611.755185px;}
.x54_c00129{left:620.501835px;}
.x2b_c00129{left:622.061085px;}
.x27_c00129{left:623.070885px;}
.xa_c00129{left:632.510535px;}
.x1f_c00129{left:643.910385px;}
.x59_c00129{left:654.003435px;}
.x63_c00129{left:655.528035px;}
.x2_c00129{left:656.592285px;}
.x2c_c00129{left:665.729985px;}
.x20_c00129{left:667.378335px;}
.x21_c00129{left:677.961435px;}
.x4a_c00129{left:680.872035px;}
.x12_c00129{left:689.252385px;}
.x56_c00129{left:695.578485px;}
.x30_c00129{left:700.008735px;}
.x4b_c00129{left:701.053185px;}
.x53_c00129{left:708.834585px;}
.x42_c00129{left:722.199585px;}
@media print{
.v1_c00129{vertical-align:-65.894400pt;}
.v0_c00129{vertical-align:0.000000pt;}
.lsd_c00129{letter-spacing:-2.439360pt;}
.ls4_c00129{letter-spacing:-1.686643pt;}
.ls13_c00129{letter-spacing:-0.013939pt;}
.ls1_c00129{letter-spacing:0.000000pt;}
.lsa_c00129{letter-spacing:0.627264pt;}
.lsf_c00129{letter-spacing:1.554221pt;}
.ls8_c00129{letter-spacing:2.759962pt;}
.ls5_c00129{letter-spacing:2.906323pt;}
.ls9_c00129{letter-spacing:3.164198pt;}
.lsb_c00129{letter-spacing:3.203209pt;}
.ls11_c00129{letter-spacing:3.238400pt;}
.ls7_c00129{letter-spacing:3.268742pt;}
.ls0_c00129{letter-spacing:3.370400pt;}
.ls10_c00129{letter-spacing:3.414400pt;}
.ls2_c00129{letter-spacing:3.484800pt;}
.ls12_c00129{letter-spacing:3.537609pt;}
.lsc_c00129{letter-spacing:27.878400pt;}
.lse_c00129{letter-spacing:49.420976pt;}
.ls3_c00129{letter-spacing:50.688176pt;}
.ls6_c00129{letter-spacing:51.955376pt;}
.ws1_c00129{word-spacing:-20.588198pt;}
.ws4_c00129{word-spacing:-18.978221pt;}
.ws0_c00129{word-spacing:-17.424000pt;}
.ws3_c00129{word-spacing:-1.184128pt;}
.ws2_c00129{word-spacing:-0.975744pt;}
.ws5_c00129{word-spacing:0.000000pt;}
._5_c00129{margin-left:-1.115136pt;}
._3_c00129{width:2.871123pt;}
._2_c00129{width:6.830208pt;}
._0_c00129{width:8.154432pt;}
._4_c00129{width:12.475584pt;}
._8_c00129{width:14.511059pt;}
._7_c00129{width:18.539136pt;}
._1_c00129{width:26.548544pt;}
._6_c00129{width:404.255808pt;}
.fs8_c00129{font-size:10.032000pt;}
.fs10_c00129{font-size:19.712000pt;}
.fs12_c00129{font-size:19.888000pt;}
.fs11_c00129{font-size:25.168000pt;}
.fs7_c00129{font-size:27.878400pt;}
.fse_c00129{font-size:29.568000pt;}
.fs1_c00129{font-size:45.056000pt;}
.fsb_c00129{font-size:49.420976pt;}
.fsf_c00129{font-size:50.336000pt;}
.fs3_c00129{font-size:50.688176pt;}
.fs4_c00129{font-size:51.955376pt;}
.fs6_c00129{font-size:64.064176pt;}
.fs5_c00129{font-size:64.768000pt;}
.fs0_c00129{font-size:67.408000pt;}
.fsc_c00129{font-size:68.288000pt;}
.fs2_c00129{font-size:69.696000pt;}
.fsd_c00129{font-size:70.752176pt;}
.fs9_c00129{font-size:83.072176pt;}
.fsa_c00129{font-size:107.008000pt;}
.y0_c00129{bottom:0.000000pt;}
.y1_c00129{bottom:68.000000pt;}
.y24_c00129{bottom:105.099320pt;}
.y23_c00129{bottom:108.584120pt;}
.y22_c00129{bottom:111.118520pt;}
.y21_c00129{bottom:127.592120pt;}
.y20_c00129{bottom:153.882120pt;}
.y1f_c00129{bottom:165.291320pt;}
.y1e_c00129{bottom:186.516920pt;}
.y1d_c00129{bottom:217.558920pt;}
.y1c_c00129{bottom:246.708920pt;}
.y1b_c00129{bottom:279.968520pt;}
.y1a_c00129{bottom:282.190520pt;}
.y19_c00129{bottom:304.049720pt;}
.y18_c00129{bottom:333.195320pt;}
.y17_c00129{bottom:362.019720pt;}
.y16_c00129{bottom:390.848520pt;}
.y15_c00129{bottom:419.681720pt;}
.y14_c00129{bottom:432.670520pt;}
.y13_c00129{bottom:439.956920pt;}
.y12_c00129{bottom:447.876920pt;}
.y11_c00129{bottom:460.548920pt;}
.yf_c00129{bottom:476.381000pt;}
.y10_c00129{bottom:476.388920pt;}
.ye_c00129{bottom:505.217720pt;}
.yd_c00129{bottom:534.680120pt;}
.yc_c00129{bottom:592.337720pt;}
.yb_c00129{bottom:621.166520pt;}
.ya_c00129{bottom:650.312120pt;}
.y9_c00129{bottom:678.819720pt;}
.y8_c00129{bottom:707.648520pt;}
.y7_c00129{bottom:736.164920pt;}
.y6_c00129{bottom:765.310520pt;}
.y5_c00129{bottom:794.139320pt;}
.y4_c00129{bottom:822.963720pt;}
.y3_c00129{bottom:836.273720pt;}
.y2_c00129{bottom:958.554120pt;}
.h9_c00129{height:18.567014pt;}
.h14_c00129{height:19.518984pt;}
.h12_c00129{height:20.559000pt;}
.h13_c00129{height:26.249438pt;}
.h10_c00129{height:30.838500pt;}
.hc_c00129{height:32.914370pt;}
.h5_c00129{height:33.758325pt;}
.h6_c00129{height:34.602280pt;}
.h3_c00129{height:46.992000pt;}
.h11_c00129{height:52.498875pt;}
.h8_c00129{height:62.875485pt;}
.h7_c00129{height:63.566250pt;}
.he_c00129{height:65.274000pt;}
.h2_c00129{height:66.157266pt;}
.h4_c00129{height:68.402813pt;}
.hd_c00129{height:68.821500pt;}
.hf_c00129{height:69.439391pt;}
.ha_c00129{height:86.641684pt;}
.hb_c00129{height:105.022500pt;}
.h1_c00129{height:986.666667pt;}
.h0_c00129{height:1122.666667pt;}
.w1_c00129{width:652.000000pt;}
.w0_c00129{width:793.333333pt;}
.x0_c00129{left:0.000000pt;}
.x5a_c00129{left:41.777587pt;}
.x13_c00129{left:69.022387pt;}
.x1_c00129{left:70.666667pt;}
.x5f_c00129{left:71.640387pt;}
.x46_c00129{left:89.130387pt;}
.x14_c00129{left:98.986387pt;}
.x60_c00129{left:99.936787pt;}
.x35_c00129{left:107.676387pt;}
.x15_c00129{left:118.517987pt;}
.x4c_c00129{left:127.995587pt;}
.xb_c00129{left:129.042787pt;}
.x43_c00129{left:137.103587pt;}
.x22_c00129{left:138.907587pt;}
.x55_c00129{left:141.411187pt;}
.x31_c00129{left:147.896787pt;}
.x5b_c00129{left:149.023187pt;}
.x39_c00129{left:157.427187pt;}
.x50_c00129{left:158.575587pt;}
.x3b_c00129{left:167.705587pt;}
.x4_c00129{left:168.682387pt;}
.x16_c00129{left:178.010387pt;}
.x3e_c00129{left:179.092787pt;}
.x51_c00129{left:187.474787pt;}
.x5_c00129{left:188.513187pt;}
.x3_c00129{left:193.617187pt;}
.x5c_c00129{left:198.597987pt;}
.x4d_c00129{left:201.418387pt;}
.xc_c00129{left:207.103187pt;}
.x17_c00129{left:208.291187pt;}
.x3f_c00129{left:217.592787pt;}
.x3a_c00129{left:226.480787pt;}
.x23_c00129{left:227.479587pt;}
.x52_c00129{left:228.482787pt;}
.x36_c00129{left:237.317987pt;}
.x44_c00129{left:238.334387pt;}
.x28_c00129{left:247.433587pt;}
.xd_c00129{left:256.585587pt;}
.x18_c00129{left:257.606387pt;}
.x6_c00129{left:266.353587pt;}
.x57_c00129{left:268.109187pt;}
.x32_c00129{left:277.621987pt;}
.x2d_c00129{left:287.007187pt;}
.xe_c00129{left:296.541987pt;}
.x29_c00129{left:297.589187pt;}
.x3c_c00129{left:306.323187pt;}
.x24_c00129{left:307.396787pt;}
.x40_c00129{left:316.949187pt;}
.x58_c00129{left:326.246387pt;}
.x19_c00129{left:327.394787pt;}
.x7_c00129{left:336.621587pt;}
.x45_c00129{left:338.711587pt;}
.x5d_c00129{left:346.376387pt;}
.x37_c00129{left:356.513987pt;}
.x47_c00129{left:357.477587pt;}
.x4e_c00129{left:363.421987pt;}
.x1a_c00129{left:366.655987pt;}
.xf_c00129{left:376.472387pt;}
.x3d_c00129{left:385.690387pt;}
.x38_c00129{left:386.917987pt;}
.x1b_c00129{left:396.131587pt;}
.x25_c00129{left:405.653187pt;}
.x8_c00129{left:414.967987pt;}
.x61_c00129{left:424.815187pt;}
.x5e_c00129{left:434.789987pt;}
.x10_c00129{left:435.731587pt;}
.x1c_c00129{left:444.936387pt;}
.x48_c00129{left:445.864787pt;}
.x33_c00129{left:455.078387pt;}
.x2e_c00129{left:465.097187pt;}
.x1d_c00129{left:473.853187pt;}
.x49_c00129{left:475.604387pt;}
.x11_c00129{left:484.360387pt;}
.x4f_c00129{left:493.503587pt;}
.x34_c00129{left:504.063587pt;}
.x41_c00129{left:514.148387pt;}
.x26_c00129{left:516.475987pt;}
.x62_c00129{left:522.094787pt;}
.x2f_c00129{left:523.009987pt;}
.x2a_c00129{left:524.109987pt;}
.x1e_c00129{left:533.288387pt;}
.x9_c00129{left:543.782387pt;}
.x54_c00129{left:551.557187pt;}
.x2b_c00129{left:552.943187pt;}
.x27_c00129{left:553.840787pt;}
.xa_c00129{left:562.231587pt;}
.x1f_c00129{left:572.364787pt;}
.x59_c00129{left:581.336387pt;}
.x63_c00129{left:582.691587pt;}
.x2_c00129{left:583.637587pt;}
.x2c_c00129{left:591.759987pt;}
.x20_c00129{left:593.225187pt;}
.x21_c00129{left:602.632387pt;}
.x4a_c00129{left:605.219587pt;}
.x12_c00129{left:612.668787pt;}
.x56_c00129{left:618.291987pt;}
.x30_c00129{left:622.229987pt;}
.x4b_c00129{left:623.158387pt;}
.x53_c00129{left:630.075187pt;}
.x42_c00129{left:641.955187pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1f5ea84c925381c5f64d1ff1.woff2')format("woff");}.ff1_c00130{font-family:ff1_c00130;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00130;src:url('chunks/assets/font_4ff49162aa71fdf47a0e0762.woff2')format("woff");}.ff2_c00130{font-family:ff2_c00130;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00130;src:url('chunks/assets/font_992478cb37f74556180005c8.woff2')format("woff");}.ff3_c00130{font-family:ff3_c00130;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m56_c00130{transform:matrix(0.186998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186998,0.000000,0.000000,0.250000,0,0);}
.m1e_c00130{transform:matrix(0.196729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196729,0.000000,0.000000,0.250000,0,0);}
.m92_c00130{transform:matrix(0.216704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216704,0.000000,0.000000,0.250000,0,0);}
.m4a_c00130{transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);}
.m62_c00130{transform:matrix(0.227167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227167,0.000000,0.000000,0.250000,0,0);}
.m41_c00130{transform:matrix(0.237929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237929,0.000000,0.000000,0.250000,0,0);}
.m5_c00130{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m28_c00130{transform:matrix(0.252915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252915,0.000000,0.000000,0.250000,0,0);}
.m2f_c00130{transform:matrix(0.254261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254261,0.000000,0.000000,0.250000,0,0);}
.m8f_c00130{transform:matrix(0.257985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257985,0.000000,0.000000,0.250000,0,0);}
.m2_c00130{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m7e_c00130{transform:matrix(0.263122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263122,0.000000,0.000000,0.250000,0,0);}
.md_c00130{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m6c_c00130{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m4f_c00130{transform:matrix(0.265694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265694,0.000000,0.000000,0.250000,0,0);}
.m90_c00130{transform:matrix(0.266081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266081,0.000000,0.000000,0.250000,0,0);}
.m8d_c00130{transform:matrix(0.266146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266146,0.000000,0.000000,0.250000,0,0);}
.m21_c00130{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m8b_c00130{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.m13_c00130{transform:matrix(0.267383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267383,0.000000,0.000000,0.250000,0,0);}
.m87_c00130{transform:matrix(0.267653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267653,0.000000,0.000000,0.250000,0,0);}
.m91_c00130{transform:matrix(0.267714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267714,0.000000,0.000000,0.250000,0,0);}
.m6_c00130{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m3b_c00130{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.m35_c00130{transform:matrix(0.268624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268624,0.000000,0.000000,0.250000,0,0);}
.m73_c00130{transform:matrix(0.268679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268679,0.000000,0.000000,0.250000,0,0);}
.m68_c00130{transform:matrix(0.268915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268915,0.000000,0.000000,0.250000,0,0);}
.m9_c00130{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m1f_c00130{transform:matrix(0.272038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272038,0.000000,0.000000,0.250000,0,0);}
.m67_c00130{transform:matrix(0.272234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272234,0.000000,0.000000,0.250000,0,0);}
.m34_c00130{transform:matrix(0.272549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272549,0.000000,0.000000,0.250000,0,0);}
.m1c_c00130{transform:matrix(0.275040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275040,0.000000,0.000000,0.250000,0,0);}
.m82_c00130{transform:matrix(0.275052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275052,0.000000,0.000000,0.250000,0,0);}
.m32_c00130{transform:matrix(0.275066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275066,0.000000,0.000000,0.250000,0,0);}
.m16_c00130{transform:matrix(0.277016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277016,0.000000,0.000000,0.250000,0,0);}
.m3_c00130{transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);}
.m7b_c00130{transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);}
.m50_c00130{transform:matrix(0.277164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277164,0.000000,0.000000,0.250000,0,0);}
.m83_c00130{transform:matrix(0.277679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277679,0.000000,0.000000,0.250000,0,0);}
.m79_c00130{transform:matrix(0.278060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278060,0.000000,0.000000,0.250000,0,0);}
.m26_c00130{transform:matrix(0.278275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278275,0.000000,0.000000,0.250000,0,0);}
.m55_c00130{transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);}
.m65_c00130{transform:matrix(0.280040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280040,0.000000,0.000000,0.250000,0,0);}
.m5c_c00130{transform:matrix(0.280961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280961,0.000000,0.000000,0.250000,0,0);}
.m22_c00130{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.m3d_c00130{transform:matrix(0.281551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281551,0.000000,0.000000,0.250000,0,0);}
.m76_c00130{transform:matrix(0.282518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282518,0.000000,0.000000,0.250000,0,0);}
.m43_c00130{transform:matrix(0.282939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282939,0.000000,0.000000,0.250000,0,0);}
.m64_c00130{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m6a_c00130{transform:matrix(0.284987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284987,0.000000,0.000000,0.250000,0,0);}
.m89_c00130{transform:matrix(0.285076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285076,0.000000,0.000000,0.250000,0,0);}
.m96_c00130{transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);}
.m95_c00130{transform:matrix(0.287874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287874,0.000000,0.000000,0.250000,0,0);}
.m94_c00130{transform:matrix(0.288205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288205,0.000000,0.000000,0.250000,0,0);}
.m9b_c00130{transform:matrix(0.288571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288571,0.000000,0.000000,0.250000,0,0);}
.m37_c00130{transform:matrix(0.289095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289095,0.000000,0.000000,0.250000,0,0);}
.m49_c00130{transform:matrix(0.289170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289170,0.000000,0.000000,0.250000,0,0);}
.m46_c00130{transform:matrix(0.290479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290479,0.000000,0.000000,0.250000,0,0);}
.m93_c00130{transform:matrix(0.290497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290497,0.000000,0.000000,0.250000,0,0);}
.m8_c00130{transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);}
.m86_c00130{transform:matrix(0.290836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290836,0.000000,0.000000,0.250000,0,0);}
.m7d_c00130{transform:matrix(0.290925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290925,0.000000,0.000000,0.250000,0,0);}
.m1a_c00130{transform:matrix(0.291135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291135,0.000000,0.000000,0.250000,0,0);}
.m23_c00130{transform:matrix(0.291141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291141,0.000000,0.000000,0.250000,0,0);}
.m7a_c00130{transform:matrix(0.291341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291341,0.000000,0.000000,0.250000,0,0);}
.m33_c00130{transform:matrix(0.291415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291415,0.000000,0.000000,0.250000,0,0);}
.m97_c00130{transform:matrix(0.291580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291580,0.000000,0.000000,0.250000,0,0);}
.m59_c00130{transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);}
.m54_c00130{transform:matrix(0.291867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291867,0.000000,0.000000,0.250000,0,0);}
.m1b_c00130{transform:matrix(0.291922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291922,0.000000,0.000000,0.250000,0,0);}
.m4c_c00130{transform:matrix(0.291994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291994,0.000000,0.000000,0.250000,0,0);}
.m17_c00130{transform:matrix(0.292427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292427,0.000000,0.000000,0.250000,0,0);}
.m69_c00130{transform:matrix(0.292450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292450,0.000000,0.000000,0.250000,0,0);}
.m31_c00130{transform:matrix(0.292566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292566,0.000000,0.000000,0.250000,0,0);}
.m3a_c00130{transform:matrix(0.292638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292638,0.000000,0.000000,0.250000,0,0);}
.m3f_c00130{transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);}
.m60_c00130{transform:matrix(0.293689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293689,0.000000,0.000000,0.250000,0,0);}
.m52_c00130{transform:matrix(0.294747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294747,0.000000,0.000000,0.250000,0,0);}
.m45_c00130{transform:matrix(0.295552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295552,0.000000,0.000000,0.250000,0,0);}
.m4e_c00130{transform:matrix(0.295782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295782,0.000000,0.000000,0.250000,0,0);}
.m6f_c00130{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m80_c00130{transform:matrix(0.297306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297306,0.000000,0.000000,0.250000,0,0);}
.m4_c00130{transform:matrix(0.297691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297691,0.000000,0.000000,0.250000,0,0);}
.m77_c00130{transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);}
.m5e_c00130{transform:matrix(0.298758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298758,0.000000,0.000000,0.250000,0,0);}
.m38_c00130{transform:matrix(0.299102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299102,0.000000,0.000000,0.250000,0,0);}
.m53_c00130{transform:matrix(0.299115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299115,0.000000,0.000000,0.250000,0,0);}
.m71_c00130{transform:matrix(0.299193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299193,0.000000,0.000000,0.250000,0,0);}
.m6e_c00130{transform:matrix(0.299757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299757,0.000000,0.000000,0.250000,0,0);}
.m18_c00130{transform:matrix(0.300590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300590,0.000000,0.000000,0.250000,0,0);}
.m99_c00130{transform:matrix(0.301437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301437,0.000000,0.000000,0.250000,0,0);}
.m84_c00130{transform:matrix(0.302081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302081,0.000000,0.000000,0.250000,0,0);}
.m1d_c00130{transform:matrix(0.302241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302241,0.000000,0.000000,0.250000,0,0);}
.m29_c00130{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m61_c00130{transform:matrix(0.302641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302641,0.000000,0.000000,0.250000,0,0);}
.m0_c00130{transform:matrix(0.302913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302913,0.000000,0.000000,0.250000,0,0);}
.m15_c00130{transform:matrix(0.303162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303162,0.000000,0.000000,0.250000,0,0);}
.m8a_c00130{transform:matrix(0.304360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304360,0.000000,0.000000,0.250000,0,0);}
.m7f_c00130{transform:matrix(0.304443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304443,0.000000,0.000000,0.250000,0,0);}
.m30_c00130{transform:matrix(0.305586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305586,0.000000,0.000000,0.250000,0,0);}
.m11_c00130{transform:matrix(0.306855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306855,0.000000,0.000000,0.250000,0,0);}
.m9c_c00130{transform:matrix(0.306893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306893,0.000000,0.000000,0.250000,0,0);}
.m39_c00130{transform:matrix(0.307758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307758,0.000000,0.000000,0.250000,0,0);}
.m58_c00130{transform:matrix(0.308319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308319,0.000000,0.000000,0.250000,0,0);}
.m5d_c00130{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m2b_c00130{transform:matrix(0.308585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308585,0.000000,0.000000,0.250000,0,0);}
.m3e_c00130{transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);}
.m81_c00130{transform:matrix(0.309510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309510,0.000000,0.000000,0.250000,0,0);}
.m12_c00130{transform:matrix(0.309689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309689,0.000000,0.000000,0.250000,0,0);}
.m72_c00130{transform:matrix(0.310403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310403,0.000000,0.000000,0.250000,0,0);}
.m74_c00130{transform:matrix(0.310566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310566,0.000000,0.000000,0.250000,0,0);}
.m88_c00130{transform:matrix(0.310871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310871,0.000000,0.000000,0.250000,0,0);}
.m8c_c00130{transform:matrix(0.311405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311405,0.000000,0.000000,0.250000,0,0);}
.m9a_c00130{transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);}
.m36_c00130{transform:matrix(0.312290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312290,0.000000,0.000000,0.250000,0,0);}
.m2a_c00130{transform:matrix(0.313330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313330,0.000000,0.000000,0.250000,0,0);}
.m5a_c00130{transform:matrix(0.313369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313369,0.000000,0.000000,0.250000,0,0);}
.m19_c00130{transform:matrix(0.313921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313921,0.000000,0.000000,0.250000,0,0);}
.m51_c00130{transform:matrix(0.316696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316696,0.000000,0.000000,0.250000,0,0);}
.m6d_c00130{transform:matrix(0.316884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316884,0.000000,0.000000,0.250000,0,0);}
.m5f_c00130{transform:matrix(0.317925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317925,0.000000,0.000000,0.250000,0,0);}
.m40_c00130{transform:matrix(0.318131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318131,0.000000,0.000000,0.250000,0,0);}
.m47_c00130{transform:matrix(0.319130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319130,0.000000,0.000000,0.250000,0,0);}
.m20_c00130{transform:matrix(0.319876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319876,0.000000,0.000000,0.250000,0,0);}
.m1_c00130{transform:matrix(0.320477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320477,0.000000,0.000000,0.250000,0,0);}
.m4b_c00130{transform:matrix(0.321409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321409,0.000000,0.000000,0.250000,0,0);}
.ma_c00130{transform:matrix(0.322864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322864,0.000000,0.000000,0.250000,0,0);}
.m63_c00130{transform:matrix(0.323395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323395,0.000000,0.000000,0.250000,0,0);}
.m7c_c00130{transform:matrix(0.323504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323504,0.000000,0.000000,0.250000,0,0);}
.m6b_c00130{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.m48_c00130{transform:matrix(0.325592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325592,0.000000,0.000000,0.250000,0,0);}
.m2d_c00130{transform:matrix(0.326063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326063,0.000000,0.000000,0.250000,0,0);}
.m44_c00130{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.m57_c00130{transform:matrix(0.330718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330718,0.000000,0.000000,0.250000,0,0);}
.m85_c00130{transform:matrix(0.330747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330747,0.000000,0.000000,0.250000,0,0);}
.m75_c00130{transform:matrix(0.331422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331422,0.000000,0.000000,0.250000,0,0);}
.m3c_c00130{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m25_c00130{transform:matrix(0.333672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333672,0.000000,0.000000,0.250000,0,0);}
.m4d_c00130{transform:matrix(0.337019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337019,0.000000,0.000000,0.250000,0,0);}
.m10_c00130{transform:matrix(0.337511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337511,0.000000,0.000000,0.250000,0,0);}
.m5b_c00130{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.mb_c00130{transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);}
.m70_c00130{transform:matrix(0.342602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342602,0.000000,0.000000,0.250000,0,0);}
.m24_c00130{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.m78_c00130{transform:matrix(0.345128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345128,0.000000,0.000000,0.250000,0,0);}
.m66_c00130{transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);}
.m14_c00130{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.mc_c00130{transform:matrix(0.352727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352727,0.000000,0.000000,0.250000,0,0);}
.m7_c00130{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m8e_c00130{transform:matrix(0.359210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359210,0.000000,0.000000,0.250000,0,0);}
.m2c_c00130{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m27_c00130{transform:matrix(0.361926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361926,0.000000,0.000000,0.250000,0,0);}
.m2e_c00130{transform:matrix(0.365877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365877,0.000000,0.000000,0.250000,0,0);}
.me_c00130{transform:matrix(0.378961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378961,0.000000,0.000000,0.250000,0,0);}
.m98_c00130{transform:matrix(0.409814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409814,0.000000,0.000000,0.250000,0,0);}
.m42_c00130{transform:matrix(0.421610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421610,0.000000,0.000000,0.250000,0,0);}
.mf_c00130{transform:matrix(0.428522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428522,0.000000,0.000000,0.250000,0,0);}
.v0_c00130{vertical-align:0.000000px;}
.ls4_c00130{letter-spacing:-2.744280px;}
.ls8_c00130{letter-spacing:-2.550240px;}
.ls9_c00130{letter-spacing:-1.897474px;}
.ls3_c00130{letter-spacing:-0.250906px;}
.ls2_c00130{letter-spacing:0.000000px;}
.ls6_c00130{letter-spacing:1.246687px;}
.ls5_c00130{letter-spacing:1.685772px;}
.lsa_c00130{letter-spacing:3.276900px;}
.ls0_c00130{letter-spacing:3.603610px;}
.ls1_c00130{letter-spacing:3.920400px;}
.ls7_c00130{letter-spacing:49.896198px;}
.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;}
}
.ws1_c00130{word-spacing:-19.602000px;}
.ws0_c00130{word-spacing:-19.351094px;}
.ws2_c00130{word-spacing:0.000000px;}
._7_c00130{margin-left:-8.938512px;}
._3_c00130{width:5.723784px;}
._4_c00130{width:7.370669px;}
._2_c00130{width:8.624880px;}
._5_c00130{width:11.133936px;}
._6_c00130{width:13.799808px;}
._0_c00130{width:22.267872px;}
._1_c00130{width:30.338352px;}
._8_c00130{width:32.617728px;}
._a_c00130{width:37.996200px;}
._9_c00130{width:42.005304px;}
.fc0_c00130{color:transparent;}
.fs6_c00130{font-size:27.720000px;}
.fs2_c00130{font-size:49.896198px;}
.fs4_c00130{font-size:65.538000px;}
.fs5_c00130{font-size:70.092198px;}
.fs0_c00130{font-size:72.072198px;}
.fs3_c00130{font-size:72.864000px;}
.fs1_c00130{font-size:78.408000px;}
.y0_c00130{bottom:0.000000px;}
.y18_c00130{bottom:4.545135px;}
.y1_c00130{bottom:76.500000px;}
.y17_c00130{bottom:154.589535px;}
.y16_c00130{bottom:218.023785px;}
.y15_c00130{bottom:250.461135px;}
.y14_c00130{bottom:282.893535px;}
.y13_c00130{bottom:315.320985px;}
.y12_c00130{bottom:348.109785px;}
.y11_c00130{bottom:381.972735px;}
.y10_c00130{bottom:414.043785px;}
.yf_c00130{bottom:446.832585px;}
.ye_c00130{bottom:479.269935px;}
.yd_c00130{bottom:511.702335px;}
.yc_c00130{bottom:608.994585px;}
.yb_c00130{bottom:641.783385px;}
.ya_c00130{bottom:674.215785px;}
.y9_c00130{bottom:706.648185px;}
.y8_c00130{bottom:738.729135px;}
.y7_c00130{bottom:771.161535px;}
.y6_c00130{bottom:836.021385px;}
.y5_c00130{bottom:868.453785px;}
.y4_c00130{bottom:901.598985px;}
.y3_c00130{bottom:934.031385px;}
.y2_c00130{bottom:1084.075785px;}
.h7_c00130{height:28.911094px;}
.h4_c00130{height:33.230868px;}
.h6_c00130{height:68.354086px;}
.h2_c00130{height:70.734921px;}
.h5_c00130{height:71.512031px;}
.h3_c00130{height:76.953164px;}
.h1_c00130{height:1110.000000px;}
.h0_c00130{height:1263.000000px;}
.w1_c00130{width:775.500000px;}
.w0_c00130{width:892.500000px;}
.x0_c00130{left:0.000000px;}
.x3e_c00130{left:56.594985px;}
.x1_c00130{left:58.500000px;}
.x3_c00130{left:74.860485px;}
.x4d_c00130{left:76.043535px;}
.x53_c00130{left:77.756235px;}
.x4a_c00130{left:98.892735px;}
.xf_c00130{left:108.871935px;}
.x4e_c00130{left:120.865785px;}
.x1b_c00130{left:129.612435px;}
.x55_c00130{left:131.963685px;}
.x51_c00130{left:141.433035px;}
.x4b_c00130{left:143.031885px;}
.x1a_c00130{left:153.030885px;}
.x5b_c00130{left:155.624685px;}
.x3f_c00130{left:162.856635px;}
.x10_c00130{left:163.876335px;}
.x38_c00130{left:165.108885px;}
.x27_c00130{left:174.771285px;}
.x2c_c00130{left:176.177085px;}
.x4_c00130{left:185.829585px;}
.x58_c00130{left:187.225485px;}
.x40_c00130{left:196.283985px;}
.x28_c00130{left:197.377935px;}
.x2d_c00130{left:208.307535px;}
.x5_c00130{left:218.455035px;}
.x32_c00130{left:219.687585px;}
.x16_c00130{left:230.547885px;}
.x41_c00130{left:231.785385px;}
.x1c_c00130{left:241.819035px;}
.x17_c00130{left:252.481335px;}
.x50_c00130{left:253.763385px;}
.x6_c00130{left:263.658435px;}
.x11_c00130{left:274.677135px;}
.x39_c00130{left:276.320535px;}
.x1d_c00130{left:285.784935px;}
.x42_c00130{left:287.393685px;}
.x12_c00130{left:297.729285px;}
.x1e_c00130{left:308.421285px;}
.x59_c00130{left:310.158735px;}
.x13_c00130{left:319.113285px;}
.x43_c00130{left:320.415135px;}
.x29_c00130{left:330.735885px;}
.x52_c00130{left:331.909035px;}
.x2e_c00130{left:341.378385px;}
.x7_c00130{left:352.971285px;}
.x1f_c00130{left:364.712685px;}
.x8_c00130{left:374.711685px;}
.x5a_c00130{left:375.780885px;}
.x33_c00130{left:386.472885px;}
.x20_c00130{left:395.942235px;}
.x4c_c00130{left:396.976785px;}
.x57_c00130{left:398.105385px;}
.x9_c00130{left:408.530085px;}
.x21_c00130{left:429.750735px;}
.x44_c00130{left:431.710935px;}
.xa_c00130{left:440.813985px;}
.x3b_c00130{left:442.363335px;}
.x2a_c00130{left:452.723685px;}
.x45_c00130{left:464.796735px;}
.x36_c00130{left:474.840285px;}
.x18_c00130{left:485.552085px;}
.x34_c00130{left:487.715235px;}
.x46_c00130{left:495.734235px;}
.x22_c00130{left:496.961835px;}
.x14_c00130{left:507.886485px;}
.x4f_c00130{left:509.049735px;}
.xb_c00130{left:520.098135px;}
.x23_c00130{left:530.428785px;}
.x47_c00130{left:541.477185px;}
.x56_c00130{left:542.551335px;}
.xc_c00130{left:552.862185px;}
.x24_c00130{left:561.668235px;}
.x3a_c00130{left:564.271935px;}
.x54_c00130{left:573.751185px;}
.x3c_c00130{left:584.071935px;}
.x48_c00130{left:585.151035px;}
.x2f_c00130{left:596.461785px;}
.x2b_c00130{left:607.084485px;}
.x15_c00130{left:618.840735px;}
.x35_c00130{left:629.879235px;}
.xd_c00130{left:641.224635px;}
.x30_c00130{left:650.936535px;}
.x2_c00130{left:652.292835px;}
.x3d_c00130{left:654.050085px;}
.xe_c00130{left:673.859985px;}
.x49_c00130{left:675.087585px;}
.x37_c00130{left:686.135985px;}
.x25_c00130{left:695.828085px;}
.x19_c00130{left:697.189335px;}
.x26_c00130{left:717.192285px;}
.x31_c00130{left:726.374535px;}
@media print{
.v0_c00130{vertical-align:0.000000pt;}
.ls4_c00130{letter-spacing:-2.439360pt;}
.ls8_c00130{letter-spacing:-2.266880pt;}
.ls9_c00130{letter-spacing:-1.686643pt;}
.ls3_c00130{letter-spacing:-0.223027pt;}
.ls2_c00130{letter-spacing:0.000000pt;}
.ls6_c00130{letter-spacing:1.108166pt;}
.ls5_c00130{letter-spacing:1.498464pt;}
.lsa_c00130{letter-spacing:2.912800pt;}
.ls0_c00130{letter-spacing:3.203209pt;}
.ls1_c00130{letter-spacing:3.484800pt;}
.ls7_c00130{letter-spacing:44.352176pt;}
.ws1_c00130{word-spacing:-17.424000pt;}
.ws0_c00130{word-spacing:-17.200973pt;}
.ws2_c00130{word-spacing:0.000000pt;}
._7_c00130{margin-left:-7.945344pt;}
._3_c00130{width:5.087808pt;}
._4_c00130{width:6.551706pt;}
._2_c00130{width:7.666560pt;}
._5_c00130{width:9.896832pt;}
._6_c00130{width:12.266496pt;}
._0_c00130{width:19.793664pt;}
._1_c00130{width:26.967424pt;}
._8_c00130{width:28.993536pt;}
._a_c00130{width:33.774400pt;}
._9_c00130{width:37.338048pt;}
.fs6_c00130{font-size:24.640000pt;}
.fs2_c00130{font-size:44.352176pt;}
.fs4_c00130{font-size:58.256000pt;}
.fs5_c00130{font-size:62.304176pt;}
.fs0_c00130{font-size:64.064176pt;}
.fs3_c00130{font-size:64.768000pt;}
.fs1_c00130{font-size:69.696000pt;}
.y0_c00130{bottom:0.000000pt;}
.y18_c00130{bottom:4.040120pt;}
.y1_c00130{bottom:68.000000pt;}
.y17_c00130{bottom:137.412920pt;}
.y16_c00130{bottom:193.798920pt;}
.y15_c00130{bottom:222.632120pt;}
.y14_c00130{bottom:251.460920pt;}
.y13_c00130{bottom:280.285320pt;}
.y12_c00130{bottom:309.430920pt;}
.y11_c00130{bottom:339.531320pt;}
.y10_c00130{bottom:368.038920pt;}
.yf_c00130{bottom:397.184520pt;}
.ye_c00130{bottom:426.017720pt;}
.yd_c00130{bottom:454.846520pt;}
.yc_c00130{bottom:541.328520pt;}
.yb_c00130{bottom:570.474120pt;}
.ya_c00130{bottom:599.302920pt;}
.y9_c00130{bottom:628.131720pt;}
.y8_c00130{bottom:656.648120pt;}
.y7_c00130{bottom:685.476920pt;}
.y6_c00130{bottom:743.130120pt;}
.y5_c00130{bottom:771.958920pt;}
.y4_c00130{bottom:801.421320pt;}
.y3_c00130{bottom:830.250120pt;}
.y2_c00130{bottom:963.622920pt;}
.h7_c00130{height:25.698750pt;}
.h4_c00130{height:29.538549pt;}
.h6_c00130{height:60.759188pt;}
.h2_c00130{height:62.875485pt;}
.h5_c00130{height:63.566250pt;}
.h3_c00130{height:68.402813pt;}
.h1_c00130{height:986.666667pt;}
.h0_c00130{height:1122.666667pt;}
.w1_c00130{width:689.333333pt;}
.w0_c00130{width:793.333333pt;}
.x0_c00130{left:0.000000pt;}
.x3e_c00130{left:50.306653pt;}
.x1_c00130{left:52.000000pt;}
.x3_c00130{left:66.542653pt;}
.x4d_c00130{left:67.594253pt;}
.x53_c00130{left:69.116653pt;}
.x4a_c00130{left:87.904653pt;}
.xf_c00130{left:96.775053pt;}
.x4e_c00130{left:107.436253pt;}
.x1b_c00130{left:115.211053pt;}
.x55_c00130{left:117.301053pt;}
.x51_c00130{left:125.718253pt;}
.x4b_c00130{left:127.139453pt;}
.x1a_c00130{left:136.027453pt;}
.x5b_c00130{left:138.333053pt;}
.x3f_c00130{left:144.761453pt;}
.x10_c00130{left:145.667853pt;}
.x38_c00130{left:146.763453pt;}
.x27_c00130{left:155.352253pt;}
.x2c_c00130{left:156.601853pt;}
.x4_c00130{left:165.181853pt;}
.x58_c00130{left:166.422653pt;}
.x40_c00130{left:174.474653pt;}
.x28_c00130{left:175.447053pt;}
.x2d_c00130{left:185.162253pt;}
.x5_c00130{left:194.182253pt;}
.x32_c00130{left:195.277853pt;}
.x16_c00130{left:204.931453pt;}
.x41_c00130{left:206.031453pt;}
.x1c_c00130{left:214.950253pt;}
.x17_c00130{left:224.427853pt;}
.x50_c00130{left:225.567453pt;}
.x6_c00130{left:234.363053pt;}
.x11_c00130{left:244.157453pt;}
.x39_c00130{left:245.618253pt;}
.x1d_c00130{left:254.031053pt;}
.x42_c00130{left:255.461053pt;}
.x12_c00130{left:264.648253pt;}
.x1e_c00130{left:274.152253pt;}
.x59_c00130{left:275.696653pt;}
.x13_c00130{left:283.656253pt;}
.x43_c00130{left:284.813453pt;}
.x29_c00130{left:293.987453pt;}
.x52_c00130{left:295.030253pt;}
.x2e_c00130{left:303.447453pt;}
.x7_c00130{left:313.752253pt;}
.x1f_c00130{left:324.189053pt;}
.x8_c00130{left:333.077053pt;}
.x5a_c00130{left:334.027453pt;}
.x33_c00130{left:343.531453pt;}
.x20_c00130{left:351.948653pt;}
.x4c_c00130{left:352.868253pt;}
.x57_c00130{left:353.871453pt;}
.x9_c00130{left:363.137853pt;}
.x21_c00130{left:382.000653pt;}
.x44_c00130{left:383.743053pt;}
.xa_c00130{left:391.834653pt;}
.x3b_c00130{left:393.211853pt;}
.x2a_c00130{left:402.421053pt;}
.x45_c00130{left:413.152653pt;}
.x36_c00130{left:422.080253pt;}
.x18_c00130{left:431.601853pt;}
.x34_c00130{left:433.524653pt;}
.x46_c00130{left:440.652653pt;}
.x22_c00130{left:441.743853pt;}
.x14_c00130{left:451.454653pt;}
.x4f_c00130{left:452.488653pt;}
.xb_c00130{left:462.309453pt;}
.x23_c00130{left:471.492253pt;}
.x47_c00130{left:481.313053pt;}
.x56_c00130{left:482.267853pt;}
.xc_c00130{left:491.433053pt;}
.x24_c00130{left:499.260653pt;}
.x3a_c00130{left:501.575053pt;}
.x54_c00130{left:510.001053pt;}
.x3c_c00130{left:519.175053pt;}
.x48_c00130{left:520.134253pt;}
.x2f_c00130{left:530.188253pt;}
.x2b_c00130{left:539.630653pt;}
.x15_c00130{left:550.080653pt;}
.x35_c00130{left:559.892653pt;}
.xd_c00130{left:569.977453pt;}
.x30_c00130{left:578.610253pt;}
.x2_c00130{left:579.815853pt;}
.x3d_c00130{left:581.377853pt;}
.xe_c00130{left:598.986653pt;}
.x49_c00130{left:600.077853pt;}
.x37_c00130{left:609.898653pt;}
.x25_c00130{left:618.513853pt;}
.x19_c00130{left:619.723853pt;}
.x26_c00130{left:637.504253pt;}
.x31_c00130{left:645.666253pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_71efa4f396911dcc0022e187.woff2')format("woff");}.ff1_c00131{font-family:ff1_c00131;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00131;src:url('chunks/assets/font_43952719194ce5851da7de0f.woff2')format("woff");}.ff2_c00131{font-family:ff2_c00131;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00131;src:url('chunks/assets/font_991d5f95a655f909a43bb2ba.woff2')format("woff");}.ff3_c00131{font-family:ff3_c00131;line-height:0.666000;font-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_c00131{transform:matrix(0.150782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150782,0.000000,0.000000,0.250000,0,0);}
.md_c00131{transform:matrix(0.166669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166669,0.000000,0.000000,0.250000,0,0);}
.m39_c00131{transform:matrix(0.169125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169125,0.000000,0.000000,0.250000,0,0);}
.m1e_c00131{transform:matrix(0.231988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231988,0.000000,0.000000,0.250000,0,0);}
.m3_c00131{transform:matrix(0.248170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248170,0.000000,0.000000,0.250000,0,0);}
.m0_c00131{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.mb_c00131{transform:matrix(0.251385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251385,0.000000,0.000000,0.250000,0,0);}
.m13_c00131{transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);}
.m6c_c00131{transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);}
.m5e_c00131{transform:matrix(0.253704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253704,0.000000,0.000000,0.250000,0,0);}
.m8a_c00131{transform:matrix(0.254655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254655,0.000000,0.000000,0.250000,0,0);}
.m3a_c00131{transform:matrix(0.255079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255079,0.000000,0.000000,0.250000,0,0);}
.m7d_c00131{transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);}
.m32_c00131{transform:matrix(0.255999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255999,0.000000,0.000000,0.250000,0,0);}
.m50_c00131{transform:matrix(0.256325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256325,0.000000,0.000000,0.250000,0,0);}
.m4e_c00131{transform:matrix(0.256734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256734,0.000000,0.000000,0.250000,0,0);}
.m1c_c00131{transform:matrix(0.256822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256822,0.000000,0.000000,0.250000,0,0);}
.m3f_c00131{transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);}
.m94_c00131{transform:matrix(0.257524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257524,0.000000,0.000000,0.250000,0,0);}
.m7b_c00131{transform:matrix(0.257854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257854,0.000000,0.000000,0.250000,0,0);}
.m5b_c00131{transform:matrix(0.257904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257904,0.000000,0.000000,0.250000,0,0);}
.m93_c00131{transform:matrix(0.258109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258109,0.000000,0.000000,0.250000,0,0);}
.m8d_c00131{transform:matrix(0.258186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258186,0.000000,0.000000,0.250000,0,0);}
.m10_c00131{transform:matrix(0.258834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258834,0.000000,0.000000,0.250000,0,0);}
.m34_c00131{transform:matrix(0.259376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259376,0.000000,0.000000,0.250000,0,0);}
.m43_c00131{transform:matrix(0.260127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260127,0.000000,0.000000,0.250000,0,0);}
.m3b_c00131{transform:matrix(0.260353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260353,0.000000,0.000000,0.250000,0,0);}
.m5_c00131{transform:matrix(0.260428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260428,0.000000,0.000000,0.250000,0,0);}
.m92_c00131{transform:matrix(0.261595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261595,0.000000,0.000000,0.250000,0,0);}
.m2c_c00131{transform:matrix(0.261958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261958,0.000000,0.000000,0.250000,0,0);}
.m64_c00131{transform:matrix(0.263064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263064,0.000000,0.000000,0.250000,0,0);}
.m8_c00131{transform:matrix(0.263413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263413,0.000000,0.000000,0.250000,0,0);}
.m56_c00131{transform:matrix(0.263499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263499,0.000000,0.000000,0.250000,0,0);}
.m1a_c00131{transform:matrix(0.264558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264558,0.000000,0.000000,0.250000,0,0);}
.m6d_c00131{transform:matrix(0.264852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264852,0.000000,0.000000,0.250000,0,0);}
.m20_c00131{transform:matrix(0.265665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265665,0.000000,0.000000,0.250000,0,0);}
.m38_c00131{transform:matrix(0.265937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265937,0.000000,0.000000,0.250000,0,0);}
.m79_c00131{transform:matrix(0.266754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266754,0.000000,0.000000,0.250000,0,0);}
.m2_c00131{transform:matrix(0.266979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266979,0.000000,0.000000,0.250000,0,0);}
.m66_c00131{transform:matrix(0.267754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267754,0.000000,0.000000,0.250000,0,0);}
.m4d_c00131{transform:matrix(0.267822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267822,0.000000,0.000000,0.250000,0,0);}
.m83_c00131{transform:matrix(0.268134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268134,0.000000,0.000000,0.250000,0,0);}
.m37_c00131{transform:matrix(0.270612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270612,0.000000,0.000000,0.250000,0,0);}
.m2e_c00131{transform:matrix(0.270686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270686,0.000000,0.000000,0.250000,0,0);}
.m24_c00131{transform:matrix(0.271183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271183,0.000000,0.000000,0.250000,0,0);}
.m90_c00131{transform:matrix(0.271376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271376,0.000000,0.000000,0.250000,0,0);}
.m5f_c00131{transform:matrix(0.271725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271725,0.000000,0.000000,0.250000,0,0);}
.m7c_c00131{transform:matrix(0.271747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271747,0.000000,0.000000,0.250000,0,0);}
.m8c_c00131{transform:matrix(0.271870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271870,0.000000,0.000000,0.250000,0,0);}
.m63_c00131{transform:matrix(0.272535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272535,0.000000,0.000000,0.250000,0,0);}
.m8e_c00131{transform:matrix(0.272741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272741,0.000000,0.000000,0.250000,0,0);}
.m2f_c00131{transform:matrix(0.272936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272936,0.000000,0.000000,0.250000,0,0);}
.m16_c00131{transform:matrix(0.273059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273059,0.000000,0.000000,0.250000,0,0);}
.m85_c00131{transform:matrix(0.273831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273831,0.000000,0.000000,0.250000,0,0);}
.m1f_c00131{transform:matrix(0.273859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273859,0.000000,0.000000,0.250000,0,0);}
.m6f_c00131{transform:matrix(0.274044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274044,0.000000,0.000000,0.250000,0,0);}
.m87_c00131{transform:matrix(0.274757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274757,0.000000,0.000000,0.250000,0,0);}
.m44_c00131{transform:matrix(0.275551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275551,0.000000,0.000000,0.250000,0,0);}
.m46_c00131{transform:matrix(0.275923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275923,0.000000,0.000000,0.250000,0,0);}
.m54_c00131{transform:matrix(0.276127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276127,0.000000,0.000000,0.250000,0,0);}
.m3d_c00131{transform:matrix(0.277183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277183,0.000000,0.000000,0.250000,0,0);}
.m7e_c00131{transform:matrix(0.277231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277231,0.000000,0.000000,0.250000,0,0);}
.m70_c00131{transform:matrix(0.277590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277590,0.000000,0.000000,0.250000,0,0);}
.m15_c00131{transform:matrix(0.277654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277654,0.000000,0.000000,0.250000,0,0);}
.m52_c00131{transform:matrix(0.277751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277751,0.000000,0.000000,0.250000,0,0);}
.m21_c00131{transform:matrix(0.278065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278065,0.000000,0.000000,0.250000,0,0);}
.m84_c00131{transform:matrix(0.278195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278195,0.000000,0.000000,0.250000,0,0);}
.m18_c00131{transform:matrix(0.280443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280443,0.000000,0.000000,0.250000,0,0);}
.m4_c00131{transform:matrix(0.280468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280468,0.000000,0.000000,0.250000,0,0);}
.m40_c00131{transform:matrix(0.280488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280488,0.000000,0.000000,0.250000,0,0);}
.m65_c00131{transform:matrix(0.280605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280605,0.000000,0.000000,0.250000,0,0);}
.m57_c00131{transform:matrix(0.280698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280698,0.000000,0.000000,0.250000,0,0);}
.m26_c00131{transform:matrix(0.282037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282037,0.000000,0.000000,0.250000,0,0);}
.m3c_c00131{transform:matrix(0.282922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282922,0.000000,0.000000,0.250000,0,0);}
.m2d_c00131{transform:matrix(0.282989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282989,0.000000,0.000000,0.250000,0,0);}
.m27_c00131{transform:matrix(0.283164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283164,0.000000,0.000000,0.250000,0,0);}
.m36_c00131{transform:matrix(0.283747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283747,0.000000,0.000000,0.250000,0,0);}
.m71_c00131{transform:matrix(0.283772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283772,0.000000,0.000000,0.250000,0,0);}
.m30_c00131{transform:matrix(0.284117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284117,0.000000,0.000000,0.250000,0,0);}
.m81_c00131{transform:matrix(0.284252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284252,0.000000,0.000000,0.250000,0,0);}
.m78_c00131{transform:matrix(0.284267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284267,0.000000,0.000000,0.250000,0,0);}
.m2a_c00131{transform:matrix(0.285240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285240,0.000000,0.000000,0.250000,0,0);}
.m31_c00131{transform:matrix(0.285567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285567,0.000000,0.000000,0.250000,0,0);}
.m23_c00131{transform:matrix(0.285913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285913,0.000000,0.000000,0.250000,0,0);}
.m5d_c00131{transform:matrix(0.285958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285958,0.000000,0.000000,0.250000,0,0);}
.m60_c00131{transform:matrix(0.286503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286503,0.000000,0.000000,0.250000,0,0);}
.m35_c00131{transform:matrix(0.286940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286940,0.000000,0.000000,0.250000,0,0);}
.m7f_c00131{transform:matrix(0.288260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288260,0.000000,0.000000,0.250000,0,0);}
.m4f_c00131{transform:matrix(0.289581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289581,0.000000,0.000000,0.250000,0,0);}
.m4c_c00131{transform:matrix(0.289929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289929,0.000000,0.000000,0.250000,0,0);}
.m7a_c00131{transform:matrix(0.290274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290274,0.000000,0.000000,0.250000,0,0);}
.m67_c00131{transform:matrix(0.290665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290665,0.000000,0.000000,0.250000,0,0);}
.m41_c00131{transform:matrix(0.290800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290800,0.000000,0.000000,0.250000,0,0);}
.m6e_c00131{transform:matrix(0.291328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291328,0.000000,0.000000,0.250000,0,0);}
.m88_c00131{transform:matrix(0.291636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291636,0.000000,0.000000,0.250000,0,0);}
.m9_c00131{transform:matrix(0.291665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291665,0.000000,0.000000,0.250000,0,0);}
.m72_c00131{transform:matrix(0.293013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293013,0.000000,0.000000,0.250000,0,0);}
.mf_c00131{transform:matrix(0.293261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293261,0.000000,0.000000,0.250000,0,0);}
.m69_c00131{transform:matrix(0.293681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293681,0.000000,0.000000,0.250000,0,0);}
.m62_c00131{transform:matrix(0.293712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293712,0.000000,0.000000,0.250000,0,0);}
.m28_c00131{transform:matrix(0.294159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294159,0.000000,0.000000,0.250000,0,0);}
.m48_c00131{transform:matrix(0.295132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295132,0.000000,0.000000,0.250000,0,0);}
.m29_c00131{transform:matrix(0.295761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295761,0.000000,0.000000,0.250000,0,0);}
.m6_c00131{transform:matrix(0.296594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296594,0.000000,0.000000,0.250000,0,0);}
.m1_c00131{transform:matrix(0.297124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297124,0.000000,0.000000,0.250000,0,0);}
.ma_c00131{transform:matrix(0.297493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297493,0.000000,0.000000,0.250000,0,0);}
.m73_c00131{transform:matrix(0.299125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299125,0.000000,0.000000,0.250000,0,0);}
.m22_c00131{transform:matrix(0.302022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302022,0.000000,0.000000,0.250000,0,0);}
.m42_c00131{transform:matrix(0.302609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302609,0.000000,0.000000,0.250000,0,0);}
.m11_c00131{transform:matrix(0.303523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303523,0.000000,0.000000,0.250000,0,0);}
.m33_c00131{transform:matrix(0.303647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303647,0.000000,0.000000,0.250000,0,0);}
.m2b_c00131{transform:matrix(0.304375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304375,0.000000,0.000000,0.250000,0,0);}
.m68_c00131{transform:matrix(0.307269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307269,0.000000,0.000000,0.250000,0,0);}
.m19_c00131{transform:matrix(0.307388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307388,0.000000,0.000000,0.250000,0,0);}
.m3e_c00131{transform:matrix(0.309304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309304,0.000000,0.000000,0.250000,0,0);}
.m1d_c00131{transform:matrix(0.309786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309786,0.000000,0.000000,0.250000,0,0);}
.m76_c00131{transform:matrix(0.310695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310695,0.000000,0.000000,0.250000,0,0);}
.m80_c00131{transform:matrix(0.310853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310853,0.000000,0.000000,0.250000,0,0);}
.m5c_c00131{transform:matrix(0.312561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312561,0.000000,0.000000,0.250000,0,0);}
.m4a_c00131{transform:matrix(0.313110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313110,0.000000,0.000000,0.250000,0,0);}
.m53_c00131{transform:matrix(0.315765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315765,0.000000,0.000000,0.250000,0,0);}
.m47_c00131{transform:matrix(0.316736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316736,0.000000,0.000000,0.250000,0,0);}
.m51_c00131{transform:matrix(0.318931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318931,0.000000,0.000000,0.250000,0,0);}
.m17_c00131{transform:matrix(0.319070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319070,0.000000,0.000000,0.250000,0,0);}
.m1b_c00131{transform:matrix(0.319160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319160,0.000000,0.000000,0.250000,0,0);}
.m59_c00131{transform:matrix(0.319585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319585,0.000000,0.000000,0.250000,0,0);}
.m12_c00131{transform:matrix(0.320652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320652,0.000000,0.000000,0.250000,0,0);}
.me_c00131{transform:matrix(0.320768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320768,0.000000,0.000000,0.250000,0,0);}
.m74_c00131{transform:matrix(0.321647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321647,0.000000,0.000000,0.250000,0,0);}
.m75_c00131{transform:matrix(0.323704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323704,0.000000,0.000000,0.250000,0,0);}
.m6b_c00131{transform:matrix(0.324898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324898,0.000000,0.000000,0.250000,0,0);}
.m49_c00131{transform:matrix(0.331929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331929,0.000000,0.000000,0.250000,0,0);}
.m4b_c00131{transform:matrix(0.333044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333044,0.000000,0.000000,0.250000,0,0);}
.m8b_c00131{transform:matrix(0.335123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335123,0.000000,0.000000,0.250000,0,0);}
.m45_c00131{transform:matrix(0.337450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337450,0.000000,0.000000,0.250000,0,0);}
.m91_c00131{transform:matrix(0.340364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340364,0.000000,0.000000,0.250000,0,0);}
.m7_c00131{transform:matrix(0.341257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341257,0.000000,0.000000,0.250000,0,0);}
.m77_c00131{transform:matrix(0.344877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344877,0.000000,0.000000,0.250000,0,0);}
.m61_c00131{transform:matrix(0.344908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344908,0.000000,0.000000,0.250000,0,0);}
.m86_c00131{transform:matrix(0.345235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345235,0.000000,0.000000,0.250000,0,0);}
.m5a_c00131{transform:matrix(0.347184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347184,0.000000,0.000000,0.250000,0,0);}
.m6a_c00131{transform:matrix(0.348045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348045,0.000000,0.000000,0.250000,0,0);}
.m55_c00131{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);}
.m14_c00131{transform:matrix(0.363891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363891,0.000000,0.000000,0.250000,0,0);}
.m58_c00131{transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);}
.m82_c00131{transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);}
.m25_c00131{transform:matrix(0.376256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376256,0.000000,0.000000,0.250000,0,0);}
.mc_c00131{transform:matrix(0.382045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382045,0.000000,0.000000,0.250000,0,0);}
.m8f_c00131{transform:matrix(0.404713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404713,0.000000,0.000000,0.250000,0,0);}
.v0_c00131{vertical-align:0.000000px;}
.ls3_c00131{letter-spacing:-2.855167px;}
.lsf_c00131{letter-spacing:-2.798064px;}
.lse_c00131{letter-spacing:-0.579191px;}
.ls0_c00131{letter-spacing:0.000000px;}
.ls8_c00131{letter-spacing:0.840235px;}
.ls11_c00131{letter-spacing:1.615209px;}
.ls5_c00131{letter-spacing:2.096508px;}
.ls7_c00131{letter-spacing:2.806221px;}
.lsd_c00131{letter-spacing:3.597510px;}
.ls9_c00131{letter-spacing:3.638298px;}
.ls1_c00131{letter-spacing:3.643200px;}
.ls6_c00131{letter-spacing:3.662771px;}
.ls10_c00131{letter-spacing:3.874869px;}
.lsb_c00131{letter-spacing:3.883027px;}
.ls2_c00131{letter-spacing:4.078810px;}
.lsa_c00131{letter-spacing:4.563900px;}
.ls4_c00131{letter-spacing:21.384000px;}
.ls12_c00131{letter-spacing:57.024198px;}
.lsc_c00131{letter-spacing:58.449798px;}
.sc__c00131{text-shadow:none;}
.sc0_c00131{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00131{-webkit-text-stroke:0px transparent;}
.sc0_c00131{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00131{word-spacing:0.000000px;}
.fc0_c00131{color:transparent;}
.fs4_c00131{font-size:21.384000px;}
.fsc_c00131{font-size:23.166000px;}
.fs11_c00131{font-size:27.720000px;}
.fs0_c00131{font-size:28.314000px;}
.fs3_c00131{font-size:32.868000px;}
.fsf_c00131{font-size:33.264000px;}
.fse_c00131{font-size:38.808000px;}
.fs7_c00131{font-size:39.600000px;}
.fs10_c00131{font-size:42.372000px;}
.fsb_c00131{font-size:46.332000px;}
.fsa_c00131{font-size:57.024198px;}
.fs8_c00131{font-size:58.449798px;}
.fsd_c00131{font-size:66.726198px;}
.fs1_c00131{font-size:72.864000px;}
.fs5_c00131{font-size:74.844000px;}
.fs9_c00131{font-size:78.804000px;}
.fs2_c00131{font-size:81.576198px;}
.fs6_c00131{font-size:91.278000px;}
.y0_c00131{bottom:0.000000px;}
.y1_c00131{bottom:76.500000px;}
.y27_c00131{bottom:78.676335px;}
.y26_c00131{bottom:88.299135px;}
.y28_c00131{bottom:94.357935px;}
.y25_c00131{bottom:113.603535px;}
.y24_c00131{bottom:142.828335px;}
.y23_c00131{bottom:149.599935px;}
.y22_c00131{bottom:182.027385px;}
.y21_c00131{bottom:207.331785px;}
.y20_c00131{bottom:228.364335px;}
.y1f_c00131{bottom:271.127385px;}
.y1e_c00131{bottom:276.834735px;}
.y1d_c00131{bottom:308.197935px;}
.y1c_c00131{bottom:339.204735px;}
.y1b_c00131{bottom:370.567935px;}
.y1a_c00131{bottom:402.287535px;}
.y19_c00131{bottom:433.645785px;}
.y18_c00131{bottom:465.008985px;}
.y17_c00131{bottom:476.775135px;}
.y16_c00131{bottom:496.733535px;}
.y15_c00131{bottom:528.096735px;}
.y14_c00131{bottom:559.459935px;}
.y13_c00131{bottom:591.892335px;}
.y12_c00131{bottom:623.611935px;}
.y11_c00131{bottom:641.075535px;}
.y10_c00131{bottom:655.326585px;}
.yf_c00131{bottom:669.231135px;}
.y2_c00131{bottom:669.587535px;}
.ye_c00131{bottom:716.632335px;}
.yd_c00131{bottom:741.936735px;}
.yc_c00131{bottom:748.703385px;}
.yb_c00131{bottom:779.715135px;}
.ya_c00131{bottom:811.429785px;}
.y9_c00131{bottom:843.505785px;}
.y8_c00131{bottom:875.225385px;}
.y7_c00131{bottom:906.588585px;}
.y6_c00131{bottom:920.493135px;}
.y5_c00131{bottom:928.685385px;}
.y4_c00131{bottom:939.020985px;}
.y3_c00131{bottom:1064.835135px;}
.h6_c00131{height:14.241744px;}
.he_c00131{height:22.736162px;}
.h13_c00131{height:28.911094px;}
.h2_c00131{height:29.530617px;}
.h5_c00131{height:34.280297px;}
.h11_c00131{height:34.693313px;}
.hc_c00131{height:37.978116px;}
.ha_c00131{height:38.927565px;}
.h10_c00131{height:40.475531px;}
.h9_c00131{height:41.301563px;}
.h12_c00131{height:44.192672px;}
.hd_c00131{height:48.322828px;}
.hf_c00131{height:69.593339px;}
.h3_c00131{height:71.512031px;}
.h7_c00131{height:73.455293px;}
.hb_c00131{height:77.341816px;}
.h4_c00131{height:80.062577px;}
.h8_c00131{height:89.584365px;}
.h1_c00131{height:1110.000000px;}
.h0_c00131{height:1263.000000px;}
.w1_c00131{width:775.500000px;}
.w0_c00131{width:892.500000px;}
.x0_c00131{left:0.000000px;}
.x2_c00131{left:48.996735px;}
.x1_c00131{left:58.500000px;}
.x2e_c00131{left:87.611685px;}
.x4_c00131{left:89.230335px;}
.x49_c00131{left:110.564835px;}
.x4b_c00131{left:111.935985px;}
.x41_c00131{left:121.934985px;}
.x1e_c00131{left:132.537885px;}
.x51_c00131{left:134.017935px;}
.x39_c00131{left:143.135835px;}
.x5_c00131{left:144.482235px;}
.x10_c00131{left:155.144535px;}
.x23_c00131{left:165.440535px;}
.x2f_c00131{left:167.237385px;}
.x3a_c00131{left:177.241335px;}
.x4e_c00131{left:178.325385px;}
.x27_c00131{left:187.423485px;}
.x54_c00131{left:189.180735px;}
.x53_c00131{left:190.462785px;}
.x4f_c00131{left:199.352985px;}
.x6_c00131{left:200.664735px;}
.x28_c00131{left:210.218235px;}
.x44_c00131{left:211.713135px;}
.x11_c00131{left:221.786385px;}
.x7_c00131{left:232.864485px;}
.x45_c00131{left:254.396985px;}
.x18_c00131{left:255.550335px;}
.x12_c00131{left:265.316685px;}
.x52_c00131{left:266.692785px;}
.x42_c00131{left:278.132235px;}
.x50_c00131{left:289.145985px;}
.x3d_c00131{left:290.195385px;}
.x19_c00131{left:298.942035px;}
.x1f_c00131{left:309.495435px;}
.x8_c00131{left:310.529985px;}
.x29_c00131{left:321.608085px;}
.x46_c00131{left:333.601935px;}
.x13_c00131{left:343.704885px;}
.x4c_c00131{left:345.358185px;}
.x9_c00131{left:354.881985px;}
.x2a_c00131{left:355.975935px;}
.x20_c00131{left:366.326385px;}
.x38_c00131{left:368.687535px;}
.x24_c00131{left:377.186685px;}
.x55_c00131{left:387.502485px;}
.x3e_c00131{left:388.843935px;}
.x21_c00131{left:400.619985px;}
.x30_c00131{left:422.078235px;}
.x56_c00131{left:431.715885px;}
.xa_c00131{left:432.794985px;}
.x4d_c00131{left:444.377985px;}
.x3f_c00131{left:454.906635px;}
.x47_c00131{left:467.251935px;}
.x1a_c00131{left:477.701385px;}
.x31_c00131{left:488.046885px;}
.x1b_c00131{left:498.724035px;}
.x48_c00131{left:499.788285px;}
.x57_c00131{left:509.232885px;}
.x2b_c00131{left:510.242685px;}
.x25_c00131{left:521.355435px;}
.x32_c00131{left:531.695985px;}
.xb_c00131{left:533.938335px;}
.x1c_c00131{left:543.080985px;}
.x14_c00131{left:553.802685px;}
.x22_c00131{left:555.154035px;}
.x3b_c00131{left:565.742085px;}
.x33_c00131{left:566.761785px;}
.x15_c00131{left:576.211335px;}
.x2c_c00131{left:586.566735px;}
.x26_c00131{left:587.804235px;}
.x43_c00131{left:589.541685px;}
.x34_c00131{left:597.308235px;}
.xc_c00131{left:599.184285px;}
.x1d_c00131{left:608.668485px;}
.x40_c00131{left:610.925685px;}
.x58_c00131{left:620.984085px;}
.x3_c00131{left:630.908835px;}
.x35_c00131{left:632.359185px;}
.x59_c00131{left:652.683885px;}
.x16_c00131{left:654.134235px;}
.x4a_c00131{left:664.633185px;}
.xd_c00131{left:666.227085px;}
.x2d_c00131{left:676.196385px;}
.x17_c00131{left:687.091335px;}
.xe_c00131{left:697.897185px;}
.x3c_c00131{left:699.426735px;}
.x5a_c00131{left:700.852335px;}
.xf_c00131{left:702.644235px;}
.x36_c00131{left:710.678085px;}
.x37_c00131{left:712.034385px;}
.x5b_c00131{left:755.782485px;}
@media print{
.v0_c00131{vertical-align:0.000000pt;}
.ls3_c00131{letter-spacing:-2.537926pt;}
.lsf_c00131{letter-spacing:-2.487168pt;}
.lse_c00131{letter-spacing:-0.514836pt;}
.ls0_c00131{letter-spacing:0.000000pt;}
.ls8_c00131{letter-spacing:0.746875pt;}
.ls11_c00131{letter-spacing:1.435741pt;}
.ls5_c00131{letter-spacing:1.863563pt;}
.ls7_c00131{letter-spacing:2.494419pt;}
.lsd_c00131{letter-spacing:3.197787pt;}
.ls9_c00131{letter-spacing:3.234043pt;}
.ls1_c00131{letter-spacing:3.238400pt;}
.ls6_c00131{letter-spacing:3.255797pt;}
.ls10_c00131{letter-spacing:3.444328pt;}
.lsb_c00131{letter-spacing:3.451580pt;}
.ls2_c00131{letter-spacing:3.625609pt;}
.lsa_c00131{letter-spacing:4.056800pt;}
.ls4_c00131{letter-spacing:19.008000pt;}
.ls12_c00131{letter-spacing:50.688176pt;}
.lsc_c00131{letter-spacing:51.955376pt;}
.ws0_c00131{word-spacing:0.000000pt;}
.fs4_c00131{font-size:19.008000pt;}
.fsc_c00131{font-size:20.592000pt;}
.fs11_c00131{font-size:24.640000pt;}
.fs0_c00131{font-size:25.168000pt;}
.fs3_c00131{font-size:29.216000pt;}
.fsf_c00131{font-size:29.568000pt;}
.fse_c00131{font-size:34.496000pt;}
.fs7_c00131{font-size:35.200000pt;}
.fs10_c00131{font-size:37.664000pt;}
.fsb_c00131{font-size:41.184000pt;}
.fsa_c00131{font-size:50.688176pt;}
.fs8_c00131{font-size:51.955376pt;}
.fsd_c00131{font-size:59.312176pt;}
.fs1_c00131{font-size:64.768000pt;}
.fs5_c00131{font-size:66.528000pt;}
.fs9_c00131{font-size:70.048000pt;}
.fs2_c00131{font-size:72.512176pt;}
.fs6_c00131{font-size:81.136000pt;}
.y0_c00131{bottom:0.000000pt;}
.y1_c00131{bottom:68.000000pt;}
.y27_c00131{bottom:69.934520pt;}
.y26_c00131{bottom:78.488120pt;}
.y28_c00131{bottom:83.873720pt;}
.y25_c00131{bottom:100.980920pt;}
.y24_c00131{bottom:126.958520pt;}
.y23_c00131{bottom:132.977720pt;}
.y22_c00131{bottom:161.802120pt;}
.y21_c00131{bottom:184.294920pt;}
.y20_c00131{bottom:202.990520pt;}
.y1f_c00131{bottom:241.002120pt;}
.y1e_c00131{bottom:246.075320pt;}
.y1d_c00131{bottom:273.953720pt;}
.y1c_c00131{bottom:301.515320pt;}
.y1b_c00131{bottom:329.393720pt;}
.y1a_c00131{bottom:357.588920pt;}
.y19_c00131{bottom:385.462920pt;}
.y18_c00131{bottom:413.341320pt;}
.y17_c00131{bottom:423.800120pt;}
.y16_c00131{bottom:441.540920pt;}
.y15_c00131{bottom:469.419320pt;}
.y14_c00131{bottom:497.297720pt;}
.y13_c00131{bottom:526.126520pt;}
.y12_c00131{bottom:554.321720pt;}
.y11_c00131{bottom:569.844920pt;}
.y10_c00131{bottom:582.512520pt;}
.yf_c00131{bottom:594.872120pt;}
.y2_c00131{bottom:595.188920pt;}
.ye_c00131{bottom:637.006520pt;}
.yd_c00131{bottom:659.499320pt;}
.yc_c00131{bottom:665.514120pt;}
.yb_c00131{bottom:693.080120pt;}
.ya_c00131{bottom:721.270920pt;}
.y9_c00131{bottom:749.782920pt;}
.y8_c00131{bottom:777.978120pt;}
.y7_c00131{bottom:805.856520pt;}
.y6_c00131{bottom:818.216120pt;}
.y5_c00131{bottom:825.498120pt;}
.y4_c00131{bottom:834.685320pt;}
.y3_c00131{bottom:946.520120pt;}
.h6_c00131{height:12.659328pt;}
.he_c00131{height:20.209922pt;}
.h13_c00131{height:25.698750pt;}
.h2_c00131{height:26.249438pt;}
.h5_c00131{height:30.471375pt;}
.h11_c00131{height:30.838500pt;}
.hc_c00131{height:33.758325pt;}
.ha_c00131{height:34.602280pt;}
.h10_c00131{height:35.978250pt;}
.h9_c00131{height:36.712500pt;}
.h12_c00131{height:39.282375pt;}
.hd_c00131{height:42.953625pt;}
.hf_c00131{height:61.860746pt;}
.h3_c00131{height:63.566250pt;}
.h7_c00131{height:65.293594pt;}
.hb_c00131{height:68.748281pt;}
.h4_c00131{height:71.166735pt;}
.h8_c00131{height:79.630547pt;}
.h1_c00131{height:986.666667pt;}
.h0_c00131{height:1122.666667pt;}
.w1_c00131{width:689.333333pt;}
.w0_c00131{width:793.333333pt;}
.x0_c00131{left:0.000000pt;}
.x2_c00131{left:43.552653pt;}
.x1_c00131{left:52.000000pt;}
.x2e_c00131{left:77.877053pt;}
.x4_c00131{left:79.315853pt;}
.x49_c00131{left:98.279853pt;}
.x4b_c00131{left:99.498653pt;}
.x41_c00131{left:108.386653pt;}
.x1e_c00131{left:117.811453pt;}
.x51_c00131{left:119.127053pt;}
.x39_c00131{left:127.231853pt;}
.x5_c00131{left:128.428653pt;}
.x10_c00131{left:137.906253pt;}
.x23_c00131{left:147.058253pt;}
.x2f_c00131{left:148.655453pt;}
.x3a_c00131{left:157.547853pt;}
.x4e_c00131{left:158.511453pt;}
.x27_c00131{left:166.598653pt;}
.x54_c00131{left:168.160653pt;}
.x53_c00131{left:169.300253pt;}
.x4f_c00131{left:177.202653pt;}
.x6_c00131{left:178.368653pt;}
.x28_c00131{left:186.860653pt;}
.x44_c00131{left:188.189453pt;}
.x11_c00131{left:197.143453pt;}
.x7_c00131{left:206.990653pt;}
.x45_c00131{left:226.130653pt;}
.x18_c00131{left:227.155853pt;}
.x12_c00131{left:235.837053pt;}
.x52_c00131{left:237.060253pt;}
.x42_c00131{left:247.228653pt;}
.x50_c00131{left:257.018653pt;}
.x3d_c00131{left:257.951453pt;}
.x19_c00131{left:265.726253pt;}
.x1f_c00131{left:275.107053pt;}
.x8_c00131{left:276.026653pt;}
.x29_c00131{left:285.873853pt;}
.x46_c00131{left:296.535053pt;}
.x13_c00131{left:305.515453pt;}
.x4c_c00131{left:306.985053pt;}
.x9_c00131{left:315.450653pt;}
.x2a_c00131{left:316.423053pt;}
.x20_c00131{left:325.623453pt;}
.x38_c00131{left:327.722253pt;}
.x24_c00131{left:335.277053pt;}
.x55_c00131{left:344.446653pt;}
.x3e_c00131{left:345.639053pt;}
.x21_c00131{left:356.106653pt;}
.x30_c00131{left:375.180653pt;}
.x56_c00131{left:383.747453pt;}
.xa_c00131{left:384.706653pt;}
.x4d_c00131{left:395.002653pt;}
.x3f_c00131{left:404.361453pt;}
.x47_c00131{left:415.335053pt;}
.x1a_c00131{left:424.623453pt;}
.x31_c00131{left:433.819453pt;}
.x1b_c00131{left:443.310253pt;}
.x48_c00131{left:444.256253pt;}
.x57_c00131{left:452.651453pt;}
.x2b_c00131{left:453.549053pt;}
.x25_c00131{left:463.427053pt;}
.x32_c00131{left:472.618653pt;}
.xb_c00131{left:474.611853pt;}
.x1c_c00131{left:482.738653pt;}
.x14_c00131{left:492.269053pt;}
.x22_c00131{left:493.470253pt;}
.x3b_c00131{left:502.881853pt;}
.x33_c00131{left:503.788253pt;}
.x15_c00131{left:512.187853pt;}
.x2c_c00131{left:521.392653pt;}
.x26_c00131{left:522.492653pt;}
.x43_c00131{left:524.037053pt;}
.x34_c00131{left:530.940653pt;}
.xc_c00131{left:532.608253pt;}
.x1d_c00131{left:541.038653pt;}
.x40_c00131{left:543.045053pt;}
.x58_c00131{left:551.985853pt;}
.x3_c00131{left:560.807853pt;}
.x35_c00131{left:562.097053pt;}
.x59_c00131{left:580.163453pt;}
.x16_c00131{left:581.452653pt;}
.x4a_c00131{left:590.785053pt;}
.xd_c00131{left:592.201853pt;}
.x2d_c00131{left:601.063453pt;}
.x17_c00131{left:610.747853pt;}
.xe_c00131{left:620.353053pt;}
.x3c_c00131{left:621.712653pt;}
.x5a_c00131{left:622.979853pt;}
.xf_c00131{left:624.572653pt;}
.x36_c00131{left:631.713853pt;}
.x37_c00131{left:632.919453pt;}
.x5b_c00131{left:671.806653pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_50c743919e3d89420e97a42a.woff2')format("woff");}.ff1_c00132{font-family:ff1_c00132;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00132;src:url('chunks/assets/font_536fd5cd7135f6485c327eae.woff2')format("woff");}.ff2_c00132{font-family:ff2_c00132;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00132;src:url('chunks/assets/font_1455314a889ea7337dc8bf0a.woff2')format("woff");}.ff3_c00132{font-family:ff3_c00132;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00132;src:url('chunks/assets/font_c43aa7891122557dee359b9f.woff2')format("woff");}.ff4_c00132{font-family:ff4_c00132;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00132;src:url('chunks/assets/font_b9c109855e60455b33048b3f.woff2')format("woff");}.ff5_c00132{font-family:ff5_c00132;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1f_c00132{transform:matrix(0.072369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072369,0.000000,0.000000,0.250000,0,0);}
.maa_c00132{transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);}
.m5c_c00132{transform:matrix(0.181911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181911,0.000000,0.000000,0.250000,0,0);}
.m4e_c00132{transform:matrix(0.196729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196729,0.000000,0.000000,0.250000,0,0);}
.m1b_c00132{transform:matrix(0.200187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200187,0.000000,0.000000,0.250000,0,0);}
.m20_c00132{transform:matrix(0.200658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200658,0.000000,0.000000,0.250000,0,0);}
.m0_c00132{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3_c00132{transform:matrix(0.254300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254300,0.000000,0.000000,0.250000,0,0);}
.m41_c00132{transform:matrix(0.256057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256057,0.000000,0.000000,0.250000,0,0);}
.m84_c00132{transform:matrix(0.256145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256145,0.000000,0.000000,0.250000,0,0);}
.m3f_c00132{transform:matrix(0.256165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256165,0.000000,0.000000,0.250000,0,0);}
.m79_c00132{transform:matrix(0.256347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256347,0.000000,0.000000,0.250000,0,0);}
.ma8_c00132{transform:matrix(0.256359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256359,0.000000,0.000000,0.250000,0,0);}
.m2e_c00132{transform:matrix(0.257917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257917,0.000000,0.000000,0.250000,0,0);}
.m85_c00132{transform:matrix(0.258152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258152,0.000000,0.000000,0.250000,0,0);}
.m7f_c00132{transform:matrix(0.258246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258246,0.000000,0.000000,0.250000,0,0);}
.m9e_c00132{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m70_c00132{transform:matrix(0.261021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261021,0.000000,0.000000,0.250000,0,0);}
.m9f_c00132{transform:matrix(0.261462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261462,0.000000,0.000000,0.250000,0,0);}
.m68_c00132{transform:matrix(0.262509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262509,0.000000,0.000000,0.250000,0,0);}
.md_c00132{transform:matrix(0.262609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262609,0.000000,0.000000,0.250000,0,0);}
.m17_c00132{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m44_c00132{transform:matrix(0.263305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263305,0.000000,0.000000,0.250000,0,0);}
.m77_c00132{transform:matrix(0.263574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263574,0.000000,0.000000,0.250000,0,0);}
.m50_c00132{transform:matrix(0.263765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263765,0.000000,0.000000,0.250000,0,0);}
.mc_c00132{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.ma4_c00132{transform:matrix(0.267205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267205,0.000000,0.000000,0.250000,0,0);}
.m19_c00132{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m6b_c00132{transform:matrix(0.268109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268109,0.000000,0.000000,0.250000,0,0);}
.m2_c00132{transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);}
.m40_c00132{transform:matrix(0.268918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268918,0.000000,0.000000,0.250000,0,0);}
.m8e_c00132{transform:matrix(0.270484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270484,0.000000,0.000000,0.250000,0,0);}
.m9b_c00132{transform:matrix(0.270719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270719,0.000000,0.000000,0.250000,0,0);}
.m22_c00132{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m62_c00132{transform:matrix(0.271185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271185,0.000000,0.000000,0.250000,0,0);}
.m92_c00132{transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);}
.m96_c00132{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m1c_c00132{transform:matrix(0.272544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272544,0.000000,0.000000,0.250000,0,0);}
.m7b_c00132{transform:matrix(0.272967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272967,0.000000,0.000000,0.250000,0,0);}
.mb7_c00132{transform:matrix(0.273008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273008,0.000000,0.000000,0.250000,0,0);}
.m8b_c00132{transform:matrix(0.274156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274156,0.000000,0.000000,0.250000,0,0);}
.m13_c00132{transform:matrix(0.274218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274218,0.000000,0.000000,0.250000,0,0);}
.m39_c00132{transform:matrix(0.274434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274434,0.000000,0.000000,0.250000,0,0);}
.m83_c00132{transform:matrix(0.274708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274708,0.000000,0.000000,0.250000,0,0);}
.mb4_c00132{transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);}
.m87_c00132{transform:matrix(0.274908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274908,0.000000,0.000000,0.250000,0,0);}
.m1_c00132{transform:matrix(0.275071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275071,0.000000,0.000000,0.250000,0,0);}
.m30_c00132{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m76_c00132{transform:matrix(0.275573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275573,0.000000,0.000000,0.250000,0,0);}
.m73_c00132{transform:matrix(0.275773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275773,0.000000,0.000000,0.250000,0,0);}
.m5b_c00132{transform:matrix(0.276131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276131,0.000000,0.000000,0.250000,0,0);}
.m8d_c00132{transform:matrix(0.276729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276729,0.000000,0.000000,0.250000,0,0);}
.m1e_c00132{transform:matrix(0.276794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276794,0.000000,0.000000,0.250000,0,0);}
.m4d_c00132{transform:matrix(0.277924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277924,0.000000,0.000000,0.250000,0,0);}
.m80_c00132{transform:matrix(0.278374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278374,0.000000,0.000000,0.250000,0,0);}
.m34_c00132{transform:matrix(0.278756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278756,0.000000,0.000000,0.250000,0,0);}
.m2d_c00132{transform:matrix(0.278910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278910,0.000000,0.000000,0.250000,0,0);}
.m4f_c00132{transform:matrix(0.279021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279021,0.000000,0.000000,0.250000,0,0);}
.m36_c00132{transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);}
.m56_c00132{transform:matrix(0.279410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279410,0.000000,0.000000,0.250000,0,0);}
.ma7_c00132{transform:matrix(0.279826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279826,0.000000,0.000000,0.250000,0,0);}
.ma_c00132{transform:matrix(0.280163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280163,0.000000,0.000000,0.250000,0,0);}
.mb0_c00132{transform:matrix(0.280329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280329,0.000000,0.000000,0.250000,0,0);}
.m4c_c00132{transform:matrix(0.281097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281097,0.000000,0.000000,0.250000,0,0);}
.m5f_c00132{transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);}
.mb_c00132{transform:matrix(0.282727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282727,0.000000,0.000000,0.250000,0,0);}
.m16_c00132{transform:matrix(0.283223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283223,0.000000,0.000000,0.250000,0,0);}
.m25_c00132{transform:matrix(0.283762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283762,0.000000,0.000000,0.250000,0,0);}
.m7e_c00132{transform:matrix(0.283777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283777,0.000000,0.000000,0.250000,0,0);}
.m97_c00132{transform:matrix(0.284362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284362,0.000000,0.000000,0.250000,0,0);}
.m7c_c00132{transform:matrix(0.284959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284959,0.000000,0.000000,0.250000,0,0);}
.m94_c00132{transform:matrix(0.284987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284987,0.000000,0.000000,0.250000,0,0);}
.m90_c00132{transform:matrix(0.285021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285021,0.000000,0.000000,0.250000,0,0);}
.mb6_c00132{transform:matrix(0.286238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286238,0.000000,0.000000,0.250000,0,0);}
.m9c_c00132{transform:matrix(0.286401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286401,0.000000,0.000000,0.250000,0,0);}
.m21_c00132{transform:matrix(0.286708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286708,0.000000,0.000000,0.250000,0,0);}
.m3b_c00132{transform:matrix(0.286926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286926,0.000000,0.000000,0.250000,0,0);}
.m63_c00132{transform:matrix(0.287009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287009,0.000000,0.000000,0.250000,0,0);}
.m1a_c00132{transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);}
.m7_c00132{transform:matrix(0.287072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287072,0.000000,0.000000,0.250000,0,0);}
.m52_c00132{transform:matrix(0.287383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287383,0.000000,0.000000,0.250000,0,0);}
.m14_c00132{transform:matrix(0.287771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287771,0.000000,0.000000,0.250000,0,0);}
.m9d_c00132{transform:matrix(0.288073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288073,0.000000,0.000000,0.250000,0,0);}
.m48_c00132{transform:matrix(0.288702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288702,0.000000,0.000000,0.250000,0,0);}
.m69_c00132{transform:matrix(0.289472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289472,0.000000,0.000000,0.250000,0,0);}
.m32_c00132{transform:matrix(0.289652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289652,0.000000,0.000000,0.250000,0,0);}
.m75_c00132{transform:matrix(0.290210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290210,0.000000,0.000000,0.250000,0,0);}
.mab_c00132{transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);}
.m24_c00132{transform:matrix(0.291008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291008,0.000000,0.000000,0.250000,0,0);}
.m55_c00132{transform:matrix(0.291027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291027,0.000000,0.000000,0.250000,0,0);}
.m89_c00132{transform:matrix(0.291146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291146,0.000000,0.000000,0.250000,0,0);}
.m11_c00132{transform:matrix(0.292127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292127,0.000000,0.000000,0.250000,0,0);}
.m64_c00132{transform:matrix(0.293332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293332,0.000000,0.000000,0.250000,0,0);}
.m10_c00132{transform:matrix(0.293350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293350,0.000000,0.000000,0.250000,0,0);}
.mae_c00132{transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);}
.m99_c00132{transform:matrix(0.293699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293699,0.000000,0.000000,0.250000,0,0);}
.m91_c00132{transform:matrix(0.293905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293905,0.000000,0.000000,0.250000,0,0);}
.m6a_c00132{transform:matrix(0.294427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294427,0.000000,0.000000,0.250000,0,0);}
.m54_c00132{transform:matrix(0.294443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294443,0.000000,0.000000,0.250000,0,0);}
.ma2_c00132{transform:matrix(0.294568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294568,0.000000,0.000000,0.250000,0,0);}
.m8_c00132{transform:matrix(0.294945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294945,0.000000,0.000000,0.250000,0,0);}
.m7d_c00132{transform:matrix(0.295051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295051,0.000000,0.000000,0.250000,0,0);}
.m58_c00132{transform:matrix(0.295304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295304,0.000000,0.000000,0.250000,0,0);}
.m26_c00132{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m59_c00132{transform:matrix(0.298017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298017,0.000000,0.000000,0.250000,0,0);}
.m86_c00132{transform:matrix(0.298068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298068,0.000000,0.000000,0.250000,0,0);}
.m98_c00132{transform:matrix(0.298105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298105,0.000000,0.000000,0.250000,0,0);}
.m37_c00132{transform:matrix(0.298383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298383,0.000000,0.000000,0.250000,0,0);}
.m3c_c00132{transform:matrix(0.300970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300970,0.000000,0.000000,0.250000,0,0);}
.m93_c00132{transform:matrix(0.302177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302177,0.000000,0.000000,0.250000,0,0);}
.m82_c00132{transform:matrix(0.302588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302588,0.000000,0.000000,0.250000,0,0);}
.m6_c00132{transform:matrix(0.302633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302633,0.000000,0.000000,0.250000,0,0);}
.m29_c00132{transform:matrix(0.302968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302968,0.000000,0.000000,0.250000,0,0);}
.m57_c00132{transform:matrix(0.303715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303715,0.000000,0.000000,0.250000,0,0);}
.m60_c00132{transform:matrix(0.304511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304511,0.000000,0.000000,0.250000,0,0);}
.m5d_c00132{transform:matrix(0.305775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305775,0.000000,0.000000,0.250000,0,0);}
.m31_c00132{transform:matrix(0.306092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306092,0.000000,0.000000,0.250000,0,0);}
.m5a_c00132{transform:matrix(0.306980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306980,0.000000,0.000000,0.250000,0,0);}
.m4b_c00132{transform:matrix(0.307978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307978,0.000000,0.000000,0.250000,0,0);}
.m28_c00132{transform:matrix(0.308236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308236,0.000000,0.000000,0.250000,0,0);}
.mf_c00132{transform:matrix(0.308319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308319,0.000000,0.000000,0.250000,0,0);}
.m43_c00132{transform:matrix(0.308419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308419,0.000000,0.000000,0.250000,0,0);}
.mb3_c00132{transform:matrix(0.310621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310621,0.000000,0.000000,0.250000,0,0);}
.m2c_c00132{transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);}
.m61_c00132{transform:matrix(0.311140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311140,0.000000,0.000000,0.250000,0,0);}
.m6d_c00132{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.ma9_c00132{transform:matrix(0.312744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312744,0.000000,0.000000,0.250000,0,0);}
.m67_c00132{transform:matrix(0.313924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313924,0.000000,0.000000,0.250000,0,0);}
.mb8_c00132{transform:matrix(0.314940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314940,0.000000,0.000000,0.250000,0,0);}
.mb5_c00132{transform:matrix(0.315554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315554,0.000000,0.000000,0.250000,0,0);}
.ma0_c00132{transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);}
.m9_c00132{transform:matrix(0.316381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316381,0.000000,0.000000,0.250000,0,0);}
.m4_c00132{transform:matrix(0.317232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317232,0.000000,0.000000,0.250000,0,0);}
.m46_c00132{transform:matrix(0.317237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317237,0.000000,0.000000,0.250000,0,0);}
.m18_c00132{transform:matrix(0.317755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317755,0.000000,0.000000,0.250000,0,0);}
.m35_c00132{transform:matrix(0.318280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318280,0.000000,0.000000,0.250000,0,0);}
.ma1_c00132{transform:matrix(0.318994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318994,0.000000,0.000000,0.250000,0,0);}
.m38_c00132{transform:matrix(0.320152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320152,0.000000,0.000000,0.250000,0,0);}
.maf_c00132{transform:matrix(0.320460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320460,0.000000,0.000000,0.250000,0,0);}
.m74_c00132{transform:matrix(0.321718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321718,0.000000,0.000000,0.250000,0,0);}
.ma3_c00132{transform:matrix(0.323100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323100,0.000000,0.000000,0.250000,0,0);}
.m8c_c00132{transform:matrix(0.323184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323184,0.000000,0.000000,0.250000,0,0);}
.ma5_c00132{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.m1d_c00132{transform:matrix(0.323961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323961,0.000000,0.000000,0.250000,0,0);}
.m72_c00132{transform:matrix(0.324926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324926,0.000000,0.000000,0.250000,0,0);}
.mad_c00132{transform:matrix(0.325906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325906,0.000000,0.000000,0.250000,0,0);}
.m33_c00132{transform:matrix(0.326100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326100,0.000000,0.000000,0.250000,0,0);}
.m8a_c00132{transform:matrix(0.327036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327036,0.000000,0.000000,0.250000,0,0);}
.m53_c00132{transform:matrix(0.327327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327327,0.000000,0.000000,0.250000,0,0);}
.m4a_c00132{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.m7a_c00132{transform:matrix(0.328766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328766,0.000000,0.000000,0.250000,0,0);}
.m3e_c00132{transform:matrix(0.329023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329023,0.000000,0.000000,0.250000,0,0);}
.m66_c00132{transform:matrix(0.329080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329080,0.000000,0.000000,0.250000,0,0);}
.m49_c00132{transform:matrix(0.329266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329266,0.000000,0.000000,0.250000,0,0);}
.m51_c00132{transform:matrix(0.329274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329274,0.000000,0.000000,0.250000,0,0);}
.m2f_c00132{transform:matrix(0.336600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336600,0.000000,0.000000,0.250000,0,0);}
.m9a_c00132{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);}
.m5_c00132{transform:matrix(0.337247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337247,0.000000,0.000000,0.250000,0,0);}
.m3a_c00132{transform:matrix(0.339419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339419,0.000000,0.000000,0.250000,0,0);}
.m15_c00132{transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);}
.mb2_c00132{transform:matrix(0.342665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342665,0.000000,0.000000,0.250000,0,0);}
.m6f_c00132{transform:matrix(0.342979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342979,0.000000,0.000000,0.250000,0,0);}
.m88_c00132{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.m2b_c00132{transform:matrix(0.344256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344256,0.000000,0.000000,0.250000,0,0);}
.m81_c00132{transform:matrix(0.345714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345714,0.000000,0.000000,0.250000,0,0);}
.m2a_c00132{transform:matrix(0.346086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346086,0.000000,0.000000,0.250000,0,0);}
.m95_c00132{transform:matrix(0.347514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347514,0.000000,0.000000,0.250000,0,0);}
.m42_c00132{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.mac_c00132{transform:matrix(0.350792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350792,0.000000,0.000000,0.250000,0,0);}
.m45_c00132{transform:matrix(0.352122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352122,0.000000,0.000000,0.250000,0,0);}
.m6c_c00132{transform:matrix(0.353226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353226,0.000000,0.000000,0.250000,0,0);}
.m47_c00132{transform:matrix(0.354899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354899,0.000000,0.000000,0.250000,0,0);}
.m27_c00132{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.me_c00132{transform:matrix(0.355345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355345,0.000000,0.000000,0.250000,0,0);}
.m12_c00132{transform:matrix(0.355739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355739,0.000000,0.000000,0.250000,0,0);}
.mb1_c00132{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m78_c00132{transform:matrix(0.363341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363341,0.000000,0.000000,0.250000,0,0);}
.m3d_c00132{transform:matrix(0.365181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365181,0.000000,0.000000,0.250000,0,0);}
.m23_c00132{transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);}
.m6e_c00132{transform:matrix(0.369365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369365,0.000000,0.000000,0.250000,0,0);}
.ma6_c00132{transform:matrix(0.372071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372071,0.000000,0.000000,0.250000,0,0);}
.m8f_c00132{transform:matrix(0.384899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384899,0.000000,0.000000,0.250000,0,0);}
.m65_c00132{transform:matrix(0.388143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388143,0.000000,0.000000,0.250000,0,0);}
.m5e_c00132{transform:matrix(0.402082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402082,0.000000,0.000000,0.250000,0,0);}
.m71_c00132{transform:matrix(0.424628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424628,0.000000,0.000000,0.250000,0,0);}
.v0_c00132{vertical-align:0.000000px;}
.lsc_c00132{letter-spacing:-2.744280px;}
.ls14_c00132{letter-spacing:-1.897474px;}
.ls8_c00132{letter-spacing:-1.427026px;}
.lsd_c00132{letter-spacing:-1.372140px;}
.ls9_c00132{letter-spacing:-0.972259px;}
.lsf_c00132{letter-spacing:-0.940896px;}
.ls3_c00132{letter-spacing:0.000000px;}
.ls1_c00132{letter-spacing:0.493970px;}
.lsb_c00132{letter-spacing:1.176120px;}
.ls2_c00132{letter-spacing:1.246687px;}
.ls0_c00132{letter-spacing:3.042230px;}
.ls11_c00132{letter-spacing:3.112798px;}
.lsa_c00132{letter-spacing:3.128400px;}
.ls10_c00132{letter-spacing:3.623400px;}
.ls6_c00132{letter-spacing:3.700858px;}
.ls4_c00132{letter-spacing:3.771900px;}
.ls5_c00132{letter-spacing:3.920400px;}
.ls12_c00132{letter-spacing:4.474810px;}
.ls13_c00132{letter-spacing:31.363200px;}
.ls7_c00132{letter-spacing:54.172998px;}
.lse_c00132{letter-spacing:58.449798px;}
.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;}
}
.ws1_c00132{word-spacing:-22.644230px;}
.ws2_c00132{word-spacing:-20.095970px;}
.ws0_c00132{word-spacing:-19.602000px;}
.ws3_c00132{word-spacing:0.000000px;}
._7_c00132{margin-left:-5.253336px;}
._1_c00132{width:4.626072px;}
._2_c00132{width:6.899904px;}
._0_c00132{width:9.957816px;}
._3_c00132{width:20.856528px;}
._4_c00132{width:22.267476px;}
._5_c00132{width:31.120848px;}
._6_c00132{width:35.158147px;}
.fc0_c00132{color:transparent;}
.fs6_c00132{font-size:22.176000px;}
.fsb_c00132{font-size:31.363200px;}
.fs3_c00132{font-size:33.264000px;}
.fs9_c00132{font-size:38.808000px;}
.fsc_c00132{font-size:39.204000px;}
.fsd_c00132{font-size:50.688000px;}
.fs2_c00132{font-size:54.172998px;}
.fs8_c00132{font-size:56.628000px;}
.fs5_c00132{font-size:58.449798px;}
.fs4_c00132{font-size:62.568000px;}
.fs7_c00132{font-size:72.468000px;}
.fs0_c00132{font-size:75.438000px;}
.fs1_c00132{font-size:78.408000px;}
.fsa_c00132{font-size:89.496198px;}
.y0_c00132{bottom:0.000000px;}
.y1_c00132{bottom:76.500000px;}
.y23_c00132{bottom:86.160735px;}
.y22_c00132{bottom:93.288735px;}
.y21_c00132{bottom:97.921935px;}
.y20_c00132{bottom:151.738335px;}
.y1f_c00132{bottom:182.383785px;}
.y1e_c00132{bottom:200.203785px;}
.y1d_c00132{bottom:216.246735px;}
.y1c_c00132{bottom:248.322735px;}
.y1b_c00132{bottom:275.409135px;}
.y1a_c00132{bottom:290.734335px;}
.y19_c00132{bottom:311.761935px;}
.y18_c00132{bottom:344.550735px;}
.y17_c00132{bottom:376.983135px;}
.y16_c00132{bottom:409.059135px;}
.y15_c00132{bottom:441.842985px;}
.y14_c00132{bottom:474.280335px;}
.y11_c00132{bottom:506.707785px;}
.y13_c00132{bottom:529.160985px;}
.y10_c00132{bottom:538.432335px;}
.y12_c00132{bottom:538.788735px;}
.yf_c00132{bottom:570.859785px;}
.ye_c00132{bottom:603.292185px;}
.yd_c00132{bottom:635.373135px;}
.yc_c00132{bottom:667.087785px;}
.yb_c00132{bottom:699.168735px;}
.ya_c00132{bottom:731.957535px;}
.y8_c00132{bottom:796.104585px;}
.y9_c00132{bottom:800.381385px;}
.y7_c00132{bottom:830.675385px;}
.y5_c00132{bottom:863.816625px;}
.y6_c00132{bottom:863.825535px;}
.y4_c00132{bottom:896.257935px;}
.y3_c00132{bottom:928.685385px;}
.y2_c00132{bottom:1090.134585px;}
.he_c00132{height:20.887891px;}
.h9_c00132{height:23.128875px;}
.h5_c00132{height:34.693313px;}
.h4_c00132{height:36.079217px;}
.hf_c00132{height:38.476582px;}
.h8_c00132{height:38.927565px;}
.hc_c00132{height:40.475531px;}
.h10_c00132{height:52.866000px;}
.hb_c00132{height:59.061234px;}
.h6_c00132{height:61.376520px;}
.ha_c00132{height:71.123379px;}
.h2_c00132{height:74.038271px;}
.h3_c00132{height:76.953164px;}
.h7_c00132{height:79.020563px;}
.hd_c00132{height:87.835624px;}
.h1_c00132{height:1110.000000px;}
.h0_c00132{height:1263.000000px;}
.w1_c00132{width:733.500000px;}
.w0_c00132{width:892.500000px;}
.x0_c00132{left:0.000000px;}
.x37_c00132{left:75.887985px;}
.x1c_c00132{left:77.027673px;}
.x53_c00132{left:78.214485px;}
.x1_c00132{left:79.500000px;}
.x4b_c00132{left:88.485735px;}
.x1d_c00132{left:99.410385px;}
.x4_c00132{left:110.686485px;}
.x5_c00132{left:120.071685px;}
.x3b_c00132{left:121.338885px;}
.x66_c00132{left:123.086235px;}
.x2f_c00132{left:131.719035px;}
.x1e_c00132{left:132.748635px;}
.x2a_c00132{left:144.480135px;}
.x2d_c00132{left:155.008785px;}
.x67_c00132{left:156.196785px;}
.x6_c00132{left:165.735435px;}
.x2b_c00132{left:176.536335px;}
.x10_c00132{left:177.640185px;}
.x11_c00132{left:187.787685px;}
.x1f_c00132{left:199.024185px;}
.x40_c00132{left:200.439885px;}
.x7_c00132{left:209.740935px;}
.x5d_c00132{left:210.765585px;}
.x8_c00132{left:221.111085px;}
.x69_c00132{left:223.561335px;}
.x12_c00132{left:232.535685px;}
.x59_c00132{left:233.956335px;}
.x4c_c00132{left:244.232535px;}
.x41_c00132{left:254.766135px;}
.x30_c00132{left:256.023435px;}
.x13_c00132{left:265.908585px;}
.x38_c00132{left:267.096585px;}
.x9_c00132{left:275.823435px;}
.x39_c00132{left:277.333185px;}
.x57_c00132{left:278.842935px;}
.x60_c00132{left:288.802335px;}
.x61_c00132{left:291.594135px;}
.x20_c00132{left:299.538885px;}
.x4d_c00132{left:300.608085px;}
.x44_c00132{left:310.958535px;}
.x54_c00132{left:312.002985px;}
.x21_c00132{left:321.279285px;}
.x42_c00132{left:322.685085px;}
.x14_c00132{left:332.139585px;}
.xa_c00132{left:344.059185px;}
.x68_c00132{left:345.167985px;}
.x22_c00132{left:354.815535px;}
.x63_c00132{left:355.835235px;}
.x23_c00132{left:366.155985px;}
.x3c_c00132{left:367.235085px;}
.x5e_c00132{left:377.229135px;}
.x31_c00132{left:378.293385px;}
.x58_c00132{left:389.990235px;}
.x24_c00132{left:398.825985px;}
.x32_c00132{left:400.023885px;}
.x15_c00132{left:411.794985px;}
.x4e_c00132{left:413.646285px;}
.x50_c00132{left:416.918235px;}
.x3a_c00132{left:422.467185px;}
.xb_c00132{left:432.352335px;}
.x5a_c00132{left:433.421535px;}
.xc_c00132{left:442.301835px;}
.x3d_c00132{left:444.237285px;}
.x45_c00132{left:447.063735px;}
.x3e_c00132{left:455.117385px;}
.x46_c00132{left:457.726035px;}
.x2c_c00132{left:465.834135px;}
.x64_c00132{left:476.466735px;}
.x5b_c00132{left:477.733935px;}
.xd_c00132{left:487.718085px;}
.x33_c00132{left:488.757585px;}
.x47_c00132{left:491.777085px;}
.xe_c00132{left:499.112985px;}
.x6a_c00132{left:500.172285px;}
.x25_c00132{left:510.334635px;}
.x55_c00132{left:513.794685px;}
.x16_c00132{left:522.259185px;}
.x26_c00132{left:532.624485px;}
.x56_c00132{left:533.837235px;}
.x27_c00132{left:543.133335px;}
.x34_c00132{left:554.721285px;}
.x5f_c00132{left:558.235785px;}
.x17_c00132{left:565.289535px;}
.x48_c00132{left:566.472585px;}
.x18_c00132{left:577.491285px;}
.x28_c00132{left:587.515035px;}
.x51_c00132{left:591.024585px;}
.x49_c00132{left:599.479185px;}
.x35_c00132{left:609.606885px;}
.x29_c00132{left:619.798935px;}
.x19_c00132{left:620.833485px;}
.xf_c00132{left:632.233335px;}
.x52_c00132{left:634.450935px;}
.x1a_c00132{left:643.747035px;}
.x2_c00132{left:654.849885px;}
.x3_c00132{left:665.754735px;}
.x1b_c00132{left:676.966485px;}
.x4a_c00132{left:677.981235px;}
.x36_c00132{left:687.613935px;}
.x62_c00132{left:688.668285px;}
.x2e_c00132{left:692.727285px;}
.x43_c00132{left:694.766685px;}
.x3f_c00132{left:697.444635px;}
.x5c_c00132{left:699.375135px;}
.x65_c00132{left:702.483735px;}
.x4f_c00132{left:710.081985px;}
@media print{
.v0_c00132{vertical-align:0.000000pt;}
.lsc_c00132{letter-spacing:-2.439360pt;}
.ls14_c00132{letter-spacing:-1.686643pt;}
.ls8_c00132{letter-spacing:-1.268467pt;}
.lsd_c00132{letter-spacing:-1.219680pt;}
.ls9_c00132{letter-spacing:-0.864230pt;}
.lsf_c00132{letter-spacing:-0.836352pt;}
.ls3_c00132{letter-spacing:0.000000pt;}
.ls1_c00132{letter-spacing:0.439085pt;}
.lsb_c00132{letter-spacing:1.045440pt;}
.ls2_c00132{letter-spacing:1.108166pt;}
.ls0_c00132{letter-spacing:2.704205pt;}
.ls11_c00132{letter-spacing:2.766931pt;}
.lsa_c00132{letter-spacing:2.780800pt;}
.ls10_c00132{letter-spacing:3.220800pt;}
.ls6_c00132{letter-spacing:3.289651pt;}
.ls4_c00132{letter-spacing:3.352800pt;}
.ls5_c00132{letter-spacing:3.484800pt;}
.ls12_c00132{letter-spacing:3.977609pt;}
.ls13_c00132{letter-spacing:27.878400pt;}
.ls7_c00132{letter-spacing:48.153776pt;}
.lse_c00132{letter-spacing:51.955376pt;}
.ws1_c00132{word-spacing:-20.128205pt;}
.ws2_c00132{word-spacing:-17.863085pt;}
.ws0_c00132{word-spacing:-17.424000pt;}
.ws3_c00132{word-spacing:0.000000pt;}
._7_c00132{margin-left:-4.669632pt;}
._1_c00132{width:4.112064pt;}
._2_c00132{width:6.133248pt;}
._0_c00132{width:8.851392pt;}
._3_c00132{width:18.539136pt;}
._4_c00132{width:19.793312pt;}
._5_c00132{width:27.662976pt;}
._6_c00132{width:31.251686pt;}
.fs6_c00132{font-size:19.712000pt;}
.fsb_c00132{font-size:27.878400pt;}
.fs3_c00132{font-size:29.568000pt;}
.fs9_c00132{font-size:34.496000pt;}
.fsc_c00132{font-size:34.848000pt;}
.fsd_c00132{font-size:45.056000pt;}
.fs2_c00132{font-size:48.153776pt;}
.fs8_c00132{font-size:50.336000pt;}
.fs5_c00132{font-size:51.955376pt;}
.fs4_c00132{font-size:55.616000pt;}
.fs7_c00132{font-size:64.416000pt;}
.fs0_c00132{font-size:67.056000pt;}
.fs1_c00132{font-size:69.696000pt;}
.fsa_c00132{font-size:79.552176pt;}
.y0_c00132{bottom:0.000000pt;}
.y1_c00132{bottom:68.000000pt;}
.y23_c00132{bottom:76.587320pt;}
.y22_c00132{bottom:82.923320pt;}
.y21_c00132{bottom:87.041720pt;}
.y20_c00132{bottom:134.878520pt;}
.y1f_c00132{bottom:162.118920pt;}
.y1e_c00132{bottom:177.958920pt;}
.y1d_c00132{bottom:192.219320pt;}
.y1c_c00132{bottom:220.731320pt;}
.y1b_c00132{bottom:244.808120pt;}
.y1a_c00132{bottom:258.430520pt;}
.y19_c00132{bottom:277.121720pt;}
.y18_c00132{bottom:306.267320pt;}
.y17_c00132{bottom:335.096120pt;}
.y16_c00132{bottom:363.608120pt;}
.y15_c00132{bottom:392.749320pt;}
.y14_c00132{bottom:421.582520pt;}
.y11_c00132{bottom:450.406920pt;}
.y13_c00132{bottom:470.365320pt;}
.y10_c00132{bottom:478.606520pt;}
.y12_c00132{bottom:478.923320pt;}
.yf_c00132{bottom:507.430920pt;}
.ye_c00132{bottom:536.259720pt;}
.yd_c00132{bottom:564.776120pt;}
.yc_c00132{bottom:592.966920pt;}
.yb_c00132{bottom:621.483320pt;}
.ya_c00132{bottom:650.628920pt;}
.y8_c00132{bottom:707.648520pt;}
.y9_c00132{bottom:711.450120pt;}
.y7_c00132{bottom:738.378120pt;}
.y5_c00132{bottom:767.837000pt;}
.y6_c00132{bottom:767.844920pt;}
.y4_c00132{bottom:796.673720pt;}
.y3_c00132{bottom:825.498120pt;}
.y2_c00132{bottom:969.008520pt;}
.he_c00132{height:18.567014pt;}
.h9_c00132{height:20.559000pt;}
.h5_c00132{height:30.838500pt;}
.h4_c00132{height:32.070415pt;}
.hf_c00132{height:34.201406pt;}
.h8_c00132{height:34.602280pt;}
.hc_c00132{height:35.978250pt;}
.h10_c00132{height:46.992000pt;}
.hb_c00132{height:52.498875pt;}
.h6_c00132{height:54.556906pt;}
.ha_c00132{height:63.220781pt;}
.h2_c00132{height:65.811797pt;}
.h3_c00132{height:68.402813pt;}
.h7_c00132{height:70.240500pt;}
.hd_c00132{height:78.076110pt;}
.h1_c00132{height:986.666667pt;}
.h0_c00132{height:1122.666667pt;}
.w1_c00132{width:652.000000pt;}
.w0_c00132{width:793.333333pt;}
.x0_c00132{left:0.000000pt;}
.x37_c00132{left:67.455987pt;}
.x1c_c00132{left:68.469043pt;}
.x53_c00132{left:69.523987pt;}
.x1_c00132{left:70.666667pt;}
.x4b_c00132{left:78.653987pt;}
.x1d_c00132{left:88.364787pt;}
.x4_c00132{left:98.387987pt;}
.x5_c00132{left:106.730387pt;}
.x3b_c00132{left:107.856787pt;}
.x66_c00132{left:109.409987pt;}
.x2f_c00132{left:117.083587pt;}
.x1e_c00132{left:117.998787pt;}
.x2a_c00132{left:128.426787pt;}
.x2d_c00132{left:137.785587pt;}
.x67_c00132{left:138.841587pt;}
.x6_c00132{left:147.320387pt;}
.x2b_c00132{left:156.921187pt;}
.x10_c00132{left:157.902387pt;}
.x11_c00132{left:166.922387pt;}
.x1f_c00132{left:176.910387pt;}
.x40_c00132{left:178.168787pt;}
.x7_c00132{left:186.436387pt;}
.x5d_c00132{left:187.347187pt;}
.x8_c00132{left:196.543187pt;}
.x69_c00132{left:198.721187pt;}
.x12_c00132{left:206.698387pt;}
.x59_c00132{left:207.961187pt;}
.x4c_c00132{left:217.095587pt;}
.x41_c00132{left:226.458787pt;}
.x30_c00132{left:227.576387pt;}
.x13_c00132{left:236.363187pt;}
.x38_c00132{left:237.419187pt;}
.x9_c00132{left:245.176387pt;}
.x39_c00132{left:246.518387pt;}
.x57_c00132{left:247.860387pt;}
.x60_c00132{left:256.713187pt;}
.x61_c00132{left:259.194787pt;}
.x20_c00132{left:266.256787pt;}
.x4d_c00132{left:267.207187pt;}
.x44_c00132{left:276.407587pt;}
.x54_c00132{left:277.335987pt;}
.x21_c00132{left:285.581587pt;}
.x42_c00132{left:286.831187pt;}
.x14_c00132{left:295.235187pt;}
.xa_c00132{left:305.830387pt;}
.x68_c00132{left:306.815987pt;}
.x22_c00132{left:315.391587pt;}
.x63_c00132{left:316.297987pt;}
.x23_c00132{left:325.471987pt;}
.x3c_c00132{left:326.431187pt;}
.x5e_c00132{left:335.314787pt;}
.x31_c00132{left:336.260787pt;}
.x58_c00132{left:346.657987pt;}
.x24_c00132{left:354.511987pt;}
.x32_c00132{left:355.576787pt;}
.x15_c00132{left:366.039987pt;}
.x4e_c00132{left:367.685587pt;}
.x50_c00132{left:370.593987pt;}
.x3a_c00132{left:375.526387pt;}
.xb_c00132{left:384.313187pt;}
.x5a_c00132{left:385.263587pt;}
.xc_c00132{left:393.157187pt;}
.x3d_c00132{left:394.877587pt;}
.x45_c00132{left:397.389987pt;}
.x3e_c00132{left:404.548787pt;}
.x46_c00132{left:406.867587pt;}
.x2c_c00132{left:414.074787pt;}
.x64_c00132{left:423.525987pt;}
.x5b_c00132{left:424.652387pt;}
.xd_c00132{left:433.527187pt;}
.x33_c00132{left:434.451187pt;}
.x47_c00132{left:437.135187pt;}
.xe_c00132{left:443.655987pt;}
.x6a_c00132{left:444.597587pt;}
.x25_c00132{left:453.630787pt;}
.x55_c00132{left:456.706387pt;}
.x16_c00132{left:464.230387pt;}
.x26_c00132{left:473.443987pt;}
.x56_c00132{left:474.521987pt;}
.x27_c00132{left:482.785187pt;}
.x34_c00132{left:493.085587pt;}
.x5f_c00132{left:496.209587pt;}
.x17_c00132{left:502.479587pt;}
.x48_c00132{left:503.531187pt;}
.x18_c00132{left:513.325587pt;}
.x28_c00132{left:522.235587pt;}
.x51_c00132{left:525.355187pt;}
.x49_c00132{left:532.870387pt;}
.x35_c00132{left:541.872787pt;}
.x29_c00132{left:550.932387pt;}
.x19_c00132{left:551.851987pt;}
.xf_c00132{left:561.985187pt;}
.x52_c00132{left:563.956387pt;}
.x1a_c00132{left:572.219587pt;}
.x2_c00132{left:582.088787pt;}
.x3_c00132{left:591.781987pt;}
.x1b_c00132{left:601.747987pt;}
.x4a_c00132{left:602.649987pt;}
.x36_c00132{left:611.212387pt;}
.x62_c00132{left:612.149587pt;}
.x2e_c00132{left:615.757587pt;}
.x43_c00132{left:617.570387pt;}
.x3f_c00132{left:619.950787pt;}
.x5c_c00132{left:621.666787pt;}
.x65_c00132{left:624.429987pt;}
.x4f_c00132{left:631.183987pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bd8936a37d6ec6e4c6034391.woff2')format("woff");}.ff1_c00133{font-family:ff1_c00133;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00133;src:url('chunks/assets/font_ac3e3df44c17d827840fe3c6.woff2')format("woff");}.ff2_c00133{font-family:ff2_c00133;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00133;src:url('chunks/assets/font_61d38283b81beb532fbf1517.woff2')format("woff");}.ff3_c00133{font-family:ff3_c00133;line-height:0.666000;font-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_c00133{transform:matrix(0.042684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042684,0.000000,0.000000,0.250000,0,0);}
.mb3_c00133{transform:matrix(0.146169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146169,0.000000,0.000000,0.250000,0,0);}
.mba_c00133{transform:matrix(0.182926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182926,0.000000,0.000000,0.250000,0,0);}
.m78_c00133{transform:matrix(0.187998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187998,0.000000,0.000000,0.250000,0,0);}
.m1d_c00133{transform:matrix(0.190477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190477,0.000000,0.000000,0.250000,0,0);}
.m3f_c00133{transform:matrix(0.190704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190704,0.000000,0.000000,0.250000,0,0);}
.m3d_c00133{transform:matrix(0.199325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199325,0.000000,0.000000,0.250000,0,0);}
.m3e_c00133{transform:matrix(0.205128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205128,0.000000,0.000000,0.250000,0,0);}
.m59_c00133{transform:matrix(0.213031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213031,0.000000,0.000000,0.250000,0,0);}
.mb_c00133{transform:matrix(0.216704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216704,0.000000,0.000000,0.250000,0,0);}
.m21_c00133{transform:matrix(0.232356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232356,0.000000,0.000000,0.250000,0,0);}
.m72_c00133{transform:matrix(0.235475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235475,0.000000,0.000000,0.250000,0,0);}
.m76_c00133{transform:matrix(0.248948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248948,0.000000,0.000000,0.250000,0,0);}
.m0_c00133{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m77_c00133{transform:matrix(0.252172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252172,0.000000,0.000000,0.250000,0,0);}
.m5e_c00133{transform:matrix(0.253001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253001,0.000000,0.000000,0.250000,0,0);}
.m90_c00133{transform:matrix(0.254830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254830,0.000000,0.000000,0.250000,0,0);}
.m91_c00133{transform:matrix(0.255029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255029,0.000000,0.000000,0.250000,0,0);}
.m83_c00133{transform:matrix(0.255239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255239,0.000000,0.000000,0.250000,0,0);}
.m5_c00133{transform:matrix(0.256749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256749,0.000000,0.000000,0.250000,0,0);}
.m92_c00133{transform:matrix(0.258436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258436,0.000000,0.000000,0.250000,0,0);}
.mf_c00133{transform:matrix(0.259057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259057,0.000000,0.000000,0.250000,0,0);}
.mc1_c00133{transform:matrix(0.259613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259613,0.000000,0.000000,0.250000,0,0);}
.m2f_c00133{transform:matrix(0.260579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260579,0.000000,0.000000,0.250000,0,0);}
.m9d_c00133{transform:matrix(0.261624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261624,0.000000,0.000000,0.250000,0,0);}
.mc_c00133{transform:matrix(0.262968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262968,0.000000,0.000000,0.250000,0,0);}
.m37_c00133{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.mbf_c00133{transform:matrix(0.263397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263397,0.000000,0.000000,0.250000,0,0);}
.m12_c00133{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m7e_c00133{transform:matrix(0.264229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264229,0.000000,0.000000,0.250000,0,0);}
.m52_c00133{transform:matrix(0.264732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264732,0.000000,0.000000,0.250000,0,0);}
.m66_c00133{transform:matrix(0.264751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264751,0.000000,0.000000,0.250000,0,0);}
.m54_c00133{transform:matrix(0.264857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264857,0.000000,0.000000,0.250000,0,0);}
.m2a_c00133{transform:matrix(0.265205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265205,0.000000,0.000000,0.250000,0,0);}
.m47_c00133{transform:matrix(0.265230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265230,0.000000,0.000000,0.250000,0,0);}
.m9c_c00133{transform:matrix(0.265423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265423,0.000000,0.000000,0.250000,0,0);}
.m6d_c00133{transform:matrix(0.265655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265655,0.000000,0.000000,0.250000,0,0);}
.m26_c00133{transform:matrix(0.265830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265830,0.000000,0.000000,0.250000,0,0);}
.m4c_c00133{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m6b_c00133{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.mc4_c00133{transform:matrix(0.267205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267205,0.000000,0.000000,0.250000,0,0);}
.md_c00133{transform:matrix(0.267743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267743,0.000000,0.000000,0.250000,0,0);}
.m3_c00133{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m1f_c00133{transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);}
.m8e_c00133{transform:matrix(0.269104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269104,0.000000,0.000000,0.250000,0,0);}
.m99_c00133{transform:matrix(0.269236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269236,0.000000,0.000000,0.250000,0,0);}
.m22_c00133{transform:matrix(0.269273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269273,0.000000,0.000000,0.250000,0,0);}
.maa_c00133{transform:matrix(0.269646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269646,0.000000,0.000000,0.250000,0,0);}
.m8f_c00133{transform:matrix(0.270424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270424,0.000000,0.000000,0.250000,0,0);}
.m73_c00133{transform:matrix(0.270977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270977,0.000000,0.000000,0.250000,0,0);}
.m7f_c00133{transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);}
.m48_c00133{transform:matrix(0.271930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271930,0.000000,0.000000,0.250000,0,0);}
.m33_c00133{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m5a_c00133{transform:matrix(0.272943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272943,0.000000,0.000000,0.250000,0,0);}
.m4_c00133{transform:matrix(0.273965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273965,0.000000,0.000000,0.250000,0,0);}
.md0_c00133{transform:matrix(0.274870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274870,0.000000,0.000000,0.250000,0,0);}
.m75_c00133{transform:matrix(0.275789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275789,0.000000,0.000000,0.250000,0,0);}
.m93_c00133{transform:matrix(0.276181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276181,0.000000,0.000000,0.250000,0,0);}
.m4f_c00133{transform:matrix(0.276512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276512,0.000000,0.000000,0.250000,0,0);}
.m96_c00133{transform:matrix(0.276607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276607,0.000000,0.000000,0.250000,0,0);}
.m40_c00133{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m32_c00133{transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);}
.m28_c00133{transform:matrix(0.278266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278266,0.000000,0.000000,0.250000,0,0);}
.m61_c00133{transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);}
.mc8_c00133{transform:matrix(0.279718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279718,0.000000,0.000000,0.250000,0,0);}
.mad_c00133{transform:matrix(0.279826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279826,0.000000,0.000000,0.250000,0,0);}
.m15_c00133{transform:matrix(0.279948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279948,0.000000,0.000000,0.250000,0,0);}
.m19_c00133{transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);}
.md3_c00133{transform:matrix(0.280546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280546,0.000000,0.000000,0.250000,0,0);}
.mce_c00133{transform:matrix(0.280902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280902,0.000000,0.000000,0.250000,0,0);}
.m70_c00133{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.m65_c00133{transform:matrix(0.281782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281782,0.000000,0.000000,0.250000,0,0);}
.mcb_c00133{transform:matrix(0.282303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282303,0.000000,0.000000,0.250000,0,0);}
.m31_c00133{transform:matrix(0.282371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282371,0.000000,0.000000,0.250000,0,0);}
.mb0_c00133{transform:matrix(0.282716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282716,0.000000,0.000000,0.250000,0,0);}
.m94_c00133{transform:matrix(0.282867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282867,0.000000,0.000000,0.250000,0,0);}
.ma4_c00133{transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);}
.m41_c00133{transform:matrix(0.283223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283223,0.000000,0.000000,0.250000,0,0);}
.m6c_c00133{transform:matrix(0.283801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283801,0.000000,0.000000,0.250000,0,0);}
.m4e_c00133{transform:matrix(0.284580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284580,0.000000,0.000000,0.250000,0,0);}
.mc9_c00133{transform:matrix(0.284613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284613,0.000000,0.000000,0.250000,0,0);}
.ma3_c00133{transform:matrix(0.284878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284878,0.000000,0.000000,0.250000,0,0);}
.maf_c00133{transform:matrix(0.284903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284903,0.000000,0.000000,0.250000,0,0);}
.mae_c00133{transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);}
.m1a_c00133{transform:matrix(0.285890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285890,0.000000,0.000000,0.250000,0,0);}
.mc7_c00133{transform:matrix(0.286006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286006,0.000000,0.000000,0.250000,0,0);}
.m86_c00133{transform:matrix(0.286203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286203,0.000000,0.000000,0.250000,0,0);}
.mb2_c00133{transform:matrix(0.286238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286238,0.000000,0.000000,0.250000,0,0);}
.m98_c00133{transform:matrix(0.286291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286291,0.000000,0.000000,0.250000,0,0);}
.m79_c00133{transform:matrix(0.286395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286395,0.000000,0.000000,0.250000,0,0);}
.m16_c00133{transform:matrix(0.286457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286457,0.000000,0.000000,0.250000,0,0);}
.ma7_c00133{transform:matrix(0.286528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286528,0.000000,0.000000,0.250000,0,0);}
.m51_c00133{transform:matrix(0.286766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286766,0.000000,0.000000,0.250000,0,0);}
.mbd_c00133{transform:matrix(0.286845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286845,0.000000,0.000000,0.250000,0,0);}
.ma5_c00133{transform:matrix(0.287440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287440,0.000000,0.000000,0.250000,0,0);}
.mac_c00133{transform:matrix(0.287874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287874,0.000000,0.000000,0.250000,0,0);}
.m80_c00133{transform:matrix(0.287876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287876,0.000000,0.000000,0.250000,0,0);}
.m8_c00133{transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);}
.m2_c00133{transform:matrix(0.288525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288525,0.000000,0.000000,0.250000,0,0);}
.m58_c00133{transform:matrix(0.288623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288623,0.000000,0.000000,0.250000,0,0);}
.m7c_c00133{transform:matrix(0.288769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288769,0.000000,0.000000,0.250000,0,0);}
.m5b_c00133{transform:matrix(0.289292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289292,0.000000,0.000000,0.250000,0,0);}
.m9b_c00133{transform:matrix(0.289360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289360,0.000000,0.000000,0.250000,0,0);}
.m34_c00133{transform:matrix(0.290022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290022,0.000000,0.000000,0.250000,0,0);}
.m7_c00133{transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);}
.m27_c00133{transform:matrix(0.290903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290903,0.000000,0.000000,0.250000,0,0);}
.m42_c00133{transform:matrix(0.290973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290973,0.000000,0.000000,0.250000,0,0);}
.m6_c00133{transform:matrix(0.291583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291583,0.000000,0.000000,0.250000,0,0);}
.ma_c00133{transform:matrix(0.291645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291645,0.000000,0.000000,0.250000,0,0);}
.m88_c00133{transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);}
.mb5_c00133{transform:matrix(0.291870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291870,0.000000,0.000000,0.250000,0,0);}
.m87_c00133{transform:matrix(0.291928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291928,0.000000,0.000000,0.250000,0,0);}
.m81_c00133{transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);}
.m6e_c00133{transform:matrix(0.292793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292793,0.000000,0.000000,0.250000,0,0);}
.m9a_c00133{transform:matrix(0.293304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293304,0.000000,0.000000,0.250000,0,0);}
.md4_c00133{transform:matrix(0.294116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294116,0.000000,0.000000,0.250000,0,0);}
.m7b_c00133{transform:matrix(0.294535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294535,0.000000,0.000000,0.250000,0,0);}
.m11_c00133{transform:matrix(0.295013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295013,0.000000,0.000000,0.250000,0,0);}
.m5c_c00133{transform:matrix(0.295251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295251,0.000000,0.000000,0.250000,0,0);}
.m4b_c00133{transform:matrix(0.295385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295385,0.000000,0.000000,0.250000,0,0);}
.m82_c00133{transform:matrix(0.295750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295750,0.000000,0.000000,0.250000,0,0);}
.m46_c00133{transform:matrix(0.295938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295938,0.000000,0.000000,0.250000,0,0);}
.mc0_c00133{transform:matrix(0.296055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296055,0.000000,0.000000,0.250000,0,0);}
.m68_c00133{transform:matrix(0.296830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296830,0.000000,0.000000,0.250000,0,0);}
.m63_c00133{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m97_c00133{transform:matrix(0.297199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297199,0.000000,0.000000,0.250000,0,0);}
.mb1_c00133{transform:matrix(0.297306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297306,0.000000,0.000000,0.250000,0,0);}
.m89_c00133{transform:matrix(0.298133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298133,0.000000,0.000000,0.250000,0,0);}
.m71_c00133{transform:matrix(0.298258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298258,0.000000,0.000000,0.250000,0,0);}
.m4d_c00133{transform:matrix(0.298987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298987,0.000000,0.000000,0.250000,0,0);}
.m50_c00133{transform:matrix(0.299115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299115,0.000000,0.000000,0.250000,0,0);}
.m1_c00133{transform:matrix(0.299414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299414,0.000000,0.000000,0.250000,0,0);}
.m74_c00133{transform:matrix(0.299607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299607,0.000000,0.000000,0.250000,0,0);}
.m38_c00133{transform:matrix(0.300782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300782,0.000000,0.000000,0.250000,0,0);}
.m67_c00133{transform:matrix(0.301074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301074,0.000000,0.000000,0.250000,0,0);}
.mc3_c00133{transform:matrix(0.301475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301475,0.000000,0.000000,0.250000,0,0);}
.mb6_c00133{transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);}
.mcf_c00133{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m62_c00133{transform:matrix(0.302588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302588,0.000000,0.000000,0.250000,0,0);}
.mc6_c00133{transform:matrix(0.302775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302775,0.000000,0.000000,0.250000,0,0);}
.m64_c00133{transform:matrix(0.302968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302968,0.000000,0.000000,0.250000,0,0);}
.ma0_c00133{transform:matrix(0.303298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303298,0.000000,0.000000,0.250000,0,0);}
.m20_c00133{transform:matrix(0.304441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304441,0.000000,0.000000,0.250000,0,0);}
.m8d_c00133{transform:matrix(0.304676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304676,0.000000,0.000000,0.250000,0,0);}
.m2c_c00133{transform:matrix(0.304800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304800,0.000000,0.000000,0.250000,0,0);}
.mc2_c00133{transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);}
.ma8_c00133{transform:matrix(0.306180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306180,0.000000,0.000000,0.250000,0,0);}
.m8a_c00133{transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);}
.m17_c00133{transform:matrix(0.307871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307871,0.000000,0.000000,0.250000,0,0);}
.mbc_c00133{transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);}
.m3c_c00133{transform:matrix(0.308989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308989,0.000000,0.000000,0.250000,0,0);}
.m14_c00133{transform:matrix(0.309249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309249,0.000000,0.000000,0.250000,0,0);}
.m6f_c00133{transform:matrix(0.309994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309994,0.000000,0.000000,0.250000,0,0);}
.m9_c00133{transform:matrix(0.310202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310202,0.000000,0.000000,0.250000,0,0);}
.ma2_c00133{transform:matrix(0.311143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311143,0.000000,0.000000,0.250000,0,0);}
.mbe_c00133{transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);}
.mb9_c00133{transform:matrix(0.312790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312790,0.000000,0.000000,0.250000,0,0);}
.mb4_c00133{transform:matrix(0.313057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313057,0.000000,0.000000,0.250000,0,0);}
.m5f_c00133{transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);}
.mca_c00133{transform:matrix(0.314907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314907,0.000000,0.000000,0.250000,0,0);}
.m43_c00133{transform:matrix(0.315048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315048,0.000000,0.000000,0.250000,0,0);}
.m35_c00133{transform:matrix(0.315092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315092,0.000000,0.000000,0.250000,0,0);}
.m45_c00133{transform:matrix(0.315202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315202,0.000000,0.000000,0.250000,0,0);}
.m25_c00133{transform:matrix(0.316426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316426,0.000000,0.000000,0.250000,0,0);}
.mb8_c00133{transform:matrix(0.316543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316543,0.000000,0.000000,0.250000,0,0);}
.mcd_c00133{transform:matrix(0.317325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317325,0.000000,0.000000,0.250000,0,0);}
.m7d_c00133{transform:matrix(0.317850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317850,0.000000,0.000000,0.250000,0,0);}
.m4a_c00133{transform:matrix(0.318696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318696,0.000000,0.000000,0.250000,0,0);}
.m69_c00133{transform:matrix(0.320130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320130,0.000000,0.000000,0.250000,0,0);}
.ma9_c00133{transform:matrix(0.320819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320819,0.000000,0.000000,0.250000,0,0);}
.m6a_c00133{transform:matrix(0.320850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320850,0.000000,0.000000,0.250000,0,0);}
.m49_c00133{transform:matrix(0.322646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322646,0.000000,0.000000,0.250000,0,0);}
.m3b_c00133{transform:matrix(0.322697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322697,0.000000,0.000000,0.250000,0,0);}
.m24_c00133{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.m1b_c00133{transform:matrix(0.323720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323720,0.000000,0.000000,0.250000,0,0);}
.ma6_c00133{transform:matrix(0.324420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324420,0.000000,0.000000,0.250000,0,0);}
.m36_c00133{transform:matrix(0.324794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324794,0.000000,0.000000,0.250000,0,0);}
.m8b_c00133{transform:matrix(0.325257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325257,0.000000,0.000000,0.250000,0,0);}
.m39_c00133{transform:matrix(0.326263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326263,0.000000,0.000000,0.250000,0,0);}
.m7a_c00133{transform:matrix(0.326850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326850,0.000000,0.000000,0.250000,0,0);}
.m60_c00133{transform:matrix(0.326888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326888,0.000000,0.000000,0.250000,0,0);}
.mb7_c00133{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m5d_c00133{transform:matrix(0.327290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327290,0.000000,0.000000,0.250000,0,0);}
.mab_c00133{transform:matrix(0.327297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327297,0.000000,0.000000,0.250000,0,0);}
.m23_c00133{transform:matrix(0.329679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329679,0.000000,0.000000,0.250000,0,0);}
.m56_c00133{transform:matrix(0.330198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330198,0.000000,0.000000,0.250000,0,0);}
.m84_c00133{transform:matrix(0.330662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330662,0.000000,0.000000,0.250000,0,0);}
.m8c_c00133{transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);}
.ma1_c00133{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m55_c00133{transform:matrix(0.335110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335110,0.000000,0.000000,0.250000,0,0);}
.mc5_c00133{transform:matrix(0.335561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335561,0.000000,0.000000,0.250000,0,0);}
.mcc_c00133{transform:matrix(0.338502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338502,0.000000,0.000000,0.250000,0,0);}
.md2_c00133{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m10_c00133{transform:matrix(0.339538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339538,0.000000,0.000000,0.250000,0,0);}
.m53_c00133{transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);}
.m2d_c00133{transform:matrix(0.341488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341488,0.000000,0.000000,0.250000,0,0);}
.m13_c00133{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.m18_c00133{transform:matrix(0.345713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345713,0.000000,0.000000,0.250000,0,0);}
.md1_c00133{transform:matrix(0.346611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346611,0.000000,0.000000,0.250000,0,0);}
.m1e_c00133{transform:matrix(0.348194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348194,0.000000,0.000000,0.250000,0,0);}
.m3a_c00133{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m85_c00133{transform:matrix(0.352726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352726,0.000000,0.000000,0.250000,0,0);}
.m57_c00133{transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);}
.m9e_c00133{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m30_c00133{transform:matrix(0.355403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355403,0.000000,0.000000,0.250000,0,0);}
.m2b_c00133{transform:matrix(0.355459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355459,0.000000,0.000000,0.250000,0,0);}
.me_c00133{transform:matrix(0.355750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00133{transform:matrix(0.358190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358190,0.000000,0.000000,0.250000,0,0);}
.m29_c00133{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m9f_c00133{transform:matrix(0.368230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368230,0.000000,0.000000,0.250000,0,0);}
.m95_c00133{transform:matrix(0.372071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372071,0.000000,0.000000,0.250000,0,0);}
.m44_c00133{transform:matrix(0.375491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375491,0.000000,0.000000,0.250000,0,0);}
.m1c_c00133{transform:matrix(0.415946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415946,0.000000,0.000000,0.250000,0,0);}
.v0_c00133{vertical-align:0.000000px;}
.ls6_c00133{letter-spacing:-2.744280px;}
.ls11_c00133{letter-spacing:-1.897474px;}
.ls2_c00133{letter-spacing:0.000000px;}
.ls1_c00133{letter-spacing:0.219542px;}
.ls0_c00133{letter-spacing:0.933055px;}
.ls12_c00133{letter-spacing:1.011463px;}
.ls7_c00133{letter-spacing:1.082030px;}
.ls8_c00133{letter-spacing:1.160438px;}
.lsf_c00133{letter-spacing:2.267100px;}
.ls10_c00133{letter-spacing:3.112798px;}
.lse_c00133{letter-spacing:3.191206px;}
.lsb_c00133{letter-spacing:3.653813px;}
.ls3_c00133{letter-spacing:3.801610px;}
.ls4_c00133{letter-spacing:3.920400px;}
.ls5_c00133{letter-spacing:4.534200px;}
.lsa_c00133{letter-spacing:4.593610px;}
.ls9_c00133{letter-spacing:29.937798px;}
.lsc_c00133{letter-spacing:52.747398px;}
.lsd_c00133{letter-spacing:55.598598px;}
.ls13_c00133{letter-spacing:58.449798px;}
.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:-19.602000px;}
.ws2_c00133{word-spacing:0.000000px;}
.ws1_c00133{word-spacing:3.606768px;}
._6_c00133{margin-left:-11.761200px;}
._f_c00133{margin-left:-10.271844px;}
._e_c00133{width:3.057912px;}
._1_c00133{width:6.272640px;}
._4_c00133{width:7.683984px;}
._2_c00133{width:10.585080px;}
._b_c00133{width:12.780504px;}
._9_c00133{width:14.035032px;}
._7_c00133{width:21.326976px;}
._3_c00133{width:25.921368px;}
._c_c00133{width:29.726928px;}
._a_c00133{width:32.453942px;}
._8_c00133{width:33.972048px;}
._0_c00133{width:35.362008px;}
._d_c00133{width:39.125592px;}
._5_c00133{width:41.791860px;}
.fc0_c00133{color:transparent;}
.fsb_c00133{font-size:22.176000px;}
.fs13_c00133{font-size:23.166000px;}
.fs0_c00133{font-size:27.720000px;}
.fs6_c00133{font-size:29.937798px;}
.fsf_c00133{font-size:33.264000px;}
.fs3_c00133{font-size:33.660000px;}
.fsc_c00133{font-size:36.432000px;}
.fs12_c00133{font-size:38.808000px;}
.fse_c00133{font-size:44.352000px;}
.fsd_c00133{font-size:45.342000px;}
.fs8_c00133{font-size:52.747398px;}
.fs9_c00133{font-size:55.598598px;}
.fs10_c00133{font-size:58.449798px;}
.fs1_c00133{font-size:76.032198px;}
.fs4_c00133{font-size:78.408000px;}
.fs11_c00133{font-size:78.804000px;}
.fs5_c00133{font-size:90.684000px;}
.fs2_c00133{font-size:91.476198px;}
.fs7_c00133{font-size:91.872198px;}
.fsa_c00133{font-size:122.760000px;}
.y0_c00133{bottom:0.000000px;}
.y27_c00133{bottom:31.275135px;}
.y1_c00133{bottom:76.500000px;}
.y26_c00133{bottom:126.077535px;}
.y25_c00133{bottom:141.759135px;}
.y24_c00133{bottom:149.599935px;}
.y23_c00133{bottom:180.601785px;}
.y22_c00133{bottom:215.528985px;}
.y21_c00133{bottom:247.966335px;}
.y20_c00133{bottom:280.037385px;}
.y1f_c00133{bottom:290.734335px;}
.y1e_c00133{bottom:312.474735px;}
.y1d_c00133{bottom:347.401935px;}
.y1c_c00133{bottom:347.753385px;}
.y1b_c00133{bottom:377.334585px;}
.y1a_c00133{bottom:409.410585px;}
.y19_c00133{bottom:442.204335px;}
.y18_c00133{bottom:474.993135px;}
.y17_c00133{bottom:500.297535px;}
.y16_c00133{bottom:507.064185px;}
.y15_c00133{bottom:538.788735px;}
.y14_c00133{bottom:551.975535px;}
.y13_c00133{bottom:570.859785px;}
.y12_c00133{bottom:603.292185px;}
.y11_c00133{bottom:635.373135px;}
.y10_c00133{bottom:667.805535px;}
.yf_c00133{bottom:682.417935px;}
.ye_c00133{bottom:699.876585px;}
.yd_c00133{bottom:733.026735px;}
.yc_c00133{bottom:764.746335px;}
.yb_c00133{bottom:797.178735px;}
.ya_c00133{bottom:829.249785px;}
.y9_c00133{bottom:854.197785px;}
.y8_c00133{bottom:861.682185px;}
.y7_c00133{bottom:893.763135px;}
.y6_c00133{bottom:925.834185px;}
.y5_c00133{bottom:1048.079385px;}
.y4_c00133{bottom:1054.850985px;}
.y2_c00133{bottom:1074.809385px;}
.y3_c00133{bottom:1087.283385px;}
.h9_c00133{height:19.938573px;}
.he_c00133{height:23.128875px;}
.h16_c00133{height:24.161414px;}
.h2_c00133{height:28.911094px;}
.h5_c00133{height:33.035449px;}
.h12_c00133{height:34.693313px;}
.hb_c00133{height:35.129767px;}
.hf_c00133{height:35.756016px;}
.hc_c00133{height:37.028666px;}
.h13_c00133{height:38.927565px;}
.h15_c00133{height:40.475531px;}
.h11_c00133{height:46.257750px;}
.h10_c00133{height:47.290289px;}
.h3_c00133{height:74.621444px;}
.h6_c00133{height:76.953164px;}
.h14_c00133{height:77.341816px;}
.h8_c00133{height:79.299207px;}
.h7_c00133{height:89.001387px;}
.h4_c00133{height:89.778886px;}
.ha_c00133{height:95.819832px;}
.hd_c00133{height:120.482227px;}
.h1_c00133{height:1110.000000px;}
.h0_c00133{height:1263.000000px;}
.w1_c00133{width:733.500000px;}
.w0_c00133{width:892.500000px;}
.x0_c00133{left:0.000000px;}
.x2_c00133{left:43.386285px;}
.x3c_c00133{left:73.813935px;}
.x7_c00133{left:74.883135px;}
.x1_c00133{left:79.500000px;}
.x59_c00133{left:84.119835px;}
.x2a_c00133{left:98.148135px;}
.x46_c00133{left:106.582935px;}
.x5a_c00133{left:108.127335px;}
.x10_c00133{left:109.741035px;}
.x1c_c00133{left:119.546985px;}
.x2b_c00133{left:130.422135px;}
.x5b_c00133{left:140.035035px;}
.x11_c00133{left:141.653685px;}
.x60_c00133{left:152.043735px;}
.x1d_c00133{left:153.375285px;}
.x7a_c00133{left:156.538335px;}
.x73_c00133{left:158.483685px;}
.x2c_c00133{left:163.785135px;}
.x3d_c00133{left:164.884035px;}
.x8_c00133{left:174.086085px;}
.x2d_c00133{left:175.165185px;}
.x27_c00133{left:178.392585px;}
.x12_c00133{left:184.654335px;}
.x74_c00133{left:186.213585px;}
.x47_c00133{left:194.960235px;}
.x67_c00133{left:197.484735px;}
.x4f_c00133{left:204.860235px;}
.x9_c00133{left:206.266035px;}
.x2e_c00133{left:207.582735px;}
.x61_c00133{left:208.622235px;}
.x13_c00133{left:218.601435px;}
.x48_c00133{left:229.852785px;}
.x6f_c00133{left:231.412035px;}
.x5c_c00133{left:241.064535px;}
.x1e_c00133{left:242.099085px;}
.x49_c00133{left:250.875435px;}
.x14_c00133{left:252.137685px;}
.x2f_c00133{left:261.963435px;}
.x56_c00133{left:263.557335px;}
.x34_c00133{left:266.007585px;}
.x4a_c00133{left:274.046385px;}
.x35_c00133{left:276.546135px;}
.x15_c00133{left:285.456135px;}
.x1f_c00133{left:286.698585px;}
.x57_c00133{left:295.821435px;}
.x30_c00133{left:297.029235px;}
.x65_c00133{left:307.226235px;}
.x20_c00133{left:308.379585px;}
.x76_c00133{left:309.800235px;}
.x36_c00133{left:311.022885px;}
.x3e_c00133{left:318.304335px;}
.x16_c00133{left:319.843785px;}
.x17_c00133{left:329.803185px;}
.x6b_c00133{left:331.218885px;}
.x31_c00133{left:340.584285px;}
.x62_c00133{left:341.930685px;}
.xa_c00133{left:343.658235px;}
.x4d_c00133{left:352.305885px;}
.x50_c00133{left:363.671085px;}
.x69_c00133{left:364.745235px;}
.x4b_c00133{left:374.684835px;}
.x21_c00133{left:384.565035px;}
.x18_c00133{left:385.876785px;}
.x3f_c00133{left:396.712335px;}
.x70_c00133{left:398.207235px;}
.x40_c00133{left:406.622235px;}
.xb_c00133{left:408.572535px;}
.x5f_c00133{left:415.467885px;}
.x19_c00133{left:419.952585px;}
.x22_c00133{left:429.798135px;}
.x7b_c00133{left:431.015835px;}
.x51_c00133{left:440.485185px;}
.x53_c00133{left:442.064235px;}
.x63_c00133{left:451.211835px;}
.x5d_c00133{left:452.795835px;}
.x41_c00133{left:462.770085px;}
.x71_c00133{left:464.517435px;}
.x4e_c00133{left:465.542085px;}
.x54_c00133{left:474.179835px;}
.x52_c00133{left:475.214385px;}
.x78_c00133{left:484.332285px;}
.x23_c00133{left:485.579685px;}
.x79_c00133{left:486.940935px;}
.x37_c00133{left:496.276635px;}
.x68_c00133{left:497.355735px;}
.x24_c00133{left:508.671435px;}
.x1a_c00133{left:518.729835px;}
.x6a_c00133{left:519.764385px;}
.x42_c00133{left:529.293135px;}
.x32_c00133{left:530.451435px;}
.x6c_c00133{left:531.481035px;}
.x43_c00133{left:541.133535px;}
.xc_c00133{left:551.746335px;}
.x64_c00133{left:552.929385px;}
.x4c_c00133{left:562.052235px;}
.x1b_c00133{left:563.601585px;}
.x77_c00133{left:566.333985px;}
.x55_c00133{left:574.194585px;}
.x72_c00133{left:585.713235px;}
.xd_c00133{left:595.944885px;}
.x7c_c00133{left:597.454635px;}
.x38_c00133{left:606.374535px;}
.x25_c00133{left:609.042585px;}
.x33_c00133{left:619.016835px;}
.x39_c00133{left:628.649535px;}
.xe_c00133{left:629.872185px;}
.x75_c00133{left:633.594585px;}
.x3a_c00133{left:640.232535px;}
.x44_c00133{left:641.267085px;}
.x3_c00133{left:651.954135px;}
.x28_c00133{left:661.497735px;}
.x3b_c00133{left:663.413385px;}
.x29_c00133{left:672.595635px;}
.x45_c00133{left:673.615335px;}
.x58_c00133{left:674.808285px;}
.x4_c00133{left:685.064685px;}
.x5e_c00133{left:688.044585px;}
.x6_c00133{left:690.583935px;}
.x6d_c00133{left:693.152985px;}
.x6e_c00133{left:694.821135px;}
.x26_c00133{left:696.132885px;}
.xf_c00133{left:697.256535px;}
.x5_c00133{left:699.563235px;}
.x66_c00133{left:707.230785px;}
@media print{
.v0_c00133{vertical-align:0.000000pt;}
.ls6_c00133{letter-spacing:-2.439360pt;}
.ls11_c00133{letter-spacing:-1.686643pt;}
.ls2_c00133{letter-spacing:0.000000pt;}
.ls1_c00133{letter-spacing:0.195149pt;}
.ls0_c00133{letter-spacing:0.829382pt;}
.ls12_c00133{letter-spacing:0.899078pt;}
.ls7_c00133{letter-spacing:0.961805pt;}
.ls8_c00133{letter-spacing:1.031501pt;}
.lsf_c00133{letter-spacing:2.015200pt;}
.ls10_c00133{letter-spacing:2.766931pt;}
.lse_c00133{letter-spacing:2.836627pt;}
.lsb_c00133{letter-spacing:3.247834pt;}
.ls3_c00133{letter-spacing:3.379209pt;}
.ls4_c00133{letter-spacing:3.484800pt;}
.ls5_c00133{letter-spacing:4.030400pt;}
.lsa_c00133{letter-spacing:4.083209pt;}
.ls9_c00133{letter-spacing:26.611376pt;}
.lsc_c00133{letter-spacing:46.886576pt;}
.lsd_c00133{letter-spacing:49.420976pt;}
.ls13_c00133{letter-spacing:51.955376pt;}
.ws0_c00133{word-spacing:-17.424000pt;}
.ws2_c00133{word-spacing:0.000000pt;}
.ws1_c00133{word-spacing:3.206016pt;}
._6_c00133{margin-left:-10.454400pt;}
._f_c00133{margin-left:-9.130528pt;}
._e_c00133{width:2.718144pt;}
._1_c00133{width:5.575680pt;}
._4_c00133{width:6.830208pt;}
._2_c00133{width:9.408960pt;}
._b_c00133{width:11.360448pt;}
._9_c00133{width:12.475584pt;}
._7_c00133{width:18.957312pt;}
._3_c00133{width:23.041216pt;}
._c_c00133{width:26.423936pt;}
._a_c00133{width:28.847949pt;}
._8_c00133{width:30.197376pt;}
._0_c00133{width:31.432896pt;}
._d_c00133{width:34.778304pt;}
._5_c00133{width:37.148320pt;}
.fsb_c00133{font-size:19.712000pt;}
.fs13_c00133{font-size:20.592000pt;}
.fs0_c00133{font-size:24.640000pt;}
.fs6_c00133{font-size:26.611376pt;}
.fsf_c00133{font-size:29.568000pt;}
.fs3_c00133{font-size:29.920000pt;}
.fsc_c00133{font-size:32.384000pt;}
.fs12_c00133{font-size:34.496000pt;}
.fse_c00133{font-size:39.424000pt;}
.fsd_c00133{font-size:40.304000pt;}
.fs8_c00133{font-size:46.886576pt;}
.fs9_c00133{font-size:49.420976pt;}
.fs10_c00133{font-size:51.955376pt;}
.fs1_c00133{font-size:67.584176pt;}
.fs4_c00133{font-size:69.696000pt;}
.fs11_c00133{font-size:70.048000pt;}
.fs5_c00133{font-size:80.608000pt;}
.fs2_c00133{font-size:81.312176pt;}
.fs7_c00133{font-size:81.664176pt;}
.fsa_c00133{font-size:109.120000pt;}
.y0_c00133{bottom:0.000000pt;}
.y27_c00133{bottom:27.800120pt;}
.y1_c00133{bottom:68.000000pt;}
.y26_c00133{bottom:112.068920pt;}
.y25_c00133{bottom:126.008120pt;}
.y24_c00133{bottom:132.977720pt;}
.y23_c00133{bottom:160.534920pt;}
.y22_c00133{bottom:191.581320pt;}
.y21_c00133{bottom:220.414520pt;}
.y20_c00133{bottom:248.922120pt;}
.y1f_c00133{bottom:258.430520pt;}
.y1e_c00133{bottom:277.755320pt;}
.y1d_c00133{bottom:308.801720pt;}
.y1c_c00133{bottom:309.114120pt;}
.y1b_c00133{bottom:335.408520pt;}
.y1a_c00133{bottom:363.920520pt;}
.y19_c00133{bottom:393.070520pt;}
.y18_c00133{bottom:422.216120pt;}
.y17_c00133{bottom:444.708920pt;}
.y16_c00133{bottom:450.723720pt;}
.y15_c00133{bottom:478.923320pt;}
.y14_c00133{bottom:490.644920pt;}
.y13_c00133{bottom:507.430920pt;}
.y12_c00133{bottom:536.259720pt;}
.y11_c00133{bottom:564.776120pt;}
.y10_c00133{bottom:593.604920pt;}
.yf_c00133{bottom:606.593720pt;}
.ye_c00133{bottom:622.112520pt;}
.yd_c00133{bottom:651.579320pt;}
.yc_c00133{bottom:679.774520pt;}
.yb_c00133{bottom:708.603320pt;}
.ya_c00133{bottom:737.110920pt;}
.y9_c00133{bottom:759.286920pt;}
.y8_c00133{bottom:765.939720pt;}
.y7_c00133{bottom:794.456120pt;}
.y6_c00133{bottom:822.963720pt;}
.y5_c00133{bottom:931.626120pt;}
.y4_c00133{bottom:937.645320pt;}
.y2_c00133{bottom:955.386120pt;}
.y3_c00133{bottom:966.474120pt;}
.h9_c00133{height:17.723176pt;}
.he_c00133{height:20.559000pt;}
.h16_c00133{height:21.476813pt;}
.h2_c00133{height:25.698750pt;}
.h5_c00133{height:29.364844pt;}
.h12_c00133{height:30.838500pt;}
.hb_c00133{height:31.226460pt;}
.hf_c00133{height:31.783125pt;}
.hc_c00133{height:32.914370pt;}
.h13_c00133{height:34.602280pt;}
.h15_c00133{height:35.978250pt;}
.h11_c00133{height:41.118000pt;}
.h10_c00133{height:42.035813pt;}
.h3_c00133{height:66.330173pt;}
.h6_c00133{height:68.402813pt;}
.h14_c00133{height:68.748281pt;}
.h8_c00133{height:70.488184pt;}
.h7_c00133{height:79.112344pt;}
.h4_c00133{height:79.803454pt;}
.ha_c00133{height:85.173184pt;}
.hd_c00133{height:107.095313pt;}
.h1_c00133{height:986.666667pt;}
.h0_c00133{height:1122.666667pt;}
.w1_c00133{width:652.000000pt;}
.w0_c00133{width:793.333333pt;}
.x0_c00133{left:0.000000pt;}
.x2_c00133{left:38.565587pt;}
.x3c_c00133{left:65.612387pt;}
.x7_c00133{left:66.562787pt;}
.x1_c00133{left:70.666667pt;}
.x59_c00133{left:74.773187pt;}
.x2a_c00133{left:87.242787pt;}
.x46_c00133{left:94.740387pt;}
.x5a_c00133{left:96.113187pt;}
.x10_c00133{left:97.547587pt;}
.x1c_c00133{left:106.263987pt;}
.x2b_c00133{left:115.930787pt;}
.x5b_c00133{left:124.475587pt;}
.x11_c00133{left:125.914387pt;}
.x60_c00133{left:135.149987pt;}
.x1d_c00133{left:136.333587pt;}
.x7a_c00133{left:139.145187pt;}
.x73_c00133{left:140.874387pt;}
.x2c_c00133{left:145.586787pt;}
.x3d_c00133{left:146.563587pt;}
.x8_c00133{left:154.743187pt;}
.x2d_c00133{left:155.702387pt;}
.x27_c00133{left:158.571187pt;}
.x12_c00133{left:164.137187pt;}
.x74_c00133{left:165.523187pt;}
.x47_c00133{left:173.297987pt;}
.x67_c00133{left:175.541987pt;}
.x4f_c00133{left:182.097987pt;}
.x9_c00133{left:183.347587pt;}
.x2e_c00133{left:184.517987pt;}
.x61_c00133{left:185.441987pt;}
.x13_c00133{left:194.312387pt;}
.x48_c00133{left:204.313587pt;}
.x6f_c00133{left:205.699587pt;}
.x5c_c00133{left:214.279587pt;}
.x1e_c00133{left:215.199187pt;}
.x49_c00133{left:223.000387pt;}
.x14_c00133{left:224.122387pt;}
.x2f_c00133{left:232.856387pt;}
.x56_c00133{left:234.273187pt;}
.x34_c00133{left:236.451187pt;}
.x4a_c00133{left:243.596787pt;}
.x35_c00133{left:245.818787pt;}
.x15_c00133{left:253.738787pt;}
.x1f_c00133{left:254.843187pt;}
.x57_c00133{left:262.952387pt;}
.x30_c00133{left:264.025987pt;}
.x65_c00133{left:273.089987pt;}
.x20_c00133{left:274.115187pt;}
.x76_c00133{left:275.377987pt;}
.x36_c00133{left:276.464787pt;}
.x3e_c00133{left:282.937187pt;}
.x16_c00133{left:284.305587pt;}
.x17_c00133{left:293.158387pt;}
.x6b_c00133{left:294.416787pt;}
.x31_c00133{left:302.741587pt;}
.x62_c00133{left:303.938387pt;}
.xa_c00133{left:305.473987pt;}
.x4d_c00133{left:313.160787pt;}
.x50_c00133{left:323.263187pt;}
.x69_c00133{left:324.217987pt;}
.x4b_c00133{left:333.053187pt;}
.x21_c00133{left:341.835587pt;}
.x18_c00133{left:343.001587pt;}
.x3f_c00133{left:352.633187pt;}
.x70_c00133{left:353.961987pt;}
.x40_c00133{left:361.441987pt;}
.xb_c00133{left:363.175587pt;}
.x5f_c00133{left:369.304787pt;}
.x19_c00133{left:373.291187pt;}
.x22_c00133{left:382.042787pt;}
.x7b_c00133{left:383.125187pt;}
.x51_c00133{left:391.542387pt;}
.x53_c00133{left:392.945987pt;}
.x63_c00133{left:401.077187pt;}
.x5d_c00133{left:402.485187pt;}
.x41_c00133{left:411.351187pt;}
.x71_c00133{left:412.904387pt;}
.x4e_c00133{left:413.815187pt;}
.x54_c00133{left:421.493187pt;}
.x52_c00133{left:422.412787pt;}
.x78_c00133{left:430.517587pt;}
.x23_c00133{left:431.626387pt;}
.x79_c00133{left:432.836387pt;}
.x37_c00133{left:441.134787pt;}
.x68_c00133{left:442.093987pt;}
.x24_c00133{left:452.152387pt;}
.x1a_c00133{left:461.093187pt;}
.x6a_c00133{left:462.012787pt;}
.x42_c00133{left:470.482787pt;}
.x32_c00133{left:471.512387pt;}
.x6c_c00133{left:472.427587pt;}
.x43_c00133{left:481.007587pt;}
.xc_c00133{left:490.441187pt;}
.x64_c00133{left:491.492787pt;}
.x4c_c00133{left:499.601987pt;}
.x1b_c00133{left:500.979187pt;}
.x77_c00133{left:503.407987pt;}
.x55_c00133{left:510.395187pt;}
.x72_c00133{left:520.633987pt;}
.xd_c00133{left:529.728787pt;}
.x7c_c00133{left:531.070787pt;}
.x38_c00133{left:538.999587pt;}
.x25_c00133{left:541.371187pt;}
.x33_c00133{left:550.237187pt;}
.x39_c00133{left:558.799587pt;}
.xe_c00133{left:559.886387pt;}
.x75_c00133{left:563.195187pt;}
.x3a_c00133{left:569.095587pt;}
.x44_c00133{left:570.015187pt;}
.x3_c00133{left:579.514787pt;}
.x28_c00133{left:587.997987pt;}
.x3b_c00133{left:589.700787pt;}
.x29_c00133{left:597.862787pt;}
.x45_c00133{left:598.769187pt;}
.x58_c00133{left:599.829587pt;}
.x4_c00133{left:608.946387pt;}
.x5e_c00133{left:611.595187pt;}
.x6_c00133{left:613.852387pt;}
.x6d_c00133{left:616.135987pt;}
.x6e_c00133{left:617.618787pt;}
.x26_c00133{left:618.784787pt;}
.xf_c00133{left:619.783587pt;}
.x5_c00133{left:621.833987pt;}
.x66_c00133{left:628.649587pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d7a8bec137d6d37444efa2c9.woff2')format("woff");}.ff1_c00134{font-family:ff1_c00134;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00134;src:url('chunks/assets/font_2a0e685be2ff53717b1a8f10.woff2')format("woff");}.ff2_c00134{font-family:ff2_c00134;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00134;src:url('chunks/assets/font_58e045e7d0b68f797b5b7608.woff2')format("woff");}.ff3_c00134{font-family:ff3_c00134;line-height:0.666000;font-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_c00134{transform:matrix(0.152439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152439,0.000000,0.000000,0.250000,0,0);}
.m71_c00134{transform:matrix(0.164634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164634,0.000000,0.000000,0.250000,0,0);}
.m14_c00134{transform:matrix(0.220358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220358,0.000000,0.000000,0.250000,0,0);}
.m45_c00134{transform:matrix(0.230124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230124,0.000000,0.000000,0.250000,0,0);}
.m73_c00134{transform:matrix(0.231707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231707,0.000000,0.000000,0.250000,0,0);}
.m1d_c00134{transform:matrix(0.232897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232897,0.000000,0.000000,0.250000,0,0);}
.mb0_c00134{transform:matrix(0.236485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236485,0.000000,0.000000,0.250000,0,0);}
.m4e_c00134{transform:matrix(0.245489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245489,0.000000,0.000000,0.250000,0,0);}
.m74_c00134{transform:matrix(0.247605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247605,0.000000,0.000000,0.250000,0,0);}
.m6d_c00134{transform:matrix(0.248791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248791,0.000000,0.000000,0.250000,0,0);}
.m0_c00134{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m90_c00134{transform:matrix(0.251640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251640,0.000000,0.000000,0.250000,0,0);}
.m8b_c00134{transform:matrix(0.251722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251722,0.000000,0.000000,0.250000,0,0);}
.m5a_c00134{transform:matrix(0.252313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252313,0.000000,0.000000,0.250000,0,0);}
.m2f_c00134{transform:matrix(0.252783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252783,0.000000,0.000000,0.250000,0,0);}
.m68_c00134{transform:matrix(0.253629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253629,0.000000,0.000000,0.250000,0,0);}
.m27_c00134{transform:matrix(0.255101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255101,0.000000,0.000000,0.250000,0,0);}
.m6c_c00134{transform:matrix(0.255522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255522,0.000000,0.000000,0.250000,0,0);}
.m34_c00134{transform:matrix(0.256819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256819,0.000000,0.000000,0.250000,0,0);}
.m41_c00134{transform:matrix(0.256895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256895,0.000000,0.000000,0.250000,0,0);}
.m22_c00134{transform:matrix(0.257425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257425,0.000000,0.000000,0.250000,0,0);}
.m96_c00134{transform:matrix(0.258258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258258,0.000000,0.000000,0.250000,0,0);}
.m3b_c00134{transform:matrix(0.259209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259209,0.000000,0.000000,0.250000,0,0);}
.m9f_c00134{transform:matrix(0.259254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259254,0.000000,0.000000,0.250000,0,0);}
.m12_c00134{transform:matrix(0.259656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259656,0.000000,0.000000,0.250000,0,0);}
.m32_c00134{transform:matrix(0.260318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260318,0.000000,0.000000,0.250000,0,0);}
.m53_c00134{transform:matrix(0.260374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260374,0.000000,0.000000,0.250000,0,0);}
.m8f_c00134{transform:matrix(0.260621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260621,0.000000,0.000000,0.250000,0,0);}
.ma_c00134{transform:matrix(0.261325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261325,0.000000,0.000000,0.250000,0,0);}
.m78_c00134{transform:matrix(0.261377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261377,0.000000,0.000000,0.250000,0,0);}
.m36_c00134{transform:matrix(0.262002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262002,0.000000,0.000000,0.250000,0,0);}
.m1f_c00134{transform:matrix(0.262007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262007,0.000000,0.000000,0.250000,0,0);}
.m26_c00134{transform:matrix(0.262422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262422,0.000000,0.000000,0.250000,0,0);}
.m1_c00134{transform:matrix(0.263474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263474,0.000000,0.000000,0.250000,0,0);}
.m4a_c00134{transform:matrix(0.264123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264123,0.000000,0.000000,0.250000,0,0);}
.m15_c00134{transform:matrix(0.264148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264148,0.000000,0.000000,0.250000,0,0);}
.m67_c00134{transform:matrix(0.264211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264211,0.000000,0.000000,0.250000,0,0);}
.m30_c00134{transform:matrix(0.265188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265188,0.000000,0.000000,0.250000,0,0);}
.m1c_c00134{transform:matrix(0.265830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265830,0.000000,0.000000,0.250000,0,0);}
.m3f_c00134{transform:matrix(0.266284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266284,0.000000,0.000000,0.250000,0,0);}
.m35_c00134{transform:matrix(0.267222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267222,0.000000,0.000000,0.250000,0,0);}
.m85_c00134{transform:matrix(0.267374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267374,0.000000,0.000000,0.250000,0,0);}
.me_c00134{transform:matrix(0.267552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267552,0.000000,0.000000,0.250000,0,0);}
.m16_c00134{transform:matrix(0.267959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267959,0.000000,0.000000,0.250000,0,0);}
.mab_c00134{transform:matrix(0.268257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268257,0.000000,0.000000,0.250000,0,0);}
.ma6_c00134{transform:matrix(0.268767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268767,0.000000,0.000000,0.250000,0,0);}
.m23_c00134{transform:matrix(0.268783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268783,0.000000,0.000000,0.250000,0,0);}
.m8e_c00134{transform:matrix(0.269544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269544,0.000000,0.000000,0.250000,0,0);}
.m43_c00134{transform:matrix(0.269678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269678,0.000000,0.000000,0.250000,0,0);}
.m97_c00134{transform:matrix(0.270230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270230,0.000000,0.000000,0.250000,0,0);}
.m69_c00134{transform:matrix(0.270337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270337,0.000000,0.000000,0.250000,0,0);}
.m89_c00134{transform:matrix(0.270387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270387,0.000000,0.000000,0.250000,0,0);}
.m61_c00134{transform:matrix(0.272515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272515,0.000000,0.000000,0.250000,0,0);}
.ma8_c00134{transform:matrix(0.273451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273451,0.000000,0.000000,0.250000,0,0);}
.m4f_c00134{transform:matrix(0.274270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274270,0.000000,0.000000,0.250000,0,0);}
.m7c_c00134{transform:matrix(0.274612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274612,0.000000,0.000000,0.250000,0,0);}
.m5b_c00134{transform:matrix(0.274716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274716,0.000000,0.000000,0.250000,0,0);}
.m21_c00134{transform:matrix(0.275605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275605,0.000000,0.000000,0.250000,0,0);}
.m79_c00134{transform:matrix(0.275669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275669,0.000000,0.000000,0.250000,0,0);}
.m42_c00134{transform:matrix(0.275764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275764,0.000000,0.000000,0.250000,0,0);}
.m39_c00134{transform:matrix(0.276563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276563,0.000000,0.000000,0.250000,0,0);}
.m8_c00134{transform:matrix(0.276811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276811,0.000000,0.000000,0.250000,0,0);}
.m93_c00134{transform:matrix(0.277347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277347,0.000000,0.000000,0.250000,0,0);}
.m2_c00134{transform:matrix(0.277756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277756,0.000000,0.000000,0.250000,0,0);}
.m91_c00134{transform:matrix(0.277906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277906,0.000000,0.000000,0.250000,0,0);}
.m1b_c00134{transform:matrix(0.277968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277968,0.000000,0.000000,0.250000,0,0);}
.m4d_c00134{transform:matrix(0.278156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278156,0.000000,0.000000,0.250000,0,0);}
.m87_c00134{transform:matrix(0.278247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278247,0.000000,0.000000,0.250000,0,0);}
.m3e_c00134{transform:matrix(0.279329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279329,0.000000,0.000000,0.250000,0,0);}
.m2d_c00134{transform:matrix(0.279975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279975,0.000000,0.000000,0.250000,0,0);}
.m51_c00134{transform:matrix(0.280549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280549,0.000000,0.000000,0.250000,0,0);}
.m98_c00134{transform:matrix(0.280675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280675,0.000000,0.000000,0.250000,0,0);}
.m50_c00134{transform:matrix(0.280766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280766,0.000000,0.000000,0.250000,0,0);}
.m2c_c00134{transform:matrix(0.280783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280783,0.000000,0.000000,0.250000,0,0);}
.m52_c00134{transform:matrix(0.281056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281056,0.000000,0.000000,0.250000,0,0);}
.m28_c00134{transform:matrix(0.281415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281415,0.000000,0.000000,0.250000,0,0);}
.m5d_c00134{transform:matrix(0.281514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281514,0.000000,0.000000,0.250000,0,0);}
.ma5_c00134{transform:matrix(0.281884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281884,0.000000,0.000000,0.250000,0,0);}
.m11_c00134{transform:matrix(0.282001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282001,0.000000,0.000000,0.250000,0,0);}
.m2a_c00134{transform:matrix(0.282334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282334,0.000000,0.000000,0.250000,0,0);}
.m8c_c00134{transform:matrix(0.282995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282995,0.000000,0.000000,0.250000,0,0);}
.m92_c00134{transform:matrix(0.283331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283331,0.000000,0.000000,0.250000,0,0);}
.m7b_c00134{transform:matrix(0.283616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283616,0.000000,0.000000,0.250000,0,0);}
.m84_c00134{transform:matrix(0.283643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283643,0.000000,0.000000,0.250000,0,0);}
.m38_c00134{transform:matrix(0.283735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283735,0.000000,0.000000,0.250000,0,0);}
.m95_c00134{transform:matrix(0.283763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283763,0.000000,0.000000,0.250000,0,0);}
.md_c00134{transform:matrix(0.283841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283841,0.000000,0.000000,0.250000,0,0);}
.m86_c00134{transform:matrix(0.284163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284163,0.000000,0.000000,0.250000,0,0);}
.m49_c00134{transform:matrix(0.284229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284229,0.000000,0.000000,0.250000,0,0);}
.m56_c00134{transform:matrix(0.284704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284704,0.000000,0.000000,0.250000,0,0);}
.mad_c00134{transform:matrix(0.285065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285065,0.000000,0.000000,0.250000,0,0);}
.m9a_c00134{transform:matrix(0.285433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285433,0.000000,0.000000,0.250000,0,0);}
.m6b_c00134{transform:matrix(0.286416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286416,0.000000,0.000000,0.250000,0,0);}
.m6e_c00134{transform:matrix(0.286482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286482,0.000000,0.000000,0.250000,0,0);}
.m75_c00134{transform:matrix(0.287123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287123,0.000000,0.000000,0.250000,0,0);}
.m88_c00134{transform:matrix(0.287294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287294,0.000000,0.000000,0.250000,0,0);}
.m9d_c00134{transform:matrix(0.287469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287469,0.000000,0.000000,0.250000,0,0);}
.m7a_c00134{transform:matrix(0.287657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287657,0.000000,0.000000,0.250000,0,0);}
.m48_c00134{transform:matrix(0.287789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287789,0.000000,0.000000,0.250000,0,0);}
.m55_c00134{transform:matrix(0.288055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288055,0.000000,0.000000,0.250000,0,0);}
.m31_c00134{transform:matrix(0.288430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288430,0.000000,0.000000,0.250000,0,0);}
.m94_c00134{transform:matrix(0.288487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288487,0.000000,0.000000,0.250000,0,0);}
.m60_c00134{transform:matrix(0.288864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288864,0.000000,0.000000,0.250000,0,0);}
.m46_c00134{transform:matrix(0.289788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289788,0.000000,0.000000,0.250000,0,0);}
.m29_c00134{transform:matrix(0.289849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289849,0.000000,0.000000,0.250000,0,0);}
.m65_c00134{transform:matrix(0.290031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290031,0.000000,0.000000,0.250000,0,0);}
.m54_c00134{transform:matrix(0.290586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290586,0.000000,0.000000,0.250000,0,0);}
.m24_c00134{transform:matrix(0.291711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291711,0.000000,0.000000,0.250000,0,0);}
.maf_c00134{transform:matrix(0.291892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291892,0.000000,0.000000,0.250000,0,0);}
.m2e_c00134{transform:matrix(0.292438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292438,0.000000,0.000000,0.250000,0,0);}
.mac_c00134{transform:matrix(0.292809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292809,0.000000,0.000000,0.250000,0,0);}
.m20_c00134{transform:matrix(0.294081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294081,0.000000,0.000000,0.250000,0,0);}
.m37_c00134{transform:matrix(0.294929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294929,0.000000,0.000000,0.250000,0,0);}
.m83_c00134{transform:matrix(0.295135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295135,0.000000,0.000000,0.250000,0,0);}
.m25_c00134{transform:matrix(0.295249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295249,0.000000,0.000000,0.250000,0,0);}
.m33_c00134{transform:matrix(0.296310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296310,0.000000,0.000000,0.250000,0,0);}
.m8a_c00134{transform:matrix(0.297810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297810,0.000000,0.000000,0.250000,0,0);}
.m57_c00134{transform:matrix(0.297951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297951,0.000000,0.000000,0.250000,0,0);}
.m9_c00134{transform:matrix(0.298280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298280,0.000000,0.000000,0.250000,0,0);}
.m5_c00134{transform:matrix(0.298916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298916,0.000000,0.000000,0.250000,0,0);}
.m77_c00134{transform:matrix(0.298968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298968,0.000000,0.000000,0.250000,0,0);}
.ma9_c00134{transform:matrix(0.299334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299334,0.000000,0.000000,0.250000,0,0);}
.m1a_c00134{transform:matrix(0.299472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299472,0.000000,0.000000,0.250000,0,0);}
.m62_c00134{transform:matrix(0.300138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300138,0.000000,0.000000,0.250000,0,0);}
.m9c_c00134{transform:matrix(0.300550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300550,0.000000,0.000000,0.250000,0,0);}
.m6a_c00134{transform:matrix(0.300978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300978,0.000000,0.000000,0.250000,0,0);}
.mf_c00134{transform:matrix(0.301509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301509,0.000000,0.000000,0.250000,0,0);}
.m19_c00134{transform:matrix(0.302119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302119,0.000000,0.000000,0.250000,0,0);}
.m82_c00134{transform:matrix(0.302836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302836,0.000000,0.000000,0.250000,0,0);}
.mb_c00134{transform:matrix(0.304060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304060,0.000000,0.000000,0.250000,0,0);}
.maa_c00134{transform:matrix(0.304842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304842,0.000000,0.000000,0.250000,0,0);}
.m7_c00134{transform:matrix(0.305046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305046,0.000000,0.000000,0.250000,0,0);}
.mae_c00134{transform:matrix(0.305734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305734,0.000000,0.000000,0.250000,0,0);}
.m9e_c00134{transform:matrix(0.306542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306542,0.000000,0.000000,0.250000,0,0);}
.m8d_c00134{transform:matrix(0.307826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307826,0.000000,0.000000,0.250000,0,0);}
.m99_c00134{transform:matrix(0.308359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308359,0.000000,0.000000,0.250000,0,0);}
.m7d_c00134{transform:matrix(0.308515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308515,0.000000,0.000000,0.250000,0,0);}
.m5e_c00134{transform:matrix(0.309275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309275,0.000000,0.000000,0.250000,0,0);}
.m3_c00134{transform:matrix(0.309330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309330,0.000000,0.000000,0.250000,0,0);}
.m44_c00134{transform:matrix(0.309837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309837,0.000000,0.000000,0.250000,0,0);}
.m17_c00134{transform:matrix(0.312700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312700,0.000000,0.000000,0.250000,0,0);}
.m47_c00134{transform:matrix(0.314667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314667,0.000000,0.000000,0.250000,0,0);}
.m13_c00134{transform:matrix(0.314912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314912,0.000000,0.000000,0.250000,0,0);}
.m76_c00134{transform:matrix(0.315440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315440,0.000000,0.000000,0.250000,0,0);}
.m2b_c00134{transform:matrix(0.315683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315683,0.000000,0.000000,0.250000,0,0);}
.m70_c00134{transform:matrix(0.315747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315747,0.000000,0.000000,0.250000,0,0);}
.m5c_c00134{transform:matrix(0.316256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316256,0.000000,0.000000,0.250000,0,0);}
.ma7_c00134{transform:matrix(0.316463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316463,0.000000,0.000000,0.250000,0,0);}
.ma3_c00134{transform:matrix(0.316573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316573,0.000000,0.000000,0.250000,0,0);}
.ma1_c00134{transform:matrix(0.316599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316599,0.000000,0.000000,0.250000,0,0);}
.m66_c00134{transform:matrix(0.317506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317506,0.000000,0.000000,0.250000,0,0);}
.m4c_c00134{transform:matrix(0.319021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319021,0.000000,0.000000,0.250000,0,0);}
.m18_c00134{transform:matrix(0.319397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319397,0.000000,0.000000,0.250000,0,0);}
.m7e_c00134{transform:matrix(0.319869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319869,0.000000,0.000000,0.250000,0,0);}
.m81_c00134{transform:matrix(0.320608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320608,0.000000,0.000000,0.250000,0,0);}
.ma2_c00134{transform:matrix(0.321852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321852,0.000000,0.000000,0.250000,0,0);}
.m10_c00134{transform:matrix(0.323111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323111,0.000000,0.000000,0.250000,0,0);}
.m6f_c00134{transform:matrix(0.324270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324270,0.000000,0.000000,0.250000,0,0);}
.m58_c00134{transform:matrix(0.325016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325016,0.000000,0.000000,0.250000,0,0);}
.m4b_c00134{transform:matrix(0.327150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327150,0.000000,0.000000,0.250000,0,0);}
.m7f_c00134{transform:matrix(0.328340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328340,0.000000,0.000000,0.250000,0,0);}
.m4_c00134{transform:matrix(0.328994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328994,0.000000,0.000000,0.250000,0,0);}
.ma0_c00134{transform:matrix(0.330120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330120,0.000000,0.000000,0.250000,0,0);}
.m3c_c00134{transform:matrix(0.330188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330188,0.000000,0.000000,0.250000,0,0);}
.m40_c00134{transform:matrix(0.330925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330925,0.000000,0.000000,0.250000,0,0);}
.m59_c00134{transform:matrix(0.331173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331173,0.000000,0.000000,0.250000,0,0);}
.m9b_c00134{transform:matrix(0.334974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334974,0.000000,0.000000,0.250000,0,0);}
.m3a_c00134{transform:matrix(0.337490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337490,0.000000,0.000000,0.250000,0,0);}
.ma4_c00134{transform:matrix(0.340699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340699,0.000000,0.000000,0.250000,0,0);}
.m1e_c00134{transform:matrix(0.340749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340749,0.000000,0.000000,0.250000,0,0);}
.m80_c00134{transform:matrix(0.340869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340869,0.000000,0.000000,0.250000,0,0);}
.m5f_c00134{transform:matrix(0.342740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342740,0.000000,0.000000,0.250000,0,0);}
.m64_c00134{transform:matrix(0.343475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343475,0.000000,0.000000,0.250000,0,0);}
.m3d_c00134{transform:matrix(0.346573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346573,0.000000,0.000000,0.250000,0,0);}
.m6_c00134{transform:matrix(0.352447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352447,0.000000,0.000000,0.250000,0,0);}
.mb1_c00134{transform:matrix(0.360188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360188,0.000000,0.000000,0.250000,0,0);}
.m63_c00134{transform:matrix(0.360705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360705,0.000000,0.000000,0.250000,0,0);}
.mc_c00134{transform:matrix(0.364195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364195,0.000000,0.000000,0.250000,0,0);}
.v0_c00134{vertical-align:0.000000px;}
.ls4_c00134{letter-spacing:-2.813580px;}
.ls10_c00134{letter-spacing:-2.041855px;}
.lsd_c00134{letter-spacing:-0.289397px;}
.ls0_c00134{letter-spacing:0.000000px;}
.lsb_c00134{letter-spacing:1.133471px;}
.ls8_c00134{letter-spacing:1.358557px;}
.ls12_c00134{letter-spacing:1.728342px;}
.lsc_c00134{letter-spacing:2.355368px;}
.ls13_c00134{letter-spacing:2.564377px;}
.ls9_c00134{letter-spacing:3.119054px;}
.ls5_c00134{letter-spacing:3.255714px;}
.lsa_c00134{letter-spacing:3.464723px;}
.ls3_c00134{letter-spacing:3.682810px;}
.lsf_c00134{letter-spacing:3.778236px;}
.ls2_c00134{letter-spacing:4.019400px;}
.ls1_c00134{letter-spacing:4.108500px;}
.ls7_c00134{letter-spacing:4.276810px;}
.ls11_c00134{letter-spacing:4.474810px;}
.ls6_c00134{letter-spacing:4.504500px;}
.lse_c00134{letter-spacing:58.449798px;}
.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;}
}
.ws1_c00134{word-spacing:-23.216054px;}
.ws0_c00134{word-spacing:-20.097000px;}
.ws2_c00134{word-spacing:0.000000px;}
._0_c00134{margin-left:-13.263624px;}
._4_c00134{width:5.900479px;}
._3_c00134{width:7.234128px;}
._2_c00134{width:21.705156px;}
._5_c00134{width:29.502000px;}
._1_c00134{width:38.669400px;}
.fc0_c00134{color:transparent;}
.fs0_c00134{font-size:22.176000px;}
.fs6_c00134{font-size:58.449798px;}
.fs3_c00134{font-size:73.656198px;}
.fs2_c00134{font-size:80.388000px;}
.fs1_c00134{font-size:82.170000px;}
.fs5_c00134{font-size:85.536198px;}
.fs7_c00134{font-size:89.496198px;}
.fs4_c00134{font-size:90.090000px;}
.y0_c00134{bottom:0.000000px;}
.y1_c00134{bottom:76.500000px;}
.y1a_c00134{bottom:154.228185px;}
.y19_c00134{bottom:185.239935px;}
.y18_c00134{bottom:218.028735px;}
.y17_c00134{bottom:250.104735px;}
.y16_c00134{bottom:282.180735px;}
.y15_c00134{bottom:313.900335px;}
.y14_c00134{bottom:345.614985px;}
.y13_c00134{bottom:377.695935px;}
.y12_c00134{bottom:410.123385px;}
.y2_c00134{bottom:463.231935px;}
.y11_c00134{bottom:476.062335px;}
.y10_c00134{bottom:507.781935px;}
.yf_c00134{bottom:540.570735px;}
.ye_c00134{bottom:572.646735px;}
.yd_c00134{bottom:604.366335px;}
.yc_c00134{bottom:636.442335px;}
.yb_c00134{bottom:669.231135px;}
.ya_c00134{bottom:701.658585px;}
.y9_c00134{bottom:733.739535px;}
.y8_c00134{bottom:766.171935px;}
.y7_c00134{bottom:798.242985px;}
.y6_c00134{bottom:863.107785px;}
.y5_c00134{bottom:896.252985px;}
.y4_c00134{bottom:929.759535px;}
.y3_c00134{bottom:1078.729785px;}
.h2_c00134{height:23.128875px;}
.h8_c00134{height:38.927565px;}
.h5_c00134{height:72.289530px;}
.h4_c00134{height:78.896426px;}
.h3_c00134{height:80.645361px;}
.h7_c00134{height:83.949101px;}
.h9_c00134{height:87.835624px;}
.h6_c00134{height:88.418408px;}
.h1_c00134{height:1110.000000px;}
.h0_c00134{height:1263.000000px;}
.w1_c00134{width:733.500000px;}
.w0_c00134{width:892.500000px;}
.x0_c00134{left:0.000000px;}
.x2_c00134{left:29.155035px;}
.x2a_c00134{left:66.255285px;}
.x1e_c00134{left:67.502685px;}
.x4_c00134{left:68.962935px;}
.x1_c00134{left:79.500000px;}
.x15_c00134{left:101.687385px;}
.x1f_c00134{left:112.057635px;}
.x62_c00134{left:113.468385px;}
.x16_c00134{left:122.333835px;}
.x50_c00134{left:123.754485px;}
.x2b_c00134{left:132.496185px;}
.x37_c00134{left:133.941585px;}
.x5f_c00134{left:145.583985px;}
.x17_c00134{left:154.998885px;}
.xd_c00134{left:156.266085px;}
.x5_c00134{left:167.309535px;}
.x60_c00134{left:169.735035px;}
.x20_c00134{left:177.645135px;}
.x49_c00134{left:188.213385px;}
.x6_c00134{left:189.376635px;}
.x4b_c00134{left:199.756785px;}
.x18_c00134{left:200.811135px;}
.x21_c00134{left:210.201285px;}
.x2c_c00134{left:212.201085px;}
.x19_c00134{left:222.551535px;}
.x32_c00134{left:224.581035px;}
.x5e_c00134{left:233.585085px;}
.x3c_c00134{left:243.029685px;}
.x22_c00134{left:244.069185px;}
.x51_c00134{left:245.291835px;}
.x41_c00134{left:246.677835px;}
.x7_c00134{left:255.998685px;}
.x45_c00134{left:258.082635px;}
.x5b_c00134{left:265.433385px;}
.x23_c00134{left:267.363885px;}
.x2d_c00134{left:278.818185px;}
.x24_c00134{left:287.267835px;}
.x42_c00134{left:288.851835px;}
.x61_c00134{left:298.578585px;}
.xe_c00134{left:299.845785px;}
.x4a_c00134{left:300.885285px;}
.x54_c00134{left:310.146735px;}
.x46_c00134{left:311.280285px;}
.x3d_c00134{left:320.912985px;}
.x33_c00134{left:321.937635px;}
.xf_c00134{left:333.020685px;}
.x25_c00134{left:343.549335px;}
.x8_c00134{left:344.742285px;}
.x1a_c00134{left:354.662085px;}
.x4c_c00134{left:364.512585px;}
.x26_c00134{left:365.799585px;}
.x3e_c00134{left:376.872735px;}
.x10_c00134{left:388.282485px;}
.x52_c00134{left:398.929935px;}
.x55_c00134{left:407.023185px;}
.x43_c00134{left:410.334735px;}
.x56_c00134{left:416.645985px;}
.x11_c00134{left:421.046535px;}
.x57_c00134{left:426.630135px;}
.x2e_c00134{left:432.104835px;}
.x38_c00134{left:443.128485px;}
.x5c_c00134{left:452.281035px;}
.x1b_c00134{left:454.196685px;}
.x9_c00134{left:465.616335px;}
.x2f_c00134{left:475.922235px;}
.x5d_c00134{left:486.094485px;}
.xa_c00134{left:487.673535px;}
.x1c_c00134{left:498.380385px;}
.x39_c00134{left:509.097135px;}
.x12_c00134{left:510.111885px;}
.xb_c00134{left:520.388085px;}
.x3a_c00134{left:531.198885px;}
.x3f_c00134{left:540.989985px;}
.x27_c00134{left:542.187885px;}
.x30_c00134{left:552.028485px;}
.x34_c00134{left:553.652085px;}
.x3b_c00134{left:563.967885px;}
.x47_c00134{left:565.007385px;}
.x13_c00134{left:575.016285px;}
.x35_c00134{left:585.960735px;}
.x4d_c00134{left:595.553835px;}
.x58_c00134{left:596.771535px;}
.x28_c00134{left:597.801135px;}
.x59_c00134{left:607.250685px;}
.x14_c00134{left:618.685185px;}
.x40_c00134{left:619.873185px;}
.x4e_c00134{left:629.778135px;}
.x1d_c00134{left:631.644285px;}
.x44_c00134{left:641.692785px;}
.x3_c00134{left:643.766835px;}
.x48_c00134{left:651.835335px;}
.xc_c00134{left:653.067885px;}
.x4f_c00134{left:661.487835px;}
.x5a_c00134{left:663.205485px;}
.x31_c00134{left:666.205185px;}
.x36_c00134{left:674.149935px;}
.x53_c00134{left:676.134885px;}
.x29_c00134{left:685.485435px;}
@media print{
.v0_c00134{vertical-align:0.000000pt;}
.ls4_c00134{letter-spacing:-2.500960pt;}
.ls10_c00134{letter-spacing:-1.814982pt;}
.lsd_c00134{letter-spacing:-0.257242pt;}
.ls0_c00134{letter-spacing:0.000000pt;}
.lsb_c00134{letter-spacing:1.007530pt;}
.ls8_c00134{letter-spacing:1.207606pt;}
.ls12_c00134{letter-spacing:1.536304pt;}
.lsc_c00134{letter-spacing:2.093661pt;}
.ls13_c00134{letter-spacing:2.279446pt;}
.ls9_c00134{letter-spacing:2.772493pt;}
.ls5_c00134{letter-spacing:2.893968pt;}
.lsa_c00134{letter-spacing:3.079754pt;}
.ls3_c00134{letter-spacing:3.273609pt;}
.lsf_c00134{letter-spacing:3.358432pt;}
.ls2_c00134{letter-spacing:3.572800pt;}
.ls1_c00134{letter-spacing:3.652000pt;}
.ls7_c00134{letter-spacing:3.801609pt;}
.ls11_c00134{letter-spacing:3.977609pt;}
.ls6_c00134{letter-spacing:4.004000pt;}
.lse_c00134{letter-spacing:51.955376pt;}
.ws1_c00134{word-spacing:-20.636493pt;}
.ws0_c00134{word-spacing:-17.864000pt;}
.ws2_c00134{word-spacing:0.000000pt;}
._0_c00134{margin-left:-11.789888pt;}
._4_c00134{width:5.244870pt;}
._3_c00134{width:6.430336pt;}
._2_c00134{width:19.293472pt;}
._5_c00134{width:26.224000pt;}
._1_c00134{width:34.372800pt;}
.fs0_c00134{font-size:19.712000pt;}
.fs6_c00134{font-size:51.955376pt;}
.fs3_c00134{font-size:65.472176pt;}
.fs2_c00134{font-size:71.456000pt;}
.fs1_c00134{font-size:73.040000pt;}
.fs5_c00134{font-size:76.032176pt;}
.fs7_c00134{font-size:79.552176pt;}
.fs4_c00134{font-size:80.080000pt;}
.y0_c00134{bottom:0.000000pt;}
.y1_c00134{bottom:68.000000pt;}
.y1a_c00134{bottom:137.091720pt;}
.y19_c00134{bottom:164.657720pt;}
.y18_c00134{bottom:193.803320pt;}
.y17_c00134{bottom:222.315320pt;}
.y16_c00134{bottom:250.827320pt;}
.y15_c00134{bottom:279.022520pt;}
.y14_c00134{bottom:307.213320pt;}
.y13_c00134{bottom:335.729720pt;}
.y12_c00134{bottom:364.554120pt;}
.y2_c00134{bottom:411.761720pt;}
.y11_c00134{bottom:423.166520pt;}
.y10_c00134{bottom:451.361720pt;}
.yf_c00134{bottom:480.507320pt;}
.ye_c00134{bottom:509.019320pt;}
.yd_c00134{bottom:537.214520pt;}
.yc_c00134{bottom:565.726520pt;}
.yb_c00134{bottom:594.872120pt;}
.ya_c00134{bottom:623.696520pt;}
.y9_c00134{bottom:652.212920pt;}
.y8_c00134{bottom:681.041720pt;}
.y7_c00134{bottom:709.549320pt;}
.y6_c00134{bottom:767.206920pt;}
.y5_c00134{bottom:796.669320pt;}
.y4_c00134{bottom:826.452920pt;}
.y3_c00134{bottom:958.870920pt;}
.h2_c00134{height:20.559000pt;}
.h8_c00134{height:34.602280pt;}
.h5_c00134{height:64.257360pt;}
.h4_c00134{height:70.130156pt;}
.h3_c00134{height:71.684766pt;}
.h7_c00134{height:74.621423pt;}
.h9_c00134{height:78.076110pt;}
.h6_c00134{height:78.594141pt;}
.h1_c00134{height:986.666667pt;}
.h0_c00134{height:1122.666667pt;}
.w1_c00134{width:652.000000pt;}
.w0_c00134{width:793.333333pt;}
.x0_c00134{left:0.000000pt;}
.x2_c00134{left:25.915587pt;}
.x2a_c00134{left:58.893587pt;}
.x1e_c00134{left:60.002387pt;}
.x4_c00134{left:61.300387pt;}
.x1_c00134{left:70.666667pt;}
.x15_c00134{left:90.388787pt;}
.x1f_c00134{left:99.606787pt;}
.x62_c00134{left:100.860787pt;}
.x16_c00134{left:108.741187pt;}
.x50_c00134{left:110.003987pt;}
.x2b_c00134{left:117.774387pt;}
.x37_c00134{left:119.059187pt;}
.x5f_c00134{left:129.407987pt;}
.x17_c00134{left:137.776787pt;}
.xd_c00134{left:138.903187pt;}
.x5_c00134{left:148.719587pt;}
.x60_c00134{left:150.875587pt;}
.x20_c00134{left:157.906787pt;}
.x49_c00134{left:167.300787pt;}
.x6_c00134{left:168.334787pt;}
.x4b_c00134{left:177.561587pt;}
.x18_c00134{left:178.498787pt;}
.x21_c00134{left:186.845587pt;}
.x2c_c00134{left:188.623187pt;}
.x19_c00134{left:197.823587pt;}
.x32_c00134{left:199.627587pt;}
.x5e_c00134{left:207.631187pt;}
.x3c_c00134{left:216.026387pt;}
.x22_c00134{left:216.950387pt;}
.x51_c00134{left:218.037187pt;}
.x41_c00134{left:219.269187pt;}
.x7_c00134{left:227.554387pt;}
.x45_c00134{left:229.406787pt;}
.x5b_c00134{left:235.940787pt;}
.x23_c00134{left:237.656787pt;}
.x2d_c00134{left:247.838387pt;}
.x24_c00134{left:255.349187pt;}
.x42_c00134{left:256.757187pt;}
.x61_c00134{left:265.403187pt;}
.xe_c00134{left:266.529587pt;}
.x4a_c00134{left:267.453587pt;}
.x54_c00134{left:275.685987pt;}
.x46_c00134{left:276.693587pt;}
.x3d_c00134{left:285.255987pt;}
.x33_c00134{left:286.166787pt;}
.xf_c00134{left:296.018387pt;}
.x25_c00134{left:305.377187pt;}
.x8_c00134{left:306.437587pt;}
.x1a_c00134{left:315.255187pt;}
.x4c_c00134{left:324.011187pt;}
.x26_c00134{left:325.155187pt;}
.x3e_c00134{left:334.997987pt;}
.x10_c00134{left:345.139987pt;}
.x52_c00134{left:354.604387pt;}
.x55_c00134{left:361.798387pt;}
.x43_c00134{left:364.741987pt;}
.x56_c00134{left:370.351987pt;}
.x11_c00134{left:374.263587pt;}
.x57_c00134{left:379.226787pt;}
.x2e_c00134{left:384.093187pt;}
.x38_c00134{left:393.891987pt;}
.x5c_c00134{left:402.027587pt;}
.x1b_c00134{left:403.730387pt;}
.x9_c00134{left:413.881187pt;}
.x2f_c00134{left:423.041987pt;}
.x5d_c00134{left:432.083987pt;}
.xa_c00134{left:433.487587pt;}
.x1c_c00134{left:443.004787pt;}
.x39_c00134{left:452.530787pt;}
.x12_c00134{left:453.432787pt;}
.xb_c00134{left:462.567187pt;}
.x3a_c00134{left:472.176787pt;}
.x3f_c00134{left:480.879987pt;}
.x27_c00134{left:481.944787pt;}
.x30_c00134{left:490.691987pt;}
.x34_c00134{left:492.135187pt;}
.x3b_c00134{left:501.304787pt;}
.x47_c00134{left:502.228787pt;}
.x13_c00134{left:511.125587pt;}
.x35_c00134{left:520.853987pt;}
.x4d_c00134{left:529.381187pt;}
.x58_c00134{left:530.463587pt;}
.x28_c00134{left:531.378787pt;}
.x59_c00134{left:539.778387pt;}
.x14_c00134{left:549.942387pt;}
.x40_c00134{left:550.998387pt;}
.x4e_c00134{left:559.802787pt;}
.x1d_c00134{left:561.461587pt;}
.x44_c00134{left:570.393587pt;}
.x3_c00134{left:572.237187pt;}
.x48_c00134{left:579.409187pt;}
.xc_c00134{left:580.504787pt;}
.x4f_c00134{left:587.989187pt;}
.x5a_c00134{left:589.515987pt;}
.x31_c00134{left:592.182387pt;}
.x36_c00134{left:599.244387pt;}
.x53_c00134{left:601.008787pt;}
.x29_c00134{left:609.320387pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_16a2394d80b2f573bfdf0c1b.woff2')format("woff");}.ff1_c00135{font-family:ff1_c00135;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00135;src:url('chunks/assets/font_21e63c6920cf77120e8a94c7.woff2')format("woff");}.ff2_c00135{font-family:ff2_c00135;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00135;src:url('chunks/assets/font_13a62fdfcf46c4bcbb8546b2.woff2')format("woff");}.ff3_c00135{font-family:ff3_c00135;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00135;src:url('chunks/assets/font_6002e3052753a92c32d71b9e.woff2')format("woff");}.ff4_c00135{font-family:ff4_c00135;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00135;src:url('chunks/assets/font_e6b65e1d64c8d7d4693f4f8c.woff2')format("woff");}.ff5_c00135{font-family:ff5_c00135;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m26_c00135{transform:matrix(0.149312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149312,0.000000,0.000000,0.250000,0,0);}
.m85_c00135{transform:matrix(0.182837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182837,0.000000,0.000000,0.250000,0,0);}
.m9b_c00135{transform:matrix(0.206081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206081,0.000000,0.000000,0.250000,0,0);}
.m74_c00135{transform:matrix(0.210648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210648,0.000000,0.000000,0.250000,0,0);}
.m3e_c00135{transform:matrix(0.213095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213095,0.000000,0.000000,0.250000,0,0);}
.m56_c00135{transform:matrix(0.216830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216830,0.000000,0.000000,0.250000,0,0);}
.m0_c00135{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00135{transform:matrix(0.250784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250784,0.000000,0.000000,0.250000,0,0);}
.m21_c00135{transform:matrix(0.252735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252735,0.000000,0.000000,0.250000,0,0);}
.m3b_c00135{transform:matrix(0.253253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253253,0.000000,0.000000,0.250000,0,0);}
.m67_c00135{transform:matrix(0.255049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255049,0.000000,0.000000,0.250000,0,0);}
.mb1_c00135{transform:matrix(0.255643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255643,0.000000,0.000000,0.250000,0,0);}
.mb0_c00135{transform:matrix(0.255809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255809,0.000000,0.000000,0.250000,0,0);}
.m64_c00135{transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);}
.m47_c00135{transform:matrix(0.257934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257934,0.000000,0.000000,0.250000,0,0);}
.m92_c00135{transform:matrix(0.258304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258304,0.000000,0.000000,0.250000,0,0);}
.m7e_c00135{transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);}
.m30_c00135{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m52_c00135{transform:matrix(0.262138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262138,0.000000,0.000000,0.250000,0,0);}
.mb_c00135{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m36_c00135{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m66_c00135{transform:matrix(0.264060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264060,0.000000,0.000000,0.250000,0,0);}
.m38_c00135{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m87_c00135{transform:matrix(0.267205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267205,0.000000,0.000000,0.250000,0,0);}
.m8_c00135{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m40_c00135{transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);}
.m9d_c00135{transform:matrix(0.270439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270439,0.000000,0.000000,0.250000,0,0);}
.m25_c00135{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m44_c00135{transform:matrix(0.271337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271337,0.000000,0.000000,0.250000,0,0);}
.m58_c00135{transform:matrix(0.271794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271794,0.000000,0.000000,0.250000,0,0);}
.m61_c00135{transform:matrix(0.272044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272044,0.000000,0.000000,0.250000,0,0);}
.m2e_c00135{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m41_c00135{transform:matrix(0.272544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272544,0.000000,0.000000,0.250000,0,0);}
.m23_c00135{transform:matrix(0.273168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273168,0.000000,0.000000,0.250000,0,0);}
.m15_c00135{transform:matrix(0.273547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273547,0.000000,0.000000,0.250000,0,0);}
.ma6_c00135{transform:matrix(0.273602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273602,0.000000,0.000000,0.250000,0,0);}
.m9c_c00135{transform:matrix(0.273612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273612,0.000000,0.000000,0.250000,0,0);}
.m11_c00135{transform:matrix(0.274021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274021,0.000000,0.000000,0.250000,0,0);}
.me_c00135{transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);}
.m65_c00135{transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);}
.mad_c00135{transform:matrix(0.274212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274212,0.000000,0.000000,0.250000,0,0);}
.m57_c00135{transform:matrix(0.274236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274236,0.000000,0.000000,0.250000,0,0);}
.m83_c00135{transform:matrix(0.274278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274278,0.000000,0.000000,0.250000,0,0);}
.m2_c00135{transform:matrix(0.274677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274677,0.000000,0.000000,0.250000,0,0);}
.m1a_c00135{transform:matrix(0.276792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276792,0.000000,0.000000,0.250000,0,0);}
.m94_c00135{transform:matrix(0.277304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277304,0.000000,0.000000,0.250000,0,0);}
.m78_c00135{transform:matrix(0.277360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277360,0.000000,0.000000,0.250000,0,0);}
.m88_c00135{transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);}
.m4b_c00135{transform:matrix(0.277905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277905,0.000000,0.000000,0.250000,0,0);}
.m3_c00135{transform:matrix(0.278243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278243,0.000000,0.000000,0.250000,0,0);}
.m80_c00135{transform:matrix(0.278440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278440,0.000000,0.000000,0.250000,0,0);}
.m98_c00135{transform:matrix(0.278910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278910,0.000000,0.000000,0.250000,0,0);}
.m8c_c00135{transform:matrix(0.280240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280240,0.000000,0.000000,0.250000,0,0);}
.m8a_c00135{transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);}
.m20_c00135{transform:matrix(0.282138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282138,0.000000,0.000000,0.250000,0,0);}
.m31_c00135{transform:matrix(0.282795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282795,0.000000,0.000000,0.250000,0,0);}
.m4c_c00135{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m32_c00135{transform:matrix(0.283931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283931,0.000000,0.000000,0.250000,0,0);}
.m2a_c00135{transform:matrix(0.284299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284299,0.000000,0.000000,0.250000,0,0);}
.m7a_c00135{transform:matrix(0.284905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284905,0.000000,0.000000,0.250000,0,0);}
.m82_c00135{transform:matrix(0.285021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285021,0.000000,0.000000,0.250000,0,0);}
.m70_c00135{transform:matrix(0.285213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285213,0.000000,0.000000,0.250000,0,0);}
.m33_c00135{transform:matrix(0.285711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285711,0.000000,0.000000,0.250000,0,0);}
.m29_c00135{transform:matrix(0.285995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285995,0.000000,0.000000,0.250000,0,0);}
.m8b_c00135{transform:matrix(0.286926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286926,0.000000,0.000000,0.250000,0,0);}
.m2b_c00135{transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);}
.m7b_c00135{transform:matrix(0.287432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287432,0.000000,0.000000,0.250000,0,0);}
.m37_c00135{transform:matrix(0.287963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287963,0.000000,0.000000,0.250000,0,0);}
.m1f_c00135{transform:matrix(0.288277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288277,0.000000,0.000000,0.250000,0,0);}
.m4f_c00135{transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);}
.m6d_c00135{transform:matrix(0.288595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288595,0.000000,0.000000,0.250000,0,0);}
.m71_c00135{transform:matrix(0.288623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288623,0.000000,0.000000,0.250000,0,0);}
.m6c_c00135{transform:matrix(0.288641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288641,0.000000,0.000000,0.250000,0,0);}
.maf_c00135{transform:matrix(0.290777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290777,0.000000,0.000000,0.250000,0,0);}
.m5a_c00135{transform:matrix(0.291354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291354,0.000000,0.000000,0.250000,0,0);}
.m14_c00135{transform:matrix(0.291407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291407,0.000000,0.000000,0.250000,0,0);}
.m7_c00135{transform:matrix(0.291422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291422,0.000000,0.000000,0.250000,0,0);}
.m8e_c00135{transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);}
.m6a_c00135{transform:matrix(0.292497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292497,0.000000,0.000000,0.250000,0,0);}
.m76_c00135{transform:matrix(0.292738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292738,0.000000,0.000000,0.250000,0,0);}
.m1d_c00135{transform:matrix(0.293763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293763,0.000000,0.000000,0.250000,0,0);}
.m2c_c00135{transform:matrix(0.294374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294374,0.000000,0.000000,0.250000,0,0);}
.m5e_c00135{transform:matrix(0.294467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294467,0.000000,0.000000,0.250000,0,0);}
.m95_c00135{transform:matrix(0.295090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295090,0.000000,0.000000,0.250000,0,0);}
.m13_c00135{transform:matrix(0.295521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295521,0.000000,0.000000,0.250000,0,0);}
.m91_c00135{transform:matrix(0.296228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296228,0.000000,0.000000,0.250000,0,0);}
.m60_c00135{transform:matrix(0.296343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296343,0.000000,0.000000,0.250000,0,0);}
.m68_c00135{transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);}
.m5_c00135{transform:matrix(0.297888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297888,0.000000,0.000000,0.250000,0,0);}
.m62_c00135{transform:matrix(0.298761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298761,0.000000,0.000000,0.250000,0,0);}
.m3c_c00135{transform:matrix(0.298770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298770,0.000000,0.000000,0.250000,0,0);}
.m9e_c00135{transform:matrix(0.299336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299336,0.000000,0.000000,0.250000,0,0);}
.m86_c00135{transform:matrix(0.300614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300614,0.000000,0.000000,0.250000,0,0);}
.m35_c00135{transform:matrix(0.300785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300785,0.000000,0.000000,0.250000,0,0);}
.m9_c00135{transform:matrix(0.302102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302102,0.000000,0.000000,0.250000,0,0);}
.m5f_c00135{transform:matrix(0.302117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302117,0.000000,0.000000,0.250000,0,0);}
.m53_c00135{transform:matrix(0.302220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302220,0.000000,0.000000,0.250000,0,0);}
.m2d_c00135{transform:matrix(0.302679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302679,0.000000,0.000000,0.250000,0,0);}
.m10_c00135{transform:matrix(0.303884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303884,0.000000,0.000000,0.250000,0,0);}
.m22_c00135{transform:matrix(0.304242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304242,0.000000,0.000000,0.250000,0,0);}
.m4e_c00135{transform:matrix(0.304295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304295,0.000000,0.000000,0.250000,0,0);}
.m6_c00135{transform:matrix(0.305180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305180,0.000000,0.000000,0.250000,0,0);}
.m24_c00135{transform:matrix(0.306962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306962,0.000000,0.000000,0.250000,0,0);}
.m1c_c00135{transform:matrix(0.307025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307025,0.000000,0.000000,0.250000,0,0);}
.m7f_c00135{transform:matrix(0.307257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307257,0.000000,0.000000,0.250000,0,0);}
.m12_c00135{transform:matrix(0.307602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307602,0.000000,0.000000,0.250000,0,0);}
.m59_c00135{transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);}
.ma0_c00135{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m9f_c00135{transform:matrix(0.308858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308858,0.000000,0.000000,0.250000,0,0);}
.m27_c00135{transform:matrix(0.310470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310470,0.000000,0.000000,0.250000,0,0);}
.ma3_c00135{transform:matrix(0.310547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310547,0.000000,0.000000,0.250000,0,0);}
.m34_c00135{transform:matrix(0.310710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310710,0.000000,0.000000,0.250000,0,0);}
.m97_c00135{transform:matrix(0.310939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310939,0.000000,0.000000,0.250000,0,0);}
.m16_c00135{transform:matrix(0.311969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311969,0.000000,0.000000,0.250000,0,0);}
.m5b_c00135{transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);}
.mab_c00135{transform:matrix(0.312232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312232,0.000000,0.000000,0.250000,0,0);}
.m1e_c00135{transform:matrix(0.312381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312381,0.000000,0.000000,0.250000,0,0);}
.ma_c00135{transform:matrix(0.312509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312509,0.000000,0.000000,0.250000,0,0);}
.m5d_c00135{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.m1b_c00135{transform:matrix(0.313455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313455,0.000000,0.000000,0.250000,0,0);}
.m72_c00135{transform:matrix(0.313628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313628,0.000000,0.000000,0.250000,0,0);}
.m96_c00135{transform:matrix(0.313920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313920,0.000000,0.000000,0.250000,0,0);}
.m99_c00135{transform:matrix(0.314182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314182,0.000000,0.000000,0.250000,0,0);}
.m50_c00135{transform:matrix(0.314602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314602,0.000000,0.000000,0.250000,0,0);}
.m9a_c00135{transform:matrix(0.314940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314940,0.000000,0.000000,0.250000,0,0);}
.m90_c00135{transform:matrix(0.315663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315663,0.000000,0.000000,0.250000,0,0);}
.m69_c00135{transform:matrix(0.315717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315717,0.000000,0.000000,0.250000,0,0);}
.m3f_c00135{transform:matrix(0.317237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317237,0.000000,0.000000,0.250000,0,0);}
.m5c_c00135{transform:matrix(0.317979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317979,0.000000,0.000000,0.250000,0,0);}
.maa_c00135{transform:matrix(0.317995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317995,0.000000,0.000000,0.250000,0,0);}
.m77_c00135{transform:matrix(0.318628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318628,0.000000,0.000000,0.250000,0,0);}
.m63_c00135{transform:matrix(0.318985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318985,0.000000,0.000000,0.250000,0,0);}
.m48_c00135{transform:matrix(0.319130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319130,0.000000,0.000000,0.250000,0,0);}
.mac_c00135{transform:matrix(0.319554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319554,0.000000,0.000000,0.250000,0,0);}
.m84_c00135{transform:matrix(0.319808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319808,0.000000,0.000000,0.250000,0,0);}
.m73_c00135{transform:matrix(0.320082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320082,0.000000,0.000000,0.250000,0,0);}
.m75_c00135{transform:matrix(0.320544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320544,0.000000,0.000000,0.250000,0,0);}
.mae_c00135{transform:matrix(0.321509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321509,0.000000,0.000000,0.250000,0,0);}
.m4_c00135{transform:matrix(0.322445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322445,0.000000,0.000000,0.250000,0,0);}
.m28_c00135{transform:matrix(0.322852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322852,0.000000,0.000000,0.250000,0,0);}
.m89_c00135{transform:matrix(0.323406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323406,0.000000,0.000000,0.250000,0,0);}
.m6b_c00135{transform:matrix(0.323984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323984,0.000000,0.000000,0.250000,0,0);}
.ma7_c00135{transform:matrix(0.324185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324185,0.000000,0.000000,0.250000,0,0);}
.md_c00135{transform:matrix(0.324455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324455,0.000000,0.000000,0.250000,0,0);}
.ma1_c00135{transform:matrix(0.325817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325817,0.000000,0.000000,0.250000,0,0);}
.m4a_c00135{transform:matrix(0.326148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326148,0.000000,0.000000,0.250000,0,0);}
.m8f_c00135{transform:matrix(0.326606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326606,0.000000,0.000000,0.250000,0,0);}
.ma2_c00135{transform:matrix(0.327017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327017,0.000000,0.000000,0.250000,0,0);}
.ma5_c00135{transform:matrix(0.327070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327070,0.000000,0.000000,0.250000,0,0);}
.mc_c00135{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.m2f_c00135{transform:matrix(0.328287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328287,0.000000,0.000000,0.250000,0,0);}
.m8d_c00135{transform:matrix(0.328890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328890,0.000000,0.000000,0.250000,0,0);}
.m42_c00135{transform:matrix(0.329131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329131,0.000000,0.000000,0.250000,0,0);}
.m7c_c00135{transform:matrix(0.329535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329535,0.000000,0.000000,0.250000,0,0);}
.m4d_c00135{transform:matrix(0.329886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329886,0.000000,0.000000,0.250000,0,0);}
.m18_c00135{transform:matrix(0.330230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330230,0.000000,0.000000,0.250000,0,0);}
.m45_c00135{transform:matrix(0.330308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330308,0.000000,0.000000,0.250000,0,0);}
.m17_c00135{transform:matrix(0.330939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330939,0.000000,0.000000,0.250000,0,0);}
.m3d_c00135{transform:matrix(0.331612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331612,0.000000,0.000000,0.250000,0,0);}
.m19_c00135{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m3a_c00135{transform:matrix(0.334985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334985,0.000000,0.000000,0.250000,0,0);}
.m79_c00135{transform:matrix(0.335559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335559,0.000000,0.000000,0.250000,0,0);}
.m6f_c00135{transform:matrix(0.338026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338026,0.000000,0.000000,0.250000,0,0);}
.ma9_c00135{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.ma4_c00135{transform:matrix(0.339553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339553,0.000000,0.000000,0.250000,0,0);}
.m43_c00135{transform:matrix(0.339641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339641,0.000000,0.000000,0.250000,0,0);}
.m54_c00135{transform:matrix(0.347027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347027,0.000000,0.000000,0.250000,0,0);}
.m7d_c00135{transform:matrix(0.348765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348765,0.000000,0.000000,0.250000,0,0);}
.mf_c00135{transform:matrix(0.350792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350792,0.000000,0.000000,0.250000,0,0);}
.ma8_c00135{transform:matrix(0.352879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352879,0.000000,0.000000,0.250000,0,0);}
.m49_c00135{transform:matrix(0.355222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355222,0.000000,0.000000,0.250000,0,0);}
.m6e_c00135{transform:matrix(0.358241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358241,0.000000,0.000000,0.250000,0,0);}
.m81_c00135{transform:matrix(0.358261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358261,0.000000,0.000000,0.250000,0,0);}
.m39_c00135{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m46_c00135{transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);}
.m93_c00135{transform:matrix(0.369090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369090,0.000000,0.000000,0.250000,0,0);}
.m55_c00135{transform:matrix(0.371961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371961,0.000000,0.000000,0.250000,0,0);}
.m51_c00135{transform:matrix(0.406235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406235,0.000000,0.000000,0.250000,0,0);}
.v0_c00135{vertical-align:0.000000px;}
.v1_c00135{vertical-align:48.450600px;}
.ls8_c00135{letter-spacing:-2.744280px;}
.lse_c00135{letter-spacing:-2.375762px;}
.ls12_c00135{letter-spacing:-2.258150px;}
.ls10_c00135{letter-spacing:-1.897474px;}
.ls15_c00135{letter-spacing:-1.427026px;}
.lsb_c00135{letter-spacing:-0.407722px;}
.ls4_c00135{letter-spacing:0.000000px;}
.lsa_c00135{letter-spacing:0.274428px;}
.ls11_c00135{letter-spacing:0.564538px;}
.ls0_c00135{letter-spacing:1.246687px;}
.lsf_c00135{letter-spacing:1.960200px;}
.ls17_c00135{letter-spacing:2.320877px;}
.ls3_c00135{letter-spacing:2.555309px;}
.ls14_c00135{letter-spacing:3.332340px;}
.lsd_c00135{letter-spacing:3.524400px;}
.ls2_c00135{letter-spacing:3.779266px;}
.ls9_c00135{letter-spacing:3.910500px;}
.ls7_c00135{letter-spacing:3.920400px;}
.ls6_c00135{letter-spacing:4.108500px;}
.ls5_c00135{letter-spacing:4.316400px;}
.ls1_c00135{letter-spacing:8.076024px;}
.lsc_c00135{letter-spacing:49.896198px;}
.ls13_c00135{letter-spacing:51.321798px;}
.ls16_c00135{letter-spacing:52.747398px;}
.sc__c00135{text-shadow:none;}
.sc0_c00135{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00135{-webkit-text-stroke:0px transparent;}
.sc0_c00135{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00135{word-spacing:-19.602000px;}
.ws2_c00135{word-spacing:-19.194278px;}
.ws6_c00135{word-spacing:-17.343850px;}
.ws3_c00135{word-spacing:-17.226238px;}
.ws7_c00135{word-spacing:0.000000px;}
.ws1_c00135{word-spacing:0.470448px;}
.ws5_c00135{word-spacing:2.430648px;}
.ws4_c00135{word-spacing:3.606768px;}
._4_c00135{margin-left:-11.760804px;}
._f_c00135{margin-left:-10.349856px;}
._11_c00135{margin-left:-8.851550px;}
._9_c00135{margin-left:-4.077612px;}
._5_c00135{width:2.587860px;}
._e_c00135{width:4.390848px;}
._1_c00135{width:6.272640px;}
._7_c00135{width:7.762392px;}
._3_c00135{width:9.095328px;}
._6_c00135{width:10.585080px;}
._13_c00135{width:12.623688px;}
._2_c00135{width:23.679216px;}
._14_c00135{width:27.599616px;}
._0_c00135{width:28.854144px;}
._b_c00135{width:30.343896px;}
._8_c00135{width:32.304096px;}
._c_c00135{width:33.825211px;}
._15_c00135{width:37.243800px;}
._a_c00135{width:41.762556px;}
._10_c00135{width:43.673652px;}
._d_c00135{width:52.846992px;}
._12_c00135{width:429.600600px;}
.fc0_c00135{color:transparent;}
.fs10_c00135{font-size:20.196000px;}
.fs1_c00135{font-size:22.176000px;}
.fs3_c00135{font-size:22.374000px;}
.fs0_c00135{font-size:27.720000px;}
.fse_c00135{font-size:33.660000px;}
.fs9_c00135{font-size:37.818000px;}
.fsb_c00135{font-size:39.204000px;}
.fs7_c00135{font-size:39.600000px;}
.fsa_c00135{font-size:49.896198px;}
.fsd_c00135{font-size:51.321798px;}
.fsf_c00135{font-size:52.747398px;}
.fsc_c00135{font-size:70.488000px;}
.fs8_c00135{font-size:78.210000px;}
.fs5_c00135{font-size:78.408000px;}
.fs4_c00135{font-size:82.170000px;}
.fs2_c00135{font-size:86.328000px;}
.fs6_c00135{font-size:120.384000px;}
.y0_c00135{bottom:0.000000px;}
.y25_c00135{bottom:24.145155px;}
.y24_c00135{bottom:66.910185px;}
.y1_c00135{bottom:76.500000px;}
.y23_c00135{bottom:153.871785px;}
.y22_c00135{bottom:185.239935px;}
.y21_c00135{bottom:218.023785px;}
.y20_c00135{bottom:244.753785px;}
.y1f_c00135{bottom:250.104735px;}
.y1e_c00135{bottom:282.537135px;}
.y1d_c00135{bottom:314.964585px;}
.y1c_c00135{bottom:355.599135px;}
.y1b_c00135{bottom:377.334585px;}
.y1a_c00135{bottom:379.477935px;}
.y2_c00135{bottom:388.031535px;}
.y19_c00135{bottom:412.623135px;}
.y18_c00135{bottom:445.050585px;}
.y17_c00135{bottom:477.487935px;}
.y16_c00135{bottom:509.202585px;}
.y15_c00135{bottom:541.278585px;}
.y14_c00135{bottom:573.359535px;}
.y13_c00135{bottom:605.786985px;}
.y12_c00135{bottom:624.324735px;}
.y11_c00135{bottom:638.219385px;}
.y10_c00135{bottom:661.741785px;}
.yf_c00135{bottom:671.008185px;}
.ye_c00135{bottom:703.796985px;}
.yd_c00135{bottom:735.877935px;}
.yc_c00135{bottom:764.028585px;}
.yb_c00135{bottom:767.953935px;}
.ya_c00135{bottom:831.388185px;}
.y9_c00135{bottom:864.176985px;}
.y8_c00135{bottom:896.609385px;}
.y7_c00135{bottom:929.398185px;}
.y6_c00135{bottom:989.634735px;}
.y5_c00135{bottom:1079.086185px;}
.y4_c00135{bottom:1086.212700px;}
.y3_c00135{bottom:1105.816185px;}
.h12_c00135{height:21.063797px;}
.h5_c00135{height:21.958857px;}
.h3_c00135{height:23.128875px;}
.h2_c00135{height:28.911094px;}
.h10_c00135{height:33.035449px;}
.hc_c00135{height:33.230868px;}
.hf_c00135{height:34.180317px;}
.h11_c00135{height:35.129767px;}
.hb_c00135{height:37.116299px;}
.hd_c00135{height:38.476582px;}
.h9_c00135{height:41.301563px;}
.he_c00135{height:69.180117px;}
.ha_c00135{height:76.758838px;}
.h7_c00135{height:76.953164px;}
.h6_c00135{height:80.605239px;}
.h4_c00135{height:84.726211px;}
.h8_c00135{height:118.150313px;}
.h1_c00135{height:1110.000000px;}
.h0_c00135{height:1263.000000px;}
.w1_c00135{width:733.500000px;}
.w0_c00135{width:892.500000px;}
.x0_c00135{left:0.000000px;}
.x2_c00135{left:45.524685px;}
.x3b_c00135{left:72.160635px;}
.x7_c00135{left:73.254585px;}
.x58_c00135{left:74.284185px;}
.x27_c00135{left:75.650385px;}
.x1_c00135{left:79.500000px;}
.x59_c00135{left:84.441585px;}
.x35_c00135{left:94.603935px;}
.x67_c00135{left:95.851335px;}
.xf_c00135{left:106.181985px;}
.x5a_c00135{left:107.429385px;}
.x8_c00135{left:117.062085px;}
.x63_c00135{left:118.210485px;}
.x1b_c00135{left:127.486785px;}
.x5e_c00135{left:129.179685px;}
.x9_c00135{left:139.490535px;}
.x69_c00135{left:142.118985px;}
.x42_c00135{left:150.568635px;}
.x52_c00135{left:151.622985px;}
.x17_c00135{left:161.077485px;}
.x3f_c00135{left:162.300135px;}
.x36_c00135{left:172.309035px;}
.x6a_c00135{left:173.383185px;}
.x28_c00135{left:182.718885px;}
.x1c_c00135{left:184.055385px;}
.x2d_c00135{left:194.217735px;}
.x18_c00135{left:205.612635px;}
.x3c_c00135{left:216.453135px;}
.x1d_c00135{left:217.487685px;}
.x2e_c00135{left:227.422335px;}
.xa_c00135{left:228.545985px;}
.x4f_c00135{left:239.396385px;}
.x68_c00135{left:241.039785px;}
.x10_c00135{left:250.137885px;}
.x64_c00135{left:251.390235px;}
.x5b_c00135{left:261.136785px;}
.x6b_c00135{left:263.166285px;}
.x29_c00135{left:272.452485px;}
.x61_c00135{left:273.472185px;}
.x37_c00135{left:283.500885px;}
.x40_c00135{left:284.505735px;}
.x55_c00135{left:295.242285px;}
.x6d_c00135{left:296.321385px;}
.x1e_c00135{left:305.959035px;}
.x19_c00135{left:317.329185px;}
.x11_c00135{left:328.055835px;}
.x1f_c00135{left:339.435885px;}
.x65_c00135{left:340.505085px;}
.xb_c00135{left:350.147685px;}
.x46_c00135{left:351.543585px;}
.x56_c00135{left:360.849585px;}
.x12_c00135{left:361.889085px;}
.xc_c00135{left:372.467235px;}
.x5f_c00135{left:373.704735px;}
.x5c_c00135{left:375.749085px;}
.x20_c00135{left:383.713635px;}
.x50_c00135{left:385.366935px;}
.x2f_c00135{left:396.044085px;}
.x2a_c00135{left:397.494435px;}
.x13_c00135{left:406.765785px;}
.x51_c00135{left:416.957835px;}
.x62_c00135{left:418.195335px;}
.x30_c00135{left:428.204235px;}
.x6e_c00135{left:429.902085px;}
.x41_c00135{left:439.539735px;}
.x53_c00135{left:442.247385px;}
.x2b_c00135{left:450.093135px;}
.x4a_c00135{left:453.117585px;}
.x31_c00135{left:461.735535px;}
.x4b_c00135{left:463.700685px;}
.x4_c00135{left:467.526243px;}
.x21_c00135{left:472.363185px;}
.x47_c00135{left:481.461285px;}
.x38_c00135{left:484.055085px;}
.x4c_c00135{left:485.827185px;}
.xd_c00135{left:495.167835px;}
.x32_c00135{left:505.854885px;}
.x6c_c00135{left:506.889435px;}
.x14_c00135{left:515.720235px;}
.x22_c00135{left:518.002185px;}
.x6f_c00135{left:527.733885px;}
.x39_c00135{left:529.001085px;}
.x23_c00135{left:538.826835px;}
.x3d_c00135{left:539.935635px;}
.x48_c00135{left:550.800885px;}
.x5d_c00135{left:551.815635px;}
.x15_c00135{left:561.779985px;}
.x26_c00135{left:570.343485px;}
.x43_c00135{left:572.303685px;}
.x33_c00135{left:581.614635px;}
.x57_c00135{left:584.223285px;}
.x6_c00135{left:593.331285px;}
.x66_c00135{left:594.702435px;}
.xe_c00135{left:604.849935px;}
.x49_c00135{left:606.354735px;}
.x24_c00135{left:616.977435px;}
.x3_c00135{left:618.284235px;}
.x44_c00135{left:628.105035px;}
.x25_c00135{left:638.207985px;}
.x54_c00135{left:639.821685px;}
.x60_c00135{left:648.974235px;}
.x5_c00135{left:650.182035px;}
.x4d_c00135{left:660.388935px;}
.x1a_c00135{left:672.541185px;}
.x45_c00135{left:682.119435px;}
.x16_c00135{left:683.703435px;}
.x34_c00135{left:694.073685px;}
.x4e_c00135{left:695.469585px;}
.x3a_c00135{left:699.533535px;}
.x3e_c00135{left:703.389585px;}
.x2c_c00135{left:704.726085px;}
@media print{
.v0_c00135{vertical-align:0.000000pt;}
.v1_c00135{vertical-align:43.067200pt;}
.ls8_c00135{letter-spacing:-2.439360pt;}
.lse_c00135{letter-spacing:-2.111789pt;}
.ls12_c00135{letter-spacing:-2.007245pt;}
.ls10_c00135{letter-spacing:-1.686643pt;}
.ls15_c00135{letter-spacing:-1.268467pt;}
.lsb_c00135{letter-spacing:-0.362419pt;}
.ls4_c00135{letter-spacing:0.000000pt;}
.lsa_c00135{letter-spacing:0.243936pt;}
.ls11_c00135{letter-spacing:0.501811pt;}
.ls0_c00135{letter-spacing:1.108166pt;}
.lsf_c00135{letter-spacing:1.742400pt;}
.ls17_c00135{letter-spacing:2.063002pt;}
.ls3_c00135{letter-spacing:2.271386pt;}
.ls14_c00135{letter-spacing:2.962080pt;}
.lsd_c00135{letter-spacing:3.132800pt;}
.ls2_c00135{letter-spacing:3.359347pt;}
.ls9_c00135{letter-spacing:3.476000pt;}
.ls7_c00135{letter-spacing:3.484800pt;}
.ls6_c00135{letter-spacing:3.652000pt;}
.ls5_c00135{letter-spacing:3.836800pt;}
.ls1_c00135{letter-spacing:7.178688pt;}
.lsc_c00135{letter-spacing:44.352176pt;}
.ls13_c00135{letter-spacing:45.619376pt;}
.ls16_c00135{letter-spacing:46.886576pt;}
.ws0_c00135{word-spacing:-17.424000pt;}
.ws2_c00135{word-spacing:-17.061581pt;}
.ws6_c00135{word-spacing:-15.416755pt;}
.ws3_c00135{word-spacing:-15.312211pt;}
.ws7_c00135{word-spacing:0.000000pt;}
.ws1_c00135{word-spacing:0.418176pt;}
.ws5_c00135{word-spacing:2.160576pt;}
.ws4_c00135{word-spacing:3.206016pt;}
._4_c00135{margin-left:-10.454048pt;}
._f_c00135{margin-left:-9.199872pt;}
._11_c00135{margin-left:-7.868045pt;}
._9_c00135{margin-left:-3.624544pt;}
._5_c00135{width:2.300320pt;}
._e_c00135{width:3.902976pt;}
._1_c00135{width:5.575680pt;}
._7_c00135{width:6.899904pt;}
._3_c00135{width:8.084736pt;}
._6_c00135{width:9.408960pt;}
._13_c00135{width:11.221056pt;}
._2_c00135{width:21.048192pt;}
._14_c00135{width:24.532992pt;}
._0_c00135{width:25.648128pt;}
._b_c00135{width:26.972352pt;}
._8_c00135{width:28.714752pt;}
._c_c00135{width:30.066854pt;}
._15_c00135{width:33.105600pt;}
._a_c00135{width:37.122272pt;}
._10_c00135{width:38.821024pt;}
._d_c00135{width:46.975104pt;}
._12_c00135{width:381.867200pt;}
.fs10_c00135{font-size:17.952000pt;}
.fs1_c00135{font-size:19.712000pt;}
.fs3_c00135{font-size:19.888000pt;}
.fs0_c00135{font-size:24.640000pt;}
.fse_c00135{font-size:29.920000pt;}
.fs9_c00135{font-size:33.616000pt;}
.fsb_c00135{font-size:34.848000pt;}
.fs7_c00135{font-size:35.200000pt;}
.fsa_c00135{font-size:44.352176pt;}
.fsd_c00135{font-size:45.619376pt;}
.fsf_c00135{font-size:46.886576pt;}
.fsc_c00135{font-size:62.656000pt;}
.fs8_c00135{font-size:69.520000pt;}
.fs5_c00135{font-size:69.696000pt;}
.fs4_c00135{font-size:73.040000pt;}
.fs2_c00135{font-size:76.736000pt;}
.fs6_c00135{font-size:107.008000pt;}
.y0_c00135{bottom:0.000000pt;}
.y25_c00135{bottom:21.462360pt;}
.y24_c00135{bottom:59.475720pt;}
.y1_c00135{bottom:68.000000pt;}
.y23_c00135{bottom:136.774920pt;}
.y22_c00135{bottom:164.657720pt;}
.y21_c00135{bottom:193.798920pt;}
.y20_c00135{bottom:217.558920pt;}
.y1f_c00135{bottom:222.315320pt;}
.y1e_c00135{bottom:251.144120pt;}
.y1d_c00135{bottom:279.968520pt;}
.y1c_c00135{bottom:316.088120pt;}
.y1b_c00135{bottom:335.408520pt;}
.y1a_c00135{bottom:337.313720pt;}
.y2_c00135{bottom:344.916920pt;}
.y19_c00135{bottom:366.776120pt;}
.y18_c00135{bottom:395.600520pt;}
.y17_c00135{bottom:424.433720pt;}
.y16_c00135{bottom:452.624520pt;}
.y15_c00135{bottom:481.136520pt;}
.y14_c00135{bottom:509.652920pt;}
.y13_c00135{bottom:538.477320pt;}
.y12_c00135{bottom:554.955320pt;}
.y11_c00135{bottom:567.306120pt;}
.y10_c00135{bottom:588.214920pt;}
.yf_c00135{bottom:596.451720pt;}
.ye_c00135{bottom:625.597320pt;}
.yd_c00135{bottom:654.113720pt;}
.yc_c00135{bottom:679.136520pt;}
.yb_c00135{bottom:682.625720pt;}
.ya_c00135{bottom:739.011720pt;}
.y9_c00135{bottom:768.157320pt;}
.y8_c00135{bottom:796.986120pt;}
.y7_c00135{bottom:826.131720pt;}
.y6_c00135{bottom:879.675320pt;}
.y5_c00135{bottom:959.187720pt;}
.y4_c00135{bottom:965.522400pt;}
.y3_c00135{bottom:982.947720pt;}
.h12_c00135{height:18.723375pt;}
.h5_c00135{height:19.518984pt;}
.h3_c00135{height:20.559000pt;}
.h2_c00135{height:25.698750pt;}
.h10_c00135{height:29.364844pt;}
.hc_c00135{height:29.538549pt;}
.hf_c00135{height:30.382504pt;}
.h11_c00135{height:31.226460pt;}
.hb_c00135{height:32.992266pt;}
.hd_c00135{height:34.201406pt;}
.h9_c00135{height:36.712500pt;}
.he_c00135{height:61.493438pt;}
.ha_c00135{height:68.230078pt;}
.h7_c00135{height:68.402813pt;}
.h6_c00135{height:71.649102pt;}
.h4_c00135{height:75.312188pt;}
.h8_c00135{height:105.022500pt;}
.h1_c00135{height:986.666667pt;}
.h0_c00135{height:1122.666667pt;}
.w1_c00135{width:652.000000pt;}
.w0_c00135{width:793.333333pt;}
.x0_c00135{left:0.000000pt;}
.x2_c00135{left:40.466387pt;}
.x3b_c00135{left:64.142787pt;}
.x7_c00135{left:65.115187pt;}
.x58_c00135{left:66.030387pt;}
.x27_c00135{left:67.244787pt;}
.x1_c00135{left:70.666667pt;}
.x59_c00135{left:75.059187pt;}
.x35_c00135{left:84.092387pt;}
.x67_c00135{left:85.201187pt;}
.xf_c00135{left:94.383987pt;}
.x5a_c00135{left:95.492787pt;}
.x8_c00135{left:104.055187pt;}
.x63_c00135{left:105.075987pt;}
.x1b_c00135{left:113.321587pt;}
.x5e_c00135{left:114.826387pt;}
.x9_c00135{left:123.991587pt;}
.x69_c00135{left:126.327987pt;}
.x42_c00135{left:133.838787pt;}
.x52_c00135{left:134.775987pt;}
.x17_c00135{left:143.179987pt;}
.x3f_c00135{left:144.266787pt;}
.x36_c00135{left:153.163587pt;}
.x6a_c00135{left:154.118387pt;}
.x28_c00135{left:162.416787pt;}
.x1c_c00135{left:163.604787pt;}
.x2d_c00135{left:172.637987pt;}
.x18_c00135{left:182.766787pt;}
.x3c_c00135{left:192.402787pt;}
.x1d_c00135{left:193.322387pt;}
.x2e_c00135{left:202.153187pt;}
.xa_c00135{left:203.151987pt;}
.x4f_c00135{left:212.796787pt;}
.x68_c00135{left:214.257587pt;}
.x10_c00135{left:222.344787pt;}
.x64_c00135{left:223.457987pt;}
.x5b_c00135{left:232.121587pt;}
.x6b_c00135{left:233.925587pt;}
.x29_c00135{left:242.179987pt;}
.x61_c00135{left:243.086387pt;}
.x37_c00135{left:252.000787pt;}
.x40_c00135{left:252.893987pt;}
.x55_c00135{left:262.437587pt;}
.x6d_c00135{left:263.396787pt;}
.x1e_c00135{left:271.963587pt;}
.x19_c00135{left:282.070387pt;}
.x11_c00135{left:291.605187pt;}
.x1f_c00135{left:301.720787pt;}
.x65_c00135{left:302.671187pt;}
.xb_c00135{left:311.242387pt;}
.x46_c00135{left:312.483187pt;}
.x56_c00135{left:320.755187pt;}
.x12_c00135{left:321.679187pt;}
.xc_c00135{left:331.081987pt;}
.x5f_c00135{left:332.181987pt;}
.x5c_c00135{left:333.999187pt;}
.x20_c00135{left:341.078787pt;}
.x50_c00135{left:342.548387pt;}
.x2f_c00135{left:352.039187pt;}
.x2a_c00135{left:353.328387pt;}
.x13_c00135{left:361.569587pt;}
.x51_c00135{left:370.629187pt;}
.x62_c00135{left:371.729187pt;}
.x30_c00135{left:380.625987pt;}
.x6e_c00135{left:382.135187pt;}
.x41_c00135{left:390.701987pt;}
.x53_c00135{left:393.108787pt;}
.x2b_c00135{left:400.082787pt;}
.x4a_c00135{left:402.771187pt;}
.x31_c00135{left:410.431587pt;}
.x4b_c00135{left:412.178387pt;}
.x4_c00135{left:415.578883pt;}
.x21_c00135{left:419.878387pt;}
.x47_c00135{left:427.965587pt;}
.x38_c00135{left:430.271187pt;}
.x4c_c00135{left:431.846387pt;}
.xd_c00135{left:440.149187pt;}
.x32_c00135{left:449.648787pt;}
.x6c_c00135{left:450.568387pt;}
.x14_c00135{left:458.417987pt;}
.x22_c00135{left:460.446387pt;}
.x6f_c00135{left:469.096787pt;}
.x39_c00135{left:470.223187pt;}
.x23_c00135{left:478.957187pt;}
.x3d_c00135{left:479.942787pt;}
.x48_c00135{left:489.600787pt;}
.x5d_c00135{left:490.502787pt;}
.x15_c00135{left:499.359987pt;}
.x26_c00135{left:506.971987pt;}
.x43_c00135{left:508.714387pt;}
.x33_c00135{left:516.990787pt;}
.x57_c00135{left:519.309587pt;}
.x6_c00135{left:527.405587pt;}
.x66_c00135{left:528.624387pt;}
.xe_c00135{left:537.644387pt;}
.x49_c00135{left:538.981987pt;}
.x24_c00135{left:548.424387pt;}
.x3_c00135{left:549.585987pt;}
.x44_c00135{left:558.315587pt;}
.x25_c00135{left:567.295987pt;}
.x54_c00135{left:568.730387pt;}
.x60_c00135{left:576.865987pt;}
.x5_c00135{left:577.939587pt;}
.x4d_c00135{left:587.012387pt;}
.x1a_c00135{left:597.814387pt;}
.x45_c00135{left:606.328387pt;}
.x16_c00135{left:607.736387pt;}
.x34_c00135{left:616.954387pt;}
.x4e_c00135{left:618.195187pt;}
.x3a_c00135{left:621.807587pt;}
.x3e_c00135{left:625.235187pt;}
.x2c_c00135{left:626.423187pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_56fa59969ed179a670cd412c.woff2')format("woff");}.ff1_c00136{font-family:ff1_c00136;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00136;src:url('chunks/assets/font_c9a11d12be190ad60ed71e88.woff2')format("woff");}.ff2_c00136{font-family:ff2_c00136;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00136;src:url('chunks/assets/font_5c99c7fac684ea2f8546af4e.woff2')format("woff");}.ff3_c00136{font-family:ff3_c00136;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00136;src:url('chunks/assets/font_bfb0f903f2a1dcec9d269314.woff2')format("woff");}.ff4_c00136{font-family:ff4_c00136;line-height:0.666000;font-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_c00136{transform:matrix(0.068751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.068751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.068751,0.000000,0.000000,0.250000,0,0);}
.mc7_c00136{transform:matrix(0.146046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146046,0.000000,0.000000,0.250000,0,0);}
.m5f_c00136{transform:matrix(0.159723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159723,0.000000,0.000000,0.250000,0,0);}
.m60_c00136{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);}
.m63_c00136{transform:matrix(0.174999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174999,0.000000,0.000000,0.250000,0,0);}
.m6d_c00136{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00136{transform:matrix(0.181421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181421,0.000000,0.000000,0.250000,0,0);}
.m62_c00136{transform:matrix(0.182813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182813,0.000000,0.000000,0.250000,0,0);}
.m64_c00136{transform:matrix(0.187499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187499,0.000000,0.000000,0.250000,0,0);}
.m6b_c00136{transform:matrix(0.189584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189584,0.000000,0.000000,0.250000,0,0);}
.m61_c00136{transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);}
.m25_c00136{transform:matrix(0.213031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213031,0.000000,0.000000,0.250000,0,0);}
.m7f_c00136{transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);}
.mab_c00136{transform:matrix(0.236189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236189,0.000000,0.000000,0.250000,0,0);}
.m73_c00136{transform:matrix(0.239610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239610,0.000000,0.000000,0.250000,0,0);}
.ma3_c00136{transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);}
.m0_c00136{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00136{transform:matrix(0.250608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250608,0.000000,0.000000,0.250000,0,0);}
.m27_c00136{transform:matrix(0.251234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251234,0.000000,0.000000,0.250000,0,0);}
.m24_c00136{transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);}
.m65_c00136{transform:matrix(0.254431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254431,0.000000,0.000000,0.250000,0,0);}
.m34_c00136{transform:matrix(0.254506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254506,0.000000,0.000000,0.250000,0,0);}
.m1_c00136{transform:matrix(0.256173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256173,0.000000,0.000000,0.250000,0,0);}
.m87_c00136{transform:matrix(0.256600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256600,0.000000,0.000000,0.250000,0,0);}
.m74_c00136{transform:matrix(0.256735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256735,0.000000,0.000000,0.250000,0,0);}
.m30_c00136{transform:matrix(0.256878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256878,0.000000,0.000000,0.250000,0,0);}
.m68_c00136{transform:matrix(0.258258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258258,0.000000,0.000000,0.250000,0,0);}
.maf_c00136{transform:matrix(0.258596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258596,0.000000,0.000000,0.250000,0,0);}
.mba_c00136{transform:matrix(0.258653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258653,0.000000,0.000000,0.250000,0,0);}
.m28_c00136{transform:matrix(0.260157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260157,0.000000,0.000000,0.250000,0,0);}
.mbd_c00136{transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);}
.m5b_c00136{transform:matrix(0.260559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260559,0.000000,0.000000,0.250000,0,0);}
.m82_c00136{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m9f_c00136{transform:matrix(0.261106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261106,0.000000,0.000000,0.250000,0,0);}
.m39_c00136{transform:matrix(0.261646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261646,0.000000,0.000000,0.250000,0,0);}
.m7_c00136{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m10_c00136{transform:matrix(0.263454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263454,0.000000,0.000000,0.250000,0,0);}
.m35_c00136{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m67_c00136{transform:matrix(0.264329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264329,0.000000,0.000000,0.250000,0,0);}
.mb2_c00136{transform:matrix(0.266097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266097,0.000000,0.000000,0.250000,0,0);}
.m15_c00136{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m42_c00136{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.m37_c00136{transform:matrix(0.266949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266949,0.000000,0.000000,0.250000,0,0);}
.m1f_c00136{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m4_c00136{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.m2c_c00136{transform:matrix(0.270287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270287,0.000000,0.000000,0.250000,0,0);}
.m55_c00136{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m13_c00136{transform:matrix(0.271600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271600,0.000000,0.000000,0.250000,0,0);}
.m3c_c00136{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m11_c00136{transform:matrix(0.273168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273168,0.000000,0.000000,0.250000,0,0);}
.m4e_c00136{transform:matrix(0.273398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273398,0.000000,0.000000,0.250000,0,0);}
.m94_c00136{transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);}
.m46_c00136{transform:matrix(0.274260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274260,0.000000,0.000000,0.250000,0,0);}
.m22_c00136{transform:matrix(0.274308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274308,0.000000,0.000000,0.250000,0,0);}
.me_c00136{transform:matrix(0.275478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275478,0.000000,0.000000,0.250000,0,0);}
.m7c_c00136{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.ma4_c00136{transform:matrix(0.275570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275570,0.000000,0.000000,0.250000,0,0);}
.m3b_c00136{transform:matrix(0.276908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276908,0.000000,0.000000,0.250000,0,0);}
.ma5_c00136{transform:matrix(0.277114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277114,0.000000,0.000000,0.250000,0,0);}
.m51_c00136{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.mb8_c00136{transform:matrix(0.279263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279263,0.000000,0.000000,0.250000,0,0);}
.m4d_c00136{transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);}
.m5c_c00136{transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);}
.m9_c00136{transform:matrix(0.279581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279581,0.000000,0.000000,0.250000,0,0);}
.mbf_c00136{transform:matrix(0.279604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279604,0.000000,0.000000,0.250000,0,0);}
.mbe_c00136{transform:matrix(0.279666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279666,0.000000,0.000000,0.250000,0,0);}
.m58_c00136{transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);}
.m23_c00136{transform:matrix(0.280247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280247,0.000000,0.000000,0.250000,0,0);}
.m88_c00136{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.m2b_c00136{transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);}
.m7e_c00136{transform:matrix(0.282953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282953,0.000000,0.000000,0.250000,0,0);}
.mae_c00136{transform:matrix(0.283442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283442,0.000000,0.000000,0.250000,0,0);}
.mb9_c00136{transform:matrix(0.283453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283453,0.000000,0.000000,0.250000,0,0);}
.m40_c00136{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m8_c00136{transform:matrix(0.284142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284142,0.000000,0.000000,0.250000,0,0);}
.m8d_c00136{transform:matrix(0.284537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284537,0.000000,0.000000,0.250000,0,0);}
.m7a_c00136{transform:matrix(0.284924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284924,0.000000,0.000000,0.250000,0,0);}
.mbb_c00136{transform:matrix(0.285414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285414,0.000000,0.000000,0.250000,0,0);}
.mc0_c00136{transform:matrix(0.285694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285694,0.000000,0.000000,0.250000,0,0);}
.m3a_c00136{transform:matrix(0.285967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285967,0.000000,0.000000,0.250000,0,0);}
.m43_c00136{transform:matrix(0.286642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286642,0.000000,0.000000,0.250000,0,0);}
.m56_c00136{transform:matrix(0.287102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287102,0.000000,0.000000,0.250000,0,0);}
.m78_c00136{transform:matrix(0.287431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287431,0.000000,0.000000,0.250000,0,0);}
.m99_c00136{transform:matrix(0.287703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287703,0.000000,0.000000,0.250000,0,0);}
.m8b_c00136{transform:matrix(0.287771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287771,0.000000,0.000000,0.250000,0,0);}
.m84_c00136{transform:matrix(0.287812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287812,0.000000,0.000000,0.250000,0,0);}
.m98_c00136{transform:matrix(0.288205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288205,0.000000,0.000000,0.250000,0,0);}
.m2a_c00136{transform:matrix(0.288451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288451,0.000000,0.000000,0.250000,0,0);}
.m6_c00136{transform:matrix(0.288623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288623,0.000000,0.000000,0.250000,0,0);}
.mf_c00136{transform:matrix(0.288697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288697,0.000000,0.000000,0.250000,0,0);}
.m44_c00136{transform:matrix(0.288725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288725,0.000000,0.000000,0.250000,0,0);}
.m70_c00136{transform:matrix(0.289203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289203,0.000000,0.000000,0.250000,0,0);}
.m4a_c00136{transform:matrix(0.289464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289464,0.000000,0.000000,0.250000,0,0);}
.m21_c00136{transform:matrix(0.289601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289601,0.000000,0.000000,0.250000,0,0);}
.ma8_c00136{transform:matrix(0.289933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289933,0.000000,0.000000,0.250000,0,0);}
.mad_c00136{transform:matrix(0.290019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290019,0.000000,0.000000,0.250000,0,0);}
.mbc_c00136{transform:matrix(0.290513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290513,0.000000,0.000000,0.250000,0,0);}
.mc2_c00136{transform:matrix(0.291052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291052,0.000000,0.000000,0.250000,0,0);}
.m69_c00136{transform:matrix(0.291116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291116,0.000000,0.000000,0.250000,0,0);}
.m45_c00136{transform:matrix(0.291689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291689,0.000000,0.000000,0.250000,0,0);}
.m1b_c00136{transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);}
.mb4_c00136{transform:matrix(0.293146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293146,0.000000,0.000000,0.250000,0,0);}
.m19_c00136{transform:matrix(0.293496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293496,0.000000,0.000000,0.250000,0,0);}
.m7b_c00136{transform:matrix(0.293522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293522,0.000000,0.000000,0.250000,0,0);}
.m41_c00136{transform:matrix(0.293580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293580,0.000000,0.000000,0.250000,0,0);}
.m3d_c00136{transform:matrix(0.293947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293947,0.000000,0.000000,0.250000,0,0);}
.ma0_c00136{transform:matrix(0.293962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293962,0.000000,0.000000,0.250000,0,0);}
.m14_c00136{transform:matrix(0.294298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294298,0.000000,0.000000,0.250000,0,0);}
.mc1_c00136{transform:matrix(0.294474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294474,0.000000,0.000000,0.250000,0,0);}
.m97_c00136{transform:matrix(0.294705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294705,0.000000,0.000000,0.250000,0,0);}
.mb0_c00136{transform:matrix(0.294708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294708,0.000000,0.000000,0.250000,0,0);}
.m5a_c00136{transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);}
.mb_c00136{transform:matrix(0.294852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294852,0.000000,0.000000,0.250000,0,0);}
.m9d_c00136{transform:matrix(0.295292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295292,0.000000,0.000000,0.250000,0,0);}
.mc6_c00136{transform:matrix(0.296657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296657,0.000000,0.000000,0.250000,0,0);}
.m50_c00136{transform:matrix(0.297057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297057,0.000000,0.000000,0.250000,0,0);}
.m83_c00136{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m6e_c00136{transform:matrix(0.297388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297388,0.000000,0.000000,0.250000,0,0);}
.m9a_c00136{transform:matrix(0.297656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297656,0.000000,0.000000,0.250000,0,0);}
.m59_c00136{transform:matrix(0.297722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297722,0.000000,0.000000,0.250000,0,0);}
.m1a_c00136{transform:matrix(0.297832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297832,0.000000,0.000000,0.250000,0,0);}
.m1d_c00136{transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);}
.m18_c00136{transform:matrix(0.298501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298501,0.000000,0.000000,0.250000,0,0);}
.m3e_c00136{transform:matrix(0.299075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299075,0.000000,0.000000,0.250000,0,0);}
.mac_c00136{transform:matrix(0.299102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299102,0.000000,0.000000,0.250000,0,0);}
.m2_c00136{transform:matrix(0.299208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299208,0.000000,0.000000,0.250000,0,0);}
.m38_c00136{transform:matrix(0.299336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299336,0.000000,0.000000,0.250000,0,0);}
.m95_c00136{transform:matrix(0.299429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299429,0.000000,0.000000,0.250000,0,0);}
.m8a_c00136{transform:matrix(0.299763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299763,0.000000,0.000000,0.250000,0,0);}
.m4c_c00136{transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);}
.mb6_c00136{transform:matrix(0.300761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300761,0.000000,0.000000,0.250000,0,0);}
.m89_c00136{transform:matrix(0.300944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300944,0.000000,0.000000,0.250000,0,0);}
.m33_c00136{transform:matrix(0.302125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302125,0.000000,0.000000,0.250000,0,0);}
.mb1_c00136{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m72_c00136{transform:matrix(0.302588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302588,0.000000,0.000000,0.250000,0,0);}
.m3f_c00136{transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);}
.m48_c00136{transform:matrix(0.304215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304215,0.000000,0.000000,0.250000,0,0);}
.m90_c00136{transform:matrix(0.304655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304655,0.000000,0.000000,0.250000,0,0);}
.m9b_c00136{transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);}
.mb5_c00136{transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);}
.m20_c00136{transform:matrix(0.306568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306568,0.000000,0.000000,0.250000,0,0);}
.ma2_c00136{transform:matrix(0.306617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306617,0.000000,0.000000,0.250000,0,0);}
.mb7_c00136{transform:matrix(0.308574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308574,0.000000,0.000000,0.250000,0,0);}
.m75_c00136{transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);}
.m81_c00136{transform:matrix(0.308742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308742,0.000000,0.000000,0.250000,0,0);}
.ma9_c00136{transform:matrix(0.309211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309211,0.000000,0.000000,0.250000,0,0);}
.m1e_c00136{transform:matrix(0.310577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310577,0.000000,0.000000,0.250000,0,0);}
.m77_c00136{transform:matrix(0.310770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310770,0.000000,0.000000,0.250000,0,0);}
.m26_c00136{transform:matrix(0.311094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311094,0.000000,0.000000,0.250000,0,0);}
.m91_c00136{transform:matrix(0.311181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311181,0.000000,0.000000,0.250000,0,0);}
.m71_c00136{transform:matrix(0.311969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311969,0.000000,0.000000,0.250000,0,0);}
.ma7_c00136{transform:matrix(0.312874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312874,0.000000,0.000000,0.250000,0,0);}
.m79_c00136{transform:matrix(0.312985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312985,0.000000,0.000000,0.250000,0,0);}
.m3_c00136{transform:matrix(0.313899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313899,0.000000,0.000000,0.250000,0,0);}
.m17_c00136{transform:matrix(0.316426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316426,0.000000,0.000000,0.250000,0,0);}
.ma_c00136{transform:matrix(0.316884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316884,0.000000,0.000000,0.250000,0,0);}
.m32_c00136{transform:matrix(0.317585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317585,0.000000,0.000000,0.250000,0,0);}
.m66_c00136{transform:matrix(0.317662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317662,0.000000,0.000000,0.250000,0,0);}
.m6a_c00136{transform:matrix(0.317707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317707,0.000000,0.000000,0.250000,0,0);}
.m4b_c00136{transform:matrix(0.318864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318864,0.000000,0.000000,0.250000,0,0);}
.m49_c00136{transform:matrix(0.319105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319105,0.000000,0.000000,0.250000,0,0);}
.m54_c00136{transform:matrix(0.320597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320597,0.000000,0.000000,0.250000,0,0);}
.m80_c00136{transform:matrix(0.323214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323214,0.000000,0.000000,0.250000,0,0);}
.ma1_c00136{transform:matrix(0.323236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323236,0.000000,0.000000,0.250000,0,0);}
.m16_c00136{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.m1c_c00136{transform:matrix(0.324016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324016,0.000000,0.000000,0.250000,0,0);}
.m86_c00136{transform:matrix(0.324570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324570,0.000000,0.000000,0.250000,0,0);}
.m52_c00136{transform:matrix(0.324715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324715,0.000000,0.000000,0.250000,0,0);}
.m53_c00136{transform:matrix(0.324991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324991,0.000000,0.000000,0.250000,0,0);}
.m2f_c00136{transform:matrix(0.325170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325170,0.000000,0.000000,0.250000,0,0);}
.mc4_c00136{transform:matrix(0.325323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325323,0.000000,0.000000,0.250000,0,0);}
.m4f_c00136{transform:matrix(0.326313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326313,0.000000,0.000000,0.250000,0,0);}
.m76_c00136{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.mc3_c00136{transform:matrix(0.327239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327239,0.000000,0.000000,0.250000,0,0);}
.m92_c00136{transform:matrix(0.327847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327847,0.000000,0.000000,0.250000,0,0);}
.m29_c00136{transform:matrix(0.329576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329576,0.000000,0.000000,0.250000,0,0);}
.m7d_c00136{transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);}
.m5e_c00136{transform:matrix(0.331988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331988,0.000000,0.000000,0.250000,0,0);}
.mc_c00136{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m31_c00136{transform:matrix(0.333537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333537,0.000000,0.000000,0.250000,0,0);}
.m8e_c00136{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_c00136{transform:matrix(0.338335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338335,0.000000,0.000000,0.250000,0,0);}
.m8f_c00136{transform:matrix(0.338858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338858,0.000000,0.000000,0.250000,0,0);}
.m85_c00136{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m5_c00136{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.m47_c00136{transform:matrix(0.349089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349089,0.000000,0.000000,0.250000,0,0);}
.mc5_c00136{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m2e_c00136{transform:matrix(0.352432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352432,0.000000,0.000000,0.250000,0,0);}
.m36_c00136{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m5d_c00136{transform:matrix(0.359480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359480,0.000000,0.000000,0.250000,0,0);}
.md_c00136{transform:matrix(0.359908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359908,0.000000,0.000000,0.250000,0,0);}
.m8c_c00136{transform:matrix(0.364257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364257,0.000000,0.000000,0.250000,0,0);}
.m96_c00136{transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);}
.m93_c00136{transform:matrix(0.372775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372775,0.000000,0.000000,0.250000,0,0);}
.m12_c00136{transform:matrix(0.375289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375289,0.000000,0.000000,0.250000,0,0);}
.mb3_c00136{transform:matrix(0.375458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375458,0.000000,0.000000,0.250000,0,0);}
.maa_c00136{transform:matrix(0.378097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378097,0.000000,0.000000,0.250000,0,0);}
.m9e_c00136{transform:matrix(0.396179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396179,0.000000,0.000000,0.250000,0,0);}
.m57_c00136{transform:matrix(0.404579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404579,0.000000,0.000000,0.250000,0,0);}
.m6f_c00136{transform:matrix(0.417547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417547,0.000000,0.000000,0.250000,0,0);}
.v1_c00136{vertical-align:-4.257000px;}
.v0_c00136{vertical-align:0.000000px;}
.ls7_c00136{letter-spacing:-2.744280px;}
.lsd_c00136{letter-spacing:-2.375762px;}
.ls14_c00136{letter-spacing:-0.942480px;}
.ls1_c00136{letter-spacing:0.000000px;}
.ls11_c00136{letter-spacing:0.705672px;}
.lsa_c00136{letter-spacing:1.246687px;}
.ls12_c00136{letter-spacing:1.332936px;}
.ls5_c00136{letter-spacing:1.685772px;}
.ls6_c00136{letter-spacing:2.132698px;}
.ls0_c00136{letter-spacing:2.367922px;}
.ls4_c00136{letter-spacing:2.759962px;}
.ls10_c00136{letter-spacing:3.112798px;}
.lsb_c00136{letter-spacing:3.191206px;}
.ls13_c00136{letter-spacing:3.544200px;}
.lsc_c00136{letter-spacing:3.643200px;}
.ls9_c00136{letter-spacing:3.781810px;}
.ls3_c00136{letter-spacing:3.920400px;}
.ls2_c00136{letter-spacing:4.296610px;}
.ls8_c00136{letter-spacing:4.474810px;}
.lse_c00136{letter-spacing:51.321798px;}
.lsf_c00136{letter-spacing:57.024198px;}
.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:-22.793206px;}
.ws0_c00136{word-spacing:-21.969922px;}
.ws3_c00136{word-spacing:-19.602000px;}
.ws2_c00136{word-spacing:-1.410552px;}
.ws4_c00136{word-spacing:0.000000px;}
._8_c00136{margin-left:-13.490611px;}
._a_c00136{margin-left:-12.074832px;}
._0_c00136{width:2.195424px;}
._14_c00136{width:5.096520px;}
._9_c00136{width:6.351048px;}
._c_c00136{width:7.605576px;}
._1_c00136{width:10.036224px;}
._f_c00136{width:11.918016px;}
._12_c00136{width:13.509936px;}
._10_c00136{width:15.289560px;}
._e_c00136{width:17.249760px;}
._3_c00136{width:20.856528px;}
._4_c00136{width:22.267872px;}
._b_c00136{width:23.679216px;}
._11_c00136{width:27.521208px;}
._13_c00136{width:30.343896px;}
._5_c00136{width:32.617728px;}
._15_c00136{width:34.029468px;}
._7_c00136{width:35.518824px;}
._d_c00136{width:39.204000px;}
._2_c00136{width:43.516440px;}
._6_c00136{width:792.329472px;}
.fc0_c00136{color:transparent;}
.fs0_c00136{font-size:22.176000px;}
.fs9_c00136{font-size:24.156000px;}
.fs12_c00136{font-size:26.928000px;}
.fs7_c00136{font-size:27.720000px;}
.fs10_c00136{font-size:30.294000px;}
.fs8_c00136{font-size:39.600000px;}
.fs6_c00136{font-size:44.352000px;}
.fse_c00136{font-size:46.332000px;}
.fsc_c00136{font-size:51.321798px;}
.fs11_c00136{font-size:55.440000px;}
.fsd_c00136{font-size:57.024198px;}
.fs3_c00136{font-size:64.548000px;}
.fsf_c00136{font-size:70.884000px;}
.fsb_c00136{font-size:72.864000px;}
.fs5_c00136{font-size:75.636198px;}
.fs2_c00136{font-size:78.408000px;}
.fsa_c00136{font-size:78.804000px;}
.fs1_c00136{font-size:85.932198px;}
.fs4_c00136{font-size:89.496198px;}
.y0_c00136{bottom:0.000000px;}
.y24_c00136{bottom:34.121385px;}
.y23_c00136{bottom:38.754585px;}
.y22_c00136{bottom:58.712985px;}
.y21_c00136{bottom:66.202335px;}
.y1_c00136{bottom:76.500000px;}
.y20_c00136{bottom:125.008335px;}
.y1f_c00136{bottom:154.940985px;}
.y1e_c00136{bottom:186.309135px;}
.y1d_c00136{bottom:252.594585px;}
.y1c_c00136{bottom:285.744735px;}
.y1b_c00136{bottom:318.177135px;}
.y1a_c00136{bottom:350.253135px;}
.y19_c00136{bottom:383.041935px;}
.y18_c00136{bottom:414.761535px;}
.y17_c00136{bottom:447.188985px;}
.y16_c00136{bottom:478.913535px;}
.y15_c00136{bottom:511.340985px;}
.y14_c00136{bottom:543.065535px;}
.y13_c00136{bottom:575.854335px;}
.y12_c00136{bottom:608.643135px;}
.y11_c00136{bottom:641.075535px;}
.y10_c00136{bottom:673.146585px;}
.yf_c00136{bottom:707.004585px;}
.yd_c00136{bottom:736.234335px;}
.ye_c00136{bottom:745.852185px;}
.yc_c00136{bottom:768.666735px;}
.ya_c00136{bottom:793.253385px;}
.y9_c00136{bottom:801.094185px;}
.y8_c00136{bottom:801.811935px;}
.y7_c00136{bottom:834.600735px;}
.y6_c00136{bottom:866.676735px;}
.y5_c00136{bottom:899.465535px;}
.y4_c00136{bottom:931.897935px;}
.yb_c00136{bottom:991.416735px;}
.y3_c00136{bottom:1080.868185px;}
.y2_c00136{bottom:1086.926985px;}
.h2_c00136{height:23.128875px;}
.hb_c00136{height:25.193953px;}
.h14_c00136{height:28.085063px;}
.h9_c00136{height:28.911094px;}
.h12_c00136{height:31.595695px;}
.he_c00136{height:34.180317px;}
.ha_c00136{height:37.044562px;}
.hf_c00136{height:37.978116px;}
.h8_c00136{height:46.257750px;}
.h10_c00136{height:48.322828px;}
.h13_c00136{height:57.822188px;}
.h5_c00136{height:67.321547px;}
.h11_c00136{height:69.568770px;}
.hd_c00136{height:73.433250px;}
.h7_c00136{height:74.232792px;}
.h4_c00136{height:76.953164px;}
.hc_c00136{height:77.341816px;}
.h3_c00136{height:84.337753px;}
.h6_c00136{height:87.835624px;}
.h1_c00136{height:1110.000000px;}
.h0_c00136{height:1263.000000px;}
.w1_c00136{width:775.500000px;}
.w0_c00136{width:892.500000px;}
.x0_c00136{left:0.000000px;}
.x1_c00136{left:58.500000px;}
.x3b_c00136{left:83.290335px;}
.x4_c00136{left:84.918885px;}
.x5e_c00136{left:87.220635px;}
.x3c_c00136{left:95.625735px;}
.x65_c00136{left:98.150235px;}
.x20_c00136{left:117.979935px;}
.x66_c00136{left:119.519385px;}
.x19_c00136{left:128.315535px;}
.x48_c00136{left:129.840135px;}
.x21_c00136{left:139.844085px;}
.x5a_c00136{left:141.606285px;}
.x2f_c00136{left:149.669835px;}
.x26_c00136{left:150.927135px;}
.x3d_c00136{left:161.074635px;}
.x22_c00136{left:162.133935px;}
.x62_c00136{left:163.717935px;}
.xc_c00136{left:172.870485px;}
.x50_c00136{left:174.340635px;}
.x5_c00136{left:183.607035px;}
.x5b_c00136{left:184.755435px;}
.x30_c00136{left:195.071235px;}
.x54_c00136{left:206.847285px;}
.x40_c00136{left:207.936285px;}
.xd_c00136{left:217.539285px;}
.x52_c00136{left:218.954985px;}
.xe_c00136{left:228.171885px;}
.x55_c00136{left:229.627185px;}
.x38_c00136{left:239.997435px;}
.x67_c00136{left:241.046835px;}
.x5c_c00136{left:242.739735px;}
.x41_c00136{left:250.936935px;}
.x51_c00136{left:252.070485px;}
.x1a_c00136{left:263.138685px;}
.xf_c00136{left:273.271335px;}
.x63_c00136{left:274.513785px;}
.x23_c00136{left:284.062335px;}
.x4f_c00136{left:285.591885px;}
.x10_c00136{left:296.224485px;}
.x3e_c00136{left:306.961035px;}
.x39_c00136{left:317.657985px;}
.x11_c00136{left:328.151985px;}
.x57_c00136{left:329.216235px;}
.x1b_c00136{left:339.131085px;}
.x5f_c00136{left:340.804185px;}
.x68_c00136{left:351.525885px;}
.x27_c00136{left:361.514985px;}
.x64_c00136{left:362.569335px;}
.x4d_c00136{left:365.014635px;}
.x12_c00136{left:372.929685px;}
.x13_c00136{left:383.067285px;}
.x31_c00136{left:384.319635px;}
.x3a_c00136{left:385.354185px;}
.x42_c00136{left:388.947885px;}
.x6_c00136{left:395.734335px;}
.x53_c00136{left:408.193485px;}
.x28_c00136{left:417.845985px;}
.x60_c00136{left:418.895385px;}
.x1c_c00136{left:428.047935px;}
.x45_c00136{left:429.607185px;}
.x37_c00136{left:437.289585px;}
.x29_c00136{left:438.675585px;}
.x7_c00136{left:439.903185px;}
.x46_c00136{left:450.075435px;}
.x49_c00136{left:451.669335px;}
.x3f_c00136{left:453.015735px;}
.x14_c00136{left:461.321835px;}
.x58_c00136{left:462.712785px;}
.x8_c00136{left:473.058285px;}
.x32_c00136{left:483.418635px;}
.x15_c00136{left:495.145185px;}
.x36_c00136{left:503.852235px;}
.x43_c00136{left:506.045085px;}
.x69_c00136{left:509.326935px;}
.x33_c00136{left:517.241985px;}
.x9_c00136{left:527.968635px;}
.x59_c00136{left:528.983385px;}
.x1d_c00136{left:539.368485px;}
.x2a_c00136{left:548.743785px;}
.x34_c00136{left:549.862485px;}
.xa_c00136{left:559.797135px;}
.x16_c00136{left:561.257385px;}
.x56_c00136{left:571.251435px;}
.xb_c00136{left:572.488935px;}
.x47_c00136{left:583.210635px;}
.x35_c00136{left:594.887685px;}
.x24_c00136{left:604.946085px;}
.x6a_c00136{left:605.985585px;}
.x1e_c00136{left:615.865785px;}
.x17_c00136{left:619.147635px;}
.x4a_c00136{left:626.473635px;}
.x44_c00136{left:627.562635px;}
.x2b_c00136{left:629.819835px;}
.x2_c00136{left:634.294635px;}
.x25_c00136{left:639.125835px;}
.x1f_c00136{left:650.159385px;}
.x3_c00136{left:660.841485px;}
.x5d_c00136{left:661.905735px;}
.x18_c00136{left:671.716635px;}
.x61_c00136{left:673.018485px;}
.x4b_c00136{left:684.274785px;}
.x2c_c00136{left:694.348035px;}
.x2d_c00136{left:695.506335px;}
.x6b_c00136{left:696.530985px;}
.x4c_c00136{left:705.307335px;}
.x4e_c00136{left:706.732935px;}
.x2e_c00136{left:736.200285px;}
@media print{
.v1_c00136{vertical-align:-3.784000pt;}
.v0_c00136{vertical-align:0.000000pt;}
.ls7_c00136{letter-spacing:-2.439360pt;}
.lsd_c00136{letter-spacing:-2.111789pt;}
.ls14_c00136{letter-spacing:-0.837760pt;}
.ls1_c00136{letter-spacing:0.000000pt;}
.ls11_c00136{letter-spacing:0.627264pt;}
.lsa_c00136{letter-spacing:1.108166pt;}
.ls12_c00136{letter-spacing:1.184832pt;}
.ls5_c00136{letter-spacing:1.498464pt;}
.ls6_c00136{letter-spacing:1.895731pt;}
.ls0_c00136{letter-spacing:2.104819pt;}
.ls4_c00136{letter-spacing:2.453299pt;}
.ls10_c00136{letter-spacing:2.766931pt;}
.lsb_c00136{letter-spacing:2.836627pt;}
.ls13_c00136{letter-spacing:3.150400pt;}
.lsc_c00136{letter-spacing:3.238400pt;}
.ls9_c00136{letter-spacing:3.361609pt;}
.ls3_c00136{letter-spacing:3.484800pt;}
.ls2_c00136{letter-spacing:3.819209pt;}
.ls8_c00136{letter-spacing:3.977609pt;}
.lse_c00136{letter-spacing:45.619376pt;}
.lsf_c00136{letter-spacing:50.688176pt;}
.ws1_c00136{word-spacing:-20.260627pt;}
.ws0_c00136{word-spacing:-19.528819pt;}
.ws3_c00136{word-spacing:-17.424000pt;}
.ws2_c00136{word-spacing:-1.253824pt;}
.ws4_c00136{word-spacing:0.000000pt;}
._8_c00136{margin-left:-11.991654pt;}
._a_c00136{margin-left:-10.733184pt;}
._0_c00136{width:1.951488pt;}
._14_c00136{width:4.530240pt;}
._9_c00136{width:5.645376pt;}
._c_c00136{width:6.760512pt;}
._1_c00136{width:8.921088pt;}
._f_c00136{width:10.593792pt;}
._12_c00136{width:12.008832pt;}
._10_c00136{width:13.590720pt;}
._e_c00136{width:15.333120pt;}
._3_c00136{width:18.539136pt;}
._4_c00136{width:19.793664pt;}
._b_c00136{width:21.048192pt;}
._11_c00136{width:24.463296pt;}
._13_c00136{width:26.972352pt;}
._5_c00136{width:28.993536pt;}
._15_c00136{width:30.248416pt;}
._7_c00136{width:31.572288pt;}
._d_c00136{width:34.848000pt;}
._2_c00136{width:38.681280pt;}
._6_c00136{width:704.292864pt;}
.fs0_c00136{font-size:19.712000pt;}
.fs9_c00136{font-size:21.472000pt;}
.fs12_c00136{font-size:23.936000pt;}
.fs7_c00136{font-size:24.640000pt;}
.fs10_c00136{font-size:26.928000pt;}
.fs8_c00136{font-size:35.200000pt;}
.fs6_c00136{font-size:39.424000pt;}
.fse_c00136{font-size:41.184000pt;}
.fsc_c00136{font-size:45.619376pt;}
.fs11_c00136{font-size:49.280000pt;}
.fsd_c00136{font-size:50.688176pt;}
.fs3_c00136{font-size:57.376000pt;}
.fsf_c00136{font-size:63.008000pt;}
.fsb_c00136{font-size:64.768000pt;}
.fs5_c00136{font-size:67.232176pt;}
.fs2_c00136{font-size:69.696000pt;}
.fsa_c00136{font-size:70.048000pt;}
.fs1_c00136{font-size:76.384176pt;}
.fs4_c00136{font-size:79.552176pt;}
.y0_c00136{bottom:0.000000pt;}
.y24_c00136{bottom:30.330120pt;}
.y23_c00136{bottom:34.448520pt;}
.y22_c00136{bottom:52.189320pt;}
.y21_c00136{bottom:58.846520pt;}
.y1_c00136{bottom:68.000000pt;}
.y20_c00136{bottom:111.118520pt;}
.y1f_c00136{bottom:137.725320pt;}
.y1e_c00136{bottom:165.608120pt;}
.y1d_c00136{bottom:224.528520pt;}
.y1c_c00136{bottom:253.995320pt;}
.y1b_c00136{bottom:282.824120pt;}
.y1a_c00136{bottom:311.336120pt;}
.y19_c00136{bottom:340.481720pt;}
.y18_c00136{bottom:368.676920pt;}
.y17_c00136{bottom:397.501320pt;}
.y16_c00136{bottom:425.700920pt;}
.y15_c00136{bottom:454.525320pt;}
.y14_c00136{bottom:482.724920pt;}
.y13_c00136{bottom:511.870520pt;}
.y12_c00136{bottom:541.016120pt;}
.y11_c00136{bottom:569.844920pt;}
.y10_c00136{bottom:598.352520pt;}
.yf_c00136{bottom:628.448520pt;}
.yd_c00136{bottom:654.430520pt;}
.ye_c00136{bottom:662.979720pt;}
.yc_c00136{bottom:683.259320pt;}
.ya_c00136{bottom:705.114120pt;}
.y9_c00136{bottom:712.083720pt;}
.y8_c00136{bottom:712.721720pt;}
.y7_c00136{bottom:741.867320pt;}
.y6_c00136{bottom:770.379320pt;}
.y5_c00136{bottom:799.524920pt;}
.y4_c00136{bottom:828.353720pt;}
.yb_c00136{bottom:881.259320pt;}
.y3_c00136{bottom:960.771720pt;}
.y2_c00136{bottom:966.157320pt;}
.h2_c00136{height:20.559000pt;}
.hb_c00136{height:22.394625pt;}
.h14_c00136{height:24.964500pt;}
.h9_c00136{height:25.698750pt;}
.h12_c00136{height:28.085063pt;}
.he_c00136{height:30.382504pt;}
.ha_c00136{height:32.928500pt;}
.hf_c00136{height:33.758325pt;}
.h8_c00136{height:41.118000pt;}
.h10_c00136{height:42.953625pt;}
.h13_c00136{height:51.397500pt;}
.h5_c00136{height:59.841375pt;}
.h11_c00136{height:61.838906pt;}
.hd_c00136{height:65.274000pt;}
.h7_c00136{height:65.984704pt;}
.h4_c00136{height:68.402813pt;}
.hc_c00136{height:68.748281pt;}
.h3_c00136{height:74.966891pt;}
.h6_c00136{height:78.076110pt;}
.h1_c00136{height:986.666667pt;}
.h0_c00136{height:1122.666667pt;}
.w1_c00136{width:689.333333pt;}
.w0_c00136{width:793.333333pt;}
.x0_c00136{left:0.000000pt;}
.x1_c00136{left:52.000000pt;}
.x3b_c00136{left:74.035853pt;}
.x4_c00136{left:75.483453pt;}
.x5e_c00136{left:77.529453pt;}
.x3c_c00136{left:85.000653pt;}
.x65_c00136{left:87.244653pt;}
.x20_c00136{left:104.871053pt;}
.x66_c00136{left:106.239453pt;}
.x19_c00136{left:114.058253pt;}
.x48_c00136{left:115.413453pt;}
.x21_c00136{left:124.305853pt;}
.x5a_c00136{left:125.872253pt;}
.x2f_c00136{left:133.039853pt;}
.x26_c00136{left:134.157453pt;}
.x3d_c00136{left:143.177453pt;}
.x22_c00136{left:144.119053pt;}
.x62_c00136{left:145.527053pt;}
.xc_c00136{left:153.662653pt;}
.x50_c00136{left:154.969453pt;}
.x5_c00136{left:163.206253pt;}
.x5b_c00136{left:164.227053pt;}
.x30_c00136{left:173.396653pt;}
.x54_c00136{left:183.864253pt;}
.x40_c00136{left:184.832253pt;}
.xd_c00136{left:193.368253pt;}
.x52_c00136{left:194.626653pt;}
.xe_c00136{left:202.819453pt;}
.x55_c00136{left:204.113053pt;}
.x38_c00136{left:213.331053pt;}
.x67_c00136{left:214.263853pt;}
.x5c_c00136{left:215.768653pt;}
.x41_c00136{left:223.055053pt;}
.x51_c00136{left:224.062653pt;}
.x1a_c00136{left:233.901053pt;}
.xf_c00136{left:242.907853pt;}
.x63_c00136{left:244.012253pt;}
.x23_c00136{left:252.499853pt;}
.x4f_c00136{left:253.859453pt;}
.x10_c00136{left:263.310653pt;}
.x3e_c00136{left:272.854253pt;}
.x39_c00136{left:282.362653pt;}
.x11_c00136{left:291.690653pt;}
.x57_c00136{left:292.636653pt;}
.x1b_c00136{left:301.449853pt;}
.x5f_c00136{left:302.937053pt;}
.x68_c00136{left:312.467453pt;}
.x27_c00136{left:321.346653pt;}
.x64_c00136{left:322.283853pt;}
.x4d_c00136{left:324.457453pt;}
.x12_c00136{left:331.493053pt;}
.x13_c00136{left:340.504253pt;}
.x31_c00136{left:341.617453pt;}
.x3a_c00136{left:342.537053pt;}
.x42_c00136{left:345.731453pt;}
.x6_c00136{left:351.763853pt;}
.x53_c00136{left:362.838653pt;}
.x28_c00136{left:371.418653pt;}
.x60_c00136{left:372.351453pt;}
.x1c_c00136{left:380.487053pt;}
.x45_c00136{left:381.873053pt;}
.x37_c00136{left:388.701853pt;}
.x29_c00136{left:389.933853pt;}
.x7_c00136{left:391.025053pt;}
.x46_c00136{left:400.067053pt;}
.x49_c00136{left:401.483853pt;}
.x3f_c00136{left:402.680653pt;}
.x14_c00136{left:410.063853pt;}
.x58_c00136{left:411.300253pt;}
.x8_c00136{left:420.496253pt;}
.x32_c00136{left:429.705453pt;}
.x15_c00136{left:440.129053pt;}
.x36_c00136{left:447.868653pt;}
.x43_c00136{left:449.817853pt;}
.x69_c00136{left:452.735053pt;}
.x33_c00136{left:459.770653pt;}
.x9_c00136{left:469.305453pt;}
.x59_c00136{left:470.207453pt;}
.x1d_c00136{left:479.438653pt;}
.x2a_c00136{left:487.772253pt;}
.x34_c00136{left:488.766653pt;}
.xa_c00136{left:497.597453pt;}
.x16_c00136{left:498.895453pt;}
.x56_c00136{left:507.779053pt;}
.xb_c00136{left:508.879053pt;}
.x47_c00136{left:518.409453pt;}
.x35_c00136{left:528.789053pt;}
.x24_c00136{left:537.729853pt;}
.x6a_c00136{left:538.653853pt;}
.x1e_c00136{left:547.436253pt;}
.x17_c00136{left:550.353453pt;}
.x4a_c00136{left:556.865453pt;}
.x44_c00136{left:557.833453pt;}
.x2b_c00136{left:559.839853pt;}
.x2_c00136{left:563.817453pt;}
.x25_c00136{left:568.111853pt;}
.x1f_c00136{left:577.919453pt;}
.x3_c00136{left:587.414653pt;}
.x5d_c00136{left:588.360653pt;}
.x18_c00136{left:597.081453pt;}
.x61_c00136{left:598.238653pt;}
.x4b_c00136{left:608.244253pt;}
.x2c_c00136{left:617.198253pt;}
.x2d_c00136{left:618.227853pt;}
.x6b_c00136{left:619.138653pt;}
.x4c_c00136{left:626.939853pt;}
.x4e_c00136{left:628.207053pt;}
.x2e_c00136{left:654.400253pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_695d699fda4dbcb50de52a57.woff2')format("woff");}.ff1_c00137{font-family:ff1_c00137;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00137;src:url('chunks/assets/font_95011ba3723f90969ab2b106.woff2')format("woff");}.ff2_c00137{font-family:ff2_c00137;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00137;src:url('chunks/assets/font_55027f8896a0ae890d248c3e.woff2')format("woff");}.ff3_c00137{font-family:ff3_c00137;line-height:0.666000;font-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_c00137{transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);}
.m69_c00137{transform:matrix(0.206629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206629,0.000000,0.000000,0.250000,0,0);}
.m74_c00137{transform:matrix(0.219985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219985,0.000000,0.000000,0.250000,0,0);}
.m77_c00137{transform:matrix(0.244940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244940,0.000000,0.000000,0.250000,0,0);}
.m0_c00137{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00137{transform:matrix(0.251939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251939,0.000000,0.000000,0.250000,0,0);}
.m53_c00137{transform:matrix(0.252783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252783,0.000000,0.000000,0.250000,0,0);}
.m67_c00137{transform:matrix(0.253194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253194,0.000000,0.000000,0.250000,0,0);}
.m16_c00137{transform:matrix(0.253899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253899,0.000000,0.000000,0.250000,0,0);}
.m41_c00137{transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);}
.m5_c00137{transform:matrix(0.260515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260515,0.000000,0.000000,0.250000,0,0);}
.m31_c00137{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.m63_c00137{transform:matrix(0.262539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262539,0.000000,0.000000,0.250000,0,0);}
.m66_c00137{transform:matrix(0.262979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262979,0.000000,0.000000,0.250000,0,0);}
.m76_c00137{transform:matrix(0.263036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263036,0.000000,0.000000,0.250000,0,0);}
.m47_c00137{transform:matrix(0.263083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263083,0.000000,0.000000,0.250000,0,0);}
.m4_c00137{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m15_c00137{transform:matrix(0.263720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263720,0.000000,0.000000,0.250000,0,0);}
.m3f_c00137{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m2c_c00137{transform:matrix(0.265655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265655,0.000000,0.000000,0.250000,0,0);}
.mb_c00137{transform:matrix(0.265700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265700,0.000000,0.000000,0.250000,0,0);}
.m19_c00137{transform:matrix(0.265944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265944,0.000000,0.000000,0.250000,0,0);}
.m27_c00137{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m34_c00137{transform:matrix(0.266384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266384,0.000000,0.000000,0.250000,0,0);}
.m8_c00137{transform:matrix(0.266425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266425,0.000000,0.000000,0.250000,0,0);}
.m10_c00137{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.m84_c00137{transform:matrix(0.267199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267199,0.000000,0.000000,0.250000,0,0);}
.md_c00137{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m5e_c00137{transform:matrix(0.267944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267944,0.000000,0.000000,0.250000,0,0);}
.m7a_c00137{transform:matrix(0.268217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268217,0.000000,0.000000,0.250000,0,0);}
.m79_c00137{transform:matrix(0.268289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268289,0.000000,0.000000,0.250000,0,0);}
.m24_c00137{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.m17_c00137{transform:matrix(0.268892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268892,0.000000,0.000000,0.250000,0,0);}
.m30_c00137{transform:matrix(0.269049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269049,0.000000,0.000000,0.250000,0,0);}
.m48_c00137{transform:matrix(0.269857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269857,0.000000,0.000000,0.250000,0,0);}
.m6c_c00137{transform:matrix(0.270256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270256,0.000000,0.000000,0.250000,0,0);}
.m1a_c00137{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m4c_c00137{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m3b_c00137{transform:matrix(0.272918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272918,0.000000,0.000000,0.250000,0,0);}
.m7_c00137{transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);}
.m7d_c00137{transform:matrix(0.274790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274790,0.000000,0.000000,0.250000,0,0);}
.m5b_c00137{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m88_c00137{transform:matrix(0.277421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277421,0.000000,0.000000,0.250000,0,0);}
.m86_c00137{transform:matrix(0.277564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277564,0.000000,0.000000,0.250000,0,0);}
.m33_c00137{transform:matrix(0.278302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278302,0.000000,0.000000,0.250000,0,0);}
.m4a_c00137{transform:matrix(0.278426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278426,0.000000,0.000000,0.250000,0,0);}
.m71_c00137{transform:matrix(0.279275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279275,0.000000,0.000000,0.250000,0,0);}
.m46_c00137{transform:matrix(0.279868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279868,0.000000,0.000000,0.250000,0,0);}
.m9_c00137{transform:matrix(0.280174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280174,0.000000,0.000000,0.250000,0,0);}
.m80_c00137{transform:matrix(0.281372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281372,0.000000,0.000000,0.250000,0,0);}
.m6_c00137{transform:matrix(0.282101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282101,0.000000,0.000000,0.250000,0,0);}
.mf_c00137{transform:matrix(0.282564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282564,0.000000,0.000000,0.250000,0,0);}
.m52_c00137{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m6e_c00137{transform:matrix(0.284009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284009,0.000000,0.000000,0.250000,0,0);}
.m1f_c00137{transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);}
.m44_c00137{transform:matrix(0.285528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285528,0.000000,0.000000,0.250000,0,0);}
.m2f_c00137{transform:matrix(0.286057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286057,0.000000,0.000000,0.250000,0,0);}
.m50_c00137{transform:matrix(0.286291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286291,0.000000,0.000000,0.250000,0,0);}
.m20_c00137{transform:matrix(0.286548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286548,0.000000,0.000000,0.250000,0,0);}
.m22_c00137{transform:matrix(0.287119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287119,0.000000,0.000000,0.250000,0,0);}
.m81_c00137{transform:matrix(0.287830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287830,0.000000,0.000000,0.250000,0,0);}
.m64_c00137{transform:matrix(0.288145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288145,0.000000,0.000000,0.250000,0,0);}
.m89_c00137{transform:matrix(0.291242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291242,0.000000,0.000000,0.250000,0,0);}
.m2d_c00137{transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);}
.m3e_c00137{transform:matrix(0.293585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293585,0.000000,0.000000,0.250000,0,0);}
.m5f_c00137{transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);}
.m65_c00137{transform:matrix(0.294340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294340,0.000000,0.000000,0.250000,0,0);}
.m68_c00137{transform:matrix(0.295244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295244,0.000000,0.000000,0.250000,0,0);}
.m72_c00137{transform:matrix(0.295247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295247,0.000000,0.000000,0.250000,0,0);}
.m3c_c00137{transform:matrix(0.296391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296391,0.000000,0.000000,0.250000,0,0);}
.m4e_c00137{transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);}
.m82_c00137{transform:matrix(0.297285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297285,0.000000,0.000000,0.250000,0,0);}
.m4b_c00137{transform:matrix(0.297306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297306,0.000000,0.000000,0.250000,0,0);}
.m1c_c00137{transform:matrix(0.297355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297355,0.000000,0.000000,0.250000,0,0);}
.m49_c00137{transform:matrix(0.297661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297661,0.000000,0.000000,0.250000,0,0);}
.m55_c00137{transform:matrix(0.297952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297952,0.000000,0.000000,0.250000,0,0);}
.m57_c00137{transform:matrix(0.298105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298105,0.000000,0.000000,0.250000,0,0);}
.m5c_c00137{transform:matrix(0.298710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298710,0.000000,0.000000,0.250000,0,0);}
.m75_c00137{transform:matrix(0.299332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299332,0.000000,0.000000,0.250000,0,0);}
.m37_c00137{transform:matrix(0.299372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299372,0.000000,0.000000,0.250000,0,0);}
.m18_c00137{transform:matrix(0.299701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299701,0.000000,0.000000,0.250000,0,0);}
.m7f_c00137{transform:matrix(0.300200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300200,0.000000,0.000000,0.250000,0,0);}
.m73_c00137{transform:matrix(0.300360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300360,0.000000,0.000000,0.250000,0,0);}
.m2a_c00137{transform:matrix(0.300944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300944,0.000000,0.000000,0.250000,0,0);}
.m3_c00137{transform:matrix(0.302559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302559,0.000000,0.000000,0.250000,0,0);}
.m85_c00137{transform:matrix(0.303218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303218,0.000000,0.000000,0.250000,0,0);}
.m78_c00137{transform:matrix(0.303440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303440,0.000000,0.000000,0.250000,0,0);}
.m51_c00137{transform:matrix(0.304378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304378,0.000000,0.000000,0.250000,0,0);}
.m58_c00137{transform:matrix(0.305577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305577,0.000000,0.000000,0.250000,0,0);}
.m6d_c00137{transform:matrix(0.306607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306607,0.000000,0.000000,0.250000,0,0);}
.m6a_c00137{transform:matrix(0.307388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307388,0.000000,0.000000,0.250000,0,0);}
.m29_c00137{transform:matrix(0.308091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308091,0.000000,0.000000,0.250000,0,0);}
.m70_c00137{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.mc_c00137{transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);}
.m42_c00137{transform:matrix(0.308758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308758,0.000000,0.000000,0.250000,0,0);}
.m7e_c00137{transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);}
.m6b_c00137{transform:matrix(0.309757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309757,0.000000,0.000000,0.250000,0,0);}
.m43_c00137{transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);}
.m4f_c00137{transform:matrix(0.311045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311045,0.000000,0.000000,0.250000,0,0);}
.m7c_c00137{transform:matrix(0.311122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311122,0.000000,0.000000,0.250000,0,0);}
.m3d_c00137{transform:matrix(0.311236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311236,0.000000,0.000000,0.250000,0,0);}
.m5d_c00137{transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);}
.m4d_c00137{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.m1d_c00137{transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);}
.m26_c00137{transform:matrix(0.315738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315738,0.000000,0.000000,0.250000,0,0);}
.m2e_c00137{transform:matrix(0.315960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315960,0.000000,0.000000,0.250000,0,0);}
.m54_c00137{transform:matrix(0.316169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316169,0.000000,0.000000,0.250000,0,0);}
.m40_c00137{transform:matrix(0.317099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317099,0.000000,0.000000,0.250000,0,0);}
.m60_c00137{transform:matrix(0.318131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318131,0.000000,0.000000,0.250000,0,0);}
.m3a_c00137{transform:matrix(0.318513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318513,0.000000,0.000000,0.250000,0,0);}
.m32_c00137{transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);}
.m83_c00137{transform:matrix(0.319227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319227,0.000000,0.000000,0.250000,0,0);}
.m7b_c00137{transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);}
.m12_c00137{transform:matrix(0.322515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322515,0.000000,0.000000,0.250000,0,0);}
.m61_c00137{transform:matrix(0.323322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323322,0.000000,0.000000,0.250000,0,0);}
.m25_c00137{transform:matrix(0.325655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325655,0.000000,0.000000,0.250000,0,0);}
.m23_c00137{transform:matrix(0.325727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325727,0.000000,0.000000,0.250000,0,0);}
.m21_c00137{transform:matrix(0.327290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327290,0.000000,0.000000,0.250000,0,0);}
.m1e_c00137{transform:matrix(0.329308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329308,0.000000,0.000000,0.250000,0,0);}
.m35_c00137{transform:matrix(0.333052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333052,0.000000,0.000000,0.250000,0,0);}
.m1b_c00137{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m87_c00137{transform:matrix(0.333376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333376,0.000000,0.000000,0.250000,0,0);}
.m45_c00137{transform:matrix(0.333537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333537,0.000000,0.000000,0.250000,0,0);}
.me_c00137{transform:matrix(0.336458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336458,0.000000,0.000000,0.250000,0,0);}
.m6f_c00137{transform:matrix(0.336976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336976,0.000000,0.000000,0.250000,0,0);}
.m2b_c00137{transform:matrix(0.338926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338926,0.000000,0.000000,0.250000,0,0);}
.ma_c00137{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m36_c00137{transform:matrix(0.345602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345602,0.000000,0.000000,0.250000,0,0);}
.m5a_c00137{transform:matrix(0.345862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345862,0.000000,0.000000,0.250000,0,0);}
.m59_c00137{transform:matrix(0.346424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346424,0.000000,0.000000,0.250000,0,0);}
.m62_c00137{transform:matrix(0.348650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348650,0.000000,0.000000,0.250000,0,0);}
.m56_c00137{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m39_c00137{transform:matrix(0.350220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350220,0.000000,0.000000,0.250000,0,0);}
.m14_c00137{transform:matrix(0.355039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355039,0.000000,0.000000,0.250000,0,0);}
.m11_c00137{transform:matrix(0.355213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355213,0.000000,0.000000,0.250000,0,0);}
.m13_c00137{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m28_c00137{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m38_c00137{transform:matrix(0.367117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367117,0.000000,0.000000,0.250000,0,0);}
.v1_c00137{vertical-align:-25.660800px;}
.v0_c00137{vertical-align:0.000000px;}
.lsd_c00137{letter-spacing:-2.744280px;}
.ls6_c00137{letter-spacing:-2.375762px;}
.ls7_c00137{letter-spacing:-1.662250px;}
.ls5_c00137{letter-spacing:-0.580219px;}
.lsa_c00137{letter-spacing:-0.094090px;}
.ls1_c00137{letter-spacing:0.000000px;}
.lse_c00137{letter-spacing:0.352322px;}
.ls8_c00137{letter-spacing:1.246687px;}
.ls9_c00137{letter-spacing:3.128479px;}
.ls0_c00137{letter-spacing:3.323628px;}
.lsb_c00137{letter-spacing:3.544200px;}
.lsf_c00137{letter-spacing:3.801610px;}
.ls4_c00137{letter-spacing:3.920400px;}
.lsc_c00137{letter-spacing:4.029310px;}
.ls2_c00137{letter-spacing:4.296610px;}
.ls3_c00137{letter-spacing:29.937798px;}
.sc__c00137{text-shadow:none;}
.sc0_c00137{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00137{-webkit-text-stroke:0px transparent;}
.sc0_c00137{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00137{word-spacing:-19.602000px;}
.ws1_c00137{word-spacing:0.000000px;}
._d_c00137{margin-left:-3.920400px;}
._4_c00137{width:6.272640px;}
._8_c00137{width:8.075628px;}
._a_c00137{width:10.585080px;}
._e_c00137{width:11.761200px;}
._c_c00137{width:13.237686px;}
._5_c00137{width:17.484984px;}
._9_c00137{width:22.267872px;}
._7_c00137{width:26.031060px;}
._b_c00137{width:28.317168px;}
._2_c00137{width:31.020660px;}
._1_c00137{width:33.687720px;}
._3_c00137{width:37.471421px;}
._6_c00137{width:38.811960px;}
._0_c00137{width:339.721954px;}
.fc0_c00137{color:transparent;}
.fs10_c00137{font-size:16.632000px;}
.fsd_c00137{font-size:22.176000px;}
.fs15_c00137{font-size:22.374000px;}
.fs0_c00137{font-size:22.572000px;}
.fs4_c00137{font-size:25.344000px;}
.fsb_c00137{font-size:26.928000px;}
.fs16_c00137{font-size:27.720000px;}
.fsa_c00137{font-size:28.314000px;}
.fs5_c00137{font-size:29.937798px;}
.fs13_c00137{font-size:30.888000px;}
.fs12_c00137{font-size:33.660000px;}
.fs3_c00137{font-size:34.056198px;}
.fs11_c00137{font-size:38.808000px;}
.fs6_c00137{font-size:39.600000px;}
.fs7_c00137{font-size:45.144000px;}
.fsc_c00137{font-size:46.332000px;}
.fs14_c00137{font-size:51.084000px;}
.fsf_c00137{font-size:55.440000px;}
.fs9_c00137{font-size:66.330000px;}
.fs17_c00137{font-size:70.884000px;}
.fs2_c00137{font-size:72.864000px;}
.fs19_c00137{font-size:76.032198px;}
.fse_c00137{font-size:76.230000px;}
.fs8_c00137{font-size:78.408000px;}
.fs18_c00137{font-size:80.586198px;}
.fs1_c00137{font-size:85.932198px;}
.y0_c00137{bottom:0.000000px;}
.y29_c00137{bottom:17.375535px;}
.y1_c00137{bottom:76.500000px;}
.y2a_c00137{bottom:97.209135px;}
.y28_c00137{bottom:151.738335px;}
.y27_c00137{bottom:183.096585px;}
.y26_c00137{bottom:216.246735px;}
.y25_c00137{bottom:249.035535px;}
.y24_c00137{bottom:280.750185px;}
.y23_c00137{bottom:315.677385px;}
.y22_c00137{bottom:319.241385px;}
.y1c_c00137{bottom:322.097535px;}
.y1b_c00137{bottom:377.334585px;}
.y21_c00137{bottom:377.695935px;}
.y20_c00137{bottom:442.917135px;}
.y1f_c00137{bottom:451.827135px;}
.y1a_c00137{bottom:468.934335px;}
.y1e_c00137{bottom:473.918985px;}
.y1d_c00137{bottom:479.621385px;}
.y19_c00137{bottom:521.676585px;}
.y18_c00137{bottom:537.363135px;}
.y17_c00137{bottom:569.434185px;}
.y16_c00137{bottom:601.510185px;}
.y15_c00137{bottom:616.127535px;}
.y14_c00137{bottom:628.957935px;}
.y13_c00137{bottom:634.298985px;}
.y12_c00137{bottom:649.985535px;}
.y11_c00137{bottom:666.023535px;}
.y10_c00137{bottom:698.094585px;}
.y2_c00137{bottom:707.360985px;}
.yf_c00137{bottom:731.239785px;}
.ye_c00137{bottom:750.128985px;}
.yd_c00137{bottom:764.389935px;}
.yc_c00137{bottom:829.967535px;}
.yb_c00137{bottom:862.751385px;}
.ya_c00137{bottom:895.896585px;}
.y9_c00137{bottom:927.977535px;}
.y8_c00137{bottom:977.160735px;}
.y7_c00137{bottom:1019.210985px;}
.y6_c00137{bottom:1027.051785px;}
.y5_c00137{bottom:1043.802585px;}
.y4_c00137{bottom:1050.217785px;}
.y3_c00137{bottom:1078.016985px;}
.h6_c00137{height:19.938573px;}
.h13_c00137{height:21.958857px;}
.hd_c00137{height:23.128875px;}
.h2_c00137{height:23.541891px;}
.hb_c00137{height:28.085063px;}
.h14_c00137{height:28.911094px;}
.ha_c00137{height:29.530617px;}
.h11_c00137{height:32.215219px;}
.h10_c00137{height:33.035449px;}
.h5_c00137{height:35.519550px;}
.hf_c00137{height:40.475531px;}
.h7_c00137{height:41.301563px;}
.h8_c00137{height:47.083781px;}
.hc_c00137{height:48.322828px;}
.h12_c00137{height:50.136152px;}
.he_c00137{height:57.822188px;}
.h15_c00137{height:69.568770px;}
.h4_c00137{height:71.512031px;}
.h17_c00137{height:74.621444px;}
.h9_c00137{height:76.953164px;}
.h16_c00137{height:79.090946px;}
.h3_c00137{height:84.337753px;}
.h1_c00137{height:1110.000000px;}
.h0_c00137{height:1263.000000px;}
.w1_c00137{width:775.500000px;}
.w0_c00137{width:892.500000px;}
.x0_c00137{left:0.000000px;}
.x2_c00137{left:41.546985px;}
.x1_c00137{left:58.500000px;}
.x23_c00137{left:84.750585px;}
.x9_c00137{left:86.304885px;}
.x5e_c00137{left:87.789885px;}
.x5b_c00137{left:89.522385px;}
.x3d_c00137{left:107.500785px;}
.x13_c00137{left:119.172885px;}
.x5f_c00137{left:122.667585px;}
.x1d_c00137{left:131.280585px;}
.x24_c00137{left:140.987535px;}
.x14_c00137{left:151.392435px;}
.x30_c00137{left:153.367485px;}
.x44_c00137{left:163.717935px;}
.x52_c00137{left:173.197185px;}
.xa_c00137{left:174.776235px;}
.x1e_c00137{left:185.799885px;}
.x54_c00137{left:196.877985px;}
.x49_c00137{left:205.941435px;}
.x45_c00137{left:207.238335px;}
.xb_c00137{left:208.267935px;}
.x35_c00137{left:217.385835px;}
.x15_c00137{left:218.608485px;}
.x4e_c00137{left:226.127535px;}
.x1f_c00137{left:229.988535px;}
.x3e_c00137{left:241.061685px;}
.x31_c00137{left:242.096235px;}
.x16_c00137{left:252.436785px;}
.x2b_c00137{left:263.678235px;}
.x3f_c00137{left:272.895135px;}
.x55_c00137{left:274.177185px;}
.x36_c00137{left:275.256285px;}
.xc_c00137{left:285.185985px;}
.x4b_c00137{left:296.600685px;}
.x4a_c00137{left:307.802535px;}
.x2c_c00137{left:319.439985px;}
.x25_c00137{left:330.800235px;}
.x37_c00137{left:340.477485px;}
.x17_c00137{left:351.902085px;}
.x2d_c00137{left:363.084135px;}
.x53_c00137{left:373.805835px;}
.xd_c00137{left:375.389835px;}
.x50_c00137{left:384.091935px;}
.x46_c00137{left:385.418535px;}
.x38_c00137{left:395.546235px;}
.x18_c00137{left:396.580785px;}
.x32_c00137{left:407.807385px;}
.x56_c00137{left:418.880535px;}
.x2e_c00137{left:429.968535px;}
.x40_c00137{left:432.344535px;}
.x60_c00137{left:439.744785px;}
.x26_c00137{left:441.596085px;}
.x39_c00137{left:452.050485px;}
.x5c_c00137{left:461.841585px;}
.x19_c00137{left:463.098885px;}
.x2f_c00137{left:474.736335px;}
.x3c_c00137{left:483.794835px;}
.xe_c00137{left:486.235185px;}
.x27_c00137{left:494.308635px;}
.x1a_c00137{left:496.555935px;}
.x51_c00137{left:505.500585px;}
.x33_c00137{left:507.252885px;}
.x20_c00137{left:508.336935px;}
.x57_c00137{left:516.984585px;}
.xf_c00137{left:519.137835px;}
.x3a_c00137{left:528.829935px;}
.x34_c00137{left:540.407985px;}
.x21_c00137{left:541.784085px;}
.x41_c00137{left:550.580235px;}
.x47_c00137{left:551.802885px;}
.x4f_c00137{left:562.301835px;}
.x58_c00137{left:571.914735px;}
.x22_c00137{left:573.751185px;}
.x3b_c00137{left:584.279835px;}
.x4c_c00137{left:594.402585px;}
.x10_c00137{left:595.669785px;}
.x28_c00137{left:607.079535px;}
.x5_c00137{left:611.717685px;}
.x59_c00137{left:616.707285px;}
.x1b_c00137{left:628.785285px;}
.x4d_c00137{left:638.972385px;}
.x8_c00137{left:649.070385px;}
.x29_c00137{left:650.797935px;}
.x1c_c00137{left:662.128485px;}
.x3_c00137{left:664.054035px;}
.x5a_c00137{left:673.325385px;}
.x5d_c00137{left:684.388635px;}
.x48_c00137{left:685.452885px;}
.x42_c00137{left:693.348135px;}
.x11_c00137{left:695.704335px;}
.x2a_c00137{left:698.001135px;}
.x4_c00137{left:699.659385px;}
.x6_c00137{left:701.030535px;}
.x7_c00137{left:703.990635px;}
.x43_c00137{left:705.807285px;}
.x12_c00137{left:728.943585px;}
.x61_c00137{left:751.169085px;}
@media print{
.v1_c00137{vertical-align:-22.809600pt;}
.v0_c00137{vertical-align:0.000000pt;}
.lsd_c00137{letter-spacing:-2.439360pt;}
.ls6_c00137{letter-spacing:-2.111789pt;}
.ls7_c00137{letter-spacing:-1.477555pt;}
.ls5_c00137{letter-spacing:-0.515750pt;}
.lsa_c00137{letter-spacing:-0.083635pt;}
.ls1_c00137{letter-spacing:0.000000pt;}
.lse_c00137{letter-spacing:0.313175pt;}
.ls8_c00137{letter-spacing:1.108166pt;}
.ls9_c00137{letter-spacing:2.780870pt;}
.ls0_c00137{letter-spacing:2.954336pt;}
.lsb_c00137{letter-spacing:3.150400pt;}
.lsf_c00137{letter-spacing:3.379209pt;}
.ls4_c00137{letter-spacing:3.484800pt;}
.lsc_c00137{letter-spacing:3.581609pt;}
.ls2_c00137{letter-spacing:3.819209pt;}
.ls3_c00137{letter-spacing:26.611376pt;}
.ws0_c00137{word-spacing:-17.424000pt;}
.ws1_c00137{word-spacing:0.000000pt;}
._d_c00137{margin-left:-3.484800pt;}
._4_c00137{width:5.575680pt;}
._8_c00137{width:7.178336pt;}
._a_c00137{width:9.408960pt;}
._e_c00137{width:10.454400pt;}
._c_c00137{width:11.766832pt;}
._5_c00137{width:15.542208pt;}
._9_c00137{width:19.793664pt;}
._7_c00137{width:23.138720pt;}
._b_c00137{width:25.170816pt;}
._2_c00137{width:27.573920pt;}
._1_c00137{width:29.944640pt;}
._3_c00137{width:33.307930pt;}
._6_c00137{width:34.499520pt;}
._0_c00137{width:301.975070pt;}
.fs10_c00137{font-size:14.784000pt;}
.fsd_c00137{font-size:19.712000pt;}
.fs15_c00137{font-size:19.888000pt;}
.fs0_c00137{font-size:20.064000pt;}
.fs4_c00137{font-size:22.528000pt;}
.fsb_c00137{font-size:23.936000pt;}
.fs16_c00137{font-size:24.640000pt;}
.fsa_c00137{font-size:25.168000pt;}
.fs5_c00137{font-size:26.611376pt;}
.fs13_c00137{font-size:27.456000pt;}
.fs12_c00137{font-size:29.920000pt;}
.fs3_c00137{font-size:30.272176pt;}
.fs11_c00137{font-size:34.496000pt;}
.fs6_c00137{font-size:35.200000pt;}
.fs7_c00137{font-size:40.128000pt;}
.fsc_c00137{font-size:41.184000pt;}
.fs14_c00137{font-size:45.408000pt;}
.fsf_c00137{font-size:49.280000pt;}
.fs9_c00137{font-size:58.960000pt;}
.fs17_c00137{font-size:63.008000pt;}
.fs2_c00137{font-size:64.768000pt;}
.fs19_c00137{font-size:67.584176pt;}
.fse_c00137{font-size:67.760000pt;}
.fs8_c00137{font-size:69.696000pt;}
.fs18_c00137{font-size:71.632176pt;}
.fs1_c00137{font-size:76.384176pt;}
.y0_c00137{bottom:0.000000pt;}
.y29_c00137{bottom:15.444920pt;}
.y1_c00137{bottom:68.000000pt;}
.y2a_c00137{bottom:86.408120pt;}
.y28_c00137{bottom:134.878520pt;}
.y27_c00137{bottom:162.752520pt;}
.y26_c00137{bottom:192.219320pt;}
.y25_c00137{bottom:221.364920pt;}
.y24_c00137{bottom:249.555720pt;}
.y23_c00137{bottom:280.602120pt;}
.y22_c00137{bottom:283.770120pt;}
.y1c_c00137{bottom:286.308920pt;}
.y1b_c00137{bottom:335.408520pt;}
.y21_c00137{bottom:335.729720pt;}
.y20_c00137{bottom:393.704120pt;}
.y1f_c00137{bottom:401.624120pt;}
.y1a_c00137{bottom:416.830520pt;}
.y1e_c00137{bottom:421.261320pt;}
.y1d_c00137{bottom:426.330120pt;}
.y19_c00137{bottom:463.712520pt;}
.y18_c00137{bottom:477.656120pt;}
.y17_c00137{bottom:506.163720pt;}
.y16_c00137{bottom:534.675720pt;}
.y15_c00137{bottom:547.668920pt;}
.y14_c00137{bottom:559.073720pt;}
.y13_c00137{bottom:563.821320pt;}
.y12_c00137{bottom:577.764920pt;}
.y11_c00137{bottom:592.020920pt;}
.y10_c00137{bottom:620.528520pt;}
.y2_c00137{bottom:628.765320pt;}
.yf_c00137{bottom:649.990920pt;}
.ye_c00137{bottom:666.781320pt;}
.yd_c00137{bottom:679.457720pt;}
.yc_c00137{bottom:737.748920pt;}
.yb_c00137{bottom:766.890120pt;}
.ya_c00137{bottom:796.352520pt;}
.y9_c00137{bottom:824.868920pt;}
.y8_c00137{bottom:868.587320pt;}
.y7_c00137{bottom:905.965320pt;}
.y6_c00137{bottom:912.934920pt;}
.y5_c00137{bottom:927.824520pt;}
.y4_c00137{bottom:933.526920pt;}
.y3_c00137{bottom:958.237320pt;}
.h6_c00137{height:17.723176pt;}
.h13_c00137{height:19.518984pt;}
.hd_c00137{height:20.559000pt;}
.h2_c00137{height:20.926125pt;}
.hb_c00137{height:24.964500pt;}
.h14_c00137{height:25.698750pt;}
.ha_c00137{height:26.249438pt;}
.h11_c00137{height:28.635750pt;}
.h10_c00137{height:29.364844pt;}
.h5_c00137{height:31.572934pt;}
.hf_c00137{height:35.978250pt;}
.h7_c00137{height:36.712500pt;}
.h8_c00137{height:41.852250pt;}
.hc_c00137{height:42.953625pt;}
.h12_c00137{height:44.565469pt;}
.he_c00137{height:51.397500pt;}
.h15_c00137{height:61.838906pt;}
.h4_c00137{height:63.566250pt;}
.h17_c00137{height:66.330173pt;}
.h9_c00137{height:68.402813pt;}
.h16_c00137{height:70.303063pt;}
.h3_c00137{height:74.966891pt;}
.h1_c00137{height:986.666667pt;}
.h0_c00137{height:1122.666667pt;}
.w1_c00137{width:689.333333pt;}
.w0_c00137{width:793.333333pt;}
.x0_c00137{left:0.000000pt;}
.x2_c00137{left:36.930653pt;}
.x1_c00137{left:52.000000pt;}
.x23_c00137{left:75.333853pt;}
.x9_c00137{left:76.715453pt;}
.x5e_c00137{left:78.035453pt;}
.x5b_c00137{left:79.575453pt;}
.x3d_c00137{left:95.556253pt;}
.x13_c00137{left:105.931453pt;}
.x5f_c00137{left:109.037853pt;}
.x1d_c00137{left:116.693853pt;}
.x24_c00137{left:125.322253pt;}
.x14_c00137{left:134.571053pt;}
.x30_c00137{left:136.326653pt;}
.x44_c00137{left:145.527053pt;}
.x52_c00137{left:153.953053pt;}
.xa_c00137{left:155.356653pt;}
.x1e_c00137{left:165.155453pt;}
.x54_c00137{left:175.002653pt;}
.x49_c00137{left:183.059053pt;}
.x45_c00137{left:184.211853pt;}
.xb_c00137{left:185.127053pt;}
.x35_c00137{left:193.231853pt;}
.x15_c00137{left:194.318653pt;}
.x4e_c00137{left:201.002253pt;}
.x1f_c00137{left:204.434253pt;}
.x3e_c00137{left:214.277053pt;}
.x31_c00137{left:215.196653pt;}
.x16_c00137{left:224.388253pt;}
.x2b_c00137{left:234.380653pt;}
.x3f_c00137{left:242.573453pt;}
.x55_c00137{left:243.713053pt;}
.x36_c00137{left:244.672253pt;}
.xc_c00137{left:253.498653pt;}
.x4b_c00137{left:263.645053pt;}
.x4a_c00137{left:273.602253pt;}
.x2c_c00137{left:283.946653pt;}
.x25_c00137{left:294.044653pt;}
.x37_c00137{left:302.646653pt;}
.x17_c00137{left:312.801853pt;}
.x2d_c00137{left:322.741453pt;}
.x53_c00137{left:332.271853pt;}
.xd_c00137{left:333.679853pt;}
.x50_c00137{left:341.415053pt;}
.x46_c00137{left:342.594253pt;}
.x38_c00137{left:351.596653pt;}
.x18_c00137{left:352.516253pt;}
.x32_c00137{left:362.495453pt;}
.x56_c00137{left:372.338253pt;}
.x2e_c00137{left:382.194253pt;}
.x40_c00137{left:384.306253pt;}
.x60_c00137{left:390.884253pt;}
.x26_c00137{left:392.529853pt;}
.x39_c00137{left:401.822653pt;}
.x5c_c00137{left:410.525853pt;}
.x19_c00137{left:411.643453pt;}
.x2f_c00137{left:421.987853pt;}
.x3c_c00137{left:430.039853pt;}
.xe_c00137{left:432.209053pt;}
.x27_c00137{left:439.385453pt;}
.x1a_c00137{left:441.383053pt;}
.x51_c00137{left:449.333853pt;}
.x33_c00137{left:450.891453pt;}
.x20_c00137{left:451.855053pt;}
.x57_c00137{left:459.541853pt;}
.xf_c00137{left:461.455853pt;}
.x3a_c00137{left:470.071053pt;}
.x34_c00137{left:480.362653pt;}
.x21_c00137{left:481.585853pt;}
.x41_c00137{left:489.404653pt;}
.x47_c00137{left:490.491453pt;}
.x4f_c00137{left:499.823853pt;}
.x58_c00137{left:508.368653pt;}
.x22_c00137{left:510.001053pt;}
.x3b_c00137{left:519.359853pt;}
.x4c_c00137{left:528.357853pt;}
.x10_c00137{left:529.484253pt;}
.x28_c00137{left:539.626253pt;}
.x5_c00137{left:543.749053pt;}
.x59_c00137{left:548.184253pt;}
.x1b_c00137{left:558.920253pt;}
.x4d_c00137{left:567.975453pt;}
.x8_c00137{left:576.951453pt;}
.x29_c00137{left:578.487053pt;}
.x1c_c00137{left:588.558653pt;}
.x3_c00137{left:590.270253pt;}
.x5a_c00137{left:598.511453pt;}
.x5d_c00137{left:608.345453pt;}
.x48_c00137{left:609.291453pt;}
.x42_c00137{left:616.309453pt;}
.x11_c00137{left:618.403853pt;}
.x2a_c00137{left:620.445453pt;}
.x4_c00137{left:621.919453pt;}
.x6_c00137{left:623.138253pt;}
.x7_c00137{left:625.769453pt;}
.x43_c00137{left:627.384253pt;}
.x12_c00137{left:647.949853pt;}
.x61_c00137{left:667.705853pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2838b41d86687376a7317be7.woff2')format("woff");}.ff1_c00138{font-family:ff1_c00138;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00138;src:url('chunks/assets/font_acc0333ede8cbac482c80bb0.woff2')format("woff");}.ff2_c00138{font-family:ff2_c00138;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00138;src:url('chunks/assets/font_37f98f27bfee65b53f4dfc9a.woff2')format("woff");}.ff3_c00138{font-family:ff3_c00138;line-height:0.666000;font-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_c00138{transform:matrix(0.035715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.035715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.035715,0.000000,0.000000,0.250000,0,0);}
.mc5_c00138{transform:matrix(0.092858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092858,0.000000,0.000000,0.250000,0,0);}
.m9a_c00138{transform:matrix(0.109487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109487,0.000000,0.000000,0.250000,0,0);}
.m6f_c00138{transform:matrix(0.137893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137893,0.000000,0.000000,0.250000,0,0);}
.m6b_c00138{transform:matrix(0.151628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151628,0.000000,0.000000,0.250000,0,0);}
.mc3_c00138{transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);}
.m78_c00138{transform:matrix(0.200658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200658,0.000000,0.000000,0.250000,0,0);}
.mab_c00138{transform:matrix(0.210070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210070,0.000000,0.000000,0.250000,0,0);}
.m5a_c00138{transform:matrix(0.213293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213293,0.000000,0.000000,0.250000,0,0);}
.m88_c00138{transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);}
.m6a_c00138{transform:matrix(0.234200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234200,0.000000,0.000000,0.250000,0,0);}
.m5d_c00138{transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);}
.m37_c00138{transform:matrix(0.239087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239087,0.000000,0.000000,0.250000,0,0);}
.m95_c00138{transform:matrix(0.239516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239516,0.000000,0.000000,0.250000,0,0);}
.maa_c00138{transform:matrix(0.246419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246419,0.000000,0.000000,0.250000,0,0);}
.ma9_c00138{transform:matrix(0.246726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246726,0.000000,0.000000,0.250000,0,0);}
.m0_c00138{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m29_c00138{transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);}
.m9_c00138{transform:matrix(0.250453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250453,0.000000,0.000000,0.250000,0,0);}
.m8b_c00138{transform:matrix(0.255468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255468,0.000000,0.000000,0.250000,0,0);}
.m98_c00138{transform:matrix(0.255538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255538,0.000000,0.000000,0.250000,0,0);}
.m59_c00138{transform:matrix(0.256334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256334,0.000000,0.000000,0.250000,0,0);}
.m68_c00138{transform:matrix(0.257621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257621,0.000000,0.000000,0.250000,0,0);}
.m67_c00138{transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);}
.mb7_c00138{transform:matrix(0.260579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260579,0.000000,0.000000,0.250000,0,0);}
.m19_c00138{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m65_c00138{transform:matrix(0.261069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261069,0.000000,0.000000,0.250000,0,0);}
.m28_c00138{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.mb4_c00138{transform:matrix(0.263505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263505,0.000000,0.000000,0.250000,0,0);}
.m94_c00138{transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);}
.m2b_c00138{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m3_c00138{transform:matrix(0.265607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265607,0.000000,0.000000,0.250000,0,0);}
.me_c00138{transform:matrix(0.265754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265754,0.000000,0.000000,0.250000,0,0);}
.m2_c00138{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.mb0_c00138{transform:matrix(0.266362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266362,0.000000,0.000000,0.250000,0,0);}
.m60_c00138{transform:matrix(0.267380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267380,0.000000,0.000000,0.250000,0,0);}
.m10_c00138{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.mb_c00138{transform:matrix(0.268227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268227,0.000000,0.000000,0.250000,0,0);}
.m1c_c00138{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.m4c_c00138{transform:matrix(0.268848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268848,0.000000,0.000000,0.250000,0,0);}
.m47_c00138{transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);}
.m8c_c00138{transform:matrix(0.269794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269794,0.000000,0.000000,0.250000,0,0);}
.m6d_c00138{transform:matrix(0.270008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270008,0.000000,0.000000,0.250000,0,0);}
.m32_c00138{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m17_c00138{transform:matrix(0.271035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271035,0.000000,0.000000,0.250000,0,0);}
.m24_c00138{transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);}
.m35_c00138{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.mbd_c00138{transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);}
.m57_c00138{transform:matrix(0.273203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273203,0.000000,0.000000,0.250000,0,0);}
.m92_c00138{transform:matrix(0.273795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273795,0.000000,0.000000,0.250000,0,0);}
.m16_c00138{transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);}
.ma7_c00138{transform:matrix(0.274797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274797,0.000000,0.000000,0.250000,0,0);}
.m6e_c00138{transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);}
.mb5_c00138{transform:matrix(0.275040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275040,0.000000,0.000000,0.250000,0,0);}
.mac_c00138{transform:matrix(0.275052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275052,0.000000,0.000000,0.250000,0,0);}
.maf_c00138{transform:matrix(0.275191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275191,0.000000,0.000000,0.250000,0,0);}
.m8e_c00138{transform:matrix(0.275207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275207,0.000000,0.000000,0.250000,0,0);}
.m8_c00138{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m9d_c00138{transform:matrix(0.276280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276280,0.000000,0.000000,0.250000,0,0);}
.m2d_c00138{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m8f_c00138{transform:matrix(0.277595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277595,0.000000,0.000000,0.250000,0,0);}
.m8a_c00138{transform:matrix(0.278778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278778,0.000000,0.000000,0.250000,0,0);}
.m75_c00138{transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);}
.m9e_c00138{transform:matrix(0.280329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280329,0.000000,0.000000,0.250000,0,0);}
.ma0_c00138{transform:matrix(0.281465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281465,0.000000,0.000000,0.250000,0,0);}
.ma5_c00138{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.m96_c00138{transform:matrix(0.282040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282040,0.000000,0.000000,0.250000,0,0);}
.m90_c00138{transform:matrix(0.282705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282705,0.000000,0.000000,0.250000,0,0);}
.mf_c00138{transform:matrix(0.282795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282795,0.000000,0.000000,0.250000,0,0);}
.m33_c00138{transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);}
.m86_c00138{transform:matrix(0.282948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282948,0.000000,0.000000,0.250000,0,0);}
.m3c_c00138{transform:matrix(0.283746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283746,0.000000,0.000000,0.250000,0,0);}
.mbe_c00138{transform:matrix(0.284009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284009,0.000000,0.000000,0.250000,0,0);}
.m4b_c00138{transform:matrix(0.284537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284537,0.000000,0.000000,0.250000,0,0);}
.mbb_c00138{transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);}
.m1d_c00138{transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);}
.m27_c00138{transform:matrix(0.286720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286720,0.000000,0.000000,0.250000,0,0);}
.mbc_c00138{transform:matrix(0.287107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287107,0.000000,0.000000,0.250000,0,0);}
.m2f_c00138{transform:matrix(0.287440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287440,0.000000,0.000000,0.250000,0,0);}
.m84_c00138{transform:matrix(0.287539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287539,0.000000,0.000000,0.250000,0,0);}
.m46_c00138{transform:matrix(0.287771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287771,0.000000,0.000000,0.250000,0,0);}
.m54_c00138{transform:matrix(0.287943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287943,0.000000,0.000000,0.250000,0,0);}
.m7_c00138{transform:matrix(0.287963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287963,0.000000,0.000000,0.250000,0,0);}
.m72_c00138{transform:matrix(0.288372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288372,0.000000,0.000000,0.250000,0,0);}
.m2e_c00138{transform:matrix(0.288643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288643,0.000000,0.000000,0.250000,0,0);}
.m2c_c00138{transform:matrix(0.288728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288728,0.000000,0.000000,0.250000,0,0);}
.ma2_c00138{transform:matrix(0.288887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288887,0.000000,0.000000,0.250000,0,0);}
.m52_c00138{transform:matrix(0.288903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288903,0.000000,0.000000,0.250000,0,0);}
.m74_c00138{transform:matrix(0.289026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289026,0.000000,0.000000,0.250000,0,0);}
.mb2_c00138{transform:matrix(0.289040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289040,0.000000,0.000000,0.250000,0,0);}
.mb6_c00138{transform:matrix(0.289667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289667,0.000000,0.000000,0.250000,0,0);}
.m6_c00138{transform:matrix(0.290170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290170,0.000000,0.000000,0.250000,0,0);}
.m48_c00138{transform:matrix(0.290364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290364,0.000000,0.000000,0.250000,0,0);}
.m43_c00138{transform:matrix(0.290388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290388,0.000000,0.000000,0.250000,0,0);}
.m87_c00138{transform:matrix(0.290438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290438,0.000000,0.000000,0.250000,0,0);}
.m7a_c00138{transform:matrix(0.290680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290680,0.000000,0.000000,0.250000,0,0);}
.m34_c00138{transform:matrix(0.291008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291008,0.000000,0.000000,0.250000,0,0);}
.m83_c00138{transform:matrix(0.291140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291140,0.000000,0.000000,0.250000,0,0);}
.m4_c00138{transform:matrix(0.291400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291400,0.000000,0.000000,0.250000,0,0);}
.m81_c00138{transform:matrix(0.291407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291407,0.000000,0.000000,0.250000,0,0);}
.mae_c00138{transform:matrix(0.291472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291472,0.000000,0.000000,0.250000,0,0);}
.ma4_c00138{transform:matrix(0.291725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291725,0.000000,0.000000,0.250000,0,0);}
.m56_c00138{transform:matrix(0.292470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292470,0.000000,0.000000,0.250000,0,0);}
.m7d_c00138{transform:matrix(0.293484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293484,0.000000,0.000000,0.250000,0,0);}
.m20_c00138{transform:matrix(0.294033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294033,0.000000,0.000000,0.250000,0,0);}
.m51_c00138{transform:matrix(0.294828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294828,0.000000,0.000000,0.250000,0,0);}
.m5e_c00138{transform:matrix(0.295562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295562,0.000000,0.000000,0.250000,0,0);}
.mb1_c00138{transform:matrix(0.295896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295896,0.000000,0.000000,0.250000,0,0);}
.m3f_c00138{transform:matrix(0.296664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296664,0.000000,0.000000,0.250000,0,0);}
.m4e_c00138{transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);}
.m1e_c00138{transform:matrix(0.296965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296965,0.000000,0.000000,0.250000,0,0);}
.m30_c00138{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m7b_c00138{transform:matrix(0.297357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297357,0.000000,0.000000,0.250000,0,0);}
.m1f_c00138{transform:matrix(0.298253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298253,0.000000,0.000000,0.250000,0,0);}
.m97_c00138{transform:matrix(0.298400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298400,0.000000,0.000000,0.250000,0,0);}
.m5c_c00138{transform:matrix(0.298793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298793,0.000000,0.000000,0.250000,0,0);}
.ma8_c00138{transform:matrix(0.299262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299262,0.000000,0.000000,0.250000,0,0);}
.m39_c00138{transform:matrix(0.299520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299520,0.000000,0.000000,0.250000,0,0);}
.m4f_c00138{transform:matrix(0.299605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299605,0.000000,0.000000,0.250000,0,0);}
.m38_c00138{transform:matrix(0.299616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299616,0.000000,0.000000,0.250000,0,0);}
.m73_c00138{transform:matrix(0.299719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299719,0.000000,0.000000,0.250000,0,0);}
.m8d_c00138{transform:matrix(0.300577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300577,0.000000,0.000000,0.250000,0,0);}
.m58_c00138{transform:matrix(0.301413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301413,0.000000,0.000000,0.250000,0,0);}
.m61_c00138{transform:matrix(0.301904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301904,0.000000,0.000000,0.250000,0,0);}
.m66_c00138{transform:matrix(0.302081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302081,0.000000,0.000000,0.250000,0,0);}
.m1a_c00138{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m40_c00138{transform:matrix(0.302588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302588,0.000000,0.000000,0.250000,0,0);}
.m9f_c00138{transform:matrix(0.302987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302987,0.000000,0.000000,0.250000,0,0);}
.m14_c00138{transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);}
.m91_c00138{transform:matrix(0.303323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303323,0.000000,0.000000,0.250000,0,0);}
.ma6_c00138{transform:matrix(0.303788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303788,0.000000,0.000000,0.250000,0,0);}
.m15_c00138{transform:matrix(0.304333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304333,0.000000,0.000000,0.250000,0,0);}
.m5b_c00138{transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);}
.m1_c00138{transform:matrix(0.306147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306147,0.000000,0.000000,0.250000,0,0);}
.mba_c00138{transform:matrix(0.306784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306784,0.000000,0.000000,0.250000,0,0);}
.mc_c00138{transform:matrix(0.306893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306893,0.000000,0.000000,0.250000,0,0);}
.m3b_c00138{transform:matrix(0.307242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307242,0.000000,0.000000,0.250000,0,0);}
.mc0_c00138{transform:matrix(0.307638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307638,0.000000,0.000000,0.250000,0,0);}
.m31_c00138{transform:matrix(0.307823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307823,0.000000,0.000000,0.250000,0,0);}
.m80_c00138{transform:matrix(0.308174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308174,0.000000,0.000000,0.250000,0,0);}
.m7f_c00138{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m11_c00138{transform:matrix(0.308588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308588,0.000000,0.000000,0.250000,0,0);}
.m85_c00138{transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);}
.m2a_c00138{transform:matrix(0.308913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308913,0.000000,0.000000,0.250000,0,0);}
.m49_c00138{transform:matrix(0.308976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308976,0.000000,0.000000,0.250000,0,0);}
.m9b_c00138{transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);}
.m21_c00138{transform:matrix(0.309366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309366,0.000000,0.000000,0.250000,0,0);}
.m1b_c00138{transform:matrix(0.309503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309503,0.000000,0.000000,0.250000,0,0);}
.m4a_c00138{transform:matrix(0.311374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311374,0.000000,0.000000,0.250000,0,0);}
.m79_c00138{transform:matrix(0.311520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311520,0.000000,0.000000,0.250000,0,0);}
.ma3_c00138{transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);}
.mc2_c00138{transform:matrix(0.313839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313839,0.000000,0.000000,0.250000,0,0);}
.m4d_c00138{transform:matrix(0.314569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314569,0.000000,0.000000,0.250000,0,0);}
.m5f_c00138{transform:matrix(0.314972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314972,0.000000,0.000000,0.250000,0,0);}
.m69_c00138{transform:matrix(0.315859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315859,0.000000,0.000000,0.250000,0,0);}
.m7e_c00138{transform:matrix(0.316641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316641,0.000000,0.000000,0.250000,0,0);}
.ma1_c00138{transform:matrix(0.317408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317408,0.000000,0.000000,0.250000,0,0);}
.m99_c00138{transform:matrix(0.317958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317958,0.000000,0.000000,0.250000,0,0);}
.m55_c00138{transform:matrix(0.318648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318648,0.000000,0.000000,0.250000,0,0);}
.m23_c00138{transform:matrix(0.318778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318778,0.000000,0.000000,0.250000,0,0);}
.m18_c00138{transform:matrix(0.318806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318806,0.000000,0.000000,0.250000,0,0);}
.m89_c00138{transform:matrix(0.319290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319290,0.000000,0.000000,0.250000,0,0);}
.m44_c00138{transform:matrix(0.320009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320009,0.000000,0.000000,0.250000,0,0);}
.md_c00138{transform:matrix(0.320407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320407,0.000000,0.000000,0.250000,0,0);}
.m6c_c00138{transform:matrix(0.322828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322828,0.000000,0.000000,0.250000,0,0);}
.m3d_c00138{transform:matrix(0.323164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323164,0.000000,0.000000,0.250000,0,0);}
.m41_c00138{transform:matrix(0.323503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323503,0.000000,0.000000,0.250000,0,0);}
.m53_c00138{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.m77_c00138{transform:matrix(0.324700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324700,0.000000,0.000000,0.250000,0,0);}
.m36_c00138{transform:matrix(0.325072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325072,0.000000,0.000000,0.250000,0,0);}
.m3a_c00138{transform:matrix(0.325574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325574,0.000000,0.000000,0.250000,0,0);}
.ma_c00138{transform:matrix(0.325748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325748,0.000000,0.000000,0.250000,0,0);}
.m76_c00138{transform:matrix(0.326313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326313,0.000000,0.000000,0.250000,0,0);}
.m7c_c00138{transform:matrix(0.326317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326317,0.000000,0.000000,0.250000,0,0);}
.mb8_c00138{transform:matrix(0.327297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327297,0.000000,0.000000,0.250000,0,0);}
.mad_c00138{transform:matrix(0.329713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329713,0.000000,0.000000,0.250000,0,0);}
.m13_c00138{transform:matrix(0.330803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330803,0.000000,0.000000,0.250000,0,0);}
.m22_c00138{transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);}
.m25_c00138{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.mb9_c00138{transform:matrix(0.334069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334069,0.000000,0.000000,0.250000,0,0);}
.mc1_c00138{transform:matrix(0.335935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335935,0.000000,0.000000,0.250000,0,0);}
.m5_c00138{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m71_c00138{transform:matrix(0.339419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339419,0.000000,0.000000,0.250000,0,0);}
.m3e_c00138{transform:matrix(0.340270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340270,0.000000,0.000000,0.250000,0,0);}
.m62_c00138{transform:matrix(0.341953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341953,0.000000,0.000000,0.250000,0,0);}
.m26_c00138{transform:matrix(0.349257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349257,0.000000,0.000000,0.250000,0,0);}
.m63_c00138{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m82_c00138{transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);}
.m9c_c00138{transform:matrix(0.352028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352028,0.000000,0.000000,0.250000,0,0);}
.m50_c00138{transform:matrix(0.352910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352910,0.000000,0.000000,0.250000,0,0);}
.m70_c00138{transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);}
.m42_c00138{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.mbf_c00138{transform:matrix(0.358046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358046,0.000000,0.000000,0.250000,0,0);}
.m93_c00138{transform:matrix(0.362771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362771,0.000000,0.000000,0.250000,0,0);}
.m12_c00138{transform:matrix(0.365850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365850,0.000000,0.000000,0.250000,0,0);}
.m45_c00138{transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);}
.m64_c00138{transform:matrix(0.378961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378961,0.000000,0.000000,0.250000,0,0);}
.mb3_c00138{transform:matrix(0.386524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386524,0.000000,0.000000,0.250000,0,0);}
.v2_c00138{vertical-align:-14.256000px;}
.v0_c00138{vertical-align:0.000000px;}
.v1_c00138{vertical-align:5.702400px;}
.ls11_c00138{letter-spacing:-2.744280px;}
.ls1c_c00138{letter-spacing:-2.689394px;}
.ls17_c00138{letter-spacing:-2.485534px;}
.lsb_c00138{letter-spacing:-1.960200px;}
.ls14_c00138{letter-spacing:-1.772021px;}
.ls1e_c00138{letter-spacing:-0.886010px;}
.ls1d_c00138{letter-spacing:-0.789426px;}
.ls7_c00138{letter-spacing:-0.094090px;}
.ls6_c00138{letter-spacing:0.000000px;}
.ls1f_c00138{letter-spacing:0.352836px;}
.ls3_c00138{letter-spacing:0.384199px;}
.lsa_c00138{letter-spacing:1.086310px;}
.ls1a_c00138{letter-spacing:1.246687px;}
.ls13_c00138{letter-spacing:1.340777px;}
.ls1_c00138{letter-spacing:1.685772px;}
.lsc_c00138{letter-spacing:1.787702px;}
.ls1b_c00138{letter-spacing:1.930500px;}
.ls0_c00138{letter-spacing:3.112798px;}
.lse_c00138{letter-spacing:3.191206px;}
.ls19_c00138{letter-spacing:3.246091px;}
.ls16_c00138{letter-spacing:3.653813px;}
.ls4_c00138{letter-spacing:3.657674px;}
.ls9_c00138{letter-spacing:3.722400px;}
.ls10_c00138{letter-spacing:3.797807px;}
.lsf_c00138{letter-spacing:3.810629px;}
.ls18_c00138{letter-spacing:3.841992px;}
.ls5_c00138{letter-spacing:3.920400px;}
.ls8_c00138{letter-spacing:4.276810px;}
.ls12_c00138{letter-spacing:4.385700px;}
.ls2_c00138{letter-spacing:14.533200px;}
.ls20_c00138{letter-spacing:49.896198px;}
.lsd_c00138{letter-spacing:51.321798px;}
.ls15_c00138{letter-spacing:54.172998px;}
.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;}
}
.ws3_c00138{word-spacing:-23.255813px;}
.ws1_c00138{word-spacing:-22.793206px;}
.ws2_c00138{word-spacing:-20.942777px;}
.ws0_c00138{word-spacing:-19.602000px;}
.ws4_c00138{word-spacing:0.000000px;}
._a_c00138{margin-left:-9.095328px;}
._0_c00138{margin-left:-3.920400px;}
._6_c00138{width:1.458389px;}
._9_c00138{width:5.394470px;}
._2_c00138{width:6.664680px;}
._1_c00138{width:7.683588px;}
._4_c00138{width:9.095328px;}
._e_c00138{width:10.504375px;}
._11_c00138{width:20.855736px;}
._3_c00138{width:22.267872px;}
._8_c00138{width:23.679216px;}
._c_c00138{width:26.109864px;}
._f_c00138{width:27.187301px;}
._d_c00138{width:28.489982px;}
._7_c00138{width:32.696136px;}
._5_c00138{width:34.029072px;}
._10_c00138{width:36.961848px;}
._12_c00138{width:38.184696px;}
._b_c00138{width:1895.763672px;}
.fc0_c00138{color:transparent;}
.fs4_c00138{font-size:22.176000px;}
.fs5_c00138{font-size:26.928000px;}
.fsf_c00138{font-size:27.720000px;}
.fs10_c00138{font-size:31.680000px;}
.fsb_c00138{font-size:33.264000px;}
.fs11_c00138{font-size:33.660000px;}
.fs9_c00138{font-size:34.848000px;}
.fsd_c00138{font-size:38.610000px;}
.fsc_c00138{font-size:38.808000px;}
.fs7_c00138{font-size:39.600000px;}
.fse_c00138{font-size:49.896198px;}
.fs6_c00138{font-size:51.321798px;}
.fsa_c00138{font-size:52.272000px;}
.fs8_c00138{font-size:54.172998px;}
.fs3_c00138{font-size:74.448000px;}
.fs1_c00138{font-size:78.408000px;}
.fs2_c00138{font-size:85.536198px;}
.fs0_c00138{font-size:87.714000px;}
.y0_c00138{bottom:0.000000px;}
.y26_c00138{bottom:44.100585px;}
.y25_c00138{bottom:49.451535px;}
.y1_c00138{bottom:76.500000px;}
.y24_c00138{bottom:89.368335px;}
.y27_c00138{bottom:94.714335px;}
.y23_c00138{bottom:124.290585px;}
.y22_c00138{bottom:150.669135px;}
.y21_c00138{bottom:180.963135px;}
.y1f_c00138{bottom:215.533935px;}
.y20_c00138{bottom:220.518585px;}
.y1e_c00138{bottom:247.609935px;}
.y1d_c00138{bottom:266.850585px;}
.y1c_c00138{bottom:269.345385px;}
.y1b_c00138{bottom:279.329535px;}
.y1a_c00138{bottom:297.862335px;}
.y19_c00138{bottom:312.469785px;}
.y18_c00138{bottom:344.550735px;}
.y17_c00138{bottom:376.626735px;}
.y16_c00138{bottom:409.766985px;}
.y15_c00138{bottom:442.199385px;}
.y14_c00138{bottom:474.988185px;}
.y13_c00138{bottom:508.133385px;}
.y11_c00138{bottom:572.998185px;}
.y12_c00138{bottom:578.700585px;}
.y10_c00138{bottom:606.504735px;}
.yf_c00138{bottom:638.575785px;}
.ye_c00138{bottom:671.725935px;}
.yd_c00138{bottom:684.199935px;}
.yc_c00138{bottom:703.796985px;}
.yb_c00138{bottom:736.229385px;}
.ya_c00138{bottom:769.018185px;}
.y9_c00138{bottom:801.099135px;}
.y8_c00138{bottom:814.993785px;}
.y7_c00138{bottom:833.170185px;}
.y6_c00138{bottom:865.958985px;}
.y5_c00138{bottom:881.289135px;}
.y4_c00138{bottom:898.391385px;}
.y3_c00138{bottom:930.472335px;}
.y2_c00138{bottom:1081.224585px;}
.h6_c00138{height:23.128875px;}
.he_c00138{height:26.219531px;}
.h7_c00138{height:28.085063px;}
.h11_c00138{height:28.911094px;}
.h14_c00138{height:33.035449px;}
.h12_c00138{height:33.041250px;}
.h10_c00138{height:33.230868px;}
.h8_c00138{height:34.180317px;}
.hb_c00138{height:34.201406px;}
.hd_c00138{height:34.693313px;}
.ha_c00138{height:36.079217px;}
.hf_c00138{height:40.269023px;}
.h13_c00138{height:40.475531px;}
.h9_c00138{height:41.301563px;}
.h5_c00138{height:73.066641px;}
.h3_c00138{height:76.953164px;}
.hc_c00138{height:82.655564px;}
.h4_c00138{height:83.949101px;}
.h2_c00138{height:86.086494px;}
.h1_c00138{height:1110.000000px;}
.h0_c00138{height:1263.000000px;}
.w1_c00138{width:775.500000px;}
.w0_c00138{width:892.500000px;}
.x0_c00138{left:0.000000px;}
.x1_c00138{left:58.500000px;}
.x3_c00138{left:75.647535px;}
.x1a_c00138{left:76.682085px;}
.x65_c00138{left:77.706735px;}
.x6c_c00138{left:79.642185px;}
.x56_c00138{left:86.230635px;}
.x73_c00138{left:100.283685px;}
.x24_c00138{left:108.297735px;}
.x69_c00138{left:110.975685px;}
.x5f_c00138{left:112.391385px;}
.x4a_c00138{left:119.336235px;}
.x32_c00138{left:120.944985px;}
.x60_c00138{left:121.964685px;}
.x41_c00138{left:131.290485px;}
.x59_c00138{left:132.374535px;}
.x4_c00138{left:143.031885px;}
.x6d_c00138{left:144.115935px;}
.x49_c00138{left:153.209085px;}
.x4f_c00138{left:154.372335px;}
.x50_c00138{left:161.208285px;}
.x25_c00138{left:164.787135px;}
.x42_c00138{left:165.836535px;}
.x5_c00138{left:173.810985px;}
.x45_c00138{left:175.003935px;}
.x3a_c00138{left:176.503785px;}
.xf_c00138{left:178.261035px;}
.x38_c00138{left:185.671185px;}
.x51_c00138{left:186.700785px;}
.x6e_c00138{left:188.591685px;}
.x33_c00138{left:197.818485px;}
.x26_c00138{left:206.693835px;}
.x2d_c00138{left:208.451085px;}
.x5a_c00138{left:209.505435px;}
.x43_c00138{left:219.994485px;}
.x74_c00138{left:222.093285px;}
.x68_c00138{left:227.285835px;}
.x1b_c00138{left:230.245935px;}
.x2e_c00138{left:231.428985px;}
.x10_c00138{left:242.576385px;}
.x6_c00138{left:253.357485px;}
.x27_c00138{left:254.555385px;}
.x46_c00138{left:264.905835px;}
.x4d_c00138{left:266.341335px;}
.x7_c00138{left:274.305885px;}
.x11_c00138{left:276.285885px;}
.x39_c00138{left:286.859085px;}
.x4b_c00138{left:289.809285px;}
.x1c_c00138{left:298.085685px;}
.x5b_c00138{left:299.115285px;}
.x2f_c00138{left:308.549985px;}
.x6a_c00138{left:310.079535px;}
.x34_c00138{left:319.340985px;}
.x3b_c00138{left:320.895285px;}
.x6f_c00138{left:323.672235px;}
.x1d_c00138{left:329.651835px;}
.x47_c00138{left:331.230885px;}
.x76_c00138{left:333.087135px;}
.x12_c00138{left:341.863485px;}
.x40_c00138{left:343.115835px;}
.x66_c00138{left:354.372135px;}
.x28_c00138{left:365.059185px;}
.x75_c00138{left:366.484785px;}
.x1e_c00138{left:375.241335px;}
.x52_c00138{left:376.934235px;}
.x13_c00138{left:386.289735px;}
.x53_c00138{left:387.314385px;}
.x8_c00138{left:398.506335px;}
.x6b_c00138{left:409.643835px;}
.x3c_c00138{left:420.271485px;}
.x9_c00138{left:430.542735px;}
.x57_c00138{left:432.794985px;}
.x4e_c00138{left:440.848635px;}
.x1f_c00138{left:442.774185px;}
.x14_c00138{left:452.753385px;}
.x71_c00138{left:454.490835px;}
.x20_c00138{left:464.158185px;}
.x54_c00138{left:465.172935px;}
.x72_c00138{left:475.572885px;}
.x3d_c00138{left:487.289535px;}
.x29_c00138{left:496.407435px;}
.x35_c00138{left:497.991435px;}
.x61_c00138{left:499.431885px;}
.xa_c00138{left:507.049935px;}
.x2a_c00138{left:509.386335px;}
.x15_c00138{left:519.410085px;}
.x5c_c00138{left:520.479285px;}
.x30_c00138{left:530.552535px;}
.x62_c00138{left:532.250385px;}
.x21_c00138{left:541.511835px;}
.x63_c00138{left:542.551335px;}
.xb_c00138{left:552.525585px;}
.x16_c00138{left:553.614585px;}
.x2b_c00138{left:563.816535px;}
.x17_c00138{left:574.434285px;}
.x55_c00138{left:575.587635px;}
.x22_c00138{left:585.561885px;}
.x5d_c00138{left:586.779585px;}
.x19_c00138{left:591.526635px;}
.x3e_c00138{left:596.753835px;}
.x36_c00138{left:608.128935px;}
.x23_c00138{left:618.370485px;}
.xc_c00138{left:619.528785px;}
.x44_c00138{left:629.770335px;}
.x58_c00138{left:630.958335px;}
.x37_c00138{left:639.363435px;}
.x3f_c00138{left:641.496885px;}
.x2_c00138{left:652.292835px;}
.x5e_c00138{left:653.728335px;}
.x18_c00138{left:663.672885px;}
.x31_c00138{left:673.825335px;}
.x48_c00138{left:675.443985px;}
.xd_c00138{left:684.180735px;}
.x2c_c00138{left:685.829085px;}
.x4c_c00138{left:695.080635px;}
.x70_c00138{left:697.936785px;}
.x64_c00138{left:700.585035px;}
.x67_c00138{left:703.391685px;}
.xe_c00138{left:718.607985px;}
.x77_c00138{left:752.263035px;}
@media print{
.v2_c00138{vertical-align:-12.672000pt;}
.v0_c00138{vertical-align:0.000000pt;}
.v1_c00138{vertical-align:5.068800pt;}
.ls11_c00138{letter-spacing:-2.439360pt;}
.ls1c_c00138{letter-spacing:-2.390573pt;}
.ls17_c00138{letter-spacing:-2.209363pt;}
.lsb_c00138{letter-spacing:-1.742400pt;}
.ls14_c00138{letter-spacing:-1.575130pt;}
.ls1e_c00138{letter-spacing:-0.787565pt;}
.ls1d_c00138{letter-spacing:-0.701712pt;}
.ls7_c00138{letter-spacing:-0.083635pt;}
.ls6_c00138{letter-spacing:0.000000pt;}
.ls1f_c00138{letter-spacing:0.313632pt;}
.ls3_c00138{letter-spacing:0.341510pt;}
.lsa_c00138{letter-spacing:0.965609pt;}
.ls1a_c00138{letter-spacing:1.108166pt;}
.ls13_c00138{letter-spacing:1.191802pt;}
.ls1_c00138{letter-spacing:1.498464pt;}
.lsc_c00138{letter-spacing:1.589069pt;}
.ls1b_c00138{letter-spacing:1.716000pt;}
.ls0_c00138{letter-spacing:2.766931pt;}
.lse_c00138{letter-spacing:2.836627pt;}
.ls19_c00138{letter-spacing:2.885414pt;}
.ls16_c00138{letter-spacing:3.247834pt;}
.ls4_c00138{letter-spacing:3.251266pt;}
.ls9_c00138{letter-spacing:3.308800pt;}
.ls10_c00138{letter-spacing:3.375829pt;}
.lsf_c00138{letter-spacing:3.387226pt;}
.ls18_c00138{letter-spacing:3.415104pt;}
.ls5_c00138{letter-spacing:3.484800pt;}
.ls8_c00138{letter-spacing:3.801609pt;}
.ls12_c00138{letter-spacing:3.898400pt;}
.ls2_c00138{letter-spacing:12.918400pt;}
.ls20_c00138{letter-spacing:44.352176pt;}
.lsd_c00138{letter-spacing:45.619376pt;}
.ls15_c00138{letter-spacing:48.153776pt;}
.ws3_c00138{word-spacing:-20.671834pt;}
.ws1_c00138{word-spacing:-20.260627pt;}
.ws2_c00138{word-spacing:-18.615802pt;}
.ws0_c00138{word-spacing:-17.424000pt;}
.ws4_c00138{word-spacing:0.000000pt;}
._a_c00138{margin-left:-8.084736pt;}
._0_c00138{margin-left:-3.484800pt;}
._6_c00138{width:1.296346pt;}
._9_c00138{width:4.795085pt;}
._2_c00138{width:5.924160pt;}
._1_c00138{width:6.829856pt;}
._4_c00138{width:8.084736pt;}
._e_c00138{width:9.337222pt;}
._11_c00138{width:18.538432pt;}
._3_c00138{width:19.793664pt;}
._8_c00138{width:21.048192pt;}
._c_c00138{width:23.208768pt;}
._f_c00138{width:24.166490pt;}
._d_c00138{width:25.324429pt;}
._7_c00138{width:29.063232pt;}
._5_c00138{width:30.248064pt;}
._10_c00138{width:32.854976pt;}
._12_c00138{width:33.941952pt;}
._b_c00138{width:1685.123264pt;}
.fs4_c00138{font-size:19.712000pt;}
.fs5_c00138{font-size:23.936000pt;}
.fsf_c00138{font-size:24.640000pt;}
.fs10_c00138{font-size:28.160000pt;}
.fsb_c00138{font-size:29.568000pt;}
.fs11_c00138{font-size:29.920000pt;}
.fs9_c00138{font-size:30.976000pt;}
.fsd_c00138{font-size:34.320000pt;}
.fsc_c00138{font-size:34.496000pt;}
.fs7_c00138{font-size:35.200000pt;}
.fse_c00138{font-size:44.352176pt;}
.fs6_c00138{font-size:45.619376pt;}
.fsa_c00138{font-size:46.464000pt;}
.fs8_c00138{font-size:48.153776pt;}
.fs3_c00138{font-size:66.176000pt;}
.fs1_c00138{font-size:69.696000pt;}
.fs2_c00138{font-size:76.032176pt;}
.fs0_c00138{font-size:77.968000pt;}
.y0_c00138{bottom:0.000000pt;}
.y26_c00138{bottom:39.200520pt;}
.y25_c00138{bottom:43.956920pt;}
.y1_c00138{bottom:68.000000pt;}
.y24_c00138{bottom:79.438520pt;}
.y27_c00138{bottom:84.190520pt;}
.y23_c00138{bottom:110.480520pt;}
.y22_c00138{bottom:133.928120pt;}
.y21_c00138{bottom:160.856120pt;}
.y1f_c00138{bottom:191.585720pt;}
.y20_c00138{bottom:196.016520pt;}
.y1e_c00138{bottom:220.097720pt;}
.y1d_c00138{bottom:237.200520pt;}
.y1c_c00138{bottom:239.418120pt;}
.y1b_c00138{bottom:248.292920pt;}
.y1a_c00138{bottom:264.766520pt;}
.y19_c00138{bottom:277.750920pt;}
.y18_c00138{bottom:306.267320pt;}
.y17_c00138{bottom:334.779320pt;}
.y16_c00138{bottom:364.237320pt;}
.y15_c00138{bottom:393.066120pt;}
.y14_c00138{bottom:422.211720pt;}
.y13_c00138{bottom:451.674120pt;}
.y11_c00138{bottom:509.331720pt;}
.y12_c00138{bottom:514.400520pt;}
.y10_c00138{bottom:539.115320pt;}
.yf_c00138{bottom:567.622920pt;}
.ye_c00138{bottom:597.089720pt;}
.yd_c00138{bottom:608.177720pt;}
.yc_c00138{bottom:625.597320pt;}
.yb_c00138{bottom:654.426120pt;}
.ya_c00138{bottom:683.571720pt;}
.y9_c00138{bottom:712.088120pt;}
.y8_c00138{bottom:724.438920pt;}
.y7_c00138{bottom:740.595720pt;}
.y6_c00138{bottom:769.741320pt;}
.y5_c00138{bottom:783.368120pt;}
.y4_c00138{bottom:798.570120pt;}
.y3_c00138{bottom:827.086520pt;}
.y2_c00138{bottom:961.088520pt;}
.h6_c00138{height:20.559000pt;}
.he_c00138{height:23.306250pt;}
.h7_c00138{height:24.964500pt;}
.h11_c00138{height:25.698750pt;}
.h14_c00138{height:29.364844pt;}
.h12_c00138{height:29.370000pt;}
.h10_c00138{height:29.538549pt;}
.h8_c00138{height:30.382504pt;}
.hb_c00138{height:30.401250pt;}
.hd_c00138{height:30.838500pt;}
.ha_c00138{height:32.070415pt;}
.hf_c00138{height:35.794688pt;}
.h13_c00138{height:35.978250pt;}
.h9_c00138{height:36.712500pt;}
.h5_c00138{height:64.948125pt;}
.h3_c00138{height:68.402813pt;}
.hc_c00138{height:73.471613pt;}
.h4_c00138{height:74.621423pt;}
.h2_c00138{height:76.521328pt;}
.h1_c00138{height:986.666667pt;}
.h0_c00138{height:1122.666667pt;}
.w1_c00138{width:689.333333pt;}
.w0_c00138{width:793.333333pt;}
.x0_c00138{left:0.000000pt;}
.x1_c00138{left:52.000000pt;}
.x3_c00138{left:67.242253pt;}
.x1a_c00138{left:68.161853pt;}
.x65_c00138{left:69.072653pt;}
.x6c_c00138{left:70.793053pt;}
.x56_c00138{left:76.649453pt;}
.x73_c00138{left:89.141053pt;}
.x24_c00138{left:96.264653pt;}
.x69_c00138{left:98.645053pt;}
.x5f_c00138{left:99.903453pt;}
.x4a_c00138{left:106.076653pt;}
.x32_c00138{left:107.506653pt;}
.x60_c00138{left:108.413053pt;}
.x41_c00138{left:116.702653pt;}
.x59_c00138{left:117.666253pt;}
.x4_c00138{left:127.139453pt;}
.x6d_c00138{left:128.103053pt;}
.x49_c00138{left:136.185853pt;}
.x4f_c00138{left:137.219853pt;}
.x50_c00138{left:143.296253pt;}
.x25_c00138{left:146.477453pt;}
.x42_c00138{left:147.410253pt;}
.x5_c00138{left:154.498653pt;}
.x45_c00138{left:155.559053pt;}
.x3a_c00138{left:156.892253pt;}
.xf_c00138{left:158.454253pt;}
.x38_c00138{left:165.041053pt;}
.x51_c00138{left:165.956253pt;}
.x6e_c00138{left:167.637053pt;}
.x33_c00138{left:175.838653pt;}
.x26_c00138{left:183.727853pt;}
.x2d_c00138{left:185.289853pt;}
.x5a_c00138{left:186.227053pt;}
.x43_c00138{left:195.550653pt;}
.x74_c00138{left:197.416253pt;}
.x68_c00138{left:202.031853pt;}
.x1b_c00138{left:204.663053pt;}
.x2e_c00138{left:205.714653pt;}
.x10_c00138{left:215.623453pt;}
.x6_c00138{left:225.206653pt;}
.x27_c00138{left:226.271453pt;}
.x46_c00138{left:235.471853pt;}
.x4d_c00138{left:236.747853pt;}
.x7_c00138{left:243.827453pt;}
.x11_c00138{left:245.587453pt;}
.x39_c00138{left:254.985853pt;}
.x4b_c00138{left:257.608253pt;}
.x1c_c00138{left:264.965053pt;}
.x5b_c00138{left:265.880253pt;}
.x2f_c00138{left:274.266653pt;}
.x6a_c00138{left:275.626253pt;}
.x34_c00138{left:283.858653pt;}
.x3b_c00138{left:285.240253pt;}
.x6f_c00138{left:287.708653pt;}
.x1d_c00138{left:293.023853pt;}
.x47_c00138{left:294.427453pt;}
.x76_c00138{left:296.077453pt;}
.x12_c00138{left:303.878653pt;}
.x40_c00138{left:304.991853pt;}
.x66_c00138{left:314.997453pt;}
.x28_c00138{left:324.497053pt;}
.x75_c00138{left:325.764253pt;}
.x1e_c00138{left:333.547853pt;}
.x52_c00138{left:335.052653pt;}
.x13_c00138{left:343.368653pt;}
.x53_c00138{left:344.279453pt;}
.x8_c00138{left:354.227853pt;}
.x6b_c00138{left:364.127853pt;}
.x3c_c00138{left:373.574653pt;}
.x9_c00138{left:382.704653pt;}
.x57_c00138{left:384.706653pt;}
.x4e_c00138{left:391.865453pt;}
.x1f_c00138{left:393.577053pt;}
.x14_c00138{left:402.447453pt;}
.x71_c00138{left:403.991853pt;}
.x20_c00138{left:412.585053pt;}
.x54_c00138{left:413.487053pt;}
.x72_c00138{left:422.731453pt;}
.x3d_c00138{left:433.146253pt;}
.x29_c00138{left:441.251053pt;}
.x35_c00138{left:442.659053pt;}
.x61_c00138{left:443.939453pt;}
.xa_c00138{left:450.711053pt;}
.x2a_c00138{left:452.787853pt;}
.x15_c00138{left:461.697853pt;}
.x5c_c00138{left:462.648253pt;}
.x30_c00138{left:471.602253pt;}
.x62_c00138{left:473.111453pt;}
.x21_c00138{left:481.343853pt;}
.x63_c00138{left:482.267853pt;}
.xb_c00138{left:491.133853pt;}
.x16_c00138{left:492.101853pt;}
.x2b_c00138{left:501.170253pt;}
.x17_c00138{left:510.608253pt;}
.x55_c00138{left:511.633453pt;}
.x22_c00138{left:520.499453pt;}
.x5d_c00138{left:521.581853pt;}
.x19_c00138{left:525.801453pt;}
.x3e_c00138{left:530.447853pt;}
.x36_c00138{left:540.559053pt;}
.x23_c00138{left:549.662653pt;}
.xc_c00138{left:550.692253pt;}
.x44_c00138{left:559.795853pt;}
.x58_c00138{left:560.851853pt;}
.x37_c00138{left:568.323053pt;}
.x3f_c00138{left:570.219453pt;}
.x2_c00138{left:579.815853pt;}
.x5e_c00138{left:581.091853pt;}
.x18_c00138{left:589.931453pt;}
.x31_c00138{left:598.955853pt;}
.x48_c00138{left:600.394653pt;}
.xd_c00138{left:608.160653pt;}
.x2c_c00138{left:609.625853pt;}
.x4c_c00138{left:617.849453pt;}
.x70_c00138{left:620.388253pt;}
.x64_c00138{left:622.742253pt;}
.x67_c00138{left:625.237053pt;}
.xe_c00138{left:638.762653pt;}
.x77_c00138{left:668.678253pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_117c8ac28d372bbf8a80b912.woff2')format("woff");}.ff1_c00139{font-family:ff1_c00139;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00139;src:url('chunks/assets/font_1cbe24b19d8e1c4918f4a19d.woff2')format("woff");}.ff2_c00139{font-family:ff2_c00139;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00139;src:url('chunks/assets/font_2bc206c315c9f452a07a824e.woff2')format("woff");}.ff3_c00139{font-family:ff3_c00139;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00139;src:url('chunks/assets/font_8b60a25bb1600bc063281e8a.woff2')format("woff");}.ff4_c00139{font-family:ff4_c00139;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m33_c00139{transform:matrix(0.091907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091907,0.000000,0.000000,0.250000,0,0);}
.m45_c00139{transform:matrix(0.199085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199085,0.000000,0.000000,0.250000,0,0);}
.m8d_c00139{transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);}
.m16_c00139{transform:matrix(0.212958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212958,0.000000,0.000000,0.250000,0,0);}
.m57_c00139{transform:matrix(0.224573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224573,0.000000,0.000000,0.250000,0,0);}
.m6f_c00139{transform:matrix(0.232966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232966,0.000000,0.000000,0.250000,0,0);}
.m97_c00139{transform:matrix(0.238424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238424,0.000000,0.000000,0.250000,0,0);}
.m99_c00139{transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);}
.m14_c00139{transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);}
.m0_c00139{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m19_c00139{transform:matrix(0.250453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250453,0.000000,0.000000,0.250000,0,0);}
.m9_c00139{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.ma4_c00139{transform:matrix(0.252155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252155,0.000000,0.000000,0.250000,0,0);}
.m92_c00139{transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);}
.m79_c00139{transform:matrix(0.256629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256629,0.000000,0.000000,0.250000,0,0);}
.m69_c00139{transform:matrix(0.256942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256942,0.000000,0.000000,0.250000,0,0);}
.m1_c00139{transform:matrix(0.256952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256952,0.000000,0.000000,0.250000,0,0);}
.m3a_c00139{transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);}
.m2e_c00139{transform:matrix(0.260366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260366,0.000000,0.000000,0.250000,0,0);}
.m18_c00139{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.m46_c00139{transform:matrix(0.261624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261624,0.000000,0.000000,0.250000,0,0);}
.m2c_c00139{transform:matrix(0.262051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262051,0.000000,0.000000,0.250000,0,0);}
.m63_c00139{transform:matrix(0.263196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263196,0.000000,0.000000,0.250000,0,0);}
.m73_c00139{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m61_c00139{transform:matrix(0.263398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263398,0.000000,0.000000,0.250000,0,0);}
.m6_c00139{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m1e_c00139{transform:matrix(0.264656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264656,0.000000,0.000000,0.250000,0,0);}
.m54_c00139{transform:matrix(0.264902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264902,0.000000,0.000000,0.250000,0,0);}
.m5_c00139{transform:matrix(0.265811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265811,0.000000,0.000000,0.250000,0,0);}
.m25_c00139{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.mb9_c00139{transform:matrix(0.267472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267472,0.000000,0.000000,0.250000,0,0);}
.m21_c00139{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.mac_c00139{transform:matrix(0.268109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268109,0.000000,0.000000,0.250000,0,0);}
.m7d_c00139{transform:matrix(0.268484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268484,0.000000,0.000000,0.250000,0,0);}
.m1d_c00139{transform:matrix(0.269233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269233,0.000000,0.000000,0.250000,0,0);}
.m5a_c00139{transform:matrix(0.270725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270725,0.000000,0.000000,0.250000,0,0);}
.m8c_c00139{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m39_c00139{transform:matrix(0.271101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271101,0.000000,0.000000,0.250000,0,0);}
.mc_c00139{transform:matrix(0.271578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271578,0.000000,0.000000,0.250000,0,0);}
.m91_c00139{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m8e_c00139{transform:matrix(0.273006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273006,0.000000,0.000000,0.250000,0,0);}
.m9e_c00139{transform:matrix(0.273271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273271,0.000000,0.000000,0.250000,0,0);}
.m58_c00139{transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);}
.m26_c00139{transform:matrix(0.275182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275182,0.000000,0.000000,0.250000,0,0);}
.m94_c00139{transform:matrix(0.276123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276123,0.000000,0.000000,0.250000,0,0);}
.m70_c00139{transform:matrix(0.276181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276181,0.000000,0.000000,0.250000,0,0);}
.m8_c00139{transform:matrix(0.277186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277186,0.000000,0.000000,0.250000,0,0);}
.mba_c00139{transform:matrix(0.277210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277210,0.000000,0.000000,0.250000,0,0);}
.m30_c00139{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m6d_c00139{transform:matrix(0.277360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277360,0.000000,0.000000,0.250000,0,0);}
.m4c_c00139{transform:matrix(0.277523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277523,0.000000,0.000000,0.250000,0,0);}
.m31_c00139{transform:matrix(0.277948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277948,0.000000,0.000000,0.250000,0,0);}
.ma3_c00139{transform:matrix(0.277975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277975,0.000000,0.000000,0.250000,0,0);}
.m4f_c00139{transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);}
.ma5_c00139{transform:matrix(0.279633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279633,0.000000,0.000000,0.250000,0,0);}
.mb1_c00139{transform:matrix(0.280547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280547,0.000000,0.000000,0.250000,0,0);}
.m3d_c00139{transform:matrix(0.281783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281783,0.000000,0.000000,0.250000,0,0);}
.m83_c00139{transform:matrix(0.281795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281795,0.000000,0.000000,0.250000,0,0);}
.mab_c00139{transform:matrix(0.282165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282165,0.000000,0.000000,0.250000,0,0);}
.m7e_c00139{transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);}
.m78_c00139{transform:matrix(0.283007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283007,0.000000,0.000000,0.250000,0,0);}
.m96_c00139{transform:matrix(0.283514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283514,0.000000,0.000000,0.250000,0,0);}
.m66_c00139{transform:matrix(0.283524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283524,0.000000,0.000000,0.250000,0,0);}
.m6b_c00139{transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);}
.ma2_c00139{transform:matrix(0.284757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284757,0.000000,0.000000,0.250000,0,0);}
.m9a_c00139{transform:matrix(0.285473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285473,0.000000,0.000000,0.250000,0,0);}
.m4e_c00139{transform:matrix(0.285597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285597,0.000000,0.000000,0.250000,0,0);}
.m5f_c00139{transform:matrix(0.285694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285694,0.000000,0.000000,0.250000,0,0);}
.m8a_c00139{transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);}
.mad_c00139{transform:matrix(0.286141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286141,0.000000,0.000000,0.250000,0,0);}
.m2a_c00139{transform:matrix(0.287440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287440,0.000000,0.000000,0.250000,0,0);}
.m38_c00139{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00139{transform:matrix(0.287771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287771,0.000000,0.000000,0.250000,0,0);}
.m49_c00139{transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);}
.mb8_c00139{transform:matrix(0.288557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288557,0.000000,0.000000,0.250000,0,0);}
.m67_c00139{transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);}
.m71_c00139{transform:matrix(0.290364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290364,0.000000,0.000000,0.250000,0,0);}
.m43_c00139{transform:matrix(0.290438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290438,0.000000,0.000000,0.250000,0,0);}
.ma8_c00139{transform:matrix(0.291021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291021,0.000000,0.000000,0.250000,0,0);}
.m40_c00139{transform:matrix(0.291241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291241,0.000000,0.000000,0.250000,0,0);}
.m22_c00139{transform:matrix(0.291650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291650,0.000000,0.000000,0.250000,0,0);}
.ma0_c00139{transform:matrix(0.291917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291917,0.000000,0.000000,0.250000,0,0);}
.mb6_c00139{transform:matrix(0.293040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293040,0.000000,0.000000,0.250000,0,0);}
.m28_c00139{transform:matrix(0.293225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293225,0.000000,0.000000,0.250000,0,0);}
.m7f_c00139{transform:matrix(0.293350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293350,0.000000,0.000000,0.250000,0,0);}
.m20_c00139{transform:matrix(0.293522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293522,0.000000,0.000000,0.250000,0,0);}
.ma6_c00139{transform:matrix(0.293614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293614,0.000000,0.000000,0.250000,0,0);}
.m5e_c00139{transform:matrix(0.293651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293651,0.000000,0.000000,0.250000,0,0);}
.m3f_c00139{transform:matrix(0.294259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294259,0.000000,0.000000,0.250000,0,0);}
.m86_c00139{transform:matrix(0.294414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294414,0.000000,0.000000,0.250000,0,0);}
.m50_c00139{transform:matrix(0.294460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294460,0.000000,0.000000,0.250000,0,0);}
.m4_c00139{transform:matrix(0.295090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295090,0.000000,0.000000,0.250000,0,0);}
.ma9_c00139{transform:matrix(0.295199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295199,0.000000,0.000000,0.250000,0,0);}
.mb4_c00139{transform:matrix(0.295436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295436,0.000000,0.000000,0.250000,0,0);}
.m84_c00139{transform:matrix(0.296617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296617,0.000000,0.000000,0.250000,0,0);}
.m27_c00139{transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);}
.m8f_c00139{transform:matrix(0.297788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297788,0.000000,0.000000,0.250000,0,0);}
.m10_c00139{transform:matrix(0.298281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298281,0.000000,0.000000,0.250000,0,0);}
.maa_c00139{transform:matrix(0.298595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298595,0.000000,0.000000,0.250000,0,0);}
.m5b_c00139{transform:matrix(0.298770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298770,0.000000,0.000000,0.250000,0,0);}
.m15_c00139{transform:matrix(0.299006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299006,0.000000,0.000000,0.250000,0,0);}
.m3c_c00139{transform:matrix(0.299263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299263,0.000000,0.000000,0.250000,0,0);}
.mbb_c00139{transform:matrix(0.300012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300012,0.000000,0.000000,0.250000,0,0);}
.m3_c00139{transform:matrix(0.300712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300712,0.000000,0.000000,0.250000,0,0);}
.m9c_c00139{transform:matrix(0.302333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302333,0.000000,0.000000,0.250000,0,0);}
.maf_c00139{transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);}
.m47_c00139{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m35_c00139{transform:matrix(0.302931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302931,0.000000,0.000000,0.250000,0,0);}
.m1a_c00139{transform:matrix(0.303169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303169,0.000000,0.000000,0.250000,0,0);}
.m90_c00139{transform:matrix(0.303561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303561,0.000000,0.000000,0.250000,0,0);}
.m76_c00139{transform:matrix(0.303758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303758,0.000000,0.000000,0.250000,0,0);}
.mb3_c00139{transform:matrix(0.303770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303770,0.000000,0.000000,0.250000,0,0);}
.me_c00139{transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);}
.m93_c00139{transform:matrix(0.305655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305655,0.000000,0.000000,0.250000,0,0);}
.m41_c00139{transform:matrix(0.306753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306753,0.000000,0.000000,0.250000,0,0);}
.m5d_c00139{transform:matrix(0.307092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307092,0.000000,0.000000,0.250000,0,0);}
.m52_c00139{transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);}
.mb0_c00139{transform:matrix(0.308215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308215,0.000000,0.000000,0.250000,0,0);}
.m44_c00139{transform:matrix(0.308326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308326,0.000000,0.000000,0.250000,0,0);}
.m72_c00139{transform:matrix(0.308989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308989,0.000000,0.000000,0.250000,0,0);}
.m7a_c00139{transform:matrix(0.309027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309027,0.000000,0.000000,0.250000,0,0);}
.m82_c00139{transform:matrix(0.310390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310390,0.000000,0.000000,0.250000,0,0);}
.m1c_c00139{transform:matrix(0.310877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310877,0.000000,0.000000,0.250000,0,0);}
.m2f_c00139{transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);}
.m95_c00139{transform:matrix(0.311401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311401,0.000000,0.000000,0.250000,0,0);}
.m2b_c00139{transform:matrix(0.313013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313013,0.000000,0.000000,0.250000,0,0);}
.m5c_c00139{transform:matrix(0.313539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313539,0.000000,0.000000,0.250000,0,0);}
.m1b_c00139{transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);}
.mb7_c00139{transform:matrix(0.315141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315141,0.000000,0.000000,0.250000,0,0);}
.m11_c00139{transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);}
.m6a_c00139{transform:matrix(0.316284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316284,0.000000,0.000000,0.250000,0,0);}
.m56_c00139{transform:matrix(0.316688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316688,0.000000,0.000000,0.250000,0,0);}
.m32_c00139{transform:matrix(0.316737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316737,0.000000,0.000000,0.250000,0,0);}
.m77_c00139{transform:matrix(0.317367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317367,0.000000,0.000000,0.250000,0,0);}
.m89_c00139{transform:matrix(0.317798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317798,0.000000,0.000000,0.250000,0,0);}
.m12_c00139{transform:matrix(0.319638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319638,0.000000,0.000000,0.250000,0,0);}
.m4d_c00139{transform:matrix(0.320544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320544,0.000000,0.000000,0.250000,0,0);}
.m29_c00139{transform:matrix(0.321059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321059,0.000000,0.000000,0.250000,0,0);}
.m88_c00139{transform:matrix(0.321234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321234,0.000000,0.000000,0.250000,0,0);}
.mf_c00139{transform:matrix(0.321349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321349,0.000000,0.000000,0.250000,0,0);}
.m17_c00139{transform:matrix(0.322532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322532,0.000000,0.000000,0.250000,0,0);}
.m51_c00139{transform:matrix(0.325583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325583,0.000000,0.000000,0.250000,0,0);}
.m9d_c00139{transform:matrix(0.326455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326455,0.000000,0.000000,0.250000,0,0);}
.m3e_c00139{transform:matrix(0.326992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326992,0.000000,0.000000,0.250000,0,0);}
.m53_c00139{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m37_c00139{transform:matrix(0.327605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327605,0.000000,0.000000,0.250000,0,0);}
.m80_c00139{transform:matrix(0.327852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327852,0.000000,0.000000,0.250000,0,0);}
.m4a_c00139{transform:matrix(0.330425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330425,0.000000,0.000000,0.250000,0,0);}
.m3b_c00139{transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);}
.m68_c00139{transform:matrix(0.331235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331235,0.000000,0.000000,0.250000,0,0);}
.m6e_c00139{transform:matrix(0.331735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331735,0.000000,0.000000,0.250000,0,0);}
.m81_c00139{transform:matrix(0.332220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332220,0.000000,0.000000,0.250000,0,0);}
.m62_c00139{transform:matrix(0.332278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332278,0.000000,0.000000,0.250000,0,0);}
.m7c_c00139{transform:matrix(0.332426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332426,0.000000,0.000000,0.250000,0,0);}
.ma1_c00139{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m48_c00139{transform:matrix(0.333316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333316,0.000000,0.000000,0.250000,0,0);}
.ma_c00139{transform:matrix(0.333511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333511,0.000000,0.000000,0.250000,0,0);}
.m74_c00139{transform:matrix(0.333520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333520,0.000000,0.000000,0.250000,0,0);}
.m2d_c00139{transform:matrix(0.337410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337410,0.000000,0.000000,0.250000,0,0);}
.m7b_c00139{transform:matrix(0.337511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337511,0.000000,0.000000,0.250000,0,0);}
.m60_c00139{transform:matrix(0.339203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339203,0.000000,0.000000,0.250000,0,0);}
.m34_c00139{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m8b_c00139{transform:matrix(0.339434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339434,0.000000,0.000000,0.250000,0,0);}
.m9f_c00139{transform:matrix(0.339847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339847,0.000000,0.000000,0.250000,0,0);}
.md_c00139{transform:matrix(0.341574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341574,0.000000,0.000000,0.250000,0,0);}
.m23_c00139{transform:matrix(0.342408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342408,0.000000,0.000000,0.250000,0,0);}
.m59_c00139{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.m7_c00139{transform:matrix(0.343905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343905,0.000000,0.000000,0.250000,0,0);}
.m85_c00139{transform:matrix(0.346830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346830,0.000000,0.000000,0.250000,0,0);}
.m98_c00139{transform:matrix(0.347089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347089,0.000000,0.000000,0.250000,0,0);}
.m55_c00139{transform:matrix(0.349051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349051,0.000000,0.000000,0.250000,0,0);}
.mae_c00139{transform:matrix(0.354899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354899,0.000000,0.000000,0.250000,0,0);}
.m64_c00139{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m9b_c00139{transform:matrix(0.357165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357165,0.000000,0.000000,0.250000,0,0);}
.m36_c00139{transform:matrix(0.359950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359950,0.000000,0.000000,0.250000,0,0);}
.mb5_c00139{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m2_c00139{transform:matrix(0.361367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361367,0.000000,0.000000,0.250000,0,0);}
.m65_c00139{transform:matrix(0.362771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362771,0.000000,0.000000,0.250000,0,0);}
.ma7_c00139{transform:matrix(0.371191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371191,0.000000,0.000000,0.250000,0,0);}
.m75_c00139{transform:matrix(0.372527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372527,0.000000,0.000000,0.250000,0,0);}
.m87_c00139{transform:matrix(0.375731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375731,0.000000,0.000000,0.250000,0,0);}
.mb_c00139{transform:matrix(0.392742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392742,0.000000,0.000000,0.250000,0,0);}
.m13_c00139{transform:matrix(0.404579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404579,0.000000,0.000000,0.250000,0,0);}
.m24_c00139{transform:matrix(0.409814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409814,0.000000,0.000000,0.250000,0,0);}
.mb2_c00139{transform:matrix(0.410544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410544,0.000000,0.000000,0.250000,0,0);}
.m6c_c00139{transform:matrix(0.414699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414699,0.000000,0.000000,0.250000,0,0);}
.m42_c00139{transform:matrix(0.416306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416306,0.000000,0.000000,0.250000,0,0);}
.m1f_c00139{transform:matrix(0.432348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432348,0.000000,0.000000,0.250000,0,0);}
.v1_c00139{vertical-align:-11.404800px;}
.v0_c00139{vertical-align:0.000000px;}
.lsa_c00139{letter-spacing:-2.744280px;}
.ls8_c00139{letter-spacing:-2.211106px;}
.ls11_c00139{letter-spacing:-1.897474px;}
.lsf_c00139{letter-spacing:-0.337154px;}
.ls5_c00139{letter-spacing:0.000000px;}
.ls10_c00139{letter-spacing:1.011463px;}
.ls14_c00139{letter-spacing:1.379981px;}
.ls1_c00139{letter-spacing:1.536797px;}
.ls2_c00139{letter-spacing:1.654409px;}
.ls4_c00139{letter-spacing:2.030767px;}
.lsc_c00139{letter-spacing:2.132698px;}
.ls12_c00139{letter-spacing:2.509056px;}
.lsd_c00139{letter-spacing:3.191206px;}
.lse_c00139{letter-spacing:3.214728px;}
.lsb_c00139{letter-spacing:3.276900px;}
.ls17_c00139{letter-spacing:3.465634px;}
.ls16_c00139{letter-spacing:3.742200px;}
.ls15_c00139{letter-spacing:3.755743px;}
.ls9_c00139{letter-spacing:3.801610px;}
.ls7_c00139{letter-spacing:3.920400px;}
.ls6_c00139{letter-spacing:4.247615px;}
.ls3_c00139{letter-spacing:8.624880px;}
.ls0_c00139{letter-spacing:9.408960px;}
.ls13_c00139{letter-spacing:51.321798px;}
.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;}
}
.ws5_c00139{word-spacing:-22.816728px;}
.ws4_c00139{word-spacing:-22.793206px;}
.ws1_c00139{word-spacing:-19.602000px;}
.ws7_c00139{word-spacing:-3.998808px;}
.ws8_c00139{word-spacing:0.000000px;}
.ws2_c00139{word-spacing:1.254528px;}
.ws3_c00139{word-spacing:2.195424px;}
.ws0_c00139{word-spacing:2.744280px;}
.ws6_c00139{word-spacing:5.410152px;}
._11_c00139{margin-left:-25.168968px;}
._20_c00139{margin-left:-16.622496px;}
._18_c00139{margin-left:-13.172544px;}
._d_c00139{margin-left:-11.761200px;}
._23_c00139{margin-left:-10.271448px;}
._1d_c00139{margin-left:-8.781696px;}
._1c_c00139{margin-left:-6.111864px;}
._a_c00139{margin-left:-3.920400px;}
._f_c00139{margin-left:-2.744280px;}
._12_c00139{margin-left:-1.411344px;}
._c_c00139{width:2.195424px;}
._25_c00139{width:3.763584px;}
._e_c00139{width:4.939704px;}
._4_c00139{width:5.959008px;}
._0_c00139{width:7.135128px;}
._2_c00139{width:8.546472px;}
._13_c00139{width:10.489941px;}
._b_c00139{width:12.388464px;}
._16_c00139{width:13.878216px;}
._15_c00139{width:15.350857px;}
._5_c00139{width:17.031267px;}
._1b_c00139{width:21.404988px;}
._9_c00139{width:23.679216px;}
._19_c00139{width:25.404192px;}
._14_c00139{width:27.599616px;}
._1_c00139{width:29.167776px;}
._17_c00139{width:30.532867px;}
._6_c00139{width:31.602863px;}
._3_c00139{width:33.166584px;}
._21_c00139{width:35.255088px;}
._7_c00139{width:36.851760px;}
._1f_c00139{width:38.106288px;}
._8_c00139{width:39.282408px;}
._1e_c00139{width:41.817600px;}
._1a_c00139{width:45.006192px;}
._22_c00139{width:47.515248px;}
._24_c00139{width:750.376440px;}
._10_c00139{width:1701.962856px;}
.fc0_c00139{color:transparent;}
.fs0_c00139{font-size:22.176000px;}
.fs9_c00139{font-size:27.720000px;}
.fsa_c00139{font-size:32.670000px;}
.fsc_c00139{font-size:39.600000px;}
.fsb_c00139{font-size:40.986198px;}
.fs8_c00139{font-size:51.321798px;}
.fs1_c00139{font-size:63.558000px;}
.fs5_c00139{font-size:65.538000px;}
.fs7_c00139{font-size:66.330000px;}
.fs6_c00139{font-size:74.844000px;}
.fs4_c00139{font-size:76.032198px;}
.fs3_c00139{font-size:78.408000px;}
.fs2_c00139{font-size:88.308000px;}
.y0_c00139{bottom:0.000000px;}
.y20_c00139{bottom:5.970735px;}
.y1_c00139{bottom:76.500000px;}
.y1f_c00139{bottom:126.433935px;}
.y1e_c00139{bottom:154.945935px;}
.y1d_c00139{bottom:187.378335px;}
.y1c_c00139{bottom:203.416335px;}
.y1b_c00139{bottom:221.236335px;}
.y1a_c00139{bottom:254.025135px;}
.y19_c00139{bottom:286.813935px;}
.y18_c00139{bottom:319.602735px;}
.y17_c00139{bottom:360.583785px;}
.y16_c00139{bottom:384.111135px;}
.y15_c00139{bottom:416.182185px;}
.y14_c00139{bottom:448.970985px;}
.y13_c00139{bottom:481.046985px;}
.y12_c00139{bottom:513.127935px;}
.y11_c00139{bottom:545.560335px;}
.y10_c00139{bottom:578.349135px;}
.yf_c00139{bottom:610.781535px;}
.ye_c00139{bottom:643.570335px;}
.yd_c00139{bottom:676.359135px;}
.yc_c00139{bottom:709.147935px;}
.yb_c00139{bottom:741.218985px;}
.ya_c00139{bottom:803.950335px;}
.y9_c00139{bottom:836.021385px;}
.y8_c00139{bottom:869.527935px;}
.y7_c00139{bottom:901.598985px;}
.y6_c00139{bottom:934.031385px;}
.y3_c00139{bottom:995.335650px;}
.y2_c00139{bottom:1007.454735px;}
.y5_c00139{bottom:1083.362985px;}
.y4_c00139{bottom:1101.895785px;}
.h2_c00139{height:23.128875px;}
.hb_c00139{height:28.911094px;}
.ha_c00139{height:34.180317px;}
.hc_c00139{height:41.301563px;}
.h3_c00139{height:66.289008px;}
.h7_c00139{height:68.354086px;}
.h9_c00139{height:69.180117px;}
.h8_c00139{height:73.455293px;}
.h6_c00139{height:74.621444px;}
.hd_c00139{height:75.428719px;}
.h5_c00139{height:76.953164px;}
.h4_c00139{height:86.669473px;}
.h1_c00139{height:1110.000000px;}
.h0_c00139{height:1263.000000px;}
.w1_c00139{width:733.500000px;}
.w0_c00139{width:892.500000px;}
.x0_c00139{left:0.000000px;}
.x2f_c00139{left:73.744635px;}
.x20_c00139{left:75.516735px;}
.x6_c00139{left:76.793835px;}
.x75_c00139{left:77.848185px;}
.x1_c00139{left:79.500000px;}
.x21_c00139{left:86.797785px;}
.x68_c00139{left:88.515435px;}
.x7_c00139{left:97.994685px;}
.x76_c00139{left:99.237135px;}
.x62_c00139{left:107.285835px;}
.x22_c00139{left:108.379785px;}
.x44_c00139{left:119.537085px;}
.x69_c00139{left:120.626085px;}
.x3b_c00139{left:129.649935px;}
.x23_c00139{left:132.020985px;}
.x16_c00139{left:141.455685px;}
.x30_c00139{left:152.984235px;}
.x4e_c00139{left:154.053435px;}
.x6d_c00139{left:156.592785px;}
.x8_c00139{left:163.705935px;}
.x24_c00139{left:165.156285px;}
.x3c_c00139{left:173.219835px;}
.x31_c00139{left:174.798885px;}
.x6a_c00139{left:175.803735px;}
.x48_c00139{left:184.268235px;}
.x53_c00139{left:186.441285px;}
.x9_c00139{left:197.252085px;}
.x39_c00139{left:198.826185px;}
.xa_c00139{left:208.627185px;}
.x3a_c00139{left:210.755685px;}
.x54_c00139{left:213.794985px;}
.x17_c00139{left:218.962785px;}
.x32_c00139{left:220.398285px;}
.x25_c00139{left:229.441935px;}
.x4f_c00139{left:230.674485px;}
.x6e_c00139{left:233.416785px;}
.xb_c00139{left:241.267485px;}
.x33_c00139{left:252.657435px;}
.x5d_c00139{left:263.032635px;}
.x26_c00139{left:264.270135px;}
.x27_c00139{left:274.081035px;}
.x18_c00139{left:275.986785px;}
.x49_c00139{left:285.376935px;}
.x47_c00139{left:286.673835px;}
.x5a_c00139{left:297.202485px;}
.xc_c00139{left:298.444935px;}
.x19_c00139{left:309.448785px;}
.xd_c00139{left:320.210085px;}
.x3d_c00139{left:329.431935px;}
.x28_c00139{left:330.892185px;}
.x73_c00139{left:332.293035px;}
.x3e_c00139{left:336.639135px;}
.x55_c00139{left:342.292035px;}
.x64_c00139{left:351.776235px;}
.x1a_c00139{left:353.355285px;}
.x77_c00139{left:354.419535px;}
.x1b_c00139{left:363.487935px;}
.x5f_c00139{left:364.636335px;}
.x6c_c00139{left:365.750085px;}
.xe_c00139{left:366.858885px;}
.x56_c00139{left:375.457035px;}
.x3f_c00139{left:376.501485px;}
.x4a_c00139{left:378.273585px;}
.x65_c00139{left:385.951035px;}
.xf_c00139{left:387.079635px;}
.x4b_c00139{left:396.326235px;}
.x34_c00139{left:398.236935px;}
.x50_c00139{left:399.320985px;}
.x29_c00139{left:400.801035px;}
.x1c_c00139{left:408.562635px;}
.x40_c00139{left:409.582335px;}
.x45_c00139{left:418.729935px;}
.x57_c00139{left:419.779335px;}
.x2a_c00139{left:430.842585px;}
.x78_c00139{left:432.446385px;}
.x41_c00139{left:440.430735px;}
.x10_c00139{left:441.747435px;}
.x1d_c00139{left:453.102735px;}
.x60_c00139{left:454.206585px;}
.x2_c00139{left:462.893835px;}
.x2b_c00139{left:464.472885px;}
.x6f_c00139{left:473.932335px;}
.x66_c00139{left:475.244085px;}
.x5e_c00139{left:476.253885px;}
.x11_c00139{left:485.832135px;}
.x74_c00139{left:487.322085px;}
.x51_c00139{left:496.474635px;}
.x2c_c00139{left:497.603235px;}
.x67_c00139{left:503.855085px;}
.x35_c00139{left:509.389185px;}
.x3_c00139{left:517.064160px;}
.x12_c00139{left:519.794085px;}
.x5b_c00139{left:529.619835px;}
.x13_c00139{left:531.213735px;}
.x36_c00139{left:541.890885px;}
.x79_c00139{left:542.935335px;}
.x70_c00139{left:545.048985px;}
.x4c_c00139{left:552.459135px;}
.x37_c00139{left:563.443185px;}
.x1e_c00139{left:564.710385px;}
.x6b_c00139{left:574.115385px;}
.x58_c00139{left:575.392485px;}
.x42_c00139{left:577.426935px;}
.x2d_c00139{left:585.634035px;}
.x52_c00139{left:597.469485px;}
.x14_c00139{left:607.285335px;}
.x71_c00139{left:618.833685px;}
.x1f_c00139{left:619.912785px;}
.x5c_c00139{left:621.105735px;}
.x46_c00139{left:630.575085px;}
.x38_c00139{left:640.405785px;}
.x15_c00139{left:641.658135px;}
.x72_c00139{left:651.112635px;}
.x5_c00139{left:653.028285px;}
.x61_c00139{left:663.794535px;}
.x63_c00139{left:673.249035px;}
.x4d_c00139{left:675.397335px;}
.x2e_c00139{left:685.752735px;}
.x59_c00139{left:694.662735px;}
.x43_c00139{left:696.860535px;}
.x7b_c00139{left:698.117835px;}
.x7a_c00139{left:699.162285px;}
.x4_c00139{left:700.513635px;}
@media print{
.v1_c00139{vertical-align:-10.137600pt;}
.v0_c00139{vertical-align:0.000000pt;}
.lsa_c00139{letter-spacing:-2.439360pt;}
.ls8_c00139{letter-spacing:-1.965427pt;}
.ls11_c00139{letter-spacing:-1.686643pt;}
.lsf_c00139{letter-spacing:-0.299693pt;}
.ls5_c00139{letter-spacing:0.000000pt;}
.ls10_c00139{letter-spacing:0.899078pt;}
.ls14_c00139{letter-spacing:1.226650pt;}
.ls1_c00139{letter-spacing:1.366042pt;}
.ls2_c00139{letter-spacing:1.470586pt;}
.ls4_c00139{letter-spacing:1.805126pt;}
.lsc_c00139{letter-spacing:1.895731pt;}
.ls12_c00139{letter-spacing:2.230272pt;}
.lsd_c00139{letter-spacing:2.836627pt;}
.lse_c00139{letter-spacing:2.857536pt;}
.lsb_c00139{letter-spacing:2.912800pt;}
.ls17_c00139{letter-spacing:3.080563pt;}
.ls16_c00139{letter-spacing:3.326400pt;}
.ls15_c00139{letter-spacing:3.338438pt;}
.ls9_c00139{letter-spacing:3.379209pt;}
.ls7_c00139{letter-spacing:3.484800pt;}
.ls6_c00139{letter-spacing:3.775658pt;}
.ls3_c00139{letter-spacing:7.666560pt;}
.ls0_c00139{letter-spacing:8.363520pt;}
.ls13_c00139{letter-spacing:45.619376pt;}
.ws5_c00139{word-spacing:-20.281536pt;}
.ws4_c00139{word-spacing:-20.260627pt;}
.ws1_c00139{word-spacing:-17.424000pt;}
.ws7_c00139{word-spacing:-3.554496pt;}
.ws8_c00139{word-spacing:0.000000pt;}
.ws2_c00139{word-spacing:1.115136pt;}
.ws3_c00139{word-spacing:1.951488pt;}
.ws0_c00139{word-spacing:2.439360pt;}
.ws6_c00139{word-spacing:4.809024pt;}
._11_c00139{margin-left:-22.372416pt;}
._20_c00139{margin-left:-14.775552pt;}
._18_c00139{margin-left:-11.708928pt;}
._d_c00139{margin-left:-10.454400pt;}
._23_c00139{margin-left:-9.130176pt;}
._1d_c00139{margin-left:-7.805952pt;}
._1c_c00139{margin-left:-5.432768pt;}
._a_c00139{margin-left:-3.484800pt;}
._f_c00139{margin-left:-2.439360pt;}
._12_c00139{margin-left:-1.254528pt;}
._c_c00139{width:1.951488pt;}
._25_c00139{width:3.345408pt;}
._e_c00139{width:4.390848pt;}
._4_c00139{width:5.296896pt;}
._0_c00139{width:6.342336pt;}
._2_c00139{width:7.596864pt;}
._13_c00139{width:9.324392pt;}
._b_c00139{width:11.011968pt;}
._16_c00139{width:12.336192pt;}
._15_c00139{width:13.645207pt;}
._5_c00139{width:15.138904pt;}
._1b_c00139{width:19.026656pt;}
._9_c00139{width:21.048192pt;}
._19_c00139{width:22.581504pt;}
._14_c00139{width:24.532992pt;}
._1_c00139{width:25.926912pt;}
._17_c00139{width:27.140326pt;}
._6_c00139{width:28.091433pt;}
._3_c00139{width:29.481408pt;}
._21_c00139{width:31.337856pt;}
._7_c00139{width:32.757120pt;}
._1f_c00139{width:33.872256pt;}
._8_c00139{width:34.917696pt;}
._1e_c00139{width:37.171200pt;}
._1a_c00139{width:40.005504pt;}
._22_c00139{width:42.235776pt;}
._24_c00139{width:667.001280pt;}
._10_c00139{width:1512.855872pt;}
.fs0_c00139{font-size:19.712000pt;}
.fs9_c00139{font-size:24.640000pt;}
.fsa_c00139{font-size:29.040000pt;}
.fsc_c00139{font-size:35.200000pt;}
.fsb_c00139{font-size:36.432176pt;}
.fs8_c00139{font-size:45.619376pt;}
.fs1_c00139{font-size:56.496000pt;}
.fs5_c00139{font-size:58.256000pt;}
.fs7_c00139{font-size:58.960000pt;}
.fs6_c00139{font-size:66.528000pt;}
.fs4_c00139{font-size:67.584176pt;}
.fs3_c00139{font-size:69.696000pt;}
.fs2_c00139{font-size:78.496000pt;}
.y0_c00139{bottom:0.000000pt;}
.y20_c00139{bottom:5.307320pt;}
.y1_c00139{bottom:68.000000pt;}
.y1f_c00139{bottom:112.385720pt;}
.y1e_c00139{bottom:137.729720pt;}
.y1d_c00139{bottom:166.558520pt;}
.y1c_c00139{bottom:180.814520pt;}
.y1b_c00139{bottom:196.654520pt;}
.y1a_c00139{bottom:225.800120pt;}
.y19_c00139{bottom:254.945720pt;}
.y18_c00139{bottom:284.091320pt;}
.y17_c00139{bottom:320.518920pt;}
.y16_c00139{bottom:341.432120pt;}
.y15_c00139{bottom:369.939720pt;}
.y14_c00139{bottom:399.085320pt;}
.y13_c00139{bottom:427.597320pt;}
.y12_c00139{bottom:456.113720pt;}
.y11_c00139{bottom:484.942520pt;}
.y10_c00139{bottom:514.088120pt;}
.yf_c00139{bottom:542.916920pt;}
.ye_c00139{bottom:572.062520pt;}
.yd_c00139{bottom:601.208120pt;}
.yc_c00139{bottom:630.353720pt;}
.yb_c00139{bottom:658.861320pt;}
.ya_c00139{bottom:714.622520pt;}
.y9_c00139{bottom:743.130120pt;}
.y8_c00139{bottom:772.913720pt;}
.y7_c00139{bottom:801.421320pt;}
.y6_c00139{bottom:830.250120pt;}
.y3_c00139{bottom:884.742800pt;}
.y2_c00139{bottom:895.515320pt;}
.y5_c00139{bottom:962.989320pt;}
.y4_c00139{bottom:979.462920pt;}
.h2_c00139{height:20.559000pt;}
.hb_c00139{height:25.698750pt;}
.ha_c00139{height:30.382504pt;}
.hc_c00139{height:36.712500pt;}
.h3_c00139{height:58.923563pt;}
.h7_c00139{height:60.759188pt;}
.h9_c00139{height:61.493438pt;}
.h8_c00139{height:65.293594pt;}
.h6_c00139{height:66.330173pt;}
.hd_c00139{height:67.047750pt;}
.h5_c00139{height:68.402813pt;}
.h4_c00139{height:77.039531pt;}
.h1_c00139{height:986.666667pt;}
.h0_c00139{height:1122.666667pt;}
.w1_c00139{width:652.000000pt;}
.w0_c00139{width:793.333333pt;}
.x0_c00139{left:0.000000pt;}
.x2f_c00139{left:65.550787pt;}
.x20_c00139{left:67.125987pt;}
.x6_c00139{left:68.261187pt;}
.x75_c00139{left:69.198387pt;}
.x1_c00139{left:70.666667pt;}
.x21_c00139{left:77.153587pt;}
.x68_c00139{left:78.680387pt;}
.x7_c00139{left:87.106387pt;}
.x76_c00139{left:88.210787pt;}
.x62_c00139{left:95.365187pt;}
.x22_c00139{left:96.337587pt;}
.x44_c00139{left:106.255187pt;}
.x69_c00139{left:107.223187pt;}
.x3b_c00139{left:115.244387pt;}
.x23_c00139{left:117.351987pt;}
.x16_c00139{left:125.738387pt;}
.x30_c00139{left:135.985987pt;}
.x4e_c00139{left:136.936387pt;}
.x6d_c00139{left:139.193587pt;}
.x8_c00139{left:145.516387pt;}
.x24_c00139{left:146.805587pt;}
.x3c_c00139{left:153.973187pt;}
.x31_c00139{left:155.376787pt;}
.x6a_c00139{left:156.269987pt;}
.x48_c00139{left:163.793987pt;}
.x53_c00139{left:165.725587pt;}
.x9_c00139{left:175.335187pt;}
.x39_c00139{left:176.734387pt;}
.xa_c00139{left:185.446387pt;}
.x3a_c00139{left:187.338387pt;}
.x54_c00139{left:190.039987pt;}
.x17_c00139{left:194.633587pt;}
.x32_c00139{left:195.909587pt;}
.x25_c00139{left:203.948387pt;}
.x4f_c00139{left:205.043987pt;}
.x6e_c00139{left:207.481587pt;}
.xb_c00139{left:214.459987pt;}
.x33_c00139{left:224.584387pt;}
.x5d_c00139{left:233.806787pt;}
.x26_c00139{left:234.906787pt;}
.x27_c00139{left:243.627587pt;}
.x18_c00139{left:245.321587pt;}
.x49_c00139{left:253.668387pt;}
.x47_c00139{left:254.821187pt;}
.x5a_c00139{left:264.179987pt;}
.xc_c00139{left:265.284387pt;}
.x19_c00139{left:275.065587pt;}
.xd_c00139{left:284.631187pt;}
.x3d_c00139{left:292.828387pt;}
.x28_c00139{left:294.126387pt;}
.x73_c00139{left:295.371587pt;}
.x3e_c00139{left:299.234787pt;}
.x55_c00139{left:304.259587pt;}
.x64_c00139{left:312.689987pt;}
.x1a_c00139{left:314.093587pt;}
.x77_c00139{left:315.039587pt;}
.x1b_c00139{left:323.100387pt;}
.x5f_c00139{left:324.121187pt;}
.x6c_c00139{left:325.111187pt;}
.xe_c00139{left:326.096787pt;}
.x56_c00139{left:333.739587pt;}
.x3f_c00139{left:334.667987pt;}
.x4a_c00139{left:336.243187pt;}
.x65_c00139{left:343.067587pt;}
.xf_c00139{left:344.070787pt;}
.x4b_c00139{left:352.289987pt;}
.x34_c00139{left:353.988387pt;}
.x50_c00139{left:354.951987pt;}
.x29_c00139{left:356.267587pt;}
.x1c_c00139{left:363.166787pt;}
.x40_c00139{left:364.073187pt;}
.x45_c00139{left:372.204387pt;}
.x57_c00139{left:373.137187pt;}
.x2a_c00139{left:382.971187pt;}
.x78_c00139{left:384.396787pt;}
.x41_c00139{left:391.493987pt;}
.x10_c00139{left:392.664387pt;}
.x1d_c00139{left:402.757987pt;}
.x60_c00139{left:403.739187pt;}
.x2_c00139{left:411.461187pt;}
.x2b_c00139{left:412.864787pt;}
.x6f_c00139{left:421.273187pt;}
.x66_c00139{left:422.439187pt;}
.x5e_c00139{left:423.336787pt;}
.x11_c00139{left:431.850787pt;}
.x74_c00139{left:433.175187pt;}
.x51_c00139{left:441.310787pt;}
.x2c_c00139{left:442.313987pt;}
.x67_c00139{left:447.871187pt;}
.x35_c00139{left:452.790387pt;}
.x3_c00139{left:459.612587pt;}
.x12_c00139{left:462.039187pt;}
.x5b_c00139{left:470.773187pt;}
.x13_c00139{left:472.189987pt;}
.x36_c00139{left:481.680787pt;}
.x79_c00139{left:482.609187pt;}
.x70_c00139{left:484.487987pt;}
.x4c_c00139{left:491.074787pt;}
.x37_c00139{left:500.838387pt;}
.x1e_c00139{left:501.964787pt;}
.x6b_c00139{left:510.324787pt;}
.x58_c00139{left:511.459987pt;}
.x42_c00139{left:513.268387pt;}
.x2d_c00139{left:520.563587pt;}
.x52_c00139{left:531.083987pt;}
.x14_c00139{left:539.809187pt;}
.x71_c00139{left:550.074387pt;}
.x1f_c00139{left:551.033587pt;}
.x5c_c00139{left:552.093987pt;}
.x46_c00139{left:560.511187pt;}
.x38_c00139{left:569.249587pt;}
.x15_c00139{left:570.362787pt;}
.x72_c00139{left:578.766787pt;}
.x5_c00139{left:580.469587pt;}
.x61_c00139{left:590.039587pt;}
.x63_c00139{left:598.443587pt;}
.x4d_c00139{left:600.353187pt;}
.x2e_c00139{left:609.557987pt;}
.x59_c00139{left:617.477987pt;}
.x43_c00139{left:619.431587pt;}
.x7b_c00139{left:620.549187pt;}
.x7a_c00139{left:621.477587pt;}
.x4_c00139{left:622.678787pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a641adca07886251ad47ae6d.woff2')format("woff");}.ff1_c00140{font-family:ff1_c00140;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00140;src:url('chunks/assets/font_7cb187dbb65e94e7d9aedcba.woff2')format("woff");}.ff2_c00140{font-family:ff2_c00140;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00140;src:url('chunks/assets/font_e53dba8f41b4b937b4f2ef63.woff2')format("woff");}.ff3_c00140{font-family:ff3_c00140;line-height:0.666000;font-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_c00140{transform:matrix(0.119566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119566,0.000000,0.000000,0.250000,0,0);}
.m28_c00140{transform:matrix(0.199325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199325,0.000000,0.000000,0.250000,0,0);}
.m35_c00140{transform:matrix(0.220408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220408,0.000000,0.000000,0.250000,0,0);}
.m8d_c00140{transform:matrix(0.224573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224573,0.000000,0.000000,0.250000,0,0);}
.m4d_c00140{transform:matrix(0.232467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232467,0.000000,0.000000,0.250000,0,0);}
.m3b_c00140{transform:matrix(0.246601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246601,0.000000,0.000000,0.250000,0,0);}
.m0_c00140{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m36_c00140{transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);}
.m3e_c00140{transform:matrix(0.250753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250753,0.000000,0.000000,0.250000,0,0);}
.mae_c00140{transform:matrix(0.251077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251077,0.000000,0.000000,0.250000,0,0);}
.m2a_c00140{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.m1_c00140{transform:matrix(0.251939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251939,0.000000,0.000000,0.250000,0,0);}
.m83_c00140{transform:matrix(0.258287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258287,0.000000,0.000000,0.250000,0,0);}
.m97_c00140{transform:matrix(0.258756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258756,0.000000,0.000000,0.250000,0,0);}
.m85_c00140{transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);}
.m56_c00140{transform:matrix(0.260438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260438,0.000000,0.000000,0.250000,0,0);}
.m47_c00140{transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);}
.m13_c00140{transform:matrix(0.261592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261592,0.000000,0.000000,0.250000,0,0);}
.mb0_c00140{transform:matrix(0.261665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261665,0.000000,0.000000,0.250000,0,0);}
.m76_c00140{transform:matrix(0.261836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261836,0.000000,0.000000,0.250000,0,0);}
.m72_c00140{transform:matrix(0.262393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262393,0.000000,0.000000,0.250000,0,0);}
.m2_c00140{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m58_c00140{transform:matrix(0.263362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263362,0.000000,0.000000,0.250000,0,0);}
.m2d_c00140{transform:matrix(0.264134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264134,0.000000,0.000000,0.250000,0,0);}
.ma1_c00140{transform:matrix(0.264886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264886,0.000000,0.000000,0.250000,0,0);}
.m86_c00140{transform:matrix(0.265205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265205,0.000000,0.000000,0.250000,0,0);}
.m23_c00140{transform:matrix(0.265948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265948,0.000000,0.000000,0.250000,0,0);}
.m53_c00140{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m7_c00140{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.mb_c00140{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m15_c00140{transform:matrix(0.268694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268694,0.000000,0.000000,0.250000,0,0);}
.m29_c00140{transform:matrix(0.268958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268958,0.000000,0.000000,0.250000,0,0);}
.m3f_c00140{transform:matrix(0.269104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269104,0.000000,0.000000,0.250000,0,0);}
.m14_c00140{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m20_c00140{transform:matrix(0.271185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271185,0.000000,0.000000,0.250000,0,0);}
.m52_c00140{transform:matrix(0.271578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271578,0.000000,0.000000,0.250000,0,0);}
.m44_c00140{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m46_c00140{transform:matrix(0.272717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272717,0.000000,0.000000,0.250000,0,0);}
.ma5_c00140{transform:matrix(0.273156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273156,0.000000,0.000000,0.250000,0,0);}
.m42_c00140{transform:matrix(0.273664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273664,0.000000,0.000000,0.250000,0,0);}
.m8f_c00140{transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);}
.ma9_c00140{transform:matrix(0.274360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274360,0.000000,0.000000,0.250000,0,0);}
.m96_c00140{transform:matrix(0.274501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274501,0.000000,0.000000,0.250000,0,0);}
.m40_c00140{transform:matrix(0.275428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275428,0.000000,0.000000,0.250000,0,0);}
.m31_c00140{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m9a_c00140{transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00140{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m8b_c00140{transform:matrix(0.278015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278015,0.000000,0.000000,0.250000,0,0);}
.m19_c00140{transform:matrix(0.278068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278068,0.000000,0.000000,0.250000,0,0);}
.m48_c00140{transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);}
.m1c_c00140{transform:matrix(0.278765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278765,0.000000,0.000000,0.250000,0,0);}
.m43_c00140{transform:matrix(0.278911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278911,0.000000,0.000000,0.250000,0,0);}
.m68_c00140{transform:matrix(0.279021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279021,0.000000,0.000000,0.250000,0,0);}
.m25_c00140{transform:matrix(0.279105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279105,0.000000,0.000000,0.250000,0,0);}
.m41_c00140{transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);}
.mb3_c00140{transform:matrix(0.280257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280257,0.000000,0.000000,0.250000,0,0);}
.m1e_c00140{transform:matrix(0.280378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280378,0.000000,0.000000,0.250000,0,0);}
.m6c_c00140{transform:matrix(0.280544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280544,0.000000,0.000000,0.250000,0,0);}
.m91_c00140{transform:matrix(0.280748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280748,0.000000,0.000000,0.250000,0,0);}
.m54_c00140{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.m6b_c00140{transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);}
.m50_c00140{transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);}
.m6a_c00140{transform:matrix(0.283144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283144,0.000000,0.000000,0.250000,0,0);}
.m60_c00140{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.ma3_c00140{transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);}
.m4e_c00140{transform:matrix(0.284292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284292,0.000000,0.000000,0.250000,0,0);}
.mf_c00140{transform:matrix(0.284525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284525,0.000000,0.000000,0.250000,0,0);}
.m63_c00140{transform:matrix(0.285273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285273,0.000000,0.000000,0.250000,0,0);}
.m5e_c00140{transform:matrix(0.285705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285705,0.000000,0.000000,0.250000,0,0);}
.m8c_c00140{transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);}
.mab_c00140{transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);}
.m7e_c00140{transform:matrix(0.287335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287335,0.000000,0.000000,0.250000,0,0);}
.md_c00140{transform:matrix(0.287440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287440,0.000000,0.000000,0.250000,0,0);}
.m5c_c00140{transform:matrix(0.287763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287763,0.000000,0.000000,0.250000,0,0);}
.mc_c00140{transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);}
.ma4_c00140{transform:matrix(0.288798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288798,0.000000,0.000000,0.250000,0,0);}
.m30_c00140{transform:matrix(0.289043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289043,0.000000,0.000000,0.250000,0,0);}
.m18_c00140{transform:matrix(0.290152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290152,0.000000,0.000000,0.250000,0,0);}
.m69_c00140{transform:matrix(0.290327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290327,0.000000,0.000000,0.250000,0,0);}
.m8a_c00140{transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);}
.m26_c00140{transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);}
.m5d_c00140{transform:matrix(0.291262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291262,0.000000,0.000000,0.250000,0,0);}
.m38_c00140{transform:matrix(0.291407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291407,0.000000,0.000000,0.250000,0,0);}
.m80_c00140{transform:matrix(0.291415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291415,0.000000,0.000000,0.250000,0,0);}
.mb1_c00140{transform:matrix(0.291680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291680,0.000000,0.000000,0.250000,0,0);}
.m4c_c00140{transform:matrix(0.291682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291682,0.000000,0.000000,0.250000,0,0);}
.m45_c00140{transform:matrix(0.291725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291725,0.000000,0.000000,0.250000,0,0);}
.m70_c00140{transform:matrix(0.291879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291879,0.000000,0.000000,0.250000,0,0);}
.m55_c00140{transform:matrix(0.292761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292761,0.000000,0.000000,0.250000,0,0);}
.m21_c00140{transform:matrix(0.292920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292920,0.000000,0.000000,0.250000,0,0);}
.m3a_c00140{transform:matrix(0.294266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294266,0.000000,0.000000,0.250000,0,0);}
.m1d_c00140{transform:matrix(0.295150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295150,0.000000,0.000000,0.250000,0,0);}
.m5b_c00140{transform:matrix(0.295782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295782,0.000000,0.000000,0.250000,0,0);}
.m6e_c00140{transform:matrix(0.296207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296207,0.000000,0.000000,0.250000,0,0);}
.maa_c00140{transform:matrix(0.296473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296473,0.000000,0.000000,0.250000,0,0);}
.m7d_c00140{transform:matrix(0.296655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296655,0.000000,0.000000,0.250000,0,0);}
.m4f_c00140{transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);}
.ma0_c00140{transform:matrix(0.296991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296991,0.000000,0.000000,0.250000,0,0);}
.m9f_c00140{transform:matrix(0.297309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297309,0.000000,0.000000,0.250000,0,0);}
.m2f_c00140{transform:matrix(0.297319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297319,0.000000,0.000000,0.250000,0,0);}
.m6d_c00140{transform:matrix(0.297336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297336,0.000000,0.000000,0.250000,0,0);}
.m11_c00140{transform:matrix(0.297372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297372,0.000000,0.000000,0.250000,0,0);}
.m77_c00140{transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);}
.m9b_c00140{transform:matrix(0.298607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298607,0.000000,0.000000,0.250000,0,0);}
.m66_c00140{transform:matrix(0.300003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300003,0.000000,0.000000,0.250000,0,0);}
.m92_c00140{transform:matrix(0.301301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301301,0.000000,0.000000,0.250000,0,0);}
.m7b_c00140{transform:matrix(0.302057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302057,0.000000,0.000000,0.250000,0,0);}
.m33_c00140{transform:matrix(0.302070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302070,0.000000,0.000000,0.250000,0,0);}
.m2e_c00140{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.mb2_c00140{transform:matrix(0.302521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302521,0.000000,0.000000,0.250000,0,0);}
.m94_c00140{transform:matrix(0.303138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303138,0.000000,0.000000,0.250000,0,0);}
.m8_c00140{transform:matrix(0.303287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303287,0.000000,0.000000,0.250000,0,0);}
.m4_c00140{transform:matrix(0.303527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303527,0.000000,0.000000,0.250000,0,0);}
.m24_c00140{transform:matrix(0.305282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305282,0.000000,0.000000,0.250000,0,0);}
.ma6_c00140{transform:matrix(0.305475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305475,0.000000,0.000000,0.250000,0,0);}
.m37_c00140{transform:matrix(0.305655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305655,0.000000,0.000000,0.250000,0,0);}
.m8e_c00140{transform:matrix(0.306525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306525,0.000000,0.000000,0.250000,0,0);}
.m7c_c00140{transform:matrix(0.306703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306703,0.000000,0.000000,0.250000,0,0);}
.m7a_c00140{transform:matrix(0.307183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307183,0.000000,0.000000,0.250000,0,0);}
.m82_c00140{transform:matrix(0.307194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307194,0.000000,0.000000,0.250000,0,0);}
.me_c00140{transform:matrix(0.307698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307698,0.000000,0.000000,0.250000,0,0);}
.m59_c00140{transform:matrix(0.307760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307760,0.000000,0.000000,0.250000,0,0);}
.m78_c00140{transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);}
.m2c_c00140{transform:matrix(0.308324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308324,0.000000,0.000000,0.250000,0,0);}
.m98_c00140{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.ma_c00140{transform:matrix(0.308981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308981,0.000000,0.000000,0.250000,0,0);}
.m34_c00140{transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);}
.m79_c00140{transform:matrix(0.311511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311511,0.000000,0.000000,0.250000,0,0);}
.m2b_c00140{transform:matrix(0.311666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311666,0.000000,0.000000,0.250000,0,0);}
.m5_c00140{transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);}
.m22_c00140{transform:matrix(0.312688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312688,0.000000,0.000000,0.250000,0,0);}
.m57_c00140{transform:matrix(0.313023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313023,0.000000,0.000000,0.250000,0,0);}
.m3_c00140{transform:matrix(0.313488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313488,0.000000,0.000000,0.250000,0,0);}
.ma2_c00140{transform:matrix(0.313583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313583,0.000000,0.000000,0.250000,0,0);}
.m87_c00140{transform:matrix(0.313921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313921,0.000000,0.000000,0.250000,0,0);}
.m61_c00140{transform:matrix(0.314153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314153,0.000000,0.000000,0.250000,0,0);}
.m99_c00140{transform:matrix(0.315515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315515,0.000000,0.000000,0.250000,0,0);}
.m10_c00140{transform:matrix(0.316190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316190,0.000000,0.000000,0.250000,0,0);}
.m4b_c00140{transform:matrix(0.317023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317023,0.000000,0.000000,0.250000,0,0);}
.ma8_c00140{transform:matrix(0.318465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318465,0.000000,0.000000,0.250000,0,0);}
.m1a_c00140{transform:matrix(0.318980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318980,0.000000,0.000000,0.250000,0,0);}
.m9e_c00140{transform:matrix(0.319176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319176,0.000000,0.000000,0.250000,0,0);}
.m5f_c00140{transform:matrix(0.321473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321473,0.000000,0.000000,0.250000,0,0);}
.m49_c00140{transform:matrix(0.321636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321636,0.000000,0.000000,0.250000,0,0);}
.m17_c00140{transform:matrix(0.322550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322550,0.000000,0.000000,0.250000,0,0);}
.m16_c00140{transform:matrix(0.323026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323026,0.000000,0.000000,0.250000,0,0);}
.m9d_c00140{transform:matrix(0.323634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323634,0.000000,0.000000,0.250000,0,0);}
.m62_c00140{transform:matrix(0.323944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323944,0.000000,0.000000,0.250000,0,0);}
.m73_c00140{transform:matrix(0.325172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325172,0.000000,0.000000,0.250000,0,0);}
.m27_c00140{transform:matrix(0.327290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327290,0.000000,0.000000,0.250000,0,0);}
.m65_c00140{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.m9c_c00140{transform:matrix(0.330043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330043,0.000000,0.000000,0.250000,0,0);}
.m93_c00140{transform:matrix(0.330299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330299,0.000000,0.000000,0.250000,0,0);}
.m1f_c00140{transform:matrix(0.331442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331442,0.000000,0.000000,0.250000,0,0);}
.m89_c00140{transform:matrix(0.331496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331496,0.000000,0.000000,0.250000,0,0);}
.m64_c00140{transform:matrix(0.331691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331691,0.000000,0.000000,0.250000,0,0);}
.m6_c00140{transform:matrix(0.333520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333520,0.000000,0.000000,0.250000,0,0);}
.m7f_c00140{transform:matrix(0.333556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333556,0.000000,0.000000,0.250000,0,0);}
.mad_c00140{transform:matrix(0.333799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333799,0.000000,0.000000,0.250000,0,0);}
.mac_c00140{transform:matrix(0.334121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334121,0.000000,0.000000,0.250000,0,0);}
.m4a_c00140{transform:matrix(0.335157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335157,0.000000,0.000000,0.250000,0,0);}
.m74_c00140{transform:matrix(0.337161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337161,0.000000,0.000000,0.250000,0,0);}
.m90_c00140{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.ma7_c00140{transform:matrix(0.340068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340068,0.000000,0.000000,0.250000,0,0);}
.m75_c00140{transform:matrix(0.342244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342244,0.000000,0.000000,0.250000,0,0);}
.m88_c00140{transform:matrix(0.345039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345039,0.000000,0.000000,0.250000,0,0);}
.m5a_c00140{transform:matrix(0.345117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345117,0.000000,0.000000,0.250000,0,0);}
.m9_c00140{transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);}
.m39_c00140{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m6f_c00140{transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);}
.m71_c00140{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m95_c00140{transform:matrix(0.355530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355530,0.000000,0.000000,0.250000,0,0);}
.m1b_c00140{transform:matrix(0.358842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358842,0.000000,0.000000,0.250000,0,0);}
.maf_c00140{transform:matrix(0.359950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359950,0.000000,0.000000,0.250000,0,0);}
.m32_c00140{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m67_c00140{transform:matrix(0.366520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366520,0.000000,0.000000,0.250000,0,0);}
.m12_c00140{transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);}
.m51_c00140{transform:matrix(0.373973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373973,0.000000,0.000000,0.250000,0,0);}
.m84_c00140{transform:matrix(0.374714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374714,0.000000,0.000000,0.250000,0,0);}
.m81_c00140{transform:matrix(0.432348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432348,0.000000,0.000000,0.250000,0,0);}
.v0_c00140{vertical-align:0.000000px;}
.lsf_c00140{letter-spacing:-2.744280px;}
.ls2_c00140{letter-spacing:0.000000px;}
.lsb_c00140{letter-spacing:0.619423px;}
.ls7_c00140{letter-spacing:1.301573px;}
.ls11_c00140{letter-spacing:2.132698px;}
.ls6_c00140{letter-spacing:2.507947px;}
.ls13_c00140{letter-spacing:2.673713px;}
.ls0_c00140{letter-spacing:2.979504px;}
.lse_c00140{letter-spacing:2.995186px;}
.lsa_c00140{letter-spacing:3.112798px;}
.lsc_c00140{letter-spacing:3.348022px;}
.ls12_c00140{letter-spacing:3.536201px;}
.ls5_c00140{letter-spacing:3.551882px;}
.ls8_c00140{letter-spacing:3.567564px;}
.ls4_c00140{letter-spacing:3.920400px;}
.ls3_c00140{letter-spacing:4.296610px;}
.ls1_c00140{letter-spacing:9.408960px;}
.ls10_c00140{letter-spacing:32.788998px;}
.lsd_c00140{letter-spacing:49.896198px;}
.ls9_c00140{letter-spacing:52.747398px;}
.sc__c00140{text-shadow:none;}
.sc0_c00140{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00140{-webkit-text-stroke:0px transparent;}
.sc0_c00140{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00140{word-spacing:-19.602000px;}
.ws1_c00140{word-spacing:0.000000px;}
._4_c00140{margin-left:-4.077216px;}
._a_c00140{margin-left:-2.665872px;}
._9_c00140{width:6.272640px;}
._8_c00140{width:7.919208px;}
._1_c00140{width:9.095328px;}
._b_c00140{width:10.506672px;}
._5_c00140{width:15.603588px;}
._7_c00140{width:18.033840px;}
._0_c00140{width:23.679216px;}
._2_c00140{width:34.107480px;}
._3_c00140{width:37.086984px;}
._c_c00140{width:39.596040px;}
._6_c00140{width:43.281216px;}
.fc0_c00140{color:transparent;}
.fs9_c00140{font-size:22.176000px;}
.fs7_c00140{font-size:25.146000px;}
.fs0_c00140{font-size:27.720000px;}
.fsd_c00140{font-size:31.680000px;}
.fs8_c00140{font-size:32.788998px;}
.fsb_c00140{font-size:33.660000px;}
.fs6_c00140{font-size:49.896198px;}
.fs4_c00140{font-size:52.747398px;}
.fsc_c00140{font-size:56.628000px;}
.fsa_c00140{font-size:77.022198px;}
.fs2_c00140{font-size:78.408000px;}
.fs5_c00140{font-size:83.160000px;}
.fs1_c00140{font-size:85.932198px;}
.fs3_c00140{font-size:88.308000px;}
.y0_c00140{bottom:0.000000px;}
.y21_c00140{bottom:26.998335px;}
.y1_c00140{bottom:76.500000px;}
.y20_c00140{bottom:149.956335px;}
.y1f_c00140{bottom:180.958185px;}
.y1e_c00140{bottom:214.816185px;}
.y1d_c00140{bottom:247.253535px;}
.y1c_c00140{bottom:280.398735px;}
.y1b_c00140{bottom:313.538985px;}
.y16_c00140{bottom:335.992185px;}
.y1a_c00140{bottom:352.386585px;}
.y19_c00140{bottom:369.498735px;}
.y17_c00140{bottom:376.621785px;}
.y18_c00140{bottom:378.760185px;}
.y2_c00140{bottom:398.010735px;}
.y15_c00140{bottom:409.771935px;}
.y14_c00140{bottom:441.847935px;}
.y13_c00140{bottom:473.918985px;}
.y12_c00140{bottom:506.356335px;}
.y11_c00140{bottom:538.432335px;}
.y10_c00140{bottom:571.221135px;}
.yf_c00140{bottom:603.648585px;}
.ye_c00140{bottom:635.729535px;}
.yd_c00140{bottom:648.916335px;}
.yc_c00140{bottom:659.603385px;}
.yb_c00140{bottom:668.161935px;}
.ya_c00140{bottom:731.957535px;}
.y9_c00140{bottom:764.028585px;}
.y8_c00140{bottom:796.460985px;}
.y7_c00140{bottom:828.185535px;}
.y6_c00140{bottom:860.974335px;}
.y5_c00140{bottom:893.406735px;}
.y4_c00140{bottom:926.195535px;}
.y3_c00140{bottom:1078.016985px;}
.ha_c00140{height:21.837473px;}
.hb_c00140{height:23.128875px;}
.h9_c00140{height:26.226492px;}
.h2_c00140{height:28.911094px;}
.hd_c00140{height:33.035449px;}
.hf_c00140{height:33.041250px;}
.h8_c00140{height:33.230868px;}
.h6_c00140{height:35.129767px;}
.he_c00140{height:59.061234px;}
.h4_c00140{height:76.953164px;}
.hc_c00140{height:80.331746px;}
.h7_c00140{height:81.616992px;}
.h3_c00140{height:84.337753px;}
.h5_c00140{height:86.669473px;}
.h1_c00140{height:1110.000000px;}
.h0_c00140{height:1263.000000px;}
.w1_c00140{width:733.500000px;}
.w0_c00140{width:892.500000px;}
.x0_c00140{left:0.000000px;}
.x2_c00140{left:45.524685px;}
.x58_c00140{left:72.635835px;}
.x3a_c00140{left:74.140635px;}
.x25_c00140{left:75.170235px;}
.x4_c00140{left:76.437435px;}
.x1_c00140{left:79.500000px;}
.x68_c00140{left:88.906485px;}
.x2b_c00140{left:97.608585px;}
.x3b_c00140{left:106.889835px;}
.x45_c00140{left:108.864885px;}
.x5_c00140{left:109.894485px;}
.x1c_c00140{left:119.705385px;}
.x55_c00140{left:120.937935px;}
.x33_c00140{left:129.649935px;}
.x52_c00140{left:130.976535px;}
.xd_c00140{left:141.821985px;}
.x69_c00140{left:143.752485px;}
.x26_c00140{left:152.880285px;}
.x51_c00140{left:154.464285px;}
.x6_c00140{left:175.189935px;}
.x53_c00140{left:176.199735px;}
.x1d_c00140{left:185.723535px;}
.x4c_c00140{left:186.738285px;}
.x2c_c00140{left:196.712535px;}
.x61_c00140{left:197.994585px;}
.x34_c00140{left:207.444135px;}
.x4d_c00140{left:208.874685px;}
.x7_c00140{left:219.581535px;}
.x15_c00140{left:220.749735px;}
.x62_c00140{left:229.308285px;}
.x2d_c00140{left:231.426885px;}
.x1e_c00140{left:243.178185px;}
.x16_c00140{left:253.172235px;}
.x63_c00140{left:254.246385px;}
.x27_c00140{left:263.775135px;}
.x42_c00140{left:265.215585px;}
.x31_c00140{left:275.971935px;}
.x6a_c00140{left:277.051035px;}
.x1f_c00140{left:285.802635px;}
.x5b_c00140{left:287.777685px;}
.x3c_c00140{left:289.619085px;}
.x46_c00140{left:297.558885px;}
.x35_c00140{left:298.835985px;}
.x2e_c00140{left:307.899435px;}
.x32_c00140{left:309.864585px;}
.x8_c00140{left:319.819035px;}
.x4e_c00140{left:331.258485px;}
.x47_c00140{left:332.307885px;}
.x5c_c00140{left:342.683085px;}
.x64_c00140{left:345.222435px;}
.x17_c00140{left:354.018585px;}
.x48_c00140{left:363.537435px;}
.x9_c00140{left:365.393685px;}
.xe_c00140{left:375.773835px;}
.x28_c00140{left:386.579685px;}
.x66_c00140{left:387.931035px;}
.x3d_c00140{left:398.078535px;}
.x65_c00140{left:408.087435px;}
.x20_c00140{left:409.844685px;}
.xf_c00140{left:420.714885px;}
.x5d_c00140{left:421.754385px;}
.x21_c00140{left:432.451335px;}
.x57_c00140{left:443.133435px;}
.x18_c00140{left:445.207485px;}
.x54_c00140{left:454.201635px;}
.x22_c00140{left:463.596735px;}
.xa_c00140{left:475.244085px;}
.x3e_c00140{left:476.288535px;}
.x29_c00140{left:486.104385px;}
.x5e_c00140{left:489.450585px;}
.x49_c00140{left:496.474635px;}
.x6b_c00140{left:498.504135px;}
.x23_c00140{left:509.438685px;}
.x5f_c00140{left:510.473235px;}
.xb_c00140{left:520.818735px;}
.x10_c00140{left:522.937335px;}
.x19_c00140{left:531.144435px;}
.x4f_c00140{left:532.579935px;}
.x4a_c00140{left:541.351335px;}
.x67_c00140{left:542.638335px;}
.x24_c00140{left:553.097685px;}
.x11_c00140{left:564.665835px;}
.x2f_c00140{left:575.253885px;}
.x43_c00140{left:577.199235px;}
.x36_c00140{left:586.049835px;}
.x1a_c00140{left:597.820935px;}
.x30_c00140{left:606.923985px;}
.x3f_c00140{left:608.527785px;}
.x37_c00140{left:618.744585px;}
.xc_c00140{left:620.566185px;}
.x4b_c00140{left:629.723685px;}
.x50_c00140{left:631.327485px;}
.x12_c00140{left:642.395685px;}
.x56_c00140{left:652.548135px;}
.x3_c00140{left:654.458835px;}
.x13_c00140{left:663.591585px;}
.x38_c00140{left:675.204285px;}
.x2a_c00140{left:676.461585px;}
.x44_c00140{left:686.401185px;}
.x5a_c00140{left:687.594135px;}
.x40_c00140{left:693.519285px;}
.x59_c00140{left:694.831035px;}
.x41_c00140{left:697.276335px;}
.x1b_c00140{left:698.548485px;}
.x39_c00140{left:699.810735px;}
.x60_c00140{left:708.656385px;}
.x14_c00140{left:719.704785px;}
@media print{
.v0_c00140{vertical-align:0.000000pt;}
.lsf_c00140{letter-spacing:-2.439360pt;}
.ls2_c00140{letter-spacing:0.000000pt;}
.lsb_c00140{letter-spacing:0.550598pt;}
.ls7_c00140{letter-spacing:1.156954pt;}
.ls11_c00140{letter-spacing:1.895731pt;}
.ls6_c00140{letter-spacing:2.229286pt;}
.ls13_c00140{letter-spacing:2.376634pt;}
.ls0_c00140{letter-spacing:2.648448pt;}
.lse_c00140{letter-spacing:2.662387pt;}
.lsa_c00140{letter-spacing:2.766931pt;}
.lsc_c00140{letter-spacing:2.976019pt;}
.ls12_c00140{letter-spacing:3.143290pt;}
.ls5_c00140{letter-spacing:3.157229pt;}
.ls8_c00140{letter-spacing:3.171168pt;}
.ls4_c00140{letter-spacing:3.484800pt;}
.ls3_c00140{letter-spacing:3.819209pt;}
.ls1_c00140{letter-spacing:8.363520pt;}
.ls10_c00140{letter-spacing:29.145776pt;}
.lsd_c00140{letter-spacing:44.352176pt;}
.ls9_c00140{letter-spacing:46.886576pt;}
.ws0_c00140{word-spacing:-17.424000pt;}
.ws1_c00140{word-spacing:0.000000pt;}
._4_c00140{margin-left:-3.624192pt;}
._a_c00140{margin-left:-2.369664pt;}
._9_c00140{width:5.575680pt;}
._8_c00140{width:7.039296pt;}
._1_c00140{width:8.084736pt;}
._b_c00140{width:9.339264pt;}
._5_c00140{width:13.869856pt;}
._7_c00140{width:16.030080pt;}
._0_c00140{width:21.048192pt;}
._2_c00140{width:30.317760pt;}
._3_c00140{width:32.966208pt;}
._c_c00140{width:35.196480pt;}
._6_c00140{width:38.472192pt;}
.fs9_c00140{font-size:19.712000pt;}
.fs7_c00140{font-size:22.352000pt;}
.fs0_c00140{font-size:24.640000pt;}
.fsd_c00140{font-size:28.160000pt;}
.fs8_c00140{font-size:29.145776pt;}
.fsb_c00140{font-size:29.920000pt;}
.fs6_c00140{font-size:44.352176pt;}
.fs4_c00140{font-size:46.886576pt;}
.fsc_c00140{font-size:50.336000pt;}
.fsa_c00140{font-size:68.464176pt;}
.fs2_c00140{font-size:69.696000pt;}
.fs5_c00140{font-size:73.920000pt;}
.fs1_c00140{font-size:76.384176pt;}
.fs3_c00140{font-size:78.496000pt;}
.y0_c00140{bottom:0.000000pt;}
.y21_c00140{bottom:23.998520pt;}
.y1_c00140{bottom:68.000000pt;}
.y20_c00140{bottom:133.294520pt;}
.y1f_c00140{bottom:160.851720pt;}
.y1e_c00140{bottom:190.947720pt;}
.y1d_c00140{bottom:219.780920pt;}
.y1c_c00140{bottom:249.243320pt;}
.y1b_c00140{bottom:278.701320pt;}
.y16_c00140{bottom:298.659720pt;}
.y1a_c00140{bottom:313.232520pt;}
.y19_c00140{bottom:328.443320pt;}
.y17_c00140{bottom:334.774920pt;}
.y18_c00140{bottom:336.675720pt;}
.y2_c00140{bottom:353.787320pt;}
.y15_c00140{bottom:364.241720pt;}
.y14_c00140{bottom:392.753720pt;}
.y13_c00140{bottom:421.261320pt;}
.y12_c00140{bottom:450.094520pt;}
.y11_c00140{bottom:478.606520pt;}
.y10_c00140{bottom:507.752120pt;}
.yf_c00140{bottom:536.576520pt;}
.ye_c00140{bottom:565.092920pt;}
.yd_c00140{bottom:576.814520pt;}
.yc_c00140{bottom:586.314120pt;}
.yb_c00140{bottom:593.921720pt;}
.ya_c00140{bottom:650.628920pt;}
.y9_c00140{bottom:679.136520pt;}
.y8_c00140{bottom:707.965320pt;}
.y7_c00140{bottom:736.164920pt;}
.y6_c00140{bottom:765.310520pt;}
.y5_c00140{bottom:794.139320pt;}
.y4_c00140{bottom:823.284920pt;}
.y3_c00140{bottom:958.237320pt;}
.ha_c00140{height:19.411087pt;}
.hb_c00140{height:20.559000pt;}
.h9_c00140{height:23.312438pt;}
.h2_c00140{height:25.698750pt;}
.hd_c00140{height:29.364844pt;}
.hf_c00140{height:29.370000pt;}
.h8_c00140{height:29.538549pt;}
.h6_c00140{height:31.226460pt;}
.he_c00140{height:52.498875pt;}
.h4_c00140{height:68.402813pt;}
.hc_c00140{height:71.405996pt;}
.h7_c00140{height:72.548438pt;}
.h3_c00140{height:74.966891pt;}
.h5_c00140{height:77.039531pt;}
.h1_c00140{height:986.666667pt;}
.h0_c00140{height:1122.666667pt;}
.w1_c00140{width:652.000000pt;}
.w0_c00140{width:793.333333pt;}
.x0_c00140{left:0.000000pt;}
.x2_c00140{left:40.466387pt;}
.x58_c00140{left:64.565187pt;}
.x3a_c00140{left:65.902787pt;}
.x25_c00140{left:66.817987pt;}
.x4_c00140{left:67.944387pt;}
.x1_c00140{left:70.666667pt;}
.x68_c00140{left:79.027987pt;}
.x2b_c00140{left:86.763187pt;}
.x3b_c00140{left:95.013187pt;}
.x45_c00140{left:96.768787pt;}
.x5_c00140{left:97.683987pt;}
.x1c_c00140{left:106.404787pt;}
.x55_c00140{left:107.500387pt;}
.x33_c00140{left:115.244387pt;}
.x52_c00140{left:116.423587pt;}
.xd_c00140{left:126.063987pt;}
.x69_c00140{left:127.779987pt;}
.x26_c00140{left:135.893587pt;}
.x51_c00140{left:137.301587pt;}
.x6_c00140{left:155.724387pt;}
.x53_c00140{left:156.621987pt;}
.x1d_c00140{left:165.087587pt;}
.x4c_c00140{left:165.989587pt;}
.x2c_c00140{left:174.855587pt;}
.x61_c00140{left:175.995187pt;}
.x34_c00140{left:184.394787pt;}
.x4d_c00140{left:185.666387pt;}
.x7_c00140{left:195.183587pt;}
.x15_c00140{left:196.221987pt;}
.x62_c00140{left:203.829587pt;}
.x2d_c00140{left:205.712787pt;}
.x1e_c00140{left:216.158387pt;}
.x16_c00140{left:225.041987pt;}
.x63_c00140{left:225.996787pt;}
.x27_c00140{left:234.466787pt;}
.x42_c00140{left:235.747187pt;}
.x31_c00140{left:245.308387pt;}
.x6a_c00140{left:246.267587pt;}
.x1f_c00140{left:254.046787pt;}
.x5b_c00140{left:255.802387pt;}
.x3c_c00140{left:257.439187pt;}
.x46_c00140{left:264.496787pt;}
.x35_c00140{left:265.631987pt;}
.x2e_c00140{left:273.688387pt;}
.x32_c00140{left:275.435187pt;}
.x8_c00140{left:284.283587pt;}
.x4e_c00140{left:294.451987pt;}
.x47_c00140{left:295.384787pt;}
.x5c_c00140{left:304.607187pt;}
.x64_c00140{left:306.864387pt;}
.x17_c00140{left:314.683187pt;}
.x48_c00140{left:323.144387pt;}
.x9_c00140{left:324.794387pt;}
.xe_c00140{left:334.021187pt;}
.x28_c00140{left:343.626387pt;}
.x66_c00140{left:344.827587pt;}
.x3d_c00140{left:353.847587pt;}
.x65_c00140{left:362.744387pt;}
.x20_c00140{left:364.306387pt;}
.xf_c00140{left:373.968787pt;}
.x5d_c00140{left:374.892787pt;}
.x21_c00140{left:384.401187pt;}
.x57_c00140{left:393.896387pt;}
.x18_c00140{left:395.739987pt;}
.x54_c00140{left:403.734787pt;}
.x22_c00140{left:412.085987pt;}
.xa_c00140{left:422.439187pt;}
.x3e_c00140{left:423.367587pt;}
.x29_c00140{left:432.092787pt;}
.x5e_c00140{left:435.067187pt;}
.x49_c00140{left:441.310787pt;}
.x6b_c00140{left:443.114787pt;}
.x23_c00140{left:452.834387pt;}
.x5f_c00140{left:453.753987pt;}
.xb_c00140{left:462.949987pt;}
.x10_c00140{left:464.833187pt;}
.x19_c00140{left:472.128387pt;}
.x4f_c00140{left:473.404387pt;}
.x4a_c00140{left:481.201187pt;}
.x67_c00140{left:482.345187pt;}
.x24_c00140{left:491.642387pt;}
.x11_c00140{left:501.925187pt;}
.x2f_c00140{left:511.336787pt;}
.x43_c00140{left:513.065987pt;}
.x36_c00140{left:520.933187pt;}
.x1a_c00140{left:531.396387pt;}
.x30_c00140{left:539.487987pt;}
.x3f_c00140{left:540.913587pt;}
.x37_c00140{left:549.995187pt;}
.xc_c00140{left:551.614387pt;}
.x4b_c00140{left:559.754387pt;}
.x50_c00140{left:561.179987pt;}
.x12_c00140{left:571.018387pt;}
.x56_c00140{left:580.042787pt;}
.x3_c00140{left:581.741187pt;}
.x13_c00140{left:589.859187pt;}
.x38_c00140{left:600.181587pt;}
.x2a_c00140{left:601.299187pt;}
.x44_c00140{left:610.134387pt;}
.x5a_c00140{left:611.194787pt;}
.x40_c00140{left:616.461587pt;}
.x59_c00140{left:617.627587pt;}
.x41_c00140{left:619.801187pt;}
.x1b_c00140{left:620.931987pt;}
.x39_c00140{left:622.053987pt;}
.x60_c00140{left:629.916787pt;}
.x14_c00140{left:639.737587pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_57ffaa09f73d540e3545d8b9.woff2')format("woff");}.ff1_c00141{font-family:ff1_c00141;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00141;src:url('chunks/assets/font_32072626aa18e522c9c3ae19.woff2')format("woff");}.ff2_c00141{font-family:ff2_c00141;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00141;src:url('chunks/assets/font_41c84e204074de604511fd0e.woff2')format("woff");}.ff3_c00141{font-family:ff3_c00141;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00141;src:url('chunks/assets/font_1a97bde3b569c25cbc1e53a4.woff2')format("woff");}.ff4_c00141{font-family:ff4_c00141;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mb0_c00141{transform:matrix(0.139889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139889,0.000000,0.000000,0.250000,0,0);}
.m4e_c00141{transform:matrix(0.184741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184741,0.000000,0.000000,0.250000,0,0);}
.m33_c00141{transform:matrix(0.203948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203948,0.000000,0.000000,0.250000,0,0);}
.m71_c00141{transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);}
.m45_c00141{transform:matrix(0.244047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244047,0.000000,0.000000,0.250000,0,0);}
.m3f_c00141{transform:matrix(0.248196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248196,0.000000,0.000000,0.250000,0,0);}
.m0_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);}
.m80_c00141{transform:matrix(0.250875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250875,0.000000,0.000000,0.250000,0,0);}
.m48_c00141{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.m1_c00141{transform:matrix(0.251939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251939,0.000000,0.000000,0.250000,0,0);}
.m68_c00141{transform:matrix(0.253100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253100,0.000000,0.000000,0.250000,0,0);}
.m21_c00141{transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);}
.m25_c00141{transform:matrix(0.254597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254597,0.000000,0.000000,0.250000,0,0);}
.m6a_c00141{transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);}
.m91_c00141{transform:matrix(0.257308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257308,0.000000,0.000000,0.250000,0,0);}
.m30_c00141{transform:matrix(0.257987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257987,0.000000,0.000000,0.250000,0,0);}
.m54_c00141{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.m53_c00141{transform:matrix(0.261904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261904,0.000000,0.000000,0.250000,0,0);}
.m13_c00141{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m49_c00141{transform:matrix(0.263305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263305,0.000000,0.000000,0.250000,0,0);}
.m90_c00141{transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);}
.m2c_c00141{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m26_c00141{transform:matrix(0.264304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264304,0.000000,0.000000,0.250000,0,0);}
.m1b_c00141{transform:matrix(0.264886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264886,0.000000,0.000000,0.250000,0,0);}
.m7b_c00141{transform:matrix(0.265602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265602,0.000000,0.000000,0.250000,0,0);}
.mb1_c00141{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m97_c00141{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.m3_c00141{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m99_c00141{transform:matrix(0.267925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267925,0.000000,0.000000,0.250000,0,0);}
.m60_c00141{transform:matrix(0.268278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268278,0.000000,0.000000,0.250000,0,0);}
.m35_c00141{transform:matrix(0.268911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268911,0.000000,0.000000,0.250000,0,0);}
.mb4_c00141{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m89_c00141{transform:matrix(0.271006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271006,0.000000,0.000000,0.250000,0,0);}
.m8d_c00141{transform:matrix(0.272050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272050,0.000000,0.000000,0.250000,0,0);}
.m88_c00141{transform:matrix(0.272153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272153,0.000000,0.000000,0.250000,0,0);}
.m5_c00141{transform:matrix(0.272544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272544,0.000000,0.000000,0.250000,0,0);}
.m10_c00141{transform:matrix(0.273113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273113,0.000000,0.000000,0.250000,0,0);}
.m47_c00141{transform:matrix(0.273635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273635,0.000000,0.000000,0.250000,0,0);}
.m84_c00141{transform:matrix(0.274070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274070,0.000000,0.000000,0.250000,0,0);}
.m3c_c00141{transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);}
.m70_c00141{transform:matrix(0.274708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274708,0.000000,0.000000,0.250000,0,0);}
.m66_c00141{transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);}
.m44_c00141{transform:matrix(0.275369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275369,0.000000,0.000000,0.250000,0,0);}
.m20_c00141{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.mab_c00141{transform:matrix(0.275570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275570,0.000000,0.000000,0.250000,0,0);}
.m1e_c00141{transform:matrix(0.276181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276181,0.000000,0.000000,0.250000,0,0);}
.m5d_c00141{transform:matrix(0.276684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276684,0.000000,0.000000,0.250000,0,0);}
.md_c00141{transform:matrix(0.277573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277573,0.000000,0.000000,0.250000,0,0);}
.m43_c00141{transform:matrix(0.279920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279920,0.000000,0.000000,0.250000,0,0);}
.m9b_c00141{transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);}
.m92_c00141{transform:matrix(0.280174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280174,0.000000,0.000000,0.250000,0,0);}
.m5b_c00141{transform:matrix(0.280224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280224,0.000000,0.000000,0.250000,0,0);}
.ma0_c00141{transform:matrix(0.280908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280908,0.000000,0.000000,0.250000,0,0);}
.m37_c00141{transform:matrix(0.281249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281249,0.000000,0.000000,0.250000,0,0);}
.m59_c00141{transform:matrix(0.281265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281265,0.000000,0.000000,0.250000,0,0);}
.m93_c00141{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.m9f_c00141{transform:matrix(0.281782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281782,0.000000,0.000000,0.250000,0,0);}
.m69_c00141{transform:matrix(0.282165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282165,0.000000,0.000000,0.250000,0,0);}
.m85_c00141{transform:matrix(0.282587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282587,0.000000,0.000000,0.250000,0,0);}
.m2f_c00141{transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);}
.m7f_c00141{transform:matrix(0.283519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283519,0.000000,0.000000,0.250000,0,0);}
.m19_c00141{transform:matrix(0.284216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284216,0.000000,0.000000,0.250000,0,0);}
.m67_c00141{transform:matrix(0.284391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284391,0.000000,0.000000,0.250000,0,0);}
.m42_c00141{transform:matrix(0.284937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284937,0.000000,0.000000,0.250000,0,0);}
.m95_c00141{transform:matrix(0.285507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285507,0.000000,0.000000,0.250000,0,0);}
.m3d_c00141{transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);}
.m98_c00141{transform:matrix(0.286218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286218,0.000000,0.000000,0.250000,0,0);}
.m18_c00141{transform:matrix(0.286381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286381,0.000000,0.000000,0.250000,0,0);}
.m34_c00141{transform:matrix(0.286509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286509,0.000000,0.000000,0.250000,0,0);}
.mac_c00141{transform:matrix(0.286698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286698,0.000000,0.000000,0.250000,0,0);}
.m29_c00141{transform:matrix(0.287191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287191,0.000000,0.000000,0.250000,0,0);}
.m3e_c00141{transform:matrix(0.287283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287283,0.000000,0.000000,0.250000,0,0);}
.m94_c00141{transform:matrix(0.287449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287449,0.000000,0.000000,0.250000,0,0);}
.m16_c00141{transform:matrix(0.288557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288557,0.000000,0.000000,0.250000,0,0);}
.m3b_c00141{transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);}
.mad_c00141{transform:matrix(0.289167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289167,0.000000,0.000000,0.250000,0,0);}
.m6c_c00141{transform:matrix(0.289464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289464,0.000000,0.000000,0.250000,0,0);}
.m7d_c00141{transform:matrix(0.289488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289488,0.000000,0.000000,0.250000,0,0);}
.m36_c00141{transform:matrix(0.289966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289966,0.000000,0.000000,0.250000,0,0);}
.m4b_c00141{transform:matrix(0.290067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290067,0.000000,0.000000,0.250000,0,0);}
.m40_c00141{transform:matrix(0.291185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291185,0.000000,0.000000,0.250000,0,0);}
.m1f_c00141{transform:matrix(0.291197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291197,0.000000,0.000000,0.250000,0,0);}
.m2e_c00141{transform:matrix(0.292652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292652,0.000000,0.000000,0.250000,0,0);}
.mb5_c00141{transform:matrix(0.292821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292821,0.000000,0.000000,0.250000,0,0);}
.m23_c00141{transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);}
.ma4_c00141{transform:matrix(0.294671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294671,0.000000,0.000000,0.250000,0,0);}
.m8e_c00141{transform:matrix(0.294807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294807,0.000000,0.000000,0.250000,0,0);}
.m76_c00141{transform:matrix(0.294898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294898,0.000000,0.000000,0.250000,0,0);}
.m58_c00141{transform:matrix(0.296138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296138,0.000000,0.000000,0.250000,0,0);}
.m61_c00141{transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);}
.m1d_c00141{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m38_c00141{transform:matrix(0.297276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297276,0.000000,0.000000,0.250000,0,0);}
.m8a_c00141{transform:matrix(0.297658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297658,0.000000,0.000000,0.250000,0,0);}
.m2d_c00141{transform:matrix(0.298235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298235,0.000000,0.000000,0.250000,0,0);}
.m4c_c00141{transform:matrix(0.298701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298701,0.000000,0.000000,0.250000,0,0);}
.m28_c00141{transform:matrix(0.300172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300172,0.000000,0.000000,0.250000,0,0);}
.m50_c00141{transform:matrix(0.300175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300175,0.000000,0.000000,0.250000,0,0);}
.m12_c00141{transform:matrix(0.300266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300266,0.000000,0.000000,0.250000,0,0);}
.mae_c00141{transform:matrix(0.300360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300360,0.000000,0.000000,0.250000,0,0);}
.m4a_c00141{transform:matrix(0.301074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301074,0.000000,0.000000,0.250000,0,0);}
.m6_c00141{transform:matrix(0.301137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301137,0.000000,0.000000,0.250000,0,0);}
.m79_c00141{transform:matrix(0.301408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301408,0.000000,0.000000,0.250000,0,0);}
.m31_c00141{transform:matrix(0.301547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301547,0.000000,0.000000,0.250000,0,0);}
.m73_c00141{transform:matrix(0.302463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302463,0.000000,0.000000,0.250000,0,0);}
.m63_c00141{transform:matrix(0.302718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302718,0.000000,0.000000,0.250000,0,0);}
.m5a_c00141{transform:matrix(0.303116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303116,0.000000,0.000000,0.250000,0,0);}
.ma8_c00141{transform:matrix(0.304827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304827,0.000000,0.000000,0.250000,0,0);}
.m8f_c00141{transform:matrix(0.304844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304844,0.000000,0.000000,0.250000,0,0);}
.m8_c00141{transform:matrix(0.305052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305052,0.000000,0.000000,0.250000,0,0);}
.m4f_c00141{transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);}
.m32_c00141{transform:matrix(0.306289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306289,0.000000,0.000000,0.250000,0,0);}
.m41_c00141{transform:matrix(0.307176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307176,0.000000,0.000000,0.250000,0,0);}
.m87_c00141{transform:matrix(0.307188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307188,0.000000,0.000000,0.250000,0,0);}
.m4d_c00141{transform:matrix(0.307732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307732,0.000000,0.000000,0.250000,0,0);}
.ma2_c00141{transform:matrix(0.308306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308306,0.000000,0.000000,0.250000,0,0);}
.m72_c00141{transform:matrix(0.308319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308319,0.000000,0.000000,0.250000,0,0);}
.m46_c00141{transform:matrix(0.308569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308569,0.000000,0.000000,0.250000,0,0);}
.mb_c00141{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m9a_c00141{transform:matrix(0.308600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308600,0.000000,0.000000,0.250000,0,0);}
.mf_c00141{transform:matrix(0.308915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308915,0.000000,0.000000,0.250000,0,0);}
.m6b_c00141{transform:matrix(0.308981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308981,0.000000,0.000000,0.250000,0,0);}
.m9c_c00141{transform:matrix(0.309443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309443,0.000000,0.000000,0.250000,0,0);}
.m22_c00141{transform:matrix(0.310645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310645,0.000000,0.000000,0.250000,0,0);}
.maf_c00141{transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);}
.m6e_c00141{transform:matrix(0.311612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311612,0.000000,0.000000,0.250000,0,0);}
.m74_c00141{transform:matrix(0.312510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312510,0.000000,0.000000,0.250000,0,0);}
.m4_c00141{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.m11_c00141{transform:matrix(0.312653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312653,0.000000,0.000000,0.250000,0,0);}
.mb3_c00141{transform:matrix(0.313671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313671,0.000000,0.000000,0.250000,0,0);}
.m39_c00141{transform:matrix(0.313839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313839,0.000000,0.000000,0.250000,0,0);}
.m64_c00141{transform:matrix(0.314107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314107,0.000000,0.000000,0.250000,0,0);}
.maa_c00141{transform:matrix(0.314631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314631,0.000000,0.000000,0.250000,0,0);}
.ma6_c00141{transform:matrix(0.314941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314941,0.000000,0.000000,0.250000,0,0);}
.m77_c00141{transform:matrix(0.315917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315917,0.000000,0.000000,0.250000,0,0);}
.m78_c00141{transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);}
.m55_c00141{transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);}
.m83_c00141{transform:matrix(0.317165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317165,0.000000,0.000000,0.250000,0,0);}
.m7a_c00141{transform:matrix(0.317270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317270,0.000000,0.000000,0.250000,0,0);}
.m7_c00141{transform:matrix(0.317427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317427,0.000000,0.000000,0.250000,0,0);}
.m27_c00141{transform:matrix(0.317599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317599,0.000000,0.000000,0.250000,0,0);}
.m81_c00141{transform:matrix(0.318082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318082,0.000000,0.000000,0.250000,0,0);}
.ma9_c00141{transform:matrix(0.319067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319067,0.000000,0.000000,0.250000,0,0);}
.m5e_c00141{transform:matrix(0.319177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319177,0.000000,0.000000,0.250000,0,0);}
.m51_c00141{transform:matrix(0.319609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319609,0.000000,0.000000,0.250000,0,0);}
.m65_c00141{transform:matrix(0.319696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319696,0.000000,0.000000,0.250000,0,0);}
.m9e_c00141{transform:matrix(0.320597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320597,0.000000,0.000000,0.250000,0,0);}
.ma_c00141{transform:matrix(0.321025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321025,0.000000,0.000000,0.250000,0,0);}
.m8b_c00141{transform:matrix(0.321107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321107,0.000000,0.000000,0.250000,0,0);}
.m2b_c00141{transform:matrix(0.322508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322508,0.000000,0.000000,0.250000,0,0);}
.m8c_c00141{transform:matrix(0.322527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322527,0.000000,0.000000,0.250000,0,0);}
.m6d_c00141{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.m86_c00141{transform:matrix(0.324528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324528,0.000000,0.000000,0.250000,0,0);}
.m24_c00141{transform:matrix(0.325213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325213,0.000000,0.000000,0.250000,0,0);}
.m15_c00141{transform:matrix(0.326627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326627,0.000000,0.000000,0.250000,0,0);}
.m82_c00141{transform:matrix(0.328818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328818,0.000000,0.000000,0.250000,0,0);}
.ma3_c00141{transform:matrix(0.328833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328833,0.000000,0.000000,0.250000,0,0);}
.mc_c00141{transform:matrix(0.329886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329886,0.000000,0.000000,0.250000,0,0);}
.mb6_c00141{transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);}
.ma7_c00141{transform:matrix(0.332674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332674,0.000000,0.000000,0.250000,0,0);}
.mb2_c00141{transform:matrix(0.335263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335263,0.000000,0.000000,0.250000,0,0);}
.m5f_c00141{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);}
.m56_c00141{transform:matrix(0.337061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337061,0.000000,0.000000,0.250000,0,0);}
.m7c_c00141{transform:matrix(0.337080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337080,0.000000,0.000000,0.250000,0,0);}
.ma5_c00141{transform:matrix(0.337511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337511,0.000000,0.000000,0.250000,0,0);}
.m62_c00141{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m96_c00141{transform:matrix(0.339883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339883,0.000000,0.000000,0.250000,0,0);}
.m6f_c00141{transform:matrix(0.342633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342633,0.000000,0.000000,0.250000,0,0);}
.m17_c00141{transform:matrix(0.342985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342985,0.000000,0.000000,0.250000,0,0);}
.m7e_c00141{transform:matrix(0.343905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343905,0.000000,0.000000,0.250000,0,0);}
.me_c00141{transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);}
.m2a_c00141{transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);}
.ma1_c00141{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m5c_c00141{transform:matrix(0.350711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350711,0.000000,0.000000,0.250000,0,0);}
.mb7_c00141{transform:matrix(0.352963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352963,0.000000,0.000000,0.250000,0,0);}
.m14_c00141{transform:matrix(0.353917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353917,0.000000,0.000000,0.250000,0,0);}
.m52_c00141{transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);}
.m9_c00141{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m9d_c00141{transform:matrix(0.356751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356751,0.000000,0.000000,0.250000,0,0);}
.m75_c00141{transform:matrix(0.359183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359183,0.000000,0.000000,0.250000,0,0);}
.m57_c00141{transform:matrix(0.359212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359212,0.000000,0.000000,0.250000,0,0);}
.m3a_c00141{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m1a_c00141{transform:matrix(0.361926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361926,0.000000,0.000000,0.250000,0,0);}
.m2_c00141{transform:matrix(0.362348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362348,0.000000,0.000000,0.250000,0,0);}
.m1c_c00141{transform:matrix(0.404579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404579,0.000000,0.000000,0.250000,0,0);}
.v0_c00141{vertical-align:0.000000px;}
.v1_c00141{vertical-align:12.830400px;}
.ls7_c00141{letter-spacing:-2.744280px;}
.ls4_c00141{letter-spacing:-2.493374px;}
.ls5_c00141{letter-spacing:-1.599523px;}
.ls8_c00141{letter-spacing:-1.427026px;}
.ls1_c00141{letter-spacing:0.000000px;}
.lsb_c00141{letter-spacing:1.019304px;}
.lsc_c00141{letter-spacing:2.736439px;}
.ls0_c00141{letter-spacing:3.011402px;}
.lse_c00141{letter-spacing:3.112798px;}
.lsa_c00141{letter-spacing:3.512678px;}
.lsf_c00141{letter-spacing:3.603610px;}
.ls3_c00141{letter-spacing:3.920400px;}
.ls2_c00141{letter-spacing:4.296610px;}
.lsd_c00141{letter-spacing:4.474810px;}
.ls9_c00141{letter-spacing:51.321798px;}
.ls6_c00141{letter-spacing:54.172998px;}
.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;}
}
.ws2_c00141{word-spacing:-22.338439px;}
.ws1_c00141{word-spacing:-19.602000px;}
.ws0_c00141{word-spacing:-17.108626px;}
.ws3_c00141{word-spacing:0.000000px;}
._8_c00141{margin-left:-3.355466px;}
._0_c00141{width:4.500619px;}
._5_c00141{width:6.272640px;}
._6_c00141{width:8.154828px;}
._2_c00141{width:9.487368px;}
._b_c00141{width:10.585080px;}
._a_c00141{width:19.087141px;}
._3_c00141{width:20.855736px;}
._1_c00141{width:22.267872px;}
._7_c00141{width:26.031456px;}
._9_c00141{width:29.559816px;}
._4_c00141{width:37.635840px;}
._c_c00141{width:210.479544px;}
.fc0_c00141{color:transparent;}
.fse_c00141{font-size:17.424000px;}
.fs1_c00141{font-size:22.176000px;}
.fs4_c00141{font-size:22.374000px;}
.fs3_c00141{font-size:27.720000px;}
.fsf_c00141{font-size:29.700000px;}
.fs0_c00141{font-size:34.056198px;}
.fsa_c00141{font-size:38.808000px;}
.fs11_c00141{font-size:39.600000px;}
.fs10_c00141{font-size:44.352000px;}
.fs9_c00141{font-size:46.332000px;}
.fs7_c00141{font-size:51.321798px;}
.fs6_c00141{font-size:54.172998px;}
.fsd_c00141{font-size:68.112198px;}
.fsb_c00141{font-size:72.072198px;}
.fsc_c00141{font-size:77.814000px;}
.fs5_c00141{font-size:78.408000px;}
.fs2_c00141{font-size:85.932198px;}
.fs8_c00141{font-size:89.496198px;}
.y0_c00141{bottom:0.000000px;}
.y27_c00141{bottom:20.939535px;}
.y26_c00141{bottom:22.365135px;}
.y25_c00141{bottom:25.216335px;}
.y24_c00141{bottom:48.020985px;}
.y1_c00141{bottom:76.500000px;}
.y23_c00141{bottom:143.541135px;}
.y22_c00141{bottom:174.899385px;}
.y20_c00141{bottom:209.113785px;}
.y21_c00141{bottom:221.592735px;}
.y1f_c00141{bottom:241.907535px;}
.y1e_c00141{bottom:275.409135px;}
.y3_c00141{bottom:299.287935px;}
.y1d_c00141{bottom:307.485135px;}
.y1c_c00141{bottom:322.805385px;}
.y1b_c00141{bottom:340.273935px;}
.y1a_c00141{bottom:351.673785px;}
.y19_c00141{bottom:380.903535px;}
.y18_c00141{bottom:440.422335px;}
.y17_c00141{bottom:465.013935px;}
.y16_c00141{bottom:474.636735px;}
.y15_c00141{bottom:506.712735px;}
.y14_c00141{bottom:538.783785px;}
.y13_c00141{bottom:570.864735px;}
.y12_c00141{bottom:603.653535px;}
.y11_c00141{bottom:635.724585px;}
.y10_c00141{bottom:668.156985px;}
.yf_c00141{bottom:699.881535px;}
.ye_c00141{bottom:760.108185px;}
.yd_c00141{bottom:765.459135px;}
.yc_c00141{bottom:798.955785px;}
.yb_c00141{bottom:831.388185px;}
.y2_c00141{bottom:860.617935px;}
.ya_c00141{bottom:863.469135px;}
.y9_c00141{bottom:896.965785px;}
.y8_c00141{bottom:929.754585px;}
.y7_c00141{bottom:1039.525785px;}
.y6_c00141{bottom:1059.129765px;}
.y5_c00141{bottom:1072.670985px;}
.y4_c00141{bottom:1079.442585px;}
.hf_c00141{height:17.100703px;}
.h6_c00141{height:21.958857px;}
.h3_c00141{height:23.128875px;}
.h5_c00141{height:28.911094px;}
.h10_c00141{height:30.976172px;}
.h9_c00141{height:34.180317px;}
.h2_c00141{height:35.519550px;}
.h8_c00141{height:36.079217px;}
.hc_c00141{height:40.475531px;}
.h12_c00141{height:41.301563px;}
.h11_c00141{height:46.257750px;}
.hb_c00141{height:48.322828px;}
.he_c00141{height:71.038894px;}
.hd_c00141{height:72.635262px;}
.h7_c00141{height:76.953164px;}
.h4_c00141{height:84.337753px;}
.ha_c00141{height:87.835624px;}
.h1_c00141{height:1110.000000px;}
.h0_c00141{height:1263.000000px;}
.w1_c00141{width:733.500000px;}
.w0_c00141{width:892.500000px;}
.x0_c00141{left:0.000000px;}
.x2_c00141{left:18.339285px;}
.x6b_c00141{left:59.137185px;}
.x3_c00141{left:60.161835px;}
.x8_c00141{left:77.011635px;}
.x6c_c00141{left:78.457035px;}
.x1_c00141{left:79.500000px;}
.x58_c00141{left:89.906385px;}
.x4c_c00141{left:100.182585px;}
.x40_c00141{left:109.434135px;}
.x1e_c00141{left:110.646885px;}
.x3a_c00141{left:111.706185px;}
.x9_c00141{left:120.982485px;}
.x5e_c00141{left:122.046735px;}
.x33_c00141{left:131.837835px;}
.x4d_c00141{left:133.075335px;}
.x44_c00141{left:134.674185px;}
.x29_c00141{left:141.089385px;}
.x1f_c00141{left:142.163535px;}
.x16_c00141{left:143.752485px;}
.x6e_c00141{left:145.930485px;}
.xa_c00141{left:154.474185px;}
.x6f_c00141{left:156.919485px;}
.x3b_c00141{left:165.893835px;}
.x66_c00141{left:166.992735px;}
.x2a_c00141{left:175.358235px;}
.x34_c00141{left:176.457135px;}
.x4e_c00141{left:177.650085px;}
.x4f_c00141{left:188.500485px;}
.xb_c00141{left:198.197535px;}
.x45_c00141{left:199.390485px;}
.x5f_c00141{left:200.806185px;}
.x73_c00141{left:208.147035px;}
.x2b_c00141{left:209.726085px;}
.x20_c00141{left:210.775485px;}
.x70_c00141{left:212.210985px;}
.xc_c00141{left:220.937835px;}
.x60_c00141{left:221.972385px;}
.x74_c00141{left:223.962285px;}
.x17_c00141{left:232.055535px;}
.x65_c00141{left:233.238585px;}
.x46_c00141{left:242.717835px;}
.x35_c00141{left:244.623585px;}
.x61_c00141{left:254.795835px;}
.x67_c00141{left:256.300635px;}
.xd_c00141{left:265.982835px;}
.x6d_c00141{left:269.606235px;}
.x5_c00141{left:271.838685px;}
.x36_c00141{left:277.783635px;}
.x69_c00141{left:278.833035px;}
.xe_c00141{left:289.148835px;}
.x75_c00141{left:290.955585px;}
.x2e_c00141{left:297.603435px;}
.x68_c00141{left:300.484335px;}
.x59_c00141{left:303.033585px;}
.x18_c00141{left:310.592235px;}
.x21_c00141{left:321.205035px;}
.x47_c00141{left:322.694985px;}
.xf_c00141{left:332.644485px;}
.x50_c00141{left:333.723585px;}
.x2f_c00141{left:342.821685px;}
.x19_c00141{left:344.123535px;}
.x22_c00141{left:346.019385px;}
.x23_c00141{left:355.364985px;}
.x62_c00141{left:356.528235px;}
.x10_c00141{left:366.551985px;}
.x1a_c00141{left:377.550885px;}
.x71_c00141{left:378.664635px;}
.x24_c00141{left:387.728085px;}
.x55_c00141{left:389.980335px;}
.x51_c00141{left:399.494235px;}
.x11_c00141{left:410.720835px;}
.x72_c00141{left:411.898935px;}
.x25_c00141{left:421.798935px;}
.x48_c00141{left:423.556185px;}
.x26_c00141{left:433.198785px;}
.x3c_c00141{left:444.192735px;}
.x5a_c00141{left:454.736235px;}
.x6_c00141{left:456.100455px;}
.x2c_c00141{left:465.428235px;}
.x5b_c00141{left:467.343885px;}
.x1b_c00141{left:477.026085px;}
.x3d_c00141{left:478.060635px;}
.x41_c00141{left:488.599185px;}
.x76_c00141{left:489.831735px;}
.x64_c00141{left:494.613435px;}
.x12_c00141{left:499.093185px;}
.x1c_c00141{left:500.117835px;}
.x32_c00141{left:502.454235px;}
.x30_c00141{left:510.884085px;}
.x49_c00141{left:511.943385px;}
.x77_c00141{left:521.729535px;}
.x56_c00141{left:522.962085px;}
.x2d_c00141{left:534.010485px;}
.x13_c00141{left:544.009485px;}
.x52_c00141{left:545.138085px;}
.x3e_c00141{left:555.468735px;}
.x4a_c00141{left:556.483485px;}
.x6a_c00141{left:567.556635px;}
.x27_c00141{left:576.550785px;}
.x53_c00141{left:578.545635px;}
.x3f_c00141{left:587.470485px;}
.x4b_c00141{left:588.891135px;}
.x63_c00141{left:598.405035px;}
.x42_c00141{left:599.627685px;}
.x28_c00141{left:610.072185px;}
.x43_c00141{left:619.789035px;}
.x14_c00141{left:621.353235px;}
.x37_c00141{left:622.407585px;}
.x1d_c00141{left:630.837435px;}
.x78_c00141{left:636.727935px;}
.x5c_c00141{left:643.702485px;}
.x38_c00141{left:652.934235px;}
.x4_c00141{left:654.815235px;}
.x54_c00141{left:655.904235px;}
.x31_c00141{left:665.418135px;}
.x15_c00141{left:666.541785px;}
.x57_c00141{left:678.302985px;}
.x39_c00141{left:688.000035px;}
.x7_c00141{left:695.618085px;}
.x5d_c00141{left:710.794785px;}
@media print{
.v0_c00141{vertical-align:0.000000pt;}
.v1_c00141{vertical-align:11.404800pt;}
.ls7_c00141{letter-spacing:-2.439360pt;}
.ls4_c00141{letter-spacing:-2.216333pt;}
.ls5_c00141{letter-spacing:-1.421798pt;}
.ls8_c00141{letter-spacing:-1.268467pt;}
.ls1_c00141{letter-spacing:0.000000pt;}
.lsb_c00141{letter-spacing:0.906048pt;}
.lsc_c00141{letter-spacing:2.432390pt;}
.ls0_c00141{letter-spacing:2.676802pt;}
.lse_c00141{letter-spacing:2.766931pt;}
.lsa_c00141{letter-spacing:3.122381pt;}
.lsf_c00141{letter-spacing:3.203209pt;}
.ls3_c00141{letter-spacing:3.484800pt;}
.ls2_c00141{letter-spacing:3.819209pt;}
.lsd_c00141{letter-spacing:3.977609pt;}
.ls9_c00141{letter-spacing:45.619376pt;}
.ls6_c00141{letter-spacing:48.153776pt;}
.ws2_c00141{word-spacing:-19.856390pt;}
.ws1_c00141{word-spacing:-17.424000pt;}
.ws0_c00141{word-spacing:-15.207667pt;}
.ws3_c00141{word-spacing:0.000000pt;}
._8_c00141{margin-left:-2.982637pt;}
._0_c00141{width:4.000550pt;}
._5_c00141{width:5.575680pt;}
._6_c00141{width:7.248736pt;}
._2_c00141{width:8.433216pt;}
._b_c00141{width:9.408960pt;}
._a_c00141{width:16.966347pt;}
._3_c00141{width:18.538432pt;}
._1_c00141{width:19.793664pt;}
._7_c00141{width:23.139072pt;}
._9_c00141{width:26.275392pt;}
._4_c00141{width:33.454080pt;}
._c_c00141{width:187.092928pt;}
.fse_c00141{font-size:15.488000pt;}
.fs1_c00141{font-size:19.712000pt;}
.fs4_c00141{font-size:19.888000pt;}
.fs3_c00141{font-size:24.640000pt;}
.fsf_c00141{font-size:26.400000pt;}
.fs0_c00141{font-size:30.272176pt;}
.fsa_c00141{font-size:34.496000pt;}
.fs11_c00141{font-size:35.200000pt;}
.fs10_c00141{font-size:39.424000pt;}
.fs9_c00141{font-size:41.184000pt;}
.fs7_c00141{font-size:45.619376pt;}
.fs6_c00141{font-size:48.153776pt;}
.fsd_c00141{font-size:60.544176pt;}
.fsb_c00141{font-size:64.064176pt;}
.fsc_c00141{font-size:69.168000pt;}
.fs5_c00141{font-size:69.696000pt;}
.fs2_c00141{font-size:76.384176pt;}
.fs8_c00141{font-size:79.552176pt;}
.y0_c00141{bottom:0.000000pt;}
.y27_c00141{bottom:18.612920pt;}
.y26_c00141{bottom:19.880120pt;}
.y25_c00141{bottom:22.414520pt;}
.y24_c00141{bottom:42.685320pt;}
.y1_c00141{bottom:68.000000pt;}
.y23_c00141{bottom:127.592120pt;}
.y22_c00141{bottom:155.466120pt;}
.y20_c00141{bottom:185.878920pt;}
.y21_c00141{bottom:196.971320pt;}
.y1f_c00141{bottom:215.028920pt;}
.y1e_c00141{bottom:244.808120pt;}
.y3_c00141{bottom:266.033720pt;}
.y1d_c00141{bottom:273.320120pt;}
.y1c_c00141{bottom:286.938120pt;}
.y1b_c00141{bottom:302.465720pt;}
.y1a_c00141{bottom:312.598920pt;}
.y19_c00141{bottom:338.580920pt;}
.y18_c00141{bottom:391.486520pt;}
.y17_c00141{bottom:413.345720pt;}
.y16_c00141{bottom:421.899320pt;}
.y15_c00141{bottom:450.411320pt;}
.y14_c00141{bottom:478.918920pt;}
.y13_c00141{bottom:507.435320pt;}
.y12_c00141{bottom:536.580920pt;}
.y11_c00141{bottom:565.088520pt;}
.y10_c00141{bottom:593.917320pt;}
.yf_c00141{bottom:622.116920pt;}
.ye_c00141{bottom:675.651720pt;}
.yd_c00141{bottom:680.408120pt;}
.yc_c00141{bottom:710.182920pt;}
.yb_c00141{bottom:739.011720pt;}
.y2_c00141{bottom:764.993720pt;}
.ya_c00141{bottom:767.528120pt;}
.y9_c00141{bottom:797.302920pt;}
.y8_c00141{bottom:826.448520pt;}
.y7_c00141{bottom:924.022920pt;}
.y6_c00141{bottom:941.448680pt;}
.y5_c00141{bottom:953.485320pt;}
.y4_c00141{bottom:959.504520pt;}
.hf_c00141{height:15.200625pt;}
.h6_c00141{height:19.518984pt;}
.h3_c00141{height:20.559000pt;}
.h5_c00141{height:25.698750pt;}
.h10_c00141{height:27.534375pt;}
.h9_c00141{height:30.382504pt;}
.h2_c00141{height:31.572934pt;}
.h8_c00141{height:32.070415pt;}
.hc_c00141{height:35.978250pt;}
.h12_c00141{height:36.712500pt;}
.h11_c00141{height:41.118000pt;}
.hb_c00141{height:42.953625pt;}
.he_c00141{height:63.145684pt;}
.hd_c00141{height:64.564677pt;}
.h7_c00141{height:68.402813pt;}
.h4_c00141{height:74.966891pt;}
.ha_c00141{height:78.076110pt;}
.h1_c00141{height:986.666667pt;}
.h0_c00141{height:1122.666667pt;}
.w1_c00141{width:652.000000pt;}
.w0_c00141{width:793.333333pt;}
.x0_c00141{left:0.000000pt;}
.x2_c00141{left:16.301587pt;}
.x6b_c00141{left:52.566387pt;}
.x3_c00141{left:53.477187pt;}
.x8_c00141{left:68.454787pt;}
.x6c_c00141{left:69.739587pt;}
.x1_c00141{left:70.666667pt;}
.x58_c00141{left:79.916787pt;}
.x4c_c00141{left:89.051187pt;}
.x40_c00141{left:97.274787pt;}
.x1e_c00141{left:98.352787pt;}
.x3a_c00141{left:99.294387pt;}
.x9_c00141{left:107.539987pt;}
.x5e_c00141{left:108.485987pt;}
.x33_c00141{left:117.189187pt;}
.x4d_c00141{left:118.289187pt;}
.x44_c00141{left:119.710387pt;}
.x29_c00141{left:125.412787pt;}
.x1f_c00141{left:126.367587pt;}
.x16_c00141{left:127.779987pt;}
.x6e_c00141{left:129.715987pt;}
.xa_c00141{left:137.310387pt;}
.x6f_c00141{left:139.483987pt;}
.x3b_c00141{left:147.461187pt;}
.x66_c00141{left:148.437987pt;}
.x2a_c00141{left:155.873987pt;}
.x34_c00141{left:156.850787pt;}
.x4e_c00141{left:157.911187pt;}
.x4f_c00141{left:167.555987pt;}
.xb_c00141{left:176.175587pt;}
.x45_c00141{left:177.235987pt;}
.x5f_c00141{left:178.494387pt;}
.x73_c00141{left:185.019587pt;}
.x2b_c00141{left:186.423187pt;}
.x20_c00141{left:187.355987pt;}
.x70_c00141{left:188.631987pt;}
.xc_c00141{left:196.389187pt;}
.x60_c00141{left:197.308787pt;}
.x74_c00141{left:199.077587pt;}
.x17_c00141{left:206.271587pt;}
.x65_c00141{left:207.323187pt;}
.x46_c00141{left:215.749187pt;}
.x35_c00141{left:217.443187pt;}
.x61_c00141{left:226.485187pt;}
.x67_c00141{left:227.822787pt;}
.xd_c00141{left:236.429187pt;}
.x6d_c00141{left:239.649987pt;}
.x5_c00141{left:241.634387pt;}
.x36_c00141{left:246.918787pt;}
.x69_c00141{left:247.851587pt;}
.xe_c00141{left:257.021187pt;}
.x75_c00141{left:258.627187pt;}
.x2e_c00141{left:264.536387pt;}
.x68_c00141{left:267.097187pt;}
.x59_c00141{left:269.363187pt;}
.x18_c00141{left:276.081987pt;}
.x21_c00141{left:285.515587pt;}
.x47_c00141{left:286.839987pt;}
.xf_c00141{left:295.683987pt;}
.x50_c00141{left:296.643187pt;}
.x2f_c00141{left:304.730387pt;}
.x19_c00141{left:305.887587pt;}
.x22_c00141{left:307.572787pt;}
.x23_c00141{left:315.879987pt;}
.x62_c00141{left:316.913987pt;}
.x10_c00141{left:325.823987pt;}
.x1a_c00141{left:335.600787pt;}
.x71_c00141{left:336.590787pt;}
.x24_c00141{left:344.647187pt;}
.x55_c00141{left:346.649187pt;}
.x51_c00141{left:355.105987pt;}
.x11_c00141{left:365.085187pt;}
.x72_c00141{left:366.132387pt;}
.x25_c00141{left:374.932387pt;}
.x48_c00141{left:376.494387pt;}
.x26_c00141{left:385.065587pt;}
.x3c_c00141{left:394.837987pt;}
.x5a_c00141{left:404.209987pt;}
.x6_c00141{left:405.422627pt;}
.x2c_c00141{left:413.713987pt;}
.x5b_c00141{left:415.416787pt;}
.x1b_c00141{left:424.023187pt;}
.x3d_c00141{left:424.942787pt;}
.x41_c00141{left:434.310387pt;}
.x76_c00141{left:435.405987pt;}
.x64_c00141{left:439.656387pt;}
.x12_c00141{left:443.638387pt;}
.x1c_c00141{left:444.549187pt;}
.x32_c00141{left:446.625987pt;}
.x30_c00141{left:454.119187pt;}
.x49_c00141{left:455.060787pt;}
.x77_c00141{left:463.759587pt;}
.x56_c00141{left:464.855187pt;}
.x2d_c00141{left:474.675987pt;}
.x13_c00141{left:483.563987pt;}
.x52_c00141{left:484.567187pt;}
.x3e_c00141{left:493.749987pt;}
.x4a_c00141{left:494.651987pt;}
.x6a_c00141{left:504.494787pt;}
.x27_c00141{left:512.489587pt;}
.x53_c00141{left:514.262787pt;}
.x3f_c00141{left:522.195987pt;}
.x4b_c00141{left:523.458787pt;}
.x63_c00141{left:531.915587pt;}
.x42_c00141{left:533.002387pt;}
.x28_c00141{left:542.286387pt;}
.x43_c00141{left:550.923587pt;}
.x14_c00141{left:552.313987pt;}
.x37_c00141{left:553.251187pt;}
.x1d_c00141{left:560.744387pt;}
.x78_c00141{left:565.980387pt;}
.x5c_c00141{left:572.179987pt;}
.x38_c00141{left:580.385987pt;}
.x4_c00141{left:582.057987pt;}
.x54_c00141{left:583.025987pt;}
.x31_c00141{left:591.482787pt;}
.x15_c00141{left:592.481587pt;}
.x57_c00141{left:602.935987pt;}
.x39_c00141{left:611.555587pt;}
.x7_c00141{left:618.327187pt;}
.x5d_c00141{left:631.817587pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2806e681c429d0a908ba042a.woff2')format("woff");}.ff1_c00142{font-family:ff1_c00142;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00142;src:url('chunks/assets/font_9e4ab9fd9398537d478f5300.woff2')format("woff");}.ff2_c00142{font-family:ff2_c00142;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00142;src:url('chunks/assets/font_426177118eb220137ec9b5e5.woff2')format("woff");}.ff3_c00142{font-family:ff3_c00142;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00142;src:url('chunks/assets/font_e9941499c9eff0aa61100b8a.woff2')format("woff");}.ff4_c00142{font-family:ff4_c00142;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00142;src:url('chunks/assets/font_2b0b0f35e328bfc3236617c4.woff2')format("woff");}.ff5_c00142{font-family:ff5_c00142;line-height:0.666000;font-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_c00142{transform:matrix(0.171977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171977,0.000000,0.000000,0.250000,0,0);}
.m3f_c00142{transform:matrix(0.203704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203704,0.000000,0.000000,0.250000,0,0);}
.m7_c00142{transform:matrix(0.212958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212958,0.000000,0.000000,0.250000,0,0);}
.m34_c00142{transform:matrix(0.222600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222600,0.000000,0.000000,0.250000,0,0);}
.m2d_c00142{transform:matrix(0.249994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249994,0.000000,0.000000,0.250000,0,0);}
.m0_c00142{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m33_c00142{transform:matrix(0.251160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251160,0.000000,0.000000,0.250000,0,0);}
.m4a_c00142{transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);}
.m53_c00142{transform:matrix(0.254648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254648,0.000000,0.000000,0.250000,0,0);}
.me_c00142{transform:matrix(0.258593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258593,0.000000,0.000000,0.250000,0,0);}
.m19_c00142{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m4e_c00142{transform:matrix(0.259163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259163,0.000000,0.000000,0.250000,0,0);}
.m21_c00142{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m49_c00142{transform:matrix(0.261792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261792,0.000000,0.000000,0.250000,0,0);}
.m20_c00142{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m14_c00142{transform:matrix(0.263850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263850,0.000000,0.000000,0.250000,0,0);}
.m1d_c00142{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m4f_c00142{transform:matrix(0.264047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264047,0.000000,0.000000,0.250000,0,0);}
.m44_c00142{transform:matrix(0.264489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264489,0.000000,0.000000,0.250000,0,0);}
.m1c_c00142{transform:matrix(0.264696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264696,0.000000,0.000000,0.250000,0,0);}
.m2a_c00142{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m1_c00142{transform:matrix(0.267737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267737,0.000000,0.000000,0.250000,0,0);}
.m15_c00142{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.mc_c00142{transform:matrix(0.269459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269459,0.000000,0.000000,0.250000,0,0);}
.m2e_c00142{transform:matrix(0.269526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269526,0.000000,0.000000,0.250000,0,0);}
.m38_c00142{transform:matrix(0.270405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270405,0.000000,0.000000,0.250000,0,0);}
.m40_c00142{transform:matrix(0.270666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270666,0.000000,0.000000,0.250000,0,0);}
.m52_c00142{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m26_c00142{transform:matrix(0.271722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271722,0.000000,0.000000,0.250000,0,0);}
.m2c_c00142{transform:matrix(0.272278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272278,0.000000,0.000000,0.250000,0,0);}
.m36_c00142{transform:matrix(0.272943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272943,0.000000,0.000000,0.250000,0,0);}
.m28_c00142{transform:matrix(0.273782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273782,0.000000,0.000000,0.250000,0,0);}
.m10_c00142{transform:matrix(0.276488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276488,0.000000,0.000000,0.250000,0,0);}
.m5f_c00142{transform:matrix(0.276607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276607,0.000000,0.000000,0.250000,0,0);}
.m4_c00142{transform:matrix(0.279194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279194,0.000000,0.000000,0.250000,0,0);}
.m31_c00142{transform:matrix(0.280392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280392,0.000000,0.000000,0.250000,0,0);}
.m57_c00142{transform:matrix(0.281021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281021,0.000000,0.000000,0.250000,0,0);}
.m2f_c00142{transform:matrix(0.281112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281112,0.000000,0.000000,0.250000,0,0);}
.m55_c00142{transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);}
.m11_c00142{transform:matrix(0.282463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282463,0.000000,0.000000,0.250000,0,0);}
.m5b_c00142{transform:matrix(0.282619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282619,0.000000,0.000000,0.250000,0,0);}
.m3_c00142{transform:matrix(0.283932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283932,0.000000,0.000000,0.250000,0,0);}
.m29_c00142{transform:matrix(0.284177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284177,0.000000,0.000000,0.250000,0,0);}
.m32_c00142{transform:matrix(0.285011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285011,0.000000,0.000000,0.250000,0,0);}
.m39_c00142{transform:matrix(0.285420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285420,0.000000,0.000000,0.250000,0,0);}
.m5d_c00142{transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);}
.m43_c00142{transform:matrix(0.288441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288441,0.000000,0.000000,0.250000,0,0);}
.mf_c00142{transform:matrix(0.288974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288974,0.000000,0.000000,0.250000,0,0);}
.m2b_c00142{transform:matrix(0.289896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289896,0.000000,0.000000,0.250000,0,0);}
.m12_c00142{transform:matrix(0.292691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292691,0.000000,0.000000,0.250000,0,0);}
.m16_c00142{transform:matrix(0.293178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293178,0.000000,0.000000,0.250000,0,0);}
.m51_c00142{transform:matrix(0.293241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293241,0.000000,0.000000,0.250000,0,0);}
.m1f_c00142{transform:matrix(0.293350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293350,0.000000,0.000000,0.250000,0,0);}
.m4c_c00142{transform:matrix(0.293496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293496,0.000000,0.000000,0.250000,0,0);}
.m5c_c00142{transform:matrix(0.294066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294066,0.000000,0.000000,0.250000,0,0);}
.m2_c00142{transform:matrix(0.296013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296013,0.000000,0.000000,0.250000,0,0);}
.m5a_c00142{transform:matrix(0.296328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296328,0.000000,0.000000,0.250000,0,0);}
.m24_c00142{transform:matrix(0.296562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296562,0.000000,0.000000,0.250000,0,0);}
.m60_c00142{transform:matrix(0.298980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298980,0.000000,0.000000,0.250000,0,0);}
.m59_c00142{transform:matrix(0.299332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299332,0.000000,0.000000,0.250000,0,0);}
.m5e_c00142{transform:matrix(0.299459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299459,0.000000,0.000000,0.250000,0,0);}
.m4d_c00142{transform:matrix(0.299845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299845,0.000000,0.000000,0.250000,0,0);}
.m18_c00142{transform:matrix(0.300078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300078,0.000000,0.000000,0.250000,0,0);}
.m30_c00142{transform:matrix(0.300247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300247,0.000000,0.000000,0.250000,0,0);}
.mb_c00142{transform:matrix(0.300577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300577,0.000000,0.000000,0.250000,0,0);}
.md_c00142{transform:matrix(0.300842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300842,0.000000,0.000000,0.250000,0,0);}
.m3b_c00142{transform:matrix(0.301057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301057,0.000000,0.000000,0.250000,0,0);}
.m25_c00142{transform:matrix(0.301539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301539,0.000000,0.000000,0.250000,0,0);}
.m61_c00142{transform:matrix(0.301682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301682,0.000000,0.000000,0.250000,0,0);}
.m45_c00142{transform:matrix(0.303631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303631,0.000000,0.000000,0.250000,0,0);}
.m3a_c00142{transform:matrix(0.304851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304851,0.000000,0.000000,0.250000,0,0);}
.m50_c00142{transform:matrix(0.305052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305052,0.000000,0.000000,0.250000,0,0);}
.m4b_c00142{transform:matrix(0.305655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305655,0.000000,0.000000,0.250000,0,0);}
.m3d_c00142{transform:matrix(0.310056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310056,0.000000,0.000000,0.250000,0,0);}
.m41_c00142{transform:matrix(0.313924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313924,0.000000,0.000000,0.250000,0,0);}
.m8_c00142{transform:matrix(0.314146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314146,0.000000,0.000000,0.250000,0,0);}
.m1b_c00142{transform:matrix(0.318754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318754,0.000000,0.000000,0.250000,0,0);}
.m35_c00142{transform:matrix(0.319103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319103,0.000000,0.000000,0.250000,0,0);}
.m42_c00142{transform:matrix(0.319571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319571,0.000000,0.000000,0.250000,0,0);}
.m48_c00142{transform:matrix(0.320126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320126,0.000000,0.000000,0.250000,0,0);}
.m54_c00142{transform:matrix(0.320577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320577,0.000000,0.000000,0.250000,0,0);}
.m6_c00142{transform:matrix(0.320630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320630,0.000000,0.000000,0.250000,0,0);}
.m58_c00142{transform:matrix(0.323503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323503,0.000000,0.000000,0.250000,0,0);}
.m56_c00142{transform:matrix(0.326045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326045,0.000000,0.000000,0.250000,0,0);}
.m37_c00142{transform:matrix(0.326405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326405,0.000000,0.000000,0.250000,0,0);}
.m46_c00142{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.m27_c00142{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m9_c00142{transform:matrix(0.336837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336837,0.000000,0.000000,0.250000,0,0);}
.m23_c00142{transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);}
.m47_c00142{transform:matrix(0.339832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339832,0.000000,0.000000,0.250000,0,0);}
.m3e_c00142{transform:matrix(0.343167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343167,0.000000,0.000000,0.250000,0,0);}
.m22_c00142{transform:matrix(0.347369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347369,0.000000,0.000000,0.250000,0,0);}
.m17_c00142{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.ma_c00142{transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);}
.m1e_c00142{transform:matrix(0.349429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349429,0.000000,0.000000,0.250000,0,0);}
.m1a_c00142{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m3c_c00142{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m5_c00142{transform:matrix(0.372770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372770,0.000000,0.000000,0.250000,0,0);}
.v0_c00142{vertical-align:0.000000px;}
.ls6_c00142{letter-spacing:-2.744280px;}
.ls9_c00142{letter-spacing:-1.261267px;}
.lsa_c00142{letter-spacing:-0.258746px;}
.ls3_c00142{letter-spacing:0.000000px;}
.ls5_c00142{letter-spacing:1.215324px;}
.ls1_c00142{letter-spacing:1.819066px;}
.ls2_c00142{letter-spacing:1.928837px;}
.lsc_c00142{letter-spacing:2.101334px;}
.lsb_c00142{letter-spacing:3.120638px;}
.ls7_c00142{letter-spacing:3.257110px;}
.lse_c00142{letter-spacing:3.457793px;}
.ls0_c00142{letter-spacing:3.661654px;}
.ls8_c00142{letter-spacing:3.742200px;}
.ls4_c00142{letter-spacing:3.920400px;}
.lsd_c00142{letter-spacing:51.321798px;}
.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:-19.602000px;}
.ws1_c00142{word-spacing:0.000000px;}
._8_c00142{margin-left:-20.072448px;}
._3_c00142{margin-left:-4.782888px;}
._d_c00142{width:2.038608px;}
._f_c00142{width:5.488560px;}
._c_c00142{width:7.919208px;}
._a_c00142{width:9.330948px;}
._11_c00142{width:10.506672px;}
._0_c00142{width:11.918016px;}
._4_c00142{width:18.253778px;}
._b_c00142{width:22.267872px;}
._2_c00142{width:23.679216px;}
._10_c00142{width:25.957325px;}
._9_c00142{width:27.122832px;}
._e_c00142{width:28.854144px;}
._5_c00142{width:30.437986px;}
._1_c00142{width:37.322208px;}
._7_c00142{width:39.596040px;}
._6_c00142{width:43.673256px;}
.fc0_c00142{color:transparent;}
.fs1_c00142{font-size:22.176000px;}
.fs6_c00142{font-size:25.146000px;}
.fsc_c00142{font-size:26.928000px;}
.fs0_c00142{font-size:27.720000px;}
.fs9_c00142{font-size:33.264000px;}
.fsa_c00142{font-size:33.660000px;}
.fs5_c00142{font-size:34.848000px;}
.fs7_c00142{font-size:36.036198px;}
.fse_c00142{font-size:36.630000px;}
.fs8_c00142{font-size:39.204000px;}
.fs10_c00142{font-size:39.600000px;}
.fsb_c00142{font-size:50.688000px;}
.fsd_c00142{font-size:51.321798px;}
.fs3_c00142{font-size:65.142198px;}
.fs4_c00142{font-size:74.844000px;}
.fs2_c00142{font-size:78.408000px;}
.fsf_c00142{font-size:78.804000px;}
.y0_c00142{bottom:0.000000px;}
.y22_c00142{bottom:26.641935px;}
.y1_c00142{bottom:76.500000px;}
.y24_c00142{bottom:112.890735px;}
.y21_c00142{bottom:141.402735px;}
.y20_c00142{bottom:171.696735px;}
.y1f_c00142{bottom:204.841935px;}
.y1e_c00142{bottom:236.912985px;}
.y1d_c00142{bottom:269.345385px;}
.y23_c00142{bottom:299.287935px;}
.y1c_c00142{bottom:333.853785px;}
.y1b_c00142{bottom:368.429535px;}
.y1a_c00142{bottom:400.500585px;}
.y17_c00142{bottom:465.365385px;}
.y16_c00142{bottom:497.089935px;}
.y15_c00142{bottom:529.522335px;}
.y14_c00142{bottom:560.529135px;}
.y13_c00142{bottom:627.175935px;}
.y19_c00142{bottom:628.240185px;}
.y18_c00142{bottom:635.724585px;}
.y12_c00142{bottom:660.672585px;}
.y11_c00142{bottom:693.822735px;}
.y10_c00142{bottom:757.974735px;}
.y9_c00142{bottom:758.682585px;}
.y3_c00142{bottom:785.768985px;}
.y8_c00142{bottom:790.763535px;}
.yf_c00142{bottom:799.317135px;}
.y2_c00142{bottom:812.498985px;}
.y7_c00142{bottom:823.195935px;}
.y6_c00142{bottom:855.623385px;}
.y5_c00142{bottom:920.844585px;}
.ye_c00142{bottom:1026.695385px;}
.yd_c00142{bottom:1038.812985px;}
.yc_c00142{bottom:1048.079385px;}
.yb_c00142{bottom:1064.117385px;}
.y4_c00142{bottom:1071.601785px;}
.ya_c00142{bottom:1077.304185px;}
.h3_c00142{height:23.128875px;}
.h8_c00142{height:26.226492px;}
.h2_c00142{height:28.911094px;}
.hc_c00142{height:33.035449px;}
.hf_c00142{height:34.180317px;}
.h7_c00142{height:34.201406px;}
.hb_c00142{height:34.693313px;}
.h9_c00142{height:35.367558px;}
.h10_c00142{height:38.203945px;}
.ha_c00142{height:38.476582px;}
.he_c00142{height:40.888547px;}
.h12_c00142{height:41.301563px;}
.hd_c00142{height:52.866000px;}
.h5_c00142{height:67.941277px;}
.h6_c00142{height:75.428719px;}
.h4_c00142{height:76.953164px;}
.h11_c00142{height:77.341816px;}
.h1_c00142{height:1110.000000px;}
.h0_c00142{height:1263.000000px;}
.w1_c00142{width:733.500000px;}
.w0_c00142{width:892.500000px;}
.x0_c00142{left:0.000000px;}
.x3_c00142{left:44.836635px;}
.x2_c00142{left:64.413885px;}
.x5_c00142{left:76.590885px;}
.x1_c00142{left:79.500000px;}
.x3e_c00142{left:99.044085px;}
.x39_c00142{left:110.146935px;}
.x1b_c00142{left:131.422035px;}
.x21_c00142{left:137.767935px;}
.x22_c00142{left:141.455685px;}
.x6_c00142{left:143.311935px;}
.x2b_c00142{left:144.425685px;}
.x32_c00142{left:154.761285px;}
.x2c_c00142{left:176.372985px;}
.x7_c00142{left:186.926385px;}
.x3a_c00142{left:198.692535px;}
.x8_c00142{left:210.082485px;}
.xd_c00142{left:221.873385px;}
.x46_c00142{left:231.273435px;}
.x2e_c00142{left:232.347585px;}
.x23_c00142{left:233.594985px;}
.x33_c00142{left:242.331735px;}
.xe_c00142{left:243.940485px;}
.x44_c00142{left:253.360335px;}
.xf_c00142{left:254.444385px;}
.x9_c00142{left:266.205585px;}
.x4_c00142{left:270.769485px;}
.x3b_c00142{left:276.536235px;}
.x43_c00142{left:278.100435px;}
.x24_c00142{left:288.718185px;}
.x45_c00142{left:298.266735px;}
.x10_c00142{left:299.875485px;}
.x3f_c00142{left:309.696285px;}
.xa_c00142{left:310.765485px;}
.x13_c00142{left:321.640635px;}
.xb_c00142{left:332.451435px;}
.x14_c00142{left:333.718635px;}
.x25_c00142{left:344.098785px;}
.x2f_c00142{left:354.944235px;}
.x26_c00142{left:366.190635px;}
.x1c_c00142{left:377.234085px;}
.x11_c00142{left:388.411185px;}
.x27_c00142{left:399.692235px;}
.xc_c00142{left:410.933685px;}
.x12_c00142{left:421.234635px;}
.x2d_c00142{left:432.980985px;}
.x1d_c00142{left:444.103635px;}
.x40_c00142{left:465.977685px;}
.x34_c00142{left:488.440785px;}
.x28_c00142{left:499.810935px;}
.x31_c00142{left:503.424435px;}
.x47_c00142{left:505.993485px;}
.x30_c00142{left:509.710935px;}
.x41_c00142{left:521.536485px;}
.x29_c00142{left:533.208585px;}
.x35_c00142{left:554.681685px;}
.x1e_c00142{left:566.135985px;}
.x3c_c00142{left:577.144785px;}
.x1f_c00142{left:599.231685px;}
.x2a_c00142{left:608.384235px;}
.x42_c00142{left:609.601935px;}
.x36_c00142{left:621.724485px;}
.x20_c00142{left:633.129285px;}
.x37_c00142{left:643.420335px;}
.x3d_c00142{left:654.849885px;}
.x15_c00142{left:655.988385px;}
.x38_c00142{left:676.491285px;}
.x19_c00142{left:694.152885px;}
.x1a_c00142{left:695.573535px;}
.x16_c00142{left:696.692235px;}
.x17_c00142{left:698.385135px;}
.x18_c00142{left:701.251185px;}
.x48_c00142{left:702.350085px;}
@media print{
.v0_c00142{vertical-align:0.000000pt;}
.ls6_c00142{letter-spacing:-2.439360pt;}
.ls9_c00142{letter-spacing:-1.121126pt;}
.lsa_c00142{letter-spacing:-0.229997pt;}
.ls3_c00142{letter-spacing:0.000000pt;}
.ls5_c00142{letter-spacing:1.080288pt;}
.ls1_c00142{letter-spacing:1.616947pt;}
.ls2_c00142{letter-spacing:1.714522pt;}
.lsc_c00142{letter-spacing:1.867853pt;}
.lsb_c00142{letter-spacing:2.773901pt;}
.ls7_c00142{letter-spacing:2.895209pt;}
.lse_c00142{letter-spacing:3.073594pt;}
.ls0_c00142{letter-spacing:3.254803pt;}
.ls8_c00142{letter-spacing:3.326400pt;}
.ls4_c00142{letter-spacing:3.484800pt;}
.lsd_c00142{letter-spacing:45.619376pt;}
.ws0_c00142{word-spacing:-17.424000pt;}
.ws1_c00142{word-spacing:0.000000pt;}
._8_c00142{margin-left:-17.842176pt;}
._3_c00142{margin-left:-4.251456pt;}
._d_c00142{width:1.812096pt;}
._f_c00142{width:4.878720pt;}
._c_c00142{width:7.039296pt;}
._a_c00142{width:8.294176pt;}
._11_c00142{width:9.339264pt;}
._0_c00142{width:10.593792pt;}
._4_c00142{width:16.225581pt;}
._b_c00142{width:19.793664pt;}
._2_c00142{width:21.048192pt;}
._10_c00142{width:23.073178pt;}
._9_c00142{width:24.109184pt;}
._e_c00142{width:25.648128pt;}
._5_c00142{width:27.055987pt;}
._1_c00142{width:33.175296pt;}
._7_c00142{width:35.196480pt;}
._6_c00142{width:38.820672pt;}
.fs1_c00142{font-size:19.712000pt;}
.fs6_c00142{font-size:22.352000pt;}
.fsc_c00142{font-size:23.936000pt;}
.fs0_c00142{font-size:24.640000pt;}
.fs9_c00142{font-size:29.568000pt;}
.fsa_c00142{font-size:29.920000pt;}
.fs5_c00142{font-size:30.976000pt;}
.fs7_c00142{font-size:32.032176pt;}
.fse_c00142{font-size:32.560000pt;}
.fs8_c00142{font-size:34.848000pt;}
.fs10_c00142{font-size:35.200000pt;}
.fsb_c00142{font-size:45.056000pt;}
.fsd_c00142{font-size:45.619376pt;}
.fs3_c00142{font-size:57.904176pt;}
.fs4_c00142{font-size:66.528000pt;}
.fs2_c00142{font-size:69.696000pt;}
.fsf_c00142{font-size:70.048000pt;}
.y0_c00142{bottom:0.000000pt;}
.y22_c00142{bottom:23.681720pt;}
.y1_c00142{bottom:68.000000pt;}
.y24_c00142{bottom:100.347320pt;}
.y21_c00142{bottom:125.691320pt;}
.y20_c00142{bottom:152.619320pt;}
.y1f_c00142{bottom:182.081720pt;}
.y1e_c00142{bottom:210.589320pt;}
.y1d_c00142{bottom:239.418120pt;}
.y23_c00142{bottom:266.033720pt;}
.y1c_c00142{bottom:296.758920pt;}
.y1b_c00142{bottom:327.492920pt;}
.y1a_c00142{bottom:356.000520pt;}
.y17_c00142{bottom:413.658120pt;}
.y16_c00142{bottom:441.857720pt;}
.y15_c00142{bottom:470.686520pt;}
.y14_c00142{bottom:498.248120pt;}
.y13_c00142{bottom:557.489720pt;}
.y19_c00142{bottom:558.435720pt;}
.y18_c00142{bottom:565.088520pt;}
.y12_c00142{bottom:587.264520pt;}
.y11_c00142{bottom:616.731320pt;}
.y10_c00142{bottom:673.755320pt;}
.y9_c00142{bottom:674.384520pt;}
.y3_c00142{bottom:698.461320pt;}
.y8_c00142{bottom:702.900920pt;}
.yf_c00142{bottom:710.504120pt;}
.y2_c00142{bottom:722.221320pt;}
.y7_c00142{bottom:731.729720pt;}
.y6_c00142{bottom:760.554120pt;}
.y5_c00142{bottom:818.528520pt;}
.ye_c00142{bottom:912.618120pt;}
.yd_c00142{bottom:923.389320pt;}
.yc_c00142{bottom:931.626120pt;}
.yb_c00142{bottom:945.882120pt;}
.y4_c00142{bottom:952.534920pt;}
.ya_c00142{bottom:957.603720pt;}
.h3_c00142{height:20.559000pt;}
.h8_c00142{height:23.312438pt;}
.h2_c00142{height:25.698750pt;}
.hc_c00142{height:29.364844pt;}
.hf_c00142{height:30.382504pt;}
.h7_c00142{height:30.401250pt;}
.hb_c00142{height:30.838500pt;}
.h9_c00142{height:31.437829pt;}
.h10_c00142{height:33.959063pt;}
.ha_c00142{height:34.201406pt;}
.he_c00142{height:36.345375pt;}
.h12_c00142{height:36.712500pt;}
.hd_c00142{height:46.992000pt;}
.h5_c00142{height:60.392246pt;}
.h6_c00142{height:67.047750pt;}
.h4_c00142{height:68.402813pt;}
.h11_c00142{height:68.748281pt;}
.h1_c00142{height:986.666667pt;}
.h0_c00142{height:1122.666667pt;}
.w1_c00142{width:652.000000pt;}
.w0_c00142{width:793.333333pt;}
.x0_c00142{left:0.000000pt;}
.x3_c00142{left:39.854787pt;}
.x2_c00142{left:57.256787pt;}
.x5_c00142{left:68.080787pt;}
.x1_c00142{left:70.666667pt;}
.x3e_c00142{left:88.039187pt;}
.x39_c00142{left:97.908387pt;}
.x1b_c00142{left:116.819587pt;}
.x21_c00142{left:122.460387pt;}
.x22_c00142{left:125.738387pt;}
.x6_c00142{left:127.388387pt;}
.x2b_c00142{left:128.378387pt;}
.x32_c00142{left:137.565587pt;}
.x2c_c00142{left:156.775987pt;}
.x7_c00142{left:166.156787pt;}
.x3a_c00142{left:176.615587pt;}
.x8_c00142{left:186.739987pt;}
.xd_c00142{left:197.220787pt;}
.x46_c00142{left:205.576387pt;}
.x2e_c00142{left:206.531187pt;}
.x23_c00142{left:207.639987pt;}
.x33_c00142{left:215.405987pt;}
.xe_c00142{left:216.835987pt;}
.x44_c00142{left:225.209187pt;}
.xf_c00142{left:226.172787pt;}
.x9_c00142{left:236.627187pt;}
.x4_c00142{left:240.683987pt;}
.x3b_c00142{left:245.809987pt;}
.x43_c00142{left:247.200387pt;}
.x24_c00142{left:256.638387pt;}
.x45_c00142{left:265.125987pt;}
.x10_c00142{left:266.555987pt;}
.x3f_c00142{left:275.285587pt;}
.xa_c00142{left:276.235987pt;}
.x13_c00142{left:285.902787pt;}
.xb_c00142{left:295.512387pt;}
.x14_c00142{left:296.638787pt;}
.x25_c00142{left:305.865587pt;}
.x2f_c00142{left:315.505987pt;}
.x26_c00142{left:325.502787pt;}
.x1c_c00142{left:335.319187pt;}
.x11_c00142{left:345.254387pt;}
.x27_c00142{left:355.281987pt;}
.xc_c00142{left:365.274387pt;}
.x12_c00142{left:374.430787pt;}
.x2d_c00142{left:384.871987pt;}
.x1d_c00142{left:394.758787pt;}
.x40_c00142{left:414.202387pt;}
.x34_c00142{left:434.169587pt;}
.x28_c00142{left:444.276387pt;}
.x31_c00142{left:447.488387pt;}
.x47_c00142{left:449.771987pt;}
.x30_c00142{left:453.076387pt;}
.x41_c00142{left:463.587987pt;}
.x29_c00142{left:473.963187pt;}
.x35_c00142{left:493.050387pt;}
.x1e_c00142{left:503.231987pt;}
.x3c_c00142{left:513.017587pt;}
.x1f_c00142{left:532.650387pt;}
.x2a_c00142{left:540.785987pt;}
.x42_c00142{left:541.868387pt;}
.x36_c00142{left:552.643987pt;}
.x20_c00142{left:562.781587pt;}
.x37_c00142{left:571.929187pt;}
.x3d_c00142{left:582.088787pt;}
.x15_c00142{left:583.100787pt;}
.x38_c00142{left:601.325587pt;}
.x19_c00142{left:617.024787pt;}
.x1a_c00142{left:618.287587pt;}
.x16_c00142{left:619.281987pt;}
.x17_c00142{left:620.786787pt;}
.x18_c00142{left:623.334387pt;}
.x48_c00142{left:624.311187pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b56a5bcf4a1e9f683cba62c4.woff2')format("woff");}.ff1_c00143{font-family:ff1_c00143;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00143;src:url('chunks/assets/font_cd5f81083536b23906414131.woff2')format("woff");}.ff2_c00143{font-family:ff2_c00143;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00143;src:url('chunks/assets/font_e7987e5a83347791160a6213.woff2')format("woff");}.ff3_c00143{font-family:ff3_c00143;line-height:0.666000;font-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_c00143{transform:matrix(0.057693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.057693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.057693,0.000000,0.000000,0.250000,0,0);}
.m81_c00143{transform:matrix(0.105770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105770,0.000000,0.000000,0.250000,0,0);}
.m87_c00143{transform:matrix(0.192568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192568,0.000000,0.000000,0.250000,0,0);}
.m1_c00143{transform:matrix(0.220087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220087,0.000000,0.000000,0.250000,0,0);}
.m57_c00143{transform:matrix(0.235432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235432,0.000000,0.000000,0.250000,0,0);}
.m88_c00143{transform:matrix(0.247080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247080,0.000000,0.000000,0.250000,0,0);}
.m14_c00143{transform:matrix(0.247239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247239,0.000000,0.000000,0.250000,0,0);}
.m0_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);}
.m54_c00143{transform:matrix(0.250346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250346,0.000000,0.000000,0.250000,0,0);}
.m21_c00143{transform:matrix(0.252192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252192,0.000000,0.000000,0.250000,0,0);}
.m6_c00143{transform:matrix(0.254032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254032,0.000000,0.000000,0.250000,0,0);}
.m32_c00143{transform:matrix(0.257144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257144,0.000000,0.000000,0.250000,0,0);}
.m20_c00143{transform:matrix(0.257517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257517,0.000000,0.000000,0.250000,0,0);}
.m2e_c00143{transform:matrix(0.258060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258060,0.000000,0.000000,0.250000,0,0);}
.m3a_c00143{transform:matrix(0.258176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258176,0.000000,0.000000,0.250000,0,0);}
.m74_c00143{transform:matrix(0.259296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259296,0.000000,0.000000,0.250000,0,0);}
.m22_c00143{transform:matrix(0.262870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262870,0.000000,0.000000,0.250000,0,0);}
.m35_c00143{transform:matrix(0.263139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263139,0.000000,0.000000,0.250000,0,0);}
.m6e_c00143{transform:matrix(0.264440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264440,0.000000,0.000000,0.250000,0,0);}
.m8b_c00143{transform:matrix(0.265066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265066,0.000000,0.000000,0.250000,0,0);}
.m4c_c00143{transform:matrix(0.266844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266844,0.000000,0.000000,0.250000,0,0);}
.m50_c00143{transform:matrix(0.267564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267564,0.000000,0.000000,0.250000,0,0);}
.m9_c00143{transform:matrix(0.267963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267963,0.000000,0.000000,0.250000,0,0);}
.m6c_c00143{transform:matrix(0.268059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268059,0.000000,0.000000,0.250000,0,0);}
.m27_c00143{transform:matrix(0.268246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268246,0.000000,0.000000,0.250000,0,0);}
.m78_c00143{transform:matrix(0.268310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268310,0.000000,0.000000,0.250000,0,0);}
.m30_c00143{transform:matrix(0.269283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269283,0.000000,0.000000,0.250000,0,0);}
.m63_c00143{transform:matrix(0.269982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269982,0.000000,0.000000,0.250000,0,0);}
.m33_c00143{transform:matrix(0.270611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270611,0.000000,0.000000,0.250000,0,0);}
.m2_c00143{transform:matrix(0.271226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271226,0.000000,0.000000,0.250000,0,0);}
.m44_c00143{transform:matrix(0.272982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272982,0.000000,0.000000,0.250000,0,0);}
.m5e_c00143{transform:matrix(0.273803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273803,0.000000,0.000000,0.250000,0,0);}
.m2b_c00143{transform:matrix(0.273926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273926,0.000000,0.000000,0.250000,0,0);}
.m42_c00143{transform:matrix(0.274207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274207,0.000000,0.000000,0.250000,0,0);}
.ma_c00143{transform:matrix(0.275569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275569,0.000000,0.000000,0.250000,0,0);}
.mb_c00143{transform:matrix(0.276436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276436,0.000000,0.000000,0.250000,0,0);}
.m52_c00143{transform:matrix(0.277194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277194,0.000000,0.000000,0.250000,0,0);}
.m1d_c00143{transform:matrix(0.277961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277961,0.000000,0.000000,0.250000,0,0);}
.m79_c00143{transform:matrix(0.279425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279425,0.000000,0.000000,0.250000,0,0);}
.m4e_c00143{transform:matrix(0.279986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279986,0.000000,0.000000,0.250000,0,0);}
.m75_c00143{transform:matrix(0.280504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280504,0.000000,0.000000,0.250000,0,0);}
.m40_c00143{transform:matrix(0.280725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280725,0.000000,0.000000,0.250000,0,0);}
.m71_c00143{transform:matrix(0.281487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281487,0.000000,0.000000,0.250000,0,0);}
.m8c_c00143{transform:matrix(0.282024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282024,0.000000,0.000000,0.250000,0,0);}
.me_c00143{transform:matrix(0.282975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282975,0.000000,0.000000,0.250000,0,0);}
.m13_c00143{transform:matrix(0.284162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284162,0.000000,0.000000,0.250000,0,0);}
.m23_c00143{transform:matrix(0.284986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284986,0.000000,0.000000,0.250000,0,0);}
.m89_c00143{transform:matrix(0.285417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285417,0.000000,0.000000,0.250000,0,0);}
.m2c_c00143{transform:matrix(0.285629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285629,0.000000,0.000000,0.250000,0,0);}
.m8a_c00143{transform:matrix(0.287143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287143,0.000000,0.000000,0.250000,0,0);}
.m36_c00143{transform:matrix(0.287155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287155,0.000000,0.000000,0.250000,0,0);}
.m3b_c00143{transform:matrix(0.287414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287414,0.000000,0.000000,0.250000,0,0);}
.m4a_c00143{transform:matrix(0.287824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287824,0.000000,0.000000,0.250000,0,0);}
.m5f_c00143{transform:matrix(0.288363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288363,0.000000,0.000000,0.250000,0,0);}
.m39_c00143{transform:matrix(0.288874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288874,0.000000,0.000000,0.250000,0,0);}
.m15_c00143{transform:matrix(0.289223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289223,0.000000,0.000000,0.250000,0,0);}
.m6b_c00143{transform:matrix(0.289672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289672,0.000000,0.000000,0.250000,0,0);}
.m4f_c00143{transform:matrix(0.290087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290087,0.000000,0.000000,0.250000,0,0);}
.m1c_c00143{transform:matrix(0.290271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290271,0.000000,0.000000,0.250000,0,0);}
.m55_c00143{transform:matrix(0.291411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291411,0.000000,0.000000,0.250000,0,0);}
.m31_c00143{transform:matrix(0.291447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291447,0.000000,0.000000,0.250000,0,0);}
.m1b_c00143{transform:matrix(0.291949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291949,0.000000,0.000000,0.250000,0,0);}
.m4b_c00143{transform:matrix(0.291950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291950,0.000000,0.000000,0.250000,0,0);}
.md_c00143{transform:matrix(0.292358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292358,0.000000,0.000000,0.250000,0,0);}
.m83_c00143{transform:matrix(0.292418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292418,0.000000,0.000000,0.250000,0,0);}
.m68_c00143{transform:matrix(0.293129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293129,0.000000,0.000000,0.250000,0,0);}
.m1a_c00143{transform:matrix(0.293210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293210,0.000000,0.000000,0.250000,0,0);}
.m8_c00143{transform:matrix(0.293282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293282,0.000000,0.000000,0.250000,0,0);}
.m3e_c00143{transform:matrix(0.295165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295165,0.000000,0.000000,0.250000,0,0);}
.m47_c00143{transform:matrix(0.295355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295355,0.000000,0.000000,0.250000,0,0);}
.m65_c00143{transform:matrix(0.296710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296710,0.000000,0.000000,0.250000,0,0);}
.m43_c00143{transform:matrix(0.296856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296856,0.000000,0.000000,0.250000,0,0);}
.m7_c00143{transform:matrix(0.297224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297224,0.000000,0.000000,0.250000,0,0);}
.m5_c00143{transform:matrix(0.297681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297681,0.000000,0.000000,0.250000,0,0);}
.m70_c00143{transform:matrix(0.298613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298613,0.000000,0.000000,0.250000,0,0);}
.m67_c00143{transform:matrix(0.298654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298654,0.000000,0.000000,0.250000,0,0);}
.m84_c00143{transform:matrix(0.298999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298999,0.000000,0.000000,0.250000,0,0);}
.m2a_c00143{transform:matrix(0.300504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300504,0.000000,0.000000,0.250000,0,0);}
.m5b_c00143{transform:matrix(0.301103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301103,0.000000,0.000000,0.250000,0,0);}
.m86_c00143{transform:matrix(0.301245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301245,0.000000,0.000000,0.250000,0,0);}
.m58_c00143{transform:matrix(0.301431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301431,0.000000,0.000000,0.250000,0,0);}
.m7d_c00143{transform:matrix(0.301445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301445,0.000000,0.000000,0.250000,0,0);}
.m6f_c00143{transform:matrix(0.301954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301954,0.000000,0.000000,0.250000,0,0);}
.m4d_c00143{transform:matrix(0.302102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302102,0.000000,0.000000,0.250000,0,0);}
.m3_c00143{transform:matrix(0.302498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302498,0.000000,0.000000,0.250000,0,0);}
.m11_c00143{transform:matrix(0.303204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303204,0.000000,0.000000,0.250000,0,0);}
.m49_c00143{transform:matrix(0.303864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303864,0.000000,0.000000,0.250000,0,0);}
.m24_c00143{transform:matrix(0.304122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304122,0.000000,0.000000,0.250000,0,0);}
.m25_c00143{transform:matrix(0.304330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304330,0.000000,0.000000,0.250000,0,0);}
.m56_c00143{transform:matrix(0.304856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304856,0.000000,0.000000,0.250000,0,0);}
.m37_c00143{transform:matrix(0.304990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304990,0.000000,0.000000,0.250000,0,0);}
.m7c_c00143{transform:matrix(0.305155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305155,0.000000,0.000000,0.250000,0,0);}
.m64_c00143{transform:matrix(0.305662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305662,0.000000,0.000000,0.250000,0,0);}
.m73_c00143{transform:matrix(0.307025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307025,0.000000,0.000000,0.250000,0,0);}
.m41_c00143{transform:matrix(0.307280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307280,0.000000,0.000000,0.250000,0,0);}
.m7a_c00143{transform:matrix(0.307341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307341,0.000000,0.000000,0.250000,0,0);}
.m76_c00143{transform:matrix(0.308967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308967,0.000000,0.000000,0.250000,0,0);}
.m46_c00143{transform:matrix(0.309128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309128,0.000000,0.000000,0.250000,0,0);}
.m26_c00143{transform:matrix(0.309281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309281,0.000000,0.000000,0.250000,0,0);}
.m7b_c00143{transform:matrix(0.309322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309322,0.000000,0.000000,0.250000,0,0);}
.m6d_c00143{transform:matrix(0.309713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309713,0.000000,0.000000,0.250000,0,0);}
.m1e_c00143{transform:matrix(0.309883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309883,0.000000,0.000000,0.250000,0,0);}
.m12_c00143{transform:matrix(0.310144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310144,0.000000,0.000000,0.250000,0,0);}
.m82_c00143{transform:matrix(0.310406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310406,0.000000,0.000000,0.250000,0,0);}
.m62_c00143{transform:matrix(0.310960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310960,0.000000,0.000000,0.250000,0,0);}
.m3f_c00143{transform:matrix(0.311419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311419,0.000000,0.000000,0.250000,0,0);}
.m18_c00143{transform:matrix(0.311696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311696,0.000000,0.000000,0.250000,0,0);}
.m4_c00143{transform:matrix(0.311798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311798,0.000000,0.000000,0.250000,0,0);}
.m66_c00143{transform:matrix(0.312046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312046,0.000000,0.000000,0.250000,0,0);}
.m7f_c00143{transform:matrix(0.312378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312378,0.000000,0.000000,0.250000,0,0);}
.m34_c00143{transform:matrix(0.312778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312778,0.000000,0.000000,0.250000,0,0);}
.m72_c00143{transform:matrix(0.313629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313629,0.000000,0.000000,0.250000,0,0);}
.m29_c00143{transform:matrix(0.313634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313634,0.000000,0.000000,0.250000,0,0);}
.m77_c00143{transform:matrix(0.315415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315415,0.000000,0.000000,0.250000,0,0);}
.m5d_c00143{transform:matrix(0.316171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316171,0.000000,0.000000,0.250000,0,0);}
.m7e_c00143{transform:matrix(0.317306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317306,0.000000,0.000000,0.250000,0,0);}
.mc_c00143{transform:matrix(0.318971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318971,0.000000,0.000000,0.250000,0,0);}
.m61_c00143{transform:matrix(0.320789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320789,0.000000,0.000000,0.250000,0,0);}
.m48_c00143{transform:matrix(0.323521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323521,0.000000,0.000000,0.250000,0,0);}
.m3d_c00143{transform:matrix(0.324283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324283,0.000000,0.000000,0.250000,0,0);}
.m6a_c00143{transform:matrix(0.325083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325083,0.000000,0.000000,0.250000,0,0);}
.m16_c00143{transform:matrix(0.325143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325143,0.000000,0.000000,0.250000,0,0);}
.m59_c00143{transform:matrix(0.326352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326352,0.000000,0.000000,0.250000,0,0);}
.m2d_c00143{transform:matrix(0.329360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329360,0.000000,0.000000,0.250000,0,0);}
.m10_c00143{transform:matrix(0.329727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329727,0.000000,0.000000,0.250000,0,0);}
.mf_c00143{transform:matrix(0.330372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330372,0.000000,0.000000,0.250000,0,0);}
.m3c_c00143{transform:matrix(0.331076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331076,0.000000,0.000000,0.250000,0,0);}
.m5a_c00143{transform:matrix(0.332388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332388,0.000000,0.000000,0.250000,0,0);}
.m17_c00143{transform:matrix(0.334034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334034,0.000000,0.000000,0.250000,0,0);}
.m2f_c00143{transform:matrix(0.335422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335422,0.000000,0.000000,0.250000,0,0);}
.m8e_c00143{transform:matrix(0.336342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336342,0.000000,0.000000,0.250000,0,0);}
.m51_c00143{transform:matrix(0.341004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341004,0.000000,0.000000,0.250000,0,0);}
.m1f_c00143{transform:matrix(0.343920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343920,0.000000,0.000000,0.250000,0,0);}
.m69_c00143{transform:matrix(0.345175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345175,0.000000,0.000000,0.250000,0,0);}
.m85_c00143{transform:matrix(0.347093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347093,0.000000,0.000000,0.250000,0,0);}
.m45_c00143{transform:matrix(0.348259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348259,0.000000,0.000000,0.250000,0,0);}
.m8f_c00143{transform:matrix(0.355292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355292,0.000000,0.000000,0.250000,0,0);}
.m5c_c00143{transform:matrix(0.362885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362885,0.000000,0.000000,0.250000,0,0);}
.m53_c00143{transform:matrix(0.369276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369276,0.000000,0.000000,0.250000,0,0);}
.m38_c00143{transform:matrix(0.370376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370376,0.000000,0.000000,0.250000,0,0);}
.m8d_c00143{transform:matrix(0.375286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375286,0.000000,0.000000,0.250000,0,0);}
.m60_c00143{transform:matrix(0.381340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381340,0.000000,0.000000,0.250000,0,0);}
.m19_c00143{transform:matrix(0.387392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387392,0.000000,0.000000,0.250000,0,0);}
.m28_c00143{transform:matrix(0.393446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393446,0.000000,0.000000,0.250000,0,0);}
.v0_c00143{vertical-align:0.000000px;}
.v1_c00143{vertical-align:24.255000px;}
.ls2_c00143{letter-spacing:-3.201667px;}
.ls4_c00143{letter-spacing:-2.730427px;}
.lse_c00143{letter-spacing:-2.098528px;}
.lsc_c00143{letter-spacing:-1.107773px;}
.ls8_c00143{letter-spacing:-0.647501px;}
.ls1_c00143{letter-spacing:0.000000px;}
.ls5_c00143{letter-spacing:0.319850px;}
.ls7_c00143{letter-spacing:0.959550px;}
.ls9_c00143{letter-spacing:1.669461px;}
.ls6_c00143{letter-spacing:1.677262px;}
.lsf_c00143{letter-spacing:1.681416px;}
.ls15_c00143{letter-spacing:1.783822px;}
.ls14_c00143{letter-spacing:2.139984px;}
.lsd_c00143{letter-spacing:3.455940px;}
.lsb_c00143{letter-spacing:3.623400px;}
.ls13_c00143{letter-spacing:3.713381px;}
.ls3_c00143{letter-spacing:3.900610px;}
.ls12_c00143{letter-spacing:4.375810px;}
.lsa_c00143{letter-spacing:4.752000px;}
.ls0_c00143{letter-spacing:11.899701px;}
.ls10_c00143{letter-spacing:37.065798px;}
.ls11_c00143{letter-spacing:52.747398px;}
.sc__c00143{text-shadow:none;}
.sc0_c00143{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00143{-webkit-text-stroke:0px transparent;}
.sc0_c00143{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00143{word-spacing:0.000000px;}
._0_c00143{margin-left:-9.028899px;}
._2_c00143{margin-left:-6.084991px;}
._1_c00143{width:30.902521px;}
._3_c00143{width:34.988811px;}
.fc0_c00143{color:transparent;}
.fs1_c00143{font-size:22.176000px;}
.fs0_c00143{font-size:27.720000px;}
.fsa_c00143{font-size:37.065798px;}
.fsb_c00143{font-size:38.808000px;}
.fsc_c00143{font-size:52.747398px;}
.fse_c00143{font-size:55.836198px;}
.fs7_c00143{font-size:70.092198px;}
.fs6_c00143{font-size:72.468000px;}
.fs9_c00143{font-size:72.864000px;}
.fs4_c00143{font-size:74.844000px;}
.fs8_c00143{font-size:76.428000px;}
.fs3_c00143{font-size:78.012198px;}
.fsd_c00143{font-size:87.516198px;}
.fsf_c00143{font-size:88.308000px;}
.fs2_c00143{font-size:91.476198px;}
.fs5_c00143{font-size:95.040000px;}
.y0_c00143{bottom:0.000000px;}
.y3_c00143{bottom:44.108505px;}
.y2_c00143{bottom:69.409935px;}
.y1_c00143{bottom:76.500000px;}
.y22_c00143{bottom:113.958945px;}
.y21_c00143{bottom:121.082985px;}
.y20_c00143{bottom:180.958185px;}
.y1f_c00143{bottom:212.326335px;}
.y1e_c00143{bottom:228.002985px;}
.y1d_c00143{bottom:234.061785px;}
.y1c_c00143{bottom:244.402335px;}
.y1b_c00143{bottom:258.653385px;}
.y1a_c00143{bottom:276.834735px;}
.y19_c00143{bottom:338.130585px;}
.y18_c00143{bottom:370.562985px;}
.y17_c00143{bottom:401.926185px;}
.y16_c00143{bottom:432.932985px;}
.y15_c00143{bottom:465.370335px;}
.y14_c00143{bottom:496.733535px;}
.y13_c00143{bottom:528.809535px;}
.y12_c00143{bottom:560.529135px;}
.y11_c00143{bottom:621.824985px;}
.y10_c00143{bottom:653.905935px;}
.yf_c00143{bottom:685.269135px;}
.ye_c00143{bottom:717.345135px;}
.yd_c00143{bottom:739.436985px;}
.yc_c00143{bottom:748.346985px;}
.yb_c00143{bottom:780.422985px;}
.ya_c00143{bottom:800.024985px;}
.y9_c00143{bottom:812.142585px;}
.y8_c00143{bottom:844.223535px;}
.y6_c00143{bottom:907.301385px;}
.y5_c00143{bottom:940.095135px;}
.y7_c00143{bottom:1076.591385px;}
.y4_c00143{bottom:1078.729785px;}
.h3_c00143{height:23.128875px;}
.hd_c00143{height:24.685821px;}
.h2_c00143{height:28.911094px;}
.hf_c00143{height:35.129767px;}
.he_c00143{height:40.475531px;}
.h9_c00143{height:71.123379px;}
.hc_c00143{height:71.512031px;}
.ha_c00143{height:73.103972px;}
.h7_c00143{height:73.455293px;}
.hb_c00143{height:75.009902px;}
.h5_c00143{height:76.564706px;}
.h6_c00143{height:81.364285px;}
.h10_c00143{height:85.892362px;}
.h11_c00143{height:86.669473px;}
.h4_c00143{height:89.778886px;}
.h8_c00143{height:93.276563px;}
.h1_c00143{height:1110.000000px;}
.h0_c00143{height:1263.000000px;}
.w1_c00143{width:775.500000px;}
.w0_c00143{width:892.500000px;}
.x0_c00143{left:0.000000px;}
.x3_c00143{left:51.200475px;}
.x1_c00143{left:58.500000px;}
.x2_c00143{left:77.929485px;}
.x16_c00143{left:90.294585px;}
.x1e_c00143{left:91.353885px;}
.x34_c00143{left:92.358735px;}
.x4d_c00143{left:111.836985px;}
.x2f_c00143{left:123.781335px;}
.x55_c00143{left:133.988235px;}
.x39_c00143{left:135.448485px;}
.xe_c00143{left:144.912885px;}
.x17_c00143{left:146.615685px;}
.x2e_c00143{left:154.580235px;}
.x35_c00143{left:157.451235px;}
.x43_c00143{left:158.649135px;}
.x46_c00143{left:168.588735px;}
.xf_c00143{left:179.008485px;}
.x3c_c00143{left:180.067785px;}
.x25_c00143{left:189.195585px;}
.x30_c00143{left:190.452885px;}
.x5_c00143{left:201.229035px;}
.x26_c00143{left:223.598085px;}
.x6_c00143{left:234.290085px;}
.x1f_c00143{left:235.309785px;}
.xa_c00143{left:245.838435px;}
.x44_c00143{left:247.075935px;}
.x48_c00143{left:257.426385px;}
.x27_c00143{left:267.727335px;}
.x7_c00143{left:279.869685px;}
.x3a_c00143{left:290.046885px;}
.x28_c00143{left:300.372585px;}
.x56_c00143{left:301.659585px;}
.x3d_c00143{left:302.674335px;}
.x10_c00143{left:312.930735px;}
.x4a_c00143{left:325.053285px;}
.x47_c00143{left:346.165035px;}
.x29_c00143{left:358.183635px;}
.x18_c00143{left:367.910385px;}
.x8_c00143{left:377.374785px;}
.x57_c00143{left:378.434085px;}
.xb_c00143{left:380.290335px;}
.x36_c00143{left:391.398135px;}
.x31_c00143{left:401.441685px;}
.x11_c00143{left:411.267435px;}
.xc_c00143{left:412.658385px;}
.x37_c00143{left:415.494735px;}
.x50_c00143{left:425.275935px;}
.x4e_c00143{left:433.869135px;}
.x4b_c00143{left:435.175935px;}
.x12_c00143{left:445.937235px;}
.x45_c00143{left:447.293535px;}
.x20_c00143{left:457.926135px;}
.x3e_c00143{left:468.444885px;}
.x32_c00143{left:478.770585px;}
.x9_c00143{left:479.824935px;}
.x4c_c00143{left:488.284485px;}
.x21_c00143{left:489.645735px;}
.x3f_c00143{left:491.501985px;}
.x19_c00143{left:500.817885px;}
.x4_c00143{left:504.208635px;}
.x38_c00143{left:513.192885px;}
.x2a_c00143{left:522.018735px;}
.x13_c00143{left:524.335335px;}
.x1a_c00143{left:533.477985px;}
.x22_c00143{left:556.841985px;}
.x2b_c00143{left:567.875535px;}
.x14_c00143{left:578.795235px;}
.x40_c00143{left:579.978285px;}
.x53_c00143{left:589.947585px;}
.x49_c00143{left:590.996985px;}
.x58_c00143{left:599.778285px;}
.x2c_c00143{left:601.129635px;}
.x41_c00143{left:613.059135px;}
.x1b_c00143{left:623.617485px;}
.x23_c00143{left:634.507485px;}
.x42_c00143{left:644.610435px;}
.x33_c00143{left:656.411235px;}
.xd_c00143{left:665.840985px;}
.x24_c00143{left:668.271435px;}
.x3b_c00143{left:678.710985px;}
.x2d_c00143{left:690.051435px;}
.x1d_c00143{left:700.585035px;}
.x54_c00143{left:701.738385px;}
.x51_c00143{left:703.733235px;}
.x4f_c00143{left:705.718185px;}
.x52_c00143{left:707.084385px;}
.x1c_c00143{left:710.643435px;}
.x15_c00143{left:711.836385px;}
@media print{
.v0_c00143{vertical-align:0.000000pt;}
.v1_c00143{vertical-align:21.560000pt;}
.ls2_c00143{letter-spacing:-2.845926pt;}
.ls4_c00143{letter-spacing:-2.427046pt;}
.lse_c00143{letter-spacing:-1.865358pt;}
.lsc_c00143{letter-spacing:-0.984687pt;}
.ls8_c00143{letter-spacing:-0.575557pt;}
.ls1_c00143{letter-spacing:0.000000pt;}
.ls5_c00143{letter-spacing:0.284311pt;}
.ls7_c00143{letter-spacing:0.852933pt;}
.ls9_c00143{letter-spacing:1.483965pt;}
.ls6_c00143{letter-spacing:1.490900pt;}
.lsf_c00143{letter-spacing:1.494592pt;}
.ls15_c00143{letter-spacing:1.585619pt;}
.ls14_c00143{letter-spacing:1.902208pt;}
.lsd_c00143{letter-spacing:3.071947pt;}
.lsb_c00143{letter-spacing:3.220800pt;}
.ls13_c00143{letter-spacing:3.300783pt;}
.ls3_c00143{letter-spacing:3.467209pt;}
.ls12_c00143{letter-spacing:3.889609pt;}
.lsa_c00143{letter-spacing:4.224000pt;}
.ls0_c00143{letter-spacing:10.577512pt;}
.ls10_c00143{letter-spacing:32.947376pt;}
.ls11_c00143{letter-spacing:46.886576pt;}
.ws0_c00143{word-spacing:0.000000pt;}
._0_c00143{margin-left:-8.025688pt;}
._2_c00143{margin-left:-5.408881pt;}
._1_c00143{width:27.468908pt;}
._3_c00143{width:31.101165pt;}
.fs1_c00143{font-size:19.712000pt;}
.fs0_c00143{font-size:24.640000pt;}
.fsa_c00143{font-size:32.947376pt;}
.fsb_c00143{font-size:34.496000pt;}
.fsc_c00143{font-size:46.886576pt;}
.fse_c00143{font-size:49.632176pt;}
.fs7_c00143{font-size:62.304176pt;}
.fs6_c00143{font-size:64.416000pt;}
.fs9_c00143{font-size:64.768000pt;}
.fs4_c00143{font-size:66.528000pt;}
.fs8_c00143{font-size:67.936000pt;}
.fs3_c00143{font-size:69.344176pt;}
.fsd_c00143{font-size:77.792176pt;}
.fsf_c00143{font-size:78.496000pt;}
.fs2_c00143{font-size:81.312176pt;}
.fs5_c00143{font-size:84.480000pt;}
.y0_c00143{bottom:0.000000pt;}
.y3_c00143{bottom:39.207560pt;}
.y2_c00143{bottom:61.697720pt;}
.y1_c00143{bottom:68.000000pt;}
.y22_c00143{bottom:101.296840pt;}
.y21_c00143{bottom:107.629320pt;}
.y20_c00143{bottom:160.851720pt;}
.y1f_c00143{bottom:188.734520pt;}
.y1e_c00143{bottom:202.669320pt;}
.y1d_c00143{bottom:208.054920pt;}
.y1c_c00143{bottom:217.246520pt;}
.y1b_c00143{bottom:229.914120pt;}
.y1a_c00143{bottom:246.075320pt;}
.y19_c00143{bottom:300.560520pt;}
.y18_c00143{bottom:329.389320pt;}
.y17_c00143{bottom:357.267720pt;}
.y16_c00143{bottom:384.829320pt;}
.y15_c00143{bottom:413.662520pt;}
.y14_c00143{bottom:441.540920pt;}
.y13_c00143{bottom:470.052920pt;}
.y12_c00143{bottom:498.248120pt;}
.y11_c00143{bottom:552.733320pt;}
.y10_c00143{bottom:581.249720pt;}
.yf_c00143{bottom:609.128120pt;}
.ye_c00143{bottom:637.640120pt;}
.yd_c00143{bottom:657.277320pt;}
.yc_c00143{bottom:665.197320pt;}
.yb_c00143{bottom:693.709320pt;}
.ya_c00143{bottom:711.133320pt;}
.y9_c00143{bottom:721.904520pt;}
.y8_c00143{bottom:750.420920pt;}
.y6_c00143{bottom:806.490120pt;}
.y5_c00143{bottom:835.640120pt;}
.y7_c00143{bottom:956.970120pt;}
.y4_c00143{bottom:958.870920pt;}
.h3_c00143{height:20.559000pt;}
.hd_c00143{height:21.942952pt;}
.h2_c00143{height:25.698750pt;}
.hf_c00143{height:31.226460pt;}
.he_c00143{height:35.978250pt;}
.h9_c00143{height:63.220781pt;}
.hc_c00143{height:63.566250pt;}
.ha_c00143{height:64.981309pt;}
.h7_c00143{height:65.293594pt;}
.hb_c00143{height:66.675469pt;}
.h5_c00143{height:68.057516pt;}
.h6_c00143{height:72.323809pt;}
.h10_c00143{height:76.348766pt;}
.h11_c00143{height:77.039531pt;}
.h4_c00143{height:79.803454pt;}
.h8_c00143{height:82.912500pt;}
.h1_c00143{height:986.666667pt;}
.h0_c00143{height:1122.666667pt;}
.w1_c00143{width:689.333333pt;}
.w0_c00143{width:793.333333pt;}
.x0_c00143{left:0.000000pt;}
.x3_c00143{left:45.511533pt;}
.x1_c00143{left:52.000000pt;}
.x2_c00143{left:69.270653pt;}
.x16_c00143{left:80.261853pt;}
.x1e_c00143{left:81.203453pt;}
.x34_c00143{left:82.096653pt;}
.x4d_c00143{left:99.410653pt;}
.x2f_c00143{left:110.027853pt;}
.x55_c00143{left:119.100653pt;}
.x39_c00143{left:120.398653pt;}
.xe_c00143{left:128.811453pt;}
.x17_c00143{left:130.325053pt;}
.x2e_c00143{left:137.404653pt;}
.x35_c00143{left:139.956653pt;}
.x43_c00143{left:141.021453pt;}
.x46_c00143{left:149.856653pt;}
.xf_c00143{left:159.118653pt;}
.x3c_c00143{left:160.060253pt;}
.x25_c00143{left:168.173853pt;}
.x30_c00143{left:169.291453pt;}
.x5_c00143{left:178.870253pt;}
.x26_c00143{left:198.753853pt;}
.x6_c00143{left:208.257853pt;}
.x1f_c00143{left:209.164253pt;}
.xa_c00143{left:218.523053pt;}
.x44_c00143{left:219.623053pt;}
.x48_c00143{left:228.823453pt;}
.x27_c00143{left:237.979853pt;}
.x7_c00143{left:248.773053pt;}
.x3a_c00143{left:257.819453pt;}
.x28_c00143{left:266.997853pt;}
.x56_c00143{left:268.141853pt;}
.x3d_c00143{left:269.043853pt;}
.x10_c00143{left:278.160653pt;}
.x4a_c00143{left:288.936253pt;}
.x47_c00143{left:307.702253pt;}
.x29_c00143{left:318.385453pt;}
.x18_c00143{left:327.031453pt;}
.x8_c00143{left:335.444253pt;}
.x57_c00143{left:336.385853pt;}
.xb_c00143{left:338.035853pt;}
.x36_c00143{left:347.909453pt;}
.x31_c00143{left:356.837053pt;}
.x11_c00143{left:365.571053pt;}
.xc_c00143{left:366.807453pt;}
.x37_c00143{left:369.328653pt;}
.x50_c00143{left:378.023053pt;}
.x4e_c00143{left:385.661453pt;}
.x4b_c00143{left:386.823053pt;}
.x12_c00143{left:396.388653pt;}
.x45_c00143{left:397.594253pt;}
.x20_c00143{left:407.045453pt;}
.x3e_c00143{left:416.395453pt;}
.x32_c00143{left:425.573853pt;}
.x9_c00143{left:426.511053pt;}
.x4c_c00143{left:434.030653pt;}
.x21_c00143{left:435.240653pt;}
.x3f_c00143{left:436.890653pt;}
.x19_c00143{left:445.171453pt;}
.x4_c00143{left:448.185453pt;}
.x38_c00143{left:456.171453pt;}
.x2a_c00143{left:464.016653pt;}
.x13_c00143{left:466.075853pt;}
.x1a_c00143{left:474.202653pt;}
.x22_c00143{left:494.970653pt;}
.x2b_c00143{left:504.778253pt;}
.x14_c00143{left:514.484653pt;}
.x40_c00143{left:515.536253pt;}
.x53_c00143{left:524.397853pt;}
.x49_c00143{left:525.330653pt;}
.x58_c00143{left:533.136253pt;}
.x2c_c00143{left:534.337453pt;}
.x41_c00143{left:544.941453pt;}
.x1b_c00143{left:554.326653pt;}
.x23_c00143{left:564.006653pt;}
.x42_c00143{left:572.987053pt;}
.x33_c00143{left:583.476653pt;}
.xd_c00143{left:591.858653pt;}
.x24_c00143{left:594.019053pt;}
.x3b_c00143{left:603.298653pt;}
.x2d_c00143{left:613.379053pt;}
.x1d_c00143{left:622.742253pt;}
.x54_c00143{left:623.767453pt;}
.x51_c00143{left:625.540653pt;}
.x4f_c00143{left:627.305053pt;}
.x52_c00143{left:628.519453pt;}
.x1c_c00143{left:631.683053pt;}
.x15_c00143{left:632.743453pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_83981dd558eb326f99d21d62.woff2')format("woff");}.ff1_c00144{font-family:ff1_c00144;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00144;src:url('chunks/assets/font_26abdfd1ccbf80fb435189ca.woff2')format("woff");}.ff2_c00144{font-family:ff2_c00144;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00144;src:url('chunks/assets/font_0ca5297fc8572ab0017ba706.woff2')format("woff");}.ff3_c00144{font-family:ff3_c00144;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00144;src:url('chunks/assets/font_dba646d0e7327d87243f86a8.woff2')format("woff");}.ff4_c00144{font-family:ff4_c00144;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m96_c00144{transform:matrix(0.079269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.079269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.079269,0.000000,0.000000,0.250000,0,0);}
.m61_c00144{transform:matrix(0.094641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094641,0.000000,0.000000,0.250000,0,0);}
.m8b_c00144{transform:matrix(0.123434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123434,0.000000,0.000000,0.250000,0,0);}
.m92_c00144{transform:matrix(0.177493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177493,0.000000,0.000000,0.250000,0,0);}
.m2f_c00144{transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);}
.m60_c00144{transform:matrix(0.185053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185053,0.000000,0.000000,0.250000,0,0);}
.m47_c00144{transform:matrix(0.222959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222959,0.000000,0.000000,0.250000,0,0);}
.m12_c00144{transform:matrix(0.227703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227703,0.000000,0.000000,0.250000,0,0);}
.m41_c00144{transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);}
.m1c_c00144{transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);}
.ma9_c00144{transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);}
.m50_c00144{transform:matrix(0.240061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240061,0.000000,0.000000,0.250000,0,0);}
.m0_c00144{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00144{transform:matrix(0.252461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252461,0.000000,0.000000,0.250000,0,0);}
.m8f_c00144{transform:matrix(0.253253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253253,0.000000,0.000000,0.250000,0,0);}
.m6e_c00144{transform:matrix(0.254646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254646,0.000000,0.000000,0.250000,0,0);}
.m68_c00144{transform:matrix(0.255731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255731,0.000000,0.000000,0.250000,0,0);}
.m9f_c00144{transform:matrix(0.257031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257031,0.000000,0.000000,0.250000,0,0);}
.m46_c00144{transform:matrix(0.257770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257770,0.000000,0.000000,0.250000,0,0);}
.m2e_c00144{transform:matrix(0.257774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257774,0.000000,0.000000,0.250000,0,0);}
.m40_c00144{transform:matrix(0.257917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257917,0.000000,0.000000,0.250000,0,0);}
.ma1_c00144{transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);}
.m37_c00144{transform:matrix(0.258679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258679,0.000000,0.000000,0.250000,0,0);}
.mbe_c00144{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m64_c00144{transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);}
.m4c_c00144{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m9e_c00144{transform:matrix(0.261263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261263,0.000000,0.000000,0.250000,0,0);}
.m55_c00144{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.m21_c00144{transform:matrix(0.261762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261762,0.000000,0.000000,0.250000,0,0);}
.m75_c00144{transform:matrix(0.262658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262658,0.000000,0.000000,0.250000,0,0);}
.ma2_c00144{transform:matrix(0.262846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262846,0.000000,0.000000,0.250000,0,0);}
.m76_c00144{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m13_c00144{transform:matrix(0.263720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263720,0.000000,0.000000,0.250000,0,0);}
.m9a_c00144{transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);}
.m84_c00144{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m3d_c00144{transform:matrix(0.264379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264379,0.000000,0.000000,0.250000,0,0);}
.m9_c00144{transform:matrix(0.266076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266076,0.000000,0.000000,0.250000,0,0);}
.m99_c00144{transform:matrix(0.266106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266106,0.000000,0.000000,0.250000,0,0);}
.m16_c00144{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m25_c00144{transform:matrix(0.266295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266295,0.000000,0.000000,0.250000,0,0);}
.mbc_c00144{transform:matrix(0.267523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267523,0.000000,0.000000,0.250000,0,0);}
.m66_c00144{transform:matrix(0.267580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267580,0.000000,0.000000,0.250000,0,0);}
.m24_c00144{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m7c_c00144{transform:matrix(0.268100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268100,0.000000,0.000000,0.250000,0,0);}
.m22_c00144{transform:matrix(0.268480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268480,0.000000,0.000000,0.250000,0,0);}
.mb9_c00144{transform:matrix(0.268555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268555,0.000000,0.000000,0.250000,0,0);}
.m8e_c00144{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.m31_c00144{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.mc4_c00144{transform:matrix(0.270973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270973,0.000000,0.000000,0.250000,0,0);}
.mc8_c00144{transform:matrix(0.270977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270977,0.000000,0.000000,0.250000,0,0);}
.m2d_c00144{transform:matrix(0.271073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271073,0.000000,0.000000,0.250000,0,0);}
.m5_c00144{transform:matrix(0.271768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271768,0.000000,0.000000,0.250000,0,0);}
.m9b_c00144{transform:matrix(0.272153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272153,0.000000,0.000000,0.250000,0,0);}
.m63_c00144{transform:matrix(0.272328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272328,0.000000,0.000000,0.250000,0,0);}
.m6_c00144{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m49_c00144{transform:matrix(0.272544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272544,0.000000,0.000000,0.250000,0,0);}
.m7b_c00144{transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);}
.m7a_c00144{transform:matrix(0.273069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273069,0.000000,0.000000,0.250000,0,0);}
.m2a_c00144{transform:matrix(0.273493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273493,0.000000,0.000000,0.250000,0,0);}
.m5f_c00144{transform:matrix(0.274014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274014,0.000000,0.000000,0.250000,0,0);}
.m89_c00144{transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);}
.m6b_c00144{transform:matrix(0.274328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274328,0.000000,0.000000,0.250000,0,0);}
.m28_c00144{transform:matrix(0.274712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274712,0.000000,0.000000,0.250000,0,0);}
.m3b_c00144{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m27_c00144{transform:matrix(0.275733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275733,0.000000,0.000000,0.250000,0,0);}
.m1_c00144{transform:matrix(0.276116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276116,0.000000,0.000000,0.250000,0,0);}
.mba_c00144{transform:matrix(0.277016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277016,0.000000,0.000000,0.250000,0,0);}
.m6c_c00144{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.mbd_c00144{transform:matrix(0.277595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277595,0.000000,0.000000,0.250000,0,0);}
.m7f_c00144{transform:matrix(0.278826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278826,0.000000,0.000000,0.250000,0,0);}
.m7d_c00144{transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);}
.m73_c00144{transform:matrix(0.279943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279943,0.000000,0.000000,0.250000,0,0);}
.m3_c00144{transform:matrix(0.280308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280308,0.000000,0.000000,0.250000,0,0);}
.mac_c00144{transform:matrix(0.280910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280910,0.000000,0.000000,0.250000,0,0);}
.mc7_c00144{transform:matrix(0.281002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281002,0.000000,0.000000,0.250000,0,0);}
.m1a_c00144{transform:matrix(0.282040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282040,0.000000,0.000000,0.250000,0,0);}
.mb2_c00144{transform:matrix(0.282097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282097,0.000000,0.000000,0.250000,0,0);}
.m93_c00144{transform:matrix(0.282254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282254,0.000000,0.000000,0.250000,0,0);}
.m2c_c00144{transform:matrix(0.282543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282543,0.000000,0.000000,0.250000,0,0);}
.m1e_c00144{transform:matrix(0.283223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283223,0.000000,0.000000,0.250000,0,0);}
.ma_c00144{transform:matrix(0.283405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283405,0.000000,0.000000,0.250000,0,0);}
.m35_c00144{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m56_c00144{transform:matrix(0.285741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285741,0.000000,0.000000,0.250000,0,0);}
.m74_c00144{transform:matrix(0.285765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285765,0.000000,0.000000,0.250000,0,0);}
.m82_c00144{transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);}
.m1d_c00144{transform:matrix(0.286402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286402,0.000000,0.000000,0.250000,0,0);}
.m79_c00144{transform:matrix(0.286884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286884,0.000000,0.000000,0.250000,0,0);}
.m4e_c00144{transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);}
.ma6_c00144{transform:matrix(0.288050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288050,0.000000,0.000000,0.250000,0,0);}
.m7_c00144{transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);}
.m6d_c00144{transform:matrix(0.289281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289281,0.000000,0.000000,0.250000,0,0);}
.m38_c00144{transform:matrix(0.289722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289722,0.000000,0.000000,0.250000,0,0);}
.m72_c00144{transform:matrix(0.289856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289856,0.000000,0.000000,0.250000,0,0);}
.m3e_c00144{transform:matrix(0.289896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289896,0.000000,0.000000,0.250000,0,0);}
.m8a_c00144{transform:matrix(0.289966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289966,0.000000,0.000000,0.250000,0,0);}
.m17_c00144{transform:matrix(0.290584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290584,0.000000,0.000000,0.250000,0,0);}
.md_c00144{transform:matrix(0.290724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290724,0.000000,0.000000,0.250000,0,0);}
.m39_c00144{transform:matrix(0.290813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290813,0.000000,0.000000,0.250000,0,0);}
.m20_c00144{transform:matrix(0.291201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291201,0.000000,0.000000,0.250000,0,0);}
.m33_c00144{transform:matrix(0.291710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291710,0.000000,0.000000,0.250000,0,0);}
.m8c_c00144{transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);}
.m6a_c00144{transform:matrix(0.291966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291966,0.000000,0.000000,0.250000,0,0);}
.ma5_c00144{transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);}
.m44_c00144{transform:matrix(0.293763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293763,0.000000,0.000000,0.250000,0,0);}
.m8_c00144{transform:matrix(0.293952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293952,0.000000,0.000000,0.250000,0,0);}
.mb_c00144{transform:matrix(0.294253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294253,0.000000,0.000000,0.250000,0,0);}
.m88_c00144{transform:matrix(0.294780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294780,0.000000,0.000000,0.250000,0,0);}
.m4f_c00144{transform:matrix(0.295385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295385,0.000000,0.000000,0.250000,0,0);}
.ma0_c00144{transform:matrix(0.297136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297136,0.000000,0.000000,0.250000,0,0);}
.mad_c00144{transform:matrix(0.297405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297405,0.000000,0.000000,0.250000,0,0);}
.m58_c00144{transform:matrix(0.297871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297871,0.000000,0.000000,0.250000,0,0);}
.m65_c00144{transform:matrix(0.298322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298322,0.000000,0.000000,0.250000,0,0);}
.m80_c00144{transform:matrix(0.298382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298382,0.000000,0.000000,0.250000,0,0);}
.m34_c00144{transform:matrix(0.298698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298698,0.000000,0.000000,0.250000,0,0);}
.m53_c00144{transform:matrix(0.298763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298763,0.000000,0.000000,0.250000,0,0);}
.mbb_c00144{transform:matrix(0.298790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298790,0.000000,0.000000,0.250000,0,0);}
.m6f_c00144{transform:matrix(0.299332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299332,0.000000,0.000000,0.250000,0,0);}
.m83_c00144{transform:matrix(0.300014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300014,0.000000,0.000000,0.250000,0,0);}
.m4a_c00144{transform:matrix(0.300166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300166,0.000000,0.000000,0.250000,0,0);}
.m3f_c00144{transform:matrix(0.300267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300267,0.000000,0.000000,0.250000,0,0);}
.m8d_c00144{transform:matrix(0.300348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300348,0.000000,0.000000,0.250000,0,0);}
.mc1_c00144{transform:matrix(0.300511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300511,0.000000,0.000000,0.250000,0,0);}
.m15_c00144{transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);}
.maa_c00144{transform:matrix(0.300728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300728,0.000000,0.000000,0.250000,0,0);}
.m9c_c00144{transform:matrix(0.300736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300736,0.000000,0.000000,0.250000,0,0);}
.maf_c00144{transform:matrix(0.300926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300926,0.000000,0.000000,0.250000,0,0);}
.m11_c00144{transform:matrix(0.301935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301935,0.000000,0.000000,0.250000,0,0);}
.m81_c00144{transform:matrix(0.301987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301987,0.000000,0.000000,0.250000,0,0);}
.m94_c00144{transform:matrix(0.302057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302057,0.000000,0.000000,0.250000,0,0);}
.m86_c00144{transform:matrix(0.302074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302074,0.000000,0.000000,0.250000,0,0);}
.mae_c00144{transform:matrix(0.302300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302300,0.000000,0.000000,0.250000,0,0);}
.m9d_c00144{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m42_c00144{transform:matrix(0.302872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302872,0.000000,0.000000,0.250000,0,0);}
.m90_c00144{transform:matrix(0.303583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303583,0.000000,0.000000,0.250000,0,0);}
.m23_c00144{transform:matrix(0.303763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303763,0.000000,0.000000,0.250000,0,0);}
.m3a_c00144{transform:matrix(0.304477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304477,0.000000,0.000000,0.250000,0,0);}
.m70_c00144{transform:matrix(0.304827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304827,0.000000,0.000000,0.250000,0,0);}
.m98_c00144{transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);}
.m59_c00144{transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);}
.m97_c00144{transform:matrix(0.305758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305758,0.000000,0.000000,0.250000,0,0);}
.mbf_c00144{transform:matrix(0.306734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306734,0.000000,0.000000,0.250000,0,0);}
.m43_c00144{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);}
.m48_c00144{transform:matrix(0.307571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307571,0.000000,0.000000,0.250000,0,0);}
.m85_c00144{transform:matrix(0.307871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307871,0.000000,0.000000,0.250000,0,0);}
.m10_c00144{transform:matrix(0.307893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307893,0.000000,0.000000,0.250000,0,0);}
.mc_c00144{transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);}
.mab_c00144{transform:matrix(0.308959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308959,0.000000,0.000000,0.250000,0,0);}
.m95_c00144{transform:matrix(0.309128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309128,0.000000,0.000000,0.250000,0,0);}
.m1b_c00144{transform:matrix(0.309603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309603,0.000000,0.000000,0.250000,0,0);}
.m77_c00144{transform:matrix(0.310593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310593,0.000000,0.000000,0.250000,0,0);}
.m5a_c00144{transform:matrix(0.310665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310665,0.000000,0.000000,0.250000,0,0);}
.m52_c00144{transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);}
.mcd_c00144{transform:matrix(0.311066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311066,0.000000,0.000000,0.250000,0,0);}
.m5d_c00144{transform:matrix(0.311796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311796,0.000000,0.000000,0.250000,0,0);}
.me_c00144{transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);}
.mb4_c00144{transform:matrix(0.313965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313965,0.000000,0.000000,0.250000,0,0);}
.mf_c00144{transform:matrix(0.314076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314076,0.000000,0.000000,0.250000,0,0);}
.mb6_c00144{transform:matrix(0.314686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314686,0.000000,0.000000,0.250000,0,0);}
.m67_c00144{transform:matrix(0.315105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315105,0.000000,0.000000,0.250000,0,0);}
.mcb_c00144{transform:matrix(0.315717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315717,0.000000,0.000000,0.250000,0,0);}
.m18_c00144{transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);}
.m51_c00144{transform:matrix(0.316225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316225,0.000000,0.000000,0.250000,0,0);}
.m62_c00144{transform:matrix(0.316543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316543,0.000000,0.000000,0.250000,0,0);}
.m5b_c00144{transform:matrix(0.317369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317369,0.000000,0.000000,0.250000,0,0);}
.ma4_c00144{transform:matrix(0.317744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317744,0.000000,0.000000,0.250000,0,0);}
.m30_c00144{transform:matrix(0.318295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318295,0.000000,0.000000,0.250000,0,0);}
.m78_c00144{transform:matrix(0.318698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318698,0.000000,0.000000,0.250000,0,0);}
.mc5_c00144{transform:matrix(0.323234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323234,0.000000,0.000000,0.250000,0,0);}
.m7e_c00144{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.m87_c00144{transform:matrix(0.323847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323847,0.000000,0.000000,0.250000,0,0);}
.mca_c00144{transform:matrix(0.323852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323852,0.000000,0.000000,0.250000,0,0);}
.mc0_c00144{transform:matrix(0.324242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324242,0.000000,0.000000,0.250000,0,0);}
.m36_c00144{transform:matrix(0.324794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324794,0.000000,0.000000,0.250000,0,0);}
.m4b_c00144{transform:matrix(0.326049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326049,0.000000,0.000000,0.250000,0,0);}
.m5e_c00144{transform:matrix(0.326313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326313,0.000000,0.000000,0.250000,0,0);}
.m1f_c00144{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.mb0_c00144{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.m69_c00144{transform:matrix(0.327605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327605,0.000000,0.000000,0.250000,0,0);}
.m5c_c00144{transform:matrix(0.328660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328660,0.000000,0.000000,0.250000,0,0);}
.mb7_c00144{transform:matrix(0.329927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329927,0.000000,0.000000,0.250000,0,0);}
.m29_c00144{transform:matrix(0.330032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330032,0.000000,0.000000,0.250000,0,0);}
.mb1_c00144{transform:matrix(0.330353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330353,0.000000,0.000000,0.250000,0,0);}
.m19_c00144{transform:matrix(0.331082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331082,0.000000,0.000000,0.250000,0,0);}
.m14_c00144{transform:matrix(0.331108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331108,0.000000,0.000000,0.250000,0,0);}
.m4d_c00144{transform:matrix(0.331423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331423,0.000000,0.000000,0.250000,0,0);}
.mc3_c00144{transform:matrix(0.331631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331631,0.000000,0.000000,0.250000,0,0);}
.m45_c00144{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.mb5_c00144{transform:matrix(0.333494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333494,0.000000,0.000000,0.250000,0,0);}
.m54_c00144{transform:matrix(0.336573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336573,0.000000,0.000000,0.250000,0,0);}
.m57_c00144{transform:matrix(0.337104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337104,0.000000,0.000000,0.250000,0,0);}
.mb8_c00144{transform:matrix(0.337176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337176,0.000000,0.000000,0.250000,0,0);}
.m3c_c00144{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.mc6_c00144{transform:matrix(0.342217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342217,0.000000,0.000000,0.250000,0,0);}
.m2_c00144{transform:matrix(0.342622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342622,0.000000,0.000000,0.250000,0,0);}
.ma7_c00144{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.m91_c00144{transform:matrix(0.344194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344194,0.000000,0.000000,0.250000,0,0);}
.m71_c00144{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.mc9_c00144{transform:matrix(0.349720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349720,0.000000,0.000000,0.250000,0,0);}
.mcc_c00144{transform:matrix(0.350280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350280,0.000000,0.000000,0.250000,0,0);}
.m32_c00144{transform:matrix(0.350446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350446,0.000000,0.000000,0.250000,0,0);}
.mb3_c00144{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.mce_c00144{transform:matrix(0.359812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359812,0.000000,0.000000,0.250000,0,0);}
.m4_c00144{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m26_c00144{transform:matrix(0.367117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367117,0.000000,0.000000,0.250000,0,0);}
.m2b_c00144{transform:matrix(0.368636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368636,0.000000,0.000000,0.250000,0,0);}
.ma8_c00144{transform:matrix(0.391625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391625,0.000000,0.000000,0.250000,0,0);}
.ma3_c00144{transform:matrix(0.409469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409469,0.000000,0.000000,0.250000,0,0);}
.v0_c00144{vertical-align:0.000000px;}
.lsc_c00144{letter-spacing:-2.744280px;}
.ls11_c00144{letter-spacing:-2.689394px;}
.lsa_c00144{letter-spacing:-2.591827px;}
.ls9_c00144{letter-spacing:-2.485534px;}
.ls16_c00144{letter-spacing:-1.897474px;}
.lsb_c00144{letter-spacing:-1.419185px;}
.ls1d_c00144{letter-spacing:-1.325095px;}
.ls13_c00144{letter-spacing:-0.250906px;}
.ls6_c00144{letter-spacing:0.000000px;}
.ls14_c00144{letter-spacing:0.462607px;}
.lsd_c00144{letter-spacing:0.533174px;}
.lse_c00144{letter-spacing:1.058508px;}
.ls17_c00144{letter-spacing:1.139114px;}
.ls1_c00144{letter-spacing:1.246687px;}
.ls1c_c00144{letter-spacing:1.858270px;}
.ls5_c00144{letter-spacing:2.509056px;}
.ls4_c00144{letter-spacing:2.948141px;}
.ls8_c00144{letter-spacing:3.112798px;}
.ls18_c00144{letter-spacing:3.177900px;}
.ls10_c00144{letter-spacing:3.246091px;}
.ls0_c00144{letter-spacing:3.261773px;}
.ls1a_c00144{letter-spacing:3.340181px;}
.ls19_c00144{letter-spacing:3.603610px;}
.ls2_c00144{letter-spacing:3.720864px;}
.ls15_c00144{letter-spacing:3.781810px;}
.ls7_c00144{letter-spacing:3.920400px;}
.ls12_c00144{letter-spacing:3.960000px;}
.ls1e_c00144{letter-spacing:4.296610px;}
.ls3_c00144{letter-spacing:11.525976px;}
.ls1b_c00144{letter-spacing:58.449798px;}
.lsf_c00144{letter-spacing:59.875398px;}
.sc__c00144{text-shadow:none;}
.sc0_c00144{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00144{-webkit-text-stroke:0px transparent;}
.sc0_c00144{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00144{word-spacing:-22.863773px;}
.ws2_c00144{word-spacing:-22.848091px;}
.ws8_c00144{word-spacing:-22.550141px;}
.ws1_c00144{word-spacing:-19.602000px;}
.ws4_c00144{word-spacing:-19.351094px;}
.ws3_c00144{word-spacing:-16.912606px;}
.ws7_c00144{word-spacing:-3.606768px;}
.ws5_c00144{word-spacing:-2.665872px;}
.ws9_c00144{word-spacing:0.000000px;}
.ws6_c00144{word-spacing:2.038608px;}
._5_c00144{margin-left:-12.513917px;}
._a_c00144{width:3.418589px;}
._7_c00144{width:5.096520px;}
._0_c00144{width:6.335366px;}
._1_c00144{width:8.624880px;}
._2_c00144{width:10.585080px;}
._b_c00144{width:18.933148px;}
._c_c00144{width:20.856528px;}
._8_c00144{width:22.267872px;}
._3_c00144{width:23.679216px;}
._f_c00144{width:25.518240px;}
._e_c00144{width:26.611200px;}
._4_c00144{width:28.932552px;}
._9_c00144{width:31.533163px;}
._d_c00144{width:32.581296px;}
._6_c00144{width:36.851760px;}
.fc0_c00144{color:transparent;}
.fs13_c00144{font-size:17.028000px;}
.fs0_c00144{font-size:22.176000px;}
.fs14_c00144{font-size:26.136000px;}
.fs12_c00144{font-size:26.928000px;}
.fs3_c00144{font-size:27.720000px;}
.fsc_c00144{font-size:45.144000px;}
.fs11_c00144{font-size:56.628000px;}
.fsf_c00144{font-size:58.449798px;}
.fs6_c00144{font-size:59.875398px;}
.fsd_c00144{font-size:63.558000px;}
.fsa_c00144{font-size:66.330000px;}
.fse_c00144{font-size:72.072198px;}
.fs15_c00144{font-size:72.864000px;}
.fs4_c00144{font-size:74.052198px;}
.fs5_c00144{font-size:74.844000px;}
.fs8_c00144{font-size:75.636198px;}
.fs2_c00144{font-size:78.012198px;}
.fs1_c00144{font-size:78.408000px;}
.fs10_c00144{font-size:78.804000px;}
.fs7_c00144{font-size:79.200000px;}
.fs9_c00144{font-size:85.932198px;}
.fsb_c00144{font-size:89.694000px;}
.y0_c00144{bottom:0.000000px;}
.y2a_c00144{bottom:23.077935px;}
.y29_c00144{bottom:28.062585px;}
.y28_c00144{bottom:51.941385px;}
.y1_c00144{bottom:76.500000px;}
.y27_c00144{bottom:86.517135px;}
.y26_c00144{bottom:116.098335px;}
.y25_c00144{bottom:123.939135px;}
.y24_c00144{bottom:140.689935px;}
.y23_c00144{bottom:156.722985px;}
.y22_c00144{bottom:170.271135px;}
.y21_c00144{bottom:184.887396px;}
.y20_c00144{bottom:189.516735px;}
.y1f_c00144{bottom:205.911135px;}
.y1e_c00144{bottom:240.481935px;}
.y1d_c00144{bottom:273.270735px;}
.y1c_c00144{bottom:305.341785px;}
.y1b_c00144{bottom:319.959135px;}
.y1a_c00144{bottom:338.130585px;}
.y19_c00144{bottom:351.678735px;}
.y18_c00144{bottom:371.280735px;}
.y17_c00144{bottom:404.064585px;}
.y16_c00144{bottom:436.501935px;}
.y15_c00144{bottom:450.040185px;}
.y14_c00144{bottom:469.290735px;}
.y13_c00144{bottom:501.361785px;}
.y12_c00144{bottom:565.870185px;}
.y11_c00144{bottom:599.733135px;}
.y10_c00144{bottom:614.345535px;}
.yf_c00144{bottom:631.091385px;}
.ye_c00144{bottom:664.954335px;}
.yd_c00144{bottom:697.025385px;}
.yc_c00144{bottom:729.101385px;}
.yb_c00144{bottom:761.538735px;}
.ya_c00144{bottom:794.327535px;}
.y9_c00144{bottom:826.759935px;}
.y8_c00144{bottom:859.548735px;}
.y7_c00144{bottom:891.981135px;}
.y6_c00144{bottom:926.551935px;}
.y5_c00144{bottom:1040.951385px;}
.y4_c00144{bottom:1057.702185px;}
.y2_c00144{bottom:1076.234985px;}
.y3_c00144{bottom:1077.304185px;}
.h2_c00144{height:23.128875px;}
.h14_c00144{height:27.259031px;}
.h13_c00144{height:28.085063px;}
.h5_c00144{height:28.911094px;}
.h10_c00144{height:38.927565px;}
.h8_c00144{height:39.877015px;}
.hd_c00144{height:47.083781px;}
.h12_c00144{height:59.061234px;}
.he_c00144{height:66.289008px;}
.h15_c00144{height:71.512031px;}
.h6_c00144{height:72.678183px;}
.h7_c00144{height:73.455293px;}
.ha_c00144{height:74.195860px;}
.hf_c00144{height:75.169050px;}
.h3_c00144{height:76.953164px;}
.h11_c00144{height:77.341816px;}
.h9_c00144{height:77.730469px;}
.h4_c00144{height:81.364285px;}
.hb_c00144{height:84.337753px;}
.hc_c00144{height:88.029756px;}
.h1_c00144{height:1110.000000px;}
.h0_c00144{height:1263.000000px;}
.w1_c00144{width:733.500000px;}
.w0_c00144{width:892.500000px;}
.x0_c00144{left:0.000000px;}
.x2_c00144{left:43.767435px;}
.x1b_c00144{left:70.249935px;}
.x6_c00144{left:71.329035px;}
.x5e_c00144{left:72.462585px;}
.x72_c00144{left:73.566435px;}
.x1_c00144{left:79.500000px;}
.x2f_c00144{left:93.113985px;}
.x12_c00144{left:103.330785px;}
.x67_c00144{left:105.295935px;}
.x63_c00144{left:114.275235px;}
.x40_c00144{left:115.285035px;}
.x5_c00144{left:117.161085px;}
.x64_c00144{left:118.675785px;}
.x33_c00144{left:124.709835px;}
.x23_c00144{left:125.848335px;}
.x1c_c00144{left:127.051185px;}
.x53_c00144{left:137.703585px;}
.x7_c00144{left:147.945135px;}
.x6d_c00144{left:149.118285px;}
.x59_c00144{left:150.182535px;}
.x41_c00144{left:158.211435px;}
.x39_c00144{left:159.701385px;}
.x6e_c00144{left:163.007985px;}
.x29_c00144{left:170.442885px;}
.x13_c00144{left:181.035885px;}
.x24_c00144{left:182.565435px;}
.x4b_c00144{left:183.599985px;}
.x2a_c00144{left:191.717985px;}
.x42_c00144{left:192.782235px;}
.x65_c00144{left:193.994985px;}
.x4c_c00144{left:203.568285px;}
.x68_c00144{left:204.726585px;}
.x14_c00144{left:215.062185px;}
.x5a_c00144{left:216.477885px;}
.x4d_c00144{left:218.334135px;}
.x2b_c00144{left:226.823385px;}
.x4a_c00144{left:233.372235px;}
.x8_c00144{left:237.525285px;}
.x70_c00144{left:239.257785px;}
.x15_c00144{left:247.667835px;}
.x34_c00144{left:249.034035px;}
.x69_c00144{left:251.246685px;}
.x5b_c00144{left:258.755835px;}
.x9_c00144{left:260.290335px;}
.x1d_c00144{left:270.635835px;}
.x25_c00144{left:282.109935px;}
.x5f_c00144{left:283.441485px;}
.xa_c00144{left:292.212885px;}
.x54_c00144{left:294.539385px;}
.x66_c00144{left:305.236335px;}
.x26_c00144{left:314.309685px;}
.x43_c00144{left:316.264935px;}
.x16_c00144{left:326.150085px;}
.x6a_c00144{left:327.674685px;}
.x1e_c00144{left:336.411435px;}
.x30_c00144{left:337.832085px;}
.x2c_c00144{left:340.059585px;}
.x47_c00144{left:348.241935px;}
.xb_c00144{left:349.781385px;}
.x3a_c00144{left:359.280435px;}
.x35_c00144{left:360.399135px;}
.xc_c00144{left:370.818885px;}
.x6f_c00144{left:372.125685px;}
.x27_c00144{left:381.317835px;}
.x4e_c00144{left:382.391985px;}
.x17_c00144{left:392.722635px;}
.x1f_c00144{left:394.276935px;}
.xd_c00144{left:404.558085px;}
.x51_c00144{left:414.859035px;}
.x55_c00144{left:416.047035px;}
.x3b_c00144{left:426.585585px;}
.x28_c00144{left:427.818135px;}
.xe_c00144{left:437.341935px;}
.x44_c00144{left:438.450735px;}
.x52_c00144{left:447.964635px;}
.x20_c00144{left:449.207085px;}
.x73_c00144{left:450.231735px;}
.x3c_c00144{left:460.270335px;}
.x31_c00144{left:471.001935px;}
.x3d_c00144{left:482.372085px;}
.x3e_c00144{left:492.875985px;}
.x6b_c00144{left:494.469885px;}
.x2d_c00144{left:503.988735px;}
.x71_c00144{left:505.528185px;}
.x60_c00144{left:507.245835px;}
.x36_c00144{left:515.195535px;}
.xf_c00144{left:516.388485px;}
.x37_c00144{left:526.535985px;}
.x56_c00144{left:527.966535px;}
.x45_c00144{left:537.054735px;}
.x74_c00144{left:538.678335px;}
.x4f_c00144{left:550.068285px;}
.x18_c00144{left:560.423685px;}
.x3f_c00144{left:570.991935px;}
.x10_c00144{left:581.238435px;}
.x50_c00144{left:582.797685px;}
.x21_c00144{left:592.489785px;}
.x57_c00144{left:593.549085px;}
.x61_c00144{left:605.300385px;}
.x19_c00144{left:614.829135px;}
.x46_c00144{left:624.422235px;}
.x48_c00144{left:625.516185px;}
.x32_c00144{left:626.600235px;}
.x11_c00144{left:637.386285px;}
.x62_c00144{left:638.787135px;}
.x3_c00144{left:648.756435px;}
.x22_c00144{left:659.314785px;}
.x5c_c00144{left:660.572085px;}
.x2e_c00144{left:669.694935px;}
.x38_c00144{left:671.219535px;}
.x5d_c00144{left:680.733435px;}
.x49_c00144{left:682.149135px;}
.x1a_c00144{left:693.182685px;}
.x6c_c00144{left:694.405335px;}
.x58_c00144{left:695.786385px;}
.x75_c00144{left:697.405035px;}
.x4_c00144{left:698.815785px;}
@media print{
.v0_c00144{vertical-align:0.000000pt;}
.lsc_c00144{letter-spacing:-2.439360pt;}
.ls11_c00144{letter-spacing:-2.390573pt;}
.lsa_c00144{letter-spacing:-2.303846pt;}
.ls9_c00144{letter-spacing:-2.209363pt;}
.ls16_c00144{letter-spacing:-1.686643pt;}
.lsb_c00144{letter-spacing:-1.261498pt;}
.ls1d_c00144{letter-spacing:-1.177862pt;}
.ls13_c00144{letter-spacing:-0.223027pt;}
.ls6_c00144{letter-spacing:0.000000pt;}
.ls14_c00144{letter-spacing:0.411206pt;}
.lsd_c00144{letter-spacing:0.473933pt;}
.lse_c00144{letter-spacing:0.940896pt;}
.ls17_c00144{letter-spacing:1.012546pt;}
.ls1_c00144{letter-spacing:1.108166pt;}
.ls1c_c00144{letter-spacing:1.651795pt;}
.ls5_c00144{letter-spacing:2.230272pt;}
.ls4_c00144{letter-spacing:2.620570pt;}
.ls8_c00144{letter-spacing:2.766931pt;}
.ls18_c00144{letter-spacing:2.824800pt;}
.ls10_c00144{letter-spacing:2.885414pt;}
.ls0_c00144{letter-spacing:2.899354pt;}
.ls1a_c00144{letter-spacing:2.969050pt;}
.ls19_c00144{letter-spacing:3.203209pt;}
.ls2_c00144{letter-spacing:3.307435pt;}
.ls15_c00144{letter-spacing:3.361609pt;}
.ls7_c00144{letter-spacing:3.484800pt;}
.ls12_c00144{letter-spacing:3.520000pt;}
.ls1e_c00144{letter-spacing:3.819209pt;}
.ls3_c00144{letter-spacing:10.245312pt;}
.ls1b_c00144{letter-spacing:51.955376pt;}
.lsf_c00144{letter-spacing:53.222576pt;}
.ws0_c00144{word-spacing:-20.323354pt;}
.ws2_c00144{word-spacing:-20.309414pt;}
.ws8_c00144{word-spacing:-20.044570pt;}
.ws1_c00144{word-spacing:-17.424000pt;}
.ws4_c00144{word-spacing:-17.200973pt;}
.ws3_c00144{word-spacing:-15.033427pt;}
.ws7_c00144{word-spacing:-3.206016pt;}
.ws5_c00144{word-spacing:-2.369664pt;}
.ws9_c00144{word-spacing:0.000000pt;}
.ws6_c00144{word-spacing:1.812096pt;}
._5_c00144{margin-left:-11.123482pt;}
._a_c00144{width:3.038746pt;}
._7_c00144{width:4.530240pt;}
._0_c00144{width:5.631437pt;}
._1_c00144{width:7.666560pt;}
._2_c00144{width:9.408960pt;}
._b_c00144{width:16.829464pt;}
._c_c00144{width:18.539136pt;}
._8_c00144{width:19.793664pt;}
._3_c00144{width:21.048192pt;}
._f_c00144{width:22.682880pt;}
._e_c00144{width:23.654400pt;}
._4_c00144{width:25.717824pt;}
._9_c00144{width:28.029478pt;}
._d_c00144{width:28.961152pt;}
._6_c00144{width:32.757120pt;}
.fs13_c00144{font-size:15.136000pt;}
.fs0_c00144{font-size:19.712000pt;}
.fs14_c00144{font-size:23.232000pt;}
.fs12_c00144{font-size:23.936000pt;}
.fs3_c00144{font-size:24.640000pt;}
.fsc_c00144{font-size:40.128000pt;}
.fs11_c00144{font-size:50.336000pt;}
.fsf_c00144{font-size:51.955376pt;}
.fs6_c00144{font-size:53.222576pt;}
.fsd_c00144{font-size:56.496000pt;}
.fsa_c00144{font-size:58.960000pt;}
.fse_c00144{font-size:64.064176pt;}
.fs15_c00144{font-size:64.768000pt;}
.fs4_c00144{font-size:65.824176pt;}
.fs5_c00144{font-size:66.528000pt;}
.fs8_c00144{font-size:67.232176pt;}
.fs2_c00144{font-size:69.344176pt;}
.fs1_c00144{font-size:69.696000pt;}
.fs10_c00144{font-size:70.048000pt;}
.fs7_c00144{font-size:70.400000pt;}
.fs9_c00144{font-size:76.384176pt;}
.fsb_c00144{font-size:79.728000pt;}
.y0_c00144{bottom:0.000000pt;}
.y2a_c00144{bottom:20.513720pt;}
.y29_c00144{bottom:24.944520pt;}
.y28_c00144{bottom:46.170120pt;}
.y1_c00144{bottom:68.000000pt;}
.y27_c00144{bottom:76.904120pt;}
.y26_c00144{bottom:103.198520pt;}
.y25_c00144{bottom:110.168120pt;}
.y24_c00144{bottom:125.057720pt;}
.y23_c00144{bottom:139.309320pt;}
.y22_c00144{bottom:151.352120pt;}
.y21_c00144{bottom:164.344352pt;}
.y20_c00144{bottom:168.459320pt;}
.y1f_c00144{bottom:183.032120pt;}
.y1e_c00144{bottom:213.761720pt;}
.y1d_c00144{bottom:242.907320pt;}
.y1c_c00144{bottom:271.414920pt;}
.y1b_c00144{bottom:284.408120pt;}
.y1a_c00144{bottom:300.560520pt;}
.y19_c00144{bottom:312.603320pt;}
.y18_c00144{bottom:330.027320pt;}
.y17_c00144{bottom:359.168520pt;}
.y16_c00144{bottom:388.001720pt;}
.y15_c00144{bottom:400.035720pt;}
.y14_c00144{bottom:417.147320pt;}
.y13_c00144{bottom:445.654920pt;}
.y12_c00144{bottom:502.995720pt;}
.y11_c00144{bottom:533.096120pt;}
.y10_c00144{bottom:546.084920pt;}
.yf_c00144{bottom:560.970120pt;}
.ye_c00144{bottom:591.070520pt;}
.yd_c00144{bottom:619.578120pt;}
.yc_c00144{bottom:648.090120pt;}
.yb_c00144{bottom:676.923320pt;}
.ya_c00144{bottom:706.068920pt;}
.y9_c00144{bottom:734.897720pt;}
.y8_c00144{bottom:764.043320pt;}
.y7_c00144{bottom:792.872120pt;}
.y6_c00144{bottom:823.601720pt;}
.y5_c00144{bottom:925.290120pt;}
.y4_c00144{bottom:940.179720pt;}
.y2_c00144{bottom:956.653320pt;}
.y3_c00144{bottom:957.603720pt;}
.h2_c00144{height:20.559000pt;}
.h14_c00144{height:24.230250pt;}
.h13_c00144{height:24.964500pt;}
.h5_c00144{height:25.698750pt;}
.h10_c00144{height:34.602280pt;}
.h8_c00144{height:35.446236pt;}
.hd_c00144{height:41.852250pt;}
.h12_c00144{height:52.498875pt;}
.he_c00144{height:58.923563pt;}
.h15_c00144{height:63.566250pt;}
.h6_c00144{height:64.602829pt;}
.h7_c00144{height:65.293594pt;}
.ha_c00144{height:65.951876pt;}
.hf_c00144{height:66.816934pt;}
.h3_c00144{height:68.402813pt;}
.h11_c00144{height:68.748281pt;}
.h9_c00144{height:69.093750pt;}
.h4_c00144{height:72.323809pt;}
.hb_c00144{height:74.966891pt;}
.hc_c00144{height:78.248672pt;}
.h1_c00144{height:986.666667pt;}
.h0_c00144{height:1122.666667pt;}
.w1_c00144{width:652.000000pt;}
.w0_c00144{width:793.333333pt;}
.x0_c00144{left:0.000000pt;}
.x2_c00144{left:38.904387pt;}
.x1b_c00144{left:62.444387pt;}
.x6_c00144{left:63.403587pt;}
.x5e_c00144{left:64.411187pt;}
.x72_c00144{left:65.392387pt;}
.x1_c00144{left:70.666667pt;}
.x2f_c00144{left:82.767987pt;}
.x12_c00144{left:91.849587pt;}
.x67_c00144{left:93.596387pt;}
.x63_c00144{left:101.577987pt;}
.x40_c00144{left:102.475587pt;}
.x5_c00144{left:104.143187pt;}
.x64_c00144{left:105.489587pt;}
.x33_c00144{left:110.853187pt;}
.x23_c00144{left:111.865187pt;}
.x1c_c00144{left:112.934387pt;}
.x53_c00144{left:122.403187pt;}
.x7_c00144{left:131.506787pt;}
.x6d_c00144{left:132.549587pt;}
.x59_c00144{left:133.495587pt;}
.x41_c00144{left:140.632387pt;}
.x39_c00144{left:141.956787pt;}
.x6e_c00144{left:144.895987pt;}
.x29_c00144{left:151.504787pt;}
.x13_c00144{left:160.920787pt;}
.x24_c00144{left:162.280387pt;}
.x4b_c00144{left:163.199987pt;}
.x2a_c00144{left:170.415987pt;}
.x42_c00144{left:171.361987pt;}
.x65_c00144{left:172.439987pt;}
.x4c_c00144{left:180.949587pt;}
.x68_c00144{left:181.979187pt;}
.x14_c00144{left:191.166387pt;}
.x5a_c00144{left:192.424787pt;}
.x4d_c00144{left:194.074787pt;}
.x2b_c00144{left:201.620787pt;}
.x4a_c00144{left:207.441987pt;}
.x8_c00144{left:211.133587pt;}
.x70_c00144{left:212.673587pt;}
.x15_c00144{left:220.149187pt;}
.x34_c00144{left:221.363587pt;}
.x69_c00144{left:223.330387pt;}
.x5b_c00144{left:230.005187pt;}
.x9_c00144{left:231.369187pt;}
.x1d_c00144{left:240.565187pt;}
.x25_c00144{left:250.764387pt;}
.x5f_c00144{left:251.947987pt;}
.xa_c00144{left:259.744787pt;}
.x54_c00144{left:261.812787pt;}
.x66_c00144{left:271.321187pt;}
.x26_c00144{left:279.386387pt;}
.x43_c00144{left:281.124387pt;}
.x16_c00144{left:289.911187pt;}
.x6a_c00144{left:291.266387pt;}
.x1e_c00144{left:299.032387pt;}
.x30_c00144{left:300.295187pt;}
.x2c_c00144{left:302.275187pt;}
.x47_c00144{left:309.548387pt;}
.xb_c00144{left:310.916787pt;}
.x3a_c00144{left:319.360387pt;}
.x35_c00144{left:320.354787pt;}
.xc_c00144{left:329.616787pt;}
.x6f_c00144{left:330.778387pt;}
.x27_c00144{left:338.949187pt;}
.x4e_c00144{left:339.903987pt;}
.x17_c00144{left:349.086787pt;}
.x1f_c00144{left:350.468387pt;}
.xd_c00144{left:359.607187pt;}
.x51_c00144{left:368.763587pt;}
.x55_c00144{left:369.819587pt;}
.x3b_c00144{left:379.187187pt;}
.x28_c00144{left:380.282787pt;}
.xe_c00144{left:388.748387pt;}
.x44_c00144{left:389.733987pt;}
.x52_c00144{left:398.190787pt;}
.x20_c00144{left:399.295187pt;}
.x73_c00144{left:400.205987pt;}
.x3c_c00144{left:409.129187pt;}
.x31_c00144{left:418.668387pt;}
.x3d_c00144{left:428.775187pt;}
.x3e_c00144{left:438.111987pt;}
.x6b_c00144{left:439.528787pt;}
.x2d_c00144{left:447.989987pt;}
.x71_c00144{left:449.358387pt;}
.x60_c00144{left:450.885187pt;}
.x36_c00144{left:457.951587pt;}
.xf_c00144{left:459.011987pt;}
.x37_c00144{left:468.031987pt;}
.x56_c00144{left:469.303587pt;}
.x45_c00144{left:477.381987pt;}
.x74_c00144{left:478.825187pt;}
.x4f_c00144{left:488.949587pt;}
.x18_c00144{left:498.154387pt;}
.x3f_c00144{left:507.548387pt;}
.x10_c00144{left:516.656387pt;}
.x50_c00144{left:518.042387pt;}
.x21_c00144{left:526.657587pt;}
.x57_c00144{left:527.599187pt;}
.x61_c00144{left:538.044787pt;}
.x19_c00144{left:546.514787pt;}
.x46_c00144{left:555.041987pt;}
.x48_c00144{left:556.014387pt;}
.x32_c00144{left:556.977987pt;}
.x11_c00144{left:566.565587pt;}
.x62_c00144{left:567.810787pt;}
.x3_c00144{left:576.672387pt;}
.x22_c00144{left:586.057587pt;}
.x5c_c00144{left:587.175187pt;}
.x2e_c00144{left:595.284387pt;}
.x38_c00144{left:596.639587pt;}
.x5d_c00144{left:605.096387pt;}
.x49_c00144{left:606.354787pt;}
.x1a_c00144{left:616.162387pt;}
.x6c_c00144{left:617.249187pt;}
.x58_c00144{left:618.476787pt;}
.x75_c00144{left:619.915587pt;}
.x4_c00144{left:621.169587pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4607cdffb8545347a73cb514.woff2')format("woff");}.ff1_c00145{font-family:ff1_c00145;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00145;src:url('chunks/assets/font_a1f4d9e5317853153d8c91f5.woff2')format("woff");}.ff2_c00145{font-family:ff2_c00145;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00145;src:url('chunks/assets/font_cf132c0a018543cfac24dd71.woff2')format("woff");}.ff3_c00145{font-family:ff3_c00145;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m9c_c00145{transform:matrix(0.174192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174192,0.000000,0.000000,0.250000,0,0);}
.m7c_c00145{transform:matrix(0.180761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180761,0.000000,0.000000,0.250000,0,0);}
.m53_c00145{transform:matrix(0.182433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182433,0.000000,0.000000,0.250000,0,0);}
.m2_c00145{transform:matrix(0.183460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183460,0.000000,0.000000,0.250000,0,0);}
.mca_c00145{transform:matrix(0.185811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185811,0.000000,0.000000,0.250000,0,0);}
.m61_c00145{transform:matrix(0.188747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188747,0.000000,0.000000,0.250000,0,0);}
.m54_c00145{transform:matrix(0.202702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202702,0.000000,0.000000,0.250000,0,0);}
.m55_c00145{transform:matrix(0.204955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204955,0.000000,0.000000,0.250000,0,0);}
.mc9_c00145{transform:matrix(0.206081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206081,0.000000,0.000000,0.250000,0,0);}
.m89_c00145{transform:matrix(0.220701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220701,0.000000,0.000000,0.250000,0,0);}
.mae_c00145{transform:matrix(0.224999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224999,0.000000,0.000000,0.250000,0,0);}
.mb0_c00145{transform:matrix(0.227167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227167,0.000000,0.000000,0.250000,0,0);}
.mc_c00145{transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);}
.m91_c00145{transform:matrix(0.237455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237455,0.000000,0.000000,0.250000,0,0);}
.m5a_c00145{transform:matrix(0.239192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239192,0.000000,0.000000,0.250000,0,0);}
.m0_c00145{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m56_c00145{transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);}
.m97_c00145{transform:matrix(0.251435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251435,0.000000,0.000000,0.250000,0,0);}
.mb2_c00145{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.ma9_c00145{transform:matrix(0.252169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252169,0.000000,0.000000,0.250000,0,0);}
.m7e_c00145{transform:matrix(0.253143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253143,0.000000,0.000000,0.250000,0,0);}
.m2d_c00145{transform:matrix(0.253364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253364,0.000000,0.000000,0.250000,0,0);}
.mb8_c00145{transform:matrix(0.254057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254057,0.000000,0.000000,0.250000,0,0);}
.m6_c00145{transform:matrix(0.255251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255251,0.000000,0.000000,0.250000,0,0);}
.m1b_c00145{transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);}
.m3c_c00145{transform:matrix(0.257794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257794,0.000000,0.000000,0.250000,0,0);}
.m9f_c00145{transform:matrix(0.257917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257917,0.000000,0.000000,0.250000,0,0);}
.m37_c00145{transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);}
.m4f_c00145{transform:matrix(0.258304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258304,0.000000,0.000000,0.250000,0,0);}
.maf_c00145{transform:matrix(0.259613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259613,0.000000,0.000000,0.250000,0,0);}
.m78_c00145{transform:matrix(0.260405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260405,0.000000,0.000000,0.250000,0,0);}
.mc5_c00145{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.mb5_c00145{transform:matrix(0.261624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261624,0.000000,0.000000,0.250000,0,0);}
.m43_c00145{transform:matrix(0.261788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261788,0.000000,0.000000,0.250000,0,0);}
.m79_c00145{transform:matrix(0.262145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262145,0.000000,0.000000,0.250000,0,0);}
.mc4_c00145{transform:matrix(0.263115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263115,0.000000,0.000000,0.250000,0,0);}
.m26_c00145{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m72_c00145{transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);}
.m69_c00145{transform:matrix(0.265042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265042,0.000000,0.000000,0.250000,0,0);}
.m32_c00145{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.md_c00145{transform:matrix(0.266458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266458,0.000000,0.000000,0.250000,0,0);}
.mab_c00145{transform:matrix(0.266684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266684,0.000000,0.000000,0.250000,0,0);}
.ma5_c00145{transform:matrix(0.267061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267061,0.000000,0.000000,0.250000,0,0);}
.m6d_c00145{transform:matrix(0.267205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267205,0.000000,0.000000,0.250000,0,0);}
.mb7_c00145{transform:matrix(0.267380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267380,0.000000,0.000000,0.250000,0,0);}
.m15_c00145{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m82_c00145{transform:matrix(0.268484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268484,0.000000,0.000000,0.250000,0,0);}
.m3d_c00145{transform:matrix(0.268608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268608,0.000000,0.000000,0.250000,0,0);}
.m85_c00145{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.m39_c00145{transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);}
.m65_c00145{transform:matrix(0.269646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269646,0.000000,0.000000,0.250000,0,0);}
.m7a_c00145{transform:matrix(0.270329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270329,0.000000,0.000000,0.250000,0,0);}
.me_c00145{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m9_c00145{transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00145{transform:matrix(0.272544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272544,0.000000,0.000000,0.250000,0,0);}
.m68_c00145{transform:matrix(0.272609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272609,0.000000,0.000000,0.250000,0,0);}
.mac_c00145{transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);}
.m4b_c00145{transform:matrix(0.273493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273493,0.000000,0.000000,0.250000,0,0);}
.mbf_c00145{transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);}
.m8d_c00145{transform:matrix(0.275347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275347,0.000000,0.000000,0.250000,0,0);}
.m1f_c00145{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m8b_c00145{transform:matrix(0.276320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276320,0.000000,0.000000,0.250000,0,0);}
.mb4_c00145{transform:matrix(0.277360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277360,0.000000,0.000000,0.250000,0,0);}
.m18_c00145{transform:matrix(0.277627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277627,0.000000,0.000000,0.250000,0,0);}
.m30_c00145{transform:matrix(0.278106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278106,0.000000,0.000000,0.250000,0,0);}
.m28_c00145{transform:matrix(0.278975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278975,0.000000,0.000000,0.250000,0,0);}
.m9e_c00145{transform:matrix(0.279109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279109,0.000000,0.000000,0.250000,0,0);}
.m1e_c00145{transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);}
.m6a_c00145{transform:matrix(0.279407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279407,0.000000,0.000000,0.250000,0,0);}
.m27_c00145{transform:matrix(0.279550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279550,0.000000,0.000000,0.250000,0,0);}
.mc2_c00145{transform:matrix(0.279677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279677,0.000000,0.000000,0.250000,0,0);}
.m74_c00145{transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);}
.mbb_c00145{transform:matrix(0.280064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280064,0.000000,0.000000,0.250000,0,0);}
.mc1_c00145{transform:matrix(0.280224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280224,0.000000,0.000000,0.250000,0,0);}
.ma1_c00145{transform:matrix(0.280329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280329,0.000000,0.000000,0.250000,0,0);}
.m4d_c00145{transform:matrix(0.282543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282543,0.000000,0.000000,0.250000,0,0);}
.m8_c00145{transform:matrix(0.282746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282746,0.000000,0.000000,0.250000,0,0);}
.ma3_c00145{transform:matrix(0.283509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283509,0.000000,0.000000,0.250000,0,0);}
.mc6_c00145{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m93_c00145{transform:matrix(0.285042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285042,0.000000,0.000000,0.250000,0,0);}
.m24_c00145{transform:matrix(0.285304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285304,0.000000,0.000000,0.250000,0,0);}
.m88_c00145{transform:matrix(0.285492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285492,0.000000,0.000000,0.250000,0,0);}
.m48_c00145{transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);}
.m9b_c00145{transform:matrix(0.286773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286773,0.000000,0.000000,0.250000,0,0);}
.m2a_c00145{transform:matrix(0.286908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286908,0.000000,0.000000,0.250000,0,0);}
.ma6_c00145{transform:matrix(0.287205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287205,0.000000,0.000000,0.250000,0,0);}
.m95_c00145{transform:matrix(0.287850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287850,0.000000,0.000000,0.250000,0,0);}
.m35_c00145{transform:matrix(0.288699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288699,0.000000,0.000000,0.250000,0,0);}
.m17_c00145{transform:matrix(0.289328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289328,0.000000,0.000000,0.250000,0,0);}
.m57_c00145{transform:matrix(0.289488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289488,0.000000,0.000000,0.250000,0,0);}
.m4e_c00145{transform:matrix(0.289535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289535,0.000000,0.000000,0.250000,0,0);}
.mcc_c00145{transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);}
.m52_c00145{transform:matrix(0.290540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290540,0.000000,0.000000,0.250000,0,0);}
.m3a_c00145{transform:matrix(0.290630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290630,0.000000,0.000000,0.250000,0,0);}
.m21_c00145{transform:matrix(0.290977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290977,0.000000,0.000000,0.250000,0,0);}
.m2c_c00145{transform:matrix(0.291525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291525,0.000000,0.000000,0.250000,0,0);}
.m6f_c00145{transform:matrix(0.291884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291884,0.000000,0.000000,0.250000,0,0);}
.m90_c00145{transform:matrix(0.292334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292334,0.000000,0.000000,0.250000,0,0);}
.m59_c00145{transform:matrix(0.293359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293359,0.000000,0.000000,0.250000,0,0);}
.m86_c00145{transform:matrix(0.294494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294494,0.000000,0.000000,0.250000,0,0);}
.m77_c00145{transform:matrix(0.294762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294762,0.000000,0.000000,0.250000,0,0);}
.mb1_c00145{transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);}
.m92_c00145{transform:matrix(0.295003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295003,0.000000,0.000000,0.250000,0,0);}
.ma2_c00145{transform:matrix(0.295100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295100,0.000000,0.000000,0.250000,0,0);}
.m40_c00145{transform:matrix(0.296117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296117,0.000000,0.000000,0.250000,0,0);}
.m67_c00145{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m5_c00145{transform:matrix(0.297124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297124,0.000000,0.000000,0.250000,0,0);}
.mbd_c00145{transform:matrix(0.297832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297832,0.000000,0.000000,0.250000,0,0);}
.m3f_c00145{transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);}
.m19_c00145{transform:matrix(0.298420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298420,0.000000,0.000000,0.250000,0,0);}
.m47_c00145{transform:matrix(0.298567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298567,0.000000,0.000000,0.250000,0,0);}
.m83_c00145{transform:matrix(0.298926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298926,0.000000,0.000000,0.250000,0,0);}
.m5d_c00145{transform:matrix(0.299531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299531,0.000000,0.000000,0.250000,0,0);}
.mbc_c00145{transform:matrix(0.299654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299654,0.000000,0.000000,0.250000,0,0);}
.m6e_c00145{transform:matrix(0.299820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299820,0.000000,0.000000,0.250000,0,0);}
.m2f_c00145{transform:matrix(0.299951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299951,0.000000,0.000000,0.250000,0,0);}
.m8e_c00145{transform:matrix(0.300541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300541,0.000000,0.000000,0.250000,0,0);}
.ma8_c00145{transform:matrix(0.300802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300802,0.000000,0.000000,0.250000,0,0);}
.m8f_c00145{transform:matrix(0.301133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301133,0.000000,0.000000,0.250000,0,0);}
.m49_c00145{transform:matrix(0.301714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301714,0.000000,0.000000,0.250000,0,0);}
.mb9_c00145{transform:matrix(0.301904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301904,0.000000,0.000000,0.250000,0,0);}
.m7_c00145{transform:matrix(0.302359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302359,0.000000,0.000000,0.250000,0,0);}
.m14_c00145{transform:matrix(0.302394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302394,0.000000,0.000000,0.250000,0,0);}
.ma0_c00145{transform:matrix(0.302915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302915,0.000000,0.000000,0.250000,0,0);}
.m20_c00145{transform:matrix(0.303116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303116,0.000000,0.000000,0.250000,0,0);}
.ma4_c00145{transform:matrix(0.303446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303446,0.000000,0.000000,0.250000,0,0);}
.m98_c00145{transform:matrix(0.303481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303481,0.000000,0.000000,0.250000,0,0);}
.m71_c00145{transform:matrix(0.303581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303581,0.000000,0.000000,0.250000,0,0);}
.m5f_c00145{transform:matrix(0.304192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304192,0.000000,0.000000,0.250000,0,0);}
.m34_c00145{transform:matrix(0.304372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304372,0.000000,0.000000,0.250000,0,0);}
.ma_c00145{transform:matrix(0.304985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304985,0.000000,0.000000,0.250000,0,0);}
.m13_c00145{transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);}
.m62_c00145{transform:matrix(0.305775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305775,0.000000,0.000000,0.250000,0,0);}
.m3e_c00145{transform:matrix(0.306411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306411,0.000000,0.000000,0.250000,0,0);}
.m64_c00145{transform:matrix(0.306442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306442,0.000000,0.000000,0.250000,0,0);}
.mb_c00145{transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);}
.m36_c00145{transform:matrix(0.307759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307759,0.000000,0.000000,0.250000,0,0);}
.m5b_c00145{transform:matrix(0.308174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308174,0.000000,0.000000,0.250000,0,0);}
.m8c_c00145{transform:matrix(0.308319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308319,0.000000,0.000000,0.250000,0,0);}
.m50_c00145{transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);}
.m60_c00145{transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);}
.m11_c00145{transform:matrix(0.308975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308975,0.000000,0.000000,0.250000,0,0);}
.mcd_c00145{transform:matrix(0.309355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309355,0.000000,0.000000,0.250000,0,0);}
.m2b_c00145{transform:matrix(0.310056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310056,0.000000,0.000000,0.250000,0,0);}
.m8a_c00145{transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);}
.m75_c00145{transform:matrix(0.311153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311153,0.000000,0.000000,0.250000,0,0);}
.m38_c00145{transform:matrix(0.311373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311373,0.000000,0.000000,0.250000,0,0);}
.m46_c00145{transform:matrix(0.311388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311388,0.000000,0.000000,0.250000,0,0);}
.mc0_c00145{transform:matrix(0.312052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312052,0.000000,0.000000,0.250000,0,0);}
.m10_c00145{transform:matrix(0.312347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312347,0.000000,0.000000,0.250000,0,0);}
.m41_c00145{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.mc8_c00145{transform:matrix(0.312800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312800,0.000000,0.000000,0.250000,0,0);}
.m5e_c00145{transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);}
.mbe_c00145{transform:matrix(0.313871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313871,0.000000,0.000000,0.250000,0,0);}
.m1a_c00145{transform:matrix(0.314182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314182,0.000000,0.000000,0.250000,0,0);}
.m9a_c00145{transform:matrix(0.315556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315556,0.000000,0.000000,0.250000,0,0);}
.m7f_c00145{transform:matrix(0.315717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315717,0.000000,0.000000,0.250000,0,0);}
.m29_c00145{transform:matrix(0.316247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316247,0.000000,0.000000,0.250000,0,0);}
.m81_c00145{transform:matrix(0.317419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317419,0.000000,0.000000,0.250000,0,0);}
.m80_c00145{transform:matrix(0.317925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317925,0.000000,0.000000,0.250000,0,0);}
.m3b_c00145{transform:matrix(0.318160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318160,0.000000,0.000000,0.250000,0,0);}
.m42_c00145{transform:matrix(0.319328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319328,0.000000,0.000000,0.250000,0,0);}
.m31_c00145{transform:matrix(0.320213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320213,0.000000,0.000000,0.250000,0,0);}
.mb6_c00145{transform:matrix(0.320876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320876,0.000000,0.000000,0.250000,0,0);}
.m45_c00145{transform:matrix(0.321043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321043,0.000000,0.000000,0.250000,0,0);}
.m66_c00145{transform:matrix(0.321236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321236,0.000000,0.000000,0.250000,0,0);}
.m73_c00145{transform:matrix(0.322493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322493,0.000000,0.000000,0.250000,0,0);}
.m99_c00145{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.mba_c00145{transform:matrix(0.323681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323681,0.000000,0.000000,0.250000,0,0);}
.mcb_c00145{transform:matrix(0.323816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323816,0.000000,0.000000,0.250000,0,0);}
.m44_c00145{transform:matrix(0.324775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324775,0.000000,0.000000,0.250000,0,0);}
.m87_c00145{transform:matrix(0.325136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325136,0.000000,0.000000,0.250000,0,0);}
.m63_c00145{transform:matrix(0.325545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325545,0.000000,0.000000,0.250000,0,0);}
.m5c_c00145{transform:matrix(0.326455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326455,0.000000,0.000000,0.250000,0,0);}
.m25_c00145{transform:matrix(0.326583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326583,0.000000,0.000000,0.250000,0,0);}
.m4_c00145{transform:matrix(0.327083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327083,0.000000,0.000000,0.250000,0,0);}
.m22_c00145{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m6c_c00145{transform:matrix(0.327273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327273,0.000000,0.000000,0.250000,0,0);}
.m58_c00145{transform:matrix(0.329917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329917,0.000000,0.000000,0.250000,0,0);}
.m4a_c00145{transform:matrix(0.330032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330032,0.000000,0.000000,0.250000,0,0);}
.m1d_c00145{transform:matrix(0.330225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330225,0.000000,0.000000,0.250000,0,0);}
.m6b_c00145{transform:matrix(0.330652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330652,0.000000,0.000000,0.250000,0,0);}
.maa_c00145{transform:matrix(0.330935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330935,0.000000,0.000000,0.250000,0,0);}
.m23_c00145{transform:matrix(0.331235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331235,0.000000,0.000000,0.250000,0,0);}
.m96_c00145{transform:matrix(0.331774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331774,0.000000,0.000000,0.250000,0,0);}
.mf_c00145{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m9d_c00145{transform:matrix(0.333358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333358,0.000000,0.000000,0.250000,0,0);}
.m84_c00145{transform:matrix(0.335137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335137,0.000000,0.000000,0.250000,0,0);}
.m1c_c00145{transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);}
.m16_c00145{transform:matrix(0.337511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337511,0.000000,0.000000,0.250000,0,0);}
.m12_c00145{transform:matrix(0.338456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338456,0.000000,0.000000,0.250000,0,0);}
.m51_c00145{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m1_c00145{transform:matrix(0.339789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339789,0.000000,0.000000,0.250000,0,0);}
.mc3_c00145{transform:matrix(0.339985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339985,0.000000,0.000000,0.250000,0,0);}
.m33_c00145{transform:matrix(0.344474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344474,0.000000,0.000000,0.250000,0,0);}
.ma7_c00145{transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);}
.m94_c00145{transform:matrix(0.346277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346277,0.000000,0.000000,0.250000,0,0);}
.mc7_c00145{transform:matrix(0.348399,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348399,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348399,0.000000,0.000000,0.250000,0,0);}
.m70_c00145{transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);}
.mad_c00145{transform:matrix(0.353647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353647,0.000000,0.000000,0.250000,0,0);}
.m3_c00145{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m76_c00145{transform:matrix(0.359561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359561,0.000000,0.000000,0.250000,0,0);}
.m7d_c00145{transform:matrix(0.367412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367412,0.000000,0.000000,0.250000,0,0);}
.m2e_c00145{transform:matrix(0.368842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368842,0.000000,0.000000,0.250000,0,0);}
.mce_c00145{transform:matrix(0.371992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371992,0.000000,0.000000,0.250000,0,0);}
.m7b_c00145{transform:matrix(0.377140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377140,0.000000,0.000000,0.250000,0,0);}
.m4c_c00145{transform:matrix(0.384899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384899,0.000000,0.000000,0.250000,0,0);}
.v0_c00145{vertical-align:0.000000px;}
.lsb_c00145{letter-spacing:-2.744280px;}
.ls8_c00145{letter-spacing:-2.550240px;}
.ls16_c00145{letter-spacing:-2.430648px;}
.ls11_c00145{letter-spacing:-2.375762px;}
.ls17_c00145{letter-spacing:-1.808730px;}
.ls12_c00145{letter-spacing:-1.344420px;}
.ls13_c00145{letter-spacing:-0.893851px;}
.ls15_c00145{letter-spacing:-0.258746px;}
.lsd_c00145{letter-spacing:-0.180338px;}
.ls9_c00145{letter-spacing:0.000000px;}
.ls0_c00145{letter-spacing:0.462607px;}
.ls19_c00145{letter-spacing:0.475210px;}
.ls1_c00145{letter-spacing:0.705672px;}
.ls2_c00145{letter-spacing:0.940896px;}
.lse_c00145{letter-spacing:1.960200px;}
.ls5_c00145{letter-spacing:2.018021px;}
.lsc_c00145{letter-spacing:3.112798px;}
.ls3_c00145{letter-spacing:3.559723px;}
.ls4_c00145{letter-spacing:3.732221px;}
.ls6_c00145{letter-spacing:3.770752px;}
.lsa_c00145{letter-spacing:3.880810px;}
.ls7_c00145{letter-spacing:3.920400px;}
.lsf_c00145{letter-spacing:3.999610px;}
.ls18_c00145{letter-spacing:49.896198px;}
.ls10_c00145{letter-spacing:52.747398px;}
.ls14_c00145{letter-spacing:55.598598px;}
.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;}
}
.ws1_c00145{word-spacing:-20.064607px;}
.ws0_c00145{word-spacing:-19.602000px;}
.ws4_c00145{word-spacing:-19.343254px;}
.ws2_c00145{word-spacing:-4.155624px;}
.ws3_c00145{word-spacing:-3.293136px;}
.ws6_c00145{word-spacing:-2.195424px;}
.ws5_c00145{word-spacing:-2.117016px;}
.ws8_c00145{word-spacing:0.000000px;}
.ws7_c00145{word-spacing:5.253336px;}
._7_c00145{margin-left:-11.761200px;}
._15_c00145{margin-left:-9.565776px;}
._19_c00145{margin-left:-8.076024px;}
._10_c00145{margin-left:-5.487768px;}
._18_c00145{margin-left:-1.254528px;}
._3_c00145{width:1.278050px;}
._12_c00145{width:2.979504px;}
._1_c00145{width:6.272640px;}
._a_c00145{width:8.076024px;}
._b_c00145{width:9.173736px;}
._14_c00145{width:10.585080px;}
._8_c00145{width:11.761200px;}
._13_c00145{width:13.329360px;}
._16_c00145{width:15.995232px;}
._11_c00145{width:17.223624px;}
._d_c00145{width:20.856528px;}
._5_c00145{width:22.267872px;}
._9_c00145{width:24.620112px;}
._c_c00145{width:26.501904px;}
._6_c00145{width:30.343896px;}
._4_c00145{width:32.539320px;}
._0_c00145{width:34.011648px;}
._e_c00145{width:35.964086px;}
._f_c00145{width:37.149447px;}
._2_c00145{width:38.347056px;}
._17_c00145{width:47.593656px;}
.fc0_c00145{color:transparent;}
.fs13_c00145{font-size:9.504198px;}
.fse_c00145{font-size:22.176000px;}
.fs12_c00145{font-size:27.720000px;}
.fsf_c00145{font-size:33.264000px;}
.fs8_c00145{font-size:38.412000px;}
.fsa_c00145{font-size:39.600000px;}
.fs11_c00145{font-size:44.352000px;}
.fsc_c00145{font-size:49.896198px;}
.fsb_c00145{font-size:51.678000px;}
.fs7_c00145{font-size:52.747398px;}
.fs9_c00145{font-size:55.598598px;}
.fs6_c00145{font-size:62.568000px;}
.fs4_c00145{font-size:64.548000px;}
.fs10_c00145{font-size:70.884000px;}
.fs2_c00145{font-size:72.864000px;}
.fs3_c00145{font-size:77.616198px;}
.fs1_c00145{font-size:78.408000px;}
.fsd_c00145{font-size:79.596198px;}
.fs5_c00145{font-size:79.992198px;}
.fs0_c00145{font-size:88.308000px;}
.y0_c00145{bottom:0.000000px;}
.y1_c00145{bottom:76.500000px;}
.y27_c00145{bottom:79.740585px;}
.y26_c00145{bottom:94.714335px;}
.y25_c00145{bottom:97.916985px;}
.y24_c00145{bottom:107.544735px;}
.y23_c00145{bottom:121.087935px;}
.y22_c00145{bottom:142.828335px;}
.y20_c00145{bottom:156.727935px;}
.y1f_c00145{bottom:173.473785px;}
.y1e_c00145{bottom:241.551135px;}
.y1d_c00145{bottom:275.047785px;}
.y1c_c00145{bottom:295.718985px;}
.y1b_c00145{bottom:307.485135px;}
.y1a_c00145{bottom:339.556185px;}
.y19_c00145{bottom:365.934735px;}
.y18_c00145{bottom:372.706335px;}
.y17_c00145{bottom:405.138735px;}
.y16_c00145{bottom:417.969135px;}
.y15_c00145{bottom:437.214735px;}
.y14_c00145{bottom:469.285785px;}
.y21_c00145{bottom:495.307935px;}
.y13_c00145{bottom:501.010335px;}
.y12_c00145{bottom:533.437785px;}
.y11_c00145{bottom:556.608735px;}
.y10_c00145{bottom:565.875135px;}
.yf_c00145{bottom:579.061935px;}
.ye_c00145{bottom:587.615535px;}
.yd_c00145{bottom:598.658985px;}
.yc_c00145{bottom:615.771135px;}
.yb_c00145{bottom:663.528735px;}
.ya_c00145{bottom:696.317535px;}
.y9_c00145{bottom:728.388585px;}
.y8_c00145{bottom:760.464585px;}
.y7_c00145{bottom:792.545535px;}
.y6_c00145{bottom:824.616585px;}
.y5_c00145{bottom:857.048985px;}
.y4_c00145{bottom:889.486335px;}
.y3_c00145{bottom:922.987935px;}
.y2_c00145{bottom:1073.745135px;}
.h14_c00145{height:9.327851px;}
.h10_c00145{height:23.128875px;}
.h13_c00145{height:28.911094px;}
.he_c00145{height:33.230868px;}
.h11_c00145{height:34.693313px;}
.h8_c00145{height:35.129767px;}
.hb_c00145{height:37.028666px;}
.h9_c00145{height:37.699277px;}
.hc_c00145{height:41.301563px;}
.h12_c00145{height:46.257750px;}
.hd_c00145{height:50.719131px;}
.h7_c00145{height:65.256469px;}
.ha_c00145{height:67.321547px;}
.h4_c00145{height:71.512031px;}
.h5_c00145{height:76.176054px;}
.h3_c00145{height:76.953164px;}
.hf_c00145{height:78.119315px;}
.h6_c00145{height:78.507968px;}
.h2_c00145{height:86.669473px;}
.h1_c00145{height:1110.000000px;}
.h0_c00145{height:1263.000000px;}
.w1_c00145{width:775.500000px;}
.w0_c00145{width:892.500000px;}
.x0_c00145{left:0.000000px;}
.x1_c00145{left:58.500000px;}
.x3_c00145{left:80.102535px;}
.x64_c00145{left:81.736035px;}
.x56_c00145{left:91.715235px;}
.x34_c00145{left:103.110135px;}
.x32_c00145{left:113.737785px;}
.x57_c00145{left:115.400985px;}
.x35_c00145{left:123.944685px;}
.x6e_c00145{left:126.637485px;}
.x2e_c00145{left:135.205935px;}
.x10_c00145{left:136.611735px;}
.x3b_c00145{left:145.779135px;}
.x4e_c00145{left:147.006735px;}
.x4_c00145{left:157.530435px;}
.x27_c00145{left:158.659035px;}
.x2f_c00145{left:168.034335px;}
.x11_c00145{left:169.702485px;}
.x1f_c00145{left:179.538135px;}
.x67_c00145{left:189.007485px;}
.x5_c00145{left:190.769685px;}
.x68_c00145{left:192.541785px;}
.x12_c00145{left:202.580385px;}
.x33_c00145{left:212.356635px;}
.x13_c00145{left:213.569385px;}
.x6_c00145{left:224.612835px;}
.x4f_c00145{left:226.756185px;}
.x20_c00145{left:235.141485px;}
.x14_c00145{left:236.418585px;}
.x40_c00145{left:241.269585px;}
.x36_c00145{left:245.858235px;}
.x58_c00145{left:247.754085px;}
.x21_c00145{left:256.906635px;}
.x28_c00145{left:257.985735px;}
.x49_c00145{left:267.638235px;}
.x7_c00145{left:269.217285px;}
.x50_c00145{left:270.791385px;}
.x5a_c00145{left:279.359835px;}
.x15_c00145{left:280.582485px;}
.x3c_c00145{left:282.295185px;}
.x8_c00145{left:290.769585px;}
.x5b_c00145{left:292.690185px;}
.x30_c00145{left:302.312985px;}
.x6f_c00145{left:303.748485px;}
.x4a_c00145{left:313.410885px;}
.x5d_c00145{left:314.663235px;}
.x51_c00145{left:317.776785px;}
.x9_c00145{left:324.414735px;}
.x5e_c00145{left:325.835385px;}
.x16_c00145{left:335.666085px;}
.x3d_c00145{left:346.907535px;}
.xa_c00145{left:357.579735px;}
.x52_c00145{left:360.257685px;}
.x37_c00145{left:368.553885px;}
.x5c_c00145{left:370.068585px;}
.x22_c00145{left:379.161735px;}
.x17_c00145{left:380.765535px;}
.x29_c00145{left:391.111035px;}
.x38_c00145{left:402.332685px;}
.x69_c00145{left:403.906785px;}
.xb_c00145{left:406.441185px;}
.xc_c00145{left:412.648485px;}
.x5f_c00145{left:414.242385px;}
.x53_c00145{left:416.306535px;}
.x31_c00145{left:424.211685px;}
.x18_c00145{left:425.666985px;}
.x46_c00145{left:435.656085px;}
.x19_c00145{left:446.843085px;}
.x3e_c00145{left:456.916335px;}
.x2a_c00145{left:458.074635px;}
.x65_c00145{left:468.801285px;}
.x41_c00145{left:479.493285px;}
.x39_c00145{left:480.503085px;}
.x42_c00145{left:490.096185px;}
.x60_c00145{left:491.932635px;}
.x23_c00145{left:501.604935px;}
.x70_c00145{left:502.872135px;}
.x24_c00145{left:511.772235px;}
.x2b_c00145{left:512.994885px;}
.xd_c00145{left:514.212585px;}
.x1a_c00145{left:524.043285px;}
.x6a_c00145{left:525.434235px;}
.x62_c00145{left:535.606485px;}
.x25_c00145{left:546.823185px;}
.x6c_c00145{left:548.045835px;}
.xe_c00145{left:557.866635px;}
.x2c_c00145{left:567.331035px;}
.x3a_c00145{left:568.400235px;}
.x4b_c00145{left:578.062635px;}
.x1b_c00145{left:579.418935px;}
.x54_c00145{left:582.299835px;}
.x48_c00145{left:591.323685px;}
.x43_c00145{left:602.010735px;}
.x1c_c00145{left:612.306735px;}
.x1d_c00145{left:622.256235px;}
.x2d_c00145{left:623.790735px;}
.x66_c00145{left:627.008235px;}
.x44_c00145{left:634.047135px;}
.x6b_c00145{left:635.240085px;}
.x55_c00145{left:646.936935px;}
.x26_c00145{left:656.945835px;}
.x2_c00145{left:668.682285px;}
.x4c_c00145{left:679.077285px;}
.x4d_c00145{left:690.442485px;}
.x1e_c00145{left:693.273885px;}
.x3f_c00145{left:697.075485px;}
.x59_c00145{left:698.263485px;}
.xf_c00145{left:700.268235px;}
.x45_c00145{left:701.441385px;}
.x61_c00145{left:702.510585px;}
.x47_c00145{left:705.772635px;}
.x63_c00145{left:708.915885px;}
.x6d_c00145{left:745.090485px;}
.x71_c00145{left:752.975835px;}
.x72_c00145{left:757.297185px;}
@media print{
.v0_c00145{vertical-align:0.000000pt;}
.lsb_c00145{letter-spacing:-2.439360pt;}
.ls8_c00145{letter-spacing:-2.266880pt;}
.ls16_c00145{letter-spacing:-2.160576pt;}
.ls11_c00145{letter-spacing:-2.111789pt;}
.ls17_c00145{letter-spacing:-1.607760pt;}
.ls12_c00145{letter-spacing:-1.195040pt;}
.ls13_c00145{letter-spacing:-0.794534pt;}
.ls15_c00145{letter-spacing:-0.229997pt;}
.lsd_c00145{letter-spacing:-0.160301pt;}
.ls9_c00145{letter-spacing:0.000000pt;}
.ls0_c00145{letter-spacing:0.411206pt;}
.ls19_c00145{letter-spacing:0.422409pt;}
.ls1_c00145{letter-spacing:0.627264pt;}
.ls2_c00145{letter-spacing:0.836352pt;}
.lse_c00145{letter-spacing:1.742400pt;}
.ls5_c00145{letter-spacing:1.793797pt;}
.lsc_c00145{letter-spacing:2.766931pt;}
.ls3_c00145{letter-spacing:3.164198pt;}
.ls4_c00145{letter-spacing:3.317530pt;}
.ls6_c00145{letter-spacing:3.351779pt;}
.lsa_c00145{letter-spacing:3.449609pt;}
.ls7_c00145{letter-spacing:3.484800pt;}
.lsf_c00145{letter-spacing:3.555209pt;}
.ls18_c00145{letter-spacing:44.352176pt;}
.ls10_c00145{letter-spacing:46.886576pt;}
.ls14_c00145{letter-spacing:49.420976pt;}
.ws1_c00145{word-spacing:-17.835206pt;}
.ws0_c00145{word-spacing:-17.424000pt;}
.ws4_c00145{word-spacing:-17.194003pt;}
.ws2_c00145{word-spacing:-3.693888pt;}
.ws3_c00145{word-spacing:-2.927232pt;}
.ws6_c00145{word-spacing:-1.951488pt;}
.ws5_c00145{word-spacing:-1.881792pt;}
.ws8_c00145{word-spacing:0.000000pt;}
.ws7_c00145{word-spacing:4.669632pt;}
._7_c00145{margin-left:-10.454400pt;}
._15_c00145{margin-left:-8.502912pt;}
._19_c00145{margin-left:-7.178688pt;}
._10_c00145{margin-left:-4.878016pt;}
._18_c00145{margin-left:-1.115136pt;}
._3_c00145{width:1.136045pt;}
._12_c00145{width:2.648448pt;}
._1_c00145{width:5.575680pt;}
._a_c00145{width:7.178688pt;}
._b_c00145{width:8.154432pt;}
._14_c00145{width:9.408960pt;}
._8_c00145{width:10.454400pt;}
._13_c00145{width:11.848320pt;}
._16_c00145{width:14.217984pt;}
._11_c00145{width:15.309888pt;}
._d_c00145{width:18.539136pt;}
._5_c00145{width:19.793664pt;}
._9_c00145{width:21.884544pt;}
._c_c00145{width:23.557248pt;}
._6_c00145{width:26.972352pt;}
._4_c00145{width:28.923840pt;}
._0_c00145{width:30.232576pt;}
._e_c00145{width:31.968077pt;}
._f_c00145{width:33.021731pt;}
._2_c00145{width:34.086272pt;}
._17_c00145{width:42.305472pt;}
.fs13_c00145{font-size:8.448176pt;}
.fse_c00145{font-size:19.712000pt;}
.fs12_c00145{font-size:24.640000pt;}
.fsf_c00145{font-size:29.568000pt;}
.fs8_c00145{font-size:34.144000pt;}
.fsa_c00145{font-size:35.200000pt;}
.fs11_c00145{font-size:39.424000pt;}
.fsc_c00145{font-size:44.352176pt;}
.fsb_c00145{font-size:45.936000pt;}
.fs7_c00145{font-size:46.886576pt;}
.fs9_c00145{font-size:49.420976pt;}
.fs6_c00145{font-size:55.616000pt;}
.fs4_c00145{font-size:57.376000pt;}
.fs10_c00145{font-size:63.008000pt;}
.fs2_c00145{font-size:64.768000pt;}
.fs3_c00145{font-size:68.992176pt;}
.fs1_c00145{font-size:69.696000pt;}
.fsd_c00145{font-size:70.752176pt;}
.fs5_c00145{font-size:71.104176pt;}
.fs0_c00145{font-size:78.496000pt;}
.y0_c00145{bottom:0.000000pt;}
.y1_c00145{bottom:68.000000pt;}
.y27_c00145{bottom:70.880520pt;}
.y26_c00145{bottom:84.190520pt;}
.y25_c00145{bottom:87.037320pt;}
.y24_c00145{bottom:95.595320pt;}
.y23_c00145{bottom:107.633720pt;}
.y22_c00145{bottom:126.958520pt;}
.y20_c00145{bottom:139.313720pt;}
.y1f_c00145{bottom:154.198920pt;}
.y1e_c00145{bottom:214.712120pt;}
.y1d_c00145{bottom:244.486920pt;}
.y1c_c00145{bottom:262.861320pt;}
.y1b_c00145{bottom:273.320120pt;}
.y1a_c00145{bottom:301.827720pt;}
.y19_c00145{bottom:325.275320pt;}
.y18_c00145{bottom:331.294520pt;}
.y17_c00145{bottom:360.123320pt;}
.y16_c00145{bottom:371.528120pt;}
.y15_c00145{bottom:388.635320pt;}
.y14_c00145{bottom:417.142920pt;}
.y21_c00145{bottom:440.273720pt;}
.y13_c00145{bottom:445.342520pt;}
.y12_c00145{bottom:474.166920pt;}
.y11_c00145{bottom:494.763320pt;}
.y10_c00145{bottom:503.000120pt;}
.yf_c00145{bottom:514.721720pt;}
.ye_c00145{bottom:522.324920pt;}
.yd_c00145{bottom:532.141320pt;}
.yc_c00145{bottom:547.352120pt;}
.yb_c00145{bottom:589.803320pt;}
.ya_c00145{bottom:618.948920pt;}
.y9_c00145{bottom:647.456520pt;}
.y8_c00145{bottom:675.968520pt;}
.y7_c00145{bottom:704.484920pt;}
.y6_c00145{bottom:732.992520pt;}
.y5_c00145{bottom:761.821320pt;}
.y4_c00145{bottom:790.654520pt;}
.y3_c00145{bottom:820.433720pt;}
.y2_c00145{bottom:954.440120pt;}
.h14_c00145{height:8.291423pt;}
.h10_c00145{height:20.559000pt;}
.h13_c00145{height:25.698750pt;}
.he_c00145{height:29.538549pt;}
.h11_c00145{height:30.838500pt;}
.h8_c00145{height:31.226460pt;}
.hb_c00145{height:32.914370pt;}
.h9_c00145{height:33.510469pt;}
.hc_c00145{height:36.712500pt;}
.h12_c00145{height:41.118000pt;}
.hd_c00145{height:45.083672pt;}
.h7_c00145{height:58.005750pt;}
.ha_c00145{height:59.841375pt;}
.h4_c00145{height:63.566250pt;}
.h5_c00145{height:67.712048pt;}
.h3_c00145{height:68.402813pt;}
.hf_c00145{height:69.439391pt;}
.h6_c00145{height:69.784860pt;}
.h2_c00145{height:77.039531pt;}
.h1_c00145{height:986.666667pt;}
.h0_c00145{height:1122.666667pt;}
.w1_c00145{width:689.333333pt;}
.w0_c00145{width:793.333333pt;}
.x0_c00145{left:0.000000pt;}
.x1_c00145{left:52.000000pt;}
.x3_c00145{left:71.202253pt;}
.x64_c00145{left:72.654253pt;}
.x56_c00145{left:81.524653pt;}
.x34_c00145{left:91.653453pt;}
.x32_c00145{left:101.100253pt;}
.x57_c00145{left:102.578653pt;}
.x35_c00145{left:110.173053pt;}
.x6e_c00145{left:112.566653pt;}
.x2e_c00145{left:120.183053pt;}
.x10_c00145{left:121.432653pt;}
.x3b_c00145{left:129.581453pt;}
.x4e_c00145{left:130.672653pt;}
.x4_c00145{left:140.027053pt;}
.x27_c00145{left:141.030253pt;}
.x2f_c00145{left:149.363853pt;}
.x11_c00145{left:150.846653pt;}
.x1f_c00145{left:159.589453pt;}
.x67_c00145{left:168.006653pt;}
.x5_c00145{left:169.573053pt;}
.x68_c00145{left:171.148253pt;}
.x12_c00145{left:180.071453pt;}
.x33_c00145{left:188.761453pt;}
.x13_c00145{left:189.839453pt;}
.x6_c00145{left:199.655853pt;}
.x4f_c00145{left:201.561053pt;}
.x20_c00145{left:209.014653pt;}
.x14_c00145{left:210.149853pt;}
.x40_c00145{left:214.461853pt;}
.x36_c00145{left:218.540653pt;}
.x58_c00145{left:220.225853pt;}
.x21_c00145{left:228.361453pt;}
.x28_c00145{left:229.320653pt;}
.x49_c00145{left:237.900653pt;}
.x7_c00145{left:239.304253pt;}
.x50_c00145{left:240.703453pt;}
.x5a_c00145{left:248.319853pt;}
.x15_c00145{left:249.406653pt;}
.x3c_c00145{left:250.929053pt;}
.x8_c00145{left:258.461853pt;}
.x5b_c00145{left:260.169053pt;}
.x30_c00145{left:268.722653pt;}
.x6f_c00145{left:269.998653pt;}
.x4a_c00145{left:278.587453pt;}
.x5d_c00145{left:279.700653pt;}
.x51_c00145{left:282.468253pt;}
.x9_c00145{left:288.368653pt;}
.x5e_c00145{left:289.631453pt;}
.x16_c00145{left:298.369853pt;}
.x3d_c00145{left:308.362253pt;}
.xa_c00145{left:317.848653pt;}
.x52_c00145{left:320.229053pt;}
.x37_c00145{left:327.603453pt;}
.x5c_c00145{left:328.949853pt;}
.x22_c00145{left:337.032653pt;}
.x17_c00145{left:338.458253pt;}
.x29_c00145{left:347.654253pt;}
.x38_c00145{left:357.629053pt;}
.x69_c00145{left:359.028253pt;}
.xb_c00145{left:361.281053pt;}
.xc_c00145{left:366.798653pt;}
.x5f_c00145{left:368.215453pt;}
.x53_c00145{left:370.050253pt;}
.x31_c00145{left:377.077053pt;}
.x18_c00145{left:378.370653pt;}
.x46_c00145{left:387.249853pt;}
.x19_c00145{left:397.193853pt;}
.x3e_c00145{left:406.147853pt;}
.x2a_c00145{left:407.177453pt;}
.x65_c00145{left:416.712253pt;}
.x41_c00145{left:426.216253pt;}
.x39_c00145{left:427.113853pt;}
.x42_c00145{left:435.641053pt;}
.x60_c00145{left:437.273453pt;}
.x23_c00145{left:445.871053pt;}
.x70_c00145{left:446.997453pt;}
.x24_c00145{left:454.908653pt;}
.x2b_c00145{left:455.995453pt;}
.xd_c00145{left:457.077853pt;}
.x1a_c00145{left:465.816253pt;}
.x6a_c00145{left:467.052653pt;}
.x62_c00145{left:476.094653pt;}
.x25_c00145{left:486.065053pt;}
.x6c_c00145{left:487.151853pt;}
.xe_c00145{left:495.881453pt;}
.x2c_c00145{left:504.294253pt;}
.x3a_c00145{left:505.244653pt;}
.x4b_c00145{left:513.833453pt;}
.x1b_c00145{left:515.039053pt;}
.x54_c00145{left:517.599853pt;}
.x48_c00145{left:525.621053pt;}
.x43_c00145{left:535.120653pt;}
.x1c_c00145{left:544.272653pt;}
.x1d_c00145{left:553.116653pt;}
.x2d_c00145{left:554.480653pt;}
.x66_c00145{left:557.340653pt;}
.x44_c00145{left:563.597453pt;}
.x6b_c00145{left:564.657853pt;}
.x55_c00145{left:575.055053pt;}
.x26_c00145{left:583.951853pt;}
.x2_c00145{left:594.384253pt;}
.x4c_c00145{left:603.624253pt;}
.x4d_c00145{left:613.726653pt;}
.x1e_c00145{left:616.243453pt;}
.x3f_c00145{left:619.622653pt;}
.x59_c00145{left:620.678653pt;}
.xf_c00145{left:622.460653pt;}
.x45_c00145{left:623.503453pt;}
.x61_c00145{left:624.453853pt;}
.x47_c00145{left:627.353453pt;}
.x63_c00145{left:630.147453pt;}
.x6d_c00145{left:662.302653pt;}
.x71_c00145{left:669.311853pt;}
.x72_c00145{left:673.153053pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0e5f99a0bfe4ec978c76dccc.woff2')format("woff");}.ff1_c00146{font-family:ff1_c00146;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00146;src:url('chunks/assets/font_7ee61f5e02e9e1c67a61fce0.woff2')format("woff");}.ff2_c00146{font-family:ff2_c00146;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00146;src:url('chunks/assets/font_1a97bde3b569c25cbc1e53a4.woff2')format("woff");}.ff3_c00146{font-family:ff3_c00146;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mc0_c00146{transform:matrix(0.216704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216704,0.000000,0.000000,0.250000,0,0);}
.mae_c00146{transform:matrix(0.242534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242534,0.000000,0.000000,0.250000,0,0);}
.m1_c00146{transform:matrix(0.244420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244420,0.000000,0.000000,0.250000,0,0);}
.maa_c00146{transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);}
.m8_c00146{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m85_c00146{transform:matrix(0.250258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250258,0.000000,0.000000,0.250000,0,0);}
.m4c_c00146{transform:matrix(0.252155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252155,0.000000,0.000000,0.250000,0,0);}
.m48_c00146{transform:matrix(0.252202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252202,0.000000,0.000000,0.250000,0,0);}
.mbf_c00146{transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);}
.m1f_c00146{transform:matrix(0.252369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252369,0.000000,0.000000,0.250000,0,0);}
.m98_c00146{transform:matrix(0.252461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252461,0.000000,0.000000,0.250000,0,0);}
.m78_c00146{transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);}
.m75_c00146{transform:matrix(0.255538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255538,0.000000,0.000000,0.250000,0,0);}
.m9d_c00146{transform:matrix(0.256952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256952,0.000000,0.000000,0.250000,0,0);}
.m91_c00146{transform:matrix(0.257003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257003,0.000000,0.000000,0.250000,0,0);}
.m86_c00146{transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);}
.m26_c00146{transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);}
.mc_c00146{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m6f_c00146{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m76_c00146{transform:matrix(0.261678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261678,0.000000,0.000000,0.250000,0,0);}
.mb2_c00146{transform:matrix(0.262649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262649,0.000000,0.000000,0.250000,0,0);}
.ma_c00146{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m3b_c00146{transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);}
.m4a_c00146{transform:matrix(0.263895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263895,0.000000,0.000000,0.250000,0,0);}
.m7e_c00146{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m1b_c00146{transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);}
.m18_c00146{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.ma2_c00146{transform:matrix(0.266295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266295,0.000000,0.000000,0.250000,0,0);}
.m5a_c00146{transform:matrix(0.266852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266852,0.000000,0.000000,0.250000,0,0);}
.m57_c00146{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.m56_c00146{transform:matrix(0.267576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267576,0.000000,0.000000,0.250000,0,0);}
.m22_c00146{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.mb0_c00146{transform:matrix(0.268552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268552,0.000000,0.000000,0.250000,0,0);}
.mf_c00146{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.m32_c00146{transform:matrix(0.269233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269233,0.000000,0.000000,0.250000,0,0);}
.m0_c00146{transform:matrix(0.270229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270229,0.000000,0.000000,0.250000,0,0);}
.m94_c00146{transform:matrix(0.270670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270670,0.000000,0.000000,0.250000,0,0);}
.m5f_c00146{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m8f_c00146{transform:matrix(0.271834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271834,0.000000,0.000000,0.250000,0,0);}
.mbd_c00146{transform:matrix(0.272278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272278,0.000000,0.000000,0.250000,0,0);}
.m71_c00146{transform:matrix(0.272328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272328,0.000000,0.000000,0.250000,0,0);}
.ma9_c00146{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m5e_c00146{transform:matrix(0.272939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272939,0.000000,0.000000,0.250000,0,0);}
.m33_c00146{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m3_c00146{transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);}
.m16_c00146{transform:matrix(0.274135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274135,0.000000,0.000000,0.250000,0,0);}
.m8a_c00146{transform:matrix(0.274242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274242,0.000000,0.000000,0.250000,0,0);}
.maf_c00146{transform:matrix(0.274338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274338,0.000000,0.000000,0.250000,0,0);}
.mb5_c00146{transform:matrix(0.274403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274403,0.000000,0.000000,0.250000,0,0);}
.mb6_c00146{transform:matrix(0.275040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275040,0.000000,0.000000,0.250000,0,0);}
.m44_c00146{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.ma1_c00146{transform:matrix(0.276319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276319,0.000000,0.000000,0.250000,0,0);}
.m7b_c00146{transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);}
.m2a_c00146{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m39_c00146{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.m54_c00146{transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);}
.m15_c00146{transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);}
.m29_c00146{transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);}
.ma5_c00146{transform:matrix(0.281309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281309,0.000000,0.000000,0.250000,0,0);}
.m93_c00146{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.m20_c00146{transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);}
.mbb_c00146{transform:matrix(0.283068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283068,0.000000,0.000000,0.250000,0,0);}
.m4f_c00146{transform:matrix(0.285386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285386,0.000000,0.000000,0.250000,0,0);}
.mc1_c00146{transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);}
.m2d_c00146{transform:matrix(0.286086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286086,0.000000,0.000000,0.250000,0,0);}
.m92_c00146{transform:matrix(0.286141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286141,0.000000,0.000000,0.250000,0,0);}
.mbc_c00146{transform:matrix(0.286181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286181,0.000000,0.000000,0.250000,0,0);}
.m90_c00146{transform:matrix(0.286208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286208,0.000000,0.000000,0.250000,0,0);}
.m24_c00146{transform:matrix(0.286279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286279,0.000000,0.000000,0.250000,0,0);}
.mb7_c00146{transform:matrix(0.287440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287440,0.000000,0.000000,0.250000,0,0);}
.m43_c00146{transform:matrix(0.287771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287771,0.000000,0.000000,0.250000,0,0);}
.m7c_c00146{transform:matrix(0.288213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288213,0.000000,0.000000,0.250000,0,0);}
.m55_c00146{transform:matrix(0.288393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288393,0.000000,0.000000,0.250000,0,0);}
.m3d_c00146{transform:matrix(0.288576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288576,0.000000,0.000000,0.250000,0,0);}
.m6a_c00146{transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);}
.m73_c00146{transform:matrix(0.289083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289083,0.000000,0.000000,0.250000,0,0);}
.mad_c00146{transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);}
.m1a_c00146{transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);}
.m17_c00146{transform:matrix(0.290637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290637,0.000000,0.000000,0.250000,0,0);}
.m89_c00146{transform:matrix(0.290762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290762,0.000000,0.000000,0.250000,0,0);}
.m79_c00146{transform:matrix(0.291071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291071,0.000000,0.000000,0.250000,0,0);}
.m82_c00146{transform:matrix(0.291335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291335,0.000000,0.000000,0.250000,0,0);}
.m59_c00146{transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);}
.m8c_c00146{transform:matrix(0.292127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292127,0.000000,0.000000,0.250000,0,0);}
.me_c00146{transform:matrix(0.292588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292588,0.000000,0.000000,0.250000,0,0);}
.mac_c00146{transform:matrix(0.292731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292731,0.000000,0.000000,0.250000,0,0);}
.m27_c00146{transform:matrix(0.292741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292741,0.000000,0.000000,0.250000,0,0);}
.m23_c00146{transform:matrix(0.293461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293461,0.000000,0.000000,0.250000,0,0);}
.ma3_c00146{transform:matrix(0.293617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293617,0.000000,0.000000,0.250000,0,0);}
.m11_c00146{transform:matrix(0.295144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295144,0.000000,0.000000,0.250000,0,0);}
.m81_c00146{transform:matrix(0.295172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295172,0.000000,0.000000,0.250000,0,0);}
.m87_c00146{transform:matrix(0.295215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295215,0.000000,0.000000,0.250000,0,0);}
.m46_c00146{transform:matrix(0.295516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295516,0.000000,0.000000,0.250000,0,0);}
.m52_c00146{transform:matrix(0.296449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296449,0.000000,0.000000,0.250000,0,0);}
.m67_c00146{transform:matrix(0.297216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297216,0.000000,0.000000,0.250000,0,0);}
.m9f_c00146{transform:matrix(0.297878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297878,0.000000,0.000000,0.250000,0,0);}
.m8d_c00146{transform:matrix(0.297935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297935,0.000000,0.000000,0.250000,0,0);}
.ma0_c00146{transform:matrix(0.299395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299395,0.000000,0.000000,0.250000,0,0);}
.mb_c00146{transform:matrix(0.300360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300360,0.000000,0.000000,0.250000,0,0);}
.m21_c00146{transform:matrix(0.300614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300614,0.000000,0.000000,0.250000,0,0);}
.m35_c00146{transform:matrix(0.300705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300705,0.000000,0.000000,0.250000,0,0);}
.m14_c00146{transform:matrix(0.300792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300792,0.000000,0.000000,0.250000,0,0);}
.m1d_c00146{transform:matrix(0.301257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301257,0.000000,0.000000,0.250000,0,0);}
.mb3_c00146{transform:matrix(0.302319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302319,0.000000,0.000000,0.250000,0,0);}
.mb4_c00146{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.ma7_c00146{transform:matrix(0.303404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303404,0.000000,0.000000,0.250000,0,0);}
.m3f_c00146{transform:matrix(0.303475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303475,0.000000,0.000000,0.250000,0,0);}
.mbe_c00146{transform:matrix(0.303527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303527,0.000000,0.000000,0.250000,0,0);}
.m7f_c00146{transform:matrix(0.303938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303938,0.000000,0.000000,0.250000,0,0);}
.mb8_c00146{transform:matrix(0.304310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304310,0.000000,0.000000,0.250000,0,0);}
.m2_c00146{transform:matrix(0.304615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304615,0.000000,0.000000,0.250000,0,0);}
.m7a_c00146{transform:matrix(0.304946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304946,0.000000,0.000000,0.250000,0,0);}
.m9c_c00146{transform:matrix(0.305157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305157,0.000000,0.000000,0.250000,0,0);}
.m6e_c00146{transform:matrix(0.305475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305475,0.000000,0.000000,0.250000,0,0);}
.m2b_c00146{transform:matrix(0.305592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305592,0.000000,0.000000,0.250000,0,0);}
.m5c_c00146{transform:matrix(0.305624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305624,0.000000,0.000000,0.250000,0,0);}
.m6c_c00146{transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);}
.m83_c00146{transform:matrix(0.305812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305812,0.000000,0.000000,0.250000,0,0);}
.m1c_c00146{transform:matrix(0.306194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306194,0.000000,0.000000,0.250000,0,0);}
.mb1_c00146{transform:matrix(0.306235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306235,0.000000,0.000000,0.250000,0,0);}
.m4e_c00146{transform:matrix(0.306878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306878,0.000000,0.000000,0.250000,0,0);}
.m60_c00146{transform:matrix(0.307126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307126,0.000000,0.000000,0.250000,0,0);}
.m80_c00146{transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);}
.md_c00146{transform:matrix(0.308088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308088,0.000000,0.000000,0.250000,0,0);}
.m3e_c00146{transform:matrix(0.308174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308174,0.000000,0.000000,0.250000,0,0);}
.m53_c00146{transform:matrix(0.308443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308443,0.000000,0.000000,0.250000,0,0);}
.m37_c00146{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m8b_c00146{transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);}
.m1e_c00146{transform:matrix(0.309655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309655,0.000000,0.000000,0.250000,0,0);}
.m45_c00146{transform:matrix(0.310974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310974,0.000000,0.000000,0.250000,0,0);}
.m95_c00146{transform:matrix(0.311211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311211,0.000000,0.000000,0.250000,0,0);}
.m38_c00146{transform:matrix(0.311599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311599,0.000000,0.000000,0.250000,0,0);}
.m2c_c00146{transform:matrix(0.312358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312358,0.000000,0.000000,0.250000,0,0);}
.m70_c00146{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.m88_c00146{transform:matrix(0.313194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313194,0.000000,0.000000,0.250000,0,0);}
.m5_c00146{transform:matrix(0.313752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313752,0.000000,0.000000,0.250000,0,0);}
.m2e_c00146{transform:matrix(0.313871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313871,0.000000,0.000000,0.250000,0,0);}
.m74_c00146{transform:matrix(0.313881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313881,0.000000,0.000000,0.250000,0,0);}
.m62_c00146{transform:matrix(0.313921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313921,0.000000,0.000000,0.250000,0,0);}
.m36_c00146{transform:matrix(0.313924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313924,0.000000,0.000000,0.250000,0,0);}
.m97_c00146{transform:matrix(0.314182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314182,0.000000,0.000000,0.250000,0,0);}
.m50_c00146{transform:matrix(0.316737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316737,0.000000,0.000000,0.250000,0,0);}
.mba_c00146{transform:matrix(0.317247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317247,0.000000,0.000000,0.250000,0,0);}
.m96_c00146{transform:matrix(0.317369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317369,0.000000,0.000000,0.250000,0,0);}
.m84_c00146{transform:matrix(0.317796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317796,0.000000,0.000000,0.250000,0,0);}
.m12_c00146{transform:matrix(0.317819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317819,0.000000,0.000000,0.250000,0,0);}
.m40_c00146{transform:matrix(0.317865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317865,0.000000,0.000000,0.250000,0,0);}
.m77_c00146{transform:matrix(0.318082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318082,0.000000,0.000000,0.250000,0,0);}
.m28_c00146{transform:matrix(0.319359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319359,0.000000,0.000000,0.250000,0,0);}
.m9_c00146{transform:matrix(0.320136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320136,0.000000,0.000000,0.250000,0,0);}
.m64_c00146{transform:matrix(0.320765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320765,0.000000,0.000000,0.250000,0,0);}
.m6b_c00146{transform:matrix(0.321180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321180,0.000000,0.000000,0.250000,0,0);}
.m34_c00146{transform:matrix(0.321294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321294,0.000000,0.000000,0.250000,0,0);}
.m68_c00146{transform:matrix(0.322224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322224,0.000000,0.000000,0.250000,0,0);}
.ma4_c00146{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.m9e_c00146{transform:matrix(0.323720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323720,0.000000,0.000000,0.250000,0,0);}
.m63_c00146{transform:matrix(0.323962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323962,0.000000,0.000000,0.250000,0,0);}
.m61_c00146{transform:matrix(0.325602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325602,0.000000,0.000000,0.250000,0,0);}
.m30_c00146{transform:matrix(0.325862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325862,0.000000,0.000000,0.250000,0,0);}
.m4_c00146{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m42_c00146{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.mb9_c00146{transform:matrix(0.330837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330837,0.000000,0.000000,0.250000,0,0);}
.m7d_c00146{transform:matrix(0.331145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331145,0.000000,0.000000,0.250000,0,0);}
.m10_c00146{transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);}
.m7_c00146{transform:matrix(0.332554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332554,0.000000,0.000000,0.250000,0,0);}
.m58_c00146{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m9a_c00146{transform:matrix(0.334203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334203,0.000000,0.000000,0.250000,0,0);}
.m6d_c00146{transform:matrix(0.334658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334658,0.000000,0.000000,0.250000,0,0);}
.m9b_c00146{transform:matrix(0.335561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335561,0.000000,0.000000,0.250000,0,0);}
.ma6_c00146{transform:matrix(0.335935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335935,0.000000,0.000000,0.250000,0,0);}
.m13_c00146{transform:matrix(0.336348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336348,0.000000,0.000000,0.250000,0,0);}
.m2f_c00146{transform:matrix(0.337295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337295,0.000000,0.000000,0.250000,0,0);}
.mab_c00146{transform:matrix(0.337511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337511,0.000000,0.000000,0.250000,0,0);}
.m3c_c00146{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m49_c00146{transform:matrix(0.339556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339556,0.000000,0.000000,0.250000,0,0);}
.m8e_c00146{transform:matrix(0.340744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340744,0.000000,0.000000,0.250000,0,0);}
.m72_c00146{transform:matrix(0.341360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341360,0.000000,0.000000,0.250000,0,0);}
.m3a_c00146{transform:matrix(0.343323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343323,0.000000,0.000000,0.250000,0,0);}
.m41_c00146{transform:matrix(0.347169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347169,0.000000,0.000000,0.250000,0,0);}
.m4d_c00146{transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);}
.m69_c00146{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m25_c00146{transform:matrix(0.351496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351496,0.000000,0.000000,0.250000,0,0);}
.m5b_c00146{transform:matrix(0.359071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359071,0.000000,0.000000,0.250000,0,0);}
.m4b_c00146{transform:matrix(0.362348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362348,0.000000,0.000000,0.250000,0,0);}
.m47_c00146{transform:matrix(0.365079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365079,0.000000,0.000000,0.250000,0,0);}
.m31_c00146{transform:matrix(0.366396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366396,0.000000,0.000000,0.250000,0,0);}
.m19_c00146{transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);}
.m66_c00146{transform:matrix(0.381466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381466,0.000000,0.000000,0.250000,0,0);}
.m99_c00146{transform:matrix(0.385605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385605,0.000000,0.000000,0.250000,0,0);}
.m51_c00146{transform:matrix(0.385852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385852,0.000000,0.000000,0.250000,0,0);}
.ma8_c00146{transform:matrix(0.402646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402646,0.000000,0.000000,0.250000,0,0);}
.m65_c00146{transform:matrix(0.405393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405393,0.000000,0.000000,0.250000,0,0);}
.m5d_c00146{transform:matrix(0.416907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416907,0.000000,0.000000,0.250000,0,0);}
.m6_c00146{transform:matrix(0.421909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421909,0.000000,0.000000,0.250000,0,0);}
.v0_c00146{vertical-align:0.000000px;}
.ls1_c00146{letter-spacing:-3.063067px;}
.ls12_c00146{letter-spacing:-2.744280px;}
.ls7_c00146{letter-spacing:-2.493374px;}
.ls5_c00146{letter-spacing:-1.897474px;}
.lse_c00146{letter-spacing:-1.058508px;}
.ls6_c00146{letter-spacing:-0.987941px;}
.lsa_c00146{letter-spacing:-0.180338px;}
.ls3_c00146{letter-spacing:0.000000px;}
.ls11_c00146{letter-spacing:0.337154px;}
.ls4_c00146{letter-spacing:1.677931px;}
.lsf_c00146{letter-spacing:1.968639px;}
.lsb_c00146{letter-spacing:2.059200px;}
.ls10_c00146{letter-spacing:2.132698px;}
.lsc_c00146{letter-spacing:2.579623px;}
.lsd_c00146{letter-spacing:3.191206px;}
.ls9_c00146{letter-spacing:3.276900px;}
.ls8_c00146{letter-spacing:3.583810px;}
.ls2_c00146{letter-spacing:3.920400px;}
.ls0_c00146{letter-spacing:4.375810px;}
.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;}
}
.ws2_c00146{word-spacing:-22.793206px;}
.ws3_c00146{word-spacing:-21.734698px;}
.ws1_c00146{word-spacing:-19.602000px;}
.ws4_c00146{word-spacing:0.000000px;}
.ws0_c00146{word-spacing:11.369556px;}
._7_c00146{margin-left:-13.172544px;}
._b_c00146{width:6.116220px;}
._3_c00146{width:7.135920px;}
._4_c00146{width:9.095328px;}
._8_c00146{width:10.977120px;}
._a_c00146{width:14.035428px;}
._1_c00146{width:17.484588px;}
._5_c00146{width:20.855736px;}
._d_c00146{width:22.267476px;}
._0_c00146{width:27.225000px;}
._c_c00146{width:30.971160px;}
._6_c00146{width:35.362008px;}
._2_c00146{width:39.675240px;}
._9_c00146{width:47.351304px;}
.fc0_c00146{color:transparent;}
.fs8_c00146{font-size:27.720000px;}
.fs5_c00146{font-size:41.184000px;}
.fs2_c00146{font-size:64.548000px;}
.fs4_c00146{font-size:65.538000px;}
.fs3_c00146{font-size:71.676198px;}
.fs1_c00146{font-size:78.408000px;}
.fs7_c00146{font-size:78.804000px;}
.fs0_c00146{font-size:87.516198px;}
.fs6_c00146{font-size:89.892198px;}
.y0_c00146{bottom:0.000000px;}
.y1_c00146{bottom:76.500000px;}
.y19_c00146{bottom:135.700335px;}
.y18_c00146{bottom:142.471935px;}
.y17_c00146{bottom:173.473785px;}
.y16_c00146{bottom:208.757385px;}
.y15_c00146{bottom:241.551135px;}
.y14_c00146{bottom:273.627135px;}
.y13_c00146{bottom:305.698185px;}
.y12_c00146{bottom:337.417785px;}
.y11_c00146{bottom:370.206585px;}
.y10_c00146{bottom:402.643935px;}
.yf_c00146{bottom:434.719935px;}
.ye_c00146{bottom:499.228335px;}
.yd_c00146{bottom:531.660735px;}
.yc_c00146{bottom:564.093135px;}
.yb_c00146{bottom:598.307535px;}
.ya_c00146{bottom:631.447785px;}
.y9_c00146{bottom:664.236585px;}
.y8_c00146{bottom:697.025385px;}
.y7_c00146{bottom:729.457785px;}
.y6_c00146{bottom:827.467785px;}
.y5_c00146{bottom:859.548735px;}
.y4_c00146{bottom:891.619785px;}
.y3_c00146{bottom:923.700735px;}
.y2_c00146{bottom:1074.452985px;}
.ha_c00146{height:28.911094px;}
.h6_c00146{height:42.953625px;}
.h9_c00146{height:67.321547px;}
.h5_c00146{height:68.354086px;}
.h4_c00146{height:72.236168px;}
.h3_c00146{height:76.953164px;}
.h8_c00146{height:77.341816px;}
.h2_c00146{height:85.892362px;}
.h7_c00146{height:88.224276px;}
.h1_c00146{height:1110.000000px;}
.h0_c00146{height:1263.000000px;}
.w1_c00146{width:733.500000px;}
.w0_c00146{width:892.500000px;}
.x0_c00146{left:0.000000px;}
.x46_c00146{left:49.138185px;}
.x21_c00146{left:73.388235px;}
.x4_c00146{left:75.392985px;}
.x63_c00146{left:76.709685px;}
.x1_c00146{left:79.500000px;}
.x49_c00146{left:85.273185px;}
.x40_c00146{left:107.523435px;}
.x22_c00146{left:119.210385px;}
.x5_c00146{left:130.144935px;}
.x5c_c00146{left:131.654685px;}
.x23_c00146{left:140.916135px;}
.x51_c00146{left:141.985335px;}
.x56_c00146{left:151.083435px;}
.x4e_c00146{left:152.157585px;}
.x27_c00146{left:153.647535px;}
.x57_c00146{left:162.493185px;}
.x6_c00146{left:164.032635px;}
.x12_c00146{left:174.437535px;}
.x39_c00146{left:184.421685px;}
.x5a_c00146{left:185.802735px;}
.x7_c00146{left:196.177935px;}
.x24_c00146{left:206.518485px;}
.x13_c00146{left:217.903485px;}
.x5d_c00146{left:219.324135px;}
.x1c_c00146{left:228.427185px;}
.x60_c00146{left:230.035935px;}
.x25_c00146{left:240.742785px;}
.x28_c00146{left:251.563485px;}
.x4f_c00146{left:252.771285px;}
.x14_c00146{left:262.839585px;}
.x15_c00146{left:273.397935px;}
.x8_c00146{left:284.842335px;}
.x29_c00146{left:295.539285px;}
.x52_c00146{left:297.029235px;}
.x1d_c00146{left:307.374735px;}
.x4c_c00146{left:316.492635px;}
.x9_c00146{left:318.705285px;}
.x30_c00146{left:320.863485px;}
.x44_c00146{left:328.763685px;}
.x5e_c00146{left:330.105135px;}
.x41_c00146{left:339.470535px;}
.x26_c00146{left:341.742585px;}
.x42_c00146{left:347.499435px;}
.x1e_c00146{left:350.518935px;}
.x2a_c00146{left:351.538635px;}
.x31_c00146{left:362.067285px;}
.xa_c00146{left:373.323585px;}
.x2b_c00146{left:383.139435px;}
.x3a_c00146{left:384.678885px;}
.x47_c00146{left:393.831435px;}
.x1f_c00146{left:395.266935px;}
.x50_c00146{left:396.449985px;}
.x16_c00146{left:406.062885px;}
.x2c_c00146{left:416.245035px;}
.xb_c00146{left:418.150785px;}
.x32_c00146{left:428.189385px;}
.x5f_c00146{left:429.595185px;}
.x2e_c00146{left:438.683385px;}
.x45_c00146{left:450.211935px;}
.x3b_c00146{left:452.686935px;}
.x20_c00146{left:460.567335px;}
.x33_c00146{left:461.616735px;}
.x4b_c00146{left:463.774935px;}
.x2f_c00146{left:471.482085px;}
.x3c_c00146{left:472.699785px;}
.x61_c00146{left:483.253185px;}
.x64_c00146{left:491.381085px;}
.x34_c00146{left:494.009535px;}
.x53_c00146{left:503.959035px;}
.x17_c00146{left:505.161885px;}
.xc_c00146{left:516.235035px;}
.x18_c00146{left:527.293335px;}
.x5b_c00146{left:528.649635px;}
.x19_c00146{left:538.653585px;}
.x54_c00146{left:540.450435px;}
.xd_c00146{left:548.063535px;}
.x3d_c00146{left:549.731685px;}
.xe_c00146{left:560.750385px;}
.x35_c00146{left:571.066185px;}
.x1a_c00146{left:582.178935px;}
.x1b_c00146{left:591.633435px;}
.xf_c00146{left:593.222385px;}
.x3e_c00146{left:602.691735px;}
.x43_c00146{left:604.508385px;}
.x4d_c00146{left:614.086635px;}
.x58_c00146{left:615.660735px;}
.x4a_c00146{left:617.596185px;}
.x10_c00146{left:626.521035px;}
.x36_c00146{left:629.614785px;}
.x59_c00146{left:637.406085px;}
.x3f_c00146{left:638.465385px;}
.x2_c00146{left:648.731685px;}
.x11_c00146{left:658.958385px;}
.x37_c00146{left:660.225585px;}
.x55_c00146{left:670.333485px;}
.x3_c00146{left:671.372985px;}
.x38_c00146{left:682.119435px;}
.x2d_c00146{left:692.618385px;}
.x48_c00146{left:703.666785px;}
.x62_c00146{left:717.135735px;}
@media print{
.v0_c00146{vertical-align:0.000000pt;}
.ls1_c00146{letter-spacing:-2.722726pt;}
.ls12_c00146{letter-spacing:-2.439360pt;}
.ls7_c00146{letter-spacing:-2.216333pt;}
.ls5_c00146{letter-spacing:-1.686643pt;}
.lse_c00146{letter-spacing:-0.940896pt;}
.ls6_c00146{letter-spacing:-0.878170pt;}
.lsa_c00146{letter-spacing:-0.160301pt;}
.ls3_c00146{letter-spacing:0.000000pt;}
.ls11_c00146{letter-spacing:0.299693pt;}
.ls4_c00146{letter-spacing:1.491494pt;}
.lsf_c00146{letter-spacing:1.749901pt;}
.lsb_c00146{letter-spacing:1.830400pt;}
.ls10_c00146{letter-spacing:1.895731pt;}
.lsc_c00146{letter-spacing:2.292998pt;}
.lsd_c00146{letter-spacing:2.836627pt;}
.ls9_c00146{letter-spacing:2.912800pt;}
.ls8_c00146{letter-spacing:3.185609pt;}
.ls2_c00146{letter-spacing:3.484800pt;}
.ls0_c00146{letter-spacing:3.889609pt;}
.ws2_c00146{word-spacing:-20.260627pt;}
.ws3_c00146{word-spacing:-19.319731pt;}
.ws1_c00146{word-spacing:-17.424000pt;}
.ws4_c00146{word-spacing:0.000000pt;}
.ws0_c00146{word-spacing:10.106272pt;}
._7_c00146{margin-left:-11.708928pt;}
._b_c00146{width:5.436640pt;}
._3_c00146{width:6.343040pt;}
._4_c00146{width:8.084736pt;}
._8_c00146{width:9.757440pt;}
._a_c00146{width:12.475936pt;}
._1_c00146{width:15.541856pt;}
._5_c00146{width:18.538432pt;}
._d_c00146{width:19.793312pt;}
._0_c00146{width:24.200000pt;}
._c_c00146{width:27.529920pt;}
._6_c00146{width:31.432896pt;}
._2_c00146{width:35.266880pt;}
._9_c00146{width:42.090048pt;}
.fs8_c00146{font-size:24.640000pt;}
.fs5_c00146{font-size:36.608000pt;}
.fs2_c00146{font-size:57.376000pt;}
.fs4_c00146{font-size:58.256000pt;}
.fs3_c00146{font-size:63.712176pt;}
.fs1_c00146{font-size:69.696000pt;}
.fs7_c00146{font-size:70.048000pt;}
.fs0_c00146{font-size:77.792176pt;}
.fs6_c00146{font-size:79.904176pt;}
.y0_c00146{bottom:0.000000pt;}
.y1_c00146{bottom:68.000000pt;}
.y19_c00146{bottom:120.622520pt;}
.y18_c00146{bottom:126.641720pt;}
.y17_c00146{bottom:154.198920pt;}
.y16_c00146{bottom:185.562120pt;}
.y15_c00146{bottom:214.712120pt;}
.y14_c00146{bottom:243.224120pt;}
.y13_c00146{bottom:271.731720pt;}
.y12_c00146{bottom:299.926920pt;}
.y11_c00146{bottom:329.072520pt;}
.y10_c00146{bottom:357.905720pt;}
.yf_c00146{bottom:386.417720pt;}
.ye_c00146{bottom:443.758520pt;}
.yd_c00146{bottom:472.587320pt;}
.yc_c00146{bottom:501.416120pt;}
.yb_c00146{bottom:531.828920pt;}
.ya_c00146{bottom:561.286920pt;}
.y9_c00146{bottom:590.432520pt;}
.y8_c00146{bottom:619.578120pt;}
.y7_c00146{bottom:648.406920pt;}
.y6_c00146{bottom:735.526920pt;}
.y5_c00146{bottom:764.043320pt;}
.y4_c00146{bottom:792.550920pt;}
.y3_c00146{bottom:821.067320pt;}
.y2_c00146{bottom:955.069320pt;}
.ha_c00146{height:25.698750pt;}
.h6_c00146{height:38.181000pt;}
.h9_c00146{height:59.841375pt;}
.h5_c00146{height:60.759188pt;}
.h4_c00146{height:64.209927pt;}
.h3_c00146{height:68.402813pt;}
.h8_c00146{height:68.748281pt;}
.h2_c00146{height:76.348766pt;}
.h7_c00146{height:78.421579pt;}
.h1_c00146{height:986.666667pt;}
.h0_c00146{height:1122.666667pt;}
.w1_c00146{width:652.000000pt;}
.w0_c00146{width:793.333333pt;}
.x0_c00146{left:0.000000pt;}
.x46_c00146{left:43.678387pt;}
.x21_c00146{left:65.233987pt;}
.x4_c00146{left:67.015987pt;}
.x63_c00146{left:68.186387pt;}
.x1_c00146{left:70.666667pt;}
.x49_c00146{left:75.798387pt;}
.x40_c00146{left:95.576387pt;}
.x22_c00146{left:105.964787pt;}
.x5_c00146{left:115.684387pt;}
.x5c_c00146{left:117.026387pt;}
.x23_c00146{left:125.258787pt;}
.x51_c00146{left:126.209187pt;}
.x56_c00146{left:134.296387pt;}
.x4e_c00146{left:135.251187pt;}
.x27_c00146{left:136.575587pt;}
.x57_c00146{left:144.438387pt;}
.x6_c00146{left:145.806787pt;}
.x12_c00146{left:155.055587pt;}
.x39_c00146{left:163.930387pt;}
.x5a_c00146{left:165.157987pt;}
.x7_c00146{left:174.380387pt;}
.x24_c00146{left:183.571987pt;}
.x13_c00146{left:193.691987pt;}
.x5d_c00146{left:194.954787pt;}
.x1c_c00146{left:203.046387pt;}
.x60_c00146{left:204.476387pt;}
.x25_c00146{left:213.993587pt;}
.x28_c00146{left:223.611987pt;}
.x4f_c00146{left:224.685587pt;}
.x14_c00146{left:233.635187pt;}
.x15_c00146{left:243.020387pt;}
.x8_c00146{left:253.193187pt;}
.x29_c00146{left:262.701587pt;}
.x52_c00146{left:264.025987pt;}
.x1d_c00146{left:273.221987pt;}
.x4c_c00146{left:281.326787pt;}
.x9_c00146{left:283.293587pt;}
.x30_c00146{left:285.211987pt;}
.x44_c00146{left:292.234387pt;}
.x5e_c00146{left:293.426787pt;}
.x41_c00146{left:301.751587pt;}
.x26_c00146{left:303.771187pt;}
.x42_c00146{left:308.888387pt;}
.x1e_c00146{left:311.572387pt;}
.x2a_c00146{left:312.478787pt;}
.x31_c00146{left:321.837587pt;}
.xa_c00146{left:331.843187pt;}
.x2b_c00146{left:340.568387pt;}
.x3a_c00146{left:341.936787pt;}
.x47_c00146{left:350.072387pt;}
.x1f_c00146{left:351.348387pt;}
.x50_c00146{left:352.399987pt;}
.x16_c00146{left:360.944787pt;}
.x2c_c00146{left:369.995587pt;}
.xb_c00146{left:371.689587pt;}
.x32_c00146{left:380.612787pt;}
.x5f_c00146{left:381.862387pt;}
.x2e_c00146{left:389.940787pt;}
.x45_c00146{left:400.188387pt;}
.x3b_c00146{left:402.388387pt;}
.x20_c00146{left:409.393187pt;}
.x33_c00146{left:410.325987pt;}
.x4b_c00146{left:412.244387pt;}
.x2f_c00146{left:419.095187pt;}
.x3c_c00146{left:420.177587pt;}
.x61_c00146{left:429.558387pt;}
.x64_c00146{left:436.783187pt;}
.x34_c00146{left:439.119587pt;}
.x53_c00146{left:447.963587pt;}
.x17_c00146{left:449.032787pt;}
.xc_c00146{left:458.875587pt;}
.x18_c00146{left:468.705187pt;}
.x5b_c00146{left:469.910787pt;}
.x19_c00146{left:478.803187pt;}
.x54_c00146{left:480.400387pt;}
.xd_c00146{left:487.167587pt;}
.x3d_c00146{left:488.650387pt;}
.xe_c00146{left:498.444787pt;}
.x35_c00146{left:507.614387pt;}
.x1a_c00146{left:517.492387pt;}
.x1b_c00146{left:525.896387pt;}
.xf_c00146{left:527.308787pt;}
.x3e_c00146{left:535.725987pt;}
.x43_c00146{left:537.340787pt;}
.x4d_c00146{left:545.854787pt;}
.x58_c00146{left:547.253987pt;}
.x4a_c00146{left:548.974387pt;}
.x10_c00146{left:556.907587pt;}
.x36_c00146{left:559.657587pt;}
.x59_c00146{left:566.583187pt;}
.x3f_c00146{left:567.524787pt;}
.x2_c00146{left:576.650387pt;}
.x11_c00146{left:585.740787pt;}
.x37_c00146{left:586.867187pt;}
.x55_c00146{left:595.851987pt;}
.x3_c00146{left:596.775987pt;}
.x38_c00146{left:606.328387pt;}
.x2d_c00146{left:615.660787pt;}
.x48_c00146{left:625.481587pt;}
.x62_c00146{left:637.453987pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_849ad35beb900a7b5e69d71c.woff2')format("woff");}.ff1_c00147{font-family:ff1_c00147;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00147;src:url('chunks/assets/font_c52cc0282deb50d23f729f45.woff2')format("woff");}.ff2_c00147{font-family:ff2_c00147;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00147;src:url('chunks/assets/font_72a173af931000dd2af311db.woff2')format("woff");}.ff3_c00147{font-family:ff3_c00147;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00147;src:url('chunks/assets/font_fde8f244c303ab29885122ee.woff2')format("woff");}.ff4_c00147{font-family:ff4_c00147;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2e_c00147{transform:matrix(0.167004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167004,0.000000,0.000000,0.250000,0,0);}
.m72_c00147{transform:matrix(0.217346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217346,0.000000,0.000000,0.250000,0,0);}
.m87_c00147{transform:matrix(0.240952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240952,0.000000,0.000000,0.250000,0,0);}
.m0_c00147{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00147{transform:matrix(0.253693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253693,0.000000,0.000000,0.250000,0,0);}
.m46_c00147{transform:matrix(0.253944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253944,0.000000,0.000000,0.250000,0,0);}
.m6c_c00147{transform:matrix(0.255335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255335,0.000000,0.000000,0.250000,0,0);}
.m43_c00147{transform:matrix(0.256120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256120,0.000000,0.000000,0.250000,0,0);}
.m25_c00147{transform:matrix(0.256514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256514,0.000000,0.000000,0.250000,0,0);}
.m51_c00147{transform:matrix(0.258235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258235,0.000000,0.000000,0.250000,0,0);}
.m27_c00147{transform:matrix(0.258736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258736,0.000000,0.000000,0.250000,0,0);}
.m19_c00147{transform:matrix(0.258739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258739,0.000000,0.000000,0.250000,0,0);}
.m22_c00147{transform:matrix(0.261193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261193,0.000000,0.000000,0.250000,0,0);}
.m38_c00147{transform:matrix(0.264671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264671,0.000000,0.000000,0.250000,0,0);}
.m70_c00147{transform:matrix(0.264892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264892,0.000000,0.000000,0.250000,0,0);}
.m53_c00147{transform:matrix(0.265088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265088,0.000000,0.000000,0.250000,0,0);}
.mb_c00147{transform:matrix(0.265942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265942,0.000000,0.000000,0.250000,0,0);}
.m8e_c00147{transform:matrix(0.266177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266177,0.000000,0.000000,0.250000,0,0);}
.m5c_c00147{transform:matrix(0.270126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270126,0.000000,0.000000,0.250000,0,0);}
.m54_c00147{transform:matrix(0.270411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270411,0.000000,0.000000,0.250000,0,0);}
.mc_c00147{transform:matrix(0.270764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270764,0.000000,0.000000,0.250000,0,0);}
.m67_c00147{transform:matrix(0.270971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270971,0.000000,0.000000,0.250000,0,0);}
.m86_c00147{transform:matrix(0.273420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273420,0.000000,0.000000,0.250000,0,0);}
.m7a_c00147{transform:matrix(0.273865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273865,0.000000,0.000000,0.250000,0,0);}
.m4e_c00147{transform:matrix(0.274522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274522,0.000000,0.000000,0.250000,0,0);}
.m4d_c00147{transform:matrix(0.274865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274865,0.000000,0.000000,0.250000,0,0);}
.m2a_c00147{transform:matrix(0.274942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274942,0.000000,0.000000,0.250000,0,0);}
.m6_c00147{transform:matrix(0.276445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276445,0.000000,0.000000,0.250000,0,0);}
.m68_c00147{transform:matrix(0.277262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277262,0.000000,0.000000,0.250000,0,0);}
.m9c_c00147{transform:matrix(0.277824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277824,0.000000,0.000000,0.250000,0,0);}
.md_c00147{transform:matrix(0.277901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277901,0.000000,0.000000,0.250000,0,0);}
.m71_c00147{transform:matrix(0.279604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279604,0.000000,0.000000,0.250000,0,0);}
.m1b_c00147{transform:matrix(0.280188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280188,0.000000,0.000000,0.250000,0,0);}
.m16_c00147{transform:matrix(0.280360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280360,0.000000,0.000000,0.250000,0,0);}
.m9d_c00147{transform:matrix(0.280875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280875,0.000000,0.000000,0.250000,0,0);}
.m12_c00147{transform:matrix(0.280926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280926,0.000000,0.000000,0.250000,0,0);}
.m98_c00147{transform:matrix(0.281227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281227,0.000000,0.000000,0.250000,0,0);}
.m29_c00147{transform:matrix(0.281503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281503,0.000000,0.000000,0.250000,0,0);}
.m37_c00147{transform:matrix(0.281671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281671,0.000000,0.000000,0.250000,0,0);}
.m83_c00147{transform:matrix(0.282692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282692,0.000000,0.000000,0.250000,0,0);}
.m3a_c00147{transform:matrix(0.282722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282722,0.000000,0.000000,0.250000,0,0);}
.m9a_c00147{transform:matrix(0.284344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284344,0.000000,0.000000,0.250000,0,0);}
.m30_c00147{transform:matrix(0.284396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284396,0.000000,0.000000,0.250000,0,0);}
.ma1_c00147{transform:matrix(0.284773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284773,0.000000,0.000000,0.250000,0,0);}
.m21_c00147{transform:matrix(0.284852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284852,0.000000,0.000000,0.250000,0,0);}
.m39_c00147{transform:matrix(0.285251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285251,0.000000,0.000000,0.250000,0,0);}
.m13_c00147{transform:matrix(0.286635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286635,0.000000,0.000000,0.250000,0,0);}
.m52_c00147{transform:matrix(0.287740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287740,0.000000,0.000000,0.250000,0,0);}
.m62_c00147{transform:matrix(0.287901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287901,0.000000,0.000000,0.250000,0,0);}
.m94_c00147{transform:matrix(0.288108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288108,0.000000,0.000000,0.250000,0,0);}
.m32_c00147{transform:matrix(0.288829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288829,0.000000,0.000000,0.250000,0,0);}
.m3f_c00147{transform:matrix(0.288841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288841,0.000000,0.000000,0.250000,0,0);}
.m5_c00147{transform:matrix(0.289083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289083,0.000000,0.000000,0.250000,0,0);}
.m9f_c00147{transform:matrix(0.290403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290403,0.000000,0.000000,0.250000,0,0);}
.m74_c00147{transform:matrix(0.290893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290893,0.000000,0.000000,0.250000,0,0);}
.m41_c00147{transform:matrix(0.291019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291019,0.000000,0.000000,0.250000,0,0);}
.m50_c00147{transform:matrix(0.291236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291236,0.000000,0.000000,0.250000,0,0);}
.m4a_c00147{transform:matrix(0.292780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292780,0.000000,0.000000,0.250000,0,0);}
.m85_c00147{transform:matrix(0.293082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293082,0.000000,0.000000,0.250000,0,0);}
.m8b_c00147{transform:matrix(0.293094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293094,0.000000,0.000000,0.250000,0,0);}
.m3d_c00147{transform:matrix(0.293880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293880,0.000000,0.000000,0.250000,0,0);}
.m20_c00147{transform:matrix(0.294210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294210,0.000000,0.000000,0.250000,0,0);}
.m48_c00147{transform:matrix(0.294558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294558,0.000000,0.000000,0.250000,0,0);}
.mf_c00147{transform:matrix(0.295226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295226,0.000000,0.000000,0.250000,0,0);}
.m36_c00147{transform:matrix(0.296020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296020,0.000000,0.000000,0.250000,0,0);}
.m75_c00147{transform:matrix(0.296100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296100,0.000000,0.000000,0.250000,0,0);}
.m5f_c00147{transform:matrix(0.296490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296490,0.000000,0.000000,0.250000,0,0);}
.m1e_c00147{transform:matrix(0.296626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296626,0.000000,0.000000,0.250000,0,0);}
.m58_c00147{transform:matrix(0.296988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296988,0.000000,0.000000,0.250000,0,0);}
.m56_c00147{transform:matrix(0.297020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297020,0.000000,0.000000,0.250000,0,0);}
.m78_c00147{transform:matrix(0.299070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299070,0.000000,0.000000,0.250000,0,0);}
.m47_c00147{transform:matrix(0.299360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299360,0.000000,0.000000,0.250000,0,0);}
.m93_c00147{transform:matrix(0.300761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300761,0.000000,0.000000,0.250000,0,0);}
.m7c_c00147{transform:matrix(0.301297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301297,0.000000,0.000000,0.250000,0,0);}
.m6a_c00147{transform:matrix(0.301490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301490,0.000000,0.000000,0.250000,0,0);}
.m99_c00147{transform:matrix(0.303675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303675,0.000000,0.000000,0.250000,0,0);}
.m6f_c00147{transform:matrix(0.303710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303710,0.000000,0.000000,0.250000,0,0);}
.m1a_c00147{transform:matrix(0.304551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304551,0.000000,0.000000,0.250000,0,0);}
.m14_c00147{transform:matrix(0.304803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304803,0.000000,0.000000,0.250000,0,0);}
.m55_c00147{transform:matrix(0.305430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305430,0.000000,0.000000,0.250000,0,0);}
.m92_c00147{transform:matrix(0.305652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305652,0.000000,0.000000,0.250000,0,0);}
.m44_c00147{transform:matrix(0.305844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305844,0.000000,0.000000,0.250000,0,0);}
.m49_c00147{transform:matrix(0.306903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306903,0.000000,0.000000,0.250000,0,0);}
.m9e_c00147{transform:matrix(0.307433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307433,0.000000,0.000000,0.250000,0,0);}
.m35_c00147{transform:matrix(0.307613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307613,0.000000,0.000000,0.250000,0,0);}
.m77_c00147{transform:matrix(0.307949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307949,0.000000,0.000000,0.250000,0,0);}
.m3c_c00147{transform:matrix(0.308543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308543,0.000000,0.000000,0.250000,0,0);}
.m7f_c00147{transform:matrix(0.308657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308657,0.000000,0.000000,0.250000,0,0);}
.ma2_c00147{transform:matrix(0.309284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309284,0.000000,0.000000,0.250000,0,0);}
.m23_c00147{transform:matrix(0.310246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310246,0.000000,0.000000,0.250000,0,0);}
.m81_c00147{transform:matrix(0.310692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310692,0.000000,0.000000,0.250000,0,0);}
.m6b_c00147{transform:matrix(0.310882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310882,0.000000,0.000000,0.250000,0,0);}
.m90_c00147{transform:matrix(0.313016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313016,0.000000,0.000000,0.250000,0,0);}
.m76_c00147{transform:matrix(0.313180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313180,0.000000,0.000000,0.250000,0,0);}
.ma0_c00147{transform:matrix(0.314434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314434,0.000000,0.000000,0.250000,0,0);}
.m5a_c00147{transform:matrix(0.314973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314973,0.000000,0.000000,0.250000,0,0);}
.m8f_c00147{transform:matrix(0.315203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315203,0.000000,0.000000,0.250000,0,0);}
.m2c_c00147{transform:matrix(0.315955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315955,0.000000,0.000000,0.250000,0,0);}
.m2d_c00147{transform:matrix(0.316158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316158,0.000000,0.000000,0.250000,0,0);}
.m8a_c00147{transform:matrix(0.316573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316573,0.000000,0.000000,0.250000,0,0);}
.m45_c00147{transform:matrix(0.316667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316667,0.000000,0.000000,0.250000,0,0);}
.m11_c00147{transform:matrix(0.316908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316908,0.000000,0.000000,0.250000,0,0);}
.m65_c00147{transform:matrix(0.317131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317131,0.000000,0.000000,0.250000,0,0);}
.m7e_c00147{transform:matrix(0.317571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317571,0.000000,0.000000,0.250000,0,0);}
.m4f_c00147{transform:matrix(0.317951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317951,0.000000,0.000000,0.250000,0,0);}
.m34_c00147{transform:matrix(0.319387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319387,0.000000,0.000000,0.250000,0,0);}
.m3b_c00147{transform:matrix(0.320130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320130,0.000000,0.000000,0.250000,0,0);}
.m9b_c00147{transform:matrix(0.320380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320380,0.000000,0.000000,0.250000,0,0);}
.m24_c00147{transform:matrix(0.320870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320870,0.000000,0.000000,0.250000,0,0);}
.m18_c00147{transform:matrix(0.322058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322058,0.000000,0.000000,0.250000,0,0);}
.m73_c00147{transform:matrix(0.322148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322148,0.000000,0.000000,0.250000,0,0);}
.m26_c00147{transform:matrix(0.322460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322460,0.000000,0.000000,0.250000,0,0);}
.m1f_c00147{transform:matrix(0.322488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322488,0.000000,0.000000,0.250000,0,0);}
.m6d_c00147{transform:matrix(0.323896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323896,0.000000,0.000000,0.250000,0,0);}
.m63_c00147{transform:matrix(0.324102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324102,0.000000,0.000000,0.250000,0,0);}
.m7d_c00147{transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00147{transform:matrix(0.324554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324554,0.000000,0.000000,0.250000,0,0);}
.m8_c00147{transform:matrix(0.326108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326108,0.000000,0.000000,0.250000,0,0);}
.m10_c00147{transform:matrix(0.326323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326323,0.000000,0.000000,0.250000,0,0);}
.m2b_c00147{transform:matrix(0.326652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326652,0.000000,0.000000,0.250000,0,0);}
.m69_c00147{transform:matrix(0.326694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326694,0.000000,0.000000,0.250000,0,0);}
.m2f_c00147{transform:matrix(0.328474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328474,0.000000,0.000000,0.250000,0,0);}
.m89_c00147{transform:matrix(0.328946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328946,0.000000,0.000000,0.250000,0,0);}
.m2_c00147{transform:matrix(0.331135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331135,0.000000,0.000000,0.250000,0,0);}
.m15_c00147{transform:matrix(0.332458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332458,0.000000,0.000000,0.250000,0,0);}
.m40_c00147{transform:matrix(0.333494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333494,0.000000,0.000000,0.250000,0,0);}
.m7b_c00147{transform:matrix(0.333957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333957,0.000000,0.000000,0.250000,0,0);}
.m64_c00147{transform:matrix(0.334972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334972,0.000000,0.000000,0.250000,0,0);}
.m4b_c00147{transform:matrix(0.335641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335641,0.000000,0.000000,0.250000,0,0);}
.m60_c00147{transform:matrix(0.335888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335888,0.000000,0.000000,0.250000,0,0);}
.m66_c00147{transform:matrix(0.336220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336220,0.000000,0.000000,0.250000,0,0);}
.m80_c00147{transform:matrix(0.336434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336434,0.000000,0.000000,0.250000,0,0);}
.ma_c00147{transform:matrix(0.337254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337254,0.000000,0.000000,0.250000,0,0);}
.m17_c00147{transform:matrix(0.338528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338528,0.000000,0.000000,0.250000,0,0);}
.m4_c00147{transform:matrix(0.341856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341856,0.000000,0.000000,0.250000,0,0);}
.m84_c00147{transform:matrix(0.342152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342152,0.000000,0.000000,0.250000,0,0);}
.m95_c00147{transform:matrix(0.342849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342849,0.000000,0.000000,0.250000,0,0);}
.m31_c00147{transform:matrix(0.344727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344727,0.000000,0.000000,0.250000,0,0);}
.m8d_c00147{transform:matrix(0.344756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344756,0.000000,0.000000,0.250000,0,0);}
.m1c_c00147{transform:matrix(0.346420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346420,0.000000,0.000000,0.250000,0,0);}
.m82_c00147{transform:matrix(0.348072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348072,0.000000,0.000000,0.250000,0,0);}
.m4c_c00147{transform:matrix(0.348171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348171,0.000000,0.000000,0.250000,0,0);}
.m1d_c00147{transform:matrix(0.348652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348652,0.000000,0.000000,0.250000,0,0);}
.m59_c00147{transform:matrix(0.349021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349021,0.000000,0.000000,0.250000,0,0);}
.m8c_c00147{transform:matrix(0.352173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352173,0.000000,0.000000,0.250000,0,0);}
.m96_c00147{transform:matrix(0.353510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353510,0.000000,0.000000,0.250000,0,0);}
.m3_c00147{transform:matrix(0.353778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353778,0.000000,0.000000,0.250000,0,0);}
.m42_c00147{transform:matrix(0.354288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354288,0.000000,0.000000,0.250000,0,0);}
.m28_c00147{transform:matrix(0.357309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357309,0.000000,0.000000,0.250000,0,0);}
.me_c00147{transform:matrix(0.358352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358352,0.000000,0.000000,0.250000,0,0);}
.m9_c00147{transform:matrix(0.358405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358405,0.000000,0.000000,0.250000,0,0);}
.m33_c00147{transform:matrix(0.359811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359811,0.000000,0.000000,0.250000,0,0);}
.m61_c00147{transform:matrix(0.361148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361148,0.000000,0.000000,0.250000,0,0);}
.m5d_c00147{transform:matrix(0.364424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364424,0.000000,0.000000,0.250000,0,0);}
.m3e_c00147{transform:matrix(0.364479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364479,0.000000,0.000000,0.250000,0,0);}
.m97_c00147{transform:matrix(0.367573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367573,0.000000,0.000000,0.250000,0,0);}
.m79_c00147{transform:matrix(0.370709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370709,0.000000,0.000000,0.250000,0,0);}
.m88_c00147{transform:matrix(0.375543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375543,0.000000,0.000000,0.250000,0,0);}
.m6e_c00147{transform:matrix(0.379063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379063,0.000000,0.000000,0.250000,0,0);}
.m91_c00147{transform:matrix(0.384422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384422,0.000000,0.000000,0.250000,0,0);}
.m7_c00147{transform:matrix(0.390937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390937,0.000000,0.000000,0.250000,0,0);}
.ma3_c00147{transform:matrix(0.392467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392467,0.000000,0.000000,0.250000,0,0);}
.m57_c00147{transform:matrix(0.399504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399504,0.000000,0.000000,0.250000,0,0);}
.m5b_c00147{transform:matrix(0.623242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.623242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.623242,0.000000,0.000000,0.250000,0,0);}
.v0_c00147{vertical-align:0.000000px;}
.lsd_c00147{letter-spacing:-2.674980px;}
.ls6_c00147{letter-spacing:-0.924779px;}
.ls8_c00147{letter-spacing:-0.695495px;}
.ls3_c00147{letter-spacing:0.000000px;}
.lsb_c00147{letter-spacing:1.604988px;}
.ls9_c00147{letter-spacing:1.719630px;}
.ls0_c00147{letter-spacing:2.835479px;}
.lse_c00147{letter-spacing:2.890810px;}
.ls2_c00147{letter-spacing:3.079712px;}
.lsa_c00147{letter-spacing:3.366000px;}
.ls1_c00147{letter-spacing:3.546259px;}
.ls5_c00147{letter-spacing:3.821400px;}
.ls4_c00147{letter-spacing:4.266900px;}
.lsc_c00147{letter-spacing:49.896198px;}
.ls7_c00147{letter-spacing:54.172998px;}
.sc__c00147{text-shadow:none;}
.sc0_c00147{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00147{-webkit-text-stroke:0px transparent;}
.sc0_c00147{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00147{word-spacing:-19.107000px;}
.ws2_c00147{word-spacing:-18.411505px;}
.ws3_c00147{word-spacing:0.000000px;}
.ws1_c00147{word-spacing:0.534996px;}
._7_c00147{margin-left:-11.846340px;}
._5_c00147{width:3.897828px;}
._d_c00147{width:6.726060px;}
._2_c00147{width:8.101368px;}
._0_c00147{width:9.553500px;}
._a_c00147{width:11.387772px;}
._c_c00147{width:21.019799px;}
._9_c00147{width:23.646823px;}
._3_c00147{width:28.966212px;}
._1_c00147{width:31.179377px;}
._4_c00147{width:34.621884px;}
._e_c00147{width:37.342721px;}
._b_c00147{width:38.443284px;}
._6_c00147{width:39.666132px;}
._8_c00147{width:44.557524px;}
.fc0_c00147{color:transparent;}
.fsf_c00147{font-size:20.790000px;}
.fsd_c00147{font-size:22.176000px;}
.fs5_c00147{font-size:25.146000px;}
.fs0_c00147{font-size:27.720000px;}
.fs7_c00147{font-size:33.264000px;}
.fsb_c00147{font-size:33.660000px;}
.fs2_c00147{font-size:44.748000px;}
.fsa_c00147{font-size:49.896198px;}
.fse_c00147{font-size:50.688000px;}
.fs8_c00147{font-size:54.172998px;}
.fs10_c00147{font-size:57.816198px;}
.fs4_c00147{font-size:60.192000px;}
.fs9_c00147{font-size:67.320000px;}
.fsc_c00147{font-size:73.854000px;}
.fs3_c00147{font-size:76.428000px;}
.fs6_c00147{font-size:78.408000px;}
.fs1_c00147{font-size:85.338000px;}
.y0_c00147{bottom:0.000000px;}
.y29_c00147{bottom:19.514925px;}
.y1_c00147{bottom:76.500000px;}
.y28_c00147{bottom:117.525915px;}
.y27_c00147{bottom:128.572335px;}
.y26_c00147{bottom:143.897535px;}
.y25_c00147{bottom:174.542985px;}
.y24_c00147{bottom:188.447535px;}
.y23_c00147{bottom:210.182985px;}
.y22_c00147{bottom:242.263935px;}
.y21_c00147{bottom:249.391935px;}
.y20_c00147{bottom:254.025135px;}
.y1f_c00147{bottom:276.478335px;}
.y1e_c00147{bottom:308.549385px;}
.y1d_c00147{bottom:344.189385px;}
.y1b_c00147{bottom:373.419135px;}
.y1c_c00147{bottom:376.626735px;}
.y1a_c00147{bottom:405.846585px;}
.y19_c00147{bottom:437.922585px;}
.y18_c00147{bottom:470.359935px;}
.y17_c00147{bottom:502.430985px;}
.y16_c00147{bottom:525.953385px;}
.y15_c00147{bottom:534.150585px;}
.y2_c00147{bottom:576.923535px;}
.y14_c00147{bottom:598.658985px;}
.y13_c00147{bottom:631.809135px;}
.y12_c00147{bottom:664.597935px;}
.y11_c00147{bottom:698.094585px;}
.y10_c00147{bottom:730.883385px;}
.yf_c00147{bottom:762.251535px;}
.yb_c00147{bottom:763.315785px;}
.ye_c00147{bottom:827.472735px;}
.ya_c00147{bottom:827.829135px;}
.yd_c00147{bottom:828.180585px;}
.yc_c00147{bottom:839.946735px;}
.y9_c00147{bottom:860.617935px;}
.y8_c00147{bottom:892.688985px;}
.y7_c00147{bottom:917.993385px;}
.y6_c00147{bottom:925.482735px;}
.y5_c00147{bottom:1039.169385px;}
.y4_c00147{bottom:1059.127785px;}
.y3_c00147{bottom:1076.947785px;}
.h10_c00147{height:21.683320px;}
.he_c00147{height:23.128875px;}
.h7_c00147{height:26.226492px;}
.h2_c00147{height:28.911094px;}
.hd_c00147{height:33.035449px;}
.hc_c00147{height:33.230868px;}
.h9_c00147{height:34.693313px;}
.ha_c00147{height:36.079217px;}
.h4_c00147{height:43.917715px;}
.hf_c00147{height:52.866000px;}
.h11_c00147{height:56.743437px;}
.h6_c00147{height:62.778375px;}
.hb_c00147{height:70.212656px;}
.h5_c00147{height:75.009902px;}
.h8_c00147{height:76.953164px;}
.h3_c00147{height:83.754580px;}
.h1_c00147{height:1110.000000px;}
.h0_c00147{height:1263.000000px;}
.w1_c00147{width:733.500000px;}
.w0_c00147{width:892.500000px;}
.x0_c00147{left:0.000000px;}
.x2_c00147{left:43.029885px;}
.x26_c00147{left:69.814335px;}
.x19_c00147{left:71.408235px;}
.x7_c00147{left:72.442785px;}
.x1_c00147{left:79.500000px;}
.x1a_c00147{left:104.043585px;}
.x42_c00147{left:113.701035px;}
.x27_c00147{left:114.794985px;}
.x49_c00147{left:125.011785px;}
.x28_c00147{left:126.674985px;}
.x5f_c00147{left:138.371835px;}
.x8_c00147{left:148.430235px;}
.x4a_c00147{left:149.474685px;}
.x9_c00147{left:159.988485px;}
.x4b_c00147{left:170.304285px;}
.x58_c00147{left:179.991435px;}
.x1b_c00147{left:182.614935px;}
.x56_c00147{left:192.267435px;}
.xa_c00147{left:193.608885px;}
.x23_c00147{left:203.543535px;}
.x32_c00147{left:204.657285px;}
.x4c_c00147{left:212.423835px;}
.x3d_c00147{left:214.171185px;}
.x1c_c00147{left:215.740335px;}
.xb_c00147{left:225.996735px;}
.x29_c00147{left:227.189685px;}
.x47_c00147{left:234.416685px;}
.x33_c00147{left:237.530235px;}
.x4d_c00147{left:246.603585px;}
.x5a_c00147{left:248.093535px;}
.xc_c00147{left:249.187485px;}
.x34_c00147{left:259.864635px;}
.x2c_c00147{left:270.997185px;}
.x48_c00147{left:272.704935px;}
.x3e_c00147{left:280.496235px;}
.x24_c00147{left:282.055485px;}
.x5b_c00147{left:283.080135px;}
.x66_c00147{left:284.134485px;}
.x1d_c00147{left:293.301885px;}
.xd_c00147{left:303.637485px;}
.x1e_c00147{left:315.571935px;}
.x43_c00147{left:324.996735px;}
.xe_c00147{left:326.422335px;}
.x3b_c00147{left:336.406485px;}
.x2a_c00147{left:337.535085px;}
.xf_c00147{left:348.370635px;}
.x35_c00147{left:358.547835px;}
.x10_c00147{left:359.552685px;}
.x2b_c00147{left:370.784235px;}
.x44_c00147{left:382.055385px;}
.x4e_c00147{left:391.693035px;}
.x36_c00147{left:392.861235px;}
.x25_c00147{left:404.325435px;}
.x67_c00147{left:413.433435px;}
.x11_c00147{left:416.081685px;}
.x55_c00147{left:424.496685px;}
.x2d_c00147{left:426.402435px;}
.x12_c00147{left:437.237985px;}
.x1f_c00147{left:447.291435px;}
.x45_c00147{left:458.750685px;}
.x13_c00147{left:469.348635px;}
.x5d_c00147{left:470.417835px;}
.x64_c00147{left:480.080235px;}
.x20_c00147{left:481.886985px;}
.x4f_c00147{left:492.712635px;}
.x3f_c00147{left:493.752135px;}
.x50_c00147{left:503.657085px;}
.x37_c00147{left:505.181685px;}
.x5_c00147{left:510.270285px;}
.x21_c00147{left:515.324235px;}
.x14_c00147{left:526.550835px;}
.x51_c00147{left:537.421035px;}
.x6_c00147{left:543.341235px;}
.x68_c00147{left:546.014235px;}
.x3c_c00147{left:548.182335px;}
.x46_c00147{left:557.775435px;}
.x40_c00147{left:559.354485px;}
.x52_c00147{left:560.403885px;}
.x38_c00147{left:568.878285px;}
.x57_c00147{left:570.204885px;}
.x39_c00147{left:581.421585px;}
.x53_c00147{left:590.564235px;}
.x62_c00147{left:591.588885px;}
.x2e_c00147{left:592.861035px;}
.x69_c00147{left:601.573035px;}
.x15_c00147{left:603.543135px;}
.x3a_c00147{left:613.319385px;}
.x31_c00147{left:614.591535px;}
.x54_c00147{left:624.382635px;}
.x16_c00147{left:626.372535px;}
.x63_c00147{left:635.643885px;}
.x3_c00147{left:641.281935px;}
.x60_c00147{left:647.390235px;}
.x4_c00147{left:648.400035px;}
.x18_c00147{left:652.087785px;}
.x5e_c00147{left:658.795035px;}
.x5c_c00147{left:669.477135px;}
.x6a_c00147{left:680.327535px;}
.x22_c00147{left:681.431385px;}
.x41_c00147{left:690.712635px;}
.x59_c00147{left:691.935285px;}
.x17_c00147{left:693.336135px;}
.x6b_c00147{left:694.529085px;}
.x61_c00147{left:695.623035px;}
.x2f_c00147{left:696.959535px;}
.x30_c00147{left:698.786085px;}
.x65_c00147{left:701.102685px;}
@media print{
.v0_c00147{vertical-align:0.000000pt;}
.lsd_c00147{letter-spacing:-2.377760pt;}
.ls6_c00147{letter-spacing:-0.822026pt;}
.ls8_c00147{letter-spacing:-0.618218pt;}
.ls3_c00147{letter-spacing:0.000000pt;}
.lsb_c00147{letter-spacing:1.426656pt;}
.ls9_c00147{letter-spacing:1.528560pt;}
.ls0_c00147{letter-spacing:2.520426pt;}
.lse_c00147{letter-spacing:2.569609pt;}
.ls2_c00147{letter-spacing:2.737522pt;}
.lsa_c00147{letter-spacing:2.992000pt;}
.ls1_c00147{letter-spacing:3.152230pt;}
.ls5_c00147{letter-spacing:3.396800pt;}
.ls4_c00147{letter-spacing:3.792800pt;}
.lsc_c00147{letter-spacing:44.352176pt;}
.ls7_c00147{letter-spacing:48.153776pt;}
.ws0_c00147{word-spacing:-16.984000pt;}
.ws2_c00147{word-spacing:-16.365782pt;}
.ws3_c00147{word-spacing:0.000000pt;}
.ws1_c00147{word-spacing:0.475552pt;}
._7_c00147{margin-left:-10.530080pt;}
._5_c00147{width:3.464736pt;}
._d_c00147{width:5.978720pt;}
._2_c00147{width:7.201216pt;}
._0_c00147{width:8.492000pt;}
._a_c00147{width:10.122464pt;}
._c_c00147{width:18.684266pt;}
._9_c00147{width:21.019398pt;}
._3_c00147{width:25.747744pt;}
._1_c00147{width:27.715002pt;}
._4_c00147{width:30.775008pt;}
._e_c00147{width:33.193530pt;}
._b_c00147{width:34.171808pt;}
._6_c00147{width:35.258784pt;}
._8_c00147{width:39.606688pt;}
.fsf_c00147{font-size:18.480000pt;}
.fsd_c00147{font-size:19.712000pt;}
.fs5_c00147{font-size:22.352000pt;}
.fs0_c00147{font-size:24.640000pt;}
.fs7_c00147{font-size:29.568000pt;}
.fsb_c00147{font-size:29.920000pt;}
.fs2_c00147{font-size:39.776000pt;}
.fsa_c00147{font-size:44.352176pt;}
.fse_c00147{font-size:45.056000pt;}
.fs8_c00147{font-size:48.153776pt;}
.fs10_c00147{font-size:51.392176pt;}
.fs4_c00147{font-size:53.504000pt;}
.fs9_c00147{font-size:59.840000pt;}
.fsc_c00147{font-size:65.648000pt;}
.fs3_c00147{font-size:67.936000pt;}
.fs6_c00147{font-size:69.696000pt;}
.fs1_c00147{font-size:75.856000pt;}
.y0_c00147{bottom:0.000000pt;}
.y29_c00147{bottom:17.346600pt;}
.y1_c00147{bottom:68.000000pt;}
.y28_c00147{bottom:104.467480pt;}
.y27_c00147{bottom:114.286520pt;}
.y26_c00147{bottom:127.908920pt;}
.y25_c00147{bottom:155.149320pt;}
.y24_c00147{bottom:167.508920pt;}
.y23_c00147{bottom:186.829320pt;}
.y22_c00147{bottom:215.345720pt;}
.y21_c00147{bottom:221.681720pt;}
.y20_c00147{bottom:225.800120pt;}
.y1f_c00147{bottom:245.758520pt;}
.y1e_c00147{bottom:274.266120pt;}
.y1d_c00147{bottom:305.946120pt;}
.y1b_c00147{bottom:331.928120pt;}
.y1c_c00147{bottom:334.779320pt;}
.y1a_c00147{bottom:360.752520pt;}
.y19_c00147{bottom:389.264520pt;}
.y18_c00147{bottom:418.097720pt;}
.y17_c00147{bottom:446.605320pt;}
.y16_c00147{bottom:467.514120pt;}
.y15_c00147{bottom:474.800520pt;}
.y2_c00147{bottom:512.820920pt;}
.y14_c00147{bottom:532.141320pt;}
.y13_c00147{bottom:561.608120pt;}
.y12_c00147{bottom:590.753720pt;}
.y11_c00147{bottom:620.528520pt;}
.y10_c00147{bottom:649.674120pt;}
.yf_c00147{bottom:677.556920pt;}
.yb_c00147{bottom:678.502920pt;}
.ye_c00147{bottom:735.531320pt;}
.ya_c00147{bottom:735.848120pt;}
.yd_c00147{bottom:736.160520pt;}
.yc_c00147{bottom:746.619320pt;}
.y9_c00147{bottom:764.993720pt;}
.y8_c00147{bottom:793.501320pt;}
.y7_c00147{bottom:815.994120pt;}
.y6_c00147{bottom:822.651320pt;}
.y5_c00147{bottom:923.706120pt;}
.y4_c00147{bottom:941.446920pt;}
.y3_c00147{bottom:957.286920pt;}
.h10_c00147{height:19.274063pt;}
.he_c00147{height:20.559000pt;}
.h7_c00147{height:23.312438pt;}
.h2_c00147{height:25.698750pt;}
.hd_c00147{height:29.364844pt;}
.hc_c00147{height:29.538549pt;}
.h9_c00147{height:30.838500pt;}
.ha_c00147{height:32.070415pt;}
.h4_c00147{height:39.037969pt;}
.hf_c00147{height:46.992000pt;}
.h11_c00147{height:50.438610pt;}
.h6_c00147{height:55.803000pt;}
.hb_c00147{height:62.411250pt;}
.h5_c00147{height:66.675469pt;}
.h8_c00147{height:68.402813pt;}
.h3_c00147{height:74.448516pt;}
.h1_c00147{height:986.666667pt;}
.h0_c00147{height:1122.666667pt;}
.w1_c00147{width:652.000000pt;}
.w0_c00147{width:793.333333pt;}
.x0_c00147{left:0.000000pt;}
.x2_c00147{left:38.248787pt;}
.x26_c00147{left:62.057187pt;}
.x19_c00147{left:63.473987pt;}
.x7_c00147{left:64.393587pt;}
.x1_c00147{left:70.666667pt;}
.x1a_c00147{left:92.483187pt;}
.x42_c00147{left:101.067587pt;}
.x27_c00147{left:102.039987pt;}
.x49_c00147{left:111.121587pt;}
.x28_c00147{left:112.599987pt;}
.x5f_c00147{left:122.997187pt;}
.x8_c00147{left:131.937987pt;}
.x4a_c00147{left:132.866387pt;}
.x9_c00147{left:142.211987pt;}
.x4b_c00147{left:151.381587pt;}
.x58_c00147{left:159.992387pt;}
.x1b_c00147{left:162.324387pt;}
.x56_c00147{left:170.904387pt;}
.xa_c00147{left:172.096787pt;}
.x23_c00147{left:180.927587pt;}
.x32_c00147{left:181.917587pt;}
.x4c_c00147{left:188.821187pt;}
.x3d_c00147{left:190.374387pt;}
.x1c_c00147{left:191.769187pt;}
.xb_c00147{left:200.885987pt;}
.x29_c00147{left:201.946387pt;}
.x47_c00147{left:208.370387pt;}
.x33_c00147{left:211.137987pt;}
.x4d_c00147{left:219.203187pt;}
.x5a_c00147{left:220.527587pt;}
.xc_c00147{left:221.499987pt;}
.x34_c00147{left:230.990787pt;}
.x2c_c00147{left:240.886387pt;}
.x48_c00147{left:242.404387pt;}
.x3e_c00147{left:249.329987pt;}
.x24_c00147{left:250.715987pt;}
.x5b_c00147{left:251.626787pt;}
.x66_c00147{left:252.563987pt;}
.x1d_c00147{left:260.712787pt;}
.xd_c00147{left:269.899987pt;}
.x1e_c00147{left:280.508387pt;}
.x43_c00147{left:288.885987pt;}
.xe_c00147{left:290.153187pt;}
.x3b_c00147{left:299.027987pt;}
.x2a_c00147{left:300.031187pt;}
.xf_c00147{left:309.662787pt;}
.x35_c00147{left:318.709187pt;}
.x10_c00147{left:319.602387pt;}
.x2b_c00147{left:329.585987pt;}
.x44_c00147{left:339.604787pt;}
.x4e_c00147{left:348.171587pt;}
.x36_c00147{left:349.209987pt;}
.x25_c00147{left:359.400387pt;}
.x67_c00147{left:367.496387pt;}
.x11_c00147{left:369.850387pt;}
.x55_c00147{left:377.330387pt;}
.x2d_c00147{left:379.024387pt;}
.x12_c00147{left:388.655987pt;}
.x1f_c00147{left:397.592387pt;}
.x45_c00147{left:407.778387pt;}
.x13_c00147{left:417.198787pt;}
.x5d_c00147{left:418.149187pt;}
.x64_c00147{left:426.737987pt;}
.x20_c00147{left:428.343987pt;}
.x4f_c00147{left:437.966787pt;}
.x3f_c00147{left:438.890787pt;}
.x50_c00147{left:447.695187pt;}
.x37_c00147{left:449.050387pt;}
.x5_c00147{left:453.573587pt;}
.x21_c00147{left:458.065987pt;}
.x14_c00147{left:468.045187pt;}
.x51_c00147{left:477.707587pt;}
.x6_c00147{left:482.969987pt;}
.x68_c00147{left:485.345987pt;}
.x3c_c00147{left:487.273187pt;}
.x46_c00147{left:495.800387pt;}
.x40_c00147{left:497.203987pt;}
.x52_c00147{left:498.136787pt;}
.x38_c00147{left:505.669587pt;}
.x57_c00147{left:506.848787pt;}
.x39_c00147{left:516.819187pt;}
.x53_c00147{left:524.945987pt;}
.x62_c00147{left:525.856787pt;}
.x2e_c00147{left:526.987587pt;}
.x69_c00147{left:534.731587pt;}
.x15_c00147{left:536.482787pt;}
.x3a_c00147{left:545.172787pt;}
.x31_c00147{left:546.303587pt;}
.x54_c00147{left:555.006787pt;}
.x16_c00147{left:556.775587pt;}
.x63_c00147{left:565.016787pt;}
.x3_c00147{left:570.028387pt;}
.x60_c00147{left:575.457987pt;}
.x4_c00147{left:576.355587pt;}
.x18_c00147{left:579.633587pt;}
.x5e_c00147{left:585.595587pt;}
.x5c_c00147{left:595.090787pt;}
.x6a_c00147{left:604.735587pt;}
.x22_c00147{left:605.716787pt;}
.x41_c00147{left:613.966787pt;}
.x59_c00147{left:615.053587pt;}
.x17_c00147{left:616.298787pt;}
.x6b_c00147{left:617.359187pt;}
.x61_c00147{left:618.331587pt;}
.x2f_c00147{left:619.519587pt;}
.x30_c00147{left:621.143187pt;}
.x65_c00147{left:623.202387pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_32c71c0a5a041e248a9c4c3f.woff2')format("woff");}.ff1_c00148{font-family:ff1_c00148;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00148;src:url('chunks/assets/font_a7ce961c32d67894571d697a.woff2')format("woff");}.ff2_c00148{font-family:ff2_c00148;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5f_c00148{transform:matrix(0.197470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197470,0.000000,0.000000,0.250000,0,0);}
.m1d_c00148{transform:matrix(0.206272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206272,0.000000,0.000000,0.250000,0,0);}
.m97_c00148{transform:matrix(0.216830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216830,0.000000,0.000000,0.250000,0,0);}
.m42_c00148{transform:matrix(0.228445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228445,0.000000,0.000000,0.250000,0,0);}
.mab_c00148{transform:matrix(0.234209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234209,0.000000,0.000000,0.250000,0,0);}
.m9_c00148{transform:matrix(0.241287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241287,0.000000,0.000000,0.250000,0,0);}
.m6_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);}
.maf_c00148{transform:matrix(0.251305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251305,0.000000,0.000000,0.250000,0,0);}
.m91_c00148{transform:matrix(0.251355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251355,0.000000,0.000000,0.250000,0,0);}
.m8f_c00148{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.m7d_c00148{transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);}
.m83_c00148{transform:matrix(0.257794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257794,0.000000,0.000000,0.250000,0,0);}
.m1a_c00148{transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);}
.m6c_c00148{transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);}
.m47_c00148{transform:matrix(0.259723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259723,0.000000,0.000000,0.250000,0,0);}
.m5d_c00148{transform:matrix(0.259988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259988,0.000000,0.000000,0.250000,0,0);}
.m7b_c00148{transform:matrix(0.260011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260011,0.000000,0.000000,0.250000,0,0);}
.m90_c00148{transform:matrix(0.260404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260404,0.000000,0.000000,0.250000,0,0);}
.m13_c00148{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m26_c00148{transform:matrix(0.261788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261788,0.000000,0.000000,0.250000,0,0);}
.m3a_c00148{transform:matrix(0.262256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262256,0.000000,0.000000,0.250000,0,0);}
.m38_c00148{transform:matrix(0.263115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263115,0.000000,0.000000,0.250000,0,0);}
.m6d_c00148{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.mc2_c00148{transform:matrix(0.263460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263460,0.000000,0.000000,0.250000,0,0);}
.m81_c00148{transform:matrix(0.263720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263720,0.000000,0.000000,0.250000,0,0);}
.m3_c00148{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m9e_c00148{transform:matrix(0.264690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264690,0.000000,0.000000,0.250000,0,0);}
.m30_c00148{transform:matrix(0.265694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265694,0.000000,0.000000,0.250000,0,0);}
.m15_c00148{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m1b_c00148{transform:matrix(0.266384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266384,0.000000,0.000000,0.250000,0,0);}
.m46_c00148{transform:matrix(0.267061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267061,0.000000,0.000000,0.250000,0,0);}
.m3d_c00148{transform:matrix(0.267199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267199,0.000000,0.000000,0.250000,0,0);}
.m35_c00148{transform:matrix(0.267205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267205,0.000000,0.000000,0.250000,0,0);}
.m4a_c00148{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m0_c00148{transform:matrix(0.268090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268090,0.000000,0.000000,0.250000,0,0);}
.m69_c00148{transform:matrix(0.268316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268316,0.000000,0.000000,0.250000,0,0);}
.m3c_c00148{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.m4d_c00148{transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);}
.m8_c00148{transform:matrix(0.269233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269233,0.000000,0.000000,0.250000,0,0);}
.m72_c00148{transform:matrix(0.269697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269697,0.000000,0.000000,0.250000,0,0);}
.mf_c00148{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.mae_c00148{transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);}
.ma0_c00148{transform:matrix(0.272544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272544,0.000000,0.000000,0.250000,0,0);}
.m54_c00148{transform:matrix(0.272974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272974,0.000000,0.000000,0.250000,0,0);}
.m5c_c00148{transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);}
.mbc_c00148{transform:matrix(0.273934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273934,0.000000,0.000000,0.250000,0,0);}
.m9f_c00148{transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);}
.m89_c00148{transform:matrix(0.274338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274338,0.000000,0.000000,0.250000,0,0);}
.m25_c00148{transform:matrix(0.274595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274595,0.000000,0.000000,0.250000,0,0);}
.m57_c00148{transform:matrix(0.275130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275130,0.000000,0.000000,0.250000,0,0);}
.m6b_c00148{transform:matrix(0.275293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275293,0.000000,0.000000,0.250000,0,0);}
.m44_c00148{transform:matrix(0.275570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275570,0.000000,0.000000,0.250000,0,0);}
.m94_c00148{transform:matrix(0.275670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275670,0.000000,0.000000,0.250000,0,0);}
.m61_c00148{transform:matrix(0.275730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275730,0.000000,0.000000,0.250000,0,0);}
.m6e_c00148{transform:matrix(0.275762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275762,0.000000,0.000000,0.250000,0,0);}
.ma4_c00148{transform:matrix(0.275806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275806,0.000000,0.000000,0.250000,0,0);}
.mc1_c00148{transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);}
.m68_c00148{transform:matrix(0.277101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277101,0.000000,0.000000,0.250000,0,0);}
.mb2_c00148{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m12_c00148{transform:matrix(0.277596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277596,0.000000,0.000000,0.250000,0,0);}
.m98_c00148{transform:matrix(0.277636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277636,0.000000,0.000000,0.250000,0,0);}
.m51_c00148{transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);}
.m66_c00148{transform:matrix(0.278962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278962,0.000000,0.000000,0.250000,0,0);}
.m85_c00148{transform:matrix(0.279253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279253,0.000000,0.000000,0.250000,0,0);}
.m73_c00148{transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);}
.m86_c00148{transform:matrix(0.280356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280356,0.000000,0.000000,0.250000,0,0);}
.maa_c00148{transform:matrix(0.280604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280604,0.000000,0.000000,0.250000,0,0);}
.mb3_c00148{transform:matrix(0.280836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280836,0.000000,0.000000,0.250000,0,0);}
.m34_c00148{transform:matrix(0.280982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280982,0.000000,0.000000,0.250000,0,0);}
.ma2_c00148{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.m40_c00148{transform:matrix(0.282201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282201,0.000000,0.000000,0.250000,0,0);}
.m1c_c00148{transform:matrix(0.282327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282327,0.000000,0.000000,0.250000,0,0);}
.m45_c00148{transform:matrix(0.283154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283154,0.000000,0.000000,0.250000,0,0);}
.m5a_c00148{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m31_c00148{transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);}
.m11_c00148{transform:matrix(0.284112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284112,0.000000,0.000000,0.250000,0,0);}
.ma9_c00148{transform:matrix(0.284669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284669,0.000000,0.000000,0.250000,0,0);}
.m65_c00148{transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);}
.m19_c00148{transform:matrix(0.285373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285373,0.000000,0.000000,0.250000,0,0);}
.m36_c00148{transform:matrix(0.285479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285479,0.000000,0.000000,0.250000,0,0);}
.m6a_c00148{transform:matrix(0.285531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285531,0.000000,0.000000,0.250000,0,0);}
.m80_c00148{transform:matrix(0.285579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285579,0.000000,0.000000,0.250000,0,0);}
.m8a_c00148{transform:matrix(0.287127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287127,0.000000,0.000000,0.250000,0,0);}
.m75_c00148{transform:matrix(0.287763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287763,0.000000,0.000000,0.250000,0,0);}
.mb_c00148{transform:matrix(0.287961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287961,0.000000,0.000000,0.250000,0,0);}
.mbf_c00148{transform:matrix(0.288441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288441,0.000000,0.000000,0.250000,0,0);}
.m2b_c00148{transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);}
.mc_c00148{transform:matrix(0.289429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289429,0.000000,0.000000,0.250000,0,0);}
.mc6_c00148{transform:matrix(0.291165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291165,0.000000,0.000000,0.250000,0,0);}
.mb1_c00148{transform:matrix(0.291420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291420,0.000000,0.000000,0.250000,0,0);}
.m17_c00148{transform:matrix(0.292392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292392,0.000000,0.000000,0.250000,0,0);}
.m9c_c00148{transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);}
.m92_c00148{transform:matrix(0.293864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293864,0.000000,0.000000,0.250000,0,0);}
.m58_c00148{transform:matrix(0.294257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294257,0.000000,0.000000,0.250000,0,0);}
.mbb_c00148{transform:matrix(0.294690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294690,0.000000,0.000000,0.250000,0,0);}
.m24_c00148{transform:matrix(0.294735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294735,0.000000,0.000000,0.250000,0,0);}
.m99_c00148{transform:matrix(0.294823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294823,0.000000,0.000000,0.250000,0,0);}
.m14_c00148{transform:matrix(0.294986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294986,0.000000,0.000000,0.250000,0,0);}
.md_c00148{transform:matrix(0.295472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295472,0.000000,0.000000,0.250000,0,0);}
.m59_c00148{transform:matrix(0.295700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295700,0.000000,0.000000,0.250000,0,0);}
.mbd_c00148{transform:matrix(0.296090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296090,0.000000,0.000000,0.250000,0,0);}
.m37_c00148{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.mac_c00148{transform:matrix(0.297584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297584,0.000000,0.000000,0.250000,0,0);}
.mb4_c00148{transform:matrix(0.297717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297717,0.000000,0.000000,0.250000,0,0);}
.m3b_c00148{transform:matrix(0.297758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297758,0.000000,0.000000,0.250000,0,0);}
.m21_c00148{transform:matrix(0.298650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298650,0.000000,0.000000,0.250000,0,0);}
.m71_c00148{transform:matrix(0.299159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299159,0.000000,0.000000,0.250000,0,0);}
.mb6_c00148{transform:matrix(0.300485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300485,0.000000,0.000000,0.250000,0,0);}
.m67_c00148{transform:matrix(0.300531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300531,0.000000,0.000000,0.250000,0,0);}
.m63_c00148{transform:matrix(0.300736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300736,0.000000,0.000000,0.250000,0,0);}
.m9a_c00148{transform:matrix(0.301035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301035,0.000000,0.000000,0.250000,0,0);}
.m62_c00148{transform:matrix(0.301441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301441,0.000000,0.000000,0.250000,0,0);}
.m50_c00148{transform:matrix(0.301501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301501,0.000000,0.000000,0.250000,0,0);}
.mb5_c00148{transform:matrix(0.301840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301840,0.000000,0.000000,0.250000,0,0);}
.m39_c00148{transform:matrix(0.302180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302180,0.000000,0.000000,0.250000,0,0);}
.mc5_c00148{transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);}
.m20_c00148{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m78_c00148{transform:matrix(0.302917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302917,0.000000,0.000000,0.250000,0,0);}
.m4c_c00148{transform:matrix(0.302931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302931,0.000000,0.000000,0.250000,0,0);}
.m7e_c00148{transform:matrix(0.303159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303159,0.000000,0.000000,0.250000,0,0);}
.m5b_c00148{transform:matrix(0.303446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303446,0.000000,0.000000,0.250000,0,0);}
.m64_c00148{transform:matrix(0.303475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303475,0.000000,0.000000,0.250000,0,0);}
.m43_c00148{transform:matrix(0.304008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304008,0.000000,0.000000,0.250000,0,0);}
.mad_c00148{transform:matrix(0.304119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304119,0.000000,0.000000,0.250000,0,0);}
.mb0_c00148{transform:matrix(0.304254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304254,0.000000,0.000000,0.250000,0,0);}
.ma6_c00148{transform:matrix(0.304407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304407,0.000000,0.000000,0.250000,0,0);}
.m1e_c00148{transform:matrix(0.304857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304857,0.000000,0.000000,0.250000,0,0);}
.m27_c00148{transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);}
.m32_c00148{transform:matrix(0.305254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305254,0.000000,0.000000,0.250000,0,0);}
.m4_c00148{transform:matrix(0.305639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305639,0.000000,0.000000,0.250000,0,0);}
.m48_c00148{transform:matrix(0.305851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305851,0.000000,0.000000,0.250000,0,0);}
.m87_c00148{transform:matrix(0.306531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306531,0.000000,0.000000,0.250000,0,0);}
.mb8_c00148{transform:matrix(0.306573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306573,0.000000,0.000000,0.250000,0,0);}
.m7c_c00148{transform:matrix(0.307183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307183,0.000000,0.000000,0.250000,0,0);}
.ma8_c00148{transform:matrix(0.307491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307491,0.000000,0.000000,0.250000,0,0);}
.m8d_c00148{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m8e_c00148{transform:matrix(0.308746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308746,0.000000,0.000000,0.250000,0,0);}
.m4b_c00148{transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);}
.m3e_c00148{transform:matrix(0.309749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309749,0.000000,0.000000,0.250000,0,0);}
.m41_c00148{transform:matrix(0.310026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310026,0.000000,0.000000,0.250000,0,0);}
.mc0_c00148{transform:matrix(0.310626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310626,0.000000,0.000000,0.250000,0,0);}
.m93_c00148{transform:matrix(0.310673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310673,0.000000,0.000000,0.250000,0,0);}
.m2d_c00148{transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);}
.mb9_c00148{transform:matrix(0.311374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311374,0.000000,0.000000,0.250000,0,0);}
.m18_c00148{transform:matrix(0.311773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311773,0.000000,0.000000,0.250000,0,0);}
.m56_c00148{transform:matrix(0.311789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311789,0.000000,0.000000,0.250000,0,0);}
.m88_c00148{transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);}
.m55_c00148{transform:matrix(0.312347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312347,0.000000,0.000000,0.250000,0,0);}
.m8c_c00148{transform:matrix(0.312744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312744,0.000000,0.000000,0.250000,0,0);}
.m96_c00148{transform:matrix(0.312751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312751,0.000000,0.000000,0.250000,0,0);}
.m33_c00148{transform:matrix(0.312946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312946,0.000000,0.000000,0.250000,0,0);}
.m7_c00148{transform:matrix(0.312988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312988,0.000000,0.000000,0.250000,0,0);}
.m76_c00148{transform:matrix(0.313763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313763,0.000000,0.000000,0.250000,0,0);}
.m77_c00148{transform:matrix(0.313811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313811,0.000000,0.000000,0.250000,0,0);}
.m8b_c00148{transform:matrix(0.314132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314132,0.000000,0.000000,0.250000,0,0);}
.m1_c00148{transform:matrix(0.314383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314383,0.000000,0.000000,0.250000,0,0);}
.m84_c00148{transform:matrix(0.314815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314815,0.000000,0.000000,0.250000,0,0);}
.m10_c00148{transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);}
.m49_c00148{transform:matrix(0.316284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316284,0.000000,0.000000,0.250000,0,0);}
.mbe_c00148{transform:matrix(0.317031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317031,0.000000,0.000000,0.250000,0,0);}
.m70_c00148{transform:matrix(0.317683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317683,0.000000,0.000000,0.250000,0,0);}
.ma7_c00148{transform:matrix(0.317980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317980,0.000000,0.000000,0.250000,0,0);}
.m29_c00148{transform:matrix(0.318443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318443,0.000000,0.000000,0.250000,0,0);}
.m22_c00148{transform:matrix(0.319290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319290,0.000000,0.000000,0.250000,0,0);}
.mba_c00148{transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);}
.m28_c00148{transform:matrix(0.320357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320357,0.000000,0.000000,0.250000,0,0);}
.m5e_c00148{transform:matrix(0.320640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320640,0.000000,0.000000,0.250000,0,0);}
.m2f_c00148{transform:matrix(0.321354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321354,0.000000,0.000000,0.250000,0,0);}
.m4f_c00148{transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);}
.m3f_c00148{transform:matrix(0.322032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322032,0.000000,0.000000,0.250000,0,0);}
.m74_c00148{transform:matrix(0.322573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322573,0.000000,0.000000,0.250000,0,0);}
.m79_c00148{transform:matrix(0.323503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323503,0.000000,0.000000,0.250000,0,0);}
.m95_c00148{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.ma5_c00148{transform:matrix(0.323850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323850,0.000000,0.000000,0.250000,0,0);}
.ma3_c00148{transform:matrix(0.324676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324676,0.000000,0.000000,0.250000,0,0);}
.m2c_c00148{transform:matrix(0.326100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326100,0.000000,0.000000,0.250000,0,0);}
.m7a_c00148{transform:matrix(0.326176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326176,0.000000,0.000000,0.250000,0,0);}
.mc3_c00148{transform:matrix(0.326848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326848,0.000000,0.000000,0.250000,0,0);}
.m5_c00148{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.ma_c00148{transform:matrix(0.327350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327350,0.000000,0.000000,0.250000,0,0);}
.mb7_c00148{transform:matrix(0.332460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332460,0.000000,0.000000,0.250000,0,0);}
.m2_c00148{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m7f_c00148{transform:matrix(0.334069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334069,0.000000,0.000000,0.250000,0,0);}
.m52_c00148{transform:matrix(0.336140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336140,0.000000,0.000000,0.250000,0,0);}
.mc4_c00148{transform:matrix(0.339224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339224,0.000000,0.000000,0.250000,0,0);}
.m4e_c00148{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m53_c00148{transform:matrix(0.339602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339602,0.000000,0.000000,0.250000,0,0);}
.ma1_c00148{transform:matrix(0.343069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343069,0.000000,0.000000,0.250000,0,0);}
.m1f_c00148{transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);}
.me_c00148{transform:matrix(0.343814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343814,0.000000,0.000000,0.250000,0,0);}
.m6f_c00148{transform:matrix(0.345463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345463,0.000000,0.000000,0.250000,0,0);}
.m2e_c00148{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m9b_c00148{transform:matrix(0.350956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350956,0.000000,0.000000,0.250000,0,0);}
.m2a_c00148{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m23_c00148{transform:matrix(0.361367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361367,0.000000,0.000000,0.250000,0,0);}
.m9d_c00148{transform:matrix(0.361926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361926,0.000000,0.000000,0.250000,0,0);}
.m16_c00148{transform:matrix(0.368363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368363,0.000000,0.000000,0.250000,0,0);}
.m60_c00148{transform:matrix(0.395349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395349,0.000000,0.000000,0.250000,0,0);}
.m82_c00148{transform:matrix(0.416306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416306,0.000000,0.000000,0.250000,0,0);}
.v0_c00148{vertical-align:0.000000px;}
.ls8_c00148{letter-spacing:-2.744280px;}
.lse_c00148{letter-spacing:-2.375762px;}
.ls9_c00148{letter-spacing:-1.897474px;}
.lsb_c00148{letter-spacing:-0.274428px;}
.ls11_c00148{letter-spacing:-0.015840px;}
.ls6_c00148{letter-spacing:0.000000px;}
.lsc_c00148{letter-spacing:0.705672px;}
.ls13_c00148{letter-spacing:1.082030px;}
.lsa_c00148{letter-spacing:1.089871px;}
.lsf_c00148{letter-spacing:1.748498px;}
.ls12_c00148{letter-spacing:1.851310px;}
.ls1_c00148{letter-spacing:2.132698px;}
.ls10_c00148{letter-spacing:2.422807px;}
.ls3_c00148{letter-spacing:3.112798px;}
.ls7_c00148{letter-spacing:3.276900px;}
.lsd_c00148{letter-spacing:3.308818px;}
.ls5_c00148{letter-spacing:3.920400px;}
.ls4_c00148{letter-spacing:3.969900px;}
.ls0_c00148{letter-spacing:7.997616px;}
.ls2_c00148{letter-spacing:9.408960px;}
.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;}
}
.ws2_c00148{word-spacing:-20.691871px;}
.ws0_c00148{word-spacing:-19.602000px;}
.ws3_c00148{word-spacing:0.000000px;}
.ws1_c00148{word-spacing:2.037816px;}
._7_c00148{margin-left:-1.052568px;}
._0_c00148{width:7.135128px;}
._6_c00148{width:9.487368px;}
._8_c00148{width:11.918808px;}
._2_c00148{width:20.856528px;}
._4_c00148{width:28.258243px;}
._3_c00148{width:33.244992px;}
._5_c00148{width:36.614160px;}
._1_c00148{width:39.439224px;}
.fc0_c00148{color:transparent;}
.fs7_c00148{font-size:33.660000px;}
.fs6_c00148{font-size:37.026198px;}
.fs4_c00148{font-size:45.144000px;}
.fs2_c00148{font-size:65.538000px;}
.fs3_c00148{font-size:66.330000px;}
.fs1_c00148{font-size:78.408000px;}
.fs5_c00148{font-size:79.200000px;}
.fs0_c00148{font-size:79.398000px;}
.y0_c00148{bottom:0.000000px;}
.y1d_c00148{bottom:68.692185px;}
.y1_c00148{bottom:76.500000px;}
.y1c_c00148{bottom:139.615785px;}
.y1b_c00148{bottom:170.627535px;}
.y19_c00148{bottom:204.841935px;}
.y1a_c00148{bottom:210.182985px;}
.y18_c00148{bottom:238.338585px;}
.y17_c00148{bottom:271.483785px;}
.y16_c00148{bottom:304.272585px;}
.y15_c00148{bottom:336.709935px;}
.y14_c00148{bottom:368.780985px;}
.y13_c00148{bottom:400.856985px;}
.y12_c00148{bottom:429.012585px;}
.y11_c00148{bottom:433.650735px;}
.y10_c00148{bottom:499.228335px;}
.yf_c00148{bottom:531.299385px;}
.ye_c00148{bottom:563.380335px;}
.yd_c00148{bottom:595.451385px;}
.yc_c00148{bottom:628.240185px;}
.yb_c00148{bottom:660.672585px;}
.ya_c00148{bottom:693.109935px;}
.y9_c00148{bottom:725.542335px;}
.y8_c00148{bottom:757.974735px;}
.y7_c00148{bottom:790.045785px;}
.y6_c00148{bottom:822.126735px;}
.y5_c00148{bottom:854.202735px;}
.y4_c00148{bottom:886.991535px;}
.y3_c00148{bottom:918.711135px;}
.y2_c00148{bottom:1077.660585px;}
.h9_c00148{height:33.035449px;}
.h8_c00148{height:38.617167px;}
.h6_c00148{height:47.083781px;}
.h4_c00148{height:68.354086px;}
.h5_c00148{height:69.180117px;}
.h3_c00148{height:76.953164px;}
.h2_c00148{height:77.924795px;}
.h7_c00148{height:82.603125px;}
.h1_c00148{height:1110.000000px;}
.h0_c00148{height:1263.000000px;}
.w1_c00148{width:733.500000px;}
.w0_c00148{width:892.500000px;}
.x0_c00148{left:0.000000px;}
.x39_c00148{left:65.903835px;}
.x3_c00148{left:67.789785px;}
.x59_c00148{left:68.923335px;}
.x1_c00148{left:79.500000px;}
.x58_c00148{left:88.396635px;}
.x32_c00148{left:89.401485px;}
.x22_c00148{left:100.529085px;}
.x5a_c00148{left:101.657685px;}
.x3a_c00148{left:112.067535px;}
.x4d_c00148{left:122.398185px;}
.x4_c00148{left:124.110885px;}
.x23_c00148{left:132.907035px;}
.x3f_c00148{left:134.030685px;}
.x12_c00148{left:145.583985px;}
.x48_c00148{left:154.652385px;}
.x5_c00148{left:156.271035px;}
.x40_c00148{left:166.864035px;}
.x44_c00148{left:178.649985px;}
.x54_c00148{left:188.213385px;}
.x2b_c00148{left:189.747885px;}
.x24_c00148{left:199.910235px;}
.x6_c00148{left:201.474435px;}
.x1b_c00148{left:211.364535px;}
.x1c_c00148{left:220.264635px;}
.x13_c00148{left:222.848535px;}
.x25_c00148{left:233.203935px;}
.x33_c00148{left:244.653285px;}
.x2c_c00148{left:254.800785px;}
.x26_c00148{left:266.750085px;}
.x64_c00148{left:268.096485px;}
.x34_c00148{left:278.036085px;}
.x3b_c00148{left:288.312285px;}
.x7_c00148{left:289.841835px;}
.x4e_c00148{left:299.058735px;}
.x14_c00148{left:300.583335px;}
.x3c_c00148{left:311.107035px;}
.x62_c00148{left:319.343835px;}
.x8_c00148{left:321.101085px;}
.x45_c00148{left:322.323735px;}
.x15_c00148{left:332.317785px;}
.x2d_c00148{left:333.322635px;}
.x9_c00148{left:343.895835px;}
.x46_c00148{left:355.384785px;}
.x55_c00148{left:364.334385px;}
.x35_c00148{left:365.834235px;}
.x4b_c00148{left:367.789485px;}
.x16_c00148{left:377.120235px;}
.x5e_c00148{left:379.624935px;}
.x1d_c00148{left:386.970735px;}
.x41_c00148{left:388.242885px;}
.x49_c00148{left:398.850735px;}
.x5f_c00148{left:399.959535px;}
.x4c_c00148{left:402.231585px;}
.x3d_c00148{left:409.156635px;}
.x36_c00148{left:410.606985px;}
.x4f_c00148{left:412.413735px;}
.x56_c00148{left:420.853485px;}
.xa_c00148{left:431.911785px;}
.x53_c00148{left:441.589035px;}
.x2e_c00148{left:442.687935px;}
.x27_c00148{left:454.206585px;}
.x51_c00148{left:456.250935px;}
.xb_c00148{left:465.631185px;}
.xc_c00148{left:476.323185px;}
.x2f_c00148{left:487.327035px;}
.x65_c00148{left:495.276735px;}
.x5b_c00148{left:496.831035px;}
.x42_c00148{left:498.405135px;}
.x60_c00148{left:508.552635px;}
.xd_c00148{left:509.800035px;}
.x30_c00148{left:520.383135px;}
.x1e_c00148{left:531.208785px;}
.x57_c00148{left:532.238385px;}
.x43_c00148{left:542.202735px;}
.x17_c00148{left:552.944235px;}
.xe_c00148{left:554.290635px;}
.x52_c00148{left:562.408635px;}
.x61_c00148{left:563.631285px;}
.x31_c00148{left:564.700485px;}
.x1f_c00148{left:575.209335px;}
.xf_c00148{left:585.183585px;}
.x37_c00148{left:586.802235px;}
.x18_c00148{left:596.949735px;}
.x63_c00148{left:599.607885px;}
.x20_c00148{left:607.701135px;}
.x19_c00148{left:618.313935px;}
.x38_c00148{left:620.249385px;}
.x4a_c00148{left:633.030285px;}
.x5c_c00148{left:639.747435px;}
.x28_c00148{left:640.970085px;}
.x2_c00148{left:643.771785px;}
.x29_c00148{left:651.152235px;}
.x10_c00148{left:652.360035px;}
.x50_c00148{left:663.066885px;}
.x47_c00148{left:664.472685px;}
.x21_c00148{left:667.051635px;}
.x5d_c00148{left:674.070735px;}
.x1a_c00148{left:675.521085px;}
.x3e_c00148{left:685.168635px;}
.x11_c00148{left:696.538785px;}
.x2a_c00148{left:698.959335px;}
@media print{
.v0_c00148{vertical-align:0.000000pt;}
.ls8_c00148{letter-spacing:-2.439360pt;}
.lse_c00148{letter-spacing:-2.111789pt;}
.ls9_c00148{letter-spacing:-1.686643pt;}
.lsb_c00148{letter-spacing:-0.243936pt;}
.ls11_c00148{letter-spacing:-0.014080pt;}
.ls6_c00148{letter-spacing:0.000000pt;}
.lsc_c00148{letter-spacing:0.627264pt;}
.ls13_c00148{letter-spacing:0.961805pt;}
.lsa_c00148{letter-spacing:0.968774pt;}
.lsf_c00148{letter-spacing:1.554221pt;}
.ls12_c00148{letter-spacing:1.645609pt;}
.ls1_c00148{letter-spacing:1.895731pt;}
.ls10_c00148{letter-spacing:2.153606pt;}
.ls3_c00148{letter-spacing:2.766931pt;}
.ls7_c00148{letter-spacing:2.912800pt;}
.lsd_c00148{letter-spacing:2.941171pt;}
.ls5_c00148{letter-spacing:3.484800pt;}
.ls4_c00148{letter-spacing:3.528800pt;}
.ls0_c00148{letter-spacing:7.108992pt;}
.ls2_c00148{letter-spacing:8.363520pt;}
.ws2_c00148{word-spacing:-18.392774pt;}
.ws0_c00148{word-spacing:-17.424000pt;}
.ws3_c00148{word-spacing:0.000000pt;}
.ws1_c00148{word-spacing:1.811392pt;}
._7_c00148{margin-left:-0.935616pt;}
._0_c00148{width:6.342336pt;}
._6_c00148{width:8.433216pt;}
._8_c00148{width:10.594496pt;}
._2_c00148{width:18.539136pt;}
._4_c00148{width:25.118438pt;}
._3_c00148{width:29.551104pt;}
._5_c00148{width:32.545920pt;}
._1_c00148{width:35.057088pt;}
.fs7_c00148{font-size:29.920000pt;}
.fs6_c00148{font-size:32.912176pt;}
.fs4_c00148{font-size:40.128000pt;}
.fs2_c00148{font-size:58.256000pt;}
.fs3_c00148{font-size:58.960000pt;}
.fs1_c00148{font-size:69.696000pt;}
.fs5_c00148{font-size:70.400000pt;}
.fs0_c00148{font-size:70.576000pt;}
.y0_c00148{bottom:0.000000pt;}
.y1d_c00148{bottom:61.059720pt;}
.y1_c00148{bottom:68.000000pt;}
.y1c_c00148{bottom:124.102920pt;}
.y1b_c00148{bottom:151.668920pt;}
.y19_c00148{bottom:182.081720pt;}
.y1a_c00148{bottom:186.829320pt;}
.y18_c00148{bottom:211.856520pt;}
.y17_c00148{bottom:241.318920pt;}
.y16_c00148{bottom:270.464520pt;}
.y15_c00148{bottom:299.297720pt;}
.y14_c00148{bottom:327.805320pt;}
.y13_c00148{bottom:356.317320pt;}
.y12_c00148{bottom:381.344520pt;}
.y11_c00148{bottom:385.467320pt;}
.y10_c00148{bottom:443.758520pt;}
.yf_c00148{bottom:472.266120pt;}
.ye_c00148{bottom:500.782520pt;}
.yd_c00148{bottom:529.290120pt;}
.yc_c00148{bottom:558.435720pt;}
.yb_c00148{bottom:587.264520pt;}
.ya_c00148{bottom:616.097720pt;}
.y9_c00148{bottom:644.926520pt;}
.y8_c00148{bottom:673.755320pt;}
.y7_c00148{bottom:702.262920pt;}
.y6_c00148{bottom:730.779320pt;}
.y5_c00148{bottom:759.291320pt;}
.y4_c00148{bottom:788.436920pt;}
.y3_c00148{bottom:816.632120pt;}
.y2_c00148{bottom:957.920520pt;}
.h9_c00148{height:29.364844pt;}
.h8_c00148{height:34.326371pt;}
.h6_c00148{height:41.852250pt;}
.h4_c00148{height:60.759188pt;}
.h5_c00148{height:61.493438pt;}
.h3_c00148{height:68.402813pt;}
.h2_c00148{height:69.266484pt;}
.h7_c00148{height:73.425000pt;}
.h1_c00148{height:986.666667pt;}
.h0_c00148{height:1122.666667pt;}
.w1_c00148{width:652.000000pt;}
.w0_c00148{width:793.333333pt;}
.x0_c00148{left:0.000000pt;}
.x39_c00148{left:58.581187pt;}
.x3_c00148{left:60.257587pt;}
.x59_c00148{left:61.265187pt;}
.x1_c00148{left:70.666667pt;}
.x58_c00148{left:78.574787pt;}
.x32_c00148{left:79.467987pt;}
.x22_c00148{left:89.359187pt;}
.x5a_c00148{left:90.362387pt;}
.x3a_c00148{left:99.615587pt;}
.x4d_c00148{left:108.798387pt;}
.x4_c00148{left:110.320787pt;}
.x23_c00148{left:118.139587pt;}
.x3f_c00148{left:119.138387pt;}
.x12_c00148{left:129.407987pt;}
.x48_c00148{left:137.468787pt;}
.x5_c00148{left:138.907587pt;}
.x40_c00148{left:148.323587pt;}
.x44_c00148{left:158.799987pt;}
.x54_c00148{left:167.300787pt;}
.x2b_c00148{left:168.664787pt;}
.x24_c00148{left:177.697987pt;}
.x6_c00148{left:179.088387pt;}
.x1b_c00148{left:187.879587pt;}
.x1c_c00148{left:195.790787pt;}
.x13_c00148{left:198.087587pt;}
.x25_c00148{left:207.292387pt;}
.x33_c00148{left:217.469587pt;}
.x2c_c00148{left:226.489587pt;}
.x26_c00148{left:237.111187pt;}
.x64_c00148{left:238.307987pt;}
.x34_c00148{left:247.143187pt;}
.x3b_c00148{left:256.277587pt;}
.x7_c00148{left:257.637187pt;}
.x4e_c00148{left:265.829987pt;}
.x14_c00148{left:267.185187pt;}
.x3c_c00148{left:276.539587pt;}
.x62_c00148{left:283.861187pt;}
.x8_c00148{left:285.423187pt;}
.x45_c00148{left:286.509987pt;}
.x15_c00148{left:295.393587pt;}
.x2d_c00148{left:296.286787pt;}
.x9_c00148{left:305.685187pt;}
.x46_c00148{left:315.897587pt;}
.x55_c00148{left:323.852787pt;}
.x35_c00148{left:325.185987pt;}
.x4b_c00148{left:326.923987pt;}
.x16_c00148{left:335.217987pt;}
.x5e_c00148{left:337.444387pt;}
.x1d_c00148{left:343.973987pt;}
.x41_c00148{left:345.104787pt;}
.x49_c00148{left:354.533987pt;}
.x5f_c00148{left:355.519587pt;}
.x4c_c00148{left:357.539187pt;}
.x3d_c00148{left:363.694787pt;}
.x36_c00148{left:364.983987pt;}
.x4f_c00148{left:366.589987pt;}
.x56_c00148{left:374.091987pt;}
.xa_c00148{left:383.921587pt;}
.x53_c00148{left:392.523587pt;}
.x2e_c00148{left:393.500387pt;}
.x27_c00148{left:403.739187pt;}
.x51_c00148{left:405.556387pt;}
.xb_c00148{left:413.894387pt;}
.xc_c00148{left:423.398387pt;}
.x2f_c00148{left:433.179587pt;}
.x65_c00148{left:440.245987pt;}
.x5b_c00148{left:441.627587pt;}
.x42_c00148{left:443.026787pt;}
.x60_c00148{left:452.046787pt;}
.xd_c00148{left:453.155587pt;}
.x30_c00148{left:462.562787pt;}
.x1e_c00148{left:472.185587pt;}
.x57_c00148{left:473.100787pt;}
.x43_c00148{left:481.957987pt;}
.x17_c00148{left:491.505987pt;}
.xe_c00148{left:492.702787pt;}
.x52_c00148{left:499.918787pt;}
.x61_c00148{left:501.005587pt;}
.x31_c00148{left:501.955987pt;}
.x1f_c00148{left:511.297187pt;}
.xf_c00148{left:520.163187pt;}
.x37_c00148{left:521.601987pt;}
.x18_c00148{left:530.621987pt;}
.x63_c00148{left:532.984787pt;}
.x20_c00148{left:540.178787pt;}
.x19_c00148{left:549.612387pt;}
.x38_c00148{left:551.332787pt;}
.x4a_c00148{left:562.693587pt;}
.x5c_c00148{left:568.664387pt;}
.x28_c00148{left:569.751187pt;}
.x2_c00148{left:572.241587pt;}
.x29_c00148{left:578.801987pt;}
.x10_c00148{left:579.875587pt;}
.x50_c00148{left:589.392787pt;}
.x47_c00148{left:590.642387pt;}
.x21_c00148{left:592.934787pt;}
.x5d_c00148{left:599.173987pt;}
.x1a_c00148{left:600.463187pt;}
.x3e_c00148{left:609.038787pt;}
.x11_c00148{left:619.145587pt;}
.x2a_c00148{left:621.297187pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4ff6bcda2172a9ae6e4f1012.woff2')format("woff");}.ff1_c00149{font-family:ff1_c00149;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00149;src:url('chunks/assets/font_a1f4d9e5317853153d8c91f5.woff2')format("woff");}.ff2_c00149{font-family:ff2_c00149;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00149;src:url('chunks/assets/font_451acb93cb6c4675b6b0fd99.woff2')format("woff");}.ff3_c00149{font-family:ff3_c00149;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00149;src:url('chunks/assets/font_9fcf6385f45c3df3ebb26ffd.woff2')format("woff");}.ff4_c00149{font-family:ff4_c00149;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00149;src:url('chunks/assets/font_ae1289b822eb4738b7e76427.woff2')format("woff");}.ff5_c00149{font-family:ff5_c00149;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mcb_c00149{transform:matrix(0.057806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.057806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.057806,0.000000,0.000000,0.250000,0,0);}
.mcc_c00149{transform:matrix(0.083334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083334,0.000000,0.000000,0.250000,0,0);}
.m9a_c00149{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00149{transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);}
.m9d_c00149{transform:matrix(0.196180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196180,0.000000,0.000000,0.250000,0,0);}
.m9b_c00149{transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);}
.mc1_c00149{transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);}
.mc2_c00149{transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);}
.m66_c00149{transform:matrix(0.211203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211203,0.000000,0.000000,0.250000,0,0);}
.m99_c00149{transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);}
.m2_c00149{transform:matrix(0.218830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218830,0.000000,0.000000,0.250000,0,0);}
.m42_c00149{transform:matrix(0.218883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218883,0.000000,0.000000,0.250000,0,0);}
.m5a_c00149{transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);}
.m9e_c00149{transform:matrix(0.236451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236451,0.000000,0.000000,0.250000,0,0);}
.mb0_c00149{transform:matrix(0.241287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241287,0.000000,0.000000,0.250000,0,0);}
.mb5_c00149{transform:matrix(0.245621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245621,0.000000,0.000000,0.250000,0,0);}
.maa_c00149{transform:matrix(0.248004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248004,0.000000,0.000000,0.250000,0,0);}
.m5d_c00149{transform:matrix(0.249385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249385,0.000000,0.000000,0.250000,0,0);}
.m1_c00149{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00149{transform:matrix(0.252254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252254,0.000000,0.000000,0.250000,0,0);}
.m6f_c00149{transform:matrix(0.254323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254323,0.000000,0.000000,0.250000,0,0);}
.md_c00149{transform:matrix(0.255239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255239,0.000000,0.000000,0.250000,0,0);}
.m8f_c00149{transform:matrix(0.255497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255497,0.000000,0.000000,0.250000,0,0);}
.m59_c00149{transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);}
.m97_c00149{transform:matrix(0.257306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257306,0.000000,0.000000,0.250000,0,0);}
.ma2_c00149{transform:matrix(0.257917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257917,0.000000,0.000000,0.250000,0,0);}
.m4e_c00149{transform:matrix(0.258509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258509,0.000000,0.000000,0.250000,0,0);}
.mae_c00149{transform:matrix(0.259881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259881,0.000000,0.000000,0.250000,0,0);}
.m54_c00149{transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);}
.m57_c00149{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m18_c00149{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.m60_c00149{transform:matrix(0.261996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261996,0.000000,0.000000,0.250000,0,0);}
.m3f_c00149{transform:matrix(0.262979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262979,0.000000,0.000000,0.250000,0,0);}
.m14_c00149{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.mb4_c00149{transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);}
.m21_c00149{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m11_c00149{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.mb7_c00149{transform:matrix(0.266713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266713,0.000000,0.000000,0.250000,0,0);}
.m93_c00149{transform:matrix(0.266949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266949,0.000000,0.000000,0.250000,0,0);}
.ma7_c00149{transform:matrix(0.267040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267040,0.000000,0.000000,0.250000,0,0);}
.m7c_c00149{transform:matrix(0.267205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267205,0.000000,0.000000,0.250000,0,0);}
.m8_c00149{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m5c_c00149{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.m58_c00149{transform:matrix(0.269368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269368,0.000000,0.000000,0.250000,0,0);}
.mb3_c00149{transform:matrix(0.269651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269651,0.000000,0.000000,0.250000,0,0);}
.m7d_c00149{transform:matrix(0.269756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269756,0.000000,0.000000,0.250000,0,0);}
.m53_c00149{transform:matrix(0.270287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270287,0.000000,0.000000,0.250000,0,0);}
.m74_c00149{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.mc4_c00149{transform:matrix(0.271588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271588,0.000000,0.000000,0.250000,0,0);}
.mc0_c00149{transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);}
.m28_c00149{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m6b_c00149{transform:matrix(0.272842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272842,0.000000,0.000000,0.250000,0,0);}
.m8c_c00149{transform:matrix(0.273493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273493,0.000000,0.000000,0.250000,0,0);}
.ma6_c00149{transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);}
.m7_c00149{transform:matrix(0.274835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274835,0.000000,0.000000,0.250000,0,0);}
.m3_c00149{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m88_c00149{transform:matrix(0.276004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276004,0.000000,0.000000,0.250000,0,0);}
.m70_c00149{transform:matrix(0.276071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276071,0.000000,0.000000,0.250000,0,0);}
.m23_c00149{transform:matrix(0.276320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276320,0.000000,0.000000,0.250000,0,0);}
.m36_c00149{transform:matrix(0.276607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276607,0.000000,0.000000,0.250000,0,0);}
.mb1_c00149{transform:matrix(0.276896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276896,0.000000,0.000000,0.250000,0,0);}
.m12_c00149{transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);}
.mac_c00149{transform:matrix(0.277164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277164,0.000000,0.000000,0.250000,0,0);}
.m71_c00149{transform:matrix(0.277767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277767,0.000000,0.000000,0.250000,0,0);}
.m63_c00149{transform:matrix(0.278536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278536,0.000000,0.000000,0.250000,0,0);}
.m15_c00149{transform:matrix(0.279239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279239,0.000000,0.000000,0.250000,0,0);}
.ma5_c00149{transform:matrix(0.279785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279785,0.000000,0.000000,0.250000,0,0);}
.m47_c00149{transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);}
.m46_c00149{transform:matrix(0.280769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280769,0.000000,0.000000,0.250000,0,0);}
.m77_c00149{transform:matrix(0.281503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281503,0.000000,0.000000,0.250000,0,0);}
.mc5_c00149{transform:matrix(0.281705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281705,0.000000,0.000000,0.250000,0,0);}
.m8e_c00149{transform:matrix(0.282543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282543,0.000000,0.000000,0.250000,0,0);}
.ma0_c00149{transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);}
.m52_c00149{transform:matrix(0.283757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283757,0.000000,0.000000,0.250000,0,0);}
.m24_c00149{transform:matrix(0.284588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284588,0.000000,0.000000,0.250000,0,0);}
.mbf_c00149{transform:matrix(0.284900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284900,0.000000,0.000000,0.250000,0,0);}
.m37_c00149{transform:matrix(0.285189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285189,0.000000,0.000000,0.250000,0,0);}
.mba_c00149{transform:matrix(0.285520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285520,0.000000,0.000000,0.250000,0,0);}
.m4b_c00149{transform:matrix(0.285761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285761,0.000000,0.000000,0.250000,0,0);}
.m7e_c00149{transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);}
.m96_c00149{transform:matrix(0.286562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286562,0.000000,0.000000,0.250000,0,0);}
.m38_c00149{transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);}
.mcd_c00149{transform:matrix(0.287576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287576,0.000000,0.000000,0.250000,0,0);}
.m82_c00149{transform:matrix(0.287907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287907,0.000000,0.000000,0.250000,0,0);}
.mbe_c00149{transform:matrix(0.288398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288398,0.000000,0.000000,0.250000,0,0);}
.mc3_c00149{transform:matrix(0.288595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288595,0.000000,0.000000,0.250000,0,0);}
.m6a_c00149{transform:matrix(0.289115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289115,0.000000,0.000000,0.250000,0,0);}
.m4a_c00149{transform:matrix(0.289256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289256,0.000000,0.000000,0.250000,0,0);}
.m91_c00149{transform:matrix(0.289981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289981,0.000000,0.000000,0.250000,0,0);}
.m29_c00149{transform:matrix(0.290072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290072,0.000000,0.000000,0.250000,0,0);}
.m1a_c00149{transform:matrix(0.290210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290210,0.000000,0.000000,0.250000,0,0);}
.m72_c00149{transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);}
.m5_c00149{transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);}
.m3c_c00149{transform:matrix(0.291627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291627,0.000000,0.000000,0.250000,0,0);}
.m22_c00149{transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);}
.m92_c00149{transform:matrix(0.291809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291809,0.000000,0.000000,0.250000,0,0);}
.m6c_c00149{transform:matrix(0.291985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291985,0.000000,0.000000,0.250000,0,0);}
.m67_c00149{transform:matrix(0.293104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293104,0.000000,0.000000,0.250000,0,0);}
.m95_c00149{transform:matrix(0.293931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293931,0.000000,0.000000,0.250000,0,0);}
.mab_c00149{transform:matrix(0.294488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294488,0.000000,0.000000,0.250000,0,0);}
.m0_c00149{transform:matrix(0.295518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295518,0.000000,0.000000,0.250000,0,0);}
.m7b_c00149{transform:matrix(0.295588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295588,0.000000,0.000000,0.250000,0,0);}
.ma_c00149{transform:matrix(0.296027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296027,0.000000,0.000000,0.250000,0,0);}
.m4c_c00149{transform:matrix(0.296674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296674,0.000000,0.000000,0.250000,0,0);}
.m1c_c00149{transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);}
.m45_c00149{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m2b_c00149{transform:matrix(0.297216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297216,0.000000,0.000000,0.250000,0,0);}
.mc9_c00149{transform:matrix(0.297276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297276,0.000000,0.000000,0.250000,0,0);}
.m19_c00149{transform:matrix(0.298225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298225,0.000000,0.000000,0.250000,0,0);}
.m94_c00149{transform:matrix(0.298313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298313,0.000000,0.000000,0.250000,0,0);}
.m13_c00149{transform:matrix(0.299429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299429,0.000000,0.000000,0.250000,0,0);}
.m1f_c00149{transform:matrix(0.300220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300220,0.000000,0.000000,0.250000,0,0);}
.m17_c00149{transform:matrix(0.300691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300691,0.000000,0.000000,0.250000,0,0);}
.m8a_c00149{transform:matrix(0.300736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300736,0.000000,0.000000,0.250000,0,0);}
.m31_c00149{transform:matrix(0.300862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300862,0.000000,0.000000,0.250000,0,0);}
.m32_c00149{transform:matrix(0.301299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301299,0.000000,0.000000,0.250000,0,0);}
.m10_c00149{transform:matrix(0.301487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301487,0.000000,0.000000,0.250000,0,0);}
.mb6_c00149{transform:matrix(0.302135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302135,0.000000,0.000000,0.250000,0,0);}
.m73_c00149{transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);}
.m2c_c00149{transform:matrix(0.302633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302633,0.000000,0.000000,0.250000,0,0);}
.m25_c00149{transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);}
.m1e_c00149{transform:matrix(0.304068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304068,0.000000,0.000000,0.250000,0,0);}
.m2d_c00149{transform:matrix(0.305036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305036,0.000000,0.000000,0.250000,0,0);}
.m80_c00149{transform:matrix(0.305233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305233,0.000000,0.000000,0.250000,0,0);}
.m89_c00149{transform:matrix(0.305770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305770,0.000000,0.000000,0.250000,0,0);}
.m6_c00149{transform:matrix(0.306246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306246,0.000000,0.000000,0.250000,0,0);}
.m20_c00149{transform:matrix(0.306954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306954,0.000000,0.000000,0.250000,0,0);}
.mbb_c00149{transform:matrix(0.307020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307020,0.000000,0.000000,0.250000,0,0);}
.m55_c00149{transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);}
.m6e_c00149{transform:matrix(0.308302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308302,0.000000,0.000000,0.250000,0,0);}
.m44_c00149{transform:matrix(0.308561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308561,0.000000,0.000000,0.250000,0,0);}
.mf_c00149{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m85_c00149{transform:matrix(0.310673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310673,0.000000,0.000000,0.250000,0,0);}
.m64_c00149{transform:matrix(0.311146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311146,0.000000,0.000000,0.250000,0,0);}
.m76_c00149{transform:matrix(0.311321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311321,0.000000,0.000000,0.250000,0,0);}
.m16_c00149{transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);}
.mb2_c00149{transform:matrix(0.312347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312347,0.000000,0.000000,0.250000,0,0);}
.m75_c00149{transform:matrix(0.312369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312369,0.000000,0.000000,0.250000,0,0);}
.ma9_c00149{transform:matrix(0.312774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312774,0.000000,0.000000,0.250000,0,0);}
.m79_c00149{transform:matrix(0.312879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312879,0.000000,0.000000,0.250000,0,0);}
.m3d_c00149{transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);}
.m51_c00149{transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);}
.m56_c00149{transform:matrix(0.314984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314984,0.000000,0.000000,0.250000,0,0);}
.m83_c00149{transform:matrix(0.315331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315331,0.000000,0.000000,0.250000,0,0);}
.m2f_c00149{transform:matrix(0.315526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315526,0.000000,0.000000,0.250000,0,0);}
.m6d_c00149{transform:matrix(0.316822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316822,0.000000,0.000000,0.250000,0,0);}
.m49_c00149{transform:matrix(0.316884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316884,0.000000,0.000000,0.250000,0,0);}
.m3a_c00149{transform:matrix(0.316909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316909,0.000000,0.000000,0.250000,0,0);}
.m90_c00149{transform:matrix(0.317085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317085,0.000000,0.000000,0.250000,0,0);}
.mc8_c00149{transform:matrix(0.317369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317369,0.000000,0.000000,0.250000,0,0);}
.m1b_c00149{transform:matrix(0.317506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317506,0.000000,0.000000,0.250000,0,0);}
.m7a_c00149{transform:matrix(0.317658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317658,0.000000,0.000000,0.250000,0,0);}
.mb_c00149{transform:matrix(0.317804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317804,0.000000,0.000000,0.250000,0,0);}
.m5f_c00149{transform:matrix(0.318567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318567,0.000000,0.000000,0.250000,0,0);}
.m86_c00149{transform:matrix(0.320412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320412,0.000000,0.000000,0.250000,0,0);}
.maf_c00149{transform:matrix(0.320811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320811,0.000000,0.000000,0.250000,0,0);}
.m9_c00149{transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);}
.m7f_c00149{transform:matrix(0.321643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321643,0.000000,0.000000,0.250000,0,0);}
.m4d_c00149{transform:matrix(0.321902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321902,0.000000,0.000000,0.250000,0,0);}
.m78_c00149{transform:matrix(0.322488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322488,0.000000,0.000000,0.250000,0,0);}
.m3e_c00149{transform:matrix(0.322860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322860,0.000000,0.000000,0.250000,0,0);}
.me_c00149{transform:matrix(0.323146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323146,0.000000,0.000000,0.250000,0,0);}
.m69_c00149{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.m41_c00149{transform:matrix(0.323918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323918,0.000000,0.000000,0.250000,0,0);}
.mc7_c00149{transform:matrix(0.324031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324031,0.000000,0.000000,0.250000,0,0);}
.ma1_c00149{transform:matrix(0.324942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324942,0.000000,0.000000,0.250000,0,0);}
.m8b_c00149{transform:matrix(0.325179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325179,0.000000,0.000000,0.250000,0,0);}
.m43_c00149{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m35_c00149{transform:matrix(0.327350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327350,0.000000,0.000000,0.250000,0,0);}
.m87_c00149{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.mca_c00149{transform:matrix(0.327605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327605,0.000000,0.000000,0.250000,0,0);}
.m48_c00149{transform:matrix(0.328813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328813,0.000000,0.000000,0.250000,0,0);}
.m1d_c00149{transform:matrix(0.329080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329080,0.000000,0.000000,0.250000,0,0);}
.m61_c00149{transform:matrix(0.329402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329402,0.000000,0.000000,0.250000,0,0);}
.m84_c00149{transform:matrix(0.329735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329735,0.000000,0.000000,0.250000,0,0);}
.ma3_c00149{transform:matrix(0.331751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331751,0.000000,0.000000,0.250000,0,0);}
.ma4_c00149{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m68_c00149{transform:matrix(0.333654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333654,0.000000,0.000000,0.250000,0,0);}
.m3b_c00149{transform:matrix(0.335804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335804,0.000000,0.000000,0.250000,0,0);}
.m33_c00149{transform:matrix(0.336348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336348,0.000000,0.000000,0.250000,0,0);}
.m5b_c00149{transform:matrix(0.336886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336886,0.000000,0.000000,0.250000,0,0);}
.mad_c00149{transform:matrix(0.336967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336967,0.000000,0.000000,0.250000,0,0);}
.m98_c00149{transform:matrix(0.338138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338138,0.000000,0.000000,0.250000,0,0);}
.m5e_c00149{transform:matrix(0.338749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338749,0.000000,0.000000,0.250000,0,0);}
.m34_c00149{transform:matrix(0.339183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339183,0.000000,0.000000,0.250000,0,0);}
.m2a_c00149{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.mbc_c00149{transform:matrix(0.339698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339698,0.000000,0.000000,0.250000,0,0);}
.mbd_c00149{transform:matrix(0.340595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340595,0.000000,0.000000,0.250000,0,0);}
.m50_c00149{transform:matrix(0.340822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340822,0.000000,0.000000,0.250000,0,0);}
.m26_c00149{transform:matrix(0.342633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342633,0.000000,0.000000,0.250000,0,0);}
.m9f_c00149{transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);}
.m62_c00149{transform:matrix(0.344241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344241,0.000000,0.000000,0.250000,0,0);}
.ma8_c00149{transform:matrix(0.345480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345480,0.000000,0.000000,0.250000,0,0);}
.mb9_c00149{transform:matrix(0.346958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346958,0.000000,0.000000,0.250000,0,0);}
.m81_c00149{transform:matrix(0.347184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347184,0.000000,0.000000,0.250000,0,0);}
.mc_c00149{transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);}
.mb8_c00149{transform:matrix(0.347645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347645,0.000000,0.000000,0.250000,0,0);}
.m2e_c00149{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.mc6_c00149{transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);}
.m8d_c00149{transform:matrix(0.352372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352372,0.000000,0.000000,0.250000,0,0);}
.m39_c00149{transform:matrix(0.354539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354539,0.000000,0.000000,0.250000,0,0);}
.m30_c00149{transform:matrix(0.355013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355013,0.000000,0.000000,0.250000,0,0);}
.m4_c00149{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m27_c00149{transform:matrix(0.359212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359212,0.000000,0.000000,0.250000,0,0);}
.m40_c00149{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m65_c00149{transform:matrix(0.365181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365181,0.000000,0.000000,0.250000,0,0);}
.v0_c00149{vertical-align:0.000000px;}
.ls8_c00149{letter-spacing:-2.744280px;}
.ls15_c00149{letter-spacing:-1.897474px;}
.ls6_c00149{letter-spacing:-1.325095px;}
.lsa_c00149{letter-spacing:-0.893851px;}
.ls10_c00149{letter-spacing:-0.250906px;}
.lsc_c00149{letter-spacing:-0.109771px;}
.ls1_c00149{letter-spacing:0.000000px;}
.lsb_c00149{letter-spacing:0.258746px;}
.ls14_c00149{letter-spacing:0.533174px;}
.ls9_c00149{letter-spacing:1.803384px;}
.ls16_c00149{letter-spacing:2.375762px;}
.lse_c00149{letter-spacing:2.783484px;}
.ls5_c00149{letter-spacing:2.940300px;}
.ls4_c00149{letter-spacing:3.112798px;}
.ls12_c00149{letter-spacing:3.323628px;}
.ls7_c00149{letter-spacing:3.544200px;}
.ls0_c00149{letter-spacing:3.663000px;}
.lsd_c00149{letter-spacing:3.742200px;}
.lsf_c00149{letter-spacing:3.889037px;}
.ls3_c00149{letter-spacing:3.920400px;}
.ls11_c00149{letter-spacing:4.435200px;}
.ls18_c00149{letter-spacing:47.044800px;}
.ls2_c00149{letter-spacing:49.896198px;}
.ls13_c00149{letter-spacing:51.321798px;}
.ls17_c00149{letter-spacing:58.449798px;}
.sc__c00149{text-shadow:none;}
.sc0_c00149{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00149{-webkit-text-stroke:0px transparent;}
.sc0_c00149{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00149{word-spacing:-19.602000px;}
.ws2_c00149{word-spacing:0.000000px;}
.ws0_c00149{word-spacing:2.665872px;}
._10_c00149{margin-left:-1.025640px;}
._d_c00149{width:4.626072px;}
._1_c00149{width:6.899904px;}
._e_c00149{width:8.781300px;}
._0_c00149{width:10.036224px;}
._9_c00149{width:11.447568px;}
._2_c00149{width:16.857720px;}
._b_c00149{width:20.856528px;}
._5_c00149{width:22.267872px;}
._7_c00149{width:23.679216px;}
._6_c00149{width:28.147680px;}
._c_c00149{width:33.081048px;}
._3_c00149{width:35.566344px;}
._4_c00149{width:37.343117px;}
._8_c00149{width:41.321016px;}
._a_c00149{width:43.202808px;}
._f_c00149{width:2231.499600px;}
.fc0_c00149{color:transparent;}
.fs13_c00149{font-size:22.176000px;}
.fs6_c00149{font-size:22.572000px;}
.fs1_c00149{font-size:26.928000px;}
.fs11_c00149{font-size:34.056198px;}
.fs10_c00149{font-size:47.044800px;}
.fs2_c00149{font-size:49.896198px;}
.fsd_c00149{font-size:51.321798px;}
.fs12_c00149{font-size:56.628000px;}
.fse_c00149{font-size:58.449798px;}
.fs5_c00149{font-size:62.568000px;}
.fsa_c00149{font-size:64.548000px;}
.fs4_c00149{font-size:66.528000px;}
.fs7_c00149{font-size:70.884000px;}
.fs0_c00149{font-size:73.260000px;}
.fs9_c00149{font-size:74.844000px;}
.fsf_c00149{font-size:75.240000px;}
.fsc_c00149{font-size:76.230000px;}
.fs3_c00149{font-size:78.408000px;}
.fs8_c00149{font-size:78.804000px;}
.fsb_c00149{font-size:88.704000px;}
.y0_c00149{bottom:0.000000px;}
.y23_c00149{bottom:5.965785px;}
.y1_c00149{bottom:76.500000px;}
.y22_c00149{bottom:122.157135px;}
.y21_c00149{bottom:127.498185px;}
.y20_c00149{bottom:148.530735px;}
.y1f_c00149{bottom:162.781785px;}
.y1e_c00149{bottom:175.968585px;}
.y1d_c00149{bottom:187.734735px;}
.y1c_c00149{bottom:211.257135px;}
.y1b_c00149{bottom:244.040985px;}
.y1a_c00149{bottom:276.473385px;}
.y19_c00149{bottom:309.618585px;}
.y18_c00149{bottom:342.055935px;}
.y17_c00149{bottom:374.483385px;}
.y16_c00149{bottom:406.920735px;}
.y15_c00149{bottom:439.353135px;}
.y14_c00149{bottom:471.429135px;}
.y13_c00149{bottom:503.500185px;}
.y12_c00149{bottom:535.576185px;}
.y11_c00149{bottom:567.657135px;}
.y10_c00149{bottom:600.089535px;}
.yf_c00149{bottom:633.234735px;}
.ye_c00149{bottom:666.018585px;}
.yd_c00149{bottom:698.455935px;}
.yb_c00149{bottom:763.320735px;}
.ya_c00149{bottom:795.748185px;}
.y9_c00149{bottom:811.078335px;}
.y8_c00149{bottom:814.285935px;}
.y7_c00149{bottom:827.829135px;}
.yc_c00149{bottom:837.446985px;}
.y6_c00149{bottom:859.905135px;}
.y5_c00149{bottom:893.050335px;}
.y4_c00149{bottom:925.482735px;}
.y3_c00149{bottom:1009.949535px;}
.y2_c00149{bottom:1088.352585px;}
.h16_c00149{height:23.128875px;}
.h8_c00149{height:23.541891px;}
.h3_c00149{height:28.085063px;}
.h13_c00149{height:31.331837px;}
.h4_c00149{height:33.230868px;}
.hf_c00149{height:34.180317px;}
.h14_c00149{height:35.519550px;}
.h11_c00149{height:38.927565px;}
.h15_c00149{height:59.061234px;}
.h7_c00149{height:65.256469px;}
.h10_c00149{height:67.321547px;}
.h6_c00149{height:69.386625px;}
.h9_c00149{height:69.568770px;}
.h2_c00149{height:71.900684px;}
.hc_c00149{height:73.455293px;}
.he_c00149{height:74.815576px;}
.h12_c00149{height:75.056309px;}
.h5_c00149{height:76.953164px;}
.ha_c00149{height:77.341816px;}
.hb_c00149{height:79.020563px;}
.hd_c00149{height:87.058125px;}
.h1_c00149{height:1110.000000px;}
.h0_c00149{height:1263.000000px;}
.w1_c00149{width:775.500000px;}
.w0_c00149{width:892.500000px;}
.x0_c00149{left:0.000000px;}
.x1_c00149{left:58.500000px;}
.x5b_c00149{left:79.850085px;}
.x1c_c00149{left:81.270735px;}
.xd_c00149{left:82.854735px;}
.x61_c00149{left:84.498135px;}
.x67_c00149{left:93.368535px;}
.xe_c00149{left:104.372385px;}
.x3d_c00149{left:114.138735px;}
.x1d_c00149{left:115.188135px;}
.x28_c00149{left:126.300885px;}
.x73_c00149{left:129.330285px;}
.x35_c00149{left:134.676285px;}
.x4_c00149{left:137.200785px;}
.x1e_c00149{left:139.740135px;}
.x3e_c00149{left:148.348185px;}
.x36_c00149{left:159.069885px;}
.x1f_c00149{left:160.851885px;}
.x29_c00149{left:170.133135px;}
.x6c_c00149{left:171.217185px;}
.xf_c00149{left:181.820085px;}
.x20_c00149{left:192.546735px;}
.x2a_c00149{left:203.996085px;}
.x3f_c00149{left:213.440685px;}
.x64_c00149{left:214.702935px;}
.x10_c00149{left:215.762235px;}
.x6d_c00149{left:225.187035px;}
.x31_c00149{left:237.106635px;}
.x49_c00149{left:238.517385px;}
.x37_c00149{left:247.447185px;}
.x18_c00149{left:248.511435px;}
.x69_c00149{left:259.114335px;}
.x6e_c00149{left:260.579535px;}
.x2b_c00149{left:269.737035px;}
.x5_c00149{left:272.038785px;}
.x4f_c00149{left:280.909185px;}
.x11_c00149{left:282.404085px;}
.x12_c00149{left:293.615835px;}
.x40_c00149{left:302.956485px;}
.x6_c00149{left:304.817685px;}
.x38_c00149{left:314.123685px;}
.x4a_c00149{left:315.504735px;}
.x32_c00149{left:326.221485px;}
.x7_c00149{left:337.101585px;}
.x33_c00149{left:348.263835px;}
.x5c_c00149{left:357.807435px;}
.x56_c00149{left:359.386485px;}
.x75_c00149{left:367.351035px;}
.x2c_c00149{left:369.529035px;}
.x21_c00149{left:370.598235px;}
.x13_c00149{left:382.522785px;}
.x45_c00149{left:384.245385px;}
.x57_c00149{left:392.531685px;}
.x2d_c00149{left:393.571185px;}
.x50_c00149{left:394.917585px;}
.x6a_c00149{left:403.763235px;}
.x19_c00149{left:405.342285px;}
.x51_c00149{left:406.411485px;}
.x8_c00149{left:414.776985px;}
.x6f_c00149{left:425.127435px;}
.x52_c00149{left:426.449085px;}
.x46_c00149{left:436.665885px;}
.x1a_c00149{left:438.457785px;}
.x39_c00149{left:447.293535px;}
.x53_c00149{left:450.159585px;}
.x2e_c00149{left:457.916235px;}
.x5d_c00149{left:459.178485px;}
.x3a_c00149{left:469.316085px;}
.x65_c00149{left:470.464485px;}
.x41_c00149{left:480.017985px;}
.x22_c00149{left:481.280235px;}
.x4b_c00149{left:491.596035px;}
.x9_c00149{left:493.719585px;}
.x3b_c00149{left:503.703735px;}
.x3_c00149{left:505.258035px;}
.x59_c00149{left:514.776885px;}
.x23_c00149{left:525.647085px;}
.x70_c00149{left:528.572535px;}
.x42_c00149{left:534.938235px;}
.x4c_c00149{left:535.982685px;}
.x14_c00149{left:537.923085px;}
.x5a_c00149{left:547.931985px;}
.x47_c00149{left:557.990385px;}
.x24_c00149{left:559.559535px;}
.x15_c00149{left:568.796235px;}
.x62_c00149{left:569.984235px;}
.x66_c00149{left:571.073235px;}
.x43_c00149{left:580.542585px;}
.xa_c00149{left:591.759285px;}
.x6b_c00149{left:592.798785px;}
.x48_c00149{left:601.189035px;}
.x63_c00149{left:602.619585px;}
.x2f_c00149{left:613.821435px;}
.x16_c00149{left:614.875785px;}
.x1b_c00149{left:623.325435px;}
.x5e_c00149{left:624.350085px;}
.xb_c00149{left:625.904385px;}
.x25_c00149{left:635.086635px;}
.x30_c00149{left:646.451835px;}
.x54_c00149{left:648.575385px;}
.x4d_c00149{left:657.153735px;}
.x3c_c00149{left:658.346685px;}
.x2_c00149{left:659.420835px;}
.x55_c00149{left:669.157485px;}
.x72_c00149{left:675.399435px;}
.x44_c00149{left:679.671285px;}
.xc_c00149{left:680.819685px;}
.x4e_c00149{left:690.289035px;}
.x71_c00149{left:691.427535px;}
.x74_c00149{left:696.184485px;}
.x27_c00149{left:698.144685px;}
.x26_c00149{left:699.862335px;}
.x68_c00149{left:701.337435px;}
.x17_c00149{left:703.317435px;}
.x5f_c00149{left:704.916285px;}
.x58_c00149{left:724.310385px;}
.x60_c00149{left:736.640835px;}
.x34_c00149{left:752.921385px;}
@media print{
.v0_c00149{vertical-align:0.000000pt;}
.ls8_c00149{letter-spacing:-2.439360pt;}
.ls15_c00149{letter-spacing:-1.686643pt;}
.ls6_c00149{letter-spacing:-1.177862pt;}
.lsa_c00149{letter-spacing:-0.794534pt;}
.ls10_c00149{letter-spacing:-0.223027pt;}
.lsc_c00149{letter-spacing:-0.097574pt;}
.ls1_c00149{letter-spacing:0.000000pt;}
.lsb_c00149{letter-spacing:0.229997pt;}
.ls14_c00149{letter-spacing:0.473933pt;}
.ls9_c00149{letter-spacing:1.603008pt;}
.ls16_c00149{letter-spacing:2.111789pt;}
.lse_c00149{letter-spacing:2.474208pt;}
.ls5_c00149{letter-spacing:2.613600pt;}
.ls4_c00149{letter-spacing:2.766931pt;}
.ls12_c00149{letter-spacing:2.954336pt;}
.ls7_c00149{letter-spacing:3.150400pt;}
.ls0_c00149{letter-spacing:3.256000pt;}
.lsd_c00149{letter-spacing:3.326400pt;}
.lsf_c00149{letter-spacing:3.456922pt;}
.ls3_c00149{letter-spacing:3.484800pt;}
.ls11_c00149{letter-spacing:3.942400pt;}
.ls18_c00149{letter-spacing:41.817600pt;}
.ls2_c00149{letter-spacing:44.352176pt;}
.ls13_c00149{letter-spacing:45.619376pt;}
.ls17_c00149{letter-spacing:51.955376pt;}
.ws1_c00149{word-spacing:-17.424000pt;}
.ws2_c00149{word-spacing:0.000000pt;}
.ws0_c00149{word-spacing:2.369664pt;}
._10_c00149{margin-left:-0.911680pt;}
._d_c00149{width:4.112064pt;}
._1_c00149{width:6.133248pt;}
._e_c00149{width:7.805600pt;}
._0_c00149{width:8.921088pt;}
._9_c00149{width:10.175616pt;}
._2_c00149{width:14.984640pt;}
._b_c00149{width:18.539136pt;}
._5_c00149{width:19.793664pt;}
._7_c00149{width:21.048192pt;}
._6_c00149{width:25.020160pt;}
._c_c00149{width:29.405376pt;}
._3_c00149{width:31.614528pt;}
._4_c00149{width:33.193882pt;}
._8_c00149{width:36.729792pt;}
._a_c00149{width:38.402496pt;}
._f_c00149{width:1983.555200pt;}
.fs13_c00149{font-size:19.712000pt;}
.fs6_c00149{font-size:20.064000pt;}
.fs1_c00149{font-size:23.936000pt;}
.fs11_c00149{font-size:30.272176pt;}
.fs10_c00149{font-size:41.817600pt;}
.fs2_c00149{font-size:44.352176pt;}
.fsd_c00149{font-size:45.619376pt;}
.fs12_c00149{font-size:50.336000pt;}
.fse_c00149{font-size:51.955376pt;}
.fs5_c00149{font-size:55.616000pt;}
.fsa_c00149{font-size:57.376000pt;}
.fs4_c00149{font-size:59.136000pt;}
.fs7_c00149{font-size:63.008000pt;}
.fs0_c00149{font-size:65.120000pt;}
.fs9_c00149{font-size:66.528000pt;}
.fsf_c00149{font-size:66.880000pt;}
.fsc_c00149{font-size:67.760000pt;}
.fs3_c00149{font-size:69.696000pt;}
.fs8_c00149{font-size:70.048000pt;}
.fsb_c00149{font-size:78.848000pt;}
.y0_c00149{bottom:0.000000pt;}
.y23_c00149{bottom:5.302920pt;}
.y1_c00149{bottom:68.000000pt;}
.y22_c00149{bottom:108.584120pt;}
.y21_c00149{bottom:113.331720pt;}
.y20_c00149{bottom:132.027320pt;}
.y1f_c00149{bottom:144.694920pt;}
.y1e_c00149{bottom:156.416520pt;}
.y1d_c00149{bottom:166.875320pt;}
.y1c_c00149{bottom:187.784120pt;}
.y1b_c00149{bottom:216.925320pt;}
.y1a_c00149{bottom:245.754120pt;}
.y19_c00149{bottom:275.216520pt;}
.y18_c00149{bottom:304.049720pt;}
.y17_c00149{bottom:332.874120pt;}
.y16_c00149{bottom:361.707320pt;}
.y15_c00149{bottom:390.536120pt;}
.y14_c00149{bottom:419.048120pt;}
.y13_c00149{bottom:447.555720pt;}
.y12_c00149{bottom:476.067720pt;}
.y11_c00149{bottom:504.584120pt;}
.y10_c00149{bottom:533.412920pt;}
.yf_c00149{bottom:562.875320pt;}
.ye_c00149{bottom:592.016520pt;}
.yd_c00149{bottom:620.849720pt;}
.yb_c00149{bottom:678.507320pt;}
.ya_c00149{bottom:707.331720pt;}
.y9_c00149{bottom:720.958520pt;}
.y8_c00149{bottom:723.809720pt;}
.y7_c00149{bottom:735.848120pt;}
.yc_c00149{bottom:744.397320pt;}
.y6_c00149{bottom:764.360120pt;}
.y5_c00149{bottom:793.822520pt;}
.y4_c00149{bottom:822.651320pt;}
.y3_c00149{bottom:897.732920pt;}
.y2_c00149{bottom:967.424520pt;}
.h16_c00149{height:20.559000pt;}
.h8_c00149{height:20.926125pt;}
.h3_c00149{height:24.964500pt;}
.h13_c00149{height:27.850522pt;}
.h4_c00149{height:29.538549pt;}
.hf_c00149{height:30.382504pt;}
.h14_c00149{height:31.572934pt;}
.h11_c00149{height:34.602280pt;}
.h15_c00149{height:52.498875pt;}
.h7_c00149{height:58.005750pt;}
.h10_c00149{height:59.841375pt;}
.h6_c00149{height:61.677000pt;}
.h9_c00149{height:61.838906pt;}
.h2_c00149{height:63.911719pt;}
.hc_c00149{height:65.293594pt;}
.he_c00149{height:66.502734pt;}
.h12_c00149{height:66.716719pt;}
.h5_c00149{height:68.402813pt;}
.ha_c00149{height:68.748281pt;}
.hb_c00149{height:70.240500pt;}
.hd_c00149{height:77.385000pt;}
.h1_c00149{height:986.666667pt;}
.h0_c00149{height:1122.666667pt;}
.w1_c00149{width:689.333333pt;}
.w0_c00149{width:793.333333pt;}
.x0_c00149{left:0.000000pt;}
.x1_c00149{left:52.000000pt;}
.x5b_c00149{left:70.977853pt;}
.x1c_c00149{left:72.240653pt;}
.xd_c00149{left:73.648653pt;}
.x61_c00149{left:75.109453pt;}
.x67_c00149{left:82.994253pt;}
.xe_c00149{left:92.775453pt;}
.x3d_c00149{left:101.456653pt;}
.x1d_c00149{left:102.389453pt;}
.x28_c00149{left:112.267453pt;}
.x73_c00149{left:114.960253pt;}
.x35_c00149{left:119.712253pt;}
.x4_c00149{left:121.956253pt;}
.x1e_c00149{left:124.213453pt;}
.x3e_c00149{left:131.865053pt;}
.x36_c00149{left:141.395453pt;}
.x1f_c00149{left:142.979453pt;}
.x29_c00149{left:151.229453pt;}
.x6c_c00149{left:152.193053pt;}
.xf_c00149{left:161.617853pt;}
.x20_c00149{left:171.152653pt;}
.x2a_c00149{left:181.329853pt;}
.x3f_c00149{left:189.725053pt;}
.x64_c00149{left:190.847053pt;}
.x10_c00149{left:191.788653pt;}
.x6d_c00149{left:200.166253pt;}
.x31_c00149{left:210.761453pt;}
.x49_c00149{left:212.015453pt;}
.x37_c00149{left:219.953053pt;}
.x18_c00149{left:220.899053pt;}
.x69_c00149{left:230.323853pt;}
.x6e_c00149{left:231.626253pt;}
.x2b_c00149{left:239.766253pt;}
.x5_c00149{left:241.812253pt;}
.x4f_c00149{left:249.697053pt;}
.x11_c00149{left:251.025853pt;}
.x12_c00149{left:260.991853pt;}
.x40_c00149{left:269.294653pt;}
.x6_c00149{left:270.949053pt;}
.x38_c00149{left:279.221053pt;}
.x4a_c00149{left:280.448653pt;}
.x32_c00149{left:289.974653pt;}
.x7_c00149{left:299.645853pt;}
.x33_c00149{left:309.567853pt;}
.x5c_c00149{left:318.051053pt;}
.x56_c00149{left:319.454653pt;}
.x75_c00149{left:326.534253pt;}
.x2c_c00149{left:328.470253pt;}
.x21_c00149{left:329.420653pt;}
.x13_c00149{left:340.020253pt;}
.x45_c00149{left:341.551453pt;}
.x57_c00149{left:348.917053pt;}
.x2d_c00149{left:349.841053pt;}
.x50_c00149{left:351.037853pt;}
.x6a_c00149{left:358.900653pt;}
.x19_c00149{left:360.304253pt;}
.x51_c00149{left:361.254653pt;}
.x8_c00149{left:368.690653pt;}
.x6f_c00149{left:377.891053pt;}
.x52_c00149{left:379.065853pt;}
.x46_c00149{left:388.147453pt;}
.x1a_c00149{left:389.740253pt;}
.x39_c00149{left:397.594253pt;}
.x53_c00149{left:400.141853pt;}
.x2e_c00149{left:407.036653pt;}
.x5d_c00149{left:408.158653pt;}
.x3a_c00149{left:417.169853pt;}
.x65_c00149{left:418.190653pt;}
.x41_c00149{left:426.682653pt;}
.x22_c00149{left:427.804653pt;}
.x4b_c00149{left:436.974253pt;}
.x9_c00149{left:438.861853pt;}
.x3b_c00149{left:447.736653pt;}
.x3_c00149{left:449.118253pt;}
.x59_c00149{left:457.579453pt;}
.x23_c00149{left:467.241853pt;}
.x70_c00149{left:469.842253pt;}
.x42_c00149{left:475.500653pt;}
.x4c_c00149{left:476.429053pt;}
.x14_c00149{left:478.153853pt;}
.x5a_c00149{left:487.050653pt;}
.x47_c00149{left:495.991453pt;}
.x24_c00149{left:497.386253pt;}
.x15_c00149{left:505.596653pt;}
.x62_c00149{left:506.652653pt;}
.x66_c00149{left:507.620653pt;}
.x43_c00149{left:516.037853pt;}
.xa_c00149{left:526.008253pt;}
.x6b_c00149{left:526.932253pt;}
.x48_c00149{left:534.390253pt;}
.x63_c00149{left:535.661853pt;}
.x2f_c00149{left:545.619053pt;}
.x16_c00149{left:546.556253pt;}
.x1b_c00149{left:554.067053pt;}
.x5e_c00149{left:554.977853pt;}
.xb_c00149{left:556.359453pt;}
.x25_c00149{left:564.521453pt;}
.x30_c00149{left:574.623853pt;}
.x54_c00149{left:576.511453pt;}
.x4d_c00149{left:584.136653pt;}
.x3c_c00149{left:585.197053pt;}
.x2_c00149{left:586.151853pt;}
.x55_c00149{left:594.806653pt;}
.x72_c00149{left:600.355053pt;}
.x44_c00149{left:604.152253pt;}
.xc_c00149{left:605.173053pt;}
.x4e_c00149{left:613.590253pt;}
.x71_c00149{left:614.602253pt;}
.x74_c00149{left:618.830653pt;}
.x27_c00149{left:620.573053pt;}
.x26_c00149{left:622.099853pt;}
.x68_c00149{left:623.411053pt;}
.x17_c00149{left:625.171053pt;}
.x5f_c00149{left:626.592253pt;}
.x58_c00149{left:643.831453pt;}
.x60_c00149{left:654.791853pt;}
.x34_c00149{left:669.263453pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_57f5be28dec3ed45f65be423.woff2')format("woff");}.ff1_c00150{font-family:ff1_c00150;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00150;src:url('chunks/assets/font_4f8d91092f723be98dfcebf8.woff2')format("woff");}.ff2_c00150{font-family:ff2_c00150;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00150;src:url('chunks/assets/font_4d91c27106093c514b8326f2.woff2')format("woff");}.ff3_c00150{font-family:ff3_c00150;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m86_c00150{transform:matrix(0.217763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217763,0.000000,0.000000,0.250000,0,0);}
.m45_c00150{transform:matrix(0.225146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225146,0.000000,0.000000,0.250000,0,0);}
.m55_c00150{transform:matrix(0.245019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245019,0.000000,0.000000,0.250000,0,0);}
.m1d_c00150{transform:matrix(0.247919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247919,0.000000,0.000000,0.250000,0,0);}
.ma8_c00150{transform:matrix(0.248170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248170,0.000000,0.000000,0.250000,0,0);}
.m79_c00150{transform:matrix(0.248663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248663,0.000000,0.000000,0.250000,0,0);}
.m0_c00150{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m9_c00150{transform:matrix(0.250440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250440,0.000000,0.000000,0.250000,0,0);}
.m89_c00150{transform:matrix(0.250567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250567,0.000000,0.000000,0.250000,0,0);}
.m7d_c00150{transform:matrix(0.250964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250964,0.000000,0.000000,0.250000,0,0);}
.m42_c00150{transform:matrix(0.251385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251385,0.000000,0.000000,0.250000,0,0);}
.mae_c00150{transform:matrix(0.251515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251515,0.000000,0.000000,0.250000,0,0);}
.m29_c00150{transform:matrix(0.251664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251664,0.000000,0.000000,0.250000,0,0);}
.m87_c00150{transform:matrix(0.251667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251667,0.000000,0.000000,0.250000,0,0);}
.m20_c00150{transform:matrix(0.252448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252448,0.000000,0.000000,0.250000,0,0);}
.m40_c00150{transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);}
.m18_c00150{transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);}
.m37_c00150{transform:matrix(0.253801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253801,0.000000,0.000000,0.250000,0,0);}
.m6e_c00150{transform:matrix(0.254090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254090,0.000000,0.000000,0.250000,0,0);}
.m7e_c00150{transform:matrix(0.254614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254614,0.000000,0.000000,0.250000,0,0);}
.m4d_c00150{transform:matrix(0.255317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255317,0.000000,0.000000,0.250000,0,0);}
.m1c_c00150{transform:matrix(0.255493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255493,0.000000,0.000000,0.250000,0,0);}
.m12_c00150{transform:matrix(0.255743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255743,0.000000,0.000000,0.250000,0,0);}
.m4_c00150{transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);}
.m11_c00150{transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);}
.m91_c00150{transform:matrix(0.256789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256789,0.000000,0.000000,0.250000,0,0);}
.m7_c00150{transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);}
.m47_c00150{transform:matrix(0.257678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257678,0.000000,0.000000,0.250000,0,0);}
.m69_c00150{transform:matrix(0.258059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258059,0.000000,0.000000,0.250000,0,0);}
.ma9_c00150{transform:matrix(0.258306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258306,0.000000,0.000000,0.250000,0,0);}
.mb3_c00150{transform:matrix(0.258829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258829,0.000000,0.000000,0.250000,0,0);}
.m31_c00150{transform:matrix(0.259376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259376,0.000000,0.000000,0.250000,0,0);}
.mb2_c00150{transform:matrix(0.260090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260090,0.000000,0.000000,0.250000,0,0);}
.m4b_c00150{transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);}
.m23_c00150{transform:matrix(0.260691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260691,0.000000,0.000000,0.250000,0,0);}
.m33_c00150{transform:matrix(0.261425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261425,0.000000,0.000000,0.250000,0,0);}
.m82_c00150{transform:matrix(0.261958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261958,0.000000,0.000000,0.250000,0,0);}
.m41_c00150{transform:matrix(0.262191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262191,0.000000,0.000000,0.250000,0,0);}
.m8_c00150{transform:matrix(0.263488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263488,0.000000,0.000000,0.250000,0,0);}
.m1_c00150{transform:matrix(0.263857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263857,0.000000,0.000000,0.250000,0,0);}
.mb0_c00150{transform:matrix(0.263896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263896,0.000000,0.000000,0.250000,0,0);}
.ma6_c00150{transform:matrix(0.264852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264852,0.000000,0.000000,0.250000,0,0);}
.m2c_c00150{transform:matrix(0.264864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264864,0.000000,0.000000,0.250000,0,0);}
.m39_c00150{transform:matrix(0.265564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265564,0.000000,0.000000,0.250000,0,0);}
.m57_c00150{transform:matrix(0.268539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268539,0.000000,0.000000,0.250000,0,0);}
.m4c_c00150{transform:matrix(0.269164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269164,0.000000,0.000000,0.250000,0,0);}
.m98_c00150{transform:matrix(0.269294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269294,0.000000,0.000000,0.250000,0,0);}
.m43_c00150{transform:matrix(0.269343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269343,0.000000,0.000000,0.250000,0,0);}
.m67_c00150{transform:matrix(0.270275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270275,0.000000,0.000000,0.250000,0,0);}
.m78_c00150{transform:matrix(0.270752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270752,0.000000,0.000000,0.250000,0,0);}
.m14_c00150{transform:matrix(0.271329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271329,0.000000,0.000000,0.250000,0,0);}
.m2e_c00150{transform:matrix(0.271491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271491,0.000000,0.000000,0.250000,0,0);}
.m56_c00150{transform:matrix(0.271925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271925,0.000000,0.000000,0.250000,0,0);}
.m76_c00150{transform:matrix(0.272016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272016,0.000000,0.000000,0.250000,0,0);}
.m80_c00150{transform:matrix(0.273314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273314,0.000000,0.000000,0.250000,0,0);}
.m22_c00150{transform:matrix(0.274130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274130,0.000000,0.000000,0.250000,0,0);}
.m4f_c00150{transform:matrix(0.274195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274195,0.000000,0.000000,0.250000,0,0);}
.m30_c00150{transform:matrix(0.274314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274314,0.000000,0.000000,0.250000,0,0);}
.ma_c00150{transform:matrix(0.275369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275369,0.000000,0.000000,0.250000,0,0);}
.m16_c00150{transform:matrix(0.275510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275510,0.000000,0.000000,0.250000,0,0);}
.m15_c00150{transform:matrix(0.276355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276355,0.000000,0.000000,0.250000,0,0);}
.m2d_c00150{transform:matrix(0.276550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276550,0.000000,0.000000,0.250000,0,0);}
.mb_c00150{transform:matrix(0.276780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276780,0.000000,0.000000,0.250000,0,0);}
.m73_c00150{transform:matrix(0.276918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276918,0.000000,0.000000,0.250000,0,0);}
.m99_c00150{transform:matrix(0.277076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277076,0.000000,0.000000,0.250000,0,0);}
.m34_c00150{transform:matrix(0.277432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277432,0.000000,0.000000,0.250000,0,0);}
.m75_c00150{transform:matrix(0.277590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277590,0.000000,0.000000,0.250000,0,0);}
.mc_c00150{transform:matrix(0.277798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277798,0.000000,0.000000,0.250000,0,0);}
.m36_c00150{transform:matrix(0.278923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278923,0.000000,0.000000,0.250000,0,0);}
.m6d_c00150{transform:matrix(0.279626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279626,0.000000,0.000000,0.250000,0,0);}
.ma2_c00150{transform:matrix(0.279848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279848,0.000000,0.000000,0.250000,0,0);}
.m2a_c00150{transform:matrix(0.280468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280468,0.000000,0.000000,0.250000,0,0);}
.mb1_c00150{transform:matrix(0.281115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281115,0.000000,0.000000,0.250000,0,0);}
.m5f_c00150{transform:matrix(0.281249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281249,0.000000,0.000000,0.250000,0,0);}
.m7c_c00150{transform:matrix(0.281362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281362,0.000000,0.000000,0.250000,0,0);}
.md_c00150{transform:matrix(0.281524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281524,0.000000,0.000000,0.250000,0,0);}
.m72_c00150{transform:matrix(0.281914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281914,0.000000,0.000000,0.250000,0,0);}
.m96_c00150{transform:matrix(0.282340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282340,0.000000,0.000000,0.250000,0,0);}
.ma5_c00150{transform:matrix(0.282645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282645,0.000000,0.000000,0.250000,0,0);}
.m7b_c00150{transform:matrix(0.282863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282863,0.000000,0.000000,0.250000,0,0);}
.m71_c00150{transform:matrix(0.282904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282904,0.000000,0.000000,0.250000,0,0);}
.ma7_c00150{transform:matrix(0.283300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283300,0.000000,0.000000,0.250000,0,0);}
.m97_c00150{transform:matrix(0.283557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283557,0.000000,0.000000,0.250000,0,0);}
.m64_c00150{transform:matrix(0.284352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284352,0.000000,0.000000,0.250000,0,0);}
.m8b_c00150{transform:matrix(0.285134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285134,0.000000,0.000000,0.250000,0,0);}
.m66_c00150{transform:matrix(0.285390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285390,0.000000,0.000000,0.250000,0,0);}
.m68_c00150{transform:matrix(0.285430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285430,0.000000,0.000000,0.250000,0,0);}
.m8e_c00150{transform:matrix(0.285447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285447,0.000000,0.000000,0.250000,0,0);}
.m3e_c00150{transform:matrix(0.285567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285567,0.000000,0.000000,0.250000,0,0);}
.m7f_c00150{transform:matrix(0.285882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285882,0.000000,0.000000,0.250000,0,0);}
.m53_c00150{transform:matrix(0.286002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286002,0.000000,0.000000,0.250000,0,0);}
.mf_c00150{transform:matrix(0.286567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286567,0.000000,0.000000,0.250000,0,0);}
.m90_c00150{transform:matrix(0.286634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286634,0.000000,0.000000,0.250000,0,0);}
.m1b_c00150{transform:matrix(0.286652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286652,0.000000,0.000000,0.250000,0,0);}
.m9b_c00150{transform:matrix(0.287498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287498,0.000000,0.000000,0.250000,0,0);}
.mb4_c00150{transform:matrix(0.287535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287535,0.000000,0.000000,0.250000,0,0);}
.m65_c00150{transform:matrix(0.287598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287598,0.000000,0.000000,0.250000,0,0);}
.m61_c00150{transform:matrix(0.287639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287639,0.000000,0.000000,0.250000,0,0);}
.m6a_c00150{transform:matrix(0.288347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288347,0.000000,0.000000,0.250000,0,0);}
.maa_c00150{transform:matrix(0.288709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288709,0.000000,0.000000,0.250000,0,0);}
.m8c_c00150{transform:matrix(0.289068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289068,0.000000,0.000000,0.250000,0,0);}
.m93_c00150{transform:matrix(0.289581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289581,0.000000,0.000000,0.250000,0,0);}
.m26_c00150{transform:matrix(0.289670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289670,0.000000,0.000000,0.250000,0,0);}
.m3b_c00150{transform:matrix(0.289698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289698,0.000000,0.000000,0.250000,0,0);}
.m85_c00150{transform:matrix(0.289778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289778,0.000000,0.000000,0.250000,0,0);}
.m52_c00150{transform:matrix(0.290548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290548,0.000000,0.000000,0.250000,0,0);}
.m92_c00150{transform:matrix(0.291261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291261,0.000000,0.000000,0.250000,0,0);}
.ma3_c00150{transform:matrix(0.291263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291263,0.000000,0.000000,0.250000,0,0);}
.m28_c00150{transform:matrix(0.291334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291334,0.000000,0.000000,0.250000,0,0);}
.mac_c00150{transform:matrix(0.291363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291363,0.000000,0.000000,0.250000,0,0);}
.m1f_c00150{transform:matrix(0.291665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291665,0.000000,0.000000,0.250000,0,0);}
.m3d_c00150{transform:matrix(0.292163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292163,0.000000,0.000000,0.250000,0,0);}
.m17_c00150{transform:matrix(0.292276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292276,0.000000,0.000000,0.250000,0,0);}
.me_c00150{transform:matrix(0.293261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293261,0.000000,0.000000,0.250000,0,0);}
.m62_c00150{transform:matrix(0.293358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293358,0.000000,0.000000,0.250000,0,0);}
.ma0_c00150{transform:matrix(0.293748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293748,0.000000,0.000000,0.250000,0,0);}
.m95_c00150{transform:matrix(0.295498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295498,0.000000,0.000000,0.250000,0,0);}
.m1a_c00150{transform:matrix(0.295548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295548,0.000000,0.000000,0.250000,0,0);}
.m9f_c00150{transform:matrix(0.295658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295658,0.000000,0.000000,0.250000,0,0);}
.m70_c00150{transform:matrix(0.296594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296594,0.000000,0.000000,0.250000,0,0);}
.m6f_c00150{transform:matrix(0.296683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296683,0.000000,0.000000,0.250000,0,0);}
.m63_c00150{transform:matrix(0.297295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297295,0.000000,0.000000,0.250000,0,0);}
.m74_c00150{transform:matrix(0.297574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297574,0.000000,0.000000,0.250000,0,0);}
.m49_c00150{transform:matrix(0.298607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298607,0.000000,0.000000,0.250000,0,0);}
.m5a_c00150{transform:matrix(0.298629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298629,0.000000,0.000000,0.250000,0,0);}
.m5d_c00150{transform:matrix(0.299047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299047,0.000000,0.000000,0.250000,0,0);}
.m88_c00150{transform:matrix(0.300598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300598,0.000000,0.000000,0.250000,0,0);}
.m9a_c00150{transform:matrix(0.301457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301457,0.000000,0.000000,0.250000,0,0);}
.m9d_c00150{transform:matrix(0.301499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301499,0.000000,0.000000,0.250000,0,0);}
.ma4_c00150{transform:matrix(0.301660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301660,0.000000,0.000000,0.250000,0,0);}
.m81_c00150{transform:matrix(0.303321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303321,0.000000,0.000000,0.250000,0,0);}
.m35_c00150{transform:matrix(0.303582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303582,0.000000,0.000000,0.250000,0,0);}
.m1e_c00150{transform:matrix(0.303715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303715,0.000000,0.000000,0.250000,0,0);}
.m7a_c00150{transform:matrix(0.303858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303858,0.000000,0.000000,0.250000,0,0);}
.m77_c00150{transform:matrix(0.303911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303911,0.000000,0.000000,0.250000,0,0);}
.ma1_c00150{transform:matrix(0.305469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305469,0.000000,0.000000,0.250000,0,0);}
.m83_c00150{transform:matrix(0.305974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305974,0.000000,0.000000,0.250000,0,0);}
.m6_c00150{transform:matrix(0.307437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307437,0.000000,0.000000,0.250000,0,0);}
.m27_c00150{transform:matrix(0.308019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308019,0.000000,0.000000,0.250000,0,0);}
.m8a_c00150{transform:matrix(0.308240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308240,0.000000,0.000000,0.250000,0,0);}
.m50_c00150{transform:matrix(0.308345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308345,0.000000,0.000000,0.250000,0,0);}
.m3f_c00150{transform:matrix(0.308735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308735,0.000000,0.000000,0.250000,0,0);}
.m6b_c00150{transform:matrix(0.309040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309040,0.000000,0.000000,0.250000,0,0);}
.m3a_c00150{transform:matrix(0.309096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309096,0.000000,0.000000,0.250000,0,0);}
.m32_c00150{transform:matrix(0.309145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309145,0.000000,0.000000,0.250000,0,0);}
.m3_c00150{transform:matrix(0.309181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309181,0.000000,0.000000,0.250000,0,0);}
.m13_c00150{transform:matrix(0.309905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309905,0.000000,0.000000,0.250000,0,0);}
.m4e_c00150{transform:matrix(0.310436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310436,0.000000,0.000000,0.250000,0,0);}
.m6c_c00150{transform:matrix(0.310853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310853,0.000000,0.000000,0.250000,0,0);}
.m84_c00150{transform:matrix(0.310855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310855,0.000000,0.000000,0.250000,0,0);}
.m3c_c00150{transform:matrix(0.310880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310880,0.000000,0.000000,0.250000,0,0);}
.m54_c00150{transform:matrix(0.311854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311854,0.000000,0.000000,0.250000,0,0);}
.m21_c00150{transform:matrix(0.312161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312161,0.000000,0.000000,0.250000,0,0);}
.m9e_c00150{transform:matrix(0.312576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312576,0.000000,0.000000,0.250000,0,0);}
.m9c_c00150{transform:matrix(0.314459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314459,0.000000,0.000000,0.250000,0,0);}
.m38_c00150{transform:matrix(0.315202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315202,0.000000,0.000000,0.250000,0,0);}
.m2_c00150{transform:matrix(0.316777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316777,0.000000,0.000000,0.250000,0,0);}
.m51_c00150{transform:matrix(0.316843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316843,0.000000,0.000000,0.250000,0,0);}
.m5e_c00150{transform:matrix(0.317074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317074,0.000000,0.000000,0.250000,0,0);}
.m8d_c00150{transform:matrix(0.317878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317878,0.000000,0.000000,0.250000,0,0);}
.m58_c00150{transform:matrix(0.318242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318242,0.000000,0.000000,0.250000,0,0);}
.m8f_c00150{transform:matrix(0.319440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319440,0.000000,0.000000,0.250000,0,0);}
.m2b_c00150{transform:matrix(0.319922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319922,0.000000,0.000000,0.250000,0,0);}
.m19_c00150{transform:matrix(0.320282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320282,0.000000,0.000000,0.250000,0,0);}
.maf_c00150{transform:matrix(0.321879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321879,0.000000,0.000000,0.250000,0,0);}
.m46_c00150{transform:matrix(0.322618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322618,0.000000,0.000000,0.250000,0,0);}
.m5c_c00150{transform:matrix(0.324283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324283,0.000000,0.000000,0.250000,0,0);}
.m5_c00150{transform:matrix(0.325725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325725,0.000000,0.000000,0.250000,0,0);}
.m24_c00150{transform:matrix(0.327397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327397,0.000000,0.000000,0.250000,0,0);}
.mab_c00150{transform:matrix(0.329357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329357,0.000000,0.000000,0.250000,0,0);}
.m44_c00150{transform:matrix(0.331087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331087,0.000000,0.000000,0.250000,0,0);}
.m94_c00150{transform:matrix(0.332540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332540,0.000000,0.000000,0.250000,0,0);}
.m5b_c00150{transform:matrix(0.335736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335736,0.000000,0.000000,0.250000,0,0);}
.mad_c00150{transform:matrix(0.336704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336704,0.000000,0.000000,0.250000,0,0);}
.m60_c00150{transform:matrix(0.338636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338636,0.000000,0.000000,0.250000,0,0);}
.m10_c00150{transform:matrix(0.349572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349572,0.000000,0.000000,0.250000,0,0);}
.m48_c00150{transform:matrix(0.349926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349926,0.000000,0.000000,0.250000,0,0);}
.m4a_c00150{transform:matrix(0.358891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358891,0.000000,0.000000,0.250000,0,0);}
.m59_c00150{transform:matrix(0.362128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362128,0.000000,0.000000,0.250000,0,0);}
.m2f_c00150{transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);}
.m25_c00150{transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);}
.v0_c00150{vertical-align:0.000000px;}
.v1_c00150{vertical-align:9.999000px;}
.ls7_c00150{letter-spacing:-2.855167px;}
.ls12_c00150{letter-spacing:-2.619540px;}
.ls16_c00150{letter-spacing:-1.133909px;}
.ls10_c00150{letter-spacing:-0.595506px;}
.ls2_c00150{letter-spacing:-0.562876px;}
.ls4_c00150{letter-spacing:0.000000px;}
.lsc_c00150{letter-spacing:0.513930px;}
.ls9_c00150{letter-spacing:0.840235px;}
.ls14_c00150{letter-spacing:1.558105px;}
.ls11_c00150{letter-spacing:2.088351px;}
.ls6_c00150{letter-spacing:2.585965px;}
.ls8_c00150{letter-spacing:2.634911px;}
.ls15_c00150{letter-spacing:2.977531px;}
.ls5_c00150{letter-spacing:3.484810px;}
.ls13_c00150{letter-spacing:3.564000px;}
.lsd_c00150{letter-spacing:3.589353px;}
.lsa_c00150{letter-spacing:3.623400px;}
.ls0_c00150{letter-spacing:3.638298px;}
.lsb_c00150{letter-spacing:3.931973px;}
.ls17_c00150{letter-spacing:3.956446px;}
.lsf_c00150{letter-spacing:4.059000px;}
.ls3_c00150{letter-spacing:4.078810px;}
.lse_c00150{letter-spacing:4.544110px;}
.ls1_c00150{letter-spacing:10.256301px;}
.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;}
._0_c00150{width:17.927924px;}
._2_c00150{width:30.547280px;}
._3_c00150{width:31.802653px;}
._1_c00150{width:36.827851px;}
._4_c00150{width:84.164119px;}
.fc0_c00150{color:transparent;}
.fs7_c00150{font-size:66.132198px;}
.fs1_c00150{font-size:69.696198px;}
.fs6_c00150{font-size:71.280000px;}
.fs3_c00150{font-size:72.468000px;}
.fs2_c00150{font-size:74.844000px;}
.fs5_c00150{font-size:81.180000px;}
.fs0_c00150{font-size:81.576198px;}
.fs4_c00150{font-size:90.882198px;}
.y0_c00150{bottom:0.000000px;}
.y1_c00150{bottom:76.500000px;}
.y1a_c00150{bottom:204.841935px;}
.y19_c00150{bottom:237.269385px;}
.y18_c00150{bottom:268.276185px;}
.y17_c00150{bottom:300.000735px;}
.y16_c00150{bottom:331.007535px;}
.y15_c00150{bottom:362.014335px;}
.y14_c00150{bottom:393.016185px;}
.y13_c00150{bottom:424.740735px;}
.y12_c00150{bottom:456.811785px;}
.y11_c00150{bottom:488.179935px;}
.y10_c00150{bottom:519.543135px;}
.yf_c00150{bottom:551.614185px;}
.ye_c00150{bottom:582.982335px;}
.yd_c00150{bottom:614.701935px;}
.yc_c00150{bottom:645.708735px;}
.yb_c00150{bottom:677.779785px;}
.ya_c00150{bottom:709.147935px;}
.y9_c00150{bottom:740.867535px;}
.y8_c00150{bottom:771.874335px;}
.y7_c00150{bottom:803.588985px;}
.y6_c00150{bottom:834.952185px;}
.y5_c00150{bottom:865.607535px;}
.y4_c00150{bottom:896.970735px;}
.y3_c00150{bottom:928.685385px;}
.y2_c00150{bottom:1064.830185px;}
.h9_c00150{height:69.957422px;}
.h5_c00150{height:71.123379px;}
.h3_c00150{height:72.690957px;}
.h4_c00150{height:73.455293px;}
.h8_c00150{height:78.059953px;}
.h7_c00150{height:79.673730px;}
.h2_c00150{height:80.062577px;}
.ha_c00150{height:82.213512px;}
.h6_c00150{height:89.195907px;}
.h1_c00150{height:1110.000000px;}
.h0_c00150{height:1263.000000px;}
.w1_c00150{width:733.500000px;}
.w0_c00150{width:892.500000px;}
.x0_c00150{left:0.000000px;}
.x35_c00150{left:78.367935px;}
.x1_c00150{left:79.500000px;}
.x59_c00150{left:80.580585px;}
.x31_c00150{left:101.009235px;}
.xe_c00150{left:102.419985px;}
.x39_c00150{left:111.161685px;}
.x26_c00150{left:112.409085px;}
.x20_c00150{left:123.061485px;}
.x3_c00150{left:134.273235px;}
.x51_c00150{left:144.678135px;}
.x18_c00150{left:145.935435px;}
.x21_c00150{left:156.073035px;}
.x40_c00150{left:157.567935px;}
.x27_c00150{left:166.755135px;}
.x55_c00150{left:167.764935px;}
.x4_c00150{left:179.026185px;}
.xf_c00150{left:190.000335px;}
.x36_c00150{left:201.083385px;}
.x58_c00150{left:202.157535px;}
.x19_c00150{left:210.597285px;}
.x3a_c00150{left:212.196135px;}
.x41_c00150{left:222.333735px;}
.x53_c00150{left:232.694085px;}
.x5_c00150{left:233.842485px;}
.x3b_c00150{left:244.994835px;}
.x28_c00150{left:255.647235px;}
.x1a_c00150{left:267.071835px;}
.x56_c00150{left:268.814235px;}
.x10_c00150{left:277.768785px;}
.x29_c00150{left:289.574535px;}
.x4c_c00150{left:299.528985px;}
.x14_c00150{left:300.934785px;}
.x6_c00150{left:311.636685px;}
.x11_c00150{left:322.318785px;}
.x3d_c00150{left:333.372135px;}
.x7_c00150{left:344.064135px;}
.x46_c00150{left:355.473885px;}
.x1b_c00150{left:356.835135px;}
.x52_c00150{left:366.155985px;}
.x15_c00150{left:376.318335px;}
.x37_c00150{left:377.763735px;}
.x8_c00150{left:388.594335px;}
.x3c_c00150{left:389.628885px;}
.x2a_c00150{left:400.048635px;}
.x22_c00150{left:411.062385px;}
.x1c_c00150{left:421.784085px;}
.x2b_c00150{left:432.476085px;}
.x42_c00150{left:433.891785px;}
.x47_c00150{left:443.524485px;}
.x43_c00150{left:454.518435px;}
.x23_c00150{left:456.815235px;}
.x9_c00150{left:465.264885px;}
.x12_c00150{left:466.279635px;}
.x5b_c00150{left:467.289435px;}
.x2c_c00150{left:476.644935px;}
.x44_c00150{left:487.163685px;}
.x48_c00150{left:489.366435px;}
.xa_c00150{left:498.212085px;}
.x32_c00150{left:508.542735px;}
.x16_c00150{left:510.092085px;}
.x2d_c00150{left:520.813785px;}
.x4a_c00150{left:531.367185px;}
.x5a_c00150{left:532.584885px;}
.x13_c00150{left:542.049285px;}
.x4d_c00150{left:543.291735px;}
.x3e_c00150{left:552.785835px;}
.x1d_c00150{left:554.354985px;}
.x4b_c00150{left:563.477835px;}
.x38_c00150{left:565.061835px;}
.x45_c00150{left:576.075585px;}
.xb_c00150{left:585.901335px;}
.x24_c00150{left:587.500185px;}
.x2e_c00150{left:596.934885px;}
.x49_c00150{left:598.538685px;}
.x30_c00150{left:609.596985px;}
.x4f_c00150{left:619.051485px;}
.xc_c00150{left:620.536485px;}
.x1e_c00150{left:630.634485px;}
.x3f_c00150{left:640.420635px;}
.x17_c00150{left:641.851185px;}
.x2_c00150{left:651.978885px;}
.xd_c00150{left:653.414385px;}
.x54_c00150{left:663.373785px;}
.x1f_c00150{left:664.517235px;}
.x33_c00150{left:675.521085px;}
.x2f_c00150{left:677.090235px;}
.x57_c00150{left:685.327035px;}
.x4e_c00150{left:696.028935px;}
.x25_c00150{left:697.058535px;}
.x34_c00150{left:707.562435px;}
.x50_c00150{left:708.606885px;}
@media print{
.v0_c00150{vertical-align:0.000000pt;}
.v1_c00150{vertical-align:8.888000pt;}
.ls7_c00150{letter-spacing:-2.537926pt;}
.ls12_c00150{letter-spacing:-2.328480pt;}
.ls16_c00150{letter-spacing:-1.007919pt;}
.ls10_c00150{letter-spacing:-0.529339pt;}
.ls2_c00150{letter-spacing:-0.500334pt;}
.ls4_c00150{letter-spacing:0.000000pt;}
.lsc_c00150{letter-spacing:0.456827pt;}
.ls9_c00150{letter-spacing:0.746875pt;}
.ls14_c00150{letter-spacing:1.384983pt;}
.ls11_c00150{letter-spacing:1.856312pt;}
.ls6_c00150{letter-spacing:2.298636pt;}
.ls8_c00150{letter-spacing:2.342143pt;}
.ls15_c00150{letter-spacing:2.646694pt;}
.ls5_c00150{letter-spacing:3.097609pt;}
.ls13_c00150{letter-spacing:3.168000pt;}
.lsd_c00150{letter-spacing:3.190536pt;}
.lsa_c00150{letter-spacing:3.220800pt;}
.ls0_c00150{letter-spacing:3.234043pt;}
.lsb_c00150{letter-spacing:3.495087pt;}
.ls17_c00150{letter-spacing:3.516841pt;}
.lsf_c00150{letter-spacing:3.608000pt;}
.ls3_c00150{letter-spacing:3.625609pt;}
.lse_c00150{letter-spacing:4.039209pt;}
.ls1_c00150{letter-spacing:9.116712pt;}
.ws0_c00150{word-spacing:0.000000pt;}
._0_c00150{width:15.935933pt;}
._2_c00150{width:27.153138pt;}
._3_c00150{width:28.269025pt;}
._1_c00150{width:32.735868pt;}
._4_c00150{width:74.812550pt;}
.fs7_c00150{font-size:58.784176pt;}
.fs1_c00150{font-size:61.952176pt;}
.fs6_c00150{font-size:63.360000pt;}
.fs3_c00150{font-size:64.416000pt;}
.fs2_c00150{font-size:66.528000pt;}
.fs5_c00150{font-size:72.160000pt;}
.fs0_c00150{font-size:72.512176pt;}
.fs4_c00150{font-size:80.784176pt;}
.y0_c00150{bottom:0.000000pt;}
.y1_c00150{bottom:68.000000pt;}
.y1a_c00150{bottom:182.081720pt;}
.y19_c00150{bottom:210.906120pt;}
.y18_c00150{bottom:238.467720pt;}
.y17_c00150{bottom:266.667320pt;}
.y16_c00150{bottom:294.228920pt;}
.y15_c00150{bottom:321.790520pt;}
.y14_c00150{bottom:349.347720pt;}
.y13_c00150{bottom:377.547320pt;}
.y12_c00150{bottom:406.054920pt;}
.y11_c00150{bottom:433.937720pt;}
.y10_c00150{bottom:461.816120pt;}
.yf_c00150{bottom:490.323720pt;}
.ye_c00150{bottom:518.206520pt;}
.yd_c00150{bottom:546.401720pt;}
.yc_c00150{bottom:573.963320pt;}
.yb_c00150{bottom:602.470920pt;}
.ya_c00150{bottom:630.353720pt;}
.y9_c00150{bottom:658.548920pt;}
.y8_c00150{bottom:686.110520pt;}
.y7_c00150{bottom:714.301320pt;}
.y6_c00150{bottom:742.179720pt;}
.y5_c00150{bottom:769.428920pt;}
.y4_c00150{bottom:797.307320pt;}
.y3_c00150{bottom:825.498120pt;}
.y2_c00150{bottom:946.515720pt;}
.h9_c00150{height:62.184375pt;}
.h5_c00150{height:63.220781pt;}
.h3_c00150{height:64.614184pt;}
.h4_c00150{height:65.293594pt;}
.h8_c00150{height:69.386625pt;}
.h7_c00150{height:70.821094pt;}
.h2_c00150{height:71.166735pt;}
.ha_c00150{height:73.078677pt;}
.h6_c00150{height:79.285251pt;}
.h1_c00150{height:986.666667pt;}
.h0_c00150{height:1122.666667pt;}
.w1_c00150{width:652.000000pt;}
.w0_c00150{width:793.333333pt;}
.x0_c00150{left:0.000000pt;}
.x35_c00150{left:69.660387pt;}
.x1_c00150{left:70.666667pt;}
.x59_c00150{left:71.627187pt;}
.x31_c00150{left:89.785987pt;}
.xe_c00150{left:91.039987pt;}
.x39_c00150{left:98.810387pt;}
.x26_c00150{left:99.919187pt;}
.x20_c00150{left:109.387987pt;}
.x3_c00150{left:119.353987pt;}
.x51_c00150{left:128.602787pt;}
.x18_c00150{left:129.720387pt;}
.x21_c00150{left:138.731587pt;}
.x40_c00150{left:140.060387pt;}
.x27_c00150{left:148.226787pt;}
.x55_c00150{left:149.124387pt;}
.x4_c00150{left:159.134387pt;}
.xf_c00150{left:168.889187pt;}
.x36_c00150{left:178.740787pt;}
.x58_c00150{left:179.695587pt;}
.x19_c00150{left:187.197587pt;}
.x3a_c00150{left:188.618787pt;}
.x41_c00150{left:197.629987pt;}
.x53_c00150{left:206.839187pt;}
.x5_c00150{left:207.859987pt;}
.x3b_c00150{left:217.773187pt;}
.x28_c00150{left:227.241987pt;}
.x1a_c00150{left:237.397187pt;}
.x56_c00150{left:238.945987pt;}
.x10_c00150{left:246.905587pt;}
.x29_c00150{left:257.399587pt;}
.x4c_c00150{left:266.247987pt;}
.x14_c00150{left:267.497587pt;}
.x6_c00150{left:277.010387pt;}
.x11_c00150{left:286.505587pt;}
.x3d_c00150{left:296.330787pt;}
.x7_c00150{left:305.834787pt;}
.x46_c00150{left:315.976787pt;}
.x1b_c00150{left:317.186787pt;}
.x52_c00150{left:325.471987pt;}
.x15_c00150{left:334.505187pt;}
.x37_c00150{left:335.789987pt;}
.x8_c00150{left:345.417187pt;}
.x3c_c00150{left:346.336787pt;}
.x2a_c00150{left:355.598787pt;}
.x22_c00150{left:365.388787pt;}
.x1c_c00150{left:374.919187pt;}
.x2b_c00150{left:384.423187pt;}
.x42_c00150{left:385.681587pt;}
.x47_c00150{left:394.243987pt;}
.x43_c00150{left:404.016387pt;}
.x23_c00150{left:406.057987pt;}
.x9_c00150{left:413.568787pt;}
.x12_c00150{left:414.470787pt;}
.x5b_c00150{left:415.368387pt;}
.x2c_c00150{left:423.684387pt;}
.x44_c00150{left:433.034387pt;}
.x48_c00150{left:434.992387pt;}
.xa_c00150{left:442.855187pt;}
.x32_c00150{left:452.037987pt;}
.x16_c00150{left:453.415187pt;}
.x2d_c00150{left:462.945587pt;}
.x4a_c00150{left:472.326387pt;}
.x5a_c00150{left:473.408787pt;}
.x13_c00150{left:481.821587pt;}
.x4d_c00150{left:482.925987pt;}
.x3e_c00150{left:491.365187pt;}
.x1d_c00150{left:492.759987pt;}
.x4b_c00150{left:500.869187pt;}
.x38_c00150{left:502.277187pt;}
.x45_c00150{left:512.067187pt;}
.xb_c00150{left:520.801187pt;}
.x24_c00150{left:522.222387pt;}
.x2e_c00150{left:530.608787pt;}
.x49_c00150{left:532.034387pt;}
.x30_c00150{left:541.863987pt;}
.x4f_c00150{left:550.267987pt;}
.xc_c00150{left:551.587987pt;}
.x1e_c00150{left:560.563987pt;}
.x3f_c00150{left:569.262787pt;}
.x17_c00150{left:570.534387pt;}
.x2_c00150{left:579.536787pt;}
.xd_c00150{left:580.812787pt;}
.x54_c00150{left:589.665587pt;}
.x1f_c00150{left:590.681987pt;}
.x33_c00150{left:600.463187pt;}
.x2f_c00150{left:601.857987pt;}
.x57_c00150{left:609.179587pt;}
.x4e_c00150{left:618.692387pt;}
.x25_c00150{left:619.607587pt;}
.x34_c00150{left:628.944387pt;}
.x50_c00150{left:629.872787pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b991ee47f700d3c59fbf6cfb.woff2')format("woff");}.ff1_c00151{font-family:ff1_c00151;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00151;src:url('chunks/assets/font_61d7cefaf0989022056edf6d.woff2')format("woff");}.ff2_c00151{font-family:ff2_c00151;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00151;src:url('chunks/assets/font_7cbfae381f2dd3a3c3279aac.woff2')format("woff");}.ff3_c00151{font-family:ff3_c00151;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00151;src:url('chunks/assets/font_54849a0bf8e16d6bcc9855a1.woff2')format("woff");}.ff4_c00151{font-family:ff4_c00151;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.maf_c00151{transform:matrix(0.109433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109433,0.000000,0.000000,0.250000,0,0);}
.m10_c00151{transform:matrix(0.111980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111980,0.000000,0.000000,0.250000,0,0);}
.m11_c00151{transform:matrix(0.144532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144532,0.000000,0.000000,0.250000,0,0);}
.m13_c00151{transform:matrix(0.176307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176307,0.000000,0.000000,0.250000,0,0);}
.m32_c00151{transform:matrix(0.197741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197741,0.000000,0.000000,0.250000,0,0);}
.m58_c00151{transform:matrix(0.215043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215043,0.000000,0.000000,0.250000,0,0);}
.m67_c00151{transform:matrix(0.216428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216428,0.000000,0.000000,0.250000,0,0);}
.m81_c00151{transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);}
.m2_c00151{transform:matrix(0.235239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235239,0.000000,0.000000,0.250000,0,0);}
.m74_c00151{transform:matrix(0.245459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245459,0.000000,0.000000,0.250000,0,0);}
.m0_c00151{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m99_c00151{transform:matrix(0.250496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250496,0.000000,0.000000,0.250000,0,0);}
.m31_c00151{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.m3f_c00151{transform:matrix(0.252369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252369,0.000000,0.000000,0.250000,0,0);}
.mb6_c00151{transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);}
.m91_c00151{transform:matrix(0.256392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256392,0.000000,0.000000,0.250000,0,0);}
.m15_c00151{transform:matrix(0.257797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257797,0.000000,0.000000,0.250000,0,0);}
.m8f_c00151{transform:matrix(0.258289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258289,0.000000,0.000000,0.250000,0,0);}
.mb3_c00151{transform:matrix(0.258596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258596,0.000000,0.000000,0.250000,0,0);}
.m4f_c00151{transform:matrix(0.258620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258620,0.000000,0.000000,0.250000,0,0);}
.m1d_c00151{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m25_c00151{transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);}
.m82_c00151{transform:matrix(0.260405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260405,0.000000,0.000000,0.250000,0,0);}
.mac_c00151{transform:matrix(0.260447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260447,0.000000,0.000000,0.250000,0,0);}
.m1_c00151{transform:matrix(0.260958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260958,0.000000,0.000000,0.250000,0,0);}
.ma3_c00151{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.mb1_c00151{transform:matrix(0.261608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261608,0.000000,0.000000,0.250000,0,0);}
.ma_c00151{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m5_c00151{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m65_c00151{transform:matrix(0.264128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264128,0.000000,0.000000,0.250000,0,0);}
.m61_c00151{transform:matrix(0.265217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265217,0.000000,0.000000,0.250000,0,0);}
.m2d_c00151{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m1b_c00151{transform:matrix(0.266295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266295,0.000000,0.000000,0.250000,0,0);}
.m46_c00151{transform:matrix(0.266682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266682,0.000000,0.000000,0.250000,0,0);}
.m2f_c00151{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m9e_c00151{transform:matrix(0.268278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268278,0.000000,0.000000,0.250000,0,0);}
.m52_c00151{transform:matrix(0.268440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268440,0.000000,0.000000,0.250000,0,0);}
.m4a_c00151{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.m6_c00151{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m33_c00151{transform:matrix(0.271226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271226,0.000000,0.000000,0.250000,0,0);}
.m50_c00151{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.mb5_c00151{transform:matrix(0.272544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272544,0.000000,0.000000,0.250000,0,0);}
.m83_c00151{transform:matrix(0.272848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272848,0.000000,0.000000,0.250000,0,0);}
.md_c00151{transform:matrix(0.273621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273621,0.000000,0.000000,0.250000,0,0);}
.m4_c00151{transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);}
.m59_c00151{transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);}
.m47_c00151{transform:matrix(0.275213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275213,0.000000,0.000000,0.250000,0,0);}
.m93_c00151{transform:matrix(0.275347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275347,0.000000,0.000000,0.250000,0,0);}
.mb4_c00151{transform:matrix(0.275568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275568,0.000000,0.000000,0.250000,0,0);}
.m8e_c00151{transform:matrix(0.275942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275942,0.000000,0.000000,0.250000,0,0);}
.m71_c00151{transform:matrix(0.276001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276001,0.000000,0.000000,0.250000,0,0);}
.m8b_c00151{transform:matrix(0.276319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276319,0.000000,0.000000,0.250000,0,0);}
.m92_c00151{transform:matrix(0.276378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276378,0.000000,0.000000,0.250000,0,0);}
.m29_c00151{transform:matrix(0.276792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276792,0.000000,0.000000,0.250000,0,0);}
.m89_c00151{transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);}
.mf_c00151{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m2c_c00151{transform:matrix(0.278174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278174,0.000000,0.000000,0.250000,0,0);}
.ma9_c00151{transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);}
.m36_c00151{transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);}
.m24_c00151{transform:matrix(0.280265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280265,0.000000,0.000000,0.250000,0,0);}
.m1a_c00151{transform:matrix(0.281043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281043,0.000000,0.000000,0.250000,0,0);}
.mb_c00151{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.mb0_c00151{transform:matrix(0.282543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282543,0.000000,0.000000,0.250000,0,0);}
.m75_c00151{transform:matrix(0.282559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282559,0.000000,0.000000,0.250000,0,0);}
.mbb_c00151{transform:matrix(0.283230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283230,0.000000,0.000000,0.250000,0,0);}
.m40_c00151{transform:matrix(0.283300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283300,0.000000,0.000000,0.250000,0,0);}
.m6f_c00151{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m35_c00151{transform:matrix(0.283801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283801,0.000000,0.000000,0.250000,0,0);}
.m63_c00151{transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);}
.mab_c00151{transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);}
.m53_c00151{transform:matrix(0.285416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285416,0.000000,0.000000,0.250000,0,0);}
.ma4_c00151{transform:matrix(0.286121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286121,0.000000,0.000000,0.250000,0,0);}
.m90_c00151{transform:matrix(0.286141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286141,0.000000,0.000000,0.250000,0,0);}
.m7d_c00151{transform:matrix(0.286186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286186,0.000000,0.000000,0.250000,0,0);}
.m8_c00151{transform:matrix(0.286407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286407,0.000000,0.000000,0.250000,0,0);}
.ma1_c00151{transform:matrix(0.286777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286777,0.000000,0.000000,0.250000,0,0);}
.m64_c00151{transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);}
.m3a_c00151{transform:matrix(0.287431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287431,0.000000,0.000000,0.250000,0,0);}
.m2e_c00151{transform:matrix(0.287440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287440,0.000000,0.000000,0.250000,0,0);}
.m19_c00151{transform:matrix(0.287521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287521,0.000000,0.000000,0.250000,0,0);}
.ma6_c00151{transform:matrix(0.287590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287590,0.000000,0.000000,0.250000,0,0);}
.m1e_c00151{transform:matrix(0.288741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288741,0.000000,0.000000,0.250000,0,0);}
.ma7_c00151{transform:matrix(0.289155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289155,0.000000,0.000000,0.250000,0,0);}
.m7f_c00151{transform:matrix(0.289297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289297,0.000000,0.000000,0.250000,0,0);}
.m8a_c00151{transform:matrix(0.289464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289464,0.000000,0.000000,0.250000,0,0);}
.m2a_c00151{transform:matrix(0.289488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289488,0.000000,0.000000,0.250000,0,0);}
.m6e_c00151{transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);}
.m38_c00151{transform:matrix(0.290594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290594,0.000000,0.000000,0.250000,0,0);}
.ma2_c00151{transform:matrix(0.290612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290612,0.000000,0.000000,0.250000,0,0);}
.m9a_c00151{transform:matrix(0.290806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290806,0.000000,0.000000,0.250000,0,0);}
.m5b_c00151{transform:matrix(0.293651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293651,0.000000,0.000000,0.250000,0,0);}
.mad_c00151{transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);}
.m4d_c00151{transform:matrix(0.293689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293689,0.000000,0.000000,0.250000,0,0);}
.m44_c00151{transform:matrix(0.293739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293739,0.000000,0.000000,0.250000,0,0);}
.ma0_c00151{transform:matrix(0.293761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293761,0.000000,0.000000,0.250000,0,0);}
.m26_c00151{transform:matrix(0.294033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294033,0.000000,0.000000,0.250000,0,0);}
.m70_c00151{transform:matrix(0.294113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294113,0.000000,0.000000,0.250000,0,0);}
.m54_c00151{transform:matrix(0.294717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294717,0.000000,0.000000,0.250000,0,0);}
.m6a_c00151{transform:matrix(0.294984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294984,0.000000,0.000000,0.250000,0,0);}
.ma5_c00151{transform:matrix(0.295399,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295399,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295399,0.000000,0.000000,0.250000,0,0);}
.m94_c00151{transform:matrix(0.296238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296238,0.000000,0.000000,0.250000,0,0);}
.m76_c00151{transform:matrix(0.296384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296384,0.000000,0.000000,0.250000,0,0);}
.ma8_c00151{transform:matrix(0.299102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299102,0.000000,0.000000,0.250000,0,0);}
.mc_c00151{transform:matrix(0.299520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299520,0.000000,0.000000,0.250000,0,0);}
.m55_c00151{transform:matrix(0.299719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299719,0.000000,0.000000,0.250000,0,0);}
.m37_c00151{transform:matrix(0.300614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300614,0.000000,0.000000,0.250000,0,0);}
.m6c_c00151{transform:matrix(0.301749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301749,0.000000,0.000000,0.250000,0,0);}
.m60_c00151{transform:matrix(0.302000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00151{transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);}
.m41_c00151{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m8d_c00151{transform:matrix(0.304536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304536,0.000000,0.000000,0.250000,0,0);}
.me_c00151{transform:matrix(0.304958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304958,0.000000,0.000000,0.250000,0,0);}
.m3b_c00151{transform:matrix(0.305100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305100,0.000000,0.000000,0.250000,0,0);}
.m73_c00151{transform:matrix(0.305409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305409,0.000000,0.000000,0.250000,0,0);}
.m98_c00151{transform:matrix(0.305475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305475,0.000000,0.000000,0.250000,0,0);}
.m30_c00151{transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);}
.m7a_c00151{transform:matrix(0.306601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306601,0.000000,0.000000,0.250000,0,0);}
.m42_c00151{transform:matrix(0.306726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306726,0.000000,0.000000,0.250000,0,0);}
.m39_c00151{transform:matrix(0.307114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307114,0.000000,0.000000,0.250000,0,0);}
.m96_c00151{transform:matrix(0.307223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307223,0.000000,0.000000,0.250000,0,0);}
.mb9_c00151{transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);}
.m5d_c00151{transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);}
.m5a_c00151{transform:matrix(0.308319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308319,0.000000,0.000000,0.250000,0,0);}
.m88_c00151{transform:matrix(0.308371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308371,0.000000,0.000000,0.250000,0,0);}
.m95_c00151{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m80_c00151{transform:matrix(0.309024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309024,0.000000,0.000000,0.250000,0,0);}
.m9_c00151{transform:matrix(0.309410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309410,0.000000,0.000000,0.250000,0,0);}
.m84_c00151{transform:matrix(0.309603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309603,0.000000,0.000000,0.250000,0,0);}
.m86_c00151{transform:matrix(0.309672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309672,0.000000,0.000000,0.250000,0,0);}
.m68_c00151{transform:matrix(0.310989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310989,0.000000,0.000000,0.250000,0,0);}
.m14_c00151{transform:matrix(0.311736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311736,0.000000,0.000000,0.250000,0,0);}
.m51_c00151{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.mba_c00151{transform:matrix(0.313265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313265,0.000000,0.000000,0.250000,0,0);}
.m72_c00151{transform:matrix(0.313504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313504,0.000000,0.000000,0.250000,0,0);}
.m5c_c00151{transform:matrix(0.313691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313691,0.000000,0.000000,0.250000,0,0);}
.m3d_c00151{transform:matrix(0.314184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314184,0.000000,0.000000,0.250000,0,0);}
.m43_c00151{transform:matrix(0.314815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314815,0.000000,0.000000,0.250000,0,0);}
.m97_c00151{transform:matrix(0.315143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315143,0.000000,0.000000,0.250000,0,0);}
.m3c_c00151{transform:matrix(0.315202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315202,0.000000,0.000000,0.250000,0,0);}
.mb7_c00151{transform:matrix(0.315717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315717,0.000000,0.000000,0.250000,0,0);}
.m4e_c00151{transform:matrix(0.316005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316005,0.000000,0.000000,0.250000,0,0);}
.m66_c00151{transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);}
.m49_c00151{transform:matrix(0.317925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317925,0.000000,0.000000,0.250000,0,0);}
.m6d_c00151{transform:matrix(0.318213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318213,0.000000,0.000000,0.250000,0,0);}
.m7c_c00151{transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);}
.m62_c00151{transform:matrix(0.319018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319018,0.000000,0.000000,0.250000,0,0);}
.m1c_c00151{transform:matrix(0.319931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319931,0.000000,0.000000,0.250000,0,0);}
.m4c_c00151{transform:matrix(0.320003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320003,0.000000,0.000000,0.250000,0,0);}
.m8c_c00151{transform:matrix(0.320758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320758,0.000000,0.000000,0.250000,0,0);}
.m1f_c00151{transform:matrix(0.321236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321236,0.000000,0.000000,0.250000,0,0);}
.mb8_c00151{transform:matrix(0.321999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321999,0.000000,0.000000,0.250000,0,0);}
.m3e_c00151{transform:matrix(0.322461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322461,0.000000,0.000000,0.250000,0,0);}
.m78_c00151{transform:matrix(0.322703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322703,0.000000,0.000000,0.250000,0,0);}
.m79_c00151{transform:matrix(0.323033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323033,0.000000,0.000000,0.250000,0,0);}
.m3_c00151{transform:matrix(0.323256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323256,0.000000,0.000000,0.250000,0,0);}
.m17_c00151{transform:matrix(0.324676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324676,0.000000,0.000000,0.250000,0,0);}
.m7_c00151{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.m9c_c00151{transform:matrix(0.329388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329388,0.000000,0.000000,0.250000,0,0);}
.m28_c00151{transform:matrix(0.331416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331416,0.000000,0.000000,0.250000,0,0);}
.m5e_c00151{transform:matrix(0.332438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332438,0.000000,0.000000,0.250000,0,0);}
.mae_c00151{transform:matrix(0.332458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332458,0.000000,0.000000,0.250000,0,0);}
.m27_c00151{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m9d_c00151{transform:matrix(0.333376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333376,0.000000,0.000000,0.250000,0,0);}
.m20_c00151{transform:matrix(0.333484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333484,0.000000,0.000000,0.250000,0,0);}
.m34_c00151{transform:matrix(0.335470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335470,0.000000,0.000000,0.250000,0,0);}
.m23_c00151{transform:matrix(0.335487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335487,0.000000,0.000000,0.250000,0,0);}
.maa_c00151{transform:matrix(0.336463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336463,0.000000,0.000000,0.250000,0,0);}
.m9b_c00151{transform:matrix(0.336640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336640,0.000000,0.000000,0.250000,0,0);}
.m18_c00151{transform:matrix(0.337214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337214,0.000000,0.000000,0.250000,0,0);}
.m7b_c00151{transform:matrix(0.338414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338414,0.000000,0.000000,0.250000,0,0);}
.m4b_c00151{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m87_c00151{transform:matrix(0.339441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339441,0.000000,0.000000,0.250000,0,0);}
.m2b_c00151{transform:matrix(0.340207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340207,0.000000,0.000000,0.250000,0,0);}
.m45_c00151{transform:matrix(0.342985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342985,0.000000,0.000000,0.250000,0,0);}
.m56_c00151{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.m16_c00151{transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);}
.m69_c00151{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m77_c00151{transform:matrix(0.350264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350264,0.000000,0.000000,0.250000,0,0);}
.m57_c00151{transform:matrix(0.354899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354899,0.000000,0.000000,0.250000,0,0);}
.m7e_c00151{transform:matrix(0.354982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354982,0.000000,0.000000,0.250000,0,0);}
.m22_c00151{transform:matrix(0.355345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355345,0.000000,0.000000,0.250000,0,0);}
.m21_c00151{transform:matrix(0.357463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357463,0.000000,0.000000,0.250000,0,0);}
.m9f_c00151{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m85_c00151{transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);}
.m12_c00151{transform:matrix(0.407787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407787,0.000000,0.000000,0.250000,0,0);}
.m6b_c00151{transform:matrix(0.414699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414699,0.000000,0.000000,0.250000,0,0);}
.m48_c00151{transform:matrix(0.416528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416528,0.000000,0.000000,0.250000,0,0);}
.mb2_c00151{transform:matrix(0.721372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721372,0.000000,0.000000,0.250000,0,0);}
.v0_c00151{vertical-align:0.000000px;}
.ls3_c00151{letter-spacing:-2.744280px;}
.ls6_c00151{letter-spacing:-2.375762px;}
.ls9_c00151{letter-spacing:-0.846806px;}
.ls1_c00151{letter-spacing:0.000000px;}
.ls11_c00151{letter-spacing:1.034986px;}
.ls0_c00151{letter-spacing:1.246687px;}
.lsb_c00151{letter-spacing:1.685772px;}
.ls7_c00151{letter-spacing:1.978099px;}
.ls10_c00151{letter-spacing:2.286900px;}
.lsa_c00151{letter-spacing:2.509056px;}
.lsd_c00151{letter-spacing:2.759962px;}
.lsc_c00151{letter-spacing:3.112798px;}
.ls12_c00151{letter-spacing:3.544200px;}
.ls4_c00151{letter-spacing:3.920400px;}
.ls2_c00151{letter-spacing:4.257000px;}
.lsf_c00151{letter-spacing:4.435200px;}
.ls8_c00151{letter-spacing:49.896198px;}
.lse_c00151{letter-spacing:59.875398px;}
.ls5_c00151{letter-spacing:68.428998px;}
.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:-19.602000px;}
.ws3_c00151{word-spacing:-3.607164px;}
.ws5_c00151{word-spacing:-3.293136px;}
.ws2_c00151{word-spacing:-2.195424px;}
.ws6_c00151{word-spacing:0.000000px;}
.ws1_c00151{word-spacing:2.037816px;}
.ws4_c00151{word-spacing:3.605976px;}
._14_c00151{margin-left:-13.172544px;}
._10_c00151{margin-left:-2.823480px;}
._d_c00151{margin-left:-1.254528px;}
._8_c00151{width:4.390848px;}
._c_c00151{width:6.507864px;}
._3_c00151{width:8.232840px;}
._e_c00151{width:9.957816px;}
._7_c00151{width:11.918412px;}
._11_c00151{width:16.073640px;}
._0_c00151{width:17.345691px;}
._6_c00151{width:20.856528px;}
._2_c00151{width:22.267872px;}
._a_c00151{width:24.620112px;}
._13_c00151{width:28.932552px;}
._5_c00151{width:31.284792px;}
._9_c00151{width:32.321520px;}
._12_c00151{width:35.333496px;}
._b_c00151{width:36.876312px;}
._4_c00151{width:38.248848px;}
._f_c00151{width:40.507632px;}
._1_c00151{width:46.201754px;}
.fc0_c00151{color:transparent;}
.fs0_c00151{font-size:22.176000px;}
.fsc_c00151{font-size:23.166000px;}
.fsd_c00151{font-size:23.364000px;}
.fs14_c00151{font-size:27.720000px;}
.fs11_c00151{font-size:28.512000px;}
.fs7_c00151{font-size:33.264000px;}
.fs13_c00151{font-size:38.808000px;}
.fs1_c00151{font-size:39.204000px;}
.fs6_c00151{font-size:39.600000px;}
.fs10_c00151{font-size:45.738000px;}
.fs4_c00151{font-size:47.916198px;}
.fsa_c00151{font-size:49.896198px;}
.fs8_c00151{font-size:52.272000px;}
.fsf_c00151{font-size:53.856198px;}
.fse_c00151{font-size:59.875398px;}
.fsb_c00151{font-size:66.330000px;}
.fs5_c00151{font-size:68.428998px;}
.fs12_c00151{font-size:70.884000px;}
.fs3_c00151{font-size:78.408000px;}
.fs2_c00151{font-size:85.140000px;}
.fs9_c00151{font-size:88.704000px;}
.y0_c00151{bottom:0.000000px;}
.y2a_c00151{bottom:9.529785px;}
.y29_c00151{bottom:46.595385px;}
.y28_c00151{bottom:55.148985px;}
.y1_c00151{bottom:76.500000px;}
.y27_c00151{bottom:96.852735px;}
.y26_c00151{bottom:143.179785px;}
.y25_c00151{bottom:186.665535px;}
.y24_c00151{bottom:198.421785px;}
.y23_c00151{bottom:204.129135px;}
.y22_c00151{bottom:237.274335px;}
.y21_c00151{bottom:269.350335px;}
.y20_c00151{bottom:301.777785px;}
.y1f_c00151{bottom:316.390185px;}
.y1e_c00151{bottom:325.656585px;}
.y1d_c00151{bottom:334.566585px;}
.y1c_c00151{bottom:367.360335px;}
.y1b_c00151{bottom:378.052335px;}
.y1a_c00151{bottom:399.787785px;}
.y19_c00151{bottom:433.650735px;}
.y18_c00151{bottom:465.721785px;}
.y17_c00151{bottom:497.797785px;}
.y16_c00151{bottom:563.375385px;}
.y15_c00151{bottom:595.807785px;}
.y14_c00151{bottom:627.888735px;}
.y13_c00151{bottom:661.028985px;}
.y12_c00151{bottom:693.109935px;}
.y11_c00151{bottom:725.180985px;}
.y10_c00151{bottom:757.969785px;}
.yf_c00151{bottom:782.917785px;}
.ye_c00151{bottom:788.976585px;}
.yc_c00151{bottom:791.119935px;}
.yd_c00151{bottom:791.827785px;}
.yb_c00151{bottom:805.019535px;}
.ya_c00151{bottom:822.839535px;}
.y9_c00151{bottom:836.377785px;}
.y8_c00151{bottom:856.341135px;}
.y7_c00151{bottom:889.486335px;}
.y6_c00151{bottom:921.562335px;}
.y5_c00151{bottom:1069.106985px;}
.y4_c00151{bottom:1080.511785px;}
.y2_c00151{bottom:1092.629385px;}
.y3_c00151{bottom:1103.321385px;}
.h2_c00151{height:23.128875px;}
.hd_c00151{height:24.161414px;}
.he_c00151{height:24.367922px;}
.h15_c00151{height:28.911094px;}
.h12_c00151{height:29.737125px;}
.hb_c00151{height:33.230868px;}
.h8_c00151{height:34.693313px;}
.h3_c00151{height:38.476582px;}
.hf_c00151{height:39.877015px;}
.h14_c00151{height:40.475531px;}
.h7_c00151{height:41.301563px;}
.h6_c00151{height:45.573713px;}
.h11_c00151{height:46.095328px;}
.h9_c00151{height:51.302109px;}
.h10_c00151{height:54.276950px;}
.hc_c00151{height:69.180117px;}
.h13_c00151{height:69.568770px;}
.h5_c00151{height:76.953164px;}
.h4_c00151{height:83.560254px;}
.ha_c00151{height:87.058125px;}
.h1_c00151{height:1110.000000px;}
.h0_c00151{height:1263.000000px;}
.w1_c00151{width:775.500000px;}
.w0_c00151{width:892.500000px;}
.x0_c00151{left:0.000000px;}
.x2_c00151{left:47.660235px;}
.x1_c00151{left:58.500000px;}
.x44_c00151{left:74.048685px;}
.x1e_c00151{left:75.494085px;}
.x12_c00151{left:76.622685px;}
.x79_c00151{left:78.285885px;}
.x7f_c00151{left:92.853735px;}
.x25_c00151{left:98.501685px;}
.x2f_c00151{left:108.574935px;}
.x7a_c00151{left:110.955885px;}
.x26_c00151{left:119.435235px;}
.x13_c00151{left:121.306335px;}
.x58_c00151{left:128.642235px;}
.x6_c00151{left:131.033085px;}
.x45_c00151{left:140.076735px;}
.x30_c00151{left:141.769635px;}
.x4d_c00151{left:151.481535px;}
.x27_c00151{left:152.827935px;}
.x81_c00151{left:160.995435px;}
.x14_c00151{left:163.213035px;}
.x7_c00151{left:164.742585px;}
.x31_c00151{left:174.771285px;}
.x60_c00151{left:184.280235px;}
.x32_c00151{left:185.364285px;}
.x5e_c00151{left:186.522585px;}
.x51_c00151{left:194.932635px;}
.x65_c00151{left:196.675035px;}
.x15_c00151{left:197.793735px;}
.x46_c00151{left:206.287935px;}
.x3b_c00151{left:207.540285px;}
.x16_c00151{left:212.401185px;}
.x3a_c00151{left:217.945185px;}
.x4e_c00151{left:219.281685px;}
.x28_c00151{left:220.360785px;}
.x52_c00151{left:229.335135px;}
.x73_c00151{left:231.057735px;}
.x6f_c00151{left:240.195435px;}
.x29_c00151{left:241.571535px;}
.x8_c00151{left:243.170385px;}
.x5c_c00151{left:251.570535px;}
.x3c_c00151{left:252.788235px;}
.x1f_c00151{left:253.887135px;}
.x53_c00151{left:263.514885px;}
.x17_c00151{left:264.618735px;}
.x3d_c00151{left:274.568235px;}
.x9_c00151{left:275.637435px;}
.x54_c00151{left:284.705835px;}
.x70_c00151{left:286.359135px;}
.x66_c00151{left:296.536335px;}
.x18_c00151{left:297.848085px;}
.x67_c00151{left:306.485835px;}
.x33_c00151{left:308.074785px;}
.x49_c00151{left:318.197535px;}
.x7b_c00151{left:319.558785px;}
.xa_c00151{left:320.870535px;}
.x4a_c00151{left:329.572635px;}
.x19_c00151{left:330.696285px;}
.x55_c00151{left:340.635885px;}
.x72_c00151{left:341.843685px;}
.x3e_c00151{left:351.911985px;}
.xb_c00151{left:353.307885px;}
.x20_c00151{left:363.980085px;}
.x7c_c00151{left:365.380935px;}
.x61_c00151{left:374.355285px;}
.x2a_c00151{left:375.439335px;}
.x4f_c00151{left:384.141435px;}
.x56_c00151{left:385.408635px;}
.x6a_c00151{left:386.779785px;}
.x59_c00151{left:396.328335px;}
.xc_c00151{left:397.338135px;}
.x5d_c00151{left:407.490585px;}
.x68_c00151{left:408.901335px;}
.x47_c00151{left:419.598285px;}
.x24_c00151{left:429.537885px;}
.x1a_c00151{left:430.666485px;}
.x5a_c00151{left:440.888235px;}
.x7d_c00151{left:449.535885px;}
.x62_c00151{left:451.515885px;}
.x2b_c00151{left:453.114735px;}
.x3f_c00151{left:461.836635px;}
.x5f_c00151{left:462.920685px;}
.x5b_c00151{left:473.305785px;}
.x2c_c00151{left:475.137285px;}
.x48_c00151{left:484.265085px;}
.xd_c00151{left:486.581685px;}
.x75_c00151{left:487.937985px;}
.x63_c00151{left:496.729185px;}
.x34_c00151{left:506.936085px;}
.x21_c00151{left:508.371585px;}
.x1b_c00151{left:518.499285px;}
.x40_c00151{left:528.854685px;}
.x71_c00151{left:530.290185px;}
.x35_c00151{left:538.769535px;}
.x41_c00151{left:540.492135px;}
.x22_c00151{left:542.209785px;}
.x36_c00151{left:551.456385px;}
.x2d_c00151{left:553.545285px;}
.xe_c00151{left:563.608635px;}
.x69_c00151{left:573.033435px;}
.x6b_c00151{left:574.622385px;}
.x37_c00151{left:583.735335px;}
.x23_c00151{left:585.680685px;}
.x6d_c00151{left:588.675435px;}
.xf_c00151{left:595.169835px;}
.x4b_c00151{left:605.505435px;}
.x6c_c00151{left:606.609285px;}
.x74_c00151{left:607.727985px;}
.x38_c00151{left:617.088435px;}
.x3_c00151{left:618.182385px;}
.x77_c00151{left:624.325335px;}
.x39_c00151{left:628.636785px;}
.x10_c00151{left:630.116835px;}
.x42_c00151{left:639.695085px;}
.x1c_c00151{left:641.576085px;}
.x50_c00151{left:651.080085px;}
.x4_c00151{left:653.000685px;}
.x4c_c00151{left:660.747435px;}
.x43_c00151{left:661.935435px;}
.x1d_c00151{left:674.399535px;}
.x57_c00151{left:685.101435px;}
.x11_c00151{left:686.531985px;}
.x5_c00151{left:692.744235px;}
.x2e_c00151{left:695.194485px;}
.x6e_c00151{left:698.421885px;}
.x64_c00151{left:699.441585px;}
.x78_c00151{left:700.832535px;}
.x80_c00151{left:702.723435px;}
.x76_c00151{left:706.272585px;}
.x7e_c00151{left:712.014585px;}
@media print{
.v0_c00151{vertical-align:0.000000pt;}
.ls3_c00151{letter-spacing:-2.439360pt;}
.ls6_c00151{letter-spacing:-2.111789pt;}
.ls9_c00151{letter-spacing:-0.752717pt;}
.ls1_c00151{letter-spacing:0.000000pt;}
.ls11_c00151{letter-spacing:0.919987pt;}
.ls0_c00151{letter-spacing:1.108166pt;}
.lsb_c00151{letter-spacing:1.498464pt;}
.ls7_c00151{letter-spacing:1.758310pt;}
.ls10_c00151{letter-spacing:2.032800pt;}
.lsa_c00151{letter-spacing:2.230272pt;}
.lsd_c00151{letter-spacing:2.453299pt;}
.lsc_c00151{letter-spacing:2.766931pt;}
.ls12_c00151{letter-spacing:3.150400pt;}
.ls4_c00151{letter-spacing:3.484800pt;}
.ls2_c00151{letter-spacing:3.784000pt;}
.lsf_c00151{letter-spacing:3.942400pt;}
.ls8_c00151{letter-spacing:44.352176pt;}
.lse_c00151{letter-spacing:53.222576pt;}
.ls5_c00151{letter-spacing:60.825776pt;}
.ws0_c00151{word-spacing:-17.424000pt;}
.ws3_c00151{word-spacing:-3.206368pt;}
.ws5_c00151{word-spacing:-2.927232pt;}
.ws2_c00151{word-spacing:-1.951488pt;}
.ws6_c00151{word-spacing:0.000000pt;}
.ws1_c00151{word-spacing:1.811392pt;}
.ws4_c00151{word-spacing:3.205312pt;}
._14_c00151{margin-left:-11.708928pt;}
._10_c00151{margin-left:-2.509760pt;}
._d_c00151{margin-left:-1.115136pt;}
._8_c00151{width:3.902976pt;}
._c_c00151{width:5.784768pt;}
._3_c00151{width:7.318080pt;}
._e_c00151{width:8.851392pt;}
._7_c00151{width:10.594144pt;}
._11_c00151{width:14.287680pt;}
._0_c00151{width:15.418392pt;}
._6_c00151{width:18.539136pt;}
._2_c00151{width:19.793664pt;}
._a_c00151{width:21.884544pt;}
._13_c00151{width:25.717824pt;}
._5_c00151{width:27.808704pt;}
._9_c00151{width:28.730240pt;}
._12_c00151{width:31.407552pt;}
._b_c00151{width:32.778944pt;}
._4_c00151{width:33.998976pt;}
._f_c00151{width:36.006784pt;}
._1_c00151{width:41.068226pt;}
.fs0_c00151{font-size:19.712000pt;}
.fsc_c00151{font-size:20.592000pt;}
.fsd_c00151{font-size:20.768000pt;}
.fs14_c00151{font-size:24.640000pt;}
.fs11_c00151{font-size:25.344000pt;}
.fs7_c00151{font-size:29.568000pt;}
.fs13_c00151{font-size:34.496000pt;}
.fs1_c00151{font-size:34.848000pt;}
.fs6_c00151{font-size:35.200000pt;}
.fs10_c00151{font-size:40.656000pt;}
.fs4_c00151{font-size:42.592176pt;}
.fsa_c00151{font-size:44.352176pt;}
.fs8_c00151{font-size:46.464000pt;}
.fsf_c00151{font-size:47.872176pt;}
.fse_c00151{font-size:53.222576pt;}
.fsb_c00151{font-size:58.960000pt;}
.fs5_c00151{font-size:60.825776pt;}
.fs12_c00151{font-size:63.008000pt;}
.fs3_c00151{font-size:69.696000pt;}
.fs2_c00151{font-size:75.680000pt;}
.fs9_c00151{font-size:78.848000pt;}
.y0_c00151{bottom:0.000000pt;}
.y2a_c00151{bottom:8.470920pt;}
.y29_c00151{bottom:41.418120pt;}
.y28_c00151{bottom:49.021320pt;}
.y1_c00151{bottom:68.000000pt;}
.y27_c00151{bottom:86.091320pt;}
.y26_c00151{bottom:127.270920pt;}
.y25_c00151{bottom:165.924920pt;}
.y24_c00151{bottom:176.374920pt;}
.y23_c00151{bottom:181.448120pt;}
.y22_c00151{bottom:210.910520pt;}
.y21_c00151{bottom:239.422520pt;}
.y20_c00151{bottom:268.246920pt;}
.y1f_c00151{bottom:281.235720pt;}
.y1e_c00151{bottom:289.472520pt;}
.y1d_c00151{bottom:297.392520pt;}
.y1c_c00151{bottom:326.542520pt;}
.y1b_c00151{bottom:336.046520pt;}
.y1a_c00151{bottom:355.366920pt;}
.y19_c00151{bottom:385.467320pt;}
.y18_c00151{bottom:413.974920pt;}
.y17_c00151{bottom:442.486920pt;}
.y16_c00151{bottom:500.778120pt;}
.y15_c00151{bottom:529.606920pt;}
.y14_c00151{bottom:558.123320pt;}
.y13_c00151{bottom:587.581320pt;}
.y12_c00151{bottom:616.097720pt;}
.y11_c00151{bottom:644.605320pt;}
.y10_c00151{bottom:673.750920pt;}
.yf_c00151{bottom:695.926920pt;}
.ye_c00151{bottom:701.312520pt;}
.yc_c00151{bottom:703.217720pt;}
.yd_c00151{bottom:703.846920pt;}
.yb_c00151{bottom:715.572920pt;}
.ya_c00151{bottom:731.412920pt;}
.y9_c00151{bottom:743.446920pt;}
.y8_c00151{bottom:761.192120pt;}
.y7_c00151{bottom:790.654520pt;}
.y6_c00151{bottom:819.166520pt;}
.y5_c00151{bottom:950.317320pt;}
.y4_c00151{bottom:960.454920pt;}
.y2_c00151{bottom:971.226120pt;}
.y3_c00151{bottom:980.730120pt;}
.h2_c00151{height:20.559000pt;}
.hd_c00151{height:21.476813pt;}
.he_c00151{height:21.660375pt;}
.h15_c00151{height:25.698750pt;}
.h12_c00151{height:26.433000pt;}
.hb_c00151{height:29.538549pt;}
.h8_c00151{height:30.838500pt;}
.h3_c00151{height:34.201406pt;}
.hf_c00151{height:35.446236pt;}
.h14_c00151{height:35.978250pt;}
.h7_c00151{height:36.712500pt;}
.h6_c00151{height:40.509967pt;}
.h11_c00151{height:40.973625pt;}
.h9_c00151{height:45.601875pt;}
.h10_c00151{height:48.246177pt;}
.hc_c00151{height:61.493438pt;}
.h13_c00151{height:61.838906pt;}
.h5_c00151{height:68.402813pt;}
.h4_c00151{height:74.275781pt;}
.ha_c00151{height:77.385000pt;}
.h1_c00151{height:986.666667pt;}
.h0_c00151{height:1122.666667pt;}
.w1_c00151{width:689.333333pt;}
.w0_c00151{width:793.333333pt;}
.x0_c00151{left:0.000000pt;}
.x2_c00151{left:42.364653pt;}
.x1_c00151{left:52.000000pt;}
.x44_c00151{left:65.821053pt;}
.x1e_c00151{left:67.105853pt;}
.x12_c00151{left:68.109053pt;}
.x79_c00151{left:69.587453pt;}
.x7f_c00151{left:82.536653pt;}
.x25_c00151{left:87.557053pt;}
.x2f_c00151{left:96.511053pt;}
.x7a_c00151{left:98.627453pt;}
.x26_c00151{left:106.164653pt;}
.x13_c00151{left:107.827853pt;}
.x58_c00151{left:114.348653pt;}
.x6_c00151{left:116.473853pt;}
.x45_c00151{left:124.512653pt;}
.x30_c00151{left:126.017453pt;}
.x4d_c00151{left:134.650253pt;}
.x27_c00151{left:135.847053pt;}
.x81_c00151{left:143.107053pt;}
.x14_c00151{left:145.078253pt;}
.x7_c00151{left:146.437853pt;}
.x31_c00151{left:155.352253pt;}
.x60_c00151{left:163.804653pt;}
.x32_c00151{left:164.768253pt;}
.x5e_c00151{left:165.797853pt;}
.x51_c00151{left:173.273453pt;}
.x65_c00151{left:174.822253pt;}
.x15_c00151{left:175.816653pt;}
.x46_c00151{left:183.367053pt;}
.x3b_c00151{left:184.480253pt;}
.x16_c00151{left:188.801053pt;}
.x3a_c00151{left:193.729053pt;}
.x4e_c00151{left:194.917053pt;}
.x28_c00151{left:195.876253pt;}
.x52_c00151{left:203.853453pt;}
.x73_c00151{left:205.384653pt;}
.x6f_c00151{left:213.507053pt;}
.x29_c00151{left:214.730253pt;}
.x8_c00151{left:216.151453pt;}
.x5c_c00151{left:223.618253pt;}
.x3c_c00151{left:224.700653pt;}
.x1f_c00151{left:225.677453pt;}
.x53_c00151{left:234.235453pt;}
.x17_c00151{left:235.216653pt;}
.x3d_c00151{left:244.060653pt;}
.x9_c00151{left:245.011053pt;}
.x54_c00151{left:253.071853pt;}
.x70_c00151{left:254.541453pt;}
.x66_c00151{left:263.587853pt;}
.x18_c00151{left:264.753853pt;}
.x67_c00151{left:272.431853pt;}
.x33_c00151{left:273.844253pt;}
.x49_c00151{left:282.842253pt;}
.x7b_c00151{left:284.052253pt;}
.xa_c00151{left:285.218253pt;}
.x4a_c00151{left:292.953453pt;}
.x19_c00151{left:293.952253pt;}
.x55_c00151{left:302.787453pt;}
.x72_c00151{left:303.861053pt;}
.x3e_c00151{left:312.810653pt;}
.xb_c00151{left:314.051453pt;}
.x20_c00151{left:323.537853pt;}
.x7c_c00151{left:324.783053pt;}
.x61_c00151{left:332.760253pt;}
.x2a_c00151{left:333.723853pt;}
.x4f_c00151{left:341.459053pt;}
.x56_c00151{left:342.585453pt;}
.x6a_c00151{left:343.804253pt;}
.x59_c00151{left:352.291853pt;}
.xc_c00151{left:353.189453pt;}
.x5d_c00151{left:362.213853pt;}
.x68_c00151{left:363.467853pt;}
.x47_c00151{left:372.976253pt;}
.x24_c00151{left:381.811453pt;}
.x1a_c00151{left:382.814653pt;}
.x5a_c00151{left:391.900653pt;}
.x7d_c00151{left:399.587453pt;}
.x62_c00151{left:401.347453pt;}
.x2b_c00151{left:402.768653pt;}
.x3f_c00151{left:410.521453pt;}
.x5f_c00151{left:411.485053pt;}
.x5b_c00151{left:420.716253pt;}
.x2c_c00151{left:422.344253pt;}
.x48_c00151{left:430.457853pt;}
.xd_c00151{left:432.517053pt;}
.x75_c00151{left:433.722653pt;}
.x63_c00151{left:441.537053pt;}
.x34_c00151{left:450.609853pt;}
.x21_c00151{left:451.885853pt;}
.x1b_c00151{left:460.888253pt;}
.x40_c00151{left:470.093053pt;}
.x71_c00151{left:471.369053pt;}
.x35_c00151{left:478.906253pt;}
.x41_c00151{left:480.437453pt;}
.x22_c00151{left:481.964253pt;}
.x36_c00151{left:490.183453pt;}
.x2d_c00151{left:492.040253pt;}
.xe_c00151{left:500.985453pt;}
.x69_c00151{left:509.363053pt;}
.x6b_c00151{left:510.775453pt;}
.x37_c00151{left:518.875853pt;}
.x23_c00151{left:520.605053pt;}
.x6d_c00151{left:523.267053pt;}
.xf_c00151{left:529.039853pt;}
.x4b_c00151{left:538.227053pt;}
.x6c_c00151{left:539.208253pt;}
.x74_c00151{left:540.202653pt;}
.x38_c00151{left:548.523053pt;}
.x3_c00151{left:549.495453pt;}
.x77_c00151{left:554.955853pt;}
.x39_c00151{left:558.788253pt;}
.x10_c00151{left:560.103853pt;}
.x42_c00151{left:568.617853pt;}
.x1c_c00151{left:570.289853pt;}
.x50_c00151{left:578.737853pt;}
.x4_c00151{left:580.445053pt;}
.x4c_c00151{left:587.331053pt;}
.x43_c00151{left:588.387053pt;}
.x1d_c00151{left:599.466253pt;}
.x57_c00151{left:608.979053pt;}
.x11_c00151{left:610.250653pt;}
.x5_c00151{left:615.772653pt;}
.x2e_c00151{left:617.950653pt;}
.x6e_c00151{left:620.819453pt;}
.x64_c00151{left:621.725853pt;}
.x78_c00151{left:622.962253pt;}
.x80_c00151{left:624.643053pt;}
.x76_c00151{left:627.797853pt;}
.x7e_c00151{left:632.901853pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_02c4c90e53a672826dc80335.woff2')format("woff");}.ff1_c00152{font-family:ff1_c00152;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00152;src:url('chunks/assets/font_feba0154212fc2a1b5ceae56.woff2')format("woff");}.ff2_c00152{font-family:ff2_c00152;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00152;src:url('chunks/assets/font_10bac2993d0296c2290a7950.woff2')format("woff");}.ff3_c00152{font-family:ff3_c00152;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00152;src:url('chunks/assets/font_824844f4d9a98b991a766ef2.woff2')format("woff");}.ff4_c00152{font-family:ff4_c00152;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00152;src:url('chunks/assets/font_480c0c1c27e0d890b4358ffd.woff2')format("woff");}.ff5_c00152{font-family:ff5_c00152;line-height:0.666000;font-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_c00152{transform:matrix(0.047298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.047298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.047298,0.000000,0.000000,0.250000,0,0);}
.mb8_c00152{transform:matrix(0.191441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191441,0.000000,0.000000,0.250000,0,0);}
.mb6_c00152{transform:matrix(0.193694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193694,0.000000,0.000000,0.250000,0,0);}
.m88_c00152{transform:matrix(0.220377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220377,0.000000,0.000000,0.250000,0,0);}
.m46_c00152{transform:matrix(0.220701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220701,0.000000,0.000000,0.250000,0,0);}
.m4_c00152{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m86_c00152{transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);}
.m84_c00152{transform:matrix(0.250913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250913,0.000000,0.000000,0.250000,0,0);}
.m2e_c00152{transform:matrix(0.251185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251185,0.000000,0.000000,0.250000,0,0);}
.ma3_c00152{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.m9a_c00152{transform:matrix(0.253184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253184,0.000000,0.000000,0.250000,0,0);}
.m7c_c00152{transform:matrix(0.253804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253804,0.000000,0.000000,0.250000,0,0);}
.mc4_c00152{transform:matrix(0.254460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254460,0.000000,0.000000,0.250000,0,0);}
.ma6_c00152{transform:matrix(0.256162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256162,0.000000,0.000000,0.250000,0,0);}
.m17_c00152{transform:matrix(0.256304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256304,0.000000,0.000000,0.250000,0,0);}
.m7_c00152{transform:matrix(0.256359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256359,0.000000,0.000000,0.250000,0,0);}
.m1a_c00152{transform:matrix(0.256585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256585,0.000000,0.000000,0.250000,0,0);}
.ma4_c00152{transform:matrix(0.257794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257794,0.000000,0.000000,0.250000,0,0);}
.mbe_c00152{transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);}
.m80_c00152{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.mbb_c00152{transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);}
.m8_c00152{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m6d_c00152{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.m18_c00152{transform:matrix(0.262480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262480,0.000000,0.000000,0.250000,0,0);}
.m27_c00152{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m32_c00152{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.mc1_c00152{transform:matrix(0.265511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265511,0.000000,0.000000,0.250000,0,0);}
.m2f_c00152{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m25_c00152{transform:matrix(0.266295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266295,0.000000,0.000000,0.250000,0,0);}
.m73_c00152{transform:matrix(0.266384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266384,0.000000,0.000000,0.250000,0,0);}
.m2b_c00152{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.m64_c00152{transform:matrix(0.267040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267040,0.000000,0.000000,0.250000,0,0);}
.m50_c00152{transform:matrix(0.267324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267324,0.000000,0.000000,0.250000,0,0);}
.m3d_c00152{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m8b_c00152{transform:matrix(0.267925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267925,0.000000,0.000000,0.250000,0,0);}
.m37_c00152{transform:matrix(0.267972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267972,0.000000,0.000000,0.250000,0,0);}
.m85_c00152{transform:matrix(0.268432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268432,0.000000,0.000000,0.250000,0,0);}
.m34_c00152{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.m45_c00152{transform:matrix(0.269197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269197,0.000000,0.000000,0.250000,0,0);}
.m4e_c00152{transform:matrix(0.269295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269295,0.000000,0.000000,0.250000,0,0);}
.mb0_c00152{transform:matrix(0.270008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270008,0.000000,0.000000,0.250000,0,0);}
.m78_c00152{transform:matrix(0.270361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270361,0.000000,0.000000,0.250000,0,0);}
.m7b_c00152{transform:matrix(0.270652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270652,0.000000,0.000000,0.250000,0,0);}
.mb3_c00152{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m82_c00152{transform:matrix(0.271197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271197,0.000000,0.000000,0.250000,0,0);}
.m8d_c00152{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m9d_c00152{transform:matrix(0.272810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272810,0.000000,0.000000,0.250000,0,0);}
.m3e_c00152{transform:matrix(0.273028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273028,0.000000,0.000000,0.250000,0,0);}
.m63_c00152{transform:matrix(0.273905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273905,0.000000,0.000000,0.250000,0,0);}
.m9c_c00152{transform:matrix(0.274006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274006,0.000000,0.000000,0.250000,0,0);}
.m92_c00152{transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);}
.m33_c00152{transform:matrix(0.274295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274295,0.000000,0.000000,0.250000,0,0);}
.ma9_c00152{transform:matrix(0.275987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275987,0.000000,0.000000,0.250000,0,0);}
.m72_c00152{transform:matrix(0.276388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276388,0.000000,0.000000,0.250000,0,0);}
.m23_c00152{transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);}
.m5b_c00152{transform:matrix(0.277164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277164,0.000000,0.000000,0.250000,0,0);}
.m41_c00152{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m15_c00152{transform:matrix(0.277521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277521,0.000000,0.000000,0.250000,0,0);}
.m43_c00152{transform:matrix(0.278331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278331,0.000000,0.000000,0.250000,0,0);}
.m6b_c00152{transform:matrix(0.278426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278426,0.000000,0.000000,0.250000,0,0);}
.m56_c00152{transform:matrix(0.278536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278536,0.000000,0.000000,0.250000,0,0);}
.ma7_c00152{transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);}
.m4b_c00152{transform:matrix(0.278992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278992,0.000000,0.000000,0.250000,0,0);}
.m77_c00152{transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);}
.maf_c00152{transform:matrix(0.279975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279975,0.000000,0.000000,0.250000,0,0);}
.m65_c00152{transform:matrix(0.280224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280224,0.000000,0.000000,0.250000,0,0);}
.m7a_c00152{transform:matrix(0.280329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280329,0.000000,0.000000,0.250000,0,0);}
.mc5_c00152{transform:matrix(0.280356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280356,0.000000,0.000000,0.250000,0,0);}
.m16_c00152{transform:matrix(0.280593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280593,0.000000,0.000000,0.250000,0,0);}
.mc7_c00152{transform:matrix(0.280783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280783,0.000000,0.000000,0.250000,0,0);}
.mb5_c00152{transform:matrix(0.281043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281043,0.000000,0.000000,0.250000,0,0);}
.m13_c00152{transform:matrix(0.281216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281216,0.000000,0.000000,0.250000,0,0);}
.m31_c00152{transform:matrix(0.281417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281417,0.000000,0.000000,0.250000,0,0);}
.m3b_c00152{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.mad_c00152{transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);}
.mc2_c00152{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m54_c00152{transform:matrix(0.284871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284871,0.000000,0.000000,0.250000,0,0);}
.m1c_c00152{transform:matrix(0.284961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284961,0.000000,0.000000,0.250000,0,0);}
.mc8_c00152{transform:matrix(0.285086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285086,0.000000,0.000000,0.250000,0,0);}
.m22_c00152{transform:matrix(0.285386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285386,0.000000,0.000000,0.250000,0,0);}
.m6f_c00152{transform:matrix(0.285890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285890,0.000000,0.000000,0.250000,0,0);}
.m7f_c00152{transform:matrix(0.286308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286308,0.000000,0.000000,0.250000,0,0);}
.m68_c00152{transform:matrix(0.286375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286375,0.000000,0.000000,0.250000,0,0);}
.m9f_c00152{transform:matrix(0.286753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286753,0.000000,0.000000,0.250000,0,0);}
.m5_c00152{transform:matrix(0.287283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287283,0.000000,0.000000,0.250000,0,0);}
.m67_c00152{transform:matrix(0.287440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287440,0.000000,0.000000,0.250000,0,0);}
.m75_c00152{transform:matrix(0.287683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287683,0.000000,0.000000,0.250000,0,0);}
.mbd_c00152{transform:matrix(0.287849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287849,0.000000,0.000000,0.250000,0,0);}
.mc3_c00152{transform:matrix(0.288064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288064,0.000000,0.000000,0.250000,0,0);}
.mac_c00152{transform:matrix(0.288518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288518,0.000000,0.000000,0.250000,0,0);}
.m1f_c00152{transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);}
.m87_c00152{transform:matrix(0.289069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289069,0.000000,0.000000,0.250000,0,0);}
.m0_c00152{transform:matrix(0.289264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289264,0.000000,0.000000,0.250000,0,0);}
.m90_c00152{transform:matrix(0.289318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289318,0.000000,0.000000,0.250000,0,0);}
.m39_c00152{transform:matrix(0.289464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289464,0.000000,0.000000,0.250000,0,0);}
.maa_c00152{transform:matrix(0.289616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289616,0.000000,0.000000,0.250000,0,0);}
.m94_c00152{transform:matrix(0.290344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290344,0.000000,0.000000,0.250000,0,0);}
.mc_c00152{transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);}
.mb_c00152{transform:matrix(0.290836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290836,0.000000,0.000000,0.250000,0,0);}
.m4d_c00152{transform:matrix(0.291242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291242,0.000000,0.000000,0.250000,0,0);}
.m7e_c00152{transform:matrix(0.291407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291407,0.000000,0.000000,0.250000,0,0);}
.m70_c00152{transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);}
.m9_c00152{transform:matrix(0.293098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293098,0.000000,0.000000,0.250000,0,0);}
.m42_c00152{transform:matrix(0.293193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293193,0.000000,0.000000,0.250000,0,0);}
.m4a_c00152{transform:matrix(0.293289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293289,0.000000,0.000000,0.250000,0,0);}
.m6_c00152{transform:matrix(0.293467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293467,0.000000,0.000000,0.250000,0,0);}
.mb9_c00152{transform:matrix(0.293637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293637,0.000000,0.000000,0.250000,0,0);}
.m35_c00152{transform:matrix(0.294730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294730,0.000000,0.000000,0.250000,0,0);}
.m71_c00152{transform:matrix(0.295321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295321,0.000000,0.000000,0.250000,0,0);}
.m12_c00152{transform:matrix(0.295586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295586,0.000000,0.000000,0.250000,0,0);}
.m58_c00152{transform:matrix(0.296313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296313,0.000000,0.000000,0.250000,0,0);}
.m9b_c00152{transform:matrix(0.296467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296467,0.000000,0.000000,0.250000,0,0);}
.m79_c00152{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m93_c00152{transform:matrix(0.297111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297111,0.000000,0.000000,0.250000,0,0);}
.m5c_c00152{transform:matrix(0.297306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297306,0.000000,0.000000,0.250000,0,0);}
.m30_c00152{transform:matrix(0.298378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298378,0.000000,0.000000,0.250000,0,0);}
.mab_c00152{transform:matrix(0.298777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298777,0.000000,0.000000,0.250000,0,0);}
.ma5_c00152{transform:matrix(0.299263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299263,0.000000,0.000000,0.250000,0,0);}
.ma2_c00152{transform:matrix(0.299616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299616,0.000000,0.000000,0.250000,0,0);}
.m3f_c00152{transform:matrix(0.300548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300548,0.000000,0.000000,0.250000,0,0);}
.m26_c00152{transform:matrix(0.301057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301057,0.000000,0.000000,0.250000,0,0);}
.me_c00152{transform:matrix(0.301107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301107,0.000000,0.000000,0.250000,0,0);}
.m8c_c00152{transform:matrix(0.301157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301157,0.000000,0.000000,0.250000,0,0);}
.m4c_c00152{transform:matrix(0.301858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301858,0.000000,0.000000,0.250000,0,0);}
.m57_c00152{transform:matrix(0.301870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301870,0.000000,0.000000,0.250000,0,0);}
.m21_c00152{transform:matrix(0.301939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301939,0.000000,0.000000,0.250000,0,0);}
.m2c_c00152{transform:matrix(0.302388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302388,0.000000,0.000000,0.250000,0,0);}
.m6a_c00152{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.ma8_c00152{transform:matrix(0.302462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302462,0.000000,0.000000,0.250000,0,0);}
.m1_c00152{transform:matrix(0.302521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302521,0.000000,0.000000,0.250000,0,0);}
.m38_c00152{transform:matrix(0.302587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302587,0.000000,0.000000,0.250000,0,0);}
.m2a_c00152{transform:matrix(0.303015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303015,0.000000,0.000000,0.250000,0,0);}
.m99_c00152{transform:matrix(0.303298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303298,0.000000,0.000000,0.250000,0,0);}
.m40_c00152{transform:matrix(0.304481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304481,0.000000,0.000000,0.250000,0,0);}
.m6c_c00152{transform:matrix(0.305092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305092,0.000000,0.000000,0.250000,0,0);}
.m8a_c00152{transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);}
.mcb_c00152{transform:matrix(0.305159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305159,0.000000,0.000000,0.250000,0,0);}
.m11_c00152{transform:matrix(0.305242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305242,0.000000,0.000000,0.250000,0,0);}
.m51_c00152{transform:matrix(0.305645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305645,0.000000,0.000000,0.250000,0,0);}
.ma1_c00152{transform:matrix(0.306147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306147,0.000000,0.000000,0.250000,0,0);}
.m1d_c00152{transform:matrix(0.306584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306584,0.000000,0.000000,0.250000,0,0);}
.m83_c00152{transform:matrix(0.307048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307048,0.000000,0.000000,0.250000,0,0);}
.mc6_c00152{transform:matrix(0.308174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308174,0.000000,0.000000,0.250000,0,0);}
.m2_c00152{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m29_c00152{transform:matrix(0.308626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308626,0.000000,0.000000,0.250000,0,0);}
.m48_c00152{transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);}
.m61_c00152{transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);}
.m1b_c00152{transform:matrix(0.309645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309645,0.000000,0.000000,0.250000,0,0);}
.m5e_c00152{transform:matrix(0.310202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310202,0.000000,0.000000,0.250000,0,0);}
.ma_c00152{transform:matrix(0.310986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310986,0.000000,0.000000,0.250000,0,0);}
.m91_c00152{transform:matrix(0.311833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311833,0.000000,0.000000,0.250000,0,0);}
.m5d_c00152{transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);}
.m4f_c00152{transform:matrix(0.312735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312735,0.000000,0.000000,0.250000,0,0);}
.m20_c00152{transform:matrix(0.313648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313648,0.000000,0.000000,0.250000,0,0);}
.mba_c00152{transform:matrix(0.314287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314287,0.000000,0.000000,0.250000,0,0);}
.m89_c00152{transform:matrix(0.314388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314388,0.000000,0.000000,0.250000,0,0);}
.m60_c00152{transform:matrix(0.314681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314681,0.000000,0.000000,0.250000,0,0);}
.m3_c00152{transform:matrix(0.315100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315100,0.000000,0.000000,0.250000,0,0);}
.mca_c00152{transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);}
.m2d_c00152{transform:matrix(0.316190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316190,0.000000,0.000000,0.250000,0,0);}
.mb2_c00152{transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);}
.m62_c00152{transform:matrix(0.316453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316453,0.000000,0.000000,0.250000,0,0);}
.m14_c00152{transform:matrix(0.316831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316831,0.000000,0.000000,0.250000,0,0);}
.m69_c00152{transform:matrix(0.317662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317662,0.000000,0.000000,0.250000,0,0);}
.m47_c00152{transform:matrix(0.317968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317968,0.000000,0.000000,0.250000,0,0);}
.m10_c00152{transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);}
.mae_c00152{transform:matrix(0.318853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318853,0.000000,0.000000,0.250000,0,0);}
.mc0_c00152{transform:matrix(0.319391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319391,0.000000,0.000000,0.250000,0,0);}
.mbc_c00152{transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);}
.m76_c00152{transform:matrix(0.321274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321274,0.000000,0.000000,0.250000,0,0);}
.m6e_c00152{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.m7d_c00152{transform:matrix(0.325326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325326,0.000000,0.000000,0.250000,0,0);}
.mbf_c00152{transform:matrix(0.325583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325583,0.000000,0.000000,0.250000,0,0);}
.m1e_c00152{transform:matrix(0.325784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325784,0.000000,0.000000,0.250000,0,0);}
.ma0_c00152{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m5a_c00152{transform:matrix(0.327297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327297,0.000000,0.000000,0.250000,0,0);}
.mb1_c00152{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.m19_c00152{transform:matrix(0.327605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327605,0.000000,0.000000,0.250000,0,0);}
.m98_c00152{transform:matrix(0.328711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328711,0.000000,0.000000,0.250000,0,0);}
.m53_c00152{transform:matrix(0.330032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330032,0.000000,0.000000,0.250000,0,0);}
.m5f_c00152{transform:matrix(0.331727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331727,0.000000,0.000000,0.250000,0,0);}
.m95_c00152{transform:matrix(0.331777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331777,0.000000,0.000000,0.250000,0,0);}
.mf_c00152{transform:matrix(0.332224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332224,0.000000,0.000000,0.250000,0,0);}
.m44_c00152{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m81_c00152{transform:matrix(0.333571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333571,0.000000,0.000000,0.250000,0,0);}
.md_c00152{transform:matrix(0.335078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335078,0.000000,0.000000,0.250000,0,0);}
.m9e_c00152{transform:matrix(0.335396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335396,0.000000,0.000000,0.250000,0,0);}
.m59_c00152{transform:matrix(0.337368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337368,0.000000,0.000000,0.250000,0,0);}
.mb4_c00152{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m3c_c00152{transform:matrix(0.339287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339287,0.000000,0.000000,0.250000,0,0);}
.m36_c00152{transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);}
.m8e_c00152{transform:matrix(0.343468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343468,0.000000,0.000000,0.250000,0,0);}
.mc9_c00152{transform:matrix(0.344556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344556,0.000000,0.000000,0.250000,0,0);}
.m28_c00152{transform:matrix(0.347186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347186,0.000000,0.000000,0.250000,0,0);}
.m3a_c00152{transform:matrix(0.347369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347369,0.000000,0.000000,0.250000,0,0);}
.m66_c00152{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m49_c00152{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m8f_c00152{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m24_c00152{transform:matrix(0.362785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362785,0.000000,0.000000,0.250000,0,0);}
.m55_c00152{transform:matrix(0.363123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363123,0.000000,0.000000,0.250000,0,0);}
.m52_c00152{transform:matrix(0.367343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367343,0.000000,0.000000,0.250000,0,0);}
.m96_c00152{transform:matrix(0.383069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383069,0.000000,0.000000,0.250000,0,0);}
.m97_c00152{transform:matrix(0.385852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385852,0.000000,0.000000,0.250000,0,0);}
.m74_c00152{transform:matrix(0.414699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414699,0.000000,0.000000,0.250000,0,0);}
.v0_c00152{vertical-align:0.000000px;}
.ls9_c00152{letter-spacing:-2.744280px;}
.lse_c00152{letter-spacing:-2.438489px;}
.lsf_c00152{letter-spacing:-1.897474px;}
.lsd_c00152{letter-spacing:-1.772021px;}
.ls4_c00152{letter-spacing:0.000000px;}
.ls10_c00152{letter-spacing:0.533174px;}
.ls13_c00152{letter-spacing:1.246687px;}
.ls1_c00152{letter-spacing:1.497593px;}
.lsa_c00152{letter-spacing:1.811700px;}
.ls0_c00152{letter-spacing:2.979504px;}
.ls14_c00152{letter-spacing:3.308818px;}
.ls7_c00152{letter-spacing:3.366000px;}
.lsb_c00152{letter-spacing:3.405610px;}
.ls11_c00152{letter-spacing:3.496997px;}
.ls8_c00152{letter-spacing:3.524400px;}
.ls2_c00152{letter-spacing:3.742200px;}
.lsc_c00152{letter-spacing:3.801610px;}
.ls3_c00152{letter-spacing:3.920400px;}
.ls6_c00152{letter-spacing:4.177810px;}
.ls5_c00152{letter-spacing:4.474810px;}
.ls12_c00152{letter-spacing:52.747398px;}
.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;}
}
.ws2_c00152{word-spacing:-21.099593px;}
.ws0_c00152{word-spacing:-19.602000px;}
.ws1_c00152{word-spacing:-17.163511px;}
.ws3_c00152{word-spacing:0.000000px;}
._6_c00152{width:1.614413px;}
._0_c00152{width:7.919208px;}
._2_c00152{width:9.330552px;}
._4_c00152{width:10.843826px;}
._1_c00152{width:12.544488px;}
._3_c00152{width:23.918400px;}
._5_c00152{width:33.637032px;}
.fc0_c00152{color:transparent;}
.fs6_c00152{font-size:36.234000px;}
.fs9_c00152{font-size:52.747398px;}
.fs4_c00152{font-size:67.320000px;}
.fs7_c00152{font-size:68.112198px;}
.fs5_c00152{font-size:70.488000px;}
.fs0_c00152{font-size:74.844000px;}
.fs8_c00152{font-size:76.032198px;}
.fs1_c00152{font-size:78.408000px;}
.fs3_c00152{font-size:83.556198px;}
.fs2_c00152{font-size:89.496198px;}
.y0_c00152{bottom:0.000000px;}
.y1_c00152{bottom:76.500000px;}
.y1b_c00152{bottom:161.717535px;}
.y1a_c00152{bottom:193.793535px;}
.y19_c00152{bottom:226.220985px;}
.y18_c00152{bottom:258.301935px;}
.y17_c00152{bottom:290.372985px;}
.y16_c00152{bottom:322.810335px;}
.y15_c00152{bottom:354.881385px;}
.y14_c00152{bottom:387.318735px;}
.y13_c00152{bottom:420.107535px;}
.y12_c00152{bottom:483.190335px;}
.y11_c00152{bottom:515.261385px;}
.y10_c00152{bottom:547.342335px;}
.yf_c00152{bottom:578.344185px;}
.ye_c00152{bottom:609.350985px;}
.yd_c00152{bottom:640.714185px;}
.yb_c00152{bottom:672.438735px;}
.yc_c00152{bottom:678.141135px;}
.ya_c00152{bottom:704.509785px;}
.y9_c00152{bottom:736.590735px;}
.y8_c00152{bottom:768.305385px;}
.y7_c00152{bottom:800.029935px;}
.y6_c00152{bottom:832.100985px;}
.y5_c00152{bottom:863.825535px;}
.y4_c00152{bottom:896.614335px;}
.y3_c00152{bottom:929.403135px;}
.y2_c00152{bottom:1078.016985px;}
.hb_c00152{height:35.129767px;}
.h8_c00152{height:37.790930px;}
.h6_c00152{height:70.212656px;}
.h9_c00152{height:71.038894px;}
.h2_c00152{height:73.455293px;}
.h7_c00152{height:73.516781px;}
.ha_c00152{height:74.621444px;}
.h3_c00152{height:76.953164px;}
.h5_c00152{height:81.965040px;}
.h4_c00152{height:87.835624px;}
.h1_c00152{height:1110.000000px;}
.h0_c00152{height:1263.000000px;}
.w1_c00152{width:733.500000px;}
.w0_c00152{width:892.500000px;}
.x0_c00152{left:0.000000px;}
.x45_c00152{left:66.611685px;}
.x3_c00152{left:68.111535px;}
.xe_c00152{left:69.279735px;}
.x70_c00152{left:72.086385px;}
.x1_c00152{left:79.500000px;}
.x4e_c00152{left:89.851935px;}
.x23_c00152{left:90.980535px;}
.x3a_c00152{left:100.113285px;}
.x3f_c00152{left:101.736885px;}
.x31_c00152{left:111.592335px;}
.x4f_c00152{left:112.755585px;}
.x6e_c00152{left:114.522735px;}
.x40_c00152{left:123.081285px;}
.x64_c00152{left:124.516785px;}
.x2c_c00152{left:133.812885px;}
.x66_c00152{left:134.882085px;}
.x19_c00152{left:135.921585px;}
.x54_c00152{left:144.316785px;}
.xf_c00152{left:145.450335px;}
.x6f_c00152{left:146.484885px;}
.x41_c00152{left:155.855235px;}
.x50_c00152{left:166.923435px;}
.x67_c00152{left:168.027285px;}
.x4_c00152{left:178.333185px;}
.x32_c00152{left:180.397335px;}
.x10_c00152{left:189.386535px;}
.x3b_c00152{left:191.445735px;}
.x68_c00152{left:199.197435px;}
.x33_c00152{left:200.811135px;}
.x51_c00152{left:211.458585px;}
.x3c_c00152{left:212.527785px;}
.x55_c00152{left:221.650635px;}
.x5_c00152{left:223.709835px;}
.x59_c00152{left:224.947335px;}
.x11_c00152{left:233.936535px;}
.x1a_c00152{left:244.093935px;}
.x34_c00152{left:245.653185px;}
.x24_c00152{left:255.840285px;}
.x5a_c00152{left:266.750085px;}
.x3d_c00152{left:267.809385px;}
.x56_c00152{left:276.575835px;}
.x6_c00152{left:278.154885px;}
.x52_c00152{left:279.204285px;}
.x2d_c00152{left:288.490485px;}
.x7_c00152{left:289.544835px;}
.x69_c00152{left:290.554635px;}
.x35_c00152{left:299.860635px;}
.x46_c00152{left:300.919935px;}
.x57_c00152{left:309.681435px;}
.x62_c00152{left:310.913985px;}
.x53_c00152{left:311.933685px;}
.x1b_c00152{left:322.704885px;}
.x47_c00152{left:324.021585px;}
.x8_c00152{left:333.718635px;}
.x1c_c00152{left:342.821685px;}
.x42_c00152{left:344.098785px;}
.x60_c00152{left:355.305585px;}
.x12_c00152{left:357.691485px;}
.x36_c00152{left:366.467835px;}
.x13_c00152{left:378.362685px;}
.x48_c00152{left:388.564635px;}
.x25_c00152{left:398.771535px;}
.x5b_c00152{left:399.994185px;}
.x2e_c00152{left:410.344635px;}
.x37_c00152{left:411.433635px;}
.x6a_c00152{left:421.432635px;}
.x71_c00152{left:424.041285px;}
.x26_c00152{left:431.253435px;}
.x49_c00152{left:432.753285px;}
.x14_c00152{left:444.524385px;}
.x1d_c00152{left:446.628135px;}
.x6d_c00152{left:453.667035px;}
.x38_c00152{left:464.883735px;}
.x61_c00152{left:465.967785px;}
.x27_c00152{left:477.035985px;}
.x3e_c00152{left:487.356735px;}
.x2f_c00152{left:488.420985px;}
.x6b_c00152{left:497.504235px;}
.x15_c00152{left:498.736785px;}
.x43_c00152{left:509.260485px;}
.x1e_c00152{left:510.547485px;}
.x9_c00152{left:512.591835px;}
.x5c_c00152{left:519.967335px;}
.x4a_c00152{left:522.437385px;}
.x58_c00152{left:531.896835px;}
.x63_c00152{left:542.380935px;}
.x28_c00152{left:543.667935px;}
.x44_c00152{left:553.295685px;}
.x1f_c00152{left:554.681685px;}
.x29_c00152{left:564.660885px;}
.xa_c00152{left:575.753835px;}
.x65_c00152{left:586.084485px;}
.x30_c00152{left:587.490285px;}
.x4b_c00152{left:597.202185px;}
.x16_c00152{left:600.592935px;}
.x20_c00152{left:608.448585px;}
.xb_c00152{left:619.818735px;}
.x39_c00152{left:629.055435px;}
.x2a_c00152{left:630.995835px;}
.x5d_c00152{left:641.554185px;}
.x2_c00152{left:643.410435px;}
.x21_c00152{left:644.454885px;}
.x4c_c00152{left:652.256085px;}
.x6c_c00152{left:653.434185px;}
.x22_c00152{left:663.561885px;}
.x2b_c00152{left:664.660785px;}
.x5e_c00152{left:673.927185px;}
.xc_c00152{left:675.149835px;}
.x17_c00152{left:685.747785px;}
.x5f_c00152{left:696.538785px;}
.x4d_c00152{left:707.230785px;}
.xd_c00152{left:708.299985px;}
.x18_c00152{left:718.991985px;}
@media print{
.v0_c00152{vertical-align:0.000000pt;}
.ls9_c00152{letter-spacing:-2.439360pt;}
.lse_c00152{letter-spacing:-2.167546pt;}
.lsf_c00152{letter-spacing:-1.686643pt;}
.lsd_c00152{letter-spacing:-1.575130pt;}
.ls4_c00152{letter-spacing:0.000000pt;}
.ls10_c00152{letter-spacing:0.473933pt;}
.ls13_c00152{letter-spacing:1.108166pt;}
.ls1_c00152{letter-spacing:1.331194pt;}
.lsa_c00152{letter-spacing:1.610400pt;}
.ls0_c00152{letter-spacing:2.648448pt;}
.ls14_c00152{letter-spacing:2.941171pt;}
.ls7_c00152{letter-spacing:2.992000pt;}
.lsb_c00152{letter-spacing:3.027209pt;}
.ls11_c00152{letter-spacing:3.108442pt;}
.ls8_c00152{letter-spacing:3.132800pt;}
.ls2_c00152{letter-spacing:3.326400pt;}
.lsc_c00152{letter-spacing:3.379209pt;}
.ls3_c00152{letter-spacing:3.484800pt;}
.ls6_c00152{letter-spacing:3.713609pt;}
.ls5_c00152{letter-spacing:3.977609pt;}
.ls12_c00152{letter-spacing:46.886576pt;}
.ws2_c00152{word-spacing:-18.755194pt;}
.ws0_c00152{word-spacing:-17.424000pt;}
.ws1_c00152{word-spacing:-15.256454pt;}
.ws3_c00152{word-spacing:0.000000pt;}
._6_c00152{width:1.435034pt;}
._0_c00152{width:7.039296pt;}
._2_c00152{width:8.293824pt;}
._4_c00152{width:9.638957pt;}
._1_c00152{width:11.150656pt;}
._3_c00152{width:21.260800pt;}
._5_c00152{width:29.899584pt;}
.fs6_c00152{font-size:32.208000pt;}
.fs9_c00152{font-size:46.886576pt;}
.fs4_c00152{font-size:59.840000pt;}
.fs7_c00152{font-size:60.544176pt;}
.fs5_c00152{font-size:62.656000pt;}
.fs0_c00152{font-size:66.528000pt;}
.fs8_c00152{font-size:67.584176pt;}
.fs1_c00152{font-size:69.696000pt;}
.fs3_c00152{font-size:74.272176pt;}
.fs2_c00152{font-size:79.552176pt;}
.y0_c00152{bottom:0.000000pt;}
.y1_c00152{bottom:68.000000pt;}
.y1b_c00152{bottom:143.748920pt;}
.y1a_c00152{bottom:172.260920pt;}
.y19_c00152{bottom:201.085320pt;}
.y18_c00152{bottom:229.601720pt;}
.y17_c00152{bottom:258.109320pt;}
.y16_c00152{bottom:286.942520pt;}
.y15_c00152{bottom:315.450120pt;}
.y14_c00152{bottom:344.283320pt;}
.y13_c00152{bottom:373.428920pt;}
.y12_c00152{bottom:429.502520pt;}
.y11_c00152{bottom:458.010120pt;}
.y10_c00152{bottom:486.526520pt;}
.yf_c00152{bottom:514.083720pt;}
.ye_c00152{bottom:541.645320pt;}
.yd_c00152{bottom:569.523720pt;}
.yb_c00152{bottom:597.723320pt;}
.yc_c00152{bottom:602.792120pt;}
.ya_c00152{bottom:626.230920pt;}
.y9_c00152{bottom:654.747320pt;}
.y8_c00152{bottom:682.938120pt;}
.y7_c00152{bottom:711.137720pt;}
.y6_c00152{bottom:739.645320pt;}
.y5_c00152{bottom:767.844920pt;}
.y4_c00152{bottom:796.990520pt;}
.y3_c00152{bottom:826.136120pt;}
.y2_c00152{bottom:958.237320pt;}
.hb_c00152{height:31.226460pt;}
.h8_c00152{height:33.591938pt;}
.h6_c00152{height:62.411250pt;}
.h9_c00152{height:63.145684pt;}
.h2_c00152{height:65.293594pt;}
.h7_c00152{height:65.348250pt;}
.ha_c00152{height:66.330173pt;}
.h3_c00152{height:68.402813pt;}
.h5_c00152{height:72.857813pt;}
.h4_c00152{height:78.076110pt;}
.h1_c00152{height:986.666667pt;}
.h0_c00152{height:1122.666667pt;}
.w1_c00152{width:652.000000pt;}
.w0_c00152{width:793.333333pt;}
.x0_c00152{left:0.000000pt;}
.x45_c00152{left:59.210387pt;}
.x3_c00152{left:60.543587pt;}
.xe_c00152{left:61.581987pt;}
.x70_c00152{left:64.076787pt;}
.x1_c00152{left:70.666667pt;}
.x4e_c00152{left:79.868387pt;}
.x23_c00152{left:80.871587pt;}
.x3a_c00152{left:88.989587pt;}
.x3f_c00152{left:90.432787pt;}
.x31_c00152{left:99.193187pt;}
.x4f_c00152{left:100.227187pt;}
.x6e_c00152{left:101.797987pt;}
.x40_c00152{left:109.405587pt;}
.x64_c00152{left:110.681587pt;}
.x2c_c00152{left:118.944787pt;}
.x66_c00152{left:119.895187pt;}
.x19_c00152{left:120.819187pt;}
.x54_c00152{left:128.281587pt;}
.xf_c00152{left:129.289187pt;}
.x6f_c00152{left:130.208787pt;}
.x41_c00152{left:138.537987pt;}
.x50_c00152{left:148.376387pt;}
.x67_c00152{left:149.357587pt;}
.x4_c00152{left:158.518387pt;}
.x32_c00152{left:160.353187pt;}
.x10_c00152{left:168.343587pt;}
.x3b_c00152{left:170.173987pt;}
.x68_c00152{left:177.064387pt;}
.x33_c00152{left:178.498787pt;}
.x51_c00152{left:187.963187pt;}
.x3c_c00152{left:188.913587pt;}
.x55_c00152{left:197.022787pt;}
.x5_c00152{left:198.853187pt;}
.x59_c00152{left:199.953187pt;}
.x11_c00152{left:207.943587pt;}
.x1a_c00152{left:216.972387pt;}
.x34_c00152{left:218.358387pt;}
.x24_c00152{left:227.413587pt;}
.x5a_c00152{left:237.111187pt;}
.x3d_c00152{left:238.052787pt;}
.x56_c00152{left:245.845187pt;}
.x6_c00152{left:247.248787pt;}
.x52_c00152{left:248.181587pt;}
.x2d_c00152{left:256.435987pt;}
.x7_c00152{left:257.373187pt;}
.x69_c00152{left:258.270787pt;}
.x35_c00152{left:266.542787pt;}
.x46_c00152{left:267.484387pt;}
.x57_c00152{left:275.272387pt;}
.x62_c00152{left:276.367987pt;}
.x53_c00152{left:277.274387pt;}
.x1b_c00152{left:286.848787pt;}
.x47_c00152{left:288.019187pt;}
.x8_c00152{left:296.638787pt;}
.x1c_c00152{left:304.730387pt;}
.x42_c00152{left:305.865587pt;}
.x60_c00152{left:315.827187pt;}
.x12_c00152{left:317.947987pt;}
.x36_c00152{left:325.749187pt;}
.x13_c00152{left:336.322387pt;}
.x48_c00152{left:345.390787pt;}
.x25_c00152{left:354.463587pt;}
.x5b_c00152{left:355.550387pt;}
.x2e_c00152{left:364.750787pt;}
.x37_c00152{left:365.718787pt;}
.x6a_c00152{left:374.606787pt;}
.x71_c00152{left:376.925587pt;}
.x26_c00152{left:383.336387pt;}
.x49_c00152{left:384.669587pt;}
.x14_c00152{left:395.132787pt;}
.x1d_c00152{left:397.002787pt;}
.x6d_c00152{left:403.259587pt;}
.x38_c00152{left:413.229987pt;}
.x61_c00152{left:414.193587pt;}
.x27_c00152{left:424.031987pt;}
.x3e_c00152{left:433.205987pt;}
.x2f_c00152{left:434.151987pt;}
.x6b_c00152{left:442.225987pt;}
.x15_c00152{left:443.321587pt;}
.x43_c00152{left:452.675987pt;}
.x1e_c00152{left:453.819987pt;}
.x9_c00152{left:455.637187pt;}
.x5c_c00152{left:462.193187pt;}
.x4a_c00152{left:464.388787pt;}
.x58_c00152{left:472.797187pt;}
.x63_c00152{left:482.116387pt;}
.x28_c00152{left:483.260387pt;}
.x44_c00152{left:491.818387pt;}
.x1f_c00152{left:493.050387pt;}
.x29_c00152{left:501.920787pt;}
.xa_c00152{left:511.781187pt;}
.x65_c00152{left:520.963987pt;}
.x30_c00152{left:522.213587pt;}
.x4b_c00152{left:530.846387pt;}
.x16_c00152{left:533.860387pt;}
.x20_c00152{left:540.843187pt;}
.xb_c00152{left:550.949987pt;}
.x39_c00152{left:559.160387pt;}
.x2a_c00152{left:560.885187pt;}
.x5d_c00152{left:570.270387pt;}
.x2_c00152{left:571.920387pt;}
.x21_c00152{left:572.848787pt;}
.x4c_c00152{left:579.783187pt;}
.x6c_c00152{left:580.830387pt;}
.x22_c00152{left:589.832787pt;}
.x2b_c00152{left:590.809587pt;}
.x5e_c00152{left:599.046387pt;}
.xc_c00152{left:600.133187pt;}
.x17_c00152{left:609.553587pt;}
.x5f_c00152{left:619.145587pt;}
.x4d_c00152{left:628.649587pt;}
.xd_c00152{left:629.599987pt;}
.x18_c00152{left:639.103987pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_251365acc40153a9dfee4585.woff2')format("woff");}.ff1_c00153{font-family:ff1_c00153;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00153;src:url('chunks/assets/font_5807ddd577d309881e225753.woff2')format("woff");}.ff2_c00153{font-family:ff2_c00153;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00153;src:url('chunks/assets/font_c652b9daa268e06bd8869070.woff2')format("woff");}.ff3_c00153{font-family:ff3_c00153;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00153;src:url('chunks/assets/font_44d320c4de187ef26a2933f6.woff2')format("woff");}.ff4_c00153{font-family:ff4_c00153;line-height:0.666000;font-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_c00153{transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);}
.m61_c00153{transform:matrix(0.193585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193585,0.000000,0.000000,0.250000,0,0);}
.m30_c00153{transform:matrix(0.197709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197709,0.000000,0.000000,0.250000,0,0);}
.m5e_c00153{transform:matrix(0.211203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211203,0.000000,0.000000,0.250000,0,0);}
.m2f_c00153{transform:matrix(0.213226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213226,0.000000,0.000000,0.250000,0,0);}
.m9b_c00153{transform:matrix(0.214246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214246,0.000000,0.000000,0.250000,0,0);}
.m71_c00153{transform:matrix(0.215043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215043,0.000000,0.000000,0.250000,0,0);}
.m12_c00153{transform:matrix(0.219643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219643,0.000000,0.000000,0.250000,0,0);}
.mbb_c00153{transform:matrix(0.223187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223187,0.000000,0.000000,0.250000,0,0);}
.m72_c00153{transform:matrix(0.240834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240834,0.000000,0.000000,0.250000,0,0);}
.m89_c00153{transform:matrix(0.248355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248355,0.000000,0.000000,0.250000,0,0);}
.m0_c00153{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00153{transform:matrix(0.250496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250496,0.000000,0.000000,0.250000,0,0);}
.m19_c00153{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.m35_c00153{transform:matrix(0.252287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252287,0.000000,0.000000,0.250000,0,0);}
.m2_c00153{transform:matrix(0.254162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254162,0.000000,0.000000,0.250000,0,0);}
.m4a_c00153{transform:matrix(0.254648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254648,0.000000,0.000000,0.250000,0,0);}
.m1b_c00153{transform:matrix(0.256595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256595,0.000000,0.000000,0.250000,0,0);}
.ma3_c00153{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.md_c00153{transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);}
.mc_c00153{transform:matrix(0.259554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259554,0.000000,0.000000,0.250000,0,0);}
.ma1_c00153{transform:matrix(0.259850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259850,0.000000,0.000000,0.250000,0,0);}
.m67_c00153{transform:matrix(0.260756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260756,0.000000,0.000000,0.250000,0,0);}
.mab_c00153{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m16_c00153{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m7c_c00153{transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);}
.m9f_c00153{transform:matrix(0.264427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264427,0.000000,0.000000,0.250000,0,0);}
.m1e_c00153{transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);}
.m8d_c00153{transform:matrix(0.266187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266187,0.000000,0.000000,0.250000,0,0);}
.m36_c00153{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.mb2_c00153{transform:matrix(0.266343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266343,0.000000,0.000000,0.250000,0,0);}
.mb6_c00153{transform:matrix(0.266852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266852,0.000000,0.000000,0.250000,0,0);}
.m23_c00153{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.m4c_c00153{transform:matrix(0.267093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267093,0.000000,0.000000,0.250000,0,0);}
.m43_c00153{transform:matrix(0.267917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267917,0.000000,0.000000,0.250000,0,0);}
.m5_c00153{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m63_c00153{transform:matrix(0.268566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268566,0.000000,0.000000,0.250000,0,0);}
.mae_c00153{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.m86_c00153{transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);}
.m93_c00153{transform:matrix(0.269944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269944,0.000000,0.000000,0.250000,0,0);}
.m9_c00153{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m96_c00153{transform:matrix(0.272169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272169,0.000000,0.000000,0.250000,0,0);}
.m3d_c00153{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m29_c00153{transform:matrix(0.274161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274161,0.000000,0.000000,0.250000,0,0);}
.m68_c00153{transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);}
.m51_c00153{transform:matrix(0.275080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275080,0.000000,0.000000,0.250000,0,0);}
.m27_c00153{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m2a_c00153{transform:matrix(0.275570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275570,0.000000,0.000000,0.250000,0,0);}
.m76_c00153{transform:matrix(0.276042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276042,0.000000,0.000000,0.250000,0,0);}
.m81_c00153{transform:matrix(0.276319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276319,0.000000,0.000000,0.250000,0,0);}
.m78_c00153{transform:matrix(0.276413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276413,0.000000,0.000000,0.250000,0,0);}
.mac_c00153{transform:matrix(0.278077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278077,0.000000,0.000000,0.250000,0,0);}
.m32_c00153{transform:matrix(0.278536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278536,0.000000,0.000000,0.250000,0,0);}
.m92_c00153{transform:matrix(0.278725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278725,0.000000,0.000000,0.250000,0,0);}
.m95_c00153{transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);}
.m9a_c00153{transform:matrix(0.279987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279987,0.000000,0.000000,0.250000,0,0);}
.m42_c00153{transform:matrix(0.280174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280174,0.000000,0.000000,0.250000,0,0);}
.m7a_c00153{transform:matrix(0.280224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280224,0.000000,0.000000,0.250000,0,0);}
.m41_c00153{transform:matrix(0.280247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280247,0.000000,0.000000,0.250000,0,0);}
.m55_c00153{transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);}
.m9c_c00153{transform:matrix(0.281955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281955,0.000000,0.000000,0.250000,0,0);}
.m82_c00153{transform:matrix(0.282335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282335,0.000000,0.000000,0.250000,0,0);}
.m49_c00153{transform:matrix(0.282919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282919,0.000000,0.000000,0.250000,0,0);}
.mba_c00153{transform:matrix(0.283164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283164,0.000000,0.000000,0.250000,0,0);}
.m44_c00153{transform:matrix(0.284924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284924,0.000000,0.000000,0.250000,0,0);}
.ma9_c00153{transform:matrix(0.285030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285030,0.000000,0.000000,0.250000,0,0);}
.m18_c00153{transform:matrix(0.285217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285217,0.000000,0.000000,0.250000,0,0);}
.m37_c00153{transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);}
.mb0_c00153{transform:matrix(0.286086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286086,0.000000,0.000000,0.250000,0,0);}
.m24_c00153{transform:matrix(0.287254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287254,0.000000,0.000000,0.250000,0,0);}
.m5b_c00153{transform:matrix(0.287521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287521,0.000000,0.000000,0.250000,0,0);}
.m77_c00153{transform:matrix(0.287792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287792,0.000000,0.000000,0.250000,0,0);}
.m26_c00153{transform:matrix(0.288372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288372,0.000000,0.000000,0.250000,0,0);}
.mb9_c00153{transform:matrix(0.288441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288441,0.000000,0.000000,0.250000,0,0);}
.maf_c00153{transform:matrix(0.288489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288489,0.000000,0.000000,0.250000,0,0);}
.m5f_c00153{transform:matrix(0.288557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288557,0.000000,0.000000,0.250000,0,0);}
.m74_c00153{transform:matrix(0.289221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289221,0.000000,0.000000,0.250000,0,0);}
.m50_c00153{transform:matrix(0.290756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290756,0.000000,0.000000,0.250000,0,0);}
.mb1_c00153{transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);}
.m25_c00153{transform:matrix(0.292239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292239,0.000000,0.000000,0.250000,0,0);}
.m1_c00153{transform:matrix(0.292691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292691,0.000000,0.000000,0.250000,0,0);}
.mb5_c00153{transform:matrix(0.292897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292897,0.000000,0.000000,0.250000,0,0);}
.m90_c00153{transform:matrix(0.292979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292979,0.000000,0.000000,0.250000,0,0);}
.m6e_c00153{transform:matrix(0.293072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293072,0.000000,0.000000,0.250000,0,0);}
.m48_c00153{transform:matrix(0.293210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293210,0.000000,0.000000,0.250000,0,0);}
.m75_c00153{transform:matrix(0.293350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293350,0.000000,0.000000,0.250000,0,0);}
.m99_c00153{transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);}
.m10_c00153{transform:matrix(0.293990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293990,0.000000,0.000000,0.250000,0,0);}
.m7d_c00153{transform:matrix(0.294443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294443,0.000000,0.000000,0.250000,0,0);}
.m4f_c00153{transform:matrix(0.294562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294562,0.000000,0.000000,0.250000,0,0);}
.m7b_c00153{transform:matrix(0.294655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294655,0.000000,0.000000,0.250000,0,0);}
.m9d_c00153{transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);}
.m33_c00153{transform:matrix(0.295384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295384,0.000000,0.000000,0.250000,0,0);}
.m56_c00153{transform:matrix(0.295694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295694,0.000000,0.000000,0.250000,0,0);}
.m97_c00153{transform:matrix(0.295814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295814,0.000000,0.000000,0.250000,0,0);}
.mad_c00153{transform:matrix(0.295941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295941,0.000000,0.000000,0.250000,0,0);}
.m4b_c00153{transform:matrix(0.296485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296485,0.000000,0.000000,0.250000,0,0);}
.m4d_c00153{transform:matrix(0.296664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296664,0.000000,0.000000,0.250000,0,0);}
.m79_c00153{transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);}
.m45_c00153{transform:matrix(0.296988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296988,0.000000,0.000000,0.250000,0,0);}
.m22_c00153{transform:matrix(0.297295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297295,0.000000,0.000000,0.250000,0,0);}
.m8c_c00153{transform:matrix(0.298042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298042,0.000000,0.000000,0.250000,0,0);}
.m4_c00153{transform:matrix(0.299176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299176,0.000000,0.000000,0.250000,0,0);}
.mbc_c00153{transform:matrix(0.299395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299395,0.000000,0.000000,0.250000,0,0);}
.m3a_c00153{transform:matrix(0.300360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300360,0.000000,0.000000,0.250000,0,0);}
.m52_c00153{transform:matrix(0.300709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300709,0.000000,0.000000,0.250000,0,0);}
.m7_c00153{transform:matrix(0.300736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300736,0.000000,0.000000,0.250000,0,0);}
.m98_c00153{transform:matrix(0.301295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301295,0.000000,0.000000,0.250000,0,0);}
.m2c_c00153{transform:matrix(0.301381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301381,0.000000,0.000000,0.250000,0,0);}
.m73_c00153{transform:matrix(0.302297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302297,0.000000,0.000000,0.250000,0,0);}
.m88_c00153{transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);}
.m3b_c00153{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m1d_c00153{transform:matrix(0.302872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302872,0.000000,0.000000,0.250000,0,0);}
.m84_c00153{transform:matrix(0.303160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303160,0.000000,0.000000,0.250000,0,0);}
.m6b_c00153{transform:matrix(0.303274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303274,0.000000,0.000000,0.250000,0,0);}
.m5c_c00153{transform:matrix(0.304206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304206,0.000000,0.000000,0.250000,0,0);}
.m6_c00153{transform:matrix(0.304407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304407,0.000000,0.000000,0.250000,0,0);}
.m46_c00153{transform:matrix(0.304939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304939,0.000000,0.000000,0.250000,0,0);}
.m80_c00153{transform:matrix(0.304963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304963,0.000000,0.000000,0.250000,0,0);}
.m17_c00153{transform:matrix(0.305482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305482,0.000000,0.000000,0.250000,0,0);}
.m8_c00153{transform:matrix(0.307101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307101,0.000000,0.000000,0.250000,0,0);}
.mb8_c00153{transform:matrix(0.307242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307242,0.000000,0.000000,0.250000,0,0);}
.m39_c00153{transform:matrix(0.308269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308269,0.000000,0.000000,0.250000,0,0);}
.m7f_c00153{transform:matrix(0.308503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308503,0.000000,0.000000,0.250000,0,0);}
.m28_c00153{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m6f_c00153{transform:matrix(0.309490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309490,0.000000,0.000000,0.250000,0,0);}
.m11_c00153{transform:matrix(0.309614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309614,0.000000,0.000000,0.250000,0,0);}
.m2b_c00153{transform:matrix(0.310012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310012,0.000000,0.000000,0.250000,0,0);}
.m2d_c00153{transform:matrix(0.310079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310079,0.000000,0.000000,0.250000,0,0);}
.m87_c00153{transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);}
.m4e_c00153{transform:matrix(0.311501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311501,0.000000,0.000000,0.250000,0,0);}
.m9e_c00153{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.m14_c00153{transform:matrix(0.313041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313041,0.000000,0.000000,0.250000,0,0);}
.maa_c00153{transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);}
.mb7_c00153{transform:matrix(0.314095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314095,0.000000,0.000000,0.250000,0,0);}
.m21_c00153{transform:matrix(0.314503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314503,0.000000,0.000000,0.250000,0,0);}
.mf_c00153{transform:matrix(0.315254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315254,0.000000,0.000000,0.250000,0,0);}
.m20_c00153{transform:matrix(0.315574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315574,0.000000,0.000000,0.250000,0,0);}
.m6c_c00153{transform:matrix(0.315717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315717,0.000000,0.000000,0.250000,0,0);}
.m1f_c00153{transform:matrix(0.319176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319176,0.000000,0.000000,0.250000,0,0);}
.m1c_c00153{transform:matrix(0.319694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319694,0.000000,0.000000,0.250000,0,0);}
.m65_c00153{transform:matrix(0.320064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320064,0.000000,0.000000,0.250000,0,0);}
.m5a_c00153{transform:matrix(0.320782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320782,0.000000,0.000000,0.250000,0,0);}
.m54_c00153{transform:matrix(0.321492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321492,0.000000,0.000000,0.250000,0,0);}
.m69_c00153{transform:matrix(0.322296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322296,0.000000,0.000000,0.250000,0,0);}
.m60_c00153{transform:matrix(0.323017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323017,0.000000,0.000000,0.250000,0,0);}
.ma0_c00153{transform:matrix(0.323768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323768,0.000000,0.000000,0.250000,0,0);}
.m70_c00153{transform:matrix(0.323918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323918,0.000000,0.000000,0.250000,0,0);}
.m57_c00153{transform:matrix(0.325592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325592,0.000000,0.000000,0.250000,0,0);}
.mb_c00153{transform:matrix(0.326063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326063,0.000000,0.000000,0.250000,0,0);}
.me_c00153{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m31_c00153{transform:matrix(0.327297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327297,0.000000,0.000000,0.250000,0,0);}
.m94_c00153{transform:matrix(0.327374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327374,0.000000,0.000000,0.250000,0,0);}
.m85_c00153{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);}
.m53_c00153{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.ma5_c00153{transform:matrix(0.328093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328093,0.000000,0.000000,0.250000,0,0);}
.ma4_c00153{transform:matrix(0.328626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328626,0.000000,0.000000,0.250000,0,0);}
.ma8_c00153{transform:matrix(0.329713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329713,0.000000,0.000000,0.250000,0,0);}
.m2e_c00153{transform:matrix(0.330032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330032,0.000000,0.000000,0.250000,0,0);}
.mb3_c00153{transform:matrix(0.331601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331601,0.000000,0.000000,0.250000,0,0);}
.m13_c00153{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m3c_c00153{transform:matrix(0.333460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333460,0.000000,0.000000,0.250000,0,0);}
.m15_c00153{transform:matrix(0.334019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334019,0.000000,0.000000,0.250000,0,0);}
.m8e_c00153{transform:matrix(0.334276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334276,0.000000,0.000000,0.250000,0,0);}
.mbd_c00153{transform:matrix(0.334937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334937,0.000000,0.000000,0.250000,0,0);}
.m6a_c00153{transform:matrix(0.335900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335900,0.000000,0.000000,0.250000,0,0);}
.m8b_c00153{transform:matrix(0.336348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336348,0.000000,0.000000,0.250000,0,0);}
.m6d_c00153{transform:matrix(0.336509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336509,0.000000,0.000000,0.250000,0,0);}
.m62_c00153{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m91_c00153{transform:matrix(0.339434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339434,0.000000,0.000000,0.250000,0,0);}
.ma2_c00153{transform:matrix(0.341283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341283,0.000000,0.000000,0.250000,0,0);}
.m3f_c00153{transform:matrix(0.342616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342616,0.000000,0.000000,0.250000,0,0);}
.m38_c00153{transform:matrix(0.342665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342665,0.000000,0.000000,0.250000,0,0);}
.m3_c00153{transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);}
.m8f_c00153{transform:matrix(0.343561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343561,0.000000,0.000000,0.250000,0,0);}
.m66_c00153{transform:matrix(0.343691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343691,0.000000,0.000000,0.250000,0,0);}
.ma6_c00153{transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);}
.m40_c00153{transform:matrix(0.347469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347469,0.000000,0.000000,0.250000,0,0);}
.ma_c00153{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m59_c00153{transform:matrix(0.352224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352224,0.000000,0.000000,0.250000,0,0);}
.m1a_c00153{transform:matrix(0.355045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355045,0.000000,0.000000,0.250000,0,0);}
.m8a_c00153{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m3e_c00153{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m64_c00153{transform:matrix(0.361926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361926,0.000000,0.000000,0.250000,0,0);}
.m5d_c00153{transform:matrix(0.362785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362785,0.000000,0.000000,0.250000,0,0);}
.m83_c00153{transform:matrix(0.367117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367117,0.000000,0.000000,0.250000,0,0);}
.m47_c00153{transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);}
.m7e_c00153{transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);}
.m58_c00153{transform:matrix(0.385605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385605,0.000000,0.000000,0.250000,0,0);}
.mb4_c00153{transform:matrix(0.392339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392339,0.000000,0.000000,0.250000,0,0);}
.v0_c00153{vertical-align:0.000000px;}
.lsd_c00153{letter-spacing:-2.744280px;}
.ls10_c00153{letter-spacing:-2.550240px;}
.lsa_c00153{letter-spacing:-2.508667px;}
.lsc_c00153{letter-spacing:-1.897474px;}
.ls12_c00153{letter-spacing:-0.352836px;}
.ls6_c00153{letter-spacing:-0.180338px;}
.ls3_c00153{letter-spacing:0.000000px;}
.ls1_c00153{letter-spacing:0.188179px;}
.lse_c00153{letter-spacing:0.250906px;}
.ls11_c00153{letter-spacing:0.258746px;}
.ls14_c00153{letter-spacing:0.439085px;}
.ls8_c00153{letter-spacing:0.940896px;}
.ls9_c00153{letter-spacing:2.132698px;}
.ls0_c00153{letter-spacing:2.389662px;}
.ls13_c00153{letter-spacing:3.191206px;}
.lsf_c00153{letter-spacing:3.643200px;}
.ls4_c00153{letter-spacing:3.742200px;}
.ls5_c00153{letter-spacing:3.920400px;}
.ls2_c00153{letter-spacing:11.918016px;}
.lsb_c00153{letter-spacing:29.937798px;}
.ls7_c00153{letter-spacing:49.896198px;}
.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;}
}
.ws4_c00153{word-spacing:-22.793206px;}
.ws1_c00153{word-spacing:-21.734698px;}
.ws3_c00153{word-spacing:-19.852906px;}
.ws0_c00153{word-spacing:-19.602000px;}
.ws5_c00153{word-spacing:-0.313632px;}
.ws6_c00153{word-spacing:0.000000px;}
.ws2_c00153{word-spacing:1.254528px;}
._5_c00153{margin-left:-3.214728px;}
._11_c00153{width:2.948141px;}
._12_c00153{width:5.174928px;}
._6_c00153{width:6.429456px;}
._1_c00153{width:7.840800px;}
._0_c00153{width:10.036224px;}
._3_c00153{width:11.133540px;}
._4_c00153{width:13.560519px;}
._8_c00153{width:17.955036px;}
._f_c00153{width:21.013344px;}
._13_c00153{width:22.267872px;}
._7_c00153{width:23.679216px;}
._14_c00153{width:26.707824px;}
._c_c00153{width:30.150648px;}
._b_c00153{width:31.755240px;}
._a_c00153{width:34.035408px;}
._9_c00153{width:36.852948px;}
._e_c00153{width:38.498328px;}
._2_c00153{width:40.026888px;}
._10_c00153{width:42.732360px;}
._d_c00153{width:46.327644px;}
.fc0_c00153{color:transparent;}
.fsc_c00153{font-size:26.928000px;}
.fs0_c00153{font-size:27.720000px;}
.fs9_c00153{font-size:29.937798px;}
.fs8_c00153{font-size:34.650000px;}
.fs7_c00153{font-size:34.848000px;}
.fsd_c00153{font-size:39.600000px;}
.fs4_c00153{font-size:49.896198px;}
.fse_c00153{font-size:70.884000px;}
.fs5_c00153{font-size:71.676198px;}
.fsb_c00153{font-size:72.864000px;}
.fs1_c00153{font-size:74.844000px;}
.fs2_c00153{font-size:78.408000px;}
.fs6_c00153{font-size:79.992198px;}
.fs3_c00153{font-size:80.190000px;}
.fsa_c00153{font-size:89.892198px;}
.y0_c00153{bottom:0.000000px;}
.y1_c00153{bottom:76.500000px;}
.y1e_c00153{bottom:145.679535px;}
.y1d_c00153{bottom:175.968585px;}
.y1c_c00153{bottom:211.252185px;}
.y1b_c00153{bottom:242.976735px;}
.y1a_c00153{bottom:275.409135px;}
.y19_c00153{bottom:307.123785px;}
.y18_c00153{bottom:333.502335px;}
.y17_c00153{bottom:339.199785px;}
.y16_c00153{bottom:371.632185px;}
.y15_c00153{bottom:404.069535px;}
.y14_c00153{bottom:435.789135px;}
.y2_c00153{bottom:461.093535px;}
.y13_c00153{bottom:467.865135px;}
.y12_c00153{bottom:499.941135px;}
.y11_c00153{bottom:532.017135px;}
.y10_c00153{bottom:595.451385px;}
.yf_c00153{bottom:628.957935px;}
.ye_c00153{bottom:661.028985px;}
.yd_c00153{bottom:693.461385px;}
.yc_c00153{bottom:709.855785px;}
.yb_c00153{bottom:719.839935px;}
.ya_c00153{bottom:736.585785px;}
.y9_c00153{bottom:756.900585px;}
.y8_c00153{bottom:790.045785px;}
.y7_c00153{bottom:822.126735px;}
.y6_c00153{bottom:854.559135px;}
.y5_c00153{bottom:886.630185px;}
.y4_c00153{bottom:919.062585px;}
.y3_c00153{bottom:1080.155385px;}
.hc_c00153{height:19.938573px;}
.h2_c00153{height:28.911094px;}
.h7_c00153{height:33.230868px;}
.ha_c00153{height:34.201406px;}
.hb_c00153{height:36.138867px;}
.hf_c00153{height:41.301563px;}
.he_c00153{height:71.512031px;}
.h8_c00153{height:72.236168px;}
.h3_c00153{height:75.428719px;}
.h4_c00153{height:76.953164px;}
.h9_c00153{height:78.507968px;}
.h5_c00153{height:78.702100px;}
.h6_c00153{height:79.020563px;}
.hd_c00153{height:88.224276px;}
.h1_c00153{height:1110.000000px;}
.h0_c00153{height:1263.000000px;}
.w1_c00153{width:733.500000px;}
.w0_c00153{width:892.500000px;}
.x0_c00153{left:0.000000px;}
.x2_c00153{left:44.811885px;}
.x1_c00153{left:79.500000px;}
.x4f_c00153{left:80.511285px;}
.x4_c00153{left:81.600285px;}
.x67_c00153{left:82.827885px;}
.x33_c00153{left:101.533935px;}
.x1d_c00153{left:113.275335px;}
.x68_c00153{left:114.879135px;}
.x23_c00153{left:124.175235px;}
.x61_c00153{left:125.972085px;}
.x11_c00153{left:134.689035px;}
.x48_c00153{left:135.753285px;}
.x7b_c00153{left:136.896735px;}
.x86_c00153{left:138.411435px;}
.x24_c00153{left:146.920485px;}
.x69_c00153{left:148.083735px;}
.x35_c00153{left:156.073035px;}
.x59_c00153{left:157.181835px;}
.x50_c00153{left:159.112335px;}
.x88_c00153{left:160.151835px;}
.x5_c00153{left:168.160935px;}
.x82_c00153{left:170.522085px;}
.x12_c00153{left:179.427135px;}
.x6f_c00153{left:181.560585px;}
.x2d_c00153{left:189.569685px;}
.x49_c00153{left:191.896185px;}
.x7c_c00153{left:193.341585px;}
.x6_c00153{left:200.276535px;}
.x40_c00153{left:201.518985px;}
.x13_c00153{left:202.523835px;}
.x7f_c00153{left:203.701935px;}
.x51_c00153{left:204.810735px;}
.x70_c00153{left:214.943385px;}
.x7_c00153{left:223.140585px;}
.x44_c00153{left:225.729435px;}
.x14_c00153{left:234.842385px;}
.x47_c00153{left:236.094735px;}
.x78_c00153{left:237.856935px;}
.x25_c00153{left:246.356085px;}
.x5a_c00153{left:248.256885px;}
.x75_c00153{left:249.261735px;}
.x89_c00153{left:258.399435px;}
.x80_c00153{left:259.433985px;}
.x8_c00153{left:268.175685px;}
.x41_c00153{left:269.522085px;}
.x6a_c00153{left:270.541785px;}
.x26_c00153{left:280.248735px;}
.x15_c00153{left:291.757485px;}
.x5b_c00153{left:293.039535px;}
.x9_c00153{left:302.152485px;}
.x16_c00153{left:304.122585px;}
.x27_c00153{left:313.096935px;}
.x62_c00153{left:314.507685px;}
.x87_c00153{left:315.576885px;}
.x36_c00153{left:323.788935px;}
.x28_c00153{left:324.793785px;}
.x5c_c00153{left:326.070885px;}
.x37_c00153{left:335.154135px;}
.x71_c00153{left:336.713385px;}
.x6b_c00153{left:337.950885px;}
.x17_c00153{left:344.950185px;}
.x72_c00153{left:348.331035px;}
.x52_c00153{left:358.735935px;}
.x76_c00153{left:359.780385px;}
.x2e_c00153{left:367.779585px;}
.x38_c00153{left:369.026985px;}
.x79_c00153{left:370.239735px;}
.x39_c00153{left:379.941735px;}
.x4a_c00153{left:381.842535px;}
.x18_c00153{left:390.435735px;}
.x53_c00153{left:391.722735px;}
.xa_c00153{left:392.737485px;}
.x63_c00153{left:403.127535px;}
.x42_c00153{left:411.973185px;}
.x4b_c00153{left:414.279885px;}
.x1e_c00153{left:423.382935px;}
.xb_c00153{left:425.174835px;}
.x29_c00153{left:434.431335px;}
.x64_c00153{left:436.817235px;}
.x43_c00153{left:445.539135px;}
.xc_c00153{left:446.672685px;}
.x8a_c00153{left:448.514085px;}
.x1f_c00153{left:456.587535px;}
.x19_c00153{left:457.631985px;}
.x4c_c00153{left:458.800185px;}
.x3a_c00153{left:467.160735px;}
.x83_c00153{left:470.175285px;}
.x2a_c00153{left:479.179335px;}
.x54_c00153{left:480.956385px;}
.x20_c00153{left:490.178235px;}
.x73_c00153{left:491.420685px;}
.x77_c00153{left:492.658185px;}
.x4d_c00153{left:503.018535px;}
.x7d_c00153{left:504.102585px;}
.x3b_c00153{left:512.527485px;}
.x81_c00153{left:514.225335px;}
.x21_c00153{left:523.719435px;}
.x5d_c00153{left:525.115335px;}
.x8b_c00153{left:526.174635px;}
.xd_c00153{left:535.450935px;}
.x55_c00153{left:536.871585px;}
.x3c_c00153{left:546.098385px;}
.x5e_c00153{left:547.241835px;}
.x2f_c00153{left:556.285485px;}
.x1a_c00153{left:557.493285px;}
.xe_c00153{left:567.873435px;}
.x56_c00153{left:569.724735px;}
.x4e_c00153{left:579.446535px;}
.x65_c00153{left:581.045385px;}
.x1b_c00153{left:588.742635px;}
.x45_c00153{left:591.380985px;}
.xf_c00153{left:601.003785px;}
.x7a_c00153{left:602.478885px;}
.x3d_c00153{left:611.740335px;}
.x6c_c00153{left:612.987735px;}
.x84_c00153{left:614.249985px;}
.x57_c00153{left:624.377685px;}
.x7e_c00153{left:625.590435px;}
.x22_c00153{left:633.441135px;}
.x5f_c00153{left:635.148885px;}
.x30_c00153{left:636.940785px;}
.x3e_c00153{left:645.558735px;}
.x6d_c00153{left:646.900185px;}
.x1c_c00153{left:655.721085px;}
.x3_c00153{left:657.413985px;}
.x10_c00153{left:668.333685px;}
.x85_c00153{left:669.808785px;}
.x3f_c00153{left:677.837685px;}
.x66_c00153{left:680.273085px;}
.x2b_c00153{left:688.960335px;}
.x60_c00153{left:691.177935px;}
.x6e_c00153{left:693.697485px;}
.x34_c00153{left:698.474235px;}
.x31_c00153{left:699.518685px;}
.x58_c00153{left:701.874885px;}
.x46_c00153{left:702.963885px;}
.x2c_c00153{left:711.705585px;}
.x32_c00153{left:722.610435px;}
.x74_c00153{left:724.694385px;}
@media print{
.v0_c00153{vertical-align:0.000000pt;}
.lsd_c00153{letter-spacing:-2.439360pt;}
.ls10_c00153{letter-spacing:-2.266880pt;}
.lsa_c00153{letter-spacing:-2.229926pt;}
.lsc_c00153{letter-spacing:-1.686643pt;}
.ls12_c00153{letter-spacing:-0.313632pt;}
.ls6_c00153{letter-spacing:-0.160301pt;}
.ls3_c00153{letter-spacing:0.000000pt;}
.ls1_c00153{letter-spacing:0.167270pt;}
.lse_c00153{letter-spacing:0.223027pt;}
.ls11_c00153{letter-spacing:0.229997pt;}
.ls14_c00153{letter-spacing:0.390298pt;}
.ls8_c00153{letter-spacing:0.836352pt;}
.ls9_c00153{letter-spacing:1.895731pt;}
.ls0_c00153{letter-spacing:2.124144pt;}
.ls13_c00153{letter-spacing:2.836627pt;}
.lsf_c00153{letter-spacing:3.238400pt;}
.ls4_c00153{letter-spacing:3.326400pt;}
.ls5_c00153{letter-spacing:3.484800pt;}
.ls2_c00153{letter-spacing:10.593792pt;}
.lsb_c00153{letter-spacing:26.611376pt;}
.ls7_c00153{letter-spacing:44.352176pt;}
.ws4_c00153{word-spacing:-20.260627pt;}
.ws1_c00153{word-spacing:-19.319731pt;}
.ws3_c00153{word-spacing:-17.647027pt;}
.ws0_c00153{word-spacing:-17.424000pt;}
.ws5_c00153{word-spacing:-0.278784pt;}
.ws6_c00153{word-spacing:0.000000pt;}
.ws2_c00153{word-spacing:1.115136pt;}
._5_c00153{margin-left:-2.857536pt;}
._11_c00153{width:2.620570pt;}
._12_c00153{width:4.599936pt;}
._6_c00153{width:5.715072pt;}
._1_c00153{width:6.969600pt;}
._0_c00153{width:8.921088pt;}
._3_c00153{width:9.896480pt;}
._4_c00153{width:12.053795pt;}
._8_c00153{width:15.960032pt;}
._f_c00153{width:18.678528pt;}
._13_c00153{width:19.793664pt;}
._7_c00153{width:21.048192pt;}
._14_c00153{width:23.740288pt;}
._c_c00153{width:26.800576pt;}
._b_c00153{width:28.226880pt;}
._a_c00153{width:30.253696pt;}
._9_c00153{width:32.758176pt;}
._e_c00153{width:34.220736pt;}
._2_c00153{width:35.579456pt;}
._10_c00153{width:37.984320pt;}
._d_c00153{width:41.180128pt;}
.fsc_c00153{font-size:23.936000pt;}
.fs0_c00153{font-size:24.640000pt;}
.fs9_c00153{font-size:26.611376pt;}
.fs8_c00153{font-size:30.800000pt;}
.fs7_c00153{font-size:30.976000pt;}
.fsd_c00153{font-size:35.200000pt;}
.fs4_c00153{font-size:44.352176pt;}
.fse_c00153{font-size:63.008000pt;}
.fs5_c00153{font-size:63.712176pt;}
.fsb_c00153{font-size:64.768000pt;}
.fs1_c00153{font-size:66.528000pt;}
.fs2_c00153{font-size:69.696000pt;}
.fs6_c00153{font-size:71.104176pt;}
.fs3_c00153{font-size:71.280000pt;}
.fsa_c00153{font-size:79.904176pt;}
.y0_c00153{bottom:0.000000pt;}
.y1_c00153{bottom:68.000000pt;}
.y1e_c00153{bottom:129.492920pt;}
.y1d_c00153{bottom:156.416520pt;}
.y1c_c00153{bottom:187.779720pt;}
.y1b_c00153{bottom:215.979320pt;}
.y1a_c00153{bottom:244.808120pt;}
.y19_c00153{bottom:272.998920pt;}
.y18_c00153{bottom:296.446520pt;}
.y17_c00153{bottom:301.510920pt;}
.y16_c00153{bottom:330.339720pt;}
.y15_c00153{bottom:359.172920pt;}
.y14_c00153{bottom:387.368120pt;}
.y2_c00153{bottom:409.860920pt;}
.y13_c00153{bottom:415.880120pt;}
.y12_c00153{bottom:444.392120pt;}
.y11_c00153{bottom:472.904120pt;}
.y10_c00153{bottom:529.290120pt;}
.yf_c00153{bottom:559.073720pt;}
.ye_c00153{bottom:587.581320pt;}
.yd_c00153{bottom:616.410120pt;}
.yc_c00153{bottom:630.982920pt;}
.yb_c00153{bottom:639.857720pt;}
.ya_c00153{bottom:654.742920pt;}
.y9_c00153{bottom:672.800520pt;}
.y8_c00153{bottom:702.262920pt;}
.y7_c00153{bottom:730.779320pt;}
.y6_c00153{bottom:759.608120pt;}
.y5_c00153{bottom:788.115720pt;}
.y4_c00153{bottom:816.944520pt;}
.y3_c00153{bottom:960.138120pt;}
.hc_c00153{height:17.723176pt;}
.h2_c00153{height:25.698750pt;}
.h7_c00153{height:29.538549pt;}
.ha_c00153{height:30.401250pt;}
.hb_c00153{height:32.123438pt;}
.hf_c00153{height:36.712500pt;}
.he_c00153{height:63.566250pt;}
.h8_c00153{height:64.209927pt;}
.h3_c00153{height:67.047750pt;}
.h4_c00153{height:68.402813pt;}
.h9_c00153{height:69.784860pt;}
.h5_c00153{height:69.957422pt;}
.h6_c00153{height:70.240500pt;}
.hd_c00153{height:78.421579pt;}
.h1_c00153{height:986.666667pt;}
.h0_c00153{height:1122.666667pt;}
.w1_c00153{width:652.000000pt;}
.w0_c00153{width:793.333333pt;}
.x0_c00153{left:0.000000pt;}
.x2_c00153{left:39.832787pt;}
.x1_c00153{left:70.666667pt;}
.x4f_c00153{left:71.565587pt;}
.x4_c00153{left:72.533587pt;}
.x67_c00153{left:73.624787pt;}
.x33_c00153{left:90.252387pt;}
.x1d_c00153{left:100.689187pt;}
.x68_c00153{left:102.114787pt;}
.x23_c00153{left:110.377987pt;}
.x61_c00153{left:111.975187pt;}
.x11_c00153{left:119.723587pt;}
.x48_c00153{left:120.669587pt;}
.x7b_c00153{left:121.685987pt;}
.x86_c00153{left:123.032387pt;}
.x24_c00153{left:130.595987pt;}
.x69_c00153{left:131.629987pt;}
.x35_c00153{left:138.731587pt;}
.x59_c00153{left:139.717187pt;}
.x50_c00153{left:141.433187pt;}
.x88_c00153{left:142.357187pt;}
.x5_c00153{left:149.476387pt;}
.x82_c00153{left:151.575187pt;}
.x12_c00153{left:159.490787pt;}
.x6f_c00153{left:161.387187pt;}
.x2d_c00153{left:168.506387pt;}
.x49_c00153{left:170.574387pt;}
.x7c_c00153{left:171.859187pt;}
.x6_c00153{left:178.023587pt;}
.x40_c00153{left:179.127987pt;}
.x13_c00153{left:180.021187pt;}
.x7f_c00153{left:181.068387pt;}
.x51_c00153{left:182.053987pt;}
.x70_c00153{left:191.060787pt;}
.x7_c00153{left:198.347187pt;}
.x44_c00153{left:200.648387pt;}
.x14_c00153{left:208.748787pt;}
.x47_c00153{left:209.861987pt;}
.x78_c00153{left:211.428387pt;}
.x25_c00153{left:218.983187pt;}
.x5a_c00153{left:220.672787pt;}
.x75_c00153{left:221.565987pt;}
.x89_c00153{left:229.688387pt;}
.x80_c00153{left:230.607987pt;}
.x8_c00153{left:238.378387pt;}
.x41_c00153{left:239.575187pt;}
.x6a_c00153{left:240.481587pt;}
.x26_c00153{left:249.109987pt;}
.x15_c00153{left:259.339987pt;}
.x5b_c00153{left:260.479587pt;}
.x9_c00153{left:268.579987pt;}
.x16_c00153{left:270.331187pt;}
.x27_c00153{left:278.308387pt;}
.x62_c00153{left:279.562387pt;}
.x87_c00153{left:280.512787pt;}
.x36_c00153{left:287.812387pt;}
.x28_c00153{left:288.705587pt;}
.x5c_c00153{left:289.840787pt;}
.x37_c00153{left:297.914787pt;}
.x71_c00153{left:299.300787pt;}
.x6b_c00153{left:300.400787pt;}
.x17_c00153{left:306.622387pt;}
.x72_c00153{left:309.627587pt;}
.x52_c00153{left:318.876387pt;}
.x76_c00153{left:319.804787pt;}
.x2e_c00153{left:326.915187pt;}
.x38_c00153{left:328.023987pt;}
.x79_c00153{left:329.101987pt;}
.x39_c00153{left:337.725987pt;}
.x4a_c00153{left:339.415587pt;}
.x18_c00153{left:347.053987pt;}
.x53_c00153{left:348.197987pt;}
.xa_c00153{left:349.099987pt;}
.x63_c00153{left:358.335587pt;}
.x42_c00153{left:366.198387pt;}
.x4b_c00153{left:368.248787pt;}
.x1e_c00153{left:376.340387pt;}
.xb_c00153{left:377.933187pt;}
.x29_c00153{left:386.161187pt;}
.x64_c00153{left:388.281987pt;}
.x43_c00153{left:396.034787pt;}
.xc_c00153{left:397.042387pt;}
.x8a_c00153{left:398.679187pt;}
.x1f_c00153{left:405.855587pt;}
.x19_c00153{left:406.783987pt;}
.x4c_c00153{left:407.822387pt;}
.x3a_c00153{left:415.253987pt;}
.x83_c00153{left:417.933587pt;}
.x2a_c00153{left:425.937187pt;}
.x54_c00153{left:427.516787pt;}
.x20_c00153{left:435.713987pt;}
.x73_c00153{left:436.818387pt;}
.x77_c00153{left:437.918387pt;}
.x4d_c00153{left:447.127587pt;}
.x7d_c00153{left:448.091187pt;}
.x3b_c00153{left:455.579987pt;}
.x81_c00153{left:457.089187pt;}
.x21_c00153{left:465.528387pt;}
.x5d_c00153{left:466.769187pt;}
.x8b_c00153{left:467.710787pt;}
.xd_c00153{left:475.956387pt;}
.x55_c00153{left:477.219187pt;}
.x3c_c00153{left:485.420787pt;}
.x5e_c00153{left:486.437187pt;}
.x2f_c00153{left:494.475987pt;}
.x1a_c00153{left:495.549587pt;}
.xe_c00153{left:504.776387pt;}
.x56_c00153{left:506.421987pt;}
.x4e_c00153{left:515.063587pt;}
.x65_c00153{left:516.484787pt;}
.x1b_c00153{left:523.326787pt;}
.x45_c00153{left:525.671987pt;}
.xf_c00153{left:534.225587pt;}
.x7a_c00153{left:535.536787pt;}
.x3d_c00153{left:543.769187pt;}
.x6c_c00153{left:544.877987pt;}
.x84_c00153{left:545.999987pt;}
.x57_c00153{left:555.002387pt;}
.x7e_c00153{left:556.080387pt;}
.x22_c00153{left:563.058787pt;}
.x5f_c00153{left:564.576787pt;}
.x30_c00153{left:566.169587pt;}
.x3e_c00153{left:573.829987pt;}
.x6d_c00153{left:575.022387pt;}
.x1c_c00153{left:582.863187pt;}
.x3_c00153{left:584.367987pt;}
.x10_c00153{left:594.074387pt;}
.x85_c00153{left:595.385587pt;}
.x3f_c00153{left:602.522387pt;}
.x66_c00153{left:604.687187pt;}
.x2b_c00153{left:612.409187pt;}
.x60_c00153{left:614.380387pt;}
.x6e_c00153{left:616.619987pt;}
.x34_c00153{left:620.865987pt;}
.x31_c00153{left:621.794387pt;}
.x58_c00153{left:623.888787pt;}
.x46_c00153{left:624.856787pt;}
.x2c_c00153{left:632.627187pt;}
.x32_c00153{left:642.320387pt;}
.x74_c00153{left:644.172787pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_64046d869f4dd7646fa6f957.woff2')format("woff");}.ff1_c00154{font-family:ff1_c00154;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00154;src:url('chunks/assets/font_52e6622e1bd2930e7c760b7a.woff2')format("woff");}.ff2_c00154{font-family:ff2_c00154;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00154;src:url('chunks/assets/font_1a0a0ab87c73f0b0803b51cc.woff2')format("woff");}.ff3_c00154{font-family:ff3_c00154;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00154;src:url('chunks/assets/font_b041b39f6653fe6d1c7654aa.woff2')format("woff");}.ff4_c00154{font-family:ff4_c00154;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m9f_c00154{transform:matrix(0.066667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066667,0.000000,0.000000,0.250000,0,0);}
.ma7_c00154{transform:matrix(0.076390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076390,0.000000,0.000000,0.250000,0,0);}
.m53_c00154{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);}
.ma0_c00154{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m80_c00154{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m81_c00154{transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);}
.m9a_c00154{transform:matrix(0.195601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195601,0.000000,0.000000,0.250000,0,0);}
.ma5_c00154{transform:matrix(0.204861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204861,0.000000,0.000000,0.250000,0,0);}
.ma6_c00154{transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);}
.m7f_c00154{transform:matrix(0.210859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210859,0.000000,0.000000,0.250000,0,0);}
.mc2_c00154{transform:matrix(0.218883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218883,0.000000,0.000000,0.250000,0,0);}
.m6f_c00154{transform:matrix(0.219533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219533,0.000000,0.000000,0.250000,0,0);}
.m70_c00154{transform:matrix(0.226449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226449,0.000000,0.000000,0.250000,0,0);}
.mb7_c00154{transform:matrix(0.234313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234313,0.000000,0.000000,0.250000,0,0);}
.m11_c00154{transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);}
.m1_c00154{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00154{transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);}
.m24_c00154{transform:matrix(0.250712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250712,0.000000,0.000000,0.250000,0,0);}
.m6e_c00154{transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);}
.m42_c00154{transform:matrix(0.253164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253164,0.000000,0.000000,0.250000,0,0);}
.m45_c00154{transform:matrix(0.253487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253487,0.000000,0.000000,0.250000,0,0);}
.m0_c00154{transform:matrix(0.253770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253770,0.000000,0.000000,0.250000,0,0);}
.m59_c00154{transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);}
.m23_c00154{transform:matrix(0.254360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254360,0.000000,0.000000,0.250000,0,0);}
.m57_c00154{transform:matrix(0.254927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254927,0.000000,0.000000,0.250000,0,0);}
.m14_c00154{transform:matrix(0.255172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255172,0.000000,0.000000,0.250000,0,0);}
.m65_c00154{transform:matrix(0.255601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255601,0.000000,0.000000,0.250000,0,0);}
.ma3_c00154{transform:matrix(0.256629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256629,0.000000,0.000000,0.250000,0,0);}
.m2a_c00154{transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);}
.m10_c00154{transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);}
.m56_c00154{transform:matrix(0.258315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258315,0.000000,0.000000,0.250000,0,0);}
.m3e_c00154{transform:matrix(0.258620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258620,0.000000,0.000000,0.250000,0,0);}
.m88_c00154{transform:matrix(0.259723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259723,0.000000,0.000000,0.250000,0,0);}
.m87_c00154{transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);}
.m7d_c00154{transform:matrix(0.260619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260619,0.000000,0.000000,0.250000,0,0);}
.ma4_c00154{transform:matrix(0.260648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260648,0.000000,0.000000,0.250000,0,0);}
.m38_c00154{transform:matrix(0.260757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260757,0.000000,0.000000,0.250000,0,0);}
.mcc_c00154{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m9b_c00154{transform:matrix(0.261987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261987,0.000000,0.000000,0.250000,0,0);}
.ma8_c00154{transform:matrix(0.262611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262611,0.000000,0.000000,0.250000,0,0);}
.mb_c00154{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m2b_c00154{transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);}
.m4_c00154{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m72_c00154{transform:matrix(0.264436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264436,0.000000,0.000000,0.250000,0,0);}
.m76_c00154{transform:matrix(0.264610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264610,0.000000,0.000000,0.250000,0,0);}
.m1a_c00154{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m9_c00154{transform:matrix(0.267361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267361,0.000000,0.000000,0.250000,0,0);}
.m33_c00154{transform:matrix(0.267590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267590,0.000000,0.000000,0.250000,0,0);}
.m26_c00154{transform:matrix(0.267835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267835,0.000000,0.000000,0.250000,0,0);}
.m7_c00154{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m8f_c00154{transform:matrix(0.268484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268484,0.000000,0.000000,0.250000,0,0);}
.maf_c00154{transform:matrix(0.270199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270199,0.000000,0.000000,0.250000,0,0);}
.m8c_c00154{transform:matrix(0.270420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270420,0.000000,0.000000,0.250000,0,0);}
.m21_c00154{transform:matrix(0.270652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270652,0.000000,0.000000,0.250000,0,0);}
.m47_c00154{transform:matrix(0.270773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270773,0.000000,0.000000,0.250000,0,0);}
.m1c_c00154{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m7b_c00154{transform:matrix(0.271556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271556,0.000000,0.000000,0.250000,0,0);}
.m1d_c00154{transform:matrix(0.272107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272107,0.000000,0.000000,0.250000,0,0);}
.m5_c00154{transform:matrix(0.272293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272293,0.000000,0.000000,0.250000,0,0);}
.m4d_c00154{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m84_c00154{transform:matrix(0.272872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272872,0.000000,0.000000,0.250000,0,0);}
.m51_c00154{transform:matrix(0.273493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273493,0.000000,0.000000,0.250000,0,0);}
.md_c00154{transform:matrix(0.274047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274047,0.000000,0.000000,0.250000,0,0);}
.mc6_c00154{transform:matrix(0.274205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274205,0.000000,0.000000,0.250000,0,0);}
.mad_c00154{transform:matrix(0.275438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275438,0.000000,0.000000,0.250000,0,0);}
.m34_c00154{transform:matrix(0.275737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275737,0.000000,0.000000,0.250000,0,0);}
.ma9_c00154{transform:matrix(0.276607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276607,0.000000,0.000000,0.250000,0,0);}
.mbd_c00154{transform:matrix(0.277352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277352,0.000000,0.000000,0.250000,0,0);}
.mb5_c00154{transform:matrix(0.277360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277360,0.000000,0.000000,0.250000,0,0);}
.m73_c00154{transform:matrix(0.277939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277939,0.000000,0.000000,0.250000,0,0);}
.m99_c00154{transform:matrix(0.278005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278005,0.000000,0.000000,0.250000,0,0);}
.m93_c00154{transform:matrix(0.278485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278485,0.000000,0.000000,0.250000,0,0);}
.m46_c00154{transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);}
.mc9_c00154{transform:matrix(0.279069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279069,0.000000,0.000000,0.250000,0,0);}
.m98_c00154{transform:matrix(0.279129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279129,0.000000,0.000000,0.250000,0,0);}
.m41_c00154{transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);}
.m5d_c00154{transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);}
.m19_c00154{transform:matrix(0.279794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279794,0.000000,0.000000,0.250000,0,0);}
.m28_c00154{transform:matrix(0.279864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279864,0.000000,0.000000,0.250000,0,0);}
.m63_c00154{transform:matrix(0.280356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280356,0.000000,0.000000,0.250000,0,0);}
.m92_c00154{transform:matrix(0.280910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280910,0.000000,0.000000,0.250000,0,0);}
.mbb_c00154{transform:matrix(0.281338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281338,0.000000,0.000000,0.250000,0,0);}
.m3b_c00154{transform:matrix(0.281503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281503,0.000000,0.000000,0.250000,0,0);}
.m8_c00154{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.m40_c00154{transform:matrix(0.281766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281766,0.000000,0.000000,0.250000,0,0);}
.m54_c00154{transform:matrix(0.281783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281783,0.000000,0.000000,0.250000,0,0);}
.m3a_c00154{transform:matrix(0.282113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282113,0.000000,0.000000,0.250000,0,0);}
.m32_c00154{transform:matrix(0.282587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282587,0.000000,0.000000,0.250000,0,0);}
.m37_c00154{transform:matrix(0.283032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283032,0.000000,0.000000,0.250000,0,0);}
.mca_c00154{transform:matrix(0.283049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283049,0.000000,0.000000,0.250000,0,0);}
.mb2_c00154{transform:matrix(0.283165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283165,0.000000,0.000000,0.250000,0,0);}
.m35_c00154{transform:matrix(0.283223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283223,0.000000,0.000000,0.250000,0,0);}
.mb8_c00154{transform:matrix(0.283414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283414,0.000000,0.000000,0.250000,0,0);}
.me_c00154{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m60_c00154{transform:matrix(0.283983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283983,0.000000,0.000000,0.250000,0,0);}
.ma1_c00154{transform:matrix(0.284187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284187,0.000000,0.000000,0.250000,0,0);}
.m2d_c00154{transform:matrix(0.284614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284614,0.000000,0.000000,0.250000,0,0);}
.m90_c00154{transform:matrix(0.284987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284987,0.000000,0.000000,0.250000,0,0);}
.m6a_c00154{transform:matrix(0.285273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285273,0.000000,0.000000,0.250000,0,0);}
.m3c_c00154{transform:matrix(0.285655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285655,0.000000,0.000000,0.250000,0,0);}
.m4e_c00154{transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);}
.mae_c00154{transform:matrix(0.286141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286141,0.000000,0.000000,0.250000,0,0);}
.m8e_c00154{transform:matrix(0.286391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286391,0.000000,0.000000,0.250000,0,0);}
.m97_c00154{transform:matrix(0.286659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286659,0.000000,0.000000,0.250000,0,0);}
.m71_c00154{transform:matrix(0.287026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287026,0.000000,0.000000,0.250000,0,0);}
.m85_c00154{transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);}
.m6_c00154{transform:matrix(0.287049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287049,0.000000,0.000000,0.250000,0,0);}
.mbf_c00154{transform:matrix(0.287440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287440,0.000000,0.000000,0.250000,0,0);}
.m5e_c00154{transform:matrix(0.287521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287521,0.000000,0.000000,0.250000,0,0);}
.mc7_c00154{transform:matrix(0.287771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287771,0.000000,0.000000,0.250000,0,0);}
.m15_c00154{transform:matrix(0.288100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288100,0.000000,0.000000,0.250000,0,0);}
.m9c_c00154{transform:matrix(0.288361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288361,0.000000,0.000000,0.250000,0,0);}
.m5b_c00154{transform:matrix(0.288974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288974,0.000000,0.000000,0.250000,0,0);}
.m9e_c00154{transform:matrix(0.289299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289299,0.000000,0.000000,0.250000,0,0);}
.m55_c00154{transform:matrix(0.289410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289410,0.000000,0.000000,0.250000,0,0);}
.mcd_c00154{transform:matrix(0.289928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289928,0.000000,0.000000,0.250000,0,0);}
.m4f_c00154{transform:matrix(0.290085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290085,0.000000,0.000000,0.250000,0,0);}
.ma2_c00154{transform:matrix(0.290155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290155,0.000000,0.000000,0.250000,0,0);}
.m6d_c00154{transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);}
.m79_c00154{transform:matrix(0.290748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290748,0.000000,0.000000,0.250000,0,0);}
.mbe_c00154{transform:matrix(0.291006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291006,0.000000,0.000000,0.250000,0,0);}
.m1b_c00154{transform:matrix(0.291472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291472,0.000000,0.000000,0.250000,0,0);}
.mc0_c00154{transform:matrix(0.292174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292174,0.000000,0.000000,0.250000,0,0);}
.m3_c00154{transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);}
.mb6_c00154{transform:matrix(0.292329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292329,0.000000,0.000000,0.250000,0,0);}
.mb9_c00154{transform:matrix(0.293477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293477,0.000000,0.000000,0.250000,0,0);}
.m16_c00154{transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);}
.m49_c00154{transform:matrix(0.294116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294116,0.000000,0.000000,0.250000,0,0);}
.m94_c00154{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m6b_c00154{transform:matrix(0.297162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297162,0.000000,0.000000,0.250000,0,0);}
.mac_c00154{transform:matrix(0.297306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297306,0.000000,0.000000,0.250000,0,0);}
.mc8_c00154{transform:matrix(0.298337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298337,0.000000,0.000000,0.250000,0,0);}
.m3d_c00154{transform:matrix(0.298405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298405,0.000000,0.000000,0.250000,0,0);}
.m1f_c00154{transform:matrix(0.299153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299153,0.000000,0.000000,0.250000,0,0);}
.mbc_c00154{transform:matrix(0.299273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299273,0.000000,0.000000,0.250000,0,0);}
.m18_c00154{transform:matrix(0.299437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299437,0.000000,0.000000,0.250000,0,0);}
.m8a_c00154{transform:matrix(0.300168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300168,0.000000,0.000000,0.250000,0,0);}
.m66_c00154{transform:matrix(0.300360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300360,0.000000,0.000000,0.250000,0,0);}
.mb3_c00154{transform:matrix(0.300448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300448,0.000000,0.000000,0.250000,0,0);}
.ma_c00154{transform:matrix(0.300487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300487,0.000000,0.000000,0.250000,0,0);}
.m83_c00154{transform:matrix(0.301299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301299,0.000000,0.000000,0.250000,0,0);}
.m31_c00154{transform:matrix(0.303790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303790,0.000000,0.000000,0.250000,0,0);}
.mc_c00154{transform:matrix(0.303979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303979,0.000000,0.000000,0.250000,0,0);}
.mab_c00154{transform:matrix(0.304153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304153,0.000000,0.000000,0.250000,0,0);}
.mc3_c00154{transform:matrix(0.304299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304299,0.000000,0.000000,0.250000,0,0);}
.m5a_c00154{transform:matrix(0.304407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304407,0.000000,0.000000,0.250000,0,0);}
.m5f_c00154{transform:matrix(0.304616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304616,0.000000,0.000000,0.250000,0,0);}
.m2c_c00154{transform:matrix(0.305052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305052,0.000000,0.000000,0.250000,0,0);}
.m68_c00154{transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);}
.m95_c00154{transform:matrix(0.305149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305149,0.000000,0.000000,0.250000,0,0);}
.m27_c00154{transform:matrix(0.305232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305232,0.000000,0.000000,0.250000,0,0);}
.m25_c00154{transform:matrix(0.305331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305331,0.000000,0.000000,0.250000,0,0);}
.m91_c00154{transform:matrix(0.305559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305559,0.000000,0.000000,0.250000,0,0);}
.m13_c00154{transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);}
.m3f_c00154{transform:matrix(0.305713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305713,0.000000,0.000000,0.250000,0,0);}
.m12_c00154{transform:matrix(0.308201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308201,0.000000,0.000000,0.250000,0,0);}
.m96_c00154{transform:matrix(0.308280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308280,0.000000,0.000000,0.250000,0,0);}
.m75_c00154{transform:matrix(0.308448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308448,0.000000,0.000000,0.250000,0,0);}
.m5c_c00154{transform:matrix(0.308738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308738,0.000000,0.000000,0.250000,0,0);}
.mb0_c00154{transform:matrix(0.308782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308782,0.000000,0.000000,0.250000,0,0);}
.m2e_c00154{transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);}
.m29_c00154{transform:matrix(0.308970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308970,0.000000,0.000000,0.250000,0,0);}
.m82_c00154{transform:matrix(0.310079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310079,0.000000,0.000000,0.250000,0,0);}
.m67_c00154{transform:matrix(0.312047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312047,0.000000,0.000000,0.250000,0,0);}
.m2f_c00154{transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);}
.m7e_c00154{transform:matrix(0.314551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314551,0.000000,0.000000,0.250000,0,0);}
.mc5_c00154{transform:matrix(0.316076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316076,0.000000,0.000000,0.250000,0,0);}
.m4c_c00154{transform:matrix(0.316653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316653,0.000000,0.000000,0.250000,0,0);}
.m7c_c00154{transform:matrix(0.317350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317350,0.000000,0.000000,0.250000,0,0);}
.mcb_c00154{transform:matrix(0.317896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317896,0.000000,0.000000,0.250000,0,0);}
.mba_c00154{transform:matrix(0.317925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317925,0.000000,0.000000,0.250000,0,0);}
.m89_c00154{transform:matrix(0.318033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318033,0.000000,0.000000,0.250000,0,0);}
.m86_c00154{transform:matrix(0.319222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319222,0.000000,0.000000,0.250000,0,0);}
.mb4_c00154{transform:matrix(0.320064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320064,0.000000,0.000000,0.250000,0,0);}
.m22_c00154{transform:matrix(0.323258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323258,0.000000,0.000000,0.250000,0,0);}
.m7a_c00154{transform:matrix(0.324287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324287,0.000000,0.000000,0.250000,0,0);}
.m69_c00154{transform:matrix(0.324592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324592,0.000000,0.000000,0.250000,0,0);}
.m58_c00154{transform:matrix(0.326495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326495,0.000000,0.000000,0.250000,0,0);}
.m39_c00154{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m52_c00154{transform:matrix(0.327297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327297,0.000000,0.000000,0.250000,0,0);}
.m50_c00154{transform:matrix(0.327605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327605,0.000000,0.000000,0.250000,0,0);}
.m20_c00154{transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);}
.m8b_c00154{transform:matrix(0.331427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331427,0.000000,0.000000,0.250000,0,0);}
.m64_c00154{transform:matrix(0.332170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332170,0.000000,0.000000,0.250000,0,0);}
.mc4_c00154{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m62_c00154{transform:matrix(0.333556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333556,0.000000,0.000000,0.250000,0,0);}
.m30_c00154{transform:matrix(0.334069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334069,0.000000,0.000000,0.250000,0,0);}
.m48_c00154{transform:matrix(0.335078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335078,0.000000,0.000000,0.250000,0,0);}
.m77_c00154{transform:matrix(0.335804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335804,0.000000,0.000000,0.250000,0,0);}
.m6c_c00154{transform:matrix(0.337583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337583,0.000000,0.000000,0.250000,0,0);}
.m44_c00154{transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);}
.mf_c00154{transform:matrix(0.342511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342511,0.000000,0.000000,0.250000,0,0);}
.m4a_c00154{transform:matrix(0.345153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345153,0.000000,0.000000,0.250000,0,0);}
.m74_c00154{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m4b_c00154{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m43_c00154{transform:matrix(0.355345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355345,0.000000,0.000000,0.250000,0,0);}
.m78_c00154{transform:matrix(0.355530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355530,0.000000,0.000000,0.250000,0,0);}
.m17_c00154{transform:matrix(0.359488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359488,0.000000,0.000000,0.250000,0,0);}
.mb1_c00154{transform:matrix(0.360095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360095,0.000000,0.000000,0.250000,0,0);}
.m36_c00154{transform:matrix(0.361261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361261,0.000000,0.000000,0.250000,0,0);}
.m8d_c00154{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.mc1_c00154{transform:matrix(0.362785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362785,0.000000,0.000000,0.250000,0,0);}
.m1e_c00154{transform:matrix(0.373718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373718,0.000000,0.000000,0.250000,0,0);}
.m61_c00154{transform:matrix(0.385605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385605,0.000000,0.000000,0.250000,0,0);}
.m2_c00154{transform:matrix(0.385936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385936,0.000000,0.000000,0.250000,0,0);}
.maa_c00154{transform:matrix(0.392561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392561,0.000000,0.000000,0.250000,0,0);}
.v0_c00154{vertical-align:0.000000px;}
.ls7_c00154{letter-spacing:-2.744280px;}
.lsf_c00154{letter-spacing:-2.391444px;}
.ls8_c00154{letter-spacing:-2.164061px;}
.ls18_c00154{letter-spacing:-2.049068px;}
.lsc_c00154{letter-spacing:-1.897474px;}
.ls10_c00154{letter-spacing:-1.591682px;}
.lse_c00154{letter-spacing:-1.583842px;}
.lsb_c00154{letter-spacing:-0.180338px;}
.ls5_c00154{letter-spacing:0.000000px;}
.ls19_c00154{letter-spacing:0.533174px;}
.ls17_c00154{letter-spacing:1.364299px;}
.ls16_c00154{letter-spacing:1.677931px;}
.ls0_c00154{letter-spacing:2.226787px;}
.ls1_c00154{letter-spacing:3.144161px;}
.lsa_c00154{letter-spacing:3.246091px;}
.ls9_c00154{letter-spacing:3.551882px;}
.ls1a_c00154{letter-spacing:3.559723px;}
.ls11_c00154{letter-spacing:3.564000px;}
.ls3_c00154{letter-spacing:3.640131px;}
.ls14_c00154{letter-spacing:3.880810px;}
.ls6_c00154{letter-spacing:3.920400px;}
.ls13_c00154{letter-spacing:4.197610px;}
.ls4_c00154{letter-spacing:4.385700px;}
.ls2_c00154{letter-spacing:18.582696px;}
.ls12_c00154{letter-spacing:51.321798px;}
.ls15_c00154{letter-spacing:57.024198px;}
.lsd_c00154{letter-spacing:59.875398px;}
.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;}
}
.ws8_c00154{word-spacing:-25.568631px;}
.wsb_c00154{word-spacing:-23.161723px;}
.ws5_c00154{word-spacing:-22.746161px;}
.ws4_c00154{word-spacing:-21.828787px;}
.ws9_c00154{word-spacing:-21.279931px;}
.wsa_c00154{word-spacing:-20.966299px;}
.ws0_c00154{word-spacing:-19.602000px;}
.ws6_c00154{word-spacing:-18.018158px;}
.ws1_c00154{word-spacing:-17.437939px;}
.ws7_c00154{word-spacing:-17.210556px;}
.wsc_c00154{word-spacing:0.000000px;}
.ws2_c00154{word-spacing:1.253736px;}
.ws3_c00154{word-spacing:4.077216px;}
._3_c00154{margin-left:-12.074832px;}
._b_c00154{margin-left:-4.186987px;}
._a_c00154{margin-left:-2.430648px;}
._d_c00154{width:1.488960px;}
._7_c00154{width:2.979504px;}
._15_c00154{width:4.626468px;}
._16_c00154{width:6.507864px;}
._13_c00154{width:7.683984px;}
._14_c00154{width:8.703288px;}
._6_c00154{width:9.879408px;}
._c_c00154{width:10.976328px;}
._8_c00154{width:12.890275px;}
._10_c00154{width:15.262632px;}
._18_c00154{width:17.484984px;}
._2_c00154{width:18.504288px;}
._1_c00154{width:20.855736px;}
._19_c00154{width:22.267476px;}
._0_c00154{width:23.679216px;}
._11_c00154{width:25.090560px;}
._f_c00154{width:26.972352px;}
._4_c00154{width:29.638224px;}
._12_c00154{width:34.029072px;}
._9_c00154{width:35.220874px;}
._5_c00154{width:36.694944px;}
._17_c00154{width:38.419128px;}
._e_c00154{width:40.341708px;}
.fc0_c00154{color:transparent;}
.fs6_c00154{font-size:51.321798px;}
.fs9_c00154{font-size:57.024198px;}
.fs3_c00154{font-size:59.875398px;}
.fs2_c00154{font-size:61.776198px;}
.fsa_c00154{font-size:66.330000px;}
.fs5_c00154{font-size:71.280000px;}
.fs4_c00154{font-size:76.032198px;}
.fs8_c00154{font-size:77.616198px;}
.fs1_c00154{font-size:78.408000px;}
.fs7_c00154{font-size:83.952198px;}
.fs0_c00154{font-size:87.714000px;}
.y0_c00154{bottom:0.000000px;}
.y1_c00154{bottom:76.500000px;}
.y1b_c00154{bottom:142.471935px;}
.y1a_c00154{bottom:172.760985px;}
.y19_c00154{bottom:207.336735px;}
.y18_c00154{bottom:241.194735px;}
.y17_c00154{bottom:273.983535px;}
.y16_c00154{bottom:306.054585px;}
.y15_c00154{bottom:338.130585px;}
.y14_c00154{bottom:370.562985px;}
.y13_c00154{bottom:403.000335px;}
.y12_c00154{bottom:435.789135px;}
.y11_c00154{bottom:468.221535px;}
.y10_c00154{bottom:500.297535px;}
.yf_c00154{bottom:532.729935px;}
.ye_c00154{bottom:565.162335px;}
.yd_c00154{bottom:591.174585px;}
.yc_c00154{bottom:598.658985px;}
.yb_c00154{bottom:662.454585px;}
.ya_c00154{bottom:695.243385px;}
.y9_c00154{bottom:726.606585px;}
.y8_c00154{bottom:758.687535px;}
.y7_c00154{bottom:790.763535px;}
.y6_c00154{bottom:822.834585px;}
.y5_c00154{bottom:854.915535px;}
.y4_c00154{bottom:887.704335px;}
.y3_c00154{bottom:921.200985px;}
.y2_c00154{bottom:1086.214185px;}
.h8_c00154{height:34.180317px;}
.hc_c00154{height:37.978116px;}
.h5_c00154{height:39.877015px;}
.h4_c00154{height:60.629960px;}
.hd_c00154{height:69.180117px;}
.h7_c00154{height:69.957422px;}
.hb_c00154{height:76.176054px;}
.h3_c00154{height:76.953164px;}
.ha_c00154{height:79.020563px;}
.h6_c00154{height:79.299207px;}
.h9_c00154{height:84.608075px;}
.h2_c00154{height:86.086494px;}
.h1_c00154{height:1110.000000px;}
.h0_c00154{height:1263.000000px;}
.w1_c00154{width:733.500000px;}
.w0_c00154{width:892.500000px;}
.x0_c00154{left:0.000000px;}
.x4f_c00154{left:70.888485px;}
.x4_c00154{left:71.997285px;}
.x62_c00154{left:73.214985px;}
.x6a_c00154{left:74.402985px;}
.x1_c00154{left:79.500000px;}
.x3a_c00154{left:91.960635px;}
.x5_c00154{left:93.861435px;}
.x67_c00154{left:95.123685px;}
.x56_c00154{left:105.251385px;}
.x5f_c00154{left:107.691735px;}
.x14_c00154{left:114.413835px;}
.x29_c00154{left:116.027535px;}
.x6_c00154{left:126.689835px;}
.x66_c00154{left:127.734285px;}
.x2a_c00154{left:138.253035px;}
.x3f_c00154{left:140.480535px;}
.x22_c00154{left:148.445085px;}
.x57_c00154{left:149.494485px;}
.x44_c00154{left:151.489335px;}
.x2b_c00154{left:159.830085px;}
.x7_c00154{left:169.982535px;}
.x50_c00154{left:171.413085px;}
.x60_c00154{left:172.764435px;}
.x15_c00154{left:181.926885px;}
.x35_c00154{left:192.851535px;}
.x2c_c00154{left:194.029635px;}
.x40_c00154{left:202.766385px;}
.x16_c00154{left:204.033585px;}
.x8_c00154{left:215.398785px;}
.x23_c00154{left:226.481835px;}
.x59_c00154{left:227.536185px;}
.x2d_c00154{left:238.183635px;}
.x17_c00154{left:246.955035px;}
.x5a_c00154{left:249.608235px;}
.x36_c00154{left:259.988385px;}
.x63_c00154{left:262.681185px;}
.x41_c00154{left:271.650585px;}
.x9_c00154{left:281.362485px;}
.x47_c00154{left:282.431685px;}
.x1f_c00154{left:291.930735px;}
.x51_c00154{left:293.123685px;}
.x4b_c00154{left:304.172085px;}
.xa_c00154{left:313.285035px;}
.x52_c00154{left:315.230385px;}
.x45_c00154{left:326.239185px;}
.x4c_c00154{left:337.945935px;}
.x3b_c00154{left:347.459835px;}
.xb_c00154{left:348.697335px;}
.x68_c00154{left:349.712085px;}
.x24_c00154{left:357.780585px;}
.x18_c00154{left:358.978485px;}
.x5b_c00154{left:369.982335px;}
.x20_c00154{left:379.892235px;}
.x42_c00154{left:381.114885px;}
.x69_c00154{left:382.179135px;}
.x19_c00154{left:392.173185px;}
.x6b_c00154{left:393.262185px;}
.x37_c00154{left:403.657185px;}
.x21_c00154{left:414.279885px;}
.x5c_c00154{left:415.685685px;}
.x1a_c00154{left:424.838235px;}
.x61_c00154{left:426.268785px;}
.xc_c00154{left:436.396485px;}
.x25_c00154{left:446.182635px;}
.x3c_c00154{left:447.444885px;}
.x38_c00154{left:456.914235px;}
.xd_c00154{left:458.463585px;}
.x53_c00154{left:469.343685px;}
.x4d_c00154{left:479.327835px;}
.x2e_c00154{left:480.510885px;}
.x1b_c00154{left:490.920735px;}
.x48_c00154{left:491.989935px;}
.x2f_c00154{left:502.216635px;}
.xe_c00154{left:513.027435px;}
.x43_c00154{left:522.848235px;}
.x3d_c00154{left:524.709435px;}
.x1c_c00154{left:533.396685px;}
.x54_c00154{left:535.866735px;}
.x30_c00154{left:545.301435px;}
.xf_c00154{left:546.558735px;}
.x5d_c00154{left:547.583385px;}
.x3e_c00154{left:555.993435px;}
.x39_c00154{left:557.938785px;}
.x46_c00154{left:568.294185px;}
.x49_c00154{left:569.303985px;}
.x10_c00154{left:578.763435px;}
.x26_c00154{left:579.971235px;}
.x1d_c00154{left:589.816785px;}
.x4e_c00154{left:591.083985px;}
.x31_c00154{left:600.330585px;}
.x4a_c00154{left:601.800735px;}
.x11_c00154{left:612.269985px;}
.x55_c00154{left:614.893485px;}
.x32_c00154{left:623.318385px;}
.x12_c00154{left:634.441035px;}
.x2_c00154{left:644.474685px;}
.x33_c00154{left:645.880485px;}
.x13_c00154{left:656.686335px;}
.x1e_c00154{left:658.686135px;}
.x65_c00154{left:659.829585px;}
.x27_c00154{left:667.739685px;}
.x5e_c00154{left:676.936785px;}
.x3_c00154{left:678.104985px;}
.x28_c00154{left:689.786985px;}
.x58_c00154{left:691.163085px;}
.x34_c00154{left:700.815585px;}
.x64_c00154{left:712.220385px;}
@media print{
.v0_c00154{vertical-align:0.000000pt;}
.ls7_c00154{letter-spacing:-2.439360pt;}
.lsf_c00154{letter-spacing:-2.125728pt;}
.ls8_c00154{letter-spacing:-1.923610pt;}
.ls18_c00154{letter-spacing:-1.821393pt;}
.lsc_c00154{letter-spacing:-1.686643pt;}
.ls10_c00154{letter-spacing:-1.414829pt;}
.lse_c00154{letter-spacing:-1.407859pt;}
.lsb_c00154{letter-spacing:-0.160301pt;}
.ls5_c00154{letter-spacing:0.000000pt;}
.ls19_c00154{letter-spacing:0.473933pt;}
.ls17_c00154{letter-spacing:1.212710pt;}
.ls16_c00154{letter-spacing:1.491494pt;}
.ls0_c00154{letter-spacing:1.979366pt;}
.ls1_c00154{letter-spacing:2.794810pt;}
.lsa_c00154{letter-spacing:2.885414pt;}
.ls9_c00154{letter-spacing:3.157229pt;}
.ls1a_c00154{letter-spacing:3.164198pt;}
.ls11_c00154{letter-spacing:3.168000pt;}
.ls3_c00154{letter-spacing:3.235672pt;}
.ls14_c00154{letter-spacing:3.449609pt;}
.ls6_c00154{letter-spacing:3.484800pt;}
.ls13_c00154{letter-spacing:3.731209pt;}
.ls4_c00154{letter-spacing:3.898400pt;}
.ls2_c00154{letter-spacing:16.517952pt;}
.ls12_c00154{letter-spacing:45.619376pt;}
.ls15_c00154{letter-spacing:50.688176pt;}
.lsd_c00154{letter-spacing:53.222576pt;}
.ws8_c00154{word-spacing:-22.727672pt;}
.wsb_c00154{word-spacing:-20.588198pt;}
.ws5_c00154{word-spacing:-20.218810pt;}
.ws4_c00154{word-spacing:-19.403366pt;}
.ws9_c00154{word-spacing:-18.915494pt;}
.wsa_c00154{word-spacing:-18.636710pt;}
.ws0_c00154{word-spacing:-17.424000pt;}
.ws6_c00154{word-spacing:-16.016141pt;}
.ws1_c00154{word-spacing:-15.500390pt;}
.ws7_c00154{word-spacing:-15.298272pt;}
.wsc_c00154{word-spacing:0.000000pt;}
.ws2_c00154{word-spacing:1.114432pt;}
.ws3_c00154{word-spacing:3.624192pt;}
._3_c00154{margin-left:-10.733184pt;}
._b_c00154{margin-left:-3.721766pt;}
._a_c00154{margin-left:-2.160576pt;}
._d_c00154{width:1.323520pt;}
._7_c00154{width:2.648448pt;}
._15_c00154{width:4.112416pt;}
._16_c00154{width:5.784768pt;}
._13_c00154{width:6.830208pt;}
._14_c00154{width:7.736256pt;}
._6_c00154{width:8.781696pt;}
._c_c00154{width:9.756736pt;}
._8_c00154{width:11.458022pt;}
._10_c00154{width:13.566784pt;}
._18_c00154{width:15.542208pt;}
._2_c00154{width:16.448256pt;}
._1_c00154{width:18.538432pt;}
._19_c00154{width:19.793312pt;}
._0_c00154{width:21.048192pt;}
._11_c00154{width:22.302720pt;}
._f_c00154{width:23.975424pt;}
._4_c00154{width:26.345088pt;}
._12_c00154{width:30.248064pt;}
._9_c00154{width:31.307443pt;}
._5_c00154{width:32.617728pt;}
._17_c00154{width:34.150336pt;}
._e_c00154{width:35.859296pt;}
.fs6_c00154{font-size:45.619376pt;}
.fs9_c00154{font-size:50.688176pt;}
.fs3_c00154{font-size:53.222576pt;}
.fs2_c00154{font-size:54.912176pt;}
.fsa_c00154{font-size:58.960000pt;}
.fs5_c00154{font-size:63.360000pt;}
.fs4_c00154{font-size:67.584176pt;}
.fs8_c00154{font-size:68.992176pt;}
.fs1_c00154{font-size:69.696000pt;}
.fs7_c00154{font-size:74.624176pt;}
.fs0_c00154{font-size:77.968000pt;}
.y0_c00154{bottom:0.000000pt;}
.y1_c00154{bottom:68.000000pt;}
.y1b_c00154{bottom:126.641720pt;}
.y1a_c00154{bottom:153.565320pt;}
.y19_c00154{bottom:184.299320pt;}
.y18_c00154{bottom:214.395320pt;}
.y17_c00154{bottom:243.540920pt;}
.y16_c00154{bottom:272.048520pt;}
.y15_c00154{bottom:300.560520pt;}
.y14_c00154{bottom:329.389320pt;}
.y13_c00154{bottom:358.222520pt;}
.y12_c00154{bottom:387.368120pt;}
.y11_c00154{bottom:416.196920pt;}
.y10_c00154{bottom:444.708920pt;}
.yf_c00154{bottom:473.537720pt;}
.ye_c00154{bottom:502.366520pt;}
.yd_c00154{bottom:525.488520pt;}
.yc_c00154{bottom:532.141320pt;}
.yb_c00154{bottom:588.848520pt;}
.ya_c00154{bottom:617.994120pt;}
.y9_c00154{bottom:645.872520pt;}
.y8_c00154{bottom:674.388920pt;}
.y7_c00154{bottom:702.900920pt;}
.y6_c00154{bottom:731.408520pt;}
.y5_c00154{bottom:759.924920pt;}
.y4_c00154{bottom:789.070520pt;}
.y3_c00154{bottom:818.845320pt;}
.y2_c00154{bottom:965.523720pt;}
.h8_c00154{height:30.382504pt;}
.hc_c00154{height:33.758325pt;}
.h5_c00154{height:35.446236pt;}
.h4_c00154{height:53.893298pt;}
.hd_c00154{height:61.493438pt;}
.h7_c00154{height:62.184375pt;}
.hb_c00154{height:67.712048pt;}
.h3_c00154{height:68.402813pt;}
.ha_c00154{height:70.240500pt;}
.h6_c00154{height:70.488184pt;}
.h9_c00154{height:75.207177pt;}
.h2_c00154{height:76.521328pt;}
.h1_c00154{height:986.666667pt;}
.h0_c00154{height:1122.666667pt;}
.w1_c00154{width:652.000000pt;}
.w0_c00154{width:793.333333pt;}
.x0_c00154{left:0.000000pt;}
.x4f_c00154{left:63.011987pt;}
.x4_c00154{left:63.997587pt;}
.x62_c00154{left:65.079987pt;}
.x6a_c00154{left:66.135987pt;}
.x1_c00154{left:70.666667pt;}
.x3a_c00154{left:81.742787pt;}
.x5_c00154{left:83.432387pt;}
.x67_c00154{left:84.554387pt;}
.x56_c00154{left:93.556787pt;}
.x5f_c00154{left:95.725987pt;}
.x14_c00154{left:101.701187pt;}
.x29_c00154{left:103.135587pt;}
.x6_c00154{left:112.613187pt;}
.x66_c00154{left:113.541587pt;}
.x2a_c00154{left:122.891587pt;}
.x3f_c00154{left:124.871587pt;}
.x22_c00154{left:131.951187pt;}
.x57_c00154{left:132.883987pt;}
.x44_c00154{left:134.657187pt;}
.x2b_c00154{left:142.071187pt;}
.x7_c00154{left:151.095587pt;}
.x50_c00154{left:152.367187pt;}
.x60_c00154{left:153.568387pt;}
.x15_c00154{left:161.712787pt;}
.x35_c00154{left:171.423587pt;}
.x2c_c00154{left:172.470787pt;}
.x40_c00154{left:180.236787pt;}
.x16_c00154{left:181.363187pt;}
.x8_c00154{left:191.465587pt;}
.x23_c00154{left:201.317187pt;}
.x59_c00154{left:202.254387pt;}
.x2d_c00154{left:211.718787pt;}
.x17_c00154{left:219.515587pt;}
.x5a_c00154{left:221.873987pt;}
.x36_c00154{left:231.100787pt;}
.x63_c00154{left:233.494387pt;}
.x41_c00154{left:241.467187pt;}
.x9_c00154{left:250.099987pt;}
.x47_c00154{left:251.050387pt;}
.x1f_c00154{left:259.493987pt;}
.x51_c00154{left:260.554387pt;}
.x4b_c00154{left:270.375187pt;}
.xa_c00154{left:278.475587pt;}
.x52_c00154{left:280.204787pt;}
.x45_c00154{left:289.990387pt;}
.x4c_c00154{left:300.396387pt;}
.x3b_c00154{left:308.853187pt;}
.xb_c00154{left:309.953187pt;}
.x68_c00154{left:310.855187pt;}
.x24_c00154{left:318.027187pt;}
.x18_c00154{left:319.091987pt;}
.x5b_c00154{left:328.873187pt;}
.x20_c00154{left:337.681987pt;}
.x42_c00154{left:338.768787pt;}
.x69_c00154{left:339.714787pt;}
.x19_c00154{left:348.598387pt;}
.x6b_c00154{left:349.566387pt;}
.x37_c00154{left:358.806387pt;}
.x21_c00154{left:368.248787pt;}
.x5c_c00154{left:369.498387pt;}
.x1a_c00154{left:377.633987pt;}
.x61_c00154{left:378.905587pt;}
.xc_c00154{left:387.907987pt;}
.x25_c00154{left:396.606787pt;}
.x3c_c00154{left:397.728787pt;}
.x38_c00154{left:406.145987pt;}
.xd_c00154{left:407.523187pt;}
.x53_c00154{left:417.194387pt;}
.x4d_c00154{left:426.069187pt;}
.x2e_c00154{left:427.120787pt;}
.x1b_c00154{left:436.373987pt;}
.x48_c00154{left:437.324387pt;}
.x2f_c00154{left:446.414787pt;}
.xe_c00154{left:456.024387pt;}
.x43_c00154{left:464.753987pt;}
.x3d_c00154{left:466.408387pt;}
.x1c_c00154{left:474.130387pt;}
.x54_c00154{left:476.325987pt;}
.x30_c00154{left:484.712387pt;}
.xf_c00154{left:485.829987pt;}
.x5d_c00154{left:486.740787pt;}
.x3e_c00154{left:494.216387pt;}
.x39_c00154{left:495.945587pt;}
.x46_c00154{left:505.150387pt;}
.x49_c00154{left:506.047987pt;}
.x10_c00154{left:514.456387pt;}
.x26_c00154{left:515.529987pt;}
.x1d_c00154{left:524.281587pt;}
.x4e_c00154{left:525.407987pt;}
.x31_c00154{left:533.627187pt;}
.x4a_c00154{left:534.933987pt;}
.x11_c00154{left:544.239987pt;}
.x55_c00154{left:546.571987pt;}
.x32_c00154{left:554.060787pt;}
.x12_c00154{left:563.947587pt;}
.x2_c00154{left:572.866387pt;}
.x33_c00154{left:574.115987pt;}
.x13_c00154{left:583.721187pt;}
.x1e_c00154{left:585.498787pt;}
.x65_c00154{left:586.515187pt;}
.x27_c00154{left:593.546387pt;}
.x5e_c00154{left:601.721587pt;}
.x3_c00154{left:602.759987pt;}
.x28_c00154{left:613.143987pt;}
.x58_c00154{left:614.367187pt;}
.x34_c00154{left:622.947187pt;}
.x64_c00154{left:633.084787pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a98706a260d03255d721d2a6.woff2')format("woff");}.ff1_c00155{font-family:ff1_c00155;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00155;src:url('chunks/assets/font_a2f5908c224b5af08e2c622f.woff2')format("woff");}.ff2_c00155{font-family:ff2_c00155;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m29_c00155{transform:matrix(0.238772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238772,0.000000,0.000000,0.250000,0,0);}
.m3a_c00155{transform:matrix(0.244759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244759,0.000000,0.000000,0.250000,0,0);}
.m18_c00155{transform:matrix(0.247052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247052,0.000000,0.000000,0.250000,0,0);}
.m9b_c00155{transform:matrix(0.247509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247509,0.000000,0.000000,0.250000,0,0);}
.m2e_c00155{transform:matrix(0.249588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249588,0.000000,0.000000,0.250000,0,0);}
.m3_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);}
.m24_c00155{transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);}
.m84_c00155{transform:matrix(0.250350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250350,0.000000,0.000000,0.250000,0,0);}
.m52_c00155{transform:matrix(0.250777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250777,0.000000,0.000000,0.250000,0,0);}
.m0_c00155{transform:matrix(0.251736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251736,0.000000,0.000000,0.250000,0,0);}
.m13_c00155{transform:matrix(0.252027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252027,0.000000,0.000000,0.250000,0,0);}
.m39_c00155{transform:matrix(0.252223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252223,0.000000,0.000000,0.250000,0,0);}
.m28_c00155{transform:matrix(0.252238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252238,0.000000,0.000000,0.250000,0,0);}
.mf_c00155{transform:matrix(0.252466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252466,0.000000,0.000000,0.250000,0,0);}
.m6c_c00155{transform:matrix(0.252864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252864,0.000000,0.000000,0.250000,0,0);}
.m31_c00155{transform:matrix(0.253169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253169,0.000000,0.000000,0.250000,0,0);}
.m8d_c00155{transform:matrix(0.253998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253998,0.000000,0.000000,0.250000,0,0);}
.m51_c00155{transform:matrix(0.254880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254880,0.000000,0.000000,0.250000,0,0);}
.m34_c00155{transform:matrix(0.255255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255255,0.000000,0.000000,0.250000,0,0);}
.m46_c00155{transform:matrix(0.255597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255597,0.000000,0.000000,0.250000,0,0);}
.m14_c00155{transform:matrix(0.255906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255906,0.000000,0.000000,0.250000,0,0);}
.m3b_c00155{transform:matrix(0.255967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255967,0.000000,0.000000,0.250000,0,0);}
.m22_c00155{transform:matrix(0.256895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256895,0.000000,0.000000,0.250000,0,0);}
.m65_c00155{transform:matrix(0.258162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258162,0.000000,0.000000,0.250000,0,0);}
.m49_c00155{transform:matrix(0.258190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258190,0.000000,0.000000,0.250000,0,0);}
.m8_c00155{transform:matrix(0.258958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258958,0.000000,0.000000,0.250000,0,0);}
.m57_c00155{transform:matrix(0.259011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259011,0.000000,0.000000,0.250000,0,0);}
.m41_c00155{transform:matrix(0.259730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259730,0.000000,0.000000,0.250000,0,0);}
.m7e_c00155{transform:matrix(0.259733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259733,0.000000,0.000000,0.250000,0,0);}
.m85_c00155{transform:matrix(0.259768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259768,0.000000,0.000000,0.250000,0,0);}
.ma_c00155{transform:matrix(0.260007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260007,0.000000,0.000000,0.250000,0,0);}
.mb_c00155{transform:matrix(0.260117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260117,0.000000,0.000000,0.250000,0,0);}
.m4c_c00155{transform:matrix(0.261324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261324,0.000000,0.000000,0.250000,0,0);}
.m4a_c00155{transform:matrix(0.261424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261424,0.000000,0.000000,0.250000,0,0);}
.m2a_c00155{transform:matrix(0.261985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261985,0.000000,0.000000,0.250000,0,0);}
.m4e_c00155{transform:matrix(0.263397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263397,0.000000,0.000000,0.250000,0,0);}
.m16_c00155{transform:matrix(0.264131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264131,0.000000,0.000000,0.250000,0,0);}
.mc_c00155{transform:matrix(0.265113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265113,0.000000,0.000000,0.250000,0,0);}
.m6f_c00155{transform:matrix(0.265804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265804,0.000000,0.000000,0.250000,0,0);}
.m38_c00155{transform:matrix(0.266002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266002,0.000000,0.000000,0.250000,0,0);}
.m3f_c00155{transform:matrix(0.266314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266314,0.000000,0.000000,0.250000,0,0);}
.m2b_c00155{transform:matrix(0.267168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267168,0.000000,0.000000,0.250000,0,0);}
.m96_c00155{transform:matrix(0.268565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268565,0.000000,0.000000,0.250000,0,0);}
.m66_c00155{transform:matrix(0.268850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268850,0.000000,0.000000,0.250000,0,0);}
.m68_c00155{transform:matrix(0.269822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269822,0.000000,0.000000,0.250000,0,0);}
.m82_c00155{transform:matrix(0.270625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270625,0.000000,0.000000,0.250000,0,0);}
.m48_c00155{transform:matrix(0.270636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270636,0.000000,0.000000,0.250000,0,0);}
.m4b_c00155{transform:matrix(0.270738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270738,0.000000,0.000000,0.250000,0,0);}
.m44_c00155{transform:matrix(0.271090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271090,0.000000,0.000000,0.250000,0,0);}
.m5d_c00155{transform:matrix(0.271192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271192,0.000000,0.000000,0.250000,0,0);}
.m60_c00155{transform:matrix(0.271606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271606,0.000000,0.000000,0.250000,0,0);}
.m83_c00155{transform:matrix(0.272450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272450,0.000000,0.000000,0.250000,0,0);}
.m61_c00155{transform:matrix(0.272962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272962,0.000000,0.000000,0.250000,0,0);}
.m58_c00155{transform:matrix(0.273532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273532,0.000000,0.000000,0.250000,0,0);}
.m79_c00155{transform:matrix(0.274004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274004,0.000000,0.000000,0.250000,0,0);}
.m69_c00155{transform:matrix(0.274093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274093,0.000000,0.000000,0.250000,0,0);}
.m5e_c00155{transform:matrix(0.274159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274159,0.000000,0.000000,0.250000,0,0);}
.m94_c00155{transform:matrix(0.274656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274656,0.000000,0.000000,0.250000,0,0);}
.m75_c00155{transform:matrix(0.274703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274703,0.000000,0.000000,0.250000,0,0);}
.m8e_c00155{transform:matrix(0.275860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275860,0.000000,0.000000,0.250000,0,0);}
.m9a_c00155{transform:matrix(0.276531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276531,0.000000,0.000000,0.250000,0,0);}
.m56_c00155{transform:matrix(0.276564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276564,0.000000,0.000000,0.250000,0,0);}
.m2_c00155{transform:matrix(0.276794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276794,0.000000,0.000000,0.250000,0,0);}
.m6b_c00155{transform:matrix(0.276828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276828,0.000000,0.000000,0.250000,0,0);}
.me_c00155{transform:matrix(0.276872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276872,0.000000,0.000000,0.250000,0,0);}
.m32_c00155{transform:matrix(0.276961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276961,0.000000,0.000000,0.250000,0,0);}
.m55_c00155{transform:matrix(0.277079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277079,0.000000,0.000000,0.250000,0,0);}
.m2f_c00155{transform:matrix(0.278005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278005,0.000000,0.000000,0.250000,0,0);}
.m3d_c00155{transform:matrix(0.278936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278936,0.000000,0.000000,0.250000,0,0);}
.m67_c00155{transform:matrix(0.279790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279790,0.000000,0.000000,0.250000,0,0);}
.m7d_c00155{transform:matrix(0.279824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279824,0.000000,0.000000,0.250000,0,0);}
.m50_c00155{transform:matrix(0.280815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280815,0.000000,0.000000,0.250000,0,0);}
.m37_c00155{transform:matrix(0.281315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281315,0.000000,0.000000,0.250000,0,0);}
.m9d_c00155{transform:matrix(0.282113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282113,0.000000,0.000000,0.250000,0,0);}
.m8b_c00155{transform:matrix(0.282670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282670,0.000000,0.000000,0.250000,0,0);}
.m98_c00155{transform:matrix(0.283061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283061,0.000000,0.000000,0.250000,0,0);}
.m1a_c00155{transform:matrix(0.283881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283881,0.000000,0.000000,0.250000,0,0);}
.m70_c00155{transform:matrix(0.284454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284454,0.000000,0.000000,0.250000,0,0);}
.m20_c00155{transform:matrix(0.284901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284901,0.000000,0.000000,0.250000,0,0);}
.m11_c00155{transform:matrix(0.284928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284928,0.000000,0.000000,0.250000,0,0);}
.m62_c00155{transform:matrix(0.284942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284942,0.000000,0.000000,0.250000,0,0);}
.m7a_c00155{transform:matrix(0.285822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285822,0.000000,0.000000,0.250000,0,0);}
.m43_c00155{transform:matrix(0.286246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286246,0.000000,0.000000,0.250000,0,0);}
.m92_c00155{transform:matrix(0.286312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286312,0.000000,0.000000,0.250000,0,0);}
.m25_c00155{transform:matrix(0.286939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286939,0.000000,0.000000,0.250000,0,0);}
.m40_c00155{transform:matrix(0.286944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286944,0.000000,0.000000,0.250000,0,0);}
.m4_c00155{transform:matrix(0.287058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287058,0.000000,0.000000,0.250000,0,0);}
.m6a_c00155{transform:matrix(0.287338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287338,0.000000,0.000000,0.250000,0,0);}
.m88_c00155{transform:matrix(0.288211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288211,0.000000,0.000000,0.250000,0,0);}
.m72_c00155{transform:matrix(0.288215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288215,0.000000,0.000000,0.250000,0,0);}
.m15_c00155{transform:matrix(0.288438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288438,0.000000,0.000000,0.250000,0,0);}
.m90_c00155{transform:matrix(0.288741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288741,0.000000,0.000000,0.250000,0,0);}
.m42_c00155{transform:matrix(0.289070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289070,0.000000,0.000000,0.250000,0,0);}
.md_c00155{transform:matrix(0.289228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289228,0.000000,0.000000,0.250000,0,0);}
.m53_c00155{transform:matrix(0.289844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289844,0.000000,0.000000,0.250000,0,0);}
.m1c_c00155{transform:matrix(0.290542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290542,0.000000,0.000000,0.250000,0,0);}
.m77_c00155{transform:matrix(0.291017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291017,0.000000,0.000000,0.250000,0,0);}
.m5_c00155{transform:matrix(0.291277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291277,0.000000,0.000000,0.250000,0,0);}
.m30_c00155{transform:matrix(0.291434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291434,0.000000,0.000000,0.250000,0,0);}
.m73_c00155{transform:matrix(0.291700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291700,0.000000,0.000000,0.250000,0,0);}
.m86_c00155{transform:matrix(0.292495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292495,0.000000,0.000000,0.250000,0,0);}
.m95_c00155{transform:matrix(0.292552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292552,0.000000,0.000000,0.250000,0,0);}
.m47_c00155{transform:matrix(0.292591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292591,0.000000,0.000000,0.250000,0,0);}
.m76_c00155{transform:matrix(0.292896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292896,0.000000,0.000000,0.250000,0,0);}
.m91_c00155{transform:matrix(0.294383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294383,0.000000,0.000000,0.250000,0,0);}
.m89_c00155{transform:matrix(0.294571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294571,0.000000,0.000000,0.250000,0,0);}
.m5c_c00155{transform:matrix(0.294757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294757,0.000000,0.000000,0.250000,0,0);}
.m36_c00155{transform:matrix(0.296369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296369,0.000000,0.000000,0.250000,0,0);}
.m1e_c00155{transform:matrix(0.297385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297385,0.000000,0.000000,0.250000,0,0);}
.m21_c00155{transform:matrix(0.298407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298407,0.000000,0.000000,0.250000,0,0);}
.m19_c00155{transform:matrix(0.299128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299128,0.000000,0.000000,0.250000,0,0);}
.m23_c00155{transform:matrix(0.299206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299206,0.000000,0.000000,0.250000,0,0);}
.m63_c00155{transform:matrix(0.300088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300088,0.000000,0.000000,0.250000,0,0);}
.m8a_c00155{transform:matrix(0.300254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300254,0.000000,0.000000,0.250000,0,0);}
.m5f_c00155{transform:matrix(0.301909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301909,0.000000,0.000000,0.250000,0,0);}
.m7f_c00155{transform:matrix(0.301939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301939,0.000000,0.000000,0.250000,0,0);}
.m33_c00155{transform:matrix(0.302105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302105,0.000000,0.000000,0.250000,0,0);}
.m5b_c00155{transform:matrix(0.302533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302533,0.000000,0.000000,0.250000,0,0);}
.m27_c00155{transform:matrix(0.302692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302692,0.000000,0.000000,0.250000,0,0);}
.m10_c00155{transform:matrix(0.303608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303608,0.000000,0.000000,0.250000,0,0);}
.m59_c00155{transform:matrix(0.305333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305333,0.000000,0.000000,0.250000,0,0);}
.m87_c00155{transform:matrix(0.305714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305714,0.000000,0.000000,0.250000,0,0);}
.m64_c00155{transform:matrix(0.307606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307606,0.000000,0.000000,0.250000,0,0);}
.m1b_c00155{transform:matrix(0.308637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308637,0.000000,0.000000,0.250000,0,0);}
.m1f_c00155{transform:matrix(0.310128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310128,0.000000,0.000000,0.250000,0,0);}
.m4d_c00155{transform:matrix(0.310728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310728,0.000000,0.000000,0.250000,0,0);}
.m6e_c00155{transform:matrix(0.312677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312677,0.000000,0.000000,0.250000,0,0);}
.m4f_c00155{transform:matrix(0.313698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313698,0.000000,0.000000,0.250000,0,0);}
.m7_c00155{transform:matrix(0.314120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314120,0.000000,0.000000,0.250000,0,0);}
.m97_c00155{transform:matrix(0.316077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316077,0.000000,0.000000,0.250000,0,0);}
.m54_c00155{transform:matrix(0.316369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316369,0.000000,0.000000,0.250000,0,0);}
.m17_c00155{transform:matrix(0.316755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316755,0.000000,0.000000,0.250000,0,0);}
.m5a_c00155{transform:matrix(0.318015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318015,0.000000,0.000000,0.250000,0,0);}
.m93_c00155{transform:matrix(0.318157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318157,0.000000,0.000000,0.250000,0,0);}
.m99_c00155{transform:matrix(0.318600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318600,0.000000,0.000000,0.250000,0,0);}
.m8f_c00155{transform:matrix(0.318668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318668,0.000000,0.000000,0.250000,0,0);}
.m35_c00155{transform:matrix(0.319507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319507,0.000000,0.000000,0.250000,0,0);}
.m3c_c00155{transform:matrix(0.320277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320277,0.000000,0.000000,0.250000,0,0);}
.m8c_c00155{transform:matrix(0.321463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321463,0.000000,0.000000,0.250000,0,0);}
.m6_c00155{transform:matrix(0.321588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321588,0.000000,0.000000,0.250000,0,0);}
.m7b_c00155{transform:matrix(0.323508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323508,0.000000,0.000000,0.250000,0,0);}
.m80_c00155{transform:matrix(0.324936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324936,0.000000,0.000000,0.250000,0,0);}
.m9c_c00155{transform:matrix(0.325317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325317,0.000000,0.000000,0.250000,0,0);}
.m26_c00155{transform:matrix(0.325350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325350,0.000000,0.000000,0.250000,0,0);}
.m71_c00155{transform:matrix(0.325969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325969,0.000000,0.000000,0.250000,0,0);}
.m81_c00155{transform:matrix(0.326140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326140,0.000000,0.000000,0.250000,0,0);}
.m74_c00155{transform:matrix(0.327022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327022,0.000000,0.000000,0.250000,0,0);}
.m7c_c00155{transform:matrix(0.328588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328588,0.000000,0.000000,0.250000,0,0);}
.m6d_c00155{transform:matrix(0.336137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336137,0.000000,0.000000,0.250000,0,0);}
.m2d_c00155{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);}
.m12_c00155{transform:matrix(0.339634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339634,0.000000,0.000000,0.250000,0,0);}
.m3e_c00155{transform:matrix(0.340275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340275,0.000000,0.000000,0.250000,0,0);}
.m45_c00155{transform:matrix(0.347028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347028,0.000000,0.000000,0.250000,0,0);}
.m78_c00155{transform:matrix(0.349926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349926,0.000000,0.000000,0.250000,0,0);}
.m1_c00155{transform:matrix(0.352248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352248,0.000000,0.000000,0.250000,0,0);}
.m2c_c00155{transform:matrix(0.363797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363797,0.000000,0.000000,0.250000,0,0);}
.m1d_c00155{transform:matrix(0.369571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369571,0.000000,0.000000,0.250000,0,0);}
.m9_c00155{transform:matrix(0.376853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376853,0.000000,0.000000,0.250000,0,0);}
.v0_c00155{vertical-align:0.000000px;}
.ls7_c00155{letter-spacing:-3.146227px;}
.lsa_c00155{letter-spacing:-2.862090px;}
.lse_c00155{letter-spacing:-2.796671px;}
.ls13_c00155{letter-spacing:-2.674010px;}
.lsb_c00155{letter-spacing:-2.335138px;}
.lsd_c00155{letter-spacing:-0.989465px;}
.ls15_c00155{letter-spacing:-0.228967px;}
.ls5_c00155{letter-spacing:0.000000px;}
.ls12_c00155{letter-spacing:0.217167px;}
.ls6_c00155{letter-spacing:0.506999px;}
.ls4_c00155{letter-spacing:0.686902px;}
.ls8_c00155{letter-spacing:0.780516px;}
.ls14_c00155{letter-spacing:1.177546px;}
.ls0_c00155{letter-spacing:1.504642px;}
.ls10_c00155{letter-spacing:2.134301px;}
.ls11_c00155{letter-spacing:2.260613px;}
.lsc_c00155{letter-spacing:2.608591px;}
.ls1a_c00155{letter-spacing:2.821203px;}
.ls1_c00155{letter-spacing:3.061357px;}
.ls16_c00155{letter-spacing:3.623400px;}
.ls9_c00155{letter-spacing:3.633736px;}
.ls18_c00155{letter-spacing:3.810668px;}
.ls17_c00155{letter-spacing:3.835201px;}
.ls19_c00155{letter-spacing:4.059000px;}
.ls3_c00155{letter-spacing:4.088700px;}
.ls2_c00155{letter-spacing:4.336200px;}
.lsf_c00155{letter-spacing:4.494610px;}
.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:0.000000px;}
._1_c00155{width:17.973965px;}
._0_c00155{width:26.560987px;}
._2_c00155{width:29.224800px;}
.fc0_c00155{color:transparent;}
.fsc_c00155{font-size:27.720000px;}
.fs3_c00155{font-size:48.114000px;}
.fs8_c00155{font-size:57.816198px;}
.fs4_c00155{font-size:66.330000px;}
.fsa_c00155{font-size:72.468000px;}
.fs5_c00155{font-size:78.804000px;}
.fsb_c00155{font-size:81.180000px;}
.fs1_c00155{font-size:81.774000px;}
.fs7_c00155{font-size:83.556198px;}
.fs6_c00155{font-size:85.536198px;}
.fs0_c00155{font-size:86.724000px;}
.fs2_c00155{font-size:89.892198px;}
.fs9_c00155{font-size:90.486198px;}
.y0_c00155{bottom:0.000000px;}
.y1b_c00155{bottom:33.410565px;}
.y1a_c00155{bottom:70.479135px;}
.y1_c00155{bottom:76.500000px;}
.y19_c00155{bottom:182.032335px;}
.y18_c00155{bottom:213.390585px;}
.y17_c00155{bottom:244.402335px;}
.y16_c00155{bottom:275.409135px;}
.y15_c00155{bottom:306.772335px;}
.y14_c00155{bottom:338.130585px;}
.y13_c00155{bottom:369.855135px;}
.y12_c00155{bottom:433.289385px;}
.y11_c00155{bottom:465.370335px;}
.y10_c00155{bottom:497.084985px;}
.yf_c00155{bottom:528.804585px;}
.ye_c00155{bottom:560.167785px;}
.yd_c00155{bottom:591.530985px;}
.yc_c00155{bottom:622.537785px;}
.yb_c00155{bottom:654.257385px;}
.ya_c00155{bottom:685.264185px;}
.y9_c00155{bottom:716.988735px;}
.y8_c00155{bottom:780.066585px;}
.y7_c00155{bottom:811.073385px;}
.y6_c00155{bottom:843.154335px;}
.y5_c00155{bottom:874.161135px;}
.y4_c00155{bottom:906.232185px;}
.y3_c00155{bottom:938.313135px;}
.y2_c00155{bottom:1073.027385px;}
.hd_c00155{height:28.911094px;}
.h5_c00155{height:47.221260px;}
.h9_c00155{height:56.743437px;}
.h6_c00155{height:69.180117px;}
.hb_c00155{height:71.123379px;}
.hc_c00155{height:79.673730px;}
.h3_c00155{height:80.256709px;}
.h8_c00155{height:82.005839px;}
.h7_c00155{height:83.949101px;}
.h2_c00155{height:85.114863px;}
.h4_c00155{height:88.224276px;}
.ha_c00155{height:88.807255px;}
.h1_c00155{height:1110.000000px;}
.h0_c00155{height:1263.000000px;}
.w1_c00155{width:733.500000px;}
.w0_c00155{width:892.500000px;}
.x0_c00155{left:0.000000px;}
.x1_c00155{left:79.500000px;}
.x37_c00155{left:80.511285px;}
.x3_c00155{left:82.090335px;}
.xb_c00155{left:84.169335px;}
.x48_c00155{left:114.017835px;}
.x4_c00155{left:115.512735px;}
.x57_c00155{left:124.353435px;}
.x4c_c00155{left:125.546385px;}
.x1f_c00155{left:127.239285px;}
.x29_c00155{left:136.109685px;}
.xc_c00155{left:148.420335px;}
.x15_c00155{left:158.721285px;}
.x2e_c00155{left:160.062735px;}
.x2b_c00155{left:169.601385px;}
.x53_c00155{left:170.838885px;}
.x33_c00155{left:180.852735px;}
.x3d_c00155{left:182.585235px;}
.x5_c00155{left:190.638885px;}
.xd_c00155{left:191.802135px;}
.x58_c00155{left:202.751535px;}
.x49_c00155{left:213.997935px;}
.x2a_c00155{left:226.353135px;}
.x6_c00155{left:235.713585px;}
.x4d_c00155{left:237.094635px;}
.x4a_c00155{left:248.355885px;}
.xe_c00155{left:258.429135px;}
.x54_c00155{left:268.378635px;}
.x46_c00155{left:269.601285px;}
.x16_c00155{left:280.822935px;}
.x23_c00155{left:290.064585px;}
.x3e_c00155{left:291.698085px;}
.x4e_c00155{left:301.667385px;}
.xf_c00155{left:303.023685px;}
.x56_c00155{left:314.121585px;}
.x17_c00155{left:324.130485px;}
.x38_c00155{left:335.525385px;}
.x34_c00155{left:336.584685px;}
.x50_c00155{left:346.073835px;}
.x24_c00155{left:347.286585px;}
.x7_c00155{left:358.330035px;}
.x47_c00155{left:368.140935px;}
.x18_c00155{left:369.353685px;}
.x8_c00155{left:379.728885px;}
.x2f_c00155{left:380.778285px;}
.x20_c00155{left:390.193185px;}
.x39_c00155{left:391.643535px;}
.x10_c00155{left:401.211885px;}
.x43_c00155{left:403.241385px;}
.x21_c00155{left:412.458285px;}
.x30_c00155{left:414.220485px;}
.x3a_c00155{left:425.323335px;}
.x25_c00155{left:436.317285px;}
.x55_c00155{left:444.677835px;}
.x19_c00155{left:445.811385px;}
.x44_c00155{left:468.452685px;}
.x59_c00155{left:475.699485px;}
.x2c_c00155{left:477.491385px;}
.x11_c00155{left:479.139735px;}
.x3f_c00155{left:480.159435px;}
.x9_c00155{left:490.499985px;}
.x31_c00155{left:501.979035px;}
.x5a_c00155{left:506.350875px;}
.x40_c00155{left:511.398885px;}
.x26_c00155{left:512.542335px;}
.xa_c00155{left:522.635385px;}
.x12_c00155{left:523.684785px;}
.x1a_c00155{left:534.005535px;}
.x27_c00155{left:555.745935px;}
.x4b_c00155{left:557.206185px;}
.x1b_c00155{left:566.784435px;}
.x4f_c00155{left:568.130835px;}
.x35_c00155{left:577.704135px;}
.x41_c00155{left:578.768385px;}
.x45_c00155{left:579.951435px;}
.x3b_c00155{left:588.069435px;}
.x51_c00155{left:598.662435px;}
.x2d_c00155{left:601.008735px;}
.x22_c00155{left:610.319685px;}
.x32_c00155{left:611.374035px;}
.x2_c00155{left:620.957235px;}
.x13_c00155{left:622.085835px;}
.x1c_c00155{left:633.020385px;}
.x42_c00155{left:644.172735px;}
.x14_c00155{left:654.835035px;}
.x1d_c00155{left:657.537735px;}
.x3c_c00155{left:666.274485px;}
.x1e_c00155{left:677.530785px;}
.x28_c00155{left:687.460485px;}
.x36_c00155{left:699.394935px;}
.x52_c00155{left:700.434435px;}
@media print{
.v0_c00155{vertical-align:0.000000pt;}
.ls7_c00155{letter-spacing:-2.796646pt;}
.lsa_c00155{letter-spacing:-2.544080pt;}
.lse_c00155{letter-spacing:-2.485930pt;}
.ls13_c00155{letter-spacing:-2.376898pt;}
.lsb_c00155{letter-spacing:-2.075678pt;}
.lsd_c00155{letter-spacing:-0.879525pt;}
.ls15_c00155{letter-spacing:-0.203526pt;}
.ls5_c00155{letter-spacing:0.000000pt;}
.ls12_c00155{letter-spacing:0.193037pt;}
.ls6_c00155{letter-spacing:0.450666pt;}
.ls4_c00155{letter-spacing:0.610579pt;}
.ls8_c00155{letter-spacing:0.693792pt;}
.ls14_c00155{letter-spacing:1.046707pt;}
.ls0_c00155{letter-spacing:1.337459pt;}
.ls10_c00155{letter-spacing:1.897157pt;}
.ls11_c00155{letter-spacing:2.009434pt;}
.lsc_c00155{letter-spacing:2.318747pt;}
.ls1a_c00155{letter-spacing:2.507736pt;}
.ls1_c00155{letter-spacing:2.721206pt;}
.ls16_c00155{letter-spacing:3.220800pt;}
.ls9_c00155{letter-spacing:3.229987pt;}
.ls18_c00155{letter-spacing:3.387261pt;}
.ls17_c00155{letter-spacing:3.409067pt;}
.ls19_c00155{letter-spacing:3.608000pt;}
.ls3_c00155{letter-spacing:3.634400pt;}
.ls2_c00155{letter-spacing:3.854400pt;}
.lsf_c00155{letter-spacing:3.995209pt;}
.ws0_c00155{word-spacing:0.000000pt;}
._1_c00155{width:15.976858pt;}
._0_c00155{width:23.609766pt;}
._2_c00155{width:25.977600pt;}
.fsc_c00155{font-size:24.640000pt;}
.fs3_c00155{font-size:42.768000pt;}
.fs8_c00155{font-size:51.392176pt;}
.fs4_c00155{font-size:58.960000pt;}
.fsa_c00155{font-size:64.416000pt;}
.fs5_c00155{font-size:70.048000pt;}
.fsb_c00155{font-size:72.160000pt;}
.fs1_c00155{font-size:72.688000pt;}
.fs7_c00155{font-size:74.272176pt;}
.fs6_c00155{font-size:76.032176pt;}
.fs0_c00155{font-size:77.088000pt;}
.fs2_c00155{font-size:79.904176pt;}
.fs9_c00155{font-size:80.432176pt;}
.y0_c00155{bottom:0.000000pt;}
.y1b_c00155{bottom:29.698280pt;}
.y1a_c00155{bottom:62.648120pt;}
.y1_c00155{bottom:68.000000pt;}
.y19_c00155{bottom:161.806520pt;}
.y18_c00155{bottom:189.680520pt;}
.y17_c00155{bottom:217.246520pt;}
.y16_c00155{bottom:244.808120pt;}
.y15_c00155{bottom:272.686520pt;}
.y14_c00155{bottom:300.560520pt;}
.y13_c00155{bottom:328.760120pt;}
.y12_c00155{bottom:385.146120pt;}
.y11_c00155{bottom:413.662520pt;}
.y10_c00155{bottom:441.853320pt;}
.yf_c00155{bottom:470.048520pt;}
.ye_c00155{bottom:497.926920pt;}
.yd_c00155{bottom:525.805320pt;}
.yc_c00155{bottom:553.366920pt;}
.yb_c00155{bottom:581.562120pt;}
.ya_c00155{bottom:609.123720pt;}
.y9_c00155{bottom:637.323320pt;}
.y8_c00155{bottom:693.392520pt;}
.y7_c00155{bottom:720.954120pt;}
.y6_c00155{bottom:749.470520pt;}
.y5_c00155{bottom:777.032120pt;}
.y4_c00155{bottom:805.539720pt;}
.y3_c00155{bottom:834.056120pt;}
.y2_c00155{bottom:953.802120pt;}
.hd_c00155{height:25.698750pt;}
.h5_c00155{height:41.974453pt;}
.h9_c00155{height:50.438610pt;}
.h6_c00155{height:61.493438pt;}
.hb_c00155{height:63.220781pt;}
.hc_c00155{height:70.821094pt;}
.h3_c00155{height:71.339297pt;}
.h8_c00155{height:72.894079pt;}
.h7_c00155{height:74.621423pt;}
.h2_c00155{height:75.657656pt;}
.h4_c00155{height:78.421579pt;}
.ha_c00155{height:78.939782pt;}
.h1_c00155{height:986.666667pt;}
.h0_c00155{height:1122.666667pt;}
.w1_c00155{width:652.000000pt;}
.w0_c00155{width:793.333333pt;}
.x0_c00155{left:0.000000pt;}
.x1_c00155{left:70.666667pt;}
.x37_c00155{left:71.565587pt;}
.x3_c00155{left:72.969187pt;}
.xb_c00155{left:74.817187pt;}
.x48_c00155{left:101.349187pt;}
.x4_c00155{left:102.677987pt;}
.x57_c00155{left:110.536387pt;}
.x4c_c00155{left:111.596787pt;}
.x1f_c00155{left:113.101587pt;}
.x29_c00155{left:120.986387pt;}
.xc_c00155{left:131.929187pt;}
.x15_c00155{left:141.085587pt;}
.x2e_c00155{left:142.277987pt;}
.x2b_c00155{left:150.756787pt;}
.x53_c00155{left:151.856787pt;}
.x33_c00155{left:160.757987pt;}
.x3d_c00155{left:162.297987pt;}
.x5_c00155{left:169.456787pt;}
.xd_c00155{left:170.490787pt;}
.x58_c00155{left:180.223587pt;}
.x49_c00155{left:190.220387pt;}
.x2a_c00155{left:201.202787pt;}
.x6_c00155{left:209.523187pt;}
.x4d_c00155{left:210.750787pt;}
.x4a_c00155{left:220.760787pt;}
.xe_c00155{left:229.714787pt;}
.x54_c00155{left:238.558787pt;}
.x46_c00155{left:239.645587pt;}
.x16_c00155{left:249.620387pt;}
.x23_c00155{left:257.835187pt;}
.x3e_c00155{left:259.287187pt;}
.x4e_c00155{left:268.148787pt;}
.xf_c00155{left:269.354387pt;}
.x56_c00155{left:279.219187pt;}
.x17_c00155{left:288.115987pt;}
.x38_c00155{left:298.244787pt;}
.x34_c00155{left:299.186387pt;}
.x50_c00155{left:307.621187pt;}
.x24_c00155{left:308.699187pt;}
.x7_c00155{left:318.515587pt;}
.x47_c00155{left:327.236387pt;}
.x18_c00155{left:328.314387pt;}
.x8_c00155{left:337.536787pt;}
.x2f_c00155{left:338.469587pt;}
.x20_c00155{left:346.838387pt;}
.x39_c00155{left:348.127587pt;}
.x10_c00155{left:356.632787pt;}
.x43_c00155{left:358.436787pt;}
.x21_c00155{left:366.629587pt;}
.x30_c00155{left:368.195987pt;}
.x3a_c00155{left:378.065187pt;}
.x25_c00155{left:387.837587pt;}
.x55_c00155{left:395.269187pt;}
.x19_c00155{left:396.276787pt;}
.x44_c00155{left:416.402387pt;}
.x59_c00155{left:422.843987pt;}
.x2c_c00155{left:424.436787pt;}
.x11_c00155{left:425.901987pt;}
.x3f_c00155{left:426.808387pt;}
.x9_c00155{left:435.999987pt;}
.x31_c00155{left:446.203587pt;}
.x5a_c00155{left:450.089667pt;}
.x40_c00155{left:454.576787pt;}
.x26_c00155{left:455.593187pt;}
.xa_c00155{left:464.564787pt;}
.x12_c00155{left:465.497587pt;}
.x1a_c00155{left:474.671587pt;}
.x27_c00155{left:493.996387pt;}
.x4b_c00155{left:495.294387pt;}
.x1b_c00155{left:503.808387pt;}
.x4f_c00155{left:505.005187pt;}
.x35_c00155{left:513.514787pt;}
.x41_c00155{left:514.460787pt;}
.x45_c00155{left:515.512387pt;}
.x3b_c00155{left:522.728387pt;}
.x51_c00155{left:532.144387pt;}
.x2d_c00155{left:534.229987pt;}
.x22_c00155{left:542.506387pt;}
.x32_c00155{left:543.443587pt;}
.x2_c00155{left:551.961987pt;}
.x13_c00155{left:552.965187pt;}
.x1c_c00155{left:562.684787pt;}
.x42_c00155{left:572.597987pt;}
.x14_c00155{left:582.075587pt;}
.x1d_c00155{left:584.477987pt;}
.x3c_c00155{left:592.243987pt;}
.x1e_c00155{left:602.249587pt;}
.x28_c00155{left:611.075987pt;}
.x36_c00155{left:621.684387pt;}
.x52_c00155{left:622.608387pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_64eda735e57c19cbe31786f5.woff2')format("woff");}.ff1_c00156{font-family:ff1_c00156;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00156;src:url('chunks/assets/font_941a2b72e700cec8c6dd636e.woff2')format("woff");}.ff2_c00156{font-family:ff2_c00156;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00156;src:url('chunks/assets/font_12a9468c57050706416a50d9.woff2')format("woff");}.ff3_c00156{font-family:ff3_c00156;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00156;src:url('chunks/assets/font_c12ed2155381c40fe7686ae5.woff2')format("woff");}.ff4_c00156{font-family:ff4_c00156;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m89_c00156{transform:matrix(0.180508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180508,0.000000,0.000000,0.250000,0,0);}
.m15_c00156{transform:matrix(0.199622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199622,0.000000,0.000000,0.250000,0,0);}
.mb_c00156{transform:matrix(0.207176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207176,0.000000,0.000000,0.250000,0,0);}
.m44_c00156{transform:matrix(0.233604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233604,0.000000,0.000000,0.250000,0,0);}
.m6a_c00156{transform:matrix(0.238513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238513,0.000000,0.000000,0.250000,0,0);}
.m2e_c00156{transform:matrix(0.241287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241287,0.000000,0.000000,0.250000,0,0);}
.m5_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);}
.m93_c00156{transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);}
.m62_c00156{transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);}
.m3_c00156{transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);}
.mad_c00156{transform:matrix(0.256572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256572,0.000000,0.000000,0.250000,0,0);}
.m75_c00156{transform:matrix(0.256696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256696,0.000000,0.000000,0.250000,0,0);}
.m3c_c00156{transform:matrix(0.257156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257156,0.000000,0.000000,0.250000,0,0);}
.m0_c00156{transform:matrix(0.257956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257956,0.000000,0.000000,0.250000,0,0);}
.m9b_c00156{transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);}
.mb4_c00156{transform:matrix(0.258351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258351,0.000000,0.000000,0.250000,0,0);}
.m4d_c00156{transform:matrix(0.258480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258480,0.000000,0.000000,0.250000,0,0);}
.m9f_c00156{transform:matrix(0.260389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260389,0.000000,0.000000,0.250000,0,0);}
.m7a_c00156{transform:matrix(0.260756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260756,0.000000,0.000000,0.250000,0,0);}
.m37_c00156{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.mae_c00156{transform:matrix(0.261369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261369,0.000000,0.000000,0.250000,0,0);}
.m4f_c00156{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.m95_c00156{transform:matrix(0.261646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261646,0.000000,0.000000,0.250000,0,0);}
.m72_c00156{transform:matrix(0.262554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262554,0.000000,0.000000,0.250000,0,0);}
.m8c_c00156{transform:matrix(0.262931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262931,0.000000,0.000000,0.250000,0,0);}
.me_c00156{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m34_c00156{transform:matrix(0.263647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263647,0.000000,0.000000,0.250000,0,0);}
.m41_c00156{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m63_c00156{transform:matrix(0.264311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264311,0.000000,0.000000,0.250000,0,0);}
.m91_c00156{transform:matrix(0.264697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264697,0.000000,0.000000,0.250000,0,0);}
.m86_c00156{transform:matrix(0.265487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265487,0.000000,0.000000,0.250000,0,0);}
.m32_c00156{transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);}
.m54_c00156{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m30_c00156{transform:matrix(0.266292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266292,0.000000,0.000000,0.250000,0,0);}
.m14_c00156{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.m46_c00156{transform:matrix(0.267040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267040,0.000000,0.000000,0.250000,0,0);}
.m80_c00156{transform:matrix(0.267245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267245,0.000000,0.000000,0.250000,0,0);}
.m2_c00156{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m5b_c00156{transform:matrix(0.268115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268115,0.000000,0.000000,0.250000,0,0);}
.m4b_c00156{transform:matrix(0.268484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268484,0.000000,0.000000,0.250000,0,0);}
.m64_c00156{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.m7f_c00156{transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);}
.m9d_c00156{transform:matrix(0.269230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269230,0.000000,0.000000,0.250000,0,0);}
.ma3_c00156{transform:matrix(0.269413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269413,0.000000,0.000000,0.250000,0,0);}
.m23_c00156{transform:matrix(0.269752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269752,0.000000,0.000000,0.250000,0,0);}
.m5e_c00156{transform:matrix(0.269986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269986,0.000000,0.000000,0.250000,0,0);}
.ma4_c00156{transform:matrix(0.270538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270538,0.000000,0.000000,0.250000,0,0);}
.m17_c00156{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m42_c00156{transform:matrix(0.271634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271634,0.000000,0.000000,0.250000,0,0);}
.m6e_c00156{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m3e_c00156{transform:matrix(0.272610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272610,0.000000,0.000000,0.250000,0,0);}
.maa_c00156{transform:matrix(0.272698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272698,0.000000,0.000000,0.250000,0,0);}
.m31_c00156{transform:matrix(0.274278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274278,0.000000,0.000000,0.250000,0,0);}
.m53_c00156{transform:matrix(0.274360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274360,0.000000,0.000000,0.250000,0,0);}
.m56_c00156{transform:matrix(0.274406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274406,0.000000,0.000000,0.250000,0,0);}
.mab_c00156{transform:matrix(0.275254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275254,0.000000,0.000000,0.250000,0,0);}
.m7d_c00156{transform:matrix(0.275566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275566,0.000000,0.000000,0.250000,0,0);}
.m94_c00156{transform:matrix(0.275573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275573,0.000000,0.000000,0.250000,0,0);}
.mb2_c00156{transform:matrix(0.275788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275788,0.000000,0.000000,0.250000,0,0);}
.mb1_c00156{transform:matrix(0.276228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276228,0.000000,0.000000,0.250000,0,0);}
.m8e_c00156{transform:matrix(0.276607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276607,0.000000,0.000000,0.250000,0,0);}
.ma6_c00156{transform:matrix(0.277218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277218,0.000000,0.000000,0.250000,0,0);}
.mc_c00156{transform:matrix(0.277905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277905,0.000000,0.000000,0.250000,0,0);}
.m87_c00156{transform:matrix(0.278204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278204,0.000000,0.000000,0.250000,0,0);}
.m9_c00156{transform:matrix(0.278483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278483,0.000000,0.000000,0.250000,0,0);}
.m21_c00156{transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);}
.m13_c00156{transform:matrix(0.280020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280020,0.000000,0.000000,0.250000,0,0);}
.m88_c00156{transform:matrix(0.280644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280644,0.000000,0.000000,0.250000,0,0);}
.m67_c00156{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.m98_c00156{transform:matrix(0.281783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281783,0.000000,0.000000,0.250000,0,0);}
.m40_c00156{transform:matrix(0.282215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282215,0.000000,0.000000,0.250000,0,0);}
.m57_c00156{transform:matrix(0.282254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282254,0.000000,0.000000,0.250000,0,0);}
.m36_c00156{transform:matrix(0.282405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282405,0.000000,0.000000,0.250000,0,0);}
.m70_c00156{transform:matrix(0.282567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282567,0.000000,0.000000,0.250000,0,0);}
.m99_c00156{transform:matrix(0.282767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282767,0.000000,0.000000,0.250000,0,0);}
.ma5_c00156{transform:matrix(0.283133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283133,0.000000,0.000000,0.250000,0,0);}
.m18_c00156{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m1c_c00156{transform:matrix(0.283821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283821,0.000000,0.000000,0.250000,0,0);}
.m83_c00156{transform:matrix(0.283827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283827,0.000000,0.000000,0.250000,0,0);}
.m47_c00156{transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);}
.m28_c00156{transform:matrix(0.284740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284740,0.000000,0.000000,0.250000,0,0);}
.m3d_c00156{transform:matrix(0.285158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285158,0.000000,0.000000,0.250000,0,0);}
.m7b_c00156{transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);}
.m1a_c00156{transform:matrix(0.286496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286496,0.000000,0.000000,0.250000,0,0);}
.mb0_c00156{transform:matrix(0.286566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286566,0.000000,0.000000,0.250000,0,0);}
.m25_c00156{transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);}
.m4a_c00156{transform:matrix(0.287129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287129,0.000000,0.000000,0.250000,0,0);}
.m2b_c00156{transform:matrix(0.287640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287640,0.000000,0.000000,0.250000,0,0);}
.m73_c00156{transform:matrix(0.288454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288454,0.000000,0.000000,0.250000,0,0);}
.m8f_c00156{transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);}
.m3b_c00156{transform:matrix(0.288585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288585,0.000000,0.000000,0.250000,0,0);}
.m78_c00156{transform:matrix(0.289643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289643,0.000000,0.000000,0.250000,0,0);}
.ma0_c00156{transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);}
.m19_c00156{transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);}
.m3f_c00156{transform:matrix(0.291739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291739,0.000000,0.000000,0.250000,0,0);}
.m59_c00156{transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);}
.m7e_c00156{transform:matrix(0.292392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292392,0.000000,0.000000,0.250000,0,0);}
.m6_c00156{transform:matrix(0.292477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292477,0.000000,0.000000,0.250000,0,0);}
.m22_c00156{transform:matrix(0.292612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292612,0.000000,0.000000,0.250000,0,0);}
.ma9_c00156{transform:matrix(0.293006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293006,0.000000,0.000000,0.250000,0,0);}
.m65_c00156{transform:matrix(0.293617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293617,0.000000,0.000000,0.250000,0,0);}
.m6c_c00156{transform:matrix(0.293652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293652,0.000000,0.000000,0.250000,0,0);}
.m5f_c00156{transform:matrix(0.295251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295251,0.000000,0.000000,0.250000,0,0);}
.m96_c00156{transform:matrix(0.296777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296777,0.000000,0.000000,0.250000,0,0);}
.m9c_c00156{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m8a_c00156{transform:matrix(0.297238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297238,0.000000,0.000000,0.250000,0,0);}
.m61_c00156{transform:matrix(0.297717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297717,0.000000,0.000000,0.250000,0,0);}
.m12_c00156{transform:matrix(0.298850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298850,0.000000,0.000000,0.250000,0,0);}
.m6d_c00156{transform:matrix(0.298987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298987,0.000000,0.000000,0.250000,0,0);}
.m77_c00156{transform:matrix(0.299238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299238,0.000000,0.000000,0.250000,0,0);}
.m76_c00156{transform:matrix(0.299719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299719,0.000000,0.000000,0.250000,0,0);}
.m68_c00156{transform:matrix(0.300674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300674,0.000000,0.000000,0.250000,0,0);}
.m5d_c00156{transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);}
.m4e_c00156{transform:matrix(0.302220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302220,0.000000,0.000000,0.250000,0,0);}
.m39_c00156{transform:matrix(0.302483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302483,0.000000,0.000000,0.250000,0,0);}
.m48_c00156{transform:matrix(0.302739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302739,0.000000,0.000000,0.250000,0,0);}
.m6b_c00156{transform:matrix(0.303491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303491,0.000000,0.000000,0.250000,0,0);}
.m4_c00156{transform:matrix(0.304407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304407,0.000000,0.000000,0.250000,0,0);}
.m84_c00156{transform:matrix(0.304901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304901,0.000000,0.000000,0.250000,0,0);}
.ma_c00156{transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);}
.m10_c00156{transform:matrix(0.305434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305434,0.000000,0.000000,0.250000,0,0);}
.m97_c00156{transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);}
.m1d_c00156{transform:matrix(0.305914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305914,0.000000,0.000000,0.250000,0,0);}
.mac_c00156{transform:matrix(0.306376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306376,0.000000,0.000000,0.250000,0,0);}
.m27_c00156{transform:matrix(0.307034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307034,0.000000,0.000000,0.250000,0,0);}
.m26_c00156{transform:matrix(0.307228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307228,0.000000,0.000000,0.250000,0,0);}
.m58_c00156{transform:matrix(0.307468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307468,0.000000,0.000000,0.250000,0,0);}
.m51_c00156{transform:matrix(0.308427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308427,0.000000,0.000000,0.250000,0,0);}
.m90_c00156{transform:matrix(0.308621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308621,0.000000,0.000000,0.250000,0,0);}
.m1f_c00156{transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);}
.m20_c00156{transform:matrix(0.309383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309383,0.000000,0.000000,0.250000,0,0);}
.m71_c00156{transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);}
.m1_c00156{transform:matrix(0.311154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311154,0.000000,0.000000,0.250000,0,0);}
.m2c_c00156{transform:matrix(0.312852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312852,0.000000,0.000000,0.250000,0,0);}
.m69_c00156{transform:matrix(0.315302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315302,0.000000,0.000000,0.250000,0,0);}
.m2a_c00156{transform:matrix(0.315400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315400,0.000000,0.000000,0.250000,0,0);}
.m60_c00156{transform:matrix(0.315418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315418,0.000000,0.000000,0.250000,0,0);}
.m55_c00156{transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);}
.m52_c00156{transform:matrix(0.316984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316984,0.000000,0.000000,0.250000,0,0);}
.m8b_c00156{transform:matrix(0.317031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317031,0.000000,0.000000,0.250000,0,0);}
.ma7_c00156{transform:matrix(0.317996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317996,0.000000,0.000000,0.250000,0,0);}
.ma2_c00156{transform:matrix(0.318605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318605,0.000000,0.000000,0.250000,0,0);}
.m43_c00156{transform:matrix(0.318992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318992,0.000000,0.000000,0.250000,0,0);}
.m33_c00156{transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);}
.m5c_c00156{transform:matrix(0.320729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320729,0.000000,0.000000,0.250000,0,0);}
.m8d_c00156{transform:matrix(0.322134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322134,0.000000,0.000000,0.250000,0,0);}
.m1b_c00156{transform:matrix(0.323232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323232,0.000000,0.000000,0.250000,0,0);}
.m81_c00156{transform:matrix(0.326313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326313,0.000000,0.000000,0.250000,0,0);}
.ma1_c00156{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m11_c00156{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.m24_c00156{transform:matrix(0.329081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329081,0.000000,0.000000,0.250000,0,0);}
.m85_c00156{transform:matrix(0.329713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329713,0.000000,0.000000,0.250000,0,0);}
.m16_c00156{transform:matrix(0.330415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330415,0.000000,0.000000,0.250000,0,0);}
.m38_c00156{transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);}
.maf_c00156{transform:matrix(0.333117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333117,0.000000,0.000000,0.250000,0,0);}
.m50_c00156{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m82_c00156{transform:matrix(0.336825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336825,0.000000,0.000000,0.250000,0,0);}
.m35_c00156{transform:matrix(0.337661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337661,0.000000,0.000000,0.250000,0,0);}
.m7_c00156{transform:matrix(0.338834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338834,0.000000,0.000000,0.250000,0,0);}
.mf_c00156{transform:matrix(0.340015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340015,0.000000,0.000000,0.250000,0,0);}
.m7c_c00156{transform:matrix(0.341283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341283,0.000000,0.000000,0.250000,0,0);}
.m66_c00156{transform:matrix(0.341580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341580,0.000000,0.000000,0.250000,0,0);}
.m4c_c00156{transform:matrix(0.342513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342513,0.000000,0.000000,0.250000,0,0);}
.m79_c00156{transform:matrix(0.343033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343033,0.000000,0.000000,0.250000,0,0);}
.m74_c00156{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.m3a_c00156{transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);}
.md_c00156{transform:matrix(0.345390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345390,0.000000,0.000000,0.250000,0,0);}
.m1e_c00156{transform:matrix(0.349110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349110,0.000000,0.000000,0.250000,0,0);}
.m8_c00156{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.mb3_c00156{transform:matrix(0.349662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349662,0.000000,0.000000,0.250000,0,0);}
.m92_c00156{transform:matrix(0.351273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351273,0.000000,0.000000,0.250000,0,0);}
.m9e_c00156{transform:matrix(0.353416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353416,0.000000,0.000000,0.250000,0,0);}
.m6f_c00156{transform:matrix(0.355133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355133,0.000000,0.000000,0.250000,0,0);}
.m29_c00156{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m5a_c00156{transform:matrix(0.362982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362982,0.000000,0.000000,0.250000,0,0);}
.m2f_c00156{transform:matrix(0.366396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366396,0.000000,0.000000,0.250000,0,0);}
.m9a_c00156{transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);}
.m2d_c00156{transform:matrix(0.373079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373079,0.000000,0.000000,0.250000,0,0);}
.m45_c00156{transform:matrix(0.396068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396068,0.000000,0.000000,0.250000,0,0);}
.m49_c00156{transform:matrix(0.402409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402409,0.000000,0.000000,0.250000,0,0);}
.ma8_c00156{transform:matrix(0.440744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440744,0.000000,0.000000,0.250000,0,0);}
.v0_c00156{vertical-align:0.000000px;}
.ls4_c00156{letter-spacing:-2.744280px;}
.ls5_c00156{letter-spacing:-1.913155px;}
.ls2_c00156{letter-spacing:0.000000px;}
.lsa_c00156{letter-spacing:1.685772px;}
.lsd_c00156{letter-spacing:2.077812px;}
.lsc_c00156{letter-spacing:2.971663px;}
.ls8_c00156{letter-spacing:3.112798px;}
.ls6_c00156{letter-spacing:3.524400px;}
.ls7_c00156{letter-spacing:3.544200px;}
.lse_c00156{letter-spacing:3.722400px;}
.ls9_c00156{letter-spacing:3.801610px;}
.ls1_c00156{letter-spacing:3.920400px;}
.ls0_c00156{letter-spacing:4.266900px;}
.lsb_c00156{letter-spacing:4.296610px;}
.ls3_c00156{letter-spacing:51.321798px;}
.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;}
}
.ws1_c00156{word-spacing:-19.602000px;}
.ws0_c00156{word-spacing:-17.688845px;}
.ws2_c00156{word-spacing:0.000000px;}
._b_c00156{margin-left:-14.583888px;}
._0_c00156{margin-left:-13.564584px;}
._9_c00156{width:3.763584px;}
._4_c00156{width:4.862088px;}
._d_c00156{width:6.507864px;}
._1_c00156{width:8.671925px;}
._8_c00156{width:10.349064px;}
._5_c00156{width:11.525976px;}
._e_c00156{width:15.995232px;}
._2_c00156{width:21.640608px;}
._7_c00156{width:23.679216px;}
._a_c00156{width:25.200331px;}
._3_c00156{width:29.010960px;}
._c_c00156{width:31.462200px;}
._6_c00156{width:34.107480px;}
.fc0_c00156{color:transparent;}
.fs9_c00156{font-size:33.660000px;}
.fs2_c00156{font-size:51.321798px;}
.fsa_c00156{font-size:67.320000px;}
.fs3_c00156{font-size:70.488000px;}
.fs4_c00156{font-size:70.884000px;}
.fs8_c00156{font-size:74.448000px;}
.fs5_c00156{font-size:76.032198px;}
.fs1_c00156{font-size:78.408000px;}
.fs6_c00156{font-size:78.804000px;}
.fs0_c00156{font-size:85.338000px;}
.fs7_c00156{font-size:85.932198px;}
.y1b_c00156{bottom:-2.592765px;}
.y0_c00156{bottom:0.000000px;}
.y1a_c00156{bottom:61.925535px;}
.y1_c00156{bottom:76.500000px;}
.y19_c00156{bottom:163.850985px;}
.y18_c00156{bottom:199.134585px;}
.y17_c00156{bottom:231.928335px;}
.y16_c00156{bottom:264.004335px;}
.y15_c00156{bottom:296.075385px;}
.y14_c00156{bottom:328.864185px;}
.y13_c00156{bottom:360.945135px;}
.y12_c00156{bottom:395.159535px;}
.y11_c00156{bottom:427.586985px;}
.y10_c00156{bottom:491.743935px;}
.yf_c00156{bottom:524.889135px;}
.ye_c00156{bottom:557.321535px;}
.yd_c00156{bottom:589.748985px;}
.yc_c00156{bottom:622.537785px;}
.yb_c00156{bottom:655.687935px;}
.ya_c00156{bottom:687.758985px;}
.y9_c00156{bottom:720.191385px;}
.y8_c00156{bottom:754.054335px;}
.y7_c00156{bottom:786.486735px;}
.y6_c00156{bottom:819.275535px;}
.y5_c00156{bottom:819.277515px;}
.y4_c00156{bottom:884.140335px;}
.y3_c00156{bottom:916.929135px;}
.y2_c00156{bottom:1071.601785px;}
.hb_c00156{height:33.035449px;}
.h4_c00156{height:34.180317px;}
.hc_c00156{height:66.070898px;}
.h5_c00156{height:69.180117px;}
.h6_c00156{height:73.929797px;}
.h7_c00156{height:76.626200px;}
.h3_c00156{height:76.953164px;}
.h8_c00156{height:77.341816px;}
.ha_c00156{height:77.646938px;}
.h2_c00156{height:83.754580px;}
.h9_c00156{height:84.337753px;}
.h1_c00156{height:1110.000000px;}
.h0_c00156{height:1263.000000px;}
.w1_c00156{width:733.500000px;}
.w0_c00156{width:892.500000px;}
.x0_c00156{left:0.000000px;}
.x3_c00156{left:66.265185px;}
.xd_c00156{left:68.205585px;}
.x5e_c00156{left:69.230235px;}
.x1_c00156{left:79.500000px;}
.x59_c00156{left:89.856885px;}
.x4c_c00156{left:100.350885px;}
.x5f_c00156{left:101.385435px;}
.xe_c00156{left:111.572535px;}
.x14_c00156{left:122.692017px;}
.x48_c00156{left:132.233835px;}
.x4e_c00156{left:134.134635px;}
.x1d_c00156{left:145.455285px;}
.x15_c00156{left:155.523585px;}
.x57_c00156{left:156.622485px;}
.x44_c00156{left:166.601685px;}
.x4f_c00156{left:167.651085px;}
.x62_c00156{left:169.076685px;}
.x4_c00156{left:176.937285px;}
.x26_c00156{left:178.041135px;}
.x5a_c00156{left:181.169535px;}
.xf_c00156{left:189.040035px;}
.x4d_c00156{left:190.628985px;}
.x45_c00156{left:200.137935px;}
.x5_c00156{left:209.815185px;}
.x3f_c00156{left:210.928935px;}
.x49_c00156{left:212.210985px;}
.x27_c00156{left:222.007035px;}
.x31_c00156{left:232.872285px;}
.x6_c00156{left:243.702885px;}
.x38_c00156{left:255.350235px;}
.x60_c00156{left:256.439235px;}
.x16_c00156{left:266.017485px;}
.x55_c00156{left:268.541985px;}
.x10_c00156{left:277.090635px;}
.x32_c00156{left:278.110335px;}
.x63_c00156{left:279.224085px;}
.x1e_c00156{left:289.178535px;}
.x39_c00156{left:299.538885px;}
.x64_c00156{left:300.954585px;}
.x11_c00156{left:310.909035px;}
.x1f_c00156{left:321.289185px;}
.x46_c00156{left:331.778235px;}
.x40_c00156{left:333.283035px;}
.x69_c00156{left:339.693285px;}
.x12_c00156{left:342.465285px;}
.x7_c00156{left:343.529535px;}
.x28_c00156{left:344.742285px;}
.x20_c00156{left:354.246285px;}
.x33_c00156{left:355.404585px;}
.x8_c00156{left:365.804535px;}
.x5b_c00156{left:368.932935px;}
.x17_c00156{left:375.605535px;}
.x41_c00156{left:376.684635px;}
.x2b_c00156{left:388.797285px;}
.x47_c00156{left:398.850735px;}
.x65_c00156{left:402.484035px;}
.x21_c00156{left:409.795185px;}
.x4a_c00156{left:421.793985px;}
.x5c_c00156{left:423.714585px;}
.x13_c00156{left:434.050185px;}
.x3a_c00156{left:443.336385px;}
.x5d_c00156{left:444.885735px;}
.x22_c00156{left:453.503685px;}
.x56_c00156{left:454.582785px;}
.x61_c00156{left:457.320135px;}
.x18_c00156{left:464.552085px;}
.x3b_c00156{left:465.556935px;}
.x23_c00156{left:476.308335px;}
.x4b_c00156{left:477.372585px;}
.x50_c00156{left:487.693335px;}
.x34_c00156{left:489.816885px;}
.x9_c00156{left:497.697285px;}
.x3c_c00156{left:498.751635px;}
.x19_c00156{left:507.810135px;}
.x42_c00156{left:508.923885px;}
.x2c_c00156{left:510.166335px;}
.xa_c00156{left:519.719835px;}
.x58_c00156{left:521.095935px;}
.x68_c00156{left:524.857935px;}
.x1a_c00156{left:531.015735px;}
.x3d_c00156{left:541.024635px;}
.x43_c00156{left:542.836335px;}
.x66_c00156{left:544.890585px;}
.x1b_c00156{left:552.370035px;}
.x2d_c00156{left:553.993635px;}
.x51_c00156{left:565.032135px;}
.x3e_c00156{left:575.783535px;}
.x29_c00156{left:586.401285px;}
.xb_c00156{left:596.741835px;}
.x2e_c00156{left:598.548585px;}
.x67_c00156{left:599.894985px;}
.x52_c00156{left:609.225735px;}
.x2a_c00156{left:619.041585px;}
.x35_c00156{left:621.620535px;}
.xc_c00156{left:629.896935px;}
.x53_c00156{left:632.668935px;}
.x2_c00156{left:641.623485px;}
.x24_c00156{left:650.795835px;}
.x2f_c00156{left:652.706535px;}
.x1c_c00156{left:663.309435px;}
.x30_c00156{left:674.392485px;}
.x36_c00156{left:676.402185px;}
.x25_c00156{left:685.143885px;}
.x37_c00156{left:696.241785px;}
.x54_c00156{left:698.959335px;}
@media print{
.v0_c00156{vertical-align:0.000000pt;}
.ls4_c00156{letter-spacing:-2.439360pt;}
.ls5_c00156{letter-spacing:-1.700582pt;}
.ls2_c00156{letter-spacing:0.000000pt;}
.lsa_c00156{letter-spacing:1.498464pt;}
.lsd_c00156{letter-spacing:1.846944pt;}
.lsc_c00156{letter-spacing:2.641478pt;}
.ls8_c00156{letter-spacing:2.766931pt;}
.ls6_c00156{letter-spacing:3.132800pt;}
.ls7_c00156{letter-spacing:3.150400pt;}
.lse_c00156{letter-spacing:3.308800pt;}
.ls9_c00156{letter-spacing:3.379209pt;}
.ls1_c00156{letter-spacing:3.484800pt;}
.ls0_c00156{letter-spacing:3.792800pt;}
.lsb_c00156{letter-spacing:3.819209pt;}
.ls3_c00156{letter-spacing:45.619376pt;}
.ws1_c00156{word-spacing:-17.424000pt;}
.ws0_c00156{word-spacing:-15.723418pt;}
.ws2_c00156{word-spacing:0.000000pt;}
._b_c00156{margin-left:-12.963456pt;}
._0_c00156{margin-left:-12.057408pt;}
._9_c00156{width:3.345408pt;}
._4_c00156{width:4.321856pt;}
._d_c00156{width:5.784768pt;}
._1_c00156{width:7.708378pt;}
._8_c00156{width:9.199168pt;}
._5_c00156{width:10.245312pt;}
._e_c00156{width:14.217984pt;}
._2_c00156{width:19.236096pt;}
._7_c00156{width:21.048192pt;}
._a_c00156{width:22.400294pt;}
._3_c00156{width:25.787520pt;}
._c_c00156{width:27.966400pt;}
._6_c00156{width:30.317760pt;}
.fs9_c00156{font-size:29.920000pt;}
.fs2_c00156{font-size:45.619376pt;}
.fsa_c00156{font-size:59.840000pt;}
.fs3_c00156{font-size:62.656000pt;}
.fs4_c00156{font-size:63.008000pt;}
.fs8_c00156{font-size:66.176000pt;}
.fs5_c00156{font-size:67.584176pt;}
.fs1_c00156{font-size:69.696000pt;}
.fs6_c00156{font-size:70.048000pt;}
.fs0_c00156{font-size:75.856000pt;}
.fs7_c00156{font-size:76.384176pt;}
.y1b_c00156{bottom:-2.304680pt;}
.y0_c00156{bottom:0.000000pt;}
.y1a_c00156{bottom:55.044920pt;}
.y1_c00156{bottom:68.000000pt;}
.y19_c00156{bottom:145.645320pt;}
.y18_c00156{bottom:177.008520pt;}
.y17_c00156{bottom:206.158520pt;}
.y16_c00156{bottom:234.670520pt;}
.y15_c00156{bottom:263.178120pt;}
.y14_c00156{bottom:292.323720pt;}
.y13_c00156{bottom:320.840120pt;}
.y12_c00156{bottom:351.252920pt;}
.y11_c00156{bottom:380.077320pt;}
.y10_c00156{bottom:437.105720pt;}
.yf_c00156{bottom:466.568120pt;}
.ye_c00156{bottom:495.396920pt;}
.yd_c00156{bottom:524.221320pt;}
.yc_c00156{bottom:553.366920pt;}
.yb_c00156{bottom:582.833720pt;}
.ya_c00156{bottom:611.341320pt;}
.y9_c00156{bottom:640.170120pt;}
.y8_c00156{bottom:670.270520pt;}
.y7_c00156{bottom:699.099320pt;}
.y6_c00156{bottom:728.244920pt;}
.y5_c00156{bottom:728.246680pt;}
.y4_c00156{bottom:785.902520pt;}
.y3_c00156{bottom:815.048120pt;}
.y2_c00156{bottom:952.534920pt;}
.hb_c00156{height:29.364844pt;}
.h4_c00156{height:30.382504pt;}
.hc_c00156{height:58.729688pt;}
.h5_c00156{height:61.493438pt;}
.h6_c00156{height:65.715375pt;}
.h7_c00156{height:68.112177pt;}
.h3_c00156{height:68.402813pt;}
.h8_c00156{height:68.748281pt;}
.ha_c00156{height:69.019500pt;}
.h2_c00156{height:74.448516pt;}
.h9_c00156{height:74.966891pt;}
.h1_c00156{height:986.666667pt;}
.h0_c00156{height:1122.666667pt;}
.w1_c00156{width:652.000000pt;}
.w0_c00156{width:793.333333pt;}
.x0_c00156{left:0.000000pt;}
.x3_c00156{left:58.902387pt;}
.xd_c00156{left:60.627187pt;}
.x5e_c00156{left:61.537987pt;}
.x1_c00156{left:70.666667pt;}
.x59_c00156{left:79.872787pt;}
.x4c_c00156{left:89.200787pt;}
.x5f_c00156{left:90.120387pt;}
.xe_c00156{left:99.175587pt;}
.x14_c00156{left:109.059571pt;}
.x48_c00156{left:117.541187pt;}
.x4e_c00156{left:119.230787pt;}
.x1d_c00156{left:129.293587pt;}
.x15_c00156{left:138.243187pt;}
.x57_c00156{left:139.219987pt;}
.x44_c00156{left:148.090387pt;}
.x4f_c00156{left:149.023187pt;}
.x62_c00156{left:150.290387pt;}
.x4_c00156{left:157.277587pt;}
.x26_c00156{left:158.258787pt;}
.x5a_c00156{left:161.039587pt;}
.xf_c00156{left:168.035587pt;}
.x4d_c00156{left:169.447987pt;}
.x45_c00156{left:177.900387pt;}
.x5_c00156{left:186.502387pt;}
.x3f_c00156{left:187.492387pt;}
.x49_c00156{left:188.631987pt;}
.x27_c00156{left:197.339587pt;}
.x31_c00156{left:206.997587pt;}
.x6_c00156{left:216.624787pt;}
.x38_c00156{left:226.977987pt;}
.x60_c00156{left:227.945987pt;}
.x16_c00156{left:236.459987pt;}
.x55_c00156{left:238.703987pt;}
.x10_c00156{left:246.302787pt;}
.x32_c00156{left:247.209187pt;}
.x63_c00156{left:248.199187pt;}
.x1e_c00156{left:257.047587pt;}
.x39_c00156{left:266.256787pt;}
.x64_c00156{left:267.515187pt;}
.x11_c00156{left:276.363587pt;}
.x1f_c00156{left:285.590387pt;}
.x46_c00156{left:294.913987pt;}
.x40_c00156{left:296.251587pt;}
.x69_c00156{left:301.949587pt;}
.x12_c00156{left:304.413587pt;}
.x7_c00156{left:305.359587pt;}
.x28_c00156{left:306.437587pt;}
.x20_c00156{left:314.885587pt;}
.x33_c00156{left:315.915187pt;}
.x8_c00156{left:325.159587pt;}
.x5b_c00156{left:327.940387pt;}
.x17_c00156{left:333.871587pt;}
.x41_c00156{left:334.830787pt;}
.x2b_c00156{left:345.597587pt;}
.x47_c00156{left:354.533987pt;}
.x65_c00156{left:357.763587pt;}
.x21_c00156{left:364.262387pt;}
.x4a_c00156{left:374.927987pt;}
.x5c_c00156{left:376.635187pt;}
.x13_c00156{left:385.822387pt;}
.x3a_c00156{left:394.076787pt;}
.x5d_c00156{left:395.453987pt;}
.x22_c00156{left:403.114387pt;}
.x56_c00156{left:404.073587pt;}
.x61_c00156{left:406.506787pt;}
.x18_c00156{left:412.935187pt;}
.x3b_c00156{left:413.828387pt;}
.x23_c00156{left:423.385187pt;}
.x4b_c00156{left:424.331187pt;}
.x50_c00156{left:433.505187pt;}
.x34_c00156{left:435.392787pt;}
.x9_c00156{left:442.397587pt;}
.x3c_c00156{left:443.334787pt;}
.x19_c00156{left:451.386787pt;}
.x42_c00156{left:452.376787pt;}
.x2c_c00156{left:453.481187pt;}
.xa_c00156{left:461.973187pt;}
.x58_c00156{left:463.196387pt;}
.x68_c00156{left:466.540387pt;}
.x1a_c00156{left:472.013987pt;}
.x3d_c00156{left:480.910787pt;}
.x43_c00156{left:482.521187pt;}
.x66_c00156{left:484.347187pt;}
.x1b_c00156{left:490.995587pt;}
.x2d_c00156{left:492.438787pt;}
.x51_c00156{left:502.250787pt;}
.x3e_c00156{left:511.807587pt;}
.x29_c00156{left:521.245587pt;}
.xb_c00156{left:530.437187pt;}
.x2e_c00156{left:532.043187pt;}
.x67_c00156{left:533.239987pt;}
.x52_c00156{left:541.533987pt;}
.x2a_c00156{left:550.259187pt;}
.x35_c00156{left:552.551587pt;}
.xc_c00156{left:559.908387pt;}
.x53_c00156{left:562.372387pt;}
.x2_c00156{left:570.331987pt;}
.x24_c00156{left:578.485187pt;}
.x2f_c00156{left:580.183587pt;}
.x1c_c00156{left:589.608387pt;}
.x30_c00156{left:599.459987pt;}
.x36_c00156{left:601.246387pt;}
.x25_c00156{left:609.016787pt;}
.x37_c00156{left:618.881587pt;}
.x54_c00156{left:621.297187pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1ee49f5faf3cbd29fe2a217d.woff2')format("woff");}.ff1_c00157{font-family:ff1_c00157;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00157;src:url('chunks/assets/font_909df7d0f77e8c59f0f4a42c.woff2')format("woff");}.ff2_c00157{font-family:ff2_c00157;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00157;src:url('chunks/assets/font_e26d728aaf52b2c48312fe9e.woff2')format("woff");}.ff3_c00157{font-family:ff3_c00157;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00157;src:url('chunks/assets/font_27f8e790257f3c2efc860d32.woff2')format("woff");}.ff4_c00157{font-family:ff4_c00157;line-height:0.666000;font-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_c00157{transform:matrix(0.054055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054055,0.000000,0.000000,0.250000,0,0);}
.m10_c00157{transform:matrix(0.163573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163573,0.000000,0.000000,0.250000,0,0);}
.m76_c00157{transform:matrix(0.166854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166854,0.000000,0.000000,0.250000,0,0);}
.m45_c00157{transform:matrix(0.196666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196666,0.000000,0.000000,0.250000,0,0);}
.ma3_c00157{transform:matrix(0.204955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204955,0.000000,0.000000,0.250000,0,0);}
.m7a_c00157{transform:matrix(0.215043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215043,0.000000,0.000000,0.250000,0,0);}
.m89_c00157{transform:matrix(0.220701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220701,0.000000,0.000000,0.250000,0,0);}
.m1_c00157{transform:matrix(0.242288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242288,0.000000,0.000000,0.250000,0,0);}
.m2_c00157{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.me_c00157{transform:matrix(0.250919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250919,0.000000,0.000000,0.250000,0,0);}
.m65_c00157{transform:matrix(0.251170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251170,0.000000,0.000000,0.250000,0,0);}
.mbf_c00157{transform:matrix(0.253429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253429,0.000000,0.000000,0.250000,0,0);}
.ma1_c00157{transform:matrix(0.253695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253695,0.000000,0.000000,0.250000,0,0);}
.m30_c00157{transform:matrix(0.255376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255376,0.000000,0.000000,0.250000,0,0);}
.m40_c00157{transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);}
.m43_c00157{transform:matrix(0.258435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258435,0.000000,0.000000,0.250000,0,0);}
.m23_c00157{transform:matrix(0.258609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258609,0.000000,0.000000,0.250000,0,0);}
.m71_c00157{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m7_c00157{transform:matrix(0.258825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258825,0.000000,0.000000,0.250000,0,0);}
.m16_c00157{transform:matrix(0.259004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259004,0.000000,0.000000,0.250000,0,0);}
.m88_c00157{transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);}
.mb1_c00157{transform:matrix(0.259258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259258,0.000000,0.000000,0.250000,0,0);}
.m2f_c00157{transform:matrix(0.259618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259618,0.000000,0.000000,0.250000,0,0);}
.m1d_c00157{transform:matrix(0.259723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259723,0.000000,0.000000,0.250000,0,0);}
.m9f_c00157{transform:matrix(0.260490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260490,0.000000,0.000000,0.250000,0,0);}
.m6d_c00157{transform:matrix(0.260579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260579,0.000000,0.000000,0.250000,0,0);}
.m7b_c00157{transform:matrix(0.260829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260829,0.000000,0.000000,0.250000,0,0);}
.m4d_c00157{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m85_c00157{transform:matrix(0.261057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261057,0.000000,0.000000,0.250000,0,0);}
.m86_c00157{transform:matrix(0.261106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261106,0.000000,0.000000,0.250000,0,0);}
.m5c_c00157{transform:matrix(0.261624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261624,0.000000,0.000000,0.250000,0,0);}
.m37_c00157{transform:matrix(0.262693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262693,0.000000,0.000000,0.250000,0,0);}
.m53_c00157{transform:matrix(0.263166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263166,0.000000,0.000000,0.250000,0,0);}
.m75_c00157{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m24_c00157{transform:matrix(0.263429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263429,0.000000,0.000000,0.250000,0,0);}
.m31_c00157{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.mc0_c00157{transform:matrix(0.264732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264732,0.000000,0.000000,0.250000,0,0);}
.m1c_c00157{transform:matrix(0.265372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265372,0.000000,0.000000,0.250000,0,0);}
.m3f_c00157{transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);}
.mab_c00157{transform:matrix(0.266076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266076,0.000000,0.000000,0.250000,0,0);}
.m3a_c00157{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m64_c00157{transform:matrix(0.266504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266504,0.000000,0.000000,0.250000,0,0);}
.m4e_c00157{transform:matrix(0.267823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267823,0.000000,0.000000,0.250000,0,0);}
.m4f_c00157{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m5a_c00157{transform:matrix(0.268484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268484,0.000000,0.000000,0.250000,0,0);}
.m1f_c00157{transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);}
.mc5_c00157{transform:matrix(0.268979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268979,0.000000,0.000000,0.250000,0,0);}
.m5f_c00157{transform:matrix(0.269485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269485,0.000000,0.000000,0.250000,0,0);}
.m94_c00157{transform:matrix(0.270008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270008,0.000000,0.000000,0.250000,0,0);}
.m21_c00157{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m72_c00157{transform:matrix(0.271388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271388,0.000000,0.000000,0.250000,0,0);}
.m8c_c00157{transform:matrix(0.272103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272103,0.000000,0.000000,0.250000,0,0);}
.m25_c00157{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.mb9_c00157{transform:matrix(0.272544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272544,0.000000,0.000000,0.250000,0,0);}
.m6a_c00157{transform:matrix(0.272610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272610,0.000000,0.000000,0.250000,0,0);}
.m96_c00157{transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);}
.mb7_c00157{transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);}
.m68_c00157{transform:matrix(0.274902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274902,0.000000,0.000000,0.250000,0,0);}
.m3e_c00157{transform:matrix(0.275136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275136,0.000000,0.000000,0.250000,0,0);}
.m67_c00157{transform:matrix(0.275431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275431,0.000000,0.000000,0.250000,0,0);}
.m28_c00157{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m47_c00157{transform:matrix(0.275573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275573,0.000000,0.000000,0.250000,0,0);}
.m3c_c00157{transform:matrix(0.275733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275733,0.000000,0.000000,0.250000,0,0);}
.m92_c00157{transform:matrix(0.275788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275788,0.000000,0.000000,0.250000,0,0);}
.mb5_c00157{transform:matrix(0.276413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276413,0.000000,0.000000,0.250000,0,0);}
.m8d_c00157{transform:matrix(0.276903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276903,0.000000,0.000000,0.250000,0,0);}
.m70_c00157{transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);}
.m8e_c00157{transform:matrix(0.277249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277249,0.000000,0.000000,0.250000,0,0);}
.mbe_c00157{transform:matrix(0.277586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277586,0.000000,0.000000,0.250000,0,0);}
.m7e_c00157{transform:matrix(0.277604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277604,0.000000,0.000000,0.250000,0,0);}
.m29_c00157{transform:matrix(0.278106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278106,0.000000,0.000000,0.250000,0,0);}
.m2e_c00157{transform:matrix(0.278536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278536,0.000000,0.000000,0.250000,0,0);}
.ma_c00157{transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);}
.m55_c00157{transform:matrix(0.278778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278778,0.000000,0.000000,0.250000,0,0);}
.ma6_c00157{transform:matrix(0.278874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278874,0.000000,0.000000,0.250000,0,0);}
.m18_c00157{transform:matrix(0.278896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278896,0.000000,0.000000,0.250000,0,0);}
.m35_c00157{transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);}
.m6b_c00157{transform:matrix(0.279544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279544,0.000000,0.000000,0.250000,0,0);}
.m54_c00157{transform:matrix(0.279910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279910,0.000000,0.000000,0.250000,0,0);}
.m97_c00157{transform:matrix(0.279969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279969,0.000000,0.000000,0.250000,0,0);}
.m12_c00157{transform:matrix(0.280163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280163,0.000000,0.000000,0.250000,0,0);}
.m32_c00157{transform:matrix(0.280767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280767,0.000000,0.000000,0.250000,0,0);}
.maa_c00157{transform:matrix(0.280900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280900,0.000000,0.000000,0.250000,0,0);}
.m90_c00157{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.m33_c00157{transform:matrix(0.281615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281615,0.000000,0.000000,0.250000,0,0);}
.m82_c00157{transform:matrix(0.281918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281918,0.000000,0.000000,0.250000,0,0);}
.m0_c00157{transform:matrix(0.281988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281988,0.000000,0.000000,0.250000,0,0);}
.mb3_c00157{transform:matrix(0.282045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282045,0.000000,0.000000,0.250000,0,0);}
.ma0_c00157{transform:matrix(0.282165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282165,0.000000,0.000000,0.250000,0,0);}
.m7f_c00157{transform:matrix(0.282254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282254,0.000000,0.000000,0.250000,0,0);}
.mb4_c00157{transform:matrix(0.283223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283223,0.000000,0.000000,0.250000,0,0);}
.m26_c00157{transform:matrix(0.283509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283509,0.000000,0.000000,0.250000,0,0);}
.mbc_c00157{transform:matrix(0.284273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284273,0.000000,0.000000,0.250000,0,0);}
.mae_c00157{transform:matrix(0.284275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284275,0.000000,0.000000,0.250000,0,0);}
.m95_c00157{transform:matrix(0.285273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285273,0.000000,0.000000,0.250000,0,0);}
.m14_c00157{transform:matrix(0.285597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285597,0.000000,0.000000,0.250000,0,0);}
.m5_c00157{transform:matrix(0.286402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286402,0.000000,0.000000,0.250000,0,0);}
.m2c_c00157{transform:matrix(0.286490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286490,0.000000,0.000000,0.250000,0,0);}
.m8_c00157{transform:matrix(0.286538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286538,0.000000,0.000000,0.250000,0,0);}
.m38_c00157{transform:matrix(0.286545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286545,0.000000,0.000000,0.250000,0,0);}
.m8a_c00157{transform:matrix(0.286982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286982,0.000000,0.000000,0.250000,0,0);}
.m1e_c00157{transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);}
.mc2_c00157{transform:matrix(0.288438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288438,0.000000,0.000000,0.250000,0,0);}
.m2a_c00157{transform:matrix(0.288974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288974,0.000000,0.000000,0.250000,0,0);}
.ma8_c00157{transform:matrix(0.289053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289053,0.000000,0.000000,0.250000,0,0);}
.m20_c00157{transform:matrix(0.289801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289801,0.000000,0.000000,0.250000,0,0);}
.m80_c00157{transform:matrix(0.290563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290563,0.000000,0.000000,0.250000,0,0);}
.ma9_c00157{transform:matrix(0.291032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291032,0.000000,0.000000,0.250000,0,0);}
.m22_c00157{transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);}
.m93_c00157{transform:matrix(0.294302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294302,0.000000,0.000000,0.250000,0,0);}
.m1b_c00157{transform:matrix(0.294997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294997,0.000000,0.000000,0.250000,0,0);}
.m51_c00157{transform:matrix(0.295132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295132,0.000000,0.000000,0.250000,0,0);}
.m52_c00157{transform:matrix(0.295385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295385,0.000000,0.000000,0.250000,0,0);}
.m74_c00157{transform:matrix(0.295897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295897,0.000000,0.000000,0.250000,0,0);}
.m17_c00157{transform:matrix(0.296040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296040,0.000000,0.000000,0.250000,0,0);}
.m7c_c00157{transform:matrix(0.296850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296850,0.000000,0.000000,0.250000,0,0);}
.m6e_c00157{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m60_c00157{transform:matrix(0.297375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297375,0.000000,0.000000,0.250000,0,0);}
.m9e_c00157{transform:matrix(0.297483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297483,0.000000,0.000000,0.250000,0,0);}
.m84_c00157{transform:matrix(0.297566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297566,0.000000,0.000000,0.250000,0,0);}
.m91_c00157{transform:matrix(0.297857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297857,0.000000,0.000000,0.250000,0,0);}
.m81_c00157{transform:matrix(0.298650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298650,0.000000,0.000000,0.250000,0,0);}
.m56_c00157{transform:matrix(0.298729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298729,0.000000,0.000000,0.250000,0,0);}
.mac_c00157{transform:matrix(0.299372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299372,0.000000,0.000000,0.250000,0,0);}
.mb2_c00157{transform:matrix(0.299763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299763,0.000000,0.000000,0.250000,0,0);}
.m7d_c00157{transform:matrix(0.299883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299883,0.000000,0.000000,0.250000,0,0);}
.m3d_c00157{transform:matrix(0.300650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300650,0.000000,0.000000,0.250000,0,0);}
.m1a_c00157{transform:matrix(0.300674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300674,0.000000,0.000000,0.250000,0,0);}
.m73_c00157{transform:matrix(0.301274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301274,0.000000,0.000000,0.250000,0,0);}
.m5d_c00157{transform:matrix(0.301637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301637,0.000000,0.000000,0.250000,0,0);}
.m59_c00157{transform:matrix(0.301760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301760,0.000000,0.000000,0.250000,0,0);}
.mc1_c00157{transform:matrix(0.301856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301856,0.000000,0.000000,0.250000,0,0);}
.m9c_c00157{transform:matrix(0.301877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301877,0.000000,0.000000,0.250000,0,0);}
.m39_c00157{transform:matrix(0.302567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302567,0.000000,0.000000,0.250000,0,0);}
.mba_c00157{transform:matrix(0.302668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302668,0.000000,0.000000,0.250000,0,0);}
.m48_c00157{transform:matrix(0.303651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303651,0.000000,0.000000,0.250000,0,0);}
.m9b_c00157{transform:matrix(0.304878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304878,0.000000,0.000000,0.250000,0,0);}
.mbb_c00157{transform:matrix(0.305013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305013,0.000000,0.000000,0.250000,0,0);}
.m66_c00157{transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);}
.m63_c00157{transform:matrix(0.305859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305859,0.000000,0.000000,0.250000,0,0);}
.m98_c00157{transform:matrix(0.306607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306607,0.000000,0.000000,0.250000,0,0);}
.mc_c00157{transform:matrix(0.306874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306874,0.000000,0.000000,0.250000,0,0);}
.m9_c00157{transform:matrix(0.306984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306984,0.000000,0.000000,0.250000,0,0);}
.m50_c00157{transform:matrix(0.307401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307401,0.000000,0.000000,0.250000,0,0);}
.m61_c00157{transform:matrix(0.307943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307943,0.000000,0.000000,0.250000,0,0);}
.ma7_c00157{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m15_c00157{transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);}
.m27_c00157{transform:matrix(0.309146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309146,0.000000,0.000000,0.250000,0,0);}
.m2d_c00157{transform:matrix(0.309397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309397,0.000000,0.000000,0.250000,0,0);}
.m3_c00157{transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);}
.m9a_c00157{transform:matrix(0.311087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311087,0.000000,0.000000,0.250000,0,0);}
.m13_c00157{transform:matrix(0.311458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311458,0.000000,0.000000,0.250000,0,0);}
.mf_c00157{transform:matrix(0.312765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312765,0.000000,0.000000,0.250000,0,0);}
.m77_c00157{transform:matrix(0.312778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312778,0.000000,0.000000,0.250000,0,0);}
.m83_c00157{transform:matrix(0.313344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313344,0.000000,0.000000,0.250000,0,0);}
.md_c00157{transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);}
.m57_c00157{transform:matrix(0.313920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313920,0.000000,0.000000,0.250000,0,0);}
.mb8_c00157{transform:matrix(0.314792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314792,0.000000,0.000000,0.250000,0,0);}
.m44_c00157{transform:matrix(0.315232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315232,0.000000,0.000000,0.250000,0,0);}
.m4c_c00157{transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);}
.m11_c00157{transform:matrix(0.316525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316525,0.000000,0.000000,0.250000,0,0);}
.mc4_c00157{transform:matrix(0.316655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316655,0.000000,0.000000,0.250000,0,0);}
.m8f_c00157{transform:matrix(0.317440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317440,0.000000,0.000000,0.250000,0,0);}
.ma2_c00157{transform:matrix(0.319876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319876,0.000000,0.000000,0.250000,0,0);}
.m62_c00157{transform:matrix(0.321107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321107,0.000000,0.000000,0.250000,0,0);}
.m41_c00157{transform:matrix(0.323390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323390,0.000000,0.000000,0.250000,0,0);}
.m58_c00157{transform:matrix(0.323503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323503,0.000000,0.000000,0.250000,0,0);}
.ma5_c00157{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.m79_c00157{transform:matrix(0.323918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323918,0.000000,0.000000,0.250000,0,0);}
.mb_c00157{transform:matrix(0.324336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324336,0.000000,0.000000,0.250000,0,0);}
.m5b_c00157{transform:matrix(0.325336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325336,0.000000,0.000000,0.250000,0,0);}
.maf_c00157{transform:matrix(0.325412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325412,0.000000,0.000000,0.250000,0,0);}
.m4b_c00157{transform:matrix(0.326214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326214,0.000000,0.000000,0.250000,0,0);}
.m36_c00157{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.mbd_c00157{transform:matrix(0.327297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327297,0.000000,0.000000,0.250000,0,0);}
.m3b_c00157{transform:matrix(0.328705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328705,0.000000,0.000000,0.250000,0,0);}
.m6f_c00157{transform:matrix(0.330415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330415,0.000000,0.000000,0.250000,0,0);}
.m34_c00157{transform:matrix(0.338602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338602,0.000000,0.000000,0.250000,0,0);}
.m99_c00157{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m6c_c00157{transform:matrix(0.341020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341020,0.000000,0.000000,0.250000,0,0);}
.m8b_c00157{transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);}
.m69_c00157{transform:matrix(0.341530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341530,0.000000,0.000000,0.250000,0,0);}
.mc3_c00157{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.m19_c00157{transform:matrix(0.348765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348765,0.000000,0.000000,0.250000,0,0);}
.mad_c00157{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.mb6_c00157{transform:matrix(0.353269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353269,0.000000,0.000000,0.250000,0,0);}
.m2b_c00157{transform:matrix(0.353407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353407,0.000000,0.000000,0.250000,0,0);}
.m4a_c00157{transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);}
.m42_c00157{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m4_c00157{transform:matrix(0.359480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359480,0.000000,0.000000,0.250000,0,0);}
.m46_c00157{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);}
.mb0_c00157{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m9d_c00157{transform:matrix(0.362683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362683,0.000000,0.000000,0.250000,0,0);}
.m78_c00157{transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);}
.m5e_c00157{transform:matrix(0.369771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369771,0.000000,0.000000,0.250000,0,0);}
.m6_c00157{transform:matrix(0.385852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385852,0.000000,0.000000,0.250000,0,0);}
.m49_c00157{transform:matrix(0.414699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414699,0.000000,0.000000,0.250000,0,0);}
.m87_c00157{transform:matrix(0.424628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424628,0.000000,0.000000,0.250000,0,0);}
.v0_c00157{vertical-align:0.000000px;}
.ls9_c00157{letter-spacing:-3.465000px;}
.ls6_c00157{letter-spacing:-2.986830px;}
.lsc_c00157{letter-spacing:-2.744280px;}
.ls18_c00157{letter-spacing:-1.819066px;}
.ls7_c00157{letter-spacing:0.000000px;}
.lsa_c00157{letter-spacing:0.250906px;}
.ls0_c00157{letter-spacing:0.533174px;}
.ls1_c00157{letter-spacing:0.541015px;}
.ls15_c00157{letter-spacing:1.246687px;}
.ls2_c00157{letter-spacing:1.387822px;}
.ls11_c00157{letter-spacing:1.819066px;}
.lsd_c00157{letter-spacing:2.138400px;}
.ls14_c00157{letter-spacing:2.360081px;}
.ls12_c00157{letter-spacing:3.112798px;}
.ls16_c00157{letter-spacing:3.246091px;}
.ls17_c00157{letter-spacing:3.484810px;}
.lse_c00157{letter-spacing:3.603610px;}
.ls3_c00157{letter-spacing:3.653813px;}
.lsf_c00157{letter-spacing:3.801610px;}
.ls8_c00157{letter-spacing:3.920400px;}
.ls10_c00157{letter-spacing:4.118400px;}
.ls5_c00157{letter-spacing:4.266900px;}
.lsb_c00157{letter-spacing:4.395610px;}
.ls4_c00157{letter-spacing:4.782096px;}
.ls13_c00157{letter-spacing:52.747398px;}
.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;}
}
.ws3_c00157{word-spacing:-23.255813px;}
.ws2_c00157{word-spacing:-20.143015px;}
.ws1_c00157{word-spacing:-19.852906px;}
.ws0_c00157{word-spacing:-19.602000px;}
.ws4_c00157{word-spacing:0.000000px;}
._e_c00157{margin-left:-5.802192px;}
._11_c00157{margin-left:-2.055082px;}
._6_c00157{width:1.144757px;}
._b_c00157{width:4.626072px;}
._9_c00157{width:7.213536px;}
._4_c00157{width:8.624880px;}
._3_c00157{width:10.035828px;}
._a_c00157{width:14.113440px;}
._0_c00157{width:16.152048px;}
._7_c00157{width:20.856528px;}
._2_c00157{width:22.267872px;}
._f_c00157{width:23.753030px;}
._8_c00157{width:27.270302px;}
._c_c00157{width:28.854540px;}
._10_c00157{width:31.206384px;}
._d_c00157{width:33.166584px;}
._12_c00157{width:34.577928px;}
._5_c00157{width:38.733156px;}
._1_c00157{width:41.164200px;}
._13_c00157{width:42.431400px;}
.fc0_c00157{color:transparent;}
.fs4_c00157{font-size:42.768000px;}
.fs8_c00157{font-size:52.747398px;}
.fs9_c00157{font-size:69.696198px;}
.fs5_c00157{font-size:72.072198px;}
.fs6_c00157{font-size:76.032198px;}
.fs1_c00157{font-size:78.408000px;}
.fs7_c00157{font-size:82.368000px;}
.fs0_c00157{font-size:85.338000px;}
.fs3_c00157{font-size:87.912198px;}
.fs2_c00157{font-size:99.000000px;}
.y0_c00157{bottom:0.000000px;}
.y1_c00157{bottom:76.500000px;}
.y1a_c00157{bottom:148.525785px;}
.y19_c00157{bottom:179.181135px;}
.y18_c00157{bottom:214.464735px;}
.y17_c00157{bottom:277.903935px;}
.y16_c00157{bottom:311.756985px;}
.y15_c00157{bottom:343.837935px;}
.y14_c00157{bottom:376.626735px;}
.y13_c00157{bottom:408.702735px;}
.y12_c00157{bottom:440.773785px;}
.y11_c00157{bottom:472.498335px;}
.y10_c00157{bottom:504.569385px;}
.yf_c00157{bottom:530.230185px;}
.ye_c00157{bottom:537.006735px;}
.yd_c00157{bottom:569.082735px;}
.yc_c00157{bottom:602.227935px;}
.yb_c00157{bottom:634.660335px;}
.ya_c00157{bottom:666.731385px;}
.y9_c00157{bottom:699.163785px;}
.y8_c00157{bottom:731.244735px;}
.y7_c00157{bottom:796.104585px;}
.y6_c00157{bottom:829.254735px;}
.y5_c00157{bottom:862.043535px;}
.y4_c00157{bottom:894.114585px;}
.y3_c00157{bottom:927.621135px;}
.y2_c00157{bottom:1076.591385px;}
.hb_c00157{height:35.129767px;}
.h6_c00157{height:41.974453px;}
.hc_c00157{height:72.690957px;}
.h8_c00157{height:74.621444px;}
.h7_c00157{height:75.169050px;}
.h3_c00157{height:76.953164px;}
.h9_c00157{height:78.149118px;}
.ha_c00157{height:80.839688px;}
.h2_c00157{height:83.754580px;}
.h5_c00157{height:86.281015px;}
.h4_c00157{height:97.163086px;}
.h1_c00157{height:1110.000000px;}
.h0_c00157{height:1263.000000px;}
.w1_c00157{width:733.500000px;}
.w0_c00157{width:892.500000px;}
.x0_c00157{left:0.000000px;}
.x3d_c00157{left:64.468335px;}
.x13_c00157{left:66.067185px;}
.x5b_c00157{left:67.586835px;}
.x29_c00157{left:76.397835px;}
.x1_c00157{left:79.500000px;}
.x45_c00157{left:87.827385px;}
.x56_c00157{left:97.910535px;}
.x61_c00157{left:99.558885px;}
.x2a_c00157{left:108.666885px;}
.x4c_c00157{left:110.933985px;}
.x55_c00157{left:113.527785px;}
.x4_c00157{left:120.383535px;}
.x66_c00157{left:122.427885px;}
.x5_c00157{left:131.996235px;}
.x65_c00157{left:134.891985px;}
.x14_c00157{left:143.069385px;}
.x1d_c00157{left:152.905035px;}
.x50_c00157{left:154.132635px;}
.x5d_c00157{left:155.196885px;}
.x6_c00157{left:165.185985px;}
.x67_c00157{left:166.769985px;}
.x7_c00157{left:175.996785px;}
.x5e_c00157{left:177.051135px;}
.x31_c00157{left:179.045985px;}
.x6e_c00157{left:180.397335px;}
.x15_c00157{left:187.272885px;}
.x68_c00157{left:189.401385px;}
.x3e_c00157{left:198.321285px;}
.x34_c00157{left:209.374635px;}
.x6f_c00157{left:210.958635px;}
.x8_c00157{left:219.581535px;}
.x51_c00157{left:221.002185px;}
.x69_c00157{left:222.170385px;}
.x16_c00157{left:231.461535px;}
.x57_c00157{left:232.867335px;}
.x9_c00157{left:242.311935px;}
.x35_c00157{left:253.954335px;}
.x6a_c00157{left:256.038285px;}
.x2b_c00157{left:264.611685px;}
.xa_c00157{left:265.670985px;}
.x17_c00157{left:272.125785px;}
.x52_c00157{left:275.447235px;}
.x1e_c00157{left:276.719385px;}
.x36_c00157{left:285.792735px;}
.x18_c00157{left:287.233185px;}
.x5f_c00157{left:288.406335px;}
.x42_c00157{left:289.960635px;}
.x58_c00157{left:299.132985px;}
.x1f_c00157{left:309.325035px;}
.x32_c00157{left:311.552535px;}
.x3f_c00157{left:320.630835px;}
.x6b_c00157{left:321.977235px;}
.xb_c00157{left:329.991285px;}
.x60_c00157{left:331.778235px;}
.x20_c00157{left:341.950485px;}
.x5c_c00157{left:342.994935px;}
.x37_c00157{left:352.875135px;}
.x40_c00157{left:363.502785px;}
.x38_c00157{left:364.745235px;}
.x33_c00157{left:365.977785px;}
.xc_c00157{left:375.268935px;}
.x6c_c00157{left:376.847985px;}
.x2c_c00157{left:386.307435px;}
.xd_c00157{left:397.177635px;}
.x59_c00157{left:399.281385px;}
.x21_c00157{left:408.587385px;}
.x62_c00157{left:410.027835px;}
.x39_c00157{left:418.739835px;}
.x70_c00157{left:420.878235px;}
.x19_c00157{left:429.996135px;}
.x4a_c00157{left:431.406885px;}
.x43_c00157{left:432.980985px;}
.x1a_c00157{left:438.025035px;}
.x53_c00157{left:442.440435px;}
.x2d_c00157{left:452.078085px;}
.x4b_c00157{left:453.449235px;}
.x22_c00157{left:463.760085px;}
.xe_c00157{left:474.496635px;}
.x3a_c00157{left:485.911335px;}
.x54_c00157{left:496.781535px;}
.x71_c00157{left:498.019035px;}
.x4d_c00157{left:499.187235px;}
.x2e_c00157{left:508.018035px;}
.x23_c00157{left:518.338785px;}
.xf_c00157{left:529.773285px;}
.x63_c00157{left:537.406185px;}
.x3b_c00157{left:539.599035px;}
.x24_c00157{left:541.217685px;}
.x1b_c00157{left:551.865135px;}
.x46_c00157{left:552.889785px;}
.x44_c00157{left:562.334385px;}
.x25_c00157{left:563.606535px;}
.x3c_c00157{left:574.961835px;}
.x10_c00157{left:584.906385px;}
.x64_c00157{left:585.911235px;}
.x1c_c00157{left:594.454935px;}
.x26_c00157{left:596.038935px;}
.x2f_c00157{left:606.275535px;}
.x47_c00157{left:607.646685px;}
.x11_c00157{left:616.967535px;}
.x48_c00157{left:618.482235px;}
.x72_c00157{left:621.076035px;}
.x12_c00157{left:628.659435px;}
.x6d_c00157{left:629.733585px;}
.x2_c00157{left:640.173135px;}
.x4e_c00157{left:642.187785px;}
.x30_c00157{left:650.914635px;}
.x27_c00157{left:661.641285px;}
.x3_c00157{left:662.982735px;}
.x41_c00157{left:673.402485px;}
.x73_c00157{left:674.417235px;}
.x28_c00157{left:684.782535px;}
.x49_c00157{left:694.756785px;}
.x74_c00157{left:696.009135px;}
.x4f_c00157{left:708.136635px;}
.x5a_c00157{left:719.630535px;}
@media print{
.v0_c00157{vertical-align:0.000000pt;}
.ls9_c00157{letter-spacing:-3.080000pt;}
.ls6_c00157{letter-spacing:-2.654960pt;}
.lsc_c00157{letter-spacing:-2.439360pt;}
.ls18_c00157{letter-spacing:-1.616947pt;}
.ls7_c00157{letter-spacing:0.000000pt;}
.lsa_c00157{letter-spacing:0.223027pt;}
.ls0_c00157{letter-spacing:0.473933pt;}
.ls1_c00157{letter-spacing:0.480902pt;}
.ls15_c00157{letter-spacing:1.108166pt;}
.ls2_c00157{letter-spacing:1.233619pt;}
.ls11_c00157{letter-spacing:1.616947pt;}
.lsd_c00157{letter-spacing:1.900800pt;}
.ls14_c00157{letter-spacing:2.097850pt;}
.ls12_c00157{letter-spacing:2.766931pt;}
.ls16_c00157{letter-spacing:2.885414pt;}
.ls17_c00157{letter-spacing:3.097609pt;}
.lse_c00157{letter-spacing:3.203209pt;}
.ls3_c00157{letter-spacing:3.247834pt;}
.lsf_c00157{letter-spacing:3.379209pt;}
.ls8_c00157{letter-spacing:3.484800pt;}
.ls10_c00157{letter-spacing:3.660800pt;}
.ls5_c00157{letter-spacing:3.792800pt;}
.lsb_c00157{letter-spacing:3.907209pt;}
.ls4_c00157{letter-spacing:4.250752pt;}
.ls13_c00157{letter-spacing:46.886576pt;}
.ws3_c00157{word-spacing:-20.671834pt;}
.ws2_c00157{word-spacing:-17.904902pt;}
.ws1_c00157{word-spacing:-17.647027pt;}
.ws0_c00157{word-spacing:-17.424000pt;}
.ws4_c00157{word-spacing:0.000000pt;}
._e_c00157{margin-left:-5.157504pt;}
._11_c00157{margin-left:-1.826739pt;}
._6_c00157{width:1.017562pt;}
._b_c00157{width:4.112064pt;}
._9_c00157{width:6.412032pt;}
._4_c00157{width:7.666560pt;}
._3_c00157{width:8.920736pt;}
._a_c00157{width:12.545280pt;}
._0_c00157{width:14.357376pt;}
._7_c00157{width:18.539136pt;}
._2_c00157{width:19.793664pt;}
._f_c00157{width:21.113805pt;}
._8_c00157{width:24.240269pt;}
._c_c00157{width:25.648480pt;}
._10_c00157{width:27.739008pt;}
._d_c00157{width:29.481408pt;}
._12_c00157{width:30.735936pt;}
._5_c00157{width:34.429472pt;}
._1_c00157{width:36.590400pt;}
._13_c00157{width:37.716800pt;}
.fs4_c00157{font-size:38.016000pt;}
.fs8_c00157{font-size:46.886576pt;}
.fs9_c00157{font-size:61.952176pt;}
.fs5_c00157{font-size:64.064176pt;}
.fs6_c00157{font-size:67.584176pt;}
.fs1_c00157{font-size:69.696000pt;}
.fs7_c00157{font-size:73.216000pt;}
.fs0_c00157{font-size:75.856000pt;}
.fs3_c00157{font-size:78.144176pt;}
.fs2_c00157{font-size:88.000000pt;}
.y0_c00157{bottom:0.000000pt;}
.y1_c00157{bottom:68.000000pt;}
.y1a_c00157{bottom:132.022920pt;}
.y19_c00157{bottom:159.272120pt;}
.y18_c00157{bottom:190.635320pt;}
.y17_c00157{bottom:247.025720pt;}
.y16_c00157{bottom:277.117320pt;}
.y15_c00157{bottom:305.633720pt;}
.y14_c00157{bottom:334.779320pt;}
.y13_c00157{bottom:363.291320pt;}
.y12_c00157{bottom:391.798920pt;}
.y11_c00157{bottom:419.998520pt;}
.y10_c00157{bottom:448.506120pt;}
.yf_c00157{bottom:471.315720pt;}
.ye_c00157{bottom:477.339320pt;}
.yd_c00157{bottom:505.851320pt;}
.yc_c00157{bottom:535.313720pt;}
.yb_c00157{bottom:564.142520pt;}
.ya_c00157{bottom:592.650120pt;}
.y9_c00157{bottom:621.478920pt;}
.y8_c00157{bottom:649.995320pt;}
.y7_c00157{bottom:707.648520pt;}
.y6_c00157{bottom:737.115320pt;}
.y5_c00157{bottom:766.260920pt;}
.y4_c00157{bottom:794.768520pt;}
.y3_c00157{bottom:824.552120pt;}
.y2_c00157{bottom:956.970120pt;}
.hb_c00157{height:31.226460pt;}
.h6_c00157{height:37.310625pt;}
.hc_c00157{height:64.614184pt;}
.h8_c00157{height:66.330173pt;}
.h7_c00157{height:66.816934pt;}
.h3_c00157{height:68.402813pt;}
.h9_c00157{height:69.465883pt;}
.ha_c00157{height:71.857500pt;}
.h2_c00157{height:74.448516pt;}
.h5_c00157{height:76.694235pt;}
.h4_c00157{height:86.367188pt;}
.h1_c00157{height:986.666667pt;}
.h0_c00157{height:1122.666667pt;}
.w1_c00157{width:652.000000pt;}
.w0_c00157{width:793.333333pt;}
.x0_c00157{left:0.000000pt;}
.x3d_c00157{left:57.305187pt;}
.x13_c00157{left:58.726387pt;}
.x5b_c00157{left:60.077187pt;}
.x29_c00157{left:67.909187pt;}
.x1_c00157{left:70.666667pt;}
.x45_c00157{left:78.068787pt;}
.x56_c00157{left:87.031587pt;}
.x61_c00157{left:88.496787pt;}
.x2a_c00157{left:96.592787pt;}
.x4c_c00157{left:98.607987pt;}
.x55_c00157{left:100.913587pt;}
.x4_c00157{left:107.007587pt;}
.x66_c00157{left:108.824787pt;}
.x5_c00157{left:117.329987pt;}
.x65_c00157{left:119.903987pt;}
.x14_c00157{left:127.172787pt;}
.x1d_c00157{left:135.915587pt;}
.x50_c00157{left:137.006787pt;}
.x5d_c00157{left:137.952787pt;}
.x6_c00157{left:146.831987pt;}
.x67_c00157{left:148.239987pt;}
.x7_c00157{left:156.441587pt;}
.x5e_c00157{left:157.378787pt;}
.x31_c00157{left:159.151987pt;}
.x6e_c00157{left:160.353187pt;}
.x15_c00157{left:166.464787pt;}
.x68_c00157{left:168.356787pt;}
.x3e_c00157{left:176.285587pt;}
.x34_c00157{left:186.110787pt;}
.x6f_c00157{left:187.518787pt;}
.x8_c00157{left:195.183587pt;}
.x51_c00157{left:196.446387pt;}
.x69_c00157{left:197.484787pt;}
.x16_c00157{left:205.743587pt;}
.x57_c00157{left:206.993187pt;}
.x9_c00157{left:215.388387pt;}
.x35_c00157{left:225.737187pt;}
.x6a_c00157{left:227.589587pt;}
.x2b_c00157{left:235.210387pt;}
.xa_c00157{left:236.151987pt;}
.x17_c00157{left:241.889587pt;}
.x52_c00157{left:244.841987pt;}
.x1e_c00157{left:245.972787pt;}
.x36_c00157{left:254.037987pt;}
.x18_c00157{left:255.318387pt;}
.x5f_c00157{left:256.361187pt;}
.x42_c00157{left:257.742787pt;}
.x58_c00157{left:265.895987pt;}
.x1f_c00157{left:274.955587pt;}
.x32_c00157{left:276.935587pt;}
.x3f_c00157{left:285.005187pt;}
.x6b_c00157{left:286.201987pt;}
.xb_c00157{left:293.325587pt;}
.x60_c00157{left:294.913987pt;}
.x20_c00157{left:303.955987pt;}
.x5c_c00157{left:304.884387pt;}
.x37_c00157{left:313.666787pt;}
.x40_c00157{left:323.113587pt;}
.x38_c00157{left:324.217987pt;}
.x33_c00157{left:325.313587pt;}
.xc_c00157{left:333.572387pt;}
.x6c_c00157{left:334.975987pt;}
.x2c_c00157{left:343.384387pt;}
.xd_c00157{left:353.046787pt;}
.x59_c00157{left:354.916787pt;}
.x21_c00157{left:363.188787pt;}
.x62_c00157{left:364.469187pt;}
.x39_c00157{left:372.213187pt;}
.x70_c00157{left:374.113987pt;}
.x19_c00157{left:382.218787pt;}
.x4a_c00157{left:383.472787pt;}
.x43_c00157{left:384.871987pt;}
.x1a_c00157{left:389.355587pt;}
.x53_c00157{left:393.280387pt;}
.x2d_c00157{left:401.847187pt;}
.x4b_c00157{left:403.065987pt;}
.x22_c00157{left:412.231187pt;}
.xe_c00157{left:421.774787pt;}
.x3a_c00157{left:431.921187pt;}
.x54_c00157{left:441.583587pt;}
.x71_c00157{left:442.683587pt;}
.x4d_c00157{left:443.721987pt;}
.x2e_c00157{left:451.571587pt;}
.x23_c00157{left:460.745587pt;}
.xf_c00157{left:470.909587pt;}
.x63_c00157{left:477.694387pt;}
.x3b_c00157{left:479.643587pt;}
.x24_c00157{left:481.082387pt;}
.x1b_c00157{left:490.546787pt;}
.x46_c00157{left:491.457587pt;}
.x44_c00157{left:499.852787pt;}
.x25_c00157{left:500.983587pt;}
.x3c_c00157{left:511.077187pt;}
.x10_c00157{left:519.916787pt;}
.x64_c00157{left:520.809987pt;}
.x1c_c00157{left:528.404387pt;}
.x26_c00157{left:529.812387pt;}
.x2f_c00157{left:538.911587pt;}
.x47_c00157{left:540.130387pt;}
.x11_c00157{left:548.415587pt;}
.x48_c00157{left:549.761987pt;}
.x72_c00157{left:552.067587pt;}
.x12_c00157{left:558.808387pt;}
.x6d_c00157{left:559.763187pt;}
.x2_c00157{left:569.042787pt;}
.x4e_c00157{left:570.833587pt;}
.x30_c00157{left:578.590787pt;}
.x27_c00157{left:588.125587pt;}
.x3_c00157{left:589.317987pt;}
.x41_c00157{left:598.579987pt;}
.x73_c00157{left:599.481987pt;}
.x28_c00157{left:608.695587pt;}
.x49_c00157{left:617.561587pt;}
.x74_c00157{left:618.674787pt;}
.x4f_c00157{left:629.454787pt;}
.x5a_c00157{left:639.671587pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2d08decd8130632c0dbda953.woff2')format("woff");}.ff1_c00158{font-family:ff1_c00158;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00158;src:url('chunks/assets/font_e33410d3e6c429afa689c8f5.woff2')format("woff");}.ff2_c00158{font-family:ff2_c00158;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00158;src:url('chunks/assets/font_78fdd912dfd905f27868dfaf.woff2')format("woff");}.ff3_c00158{font-family:ff3_c00158;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00158;src:url('chunks/assets/font_08cb79062079c858a4e5948b.woff2')format("woff");}.ff4_c00158{font-family:ff4_c00158;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00158;src:url('chunks/assets/font_0cf1208712f391368466cd2a.woff2')format("woff");}.ff5_c00158{font-family:ff5_c00158;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5c_c00158{transform:matrix(0.167396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167396,0.000000,0.000000,0.250000,0,0);}
.m48_c00158{transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);}
.maa_c00158{transform:matrix(0.198611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198611,0.000000,0.000000,0.250000,0,0);}
.m8b_c00158{transform:matrix(0.205427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205427,0.000000,0.000000,0.250000,0,0);}
.m49_c00158{transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);}
.m47_c00158{transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);}
.ma9_c00158{transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);}
.mb4_c00158{transform:matrix(0.228445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228445,0.000000,0.000000,0.250000,0,0);}
.m1b_c00158{transform:matrix(0.246419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246419,0.000000,0.000000,0.250000,0,0);}
.m0_c00158{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00158{transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);}
.mb0_c00158{transform:matrix(0.250315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250315,0.000000,0.000000,0.250000,0,0);}
.md_c00158{transform:matrix(0.251301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251301,0.000000,0.000000,0.250000,0,0);}
.mb_c00158{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.md0_c00158{transform:matrix(0.256571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256571,0.000000,0.000000,0.250000,0,0);}
.ma7_c00158{transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);}
.m97_c00158{transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);}
.md3_c00158{transform:matrix(0.258596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258596,0.000000,0.000000,0.250000,0,0);}
.mb3_c00158{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.maf_c00158{transform:matrix(0.258759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258759,0.000000,0.000000,0.250000,0,0);}
.mab_c00158{transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);}
.mc7_c00158{transform:matrix(0.259641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259641,0.000000,0.000000,0.250000,0,0);}
.mb7_c00158{transform:matrix(0.260756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260756,0.000000,0.000000,0.250000,0,0);}
.m44_c00158{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m78_c00158{transform:matrix(0.261462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261462,0.000000,0.000000,0.250000,0,0);}
.m6f_c00158{transform:matrix(0.261551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261551,0.000000,0.000000,0.250000,0,0);}
.m69_c00158{transform:matrix(0.262645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262645,0.000000,0.000000,0.250000,0,0);}
.m22_c00158{transform:matrix(0.262979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262979,0.000000,0.000000,0.250000,0,0);}
.m6b_c00158{transform:matrix(0.263278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263278,0.000000,0.000000,0.250000,0,0);}
.me_c00158{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m7a_c00158{transform:matrix(0.263305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263305,0.000000,0.000000,0.250000,0,0);}
.m92_c00158{transform:matrix(0.263531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263531,0.000000,0.000000,0.250000,0,0);}
.m54_c00158{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m38_c00158{transform:matrix(0.264764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264764,0.000000,0.000000,0.250000,0,0);}
.m83_c00158{transform:matrix(0.265782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265782,0.000000,0.000000,0.250000,0,0);}
.m73_c00158{transform:matrix(0.266067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266067,0.000000,0.000000,0.250000,0,0);}
.m56_c00158{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m71_c00158{transform:matrix(0.266385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266385,0.000000,0.000000,0.250000,0,0);}
.mcb_c00158{transform:matrix(0.266660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266660,0.000000,0.000000,0.250000,0,0);}
.m80_c00158{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.mc1_c00158{transform:matrix(0.267205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267205,0.000000,0.000000,0.250000,0,0);}
.m6_c00158{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.md9_c00158{transform:matrix(0.268484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268484,0.000000,0.000000,0.250000,0,0);}
.m32_c00158{transform:matrix(0.268753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268753,0.000000,0.000000,0.250000,0,0);}
.m74_c00158{transform:matrix(0.270030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270030,0.000000,0.000000,0.250000,0,0);}
.m45_c00158{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m43_c00158{transform:matrix(0.270977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270977,0.000000,0.000000,0.250000,0,0);}
.mcd_c00158{transform:matrix(0.271124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271124,0.000000,0.000000,0.250000,0,0);}
.m4e_c00158{transform:matrix(0.271398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271398,0.000000,0.000000,0.250000,0,0);}
.m2f_c00158{transform:matrix(0.271455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271455,0.000000,0.000000,0.250000,0,0);}
.m8e_c00158{transform:matrix(0.271931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271931,0.000000,0.000000,0.250000,0,0);}
.mba_c00158{transform:matrix(0.272477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272477,0.000000,0.000000,0.250000,0,0);}
.m28_c00158{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m13_c00158{transform:matrix(0.272544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272544,0.000000,0.000000,0.250000,0,0);}
.m7_c00158{transform:matrix(0.272813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272813,0.000000,0.000000,0.250000,0,0);}
.m1e_c00158{transform:matrix(0.273136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273136,0.000000,0.000000,0.250000,0,0);}
.ma_c00158{transform:matrix(0.273537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273537,0.000000,0.000000,0.250000,0,0);}
.m2_c00158{transform:matrix(0.273582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273582,0.000000,0.000000,0.250000,0,0);}
.m1_c00158{transform:matrix(0.273795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273795,0.000000,0.000000,0.250000,0,0);}
.m7c_c00158{transform:matrix(0.273847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273847,0.000000,0.000000,0.250000,0,0);}
.mc6_c00158{transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);}
.m31_c00158{transform:matrix(0.274157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274157,0.000000,0.000000,0.250000,0,0);}
.m2c_c00158{transform:matrix(0.274278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274278,0.000000,0.000000,0.250000,0,0);}
.mc2_c00158{transform:matrix(0.274442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274442,0.000000,0.000000,0.250000,0,0);}
.m30_c00158{transform:matrix(0.274708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274708,0.000000,0.000000,0.250000,0,0);}
.ma6_c00158{transform:matrix(0.275287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275287,0.000000,0.000000,0.250000,0,0);}
.mc5_c00158{transform:matrix(0.275453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275453,0.000000,0.000000,0.250000,0,0);}
.md1_c00158{transform:matrix(0.275596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275596,0.000000,0.000000,0.250000,0,0);}
.m77_c00158{transform:matrix(0.276926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276926,0.000000,0.000000,0.250000,0,0);}
.m40_c00158{transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);}
.mce_c00158{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m6d_c00158{transform:matrix(0.277309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277309,0.000000,0.000000,0.250000,0,0);}
.m9b_c00158{transform:matrix(0.277323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277323,0.000000,0.000000,0.250000,0,0);}
.mbc_c00158{transform:matrix(0.277585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277585,0.000000,0.000000,0.250000,0,0);}
.m9d_c00158{transform:matrix(0.277907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277907,0.000000,0.000000,0.250000,0,0);}
.ma3_c00158{transform:matrix(0.278110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278110,0.000000,0.000000,0.250000,0,0);}
.md2_c00158{transform:matrix(0.278302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278302,0.000000,0.000000,0.250000,0,0);}
.m10_c00158{transform:matrix(0.278383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278383,0.000000,0.000000,0.250000,0,0);}
.mbe_c00158{transform:matrix(0.279129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279129,0.000000,0.000000,0.250000,0,0);}
.m8f_c00158{transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);}
.m85_c00158{transform:matrix(0.280020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280020,0.000000,0.000000,0.250000,0,0);}
.m20_c00158{transform:matrix(0.280064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280064,0.000000,0.000000,0.250000,0,0);}
.mb8_c00158{transform:matrix(0.280146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280146,0.000000,0.000000,0.250000,0,0);}
.m2e_c00158{transform:matrix(0.280644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280644,0.000000,0.000000,0.250000,0,0);}
.m9e_c00158{transform:matrix(0.280900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280900,0.000000,0.000000,0.250000,0,0);}
.m8d_c00158{transform:matrix(0.281499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281499,0.000000,0.000000,0.250000,0,0);}
.m6e_c00158{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.m9f_c00158{transform:matrix(0.282051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282051,0.000000,0.000000,0.250000,0,0);}
.mbd_c00158{transform:matrix(0.282371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282371,0.000000,0.000000,0.250000,0,0);}
.m72_c00158{transform:matrix(0.282543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282543,0.000000,0.000000,0.250000,0,0);}
.m84_c00158{transform:matrix(0.283223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283223,0.000000,0.000000,0.250000,0,0);}
.ma8_c00158{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m52_c00158{transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);}
.m29_c00158{transform:matrix(0.284187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284187,0.000000,0.000000,0.250000,0,0);}
.m3b_c00158{transform:matrix(0.284435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284435,0.000000,0.000000,0.250000,0,0);}
.mcf_c00158{transform:matrix(0.286235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286235,0.000000,0.000000,0.250000,0,0);}
.m3e_c00158{transform:matrix(0.286407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286407,0.000000,0.000000,0.250000,0,0);}
.m88_c00158{transform:matrix(0.286804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286804,0.000000,0.000000,0.250000,0,0);}
.ma1_c00158{transform:matrix(0.287684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287684,0.000000,0.000000,0.250000,0,0);}
.m99_c00158{transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);}
.md6_c00158{transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);}
.md5_c00158{transform:matrix(0.289287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289287,0.000000,0.000000,0.250000,0,0);}
.m41_c00158{transform:matrix(0.289313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289313,0.000000,0.000000,0.250000,0,0);}
.m21_c00158{transform:matrix(0.289795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289795,0.000000,0.000000,0.250000,0,0);}
.m16_c00158{transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);}
.ma5_c00158{transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);}
.m5e_c00158{transform:matrix(0.290752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290752,0.000000,0.000000,0.250000,0,0);}
.m25_c00158{transform:matrix(0.290806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290806,0.000000,0.000000,0.250000,0,0);}
.m8a_c00158{transform:matrix(0.291012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291012,0.000000,0.000000,0.250000,0,0);}
.m5_c00158{transform:matrix(0.291104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291104,0.000000,0.000000,0.250000,0,0);}
.m6c_c00158{transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);}
.m3a_c00158{transform:matrix(0.292744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292744,0.000000,0.000000,0.250000,0,0);}
.m7e_c00158{transform:matrix(0.293146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293146,0.000000,0.000000,0.250000,0,0);}
.ma4_c00158{transform:matrix(0.293487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293487,0.000000,0.000000,0.250000,0,0);}
.m3c_c00158{transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);}
.m81_c00158{transform:matrix(0.293903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293903,0.000000,0.000000,0.250000,0,0);}
.m51_c00158{transform:matrix(0.293983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293983,0.000000,0.000000,0.250000,0,0);}
.m5f_c00158{transform:matrix(0.294037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294037,0.000000,0.000000,0.250000,0,0);}
.m1d_c00158{transform:matrix(0.294090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294090,0.000000,0.000000,0.250000,0,0);}
.m65_c00158{transform:matrix(0.294443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294443,0.000000,0.000000,0.250000,0,0);}
.m1a_c00158{transform:matrix(0.295241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295241,0.000000,0.000000,0.250000,0,0);}
.m2a_c00158{transform:matrix(0.295472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295472,0.000000,0.000000,0.250000,0,0);}
.m68_c00158{transform:matrix(0.295581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295581,0.000000,0.000000,0.250000,0,0);}
.m4a_c00158{transform:matrix(0.295906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295906,0.000000,0.000000,0.250000,0,0);}
.m90_c00158{transform:matrix(0.295938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295938,0.000000,0.000000,0.250000,0,0);}
.mac_c00158{transform:matrix(0.296397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296397,0.000000,0.000000,0.250000,0,0);}
.m34_c00158{transform:matrix(0.296444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296444,0.000000,0.000000,0.250000,0,0);}
.ma2_c00158{transform:matrix(0.297306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297306,0.000000,0.000000,0.250000,0,0);}
.mbb_c00158{transform:matrix(0.297687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297687,0.000000,0.000000,0.250000,0,0);}
.m4c_c00158{transform:matrix(0.298645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298645,0.000000,0.000000,0.250000,0,0);}
.m7b_c00158{transform:matrix(0.299795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299795,0.000000,0.000000,0.250000,0,0);}
.m37_c00158{transform:matrix(0.300215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300215,0.000000,0.000000,0.250000,0,0);}
.m5a_c00158{transform:matrix(0.300360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300360,0.000000,0.000000,0.250000,0,0);}
.m67_c00158{transform:matrix(0.300499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300499,0.000000,0.000000,0.250000,0,0);}
.m98_c00158{transform:matrix(0.302110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302110,0.000000,0.000000,0.250000,0,0);}
.m18_c00158{transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);}
.m75_c00158{transform:matrix(0.303158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303158,0.000000,0.000000,0.250000,0,0);}
.m64_c00158{transform:matrix(0.304109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304109,0.000000,0.000000,0.250000,0,0);}
.mb6_c00158{transform:matrix(0.304209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304209,0.000000,0.000000,0.250000,0,0);}
.m60_c00158{transform:matrix(0.304490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304490,0.000000,0.000000,0.250000,0,0);}
.mc3_c00158{transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);}
.m2b_c00158{transform:matrix(0.305345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305345,0.000000,0.000000,0.250000,0,0);}
.mca_c00158{transform:matrix(0.305455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305455,0.000000,0.000000,0.250000,0,0);}
.m50_c00158{transform:matrix(0.305493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305493,0.000000,0.000000,0.250000,0,0);}
.m46_c00158{transform:matrix(0.305713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305713,0.000000,0.000000,0.250000,0,0);}
.m55_c00158{transform:matrix(0.305867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305867,0.000000,0.000000,0.250000,0,0);}
.m94_c00158{transform:matrix(0.306208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306208,0.000000,0.000000,0.250000,0,0);}
.mb9_c00158{transform:matrix(0.307176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307176,0.000000,0.000000,0.250000,0,0);}
.md8_c00158{transform:matrix(0.308280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308280,0.000000,0.000000,0.250000,0,0);}
.m24_c00158{transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);}
.mbf_c00158{transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);}
.m53_c00158{transform:matrix(0.310023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310023,0.000000,0.000000,0.250000,0,0);}
.m33_c00158{transform:matrix(0.310079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310079,0.000000,0.000000,0.250000,0,0);}
.mb5_c00158{transform:matrix(0.310335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310335,0.000000,0.000000,0.250000,0,0);}
.m27_c00158{transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);}
.m63_c00158{transform:matrix(0.311442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311442,0.000000,0.000000,0.250000,0,0);}
.m5b_c00158{transform:matrix(0.311458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311458,0.000000,0.000000,0.250000,0,0);}
.m26_c00158{transform:matrix(0.312531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312531,0.000000,0.000000,0.250000,0,0);}
.m89_c00158{transform:matrix(0.312773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312773,0.000000,0.000000,0.250000,0,0);}
.md4_c00158{transform:matrix(0.313434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313434,0.000000,0.000000,0.250000,0,0);}
.m61_c00158{transform:matrix(0.314545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314545,0.000000,0.000000,0.250000,0,0);}
.mc4_c00158{transform:matrix(0.315515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315515,0.000000,0.000000,0.250000,0,0);}
.m82_c00158{transform:matrix(0.315717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315717,0.000000,0.000000,0.250000,0,0);}
.m86_c00158{transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);}
.m4b_c00158{transform:matrix(0.317242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317242,0.000000,0.000000,0.250000,0,0);}
.mad_c00158{transform:matrix(0.317965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317965,0.000000,0.000000,0.250000,0,0);}
.mf_c00158{transform:matrix(0.318143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318143,0.000000,0.000000,0.250000,0,0);}
.m23_c00158{transform:matrix(0.318616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318616,0.000000,0.000000,0.250000,0,0);}
.m93_c00158{transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);}
.mb2_c00158{transform:matrix(0.318955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318955,0.000000,0.000000,0.250000,0,0);}
.mc8_c00158{transform:matrix(0.319171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319171,0.000000,0.000000,0.250000,0,0);}
.m9c_c00158{transform:matrix(0.319183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319183,0.000000,0.000000,0.250000,0,0);}
.mcc_c00158{transform:matrix(0.319717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319717,0.000000,0.000000,0.250000,0,0);}
.m79_c00158{transform:matrix(0.319808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319808,0.000000,0.000000,0.250000,0,0);}
.m58_c00158{transform:matrix(0.320105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320105,0.000000,0.000000,0.250000,0,0);}
.m36_c00158{transform:matrix(0.320819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320819,0.000000,0.000000,0.250000,0,0);}
.mda_c00158{transform:matrix(0.320945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320945,0.000000,0.000000,0.250000,0,0);}
.m35_c00158{transform:matrix(0.321048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321048,0.000000,0.000000,0.250000,0,0);}
.m8_c00158{transform:matrix(0.322107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322107,0.000000,0.000000,0.250000,0,0);}
.m11_c00158{transform:matrix(0.322646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322646,0.000000,0.000000,0.250000,0,0);}
.md7_c00158{transform:matrix(0.323210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323210,0.000000,0.000000,0.250000,0,0);}
.m39_c00158{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.m9a_c00158{transform:matrix(0.324586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324586,0.000000,0.000000,0.250000,0,0);}
.m14_c00158{transform:matrix(0.324794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324794,0.000000,0.000000,0.250000,0,0);}
.m91_c00158{transform:matrix(0.324963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324963,0.000000,0.000000,0.250000,0,0);}
.m87_c00158{transform:matrix(0.325360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325360,0.000000,0.000000,0.250000,0,0);}
.m59_c00158{transform:matrix(0.325361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325361,0.000000,0.000000,0.250000,0,0);}
.m17_c00158{transform:matrix(0.325434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325434,0.000000,0.000000,0.250000,0,0);}
.m2d_c00158{transform:matrix(0.325785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325785,0.000000,0.000000,0.250000,0,0);}
.ma0_c00158{transform:matrix(0.326100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326100,0.000000,0.000000,0.250000,0,0);}
.m66_c00158{transform:matrix(0.326313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326313,0.000000,0.000000,0.250000,0,0);}
.m3_c00158{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m12_c00158{transform:matrix(0.327350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327350,0.000000,0.000000,0.250000,0,0);}
.m3d_c00158{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.mdb_c00158{transform:matrix(0.328056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328056,0.000000,0.000000,0.250000,0,0);}
.m5d_c00158{transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);}
.m57_c00158{transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);}
.mc_c00158{transform:matrix(0.331590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331590,0.000000,0.000000,0.250000,0,0);}
.m1c_c00158{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m19_c00158{transform:matrix(0.333791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333791,0.000000,0.000000,0.250000,0,0);}
.m4_c00158{transform:matrix(0.336260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336260,0.000000,0.000000,0.250000,0,0);}
.m62_c00158{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m6a_c00158{transform:matrix(0.340595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340595,0.000000,0.000000,0.250000,0,0);}
.m42_c00158{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.m76_c00158{transform:matrix(0.344154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344154,0.000000,0.000000,0.250000,0,0);}
.m3f_c00158{transform:matrix(0.346854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346854,0.000000,0.000000,0.250000,0,0);}
.m4f_c00158{transform:matrix(0.346948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346948,0.000000,0.000000,0.250000,0,0);}
.mc0_c00158{transform:matrix(0.346958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346958,0.000000,0.000000,0.250000,0,0);}
.m9_c00158{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m95_c00158{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m8c_c00158{transform:matrix(0.359822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359822,0.000000,0.000000,0.250000,0,0);}
.m4d_c00158{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m1f_c00158{transform:matrix(0.366424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366424,0.000000,0.000000,0.250000,0,0);}
.m7d_c00158{transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);}
.m15_c00158{transform:matrix(0.385270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385270,0.000000,0.000000,0.250000,0,0);}
.mb1_c00158{transform:matrix(0.388396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388396,0.000000,0.000000,0.250000,0,0);}
.m70_c00158{transform:matrix(0.408030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408030,0.000000,0.000000,0.250000,0,0);}
.mae_c00158{transform:matrix(0.414699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414699,0.000000,0.000000,0.250000,0,0);}
.m7f_c00158{transform:matrix(0.440068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440068,0.000000,0.000000,0.250000,0,0);}
.m96_c00158{transform:matrix(0.496214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496214,0.000000,0.000000,0.250000,0,0);}
.v0_c00158{vertical-align:0.000000px;}
.ls4_c00158{letter-spacing:-2.744280px;}
.ls11_c00158{letter-spacing:-2.375762px;}
.ls14_c00158{letter-spacing:-2.195424px;}
.ls3_c00158{letter-spacing:-1.897474px;}
.lsc_c00158{letter-spacing:-1.721491px;}
.ls1_c00158{letter-spacing:0.000000px;}
.ls16_c00158{letter-spacing:1.528956px;}
.lsd_c00158{letter-spacing:1.732500px;}
.lse_c00158{letter-spacing:1.890900px;}
.ls8_c00158{letter-spacing:2.509056px;}
.ls0_c00158{letter-spacing:2.563942px;}
.lsa_c00158{letter-spacing:2.653200px;}
.lsb_c00158{letter-spacing:2.728598px;}
.ls10_c00158{letter-spacing:3.112798px;}
.ls5_c00158{letter-spacing:3.544200px;}
.ls6_c00158{letter-spacing:3.559723px;}
.ls9_c00158{letter-spacing:3.880810px;}
.ls2_c00158{letter-spacing:3.920400px;}
.lsf_c00158{letter-spacing:4.237200px;}
.ls17_c00158{letter-spacing:4.514400px;}
.ls13_c00158{letter-spacing:31.363200px;}
.ls7_c00158{letter-spacing:49.896198px;}
.ls15_c00158{letter-spacing:51.321798px;}
.ls12_c00158{letter-spacing:61.300998px;}
.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;}
}
.ws1_c00158{word-spacing:-22.165942px;}
.ws0_c00158{word-spacing:-19.602000px;}
.ws2_c00158{word-spacing:0.000000px;}
._c_c00158{margin-left:-19.994040px;}
._9_c00158{margin-left:-16.544088px;}
._8_c00158{margin-left:-14.191848px;}
._14_c00158{margin-left:-11.761200px;}
._13_c00158{width:1.646568px;}
._a_c00158{width:3.371544px;}
._1_c00158{width:6.272640px;}
._3_c00158{width:7.762392px;}
._6_c00158{width:9.173736px;}
._11_c00158{width:10.507068px;}
._f_c00158{width:17.249760px;}
._4_c00158{width:20.855736px;}
._12_c00158{width:22.267476px;}
._5_c00158{width:23.600808px;}
._2_c00158{width:28.148472px;}
._7_c00158{width:32.617728px;}
._10_c00158{width:34.349832px;}
._b_c00158{width:38.655144px;}
._d_c00158{width:40.144896px;}
._0_c00158{width:41.870268px;}
._e_c00158{width:102.222252px;}
.fc0_c00158{color:transparent;}
.fs6_c00158{font-size:22.176000px;}
.fs1_c00158{font-size:27.720000px;}
.fse_c00158{font-size:31.363200px;}
.fsa_c00158{font-size:34.650000px;}
.fsb_c00158{font-size:37.818000px;}
.fs12_c00158{font-size:39.204000px;}
.fs3_c00158{font-size:47.124000px;}
.fs5_c00158{font-size:49.896198px;}
.fsf_c00158{font-size:51.321798px;}
.fs8_c00158{font-size:53.064000px;}
.fs9_c00158{font-size:60.192000px;}
.fsd_c00158{font-size:61.300998px;}
.fs11_c00158{font-size:67.320000px;}
.fs4_c00158{font-size:70.884000px;}
.fs0_c00158{font-size:72.864000px;}
.fs7_c00158{font-size:77.616198px;}
.fs2_c00158{font-size:78.408000px;}
.fsc_c00158{font-size:84.744000px;}
.fs10_c00158{font-size:90.288000px;}
.y0_c00158{bottom:0.000000px;}
.y25_c00158{bottom:35.546985px;}
.y24_c00158{bottom:69.409935px;}
.y1_c00158{bottom:76.500000px;}
.y23_c00158{bottom:144.610335px;}
.y22_c00158{bottom:174.186585px;}
.y21_c00158{bottom:206.980335px;}
.y20_c00158{bottom:239.412735px;}
.y1f_c00158{bottom:254.020185px;}
.y1e_c00158{bottom:272.201535px;}
.y1d_c00158{bottom:304.277535px;}
.y1c_c00158{bottom:337.061385px;}
.y1b_c00158{bottom:369.498735px;}
.y1a_c00158{bottom:369.500517px;}
.y2_c00158{bottom:420.820335px;}
.y19_c00158{bottom:430.443135px;}
.y18_c00158{bottom:456.098985px;}
.y17_c00158{bottom:464.296185px;}
.y16_c00158{bottom:496.020735px;}
.y15_c00158{bottom:527.735385px;}
.y14_c00158{bottom:561.593385px;}
.y13_c00158{bottom:585.833535px;}
.y11_c00158{bottom:594.030735px;}
.y12_c00158{bottom:599.733135px;}
.y10_c00158{bottom:626.106735px;}
.yf_c00158{bottom:658.534185px;}
.ye_c00158{bottom:690.966585px;}
.yd_c00158{bottom:714.845385px;}
.yc_c00158{bottom:723.755385px;}
.yb_c00158{bottom:755.479935px;}
.ya_c00158{bottom:788.620185px;}
.y9_c00158{bottom:821.408985px;}
.y8_c00158{bottom:846.361935px;}
.y7_c00158{bottom:854.197785px;}
.y6_c00158{bottom:887.347935px;}
.y5_c00158{bottom:921.918735px;}
.y4_c00158{bottom:1077.304185px;}
.y3_c00158{bottom:1093.698585px;}
.h10_c00158{height:20.887891px;}
.h8_c00158{height:23.128875px;}
.h3_c00158{height:28.911094px;}
.h7_c00158{height:33.230868px;}
.h11_c00158{height:34.180317px;}
.hc_c00158{height:36.138867px;}
.h14_c00158{height:38.476582px;}
.hd_c00158{height:39.442992px;}
.hf_c00158{height:40.826465px;}
.h5_c00158{height:46.249629px;}
.ha_c00158{height:52.079414px;}
.hb_c00158{height:59.075156px;}
.h13_c00158{height:66.070898px;}
.h6_c00158{height:69.568770px;}
.h2_c00158{height:71.512031px;}
.h9_c00158{height:76.176054px;}
.h4_c00158{height:76.953164px;}
.he_c00158{height:83.171602px;}
.h12_c00158{height:90.993375px;}
.h1_c00158{height:1110.000000px;}
.h0_c00158{height:1263.000000px;}
.w1_c00158{width:733.500000px;}
.w0_c00158{width:892.500000px;}
.x0_c00158{left:0.000000px;}
.x2_c00158{left:35.080185px;}
.x3c_c00158{left:68.715435px;}
.x33_c00158{left:70.032135px;}
.x1c_c00158{left:71.086485px;}
.x5_c00158{left:72.304185px;}
.x1_c00158{left:79.500000px;}
.x34_c00158{left:92.109135px;}
.x10_c00158{left:93.316935px;}
.x1d_c00158{left:104.162385px;}
.x74_c00158{left:106.305735px;}
.x3d_c00158{left:114.374235px;}
.x6_c00158{left:115.918635px;}
.x5c_c00158{left:125.135535px;}
.x11_c00158{left:126.328485px;}
.x64_c00158{left:127.739235px;}
.x52_c00158{left:136.119585px;}
.x25_c00158{left:137.159085px;}
.x7_c00158{left:147.489735px;}
.x57_c00158{left:149.073735px;}
.x1e_c00158{left:159.285585px;}
.x5d_c00158{left:161.047785px;}
.x3e_c00158{left:169.329135px;}
.x3f_c00158{left:181.540785px;}
.x26_c00158{left:191.307135px;}
.x46_c00158{left:192.495135px;}
.x6a_c00158{left:196.306635px;}
.x58_c00158{left:202.390185px;}
.x27_c00158{left:203.632635px;}
.x8_c00158{left:214.369185px;}
.x12_c00158{left:225.764085px;}
.x1f_c00158{left:236.456085px;}
.x47_c00158{left:237.861885px;}
.x13_c00158{left:248.222235px;}
.x75_c00158{left:249.321135px;}
.x35_c00158{left:259.186485px;}
.x6e_c00158{left:261.017985px;}
.x40_c00158{left:266.596635px;}
.x48_c00158{left:269.007285px;}
.x14_c00158{left:270.705135px;}
.x2b_c00158{left:280.461585px;}
.x60_c00158{left:282.703935px;}
.x9_c00158{left:292.410885px;}
.x63_c00158{left:293.801835px;}
.x39_c00158{left:295.539285px;}
.x41_c00158{left:303.894885px;}
.x6b_c00158{left:305.929335px;}
.x59_c00158{left:314.849235px;}
.x2c_c00158{left:315.873885px;}
.xa_c00158{left:325.372935px;}
.x65_c00158{left:326.437185px;}
.x32_c00158{left:336.975735px;}
.x6c_c00158{left:338.064735px;}
.x2d_c00158{left:347.529135px;}
.x67_c00158{left:348.741885px;}
.x38_c00158{left:351.697035px;}
.x28_c00158{left:358.577535px;}
.x4f_c00158{left:359.770485px;}
.x36_c00158{left:370.794135px;}
.x50_c00158{left:379.931835px;}
.xb_c00158{left:381.352485px;}
.x5a_c00158{left:382.515735px;}
.x66_c00158{left:393.915585px;}
.x2e_c00158{left:403.973985px;}
.x42_c00158{left:415.715385px;}
.x20_c00158{left:417.452835px;}
.x15_c00158{left:426.258885px;}
.x49_c00158{left:435.530235px;}
.x29_c00158{left:437.431035px;}
.xc_c00158{left:448.123035px;}
.x5e_c00158{left:449.157585px;}
.x3a_c00158{left:457.270635px;}
.x16_c00158{left:459.191235px;}
.x21_c00158{left:470.170335px;}
.x71_c00158{left:471.313785px;}
.xd_c00158{left:480.401985px;}
.x4a_c00158{left:481.659285px;}
.x3_c00158{left:491.024685px;}
.x37_c00158{left:492.564135px;}
.x5f_c00158{left:494.638185px;}
.x17_c00158{left:497.132985px;}
.x18_c00158{left:503.275935px;}
.x6d_c00158{left:504.463935px;}
.x22_c00158{left:509.968335px;}
.x43_c00158{left:514.368885px;}
.x44_c00158{left:523.917435px;}
.x19_c00158{left:525.303435px;}
.x53_c00158{left:526.501335px;}
.x3b_c00158{left:536.193435px;}
.x4b_c00158{left:537.554685px;}
.x2f_c00158{left:547.627935px;}
.x6f_c00158{left:548.781285px;}
.x1a_c00158{left:558.587235px;}
.x61_c00158{left:559.636635px;}
.x4c_c00158{left:561.473085px;}
.xe_c00158{left:569.333685px;}
.x54_c00158{left:570.739485px;}
.x23_c00158{left:580.149435px;}
.x2a_c00158{left:591.217635px;}
.x72_c00158{left:592.514535px;}
.x1b_c00158{left:602.355135px;}
.x68_c00158{left:603.513435px;}
.x30_c00158{left:613.542135px;}
.x4e_c00158{left:622.744185px;}
.x51_c00158{left:624.179685px;}
.x31_c00158{left:625.595385px;}
.x69_c00158{left:635.416185px;}
.x76_c00158{left:637.386285px;}
.x4_c00158{left:647.692185px;}
.xf_c00158{left:657.894135px;}
.x73_c00158{left:660.181035px;}
.x4d_c00158{left:669.001935px;}
.x62_c00158{left:670.516635px;}
.x5b_c00158{left:672.184785px;}
.x24_c00158{left:680.842335px;}
.x70_c00158{left:682.302585px;}
.x55_c00158{left:691.098735px;}
.x45_c00158{left:702.597585px;}
.x77_c00158{left:703.988535px;}
.x78_c00158{left:708.379185px;}
.x56_c00158{left:713.645985px;}
@media print{
.v0_c00158{vertical-align:0.000000pt;}
.ls4_c00158{letter-spacing:-2.439360pt;}
.ls11_c00158{letter-spacing:-2.111789pt;}
.ls14_c00158{letter-spacing:-1.951488pt;}
.ls3_c00158{letter-spacing:-1.686643pt;}
.lsc_c00158{letter-spacing:-1.530214pt;}
.ls1_c00158{letter-spacing:0.000000pt;}
.ls16_c00158{letter-spacing:1.359072pt;}
.lsd_c00158{letter-spacing:1.540000pt;}
.lse_c00158{letter-spacing:1.680800pt;}
.ls8_c00158{letter-spacing:2.230272pt;}
.ls0_c00158{letter-spacing:2.279059pt;}
.lsa_c00158{letter-spacing:2.358400pt;}
.lsb_c00158{letter-spacing:2.425421pt;}
.ls10_c00158{letter-spacing:2.766931pt;}
.ls5_c00158{letter-spacing:3.150400pt;}
.ls6_c00158{letter-spacing:3.164198pt;}
.ls9_c00158{letter-spacing:3.449609pt;}
.ls2_c00158{letter-spacing:3.484800pt;}
.lsf_c00158{letter-spacing:3.766400pt;}
.ls17_c00158{letter-spacing:4.012800pt;}
.ls13_c00158{letter-spacing:27.878400pt;}
.ls7_c00158{letter-spacing:44.352176pt;}
.ls15_c00158{letter-spacing:45.619376pt;}
.ls12_c00158{letter-spacing:54.489776pt;}
.ws1_c00158{word-spacing:-19.703059pt;}
.ws0_c00158{word-spacing:-17.424000pt;}
.ws2_c00158{word-spacing:0.000000pt;}
._c_c00158{margin-left:-17.772480pt;}
._9_c00158{margin-left:-14.705856pt;}
._8_c00158{margin-left:-12.614976pt;}
._14_c00158{margin-left:-10.454400pt;}
._13_c00158{width:1.463616pt;}
._a_c00158{width:2.996928pt;}
._1_c00158{width:5.575680pt;}
._3_c00158{width:6.899904pt;}
._6_c00158{width:8.154432pt;}
._11_c00158{width:9.339616pt;}
._f_c00158{width:15.333120pt;}
._4_c00158{width:18.538432pt;}
._12_c00158{width:19.793312pt;}
._5_c00158{width:20.978496pt;}
._2_c00158{width:25.020864pt;}
._7_c00158{width:28.993536pt;}
._10_c00158{width:30.533184pt;}
._b_c00158{width:34.360128pt;}
._d_c00158{width:35.684352pt;}
._0_c00158{width:37.218016pt;}
._e_c00158{width:90.864224pt;}
.fs6_c00158{font-size:19.712000pt;}
.fs1_c00158{font-size:24.640000pt;}
.fse_c00158{font-size:27.878400pt;}
.fsa_c00158{font-size:30.800000pt;}
.fsb_c00158{font-size:33.616000pt;}
.fs12_c00158{font-size:34.848000pt;}
.fs3_c00158{font-size:41.888000pt;}
.fs5_c00158{font-size:44.352176pt;}
.fsf_c00158{font-size:45.619376pt;}
.fs8_c00158{font-size:47.168000pt;}
.fs9_c00158{font-size:53.504000pt;}
.fsd_c00158{font-size:54.489776pt;}
.fs11_c00158{font-size:59.840000pt;}
.fs4_c00158{font-size:63.008000pt;}
.fs0_c00158{font-size:64.768000pt;}
.fs7_c00158{font-size:68.992176pt;}
.fs2_c00158{font-size:69.696000pt;}
.fsc_c00158{font-size:75.328000pt;}
.fs10_c00158{font-size:80.256000pt;}
.y0_c00158{bottom:0.000000pt;}
.y25_c00158{bottom:31.597320pt;}
.y24_c00158{bottom:61.697720pt;}
.y1_c00158{bottom:68.000000pt;}
.y23_c00158{bottom:128.542520pt;}
.y22_c00158{bottom:154.832520pt;}
.y21_c00158{bottom:183.982520pt;}
.y20_c00158{bottom:212.811320pt;}
.y1f_c00158{bottom:225.795720pt;}
.y1e_c00158{bottom:241.956920pt;}
.y1d_c00158{bottom:270.468920pt;}
.y1c_c00158{bottom:299.610120pt;}
.y1b_c00158{bottom:328.443320pt;}
.y1a_c00158{bottom:328.444904pt;}
.y2_c00158{bottom:374.062520pt;}
.y19_c00158{bottom:382.616120pt;}
.y18_c00158{bottom:405.421320pt;}
.y17_c00158{bottom:412.707720pt;}
.y16_c00158{bottom:440.907320pt;}
.y15_c00158{bottom:469.098120pt;}
.y14_c00158{bottom:499.194120pt;}
.y13_c00158{bottom:520.740920pt;}
.y11_c00158{bottom:528.027320pt;}
.y12_c00158{bottom:533.096120pt;}
.y10_c00158{bottom:556.539320pt;}
.yf_c00158{bottom:585.363720pt;}
.ye_c00158{bottom:614.192520pt;}
.yd_c00158{bottom:635.418120pt;}
.yc_c00158{bottom:643.338120pt;}
.yb_c00158{bottom:671.537720pt;}
.ya_c00158{bottom:700.995720pt;}
.y9_c00158{bottom:730.141320pt;}
.y8_c00158{bottom:752.321720pt;}
.y7_c00158{bottom:759.286920pt;}
.y6_c00158{bottom:788.753720pt;}
.y5_c00158{bottom:819.483320pt;}
.y4_c00158{bottom:957.603720pt;}
.y3_c00158{bottom:972.176520pt;}
.h10_c00158{height:18.567014pt;}
.h8_c00158{height:20.559000pt;}
.h3_c00158{height:25.698750pt;}
.h7_c00158{height:29.538549pt;}
.h11_c00158{height:30.382504pt;}
.hc_c00158{height:32.123438pt;}
.h14_c00158{height:34.201406pt;}
.hd_c00158{height:35.060438pt;}
.hf_c00158{height:36.290191pt;}
.h5_c00158{height:41.110781pt;}
.ha_c00158{height:46.292813pt;}
.hb_c00158{height:52.511250pt;}
.h13_c00158{height:58.729688pt;}
.h6_c00158{height:61.838906pt;}
.h2_c00158{height:63.566250pt;}
.h9_c00158{height:67.712048pt;}
.h4_c00158{height:68.402813pt;}
.he_c00158{height:73.930313pt;}
.h12_c00158{height:80.883000pt;}
.h1_c00158{height:986.666667pt;}
.h0_c00158{height:1122.666667pt;}
.w1_c00158{width:652.000000pt;}
.w0_c00158{width:793.333333pt;}
.x0_c00158{left:0.000000pt;}
.x2_c00158{left:31.182387pt;}
.x3c_c00158{left:61.080387pt;}
.x33_c00158{left:62.250787pt;}
.x1c_c00158{left:63.187987pt;}
.x5_c00158{left:64.270387pt;}
.x1_c00158{left:70.666667pt;}
.x34_c00158{left:81.874787pt;}
.x10_c00158{left:82.948387pt;}
.x1d_c00158{left:92.588787pt;}
.x74_c00158{left:94.493987pt;}
.x3d_c00158{left:101.665987pt;}
.x6_c00158{left:103.038787pt;}
.x5c_c00158{left:111.231587pt;}
.x11_c00158{left:112.291987pt;}
.x64_c00158{left:113.545987pt;}
.x52_c00158{left:120.995187pt;}
.x25_c00158{left:121.919187pt;}
.x7_c00158{left:131.101987pt;}
.x57_c00158{left:132.509987pt;}
.x1e_c00158{left:141.587187pt;}
.x5d_c00158{left:143.153587pt;}
.x3e_c00158{left:150.514787pt;}
.x3f_c00158{left:161.369587pt;}
.x26_c00158{left:170.050787pt;}
.x46_c00158{left:171.106787pt;}
.x6a_c00158{left:174.494787pt;}
.x58_c00158{left:179.902387pt;}
.x27_c00158{left:181.006787pt;}
.x8_c00158{left:190.550387pt;}
.x12_c00158{left:200.679187pt;}
.x1f_c00158{left:210.183187pt;}
.x47_c00158{left:211.432787pt;}
.x13_c00158{left:220.641987pt;}
.x75_c00158{left:221.618787pt;}
.x35_c00158{left:230.387987pt;}
.x6e_c00158{left:232.015987pt;}
.x40_c00158{left:236.974787pt;}
.x48_c00158{left:239.117587pt;}
.x14_c00158{left:240.626787pt;}
.x2b_c00158{left:249.299187pt;}
.x60_c00158{left:251.292387pt;}
.x9_c00158{left:259.920787pt;}
.x63_c00158{left:261.157187pt;}
.x39_c00158{left:262.701587pt;}
.x41_c00158{left:270.128787pt;}
.x6b_c00158{left:271.937187pt;}
.x59_c00158{left:279.865987pt;}
.x2c_c00158{left:280.776787pt;}
.xa_c00158{left:289.220387pt;}
.x65_c00158{left:290.166387pt;}
.x32_c00158{left:299.533987pt;}
.x6c_c00158{left:300.501987pt;}
.x2d_c00158{left:308.914787pt;}
.x67_c00158{left:309.992787pt;}
.x38_c00158{left:312.619587pt;}
.x28_c00158{left:318.735587pt;}
.x4f_c00158{left:319.795987pt;}
.x36_c00158{left:329.594787pt;}
.x50_c00158{left:337.717187pt;}
.xb_c00158{left:338.979987pt;}
.x5a_c00158{left:340.013987pt;}
.x66_c00158{left:350.147187pt;}
.x2e_c00158{left:359.087987pt;}
.x42_c00158{left:369.524787pt;}
.x20_c00158{left:371.069187pt;}
.x15_c00158{left:378.896787pt;}
.x49_c00158{left:387.137987pt;}
.x29_c00158{left:388.827587pt;}
.xc_c00158{left:398.331587pt;}
.x5e_c00158{left:399.251187pt;}
.x3a_c00158{left:406.462787pt;}
.x16_c00158{left:408.169987pt;}
.x21_c00158{left:417.929187pt;}
.x71_c00158{left:418.945587pt;}
.xd_c00158{left:427.023987pt;}
.x4a_c00158{left:428.141587pt;}
.x3_c00158{left:436.466387pt;}
.x37_c00158{left:437.834787pt;}
.x5f_c00158{left:439.678387pt;}
.x17_c00158{left:441.895987pt;}
.x18_c00158{left:447.356387pt;}
.x6d_c00158{left:448.412387pt;}
.x22_c00158{left:453.305187pt;}
.x43_c00158{left:457.216787pt;}
.x44_c00158{left:465.704387pt;}
.x19_c00158{left:466.936387pt;}
.x53_c00158{left:468.001187pt;}
.x3b_c00158{left:476.616387pt;}
.x4b_c00158{left:477.826387pt;}
.x2f_c00158{left:486.780387pt;}
.x6f_c00158{left:487.805587pt;}
.x1a_c00158{left:496.521987pt;}
.x61_c00158{left:497.454787pt;}
.x4c_c00158{left:499.087187pt;}
.xe_c00158{left:506.074387pt;}
.x54_c00158{left:507.323987pt;}
.x23_c00158{left:515.688387pt;}
.x2a_c00158{left:525.526787pt;}
.x72_c00158{left:526.679587pt;}
.x1b_c00158{left:535.426787pt;}
.x68_c00158{left:536.456387pt;}
.x30_c00158{left:545.370787pt;}
.x4e_c00158{left:553.550387pt;}
.x51_c00158{left:554.826387pt;}
.x31_c00158{left:556.084787pt;}
.x69_c00158{left:564.814387pt;}
.x76_c00158{left:566.565587pt;}
.x4_c00158{left:575.726387pt;}
.xf_c00158{left:584.794787pt;}
.x73_c00158{left:586.827587pt;}
.x4d_c00158{left:594.668387pt;}
.x62_c00158{left:596.014787pt;}
.x5b_c00158{left:597.497587pt;}
.x24_c00158{left:605.193187pt;}
.x70_c00158{left:606.491187pt;}
.x55_c00158{left:614.309987pt;}
.x45_c00158{left:624.531187pt;}
.x77_c00158{left:625.767587pt;}
.x78_c00158{left:629.670387pt;}
.x56_c00158{left:634.351987pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6b7679f1a45c397ad28d71d6.woff2')format("woff");}.ff1_c00159{font-family:ff1_c00159;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00159;src:url('chunks/assets/font_1004feb8a76b586664690795.woff2')format("woff");}.ff2_c00159{font-family:ff2_c00159;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00159;src:url('chunks/assets/font_cc9911d7c5330928d6631df2.woff2')format("woff");}.ff3_c00159{font-family:ff3_c00159;line-height:0.666000;font-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_c00159{transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);}
.m52_c00159{transform:matrix(0.195267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195267,0.000000,0.000000,0.250000,0,0);}
.m88_c00159{transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);}
.m1_c00159{transform:matrix(0.221069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221069,0.000000,0.000000,0.250000,0,0);}
.m7f_c00159{transform:matrix(0.224573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224573,0.000000,0.000000,0.250000,0,0);}
.m89_c00159{transform:matrix(0.229356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229356,0.000000,0.000000,0.250000,0,0);}
.m65_c00159{transform:matrix(0.246524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246524,0.000000,0.000000,0.250000,0,0);}
.m0_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);}
.m91_c00159{transform:matrix(0.251277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251277,0.000000,0.000000,0.250000,0,0);}
.m5c_c00159{transform:matrix(0.252131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252131,0.000000,0.000000,0.250000,0,0);}
.m1b_c00159{transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);}
.m69_c00159{transform:matrix(0.255030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255030,0.000000,0.000000,0.250000,0,0);}
.m85_c00159{transform:matrix(0.255172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255172,0.000000,0.000000,0.250000,0,0);}
.mb9_c00159{transform:matrix(0.257043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257043,0.000000,0.000000,0.250000,0,0);}
.m60_c00159{transform:matrix(0.257987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257987,0.000000,0.000000,0.250000,0,0);}
.m40_c00159{transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);}
.m8_c00159{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m6c_c00159{transform:matrix(0.258830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258830,0.000000,0.000000,0.250000,0,0);}
.m9a_c00159{transform:matrix(0.260113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260113,0.000000,0.000000,0.250000,0,0);}
.m2_c00159{transform:matrix(0.260369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260369,0.000000,0.000000,0.250000,0,0);}
.m26_c00159{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.mb_c00159{transform:matrix(0.261574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261574,0.000000,0.000000,0.250000,0,0);}
.m10_c00159{transform:matrix(0.261624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261624,0.000000,0.000000,0.250000,0,0);}
.m75_c00159{transform:matrix(0.262371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262371,0.000000,0.000000,0.250000,0,0);}
.m2d_c00159{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m6d_c00159{transform:matrix(0.263352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263352,0.000000,0.000000,0.250000,0,0);}
.m33_c00159{transform:matrix(0.263836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263836,0.000000,0.000000,0.250000,0,0);}
.m23_c00159{transform:matrix(0.264066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264066,0.000000,0.000000,0.250000,0,0);}
.ma1_c00159{transform:matrix(0.264652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264652,0.000000,0.000000,0.250000,0,0);}
.m8f_c00159{transform:matrix(0.264697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264697,0.000000,0.000000,0.250000,0,0);}
.mbd_c00159{transform:matrix(0.266177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266177,0.000000,0.000000,0.250000,0,0);}
.m25_c00159{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m50_c00159{transform:matrix(0.267144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267144,0.000000,0.000000,0.250000,0,0);}
.m7b_c00159{transform:matrix(0.267582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267582,0.000000,0.000000,0.250000,0,0);}
.m5_c00159{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m49_c00159{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.m78_c00159{transform:matrix(0.269141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269141,0.000000,0.000000,0.250000,0,0);}
.m7c_c00159{transform:matrix(0.269989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269989,0.000000,0.000000,0.250000,0,0);}
.m9d_c00159{transform:matrix(0.271514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271514,0.000000,0.000000,0.250000,0,0);}
.m42_c00159{transform:matrix(0.271706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271706,0.000000,0.000000,0.250000,0,0);}
.m15_c00159{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.mb8_c00159{transform:matrix(0.273866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273866,0.000000,0.000000,0.250000,0,0);}
.m95_c00159{transform:matrix(0.275491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275491,0.000000,0.000000,0.250000,0,0);}
.m68_c00159{transform:matrix(0.275942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275942,0.000000,0.000000,0.250000,0,0);}
.m20_c00159{transform:matrix(0.276058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276058,0.000000,0.000000,0.250000,0,0);}
.ma7_c00159{transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);}
.me_c00159{transform:matrix(0.277164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277164,0.000000,0.000000,0.250000,0,0);}
.m97_c00159{transform:matrix(0.277902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277902,0.000000,0.000000,0.250000,0,0);}
.m6_c00159{transform:matrix(0.278061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278061,0.000000,0.000000,0.250000,0,0);}
.m61_c00159{transform:matrix(0.278133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278133,0.000000,0.000000,0.250000,0,0);}
.m3e_c00159{transform:matrix(0.278536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278536,0.000000,0.000000,0.250000,0,0);}
.m2c_c00159{transform:matrix(0.278622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278622,0.000000,0.000000,0.250000,0,0);}
.m3a_c00159{transform:matrix(0.279063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279063,0.000000,0.000000,0.250000,0,0);}
.m1c_c00159{transform:matrix(0.279568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279568,0.000000,0.000000,0.250000,0,0);}
.m3_c00159{transform:matrix(0.279845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279845,0.000000,0.000000,0.250000,0,0);}
.m6f_c00159{transform:matrix(0.280064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280064,0.000000,0.000000,0.250000,0,0);}
.m32_c00159{transform:matrix(0.280392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280392,0.000000,0.000000,0.250000,0,0);}
.m2e_c00159{transform:matrix(0.280681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280681,0.000000,0.000000,0.250000,0,0);}
.mb3_c00159{transform:matrix(0.281319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281319,0.000000,0.000000,0.250000,0,0);}
.md_c00159{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.m56_c00159{transform:matrix(0.281878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281878,0.000000,0.000000,0.250000,0,0);}
.m4a_c00159{transform:matrix(0.282254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282254,0.000000,0.000000,0.250000,0,0);}
.m11_c00159{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.mb0_c00159{transform:matrix(0.283758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283758,0.000000,0.000000,0.250000,0,0);}
.m12_c00159{transform:matrix(0.284092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284092,0.000000,0.000000,0.250000,0,0);}
.m92_c00159{transform:matrix(0.286754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286754,0.000000,0.000000,0.250000,0,0);}
.m44_c00159{transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);}
.m24_c00159{transform:matrix(0.287735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287735,0.000000,0.000000,0.250000,0,0);}
.m9_c00159{transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);}
.mb1_c00159{transform:matrix(0.288623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288623,0.000000,0.000000,0.250000,0,0);}
.m53_c00159{transform:matrix(0.289155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289155,0.000000,0.000000,0.250000,0,0);}
.m76_c00159{transform:matrix(0.289471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289471,0.000000,0.000000,0.250000,0,0);}
.m46_c00159{transform:matrix(0.289580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289580,0.000000,0.000000,0.250000,0,0);}
.m70_c00159{transform:matrix(0.289721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289721,0.000000,0.000000,0.250000,0,0);}
.m8e_c00159{transform:matrix(0.289933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289933,0.000000,0.000000,0.250000,0,0);}
.m9e_c00159{transform:matrix(0.290364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290364,0.000000,0.000000,0.250000,0,0);}
.m1a_c00159{transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);}
.m57_c00159{transform:matrix(0.291033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291033,0.000000,0.000000,0.250000,0,0);}
.m28_c00159{transform:matrix(0.291130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291130,0.000000,0.000000,0.250000,0,0);}
.m2b_c00159{transform:matrix(0.291278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291278,0.000000,0.000000,0.250000,0,0);}
.m82_c00159{transform:matrix(0.291470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291470,0.000000,0.000000,0.250000,0,0);}
.m30_c00159{transform:matrix(0.291504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291504,0.000000,0.000000,0.250000,0,0);}
.ma9_c00159{transform:matrix(0.292114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292114,0.000000,0.000000,0.250000,0,0);}
.m39_c00159{transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);}
.m8d_c00159{transform:matrix(0.292470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292470,0.000000,0.000000,0.250000,0,0);}
.m34_c00159{transform:matrix(0.292491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292491,0.000000,0.000000,0.250000,0,0);}
.m93_c00159{transform:matrix(0.292497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292497,0.000000,0.000000,0.250000,0,0);}
.m9c_c00159{transform:matrix(0.292648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292648,0.000000,0.000000,0.250000,0,0);}
.mb6_c00159{transform:matrix(0.293382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293382,0.000000,0.000000,0.250000,0,0);}
.m9b_c00159{transform:matrix(0.293905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293905,0.000000,0.000000,0.250000,0,0);}
.ma6_c00159{transform:matrix(0.295057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295057,0.000000,0.000000,0.250000,0,0);}
.m47_c00159{transform:matrix(0.295707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295707,0.000000,0.000000,0.250000,0,0);}
.ma4_c00159{transform:matrix(0.295937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295937,0.000000,0.000000,0.250000,0,0);}
.m1d_c00159{transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);}
.m62_c00159{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m27_c00159{transform:matrix(0.297424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297424,0.000000,0.000000,0.250000,0,0);}
.m66_c00159{transform:matrix(0.297670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297670,0.000000,0.000000,0.250000,0,0);}
.mbb_c00159{transform:matrix(0.297994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297994,0.000000,0.000000,0.250000,0,0);}
.m51_c00159{transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);}
.m7_c00159{transform:matrix(0.299763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299763,0.000000,0.000000,0.250000,0,0);}
.m71_c00159{transform:matrix(0.299936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299936,0.000000,0.000000,0.250000,0,0);}
.mc_c00159{transform:matrix(0.300052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300052,0.000000,0.000000,0.250000,0,0);}
.mb5_c00159{transform:matrix(0.300160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300160,0.000000,0.000000,0.250000,0,0);}
.mbc_c00159{transform:matrix(0.300360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300360,0.000000,0.000000,0.250000,0,0);}
.m4_c00159{transform:matrix(0.302206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302206,0.000000,0.000000,0.250000,0,0);}
.m5d_c00159{transform:matrix(0.302665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302665,0.000000,0.000000,0.250000,0,0);}
.m8b_c00159{transform:matrix(0.302743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302743,0.000000,0.000000,0.250000,0,0);}
.m8c_c00159{transform:matrix(0.305590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305590,0.000000,0.000000,0.250000,0,0);}
.m18_c00159{transform:matrix(0.306803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306803,0.000000,0.000000,0.250000,0,0);}
.mb4_c00159{transform:matrix(0.307030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307030,0.000000,0.000000,0.250000,0,0);}
.m41_c00159{transform:matrix(0.308150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308150,0.000000,0.000000,0.250000,0,0);}
.m84_c00159{transform:matrix(0.308208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308208,0.000000,0.000000,0.250000,0,0);}
.m4b_c00159{transform:matrix(0.308361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308361,0.000000,0.000000,0.250000,0,0);}
.m17_c00159{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.mbe_c00159{transform:matrix(0.308921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308921,0.000000,0.000000,0.250000,0,0);}
.m83_c00159{transform:matrix(0.309926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309926,0.000000,0.000000,0.250000,0,0);}
.m98_c00159{transform:matrix(0.310390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310390,0.000000,0.000000,0.250000,0,0);}
.m16_c00159{transform:matrix(0.310770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310770,0.000000,0.000000,0.250000,0,0);}
.m29_c00159{transform:matrix(0.311255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311255,0.000000,0.000000,0.250000,0,0);}
.mad_c00159{transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);}
.ma0_c00159{transform:matrix(0.312084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312084,0.000000,0.000000,0.250000,0,0);}
.ma_c00159{transform:matrix(0.312229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312229,0.000000,0.000000,0.250000,0,0);}
.m72_c00159{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.m99_c00159{transform:matrix(0.313629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313629,0.000000,0.000000,0.250000,0,0);}
.m7e_c00159{transform:matrix(0.313656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313656,0.000000,0.000000,0.250000,0,0);}
.m35_c00159{transform:matrix(0.313670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313670,0.000000,0.000000,0.250000,0,0);}
.m7d_c00159{transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);}
.m74_c00159{transform:matrix(0.314510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314510,0.000000,0.000000,0.250000,0,0);}
.m43_c00159{transform:matrix(0.315489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315489,0.000000,0.000000,0.250000,0,0);}
.m80_c00159{transform:matrix(0.315727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315727,0.000000,0.000000,0.250000,0,0);}
.m1f_c00159{transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);}
.mab_c00159{transform:matrix(0.316290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316290,0.000000,0.000000,0.250000,0,0);}
.m54_c00159{transform:matrix(0.316891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316891,0.000000,0.000000,0.250000,0,0);}
.m2f_c00159{transform:matrix(0.317247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317247,0.000000,0.000000,0.250000,0,0);}
.m3d_c00159{transform:matrix(0.317478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317478,0.000000,0.000000,0.250000,0,0);}
.m6b_c00159{transform:matrix(0.317744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317744,0.000000,0.000000,0.250000,0,0);}
.ma5_c00159{transform:matrix(0.318406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318406,0.000000,0.000000,0.250000,0,0);}
.m3c_c00159{transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);}
.m21_c00159{transform:matrix(0.319290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319290,0.000000,0.000000,0.250000,0,0);}
.m4e_c00159{transform:matrix(0.319538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319538,0.000000,0.000000,0.250000,0,0);}
.m7a_c00159{transform:matrix(0.320195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320195,0.000000,0.000000,0.250000,0,0);}
.m14_c00159{transform:matrix(0.320922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320922,0.000000,0.000000,0.250000,0,0);}
.m3b_c00159{transform:matrix(0.321354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321354,0.000000,0.000000,0.250000,0,0);}
.maf_c00159{transform:matrix(0.321420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321420,0.000000,0.000000,0.250000,0,0);}
.m86_c00159{transform:matrix(0.323170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323170,0.000000,0.000000,0.250000,0,0);}
.m55_c00159{transform:matrix(0.323503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323503,0.000000,0.000000,0.250000,0,0);}
.m22_c00159{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.m4f_c00159{transform:matrix(0.323741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323741,0.000000,0.000000,0.250000,0,0);}
.m67_c00159{transform:matrix(0.324157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324157,0.000000,0.000000,0.250000,0,0);}
.m79_c00159{transform:matrix(0.324300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324300,0.000000,0.000000,0.250000,0,0);}
.m96_c00159{transform:matrix(0.325627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325627,0.000000,0.000000,0.250000,0,0);}
.m6e_c00159{transform:matrix(0.325928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325928,0.000000,0.000000,0.250000,0,0);}
.m45_c00159{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.m48_c00159{transform:matrix(0.328157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328157,0.000000,0.000000,0.250000,0,0);}
.m37_c00159{transform:matrix(0.329713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329713,0.000000,0.000000,0.250000,0,0);}
.m77_c00159{transform:matrix(0.329982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329982,0.000000,0.000000,0.250000,0,0);}
.m4d_c00159{transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);}
.m5f_c00159{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.ma2_c00159{transform:matrix(0.333376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333376,0.000000,0.000000,0.250000,0,0);}
.ma3_c00159{transform:matrix(0.334321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334321,0.000000,0.000000,0.250000,0,0);}
.m5e_c00159{transform:matrix(0.335519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335519,0.000000,0.000000,0.250000,0,0);}
.mae_c00159{transform:matrix(0.335862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335862,0.000000,0.000000,0.250000,0,0);}
.m3f_c00159{transform:matrix(0.336348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336348,0.000000,0.000000,0.250000,0,0);}
.mb2_c00159{transform:matrix(0.337323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337323,0.000000,0.000000,0.250000,0,0);}
.m9f_c00159{transform:matrix(0.337410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337410,0.000000,0.000000,0.250000,0,0);}
.m64_c00159{transform:matrix(0.339263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339263,0.000000,0.000000,0.250000,0,0);}
.m31_c00159{transform:matrix(0.339465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339465,0.000000,0.000000,0.250000,0,0);}
.m1e_c00159{transform:matrix(0.340068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340068,0.000000,0.000000,0.250000,0,0);}
.m36_c00159{transform:matrix(0.340814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340814,0.000000,0.000000,0.250000,0,0);}
.m59_c00159{transform:matrix(0.341728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341728,0.000000,0.000000,0.250000,0,0);}
.m63_c00159{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.m58_c00159{transform:matrix(0.344653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344653,0.000000,0.000000,0.250000,0,0);}
.m4c_c00159{transform:matrix(0.345049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345049,0.000000,0.000000,0.250000,0,0);}
.mac_c00159{transform:matrix(0.345883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345883,0.000000,0.000000,0.250000,0,0);}
.m81_c00159{transform:matrix(0.346629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346629,0.000000,0.000000,0.250000,0,0);}
.m19_c00159{transform:matrix(0.347270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347270,0.000000,0.000000,0.250000,0,0);}
.m6a_c00159{transform:matrix(0.348765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348765,0.000000,0.000000,0.250000,0,0);}
.m2a_c00159{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m5a_c00159{transform:matrix(0.349608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349608,0.000000,0.000000,0.250000,0,0);}
.ma8_c00159{transform:matrix(0.349708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349708,0.000000,0.000000,0.250000,0,0);}
.m13_c00159{transform:matrix(0.349720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349720,0.000000,0.000000,0.250000,0,0);}
.mf_c00159{transform:matrix(0.350446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350446,0.000000,0.000000,0.250000,0,0);}
.mba_c00159{transform:matrix(0.354899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354899,0.000000,0.000000,0.250000,0,0);}
.m90_c00159{transform:matrix(0.372071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372071,0.000000,0.000000,0.250000,0,0);}
.m94_c00159{transform:matrix(0.378917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378917,0.000000,0.000000,0.250000,0,0);}
.m5b_c00159{transform:matrix(0.385852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385852,0.000000,0.000000,0.250000,0,0);}
.m8a_c00159{transform:matrix(0.397125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397125,0.000000,0.000000,0.250000,0,0);}
.m73_c00159{transform:matrix(0.407787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407787,0.000000,0.000000,0.250000,0,0);}
.maa_c00159{transform:matrix(0.416907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416907,0.000000,0.000000,0.250000,0,0);}
.m38_c00159{transform:matrix(0.421610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421610,0.000000,0.000000,0.250000,0,0);}
.mb7_c00159{transform:matrix(0.432348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432348,0.000000,0.000000,0.250000,0,0);}
.v0_c00159{vertical-align:0.000000px;}
.ls6_c00159{letter-spacing:-2.744280px;}
.lse_c00159{letter-spacing:-2.375762px;}
.ls8_c00159{letter-spacing:-1.897474px;}
.lsb_c00159{letter-spacing:-1.358280px;}
.lsf_c00159{letter-spacing:-0.463320px;}
.ls5_c00159{letter-spacing:0.000000px;}
.ls4_c00159{letter-spacing:0.039204px;}
.lsa_c00159{letter-spacing:2.297354px;}
.lsd_c00159{letter-spacing:2.579623px;}
.lsc_c00159{letter-spacing:2.610986px;}
.ls0_c00159{letter-spacing:2.901096px;}
.ls1_c00159{letter-spacing:3.496997px;}
.ls9_c00159{letter-spacing:3.559723px;}
.ls7_c00159{letter-spacing:3.920400px;}
.ls3_c00159{letter-spacing:7.919208px;}
.ls2_c00159{letter-spacing:51.321798px;}
.sc__c00159{text-shadow:none;}
.sc0_c00159{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00159{-webkit-text-stroke:0px transparent;}
.sc0_c00159{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00159{word-spacing:-92.071307px;}
.ws0_c00159{word-spacing:-19.602000px;}
.ws3_c00159{word-spacing:0.000000px;}
.ws1_c00159{word-spacing:2.195424px;}
._10_c00159{margin-left:-9.252144px;}
._3_c00159{margin-left:-4.782888px;}
._7_c00159{width:1.489752px;}
._2_c00159{width:6.272640px;}
._c_c00159{width:7.997616px;}
._5_c00159{width:10.506672px;}
._f_c00159{width:11.918016px;}
._a_c00159{width:22.060051px;}
._0_c00159{width:23.679216px;}
._11_c00159{width:25.953048px;}
._9_c00159{width:28.462104px;}
._8_c00159{width:29.977200px;}
._4_c00159{width:31.833648px;}
._e_c00159{width:34.107480px;}
._b_c00159{width:35.518428px;}
._6_c00159{width:37.871064px;}
._1_c00159{width:41.869872px;}
._d_c00159{width:47.201616px;}
.fc0_c00159{color:transparent;}
.fs7_c00159{font-size:17.028000px;}
.fs9_c00159{font-size:22.572000px;}
.fs2_c00159{font-size:28.314000px;}
.fs0_c00159{font-size:33.264000px;}
.fs4_c00159{font-size:34.056198px;}
.fs5_c00159{font-size:38.808000px;}
.fs3_c00159{font-size:51.321798px;}
.fs6_c00159{font-size:64.548000px;}
.fsa_c00159{font-size:71.280000px;}
.fs1_c00159{font-size:78.408000px;}
.fs8_c00159{font-size:81.180000px;}
.y0_c00159{bottom:0.000000px;}
.y1_c00159{bottom:76.500000px;}
.y1f_c00159{bottom:97.565535px;}
.y1e_c00159{bottom:147.817935px;}
.y1d_c00159{bottom:177.399135px;}
.y1c_c00159{bottom:213.751935px;}
.y1b_c00159{bottom:237.987135px;}
.y1a_c00159{bottom:278.611785px;}
.y19_c00159{bottom:311.400585px;}
.y18_c00159{bottom:343.837935px;}
.y17_c00159{bottom:376.270335px;}
.y16_c00159{bottom:408.697785px;}
.y15_c00159{bottom:442.560735px;}
.y14_c00159{bottom:461.088585px;}
.y13_c00159{bottom:474.280335px;}
.y12_c00159{bottom:507.069135px;}
.y11_c00159{bottom:539.145135px;}
.y10_c00159{bottom:571.572585px;}
.yf_c00159{bottom:603.648585px;}
.ye_c00159{bottom:636.437385px;}
.yd_c00159{bottom:668.874735px;}
.yc_c00159{bottom:700.950735px;}
.yb_c00159{bottom:764.028585px;}
.ya_c00159{bottom:795.748185px;}
.y9_c00159{bottom:812.142585px;}
.y8_c00159{bottom:828.180585px;}
.y7_c00159{bottom:862.038585px;}
.y6_c00159{bottom:894.827385px;}
.y5_c00159{bottom:927.972585px;}
.y4_c00159{bottom:970.032735px;}
.y2_c00159{bottom:994.267935px;}
.y3_c00159{bottom:1081.580985px;}
.h8_c00159{height:17.759672px;}
.hb_c00159{height:23.541891px;}
.h4_c00159{height:29.530617px;}
.h5_c00159{height:34.180317px;}
.h2_c00159{height:34.693313px;}
.h6_c00159{height:35.519550px;}
.h7_c00159{height:38.087930px;}
.ha_c00159{height:67.321547px;}
.h3_c00159{height:76.953164px;}
.h9_c00159{height:79.673730px;}
.h1_c00159{height:1110.000000px;}
.h0_c00159{height:1263.000000px;}
.w1_c00159{width:733.500000px;}
.w0_c00159{width:892.500000px;}
.x0_c00159{left:0.000000px;}
.x2_c00159{left:41.940885px;}
.x4c_c00159{left:71.972535px;}
.x11_c00159{left:73.101135px;}
.x6_c00159{left:74.640585px;}
.x1_c00159{left:79.500000px;}
.x48_c00159{left:94.945485px;}
.x6a_c00159{left:96.747285px;}
.x6b_c00159{left:106.172085px;}
.x31_c00159{left:107.404635px;}
.x12_c00159{left:116.908635px;}
.x29_c00159{left:118.448085px;}
.x50_c00159{left:119.616285px;}
.x42_c00159{left:128.199585px;}
.x3b_c00159{left:129.367785px;}
.x4d_c00159{left:131.248785px;}
.x49_c00159{left:139.035135px;}
.x13_c00159{left:140.940885px;}
.x7_c00159{left:151.622985px;}
.x14_c00159{left:162.201135px;}
.x65_c00159{left:164.176185px;}
.x58_c00159{left:171.754635px;}
.x3c_c00159{left:172.774335px;}
.x6c_c00159{left:174.264285px;}
.x15_c00159{left:184.936485px;}
.x6d_c00159{left:194.420685px;}
.x3d_c00159{left:195.435435px;}
.x22_c00159{left:196.549185px;}
.x43_c00159{left:205.325535px;}
.x32_c00159{left:206.756085px;}
.x2a_c00159{left:207.924285px;}
.x59_c00159{left:216.670935px;}
.x3e_c00159{left:218.264835px;}
.x5b_c00159{left:226.991685px;}
.x23_c00159{left:229.144935px;}
.x33_c00159{left:239.544885px;}
.x16_c00159{left:240.732885px;}
.x4a_c00159{left:250.226985px;}
.x8_c00159{left:251.459535px;}
.x17_c00159{left:252.494085px;}
.x24_c00159{left:261.993135px;}
.x3f_c00159{left:263.116785px;}
.x18_c00159{left:273.878085px;}
.x5a_c00159{left:275.971935px;}
.x6e_c00159{left:277.041135px;}
.x2b_c00159{left:284.010735px;}
.x9_c00159{left:285.604635px;}
.x34_c00159{left:295.262085px;}
.x40_c00159{left:296.618385px;}
.x19_c00159{left:307.379685px;}
.x35_c00159{left:316.804485px;}
.x60_c00159{left:318.066735px;}
.x44_c00159{left:328.496385px;}
.x1a_c00159{left:329.719035px;}
.x25_c00159{left:340.168485px;}
.x6f_c00159{left:341.514885px;}
.x2c_c00159{left:342.950385px;}
.x41_c00159{left:351.023835px;}
.x51_c00159{left:360.329835px;}
.x1b_c00159{left:362.141535px;}
.x66_c00159{left:365.428335px;}
.x4e_c00159{left:372.957285px;}
.xa_c00159{left:384.362085px;}
.x1c_c00159{left:395.643135px;}
.x4b_c00159{left:396.811335px;}
.x63_c00159{left:398.524035px;}
.x1d_c00159{left:407.498385px;}
.xb_c00159{left:418.239885px;}
.x52_c00159{left:427.288485px;}
.x36_c00159{left:429.154635px;}
.x61_c00159{left:431.718735px;}
.x1e_c00159{left:439.752585px;}
.x26_c00159{left:441.356385px;}
.x5c_c00159{left:451.013835px;}
.x2d_c00159{left:452.424585px;}
.x45_c00159{left:461.156385px;}
.x1f_c00159{left:462.413685px;}
.x2e_c00159{left:473.778885px;}
.x4f_c00159{left:483.228435px;}
.xc_c00159{left:484.510485px;}
.xd_c00159{left:495.885585px;}
.x68_c00159{left:502.043385px;}
.x46_c00159{left:506.414235px;}
.x67_c00159{left:507.607185px;}
.x70_c00159{left:516.700335px;}
.x37_c00159{left:518.002185px;}
.x5e_c00159{left:524.174835px;}
.x5f_c00159{left:528.684285px;}
.x2f_c00159{left:540.074235px;}
.xe_c00159{left:551.167185px;}
.x55_c00159{left:561.656235px;}
.x27_c00159{left:572.897685px;}
.x62_c00159{left:574.258935px;}
.xf_c00159{left:584.183685px;}
.x20_c00159{left:594.964785px;}
.x5d_c00159{left:597.796185px;}
.x38_c00159{left:606.042885px;}
.x10_c00159{left:617.041785px;}
.x28_c00159{left:627.931785px;}
.x53_c00159{left:632.396685px;}
.x21_c00159{left:639.158385px;}
.x64_c00159{left:648.964335px;}
.x47_c00159{left:650.038485px;}
.x3_c00159{left:651.147285px;}
.x69_c00159{left:653.345085px;}
.x30_c00159{left:661.463085px;}
.x54_c00159{left:672.303585px;}
.x56_c00159{left:683.005485px;}
.x4_c00159{left:684.797385px;}
.x5_c00159{left:691.613535px;}
.x39_c00159{left:694.949835px;}
.x57_c00159{left:716.853585px;}
.x3a_c00159{left:727.827735px;}
@media print{
.v0_c00159{vertical-align:0.000000pt;}
.ls6_c00159{letter-spacing:-2.439360pt;}
.lse_c00159{letter-spacing:-2.111789pt;}
.ls8_c00159{letter-spacing:-1.686643pt;}
.lsb_c00159{letter-spacing:-1.207360pt;}
.lsf_c00159{letter-spacing:-0.411840pt;}
.ls5_c00159{letter-spacing:0.000000pt;}
.ls4_c00159{letter-spacing:0.034848pt;}
.lsa_c00159{letter-spacing:2.042093pt;}
.lsd_c00159{letter-spacing:2.292998pt;}
.lsc_c00159{letter-spacing:2.320877pt;}
.ls0_c00159{letter-spacing:2.578752pt;}
.ls1_c00159{letter-spacing:3.108442pt;}
.ls9_c00159{letter-spacing:3.164198pt;}
.ls7_c00159{letter-spacing:3.484800pt;}
.ls3_c00159{letter-spacing:7.039296pt;}
.ls2_c00159{letter-spacing:45.619376pt;}
.ws2_c00159{word-spacing:-81.841162pt;}
.ws0_c00159{word-spacing:-17.424000pt;}
.ws3_c00159{word-spacing:0.000000pt;}
.ws1_c00159{word-spacing:1.951488pt;}
._10_c00159{margin-left:-8.224128pt;}
._3_c00159{margin-left:-4.251456pt;}
._7_c00159{width:1.324224pt;}
._2_c00159{width:5.575680pt;}
._c_c00159{width:7.108992pt;}
._5_c00159{width:9.339264pt;}
._f_c00159{width:10.593792pt;}
._a_c00159{width:19.608934pt;}
._0_c00159{width:21.048192pt;}
._11_c00159{width:23.069376pt;}
._9_c00159{width:25.299648pt;}
._8_c00159{width:26.646400pt;}
._4_c00159{width:28.296576pt;}
._e_c00159{width:30.317760pt;}
._b_c00159{width:31.571936pt;}
._6_c00159{width:33.663168pt;}
._1_c00159{width:37.217664pt;}
._d_c00159{width:41.956992pt;}
.fs7_c00159{font-size:15.136000pt;}
.fs9_c00159{font-size:20.064000pt;}
.fs2_c00159{font-size:25.168000pt;}
.fs0_c00159{font-size:29.568000pt;}
.fs4_c00159{font-size:30.272176pt;}
.fs5_c00159{font-size:34.496000pt;}
.fs3_c00159{font-size:45.619376pt;}
.fs6_c00159{font-size:57.376000pt;}
.fsa_c00159{font-size:63.360000pt;}
.fs1_c00159{font-size:69.696000pt;}
.fs8_c00159{font-size:72.160000pt;}
.y0_c00159{bottom:0.000000pt;}
.y1_c00159{bottom:68.000000pt;}
.y1f_c00159{bottom:86.724920pt;}
.y1e_c00159{bottom:131.393720pt;}
.y1d_c00159{bottom:157.688120pt;}
.y1c_c00159{bottom:190.001720pt;}
.y1b_c00159{bottom:211.544120pt;}
.y1a_c00159{bottom:247.654920pt;}
.y19_c00159{bottom:276.800520pt;}
.y18_c00159{bottom:305.633720pt;}
.y17_c00159{bottom:334.462520pt;}
.y16_c00159{bottom:363.286920pt;}
.y15_c00159{bottom:393.387320pt;}
.y14_c00159{bottom:409.856520pt;}
.y13_c00159{bottom:421.582520pt;}
.y12_c00159{bottom:450.728120pt;}
.y11_c00159{bottom:479.240120pt;}
.y10_c00159{bottom:508.064520pt;}
.yf_c00159{bottom:536.576520pt;}
.ye_c00159{bottom:565.722120pt;}
.yd_c00159{bottom:594.555320pt;}
.yc_c00159{bottom:623.067320pt;}
.yb_c00159{bottom:679.136520pt;}
.ya_c00159{bottom:707.331720pt;}
.y9_c00159{bottom:721.904520pt;}
.y8_c00159{bottom:736.160520pt;}
.y7_c00159{bottom:766.256520pt;}
.y6_c00159{bottom:795.402120pt;}
.y5_c00159{bottom:824.864520pt;}
.y4_c00159{bottom:862.251320pt;}
.y2_c00159{bottom:883.793720pt;}
.y3_c00159{bottom:961.405320pt;}
.h8_c00159{height:15.786375pt;}
.hb_c00159{height:20.926125pt;}
.h4_c00159{height:26.249438pt;}
.h5_c00159{height:30.382504pt;}
.h2_c00159{height:30.838500pt;}
.h6_c00159{height:31.572934pt;}
.h7_c00159{height:33.855938pt;}
.ha_c00159{height:59.841375pt;}
.h3_c00159{height:68.402813pt;}
.h9_c00159{height:70.821094pt;}
.h1_c00159{height:986.666667pt;}
.h0_c00159{height:1122.666667pt;}
.w1_c00159{width:652.000000pt;}
.w0_c00159{width:793.333333pt;}
.x0_c00159{left:0.000000pt;}
.x2_c00159{left:37.280787pt;}
.x4c_c00159{left:63.975587pt;}
.x11_c00159{left:64.978787pt;}
.x6_c00159{left:66.347187pt;}
.x1_c00159{left:70.666667pt;}
.x48_c00159{left:84.395987pt;}
.x6a_c00159{left:85.997587pt;}
.x6b_c00159{left:94.375187pt;}
.x31_c00159{left:95.470787pt;}
.x12_c00159{left:103.918787pt;}
.x29_c00159{left:105.287187pt;}
.x50_c00159{left:106.325587pt;}
.x42_c00159{left:113.955187pt;}
.x3b_c00159{left:114.993587pt;}
.x4d_c00159{left:116.665587pt;}
.x49_c00159{left:123.586787pt;}
.x13_c00159{left:125.280787pt;}
.x7_c00159{left:134.775987pt;}
.x14_c00159{left:144.178787pt;}
.x65_c00159{left:145.934387pt;}
.x58_c00159{left:152.670787pt;}
.x3c_c00159{left:153.577187pt;}
.x6c_c00159{left:154.901587pt;}
.x15_c00159{left:164.387987pt;}
.x6d_c00159{left:172.818387pt;}
.x3d_c00159{left:173.720387pt;}
.x22_c00159{left:174.710387pt;}
.x43_c00159{left:182.511587pt;}
.x32_c00159{left:183.783187pt;}
.x2a_c00159{left:184.821587pt;}
.x59_c00159{left:192.596387pt;}
.x3e_c00159{left:194.013187pt;}
.x5b_c00159{left:201.770387pt;}
.x23_c00159{left:203.684387pt;}
.x33_c00159{left:212.928787pt;}
.x16_c00159{left:213.984787pt;}
.x4a_c00159{left:222.423987pt;}
.x8_c00159{left:223.519587pt;}
.x17_c00159{left:224.439187pt;}
.x24_c00159{left:232.882787pt;}
.x3f_c00159{left:233.881587pt;}
.x18_c00159{left:243.447187pt;}
.x5a_c00159{left:245.308387pt;}
.x6e_c00159{left:246.258787pt;}
.x2b_c00159{left:252.453987pt;}
.x9_c00159{left:253.870787pt;}
.x34_c00159{left:262.455187pt;}
.x40_c00159{left:263.660787pt;}
.x19_c00159{left:273.226387pt;}
.x35_c00159{left:281.603987pt;}
.x60_c00159{left:282.725987pt;}
.x44_c00159{left:291.996787pt;}
.x1a_c00159{left:293.083587pt;}
.x25_c00159{left:302.371987pt;}
.x6f_c00159{left:303.568787pt;}
.x2c_c00159{left:304.844787pt;}
.x41_c00159{left:312.021187pt;}
.x51_c00159{left:320.293187pt;}
.x1b_c00159{left:321.903587pt;}
.x66_c00159{left:324.825187pt;}
.x4e_c00159{left:331.517587pt;}
.xa_c00159{left:341.655187pt;}
.x1c_c00159{left:351.682787pt;}
.x4b_c00159{left:352.721187pt;}
.x63_c00159{left:354.243587pt;}
.x1d_c00159{left:362.220787pt;}
.xb_c00159{left:371.768787pt;}
.x52_c00159{left:379.811987pt;}
.x36_c00159{left:381.470787pt;}
.x61_c00159{left:383.749987pt;}
.x1e_c00159{left:390.891187pt;}
.x26_c00159{left:392.316787pt;}
.x5c_c00159{left:400.901187pt;}
.x2d_c00159{left:402.155187pt;}
.x45_c00159{left:409.916787pt;}
.x1f_c00159{left:411.034387pt;}
.x2e_c00159{left:421.136787pt;}
.x4f_c00159{left:429.536387pt;}
.xc_c00159{left:430.675987pt;}
.xd_c00159{left:440.787187pt;}
.x68_c00159{left:446.260787pt;}
.x46_c00159{left:450.145987pt;}
.x67_c00159{left:451.206387pt;}
.x70_c00159{left:459.289187pt;}
.x37_c00159{left:460.446387pt;}
.x5e_c00159{left:465.933187pt;}
.x5f_c00159{left:469.941587pt;}
.x2f_c00159{left:480.065987pt;}
.xe_c00159{left:489.926387pt;}
.x55_c00159{left:499.249987pt;}
.x27_c00159{left:509.242387pt;}
.x62_c00159{left:510.452387pt;}
.xf_c00159{left:519.274387pt;}
.x20_c00159{left:528.857587pt;}
.x5d_c00159{left:531.374387pt;}
.x38_c00159{left:538.704787pt;}
.x10_c00159{left:548.481587pt;}
.x28_c00159{left:558.161587pt;}
.x53_c00159{left:562.130387pt;}
.x21_c00159{left:568.140787pt;}
.x64_c00159{left:576.857187pt;}
.x47_c00159{left:577.811987pt;}
.x3_c00159{left:578.797587pt;}
.x69_c00159{left:580.751187pt;}
.x30_c00159{left:587.967187pt;}
.x54_c00159{left:597.603187pt;}
.x56_c00159{left:607.115987pt;}
.x4_c00159{left:608.708787pt;}
.x5_c00159{left:614.767587pt;}
.x39_c00159{left:617.733187pt;}
.x57_c00159{left:637.203187pt;}
.x3a_c00159{left:646.957987pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5f07a3e6e444b362028640c8.woff2')format("woff");}.ff1_c00160{font-family:ff1_c00160;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00160;src:url('chunks/assets/font_67186c3e3eaaf0933dbe60a2.woff2')format("woff");}.ff2_c00160{font-family:ff2_c00160;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00160;src:url('chunks/assets/font_4179794d0001fc2c56b64991.woff2')format("woff");}.ff3_c00160{font-family:ff3_c00160;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00160;src:url('chunks/assets/font_e5ccfc9998e172e2109ca615.woff2')format("woff");}.ff4_c00160{font-family:ff4_c00160;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m40_c00160{transform:matrix(0.031251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.031251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.031251,0.000000,0.000000,0.250000,0,0);}
.m43_c00160{transform:matrix(0.105001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105001,0.000000,0.000000,0.250000,0,0);}
.m5e_c00160{transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);}
.m3f_c00160{transform:matrix(0.128125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128125,0.000000,0.000000,0.250000,0,0);}
.m41_c00160{transform:matrix(0.146874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146874,0.000000,0.000000,0.250000,0,0);}
.m42_c00160{transform:matrix(0.179167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179167,0.000000,0.000000,0.250000,0,0);}
.m9f_c00160{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00160{transform:matrix(0.184999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184999,0.000000,0.000000,0.250000,0,0);}
.m9_c00160{transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);}
.m75_c00160{transform:matrix(0.211905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211905,0.000000,0.000000,0.250000,0,0);}
.m84_c00160{transform:matrix(0.216704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216704,0.000000,0.000000,0.250000,0,0);}
.m60_c00160{transform:matrix(0.220377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220377,0.000000,0.000000,0.250000,0,0);}
.mbb_c00160{transform:matrix(0.224013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224013,0.000000,0.000000,0.250000,0,0);}
.m4a_c00160{transform:matrix(0.229332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229332,0.000000,0.000000,0.250000,0,0);}
.m22_c00160{transform:matrix(0.245407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245407,0.000000,0.000000,0.250000,0,0);}
.m33_c00160{transform:matrix(0.246981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246981,0.000000,0.000000,0.250000,0,0);}
.m1b_c00160{transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);}
.m0_c00160{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00160{transform:matrix(0.251395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251395,0.000000,0.000000,0.250000,0,0);}
.ma_c00160{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.mb8_c00160{transform:matrix(0.251946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251946,0.000000,0.000000,0.250000,0,0);}
.m64_c00160{transform:matrix(0.252101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252101,0.000000,0.000000,0.250000,0,0);}
.m97_c00160{transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);}
.m2b_c00160{transform:matrix(0.254597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254597,0.000000,0.000000,0.250000,0,0);}
.m5c_c00160{transform:matrix(0.256057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256057,0.000000,0.000000,0.250000,0,0);}
.mb0_c00160{transform:matrix(0.256487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256487,0.000000,0.000000,0.250000,0,0);}
.m2e_c00160{transform:matrix(0.256600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256600,0.000000,0.000000,0.250000,0,0);}
.m90_c00160{transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);}
.m86_c00160{transform:matrix(0.257156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257156,0.000000,0.000000,0.250000,0,0);}
.m70_c00160{transform:matrix(0.257973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257973,0.000000,0.000000,0.250000,0,0);}
.ma1_c00160{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.ma6_c00160{transform:matrix(0.258853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258853,0.000000,0.000000,0.250000,0,0);}
.m38_c00160{transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);}
.m77_c00160{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m10_c00160{transform:matrix(0.261254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261254,0.000000,0.000000,0.250000,0,0);}
.ma7_c00160{transform:matrix(0.262417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262417,0.000000,0.000000,0.250000,0,0);}
.m99_c00160{transform:matrix(0.262634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262634,0.000000,0.000000,0.250000,0,0);}
.m6e_c00160{transform:matrix(0.262744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262744,0.000000,0.000000,0.250000,0,0);}
.ma2_c00160{transform:matrix(0.263196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263196,0.000000,0.000000,0.250000,0,0);}
.m4c_c00160{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m44_c00160{transform:matrix(0.263352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263352,0.000000,0.000000,0.250000,0,0);}
.ma3_c00160{transform:matrix(0.263580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263580,0.000000,0.000000,0.250000,0,0);}
.m62_c00160{transform:matrix(0.263720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263720,0.000000,0.000000,0.250000,0,0);}
.m7f_c00160{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m49_c00160{transform:matrix(0.264437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264437,0.000000,0.000000,0.250000,0,0);}
.m2d_c00160{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m7b_c00160{transform:matrix(0.266735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266735,0.000000,0.000000,0.250000,0,0);}
.m5a_c00160{transform:matrix(0.267625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267625,0.000000,0.000000,0.250000,0,0);}
.m2f_c00160{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m89_c00160{transform:matrix(0.268725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268725,0.000000,0.000000,0.250000,0,0);}
.m39_c00160{transform:matrix(0.269020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269020,0.000000,0.000000,0.250000,0,0);}
.m80_c00160{transform:matrix(0.269533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269533,0.000000,0.000000,0.250000,0,0);}
.m4f_c00160{transform:matrix(0.269911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269911,0.000000,0.000000,0.250000,0,0);}
.m6a_c00160{transform:matrix(0.270496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270496,0.000000,0.000000,0.250000,0,0);}
.m7_c00160{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m18_c00160{transform:matrix(0.271316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271316,0.000000,0.000000,0.250000,0,0);}
.m3a_c00160{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.mb_c00160{transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);}
.m1a_c00160{transform:matrix(0.274280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274280,0.000000,0.000000,0.250000,0,0);}
.m98_c00160{transform:matrix(0.274395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274395,0.000000,0.000000,0.250000,0,0);}
.m55_c00160{transform:matrix(0.275441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275441,0.000000,0.000000,0.250000,0,0);}
.m9e_c00160{transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);}
.m4e_c00160{transform:matrix(0.276027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276027,0.000000,0.000000,0.250000,0,0);}
.m24_c00160{transform:matrix(0.276460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276460,0.000000,0.000000,0.250000,0,0);}
.m5b_c00160{transform:matrix(0.276488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276488,0.000000,0.000000,0.250000,0,0);}
.mb7_c00160{transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);}
.m8e_c00160{transform:matrix(0.277360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277360,0.000000,0.000000,0.250000,0,0);}
.m1e_c00160{transform:matrix(0.277612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277612,0.000000,0.000000,0.250000,0,0);}
.m4b_c00160{transform:matrix(0.277707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277707,0.000000,0.000000,0.250000,0,0);}
.m4d_c00160{transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);}
.mbc_c00160{transform:matrix(0.278331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278331,0.000000,0.000000,0.250000,0,0);}
.m1_c00160{transform:matrix(0.278436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278436,0.000000,0.000000,0.250000,0,0);}
.m2_c00160{transform:matrix(0.278740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278740,0.000000,0.000000,0.250000,0,0);}
.mab_c00160{transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);}
.m8d_c00160{transform:matrix(0.280778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280778,0.000000,0.000000,0.250000,0,0);}
.m7e_c00160{transform:matrix(0.280986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280986,0.000000,0.000000,0.250000,0,0);}
.m66_c00160{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.mb9_c00160{transform:matrix(0.282165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282165,0.000000,0.000000,0.250000,0,0);}
.m21_c00160{transform:matrix(0.282254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282254,0.000000,0.000000,0.250000,0,0);}
.m67_c00160{transform:matrix(0.282810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282810,0.000000,0.000000,0.250000,0,0);}
.m94_c00160{transform:matrix(0.283144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283144,0.000000,0.000000,0.250000,0,0);}
.m7a_c00160{transform:matrix(0.284760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284760,0.000000,0.000000,0.250000,0,0);}
.m9b_c00160{transform:matrix(0.285694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285694,0.000000,0.000000,0.250000,0,0);}
.m1f_c00160{transform:matrix(0.285700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285700,0.000000,0.000000,0.250000,0,0);}
.ma9_c00160{transform:matrix(0.285944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285944,0.000000,0.000000,0.250000,0,0);}
.m45_c00160{transform:matrix(0.286235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286235,0.000000,0.000000,0.250000,0,0);}
.mc_c00160{transform:matrix(0.287015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287015,0.000000,0.000000,0.250000,0,0);}
.m15_c00160{transform:matrix(0.287639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287639,0.000000,0.000000,0.250000,0,0);}
.m47_c00160{transform:matrix(0.288561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288561,0.000000,0.000000,0.250000,0,0);}
.m11_c00160{transform:matrix(0.288576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288576,0.000000,0.000000,0.250000,0,0);}
.m5f_c00160{transform:matrix(0.289069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289069,0.000000,0.000000,0.250000,0,0);}
.m52_c00160{transform:matrix(0.289203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289203,0.000000,0.000000,0.250000,0,0);}
.m92_c00160{transform:matrix(0.289652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289652,0.000000,0.000000,0.250000,0,0);}
.m57_c00160{transform:matrix(0.289989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289989,0.000000,0.000000,0.250000,0,0);}
.m6f_c00160{transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);}
.mb6_c00160{transform:matrix(0.290528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290528,0.000000,0.000000,0.250000,0,0);}
.mb2_c00160{transform:matrix(0.290630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290630,0.000000,0.000000,0.250000,0,0);}
.m58_c00160{transform:matrix(0.291625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291625,0.000000,0.000000,0.250000,0,0);}
.m3_c00160{transform:matrix(0.291650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291650,0.000000,0.000000,0.250000,0,0);}
.m48_c00160{transform:matrix(0.291850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291850,0.000000,0.000000,0.250000,0,0);}
.m3d_c00160{transform:matrix(0.293256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293256,0.000000,0.000000,0.250000,0,0);}
.ma5_c00160{transform:matrix(0.293261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293261,0.000000,0.000000,0.250000,0,0);}
.m65_c00160{transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);}
.m36_c00160{transform:matrix(0.294116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294116,0.000000,0.000000,0.250000,0,0);}
.m5_c00160{transform:matrix(0.294217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294217,0.000000,0.000000,0.250000,0,0);}
.mba_c00160{transform:matrix(0.294572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294572,0.000000,0.000000,0.250000,0,0);}
.m54_c00160{transform:matrix(0.294773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294773,0.000000,0.000000,0.250000,0,0);}
.m3b_c00160{transform:matrix(0.294986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294986,0.000000,0.000000,0.250000,0,0);}
.m14_c00160{transform:matrix(0.295136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295136,0.000000,0.000000,0.250000,0,0);}
.maa_c00160{transform:matrix(0.296403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296403,0.000000,0.000000,0.250000,0,0);}
.m7c_c00160{transform:matrix(0.296657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296657,0.000000,0.000000,0.250000,0,0);}
.m29_c00160{transform:matrix(0.296849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296849,0.000000,0.000000,0.250000,0,0);}
.mb3_c00160{transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);}
.m1d_c00160{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.ma4_c00160{transform:matrix(0.297924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297924,0.000000,0.000000,0.250000,0,0);}
.m34_c00160{transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);}
.m25_c00160{transform:matrix(0.299520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299520,0.000000,0.000000,0.250000,0,0);}
.m30_c00160{transform:matrix(0.300068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300068,0.000000,0.000000,0.250000,0,0);}
.m37_c00160{transform:matrix(0.300600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300600,0.000000,0.000000,0.250000,0,0);}
.m8f_c00160{transform:matrix(0.302171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302171,0.000000,0.000000,0.250000,0,0);}
.m31_c00160{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m35_c00160{transform:matrix(0.303162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303162,0.000000,0.000000,0.250000,0,0);}
.m26_c00160{transform:matrix(0.304372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304372,0.000000,0.000000,0.250000,0,0);}
.m6c_c00160{transform:matrix(0.304765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304765,0.000000,0.000000,0.250000,0,0);}
.m71_c00160{transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);}
.m68_c00160{transform:matrix(0.305304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305304,0.000000,0.000000,0.250000,0,0);}
.m5d_c00160{transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);}
.m83_c00160{transform:matrix(0.306494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306494,0.000000,0.000000,0.250000,0,0);}
.m8b_c00160{transform:matrix(0.307092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307092,0.000000,0.000000,0.250000,0,0);}
.mb5_c00160{transform:matrix(0.307238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307238,0.000000,0.000000,0.250000,0,0);}
.m61_c00160{transform:matrix(0.307706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307706,0.000000,0.000000,0.250000,0,0);}
.m74_c00160{transform:matrix(0.307757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307757,0.000000,0.000000,0.250000,0,0);}
.m82_c00160{transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);}
.m85_c00160{transform:matrix(0.308485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308485,0.000000,0.000000,0.250000,0,0);}
.m81_c00160{transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);}
.m13_c00160{transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);}
.m19_c00160{transform:matrix(0.309370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309370,0.000000,0.000000,0.250000,0,0);}
.m51_c00160{transform:matrix(0.309839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309839,0.000000,0.000000,0.250000,0,0);}
.m59_c00160{transform:matrix(0.310539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310539,0.000000,0.000000,0.250000,0,0);}
.mac_c00160{transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);}
.m76_c00160{transform:matrix(0.310963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310963,0.000000,0.000000,0.250000,0,0);}
.m63_c00160{transform:matrix(0.311255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311255,0.000000,0.000000,0.250000,0,0);}
.m32_c00160{transform:matrix(0.311706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311706,0.000000,0.000000,0.250000,0,0);}
.m7d_c00160{transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);}
.m3c_c00160{transform:matrix(0.312391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312391,0.000000,0.000000,0.250000,0,0);}
.m8c_c00160{transform:matrix(0.312688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312688,0.000000,0.000000,0.250000,0,0);}
.m88_c00160{transform:matrix(0.313174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313174,0.000000,0.000000,0.250000,0,0);}
.m12_c00160{transform:matrix(0.313396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313396,0.000000,0.000000,0.250000,0,0);}
.m72_c00160{transform:matrix(0.313908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313908,0.000000,0.000000,0.250000,0,0);}
.m79_c00160{transform:matrix(0.314117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314117,0.000000,0.000000,0.250000,0,0);}
.m96_c00160{transform:matrix(0.314968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314968,0.000000,0.000000,0.250000,0,0);}
.m9d_c00160{transform:matrix(0.315489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315489,0.000000,0.000000,0.250000,0,0);}
.m73_c00160{transform:matrix(0.315717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315717,0.000000,0.000000,0.250000,0,0);}
.m6b_c00160{transform:matrix(0.317139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317139,0.000000,0.000000,0.250000,0,0);}
.m2a_c00160{transform:matrix(0.318723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318723,0.000000,0.000000,0.250000,0,0);}
.mae_c00160{transform:matrix(0.319290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319290,0.000000,0.000000,0.250000,0,0);}
.m6d_c00160{transform:matrix(0.319530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319530,0.000000,0.000000,0.250000,0,0);}
.m87_c00160{transform:matrix(0.320581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320581,0.000000,0.000000,0.250000,0,0);}
.m16_c00160{transform:matrix(0.320819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320819,0.000000,0.000000,0.250000,0,0);}
.m56_c00160{transform:matrix(0.321107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321107,0.000000,0.000000,0.250000,0,0);}
.m46_c00160{transform:matrix(0.321432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321432,0.000000,0.000000,0.250000,0,0);}
.maf_c00160{transform:matrix(0.321492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321492,0.000000,0.000000,0.250000,0,0);}
.m8a_c00160{transform:matrix(0.322562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322562,0.000000,0.000000,0.250000,0,0);}
.mbd_c00160{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.m53_c00160{transform:matrix(0.323993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323993,0.000000,0.000000,0.250000,0,0);}
.ma0_c00160{transform:matrix(0.325744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325744,0.000000,0.000000,0.250000,0,0);}
.m1c_c00160{transform:matrix(0.326606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326606,0.000000,0.000000,0.250000,0,0);}
.m50_c00160{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.md_c00160{transform:matrix(0.328654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328654,0.000000,0.000000,0.250000,0,0);}
.m20_c00160{transform:matrix(0.328771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328771,0.000000,0.000000,0.250000,0,0);}
.m93_c00160{transform:matrix(0.329131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329131,0.000000,0.000000,0.250000,0,0);}
.m6_c00160{transform:matrix(0.330354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330354,0.000000,0.000000,0.250000,0,0);}
.mb1_c00160{transform:matrix(0.331988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331988,0.000000,0.000000,0.250000,0,0);}
.m3e_c00160{transform:matrix(0.332564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332564,0.000000,0.000000,0.250000,0,0);}
.m27_c00160{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m23_c00160{transform:matrix(0.333358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333358,0.000000,0.000000,0.250000,0,0);}
.m95_c00160{transform:matrix(0.337181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337181,0.000000,0.000000,0.250000,0,0);}
.mf_c00160{transform:matrix(0.337621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337621,0.000000,0.000000,0.250000,0,0);}
.m78_c00160{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.me_c00160{transform:matrix(0.345244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345244,0.000000,0.000000,0.250000,0,0);}
.m8_c00160{transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);}
.m69_c00160{transform:matrix(0.348765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348765,0.000000,0.000000,0.250000,0,0);}
.m2c_c00160{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.mad_c00160{transform:matrix(0.352224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352224,0.000000,0.000000,0.250000,0,0);}
.m4_c00160{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m17_c00160{transform:matrix(0.359561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359561,0.000000,0.000000,0.250000,0,0);}
.mb4_c00160{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m91_c00160{transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);}
.m28_c00160{transform:matrix(0.368717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368717,0.000000,0.000000,0.250000,0,0);}
.m9a_c00160{transform:matrix(0.373718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373718,0.000000,0.000000,0.250000,0,0);}
.v1_c00160{vertical-align:-75.556800px;}
.v0_c00160{vertical-align:0.000000px;}
.ls5_c00160{letter-spacing:-2.744280px;}
.lsa_c00160{letter-spacing:-1.897474px;}
.lse_c00160{letter-spacing:-1.332936px;}
.lsf_c00160{letter-spacing:-0.987941px;}
.ls1_c00160{letter-spacing:0.000000px;}
.ls13_c00160{letter-spacing:0.258746px;}
.lsc_c00160{letter-spacing:1.505434px;}
.ls6_c00160{letter-spacing:1.685772px;}
.ls8_c00160{letter-spacing:1.819066px;}
.ls12_c00160{letter-spacing:3.170898px;}
.ls7_c00160{letter-spacing:3.246091px;}
.ls0_c00160{letter-spacing:3.332340px;}
.ls11_c00160{letter-spacing:3.402907px;}
.ls10_c00160{letter-spacing:3.474900px;}
.ls2_c00160{letter-spacing:3.920400px;}
.ls4_c00160{letter-spacing:3.960000px;}
.lsb_c00160{letter-spacing:31.363200px;}
.lsd_c00160{letter-spacing:49.896198px;}
.ls3_c00160{letter-spacing:51.321798px;}
.ls9_c00160{letter-spacing:57.024198px;}
.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;}
}
.ws2_c00160{word-spacing:-22.934340px;}
.ws0_c00160{word-spacing:-19.602000px;}
.ws3_c00160{word-spacing:-18.269064px;}
.ws5_c00160{word-spacing:0.000000px;}
.ws1_c00160{word-spacing:2.665872px;}
.ws4_c00160{word-spacing:3.606768px;}
._6_c00160{margin-left:-4.234032px;}
._d_c00160{margin-left:-2.665872px;}
._10_c00160{margin-left:-1.646568px;}
._2_c00160{width:4.939704px;}
._1_c00160{width:7.056720px;}
._7_c00160{width:8.624880px;}
._0_c00160{width:9.722592px;}
._c_c00160{width:11.682792px;}
._3_c00160{width:22.503096px;}
._4_c00160{width:24.463296px;}
._5_c00160{width:27.521208px;}
._a_c00160{width:28.854144px;}
._f_c00160{width:31.284792px;}
._8_c00160{width:33.088176px;}
._9_c00160{width:35.283600px;}
._b_c00160{width:37.930464px;}
._e_c00160{width:44.697312px;}
.fc0_c00160{color:transparent;}
.fs0_c00160{font-size:22.176000px;}
.fs9_c00160{font-size:25.146000px;}
.fs1_c00160{font-size:27.720000px;}
.fsa_c00160{font-size:31.363200px;}
.fsb_c00160{font-size:38.808000px;}
.fsc_c00160{font-size:49.896198px;}
.fs3_c00160{font-size:51.321798px;}
.fs6_c00160{font-size:57.024198px;}
.fs5_c00160{font-size:64.548000px;}
.fs7_c00160{font-size:66.528000px;}
.fsd_c00160{font-size:69.498000px;}
.fs8_c00160{font-size:70.884000px;}
.fs2_c00160{font-size:78.408000px;}
.fs4_c00160{font-size:79.200000px;}
.fsf_c00160{font-size:85.932198px;}
.fse_c00160{font-size:109.692198px;}
.y0_c00160{bottom:0.000000px;}
.y1_c00160{bottom:76.500000px;}
.y21_c00160{bottom:139.977135px;}
.y20_c00160{bottom:170.622585px;}
.y1f_c00160{bottom:205.554735px;}
.y1e_c00160{bottom:239.412735px;}
.y1d_c00160{bottom:271.845135px;}
.y1b_c00160{bottom:304.277535px;}
.y1c_c00160{bottom:306.772335px;}
.y1a_c00160{bottom:336.704985px;}
.y19_c00160{bottom:401.213385px;}
.y18_c00160{bottom:434.002185px;}
.y17_c00160{bottom:466.795935px;}
.y16_c00160{bottom:498.871935px;}
.y15_c00160{bottom:530.942985px;}
.y14_c00160{bottom:563.023935px;}
.y13_c00160{bottom:578.349135px;}
.y12_c00160{bottom:585.833535px;}
.y10_c00160{bottom:595.451385px;}
.y11_c00160{bottom:596.169135px;}
.yf_c00160{bottom:628.245135px;}
.ye_c00160{bottom:661.033935px;}
.yd_c00160{bottom:725.542335px;}
.yc_c00160{bottom:757.974735px;}
.yb_c00160{bottom:790.045785px;}
.ya_c00160{bottom:806.083785px;}
.y9_c00160{bottom:822.478185px;}
.y8_c00160{bottom:854.202735px;}
.y7_c00160{bottom:886.991535px;}
.y6_c00160{bottom:919.780335px;}
.y5_c00160{bottom:1069.822260px;}
.y3_c00160{bottom:1076.234985px;}
.y4_c00160{bottom:1086.570585px;}
.y2_c00160{bottom:1103.677785px;}
.hb_c00160{height:20.887891px;}
.h2_c00160{height:23.128875px;}
.ha_c00160{height:26.226492px;}
.h3_c00160{height:28.911094px;}
.hd_c00160{height:33.230868px;}
.h5_c00160{height:34.180317px;}
.h8_c00160{height:37.978116px;}
.hc_c00160{height:40.475531px;}
.h7_c00160{height:67.321547px;}
.he_c00160{height:68.208486px;}
.h9_c00160{height:69.568770px;}
.h4_c00160{height:76.953164px;}
.h6_c00160{height:77.691797px;}
.h10_c00160{height:84.337753px;}
.hf_c00160{height:114.405535px;}
.h1_c00160{height:1110.000000px;}
.h0_c00160{height:1263.000000px;}
.w1_c00160{width:733.500000px;}
.w0_c00160{width:892.500000px;}
.x0_c00160{left:0.000000px;}
.x7_c00160{left:70.606335px;}
.x13_c00160{left:71.987385px;}
.x1_c00160{left:79.500000px;}
.x5d_c00160{left:82.471485px;}
.x50_c00160{left:93.183285px;}
.x2f_c00160{left:103.870335px;}
.x69_c00160{left:105.102885px;}
.x26_c00160{left:115.458285px;}
.x20_c00160{left:116.695785px;}
.x30_c00160{left:125.937435px;}
.x14_c00160{left:137.253135px;}
.x67_c00160{left:138.451035px;}
.x39_c00160{left:140.797335px;}
.x3a_c00160{left:141.861585px;}
.x44_c00160{left:148.761885px;}
.x5e_c00160{left:150.548835px;}
.x58_c00160{left:158.944035px;}
.x15_c00160{left:159.988485px;}
.x27_c00160{left:170.041935px;}
.x4c_c00160{left:181.605135px;}
.x5f_c00160{left:183.342585px;}
.x8_c00160{left:192.495135px;}
.x36_c00160{left:193.663335px;}
.x6a_c00160{left:194.732535px;}
.x46_c00160{left:203.315835px;}
.x28_c00160{left:204.320685px;}
.x4d_c00160{left:215.393835px;}
.x16_c00160{left:225.764085px;}
.x60_c00160{left:226.867935px;}
.x21_c00160{left:235.589835px;}
.x17_c00160{left:237.327285px;}
.x62_c00160{left:238.436085px;}
.x3b_c00160{left:239.619135px;}
.x9_c00160{left:248.177685px;}
.x5a_c00160{left:249.979485px;}
.x31_c00160{left:259.265685px;}
.x6b_c00160{left:260.998185px;}
.x18_c00160{left:271.195185px;}
.xa_c00160{left:281.367435px;}
.x54_c00160{left:283.124685px;}
.x22_c00160{left:293.489985px;}
.x6_c00160{left:296.101011px;}
.x32_c00160{left:302.949435px;}
.x3e_c00160{left:304.167135px;}
.x68_c00160{left:305.810535px;}
.x37_c00160{left:313.641435px;}
.x3c_c00160{left:315.220485px;}
.x55_c00160{left:316.636185px;}
.x63_c00160{left:319.096335px;}
.x19_c00160{left:325.724385px;}
.x5b_c00160{left:327.684585px;}
.x29_c00160{left:337.139085px;}
.xb_c00160{left:348.553785px;}
.x56_c00160{left:358.869585px;}
.x6c_c00160{left:361.012935px;}
.x2a_c00160{left:370.685235px;}
.x3f_c00160{left:381.832635px;}
.x1a_c00160{left:392.737485px;}
.x38_c00160{left:403.389885px;}
.x64_c00160{left:404.711535px;}
.x2e_c00160{left:408.721035px;}
.x1b_c00160{left:414.106635px;}
.x40_c00160{left:415.502535px;}
.x23_c00160{left:426.288585px;}
.x6d_c00160{left:437.609235px;}
.x3d_c00160{left:447.920085px;}
.x6e_c00160{left:449.405085px;}
.x24_c00160{left:458.305185px;}
.xc_c00160{left:460.250535px;}
.x5_c00160{left:462.537435px;}
.x59_c00160{left:469.388235px;}
.x2b_c00160{left:471.244485px;}
.x1c_c00160{left:481.654335px;}
.x65_c00160{left:483.035385px;}
.xd_c00160{left:492.974985px;}
.x25_c00160{left:502.127535px;}
.x2c_c00160{left:503.167035px;}
.x41_c00160{left:514.804485px;}
.x4e_c00160{left:524.630235px;}
.xe_c00160{left:525.709335px;}
.x42_c00160{left:548.697135px;}
.x33_c00160{left:558.874335px;}
.x4f_c00160{left:560.032635px;}
.x57_c00160{left:562.522485px;}
.xf_c00160{left:569.506935px;}
.x51_c00160{left:570.764235px;}
.x3_c00160{left:576.560685px;}
.x1d_c00160{left:580.550385px;}
.x43_c00160{left:582.139335px;}
.x45_c00160{left:591.187935px;}
.x47_c00160{left:592.509585px;}
.x10_c00160{left:602.795685px;}
.x2d_c00160{left:603.825285px;}
.x61_c00160{left:606.344835px;}
.x34_c00160{left:614.898435px;}
.x53_c00160{left:624.937035px;}
.x66_c00160{left:625.976535px;}
.x1e_c00160{left:636.119085px;}
.x11_c00160{left:637.376385px;}
.x48_c00160{left:646.073535px;}
.x4_c00160{left:647.687235px;}
.x2_c00160{left:652.142235px;}
.x49_c00160{left:658.760385px;}
.x35_c00160{left:668.581185px;}
.x12_c00160{left:670.090935px;}
.x1f_c00160{left:680.847285px;}
.x52_c00160{left:692.286735px;}
.x4a_c00160{left:698.385135px;}
.x4b_c00160{left:701.171985px;}
.x5c_c00160{left:702.236235px;}
@media print{
.v1_c00160{vertical-align:-67.161600pt;}
.v0_c00160{vertical-align:0.000000pt;}
.ls5_c00160{letter-spacing:-2.439360pt;}
.lsa_c00160{letter-spacing:-1.686643pt;}
.lse_c00160{letter-spacing:-1.184832pt;}
.lsf_c00160{letter-spacing:-0.878170pt;}
.ls1_c00160{letter-spacing:0.000000pt;}
.ls13_c00160{letter-spacing:0.229997pt;}
.lsc_c00160{letter-spacing:1.338163pt;}
.ls6_c00160{letter-spacing:1.498464pt;}
.ls8_c00160{letter-spacing:1.616947pt;}
.ls12_c00160{letter-spacing:2.818576pt;}
.ls7_c00160{letter-spacing:2.885414pt;}
.ls0_c00160{letter-spacing:2.962080pt;}
.ls11_c00160{letter-spacing:3.024806pt;}
.ls10_c00160{letter-spacing:3.088800pt;}
.ls2_c00160{letter-spacing:3.484800pt;}
.ls4_c00160{letter-spacing:3.520000pt;}
.lsb_c00160{letter-spacing:27.878400pt;}
.lsd_c00160{letter-spacing:44.352176pt;}
.ls3_c00160{letter-spacing:45.619376pt;}
.ls9_c00160{letter-spacing:50.688176pt;}
.ws2_c00160{word-spacing:-20.386080pt;}
.ws0_c00160{word-spacing:-17.424000pt;}
.ws3_c00160{word-spacing:-16.239168pt;}
.ws5_c00160{word-spacing:0.000000pt;}
.ws1_c00160{word-spacing:2.369664pt;}
.ws4_c00160{word-spacing:3.206016pt;}
._6_c00160{margin-left:-3.763584pt;}
._d_c00160{margin-left:-2.369664pt;}
._10_c00160{margin-left:-1.463616pt;}
._2_c00160{width:4.390848pt;}
._1_c00160{width:6.272640pt;}
._7_c00160{width:7.666560pt;}
._0_c00160{width:8.642304pt;}
._c_c00160{width:10.384704pt;}
._3_c00160{width:20.002752pt;}
._4_c00160{width:21.745152pt;}
._5_c00160{width:24.463296pt;}
._a_c00160{width:25.648128pt;}
._f_c00160{width:27.808704pt;}
._8_c00160{width:29.411712pt;}
._9_c00160{width:31.363200pt;}
._b_c00160{width:33.715968pt;}
._e_c00160{width:39.730944pt;}
.fs0_c00160{font-size:19.712000pt;}
.fs9_c00160{font-size:22.352000pt;}
.fs1_c00160{font-size:24.640000pt;}
.fsa_c00160{font-size:27.878400pt;}
.fsb_c00160{font-size:34.496000pt;}
.fsc_c00160{font-size:44.352176pt;}
.fs3_c00160{font-size:45.619376pt;}
.fs6_c00160{font-size:50.688176pt;}
.fs5_c00160{font-size:57.376000pt;}
.fs7_c00160{font-size:59.136000pt;}
.fsd_c00160{font-size:61.776000pt;}
.fs8_c00160{font-size:63.008000pt;}
.fs2_c00160{font-size:69.696000pt;}
.fs4_c00160{font-size:70.400000pt;}
.fsf_c00160{font-size:76.384176pt;}
.fse_c00160{font-size:97.504176pt;}
.y0_c00160{bottom:0.000000pt;}
.y1_c00160{bottom:68.000000pt;}
.y21_c00160{bottom:124.424120pt;}
.y20_c00160{bottom:151.664520pt;}
.y1f_c00160{bottom:182.715320pt;}
.y1e_c00160{bottom:212.811320pt;}
.y1d_c00160{bottom:241.640120pt;}
.y1b_c00160{bottom:270.468920pt;}
.y1c_c00160{bottom:272.686520pt;}
.y1a_c00160{bottom:299.293320pt;}
.y19_c00160{bottom:356.634120pt;}
.y18_c00160{bottom:385.779720pt;}
.y17_c00160{bottom:414.929720pt;}
.y16_c00160{bottom:443.441720pt;}
.y15_c00160{bottom:471.949320pt;}
.y14_c00160{bottom:500.465720pt;}
.y13_c00160{bottom:514.088120pt;}
.y12_c00160{bottom:520.740920pt;}
.y10_c00160{bottom:529.290120pt;}
.y11_c00160{bottom:529.928120pt;}
.yf_c00160{bottom:558.440120pt;}
.ye_c00160{bottom:587.585720pt;}
.yd_c00160{bottom:644.926520pt;}
.yc_c00160{bottom:673.755320pt;}
.yb_c00160{bottom:702.262920pt;}
.ya_c00160{bottom:716.518920pt;}
.y9_c00160{bottom:731.091720pt;}
.y8_c00160{bottom:759.291320pt;}
.y7_c00160{bottom:788.436920pt;}
.y6_c00160{bottom:817.582520pt;}
.y5_c00160{bottom:950.953120pt;}
.y3_c00160{bottom:956.653320pt;}
.y4_c00160{bottom:965.840520pt;}
.y2_c00160{bottom:981.046920pt;}
.hb_c00160{height:18.567014pt;}
.h2_c00160{height:20.559000pt;}
.ha_c00160{height:23.312438pt;}
.h3_c00160{height:25.698750pt;}
.hd_c00160{height:29.538549pt;}
.h5_c00160{height:30.382504pt;}
.h8_c00160{height:33.758325pt;}
.hc_c00160{height:35.978250pt;}
.h7_c00160{height:59.841375pt;}
.he_c00160{height:60.629766pt;}
.h9_c00160{height:61.838906pt;}
.h4_c00160{height:68.402813pt;}
.h6_c00160{height:69.059375pt;}
.h10_c00160{height:74.966891pt;}
.hf_c00160{height:101.693809pt;}
.h1_c00160{height:986.666667pt;}
.h0_c00160{height:1122.666667pt;}
.w1_c00160{width:652.000000pt;}
.w0_c00160{width:793.333333pt;}
.x0_c00160{left:0.000000pt;}
.x7_c00160{left:62.761187pt;}
.x13_c00160{left:63.988787pt;}
.x1_c00160{left:70.666667pt;}
.x5d_c00160{left:73.307987pt;}
.x50_c00160{left:82.829587pt;}
.x2f_c00160{left:92.329187pt;}
.x69_c00160{left:93.424787pt;}
.x26_c00160{left:102.629587pt;}
.x20_c00160{left:103.729587pt;}
.x30_c00160{left:111.944387pt;}
.x14_c00160{left:122.002787pt;}
.x67_c00160{left:123.067587pt;}
.x39_c00160{left:125.153187pt;}
.x3a_c00160{left:126.099187pt;}
.x44_c00160{left:132.232787pt;}
.x5e_c00160{left:133.821187pt;}
.x58_c00160{left:141.283587pt;}
.x15_c00160{left:142.211987pt;}
.x27_c00160{left:151.148387pt;}
.x4c_c00160{left:161.426787pt;}
.x5f_c00160{left:162.971187pt;}
.x8_c00160{left:171.106787pt;}
.x36_c00160{left:172.145187pt;}
.x6a_c00160{left:173.095587pt;}
.x46_c00160{left:180.725187pt;}
.x28_c00160{left:181.618387pt;}
.x4d_c00160{left:191.461187pt;}
.x16_c00160{left:200.679187pt;}
.x60_c00160{left:201.660387pt;}
.x21_c00160{left:209.413187pt;}
.x17_c00160{left:210.957587pt;}
.x62_c00160{left:211.943187pt;}
.x3b_c00160{left:212.994787pt;}
.x9_c00160{left:220.602387pt;}
.x5a_c00160{left:222.203987pt;}
.x31_c00160{left:230.458387pt;}
.x6b_c00160{left:231.998387pt;}
.x18_c00160{left:241.062387pt;}
.xa_c00160{left:250.104387pt;}
.x54_c00160{left:251.666387pt;}
.x22_c00160{left:260.879987pt;}
.x6_c00160{left:263.200899pt;}
.x32_c00160{left:269.288387pt;}
.x3e_c00160{left:270.370787pt;}
.x68_c00160{left:271.831587pt;}
.x37_c00160{left:278.792387pt;}
.x3c_c00160{left:280.195987pt;}
.x55_c00160{left:281.454387pt;}
.x63_c00160{left:283.641187pt;}
.x19_c00160{left:289.532787pt;}
.x5b_c00160{left:291.275187pt;}
.x29_c00160{left:299.679187pt;}
.xb_c00160{left:309.825587pt;}
.x56_c00160{left:318.995187pt;}
.x6c_c00160{left:320.900387pt;}
.x2a_c00160{left:329.497987pt;}
.x3f_c00160{left:339.406787pt;}
.x1a_c00160{left:349.099987pt;}
.x38_c00160{left:358.568787pt;}
.x64_c00160{left:359.743587pt;}
.x2e_c00160{left:363.307587pt;}
.x1b_c00160{left:368.094787pt;}
.x40_c00160{left:369.335587pt;}
.x23_c00160{left:378.923187pt;}
.x6d_c00160{left:388.985987pt;}
.x3d_c00160{left:398.151187pt;}
.x6e_c00160{left:399.471187pt;}
.x24_c00160{left:407.382387pt;}
.xc_c00160{left:409.111587pt;}
.x5_c00160{left:411.144387pt;}
.x59_c00160{left:417.233987pt;}
.x2b_c00160{left:418.883987pt;}
.x1c_c00160{left:428.137187pt;}
.x65_c00160{left:429.364787pt;}
.xd_c00160{left:438.199987pt;}
.x25_c00160{left:446.335587pt;}
.x2c_c00160{left:447.259587pt;}
.x41_c00160{left:457.603987pt;}
.x4e_c00160{left:466.337987pt;}
.xe_c00160{left:467.297187pt;}
.x42_c00160{left:487.730787pt;}
.x33_c00160{left:496.777187pt;}
.x4f_c00160{left:497.806787pt;}
.x57_c00160{left:500.019987pt;}
.xf_c00160{left:506.228387pt;}
.x51_c00160{left:507.345987pt;}
.x3_c00160{left:512.498387pt;}
.x1d_c00160{left:516.044787pt;}
.x43_c00160{left:517.457187pt;}
.x45_c00160{left:525.500387pt;}
.x47_c00160{left:526.675187pt;}
.x10_c00160{left:535.818387pt;}
.x2d_c00160{left:536.733587pt;}
.x61_c00160{left:538.973187pt;}
.x34_c00160{left:546.576387pt;}
.x53_c00160{left:555.499587pt;}
.x66_c00160{left:556.423587pt;}
.x1e_c00160{left:565.439187pt;}
.x11_c00160{left:566.556787pt;}
.x48_c00160{left:574.287587pt;}
.x4_c00160{left:575.721987pt;}
.x2_c00160{left:579.681987pt;}
.x49_c00160{left:585.564787pt;}
.x35_c00160{left:594.294387pt;}
.x12_c00160{left:595.636387pt;}
.x1f_c00160{left:605.197587pt;}
.x52_c00160{left:615.365987pt;}
.x4a_c00160{left:620.786787pt;}
.x4b_c00160{left:623.263987pt;}
.x5c_c00160{left:624.209987pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_445ca4e9ee772122ebf51b6e.woff2')format("woff");}.ff1_c00161{font-family:ff1_c00161;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00161;src:url('chunks/assets/font_7f14d5a703930f6e40f382da.woff2')format("woff");}.ff2_c00161{font-family:ff2_c00161;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00161;src:url('chunks/assets/font_bbbd24440e1c1005e29617e3.woff2')format("woff");}.ff3_c00161{font-family:ff3_c00161;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00161;src:url('chunks/assets/font_de69b7a22c0468eecabdb8b6.woff2')format("woff");}.ff4_c00161{font-family:ff4_c00161;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m56_c00161{transform:matrix(0.111112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111112,0.000000,0.000000,0.250000,0,0);}
.mb1_c00161{transform:matrix(0.153048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153048,0.000000,0.000000,0.250000,0,0);}
.m6f_c00161{transform:matrix(0.163148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163148,0.000000,0.000000,0.250000,0,0);}
.m55_c00161{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);}
.ma8_c00161{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00161{transform:matrix(0.188749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188749,0.000000,0.000000,0.250000,0,0);}
.m57_c00161{transform:matrix(0.196759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196759,0.000000,0.000000,0.250000,0,0);}
.m33_c00161{transform:matrix(0.200144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200144,0.000000,0.000000,0.250000,0,0);}
.m54_c00161{transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);}
.m7b_c00161{transform:matrix(0.213031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213031,0.000000,0.000000,0.250000,0,0);}
.me_c00161{transform:matrix(0.216830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216830,0.000000,0.000000,0.250000,0,0);}
.mb2_c00161{transform:matrix(0.218264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218264,0.000000,0.000000,0.250000,0,0);}
.m18_c00161{transform:matrix(0.229708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229708,0.000000,0.000000,0.250000,0,0);}
.m47_c00161{transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);}
.m1_c00161{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00161{transform:matrix(0.250153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250153,0.000000,0.000000,0.250000,0,0);}
.mb7_c00161{transform:matrix(0.252369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252369,0.000000,0.000000,0.250000,0,0);}
.m9_c00161{transform:matrix(0.252497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252497,0.000000,0.000000,0.250000,0,0);}
.m4d_c00161{transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);}
.m5a_c00161{transform:matrix(0.254378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254378,0.000000,0.000000,0.250000,0,0);}
.m0_c00161{transform:matrix(0.256681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256681,0.000000,0.000000,0.250000,0,0);}
.m1a_c00161{transform:matrix(0.257849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257849,0.000000,0.000000,0.250000,0,0);}
.m3_c00161{transform:matrix(0.257917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257917,0.000000,0.000000,0.250000,0,0);}
.m81_c00161{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m6_c00161{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.ma5_c00161{transform:matrix(0.263827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263827,0.000000,0.000000,0.250000,0,0);}
.m41_c00161{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m9e_c00161{transform:matrix(0.264704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264704,0.000000,0.000000,0.250000,0,0);}
.m97_c00161{transform:matrix(0.264890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264890,0.000000,0.000000,0.250000,0,0);}
.m5b_c00161{transform:matrix(0.265690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265690,0.000000,0.000000,0.250000,0,0);}
.m73_c00161{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m58_c00161{transform:matrix(0.266682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266682,0.000000,0.000000,0.250000,0,0);}
.m1c_c00161{transform:matrix(0.266726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266726,0.000000,0.000000,0.250000,0,0);}
.m8c_c00161{transform:matrix(0.267779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267779,0.000000,0.000000,0.250000,0,0);}
.m2c_c00161{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m44_c00161{transform:matrix(0.268109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268109,0.000000,0.000000,0.250000,0,0);}
.m8_c00161{transform:matrix(0.268484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268484,0.000000,0.000000,0.250000,0,0);}
.m88_c00161{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.ma2_c00161{transform:matrix(0.270074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270074,0.000000,0.000000,0.250000,0,0);}
.mad_c00161{transform:matrix(0.270484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270484,0.000000,0.000000,0.250000,0,0);}
.m9f_c00161{transform:matrix(0.270538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270538,0.000000,0.000000,0.250000,0,0);}
.m60_c00161{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m74_c00161{transform:matrix(0.271124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271124,0.000000,0.000000,0.250000,0,0);}
.m72_c00161{transform:matrix(0.271197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271197,0.000000,0.000000,0.250000,0,0);}
.m10_c00161{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m30_c00161{transform:matrix(0.272610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272610,0.000000,0.000000,0.250000,0,0);}
.mb3_c00161{transform:matrix(0.273113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273113,0.000000,0.000000,0.250000,0,0);}
.m22_c00161{transform:matrix(0.273136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273136,0.000000,0.000000,0.250000,0,0);}
.m8a_c00161{transform:matrix(0.273897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273897,0.000000,0.000000,0.250000,0,0);}
.m6a_c00161{transform:matrix(0.274708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274708,0.000000,0.000000,0.250000,0,0);}
.m7f_c00161{transform:matrix(0.275201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275201,0.000000,0.000000,0.250000,0,0);}
.mb_c00161{transform:matrix(0.275573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275573,0.000000,0.000000,0.250000,0,0);}
.m8e_c00161{transform:matrix(0.276410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276410,0.000000,0.000000,0.250000,0,0);}
.m52_c00161{transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);}
.m96_c00161{transform:matrix(0.277186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277186,0.000000,0.000000,0.250000,0,0);}
.ma4_c00161{transform:matrix(0.277586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277586,0.000000,0.000000,0.250000,0,0);}
.mbe_c00161{transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);}
.m63_c00161{transform:matrix(0.278338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278338,0.000000,0.000000,0.250000,0,0);}
.mb4_c00161{transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);}
.m3f_c00161{transform:matrix(0.279415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279415,0.000000,0.000000,0.250000,0,0);}
.m24_c00161{transform:matrix(0.280064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280064,0.000000,0.000000,0.250000,0,0);}
.m46_c00161{transform:matrix(0.280159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280159,0.000000,0.000000,0.250000,0,0);}
.m3a_c00161{transform:matrix(0.281043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281043,0.000000,0.000000,0.250000,0,0);}
.m39_c00161{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.m11_c00161{transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);}
.m93_c00161{transform:matrix(0.281901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281901,0.000000,0.000000,0.250000,0,0);}
.m50_c00161{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m84_c00161{transform:matrix(0.284009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284009,0.000000,0.000000,0.250000,0,0);}
.m49_c00161{transform:matrix(0.284153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284153,0.000000,0.000000,0.250000,0,0);}
.maf_c00161{transform:matrix(0.285021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285021,0.000000,0.000000,0.250000,0,0);}
.m61_c00161{transform:matrix(0.285511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285511,0.000000,0.000000,0.250000,0,0);}
.m53_c00161{transform:matrix(0.285890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285890,0.000000,0.000000,0.250000,0,0);}
.m19_c00161{transform:matrix(0.285944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285944,0.000000,0.000000,0.250000,0,0);}
.m34_c00161{transform:matrix(0.286205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286205,0.000000,0.000000,0.250000,0,0);}
.ma0_c00161{transform:matrix(0.286387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286387,0.000000,0.000000,0.250000,0,0);}
.mb0_c00161{transform:matrix(0.287090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287090,0.000000,0.000000,0.250000,0,0);}
.m5f_c00161{transform:matrix(0.287177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287177,0.000000,0.000000,0.250000,0,0);}
.mf_c00161{transform:matrix(0.287254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287254,0.000000,0.000000,0.250000,0,0);}
.m6c_c00161{transform:matrix(0.287771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287771,0.000000,0.000000,0.250000,0,0);}
.m21_c00161{transform:matrix(0.287919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287919,0.000000,0.000000,0.250000,0,0);}
.m6d_c00161{transform:matrix(0.289100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289100,0.000000,0.000000,0.250000,0,0);}
.m87_c00161{transform:matrix(0.289446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289446,0.000000,0.000000,0.250000,0,0);}
.mc_c00161{transform:matrix(0.289786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289786,0.000000,0.000000,0.250000,0,0);}
.m9b_c00161{transform:matrix(0.289849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289849,0.000000,0.000000,0.250000,0,0);}
.m7_c00161{transform:matrix(0.289935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289935,0.000000,0.000000,0.250000,0,0);}
.m5c_c00161{transform:matrix(0.290445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290445,0.000000,0.000000,0.250000,0,0);}
.m1e_c00161{transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);}
.mbb_c00161{transform:matrix(0.290691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290691,0.000000,0.000000,0.250000,0,0);}
.m17_c00161{transform:matrix(0.291498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291498,0.000000,0.000000,0.250000,0,0);}
.m67_c00161{transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);}
.m25_c00161{transform:matrix(0.292391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292391,0.000000,0.000000,0.250000,0,0);}
.m68_c00161{transform:matrix(0.292612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292612,0.000000,0.000000,0.250000,0,0);}
.m48_c00161{transform:matrix(0.292779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292779,0.000000,0.000000,0.250000,0,0);}
.m90_c00161{transform:matrix(0.292998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292998,0.000000,0.000000,0.250000,0,0);}
.m5_c00161{transform:matrix(0.293333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293333,0.000000,0.000000,0.250000,0,0);}
.m5e_c00161{transform:matrix(0.293654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293654,0.000000,0.000000,0.250000,0,0);}
.m65_c00161{transform:matrix(0.293719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293719,0.000000,0.000000,0.250000,0,0);}
.m31_c00161{transform:matrix(0.293905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293905,0.000000,0.000000,0.250000,0,0);}
.m43_c00161{transform:matrix(0.293913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293913,0.000000,0.000000,0.250000,0,0);}
.m37_c00161{transform:matrix(0.294787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294787,0.000000,0.000000,0.250000,0,0);}
.mb6_c00161{transform:matrix(0.294986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294986,0.000000,0.000000,0.250000,0,0);}
.m64_c00161{transform:matrix(0.295199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295199,0.000000,0.000000,0.250000,0,0);}
.m38_c00161{transform:matrix(0.295937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295937,0.000000,0.000000,0.250000,0,0);}
.maa_c00161{transform:matrix(0.296568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296568,0.000000,0.000000,0.250000,0,0);}
.m4f_c00161{transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);}
.m12_c00161{transform:matrix(0.296953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296953,0.000000,0.000000,0.250000,0,0);}
.m45_c00161{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m7d_c00161{transform:matrix(0.298023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298023,0.000000,0.000000,0.250000,0,0);}
.m69_c00161{transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);}
.ma9_c00161{transform:matrix(0.298235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298235,0.000000,0.000000,0.250000,0,0);}
.m7a_c00161{transform:matrix(0.299102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299102,0.000000,0.000000,0.250000,0,0);}
.m99_c00161{transform:matrix(0.299619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299619,0.000000,0.000000,0.250000,0,0);}
.m9c_c00161{transform:matrix(0.299763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299763,0.000000,0.000000,0.250000,0,0);}
.m86_c00161{transform:matrix(0.299883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299883,0.000000,0.000000,0.250000,0,0);}
.m2_c00161{transform:matrix(0.300068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300068,0.000000,0.000000,0.250000,0,0);}
.m36_c00161{transform:matrix(0.300548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300548,0.000000,0.000000,0.250000,0,0);}
.m6b_c00161{transform:matrix(0.300614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300614,0.000000,0.000000,0.250000,0,0);}
.m8d_c00161{transform:matrix(0.301051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301051,0.000000,0.000000,0.250000,0,0);}
.mbc_c00161{transform:matrix(0.301847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301847,0.000000,0.000000,0.250000,0,0);}
.mb5_c00161{transform:matrix(0.303220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303220,0.000000,0.000000,0.250000,0,0);}
.m83_c00161{transform:matrix(0.304173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304173,0.000000,0.000000,0.250000,0,0);}
.m89_c00161{transform:matrix(0.304523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304523,0.000000,0.000000,0.250000,0,0);}
.m82_c00161{transform:matrix(0.305059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305059,0.000000,0.000000,0.250000,0,0);}
.m8b_c00161{transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);}
.m26_c00161{transform:matrix(0.305578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305578,0.000000,0.000000,0.250000,0,0);}
.m76_c00161{transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);}
.m4e_c00161{transform:matrix(0.306902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306902,0.000000,0.000000,0.250000,0,0);}
.m51_c00161{transform:matrix(0.307032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307032,0.000000,0.000000,0.250000,0,0);}
.m5d_c00161{transform:matrix(0.307927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307927,0.000000,0.000000,0.250000,0,0);}
.m27_c00161{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m8f_c00161{transform:matrix(0.309096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309096,0.000000,0.000000,0.250000,0,0);}
.m91_c00161{transform:matrix(0.309349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309349,0.000000,0.000000,0.250000,0,0);}
.m71_c00161{transform:matrix(0.310026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310026,0.000000,0.000000,0.250000,0,0);}
.m2a_c00161{transform:matrix(0.310475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310475,0.000000,0.000000,0.250000,0,0);}
.m85_c00161{transform:matrix(0.310494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310494,0.000000,0.000000,0.250000,0,0);}
.m1d_c00161{transform:matrix(0.311120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311120,0.000000,0.000000,0.250000,0,0);}
.mba_c00161{transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);}
.m3b_c00161{transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);}
.m4c_c00161{transform:matrix(0.314220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314220,0.000000,0.000000,0.250000,0,0);}
.m62_c00161{transform:matrix(0.314787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314787,0.000000,0.000000,0.250000,0,0);}
.mb9_c00161{transform:matrix(0.315446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315446,0.000000,0.000000,0.250000,0,0);}
.m9d_c00161{transform:matrix(0.315881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315881,0.000000,0.000000,0.250000,0,0);}
.m4_c00161{transform:matrix(0.317369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317369,0.000000,0.000000,0.250000,0,0);}
.m35_c00161{transform:matrix(0.318102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318102,0.000000,0.000000,0.250000,0,0);}
.m6e_c00161{transform:matrix(0.318403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318403,0.000000,0.000000,0.250000,0,0);}
.mbd_c00161{transform:matrix(0.319119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319119,0.000000,0.000000,0.250000,0,0);}
.m59_c00161{transform:matrix(0.320729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320729,0.000000,0.000000,0.250000,0,0);}
.m94_c00161{transform:matrix(0.320819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320819,0.000000,0.000000,0.250000,0,0);}
.m14_c00161{transform:matrix(0.321234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321234,0.000000,0.000000,0.250000,0,0);}
.m70_c00161{transform:matrix(0.321449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321449,0.000000,0.000000,0.250000,0,0);}
.ma1_c00161{transform:matrix(0.322752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322752,0.000000,0.000000,0.250000,0,0);}
.m20_c00161{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.m4a_c00161{transform:matrix(0.323962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323962,0.000000,0.000000,0.250000,0,0);}
.m29_c00161{transform:matrix(0.323981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323981,0.000000,0.000000,0.250000,0,0);}
.mab_c00161{transform:matrix(0.325302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325302,0.000000,0.000000,0.250000,0,0);}
.m77_c00161{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m66_c00161{transform:matrix(0.327938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327938,0.000000,0.000000,0.250000,0,0);}
.m15_c00161{transform:matrix(0.329080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329080,0.000000,0.000000,0.250000,0,0);}
.mac_c00161{transform:matrix(0.332454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332454,0.000000,0.000000,0.250000,0,0);}
.m16_c00161{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m1b_c00161{transform:matrix(0.333358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333358,0.000000,0.000000,0.250000,0,0);}
.mb8_c00161{transform:matrix(0.333768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333768,0.000000,0.000000,0.250000,0,0);}
.m80_c00161{transform:matrix(0.334687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334687,0.000000,0.000000,0.250000,0,0);}
.md_c00161{transform:matrix(0.335394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335394,0.000000,0.000000,0.250000,0,0);}
.m7e_c00161{transform:matrix(0.336247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336247,0.000000,0.000000,0.250000,0,0);}
.m4b_c00161{transform:matrix(0.336820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336820,0.000000,0.000000,0.250000,0,0);}
.m95_c00161{transform:matrix(0.337362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337362,0.000000,0.000000,0.250000,0,0);}
.m3d_c00161{transform:matrix(0.337910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337910,0.000000,0.000000,0.250000,0,0);}
.m78_c00161{transform:matrix(0.338749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338749,0.000000,0.000000,0.250000,0,0);}
.ma6_c00161{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m79_c00161{transform:matrix(0.339556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339556,0.000000,0.000000,0.250000,0,0);}
.m13_c00161{transform:matrix(0.340207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340207,0.000000,0.000000,0.250000,0,0);}
.m75_c00161{transform:matrix(0.341027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341027,0.000000,0.000000,0.250000,0,0);}
.m32_c00161{transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);}
.m9a_c00161{transform:matrix(0.343354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343354,0.000000,0.000000,0.250000,0,0);}
.m40_c00161{transform:matrix(0.344761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344761,0.000000,0.000000,0.250000,0,0);}
.m2b_c00161{transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);}
.m98_c00161{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m2d_c00161{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m23_c00161{transform:matrix(0.359822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359822,0.000000,0.000000,0.250000,0,0);}
.m42_c00161{transform:matrix(0.360227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360227,0.000000,0.000000,0.250000,0,0);}
.m3e_c00161{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m7c_c00161{transform:matrix(0.361367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361367,0.000000,0.000000,0.250000,0,0);}
.ma3_c00161{transform:matrix(0.363123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363123,0.000000,0.000000,0.250000,0,0);}
.mae_c00161{transform:matrix(0.366424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366424,0.000000,0.000000,0.250000,0,0);}
.m92_c00161{transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);}
.m2e_c00161{transform:matrix(0.369771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369771,0.000000,0.000000,0.250000,0,0);}
.m28_c00161{transform:matrix(0.396487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396487,0.000000,0.000000,0.250000,0,0);}
.ma_c00161{transform:matrix(0.404704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404704,0.000000,0.000000,0.250000,0,0);}
.mbf_c00161{transform:matrix(0.415468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415468,0.000000,0.000000,0.250000,0,0);}
.m3c_c00161{transform:matrix(0.416907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416907,0.000000,0.000000,0.250000,0,0);}
.m1f_c00161{transform:matrix(0.440068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440068,0.000000,0.000000,0.250000,0,0);}
.v0_c00161{vertical-align:0.000000px;}
.ls7_c00161{letter-spacing:-3.825367px;}
.ls5_c00161{letter-spacing:-2.744280px;}
.ls8_c00161{letter-spacing:-1.685772px;}
.lsa_c00161{letter-spacing:-0.360677px;}
.ls3_c00161{letter-spacing:0.000000px;}
.ls14_c00161{letter-spacing:1.450548px;}
.ls12_c00161{letter-spacing:1.685772px;}
.ls9_c00161{letter-spacing:1.732817px;}
.ls18_c00161{letter-spacing:1.756339px;}
.lsc_c00161{letter-spacing:1.834747px;}
.ls16_c00161{letter-spacing:1.980000px;}
.lsd_c00161{letter-spacing:2.132698px;}
.ls13_c00161{letter-spacing:2.187583px;}
.ls6_c00161{letter-spacing:2.344399px;}
.lsf_c00161{letter-spacing:2.759962px;}
.ls1_c00161{letter-spacing:3.112798px;}
.ls11_c00161{letter-spacing:3.559723px;}
.ls10_c00161{letter-spacing:3.653813px;}
.ls4_c00161{letter-spacing:3.920400px;}
.ls2_c00161{letter-spacing:4.286700px;}
.ls0_c00161{letter-spacing:5.174928px;}
.ls17_c00161{letter-spacing:27.086400px;}
.lsb_c00161{letter-spacing:39.916800px;}
.lse_c00161{letter-spacing:51.321798px;}
.ls15_c00161{letter-spacing:57.024198px;}
.sc__c00161{text-shadow:none;}
.sc0_c00161{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00161{-webkit-text-stroke:0px transparent;}
.sc0_c00161{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00161{word-spacing:-19.602000px;}
.ws1_c00161{word-spacing:-3.449952px;}
.ws2_c00161{word-spacing:-0.156816px;}
.ws4_c00161{word-spacing:0.000000px;}
.ws3_c00161{word-spacing:0.627264px;}
._5_c00161{margin-left:-13.172544px;}
._b_c00161{width:5.096520px;}
._1_c00161{width:6.272640px;}
._6_c00161{width:7.448760px;}
._12_c00161{width:8.468064px;}
._2_c00161{width:9.487368px;}
._a_c00161{width:10.977120px;}
._4_c00161{width:13.172940px;}
._10_c00161{width:17.955432px;}
._3_c00161{width:20.856528px;}
._9_c00161{width:22.268268px;}
._7_c00161{width:24.228072px;}
._15_c00161{width:26.972352px;}
._d_c00161{width:28.775736px;}
._13_c00161{width:30.182407px;}
._8_c00161{width:32.696136px;}
._f_c00161{width:34.031448px;}
._0_c00161{width:35.362008px;}
._14_c00161{width:41.869872px;}
._e_c00161{width:44.457336px;}
._11_c00161{width:48.168648px;}
._c_c00161{width:52.298136px;}
.fc0_c00161{color:transparent;}
.fsc_c00161{font-size:27.086400px;}
.fse_c00161{font-size:33.660000px;}
.fsd_c00161{font-size:37.224000px;}
.fsa_c00161{font-size:39.600000px;}
.fs3_c00161{font-size:39.916800px;}
.fs5_c00161{font-size:51.321798px;}
.fs9_c00161{font-size:57.024198px;}
.fs7_c00161{font-size:71.280000px;}
.fs8_c00161{font-size:74.844000px;}
.fs1_c00161{font-size:78.408000px;}
.fs6_c00161{font-size:79.398000px;}
.fs4_c00161{font-size:85.140000px;}
.fs0_c00161{font-size:85.734000px;}
.fs2_c00161{font-size:109.296198px;}
.fsb_c00161{font-size:140.976198px;}
.y0_c00161{bottom:0.000000px;}
.y1_c00161{bottom:76.500000px;}
.y20_c00161{bottom:173.473785px;}
.y1f_c00161{bottom:205.198335px;}
.y1e_c00161{bottom:246.179385px;}
.y1c_c00161{bottom:252.243135px;}
.y1d_c00161{bottom:252.950985px;}
.y1b_c00161{bottom:278.616735px;}
.y1a_c00161{bottom:284.675535px;}
.y19_c00161{bottom:317.107935px;}
.y18_c00161{bottom:317.115063px;}
.y17_c00161{bottom:349.183935px;}
.y16_c00161{bottom:381.967785px;}
.y15_c00161{bottom:414.405135px;}
.y14_c00161{bottom:446.119785px;}
.y13_c00161{bottom:470.003535px;}
.y12_c00161{bottom:477.839385px;}
.y11_c00161{bottom:509.207535px;}
.y10_c00161{bottom:509.209515px;}
.yf_c00161{bottom:541.278585px;}
.y21_c00161{bottom:553.396185px;}
.ye_c00161{bottom:573.003135px;}
.yd_c00161{bottom:605.074185px;}
.yc_c00161{bottom:636.798735px;}
.yb_c00161{bottom:698.450985px;}
.ya_c00161{bottom:730.170585px;}
.y9_c00161{bottom:761.895135px;}
.y8_c00161{bottom:793.966185px;}
.y7_c00161{bottom:816.062985px;}
.y6_c00161{bottom:826.047135px;}
.y5_c00161{bottom:858.830985px;}
.y4_c00161{bottom:891.976185px;}
.y3_c00161{bottom:925.477785px;}
.y2_c00161{bottom:1075.165785px;}
.hd_c00161{height:18.039542px;}
.h5_c00161{height:26.584589px;}
.hf_c00161{height:33.035449px;}
.h7_c00161{height:34.180317px;}
.he_c00161{height:36.533320px;}
.ha_c00161{height:37.978116px;}
.hb_c00161{height:38.865234px;}
.h9_c00161{height:74.342813px;}
.h3_c00161{height:76.953164px;}
.h8_c00161{height:77.924795px;}
.h2_c00161{height:84.143232px;}
.h6_c00161{height:88.798359px;}
.h4_c00161{height:107.214874px;}
.hc_c00161{height:147.033769px;}
.h1_c00161{height:1110.000000px;}
.h0_c00161{height:1263.000000px;}
.w1_c00161{width:733.500000px;}
.w0_c00161{width:892.500000px;}
.x0_c00161{left:0.000000px;}
.x4_c00161{left:67.685835px;}
.x62_c00161{left:68.945511px;}
.x1_c00161{left:79.500000px;}
.x4a_c00161{left:89.594535px;}
.x51_c00161{left:98.979735px;}
.x28_c00161{left:101.009235px;}
.x5b_c00161{left:104.627685px;}
.x67_c00161{left:105.701835px;}
.x3d_c00161{left:111.364635px;}
.x14_c00161{left:123.051585px;}
.x20_c00161{left:134.609835px;}
.x29_c00161{left:144.153435px;}
.x57_c00161{left:145.499835px;}
.x5_c00161{left:155.563185px;}
.x60_c00161{left:156.627435px;}
.x15_c00161{left:166.987785px;}
.x6a_c00161{left:168.007485px;}
.x42_c00161{left:177.427335px;}
.x6_c00161{left:178.709385px;}
.x68_c00161{left:181.520985px;}
.x3e_c00161{left:187.386735px;}
.x16_c00161{left:189.069735px;}
.x4b_c00161{left:199.756785px;}
.x21_c00161{left:210.795285px;}
.x61_c00161{left:212.146635px;}
.x4e_c00161{left:213.572235px;}
.x7_c00161{left:221.982285px;}
.x63_c00161{left:222.987135px;}
.x17_c00161{left:232.887135px;}
.x2a_c00161{left:235.688835px;}
.x2e_c00161{left:242.722785px;}
.x22_c00161{left:243.940485px;}
.x64_c00161{left:244.979985px;}
.x2f_c00161{left:254.988885px;}
.x44_c00161{left:256.404585px;}
.x23_c00161{left:265.487835px;}
.x8_c00161{left:266.750085px;}
.x3f_c00161{left:269.551785px;}
.x69_c00161{left:271.947585px;}
.x18_c00161{left:277.773735px;}
.x5e_c00161{left:278.823135px;}
.x2b_c00161{left:288.767685px;}
.x9_c00161{left:299.415135px;}
.x6b_c00161{left:300.608085px;}
.x19_c00161{left:310.230885px;}
.x40_c00161{left:320.383335px;}
.x30_c00161{left:322.001985px;}
.x58_c00161{left:331.783185px;}
.x45_c00161{left:332.926635px;}
.x24_c00161{left:342.811785px;}
.x52_c00161{left:344.385885px;}
.x38_c00161{left:354.780885px;}
.x46_c00161{left:365.829285px;}
.x39_c00161{left:376.501485px;}
.x31_c00161{left:386.945985px;}
.x5c_c00161{left:388.143885px;}
.x6d_c00161{left:389.272485px;}
.xa_c00161{left:398.979435px;}
.x1a_c00161{left:400.197135px;}
.x5f_c00161{left:409.404135px;}
.x32_c00161{left:410.418885px;}
.x3a_c00161{left:419.492235px;}
.x25_c00161{left:420.947535px;}
.x4c_c00161{left:423.853185px;}
.x53_c00161{left:431.273235px;}
.xb_c00161{left:432.510735px;}
.x59_c00161{left:443.861085px;}
.x33_c00161{left:454.280835px;}
.x4f_c00161{left:464.363985px;}
.xc_c00161{left:465.596535px;}
.x47_c00161{left:474.377835px;}
.x1b_c00161{left:475.961835px;}
.x43_c00161{left:477.887385px;}
.x34_c00161{left:486.525135px;}
.x66_c00161{left:497.152785px;}
.x26_c00161{left:498.776385px;}
.xd_c00161{left:509.087235px;}
.x54_c00161{left:510.151485px;}
.x2c_c00161{left:519.670335px;}
.x5a_c00161{left:520.868235px;}
.x35_c00161{left:522.080985px;}
.x5d_c00161{left:531.015735px;}
.xe_c00161{left:532.094835px;}
.x36_c00161{left:541.648335px;}
.x1c_c00161{left:553.231335px;}
.x6c_c00161{left:554.354985px;}
.xf_c00161{left:556.112235px;}
.x3b_c00161{left:564.165885px;}
.x50_c00161{left:565.373685px;}
.x10_c00161{left:575.268735px;}
.x55_c00161{left:585.505335px;}
.x1d_c00161{left:586.718085px;}
.x65_c00161{left:588.836685px;}
.x2d_c00161{left:596.746785px;}
.x4d_c00161{left:607.542735px;}
.x11_c00161{left:608.780235px;}
.x1e_c00161{left:618.393135px;}
.x3c_c00161{left:630.233535px;}
.x27_c00161{left:640.970085px;}
.x2_c00161{left:641.979885px;}
.x48_c00161{left:651.157185px;}
.x37_c00161{left:653.048085px;}
.x12_c00161{left:663.299535px;}
.x49_c00161{left:664.348935px;}
.x41_c00161{left:674.506335px;}
.x3_c00161{left:675.852735px;}
.x1f_c00161{left:684.782535px;}
.x56_c00161{left:695.786385px;}
.x13_c00161{left:698.498985px;}
.x6e_c00161{left:728.718735px;}
@media print{
.v0_c00161{vertical-align:0.000000pt;}
.ls7_c00161{letter-spacing:-3.400326pt;}
.ls5_c00161{letter-spacing:-2.439360pt;}
.ls8_c00161{letter-spacing:-1.498464pt;}
.lsa_c00161{letter-spacing:-0.320602pt;}
.ls3_c00161{letter-spacing:0.000000pt;}
.ls14_c00161{letter-spacing:1.289376pt;}
.ls12_c00161{letter-spacing:1.498464pt;}
.ls9_c00161{letter-spacing:1.540282pt;}
.ls18_c00161{letter-spacing:1.561190pt;}
.lsc_c00161{letter-spacing:1.630886pt;}
.ls16_c00161{letter-spacing:1.760000pt;}
.lsd_c00161{letter-spacing:1.895731pt;}
.ls13_c00161{letter-spacing:1.944518pt;}
.ls6_c00161{letter-spacing:2.083910pt;}
.lsf_c00161{letter-spacing:2.453299pt;}
.ls1_c00161{letter-spacing:2.766931pt;}
.ls11_c00161{letter-spacing:3.164198pt;}
.ls10_c00161{letter-spacing:3.247834pt;}
.ls4_c00161{letter-spacing:3.484800pt;}
.ls2_c00161{letter-spacing:3.810400pt;}
.ls0_c00161{letter-spacing:4.599936pt;}
.ls17_c00161{letter-spacing:24.076800pt;}
.lsb_c00161{letter-spacing:35.481600pt;}
.lse_c00161{letter-spacing:45.619376pt;}
.ls15_c00161{letter-spacing:50.688176pt;}
.ws0_c00161{word-spacing:-17.424000pt;}
.ws1_c00161{word-spacing:-3.066624pt;}
.ws2_c00161{word-spacing:-0.139392pt;}
.ws4_c00161{word-spacing:0.000000pt;}
.ws3_c00161{word-spacing:0.557568pt;}
._5_c00161{margin-left:-11.708928pt;}
._b_c00161{width:4.530240pt;}
._1_c00161{width:5.575680pt;}
._6_c00161{width:6.621120pt;}
._12_c00161{width:7.527168pt;}
._2_c00161{width:8.433216pt;}
._a_c00161{width:9.757440pt;}
._4_c00161{width:11.709280pt;}
._10_c00161{width:15.960384pt;}
._3_c00161{width:18.539136pt;}
._9_c00161{width:19.794016pt;}
._7_c00161{width:21.536064pt;}
._15_c00161{width:23.975424pt;}
._d_c00161{width:25.578432pt;}
._13_c00161{width:26.828806pt;}
._8_c00161{width:29.063232pt;}
._f_c00161{width:30.250176pt;}
._0_c00161{width:31.432896pt;}
._14_c00161{width:37.217664pt;}
._e_c00161{width:39.517632pt;}
._11_c00161{width:42.816576pt;}
._c_c00161{width:46.487232pt;}
.fsc_c00161{font-size:24.076800pt;}
.fse_c00161{font-size:29.920000pt;}
.fsd_c00161{font-size:33.088000pt;}
.fsa_c00161{font-size:35.200000pt;}
.fs3_c00161{font-size:35.481600pt;}
.fs5_c00161{font-size:45.619376pt;}
.fs9_c00161{font-size:50.688176pt;}
.fs7_c00161{font-size:63.360000pt;}
.fs8_c00161{font-size:66.528000pt;}
.fs1_c00161{font-size:69.696000pt;}
.fs6_c00161{font-size:70.576000pt;}
.fs4_c00161{font-size:75.680000pt;}
.fs0_c00161{font-size:76.208000pt;}
.fs2_c00161{font-size:97.152176pt;}
.fsb_c00161{font-size:125.312176pt;}
.y0_c00161{bottom:0.000000pt;}
.y1_c00161{bottom:68.000000pt;}
.y20_c00161{bottom:154.198920pt;}
.y1f_c00161{bottom:182.398520pt;}
.y1e_c00161{bottom:218.826120pt;}
.y1c_c00161{bottom:224.216120pt;}
.y1d_c00161{bottom:224.845320pt;}
.y1b_c00161{bottom:247.659320pt;}
.y1a_c00161{bottom:253.044920pt;}
.y19_c00161{bottom:281.873720pt;}
.y18_c00161{bottom:281.880056pt;}
.y17_c00161{bottom:310.385720pt;}
.y16_c00161{bottom:339.526920pt;}
.y15_c00161{bottom:368.360120pt;}
.y14_c00161{bottom:396.550920pt;}
.y13_c00161{bottom:417.780920pt;}
.y12_c00161{bottom:424.746120pt;}
.y11_c00161{bottom:452.628920pt;}
.y10_c00161{bottom:452.630680pt;}
.yf_c00161{bottom:481.136520pt;}
.y21_c00161{bottom:491.907720pt;}
.ye_c00161{bottom:509.336120pt;}
.yd_c00161{bottom:537.843720pt;}
.yc_c00161{bottom:566.043320pt;}
.yb_c00161{bottom:620.845320pt;}
.ya_c00161{bottom:649.040520pt;}
.y9_c00161{bottom:677.240120pt;}
.y8_c00161{bottom:705.747720pt;}
.y7_c00161{bottom:725.389320pt;}
.y6_c00161{bottom:734.264120pt;}
.y5_c00161{bottom:763.405320pt;}
.y4_c00161{bottom:792.867720pt;}
.y3_c00161{bottom:822.646920pt;}
.y2_c00161{bottom:955.702920pt;}
.hd_c00161{height:16.035149pt;}
.h5_c00161{height:23.630746pt;}
.hf_c00161{height:29.364844pt;}
.h7_c00161{height:30.382504pt;}
.he_c00161{height:32.474063pt;}
.ha_c00161{height:33.758325pt;}
.hb_c00161{height:34.546875pt;}
.h9_c00161{height:66.082500pt;}
.h3_c00161{height:68.402813pt;}
.h8_c00161{height:69.266484pt;}
.h2_c00161{height:74.793984pt;}
.h6_c00161{height:78.931875pt;}
.h4_c00161{height:95.302110pt;}
.hc_c00161{height:130.696684pt;}
.h1_c00161{height:986.666667pt;}
.h0_c00161{height:1122.666667pt;}
.w1_c00161{width:652.000000pt;}
.w0_c00161{width:793.333333pt;}
.x0_c00161{left:0.000000pt;}
.x4_c00161{left:60.165187pt;}
.x62_c00161{left:61.284899pt;}
.x1_c00161{left:70.666667pt;}
.x4a_c00161{left:79.639587pt;}
.x51_c00161{left:87.981987pt;}
.x28_c00161{left:89.785987pt;}
.x5b_c00161{left:93.002387pt;}
.x67_c00161{left:93.957187pt;}
.x3d_c00161{left:98.990787pt;}
.x14_c00161{left:109.379187pt;}
.x20_c00161{left:119.653187pt;}
.x29_c00161{left:128.136387pt;}
.x57_c00161{left:129.333187pt;}
.x5_c00161{left:138.278387pt;}
.x60_c00161{left:139.224387pt;}
.x15_c00161{left:148.433587pt;}
.x6a_c00161{left:149.339987pt;}
.x42_c00161{left:157.713187pt;}
.x6_c00161{left:158.852787pt;}
.x68_c00161{left:161.351987pt;}
.x3e_c00161{left:166.565987pt;}
.x16_c00161{left:168.061987pt;}
.x4b_c00161{left:177.561587pt;}
.x21_c00161{left:187.373587pt;}
.x61_c00161{left:188.574787pt;}
.x4e_c00161{left:189.841987pt;}
.x7_c00161{left:197.317587pt;}
.x63_c00161{left:198.210787pt;}
.x17_c00161{left:207.010787pt;}
.x2a_c00161{left:209.501187pt;}
.x2e_c00161{left:215.753587pt;}
.x22_c00161{left:216.835987pt;}
.x64_c00161{left:217.759987pt;}
.x2f_c00161{left:226.656787pt;}
.x44_c00161{left:227.915187pt;}
.x23_c00161{left:235.989187pt;}
.x8_c00161{left:237.111187pt;}
.x3f_c00161{left:239.601587pt;}
.x69_c00161{left:241.731187pt;}
.x18_c00161{left:246.909987pt;}
.x5e_c00161{left:247.842787pt;}
.x2b_c00161{left:256.682387pt;}
.x9_c00161{left:266.146787pt;}
.x6b_c00161{left:267.207187pt;}
.x19_c00161{left:275.760787pt;}
.x40_c00161{left:284.785187pt;}
.x30_c00161{left:286.223987pt;}
.x58_c00161{left:294.918387pt;}
.x45_c00161{left:295.934787pt;}
.x24_c00161{left:304.721587pt;}
.x52_c00161{left:306.120787pt;}
.x38_c00161{left:315.360787pt;}
.x46_c00161{left:325.181587pt;}
.x39_c00161{left:334.667987pt;}
.x31_c00161{left:343.951987pt;}
.x5c_c00161{left:345.016787pt;}
.x6d_c00161{left:346.019987pt;}
.xa_c00161{left:354.648387pt;}
.x1a_c00161{left:355.730787pt;}
.x5f_c00161{left:363.914787pt;}
.x32_c00161{left:364.816787pt;}
.x3a_c00161{left:372.881987pt;}
.x25_c00161{left:374.175587pt;}
.x4c_c00161{left:376.758387pt;}
.x53_c00161{left:383.353987pt;}
.xb_c00161{left:384.453987pt;}
.x59_c00161{left:394.543187pt;}
.x33_c00161{left:403.805187pt;}
.x4f_c00161{left:412.767987pt;}
.xc_c00161{left:413.863587pt;}
.x47_c00161{left:421.669187pt;}
.x1b_c00161{left:423.077187pt;}
.x43_c00161{left:424.788787pt;}
.x34_c00161{left:432.466787pt;}
.x66_c00161{left:441.913587pt;}
.x26_c00161{left:443.356787pt;}
.xd_c00161{left:452.521987pt;}
.x54_c00161{left:453.467987pt;}
.x2c_c00161{left:461.929187pt;}
.x5a_c00161{left:462.993987pt;}
.x35_c00161{left:464.071987pt;}
.x5d_c00161{left:472.013987pt;}
.xe_c00161{left:472.973187pt;}
.x36_c00161{left:481.465187pt;}
.x1c_c00161{left:491.761187pt;}
.x6c_c00161{left:492.759987pt;}
.xf_c00161{left:494.321987pt;}
.x3b_c00161{left:501.480787pt;}
.x50_c00161{left:502.554387pt;}
.x10_c00161{left:511.349987pt;}
.x55_c00161{left:520.449187pt;}
.x1d_c00161{left:521.527187pt;}
.x65_c00161{left:523.410387pt;}
.x2d_c00161{left:530.441587pt;}
.x4d_c00161{left:540.037987pt;}
.x11_c00161{left:541.137987pt;}
.x1e_c00161{left:549.682787pt;}
.x3c_c00161{left:560.207587pt;}
.x27_c00161{left:569.751187pt;}
.x2_c00161{left:570.648787pt;}
.x48_c00161{left:578.806387pt;}
.x37_c00161{left:580.487187pt;}
.x12_c00161{left:589.599587pt;}
.x49_c00161{left:590.532387pt;}
.x41_c00161{left:599.561187pt;}
.x3_c00161{left:600.757987pt;}
.x1f_c00161{left:608.695587pt;}
.x56_c00161{left:618.476787pt;}
.x13_c00161{left:620.887987pt;}
.x6e_c00161{left:647.749987pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_aad1473a860a798617d1204f.woff2')format("woff");}.ff1_c00162{font-family:ff1_c00162;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00162;src:url('chunks/assets/font_fe20edaaf893fe10e2efda66.woff2')format("woff");}.ff2_c00162{font-family:ff2_c00162;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00162;src:url('chunks/assets/font_2be1b8ed9772f9f72871fc55.woff2')format("woff");}.ff3_c00162{font-family:ff3_c00162;line-height:0.666000;font-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_c00162{transform:matrix(0.201352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201352,0.000000,0.000000,0.250000,0,0);}
.m47_c00162{transform:matrix(0.206522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206522,0.000000,0.000000,0.250000,0,0);}
.m56_c00162{transform:matrix(0.215348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215348,0.000000,0.000000,0.250000,0,0);}
.m95_c00162{transform:matrix(0.218469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218469,0.000000,0.000000,0.250000,0,0);}
.m3b_c00162{transform:matrix(0.224391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224391,0.000000,0.000000,0.250000,0,0);}
.m83_c00162{transform:matrix(0.225146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225146,0.000000,0.000000,0.250000,0,0);}
.m19_c00162{transform:matrix(0.225345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225345,0.000000,0.000000,0.250000,0,0);}
.m2f_c00162{transform:matrix(0.231503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231503,0.000000,0.000000,0.250000,0,0);}
.m40_c00162{transform:matrix(0.237156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237156,0.000000,0.000000,0.250000,0,0);}
.ma2_c00162{transform:matrix(0.249661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249661,0.000000,0.000000,0.250000,0,0);}
.m0_c00162{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00162{transform:matrix(0.250578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250578,0.000000,0.000000,0.250000,0,0);}
.m8b_c00162{transform:matrix(0.251385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251385,0.000000,0.000000,0.250000,0,0);}
.m7c_c00162{transform:matrix(0.252188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252188,0.000000,0.000000,0.250000,0,0);}
.m12_c00162{transform:matrix(0.252638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252638,0.000000,0.000000,0.250000,0,0);}
.m1a_c00162{transform:matrix(0.252755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252755,0.000000,0.000000,0.250000,0,0);}
.m35_c00162{transform:matrix(0.252822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252822,0.000000,0.000000,0.250000,0,0);}
.m27_c00162{transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);}
.m87_c00162{transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);}
.m6c_c00162{transform:matrix(0.253817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253817,0.000000,0.000000,0.250000,0,0);}
.m6_c00162{transform:matrix(0.254614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254614,0.000000,0.000000,0.250000,0,0);}
.m82_c00162{transform:matrix(0.255186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255186,0.000000,0.000000,0.250000,0,0);}
.m9f_c00162{transform:matrix(0.255317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255317,0.000000,0.000000,0.250000,0,0);}
.m13_c00162{transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);}
.m2b_c00162{transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);}
.m67_c00162{transform:matrix(0.256771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256771,0.000000,0.000000,0.250000,0,0);}
.m24_c00162{transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);}
.m7a_c00162{transform:matrix(0.257586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257586,0.000000,0.000000,0.250000,0,0);}
.m62_c00162{transform:matrix(0.257697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257697,0.000000,0.000000,0.250000,0,0);}
.m9b_c00162{transform:matrix(0.258186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258186,0.000000,0.000000,0.250000,0,0);}
.ma_c00162{transform:matrix(0.258258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258258,0.000000,0.000000,0.250000,0,0);}
.m7e_c00162{transform:matrix(0.259174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259174,0.000000,0.000000,0.250000,0,0);}
.m5_c00162{transform:matrix(0.259376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259376,0.000000,0.000000,0.250000,0,0);}
.m11_c00162{transform:matrix(0.260257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260257,0.000000,0.000000,0.250000,0,0);}
.mf_c00162{transform:matrix(0.261958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261958,0.000000,0.000000,0.250000,0,0);}
.m4e_c00162{transform:matrix(0.262285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262285,0.000000,0.000000,0.250000,0,0);}
.m41_c00162{transform:matrix(0.262535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262535,0.000000,0.000000,0.250000,0,0);}
.m29_c00162{transform:matrix(0.262726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262726,0.000000,0.000000,0.250000,0,0);}
.m8f_c00162{transform:matrix(0.264137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264137,0.000000,0.000000,0.250000,0,0);}
.m92_c00162{transform:matrix(0.264852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264852,0.000000,0.000000,0.250000,0,0);}
.m8c_c00162{transform:matrix(0.265084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265084,0.000000,0.000000,0.250000,0,0);}
.m2_c00162{transform:matrix(0.265251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265251,0.000000,0.000000,0.250000,0,0);}
.ma8_c00162{transform:matrix(0.265701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265701,0.000000,0.000000,0.250000,0,0);}
.m5b_c00162{transform:matrix(0.266258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266258,0.000000,0.000000,0.250000,0,0);}
.m5c_c00162{transform:matrix(0.266286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266286,0.000000,0.000000,0.250000,0,0);}
.m17_c00162{transform:matrix(0.266351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266351,0.000000,0.000000,0.250000,0,0);}
.m96_c00162{transform:matrix(0.267524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267524,0.000000,0.000000,0.250000,0,0);}
.m59_c00162{transform:matrix(0.267652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267652,0.000000,0.000000,0.250000,0,0);}
.m10_c00162{transform:matrix(0.267754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267754,0.000000,0.000000,0.250000,0,0);}
.m48_c00162{transform:matrix(0.267951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267951,0.000000,0.000000,0.250000,0,0);}
.m72_c00162{transform:matrix(0.268539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268539,0.000000,0.000000,0.250000,0,0);}
.m61_c00162{transform:matrix(0.268922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268922,0.000000,0.000000,0.250000,0,0);}
.m46_c00162{transform:matrix(0.269217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269217,0.000000,0.000000,0.250000,0,0);}
.m68_c00162{transform:matrix(0.269972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269972,0.000000,0.000000,0.250000,0,0);}
.m8e_c00162{transform:matrix(0.270072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270072,0.000000,0.000000,0.250000,0,0);}
.ma6_c00162{transform:matrix(0.270527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270527,0.000000,0.000000,0.250000,0,0);}
.m38_c00162{transform:matrix(0.270761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270761,0.000000,0.000000,0.250000,0,0);}
.m20_c00162{transform:matrix(0.271254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271254,0.000000,0.000000,0.250000,0,0);}
.m89_c00162{transform:matrix(0.271798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271798,0.000000,0.000000,0.250000,0,0);}
.m80_c00162{transform:matrix(0.272535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272535,0.000000,0.000000,0.250000,0,0);}
.ma4_c00162{transform:matrix(0.273046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273046,0.000000,0.000000,0.250000,0,0);}
.m26_c00162{transform:matrix(0.273385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273385,0.000000,0.000000,0.250000,0,0);}
.m57_c00162{transform:matrix(0.273613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273613,0.000000,0.000000,0.250000,0,0);}
.m3e_c00162{transform:matrix(0.273658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273658,0.000000,0.000000,0.250000,0,0);}
.m50_c00162{transform:matrix(0.274386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274386,0.000000,0.000000,0.250000,0,0);}
.m9_c00162{transform:matrix(0.274757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274757,0.000000,0.000000,0.250000,0,0);}
.m63_c00162{transform:matrix(0.275050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275050,0.000000,0.000000,0.250000,0,0);}
.ma7_c00162{transform:matrix(0.275371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275371,0.000000,0.000000,0.250000,0,0);}
.m54_c00162{transform:matrix(0.275727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275727,0.000000,0.000000,0.250000,0,0);}
.m84_c00162{transform:matrix(0.276105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276105,0.000000,0.000000,0.250000,0,0);}
.m70_c00162{transform:matrix(0.276319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276319,0.000000,0.000000,0.250000,0,0);}
.m9a_c00162{transform:matrix(0.276323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276323,0.000000,0.000000,0.250000,0,0);}
.m9d_c00162{transform:matrix(0.276862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276862,0.000000,0.000000,0.250000,0,0);}
.m49_c00162{transform:matrix(0.277316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277316,0.000000,0.000000,0.250000,0,0);}
.m77_c00162{transform:matrix(0.277751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277751,0.000000,0.000000,0.250000,0,0);}
.m3c_c00162{transform:matrix(0.277886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277886,0.000000,0.000000,0.250000,0,0);}
.m3d_c00162{transform:matrix(0.277939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277939,0.000000,0.000000,0.250000,0,0);}
.m1f_c00162{transform:matrix(0.277968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277968,0.000000,0.000000,0.250000,0,0);}
.m9c_c00162{transform:matrix(0.278084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278084,0.000000,0.000000,0.250000,0,0);}
.m71_c00162{transform:matrix(0.278680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278680,0.000000,0.000000,0.250000,0,0);}
.m8a_c00162{transform:matrix(0.279367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279367,0.000000,0.000000,0.250000,0,0);}
.m34_c00162{transform:matrix(0.279602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279602,0.000000,0.000000,0.250000,0,0);}
.m37_c00162{transform:matrix(0.279906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279906,0.000000,0.000000,0.250000,0,0);}
.m43_c00162{transform:matrix(0.280196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280196,0.000000,0.000000,0.250000,0,0);}
.m79_c00162{transform:matrix(0.280463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280463,0.000000,0.000000,0.250000,0,0);}
.m7_c00162{transform:matrix(0.280468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280468,0.000000,0.000000,0.250000,0,0);}
.m5a_c00162{transform:matrix(0.280630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280630,0.000000,0.000000,0.250000,0,0);}
.m4c_c00162{transform:matrix(0.281278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281278,0.000000,0.000000,0.250000,0,0);}
.m7d_c00162{transform:matrix(0.281590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281590,0.000000,0.000000,0.250000,0,0);}
.m4b_c00162{transform:matrix(0.282098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282098,0.000000,0.000000,0.250000,0,0);}
.m4f_c00162{transform:matrix(0.282379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282379,0.000000,0.000000,0.250000,0,0);}
.m65_c00162{transform:matrix(0.282498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282498,0.000000,0.000000,0.250000,0,0);}
.m15_c00162{transform:matrix(0.282525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282525,0.000000,0.000000,0.250000,0,0);}
.m3a_c00162{transform:matrix(0.283080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283080,0.000000,0.000000,0.250000,0,0);}
.m6a_c00162{transform:matrix(0.283112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283112,0.000000,0.000000,0.250000,0,0);}
.m81_c00162{transform:matrix(0.283259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283259,0.000000,0.000000,0.250000,0,0);}
.m6f_c00162{transform:matrix(0.284876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284876,0.000000,0.000000,0.250000,0,0);}
.m1d_c00162{transform:matrix(0.284987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284987,0.000000,0.000000,0.250000,0,0);}
.m99_c00162{transform:matrix(0.285567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285567,0.000000,0.000000,0.250000,0,0);}
.ma5_c00162{transform:matrix(0.285818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285818,0.000000,0.000000,0.250000,0,0);}
.m36_c00162{transform:matrix(0.287887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287887,0.000000,0.000000,0.250000,0,0);}
.m21_c00162{transform:matrix(0.287944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287944,0.000000,0.000000,0.250000,0,0);}
.ma0_c00162{transform:matrix(0.288249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288249,0.000000,0.000000,0.250000,0,0);}
.m2c_c00162{transform:matrix(0.288327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288327,0.000000,0.000000,0.250000,0,0);}
.m90_c00162{transform:matrix(0.289994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289994,0.000000,0.000000,0.250000,0,0);}
.m1e_c00162{transform:matrix(0.290300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290300,0.000000,0.000000,0.250000,0,0);}
.mb_c00162{transform:matrix(0.290676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290676,0.000000,0.000000,0.250000,0,0);}
.m3f_c00162{transform:matrix(0.291051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291051,0.000000,0.000000,0.250000,0,0);}
.m51_c00162{transform:matrix(0.291455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291455,0.000000,0.000000,0.250000,0,0);}
.m42_c00162{transform:matrix(0.291665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291665,0.000000,0.000000,0.250000,0,0);}
.m91_c00162{transform:matrix(0.291892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291892,0.000000,0.000000,0.250000,0,0);}
.m66_c00162{transform:matrix(0.292437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292437,0.000000,0.000000,0.250000,0,0);}
.m1_c00162{transform:matrix(0.292577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292577,0.000000,0.000000,0.250000,0,0);}
.m64_c00162{transform:matrix(0.292958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292958,0.000000,0.000000,0.250000,0,0);}
.m23_c00162{transform:matrix(0.293233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293233,0.000000,0.000000,0.250000,0,0);}
.m44_c00162{transform:matrix(0.293261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293261,0.000000,0.000000,0.250000,0,0);}
.m18_c00162{transform:matrix(0.293281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293281,0.000000,0.000000,0.250000,0,0);}
.m4d_c00162{transform:matrix(0.293700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293700,0.000000,0.000000,0.250000,0,0);}
.m1c_c00162{transform:matrix(0.294048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294048,0.000000,0.000000,0.250000,0,0);}
.m3_c00162{transform:matrix(0.294159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294159,0.000000,0.000000,0.250000,0,0);}
.m4a_c00162{transform:matrix(0.295246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295246,0.000000,0.000000,0.250000,0,0);}
.m94_c00162{transform:matrix(0.296594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296594,0.000000,0.000000,0.250000,0,0);}
.m93_c00162{transform:matrix(0.298106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298106,0.000000,0.000000,0.250000,0,0);}
.m1b_c00162{transform:matrix(0.298380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298380,0.000000,0.000000,0.250000,0,0);}
.m7f_c00162{transform:matrix(0.301025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301025,0.000000,0.000000,0.250000,0,0);}
.m53_c00162{transform:matrix(0.301818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301818,0.000000,0.000000,0.250000,0,0);}
.m7b_c00162{transform:matrix(0.303140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303140,0.000000,0.000000,0.250000,0,0);}
.m30_c00162{transform:matrix(0.305314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305314,0.000000,0.000000,0.250000,0,0);}
.m45_c00162{transform:matrix(0.305325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305325,0.000000,0.000000,0.250000,0,0);}
.m6e_c00162{transform:matrix(0.306068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306068,0.000000,0.000000,0.250000,0,0);}
.m6d_c00162{transform:matrix(0.307293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307293,0.000000,0.000000,0.250000,0,0);}
.m28_c00162{transform:matrix(0.307388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307388,0.000000,0.000000,0.250000,0,0);}
.m74_c00162{transform:matrix(0.308127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308127,0.000000,0.000000,0.250000,0,0);}
.m85_c00162{transform:matrix(0.308135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308135,0.000000,0.000000,0.250000,0,0);}
.m98_c00162{transform:matrix(0.308255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308255,0.000000,0.000000,0.250000,0,0);}
.m9e_c00162{transform:matrix(0.308295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308295,0.000000,0.000000,0.250000,0,0);}
.ma3_c00162{transform:matrix(0.310880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310880,0.000000,0.000000,0.250000,0,0);}
.m60_c00162{transform:matrix(0.310971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310971,0.000000,0.000000,0.250000,0,0);}
.m22_c00162{transform:matrix(0.311905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311905,0.000000,0.000000,0.250000,0,0);}
.m58_c00162{transform:matrix(0.312161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312161,0.000000,0.000000,0.250000,0,0);}
.m2a_c00162{transform:matrix(0.313539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313539,0.000000,0.000000,0.250000,0,0);}
.ma1_c00162{transform:matrix(0.313715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313715,0.000000,0.000000,0.250000,0,0);}
.m8_c00162{transform:matrix(0.315929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315929,0.000000,0.000000,0.250000,0,0);}
.m5e_c00162{transform:matrix(0.316227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316227,0.000000,0.000000,0.250000,0,0);}
.m2e_c00162{transform:matrix(0.316914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316914,0.000000,0.000000,0.250000,0,0);}
.m97_c00162{transform:matrix(0.317257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317257,0.000000,0.000000,0.250000,0,0);}
.m86_c00162{transform:matrix(0.317684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317684,0.000000,0.000000,0.250000,0,0);}
.m25_c00162{transform:matrix(0.317866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317866,0.000000,0.000000,0.250000,0,0);}
.m76_c00162{transform:matrix(0.319627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319627,0.000000,0.000000,0.250000,0,0);}
.m4_c00162{transform:matrix(0.320282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320282,0.000000,0.000000,0.250000,0,0);}
.m88_c00162{transform:matrix(0.320583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320583,0.000000,0.000000,0.250000,0,0);}
.m52_c00162{transform:matrix(0.322926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322926,0.000000,0.000000,0.250000,0,0);}
.m32_c00162{transform:matrix(0.325929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325929,0.000000,0.000000,0.250000,0,0);}
.m5d_c00162{transform:matrix(0.326105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326105,0.000000,0.000000,0.250000,0,0);}
.m16_c00162{transform:matrix(0.328308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328308,0.000000,0.000000,0.250000,0,0);}
.m6b_c00162{transform:matrix(0.330088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330088,0.000000,0.000000,0.250000,0,0);}
.m14_c00162{transform:matrix(0.332792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332792,0.000000,0.000000,0.250000,0,0);}
.m69_c00162{transform:matrix(0.333044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333044,0.000000,0.000000,0.250000,0,0);}
.m55_c00162{transform:matrix(0.333867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333867,0.000000,0.000000,0.250000,0,0);}
.m39_c00162{transform:matrix(0.335736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335736,0.000000,0.000000,0.250000,0,0);}
.me_c00162{transform:matrix(0.337590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337590,0.000000,0.000000,0.250000,0,0);}
.m33_c00162{transform:matrix(0.340449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340449,0.000000,0.000000,0.250000,0,0);}
.mc_c00162{transform:matrix(0.341895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341895,0.000000,0.000000,0.250000,0,0);}
.m75_c00162{transform:matrix(0.346230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346230,0.000000,0.000000,0.250000,0,0);}
.m8d_c00162{transform:matrix(0.350724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350724,0.000000,0.000000,0.250000,0,0);}
.m31_c00162{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);}
.m73_c00162{transform:matrix(0.358891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358891,0.000000,0.000000,0.250000,0,0);}
.m2d_c00162{transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);}
.md_c00162{transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);}
.v1_c00162{vertical-align:-22.819500px;}
.v0_c00162{vertical-align:0.000000px;}
.ls8_c00162{letter-spacing:-2.855167px;}
.lsc_c00162{letter-spacing:-2.806221px;}
.ls9_c00162{letter-spacing:-2.798064px;}
.lsd_c00162{letter-spacing:-2.480940px;}
.ls6_c00162{letter-spacing:-2.088351px;}
.ls11_c00162{letter-spacing:-1.378638px;}
.ls14_c00162{letter-spacing:-0.497615px;}
.ls2_c00162{letter-spacing:0.000000px;}
.lsb_c00162{letter-spacing:0.946284px;}
.ls10_c00162{letter-spacing:1.525475px;}
.ls15_c00162{letter-spacing:1.558105px;}
.ls7_c00162{letter-spacing:1.664154px;}
.lsa_c00162{letter-spacing:2.376000px;}
.ls19_c00162{letter-spacing:2.701512px;}
.lsf_c00162{letter-spacing:3.091738px;}
.ls13_c00162{letter-spacing:3.267000px;}
.ls18_c00162{letter-spacing:3.326400px;}
.ls5_c00162{letter-spacing:3.638298px;}
.ls17_c00162{letter-spacing:3.662771px;}
.ls0_c00162{letter-spacing:3.695402px;}
.ls3_c00162{letter-spacing:3.762000px;}
.ls12_c00162{letter-spacing:3.781810px;}
.ls4_c00162{letter-spacing:4.078810px;}
.ls1_c00162{letter-spacing:16.434000px;}
.ls16_c00162{letter-spacing:52.747398px;}
.lse_c00162{letter-spacing:65.577798px;}
.sc__c00162{text-shadow:none;}
.sc0_c00162{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00162{-webkit-text-stroke:0px transparent;}
.sc0_c00162{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00162{word-spacing:-20.394050px;}
.ws2_c00162{word-spacing:0.000000px;}
.ws1_c00162{word-spacing:5.945940px;}
._1_c00162{margin-left:-12.644225px;}
._0_c00162{width:21.223853px;}
._4_c00162{width:22.270309px;}
._2_c00162{width:23.657299px;}
._6_c00162{width:25.663228px;}
._5_c00162{width:29.436919px;}
._3_c00162{width:34.333200px;}
.fc0_c00162{color:transparent;}
.fs4_c00162{font-size:22.176000px;}
.fs0_c00162{font-size:27.720000px;}
.fs13_c00162{font-size:32.472000px;}
.fs3_c00162{font-size:33.660000px;}
.fsf_c00162{font-size:38.808000px;}
.fs1_c00162{font-size:39.204000px;}
.fsd_c00162{font-size:44.748000px;}
.fs8_c00162{font-size:47.520000px;}
.fs7_c00162{font-size:49.500000px;}
.fs15_c00162{font-size:49.896198px;}
.fs11_c00162{font-size:52.747398px;}
.fs12_c00162{font-size:62.568000px;}
.fs10_c00162{font-size:65.340000px;}
.fsc_c00162{font-size:65.577798px;}
.fs14_c00162{font-size:66.528000px;}
.fsb_c00162{font-size:70.884000px;}
.fsa_c00162{font-size:71.280000px;}
.fs9_c00162{font-size:72.864000px;}
.fs2_c00162{font-size:75.240000px;}
.fse_c00162{font-size:75.636198px;}
.fs6_c00162{font-size:78.804000px;}
.fs5_c00162{font-size:81.576198px;}
.y2a_c00162{bottom:-1.513665px;}
.y0_c00162{bottom:0.000000px;}
.y1_c00162{bottom:76.500000px;}
.y29_c00162{bottom:95.427135px;}
.y28_c00162{bottom:169.914735px;}
.y27_c00162{bottom:200.916585px;}
.y26_c00162{bottom:231.928335px;}
.y25_c00162{bottom:263.647935px;}
.y24_c00162{bottom:295.367535px;}
.y23_c00162{bottom:348.466185px;}
.y22_c00162{bottom:353.460735px;}
.y21_c00162{bottom:358.450335px;}
.y1e_c00162{bottom:359.875935px;}
.y20_c00162{bottom:387.318735px;}
.y1f_c00162{bottom:391.590585px;}
.y1d_c00162{bottom:391.951935px;}
.y1c_c00162{bottom:422.958735px;}
.y1b_c00162{bottom:453.960585px;}
.y1a_c00162{bottom:485.680185px;}
.y19_c00162{bottom:517.404735px;}
.y18_c00162{bottom:539.501535px;}
.y17_c00162{bottom:548.411535px;}
.y16_c00162{bottom:572.290335px;}
.y15_c00162{bottom:579.774735px;}
.y14_c00162{bottom:611.137935px;}
.y13_c00162{bottom:634.660335px;}
.y10_c00162{bottom:642.496185px;}
.y12_c00162{bottom:642.852585px;}
.y11_c00162{bottom:674.577135px;}
.yf_c00162{bottom:736.947135px;}
.ye_c00162{bottom:768.310335px;}
.yd_c00162{bottom:799.317135px;}
.yc_c00162{bottom:830.680335px;}
.ya_c00162{bottom:862.394985px;}
.yb_c00162{bottom:868.097385px;}
.y9_c00162{bottom:893.758185px;}
.y8_c00162{bottom:925.839135px;}
.y7_c00162{bottom:967.890870px;}
.y6_c00162{bottom:978.224985px;}
.y5_c00162{bottom:1021.705785px;}
.y2_c00162{bottom:1049.148585px;}
.y4_c00162{bottom:1062.691785px;}
.y3_c00162{bottom:1071.958185px;}
.h6_c00162{height:23.128875px;}
.h2_c00162{height:28.911094px;}
.h5_c00162{height:33.035449px;}
.h14_c00162{height:33.867281px;}
.h12_c00162{height:35.129767px;}
.h3_c00162{height:38.476582px;}
.h10_c00162{height:40.475531px;}
.hd_c00162{height:43.674813px;}
.he_c00162{height:43.917715px;}
.ha_c00162{height:49.561875px;}
.h9_c00162{height:51.626953px;}
.h17_c00162{height:52.040175px;}
.h13_c00162{height:65.256469px;}
.h15_c00162{height:65.293594px;}
.h11_c00162{height:68.147578px;}
.hc_c00162{height:69.568770px;}
.hb_c00162{height:71.512031px;}
.h4_c00162{height:73.843945px;}
.hf_c00162{height:74.232792px;}
.h16_c00162{height:74.342813px;}
.h8_c00162{height:77.341816px;}
.h7_c00162{height:80.062577px;}
.h1_c00162{height:1110.000000px;}
.h0_c00162{height:1263.000000px;}
.w1_c00162{width:775.500000px;}
.w0_c00162{width:892.500000px;}
.x0_c00162{left:0.000000px;}
.x2_c00162{left:49.417485px;}
.x1_c00162{left:58.500000px;}
.x13_c00162{left:92.195385px;}
.x8_c00162{left:93.858585px;}
.x62_c00162{left:96.516735px;}
.x5c_c00162{left:115.559385px;}
.x57_c00162{left:126.281085px;}
.x36_c00162{left:127.617585px;}
.x14_c00162{left:137.987835px;}
.x40_c00162{left:148.823385px;}
.x53_c00162{left:149.971785px;}
.x46_c00162{left:158.881785px;}
.x37_c00162{left:160.084635px;}
.x3e_c00162{left:169.578735px;}
.x9_c00162{left:171.370635px;}
.x1e_c00162{left:180.582585px;}
.x30_c00162{left:182.260635px;}
.x4e_c00162{left:192.591285px;}
.x54_c00162{left:194.680185px;}
.x4a_c00162{left:202.951635px;}
.x28_c00162{left:205.035585px;}
.x31_c00162{left:215.029635px;}
.x41_c00162{left:216.103785px;}
.x15_c00162{left:226.033485px;}
.x42_c00162{left:237.443235px;}
.xa_c00162{left:238.487685px;}
.x38_c00162{left:248.501535px;}
.x55_c00162{left:249.600435px;}
.x16_c00162{left:259.559835px;}
.xb_c00162{left:270.999285px;}
.x3_c00162{left:279.602385px;}
.x1f_c00162{left:281.483385px;}
.x4b_c00162{left:293.096085px;}
.x29_c00162{left:295.011735px;}
.x6_c00162{left:297.496635px;}
.x64_c00162{left:303.218835px;}
.x32_c00162{left:305.139435px;}
.xc_c00162{left:314.653335px;}
.x66_c00162{left:326.949135px;}
.x20_c00162{left:328.008435px;}
.x5d_c00162{left:336.329385px;}
.x47_c00162{left:338.339085px;}
.x2a_c00162{left:348.669735px;}
.xd_c00162{left:349.996335px;}
.x39_c00162{left:361.168485px;}
.x67_c00162{left:370.375485px;}
.x4f_c00162{left:371.850585px;}
.x21_c00162{left:373.523685px;}
.x58_c00162{left:380.938785px;}
.xe_c00162{left:382.537635px;}
.x3a_c00162{left:392.848485px;}
.x22_c00162{left:395.189835px;}
.x48_c00162{left:403.391985px;}
.x3f_c00162{left:404.674035px;}
.x68_c00162{left:406.183785px;}
.x33_c00162{left:415.341285px;}
.x17_c00162{left:416.657985px;}
.x2b_c00162{left:427.651935px;}
.x56_c00162{left:437.403435px;}
.x23_c00162{left:438.457785px;}
.x18_c00162{left:448.991385px;}
.x3b_c00162{left:458.624085px;}
.x34_c00162{left:460.480335px;}
.x59_c00162{left:470.028885px;}
.xf_c00162{left:471.301035px;}
.x4c_c00162{left:481.993035px;}
.x35_c00162{left:493.353285px;}
.x10_c00162{left:502.505835px;}
.x50_c00162{left:504.000735px;}
.x24_c00162{left:514.776885px;}
.x6b_c00162{left:523.785885px;}
.x19_c00162{left:524.934285px;}
.x2c_c00162{left:526.874685px;}
.x3c_c00162{left:536.626185px;}
.x49_c00162{left:537.898335px;}
.x11_c00162{left:547.887435px;}
.x45_c00162{left:556.995435px;}
.x2d_c00162{left:559.292235px;}
.x25_c00162{left:568.796235px;}
.x63_c00162{left:569.979285px;}
.x5b_c00162{left:580.423785px;}
.x5e_c00162{left:581.987985px;}
.x7_c00162{left:588.672960px;}
.x1a_c00162{left:592.808685px;}
.x3d_c00162{left:602.629485px;}
.x12_c00162{left:614.177835px;}
.x51_c00162{left:623.993685px;}
.x1b_c00162{left:625.523235px;}
.x5a_c00162{left:635.042085px;}
.x26_c00162{left:636.289485px;}
.x4_c00162{left:646.585485px;}
.x43_c00162{left:658.411035px;}
.x69_c00162{left:659.777235px;}
.x1c_c00162{left:668.553585px;}
.x65_c00162{left:671.360235px;}
.x2e_c00162{left:680.502885px;}
.x44_c00162{left:690.234585px;}
.x6a_c00162{left:693.565935px;}
.x5_c00162{left:696.615135px;}
.x4d_c00162{left:698.065485px;}
.x61_c00162{left:699.489105px;}
.x1d_c00162{left:701.857185px;}
.x5f_c00162{left:703.302585px;}
.x2f_c00162{left:713.271885px;}
.x27_c00162{left:716.108235px;}
.x52_c00162{left:724.666785px;}
.x60_c00162{left:725.721135px;}
@media print{
.v1_c00162{vertical-align:-20.284000pt;}
.v0_c00162{vertical-align:0.000000pt;}
.ls8_c00162{letter-spacing:-2.537926pt;}
.lsc_c00162{letter-spacing:-2.494419pt;}
.ls9_c00162{letter-spacing:-2.487168pt;}
.lsd_c00162{letter-spacing:-2.205280pt;}
.ls6_c00162{letter-spacing:-1.856312pt;}
.ls11_c00162{letter-spacing:-1.225456pt;}
.ls14_c00162{letter-spacing:-0.442324pt;}
.ls2_c00162{letter-spacing:0.000000pt;}
.lsb_c00162{letter-spacing:0.841141pt;}
.ls10_c00162{letter-spacing:1.355978pt;}
.ls15_c00162{letter-spacing:1.384983pt;}
.ls7_c00162{letter-spacing:1.479248pt;}
.lsa_c00162{letter-spacing:2.112000pt;}
.ls19_c00162{letter-spacing:2.401344pt;}
.lsf_c00162{letter-spacing:2.748211pt;}
.ls13_c00162{letter-spacing:2.904000pt;}
.ls18_c00162{letter-spacing:2.956800pt;}
.ls5_c00162{letter-spacing:3.234043pt;}
.ls17_c00162{letter-spacing:3.255797pt;}
.ls0_c00162{letter-spacing:3.284802pt;}
.ls3_c00162{letter-spacing:3.344000pt;}
.ls12_c00162{letter-spacing:3.361609pt;}
.ls4_c00162{letter-spacing:3.625609pt;}
.ls1_c00162{letter-spacing:14.608000pt;}
.ls16_c00162{letter-spacing:46.886576pt;}
.lse_c00162{letter-spacing:58.291376pt;}
.ws0_c00162{word-spacing:-18.128044pt;}
.ws2_c00162{word-spacing:0.000000pt;}
.ws1_c00162{word-spacing:5.285280pt;}
._1_c00162{margin-left:-11.239311pt;}
._0_c00162{width:18.865647pt;}
._4_c00162{width:19.795830pt;}
._2_c00162{width:21.028710pt;}
._6_c00162{width:22.811759pt;}
._5_c00162{width:26.166150pt;}
._3_c00162{width:30.518400pt;}
.fs4_c00162{font-size:19.712000pt;}
.fs0_c00162{font-size:24.640000pt;}
.fs13_c00162{font-size:28.864000pt;}
.fs3_c00162{font-size:29.920000pt;}
.fsf_c00162{font-size:34.496000pt;}
.fs1_c00162{font-size:34.848000pt;}
.fsd_c00162{font-size:39.776000pt;}
.fs8_c00162{font-size:42.240000pt;}
.fs7_c00162{font-size:44.000000pt;}
.fs15_c00162{font-size:44.352176pt;}
.fs11_c00162{font-size:46.886576pt;}
.fs12_c00162{font-size:55.616000pt;}
.fs10_c00162{font-size:58.080000pt;}
.fsc_c00162{font-size:58.291376pt;}
.fs14_c00162{font-size:59.136000pt;}
.fsb_c00162{font-size:63.008000pt;}
.fsa_c00162{font-size:63.360000pt;}
.fs9_c00162{font-size:64.768000pt;}
.fs2_c00162{font-size:66.880000pt;}
.fse_c00162{font-size:67.232176pt;}
.fs6_c00162{font-size:70.048000pt;}
.fs5_c00162{font-size:72.512176pt;}
.y2a_c00162{bottom:-1.345480pt;}
.y0_c00162{bottom:0.000000pt;}
.y1_c00162{bottom:68.000000pt;}
.y29_c00162{bottom:84.824120pt;}
.y28_c00162{bottom:151.035320pt;}
.y27_c00162{bottom:178.592520pt;}
.y26_c00162{bottom:206.158520pt;}
.y25_c00162{bottom:234.353720pt;}
.y24_c00162{bottom:262.548920pt;}
.y23_c00162{bottom:309.747720pt;}
.y22_c00162{bottom:314.187320pt;}
.y21_c00162{bottom:318.622520pt;}
.y1e_c00162{bottom:319.889720pt;}
.y20_c00162{bottom:344.283320pt;}
.y1f_c00162{bottom:348.080520pt;}
.y1d_c00162{bottom:348.401720pt;}
.y1c_c00162{bottom:375.963320pt;}
.y1b_c00162{bottom:403.520520pt;}
.y1a_c00162{bottom:431.715720pt;}
.y19_c00162{bottom:459.915320pt;}
.y18_c00162{bottom:479.556920pt;}
.y17_c00162{bottom:487.476920pt;}
.y16_c00162{bottom:508.702520pt;}
.y15_c00162{bottom:515.355320pt;}
.y14_c00162{bottom:543.233720pt;}
.y13_c00162{bottom:564.142520pt;}
.y10_c00162{bottom:571.107720pt;}
.y12_c00162{bottom:571.424520pt;}
.y11_c00162{bottom:599.624120pt;}
.yf_c00162{bottom:655.064120pt;}
.ye_c00162{bottom:682.942520pt;}
.yd_c00162{bottom:710.504120pt;}
.yc_c00162{bottom:738.382520pt;}
.ya_c00162{bottom:766.573320pt;}
.yb_c00162{bottom:771.642120pt;}
.y9_c00162{bottom:794.451720pt;}
.y8_c00162{bottom:822.968120pt;}
.y7_c00162{bottom:860.347440pt;}
.y6_c00162{bottom:869.533320pt;}
.y5_c00162{bottom:908.182920pt;}
.y2_c00162{bottom:932.576520pt;}
.y4_c00162{bottom:944.614920pt;}
.y3_c00162{bottom:952.851720pt;}
.h6_c00162{height:20.559000pt;}
.h2_c00162{height:25.698750pt;}
.h5_c00162{height:29.364844pt;}
.h14_c00162{height:30.104250pt;}
.h12_c00162{height:31.226460pt;}
.h3_c00162{height:34.201406pt;}
.h10_c00162{height:35.978250pt;}
.hd_c00162{height:38.822056pt;}
.he_c00162{height:39.037969pt;}
.ha_c00162{height:44.055000pt;}
.h9_c00162{height:45.890625pt;}
.h17_c00162{height:46.257934pt;}
.h13_c00162{height:58.005750pt;}
.h15_c00162{height:58.038750pt;}
.h11_c00162{height:60.575625pt;}
.hc_c00162{height:61.838906pt;}
.hb_c00162{height:63.566250pt;}
.h4_c00162{height:65.639063pt;}
.hf_c00162{height:65.984704pt;}
.h16_c00162{height:66.082500pt;}
.h8_c00162{height:68.748281pt;}
.h7_c00162{height:71.166735pt;}
.h1_c00162{height:986.666667pt;}
.h0_c00162{height:1122.666667pt;}
.w1_c00162{width:689.333333pt;}
.w0_c00162{width:793.333333pt;}
.x0_c00162{left:0.000000pt;}
.x2_c00162{left:43.926653pt;}
.x1_c00162{left:52.000000pt;}
.x13_c00162{left:81.951453pt;}
.x8_c00162{left:83.429853pt;}
.x62_c00162{left:85.792653pt;}
.x5c_c00162{left:102.719453pt;}
.x57_c00162{left:112.249853pt;}
.x36_c00162{left:113.437853pt;}
.x14_c00162{left:122.655853pt;}
.x40_c00162{left:132.287453pt;}
.x53_c00162{left:133.308253pt;}
.x46_c00162{left:141.228253pt;}
.x37_c00162{left:142.297453pt;}
.x3e_c00162{left:150.736653pt;}
.x9_c00162{left:152.329453pt;}
.x1e_c00162{left:160.517853pt;}
.x30_c00162{left:162.009453pt;}
.x4e_c00162{left:171.192253pt;}
.x54_c00162{left:173.049053pt;}
.x4a_c00162{left:180.401453pt;}
.x28_c00162{left:182.253853pt;}
.x31_c00162{left:191.137453pt;}
.x41_c00162{left:192.092253pt;}
.x15_c00162{left:200.918653pt;}
.x42_c00162{left:211.060653pt;}
.xa_c00162{left:211.989053pt;}
.x38_c00162{left:220.890253pt;}
.x55_c00162{left:221.867053pt;}
.x16_c00162{left:230.719853pt;}
.xb_c00162{left:240.888253pt;}
.x3_c00162{left:248.535453pt;}
.x1f_c00162{left:250.207453pt;}
.x4b_c00162{left:260.529853pt;}
.x29_c00162{left:262.232653pt;}
.x6_c00162{left:264.441453pt;}
.x64_c00162{left:269.527853pt;}
.x32_c00162{left:271.235053pt;}
.xc_c00162{left:279.691853pt;}
.x66_c00162{left:290.621453pt;}
.x20_c00162{left:291.563053pt;}
.x5d_c00162{left:298.959453pt;}
.x47_c00162{left:300.745853pt;}
.x2a_c00162{left:309.928653pt;}
.xd_c00162{left:311.107853pt;}
.x39_c00162{left:321.038653pt;}
.x67_c00162{left:329.222653pt;}
.x4f_c00162{left:330.533853pt;}
.x21_c00162{left:332.021053pt;}
.x58_c00162{left:338.612253pt;}
.xe_c00162{left:340.033453pt;}
.x3a_c00162{left:349.198653pt;}
.x22_c00162{left:351.279853pt;}
.x48_c00162{left:358.570653pt;}
.x3f_c00162{left:359.710253pt;}
.x68_c00162{left:361.052253pt;}
.x33_c00162{left:369.192253pt;}
.x17_c00162{left:370.362653pt;}
.x2b_c00162{left:380.135053pt;}
.x56_c00162{left:388.803053pt;}
.x23_c00162{left:389.740253pt;}
.x18_c00162{left:399.103453pt;}
.x3b_c00162{left:407.665853pt;}
.x34_c00162{left:409.315853pt;}
.x59_c00162{left:417.803453pt;}
.xf_c00162{left:418.934253pt;}
.x4c_c00162{left:428.438253pt;}
.x35_c00162{left:438.536253pt;}
.x10_c00162{left:446.671853pt;}
.x50_c00162{left:448.000653pt;}
.x24_c00162{left:457.579453pt;}
.x6b_c00162{left:465.587453pt;}
.x19_c00162{left:466.608253pt;}
.x2c_c00162{left:468.333053pt;}
.x3c_c00162{left:477.001053pt;}
.x49_c00162{left:478.131853pt;}
.x11_c00162{left:487.011053pt;}
.x45_c00162{left:495.107053pt;}
.x2d_c00162{left:497.148653pt;}
.x25_c00162{left:505.596653pt;}
.x63_c00162{left:506.648253pt;}
.x5b_c00162{left:515.932253pt;}
.x5e_c00162{left:517.322653pt;}
.x7_c00162{left:523.264853pt;}
.x1a_c00162{left:526.941053pt;}
.x3d_c00162{left:535.670653pt;}
.x12_c00162{left:545.935853pt;}
.x51_c00162{left:554.661053pt;}
.x1b_c00162{left:556.020653pt;}
.x5a_c00162{left:564.481853pt;}
.x26_c00162{left:565.590653pt;}
.x4_c00162{left:574.742653pt;}
.x43_c00162{left:585.254253pt;}
.x69_c00162{left:586.468653pt;}
.x1c_c00162{left:594.269853pt;}
.x65_c00162{left:596.764653pt;}
.x2e_c00162{left:604.891453pt;}
.x44_c00162{left:613.541853pt;}
.x6a_c00162{left:616.503053pt;}
.x5_c00162{left:619.213453pt;}
.x4d_c00162{left:620.502653pt;}
.x61_c00162{left:621.768093pt;}
.x1d_c00162{left:623.873053pt;}
.x5f_c00162{left:625.157853pt;}
.x2f_c00162{left:634.019453pt;}
.x27_c00162{left:636.540653pt;}
.x52_c00162{left:644.148253pt;}
.x60_c00162{left:645.085453pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_147b69d3586ad7ef6d72ead1.woff2')format("woff");}.ff1_c00163{font-family:ff1_c00163;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00163;src:url('chunks/assets/font_faa5178bc2290062e9ce85c4.woff2')format("woff");}.ff2_c00163{font-family:ff2_c00163;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00163;src:url('chunks/assets/font_793aa9e9e9a1c45343df6199.woff2')format("woff");}.ff3_c00163{font-family:ff3_c00163;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00163;src:url('chunks/assets/font_d0d0638e5ccb6c8135660209.woff2')format("woff");}.ff4_c00163{font-family:ff4_c00163;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00163;src:url('chunks/assets/font_7db388d84423b0247f74070e.woff2')format("woff");}.ff5_c00163{font-family:ff5_c00163;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00163;src:url('chunks/assets/font_d087eb78555111292c3e186e.woff2')format("woff");}.ff6_c00163{font-family:ff6_c00163;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m60_c00163{transform:matrix(0.102371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102371,0.000000,0.000000,0.250000,0,0);}
.m64_c00163{transform:matrix(0.114623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114623,0.000000,0.000000,0.250000,0,0);}
.m63_c00163{transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);}
.m67_c00163{transform:matrix(0.174876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174876,0.000000,0.000000,0.250000,0,0);}
.ma2_c00163{transform:matrix(0.182837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182837,0.000000,0.000000,0.250000,0,0);}
.m1a_c00163{transform:matrix(0.185204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185204,0.000000,0.000000,0.250000,0,0);}
.m41_c00163{transform:matrix(0.210830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210830,0.000000,0.000000,0.250000,0,0);}
.md0_c00163{transform:matrix(0.213031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213031,0.000000,0.000000,0.250000,0,0);}
.m79_c00163{transform:matrix(0.216704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216704,0.000000,0.000000,0.250000,0,0);}
.m25_c00163{transform:matrix(0.220377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220377,0.000000,0.000000,0.250000,0,0);}
.m6f_c00163{transform:matrix(0.225973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225973,0.000000,0.000000,0.250000,0,0);}
.m2d_c00163{transform:matrix(0.228445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228445,0.000000,0.000000,0.250000,0,0);}
.m3c_c00163{transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);}
.m8c_c00163{transform:matrix(0.236997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236997,0.000000,0.000000,0.250000,0,0);}
.m4b_c00163{transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);}
.mac_c00163{transform:matrix(0.242726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242726,0.000000,0.000000,0.250000,0,0);}
.mdf_c00163{transform:matrix(0.249980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249980,0.000000,0.000000,0.250000,0,0);}
.m0_c00163{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00163{transform:matrix(0.251330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251330,0.000000,0.000000,0.250000,0,0);}
.m6c_c00163{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.m24_c00163{transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);}
.mde_c00163{transform:matrix(0.253030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253030,0.000000,0.000000,0.250000,0,0);}
.me2_c00163{transform:matrix(0.254847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254847,0.000000,0.000000,0.250000,0,0);}
.m7e_c00163{transform:matrix(0.255400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255400,0.000000,0.000000,0.250000,0,0);}
.md1_c00163{transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);}
.m83_c00163{transform:matrix(0.257043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257043,0.000000,0.000000,0.250000,0,0);}
.m85_c00163{transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);}
.m39_c00163{transform:matrix(0.258139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258139,0.000000,0.000000,0.250000,0,0);}
.mb2_c00163{transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);}
.ma1_c00163{transform:matrix(0.258918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258918,0.000000,0.000000,0.250000,0,0);}
.m6d_c00163{transform:matrix(0.259580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259580,0.000000,0.000000,0.250000,0,0);}
.m42_c00163{transform:matrix(0.259761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259761,0.000000,0.000000,0.250000,0,0);}
.mcb_c00163{transform:matrix(0.260756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260756,0.000000,0.000000,0.250000,0,0);}
.m9b_c00163{transform:matrix(0.260785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260785,0.000000,0.000000,0.250000,0,0);}
.m6_c00163{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m7c_c00163{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.mb7_c00163{transform:matrix(0.262380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262380,0.000000,0.000000,0.250000,0,0);}
.m7a_c00163{transform:matrix(0.262708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262708,0.000000,0.000000,0.250000,0,0);}
.m9f_c00163{transform:matrix(0.262890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262890,0.000000,0.000000,0.250000,0,0);}
.maa_c00163{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.mb6_c00163{transform:matrix(0.263711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263711,0.000000,0.000000,0.250000,0,0);}
.mf_c00163{transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);}
.md4_c00163{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.ma0_c00163{transform:matrix(0.264874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264874,0.000000,0.000000,0.250000,0,0);}
.m3a_c00163{transform:matrix(0.264974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264974,0.000000,0.000000,0.250000,0,0);}
.m89_c00163{transform:matrix(0.265476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265476,0.000000,0.000000,0.250000,0,0);}
.m28_c00163{transform:matrix(0.265559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265559,0.000000,0.000000,0.250000,0,0);}
.m4e_c00163{transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);}
.m32_c00163{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.mb4_c00163{transform:matrix(0.266295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266295,0.000000,0.000000,0.250000,0,0);}
.mc7_c00163{transform:matrix(0.266386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266386,0.000000,0.000000,0.250000,0,0);}
.m52_c00163{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.m6b_c00163{transform:matrix(0.267573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267573,0.000000,0.000000,0.250000,0,0);}
.m19_c00163{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m31_c00163{transform:matrix(0.268484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268484,0.000000,0.000000,0.250000,0,0);}
.mbc_c00163{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.m53_c00163{transform:matrix(0.268848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268848,0.000000,0.000000,0.250000,0,0);}
.mdd_c00163{transform:matrix(0.270166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270166,0.000000,0.000000,0.250000,0,0);}
.m58_c00163{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.mdc_c00163{transform:matrix(0.272777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272777,0.000000,0.000000,0.250000,0,0);}
.m27_c00163{transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);}
.m1b_c00163{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00163{transform:matrix(0.273396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273396,0.000000,0.000000,0.250000,0,0);}
.m69_c00163{transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);}
.m54_c00163{transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);}
.m62_c00163{transform:matrix(0.274884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274884,0.000000,0.000000,0.250000,0,0);}
.m50_c00163{transform:matrix(0.274901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274901,0.000000,0.000000,0.250000,0,0);}
.m2c_c00163{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.mc6_c00163{transform:matrix(0.275809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275809,0.000000,0.000000,0.250000,0,0);}
.m6a_c00163{transform:matrix(0.276320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276320,0.000000,0.000000,0.250000,0,0);}
.m22_c00163{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m65_c00163{transform:matrix(0.277352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277352,0.000000,0.000000,0.250000,0,0);}
.m51_c00163{transform:matrix(0.278414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278414,0.000000,0.000000,0.250000,0,0);}
.md_c00163{transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);}
.m20_c00163{transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);}
.m8a_c00163{transform:matrix(0.279568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279568,0.000000,0.000000,0.250000,0,0);}
.md6_c00163{transform:matrix(0.279813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279813,0.000000,0.000000,0.250000,0,0);}
.m3_c00163{transform:matrix(0.280064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280064,0.000000,0.000000,0.250000,0,0);}
.m36_c00163{transform:matrix(0.280094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280094,0.000000,0.000000,0.250000,0,0);}
.md7_c00163{transform:matrix(0.280329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280329,0.000000,0.000000,0.250000,0,0);}
.m1_c00163{transform:matrix(0.280756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280756,0.000000,0.000000,0.250000,0,0);}
.m4c_c00163{transform:matrix(0.280858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280858,0.000000,0.000000,0.250000,0,0);}
.mb9_c00163{transform:matrix(0.281043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281043,0.000000,0.000000,0.250000,0,0);}
.m2a_c00163{transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);}
.mc1_c00163{transform:matrix(0.282371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282371,0.000000,0.000000,0.250000,0,0);}
.m4d_c00163{transform:matrix(0.282875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282875,0.000000,0.000000,0.250000,0,0);}
.m59_c00163{transform:matrix(0.283524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283524,0.000000,0.000000,0.250000,0,0);}
.ma4_c00163{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m9d_c00163{transform:matrix(0.283890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283890,0.000000,0.000000,0.250000,0,0);}
.m17_c00163{transform:matrix(0.284924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284924,0.000000,0.000000,0.250000,0,0);}
.m8_c00163{transform:matrix(0.285538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285538,0.000000,0.000000,0.250000,0,0);}
.m26_c00163{transform:matrix(0.286238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286238,0.000000,0.000000,0.250000,0,0);}
.m16_c00163{transform:matrix(0.286402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286402,0.000000,0.000000,0.250000,0,0);}
.m68_c00163{transform:matrix(0.286507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286507,0.000000,0.000000,0.250000,0,0);}
.m56_c00163{transform:matrix(0.286679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286679,0.000000,0.000000,0.250000,0,0);}
.m82_c00163{transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);}
.m76_c00163{transform:matrix(0.287365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287365,0.000000,0.000000,0.250000,0,0);}
.m61_c00163{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m97_c00163{transform:matrix(0.287744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287744,0.000000,0.000000,0.250000,0,0);}
.mc9_c00163{transform:matrix(0.287818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287818,0.000000,0.000000,0.250000,0,0);}
.mb8_c00163{transform:matrix(0.287967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287967,0.000000,0.000000,0.250000,0,0);}
.md9_c00163{transform:matrix(0.288227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288227,0.000000,0.000000,0.250000,0,0);}
.m5e_c00163{transform:matrix(0.288372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288372,0.000000,0.000000,0.250000,0,0);}
.m7b_c00163{transform:matrix(0.288968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288968,0.000000,0.000000,0.250000,0,0);}
.m84_c00163{transform:matrix(0.289324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289324,0.000000,0.000000,0.250000,0,0);}
.m8f_c00163{transform:matrix(0.289488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289488,0.000000,0.000000,0.250000,0,0);}
.m2f_c00163{transform:matrix(0.289576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289576,0.000000,0.000000,0.250000,0,0);}
.md5_c00163{transform:matrix(0.289896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289896,0.000000,0.000000,0.250000,0,0);}
.m5c_c00163{transform:matrix(0.290423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290423,0.000000,0.000000,0.250000,0,0);}
.mce_c00163{transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);}
.m99_c00163{transform:matrix(0.291008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291008,0.000000,0.000000,0.250000,0,0);}
.m47_c00163{transform:matrix(0.291580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291580,0.000000,0.000000,0.250000,0,0);}
.m81_c00163{transform:matrix(0.291647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291647,0.000000,0.000000,0.250000,0,0);}
.m70_c00163{transform:matrix(0.291691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291691,0.000000,0.000000,0.250000,0,0);}
.mc_c00163{transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);}
.m1f_c00163{transform:matrix(0.292385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292385,0.000000,0.000000,0.250000,0,0);}
.mca_c00163{transform:matrix(0.292662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292662,0.000000,0.000000,0.250000,0,0);}
.m49_c00163{transform:matrix(0.293137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293137,0.000000,0.000000,0.250000,0,0);}
.m8d_c00163{transform:matrix(0.293814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293814,0.000000,0.000000,0.250000,0,0);}
.m4_c00163{transform:matrix(0.293905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293905,0.000000,0.000000,0.250000,0,0);}
.m71_c00163{transform:matrix(0.294443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294443,0.000000,0.000000,0.250000,0,0);}
.ma9_c00163{transform:matrix(0.294467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294467,0.000000,0.000000,0.250000,0,0);}
.m9c_c00163{transform:matrix(0.294934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294934,0.000000,0.000000,0.250000,0,0);}
.mcf_c00163{transform:matrix(0.294997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294997,0.000000,0.000000,0.250000,0,0);}
.m1e_c00163{transform:matrix(0.295090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295090,0.000000,0.000000,0.250000,0,0);}
.m2e_c00163{transform:matrix(0.295851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295851,0.000000,0.000000,0.250000,0,0);}
.m7_c00163{transform:matrix(0.296963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296963,0.000000,0.000000,0.250000,0,0);}
.m86_c00163{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.mb0_c00163{transform:matrix(0.297853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297853,0.000000,0.000000,0.250000,0,0);}
.m96_c00163{transform:matrix(0.297871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297871,0.000000,0.000000,0.250000,0,0);}
.m18_c00163{transform:matrix(0.297983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297983,0.000000,0.000000,0.250000,0,0);}
.m13_c00163{transform:matrix(0.298032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298032,0.000000,0.000000,0.250000,0,0);}
.mc2_c00163{transform:matrix(0.298672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298672,0.000000,0.000000,0.250000,0,0);}
.m80_c00163{transform:matrix(0.299129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299129,0.000000,0.000000,0.250000,0,0);}
.m66_c00163{transform:matrix(0.299588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299588,0.000000,0.000000,0.250000,0,0);}
.ma6_c00163{transform:matrix(0.299763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299763,0.000000,0.000000,0.250000,0,0);}
.m45_c00163{transform:matrix(0.300360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300360,0.000000,0.000000,0.250000,0,0);}
.m23_c00163{transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);}
.m43_c00163{transform:matrix(0.300674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300674,0.000000,0.000000,0.250000,0,0);}
.m78_c00163{transform:matrix(0.301166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301166,0.000000,0.000000,0.250000,0,0);}
.ma_c00163{transform:matrix(0.301979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301979,0.000000,0.000000,0.250000,0,0);}
.m4a_c00163{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m34_c00163{transform:matrix(0.304196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304196,0.000000,0.000000,0.250000,0,0);}
.m10_c00163{transform:matrix(0.305475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305475,0.000000,0.000000,0.250000,0,0);}
.m8e_c00163{transform:matrix(0.305639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305639,0.000000,0.000000,0.250000,0,0);}
.mc5_c00163{transform:matrix(0.306005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306005,0.000000,0.000000,0.250000,0,0);}
.m7d_c00163{transform:matrix(0.306214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306214,0.000000,0.000000,0.250000,0,0);}
.mb3_c00163{transform:matrix(0.306902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306902,0.000000,0.000000,0.250000,0,0);}
.maf_c00163{transform:matrix(0.307242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307242,0.000000,0.000000,0.250000,0,0);}
.mbf_c00163{transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);}
.m5_c00163{transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);}
.mbe_c00163{transform:matrix(0.308429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308429,0.000000,0.000000,0.250000,0,0);}
.m9a_c00163{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.mbd_c00163{transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);}
.ma7_c00163{transform:matrix(0.309133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309133,0.000000,0.000000,0.250000,0,0);}
.m30_c00163{transform:matrix(0.309417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309417,0.000000,0.000000,0.250000,0,0);}
.m1d_c00163{transform:matrix(0.309753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309753,0.000000,0.000000,0.250000,0,0);}
.mcc_c00163{transform:matrix(0.310673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310673,0.000000,0.000000,0.250000,0,0);}
.m33_c00163{transform:matrix(0.311307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311307,0.000000,0.000000,0.250000,0,0);}
.mda_c00163{transform:matrix(0.311750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311750,0.000000,0.000000,0.250000,0,0);}
.m75_c00163{transform:matrix(0.311966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311966,0.000000,0.000000,0.250000,0,0);}
.m9e_c00163{transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);}
.mc3_c00163{transform:matrix(0.312189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312189,0.000000,0.000000,0.250000,0,0);}
.m55_c00163{transform:matrix(0.312531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312531,0.000000,0.000000,0.250000,0,0);}
.m48_c00163{transform:matrix(0.312946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312946,0.000000,0.000000,0.250000,0,0);}
.m3e_c00163{transform:matrix(0.313023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313023,0.000000,0.000000,0.250000,0,0);}
.m46_c00163{transform:matrix(0.313188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313188,0.000000,0.000000,0.250000,0,0);}
.m88_c00163{transform:matrix(0.313434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313434,0.000000,0.000000,0.250000,0,0);}
.m5f_c00163{transform:matrix(0.313664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313664,0.000000,0.000000,0.250000,0,0);}
.mba_c00163{transform:matrix(0.313921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313921,0.000000,0.000000,0.250000,0,0);}
.ma8_c00163{transform:matrix(0.314056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314056,0.000000,0.000000,0.250000,0,0);}
.mb5_c00163{transform:matrix(0.314176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314176,0.000000,0.000000,0.250000,0,0);}
.md8_c00163{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);}
.m21_c00163{transform:matrix(0.315223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315223,0.000000,0.000000,0.250000,0,0);}
.m5a_c00163{transform:matrix(0.316040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316040,0.000000,0.000000,0.250000,0,0);}
.m37_c00163{transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);}
.m94_c00163{transform:matrix(0.319696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319696,0.000000,0.000000,0.250000,0,0);}
.mbb_c00163{transform:matrix(0.319930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319930,0.000000,0.000000,0.250000,0,0);}
.mab_c00163{transform:matrix(0.320064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320064,0.000000,0.000000,0.250000,0,0);}
.m38_c00163{transform:matrix(0.320507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320507,0.000000,0.000000,0.250000,0,0);}
.m5d_c00163{transform:matrix(0.322153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322153,0.000000,0.000000,0.250000,0,0);}
.m9_c00163{transform:matrix(0.322973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322973,0.000000,0.000000,0.250000,0,0);}
.mae_c00163{transform:matrix(0.323333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323333,0.000000,0.000000,0.250000,0,0);}
.me0_c00163{transform:matrix(0.323454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323454,0.000000,0.000000,0.250000,0,0);}
.mdb_c00163{transform:matrix(0.323476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323476,0.000000,0.000000,0.250000,0,0);}
.m5b_c00163{transform:matrix(0.323528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323528,0.000000,0.000000,0.250000,0,0);}
.m98_c00163{transform:matrix(0.324242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324242,0.000000,0.000000,0.250000,0,0);}
.m44_c00163{transform:matrix(0.324886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324886,0.000000,0.000000,0.250000,0,0);}
.m8b_c00163{transform:matrix(0.326049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326049,0.000000,0.000000,0.250000,0,0);}
.m57_c00163{transform:matrix(0.326052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326052,0.000000,0.000000,0.250000,0,0);}
.m1c_c00163{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m90_c00163{transform:matrix(0.327278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327278,0.000000,0.000000,0.250000,0,0);}
.m3b_c00163{transform:matrix(0.327729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327729,0.000000,0.000000,0.250000,0,0);}
.m2b_c00163{transform:matrix(0.329115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329115,0.000000,0.000000,0.250000,0,0);}
.m6e_c00163{transform:matrix(0.329405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329405,0.000000,0.000000,0.250000,0,0);}
.m12_c00163{transform:matrix(0.329713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329713,0.000000,0.000000,0.250000,0,0);}
.me3_c00163{transform:matrix(0.330043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330043,0.000000,0.000000,0.250000,0,0);}
.m35_c00163{transform:matrix(0.331506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331506,0.000000,0.000000,0.250000,0,0);}
.m11_c00163{transform:matrix(0.332170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332170,0.000000,0.000000,0.250000,0,0);}
.m93_c00163{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m14_c00163{transform:matrix(0.333376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333376,0.000000,0.000000,0.250000,0,0);}
.m92_c00163{transform:matrix(0.333511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333511,0.000000,0.000000,0.250000,0,0);}
.m74_c00163{transform:matrix(0.334985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334985,0.000000,0.000000,0.250000,0,0);}
.ma5_c00163{transform:matrix(0.335311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335311,0.000000,0.000000,0.250000,0,0);}
.m15_c00163{transform:matrix(0.335619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335619,0.000000,0.000000,0.250000,0,0);}
.mb1_c00163{transform:matrix(0.335768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335768,0.000000,0.000000,0.250000,0,0);}
.mc0_c00163{transform:matrix(0.336348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336348,0.000000,0.000000,0.250000,0,0);}
.mad_c00163{transform:matrix(0.337661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337661,0.000000,0.000000,0.250000,0,0);}
.m87_c00163{transform:matrix(0.338011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338011,0.000000,0.000000,0.250000,0,0);}
.m4f_c00163{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m29_c00163{transform:matrix(0.339419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339419,0.000000,0.000000,0.250000,0,0);}
.mcd_c00163{transform:matrix(0.341749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341749,0.000000,0.000000,0.250000,0,0);}
.mc4_c00163{transform:matrix(0.342513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342513,0.000000,0.000000,0.250000,0,0);}
.m91_c00163{transform:matrix(0.343129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343129,0.000000,0.000000,0.250000,0,0);}
.me_c00163{transform:matrix(0.346619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346619,0.000000,0.000000,0.250000,0,0);}
.md3_c00163{transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);}
.m72_c00163{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m2_c00163{transform:matrix(0.356521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356521,0.000000,0.000000,0.250000,0,0);}
.md2_c00163{transform:matrix(0.364896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364896,0.000000,0.000000,0.250000,0,0);}
.mc8_c00163{transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);}
.m40_c00163{transform:matrix(0.374767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374767,0.000000,0.000000,0.250000,0,0);}
.m73_c00163{transform:matrix(0.380532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380532,0.000000,0.000000,0.250000,0,0);}
.m77_c00163{transform:matrix(0.396487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396487,0.000000,0.000000,0.250000,0,0);}
.me1_c00163{transform:matrix(0.406678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406678,0.000000,0.000000,0.250000,0,0);}
.m95_c00163{transform:matrix(0.407787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407787,0.000000,0.000000,0.250000,0,0);}
.m7f_c00163{transform:matrix(0.421610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421610,0.000000,0.000000,0.250000,0,0);}
.m3f_c00163{transform:matrix(0.432348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432348,0.000000,0.000000,0.250000,0,0);}
.mb_c00163{transform:matrix(0.798819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.798819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.798819,0.000000,0.000000,0.250000,0,0);}
.v1_c00163{vertical-align:-15.661800px;}
.v0_c00163{vertical-align:0.000000px;}
.lsa_c00163{letter-spacing:-2.744280px;}
.lse_c00163{letter-spacing:-1.746367px;}
.ls12_c00163{letter-spacing:-0.845460px;}
.lsc_c00163{letter-spacing:-0.074488px;}
.ls5_c00163{letter-spacing:0.000000px;}
.ls3_c00163{letter-spacing:0.070567px;}
.ls17_c00163{letter-spacing:0.321473px;}
.ls9_c00163{letter-spacing:1.246687px;}
.ls1_c00163{letter-spacing:1.427026px;}
.ls4_c00163{letter-spacing:1.505434px;}
.ls19_c00163{letter-spacing:1.722600px;}
.ls13_c00163{letter-spacing:1.960200px;}
.ls7_c00163{letter-spacing:2.108700px;}
.ls18_c00163{letter-spacing:2.446330px;}
.lsd_c00163{letter-spacing:2.494810px;}
.ls15_c00163{letter-spacing:2.509056px;}
.ls2_c00163{letter-spacing:2.971663px;}
.lsf_c00163{letter-spacing:3.112798px;}
.lsb_c00163{letter-spacing:3.167683px;}
.ls14_c00163{letter-spacing:3.191206px;}
.ls10_c00163{letter-spacing:3.253932px;}
.ls8_c00163{letter-spacing:3.653813px;}
.ls16_c00163{letter-spacing:3.663000px;}
.ls1a_c00163{letter-spacing:3.722400px;}
.ls6_c00163{letter-spacing:3.920400px;}
.ls0_c00163{letter-spacing:19.706478px;}
.ls11_c00163{letter-spacing:31.363200px;}
.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;}
}
.ws3_c00163{word-spacing:-22.573663px;}
.ws2_c00163{word-spacing:-21.562200px;}
.ws1_c00163{word-spacing:-19.602000px;}
.ws5_c00163{word-spacing:-5.488560px;}
.ws4_c00163{word-spacing:-0.101930px;}
.ws0_c00163{word-spacing:0.000000px;}
._15_c00163{margin-left:-13.172544px;}
._14_c00163{margin-left:-2.744280px;}
._5_c00163{margin-left:-1.513670px;}
._1_c00163{width:2.430648px;}
._11_c00163{width:4.264999px;}
._7_c00163{width:5.970096px;}
._c_c00163{width:6.978312px;}
._8_c00163{width:8.703288px;}
._16_c00163{width:10.046916px;}
._10_c00163{width:13.161456px;}
._4_c00163{width:17.406576px;}
._13_c00163{width:21.719016px;}
._d_c00163{width:23.130360px;}
._0_c00163{width:25.918200px;}
._b_c00163{width:28.898496px;}
._6_c00163{width:30.254400px;}
._a_c00163{width:31.755240px;}
._3_c00163{width:33.245388px;}
._12_c00163{width:35.429724px;}
._9_c00163{width:36.459720px;}
._2_c00163{width:37.479024px;}
._f_c00163{width:255.241008px;}
._e_c00163{width:320.854644px;}
.fc0_c00163{color:transparent;}
.fs14_c00163{font-size:17.424000px;}
.fs4_c00163{font-size:22.572000px;}
.fsc_c00163{font-size:23.166000px;}
.fsf_c00163{font-size:24.156000px;}
.fs0_c00163{font-size:27.720000px;}
.fsd_c00163{font-size:31.363200px;}
.fs11_c00163{font-size:34.452000px;}
.fs13_c00163{font-size:36.828000px;}
.fs1_c00163{font-size:38.808000px;}
.fs5_c00163{font-size:41.382000px;}
.fs3_c00163{font-size:42.174000px;}
.fsb_c00163{font-size:46.332000px;}
.fs9_c00163{font-size:49.896198px;}
.fs16_c00163{font-size:50.688000px;}
.fse_c00163{font-size:56.628000px;}
.fs15_c00163{font-size:67.320000px;}
.fsa_c00163{font-size:70.884000px;}
.fs6_c00163{font-size:72.864000px;}
.fs10_c00163{font-size:73.260000px;}
.fs12_c00163{font-size:74.448000px;}
.fs7_c00163{font-size:76.032198px;}
.fs2_c00163{font-size:78.408000px;}
.fs8_c00163{font-size:107.712198px;}
.y0_c00163{bottom:0.000000px;}
.y2c_c00163{bottom:24.147135px;}
.y2d_c00163{bottom:24.859935px;}
.y2b_c00163{bottom:56.930985px;}
.y2a_c00163{bottom:63.351135px;}
.y1_c00163{bottom:76.500000px;}
.y29_c00163{bottom:80.814735px;}
.y28_c00163{bottom:87.586335px;}
.y27_c00163{bottom:121.087935px;}
.y25_c00163{bottom:150.307785px;}
.y26_c00163{bottom:155.653785px;}
.y24_c00163{bottom:180.963135px;}
.y23_c00163{bottom:215.177535px;}
.y22_c00163{bottom:247.609935px;}
.y21_c00163{bottom:280.042335px;}
.y20_c00163{bottom:312.831135px;}
.y1f_c00163{bottom:344.550735px;}
.y2_c00163{bottom:367.716735px;}
.y1e_c00163{bottom:376.978185px;}
.y1d_c00163{bottom:409.415535px;}
.y1c_c00163{bottom:442.199385px;}
.y1b_c00163{bottom:474.275385px;}
.y1a_c00163{bottom:506.356335px;}
.y19_c00163{bottom:538.427385px;}
.y18_c00163{bottom:570.508335px;}
.y17_c00163{bottom:606.148335px;}
.y16_c00163{bottom:615.766185px;}
.y15_c00163{bottom:619.335135px;}
.y14_c00163{bottom:627.888735px;}
.y13_c00163{bottom:635.729535px;}
.y12_c00163{bottom:668.161935px;}
.y11_c00163{bottom:700.232985px;}
.y10_c00163{bottom:732.665385px;}
.yf_c00163{bottom:764.746335px;}
.ye_c00163{bottom:789.332985px;}
.yc_c00163{bottom:796.460985px;}
.yd_c00163{bottom:797.178735px;}
.yb_c00163{bottom:830.323935px;}
.ya_c00163{bottom:863.107785px;}
.y9_c00163{bottom:880.927785px;}
.y8_c00163{bottom:895.896585px;}
.y7_c00163{bottom:920.493135px;}
.y6_c00163{bottom:928.685385px;}
.y5_c00163{bottom:1054.138185px;}
.y3_c00163{bottom:1075.527135px;}
.y4_c00163{bottom:1079.442585px;}
.h12_c00163{height:18.172688px;}
.hb_c00163{height:20.887891px;}
.h6_c00163{height:23.541891px;}
.hd_c00163{height:23.707793px;}
.h2_c00163{height:28.911094px;}
.hf_c00163{height:35.932359px;}
.h11_c00163{height:36.144668px;}
.h3_c00163{height:40.475531px;}
.h5_c00163{height:43.986164px;}
.ha_c00163{height:48.322828px;}
.h9_c00163{height:48.970390px;}
.h14_c00163{height:52.866000px;}
.hc_c00163{height:59.061234px;}
.h13_c00163{height:66.070898px;}
.h7_c00163{height:71.512031px;}
.h10_c00163{height:73.066641px;}
.he_c00163{height:73.832344px;}
.h4_c00163{height:76.953164px;}
.h8_c00163{height:90.051832px;}
.h1_c00163{height:1110.000000px;}
.h0_c00163{height:1263.000000px;}
.w1_c00163{width:775.500000px;}
.w0_c00163{width:892.500000px;}
.x0_c00163{left:0.000000px;}
.x2_c00163{left:53.337885px;}
.x1_c00163{left:58.500000px;}
.x11_c00163{left:84.780285px;}
.x5e_c00163{left:85.948485px;}
.x6_c00163{left:87.022635px;}
.x76_c00163{left:89.062035px;}
.x26_c00163{left:95.497035px;}
.x31_c00163{left:96.739485px;}
.x3f_c00163{left:107.975985px;}
.x32_c00163{left:117.974985px;}
.x12_c00163{left:119.172885px;}
.x72_c00163{left:120.583635px;}
.x4d_c00163{left:128.191785px;}
.x27_c00163{left:129.676785px;}
.x64_c00163{left:130.929135px;}
.x45_c00163{left:138.977835px;}
.x7_c00163{left:140.789535px;}
.x3_c00163{left:142.036935px;}
.x40_c00163{left:152.134935px;}
.x3b_c00163{left:153.322935px;}
.x1d_c00163{left:162.465585px;}
.x33_c00163{left:164.203035px;}
.x13_c00163{left:174.043635px;}
.x41_c00163{left:175.107885px;}
.x5c_c00163{left:186.086985px;}
.x8_c00163{left:195.556335px;}
.x14_c00163{left:197.155185px;}
.x3c_c00163{left:206.723535px;}
.x6c_c00163{left:208.272885px;}
.x42_c00163{left:211.525035px;}
.x3d_c00163{left:218.593635px;}
.x34_c00163{left:219.667785px;}
.x28_c00163{left:228.434235px;}
.x43_c00163{left:230.112285px;}
.x46_c00163{left:239.789535px;}
.x1e_c00163{left:241.071585px;}
.x69_c00163{left:243.452535px;}
.x1c_c00163{left:245.051385px;}
.x5f_c00163{left:250.481535px;}
.x15_c00163{left:252.456585px;}
.x73_c00163{left:254.758335px;}
.x29_c00163{left:262.252635px;}
.x9_c00163{left:264.227685px;}
.x47_c00163{left:274.206885px;}
.xa_c00163{left:285.606735px;}
.x5_c00163{left:289.987485px;}
.x67_c00163{left:296.471985px;}
.x61_c00163{left:297.719385px;}
.xb_c00163{left:307.985685px;}
.x74_c00163{left:310.455735px;}
.x48_c00163{left:318.925185px;}
.xc_c00163{left:329.810235px;}
.x35_c00163{left:330.854685px;}
.x1f_c00163{left:339.507285px;}
.x16_c00163{left:341.843685px;}
.x36_c00163{left:352.961385px;}
.x20_c00163{left:363.306885px;}
.xd_c00163{left:373.622685px;}
.x21_c00163{left:383.067285px;}
.x63_c00163{left:384.676035px;}
.x6d_c00163{left:386.106585px;}
.x4e_c00163{left:396.263985px;}
.x37_c00163{left:405.921435px;}
.x2a_c00163{left:407.842035px;}
.x4f_c00163{left:418.192485px;}
.x22_c00163{left:428.518185px;}
.x68_c00163{left:429.577485px;}
.x17_c00163{left:440.615985px;}
.x6f_c00163{left:443.392935px;}
.x58_c00163{left:450.357585px;}
.xe_c00163{left:451.679235px;}
.x2b_c00163{left:461.876235px;}
.x18_c00163{left:462.930585px;}
.x23_c00163{left:464.093835px;}
.x5d_c00163{left:473.434485px;}
.x2c_c00163{left:484.482885px;}
.x24_c00163{left:494.551185px;}
.x49_c00163{left:496.516335px;}
.x6a_c00163{left:504.599685px;}
.x19_c00163{left:506.094585px;}
.x2d_c00163{left:507.287535px;}
.xf_c00163{left:517.543935px;}
.x60_c00163{left:518.677485px;}
.x4a_c00163{left:528.547785px;}
.x70_c00163{left:529.720935px;}
.x44_c00163{left:540.046635px;}
.x50_c00163{left:542.689935px;}
.x54_c00163{left:551.179185px;}
.x3e_c00163{left:560.915835px;}
.x71_c00163{left:563.237385px;}
.x65_c00163{left:573.226485px;}
.x38_c00163{left:583.918485px;}
.x75_c00163{left:584.943135px;}
.x59_c00163{left:593.387835px;}
.x2e_c00163{left:595.615335px;}
.x10_c00163{left:606.104385px;}
.x2f_c00163{left:617.395335px;}
.x51_c00163{left:619.350585px;}
.x1a_c00163{left:628.295235px;}
.x5a_c00163{left:637.536885px;}
.x25_c00163{left:639.838635px;}
.x4c_c00163{left:649.852485px;}
.x62_c00163{left:660.702885px;}
.x4_c00163{left:661.910685px;}
.x6e_c00163{left:664.440135px;}
.x1b_c00163{left:672.464085px;}
.x5b_c00163{left:681.730485px;}
.x39_c00163{left:683.453085px;}
.x3a_c00163{left:686.947785px;}
.x4b_c00163{left:694.402485px;}
.x30_c00163{left:695.441985px;}
.x56_c00163{left:699.248535px;}
.x52_c00163{left:700.797885px;}
.x66_c00163{left:702.035385px;}
.x53_c00163{left:704.104485px;}
.x55_c00163{left:705.307335px;}
.x6b_c00163{left:706.812135px;}
.x57_c00163{left:708.797085px;}
@media print{
.v1_c00163{vertical-align:-13.921600pt;}
.v0_c00163{vertical-align:0.000000pt;}
.lsa_c00163{letter-spacing:-2.439360pt;}
.lse_c00163{letter-spacing:-1.552326pt;}
.ls12_c00163{letter-spacing:-0.751520pt;}
.lsc_c00163{letter-spacing:-0.066211pt;}
.ls5_c00163{letter-spacing:0.000000pt;}
.ls3_c00163{letter-spacing:0.062726pt;}
.ls17_c00163{letter-spacing:0.285754pt;}
.ls9_c00163{letter-spacing:1.108166pt;}
.ls1_c00163{letter-spacing:1.268467pt;}
.ls4_c00163{letter-spacing:1.338163pt;}
.ls19_c00163{letter-spacing:1.531200pt;}
.ls13_c00163{letter-spacing:1.742400pt;}
.ls7_c00163{letter-spacing:1.874400pt;}
.ls18_c00163{letter-spacing:2.174515pt;}
.lsd_c00163{letter-spacing:2.217609pt;}
.ls15_c00163{letter-spacing:2.230272pt;}
.ls2_c00163{letter-spacing:2.641478pt;}
.lsf_c00163{letter-spacing:2.766931pt;}
.lsb_c00163{letter-spacing:2.815718pt;}
.ls14_c00163{letter-spacing:2.836627pt;}
.ls10_c00163{letter-spacing:2.892384pt;}
.ls8_c00163{letter-spacing:3.247834pt;}
.ls16_c00163{letter-spacing:3.256000pt;}
.ls1a_c00163{letter-spacing:3.308800pt;}
.ls6_c00163{letter-spacing:3.484800pt;}
.ls0_c00163{letter-spacing:17.516869pt;}
.ls11_c00163{letter-spacing:27.878400pt;}
.ws3_c00163{word-spacing:-20.065478pt;}
.ws2_c00163{word-spacing:-19.166400pt;}
.ws1_c00163{word-spacing:-17.424000pt;}
.ws5_c00163{word-spacing:-4.878720pt;}
.ws4_c00163{word-spacing:-0.090605pt;}
.ws0_c00163{word-spacing:0.000000pt;}
._15_c00163{margin-left:-11.708928pt;}
._14_c00163{margin-left:-2.439360pt;}
._5_c00163{margin-left:-1.345485pt;}
._1_c00163{width:2.160576pt;}
._11_c00163{width:3.791110pt;}
._7_c00163{width:5.306752pt;}
._c_c00163{width:6.202944pt;}
._8_c00163{width:7.736256pt;}
._16_c00163{width:8.930592pt;}
._10_c00163{width:11.699072pt;}
._4_c00163{width:15.472512pt;}
._13_c00163{width:19.305792pt;}
._d_c00163{width:20.560320pt;}
._0_c00163{width:23.038400pt;}
._b_c00163{width:25.687552pt;}
._6_c00163{width:26.892800pt;}
._a_c00163{width:28.226880pt;}
._3_c00163{width:29.551456pt;}
._12_c00163{width:31.493088pt;}
._9_c00163{width:32.408640pt;}
._2_c00163{width:33.314688pt;}
._f_c00163{width:226.880896pt;}
._e_c00163{width:285.204128pt;}
.fs14_c00163{font-size:15.488000pt;}
.fs4_c00163{font-size:20.064000pt;}
.fsc_c00163{font-size:20.592000pt;}
.fsf_c00163{font-size:21.472000pt;}
.fs0_c00163{font-size:24.640000pt;}
.fsd_c00163{font-size:27.878400pt;}
.fs11_c00163{font-size:30.624000pt;}
.fs13_c00163{font-size:32.736000pt;}
.fs1_c00163{font-size:34.496000pt;}
.fs5_c00163{font-size:36.784000pt;}
.fs3_c00163{font-size:37.488000pt;}
.fsb_c00163{font-size:41.184000pt;}
.fs9_c00163{font-size:44.352176pt;}
.fs16_c00163{font-size:45.056000pt;}
.fse_c00163{font-size:50.336000pt;}
.fs15_c00163{font-size:59.840000pt;}
.fsa_c00163{font-size:63.008000pt;}
.fs6_c00163{font-size:64.768000pt;}
.fs10_c00163{font-size:65.120000pt;}
.fs12_c00163{font-size:66.176000pt;}
.fs7_c00163{font-size:67.584176pt;}
.fs2_c00163{font-size:69.696000pt;}
.fs8_c00163{font-size:95.744176pt;}
.y0_c00163{bottom:0.000000pt;}
.y2c_c00163{bottom:21.464120pt;}
.y2d_c00163{bottom:22.097720pt;}
.y2b_c00163{bottom:50.605320pt;}
.y2a_c00163{bottom:56.312120pt;}
.y1_c00163{bottom:68.000000pt;}
.y29_c00163{bottom:71.835320pt;}
.y28_c00163{bottom:77.854520pt;}
.y27_c00163{bottom:107.633720pt;}
.y25_c00163{bottom:133.606920pt;}
.y26_c00163{bottom:138.358920pt;}
.y24_c00163{bottom:160.856120pt;}
.y23_c00163{bottom:191.268920pt;}
.y22_c00163{bottom:220.097720pt;}
.y21_c00163{bottom:248.926520pt;}
.y20_c00163{bottom:278.072120pt;}
.y1f_c00163{bottom:306.267320pt;}
.y2_c00163{bottom:326.859320pt;}
.y1e_c00163{bottom:335.091720pt;}
.y1d_c00163{bottom:363.924920pt;}
.y1c_c00163{bottom:393.066120pt;}
.y1b_c00163{bottom:421.578120pt;}
.y1a_c00163{bottom:450.094520pt;}
.y19_c00163{bottom:478.602120pt;}
.y18_c00163{bottom:507.118520pt;}
.y17_c00163{bottom:538.798520pt;}
.y16_c00163{bottom:547.347720pt;}
.y15_c00163{bottom:550.520120pt;}
.y14_c00163{bottom:558.123320pt;}
.y13_c00163{bottom:565.092920pt;}
.y12_c00163{bottom:593.921720pt;}
.y11_c00163{bottom:622.429320pt;}
.y10_c00163{bottom:651.258120pt;}
.yf_c00163{bottom:679.774520pt;}
.ye_c00163{bottom:701.629320pt;}
.yc_c00163{bottom:707.965320pt;}
.yd_c00163{bottom:708.603320pt;}
.yb_c00163{bottom:738.065720pt;}
.ya_c00163{bottom:767.206920pt;}
.y9_c00163{bottom:783.046920pt;}
.y8_c00163{bottom:796.352520pt;}
.y7_c00163{bottom:818.216120pt;}
.y6_c00163{bottom:825.498120pt;}
.y5_c00163{bottom:937.011720pt;}
.y3_c00163{bottom:956.024120pt;}
.y4_c00163{bottom:959.504520pt;}
.h12_c00163{height:16.153500pt;}
.hb_c00163{height:18.567014pt;}
.h6_c00163{height:20.926125pt;}
.hd_c00163{height:21.073594pt;}
.h2_c00163{height:25.698750pt;}
.hf_c00163{height:31.939875pt;}
.h11_c00163{height:32.128594pt;}
.h3_c00163{height:35.978250pt;}
.h5_c00163{height:39.098813pt;}
.ha_c00163{height:42.953625pt;}
.h9_c00163{height:43.529235pt;}
.h14_c00163{height:46.992000pt;}
.hc_c00163{height:52.498875pt;}
.h13_c00163{height:58.729688pt;}
.h7_c00163{height:63.566250pt;}
.h10_c00163{height:64.948125pt;}
.he_c00163{height:65.628750pt;}
.h4_c00163{height:68.402813pt;}
.h8_c00163{height:80.046073pt;}
.h1_c00163{height:986.666667pt;}
.h0_c00163{height:1122.666667pt;}
.w1_c00163{width:689.333333pt;}
.w0_c00163{width:793.333333pt;}
.x0_c00163{left:0.000000pt;}
.x2_c00163{left:47.411453pt;}
.x1_c00163{left:52.000000pt;}
.x11_c00163{left:75.360253pt;}
.x5e_c00163{left:76.398653pt;}
.x6_c00163{left:77.353453pt;}
.x76_c00163{left:79.166253pt;}
.x26_c00163{left:84.886253pt;}
.x31_c00163{left:85.990653pt;}
.x3f_c00163{left:95.978653pt;}
.x32_c00163{left:104.866653pt;}
.x12_c00163{left:105.931453pt;}
.x72_c00163{left:107.185453pt;}
.x4d_c00163{left:113.948253pt;}
.x27_c00163{left:115.268253pt;}
.x64_c00163{left:116.381453pt;}
.x45_c00163{left:123.535853pt;}
.x7_c00163{left:125.146253pt;}
.x3_c00163{left:126.255053pt;}
.x40_c00163{left:135.231053pt;}
.x3b_c00163{left:136.287053pt;}
.x1d_c00163{left:144.413853pt;}
.x33_c00163{left:145.958253pt;}
.x13_c00163{left:154.705453pt;}
.x41_c00163{left:155.651453pt;}
.x5c_c00163{left:165.410653pt;}
.x8_c00163{left:173.827853pt;}
.x14_c00163{left:175.249053pt;}
.x3c_c00163{left:183.754253pt;}
.x6c_c00163{left:185.131453pt;}
.x42_c00163{left:188.022253pt;}
.x3d_c00163{left:194.305453pt;}
.x34_c00163{left:195.260253pt;}
.x28_c00163{left:203.052653pt;}
.x43_c00163{left:204.544253pt;}
.x46_c00163{left:213.146253pt;}
.x1e_c00163{left:214.285853pt;}
.x69_c00163{left:216.402253pt;}
.x1c_c00163{left:217.823453pt;}
.x5f_c00163{left:222.650253pt;}
.x15_c00163{left:224.405853pt;}
.x73_c00163{left:226.451853pt;}
.x29_c00163{left:233.113453pt;}
.x9_c00163{left:234.869053pt;}
.x47_c00163{left:243.739453pt;}
.xa_c00163{left:253.872653pt;}
.x5_c00163{left:257.766653pt;}
.x67_c00163{left:263.530653pt;}
.x61_c00163{left:264.639453pt;}
.xb_c00163{left:273.765053pt;}
.x74_c00163{left:275.960653pt;}
.x48_c00163{left:283.489053pt;}
.xc_c00163{left:293.164653pt;}
.x35_c00163{left:294.093053pt;}
.x1f_c00163{left:301.784253pt;}
.x16_c00163{left:303.861053pt;}
.x36_c00163{left:313.743453pt;}
.x20_c00163{left:322.939453pt;}
.xd_c00163{left:332.109053pt;}
.x21_c00163{left:340.504253pt;}
.x63_c00163{left:341.934253pt;}
.x6d_c00163{left:343.205853pt;}
.x4e_c00163{left:352.234653pt;}
.x37_c00163{left:360.819053pt;}
.x2a_c00163{left:362.526253pt;}
.x4f_c00163{left:371.726653pt;}
.x22_c00163{left:380.905053pt;}
.x68_c00163{left:381.846653pt;}
.x17_c00163{left:391.658653pt;}
.x6f_c00163{left:394.127053pt;}
.x58_c00163{left:400.317853pt;}
.xe_c00163{left:401.492653pt;}
.x2b_c00163{left:410.556653pt;}
.x18_c00163{left:411.493853pt;}
.x23_c00163{left:412.527853pt;}
.x5d_c00163{left:420.830653pt;}
.x2c_c00163{left:430.651453pt;}
.x24_c00163{left:439.601053pt;}
.x49_c00163{left:441.347853pt;}
.x6a_c00163{left:448.533053pt;}
.x19_c00163{left:449.861853pt;}
.x2d_c00163{left:450.922253pt;}
.xf_c00163{left:460.039053pt;}
.x60_c00163{left:461.046653pt;}
.x4a_c00163{left:469.820253pt;}
.x70_c00163{left:470.863053pt;}
.x44_c00163{left:480.041453pt;}
.x50_c00163{left:482.391053pt;}
.x54_c00163{left:489.937053pt;}
.x3e_c00163{left:498.591853pt;}
.x71_c00163{left:500.655453pt;}
.x65_c00163{left:509.534653pt;}
.x38_c00163{left:519.038653pt;}
.x75_c00163{left:519.949453pt;}
.x59_c00163{left:527.455853pt;}
.x2e_c00163{left:529.435853pt;}
.x10_c00163{left:538.759453pt;}
.x2f_c00163{left:548.795853pt;}
.x51_c00163{left:550.533853pt;}
.x1a_c00163{left:558.484653pt;}
.x5a_c00163{left:566.699453pt;}
.x25_c00163{left:568.745453pt;}
.x4c_c00163{left:577.646653pt;}
.x62_c00163{left:587.291453pt;}
.x4_c00163{left:588.365053pt;}
.x6e_c00163{left:590.613453pt;}
.x1b_c00163{left:597.745853pt;}
.x5b_c00163{left:605.982653pt;}
.x39_c00163{left:607.513853pt;}
.x3a_c00163{left:610.620253pt;}
.x4b_c00163{left:617.246653pt;}
.x30_c00163{left:618.170653pt;}
.x56_c00163{left:621.554253pt;}
.x52_c00163{left:622.931453pt;}
.x66_c00163{left:624.031453pt;}
.x53_c00163{left:625.870653pt;}
.x55_c00163{left:626.939853pt;}
.x6b_c00163{left:628.277453pt;}
.x57_c00163{left:630.041853pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3ddbbbbbb46e253853578ed0.woff2')format("woff");}.ff1_c00164{font-family:ff1_c00164;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00164;src:url('chunks/assets/font_b7a272b2373f95baef3164e0.woff2')format("woff");}.ff2_c00164{font-family:ff2_c00164;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00164;src:url('chunks/assets/font_aaf02819b9232761d5e97038.woff2')format("woff");}.ff3_c00164{font-family:ff3_c00164;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00164;src:url('chunks/assets/font_1ac8da3d0210f28f4a1af6f0.woff2')format("woff");}.ff4_c00164{font-family:ff4_c00164;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m70_c00164{transform:matrix(0.144309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144309,0.000000,0.000000,0.250000,0,0);}
.m7f_c00164{transform:matrix(0.175595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175595,0.000000,0.000000,0.250000,0,0);}
.m53_c00164{transform:matrix(0.186991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186991,0.000000,0.000000,0.250000,0,0);}
.m72_c00164{transform:matrix(0.190512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190512,0.000000,0.000000,0.250000,0,0);}
.m79_c00164{transform:matrix(0.219854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219854,0.000000,0.000000,0.250000,0,0);}
.m89_c00164{transform:matrix(0.222192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222192,0.000000,0.000000,0.250000,0,0);}
.m6c_c00164{transform:matrix(0.238071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238071,0.000000,0.000000,0.250000,0,0);}
.md_c00164{transform:matrix(0.247509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247509,0.000000,0.000000,0.250000,0,0);}
.m38_c00164{transform:matrix(0.247570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247570,0.000000,0.000000,0.250000,0,0);}
.m3d_c00164{transform:matrix(0.249588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249588,0.000000,0.000000,0.250000,0,0);}
.m1_c00164{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m80_c00164{transform:matrix(0.250051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250051,0.000000,0.000000,0.250000,0,0);}
.m18_c00164{transform:matrix(0.250987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250987,0.000000,0.000000,0.250000,0,0);}
.m74_c00164{transform:matrix(0.252466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252466,0.000000,0.000000,0.250000,0,0);}
.m7d_c00164{transform:matrix(0.252683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252683,0.000000,0.000000,0.250000,0,0);}
.m1e_c00164{transform:matrix(0.253062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253062,0.000000,0.000000,0.250000,0,0);}
.m96_c00164{transform:matrix(0.253325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253325,0.000000,0.000000,0.250000,0,0);}
.m68_c00164{transform:matrix(0.253688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253688,0.000000,0.000000,0.250000,0,0);}
.m65_c00164{transform:matrix(0.253998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253998,0.000000,0.000000,0.250000,0,0);}
.m8f_c00164{transform:matrix(0.254648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254648,0.000000,0.000000,0.250000,0,0);}
.m4c_c00164{transform:matrix(0.254858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254858,0.000000,0.000000,0.250000,0,0);}
.m11_c00164{transform:matrix(0.255059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255059,0.000000,0.000000,0.250000,0,0);}
.m32_c00164{transform:matrix(0.255255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255255,0.000000,0.000000,0.250000,0,0);}
.m25_c00164{transform:matrix(0.255906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255906,0.000000,0.000000,0.250000,0,0);}
.m83_c00164{transform:matrix(0.256031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256031,0.000000,0.000000,0.250000,0,0);}
.mb_c00164{transform:matrix(0.256068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256068,0.000000,0.000000,0.250000,0,0);}
.m44_c00164{transform:matrix(0.256201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256201,0.000000,0.000000,0.250000,0,0);}
.m3a_c00164{transform:matrix(0.256895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256895,0.000000,0.000000,0.250000,0,0);}
.mf_c00164{transform:matrix(0.257092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257092,0.000000,0.000000,0.250000,0,0);}
.m55_c00164{transform:matrix(0.257562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257562,0.000000,0.000000,0.250000,0,0);}
.m36_c00164{transform:matrix(0.257690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257690,0.000000,0.000000,0.250000,0,0);}
.m1f_c00164{transform:matrix(0.258162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258162,0.000000,0.000000,0.250000,0,0);}
.m12_c00164{transform:matrix(0.258749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258749,0.000000,0.000000,0.250000,0,0);}
.m40_c00164{transform:matrix(0.259723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259723,0.000000,0.000000,0.250000,0,0);}
.m3f_c00164{transform:matrix(0.260377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260377,0.000000,0.000000,0.250000,0,0);}
.m1a_c00164{transform:matrix(0.261324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261324,0.000000,0.000000,0.250000,0,0);}
.m63_c00164{transform:matrix(0.263179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263179,0.000000,0.000000,0.250000,0,0);}
.m2e_c00164{transform:matrix(0.263719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263719,0.000000,0.000000,0.250000,0,0);}
.m67_c00164{transform:matrix(0.265309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265309,0.000000,0.000000,0.250000,0,0);}
.m7b_c00164{transform:matrix(0.265372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265372,0.000000,0.000000,0.250000,0,0);}
.m6d_c00164{transform:matrix(0.265403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265403,0.000000,0.000000,0.250000,0,0);}
.m48_c00164{transform:matrix(0.265726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265726,0.000000,0.000000,0.250000,0,0);}
.m3c_c00164{transform:matrix(0.265754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265754,0.000000,0.000000,0.250000,0,0);}
.m31_c00164{transform:matrix(0.266314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266314,0.000000,0.000000,0.250000,0,0);}
.m16_c00164{transform:matrix(0.266874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266874,0.000000,0.000000,0.250000,0,0);}
.m0_c00164{transform:matrix(0.266975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266975,0.000000,0.000000,0.250000,0,0);}
.m2_c00164{transform:matrix(0.267106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267106,0.000000,0.000000,0.250000,0,0);}
.m41_c00164{transform:matrix(0.267234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267234,0.000000,0.000000,0.250000,0,0);}
.m5d_c00164{transform:matrix(0.268556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268556,0.000000,0.000000,0.250000,0,0);}
.m8_c00164{transform:matrix(0.268850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268850,0.000000,0.000000,0.250000,0,0);}
.m92_c00164{transform:matrix(0.269226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269226,0.000000,0.000000,0.250000,0,0);}
.m54_c00164{transform:matrix(0.269479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269479,0.000000,0.000000,0.250000,0,0);}
.m1c_c00164{transform:matrix(0.269949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269949,0.000000,0.000000,0.250000,0,0);}
.m95_c00164{transform:matrix(0.270021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270021,0.000000,0.000000,0.250000,0,0);}
.m3_c00164{transform:matrix(0.271331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271331,0.000000,0.000000,0.250000,0,0);}
.m78_c00164{transform:matrix(0.272262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272262,0.000000,0.000000,0.250000,0,0);}
.m15_c00164{transform:matrix(0.272723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272723,0.000000,0.000000,0.250000,0,0);}
.m42_c00164{transform:matrix(0.273372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273372,0.000000,0.000000,0.250000,0,0);}
.m35_c00164{transform:matrix(0.274703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274703,0.000000,0.000000,0.250000,0,0);}
.m4d_c00164{transform:matrix(0.274924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274924,0.000000,0.000000,0.250000,0,0);}
.m4_c00164{transform:matrix(0.275459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275459,0.000000,0.000000,0.250000,0,0);}
.m8e_c00164{transform:matrix(0.275701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275701,0.000000,0.000000,0.250000,0,0);}
.m22_c00164{transform:matrix(0.276645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276645,0.000000,0.000000,0.250000,0,0);}
.m56_c00164{transform:matrix(0.276918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276918,0.000000,0.000000,0.250000,0,0);}
.m5a_c00164{transform:matrix(0.276975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276975,0.000000,0.000000,0.250000,0,0);}
.m33_c00164{transform:matrix(0.278480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278480,0.000000,0.000000,0.250000,0,0);}
.m91_c00164{transform:matrix(0.278571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278571,0.000000,0.000000,0.250000,0,0);}
.m20_c00164{transform:matrix(0.279790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279790,0.000000,0.000000,0.250000,0,0);}
.m29_c00164{transform:matrix(0.280975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280975,0.000000,0.000000,0.250000,0,0);}
.m19_c00164{transform:matrix(0.282196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282196,0.000000,0.000000,0.250000,0,0);}
.m7a_c00164{transform:matrix(0.282224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282224,0.000000,0.000000,0.250000,0,0);}
.m45_c00164{transform:matrix(0.282427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282427,0.000000,0.000000,0.250000,0,0);}
.m6a_c00164{transform:matrix(0.282712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282712,0.000000,0.000000,0.250000,0,0);}
.m4a_c00164{transform:matrix(0.282929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282929,0.000000,0.000000,0.250000,0,0);}
.m8a_c00164{transform:matrix(0.283061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283061,0.000000,0.000000,0.250000,0,0);}
.m9_c00164{transform:matrix(0.283202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283202,0.000000,0.000000,0.250000,0,0);}
.m87_c00164{transform:matrix(0.283413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283413,0.000000,0.000000,0.250000,0,0);}
.m69_c00164{transform:matrix(0.283484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283484,0.000000,0.000000,0.250000,0,0);}
.m71_c00164{transform:matrix(0.283487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283487,0.000000,0.000000,0.250000,0,0);}
.m7e_c00164{transform:matrix(0.283604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283604,0.000000,0.000000,0.250000,0,0);}
.m76_c00164{transform:matrix(0.283993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283993,0.000000,0.000000,0.250000,0,0);}
.m3b_c00164{transform:matrix(0.284596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284596,0.000000,0.000000,0.250000,0,0);}
.m5b_c00164{transform:matrix(0.284877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284877,0.000000,0.000000,0.250000,0,0);}
.m64_c00164{transform:matrix(0.286094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286094,0.000000,0.000000,0.250000,0,0);}
.m4e_c00164{transform:matrix(0.286145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286145,0.000000,0.000000,0.250000,0,0);}
.m8c_c00164{transform:matrix(0.287421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287421,0.000000,0.000000,0.250000,0,0);}
.m5c_c00164{transform:matrix(0.288522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288522,0.000000,0.000000,0.250000,0,0);}
.m6f_c00164{transform:matrix(0.289228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289228,0.000000,0.000000,0.250000,0,0);}
.m8b_c00164{transform:matrix(0.289624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289624,0.000000,0.000000,0.250000,0,0);}
.m5e_c00164{transform:matrix(0.290052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290052,0.000000,0.000000,0.250000,0,0);}
.m51_c00164{transform:matrix(0.290829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290829,0.000000,0.000000,0.250000,0,0);}
.m2b_c00164{transform:matrix(0.290854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290854,0.000000,0.000000,0.250000,0,0);}
.m39_c00164{transform:matrix(0.291084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291084,0.000000,0.000000,0.250000,0,0);}
.m24_c00164{transform:matrix(0.292289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292289,0.000000,0.000000,0.250000,0,0);}
.m2a_c00164{transform:matrix(0.292552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292552,0.000000,0.000000,0.250000,0,0);}
.m2f_c00164{transform:matrix(0.293073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293073,0.000000,0.000000,0.250000,0,0);}
.m84_c00164{transform:matrix(0.294596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294596,0.000000,0.000000,0.250000,0,0);}
.mc_c00164{transform:matrix(0.294880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294880,0.000000,0.000000,0.250000,0,0);}
.m4b_c00164{transform:matrix(0.295051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295051,0.000000,0.000000,0.250000,0,0);}
.m37_c00164{transform:matrix(0.295460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295460,0.000000,0.000000,0.250000,0,0);}
.m90_c00164{transform:matrix(0.295877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295877,0.000000,0.000000,0.250000,0,0);}
.m75_c00164{transform:matrix(0.296662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296662,0.000000,0.000000,0.250000,0,0);}
.m50_c00164{transform:matrix(0.297335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297335,0.000000,0.000000,0.250000,0,0);}
.m21_c00164{transform:matrix(0.298125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298125,0.000000,0.000000,0.250000,0,0);}
.m6e_c00164{transform:matrix(0.298379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298379,0.000000,0.000000,0.250000,0,0);}
.m47_c00164{transform:matrix(0.299601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299601,0.000000,0.000000,0.250000,0,0);}
.m27_c00164{transform:matrix(0.299921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299921,0.000000,0.000000,0.250000,0,0);}
.m49_c00164{transform:matrix(0.300586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300586,0.000000,0.000000,0.250000,0,0);}
.m7c_c00164{transform:matrix(0.300995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300995,0.000000,0.000000,0.250000,0,0);}
.m82_c00164{transform:matrix(0.301168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301168,0.000000,0.000000,0.250000,0,0);}
.m14_c00164{transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);}
.m52_c00164{transform:matrix(0.302091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302091,0.000000,0.000000,0.250000,0,0);}
.m60_c00164{transform:matrix(0.303079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303079,0.000000,0.000000,0.250000,0,0);}
.m86_c00164{transform:matrix(0.304052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304052,0.000000,0.000000,0.250000,0,0);}
.m23_c00164{transform:matrix(0.305932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305932,0.000000,0.000000,0.250000,0,0);}
.m62_c00164{transform:matrix(0.306644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306644,0.000000,0.000000,0.250000,0,0);}
.m2d_c00164{transform:matrix(0.307192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307192,0.000000,0.000000,0.250000,0,0);}
.m2c_c00164{transform:matrix(0.309976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309976,0.000000,0.000000,0.250000,0,0);}
.m5f_c00164{transform:matrix(0.312555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312555,0.000000,0.000000,0.250000,0,0);}
.m58_c00164{transform:matrix(0.314521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314521,0.000000,0.000000,0.250000,0,0);}
.m13_c00164{transform:matrix(0.315219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315219,0.000000,0.000000,0.250000,0,0);}
.m10_c00164{transform:matrix(0.315846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315846,0.000000,0.000000,0.250000,0,0);}
.m77_c00164{transform:matrix(0.315875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315875,0.000000,0.000000,0.250000,0,0);}
.ma_c00164{transform:matrix(0.316800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316800,0.000000,0.000000,0.250000,0,0);}
.m34_c00164{transform:matrix(0.317993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317993,0.000000,0.000000,0.250000,0,0);}
.m57_c00164{transform:matrix(0.318081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318081,0.000000,0.000000,0.250000,0,0);}
.m46_c00164{transform:matrix(0.318497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318497,0.000000,0.000000,0.250000,0,0);}
.m3e_c00164{transform:matrix(0.319507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319507,0.000000,0.000000,0.250000,0,0);}
.m94_c00164{transform:matrix(0.319808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319808,0.000000,0.000000,0.250000,0,0);}
.m30_c00164{transform:matrix(0.321432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321432,0.000000,0.000000,0.250000,0,0);}
.m1d_c00164{transform:matrix(0.321588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321588,0.000000,0.000000,0.250000,0,0);}
.m61_c00164{transform:matrix(0.321791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321791,0.000000,0.000000,0.250000,0,0);}
.m66_c00164{transform:matrix(0.322816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322816,0.000000,0.000000,0.250000,0,0);}
.m43_c00164{transform:matrix(0.324155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324155,0.000000,0.000000,0.250000,0,0);}
.m59_c00164{transform:matrix(0.324936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324936,0.000000,0.000000,0.250000,0,0);}
.m8d_c00164{transform:matrix(0.325117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325117,0.000000,0.000000,0.250000,0,0);}
.m5_c00164{transform:matrix(0.325317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325317,0.000000,0.000000,0.250000,0,0);}
.m6_c00164{transform:matrix(0.327799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327799,0.000000,0.000000,0.250000,0,0);}
.m17_c00164{transform:matrix(0.331126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331126,0.000000,0.000000,0.250000,0,0);}
.m4f_c00164{transform:matrix(0.332238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332238,0.000000,0.000000,0.250000,0,0);}
.m73_c00164{transform:matrix(0.333031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333031,0.000000,0.000000,0.250000,0,0);}
.me_c00164{transform:matrix(0.334924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334924,0.000000,0.000000,0.250000,0,0);}
.m85_c00164{transform:matrix(0.336935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336935,0.000000,0.000000,0.250000,0,0);}
.m6b_c00164{transform:matrix(0.337259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337259,0.000000,0.000000,0.250000,0,0);}
.m81_c00164{transform:matrix(0.339668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339668,0.000000,0.000000,0.250000,0,0);}
.m93_c00164{transform:matrix(0.340619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340619,0.000000,0.000000,0.250000,0,0);}
.m26_c00164{transform:matrix(0.340699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340699,0.000000,0.000000,0.250000,0,0);}
.m7_c00164{transform:matrix(0.341068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341068,0.000000,0.000000,0.250000,0,0);}
.m28_c00164{transform:matrix(0.350372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350372,0.000000,0.000000,0.250000,0,0);}
.m1b_c00164{transform:matrix(0.363797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363797,0.000000,0.000000,0.250000,0,0);}
.m88_c00164{transform:matrix(0.369571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369571,0.000000,0.000000,0.250000,0,0);}
.v0_c00164{vertical-align:0.000000px;}
.ls3_c00164{letter-spacing:-2.862090px;}
.lsf_c00164{letter-spacing:-0.302564px;}
.ls2_c00164{letter-spacing:0.000000px;}
.ls0_c00164{letter-spacing:0.850450px;}
.ls7_c00164{letter-spacing:1.079417px;}
.ls11_c00164{letter-spacing:1.910700px;}
.ls15_c00164{letter-spacing:2.281495px;}
.lsa_c00164{letter-spacing:2.428688px;}
.lse_c00164{letter-spacing:2.504700px;}
.ls6_c00164{letter-spacing:2.542558px;}
.ls5_c00164{letter-spacing:2.894800px;}
.ls4_c00164{letter-spacing:3.434508px;}
.ls13_c00164{letter-spacing:3.459040px;}
.ls16_c00164{letter-spacing:3.655298px;}
.ls18_c00164{letter-spacing:3.722400px;}
.ls8_c00164{letter-spacing:3.761604px;}
.lsc_c00164{letter-spacing:3.859733px;}
.lsb_c00164{letter-spacing:3.940200px;}
.ls12_c00164{letter-spacing:3.950110px;}
.ls14_c00164{letter-spacing:4.031458px;}
.lsd_c00164{letter-spacing:4.039636px;}
.ls1_c00164{letter-spacing:4.088700px;}
.ls17_c00164{letter-spacing:4.266900px;}
.ls9_c00164{letter-spacing:58.449798px;}
.ls10_c00164{letter-spacing:59.875398px;}
.sc__c00164{text-shadow:none;}
.sc0_c00164{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00164{-webkit-text-stroke:0px transparent;}
.sc0_c00164{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00164{word-spacing:0.000000px;}
._3_c00164{width:1.806948px;}
._0_c00164{width:14.048773px;}
._2_c00164{width:32.194800px;}
._1_c00164{width:91.660536px;}
.fc0_c00164{color:transparent;}
.fs1_c00164{font-size:22.176000px;}
.fs12_c00164{font-size:22.374000px;}
.fs13_c00164{font-size:23.166000px;}
.fsd_c00164{font-size:28.908000px;}
.fsb_c00164{font-size:38.214000px;}
.fs8_c00164{font-size:45.144000px;}
.fs11_c00164{font-size:49.896198px;}
.fs7_c00164{font-size:50.094000px;}
.fs9_c00164{font-size:50.688000px;}
.fs5_c00164{font-size:58.449798px;}
.fsa_c00164{font-size:59.875398px;}
.fs10_c00164{font-size:68.112198px;}
.fs3_c00164{font-size:68.904000px;}
.fsf_c00164{font-size:74.448000px;}
.fs2_c00164{font-size:74.844000px;}
.fs4_c00164{font-size:76.824000px;}
.fs6_c00164{font-size:78.804000px;}
.fsc_c00164{font-size:79.002198px;}
.fs0_c00164{font-size:81.774000px;}
.fse_c00164{font-size:85.338000px;}
.y0_c00164{bottom:0.000000px;}
.y1f_c00164{bottom:40.897935px;}
.y1e_c00164{bottom:45.882585px;}
.y1b_c00164{bottom:56.218185px;}
.y1_c00164{bottom:76.500000px;}
.y1d_c00164{bottom:98.273385px;}
.y1c_c00164{bottom:108.613935px;}
.y1a_c00164{bottom:169.914735px;}
.y19_c00164{bottom:201.634335px;}
.y18_c00164{bottom:233.353935px;}
.y17_c00164{bottom:290.734335px;}
.y16_c00164{bottom:297.857385px;}
.y15_c00164{bottom:328.156335px;}
.y14_c00164{bottom:355.950585px;}
.y13_c00164{bottom:360.588735px;}
.y12_c00164{bottom:391.590585px;}
.y11_c00164{bottom:423.671535px;}
.y10_c00164{bottom:455.747535px;}
.yf_c00164{bottom:518.473935px;}
.ye_c00164{bottom:549.480735px;}
.yd_c00164{bottom:581.200335px;}
.yc_c00164{bottom:612.914985px;}
.yb_c00164{bottom:644.995935px;}
.ya_c00164{bottom:676.002735px;}
.y9_c00164{bottom:708.073785px;}
.y8_c00164{bottom:801.806985px;}
.y7_c00164{bottom:833.887935px;}
.y6_c00164{bottom:865.963935px;}
.y5_c00164{bottom:897.327135px;}
.y4_c00164{bottom:929.759535px;}
.y3_c00164{bottom:1017.428985px;}
.y2_c00164{bottom:1064.830185px;}
.h13_c00164{height:21.958857px;}
.h3_c00164{height:23.128875px;}
.h14_c00164{height:24.161414px;}
.he_c00164{height:30.150141px;}
.h7_c00164{height:38.927565px;}
.hc_c00164{height:39.856008px;}
.hb_c00164{height:39.877015px;}
.h12_c00164{height:52.040175px;}
.h9_c00164{height:52.246477px;}
.ha_c00164{height:52.866000px;}
.h11_c00164{height:71.038894px;}
.h5_c00164{height:71.864719px;}
.h10_c00164{height:73.066641px;}
.h4_c00164{height:73.455293px;}
.h6_c00164{height:75.398555px;}
.h8_c00164{height:77.341816px;}
.hd_c00164{height:77.536337px;}
.h2_c00164{height:80.256709px;}
.hf_c00164{height:83.712911px;}
.h1_c00164{height:1110.000000px;}
.h0_c00164{height:1263.000000px;}
.w1_c00164{width:775.500000px;}
.w0_c00164{width:892.500000px;}
.x0_c00164{left:0.000000px;}
.x1_c00164{left:58.500000px;}
.x43_c00164{left:88.329435px;}
.x1e_c00164{left:89.408535px;}
.x16_c00164{left:91.155885px;}
.x3_c00164{left:92.333985px;}
.xd_c00164{left:93.606135px;}
.x3c_c00164{left:112.742835px;}
.x54_c00164{left:122.499285px;}
.x4_c00164{left:124.865385px;}
.x38_c00164{left:133.225935px;}
.x2f_c00164{left:135.488085px;}
.x40_c00164{left:144.274335px;}
.x25_c00164{left:145.922685px;}
.x1f_c00164{left:157.970985px;}
.x4f_c00164{left:159.292635px;}
.x2b_c00164{left:167.979885px;}
.x46_c00164{left:177.280935px;}
.x56_c00164{left:179.018385px;}
.xe_c00164{left:180.379635px;}
.x49_c00164{left:200.154885px;}
.x55_c00164{left:202.164585px;}
.x17_c00164{left:212.544735px;}
.xf_c00164{left:222.340785px;}
.x34_c00164{left:223.380285px;}
.x4a_c00164{left:235.116735px;}
.x26_c00164{left:245.501835px;}
.x30_c00164{left:255.852285px;}
.x20_c00164{left:257.693685px;}
.x47_c00164{left:267.237285px;}
.x31_c00164{left:278.211435px;}
.x18_c00164{left:279.463785px;}
.x10_c00164{left:290.254785px;}
.x3d_c00164{left:300.070635px;}
.x5_c00164{left:301.882335px;}
.x19_c00164{left:311.430885px;}
.x35_c00164{left:313.400985px;}
.x57_c00164{left:322.830735px;}
.x48_c00164{left:324.132585px;}
.x11_c00164{left:334.403835px;}
.x44_c00164{left:335.423535px;}
.x3e_c00164{left:345.467085px;}
.x6_c00164{left:346.471935px;}
.x41_c00164{left:356.342235px;}
.x58_c00164{left:357.545085px;}
.x12_c00164{left:368.281635px;}
.x39_c00164{left:377.721285px;}
.x7_c00164{left:379.612185px;}
.x27_c00164{left:389.046885px;}
.x50_c00164{left:390.348735px;}
.x4c_c00164{left:400.867485px;}
.x2c_c00164{left:412.495035px;}
.x28_c00164{left:424.013685px;}
.x5c_c00164{left:429.364635px;}
.x3f_c00164{left:434.542335px;}
.x8_c00164{left:455.792685px;}
.x3a_c00164{left:457.035135px;}
.x2d_c00164{left:467.667735px;}
.x9_c00164{left:479.740785px;}
.x21_c00164{left:489.472485px;}
.x59_c00164{left:490.516935px;}
.x32_c00164{left:501.832635px;}
.x13_c00164{left:509.891235px;}
.xa_c00164{left:511.851435px;}
.x1a_c00164{left:522.612735px;}
.x22_c00164{left:533.626485px;}
.x4d_c00164{left:535.081785px;}
.x36_c00164{left:545.432235px;}
.x1b_c00164{left:556.064835px;}
.x23_c00164{left:567.830985px;}
.x51_c00164{left:588.551685px;}
.x1c_c00164{left:589.586235px;}
.x33_c00164{left:599.055585px;}
.xb_c00164{left:600.555435px;}
.x4e_c00164{left:610.950435px;}
.x2e_c00164{left:621.508785px;}
.x52_c00164{left:632.329485px;}
.x3b_c00164{left:644.357985px;}
.x5a_c00164{left:646.095435px;}
.x2_c00164{left:654.074835px;}
.x14_c00164{left:655.198485px;}
.x42_c00164{left:656.208285px;}
.x53_c00164{left:665.345985px;}
.x1d_c00164{left:667.246785px;}
.x29_c00164{left:678.344685px;}
.x45_c00164{left:687.432885px;}
.xc_c00164{left:689.284185px;}
.x15_c00164{left:699.525735px;}
.x4b_c00164{left:701.817585px;}
.x2a_c00164{left:709.955385px;}
.x24_c00164{left:712.380885px;}
.x37_c00164{left:722.058135px;}
.x5b_c00164{left:743.546085px;}
@media print{
.v0_c00164{vertical-align:0.000000pt;}
.ls3_c00164{letter-spacing:-2.544080pt;}
.lsf_c00164{letter-spacing:-0.268946pt;}
.ls2_c00164{letter-spacing:0.000000pt;}
.ls0_c00164{letter-spacing:0.755955pt;}
.ls7_c00164{letter-spacing:0.959482pt;}
.ls11_c00164{letter-spacing:1.698400pt;}
.ls15_c00164{letter-spacing:2.027995pt;}
.lsa_c00164{letter-spacing:2.158834pt;}
.lse_c00164{letter-spacing:2.226400pt;}
.ls6_c00164{letter-spacing:2.260051pt;}
.ls5_c00164{letter-spacing:2.573155pt;}
.ls4_c00164{letter-spacing:3.052896pt;}
.ls13_c00164{letter-spacing:3.074702pt;}
.ls16_c00164{letter-spacing:3.249154pt;}
.ls18_c00164{letter-spacing:3.308800pt;}
.ls8_c00164{letter-spacing:3.343648pt;}
.lsc_c00164{letter-spacing:3.430874pt;}
.lsb_c00164{letter-spacing:3.502400pt;}
.ls12_c00164{letter-spacing:3.511209pt;}
.ls14_c00164{letter-spacing:3.583518pt;}
.lsd_c00164{letter-spacing:3.590787pt;}
.ls1_c00164{letter-spacing:3.634400pt;}
.ls17_c00164{letter-spacing:3.792800pt;}
.ls9_c00164{letter-spacing:51.955376pt;}
.ls10_c00164{letter-spacing:53.222576pt;}
.ws0_c00164{word-spacing:0.000000pt;}
._3_c00164{width:1.606176pt;}
._0_c00164{width:12.487798pt;}
._2_c00164{width:28.617600pt;}
._1_c00164{width:81.476032pt;}
.fs1_c00164{font-size:19.712000pt;}
.fs12_c00164{font-size:19.888000pt;}
.fs13_c00164{font-size:20.592000pt;}
.fsd_c00164{font-size:25.696000pt;}
.fsb_c00164{font-size:33.968000pt;}
.fs8_c00164{font-size:40.128000pt;}
.fs11_c00164{font-size:44.352176pt;}
.fs7_c00164{font-size:44.528000pt;}
.fs9_c00164{font-size:45.056000pt;}
.fs5_c00164{font-size:51.955376pt;}
.fsa_c00164{font-size:53.222576pt;}
.fs10_c00164{font-size:60.544176pt;}
.fs3_c00164{font-size:61.248000pt;}
.fsf_c00164{font-size:66.176000pt;}
.fs2_c00164{font-size:66.528000pt;}
.fs4_c00164{font-size:68.288000pt;}
.fs6_c00164{font-size:70.048000pt;}
.fsc_c00164{font-size:70.224176pt;}
.fs0_c00164{font-size:72.688000pt;}
.fse_c00164{font-size:75.856000pt;}
.y0_c00164{bottom:0.000000pt;}
.y1f_c00164{bottom:36.353720pt;}
.y1e_c00164{bottom:40.784520pt;}
.y1b_c00164{bottom:49.971720pt;}
.y1_c00164{bottom:68.000000pt;}
.y1d_c00164{bottom:87.354120pt;}
.y1c_c00164{bottom:96.545720pt;}
.y1a_c00164{bottom:151.035320pt;}
.y19_c00164{bottom:179.230520pt;}
.y18_c00164{bottom:207.425720pt;}
.y17_c00164{bottom:258.430520pt;}
.y16_c00164{bottom:264.762120pt;}
.y15_c00164{bottom:291.694520pt;}
.y14_c00164{bottom:316.400520pt;}
.y13_c00164{bottom:320.523320pt;}
.y12_c00164{bottom:348.080520pt;}
.y11_c00164{bottom:376.596920pt;}
.y10_c00164{bottom:405.108920pt;}
.yf_c00164{bottom:460.865720pt;}
.ye_c00164{bottom:488.427320pt;}
.yd_c00164{bottom:516.622520pt;}
.yc_c00164{bottom:544.813320pt;}
.yb_c00164{bottom:573.329720pt;}
.ya_c00164{bottom:600.891320pt;}
.y9_c00164{bottom:629.398920pt;}
.y8_c00164{bottom:712.717320pt;}
.y7_c00164{bottom:741.233720pt;}
.y6_c00164{bottom:769.745720pt;}
.y5_c00164{bottom:797.624120pt;}
.y4_c00164{bottom:826.452920pt;}
.y3_c00164{bottom:904.381320pt;}
.y2_c00164{bottom:946.515720pt;}
.h13_c00164{height:19.518984pt;}
.h3_c00164{height:20.559000pt;}
.h14_c00164{height:21.476813pt;}
.he_c00164{height:26.800125pt;}
.h7_c00164{height:34.602280pt;}
.hc_c00164{height:35.427563pt;}
.hb_c00164{height:35.446236pt;}
.h12_c00164{height:46.257934pt;}
.h9_c00164{height:46.441313pt;}
.ha_c00164{height:46.992000pt;}
.h11_c00164{height:63.145684pt;}
.h5_c00164{height:63.879750pt;}
.h10_c00164{height:64.948125pt;}
.h4_c00164{height:65.293594pt;}
.h6_c00164{height:67.020938pt;}
.h8_c00164{height:68.748281pt;}
.hd_c00164{height:68.921188pt;}
.h2_c00164{height:71.339297pt;}
.hf_c00164{height:74.411477pt;}
.h1_c00164{height:986.666667pt;}
.h0_c00164{height:1122.666667pt;}
.w1_c00164{width:689.333333pt;}
.w0_c00164{width:793.333333pt;}
.x0_c00164{left:0.000000pt;}
.x1_c00164{left:52.000000pt;}
.x43_c00164{left:78.515053pt;}
.x1e_c00164{left:79.474253pt;}
.x16_c00164{left:81.027453pt;}
.x3_c00164{left:82.074653pt;}
.xd_c00164{left:83.205453pt;}
.x3c_c00164{left:100.215853pt;}
.x54_c00164{left:108.888253pt;}
.x4_c00164{left:110.991453pt;}
.x38_c00164{left:118.423053pt;}
.x2f_c00164{left:120.433853pt;}
.x40_c00164{left:128.243853pt;}
.x25_c00164{left:129.709053pt;}
.x1f_c00164{left:140.418653pt;}
.x4f_c00164{left:141.593453pt;}
.x2b_c00164{left:149.315453pt;}
.x46_c00164{left:157.583053pt;}
.x56_c00164{left:159.127453pt;}
.xe_c00164{left:160.337453pt;}
.x49_c00164{left:177.915453pt;}
.x55_c00164{left:179.701853pt;}
.x17_c00164{left:188.928653pt;}
.xf_c00164{left:197.636253pt;}
.x34_c00164{left:198.560253pt;}
.x4a_c00164{left:208.992653pt;}
.x26_c00164{left:218.223853pt;}
.x30_c00164{left:227.424253pt;}
.x20_c00164{left:229.061053pt;}
.x47_c00164{left:237.544253pt;}
.x31_c00164{left:247.299053pt;}
.x18_c00164{left:248.412253pt;}
.x10_c00164{left:258.004253pt;}
.x3d_c00164{left:266.729453pt;}
.x5_c00164{left:268.339853pt;}
.x19_c00164{left:276.827453pt;}
.x35_c00164{left:278.578653pt;}
.x57_c00164{left:286.960653pt;}
.x48_c00164{left:288.117853pt;}
.x11_c00164{left:297.247853pt;}
.x44_c00164{left:298.154253pt;}
.x3e_c00164{left:307.081853pt;}
.x6_c00164{left:307.975053pt;}
.x41_c00164{left:316.748653pt;}
.x58_c00164{left:317.817853pt;}
.x12_c00164{left:327.361453pt;}
.x39_c00164{left:335.752253pt;}
.x7_c00164{left:337.433053pt;}
.x27_c00164{left:345.819453pt;}
.x50_c00164{left:346.976653pt;}
.x4c_c00164{left:356.326653pt;}
.x2c_c00164{left:366.662253pt;}
.x28_c00164{left:376.901053pt;}
.x5c_c00164{left:381.657453pt;}
.x3f_c00164{left:386.259853pt;}
.x8_c00164{left:405.149053pt;}
.x3a_c00164{left:406.253453pt;}
.x2d_c00164{left:415.704653pt;}
.x9_c00164{left:426.436253pt;}
.x21_c00164{left:435.086653pt;}
.x59_c00164{left:436.015053pt;}
.x32_c00164{left:446.073453pt;}
.x13_c00164{left:453.236653pt;}
.xa_c00164{left:454.979053pt;}
.x1a_c00164{left:464.544653pt;}
.x22_c00164{left:474.334653pt;}
.x4d_c00164{left:475.628253pt;}
.x36_c00164{left:484.828653pt;}
.x1b_c00164{left:494.279853pt;}
.x23_c00164{left:504.738653pt;}
.x51_c00164{left:523.157053pt;}
.x1c_c00164{left:524.076653pt;}
.x33_c00164{left:532.493853pt;}
.xb_c00164{left:533.827053pt;}
.x4e_c00164{left:543.067053pt;}
.x2e_c00164{left:552.452253pt;}
.x52_c00164{left:562.070653pt;}
.x3b_c00164{left:572.762653pt;}
.x5a_c00164{left:574.307053pt;}
.x2_c00164{left:581.399853pt;}
.x14_c00164{left:582.398653pt;}
.x42_c00164{left:583.296253pt;}
.x53_c00164{left:591.418653pt;}
.x1d_c00164{left:593.108253pt;}
.x29_c00164{left:602.973053pt;}
.x45_c00164{left:611.051453pt;}
.xc_c00164{left:612.697053pt;}
.x15_c00164{left:621.800653pt;}
.x4b_c00164{left:623.837853pt;}
.x2a_c00164{left:631.071453pt;}
.x24_c00164{left:633.227453pt;}
.x37_c00164{left:641.829453pt;}
.x5b_c00164{left:660.929853pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b5a517d6763935341306ef0c.woff2')format("woff");}.ff1_c00165{font-family:ff1_c00165;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00165;src:url('chunks/assets/font_f85963f09f109a8179412a81.woff2')format("woff");}.ff2_c00165{font-family:ff2_c00165;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00165;src:url('chunks/assets/font_299ef31ddbe69a777cfe81a2.woff2')format("woff");}.ff3_c00165{font-family:ff3_c00165;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00165;src:url('chunks/assets/font_38878d7fa8ff0ecf3ff9e37f.woff2')format("woff");}.ff4_c00165{font-family:ff4_c00165;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m83_c00165{transform:matrix(0.062501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062501,0.000000,0.000000,0.250000,0,0);}
.m34_c00165{transform:matrix(0.130078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130078,0.000000,0.000000,0.250000,0,0);}
.ma1_c00165{transform:matrix(0.134900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134900,0.000000,0.000000,0.250000,0,0);}
.m24_c00165{transform:matrix(0.160001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160001,0.000000,0.000000,0.250000,0,0);}
.m53_c00165{transform:matrix(0.160254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160254,0.000000,0.000000,0.250000,0,0);}
.m87_c00165{transform:matrix(0.180987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180987,0.000000,0.000000,0.250000,0,0);}
.m70_c00165{transform:matrix(0.189188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189188,0.000000,0.000000,0.250000,0,0);}
.m6f_c00165{transform:matrix(0.192568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192568,0.000000,0.000000,0.250000,0,0);}
.m57_c00165{transform:matrix(0.199491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199491,0.000000,0.000000,0.250000,0,0);}
.m84_c00165{transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);}
.m8c_c00165{transform:matrix(0.212193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212193,0.000000,0.000000,0.250000,0,0);}
.m25_c00165{transform:matrix(0.220701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220701,0.000000,0.000000,0.250000,0,0);}
.mba_c00165{transform:matrix(0.224573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224573,0.000000,0.000000,0.250000,0,0);}
.mb_c00165{transform:matrix(0.235711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235711,0.000000,0.000000,0.250000,0,0);}
.m42_c00165{transform:matrix(0.237633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237633,0.000000,0.000000,0.250000,0,0);}
.m78_c00165{transform:matrix(0.240761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240761,0.000000,0.000000,0.250000,0,0);}
.m8f_c00165{transform:matrix(0.243758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243758,0.000000,0.000000,0.250000,0,0);}
.m0_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);}
.m8d_c00165{transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);}
.mb6_c00165{transform:matrix(0.250517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250517,0.000000,0.000000,0.250000,0,0);}
.m5a_c00165{transform:matrix(0.251466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251466,0.000000,0.000000,0.250000,0,0);}
.m97_c00165{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.m77_c00165{transform:matrix(0.255230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255230,0.000000,0.000000,0.250000,0,0);}
.mbe_c00165{transform:matrix(0.256424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256424,0.000000,0.000000,0.250000,0,0);}
.m1b_c00165{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.ma5_c00165{transform:matrix(0.261057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261057,0.000000,0.000000,0.250000,0,0);}
.m2e_c00165{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.m85_c00165{transform:matrix(0.261624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261624,0.000000,0.000000,0.250000,0,0);}
.m15_c00165{transform:matrix(0.261904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261904,0.000000,0.000000,0.250000,0,0);}
.m18_c00165{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m76_c00165{transform:matrix(0.263699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263699,0.000000,0.000000,0.250000,0,0);}
.m80_c00165{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m67_c00165{transform:matrix(0.265600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265600,0.000000,0.000000,0.250000,0,0);}
.ma9_c00165{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m75_c00165{transform:matrix(0.266567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266567,0.000000,0.000000,0.250000,0,0);}
.mf_c00165{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m7_c00165{transform:matrix(0.268132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268132,0.000000,0.000000,0.250000,0,0);}
.m47_c00165{transform:matrix(0.268441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268441,0.000000,0.000000,0.250000,0,0);}
.m8b_c00165{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.m88_c00165{transform:matrix(0.268694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268694,0.000000,0.000000,0.250000,0,0);}
.m54_c00165{transform:matrix(0.269984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269984,0.000000,0.000000,0.250000,0,0);}
.m5_c00165{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m59_c00165{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m40_c00165{transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);}
.m68_c00165{transform:matrix(0.272893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272893,0.000000,0.000000,0.250000,0,0);}
.m64_c00165{transform:matrix(0.274136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274136,0.000000,0.000000,0.250000,0,0);}
.m21_c00165{transform:matrix(0.274278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274278,0.000000,0.000000,0.250000,0,0);}
.m6b_c00165{transform:matrix(0.274295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274295,0.000000,0.000000,0.250000,0,0);}
.m7b_c00165{transform:matrix(0.275057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275057,0.000000,0.000000,0.250000,0,0);}
.m9e_c00165{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m61_c00165{transform:matrix(0.275788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275788,0.000000,0.000000,0.250000,0,0);}
.ma7_c00165{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m4b_c00165{transform:matrix(0.278536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278536,0.000000,0.000000,0.250000,0,0);}
.m41_c00165{transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);}
.m5d_c00165{transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);}
.m22_c00165{transform:matrix(0.280224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280224,0.000000,0.000000,0.250000,0,0);}
.m2b_c00165{transform:matrix(0.281160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281160,0.000000,0.000000,0.250000,0,0);}
.m28_c00165{transform:matrix(0.282018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282018,0.000000,0.000000,0.250000,0,0);}
.m63_c00165{transform:matrix(0.282543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282543,0.000000,0.000000,0.250000,0,0);}
.m92_c00165{transform:matrix(0.282615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282615,0.000000,0.000000,0.250000,0,0);}
.mbb_c00165{transform:matrix(0.282730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282730,0.000000,0.000000,0.250000,0,0);}
.m5f_c00165{transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);}
.m81_c00165{transform:matrix(0.282983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282983,0.000000,0.000000,0.250000,0,0);}
.m7c_c00165{transform:matrix(0.282991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282991,0.000000,0.000000,0.250000,0,0);}
.m1f_c00165{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m19_c00165{transform:matrix(0.283617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283617,0.000000,0.000000,0.250000,0,0);}
.mb3_c00165{transform:matrix(0.283827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283827,0.000000,0.000000,0.250000,0,0);}
.ma0_c00165{transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);}
.m44_c00165{transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);}
.m66_c00165{transform:matrix(0.286031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286031,0.000000,0.000000,0.250000,0,0);}
.m4e_c00165{transform:matrix(0.286659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286659,0.000000,0.000000,0.250000,0,0);}
.m98_c00165{transform:matrix(0.286698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286698,0.000000,0.000000,0.250000,0,0);}
.m45_c00165{transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);}
.m7d_c00165{transform:matrix(0.287066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287066,0.000000,0.000000,0.250000,0,0);}
.m38_c00165{transform:matrix(0.287119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287119,0.000000,0.000000,0.250000,0,0);}
.m9a_c00165{transform:matrix(0.287186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287186,0.000000,0.000000,0.250000,0,0);}
.m69_c00165{transform:matrix(0.287233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287233,0.000000,0.000000,0.250000,0,0);}
.m73_c00165{transform:matrix(0.287771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287771,0.000000,0.000000,0.250000,0,0);}
.m65_c00165{transform:matrix(0.288098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288098,0.000000,0.000000,0.250000,0,0);}
.mb8_c00165{transform:matrix(0.288213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288213,0.000000,0.000000,0.250000,0,0);}
.mbc_c00165{transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);}
.m91_c00165{transform:matrix(0.289100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289100,0.000000,0.000000,0.250000,0,0);}
.m86_c00165{transform:matrix(0.291185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291185,0.000000,0.000000,0.250000,0,0);}
.m2a_c00165{transform:matrix(0.292612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292612,0.000000,0.000000,0.250000,0,0);}
.m1_c00165{transform:matrix(0.294221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294221,0.000000,0.000000,0.250000,0,0);}
.m79_c00165{transform:matrix(0.294266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294266,0.000000,0.000000,0.250000,0,0);}
.m3_c00165{transform:matrix(0.295118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295118,0.000000,0.000000,0.250000,0,0);}
.m4f_c00165{transform:matrix(0.295385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295385,0.000000,0.000000,0.250000,0,0);}
.maf_c00165{transform:matrix(0.295700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295700,0.000000,0.000000,0.250000,0,0);}
.m37_c00165{transform:matrix(0.295800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295800,0.000000,0.000000,0.250000,0,0);}
.m60_c00165{transform:matrix(0.296603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296603,0.000000,0.000000,0.250000,0,0);}
.m48_c00165{transform:matrix(0.296657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296657,0.000000,0.000000,0.250000,0,0);}
.mc_c00165{transform:matrix(0.296797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296797,0.000000,0.000000,0.250000,0,0);}
.m9b_c00165{transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);}
.mbf_c00165{transform:matrix(0.297056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297056,0.000000,0.000000,0.250000,0,0);}
.m6a_c00165{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m10_c00165{transform:matrix(0.297115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297115,0.000000,0.000000,0.250000,0,0);}
.m93_c00165{transform:matrix(0.297216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297216,0.000000,0.000000,0.250000,0,0);}
.m56_c00165{transform:matrix(0.297534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297534,0.000000,0.000000,0.250000,0,0);}
.ma2_c00165{transform:matrix(0.298001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298001,0.000000,0.000000,0.250000,0,0);}
.ma8_c00165{transform:matrix(0.298605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298605,0.000000,0.000000,0.250000,0,0);}
.m46_c00165{transform:matrix(0.300360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300360,0.000000,0.000000,0.250000,0,0);}
.m9d_c00165{transform:matrix(0.300593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300593,0.000000,0.000000,0.250000,0,0);}
.m8e_c00165{transform:matrix(0.300715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300715,0.000000,0.000000,0.250000,0,0);}
.m7f_c00165{transform:matrix(0.300811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300811,0.000000,0.000000,0.250000,0,0);}
.m3a_c00165{transform:matrix(0.300817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300817,0.000000,0.000000,0.250000,0,0);}
.mbd_c00165{transform:matrix(0.300920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300920,0.000000,0.000000,0.250000,0,0);}
.m2d_c00165{transform:matrix(0.301096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301096,0.000000,0.000000,0.250000,0,0);}
.m1d_c00165{transform:matrix(0.301673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301673,0.000000,0.000000,0.250000,0,0);}
.ma4_c00165{transform:matrix(0.302040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302040,0.000000,0.000000,0.250000,0,0);}
.m30_c00165{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m1a_c00165{transform:matrix(0.302681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302681,0.000000,0.000000,0.250000,0,0);}
.ma_c00165{transform:matrix(0.303035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303035,0.000000,0.000000,0.250000,0,0);}
.m4c_c00165{transform:matrix(0.303304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303304,0.000000,0.000000,0.250000,0,0);}
.m3c_c00165{transform:matrix(0.303884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303884,0.000000,0.000000,0.250000,0,0);}
.m29_c00165{transform:matrix(0.304169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304169,0.000000,0.000000,0.250000,0,0);}
.m3b_c00165{transform:matrix(0.304523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304523,0.000000,0.000000,0.250000,0,0);}
.mb2_c00165{transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);}
.m3d_c00165{transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);}
.m9c_c00165{transform:matrix(0.305754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305754,0.000000,0.000000,0.250000,0,0);}
.m43_c00165{transform:matrix(0.306533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306533,0.000000,0.000000,0.250000,0,0);}
.m9f_c00165{transform:matrix(0.306855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306855,0.000000,0.000000,0.250000,0,0);}
.m14_c00165{transform:matrix(0.307760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307760,0.000000,0.000000,0.250000,0,0);}
.m26_c00165{transform:matrix(0.307853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307853,0.000000,0.000000,0.250000,0,0);}
.m72_c00165{transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);}
.m52_c00165{transform:matrix(0.309625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309625,0.000000,0.000000,0.250000,0,0);}
.m3f_c00165{transform:matrix(0.310079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310079,0.000000,0.000000,0.250000,0,0);}
.m51_c00165{transform:matrix(0.310102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310102,0.000000,0.000000,0.250000,0,0);}
.mb0_c00165{transform:matrix(0.310188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310188,0.000000,0.000000,0.250000,0,0);}
.m32_c00165{transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);}
.m7e_c00165{transform:matrix(0.311125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311125,0.000000,0.000000,0.250000,0,0);}
.m94_c00165{transform:matrix(0.312747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312747,0.000000,0.000000,0.250000,0,0);}
.m71_c00165{transform:matrix(0.313206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313206,0.000000,0.000000,0.250000,0,0);}
.m6c_c00165{transform:matrix(0.313415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313415,0.000000,0.000000,0.250000,0,0);}
.m2f_c00165{transform:matrix(0.313499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313499,0.000000,0.000000,0.250000,0,0);}
.m6d_c00165{transform:matrix(0.313843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313843,0.000000,0.000000,0.250000,0,0);}
.m5b_c00165{transform:matrix(0.314710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314710,0.000000,0.000000,0.250000,0,0);}
.m1c_c00165{transform:matrix(0.315202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315202,0.000000,0.000000,0.250000,0,0);}
.m6_c00165{transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);}
.mb7_c00165{transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);}
.m5e_c00165{transform:matrix(0.316622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316622,0.000000,0.000000,0.250000,0,0);}
.m8_c00165{transform:matrix(0.319694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319694,0.000000,0.000000,0.250000,0,0);}
.m35_c00165{transform:matrix(0.319696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319696,0.000000,0.000000,0.250000,0,0);}
.m82_c00165{transform:matrix(0.320818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320818,0.000000,0.000000,0.250000,0,0);}
.mc0_c00165{transform:matrix(0.321032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321032,0.000000,0.000000,0.250000,0,0);}
.mb4_c00165{transform:matrix(0.321128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321128,0.000000,0.000000,0.250000,0,0);}
.m13_c00165{transform:matrix(0.321643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321643,0.000000,0.000000,0.250000,0,0);}
.ma6_c00165{transform:matrix(0.322251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322251,0.000000,0.000000,0.250000,0,0);}
.m7a_c00165{transform:matrix(0.322301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322301,0.000000,0.000000,0.250000,0,0);}
.mab_c00165{transform:matrix(0.323122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323122,0.000000,0.000000,0.250000,0,0);}
.m74_c00165{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.m31_c00165{transform:matrix(0.324151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324151,0.000000,0.000000,0.250000,0,0);}
.mb5_c00165{transform:matrix(0.326379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326379,0.000000,0.000000,0.250000,0,0);}
.maa_c00165{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m49_c00165{transform:matrix(0.327297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327297,0.000000,0.000000,0.250000,0,0);}
.m6e_c00165{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.m4d_c00165{transform:matrix(0.328681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328681,0.000000,0.000000,0.250000,0,0);}
.m96_c00165{transform:matrix(0.329080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329080,0.000000,0.000000,0.250000,0,0);}
.m58_c00165{transform:matrix(0.329081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329081,0.000000,0.000000,0.250000,0,0);}
.mae_c00165{transform:matrix(0.329886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329886,0.000000,0.000000,0.250000,0,0);}
.m3e_c00165{transform:matrix(0.330718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330718,0.000000,0.000000,0.250000,0,0);}
.m2c_c00165{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m5c_c00165{transform:matrix(0.333376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333376,0.000000,0.000000,0.250000,0,0);}
.m55_c00165{transform:matrix(0.333654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333654,0.000000,0.000000,0.250000,0,0);}
.m17_c00165{transform:matrix(0.334658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334658,0.000000,0.000000,0.250000,0,0);}
.mb9_c00165{transform:matrix(0.336314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336314,0.000000,0.000000,0.250000,0,0);}
.m1e_c00165{transform:matrix(0.336348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336348,0.000000,0.000000,0.250000,0,0);}
.m4_c00165{transform:matrix(0.338203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338203,0.000000,0.000000,0.250000,0,0);}
.m23_c00165{transform:matrix(0.339074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339074,0.000000,0.000000,0.250000,0,0);}
.m33_c00165{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m12_c00165{transform:matrix(0.339945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339945,0.000000,0.000000,0.250000,0,0);}
.mb1_c00165{transform:matrix(0.340207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340207,0.000000,0.000000,0.250000,0,0);}
.me_c00165{transform:matrix(0.341375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341375,0.000000,0.000000,0.250000,0,0);}
.m90_c00165{transform:matrix(0.343279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343279,0.000000,0.000000,0.250000,0,0);}
.m9_c00165{transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);}
.mad_c00165{transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);}
.m2_c00165{transform:matrix(0.354296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354296,0.000000,0.000000,0.250000,0,0);}
.ma3_c00165{transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);}
.md_c00165{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m89_c00165{transform:matrix(0.358126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358126,0.000000,0.000000,0.250000,0,0);}
.m16_c00165{transform:matrix(0.360514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360514,0.000000,0.000000,0.250000,0,0);}
.m36_c00165{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m95_c00165{transform:matrix(0.362902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362902,0.000000,0.000000,0.250000,0,0);}
.m39_c00165{transform:matrix(0.363556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363556,0.000000,0.000000,0.250000,0,0);}
.m8a_c00165{transform:matrix(0.366396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366396,0.000000,0.000000,0.250000,0,0);}
.m62_c00165{transform:matrix(0.366424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366424,0.000000,0.000000,0.250000,0,0);}
.m4a_c00165{transform:matrix(0.374563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374563,0.000000,0.000000,0.250000,0,0);}
.m11_c00165{transform:matrix(0.374714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374714,0.000000,0.000000,0.250000,0,0);}
.m50_c00165{transform:matrix(0.386584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386584,0.000000,0.000000,0.250000,0,0);}
.m20_c00165{transform:matrix(0.402409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402409,0.000000,0.000000,0.250000,0,0);}
.mac_c00165{transform:matrix(0.407328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407328,0.000000,0.000000,0.250000,0,0);}
.m99_c00165{transform:matrix(0.414699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414699,0.000000,0.000000,0.250000,0,0);}
.m27_c00165{transform:matrix(0.421610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421610,0.000000,0.000000,0.250000,0,0);}
.v0_c00165{vertical-align:0.000000px;}
.v1_c00165{vertical-align:5.702400px;}
.lsa_c00165{letter-spacing:-2.744280px;}
.ls6_c00165{letter-spacing:-2.203740px;}
.ls15_c00165{letter-spacing:-1.897474px;}
.ls10_c00165{letter-spacing:-1.677931px;}
.lsf_c00165{letter-spacing:-1.058508px;}
.lsb_c00165{letter-spacing:-0.299376px;}
.ls3_c00165{letter-spacing:0.000000px;}
.lsc_c00165{letter-spacing:0.462607px;}
.ls2_c00165{letter-spacing:0.619423px;}
.ls11_c00165{letter-spacing:1.712700px;}
.ls0_c00165{letter-spacing:1.828510px;}
.ls8_c00165{letter-spacing:2.509056px;}
.ls7_c00165{letter-spacing:3.148200px;}
.ls12_c00165{letter-spacing:3.385810px;}
.lse_c00165{letter-spacing:3.653110px;}
.ls17_c00165{letter-spacing:3.653813px;}
.ls18_c00165{letter-spacing:3.661654px;}
.lsd_c00165{letter-spacing:3.732310px;}
.ls4_c00165{letter-spacing:3.771900px;}
.ls5_c00165{letter-spacing:3.920400px;}
.ls1_c00165{letter-spacing:4.390848px;}
.ls14_c00165{letter-spacing:4.494610px;}
.ls9_c00165{letter-spacing:35.640000px;}
.ls16_c00165{letter-spacing:51.321798px;}
.ls13_c00165{letter-spacing:52.747398px;}
.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:-23.255813px;}
.ws0_c00165{word-spacing:-19.602000px;}
.ws1_c00165{word-spacing:-17.924069px;}
.ws4_c00165{word-spacing:0.000000px;}
.ws3_c00165{word-spacing:1.254528px;}
._d_c00165{margin-left:-11.133936px;}
._5_c00165{margin-left:-2.665872px;}
._3_c00165{width:3.214728px;}
._11_c00165{width:4.312440px;}
._8_c00165{width:5.410152px;}
._1_c00165{width:7.135128px;}
._9_c00165{width:9.173736px;}
._e_c00165{width:10.506672px;}
._12_c00165{width:20.934936px;}
._a_c00165{width:22.267872px;}
._0_c00165{width:23.679216px;}
._f_c00165{width:26.925307px;}
._4_c00165{width:29.951856px;}
._6_c00165{width:32.304096px;}
._2_c00165{width:34.342308px;}
._c_c00165{width:36.459720px;}
._10_c00165{width:39.125592px;}
._b_c00165{width:41.045400px;}
._7_c00165{width:119.836618px;}
.fc0_c00165{color:transparent;}
.fs4_c00165{font-size:21.186000px;}
.fs17_c00165{font-size:22.176000px;}
.fs10_c00165{font-size:22.374000px;}
.fs0_c00165{font-size:27.720000px;}
.fs1a_c00165{font-size:28.908000px;}
.fsb_c00165{font-size:29.106000px;}
.fsf_c00165{font-size:34.254000px;}
.fs6_c00165{font-size:35.640000px;}
.fs19_c00165{font-size:39.204000px;}
.fs15_c00165{font-size:39.600000px;}
.fs8_c00165{font-size:42.768000px;}
.fs16_c00165{font-size:45.144000px;}
.fs14_c00165{font-size:51.321798px;}
.fs12_c00165{font-size:52.747398px;}
.fs3_c00165{font-size:62.964000px;}
.fs5_c00165{font-size:64.548000px;}
.fsa_c00165{font-size:65.538000px;}
.fs11_c00165{font-size:67.716198px;}
.fse_c00165{font-size:70.884000px;}
.fsd_c00165{font-size:73.062198px;}
.fsc_c00165{font-size:74.646198px;}
.fs18_c00165{font-size:74.844000px;}
.fs1_c00165{font-size:75.438000px;}
.fs9_c00165{font-size:77.616198px;}
.fs2_c00165{font-size:78.408000px;}
.fs7_c00165{font-size:87.912198px;}
.fs13_c00165{font-size:89.892198px;}
.y0_c00165{bottom:0.000000px;}
.y2a_c00165{bottom:1.693737px;}
.y2e_c00165{bottom:20.583135px;}
.y1_c00165{bottom:76.500000px;}
.y29_c00165{bottom:102.550185px;}
.y2d_c00165{bottom:120.726585px;}
.y2c_c00165{bottom:141.046335px;}
.y2b_c00165{bottom:146.743785px;}
.y28_c00165{bottom:178.824735px;}
.y27_c00165{bottom:211.608585px;}
.y26_c00165{bottom:244.753785px;}
.y25_c00165{bottom:277.186185px;}
.y24_c00165{bottom:309.618585px;}
.y23_c00165{bottom:344.907135px;}
.y20_c00165{bottom:374.131935px;}
.y22_c00165{bottom:374.844735px;}
.y21_c00165{bottom:380.547135px;}
.y1f_c00165{bottom:386.244585px;}
.y1e_c00165{bottom:406.207935px;}
.y1d_c00165{bottom:438.278985px;}
.y1c_c00165{bottom:470.354985px;}
.y1b_c00165{bottom:502.787385px;}
.y1a_c00165{bottom:536.650335px;}
.y19_c00165{bottom:568.364985px;}
.y18_c00165{bottom:601.871535px;}
.y16_c00165{bottom:627.527385px;}
.y15_c00165{bottom:632.878335px;}
.y17_c00165{bottom:633.234735px;}
.y14_c00165{bottom:665.310735px;}
.y13_c00165{bottom:693.104985px;}
.y12_c00165{bottom:697.381785px;}
.y11_c00165{bottom:720.191385px;}
.y10_c00165{bottom:729.462735px;}
.yf_c00165{bottom:761.533785px;}
.ye_c00165{bottom:792.189135px;}
.yd_c00165{bottom:793.614735px;}
.y9_c00165{bottom:825.690735px;}
.yc_c00165{bottom:826.047135px;}
.yb_c00165{bottom:848.851785px;}
.y8_c00165{bottom:858.118185px;}
.ya_c00165{bottom:858.479535px;}
.y2_c00165{bottom:863.112735px;}
.y5_c00165{bottom:891.624735px;}
.y7_c00165{bottom:891.976185px;}
.y6_c00165{bottom:904.093785px;}
.y4_c00165{bottom:924.408585px;}
.y3_c00165{bottom:1076.947785px;}
.h11_c00165{height:21.958857px;}
.h6_c00165{height:22.096336px;}
.h18_c00165{height:23.128875px;}
.h8_c00165{height:23.736240px;}
.hd_c00165{height:28.565947px;}
.h2_c00165{height:28.911094px;}
.h1b_c00165{height:30.150141px;}
.h15_c00165{height:34.180317px;}
.h10_c00165{height:34.521609px;}
.h13_c00165{height:35.129767px;}
.h1a_c00165{height:38.476582px;}
.h16_c00165{height:41.301563px;}
.h17_c00165{height:47.083781px;}
.h5_c00165{height:61.795723px;}
.hb_c00165{height:64.321963px;}
.h7_c00165{height:67.321547px;}
.h12_c00165{height:68.245231px;}
.hf_c00165{height:69.568770px;}
.he_c00165{height:71.706552px;}
.h19_c00165{height:73.455293px;}
.h3_c00165{height:74.038271px;}
.hc_c00165{height:75.229371px;}
.ha_c00165{height:76.176054px;}
.h4_c00165{height:76.953164px;}
.h14_c00165{height:88.224276px;}
.h9_c00165{height:91.689675px;}
.h1_c00165{height:1110.000000px;}
.h0_c00165{height:1263.000000px;}
.w1_c00165{width:733.500000px;}
.w0_c00165{width:892.500000px;}
.x0_c00165{left:0.000000px;}
.x2_c00165{left:47.306685px;}
.x59_c00165{left:77.427435px;}
.x4_c00165{left:78.442185px;}
.x1_c00165{left:79.500000px;}
.x41_c00165{left:81.431985px;}
.xe_c00165{left:90.228135px;}
.xf_c00165{left:98.162985px;}
.x5d_c00165{left:99.954885px;}
.x3a_c00165{left:101.321085px;}
.x5e_c00165{left:110.458785px;}
.x35_c00165{left:111.953685px;}
.x1b_c00165{left:113.131785px;}
.x5_c00165{left:122.284335px;}
.x3b_c00165{left:124.798935px;}
.x2e_c00165{left:133.976235px;}
.x20_c00165{left:143.638635px;}
.x67_c00165{left:144.861285px;}
.x62_c00165{left:145.890885px;}
.x10_c00165{left:154.642485px;}
.x36_c00165{left:155.865135px;}
.x1c_c00165{left:157.325385px;}
.x54_c00165{left:166.601685px;}
.x6e_c00165{left:167.957985px;}
.x68_c00165{left:170.096385px;}
.x42_c00165{left:173.402985px;}
.x55_c00165{left:176.739285px;}
.x1d_c00165{left:178.323285px;}
.x3c_c00165{left:187.832235px;}
.x2f_c00165{left:190.460685px;}
.x48_c00165{left:195.178035px;}
.x4c_c00165{left:199.746885px;}
.x21_c00165{left:200.880435px;}
.x4d_c00165{left:209.572635px;}
.x63_c00165{left:211.156635px;}
.x30_c00165{left:222.922785px;}
.x43_c00165{left:224.477085px;}
.x1e_c00165{left:233.179185px;}
.x44_c00165{left:245.474985px;}
.x11_c00165{left:255.701685px;}
.x64_c00165{left:256.706535px;}
.x3d_c00165{left:258.889485px;}
.x1f_c00165{left:266.883735px;}
.x6a_c00165{left:268.106385px;}
.x3e_c00165{left:270.403185px;}
.x56_c00165{left:276.486735px;}
.x22_c00165{left:278.159835px;}
.x12_c00165{left:289.594335px;}
.x6_c00165{left:300.583335px;}
.x31_c00165{left:311.517885px;}
.x13_c00165{left:322.224735px;}
.x28_c00165{left:333.421635px;}
.x4e_c00165{left:342.866235px;}
.x26_c00165{left:344.296785px;}
.x6f_c00165{left:351.697827px;}
.x29_c00165{left:355.008585px;}
.x65_c00165{left:356.176785px;}
.x5a_c00165{left:366.547035px;}
.x23_c00165{left:377.813235px;}
.x15_c00165{left:388.460685px;}
.x7_c00165{left:389.683335px;}
.x14_c00165{left:398.682435px;}
.x49_c00165{left:400.043685px;}
.x16_c00165{left:411.245535px;}
.x6b_c00165{left:422.140485px;}
.x8_c00165{left:423.145335px;}
.x17_c00165{left:433.188885px;}
.x66_c00165{left:443.108685px;}
.x18_c00165{left:444.370935px;}
.x6c_c00165{left:454.751085px;}
.x45_c00165{left:456.344985px;}
.x5b_c00165{left:466.675635px;}
.x5f_c00165{left:476.516235px;}
.x9_c00165{left:478.090335px;}
.x57_c00165{left:488.435835px;}
.x37_c00165{left:489.604035px;}
.x19_c00165{left:499.400085px;}
.x2a_c00165{left:502.300785px;}
.x24_c00165{left:510.864285px;}
.x46_c00165{left:511.903785px;}
.x4f_c00165{left:513.680835px;}
.x50_c00165{left:520.591035px;}
.x2b_c00165{left:521.902785px;}
.x32_c00165{left:522.932385px;}
.x40_c00165{left:525.595485px;}
.xa_c00165{left:532.500735px;}
.x4a_c00165{left:533.970885px;}
.xb_c00165{left:543.455085px;}
.x1a_c00165{left:555.077685px;}
.x38_c00165{left:566.140935px;}
.xc_c00165{left:576.738885px;}
.x47_c00165{left:577.887285px;}
.x2c_c00165{left:579.951435px;}
.x69_c00165{left:586.643835px;}
.x4b_c00165{left:588.386235px;}
.x33_c00165{left:599.271285px;}
.x51_c00165{left:607.240785px;}
.xd_c00165{left:610.631535px;}
.x60_c00165{left:620.585985px;}
.x25_c00165{left:621.689835px;}
.x61_c00165{left:632.386785px;}
.x2d_c00165{left:643.207485px;}
.x3_c00165{left:654.453885px;}
.x27_c00165{left:664.106385px;}
.x3f_c00165{left:665.373585px;}
.x39_c00165{left:677.100135px;}
.x6d_c00165{left:686.391285px;}
.x34_c00165{left:688.742535px;}
.x70_c00165{left:694.172685px;}
.x53_c00165{left:695.261685px;}
.x5c_c00165{left:699.632535px;}
.x58_c00165{left:710.324535px;}
.x52_c00165{left:723.565785px;}
@media print{
.v0_c00165{vertical-align:0.000000pt;}
.v1_c00165{vertical-align:5.068800pt;}
.lsa_c00165{letter-spacing:-2.439360pt;}
.ls6_c00165{letter-spacing:-1.958880pt;}
.ls15_c00165{letter-spacing:-1.686643pt;}
.ls10_c00165{letter-spacing:-1.491494pt;}
.lsf_c00165{letter-spacing:-0.940896pt;}
.lsb_c00165{letter-spacing:-0.266112pt;}
.ls3_c00165{letter-spacing:0.000000pt;}
.lsc_c00165{letter-spacing:0.411206pt;}
.ls2_c00165{letter-spacing:0.550598pt;}
.ls11_c00165{letter-spacing:1.522400pt;}
.ls0_c00165{letter-spacing:1.625342pt;}
.ls8_c00165{letter-spacing:2.230272pt;}
.ls7_c00165{letter-spacing:2.798400pt;}
.ls12_c00165{letter-spacing:3.009609pt;}
.lse_c00165{letter-spacing:3.247209pt;}
.ls17_c00165{letter-spacing:3.247834pt;}
.ls18_c00165{letter-spacing:3.254803pt;}
.lsd_c00165{letter-spacing:3.317609pt;}
.ls4_c00165{letter-spacing:3.352800pt;}
.ls5_c00165{letter-spacing:3.484800pt;}
.ls1_c00165{letter-spacing:3.902976pt;}
.ls14_c00165{letter-spacing:3.995209pt;}
.ls9_c00165{letter-spacing:31.680000pt;}
.ls16_c00165{letter-spacing:45.619376pt;}
.ls13_c00165{letter-spacing:46.886576pt;}
.ws2_c00165{word-spacing:-20.671834pt;}
.ws0_c00165{word-spacing:-17.424000pt;}
.ws1_c00165{word-spacing:-15.932506pt;}
.ws4_c00165{word-spacing:0.000000pt;}
.ws3_c00165{word-spacing:1.115136pt;}
._d_c00165{margin-left:-9.896832pt;}
._5_c00165{margin-left:-2.369664pt;}
._3_c00165{width:2.857536pt;}
._11_c00165{width:3.833280pt;}
._8_c00165{width:4.809024pt;}
._1_c00165{width:6.342336pt;}
._9_c00165{width:8.154432pt;}
._e_c00165{width:9.339264pt;}
._12_c00165{width:18.608832pt;}
._a_c00165{width:19.793664pt;}
._0_c00165{width:21.048192pt;}
._f_c00165{width:23.933606pt;}
._4_c00165{width:26.623872pt;}
._6_c00165{width:28.714752pt;}
._2_c00165{width:30.526496pt;}
._c_c00165{width:32.408640pt;}
._10_c00165{width:34.778304pt;}
._b_c00165{width:36.484800pt;}
._7_c00165{width:106.521438pt;}
.fs4_c00165{font-size:18.832000pt;}
.fs17_c00165{font-size:19.712000pt;}
.fs10_c00165{font-size:19.888000pt;}
.fs0_c00165{font-size:24.640000pt;}
.fs1a_c00165{font-size:25.696000pt;}
.fsb_c00165{font-size:25.872000pt;}
.fsf_c00165{font-size:30.448000pt;}
.fs6_c00165{font-size:31.680000pt;}
.fs19_c00165{font-size:34.848000pt;}
.fs15_c00165{font-size:35.200000pt;}
.fs8_c00165{font-size:38.016000pt;}
.fs16_c00165{font-size:40.128000pt;}
.fs14_c00165{font-size:45.619376pt;}
.fs12_c00165{font-size:46.886576pt;}
.fs3_c00165{font-size:55.968000pt;}
.fs5_c00165{font-size:57.376000pt;}
.fsa_c00165{font-size:58.256000pt;}
.fs11_c00165{font-size:60.192176pt;}
.fse_c00165{font-size:63.008000pt;}
.fsd_c00165{font-size:64.944176pt;}
.fsc_c00165{font-size:66.352176pt;}
.fs18_c00165{font-size:66.528000pt;}
.fs1_c00165{font-size:67.056000pt;}
.fs9_c00165{font-size:68.992176pt;}
.fs2_c00165{font-size:69.696000pt;}
.fs7_c00165{font-size:78.144176pt;}
.fs13_c00165{font-size:79.904176pt;}
.y0_c00165{bottom:0.000000pt;}
.y2a_c00165{bottom:1.505544pt;}
.y2e_c00165{bottom:18.296120pt;}
.y1_c00165{bottom:68.000000pt;}
.y29_c00165{bottom:91.155720pt;}
.y2d_c00165{bottom:107.312520pt;}
.y2c_c00165{bottom:125.374520pt;}
.y2b_c00165{bottom:130.438920pt;}
.y28_c00165{bottom:158.955320pt;}
.y27_c00165{bottom:188.096520pt;}
.y26_c00165{bottom:217.558920pt;}
.y25_c00165{bottom:246.387720pt;}
.y24_c00165{bottom:275.216520pt;}
.y23_c00165{bottom:306.584120pt;}
.y20_c00165{bottom:332.561720pt;}
.y22_c00165{bottom:333.195320pt;}
.y21_c00165{bottom:338.264120pt;}
.y1f_c00165{bottom:343.328520pt;}
.y1e_c00165{bottom:361.073720pt;}
.y1d_c00165{bottom:389.581320pt;}
.y1c_c00165{bottom:418.093320pt;}
.y1b_c00165{bottom:446.922120pt;}
.y1a_c00165{bottom:477.022520pt;}
.y19_c00165{bottom:505.213320pt;}
.y18_c00165{bottom:534.996920pt;}
.y16_c00165{bottom:557.802120pt;}
.y15_c00165{bottom:562.558520pt;}
.y17_c00165{bottom:562.875320pt;}
.y14_c00165{bottom:591.387320pt;}
.y13_c00165{bottom:616.093320pt;}
.y12_c00165{bottom:619.894920pt;}
.y11_c00165{bottom:640.170120pt;}
.y10_c00165{bottom:648.411320pt;}
.yf_c00165{bottom:676.918920pt;}
.ye_c00165{bottom:704.168120pt;}
.yd_c00165{bottom:705.435320pt;}
.y9_c00165{bottom:733.947320pt;}
.yc_c00165{bottom:734.264120pt;}
.yb_c00165{bottom:754.534920pt;}
.y8_c00165{bottom:762.771720pt;}
.ya_c00165{bottom:763.092920pt;}
.y2_c00165{bottom:767.211320pt;}
.y5_c00165{bottom:792.555320pt;}
.y7_c00165{bottom:792.867720pt;}
.y6_c00165{bottom:803.638920pt;}
.y4_c00165{bottom:821.696520pt;}
.y3_c00165{bottom:957.286920pt;}
.h11_c00165{height:19.518984pt;}
.h6_c00165{height:19.641188pt;}
.h18_c00165{height:20.559000pt;}
.h8_c00165{height:21.098880pt;}
.hd_c00165{height:25.391953pt;}
.h2_c00165{height:25.698750pt;}
.h1b_c00165{height:26.800125pt;}
.h15_c00165{height:30.382504pt;}
.h10_c00165{height:30.685875pt;}
.h13_c00165{height:31.226460pt;}
.h1a_c00165{height:34.201406pt;}
.h16_c00165{height:36.712500pt;}
.h17_c00165{height:41.852250pt;}
.h5_c00165{height:54.929531pt;}
.hb_c00165{height:57.175078pt;}
.h7_c00165{height:59.841375pt;}
.h12_c00165{height:60.662427pt;}
.hf_c00165{height:61.838906pt;}
.he_c00165{height:63.739157pt;}
.h19_c00165{height:65.293594pt;}
.h3_c00165{height:65.811797pt;}
.hc_c00165{height:66.870552pt;}
.ha_c00165{height:67.712048pt;}
.h4_c00165{height:68.402813pt;}
.h14_c00165{height:78.421579pt;}
.h9_c00165{height:81.501934pt;}
.h1_c00165{height:986.666667pt;}
.h0_c00165{height:1122.666667pt;}
.w1_c00165{width:652.000000pt;}
.w0_c00165{width:793.333333pt;}
.x0_c00165{left:0.000000pt;}
.x2_c00165{left:42.050387pt;}
.x59_c00165{left:68.824387pt;}
.x4_c00165{left:69.726387pt;}
.x1_c00165{left:70.666667pt;}
.x41_c00165{left:72.383987pt;}
.xe_c00165{left:80.202787pt;}
.xf_c00165{left:87.255987pt;}
.x5d_c00165{left:88.848787pt;}
.x3a_c00165{left:90.063187pt;}
.x5e_c00165{left:98.185587pt;}
.x35_c00165{left:99.514387pt;}
.x1b_c00165{left:100.561587pt;}
.x5_c00165{left:108.697187pt;}
.x3b_c00165{left:110.932387pt;}
.x2e_c00165{left:119.089987pt;}
.x20_c00165{left:127.678787pt;}
.x67_c00165{left:128.765587pt;}
.x62_c00165{left:129.680787pt;}
.x10_c00165{left:137.459987pt;}
.x36_c00165{left:138.546787pt;}
.x1c_c00165{left:139.844787pt;}
.x54_c00165{left:148.090387pt;}
.x6e_c00165{left:149.295987pt;}
.x68_c00165{left:151.196787pt;}
.x42_c00165{left:154.135987pt;}
.x55_c00165{left:157.101587pt;}
.x1d_c00165{left:158.509587pt;}
.x3c_c00165{left:166.961987pt;}
.x2f_c00165{left:169.298387pt;}
.x48_c00165{left:173.491587pt;}
.x4c_c00165{left:177.552787pt;}
.x21_c00165{left:178.560387pt;}
.x4d_c00165{left:186.286787pt;}
.x63_c00165{left:187.694787pt;}
.x30_c00165{left:198.153587pt;}
.x43_c00165{left:199.535187pt;}
.x1e_c00165{left:207.270387pt;}
.x44_c00165{left:218.199987pt;}
.x11_c00165{left:227.290387pt;}
.x64_c00165{left:228.183587pt;}
.x3d_c00165{left:230.123987pt;}
.x1f_c00165{left:237.229987pt;}
.x6a_c00165{left:238.316787pt;}
.x3e_c00165{left:240.358387pt;}
.x56_c00165{left:245.765987pt;}
.x22_c00165{left:247.253187pt;}
.x12_c00165{left:257.417187pt;}
.x6_c00165{left:267.185187pt;}
.x31_c00165{left:276.904787pt;}
.x13_c00165{left:286.421987pt;}
.x28_c00165{left:296.374787pt;}
.x4e_c00165{left:304.769987pt;}
.x26_c00165{left:306.041587pt;}
.x6f_c00165{left:312.620291pt;}
.x29_c00165{left:315.563187pt;}
.x65_c00165{left:316.601587pt;}
.x5a_c00165{left:325.819587pt;}
.x23_c00165{left:335.833987pt;}
.x15_c00165{left:345.298387pt;}
.x7_c00165{left:346.385187pt;}
.x14_c00165{left:354.384387pt;}
.x49_c00165{left:355.594387pt;}
.x16_c00165{left:365.551587pt;}
.x6b_c00165{left:375.235987pt;}
.x8_c00165{left:376.129187pt;}
.x17_c00165{left:385.056787pt;}
.x66_c00165{left:393.874387pt;}
.x18_c00165{left:394.996387pt;}
.x6c_c00165{left:404.223187pt;}
.x45_c00165{left:405.639987pt;}
.x5b_c00165{left:414.822787pt;}
.x5f_c00165{left:423.569987pt;}
.x9_c00165{left:424.969187pt;}
.x57_c00165{left:434.165187pt;}
.x37_c00165{left:435.203587pt;}
.x19_c00165{left:443.911187pt;}
.x2a_c00165{left:446.489587pt;}
.x24_c00165{left:454.101587pt;}
.x46_c00165{left:455.025587pt;}
.x4f_c00165{left:456.605187pt;}
.x50_c00165{left:462.747587pt;}
.x2b_c00165{left:463.913587pt;}
.x32_c00165{left:464.828787pt;}
.x40_c00165{left:467.195987pt;}
.xa_c00165{left:473.333987pt;}
.x4a_c00165{left:474.640787pt;}
.xb_c00165{left:483.071187pt;}
.x1a_c00165{left:493.402387pt;}
.x38_c00165{left:503.236387pt;}
.xc_c00165{left:512.656787pt;}
.x47_c00165{left:513.677587pt;}
.x2c_c00165{left:515.512387pt;}
.x69_c00165{left:521.461187pt;}
.x4b_c00165{left:523.009987pt;}
.x33_c00165{left:532.685587pt;}
.x51_c00165{left:539.769587pt;}
.xd_c00165{left:542.783587pt;}
.x60_c00165{left:551.631987pt;}
.x25_c00165{left:552.613187pt;}
.x61_c00165{left:562.121587pt;}
.x2d_c00165{left:571.739987pt;}
.x3_c00165{left:581.736787pt;}
.x27_c00165{left:590.316787pt;}
.x3f_c00165{left:591.443187pt;}
.x39_c00165{left:601.866787pt;}
.x6d_c00165{left:610.125587pt;}
.x34_c00165{left:612.215587pt;}
.x70_c00165{left:617.042387pt;}
.x53_c00165{left:618.010387pt;}
.x5c_c00165{left:621.895587pt;}
.x58_c00165{left:631.399587pt;}
.x52_c00165{left:643.169587pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_181caaed4a414ebd58404aac.woff2')format("woff");}.ff1_c00166{font-family:ff1_c00166;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00166;src:url('chunks/assets/font_ae25aabecf20f07f38621fe5.woff2')format("woff");}.ff2_c00166{font-family:ff2_c00166;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00166;src:url('chunks/assets/font_0b4da5c8a8dedafccea3d8a2.woff2')format("woff");}.ff3_c00166{font-family:ff3_c00166;line-height:0.666000;font-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_c00166{transform:matrix(0.034723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.034723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.034723,0.000000,0.000000,0.250000,0,0);}
.m41_c00166{transform:matrix(0.065041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065041,0.000000,0.000000,0.250000,0,0);}
.m69_c00166{transform:matrix(0.069445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.069445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.069445,0.000000,0.000000,0.250000,0,0);}
.m4e_c00166{transform:matrix(0.125797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125797,0.000000,0.000000,0.250000,0,0);}
.m6a_c00166{transform:matrix(0.131944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131944,0.000000,0.000000,0.250000,0,0);}
.m7a_c00166{transform:matrix(0.167222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167222,0.000000,0.000000,0.250000,0,0);}
.m42_c00166{transform:matrix(0.167683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167683,0.000000,0.000000,0.250000,0,0);}
.m95_c00166{transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);}
.m7f_c00166{transform:matrix(0.195829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195829,0.000000,0.000000,0.250000,0,0);}
.m91_c00166{transform:matrix(0.198973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198973,0.000000,0.000000,0.250000,0,0);}
.m30_c00166{transform:matrix(0.204762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204762,0.000000,0.000000,0.250000,0,0);}
.m68_c00166{transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);}
.ma6_c00166{transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);}
.m93_c00166{transform:matrix(0.207176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207176,0.000000,0.000000,0.250000,0,0);}
.m96_c00166{transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);}
.m3e_c00166{transform:matrix(0.228445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228445,0.000000,0.000000,0.250000,0,0);}
.m33_c00166{transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);}
.m4a_c00166{transform:matrix(0.231602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231602,0.000000,0.000000,0.250000,0,0);}
.m5c_c00166{transform:matrix(0.232318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232318,0.000000,0.000000,0.250000,0,0);}
.m97_c00166{transform:matrix(0.242794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242794,0.000000,0.000000,0.250000,0,0);}
.m62_c00166{transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);}
.m0_c00166{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00166{transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);}
.m5e_c00166{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.m72_c00166{transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);}
.mc5_c00166{transform:matrix(0.252390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252390,0.000000,0.000000,0.250000,0,0);}
.m48_c00166{transform:matrix(0.257306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257306,0.000000,0.000000,0.250000,0,0);}
.m2e_c00166{transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);}
.m16_c00166{transform:matrix(0.258258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258258,0.000000,0.000000,0.250000,0,0);}
.mb7_c00166{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.maf_c00166{transform:matrix(0.258706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258706,0.000000,0.000000,0.250000,0,0);}
.m3_c00166{transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);}
.mc1_c00166{transform:matrix(0.259364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259364,0.000000,0.000000,0.250000,0,0);}
.ma_c00166{transform:matrix(0.259641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259641,0.000000,0.000000,0.250000,0,0);}
.mac_c00166{transform:matrix(0.260756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260756,0.000000,0.000000,0.250000,0,0);}
.m8e_c00166{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.mb0_c00166{transform:matrix(0.261481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261481,0.000000,0.000000,0.250000,0,0);}
.mc6_c00166{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.m22_c00166{transform:matrix(0.261624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261624,0.000000,0.000000,0.250000,0,0);}
.mbf_c00166{transform:matrix(0.262545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262545,0.000000,0.000000,0.250000,0,0);}
.mc_c00166{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m6_c00166{transform:matrix(0.263699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263699,0.000000,0.000000,0.250000,0,0);}
.m5_c00166{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m5f_c00166{transform:matrix(0.264628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264628,0.000000,0.000000,0.250000,0,0);}
.m58_c00166{transform:matrix(0.264696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264696,0.000000,0.000000,0.250000,0,0);}
.mc9_c00166{transform:matrix(0.265156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265156,0.000000,0.000000,0.250000,0,0);}
.m1e_c00166{transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);}
.m56_c00166{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m5b_c00166{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.m31_c00166{transform:matrix(0.267199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267199,0.000000,0.000000,0.250000,0,0);}
.mcc_c00166{transform:matrix(0.267526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267526,0.000000,0.000000,0.250000,0,0);}
.ma4_c00166{transform:matrix(0.267577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267577,0.000000,0.000000,0.250000,0,0);}
.m3b_c00166{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m25_c00166{transform:matrix(0.269609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269609,0.000000,0.000000,0.250000,0,0);}
.mba_c00166{transform:matrix(0.270271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270271,0.000000,0.000000,0.250000,0,0);}
.m8_c00166{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m45_c00166{transform:matrix(0.271281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271281,0.000000,0.000000,0.250000,0,0);}
.mc2_c00166{transform:matrix(0.272402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272402,0.000000,0.000000,0.250000,0,0);}
.m46_c00166{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m3d_c00166{transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);}
.ma8_c00166{transform:matrix(0.272943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272943,0.000000,0.000000,0.250000,0,0);}
.mb6_c00166{transform:matrix(0.274085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274085,0.000000,0.000000,0.250000,0,0);}
.m4c_c00166{transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);}
.m2b_c00166{transform:matrix(0.275040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275040,0.000000,0.000000,0.250000,0,0);}
.m2d_c00166{transform:matrix(0.275379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275379,0.000000,0.000000,0.250000,0,0);}
.m2f_c00166{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m26_c00166{transform:matrix(0.275570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275570,0.000000,0.000000,0.250000,0,0);}
.m34_c00166{transform:matrix(0.276607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276607,0.000000,0.000000,0.250000,0,0);}
.m49_c00166{transform:matrix(0.277088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277088,0.000000,0.000000,0.250000,0,0);}
.m51_c00166{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m8b_c00166{transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);}
.m71_c00166{transform:matrix(0.278746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278746,0.000000,0.000000,0.250000,0,0);}
.m50_c00166{transform:matrix(0.279134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279134,0.000000,0.000000,0.250000,0,0);}
.m1b_c00166{transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);}
.m29_c00166{transform:matrix(0.280159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280159,0.000000,0.000000,0.250000,0,0);}
.mbc_c00166{transform:matrix(0.280240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280240,0.000000,0.000000,0.250000,0,0);}
.ma5_c00166{transform:matrix(0.280247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280247,0.000000,0.000000,0.250000,0,0);}
.m14_c00166{transform:matrix(0.280265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280265,0.000000,0.000000,0.250000,0,0);}
.m12_c00166{transform:matrix(0.280307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280307,0.000000,0.000000,0.250000,0,0);}
.ma9_c00166{transform:matrix(0.280443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280443,0.000000,0.000000,0.250000,0,0);}
.m54_c00166{transform:matrix(0.280908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280908,0.000000,0.000000,0.250000,0,0);}
.m66_c00166{transform:matrix(0.281417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281417,0.000000,0.000000,0.250000,0,0);}
.mb8_c00166{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.m9b_c00166{transform:matrix(0.282254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282254,0.000000,0.000000,0.250000,0,0);}
.mb2_c00166{transform:matrix(0.283333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283333,0.000000,0.000000,0.250000,0,0);}
.ma7_c00166{transform:matrix(0.283861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283861,0.000000,0.000000,0.250000,0,0);}
.m82_c00166{transform:matrix(0.284248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284248,0.000000,0.000000,0.250000,0,0);}
.m6e_c00166{transform:matrix(0.284410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284410,0.000000,0.000000,0.250000,0,0);}
.m39_c00166{transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);}
.m8d_c00166{transform:matrix(0.286868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286868,0.000000,0.000000,0.250000,0,0);}
.m85_c00166{transform:matrix(0.286901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286901,0.000000,0.000000,0.250000,0,0);}
.m87_c00166{transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);}
.m76_c00166{transform:matrix(0.287521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287521,0.000000,0.000000,0.250000,0,0);}
.mbe_c00166{transform:matrix(0.287830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287830,0.000000,0.000000,0.250000,0,0);}
.ma0_c00166{transform:matrix(0.287867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287867,0.000000,0.000000,0.250000,0,0);}
.m15_c00166{transform:matrix(0.287881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287881,0.000000,0.000000,0.250000,0,0);}
.m6d_c00166{transform:matrix(0.288595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288595,0.000000,0.000000,0.250000,0,0);}
.m1_c00166{transform:matrix(0.288913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288913,0.000000,0.000000,0.250000,0,0);}
.m40_c00166{transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);}
.mb4_c00166{transform:matrix(0.289281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289281,0.000000,0.000000,0.250000,0,0);}
.m20_c00166{transform:matrix(0.289488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289488,0.000000,0.000000,0.250000,0,0);}
.md_c00166{transform:matrix(0.289540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289540,0.000000,0.000000,0.250000,0,0);}
.m5d_c00166{transform:matrix(0.290594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290594,0.000000,0.000000,0.250000,0,0);}
.m80_c00166{transform:matrix(0.291008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291008,0.000000,0.000000,0.250000,0,0);}
.ma1_c00166{transform:matrix(0.291021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291021,0.000000,0.000000,0.250000,0,0);}
.m8f_c00166{transform:matrix(0.291185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291185,0.000000,0.000000,0.250000,0,0);}
.m78_c00166{transform:matrix(0.291969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291969,0.000000,0.000000,0.250000,0,0);}
.m27_c00166{transform:matrix(0.293214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293214,0.000000,0.000000,0.250000,0,0);}
.m55_c00166{transform:matrix(0.293580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293580,0.000000,0.000000,0.250000,0,0);}
.m83_c00166{transform:matrix(0.293731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293731,0.000000,0.000000,0.250000,0,0);}
.m4_c00166{transform:matrix(0.293761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293761,0.000000,0.000000,0.250000,0,0);}
.m3f_c00166{transform:matrix(0.293934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293934,0.000000,0.000000,0.250000,0,0);}
.m74_c00166{transform:matrix(0.294710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294710,0.000000,0.000000,0.250000,0,0);}
.m65_c00166{transform:matrix(0.295150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295150,0.000000,0.000000,0.250000,0,0);}
.m43_c00166{transform:matrix(0.295588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295588,0.000000,0.000000,0.250000,0,0);}
.m99_c00166{transform:matrix(0.295628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295628,0.000000,0.000000,0.250000,0,0);}
.m9e_c00166{transform:matrix(0.296766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296766,0.000000,0.000000,0.250000,0,0);}
.m28_c00166{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m98_c00166{transform:matrix(0.297138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297138,0.000000,0.000000,0.250000,0,0);}
.m1a_c00166{transform:matrix(0.298605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298605,0.000000,0.000000,0.250000,0,0);}
.m1d_c00166{transform:matrix(0.299763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299763,0.000000,0.000000,0.250000,0,0);}
.mce_c00166{transform:matrix(0.300145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300145,0.000000,0.000000,0.250000,0,0);}
.m19_c00166{transform:matrix(0.300266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300266,0.000000,0.000000,0.250000,0,0);}
.m63_c00166{transform:matrix(0.300455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300455,0.000000,0.000000,0.250000,0,0);}
.m7_c00166{transform:matrix(0.301038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301038,0.000000,0.000000,0.250000,0,0);}
.m10_c00166{transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);}
.m2a_c00166{transform:matrix(0.301659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301659,0.000000,0.000000,0.250000,0,0);}
.m18_c00166{transform:matrix(0.303438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303438,0.000000,0.000000,0.250000,0,0);}
.m8a_c00166{transform:matrix(0.303723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303723,0.000000,0.000000,0.250000,0,0);}
.mcd_c00166{transform:matrix(0.303753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303753,0.000000,0.000000,0.250000,0,0);}
.mc8_c00166{transform:matrix(0.303828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303828,0.000000,0.000000,0.250000,0,0);}
.m23_c00166{transform:matrix(0.304119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304119,0.000000,0.000000,0.250000,0,0);}
.mb3_c00166{transform:matrix(0.304556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304556,0.000000,0.000000,0.250000,0,0);}
.m77_c00166{transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);}
.m38_c00166{transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);}
.m7c_c00166{transform:matrix(0.305995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305995,0.000000,0.000000,0.250000,0,0);}
.m9c_c00166{transform:matrix(0.306176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306176,0.000000,0.000000,0.250000,0,0);}
.mca_c00166{transform:matrix(0.306984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306984,0.000000,0.000000,0.250000,0,0);}
.m67_c00166{transform:matrix(0.307942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307942,0.000000,0.000000,0.250000,0,0);}
.m4f_c00166{transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);}
.m89_c00166{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.mb5_c00166{transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);}
.mc7_c00166{transform:matrix(0.308789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308789,0.000000,0.000000,0.250000,0,0);}
.mae_c00166{transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);}
.m35_c00166{transform:matrix(0.309239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309239,0.000000,0.000000,0.250000,0,0);}
.m52_c00166{transform:matrix(0.311181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311181,0.000000,0.000000,0.250000,0,0);}
.m3c_c00166{transform:matrix(0.311442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311442,0.000000,0.000000,0.250000,0,0);}
.m79_c00166{transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);}
.m81_c00166{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.maa_c00166{transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);}
.mb_c00166{transform:matrix(0.313839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313839,0.000000,0.000000,0.250000,0,0);}
.mad_c00166{transform:matrix(0.313871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313871,0.000000,0.000000,0.250000,0,0);}
.m73_c00166{transform:matrix(0.315717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315717,0.000000,0.000000,0.250000,0,0);}
.m9d_c00166{transform:matrix(0.316145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316145,0.000000,0.000000,0.250000,0,0);}
.m13_c00166{transform:matrix(0.316676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316676,0.000000,0.000000,0.250000,0,0);}
.m24_c00166{transform:matrix(0.316972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316972,0.000000,0.000000,0.250000,0,0);}
.m92_c00166{transform:matrix(0.317548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317548,0.000000,0.000000,0.250000,0,0);}
.m11_c00166{transform:matrix(0.317662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317662,0.000000,0.000000,0.250000,0,0);}
.mc4_c00166{transform:matrix(0.318235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318235,0.000000,0.000000,0.250000,0,0);}
.m7b_c00166{transform:matrix(0.319696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319696,0.000000,0.000000,0.250000,0,0);}
.m60_c00166{transform:matrix(0.320064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320064,0.000000,0.000000,0.250000,0,0);}
.m4b_c00166{transform:matrix(0.320461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320461,0.000000,0.000000,0.250000,0,0);}
.m6b_c00166{transform:matrix(0.320542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320542,0.000000,0.000000,0.250000,0,0);}
.ma3_c00166{transform:matrix(0.321107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321107,0.000000,0.000000,0.250000,0,0);}
.mbd_c00166{transform:matrix(0.321130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321130,0.000000,0.000000,0.250000,0,0);}
.m8c_c00166{transform:matrix(0.321157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321157,0.000000,0.000000,0.250000,0,0);}
.m21_c00166{transform:matrix(0.321432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321432,0.000000,0.000000,0.250000,0,0);}
.mcb_c00166{transform:matrix(0.322941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322941,0.000000,0.000000,0.250000,0,0);}
.m53_c00166{transform:matrix(0.323146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323146,0.000000,0.000000,0.250000,0,0);}
.m9a_c00166{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.m86_c00166{transform:matrix(0.324287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324287,0.000000,0.000000,0.250000,0,0);}
.m88_c00166{transform:matrix(0.324786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324786,0.000000,0.000000,0.250000,0,0);}
.m37_c00166{transform:matrix(0.324850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324850,0.000000,0.000000,0.250000,0,0);}
.m3a_c00166{transform:matrix(0.326607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326607,0.000000,0.000000,0.250000,0,0);}
.m64_c00166{transform:matrix(0.326904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326904,0.000000,0.000000,0.250000,0,0);}
.m2c_c00166{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m57_c00166{transform:matrix(0.327297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327297,0.000000,0.000000,0.250000,0,0);}
.m36_c00166{transform:matrix(0.327729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327729,0.000000,0.000000,0.250000,0,0);}
.m70_c00166{transform:matrix(0.330133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330133,0.000000,0.000000,0.250000,0,0);}
.m47_c00166{transform:matrix(0.331101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331101,0.000000,0.000000,0.250000,0,0);}
.m90_c00166{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m4d_c00166{transform:matrix(0.333376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333376,0.000000,0.000000,0.250000,0,0);}
.m61_c00166{transform:matrix(0.333754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333754,0.000000,0.000000,0.250000,0,0);}
.mb9_c00166{transform:matrix(0.336403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336403,0.000000,0.000000,0.250000,0,0);}
.m44_c00166{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);}
.m6c_c00166{transform:matrix(0.337583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337583,0.000000,0.000000,0.250000,0,0);}
.m7d_c00166{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m7e_c00166{transform:matrix(0.339379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339379,0.000000,0.000000,0.250000,0,0);}
.m2_c00166{transform:matrix(0.342633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342633,0.000000,0.000000,0.250000,0,0);}
.m17_c00166{transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);}
.ma2_c00166{transform:matrix(0.344879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344879,0.000000,0.000000,0.250000,0,0);}
.m5a_c00166{transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);}
.m9_c00166{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m9f_c00166{transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);}
.mbb_c00166{transform:matrix(0.349374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349374,0.000000,0.000000,0.250000,0,0);}
.m1c_c00166{transform:matrix(0.354899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354899,0.000000,0.000000,0.250000,0,0);}
.m84_c00166{transform:matrix(0.355634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355634,0.000000,0.000000,0.250000,0,0);}
.mc0_c00166{transform:matrix(0.358126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358126,0.000000,0.000000,0.250000,0,0);}
.mc3_c00166{transform:matrix(0.359351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359351,0.000000,0.000000,0.250000,0,0);}
.m59_c00166{transform:matrix(0.360514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360514,0.000000,0.000000,0.250000,0,0);}
.m75_c00166{transform:matrix(0.365569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365569,0.000000,0.000000,0.250000,0,0);}
.mf_c00166{transform:matrix(0.366729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366729,0.000000,0.000000,0.250000,0,0);}
.m6f_c00166{transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);}
.m32_c00166{transform:matrix(0.378961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378961,0.000000,0.000000,0.250000,0,0);}
.me_c00166{transform:matrix(0.383069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383069,0.000000,0.000000,0.250000,0,0);}
.mb1_c00166{transform:matrix(0.402409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402409,0.000000,0.000000,0.250000,0,0);}
.mab_c00166{transform:matrix(0.432348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432348,0.000000,0.000000,0.250000,0,0);}
.v0_c00166{vertical-align:0.000000px;}
.ls10_c00166{letter-spacing:-4.088700px;}
.ls9_c00166{letter-spacing:-2.744280px;}
.ls5_c00166{letter-spacing:-2.438489px;}
.lsf_c00166{letter-spacing:-2.375762px;}
.lsc_c00166{letter-spacing:-1.419185px;}
.ls2_c00166{letter-spacing:0.000000px;}
.ls0_c00166{letter-spacing:0.784080px;}
.ls6_c00166{letter-spacing:1.089871px;}
.lse_c00166{letter-spacing:1.544638px;}
.ls11_c00166{letter-spacing:2.924618px;}
.lsb_c00166{letter-spacing:3.112798px;}
.ls1_c00166{letter-spacing:3.489156px;}
.ls3_c00166{letter-spacing:3.841200px;}
.ls4_c00166{letter-spacing:3.920400px;}
.ls7_c00166{letter-spacing:4.474810px;}
.ls8_c00166{letter-spacing:49.896198px;}
.lsd_c00166{letter-spacing:51.321798px;}
.lsa_c00166{letter-spacing:58.449798px;}
.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;}
}
.ws7_c00166{word-spacing:-20.386080px;}
.ws1_c00166{word-spacing:-19.602000px;}
.ws2_c00166{word-spacing:-2.195424px;}
.ws0_c00166{word-spacing:0.000000px;}
.ws4_c00166{word-spacing:1.254528px;}
.ws8_c00166{word-spacing:2.665872px;}
.ws6_c00166{word-spacing:3.606768px;}
.ws3_c00166{word-spacing:5.410152px;}
.ws5_c00166{word-spacing:15.995232px;}
._13_c00166{margin-left:-5.567760px;}
._11_c00166{margin-left:-1.254528px;}
._7_c00166{width:3.685176px;}
._0_c00166{width:5.488560px;}
._6_c00166{width:7.135128px;}
._2_c00166{width:8.624880px;}
._b_c00166{width:9.666360px;}
._e_c00166{width:11.526768px;}
._8_c00166{width:12.545280px;}
._f_c00166{width:14.191848px;}
._c_c00166{width:17.562996px;}
._9_c00166{width:21.797424px;}
._4_c00166{width:23.679216px;}
._1_c00166{width:26.109864px;}
._14_c00166{width:27.874044px;}
._3_c00166{width:30.971160px;}
._5_c00166{width:32.055408px;}
._10_c00166{width:35.087976px;}
._12_c00166{width:36.773352px;}
._d_c00166{width:38.185488px;}
._a_c00166{width:39.360816px;}
.fc0_c00166{color:transparent;}
.fsc_c00166{font-size:25.146000px;}
.fs0_c00166{font-size:27.720000px;}
.fs2_c00166{font-size:33.264000px;}
.fs7_c00166{font-size:33.660000px;}
.fsb_c00166{font-size:34.848000px;}
.fs6_c00166{font-size:39.204000px;}
.fs5_c00166{font-size:49.896198px;}
.fs9_c00166{font-size:51.321798px;}
.fs8_c00166{font-size:58.449798px;}
.fsa_c00166{font-size:64.548000px;}
.fsf_c00166{font-size:67.320000px;}
.fs1_c00166{font-size:76.824000px;}
.fs3_c00166{font-size:78.408000px;}
.fs4_c00166{font-size:89.496198px;}
.fse_c00166{font-size:93.456198px;}
.fsd_c00166{font-size:116.820000px;}
.y0_c00166{bottom:0.000000px;}
.y1_c00166{bottom:76.500000px;}
.y24_c00166{bottom:92.214585px;}
.y23_c00166{bottom:153.515385px;}
.y22_c00166{bottom:217.310985px;}
.y21_c00166{bottom:250.104735px;}
.y20_c00166{bottom:282.532185px;}
.y1f_c00166{bottom:314.964585px;}
.y1e_c00166{bottom:347.401935px;}
.y1d_c00166{bottom:360.945135px;}
.y1c_c00166{bottom:379.472985px;}
.y1b_c00166{bottom:411.548985px;}
.y1a_c00166{bottom:434.714985px;}
.y19_c00166{bottom:443.624985px;}
.y18_c00166{bottom:457.885935px;}
.y17_c00166{bottom:474.280335px;}
.y16_c00166{bottom:508.494735px;}
.y15_c00166{bottom:540.565785px;}
.y14_c00166{bottom:573.359535px;}
.y13_c00166{bottom:605.786985px;}
.y12_c00166{bottom:637.862985px;}
.y11_c00166{bottom:670.300335px;}
.y10_c00166{bottom:702.732735px;}
.ye_c00166{bottom:734.794875px;}
.yf_c00166{bottom:734.803785px;}
.yd_c00166{bottom:767.236185px;}
.yc_c00166{bottom:788.981535px;}
.yb_c00166{bottom:791.832735px;}
.ya_c00166{bottom:800.381385px;}
.y9_c00166{bottom:832.462335px;}
.y8_c00166{bottom:864.894735px;}
.y7_c00166{bottom:898.034985px;}
.y6_c00166{bottom:930.115935px;}
.y5_c00166{bottom:1039.523310px;}
.y4_c00166{bottom:1065.186585px;}
.y3_c00166{bottom:1080.155385px;}
.y2_c00166{bottom:1090.134585px;}
.he_c00166{height:26.226492px;}
.h2_c00166{height:28.911094px;}
.h9_c00166{height:33.035449px;}
.h7_c00166{height:33.230868px;}
.hb_c00166{height:34.180317px;}
.hd_c00166{height:34.201406px;}
.h4_c00166{height:34.693313px;}
.h8_c00166{height:38.476582px;}
.ha_c00166{height:38.927565px;}
.h11_c00166{height:66.070898px;}
.hc_c00166{height:67.321547px;}
.h3_c00166{height:75.398555px;}
.h5_c00166{height:76.953164px;}
.h6_c00166{height:87.835624px;}
.h10_c00166{height:97.471894px;}
.hf_c00166{height:114.652441px;}
.h1_c00166{height:1110.000000px;}
.h0_c00166{height:1263.000000px;}
.w1_c00166{width:733.500000px;}
.w0_c00166{width:892.500000px;}
.x0_c00166{left:0.000000px;}
.x44_c00166{left:74.853435px;}
.x60_c00166{left:75.878085px;}
.x12_c00166{left:77.026485px;}
.x5f_c00166{left:78.140235px;}
.x1_c00166{left:79.500000px;}
.x28_c00166{left:98.895585px;}
.x45_c00166{left:109.543035px;}
.x63_c00166{left:111.329985px;}
.x32_c00166{left:120.145935px;}
.x52_c00166{left:121.982385px;}
.x6_c00166{left:131.872485px;}
.x66_c00166{left:133.090185px;}
.x3a_c00166{left:141.856635px;}
.x13_c00166{left:143.084235px;}
.x33_c00166{left:153.221835px;}
.x4_c00166{left:154.919685px;}
.x50_c00166{left:164.695935px;}
.x4b_c00166{left:165.745335px;}
.x14_c00166{left:176.259135px;}
.x3f_c00166{left:186.367035px;}
.x34_c00166{left:187.965885px;}
.x7_c00166{left:198.291585px;}
.x64_c00166{left:199.400385px;}
.x4c_c00166{left:201.741735px;}
.x29_c00166{left:209.542935px;}
.x46_c00166{left:211.513035px;}
.x15_c00166{left:220.942785px;}
.x5c_c00166{left:231.342735px;}
.x4d_c00166{left:232.817835px;}
.x8_c00166{left:243.222735px;}
.x61_c00166{left:244.262235px;}
.x35_c00166{left:254.053335px;}
.x54_c00166{left:263.116785px;}
.x9_c00166{left:265.334385px;}
.x47_c00166{left:276.694635px;}
.x22_c00166{left:286.198635px;}
.x2a_c00166{left:288.005385px;}
.x2_c00166{left:290.371485px;}
.x5_c00166{left:293.555721px;}
.x1c_c00166{left:299.152785px;}
.x2b_c00166{left:308.978535px;}
.xa_c00166{left:310.196235px;}
.x3b_c00166{left:321.279285px;}
.x67_c00166{left:322.358385px;}
.x16_c00166{left:331.911885px;}
.x48_c00166{left:333.020685px;}
.x40_c00166{left:342.475185px;}
.x5d_c00166{left:344.064135px;}
.x3c_c00166{left:353.716635px;}
.x36_c00166{left:354.731385px;}
.xb_c00166{left:365.116485px;}
.x57_c00166{left:366.472785px;}
.x49_c00166{left:375.808485px;}
.x23_c00166{left:376.847985px;}
.x17_c00166{left:387.213285px;}
.xc_c00166{left:398.266635px;}
.x41_c00166{left:409.488285px;}
.x53_c00166{left:420.764385px;}
.x4a_c00166{left:421.793985px;}
.x24_c00166{left:432.471135px;}
.xd_c00166{left:442.801785px;}
.x42_c00166{left:443.851185px;}
.x2c_c00166{left:454.855035px;}
.x4e_c00166{left:464.893635px;}
.x25_c00166{left:475.694535px;}
.x1d_c00166{left:478.377435px;}
.x18_c00166{left:487.208235px;}
.x37_c00166{left:498.380385px;}
.x26_c00166{left:509.245635px;}
.xe_c00166{left:520.511835px;}
.x38_c00166{left:529.976235px;}
.x4f_c00166{left:531.782985px;}
.x1e_c00166{left:542.425485px;}
.x5e_c00166{left:544.103535px;}
.x19_c00166{left:552.751185px;}
.x3d_c00166{left:554.221335px;}
.x1f_c00166{left:565.388535px;}
.x58_c00166{left:572.174985px;}
.x51_c00166{left:574.303485px;}
.x2d_c00166{left:575.362785px;}
.x62_c00166{left:576.436935px;}
.x2e_c00166{left:586.807185px;}
.x65_c00166{left:587.856585px;}
.x1a_c00166{left:597.479385px;}
.x20_c00166{left:598.548585px;}
.x3e_c00166{left:607.968435px;}
.xf_c00166{left:609.582135px;}
.x21_c00166{left:619.363335px;}
.x59_c00166{left:630.129585px;}
.x2f_c00166{left:631.317585px;}
.x10_c00166{left:642.361035px;}
.x3_c00166{left:653.384685px;}
.x30_c00166{left:664.700385px;}
.x11_c00166{left:674.273685px;}
.x27_c00166{left:675.852735px;}
.x1b_c00166{left:687.336735px;}
.x31_c00166{left:693.053985px;}
.x5a_c00166{left:694.281585px;}
.x43_c00166{left:697.296135px;}
.x55_c00166{left:698.474235px;}
.x56_c00166{left:699.810735px;}
.x5b_c00166{left:702.201585px;}
.x39_c00166{left:708.656385px;}
@media print{
.v0_c00166{vertical-align:0.000000pt;}
.ls10_c00166{letter-spacing:-3.634400pt;}
.ls9_c00166{letter-spacing:-2.439360pt;}
.ls5_c00166{letter-spacing:-2.167546pt;}
.lsf_c00166{letter-spacing:-2.111789pt;}
.lsc_c00166{letter-spacing:-1.261498pt;}
.ls2_c00166{letter-spacing:0.000000pt;}
.ls0_c00166{letter-spacing:0.696960pt;}
.ls6_c00166{letter-spacing:0.968774pt;}
.lse_c00166{letter-spacing:1.373011pt;}
.ls11_c00166{letter-spacing:2.599661pt;}
.lsb_c00166{letter-spacing:2.766931pt;}
.ls1_c00166{letter-spacing:3.101472pt;}
.ls3_c00166{letter-spacing:3.414400pt;}
.ls4_c00166{letter-spacing:3.484800pt;}
.ls7_c00166{letter-spacing:3.977609pt;}
.ls8_c00166{letter-spacing:44.352176pt;}
.lsd_c00166{letter-spacing:45.619376pt;}
.lsa_c00166{letter-spacing:51.955376pt;}
.ws7_c00166{word-spacing:-18.120960pt;}
.ws1_c00166{word-spacing:-17.424000pt;}
.ws2_c00166{word-spacing:-1.951488pt;}
.ws0_c00166{word-spacing:0.000000pt;}
.ws4_c00166{word-spacing:1.115136pt;}
.ws8_c00166{word-spacing:2.369664pt;}
.ws6_c00166{word-spacing:3.206016pt;}
.ws3_c00166{word-spacing:4.809024pt;}
.ws5_c00166{word-spacing:14.217984pt;}
._13_c00166{margin-left:-4.949120pt;}
._11_c00166{margin-left:-1.115136pt;}
._7_c00166{width:3.275712pt;}
._0_c00166{width:4.878720pt;}
._6_c00166{width:6.342336pt;}
._2_c00166{width:7.666560pt;}
._b_c00166{width:8.592320pt;}
._e_c00166{width:10.246016pt;}
._8_c00166{width:11.151360pt;}
._f_c00166{width:12.614976pt;}
._c_c00166{width:15.611552pt;}
._9_c00166{width:19.375488pt;}
._4_c00166{width:21.048192pt;}
._1_c00166{width:23.208768pt;}
._14_c00166{width:24.776928pt;}
._3_c00166{width:27.529920pt;}
._5_c00166{width:28.493696pt;}
._10_c00166{width:31.189312pt;}
._12_c00166{width:32.687424pt;}
._d_c00166{width:33.942656pt;}
._a_c00166{width:34.987392pt;}
.fsc_c00166{font-size:22.352000pt;}
.fs0_c00166{font-size:24.640000pt;}
.fs2_c00166{font-size:29.568000pt;}
.fs7_c00166{font-size:29.920000pt;}
.fsb_c00166{font-size:30.976000pt;}
.fs6_c00166{font-size:34.848000pt;}
.fs5_c00166{font-size:44.352176pt;}
.fs9_c00166{font-size:45.619376pt;}
.fs8_c00166{font-size:51.955376pt;}
.fsa_c00166{font-size:57.376000pt;}
.fsf_c00166{font-size:59.840000pt;}
.fs1_c00166{font-size:68.288000pt;}
.fs3_c00166{font-size:69.696000pt;}
.fs4_c00166{font-size:79.552176pt;}
.fse_c00166{font-size:83.072176pt;}
.fsd_c00166{font-size:103.840000pt;}
.y0_c00166{bottom:0.000000pt;}
.y1_c00166{bottom:68.000000pt;}
.y24_c00166{bottom:81.968520pt;}
.y23_c00166{bottom:136.458120pt;}
.y22_c00166{bottom:193.165320pt;}
.y21_c00166{bottom:222.315320pt;}
.y20_c00166{bottom:251.139720pt;}
.y1f_c00166{bottom:279.968520pt;}
.y1e_c00166{bottom:308.801720pt;}
.y1d_c00166{bottom:320.840120pt;}
.y1c_c00166{bottom:337.309320pt;}
.y1b_c00166{bottom:365.821320pt;}
.y1a_c00166{bottom:386.413320pt;}
.y19_c00166{bottom:394.333320pt;}
.y18_c00166{bottom:407.009720pt;}
.y17_c00166{bottom:421.582520pt;}
.y16_c00166{bottom:451.995320pt;}
.y15_c00166{bottom:480.502920pt;}
.y14_c00166{bottom:509.652920pt;}
.y13_c00166{bottom:538.477320pt;}
.y12_c00166{bottom:566.989320pt;}
.y11_c00166{bottom:595.822520pt;}
.y10_c00166{bottom:624.651320pt;}
.ye_c00166{bottom:653.151000pt;}
.yf_c00166{bottom:653.158920pt;}
.yd_c00166{bottom:681.987720pt;}
.yc_c00166{bottom:701.316920pt;}
.yb_c00166{bottom:703.851320pt;}
.ya_c00166{bottom:711.450120pt;}
.y9_c00166{bottom:739.966520pt;}
.y8_c00166{bottom:768.795320pt;}
.y7_c00166{bottom:798.253320pt;}
.y6_c00166{bottom:826.769720pt;}
.y5_c00166{bottom:924.020720pt;}
.y4_c00166{bottom:946.832520pt;}
.y3_c00166{bottom:960.138120pt;}
.y2_c00166{bottom:969.008520pt;}
.he_c00166{height:23.312438pt;}
.h2_c00166{height:25.698750pt;}
.h9_c00166{height:29.364844pt;}
.h7_c00166{height:29.538549pt;}
.hb_c00166{height:30.382504pt;}
.hd_c00166{height:30.401250pt;}
.h4_c00166{height:30.838500pt;}
.h8_c00166{height:34.201406pt;}
.ha_c00166{height:34.602280pt;}
.h11_c00166{height:58.729688pt;}
.hc_c00166{height:59.841375pt;}
.h3_c00166{height:67.020938pt;}
.h5_c00166{height:68.402813pt;}
.h6_c00166{height:78.076110pt;}
.h10_c00166{height:86.641684pt;}
.hf_c00166{height:101.913281pt;}
.h1_c00166{height:986.666667pt;}
.h0_c00166{height:1122.666667pt;}
.w1_c00166{width:652.000000pt;}
.w0_c00166{width:793.333333pt;}
.x0_c00166{left:0.000000pt;}
.x44_c00166{left:66.536387pt;}
.x60_c00166{left:67.447187pt;}
.x12_c00166{left:68.467987pt;}
.x5f_c00166{left:69.457987pt;}
.x1_c00166{left:70.666667pt;}
.x28_c00166{left:87.907187pt;}
.x45_c00166{left:97.371587pt;}
.x63_c00166{left:98.959987pt;}
.x32_c00166{left:106.796387pt;}
.x52_c00166{left:108.428787pt;}
.x6_c00166{left:117.219987pt;}
.x66_c00166{left:118.302387pt;}
.x3a_c00166{left:126.094787pt;}
.x13_c00166{left:127.185987pt;}
.x33_c00166{left:136.197187pt;}
.x4_c00166{left:137.706387pt;}
.x50_c00166{left:146.396387pt;}
.x4b_c00166{left:147.329187pt;}
.x14_c00166{left:156.674787pt;}
.x3f_c00166{left:165.659587pt;}
.x34_c00166{left:167.080787pt;}
.x7_c00166{left:176.259187pt;}
.x64_c00166{left:177.244787pt;}
.x4c_c00166{left:179.325987pt;}
.x29_c00166{left:186.260387pt;}
.x46_c00166{left:188.011587pt;}
.x15_c00166{left:196.393587pt;}
.x5c_c00166{left:205.637987pt;}
.x4d_c00166{left:206.949187pt;}
.x8_c00166{left:216.197987pt;}
.x61_c00166{left:217.121987pt;}
.x35_c00166{left:225.825187pt;}
.x54_c00166{left:233.881587pt;}
.x9_c00166{left:235.852787pt;}
.x47_c00166{left:245.950787pt;}
.x22_c00166{left:254.398787pt;}
.x2a_c00166{left:256.004787pt;}
.x2_c00166{left:258.107987pt;}
.x5_c00166{left:260.938419pt;}
.x1c_c00166{left:265.913587pt;}
.x2b_c00166{left:274.647587pt;}
.xa_c00166{left:275.729987pt;}
.x3b_c00166{left:285.581587pt;}
.x67_c00166{left:286.540787pt;}
.x16_c00166{left:295.032787pt;}
.x48_c00166{left:296.018387pt;}
.x40_c00166{left:304.422387pt;}
.x5d_c00166{left:305.834787pt;}
.x3c_c00166{left:314.414787pt;}
.x36_c00166{left:315.316787pt;}
.xb_c00166{left:324.547987pt;}
.x57_c00166{left:325.753587pt;}
.x49_c00166{left:334.051987pt;}
.x23_c00166{left:334.975987pt;}
.x17_c00166{left:344.189587pt;}
.xc_c00166{left:354.014787pt;}
.x41_c00166{left:363.989587pt;}
.x53_c00166{left:374.012787pt;}
.x4a_c00166{left:374.927987pt;}
.x24_c00166{left:384.418787pt;}
.xd_c00166{left:393.601587pt;}
.x42_c00166{left:394.534387pt;}
.x2c_c00166{left:404.315587pt;}
.x4e_c00166{left:413.238787pt;}
.x25_c00166{left:422.839587pt;}
.x1d_c00166{left:425.224387pt;}
.x18_c00166{left:433.073987pt;}
.x37_c00166{left:443.004787pt;}
.x26_c00166{left:452.662787pt;}
.xe_c00166{left:462.677187pt;}
.x38_c00166{left:471.089987pt;}
.x4f_c00166{left:472.695987pt;}
.x1e_c00166{left:482.155987pt;}
.x5e_c00166{left:483.647587pt;}
.x19_c00166{left:491.334387pt;}
.x3d_c00166{left:492.641187pt;}
.x1f_c00166{left:502.567587pt;}
.x58_c00166{left:508.599987pt;}
.x51_c00166{left:510.491987pt;}
.x2d_c00166{left:511.433587pt;}
.x62_c00166{left:512.388387pt;}
.x2e_c00166{left:521.606387pt;}
.x65_c00166{left:522.539187pt;}
.x1a_c00166{left:531.092787pt;}
.x20_c00166{left:532.043187pt;}
.x3e_c00166{left:540.416387pt;}
.xf_c00166{left:541.850787pt;}
.x21_c00166{left:550.545187pt;}
.x59_c00166{left:560.115187pt;}
.x2f_c00166{left:561.171187pt;}
.x10_c00166{left:570.987587pt;}
.x3_c00166{left:580.786387pt;}
.x30_c00166{left:590.844787pt;}
.x11_c00166{left:599.354387pt;}
.x27_c00166{left:600.757987pt;}
.x1b_c00166{left:610.965987pt;}
.x31_c00166{left:616.047987pt;}
.x5a_c00166{left:617.139187pt;}
.x43_c00166{left:619.818787pt;}
.x55_c00166{left:620.865987pt;}
.x56_c00166{left:622.053987pt;}
.x5b_c00166{left:624.179187pt;}
.x39_c00166{left:629.916787pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1db338529f87d1ed42e54261.woff2')format("woff");}.ff1_c00167{font-family:ff1_c00167;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00167;src:url('chunks/assets/font_657a915cb85714cd11d4edf5.woff2')format("woff");}.ff2_c00167{font-family:ff2_c00167;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00167;src:url('chunks/assets/font_5a2f84622132a6464235b807.woff2')format("woff");}.ff3_c00167{font-family:ff3_c00167;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00167;src:url('chunks/assets/font_e7de4d47e0f69be235750717.woff2')format("woff");}.ff4_c00167{font-family:ff4_c00167;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00167;src:url('chunks/assets/font_a14855debd0026023b3629b1.woff2')format("woff");}.ff5_c00167{font-family:ff5_c00167;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00167;src:url('chunks/assets/font_c2aa6675f236a6ee865a740b.woff2')format("woff");}.ff6_c00167{font-family:ff6_c00167;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m18_c00167{transform:matrix(0.118103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118103,0.000000,0.000000,0.250000,0,0);}
.m84_c00167{transform:matrix(0.145238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145238,0.000000,0.000000,0.250000,0,0);}
.m88_c00167{transform:matrix(0.148480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148480,0.000000,0.000000,0.250000,0,0);}
.m98_c00167{transform:matrix(0.148602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148602,0.000000,0.000000,0.250000,0,0);}
.m75_c00167{transform:matrix(0.188356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188356,0.000000,0.000000,0.250000,0,0);}
.mbc_c00167{transform:matrix(0.189703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189703,0.000000,0.000000,0.250000,0,0);}
.m7a_c00167{transform:matrix(0.198107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198107,0.000000,0.000000,0.250000,0,0);}
.m30_c00167{transform:matrix(0.220701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220701,0.000000,0.000000,0.250000,0,0);}
.m10_c00167{transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);}
.m9e_c00167{transform:matrix(0.245833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245833,0.000000,0.000000,0.250000,0,0);}
.m2_c00167{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00167{transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);}
.m43_c00167{transform:matrix(0.250147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250147,0.000000,0.000000,0.250000,0,0);}
.m61_c00167{transform:matrix(0.250462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250462,0.000000,0.000000,0.250000,0,0);}
.maf_c00167{transform:matrix(0.251742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251742,0.000000,0.000000,0.250000,0,0);}
.m4b_c00167{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.m8f_c00167{transform:matrix(0.256251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256251,0.000000,0.000000,0.250000,0,0);}
.m58_c00167{transform:matrix(0.257747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257747,0.000000,0.000000,0.250000,0,0);}
.m7b_c00167{transform:matrix(0.257987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257987,0.000000,0.000000,0.250000,0,0);}
.m6c_c00167{transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);}
.m2f_c00167{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m25_c00167{transform:matrix(0.258734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258734,0.000000,0.000000,0.250000,0,0);}
.m22_c00167{transform:matrix(0.260369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260369,0.000000,0.000000,0.250000,0,0);}
.mb9_c00167{transform:matrix(0.260732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260732,0.000000,0.000000,0.250000,0,0);}
.ma_c00167{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m20_c00167{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m12_c00167{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m3a_c00167{transform:matrix(0.264839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264839,0.000000,0.000000,0.250000,0,0);}
.m1d_c00167{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m8a_c00167{transform:matrix(0.266343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266343,0.000000,0.000000,0.250000,0,0);}
.m78_c00167{transform:matrix(0.266949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266949,0.000000,0.000000,0.250000,0,0);}
.m8_c00167{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m3f_c00167{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.m0_c00167{transform:matrix(0.269852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269852,0.000000,0.000000,0.250000,0,0);}
.m4_c00167{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m76_c00167{transform:matrix(0.270968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270968,0.000000,0.000000,0.250000,0,0);}
.m65_c00167{transform:matrix(0.271114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271114,0.000000,0.000000,0.250000,0,0);}
.ma0_c00167{transform:matrix(0.272544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272544,0.000000,0.000000,0.250000,0,0);}
.mbb_c00167{transform:matrix(0.272807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272807,0.000000,0.000000,0.250000,0,0);}
.ma9_c00167{transform:matrix(0.273486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273486,0.000000,0.000000,0.250000,0,0);}
.m5a_c00167{transform:matrix(0.273534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273534,0.000000,0.000000,0.250000,0,0);}
.m6b_c00167{transform:matrix(0.274429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274429,0.000000,0.000000,0.250000,0,0);}
.m45_c00167{transform:matrix(0.275369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275369,0.000000,0.000000,0.250000,0,0);}
.m54_c00167{transform:matrix(0.275818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275818,0.000000,0.000000,0.250000,0,0);}
.m4a_c00167{transform:matrix(0.276460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276460,0.000000,0.000000,0.250000,0,0);}
.m74_c00167{transform:matrix(0.276684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276684,0.000000,0.000000,0.250000,0,0);}
.ma8_c00167{transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);}
.m9f_c00167{transform:matrix(0.277433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277433,0.000000,0.000000,0.250000,0,0);}
.mc0_c00167{transform:matrix(0.277612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277612,0.000000,0.000000,0.250000,0,0);}
.mbf_c00167{transform:matrix(0.278236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278236,0.000000,0.000000,0.250000,0,0);}
.me_c00167{transform:matrix(0.278681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278681,0.000000,0.000000,0.250000,0,0);}
.m82_c00167{transform:matrix(0.278706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278706,0.000000,0.000000,0.250000,0,0);}
.m66_c00167{transform:matrix(0.278753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278753,0.000000,0.000000,0.250000,0,0);}
.m5e_c00167{transform:matrix(0.278799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278799,0.000000,0.000000,0.250000,0,0);}
.m89_c00167{transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);}
.mb6_c00167{transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);}
.m1a_c00167{transform:matrix(0.279464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279464,0.000000,0.000000,0.250000,0,0);}
.m49_c00167{transform:matrix(0.279878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279878,0.000000,0.000000,0.250000,0,0);}
.m6f_c00167{transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);}
.m16_c00167{transform:matrix(0.280068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280068,0.000000,0.000000,0.250000,0,0);}
.mb8_c00167{transform:matrix(0.280769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280769,0.000000,0.000000,0.250000,0,0);}
.m56_c00167{transform:matrix(0.281097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281097,0.000000,0.000000,0.250000,0,0);}
.m36_c00167{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.mbd_c00167{transform:matrix(0.281783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281783,0.000000,0.000000,0.250000,0,0);}
.m95_c00167{transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);}
.m86_c00167{transform:matrix(0.283092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283092,0.000000,0.000000,0.250000,0,0);}
.m69_c00167{transform:matrix(0.283439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283439,0.000000,0.000000,0.250000,0,0);}
.m53_c00167{transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);}
.m99_c00167{transform:matrix(0.285424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285424,0.000000,0.000000,0.250000,0,0);}
.m3_c00167{transform:matrix(0.285694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285694,0.000000,0.000000,0.250000,0,0);}
.m27_c00167{transform:matrix(0.286141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286141,0.000000,0.000000,0.250000,0,0);}
.m87_c00167{transform:matrix(0.286550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286550,0.000000,0.000000,0.250000,0,0);}
.m32_c00167{transform:matrix(0.286780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286780,0.000000,0.000000,0.250000,0,0);}
.m35_c00167{transform:matrix(0.286829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286829,0.000000,0.000000,0.250000,0,0);}
.m64_c00167{transform:matrix(0.287000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00167{transform:matrix(0.287129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287129,0.000000,0.000000,0.250000,0,0);}
.m11_c00167{transform:matrix(0.287216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287216,0.000000,0.000000,0.250000,0,0);}
.m46_c00167{transform:matrix(0.287771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287771,0.000000,0.000000,0.250000,0,0);}
.m23_c00167{transform:matrix(0.288643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288643,0.000000,0.000000,0.250000,0,0);}
.mc1_c00167{transform:matrix(0.288966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288966,0.000000,0.000000,0.250000,0,0);}
.m67_c00167{transform:matrix(0.289299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289299,0.000000,0.000000,0.250000,0,0);}
.mb1_c00167{transform:matrix(0.289321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289321,0.000000,0.000000,0.250000,0,0);}
.m48_c00167{transform:matrix(0.289862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289862,0.000000,0.000000,0.250000,0,0);}
.m71_c00167{transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);}
.m55_c00167{transform:matrix(0.290584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290584,0.000000,0.000000,0.250000,0,0);}
.m6a_c00167{transform:matrix(0.291209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291209,0.000000,0.000000,0.250000,0,0);}
.m1_c00167{transform:matrix(0.291657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291657,0.000000,0.000000,0.250000,0,0);}
.mb7_c00167{transform:matrix(0.292127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292127,0.000000,0.000000,0.250000,0,0);}
.m2e_c00167{transform:matrix(0.292247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292247,0.000000,0.000000,0.250000,0,0);}
.m6d_c00167{transform:matrix(0.292509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292509,0.000000,0.000000,0.250000,0,0);}
.m9_c00167{transform:matrix(0.292643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292643,0.000000,0.000000,0.250000,0,0);}
.m4f_c00167{transform:matrix(0.293739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293739,0.000000,0.000000,0.250000,0,0);}
.m72_c00167{transform:matrix(0.293789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293789,0.000000,0.000000,0.250000,0,0);}
.mb4_c00167{transform:matrix(0.293851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293851,0.000000,0.000000,0.250000,0,0);}
.m31_c00167{transform:matrix(0.293934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293934,0.000000,0.000000,0.250000,0,0);}
.m2d_c00167{transform:matrix(0.294003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294003,0.000000,0.000000,0.250000,0,0);}
.m37_c00167{transform:matrix(0.295436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295436,0.000000,0.000000,0.250000,0,0);}
.m80_c00167{transform:matrix(0.295994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295994,0.000000,0.000000,0.250000,0,0);}
.m33_c00167{transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);}
.mb_c00167{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m77_c00167{transform:matrix(0.297802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297802,0.000000,0.000000,0.250000,0,0);}
.ma7_c00167{transform:matrix(0.299029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299029,0.000000,0.000000,0.250000,0,0);}
.m5b_c00167{transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);}
.m40_c00167{transform:matrix(0.301639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301639,0.000000,0.000000,0.250000,0,0);}
.m8b_c00167{transform:matrix(0.301978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301978,0.000000,0.000000,0.250000,0,0);}
.md_c00167{transform:matrix(0.301982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301982,0.000000,0.000000,0.250000,0,0);}
.m2c_c00167{transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);}
.ma2_c00167{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m9b_c00167{transform:matrix(0.302662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302662,0.000000,0.000000,0.250000,0,0);}
.m1b_c00167{transform:matrix(0.303583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303583,0.000000,0.000000,0.250000,0,0);}
.m28_c00167{transform:matrix(0.303855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303855,0.000000,0.000000,0.250000,0,0);}
.ma4_c00167{transform:matrix(0.304826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304826,0.000000,0.000000,0.250000,0,0);}
.m60_c00167{transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);}
.m2a_c00167{transform:matrix(0.305132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305132,0.000000,0.000000,0.250000,0,0);}
.m38_c00167{transform:matrix(0.305412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305412,0.000000,0.000000,0.250000,0,0);}
.m19_c00167{transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);}
.m42_c00167{transform:matrix(0.305779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305779,0.000000,0.000000,0.250000,0,0);}
.mb3_c00167{transform:matrix(0.306703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306703,0.000000,0.000000,0.250000,0,0);}
.m9a_c00167{transform:matrix(0.306745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306745,0.000000,0.000000,0.250000,0,0);}
.m3b_c00167{transform:matrix(0.307242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307242,0.000000,0.000000,0.250000,0,0);}
.m6e_c00167{transform:matrix(0.307496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307496,0.000000,0.000000,0.250000,0,0);}
.m4d_c00167{transform:matrix(0.307876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307876,0.000000,0.000000,0.250000,0,0);}
.m62_c00167{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m21_c00167{transform:matrix(0.308913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308913,0.000000,0.000000,0.250000,0,0);}
.m7e_c00167{transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);}
.m6_c00167{transform:matrix(0.309282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309282,0.000000,0.000000,0.250000,0,0);}
.m73_c00167{transform:matrix(0.309351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309351,0.000000,0.000000,0.250000,0,0);}
.m1c_c00167{transform:matrix(0.310202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310202,0.000000,0.000000,0.250000,0,0);}
.m7d_c00167{transform:matrix(0.310525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310525,0.000000,0.000000,0.250000,0,0);}
.m96_c00167{transform:matrix(0.310529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310529,0.000000,0.000000,0.250000,0,0);}
.m5d_c00167{transform:matrix(0.311056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311056,0.000000,0.000000,0.250000,0,0);}
.mac_c00167{transform:matrix(0.311204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311204,0.000000,0.000000,0.250000,0,0);}
.mb5_c00167{transform:matrix(0.311437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311437,0.000000,0.000000,0.250000,0,0);}
.m83_c00167{transform:matrix(0.311840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311840,0.000000,0.000000,0.250000,0,0);}
.m50_c00167{transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);}
.m70_c00167{transform:matrix(0.312319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312319,0.000000,0.000000,0.250000,0,0);}
.m92_c00167{transform:matrix(0.312657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312657,0.000000,0.000000,0.250000,0,0);}
.m1f_c00167{transform:matrix(0.312748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312748,0.000000,0.000000,0.250000,0,0);}
.m3c_c00167{transform:matrix(0.313177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313177,0.000000,0.000000,0.250000,0,0);}
.mae_c00167{transform:matrix(0.313434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313434,0.000000,0.000000,0.250000,0,0);}
.m26_c00167{transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);}
.m3e_c00167{transform:matrix(0.314528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314528,0.000000,0.000000,0.250000,0,0);}
.m41_c00167{transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);}
.m4e_c00167{transform:matrix(0.316040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316040,0.000000,0.000000,0.250000,0,0);}
.m34_c00167{transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);}
.mb2_c00167{transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);}
.mba_c00167{transform:matrix(0.317440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317440,0.000000,0.000000,0.250000,0,0);}
.m47_c00167{transform:matrix(0.317925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317925,0.000000,0.000000,0.250000,0,0);}
.m81_c00167{transform:matrix(0.319359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319359,0.000000,0.000000,0.250000,0,0);}
.m57_c00167{transform:matrix(0.319500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319500,0.000000,0.000000,0.250000,0,0);}
.m24_c00167{transform:matrix(0.319572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319572,0.000000,0.000000,0.250000,0,0);}
.m93_c00167{transform:matrix(0.319808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319808,0.000000,0.000000,0.250000,0,0);}
.m4c_c00167{transform:matrix(0.320941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320941,0.000000,0.000000,0.250000,0,0);}
.m51_c00167{transform:matrix(0.321349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321349,0.000000,0.000000,0.250000,0,0);}
.m9c_c00167{transform:matrix(0.322574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322574,0.000000,0.000000,0.250000,0,0);}
.m17_c00167{transform:matrix(0.322717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322717,0.000000,0.000000,0.250000,0,0);}
.m8d_c00167{transform:matrix(0.323122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323122,0.000000,0.000000,0.250000,0,0);}
.m8e_c00167{transform:matrix(0.324566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324566,0.000000,0.000000,0.250000,0,0);}
.mc_c00167{transform:matrix(0.324580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324580,0.000000,0.000000,0.250000,0,0);}
.m59_c00167{transform:matrix(0.325364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325364,0.000000,0.000000,0.250000,0,0);}
.mab_c00167{transform:matrix(0.325473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325473,0.000000,0.000000,0.250000,0,0);}
.maa_c00167{transform:matrix(0.326186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326186,0.000000,0.000000,0.250000,0,0);}
.m79_c00167{transform:matrix(0.327290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327290,0.000000,0.000000,0.250000,0,0);}
.m3d_c00167{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.ma3_c00167{transform:matrix(0.327938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327938,0.000000,0.000000,0.250000,0,0);}
.m68_c00167{transform:matrix(0.329713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329713,0.000000,0.000000,0.250000,0,0);}
.m13_c00167{transform:matrix(0.329812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329812,0.000000,0.000000,0.250000,0,0);}
.m97_c00167{transform:matrix(0.330133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330133,0.000000,0.000000,0.250000,0,0);}
.m5f_c00167{transform:matrix(0.331456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331456,0.000000,0.000000,0.250000,0,0);}
.m7c_c00167{transform:matrix(0.332648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332648,0.000000,0.000000,0.250000,0,0);}
.m15_c00167{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m90_c00167{transform:matrix(0.334121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334121,0.000000,0.000000,0.250000,0,0);}
.m8c_c00167{transform:matrix(0.334551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334551,0.000000,0.000000,0.250000,0,0);}
.m63_c00167{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);}
.m9d_c00167{transform:matrix(0.336407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336407,0.000000,0.000000,0.250000,0,0);}
.m94_c00167{transform:matrix(0.337896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337896,0.000000,0.000000,0.250000,0,0);}
.mbe_c00167{transform:matrix(0.338607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338607,0.000000,0.000000,0.250000,0,0);}
.mf_c00167{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m5c_c00167{transform:matrix(0.340566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340566,0.000000,0.000000,0.250000,0,0);}
.m52_c00167{transform:matrix(0.340687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340687,0.000000,0.000000,0.250000,0,0);}
.mb0_c00167{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.ma1_c00167{transform:matrix(0.347013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347013,0.000000,0.000000,0.250000,0,0);}
.m85_c00167{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.ma6_c00167{transform:matrix(0.349904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349904,0.000000,0.000000,0.250000,0,0);}
.m7_c00167{transform:matrix(0.350956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350956,0.000000,0.000000,0.250000,0,0);}
.m29_c00167{transform:matrix(0.351565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351565,0.000000,0.000000,0.250000,0,0);}
.ma5_c00167{transform:matrix(0.351580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351580,0.000000,0.000000,0.250000,0,0);}
.mad_c00167{transform:matrix(0.351688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351688,0.000000,0.000000,0.250000,0,0);}
.m91_c00167{transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);}
.m5_c00167{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m44_c00167{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);}
.m1e_c00167{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m14_c00167{transform:matrix(0.378961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378961,0.000000,0.000000,0.250000,0,0);}
.m39_c00167{transform:matrix(0.432262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432262,0.000000,0.000000,0.250000,0,0);}
.v1_c00167{vertical-align:-1.445400px;}
.v0_c00167{vertical-align:0.000000px;}
.ls6_c00167{letter-spacing:-2.744280px;}
.ls8_c00167{letter-spacing:-2.375762px;}
.ls10_c00167{letter-spacing:-2.279977px;}
.lsd_c00167{letter-spacing:-1.897474px;}
.ls3_c00167{letter-spacing:0.000000px;}
.ls13_c00167{letter-spacing:0.462607px;}
.lsf_c00167{letter-spacing:0.878170px;}
.lse_c00167{letter-spacing:1.246687px;}
.ls0_c00167{letter-spacing:1.489752px;}
.lsa_c00167{letter-spacing:1.583842px;}
.lsc_c00167{letter-spacing:1.685772px;}
.ls5_c00167{letter-spacing:2.289514px;}
.ls12_c00167{letter-spacing:2.509056px;}
.lsb_c00167{letter-spacing:2.752200px;}
.ls14_c00167{letter-spacing:3.603610px;}
.ls11_c00167{letter-spacing:3.896878px;}
.ls7_c00167{letter-spacing:3.912559px;}
.ls2_c00167{letter-spacing:3.920400px;}
.ls1_c00167{letter-spacing:4.078810px;}
.ls9_c00167{letter-spacing:4.088700px;}
.ls4_c00167{letter-spacing:49.896198px;}
.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:-23.514559px;}
.ws1_c00167{word-spacing:-19.602000px;}
.ws2_c00167{word-spacing:0.000000px;}
._5_c00167{margin-left:-10.349856px;}
._3_c00167{width:3.701650px;}
._d_c00167{width:5.096520px;}
._1_c00167{width:7.213536px;}
._9_c00167{width:8.703288px;}
._4_c00167{width:9.722592px;}
._2_c00167{width:11.525976px;}
._c_c00167{width:20.856528px;}
._8_c00167{width:22.267872px;}
._6_c00167{width:23.679216px;}
._a_c00167{width:25.172136px;}
._b_c00167{width:29.246184px;}
._0_c00167{width:32.051448px;}
._7_c00167{width:34.029072px;}
.fc0_c00167{color:transparent;}
.fs9_c00167{font-size:21.186000px;}
.fsc_c00167{font-size:22.176000px;}
.fs11_c00167{font-size:22.374000px;}
.fs8_c00167{font-size:27.720000px;}
.fs7_c00167{font-size:28.908000px;}
.fs10_c00167{font-size:30.888000px;}
.fsf_c00167{font-size:33.264000px;}
.fsd_c00167{font-size:36.630000px;}
.fs4_c00167{font-size:42.174000px;}
.fse_c00167{font-size:44.352000px;}
.fs2_c00167{font-size:49.896198px;}
.fs5_c00167{font-size:55.044000px;}
.fsa_c00167{font-size:65.142198px;}
.fsb_c00167{font-size:72.072198px;}
.fs6_c00167{font-size:76.032198px;}
.fs1_c00167{font-size:78.408000px;}
.fs0_c00167{font-size:81.576198px;}
.fs3_c00167{font-size:81.774000px;}
.y0_c00167{bottom:0.000000px;}
.y25_c00167{bottom:16.306335px;}
.y24_c00167{bottom:19.513935px;}
.y23_c00167{bottom:49.090185px;}
.y1_c00167{bottom:76.500000px;}
.y22_c00167{bottom:80.101935px;}
.y21_c00167{bottom:114.316335px;}
.y20_c00167{bottom:126.790335px;}
.y1f_c00167{bottom:146.035935px;}
.y1e_c00167{bottom:175.968585px;}
.y1d_c00167{bottom:209.470185px;}
.y1c_c00167{bottom:241.551135px;}
.y1b_c00167{bottom:273.983535px;}
.y1a_c00167{bottom:306.059535px;}
.y19_c00167{bottom:338.486985px;}
.y18_c00167{bottom:370.206585px;}
.y17_c00167{bottom:402.282585px;}
.y16_c00167{bottom:434.719935px;}
.y15_c00167{bottom:469.290735px;}
.y14_c00167{bottom:474.988185px;}
.y12_c00167{bottom:499.228335px;}
.y13_c00167{bottom:504.930735px;}
.y11_c00167{bottom:532.017135px;}
.y10_c00167{bottom:564.088185px;}
.yf_c00167{bottom:596.520585px;}
.ye_c00167{bottom:628.957935px;}
.yd_c00167{bottom:661.390335px;}
.yb_c00167{bottom:693.461385px;}
.yc_c00167{bottom:693.822735px;}
.ya_c00167{bottom:726.250185px;}
.y9_c00167{bottom:746.213535px;}
.y8_c00167{bottom:758.331135px;}
.y7_c00167{bottom:791.119935px;}
.y6_c00167{bottom:823.552335px;}
.y5_c00167{bottom:857.048985px;}
.y4_c00167{bottom:890.199135px;}
.y3_c00167{bottom:922.270185px;}
.y2_c00167{bottom:1072.670985px;}
.h13_c00167{height:21.958857px;}
.hb_c00167{height:22.096336px;}
.he_c00167{height:23.128875px;}
.ha_c00167{height:28.911094px;}
.h9_c00167{height:30.150141px;}
.h12_c00167{height:32.215219px;}
.h4_c00167{height:33.230868px;}
.h11_c00167{height:34.693313px;}
.hf_c00167{height:38.203945px;}
.h6_c00167{height:41.391475px;}
.h10_c00167{height:46.257750px;}
.h7_c00167{height:57.409172px;}
.hc_c00167{height:63.933505px;}
.hd_c00167{height:72.635262px;}
.h8_c00167{height:75.507764px;}
.h3_c00167{height:76.953164px;}
.h2_c00167{height:80.062577px;}
.h5_c00167{height:80.216780px;}
.h1_c00167{height:1110.000000px;}
.h0_c00167{height:1263.000000px;}
.w1_c00167{width:733.500000px;}
.w0_c00167{width:892.500000px;}
.x0_c00167{left:0.000000px;}
.x3b_c00167{left:77.892735px;}
.x1_c00167{left:79.500000px;}
.xf_c00167{left:100.900335px;}
.x24_c00167{left:112.027935px;}
.x5c_c00167{left:121.185435px;}
.x2d_c00167{left:122.284335px;}
.x48_c00167{left:133.471335px;}
.x17_c00167{left:135.159285px;}
.x49_c00167{left:143.282235px;}
.x25_c00167{left:145.183035px;}
.x61_c00167{left:146.276985px;}
.x3c_c00167{left:155.578035px;}
.x59_c00167{left:156.919485px;}
.x37_c00167{left:166.967985px;}
.x41_c00167{left:168.418335px;}
.x18_c00167{left:169.457835px;}
.x2e_c00167{left:177.100635px;}
.x10_c00167{left:178.362885px;}
.x66_c00167{left:179.481585px;}
.x3_c00167{left:189.782535px;}
.x55_c00167{left:199.746885px;}
.x4_c00167{left:200.801235px;}
.x11_c00167{left:211.656585px;}
.x56_c00167{left:222.205035px;}
.x67_c00167{left:223.427685px;}
.x5d_c00167{left:231.624885px;}
.x19_c00167{left:232.669335px;}
.x5_c00167{left:235.005735px;}
.x2f_c00167{left:244.648335px;}
.x1a_c00167{left:246.009585px;}
.x57_c00167{left:254.780985px;}
.x62_c00167{left:256.058085px;}
.x52_c00167{left:257.473785px;}
.x3d_c00167{left:266.274885px;}
.x6_c00167{left:267.423285px;}
.x12_c00167{left:268.447935px;}
.x26_c00167{left:278.516235px;}
.x30_c00167{left:289.366635px;}
.x63_c00167{left:290.920935px;}
.x7_c00167{left:299.741835px;}
.x65_c00167{left:301.276335px;}
.x27_c00167{left:311.394135px;}
.x31_c00167{left:323.061285px;}
.x1b_c00167{left:332.570235px;}
.x4c_c00167{left:333.961185px;}
.x64_c00167{left:343.539435px;}
.x1c_c00167{left:345.128385px;}
.x4e_c00167{left:355.463985px;}
.x8_c00167{left:356.562885px;}
.x3e_c00167{left:366.878685px;}
.x1d_c00167{left:377.946885px;}
.x4a_c00167{left:380.159535px;}
.x42_c00167{left:389.163585px;}
.x9_c00167{left:400.558485px;}
.x1e_c00167{left:410.824785px;}
.x3f_c00167{left:412.116735px;}
.x1f_c00167{left:414.571935px;}
.x5f_c00167{left:422.274135px;}
.x32_c00167{left:423.546285px;}
.x4f_c00167{left:432.114735px;}
.x45_c00167{left:433.867035px;}
.xa_c00167{left:444.950085px;}
.x5b_c00167{left:455.463885px;}
.x28_c00167{left:456.701385px;}
.x43_c00167{left:466.695435px;}
.xb_c00167{left:478.412085px;}
.x58_c00167{left:487.490385px;}
.x33_c00167{left:489.148635px;}
.x13_c00167{left:499.840635px;}
.x20_c00167{left:500.904885px;}
.x38_c00167{left:501.988935px;}
.x60_c00167{left:505.572735px;}
.x5a_c00167{left:510.280185px;}
.xc_c00167{left:511.577085px;}
.x34_c00167{left:522.645285px;}
.x21_c00167{left:533.144235px;}
.x29_c00167{left:534.381735px;}
.x4d_c00167{left:536.129085px;}
.x14_c00167{left:545.108385px;}
.x3a_c00167{left:548.033835px;}
.x53_c00167{left:553.498635px;}
.x35_c00167{left:555.245985px;}
.x39_c00167{left:564.903435px;}
.x46_c00167{left:565.937985px;}
.x2a_c00167{left:567.472485px;}
.xd_c00167{left:577.535835px;}
.x22_c00167{left:588.945585px;}
.x2b_c00167{left:598.786185px;}
.x5e_c00167{left:599.924685px;}
.x50_c00167{left:610.487985px;}
.xe_c00167{left:621.952185px;}
.x15_c00167{left:633.089685px;}
.x23_c00167{left:643.771785px;}
.x36_c00167{left:654.300435px;}
.x2_c00167{left:655.523085px;}
.x16_c00167{left:665.368635px;}
.x2c_c00167{left:666.917985px;}
.x4b_c00167{left:676.610085px;}
.x47_c00167{left:677.966385px;}
.x44_c00167{left:688.737585px;}
.x51_c00167{left:689.980035px;}
.x54_c00167{left:695.113185px;}
.x40_c00167{left:699.028635px;}
@media print{
.v1_c00167{vertical-align:-1.284800pt;}
.v0_c00167{vertical-align:0.000000pt;}
.ls6_c00167{letter-spacing:-2.439360pt;}
.ls8_c00167{letter-spacing:-2.111789pt;}
.ls10_c00167{letter-spacing:-2.026646pt;}
.lsd_c00167{letter-spacing:-1.686643pt;}
.ls3_c00167{letter-spacing:0.000000pt;}
.ls13_c00167{letter-spacing:0.411206pt;}
.lsf_c00167{letter-spacing:0.780595pt;}
.lse_c00167{letter-spacing:1.108166pt;}
.ls0_c00167{letter-spacing:1.324224pt;}
.lsa_c00167{letter-spacing:1.407859pt;}
.lsc_c00167{letter-spacing:1.498464pt;}
.ls5_c00167{letter-spacing:2.035123pt;}
.ls12_c00167{letter-spacing:2.230272pt;}
.lsb_c00167{letter-spacing:2.446400pt;}
.ls14_c00167{letter-spacing:3.203209pt;}
.ls11_c00167{letter-spacing:3.463891pt;}
.ls7_c00167{letter-spacing:3.477830pt;}
.ls2_c00167{letter-spacing:3.484800pt;}
.ls1_c00167{letter-spacing:3.625609pt;}
.ls9_c00167{letter-spacing:3.634400pt;}
.ls4_c00167{letter-spacing:44.352176pt;}
.ws0_c00167{word-spacing:-20.901830pt;}
.ws1_c00167{word-spacing:-17.424000pt;}
.ws2_c00167{word-spacing:0.000000pt;}
._5_c00167{margin-left:-9.199872pt;}
._3_c00167{width:3.290355pt;}
._d_c00167{width:4.530240pt;}
._1_c00167{width:6.412032pt;}
._9_c00167{width:7.736256pt;}
._4_c00167{width:8.642304pt;}
._2_c00167{width:10.245312pt;}
._c_c00167{width:18.539136pt;}
._8_c00167{width:19.793664pt;}
._6_c00167{width:21.048192pt;}
._a_c00167{width:22.375232pt;}
._b_c00167{width:25.996608pt;}
._0_c00167{width:28.490176pt;}
._7_c00167{width:30.248064pt;}
.fs9_c00167{font-size:18.832000pt;}
.fsc_c00167{font-size:19.712000pt;}
.fs11_c00167{font-size:19.888000pt;}
.fs8_c00167{font-size:24.640000pt;}
.fs7_c00167{font-size:25.696000pt;}
.fs10_c00167{font-size:27.456000pt;}
.fsf_c00167{font-size:29.568000pt;}
.fsd_c00167{font-size:32.560000pt;}
.fs4_c00167{font-size:37.488000pt;}
.fse_c00167{font-size:39.424000pt;}
.fs2_c00167{font-size:44.352176pt;}
.fs5_c00167{font-size:48.928000pt;}
.fsa_c00167{font-size:57.904176pt;}
.fsb_c00167{font-size:64.064176pt;}
.fs6_c00167{font-size:67.584176pt;}
.fs1_c00167{font-size:69.696000pt;}
.fs0_c00167{font-size:72.512176pt;}
.fs3_c00167{font-size:72.688000pt;}
.y0_c00167{bottom:0.000000pt;}
.y25_c00167{bottom:14.494520pt;}
.y24_c00167{bottom:17.345720pt;}
.y23_c00167{bottom:43.635720pt;}
.y1_c00167{bottom:68.000000pt;}
.y22_c00167{bottom:71.201720pt;}
.y21_c00167{bottom:101.614520pt;}
.y20_c00167{bottom:112.702520pt;}
.y1f_c00167{bottom:129.809720pt;}
.y1e_c00167{bottom:156.416520pt;}
.y1d_c00167{bottom:186.195720pt;}
.y1c_c00167{bottom:214.712120pt;}
.y1b_c00167{bottom:243.540920pt;}
.y1a_c00167{bottom:272.052920pt;}
.y19_c00167{bottom:300.877320pt;}
.y18_c00167{bottom:329.072520pt;}
.y17_c00167{bottom:357.584520pt;}
.y16_c00167{bottom:386.417720pt;}
.y15_c00167{bottom:417.147320pt;}
.y14_c00167{bottom:422.211720pt;}
.y12_c00167{bottom:443.758520pt;}
.y13_c00167{bottom:448.827320pt;}
.y11_c00167{bottom:472.904120pt;}
.y10_c00167{bottom:501.411720pt;}
.yf_c00167{bottom:530.240520pt;}
.ye_c00167{bottom:559.073720pt;}
.yd_c00167{bottom:587.902520pt;}
.yb_c00167{bottom:616.410120pt;}
.yc_c00167{bottom:616.731320pt;}
.ya_c00167{bottom:645.555720pt;}
.y9_c00167{bottom:663.300920pt;}
.y8_c00167{bottom:674.072120pt;}
.y7_c00167{bottom:703.217720pt;}
.y6_c00167{bottom:732.046520pt;}
.y5_c00167{bottom:761.821320pt;}
.y4_c00167{bottom:791.288120pt;}
.y3_c00167{bottom:819.795720pt;}
.y2_c00167{bottom:953.485320pt;}
.h13_c00167{height:19.518984pt;}
.hb_c00167{height:19.641188pt;}
.he_c00167{height:20.559000pt;}
.ha_c00167{height:25.698750pt;}
.h9_c00167{height:26.800125pt;}
.h12_c00167{height:28.635750pt;}
.h4_c00167{height:29.538549pt;}
.h11_c00167{height:30.838500pt;}
.hf_c00167{height:33.959063pt;}
.h6_c00167{height:36.792422pt;}
.h10_c00167{height:41.118000pt;}
.h7_c00167{height:51.030375pt;}
.hc_c00167{height:56.829782pt;}
.hd_c00167{height:64.564677pt;}
.h8_c00167{height:67.118012pt;}
.h3_c00167{height:68.402813pt;}
.h2_c00167{height:71.166735pt;}
.h5_c00167{height:71.303805pt;}
.h1_c00167{height:986.666667pt;}
.h0_c00167{height:1122.666667pt;}
.w1_c00167{width:652.000000pt;}
.w0_c00167{width:793.333333pt;}
.x0_c00167{left:0.000000pt;}
.x3b_c00167{left:69.237987pt;}
.x1_c00167{left:70.666667pt;}
.xf_c00167{left:89.689187pt;}
.x24_c00167{left:99.580387pt;}
.x5c_c00167{left:107.720387pt;}
.x2d_c00167{left:108.697187pt;}
.x48_c00167{left:118.641187pt;}
.x17_c00167{left:120.141587pt;}
.x49_c00167{left:127.361987pt;}
.x25_c00167{left:129.051587pt;}
.x61_c00167{left:130.023987pt;}
.x3c_c00167{left:138.291587pt;}
.x59_c00167{left:139.483987pt;}
.x37_c00167{left:148.415987pt;}
.x41_c00167{left:149.705187pt;}
.x18_c00167{left:150.629187pt;}
.x2e_c00167{left:157.422787pt;}
.x10_c00167{left:158.544787pt;}
.x66_c00167{left:159.539187pt;}
.x3_c00167{left:168.695587pt;}
.x55_c00167{left:177.552787pt;}
.x4_c00167{left:178.489987pt;}
.x11_c00167{left:188.139187pt;}
.x56_c00167{left:197.515587pt;}
.x67_c00167{left:198.602387pt;}
.x5d_c00167{left:205.888787pt;}
.x19_c00167{left:206.817187pt;}
.x5_c00167{left:208.893987pt;}
.x2f_c00167{left:217.465187pt;}
.x1a_c00167{left:218.675187pt;}
.x57_c00167{left:226.471987pt;}
.x62_c00167{left:227.607187pt;}
.x52_c00167{left:228.865587pt;}
.x3d_c00167{left:236.688787pt;}
.x6_c00167{left:237.709587pt;}
.x12_c00167{left:238.620387pt;}
.x26_c00167{left:247.569987pt;}
.x30_c00167{left:257.214787pt;}
.x63_c00167{left:258.596387pt;}
.x7_c00167{left:266.437187pt;}
.x65_c00167{left:267.801187pt;}
.x27_c00167{left:276.794787pt;}
.x31_c00167{left:287.165587pt;}
.x1b_c00167{left:295.617987pt;}
.x4c_c00167{left:296.854387pt;}
.x64_c00167{left:305.368387pt;}
.x1c_c00167{left:306.780787pt;}
.x4e_c00167{left:315.967987pt;}
.x8_c00167{left:316.944787pt;}
.x3e_c00167{left:326.114387pt;}
.x1d_c00167{left:335.952787pt;}
.x4a_c00167{left:337.919587pt;}
.x42_c00167{left:345.923187pt;}
.x9_c00167{left:356.051987pt;}
.x1e_c00167{left:365.177587pt;}
.x3f_c00167{left:366.325987pt;}
.x1f_c00167{left:368.508387pt;}
.x5f_c00167{left:375.354787pt;}
.x32_c00167{left:376.485587pt;}
.x4f_c00167{left:384.101987pt;}
.x45_c00167{left:385.659587pt;}
.xa_c00167{left:395.511187pt;}
.x5b_c00167{left:404.856787pt;}
.x28_c00167{left:405.956787pt;}
.x43_c00167{left:414.840387pt;}
.xb_c00167{left:425.255187pt;}
.x58_c00167{left:433.324787pt;}
.x33_c00167{left:434.798787pt;}
.x13_c00167{left:444.302787pt;}
.x20_c00167{left:445.248787pt;}
.x38_c00167{left:446.212387pt;}
.x60_c00167{left:449.397987pt;}
.x5a_c00167{left:453.582387pt;}
.xc_c00167{left:454.735187pt;}
.x34_c00167{left:464.573587pt;}
.x21_c00167{left:473.905987pt;}
.x29_c00167{left:475.005987pt;}
.x4d_c00167{left:476.559187pt;}
.x14_c00167{left:484.540787pt;}
.x3a_c00167{left:487.141187pt;}
.x53_c00167{left:491.998787pt;}
.x35_c00167{left:493.551987pt;}
.x39_c00167{left:502.136387pt;}
.x46_c00167{left:503.055987pt;}
.x2a_c00167{left:504.419987pt;}
.xd_c00167{left:513.365187pt;}
.x22_c00167{left:523.507187pt;}
.x2b_c00167{left:532.254387pt;}
.x5e_c00167{left:533.266387pt;}
.x50_c00167{left:542.655987pt;}
.xe_c00167{left:552.846387pt;}
.x15_c00167{left:562.746387pt;}
.x23_c00167{left:572.241587pt;}
.x36_c00167{left:581.600387pt;}
.x2_c00167{left:582.687187pt;}
.x16_c00167{left:591.438787pt;}
.x2c_c00167{left:592.815987pt;}
.x4b_c00167{left:601.431187pt;}
.x47_c00167{left:602.636787pt;}
.x44_c00167{left:612.211187pt;}
.x51_c00167{left:613.315587pt;}
.x54_c00167{left:617.878387pt;}
.x40_c00167{left:621.358787pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8346adee42ffa909cd30215d.woff2')format("woff");}.ff1_c00168{font-family:ff1_c00168;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00168;src:url('chunks/assets/font_e0983ec86750e85c7a9cb3ce.woff2')format("woff");}.ff2_c00168{font-family:ff2_c00168;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00168;src:url('chunks/assets/font_c9d453b5f553232a2d483a2c.woff2')format("woff");}.ff3_c00168{font-family:ff3_c00168;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00168;src:url('chunks/assets/font_e5ccfc9998e172e2109ca615.woff2')format("woff");}.ff4_c00168{font-family:ff4_c00168;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00168;src:url('chunks/assets/font_c90ebc24332ac755fb9d37f1.woff2')format("woff");}.ff5_c00168{font-family:ff5_c00168;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m9c_c00168{transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);}
.mc0_c00168{transform:matrix(0.125853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125853,0.000000,0.000000,0.250000,0,0);}
.m30_c00168{transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);}
.m24_c00168{transform:matrix(0.199491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199491,0.000000,0.000000,0.250000,0,0);}
.m2f_c00168{transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);}
.m1e_c00168{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m47_c00168{transform:matrix(0.232318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232318,0.000000,0.000000,0.250000,0,0);}
.m3b_c00168{transform:matrix(0.238101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238101,0.000000,0.000000,0.250000,0,0);}
.m49_c00168{transform:matrix(0.249055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249055,0.000000,0.000000,0.250000,0,0);}
.m7f_c00168{transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);}
.m0_c00168{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00168{transform:matrix(0.251642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251642,0.000000,0.000000,0.250000,0,0);}
.mb9_c00168{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.ma_c00168{transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);}
.m99_c00168{transform:matrix(0.253191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253191,0.000000,0.000000,0.250000,0,0);}
.m96_c00168{transform:matrix(0.253545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253545,0.000000,0.000000,0.250000,0,0);}
.m2b_c00168{transform:matrix(0.254549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254549,0.000000,0.000000,0.250000,0,0);}
.ma8_c00168{transform:matrix(0.255196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255196,0.000000,0.000000,0.250000,0,0);}
.m17_c00168{transform:matrix(0.257308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257308,0.000000,0.000000,0.250000,0,0);}
.m9d_c00168{transform:matrix(0.257621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257621,0.000000,0.000000,0.250000,0,0);}
.mbd_c00168{transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);}
.ma3_c00168{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m1a_c00168{transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);}
.m8a_c00168{transform:matrix(0.260157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260157,0.000000,0.000000,0.250000,0,0);}
.m61_c00168{transform:matrix(0.260233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260233,0.000000,0.000000,0.250000,0,0);}
.m74_c00168{transform:matrix(0.260405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260405,0.000000,0.000000,0.250000,0,0);}
.m75_c00168{transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);}
.m58_c00168{transform:matrix(0.260785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260785,0.000000,0.000000,0.250000,0,0);}
.m51_c00168{transform:matrix(0.260937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260937,0.000000,0.000000,0.250000,0,0);}
.m8b_c00168{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.mc2_c00168{transform:matrix(0.261904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261904,0.000000,0.000000,0.250000,0,0);}
.m5f_c00168{transform:matrix(0.262539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262539,0.000000,0.000000,0.250000,0,0);}
.md_c00168{transform:matrix(0.263083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263083,0.000000,0.000000,0.250000,0,0);}
.m8_c00168{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m86_c00168{transform:matrix(0.263305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263305,0.000000,0.000000,0.250000,0,0);}
.mc_c00168{transform:matrix(0.263649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263649,0.000000,0.000000,0.250000,0,0);}
.m9f_c00168{transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);}
.m5d_c00168{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m90_c00168{transform:matrix(0.265156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265156,0.000000,0.000000,0.250000,0,0);}
.m34_c00168{transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);}
.m33_c00168{transform:matrix(0.266021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266021,0.000000,0.000000,0.250000,0,0);}
.m18_c00168{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m2d_c00168{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m62_c00168{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.mc5_c00168{transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);}
.m52_c00168{transform:matrix(0.269485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269485,0.000000,0.000000,0.250000,0,0);}
.m5e_c00168{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m8c_c00168{transform:matrix(0.271388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271388,0.000000,0.000000,0.250000,0,0);}
.m14_c00168{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m76_c00168{transform:matrix(0.272609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272609,0.000000,0.000000,0.250000,0,0);}
.mae_c00168{transform:matrix(0.273647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273647,0.000000,0.000000,0.250000,0,0);}
.m63_c00168{transform:matrix(0.273760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273760,0.000000,0.000000,0.250000,0,0);}
.mb5_c00168{transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);}
.m1f_c00168{transform:matrix(0.274422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274422,0.000000,0.000000,0.250000,0,0);}
.m1_c00168{transform:matrix(0.274657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274657,0.000000,0.000000,0.250000,0,0);}
.m85_c00168{transform:matrix(0.274664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274664,0.000000,0.000000,0.250000,0,0);}
.m11_c00168{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m28_c00168{transform:matrix(0.277672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277672,0.000000,0.000000,0.250000,0,0);}
.m9a_c00168{transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);}
.mba_c00168{transform:matrix(0.278817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278817,0.000000,0.000000,0.250000,0,0);}
.m6c_c00168{transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);}
.m82_c00168{transform:matrix(0.279941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279941,0.000000,0.000000,0.250000,0,0);}
.m13_c00168{transform:matrix(0.281453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281453,0.000000,0.000000,0.250000,0,0);}
.m5c_c00168{transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);}
.mb7_c00168{transform:matrix(0.282265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282265,0.000000,0.000000,0.250000,0,0);}
.m92_c00168{transform:matrix(0.282439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282439,0.000000,0.000000,0.250000,0,0);}
.m91_c00168{transform:matrix(0.282587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282587,0.000000,0.000000,0.250000,0,0);}
.mb2_c00168{transform:matrix(0.282781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282781,0.000000,0.000000,0.250000,0,0);}
.m71_c00168{transform:matrix(0.283223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283223,0.000000,0.000000,0.250000,0,0);}
.m39_c00168{transform:matrix(0.283366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283366,0.000000,0.000000,0.250000,0,0);}
.m72_c00168{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m87_c00168{transform:matrix(0.283710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283710,0.000000,0.000000,0.250000,0,0);}
.ma2_c00168{transform:matrix(0.285008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285008,0.000000,0.000000,0.250000,0,0);}
.m3d_c00168{transform:matrix(0.285424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285424,0.000000,0.000000,0.250000,0,0);}
.m4e_c00168{transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);}
.maa_c00168{transform:matrix(0.286031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286031,0.000000,0.000000,0.250000,0,0);}
.m21_c00168{transform:matrix(0.286235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286235,0.000000,0.000000,0.250000,0,0);}
.m57_c00168{transform:matrix(0.286238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286238,0.000000,0.000000,0.250000,0,0);}
.m43_c00168{transform:matrix(0.286908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286908,0.000000,0.000000,0.250000,0,0);}
.ma7_c00168{transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);}
.m67_c00168{transform:matrix(0.287574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287574,0.000000,0.000000,0.250000,0,0);}
.mc1_c00168{transform:matrix(0.287596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287596,0.000000,0.000000,0.250000,0,0);}
.maf_c00168{transform:matrix(0.287771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287771,0.000000,0.000000,0.250000,0,0);}
.mc9_c00168{transform:matrix(0.288091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288091,0.000000,0.000000,0.250000,0,0);}
.ma9_c00168{transform:matrix(0.288623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288623,0.000000,0.000000,0.250000,0,0);}
.m70_c00168{transform:matrix(0.290155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290155,0.000000,0.000000,0.250000,0,0);}
.m7b_c00168{transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);}
.m8d_c00168{transform:matrix(0.290479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290479,0.000000,0.000000,0.250000,0,0);}
.m2a_c00168{transform:matrix(0.290594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290594,0.000000,0.000000,0.250000,0,0);}
.m31_c00168{transform:matrix(0.290637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290637,0.000000,0.000000,0.250000,0,0);}
.m9e_c00168{transform:matrix(0.291185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291185,0.000000,0.000000,0.250000,0,0);}
.m4b_c00168{transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);}
.m35_c00168{transform:matrix(0.292334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292334,0.000000,0.000000,0.250000,0,0);}
.m7e_c00168{transform:matrix(0.293403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293403,0.000000,0.000000,0.250000,0,0);}
.mb3_c00168{transform:matrix(0.293651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293651,0.000000,0.000000,0.250000,0,0);}
.m80_c00168{transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);}
.m7c_c00168{transform:matrix(0.293747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293747,0.000000,0.000000,0.250000,0,0);}
.m19_c00168{transform:matrix(0.294129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294129,0.000000,0.000000,0.250000,0,0);}
.mbe_c00168{transform:matrix(0.295068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295068,0.000000,0.000000,0.250000,0,0);}
.m26_c00168{transform:matrix(0.295190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295190,0.000000,0.000000,0.250000,0,0);}
.mad_c00168{transform:matrix(0.295220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295220,0.000000,0.000000,0.250000,0,0);}
.m44_c00168{transform:matrix(0.295238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295238,0.000000,0.000000,0.250000,0,0);}
.m84_c00168{transform:matrix(0.295259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295259,0.000000,0.000000,0.250000,0,0);}
.m29_c00168{transform:matrix(0.295326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295326,0.000000,0.000000,0.250000,0,0);}
.mf_c00168{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m41_c00168{transform:matrix(0.297294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297294,0.000000,0.000000,0.250000,0,0);}
.m4a_c00168{transform:matrix(0.297483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297483,0.000000,0.000000,0.250000,0,0);}
.m55_c00168{transform:matrix(0.298085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298085,0.000000,0.000000,0.250000,0,0);}
.mc8_c00168{transform:matrix(0.298152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298152,0.000000,0.000000,0.250000,0,0);}
.m98_c00168{transform:matrix(0.298565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298565,0.000000,0.000000,0.250000,0,0);}
.mab_c00168{transform:matrix(0.298629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298629,0.000000,0.000000,0.250000,0,0);}
.m2e_c00168{transform:matrix(0.298672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298672,0.000000,0.000000,0.250000,0,0);}
.mb4_c00168{transform:matrix(0.300215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300215,0.000000,0.000000,0.250000,0,0);}
.m97_c00168{transform:matrix(0.300360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300360,0.000000,0.000000,0.250000,0,0);}
.ma6_c00168{transform:matrix(0.300395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300395,0.000000,0.000000,0.250000,0,0);}
.mca_c00168{transform:matrix(0.300662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300662,0.000000,0.000000,0.250000,0,0);}
.m6d_c00168{transform:matrix(0.301154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301154,0.000000,0.000000,0.250000,0,0);}
.m81_c00168{transform:matrix(0.301194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301194,0.000000,0.000000,0.250000,0,0);}
.m65_c00168{transform:matrix(0.301257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301257,0.000000,0.000000,0.250000,0,0);}
.m16_c00168{transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);}
.m94_c00168{transform:matrix(0.302563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302563,0.000000,0.000000,0.250000,0,0);}
.m2_c00168{transform:matrix(0.302857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302857,0.000000,0.000000,0.250000,0,0);}
.ma0_c00168{transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);}
.m7_c00168{transform:matrix(0.303477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303477,0.000000,0.000000,0.250000,0,0);}
.m32_c00168{transform:matrix(0.304289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304289,0.000000,0.000000,0.250000,0,0);}
.m5a_c00168{transform:matrix(0.304812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304812,0.000000,0.000000,0.250000,0,0);}
.mb0_c00168{transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);}
.m4f_c00168{transform:matrix(0.305194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305194,0.000000,0.000000,0.250000,0,0);}
.m3_c00168{transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);}
.m38_c00168{transform:matrix(0.306813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306813,0.000000,0.000000,0.250000,0,0);}
.m60_c00168{transform:matrix(0.306902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306902,0.000000,0.000000,0.250000,0,0);}
.m3c_c00168{transform:matrix(0.307034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307034,0.000000,0.000000,0.250000,0,0);}
.m50_c00168{transform:matrix(0.307049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307049,0.000000,0.000000,0.250000,0,0);}
.m8f_c00168{transform:matrix(0.307478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307478,0.000000,0.000000,0.250000,0,0);}
.mc7_c00168{transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);}
.m6b_c00168{transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);}
.mb6_c00168{transform:matrix(0.308140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308140,0.000000,0.000000,0.250000,0,0);}
.m7a_c00168{transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);}
.m9_c00168{transform:matrix(0.308789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308789,0.000000,0.000000,0.250000,0,0);}
.ma4_c00168{transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);}
.m4_c00168{transform:matrix(0.308915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308915,0.000000,0.000000,0.250000,0,0);}
.mc6_c00168{transform:matrix(0.309672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309672,0.000000,0.000000,0.250000,0,0);}
.m59_c00168{transform:matrix(0.309994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309994,0.000000,0.000000,0.250000,0,0);}
.m12_c00168{transform:matrix(0.310723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310723,0.000000,0.000000,0.250000,0,0);}
.m48_c00168{transform:matrix(0.311266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311266,0.000000,0.000000,0.250000,0,0);}
.m5_c00168{transform:matrix(0.312694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312694,0.000000,0.000000,0.250000,0,0);}
.mc3_c00168{transform:matrix(0.313583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313583,0.000000,0.000000,0.250000,0,0);}
.m73_c00168{transform:matrix(0.313670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313670,0.000000,0.000000,0.250000,0,0);}
.m69_c00168{transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);}
.m79_c00168{transform:matrix(0.313920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313920,0.000000,0.000000,0.250000,0,0);}
.m7d_c00168{transform:matrix(0.315273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315273,0.000000,0.000000,0.250000,0,0);}
.mbc_c00168{transform:matrix(0.316145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316145,0.000000,0.000000,0.250000,0,0);}
.m66_c00168{transform:matrix(0.317836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317836,0.000000,0.000000,0.250000,0,0);}
.m77_c00168{transform:matrix(0.317925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317925,0.000000,0.000000,0.250000,0,0);}
.m3e_c00168{transform:matrix(0.318218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318218,0.000000,0.000000,0.250000,0,0);}
.m36_c00168{transform:matrix(0.319542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319542,0.000000,0.000000,0.250000,0,0);}
.mbf_c00168{transform:matrix(0.319696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319696,0.000000,0.000000,0.250000,0,0);}
.mc4_c00168{transform:matrix(0.320130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320130,0.000000,0.000000,0.250000,0,0);}
.m89_c00168{transform:matrix(0.320140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320140,0.000000,0.000000,0.250000,0,0);}
.m1c_c00168{transform:matrix(0.320152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320152,0.000000,0.000000,0.250000,0,0);}
.m4c_c00168{transform:matrix(0.321274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321274,0.000000,0.000000,0.250000,0,0);}
.ma5_c00168{transform:matrix(0.321833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321833,0.000000,0.000000,0.250000,0,0);}
.m64_c00168{transform:matrix(0.322386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322386,0.000000,0.000000,0.250000,0,0);}
.me_c00168{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.m37_c00168{transform:matrix(0.324867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324867,0.000000,0.000000,0.250000,0,0);}
.m6e_c00168{transform:matrix(0.326313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326313,0.000000,0.000000,0.250000,0,0);}
.m23_c00168{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.mb_c00168{transform:matrix(0.327174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327174,0.000000,0.000000,0.250000,0,0);}
.m53_c00168{transform:matrix(0.327297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327297,0.000000,0.000000,0.250000,0,0);}
.m25_c00168{transform:matrix(0.329081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329081,0.000000,0.000000,0.250000,0,0);}
.m83_c00168{transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);}
.m6f_c00168{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.ma1_c00168{transform:matrix(0.333537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333537,0.000000,0.000000,0.250000,0,0);}
.m46_c00168{transform:matrix(0.334418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334418,0.000000,0.000000,0.250000,0,0);}
.m78_c00168{transform:matrix(0.336348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336348,0.000000,0.000000,0.250000,0,0);}
.m2c_c00168{transform:matrix(0.336976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336976,0.000000,0.000000,0.250000,0,0);}
.m54_c00168{transform:matrix(0.338432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338432,0.000000,0.000000,0.250000,0,0);}
.mbb_c00168{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.mac_c00168{transform:matrix(0.339761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339761,0.000000,0.000000,0.250000,0,0);}
.m10_c00168{transform:matrix(0.339847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339847,0.000000,0.000000,0.250000,0,0);}
.m3a_c00168{transform:matrix(0.339963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339963,0.000000,0.000000,0.250000,0,0);}
.m22_c00168{transform:matrix(0.340207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340207,0.000000,0.000000,0.250000,0,0);}
.m5b_c00168{transform:matrix(0.340822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340822,0.000000,0.000000,0.250000,0,0);}
.m15_c00168{transform:matrix(0.340828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340828,0.000000,0.000000,0.250000,0,0);}
.m9b_c00168{transform:matrix(0.341375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341375,0.000000,0.000000,0.250000,0,0);}
.m45_c00168{transform:matrix(0.341871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341871,0.000000,0.000000,0.250000,0,0);}
.m95_c00168{transform:matrix(0.342783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342783,0.000000,0.000000,0.250000,0,0);}
.m68_c00168{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.m93_c00168{transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);}
.m6a_c00168{transform:matrix(0.343489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343489,0.000000,0.000000,0.250000,0,0);}
.m20_c00168{transform:matrix(0.343594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343594,0.000000,0.000000,0.250000,0,0);}
.m40_c00168{transform:matrix(0.345480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345480,0.000000,0.000000,0.250000,0,0);}
.m88_c00168{transform:matrix(0.347013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347013,0.000000,0.000000,0.250000,0,0);}
.m1d_c00168{transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);}
.mb1_c00168{transform:matrix(0.347613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347613,0.000000,0.000000,0.250000,0,0);}
.m4d_c00168{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.mb8_c00168{transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);}
.m6_c00168{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m3f_c00168{transform:matrix(0.359665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359665,0.000000,0.000000,0.250000,0,0);}
.m1b_c00168{transform:matrix(0.365727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365727,0.000000,0.000000,0.250000,0,0);}
.m56_c00168{transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);}
.m27_c00168{transform:matrix(0.369771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369771,0.000000,0.000000,0.250000,0,0);}
.m42_c00168{transform:matrix(0.388396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388396,0.000000,0.000000,0.250000,0,0);}
.v1_c00168{vertical-align:-25.660800px;}
.v0_c00168{vertical-align:0.000000px;}
.ls7_c00168{letter-spacing:-2.744280px;}
.ls10_c00168{letter-spacing:-2.079000px;}
.ls2_c00168{letter-spacing:0.000000px;}
.ls0_c00168{letter-spacing:0.352836px;}
.ls5_c00168{letter-spacing:0.399881px;}
.ls1_c00168{letter-spacing:0.940896px;}
.lse_c00168{letter-spacing:1.764180px;}
.lsa_c00168{letter-spacing:1.873951px;}
.lsb_c00168{letter-spacing:2.783484px;}
.lsf_c00168{letter-spacing:3.276900px;}
.ls11_c00168{letter-spacing:3.484810px;}
.ls9_c00168{letter-spacing:3.623400px;}
.ls3_c00168{letter-spacing:3.692700px;}
.ls4_c00168{letter-spacing:3.920400px;}
.lsc_c00168{letter-spacing:4.474810px;}
.lsd_c00168{letter-spacing:31.363200px;}
.ls8_c00168{letter-spacing:49.896198px;}
.ls6_c00168{letter-spacing:51.321798px;}
.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;}
}
.ws4_c00168{word-spacing:-22.385484px;}
.ws7_c00168{word-spacing:-21.366180px;}
.ws5_c00168{word-spacing:-20.542896px;}
.ws3_c00168{word-spacing:-19.954836px;}
.ws1_c00168{word-spacing:-19.602000px;}
.ws2_c00168{word-spacing:-0.072468px;}
.ws8_c00168{word-spacing:0.000000px;}
.ws0_c00168{word-spacing:0.078408px;}
.ws6_c00168{word-spacing:6.899904px;}
._11_c00168{margin-left:-13.015728px;}
._13_c00168{margin-left:-10.663488px;}
._5_c00168{margin-left:-5.488560px;}
._b_c00168{width:3.293136px;}
._4_c00168{width:4.626072px;}
._2_c00168{width:6.507864px;}
._8_c00168{width:8.389656px;}
._6_c00168{width:10.977120px;}
._f_c00168{width:12.623688px;}
._3_c00168{width:20.778120px;}
._a_c00168{width:22.441320px;}
._9_c00168{width:24.620112px;}
._12_c00168{width:25.913448px;}
._15_c00168{width:27.991656px;}
._c_c00168{width:31.081248px;}
._d_c00168{width:32.382504px;}
._1_c00168{width:33.950664px;}
._e_c00168{width:36.773352px;}
._10_c00168{width:39.639451px;}
._7_c00168{width:44.927784px;}
._14_c00168{width:49.867488px;}
._0_c00168{width:724.322808px;}
.fc0_c00168{color:transparent;}
.fs1_c00168{font-size:22.176000px;}
.fs0_c00168{font-size:27.720000px;}
.fsc_c00168{font-size:31.363200px;}
.fs2_c00168{font-size:33.264000px;}
.fs6_c00168{font-size:33.660000px;}
.fsd_c00168{font-size:39.600000px;}
.fs7_c00168{font-size:49.896198px;}
.fs5_c00168{font-size:51.321798px;}
.fsf_c00168{font-size:59.400000px;}
.fs10_c00168{font-size:62.568000px;}
.fse_c00168{font-size:65.538000px;}
.fsb_c00168{font-size:66.528000px;}
.fsa_c00168{font-size:69.696198px;}
.fs8_c00168{font-size:72.468000px;}
.fs3_c00168{font-size:73.854000px;}
.fs4_c00168{font-size:78.408000px;}
.fs9_c00168{font-size:89.496198px;}
.y0_c00168{bottom:0.000000px;}
.y27_c00168{bottom:64.420335px;}
.y1_c00168{bottom:76.500000px;}
.y26_c00168{bottom:92.219535px;}
.y3_c00168{bottom:123.939135px;}
.y25_c00168{bottom:156.722985px;}
.y24_c00168{bottom:187.734735px;}
.y23_c00168{bottom:221.231385px;}
.y22_c00168{bottom:223.731135px;}
.y21_c00168{bottom:245.110185px;}
.y20_c00168{bottom:251.173935px;}
.y1f_c00168{bottom:283.601385px;}
.y1e_c00168{bottom:316.038735px;}
.y1d_c00168{bottom:348.114735px;}
.y1c_c00168{bottom:364.147785px;}
.y1b_c00168{bottom:371.637135px;}
.y1a_c00168{bottom:380.190735px;}
.y18_c00168{bottom:380.547135px;}
.y19_c00168{bottom:395.154585px;}
.y17_c00168{bottom:412.261785px;}
.y16_c00168{bottom:444.337785px;}
.y15_c00168{bottom:476.418735px;}
.y14_c00168{bottom:508.489785px;}
.y13_c00168{bottom:540.570735px;}
.y12_c00168{bottom:573.003135px;}
.y11_c00168{bottom:606.143385px;}
.y10_c00168{bottom:638.932185px;}
.yf_c00168{bottom:671.013135px;}
.ye_c00168{bottom:703.801935px;}
.yd_c00168{bottom:735.516585px;}
.yb_c00168{bottom:768.666735px;}
.ya_c00168{bottom:825.334335px;}
.y9_c00168{bottom:833.170185px;}
.y8_c00168{bottom:865.607535px;}
.y7_c00168{bottom:898.039935px;}
.y6_c00168{bottom:930.472335px;}
.yc_c00168{bottom:988.204185px;}
.y5_c00168{bottom:1079.442585px;}
.y4_c00168{bottom:1085.857785px;}
.y2_c00168{bottom:1087.639785px;}
.hd_c00168{height:20.887891px;}
.h3_c00168{height:23.128875px;}
.h2_c00168{height:28.911094px;}
.h8_c00168{height:33.035449px;}
.h9_c00168{height:33.230868px;}
.h7_c00168{height:34.180317px;}
.he_c00168{height:41.301563px;}
.h4_c00168{height:46.822862px;}
.h10_c00168{height:61.836328px;}
.h12_c00168{height:65.256469px;}
.hf_c00168{height:68.354086px;}
.h13_c00168{height:68.403007px;}
.hc_c00168{height:69.386625px;}
.ha_c00168{height:71.087994px;}
.h5_c00168{height:72.483662px;}
.h11_c00168{height:72.554831px;}
.h6_c00168{height:76.953164px;}
.hb_c00168{height:87.835624px;}
.h1_c00168{height:1110.000000px;}
.h0_c00168{height:1263.000000px;}
.w1_c00168{width:733.500000px;}
.w0_c00168{width:892.500000px;}
.x0_c00168{left:0.000000px;}
.x2_c00168{left:47.687835px;}
.x3c_c00168{left:74.818785px;}
.x1f_c00168{left:76.046385px;}
.x5_c00168{left:77.803635px;}
.x1_c00168{left:79.500000px;}
.x37_c00168{left:86.931435px;}
.x6f_c00168{left:98.385735px;}
.x38_c00168{left:108.741135px;}
.x11_c00168{left:110.196435px;}
.x49_c00168{left:118.690635px;}
.x3d_c00168{left:119.928135px;}
.x20_c00168{left:120.982485px;}
.x70_c00168{left:122.556585px;}
.x2e_c00168{left:130.342935px;}
.x12_c00168{left:132.030885px;}
.x61_c00168{left:141.980385px;}
.x6_c00168{left:143.074335px;}
.x4f_c00168{left:152.865435px;}
.x21_c00168{left:154.489035px;}
.x2f_c00168{left:164.106885px;}
.x13_c00168{left:165.176085px;}
.x62_c00168{left:166.854135px;}
.x14_c00168{left:175.853235px;}
.x7_c00168{left:186.441285px;}
.x22_c00168{left:187.965885px;}
.x57_c00168{left:197.588685px;}
.x39_c00168{left:198.633135px;}
.x23_c00168{left:208.825185px;}
.x63_c00168{left:210.092385px;}
.x30_c00168{left:216.656085px;}
.x5a_c00168{left:218.804385px;}
.x15_c00168{left:220.289385px;}
.x8_c00168{left:231.332835px;}
.x4a_c00168{left:240.911085px;}
.x9_c00168{left:242.148585px;}
.x50_c00168{left:252.855435px;}
.x16_c00168{left:253.889985px;}
.x67_c00168{left:263.359335px;}
.x2b_c00168{left:265.250235px;}
.x5c_c00168{left:274.397835px;}
.x3a_c00168{left:275.457135px;}
.x24_c00168{left:287.059935px;}
.x60_c00168{left:296.563935px;}
.x17_c00168{left:298.113285px;}
.x45_c00168{left:307.770735px;}
.x25_c00168{left:309.527985px;}
.x2c_c00168{left:320.373435px;}
.x42_c00168{left:329.996235px;}
.x26_c00168{left:331.119885px;}
.x18_c00168{left:341.084235px;}
.x53_c00168{left:352.291035px;}
.xa_c00168{left:353.355285px;}
.x58_c00168{left:355.033335px;}
.x19_c00168{left:364.403685px;}
.x3e_c00168{left:373.873035px;}
.x46_c00168{left:375.130335px;}
.x2d_c00168{left:377.481585px;}
.x1a_c00168{left:386.381685px;}
.x64_c00168{left:396.836085px;}
.xb_c00168{left:397.865685px;}
.x3f_c00168{left:408.607185px;}
.x6c_c00168{left:410.443635px;}
.x5b_c00168{left:417.710235px;}
.x47_c00168{left:420.308985px;}
.xc_c00168{left:431.050485px;}
.x27_c00168{left:442.376085px;}
.x31_c00168{left:451.568235px;}
.x54_c00168{left:452.954235px;}
.x4b_c00168{left:463.794735px;}
.x40_c00168{left:464.849085px;}
.x3_c00168{left:466.413285px;}
.x28_c00168{left:473.669985px;}
.x3b_c00168{left:486.168735px;}
.x51_c00168{left:496.073685px;}
.x4c_c00168{left:497.326035px;}
.x59_c00168{left:504.315435px;}
.x1b_c00168{left:508.037835px;}
.x48_c00168{left:509.082285px;}
.x68_c00168{left:518.101185px;}
.x43_c00168{left:519.665385px;}
.x32_c00168{left:530.134635px;}
.x1c_c00168{left:541.054335px;}
.x4d_c00168{left:552.231435px;}
.x33_c00168{left:563.616435px;}
.x66_c00168{left:572.387835px;}
.xd_c00168{left:574.684635px;}
.x4e_c00168{left:585.723135px;}
.x6d_c00168{left:595.227135px;}
.x6b_c00168{left:605.166735px;}
.x56_c00168{left:606.701235px;}
.xe_c00168{left:607.790235px;}
.x1d_c00168{left:618.155535px;}
.x34_c00168{left:629.367285px;}
.x5e_c00168{left:638.990085px;}
.x29_c00168{left:640.044435px;}
.x69_c00168{left:649.988985px;}
.x1e_c00168{left:651.092835px;}
.x44_c00168{left:652.642185px;}
.x55_c00168{left:661.131435px;}
.x41_c00168{left:662.314485px;}
.x4_c00168{left:663.631185px;}
.x6e_c00168{left:673.417335px;}
.xf_c00168{left:675.194385px;}
.x2a_c00168{left:685.163685px;}
.x65_c00168{left:694.930035px;}
.x10_c00168{left:696.538785px;}
.x5d_c00168{left:699.365235px;}
.x5f_c00168{left:703.305435px;}
.x35_c00168{left:707.295135px;}
.x52_c00168{left:717.922785px;}
.x36_c00168{left:726.223935px;}
.x6a_c00168{left:730.931385px;}
@media print{
.v1_c00168{vertical-align:-22.809600pt;}
.v0_c00168{vertical-align:0.000000pt;}
.ls7_c00168{letter-spacing:-2.439360pt;}
.ls10_c00168{letter-spacing:-1.848000pt;}
.ls2_c00168{letter-spacing:0.000000pt;}
.ls0_c00168{letter-spacing:0.313632pt;}
.ls5_c00168{letter-spacing:0.355450pt;}
.ls1_c00168{letter-spacing:0.836352pt;}
.lse_c00168{letter-spacing:1.568160pt;}
.lsa_c00168{letter-spacing:1.665734pt;}
.lsb_c00168{letter-spacing:2.474208pt;}
.lsf_c00168{letter-spacing:2.912800pt;}
.ls11_c00168{letter-spacing:3.097609pt;}
.ls9_c00168{letter-spacing:3.220800pt;}
.ls3_c00168{letter-spacing:3.282400pt;}
.ls4_c00168{letter-spacing:3.484800pt;}
.lsc_c00168{letter-spacing:3.977609pt;}
.lsd_c00168{letter-spacing:27.878400pt;}
.ls8_c00168{letter-spacing:44.352176pt;}
.ls6_c00168{letter-spacing:45.619376pt;}
.ws4_c00168{word-spacing:-19.898208pt;}
.ws7_c00168{word-spacing:-18.992160pt;}
.ws5_c00168{word-spacing:-18.260352pt;}
.ws3_c00168{word-spacing:-17.737632pt;}
.ws1_c00168{word-spacing:-17.424000pt;}
.ws2_c00168{word-spacing:-0.064416pt;}
.ws8_c00168{word-spacing:0.000000pt;}
.ws0_c00168{word-spacing:0.069696pt;}
.ws6_c00168{word-spacing:6.133248pt;}
._11_c00168{margin-left:-11.569536pt;}
._13_c00168{margin-left:-9.478656pt;}
._5_c00168{margin-left:-4.878720pt;}
._b_c00168{width:2.927232pt;}
._4_c00168{width:4.112064pt;}
._2_c00168{width:5.784768pt;}
._8_c00168{width:7.457472pt;}
._6_c00168{width:9.757440pt;}
._f_c00168{width:11.221056pt;}
._3_c00168{width:18.469440pt;}
._a_c00168{width:19.947840pt;}
._9_c00168{width:21.884544pt;}
._12_c00168{width:23.034176pt;}
._15_c00168{width:24.881472pt;}
._c_c00168{width:27.627776pt;}
._d_c00168{width:28.784448pt;}
._1_c00168{width:30.178368pt;}
._e_c00168{width:32.687424pt;}
._10_c00168{width:35.235068pt;}
._7_c00168{width:39.935808pt;}
._14_c00168{width:44.326656pt;}
._0_c00168{width:643.842496pt;}
.fs1_c00168{font-size:19.712000pt;}
.fs0_c00168{font-size:24.640000pt;}
.fsc_c00168{font-size:27.878400pt;}
.fs2_c00168{font-size:29.568000pt;}
.fs6_c00168{font-size:29.920000pt;}
.fsd_c00168{font-size:35.200000pt;}
.fs7_c00168{font-size:44.352176pt;}
.fs5_c00168{font-size:45.619376pt;}
.fsf_c00168{font-size:52.800000pt;}
.fs10_c00168{font-size:55.616000pt;}
.fse_c00168{font-size:58.256000pt;}
.fsb_c00168{font-size:59.136000pt;}
.fsa_c00168{font-size:61.952176pt;}
.fs8_c00168{font-size:64.416000pt;}
.fs3_c00168{font-size:65.648000pt;}
.fs4_c00168{font-size:69.696000pt;}
.fs9_c00168{font-size:79.552176pt;}
.y0_c00168{bottom:0.000000pt;}
.y27_c00168{bottom:57.262520pt;}
.y1_c00168{bottom:68.000000pt;}
.y26_c00168{bottom:81.972920pt;}
.y3_c00168{bottom:110.168120pt;}
.y25_c00168{bottom:139.309320pt;}
.y24_c00168{bottom:166.875320pt;}
.y23_c00168{bottom:196.650120pt;}
.y22_c00168{bottom:198.872120pt;}
.y21_c00168{bottom:217.875720pt;}
.y20_c00168{bottom:223.265720pt;}
.y1f_c00168{bottom:252.090120pt;}
.y1e_c00168{bottom:280.923320pt;}
.y1d_c00168{bottom:309.435320pt;}
.y1c_c00168{bottom:323.686920pt;}
.y1b_c00168{bottom:330.344120pt;}
.y1a_c00168{bottom:337.947320pt;}
.y18_c00168{bottom:338.264120pt;}
.y19_c00168{bottom:351.248520pt;}
.y17_c00168{bottom:366.454920pt;}
.y16_c00168{bottom:394.966920pt;}
.y15_c00168{bottom:423.483320pt;}
.y14_c00168{bottom:451.990920pt;}
.y13_c00168{bottom:480.507320pt;}
.y12_c00168{bottom:509.336120pt;}
.y11_c00168{bottom:538.794120pt;}
.y10_c00168{bottom:567.939720pt;}
.yf_c00168{bottom:596.456120pt;}
.ye_c00168{bottom:625.601720pt;}
.yd_c00168{bottom:653.792520pt;}
.yb_c00168{bottom:683.259320pt;}
.ya_c00168{bottom:733.630520pt;}
.y9_c00168{bottom:740.595720pt;}
.y8_c00168{bottom:769.428920pt;}
.y7_c00168{bottom:798.257720pt;}
.y6_c00168{bottom:827.086520pt;}
.yc_c00168{bottom:878.403720pt;}
.y5_c00168{bottom:959.504520pt;}
.y4_c00168{bottom:965.206920pt;}
.y2_c00168{bottom:966.790920pt;}
.hd_c00168{height:18.567014pt;}
.h3_c00168{height:20.559000pt;}
.h2_c00168{height:25.698750pt;}
.h8_c00168{height:29.364844pt;}
.h9_c00168{height:29.538549pt;}
.h7_c00168{height:30.382504pt;}
.he_c00168{height:36.712500pt;}
.h4_c00168{height:41.620322pt;}
.h10_c00168{height:54.965625pt;}
.h12_c00168{height:58.005750pt;}
.hf_c00168{height:60.759188pt;}
.h13_c00168{height:60.802673pt;}
.hc_c00168{height:61.677000pt;}
.ha_c00168{height:63.189328pt;}
.h5_c00168{height:64.429922pt;}
.h11_c00168{height:64.493183pt;}
.h6_c00168{height:68.402813pt;}
.hb_c00168{height:78.076110pt;}
.h1_c00168{height:986.666667pt;}
.h0_c00168{height:1122.666667pt;}
.w1_c00168{width:652.000000pt;}
.w0_c00168{width:793.333333pt;}
.x0_c00168{left:0.000000pt;}
.x2_c00168{left:42.389187pt;}
.x3c_c00168{left:66.505587pt;}
.x1f_c00168{left:67.596787pt;}
.x5_c00168{left:69.158787pt;}
.x1_c00168{left:70.666667pt;}
.x37_c00168{left:77.272387pt;}
.x6f_c00168{left:87.453987pt;}
.x38_c00168{left:96.658787pt;}
.x11_c00168{left:97.952387pt;}
.x49_c00168{left:105.502787pt;}
.x3d_c00168{left:106.602787pt;}
.x20_c00168{left:107.539987pt;}
.x70_c00168{left:108.939187pt;}
.x2e_c00168{left:115.860387pt;}
.x12_c00168{left:117.360787pt;}
.x61_c00168{left:126.204787pt;}
.x6_c00168{left:127.177187pt;}
.x4f_c00168{left:135.880387pt;}
.x21_c00168{left:137.323587pt;}
.x2f_c00168{left:145.872787pt;}
.x13_c00168{left:146.823187pt;}
.x62_c00168{left:148.314787pt;}
.x14_c00168{left:156.313987pt;}
.x7_c00168{left:165.725587pt;}
.x22_c00168{left:167.080787pt;}
.x57_c00168{left:175.634387pt;}
.x39_c00168{left:176.562787pt;}
.x23_c00168{left:185.622387pt;}
.x63_c00168{left:186.748787pt;}
.x30_c00168{left:192.583187pt;}
.x5a_c00168{left:194.492787pt;}
.x15_c00168{left:195.812787pt;}
.x8_c00168{left:205.629187pt;}
.x4a_c00168{left:214.143187pt;}
.x9_c00168{left:215.243187pt;}
.x50_c00168{left:224.760387pt;}
.x16_c00168{left:225.679987pt;}
.x67_c00168{left:234.097187pt;}
.x2b_c00168{left:235.777987pt;}
.x5c_c00168{left:243.909187pt;}
.x3a_c00168{left:244.850787pt;}
.x24_c00168{left:255.164387pt;}
.x60_c00168{left:263.612387pt;}
.x17_c00168{left:264.989587pt;}
.x45_c00168{left:273.573987pt;}
.x25_c00168{left:275.135987pt;}
.x2c_c00168{left:284.776387pt;}
.x42_c00168{left:293.329987pt;}
.x26_c00168{left:294.328787pt;}
.x18_c00168{left:303.185987pt;}
.x53_c00168{left:313.147587pt;}
.xa_c00168{left:314.093587pt;}
.x58_c00168{left:315.585187pt;}
.x19_c00168{left:323.914387pt;}
.x3e_c00168{left:332.331587pt;}
.x46_c00168{left:333.449187pt;}
.x2d_c00168{left:335.539187pt;}
.x1a_c00168{left:343.450387pt;}
.x64_c00168{left:352.743187pt;}
.xb_c00168{left:353.658387pt;}
.x3f_c00168{left:363.206387pt;}
.x6c_c00168{left:364.838787pt;}
.x5b_c00168{left:371.297987pt;}
.x47_c00168{left:373.607987pt;}
.xc_c00168{left:383.155987pt;}
.x27_c00168{left:393.223187pt;}
.x31_c00168{left:401.393987pt;}
.x54_c00168{left:402.625987pt;}
.x4b_c00168{left:412.261987pt;}
.x40_c00168{left:413.199187pt;}
.x3_c00168{left:414.589587pt;}
.x28_c00168{left:421.039987pt;}
.x3b_c00168{left:432.149987pt;}
.x51_c00168{left:440.954387pt;}
.x4c_c00168{left:442.067587pt;}
.x59_c00168{left:448.280387pt;}
.x1b_c00168{left:451.589187pt;}
.x48_c00168{left:452.517587pt;}
.x68_c00168{left:460.534387pt;}
.x43_c00168{left:461.924787pt;}
.x32_c00168{left:471.230787pt;}
.x1c_c00168{left:480.937187pt;}
.x4d_c00168{left:490.872387pt;}
.x33_c00168{left:500.992387pt;}
.x66_c00168{left:508.789187pt;}
.xd_c00168{left:510.830787pt;}
.x4e_c00168{left:520.642787pt;}
.x6d_c00168{left:529.090787pt;}
.x6b_c00168{left:537.925987pt;}
.x56_c00168{left:539.289987pt;}
.xe_c00168{left:540.257987pt;}
.x1d_c00168{left:549.471587pt;}
.x34_c00168{left:559.437587pt;}
.x5e_c00168{left:567.991187pt;}
.x29_c00168{left:568.928387pt;}
.x69_c00168{left:577.767987pt;}
.x1e_c00168{left:578.749187pt;}
.x44_c00168{left:580.126387pt;}
.x55_c00168{left:587.672387pt;}
.x41_c00168{left:588.723987pt;}
.x4_c00168{left:589.894387pt;}
.x6e_c00168{left:598.593187pt;}
.xf_c00168{left:600.172787pt;}
.x2a_c00168{left:609.034387pt;}
.x65_c00168{left:617.715587pt;}
.x10_c00168{left:619.145587pt;}
.x5d_c00168{left:621.657987pt;}
.x5f_c00168{left:625.160387pt;}
.x35_c00168{left:628.706787pt;}
.x52_c00168{left:638.153587pt;}
.x36_c00168{left:645.532387pt;}
.x6a_c00168{left:649.716787pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7aa5a14cafd159dfc70da1a4.woff2')format("woff");}.ff1_c00169{font-family:ff1_c00169;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00169;src:url('chunks/assets/font_7b64ad9f08bdfa7765504375.woff2')format("woff");}.ff2_c00169{font-family:ff2_c00169;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00169;src:url('chunks/assets/font_407c9bcbef7609a8e08223ec.woff2')format("woff");}.ff3_c00169{font-family:ff3_c00169;line-height:0.666000;font-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_c00169{transform:matrix(0.151891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151891,0.000000,0.000000,0.250000,0,0);}
.m2c_c00169{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m49_c00169{transform:matrix(0.199491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199491,0.000000,0.000000,0.250000,0,0);}
.m8f_c00169{transform:matrix(0.206253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206253,0.000000,0.000000,0.250000,0,0);}
.mad_c00169{transform:matrix(0.208455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208455,0.000000,0.000000,0.250000,0,0);}
.m46_c00169{transform:matrix(0.220418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220418,0.000000,0.000000,0.250000,0,0);}
.m1a_c00169{transform:matrix(0.224917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224917,0.000000,0.000000,0.250000,0,0);}
.m33_c00169{transform:matrix(0.227167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227167,0.000000,0.000000,0.250000,0,0);}
.m21_c00169{transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);}
.m48_c00169{transform:matrix(0.242534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242534,0.000000,0.000000,0.250000,0,0);}
.m63_c00169{transform:matrix(0.245644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245644,0.000000,0.000000,0.250000,0,0);}
.ma4_c00169{transform:matrix(0.249385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249385,0.000000,0.000000,0.250000,0,0);}
.m0_c00169{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m92_c00169{transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);}
.ma_c00169{transform:matrix(0.251426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251426,0.000000,0.000000,0.250000,0,0);}
.m9c_c00169{transform:matrix(0.252461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252461,0.000000,0.000000,0.250000,0,0);}
.m30_c00169{transform:matrix(0.253545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253545,0.000000,0.000000,0.250000,0,0);}
.m42_c00169{transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);}
.m36_c00169{transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);}
.m83_c00169{transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);}
.m86_c00169{transform:matrix(0.258686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258686,0.000000,0.000000,0.250000,0,0);}
.m4b_c00169{transform:matrix(0.259881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259881,0.000000,0.000000,0.250000,0,0);}
.ma8_c00169{transform:matrix(0.260405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260405,0.000000,0.000000,0.250000,0,0);}
.m62_c00169{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m13_c00169{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.m25_c00169{transform:matrix(0.261730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261730,0.000000,0.000000,0.250000,0,0);}
.m7c_c00169{transform:matrix(0.262242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262242,0.000000,0.000000,0.250000,0,0);}
.mb_c00169{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m28_c00169{transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);}
.m4e_c00169{transform:matrix(0.263917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263917,0.000000,0.000000,0.250000,0,0);}
.m14_c00169{transform:matrix(0.265156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265156,0.000000,0.000000,0.250000,0,0);}
.m8_c00169{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m72_c00169{transform:matrix(0.266808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266808,0.000000,0.000000,0.250000,0,0);}
.m40_c00169{transform:matrix(0.267739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267739,0.000000,0.000000,0.250000,0,0);}
.m6f_c00169{transform:matrix(0.267863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267863,0.000000,0.000000,0.250000,0,0);}
.m52_c00169{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.mb9_c00169{transform:matrix(0.268052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268052,0.000000,0.000000,0.250000,0,0);}
.m24_c00169{transform:matrix(0.269025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269025,0.000000,0.000000,0.250000,0,0);}
.m7b_c00169{transform:matrix(0.269646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269646,0.000000,0.000000,0.250000,0,0);}
.m8a_c00169{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m6c_c00169{transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);}
.m23_c00169{transform:matrix(0.271761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271761,0.000000,0.000000,0.250000,0,0);}
.m1e_c00169{transform:matrix(0.271985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271985,0.000000,0.000000,0.250000,0,0);}
.m10_c00169{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m6a_c00169{transform:matrix(0.272544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272544,0.000000,0.000000,0.250000,0,0);}
.m39_c00169{transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);}
.m73_c00169{transform:matrix(0.273113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273113,0.000000,0.000000,0.250000,0,0);}
.m94_c00169{transform:matrix(0.273170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273170,0.000000,0.000000,0.250000,0,0);}
.mf_c00169{transform:matrix(0.273268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273268,0.000000,0.000000,0.250000,0,0);}
.m6_c00169{transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);}
.m5b_c00169{transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);}
.m15_c00169{transform:matrix(0.275040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275040,0.000000,0.000000,0.250000,0,0);}
.m3f_c00169{transform:matrix(0.275162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275162,0.000000,0.000000,0.250000,0,0);}
.m1f_c00169{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.mb3_c00169{transform:matrix(0.275788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275788,0.000000,0.000000,0.250000,0,0);}
.m35_c00169{transform:matrix(0.275958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275958,0.000000,0.000000,0.250000,0,0);}
.m7a_c00169{transform:matrix(0.276725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276725,0.000000,0.000000,0.250000,0,0);}
.mb0_c00169{transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);}
.ma6_c00169{transform:matrix(0.277389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277389,0.000000,0.000000,0.250000,0,0);}
.ma1_c00169{transform:matrix(0.277686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277686,0.000000,0.000000,0.250000,0,0);}
.mb2_c00169{transform:matrix(0.278514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278514,0.000000,0.000000,0.250000,0,0);}
.m19_c00169{transform:matrix(0.278995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278995,0.000000,0.000000,0.250000,0,0);}
.mab_c00169{transform:matrix(0.279350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279350,0.000000,0.000000,0.250000,0,0);}
.m81_c00169{transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);}
.m51_c00169{transform:matrix(0.279749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279749,0.000000,0.000000,0.250000,0,0);}
.m8e_c00169{transform:matrix(0.279794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279794,0.000000,0.000000,0.250000,0,0);}
.m96_c00169{transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);}
.m56_c00169{transform:matrix(0.280443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280443,0.000000,0.000000,0.250000,0,0);}
.m6b_c00169{transform:matrix(0.280720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280720,0.000000,0.000000,0.250000,0,0);}
.maa_c00169{transform:matrix(0.281789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281789,0.000000,0.000000,0.250000,0,0);}
.m3b_c00169{transform:matrix(0.281792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281792,0.000000,0.000000,0.250000,0,0);}
.m2b_c00169{transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);}
.m2e_c00169{transform:matrix(0.282403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282403,0.000000,0.000000,0.250000,0,0);}
.m8c_c00169{transform:matrix(0.282774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282774,0.000000,0.000000,0.250000,0,0);}
.m26_c00169{transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);}
.m41_c00169{transform:matrix(0.282915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282915,0.000000,0.000000,0.250000,0,0);}
.m6d_c00169{transform:matrix(0.283223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283223,0.000000,0.000000,0.250000,0,0);}
.m32_c00169{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m71_c00169{transform:matrix(0.283852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283852,0.000000,0.000000,0.250000,0,0);}
.m65_c00169{transform:matrix(0.284752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284752,0.000000,0.000000,0.250000,0,0);}
.m4_c00169{transform:matrix(0.285021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285021,0.000000,0.000000,0.250000,0,0);}
.mae_c00169{transform:matrix(0.286143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286143,0.000000,0.000000,0.250000,0,0);}
.m99_c00169{transform:matrix(0.286398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286398,0.000000,0.000000,0.250000,0,0);}
.m44_c00169{transform:matrix(0.286886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286886,0.000000,0.000000,0.250000,0,0);}
.m61_c00169{transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);}
.m22_c00169{transform:matrix(0.287458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287458,0.000000,0.000000,0.250000,0,0);}
.m27_c00169{transform:matrix(0.287478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287478,0.000000,0.000000,0.250000,0,0);}
.m1d_c00169{transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);}
.mbd_c00169{transform:matrix(0.288623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288623,0.000000,0.000000,0.250000,0,0);}
.m11_c00169{transform:matrix(0.288956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288956,0.000000,0.000000,0.250000,0,0);}
.mb5_c00169{transform:matrix(0.289324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289324,0.000000,0.000000,0.250000,0,0);}
.mb1_c00169{transform:matrix(0.289652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289652,0.000000,0.000000,0.250000,0,0);}
.m54_c00169{transform:matrix(0.290170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290170,0.000000,0.000000,0.250000,0,0);}
.m1_c00169{transform:matrix(0.290285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290285,0.000000,0.000000,0.250000,0,0);}
.m29_c00169{transform:matrix(0.292528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292528,0.000000,0.000000,0.250000,0,0);}
.m5d_c00169{transform:matrix(0.293552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293552,0.000000,0.000000,0.250000,0,0);}
.ma0_c00169{transform:matrix(0.293617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293617,0.000000,0.000000,0.250000,0,0);}
.m31_c00169{transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);}
.m7f_c00169{transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);}
.m93_c00169{transform:matrix(0.295141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295141,0.000000,0.000000,0.250000,0,0);}
.mb8_c00169{transform:matrix(0.295491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295491,0.000000,0.000000,0.250000,0,0);}
.m78_c00169{transform:matrix(0.296449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296449,0.000000,0.000000,0.250000,0,0);}
.m2a_c00169{transform:matrix(0.296933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296933,0.000000,0.000000,0.250000,0,0);}
.m4d_c00169{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m17_c00169{transform:matrix(0.297306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297306,0.000000,0.000000,0.250000,0,0);}
.m82_c00169{transform:matrix(0.299107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299107,0.000000,0.000000,0.250000,0,0);}
.m5_c00169{transform:matrix(0.299282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299282,0.000000,0.000000,0.250000,0,0);}
.m2f_c00169{transform:matrix(0.299372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299372,0.000000,0.000000,0.250000,0,0);}
.m59_c00169{transform:matrix(0.299508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299508,0.000000,0.000000,0.250000,0,0);}
.m7d_c00169{transform:matrix(0.299605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299605,0.000000,0.000000,0.250000,0,0);}
.m98_c00169{transform:matrix(0.300220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300220,0.000000,0.000000,0.250000,0,0);}
.m8b_c00169{transform:matrix(0.300360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300360,0.000000,0.000000,0.250000,0,0);}
.m5a_c00169{transform:matrix(0.300623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300623,0.000000,0.000000,0.250000,0,0);}
.m75_c00169{transform:matrix(0.301184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301184,0.000000,0.000000,0.250000,0,0);}
.m74_c00169{transform:matrix(0.301254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301254,0.000000,0.000000,0.250000,0,0);}
.m9a_c00169{transform:matrix(0.301300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301300,0.000000,0.000000,0.250000,0,0);}
.mc_c00169{transform:matrix(0.301362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301362,0.000000,0.000000,0.250000,0,0);}
.m37_c00169{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m34_c00169{transform:matrix(0.302420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302420,0.000000,0.000000,0.250000,0,0);}
.mbc_c00169{transform:matrix(0.303150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303150,0.000000,0.000000,0.250000,0,0);}
.m87_c00169{transform:matrix(0.303955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303955,0.000000,0.000000,0.250000,0,0);}
.ma3_c00169{transform:matrix(0.305642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305642,0.000000,0.000000,0.250000,0,0);}
.m57_c00169{transform:matrix(0.306756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306756,0.000000,0.000000,0.250000,0,0);}
.m18_c00169{transform:matrix(0.307034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307034,0.000000,0.000000,0.250000,0,0);}
.m84_c00169{transform:matrix(0.307057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307057,0.000000,0.000000,0.250000,0,0);}
.m53_c00169{transform:matrix(0.307151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307151,0.000000,0.000000,0.250000,0,0);}
.m69_c00169{transform:matrix(0.307706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307706,0.000000,0.000000,0.250000,0,0);}
.m4c_c00169{transform:matrix(0.307991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307991,0.000000,0.000000,0.250000,0,0);}
.m91_c00169{transform:matrix(0.308088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308088,0.000000,0.000000,0.250000,0,0);}
.m88_c00169{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m3a_c00169{transform:matrix(0.308602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308602,0.000000,0.000000,0.250000,0,0);}
.ma2_c00169{transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);}
.m6e_c00169{transform:matrix(0.309128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309128,0.000000,0.000000,0.250000,0,0);}
.m50_c00169{transform:matrix(0.310001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310001,0.000000,0.000000,0.250000,0,0);}
.m3e_c00169{transform:matrix(0.310381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310381,0.000000,0.000000,0.250000,0,0);}
.m4a_c00169{transform:matrix(0.310470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310470,0.000000,0.000000,0.250000,0,0);}
.m80_c00169{transform:matrix(0.311557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311557,0.000000,0.000000,0.250000,0,0);}
.m45_c00169{transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);}
.m43_c00169{transform:matrix(0.312319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312319,0.000000,0.000000,0.250000,0,0);}
.m66_c00169{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.mbe_c00169{transform:matrix(0.312778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312778,0.000000,0.000000,0.250000,0,0);}
.m1c_c00169{transform:matrix(0.313152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313152,0.000000,0.000000,0.250000,0,0);}
.m5c_c00169{transform:matrix(0.313219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313219,0.000000,0.000000,0.250000,0,0);}
.m9f_c00169{transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);}
.m2_c00169{transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);}
.m89_c00169{transform:matrix(0.314871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314871,0.000000,0.000000,0.250000,0,0);}
.m55_c00169{transform:matrix(0.315048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315048,0.000000,0.000000,0.250000,0,0);}
.m95_c00169{transform:matrix(0.315578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315578,0.000000,0.000000,0.250000,0,0);}
.m9b_c00169{transform:matrix(0.316032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316032,0.000000,0.000000,0.250000,0,0);}
.m68_c00169{transform:matrix(0.316282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316282,0.000000,0.000000,0.250000,0,0);}
.mb7_c00169{transform:matrix(0.319176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319176,0.000000,0.000000,0.250000,0,0);}
.m76_c00169{transform:matrix(0.319290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319290,0.000000,0.000000,0.250000,0,0);}
.m1b_c00169{transform:matrix(0.319359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319359,0.000000,0.000000,0.250000,0,0);}
.mbf_c00169{transform:matrix(0.322383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322383,0.000000,0.000000,0.250000,0,0);}
.mb6_c00169{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.m67_c00169{transform:matrix(0.324775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324775,0.000000,0.000000,0.250000,0,0);}
.ma9_c00169{transform:matrix(0.325213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325213,0.000000,0.000000,0.250000,0,0);}
.m16_c00169{transform:matrix(0.325395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325395,0.000000,0.000000,0.250000,0,0);}
.m9d_c00169{transform:matrix(0.325602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325602,0.000000,0.000000,0.250000,0,0);}
.m5f_c00169{transform:matrix(0.326052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326052,0.000000,0.000000,0.250000,0,0);}
.me_c00169{transform:matrix(0.326634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326634,0.000000,0.000000,0.250000,0,0);}
.mbb_c00169{transform:matrix(0.329883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329883,0.000000,0.000000,0.250000,0,0);}
.mb4_c00169{transform:matrix(0.330803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330803,0.000000,0.000000,0.250000,0,0);}
.m58_c00169{transform:matrix(0.332278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332278,0.000000,0.000000,0.250000,0,0);}
.md_c00169{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m12_c00169{transform:matrix(0.334129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334129,0.000000,0.000000,0.250000,0,0);}
.ma5_c00169{transform:matrix(0.334985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334985,0.000000,0.000000,0.250000,0,0);}
.m85_c00169{transform:matrix(0.337014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337014,0.000000,0.000000,0.250000,0,0);}
.m20_c00169{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.mac_c00169{transform:matrix(0.339729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339729,0.000000,0.000000,0.250000,0,0);}
.m7_c00169{transform:matrix(0.340312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340312,0.000000,0.000000,0.250000,0,0);}
.m2d_c00169{transform:matrix(0.340669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340669,0.000000,0.000000,0.250000,0,0);}
.maf_c00169{transform:matrix(0.340828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340828,0.000000,0.000000,0.250000,0,0);}
.m4f_c00169{transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);}
.m70_c00169{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.m97_c00169{transform:matrix(0.344776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344776,0.000000,0.000000,0.250000,0,0);}
.m3d_c00169{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m38_c00169{transform:matrix(0.350956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350956,0.000000,0.000000,0.250000,0,0);}
.m3_c00169{transform:matrix(0.352963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352963,0.000000,0.000000,0.250000,0,0);}
.m9_c00169{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m9e_c00169{transform:matrix(0.355530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355530,0.000000,0.000000,0.250000,0,0);}
.m7e_c00169{transform:matrix(0.357165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357165,0.000000,0.000000,0.250000,0,0);}
.ma7_c00169{transform:matrix(0.358888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358888,0.000000,0.000000,0.250000,0,0);}
.m8d_c00169{transform:matrix(0.364017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364017,0.000000,0.000000,0.250000,0,0);}
.m90_c00169{transform:matrix(0.372071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372071,0.000000,0.000000,0.250000,0,0);}
.m64_c00169{transform:matrix(0.374773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374773,0.000000,0.000000,0.250000,0,0);}
.m47_c00169{transform:matrix(0.377282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377282,0.000000,0.000000,0.250000,0,0);}
.m79_c00169{transform:matrix(0.385852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385852,0.000000,0.000000,0.250000,0,0);}
.mba_c00169{transform:matrix(0.388143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388143,0.000000,0.000000,0.250000,0,0);}
.m5e_c00169{transform:matrix(0.404579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404579,0.000000,0.000000,0.250000,0,0);}
.m3c_c00169{transform:matrix(0.407787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407787,0.000000,0.000000,0.250000,0,0);}
.m60_c00169{transform:matrix(0.414699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414699,0.000000,0.000000,0.250000,0,0);}
.v0_c00169{vertical-align:0.000000px;}
.lsb_c00169{letter-spacing:-2.744280px;}
.lsd_c00169{letter-spacing:-1.513274px;}
.lsa_c00169{letter-spacing:-1.285891px;}
.ls9_c00169{letter-spacing:-1.097712px;}
.ls6_c00169{letter-spacing:0.000000px;}
.ls5_c00169{letter-spacing:0.533174px;}
.ls4_c00169{letter-spacing:0.588060px;}
.ls2_c00169{letter-spacing:2.046449px;}
.ls1_c00169{letter-spacing:2.077812px;}
.ls0_c00169{letter-spacing:2.901096px;}
.lse_c00169{letter-spacing:3.112798px;}
.ls7_c00169{letter-spacing:3.791700px;}
.ls8_c00169{letter-spacing:3.920400px;}
.ls3_c00169{letter-spacing:12.310056px;}
.lsc_c00169{letter-spacing:51.321798px;}
.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;}
}
.ws1_c00169{word-spacing:-22.503096px;}
.ws4_c00169{word-spacing:-21.648449px;}
.ws0_c00169{word-spacing:-19.602000px;}
.ws2_c00169{word-spacing:-4.234032px;}
.ws3_c00169{word-spacing:-0.784080px;}
.ws5_c00169{word-spacing:0.000000px;}
._16_c00169{margin-left:-25.404192px;}
._3_c00169{margin-left:-12.617352px;}
._0_c00169{margin-left:-10.114632px;}
._14_c00169{margin-left:-5.441040px;}
._8_c00169{width:3.022272px;}
._f_c00169{width:4.477097px;}
._6_c00169{width:6.700320px;}
._e_c00169{width:7.967520px;}
._c_c00169{width:9.173736px;}
._2_c00169{width:10.506672px;}
._10_c00169{width:12.780504px;}
._d_c00169{width:14.191848px;}
._12_c00169{width:16.152048px;}
._7_c00169{width:20.778120px;}
._5_c00169{width:22.267872px;}
._17_c00169{width:23.679216px;}
._9_c00169{width:29.167776px;}
._a_c00169{width:31.206384px;}
._b_c00169{width:32.617728px;}
._1_c00169{width:33.836616px;}
._11_c00169{width:35.832456px;}
._15_c00169{width:37.286568px;}
._13_c00169{width:41.269536px;}
._4_c00169{width:42.755170px;}
.fc0_c00169{color:transparent;}
.fs0_c00169{font-size:22.176000px;}
.fs7_c00169{font-size:28.314000px;}
.fsb_c00169{font-size:33.264000px;}
.fs3_c00169{font-size:39.600000px;}
.fs6_c00169{font-size:45.144000px;}
.fs4_c00169{font-size:51.321798px;}
.fs5_c00169{font-size:56.628000px;}
.fsc_c00169{font-size:60.192000px;}
.fs9_c00169{font-size:64.548000px;}
.fs8_c00169{font-size:70.884000px;}
.fsa_c00169{font-size:74.844000px;}
.fs1_c00169{font-size:75.834000px;}
.fs2_c00169{font-size:78.408000px;}
.y0_c00169{bottom:0.000000px;}
.y1_c00169{bottom:76.500000px;}
.y22_c00169{bottom:114.672735px;}
.y21_c00169{bottom:121.087935px;}
.y20_c00169{bottom:154.945935px;}
.y1f_c00169{bottom:185.952735px;}
.y1e_c00169{bottom:219.454335px;}
.y1d_c00169{bottom:251.530335px;}
.y1c_c00169{bottom:316.038735px;}
.y1b_c00169{bottom:348.466185px;}
.y1a_c00169{bottom:380.190735px;}
.y19_c00169{bottom:412.261785px;}
.y18_c00169{bottom:444.337785px;}
.y17_c00169{bottom:476.770185px;}
.y16_c00169{bottom:509.207535px;}
.y2_c00169{bottom:512.766585px;}
.y15_c00169{bottom:537.006735px;}
.y14_c00169{bottom:541.278585px;}
.y13_c00169{bottom:573.710985px;}
.y12_c00169{bottom:614.345535px;}
.y11_c00169{bottom:618.978735px;}
.ye_c00169{bottom:638.224335px;}
.y10_c00169{bottom:641.075535px;}
.yf_c00169{bottom:645.352335px;}
.yd_c00169{bottom:670.295385px;}
.yc_c00169{bottom:703.801935px;}
.yb_c00169{bottom:735.516585px;}
.ya_c00169{bottom:767.597535px;}
.y9_c00169{bottom:799.312185px;}
.y8_c00169{bottom:831.749535px;}
.y7_c00169{bottom:864.181935px;}
.y6_c00169{bottom:880.576335px;}
.y5_c00169{bottom:896.614335px;}
.y4_c00169{bottom:929.046735px;}
.y3_c00169{bottom:1078.016985px;}
.h2_c00169{height:23.128875px;}
.h9_c00169{height:29.530617px;}
.h6_c00169{height:34.180317px;}
.hb_c00169{height:34.693313px;}
.h5_c00169{height:41.301563px;}
.h8_c00169{height:47.083781px;}
.h7_c00169{height:59.061234px;}
.hc_c00169{height:62.778375px;}
.ha_c00169{height:69.568770px;}
.h3_c00169{height:74.426924px;}
.h4_c00169{height:76.953164px;}
.h1_c00169{height:1110.000000px;}
.h0_c00169{height:1263.000000px;}
.w1_c00169{width:733.500000px;}
.w0_c00169{width:892.500000px;}
.x0_c00169{left:0.000000px;}
.x2_c00169{left:33.788235px;}
.x41_c00169{left:75.130635px;}
.x21_c00169{left:76.605735px;}
.x4_c00169{left:78.021435px;}
.x1_c00169{left:79.500000px;}
.x22_c00169{left:98.450085px;}
.x5_c00169{left:99.598485px;}
.x42_c00169{left:108.864885px;}
.x10_c00169{left:110.042985px;}
.x6_c00169{left:111.325035px;}
.x54_c00169{left:118.675785px;}
.x38_c00169{left:121.328985px;}
.x31_c00169{left:131.318085px;}
.x47_c00169{left:142.010085px;}
.x7_c00169{left:143.792085px;}
.x23_c00169{left:153.553485px;}
.x8_c00169{left:155.533485px;}
.x39_c00169{left:164.265285px;}
.x32_c00169{left:165.497835px;}
.x48_c00169{left:174.249435px;}
.x1a_c00169{left:175.902735px;}
.x11_c00169{left:185.693835px;}
.x5f_c00169{left:186.916485px;}
.x3a_c00169{left:197.608485px;}
.x3f_c00169{left:198.657885px;}
.x9_c00169{left:208.666785px;}
.x60_c00169{left:209.696385px;}
.x12_c00169{left:219.883485px;}
.x5d_c00169{left:229.783485px;}
.x2c_c00169{left:231.446685px;}
.x52_c00169{left:235.010685px;}
.x4c_c00169{left:241.777335px;}
.x13_c00169{left:243.148485px;}
.x43_c00169{left:252.642585px;}
.x3b_c00169{left:263.389035px;}
.x40_c00169{left:264.586935px;}
.x49_c00169{left:275.179935px;}
.x14_c00169{left:276.382785px;}
.x33_c00169{left:287.035185px;}
.x24_c00169{left:297.756885px;}
.x55_c00169{left:298.796385px;}
.x25_c00169{left:308.250885px;}
.x58_c00169{left:309.493335px;}
.x1b_c00169{left:311.092185px;}
.x5e_c00169{left:318.957735px;}
.x44_c00169{left:320.026935px;}
.x1c_c00169{left:330.293235px;}
.x56_c00169{left:331.961385px;}
.x5b_c00169{left:340.589235px;}
.x50_c00169{left:341.940585px;}
.x34_c00169{left:353.008785px;}
.x57_c00169{left:362.804835px;}
.x3c_c00169{left:364.378935px;}
.x53_c00169{left:374.912535px;}
.x35_c00169{left:376.154985px;}
.x1d_c00169{left:386.535135px;}
.xa_c00169{left:397.133085px;}
.x2d_c00169{left:408.052785px;}
.x26_c00169{left:409.636785px;}
.x4a_c00169{left:420.294135px;}
.x15_c00169{left:431.357385px;}
.x27_c00169{left:442.727535px;}
.x2e_c00169{left:453.424485px;}
.x59_c00169{left:456.691485px;}
.xb_c00169{left:464.235285px;}
.x28_c00169{left:473.981835px;}
.x3d_c00169{left:475.006485px;}
.x36_c00169{left:485.391585px;}
.x2f_c00169{left:495.722235px;}
.xc_c00169{left:497.236935px;}
.x37_c00169{left:508.008135px;}
.xd_c00169{left:520.086135px;}
.x16_c00169{left:529.218885px;}
.x45_c00169{left:530.852385px;}
.x29_c00169{left:541.539435px;}
.x51_c00169{left:542.583885px;}
.x3e_c00169{left:552.107685px;}
.x4d_c00169{left:553.607535px;}
.x63_c00169{left:562.918485px;}
.x64_c00169{left:564.274785px;}
.x2a_c00169{left:574.714335px;}
.x61_c00169{left:583.401585px;}
.x1e_c00169{left:584.460885px;}
.xe_c00169{left:586.421085px;}
.x46_c00169{left:596.702235px;}
.xf_c00169{left:618.833685px;}
.x2b_c00169{left:629.208885px;}
.x19_c00169{left:632.357085px;}
.x5a_c00169{left:639.989985px;}
.x5c_c00169{left:650.028585px;}
.x17_c00169{left:651.662085px;}
.x3_c00169{left:652.671885px;}
.x4e_c00169{left:661.755135px;}
.x30_c00169{left:663.274785px;}
.x4f_c00169{left:674.100435px;}
.x18_c00169{left:685.129035px;}
.x4b_c00169{left:693.573735px;}
.x65_c00169{left:694.855785px;}
.x1f_c00169{left:696.093285px;}
.x62_c00169{left:707.948535px;}
.x20_c00169{left:718.279185px;}
@media print{
.v0_c00169{vertical-align:0.000000pt;}
.lsb_c00169{letter-spacing:-2.439360pt;}
.lsd_c00169{letter-spacing:-1.345133pt;}
.lsa_c00169{letter-spacing:-1.143014pt;}
.ls9_c00169{letter-spacing:-0.975744pt;}
.ls6_c00169{letter-spacing:0.000000pt;}
.ls5_c00169{letter-spacing:0.473933pt;}
.ls4_c00169{letter-spacing:0.522720pt;}
.ls2_c00169{letter-spacing:1.819066pt;}
.ls1_c00169{letter-spacing:1.846944pt;}
.ls0_c00169{letter-spacing:2.578752pt;}
.lse_c00169{letter-spacing:2.766931pt;}
.ls7_c00169{letter-spacing:3.370400pt;}
.ls8_c00169{letter-spacing:3.484800pt;}
.ls3_c00169{letter-spacing:10.942272pt;}
.lsc_c00169{letter-spacing:45.619376pt;}
.ws1_c00169{word-spacing:-20.002752pt;}
.ws4_c00169{word-spacing:-19.243066pt;}
.ws0_c00169{word-spacing:-17.424000pt;}
.ws2_c00169{word-spacing:-3.763584pt;}
.ws3_c00169{word-spacing:-0.696960pt;}
.ws5_c00169{word-spacing:0.000000pt;}
._16_c00169{margin-left:-22.581504pt;}
._3_c00169{margin-left:-11.215424pt;}
._0_c00169{margin-left:-8.990784pt;}
._14_c00169{margin-left:-4.836480pt;}
._8_c00169{width:2.686464pt;}
._f_c00169{width:3.979642pt;}
._6_c00169{width:5.955840pt;}
._e_c00169{width:7.082240pt;}
._c_c00169{width:8.154432pt;}
._2_c00169{width:9.339264pt;}
._10_c00169{width:11.360448pt;}
._d_c00169{width:12.614976pt;}
._12_c00169{width:14.357376pt;}
._7_c00169{width:18.469440pt;}
._5_c00169{width:19.793664pt;}
._17_c00169{width:21.048192pt;}
._9_c00169{width:25.926912pt;}
._a_c00169{width:27.739008pt;}
._b_c00169{width:28.993536pt;}
._1_c00169{width:30.076992pt;}
._11_c00169{width:31.851072pt;}
._15_c00169{width:33.143616pt;}
._13_c00169{width:36.684032pt;}
._4_c00169{width:38.004595pt;}
.fs0_c00169{font-size:19.712000pt;}
.fs7_c00169{font-size:25.168000pt;}
.fsb_c00169{font-size:29.568000pt;}
.fs3_c00169{font-size:35.200000pt;}
.fs6_c00169{font-size:40.128000pt;}
.fs4_c00169{font-size:45.619376pt;}
.fs5_c00169{font-size:50.336000pt;}
.fsc_c00169{font-size:53.504000pt;}
.fs9_c00169{font-size:57.376000pt;}
.fs8_c00169{font-size:63.008000pt;}
.fsa_c00169{font-size:66.528000pt;}
.fs1_c00169{font-size:67.408000pt;}
.fs2_c00169{font-size:69.696000pt;}
.y0_c00169{bottom:0.000000pt;}
.y1_c00169{bottom:68.000000pt;}
.y22_c00169{bottom:101.931320pt;}
.y21_c00169{bottom:107.633720pt;}
.y20_c00169{bottom:137.729720pt;}
.y1f_c00169{bottom:165.291320pt;}
.y1e_c00169{bottom:195.070520pt;}
.y1d_c00169{bottom:223.582520pt;}
.y1c_c00169{bottom:280.923320pt;}
.y1b_c00169{bottom:309.747720pt;}
.y1a_c00169{bottom:337.947320pt;}
.y19_c00169{bottom:366.454920pt;}
.y18_c00169{bottom:394.966920pt;}
.y17_c00169{bottom:423.795720pt;}
.y16_c00169{bottom:452.628920pt;}
.y2_c00169{bottom:455.792520pt;}
.y15_c00169{bottom:477.339320pt;}
.y14_c00169{bottom:481.136520pt;}
.y13_c00169{bottom:509.965320pt;}
.y12_c00169{bottom:546.084920pt;}
.y11_c00169{bottom:550.203320pt;}
.ye_c00169{bottom:567.310520pt;}
.y10_c00169{bottom:569.844920pt;}
.yf_c00169{bottom:573.646520pt;}
.yd_c00169{bottom:595.818120pt;}
.yc_c00169{bottom:625.601720pt;}
.yb_c00169{bottom:653.792520pt;}
.ya_c00169{bottom:682.308920pt;}
.y9_c00169{bottom:710.499720pt;}
.y8_c00169{bottom:739.332920pt;}
.y7_c00169{bottom:768.161720pt;}
.y6_c00169{bottom:782.734520pt;}
.y5_c00169{bottom:796.990520pt;}
.y4_c00169{bottom:825.819320pt;}
.y3_c00169{bottom:958.237320pt;}
.h2_c00169{height:20.559000pt;}
.h9_c00169{height:26.249438pt;}
.h6_c00169{height:30.382504pt;}
.hb_c00169{height:30.838500pt;}
.h5_c00169{height:36.712500pt;}
.h8_c00169{height:41.852250pt;}
.h7_c00169{height:52.498875pt;}
.hc_c00169{height:55.803000pt;}
.ha_c00169{height:61.838906pt;}
.h3_c00169{height:66.157266pt;}
.h4_c00169{height:68.402813pt;}
.h1_c00169{height:986.666667pt;}
.h0_c00169{height:1122.666667pt;}
.w1_c00169{width:652.000000pt;}
.w0_c00169{width:793.333333pt;}
.x0_c00169{left:0.000000pt;}
.x2_c00169{left:30.033987pt;}
.x41_c00169{left:66.782787pt;}
.x21_c00169{left:68.093987pt;}
.x4_c00169{left:69.352387pt;}
.x1_c00169{left:70.666667pt;}
.x22_c00169{left:87.511187pt;}
.x5_c00169{left:88.531987pt;}
.x42_c00169{left:96.768787pt;}
.x10_c00169{left:97.815987pt;}
.x6_c00169{left:98.955587pt;}
.x54_c00169{left:105.489587pt;}
.x38_c00169{left:107.847987pt;}
.x31_c00169{left:116.727187pt;}
.x47_c00169{left:126.231187pt;}
.x7_c00169{left:127.815187pt;}
.x23_c00169{left:136.491987pt;}
.x8_c00169{left:138.251987pt;}
.x39_c00169{left:146.013587pt;}
.x32_c00169{left:147.109187pt;}
.x48_c00169{left:154.888387pt;}
.x1a_c00169{left:156.357987pt;}
.x11_c00169{left:165.061187pt;}
.x5f_c00169{left:166.147987pt;}
.x3a_c00169{left:175.651987pt;}
.x3f_c00169{left:176.584787pt;}
.x9_c00169{left:185.481587pt;}
.x60_c00169{left:186.396787pt;}
.x12_c00169{left:195.451987pt;}
.x5d_c00169{left:204.251987pt;}
.x2c_c00169{left:205.730387pt;}
.x52_c00169{left:208.898387pt;}
.x4c_c00169{left:214.913187pt;}
.x13_c00169{left:216.131987pt;}
.x43_c00169{left:224.571187pt;}
.x3b_c00169{left:234.123587pt;}
.x40_c00169{left:235.188387pt;}
.x49_c00169{left:244.604387pt;}
.x14_c00169{left:245.673587pt;}
.x33_c00169{left:255.142387pt;}
.x24_c00169{left:264.672787pt;}
.x55_c00169{left:265.596787pt;}
.x25_c00169{left:274.000787pt;}
.x58_c00169{left:275.105187pt;}
.x1b_c00169{left:276.526387pt;}
.x5e_c00169{left:283.517987pt;}
.x44_c00169{left:284.468387pt;}
.x1c_c00169{left:293.593987pt;}
.x56_c00169{left:295.076787pt;}
.x5b_c00169{left:302.745987pt;}
.x50_c00169{left:303.947187pt;}
.x34_c00169{left:313.785587pt;}
.x57_c00169{left:322.493187pt;}
.x3c_c00169{left:323.892387pt;}
.x53_c00169{left:333.255587pt;}
.x35_c00169{left:334.359987pt;}
.x1d_c00169{left:343.586787pt;}
.xa_c00169{left:353.007187pt;}
.x2d_c00169{left:362.713587pt;}
.x26_c00169{left:364.121587pt;}
.x4a_c00169{left:373.594787pt;}
.x15_c00169{left:383.428787pt;}
.x27_c00169{left:393.535587pt;}
.x2e_c00169{left:403.043987pt;}
.x59_c00169{left:405.947987pt;}
.xb_c00169{left:412.653587pt;}
.x28_c00169{left:421.317187pt;}
.x3d_c00169{left:422.227987pt;}
.x36_c00169{left:431.459187pt;}
.x2f_c00169{left:440.641987pt;}
.xc_c00169{left:441.988387pt;}
.x37_c00169{left:451.562787pt;}
.xd_c00169{left:462.298787pt;}
.x16_c00169{left:470.416787pt;}
.x45_c00169{left:471.868787pt;}
.x29_c00169{left:481.368387pt;}
.x51_c00169{left:482.296787pt;}
.x3e_c00169{left:490.762387pt;}
.x4d_c00169{left:492.095587pt;}
.x63_c00169{left:500.371987pt;}
.x64_c00169{left:501.577587pt;}
.x2a_c00169{left:510.857187pt;}
.x61_c00169{left:518.579187pt;}
.x1e_c00169{left:519.520787pt;}
.xe_c00169{left:521.263187pt;}
.x46_c00169{left:530.401987pt;}
.xf_c00169{left:550.074387pt;}
.x2b_c00169{left:559.296787pt;}
.x19_c00169{left:562.095187pt;}
.x5a_c00169{left:568.879987pt;}
.x5c_c00169{left:577.803187pt;}
.x17_c00169{left:579.255187pt;}
.x3_c00169{left:580.152787pt;}
.x4e_c00169{left:588.226787pt;}
.x30_c00169{left:589.577587pt;}
.x4f_c00169{left:599.200387pt;}
.x18_c00169{left:609.003587pt;}
.x4b_c00169{left:616.509987pt;}
.x65_c00169{left:617.649587pt;}
.x1f_c00169{left:618.749587pt;}
.x62_c00169{left:629.287587pt;}
.x20_c00169{left:638.470387pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6d380274bc3f862b89148380.woff2')format("woff");}.ff1_c00170{font-family:ff1_c00170;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00170;src:url('chunks/assets/font_455884f6e4f37d3ceb65a563.woff2')format("woff");}.ff2_c00170{font-family:ff2_c00170;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00170;src:url('chunks/assets/font_90435cbc7259b466781e6910.woff2')format("woff");}.ff3_c00170{font-family:ff3_c00170;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00170;src:url('chunks/assets/font_5361a626f0dd4e3e4a77fe42.woff2')format("woff");}.ff4_c00170{font-family:ff4_c00170;line-height:0.666000;font-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_c00170{transform:matrix(0.051588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.051588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.051588,0.000000,0.000000,0.250000,0,0);}
.md6_c00170{transform:matrix(0.113382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113382,0.000000,0.000000,0.250000,0,0);}
.me_c00170{transform:matrix(0.117907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117907,0.000000,0.000000,0.250000,0,0);}
.m6d_c00170{transform:matrix(0.123016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123016,0.000000,0.000000,0.250000,0,0);}
.ma5_c00170{transform:matrix(0.130876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130876,0.000000,0.000000,0.250000,0,0);}
.m18_c00170{transform:matrix(0.152779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152779,0.000000,0.000000,0.250000,0,0);}
.m69_c00170{transform:matrix(0.164277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164277,0.000000,0.000000,0.250000,0,0);}
.md5_c00170{transform:matrix(0.213572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213572,0.000000,0.000000,0.250000,0,0);}
.m9c_c00170{transform:matrix(0.219242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219242,0.000000,0.000000,0.250000,0,0);}
.m52_c00170{transform:matrix(0.221172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221172,0.000000,0.000000,0.250000,0,0);}
.m30_c00170{transform:matrix(0.224921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224921,0.000000,0.000000,0.250000,0,0);}
.mb5_c00170{transform:matrix(0.225811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225811,0.000000,0.000000,0.250000,0,0);}
.m45_c00170{transform:matrix(0.226933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226933,0.000000,0.000000,0.250000,0,0);}
.m4_c00170{transform:matrix(0.229772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229772,0.000000,0.000000,0.250000,0,0);}
.m3d_c00170{transform:matrix(0.233155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233155,0.000000,0.000000,0.250000,0,0);}
.mc0_c00170{transform:matrix(0.233802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233802,0.000000,0.000000,0.250000,0,0);}
.mc3_c00170{transform:matrix(0.234936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234936,0.000000,0.000000,0.250000,0,0);}
.m37_c00170{transform:matrix(0.243640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243640,0.000000,0.000000,0.250000,0,0);}
.m41_c00170{transform:matrix(0.247535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247535,0.000000,0.000000,0.250000,0,0);}
.mc1_c00170{transform:matrix(0.247961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247961,0.000000,0.000000,0.250000,0,0);}
.m0_c00170{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00170{transform:matrix(0.250937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250937,0.000000,0.000000,0.250000,0,0);}
.m87_c00170{transform:matrix(0.252635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252635,0.000000,0.000000,0.250000,0,0);}
.m2e_c00170{transform:matrix(0.252714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252714,0.000000,0.000000,0.250000,0,0);}
.m67_c00170{transform:matrix(0.254166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254166,0.000000,0.000000,0.250000,0,0);}
.mbb_c00170{transform:matrix(0.255230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255230,0.000000,0.000000,0.250000,0,0);}
.m4d_c00170{transform:matrix(0.256093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256093,0.000000,0.000000,0.250000,0,0);}
.m34_c00170{transform:matrix(0.257068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257068,0.000000,0.000000,0.250000,0,0);}
.mae_c00170{transform:matrix(0.257482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257482,0.000000,0.000000,0.250000,0,0);}
.md1_c00170{transform:matrix(0.258875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258875,0.000000,0.000000,0.250000,0,0);}
.mcc_c00170{transform:matrix(0.259445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259445,0.000000,0.000000,0.250000,0,0);}
.m80_c00170{transform:matrix(0.260666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260666,0.000000,0.000000,0.250000,0,0);}
.mb0_c00170{transform:matrix(0.261336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261336,0.000000,0.000000,0.250000,0,0);}
.m68_c00170{transform:matrix(0.262680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262680,0.000000,0.000000,0.250000,0,0);}
.m25_c00170{transform:matrix(0.263374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263374,0.000000,0.000000,0.250000,0,0);}
.m14_c00170{transform:matrix(0.264018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264018,0.000000,0.000000,0.250000,0,0);}
.m9d_c00170{transform:matrix(0.264571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264571,0.000000,0.000000,0.250000,0,0);}
.mb2_c00170{transform:matrix(0.265842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265842,0.000000,0.000000,0.250000,0,0);}
.m2_c00170{transform:matrix(0.266936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266936,0.000000,0.000000,0.250000,0,0);}
.m5_c00170{transform:matrix(0.267304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267304,0.000000,0.000000,0.250000,0,0);}
.m92_c00170{transform:matrix(0.267648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267648,0.000000,0.000000,0.250000,0,0);}
.m40_c00170{transform:matrix(0.267664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267664,0.000000,0.000000,0.250000,0,0);}
.m19_c00170{transform:matrix(0.268733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268733,0.000000,0.000000,0.250000,0,0);}
.m15_c00170{transform:matrix(0.269205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269205,0.000000,0.000000,0.250000,0,0);}
.mb8_c00170{transform:matrix(0.269296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269296,0.000000,0.000000,0.250000,0,0);}
.m4c_c00170{transform:matrix(0.270210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270210,0.000000,0.000000,0.250000,0,0);}
.mac_c00170{transform:matrix(0.270300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270300,0.000000,0.000000,0.250000,0,0);}
.m83_c00170{transform:matrix(0.270348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270348,0.000000,0.000000,0.250000,0,0);}
.m78_c00170{transform:matrix(0.271111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271111,0.000000,0.000000,0.250000,0,0);}
.m97_c00170{transform:matrix(0.271195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271195,0.000000,0.000000,0.250000,0,0);}
.m3c_c00170{transform:matrix(0.271702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271702,0.000000,0.000000,0.250000,0,0);}
.m79_c00170{transform:matrix(0.272394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272394,0.000000,0.000000,0.250000,0,0);}
.m26_c00170{transform:matrix(0.272714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272714,0.000000,0.000000,0.250000,0,0);}
.mc_c00170{transform:matrix(0.273448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273448,0.000000,0.000000,0.250000,0,0);}
.m3f_c00170{transform:matrix(0.274020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274020,0.000000,0.000000,0.250000,0,0);}
.mcb_c00170{transform:matrix(0.274397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274397,0.000000,0.000000,0.250000,0,0);}
.ma_c00170{transform:matrix(0.276468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276468,0.000000,0.000000,0.250000,0,0);}
.md_c00170{transform:matrix(0.276505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276505,0.000000,0.000000,0.250000,0,0);}
.m11_c00170{transform:matrix(0.277037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277037,0.000000,0.000000,0.250000,0,0);}
.m8_c00170{transform:matrix(0.278152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278152,0.000000,0.000000,0.250000,0,0);}
.m23_c00170{transform:matrix(0.278162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278162,0.000000,0.000000,0.250000,0,0);}
.m4b_c00170{transform:matrix(0.278570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278570,0.000000,0.000000,0.250000,0,0);}
.mca_c00170{transform:matrix(0.278884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278884,0.000000,0.000000,0.250000,0,0);}
.m7e_c00170{transform:matrix(0.279934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279934,0.000000,0.000000,0.250000,0,0);}
.mc5_c00170{transform:matrix(0.280483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280483,0.000000,0.000000,0.250000,0,0);}
.m5d_c00170{transform:matrix(0.280614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280614,0.000000,0.000000,0.250000,0,0);}
.m9a_c00170{transform:matrix(0.281235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281235,0.000000,0.000000,0.250000,0,0);}
.m5b_c00170{transform:matrix(0.281248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281248,0.000000,0.000000,0.250000,0,0);}
.m50_c00170{transform:matrix(0.282878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282878,0.000000,0.000000,0.250000,0,0);}
.m5c_c00170{transform:matrix(0.282930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282930,0.000000,0.000000,0.250000,0,0);}
.m9f_c00170{transform:matrix(0.283469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283469,0.000000,0.000000,0.250000,0,0);}
.m89_c00170{transform:matrix(0.283836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283836,0.000000,0.000000,0.250000,0,0);}
.m35_c00170{transform:matrix(0.285157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285157,0.000000,0.000000,0.250000,0,0);}
.mb3_c00170{transform:matrix(0.285713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285713,0.000000,0.000000,0.250000,0,0);}
.mcf_c00170{transform:matrix(0.285990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285990,0.000000,0.000000,0.250000,0,0);}
.m4f_c00170{transform:matrix(0.287352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287352,0.000000,0.000000,0.250000,0,0);}
.m13_c00170{transform:matrix(0.287543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287543,0.000000,0.000000,0.250000,0,0);}
.m93_c00170{transform:matrix(0.287593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287593,0.000000,0.000000,0.250000,0,0);}
.m9b_c00170{transform:matrix(0.287637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287637,0.000000,0.000000,0.250000,0,0);}
.m1c_c00170{transform:matrix(0.288193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288193,0.000000,0.000000,0.250000,0,0);}
.m22_c00170{transform:matrix(0.289394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289394,0.000000,0.000000,0.250000,0,0);}
.m57_c00170{transform:matrix(0.289580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289580,0.000000,0.000000,0.250000,0,0);}
.mb_c00170{transform:matrix(0.289705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289705,0.000000,0.000000,0.250000,0,0);}
.m1e_c00170{transform:matrix(0.289832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289832,0.000000,0.000000,0.250000,0,0);}
.ma6_c00170{transform:matrix(0.289840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289840,0.000000,0.000000,0.250000,0,0);}
.m20_c00170{transform:matrix(0.290136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290136,0.000000,0.000000,0.250000,0,0);}
.ma7_c00170{transform:matrix(0.290598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290598,0.000000,0.000000,0.250000,0,0);}
.m1d_c00170{transform:matrix(0.290675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290675,0.000000,0.000000,0.250000,0,0);}
.m75_c00170{transform:matrix(0.290811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290811,0.000000,0.000000,0.250000,0,0);}
.m46_c00170{transform:matrix(0.290851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290851,0.000000,0.000000,0.250000,0,0);}
.m43_c00170{transform:matrix(0.291584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291584,0.000000,0.000000,0.250000,0,0);}
.m6a_c00170{transform:matrix(0.291923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291923,0.000000,0.000000,0.250000,0,0);}
.m99_c00170{transform:matrix(0.292288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292288,0.000000,0.000000,0.250000,0,0);}
.m1_c00170{transform:matrix(0.292467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292467,0.000000,0.000000,0.250000,0,0);}
.m2b_c00170{transform:matrix(0.292822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292822,0.000000,0.000000,0.250000,0,0);}
.maf_c00170{transform:matrix(0.292963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292963,0.000000,0.000000,0.250000,0,0);}
.mb7_c00170{transform:matrix(0.293039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293039,0.000000,0.000000,0.250000,0,0);}
.m32_c00170{transform:matrix(0.293207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293207,0.000000,0.000000,0.250000,0,0);}
.m91_c00170{transform:matrix(0.293450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293450,0.000000,0.000000,0.250000,0,0);}
.m64_c00170{transform:matrix(0.294506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294506,0.000000,0.000000,0.250000,0,0);}
.mb4_c00170{transform:matrix(0.295061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295061,0.000000,0.000000,0.250000,0,0);}
.m33_c00170{transform:matrix(0.295105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295105,0.000000,0.000000,0.250000,0,0);}
.mb6_c00170{transform:matrix(0.295489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295489,0.000000,0.000000,0.250000,0,0);}
.m47_c00170{transform:matrix(0.296135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296135,0.000000,0.000000,0.250000,0,0);}
.m29_c00170{transform:matrix(0.296177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296177,0.000000,0.000000,0.250000,0,0);}
.mba_c00170{transform:matrix(0.296564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296564,0.000000,0.000000,0.250000,0,0);}
.m6f_c00170{transform:matrix(0.297154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297154,0.000000,0.000000,0.250000,0,0);}
.md2_c00170{transform:matrix(0.297189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297189,0.000000,0.000000,0.250000,0,0);}
.m49_c00170{transform:matrix(0.297817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297817,0.000000,0.000000,0.250000,0,0);}
.mc9_c00170{transform:matrix(0.298290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298290,0.000000,0.000000,0.250000,0,0);}
.m2f_c00170{transform:matrix(0.298308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298308,0.000000,0.000000,0.250000,0,0);}
.m56_c00170{transform:matrix(0.299082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299082,0.000000,0.000000,0.250000,0,0);}
.ma9_c00170{transform:matrix(0.300095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300095,0.000000,0.000000,0.250000,0,0);}
.m39_c00170{transform:matrix(0.300928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300928,0.000000,0.000000,0.250000,0,0);}
.m72_c00170{transform:matrix(0.301212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301212,0.000000,0.000000,0.250000,0,0);}
.m48_c00170{transform:matrix(0.302039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302039,0.000000,0.000000,0.250000,0,0);}
.m7f_c00170{transform:matrix(0.302548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302548,0.000000,0.000000,0.250000,0,0);}
.m6b_c00170{transform:matrix(0.302580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302580,0.000000,0.000000,0.250000,0,0);}
.m7a_c00170{transform:matrix(0.303232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303232,0.000000,0.000000,0.250000,0,0);}
.mc2_c00170{transform:matrix(0.303273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303273,0.000000,0.000000,0.250000,0,0);}
.m8d_c00170{transform:matrix(0.304291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304291,0.000000,0.000000,0.250000,0,0);}
.m7_c00170{transform:matrix(0.305223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305223,0.000000,0.000000,0.250000,0,0);}
.ma2_c00170{transform:matrix(0.307174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307174,0.000000,0.000000,0.250000,0,0);}
.m90_c00170{transform:matrix(0.307484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307484,0.000000,0.000000,0.250000,0,0);}
.m63_c00170{transform:matrix(0.308366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308366,0.000000,0.000000,0.250000,0,0);}
.m3b_c00170{transform:matrix(0.308611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308611,0.000000,0.000000,0.250000,0,0);}
.m59_c00170{transform:matrix(0.309313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309313,0.000000,0.000000,0.250000,0,0);}
.ma8_c00170{transform:matrix(0.309349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309349,0.000000,0.000000,0.250000,0,0);}
.m27_c00170{transform:matrix(0.309671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309671,0.000000,0.000000,0.250000,0,0);}
.m60_c00170{transform:matrix(0.309767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309767,0.000000,0.000000,0.250000,0,0);}
.m7c_c00170{transform:matrix(0.310443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310443,0.000000,0.000000,0.250000,0,0);}
.m4e_c00170{transform:matrix(0.311111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311111,0.000000,0.000000,0.250000,0,0);}
.m96_c00170{transform:matrix(0.311406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311406,0.000000,0.000000,0.250000,0,0);}
.m3e_c00170{transform:matrix(0.311931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311931,0.000000,0.000000,0.250000,0,0);}
.mb1_c00170{transform:matrix(0.312072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312072,0.000000,0.000000,0.250000,0,0);}
.m1b_c00170{transform:matrix(0.312635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312635,0.000000,0.000000,0.250000,0,0);}
.mad_c00170{transform:matrix(0.313577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313577,0.000000,0.000000,0.250000,0,0);}
.m8f_c00170{transform:matrix(0.313617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313617,0.000000,0.000000,0.250000,0,0);}
.m2d_c00170{transform:matrix(0.314050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314050,0.000000,0.000000,0.250000,0,0);}
.m84_c00170{transform:matrix(0.314155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314155,0.000000,0.000000,0.250000,0,0);}
.m76_c00170{transform:matrix(0.314326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314326,0.000000,0.000000,0.250000,0,0);}
.mab_c00170{transform:matrix(0.314808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314808,0.000000,0.000000,0.250000,0,0);}
.m61_c00170{transform:matrix(0.314941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314941,0.000000,0.000000,0.250000,0,0);}
.m12_c00170{transform:matrix(0.315035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315035,0.000000,0.000000,0.250000,0,0);}
.m1a_c00170{transform:matrix(0.315274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315274,0.000000,0.000000,0.250000,0,0);}
.mc8_c00170{transform:matrix(0.315399,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315399,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315399,0.000000,0.000000,0.250000,0,0);}
.m2a_c00170{transform:matrix(0.317079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317079,0.000000,0.000000,0.250000,0,0);}
.m53_c00170{transform:matrix(0.317628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317628,0.000000,0.000000,0.250000,0,0);}
.m98_c00170{transform:matrix(0.317731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317731,0.000000,0.000000,0.250000,0,0);}
.m5e_c00170{transform:matrix(0.319544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319544,0.000000,0.000000,0.250000,0,0);}
.m55_c00170{transform:matrix(0.319974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319974,0.000000,0.000000,0.250000,0,0);}
.m7b_c00170{transform:matrix(0.320255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320255,0.000000,0.000000,0.250000,0,0);}
.m8a_c00170{transform:matrix(0.320660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320660,0.000000,0.000000,0.250000,0,0);}
.m21_c00170{transform:matrix(0.320753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320753,0.000000,0.000000,0.250000,0,0);}
.mc4_c00170{transform:matrix(0.321923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321923,0.000000,0.000000,0.250000,0,0);}
.mf_c00170{transform:matrix(0.322226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322226,0.000000,0.000000,0.250000,0,0);}
.m28_c00170{transform:matrix(0.323963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323963,0.000000,0.000000,0.250000,0,0);}
.m24_c00170{transform:matrix(0.325277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325277,0.000000,0.000000,0.250000,0,0);}
.ma1_c00170{transform:matrix(0.325756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325756,0.000000,0.000000,0.250000,0,0);}
.m38_c00170{transform:matrix(0.325873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325873,0.000000,0.000000,0.250000,0,0);}
.mcd_c00170{transform:matrix(0.327980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327980,0.000000,0.000000,0.250000,0,0);}
.m65_c00170{transform:matrix(0.328101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328101,0.000000,0.000000,0.250000,0,0);}
.m8b_c00170{transform:matrix(0.329096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329096,0.000000,0.000000,0.250000,0,0);}
.m3a_c00170{transform:matrix(0.330259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330259,0.000000,0.000000,0.250000,0,0);}
.m10_c00170{transform:matrix(0.331296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331296,0.000000,0.000000,0.250000,0,0);}
.m81_c00170{transform:matrix(0.331491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331491,0.000000,0.000000,0.250000,0,0);}
.ma0_c00170{transform:matrix(0.331840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331840,0.000000,0.000000,0.250000,0,0);}
.m8c_c00170{transform:matrix(0.332236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332236,0.000000,0.000000,0.250000,0,0);}
.m4a_c00170{transform:matrix(0.332296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332296,0.000000,0.000000,0.250000,0,0);}
.md4_c00170{transform:matrix(0.333644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333644,0.000000,0.000000,0.250000,0,0);}
.m44_c00170{transform:matrix(0.333910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333910,0.000000,0.000000,0.250000,0,0);}
.m9e_c00170{transform:matrix(0.334045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334045,0.000000,0.000000,0.250000,0,0);}
.m2c_c00170{transform:matrix(0.334209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334209,0.000000,0.000000,0.250000,0,0);}
.m62_c00170{transform:matrix(0.334389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334389,0.000000,0.000000,0.250000,0,0);}
.m58_c00170{transform:matrix(0.336292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336292,0.000000,0.000000,0.250000,0,0);}
.m9_c00170{transform:matrix(0.337152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337152,0.000000,0.000000,0.250000,0,0);}
.m82_c00170{transform:matrix(0.337561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337561,0.000000,0.000000,0.250000,0,0);}
.mbd_c00170{transform:matrix(0.337624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337624,0.000000,0.000000,0.250000,0,0);}
.m16_c00170{transform:matrix(0.338051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338051,0.000000,0.000000,0.250000,0,0);}
.m1f_c00170{transform:matrix(0.340094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340094,0.000000,0.000000,0.250000,0,0);}
.mc6_c00170{transform:matrix(0.341566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341566,0.000000,0.000000,0.250000,0,0);}
.m95_c00170{transform:matrix(0.343283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343283,0.000000,0.000000,0.250000,0,0);}
.m5f_c00170{transform:matrix(0.344623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344623,0.000000,0.000000,0.250000,0,0);}
.mbe_c00170{transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);}
.m7d_c00170{transform:matrix(0.345727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345727,0.000000,0.000000,0.250000,0,0);}
.m71_c00170{transform:matrix(0.345734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345734,0.000000,0.000000,0.250000,0,0);}
.mbc_c00170{transform:matrix(0.346278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346278,0.000000,0.000000,0.250000,0,0);}
.m66_c00170{transform:matrix(0.346854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346854,0.000000,0.000000,0.250000,0,0);}
.m88_c00170{transform:matrix(0.346954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346954,0.000000,0.000000,0.250000,0,0);}
.m17_c00170{transform:matrix(0.347222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347222,0.000000,0.000000,0.250000,0,0);}
.maa_c00170{transform:matrix(0.347649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347649,0.000000,0.000000,0.250000,0,0);}
.m6_c00170{transform:matrix(0.350358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350358,0.000000,0.000000,0.250000,0,0);}
.m77_c00170{transform:matrix(0.350713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350713,0.000000,0.000000,0.250000,0,0);}
.mc7_c00170{transform:matrix(0.356557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356557,0.000000,0.000000,0.250000,0,0);}
.m8e_c00170{transform:matrix(0.359698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359698,0.000000,0.000000,0.250000,0,0);}
.m74_c00170{transform:matrix(0.362651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362651,0.000000,0.000000,0.250000,0,0);}
.m6c_c00170{transform:matrix(0.368798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368798,0.000000,0.000000,0.250000,0,0);}
.ma4_c00170{transform:matrix(0.373706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373706,0.000000,0.000000,0.250000,0,0);}
.m31_c00170{transform:matrix(0.373961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373961,0.000000,0.000000,0.250000,0,0);}
.m54_c00170{transform:matrix(0.374945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374945,0.000000,0.000000,0.250000,0,0);}
.mce_c00170{transform:matrix(0.376104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376104,0.000000,0.000000,0.250000,0,0);}
.m42_c00170{transform:matrix(0.377186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377186,0.000000,0.000000,0.250000,0,0);}
.m94_c00170{transform:matrix(0.386775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386775,0.000000,0.000000,0.250000,0,0);}
.m73_c00170{transform:matrix(0.388378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388378,0.000000,0.000000,0.250000,0,0);}
.m70_c00170{transform:matrix(0.390967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390967,0.000000,0.000000,0.250000,0,0);}
.m85_c00170{transform:matrix(0.393556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393556,0.000000,0.000000,0.250000,0,0);}
.m86_c00170{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);}
.m3_c00170{transform:matrix(0.416195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416195,0.000000,0.000000,0.250000,0,0);}
.ma3_c00170{transform:matrix(0.417912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417912,0.000000,0.000000,0.250000,0,0);}
.mb9_c00170{transform:matrix(0.421700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421700,0.000000,0.000000,0.250000,0,0);}
.md0_c00170{transform:matrix(0.425503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425503,0.000000,0.000000,0.250000,0,0);}
.md3_c00170{transform:matrix(0.425543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425543,0.000000,0.000000,0.250000,0,0);}
.m51_c00170{transform:matrix(0.433383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433383,0.000000,0.000000,0.250000,0,0);}
.m5a_c00170{transform:matrix(0.439512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439512,0.000000,0.000000,0.250000,0,0);}
.m36_c00170{transform:matrix(0.490674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490674,0.000000,0.000000,0.250000,0,0);}
.v0_c00170{vertical-align:0.000000px;}
.ls7_c00170{letter-spacing:-2.688840px;}
.ls13_c00170{letter-spacing:-1.538467px;}
.ls8_c00170{letter-spacing:-1.521115px;}
.ls11_c00170{letter-spacing:-1.213819px;}
.lsa_c00170{letter-spacing:-1.098583px;}
.lse_c00170{letter-spacing:-1.074150px;}
.lsd_c00170{letter-spacing:-0.737510px;}
.lsc_c00170{letter-spacing:-0.199742px;}
.ls4_c00170{letter-spacing:0.000000px;}
.ls3_c00170{letter-spacing:1.090901px;}
.ls1_c00170{letter-spacing:2.343132px;}
.ls2_c00170{letter-spacing:3.318797px;}
.lsf_c00170{letter-spacing:3.643200px;}
.ls5_c00170{letter-spacing:3.732310px;}
.ls6_c00170{letter-spacing:3.841200px;}
.ls10_c00170{letter-spacing:4.494610px;}
.ls9_c00170{letter-spacing:25.660998px;}
.ls12_c00170{letter-spacing:49.896198px;}
.lsb_c00170{letter-spacing:89.812998px;}
.ls0_c00170{letter-spacing:555.409800px;}
.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;}
}
.ws8_c00170{word-spacing:-22.524797px;}
.ws1_c00170{word-spacing:-21.549132px;}
.ws3_c00170{word-spacing:-19.206000px;}
.ws7_c00170{word-spacing:-19.006258px;}
.wsb_c00170{word-spacing:-1.305612px;}
.ws0_c00170{word-spacing:-0.537768px;}
.wsc_c00170{word-spacing:0.000000px;}
.ws6_c00170{word-spacing:0.153648px;}
.ws9_c00170{word-spacing:2.996136px;}
.ws4_c00170{word-spacing:3.457080px;}
.ws5_c00170{word-spacing:5.915448px;}
.ws2_c00170{word-spacing:6.299568px;}
.wsa_c00170{word-spacing:8.911188px;}
._1d_c00170{margin-left:-11.216304px;}
._d_c00170{margin-left:-8.758728px;}
._1b_c00170{margin-left:-5.992272px;}
._19_c00170{margin-left:-2.688840px;}
._16_c00170{margin-left:-1.428926px;}
._18_c00170{width:1.613304px;}
._4_c00170{width:3.687552px;}
._1e_c00170{width:5.147208px;}
._7_c00170{width:6.530040px;}
._1_c00170{width:7.912872px;}
._10_c00170{width:9.772013px;}
._9_c00170{width:10.832184px;}
._8_c00170{width:12.368664px;}
._e_c00170{width:14.289264px;}
._17_c00170{width:15.364800px;}
._14_c00170{width:17.209368px;}
._6_c00170{width:21.280248px;}
._0_c00170{width:22.663080px;}
._a_c00170{width:24.122736px;}
._2_c00170{width:25.505568px;}
._f_c00170{width:27.580608px;}
._11_c00170{width:30.345480px;}
._c_c00170{width:31.474872px;}
._1c_c00170{width:32.573376px;}
._b_c00170{width:33.705936px;}
._5_c00170{width:35.723160px;}
._15_c00170{width:37.792656px;}
._13_c00170{width:39.180240px;}
._12_c00170{width:41.891256px;}
._3_c00170{width:43.316856px;}
._1a_c00170{width:48.153283px;}
.fc0_c00170{color:transparent;}
.fs1_c00170{font-size:22.176000px;}
.fs8_c00170{font-size:25.660998px;}
.fs0_c00170{font-size:27.720000px;}
.fsc_c00170{font-size:30.690000px;}
.fs9_c00170{font-size:34.056198px;}
.fs12_c00170{font-size:34.452000px;}
.fsd_c00170{font-size:36.432000px;}
.fs14_c00170{font-size:43.956198px;}
.fs15_c00170{font-size:44.748000px;}
.fs7_c00170{font-size:45.936198px;}
.fs13_c00170{font-size:49.896198px;}
.fs5_c00170{font-size:64.548000px;}
.fs4_c00170{font-size:67.320000px;}
.fse_c00170{font-size:70.884000px;}
.fsf_c00170{font-size:72.864000px;}
.fsb_c00170{font-size:73.260000px;}
.fs2_c00170{font-size:74.646198px;}
.fs3_c00170{font-size:76.824000px;}
.fs11_c00170{font-size:78.804000px;}
.fs6_c00170{font-size:79.200000px;}
.fsa_c00170{font-size:89.812998px;}
.fs10_c00170{font-size:89.892198px;}
.y0_c00170{bottom:0.000000px;}
.y24_c00170{bottom:65.845935px;}
.y23_c00170{bottom:66.202335px;}
.y1_c00170{bottom:76.500000px;}
.y22_c00170{bottom:93.288735px;}
.y21_c00170{bottom:102.911535px;}
.y20_c00170{bottom:158.148585px;}
.y1f_c00170{bottom:182.032335px;}
.y1e_c00170{bottom:189.160335px;}
.y1d_c00170{bottom:221.949135px;}
.y1c_c00170{bottom:254.025135px;}
.y1b_c00170{bottom:286.452585px;}
.y1a_c00170{bottom:318.533535px;}
.y19_c00170{bottom:347.758335px;}
.y18_c00170{bottom:350.609535px;}
.y17_c00170{bottom:382.329135px;}
.y16_c00170{bottom:446.481135px;}
.y15_c00170{bottom:478.552185px;}
.y14_c00170{bottom:512.053785px;}
.y13_c00170{bottom:544.491135px;}
.y12_c00170{bottom:576.923535px;}
.y11_c00170{bottom:609.355935px;}
.y2_c00170{bottom:642.144735px;}
.y10_c00170{bottom:674.215785px;}
.yf_c00170{bottom:706.296735px;}
.ye_c00170{bottom:738.729135px;}
.yd_c00170{bottom:770.443785px;}
.yc_c00170{bottom:802.881135px;}
.yb_c00170{bottom:834.957135px;}
.ya_c00170{bottom:867.384585px;}
.y9_c00170{bottom:883.071135px;}
.y8_c00170{bottom:891.981135px;}
.y7_c00170{bottom:900.173385px;}
.y6_c00170{bottom:914.077935px;}
.y5_c00170{bottom:932.605785px;}
.y4_c00170{bottom:1084.075785px;}
.y3_c00170{bottom:1094.767785px;}
.h8_c00170{height:17.090225px;}
.h3_c00170{height:23.128875px;}
.h2_c00170{height:28.911094px;}
.hc_c00170{height:32.008711px;}
.h13_c00170{height:33.230868px;}
.h12_c00170{height:34.721156px;}
.h9_c00170{height:35.519550px;}
.hd_c00170{height:35.756016px;}
.h14_c00170{height:43.140604px;}
.h15_c00170{height:43.917715px;}
.ha_c00170{height:59.815457px;}
.h6_c00170{height:66.070898px;}
.he_c00170{height:67.321547px;}
.h4_c00170{height:73.261161px;}
.hf_c00170{height:73.433250px;}
.h5_c00170{height:75.398555px;}
.hb_c00170{height:76.407891px;}
.h11_c00170{height:77.341816px;}
.h7_c00170{height:79.818750px;}
.h10_c00170{height:88.224276px;}
.h1_c00170{height:1110.000000px;}
.h0_c00170{height:1263.000000px;}
.w1_c00170{width:775.500000px;}
.w0_c00170{width:892.500000px;}
.x0_c00170{left:0.000000px;}
.x2_c00170{left:50.130285px;}
.x1_c00170{left:58.500000px;}
.x4e_c00170{left:84.359535px;}
.x17_c00170{left:85.448535px;}
.x5_c00170{left:86.720685px;}
.x57_c00170{left:97.006785px;}
.x48_c00170{left:106.862235px;}
.x4f_c00170{left:108.119535px;}
.x50_c00170{left:117.207735px;}
.x6_c00170{left:118.856085px;}
.x30_c00170{left:129.171885px;}
.x5c_c00170{left:140.146035px;}
.x31_c00170{left:141.546885px;}
.x51_c00170{left:150.382635px;}
.x7_c00170{left:152.080485px;}
.x27_c00170{left:162.886335px;}
.x25_c00170{left:172.697235px;}
.x8_c00170{left:174.434685px;}
.x52_c00170{left:184.196085px;}
.x18_c00170{left:186.111735px;}
.x61_c00170{left:195.249435px;}
.x3c_c00170{left:196.863135px;}
.x68_c00170{left:206.312685px;}
.x19_c00170{left:207.357135px;}
.x3_c00170{left:209.109435px;}
.x9_c00170{left:217.712535px;}
.x66_c00170{left:228.869835px;}
.x1a_c00170{left:229.939035px;}
.x4b_c00170{left:238.735185px;}
.x32_c00170{left:239.997435px;}
.x53_c00170{left:251.204235px;}
.xa_c00170{left:252.461535px;}
.x70_c00170{left:261.490335px;}
.xb_c00170{left:262.772385px;}
.x44_c00170{left:272.593185px;}
.x5d_c00170{left:273.825735px;}
.x1b_c00170{left:274.894935px;}
.x3d_c00170{left:283.636635px;}
.xc_c00170{left:285.185985px;}
.xd_c00170{left:296.273985px;}
.x33_c00170{left:307.718385px;}
.x6b_c00170{left:316.786785px;}
.x1c_c00170{left:318.222285px;}
.x34_c00170{left:327.830235px;}
.x1d_c00170{left:329.231085px;}
.x45_c00170{left:330.443835px;}
.x67_c00170{left:338.834085px;}
.xe_c00170{left:340.393335px;}
.x6c_c00170{left:349.927035px;}
.x28_c00170{left:351.228885px;}
.x46_c00170{left:352.273335px;}
.x54_c00170{left:362.049585px;}
.x1e_c00170{left:363.282135px;}
.xf_c00170{left:373.157385px;}
.x65_c00170{left:383.111835px;}
.x2c_c00170{left:385.062135px;}
.x29_c00170{left:394.160235px;}
.x1f_c00170{left:395.778885px;}
.x2d_c00170{left:406.243185px;}
.x58_c00170{left:407.817285px;}
.x3e_c00170{left:418.232085px;}
.x10_c00170{left:429.542835px;}
.x35_c00170{left:438.675585px;}
.x3f_c00170{left:440.620935px;}
.x55_c00170{left:451.169385px;}
.x6d_c00170{left:460.980285px;}
.x36_c00170{left:462.049485px;}
.x20_c00170{left:463.093935px;}
.x2a_c00170{left:464.177985px;}
.x49_c00170{left:471.499035px;}
.x37_c00170{left:473.033535px;}
.x6a_c00170{left:475.142235px;}
.x4c_c00170{left:484.131435px;}
.x62_c00170{left:493.595835px;}
.x5e_c00170{left:494.768985px;}
.x11_c00170{left:495.862935px;}
.x59_c00170{left:505.000635px;}
.x21_c00170{left:506.233185px;}
.x38_c00170{left:516.920235px;}
.x64_c00170{left:517.979535px;}
.x12_c00170{left:528.359685px;}
.x2b_c00170{left:539.017035px;}
.x63_c00170{left:549.936735px;}
.x22_c00170{left:551.466285px;}
.x6e_c00170{left:561.113835px;}
.x13_c00170{left:562.163235px;}
.x39_c00170{left:572.152335px;}
.x5f_c00170{left:573.221535px;}
.x2e_c00170{left:583.274985px;}
.x47_c00170{left:584.552085px;}
.x23_c00170{left:595.298535px;}
.x6f_c00170{left:603.723435px;}
.x3a_c00170{left:605.342085px;}
.x40_c00170{left:606.351885px;}
.x14_c00170{left:616.350885px;}
.x41_c00170{left:627.775485px;}
.x4d_c00170{left:638.160585px;}
.x3b_c00170{left:639.477285px;}
.x15_c00170{left:648.887235px;}
.x42_c00170{left:650.179185px;}
.x60_c00170{left:660.193035px;}
.x4_c00170{left:661.202835px;}
.x43_c00170{left:671.934435px;}
.x56_c00170{left:681.418635px;}
.x2f_c00170{left:682.982835px;}
.x69_c00170{left:692.798685px;}
.x24_c00170{left:694.407435px;}
.x5a_c00170{left:696.397335px;}
.x16_c00170{left:702.891735px;}
.x4a_c00170{left:705.044985px;}
.x26_c00170{left:707.232885px;}
.x5b_c00170{left:708.861435px;}
@media print{
.v0_c00170{vertical-align:0.000000pt;}
.ls7_c00170{letter-spacing:-2.390080pt;}
.ls13_c00170{letter-spacing:-1.367526pt;}
.ls8_c00170{letter-spacing:-1.352102pt;}
.ls11_c00170{letter-spacing:-1.078950pt;}
.lsa_c00170{letter-spacing:-0.976518pt;}
.lse_c00170{letter-spacing:-0.954800pt;}
.lsd_c00170{letter-spacing:-0.655565pt;}
.lsc_c00170{letter-spacing:-0.177549pt;}
.ls4_c00170{letter-spacing:0.000000pt;}
.ls3_c00170{letter-spacing:0.969690pt;}
.ls1_c00170{letter-spacing:2.082784pt;}
.ls2_c00170{letter-spacing:2.950042pt;}
.lsf_c00170{letter-spacing:3.238400pt;}
.ls5_c00170{letter-spacing:3.317609pt;}
.ls6_c00170{letter-spacing:3.414400pt;}
.ls10_c00170{letter-spacing:3.995209pt;}
.ls9_c00170{letter-spacing:22.809776pt;}
.ls12_c00170{letter-spacing:44.352176pt;}
.lsb_c00170{letter-spacing:79.833776pt;}
.ls0_c00170{letter-spacing:493.697600pt;}
.ws8_c00170{word-spacing:-20.022042pt;}
.ws1_c00170{word-spacing:-19.154784pt;}
.ws3_c00170{word-spacing:-17.072000pt;}
.ws7_c00170{word-spacing:-16.894451pt;}
.wsb_c00170{word-spacing:-1.160544pt;}
.ws0_c00170{word-spacing:-0.478016pt;}
.wsc_c00170{word-spacing:0.000000pt;}
.ws6_c00170{word-spacing:0.136576pt;}
.ws9_c00170{word-spacing:2.663232pt;}
.ws4_c00170{word-spacing:3.072960pt;}
.ws5_c00170{word-spacing:5.258176pt;}
.ws2_c00170{word-spacing:5.599616pt;}
.wsa_c00170{word-spacing:7.921056pt;}
._1d_c00170{margin-left:-9.970048pt;}
._d_c00170{margin-left:-7.785536pt;}
._1b_c00170{margin-left:-5.326464pt;}
._19_c00170{margin-left:-2.390080pt;}
._16_c00170{margin-left:-1.270157pt;}
._18_c00170{width:1.434048pt;}
._4_c00170{width:3.277824pt;}
._1e_c00170{width:4.575296pt;}
._7_c00170{width:5.804480pt;}
._1_c00170{width:7.033664pt;}
._10_c00170{width:8.686234pt;}
._9_c00170{width:9.628608pt;}
._8_c00170{width:10.994368pt;}
._e_c00170{width:12.701568pt;}
._17_c00170{width:13.657600pt;}
._14_c00170{width:15.297216pt;}
._6_c00170{width:18.915776pt;}
._0_c00170{width:20.144960pt;}
._a_c00170{width:21.442432pt;}
._2_c00170{width:22.671616pt;}
._f_c00170{width:24.516096pt;}
._11_c00170{width:26.973760pt;}
._c_c00170{width:27.977664pt;}
._1c_c00170{width:28.954112pt;}
._b_c00170{width:29.960832pt;}
._5_c00170{width:31.753920pt;}
._15_c00170{width:33.593472pt;}
._13_c00170{width:34.826880pt;}
._12_c00170{width:37.236672pt;}
._3_c00170{width:38.503872pt;}
._1a_c00170{width:42.802918pt;}
.fs1_c00170{font-size:19.712000pt;}
.fs8_c00170{font-size:22.809776pt;}
.fs0_c00170{font-size:24.640000pt;}
.fsc_c00170{font-size:27.280000pt;}
.fs9_c00170{font-size:30.272176pt;}
.fs12_c00170{font-size:30.624000pt;}
.fsd_c00170{font-size:32.384000pt;}
.fs14_c00170{font-size:39.072176pt;}
.fs15_c00170{font-size:39.776000pt;}
.fs7_c00170{font-size:40.832176pt;}
.fs13_c00170{font-size:44.352176pt;}
.fs5_c00170{font-size:57.376000pt;}
.fs4_c00170{font-size:59.840000pt;}
.fse_c00170{font-size:63.008000pt;}
.fsf_c00170{font-size:64.768000pt;}
.fsb_c00170{font-size:65.120000pt;}
.fs2_c00170{font-size:66.352176pt;}
.fs3_c00170{font-size:68.288000pt;}
.fs11_c00170{font-size:70.048000pt;}
.fs6_c00170{font-size:70.400000pt;}
.fsa_c00170{font-size:79.833776pt;}
.fs10_c00170{font-size:79.904176pt;}
.y0_c00170{bottom:0.000000pt;}
.y24_c00170{bottom:58.529720pt;}
.y23_c00170{bottom:58.846520pt;}
.y1_c00170{bottom:68.000000pt;}
.y22_c00170{bottom:82.923320pt;}
.y21_c00170{bottom:91.476920pt;}
.y20_c00170{bottom:140.576520pt;}
.y1f_c00170{bottom:161.806520pt;}
.y1e_c00170{bottom:168.142520pt;}
.y1d_c00170{bottom:197.288120pt;}
.y1c_c00170{bottom:225.800120pt;}
.y1b_c00170{bottom:254.624520pt;}
.y1a_c00170{bottom:283.140920pt;}
.y19_c00170{bottom:309.118520pt;}
.y18_c00170{bottom:311.652920pt;}
.y17_c00170{bottom:339.848120pt;}
.y16_c00170{bottom:396.872120pt;}
.y15_c00170{bottom:425.379720pt;}
.y14_c00170{bottom:455.158920pt;}
.y13_c00170{bottom:483.992120pt;}
.y12_c00170{bottom:512.820920pt;}
.y11_c00170{bottom:541.649720pt;}
.y2_c00170{bottom:570.795320pt;}
.y10_c00170{bottom:599.302920pt;}
.yf_c00170{bottom:627.819320pt;}
.ye_c00170{bottom:656.648120pt;}
.yd_c00170{bottom:684.838920pt;}
.yc_c00170{bottom:713.672120pt;}
.yb_c00170{bottom:742.184120pt;}
.ya_c00170{bottom:771.008520pt;}
.y9_c00170{bottom:784.952120pt;}
.y8_c00170{bottom:792.872120pt;}
.y7_c00170{bottom:800.154120pt;}
.y6_c00170{bottom:812.513720pt;}
.y5_c00170{bottom:828.982920pt;}
.y4_c00170{bottom:963.622920pt;}
.y3_c00170{bottom:973.126920pt;}
.h8_c00170{height:15.191311pt;}
.h3_c00170{height:20.559000pt;}
.h2_c00170{height:25.698750pt;}
.hc_c00170{height:28.452188pt;}
.h13_c00170{height:29.538549pt;}
.h12_c00170{height:30.863250pt;}
.h9_c00170{height:31.572934pt;}
.hd_c00170{height:31.783125pt;}
.h14_c00170{height:38.347204pt;}
.h15_c00170{height:39.037969pt;}
.ha_c00170{height:53.169295pt;}
.h6_c00170{height:58.729688pt;}
.he_c00170{height:59.841375pt;}
.h4_c00170{height:65.121032pt;}
.hf_c00170{height:65.274000pt;}
.h5_c00170{height:67.020938pt;}
.hb_c00170{height:67.918125pt;}
.h11_c00170{height:68.748281pt;}
.h7_c00170{height:70.950000pt;}
.h10_c00170{height:78.421579pt;}
.h1_c00170{height:986.666667pt;}
.h0_c00170{height:1122.666667pt;}
.w1_c00170{width:689.333333pt;}
.w0_c00170{width:793.333333pt;}
.x0_c00170{left:0.000000pt;}
.x2_c00170{left:44.560253pt;}
.x1_c00170{left:52.000000pt;}
.x4e_c00170{left:74.986253pt;}
.x17_c00170{left:75.954253pt;}
.x5_c00170{left:77.085053pt;}
.x57_c00170{left:86.228253pt;}
.x48_c00170{left:94.988653pt;}
.x4f_c00170{left:96.106253pt;}
.x50_c00170{left:104.184653pt;}
.x6_c00170{left:105.649853pt;}
.x30_c00170{left:114.819453pt;}
.x5c_c00170{left:124.574253pt;}
.x31_c00170{left:125.819453pt;}
.x51_c00170{left:133.673453pt;}
.x7_c00170{left:135.182653pt;}
.x27_c00170{left:144.787853pt;}
.x25_c00170{left:153.508653pt;}
.x8_c00170{left:155.053053pt;}
.x52_c00170{left:163.729853pt;}
.x18_c00170{left:165.432653pt;}
.x61_c00170{left:173.555053pt;}
.x3c_c00170{left:174.989453pt;}
.x68_c00170{left:183.389053pt;}
.x19_c00170{left:184.317453pt;}
.x3_c00170{left:185.875053pt;}
.x9_c00170{left:193.522253pt;}
.x66_c00170{left:203.439853pt;}
.x1a_c00170{left:204.390253pt;}
.x4b_c00170{left:212.209053pt;}
.x32_c00170{left:213.331053pt;}
.x53_c00170{left:223.292653pt;}
.xa_c00170{left:224.410253pt;}
.x70_c00170{left:232.435853pt;}
.xb_c00170{left:233.575453pt;}
.x44_c00170{left:242.305053pt;}
.x5d_c00170{left:243.400653pt;}
.x1b_c00170{left:244.351053pt;}
.x3d_c00170{left:252.121453pt;}
.xc_c00170{left:253.498653pt;}
.xd_c00170{left:263.354653pt;}
.x33_c00170{left:273.527453pt;}
.x6b_c00170{left:281.588253pt;}
.x1c_c00170{left:282.864253pt;}
.x34_c00170{left:291.404653pt;}
.x1d_c00170{left:292.649853pt;}
.x45_c00170{left:293.727853pt;}
.x67_c00170{left:301.185853pt;}
.xe_c00170{left:302.571853pt;}
.x6c_c00170{left:311.046253pt;}
.x28_c00170{left:312.203453pt;}
.x46_c00170{left:313.131853pt;}
.x54_c00170{left:321.821853pt;}
.x1e_c00170{left:322.917453pt;}
.xf_c00170{left:331.695453pt;}
.x65_c00170{left:340.543853pt;}
.x2c_c00170{left:342.277453pt;}
.x29_c00170{left:350.364653pt;}
.x1f_c00170{left:351.803453pt;}
.x2d_c00170{left:361.105053pt;}
.x58_c00170{left:362.504253pt;}
.x3e_c00170{left:371.761853pt;}
.x10_c00170{left:381.815853pt;}
.x35_c00170{left:389.933853pt;}
.x3f_c00170{left:391.663053pt;}
.x55_c00170{left:401.039453pt;}
.x6d_c00170{left:409.760253pt;}
.x36_c00170{left:410.710653pt;}
.x20_c00170{left:411.639053pt;}
.x2a_c00170{left:412.602653pt;}
.x49_c00170{left:419.110253pt;}
.x37_c00170{left:420.474253pt;}
.x6a_c00170{left:422.348653pt;}
.x4c_c00170{left:430.339053pt;}
.x62_c00170{left:438.751853pt;}
.x5e_c00170{left:439.794653pt;}
.x11_c00170{left:440.767053pt;}
.x59_c00170{left:448.889453pt;}
.x21_c00170{left:449.985053pt;}
.x38_c00170{left:459.484653pt;}
.x64_c00170{left:460.426253pt;}
.x12_c00170{left:469.653053pt;}
.x2b_c00170{left:479.126253pt;}
.x63_c00170{left:488.832653pt;}
.x22_c00170{left:490.192253pt;}
.x6e_c00170{left:498.767853pt;}
.x13_c00170{left:499.700653pt;}
.x39_c00170{left:508.579853pt;}
.x5f_c00170{left:509.530253pt;}
.x2e_c00170{left:518.466653pt;}
.x47_c00170{left:519.601853pt;}
.x23_c00170{left:529.154253pt;}
.x6f_c00170{left:536.643053pt;}
.x3a_c00170{left:538.081853pt;}
.x40_c00170{left:538.979453pt;}
.x14_c00170{left:547.867453pt;}
.x41_c00170{left:558.022653pt;}
.x4d_c00170{left:567.253853pt;}
.x3b_c00170{left:568.424253pt;}
.x15_c00170{left:576.788653pt;}
.x42_c00170{left:577.937053pt;}
.x60_c00170{left:586.838253pt;}
.x4_c00170{left:587.735853pt;}
.x43_c00170{left:597.275053pt;}
.x56_c00170{left:605.705453pt;}
.x2f_c00170{left:607.095853pt;}
.x69_c00170{left:615.821053pt;}
.x24_c00170{left:617.251053pt;}
.x5a_c00170{left:619.019853pt;}
.x16_c00170{left:624.792653pt;}
.x4a_c00170{left:626.706653pt;}
.x26_c00170{left:628.651453pt;}
.x5b_c00170{left:630.099053pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_088447c9548da62fc4773cd3.woff2')format("woff");}.ff1_c00171{font-family:ff1_c00171;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00171;src:url('chunks/assets/font_c9ae814a7a2f893dda88b346.woff2')format("woff");}.ff2_c00171{font-family:ff2_c00171;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00171;src:url('chunks/assets/font_abed6dad3c020cf385831fa9.woff2')format("woff");}.ff3_c00171{font-family:ff3_c00171;line-height:0.666000;font-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_c00171{transform:matrix(0.117491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117491,0.000000,0.000000,0.250000,0,0);}
.me0_c00171{transform:matrix(0.119852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119852,0.000000,0.000000,0.250000,0,0);}
.md3_c00171{transform:matrix(0.135642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135642,0.000000,0.000000,0.250000,0,0);}
.m3_c00171{transform:matrix(0.136065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136065,0.000000,0.000000,0.250000,0,0);}
.mdc_c00171{transform:matrix(0.179824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179824,0.000000,0.000000,0.250000,0,0);}
.m75_c00171{transform:matrix(0.185185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185185,0.000000,0.000000,0.250000,0,0);}
.m96_c00171{transform:matrix(0.196273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196273,0.000000,0.000000,0.250000,0,0);}
.m25_c00171{transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);}
.m69_c00171{transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);}
.m73_c00171{transform:matrix(0.225142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225142,0.000000,0.000000,0.250000,0,0);}
.md6_c00171{transform:matrix(0.226419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226419,0.000000,0.000000,0.250000,0,0);}
.m62_c00171{transform:matrix(0.227137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227137,0.000000,0.000000,0.250000,0,0);}
.mc3_c00171{transform:matrix(0.230391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230391,0.000000,0.000000,0.250000,0,0);}
.m34_c00171{transform:matrix(0.233440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233440,0.000000,0.000000,0.250000,0,0);}
.m58_c00171{transform:matrix(0.235288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235288,0.000000,0.000000,0.250000,0,0);}
.m4b_c00171{transform:matrix(0.236849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236849,0.000000,0.000000,0.250000,0,0);}
.mde_c00171{transform:matrix(0.244600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244600,0.000000,0.000000,0.250000,0,0);}
.m1_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);}
.m54_c00171{transform:matrix(0.250855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250855,0.000000,0.000000,0.250000,0,0);}
.m19_c00171{transform:matrix(0.250856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250856,0.000000,0.000000,0.250000,0,0);}
.m1d_c00171{transform:matrix(0.251928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251928,0.000000,0.000000,0.250000,0,0);}
.m18_c00171{transform:matrix(0.253634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253634,0.000000,0.000000,0.250000,0,0);}
.m59_c00171{transform:matrix(0.253657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253657,0.000000,0.000000,0.250000,0,0);}
.m5_c00171{transform:matrix(0.253944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253944,0.000000,0.000000,0.250000,0,0);}
.m3b_c00171{transform:matrix(0.256514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256514,0.000000,0.000000,0.250000,0,0);}
.m9d_c00171{transform:matrix(0.256832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256832,0.000000,0.000000,0.250000,0,0);}
.mc6_c00171{transform:matrix(0.258400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258400,0.000000,0.000000,0.250000,0,0);}
.m2_c00171{transform:matrix(0.258596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258596,0.000000,0.000000,0.250000,0,0);}
.mbc_c00171{transform:matrix(0.258736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258736,0.000000,0.000000,0.250000,0,0);}
.ma8_c00171{transform:matrix(0.260216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260216,0.000000,0.000000,0.250000,0,0);}
.md1_c00171{transform:matrix(0.260790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260790,0.000000,0.000000,0.250000,0,0);}
.m50_c00171{transform:matrix(0.261494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261494,0.000000,0.000000,0.250000,0,0);}
.m55_c00171{transform:matrix(0.262690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262690,0.000000,0.000000,0.250000,0,0);}
.m3a_c00171{transform:matrix(0.263389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263389,0.000000,0.000000,0.250000,0,0);}
.m61_c00171{transform:matrix(0.263409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263409,0.000000,0.000000,0.250000,0,0);}
.mc5_c00171{transform:matrix(0.264679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264679,0.000000,0.000000,0.250000,0,0);}
.m14_c00171{transform:matrix(0.264826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264826,0.000000,0.000000,0.250000,0,0);}
.m86_c00171{transform:matrix(0.265065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265065,0.000000,0.000000,0.250000,0,0);}
.ma_c00171{transform:matrix(0.265386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265386,0.000000,0.000000,0.250000,0,0);}
.mb8_c00171{transform:matrix(0.266339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266339,0.000000,0.000000,0.250000,0,0);}
.m1c_c00171{transform:matrix(0.267220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267220,0.000000,0.000000,0.250000,0,0);}
.m60_c00171{transform:matrix(0.267721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267721,0.000000,0.000000,0.250000,0,0);}
.md2_c00171{transform:matrix(0.267742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267742,0.000000,0.000000,0.250000,0,0);}
.m52_c00171{transform:matrix(0.268620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268620,0.000000,0.000000,0.250000,0,0);}
.mc0_c00171{transform:matrix(0.269514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269514,0.000000,0.000000,0.250000,0,0);}
.ma7_c00171{transform:matrix(0.269551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269551,0.000000,0.000000,0.250000,0,0);}
.m77_c00171{transform:matrix(0.269742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269742,0.000000,0.000000,0.250000,0,0);}
.m82_c00171{transform:matrix(0.269831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269831,0.000000,0.000000,0.250000,0,0);}
.m27_c00171{transform:matrix(0.270126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270126,0.000000,0.000000,0.250000,0,0);}
.m2e_c00171{transform:matrix(0.270691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270691,0.000000,0.000000,0.250000,0,0);}
.m7d_c00171{transform:matrix(0.270764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270764,0.000000,0.000000,0.250000,0,0);}
.md9_c00171{transform:matrix(0.271749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271749,0.000000,0.000000,0.250000,0,0);}
.m46_c00171{transform:matrix(0.272247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272247,0.000000,0.000000,0.250000,0,0);}
.mad_c00171{transform:matrix(0.272516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272516,0.000000,0.000000,0.250000,0,0);}
.m8_c00171{transform:matrix(0.273110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273110,0.000000,0.000000,0.250000,0,0);}
.m32_c00171{transform:matrix(0.274865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274865,0.000000,0.000000,0.250000,0,0);}
.m99_c00171{transform:matrix(0.275583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275583,0.000000,0.000000,0.250000,0,0);}
.m51_c00171{transform:matrix(0.275819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275819,0.000000,0.000000,0.250000,0,0);}
.md0_c00171{transform:matrix(0.276314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276314,0.000000,0.000000,0.250000,0,0);}
.ma3_c00171{transform:matrix(0.276983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276983,0.000000,0.000000,0.250000,0,0);}
.m45_c00171{transform:matrix(0.277237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277237,0.000000,0.000000,0.250000,0,0);}
.m20_c00171{transform:matrix(0.277901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277901,0.000000,0.000000,0.250000,0,0);}
.mc8_c00171{transform:matrix(0.277997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277997,0.000000,0.000000,0.250000,0,0);}
.m53_c00171{transform:matrix(0.279604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279604,0.000000,0.000000,0.250000,0,0);}
.m4d_c00171{transform:matrix(0.279775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279775,0.000000,0.000000,0.250000,0,0);}
.m44_c00171{transform:matrix(0.279921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279921,0.000000,0.000000,0.250000,0,0);}
.m1f_c00171{transform:matrix(0.280047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280047,0.000000,0.000000,0.250000,0,0);}
.m4c_c00171{transform:matrix(0.280188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280188,0.000000,0.000000,0.250000,0,0);}
.m9f_c00171{transform:matrix(0.281227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281227,0.000000,0.000000,0.250000,0,0);}
.m48_c00171{transform:matrix(0.282692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282692,0.000000,0.000000,0.250000,0,0);}
.m23_c00171{transform:matrix(0.282876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282876,0.000000,0.000000,0.250000,0,0);}
.ma9_c00171{transform:matrix(0.282919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282919,0.000000,0.000000,0.250000,0,0);}
.m0_c00171{transform:matrix(0.283269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283269,0.000000,0.000000,0.250000,0,0);}
.m17_c00171{transform:matrix(0.283335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283335,0.000000,0.000000,0.250000,0,0);}
.m89_c00171{transform:matrix(0.284195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284195,0.000000,0.000000,0.250000,0,0);}
.ma2_c00171{transform:matrix(0.284343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284343,0.000000,0.000000,0.250000,0,0);}
.m6_c00171{transform:matrix(0.284344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284344,0.000000,0.000000,0.250000,0,0);}
.m83_c00171{transform:matrix(0.284938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284938,0.000000,0.000000,0.250000,0,0);}
.m4a_c00171{transform:matrix(0.285700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285700,0.000000,0.000000,0.250000,0,0);}
.m6b_c00171{transform:matrix(0.285790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285790,0.000000,0.000000,0.250000,0,0);}
.mb5_c00171{transform:matrix(0.285901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285901,0.000000,0.000000,0.250000,0,0);}
.mbe_c00171{transform:matrix(0.286104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286104,0.000000,0.000000,0.250000,0,0);}
.m49_c00171{transform:matrix(0.286635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286635,0.000000,0.000000,0.250000,0,0);}
.m3e_c00171{transform:matrix(0.287201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287201,0.000000,0.000000,0.250000,0,0);}
.mbb_c00171{transform:matrix(0.287484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287484,0.000000,0.000000,0.250000,0,0);}
.m5d_c00171{transform:matrix(0.287898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287898,0.000000,0.000000,0.250000,0,0);}
.ma0_c00171{transform:matrix(0.288185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288185,0.000000,0.000000,0.250000,0,0);}
.m35_c00171{transform:matrix(0.289082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289082,0.000000,0.000000,0.250000,0,0);}
.m8b_c00171{transform:matrix(0.289097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289097,0.000000,0.000000,0.250000,0,0);}
.m8a_c00171{transform:matrix(0.289127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289127,0.000000,0.000000,0.250000,0,0);}
.m93_c00171{transform:matrix(0.289682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289682,0.000000,0.000000,0.250000,0,0);}
.m2c_c00171{transform:matrix(0.289687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289687,0.000000,0.000000,0.250000,0,0);}
.mb4_c00171{transform:matrix(0.290893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290893,0.000000,0.000000,0.250000,0,0);}
.m37_c00171{transform:matrix(0.292181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292181,0.000000,0.000000,0.250000,0,0);}
.md5_c00171{transform:matrix(0.292473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292473,0.000000,0.000000,0.250000,0,0);}
.m67_c00171{transform:matrix(0.293013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293013,0.000000,0.000000,0.250000,0,0);}
.m13_c00171{transform:matrix(0.293095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293095,0.000000,0.000000,0.250000,0,0);}
.mda_c00171{transform:matrix(0.293131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293131,0.000000,0.000000,0.250000,0,0);}
.md_c00171{transform:matrix(0.293265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293265,0.000000,0.000000,0.250000,0,0);}
.m3c_c00171{transform:matrix(0.293651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293651,0.000000,0.000000,0.250000,0,0);}
.m63_c00171{transform:matrix(0.294085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294085,0.000000,0.000000,0.250000,0,0);}
.m36_c00171{transform:matrix(0.294646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294646,0.000000,0.000000,0.250000,0,0);}
.m9a_c00171{transform:matrix(0.294718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294718,0.000000,0.000000,0.250000,0,0);}
.m9_c00171{transform:matrix(0.294887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294887,0.000000,0.000000,0.250000,0,0);}
.m9b_c00171{transform:matrix(0.295037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295037,0.000000,0.000000,0.250000,0,0);}
.m95_c00171{transform:matrix(0.295619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295619,0.000000,0.000000,0.250000,0,0);}
.m4f_c00171{transform:matrix(0.295697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295697,0.000000,0.000000,0.250000,0,0);}
.m70_c00171{transform:matrix(0.295996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295996,0.000000,0.000000,0.250000,0,0);}
.mae_c00171{transform:matrix(0.296032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296032,0.000000,0.000000,0.250000,0,0);}
.m72_c00171{transform:matrix(0.296927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296927,0.000000,0.000000,0.250000,0,0);}
.mc9_c00171{transform:matrix(0.297100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297100,0.000000,0.000000,0.250000,0,0);}
.m6f_c00171{transform:matrix(0.297358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297358,0.000000,0.000000,0.250000,0,0);}
.m9e_c00171{transform:matrix(0.297672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297672,0.000000,0.000000,0.250000,0,0);}
.mbd_c00171{transform:matrix(0.298295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298295,0.000000,0.000000,0.250000,0,0);}
.m64_c00171{transform:matrix(0.299005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299005,0.000000,0.000000,0.250000,0,0);}
.mdf_c00171{transform:matrix(0.299077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299077,0.000000,0.000000,0.250000,0,0);}
.m39_c00171{transform:matrix(0.299360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299360,0.000000,0.000000,0.250000,0,0);}
.m92_c00171{transform:matrix(0.299835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299835,0.000000,0.000000,0.250000,0,0);}
.mc4_c00171{transform:matrix(0.300326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300326,0.000000,0.000000,0.250000,0,0);}
.m30_c00171{transform:matrix(0.300644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300644,0.000000,0.000000,0.250000,0,0);}
.m84_c00171{transform:matrix(0.301519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301519,0.000000,0.000000,0.250000,0,0);}
.md4_c00171{transform:matrix(0.301557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301557,0.000000,0.000000,0.250000,0,0);}
.m1b_c00171{transform:matrix(0.302782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302782,0.000000,0.000000,0.250000,0,0);}
.mdd_c00171{transform:matrix(0.303363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303363,0.000000,0.000000,0.250000,0,0);}
.mb7_c00171{transform:matrix(0.304753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304753,0.000000,0.000000,0.250000,0,0);}
.mcc_c00171{transform:matrix(0.305008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305008,0.000000,0.000000,0.250000,0,0);}
.m91_c00171{transform:matrix(0.305079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305079,0.000000,0.000000,0.250000,0,0);}
.m57_c00171{transform:matrix(0.305681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305681,0.000000,0.000000,0.250000,0,0);}
.m7a_c00171{transform:matrix(0.305926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305926,0.000000,0.000000,0.250000,0,0);}
.m7_c00171{transform:matrix(0.306300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306300,0.000000,0.000000,0.250000,0,0);}
.md7_c00171{transform:matrix(0.306449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306449,0.000000,0.000000,0.250000,0,0);}
.m66_c00171{transform:matrix(0.307206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307206,0.000000,0.000000,0.250000,0,0);}
.m1e_c00171{transform:matrix(0.307484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307484,0.000000,0.000000,0.250000,0,0);}
.m6d_c00171{transform:matrix(0.307652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307652,0.000000,0.000000,0.250000,0,0);}
.mb9_c00171{transform:matrix(0.307757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307757,0.000000,0.000000,0.250000,0,0);}
.mb_c00171{transform:matrix(0.308141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308141,0.000000,0.000000,0.250000,0,0);}
.m5e_c00171{transform:matrix(0.308708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308708,0.000000,0.000000,0.250000,0,0);}
.ma5_c00171{transform:matrix(0.309892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309892,0.000000,0.000000,0.250000,0,0);}
.mc7_c00171{transform:matrix(0.310166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310166,0.000000,0.000000,0.250000,0,0);}
.m6a_c00171{transform:matrix(0.310246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310246,0.000000,0.000000,0.250000,0,0);}
.m26_c00171{transform:matrix(0.310341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310341,0.000000,0.000000,0.250000,0,0);}
.m47_c00171{transform:matrix(0.310555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310555,0.000000,0.000000,0.250000,0,0);}
.m80_c00171{transform:matrix(0.312008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312008,0.000000,0.000000,0.250000,0,0);}
.m7e_c00171{transform:matrix(0.313180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313180,0.000000,0.000000,0.250000,0,0);}
.m42_c00171{transform:matrix(0.313547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313547,0.000000,0.000000,0.250000,0,0);}
.mb6_c00171{transform:matrix(0.314191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314191,0.000000,0.000000,0.250000,0,0);}
.mf_c00171{transform:matrix(0.315286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315286,0.000000,0.000000,0.250000,0,0);}
.mc_c00171{transform:matrix(0.315701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315701,0.000000,0.000000,0.250000,0,0);}
.m85_c00171{transform:matrix(0.315955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315955,0.000000,0.000000,0.250000,0,0);}
.m4_c00171{transform:matrix(0.316028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316028,0.000000,0.000000,0.250000,0,0);}
.m8f_c00171{transform:matrix(0.316597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316597,0.000000,0.000000,0.250000,0,0);}
.ma1_c00171{transform:matrix(0.316667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316667,0.000000,0.000000,0.250000,0,0);}
.m7b_c00171{transform:matrix(0.316832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316832,0.000000,0.000000,0.250000,0,0);}
.m5c_c00171{transform:matrix(0.316861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316861,0.000000,0.000000,0.250000,0,0);}
.m68_c00171{transform:matrix(0.317317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317317,0.000000,0.000000,0.250000,0,0);}
.m8e_c00171{transform:matrix(0.318020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318020,0.000000,0.000000,0.250000,0,0);}
.m87_c00171{transform:matrix(0.318112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318112,0.000000,0.000000,0.250000,0,0);}
.m11_c00171{transform:matrix(0.318600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318600,0.000000,0.000000,0.250000,0,0);}
.m9c_c00171{transform:matrix(0.318953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318953,0.000000,0.000000,0.250000,0,0);}
.m94_c00171{transform:matrix(0.319498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319498,0.000000,0.000000,0.250000,0,0);}
.mdb_c00171{transform:matrix(0.320433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320433,0.000000,0.000000,0.250000,0,0);}
.m98_c00171{transform:matrix(0.323398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323398,0.000000,0.000000,0.250000,0,0);}
.m7c_c00171{transform:matrix(0.323835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323835,0.000000,0.000000,0.250000,0,0);}
.m5a_c00171{transform:matrix(0.323896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323896,0.000000,0.000000,0.250000,0,0);}
.m33_c00171{transform:matrix(0.324219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324219,0.000000,0.000000,0.250000,0,0);}
.m8d_c00171{transform:matrix(0.324326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324326,0.000000,0.000000,0.250000,0,0);}
.m2d_c00171{transform:matrix(0.324478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324478,0.000000,0.000000,0.250000,0,0);}
.m3d_c00171{transform:matrix(0.324926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324926,0.000000,0.000000,0.250000,0,0);}
.mc1_c00171{transform:matrix(0.325891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325891,0.000000,0.000000,0.250000,0,0);}
.m2f_c00171{transform:matrix(0.326216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326216,0.000000,0.000000,0.250000,0,0);}
.ma4_c00171{transform:matrix(0.326595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326595,0.000000,0.000000,0.250000,0,0);}
.maf_c00171{transform:matrix(0.327758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327758,0.000000,0.000000,0.250000,0,0);}
.mce_c00171{transform:matrix(0.328356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328356,0.000000,0.000000,0.250000,0,0);}
.m5b_c00171{transform:matrix(0.328694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328694,0.000000,0.000000,0.250000,0,0);}
.m15_c00171{transform:matrix(0.329233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329233,0.000000,0.000000,0.250000,0,0);}
.m78_c00171{transform:matrix(0.329236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329236,0.000000,0.000000,0.250000,0,0);}
.m43_c00171{transform:matrix(0.329803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329803,0.000000,0.000000,0.250000,0,0);}
.m88_c00171{transform:matrix(0.330341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330341,0.000000,0.000000,0.250000,0,0);}
.m4e_c00171{transform:matrix(0.330722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330722,0.000000,0.000000,0.250000,0,0);}
.mba_c00171{transform:matrix(0.330888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330888,0.000000,0.000000,0.250000,0,0);}
.mb3_c00171{transform:matrix(0.331047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331047,0.000000,0.000000,0.250000,0,0);}
.m2b_c00171{transform:matrix(0.331518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331518,0.000000,0.000000,0.250000,0,0);}
.m10_c00171{transform:matrix(0.332422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332422,0.000000,0.000000,0.250000,0,0);}
.mb2_c00171{transform:matrix(0.334017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334017,0.000000,0.000000,0.250000,0,0);}
.mab_c00171{transform:matrix(0.334526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334526,0.000000,0.000000,0.250000,0,0);}
.m6e_c00171{transform:matrix(0.334913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334913,0.000000,0.000000,0.250000,0,0);}
.mbf_c00171{transform:matrix(0.335641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335641,0.000000,0.000000,0.250000,0,0);}
.m74_c00171{transform:matrix(0.335966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335966,0.000000,0.000000,0.250000,0,0);}
.m22_c00171{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);}
.m12_c00171{transform:matrix(0.338507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338507,0.000000,0.000000,0.250000,0,0);}
.m79_c00171{transform:matrix(0.338528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338528,0.000000,0.000000,0.250000,0,0);}
.m5f_c00171{transform:matrix(0.338856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338856,0.000000,0.000000,0.250000,0,0);}
.m71_c00171{transform:matrix(0.339802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339802,0.000000,0.000000,0.250000,0,0);}
.m29_c00171{transform:matrix(0.340028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340028,0.000000,0.000000,0.250000,0,0);}
.m2a_c00171{transform:matrix(0.341856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341856,0.000000,0.000000,0.250000,0,0);}
.mcd_c00171{transform:matrix(0.342065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342065,0.000000,0.000000,0.250000,0,0);}
.m31_c00171{transform:matrix(0.342074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342074,0.000000,0.000000,0.250000,0,0);}
.md8_c00171{transform:matrix(0.342556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342556,0.000000,0.000000,0.250000,0,0);}
.m81_c00171{transform:matrix(0.343841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343841,0.000000,0.000000,0.250000,0,0);}
.m97_c00171{transform:matrix(0.344253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344253,0.000000,0.000000,0.250000,0,0);}
.m8c_c00171{transform:matrix(0.345320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345320,0.000000,0.000000,0.250000,0,0);}
.m65_c00171{transform:matrix(0.345745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345745,0.000000,0.000000,0.250000,0,0);}
.m3f_c00171{transform:matrix(0.345995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345995,0.000000,0.000000,0.250000,0,0);}
.me_c00171{transform:matrix(0.347225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347225,0.000000,0.000000,0.250000,0,0);}
.m21_c00171{transform:matrix(0.348072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348072,0.000000,0.000000,0.250000,0,0);}
.m28_c00171{transform:matrix(0.348381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348381,0.000000,0.000000,0.250000,0,0);}
.mc2_c00171{transform:matrix(0.351898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351898,0.000000,0.000000,0.250000,0,0);}
.m40_c00171{transform:matrix(0.352172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352172,0.000000,0.000000,0.250000,0,0);}
.m56_c00171{transform:matrix(0.352330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352330,0.000000,0.000000,0.250000,0,0);}
.mcb_c00171{transform:matrix(0.356372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356372,0.000000,0.000000,0.250000,0,0);}
.mb0_c00171{transform:matrix(0.358069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358069,0.000000,0.000000,0.250000,0,0);}
.mca_c00171{transform:matrix(0.358352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358352,0.000000,0.000000,0.250000,0,0);}
.mac_c00171{transform:matrix(0.362021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362021,0.000000,0.000000,0.250000,0,0);}
.mcf_c00171{transform:matrix(0.364530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364530,0.000000,0.000000,0.250000,0,0);}
.m24_c00171{transform:matrix(0.368518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368518,0.000000,0.000000,0.250000,0,0);}
.m38_c00171{transform:matrix(0.370416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370416,0.000000,0.000000,0.250000,0,0);}
.maa_c00171{transform:matrix(0.370709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370709,0.000000,0.000000,0.250000,0,0);}
.mb1_c00171{transform:matrix(0.374642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374642,0.000000,0.000000,0.250000,0,0);}
.m16_c00171{transform:matrix(0.375025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375025,0.000000,0.000000,0.250000,0,0);}
.m6c_c00171{transform:matrix(0.377617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377617,0.000000,0.000000,0.250000,0,0);}
.m1a_c00171{transform:matrix(0.381710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381710,0.000000,0.000000,0.250000,0,0);}
.ma6_c00171{transform:matrix(0.403266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403266,0.000000,0.000000,0.250000,0,0);}
.m90_c00171{transform:matrix(0.413078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413078,0.000000,0.000000,0.250000,0,0);}
.m7f_c00171{transform:matrix(0.420077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420077,0.000000,0.000000,0.250000,0,0);}
.m76_c00171{transform:matrix(0.434039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434039,0.000000,0.000000,0.250000,0,0);}
.v1_c00171{vertical-align:-11.404800px;}
.v0_c00171{vertical-align:0.000000px;}
.ls4_c00171{letter-spacing:-2.674980px;}
.ls13_c00171{letter-spacing:-2.217600px;}
.ls7_c00171{letter-spacing:-1.918343px;}
.lse_c00171{letter-spacing:-1.650845px;}
.lsc_c00171{letter-spacing:-1.566774px;}
.lsb_c00171{letter-spacing:-1.238134px;}
.ls10_c00171{letter-spacing:-0.733709px;}
.ls5_c00171{letter-spacing:-0.061142px;}
.ls2_c00171{letter-spacing:0.000000px;}
.ls9_c00171{letter-spacing:0.053500px;}
.lsa_c00171{letter-spacing:0.726066px;}
.ls11_c00171{letter-spacing:0.978278px;}
.ls8_c00171{letter-spacing:1.001207px;}
.lsf_c00171{letter-spacing:1.722600px;}
.ls0_c00171{letter-spacing:2.208769px;}
.lsd_c00171{letter-spacing:2.835479px;}
.ls3_c00171{letter-spacing:3.544200px;}
.ls1_c00171{letter-spacing:3.821400px;}
.ls6_c00171{letter-spacing:49.896198px;}
.ls12_c00171{letter-spacing:54.172998px;}
.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;}
}
.ws3_c00171{word-spacing:-21.315769px;}
.ws2_c00171{word-spacing:-19.107000px;}
.ws6_c00171{word-spacing:-17.456155px;}
.ws1_c00171{word-spacing:-17.188657px;}
.ws0_c00171{word-spacing:-4.203540px;}
.ws7_c00171{word-spacing:-2.445696px;}
.ws8_c00171{word-spacing:-1.069992px;}
.wsc_c00171{word-spacing:0.000000px;}
.ws4_c00171{word-spacing:0.382140px;}
.ws5_c00171{word-spacing:3.362832px;}
.wsb_c00171{word-spacing:4.662108px;}
.wsa_c00171{word-spacing:6.496380px;}
.ws9_c00171{word-spacing:7.948512px;}
._17_c00171{margin-left:-10.012068px;}
._19_c00171{margin-left:-5.165820px;}
._1b_c00171{margin-left:-2.598948px;}
._e_c00171{margin-left:-1.515492px;}
._5_c00171{width:2.705472px;}
._c_c00171{width:3.821400px;}
._18_c00171{width:5.793322px;}
._11_c00171{width:7.489944px;}
._6_c00171{width:9.018504px;}
._9_c00171{width:10.164924px;}
._3_c00171{width:11.846340px;}
._f_c00171{width:13.757040px;}
._12_c00171{width:16.279560px;}
._14_c00171{width:17.578440px;}
._7_c00171{width:21.399840px;}
._1_c00171{width:22.775544px;}
._b_c00171{width:25.985520px;}
._13_c00171{width:27.784627px;}
._15_c00171{width:29.425176px;}
._16_c00171{width:31.106196px;}
._2_c00171{width:32.481900px;}
._d_c00171{width:34.239744px;}
._8_c00171{width:35.386164px;}
._a_c00171{width:38.061144px;}
._10_c00171{width:39.589704px;}
._1a_c00171{width:42.015600px;}
._4_c00171{width:47.614644px;}
._0_c00171{width:1071.298008px;}
.fc0_c00171{color:transparent;}
.fs9_c00171{font-size:19.008000px;}
.fs1_c00171{font-size:22.176000px;}
.fsf_c00171{font-size:22.374000px;}
.fs3_c00171{font-size:27.720000px;}
.fs2_c00171{font-size:33.264000px;}
.fse_c00171{font-size:33.858000px;}
.fs8_c00171{font-size:34.452000px;}
.fsc_c00171{font-size:38.808000px;}
.fsd_c00171{font-size:39.204000px;}
.fs5_c00171{font-size:49.896198px;}
.fsb_c00171{font-size:54.172998px;}
.fs10_c00171{font-size:63.360000px;}
.fs7_c00171{font-size:66.330000px;}
.fs4_c00171{font-size:70.884000px;}
.fsa_c00171{font-size:72.864000px;}
.fs0_c00171{font-size:76.428000px;}
.fs6_c00171{font-size:107.712198px;}
.y0_c00171{bottom:0.000000px;}
.y2b_c00171{bottom:55.861785px;}
.y1_c00171{bottom:76.500000px;}
.y2a_c00171{bottom:94.357935px;}
.y29_c00171{bottom:122.508585px;}
.y28_c00171{bottom:146.387385px;}
.y26_c00171{bottom:177.042735px;}
.y27_c00171{bottom:182.027385px;}
.y25_c00171{bottom:212.326335px;}
.y24_c00171{bottom:232.641135px;}
.y23_c00171{bottom:245.827935px;}
.y22_c00171{bottom:277.898985px;}
.y21_c00171{bottom:312.474735px;}
.y20_c00171{bottom:344.907135px;}
.y1f_c00171{bottom:376.621785px;}
.y1e_c00171{bottom:408.697785px;}
.y1d_c00171{bottom:440.417385px;}
.y1c_c00171{bottom:472.854735px;}
.y1b_c00171{bottom:498.871935px;}
.y19_c00171{bottom:504.217935px;}
.y1a_c00171{bottom:504.574335px;}
.y17_c00171{bottom:505.287135px;}
.y18_c00171{bottom:510.271785px;}
.y16_c00171{bottom:537.719535px;}
.y15_c00171{bottom:570.146985px;}
.y14_c00171{bottom:595.451385px;}
.y13_c00171{bottom:602.579385px;}
.y12_c00171{bottom:633.942585px;}
.y10_c00171{bottom:666.731385px;}
.yf_c00171{bottom:698.807385px;}
.y11_c00171{bottom:719.834985px;}
.ye_c00171{bottom:730.526985px;}
.yd_c00171{bottom:785.056185px;}
.yb_c00171{bottom:796.109535px;}
.yc_c00171{bottom:796.817385px;}
.ya_c00171{bottom:828.180585px;}
.y9_c00171{bottom:860.969385px;}
.y8_c00171{bottom:873.086985px;}
.y7_c00171{bottom:893.758185px;}
.y6_c00171{bottom:926.190585px;}
.y5_c00171{bottom:980.368335px;}
.y4_c00171{bottom:993.555135px;}
.y3_c00171{bottom:1053.781785px;}
.y2_c00171{bottom:1075.878585px;}
.ha_c00171{height:18.655313px;}
.h10_c00171{height:21.958857px;}
.h3_c00171{height:23.128875px;}
.h5_c00171{height:28.911094px;}
.h7_c00171{height:33.230868px;}
.h4_c00171{height:34.693313px;}
.hf_c00171{height:35.312836px;}
.h9_c00171{height:35.932359px;}
.hc_c00171{height:36.079217px;}
.he_c00171{height:38.476582px;}
.hd_c00171{height:40.475531px;}
.h11_c00171{height:62.184375px;}
.h6_c00171{height:69.568770px;}
.hb_c00171{height:71.512031px;}
.h2_c00171{height:75.009902px;}
.h8_c00171{height:105.713632px;}
.h1_c00171{height:1110.000000px;}
.h0_c00171{height:1263.000000px;}
.w1_c00171{width:733.500000px;}
.w0_c00171{width:892.500000px;}
.x0_c00171{left:0.000000px;}
.x47_c00171{left:78.392685px;}
.x1_c00171{left:79.500000px;}
.x57_c00171{left:80.659785px;}
.x19_c00171{left:81.709185px;}
.x71_c00171{left:92.104185px;}
.x67_c00171{left:102.009135px;}
.x28_c00171{left:103.672335px;}
.x42_c00171{left:113.473335px;}
.x62_c00171{left:123.640635px;}
.x72_c00171{left:124.873185px;}
.x29_c00171{left:125.937435px;}
.x3d_c00171{left:134.560335px;}
.x48_c00171{left:135.609735px;}
.x6_c00171{left:137.119485px;}
.x43_c00171{left:145.687935px;}
.x5d_c00171{left:146.930385px;}
.x49_c00171{left:157.696635px;}
.x1a_c00171{left:158.765835px;}
.x5e_c00171{left:162.993135px;}
.x34_c00171{left:168.745035px;}
.x7_c00171{left:169.814235px;}
.x8_c00171{left:180.085485px;}
.x2a_c00171{left:181.194285px;}
.x9_c00171{left:190.287435px;}
.x35_c00171{left:191.589285px;}
.x6b_c00171{left:193.589085px;}
.xa_c00171{left:201.756585px;}
.x68_c00171{left:211.711035px;}
.x2b_c00171{left:213.329685px;}
.x36_c00171{left:222.759435px;}
.x58_c00171{left:223.987035px;}
.x1b_c00171{left:225.333435px;}
.x50_c00171{left:235.426485px;}
.x76_c00171{left:236.495685px;}
.x51_c00171{left:246.133335px;}
.x44_c00171{left:250.063635px;}
.xb_c00171{left:257.305485px;}
.x4_c00171{left:261.126885px;}
.x1c_c00171{left:267.982635px;}
.x52_c00171{left:269.061735px;}
.x5f_c00171{left:271.284285px;}
.x1d_c00171{left:280.288335px;}
.xc_c00171{left:291.346635px;}
.x5_c00171{left:297.499485px;}
.x73_c00171{left:300.771435px;}
.xd_c00171{left:301.909935px;}
.x3a_c00171{left:313.245435px;}
.xe_c00171{left:324.293835px;}
.x37_c00171{left:325.476885px;}
.x6e_c00171{left:335.134335px;}
.x60_c00171{left:336.248085px;}
.x6c_c00171{left:337.322235px;}
.x1e_c00171{left:346.747035px;}
.x2c_c00171{left:357.033135px;}
.x63_c00171{left:359.725935px;}
.x6f_c00171{left:367.838985px;}
.x38_c00171{left:368.843835px;}
.x53_c00171{left:379.733835px;}
.xf_c00171{left:380.778285px;}
.x4a_c00171{left:389.881335px;}
.x3b_c00171{left:391.064385px;}
.x75_c00171{left:401.286135px;}
.x2d_c00171{left:402.404835px;}
.x64_c00171{left:404.127435px;}
.x10_c00171{left:413.270085px;}
.x61_c00171{left:423.016635px;}
.x1f_c00171{left:424.565985px;}
.x2e_c00171{left:433.748235px;}
.x20_c00171{left:435.668835px;}
.x11_c00171{left:445.831185px;}
.x54_c00171{left:447.029085px;}
.x3e_c00171{left:457.785435px;}
.x21_c00171{left:468.482385px;}
.x4b_c00171{left:469.516935px;}
.x6d_c00171{left:477.941835px;}
.x2f_c00171{left:479.501085px;}
.x4f_c00171{left:489.346635px;}
.x59_c00171{left:490.643535px;}
.x27_c00171{left:494.192685px;}
.x3_c00171{left:500.315835px;}
.x3f_c00171{left:501.355335px;}
.x22_c00171{left:512.661135px;}
.x12_c00171{left:523.724385px;}
.x30_c00171{left:524.758935px;}
.x40_c00171{left:534.906435px;}
.x23_c00171{left:544.232235px;}
.x39_c00171{left:545.801385px;}
.x74_c00171{left:546.806235px;}
.x13_c00171{left:555.547935px;}
.x31_c00171{left:557.844735px;}
.x5a_c00171{left:567.373485px;}
.x14_c00171{left:568.591185px;}
.x45_c00171{left:577.733835px;}
.x41_c00171{left:578.877285px;}
.x32_c00171{left:589.425735px;}
.x55_c00171{left:591.024585px;}
.x15_c00171{left:600.508785px;}
.x33_c00171{left:602.048235px;}
.x24_c00171{left:611.898735px;}
.x5b_c00171{left:623.155035px;}
.x56_c00171{left:626.837835px;}
.x70_c00171{left:631.906635px;}
.x16_c00171{left:633.881685px;}
.x17_c00171{left:642.955035px;}
.x46_c00171{left:644.905335px;}
.x4c_c00171{left:656.290335px;}
.x2_c00171{left:657.310035px;}
.x25_c00171{left:666.789285px;}
.x4d_c00171{left:678.411885px;}
.x69_c00171{left:680.431485px;}
.x18_c00171{left:689.955285px;}
.x3c_c00171{left:694.529085px;}
.x78_c00171{left:695.548785px;}
.x77_c00171{left:696.622935px;}
.x65_c00171{left:699.983985px;}
.x26_c00171{left:701.241285px;}
.x4e_c00171{left:710.349285px;}
.x6a_c00171{left:711.502635px;}
.x66_c00171{left:712.547085px;}
.x5c_c00171{left:722.922285px;}
@media print{
.v1_c00171{vertical-align:-10.137600pt;}
.v0_c00171{vertical-align:0.000000pt;}
.ls4_c00171{letter-spacing:-2.377760pt;}
.ls13_c00171{letter-spacing:-1.971200pt;}
.ls7_c00171{letter-spacing:-1.705194pt;}
.lse_c00171{letter-spacing:-1.467418pt;}
.lsc_c00171{letter-spacing:-1.392688pt;}
.lsb_c00171{letter-spacing:-1.100563pt;}
.ls10_c00171{letter-spacing:-0.652186pt;}
.ls5_c00171{letter-spacing:-0.054349pt;}
.ls2_c00171{letter-spacing:0.000000pt;}
.ls9_c00171{letter-spacing:0.047555pt;}
.lsa_c00171{letter-spacing:0.645392pt;}
.ls11_c00171{letter-spacing:0.869581pt;}
.ls8_c00171{letter-spacing:0.889962pt;}
.lsf_c00171{letter-spacing:1.531200pt;}
.ls0_c00171{letter-spacing:1.963350pt;}
.lsd_c00171{letter-spacing:2.520426pt;}
.ls3_c00171{letter-spacing:3.150400pt;}
.ls1_c00171{letter-spacing:3.396800pt;}
.ls6_c00171{letter-spacing:44.352176pt;}
.ls12_c00171{letter-spacing:48.153776pt;}
.ws3_c00171{word-spacing:-18.947350pt;}
.ws2_c00171{word-spacing:-16.984000pt;}
.ws6_c00171{word-spacing:-15.516582pt;}
.ws1_c00171{word-spacing:-15.278806pt;}
.ws0_c00171{word-spacing:-3.736480pt;}
.ws7_c00171{word-spacing:-2.173952pt;}
.ws8_c00171{word-spacing:-0.951104pt;}
.wsc_c00171{word-spacing:0.000000pt;}
.ws4_c00171{word-spacing:0.339680pt;}
.ws5_c00171{word-spacing:2.989184pt;}
.wsb_c00171{word-spacing:4.144096pt;}
.wsa_c00171{word-spacing:5.774560pt;}
.ws9_c00171{word-spacing:7.065344pt;}
._17_c00171{margin-left:-8.899616pt;}
._19_c00171{margin-left:-4.591840pt;}
._1b_c00171{margin-left:-2.310176pt;}
._e_c00171{margin-left:-1.347104pt;}
._5_c00171{width:2.404864pt;}
._c_c00171{width:3.396800pt;}
._18_c00171{width:5.149619pt;}
._11_c00171{width:6.657728pt;}
._6_c00171{width:8.016448pt;}
._9_c00171{width:9.035488pt;}
._3_c00171{width:10.530080pt;}
._f_c00171{width:12.228480pt;}
._12_c00171{width:14.470720pt;}
._14_c00171{width:15.625280pt;}
._7_c00171{width:19.022080pt;}
._1_c00171{width:20.244928pt;}
._b_c00171{width:23.098240pt;}
._13_c00171{width:24.697446pt;}
._15_c00171{width:26.155712pt;}
._16_c00171{width:27.649952pt;}
._2_c00171{width:28.872800pt;}
._d_c00171{width:30.435328pt;}
._8_c00171{width:31.454368pt;}
._a_c00171{width:33.832128pt;}
._10_c00171{width:35.190848pt;}
._1a_c00171{width:37.347200pt;}
._4_c00171{width:42.324128pt;}
._0_c00171{width:952.264896pt;}
.fs9_c00171{font-size:16.896000pt;}
.fs1_c00171{font-size:19.712000pt;}
.fsf_c00171{font-size:19.888000pt;}
.fs3_c00171{font-size:24.640000pt;}
.fs2_c00171{font-size:29.568000pt;}
.fse_c00171{font-size:30.096000pt;}
.fs8_c00171{font-size:30.624000pt;}
.fsc_c00171{font-size:34.496000pt;}
.fsd_c00171{font-size:34.848000pt;}
.fs5_c00171{font-size:44.352176pt;}
.fsb_c00171{font-size:48.153776pt;}
.fs10_c00171{font-size:56.320000pt;}
.fs7_c00171{font-size:58.960000pt;}
.fs4_c00171{font-size:63.008000pt;}
.fsa_c00171{font-size:64.768000pt;}
.fs0_c00171{font-size:67.936000pt;}
.fs6_c00171{font-size:95.744176pt;}
.y0_c00171{bottom:0.000000pt;}
.y2b_c00171{bottom:49.654920pt;}
.y1_c00171{bottom:68.000000pt;}
.y2a_c00171{bottom:83.873720pt;}
.y29_c00171{bottom:108.896520pt;}
.y28_c00171{bottom:130.122120pt;}
.y26_c00171{bottom:157.371320pt;}
.y27_c00171{bottom:161.802120pt;}
.y25_c00171{bottom:188.734520pt;}
.y24_c00171{bottom:206.792120pt;}
.y23_c00171{bottom:218.513720pt;}
.y22_c00171{bottom:247.021320pt;}
.y21_c00171{bottom:277.755320pt;}
.y20_c00171{bottom:306.584120pt;}
.y1f_c00171{bottom:334.774920pt;}
.y1e_c00171{bottom:363.286920pt;}
.y1d_c00171{bottom:391.482120pt;}
.y1c_c00171{bottom:420.315320pt;}
.y1b_c00171{bottom:443.441720pt;}
.y19_c00171{bottom:448.193720pt;}
.y1a_c00171{bottom:448.510520pt;}
.y17_c00171{bottom:449.144120pt;}
.y18_c00171{bottom:453.574920pt;}
.y16_c00171{bottom:477.972920pt;}
.y15_c00171{bottom:506.797320pt;}
.y14_c00171{bottom:529.290120pt;}
.y13_c00171{bottom:535.626120pt;}
.y12_c00171{bottom:563.504520pt;}
.y10_c00171{bottom:592.650120pt;}
.yf_c00171{bottom:621.162120pt;}
.y11_c00171{bottom:639.853320pt;}
.ye_c00171{bottom:649.357320pt;}
.yd_c00171{bottom:697.827720pt;}
.yb_c00171{bottom:707.652920pt;}
.yc_c00171{bottom:708.282120pt;}
.ya_c00171{bottom:736.160520pt;}
.y9_c00171{bottom:765.306120pt;}
.y8_c00171{bottom:776.077320pt;}
.y7_c00171{bottom:794.451720pt;}
.y6_c00171{bottom:823.280520pt;}
.y5_c00171{bottom:871.438520pt;}
.y4_c00171{bottom:883.160120pt;}
.y3_c00171{bottom:936.694920pt;}
.y2_c00171{bottom:956.336520pt;}
.ha_c00171{height:16.582500pt;}
.h10_c00171{height:19.518984pt;}
.h3_c00171{height:20.559000pt;}
.h5_c00171{height:25.698750pt;}
.h7_c00171{height:29.538549pt;}
.h4_c00171{height:30.838500pt;}
.hf_c00171{height:31.389188pt;}
.h9_c00171{height:31.939875pt;}
.hc_c00171{height:32.070415pt;}
.he_c00171{height:34.201406pt;}
.hd_c00171{height:35.978250pt;}
.h11_c00171{height:55.275000pt;}
.h6_c00171{height:61.838906pt;}
.hb_c00171{height:63.566250pt;}
.h2_c00171{height:66.675469pt;}
.h8_c00171{height:93.967673pt;}
.h1_c00171{height:986.666667pt;}
.h0_c00171{height:1122.666667pt;}
.w1_c00171{width:652.000000pt;}
.w0_c00171{width:793.333333pt;}
.x0_c00171{left:0.000000pt;}
.x47_c00171{left:69.682387pt;}
.x1_c00171{left:70.666667pt;}
.x57_c00171{left:71.697587pt;}
.x19_c00171{left:72.630387pt;}
.x71_c00171{left:81.870387pt;}
.x67_c00171{left:90.674787pt;}
.x28_c00171{left:92.153187pt;}
.x42_c00171{left:100.865187pt;}
.x62_c00171{left:109.902787pt;}
.x72_c00171{left:110.998387pt;}
.x29_c00171{left:111.944387pt;}
.x3d_c00171{left:119.609187pt;}
.x48_c00171{left:120.541987pt;}
.x6_c00171{left:121.883987pt;}
.x43_c00171{left:129.500387pt;}
.x5d_c00171{left:130.604787pt;}
.x49_c00171{left:140.174787pt;}
.x1a_c00171{left:141.125187pt;}
.x5e_c00171{left:144.882787pt;}
.x34_c00171{left:149.995587pt;}
.x7_c00171{left:150.945987pt;}
.x8_c00171{left:160.075987pt;}
.x2a_c00171{left:161.061587pt;}
.x9_c00171{left:169.144387pt;}
.x35_c00171{left:170.301587pt;}
.x6b_c00171{left:172.079187pt;}
.xa_c00171{left:179.339187pt;}
.x68_c00171{left:188.187587pt;}
.x2b_c00171{left:189.626387pt;}
.x36_c00171{left:198.008387pt;}
.x58_c00171{left:199.099587pt;}
.x1b_c00171{left:200.296387pt;}
.x50_c00171{left:209.267987pt;}
.x76_c00171{left:210.218387pt;}
.x51_c00171{left:218.785187pt;}
.x44_c00171{left:222.278787pt;}
.xb_c00171{left:228.715987pt;}
.x4_c00171{left:232.112787pt;}
.x1c_c00171{left:238.206787pt;}
.x52_c00171{left:239.165987pt;}
.x5f_c00171{left:241.141587pt;}
.x1d_c00171{left:249.145187pt;}
.xc_c00171{left:258.974787pt;}
.x5_c00171{left:264.443987pt;}
.x73_c00171{left:267.352387pt;}
.xd_c00171{left:268.364387pt;}
.x3a_c00171{left:278.440387pt;}
.xe_c00171{left:288.261187pt;}
.x37_c00171{left:289.312787pt;}
.x6e_c00171{left:297.897187pt;}
.x60_c00171{left:298.887187pt;}
.x6c_c00171{left:299.841987pt;}
.x1e_c00171{left:308.219587pt;}
.x2c_c00171{left:317.362787pt;}
.x63_c00171{left:319.756387pt;}
.x6f_c00171{left:326.967987pt;}
.x38_c00171{left:327.861187pt;}
.x53_c00171{left:337.541187pt;}
.xf_c00171{left:338.469587pt;}
.x4a_c00171{left:346.561187pt;}
.x3b_c00171{left:347.612787pt;}
.x75_c00171{left:356.698787pt;}
.x2d_c00171{left:357.693187pt;}
.x64_c00171{left:359.224387pt;}
.x10_c00171{left:367.351187pt;}
.x61_c00171{left:376.014787pt;}
.x1f_c00171{left:377.391987pt;}
.x2e_c00171{left:385.553987pt;}
.x20_c00171{left:387.261187pt;}
.x11_c00171{left:396.294387pt;}
.x54_c00171{left:397.359187pt;}
.x3e_c00171{left:406.920387pt;}
.x21_c00171{left:416.428787pt;}
.x4b_c00171{left:417.348387pt;}
.x6d_c00171{left:424.837187pt;}
.x2f_c00171{left:426.223187pt;}
.x4f_c00171{left:434.974787pt;}
.x59_c00171{left:436.127587pt;}
.x27_c00171{left:439.282387pt;}
.x3_c00171{left:444.725187pt;}
.x3f_c00171{left:445.649187pt;}
.x22_c00171{left:455.698787pt;}
.x12_c00171{left:465.532787pt;}
.x30_c00171{left:466.452387pt;}
.x40_c00171{left:475.472387pt;}
.x23_c00171{left:483.761987pt;}
.x39_c00171{left:485.156787pt;}
.x74_c00171{left:486.049987pt;}
.x13_c00171{left:493.820387pt;}
.x31_c00171{left:495.861987pt;}
.x5a_c00171{left:504.331987pt;}
.x14_c00171{left:505.414387pt;}
.x45_c00171{left:513.541187pt;}
.x41_c00171{left:514.557587pt;}
.x32_c00171{left:523.933987pt;}
.x55_c00171{left:525.355187pt;}
.x15_c00171{left:533.785587pt;}
.x33_c00171{left:535.153987pt;}
.x24_c00171{left:543.909987pt;}
.x5b_c00171{left:553.915587pt;}
.x56_c00171{left:557.189187pt;}
.x70_c00171{left:561.694787pt;}
.x16_c00171{left:563.450387pt;}
.x17_c00171{left:571.515587pt;}
.x46_c00171{left:573.249187pt;}
.x4c_c00171{left:583.369187pt;}
.x2_c00171{left:584.275587pt;}
.x25_c00171{left:592.701587pt;}
.x4d_c00171{left:603.032787pt;}
.x69_c00171{left:604.827987pt;}
.x18_c00171{left:613.293587pt;}
.x3c_c00171{left:617.359187pt;}
.x78_c00171{left:618.265587pt;}
.x77_c00171{left:619.220387pt;}
.x65_c00171{left:622.207987pt;}
.x26_c00171{left:623.325587pt;}
.x4e_c00171{left:631.421587pt;}
.x6a_c00171{left:632.446787pt;}
.x66_c00171{left:633.375187pt;}
.x5c_c00171{left:642.597587pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2e57236a0a03e8295b008409.woff2')format("woff");}.ff1_c00172{font-family:ff1_c00172;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00172;src:url('chunks/assets/font_862e37e6dcba094b00ae610f.woff2')format("woff");}.ff2_c00172{font-family:ff2_c00172;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00172;src:url('chunks/assets/font_d337a6f08bdba19d22f0b122.woff2')format("woff");}.ff3_c00172{font-family:ff3_c00172;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5e_c00172{transform:matrix(0.041373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.041373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.041373,0.000000,0.000000,0.250000,0,0);}
.m90_c00172{transform:matrix(0.107377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107377,0.000000,0.000000,0.250000,0,0);}
.m8f_c00172{transform:matrix(0.111167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111167,0.000000,0.000000,0.250000,0,0);}
.m91_c00172{transform:matrix(0.111410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111410,0.000000,0.000000,0.250000,0,0);}
.m4a_c00172{transform:matrix(0.114145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114145,0.000000,0.000000,0.250000,0,0);}
.m8e_c00172{transform:matrix(0.116523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116523,0.000000,0.000000,0.250000,0,0);}
.m16_c00172{transform:matrix(0.126504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126504,0.000000,0.000000,0.250000,0,0);}
.m62_c00172{transform:matrix(0.131579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131579,0.000000,0.000000,0.250000,0,0);}
.m5d_c00172{transform:matrix(0.192983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192983,0.000000,0.000000,0.250000,0,0);}
.m5f_c00172{transform:matrix(0.196521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196521,0.000000,0.000000,0.250000,0,0);}
.m96_c00172{transform:matrix(0.203948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203948,0.000000,0.000000,0.250000,0,0);}
.m39_c00172{transform:matrix(0.218884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218884,0.000000,0.000000,0.250000,0,0);}
.m74_c00172{transform:matrix(0.229740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229740,0.000000,0.000000,0.250000,0,0);}
.m49_c00172{transform:matrix(0.233666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233666,0.000000,0.000000,0.250000,0,0);}
.m4_c00172{transform:matrix(0.238519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238519,0.000000,0.000000,0.250000,0,0);}
.m97_c00172{transform:matrix(0.245353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245353,0.000000,0.000000,0.250000,0,0);}
.m3b_c00172{transform:matrix(0.248170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248170,0.000000,0.000000,0.250000,0,0);}
.m3_c00172{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m28_c00172{transform:matrix(0.250459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250459,0.000000,0.000000,0.250000,0,0);}
.m12_c00172{transform:matrix(0.250968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250968,0.000000,0.000000,0.250000,0,0);}
.m34_c00172{transform:matrix(0.251385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251385,0.000000,0.000000,0.250000,0,0);}
.m87_c00172{transform:matrix(0.252388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252388,0.000000,0.000000,0.250000,0,0);}
.m13_c00172{transform:matrix(0.252491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252491,0.000000,0.000000,0.250000,0,0);}
.m61_c00172{transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);}
.m22_c00172{transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);}
.m32_c00172{transform:matrix(0.254614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254614,0.000000,0.000000,0.250000,0,0);}
.m2b_c00172{transform:matrix(0.254963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254963,0.000000,0.000000,0.250000,0,0);}
.m15_c00172{transform:matrix(0.255266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255266,0.000000,0.000000,0.250000,0,0);}
.m5a_c00172{transform:matrix(0.255317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255317,0.000000,0.000000,0.250000,0,0);}
.m58_c00172{transform:matrix(0.255681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255681,0.000000,0.000000,0.250000,0,0);}
.m4b_c00172{transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);}
.m43_c00172{transform:matrix(0.256326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256326,0.000000,0.000000,0.250000,0,0);}
.m41_c00172{transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);}
.m65_c00172{transform:matrix(0.256689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256689,0.000000,0.000000,0.250000,0,0);}
.m6c_c00172{transform:matrix(0.256822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256822,0.000000,0.000000,0.250000,0,0);}
.m7c_c00172{transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);}
.m3e_c00172{transform:matrix(0.258186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258186,0.000000,0.000000,0.250000,0,0);}
.m99_c00172{transform:matrix(0.258788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258788,0.000000,0.000000,0.250000,0,0);}
.m40_c00172{transform:matrix(0.259372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259372,0.000000,0.000000,0.250000,0,0);}
.m53_c00172{transform:matrix(0.259376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259376,0.000000,0.000000,0.250000,0,0);}
.m2e_c00172{transform:matrix(0.259829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259829,0.000000,0.000000,0.250000,0,0);}
.m1_c00172{transform:matrix(0.259894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259894,0.000000,0.000000,0.250000,0,0);}
.m4c_c00172{transform:matrix(0.259941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259941,0.000000,0.000000,0.250000,0,0);}
.m78_c00172{transform:matrix(0.260353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260353,0.000000,0.000000,0.250000,0,0);}
.m47_c00172{transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);}
.m89_c00172{transform:matrix(0.260889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260889,0.000000,0.000000,0.250000,0,0);}
.m7_c00172{transform:matrix(0.261008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261008,0.000000,0.000000,0.250000,0,0);}
.m77_c00172{transform:matrix(0.261055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261055,0.000000,0.000000,0.250000,0,0);}
.md_c00172{transform:matrix(0.261612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261612,0.000000,0.000000,0.250000,0,0);}
.m64_c00172{transform:matrix(0.261652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261652,0.000000,0.000000,0.250000,0,0);}
.m1b_c00172{transform:matrix(0.261958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261958,0.000000,0.000000,0.250000,0,0);}
.m5c_c00172{transform:matrix(0.262234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262234,0.000000,0.000000,0.250000,0,0);}
.m21_c00172{transform:matrix(0.262638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262638,0.000000,0.000000,0.250000,0,0);}
.m68_c00172{transform:matrix(0.263169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263169,0.000000,0.000000,0.250000,0,0);}
.m9d_c00172{transform:matrix(0.263470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263470,0.000000,0.000000,0.250000,0,0);}
.m98_c00172{transform:matrix(0.263535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263535,0.000000,0.000000,0.250000,0,0);}
.m1f_c00172{transform:matrix(0.264359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264359,0.000000,0.000000,0.250000,0,0);}
.m54_c00172{transform:matrix(0.265440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265440,0.000000,0.000000,0.250000,0,0);}
.m29_c00172{transform:matrix(0.265771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265771,0.000000,0.000000,0.250000,0,0);}
.m23_c00172{transform:matrix(0.265974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265974,0.000000,0.000000,0.250000,0,0);}
.m4d_c00172{transform:matrix(0.266747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266747,0.000000,0.000000,0.250000,0,0);}
.m80_c00172{transform:matrix(0.267050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267050,0.000000,0.000000,0.250000,0,0);}
.m26_c00172{transform:matrix(0.267384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267384,0.000000,0.000000,0.250000,0,0);}
.m63_c00172{transform:matrix(0.267413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267413,0.000000,0.000000,0.250000,0,0);}
.m67_c00172{transform:matrix(0.268897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268897,0.000000,0.000000,0.250000,0,0);}
.m0_c00172{transform:matrix(0.269852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269852,0.000000,0.000000,0.250000,0,0);}
.m24_c00172{transform:matrix(0.269879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269879,0.000000,0.000000,0.250000,0,0);}
.m3d_c00172{transform:matrix(0.270127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270127,0.000000,0.000000,0.250000,0,0);}
.m46_c00172{transform:matrix(0.271458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271458,0.000000,0.000000,0.250000,0,0);}
.m6e_c00172{transform:matrix(0.271812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271812,0.000000,0.000000,0.250000,0,0);}
.m57_c00172{transform:matrix(0.271857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271857,0.000000,0.000000,0.250000,0,0);}
.m38_c00172{transform:matrix(0.273129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273129,0.000000,0.000000,0.250000,0,0);}
.m86_c00172{transform:matrix(0.274258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274258,0.000000,0.000000,0.250000,0,0);}
.m8a_c00172{transform:matrix(0.274350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274350,0.000000,0.000000,0.250000,0,0);}
.m7a_c00172{transform:matrix(0.274757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274757,0.000000,0.000000,0.250000,0,0);}
.m33_c00172{transform:matrix(0.274945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274945,0.000000,0.000000,0.250000,0,0);}
.m2f_c00172{transform:matrix(0.275149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275149,0.000000,0.000000,0.250000,0,0);}
.m93_c00172{transform:matrix(0.275727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275727,0.000000,0.000000,0.250000,0,0);}
.m14_c00172{transform:matrix(0.276078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276078,0.000000,0.000000,0.250000,0,0);}
.m1a_c00172{transform:matrix(0.276140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276140,0.000000,0.000000,0.250000,0,0);}
.m71_c00172{transform:matrix(0.276366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276366,0.000000,0.000000,0.250000,0,0);}
.m9b_c00172{transform:matrix(0.276527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276527,0.000000,0.000000,0.250000,0,0);}
.m82_c00172{transform:matrix(0.277433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277433,0.000000,0.000000,0.250000,0,0);}
.m52_c00172{transform:matrix(0.278275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278275,0.000000,0.000000,0.250000,0,0);}
.m9c_c00172{transform:matrix(0.279484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279484,0.000000,0.000000,0.250000,0,0);}
.m8c_c00172{transform:matrix(0.280359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280359,0.000000,0.000000,0.250000,0,0);}
.m20_c00172{transform:matrix(0.280373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280373,0.000000,0.000000,0.250000,0,0);}
.m8d_c00172{transform:matrix(0.281248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281248,0.000000,0.000000,0.250000,0,0);}
.m6d_c00172{transform:matrix(0.281808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281808,0.000000,0.000000,0.250000,0,0);}
.m70_c00172{transform:matrix(0.281809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281809,0.000000,0.000000,0.250000,0,0);}
.m2d_c00172{transform:matrix(0.281919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281919,0.000000,0.000000,0.250000,0,0);}
.m75_c00172{transform:matrix(0.282477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282477,0.000000,0.000000,0.250000,0,0);}
.m8b_c00172{transform:matrix(0.282882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282882,0.000000,0.000000,0.250000,0,0);}
.m30_c00172{transform:matrix(0.282919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282919,0.000000,0.000000,0.250000,0,0);}
.m3f_c00172{transform:matrix(0.284210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284210,0.000000,0.000000,0.250000,0,0);}
.m18_c00172{transform:matrix(0.284502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284502,0.000000,0.000000,0.250000,0,0);}
.m2a_c00172{transform:matrix(0.284692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284692,0.000000,0.000000,0.250000,0,0);}
.m31_c00172{transform:matrix(0.284773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284773,0.000000,0.000000,0.250000,0,0);}
.m4e_c00172{transform:matrix(0.284805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284805,0.000000,0.000000,0.250000,0,0);}
.m8_c00172{transform:matrix(0.285567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285567,0.000000,0.000000,0.250000,0,0);}
.m7e_c00172{transform:matrix(0.286820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286820,0.000000,0.000000,0.250000,0,0);}
.m10_c00172{transform:matrix(0.286940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286940,0.000000,0.000000,0.250000,0,0);}
.m2_c00172{transform:matrix(0.287696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287696,0.000000,0.000000,0.250000,0,0);}
.m81_c00172{transform:matrix(0.288360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288360,0.000000,0.000000,0.250000,0,0);}
.m1d_c00172{transform:matrix(0.289543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289543,0.000000,0.000000,0.250000,0,0);}
.mf_c00172{transform:matrix(0.289856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289856,0.000000,0.000000,0.250000,0,0);}
.m66_c00172{transform:matrix(0.290076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290076,0.000000,0.000000,0.250000,0,0);}
.mb_c00172{transform:matrix(0.290366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290366,0.000000,0.000000,0.250000,0,0);}
.m4f_c00172{transform:matrix(0.290624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290624,0.000000,0.000000,0.250000,0,0);}
.m59_c00172{transform:matrix(0.291226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291226,0.000000,0.000000,0.250000,0,0);}
.m92_c00172{transform:matrix(0.291692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291692,0.000000,0.000000,0.250000,0,0);}
.m11_c00172{transform:matrix(0.293119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293119,0.000000,0.000000,0.250000,0,0);}
.m19_c00172{transform:matrix(0.293261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293261,0.000000,0.000000,0.250000,0,0);}
.m44_c00172{transform:matrix(0.293612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293612,0.000000,0.000000,0.250000,0,0);}
.m73_c00172{transform:matrix(0.294809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294809,0.000000,0.000000,0.250000,0,0);}
.m95_c00172{transform:matrix(0.295622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295622,0.000000,0.000000,0.250000,0,0);}
.m25_c00172{transform:matrix(0.295808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295808,0.000000,0.000000,0.250000,0,0);}
.m37_c00172{transform:matrix(0.296182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296182,0.000000,0.000000,0.250000,0,0);}
.m5_c00172{transform:matrix(0.297381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297381,0.000000,0.000000,0.250000,0,0);}
.m2c_c00172{transform:matrix(0.297413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297413,0.000000,0.000000,0.250000,0,0);}
.m72_c00172{transform:matrix(0.298136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298136,0.000000,0.000000,0.250000,0,0);}
.m9a_c00172{transform:matrix(0.298276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298276,0.000000,0.000000,0.250000,0,0);}
.m6f_c00172{transform:matrix(0.299926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299926,0.000000,0.000000,0.250000,0,0);}
.m3c_c00172{transform:matrix(0.300097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300097,0.000000,0.000000,0.250000,0,0);}
.m84_c00172{transform:matrix(0.301113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301113,0.000000,0.000000,0.250000,0,0);}
.m6b_c00172{transform:matrix(0.301133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301133,0.000000,0.000000,0.250000,0,0);}
.m9_c00172{transform:matrix(0.301765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301765,0.000000,0.000000,0.250000,0,0);}
.m6a_c00172{transform:matrix(0.302710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302710,0.000000,0.000000,0.250000,0,0);}
.m42_c00172{transform:matrix(0.305798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305798,0.000000,0.000000,0.250000,0,0);}
.m1c_c00172{transform:matrix(0.307388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307388,0.000000,0.000000,0.250000,0,0);}
.m7f_c00172{transform:matrix(0.307795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307795,0.000000,0.000000,0.250000,0,0);}
.m17_c00172{transform:matrix(0.310855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310855,0.000000,0.000000,0.250000,0,0);}
.m88_c00172{transform:matrix(0.311228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311228,0.000000,0.000000,0.250000,0,0);}
.m69_c00172{transform:matrix(0.311590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311590,0.000000,0.000000,0.250000,0,0);}
.m7b_c00172{transform:matrix(0.311832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311832,0.000000,0.000000,0.250000,0,0);}
.m83_c00172{transform:matrix(0.312509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312509,0.000000,0.000000,0.250000,0,0);}
.m27_c00172{transform:matrix(0.314246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314246,0.000000,0.000000,0.250000,0,0);}
.me_c00172{transform:matrix(0.314579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314579,0.000000,0.000000,0.250000,0,0);}
.m7d_c00172{transform:matrix(0.315497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315497,0.000000,0.000000,0.250000,0,0);}
.m51_c00172{transform:matrix(0.318676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318676,0.000000,0.000000,0.250000,0,0);}
.m6_c00172{transform:matrix(0.320282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320282,0.000000,0.000000,0.250000,0,0);}
.m1e_c00172{transform:matrix(0.320505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320505,0.000000,0.000000,0.250000,0,0);}
.m36_c00172{transform:matrix(0.324715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324715,0.000000,0.000000,0.250000,0,0);}
.m5b_c00172{transform:matrix(0.325725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325725,0.000000,0.000000,0.250000,0,0);}
.m3a_c00172{transform:matrix(0.326105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326105,0.000000,0.000000,0.250000,0,0);}
.m35_c00172{transform:matrix(0.326654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326654,0.000000,0.000000,0.250000,0,0);}
.m50_c00172{transform:matrix(0.329385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329385,0.000000,0.000000,0.250000,0,0);}
.m76_c00172{transform:matrix(0.330408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330408,0.000000,0.000000,0.250000,0,0);}
.m48_c00172{transform:matrix(0.331929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331929,0.000000,0.000000,0.250000,0,0);}
.m85_c00172{transform:matrix(0.332706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332706,0.000000,0.000000,0.250000,0,0);}
.m55_c00172{transform:matrix(0.341167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341167,0.000000,0.000000,0.250000,0,0);}
.m94_c00172{transform:matrix(0.345074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345074,0.000000,0.000000,0.250000,0,0);}
.m79_c00172{transform:matrix(0.350639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350639,0.000000,0.000000,0.250000,0,0);}
.ma_c00172{transform:matrix(0.353102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353102,0.000000,0.000000,0.250000,0,0);}
.m60_c00172{transform:matrix(0.358551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358551,0.000000,0.000000,0.250000,0,0);}
.m45_c00172{transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);}
.mc_c00172{transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);}
.m56_c00172{transform:matrix(0.373079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373079,0.000000,0.000000,0.250000,0,0);}
.v0_c00172{vertical-align:0.000000px;}
.ls3_c00172{letter-spacing:-2.855167px;}
.lsc_c00172{letter-spacing:-2.806221px;}
.ls5_c00172{letter-spacing:-2.798064px;}
.ls8_c00172{letter-spacing:-2.634911px;}
.ls14_c00172{letter-spacing:-1.774080px;}
.ls15_c00172{letter-spacing:-1.593900px;}
.ls6_c00172{letter-spacing:-1.434517px;}
.ls18_c00172{letter-spacing:-1.378638px;}
.ls17_c00172{letter-spacing:-1.060290px;}
.ls12_c00172{letter-spacing:-0.889181px;}
.lsa_c00172{letter-spacing:-0.776160px;}
.ls16_c00172{letter-spacing:-0.748440px;}
.ls4_c00172{letter-spacing:0.000000px;}
.ls9_c00172{letter-spacing:0.130522px;}
.ls13_c00172{letter-spacing:0.236571px;}
.ls0_c00172{letter-spacing:1.158382px;}
.ls1a_c00172{letter-spacing:1.998617px;}
.ls10_c00172{letter-spacing:2.457008px;}
.ls7_c00172{letter-spacing:3.311994px;}
.lsd_c00172{letter-spacing:3.524400px;}
.ls11_c00172{letter-spacing:3.573900px;}
.ls2_c00172{letter-spacing:3.638298px;}
.ls19_c00172{letter-spacing:3.663000px;}
.lse_c00172{letter-spacing:3.940130px;}
.lsb_c00172{letter-spacing:4.054337px;}
.ls1_c00172{letter-spacing:4.078810px;}
.lsf_c00172{letter-spacing:54.172998px;}
.sc__c00172{text-shadow:none;}
.sc0_c00172{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00172{-webkit-text-stroke:0px transparent;}
.sc0_c00172{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00172{word-spacing:0.000000px;}
._0_c00172{margin-left:-1.876317px;}
._2_c00172{width:27.777718px;}
._1_c00172{width:36.790837px;}
.fc0_c00172{color:transparent;}
.fsc_c00172{font-size:21.384000px;}
.fs2_c00172{font-size:22.176000px;}
.fs10_c00172{font-size:27.720000px;}
.fsd_c00172{font-size:30.294000px;}
.fs6_c00172{font-size:33.264000px;}
.fse_c00172{font-size:33.660000px;}
.fs1_c00172{font-size:40.986198px;}
.fsb_c00172{font-size:45.540000px;}
.fsa_c00172{font-size:50.688000px;}
.fs4_c00172{font-size:54.172998px;}
.fs3_c00172{font-size:70.488000px;}
.fs9_c00172{font-size:71.280000px;}
.fs8_c00172{font-size:71.478000px;}
.fsf_c00172{font-size:73.260000px;}
.fs5_c00172{font-size:73.656198px;}
.fs7_c00172{font-size:77.022198px;}
.fs0_c00172{font-size:81.576198px;}
.y0_c00172{bottom:0.000000px;}
.y1_c00172{bottom:76.500000px;}
.y24_c00172{bottom:84.022335px;}
.y23_c00172{bottom:118.231785px;}
.y22_c00172{bottom:174.899385px;}
.y21_c00172{bottom:206.267535px;}
.y1a_c00172{bottom:270.419535px;}
.y20_c00172{bottom:297.862335px;}
.y19_c00172{bottom:302.139135px;}
.y1f_c00172{bottom:303.559785px;}
.y1e_c00172{bottom:329.938335px;}
.y18_c00172{bottom:332.789535px;}
.y17_c00172{bottom:364.509135px;}
.y16_c00172{bottom:364.514135px;}
.y1d_c00172{bottom:391.946985px;}
.y1c_c00172{bottom:398.723535px;}
.y1b_c00172{bottom:422.953785px;}
.y15_c00172{bottom:426.879135px;}
.y14_c00172{bottom:458.242335px;}
.y13_c00172{bottom:490.669785px;}
.y12_c00172{bottom:522.037935px;}
.y11_c00172{bottom:547.342335px;}
.y10_c00172{bottom:553.401135px;}
.yf_c00172{bottom:585.833535px;}
.ye_c00172{bottom:616.840335px;}
.yd_c00172{bottom:648.559935px;}
.yc_c00172{bottom:679.566735px;}
.yb_c00172{bottom:704.153385px;}
.ya_c00172{bottom:710.573535px;}
.y9_c00172{bottom:741.936735px;}
.y8_c00172{bottom:773.299935px;}
.y7_c00172{bottom:805.014585px;}
.y6_c00172{bottom:836.382735px;}
.y5_c00172{bottom:867.745935px;}
.y4_c00172{bottom:899.460585px;}
.y3_c00172{bottom:931.180185px;}
.y2_c00172{bottom:1067.329935px;}
.h4_c00172{height:21.764531px;}
.he_c00172{height:22.302844px;}
.h12_c00172{height:28.911094px;}
.hf_c00172{height:29.731904px;}
.h10_c00172{height:33.035449px;}
.h8_c00172{height:34.693313px;}
.h6_c00172{height:36.079217px;}
.h3_c00172{height:40.225712px;}
.hd_c00172{height:44.695020px;}
.hc_c00172{height:49.747500px;}
.h5_c00172{height:69.180117px;}
.ha_c00172{height:70.151748px;}
.h11_c00172{height:71.900684px;}
.hb_c00172{height:74.342813px;}
.h9_c00172{height:75.593075px;}
.h7_c00172{height:76.821113px;}
.h2_c00172{height:80.062577px;}
.h1_c00172{height:1110.000000px;}
.h0_c00172{height:1263.000000px;}
.w1_c00172{width:775.500000px;}
.w0_c00172{width:892.500000px;}
.x0_c00172{left:0.000000px;}
.x1_c00172{left:58.500000px;}
.x19_c00172{left:94.026885px;}
.xd_c00172{left:95.640585px;}
.xe_c00172{left:116.989935px;}
.x1a_c00172{left:127.780935px;}
.x5f_c00172{left:136.735485px;}
.x45_c00172{left:138.062085px;}
.x51_c00172{left:139.066935px;}
.x3_c00172{left:149.551035px;}
.xf_c00172{left:151.194435px;}
.x41_c00172{left:161.564685px;}
.x1b_c00172{left:162.886335px;}
.x4a_c00172{left:171.014235px;}
.x1c_c00172{left:172.608135px;}
.x46_c00172{left:181.295385px;}
.x39_c00172{left:183.438735px;}
.x26_c00172{left:193.026885px;}
.x4_c00172{left:195.402885px;}
.x52_c00172{left:204.679185px;}
.x3c_c00172{left:205.768185px;}
.x2c_c00172{left:215.247435px;}
.x57_c00172{left:216.940335px;}
.x1d_c00172{left:218.207535px;}
.x27_c00172{left:227.751135px;}
.x60_c00172{left:237.314535px;}
.x42_c00172{left:238.561935px;}
.x59_c00172{left:248.699535px;}
.x10_c00172{left:250.333035px;}
.x50_c00172{left:261.995235px;}
.x1e_c00172{left:263.544585px;}
.x61_c00172{left:270.796335px;}
.x2d_c00172{left:272.048685px;}
.x11_c00172{left:283.057485px;}
.x1f_c00172{left:284.126685px;}
.x3a_c00172{left:285.265185px;}
.x5d_c00172{left:292.135785px;}
.x53_c00172{left:293.264385px;}
.x62_c00172{left:304.669185px;}
.x5_c00172{left:305.931435px;}
.x12_c00172{left:316.227435px;}
.x20_c00172{left:317.281785px;}
.x40_c00172{left:322.479285px;}
.x6_c00172{left:337.170885px;}
.x43_c00172{left:338.482635px;}
.x47_c00172{left:348.838035px;}
.x2e_c00172{left:350.466585px;}
.x28_c00172{left:360.460635px;}
.x7_c00172{left:371.974335px;}
.x58_c00172{left:374.978985px;}
.x13_c00172{left:383.547435px;}
.x32_c00172{left:393.605835px;}
.x29_c00172{left:404.807685px;}
.x2f_c00172{left:414.786885px;}
.x21_c00172{left:416.380785px;}
.x48_c00172{left:427.745985px;}
.x5a_c00172{left:430.062585px;}
.x33_c00172{left:437.254935px;}
.x4b_c00172{left:438.274635px;}
.x3d_c00172{left:449.075535px;}
.x5b_c00172{left:450.550635px;}
.x49_c00172{left:458.980485px;}
.x5e_c00172{left:460.168485px;}
.x22_c00172{left:461.277285px;}
.x8_c00172{left:470.756535px;}
.x34_c00172{left:472.335585px;}
.x65_c00172{left:479.631885px;}
.x64_c00172{left:483.156285px;}
.x14_c00172{left:492.853335px;}
.x9_c00172{left:494.382885px;}
.x56_c00172{left:496.125285px;}
.x30_c00172{left:504.089835px;}
.x15_c00172{left:515.108535px;}
.xa_c00172{left:526.661835px;}
.x3e_c00172{left:536.670735px;}
.x63_c00172{left:538.195335px;}
.x2a_c00172{left:548.748735px;}
.x35_c00172{left:558.782385px;}
.x23_c00172{left:570.726735px;}
.x44_c00172{left:581.240535px;}
.x3b_c00172{left:583.923435px;}
.x36_c00172{left:591.561285px;}
.x16_c00172{left:592.828485px;}
.x24_c00172{left:603.505635px;}
.x4c_c00172{left:615.776685px;}
.x4d_c00172{left:620.855385px;}
.x4e_c00172{left:625.741035px;}
.xb_c00172{left:626.914185px;}
.x31_c00172{left:636.833985px;}
.x17_c00172{left:647.169585px;}
.x25_c00172{left:648.303135px;}
.xc_c00172{left:659.108985px;}
.x2_c00172{left:670.107885px;}
.x18_c00172{left:681.898785px;}
.x4f_c00172{left:691.046385px;}
.x2b_c00172{left:694.758885px;}
.x37_c00172{left:696.154785px;}
.x54_c00172{left:698.456535px;}
.x55_c00172{left:699.471285px;}
.x5c_c00172{left:701.669085px;}
.x38_c00172{left:703.470885px;}
.x3f_c00172{left:713.455035px;}
@media print{
.v0_c00172{vertical-align:0.000000pt;}
.ls3_c00172{letter-spacing:-2.537926pt;}
.lsc_c00172{letter-spacing:-2.494419pt;}
.ls5_c00172{letter-spacing:-2.487168pt;}
.ls8_c00172{letter-spacing:-2.342143pt;}
.ls14_c00172{letter-spacing:-1.576960pt;}
.ls15_c00172{letter-spacing:-1.416800pt;}
.ls6_c00172{letter-spacing:-1.275126pt;}
.ls18_c00172{letter-spacing:-1.225456pt;}
.ls17_c00172{letter-spacing:-0.942480pt;}
.ls12_c00172{letter-spacing:-0.790383pt;}
.lsa_c00172{letter-spacing:-0.689920pt;}
.ls16_c00172{letter-spacing:-0.665280pt;}
.ls4_c00172{letter-spacing:0.000000pt;}
.ls9_c00172{letter-spacing:0.116019pt;}
.ls13_c00172{letter-spacing:0.210285pt;}
.ls0_c00172{letter-spacing:1.029673pt;}
.ls1a_c00172{letter-spacing:1.776548pt;}
.ls10_c00172{letter-spacing:2.184007pt;}
.ls7_c00172{letter-spacing:2.943994pt;}
.lsd_c00172{letter-spacing:3.132800pt;}
.ls11_c00172{letter-spacing:3.176800pt;}
.ls2_c00172{letter-spacing:3.234043pt;}
.ls19_c00172{letter-spacing:3.256000pt;}
.lse_c00172{letter-spacing:3.502338pt;}
.lsb_c00172{letter-spacing:3.603855pt;}
.ls1_c00172{letter-spacing:3.625609pt;}
.lsf_c00172{letter-spacing:48.153776pt;}
.ws0_c00172{word-spacing:0.000000pt;}
._0_c00172{margin-left:-1.667838pt;}
._2_c00172{width:24.691305pt;}
._1_c00172{width:32.702966pt;}
.fsc_c00172{font-size:19.008000pt;}
.fs2_c00172{font-size:19.712000pt;}
.fs10_c00172{font-size:24.640000pt;}
.fsd_c00172{font-size:26.928000pt;}
.fs6_c00172{font-size:29.568000pt;}
.fse_c00172{font-size:29.920000pt;}
.fs1_c00172{font-size:36.432176pt;}
.fsb_c00172{font-size:40.480000pt;}
.fsa_c00172{font-size:45.056000pt;}
.fs4_c00172{font-size:48.153776pt;}
.fs3_c00172{font-size:62.656000pt;}
.fs9_c00172{font-size:63.360000pt;}
.fs8_c00172{font-size:63.536000pt;}
.fsf_c00172{font-size:65.120000pt;}
.fs5_c00172{font-size:65.472176pt;}
.fs7_c00172{font-size:68.464176pt;}
.fs0_c00172{font-size:72.512176pt;}
.y0_c00172{bottom:0.000000pt;}
.y1_c00172{bottom:68.000000pt;}
.y24_c00172{bottom:74.686520pt;}
.y23_c00172{bottom:105.094920pt;}
.y22_c00172{bottom:155.466120pt;}
.y21_c00172{bottom:183.348920pt;}
.y1a_c00172{bottom:240.372920pt;}
.y20_c00172{bottom:264.766520pt;}
.y19_c00172{bottom:268.568120pt;}
.y1f_c00172{bottom:269.830920pt;}
.y1e_c00172{bottom:293.278520pt;}
.y18_c00172{bottom:295.812920pt;}
.y17_c00172{bottom:324.008120pt;}
.y16_c00172{bottom:324.012564pt;}
.y1d_c00172{bottom:348.397320pt;}
.y1c_c00172{bottom:354.420920pt;}
.y1b_c00172{bottom:375.958920pt;}
.y15_c00172{bottom:379.448120pt;}
.y14_c00172{bottom:407.326520pt;}
.y13_c00172{bottom:436.150920pt;}
.y12_c00172{bottom:464.033720pt;}
.y11_c00172{bottom:486.526520pt;}
.y10_c00172{bottom:491.912120pt;}
.yf_c00172{bottom:520.740920pt;}
.ye_c00172{bottom:548.302520pt;}
.yd_c00172{bottom:576.497720pt;}
.yc_c00172{bottom:604.059320pt;}
.yb_c00172{bottom:625.914120pt;}
.ya_c00172{bottom:631.620920pt;}
.y9_c00172{bottom:659.499320pt;}
.y8_c00172{bottom:687.377720pt;}
.y7_c00172{bottom:715.568520pt;}
.y6_c00172{bottom:743.451320pt;}
.y5_c00172{bottom:771.329720pt;}
.y4_c00172{bottom:799.520520pt;}
.y3_c00172{bottom:827.715720pt;}
.y2_c00172{bottom:948.737720pt;}
.h4_c00172{height:19.346250pt;}
.he_c00172{height:19.824750pt;}
.h12_c00172{height:25.698750pt;}
.hf_c00172{height:26.428359pt;}
.h10_c00172{height:29.364844pt;}
.h8_c00172{height:30.838500pt;}
.h6_c00172{height:32.070415pt;}
.h3_c00172{height:35.756188pt;}
.hd_c00172{height:39.728906pt;}
.hc_c00172{height:44.220000pt;}
.h5_c00172{height:61.493438pt;}
.ha_c00172{height:62.357109pt;}
.h11_c00172{height:63.911719pt;}
.hb_c00172{height:66.082500pt;}
.h9_c00172{height:67.193845pt;}
.h7_c00172{height:68.285434pt;}
.h2_c00172{height:71.166735pt;}
.h1_c00172{height:986.666667pt;}
.h0_c00172{height:1122.666667pt;}
.w1_c00172{width:689.333333pt;}
.w0_c00172{width:793.333333pt;}
.x0_c00172{left:0.000000pt;}
.x1_c00172{left:52.000000pt;}
.x19_c00172{left:83.579453pt;}
.xd_c00172{left:85.013853pt;}
.xe_c00172{left:103.991053pt;}
.x1a_c00172{left:113.583053pt;}
.x5f_c00172{left:121.542653pt;}
.x45_c00172{left:122.721853pt;}
.x51_c00172{left:123.615053pt;}
.x3_c00172{left:132.934253pt;}
.xf_c00172{left:134.395053pt;}
.x41_c00172{left:143.613053pt;}
.x1b_c00172{left:144.787853pt;}
.x4a_c00172{left:152.012653pt;}
.x1c_c00172{left:153.429453pt;}
.x46_c00172{left:161.151453pt;}
.x39_c00172{left:163.056653pt;}
.x26_c00172{left:171.579453pt;}
.x4_c00172{left:173.691453pt;}
.x52_c00172{left:181.937053pt;}
.x3c_c00172{left:182.905053pt;}
.x2c_c00172{left:191.331053pt;}
.x57_c00172{left:192.835853pt;}
.x1d_c00172{left:193.962253pt;}
.x27_c00172{left:202.445453pt;}
.x60_c00172{left:210.946253pt;}
.x42_c00172{left:212.055053pt;}
.x59_c00172{left:221.066253pt;}
.x10_c00172{left:222.518253pt;}
.x50_c00172{left:232.884653pt;}
.x1e_c00172{left:234.261853pt;}
.x61_c00172{left:240.707853pt;}
.x2d_c00172{left:241.821053pt;}
.x11_c00172{left:251.606653pt;}
.x1f_c00172{left:252.557053pt;}
.x3a_c00172{left:253.569053pt;}
.x5d_c00172{left:259.676253pt;}
.x53_c00172{left:260.679453pt;}
.x62_c00172{left:270.817053pt;}
.x5_c00172{left:271.939053pt;}
.x12_c00172{left:281.091053pt;}
.x20_c00172{left:282.028253pt;}
.x40_c00172{left:286.648253pt;}
.x6_c00172{left:299.707453pt;}
.x43_c00172{left:300.873453pt;}
.x47_c00172{left:310.078253pt;}
.x2e_c00172{left:311.525853pt;}
.x28_c00172{left:320.409453pt;}
.x7_c00172{left:330.643853pt;}
.x58_c00172{left:333.314653pt;}
.x13_c00172{left:340.931053pt;}
.x32_c00172{left:349.871853pt;}
.x29_c00172{left:359.829053pt;}
.x2f_c00172{left:368.699453pt;}
.x21_c00172{left:370.116253pt;}
.x48_c00172{left:380.218653pt;}
.x5a_c00172{left:382.277853pt;}
.x33_c00172{left:388.671053pt;}
.x4b_c00172{left:389.577453pt;}
.x3d_c00172{left:399.178253pt;}
.x5b_c00172{left:400.489453pt;}
.x49_c00172{left:407.982653pt;}
.x5e_c00172{left:409.038653pt;}
.x22_c00172{left:410.024253pt;}
.x8_c00172{left:418.450253pt;}
.x34_c00172{left:419.853853pt;}
.x65_c00172{left:426.339453pt;}
.x64_c00172{left:429.472253pt;}
.x14_c00172{left:438.091853pt;}
.x9_c00172{left:439.451453pt;}
.x56_c00172{left:441.000253pt;}
.x30_c00172{left:448.079853pt;}
.x15_c00172{left:457.874253pt;}
.xa_c00172{left:468.143853pt;}
.x3e_c00172{left:477.040653pt;}
.x63_c00172{left:478.395853pt;}
.x2a_c00172{left:487.776653pt;}
.x35_c00172{left:496.695453pt;}
.x23_c00172{left:507.312653pt;}
.x44_c00172{left:516.658253pt;}
.x3b_c00172{left:519.043053pt;}
.x36_c00172{left:525.832253pt;}
.x16_c00172{left:526.958653pt;}
.x24_c00172{left:536.449453pt;}
.x4c_c00172{left:547.357053pt;}
.x4d_c00172{left:551.871453pt;}
.x4e_c00172{left:556.214253pt;}
.xb_c00172{left:557.257053pt;}
.x31_c00172{left:566.074653pt;}
.x17_c00172{left:575.261853pt;}
.x25_c00172{left:576.269453pt;}
.xc_c00172{left:585.874653pt;}
.x2_c00172{left:595.651453pt;}
.x18_c00172{left:606.132253pt;}
.x4f_c00172{left:614.263453pt;}
.x2b_c00172{left:617.563453pt;}
.x37_c00172{left:618.804253pt;}
.x54_c00172{left:620.850253pt;}
.x55_c00172{left:621.752253pt;}
.x5c_c00172{left:623.705853pt;}
.x38_c00172{left:625.307453pt;}
.x3f_c00172{left:634.182253pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_14133fb347fc46a4e8111337.woff2')format("woff");}.ff1_c00173{font-family:ff1_c00173;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00173;src:url('chunks/assets/font_ab25ec205fccfc02f30219b3.woff2')format("woff");}.ff2_c00173{font-family:ff2_c00173;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00173;src:url('chunks/assets/font_10aec8b232641cc478b07246.woff2')format("woff");}.ff3_c00173{font-family:ff3_c00173;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00173;src:url('chunks/assets/font_423382dfff0206afdf789743.woff2')format("woff");}.ff4_c00173{font-family:ff4_c00173;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m34_c00173{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m56_c00173{transform:matrix(0.218523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218523,0.000000,0.000000,0.250000,0,0);}
.m27_c00173{transform:matrix(0.219595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219595,0.000000,0.000000,0.250000,0,0);}
.m4f_c00173{transform:matrix(0.220828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220828,0.000000,0.000000,0.250000,0,0);}
.m66_c00173{transform:matrix(0.222772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222772,0.000000,0.000000,0.250000,0,0);}
.m6d_c00173{transform:matrix(0.244773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244773,0.000000,0.000000,0.250000,0,0);}
.m0_c00173{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m70_c00173{transform:matrix(0.250825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250825,0.000000,0.000000,0.250000,0,0);}
.m98_c00173{transform:matrix(0.251282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251282,0.000000,0.000000,0.250000,0,0);}
.m9e_c00173{transform:matrix(0.251385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251385,0.000000,0.000000,0.250000,0,0);}
.m99_c00173{transform:matrix(0.252036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252036,0.000000,0.000000,0.250000,0,0);}
.m31_c00173{transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);}
.mc_c00173{transform:matrix(0.253101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253101,0.000000,0.000000,0.250000,0,0);}
.m89_c00173{transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);}
.m1f_c00173{transform:matrix(0.254192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254192,0.000000,0.000000,0.250000,0,0);}
.m96_c00173{transform:matrix(0.254475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254475,0.000000,0.000000,0.250000,0,0);}
.m14_c00173{transform:matrix(0.254614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254614,0.000000,0.000000,0.250000,0,0);}
.m43_c00173{transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);}
.m90_c00173{transform:matrix(0.256430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256430,0.000000,0.000000,0.250000,0,0);}
.m29_c00173{transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);}
.m3b_c00173{transform:matrix(0.256765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256765,0.000000,0.000000,0.250000,0,0);}
.m16_c00173{transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);}
.m9c_c00173{transform:matrix(0.258315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258315,0.000000,0.000000,0.250000,0,0);}
.m5e_c00173{transform:matrix(0.259376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259376,0.000000,0.000000,0.250000,0,0);}
.m26_c00173{transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);}
.m6a_c00173{transform:matrix(0.261055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261055,0.000000,0.000000,0.250000,0,0);}
.m64_c00173{transform:matrix(0.261612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261612,0.000000,0.000000,0.250000,0,0);}
.m5a_c00173{transform:matrix(0.261958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261958,0.000000,0.000000,0.250000,0,0);}
.m23_c00173{transform:matrix(0.262234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262234,0.000000,0.000000,0.250000,0,0);}
.m47_c00173{transform:matrix(0.262344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262344,0.000000,0.000000,0.250000,0,0);}
.m5b_c00173{transform:matrix(0.262489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262489,0.000000,0.000000,0.250000,0,0);}
.m5c_c00173{transform:matrix(0.263161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263161,0.000000,0.000000,0.250000,0,0);}
.m67_c00173{transform:matrix(0.263274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263274,0.000000,0.000000,0.250000,0,0);}
.m39_c00173{transform:matrix(0.264296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264296,0.000000,0.000000,0.250000,0,0);}
.m88_c00173{transform:matrix(0.266573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266573,0.000000,0.000000,0.250000,0,0);}
.m4_c00173{transform:matrix(0.266805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266805,0.000000,0.000000,0.250000,0,0);}
.m2_c00173{transform:matrix(0.267626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267626,0.000000,0.000000,0.250000,0,0);}
.m18_c00173{transform:matrix(0.267647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267647,0.000000,0.000000,0.250000,0,0);}
.m61_c00173{transform:matrix(0.267803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267803,0.000000,0.000000,0.250000,0,0);}
.m24_c00173{transform:matrix(0.267882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267882,0.000000,0.000000,0.250000,0,0);}
.m95_c00173{transform:matrix(0.269337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269337,0.000000,0.000000,0.250000,0,0);}
.m11_c00173{transform:matrix(0.269863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269863,0.000000,0.000000,0.250000,0,0);}
.me_c00173{transform:matrix(0.269991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269991,0.000000,0.000000,0.250000,0,0);}
.m54_c00173{transform:matrix(0.270468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270468,0.000000,0.000000,0.250000,0,0);}
.m35_c00173{transform:matrix(0.270604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270604,0.000000,0.000000,0.250000,0,0);}
.m62_c00173{transform:matrix(0.270987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270987,0.000000,0.000000,0.250000,0,0);}
.m78_c00173{transform:matrix(0.271925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271925,0.000000,0.000000,0.250000,0,0);}
.m1_c00173{transform:matrix(0.272082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272082,0.000000,0.000000,0.250000,0,0);}
.m8b_c00173{transform:matrix(0.272535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272535,0.000000,0.000000,0.250000,0,0);}
.m8_c00173{transform:matrix(0.273294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273294,0.000000,0.000000,0.250000,0,0);}
.m1d_c00173{transform:matrix(0.273555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273555,0.000000,0.000000,0.250000,0,0);}
.m4d_c00173{transform:matrix(0.273665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273665,0.000000,0.000000,0.250000,0,0);}
.m2c_c00173{transform:matrix(0.273859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273859,0.000000,0.000000,0.250000,0,0);}
.m2d_c00173{transform:matrix(0.274117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274117,0.000000,0.000000,0.250000,0,0);}
.m5d_c00173{transform:matrix(0.274400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274400,0.000000,0.000000,0.250000,0,0);}
.m3e_c00173{transform:matrix(0.274757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274757,0.000000,0.000000,0.250000,0,0);}
.m8e_c00173{transform:matrix(0.275369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275369,0.000000,0.000000,0.250000,0,0);}
.m76_c00173{transform:matrix(0.276060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276060,0.000000,0.000000,0.250000,0,0);}
.m7e_c00173{transform:matrix(0.276652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276652,0.000000,0.000000,0.250000,0,0);}
.m8d_c00173{transform:matrix(0.277263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277263,0.000000,0.000000,0.250000,0,0);}
.m8a_c00173{transform:matrix(0.277408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277408,0.000000,0.000000,0.250000,0,0);}
.m4a_c00173{transform:matrix(0.277590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277590,0.000000,0.000000,0.250000,0,0);}
.m4c_c00173{transform:matrix(0.277636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277636,0.000000,0.000000,0.250000,0,0);}
.m25_c00173{transform:matrix(0.277893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277893,0.000000,0.000000,0.250000,0,0);}
.m55_c00173{transform:matrix(0.278104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278104,0.000000,0.000000,0.250000,0,0);}
.m6e_c00173{transform:matrix(0.279308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279308,0.000000,0.000000,0.250000,0,0);}
.m6_c00173{transform:matrix(0.279998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279998,0.000000,0.000000,0.250000,0,0);}
.m9f_c00173{transform:matrix(0.280291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280291,0.000000,0.000000,0.250000,0,0);}
.m3c_c00173{transform:matrix(0.280468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280468,0.000000,0.000000,0.250000,0,0);}
.m46_c00173{transform:matrix(0.280843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280843,0.000000,0.000000,0.250000,0,0);}
.m45_c00173{transform:matrix(0.280945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280945,0.000000,0.000000,0.250000,0,0);}
.m42_c00173{transform:matrix(0.281808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281808,0.000000,0.000000,0.250000,0,0);}
.m38_c00173{transform:matrix(0.282525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282525,0.000000,0.000000,0.250000,0,0);}
.m59_c00173{transform:matrix(0.283112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283112,0.000000,0.000000,0.250000,0,0);}
.m3a_c00173{transform:matrix(0.283429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283429,0.000000,0.000000,0.250000,0,0);}
.m5f_c00173{transform:matrix(0.283630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283630,0.000000,0.000000,0.250000,0,0);}
.m19_c00173{transform:matrix(0.284154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284154,0.000000,0.000000,0.250000,0,0);}
.m94_c00173{transform:matrix(0.284953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284953,0.000000,0.000000,0.250000,0,0);}
.m33_c00173{transform:matrix(0.285282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285282,0.000000,0.000000,0.250000,0,0);}
.m81_c00173{transform:matrix(0.285432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285432,0.000000,0.000000,0.250000,0,0);}
.m2b_c00173{transform:matrix(0.285567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285567,0.000000,0.000000,0.250000,0,0);}
.m87_c00173{transform:matrix(0.285709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285709,0.000000,0.000000,0.250000,0,0);}
.m7_c00173{transform:matrix(0.286503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286503,0.000000,0.000000,0.250000,0,0);}
.md_c00173{transform:matrix(0.286664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286664,0.000000,0.000000,0.250000,0,0);}
.m60_c00173{transform:matrix(0.287051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287051,0.000000,0.000000,0.250000,0,0);}
.m72_c00173{transform:matrix(0.287644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287644,0.000000,0.000000,0.250000,0,0);}
.m12_c00173{transform:matrix(0.287674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287674,0.000000,0.000000,0.250000,0,0);}
.m49_c00173{transform:matrix(0.287868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287868,0.000000,0.000000,0.250000,0,0);}
.m77_c00173{transform:matrix(0.288142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288142,0.000000,0.000000,0.250000,0,0);}
.m5_c00173{transform:matrix(0.288417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288417,0.000000,0.000000,0.250000,0,0);}
.m44_c00173{transform:matrix(0.288886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288886,0.000000,0.000000,0.250000,0,0);}
.m8f_c00173{transform:matrix(0.288903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288903,0.000000,0.000000,0.250000,0,0);}
.ma_c00173{transform:matrix(0.289438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289438,0.000000,0.000000,0.250000,0,0);}
.m74_c00173{transform:matrix(0.289677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289677,0.000000,0.000000,0.250000,0,0);}
.m85_c00173{transform:matrix(0.289929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289929,0.000000,0.000000,0.250000,0,0);}
.m1a_c00173{transform:matrix(0.291263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291263,0.000000,0.000000,0.250000,0,0);}
.m75_c00173{transform:matrix(0.292260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292260,0.000000,0.000000,0.250000,0,0);}
.m86_c00173{transform:matrix(0.292690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292690,0.000000,0.000000,0.250000,0,0);}
.m71_c00173{transform:matrix(0.292806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292806,0.000000,0.000000,0.250000,0,0);}
.m7c_c00173{transform:matrix(0.292991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292991,0.000000,0.000000,0.250000,0,0);}
.mf_c00173{transform:matrix(0.293235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293235,0.000000,0.000000,0.250000,0,0);}
.m22_c00173{transform:matrix(0.293261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293261,0.000000,0.000000,0.250000,0,0);}
.m15_c00173{transform:matrix(0.293922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293922,0.000000,0.000000,0.250000,0,0);}
.m9b_c00173{transform:matrix(0.294650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294650,0.000000,0.000000,0.250000,0,0);}
.m73_c00173{transform:matrix(0.294801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294801,0.000000,0.000000,0.250000,0,0);}
.ma0_c00173{transform:matrix(0.295005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295005,0.000000,0.000000,0.250000,0,0);}
.m52_c00173{transform:matrix(0.295009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295009,0.000000,0.000000,0.250000,0,0);}
.m84_c00173{transform:matrix(0.296178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296178,0.000000,0.000000,0.250000,0,0);}
.m69_c00173{transform:matrix(0.296531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296531,0.000000,0.000000,0.250000,0,0);}
.m20_c00173{transform:matrix(0.296594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296594,0.000000,0.000000,0.250000,0,0);}
.m28_c00173{transform:matrix(0.296916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296916,0.000000,0.000000,0.250000,0,0);}
.m57_c00173{transform:matrix(0.297381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297381,0.000000,0.000000,0.250000,0,0);}
.m36_c00173{transform:matrix(0.297554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297554,0.000000,0.000000,0.250000,0,0);}
.m68_c00173{transform:matrix(0.298533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298533,0.000000,0.000000,0.250000,0,0);}
.m6f_c00173{transform:matrix(0.299113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299113,0.000000,0.000000,0.250000,0,0);}
.m2a_c00173{transform:matrix(0.300598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300598,0.000000,0.000000,0.250000,0,0);}
.m3f_c00173{transform:matrix(0.300735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300735,0.000000,0.000000,0.250000,0,0);}
.m82_c00173{transform:matrix(0.301225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301225,0.000000,0.000000,0.250000,0,0);}
.m9_c00173{transform:matrix(0.302932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302932,0.000000,0.000000,0.250000,0,0);}
.m2e_c00173{transform:matrix(0.303113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303113,0.000000,0.000000,0.250000,0,0);}
.ma1_c00173{transform:matrix(0.303509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303509,0.000000,0.000000,0.250000,0,0);}
.m93_c00173{transform:matrix(0.303894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303894,0.000000,0.000000,0.250000,0,0);}
.m41_c00173{transform:matrix(0.304821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304821,0.000000,0.000000,0.250000,0,0);}
.mb_c00173{transform:matrix(0.304882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304882,0.000000,0.000000,0.250000,0,0);}
.m4b_c00173{transform:matrix(0.305091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305091,0.000000,0.000000,0.250000,0,0);}
.m92_c00173{transform:matrix(0.305902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305902,0.000000,0.000000,0.250000,0,0);}
.m7d_c00173{transform:matrix(0.306002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306002,0.000000,0.000000,0.250000,0,0);}
.m7f_c00173{transform:matrix(0.308746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308746,0.000000,0.000000,0.250000,0,0);}
.m91_c00173{transform:matrix(0.309052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309052,0.000000,0.000000,0.250000,0,0);}
.m50_c00173{transform:matrix(0.309365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309365,0.000000,0.000000,0.250000,0,0);}
.m79_c00173{transform:matrix(0.309930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309930,0.000000,0.000000,0.250000,0,0);}
.m48_c00173{transform:matrix(0.309996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309996,0.000000,0.000000,0.250000,0,0);}
.m3d_c00173{transform:matrix(0.310974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310974,0.000000,0.000000,0.250000,0,0);}
.m97_c00173{transform:matrix(0.311061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311061,0.000000,0.000000,0.250000,0,0);}
.m21_c00173{transform:matrix(0.311235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311235,0.000000,0.000000,0.250000,0,0);}
.m8c_c00173{transform:matrix(0.311645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311645,0.000000,0.000000,0.250000,0,0);}
.m65_c00173{transform:matrix(0.312291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312291,0.000000,0.000000,0.250000,0,0);}
.m7a_c00173{transform:matrix(0.315940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315940,0.000000,0.000000,0.250000,0,0);}
.m6b_c00173{transform:matrix(0.316843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316843,0.000000,0.000000,0.250000,0,0);}
.m40_c00173{transform:matrix(0.318852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318852,0.000000,0.000000,0.250000,0,0);}
.m9a_c00173{transform:matrix(0.319440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319440,0.000000,0.000000,0.250000,0,0);}
.m13_c00173{transform:matrix(0.322746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322746,0.000000,0.000000,0.250000,0,0);}
.m1c_c00173{transform:matrix(0.324715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324715,0.000000,0.000000,0.250000,0,0);}
.m58_c00173{transform:matrix(0.325725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325725,0.000000,0.000000,0.250000,0,0);}
.m10_c00173{transform:matrix(0.326105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326105,0.000000,0.000000,0.250000,0,0);}
.m1b_c00173{transform:matrix(0.326237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326237,0.000000,0.000000,0.250000,0,0);}
.m4e_c00173{transform:matrix(0.329302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329302,0.000000,0.000000,0.250000,0,0);}
.m7b_c00173{transform:matrix(0.329385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329385,0.000000,0.000000,0.250000,0,0);}
.m30_c00173{transform:matrix(0.331791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331791,0.000000,0.000000,0.250000,0,0);}
.m80_c00173{transform:matrix(0.332287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332287,0.000000,0.000000,0.250000,0,0);}
.m32_c00173{transform:matrix(0.333044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333044,0.000000,0.000000,0.250000,0,0);}
.m83_c00173{transform:matrix(0.338857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338857,0.000000,0.000000,0.250000,0,0);}
.m6c_c00173{transform:matrix(0.343796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343796,0.000000,0.000000,0.250000,0,0);}
.m51_c00173{transform:matrix(0.347881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347881,0.000000,0.000000,0.250000,0,0);}
.m9d_c00173{transform:matrix(0.352050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352050,0.000000,0.000000,0.250000,0,0);}
.m37_c00173{transform:matrix(0.352777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352777,0.000000,0.000000,0.250000,0,0);}
.m17_c00173{transform:matrix(0.358891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358891,0.000000,0.000000,0.250000,0,0);}
.m53_c00173{transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);}
.m63_c00173{transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);}
.m1e_c00173{transform:matrix(0.373079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373079,0.000000,0.000000,0.250000,0,0);}
.m3_c00173{transform:matrix(0.375162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375162,0.000000,0.000000,0.250000,0,0);}
.m2f_c00173{transform:matrix(0.376256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376256,0.000000,0.000000,0.250000,0,0);}
.v0_c00173{vertical-align:0.000000px;}
.v1_c00173{vertical-align:1.386000px;}
.lse_c00173{letter-spacing:-2.855167px;}
.ls3_c00173{letter-spacing:-2.806221px;}
.lsa_c00173{letter-spacing:-2.798064px;}
.ls16_c00173{letter-spacing:-2.088351px;}
.ls10_c00173{letter-spacing:-1.378638px;}
.ls9_c00173{letter-spacing:-0.554718px;}
.ls4_c00173{letter-spacing:-0.130522px;}
.ls1_c00173{letter-spacing:0.000000px;}
.lsf_c00173{letter-spacing:0.252886px;}
.ls6_c00173{letter-spacing:0.407881px;}
.lsc_c00173{letter-spacing:1.280746px;}
.ls17_c00173{letter-spacing:1.933356px;}
.ls14_c00173{letter-spacing:3.091738px;}
.lsd_c00173{letter-spacing:3.360939px;}
.ls11_c00173{letter-spacing:3.504610px;}
.ls5_c00173{letter-spacing:3.524400px;}
.ls0_c00173{letter-spacing:3.695402px;}
.ls12_c00173{letter-spacing:3.956446px;}
.ls2_c00173{letter-spacing:4.078810px;}
.ls15_c00173{letter-spacing:4.098610px;}
.ls13_c00173{letter-spacing:4.494610px;}
.lsb_c00173{letter-spacing:4.633200px;}
.ls7_c00173{letter-spacing:52.747398px;}
.ls8_c00173{letter-spacing:57.024198px;}
.sc__c00173{text-shadow:none;}
.sc0_c00173{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00173{-webkit-text-stroke:0px transparent;}
.sc0_c00173{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00173{word-spacing:0.000000px;}
._4_c00173{margin-left:-6.967656px;}
._2_c00173{width:1.400256px;}
._3_c00173{width:13.204952px;}
._1_c00173{width:25.502252px;}
._0_c00173{width:28.959739px;}
.fc0_c00173{color:transparent;}
.fs8_c00173{font-size:24.552000px;}
.fsc_c00173{font-size:32.670000px;}
.fs0_c00173{font-size:34.056198px;}
.fs5_c00173{font-size:35.046198px;}
.fs2_c00173{font-size:38.808000px;}
.fs10_c00173{font-size:39.600000px;}
.fse_c00173{font-size:44.352000px;}
.fs4_c00173{font-size:52.747398px;}
.fs6_c00173{font-size:57.024198px;}
.fsf_c00173{font-size:68.112198px;}
.fsa_c00173{font-size:70.092198px;}
.fs3_c00173{font-size:70.488000px;}
.fs9_c00173{font-size:74.844000px;}
.fs1_c00173{font-size:81.576198px;}
.fsd_c00173{font-size:81.972198px;}
.fsb_c00173{font-size:89.892198px;}
.fs7_c00173{font-size:92.664000px;}
.y0_c00173{bottom:0.000000px;}
.y21_c00173{bottom:74.755935px;}
.y1_c00173{bottom:76.500000px;}
.y20_c00173{bottom:80.101935px;}
.y1f_c00173{bottom:170.627535px;}
.y1e_c00173{bottom:191.650185px;}
.y1c_c00173{bottom:202.347135px;}
.y1d_c00173{bottom:208.044585px;}
.y1b_c00173{bottom:296.788185px;}
.y1a_c00173{bottom:328.151385px;}
.y19_c00173{bottom:359.519535px;}
.y18_c00173{bottom:390.882735px;}
.y17_c00173{bottom:422.240985px;}
.y16_c00173{bottom:453.252735px;}
.y2_c00173{bottom:463.588335px;}
.y15_c00173{bottom:475.700985px;}
.y14_c00173{bottom:485.323785px;}
.y13_c00173{bottom:516.686985px;}
.y12_c00173{bottom:543.065535px;}
.y11_c00173{bottom:548.411535px;}
.y10_c00173{bottom:579.774735px;}
.yf_c00173{bottom:611.845785px;}
.ye_c00173{bottom:643.208985px;}
.yd_c00173{bottom:674.933535px;}
.yc_c00173{bottom:705.940335px;}
.yb_c00173{bottom:722.691135px;}
.ya_c00173{bottom:738.011385px;}
.y9_c00173{bottom:770.092335px;}
.y8_c00173{bottom:832.813785px;}
.y7_c00173{bottom:864.533385px;}
.y6_c00173{bottom:895.540185px;}
.y5_c00173{bottom:926.546985px;}
.y4_c00173{bottom:935.105535px;}
.y3_c00173{bottom:1063.048185px;}
.hb_c00173{height:24.084457px;}
.hf_c00173{height:34.073789px;}
.h8_c00173{height:34.395927px;}
.h7_c00173{height:35.129767px;}
.h2_c00173{height:35.519550px;}
.h9_c00173{height:37.978116px;}
.h4_c00173{height:40.475531px;}
.h13_c00173{height:41.301563px;}
.h11_c00173{height:46.257750px;}
.h6_c00173{height:69.180117px;}
.h12_c00173{height:71.038894px;}
.hd_c00173{height:73.103972px;}
.hc_c00173{height:73.455293px;}
.h3_c00173{height:80.062577px;}
.h10_c00173{height:80.451229px;}
.h5_c00173{height:81.448577px;}
.he_c00173{height:88.224276px;}
.ha_c00173{height:90.944648px;}
.h1_c00173{height:1110.000000px;}
.h0_c00173{height:1263.000000px;}
.w1_c00173{width:775.500000px;}
.w0_c00173{width:892.500000px;}
.x0_c00173{left:0.000000px;}
.x2_c00173{left:50.744085px;}
.x1_c00173{left:58.500000px;}
.x25_c00173{left:89.532285px;}
.x10_c00173{left:91.022235px;}
.x5_c00173{left:92.383485px;}
.x1f_c00173{left:112.534935px;}
.x36_c00173{left:122.618085px;}
.x4e_c00173{left:133.102185px;}
.x50_c00173{left:134.730735px;}
.x20_c00173{left:143.145735px;}
.x6_c00173{left:145.798935px;}
.x18_c00173{left:156.931485px;}
.x5c_c00173{left:164.737635px;}
.x43_c00173{left:167.212635px;}
.x5d_c00173{left:168.380835px;}
.x11_c00173{left:178.142235px;}
.x53_c00173{left:188.161035px;}
.x26_c00173{left:190.190535px;}
.x32_c00173{left:200.540985px;}
.x5e_c00173{left:210.733035px;}
.x7_c00173{left:212.069535px;}
.x3f_c00173{left:220.949835px;}
.x2f_c00173{left:223.231785px;}
.x37_c00173{left:232.711035px;}
.x54_c00173{left:233.874285px;}
.x30_c00173{left:244.204935px;}
.x21_c00173{left:245.625585px;}
.x46_c00173{left:255.129585px;}
.x12_c00173{left:256.560135px;}
.x8_c00173{left:266.460135px;}
.x33_c00173{left:267.732285px;}
.x5f_c00173{left:276.860085px;}
.x22_c00173{left:278.453985px;}
.x19_c00173{left:288.636135px;}
.x5b_c00173{left:300.511185px;}
.x27_c00173{left:310.767585px;}
.x44_c00173{left:312.321885px;}
.x60_c00173{left:320.647785px;}
.x1a_c00173{left:323.266335px;}
.x9_c00173{left:332.408985px;}
.x57_c00173{left:333.889035px;}
.x28_c00173{left:344.887935px;}
.x38_c00173{left:355.446285px;}
.x13_c00173{left:356.767935px;}
.x40_c00173{left:366.742185px;}
.x47_c00173{left:376.236285px;}
.xa_c00173{left:378.250935px;}
.x51_c00173{left:388.418235px;}
.x34_c00173{left:389.824035px;}
.x23_c00173{left:400.342785px;}
.x3c_c00173{left:412.123785px;}
.x31_c00173{left:422.439585px;}
.x1b_c00173{left:433.874085px;}
.x14_c00173{left:445.511535px;}
.x29_c00173{left:455.614485px;}
.x59_c00173{left:456.668835px;}
.xb_c00173{left:466.534185px;}
.x41_c00173{left:476.488635px;}
.x39_c00173{left:478.716135px;}
.x15_c00173{left:489.081435px;}
.x4f_c00173{left:498.540885px;}
.x1c_c00173{left:499.763535px;}
.x42_c00173{left:520.682235px;}
.xc_c00173{left:522.607785px;}
.x24_c00173{left:533.279985px;}
.xd_c00173{left:542.318685px;}
.x3a_c00173{left:543.457185px;}
.x4b_c00173{left:555.431235px;}
.x52_c00173{left:565.360935px;}
.x2a_c00173{left:566.682585px;}
.x1d_c00173{left:576.602385px;}
.x55_c00173{left:586.522185px;}
.x48_c00173{left:588.784335px;}
.x4c_c00173{left:598.347735px;}
.x2b_c00173{left:599.411985px;}
.xe_c00173{left:610.950435px;}
.x3d_c00173{left:621.993885px;}
.x2c_c00173{left:631.116735px;}
.x16_c00173{left:633.017535px;}
.x5a_c00173{left:642.189885px;}
.x58_c00173{left:643.313535px;}
.x61_c00173{left:652.876935px;}
.x3_c00173{left:654.069885px;}
.x17_c00173{left:664.618335px;}
.x3e_c00173{left:665.766735px;}
.x56_c00173{left:674.993535px;}
.xf_c00173{left:677.285385px;}
.x35_c00173{left:689.328735px;}
.x4d_c00173{left:697.431885px;}
.x3b_c00173{left:699.169335px;}
.x62_c00173{left:700.604835px;}
.x2d_c00173{left:702.020535px;}
.x2e_c00173{left:703.876785px;}
.x49_c00173{left:708.054585px;}
.x45_c00173{left:709.064385px;}
.x1e_c00173{left:710.316735px;}
.x4a_c00173{left:721.464135px;}
.x4_c00173{left:724.394535px;}
@media print{
.v0_c00173{vertical-align:0.000000pt;}
.v1_c00173{vertical-align:1.232000pt;}
.lse_c00173{letter-spacing:-2.537926pt;}
.ls3_c00173{letter-spacing:-2.494419pt;}
.lsa_c00173{letter-spacing:-2.487168pt;}
.ls16_c00173{letter-spacing:-1.856312pt;}
.ls10_c00173{letter-spacing:-1.225456pt;}
.ls9_c00173{letter-spacing:-0.493083pt;}
.ls4_c00173{letter-spacing:-0.116019pt;}
.ls1_c00173{letter-spacing:0.000000pt;}
.lsf_c00173{letter-spacing:0.224788pt;}
.ls6_c00173{letter-spacing:0.362561pt;}
.lsc_c00173{letter-spacing:1.138441pt;}
.ls17_c00173{letter-spacing:1.718539pt;}
.ls14_c00173{letter-spacing:2.748211pt;}
.lsd_c00173{letter-spacing:2.987502pt;}
.ls11_c00173{letter-spacing:3.115209pt;}
.ls5_c00173{letter-spacing:3.132800pt;}
.ls0_c00173{letter-spacing:3.284802pt;}
.ls12_c00173{letter-spacing:3.516841pt;}
.ls2_c00173{letter-spacing:3.625609pt;}
.ls15_c00173{letter-spacing:3.643209pt;}
.ls13_c00173{letter-spacing:3.995209pt;}
.lsb_c00173{letter-spacing:4.118400pt;}
.ls7_c00173{letter-spacing:46.886576pt;}
.ls8_c00173{letter-spacing:50.688176pt;}
.ws0_c00173{word-spacing:0.000000pt;}
._4_c00173{margin-left:-6.193472pt;}
._2_c00173{width:1.244672pt;}
._3_c00173{width:11.737735pt;}
._1_c00173{width:22.668668pt;}
._0_c00173{width:25.741990pt;}
.fs8_c00173{font-size:21.824000pt;}
.fsc_c00173{font-size:29.040000pt;}
.fs0_c00173{font-size:30.272176pt;}
.fs5_c00173{font-size:31.152176pt;}
.fs2_c00173{font-size:34.496000pt;}
.fs10_c00173{font-size:35.200000pt;}
.fse_c00173{font-size:39.424000pt;}
.fs4_c00173{font-size:46.886576pt;}
.fs6_c00173{font-size:50.688176pt;}
.fsf_c00173{font-size:60.544176pt;}
.fsa_c00173{font-size:62.304176pt;}
.fs3_c00173{font-size:62.656000pt;}
.fs9_c00173{font-size:66.528000pt;}
.fs1_c00173{font-size:72.512176pt;}
.fsd_c00173{font-size:72.864176pt;}
.fsb_c00173{font-size:79.904176pt;}
.fs7_c00173{font-size:82.368000pt;}
.y0_c00173{bottom:0.000000pt;}
.y21_c00173{bottom:66.449720pt;}
.y1_c00173{bottom:68.000000pt;}
.y20_c00173{bottom:71.201720pt;}
.y1f_c00173{bottom:151.668920pt;}
.y1e_c00173{bottom:170.355720pt;}
.y1c_c00173{bottom:179.864120pt;}
.y1d_c00173{bottom:184.928520pt;}
.y1b_c00173{bottom:263.811720pt;}
.y1a_c00173{bottom:291.690120pt;}
.y19_c00173{bottom:319.572920pt;}
.y18_c00173{bottom:347.451320pt;}
.y17_c00173{bottom:375.325320pt;}
.y16_c00173{bottom:402.891320pt;}
.y2_c00173{bottom:412.078520pt;}
.y15_c00173{bottom:422.845320pt;}
.y14_c00173{bottom:431.398920pt;}
.y13_c00173{bottom:459.277320pt;}
.y12_c00173{bottom:482.724920pt;}
.y11_c00173{bottom:487.476920pt;}
.y10_c00173{bottom:515.355320pt;}
.yf_c00173{bottom:543.862920pt;}
.ye_c00173{bottom:571.741320pt;}
.yd_c00173{bottom:599.940920pt;}
.yc_c00173{bottom:627.502520pt;}
.yb_c00173{bottom:642.392120pt;}
.ya_c00173{bottom:656.010120pt;}
.y9_c00173{bottom:684.526520pt;}
.y8_c00173{bottom:740.278920pt;}
.y7_c00173{bottom:768.474120pt;}
.y6_c00173{bottom:796.035720pt;}
.y5_c00173{bottom:823.597320pt;}
.y4_c00173{bottom:831.204920pt;}
.y3_c00173{bottom:944.931720pt;}
.hb_c00173{height:21.408406pt;}
.hf_c00173{height:30.287813pt;}
.h8_c00173{height:30.574157pt;}
.h7_c00173{height:31.226460pt;}
.h2_c00173{height:31.572934pt;}
.h9_c00173{height:33.758325pt;}
.h4_c00173{height:35.978250pt;}
.h13_c00173{height:36.712500pt;}
.h11_c00173{height:41.118000pt;}
.h6_c00173{height:61.493438pt;}
.h12_c00173{height:63.145684pt;}
.hd_c00173{height:64.981309pt;}
.hc_c00173{height:65.293594pt;}
.h3_c00173{height:71.166735pt;}
.h10_c00173{height:71.512204pt;}
.h5_c00173{height:72.398735pt;}
.he_c00173{height:78.421579pt;}
.ha_c00173{height:80.839688pt;}
.h1_c00173{height:986.666667pt;}
.h0_c00173{height:1122.666667pt;}
.w1_c00173{width:689.333333pt;}
.w0_c00173{width:793.333333pt;}
.x0_c00173{left:0.000000pt;}
.x2_c00173{left:45.105853pt;}
.x1_c00173{left:52.000000pt;}
.x25_c00173{left:79.584253pt;}
.x10_c00173{left:80.908653pt;}
.x5_c00173{left:82.118653pt;}
.x1f_c00173{left:100.031053pt;}
.x36_c00173{left:108.993853pt;}
.x4e_c00173{left:118.313053pt;}
.x50_c00173{left:119.760653pt;}
.x20_c00173{left:127.240653pt;}
.x6_c00173{left:129.599053pt;}
.x18_c00173{left:139.494653pt;}
.x5c_c00173{left:146.433453pt;}
.x43_c00173{left:148.633453pt;}
.x5d_c00173{left:149.671853pt;}
.x11_c00173{left:158.348653pt;}
.x53_c00173{left:167.254253pt;}
.x26_c00173{left:169.058253pt;}
.x32_c00173{left:178.258653pt;}
.x5e_c00173{left:187.318253pt;}
.x7_c00173{left:188.506253pt;}
.x3f_c00173{left:196.399853pt;}
.x2f_c00173{left:198.428253pt;}
.x37_c00173{left:206.854253pt;}
.x54_c00173{left:207.888253pt;}
.x30_c00173{left:217.071053pt;}
.x21_c00173{left:218.333853pt;}
.x46_c00173{left:226.781853pt;}
.x12_c00173{left:228.053453pt;}
.x8_c00173{left:236.853453pt;}
.x33_c00173{left:237.984253pt;}
.x5f_c00173{left:246.097853pt;}
.x22_c00173{left:247.514653pt;}
.x19_c00173{left:256.565453pt;}
.x5b_c00173{left:267.121053pt;}
.x27_c00173{left:276.237853pt;}
.x44_c00173{left:277.619453pt;}
.x60_c00173{left:285.020253pt;}
.x1a_c00173{left:287.347853pt;}
.x9_c00173{left:295.474653pt;}
.x57_c00173{left:296.790253pt;}
.x28_c00173{left:306.567053pt;}
.x38_c00173{left:315.952253pt;}
.x13_c00173{left:317.127053pt;}
.x40_c00173{left:325.993053pt;}
.x47_c00173{left:334.432253pt;}
.xa_c00173{left:336.223053pt;}
.x51_c00173{left:345.260653pt;}
.x34_c00173{left:346.510253pt;}
.x23_c00173{left:355.860253pt;}
.x3c_c00173{left:366.332253pt;}
.x31_c00173{left:375.501853pt;}
.x1b_c00173{left:385.665853pt;}
.x14_c00173{left:396.010253pt;}
.x29_c00173{left:404.990653pt;}
.x59_c00173{left:405.927853pt;}
.xb_c00173{left:414.697053pt;}
.x41_c00173{left:423.545453pt;}
.x39_c00173{left:425.525453pt;}
.x15_c00173{left:434.739053pt;}
.x4f_c00173{left:443.147453pt;}
.x1c_c00173{left:444.234253pt;}
.x42_c00173{left:462.828653pt;}
.xc_c00173{left:464.540253pt;}
.x24_c00173{left:474.026653pt;}
.xd_c00173{left:482.061053pt;}
.x3a_c00173{left:483.073053pt;}
.x4b_c00173{left:493.716653pt;}
.x52_c00173{left:502.543053pt;}
.x2a_c00173{left:503.717853pt;}
.x1d_c00173{left:512.535453pt;}
.x55_c00173{left:521.353053pt;}
.x48_c00173{left:523.363853pt;}
.x4c_c00173{left:531.864653pt;}
.x2b_c00173{left:532.810653pt;}
.xe_c00173{left:543.067053pt;}
.x3d_c00173{left:552.883453pt;}
.x2c_c00173{left:560.992653pt;}
.x16_c00173{left:562.682253pt;}
.x5a_c00173{left:570.835453pt;}
.x58_c00173{left:571.834253pt;}
.x61_c00173{left:580.335053pt;}
.x3_c00173{left:581.395453pt;}
.x17_c00173{left:590.771853pt;}
.x3e_c00173{left:591.792653pt;}
.x56_c00173{left:599.994253pt;}
.xf_c00173{left:602.031453pt;}
.x35_c00173{left:612.736653pt;}
.x4d_c00173{left:619.939453pt;}
.x3b_c00173{left:621.483853pt;}
.x62_c00173{left:622.759853pt;}
.x2d_c00173{left:624.018253pt;}
.x2e_c00173{left:625.668253pt;}
.x49_c00173{left:629.381853pt;}
.x45_c00173{left:630.279453pt;}
.x1e_c00173{left:631.392653pt;}
.x4a_c00173{left:641.301453pt;}
.x4_c00173{left:643.906253pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cef4fda6dde25f680e9daf28.woff2')format("woff");}.ff1_c00174{font-family:ff1_c00174;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00174;src:url('chunks/assets/font_6801bcce7e5d1b214551d7b5.woff2')format("woff");}.ff2_c00174{font-family:ff2_c00174;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00174;src:url('chunks/assets/font_feba0154212fc2a1b5ceae56.woff2')format("woff");}.ff3_c00174{font-family:ff3_c00174;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m99_c00174{transform:matrix(0.227723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227723,0.000000,0.000000,0.250000,0,0);}
.m56_c00174{transform:matrix(0.243754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243754,0.000000,0.000000,0.250000,0,0);}
.m2_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);}
.m4c_c00174{transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);}
.m53_c00174{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.m3f_c00174{transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);}
.m45_c00174{transform:matrix(0.256334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256334,0.000000,0.000000,0.250000,0,0);}
.m6f_c00174{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m38_c00174{transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);}
.m69_c00174{transform:matrix(0.260913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260913,0.000000,0.000000,0.250000,0,0);}
.m2b_c00174{transform:matrix(0.261836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261836,0.000000,0.000000,0.250000,0,0);}
.me_c00174{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m8_c00174{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m5e_c00174{transform:matrix(0.264174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264174,0.000000,0.000000,0.250000,0,0);}
.m51_c00174{transform:matrix(0.265306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265306,0.000000,0.000000,0.250000,0,0);}
.m66_c00174{transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);}
.mab_c00174{transform:matrix(0.265694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265694,0.000000,0.000000,0.250000,0,0);}
.m80_c00174{transform:matrix(0.266174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266174,0.000000,0.000000,0.250000,0,0);}
.m24_c00174{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m20_c00174{transform:matrix(0.266408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266408,0.000000,0.000000,0.250000,0,0);}
.ma9_c00174{transform:matrix(0.266900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266900,0.000000,0.000000,0.250000,0,0);}
.m4f_c00174{transform:matrix(0.267199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267199,0.000000,0.000000,0.250000,0,0);}
.md_c00174{transform:matrix(0.267205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267205,0.000000,0.000000,0.250000,0,0);}
.m4_c00174{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m1a_c00174{transform:matrix(0.269095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269095,0.000000,0.000000,0.250000,0,0);}
.m29_c00174{transform:matrix(0.269557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269557,0.000000,0.000000,0.250000,0,0);}
.m75_c00174{transform:matrix(0.270180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270180,0.000000,0.000000,0.250000,0,0);}
.m72_c00174{transform:matrix(0.270536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270536,0.000000,0.000000,0.250000,0,0);}
.m7_c00174{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m26_c00174{transform:matrix(0.271097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271097,0.000000,0.000000,0.250000,0,0);}
.m85_c00174{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m39_c00174{transform:matrix(0.272609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272609,0.000000,0.000000,0.250000,0,0);}
.ma8_c00174{transform:matrix(0.273448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273448,0.000000,0.000000,0.250000,0,0);}
.m5d_c00174{transform:matrix(0.273582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273582,0.000000,0.000000,0.250000,0,0);}
.m37_c00174{transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);}
.m6d_c00174{transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);}
.m76_c00174{transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);}
.ma0_c00174{transform:matrix(0.275052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275052,0.000000,0.000000,0.250000,0,0);}
.m18_c00174{transform:matrix(0.275227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275227,0.000000,0.000000,0.250000,0,0);}
.m60_c00174{transform:matrix(0.275232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275232,0.000000,0.000000,0.250000,0,0);}
.m52_c00174{transform:matrix(0.275428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275428,0.000000,0.000000,0.250000,0,0);}
.m22_c00174{transform:matrix(0.275525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275525,0.000000,0.000000,0.250000,0,0);}
.m8f_c00174{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m0_c00174{transform:matrix(0.276116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276116,0.000000,0.000000,0.250000,0,0);}
.m54_c00174{transform:matrix(0.276181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276181,0.000000,0.000000,0.250000,0,0);}
.m1d_c00174{transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);}
.m91_c00174{transform:matrix(0.277352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277352,0.000000,0.000000,0.250000,0,0);}
.m93_c00174{transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);}
.m83_c00174{transform:matrix(0.278106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278106,0.000000,0.000000,0.250000,0,0);}
.mb_c00174{transform:matrix(0.279057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279057,0.000000,0.000000,0.250000,0,0);}
.m97_c00174{transform:matrix(0.279359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279359,0.000000,0.000000,0.250000,0,0);}
.m87_c00174{transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);}
.maa_c00174{transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);}
.m4e_c00174{transform:matrix(0.280224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280224,0.000000,0.000000,0.250000,0,0);}
.m30_c00174{transform:matrix(0.280443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280443,0.000000,0.000000,0.250000,0,0);}
.m25_c00174{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.m7c_c00174{transform:matrix(0.282631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282631,0.000000,0.000000,0.250000,0,0);}
.maf_c00174{transform:matrix(0.282868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282868,0.000000,0.000000,0.250000,0,0);}
.m35_c00174{transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);}
.m32_c00174{transform:matrix(0.283266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283266,0.000000,0.000000,0.250000,0,0);}
.m55_c00174{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m16_c00174{transform:matrix(0.284097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284097,0.000000,0.000000,0.250000,0,0);}
.m6b_c00174{transform:matrix(0.285021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285021,0.000000,0.000000,0.250000,0,0);}
.m1f_c00174{transform:matrix(0.285916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285916,0.000000,0.000000,0.250000,0,0);}
.m8e_c00174{transform:matrix(0.287081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287081,0.000000,0.000000,0.250000,0,0);}
.ma_c00174{transform:matrix(0.288532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288532,0.000000,0.000000,0.250000,0,0);}
.mc_c00174{transform:matrix(0.288697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288697,0.000000,0.000000,0.250000,0,0);}
.m50_c00174{transform:matrix(0.288915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288915,0.000000,0.000000,0.250000,0,0);}
.m9d_c00174{transform:matrix(0.288968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288968,0.000000,0.000000,0.250000,0,0);}
.m1e_c00174{transform:matrix(0.289117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289117,0.000000,0.000000,0.250000,0,0);}
.m59_c00174{transform:matrix(0.289227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289227,0.000000,0.000000,0.250000,0,0);}
.m7e_c00174{transform:matrix(0.289313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289313,0.000000,0.000000,0.250000,0,0);}
.m96_c00174{transform:matrix(0.289420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289420,0.000000,0.000000,0.250000,0,0);}
.m65_c00174{transform:matrix(0.289951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289951,0.000000,0.000000,0.250000,0,0);}
.m4b_c00174{transform:matrix(0.290141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290141,0.000000,0.000000,0.250000,0,0);}
.m90_c00174{transform:matrix(0.290314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290314,0.000000,0.000000,0.250000,0,0);}
.m7b_c00174{transform:matrix(0.290457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290457,0.000000,0.000000,0.250000,0,0);}
.m61_c00174{transform:matrix(0.290878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290878,0.000000,0.000000,0.250000,0,0);}
.m6_c00174{transform:matrix(0.291076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291076,0.000000,0.000000,0.250000,0,0);}
.m33_c00174{transform:matrix(0.291151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291151,0.000000,0.000000,0.250000,0,0);}
.m41_c00174{transform:matrix(0.291208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291208,0.000000,0.000000,0.250000,0,0);}
.m98_c00174{transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);}
.m7d_c00174{transform:matrix(0.292127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292127,0.000000,0.000000,0.250000,0,0);}
.mae_c00174{transform:matrix(0.292306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292306,0.000000,0.000000,0.250000,0,0);}
.m5a_c00174{transform:matrix(0.292655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292655,0.000000,0.000000,0.250000,0,0);}
.m23_c00174{transform:matrix(0.293586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293586,0.000000,0.000000,0.250000,0,0);}
.m63_c00174{transform:matrix(0.293651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293651,0.000000,0.000000,0.250000,0,0);}
.m6c_c00174{transform:matrix(0.294350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294350,0.000000,0.000000,0.250000,0,0);}
.m71_c00174{transform:matrix(0.294390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294390,0.000000,0.000000,0.250000,0,0);}
.m14_c00174{transform:matrix(0.294463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294463,0.000000,0.000000,0.250000,0,0);}
.m88_c00174{transform:matrix(0.294604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294604,0.000000,0.000000,0.250000,0,0);}
.m40_c00174{transform:matrix(0.296032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296032,0.000000,0.000000,0.250000,0,0);}
.m10_c00174{transform:matrix(0.296467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296467,0.000000,0.000000,0.250000,0,0);}
.m43_c00174{transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);}
.m57_c00174{transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);}
.mad_c00174{transform:matrix(0.297089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297089,0.000000,0.000000,0.250000,0,0);}
.m1b_c00174{transform:matrix(0.297124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297124,0.000000,0.000000,0.250000,0,0);}
.m5b_c00174{transform:matrix(0.297375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297375,0.000000,0.000000,0.250000,0,0);}
.m49_c00174{transform:matrix(0.297716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297716,0.000000,0.000000,0.250000,0,0);}
.m8d_c00174{transform:matrix(0.299511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299511,0.000000,0.000000,0.250000,0,0);}
.ma2_c00174{transform:matrix(0.299520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299520,0.000000,0.000000,0.250000,0,0);}
.m2c_c00174{transform:matrix(0.299719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299719,0.000000,0.000000,0.250000,0,0);}
.m2d_c00174{transform:matrix(0.299791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299791,0.000000,0.000000,0.250000,0,0);}
.m67_c00174{transform:matrix(0.300337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300337,0.000000,0.000000,0.250000,0,0);}
.ma1_c00174{transform:matrix(0.300548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300548,0.000000,0.000000,0.250000,0,0);}
.m9c_c00174{transform:matrix(0.300679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300679,0.000000,0.000000,0.250000,0,0);}
.ma7_c00174{transform:matrix(0.301078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301078,0.000000,0.000000,0.250000,0,0);}
.m82_c00174{transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);}
.m2a_c00174{transform:matrix(0.302297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302297,0.000000,0.000000,0.250000,0,0);}
.m3d_c00174{transform:matrix(0.302587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302587,0.000000,0.000000,0.250000,0,0);}
.ma5_c00174{transform:matrix(0.302588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302588,0.000000,0.000000,0.250000,0,0);}
.m3c_c00174{transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);}
.m86_c00174{transform:matrix(0.304963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304963,0.000000,0.000000,0.250000,0,0);}
.m64_c00174{transform:matrix(0.305226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305226,0.000000,0.000000,0.250000,0,0);}
.m36_c00174{transform:matrix(0.305482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305482,0.000000,0.000000,0.250000,0,0);}
.m5f_c00174{transform:matrix(0.305864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305864,0.000000,0.000000,0.250000,0,0);}
.ma4_c00174{transform:matrix(0.306888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306888,0.000000,0.000000,0.250000,0,0);}
.m4d_c00174{transform:matrix(0.306902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306902,0.000000,0.000000,0.250000,0,0);}
.m28_c00174{transform:matrix(0.307270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307270,0.000000,0.000000,0.250000,0,0);}
.m8a_c00174{transform:matrix(0.307312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307312,0.000000,0.000000,0.250000,0,0);}
.m79_c00174{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m44_c00174{transform:matrix(0.308602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308602,0.000000,0.000000,0.250000,0,0);}
.mac_c00174{transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);}
.m73_c00174{transform:matrix(0.309137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309137,0.000000,0.000000,0.250000,0,0);}
.m89_c00174{transform:matrix(0.310104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310104,0.000000,0.000000,0.250000,0,0);}
.m46_c00174{transform:matrix(0.310507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310507,0.000000,0.000000,0.250000,0,0);}
.m3_c00174{transform:matrix(0.310783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310783,0.000000,0.000000,0.250000,0,0);}
.m7a_c00174{transform:matrix(0.311120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311120,0.000000,0.000000,0.250000,0,0);}
.m78_c00174{transform:matrix(0.312229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312229,0.000000,0.000000,0.250000,0,0);}
.m19_c00174{transform:matrix(0.312408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312408,0.000000,0.000000,0.250000,0,0);}
.mf_c00174{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.m11_c00174{transform:matrix(0.313511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313511,0.000000,0.000000,0.250000,0,0);}
.m47_c00174{transform:matrix(0.314193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314193,0.000000,0.000000,0.250000,0,0);}
.ma6_c00174{transform:matrix(0.315640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315640,0.000000,0.000000,0.250000,0,0);}
.m8c_c00174{transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);}
.m94_c00174{transform:matrix(0.316284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316284,0.000000,0.000000,0.250000,0,0);}
.m3e_c00174{transform:matrix(0.316676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316676,0.000000,0.000000,0.250000,0,0);}
.m6e_c00174{transform:matrix(0.317995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317995,0.000000,0.000000,0.250000,0,0);}
.m9b_c00174{transform:matrix(0.318062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318062,0.000000,0.000000,0.250000,0,0);}
.m70_c00174{transform:matrix(0.318688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318688,0.000000,0.000000,0.250000,0,0);}
.m34_c00174{transform:matrix(0.319384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319384,0.000000,0.000000,0.250000,0,0);}
.m9f_c00174{transform:matrix(0.319751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319751,0.000000,0.000000,0.250000,0,0);}
.m81_c00174{transform:matrix(0.320347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320347,0.000000,0.000000,0.250000,0,0);}
.ma3_c00174{transform:matrix(0.321107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321107,0.000000,0.000000,0.250000,0,0);}
.m9a_c00174{transform:matrix(0.321354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321354,0.000000,0.000000,0.250000,0,0);}
.m9e_c00174{transform:matrix(0.321420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321420,0.000000,0.000000,0.250000,0,0);}
.m13_c00174{transform:matrix(0.321773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321773,0.000000,0.000000,0.250000,0,0);}
.m21_c00174{transform:matrix(0.321816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321816,0.000000,0.000000,0.250000,0,0);}
.m95_c00174{transform:matrix(0.322165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322165,0.000000,0.000000,0.250000,0,0);}
.m92_c00174{transform:matrix(0.323146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323146,0.000000,0.000000,0.250000,0,0);}
.m48_c00174{transform:matrix(0.323918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323918,0.000000,0.000000,0.250000,0,0);}
.m3a_c00174{transform:matrix(0.325473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325473,0.000000,0.000000,0.250000,0,0);}
.m12_c00174{transform:matrix(0.326317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326317,0.000000,0.000000,0.250000,0,0);}
.m1c_c00174{transform:matrix(0.327130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327130,0.000000,0.000000,0.250000,0,0);}
.m17_c00174{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m68_c00174{transform:matrix(0.327605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327605,0.000000,0.000000,0.250000,0,0);}
.m4a_c00174{transform:matrix(0.328208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328208,0.000000,0.000000,0.250000,0,0);}
.m5c_c00174{transform:matrix(0.329420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329420,0.000000,0.000000,0.250000,0,0);}
.m62_c00174{transform:matrix(0.330299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330299,0.000000,0.000000,0.250000,0,0);}
.m9_c00174{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m3b_c00174{transform:matrix(0.333265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333265,0.000000,0.000000,0.250000,0,0);}
.m58_c00174{transform:matrix(0.333611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333611,0.000000,0.000000,0.250000,0,0);}
.m42_c00174{transform:matrix(0.336407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336407,0.000000,0.000000,0.250000,0,0);}
.m84_c00174{transform:matrix(0.337867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337867,0.000000,0.000000,0.250000,0,0);}
.m31_c00174{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m27_c00174{transform:matrix(0.342665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342665,0.000000,0.000000,0.250000,0,0);}
.m5_c00174{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.m6a_c00174{transform:matrix(0.344241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344241,0.000000,0.000000,0.250000,0,0);}
.m2f_c00174{transform:matrix(0.344559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344559,0.000000,0.000000,0.250000,0,0);}
.m1_c00174{transform:matrix(0.348954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348954,0.000000,0.000000,0.250000,0,0);}
.m15_c00174{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m8b_c00174{transform:matrix(0.350588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350588,0.000000,0.000000,0.250000,0,0);}
.m77_c00174{transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);}
.m2e_c00174{transform:matrix(0.354899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354899,0.000000,0.000000,0.250000,0,0);}
.m74_c00174{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m7f_c00174{transform:matrix(0.404579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404579,0.000000,0.000000,0.250000,0,0);}
.v1_c00174{vertical-align:-35.640000px;}
.v2_c00174{vertical-align:-22.829400px;}
.v0_c00174{vertical-align:0.000000px;}
.lsb_c00174{letter-spacing:-2.744280px;}
.ls6_c00174{letter-spacing:-2.375762px;}
.lse_c00174{letter-spacing:-0.972259px;}
.ls4_c00174{letter-spacing:0.000000px;}
.ls8_c00174{letter-spacing:0.807602px;}
.lsa_c00174{letter-spacing:1.082030px;}
.ls0_c00174{letter-spacing:2.164061px;}
.ls7_c00174{letter-spacing:2.589840px;}
.ls10_c00174{letter-spacing:2.673713px;}
.lsd_c00174{letter-spacing:3.009600px;}
.ls5_c00174{letter-spacing:3.112798px;}
.ls9_c00174{letter-spacing:3.206887px;}
.lsf_c00174{letter-spacing:3.512678px;}
.ls11_c00174{letter-spacing:3.524400px;}
.ls3_c00174{letter-spacing:3.920400px;}
.lsc_c00174{letter-spacing:4.108500px;}
.ls1_c00174{letter-spacing:16.779312px;}
.ls2_c00174{letter-spacing:205.339464px;}
.sc__c00174{text-shadow:none;}
.sc0_c00174{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00174{-webkit-text-stroke:0px transparent;}
.sc0_c00174{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00174{word-spacing:-19.602000px;}
.ws1_c00174{word-spacing:0.000000px;}
._5_c00174{margin-left:-7.629446px;}
._3_c00174{width:5.723784px;}
._7_c00174{width:6.899904px;}
._2_c00174{width:8.546472px;}
._0_c00174{width:16.668749px;}
._1_c00174{width:20.855736px;}
._8_c00174{width:23.208768px;}
._6_c00174{width:28.148472px;}
._9_c00174{width:31.839509px;}
._4_c00174{width:249.863218px;}
._a_c00174{width:1025.425368px;}
.fc0_c00174{color:transparent;}
.fs9_c00174{font-size:17.028000px;}
.fs1_c00174{font-size:22.572000px;}
.fsc_c00174{font-size:31.086000px;}
.fs3_c00174{font-size:34.056198px;}
.fsa_c00174{font-size:38.808000px;}
.fse_c00174{font-size:39.204000px;}
.fs6_c00174{font-size:39.600000px;}
.fs8_c00174{font-size:60.192000px;}
.fsd_c00174{font-size:66.528000px;}
.fsb_c00174{font-size:70.488000px;}
.fs0_c00174{font-size:78.408000px;}
.fs7_c00174{font-size:82.170000px;}
.fs2_c00174{font-size:86.328000px;}
.fs5_c00174{font-size:93.456198px;}
.fs4_c00174{font-size:107.712198px;}
.y0_c00174{bottom:0.000000px;}
.y23_c00174{bottom:33.052185px;}
.y22_c00174{bottom:67.266585px;}
.y1_c00174{bottom:76.500000px;}
.y21_c00174{bottom:89.368335px;}
.y20_c00174{bottom:104.337135px;}
.y1d_c00174{bottom:153.876735px;}
.y1f_c00174{bottom:154.228185px;}
.y1e_c00174{bottom:161.361135px;}
.y1c_c00174{bottom:185.234985px;}
.y1b_c00174{bottom:218.023785px;}
.y1a_c00174{bottom:243.684585px;}
.y19_c00174{bottom:250.461135px;}
.y18_c00174{bottom:314.608185px;}
.y17_c00174{bottom:346.684185px;}
.y16_c00174{bottom:378.765135px;}
.y15_c00174{bottom:411.905385px;}
.y14_c00174{bottom:444.342735px;}
.y13_c00174{bottom:476.775135px;}
.y12_c00174{bottom:509.202585px;}
.y11_c00174{bottom:541.991385px;}
.y10_c00174{bottom:568.721385px;}
.yf_c00174{bottom:574.423785px;}
.ye_c00174{bottom:635.724585px;}
.yd_c00174{bottom:667.805535px;}
.yc_c00174{bottom:699.881535px;}
.yb_c00174{bottom:714.850335px;}
.ya_c00174{bottom:733.378185px;}
.y9_c00174{bottom:766.166985px;}
.y8_c00174{bottom:798.604335px;}
.y7_c00174{bottom:830.680335px;}
.y6_c00174{bottom:863.469135px;}
.y5_c00174{bottom:890.555535px;}
.y4_c00174{bottom:896.257935px;}
.y3_c00174{bottom:928.690335px;}
.y2_c00174{bottom:1078.016985px;}
.h3_c00174{height:23.541891px;}
.hc_c00174{height:32.421727px;}
.h5_c00174{height:35.519550px;}
.he_c00174{height:38.476582px;}
.ha_c00174{height:40.475531px;}
.h8_c00174{height:59.075156px;}
.h9_c00174{height:62.778375px;}
.hb_c00174{height:69.180117px;}
.hd_c00174{height:69.386625px;}
.h2_c00174{height:76.953164px;}
.h7_c00174{height:80.605239px;}
.h4_c00174{height:84.726211px;}
.h6_c00174{height:112.340457px;}
.h1_c00174{height:1110.000000px;}
.h0_c00174{height:1263.000000px;}
.w1_c00174{width:775.500000px;}
.w0_c00174{width:892.500000px;}
.x0_c00174{left:0.000000px;}
.x1_c00174{left:58.500000px;}
.x34_c00174{left:83.681385px;}
.x3_c00174{left:84.834735px;}
.xc_c00174{left:85.948485px;}
.x4f_c00174{left:87.705735px;}
.x2a_c00174{left:106.783035px;}
.xd_c00174{left:118.073985px;}
.x5d_c00174{left:119.524335px;}
.x64_c00174{left:120.568785px;}
.x37_c00174{left:129.518385px;}
.x41_c00174{left:139.665885px;}
.x21_c00174{left:140.888535px;}
.x62_c00174{left:141.932985px;}
.x4_c00174{left:151.605285px;}
.x5a_c00174{left:152.610135px;}
.xe_c00174{left:162.826935px;}
.x5_c00174{left:173.127885px;}
.x19_c00174{left:184.017885px;}
.xf_c00174{left:185.428635px;}
.x2b_c00174{left:194.546535px;}
.x38_c00174{left:195.769185px;}
.x5c_c00174{left:196.783935px;}
.x22_c00174{left:205.946385px;}
.x57_c00174{left:216.989835px;}
.x2c_c00174{left:218.202585px;}
.x5e_c00174{left:220.340985px;}
.x39_c00174{left:228.562935px;}
.x5f_c00174{left:229.943985px;}
.x42_c00174{left:239.616285px;}
.x23_c00174{left:241.363635px;}
.x6_c00174{left:250.684485px;}
.x3d_c00174{left:254.248485px;}
.x2d_c00174{left:260.822085px;}
.x10_c00174{left:262.059585px;}
.x4c_c00174{left:263.470335px;}
.x3e_c00174{left:272.588235px;}
.x24_c00174{left:274.182135px;}
.x48_c00174{left:281.230935px;}
.x7_c00174{left:284.869185px;}
.x1a_c00174{left:295.556235px;}
.x25_c00174{left:306.624435px;}
.x8_c00174{left:318.375735px;}
.x63_c00174{left:319.400385px;}
.x58_c00174{left:327.869835px;}
.x1b_c00174{left:329.429085px;}
.x2e_c00174{left:338.809335px;}
.x4d_c00174{left:340.314135px;}
.x11_c00174{left:350.837835px;}
.x3f_c00174{left:361.401135px;}
.x50_c00174{left:363.277185px;}
.x26_c00174{left:372.885135px;}
.x12_c00174{left:384.324585px;}
.x51_c00174{left:395.343285px;}
.x65_c00174{left:396.432285px;}
.x1c_c00174{left:406.797585px;}
.x40_c00174{left:417.098535px;}
.x35_c00174{left:425.523435px;}
.x13_c00174{left:428.696385px;}
.x55_c00174{left:439.858635px;}
.x43_c00174{left:450.590235px;}
.x59_c00174{left:451.654485px;}
.x3a_c00174{left:461.262435px;}
.x1d_c00174{left:462.311835px;}
.x27_c00174{left:472.726635px;}
.x66_c00174{left:477.874635px;}
.x53_c00174{left:483.720585px;}
.x1e_c00174{left:494.066085px;}
.x5b_c00174{left:495.857985px;}
.x9_c00174{left:504.906585px;}
.x18_c00174{left:507.005385px;}
.x36_c00174{left:516.781635px;}
.x14_c00174{left:527.612235px;}
.x49_c00174{left:539.368485px;}
.x44_c00174{left:540.412935px;}
.x28_c00174{left:548.788335px;}
.x3b_c00174{left:550.223835px;}
.x15_c00174{left:561.499935px;}
.x47_c00174{left:570.563385px;}
.x60_c00174{left:571.597935px;}
.x2f_c00174{left:572.850285px;}
.x4e_c00174{left:583.913535px;}
.x16_c00174{left:594.036285px;}
.x30_c00174{left:603.367035px;}
.x1f_c00174{left:604.594635px;}
.x4a_c00174{left:615.994485px;}
.x56_c00174{left:626.562735px;}
.x29_c00174{left:627.716085px;}
.x31_c00174{left:636.477585px;}
.x61_c00174{left:640.843485px;}
.x20_c00174{left:648.946635px;}
.xa_c00174{left:650.184135px;}
.x2_c00174{left:660.490035px;}
.x4b_c00174{left:671.939385px;}
.xb_c00174{left:683.002635px;}
.x17_c00174{left:693.981735px;}
.x32_c00174{left:697.669485px;}
.x45_c00174{left:699.471285px;}
.x3c_c00174{left:702.802635px;}
.x33_c00174{left:704.356935px;}
.x46_c00174{left:705.416235px;}
.x67_c00174{left:708.351585px;}
.x54_c00174{left:715.400385px;}
.x52_c00174{left:726.508185px;}
@media print{
.v1_c00174{vertical-align:-31.680000pt;}
.v2_c00174{vertical-align:-20.292800pt;}
.v0_c00174{vertical-align:0.000000pt;}
.lsb_c00174{letter-spacing:-2.439360pt;}
.ls6_c00174{letter-spacing:-2.111789pt;}
.lse_c00174{letter-spacing:-0.864230pt;}
.ls4_c00174{letter-spacing:0.000000pt;}
.ls8_c00174{letter-spacing:0.717869pt;}
.lsa_c00174{letter-spacing:0.961805pt;}
.ls0_c00174{letter-spacing:1.923610pt;}
.ls7_c00174{letter-spacing:2.302080pt;}
.ls10_c00174{letter-spacing:2.376634pt;}
.lsd_c00174{letter-spacing:2.675200pt;}
.ls5_c00174{letter-spacing:2.766931pt;}
.ls9_c00174{letter-spacing:2.850566pt;}
.lsf_c00174{letter-spacing:3.122381pt;}
.ls11_c00174{letter-spacing:3.132800pt;}
.ls3_c00174{letter-spacing:3.484800pt;}
.lsc_c00174{letter-spacing:3.652000pt;}
.ls1_c00174{letter-spacing:14.914944pt;}
.ls2_c00174{letter-spacing:182.523968pt;}
.ws0_c00174{word-spacing:-17.424000pt;}
.ws1_c00174{word-spacing:0.000000pt;}
._5_c00174{margin-left:-6.781730pt;}
._3_c00174{width:5.087808pt;}
._7_c00174{width:6.133248pt;}
._2_c00174{width:7.596864pt;}
._0_c00174{width:14.816666pt;}
._1_c00174{width:18.538432pt;}
._8_c00174{width:20.630016pt;}
._6_c00174{width:25.020864pt;}
._9_c00174{width:28.301786pt;}
._4_c00174{width:222.100638pt;}
._a_c00174{width:911.489216pt;}
.fs9_c00174{font-size:15.136000pt;}
.fs1_c00174{font-size:20.064000pt;}
.fsc_c00174{font-size:27.632000pt;}
.fs3_c00174{font-size:30.272176pt;}
.fsa_c00174{font-size:34.496000pt;}
.fse_c00174{font-size:34.848000pt;}
.fs6_c00174{font-size:35.200000pt;}
.fs8_c00174{font-size:53.504000pt;}
.fsd_c00174{font-size:59.136000pt;}
.fsb_c00174{font-size:62.656000pt;}
.fs0_c00174{font-size:69.696000pt;}
.fs7_c00174{font-size:73.040000pt;}
.fs2_c00174{font-size:76.736000pt;}
.fs5_c00174{font-size:83.072176pt;}
.fs4_c00174{font-size:95.744176pt;}
.y0_c00174{bottom:0.000000pt;}
.y23_c00174{bottom:29.379720pt;}
.y22_c00174{bottom:59.792520pt;}
.y1_c00174{bottom:68.000000pt;}
.y21_c00174{bottom:79.438520pt;}
.y20_c00174{bottom:92.744120pt;}
.y1d_c00174{bottom:136.779320pt;}
.y1f_c00174{bottom:137.091720pt;}
.y1e_c00174{bottom:143.432120pt;}
.y1c_c00174{bottom:164.653320pt;}
.y1b_c00174{bottom:193.798920pt;}
.y1a_c00174{bottom:216.608520pt;}
.y19_c00174{bottom:222.632120pt;}
.y18_c00174{bottom:279.651720pt;}
.y17_c00174{bottom:308.163720pt;}
.y16_c00174{bottom:336.680120pt;}
.y15_c00174{bottom:366.138120pt;}
.y14_c00174{bottom:394.971320pt;}
.y13_c00174{bottom:423.800120pt;}
.y12_c00174{bottom:452.624520pt;}
.y11_c00174{bottom:481.770120pt;}
.y10_c00174{bottom:505.530120pt;}
.yf_c00174{bottom:510.598920pt;}
.ye_c00174{bottom:565.088520pt;}
.yd_c00174{bottom:593.604920pt;}
.yc_c00174{bottom:622.116920pt;}
.yb_c00174{bottom:635.422520pt;}
.ya_c00174{bottom:651.891720pt;}
.y9_c00174{bottom:681.037320pt;}
.y8_c00174{bottom:709.870520pt;}
.y7_c00174{bottom:738.382520pt;}
.y6_c00174{bottom:767.528120pt;}
.y5_c00174{bottom:791.604920pt;}
.y4_c00174{bottom:796.673720pt;}
.y3_c00174{bottom:825.502520pt;}
.y2_c00174{bottom:958.237320pt;}
.h3_c00174{height:20.926125pt;}
.hc_c00174{height:28.819313pt;}
.h5_c00174{height:31.572934pt;}
.he_c00174{height:34.201406pt;}
.ha_c00174{height:35.978250pt;}
.h8_c00174{height:52.511250pt;}
.h9_c00174{height:55.803000pt;}
.hb_c00174{height:61.493438pt;}
.hd_c00174{height:61.677000pt;}
.h2_c00174{height:68.402813pt;}
.h7_c00174{height:71.649102pt;}
.h4_c00174{height:75.312188pt;}
.h6_c00174{height:99.858184pt;}
.h1_c00174{height:986.666667pt;}
.h0_c00174{height:1122.666667pt;}
.w1_c00174{width:689.333333pt;}
.w0_c00174{width:793.333333pt;}
.x0_c00174{left:0.000000pt;}
.x1_c00174{left:52.000000pt;}
.x34_c00174{left:74.383453pt;}
.x3_c00174{left:75.408653pt;}
.xc_c00174{left:76.398653pt;}
.x4f_c00174{left:77.960653pt;}
.x2a_c00174{left:94.918253pt;}
.xd_c00174{left:104.954653pt;}
.x5d_c00174{left:106.243853pt;}
.x64_c00174{left:107.172253pt;}
.x37_c00174{left:115.127453pt;}
.x41_c00174{left:124.147453pt;}
.x21_c00174{left:125.234253pt;}
.x62_c00174{left:126.162653pt;}
.x4_c00174{left:134.760253pt;}
.x5a_c00174{left:135.653453pt;}
.xe_c00174{left:144.735053pt;}
.x5_c00174{left:153.891453pt;}
.x19_c00174{left:163.571453pt;}
.xf_c00174{left:164.825453pt;}
.x2b_c00174{left:172.930253pt;}
.x38_c00174{left:174.017053pt;}
.x5c_c00174{left:174.919053pt;}
.x22_c00174{left:183.063453pt;}
.x57_c00174{left:192.879853pt;}
.x2c_c00174{left:193.957853pt;}
.x5e_c00174{left:195.858653pt;}
.x39_c00174{left:203.167053pt;}
.x5f_c00174{left:204.394653pt;}
.x42_c00174{left:212.992253pt;}
.x23_c00174{left:214.545453pt;}
.x6_c00174{left:222.830653pt;}
.x3d_c00174{left:225.998653pt;}
.x2d_c00174{left:231.841853pt;}
.x10_c00174{left:232.941853pt;}
.x4c_c00174{left:234.195853pt;}
.x3e_c00174{left:242.300653pt;}
.x24_c00174{left:243.717453pt;}
.x48_c00174{left:249.983053pt;}
.x7_c00174{left:253.217053pt;}
.x1a_c00174{left:262.716653pt;}
.x25_c00174{left:272.555053pt;}
.x8_c00174{left:283.000653pt;}
.x63_c00174{left:283.911453pt;}
.x58_c00174{left:291.439853pt;}
.x1b_c00174{left:292.825853pt;}
.x2e_c00174{left:301.163853pt;}
.x4d_c00174{left:302.501453pt;}
.x11_c00174{left:311.855853pt;}
.x3f_c00174{left:321.245453pt;}
.x50_c00174{left:322.913053pt;}
.x26_c00174{left:331.453453pt;}
.x12_c00174{left:341.621853pt;}
.x51_c00174{left:351.416253pt;}
.x65_c00174{left:352.384253pt;}
.x1c_c00174{left:361.597853pt;}
.x40_c00174{left:370.754253pt;}
.x35_c00174{left:378.243053pt;}
.x13_c00174{left:381.063453pt;}
.x55_c00174{left:390.985453pt;}
.x43_c00174{left:400.524653pt;}
.x59_c00174{left:401.470653pt;}
.x3a_c00174{left:410.011053pt;}
.x1d_c00174{left:410.943853pt;}
.x27_c00174{left:420.201453pt;}
.x66_c00174{left:424.777453pt;}
.x53_c00174{left:429.973853pt;}
.x1e_c00174{left:439.169853pt;}
.x5b_c00174{left:440.762653pt;}
.x9_c00174{left:448.805853pt;}
.x18_c00174{left:450.671453pt;}
.x36_c00174{left:459.361453pt;}
.x14_c00174{left:468.988653pt;}
.x49_c00174{left:479.438653pt;}
.x44_c00174{left:480.367053pt;}
.x28_c00174{left:487.811853pt;}
.x3b_c00174{left:489.087853pt;}
.x15_c00174{left:499.111053pt;}
.x47_c00174{left:507.167453pt;}
.x60_c00174{left:508.087053pt;}
.x2f_c00174{left:509.200253pt;}
.x4e_c00174{left:519.034253pt;}
.x16_c00174{left:528.032253pt;}
.x30_c00174{left:536.326253pt;}
.x1f_c00174{left:537.417453pt;}
.x4a_c00174{left:547.550653pt;}
.x56_c00174{left:556.944653pt;}
.x29_c00174{left:557.969853pt;}
.x31_c00174{left:565.757853pt;}
.x61_c00174{left:569.638653pt;}
.x20_c00174{left:576.841453pt;}
.xa_c00174{left:577.941453pt;}
.x2_c00174{left:587.102253pt;}
.x4b_c00174{left:597.279453pt;}
.xb_c00174{left:607.113453pt;}
.x17_c00174{left:616.872653pt;}
.x32_c00174{left:620.150653pt;}
.x45_c00174{left:621.752253pt;}
.x3c_c00174{left:624.713453pt;}
.x33_c00174{left:626.095053pt;}
.x46_c00174{left:627.036653pt;}
.x67_c00174{left:629.645853pt;}
.x54_c00174{left:635.911453pt;}
.x52_c00174{left:645.785053pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9f3c3a6b771060e5fd0d58aa.woff2')format("woff");}.ff1_c00175{font-family:ff1_c00175;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00175;src:url('chunks/assets/font_7b215eb7f9fa61078b22a5fb.woff2')format("woff");}.ff2_c00175{font-family:ff2_c00175;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00175;src:url('chunks/assets/font_6164397c3f353fde56fa70f3.woff2')format("woff");}.ff3_c00175{font-family:ff3_c00175;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00175;src:url('chunks/assets/font_76bcf81df502aae8eaecd298.woff2')format("woff");}.ff4_c00175{font-family:ff4_c00175;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5e_c00175{transform:matrix(0.088778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088778,0.000000,0.000000,0.250000,0,0);}
.m6c_c00175{transform:matrix(0.140318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140318,0.000000,0.000000,0.250000,0,0);}
.mb_c00175{transform:matrix(0.144645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144645,0.000000,0.000000,0.250000,0,0);}
.m43_c00175{transform:matrix(0.172771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172771,0.000000,0.000000,0.250000,0,0);}
.mb1_c00175{transform:matrix(0.179169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179169,0.000000,0.000000,0.250000,0,0);}
.m1e_c00175{transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);}
.m1f_c00175{transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);}
.m1c_c00175{transform:matrix(0.213392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213392,0.000000,0.000000,0.250000,0,0);}
.m6_c00175{transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);}
.m21_c00175{transform:matrix(0.218883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218883,0.000000,0.000000,0.250000,0,0);}
.ma4_c00175{transform:matrix(0.222093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222093,0.000000,0.000000,0.250000,0,0);}
.m2c_c00175{transform:matrix(0.224573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224573,0.000000,0.000000,0.250000,0,0);}
.m24_c00175{transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);}
.m34_c00175{transform:matrix(0.248291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248291,0.000000,0.000000,0.250000,0,0);}
.m0_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);}
.m64_c00175{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.m70_c00175{transform:matrix(0.253847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253847,0.000000,0.000000,0.250000,0,0);}
.m40_c00175{transform:matrix(0.255280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255280,0.000000,0.000000,0.250000,0,0);}
.m9a_c00175{transform:matrix(0.255778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255778,0.000000,0.000000,0.250000,0,0);}
.m63_c00175{transform:matrix(0.257917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257917,0.000000,0.000000,0.250000,0,0);}
.m3_c00175{transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);}
.m74_c00175{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m54_c00175{transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);}
.m51_c00175{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m66_c00175{transform:matrix(0.263115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263115,0.000000,0.000000,0.250000,0,0);}
.m29_c00175{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m13_c00175{transform:matrix(0.263352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263352,0.000000,0.000000,0.250000,0,0);}
.m73_c00175{transform:matrix(0.263916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263916,0.000000,0.000000,0.250000,0,0);}
.me_c00175{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m9d_c00175{transform:matrix(0.265626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265626,0.000000,0.000000,0.250000,0,0);}
.m2a_c00175{transform:matrix(0.265894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265894,0.000000,0.000000,0.250000,0,0);}
.m78_c00175{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m8a_c00175{transform:matrix(0.266403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266403,0.000000,0.000000,0.250000,0,0);}
.m6e_c00175{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.mae_c00175{transform:matrix(0.266949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266949,0.000000,0.000000,0.250000,0,0);}
.m81_c00175{transform:matrix(0.267623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267623,0.000000,0.000000,0.250000,0,0);}
.m1d_c00175{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.mab_c00175{transform:matrix(0.267925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267925,0.000000,0.000000,0.250000,0,0);}
.m7_c00175{transform:matrix(0.268375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268375,0.000000,0.000000,0.250000,0,0);}
.m26_c00175{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.m9f_c00175{transform:matrix(0.269104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269104,0.000000,0.000000,0.250000,0,0);}
.m36_c00175{transform:matrix(0.269948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269948,0.000000,0.000000,0.250000,0,0);}
.m2f_c00175{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m22_c00175{transform:matrix(0.271028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271028,0.000000,0.000000,0.250000,0,0);}
.m68_c00175{transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);}
.md_c00175{transform:matrix(0.271808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271808,0.000000,0.000000,0.250000,0,0);}
.m2b_c00175{transform:matrix(0.271853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271853,0.000000,0.000000,0.250000,0,0);}
.m33_c00175{transform:matrix(0.272153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272153,0.000000,0.000000,0.250000,0,0);}
.m57_c00175{transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);}
.ma8_c00175{transform:matrix(0.272898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272898,0.000000,0.000000,0.250000,0,0);}
.m47_c00175{transform:matrix(0.272943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272943,0.000000,0.000000,0.250000,0,0);}
.m94_c00175{transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);}
.m59_c00175{transform:matrix(0.275015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275015,0.000000,0.000000,0.250000,0,0);}
.m46_c00175{transform:matrix(0.277338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277338,0.000000,0.000000,0.250000,0,0);}
.m77_c00175{transform:matrix(0.277985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277985,0.000000,0.000000,0.250000,0,0);}
.m86_c00175{transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);}
.m80_c00175{transform:matrix(0.279069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279069,0.000000,0.000000,0.250000,0,0);}
.m5b_c00175{transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);}
.m60_c00175{transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);}
.m16_c00175{transform:matrix(0.280064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280064,0.000000,0.000000,0.250000,0,0);}
.m18_c00175{transform:matrix(0.280357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280357,0.000000,0.000000,0.250000,0,0);}
.m72_c00175{transform:matrix(0.280566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280566,0.000000,0.000000,0.250000,0,0);}
.ma7_c00175{transform:matrix(0.281686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281686,0.000000,0.000000,0.250000,0,0);}
.m76_c00175{transform:matrix(0.282559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282559,0.000000,0.000000,0.250000,0,0);}
.m4c_c00175{transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);}
.mb5_c00175{transform:matrix(0.283509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283509,0.000000,0.000000,0.250000,0,0);}
.ma5_c00175{transform:matrix(0.283519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283519,0.000000,0.000000,0.250000,0,0);}
.m84_c00175{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m6a_c00175{transform:matrix(0.283731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283731,0.000000,0.000000,0.250000,0,0);}
.m8e_c00175{transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);}
.m50_c00175{transform:matrix(0.284537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284537,0.000000,0.000000,0.250000,0,0);}
.m89_c00175{transform:matrix(0.284934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284934,0.000000,0.000000,0.250000,0,0);}
.m87_c00175{transform:matrix(0.285460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285460,0.000000,0.000000,0.250000,0,0);}
.m4b_c00175{transform:matrix(0.285777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285777,0.000000,0.000000,0.250000,0,0);}
.m7a_c00175{transform:matrix(0.286199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286199,0.000000,0.000000,0.250000,0,0);}
.m5f_c00175{transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);}
.m8f_c00175{transform:matrix(0.287658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287658,0.000000,0.000000,0.250000,0,0);}
.m12_c00175{transform:matrix(0.289199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289199,0.000000,0.000000,0.250000,0,0);}
.m14_c00175{transform:matrix(0.289488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289488,0.000000,0.000000,0.250000,0,0);}
.m41_c00175{transform:matrix(0.289680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289680,0.000000,0.000000,0.250000,0,0);}
.m23_c00175{transform:matrix(0.289711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289711,0.000000,0.000000,0.250000,0,0);}
.m9e_c00175{transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);}
.m56_c00175{transform:matrix(0.290972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290972,0.000000,0.000000,0.250000,0,0);}
.m8b_c00175{transform:matrix(0.290997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290997,0.000000,0.000000,0.250000,0,0);}
.m8c_c00175{transform:matrix(0.291073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291073,0.000000,0.000000,0.250000,0,0);}
.m62_c00175{transform:matrix(0.291184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291184,0.000000,0.000000,0.250000,0,0);}
.mb3_c00175{transform:matrix(0.291580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291580,0.000000,0.000000,0.250000,0,0);}
.m5_c00175{transform:matrix(0.291924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291924,0.000000,0.000000,0.250000,0,0);}
.m42_c00175{transform:matrix(0.292679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292679,0.000000,0.000000,0.250000,0,0);}
.m38_c00175{transform:matrix(0.293294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293294,0.000000,0.000000,0.250000,0,0);}
.m28_c00175{transform:matrix(0.293350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293350,0.000000,0.000000,0.250000,0,0);}
.mad_c00175{transform:matrix(0.293411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293411,0.000000,0.000000,0.250000,0,0);}
.m65_c00175{transform:matrix(0.294060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294060,0.000000,0.000000,0.250000,0,0);}
.m17_c00175{transform:matrix(0.295094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295094,0.000000,0.000000,0.250000,0,0);}
.m25_c00175{transform:matrix(0.295117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295117,0.000000,0.000000,0.250000,0,0);}
.m96_c00175{transform:matrix(0.295994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295994,0.000000,0.000000,0.250000,0,0);}
.m8d_c00175{transform:matrix(0.296063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296063,0.000000,0.000000,0.250000,0,0);}
.m4e_c00175{transform:matrix(0.296662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296662,0.000000,0.000000,0.250000,0,0);}
.m31_c00175{transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);}
.m44_c00175{transform:matrix(0.297306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297306,0.000000,0.000000,0.250000,0,0);}
.maf_c00175{transform:matrix(0.297924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297924,0.000000,0.000000,0.250000,0,0);}
.mf_c00175{transform:matrix(0.297984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297984,0.000000,0.000000,0.250000,0,0);}
.mb8_c00175{transform:matrix(0.298146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298146,0.000000,0.000000,0.250000,0,0);}
.m99_c00175{transform:matrix(0.298522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298522,0.000000,0.000000,0.250000,0,0);}
.m6b_c00175{transform:matrix(0.298828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298828,0.000000,0.000000,0.250000,0,0);}
.m9_c00175{transform:matrix(0.299153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299153,0.000000,0.000000,0.250000,0,0);}
.m88_c00175{transform:matrix(0.299616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299616,0.000000,0.000000,0.250000,0,0);}
.m92_c00175{transform:matrix(0.299713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299713,0.000000,0.000000,0.250000,0,0);}
.ma1_c00175{transform:matrix(0.300888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300888,0.000000,0.000000,0.250000,0,0);}
.m67_c00175{transform:matrix(0.301042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301042,0.000000,0.000000,0.250000,0,0);}
.m71_c00175{transform:matrix(0.302360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302360,0.000000,0.000000,0.250000,0,0);}
.m48_c00175{transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);}
.m8_c00175{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m1b_c00175{transform:matrix(0.302461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302461,0.000000,0.000000,0.250000,0,0);}
.m82_c00175{transform:matrix(0.302462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302462,0.000000,0.000000,0.250000,0,0);}
.m5c_c00175{transform:matrix(0.302713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302713,0.000000,0.000000,0.250000,0,0);}
.m2_c00175{transform:matrix(0.302881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302881,0.000000,0.000000,0.250000,0,0);}
.m7d_c00175{transform:matrix(0.303033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303033,0.000000,0.000000,0.250000,0,0);}
.m85_c00175{transform:matrix(0.303446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303446,0.000000,0.000000,0.250000,0,0);}
.m5d_c00175{transform:matrix(0.303506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303506,0.000000,0.000000,0.250000,0,0);}
.m90_c00175{transform:matrix(0.303576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303576,0.000000,0.000000,0.250000,0,0);}
.m30_c00175{transform:matrix(0.304227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304227,0.000000,0.000000,0.250000,0,0);}
.ma3_c00175{transform:matrix(0.304295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304295,0.000000,0.000000,0.250000,0,0);}
.maa_c00175{transform:matrix(0.304540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304540,0.000000,0.000000,0.250000,0,0);}
.m3d_c00175{transform:matrix(0.304800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304800,0.000000,0.000000,0.250000,0,0);}
.m39_c00175{transform:matrix(0.305851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305851,0.000000,0.000000,0.250000,0,0);}
.m45_c00175{transform:matrix(0.308280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308280,0.000000,0.000000,0.250000,0,0);}
.m55_c00175{transform:matrix(0.308564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308564,0.000000,0.000000,0.250000,0,0);}
.m7e_c00175{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m4f_c00175{transform:matrix(0.308913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308913,0.000000,0.000000,0.250000,0,0);}
.mb7_c00175{transform:matrix(0.309240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309240,0.000000,0.000000,0.250000,0,0);}
.mac_c00175{transform:matrix(0.310270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310270,0.000000,0.000000,0.250000,0,0);}
.mb0_c00175{transform:matrix(0.311442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311442,0.000000,0.000000,0.250000,0,0);}
.m58_c00175{transform:matrix(0.311785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311785,0.000000,0.000000,0.250000,0,0);}
.m3a_c00175{transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);}
.m9b_c00175{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.ma2_c00175{transform:matrix(0.312924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312924,0.000000,0.000000,0.250000,0,0);}
.mb6_c00175{transform:matrix(0.313488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313488,0.000000,0.000000,0.250000,0,0);}
.mc_c00175{transform:matrix(0.313490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313490,0.000000,0.000000,0.250000,0,0);}
.m52_c00175{transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);}
.m6d_c00175{transform:matrix(0.314225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314225,0.000000,0.000000,0.250000,0,0);}
.ma9_c00175{transform:matrix(0.314545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314545,0.000000,0.000000,0.250000,0,0);}
.ma0_c00175{transform:matrix(0.315264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315264,0.000000,0.000000,0.250000,0,0);}
.m2d_c00175{transform:matrix(0.319133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319133,0.000000,0.000000,0.250000,0,0);}
.m4d_c00175{transform:matrix(0.319628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319628,0.000000,0.000000,0.250000,0,0);}
.m15_c00175{transform:matrix(0.321432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321432,0.000000,0.000000,0.250000,0,0);}
.m9c_c00175{transform:matrix(0.321792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321792,0.000000,0.000000,0.250000,0,0);}
.m79_c00175{transform:matrix(0.322387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322387,0.000000,0.000000,0.250000,0,0);}
.m32_c00175{transform:matrix(0.322448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322448,0.000000,0.000000,0.250000,0,0);}
.m97_c00175{transform:matrix(0.323681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323681,0.000000,0.000000,0.250000,0,0);}
.m61_c00175{transform:matrix(0.323918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323918,0.000000,0.000000,0.250000,0,0);}
.m7b_c00175{transform:matrix(0.325086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325086,0.000000,0.000000,0.250000,0,0);}
.m3e_c00175{transform:matrix(0.325179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325179,0.000000,0.000000,0.250000,0,0);}
.m4a_c00175{transform:matrix(0.325525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325525,0.000000,0.000000,0.250000,0,0);}
.ma6_c00175{transform:matrix(0.325583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325583,0.000000,0.000000,0.250000,0,0);}
.mb4_c00175{transform:matrix(0.326136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326136,0.000000,0.000000,0.250000,0,0);}
.m35_c00175{transform:matrix(0.326182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326182,0.000000,0.000000,0.250000,0,0);}
.m7c_c00175{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m11_c00175{transform:matrix(0.328578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328578,0.000000,0.000000,0.250000,0,0);}
.m6f_c00175{transform:matrix(0.330341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330341,0.000000,0.000000,0.250000,0,0);}
.ma_c00175{transform:matrix(0.332527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332527,0.000000,0.000000,0.250000,0,0);}
.m49_c00175{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m7f_c00175{transform:matrix(0.333905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333905,0.000000,0.000000,0.250000,0,0);}
.m2e_c00175{transform:matrix(0.335434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335434,0.000000,0.000000,0.250000,0,0);}
.m4_c00175{transform:matrix(0.336672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336672,0.000000,0.000000,0.250000,0,0);}
.m3c_c00175{transform:matrix(0.336844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336844,0.000000,0.000000,0.250000,0,0);}
.m1a_c00175{transform:matrix(0.337061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337061,0.000000,0.000000,0.250000,0,0);}
.m19_c00175{transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);}
.m83_c00175{transform:matrix(0.338285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338285,0.000000,0.000000,0.250000,0,0);}
.m91_c00175{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m93_c00175{transform:matrix(0.342513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342513,0.000000,0.000000,0.250000,0,0);}
.m20_c00175{transform:matrix(0.344744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344744,0.000000,0.000000,0.250000,0,0);}
.m95_c00175{transform:matrix(0.347013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347013,0.000000,0.000000,0.250000,0,0);}
.m53_c00175{transform:matrix(0.347270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347270,0.000000,0.000000,0.250000,0,0);}
.m5a_c00175{transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);}
.m3b_c00175{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m10_c00175{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m98_c00175{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m75_c00175{transform:matrix(0.361926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361926,0.000000,0.000000,0.250000,0,0);}
.m3f_c00175{transform:matrix(0.366424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366424,0.000000,0.000000,0.250000,0,0);}
.m27_c00175{transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);}
.mb2_c00175{transform:matrix(0.378797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378797,0.000000,0.000000,0.250000,0,0);}
.m69_c00175{transform:matrix(0.378961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378961,0.000000,0.000000,0.250000,0,0);}
.m37_c00175{transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);}
.m1_c00175{transform:matrix(0.408396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408396,0.000000,0.000000,0.250000,0,0);}
.v0_c00175{vertical-align:0.000000px;}
.ls12_c00175{letter-spacing:-2.882880px;}
.ls7_c00175{letter-spacing:-2.744280px;}
.lsd_c00175{letter-spacing:-1.701454px;}
.ls2_c00175{letter-spacing:0.000000px;}
.lsc_c00175{letter-spacing:0.823284px;}
.ls11_c00175{letter-spacing:1.246687px;}
.ls3_c00175{letter-spacing:1.425600px;}
.lsa_c00175{letter-spacing:1.685772px;}
.ls1_c00175{letter-spacing:2.031322px;}
.ls0_c00175{letter-spacing:2.054290px;}
.lsf_c00175{letter-spacing:2.807006px;}
.lsb_c00175{letter-spacing:3.112798px;}
.ls10_c00175{letter-spacing:3.366000px;}
.lse_c00175{letter-spacing:3.387226px;}
.ls13_c00175{letter-spacing:3.465000px;}
.ls8_c00175{letter-spacing:3.880810px;}
.ls5_c00175{letter-spacing:3.920400px;}
.ls9_c00175{letter-spacing:4.098610px;}
.ls4_c00175{letter-spacing:4.250070px;}
.ls6_c00175{letter-spacing:49.896198px;}
.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:-19.602000px;}
.ws1_c00175{word-spacing:0.000000px;}
._a_c00175{margin-left:-10.663488px;}
._5_c00175{width:2.823480px;}
._c_c00175{width:5.880600px;}
._9_c00175{width:7.919208px;}
._d_c00175{width:9.487368px;}
._1_c00175{width:10.977120px;}
._4_c00175{width:12.388464px;}
._6_c00175{width:14.818320px;}
._b_c00175{width:17.406576px;}
._2_c00175{width:28.421712px;}
._3_c00175{width:35.362008px;}
._8_c00175{width:37.362600px;}
._0_c00175{width:39.596040px;}
._7_c00175{width:262.450267px;}
.fc0_c00175{color:transparent;}
.fs0_c00175{font-size:22.572000px;}
.fs11_c00175{font-size:27.720000px;}
.fs3_c00175{font-size:28.314000px;}
.fs1_c00175{font-size:28.512000px;}
.fsd_c00175{font-size:33.264000px;}
.fs4_c00175{font-size:33.660000px;}
.fsb_c00175{font-size:44.352000px;}
.fs12_c00175{font-size:45.144000px;}
.fs7_c00175{font-size:49.896198px;}
.fs8_c00175{font-size:64.548000px;}
.fse_c00175{font-size:67.320000px;}
.fs10_c00175{font-size:69.300000px;}
.fsc_c00175{font-size:70.884000px;}
.fs9_c00175{font-size:77.616198px;}
.fs5_c00175{font-size:78.408000px;}
.fs6_c00175{font-size:78.804000px;}
.fsa_c00175{font-size:81.972198px;}
.fsf_c00175{font-size:82.368000px;}
.fs2_c00175{font-size:89.100000px;}
.y0_c00175{bottom:0.000000px;}
.y22_c00175{bottom:40.536585px;}
.y21_c00175{bottom:65.845935px;}
.y1_c00175{bottom:76.500000px;}
.y20_c00175{bottom:86.161725px;}
.y1f_c00175{bottom:140.333535px;}
.y1e_c00175{bottom:182.027385px;}
.y1d_c00175{bottom:215.890335px;}
.y1c_c00175{bottom:248.322735px;}
.y1b_c00175{bottom:280.398735px;}
.y1a_c00175{bottom:312.474735px;}
.y19_c00175{bottom:344.550735px;}
.y18_c00175{bottom:409.410585px;}
.y17_c00175{bottom:442.204335px;}
.y16_c00175{bottom:474.631785px;}
.y15_c00175{bottom:506.707785px;}
.y14_c00175{bottom:539.140185px;}
.y13_c00175{bottom:570.859785px;}
.y12_c00175{bottom:603.653535px;}
.y11_c00175{bottom:635.724585px;}
.y10_c00175{bottom:649.624185px;}
.yf_c00175{bottom:667.805535px;}
.ye_c00175{bottom:692.753535px;}
.yd_c00175{bottom:699.520185px;}
.yc_c00175{bottom:731.957535px;}
.yb_c00175{bottom:764.033535px;}
.ya_c00175{bottom:796.460985px;}
.y9_c00175{bottom:863.825535px;}
.y8_c00175{bottom:896.257935px;}
.y7_c00175{bottom:928.328985px;}
.y6_c00175{bottom:966.820185px;}
.y5_c00175{bottom:987.139935px;}
.y2_c00175{bottom:996.401385px;}
.y4_c00175{bottom:1079.086185px;}
.y3_c00175{bottom:1102.608585px;}
.h2_c00175{height:23.541891px;}
.h11_c00175{height:28.911094px;}
.h5_c00175{height:29.530617px;}
.h3_c00175{height:29.737125px;}
.h6_c00175{height:33.035449px;}
.h9_c00175{height:33.230868px;}
.hd_c00175{height:34.693313px;}
.hc_c00175{height:46.257750px;}
.h12_c00175{height:47.083781px;}
.he_c00175{height:70.212656px;}
.h10_c00175{height:72.277734px;}
.ha_c00175{height:76.176054px;}
.h7_c00175{height:76.953164px;}
.h8_c00175{height:77.341816px;}
.hb_c00175{height:80.451229px;}
.hf_c00175{height:80.839688px;}
.h4_c00175{height:87.446777px;}
.h1_c00175{height:1110.000000px;}
.h0_c00175{height:1263.000000px;}
.w1_c00175{width:733.500000px;}
.w0_c00175{width:892.500000px;}
.x0_c00175{left:0.000000px;}
.x2_c00175{left:46.207785px;}
.x4d_c00175{left:74.407935px;}
.x2f_c00175{left:75.541485px;}
.x1a_c00175{left:76.932435px;}
.x1_c00175{left:79.500000px;}
.x4e_c00175{left:86.381985px;}
.x45_c00175{left:98.484735px;}
.x5a_c00175{left:108.543135px;}
.x1b_c00175{left:109.577685px;}
.x62_c00175{left:119.403435px;}
.x1c_c00175{left:120.546885px;}
.x10_c00175{left:123.467385px;}
.x1f_c00175{left:131.392335px;}
.x11_c00175{left:133.728735px;}
.x41_c00175{left:142.371435px;}
.x12_c00175{left:143.599035px;}
.x2a_c00175{left:152.509035px;}
.x66_c00175{left:153.776235px;}
.x4f_c00175{left:162.884235px;}
.x46_c00175{left:164.106885px;}
.x5b_c00175{left:165.141435px;}
.x30_c00175{left:176.556135px;}
.x47_c00175{left:185.337435px;}
.x1d_c00175{left:186.792735px;}
.x7_c00175{left:188.163885px;}
.x5f_c00175{left:196.187835px;}
.x65_c00175{left:197.920335px;}
.x31_c00175{left:207.736185px;}
.x55_c00175{left:209.023185px;}
.x8_c00175{left:210.092385px;}
.x48_c00175{left:219.868635px;}
.x13_c00175{left:221.091285px;}
.x56_c00175{left:230.550735px;}
.x1e_c00175{left:243.871185px;}
.x9_c00175{left:245.262135px;}
.x6c_c00175{left:251.880285px;}
.x3d_c00175{left:253.068285px;}
.x20_c00175{left:264.255285px;}
.x50_c00175{left:274.387935px;}
.x14_c00175{left:275.833335px;}
.x32_c00175{left:287.292585px;}
.xa_c00175{left:298.019235px;}
.x36_c00175{left:308.612235px;}
.x21_c00175{left:319.789335px;}
.x49_c00175{left:330.981285px;}
.x3e_c00175{left:341.470335px;}
.x33_c00175{left:342.994935px;}
.x2b_c00175{left:353.706735px;}
.x51_c00175{left:364.057185px;}
.x57_c00175{left:374.189835px;}
.xb_c00175{left:375.976785px;}
.x52_c00175{left:386.153985px;}
.x5d_c00175{left:391.470285px;}
.x60_c00175{left:395.969835px;}
.x22_c00175{left:397.548885px;}
.x37_c00175{left:408.542835px;}
.x53_c00175{left:409.656585px;}
.x15_c00175{left:419.878335px;}
.x4a_c00175{left:430.614885px;}
.x23_c00175{left:431.971185px;}
.x34_c00175{left:441.549435px;}
.x6d_c00175{left:447.902265px;}
.x42_c00175{left:453.152235px;}
.x59_c00175{left:462.938385px;}
.xc_c00175{left:464.047185px;}
.x4b_c00175{left:474.021435px;}
.x16_c00175{left:475.560885px;}
.x38_c00175{left:476.842935px;}
.x2c_c00175{left:485.936085px;}
.x67_c00175{left:496.984485px;}
.x43_c00175{left:498.028935px;}
.x17_c00175{left:507.904185px;}
.x39_c00175{left:508.928835px;}
.x5e_c00175{left:519.051585px;}
.x24_c00175{left:530.486085px;}
.x3a_c00175{left:533.233335px;}
.x2d_c00175{left:540.267285px;}
.xd_c00175{left:541.707735px;}
.x3f_c00175{left:551.360235px;}
.x44_c00175{left:552.582885px;}
.x25_c00175{left:564.556935px;}
.x5_c00175{left:570.793935px;}
.x18_c00175{left:574.065885px;}
.x2e_c00175{left:585.247935px;}
.x58_c00175{left:586.376535px;}
.x26_c00175{left:597.142785px;}
.x68_c00175{left:599.439585px;}
.x3c_c00175{left:606.305235px;}
.x27_c00175{left:607.389285px;}
.x6b_c00175{left:609.497985px;}
.x54_c00175{left:619.175235px;}
.x69_c00175{left:620.887935px;}
.x5c_c00175{left:628.728735px;}
.xe_c00175{left:630.139485px;}
.x6a_c00175{left:639.593985px;}
.x3b_c00175{left:641.242335px;}
.x4_c00175{left:653.028285px;}
.x28_c00175{left:662.532285px;}
.xf_c00175{left:664.106385px;}
.x19_c00175{left:665.873535px;}
.x40_c00175{left:672.892635px;}
.x3_c00175{left:674.882535px;}
.x61_c00175{left:685.124085px;}
.x6_c00175{left:691.653135px;}
.x4c_c00175{left:692.747085px;}
.x63_c00175{left:694.034085px;}
.x35_c00175{left:696.157635px;}
.x29_c00175{left:697.226835px;}
.x64_c00175{left:718.279185px;}
.x6e_c00175{left:731.782785px;}
@media print{
.v0_c00175{vertical-align:0.000000pt;}
.ls12_c00175{letter-spacing:-2.562560pt;}
.ls7_c00175{letter-spacing:-2.439360pt;}
.lsd_c00175{letter-spacing:-1.512403pt;}
.ls2_c00175{letter-spacing:0.000000pt;}
.lsc_c00175{letter-spacing:0.731808pt;}
.ls11_c00175{letter-spacing:1.108166pt;}
.ls3_c00175{letter-spacing:1.267200pt;}
.lsa_c00175{letter-spacing:1.498464pt;}
.ls1_c00175{letter-spacing:1.805619pt;}
.ls0_c00175{letter-spacing:1.826035pt;}
.lsf_c00175{letter-spacing:2.495117pt;}
.lsb_c00175{letter-spacing:2.766931pt;}
.ls10_c00175{letter-spacing:2.992000pt;}
.lse_c00175{letter-spacing:3.010867pt;}
.ls13_c00175{letter-spacing:3.080000pt;}
.ls8_c00175{letter-spacing:3.449609pt;}
.ls5_c00175{letter-spacing:3.484800pt;}
.ls9_c00175{letter-spacing:3.643209pt;}
.ls4_c00175{letter-spacing:3.777840pt;}
.ls6_c00175{letter-spacing:44.352176pt;}
.ws0_c00175{word-spacing:-17.424000pt;}
.ws1_c00175{word-spacing:0.000000pt;}
._a_c00175{margin-left:-9.478656pt;}
._5_c00175{width:2.509760pt;}
._c_c00175{width:5.227200pt;}
._9_c00175{width:7.039296pt;}
._d_c00175{width:8.433216pt;}
._1_c00175{width:9.757440pt;}
._4_c00175{width:11.011968pt;}
._6_c00175{width:13.171840pt;}
._b_c00175{width:15.472512pt;}
._2_c00175{width:25.263744pt;}
._3_c00175{width:31.432896pt;}
._8_c00175{width:33.211200pt;}
._0_c00175{width:35.196480pt;}
._7_c00175{width:233.289126pt;}
.fs0_c00175{font-size:20.064000pt;}
.fs11_c00175{font-size:24.640000pt;}
.fs3_c00175{font-size:25.168000pt;}
.fs1_c00175{font-size:25.344000pt;}
.fsd_c00175{font-size:29.568000pt;}
.fs4_c00175{font-size:29.920000pt;}
.fsb_c00175{font-size:39.424000pt;}
.fs12_c00175{font-size:40.128000pt;}
.fs7_c00175{font-size:44.352176pt;}
.fs8_c00175{font-size:57.376000pt;}
.fse_c00175{font-size:59.840000pt;}
.fs10_c00175{font-size:61.600000pt;}
.fsc_c00175{font-size:63.008000pt;}
.fs9_c00175{font-size:68.992176pt;}
.fs5_c00175{font-size:69.696000pt;}
.fs6_c00175{font-size:70.048000pt;}
.fsa_c00175{font-size:72.864176pt;}
.fsf_c00175{font-size:73.216000pt;}
.fs2_c00175{font-size:79.200000pt;}
.y0_c00175{bottom:0.000000pt;}
.y22_c00175{bottom:36.032520pt;}
.y21_c00175{bottom:58.529720pt;}
.y1_c00175{bottom:68.000000pt;}
.y20_c00175{bottom:76.588200pt;}
.y1f_c00175{bottom:124.740920pt;}
.y1e_c00175{bottom:161.802120pt;}
.y1d_c00175{bottom:191.902520pt;}
.y1c_c00175{bottom:220.731320pt;}
.y1b_c00175{bottom:249.243320pt;}
.y1a_c00175{bottom:277.755320pt;}
.y19_c00175{bottom:306.267320pt;}
.y18_c00175{bottom:363.920520pt;}
.y17_c00175{bottom:393.070520pt;}
.y16_c00175{bottom:421.894920pt;}
.y15_c00175{bottom:450.406920pt;}
.y14_c00175{bottom:479.235720pt;}
.y13_c00175{bottom:507.430920pt;}
.y12_c00175{bottom:536.580920pt;}
.y11_c00175{bottom:565.088520pt;}
.y10_c00175{bottom:577.443720pt;}
.yf_c00175{bottom:593.604920pt;}
.ye_c00175{bottom:615.780920pt;}
.yd_c00175{bottom:621.795720pt;}
.yc_c00175{bottom:650.628920pt;}
.yb_c00175{bottom:679.140920pt;}
.ya_c00175{bottom:707.965320pt;}
.y9_c00175{bottom:767.844920pt;}
.y8_c00175{bottom:796.673720pt;}
.y7_c00175{bottom:825.181320pt;}
.y6_c00175{bottom:859.395720pt;}
.y5_c00175{bottom:877.457720pt;}
.y2_c00175{bottom:885.690120pt;}
.y4_c00175{bottom:959.187720pt;}
.y3_c00175{bottom:980.096520pt;}
.h2_c00175{height:20.926125pt;}
.h11_c00175{height:25.698750pt;}
.h5_c00175{height:26.249438pt;}
.h3_c00175{height:26.433000pt;}
.h6_c00175{height:29.364844pt;}
.h9_c00175{height:29.538549pt;}
.hd_c00175{height:30.838500pt;}
.hc_c00175{height:41.118000pt;}
.h12_c00175{height:41.852250pt;}
.he_c00175{height:62.411250pt;}
.h10_c00175{height:64.246875pt;}
.ha_c00175{height:67.712048pt;}
.h7_c00175{height:68.402813pt;}
.h8_c00175{height:68.748281pt;}
.hb_c00175{height:71.512204pt;}
.hf_c00175{height:71.857500pt;}
.h4_c00175{height:77.730469pt;}
.h1_c00175{height:986.666667pt;}
.h0_c00175{height:1122.666667pt;}
.w1_c00175{width:652.000000pt;}
.w0_c00175{width:793.333333pt;}
.x0_c00175{left:0.000000pt;}
.x2_c00175{left:41.073587pt;}
.x4d_c00175{left:66.140387pt;}
.x2f_c00175{left:67.147987pt;}
.x1a_c00175{left:68.384387pt;}
.x1_c00175{left:70.666667pt;}
.x4e_c00175{left:76.783987pt;}
.x45_c00175{left:87.541987pt;}
.x5a_c00175{left:96.482787pt;}
.x1b_c00175{left:97.402387pt;}
.x62_c00175{left:106.136387pt;}
.x1c_c00175{left:107.152787pt;}
.x10_c00175{left:109.748787pt;}
.x1f_c00175{left:116.793187pt;}
.x11_c00175{left:118.869987pt;}
.x41_c00175{left:126.552387pt;}
.x12_c00175{left:127.643587pt;}
.x2a_c00175{left:135.563587pt;}
.x66_c00175{left:136.689987pt;}
.x4f_c00175{left:144.785987pt;}
.x46_c00175{left:145.872787pt;}
.x5b_c00175{left:146.792387pt;}
.x30_c00175{left:156.938787pt;}
.x47_c00175{left:164.744387pt;}
.x1d_c00175{left:166.037987pt;}
.x7_c00175{left:167.256787pt;}
.x5f_c00175{left:174.389187pt;}
.x65_c00175{left:175.929187pt;}
.x31_c00175{left:184.654387pt;}
.x55_c00175{left:185.798387pt;}
.x8_c00175{left:186.748787pt;}
.x48_c00175{left:195.438787pt;}
.x13_c00175{left:196.525587pt;}
.x56_c00175{left:204.933987pt;}
.x1e_c00175{left:216.774387pt;}
.x9_c00175{left:218.010787pt;}
.x6c_c00175{left:223.893587pt;}
.x3d_c00175{left:224.949587pt;}
.x20_c00175{left:234.893587pt;}
.x50_c00175{left:243.900387pt;}
.x14_c00175{left:245.185187pt;}
.x32_c00175{left:255.371187pt;}
.xa_c00175{left:264.905987pt;}
.x36_c00175{left:274.321987pt;}
.x21_c00175{left:284.257187pt;}
.x49_c00175{left:294.205587pt;}
.x3e_c00175{left:303.529187pt;}
.x33_c00175{left:304.884387pt;}
.x2b_c00175{left:314.405987pt;}
.x51_c00175{left:323.606387pt;}
.x57_c00175{left:332.613187pt;}
.xb_c00175{left:334.201587pt;}
.x52_c00175{left:343.247987pt;}
.x5d_c00175{left:347.973587pt;}
.x60_c00175{left:351.973187pt;}
.x22_c00175{left:353.376787pt;}
.x37_c00175{left:363.149187pt;}
.x53_c00175{left:364.139187pt;}
.x15_c00175{left:373.225187pt;}
.x4a_c00175{left:382.768787pt;}
.x23_c00175{left:383.974387pt;}
.x34_c00175{left:392.488387pt;}
.x6d_c00175{left:398.135347pt;}
.x42_c00175{left:402.801987pt;}
.x59_c00175{left:411.500787pt;}
.xc_c00175{left:412.486387pt;}
.x4b_c00175{left:421.352387pt;}
.x16_c00175{left:422.720787pt;}
.x38_c00175{left:423.860387pt;}
.x2c_c00175{left:431.943187pt;}
.x67_c00175{left:441.763987pt;}
.x43_c00175{left:442.692387pt;}
.x17_c00175{left:451.470387pt;}
.x39_c00175{left:452.381187pt;}
.x5e_c00175{left:461.379187pt;}
.x24_c00175{left:471.543187pt;}
.x3a_c00175{left:473.985187pt;}
.x2d_c00175{left:480.237587pt;}
.xd_c00175{left:481.517987pt;}
.x3f_c00175{left:490.097987pt;}
.x44_c00175{left:491.184787pt;}
.x25_c00175{left:501.828387pt;}
.x5_c00175{left:507.372387pt;}
.x18_c00175{left:510.280787pt;}
.x2e_c00175{left:520.220387pt;}
.x58_c00175{left:521.223587pt;}
.x26_c00175{left:530.793587pt;}
.x68_c00175{left:532.835187pt;}
.x3c_c00175{left:538.937987pt;}
.x27_c00175{left:539.901587pt;}
.x6b_c00175{left:541.775987pt;}
.x54_c00175{left:550.377987pt;}
.x69_c00175{left:551.900387pt;}
.x5c_c00175{left:558.869987pt;}
.xe_c00175{left:560.123987pt;}
.x6a_c00175{left:568.527987pt;}
.x3b_c00175{left:569.993187pt;}
.x4_c00175{left:580.469587pt;}
.x28_c00175{left:588.917587pt;}
.xf_c00175{left:590.316787pt;}
.x19_c00175{left:591.887587pt;}
.x40_c00175{left:598.126787pt;}
.x3_c00175{left:599.895587pt;}
.x61_c00175{left:608.999187pt;}
.x6_c00175{left:614.802787pt;}
.x4c_c00175{left:615.775187pt;}
.x63_c00175{left:616.919187pt;}
.x35_c00175{left:618.806787pt;}
.x29_c00175{left:619.757187pt;}
.x64_c00175{left:638.470387pt;}
.x6e_c00175{left:650.473587pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d3ed0db326181ee2c96cec44.woff2')format("woff");}.ff1_c00176{font-family:ff1_c00176;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00176;src:url('chunks/assets/font_2442cf8fe892aa8668a721ac.woff2')format("woff");}.ff2_c00176{font-family:ff2_c00176;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00176;src:url('chunks/assets/font_e0e847ea7dc71b28141cef0a.woff2')format("woff");}.ff3_c00176{font-family:ff3_c00176;line-height:0.666000;font-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_c00176{transform:matrix(0.050001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050001,0.000000,0.000000,0.250000,0,0);}
.mb7_c00176{transform:matrix(0.136677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136677,0.000000,0.000000,0.250000,0,0);}
.m5a_c00176{transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);}
.m36_c00176{transform:matrix(0.164728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164728,0.000000,0.000000,0.250000,0,0);}
.mb6_c00176{transform:matrix(0.186507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186507,0.000000,0.000000,0.250000,0,0);}
.m0_c00176{transform:matrix(0.193278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193278,0.000000,0.000000,0.250000,0,0);}
.m58_c00176{transform:matrix(0.220408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220408,0.000000,0.000000,0.250000,0,0);}
.m8f_c00176{transform:matrix(0.220536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220536,0.000000,0.000000,0.250000,0,0);}
.ma8_c00176{transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);}
.m9e_c00176{transform:matrix(0.241287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241287,0.000000,0.000000,0.250000,0,0);}
.m1_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);}
.m65_c00176{transform:matrix(0.250994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250994,0.000000,0.000000,0.250000,0,0);}
.me_c00176{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.m2_c00176{transform:matrix(0.253615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253615,0.000000,0.000000,0.250000,0,0);}
.m43_c00176{transform:matrix(0.254138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254138,0.000000,0.000000,0.250000,0,0);}
.m89_c00176{transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);}
.m19_c00176{transform:matrix(0.256552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256552,0.000000,0.000000,0.250000,0,0);}
.m87_c00176{transform:matrix(0.258106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258106,0.000000,0.000000,0.250000,0,0);}
.mb4_c00176{transform:matrix(0.258946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258946,0.000000,0.000000,0.250000,0,0);}
.m62_c00176{transform:matrix(0.260756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260756,0.000000,0.000000,0.250000,0,0);}
.m8e_c00176{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m1b_c00176{transform:matrix(0.261009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261009,0.000000,0.000000,0.250000,0,0);}
.m46_c00176{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m3a_c00176{transform:matrix(0.263460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263460,0.000000,0.000000,0.250000,0,0);}
.m8a_c00176{transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);}
.m35_c00176{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.ma5_c00176{transform:matrix(0.264868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264868,0.000000,0.000000,0.250000,0,0);}
.m71_c00176{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m51_c00176{transform:matrix(0.266684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266684,0.000000,0.000000,0.250000,0,0);}
.m53_c00176{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.mbb_c00176{transform:matrix(0.267199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267199,0.000000,0.000000,0.250000,0,0);}
.mb9_c00176{transform:matrix(0.267472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267472,0.000000,0.000000,0.250000,0,0);}
.ma9_c00176{transform:matrix(0.267514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267514,0.000000,0.000000,0.250000,0,0);}
.m4d_c00176{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m69_c00176{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.m97_c00176{transform:matrix(0.269006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269006,0.000000,0.000000,0.250000,0,0);}
.m9a_c00176{transform:matrix(0.269166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269166,0.000000,0.000000,0.250000,0,0);}
.m6b_c00176{transform:matrix(0.270008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270008,0.000000,0.000000,0.250000,0,0);}
.m48_c00176{transform:matrix(0.270150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270150,0.000000,0.000000,0.250000,0,0);}
.m9b_c00176{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m34_c00176{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m7_c00176{transform:matrix(0.272824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272824,0.000000,0.000000,0.250000,0,0);}
.m55_c00176{transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);}
.m1c_c00176{transform:matrix(0.274542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274542,0.000000,0.000000,0.250000,0,0);}
.m14_c00176{transform:matrix(0.275428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275428,0.000000,0.000000,0.250000,0,0);}
.m83_c00176{transform:matrix(0.275543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275543,0.000000,0.000000,0.250000,0,0);}
.m11_c00176{transform:matrix(0.276287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276287,0.000000,0.000000,0.250000,0,0);}
.m77_c00176{transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);}
.m91_c00176{transform:matrix(0.277164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277164,0.000000,0.000000,0.250000,0,0);}
.m12_c00176{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m73_c00176{transform:matrix(0.277406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277406,0.000000,0.000000,0.250000,0,0);}
.mf_c00176{transform:matrix(0.277905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277905,0.000000,0.000000,0.250000,0,0);}
.m64_c00176{transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);}
.m8_c00176{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.m38_c00176{transform:matrix(0.282543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282543,0.000000,0.000000,0.250000,0,0);}
.m6e_c00176{transform:matrix(0.282641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282641,0.000000,0.000000,0.250000,0,0);}
.mad_c00176{transform:matrix(0.282862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282862,0.000000,0.000000,0.250000,0,0);}
.m99_c00176{transform:matrix(0.283405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283405,0.000000,0.000000,0.250000,0,0);}
.m6c_c00176{transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);}
.m1e_c00176{transform:matrix(0.283989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283989,0.000000,0.000000,0.250000,0,0);}
.m90_c00176{transform:matrix(0.284092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284092,0.000000,0.000000,0.250000,0,0);}
.m6a_c00176{transform:matrix(0.284747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284747,0.000000,0.000000,0.250000,0,0);}
.m6_c00176{transform:matrix(0.284924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284924,0.000000,0.000000,0.250000,0,0);}
.m1a_c00176{transform:matrix(0.285147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285147,0.000000,0.000000,0.250000,0,0);}
.ma4_c00176{transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);}
.m60_c00176{transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);}
.m27_c00176{transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);}
.m25_c00176{transform:matrix(0.287671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287671,0.000000,0.000000,0.250000,0,0);}
.m37_c00176{transform:matrix(0.287778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287778,0.000000,0.000000,0.250000,0,0);}
.m45_c00176{transform:matrix(0.287908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287908,0.000000,0.000000,0.250000,0,0);}
.mab_c00176{transform:matrix(0.288491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288491,0.000000,0.000000,0.250000,0,0);}
.m21_c00176{transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);}
.mb1_c00176{transform:matrix(0.288871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288871,0.000000,0.000000,0.250000,0,0);}
.mba_c00176{transform:matrix(0.288903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288903,0.000000,0.000000,0.250000,0,0);}
.maf_c00176{transform:matrix(0.289203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289203,0.000000,0.000000,0.250000,0,0);}
.ma1_c00176{transform:matrix(0.289488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289488,0.000000,0.000000,0.250000,0,0);}
.m56_c00176{transform:matrix(0.289489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289489,0.000000,0.000000,0.250000,0,0);}
.m4a_c00176{transform:matrix(0.290544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290544,0.000000,0.000000,0.250000,0,0);}
.m81_c00176{transform:matrix(0.290989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290989,0.000000,0.000000,0.250000,0,0);}
.m68_c00176{transform:matrix(0.291208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291208,0.000000,0.000000,0.250000,0,0);}
.ma_c00176{transform:matrix(0.293485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293485,0.000000,0.000000,0.250000,0,0);}
.m26_c00176{transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);}
.m67_c00176{transform:matrix(0.293879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293879,0.000000,0.000000,0.250000,0,0);}
.m2a_c00176{transform:matrix(0.294116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294116,0.000000,0.000000,0.250000,0,0);}
.m84_c00176{transform:matrix(0.294158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294158,0.000000,0.000000,0.250000,0,0);}
.m9d_c00176{transform:matrix(0.294474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294474,0.000000,0.000000,0.250000,0,0);}
.m1f_c00176{transform:matrix(0.295578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295578,0.000000,0.000000,0.250000,0,0);}
.m2b_c00176{transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);}
.m4_c00176{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m92_c00176{transform:matrix(0.297306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297306,0.000000,0.000000,0.250000,0,0);}
.m4f_c00176{transform:matrix(0.297629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297629,0.000000,0.000000,0.250000,0,0);}
.m95_c00176{transform:matrix(0.297703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297703,0.000000,0.000000,0.250000,0,0);}
.m3b_c00176{transform:matrix(0.298155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298155,0.000000,0.000000,0.250000,0,0);}
.m9f_c00176{transform:matrix(0.298283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298283,0.000000,0.000000,0.250000,0,0);}
.m98_c00176{transform:matrix(0.298590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298590,0.000000,0.000000,0.250000,0,0);}
.mb0_c00176{transform:matrix(0.298850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298850,0.000000,0.000000,0.250000,0,0);}
.m86_c00176{transform:matrix(0.298899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298899,0.000000,0.000000,0.250000,0,0);}
.m23_c00176{transform:matrix(0.300117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300117,0.000000,0.000000,0.250000,0,0);}
.m15_c00176{transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);}
.m63_c00176{transform:matrix(0.300870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300870,0.000000,0.000000,0.250000,0,0);}
.m44_c00176{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.mb_c00176{transform:matrix(0.302452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302452,0.000000,0.000000,0.250000,0,0);}
.m5f_c00176{transform:matrix(0.303636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303636,0.000000,0.000000,0.250000,0,0);}
.m24_c00176{transform:matrix(0.304491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304491,0.000000,0.000000,0.250000,0,0);}
.ma0_c00176{transform:matrix(0.305098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305098,0.000000,0.000000,0.250000,0,0);}
.m2f_c00176{transform:matrix(0.305820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305820,0.000000,0.000000,0.250000,0,0);}
.m9_c00176{transform:matrix(0.306240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306240,0.000000,0.000000,0.250000,0,0);}
.m3_c00176{transform:matrix(0.306902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306902,0.000000,0.000000,0.250000,0,0);}
.m7a_c00176{transform:matrix(0.307590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307590,0.000000,0.000000,0.250000,0,0);}
.m6d_c00176{transform:matrix(0.308206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308206,0.000000,0.000000,0.250000,0,0);}
.m8c_c00176{transform:matrix(0.308789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308789,0.000000,0.000000,0.250000,0,0);}
.m94_c00176{transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);}
.m88_c00176{transform:matrix(0.309467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309467,0.000000,0.000000,0.250000,0,0);}
.m79_c00176{transform:matrix(0.309918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309918,0.000000,0.000000,0.250000,0,0);}
.mb5_c00176{transform:matrix(0.310381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310381,0.000000,0.000000,0.250000,0,0);}
.maa_c00176{transform:matrix(0.310629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310629,0.000000,0.000000,0.250000,0,0);}
.mac_c00176{transform:matrix(0.310989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310989,0.000000,0.000000,0.250000,0,0);}
.m39_c00176{transform:matrix(0.311193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311193,0.000000,0.000000,0.250000,0,0);}
.mc_c00176{transform:matrix(0.311458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311458,0.000000,0.000000,0.250000,0,0);}
.m29_c00176{transform:matrix(0.311480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311480,0.000000,0.000000,0.250000,0,0);}
.m50_c00176{transform:matrix(0.311644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311644,0.000000,0.000000,0.250000,0,0);}
.m5d_c00176{transform:matrix(0.311706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311706,0.000000,0.000000,0.250000,0,0);}
.m8d_c00176{transform:matrix(0.311970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311970,0.000000,0.000000,0.250000,0,0);}
.m2c_c00176{transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);}
.m82_c00176{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.m8b_c00176{transform:matrix(0.312758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312758,0.000000,0.000000,0.250000,0,0);}
.m7f_c00176{transform:matrix(0.313419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313419,0.000000,0.000000,0.250000,0,0);}
.m75_c00176{transform:matrix(0.313427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313427,0.000000,0.000000,0.250000,0,0);}
.m74_c00176{transform:matrix(0.313434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313434,0.000000,0.000000,0.250000,0,0);}
.m22_c00176{transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);}
.m52_c00176{transform:matrix(0.314182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314182,0.000000,0.000000,0.250000,0,0);}
.m30_c00176{transform:matrix(0.314235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314235,0.000000,0.000000,0.250000,0,0);}
.m2d_c00176{transform:matrix(0.315061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315061,0.000000,0.000000,0.250000,0,0);}
.m7b_c00176{transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);}
.m6f_c00176{transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);}
.mb3_c00176{transform:matrix(0.317247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317247,0.000000,0.000000,0.250000,0,0);}
.ma2_c00176{transform:matrix(0.317346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317346,0.000000,0.000000,0.250000,0,0);}
.m42_c00176{transform:matrix(0.317369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317369,0.000000,0.000000,0.250000,0,0);}
.m93_c00176{transform:matrix(0.317774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317774,0.000000,0.000000,0.250000,0,0);}
.m5e_c00176{transform:matrix(0.318696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318696,0.000000,0.000000,0.250000,0,0);}
.m5c_c00176{transform:matrix(0.319500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00176{transform:matrix(0.319628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319628,0.000000,0.000000,0.250000,0,0);}
.m40_c00176{transform:matrix(0.321328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321328,0.000000,0.000000,0.250000,0,0);}
.m49_c00176{transform:matrix(0.321354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321354,0.000000,0.000000,0.250000,0,0);}
.m3f_c00176{transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);}
.m4e_c00176{transform:matrix(0.321773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321773,0.000000,0.000000,0.250000,0,0);}
.m9c_c00176{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.m33_c00176{transform:matrix(0.323817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323817,0.000000,0.000000,0.250000,0,0);}
.m3c_c00176{transform:matrix(0.324794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324794,0.000000,0.000000,0.250000,0,0);}
.m7d_c00176{transform:matrix(0.326627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326627,0.000000,0.000000,0.250000,0,0);}
.m70_c00176{transform:matrix(0.327117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327117,0.000000,0.000000,0.250000,0,0);}
.m28_c00176{transform:matrix(0.327316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327316,0.000000,0.000000,0.250000,0,0);}
.m78_c00176{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.m61_c00176{transform:matrix(0.328108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328108,0.000000,0.000000,0.250000,0,0);}
.m5b_c00176{transform:matrix(0.328681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328681,0.000000,0.000000,0.250000,0,0);}
.m7e_c00176{transform:matrix(0.329713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329713,0.000000,0.000000,0.250000,0,0);}
.m3e_c00176{transform:matrix(0.329886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329886,0.000000,0.000000,0.250000,0,0);}
.m31_c00176{transform:matrix(0.330032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330032,0.000000,0.000000,0.250000,0,0);}
.m20_c00176{transform:matrix(0.330203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330203,0.000000,0.000000,0.250000,0,0);}
.m47_c00176{transform:matrix(0.330806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330806,0.000000,0.000000,0.250000,0,0);}
.ma3_c00176{transform:matrix(0.332311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332311,0.000000,0.000000,0.250000,0,0);}
.m96_c00176{transform:matrix(0.333174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333174,0.000000,0.000000,0.250000,0,0);}
.m85_c00176{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m80_c00176{transform:matrix(0.334550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334550,0.000000,0.000000,0.250000,0,0);}
.m76_c00176{transform:matrix(0.334636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334636,0.000000,0.000000,0.250000,0,0);}
.m32_c00176{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);}
.m5_c00176{transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);}
.m1d_c00176{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.mb8_c00176{transform:matrix(0.342434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342434,0.000000,0.000000,0.250000,0,0);}
.m57_c00176{transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);}
.md_c00176{transform:matrix(0.344474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344474,0.000000,0.000000,0.250000,0,0);}
.mae_c00176{transform:matrix(0.345023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345023,0.000000,0.000000,0.250000,0,0);}
.m72_c00176{transform:matrix(0.345117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345117,0.000000,0.000000,0.250000,0,0);}
.m41_c00176{transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);}
.m10_c00176{transform:matrix(0.349110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349110,0.000000,0.000000,0.250000,0,0);}
.m66_c00176{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m18_c00176{transform:matrix(0.350446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350446,0.000000,0.000000,0.250000,0,0);}
.m4c_c00176{transform:matrix(0.350937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350937,0.000000,0.000000,0.250000,0,0);}
.m13_c00176{transform:matrix(0.350982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350982,0.000000,0.000000,0.250000,0,0);}
.m7c_c00176{transform:matrix(0.352218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352218,0.000000,0.000000,0.250000,0,0);}
.m4b_c00176{transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);}
.mb2_c00176{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m54_c00176{transform:matrix(0.357520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357520,0.000000,0.000000,0.250000,0,0);}
.ma6_c00176{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m17_c00176{transform:matrix(0.363931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363931,0.000000,0.000000,0.250000,0,0);}
.ma7_c00176{transform:matrix(0.367381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367381,0.000000,0.000000,0.250000,0,0);}
.m2e_c00176{transform:matrix(0.380993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380993,0.000000,0.000000,0.250000,0,0);}
.m16_c00176{transform:matrix(0.414699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414699,0.000000,0.000000,0.250000,0,0);}
.v0_c00176{vertical-align:0.000000px;}
.lsc_c00176{letter-spacing:-2.744280px;}
.lsf_c00176{letter-spacing:-1.897474px;}
.ls1_c00176{letter-spacing:-1.386000px;}
.ls6_c00176{letter-spacing:-0.313632px;}
.ls2_c00176{letter-spacing:0.000000px;}
.ls5_c00176{letter-spacing:1.246687px;}
.ls0_c00176{letter-spacing:2.493374px;}
.lsd_c00176{letter-spacing:2.509056px;}
.lsb_c00176{letter-spacing:3.112798px;}
.ls9_c00176{letter-spacing:3.559723px;}
.ls8_c00176{letter-spacing:3.702610px;}
.ls4_c00176{letter-spacing:3.920400px;}
.ls3_c00176{letter-spacing:4.375810px;}
.lsa_c00176{letter-spacing:49.896198px;}
.lse_c00176{letter-spacing:59.875398px;}
.ls7_c00176{letter-spacing:61.300998px;}
.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;}
}
.ws1_c00176{word-spacing:-23.161723px;}
.ws2_c00176{word-spacing:-22.095374px;}
.ws0_c00176{word-spacing:-19.602000px;}
.ws4_c00176{word-spacing:0.000000px;}
.ws3_c00176{word-spacing:2.509056px;}
._8_c00176{margin-left:-11.056320px;}
._0_c00176{margin-left:-3.343032px;}
._4_c00176{margin-left:-1.411344px;}
._6_c00176{width:3.387226px;}
._5_c00176{width:5.488560px;}
._2_c00176{width:7.213536px;}
._1_c00176{width:8.703288px;}
._3_c00176{width:27.442800px;}
._7_c00176{width:35.878392px;}
.fc0_c00176{color:transparent;}
.fs3_c00176{font-size:27.720000px;}
.fsa_c00176{font-size:38.808000px;}
.fs0_c00176{font-size:39.600000px;}
.fs7_c00176{font-size:45.144000px;}
.fs9_c00176{font-size:49.896198px;}
.fs1_c00176{font-size:53.064000px;}
.fsb_c00176{font-size:59.875398px;}
.fs5_c00176{font-size:61.300998px;}
.fs8_c00176{font-size:66.528000px;}
.fs6_c00176{font-size:74.052198px;}
.fs4_c00176{font-size:78.408000px;}
.fs2_c00176{font-size:87.516198px;}
.y0_c00176{bottom:0.000000px;}
.y1_c00176{bottom:76.500000px;}
.y23_c00176{bottom:148.530735px;}
.y22_c00176{bottom:178.824735px;}
.y21_c00176{bottom:212.326335px;}
.y20_c00176{bottom:244.397385px;}
.y1f_c00176{bottom:276.473385px;}
.y1e_c00176{bottom:308.554335px;}
.y1d_c00176{bottom:339.917535px;}
.y1c_c00176{bottom:354.886335px;}
.y1b_c00176{bottom:371.988585px;}
.y1a_c00176{bottom:404.777385px;}
.y19_c00176{bottom:436.853385px;}
.y18_c00176{bottom:501.723135px;}
.y17_c00176{bottom:533.799135px;}
.y16_c00176{bottom:566.231535px;}
.y15_c00176{bottom:581.908185px;}
.y14_c00176{bottom:588.328335px;}
.y13_c00176{bottom:598.663935px;}
.y12_c00176{bottom:612.914985px;}
.y11_c00176{bottom:632.160585px;}
.y10_c00176{bottom:683.130735px;}
.yf_c00176{bottom:696.673935px;}
.ye_c00176{bottom:728.744985px;}
.yd_c00176{bottom:753.341535px;}
.yc_c00176{bottom:760.108185px;}
.yb_c00176{bottom:760.825935px;}
.ya_c00176{bottom:761.177385px;}
.y9_c00176{bottom:792.896985px;}
.y8_c00176{bottom:825.690735px;}
.y7_c00176{bottom:858.479535px;}
.y6_c00176{bottom:890.906985px;}
.y5_c00176{bottom:923.339385px;}
.y4_c00176{bottom:1039.525785px;}
.y3_c00176{bottom:1076.234985px;}
.y2_c00176{bottom:1101.187935px;}
.h5_c00176{height:28.911094px;}
.hb_c00176{height:33.230868px;}
.hd_c00176{height:39.877015px;}
.hc_c00176{height:40.475531px;}
.h7_c00176{height:40.826465px;}
.h2_c00176{height:41.301563px;}
.h9_c00176{height:47.083781px;}
.h3_c00176{height:55.344094px;}
.ha_c00176{height:69.386625px;}
.h8_c00176{height:72.678183px;}
.h6_c00176{height:76.953164px;}
.h4_c00176{height:85.892362px;}
.h1_c00176{height:1110.000000px;}
.h0_c00176{height:1263.000000px;}
.w1_c00176{width:733.500000px;}
.w0_c00176{width:892.500000px;}
.x0_c00176{left:0.000000px;}
.x2d_c00176{left:72.863535px;}
.xf_c00176{left:74.076285px;}
.x1_c00176{left:79.500000px;}
.x1a_c00176{left:95.678085px;}
.x61_c00176{left:106.889835px;}
.x55_c00176{left:116.864085px;}
.x21_c00176{left:118.457985px;}
.x1b_c00176{left:125.818635px;}
.x41_c00176{left:127.199685px;}
.x6_c00176{left:128.273835px;}
.x6a_c00176{left:129.704385px;}
.x38_c00176{left:140.099385px;}
.x4d_c00176{left:149.341035px;}
.x7_c00176{left:151.033935px;}
.x10_c00176{left:158.607435px;}
.x42_c00176{left:161.072535px;}
.x39_c00176{left:172.120935px;}
.x66_c00176{left:173.467335px;}
.x2e_c00176{left:175.402785px;}
.x4e_c00176{left:182.803035px;}
.x1c_c00176{left:184.421685px;}
.x6b_c00176{left:185.471085px;}
.x43_c00176{left:194.633535px;}
.x11_c00176{left:196.450185px;}
.x3a_c00176{left:206.384835px;}
.x54_c00176{left:215.987835px;}
.x56_c00176{left:217.195635px;}
.x27_c00176{left:227.036235px;}
.x44_c00176{left:228.902385px;}
.x2f_c00176{left:231.357585px;}
.x3e_c00176{left:238.747935px;}
.x48_c00176{left:239.940885px;}
.x4f_c00176{left:241.519935px;}
.x12_c00176{left:250.528935px;}
.x8_c00176{left:251.652585px;}
.x28_c00176{left:261.285285px;}
.x22_c00176{left:262.458435px;}
.x6c_c00176{left:263.532585px;}
.x50_c00176{left:272.615835px;}
.x13_c00176{left:284.213685px;}
.x9_c00176{left:285.258135px;}
.x33_c00176{left:294.400785px;}
.x14_c00176{left:296.316435px;}
.x1d_c00176{left:307.359885px;}
.x5_c00176{left:317.101485px;}
.x3b_c00176{left:318.235035px;}
.x15_c00176{left:328.535985px;}
.x68_c00176{left:338.945835px;}
.x34_c00176{left:340.148685px;}
.xa_c00176{left:350.731785px;}
.x6d_c00176{left:351.890085px;}
.x5b_c00176{left:359.617035px;}
.x45_c00176{left:361.111935px;}
.x29_c00176{left:362.215785px;}
.x16_c00176{left:373.036485px;}
.x37_c00176{left:379.303185px;}
.x23_c00176{left:384.525435px;}
.x35_c00176{left:394.930335px;}
.x24_c00176{left:407.092485px;}
.x1e_c00176{left:418.036935px;}
.x49_c00176{left:428.199285px;}
.xb_c00176{left:438.737835px;}
.x3c_c00176{left:439.940685px;}
.x40_c00176{left:443.267085px;}
.x36_c00176{left:450.409935px;}
.x6f_c00176{left:451.682085px;}
.x4a_c00176{left:460.834635px;}
.x57_c00176{left:462.349335px;}
.x3f_c00176{left:463.730385px;}
.x2a_c00176{left:471.491985px;}
.xc_c00176{left:472.625535px;}
.x65_c00176{left:473.793735px;}
.x51_c00176{left:483.797685px;}
.x1f_c00176{left:494.360985px;}
.x5f_c00176{left:495.479685px;}
.x2b_c00176{left:506.122185px;}
.x25_c00176{left:507.146835px;}
.x30_c00176{left:517.121085px;}
.x5c_c00176{left:526.412235px;}
.x60_c00176{left:527.966535px;}
.x46_c00176{left:539.702985px;}
.x62_c00176{left:550.093035px;}
.x26_c00176{left:551.122635px;}
.x17_c00176{left:561.492885px;}
.x5d_c00176{left:571.828485px;}
.x3d_c00176{left:572.848185px;}
.x18_c00176{left:582.678885px;}
.x63_c00176{left:594.850935px;}
.x2c_c00176{left:604.755885px;}
.x58_c00176{left:606.023085px;}
.xd_c00176{left:615.829035px;}
.x20_c00176{left:617.363535px;}
.x52_c00176{left:625.491435px;}
.x64_c00176{left:626.847735px;}
.x59_c00176{left:638.742585px;}
.x31_c00176{left:649.162335px;}
.x4_c00176{left:650.889885px;}
.x69_c00176{left:659.656335px;}
.xe_c00176{left:660.725535px;}
.x53_c00176{left:670.041435px;}
.x19_c00176{left:671.853135px;}
.x2_c00176{left:673.046085px;}
.x3_c00176{left:679.664235px;}
.x32_c00176{left:683.030235px;}
.x5a_c00176{left:692.831235px;}
.x4b_c00176{left:694.286535px;}
.x6e_c00176{left:696.360585px;}
.x47_c00176{left:698.652435px;}
.x4c_c00176{left:701.657085px;}
.x67_c00176{left:705.092385px;}
.x5e_c00176{left:715.427985px;}
@media print{
.v0_c00176{vertical-align:0.000000pt;}
.lsc_c00176{letter-spacing:-2.439360pt;}
.lsf_c00176{letter-spacing:-1.686643pt;}
.ls1_c00176{letter-spacing:-1.232000pt;}
.ls6_c00176{letter-spacing:-0.278784pt;}
.ls2_c00176{letter-spacing:0.000000pt;}
.ls5_c00176{letter-spacing:1.108166pt;}
.ls0_c00176{letter-spacing:2.216333pt;}
.lsd_c00176{letter-spacing:2.230272pt;}
.lsb_c00176{letter-spacing:2.766931pt;}
.ls9_c00176{letter-spacing:3.164198pt;}
.ls8_c00176{letter-spacing:3.291209pt;}
.ls4_c00176{letter-spacing:3.484800pt;}
.ls3_c00176{letter-spacing:3.889609pt;}
.lsa_c00176{letter-spacing:44.352176pt;}
.lse_c00176{letter-spacing:53.222576pt;}
.ls7_c00176{letter-spacing:54.489776pt;}
.ws1_c00176{word-spacing:-20.588198pt;}
.ws2_c00176{word-spacing:-19.640333pt;}
.ws0_c00176{word-spacing:-17.424000pt;}
.ws4_c00176{word-spacing:0.000000pt;}
.ws3_c00176{word-spacing:2.230272pt;}
._8_c00176{margin-left:-9.827840pt;}
._0_c00176{margin-left:-2.971584pt;}
._4_c00176{margin-left:-1.254528pt;}
._6_c00176{width:3.010867pt;}
._5_c00176{width:4.878720pt;}
._2_c00176{width:6.412032pt;}
._1_c00176{width:7.736256pt;}
._3_c00176{width:24.393600pt;}
._7_c00176{width:31.891904pt;}
.fs3_c00176{font-size:24.640000pt;}
.fsa_c00176{font-size:34.496000pt;}
.fs0_c00176{font-size:35.200000pt;}
.fs7_c00176{font-size:40.128000pt;}
.fs9_c00176{font-size:44.352176pt;}
.fs1_c00176{font-size:47.168000pt;}
.fsb_c00176{font-size:53.222576pt;}
.fs5_c00176{font-size:54.489776pt;}
.fs8_c00176{font-size:59.136000pt;}
.fs6_c00176{font-size:65.824176pt;}
.fs4_c00176{font-size:69.696000pt;}
.fs2_c00176{font-size:77.792176pt;}
.y0_c00176{bottom:0.000000pt;}
.y1_c00176{bottom:68.000000pt;}
.y23_c00176{bottom:132.027320pt;}
.y22_c00176{bottom:158.955320pt;}
.y21_c00176{bottom:188.734520pt;}
.y20_c00176{bottom:217.242120pt;}
.y1f_c00176{bottom:245.754120pt;}
.y1e_c00176{bottom:274.270520pt;}
.y1d_c00176{bottom:302.148920pt;}
.y1c_c00176{bottom:315.454520pt;}
.y1b_c00176{bottom:330.656520pt;}
.y1a_c00176{bottom:359.802120pt;}
.y19_c00176{bottom:388.314120pt;}
.y18_c00176{bottom:445.976120pt;}
.y17_c00176{bottom:474.488120pt;}
.y16_c00176{bottom:503.316920pt;}
.y15_c00176{bottom:517.251720pt;}
.y14_c00176{bottom:522.958520pt;}
.y13_c00176{bottom:532.145720pt;}
.y12_c00176{bottom:544.813320pt;}
.y11_c00176{bottom:561.920520pt;}
.y10_c00176{bottom:607.227320pt;}
.yf_c00176{bottom:619.265720pt;}
.ye_c00176{bottom:647.773320pt;}
.yd_c00176{bottom:669.636920pt;}
.yc_c00176{bottom:675.651720pt;}
.yb_c00176{bottom:676.289720pt;}
.ya_c00176{bottom:676.602120pt;}
.y9_c00176{bottom:704.797320pt;}
.y8_c00176{bottom:733.947320pt;}
.y7_c00176{bottom:763.092920pt;}
.y6_c00176{bottom:791.917320pt;}
.y5_c00176{bottom:820.746120pt;}
.y4_c00176{bottom:924.022920pt;}
.y3_c00176{bottom:956.653320pt;}
.y2_c00176{bottom:978.833720pt;}
.h5_c00176{height:25.698750pt;}
.hb_c00176{height:29.538549pt;}
.hd_c00176{height:35.446236pt;}
.hc_c00176{height:35.978250pt;}
.h7_c00176{height:36.290191pt;}
.h2_c00176{height:36.712500pt;}
.h9_c00176{height:41.852250pt;}
.h3_c00176{height:49.194750pt;}
.ha_c00176{height:61.677000pt;}
.h8_c00176{height:64.602829pt;}
.h6_c00176{height:68.402813pt;}
.h4_c00176{height:76.348766pt;}
.h1_c00176{height:986.666667pt;}
.h0_c00176{height:1122.666667pt;}
.w1_c00176{width:652.000000pt;}
.w0_c00176{width:793.333333pt;}
.x0_c00176{left:0.000000pt;}
.x2d_c00176{left:64.767587pt;}
.xf_c00176{left:65.845587pt;}
.x1_c00176{left:70.666667pt;}
.x1a_c00176{left:85.047187pt;}
.x61_c00176{left:95.013187pt;}
.x55_c00176{left:103.879187pt;}
.x21_c00176{left:105.295987pt;}
.x1b_c00176{left:111.838787pt;}
.x41_c00176{left:113.066387pt;}
.x6_c00176{left:114.021187pt;}
.x6a_c00176{left:115.292787pt;}
.x38_c00176{left:124.532787pt;}
.x4d_c00176{left:132.747587pt;}
.x7_c00176{left:134.252387pt;}
.x10_c00176{left:140.984387pt;}
.x42_c00176{left:143.175587pt;}
.x39_c00176{left:152.996387pt;}
.x66_c00176{left:154.193187pt;}
.x2e_c00176{left:155.913587pt;}
.x4e_c00176{left:162.491587pt;}
.x1c_c00176{left:163.930387pt;}
.x6b_c00176{left:164.863187pt;}
.x43_c00176{left:173.007587pt;}
.x11_c00176{left:174.622387pt;}
.x3a_c00176{left:183.453187pt;}
.x54_c00176{left:191.989187pt;}
.x56_c00176{left:193.062787pt;}
.x27_c00176{left:201.809987pt;}
.x44_c00176{left:203.468787pt;}
.x2f_c00176{left:205.651187pt;}
.x3e_c00176{left:212.220387pt;}
.x48_c00176{left:213.280787pt;}
.x4f_c00176{left:214.684387pt;}
.x12_c00176{left:222.692387pt;}
.x8_c00176{left:223.691187pt;}
.x28_c00176{left:232.253587pt;}
.x22_c00176{left:233.296387pt;}
.x6c_c00176{left:234.251187pt;}
.x50_c00176{left:242.325187pt;}
.x13_c00176{left:252.634387pt;}
.x9_c00176{left:253.562787pt;}
.x33_c00176{left:261.689587pt;}
.x14_c00176{left:263.392387pt;}
.x1d_c00176{left:273.208787pt;}
.x5_c00176{left:281.867987pt;}
.x3b_c00176{left:282.875587pt;}
.x15_c00176{left:292.031987pt;}
.x68_c00176{left:301.285187pt;}
.x34_c00176{left:302.354387pt;}
.xa_c00176{left:311.761587pt;}
.x6d_c00176{left:312.791187pt;}
.x5b_c00176{left:319.659587pt;}
.x45_c00176{left:320.988387pt;}
.x29_c00176{left:321.969587pt;}
.x16_c00176{left:331.587987pt;}
.x37_c00176{left:337.158387pt;}
.x23_c00176{left:341.800387pt;}
.x35_c00176{left:351.049187pt;}
.x24_c00176{left:361.859987pt;}
.x1e_c00176{left:371.588387pt;}
.x49_c00176{left:380.621587pt;}
.xb_c00176{left:389.989187pt;}
.x3c_c00176{left:391.058387pt;}
.x40_c00176{left:394.015187pt;}
.x36_c00176{left:400.364387pt;}
.x6f_c00176{left:401.495187pt;}
.x4a_c00176{left:409.630787pt;}
.x57_c00176{left:410.977187pt;}
.x3f_c00176{left:412.204787pt;}
.x2a_c00176{left:419.103987pt;}
.xc_c00176{left:420.111587pt;}
.x65_c00176{left:421.149987pt;}
.x51_c00176{left:430.042387pt;}
.x1f_c00176{left:439.431987pt;}
.x5f_c00176{left:440.426387pt;}
.x2b_c00176{left:449.886387pt;}
.x25_c00176{left:450.797187pt;}
.x30_c00176{left:459.663187pt;}
.x5c_c00176{left:467.921987pt;}
.x60_c00176{left:469.303587pt;}
.x46_c00176{left:479.735987pt;}
.x62_c00176{left:488.971587pt;}
.x26_c00176{left:489.886787pt;}
.x17_c00176{left:499.104787pt;}
.x5d_c00176{left:508.291987pt;}
.x3d_c00176{left:509.198387pt;}
.x18_c00176{left:517.936787pt;}
.x63_c00176{left:528.756387pt;}
.x2c_c00176{left:537.560787pt;}
.x58_c00176{left:538.687187pt;}
.xd_c00176{left:547.403587pt;}
.x20_c00176{left:548.767587pt;}
.x52_c00176{left:555.992387pt;}
.x64_c00176{left:557.197987pt;}
.x59_c00176{left:567.771187pt;}
.x31_c00176{left:577.033187pt;}
.x4_c00176{left:578.568787pt;}
.x69_c00176{left:586.361187pt;}
.xe_c00176{left:587.311587pt;}
.x53_c00176{left:595.592387pt;}
.x19_c00176{left:597.202787pt;}
.x2_c00176{left:598.263187pt;}
.x3_c00176{left:604.145987pt;}
.x32_c00176{left:607.137987pt;}
.x5a_c00176{left:615.849987pt;}
.x4b_c00176{left:617.143587pt;}
.x6e_c00176{left:618.987187pt;}
.x47_c00176{left:621.024387pt;}
.x4c_c00176{left:623.695187pt;}
.x67_c00176{left:626.748787pt;}
.x5e_c00176{left:635.935987pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4fab70e73b546c1fcd1ef42c.woff2')format("woff");}.ff1_c00177{font-family:ff1_c00177;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00177;src:url('chunks/assets/font_d3ed0db326181ee2c96cec44.woff2')format("woff");}.ff2_c00177{font-family:ff2_c00177;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00177;src:url('chunks/assets/font_e39e884ce9a99aeead40aad3.woff2')format("woff");}.ff3_c00177{font-family:ff3_c00177;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4f_c00177{transform:matrix(0.139063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139063,0.000000,0.000000,0.250000,0,0);}
.m50_c00177{transform:matrix(0.156249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156249,0.000000,0.000000,0.250000,0,0);}
.m61_c00177{transform:matrix(0.168605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168605,0.000000,0.000000,0.250000,0,0);}
.mbd_c00177{transform:matrix(0.184889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184889,0.000000,0.000000,0.250000,0,0);}
.m27_c00177{transform:matrix(0.208702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208702,0.000000,0.000000,0.250000,0,0);}
.m60_c00177{transform:matrix(0.209378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209378,0.000000,0.000000,0.250000,0,0);}
.m3b_c00177{transform:matrix(0.233147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233147,0.000000,0.000000,0.250000,0,0);}
.m7e_c00177{transform:matrix(0.234251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234251,0.000000,0.000000,0.250000,0,0);}
.m15_c00177{transform:matrix(0.236017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236017,0.000000,0.000000,0.250000,0,0);}
.mae_c00177{transform:matrix(0.241510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241510,0.000000,0.000000,0.250000,0,0);}
.m66_c00177{transform:matrix(0.248170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248170,0.000000,0.000000,0.250000,0,0);}
.m72_c00177{transform:matrix(0.249935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249935,0.000000,0.000000,0.250000,0,0);}
.m1_c00177{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m20_c00177{transform:matrix(0.250440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250440,0.000000,0.000000,0.250000,0,0);}
.mb8_c00177{transform:matrix(0.250825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250825,0.000000,0.000000,0.250000,0,0);}
.m3d_c00177{transform:matrix(0.251385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251385,0.000000,0.000000,0.250000,0,0);}
.m5a_c00177{transform:matrix(0.252624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252624,0.000000,0.000000,0.250000,0,0);}
.m98_c00177{transform:matrix(0.252832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252832,0.000000,0.000000,0.250000,0,0);}
.m87_c00177{transform:matrix(0.253053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253053,0.000000,0.000000,0.250000,0,0);}
.md_c00177{transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);}
.m55_c00177{transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);}
.m91_c00177{transform:matrix(0.253801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253801,0.000000,0.000000,0.250000,0,0);}
.m7d_c00177{transform:matrix(0.253837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253837,0.000000,0.000000,0.250000,0,0);}
.m88_c00177{transform:matrix(0.254614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254614,0.000000,0.000000,0.250000,0,0);}
.ma7_c00177{transform:matrix(0.255317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255317,0.000000,0.000000,0.250000,0,0);}
.m36_c00177{transform:matrix(0.255567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255567,0.000000,0.000000,0.250000,0,0);}
.m1c_c00177{transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);}
.mb5_c00177{transform:matrix(0.256036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256036,0.000000,0.000000,0.250000,0,0);}
.m26_c00177{transform:matrix(0.256061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256061,0.000000,0.000000,0.250000,0,0);}
.m49_c00177{transform:matrix(0.256110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256110,0.000000,0.000000,0.250000,0,0);}
.mac_c00177{transform:matrix(0.256348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256348,0.000000,0.000000,0.250000,0,0);}
.m19_c00177{transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);}
.m4e_c00177{transform:matrix(0.257310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257310,0.000000,0.000000,0.250000,0,0);}
.m12_c00177{transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);}
.m6d_c00177{transform:matrix(0.258186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258186,0.000000,0.000000,0.250000,0,0);}
.m37_c00177{transform:matrix(0.259026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259026,0.000000,0.000000,0.250000,0,0);}
.m31_c00177{transform:matrix(0.259376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259376,0.000000,0.000000,0.250000,0,0);}
.maf_c00177{transform:matrix(0.259530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259530,0.000000,0.000000,0.250000,0,0);}
.ma8_c00177{transform:matrix(0.259685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259685,0.000000,0.000000,0.250000,0,0);}
.m28_c00177{transform:matrix(0.259955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259955,0.000000,0.000000,0.250000,0,0);}
.m5_c00177{transform:matrix(0.260353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260353,0.000000,0.000000,0.250000,0,0);}
.m42_c00177{transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);}
.m8e_c00177{transform:matrix(0.261055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261055,0.000000,0.000000,0.250000,0,0);}
.m57_c00177{transform:matrix(0.261247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261247,0.000000,0.000000,0.250000,0,0);}
.m4_c00177{transform:matrix(0.261958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261958,0.000000,0.000000,0.250000,0,0);}
.m0_c00177{transform:matrix(0.263161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263161,0.000000,0.000000,0.250000,0,0);}
.m85_c00177{transform:matrix(0.264731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264731,0.000000,0.000000,0.250000,0,0);}
.m24_c00177{transform:matrix(0.265003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265003,0.000000,0.000000,0.250000,0,0);}
.m62_c00177{transform:matrix(0.265689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265689,0.000000,0.000000,0.250000,0,0);}
.m9_c00177{transform:matrix(0.265766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265766,0.000000,0.000000,0.250000,0,0);}
.m17_c00177{transform:matrix(0.265974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265974,0.000000,0.000000,0.250000,0,0);}
.m41_c00177{transform:matrix(0.266163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266163,0.000000,0.000000,0.250000,0,0);}
.me_c00177{transform:matrix(0.266331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266331,0.000000,0.000000,0.250000,0,0);}
.m1a_c00177{transform:matrix(0.267754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267754,0.000000,0.000000,0.250000,0,0);}
.m2_c00177{transform:matrix(0.268606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268606,0.000000,0.000000,0.250000,0,0);}
.m67_c00177{transform:matrix(0.268640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268640,0.000000,0.000000,0.250000,0,0);}
.mb0_c00177{transform:matrix(0.269278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269278,0.000000,0.000000,0.250000,0,0);}
.m96_c00177{transform:matrix(0.269445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269445,0.000000,0.000000,0.250000,0,0);}
.m52_c00177{transform:matrix(0.269483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269483,0.000000,0.000000,0.250000,0,0);}
.m81_c00177{transform:matrix(0.269735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269735,0.000000,0.000000,0.250000,0,0);}
.mb3_c00177{transform:matrix(0.269893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269893,0.000000,0.000000,0.250000,0,0);}
.m14_c00177{transform:matrix(0.269982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269982,0.000000,0.000000,0.250000,0,0);}
.ma1_c00177{transform:matrix(0.269991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269991,0.000000,0.000000,0.250000,0,0);}
.m73_c00177{transform:matrix(0.270269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270269,0.000000,0.000000,0.250000,0,0);}
.m4d_c00177{transform:matrix(0.270286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270286,0.000000,0.000000,0.250000,0,0);}
.m45_c00177{transform:matrix(0.271079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271079,0.000000,0.000000,0.250000,0,0);}
.m80_c00177{transform:matrix(0.271190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271190,0.000000,0.000000,0.250000,0,0);}
.mbb_c00177{transform:matrix(0.271789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271789,0.000000,0.000000,0.250000,0,0);}
.m2a_c00177{transform:matrix(0.272535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272535,0.000000,0.000000,0.250000,0,0);}
.maa_c00177{transform:matrix(0.273059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273059,0.000000,0.000000,0.250000,0,0);}
.m3f_c00177{transform:matrix(0.273169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273169,0.000000,0.000000,0.250000,0,0);}
.mc2_c00177{transform:matrix(0.274757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274757,0.000000,0.000000,0.250000,0,0);}
.m2d_c00177{transform:matrix(0.274968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274968,0.000000,0.000000,0.250000,0,0);}
.m89_c00177{transform:matrix(0.275278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275278,0.000000,0.000000,0.250000,0,0);}
.m8a_c00177{transform:matrix(0.276127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276127,0.000000,0.000000,0.250000,0,0);}
.ma3_c00177{transform:matrix(0.276131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276131,0.000000,0.000000,0.250000,0,0);}
.m3a_c00177{transform:matrix(0.276366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276366,0.000000,0.000000,0.250000,0,0);}
.m9d_c00177{transform:matrix(0.276687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276687,0.000000,0.000000,0.250000,0,0);}
.m11_c00177{transform:matrix(0.277107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277107,0.000000,0.000000,0.250000,0,0);}
.m6e_c00177{transform:matrix(0.277222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277222,0.000000,0.000000,0.250000,0,0);}
.m95_c00177{transform:matrix(0.277316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277316,0.000000,0.000000,0.250000,0,0);}
.m9e_c00177{transform:matrix(0.277414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277414,0.000000,0.000000,0.250000,0,0);}
.m25_c00177{transform:matrix(0.277472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277472,0.000000,0.000000,0.250000,0,0);}
.m8b_c00177{transform:matrix(0.277619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277619,0.000000,0.000000,0.250000,0,0);}
.m18_c00177{transform:matrix(0.277968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277968,0.000000,0.000000,0.250000,0,0);}
.m69_c00177{transform:matrix(0.278495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278495,0.000000,0.000000,0.250000,0,0);}
.m39_c00177{transform:matrix(0.278561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278561,0.000000,0.000000,0.250000,0,0);}
.m63_c00177{transform:matrix(0.278680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278680,0.000000,0.000000,0.250000,0,0);}
.ma5_c00177{transform:matrix(0.278914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278914,0.000000,0.000000,0.250000,0,0);}
.m47_c00177{transform:matrix(0.279464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279464,0.000000,0.000000,0.250000,0,0);}
.mbe_c00177{transform:matrix(0.279484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279484,0.000000,0.000000,0.250000,0,0);}
.mb2_c00177{transform:matrix(0.279701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279701,0.000000,0.000000,0.250000,0,0);}
.m7b_c00177{transform:matrix(0.280468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280468,0.000000,0.000000,0.250000,0,0);}
.m1b_c00177{transform:matrix(0.280504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280504,0.000000,0.000000,0.250000,0,0);}
.mc1_c00177{transform:matrix(0.280598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280598,0.000000,0.000000,0.250000,0,0);}
.m2c_c00177{transform:matrix(0.281189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281189,0.000000,0.000000,0.250000,0,0);}
.m59_c00177{transform:matrix(0.281615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281615,0.000000,0.000000,0.250000,0,0);}
.m48_c00177{transform:matrix(0.281704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281704,0.000000,0.000000,0.250000,0,0);}
.m70_c00177{transform:matrix(0.281715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281715,0.000000,0.000000,0.250000,0,0);}
.m76_c00177{transform:matrix(0.281940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281940,0.000000,0.000000,0.250000,0,0);}
.m7c_c00177{transform:matrix(0.282263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282263,0.000000,0.000000,0.250000,0,0);}
.m8d_c00177{transform:matrix(0.282317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282317,0.000000,0.000000,0.250000,0,0);}
.m23_c00177{transform:matrix(0.282354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282354,0.000000,0.000000,0.250000,0,0);}
.m1f_c00177{transform:matrix(0.283007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283007,0.000000,0.000000,0.250000,0,0);}
.m2b_c00177{transform:matrix(0.284150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284150,0.000000,0.000000,0.250000,0,0);}
.m40_c00177{transform:matrix(0.284467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284467,0.000000,0.000000,0.250000,0,0);}
.mf_c00177{transform:matrix(0.285288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285288,0.000000,0.000000,0.250000,0,0);}
.m6b_c00177{transform:matrix(0.285325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285325,0.000000,0.000000,0.250000,0,0);}
.m8_c00177{transform:matrix(0.285567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285567,0.000000,0.000000,0.250000,0,0);}
.m7f_c00177{transform:matrix(0.285908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285908,0.000000,0.000000,0.250000,0,0);}
.ma2_c00177{transform:matrix(0.286459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286459,0.000000,0.000000,0.250000,0,0);}
.m8f_c00177{transform:matrix(0.286519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286519,0.000000,0.000000,0.250000,0,0);}
.m1e_c00177{transform:matrix(0.287083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287083,0.000000,0.000000,0.250000,0,0);}
.mb6_c00177{transform:matrix(0.287800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287800,0.000000,0.000000,0.250000,0,0);}
.mc_c00177{transform:matrix(0.287887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287887,0.000000,0.000000,0.250000,0,0);}
.m3_c00177{transform:matrix(0.288298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288298,0.000000,0.000000,0.250000,0,0);}
.m90_c00177{transform:matrix(0.289604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289604,0.000000,0.000000,0.250000,0,0);}
.m65_c00177{transform:matrix(0.289712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289712,0.000000,0.000000,0.250000,0,0);}
.m68_c00177{transform:matrix(0.290667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290667,0.000000,0.000000,0.250000,0,0);}
.m94_c00177{transform:matrix(0.290710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290710,0.000000,0.000000,0.250000,0,0);}
.m84_c00177{transform:matrix(0.291206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291206,0.000000,0.000000,0.250000,0,0);}
.m64_c00177{transform:matrix(0.291781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291781,0.000000,0.000000,0.250000,0,0);}
.m4c_c00177{transform:matrix(0.291881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291881,0.000000,0.000000,0.250000,0,0);}
.mbc_c00177{transform:matrix(0.292962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292962,0.000000,0.000000,0.250000,0,0);}
.m74_c00177{transform:matrix(0.293033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293033,0.000000,0.000000,0.250000,0,0);}
.m10_c00177{transform:matrix(0.293261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293261,0.000000,0.000000,0.250000,0,0);}
.m56_c00177{transform:matrix(0.293270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293270,0.000000,0.000000,0.250000,0,0);}
.m97_c00177{transform:matrix(0.293592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293592,0.000000,0.000000,0.250000,0,0);}
.m86_c00177{transform:matrix(0.293855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293855,0.000000,0.000000,0.250000,0,0);}
.m78_c00177{transform:matrix(0.294200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294200,0.000000,0.000000,0.250000,0,0);}
.mba_c00177{transform:matrix(0.295526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295526,0.000000,0.000000,0.250000,0,0);}
.m54_c00177{transform:matrix(0.295755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295755,0.000000,0.000000,0.250000,0,0);}
.mad_c00177{transform:matrix(0.295808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295808,0.000000,0.000000,0.250000,0,0);}
.m30_c00177{transform:matrix(0.296222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296222,0.000000,0.000000,0.250000,0,0);}
.m3c_c00177{transform:matrix(0.296264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296264,0.000000,0.000000,0.250000,0,0);}
.m53_c00177{transform:matrix(0.296338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296338,0.000000,0.000000,0.250000,0,0);}
.m7_c00177{transform:matrix(0.296412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296412,0.000000,0.000000,0.250000,0,0);}
.m6_c00177{transform:matrix(0.296916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296916,0.000000,0.000000,0.250000,0,0);}
.m6f_c00177{transform:matrix(0.297551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297551,0.000000,0.000000,0.250000,0,0);}
.m5d_c00177{transform:matrix(0.298413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298413,0.000000,0.000000,0.250000,0,0);}
.m35_c00177{transform:matrix(0.300514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300514,0.000000,0.000000,0.250000,0,0);}
.mc4_c00177{transform:matrix(0.301133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301133,0.000000,0.000000,0.250000,0,0);}
.m7a_c00177{transform:matrix(0.301315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301315,0.000000,0.000000,0.250000,0,0);}
.ma4_c00177{transform:matrix(0.301535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301535,0.000000,0.000000,0.250000,0,0);}
.m71_c00177{transform:matrix(0.302291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302291,0.000000,0.000000,0.250000,0,0);}
.m82_c00177{transform:matrix(0.303168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303168,0.000000,0.000000,0.250000,0,0);}
.m22_c00177{transform:matrix(0.305044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305044,0.000000,0.000000,0.250000,0,0);}
.m21_c00177{transform:matrix(0.305087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305087,0.000000,0.000000,0.250000,0,0);}
.m2f_c00177{transform:matrix(0.306065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306065,0.000000,0.000000,0.250000,0,0);}
.mab_c00177{transform:matrix(0.306480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306480,0.000000,0.000000,0.250000,0,0);}
.mc3_c00177{transform:matrix(0.306505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306505,0.000000,0.000000,0.250000,0,0);}
.m3e_c00177{transform:matrix(0.309811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309811,0.000000,0.000000,0.250000,0,0);}
.m29_c00177{transform:matrix(0.310050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310050,0.000000,0.000000,0.250000,0,0);}
.m9c_c00177{transform:matrix(0.310853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310853,0.000000,0.000000,0.250000,0,0);}
.m83_c00177{transform:matrix(0.310880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310880,0.000000,0.000000,0.250000,0,0);}
.mb_c00177{transform:matrix(0.311443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311443,0.000000,0.000000,0.250000,0,0);}
.mb9_c00177{transform:matrix(0.312393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312393,0.000000,0.000000,0.250000,0,0);}
.mb4_c00177{transform:matrix(0.312649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312649,0.000000,0.000000,0.250000,0,0);}
.m93_c00177{transform:matrix(0.312727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312727,0.000000,0.000000,0.250000,0,0);}
.m58_c00177{transform:matrix(0.313577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313577,0.000000,0.000000,0.250000,0,0);}
.m77_c00177{transform:matrix(0.314374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314374,0.000000,0.000000,0.250000,0,0);}
.m5c_c00177{transform:matrix(0.315539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315539,0.000000,0.000000,0.250000,0,0);}
.mc0_c00177{transform:matrix(0.316073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316073,0.000000,0.000000,0.250000,0,0);}
.mb1_c00177{transform:matrix(0.316596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316596,0.000000,0.000000,0.250000,0,0);}
.m75_c00177{transform:matrix(0.316611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316611,0.000000,0.000000,0.250000,0,0);}
.m92_c00177{transform:matrix(0.316843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316843,0.000000,0.000000,0.250000,0,0);}
.m79_c00177{transform:matrix(0.317423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317423,0.000000,0.000000,0.250000,0,0);}
.m1d_c00177{transform:matrix(0.317544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317544,0.000000,0.000000,0.250000,0,0);}
.m2e_c00177{transform:matrix(0.317874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317874,0.000000,0.000000,0.250000,0,0);}
.m4b_c00177{transform:matrix(0.317956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317956,0.000000,0.000000,0.250000,0,0);}
.m43_c00177{transform:matrix(0.319440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319440,0.000000,0.000000,0.250000,0,0);}
.m44_c00177{transform:matrix(0.319585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319585,0.000000,0.000000,0.250000,0,0);}
.ma6_c00177{transform:matrix(0.319863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319863,0.000000,0.000000,0.250000,0,0);}
.m51_c00177{transform:matrix(0.320282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320282,0.000000,0.000000,0.250000,0,0);}
.m6c_c00177{transform:matrix(0.320583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320583,0.000000,0.000000,0.250000,0,0);}
.m99_c00177{transform:matrix(0.320666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320666,0.000000,0.000000,0.250000,0,0);}
.m13_c00177{transform:matrix(0.321647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321647,0.000000,0.000000,0.250000,0,0);}
.m9a_c00177{transform:matrix(0.322571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322571,0.000000,0.000000,0.250000,0,0);}
.mb7_c00177{transform:matrix(0.323201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323201,0.000000,0.000000,0.250000,0,0);}
.mbf_c00177{transform:matrix(0.324306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324306,0.000000,0.000000,0.250000,0,0);}
.m33_c00177{transform:matrix(0.324348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324348,0.000000,0.000000,0.250000,0,0);}
.m46_c00177{transform:matrix(0.325457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325457,0.000000,0.000000,0.250000,0,0);}
.m5f_c00177{transform:matrix(0.325770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325770,0.000000,0.000000,0.250000,0,0);}
.m6a_c00177{transform:matrix(0.326105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326105,0.000000,0.000000,0.250000,0,0);}
.m5b_c00177{transform:matrix(0.331034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331034,0.000000,0.000000,0.250000,0,0);}
.ma9_c00177{transform:matrix(0.331537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331537,0.000000,0.000000,0.250000,0,0);}
.m9b_c00177{transform:matrix(0.333044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333044,0.000000,0.000000,0.250000,0,0);}
.m16_c00177{transform:matrix(0.339443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339443,0.000000,0.000000,0.250000,0,0);}
.ma0_c00177{transform:matrix(0.341545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341545,0.000000,0.000000,0.250000,0,0);}
.m4a_c00177{transform:matrix(0.343445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343445,0.000000,0.000000,0.250000,0,0);}
.m9f_c00177{transform:matrix(0.345680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345680,0.000000,0.000000,0.250000,0,0);}
.m32_c00177{transform:matrix(0.347168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347168,0.000000,0.000000,0.250000,0,0);}
.m38_c00177{transform:matrix(0.358145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358145,0.000000,0.000000,0.250000,0,0);}
.m5e_c00177{transform:matrix(0.358891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358891,0.000000,0.000000,0.250000,0,0);}
.ma_c00177{transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);}
.m34_c00177{transform:matrix(0.369365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369365,0.000000,0.000000,0.250000,0,0);}
.m8c_c00177{transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);}
.v0_c00177{vertical-align:0.000000px;}
.ls6_c00177{letter-spacing:-3.035340px;}
.ls8_c00177{letter-spacing:-2.855167px;}
.ls11_c00177{letter-spacing:-2.120981px;}
.ls9_c00177{letter-spacing:-2.104666px;}
.ls14_c00177{letter-spacing:-1.434517px;}
.ls4_c00177{letter-spacing:0.000000px;}
.lsb_c00177{letter-spacing:0.416039px;}
.ls12_c00177{letter-spacing:0.717871px;}
.ls16_c00177{letter-spacing:0.840235px;}
.ls2_c00177{letter-spacing:1.223643px;}
.ls0_c00177{letter-spacing:1.843622px;}
.ls1_c00177{letter-spacing:2.341237px;}
.lsf_c00177{letter-spacing:2.602281px;}
.ls5_c00177{letter-spacing:3.091738px;}
.ls7_c00177{letter-spacing:3.247200px;}
.lsa_c00177{letter-spacing:3.623400px;}
.ls13_c00177{letter-spacing:3.643200px;}
.lsc_c00177{letter-spacing:3.801610px;}
.ls15_c00177{letter-spacing:3.874869px;}
.ls10_c00177{letter-spacing:4.029310px;}
.ls3_c00177{letter-spacing:4.078810px;}
.lsd_c00177{letter-spacing:57.024198px;}
.lse_c00177{letter-spacing:61.300998px;}
.sc__c00177{text-shadow:none;}
.sc0_c00177{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00177{-webkit-text-stroke:0px transparent;}
.sc0_c00177{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00177{word-spacing:-20.394050px;}
.ws1_c00177{word-spacing:0.000000px;}
._6_c00177{margin-left:-18.631800px;}
._3_c00177{margin-left:-16.559978px;}
._4_c00177{margin-left:-2.737221px;}
._2_c00177{margin-left:-1.386717px;}
._5_c00177{width:18.702824px;}
._0_c00177{width:27.833866px;}
._1_c00177{width:34.996189px;}
.fc0_c00177{color:transparent;}
.fs1_c00177{font-size:22.176000px;}
.fs13_c00177{font-size:27.720000px;}
.fs11_c00177{font-size:33.660000px;}
.fsc_c00177{font-size:38.808000px;}
.fsf_c00177{font-size:39.600000px;}
.fse_c00177{font-size:40.986198px;}
.fsb_c00177{font-size:42.174000px;}
.fs12_c00177{font-size:45.144000px;}
.fs7_c00177{font-size:57.024198px;}
.fs8_c00177{font-size:61.300998px;}
.fs3_c00177{font-size:64.944000px;}
.fs5_c00177{font-size:72.468000px;}
.fsd_c00177{font-size:72.864000px;}
.fs4_c00177{font-size:74.844000px;}
.fs6_c00177{font-size:76.032198px;}
.fsa_c00177{font-size:78.408000px;}
.fs10_c00177{font-size:79.200000px;}
.fs9_c00177{font-size:80.586198px;}
.fs0_c00177{font-size:81.576198px;}
.fs2_c00177{font-size:86.724000px;}
.y0_c00177{bottom:0.000000px;}
.y21_c00177{bottom:21.295935px;}
.y20_c00177{bottom:24.147135px;}
.y1_c00177{bottom:76.500000px;}
.y1f_c00177{bottom:115.380585px;}
.y1e_c00177{bottom:120.731535px;}
.y1d_c00177{bottom:178.111935px;}
.y1c_c00177{bottom:209.475135px;}
.y1b_c00177{bottom:240.481935px;}
.y1a_c00177{bottom:272.914335px;}
.y19_c00177{bottom:304.277535px;}
.y18_c00177{bottom:335.992185px;}
.y17_c00177{bottom:367.360335px;}
.y16_c00177{bottom:399.436335px;}
.y15_c00177{bottom:431.155935px;}
.y22_c00177{bottom:465.721785px;}
.y14_c00177{bottom:491.738985px;}
.y12_c00177{bottom:494.595135px;}
.y13_c00177{bottom:498.159135px;}
.y11_c00177{bottom:525.953385px;}
.y10_c00177{bottom:558.034335px;}
.yf_c00177{bottom:589.041135px;}
.ye_c00177{bottom:619.686585px;}
.yd_c00177{bottom:651.411135px;}
.yc_c00177{bottom:683.482185px;}
.yb_c00177{bottom:714.845385px;}
.ya_c00177{bottom:746.569935px;}
.y9_c00177{bottom:778.640985px;}
.y8_c00177{bottom:811.073385px;}
.y7_c00177{bottom:842.085135px;}
.y6_c00177{bottom:873.799785px;}
.y5_c00177{bottom:905.875785px;}
.y4_c00177{bottom:937.956735px;}
.y3_c00177{bottom:1034.892585px;}
.y2_c00177{bottom:1073.745135px;}
.h3_c00177{height:23.128875px;}
.h14_c00177{height:28.911094px;}
.h12_c00177{height:33.035449px;}
.h9_c00177{height:37.978116px;}
.h10_c00177{height:40.225712px;}
.he_c00177{height:40.475531px;}
.ha_c00177{height:40.826465px;}
.hd_c00177{height:41.391475px;}
.h13_c00177{height:47.083781px;}
.h5_c00177{height:63.738984px;}
.h7_c00177{height:71.123379px;}
.hf_c00177{height:71.512031px;}
.h6_c00177{height:73.455293px;}
.h8_c00177{height:74.621444px;}
.hc_c00177{height:76.953164px;}
.hb_c00177{height:79.090946px;}
.h2_c00177{height:80.062577px;}
.h11_c00177{height:82.603125px;}
.h4_c00177{height:85.114863px;}
.h1_c00177{height:1110.000000px;}
.h0_c00177{height:1263.000000px;}
.w1_c00177{width:775.500000px;}
.w0_c00177{width:892.500000px;}
.x0_c00177{left:0.000000px;}
.x1_c00177{left:58.500000px;}
.x40_c00177{left:85.676235px;}
.x4_c00177{left:86.686035px;}
.x54_c00177{left:87.913635px;}
.x29_c00177{left:119.054085px;}
.x15_c00177{left:120.143085px;}
.x39_c00177{left:129.869835px;}
.x1d_c00177{left:140.373735px;}
.xf_c00177{left:141.631035px;}
.x33_c00177{left:152.951685px;}
.x45_c00177{left:162.109185px;}
.x5c_c00177{left:163.242735px;}
.x5_c00177{left:164.386185px;}
.x10_c00177{left:173.860485px;}
.x1e_c00177{left:175.687035px;}
.x3b_c00177{left:185.468235px;}
.x4a_c00177{left:195.249435px;}
.x57_c00177{left:196.452285px;}
.x2a_c00177{left:207.203685px;}
.x3c_c00177{left:218.558985px;}
.x4e_c00177{left:228.226335px;}
.x1f_c00177{left:229.795485px;}
.x11_c00177{left:241.294335px;}
.x2b_c00177{left:251.525985px;}
.x50_c00177{left:263.148585px;}
.x16_c00177{left:264.197985px;}
.x6_c00177{left:274.558335px;}
.x26_c00177{left:285.077085px;}
.x53_c00177{left:286.314585px;}
.x4b_c00177{left:295.769085px;}
.x59_c00177{left:296.892735px;}
.x7_c00177{left:307.079835px;}
.x51_c00177{left:308.307435px;}
.x3d_c00177{left:318.791535px;}
.x3_c00177{left:321.019035px;}
.x5d_c00177{left:329.320185px;}
.x2c_c00177{left:330.443835px;}
.x4c_c00177{left:331.527885px;}
.x46_c00177{left:339.586485px;}
.x8_c00177{left:341.323935px;}
.x17_c00177{left:351.902085px;}
.x20_c00177{left:363.539535px;}
.x3e_c00177{left:374.568135px;}
.x41_c00177{left:383.775135px;}
.x5f_c00177{left:385.557135px;}
.x47_c00177{left:396.457035px;}
.x18_c00177{left:397.768785px;}
.x12_c00177{left:407.827185px;}
.x52_c00177{left:408.846885px;}
.x5a_c00177{left:417.563835px;}
.x55_c00177{left:418.910235px;}
.x3a_c00177{left:428.701335px;}
.x19_c00177{left:429.928935px;}
.x36_c00177{left:432.265335px;}
.x48_c00177{left:441.957435px;}
.x21_c00177{left:443.264235px;}
.x4f_c00177{left:450.441735px;}
.x9_c00177{left:452.347485px;}
.x5e_c00177{left:461.846535px;}
.x42_c00177{left:463.371135px;}
.x62_c00177{left:472.568235px;}
.x2d_c00177{left:474.152235px;}
.x3f_c00177{left:476.097585px;}
.x2f_c00177{left:485.482785px;}
.x43_c00177{left:496.164885px;}
.x2e_c00177{left:506.025285px;}
.xa_c00177{left:507.520185px;}
.x60_c00177{left:509.020035px;}
.x63_c00177{left:517.588485px;}
.x22_c00177{left:518.731935px;}
.x61_c00177{left:530.755485px;}
.xb_c00177{left:540.432735px;}
.x23_c00177{left:551.545485px;}
.x13_c00177{left:562.534485px;}
.x30_c00177{left:563.895735px;}
.x37_c00177{left:573.860085px;}
.x24_c00177{left:583.364085px;}
.x27_c00177{left:584.408535px;}
.x14_c00177{left:594.912435px;}
.x58_c00177{left:605.990535px;}
.x1a_c00177{left:607.064685px;}
.x28_c00177{left:618.692235px;}
.x31_c00177{left:627.151785px;}
.x2_c00177{left:628.418985px;}
.xc_c00177{left:629.522835px;}
.x1b_c00177{left:639.140685px;}
.x34_c00177{left:650.570235px;}
.xd_c00177{left:661.202835px;}
.x25_c00177{left:672.290835px;}
.x1c_c00177{left:673.597635px;}
.x35_c00177{left:683.354085px;}
.xe_c00177{left:694.194585px;}
.x5b_c00177{left:696.679485px;}
.x4d_c00177{left:698.520885px;}
.x56_c00177{left:699.788085px;}
.x64_c00177{left:702.010635px;}
.x32_c00177{left:705.465735px;}
.x38_c00177{left:706.470585px;}
.x49_c00177{left:716.479485px;}
.x44_c00177{left:758.331735px;}
@media print{
.v0_c00177{vertical-align:0.000000pt;}
.ls6_c00177{letter-spacing:-2.698080pt;}
.ls8_c00177{letter-spacing:-2.537926pt;}
.ls11_c00177{letter-spacing:-1.885317pt;}
.ls9_c00177{letter-spacing:-1.870814pt;}
.ls14_c00177{letter-spacing:-1.275126pt;}
.ls4_c00177{letter-spacing:0.000000pt;}
.lsb_c00177{letter-spacing:0.369812pt;}
.ls12_c00177{letter-spacing:0.638107pt;}
.ls16_c00177{letter-spacing:0.746875pt;}
.ls2_c00177{letter-spacing:1.087683pt;}
.ls0_c00177{letter-spacing:1.638775pt;}
.ls1_c00177{letter-spacing:2.081099pt;}
.lsf_c00177{letter-spacing:2.313138pt;}
.ls5_c00177{letter-spacing:2.748211pt;}
.ls7_c00177{letter-spacing:2.886400pt;}
.lsa_c00177{letter-spacing:3.220800pt;}
.ls13_c00177{letter-spacing:3.238400pt;}
.lsc_c00177{letter-spacing:3.379209pt;}
.ls15_c00177{letter-spacing:3.444328pt;}
.ls10_c00177{letter-spacing:3.581609pt;}
.ls3_c00177{letter-spacing:3.625609pt;}
.lsd_c00177{letter-spacing:50.688176pt;}
.lse_c00177{letter-spacing:54.489776pt;}
.ws0_c00177{word-spacing:-18.128044pt;}
.ws1_c00177{word-spacing:0.000000pt;}
._6_c00177{margin-left:-16.561600pt;}
._3_c00177{margin-left:-14.719980pt;}
._4_c00177{margin-left:-2.433086pt;}
._2_c00177{margin-left:-1.232638pt;}
._5_c00177{width:16.624732pt;}
._0_c00177{width:24.741214pt;}
._1_c00177{width:31.107724pt;}
.fs1_c00177{font-size:19.712000pt;}
.fs13_c00177{font-size:24.640000pt;}
.fs11_c00177{font-size:29.920000pt;}
.fsc_c00177{font-size:34.496000pt;}
.fsf_c00177{font-size:35.200000pt;}
.fse_c00177{font-size:36.432176pt;}
.fsb_c00177{font-size:37.488000pt;}
.fs12_c00177{font-size:40.128000pt;}
.fs7_c00177{font-size:50.688176pt;}
.fs8_c00177{font-size:54.489776pt;}
.fs3_c00177{font-size:57.728000pt;}
.fs5_c00177{font-size:64.416000pt;}
.fsd_c00177{font-size:64.768000pt;}
.fs4_c00177{font-size:66.528000pt;}
.fs6_c00177{font-size:67.584176pt;}
.fsa_c00177{font-size:69.696000pt;}
.fs10_c00177{font-size:70.400000pt;}
.fs9_c00177{font-size:71.632176pt;}
.fs0_c00177{font-size:72.512176pt;}
.fs2_c00177{font-size:77.088000pt;}
.y0_c00177{bottom:0.000000pt;}
.y21_c00177{bottom:18.929720pt;}
.y20_c00177{bottom:21.464120pt;}
.y1_c00177{bottom:68.000000pt;}
.y1f_c00177{bottom:102.560520pt;}
.y1e_c00177{bottom:107.316920pt;}
.y1d_c00177{bottom:158.321720pt;}
.y1c_c00177{bottom:186.200120pt;}
.y1b_c00177{bottom:213.761720pt;}
.y1a_c00177{bottom:242.590520pt;}
.y19_c00177{bottom:270.468920pt;}
.y18_c00177{bottom:298.659720pt;}
.y17_c00177{bottom:326.542520pt;}
.y16_c00177{bottom:355.054520pt;}
.y15_c00177{bottom:383.249720pt;}
.y22_c00177{bottom:413.974920pt;}
.y14_c00177{bottom:437.101320pt;}
.y12_c00177{bottom:439.640120pt;}
.y13_c00177{bottom:442.808120pt;}
.y11_c00177{bottom:467.514120pt;}
.y10_c00177{bottom:496.030520pt;}
.yf_c00177{bottom:523.592120pt;}
.ye_c00177{bottom:550.832520pt;}
.yd_c00177{bottom:579.032120pt;}
.yc_c00177{bottom:607.539720pt;}
.yb_c00177{bottom:635.418120pt;}
.ya_c00177{bottom:663.617720pt;}
.y9_c00177{bottom:692.125320pt;}
.y8_c00177{bottom:720.954120pt;}
.y7_c00177{bottom:748.520120pt;}
.y6_c00177{bottom:776.710920pt;}
.y5_c00177{bottom:805.222920pt;}
.y4_c00177{bottom:833.739320pt;}
.y3_c00177{bottom:919.904520pt;}
.y2_c00177{bottom:954.440120pt;}
.h3_c00177{height:20.559000pt;}
.h14_c00177{height:25.698750pt;}
.h12_c00177{height:29.364844pt;}
.h9_c00177{height:33.758325pt;}
.h10_c00177{height:35.756188pt;}
.he_c00177{height:35.978250pt;}
.ha_c00177{height:36.290191pt;}
.hd_c00177{height:36.792422pt;}
.h13_c00177{height:41.852250pt;}
.h5_c00177{height:56.656875pt;}
.h7_c00177{height:63.220781pt;}
.hf_c00177{height:63.566250pt;}
.h6_c00177{height:65.293594pt;}
.h8_c00177{height:66.330173pt;}
.hc_c00177{height:68.402813pt;}
.hb_c00177{height:70.303063pt;}
.h2_c00177{height:71.166735pt;}
.h11_c00177{height:73.425000pt;}
.h4_c00177{height:75.657656pt;}
.h1_c00177{height:986.666667pt;}
.h0_c00177{height:1122.666667pt;}
.w1_c00177{width:689.333333pt;}
.w0_c00177{width:793.333333pt;}
.x0_c00177{left:0.000000pt;}
.x1_c00177{left:52.000000pt;}
.x40_c00177{left:76.156653pt;}
.x4_c00177{left:77.054253pt;}
.x54_c00177{left:78.145453pt;}
.x29_c00177{left:105.825853pt;}
.x15_c00177{left:106.793853pt;}
.x39_c00177{left:115.439853pt;}
.x1d_c00177{left:124.776653pt;}
.xf_c00177{left:125.894253pt;}
.x33_c00177{left:135.957053pt;}
.x45_c00177{left:144.097053pt;}
.x5c_c00177{left:145.104653pt;}
.x5_c00177{left:146.121053pt;}
.x10_c00177{left:154.542653pt;}
.x1e_c00177{left:156.166253pt;}
.x3b_c00177{left:164.860653pt;}
.x4a_c00177{left:173.555053pt;}
.x57_c00177{left:174.624253pt;}
.x2a_c00177{left:184.181053pt;}
.x3c_c00177{left:194.274653pt;}
.x4e_c00177{left:202.867853pt;}
.x1f_c00177{left:204.262653pt;}
.x11_c00177{left:214.483853pt;}
.x2b_c00177{left:223.578653pt;}
.x50_c00177{left:233.909853pt;}
.x16_c00177{left:234.842653pt;}
.x6_c00177{left:244.051853pt;}
.x26_c00177{left:253.401853pt;}
.x53_c00177{left:254.501853pt;}
.x4b_c00177{left:262.905853pt;}
.x59_c00177{left:263.904653pt;}
.x7_c00177{left:272.959853pt;}
.x51_c00177{left:274.051053pt;}
.x3d_c00177{left:283.370253pt;}
.x3_c00177{left:285.350253pt;}
.x5d_c00177{left:292.729053pt;}
.x2c_c00177{left:293.727853pt;}
.x4c_c00177{left:294.691453pt;}
.x46_c00177{left:301.854653pt;}
.x8_c00177{left:303.399053pt;}
.x17_c00177{left:312.801853pt;}
.x20_c00177{left:323.146253pt;}
.x3e_c00177{left:332.949453pt;}
.x41_c00177{left:341.133453pt;}
.x5f_c00177{left:342.717453pt;}
.x47_c00177{left:352.406253pt;}
.x18_c00177{left:353.572253pt;}
.x12_c00177{left:362.513053pt;}
.x52_c00177{left:363.419453pt;}
.x5a_c00177{left:371.167853pt;}
.x55_c00177{left:372.364653pt;}
.x3a_c00177{left:381.067853pt;}
.x19_c00177{left:382.159053pt;}
.x36_c00177{left:384.235853pt;}
.x48_c00177{left:392.851053pt;}
.x21_c00177{left:394.012653pt;}
.x4f_c00177{left:400.392653pt;}
.x9_c00177{left:402.086653pt;}
.x5e_c00177{left:410.530253pt;}
.x42_c00177{left:411.885453pt;}
.x62_c00177{left:420.060653pt;}
.x2d_c00177{left:421.468653pt;}
.x3f_c00177{left:423.197853pt;}
.x2f_c00177{left:431.540253pt;}
.x43_c00177{left:441.035453pt;}
.x2e_c00177{left:449.800253pt;}
.xa_c00177{left:451.129053pt;}
.x60_c00177{left:452.462253pt;}
.x63_c00177{left:460.078653pt;}
.x22_c00177{left:461.095053pt;}
.x61_c00177{left:471.782653pt;}
.xb_c00177{left:480.384653pt;}
.x23_c00177{left:490.262653pt;}
.x13_c00177{left:500.030653pt;}
.x30_c00177{left:501.240653pt;}
.x37_c00177{left:510.097853pt;}
.x24_c00177{left:518.545853pt;}
.x27_c00177{left:519.474253pt;}
.x14_c00177{left:528.811053pt;}
.x58_c00177{left:538.658253pt;}
.x1a_c00177{left:539.613053pt;}
.x28_c00177{left:549.948653pt;}
.x31_c00177{left:557.468253pt;}
.x2_c00177{left:558.594653pt;}
.xc_c00177{left:559.575853pt;}
.x1b_c00177{left:568.125053pt;}
.x34_c00177{left:578.284653pt;}
.xd_c00177{left:587.735853pt;}
.x25_c00177{left:597.591853pt;}
.x1c_c00177{left:598.753453pt;}
.x35_c00177{left:607.425853pt;}
.xe_c00177{left:617.061853pt;}
.x5b_c00177{left:619.270653pt;}
.x4d_c00177{left:620.907453pt;}
.x56_c00177{left:622.033853pt;}
.x64_c00177{left:624.009453pt;}
.x32_c00177{left:627.080653pt;}
.x38_c00177{left:627.973853pt;}
.x49_c00177{left:636.870653pt;}
.x44_c00177{left:674.072653pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_62c6ab4fffee4f7c77b40244.woff2')format("woff");}.ff1_c00178{font-family:ff1_c00178;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00178;src:url('chunks/assets/font_4130b71e524d3ec49691a0cf.woff2')format("woff");}.ff2_c00178{font-family:ff2_c00178;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00178;src:url('chunks/assets/font_fe25e0a43d07227cb206044f.woff2')format("woff");}.ff3_c00178{font-family:ff3_c00178;line-height:0.666000;font-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_c00178{transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);}
.m80_c00178{transform:matrix(0.174418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174418,0.000000,0.000000,0.250000,0,0);}
.m1c_c00178{transform:matrix(0.245353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245353,0.000000,0.000000,0.250000,0,0);}
.m95_c00178{transform:matrix(0.248170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248170,0.000000,0.000000,0.250000,0,0);}
.m0_c00178{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00178{transform:matrix(0.250825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250825,0.000000,0.000000,0.250000,0,0);}
.m2a_c00178{transform:matrix(0.251573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251573,0.000000,0.000000,0.250000,0,0);}
.m36_c00178{transform:matrix(0.252117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252117,0.000000,0.000000,0.250000,0,0);}
.m3_c00178{transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);}
.m10_c00178{transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);}
.m82_c00178{transform:matrix(0.253783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253783,0.000000,0.000000,0.250000,0,0);}
.m24_c00178{transform:matrix(0.254614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254614,0.000000,0.000000,0.250000,0,0);}
.m19_c00178{transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);}
.m21_c00178{transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);}
.me_c00178{transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);}
.mb_c00178{transform:matrix(0.258186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258186,0.000000,0.000000,0.250000,0,0);}
.m37_c00178{transform:matrix(0.258788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258788,0.000000,0.000000,0.250000,0,0);}
.m74_c00178{transform:matrix(0.259376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259376,0.000000,0.000000,0.250000,0,0);}
.m40_c00178{transform:matrix(0.259501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259501,0.000000,0.000000,0.250000,0,0);}
.m9e_c00178{transform:matrix(0.259674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259674,0.000000,0.000000,0.250000,0,0);}
.m43_c00178{transform:matrix(0.260220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260220,0.000000,0.000000,0.250000,0,0);}
.m2b_c00178{transform:matrix(0.260353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260353,0.000000,0.000000,0.250000,0,0);}
.m5f_c00178{transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);}
.m48_c00178{transform:matrix(0.261612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261612,0.000000,0.000000,0.250000,0,0);}
.m4e_c00178{transform:matrix(0.261958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261958,0.000000,0.000000,0.250000,0,0);}
.m8b_c00178{transform:matrix(0.262285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262285,0.000000,0.000000,0.250000,0,0);}
.m85_c00178{transform:matrix(0.262965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262965,0.000000,0.000000,0.250000,0,0);}
.m96_c00178{transform:matrix(0.263182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263182,0.000000,0.000000,0.250000,0,0);}
.m60_c00178{transform:matrix(0.263289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263289,0.000000,0.000000,0.250000,0,0);}
.m55_c00178{transform:matrix(0.263927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263927,0.000000,0.000000,0.250000,0,0);}
.m9a_c00178{transform:matrix(0.263949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263949,0.000000,0.000000,0.250000,0,0);}
.mf_c00178{transform:matrix(0.264595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264595,0.000000,0.000000,0.250000,0,0);}
.m51_c00178{transform:matrix(0.264852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264852,0.000000,0.000000,0.250000,0,0);}
.m59_c00178{transform:matrix(0.265077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265077,0.000000,0.000000,0.250000,0,0);}
.m17_c00178{transform:matrix(0.266015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266015,0.000000,0.000000,0.250000,0,0);}
.m4a_c00178{transform:matrix(0.266822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266822,0.000000,0.000000,0.250000,0,0);}
.m5d_c00178{transform:matrix(0.267652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267652,0.000000,0.000000,0.250000,0,0);}
.m5b_c00178{transform:matrix(0.269501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269501,0.000000,0.000000,0.250000,0,0);}
.m2e_c00178{transform:matrix(0.269818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269818,0.000000,0.000000,0.250000,0,0);}
.m86_c00178{transform:matrix(0.269991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269991,0.000000,0.000000,0.250000,0,0);}
.m5e_c00178{transform:matrix(0.270949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270949,0.000000,0.000000,0.250000,0,0);}
.m14_c00178{transform:matrix(0.271728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271728,0.000000,0.000000,0.250000,0,0);}
.m87_c00178{transform:matrix(0.271925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271925,0.000000,0.000000,0.250000,0,0);}
.m25_c00178{transform:matrix(0.273613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273613,0.000000,0.000000,0.250000,0,0);}
.m5a_c00178{transform:matrix(0.273859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273859,0.000000,0.000000,0.250000,0,0);}
.m20_c00178{transform:matrix(0.273896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273896,0.000000,0.000000,0.250000,0,0);}
.m57_c00178{transform:matrix(0.274757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274757,0.000000,0.000000,0.250000,0,0);}
.m1f_c00178{transform:matrix(0.275859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275859,0.000000,0.000000,0.250000,0,0);}
.m6c_c00178{transform:matrix(0.276127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276127,0.000000,0.000000,0.250000,0,0);}
.ma1_c00178{transform:matrix(0.276395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276395,0.000000,0.000000,0.250000,0,0);}
.m46_c00178{transform:matrix(0.276778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276778,0.000000,0.000000,0.250000,0,0);}
.m23_c00178{transform:matrix(0.277316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277316,0.000000,0.000000,0.250000,0,0);}
.m4_c00178{transform:matrix(0.277353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277353,0.000000,0.000000,0.250000,0,0);}
.m39_c00178{transform:matrix(0.277590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277590,0.000000,0.000000,0.250000,0,0);}
.m64_c00178{transform:matrix(0.277867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277867,0.000000,0.000000,0.250000,0,0);}
.m18_c00178{transform:matrix(0.278001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278001,0.000000,0.000000,0.250000,0,0);}
.m76_c00178{transform:matrix(0.278336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278336,0.000000,0.000000,0.250000,0,0);}
.m58_c00178{transform:matrix(0.278662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278662,0.000000,0.000000,0.250000,0,0);}
.ma0_c00178{transform:matrix(0.278706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278706,0.000000,0.000000,0.250000,0,0);}
.m67_c00178{transform:matrix(0.279195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279195,0.000000,0.000000,0.250000,0,0);}
.m54_c00178{transform:matrix(0.279431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279431,0.000000,0.000000,0.250000,0,0);}
.m44_c00178{transform:matrix(0.280442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280442,0.000000,0.000000,0.250000,0,0);}
.m15_c00178{transform:matrix(0.280468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280468,0.000000,0.000000,0.250000,0,0);}
.m70_c00178{transform:matrix(0.280712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280712,0.000000,0.000000,0.250000,0,0);}
.m9f_c00178{transform:matrix(0.280798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280798,0.000000,0.000000,0.250000,0,0);}
.m1_c00178{transform:matrix(0.280888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280888,0.000000,0.000000,0.250000,0,0);}
.m4f_c00178{transform:matrix(0.281695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281695,0.000000,0.000000,0.250000,0,0);}
.m8f_c00178{transform:matrix(0.282509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282509,0.000000,0.000000,0.250000,0,0);}
.m73_c00178{transform:matrix(0.283024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283024,0.000000,0.000000,0.250000,0,0);}
.m63_c00178{transform:matrix(0.283028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283028,0.000000,0.000000,0.250000,0,0);}
.m2d_c00178{transform:matrix(0.283213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283213,0.000000,0.000000,0.250000,0,0);}
.m45_c00178{transform:matrix(0.283219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283219,0.000000,0.000000,0.250000,0,0);}
.m50_c00178{transform:matrix(0.283287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283287,0.000000,0.000000,0.250000,0,0);}
.m52_c00178{transform:matrix(0.283785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283785,0.000000,0.000000,0.250000,0,0);}
.m35_c00178{transform:matrix(0.284483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284483,0.000000,0.000000,0.250000,0,0);}
.m98_c00178{transform:matrix(0.284959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284959,0.000000,0.000000,0.250000,0,0);}
.m53_c00178{transform:matrix(0.285214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285214,0.000000,0.000000,0.250000,0,0);}
.m16_c00178{transform:matrix(0.285317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285317,0.000000,0.000000,0.250000,0,0);}
.m75_c00178{transform:matrix(0.285567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285567,0.000000,0.000000,0.250000,0,0);}
.m29_c00178{transform:matrix(0.285738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285738,0.000000,0.000000,0.250000,0,0);}
.m13_c00178{transform:matrix(0.286042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286042,0.000000,0.000000,0.250000,0,0);}
.ma2_c00178{transform:matrix(0.286098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286098,0.000000,0.000000,0.250000,0,0);}
.m9b_c00178{transform:matrix(0.286722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286722,0.000000,0.000000,0.250000,0,0);}
.m83_c00178{transform:matrix(0.286788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286788,0.000000,0.000000,0.250000,0,0);}
.m1d_c00178{transform:matrix(0.286936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286936,0.000000,0.000000,0.250000,0,0);}
.m6e_c00178{transform:matrix(0.286940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286940,0.000000,0.000000,0.250000,0,0);}
.m7d_c00178{transform:matrix(0.287046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287046,0.000000,0.000000,0.250000,0,0);}
.m22_c00178{transform:matrix(0.287541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287541,0.000000,0.000000,0.250000,0,0);}
.m26_c00178{transform:matrix(0.287783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287783,0.000000,0.000000,0.250000,0,0);}
.m8c_c00178{transform:matrix(0.287887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287887,0.000000,0.000000,0.250000,0,0);}
.m27_c00178{transform:matrix(0.288289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288289,0.000000,0.000000,0.250000,0,0);}
.m6a_c00178{transform:matrix(0.288360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288360,0.000000,0.000000,0.250000,0,0);}
.m62_c00178{transform:matrix(0.288814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288814,0.000000,0.000000,0.250000,0,0);}
.m6_c00178{transform:matrix(0.290092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290092,0.000000,0.000000,0.250000,0,0);}
.m33_c00178{transform:matrix(0.291263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291263,0.000000,0.000000,0.250000,0,0);}
.m41_c00178{transform:matrix(0.291561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291561,0.000000,0.000000,0.250000,0,0);}
.m1b_c00178{transform:matrix(0.292013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292013,0.000000,0.000000,0.250000,0,0);}
.m93_c00178{transform:matrix(0.293105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293105,0.000000,0.000000,0.250000,0,0);}
.m72_c00178{transform:matrix(0.293261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293261,0.000000,0.000000,0.250000,0,0);}
.m3e_c00178{transform:matrix(0.293592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293592,0.000000,0.000000,0.250000,0,0);}
.m92_c00178{transform:matrix(0.294829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294829,0.000000,0.000000,0.250000,0,0);}
.m99_c00178{transform:matrix(0.294839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294839,0.000000,0.000000,0.250000,0,0);}
.m69_c00178{transform:matrix(0.294874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294874,0.000000,0.000000,0.250000,0,0);}
.m2c_c00178{transform:matrix(0.294983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294983,0.000000,0.000000,0.250000,0,0);}
.m8d_c00178{transform:matrix(0.295897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295897,0.000000,0.000000,0.250000,0,0);}
.m42_c00178{transform:matrix(0.296594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296594,0.000000,0.000000,0.250000,0,0);}
.m5c_c00178{transform:matrix(0.296761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296761,0.000000,0.000000,0.250000,0,0);}
.m77_c00178{transform:matrix(0.296826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296826,0.000000,0.000000,0.250000,0,0);}
.m4d_c00178{transform:matrix(0.296886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296886,0.000000,0.000000,0.250000,0,0);}
.m3c_c00178{transform:matrix(0.297118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297118,0.000000,0.000000,0.250000,0,0);}
.m38_c00178{transform:matrix(0.297411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297411,0.000000,0.000000,0.250000,0,0);}
.m79_c00178{transform:matrix(0.297961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297961,0.000000,0.000000,0.250000,0,0);}
.m81_c00178{transform:matrix(0.298239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298239,0.000000,0.000000,0.250000,0,0);}
.m32_c00178{transform:matrix(0.298329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298329,0.000000,0.000000,0.250000,0,0);}
.m8_c00178{transform:matrix(0.299584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299584,0.000000,0.000000,0.250000,0,0);}
.m3f_c00178{transform:matrix(0.299926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299926,0.000000,0.000000,0.250000,0,0);}
.mc_c00178{transform:matrix(0.300033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300033,0.000000,0.000000,0.250000,0,0);}
.m65_c00178{transform:matrix(0.300190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300190,0.000000,0.000000,0.250000,0,0);}
.m7f_c00178{transform:matrix(0.300598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300598,0.000000,0.000000,0.250000,0,0);}
.m3b_c00178{transform:matrix(0.300866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300866,0.000000,0.000000,0.250000,0,0);}
.m66_c00178{transform:matrix(0.301613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301613,0.000000,0.000000,0.250000,0,0);}
.m71_c00178{transform:matrix(0.301650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301650,0.000000,0.000000,0.250000,0,0);}
.m56_c00178{transform:matrix(0.303252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303252,0.000000,0.000000,0.250000,0,0);}
.m3a_c00178{transform:matrix(0.303866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303866,0.000000,0.000000,0.250000,0,0);}
.m12_c00178{transform:matrix(0.304530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304530,0.000000,0.000000,0.250000,0,0);}
.md_c00178{transform:matrix(0.304726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304726,0.000000,0.000000,0.250000,0,0);}
.m31_c00178{transform:matrix(0.304908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304908,0.000000,0.000000,0.250000,0,0);}
.m9c_c00178{transform:matrix(0.305091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305091,0.000000,0.000000,0.250000,0,0);}
.m8a_c00178{transform:matrix(0.306874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306874,0.000000,0.000000,0.250000,0,0);}
.m7b_c00178{transform:matrix(0.307121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307121,0.000000,0.000000,0.250000,0,0);}
.ma_c00178{transform:matrix(0.307423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307423,0.000000,0.000000,0.250000,0,0);}
.m97_c00178{transform:matrix(0.307519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307519,0.000000,0.000000,0.250000,0,0);}
.m89_c00178{transform:matrix(0.308068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308068,0.000000,0.000000,0.250000,0,0);}
.m88_c00178{transform:matrix(0.309680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309680,0.000000,0.000000,0.250000,0,0);}
.m68_c00178{transform:matrix(0.309983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309983,0.000000,0.000000,0.250000,0,0);}
.m4c_c00178{transform:matrix(0.310937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310937,0.000000,0.000000,0.250000,0,0);}
.m90_c00178{transform:matrix(0.311728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311728,0.000000,0.000000,0.250000,0,0);}
.m9_c00178{transform:matrix(0.312161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312161,0.000000,0.000000,0.250000,0,0);}
.m49_c00178{transform:matrix(0.312881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312881,0.000000,0.000000,0.250000,0,0);}
.m61_c00178{transform:matrix(0.313104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313104,0.000000,0.000000,0.250000,0,0);}
.m7a_c00178{transform:matrix(0.313414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313414,0.000000,0.000000,0.250000,0,0);}
.m47_c00178{transform:matrix(0.314198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314198,0.000000,0.000000,0.250000,0,0);}
.m6f_c00178{transform:matrix(0.314673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314673,0.000000,0.000000,0.250000,0,0);}
.m4b_c00178{transform:matrix(0.316777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316777,0.000000,0.000000,0.250000,0,0);}
.m28_c00178{transform:matrix(0.317866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317866,0.000000,0.000000,0.250000,0,0);}
.m6b_c00178{transform:matrix(0.317878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317878,0.000000,0.000000,0.250000,0,0);}
.m84_c00178{transform:matrix(0.319440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319440,0.000000,0.000000,0.250000,0,0);}
.m7e_c00178{transform:matrix(0.320282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320282,0.000000,0.000000,0.250000,0,0);}
.m94_c00178{transform:matrix(0.321647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321647,0.000000,0.000000,0.250000,0,0);}
.m2_c00178{transform:matrix(0.321812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321812,0.000000,0.000000,0.250000,0,0);}
.m2f_c00178{transform:matrix(0.324320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324320,0.000000,0.000000,0.250000,0,0);}
.m8e_c00178{transform:matrix(0.324928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324928,0.000000,0.000000,0.250000,0,0);}
.m7_c00178{transform:matrix(0.327056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327056,0.000000,0.000000,0.250000,0,0);}
.m11_c00178{transform:matrix(0.329385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329385,0.000000,0.000000,0.250000,0,0);}
.m3d_c00178{transform:matrix(0.331929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331929,0.000000,0.000000,0.250000,0,0);}
.m1a_c00178{transform:matrix(0.333044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333044,0.000000,0.000000,0.250000,0,0);}
.m5_c00178{transform:matrix(0.335244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335244,0.000000,0.000000,0.250000,0,0);}
.m91_c00178{transform:matrix(0.345597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345597,0.000000,0.000000,0.250000,0,0);}
.m6d_c00178{transform:matrix(0.347870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347870,0.000000,0.000000,0.250000,0,0);}
.m78_c00178{transform:matrix(0.358551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358551,0.000000,0.000000,0.250000,0,0);}
.m30_c00178{transform:matrix(0.358891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358891,0.000000,0.000000,0.250000,0,0);}
.m1e_c00178{transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);}
.m7c_c00178{transform:matrix(0.368138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368138,0.000000,0.000000,0.250000,0,0);}
.m34_c00178{transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);}
.v0_c00178{vertical-align:0.000000px;}
.ls6_c00178{letter-spacing:-2.855167px;}
.lsa_c00178{letter-spacing:-2.088351px;}
.ls2_c00178{letter-spacing:0.000000px;}
.ls1_c00178{letter-spacing:0.130522px;}
.ls0_c00178{letter-spacing:1.142067px;}
.ls11_c00178{letter-spacing:1.329692px;}
.ls7_c00178{letter-spacing:2.439128px;}
.ls10_c00178{letter-spacing:2.534400px;}
.ls8_c00178{letter-spacing:2.544310px;}
.lsc_c00178{letter-spacing:2.724645px;}
.lse_c00178{letter-spacing:3.564000px;}
.ls5_c00178{letter-spacing:3.662771px;}
.lsb_c00178{letter-spacing:3.722400px;}
.lsd_c00178{letter-spacing:3.809608px;}
.ls3_c00178{letter-spacing:3.821400px;}
.ls9_c00178{letter-spacing:4.039200px;}
.ls4_c00178{letter-spacing:4.078810px;}
.ls12_c00178{letter-spacing:31.363200px;}
.lsf_c00178{letter-spacing:61.300998px;}
.sc__c00178{text-shadow:none;}
.sc0_c00178{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00178{-webkit-text-stroke:0px transparent;}
.sc0_c00178{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00178{word-spacing:0.000000px;}
._3_c00178{margin-left:-28.947699px;}
._2_c00178{width:28.551649px;}
._1_c00178{width:32.353068px;}
._0_c00178{width:81.355279px;}
.fc0_c00178{color:transparent;}
.fs2_c00178{font-size:23.166000px;}
.fs0_c00178{font-size:28.314000px;}
.fs10_c00178{font-size:31.363200px;}
.fsf_c00178{font-size:34.650000px;}
.fs12_c00178{font-size:37.620000px;}
.fsc_c00178{font-size:44.946198px;}
.fsb_c00178{font-size:50.688000px;}
.fs5_c00178{font-size:50.886198px;}
.fsd_c00178{font-size:55.836198px;}
.fsa_c00178{font-size:61.300998px;}
.fse_c00178{font-size:67.320000px;}
.fs4_c00178{font-size:68.112198px;}
.fs9_c00178{font-size:71.280000px;}
.fs8_c00178{font-size:74.448000px;}
.fs6_c00178{font-size:74.844000px;}
.fs1_c00178{font-size:76.428000px;}
.fs7_c00178{font-size:80.784000px;}
.fs3_c00178{font-size:81.576198px;}
.fs11_c00178{font-size:127.908198px;}
.y0_c00178{bottom:0.000000px;}
.y20_c00178{bottom:12.024585px;}
.y1f_c00178{bottom:24.503535px;}
.y1e_c00178{bottom:34.834185px;}
.y1d_c00178{bottom:47.664585px;}
.y1c_c00178{bottom:76.181535px;}
.y1_c00178{bottom:76.500000px;}
.y1b_c00178{bottom:203.772735px;}
.y1a_c00178{bottom:235.492335px;}
.y19_c00178{bottom:266.850585px;}
.y18_c00178{bottom:298.575135px;}
.y16_c00178{bottom:329.576985px;}
.y17_c00178{bottom:333.853785px;}
.y15_c00178{bottom:361.296585px;}
.y14_c00178{bottom:393.021135px;}
.y13_c00178{bottom:425.092185px;}
.y12_c00178{bottom:455.391135px;}
.y11_c00178{bottom:487.110735px;}
.y10_c00178{bottom:519.186735px;}
.yf_c00178{bottom:550.901385px;}
.ye_c00178{bottom:613.989135px;}
.yd_c00178{bottom:646.421535px;}
.yc_c00178{bottom:677.423385px;}
.yb_c00178{bottom:708.791535px;}
.ya_c00178{bottom:740.511135px;}
.y9_c00178{bottom:772.225785px;}
.y8_c00178{bottom:803.232585px;}
.y7_c00178{bottom:834.595785px;}
.y6_c00178{bottom:898.039935px;}
.y5_c00178{bottom:930.115935px;}
.y4_c00178{bottom:953.994735px;}
.y3_c00178{bottom:1067.329935px;}
.y2_c00178{bottom:1094.411385px;}
.h12_c00178{height:20.887891px;}
.h4_c00178{height:24.161414px;}
.h2_c00178{height:29.530617px;}
.h11_c00178{height:36.138867px;}
.hc_c00178{height:40.826465px;}
.he_c00178{height:44.112235px;}
.hd_c00178{height:52.866000px;}
.h7_c00178{height:53.072714px;}
.hf_c00178{height:58.235410px;}
.h10_c00178{height:66.070898px;}
.h6_c00178{height:71.038894px;}
.ha_c00178{height:73.066641px;}
.h8_c00178{height:73.455293px;}
.hb_c00178{height:74.342813px;}
.h3_c00178{height:75.009902px;}
.h9_c00178{height:79.285078px;}
.h5_c00178{height:80.062577px;}
.h13_c00178{height:125.534901px;}
.h1_c00178{height:1110.000000px;}
.h0_c00178{height:1263.000000px;}
.w1_c00178{width:775.500000px;}
.w0_c00178{width:892.500000px;}
.x0_c00178{left:0.000000px;}
.x1_c00178{left:58.500000px;}
.x1c_c00178{left:84.933735px;}
.x5_c00178{left:86.299935px;}
.x5a_c00178{left:117.593835px;}
.x34_c00178{left:119.123385px;}
.x2c_c00178{left:129.132285px;}
.x11_c00178{left:130.216335px;}
.x16_c00178{left:139.908435px;}
.x57_c00178{left:140.913285px;}
.x6_c00178{left:151.610235px;}
.x37_c00178{left:162.242835px;}
.x25_c00178{left:163.346685px;}
.x2d_c00178{left:174.286185px;}
.x3d_c00178{left:183.527835px;}
.x7_c00178{left:185.092035px;}
.x47_c00178{left:194.482185px;}
.x26_c00178{left:196.392885px;}
.x17_c00178{left:207.891735px;}
.x1d_c00178{left:217.549185px;}
.x27_c00178{left:228.033285px;}
.x5d_c00178{left:229.265835px;}
.x8_c00178{left:240.477585px;}
.x58_c00178{left:250.496385px;}
.x4d_c00178{left:251.723985px;}
.x35_c00178{left:261.896235px;}
.x1e_c00178{left:263.391135px;}
.x52_c00178{left:264.480135px;}
.x4a_c00178{left:272.419935px;}
.x48_c00178{left:274.870185px;}
.x2e_c00178{left:285.601785px;}
.x3e_c00178{left:295.531485px;}
.x1f_c00178{left:296.620485px;}
.x9_c00178{left:306.961035px;}
.x3f_c00178{left:317.628285px;}
.x28_c00178{left:329.087535px;}
.x38_c00178{left:339.230085px;}
.x18_c00178{left:340.814085px;}
.x40_c00178{left:351.902085px;}
.x12_c00178{left:362.237685px;}
.x29_c00178{left:373.271235px;}
.x53_c00178{left:374.360235px;}
.x2_c00178{left:376.171935px;}
.xa_c00178{left:385.052235px;}
.x13_c00178{left:395.531385px;}
.xb_c00178{left:406.965885px;}
.x20_c00178{left:417.425235px;}
.x4e_c00178{left:419.588385px;}
.x39_c00178{left:428.528085px;}
.x4f_c00178{left:429.824985px;}
.x19_c00178{left:439.724985px;}
.x21_c00178{left:450.412035px;}
.x2f_c00178{left:451.451535px;}
.x41_c00178{left:462.024735px;}
.x36_c00178{left:463.039485px;}
.xc_c00178{left:473.043435px;}
.x3a_c00178{left:474.102735px;}
.x2a_c00178{left:484.799685px;}
.x42_c00178{left:495.155085px;}
.x54_c00178{left:496.229235px;}
.x5e_c00178{left:505.357035px;}
.x4b_c00178{left:506.733135px;}
.x14_c00178{left:516.529185px;}
.x22_c00178{left:517.598385px;}
.x31_c00178{left:527.547885px;}
.xd_c00178{left:528.666585px;}
.x4c_c00178{left:539.170485px;}
.xe_c00178{left:550.045635px;}
.x55_c00178{left:551.763285px;}
.x32_c00178{left:560.207985px;}
.x15_c00178{left:562.123635px;}
.x49_c00178{left:572.503785px;}
.x3b_c00178{left:582.794835px;}
.xf_c00178{left:583.829385px;}
.x5b_c00178{left:594.392685px;}
.x5f_c00178{left:605.262885px;}
.x3c_c00178{left:615.449985px;}
.x50_c00178{left:626.988435px;}
.x60_c00178{left:628.220985px;}
.x3_c00178{left:638.041785px;}
.x2b_c00178{left:639.120885px;}
.x23_c00178{left:648.199185px;}
.x1a_c00178{left:650.189085px;}
.x51_c00178{left:659.995035px;}
.x5c_c00178{left:661.539435px;}
.x43_c00178{left:663.004635px;}
.x44_c00178{left:670.493985px;}
.x24_c00178{left:671.592885px;}
.x1b_c00178{left:682.250235px;}
.x10_c00178{left:693.650085px;}
.x56_c00178{left:694.971735px;}
.x45_c00178{left:697.570485px;}
.x62_c00178{left:701.624535px;}
.x46_c00178{left:704.322285px;}
.x30_c00178{left:706.208235px;}
.x63_c00178{left:707.915985px;}
.x59_c00178{left:710.475135px;}
.x33_c00178{left:714.890535px;}
.x61_c00178{left:727.542735px;}
.x4_c00178{left:728.666385px;}
@media print{
.v0_c00178{vertical-align:0.000000pt;}
.ls6_c00178{letter-spacing:-2.537926pt;}
.lsa_c00178{letter-spacing:-1.856312pt;}
.ls2_c00178{letter-spacing:0.000000pt;}
.ls1_c00178{letter-spacing:0.116019pt;}
.ls0_c00178{letter-spacing:1.015170pt;}
.ls11_c00178{letter-spacing:1.181948pt;}
.ls7_c00178{letter-spacing:2.168114pt;}
.ls10_c00178{letter-spacing:2.252800pt;}
.ls8_c00178{letter-spacing:2.261609pt;}
.lsc_c00178{letter-spacing:2.421907pt;}
.lse_c00178{letter-spacing:3.168000pt;}
.ls5_c00178{letter-spacing:3.255797pt;}
.lsb_c00178{letter-spacing:3.308800pt;}
.lsd_c00178{letter-spacing:3.386319pt;}
.ls3_c00178{letter-spacing:3.396800pt;}
.ls9_c00178{letter-spacing:3.590400pt;}
.ls4_c00178{letter-spacing:3.625609pt;}
.ls12_c00178{letter-spacing:27.878400pt;}
.lsf_c00178{letter-spacing:54.489776pt;}
.ws0_c00178{word-spacing:0.000000pt;}
._3_c00178{margin-left:-25.731288pt;}
._2_c00178{width:25.379244pt;}
._1_c00178{width:28.758283pt;}
._0_c00178{width:72.315804pt;}
.fs2_c00178{font-size:20.592000pt;}
.fs0_c00178{font-size:25.168000pt;}
.fs10_c00178{font-size:27.878400pt;}
.fsf_c00178{font-size:30.800000pt;}
.fs12_c00178{font-size:33.440000pt;}
.fsc_c00178{font-size:39.952176pt;}
.fsb_c00178{font-size:45.056000pt;}
.fs5_c00178{font-size:45.232176pt;}
.fsd_c00178{font-size:49.632176pt;}
.fsa_c00178{font-size:54.489776pt;}
.fse_c00178{font-size:59.840000pt;}
.fs4_c00178{font-size:60.544176pt;}
.fs9_c00178{font-size:63.360000pt;}
.fs8_c00178{font-size:66.176000pt;}
.fs6_c00178{font-size:66.528000pt;}
.fs1_c00178{font-size:67.936000pt;}
.fs7_c00178{font-size:71.808000pt;}
.fs3_c00178{font-size:72.512176pt;}
.fs11_c00178{font-size:113.696176pt;}
.y0_c00178{bottom:0.000000pt;}
.y20_c00178{bottom:10.688520pt;}
.y1f_c00178{bottom:21.780920pt;}
.y1e_c00178{bottom:30.963720pt;}
.y1d_c00178{bottom:42.368520pt;}
.y1c_c00178{bottom:67.716920pt;}
.y1_c00178{bottom:68.000000pt;}
.y1b_c00178{bottom:181.131320pt;}
.y1a_c00178{bottom:209.326520pt;}
.y19_c00178{bottom:237.200520pt;}
.y18_c00178{bottom:265.400120pt;}
.y16_c00178{bottom:292.957320pt;}
.y17_c00178{bottom:296.758920pt;}
.y15_c00178{bottom:321.152520pt;}
.y14_c00178{bottom:349.352120pt;}
.y13_c00178{bottom:377.859720pt;}
.y12_c00178{bottom:404.792120pt;}
.y11_c00178{bottom:432.987320pt;}
.y10_c00178{bottom:461.499320pt;}
.yf_c00178{bottom:489.690120pt;}
.ye_c00178{bottom:545.768120pt;}
.yd_c00178{bottom:574.596920pt;}
.yc_c00178{bottom:602.154120pt;}
.yb_c00178{bottom:630.036920pt;}
.ya_c00178{bottom:658.232120pt;}
.y9_c00178{bottom:686.422920pt;}
.y8_c00178{bottom:713.984520pt;}
.y7_c00178{bottom:741.862920pt;}
.y6_c00178{bottom:798.257720pt;}
.y5_c00178{bottom:826.769720pt;}
.y4_c00178{bottom:847.995320pt;}
.y3_c00178{bottom:948.737720pt;}
.y2_c00178{bottom:972.810120pt;}
.h12_c00178{height:18.567014pt;}
.h4_c00178{height:21.476813pt;}
.h2_c00178{height:26.249438pt;}
.h11_c00178{height:32.123438pt;}
.hc_c00178{height:36.290191pt;}
.he_c00178{height:39.210876pt;}
.hd_c00178{height:46.992000pt;}
.h7_c00178{height:47.175746pt;}
.hf_c00178{height:51.764809pt;}
.h10_c00178{height:58.729688pt;}
.h6_c00178{height:63.145684pt;}
.ha_c00178{height:64.948125pt;}
.h8_c00178{height:65.293594pt;}
.hb_c00178{height:66.082500pt;}
.h3_c00178{height:66.675469pt;}
.h9_c00178{height:70.475625pt;}
.h5_c00178{height:71.166735pt;}
.h13_c00178{height:111.586579pt;}
.h1_c00178{height:986.666667pt;}
.h0_c00178{height:1122.666667pt;}
.w1_c00178{width:689.333333pt;}
.w0_c00178{width:793.333333pt;}
.x0_c00178{left:0.000000pt;}
.x1_c00178{left:52.000000pt;}
.x1c_c00178{left:75.496653pt;}
.x5_c00178{left:76.711053pt;}
.x5a_c00178{left:104.527853pt;}
.x34_c00178{left:105.887453pt;}
.x2c_c00178{left:114.784253pt;}
.x11_c00178{left:115.747853pt;}
.x16_c00178{left:124.363053pt;}
.x57_c00178{left:125.256253pt;}
.x6_c00178{left:134.764653pt;}
.x37_c00178{left:144.215853pt;}
.x25_c00178{left:145.197053pt;}
.x2d_c00178{left:154.921053pt;}
.x3d_c00178{left:163.135853pt;}
.x7_c00178{left:164.526253pt;}
.x47_c00178{left:172.873053pt;}
.x26_c00178{left:174.571453pt;}
.x17_c00178{left:184.792653pt;}
.x1d_c00178{left:193.377053pt;}
.x27_c00178{left:202.696253pt;}
.x5d_c00178{left:203.791853pt;}
.x8_c00178{left:213.757853pt;}
.x58_c00178{left:222.663453pt;}
.x4d_c00178{left:223.754653pt;}
.x35_c00178{left:232.796653pt;}
.x1e_c00178{left:234.125453pt;}
.x52_c00178{left:235.093453pt;}
.x4a_c00178{left:242.151053pt;}
.x48_c00178{left:244.329053pt;}
.x2e_c00178{left:253.868253pt;}
.x3e_c00178{left:262.694653pt;}
.x1f_c00178{left:263.662653pt;}
.x9_c00178{left:272.854253pt;}
.x3f_c00178{left:282.336253pt;}
.x28_c00178{left:292.522253pt;}
.x38_c00178{left:301.537853pt;}
.x18_c00178{left:302.945853pt;}
.x40_c00178{left:312.801853pt;}
.x12_c00178{left:321.989053pt;}
.x29_c00178{left:331.796653pt;}
.x53_c00178{left:332.764653pt;}
.x2_c00178{left:334.375053pt;}
.xa_c00178{left:342.268653pt;}
.x13_c00178{left:351.583453pt;}
.xb_c00178{left:361.747453pt;}
.x20_c00178{left:371.044653pt;}
.x4e_c00178{left:372.967453pt;}
.x39_c00178{left:380.913853pt;}
.x4f_c00178{left:382.066653pt;}
.x19_c00178{left:390.866653pt;}
.x21_c00178{left:400.366253pt;}
.x2f_c00178{left:401.290253pt;}
.x41_c00178{left:410.688653pt;}
.x36_c00178{left:411.590653pt;}
.xc_c00178{left:420.483053pt;}
.x3a_c00178{left:421.424653pt;}
.x2a_c00178{left:430.933053pt;}
.x42_c00178{left:440.137853pt;}
.x54_c00178{left:441.092653pt;}
.x5e_c00178{left:449.206253pt;}
.x4b_c00178{left:450.429453pt;}
.x14_c00178{left:459.137053pt;}
.x22_c00178{left:460.087453pt;}
.x31_c00178{left:468.931453pt;}
.xd_c00178{left:469.925853pt;}
.x4c_c00178{left:479.262653pt;}
.xe_c00178{left:488.929453pt;}
.x55_c00178{left:490.456253pt;}
.x32_c00178{left:497.962653pt;}
.x15_c00178{left:499.665453pt;}
.x49_c00178{left:508.892253pt;}
.x3b_c00178{left:518.039853pt;}
.xf_c00178{left:518.959453pt;}
.x5b_c00178{left:528.349053pt;}
.x5f_c00178{left:538.011453pt;}
.x3c_c00178{left:547.066653pt;}
.x50_c00178{left:557.323053pt;}
.x60_c00178{left:558.418653pt;}
.x3_c00178{left:567.148253pt;}
.x2b_c00178{left:568.107453pt;}
.x23_c00178{left:576.177053pt;}
.x1a_c00178{left:577.945853pt;}
.x51_c00178{left:586.662253pt;}
.x5c_c00178{left:588.035053pt;}
.x43_c00178{left:589.337453pt;}
.x44_c00178{left:595.994653pt;}
.x24_c00178{left:596.971453pt;}
.x1b_c00178{left:606.444653pt;}
.x10_c00178{left:616.577853pt;}
.x56_c00178{left:617.752653pt;}
.x45_c00178{left:620.062653pt;}
.x62_c00178{left:623.666253pt;}
.x46_c00178{left:626.064253pt;}
.x30_c00178{left:627.740653pt;}
.x63_c00178{left:629.258653pt;}
.x59_c00178{left:631.533453pt;}
.x33_c00178{left:635.458253pt;}
.x61_c00178{left:646.704653pt;}
.x4_c00178{left:647.703453pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d567ad334bdc280bcf339bb8.woff2')format("woff");}.ff1_c00179{font-family:ff1_c00179;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00179;src:url('chunks/assets/font_ec5e81bdba28ca50092a090d.woff2')format("woff");}.ff2_c00179{font-family:ff2_c00179;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00179;src:url('chunks/assets/font_efa4e2c3c720986ca45296f1.woff2')format("woff");}.ff3_c00179{font-family:ff3_c00179;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00179;src:url('chunks/assets/font_40fdbcaab0c189aefdca53fb.woff2')format("woff");}.ff4_c00179{font-family:ff4_c00179;line-height:1.372070;font-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_c00179{transform:matrix(0.153636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153636,0.000000,0.000000,0.250000,0,0);}
.m79_c00179{transform:matrix(0.226249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226249,0.000000,0.000000,0.250000,0,0);}
.m86_c00179{transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);}
.m39_c00179{transform:matrix(0.240884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240884,0.000000,0.000000,0.250000,0,0);}
.m0_c00179{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m58_c00179{transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);}
.m4c_c00179{transform:matrix(0.251170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251170,0.000000,0.000000,0.250000,0,0);}
.m67_c00179{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.m90_c00179{transform:matrix(0.252169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252169,0.000000,0.000000,0.250000,0,0);}
.m53_c00179{transform:matrix(0.255124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255124,0.000000,0.000000,0.250000,0,0);}
.m1_c00179{transform:matrix(0.255169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255169,0.000000,0.000000,0.250000,0,0);}
.m32_c00179{transform:matrix(0.255400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255400,0.000000,0.000000,0.250000,0,0);}
.m9e_c00179{transform:matrix(0.256532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256532,0.000000,0.000000,0.250000,0,0);}
.m48_c00179{transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);}
.m41_c00179{transform:matrix(0.260405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260405,0.000000,0.000000,0.250000,0,0);}
.m4d_c00179{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.ma7_c00179{transform:matrix(0.262979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262979,0.000000,0.000000,0.250000,0,0);}
.m17_c00179{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m7d_c00179{transform:matrix(0.265205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265205,0.000000,0.000000,0.250000,0,0);}
.m8_c00179{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m9_c00179{transform:matrix(0.266295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266295,0.000000,0.000000,0.250000,0,0);}
.m70_c00179{transform:matrix(0.266351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266351,0.000000,0.000000,0.250000,0,0);}
.m4f_c00179{transform:matrix(0.266949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266949,0.000000,0.000000,0.250000,0,0);}
.m2_c00179{transform:matrix(0.267144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267144,0.000000,0.000000,0.250000,0,0);}
.m6_c00179{transform:matrix(0.267199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267199,0.000000,0.000000,0.250000,0,0);}
.m2a_c00179{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m21_c00179{transform:matrix(0.268650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268650,0.000000,0.000000,0.250000,0,0);}
.m55_c00179{transform:matrix(0.268797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268797,0.000000,0.000000,0.250000,0,0);}
.maf_c00179{transform:matrix(0.270773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270773,0.000000,0.000000,0.250000,0,0);}
.m2f_c00179{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m3a_c00179{transform:matrix(0.270977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270977,0.000000,0.000000,0.250000,0,0);}
.m15_c00179{transform:matrix(0.271069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271069,0.000000,0.000000,0.250000,0,0);}
.m51_c00179{transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);}
.mad_c00179{transform:matrix(0.272153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272153,0.000000,0.000000,0.250000,0,0);}
.m30_c00179{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m5e_c00179{transform:matrix(0.272745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272745,0.000000,0.000000,0.250000,0,0);}
.mb2_c00179{transform:matrix(0.273832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273832,0.000000,0.000000,0.250000,0,0);}
.m3d_c00179{transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);}
.m1f_c00179{transform:matrix(0.275287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275287,0.000000,0.000000,0.250000,0,0);}
.m42_c00179{transform:matrix(0.275789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275789,0.000000,0.000000,0.250000,0,0);}
.m6d_c00179{transform:matrix(0.276488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276488,0.000000,0.000000,0.250000,0,0);}
.ma2_c00179{transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);}
.m43_c00179{transform:matrix(0.277902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277902,0.000000,0.000000,0.250000,0,0);}
.m9c_c00179{transform:matrix(0.277907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277907,0.000000,0.000000,0.250000,0,0);}
.mb6_c00179{transform:matrix(0.278387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278387,0.000000,0.000000,0.250000,0,0);}
.m11_c00179{transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);}
.m28_c00179{transform:matrix(0.279482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279482,0.000000,0.000000,0.250000,0,0);}
.mae_c00179{transform:matrix(0.280224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280224,0.000000,0.000000,0.250000,0,0);}
.ma5_c00179{transform:matrix(0.280451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280451,0.000000,0.000000,0.250000,0,0);}
.m8a_c00179{transform:matrix(0.280648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280648,0.000000,0.000000,0.250000,0,0);}
.m9d_c00179{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.m40_c00179{transform:matrix(0.281686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281686,0.000000,0.000000,0.250000,0,0);}
.m23_c00179{transform:matrix(0.282254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282254,0.000000,0.000000,0.250000,0,0);}
.m16_c00179{transform:matrix(0.282301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282301,0.000000,0.000000,0.250000,0,0);}
.m6e_c00179{transform:matrix(0.282619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282619,0.000000,0.000000,0.250000,0,0);}
.mb5_c00179{transform:matrix(0.283088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283088,0.000000,0.000000,0.250000,0,0);}
.mb_c00179{transform:matrix(0.283092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283092,0.000000,0.000000,0.250000,0,0);}
.m8d_c00179{transform:matrix(0.283230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283230,0.000000,0.000000,0.250000,0,0);}
.m72_c00179{transform:matrix(0.285162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285162,0.000000,0.000000,0.250000,0,0);}
.m82_c00179{transform:matrix(0.285864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285864,0.000000,0.000000,0.250000,0,0);}
.m1d_c00179{transform:matrix(0.286207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286207,0.000000,0.000000,0.250000,0,0);}
.m65_c00179{transform:matrix(0.286410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286410,0.000000,0.000000,0.250000,0,0);}
.ma3_c00179{transform:matrix(0.286845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286845,0.000000,0.000000,0.250000,0,0);}
.mf_c00179{transform:matrix(0.286857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286857,0.000000,0.000000,0.250000,0,0);}
.m26_c00179{transform:matrix(0.286908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286908,0.000000,0.000000,0.250000,0,0);}
.m22_c00179{transform:matrix(0.287595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287595,0.000000,0.000000,0.250000,0,0);}
.m10_c00179{transform:matrix(0.287751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287751,0.000000,0.000000,0.250000,0,0);}
.m19_c00179{transform:matrix(0.287771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287771,0.000000,0.000000,0.250000,0,0);}
.m38_c00179{transform:matrix(0.288560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288560,0.000000,0.000000,0.250000,0,0);}
.m9f_c00179{transform:matrix(0.288576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288576,0.000000,0.000000,0.250000,0,0);}
.m93_c00179{transform:matrix(0.288578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288578,0.000000,0.000000,0.250000,0,0);}
.m62_c00179{transform:matrix(0.289089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289089,0.000000,0.000000,0.250000,0,0);}
.m63_c00179{transform:matrix(0.289464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289464,0.000000,0.000000,0.250000,0,0);}
.m75_c00179{transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);}
.m1c_c00179{transform:matrix(0.290931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290931,0.000000,0.000000,0.250000,0,0);}
.m44_c00179{transform:matrix(0.291135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291135,0.000000,0.000000,0.250000,0,0);}
.m96_c00179{transform:matrix(0.291160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291160,0.000000,0.000000,0.250000,0,0);}
.m91_c00179{transform:matrix(0.291185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291185,0.000000,0.000000,0.250000,0,0);}
.m94_c00179{transform:matrix(0.291525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291525,0.000000,0.000000,0.250000,0,0);}
.m7e_c00179{transform:matrix(0.291580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291580,0.000000,0.000000,0.250000,0,0);}
.m6a_c00179{transform:matrix(0.292127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292127,0.000000,0.000000,0.250000,0,0);}
.m7a_c00179{transform:matrix(0.292741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292741,0.000000,0.000000,0.250000,0,0);}
.mab_c00179{transform:matrix(0.293223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293223,0.000000,0.000000,0.250000,0,0);}
.m66_c00179{transform:matrix(0.293544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293544,0.000000,0.000000,0.250000,0,0);}
.m5b_c00179{transform:matrix(0.293570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293570,0.000000,0.000000,0.250000,0,0);}
.m2b_c00179{transform:matrix(0.294082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294082,0.000000,0.000000,0.250000,0,0);}
.m5c_c00179{transform:matrix(0.294290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294290,0.000000,0.000000,0.250000,0,0);}
.m99_c00179{transform:matrix(0.294865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294865,0.000000,0.000000,0.250000,0,0);}
.m34_c00179{transform:matrix(0.294898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294898,0.000000,0.000000,0.250000,0,0);}
.m85_c00179{transform:matrix(0.295013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295013,0.000000,0.000000,0.250000,0,0);}
.m2e_c00179{transform:matrix(0.295775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295775,0.000000,0.000000,0.250000,0,0);}
.ma4_c00179{transform:matrix(0.296031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296031,0.000000,0.000000,0.250000,0,0);}
.m64_c00179{transform:matrix(0.296682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296682,0.000000,0.000000,0.250000,0,0);}
.m95_c00179{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m56_c00179{transform:matrix(0.298525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298525,0.000000,0.000000,0.250000,0,0);}
.m3_c00179{transform:matrix(0.300600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300600,0.000000,0.000000,0.250000,0,0);}
.m12_c00179{transform:matrix(0.301133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301133,0.000000,0.000000,0.250000,0,0);}
.m47_c00179{transform:matrix(0.302567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302567,0.000000,0.000000,0.250000,0,0);}
.m74_c00179{transform:matrix(0.302580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302580,0.000000,0.000000,0.250000,0,0);}
.mb0_c00179{transform:matrix(0.302588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302588,0.000000,0.000000,0.250000,0,0);}
.m29_c00179{transform:matrix(0.302703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302703,0.000000,0.000000,0.250000,0,0);}
.m5_c00179{transform:matrix(0.303753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303753,0.000000,0.000000,0.250000,0,0);}
.m7f_c00179{transform:matrix(0.305093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305093,0.000000,0.000000,0.250000,0,0);}
.m1e_c00179{transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);}
.m9b_c00179{transform:matrix(0.305975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305975,0.000000,0.000000,0.250000,0,0);}
.m6c_c00179{transform:matrix(0.306878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306878,0.000000,0.000000,0.250000,0,0);}
.m84_c00179{transform:matrix(0.307071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307071,0.000000,0.000000,0.250000,0,0);}
.m87_c00179{transform:matrix(0.307242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307242,0.000000,0.000000,0.250000,0,0);}
.m6f_c00179{transform:matrix(0.307299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307299,0.000000,0.000000,0.250000,0,0);}
.m8b_c00179{transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);}
.m8c_c00179{transform:matrix(0.308150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308150,0.000000,0.000000,0.250000,0,0);}
.m81_c00179{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m31_c00179{transform:matrix(0.308869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308869,0.000000,0.000000,0.250000,0,0);}
.m13_c00179{transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);}
.m98_c00179{transform:matrix(0.310694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310694,0.000000,0.000000,0.250000,0,0);}
.m7_c00179{transform:matrix(0.310706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310706,0.000000,0.000000,0.250000,0,0);}
.ma9_c00179{transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);}
.m4_c00179{transform:matrix(0.311181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311181,0.000000,0.000000,0.250000,0,0);}
.m92_c00179{transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);}
.m27_c00179{transform:matrix(0.312852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312852,0.000000,0.000000,0.250000,0,0);}
.m36_c00179{transform:matrix(0.312946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312946,0.000000,0.000000,0.250000,0,0);}
.mb3_c00179{transform:matrix(0.313627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313627,0.000000,0.000000,0.250000,0,0);}
.m1b_c00179{transform:matrix(0.313756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313756,0.000000,0.000000,0.250000,0,0);}
.m2c_c00179{transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);}
.m14_c00179{transform:matrix(0.314095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314095,0.000000,0.000000,0.250000,0,0);}
.maa_c00179{transform:matrix(0.314263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314263,0.000000,0.000000,0.250000,0,0);}
.m3e_c00179{transform:matrix(0.314699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314699,0.000000,0.000000,0.250000,0,0);}
.mac_c00179{transform:matrix(0.315194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315194,0.000000,0.000000,0.250000,0,0);}
.m76_c00179{transform:matrix(0.316737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316737,0.000000,0.000000,0.250000,0,0);}
.m3c_c00179{transform:matrix(0.317247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317247,0.000000,0.000000,0.250000,0,0);}
.m78_c00179{transform:matrix(0.317599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317599,0.000000,0.000000,0.250000,0,0);}
.m37_c00179{transform:matrix(0.318895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318895,0.000000,0.000000,0.250000,0,0);}
.m50_c00179{transform:matrix(0.319105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319105,0.000000,0.000000,0.250000,0,0);}
.m77_c00179{transform:matrix(0.319176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319176,0.000000,0.000000,0.250000,0,0);}
.m4e_c00179{transform:matrix(0.319310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319310,0.000000,0.000000,0.250000,0,0);}
.m7b_c00179{transform:matrix(0.319359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319359,0.000000,0.000000,0.250000,0,0);}
.m71_c00179{transform:matrix(0.319495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319495,0.000000,0.000000,0.250000,0,0);}
.m3f_c00179{transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);}
.m54_c00179{transform:matrix(0.320382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320382,0.000000,0.000000,0.250000,0,0);}
.m6b_c00179{transform:matrix(0.320598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320598,0.000000,0.000000,0.250000,0,0);}
.m5f_c00179{transform:matrix(0.321272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321272,0.000000,0.000000,0.250000,0,0);}
.m45_c00179{transform:matrix(0.322321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322321,0.000000,0.000000,0.250000,0,0);}
.m25_c00179{transform:matrix(0.322443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322443,0.000000,0.000000,0.250000,0,0);}
.m49_c00179{transform:matrix(0.322555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322555,0.000000,0.000000,0.250000,0,0);}
.m69_c00179{transform:matrix(0.323210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323210,0.000000,0.000000,0.250000,0,0);}
.md_c00179{transform:matrix(0.324318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324318,0.000000,0.000000,0.250000,0,0);}
.m20_c00179{transform:matrix(0.324441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324441,0.000000,0.000000,0.250000,0,0);}
.ma6_c00179{transform:matrix(0.325578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325578,0.000000,0.000000,0.250000,0,0);}
.m83_c00179{transform:matrix(0.326627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326627,0.000000,0.000000,0.250000,0,0);}
.m7c_c00179{transform:matrix(0.326875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326875,0.000000,0.000000,0.250000,0,0);}
.m52_c00179{transform:matrix(0.327727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327727,0.000000,0.000000,0.250000,0,0);}
.ma1_c00179{transform:matrix(0.329940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329940,0.000000,0.000000,0.250000,0,0);}
.m4b_c00179{transform:matrix(0.330652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330652,0.000000,0.000000,0.250000,0,0);}
.m46_c00179{transform:matrix(0.331061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331061,0.000000,0.000000,0.250000,0,0);}
.m5a_c00179{transform:matrix(0.331265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331265,0.000000,0.000000,0.250000,0,0);}
.m9a_c00179{transform:matrix(0.332844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332844,0.000000,0.000000,0.250000,0,0);}
.m8e_c00179{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.ma_c00179{transform:matrix(0.333511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333511,0.000000,0.000000,0.250000,0,0);}
.m97_c00179{transform:matrix(0.334384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334384,0.000000,0.000000,0.250000,0,0);}
.m57_c00179{transform:matrix(0.335559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335559,0.000000,0.000000,0.250000,0,0);}
.m2d_c00179{transform:matrix(0.336482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336482,0.000000,0.000000,0.250000,0,0);}
.m4a_c00179{transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);}
.ma0_c00179{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m33_c00179{transform:matrix(0.340207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340207,0.000000,0.000000,0.250000,0,0);}
.mb1_c00179{transform:matrix(0.341464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341464,0.000000,0.000000,0.250000,0,0);}
.mc_c00179{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.m80_c00179{transform:matrix(0.344007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344007,0.000000,0.000000,0.250000,0,0);}
.m73_c00179{transform:matrix(0.346375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346375,0.000000,0.000000,0.250000,0,0);}
.m59_c00179{transform:matrix(0.346728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346728,0.000000,0.000000,0.250000,0,0);}
.m18_c00179{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m5d_c00179{transform:matrix(0.350644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350644,0.000000,0.000000,0.250000,0,0);}
.m35_c00179{transform:matrix(0.350956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350956,0.000000,0.000000,0.250000,0,0);}
.mb4_c00179{transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);}
.m60_c00179{transform:matrix(0.355222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355222,0.000000,0.000000,0.250000,0,0);}
.m1a_c00179{transform:matrix(0.355739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355739,0.000000,0.000000,0.250000,0,0);}
.m61_c00179{transform:matrix(0.358291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358291,0.000000,0.000000,0.250000,0,0);}
.m8f_c00179{transform:matrix(0.362984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362984,0.000000,0.000000,0.250000,0,0);}
.me_c00179{transform:matrix(0.366396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366396,0.000000,0.000000,0.250000,0,0);}
.m88_c00179{transform:matrix(0.367009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367009,0.000000,0.000000,0.250000,0,0);}
.m3b_c00179{transform:matrix(0.368680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368680,0.000000,0.000000,0.250000,0,0);}
.m24_c00179{transform:matrix(0.372071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372071,0.000000,0.000000,0.250000,0,0);}
.m68_c00179{transform:matrix(0.378960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378960,0.000000,0.000000,0.250000,0,0);}
.m89_c00179{transform:matrix(0.392742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392742,0.000000,0.000000,0.250000,0,0);}
.v1_c00179{vertical-align:-17.107200px;}
.v0_c00179{vertical-align:0.000000px;}
.ls9_c00179{letter-spacing:-2.744280px;}
.ls6_c00179{letter-spacing:-2.375762px;}
.ls8_c00179{letter-spacing:-1.897474px;}
.lsa_c00179{letter-spacing:-1.772021px;}
.ls3_c00179{letter-spacing:0.000000px;}
.ls1_c00179{letter-spacing:0.933055px;}
.lsc_c00179{letter-spacing:1.082030px;}
.ls0_c00179{letter-spacing:1.685772px;}
.ls7_c00179{letter-spacing:3.112798px;}
.lsd_c00179{letter-spacing:3.544200px;}
.lsb_c00179{letter-spacing:3.722400px;}
.ls2_c00179{letter-spacing:3.740062px;}
.ls5_c00179{letter-spacing:3.920400px;}
.lse_c00179{letter-spacing:4.039200px;}
.ls4_c00179{letter-spacing:4.257000px;}
.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;}
}
.ws1_c00179{word-spacing:-19.602000px;}
.ws0_c00179{word-spacing:-13.464050px;}
.ws2_c00179{word-spacing:-3.606768px;}
.ws3_c00179{word-spacing:0.000000px;}
._1_c00179{margin-left:-7.970754px;}
._19_c00179{margin-left:-5.583600px;}
._18_c00179{margin-left:-4.077216px;}
._e_c00179{margin-left:-1.857874px;}
._5_c00179{width:3.214728px;}
._10_c00179{width:4.469256px;}
._8_c00179{width:5.802192px;}
._2_c00179{width:7.524726px;}
._6_c00179{width:8.624880px;}
._12_c00179{width:10.506672px;}
._15_c00179{width:12.231648px;}
._16_c00179{width:17.406576px;}
._9_c00179{width:20.856528px;}
._d_c00179{width:22.267476px;}
._f_c00179{width:23.679216px;}
._13_c00179{width:25.629120px;}
._b_c00179{width:27.410328px;}
._17_c00179{width:28.658520px;}
._3_c00179{width:30.297960px;}
._1a_c00179{width:33.048972px;}
._c_c00179{width:34.225092px;}
._a_c00179{width:35.362008px;}
._4_c00179{width:36.783648px;}
._11_c00179{width:37.792656px;}
._14_c00179{width:40.147338px;}
._7_c00179{width:54.716904px;}
._0_c00179{width:520.322616px;}
.fc0_c00179{color:transparent;}
.fs6_c00179{font-size:22.572000px;}
.fs5_c00179{font-size:25.146000px;}
.fs8_c00179{font-size:26.928000px;}
.fse_c00179{font-size:27.720000px;}
.fs0_c00179{font-size:28.314000px;}
.fs10_c00179{font-size:37.620000px;}
.fsf_c00179{font-size:44.946198px;}
.fs1_c00179{font-size:53.856198px;}
.fsa_c00179{font-size:64.548000px;}
.fsb_c00179{font-size:70.884000px;}
.fs2_c00179{font-size:72.864000px;}
.fs9_c00179{font-size:74.448000px;}
.fs4_c00179{font-size:75.240000px;}
.fsc_c00179{font-size:76.824000px;}
.fs7_c00179{font-size:78.408000px;}
.fsd_c00179{font-size:80.784000px;}
.fs3_c00179{font-size:85.140000px;}
.y0_c00179{bottom:0.000000px;}
.y22_c00179{bottom:23.434335px;}
.y21_c00179{bottom:55.861785px;}
.y1_c00179{bottom:76.500000px;}
.y20_c00179{bottom:89.368335px;}
.y1f_c00179{bottom:140.328585px;}
.y1e_c00179{bottom:146.743785px;}
.y1d_c00179{bottom:177.042735px;}
.y1c_c00179{bottom:211.608585px;}
.y1b_c00179{bottom:244.045935px;}
.y1a_c00179{bottom:276.478335px;}
.y19_c00179{bottom:308.910735px;}
.y18_c00179{bottom:341.338185px;}
.y17_c00179{bottom:373.770585px;}
.y16_c00179{bottom:438.635385px;}
.y15_c00179{bottom:470.716335px;}
.y14_c00179{bottom:502.079535px;}
.y13_c00179{bottom:534.506985px;}
.y12_c00179{bottom:566.939385px;}
.y11_c00179{bottom:599.376735px;}
.y10_c00179{bottom:599.383665px;}
.yf_c00179{bottom:631.452735px;}
.ye_c00179{bottom:645.703785px;}
.yd_c00179{bottom:664.241535px;}
.yc_c00179{bottom:695.961135px;}
.yb_c00179{bottom:727.675785px;}
.ya_c00179{bottom:759.756735px;}
.y9_c00179{bottom:793.253385px;}
.y8_c00179{bottom:825.329385px;}
.y7_c00179{bottom:890.550585px;}
.y6_c00179{bottom:923.339385px;}
.y5_c00179{bottom:951.143535px;}
.y4_c00179{bottom:958.271535px;}
.y3_c00179{bottom:1074.096585px;}
.y2_c00179{bottom:1100.470185px;}
.h5_c00179{height:23.541891px;}
.h7_c00179{height:28.085063px;}
.he_c00179{height:28.911094px;}
.hd_c00179{height:29.530617px;}
.h10_c00179{height:39.236484px;}
.hf_c00179{height:44.112235px;}
.h2_c00179{height:54.404831px;}
.h9_c00179{height:67.321547px;}
.ha_c00179{height:69.568770px;}
.h8_c00179{height:75.029625px;}
.hb_c00179{height:75.398555px;}
.h6_c00179{height:76.953164px;}
.h4_c00179{height:78.472969px;}
.hc_c00179{height:81.415125px;}
.h3_c00179{height:85.805156px;}
.h1_c00179{height:1110.000000px;}
.h0_c00179{height:1263.000000px;}
.w1_c00179{width:733.500000px;}
.w0_c00179{width:892.500000px;}
.x0_c00179{left:0.000000px;}
.x35_c00179{left:70.843935px;}
.x23_c00179{left:71.967585px;}
.x6_c00179{left:73.912935px;}
.x1_c00179{left:79.500000px;}
.x36_c00179{left:83.525835px;}
.x4a_c00179{left:94.391085px;}
.x7_c00179{left:105.657285px;}
.x52_c00179{left:107.003685px;}
.x8_c00179{left:117.032385px;}
.x19_c00179{left:126.783885px;}
.x24_c00179{left:128.110485px;}
.x42_c00179{left:138.446085px;}
.x16_c00179{left:139.797435px;}
.x2f_c00179{left:150.182535px;}
.x43_c00179{left:160.904235px;}
.x4b_c00179{left:162.305085px;}
.x9_c00179{left:171.556635px;}
.x25_c00179{left:172.625835px;}
.x4f_c00179{left:183.718785px;}
.x53_c00179{left:192.782235px;}
.xa_c00179{left:194.044485px;}
.x3d_c00179{left:195.083985px;}
.xb_c00179{left:205.092885px;}
.x47_c00179{left:206.112585px;}
.x17_c00179{left:216.141285px;}
.x54_c00179{left:217.913385px;}
.x18_c00179{left:227.343135px;}
.xc_c00179{left:238.594485px;}
.xd_c00179{left:249.286485px;}
.x44_c00179{left:250.702185px;}
.x3e_c00179{left:261.740685px;}
.x1a_c00179{left:271.774335px;}
.x5d_c00179{left:272.808885px;}
.x1b_c00179{left:281.565435px;}
.x26_c00179{left:283.495935px;}
.xe_c00179{left:294.371085px;}
.x30_c00179{left:305.404635px;}
.xf_c00179{left:315.898635px;}
.x45_c00179{left:317.705385px;}
.x27_c00179{left:327.149985px;}
.x50_c00179{left:328.778535px;}
.x4c_c00179{left:337.431135px;}
.x31_c00179{left:338.718135px;}
.x37_c00179{left:348.954735px;}
.x2b_c00179{left:361.205985px;}
.x38_c00179{left:371.690085px;}
.x62_c00179{left:372.902835px;}
.x2c_c00179{left:383.089935px;}
.x58_c00179{left:384.307635px;}
.x28_c00179{left:394.163085px;}
.x4d_c00179{left:402.028635px;}
.x1c_c00179{left:405.384735px;}
.x29_c00179{left:415.799535px;}
.x41_c00179{left:427.481535px;}
.x4e_c00179{left:437.985435px;}
.x1d_c00179{left:449.216985px;}
.x5e_c00179{left:451.320735px;}
.x10_c00179{left:460.641585px;}
.x1e_c00179{left:471.680085px;}
.x1f_c00179{left:482.188935px;}
.x55_c00179{left:483.312585px;}
.x51_c00179{left:485.371785px;}
.x39_c00179{left:493.935285px;}
.x2a_c00179{left:504.345135px;}
.x2d_c00179{left:505.830135px;}
.x59_c00179{left:515.007435px;}
.x11_c00179{left:516.923085px;}
.x3a_c00179{left:527.278485px;}
.x63_c00179{left:528.313035px;}
.x2_c00179{left:535.866735px;}
.x20_c00179{left:537.411135px;}
.x32_c00179{left:539.014935px;}
.x12_c00179{left:549.370335px;}
.x46_c00179{left:560.770185px;}
.x13_c00179{left:571.472085px;}
.x14_c00179{left:582.139335px;}
.x5a_c00179{left:591.989835px;}
.x5f_c00179{left:593.846085px;}
.x40_c00179{left:597.514035px;}
.x33_c00179{left:603.716385px;}
.x2e_c00179{left:615.631035px;}
.x3b_c00179{left:626.001285px;}
.x56_c00179{left:627.045735px;}
.x21_c00179{left:637.411035px;}
.x60_c00179{left:638.440635px;}
.x3_c00179{left:648.147585px;}
.x48_c00179{left:649.157385px;}
.x15_c00179{left:659.319735px;}
.x57_c00179{left:660.492885px;}
.x49_c00179{left:669.962235px;}
.x22_c00179{left:671.229435px;}
.x61_c00179{left:672.254085px;}
.x34_c00179{left:681.594735px;}
.x5_c00179{left:690.935385px;}
.x3c_c00179{left:693.375735px;}
.x5b_c00179{left:694.410285px;}
.x64_c00179{left:695.598285px;}
.x4_c00179{left:699.701835px;}
.x5c_c00179{left:704.379585px;}
.x3f_c00179{left:726.119985px;}
@media print{
.v1_c00179{vertical-align:-15.206400pt;}
.v0_c00179{vertical-align:0.000000pt;}
.ls9_c00179{letter-spacing:-2.439360pt;}
.ls6_c00179{letter-spacing:-2.111789pt;}
.ls8_c00179{letter-spacing:-1.686643pt;}
.lsa_c00179{letter-spacing:-1.575130pt;}
.ls3_c00179{letter-spacing:0.000000pt;}
.ls1_c00179{letter-spacing:0.829382pt;}
.lsc_c00179{letter-spacing:0.961805pt;}
.ls0_c00179{letter-spacing:1.498464pt;}
.ls7_c00179{letter-spacing:2.766931pt;}
.lsd_c00179{letter-spacing:3.150400pt;}
.lsb_c00179{letter-spacing:3.308800pt;}
.ls2_c00179{letter-spacing:3.324499pt;}
.ls5_c00179{letter-spacing:3.484800pt;}
.lse_c00179{letter-spacing:3.590400pt;}
.ls4_c00179{letter-spacing:3.784000pt;}
.ws1_c00179{word-spacing:-17.424000pt;}
.ws0_c00179{word-spacing:-11.968044pt;}
.ws2_c00179{word-spacing:-3.206016pt;}
.ws3_c00179{word-spacing:0.000000pt;}
._1_c00179{margin-left:-7.085115pt;}
._19_c00179{margin-left:-4.963200pt;}
._18_c00179{margin-left:-3.624192pt;}
._e_c00179{margin-left:-1.651443pt;}
._5_c00179{width:2.857536pt;}
._10_c00179{width:3.972672pt;}
._8_c00179{width:5.157504pt;}
._2_c00179{width:6.688645pt;}
._6_c00179{width:7.666560pt;}
._12_c00179{width:9.339264pt;}
._15_c00179{width:10.872576pt;}
._16_c00179{width:15.472512pt;}
._9_c00179{width:18.539136pt;}
._d_c00179{width:19.793312pt;}
._f_c00179{width:21.048192pt;}
._13_c00179{width:22.781440pt;}
._b_c00179{width:24.364736pt;}
._17_c00179{width:25.474240pt;}
._3_c00179{width:26.931520pt;}
._1a_c00179{width:29.376864pt;}
._c_c00179{width:30.422304pt;}
._a_c00179{width:31.432896pt;}
._4_c00179{width:32.696576pt;}
._11_c00179{width:33.593472pt;}
._14_c00179{width:35.686523pt;}
._7_c00179{width:48.637248pt;}
._0_c00179{width:462.508992pt;}
.fs6_c00179{font-size:20.064000pt;}
.fs5_c00179{font-size:22.352000pt;}
.fs8_c00179{font-size:23.936000pt;}
.fse_c00179{font-size:24.640000pt;}
.fs0_c00179{font-size:25.168000pt;}
.fs10_c00179{font-size:33.440000pt;}
.fsf_c00179{font-size:39.952176pt;}
.fs1_c00179{font-size:47.872176pt;}
.fsa_c00179{font-size:57.376000pt;}
.fsb_c00179{font-size:63.008000pt;}
.fs2_c00179{font-size:64.768000pt;}
.fs9_c00179{font-size:66.176000pt;}
.fs4_c00179{font-size:66.880000pt;}
.fsc_c00179{font-size:68.288000pt;}
.fs7_c00179{font-size:69.696000pt;}
.fsd_c00179{font-size:71.808000pt;}
.fs3_c00179{font-size:75.680000pt;}
.y0_c00179{bottom:0.000000pt;}
.y22_c00179{bottom:20.830520pt;}
.y21_c00179{bottom:49.654920pt;}
.y1_c00179{bottom:68.000000pt;}
.y20_c00179{bottom:79.438520pt;}
.y1f_c00179{bottom:124.736520pt;}
.y1e_c00179{bottom:130.438920pt;}
.y1d_c00179{bottom:157.371320pt;}
.y1c_c00179{bottom:188.096520pt;}
.y1b_c00179{bottom:216.929720pt;}
.y1a_c00179{bottom:245.758520pt;}
.y19_c00179{bottom:274.587320pt;}
.y18_c00179{bottom:303.411720pt;}
.y17_c00179{bottom:332.240520pt;}
.y16_c00179{bottom:389.898120pt;}
.y15_c00179{bottom:418.414520pt;}
.y14_c00179{bottom:446.292920pt;}
.y13_c00179{bottom:475.117320pt;}
.y12_c00179{bottom:503.946120pt;}
.y11_c00179{bottom:532.779320pt;}
.y10_c00179{bottom:532.785480pt;}
.yf_c00179{bottom:561.291320pt;}
.ye_c00179{bottom:573.958920pt;}
.yd_c00179{bottom:590.436920pt;}
.yc_c00179{bottom:618.632120pt;}
.yb_c00179{bottom:646.822920pt;}
.ya_c00179{bottom:675.339320pt;}
.y9_c00179{bottom:705.114120pt;}
.y8_c00179{bottom:733.626120pt;}
.y7_c00179{bottom:791.600520pt;}
.y6_c00179{bottom:820.746120pt;}
.y5_c00179{bottom:845.460920pt;}
.y4_c00179{bottom:851.796920pt;}
.y3_c00179{bottom:954.752520pt;}
.y2_c00179{bottom:978.195720pt;}
.h5_c00179{height:20.926125pt;}
.h7_c00179{height:24.964500pt;}
.he_c00179{height:25.698750pt;}
.hd_c00179{height:26.249438pt;}
.h10_c00179{height:34.876875pt;}
.hf_c00179{height:39.210876pt;}
.h2_c00179{height:48.359850pt;}
.h9_c00179{height:59.841375pt;}
.ha_c00179{height:61.838906pt;}
.h8_c00179{height:66.693000pt;}
.hb_c00179{height:67.020938pt;}
.h6_c00179{height:68.402813pt;}
.h4_c00179{height:69.753750pt;}
.hc_c00179{height:72.369000pt;}
.h3_c00179{height:76.271250pt;}
.h1_c00179{height:986.666667pt;}
.h0_c00179{height:1122.666667pt;}
.w1_c00179{width:652.000000pt;}
.w0_c00179{width:793.333333pt;}
.x0_c00179{left:0.000000pt;}
.x35_c00179{left:62.972387pt;}
.x23_c00179{left:63.971187pt;}
.x6_c00179{left:65.700387pt;}
.x1_c00179{left:70.666667pt;}
.x36_c00179{left:74.245187pt;}
.x4a_c00179{left:83.903187pt;}
.x7_c00179{left:93.917587pt;}
.x52_c00179{left:95.114387pt;}
.x8_c00179{left:104.028787pt;}
.x19_c00179{left:112.696787pt;}
.x24_c00179{left:113.875987pt;}
.x42_c00179{left:123.063187pt;}
.x16_c00179{left:124.264387pt;}
.x2f_c00179{left:133.495587pt;}
.x43_c00179{left:143.025987pt;}
.x4b_c00179{left:144.271187pt;}
.x9_c00179{left:152.494787pt;}
.x25_c00179{left:153.445187pt;}
.x4f_c00179{left:163.305587pt;}
.x53_c00179{left:171.361987pt;}
.xa_c00179{left:172.483987pt;}
.x3d_c00179{left:173.407987pt;}
.xb_c00179{left:182.304787pt;}
.x47_c00179{left:183.211187pt;}
.x17_c00179{left:192.125587pt;}
.x54_c00179{left:193.700787pt;}
.x18_c00179{left:202.082787pt;}
.xc_c00179{left:212.083987pt;}
.xd_c00179{left:221.587987pt;}
.x44_c00179{left:222.846387pt;}
.x3e_c00179{left:232.658387pt;}
.x1a_c00179{left:241.577187pt;}
.x5d_c00179{left:242.496787pt;}
.x1b_c00179{left:250.280387pt;}
.x26_c00179{left:251.996387pt;}
.xe_c00179{left:261.663187pt;}
.x30_c00179{left:271.470787pt;}
.xf_c00179{left:280.798787pt;}
.x45_c00179{left:282.404787pt;}
.x27_c00179{left:290.799987pt;}
.x50_c00179{left:292.247587pt;}
.x4c_c00179{left:299.938787pt;}
.x31_c00179{left:301.082787pt;}
.x37_c00179{left:310.181987pt;}
.x2b_c00179{left:321.071987pt;}
.x38_c00179{left:330.391187pt;}
.x62_c00179{left:331.469187pt;}
.x2c_c00179{left:340.524387pt;}
.x58_c00179{left:341.606787pt;}
.x28_c00179{left:350.367187pt;}
.x4d_c00179{left:357.358787pt;}
.x1c_c00179{left:360.341987pt;}
.x29_c00179{left:369.599587pt;}
.x41_c00179{left:379.983587pt;}
.x4e_c00179{left:389.320387pt;}
.x1d_c00179{left:399.303987pt;}
.x5e_c00179{left:401.173987pt;}
.x10_c00179{left:409.459187pt;}
.x1e_c00179{left:419.271187pt;}
.x1f_c00179{left:428.612387pt;}
.x55_c00179{left:429.611187pt;}
.x51_c00179{left:431.441587pt;}
.x39_c00179{left:439.053587pt;}
.x2a_c00179{left:448.306787pt;}
.x2d_c00179{left:449.626787pt;}
.x59_c00179{left:457.784387pt;}
.x11_c00179{left:459.487187pt;}
.x3a_c00179{left:468.691987pt;}
.x63_c00179{left:469.611587pt;}
.x2_c00179{left:476.325987pt;}
.x20_c00179{left:477.698787pt;}
.x32_c00179{left:479.124387pt;}
.x12_c00179{left:488.329187pt;}
.x46_c00179{left:498.462387pt;}
.x13_c00179{left:507.975187pt;}
.x14_c00179{left:517.457187pt;}
.x5a_c00179{left:526.213187pt;}
.x5f_c00179{left:527.863187pt;}
.x40_c00179{left:531.123587pt;}
.x33_c00179{left:536.636787pt;}
.x2e_c00179{left:547.227587pt;}
.x3b_c00179{left:556.445587pt;}
.x56_c00179{left:557.373987pt;}
.x21_c00179{left:566.587587pt;}
.x60_c00179{left:567.502787pt;}
.x3_c00179{left:576.131187pt;}
.x48_c00179{left:577.028787pt;}
.x15_c00179{left:586.061987pt;}
.x57_c00179{left:587.104787pt;}
.x49_c00179{left:595.521987pt;}
.x22_c00179{left:596.648387pt;}
.x61_c00179{left:597.559187pt;}
.x34_c00179{left:605.861987pt;}
.x5_c00179{left:614.164787pt;}
.x3c_c00179{left:616.333987pt;}
.x5b_c00179{left:617.253587pt;}
.x64_c00179{left:618.309587pt;}
.x4_c00179{left:621.957187pt;}
.x5c_c00179{left:626.115187pt;}
.x3f_c00179{left:645.439987pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9e3d0510315ce56f884abd59.woff2')format("woff");}.ff1_c00180{font-family:ff1_c00180;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00180;src:url('chunks/assets/font_29b5456f02aa3f19532ae147.woff2')format("woff");}.ff2_c00180{font-family:ff2_c00180;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00180;src:url('chunks/assets/font_acbfae0ac94185f7c84e8611.woff2')format("woff");}.ff3_c00180{font-family:ff3_c00180;line-height:0.666000;font-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_c00180{transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);}
.m23_c00180{transform:matrix(0.200451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200451,0.000000,0.000000,0.250000,0,0);}
.m93_c00180{transform:matrix(0.222093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222093,0.000000,0.000000,0.250000,0,0);}
.m9c_c00180{transform:matrix(0.222619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222619,0.000000,0.000000,0.250000,0,0);}
.m0_c00180{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m92_c00180{transform:matrix(0.251277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251277,0.000000,0.000000,0.250000,0,0);}
.m1f_c00180{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.m42_c00180{transform:matrix(0.253668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253668,0.000000,0.000000,0.250000,0,0);}
.m6c_c00180{transform:matrix(0.257043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257043,0.000000,0.000000,0.250000,0,0);}
.m3d_c00180{transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);}
.ma5_c00180{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m82_c00180{transform:matrix(0.258788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258788,0.000000,0.000000,0.250000,0,0);}
.m85_c00180{transform:matrix(0.260113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260113,0.000000,0.000000,0.250000,0,0);}
.m79_c00180{transform:matrix(0.261078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261078,0.000000,0.000000,0.250000,0,0);}
.m44_c00180{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m2d_c00180{transform:matrix(0.263439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263439,0.000000,0.000000,0.250000,0,0);}
.m5a_c00180{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m70_c00180{transform:matrix(0.265416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265416,0.000000,0.000000,0.250000,0,0);}
.m3_c00180{transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);}
.m61_c00180{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m51_c00180{transform:matrix(0.266660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266660,0.000000,0.000000,0.250000,0,0);}
.m12_c00180{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.m76_c00180{transform:matrix(0.267199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267199,0.000000,0.000000,0.250000,0,0);}
.m26_c00180{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m71_c00180{transform:matrix(0.269179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269179,0.000000,0.000000,0.250000,0,0);}
.m64_c00180{transform:matrix(0.269234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269234,0.000000,0.000000,0.250000,0,0);}
.m7_c00180{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.ma2_c00180{transform:matrix(0.270968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270968,0.000000,0.000000,0.250000,0,0);}
.m2c_c00180{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m1d_c00180{transform:matrix(0.273782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273782,0.000000,0.000000,0.250000,0,0);}
.m7e_c00180{transform:matrix(0.273911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273911,0.000000,0.000000,0.250000,0,0);}
.m81_c00180{transform:matrix(0.274017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274017,0.000000,0.000000,0.250000,0,0);}
.m7a_c00180{transform:matrix(0.274047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274047,0.000000,0.000000,0.250000,0,0);}
.mf_c00180{transform:matrix(0.274588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274588,0.000000,0.000000,0.250000,0,0);}
.m30_c00180{transform:matrix(0.275162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275162,0.000000,0.000000,0.250000,0,0);}
.m45_c00180{transform:matrix(0.275182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275182,0.000000,0.000000,0.250000,0,0);}
.m15_c00180{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m1_c00180{transform:matrix(0.276116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276116,0.000000,0.000000,0.250000,0,0);}
.m72_c00180{transform:matrix(0.276479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276479,0.000000,0.000000,0.250000,0,0);}
.ma8_c00180{transform:matrix(0.276792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276792,0.000000,0.000000,0.250000,0,0);}
.ma_c00180{transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);}
.ma1_c00180{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m3c_c00180{transform:matrix(0.277948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277948,0.000000,0.000000,0.250000,0,0);}
.m38_c00180{transform:matrix(0.278076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278076,0.000000,0.000000,0.250000,0,0);}
.m55_c00180{transform:matrix(0.278443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278443,0.000000,0.000000,0.250000,0,0);}
.m14_c00180{transform:matrix(0.278773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278773,0.000000,0.000000,0.250000,0,0);}
.m90_c00180{transform:matrix(0.279063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279063,0.000000,0.000000,0.250000,0,0);}
.m33_c00180{transform:matrix(0.280224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280224,0.000000,0.000000,0.250000,0,0);}
.m6_c00180{transform:matrix(0.280247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280247,0.000000,0.000000,0.250000,0,0);}
.m22_c00180{transform:matrix(0.280783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280783,0.000000,0.000000,0.250000,0,0);}
.m4e_c00180{transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);}
.m34_c00180{transform:matrix(0.282093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282093,0.000000,0.000000,0.250000,0,0);}
.m49_c00180{transform:matrix(0.283221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283221,0.000000,0.000000,0.250000,0,0);}
.m74_c00180{transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);}
.m18_c00180{transform:matrix(0.284343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284343,0.000000,0.000000,0.250000,0,0);}
.m63_c00180{transform:matrix(0.284403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284403,0.000000,0.000000,0.250000,0,0);}
.m89_c00180{transform:matrix(0.284537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284537,0.000000,0.000000,0.250000,0,0);}
.m37_c00180{transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);}
.m66_c00180{transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);}
.m5d_c00180{transform:matrix(0.286050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286050,0.000000,0.000000,0.250000,0,0);}
.m28_c00180{transform:matrix(0.286828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286828,0.000000,0.000000,0.250000,0,0);}
.m59_c00180{transform:matrix(0.287053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287053,0.000000,0.000000,0.250000,0,0);}
.m3a_c00180{transform:matrix(0.287343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287343,0.000000,0.000000,0.250000,0,0);}
.m78_c00180{transform:matrix(0.288101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288101,0.000000,0.000000,0.250000,0,0);}
.m47_c00180{transform:matrix(0.288372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288372,0.000000,0.000000,0.250000,0,0);}
.m8d_c00180{transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);}
.m41_c00180{transform:matrix(0.288885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288885,0.000000,0.000000,0.250000,0,0);}
.m65_c00180{transform:matrix(0.289200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289200,0.000000,0.000000,0.250000,0,0);}
.m2_c00180{transform:matrix(0.289301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289301,0.000000,0.000000,0.250000,0,0);}
.m35_c00180{transform:matrix(0.289488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289488,0.000000,0.000000,0.250000,0,0);}
.m11_c00180{transform:matrix(0.290030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290030,0.000000,0.000000,0.250000,0,0);}
.m1c_c00180{transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);}
.m60_c00180{transform:matrix(0.290756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290756,0.000000,0.000000,0.250000,0,0);}
.m73_c00180{transform:matrix(0.292114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292114,0.000000,0.000000,0.250000,0,0);}
.m3e_c00180{transform:matrix(0.292385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292385,0.000000,0.000000,0.250000,0,0);}
.m4_c00180{transform:matrix(0.292741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292741,0.000000,0.000000,0.250000,0,0);}
.m7b_c00180{transform:matrix(0.292839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292839,0.000000,0.000000,0.250000,0,0);}
.m4f_c00180{transform:matrix(0.293585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293585,0.000000,0.000000,0.250000,0,0);}
.maa_c00180{transform:matrix(0.293689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293689,0.000000,0.000000,0.250000,0,0);}
.ma4_c00180{transform:matrix(0.294033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294033,0.000000,0.000000,0.250000,0,0);}
.m96_c00180{transform:matrix(0.294699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294699,0.000000,0.000000,0.250000,0,0);}
.m6d_c00180{transform:matrix(0.294800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294800,0.000000,0.000000,0.250000,0,0);}
.m5b_c00180{transform:matrix(0.295700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295700,0.000000,0.000000,0.250000,0,0);}
.ma6_c00180{transform:matrix(0.295978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295978,0.000000,0.000000,0.250000,0,0);}
.m2e_c00180{transform:matrix(0.296285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296285,0.000000,0.000000,0.250000,0,0);}
.m1e_c00180{transform:matrix(0.296364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296364,0.000000,0.000000,0.250000,0,0);}
.m20_c00180{transform:matrix(0.296846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296846,0.000000,0.000000,0.250000,0,0);}
.m9f_c00180{transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);}
.m97_c00180{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m57_c00180{transform:matrix(0.297852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297852,0.000000,0.000000,0.250000,0,0);}
.mc_c00180{transform:matrix(0.299763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299763,0.000000,0.000000,0.250000,0,0);}
.m32_c00180{transform:matrix(0.300415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300415,0.000000,0.000000,0.250000,0,0);}
.m8e_c00180{transform:matrix(0.301687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301687,0.000000,0.000000,0.250000,0,0);}
.m4c_c00180{transform:matrix(0.302117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302117,0.000000,0.000000,0.250000,0,0);}
.m13_c00180{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m3b_c00180{transform:matrix(0.303128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303128,0.000000,0.000000,0.250000,0,0);}
.m88_c00180{transform:matrix(0.303357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303357,0.000000,0.000000,0.250000,0,0);}
.m2f_c00180{transform:matrix(0.303537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303537,0.000000,0.000000,0.250000,0,0);}
.m77_c00180{transform:matrix(0.303896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303896,0.000000,0.000000,0.250000,0,0);}
.m53_c00180{transform:matrix(0.303926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303926,0.000000,0.000000,0.250000,0,0);}
.m6b_c00180{transform:matrix(0.304481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304481,0.000000,0.000000,0.250000,0,0);}
.m8_c00180{transform:matrix(0.305670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305670,0.000000,0.000000,0.250000,0,0);}
.m46_c00180{transform:matrix(0.305914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305914,0.000000,0.000000,0.250000,0,0);}
.m83_c00180{transform:matrix(0.306494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306494,0.000000,0.000000,0.250000,0,0);}
.m87_c00180{transform:matrix(0.307306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307306,0.000000,0.000000,0.250000,0,0);}
.m25_c00180{transform:matrix(0.307719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307719,0.000000,0.000000,0.250000,0,0);}
.m98_c00180{transform:matrix(0.308230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308230,0.000000,0.000000,0.250000,0,0);}
.m17_c00180{transform:matrix(0.308280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308280,0.000000,0.000000,0.250000,0,0);}
.m48_c00180{transform:matrix(0.308319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308319,0.000000,0.000000,0.250000,0,0);}
.m9d_c00180{transform:matrix(0.308583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308583,0.000000,0.000000,0.250000,0,0);}
.m69_c00180{transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);}
.m6e_c00180{transform:matrix(0.309111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309111,0.000000,0.000000,0.250000,0,0);}
.m40_c00180{transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);}
.m99_c00180{transform:matrix(0.311042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311042,0.000000,0.000000,0.250000,0,0);}
.m91_c00180{transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);}
.m10_c00180{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.m95_c00180{transform:matrix(0.312941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312941,0.000000,0.000000,0.250000,0,0);}
.m58_c00180{transform:matrix(0.312985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312985,0.000000,0.000000,0.250000,0,0);}
.m9_c00180{transform:matrix(0.314570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314570,0.000000,0.000000,0.250000,0,0);}
.m3f_c00180{transform:matrix(0.315198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315198,0.000000,0.000000,0.250000,0,0);}
.m84_c00180{transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);}
.m31_c00180{transform:matrix(0.316261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316261,0.000000,0.000000,0.250000,0,0);}
.m7d_c00180{transform:matrix(0.316427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316427,0.000000,0.000000,0.250000,0,0);}
.m6f_c00180{transform:matrix(0.316523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316523,0.000000,0.000000,0.250000,0,0);}
.ma3_c00180{transform:matrix(0.316677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316677,0.000000,0.000000,0.250000,0,0);}
.m52_c00180{transform:matrix(0.317599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317599,0.000000,0.000000,0.250000,0,0);}
.m94_c00180{transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);}
.m80_c00180{transform:matrix(0.319500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319500,0.000000,0.000000,0.250000,0,0);}
.m29_c00180{transform:matrix(0.319509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319509,0.000000,0.000000,0.250000,0,0);}
.m21_c00180{transform:matrix(0.320307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320307,0.000000,0.000000,0.250000,0,0);}
.m4b_c00180{transform:matrix(0.320686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320686,0.000000,0.000000,0.250000,0,0);}
.m9e_c00180{transform:matrix(0.321083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321083,0.000000,0.000000,0.250000,0,0);}
.m39_c00180{transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);}
.m8b_c00180{transform:matrix(0.323206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323206,0.000000,0.000000,0.250000,0,0);}
.m50_c00180{transform:matrix(0.323210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323210,0.000000,0.000000,0.250000,0,0);}
.m8a_c00180{transform:matrix(0.324242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324242,0.000000,0.000000,0.250000,0,0);}
.md_c00180{transform:matrix(0.324315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324315,0.000000,0.000000,0.250000,0,0);}
.m9b_c00180{transform:matrix(0.324732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324732,0.000000,0.000000,0.250000,0,0);}
.m8f_c00180{transform:matrix(0.325172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325172,0.000000,0.000000,0.250000,0,0);}
.m68_c00180{transform:matrix(0.325354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325354,0.000000,0.000000,0.250000,0,0);}
.m62_c00180{transform:matrix(0.326063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326063,0.000000,0.000000,0.250000,0,0);}
.m5e_c00180{transform:matrix(0.326402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326402,0.000000,0.000000,0.250000,0,0);}
.m7f_c00180{transform:matrix(0.326455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326455,0.000000,0.000000,0.250000,0,0);}
.m67_c00180{transform:matrix(0.326852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326852,0.000000,0.000000,0.250000,0,0);}
.m54_c00180{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.m56_c00180{transform:matrix(0.327729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327729,0.000000,0.000000,0.250000,0,0);}
.ma0_c00180{transform:matrix(0.329979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329979,0.000000,0.000000,0.250000,0,0);}
.m2b_c00180{transform:matrix(0.331303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331303,0.000000,0.000000,0.250000,0,0);}
.m1b_c00180{transform:matrix(0.331545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331545,0.000000,0.000000,0.250000,0,0);}
.m16_c00180{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m7c_c00180{transform:matrix(0.333623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333623,0.000000,0.000000,0.250000,0,0);}
.m43_c00180{transform:matrix(0.335459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335459,0.000000,0.000000,0.250000,0,0);}
.m8c_c00180{transform:matrix(0.338714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338714,0.000000,0.000000,0.250000,0,0);}
.m2a_c00180{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m36_c00180{transform:matrix(0.340207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340207,0.000000,0.000000,0.250000,0,0);}
.ma9_c00180{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.m9a_c00180{transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);}
.ma7_c00180{transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);}
.m86_c00180{transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);}
.m5_c00180{transform:matrix(0.347603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347603,0.000000,0.000000,0.250000,0,0);}
.m5c_c00180{transform:matrix(0.347922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347922,0.000000,0.000000,0.250000,0,0);}
.m24_c00180{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m19_c00180{transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);}
.m4a_c00180{transform:matrix(0.351400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351400,0.000000,0.000000,0.250000,0,0);}
.m27_c00180{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.mb_c00180{transform:matrix(0.358842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358842,0.000000,0.000000,0.250000,0,0);}
.me_c00180{transform:matrix(0.363115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363115,0.000000,0.000000,0.250000,0,0);}
.m4d_c00180{transform:matrix(0.366396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366396,0.000000,0.000000,0.250000,0,0);}
.m75_c00180{transform:matrix(0.375799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375799,0.000000,0.000000,0.250000,0,0);}
.m1a_c00180{transform:matrix(0.381065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381065,0.000000,0.000000,0.250000,0,0);}
.m6a_c00180{transform:matrix(0.416528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416528,0.000000,0.000000,0.250000,0,0);}
.v0_c00180{vertical-align:0.000000px;}
.lsc_c00180{letter-spacing:-3.755981px;}
.lsd_c00180{letter-spacing:-2.744280px;}
.ls9_c00180{letter-spacing:-0.486130px;}
.ls2_c00180{letter-spacing:0.000000px;}
.ls8_c00180{letter-spacing:1.152598px;}
.lsb_c00180{letter-spacing:1.481911px;}
.ls4_c00180{letter-spacing:3.112798px;}
.ls6_c00180{letter-spacing:3.474900px;}
.lsa_c00180{letter-spacing:3.504838px;}
.ls0_c00180{letter-spacing:3.881196px;}
.ls1_c00180{letter-spacing:3.889037px;}
.ls3_c00180{letter-spacing:3.920400px;}
.ls7_c00180{letter-spacing:31.363200px;}
.lse_c00180{letter-spacing:49.896198px;}
.ls5_c00180{letter-spacing:52.747398px;}
.sc__c00180{text-shadow:none;}
.sc0_c00180{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00180{-webkit-text-stroke:0px transparent;}
.sc0_c00180{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00180{word-spacing:-19.602000px;}
.ws1_c00180{word-spacing:0.000000px;}
._1_c00180{width:5.723784px;}
._0_c00180{width:7.135128px;}
._6_c00180{width:8.624880px;}
._4_c00180{width:10.035828px;}
._5_c00180{width:15.681600px;}
._3_c00180{width:20.856528px;}
._2_c00180{width:22.267872px;}
._8_c00180{width:28.533701px;}
._7_c00180{width:30.971160px;}
._9_c00180{width:36.851760px;}
.fc0_c00180{color:transparent;}
.fs1_c00180{font-size:22.176000px;}
.fs0_c00180{font-size:27.720000px;}
.fsc_c00180{font-size:28.314000px;}
.fs6_c00180{font-size:31.363200px;}
.fs7_c00180{font-size:33.264000px;}
.fs8_c00180{font-size:34.056198px;}
.fsb_c00180{font-size:49.896198px;}
.fs3_c00180{font-size:52.747398px;}
.fs5_c00180{font-size:61.776198px;}
.fs4_c00180{font-size:69.498000px;}
.fsa_c00180{font-size:75.240000px;}
.fs2_c00180{font-size:78.408000px;}
.fs9_c00180{font-size:120.384000px;}
.y0_c00180{bottom:0.000000px;}
.y28_c00180{bottom:7.396335px;}
.y27_c00180{bottom:13.093785px;}
.y26_c00180{bottom:59.069385px;}
.y25_c00180{bottom:75.468735px;}
.y1_c00180{bottom:76.500000px;}
.y24_c00180{bottom:94.001535px;}
.y23_c00180{bottom:122.869935px;}
.y22_c00180{bottom:131.779935px;}
.y21_c00180{bottom:150.312735px;}
.y20_c00180{bottom:181.319535px;}
.y1f_c00180{bottom:215.533935px;}
.y1c_c00180{bottom:235.492335px;}
.y1b_c00180{bottom:279.680985px;}
.y1e_c00180{bottom:291.090735px;}
.y3_c00180{bottom:309.979935px;}
.y1d_c00180{bottom:310.336335px;}
.y1a_c00180{bottom:312.118335px;}
.y19_c00180{bottom:332.789535px;}
.y18_c00180{bottom:344.550735px;}
.y17_c00180{bottom:376.978185px;}
.y16_c00180{bottom:409.059135px;}
.y15_c00180{bottom:441.135135px;}
.y14_c00180{bottom:473.211135px;}
.y10_c00180{bottom:537.714585px;}
.y13_c00180{bottom:560.529135px;}
.y12_c00180{bottom:569.439135px;}
.yf_c00180{bottom:569.790585px;}
.y11_c00180{bottom:584.407935px;}
.y2_c00180{bottom:592.961535px;}
.ye_c00180{bottom:602.935785px;}
.yd_c00180{bottom:635.724585px;}
.yc_c00180{bottom:667.800585px;}
.yb_c00180{bottom:700.945785px;}
.ya_c00180{bottom:764.741385px;}
.y9_c00180{bottom:796.465935px;}
.y8_c00180{bottom:828.536985px;}
.y7_c00180{bottom:860.969385px;}
.y6_c00180{bottom:893.406735px;}
.y5_c00180{bottom:926.190585px;}
.y4_c00180{bottom:1075.522185px;}
.h8_c00180{height:20.887891px;}
.h3_c00180{height:23.128875px;}
.h2_c00180{height:28.911094px;}
.he_c00180{height:29.530617px;}
.hd_c00180{height:33.230868px;}
.h9_c00180{height:34.693313px;}
.h5_c00180{height:35.129767px;}
.ha_c00180{height:35.519550px;}
.h7_c00180{height:60.629960px;}
.h6_c00180{height:68.208486px;}
.h4_c00180{height:76.953164px;}
.hc_c00180{height:78.472969px;}
.hb_c00180{height:118.150313px;}
.h1_c00180{height:1110.000000px;}
.h0_c00180{height:1263.000000px;}
.w1_c00180{width:733.500000px;}
.w0_c00180{width:892.500000px;}
.x0_c00180{left:0.000000px;}
.x2_c00180{left:45.193035px;}
.x3f_c00180{left:72.319035px;}
.x22_c00180{left:73.734735px;}
.x4_c00180{left:75.298935px;}
.x1_c00180{left:79.500000px;}
.x40_c00180{left:84.604935px;}
.x60_c00180{left:96.034485px;}
.x3c_c00180{left:105.830535px;}
.x1a_c00180{left:107.671935px;}
.x31_c00180{left:118.032285px;}
.x1b_c00180{left:119.363835px;}
.x32_c00180{left:128.897535px;}
.x4d_c00180{left:139.871685px;}
.x1c_c00180{left:141.539835px;}
.x41_c00180{left:150.053835px;}
.x37_c00180{left:151.058685px;}
.x5_c00180{left:152.340735px;}
.x33_c00180{left:161.760585px;}
.x13_c00180{left:163.037685px;}
.x14_c00180{left:173.501985px;}
.x52_c00180{left:184.297935px;}
.x23_c00180{left:185.456235px;}
.x42_c00180{left:194.554335px;}
.x6_c00180{left:195.965085px;}
.x15_c00180{left:207.231285px;}
.x58_c00180{left:209.013285px;}
.x24_c00180{left:218.086635px;}
.x5d_c00180{left:227.753985px;}
.x7_c00180{left:229.328085px;}
.x63_c00180{left:234.797835px;}
.x8_c00180{left:239.916135px;}
.x61_c00180{left:241.044735px;}
.x46_c00180{left:250.167585px;}
.x1d_c00180{left:251.781285px;}
.x1e_c00180{left:262.250535px;}
.x53_c00180{left:273.165285px;}
.x9_c00180{left:274.234485px;}
.x5a_c00180{left:282.733635px;}
.x43_c00180{left:284.352285px;}
.xa_c00180{left:295.964985px;}
.x3d_c00180{left:307.359885px;}
.x48_c00180{left:317.497485px;}
.x16_c00180{left:318.749835px;}
.x1f_c00180{left:329.189385px;}
.x25_c00180{left:340.168485px;}
.x2c_c00180{left:351.216885px;}
.xb_c00180{left:352.261335px;}
.x20_c00180{left:362.057385px;}
.x4e_c00180{left:364.670985px;}
.x54_c00180{left:372.942435px;}
.x26_c00180{left:373.986885px;}
.xc_c00180{left:384.713535px;}
.x4f_c00180{left:395.054085px;}
.x27_c00180{left:407.409285px;}
.x44_c00180{left:416.230185px;}
.x38_c00180{left:417.507285px;}
.x64_c00180{left:418.675485px;}
.x34_c00180{left:429.605085px;}
.x62_c00180{left:434.258085px;}
.x21_c00180{left:440.193135px;}
.x39_c00180{left:450.875235px;}
.x28_c00180{left:452.424585px;}
.x29_c00180{left:462.195885px;}
.x50_c00180{left:473.457135px;}
.x5b_c00180{left:482.218635px;}
.xd_c00180{left:483.975885px;}
.x49_c00180{left:493.267035px;}
.x17_c00180{left:495.202485px;}
.x3a_c00180{left:506.429085px;}
.xe_c00180{left:517.437885px;}
.x4a_c00180{left:527.426985px;}
.x3b_c00180{left:528.991185px;}
.x18_c00180{left:539.970285px;}
.x35_c00180{left:550.776135px;}
.x45_c00180{left:561.131535px;}
.x2a_c00180{left:562.477935px;}
.x19_c00180{left:572.773935px;}
.xf_c00180{left:593.771835px;}
.x2d_c00180{left:594.994485px;}
.x4b_c00180{left:606.226035px;}
.x55_c00180{left:616.180485px;}
.x2e_c00180{left:627.783285px;}
.x5e_c00180{left:638.133735px;}
.x10_c00180{left:639.346485px;}
.x51_c00180{left:641.272035px;}
.x5f_c00180{left:647.944635px;}
.x4c_c00180{left:649.330635px;}
.x5c_c00180{left:650.533485px;}
.x3_c00180{left:652.320435px;}
.x57_c00180{left:660.577035px;}
.x2f_c00180{left:661.963035px;}
.x3e_c00180{left:672.130335px;}
.x11_c00180{left:673.402485px;}
.x36_c00180{left:683.470785px;}
.x12_c00180{left:684.777585px;}
.x30_c00180{left:691.781835px;}
.x56_c00180{left:693.172785px;}
.x2b_c00180{left:694.781535px;}
.x47_c00180{left:697.236735px;}
.x59_c00180{left:703.622235px;}
@media print{
.v0_c00180{vertical-align:0.000000pt;}
.lsc_c00180{letter-spacing:-3.338650pt;}
.lsd_c00180{letter-spacing:-2.439360pt;}
.ls9_c00180{letter-spacing:-0.432115pt;}
.ls2_c00180{letter-spacing:0.000000pt;}
.ls8_c00180{letter-spacing:1.024531pt;}
.lsb_c00180{letter-spacing:1.317254pt;}
.ls4_c00180{letter-spacing:2.766931pt;}
.ls6_c00180{letter-spacing:3.088800pt;}
.lsa_c00180{letter-spacing:3.115411pt;}
.ls0_c00180{letter-spacing:3.449952pt;}
.ls1_c00180{letter-spacing:3.456922pt;}
.ls3_c00180{letter-spacing:3.484800pt;}
.ls7_c00180{letter-spacing:27.878400pt;}
.lse_c00180{letter-spacing:44.352176pt;}
.ls5_c00180{letter-spacing:46.886576pt;}
.ws0_c00180{word-spacing:-17.424000pt;}
.ws1_c00180{word-spacing:0.000000pt;}
._1_c00180{width:5.087808pt;}
._0_c00180{width:6.342336pt;}
._6_c00180{width:7.666560pt;}
._4_c00180{width:8.920736pt;}
._5_c00180{width:13.939200pt;}
._3_c00180{width:18.539136pt;}
._2_c00180{width:19.793664pt;}
._8_c00180{width:25.363290pt;}
._7_c00180{width:27.529920pt;}
._9_c00180{width:32.757120pt;}
.fs1_c00180{font-size:19.712000pt;}
.fs0_c00180{font-size:24.640000pt;}
.fsc_c00180{font-size:25.168000pt;}
.fs6_c00180{font-size:27.878400pt;}
.fs7_c00180{font-size:29.568000pt;}
.fs8_c00180{font-size:30.272176pt;}
.fsb_c00180{font-size:44.352176pt;}
.fs3_c00180{font-size:46.886576pt;}
.fs5_c00180{font-size:54.912176pt;}
.fs4_c00180{font-size:61.776000pt;}
.fsa_c00180{font-size:66.880000pt;}
.fs2_c00180{font-size:69.696000pt;}
.fs9_c00180{font-size:107.008000pt;}
.y0_c00180{bottom:0.000000pt;}
.y28_c00180{bottom:6.574520pt;}
.y27_c00180{bottom:11.638920pt;}
.y26_c00180{bottom:52.506120pt;}
.y25_c00180{bottom:67.083320pt;}
.y1_c00180{bottom:68.000000pt;}
.y24_c00180{bottom:83.556920pt;}
.y23_c00180{bottom:109.217720pt;}
.y22_c00180{bottom:117.137720pt;}
.y21_c00180{bottom:133.611320pt;}
.y20_c00180{bottom:161.172920pt;}
.y1f_c00180{bottom:191.585720pt;}
.y1c_c00180{bottom:209.326520pt;}
.y1b_c00180{bottom:248.605320pt;}
.y1e_c00180{bottom:258.747320pt;}
.y3_c00180{bottom:275.537720pt;}
.y1d_c00180{bottom:275.854520pt;}
.y1a_c00180{bottom:277.438520pt;}
.y19_c00180{bottom:295.812920pt;}
.y18_c00180{bottom:306.267320pt;}
.y17_c00180{bottom:335.091720pt;}
.y16_c00180{bottom:363.608120pt;}
.y15_c00180{bottom:392.120120pt;}
.y14_c00180{bottom:420.632120pt;}
.y10_c00180{bottom:477.968520pt;}
.y13_c00180{bottom:498.248120pt;}
.y12_c00180{bottom:506.168120pt;}
.yf_c00180{bottom:506.480520pt;}
.y11_c00180{bottom:519.473720pt;}
.y2_c00180{bottom:527.076920pt;}
.ye_c00180{bottom:535.942920pt;}
.yd_c00180{bottom:565.088520pt;}
.yc_c00180{bottom:593.600520pt;}
.yb_c00180{bottom:623.062920pt;}
.ya_c00180{bottom:679.770120pt;}
.y9_c00180{bottom:707.969720pt;}
.y8_c00180{bottom:736.477320pt;}
.y7_c00180{bottom:765.306120pt;}
.y6_c00180{bottom:794.139320pt;}
.y5_c00180{bottom:823.280520pt;}
.y4_c00180{bottom:956.019720pt;}
.h8_c00180{height:18.567014pt;}
.h3_c00180{height:20.559000pt;}
.h2_c00180{height:25.698750pt;}
.he_c00180{height:26.249438pt;}
.hd_c00180{height:29.538549pt;}
.h9_c00180{height:30.838500pt;}
.h5_c00180{height:31.226460pt;}
.ha_c00180{height:31.572934pt;}
.h7_c00180{height:53.893298pt;}
.h6_c00180{height:60.629766pt;}
.h4_c00180{height:68.402813pt;}
.hc_c00180{height:69.753750pt;}
.hb_c00180{height:105.022500pt;}
.h1_c00180{height:986.666667pt;}
.h0_c00180{height:1122.666667pt;}
.w1_c00180{width:652.000000pt;}
.w0_c00180{width:793.333333pt;}
.x0_c00180{left:0.000000pt;}
.x2_c00180{left:40.171587pt;}
.x3f_c00180{left:64.283587pt;}
.x22_c00180{left:65.541987pt;}
.x4_c00180{left:66.932387pt;}
.x1_c00180{left:70.666667pt;}
.x40_c00180{left:75.204387pt;}
.x60_c00180{left:85.363987pt;}
.x3c_c00180{left:94.071587pt;}
.x1a_c00180{left:95.708387pt;}
.x31_c00180{left:104.917587pt;}
.x1b_c00180{left:106.101187pt;}
.x32_c00180{left:114.575587pt;}
.x4d_c00180{left:124.330387pt;}
.x1c_c00180{left:125.813187pt;}
.x41_c00180{left:133.381187pt;}
.x37_c00180{left:134.274387pt;}
.x5_c00180{left:135.413987pt;}
.x33_c00180{left:143.787187pt;}
.x13_c00180{left:144.922387pt;}
.x14_c00180{left:154.223987pt;}
.x52_c00180{left:163.820387pt;}
.x23_c00180{left:164.849987pt;}
.x42_c00180{left:172.937187pt;}
.x6_c00180{left:174.191187pt;}
.x15_c00180{left:184.205587pt;}
.x58_c00180{left:185.789587pt;}
.x24_c00180{left:193.854787pt;}
.x5d_c00180{left:202.447987pt;}
.x7_c00180{left:203.847187pt;}
.x63_c00180{left:208.709187pt;}
.x8_c00180{left:213.258787pt;}
.x61_c00180{left:214.261987pt;}
.x46_c00180{left:222.371187pt;}
.x1d_c00180{left:223.805587pt;}
.x1e_c00180{left:233.111587pt;}
.x53_c00180{left:242.813587pt;}
.x9_c00180{left:243.763987pt;}
.x5a_c00180{left:251.318787pt;}
.x43_c00180{left:252.757587pt;}
.xa_c00180{left:263.079987pt;}
.x3d_c00180{left:273.208787pt;}
.x48_c00180{left:282.219987pt;}
.x16_c00180{left:283.333187pt;}
.x1f_c00180{left:292.612787pt;}
.x25_c00180{left:302.371987pt;}
.x2c_c00180{left:312.192787pt;}
.xb_c00180{left:313.121187pt;}
.x20_c00180{left:321.828787pt;}
.x4e_c00180{left:324.151987pt;}
.x54_c00180{left:331.504387pt;}
.x26_c00180{left:332.432787pt;}
.xc_c00180{left:341.967587pt;}
.x4f_c00180{left:351.159187pt;}
.x27_c00180{left:362.141587pt;}
.x44_c00180{left:369.982387pt;}
.x38_c00180{left:371.117587pt;}
.x64_c00180{left:372.155987pt;}
.x34_c00180{left:381.871187pt;}
.x62_c00180{left:386.007187pt;}
.x21_c00180{left:391.282787pt;}
.x39_c00180{left:400.777987pt;}
.x28_c00180{left:402.155187pt;}
.x29_c00180{left:410.840787pt;}
.x50_c00180{left:420.850787pt;}
.x5b_c00180{left:428.638787pt;}
.xd_c00180{left:430.200787pt;}
.x49_c00180{left:438.459587pt;}
.x17_c00180{left:440.179987pt;}
.x3a_c00180{left:450.159187pt;}
.xe_c00180{left:459.944787pt;}
.x4a_c00180{left:468.823987pt;}
.x3b_c00180{left:470.214387pt;}
.x18_c00180{left:479.973587pt;}
.x35_c00180{left:489.578787pt;}
.x45_c00180{left:498.783587pt;}
.x2a_c00180{left:499.980387pt;}
.x19_c00180{left:509.132387pt;}
.xf_c00180{left:527.797187pt;}
.x2d_c00180{left:528.883987pt;}
.x4b_c00180{left:538.867587pt;}
.x55_c00180{left:547.715987pt;}
.x2e_c00180{left:558.029587pt;}
.x5e_c00180{left:567.229987pt;}
.x10_c00180{left:568.307987pt;}
.x51_c00180{left:570.019587pt;}
.x5f_c00180{left:575.950787pt;}
.x4c_c00180{left:577.182787pt;}
.x5c_c00180{left:578.251987pt;}
.x3_c00180{left:579.840387pt;}
.x57_c00180{left:587.179587pt;}
.x2f_c00180{left:588.411587pt;}
.x3e_c00180{left:597.449187pt;}
.x11_c00180{left:598.579987pt;}
.x36_c00180{left:607.529587pt;}
.x12_c00180{left:608.691187pt;}
.x30_c00180{left:614.917187pt;}
.x56_c00180{left:616.153587pt;}
.x2b_c00180{left:617.583587pt;}
.x47_c00180{left:619.765987pt;}
.x59_c00180{left:625.441987pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1a6b8b9b11120f097c94d321.woff2')format("woff");}.ff1_c00181{font-family:ff1_c00181;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00181;src:url('chunks/assets/font_d56df8a2a404b04c79d3a421.woff2')format("woff");}.ff2_c00181{font-family:ff2_c00181;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00181;src:url('chunks/assets/font_c924fc76fb32abc3ff3f29bc.woff2')format("woff");}.ff3_c00181{font-family:ff3_c00181;line-height:0.666000;font-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_c00181{transform:matrix(0.147920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147920,0.000000,0.000000,0.250000,0,0);}
.m3b_c00181{transform:matrix(0.203572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203572,0.000000,0.000000,0.250000,0,0);}
.m0_c00181{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00181{transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);}
.m85_c00181{transform:matrix(0.250823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250823,0.000000,0.000000,0.250000,0,0);}
.ma4_c00181{transform:matrix(0.255481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255481,0.000000,0.000000,0.250000,0,0);}
.m45_c00181{transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);}
.m9b_c00181{transform:matrix(0.258169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258169,0.000000,0.000000,0.250000,0,0);}
.m9d_c00181{transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);}
.m43_c00181{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m97_c00181{transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);}
.m21_c00181{transform:matrix(0.260756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260756,0.000000,0.000000,0.250000,0,0);}
.m38_c00181{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m70_c00181{transform:matrix(0.261121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261121,0.000000,0.000000,0.250000,0,0);}
.m74_c00181{transform:matrix(0.261462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261462,0.000000,0.000000,0.250000,0,0);}
.m87_c00181{transform:matrix(0.261678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261678,0.000000,0.000000,0.250000,0,0);}
.m7c_c00181{transform:matrix(0.261735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261735,0.000000,0.000000,0.250000,0,0);}
.m57_c00181{transform:matrix(0.263083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263083,0.000000,0.000000,0.250000,0,0);}
.m27_c00181{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m16_c00181{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m89_c00181{transform:matrix(0.264652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264652,0.000000,0.000000,0.250000,0,0);}
.m2b_c00181{transform:matrix(0.264886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264886,0.000000,0.000000,0.250000,0,0);}
.m24_c00181{transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);}
.m58_c00181{transform:matrix(0.265695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265695,0.000000,0.000000,0.250000,0,0);}
.m88_c00181{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m1d_c00181{transform:matrix(0.266295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266295,0.000000,0.000000,0.250000,0,0);}
.m4c_c00181{transform:matrix(0.266730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266730,0.000000,0.000000,0.250000,0,0);}
.m65_c00181{transform:matrix(0.267040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267040,0.000000,0.000000,0.250000,0,0);}
.m50_c00181{transform:matrix(0.267158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267158,0.000000,0.000000,0.250000,0,0);}
.m9_c00181{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.ma3_c00181{transform:matrix(0.267974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267974,0.000000,0.000000,0.250000,0,0);}
.m2a_c00181{transform:matrix(0.268624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268624,0.000000,0.000000,0.250000,0,0);}
.m8_c00181{transform:matrix(0.268694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268694,0.000000,0.000000,0.250000,0,0);}
.m47_c00181{transform:matrix(0.269001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269001,0.000000,0.000000,0.250000,0,0);}
.m9f_c00181{transform:matrix(0.269988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269988,0.000000,0.000000,0.250000,0,0);}
.m86_c00181{transform:matrix(0.270604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270604,0.000000,0.000000,0.250000,0,0);}
.m83_c00181{transform:matrix(0.270638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270638,0.000000,0.000000,0.250000,0,0);}
.m3c_c00181{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.ma2_c00181{transform:matrix(0.271035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271035,0.000000,0.000000,0.250000,0,0);}
.m34_c00181{transform:matrix(0.274429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274429,0.000000,0.000000,0.250000,0,0);}
.m61_c00181{transform:matrix(0.274442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274442,0.000000,0.000000,0.250000,0,0);}
.m90_c00181{transform:matrix(0.275154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275154,0.000000,0.000000,0.250000,0,0);}
.m93_c00181{transform:matrix(0.275182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275182,0.000000,0.000000,0.250000,0,0);}
.m33_c00181{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.ma5_c00181{transform:matrix(0.275697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275697,0.000000,0.000000,0.250000,0,0);}
.m79_c00181{transform:matrix(0.275733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275733,0.000000,0.000000,0.250000,0,0);}
.m5a_c00181{transform:matrix(0.276460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276460,0.000000,0.000000,0.250000,0,0);}
.ma_c00181{transform:matrix(0.276602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276602,0.000000,0.000000,0.250000,0,0);}
.m41_c00181{transform:matrix(0.277360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277360,0.000000,0.000000,0.250000,0,0);}
.m53_c00181{transform:matrix(0.277902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277902,0.000000,0.000000,0.250000,0,0);}
.m1_c00181{transform:matrix(0.278436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278436,0.000000,0.000000,0.250000,0,0);}
.m99_c00181{transform:matrix(0.278725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278725,0.000000,0.000000,0.250000,0,0);}
.m62_c00181{transform:matrix(0.278903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278903,0.000000,0.000000,0.250000,0,0);}
.m6f_c00181{transform:matrix(0.278909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278909,0.000000,0.000000,0.250000,0,0);}
.m94_c00181{transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);}
.m7d_c00181{transform:matrix(0.280088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280088,0.000000,0.000000,0.250000,0,0);}
.m7f_c00181{transform:matrix(0.280356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280356,0.000000,0.000000,0.250000,0,0);}
.m5d_c00181{transform:matrix(0.280910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280910,0.000000,0.000000,0.250000,0,0);}
.ma6_c00181{transform:matrix(0.281043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281043,0.000000,0.000000,0.250000,0,0);}
.m19_c00181{transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);}
.m77_c00181{transform:matrix(0.282717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282717,0.000000,0.000000,0.250000,0,0);}
.m60_c00181{transform:matrix(0.283757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283757,0.000000,0.000000,0.250000,0,0);}
.m3e_c00181{transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);}
.m6e_c00181{transform:matrix(0.284537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284537,0.000000,0.000000,0.250000,0,0);}
.m64_c00181{transform:matrix(0.284975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284975,0.000000,0.000000,0.250000,0,0);}
.m15_c00181{transform:matrix(0.286669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286669,0.000000,0.000000,0.250000,0,0);}
.maa_c00181{transform:matrix(0.287000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00181{transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);}
.m18_c00181{transform:matrix(0.287114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287114,0.000000,0.000000,0.250000,0,0);}
.m10_c00181{transform:matrix(0.287568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287568,0.000000,0.000000,0.250000,0,0);}
.m49_c00181{transform:matrix(0.288044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288044,0.000000,0.000000,0.250000,0,0);}
.m2c_c00181{transform:matrix(0.288963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288963,0.000000,0.000000,0.250000,0,0);}
.m8c_c00181{transform:matrix(0.289542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289542,0.000000,0.000000,0.250000,0,0);}
.m5_c00181{transform:matrix(0.289717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289717,0.000000,0.000000,0.250000,0,0);}
.m46_c00181{transform:matrix(0.290226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290226,0.000000,0.000000,0.250000,0,0);}
.m20_c00181{transform:matrix(0.290389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290389,0.000000,0.000000,0.250000,0,0);}
.m3_c00181{transform:matrix(0.290884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290884,0.000000,0.000000,0.250000,0,0);}
.m71_c00181{transform:matrix(0.291481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291481,0.000000,0.000000,0.250000,0,0);}
.m17_c00181{transform:matrix(0.291836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291836,0.000000,0.000000,0.250000,0,0);}
.m96_c00181{transform:matrix(0.292225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292225,0.000000,0.000000,0.250000,0,0);}
.mab_c00181{transform:matrix(0.293647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293647,0.000000,0.000000,0.250000,0,0);}
.m67_c00181{transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);}
.m6a_c00181{transform:matrix(0.294528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294528,0.000000,0.000000,0.250000,0,0);}
.m37_c00181{transform:matrix(0.294890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294890,0.000000,0.000000,0.250000,0,0);}
.m6d_c00181{transform:matrix(0.296496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296496,0.000000,0.000000,0.250000,0,0);}
.m12_c00181{transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);}
.m39_c00181{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m68_c00181{transform:matrix(0.297384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297384,0.000000,0.000000,0.250000,0,0);}
.m32_c00181{transform:matrix(0.298034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298034,0.000000,0.000000,0.250000,0,0);}
.m9c_c00181{transform:matrix(0.298085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298085,0.000000,0.000000,0.250000,0,0);}
.m80_c00181{transform:matrix(0.298273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298273,0.000000,0.000000,0.250000,0,0);}
.m63_c00181{transform:matrix(0.299812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299812,0.000000,0.000000,0.250000,0,0);}
.m26_c00181{transform:matrix(0.300074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300074,0.000000,0.000000,0.250000,0,0);}
.mb_c00181{transform:matrix(0.300614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300614,0.000000,0.000000,0.250000,0,0);}
.m78_c00181{transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);}
.m69_c00181{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m8d_c00181{transform:matrix(0.302802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302802,0.000000,0.000000,0.250000,0,0);}
.mc_c00181{transform:matrix(0.303003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303003,0.000000,0.000000,0.250000,0,0);}
.m29_c00181{transform:matrix(0.303446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303446,0.000000,0.000000,0.250000,0,0);}
.m7a_c00181{transform:matrix(0.303670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303670,0.000000,0.000000,0.250000,0,0);}
.m98_c00181{transform:matrix(0.304340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304340,0.000000,0.000000,0.250000,0,0);}
.m4b_c00181{transform:matrix(0.304876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304876,0.000000,0.000000,0.250000,0,0);}
.m91_c00181{transform:matrix(0.305355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305355,0.000000,0.000000,0.250000,0,0);}
.md_c00181{transform:matrix(0.305369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305369,0.000000,0.000000,0.250000,0,0);}
.m14_c00181{transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);}
.m52_c00181{transform:matrix(0.306878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306878,0.000000,0.000000,0.250000,0,0);}
.m48_c00181{transform:matrix(0.307487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307487,0.000000,0.000000,0.250000,0,0);}
.ma0_c00181{transform:matrix(0.307920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307920,0.000000,0.000000,0.250000,0,0);}
.m81_c00181{transform:matrix(0.308319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308319,0.000000,0.000000,0.250000,0,0);}
.m82_c00181{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m28_c00181{transform:matrix(0.308816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308816,0.000000,0.000000,0.250000,0,0);}
.m8e_c00181{transform:matrix(0.309027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309027,0.000000,0.000000,0.250000,0,0);}
.m3a_c00181{transform:matrix(0.309489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309489,0.000000,0.000000,0.250000,0,0);}
.m5f_c00181{transform:matrix(0.309501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309501,0.000000,0.000000,0.250000,0,0);}
.m4f_c00181{transform:matrix(0.310368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310368,0.000000,0.000000,0.250000,0,0);}
.ma7_c00181{transform:matrix(0.310429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310429,0.000000,0.000000,0.250000,0,0);}
.m6c_c00181{transform:matrix(0.310667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310667,0.000000,0.000000,0.250000,0,0);}
.m1c_c00181{transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);}
.m5e_c00181{transform:matrix(0.311255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311255,0.000000,0.000000,0.250000,0,0);}
.m75_c00181{transform:matrix(0.312166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312166,0.000000,0.000000,0.250000,0,0);}
.mf_c00181{transform:matrix(0.312229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312229,0.000000,0.000000,0.250000,0,0);}
.m3d_c00181{transform:matrix(0.312744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312744,0.000000,0.000000,0.250000,0,0);}
.m51_c00181{transform:matrix(0.313366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313366,0.000000,0.000000,0.250000,0,0);}
.m3f_c00181{transform:matrix(0.314592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314592,0.000000,0.000000,0.250000,0,0);}
.m2d_c00181{transform:matrix(0.315110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315110,0.000000,0.000000,0.250000,0,0);}
.m6_c00181{transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);}
.m4a_c00181{transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);}
.m44_c00181{transform:matrix(0.317478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317478,0.000000,0.000000,0.250000,0,0);}
.ma8_c00181{transform:matrix(0.317925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317925,0.000000,0.000000,0.250000,0,0);}
.m2_c00181{transform:matrix(0.318140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318140,0.000000,0.000000,0.250000,0,0);}
.m73_c00181{transform:matrix(0.318831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318831,0.000000,0.000000,0.250000,0,0);}
.m11_c00181{transform:matrix(0.319497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319497,0.000000,0.000000,0.250000,0,0);}
.m40_c00181{transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);}
.m2e_c00181{transform:matrix(0.321816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321816,0.000000,0.000000,0.250000,0,0);}
.m8b_c00181{transform:matrix(0.322569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322569,0.000000,0.000000,0.250000,0,0);}
.m4d_c00181{transform:matrix(0.323210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323210,0.000000,0.000000,0.250000,0,0);}
.m55_c00181{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.m4e_c00181{transform:matrix(0.324031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324031,0.000000,0.000000,0.250000,0,0);}
.m1e_c00181{transform:matrix(0.324327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324327,0.000000,0.000000,0.250000,0,0);}
.m2f_c00181{transform:matrix(0.324556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324556,0.000000,0.000000,0.250000,0,0);}
.m95_c00181{transform:matrix(0.325305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325305,0.000000,0.000000,0.250000,0,0);}
.m5c_c00181{transform:matrix(0.326395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326395,0.000000,0.000000,0.250000,0,0);}
.m1f_c00181{transform:matrix(0.326875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326875,0.000000,0.000000,0.250000,0,0);}
.m25_c00181{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m42_c00181{transform:matrix(0.327932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327932,0.000000,0.000000,0.250000,0,0);}
.m30_c00181{transform:matrix(0.328410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328410,0.000000,0.000000,0.250000,0,0);}
.m7_c00181{transform:matrix(0.331699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331699,0.000000,0.000000,0.250000,0,0);}
.me_c00181{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m66_c00181{transform:matrix(0.333579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333579,0.000000,0.000000,0.250000,0,0);}
.m56_c00181{transform:matrix(0.334121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334121,0.000000,0.000000,0.250000,0,0);}
.m8a_c00181{transform:matrix(0.335506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335506,0.000000,0.000000,0.250000,0,0);}
.m31_c00181{transform:matrix(0.335804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335804,0.000000,0.000000,0.250000,0,0);}
.m9e_c00181{transform:matrix(0.336348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336348,0.000000,0.000000,0.250000,0,0);}
.ma9_c00181{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m84_c00181{transform:matrix(0.340277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340277,0.000000,0.000000,0.250000,0,0);}
.m1b_c00181{transform:matrix(0.342408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342408,0.000000,0.000000,0.250000,0,0);}
.m59_c00181{transform:matrix(0.345150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345150,0.000000,0.000000,0.250000,0,0);}
.m54_c00181{transform:matrix(0.346375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346375,0.000000,0.000000,0.250000,0,0);}
.m5b_c00181{transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);}
.m4_c00181{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m36_c00181{transform:matrix(0.349513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349513,0.000000,0.000000,0.250000,0,0);}
.m72_c00181{transform:matrix(0.350600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350600,0.000000,0.000000,0.250000,0,0);}
.m92_c00181{transform:matrix(0.351824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351824,0.000000,0.000000,0.250000,0,0);}
.m13_c00181{transform:matrix(0.351984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351984,0.000000,0.000000,0.250000,0,0);}
.ma1_c00181{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m7b_c00181{transform:matrix(0.355530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355530,0.000000,0.000000,0.250000,0,0);}
.m6b_c00181{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);}
.m35_c00181{transform:matrix(0.361926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361926,0.000000,0.000000,0.250000,0,0);}
.m1a_c00181{transform:matrix(0.365181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365181,0.000000,0.000000,0.250000,0,0);}
.m22_c00181{transform:matrix(0.366328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366328,0.000000,0.000000,0.250000,0,0);}
.m23_c00181{transform:matrix(0.385852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385852,0.000000,0.000000,0.250000,0,0);}
.m76_c00181{transform:matrix(0.404579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404579,0.000000,0.000000,0.250000,0,0);}
.v0_c00181{vertical-align:0.000000px;}
.ls10_c00181{letter-spacing:-2.744280px;}
.ls8_c00181{letter-spacing:-2.375762px;}
.lse_c00181{letter-spacing:-1.897474px;}
.lsf_c00181{letter-spacing:-1.772021px;}
.ls4_c00181{letter-spacing:0.000000px;}
.ls9_c00181{letter-spacing:0.533174px;}
.ls3_c00181{letter-spacing:0.541015px;}
.lsc_c00181{letter-spacing:0.933055px;}
.lsd_c00181{letter-spacing:1.152598px;}
.lsa_c00181{letter-spacing:1.685772px;}
.ls11_c00181{letter-spacing:2.352240px;}
.ls2_c00181{letter-spacing:2.626668px;}
.ls1_c00181{letter-spacing:2.908937px;}
.ls12_c00181{letter-spacing:3.112798px;}
.ls6_c00181{letter-spacing:3.167683px;}
.ls7_c00181{letter-spacing:3.559723px;}
.ls5_c00181{letter-spacing:3.920400px;}
.ls0_c00181{letter-spacing:9.408168px;}
.lsb_c00181{letter-spacing:49.896198px;}
.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:-20.143015px;}
.ws0_c00181{word-spacing:-19.602000px;}
.ws3_c00181{word-spacing:0.000000px;}
.ws1_c00181{word-spacing:3.606768px;}
._10_c00181{margin-left:-7.733088px;}
._d_c00181{margin-left:-6.233436px;}
._12_c00181{width:3.402907px;}
._c_c00181{width:4.469256px;}
._5_c00181{width:7.135128px;}
._0_c00181{width:8.624880px;}
._8_c00181{width:11.525976px;}
._e_c00181{width:13.250952px;}
._2_c00181{width:18.112248px;}
._3_c00181{width:20.856528px;}
._14_c00181{width:24.620112px;}
._7_c00181{width:27.599616px;}
._6_c00181{width:28.853748px;}
._4_c00181{width:33.480216px;}
._b_c00181{width:35.989272px;}
._9_c00181{width:37.518228px;}
._13_c00181{width:38.890368px;}
._f_c00181{width:40.693752px;}
._1_c00181{width:41.948280px;}
._11_c00181{width:44.927784px;}
._a_c00181{width:50.651568px;}
.fc0_c00181{color:transparent;}
.fs3_c00181{font-size:16.632000px;}
.fs0_c00181{font-size:27.720000px;}
.fs5_c00181{font-size:39.600000px;}
.fs4_c00181{font-size:49.500000px;}
.fs2_c00181{font-size:49.896198px;}
.fs1_c00181{font-size:78.408000px;}
.y0_c00181{bottom:0.000000px;}
.y20_c00181{bottom:62.281935px;}
.y1_c00181{bottom:76.500000px;}
.y1f_c00181{bottom:175.973535px;}
.y1e_c00181{bottom:209.470185px;}
.y1d_c00181{bottom:241.551135px;}
.y1c_c00181{bottom:274.339935px;}
.y1b_c00181{bottom:307.128735px;}
.y1a_c00181{bottom:325.300185px;}
.y19_c00181{bottom:339.204735px;}
.y17_c00181{bottom:403.713135px;}
.y18_c00181{bottom:408.697785px;}
.y16_c00181{bottom:436.140585px;}
.y15_c00181{bottom:468.572985px;}
.y14_c00181{bottom:501.361785px;}
.y13_c00181{bottom:533.794185px;}
.y12_c00181{bottom:566.944335px;}
.y11_c00181{bottom:599.376735px;}
.y10_c00181{bottom:613.271385px;}
.yf_c00181{bottom:663.880185px;}
.ye_c00181{bottom:696.317535px;}
.yd_c00181{bottom:728.393535px;}
.yc_c00181{bottom:760.464585px;}
.yb_c00181{bottom:792.901935px;}
.y9_c00181{bottom:825.683805px;}
.ya_c00181{bottom:825.690735px;}
.y8_c00181{bottom:858.830985px;}
.y7_c00181{bottom:892.337535px;}
.y6_c00181{bottom:925.477785px;}
.y5_c00181{bottom:1043.446185px;}
.y4_c00181{bottom:1060.909785px;}
.y3_c00181{bottom:1076.234985px;}
.y2_c00181{bottom:1080.511785px;}
.h5_c00181{height:17.346656px;}
.h2_c00181{height:28.911094px;}
.h4_c00181{height:33.230868px;}
.h7_c00181{height:41.301563px;}
.h6_c00181{height:51.626953px;}
.h3_c00181{height:76.953164px;}
.h1_c00181{height:1110.000000px;}
.h0_c00181{height:1263.000000px;}
.w1_c00181{width:733.500000px;}
.w0_c00181{width:892.500000px;}
.x0_c00181{left:0.000000px;}
.x41_c00181{left:75.016785px;}
.x21_c00181{left:76.097469px;}
.x6_c00181{left:77.432385px;}
.x1_c00181{left:79.500000px;}
.x22_c00181{left:87.099735px;}
.x2b_c00181{left:97.816485px;}
.x3d_c00181{left:108.785685px;}
.x17_c00181{left:109.924185px;}
.x42_c00181{left:118.294635px;}
.x23_c00181{left:120.279585px;}
.x47_c00181{left:129.981585px;}
.x11_c00181{left:131.238885px;}
.x3e_c00181{left:140.723085px;}
.x12_c00181{left:142.015035px;}
.x43_c00181{left:151.123035px;}
.x7_c00181{left:152.702085px;}
.x24_c00181{left:163.750485px;}
.x25_c00181{left:174.615735px;}
.x2c_c00181{left:175.793835px;}
.x34_c00181{left:184.624635px;}
.x13_c00181{left:186.862035px;}
.x18_c00181{left:196.415535px;}
.x62_c00181{left:198.237135px;}
.x8_c00181{left:206.671935px;}
.x19_c00181{left:207.914385px;}
.x5d_c00181{left:208.983585px;}
.x4a_c00181{left:215.631435px;}
.x3f_c00181{left:217.413435px;}
.x48_c00181{left:218.853885px;}
.x52_c00181{left:231.070485px;}
.x58_c00181{left:233.189085px;}
.x5e_c00181{left:240.223035px;}
.x1a_c00181{left:241.480335px;}
.x14_c00181{left:252.137685px;}
.x5a_c00181{left:253.543485px;}
.x2_c00181{left:262.928685px;}
.x63_c00181{left:264.255285px;}
.x44_c00181{left:274.199835px;}
.x26_c00181{left:275.298735px;}
.x5f_c00181{left:284.718585px;}
.x9_c00181{left:285.961035px;}
.x1b_c00181{left:287.025285px;}
.x54_c00181{left:295.618485px;}
.x27_c00181{left:297.044085px;}
.x5c_c00181{left:299.791335px;}
.x28_c00181{left:308.434035px;}
.xa_c00181{left:318.749835px;}
.x15_c00181{left:319.774485px;}
.x49_c00181{left:328.922085px;}
.x2d_c00181{left:329.996235px;}
.x39_c00181{left:341.569335px;}
.x16_c00181{left:351.880185px;}
.x53_c00181{left:353.276085px;}
.x1c_c00181{left:362.983035px;}
.x45_c00181{left:373.838385px;}
.x4b_c00181{left:375.427335px;}
.x5b_c00181{left:384.565035px;}
.x29_c00181{left:385.738185px;}
.x59_c00181{left:388.589385px;}
.x2e_c00181{left:396.123285px;}
.x60_c00181{left:397.152885px;}
.x1d_c00181{left:406.988535px;}
.x40_c00181{left:408.527985px;}
.x4_c00181{left:413.329485px;}
.xb_c00181{left:418.541835px;}
.x2f_c00181{left:430.303035px;}
.x3a_c00181{left:441.034635px;}
.x1e_c00181{left:442.054335px;}
.x4c_c00181{left:452.800785px;}
.xc_c00181{left:463.463085px;}
.x4f_c00181{left:473.219535px;}
.x4d_c00181{left:474.689685px;}
.x3b_c00181{left:485.401485px;}
.x35_c00181{left:496.271685px;}
.x36_c00181{left:507.478485px;}
.x30_c00181{left:519.338685px;}
.x1f_c00181{left:529.431735px;}
.x50_c00181{left:530.669235px;}
.x37_c00181{left:539.915835px;}
.xd_c00181{left:541.178085px;}
.x3c_c00181{left:551.483985px;}
.x64_c00181{left:558.740685px;}
.xe_c00181{left:562.883835px;}
.x56_c00181{left:573.065985px;}
.x31_c00181{left:574.996485px;}
.x20_c00181{left:585.351885px;}
.x4e_c00181{left:586.401285px;}
.xf_c00181{left:595.672635px;}
.x57_c00181{left:606.760635px;}
.x32_c00181{left:617.804085px;}
.x2a_c00181{left:629.164335px;}
.x5_c00181{left:631.444305px;}
.x33_c00181{left:639.826635px;}
.x3_c00181{left:650.894835px;}
.x10_c00181{left:662.354085px;}
.x51_c00181{left:684.074685px;}
.x55_c00181{left:685.173585px;}
.x61_c00181{left:687.247635px;}
.x46_c00181{left:693.113385px;}
.x38_c00181{left:707.943585px;}
@media print{
.v0_c00181{vertical-align:0.000000pt;}
.ls10_c00181{letter-spacing:-2.439360pt;}
.ls8_c00181{letter-spacing:-2.111789pt;}
.lse_c00181{letter-spacing:-1.686643pt;}
.lsf_c00181{letter-spacing:-1.575130pt;}
.ls4_c00181{letter-spacing:0.000000pt;}
.ls9_c00181{letter-spacing:0.473933pt;}
.ls3_c00181{letter-spacing:0.480902pt;}
.lsc_c00181{letter-spacing:0.829382pt;}
.lsd_c00181{letter-spacing:1.024531pt;}
.lsa_c00181{letter-spacing:1.498464pt;}
.ls11_c00181{letter-spacing:2.090880pt;}
.ls2_c00181{letter-spacing:2.334816pt;}
.ls1_c00181{letter-spacing:2.585722pt;}
.ls12_c00181{letter-spacing:2.766931pt;}
.ls6_c00181{letter-spacing:2.815718pt;}
.ls7_c00181{letter-spacing:3.164198pt;}
.ls5_c00181{letter-spacing:3.484800pt;}
.ls0_c00181{letter-spacing:8.362816pt;}
.lsb_c00181{letter-spacing:44.352176pt;}
.ws2_c00181{word-spacing:-17.904902pt;}
.ws0_c00181{word-spacing:-17.424000pt;}
.ws3_c00181{word-spacing:0.000000pt;}
.ws1_c00181{word-spacing:3.206016pt;}
._10_c00181{margin-left:-6.873856pt;}
._d_c00181{margin-left:-5.540832pt;}
._12_c00181{width:3.024806pt;}
._c_c00181{width:3.972672pt;}
._5_c00181{width:6.342336pt;}
._0_c00181{width:7.666560pt;}
._8_c00181{width:10.245312pt;}
._e_c00181{width:11.778624pt;}
._2_c00181{width:16.099776pt;}
._3_c00181{width:18.539136pt;}
._14_c00181{width:21.884544pt;}
._7_c00181{width:24.532992pt;}
._6_c00181{width:25.647776pt;}
._4_c00181{width:29.760192pt;}
._b_c00181{width:31.990464pt;}
._9_c00181{width:33.349536pt;}
._13_c00181{width:34.569216pt;}
._f_c00181{width:36.172224pt;}
._1_c00181{width:37.287360pt;}
._11_c00181{width:39.935808pt;}
._a_c00181{width:45.023616pt;}
.fs3_c00181{font-size:14.784000pt;}
.fs0_c00181{font-size:24.640000pt;}
.fs5_c00181{font-size:35.200000pt;}
.fs4_c00181{font-size:44.000000pt;}
.fs2_c00181{font-size:44.352176pt;}
.fs1_c00181{font-size:69.696000pt;}
.y0_c00181{bottom:0.000000pt;}
.y20_c00181{bottom:55.361720pt;}
.y1_c00181{bottom:68.000000pt;}
.y1f_c00181{bottom:156.420920pt;}
.y1e_c00181{bottom:186.195720pt;}
.y1d_c00181{bottom:214.712120pt;}
.y1c_c00181{bottom:243.857720pt;}
.y1b_c00181{bottom:273.003320pt;}
.y1a_c00181{bottom:289.155720pt;}
.y19_c00181{bottom:301.515320pt;}
.y17_c00181{bottom:358.856120pt;}
.y18_c00181{bottom:363.286920pt;}
.y16_c00181{bottom:387.680520pt;}
.y15_c00181{bottom:416.509320pt;}
.y14_c00181{bottom:445.654920pt;}
.y13_c00181{bottom:474.483720pt;}
.y12_c00181{bottom:503.950520pt;}
.y11_c00181{bottom:532.779320pt;}
.y10_c00181{bottom:545.130120pt;}
.yf_c00181{bottom:590.115720pt;}
.ye_c00181{bottom:618.948920pt;}
.yd_c00181{bottom:647.460920pt;}
.yc_c00181{bottom:675.968520pt;}
.yb_c00181{bottom:704.801720pt;}
.y9_c00181{bottom:733.941160pt;}
.ya_c00181{bottom:733.947320pt;}
.y8_c00181{bottom:763.405320pt;}
.y7_c00181{bottom:793.188920pt;}
.y6_c00181{bottom:822.646920pt;}
.y5_c00181{bottom:927.507720pt;}
.y4_c00181{bottom:943.030920pt;}
.y3_c00181{bottom:956.653320pt;}
.y2_c00181{bottom:960.454920pt;}
.h5_c00181{height:15.419250pt;}
.h2_c00181{height:25.698750pt;}
.h4_c00181{height:29.538549pt;}
.h7_c00181{height:36.712500pt;}
.h6_c00181{height:45.890625pt;}
.h3_c00181{height:68.402813pt;}
.h1_c00181{height:986.666667pt;}
.h0_c00181{height:1122.666667pt;}
.w1_c00181{width:652.000000pt;}
.w0_c00181{width:793.333333pt;}
.x0_c00181{left:0.000000pt;}
.x41_c00181{left:66.681587pt;}
.x21_c00181{left:67.642195pt;}
.x6_c00181{left:68.828787pt;}
.x1_c00181{left:70.666667pt;}
.x22_c00181{left:77.421987pt;}
.x2b_c00181{left:86.947987pt;}
.x3d_c00181{left:96.698387pt;}
.x17_c00181{left:97.710387pt;}
.x42_c00181{left:105.150787pt;}
.x23_c00181{left:106.915187pt;}
.x47_c00181{left:115.539187pt;}
.x11_c00181{left:116.656787pt;}
.x3e_c00181{left:125.087187pt;}
.x12_c00181{left:126.235587pt;}
.x43_c00181{left:134.331587pt;}
.x7_c00181{left:135.735187pt;}
.x24_c00181{left:145.555987pt;}
.x25_c00181{left:155.213987pt;}
.x2c_c00181{left:156.261187pt;}
.x34_c00181{left:164.110787pt;}
.x13_c00181{left:166.099587pt;}
.x18_c00181{left:174.591587pt;}
.x62_c00181{left:176.210787pt;}
.x8_c00181{left:183.708387pt;}
.x19_c00181{left:184.812787pt;}
.x5d_c00181{left:185.763187pt;}
.x4a_c00181{left:191.672387pt;}
.x3f_c00181{left:193.256387pt;}
.x48_c00181{left:194.536787pt;}
.x52_c00181{left:205.395987pt;}
.x58_c00181{left:207.279187pt;}
.x5e_c00181{left:213.531587pt;}
.x1a_c00181{left:214.649187pt;}
.x14_c00181{left:224.122387pt;}
.x5a_c00181{left:225.371987pt;}
.x2_c00181{left:233.714387pt;}
.x63_c00181{left:234.893587pt;}
.x44_c00181{left:243.733187pt;}
.x26_c00181{left:244.709987pt;}
.x5f_c00181{left:253.083187pt;}
.x9_c00181{left:254.187587pt;}
.x1b_c00181{left:255.133587pt;}
.x54_c00181{left:262.771987pt;}
.x27_c00181{left:264.039187pt;}
.x5c_c00181{left:266.481187pt;}
.x28_c00181{left:274.163587pt;}
.xa_c00181{left:283.333187pt;}
.x15_c00181{left:284.243987pt;}
.x49_c00181{left:292.375187pt;}
.x2d_c00181{left:293.329987pt;}
.x39_c00181{left:303.617187pt;}
.x16_c00181{left:312.782387pt;}
.x53_c00181{left:314.023187pt;}
.x1c_c00181{left:322.651587pt;}
.x45_c00181{left:332.300787pt;}
.x4b_c00181{left:333.713187pt;}
.x5b_c00181{left:341.835587pt;}
.x29_c00181{left:342.878387pt;}
.x59_c00181{left:345.412787pt;}
.x2e_c00181{left:352.109587pt;}
.x60_c00181{left:353.024787pt;}
.x1d_c00181{left:361.767587pt;}
.x40_c00181{left:363.135987pt;}
.x4_c00181{left:367.403987pt;}
.xb_c00181{left:372.037187pt;}
.x2f_c00181{left:382.491587pt;}
.x3a_c00181{left:392.030787pt;}
.x1e_c00181{left:392.937187pt;}
.x4c_c00181{left:402.489587pt;}
.xc_c00181{left:411.967187pt;}
.x4f_c00181{left:420.639587pt;}
.x4d_c00181{left:421.946387pt;}
.x3b_c00181{left:431.467987pt;}
.x35_c00181{left:441.130387pt;}
.x36_c00181{left:451.091987pt;}
.x30_c00181{left:461.634387pt;}
.x1f_c00181{left:470.605987pt;}
.x50_c00181{left:471.705987pt;}
.x37_c00181{left:479.925187pt;}
.xd_c00181{left:481.047187pt;}
.x3c_c00181{left:490.207987pt;}
.x64_c00181{left:496.658387pt;}
.xe_c00181{left:500.341187pt;}
.x56_c00181{left:509.391987pt;}
.x31_c00181{left:511.107987pt;}
.x20_c00181{left:520.312787pt;}
.x4e_c00181{left:521.245587pt;}
.xf_c00181{left:529.486787pt;}
.x57_c00181{left:539.342787pt;}
.x32_c00181{left:549.159187pt;}
.x2a_c00181{left:559.257187pt;}
.x5_c00181{left:561.283827pt;}
.x33_c00181{left:568.734787pt;}
.x3_c00181{left:578.573187pt;}
.x10_c00181{left:588.759187pt;}
.x51_c00181{left:608.066387pt;}
.x55_c00181{left:609.043187pt;}
.x61_c00181{left:610.886787pt;}
.x46_c00181{left:616.100787pt;}
.x38_c00181{left:629.283187pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8e2bd3f72b4008f21355a586.woff2')format("woff");}.ff1_c00182{font-family:ff1_c00182;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00182;src:url('chunks/assets/font_7eec1146396206a210d4bdd3.woff2')format("woff");}.ff2_c00182{font-family:ff2_c00182;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00182;src:url('chunks/assets/font_d037722fe22e5e513b9bb2a5.woff2')format("woff");}.ff3_c00182{font-family:ff3_c00182;line-height:0.666000;font-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_c00182{transform:matrix(0.097222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097222,0.000000,0.000000,0.250000,0,0);}
.m1_c00182{transform:matrix(0.119566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119566,0.000000,0.000000,0.250000,0,0);}
.m3d_c00182{transform:matrix(0.121527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121527,0.000000,0.000000,0.250000,0,0);}
.m44_c00182{transform:matrix(0.144645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144645,0.000000,0.000000,0.250000,0,0);}
.m71_c00182{transform:matrix(0.154539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154539,0.000000,0.000000,0.250000,0,0);}
.m96_c00182{transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);}
.m3f_c00182{transform:matrix(0.206945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206945,0.000000,0.000000,0.250000,0,0);}
.mb_c00182{transform:matrix(0.216704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216704,0.000000,0.000000,0.250000,0,0);}
.m4a_c00182{transform:matrix(0.218254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218254,0.000000,0.000000,0.250000,0,0);}
.m95_c00182{transform:matrix(0.218572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218572,0.000000,0.000000,0.250000,0,0);}
.ma2_c00182{transform:matrix(0.220321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220321,0.000000,0.000000,0.250000,0,0);}
.m38_c00182{transform:matrix(0.222093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222093,0.000000,0.000000,0.250000,0,0);}
.m9f_c00182{transform:matrix(0.233513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233513,0.000000,0.000000,0.250000,0,0);}
.ma_c00182{transform:matrix(0.240852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240852,0.000000,0.000000,0.250000,0,0);}
.m0_c00182{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00182{transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);}
.m14_c00182{transform:matrix(0.250289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250289,0.000000,0.000000,0.250000,0,0);}
.m23_c00182{transform:matrix(0.251663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251663,0.000000,0.000000,0.250000,0,0);}
.mae_c00182{transform:matrix(0.254169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254169,0.000000,0.000000,0.250000,0,0);}
.m5_c00182{transform:matrix(0.254328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254328,0.000000,0.000000,0.250000,0,0);}
.m36_c00182{transform:matrix(0.255468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255468,0.000000,0.000000,0.250000,0,0);}
.m46_c00182{transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);}
.ma4_c00182{transform:matrix(0.258258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258258,0.000000,0.000000,0.250000,0,0);}
.m73_c00182{transform:matrix(0.260559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260559,0.000000,0.000000,0.250000,0,0);}
.m33_c00182{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m24_c00182{transform:matrix(0.261121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261121,0.000000,0.000000,0.250000,0,0);}
.m2_c00182{transform:matrix(0.262979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262979,0.000000,0.000000,0.250000,0,0);}
.m5e_c00182{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m52_c00182{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m2d_c00182{transform:matrix(0.265949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265949,0.000000,0.000000,0.250000,0,0);}
.m43_c00182{transform:matrix(0.266106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266106,0.000000,0.000000,0.250000,0,0);}
.m4f_c00182{transform:matrix(0.266174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266174,0.000000,0.000000,0.250000,0,0);}
.m41_c00182{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m31_c00182{transform:matrix(0.266660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266660,0.000000,0.000000,0.250000,0,0);}
.m29_c00182{transform:matrix(0.267040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267040,0.000000,0.000000,0.250000,0,0);}
.m1f_c00182{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m16_c00182{transform:matrix(0.268552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268552,0.000000,0.000000,0.250000,0,0);}
.m7a_c00182{transform:matrix(0.269051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269051,0.000000,0.000000,0.250000,0,0);}
.m66_c00182{transform:matrix(0.269233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269233,0.000000,0.000000,0.250000,0,0);}
.m3b_c00182{transform:matrix(0.270784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270784,0.000000,0.000000,0.250000,0,0);}
.m25_c00182{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m58_c00182{transform:matrix(0.271084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271084,0.000000,0.000000,0.250000,0,0);}
.maa_c00182{transform:matrix(0.271586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271586,0.000000,0.000000,0.250000,0,0);}
.mb1_c00182{transform:matrix(0.271827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271827,0.000000,0.000000,0.250000,0,0);}
.m9_c00182{transform:matrix(0.272955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272955,0.000000,0.000000,0.250000,0,0);}
.m8f_c00182{transform:matrix(0.272980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272980,0.000000,0.000000,0.250000,0,0);}
.m60_c00182{transform:matrix(0.273534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273534,0.000000,0.000000,0.250000,0,0);}
.m28_c00182{transform:matrix(0.274072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274072,0.000000,0.000000,0.250000,0,0);}
.m54_c00182{transform:matrix(0.275336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275336,0.000000,0.000000,0.250000,0,0);}
.m37_c00182{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m86_c00182{transform:matrix(0.275566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275566,0.000000,0.000000,0.250000,0,0);}
.m69_c00182{transform:matrix(0.276123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276123,0.000000,0.000000,0.250000,0,0);}
.m26_c00182{transform:matrix(0.277029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277029,0.000000,0.000000,0.250000,0,0);}
.mf_c00182{transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);}
.m61_c00182{transform:matrix(0.277199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277199,0.000000,0.000000,0.250000,0,0);}
.m76_c00182{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m82_c00182{transform:matrix(0.277360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277360,0.000000,0.000000,0.250000,0,0);}
.m62_c00182{transform:matrix(0.278379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278379,0.000000,0.000000,0.250000,0,0);}
.ma0_c00182{transform:matrix(0.278433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278433,0.000000,0.000000,0.250000,0,0);}
.ma7_c00182{transform:matrix(0.278443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278443,0.000000,0.000000,0.250000,0,0);}
.m81_c00182{transform:matrix(0.278962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278962,0.000000,0.000000,0.250000,0,0);}
.mac_c00182{transform:matrix(0.279350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279350,0.000000,0.000000,0.250000,0,0);}
.mb3_c00182{transform:matrix(0.280224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280224,0.000000,0.000000,0.250000,0,0);}
.m1b_c00182{transform:matrix(0.280356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280356,0.000000,0.000000,0.250000,0,0);}
.m13_c00182{transform:matrix(0.280566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280566,0.000000,0.000000,0.250000,0,0);}
.m6c_c00182{transform:matrix(0.281249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281249,0.000000,0.000000,0.250000,0,0);}
.m57_c00182{transform:matrix(0.281487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281487,0.000000,0.000000,0.250000,0,0);}
.m7f_c00182{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.m30_c00182{transform:matrix(0.281955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281955,0.000000,0.000000,0.250000,0,0);}
.m4c_c00182{transform:matrix(0.282302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282302,0.000000,0.000000,0.250000,0,0);}
.m2f_c00182{transform:matrix(0.282564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282564,0.000000,0.000000,0.250000,0,0);}
.m6b_c00182{transform:matrix(0.282727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282727,0.000000,0.000000,0.250000,0,0);}
.m19_c00182{transform:matrix(0.282807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282807,0.000000,0.000000,0.250000,0,0);}
.m64_c00182{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m11_c00182{transform:matrix(0.283594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283594,0.000000,0.000000,0.250000,0,0);}
.m4e_c00182{transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);}
.m50_c00182{transform:matrix(0.284008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284008,0.000000,0.000000,0.250000,0,0);}
.m90_c00182{transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);}
.m98_c00182{transform:matrix(0.286410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286410,0.000000,0.000000,0.250000,0,0);}
.m42_c00182{transform:matrix(0.286659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286659,0.000000,0.000000,0.250000,0,0);}
.m70_c00182{transform:matrix(0.287771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287771,0.000000,0.000000,0.250000,0,0);}
.m20_c00182{transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);}
.m21_c00182{transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);}
.m6_c00182{transform:matrix(0.289221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289221,0.000000,0.000000,0.250000,0,0);}
.m40_c00182{transform:matrix(0.289652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289652,0.000000,0.000000,0.250000,0,0);}
.m99_c00182{transform:matrix(0.290643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290643,0.000000,0.000000,0.250000,0,0);}
.m55_c00182{transform:matrix(0.291528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291528,0.000000,0.000000,0.250000,0,0);}
.m85_c00182{transform:matrix(0.291710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291710,0.000000,0.000000,0.250000,0,0);}
.m32_c00182{transform:matrix(0.291795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291795,0.000000,0.000000,0.250000,0,0);}
.mc_c00182{transform:matrix(0.292614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292614,0.000000,0.000000,0.250000,0,0);}
.m1a_c00182{transform:matrix(0.292672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292672,0.000000,0.000000,0.250000,0,0);}
.m88_c00182{transform:matrix(0.293063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293063,0.000000,0.000000,0.250000,0,0);}
.m93_c00182{transform:matrix(0.293496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293496,0.000000,0.000000,0.250000,0,0);}
.m48_c00182{transform:matrix(0.294107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294107,0.000000,0.000000,0.250000,0,0);}
.m74_c00182{transform:matrix(0.294174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294174,0.000000,0.000000,0.250000,0,0);}
.m65_c00182{transform:matrix(0.294562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294562,0.000000,0.000000,0.250000,0,0);}
.m8d_c00182{transform:matrix(0.295172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295172,0.000000,0.000000,0.250000,0,0);}
.m18_c00182{transform:matrix(0.296672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296672,0.000000,0.000000,0.250000,0,0);}
.m51_c00182{transform:matrix(0.296756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296756,0.000000,0.000000,0.250000,0,0);}
.m7d_c00182{transform:matrix(0.296935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296935,0.000000,0.000000,0.250000,0,0);}
.m80_c00182{transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);}
.md_c00182{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m1e_c00182{transform:matrix(0.297178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297178,0.000000,0.000000,0.250000,0,0);}
.ma3_c00182{transform:matrix(0.297253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297253,0.000000,0.000000,0.250000,0,0);}
.m2c_c00182{transform:matrix(0.297306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297306,0.000000,0.000000,0.250000,0,0);}
.m91_c00182{transform:matrix(0.297631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297631,0.000000,0.000000,0.250000,0,0);}
.m12_c00182{transform:matrix(0.298037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298037,0.000000,0.000000,0.250000,0,0);}
.m92_c00182{transform:matrix(0.298726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298726,0.000000,0.000000,0.250000,0,0);}
.m67_c00182{transform:matrix(0.299222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299222,0.000000,0.000000,0.250000,0,0);}
.ma6_c00182{transform:matrix(0.299763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299763,0.000000,0.000000,0.250000,0,0);}
.me_c00182{transform:matrix(0.301074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301074,0.000000,0.000000,0.250000,0,0);}
.m94_c00182{transform:matrix(0.301196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301196,0.000000,0.000000,0.250000,0,0);}
.m6a_c00182{transform:matrix(0.301346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301346,0.000000,0.000000,0.250000,0,0);}
.m34_c00182{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m27_c00182{transform:matrix(0.302504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302504,0.000000,0.000000,0.250000,0,0);}
.m68_c00182{transform:matrix(0.304407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304407,0.000000,0.000000,0.250000,0,0);}
.m97_c00182{transform:matrix(0.305655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305655,0.000000,0.000000,0.250000,0,0);}
.m8b_c00182{transform:matrix(0.306121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306121,0.000000,0.000000,0.250000,0,0);}
.m39_c00182{transform:matrix(0.306582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306582,0.000000,0.000000,0.250000,0,0);}
.mb2_c00182{transform:matrix(0.306731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306731,0.000000,0.000000,0.250000,0,0);}
.m22_c00182{transform:matrix(0.307034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307034,0.000000,0.000000,0.250000,0,0);}
.m2b_c00182{transform:matrix(0.307091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307091,0.000000,0.000000,0.250000,0,0);}
.m4d_c00182{transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);}
.m53_c00182{transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);}
.m9b_c00182{transform:matrix(0.309148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309148,0.000000,0.000000,0.250000,0,0);}
.m3a_c00182{transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);}
.mb0_c00182{transform:matrix(0.311364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311364,0.000000,0.000000,0.250000,0,0);}
.m77_c00182{transform:matrix(0.312163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312163,0.000000,0.000000,0.250000,0,0);}
.m5b_c00182{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.mad_c00182{transform:matrix(0.312770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312770,0.000000,0.000000,0.250000,0,0);}
.maf_c00182{transform:matrix(0.312885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312885,0.000000,0.000000,0.250000,0,0);}
.m15_c00182{transform:matrix(0.314182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314182,0.000000,0.000000,0.250000,0,0);}
.m1c_c00182{transform:matrix(0.314257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314257,0.000000,0.000000,0.250000,0,0);}
.m2e_c00182{transform:matrix(0.314545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314545,0.000000,0.000000,0.250000,0,0);}
.m9d_c00182{transform:matrix(0.314723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314723,0.000000,0.000000,0.250000,0,0);}
.m9e_c00182{transform:matrix(0.315169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315169,0.000000,0.000000,0.250000,0,0);}
.m59_c00182{transform:matrix(0.315334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315334,0.000000,0.000000,0.250000,0,0);}
.m6d_c00182{transform:matrix(0.315773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315773,0.000000,0.000000,0.250000,0,0);}
.m72_c00182{transform:matrix(0.316169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316169,0.000000,0.000000,0.250000,0,0);}
.m8a_c00182{transform:matrix(0.317231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317231,0.000000,0.000000,0.250000,0,0);}
.m84_c00182{transform:matrix(0.320819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320819,0.000000,0.000000,0.250000,0,0);}
.mab_c00182{transform:matrix(0.321385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321385,0.000000,0.000000,0.250000,0,0);}
.m4_c00182{transform:matrix(0.321773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321773,0.000000,0.000000,0.250000,0,0);}
.m17_c00182{transform:matrix(0.322594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322594,0.000000,0.000000,0.250000,0,0);}
.m8e_c00182{transform:matrix(0.323105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323105,0.000000,0.000000,0.250000,0,0);}
.m3c_c00182{transform:matrix(0.323962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323962,0.000000,0.000000,0.250000,0,0);}
.m2a_c00182{transform:matrix(0.324794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324794,0.000000,0.000000,0.250000,0,0);}
.m8c_c00182{transform:matrix(0.325136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325136,0.000000,0.000000,0.250000,0,0);}
.m5d_c00182{transform:matrix(0.325525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325525,0.000000,0.000000,0.250000,0,0);}
.m6e_c00182{transform:matrix(0.325862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325862,0.000000,0.000000,0.250000,0,0);}
.m47_c00182{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m89_c00182{transform:matrix(0.327311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327311,0.000000,0.000000,0.250000,0,0);}
.m7_c00182{transform:matrix(0.327336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327336,0.000000,0.000000,0.250000,0,0);}
.m75_c00182{transform:matrix(0.329979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329979,0.000000,0.000000,0.250000,0,0);}
.m9c_c00182{transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);}
.m35_c00182{transform:matrix(0.331501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331501,0.000000,0.000000,0.250000,0,0);}
.m10_c00182{transform:matrix(0.331967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331967,0.000000,0.000000,0.250000,0,0);}
.m78_c00182{transform:matrix(0.332708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332708,0.000000,0.000000,0.250000,0,0);}
.m9a_c00182{transform:matrix(0.333376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333376,0.000000,0.000000,0.250000,0,0);}
.m6f_c00182{transform:matrix(0.334736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334736,0.000000,0.000000,0.250000,0,0);}
.m1d_c00182{transform:matrix(0.335271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335271,0.000000,0.000000,0.250000,0,0);}
.ma8_c00182{transform:matrix(0.335559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335559,0.000000,0.000000,0.250000,0,0);}
.m5a_c00182{transform:matrix(0.336509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336509,0.000000,0.000000,0.250000,0,0);}
.m7e_c00182{transform:matrix(0.336976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336976,0.000000,0.000000,0.250000,0,0);}
.m63_c00182{transform:matrix(0.337247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337247,0.000000,0.000000,0.250000,0,0);}
.m5c_c00182{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m3_c00182{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.m87_c00182{transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);}
.m5f_c00182{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.ma5_c00182{transform:matrix(0.352540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352540,0.000000,0.000000,0.250000,0,0);}
.m8_c00182{transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);}
.m56_c00182{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m45_c00182{transform:matrix(0.355345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355345,0.000000,0.000000,0.250000,0,0);}
.m7c_c00182{transform:matrix(0.359169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359169,0.000000,0.000000,0.250000,0,0);}
.m79_c00182{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);}
.m49_c00182{transform:matrix(0.363780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363780,0.000000,0.000000,0.250000,0,0);}
.m7b_c00182{transform:matrix(0.381065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381065,0.000000,0.000000,0.250000,0,0);}
.ma9_c00182{transform:matrix(0.388248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388248,0.000000,0.000000,0.250000,0,0);}
.ma1_c00182{transform:matrix(0.396487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396487,0.000000,0.000000,0.250000,0,0);}
.m83_c00182{transform:matrix(0.624986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.624986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.624986,0.000000,0.000000,0.250000,0,0);}
.v0_c00182{vertical-align:0.000000px;}
.lsb_c00182{letter-spacing:-2.744280px;}
.ls19_c00182{letter-spacing:-0.470448px;}
.ls7_c00182{letter-spacing:-0.034056px;}
.ls6_c00182{letter-spacing:0.000000px;}
.ls2_c00182{letter-spacing:0.391644px;}
.ls17_c00182{letter-spacing:0.705672px;}
.lsc_c00182{letter-spacing:1.310067px;}
.lsf_c00182{letter-spacing:2.132698px;}
.ls1_c00182{letter-spacing:2.767017px;}
.ls12_c00182{letter-spacing:2.783484px;}
.lse_c00182{letter-spacing:3.112798px;}
.ls15_c00182{letter-spacing:3.276900px;}
.ls13_c00182{letter-spacing:3.402907px;}
.ls14_c00182{letter-spacing:3.489156px;}
.ls9_c00182{letter-spacing:3.544200px;}
.ls5_c00182{letter-spacing:3.669494px;}
.ls4_c00182{letter-spacing:3.693017px;}
.lsa_c00182{letter-spacing:3.920400px;}
.lsd_c00182{letter-spacing:4.257000px;}
.ls18_c00182{letter-spacing:4.474810px;}
.ls3_c00182{letter-spacing:7.997616px;}
.ls16_c00182{letter-spacing:8.553798px;}
.ls0_c00182{letter-spacing:15.325200px;}
.ls8_c00182{letter-spacing:32.788998px;}
.ls11_c00182{letter-spacing:49.896198px;}
.ls10_c00182{letter-spacing:51.321798px;}
.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;}
}
.ws5_c00182{word-spacing:-23.271494px;}
.ws1_c00182{word-spacing:-22.385484px;}
.ws3_c00182{word-spacing:-20.307672px;}
.ws0_c00182{word-spacing:-19.602000px;}
.ws2_c00182{word-spacing:-3.606768px;}
.ws6_c00182{word-spacing:-2.195424px;}
.ws7_c00182{word-spacing:0.000000px;}
.ws4_c00182{word-spacing:2.038608px;}
._e_c00182{margin-left:-4.077216px;}
._4_c00182{margin-left:-1.018512px;}
._d_c00182{width:4.312440px;}
._9_c00182{width:6.272640px;}
._1_c00182{width:7.919208px;}
._6_c00182{width:9.487368px;}
._c_c00182{width:10.585080px;}
._5_c00182{width:12.545280px;}
._8_c00182{width:16.073640px;}
._11_c00182{width:18.355313px;}
._3_c00182{width:20.856528px;}
._b_c00182{width:22.267872px;}
._10_c00182{width:23.286384px;}
._7_c00182{width:25.090560px;}
._0_c00182{width:27.482236px;}
._2_c00182{width:30.315780px;}
._a_c00182{width:35.518824px;}
._f_c00182{width:40.693752px;}
._12_c00182{width:99.813780px;}
.fc0_c00182{color:transparent;}
.fsd_c00182{font-size:8.553798px;}
.fsb_c00182{font-size:22.572000px;}
.fs12_c00182{font-size:24.552000px;}
.fs10_c00182{font-size:27.720000px;}
.fs4_c00182{font-size:28.314000px;}
.fs8_c00182{font-size:32.670000px;}
.fs3_c00182{font-size:32.788998px;}
.fsf_c00182{font-size:33.264000px;}
.fs0_c00182{font-size:34.056198px;}
.fs2_c00182{font-size:34.650000px;}
.fs11_c00182{font-size:38.808000px;}
.fs13_c00182{font-size:45.936198px;}
.fsa_c00182{font-size:49.896198px;}
.fs9_c00182{font-size:51.321798px;}
.fsc_c00182{font-size:65.538000px;}
.fs5_c00182{font-size:70.884000px;}
.fs6_c00182{font-size:78.408000px;}
.fs1_c00182{font-size:85.140000px;}
.fs7_c00182{font-size:85.932198px;}
.fse_c00182{font-size:89.496198px;}
.y0_c00182{bottom:0.000000px;}
.y2a_c00182{bottom:18.796185px;}
.y29_c00182{bottom:46.595385px;}
.y28_c00182{bottom:48.020985px;}
.y27_c00182{bottom:50.159385px;}
.y26_c00182{bottom:55.148985px;}
.y1_c00182{bottom:76.500000px;}
.y25_c00182{bottom:86.155785px;}
.y24_c00182{bottom:93.645135px;}
.y23_c00182{bottom:121.087935px;}
.y22_c00182{bottom:144.961785px;}
.y21_c00182{bottom:162.781785px;}
.y20_c00182{bottom:208.757385px;}
.y1e_c00182{bottom:241.189389px;}
.y1f_c00182{bottom:241.194735px;}
.y1d_c00182{bottom:273.983535px;}
.y1c_c00182{bottom:306.054585px;}
.y1b_c00182{bottom:338.130585px;}
.y1a_c00182{bottom:370.567935px;}
.y19_c00182{bottom:403.713135px;}
.y18_c00182{bottom:432.225135px;}
.y17_c00182{bottom:435.789135px;}
.y16_c00182{bottom:468.221535px;}
.y15_c00182{bottom:500.648985px;}
.y14_c00182{bottom:532.729935px;}
.y13_c00182{bottom:578.344185px;}
.y12_c00182{bottom:596.525535px;}
.y11_c00182{bottom:628.957935px;}
.y10_c00182{bottom:661.746735px;}
.yf_c00182{bottom:694.174185px;}
.ye_c00182{bottom:726.255135px;}
.yd_c00182{bottom:757.969785px;}
.yc_c00182{bottom:790.402185px;}
.y2_c00182{bottom:803.237535px;}
.yb_c00182{bottom:823.552335px;}
.y9_c00182{bottom:857.048985px;}
.ya_c00182{bottom:862.399935px;}
.y8_c00182{bottom:889.486335px;}
.y7_c00182{bottom:923.344335px;}
.y6_c00182{bottom:980.011935px;}
.y5_c00182{bottom:1056.632985px;}
.y4_c00182{bottom:1067.324985px;}
.y3_c00182{bottom:1074.452985px;}
.hf_c00182{height:5.696829px;}
.h5_c00182{height:21.837473px;}
.hd_c00182{height:23.541891px;}
.h14_c00182{height:24.096445px;}
.h12_c00182{height:28.911094px;}
.h6_c00182{height:29.530617px;}
.hc_c00182{height:33.230868px;}
.ha_c00182{height:34.073789px;}
.hb_c00182{height:34.180317px;}
.h11_c00182{height:34.693313px;}
.h2_c00182{height:35.519550px;}
.h4_c00182{height:36.138867px;}
.h13_c00182{height:40.475531px;}
.h15_c00182{height:47.910019px;}
.h16_c00182{height:64.321963px;}
.he_c00182{height:68.354086px;}
.h7_c00182{height:69.568770px;}
.h8_c00182{height:76.953164px;}
.h3_c00182{height:83.560254px;}
.h9_c00182{height:84.337753px;}
.h10_c00182{height:87.835624px;}
.h1_c00182{height:1110.000000px;}
.h0_c00182{height:1263.000000px;}
.w1_c00182{width:733.500000px;}
.w0_c00182{width:892.500000px;}
.x0_c00182{left:0.000000px;}
.x2_c00182{left:44.712885px;}
.x50_c00182{left:73.754535px;}
.x28_c00182{left:75.175185px;}
.x1d_c00182{left:76.214685px;}
.x13_c00182{left:77.467035px;}
.x1_c00182{left:79.500000px;}
.x55_c00182{left:96.900735px;}
.x51_c00182{left:107.315535px;}
.x1e_c00182{left:108.711435px;}
.x35_c00182{left:119.834085px;}
.x4c_c00182{left:129.684585px;}
.x14_c00182{left:131.902185px;}
.x3d_c00182{left:133.664385px;}
.x2f_c00182{left:141.653685px;}
.x6_c00182{left:143.173335px;}
.x1f_c00182{left:153.256485px;}
.x52_c00182{left:163.394085px;}
.x15_c00182{left:164.473185px;}
.x7_c00182{left:175.481985px;}
.x16_c00182{left:186.010635px;}
.x5f_c00182{left:187.262985px;}
.x44_c00182{left:197.247135px;}
.x20_c00182{left:199.217235px;}
.x8_c00182{left:208.250985px;}
.x29_c00182{left:218.809335px;}
.x36_c00182{left:230.258685px;}
.x21_c00182{left:231.412035px;}
.x17_c00182{left:240.371535px;}
.x5b_c00182{left:241.683285px;}
.x46_c00182{left:252.484185px;}
.x22_c00182{left:255.637335px;}
.x30_c00182{left:263.349435px;}
.x18_c00182{left:274.368135px;}
.x9_c00182{left:275.966985px;}
.x31_c00182{left:285.515535px;}
.x2a_c00182{left:296.499585px;}
.x4d_c00182{left:297.682635px;}
.x62_c00182{left:305.676885px;}
.x37_c00182{left:307.736085px;}
.x23_c00182{left:319.413135px;}
.xa_c00182{left:330.199185px;}
.x42_c00182{left:340.896135px;}
.x59_c00182{left:341.925735px;}
.x3e_c00182{left:351.741585px;}
.x38_c00182{left:352.969185px;}
.xb_c00182{left:362.418735px;}
.x2b_c00182{left:364.047285px;}
.x24_c00182{left:374.813535px;}
.x39_c00182{left:385.243185px;}
.x47_c00182{left:395.257035px;}
.x45_c00182{left:396.836085px;}
.x25_c00182{left:407.473635px;}
.x5a_c00182{left:408.587385px;}
.x3f_c00182{left:419.442735px;}
.x32_c00182{left:429.981285px;}
.xc_c00182{left:441.029685px;}
.x2c_c00182{left:442.430535px;}
.x19_c00182{left:452.394885px;}
.x5d_c00182{left:461.824635px;}
.xd_c00182{left:463.062135px;}
.x26_c00182{left:474.358035px;}
.x3a_c00182{left:485.545035px;}
.x56_c00182{left:495.049035px;}
.x5c_c00182{left:496.142985px;}
.x60_c00182{left:508.022985px;}
.x66_c00182{left:509.171385px;}
.x48_c00182{left:517.462635px;}
.x40_c00182{left:519.353535px;}
.x43_c00182{left:528.550635px;}
.x57_c00182{left:529.644585px;}
.xe_c00182{left:540.737535px;}
.x5e_c00182{left:543.598635px;}
.x5_c00182{left:551.904735px;}
.x33_c00182{left:562.730385px;}
.x53_c00182{left:563.977785px;}
.xf_c00182{left:573.402585px;}
.x63_c00182{left:574.536135px;}
.x4b_c00182{left:575.818185px;}
.x1a_c00182{left:584.114385px;}
.x49_c00182{left:586.054785px;}
.x3b_c00182{left:595.108335px;}
.x34_c00182{left:596.405235px;}
.x2d_c00182{left:607.339785px;}
.x54_c00182{left:617.769435px;}
.x41_c00182{left:619.155435px;}
.x1b_c00182{left:629.575185px;}
.x2e_c00182{left:639.351435px;}
.x10_c00182{left:641.524485px;}
.x3_c00182{left:651.612585px;}
.x4a_c00182{left:652.711485px;}
.x11_c00182{left:662.720385px;}
.x61_c00182{left:664.640985px;}
.x58_c00182{left:666.838785px;}
.x12_c00182{left:673.214385px;}
.x4e_c00182{left:683.772735px;}
.x27_c00182{left:685.044885px;}
.x4f_c00182{left:688.831635px;}
.x4_c00182{left:695.895285px;}
.x64_c00182{left:700.944285px;}
.x65_c00182{left:702.597585px;}
.x1c_c00182{left:707.230785px;}
.x3c_c00182{left:718.279185px;}
@media print{
.v0_c00182{vertical-align:0.000000pt;}
.lsb_c00182{letter-spacing:-2.439360pt;}
.ls19_c00182{letter-spacing:-0.418176pt;}
.ls7_c00182{letter-spacing:-0.030272pt;}
.ls6_c00182{letter-spacing:0.000000pt;}
.ls2_c00182{letter-spacing:0.348128pt;}
.ls17_c00182{letter-spacing:0.627264pt;}
.lsc_c00182{letter-spacing:1.164504pt;}
.lsf_c00182{letter-spacing:1.895731pt;}
.ls1_c00182{letter-spacing:2.459570pt;}
.ls12_c00182{letter-spacing:2.474208pt;}
.lse_c00182{letter-spacing:2.766931pt;}
.ls15_c00182{letter-spacing:2.912800pt;}
.ls13_c00182{letter-spacing:3.024806pt;}
.ls14_c00182{letter-spacing:3.101472pt;}
.ls9_c00182{letter-spacing:3.150400pt;}
.ls5_c00182{letter-spacing:3.261773pt;}
.ls4_c00182{letter-spacing:3.282682pt;}
.lsa_c00182{letter-spacing:3.484800pt;}
.lsd_c00182{letter-spacing:3.784000pt;}
.ls18_c00182{letter-spacing:3.977609pt;}
.ls3_c00182{letter-spacing:7.108992pt;}
.ls16_c00182{letter-spacing:7.603376pt;}
.ls0_c00182{letter-spacing:13.622400pt;}
.ls8_c00182{letter-spacing:29.145776pt;}
.ls11_c00182{letter-spacing:44.352176pt;}
.ls10_c00182{letter-spacing:45.619376pt;}
.ws5_c00182{word-spacing:-20.685773pt;}
.ws1_c00182{word-spacing:-19.898208pt;}
.ws3_c00182{word-spacing:-18.051264pt;}
.ws0_c00182{word-spacing:-17.424000pt;}
.ws2_c00182{word-spacing:-3.206016pt;}
.ws6_c00182{word-spacing:-1.951488pt;}
.ws7_c00182{word-spacing:0.000000pt;}
.ws4_c00182{word-spacing:1.812096pt;}
._e_c00182{margin-left:-3.624192pt;}
._4_c00182{margin-left:-0.905344pt;}
._d_c00182{width:3.833280pt;}
._9_c00182{width:5.575680pt;}
._1_c00182{width:7.039296pt;}
._6_c00182{width:8.433216pt;}
._c_c00182{width:9.408960pt;}
._5_c00182{width:11.151360pt;}
._8_c00182{width:14.287680pt;}
._11_c00182{width:16.315834pt;}
._3_c00182{width:18.539136pt;}
._b_c00182{width:19.793664pt;}
._10_c00182{width:20.699008pt;}
._7_c00182{width:22.302720pt;}
._0_c00182{width:24.428654pt;}
._2_c00182{width:26.947360pt;}
._a_c00182{width:31.572288pt;}
._f_c00182{width:36.172224pt;}
._12_c00182{width:88.723360pt;}
.fsd_c00182{font-size:7.603376pt;}
.fsb_c00182{font-size:20.064000pt;}
.fs12_c00182{font-size:21.824000pt;}
.fs10_c00182{font-size:24.640000pt;}
.fs4_c00182{font-size:25.168000pt;}
.fs8_c00182{font-size:29.040000pt;}
.fs3_c00182{font-size:29.145776pt;}
.fsf_c00182{font-size:29.568000pt;}
.fs0_c00182{font-size:30.272176pt;}
.fs2_c00182{font-size:30.800000pt;}
.fs11_c00182{font-size:34.496000pt;}
.fs13_c00182{font-size:40.832176pt;}
.fsa_c00182{font-size:44.352176pt;}
.fs9_c00182{font-size:45.619376pt;}
.fsc_c00182{font-size:58.256000pt;}
.fs5_c00182{font-size:63.008000pt;}
.fs6_c00182{font-size:69.696000pt;}
.fs1_c00182{font-size:75.680000pt;}
.fs7_c00182{font-size:76.384176pt;}
.fse_c00182{font-size:79.552176pt;}
.y0_c00182{bottom:0.000000pt;}
.y2a_c00182{bottom:16.707720pt;}
.y29_c00182{bottom:41.418120pt;}
.y28_c00182{bottom:42.685320pt;}
.y27_c00182{bottom:44.586120pt;}
.y26_c00182{bottom:49.021320pt;}
.y1_c00182{bottom:68.000000pt;}
.y25_c00182{bottom:76.582920pt;}
.y24_c00182{bottom:83.240120pt;}
.y23_c00182{bottom:107.633720pt;}
.y22_c00182{bottom:128.854920pt;}
.y21_c00182{bottom:144.694920pt;}
.y20_c00182{bottom:185.562120pt;}
.y1e_c00182{bottom:214.390568pt;}
.y1f_c00182{bottom:214.395320pt;}
.y1d_c00182{bottom:243.540920pt;}
.y1c_c00182{bottom:272.048520pt;}
.y1b_c00182{bottom:300.560520pt;}
.y1a_c00182{bottom:329.393720pt;}
.y19_c00182{bottom:358.856120pt;}
.y18_c00182{bottom:384.200120pt;}
.y17_c00182{bottom:387.368120pt;}
.y16_c00182{bottom:416.196920pt;}
.y15_c00182{bottom:445.021320pt;}
.y14_c00182{bottom:473.537720pt;}
.y13_c00182{bottom:514.083720pt;}
.y12_c00182{bottom:530.244920pt;}
.y11_c00182{bottom:559.073720pt;}
.y10_c00182{bottom:588.219320pt;}
.yf_c00182{bottom:617.043720pt;}
.ye_c00182{bottom:645.560120pt;}
.yd_c00182{bottom:673.750920pt;}
.yc_c00182{bottom:702.579720pt;}
.y2_c00182{bottom:713.988920pt;}
.yb_c00182{bottom:732.046520pt;}
.y9_c00182{bottom:761.821320pt;}
.ya_c00182{bottom:766.577720pt;}
.y8_c00182{bottom:790.654520pt;}
.y7_c00182{bottom:820.750520pt;}
.y6_c00182{bottom:871.121720pt;}
.y5_c00182{bottom:939.229320pt;}
.y4_c00182{bottom:948.733320pt;}
.y3_c00182{bottom:955.069320pt;}
.hf_c00182{height:5.063848pt;}
.h5_c00182{height:19.411087pt;}
.hd_c00182{height:20.926125pt;}
.h14_c00182{height:21.419063pt;}
.h12_c00182{height:25.698750pt;}
.h6_c00182{height:26.249438pt;}
.hc_c00182{height:29.538549pt;}
.ha_c00182{height:30.287813pt;}
.hb_c00182{height:30.382504pt;}
.h11_c00182{height:30.838500pt;}
.h2_c00182{height:31.572934pt;}
.h4_c00182{height:32.123438pt;}
.h13_c00182{height:35.978250pt;}
.h15_c00182{height:42.586684pt;}
.h16_c00182{height:57.175078pt;}
.he_c00182{height:60.759188pt;}
.h7_c00182{height:61.838906pt;}
.h8_c00182{height:68.402813pt;}
.h3_c00182{height:74.275781pt;}
.h9_c00182{height:74.966891pt;}
.h10_c00182{height:78.076110pt;}
.h1_c00182{height:986.666667pt;}
.h0_c00182{height:1122.666667pt;}
.w1_c00182{width:652.000000pt;}
.w0_c00182{width:793.333333pt;}
.x0_c00182{left:0.000000pt;}
.x2_c00182{left:39.744787pt;}
.x50_c00182{left:65.559587pt;}
.x28_c00182{left:66.822387pt;}
.x1d_c00182{left:67.746387pt;}
.x13_c00182{left:68.859587pt;}
.x1_c00182{left:70.666667pt;}
.x55_c00182{left:86.133987pt;}
.x51_c00182{left:95.391587pt;}
.x1e_c00182{left:96.632387pt;}
.x35_c00182{left:106.519187pt;}
.x4c_c00182{left:115.275187pt;}
.x14_c00182{left:117.246387pt;}
.x3d_c00182{left:118.812787pt;}
.x2f_c00182{left:125.914387pt;}
.x6_c00182{left:127.265187pt;}
.x1f_c00182{left:136.227987pt;}
.x52_c00182{left:145.239187pt;}
.x15_c00182{left:146.198387pt;}
.x7_c00182{left:155.983987pt;}
.x16_c00182{left:165.342787pt;}
.x5f_c00182{left:166.455987pt;}
.x44_c00182{left:175.330787pt;}
.x20_c00182{left:177.081987pt;}
.x8_c00182{left:185.111987pt;}
.x29_c00182{left:194.497187pt;}
.x36_c00182{left:204.674387pt;}
.x21_c00182{left:205.699587pt;}
.x17_c00182{left:213.663587pt;}
.x5b_c00182{left:214.829587pt;}
.x46_c00182{left:224.430387pt;}
.x22_c00182{left:227.233187pt;}
.x30_c00182{left:234.088387pt;}
.x18_c00182{left:243.882787pt;}
.x9_c00182{left:245.303987pt;}
.x31_c00182{left:253.791587pt;}
.x2a_c00182{left:263.555187pt;}
.x4d_c00182{left:264.606787pt;}
.x62_c00182{left:271.712787pt;}
.x37_c00182{left:273.543187pt;}
.x23_c00182{left:283.922787pt;}
.xa_c00182{left:293.510387pt;}
.x42_c00182{left:303.018787pt;}
.x59_c00182{left:303.933987pt;}
.x3e_c00182{left:312.659187pt;}
.x38_c00182{left:313.750387pt;}
.xb_c00182{left:322.149987pt;}
.x2b_c00182{left:323.597587pt;}
.x24_c00182{left:333.167587pt;}
.x39_c00182{left:342.438387pt;}
.x47_c00182{left:351.339587pt;}
.x45_c00182{left:352.743187pt;}
.x25_c00182{left:362.198787pt;}
.x5a_c00182{left:363.188787pt;}
.x3f_c00182{left:372.837987pt;}
.x32_c00182{left:382.205587pt;}
.xc_c00182{left:392.026387pt;}
.x2c_c00182{left:393.271587pt;}
.x19_c00182{left:402.128787pt;}
.x5d_c00182{left:410.510787pt;}
.xd_c00182{left:411.610787pt;}
.x26_c00182{left:421.651587pt;}
.x3a_c00182{left:431.595587pt;}
.x56_c00182{left:440.043587pt;}
.x5c_c00182{left:441.015987pt;}
.x60_c00182{left:451.575987pt;}
.x66_c00182{left:452.596787pt;}
.x48_c00182{left:459.966787pt;}
.x40_c00182{left:461.647587pt;}
.x43_c00182{left:469.822787pt;}
.x57_c00182{left:470.795187pt;}
.xe_c00182{left:480.655587pt;}
.x5e_c00182{left:483.198787pt;}
.x5_c00182{left:490.581987pt;}
.x33_c00182{left:500.204787pt;}
.x53_c00182{left:501.313587pt;}
.xf_c00182{left:509.691187pt;}
.x63_c00182{left:510.698787pt;}
.x4b_c00182{left:511.838387pt;}
.x1a_c00182{left:519.212787pt;}
.x49_c00182{left:520.937587pt;}
.x3b_c00182{left:528.985187pt;}
.x34_c00182{left:530.137987pt;}
.x2d_c00182{left:539.857587pt;}
.x54_c00182{left:549.128387pt;}
.x41_c00182{left:550.360387pt;}
.x1b_c00182{left:559.622387pt;}
.x2e_c00182{left:568.312387pt;}
.x10_c00182{left:570.243987pt;}
.x3_c00182{left:579.211187pt;}
.x4a_c00182{left:580.187987pt;}
.x11_c00182{left:589.084787pt;}
.x61_c00182{left:590.791987pt;}
.x58_c00182{left:592.745587pt;}
.x12_c00182{left:598.412787pt;}
.x4e_c00182{left:607.797987pt;}
.x27_c00182{left:608.928787pt;}
.x4f_c00182{left:612.294787pt;}
.x4_c00182{left:618.573587pt;}
.x64_c00182{left:623.061587pt;}
.x65_c00182{left:624.531187pt;}
.x1c_c00182{left:628.649587pt;}
.x3c_c00182{left:638.470387pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2b409e8dd5fb936cfa0b2bf4.woff2')format("woff");}.ff1_c00183{font-family:ff1_c00183;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00183;src:url('chunks/assets/font_f61e50547dd01dc712c25f07.woff2')format("woff");}.ff2_c00183{font-family:ff2_c00183;line-height:1.402354;font-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_c00183{transform:matrix(0.112454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112454,0.000000,0.000000,0.250000,0,0);}
.m2e_c00183{transform:matrix(0.189703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189703,0.000000,0.000000,0.250000,0,0);}
.m86_c00183{transform:matrix(0.216704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216704,0.000000,0.000000,0.250000,0,0);}
.m75_c00183{transform:matrix(0.219347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219347,0.000000,0.000000,0.250000,0,0);}
.ma1_c00183{transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);}
.m6a_c00183{transform:matrix(0.249607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249607,0.000000,0.000000,0.250000,0,0);}
.m4_c00183{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m96_c00183{transform:matrix(0.253763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253763,0.000000,0.000000,0.250000,0,0);}
.m2c_c00183{transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);}
.m76_c00183{transform:matrix(0.254535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254535,0.000000,0.000000,0.250000,0,0);}
.m5b_c00183{transform:matrix(0.254597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254597,0.000000,0.000000,0.250000,0,0);}
.m9d_c00183{transform:matrix(0.254830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254830,0.000000,0.000000,0.250000,0,0);}
.m6d_c00183{transform:matrix(0.257128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257128,0.000000,0.000000,0.250000,0,0);}
.m35_c00183{transform:matrix(0.258203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258203,0.000000,0.000000,0.250000,0,0);}
.m51_c00183{transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);}
.m15_c00183{transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);}
.m19_c00183{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m57_c00183{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.m29_c00183{transform:matrix(0.262539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262539,0.000000,0.000000,0.250000,0,0);}
.m4f_c00183{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m7f_c00183{transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);}
.m3c_c00183{transform:matrix(0.265205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265205,0.000000,0.000000,0.250000,0,0);}
.m80_c00183{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m23_c00183{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.m7c_c00183{transform:matrix(0.266966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266966,0.000000,0.000000,0.250000,0,0);}
.m3_c00183{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m1a_c00183{transform:matrix(0.268436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268436,0.000000,0.000000,0.250000,0,0);}
.ma_c00183{transform:matrix(0.269854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269854,0.000000,0.000000,0.250000,0,0);}
.m1c_c00183{transform:matrix(0.270227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270227,0.000000,0.000000,0.250000,0,0);}
.m27_c00183{transform:matrix(0.270340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270340,0.000000,0.000000,0.250000,0,0);}
.m38_c00183{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m94_c00183{transform:matrix(0.270958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270958,0.000000,0.000000,0.250000,0,0);}
.m7_c00183{transform:matrix(0.271783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271783,0.000000,0.000000,0.250000,0,0);}
.mf_c00183{transform:matrix(0.272357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272357,0.000000,0.000000,0.250000,0,0);}
.mb_c00183{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m53_c00183{transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);}
.m9_c00183{transform:matrix(0.274501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274501,0.000000,0.000000,0.250000,0,0);}
.m5f_c00183{transform:matrix(0.274650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274650,0.000000,0.000000,0.250000,0,0);}
.m4e_c00183{transform:matrix(0.275259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275259,0.000000,0.000000,0.250000,0,0);}
.m3b_c00183{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m6e_c00183{transform:matrix(0.275570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275570,0.000000,0.000000,0.250000,0,0);}
.ma8_c00183{transform:matrix(0.275992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275992,0.000000,0.000000,0.250000,0,0);}
.m11_c00183{transform:matrix(0.276058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276058,0.000000,0.000000,0.250000,0,0);}
.m21_c00183{transform:matrix(0.276376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276376,0.000000,0.000000,0.250000,0,0);}
.m8d_c00183{transform:matrix(0.276535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276535,0.000000,0.000000,0.250000,0,0);}
.m98_c00183{transform:matrix(0.277433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277433,0.000000,0.000000,0.250000,0,0);}
.m81_c00183{transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);}
.m6b_c00183{transform:matrix(0.280061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280061,0.000000,0.000000,0.250000,0,0);}
.m42_c00183{transform:matrix(0.280223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280223,0.000000,0.000000,0.250000,0,0);}
.m7b_c00183{transform:matrix(0.280910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280910,0.000000,0.000000,0.250000,0,0);}
.m85_c00183{transform:matrix(0.281755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281755,0.000000,0.000000,0.250000,0,0);}
.m88_c00183{transform:matrix(0.281790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281790,0.000000,0.000000,0.250000,0,0);}
.m18_c00183{transform:matrix(0.282311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282311,0.000000,0.000000,0.250000,0,0);}
.m8b_c00183{transform:matrix(0.282583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282583,0.000000,0.000000,0.250000,0,0);}
.m6f_c00183{transform:matrix(0.282587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282587,0.000000,0.000000,0.250000,0,0);}
.m7a_c00183{transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);}
.m30_c00183{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m64_c00183{transform:matrix(0.283815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283815,0.000000,0.000000,0.250000,0,0);}
.m60_c00183{transform:matrix(0.283852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283852,0.000000,0.000000,0.250000,0,0);}
.m2_c00183{transform:matrix(0.284316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284316,0.000000,0.000000,0.250000,0,0);}
.m2a_c00183{transform:matrix(0.284338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284338,0.000000,0.000000,0.250000,0,0);}
.m4a_c00183{transform:matrix(0.284425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284425,0.000000,0.000000,0.250000,0,0);}
.m71_c00183{transform:matrix(0.284614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284614,0.000000,0.000000,0.250000,0,0);}
.m5e_c00183{transform:matrix(0.284706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284706,0.000000,0.000000,0.250000,0,0);}
.m46_c00183{transform:matrix(0.285319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285319,0.000000,0.000000,0.250000,0,0);}
.m65_c00183{transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);}
.m1b_c00183{transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);}
.m39_c00183{transform:matrix(0.285890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285890,0.000000,0.000000,0.250000,0,0);}
.m55_c00183{transform:matrix(0.288455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288455,0.000000,0.000000,0.250000,0,0);}
.m5_c00183{transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);}
.m37_c00183{transform:matrix(0.288667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288667,0.000000,0.000000,0.250000,0,0);}
.m6c_c00183{transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);}
.m82_c00183{transform:matrix(0.289397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289397,0.000000,0.000000,0.250000,0,0);}
.m5d_c00183{transform:matrix(0.289643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289643,0.000000,0.000000,0.250000,0,0);}
.ma6_c00183{transform:matrix(0.290201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290201,0.000000,0.000000,0.250000,0,0);}
.m0_c00183{transform:matrix(0.290285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290285,0.000000,0.000000,0.250000,0,0);}
.m83_c00183{transform:matrix(0.291614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291614,0.000000,0.000000,0.250000,0,0);}
.m9e_c00183{transform:matrix(0.291645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291645,0.000000,0.000000,0.250000,0,0);}
.m12_c00183{transform:matrix(0.291718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291718,0.000000,0.000000,0.250000,0,0);}
.m50_c00183{transform:matrix(0.291730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291730,0.000000,0.000000,0.250000,0,0);}
.m2d_c00183{transform:matrix(0.292741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292741,0.000000,0.000000,0.250000,0,0);}
.m59_c00183{transform:matrix(0.292741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292741,0.000000,0.000000,0.250000,0,0);}
.m9f_c00183{transform:matrix(0.292841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292841,0.000000,0.000000,0.250000,0,0);}
.m70_c00183{transform:matrix(0.293256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293256,0.000000,0.000000,0.250000,0,0);}
.m48_c00183{transform:matrix(0.294550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294550,0.000000,0.000000,0.250000,0,0);}
.m3f_c00183{transform:matrix(0.294691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294691,0.000000,0.000000,0.250000,0,0);}
.m34_c00183{transform:matrix(0.294875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294875,0.000000,0.000000,0.250000,0,0);}
.m72_c00183{transform:matrix(0.296467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296467,0.000000,0.000000,0.250000,0,0);}
.m41_c00183{transform:matrix(0.296583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296583,0.000000,0.000000,0.250000,0,0);}
.ma4_c00183{transform:matrix(0.296846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296846,0.000000,0.000000,0.250000,0,0);}
.m67_c00183{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m33_c00183{transform:matrix(0.297306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297306,0.000000,0.000000,0.250000,0,0);}
.md_c00183{transform:matrix(0.298177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298177,0.000000,0.000000,0.250000,0,0);}
.m9a_c00183{transform:matrix(0.299150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299150,0.000000,0.000000,0.250000,0,0);}
.m99_c00183{transform:matrix(0.299719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299719,0.000000,0.000000,0.250000,0,0);}
.m32_c00183{transform:matrix(0.300360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300360,0.000000,0.000000,0.250000,0,0);}
.m68_c00183{transform:matrix(0.300741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300741,0.000000,0.000000,0.250000,0,0);}
.m2b_c00183{transform:matrix(0.300778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300778,0.000000,0.000000,0.250000,0,0);}
.m63_c00183{transform:matrix(0.302024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302024,0.000000,0.000000,0.250000,0,0);}
.m4b_c00183{transform:matrix(0.302096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302096,0.000000,0.000000,0.250000,0,0);}
.m3e_c00183{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m44_c00183{transform:matrix(0.302714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302714,0.000000,0.000000,0.250000,0,0);}
.m40_c00183{transform:matrix(0.304071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304071,0.000000,0.000000,0.250000,0,0);}
.m31_c00183{transform:matrix(0.304812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304812,0.000000,0.000000,0.250000,0,0);}
.m92_c00183{transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);}
.m79_c00183{transform:matrix(0.307243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307243,0.000000,0.000000,0.250000,0,0);}
.m54_c00183{transform:matrix(0.307454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307454,0.000000,0.000000,0.250000,0,0);}
.m93_c00183{transform:matrix(0.307491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307491,0.000000,0.000000,0.250000,0,0);}
.m5a_c00183{transform:matrix(0.307830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307830,0.000000,0.000000,0.250000,0,0);}
.m26_c00183{transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);}
.m17_c00183{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m10_c00183{transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);}
.mc_c00183{transform:matrix(0.309172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309172,0.000000,0.000000,0.250000,0,0);}
.ma5_c00183{transform:matrix(0.309349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309349,0.000000,0.000000,0.250000,0,0);}
.m84_c00183{transform:matrix(0.309593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309593,0.000000,0.000000,0.250000,0,0);}
.ma2_c00183{transform:matrix(0.310079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310079,0.000000,0.000000,0.250000,0,0);}
.m8a_c00183{transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);}
.m14_c00183{transform:matrix(0.312196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312196,0.000000,0.000000,0.250000,0,0);}
.m62_c00183{transform:matrix(0.312347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312347,0.000000,0.000000,0.250000,0,0);}
.m43_c00183{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.m16_c00183{transform:matrix(0.313129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313129,0.000000,0.000000,0.250000,0,0);}
.me_c00183{transform:matrix(0.313369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313369,0.000000,0.000000,0.250000,0,0);}
.m8f_c00183{transform:matrix(0.314182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314182,0.000000,0.000000,0.250000,0,0);}
.m1d_c00183{transform:matrix(0.315011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315011,0.000000,0.000000,0.250000,0,0);}
.m73_c00183{transform:matrix(0.315855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315855,0.000000,0.000000,0.250000,0,0);}
.m90_c00183{transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);}
.m22_c00183{transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);}
.m3d_c00183{transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);}
.m6_c00183{transform:matrix(0.316676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316676,0.000000,0.000000,0.250000,0,0);}
.m24_c00183{transform:matrix(0.317253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317253,0.000000,0.000000,0.250000,0,0);}
.m20_c00183{transform:matrix(0.317387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317387,0.000000,0.000000,0.250000,0,0);}
.m4d_c00183{transform:matrix(0.317979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317979,0.000000,0.000000,0.250000,0,0);}
.m66_c00183{transform:matrix(0.317996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317996,0.000000,0.000000,0.250000,0,0);}
.m91_c00183{transform:matrix(0.318957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318957,0.000000,0.000000,0.250000,0,0);}
.m7d_c00183{transform:matrix(0.319290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319290,0.000000,0.000000,0.250000,0,0);}
.m45_c00183{transform:matrix(0.320233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320233,0.000000,0.000000,0.250000,0,0);}
.ma0_c00183{transform:matrix(0.321107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321107,0.000000,0.000000,0.250000,0,0);}
.m61_c00183{transform:matrix(0.321130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321130,0.000000,0.000000,0.250000,0,0);}
.m2f_c00183{transform:matrix(0.321432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321432,0.000000,0.000000,0.250000,0,0);}
.m74_c00183{transform:matrix(0.322194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322194,0.000000,0.000000,0.250000,0,0);}
.ma7_c00183{transform:matrix(0.322411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322411,0.000000,0.000000,0.250000,0,0);}
.m87_c00183{transform:matrix(0.322427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322427,0.000000,0.000000,0.250000,0,0);}
.m56_c00183{transform:matrix(0.322541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322541,0.000000,0.000000,0.250000,0,0);}
.m49_c00183{transform:matrix(0.324420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324420,0.000000,0.000000,0.250000,0,0);}
.m28_c00183{transform:matrix(0.325523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325523,0.000000,0.000000,0.250000,0,0);}
.m5c_c00183{transform:matrix(0.325687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325687,0.000000,0.000000,0.250000,0,0);}
.m4c_c00183{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m13_c00183{transform:matrix(0.328711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328711,0.000000,0.000000,0.250000,0,0);}
.m36_c00183{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m97_c00183{transform:matrix(0.333255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333255,0.000000,0.000000,0.250000,0,0);}
.m89_c00183{transform:matrix(0.336458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336458,0.000000,0.000000,0.250000,0,0);}
.ma3_c00183{transform:matrix(0.336509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336509,0.000000,0.000000,0.250000,0,0);}
.m8e_c00183{transform:matrix(0.337661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337661,0.000000,0.000000,0.250000,0,0);}
.m1e_c00183{transform:matrix(0.339030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339030,0.000000,0.000000,0.250000,0,0);}
.m9b_c00183{transform:matrix(0.340207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340207,0.000000,0.000000,0.250000,0,0);}
.m8c_c00183{transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);}
.m8_c00183{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.m58_c00183{transform:matrix(0.344474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344474,0.000000,0.000000,0.250000,0,0);}
.m95_c00183{transform:matrix(0.344891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344891,0.000000,0.000000,0.250000,0,0);}
.m1f_c00183{transform:matrix(0.347269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347269,0.000000,0.000000,0.250000,0,0);}
.m47_c00183{transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);}
.m3a_c00183{transform:matrix(0.349123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349123,0.000000,0.000000,0.250000,0,0);}
.m25_c00183{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m77_c00183{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.ma9_c00183{transform:matrix(0.355739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355739,0.000000,0.000000,0.250000,0,0);}
.m78_c00183{transform:matrix(0.362785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362785,0.000000,0.000000,0.250000,0,0);}
.m69_c00183{transform:matrix(0.364775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364775,0.000000,0.000000,0.250000,0,0);}
.maa_c00183{transform:matrix(0.366396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366396,0.000000,0.000000,0.250000,0,0);}
.m1_c00183{transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);}
.m52_c00183{transform:matrix(0.372071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372071,0.000000,0.000000,0.250000,0,0);}
.m7e_c00183{transform:matrix(0.416907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416907,0.000000,0.000000,0.250000,0,0);}
.m9c_c00183{transform:matrix(0.432348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432348,0.000000,0.000000,0.250000,0,0);}
.v0_c00183{vertical-align:0.000000px;}
.ls10_c00183{letter-spacing:-4.989600px;}
.ls5_c00183{letter-spacing:-2.744280px;}
.ls4_c00183{letter-spacing:0.000000px;}
.ls6_c00183{letter-spacing:0.180338px;}
.ls7_c00183{letter-spacing:0.439085px;}
.ls8_c00183{letter-spacing:1.152598px;}
.lse_c00183{letter-spacing:1.685772px;}
.lsb_c00183{letter-spacing:2.054290px;}
.lsd_c00183{letter-spacing:2.391444px;}
.ls3_c00183{letter-spacing:2.681554px;}
.ls0_c00183{letter-spacing:2.901096px;}
.lsc_c00183{letter-spacing:3.050071px;}
.lsa_c00183{letter-spacing:3.167683px;}
.lsf_c00183{letter-spacing:3.191206px;}
.ls1_c00183{letter-spacing:3.791700px;}
.ls9_c00183{letter-spacing:3.889037px;}
.ls2_c00183{letter-spacing:3.920400px;}
.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;}
}
.ws1_c00183{word-spacing:-22.769683px;}
.ws0_c00183{word-spacing:-19.602000px;}
.ws2_c00183{word-spacing:0.000000px;}
._e_c00183{margin-left:-1.254528px;}
._9_c00183{width:4.940100px;}
._2_c00183{width:6.271848px;}
._3_c00183{width:7.919208px;}
._8_c00183{width:9.330552px;}
._6_c00183{width:14.191848px;}
._4_c00183{width:17.484588px;}
._0_c00183{width:20.855736px;}
._b_c00183{width:24.619716px;}
._7_c00183{width:27.521208px;}
._d_c00183{width:30.983040px;}
._5_c00183{width:32.148072px;}
._a_c00183{width:34.578720px;}
._1_c00183{width:36.773748px;}
._c_c00183{width:37.870668px;}
.fc0_c00183{color:transparent;}
.fs3_c00183{font-size:38.610000px;}
.fs0_c00183{font-size:75.834000px;}
.fs1_c00183{font-size:78.408000px;}
.fs2_c00183{font-size:78.804000px;}
.fs4_c00183{font-size:142.560000px;}
.y0_c00183{bottom:0.000000px;}
.y1c_c00183{bottom:5.257935px;}
.y1b_c00183{bottom:42.674985px;}
.y1_c00183{bottom:76.500000px;}
.y1a_c00183{bottom:186.665535px;}
.y19_c00183{bottom:218.380185px;}
.y18_c00183{bottom:250.104735px;}
.y17_c00183{bottom:282.180735px;}
.y15_c00183{bottom:314.246439px;}
.y16_c00183{bottom:314.251785px;}
.y14_c00183{bottom:347.040585px;}
.y13_c00183{bottom:378.760185px;}
.y12_c00183{bottom:410.836185px;}
.y11_c00183{bottom:442.917135px;}
.yf_c00183{bottom:474.626439px;}
.y10_c00183{bottom:474.631785px;}
.ye_c00183{bottom:507.420585px;}
.yd_c00183{bottom:539.857935px;}
.yc_c00183{bottom:604.004985px;}
.yb_c00183{bottom:636.437385px;}
.ya_c00183{bottom:668.518335px;}
.y9_c00183{bottom:700.950735px;}
.y8_c00183{bottom:733.021785px;}
.y7_c00183{bottom:797.891535px;}
.y6_c00183{bottom:829.606185px;}
.y5_c00183{bottom:862.394985px;}
.y4_c00183{bottom:894.475935px;}
.y3_c00183{bottom:926.908335px;}
.y2_c00183{bottom:1075.878585px;}
.h5_c00183{height:39.684996px;}
.h2_c00183{height:74.426924px;}
.h3_c00183{height:76.953164px;}
.h4_c00183{height:77.341816px;}
.h6_c00183{height:139.914844px;}
.h1_c00183{height:1110.000000px;}
.h0_c00183{height:1263.000000px;}
.w1_c00183{width:733.500000px;}
.w0_c00183{width:892.500000px;}
.x0_c00183{left:0.000000px;}
.x3a_c00183{left:55.924635px;}
.x1f_c00183{left:57.320535px;}
.x3_c00183{left:58.924335px;}
.x53_c00183{left:66.656235px;}
.x19_c00183{left:68.943135px;}
.x45_c00183{left:78.090735px;}
.x1_c00183{left:79.500000px;}
.x4c_c00183{left:89.272785px;}
.x4_c00183{left:90.861735px;}
.x2e_c00183{left:99.049035px;}
.x4d_c00183{left:100.157835px;}
.x20_c00183{left:101.345835px;}
.x2a_c00183{left:110.735985px;}
.x1a_c00183{left:112.310085px;}
.x34_c00183{left:122.408085px;}
.x10_c00183{left:123.808935px;}
.x4e_c00183{left:133.802985px;}
.x54_c00183{left:135.218685px;}
.x2b_c00183{left:144.024735px;}
.x40_c00183{left:145.529535px;}
.x35_c00183{left:155.865135px;}
.x57_c00183{left:156.968985px;}
.x5_c00183{left:166.601685px;}
.x2f_c00183{left:167.626335px;}
.x3c_c00183{left:177.803535px;}
.x37_c00183{left:189.698385px;}
.x6_c00183{left:198.791535px;}
.x55_c00183{left:211.399185px;}
.x21_c00183{left:221.408085px;}
.x3d_c00183{left:222.883185px;}
.x11_c00183{left:232.342635px;}
.x1b_c00183{left:243.915735px;}
.x3b_c00183{left:253.721685px;}
.x7_c00183{left:255.226485px;}
.x30_c00183{left:266.398635px;}
.x41_c00183{left:277.085685px;}
.x8_c00183{left:288.802335px;}
.x38_c00183{left:297.959835px;}
.x42_c00183{left:299.816085px;}
.x12_c00183{left:310.582335px;}
.x51_c00183{left:320.710035px;}
.x22_c00183{left:321.883185px;}
.x31_c00183{left:343.653285px;}
.x4f_c00183{left:353.879985px;}
.x13_c00183{left:355.107585px;}
.x23_c00183{left:365.106585px;}
.x46_c00183{left:366.160935px;}
.x39_c00183{left:376.085685px;}
.x32_c00183{left:377.194485px;}
.x9_c00183{left:387.213285px;}
.x1c_c00183{left:398.875485px;}
.x24_c00183{left:408.953685px;}
.x3e_c00183{left:409.993185px;}
.x49_c00183{left:421.041585px;}
.x2c_c00183{left:430.832685px;}
.x52_c00183{left:432.441435px;}
.x3f_c00183{left:442.405785px;}
.x25_c00183{left:453.805635px;}
.x14_c00183{left:464.883735px;}
.x2d_c00183{left:474.808485px;}
.x1d_c00183{left:484.713435px;}
.x43_c00183{left:486.327135px;}
.x33_c00183{left:497.306235px;}
.xa_c00183{left:508.032885px;}
.x47_c00183{left:518.125935px;}
.x1e_c00183{left:519.779235px;}
.x26_c00183{left:530.486085px;}
.xb_c00183{left:541.504785px;}
.x56_c00183{left:542.544285px;}
.x27_c00183{left:552.548235px;}
.x4a_c00183{left:563.057085px;}
.x48_c00183{left:565.309335px;}
.xc_c00183{left:574.451985px;}
.x15_c00183{left:585.371685px;}
.x16_c00183{left:596.251785px;}
.xd_c00183{left:607.112085px;}
.xe_c00183{left:618.180285px;}
.x17_c00183{left:629.243535px;}
.x4b_c00183{left:639.712785px;}
.x2_c00183{left:640.910685px;}
.x44_c00183{left:650.954235px;}
.x28_c00183{left:661.636335px;}
.x18_c00183{left:662.660985px;}
.xf_c00183{left:673.041135px;}
.x36_c00183{left:683.738085px;}
.x29_c00183{left:695.494335px;}
.x50_c00183{left:706.161585px;}
@media print{
.v0_c00183{vertical-align:0.000000pt;}
.ls10_c00183{letter-spacing:-4.435200pt;}
.ls5_c00183{letter-spacing:-2.439360pt;}
.ls4_c00183{letter-spacing:0.000000pt;}
.ls6_c00183{letter-spacing:0.160301pt;}
.ls7_c00183{letter-spacing:0.390298pt;}
.ls8_c00183{letter-spacing:1.024531pt;}
.lse_c00183{letter-spacing:1.498464pt;}
.lsb_c00183{letter-spacing:1.826035pt;}
.lsd_c00183{letter-spacing:2.125728pt;}
.ls3_c00183{letter-spacing:2.383603pt;}
.ls0_c00183{letter-spacing:2.578752pt;}
.lsc_c00183{letter-spacing:2.711174pt;}
.lsa_c00183{letter-spacing:2.815718pt;}
.lsf_c00183{letter-spacing:2.836627pt;}
.ls1_c00183{letter-spacing:3.370400pt;}
.ls9_c00183{letter-spacing:3.456922pt;}
.ls2_c00183{letter-spacing:3.484800pt;}
.ws1_c00183{word-spacing:-20.239718pt;}
.ws0_c00183{word-spacing:-17.424000pt;}
.ws2_c00183{word-spacing:0.000000pt;}
._e_c00183{margin-left:-1.115136pt;}
._9_c00183{width:4.391200pt;}
._2_c00183{width:5.574976pt;}
._3_c00183{width:7.039296pt;}
._8_c00183{width:8.293824pt;}
._6_c00183{width:12.614976pt;}
._4_c00183{width:15.541856pt;}
._0_c00183{width:18.538432pt;}
._b_c00183{width:21.884192pt;}
._7_c00183{width:24.463296pt;}
._d_c00183{width:27.540480pt;}
._5_c00183{width:28.576064pt;}
._a_c00183{width:30.736640pt;}
._1_c00183{width:32.687776pt;}
._c_c00183{width:33.662816pt;}
.fs3_c00183{font-size:34.320000pt;}
.fs0_c00183{font-size:67.408000pt;}
.fs1_c00183{font-size:69.696000pt;}
.fs2_c00183{font-size:70.048000pt;}
.fs4_c00183{font-size:126.720000pt;}
.y0_c00183{bottom:0.000000pt;}
.y1c_c00183{bottom:4.673720pt;}
.y1b_c00183{bottom:37.933320pt;}
.y1_c00183{bottom:68.000000pt;}
.y1a_c00183{bottom:165.924920pt;}
.y19_c00183{bottom:194.115720pt;}
.y18_c00183{bottom:222.315320pt;}
.y17_c00183{bottom:250.827320pt;}
.y15_c00183{bottom:279.330168pt;}
.y16_c00183{bottom:279.334920pt;}
.y14_c00183{bottom:308.480520pt;}
.y13_c00183{bottom:336.675720pt;}
.y12_c00183{bottom:365.187720pt;}
.y11_c00183{bottom:393.704120pt;}
.yf_c00183{bottom:421.890168pt;}
.y10_c00183{bottom:421.894920pt;}
.ye_c00183{bottom:451.040520pt;}
.yd_c00183{bottom:479.873720pt;}
.yc_c00183{bottom:536.893320pt;}
.yb_c00183{bottom:565.722120pt;}
.ya_c00183{bottom:594.238520pt;}
.y9_c00183{bottom:623.067320pt;}
.y8_c00183{bottom:651.574920pt;}
.y7_c00183{bottom:709.236920pt;}
.y6_c00183{bottom:737.427720pt;}
.y5_c00183{bottom:766.573320pt;}
.y4_c00183{bottom:795.089720pt;}
.y3_c00183{bottom:823.918520pt;}
.y2_c00183{bottom:956.336520pt;}
.h5_c00183{height:35.275552pt;}
.h2_c00183{height:66.157266pt;}
.h3_c00183{height:68.402813pt;}
.h4_c00183{height:68.748281pt;}
.h6_c00183{height:124.368750pt;}
.h1_c00183{height:986.666667pt;}
.h0_c00183{height:1122.666667pt;}
.w1_c00183{width:652.000000pt;}
.w0_c00183{width:793.333333pt;}
.x0_c00183{left:0.000000pt;}
.x3a_c00183{left:49.710787pt;}
.x1f_c00183{left:50.951587pt;}
.x3_c00183{left:52.377187pt;}
.x53_c00183{left:59.249987pt;}
.x19_c00183{left:61.282787pt;}
.x45_c00183{left:69.413987pt;}
.x1_c00183{left:70.666667pt;}
.x4c_c00183{left:79.353587pt;}
.x4_c00183{left:80.765987pt;}
.x2e_c00183{left:88.043587pt;}
.x4d_c00183{left:89.029187pt;}
.x20_c00183{left:90.085187pt;}
.x2a_c00183{left:98.431987pt;}
.x1a_c00183{left:99.831187pt;}
.x34_c00183{left:108.807187pt;}
.x10_c00183{left:110.052387pt;}
.x4e_c00183{left:118.935987pt;}
.x54_c00183{left:120.194387pt;}
.x2b_c00183{left:128.021987pt;}
.x40_c00183{left:129.359587pt;}
.x35_c00183{left:138.546787pt;}
.x57_c00183{left:139.527987pt;}
.x5_c00183{left:148.090387pt;}
.x2f_c00183{left:149.001187pt;}
.x3c_c00183{left:158.047587pt;}
.x37_c00183{left:168.620787pt;}
.x6_c00183{left:176.703587pt;}
.x55_c00183{left:187.910387pt;}
.x21_c00183{left:196.807187pt;}
.x3d_c00183{left:198.118387pt;}
.x11_c00183{left:206.526787pt;}
.x1b_c00183{left:216.813987pt;}
.x3b_c00183{left:225.530387pt;}
.x7_c00183{left:226.867987pt;}
.x30_c00183{left:236.798787pt;}
.x41_c00183{left:246.298387pt;}
.x8_c00183{left:256.713187pt;}
.x38_c00183{left:264.853187pt;}
.x42_c00183{left:266.503187pt;}
.x12_c00183{left:276.073187pt;}
.x51_c00183{left:285.075587pt;}
.x22_c00183{left:286.118387pt;}
.x31_c00183{left:305.469587pt;}
.x4f_c00183{left:314.559987pt;}
.x13_c00183{left:315.651187pt;}
.x23_c00183{left:324.539187pt;}
.x46_c00183{left:325.476387pt;}
.x39_c00183{left:334.298387pt;}
.x32_c00183{left:335.283987pt;}
.x9_c00183{left:344.189587pt;}
.x1c_c00183{left:354.555987pt;}
.x24_c00183{left:363.514387pt;}
.x3e_c00183{left:364.438387pt;}
.x49_c00183{left:374.259187pt;}
.x2c_c00183{left:382.962387pt;}
.x52_c00183{left:384.392387pt;}
.x3f_c00183{left:393.249587pt;}
.x25_c00183{left:403.382787pt;}
.x14_c00183{left:413.229987pt;}
.x2d_c00183{left:422.051987pt;}
.x1d_c00183{left:430.856387pt;}
.x43_c00183{left:432.290787pt;}
.x33_c00183{left:442.049987pt;}
.xa_c00183{left:451.584787pt;}
.x47_c00183{left:460.556387pt;}
.x1e_c00183{left:462.025987pt;}
.x26_c00183{left:471.543187pt;}
.xb_c00183{left:481.337587pt;}
.x56_c00183{left:482.261587pt;}
.x27_c00183{left:491.153987pt;}
.x4a_c00183{left:500.495187pt;}
.x48_c00183{left:502.497187pt;}
.xc_c00183{left:510.623987pt;}
.x15_c00183{left:520.330387pt;}
.x16_c00183{left:530.001587pt;}
.xd_c00183{left:539.655187pt;}
.xe_c00183{left:549.493587pt;}
.x17_c00183{left:559.327587pt;}
.x4b_c00183{left:568.633587pt;}
.x2_c00183{left:569.698387pt;}
.x44_c00183{left:578.625987pt;}
.x28_c00183{left:588.121187pt;}
.x18_c00183{left:589.031987pt;}
.xf_c00183{left:598.258787pt;}
.x36_c00183{left:607.767187pt;}
.x29_c00183{left:618.217187pt;}
.x50_c00183{left:627.699187pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1a47f51aff5ef03c65ab4b6b.woff2')format("woff");}.ff1_c00184{font-family:ff1_c00184;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00184;src:url('chunks/assets/font_385ec5bbb7ace2ec27d1412c.woff2')format("woff");}.ff2_c00184{font-family:ff2_c00184;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00184;src:url('chunks/assets/font_274ed2ab117598b761051668.woff2')format("woff");}.ff3_c00184{font-family:ff3_c00184;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00184;src:url('chunks/assets/font_e2eda6e96f0ba1bdd47a5782.woff2')format("woff");}.ff4_c00184{font-family:ff4_c00184;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m16_c00184{transform:matrix(0.152777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152777,0.000000,0.000000,0.250000,0,0);}
.m15_c00184{transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);}
.m99_c00184{transform:matrix(0.210445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210445,0.000000,0.000000,0.250000,0,0);}
.m31_c00184{transform:matrix(0.222093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222093,0.000000,0.000000,0.250000,0,0);}
.m5c_c00184{transform:matrix(0.235739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235739,0.000000,0.000000,0.250000,0,0);}
.m44_c00184{transform:matrix(0.242568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242568,0.000000,0.000000,0.250000,0,0);}
.m2_c00184{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m61_c00184{transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);}
.m34_c00184{transform:matrix(0.253545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253545,0.000000,0.000000,0.250000,0,0);}
.m56_c00184{transform:matrix(0.253960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253960,0.000000,0.000000,0.250000,0,0);}
.m1_c00184{transform:matrix(0.255434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255434,0.000000,0.000000,0.250000,0,0);}
.m77_c00184{transform:matrix(0.255568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255568,0.000000,0.000000,0.250000,0,0);}
.m68_c00184{transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);}
.m53_c00184{transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);}
.m37_c00184{transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);}
.m92_c00184{transform:matrix(0.259358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259358,0.000000,0.000000,0.250000,0,0);}
.m49_c00184{transform:matrix(0.259887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259887,0.000000,0.000000,0.250000,0,0);}
.m36_c00184{transform:matrix(0.260016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260016,0.000000,0.000000,0.250000,0,0);}
.m5f_c00184{transform:matrix(0.260947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260947,0.000000,0.000000,0.250000,0,0);}
.m41_c00184{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m3c_c00184{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.m7f_c00184{transform:matrix(0.261717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261717,0.000000,0.000000,0.250000,0,0);}
.m5a_c00184{transform:matrix(0.263078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263078,0.000000,0.000000,0.250000,0,0);}
.m9_c00184{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.me_c00184{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m8e_c00184{transform:matrix(0.264407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264407,0.000000,0.000000,0.250000,0,0);}
.m6e_c00184{transform:matrix(0.265754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265754,0.000000,0.000000,0.250000,0,0);}
.m3e_c00184{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m3d_c00184{transform:matrix(0.266425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266425,0.000000,0.000000,0.250000,0,0);}
.m1b_c00184{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m3f_c00184{transform:matrix(0.268100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268100,0.000000,0.000000,0.250000,0,0);}
.m6c_c00184{transform:matrix(0.268109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268109,0.000000,0.000000,0.250000,0,0);}
.m65_c00184{transform:matrix(0.268115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268115,0.000000,0.000000,0.250000,0,0);}
.m95_c00184{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.m27_c00184{transform:matrix(0.269817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269817,0.000000,0.000000,0.250000,0,0);}
.m6f_c00184{transform:matrix(0.270503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270503,0.000000,0.000000,0.250000,0,0);}
.m40_c00184{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m55_c00184{transform:matrix(0.271377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271377,0.000000,0.000000,0.250000,0,0);}
.m58_c00184{transform:matrix(0.272458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272458,0.000000,0.000000,0.250000,0,0);}
.m38_c00184{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m81_c00184{transform:matrix(0.272825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272825,0.000000,0.000000,0.250000,0,0);}
.mb_c00184{transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);}
.m24_c00184{transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);}
.m33_c00184{transform:matrix(0.274659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274659,0.000000,0.000000,0.250000,0,0);}
.m21_c00184{transform:matrix(0.275042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275042,0.000000,0.000000,0.250000,0,0);}
.m7e_c00184{transform:matrix(0.276489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276489,0.000000,0.000000,0.250000,0,0);}
.m7_c00184{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m87_c00184{transform:matrix(0.277420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277420,0.000000,0.000000,0.250000,0,0);}
.m69_c00184{transform:matrix(0.277433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277433,0.000000,0.000000,0.250000,0,0);}
.m67_c00184{transform:matrix(0.277598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277598,0.000000,0.000000,0.250000,0,0);}
.m93_c00184{transform:matrix(0.278094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278094,0.000000,0.000000,0.250000,0,0);}
.m39_c00184{transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);}
.m4d_c00184{transform:matrix(0.278730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278730,0.000000,0.000000,0.250000,0,0);}
.m1d_c00184{transform:matrix(0.279343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279343,0.000000,0.000000,0.250000,0,0);}
.m12_c00184{transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);}
.m7b_c00184{transform:matrix(0.279414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279414,0.000000,0.000000,0.250000,0,0);}
.m20_c00184{transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);}
.m54_c00184{transform:matrix(0.280282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280282,0.000000,0.000000,0.250000,0,0);}
.m1a_c00184{transform:matrix(0.280961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280961,0.000000,0.000000,0.250000,0,0);}
.m91_c00184{transform:matrix(0.281018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281018,0.000000,0.000000,0.250000,0,0);}
.md_c00184{transform:matrix(0.281184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281184,0.000000,0.000000,0.250000,0,0);}
.m57_c00184{transform:matrix(0.282467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282467,0.000000,0.000000,0.250000,0,0);}
.m8d_c00184{transform:matrix(0.283037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283037,0.000000,0.000000,0.250000,0,0);}
.m48_c00184{transform:matrix(0.284075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284075,0.000000,0.000000,0.250000,0,0);}
.m66_c00184{transform:matrix(0.284092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284092,0.000000,0.000000,0.250000,0,0);}
.m70_c00184{transform:matrix(0.284537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284537,0.000000,0.000000,0.250000,0,0);}
.m18_c00184{transform:matrix(0.286677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286677,0.000000,0.000000,0.250000,0,0);}
.m8c_c00184{transform:matrix(0.288169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288169,0.000000,0.000000,0.250000,0,0);}
.m75_c00184{transform:matrix(0.288213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288213,0.000000,0.000000,0.250000,0,0);}
.m2b_c00184{transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);}
.m88_c00184{transform:matrix(0.288817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288817,0.000000,0.000000,0.250000,0,0);}
.m4f_c00184{transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);}
.m14_c00184{transform:matrix(0.289075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289075,0.000000,0.000000,0.250000,0,0);}
.m6_c00184{transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);}
.m4_c00184{transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);}
.m29_c00184{transform:matrix(0.290774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290774,0.000000,0.000000,0.250000,0,0);}
.mc_c00184{transform:matrix(0.291905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291905,0.000000,0.000000,0.250000,0,0);}
.m62_c00184{transform:matrix(0.292438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292438,0.000000,0.000000,0.250000,0,0);}
.m2d_c00184{transform:matrix(0.292979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292979,0.000000,0.000000,0.250000,0,0);}
.m59_c00184{transform:matrix(0.293169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293169,0.000000,0.000000,0.250000,0,0);}
.m94_c00184{transform:matrix(0.293937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293937,0.000000,0.000000,0.250000,0,0);}
.m98_c00184{transform:matrix(0.295468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295468,0.000000,0.000000,0.250000,0,0);}
.m8a_c00184{transform:matrix(0.296914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296914,0.000000,0.000000,0.250000,0,0);}
.m2e_c00184{transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);}
.m26_c00184{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m6d_c00184{transform:matrix(0.297372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297372,0.000000,0.000000,0.250000,0,0);}
.m22_c00184{transform:matrix(0.298150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298150,0.000000,0.000000,0.250000,0,0);}
.m89_c00184{transform:matrix(0.298518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298518,0.000000,0.000000,0.250000,0,0);}
.m50_c00184{transform:matrix(0.298931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298931,0.000000,0.000000,0.250000,0,0);}
.m11_c00184{transform:matrix(0.299451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299451,0.000000,0.000000,0.250000,0,0);}
.m71_c00184{transform:matrix(0.300523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300523,0.000000,0.000000,0.250000,0,0);}
.m2a_c00184{transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);}
.m2f_c00184{transform:matrix(0.301031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301031,0.000000,0.000000,0.250000,0,0);}
.m6b_c00184{transform:matrix(0.301255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301255,0.000000,0.000000,0.250000,0,0);}
.m17_c00184{transform:matrix(0.302222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302222,0.000000,0.000000,0.250000,0,0);}
.m46_c00184{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m47_c00184{transform:matrix(0.302504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302504,0.000000,0.000000,0.250000,0,0);}
.m8b_c00184{transform:matrix(0.302966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302966,0.000000,0.000000,0.250000,0,0);}
.m73_c00184{transform:matrix(0.304119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304119,0.000000,0.000000,0.250000,0,0);}
.m30_c00184{transform:matrix(0.304204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304204,0.000000,0.000000,0.250000,0,0);}
.m80_c00184{transform:matrix(0.304571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304571,0.000000,0.000000,0.250000,0,0);}
.m97_c00184{transform:matrix(0.304851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304851,0.000000,0.000000,0.250000,0,0);}
.m1f_c00184{transform:matrix(0.304959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304959,0.000000,0.000000,0.250000,0,0);}
.m6a_c00184{transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);}
.m10_c00184{transform:matrix(0.305499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305499,0.000000,0.000000,0.250000,0,0);}
.m3b_c00184{transform:matrix(0.306531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306531,0.000000,0.000000,0.250000,0,0);}
.m7a_c00184{transform:matrix(0.306568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306568,0.000000,0.000000,0.250000,0,0);}
.m32_c00184{transform:matrix(0.306582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306582,0.000000,0.000000,0.250000,0,0);}
.m96_c00184{transform:matrix(0.308567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308567,0.000000,0.000000,0.250000,0,0);}
.m19_c00184{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m4e_c00184{transform:matrix(0.308583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308583,0.000000,0.000000,0.250000,0,0);}
.mf_c00184{transform:matrix(0.311188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311188,0.000000,0.000000,0.250000,0,0);}
.m2c_c00184{transform:matrix(0.312358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312358,0.000000,0.000000,0.250000,0,0);}
.m7d_c00184{transform:matrix(0.312639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312639,0.000000,0.000000,0.250000,0,0);}
.m4a_c00184{transform:matrix(0.312800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312800,0.000000,0.000000,0.250000,0,0);}
.m25_c00184{transform:matrix(0.313050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313050,0.000000,0.000000,0.250000,0,0);}
.m5d_c00184{transform:matrix(0.313756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313756,0.000000,0.000000,0.250000,0,0);}
.m82_c00184{transform:matrix(0.315292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315292,0.000000,0.000000,0.250000,0,0);}
.m76_c00184{transform:matrix(0.315987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315987,0.000000,0.000000,0.250000,0,0);}
.m4c_c00184{transform:matrix(0.316535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316535,0.000000,0.000000,0.250000,0,0);}
.m84_c00184{transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);}
.m8f_c00184{transform:matrix(0.321440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321440,0.000000,0.000000,0.250000,0,0);}
.m83_c00184{transform:matrix(0.321572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321572,0.000000,0.000000,0.250000,0,0);}
.m60_c00184{transform:matrix(0.323720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323720,0.000000,0.000000,0.250000,0,0);}
.m5e_c00184{transform:matrix(0.324247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324247,0.000000,0.000000,0.250000,0,0);}
.m1e_c00184{transform:matrix(0.324420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324420,0.000000,0.000000,0.250000,0,0);}
.m7c_c00184{transform:matrix(0.324647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324647,0.000000,0.000000,0.250000,0,0);}
.m45_c00184{transform:matrix(0.324910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324910,0.000000,0.000000,0.250000,0,0);}
.m79_c00184{transform:matrix(0.326049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326049,0.000000,0.000000,0.250000,0,0);}
.m64_c00184{transform:matrix(0.326099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326099,0.000000,0.000000,0.250000,0,0);}
.m8_c00184{transform:matrix(0.326607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326607,0.000000,0.000000,0.250000,0,0);}
.m43_c00184{transform:matrix(0.326972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326972,0.000000,0.000000,0.250000,0,0);}
.m28_c00184{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m85_c00184{transform:matrix(0.328188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328188,0.000000,0.000000,0.250000,0,0);}
.m63_c00184{transform:matrix(0.328605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328605,0.000000,0.000000,0.250000,0,0);}
.m0_c00184{transform:matrix(0.330263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330263,0.000000,0.000000,0.250000,0,0);}
.m42_c00184{transform:matrix(0.330778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330778,0.000000,0.000000,0.250000,0,0);}
.m23_c00184{transform:matrix(0.332170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332170,0.000000,0.000000,0.250000,0,0);}
.m13_c00184{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m86_c00184{transform:matrix(0.333376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333376,0.000000,0.000000,0.250000,0,0);}
.m3a_c00184{transform:matrix(0.335051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335051,0.000000,0.000000,0.250000,0,0);}
.m5_c00184{transform:matrix(0.337910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337910,0.000000,0.000000,0.250000,0,0);}
.m35_c00184{transform:matrix(0.338602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338602,0.000000,0.000000,0.250000,0,0);}
.m72_c00184{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m51_c00184{transform:matrix(0.340248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340248,0.000000,0.000000,0.250000,0,0);}
.m52_c00184{transform:matrix(0.341168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341168,0.000000,0.000000,0.250000,0,0);}
.m78_c00184{transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);}
.m74_c00184{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m1c_c00184{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m3_c00184{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m5b_c00184{transform:matrix(0.361597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361597,0.000000,0.000000,0.250000,0,0);}
.ma_c00184{transform:matrix(0.365181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365181,0.000000,0.000000,0.250000,0,0);}
.m4b_c00184{transform:matrix(0.383069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383069,0.000000,0.000000,0.250000,0,0);}
.m90_c00184{transform:matrix(0.411628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411628,0.000000,0.000000,0.250000,0,0);}
.v0_c00184{vertical-align:0.000000px;}
.lsa_c00184{letter-spacing:-2.744280px;}
.ls14_c00184{letter-spacing:-2.418577px;}
.ls9_c00184{letter-spacing:-1.897474px;}
.ls11_c00184{letter-spacing:-0.893851px;}
.lse_c00184{letter-spacing:-0.344995px;}
.ls6_c00184{letter-spacing:0.000000px;}
.ls13_c00184{letter-spacing:0.423403px;}
.ls0_c00184{letter-spacing:0.541015px;}
.ls12_c00184{letter-spacing:0.835164px;}
.ls5_c00184{letter-spacing:1.466230px;}
.ls1_c00184{letter-spacing:2.352240px;}
.ls3_c00184{letter-spacing:2.634509px;}
.lsc_c00184{letter-spacing:2.908937px;}
.ls7_c00184{letter-spacing:3.112798px;}
.lsf_c00184{letter-spacing:3.191206px;}
.lsb_c00184{letter-spacing:3.449952px;}
.ls10_c00184{letter-spacing:3.593700px;}
.ls2_c00184{letter-spacing:3.643200px;}
.lsd_c00184{letter-spacing:3.801610px;}
.ls4_c00184{letter-spacing:3.920400px;}
.ls8_c00184{letter-spacing:51.321798px;}
.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;}
}
.ws2_c00184{word-spacing:-22.793206px;}
.ws3_c00184{word-spacing:-20.143015px;}
.ws0_c00184{word-spacing:-19.602000px;}
.ws1_c00184{word-spacing:-19.257005px;}
.ws4_c00184{word-spacing:0.000000px;}
._7_c00184{width:2.869337px;}
._8_c00184{width:4.030171px;}
._9_c00184{width:5.096520px;}
._0_c00184{width:6.822288px;}
._3_c00184{width:9.173340px;}
._1_c00184{width:10.507068px;}
._5_c00184{width:20.856528px;}
._4_c00184{width:27.521208px;}
._6_c00184{width:31.754448px;}
._2_c00184{width:37.217268px;}
.fc0_c00184{color:transparent;}
.fs2_c00184{font-size:51.321798px;}
.fs6_c00184{font-size:69.102198px;}
.fs4_c00184{font-size:71.874000px;}
.fs0_c00184{font-size:72.864000px;}
.fs5_c00184{font-size:73.260000px;}
.fs3_c00184{font-size:76.032198px;}
.fs1_c00184{font-size:78.408000px;}
.y0_c00184{bottom:0.000000px;}
.y16_c00184{bottom:7.391385px;}
.y1_c00184{bottom:76.500000px;}
.y15_c00184{bottom:153.871785px;}
.y14_c00184{bottom:184.878585px;}
.y13_c00184{bottom:217.667385px;}
.y12_c00184{bottom:250.104735px;}
.y11_c00184{bottom:282.537135px;}
.y10_c00184{bottom:314.964585px;}
.yf_c00184{bottom:346.689135px;}
.ye_c00184{bottom:379.477935px;}
.yd_c00184{bottom:411.197535px;}
.yc_c00184{bottom:507.069135px;}
.yb_c00184{bottom:667.800585px;}
.ya_c00184{bottom:699.881535px;}
.y9_c00184{bottom:731.952585px;}
.y8_c00184{bottom:764.028585px;}
.y7_c00184{bottom:796.465935px;}
.y6_c00184{bottom:828.536985px;}
.y5_c00184{bottom:860.969385px;}
.y4_c00184{bottom:893.401785px;}
.y3_c00184{bottom:925.839135px;}
.y2_c00184{bottom:1075.522185px;}
.h4_c00184{height:34.180317px;}
.h2_c00184{height:71.512031px;}
.h7_c00184{height:71.900684px;}
.h8_c00184{height:72.071433px;}
.h6_c00184{height:74.962336px;}
.h5_c00184{height:76.626200px;}
.h3_c00184{height:76.953164px;}
.h1_c00184{height:1110.000000px;}
.h0_c00184{height:1263.000000px;}
.w1_c00184{width:733.500000px;}
.w0_c00184{width:892.500000px;}
.x0_c00184{left:0.000000px;}
.x41_c00184{left:60.557835px;}
.x10_c00184{left:61.666635px;}
.x1f_c00184{left:62.696235px;}
.x1_c00184{left:79.500000px;}
.x53_c00184{left:83.075385px;}
.x4c_c00184{left:93.703035px;}
.x11_c00184{left:95.554335px;}
.x20_c00184{left:105.454335px;}
.x4_c00184{left:116.156235px;}
.x2f_c00184{left:118.086735px;}
.x38_c00184{left:128.803485px;}
.x4f_c00184{left:139.124235px;}
.x12_c00184{left:150.885435px;}
.x39_c00184{left:160.983435px;}
.x54_c00184{left:171.408135px;}
.x4d_c00184{left:173.670285px;}
.x21_c00184{left:183.005985px;}
.x5_c00184{left:193.999935px;}
.x22_c00184{left:204.706785px;}
.x34_c00184{left:216.106635px;}
.x6_c00184{left:226.288785px;}
.x2a_c00184{left:228.179685px;}
.x13_c00184{left:237.886635px;}
.x3a_c00184{left:238.931085px;}
.x50_c00184{left:240.579435px;}
.x23_c00184{left:247.707435px;}
.x44_c00184{left:248.741985px;}
.x30_c00184{left:260.216085px;}
.x3b_c00184{left:270.160635px;}
.x56_c00184{left:271.734735px;}
.x14_c00184{left:281.897085px;}
.x24_c00184{left:293.480085px;}
.x51_c00184{left:296.227335px;}
.x7_c00184{left:305.251185px;}
.x15_c00184{left:315.359085px;}
.x3c_c00184{left:316.621335px;}
.x35_c00184{left:325.724385px;}
.x25_c00184{left:326.942085px;}
.x45_c00184{left:336.772785px;}
.x59_c00184{left:341.049585px;}
.x47_c00184{left:347.449935px;}
.x26_c00184{left:359.369535px;}
.x8_c00184{left:370.997085px;}
.x57_c00184{left:380.674335px;}
.x3d_c00184{left:382.555335px;}
.x16_c00184{left:392.722635px;}
.x31_c00184{left:403.553235px;}
.x9_c00184{left:414.888735px;}
.x52_c00184{left:424.432335px;}
.x17_c00184{left:425.580735px;}
.x36_c00184{left:437.084535px;}
.x27_c00184{left:448.439835px;}
.xa_c00184{left:457.627035px;}
.x3e_c00184{left:458.884335px;}
.x49_c00184{left:467.962635px;}
.x32_c00184{left:469.363485px;}
.x42_c00184{left:470.596035px;}
.xb_c00184{left:480.590085px;}
.x3f_c00184{left:490.059435px;}
.x2b_c00184{left:491.866185px;}
.x18_c00184{left:494.385735px;}
.xc_c00184{left:502.879935px;}
.x19_c00184{left:514.413435px;}
.x2c_c00184{left:524.659935px;}
.x37_c00184{left:535.292535px;}
.x1a_c00184{left:547.514085px;}
.x33_c00184{left:557.013135px;}
.xd_c00184{left:568.625835px;}
.x58_c00184{left:579.644535px;}
.x1b_c00184{left:580.728585px;}
.x4e_c00184{left:581.758185px;}
.x1c_c00184{left:590.895885px;}
.x55_c00184{left:601.063185px;}
.xe_c00184{left:602.132385px;}
.x48_c00184{left:603.340185px;}
.x4a_c00184{left:612.467985px;}
.xf_c00184{left:623.659935px;}
.x28_c00184{left:633.332235px;}
.x46_c00184{left:644.697435px;}
.x2_c00184{left:645.875535px;}
.x2d_c00184{left:656.300235px;}
.x1d_c00184{left:666.838785px;}
.x3_c00184{left:668.284185px;}
.x29_c00184{left:679.124685px;}
.x40_c00184{left:689.356335px;}
.x1e_c00184{left:690.361185px;}
.x43_c00184{left:700.488885px;}
.x2e_c00184{left:701.840235px;}
.x4b_c00184{left:711.151185px;}
@media print{
.v0_c00184{vertical-align:0.000000pt;}
.lsa_c00184{letter-spacing:-2.439360pt;}
.ls14_c00184{letter-spacing:-2.149846pt;}
.ls9_c00184{letter-spacing:-1.686643pt;}
.ls11_c00184{letter-spacing:-0.794534pt;}
.lse_c00184{letter-spacing:-0.306662pt;}
.ls6_c00184{letter-spacing:0.000000pt;}
.ls13_c00184{letter-spacing:0.376358pt;}
.ls0_c00184{letter-spacing:0.480902pt;}
.ls12_c00184{letter-spacing:0.742368pt;}
.ls5_c00184{letter-spacing:1.303315pt;}
.ls1_c00184{letter-spacing:2.090880pt;}
.ls3_c00184{letter-spacing:2.341786pt;}
.lsc_c00184{letter-spacing:2.585722pt;}
.ls7_c00184{letter-spacing:2.766931pt;}
.lsf_c00184{letter-spacing:2.836627pt;}
.lsb_c00184{letter-spacing:3.066624pt;}
.ls10_c00184{letter-spacing:3.194400pt;}
.ls2_c00184{letter-spacing:3.238400pt;}
.lsd_c00184{letter-spacing:3.379209pt;}
.ls4_c00184{letter-spacing:3.484800pt;}
.ls8_c00184{letter-spacing:45.619376pt;}
.ws2_c00184{word-spacing:-20.260627pt;}
.ws3_c00184{word-spacing:-17.904902pt;}
.ws0_c00184{word-spacing:-17.424000pt;}
.ws1_c00184{word-spacing:-17.117338pt;}
.ws4_c00184{word-spacing:0.000000pt;}
._7_c00184{width:2.550522pt;}
._8_c00184{width:3.582374pt;}
._9_c00184{width:4.530240pt;}
._0_c00184{width:6.064256pt;}
._3_c00184{width:8.154080pt;}
._1_c00184{width:9.339616pt;}
._5_c00184{width:18.539136pt;}
._4_c00184{width:24.463296pt;}
._6_c00184{width:28.226176pt;}
._2_c00184{width:33.082016pt;}
.fs2_c00184{font-size:45.619376pt;}
.fs6_c00184{font-size:61.424176pt;}
.fs4_c00184{font-size:63.888000pt;}
.fs0_c00184{font-size:64.768000pt;}
.fs5_c00184{font-size:65.120000pt;}
.fs3_c00184{font-size:67.584176pt;}
.fs1_c00184{font-size:69.696000pt;}
.y0_c00184{bottom:0.000000pt;}
.y16_c00184{bottom:6.570120pt;}
.y1_c00184{bottom:68.000000pt;}
.y15_c00184{bottom:136.774920pt;}
.y14_c00184{bottom:164.336520pt;}
.y13_c00184{bottom:193.482120pt;}
.y12_c00184{bottom:222.315320pt;}
.y11_c00184{bottom:251.144120pt;}
.y10_c00184{bottom:279.968520pt;}
.yf_c00184{bottom:308.168120pt;}
.ye_c00184{bottom:337.313720pt;}
.yd_c00184{bottom:365.508920pt;}
.yc_c00184{bottom:450.728120pt;}
.yb_c00184{bottom:593.600520pt;}
.ya_c00184{bottom:622.116920pt;}
.y9_c00184{bottom:650.624520pt;}
.y8_c00184{bottom:679.136520pt;}
.y7_c00184{bottom:707.969720pt;}
.y6_c00184{bottom:736.477320pt;}
.y5_c00184{bottom:765.306120pt;}
.y4_c00184{bottom:794.134920pt;}
.y3_c00184{bottom:822.968120pt;}
.y2_c00184{bottom:956.019720pt;}
.h4_c00184{height:30.382504pt;}
.h2_c00184{height:63.566250pt;}
.h7_c00184{height:63.911719pt;}
.h8_c00184{height:64.063496pt;}
.h6_c00184{height:66.633188pt;}
.h5_c00184{height:68.112177pt;}
.h3_c00184{height:68.402813pt;}
.h1_c00184{height:986.666667pt;}
.h0_c00184{height:1122.666667pt;}
.w1_c00184{width:652.000000pt;}
.w0_c00184{width:793.333333pt;}
.x0_c00184{left:0.000000pt;}
.x41_c00184{left:53.829187pt;}
.x10_c00184{left:54.814787pt;}
.x1f_c00184{left:55.729987pt;}
.x1_c00184{left:70.666667pt;}
.x53_c00184{left:73.844787pt;}
.x4c_c00184{left:83.291587pt;}
.x11_c00184{left:84.937187pt;}
.x20_c00184{left:93.737187pt;}
.x4_c00184{left:103.249987pt;}
.x2f_c00184{left:104.965987pt;}
.x38_c00184{left:114.491987pt;}
.x4f_c00184{left:123.665987pt;}
.x12_c00184{left:134.120387pt;}
.x39_c00184{left:143.096387pt;}
.x54_c00184{left:152.362787pt;}
.x4d_c00184{left:154.373587pt;}
.x21_c00184{left:162.671987pt;}
.x5_c00184{left:172.444387pt;}
.x22_c00184{left:181.961587pt;}
.x34_c00184{left:192.094787pt;}
.x6_c00184{left:201.145587pt;}
.x2a_c00184{left:202.826387pt;}
.x13_c00184{left:211.454787pt;}
.x3a_c00184{left:212.383187pt;}
.x50_c00184{left:213.848387pt;}
.x23_c00184{left:220.184387pt;}
.x44_c00184{left:221.103987pt;}
.x30_c00184{left:231.303187pt;}
.x3b_c00184{left:240.142787pt;}
.x56_c00184{left:241.541987pt;}
.x14_c00184{left:250.575187pt;}
.x24_c00184{left:260.871187pt;}
.x51_c00184{left:263.313187pt;}
.x7_c00184{left:271.334387pt;}
.x15_c00184{left:280.319187pt;}
.x3c_c00184{left:281.441187pt;}
.x35_c00184{left:289.532787pt;}
.x25_c00184{left:290.615187pt;}
.x45_c00184{left:299.353587pt;}
.x59_c00184{left:303.155187pt;}
.x47_c00184{left:308.844387pt;}
.x26_c00184{left:319.439587pt;}
.x8_c00184{left:329.775187pt;}
.x57_c00184{left:338.377187pt;}
.x3d_c00184{left:340.049187pt;}
.x16_c00184{left:349.086787pt;}
.x31_c00184{left:358.713987pt;}
.x9_c00184{left:368.789987pt;}
.x52_c00184{left:377.273187pt;}
.x17_c00184{left:378.293987pt;}
.x36_c00184{left:388.519587pt;}
.x27_c00184{left:398.613187pt;}
.xa_c00184{left:406.779587pt;}
.x3e_c00184{left:407.897187pt;}
.x49_c00184{left:415.966787pt;}
.x32_c00184{left:417.211987pt;}
.x42_c00184{left:418.307587pt;}
.xb_c00184{left:427.191187pt;}
.x3f_c00184{left:435.608387pt;}
.x2b_c00184{left:437.214387pt;}
.x18_c00184{left:439.453987pt;}
.xc_c00184{left:447.004387pt;}
.x19_c00184{left:457.256387pt;}
.x2c_c00184{left:466.364387pt;}
.x37_c00184{left:475.815587pt;}
.x1a_c00184{left:486.679187pt;}
.x33_c00184{left:495.122787pt;}
.xd_c00184{left:505.445187pt;}
.x58_c00184{left:515.239587pt;}
.x1b_c00184{left:516.203187pt;}
.x4e_c00184{left:517.118387pt;}
.x1c_c00184{left:525.240787pt;}
.x55_c00184{left:534.278387pt;}
.xe_c00184{left:535.228787pt;}
.x48_c00184{left:536.302387pt;}
.x4a_c00184{left:544.415987pt;}
.xf_c00184{left:554.364387pt;}
.x28_c00184{left:562.961987pt;}
.x46_c00184{left:573.064387pt;}
.x2_c00184{left:574.111587pt;}
.x2d_c00184{left:583.377987pt;}
.x1d_c00184{left:592.745587pt;}
.x3_c00184{left:594.030387pt;}
.x29_c00184{left:603.666387pt;}
.x40_c00184{left:612.761187pt;}
.x1e_c00184{left:613.654387pt;}
.x43_c00184{left:622.656787pt;}
.x2e_c00184{left:623.857987pt;}
.x4b_c00184{left:632.134387pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f27589a6854260bb1f500f85.woff2')format("woff");}.ff1_c00185{font-family:ff1_c00185;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00185;src:url('chunks/assets/font_5158a80764b9e4dd6d4769b0.woff2')format("woff");}.ff2_c00185{font-family:ff2_c00185;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00185;src:url('chunks/assets/font_6ee86a6516e7d34bfca112da.woff2')format("woff");}.ff3_c00185{font-family:ff3_c00185;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00185;src:url('chunks/assets/font_c2aa6675f236a6ee865a740b.woff2')format("woff");}.ff4_c00185{font-family:ff4_c00185;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m39_c00185{transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);}
.m2c_c00185{transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);}
.m92_c00185{transform:matrix(0.244466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244466,0.000000,0.000000,0.250000,0,0);}
.m93_c00185{transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);}
.m9_c00185{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00185{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.m6d_c00185{transform:matrix(0.252371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252371,0.000000,0.000000,0.250000,0,0);}
.m51_c00185{transform:matrix(0.253037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253037,0.000000,0.000000,0.250000,0,0);}
.m66_c00185{transform:matrix(0.255007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255007,0.000000,0.000000,0.250000,0,0);}
.m33_c00185{transform:matrix(0.255780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255780,0.000000,0.000000,0.250000,0,0);}
.m0_c00185{transform:matrix(0.257536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257536,0.000000,0.000000,0.250000,0,0);}
.m71_c00185{transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);}
.m46_c00185{transform:matrix(0.258638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258638,0.000000,0.000000,0.250000,0,0);}
.m2b_c00185{transform:matrix(0.259139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259139,0.000000,0.000000,0.250000,0,0);}
.m1b_c00185{transform:matrix(0.259818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259818,0.000000,0.000000,0.250000,0,0);}
.m47_c00185{transform:matrix(0.259829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259829,0.000000,0.000000,0.250000,0,0);}
.m7c_c00185{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m9b_c00185{transform:matrix(0.261823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261823,0.000000,0.000000,0.250000,0,0);}
.m8_c00185{transform:matrix(0.262744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262744,0.000000,0.000000,0.250000,0,0);}
.m1f_c00185{transform:matrix(0.263296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263296,0.000000,0.000000,0.250000,0,0);}
.m15_c00185{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m29_c00185{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m78_c00185{transform:matrix(0.265757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265757,0.000000,0.000000,0.250000,0,0);}
.m1_c00185{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m3e_c00185{transform:matrix(0.266343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266343,0.000000,0.000000,0.250000,0,0);}
.m37_c00185{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.m50_c00185{transform:matrix(0.267515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267515,0.000000,0.000000,0.250000,0,0);}
.m7_c00185{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m34_c00185{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m97_c00185{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m3f_c00185{transform:matrix(0.272982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272982,0.000000,0.000000,0.250000,0,0);}
.m41_c00185{transform:matrix(0.273809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273809,0.000000,0.000000,0.250000,0,0);}
.m5c_c00185{transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);}
.m72_c00185{transform:matrix(0.274534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274534,0.000000,0.000000,0.250000,0,0);}
.mab_c00185{transform:matrix(0.274607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274607,0.000000,0.000000,0.250000,0,0);}
.m1a_c00185{transform:matrix(0.275040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275040,0.000000,0.000000,0.250000,0,0);}
.m45_c00185{transform:matrix(0.275057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275057,0.000000,0.000000,0.250000,0,0);}
.m7d_c00185{transform:matrix(0.275733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275733,0.000000,0.000000,0.250000,0,0);}
.m87_c00185{transform:matrix(0.275828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275828,0.000000,0.000000,0.250000,0,0);}
.m24_c00185{transform:matrix(0.275905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275905,0.000000,0.000000,0.250000,0,0);}
.m84_c00185{transform:matrix(0.276692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276692,0.000000,0.000000,0.250000,0,0);}
.m5a_c00185{transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);}
.m3c_c00185{transform:matrix(0.278029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278029,0.000000,0.000000,0.250000,0,0);}
.m74_c00185{transform:matrix(0.278330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278330,0.000000,0.000000,0.250000,0,0);}
.m25_c00185{transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);}
.m4e_c00185{transform:matrix(0.279275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279275,0.000000,0.000000,0.250000,0,0);}
.m67_c00185{transform:matrix(0.279343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279343,0.000000,0.000000,0.250000,0,0);}
.m86_c00185{transform:matrix(0.280064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280064,0.000000,0.000000,0.250000,0,0);}
.m9d_c00185{transform:matrix(0.280319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280319,0.000000,0.000000,0.250000,0,0);}
.m88_c00185{transform:matrix(0.280398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280398,0.000000,0.000000,0.250000,0,0);}
.ma5_c00185{transform:matrix(0.280576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280576,0.000000,0.000000,0.250000,0,0);}
.m17_c00185{transform:matrix(0.281079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281079,0.000000,0.000000,0.250000,0,0);}
.m98_c00185{transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);}
.m53_c00185{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m2a_c00185{transform:matrix(0.284924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284924,0.000000,0.000000,0.250000,0,0);}
.m36_c00185{transform:matrix(0.284969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284969,0.000000,0.000000,0.250000,0,0);}
.ma8_c00185{transform:matrix(0.285262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285262,0.000000,0.000000,0.250000,0,0);}
.m2e_c00185{transform:matrix(0.285579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285579,0.000000,0.000000,0.250000,0,0);}
.m90_c00185{transform:matrix(0.285693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285693,0.000000,0.000000,0.250000,0,0);}
.m7f_c00185{transform:matrix(0.285694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285694,0.000000,0.000000,0.250000,0,0);}
.m57_c00185{transform:matrix(0.286238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286238,0.000000,0.000000,0.250000,0,0);}
.m6c_c00185{transform:matrix(0.286756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286756,0.000000,0.000000,0.250000,0,0);}
.m30_c00185{transform:matrix(0.287416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287416,0.000000,0.000000,0.250000,0,0);}
.m70_c00185{transform:matrix(0.287830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287830,0.000000,0.000000,0.250000,0,0);}
.m7b_c00185{transform:matrix(0.288256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288256,0.000000,0.000000,0.250000,0,0);}
.m27_c00185{transform:matrix(0.289464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289464,0.000000,0.000000,0.250000,0,0);}
.m82_c00185{transform:matrix(0.289520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289520,0.000000,0.000000,0.250000,0,0);}
.m4c_c00185{transform:matrix(0.290092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290092,0.000000,0.000000,0.250000,0,0);}
.m48_c00185{transform:matrix(0.290141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290141,0.000000,0.000000,0.250000,0,0);}
.m4b_c00185{transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);}
.m91_c00185{transform:matrix(0.290314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290314,0.000000,0.000000,0.250000,0,0);}
.m23_c00185{transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);}
.m5_c00185{transform:matrix(0.290547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290547,0.000000,0.000000,0.250000,0,0);}
.m6f_c00185{transform:matrix(0.290655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290655,0.000000,0.000000,0.250000,0,0);}
.m8f_c00185{transform:matrix(0.291576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291576,0.000000,0.000000,0.250000,0,0);}
.m8c_c00185{transform:matrix(0.291611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291611,0.000000,0.000000,0.250000,0,0);}
.m11_c00185{transform:matrix(0.292039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292039,0.000000,0.000000,0.250000,0,0);}
.m83_c00185{transform:matrix(0.292208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292208,0.000000,0.000000,0.250000,0,0);}
.m5b_c00185{transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);}
.m4f_c00185{transform:matrix(0.294105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294105,0.000000,0.000000,0.250000,0,0);}
.m26_c00185{transform:matrix(0.295202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295202,0.000000,0.000000,0.250000,0,0);}
.ma6_c00185{transform:matrix(0.296369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296369,0.000000,0.000000,0.250000,0,0);}
.m16_c00185{transform:matrix(0.296390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296390,0.000000,0.000000,0.250000,0,0);}
.m5e_c00185{transform:matrix(0.296494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296494,0.000000,0.000000,0.250000,0,0);}
.m80_c00185{transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);}
.m22_c00185{transform:matrix(0.297169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297169,0.000000,0.000000,0.250000,0,0);}
.m3a_c00185{transform:matrix(0.297388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297388,0.000000,0.000000,0.250000,0,0);}
.m9c_c00185{transform:matrix(0.298711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298711,0.000000,0.000000,0.250000,0,0);}
.m40_c00185{transform:matrix(0.299484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299484,0.000000,0.000000,0.250000,0,0);}
.m12_c00185{transform:matrix(0.300176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300176,0.000000,0.000000,0.250000,0,0);}
.ma2_c00185{transform:matrix(0.300215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300215,0.000000,0.000000,0.250000,0,0);}
.m94_c00185{transform:matrix(0.300254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300254,0.000000,0.000000,0.250000,0,0);}
.mf_c00185{transform:matrix(0.300494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300494,0.000000,0.000000,0.250000,0,0);}
.m8b_c00185{transform:matrix(0.300548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300548,0.000000,0.000000,0.250000,0,0);}
.m19_c00185{transform:matrix(0.301756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301756,0.000000,0.000000,0.250000,0,0);}
.mb_c00185{transform:matrix(0.302288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302288,0.000000,0.000000,0.250000,0,0);}
.m3d_c00185{transform:matrix(0.302330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302330,0.000000,0.000000,0.250000,0,0);}
.m89_c00185{transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);}
.m38_c00185{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m4a_c00185{transform:matrix(0.303239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303239,0.000000,0.000000,0.250000,0,0);}
.m5f_c00185{transform:matrix(0.303319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303319,0.000000,0.000000,0.250000,0,0);}
.m63_c00185{transform:matrix(0.303459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303459,0.000000,0.000000,0.250000,0,0);}
.m73_c00185{transform:matrix(0.303991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303991,0.000000,0.000000,0.250000,0,0);}
.m21_c00185{transform:matrix(0.304119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304119,0.000000,0.000000,0.250000,0,0);}
.m3b_c00185{transform:matrix(0.305095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305095,0.000000,0.000000,0.250000,0,0);}
.mc_c00185{transform:matrix(0.305143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305143,0.000000,0.000000,0.250000,0,0);}
.m81_c00185{transform:matrix(0.305164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305164,0.000000,0.000000,0.250000,0,0);}
.m60_c00185{transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);}
.m6a_c00185{transform:matrix(0.305754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305754,0.000000,0.000000,0.250000,0,0);}
.m76_c00185{transform:matrix(0.306259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306259,0.000000,0.000000,0.250000,0,0);}
.m1d_c00185{transform:matrix(0.306972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306972,0.000000,0.000000,0.250000,0,0);}
.md_c00185{transform:matrix(0.307331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307331,0.000000,0.000000,0.250000,0,0);}
.m96_c00185{transform:matrix(0.308030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308030,0.000000,0.000000,0.250000,0,0);}
.m18_c00185{transform:matrix(0.308364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308364,0.000000,0.000000,0.250000,0,0);}
.m43_c00185{transform:matrix(0.308831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308831,0.000000,0.000000,0.250000,0,0);}
.m49_c00185{transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);}
.ma4_c00185{transform:matrix(0.309770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309770,0.000000,0.000000,0.250000,0,0);}
.m3_c00185{transform:matrix(0.310265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310265,0.000000,0.000000,0.250000,0,0);}
.m6b_c00185{transform:matrix(0.310723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310723,0.000000,0.000000,0.250000,0,0);}
.ma7_c00185{transform:matrix(0.310901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310901,0.000000,0.000000,0.250000,0,0);}
.m4d_c00185{transform:matrix(0.310961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310961,0.000000,0.000000,0.250000,0,0);}
.m55_c00185{transform:matrix(0.311809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311809,0.000000,0.000000,0.250000,0,0);}
.m8a_c00185{transform:matrix(0.312874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312874,0.000000,0.000000,0.250000,0,0);}
.m62_c00185{transform:matrix(0.312946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312946,0.000000,0.000000,0.250000,0,0);}
.m8e_c00185{transform:matrix(0.313213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313213,0.000000,0.000000,0.250000,0,0);}
.m52_c00185{transform:matrix(0.313324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313324,0.000000,0.000000,0.250000,0,0);}
.m42_c00185{transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);}
.me_c00185{transform:matrix(0.313749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313749,0.000000,0.000000,0.250000,0,0);}
.m95_c00185{transform:matrix(0.313921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313921,0.000000,0.000000,0.250000,0,0);}
.m31_c00185{transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);}
.m65_c00185{transform:matrix(0.317812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317812,0.000000,0.000000,0.250000,0,0);}
.m28_c00185{transform:matrix(0.318247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318247,0.000000,0.000000,0.250000,0,0);}
.m68_c00185{transform:matrix(0.318262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318262,0.000000,0.000000,0.250000,0,0);}
.m1e_c00185{transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);}
.m13_c00185{transform:matrix(0.319426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319426,0.000000,0.000000,0.250000,0,0);}
.m7a_c00185{transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);}
.m77_c00185{transform:matrix(0.320008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320008,0.000000,0.000000,0.250000,0,0);}
.m9f_c00185{transform:matrix(0.321473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321473,0.000000,0.000000,0.250000,0,0);}
.ma0_c00185{transform:matrix(0.321802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321802,0.000000,0.000000,0.250000,0,0);}
.m79_c00185{transform:matrix(0.322241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322241,0.000000,0.000000,0.250000,0,0);}
.m6e_c00185{transform:matrix(0.323146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323146,0.000000,0.000000,0.250000,0,0);}
.m64_c00185{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.ma3_c00185{transform:matrix(0.323924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323924,0.000000,0.000000,0.250000,0,0);}
.m99_c00185{transform:matrix(0.324162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324162,0.000000,0.000000,0.250000,0,0);}
.m9a_c00185{transform:matrix(0.325756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325756,0.000000,0.000000,0.250000,0,0);}
.m2_c00185{transform:matrix(0.326875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326875,0.000000,0.000000,0.250000,0,0);}
.m35_c00185{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m75_c00185{transform:matrix(0.327475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327475,0.000000,0.000000,0.250000,0,0);}
.m59_c00185{transform:matrix(0.327693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327693,0.000000,0.000000,0.250000,0,0);}
.ma9_c00185{transform:matrix(0.329828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329828,0.000000,0.000000,0.250000,0,0);}
.m8d_c00185{transform:matrix(0.330299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330299,0.000000,0.000000,0.250000,0,0);}
.m20_c00185{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m5d_c00185{transform:matrix(0.333227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333227,0.000000,0.000000,0.250000,0,0);}
.ma1_c00185{transform:matrix(0.333600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333600,0.000000,0.000000,0.250000,0,0);}
.m1c_c00185{transform:matrix(0.335394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335394,0.000000,0.000000,0.250000,0,0);}
.m6_c00185{transform:matrix(0.337295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337295,0.000000,0.000000,0.250000,0,0);}
.m32_c00185{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m61_c00185{transform:matrix(0.340430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340430,0.000000,0.000000,0.250000,0,0);}
.m56_c00185{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.m58_c00185{transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);}
.maa_c00185{transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);}
.m69_c00185{transform:matrix(0.347766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347766,0.000000,0.000000,0.250000,0,0);}
.m54_c00185{transform:matrix(0.349257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349257,0.000000,0.000000,0.250000,0,0);}
.m14_c00185{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m4_c00185{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.ma_c00185{transform:matrix(0.355530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355530,0.000000,0.000000,0.250000,0,0);}
.m85_c00185{transform:matrix(0.359822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359822,0.000000,0.000000,0.250000,0,0);}
.m10_c00185{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m7e_c00185{transform:matrix(0.361367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361367,0.000000,0.000000,0.250000,0,0);}
.m2f_c00185{transform:matrix(0.361926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361926,0.000000,0.000000,0.250000,0,0);}
.m2d_c00185{transform:matrix(0.365692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365692,0.000000,0.000000,0.250000,0,0);}
.m44_c00185{transform:matrix(0.373079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373079,0.000000,0.000000,0.250000,0,0);}
.v0_c00185{vertical-align:0.000000px;}
.ls9_c00185{letter-spacing:-2.744280px;}
.lsf_c00185{letter-spacing:-2.375762px;}
.ls11_c00185{letter-spacing:-0.901692px;}
.ls12_c00185{letter-spacing:-0.094090px;}
.ls5_c00185{letter-spacing:0.000000px;}
.ls8_c00185{letter-spacing:0.940896px;}
.lsd_c00185{letter-spacing:1.273061px;}
.ls0_c00185{letter-spacing:1.434866px;}
.ls1_c00185{letter-spacing:2.454170px;}
.ls10_c00185{letter-spacing:2.924618px;}
.ls2_c00185{letter-spacing:3.112798px;}
.ls6_c00185{letter-spacing:3.246091px;}
.lsc_c00185{letter-spacing:3.524400px;}
.lse_c00185{letter-spacing:3.722400px;}
.ls7_c00185{letter-spacing:3.801610px;}
.ls4_c00185{letter-spacing:3.920400px;}
.lsa_c00185{letter-spacing:3.960000px;}
.ls3_c00185{letter-spacing:4.167900px;}
.lsb_c00185{letter-spacing:51.321798px;}
.sc__c00185{text-shadow:none;}
.sc0_c00185{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00185{-webkit-text-stroke:0px transparent;}
.sc0_c00185{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00185{word-spacing:-21.036866px;}
.ws1_c00185{word-spacing:-19.602000px;}
.ws2_c00185{word-spacing:0.000000px;}
._0_c00185{width:6.178550px;}
._3_c00185{width:7.683588px;}
._1_c00185{width:9.095328px;}
._4_c00185{width:20.927887px;}
._2_c00185{width:28.854144px;}
.fc0_c00185{color:transparent;}
.fs6_c00185{font-size:51.321798px;}
.fs5_c00185{font-size:66.330000px;}
.fs7_c00185{font-size:70.488000px;}
.fsa_c00185{font-size:72.864000px;}
.fs9_c00185{font-size:74.448000px;}
.fs2_c00185{font-size:76.032198px;}
.fs1_c00185{font-size:78.408000px;}
.fs4_c00185{font-size:79.200000px;}
.fs3_c00185{font-size:79.398000px;}
.fs0_c00185{font-size:83.358000px;}
.fs8_c00185{font-size:90.288000px;}
.y0_c00185{bottom:0.000000px;}
.y1a_c00185{bottom:1.337535px;}
.y1_c00185{bottom:76.500000px;}
.y19_c00185{bottom:151.738335px;}
.y18_c00185{bottom:183.452985px;}
.y17_c00185{bottom:216.241785px;}
.y16_c00185{bottom:249.035535px;}
.y15_c00185{bottom:281.462985px;}
.y14_c00185{bottom:313.187535px;}
.y13_c00185{bottom:345.614985px;}
.y12_c00185{bottom:378.052335px;}
.y11_c00185{bottom:410.123385px;}
.y10_c00185{bottom:472.854735px;}
.yf_c00185{bottom:505.994985px;}
.ye_c00185{bottom:538.432335px;}
.yd_c00185{bottom:570.508335px;}
.yc_c00185{bottom:602.579385px;}
.yb_c00185{bottom:666.374985px;}
.ya_c00185{bottom:698.455935px;}
.y9_c00185{bottom:730.170585px;}
.y8_c00185{bottom:762.251535px;}
.y7_c00185{bottom:795.040335px;}
.y6_c00185{bottom:827.472735px;}
.y5_c00185{bottom:859.905135px;}
.y4_c00185{bottom:892.332585px;}
.y3_c00185{bottom:924.764985px;}
.y2_c00185{bottom:1073.383785px;}
.h8_c00185{height:34.180317px;}
.h7_c00185{height:69.180117px;}
.hb_c00185{height:71.512031px;}
.h4_c00185{height:74.621444px;}
.ha_c00185{height:75.029625px;}
.h3_c00185{height:76.953164px;}
.h6_c00185{height:77.730469px;}
.h5_c00185{height:77.924795px;}
.h2_c00185{height:81.811318px;}
.h9_c00185{height:88.612734px;}
.h1_c00185{height:1110.000000px;}
.h0_c00185{height:1263.000000px;}
.w1_c00185{width:733.500000px;}
.w0_c00185{width:892.500000px;}
.x0_c00185{left:0.000000px;}
.x49_c00185{left:50.207385px;}
.x30_c00185{left:62.532885px;}
.x16_c00185{left:63.740685px;}
.x3_c00185{left:66.077085px;}
.x1_c00185{left:79.500000px;}
.x56_c00185{left:85.664235px;}
.x39_c00185{left:94.930635px;}
.x21_c00185{left:96.267135px;}
.x4_c00185{left:98.123385px;}
.x43_c00185{left:105.533535px;}
.x31_c00185{left:106.587885px;}
.x3c_c00185{left:116.774985px;}
.x26_c00185{left:128.699535px;}
.x3f_c00185{left:130.892385px;}
.x32_c00185{left:138.253035px;}
.x4f_c00185{left:139.386585px;}
.x17_c00185{left:140.549835px;}
.xe_c00185{left:151.083435px;}
.x5_c00185{left:154.751385px;}
.x5c_c00185{left:160.033035px;}
.x2c_c00185{left:161.938785px;}
.x18_c00185{left:172.665435px;}
.x40_c00185{left:183.149535px;}
.x3a_c00185{left:184.396935px;}
.x5d_c00185{left:186.456135px;}
.x50_c00185{left:194.183085px;}
.x46_c00185{left:195.385935px;}
.x19_c00185{left:205.518585px;}
.xf_c00185{left:217.527285px;}
.x47_c00185{left:227.422335px;}
.x6_c00185{left:238.911285px;}
.x2d_c00185{left:249.652785px;}
.x3b_c00185{left:261.013035px;}
.x59_c00185{left:262.042635px;}
.x51_c00185{left:270.833835px;}
.x7_c00185{left:272.061435px;}
.x37_c00185{left:282.951435px;}
.x22_c00185{left:292.930635px;}
.x5a_c00185{left:294.519585px;}
.x41_c00185{left:304.657185px;}
.x27_c00185{left:305.676885px;}
.x3d_c00185{left:314.596785px;}
.x57_c00185{left:316.952985px;}
.x1a_c00185{left:327.293535px;}
.x4a_c00185{left:329.402235px;}
.x52_c00185{left:337.906335px;}
.x5f_c00185{left:339.010185px;}
.x10_c00185{left:349.613085px;}
.x33_c00185{left:351.870285px;}
.x1b_c00185{left:360.369435px;}
.x11_c00185{left:370.695135px;}
.x8_c00185{left:380.956485px;}
.x38_c00185{left:382.510785px;}
.x4b_c00185{left:392.890935px;}
.x58_c00185{left:403.419585px;}
.x1c_c00185{left:415.190685px;}
.x34_c00185{left:416.715285px;}
.x28_c00185{left:426.065835px;}
.x1d_c00185{left:437.431035px;}
.x44_c00185{left:447.246885px;}
.x5e_c00185{left:448.375485px;}
.x35_c00185{left:458.621985px;}
.x23_c00185{left:460.196085px;}
.x29_c00185{left:469.353585px;}
.x42_c00185{left:470.581185px;}
.x9_c00185{left:481.302885px;}
.x12_c00185{left:492.306735px;}
.x2a_c00185{left:503.310585px;}
.xa_c00185{left:513.908535px;}
.x1e_c00185{left:516.868635px;}
.x4c_c00185{left:524.298585px;}
.x13_c00185{left:525.372735px;}
.x53_c00185{left:527.634885px;}
.x3e_c00185{left:536.520135px;}
.x45_c00185{left:546.479535px;}
.xb_c00185{left:547.870485px;}
.xc_c00185{left:558.057585px;}
.x48_c00185{left:569.699985px;}
.x1f_c00185{left:579.416835px;}
.x2e_c00185{left:581.020635px;}
.x4d_c00185{left:591.069135px;}
.x36_c00185{left:592.192785px;}
.x14_c00185{left:601.162185px;}
.xd_c00185{left:602.355135px;}
.x2f_c00185{left:612.958035px;}
.x54_c00185{left:621.976935px;}
.x24_c00185{left:623.382735px;}
.x2b_c00185{left:634.005435px;}
.x20_c00185{left:635.970585px;}
.x2_c00185{left:646.266585px;}
.x15_c00185{left:656.745735px;}
.x25_c00185{left:667.214985px;}
.x5b_c00185{left:680.109735px;}
.x55_c00185{left:688.891035px;}
.x4e_c00185{left:690.039435px;}
@media print{
.v0_c00185{vertical-align:0.000000pt;}
.ls9_c00185{letter-spacing:-2.439360pt;}
.lsf_c00185{letter-spacing:-2.111789pt;}
.ls11_c00185{letter-spacing:-0.801504pt;}
.ls12_c00185{letter-spacing:-0.083635pt;}
.ls5_c00185{letter-spacing:0.000000pt;}
.ls8_c00185{letter-spacing:0.836352pt;}
.lsd_c00185{letter-spacing:1.131610pt;}
.ls0_c00185{letter-spacing:1.275437pt;}
.ls1_c00185{letter-spacing:2.181485pt;}
.ls10_c00185{letter-spacing:2.599661pt;}
.ls2_c00185{letter-spacing:2.766931pt;}
.ls6_c00185{letter-spacing:2.885414pt;}
.lsc_c00185{letter-spacing:3.132800pt;}
.lse_c00185{letter-spacing:3.308800pt;}
.ls7_c00185{letter-spacing:3.379209pt;}
.ls4_c00185{letter-spacing:3.484800pt;}
.lsa_c00185{letter-spacing:3.520000pt;}
.ls3_c00185{letter-spacing:3.704800pt;}
.lsb_c00185{letter-spacing:45.619376pt;}
.ws0_c00185{word-spacing:-18.699437pt;}
.ws1_c00185{word-spacing:-17.424000pt;}
.ws2_c00185{word-spacing:0.000000pt;}
._0_c00185{width:5.492045pt;}
._3_c00185{width:6.829856pt;}
._1_c00185{width:8.084736pt;}
._4_c00185{width:18.602566pt;}
._2_c00185{width:25.648128pt;}
.fs6_c00185{font-size:45.619376pt;}
.fs5_c00185{font-size:58.960000pt;}
.fs7_c00185{font-size:62.656000pt;}
.fsa_c00185{font-size:64.768000pt;}
.fs9_c00185{font-size:66.176000pt;}
.fs2_c00185{font-size:67.584176pt;}
.fs1_c00185{font-size:69.696000pt;}
.fs4_c00185{font-size:70.400000pt;}
.fs3_c00185{font-size:70.576000pt;}
.fs0_c00185{font-size:74.096000pt;}
.fs8_c00185{font-size:80.256000pt;}
.y0_c00185{bottom:0.000000pt;}
.y1a_c00185{bottom:1.188920pt;}
.y1_c00185{bottom:68.000000pt;}
.y19_c00185{bottom:134.878520pt;}
.y18_c00185{bottom:163.069320pt;}
.y17_c00185{bottom:192.214920pt;}
.y16_c00185{bottom:221.364920pt;}
.y15_c00185{bottom:250.189320pt;}
.y14_c00185{bottom:278.388920pt;}
.y13_c00185{bottom:307.213320pt;}
.y12_c00185{bottom:336.046520pt;}
.y11_c00185{bottom:364.554120pt;}
.y10_c00185{bottom:420.315320pt;}
.yf_c00185{bottom:449.773320pt;}
.ye_c00185{bottom:478.606520pt;}
.yd_c00185{bottom:507.118520pt;}
.yc_c00185{bottom:535.626120pt;}
.yb_c00185{bottom:592.333320pt;}
.ya_c00185{bottom:620.849720pt;}
.y9_c00185{bottom:649.040520pt;}
.y8_c00185{bottom:677.556920pt;}
.y7_c00185{bottom:706.702520pt;}
.y6_c00185{bottom:735.531320pt;}
.y5_c00185{bottom:764.360120pt;}
.y4_c00185{bottom:793.184520pt;}
.y3_c00185{bottom:822.013320pt;}
.y2_c00185{bottom:954.118920pt;}
.h8_c00185{height:30.382504pt;}
.h7_c00185{height:61.493438pt;}
.hb_c00185{height:63.566250pt;}
.h4_c00185{height:66.330173pt;}
.ha_c00185{height:66.693000pt;}
.h3_c00185{height:68.402813pt;}
.h6_c00185{height:69.093750pt;}
.h5_c00185{height:69.266484pt;}
.h2_c00185{height:72.721172pt;}
.h9_c00185{height:78.766875pt;}
.h1_c00185{height:986.666667pt;}
.h0_c00185{height:1122.666667pt;}
.w1_c00185{width:652.000000pt;}
.w0_c00185{width:793.333333pt;}
.x0_c00185{left:0.000000pt;}
.x49_c00185{left:44.628787pt;}
.x30_c00185{left:55.584787pt;}
.x16_c00185{left:56.658387pt;}
.x3_c00185{left:58.735187pt;}
.x1_c00185{left:70.666667pt;}
.x56_c00185{left:76.145987pt;}
.x39_c00185{left:84.382787pt;}
.x21_c00185{left:85.570787pt;}
.x4_c00185{left:87.220787pt;}
.x43_c00185{left:93.807587pt;}
.x31_c00185{left:94.744787pt;}
.x3c_c00185{left:103.799987pt;}
.x26_c00185{left:114.399587pt;}
.x3f_c00185{left:116.348787pt;}
.x32_c00185{left:122.891587pt;}
.x4f_c00185{left:123.899187pt;}
.x17_c00185{left:124.933187pt;}
.xe_c00185{left:134.296387pt;}
.x5_c00185{left:137.556787pt;}
.x5c_c00185{left:142.251587pt;}
.x2c_c00185{left:143.945587pt;}
.x18_c00185{left:153.480387pt;}
.x40_c00185{left:162.799587pt;}
.x3a_c00185{left:163.908387pt;}
.x5d_c00185{left:165.738787pt;}
.x50_c00185{left:172.607187pt;}
.x46_c00185{left:173.676387pt;}
.x19_c00185{left:182.683187pt;}
.xf_c00185{left:193.357587pt;}
.x47_c00185{left:202.153187pt;}
.x6_c00185{left:212.365587pt;}
.x2d_c00185{left:221.913587pt;}
.x3b_c00185{left:232.011587pt;}
.x59_c00185{left:232.926787pt;}
.x51_c00185{left:240.741187pt;}
.x7_c00185{left:241.832387pt;}
.x37_c00185{left:251.512387pt;}
.x22_c00185{left:260.382787pt;}
.x5a_c00185{left:261.795187pt;}
.x41_c00185{left:270.806387pt;}
.x27_c00185{left:271.712787pt;}
.x3d_c00185{left:279.641587pt;}
.x57_c00185{left:281.735987pt;}
.x1a_c00185{left:290.927587pt;}
.x4a_c00185{left:292.801987pt;}
.x52_c00185{left:300.361187pt;}
.x5f_c00185{left:301.342387pt;}
.x10_c00185{left:310.767187pt;}
.x33_c00185{left:312.773587pt;}
.x1b_c00185{left:320.328387pt;}
.x11_c00185{left:329.506787pt;}
.x8_c00185{left:338.627987pt;}
.x38_c00185{left:340.009587pt;}
.x4b_c00185{left:349.236387pt;}
.x58_c00185{left:358.595187pt;}
.x1c_c00185{left:369.058387pt;}
.x34_c00185{left:370.413587pt;}
.x28_c00185{left:378.725187pt;}
.x1d_c00185{left:388.827587pt;}
.x44_c00185{left:397.552787pt;}
.x5e_c00185{left:398.555987pt;}
.x35_c00185{left:407.663987pt;}
.x23_c00185{left:409.063187pt;}
.x29_c00185{left:417.203187pt;}
.x42_c00185{left:418.294387pt;}
.x9_c00185{left:427.824787pt;}
.x12_c00185{left:437.605987pt;}
.x2a_c00185{left:447.387187pt;}
.xa_c00185{left:456.807587pt;}
.x1e_c00185{left:459.438787pt;}
.x4c_c00185{left:466.043187pt;}
.x13_c00185{left:466.997987pt;}
.x53_c00185{left:469.008787pt;}
.x3e_c00185{left:476.906787pt;}
.x45_c00185{left:485.759587pt;}
.xb_c00185{left:486.995987pt;}
.xc_c00185{left:496.051187pt;}
.x48_c00185{left:506.399987pt;}
.x1f_c00185{left:515.037187pt;}
.x2e_c00185{left:516.462787pt;}
.x4d_c00185{left:525.394787pt;}
.x36_c00185{left:526.393587pt;}
.x14_c00185{left:534.366387pt;}
.xd_c00185{left:535.426787pt;}
.x2f_c00185{left:544.851587pt;}
.x54_c00185{left:552.868387pt;}
.x24_c00185{left:554.117987pt;}
.x2b_c00185{left:563.560387pt;}
.x20_c00185{left:565.307187pt;}
.x2_c00185{left:574.459187pt;}
.x15_c00185{left:583.773987pt;}
.x25_c00185{left:593.079987pt;}
.x5b_c00185{left:604.541987pt;}
.x55_c00185{left:612.347587pt;}
.x4e_c00185{left:613.368387pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8a26070a88f9fffb5673b5fc.woff2')format("woff");}.ff1_c00186{font-family:ff1_c00186;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00186;src:url('chunks/assets/font_c855d06ba6864be1262a83b0.woff2')format("woff");}.ff2_c00186{font-family:ff2_c00186;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00186;src:url('chunks/assets/font_8e6d27a946cf28a05a256f36.woff2')format("woff");}.ff3_c00186{font-family:ff3_c00186;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00186;src:url('chunks/assets/font_a2f5908c224b5af08e2c622f.woff2')format("woff");}.ff4_c00186{font-family:ff4_c00186;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4f_c00186{transform:matrix(0.176471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176471,0.000000,0.000000,0.250000,0,0);}
.mae_c00186{transform:matrix(0.180743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180743,0.000000,0.000000,0.250000,0,0);}
.m52_c00186{transform:matrix(0.183823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183823,0.000000,0.000000,0.250000,0,0);}
.m7d_c00186{transform:matrix(0.190417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190417,0.000000,0.000000,0.250000,0,0);}
.m65_c00186{transform:matrix(0.203841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203841,0.000000,0.000000,0.250000,0,0);}
.m53_c00186{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);}
.m1d_c00186{transform:matrix(0.211309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211309,0.000000,0.000000,0.250000,0,0);}
.m4e_c00186{transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);}
.m67_c00186{transform:matrix(0.220054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220054,0.000000,0.000000,0.250000,0,0);}
.m60_c00186{transform:matrix(0.220701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220701,0.000000,0.000000,0.250000,0,0);}
.m34_c00186{transform:matrix(0.220833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220833,0.000000,0.000000,0.250000,0,0);}
.m32_c00186{transform:matrix(0.244940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244940,0.000000,0.000000,0.250000,0,0);}
.m2_c00186{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00186{transform:matrix(0.251254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251254,0.000000,0.000000,0.250000,0,0);}
.m4b_c00186{transform:matrix(0.253545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253545,0.000000,0.000000,0.250000,0,0);}
.m56_c00186{transform:matrix(0.254496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254496,0.000000,0.000000,0.250000,0,0);}
.m5e_c00186{transform:matrix(0.254597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254597,0.000000,0.000000,0.250000,0,0);}
.m87_c00186{transform:matrix(0.256057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256057,0.000000,0.000000,0.250000,0,0);}
.m91_c00186{transform:matrix(0.256268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256268,0.000000,0.000000,0.250000,0,0);}
.mc4_c00186{transform:matrix(0.256547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256547,0.000000,0.000000,0.250000,0,0);}
.m69_c00186{transform:matrix(0.257662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257662,0.000000,0.000000,0.250000,0,0);}
.m70_c00186{transform:matrix(0.257763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257763,0.000000,0.000000,0.250000,0,0);}
.m36_c00186{transform:matrix(0.257794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257794,0.000000,0.000000,0.250000,0,0);}
.mf_c00186{transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);}
.m30_c00186{transform:matrix(0.258074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258074,0.000000,0.000000,0.250000,0,0);}
.mc0_c00186{transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);}
.m2a_c00186{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m42_c00186{transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);}
.mca_c00186{transform:matrix(0.260756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260756,0.000000,0.000000,0.250000,0,0);}
.m39_c00186{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m6_c00186{transform:matrix(0.261106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261106,0.000000,0.000000,0.250000,0,0);}
.m78_c00186{transform:matrix(0.261492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261492,0.000000,0.000000,0.250000,0,0);}
.m77_c00186{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.ma4_c00186{transform:matrix(0.261735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261735,0.000000,0.000000,0.250000,0,0);}
.m5_c00186{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.mb2_c00186{transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);}
.mad_c00186{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m3c_c00186{transform:matrix(0.264602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264602,0.000000,0.000000,0.250000,0,0);}
.m6a_c00186{transform:matrix(0.264886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264886,0.000000,0.000000,0.250000,0,0);}
.mc_c00186{transform:matrix(0.265986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265986,0.000000,0.000000,0.250000,0,0);}
.m6e_c00186{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m11_c00186{transform:matrix(0.266660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266660,0.000000,0.000000,0.250000,0,0);}
.m90_c00186{transform:matrix(0.267205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267205,0.000000,0.000000,0.250000,0,0);}
.m20_c00186{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m73_c00186{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.mcb_c00186{transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);}
.mc6_c00186{transform:matrix(0.268992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268992,0.000000,0.000000,0.250000,0,0);}
.mb6_c00186{transform:matrix(0.269301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269301,0.000000,0.000000,0.250000,0,0);}
.m50_c00186{transform:matrix(0.269485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269485,0.000000,0.000000,0.250000,0,0);}
.m85_c00186{transform:matrix(0.269549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269549,0.000000,0.000000,0.250000,0,0);}
.m46_c00186{transform:matrix(0.269778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269778,0.000000,0.000000,0.250000,0,0);}
.mba_c00186{transform:matrix(0.269911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269911,0.000000,0.000000,0.250000,0,0);}
.m41_c00186{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.mcc_c00186{transform:matrix(0.270973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270973,0.000000,0.000000,0.250000,0,0);}
.ma8_c00186{transform:matrix(0.271197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271197,0.000000,0.000000,0.250000,0,0);}
.m9_c00186{transform:matrix(0.271612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271612,0.000000,0.000000,0.250000,0,0);}
.m68_c00186{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m8d_c00186{transform:matrix(0.272544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272544,0.000000,0.000000,0.250000,0,0);}
.m62_c00186{transform:matrix(0.272720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272720,0.000000,0.000000,0.250000,0,0);}
.m31_c00186{transform:matrix(0.272910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272910,0.000000,0.000000,0.250000,0,0);}
.mb4_c00186{transform:matrix(0.272943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272943,0.000000,0.000000,0.250000,0,0);}
.m72_c00186{transform:matrix(0.273113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273113,0.000000,0.000000,0.250000,0,0);}
.ma9_c00186{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m14_c00186{transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);}
.m9a_c00186{transform:matrix(0.273782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273782,0.000000,0.000000,0.250000,0,0);}
.m5f_c00186{transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);}
.m4c_c00186{transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);}
.ma5_c00186{transform:matrix(0.274559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274559,0.000000,0.000000,0.250000,0,0);}
.m9c_c00186{transform:matrix(0.274864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274864,0.000000,0.000000,0.250000,0,0);}
.ma3_c00186{transform:matrix(0.275287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275287,0.000000,0.000000,0.250000,0,0);}
.m23_c00186{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.mc5_c00186{transform:matrix(0.275745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275745,0.000000,0.000000,0.250000,0,0);}
.m1c_c00186{transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);}
.mb3_c00186{transform:matrix(0.277164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277164,0.000000,0.000000,0.250000,0,0);}
.m26_c00186{transform:matrix(0.277433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277433,0.000000,0.000000,0.250000,0,0);}
.m2f_c00186{transform:matrix(0.278536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278536,0.000000,0.000000,0.250000,0,0);}
.m55_c00186{transform:matrix(0.279359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279359,0.000000,0.000000,0.250000,0,0);}
.m21_c00186{transform:matrix(0.279621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279621,0.000000,0.000000,0.250000,0,0);}
.ma1_c00186{transform:matrix(0.279730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279730,0.000000,0.000000,0.250000,0,0);}
.mb8_c00186{transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);}
.ma7_c00186{transform:matrix(0.280146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280146,0.000000,0.000000,0.250000,0,0);}
.mbc_c00186{transform:matrix(0.280900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280900,0.000000,0.000000,0.250000,0,0);}
.mb0_c00186{transform:matrix(0.281196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281196,0.000000,0.000000,0.250000,0,0);}
.m27_c00186{transform:matrix(0.281249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281249,0.000000,0.000000,0.250000,0,0);}
.m19_c00186{transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);}
.m7c_c00186{transform:matrix(0.283238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283238,0.000000,0.000000,0.250000,0,0);}
.m74_c00186{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.mab_c00186{transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);}
.m45_c00186{transform:matrix(0.284009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284009,0.000000,0.000000,0.250000,0,0);}
.m17_c00186{transform:matrix(0.285104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285104,0.000000,0.000000,0.250000,0,0);}
.m12_c00186{transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);}
.mc3_c00186{transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);}
.maa_c00186{transform:matrix(0.286625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286625,0.000000,0.000000,0.250000,0,0);}
.m59_c00186{transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);}
.m40_c00186{transform:matrix(0.287254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287254,0.000000,0.000000,0.250000,0,0);}
.me_c00186{transform:matrix(0.287792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287792,0.000000,0.000000,0.250000,0,0);}
.m79_c00186{transform:matrix(0.287855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287855,0.000000,0.000000,0.250000,0,0);}
.m89_c00186{transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);}
.ma2_c00186{transform:matrix(0.288980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288980,0.000000,0.000000,0.250000,0,0);}
.m7a_c00186{transform:matrix(0.289654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289654,0.000000,0.000000,0.250000,0,0);}
.m6b_c00186{transform:matrix(0.289669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289669,0.000000,0.000000,0.250000,0,0);}
.mbb_c00186{transform:matrix(0.289803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289803,0.000000,0.000000,0.250000,0,0);}
.m9b_c00186{transform:matrix(0.290591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290591,0.000000,0.000000,0.250000,0,0);}
.mbe_c00186{transform:matrix(0.290834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290834,0.000000,0.000000,0.250000,0,0);}
.m1f_c00186{transform:matrix(0.291009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291009,0.000000,0.000000,0.250000,0,0);}
.m47_c00186{transform:matrix(0.291795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291795,0.000000,0.000000,0.250000,0,0);}
.m8c_c00186{transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);}
.m8e_c00186{transform:matrix(0.292392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292392,0.000000,0.000000,0.250000,0,0);}
.m64_c00186{transform:matrix(0.293211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293211,0.000000,0.000000,0.250000,0,0);}
.m7f_c00186{transform:matrix(0.293824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293824,0.000000,0.000000,0.250000,0,0);}
.m35_c00186{transform:matrix(0.293874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293874,0.000000,0.000000,0.250000,0,0);}
.md_c00186{transform:matrix(0.295486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295486,0.000000,0.000000,0.250000,0,0);}
.mb5_c00186{transform:matrix(0.295567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295567,0.000000,0.000000,0.250000,0,0);}
.m9e_c00186{transform:matrix(0.296886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296886,0.000000,0.000000,0.250000,0,0);}
.m38_c00186{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m58_c00186{transform:matrix(0.297306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297306,0.000000,0.000000,0.250000,0,0);}
.m1a_c00186{transform:matrix(0.297360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297360,0.000000,0.000000,0.250000,0,0);}
.m3d_c00186{transform:matrix(0.298701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298701,0.000000,0.000000,0.250000,0,0);}
.m49_c00186{transform:matrix(0.299263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299263,0.000000,0.000000,0.250000,0,0);}
.m3e_c00186{transform:matrix(0.299719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299719,0.000000,0.000000,0.250000,0,0);}
.m93_c00186{transform:matrix(0.300198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300198,0.000000,0.000000,0.250000,0,0);}
.m2b_c00186{transform:matrix(0.300336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300336,0.000000,0.000000,0.250000,0,0);}
.m96_c00186{transform:matrix(0.300521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300521,0.000000,0.000000,0.250000,0,0);}
.m1e_c00186{transform:matrix(0.300792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300792,0.000000,0.000000,0.250000,0,0);}
.m80_c00186{transform:matrix(0.301133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301133,0.000000,0.000000,0.250000,0,0);}
.m9d_c00186{transform:matrix(0.301409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301409,0.000000,0.000000,0.250000,0,0);}
.mc2_c00186{transform:matrix(0.301851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301851,0.000000,0.000000,0.250000,0,0);}
.m76_c00186{transform:matrix(0.302107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302107,0.000000,0.000000,0.250000,0,0);}
.m6c_c00186{transform:matrix(0.302775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302775,0.000000,0.000000,0.250000,0,0);}
.m51_c00186{transform:matrix(0.304372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304372,0.000000,0.000000,0.250000,0,0);}
.m3b_c00186{transform:matrix(0.305448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305448,0.000000,0.000000,0.250000,0,0);}
.m99_c00186{transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);}
.mb7_c00186{transform:matrix(0.305912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305912,0.000000,0.000000,0.250000,0,0);}
.m2d_c00186{transform:matrix(0.306181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306181,0.000000,0.000000,0.250000,0,0);}
.m29_c00186{transform:matrix(0.306430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306430,0.000000,0.000000,0.250000,0,0);}
.m0_c00186{transform:matrix(0.306912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306912,0.000000,0.000000,0.250000,0,0);}
.m9f_c00186{transform:matrix(0.307034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307034,0.000000,0.000000,0.250000,0,0);}
.mc9_c00186{transform:matrix(0.307126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307126,0.000000,0.000000,0.250000,0,0);}
.ma_c00186{transform:matrix(0.307675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307675,0.000000,0.000000,0.250000,0,0);}
.m13_c00186{transform:matrix(0.308280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308280,0.000000,0.000000,0.250000,0,0);}
.m86_c00186{transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);}
.m98_c00186{transform:matrix(0.308916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308916,0.000000,0.000000,0.250000,0,0);}
.m6f_c00186{transform:matrix(0.309348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309348,0.000000,0.000000,0.250000,0,0);}
.m66_c00186{transform:matrix(0.309963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309963,0.000000,0.000000,0.250000,0,0);}
.m95_c00186{transform:matrix(0.310694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310694,0.000000,0.000000,0.250000,0,0);}
.m2c_c00186{transform:matrix(0.310827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310827,0.000000,0.000000,0.250000,0,0);}
.m43_c00186{transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);}
.m54_c00186{transform:matrix(0.311056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311056,0.000000,0.000000,0.250000,0,0);}
.m22_c00186{transform:matrix(0.311213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311213,0.000000,0.000000,0.250000,0,0);}
.m88_c00186{transform:matrix(0.312316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312316,0.000000,0.000000,0.250000,0,0);}
.m1b_c00186{transform:matrix(0.312347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312347,0.000000,0.000000,0.250000,0,0);}
.m63_c00186{transform:matrix(0.312717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312717,0.000000,0.000000,0.250000,0,0);}
.m3_c00186{transform:matrix(0.312859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312859,0.000000,0.000000,0.250000,0,0);}
.m81_c00186{transform:matrix(0.313490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313490,0.000000,0.000000,0.250000,0,0);}
.m94_c00186{transform:matrix(0.314959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314959,0.000000,0.000000,0.250000,0,0);}
.m33_c00186{transform:matrix(0.314995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314995,0.000000,0.000000,0.250000,0,0);}
.m7b_c00186{transform:matrix(0.315095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315095,0.000000,0.000000,0.250000,0,0);}
.m15_c00186{transform:matrix(0.315144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315144,0.000000,0.000000,0.250000,0,0);}
.m4d_c00186{transform:matrix(0.316069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316069,0.000000,0.000000,0.250000,0,0);}
.m7e_c00186{transform:matrix(0.316169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316169,0.000000,0.000000,0.250000,0,0);}
.m18_c00186{transform:matrix(0.317237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317237,0.000000,0.000000,0.250000,0,0);}
.mbf_c00186{transform:matrix(0.318106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318106,0.000000,0.000000,0.250000,0,0);}
.m25_c00186{transform:matrix(0.318864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318864,0.000000,0.000000,0.250000,0,0);}
.m48_c00186{transform:matrix(0.319389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319389,0.000000,0.000000,0.250000,0,0);}
.mac_c00186{transform:matrix(0.319694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319694,0.000000,0.000000,0.250000,0,0);}
.m3a_c00186{transform:matrix(0.320922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320922,0.000000,0.000000,0.250000,0,0);}
.mc1_c00186{transform:matrix(0.321773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321773,0.000000,0.000000,0.250000,0,0);}
.ma6_c00186{transform:matrix(0.323033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323033,0.000000,0.000000,0.250000,0,0);}
.m57_c00186{transform:matrix(0.323312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323312,0.000000,0.000000,0.250000,0,0);}
.m7_c00186{transform:matrix(0.323352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323352,0.000000,0.000000,0.250000,0,0);}
.m97_c00186{transform:matrix(0.324784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324784,0.000000,0.000000,0.250000,0,0);}
.m71_c00186{transform:matrix(0.324794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324794,0.000000,0.000000,0.250000,0,0);}
.mb_c00186{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m92_c00186{transform:matrix(0.328711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328711,0.000000,0.000000,0.250000,0,0);}
.m5c_c00186{transform:matrix(0.329390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329390,0.000000,0.000000,0.250000,0,0);}
.mb1_c00186{transform:matrix(0.329642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329642,0.000000,0.000000,0.250000,0,0);}
.m82_c00186{transform:matrix(0.329713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329713,0.000000,0.000000,0.250000,0,0);}
.m61_c00186{transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);}
.m37_c00186{transform:matrix(0.331083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331083,0.000000,0.000000,0.250000,0,0);}
.m3f_c00186{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m8a_c00186{transform:matrix(0.333480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333480,0.000000,0.000000,0.250000,0,0);}
.m83_c00186{transform:matrix(0.334113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334113,0.000000,0.000000,0.250000,0,0);}
.m10_c00186{transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);}
.m28_c00186{transform:matrix(0.337386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337386,0.000000,0.000000,0.250000,0,0);}
.m84_c00186{transform:matrix(0.337583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337583,0.000000,0.000000,0.250000,0,0);}
.m16_c00186{transform:matrix(0.338225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338225,0.000000,0.000000,0.250000,0,0);}
.mc8_c00186{transform:matrix(0.339116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339116,0.000000,0.000000,0.250000,0,0);}
.m75_c00186{transform:matrix(0.339196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339196,0.000000,0.000000,0.250000,0,0);}
.m24_c00186{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m5b_c00186{transform:matrix(0.339556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339556,0.000000,0.000000,0.250000,0,0);}
.m4a_c00186{transform:matrix(0.340256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340256,0.000000,0.000000,0.250000,0,0);}
.mbd_c00186{transform:matrix(0.340742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340742,0.000000,0.000000,0.250000,0,0);}
.m8f_c00186{transform:matrix(0.342143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342143,0.000000,0.000000,0.250000,0,0);}
.mb9_c00186{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.maf_c00186{transform:matrix(0.348286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348286,0.000000,0.000000,0.250000,0,0);}
.m4_c00186{transform:matrix(0.348566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348566,0.000000,0.000000,0.250000,0,0);}
.m44_c00186{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m8_c00186{transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);}
.m2e_c00186{transform:matrix(0.355083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355083,0.000000,0.000000,0.250000,0,0);}
.m8b_c00186{transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);}
.m5a_c00186{transform:matrix(0.355345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355345,0.000000,0.000000,0.250000,0,0);}
.m6d_c00186{transform:matrix(0.358652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358652,0.000000,0.000000,0.250000,0,0);}
.ma0_c00186{transform:matrix(0.358658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358658,0.000000,0.000000,0.250000,0,0);}
.mc7_c00186{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m5d_c00186{transform:matrix(0.421610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421610,0.000000,0.000000,0.250000,0,0);}
.v0_c00186{vertical-align:0.000000px;}
.lsa_c00186{letter-spacing:-2.744280px;}
.lsf_c00186{letter-spacing:-2.367922px;}
.ls11_c00186{letter-spacing:-2.038608px;}
.ls8_c00186{letter-spacing:-1.356458px;}
.ls12_c00186{letter-spacing:-1.011463px;}
.ls6_c00186{letter-spacing:-0.533174px;}
.ls4_c00186{letter-spacing:-0.344995px;}
.lsd_c00186{letter-spacing:-0.337154px;}
.ls3_c00186{letter-spacing:0.000000px;}
.ls0_c00186{letter-spacing:0.533174px;}
.ls2_c00186{letter-spacing:1.082030px;}
.ls14_c00186{letter-spacing:1.497593px;}
.ls10_c00186{letter-spacing:1.685772px;}
.lsc_c00186{letter-spacing:1.975882px;}
.ls16_c00186{letter-spacing:3.042230px;}
.ls15_c00186{letter-spacing:3.128479px;}
.ls5_c00186{letter-spacing:3.781810px;}
.ls9_c00186{letter-spacing:3.880810px;}
.ls1_c00186{letter-spacing:3.920400px;}
.lse_c00186{letter-spacing:48.470598px;}
.ls7_c00186{letter-spacing:51.321798px;}
.ls13_c00186{letter-spacing:52.747398px;}
.lsb_c00186{letter-spacing:57.024198px;}
.sc__c00186{text-shadow:none;}
.sc0_c00186{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00186{-webkit-text-stroke:0px transparent;}
.sc0_c00186{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00186{word-spacing:-20.684030px;}
.ws1_c00186{word-spacing:-19.602000px;}
.ws2_c00186{word-spacing:-19.257005px;}
.ws3_c00186{word-spacing:-2.195424px;}
.ws5_c00186{word-spacing:0.000000px;}
.ws4_c00186{word-spacing:3.449952px;}
._5_c00186{margin-left:-11.290356px;}
._0_c00186{width:3.089275px;}
._9_c00186{width:5.346238px;}
._14_c00186{width:6.397380px;}
._8_c00186{width:7.433870px;}
._1_c00186{width:9.095328px;}
._4_c00186{width:10.507068px;}
._7_c00186{width:11.682792px;}
._d_c00186{width:14.726210px;}
._a_c00186{width:17.092548px;}
._3_c00186{width:20.746757px;}
._12_c00186{width:22.519570px;}
._6_c00186{width:23.600808px;}
._e_c00186{width:26.737920px;}
._13_c00186{width:29.010168px;}
._f_c00186{width:31.206384px;}
._15_c00186{width:32.366822px;}
._2_c00186{width:33.855782px;}
._10_c00186{width:37.793052px;}
._11_c00186{width:38.968776px;}
._b_c00186{width:40.380120px;}
._c_c00186{width:46.919347px;}
.fc0_c00186{color:transparent;}
.fs8_c00186{font-size:22.176000px;}
.fs9_c00186{font-size:27.720000px;}
.fs5_c00186{font-size:48.470598px;}
.fs2_c00186{font-size:51.321798px;}
.fs7_c00186{font-size:52.747398px;}
.fs4_c00186{font-size:57.024198px;}
.fs6_c00186{font-size:66.330000px;}
.fsa_c00186{font-size:72.864000px;}
.fs1_c00186{font-size:75.636198px;}
.fs3_c00186{font-size:77.616198px;}
.fs0_c00186{font-size:78.408000px;}
.y0_c00186{bottom:0.000000px;}
.y1c_c00186{bottom:0.268335px;}
.y1_c00186{bottom:76.500000px;}
.y1b_c00186{bottom:98.278335px;}
.y1a_c00186{bottom:144.966735px;}
.y19_c00186{bottom:177.399135px;}
.y18_c00186{bottom:266.137785px;}
.y17_c00186{bottom:274.691385px;}
.y16_c00186{bottom:307.841535px;}
.y15_c00186{bottom:307.848663px;}
.y14_c00186{bottom:339.917535px;}
.y13_c00186{bottom:371.993535px;}
.y12_c00186{bottom:404.425935px;}
.y11_c00186{bottom:436.501935px;}
.y10_c00186{bottom:468.572985px;}
.yf_c00186{bottom:500.648985px;}
.ye_c00186{bottom:533.081385px;}
.yd_c00186{bottom:564.800985px;}
.yc_c00186{bottom:597.589785px;}
.yb_c00186{bottom:629.670735px;}
.ya_c00186{bottom:661.385385px;}
.y9_c00186{bottom:693.109935px;}
.y8_c00186{bottom:725.542335px;}
.y7_c00186{bottom:790.402185px;}
.y6_c00186{bottom:823.190985px;}
.y5_c00186{bottom:855.623385px;}
.y4_c00186{bottom:888.060735px;}
.y3_c00186{bottom:920.136735px;}
.y2_c00186{bottom:1066.968585px;}
.h9_c00186{height:23.128875px;}
.hb_c00186{height:28.911094px;}
.h7_c00186{height:32.281418px;}
.h4_c00186{height:34.180317px;}
.h8_c00186{height:35.129767px;}
.h6_c00186{height:37.978116px;}
.ha_c00186{height:69.180117px;}
.hc_c00186{height:71.512031px;}
.h3_c00186{height:74.195860px;}
.h5_c00186{height:76.176054px;}
.h2_c00186{height:76.953164px;}
.h1_c00186{height:1110.000000px;}
.h0_c00186{height:1263.000000px;}
.w1_c00186{width:733.500000px;}
.w0_c00186{width:892.500000px;}
.x0_c00186{left:0.000000px;}
.x4a_c00186{left:61.666635px;}
.x37_c00186{left:62.864535px;}
.x24_c00186{left:63.958485px;}
.x4_c00186{left:65.121735px;}
.x67_c00186{left:75.175185px;}
.x1_c00186{left:79.500000px;}
.x4f_c00186{left:84.981135px;}
.x61_c00186{left:86.045385px;}
.x52_c00186{left:95.123685px;}
.x25_c00186{left:96.564135px;}
.x5_c00186{left:97.984785px;}
.x47_c00186{left:107.117535px;}
.x50_c00186{left:109.547985px;}
.x31_c00186{left:116.819535px;}
.x2b_c00186{left:118.497585px;}
.x41_c00186{left:128.833185px;}
.x5f_c00186{left:131.926935px;}
.x48_c00186{left:140.198385px;}
.x2c_c00186{left:150.375585px;}
.x42_c00186{left:151.622985px;}
.x60_c00186{left:160.389435px;}
.x12_c00186{left:161.488335px;}
.x38_c00186{left:162.602085px;}
.x65_c00186{left:164.141535px;}
.x59_c00186{left:172.898085px;}
.x6_c00186{left:182.798085px;}
.x26_c00186{left:184.416735px;}
.x39_c00186{left:194.207835px;}
.x4b_c00186{left:205.889835px;}
.x5a_c00186{left:207.221385px;}
.x32_c00186{left:216.705585px;}
.x1b_c00186{left:217.858935px;}
.x3a_c00186{left:228.630135px;}
.x7_c00186{left:239.312235px;}
.x66_c00186{left:240.326985px;}
.x1c_c00186{left:250.330935px;}
.x13_c00186{left:261.413985px;}
.x8_c00186{left:272.190135px;}
.x1d_c00186{left:283.104885px;}
.x53_c00186{left:284.550285px;}
.x9_c00186{left:294.182985px;}
.x14_c00186{left:305.572935px;}
.x64_c00186{left:308.929035px;}
.x4c_c00186{left:316.457985px;}
.x43_c00186{left:317.571735px;}
.xa_c00186{left:327.501435px;}
.x62_c00186{left:337.837035px;}
.x15_c00186{left:339.094335px;}
.x3b_c00186{left:349.756635px;}
.x54_c00186{left:359.483385px;}
.x27_c00186{left:361.111935px;}
.x57_c00186{left:370.962435px;}
.xb_c00186{left:372.234585px;}
.x1e_c00186{left:382.530585px;}
.xc_c00186{left:393.044385px;}
.x51_c00186{left:394.618485px;}
.x1f_c00186{left:404.716485px;}
.x33_c00186{left:414.502635px;}
.x3c_c00186{left:415.690635px;}
.xd_c00186{left:426.041085px;}
.x63_c00186{left:427.100385px;}
.x69_c00186{left:434.000685px;}
.x58_c00186{left:438.515085px;}
.x20_c00186{left:446.935035px;}
.x3d_c00186{left:448.330935px;}
.x34_c00186{left:459.790185px;}
.x5e_c00186{left:460.928685px;}
.x16_c00186{left:470.774235px;}
.xe_c00186{left:481.783035px;}
.x5b_c00186{left:483.060135px;}
.x2d_c00186{left:484.480785px;}
.xf_c00186{left:492.712635px;}
.x44_c00186{left:493.742235px;}
.x3e_c00186{left:503.756085px;}
.x49_c00186{left:504.795585px;}
.x17_c00186{left:515.452935px;}
.x10_c00186{left:526.135035px;}
.x28_c00186{left:536.935935px;}
.x5d_c00186{left:547.469535px;}
.x11_c00186{left:557.379435px;}
.x4d_c00186{left:558.458535px;}
.x55_c00186{left:561.398835px;}
.x18_c00186{left:569.333685px;}
.x68_c00186{left:579.159435px;}
.x21_c00186{left:580.748385px;}
.x22_c00186{left:591.400785px;}
.x19_c00186{left:601.568085px;}
.x3f_c00186{left:603.147135px;}
.x5c_c00186{left:613.542135px;}
.x35_c00186{left:614.586585px;}
.x45_c00186{left:616.274535px;}
.x23_c00186{left:624.907335px;}
.x2e_c00186{left:626.506185px;}
.x29_c00186{left:635.624085px;}
.x36_c00186{left:638.430735px;}
.x2f_c00186{left:646.533885px;}
.x2_c00186{left:647.657535px;}
.x4e_c00186{left:657.720885px;}
.x2a_c00186{left:667.833735px;}
.x3_c00186{left:669.808785px;}
.x1a_c00186{left:679.109835px;}
.x46_c00186{left:690.158235px;}
.x30_c00186{left:692.088735px;}
.x56_c00186{left:701.162085px;}
.x40_c00186{left:712.220385px;}
@media print{
.v0_c00186{vertical-align:0.000000pt;}
.lsa_c00186{letter-spacing:-2.439360pt;}
.lsf_c00186{letter-spacing:-2.104819pt;}
.ls11_c00186{letter-spacing:-1.812096pt;}
.ls8_c00186{letter-spacing:-1.205741pt;}
.ls12_c00186{letter-spacing:-0.899078pt;}
.ls6_c00186{letter-spacing:-0.473933pt;}
.ls4_c00186{letter-spacing:-0.306662pt;}
.lsd_c00186{letter-spacing:-0.299693pt;}
.ls3_c00186{letter-spacing:0.000000pt;}
.ls0_c00186{letter-spacing:0.473933pt;}
.ls2_c00186{letter-spacing:0.961805pt;}
.ls14_c00186{letter-spacing:1.331194pt;}
.ls10_c00186{letter-spacing:1.498464pt;}
.lsc_c00186{letter-spacing:1.756339pt;}
.ls16_c00186{letter-spacing:2.704205pt;}
.ls15_c00186{letter-spacing:2.780870pt;}
.ls5_c00186{letter-spacing:3.361609pt;}
.ls9_c00186{letter-spacing:3.449609pt;}
.ls1_c00186{letter-spacing:3.484800pt;}
.lse_c00186{letter-spacing:43.084976pt;}
.ls7_c00186{letter-spacing:45.619376pt;}
.ls13_c00186{letter-spacing:46.886576pt;}
.lsb_c00186{letter-spacing:50.688176pt;}
.ws0_c00186{word-spacing:-18.385805pt;}
.ws1_c00186{word-spacing:-17.424000pt;}
.ws2_c00186{word-spacing:-17.117338pt;}
.ws3_c00186{word-spacing:-1.951488pt;}
.ws5_c00186{word-spacing:0.000000pt;}
.ws4_c00186{word-spacing:3.066624pt;}
._5_c00186{margin-left:-10.035872pt;}
._0_c00186{width:2.746022pt;}
._9_c00186{width:4.752211pt;}
._14_c00186{width:5.686560pt;}
._8_c00186{width:6.607885pt;}
._1_c00186{width:8.084736pt;}
._4_c00186{width:9.339616pt;}
._7_c00186{width:10.384704pt;}
._d_c00186{width:13.089965pt;}
._a_c00186{width:15.193376pt;}
._3_c00186{width:18.441562pt;}
._12_c00186{width:20.017395pt;}
._6_c00186{width:20.978496pt;}
._e_c00186{width:23.767040pt;}
._13_c00186{width:25.786816pt;}
._f_c00186{width:27.739008pt;}
._15_c00186{width:28.770509pt;}
._2_c00186{width:30.094029pt;}
._10_c00186{width:33.593824pt;}
._11_c00186{width:34.638912pt;}
._b_c00186{width:35.893440pt;}
._c_c00186{width:41.706086pt;}
.fs8_c00186{font-size:19.712000pt;}
.fs9_c00186{font-size:24.640000pt;}
.fs5_c00186{font-size:43.084976pt;}
.fs2_c00186{font-size:45.619376pt;}
.fs7_c00186{font-size:46.886576pt;}
.fs4_c00186{font-size:50.688176pt;}
.fs6_c00186{font-size:58.960000pt;}
.fsa_c00186{font-size:64.768000pt;}
.fs1_c00186{font-size:67.232176pt;}
.fs3_c00186{font-size:68.992176pt;}
.fs0_c00186{font-size:69.696000pt;}
.y0_c00186{bottom:0.000000pt;}
.y1c_c00186{bottom:0.238520pt;}
.y1_c00186{bottom:68.000000pt;}
.y1b_c00186{bottom:87.358520pt;}
.y1a_c00186{bottom:128.859320pt;}
.y19_c00186{bottom:157.688120pt;}
.y18_c00186{bottom:236.566920pt;}
.y17_c00186{bottom:244.170120pt;}
.y16_c00186{bottom:273.636920pt;}
.y15_c00186{bottom:273.643256pt;}
.y14_c00186{bottom:302.148920pt;}
.y13_c00186{bottom:330.660920pt;}
.y12_c00186{bottom:359.489720pt;}
.y11_c00186{bottom:388.001720pt;}
.y10_c00186{bottom:416.509320pt;}
.yf_c00186{bottom:445.021320pt;}
.ye_c00186{bottom:473.850120pt;}
.yd_c00186{bottom:502.045320pt;}
.yc_c00186{bottom:531.190920pt;}
.yb_c00186{bottom:559.707320pt;}
.ya_c00186{bottom:587.898120pt;}
.y9_c00186{bottom:616.097720pt;}
.y8_c00186{bottom:644.926520pt;}
.y7_c00186{bottom:702.579720pt;}
.y6_c00186{bottom:731.725320pt;}
.y5_c00186{bottom:760.554120pt;}
.y4_c00186{bottom:789.387320pt;}
.y3_c00186{bottom:817.899320pt;}
.y2_c00186{bottom:948.416520pt;}
.h9_c00186{height:20.559000pt;}
.hb_c00186{height:25.698750pt;}
.h7_c00186{height:28.694594pt;}
.h4_c00186{height:30.382504pt;}
.h8_c00186{height:31.226460pt;}
.h6_c00186{height:33.758325pt;}
.ha_c00186{height:61.493438pt;}
.hc_c00186{height:63.566250pt;}
.h3_c00186{height:65.951876pt;}
.h5_c00186{height:67.712048pt;}
.h2_c00186{height:68.402813pt;}
.h1_c00186{height:986.666667pt;}
.h0_c00186{height:1122.666667pt;}
.w1_c00186{width:652.000000pt;}
.w0_c00186{width:793.333333pt;}
.x0_c00186{left:0.000000pt;}
.x4a_c00186{left:54.814787pt;}
.x37_c00186{left:55.879587pt;}
.x24_c00186{left:56.851987pt;}
.x4_c00186{left:57.885987pt;}
.x67_c00186{left:66.822387pt;}
.x1_c00186{left:70.666667pt;}
.x4f_c00186{left:75.538787pt;}
.x61_c00186{left:76.484787pt;}
.x52_c00186{left:84.554387pt;}
.x25_c00186{left:85.834787pt;}
.x5_c00186{left:87.097587pt;}
.x47_c00186{left:95.215587pt;}
.x50_c00186{left:97.375987pt;}
.x31_c00186{left:103.839587pt;}
.x2b_c00186{left:105.331187pt;}
.x41_c00186{left:114.518387pt;}
.x5f_c00186{left:117.268387pt;}
.x48_c00186{left:124.620787pt;}
.x2c_c00186{left:133.667187pt;}
.x42_c00186{left:134.775987pt;}
.x60_c00186{left:142.568387pt;}
.x12_c00186{left:143.545187pt;}
.x38_c00186{left:144.535187pt;}
.x65_c00186{left:145.903587pt;}
.x59_c00186{left:153.687187pt;}
.x6_c00186{left:162.487187pt;}
.x26_c00186{left:163.925987pt;}
.x39_c00186{left:172.629187pt;}
.x4b_c00186{left:183.013187pt;}
.x5a_c00186{left:184.196787pt;}
.x32_c00186{left:192.627187pt;}
.x1b_c00186{left:193.652387pt;}
.x3a_c00186{left:203.226787pt;}
.x7_c00186{left:212.721987pt;}
.x66_c00186{left:213.623987pt;}
.x1c_c00186{left:222.516387pt;}
.x13_c00186{left:232.367987pt;}
.x8_c00186{left:241.946787pt;}
.x1d_c00186{left:251.648787pt;}
.x53_c00186{left:252.933587pt;}
.x9_c00186{left:261.495987pt;}
.x14_c00186{left:271.620387pt;}
.x64_c00186{left:274.603587pt;}
.x4c_c00186{left:281.295987pt;}
.x43_c00186{left:282.285987pt;}
.xa_c00186{left:291.112387pt;}
.x62_c00186{left:300.299587pt;}
.x15_c00186{left:301.417187pt;}
.x3b_c00186{left:310.894787pt;}
.x54_c00186{left:319.540787pt;}
.x27_c00186{left:320.988387pt;}
.x57_c00186{left:329.744387pt;}
.xb_c00186{left:330.875187pt;}
.x1e_c00186{left:340.027187pt;}
.xc_c00186{left:349.372787pt;}
.x51_c00186{left:350.771987pt;}
.x1f_c00186{left:359.747987pt;}
.x33_c00186{left:368.446787pt;}
.x3c_c00186{left:369.502787pt;}
.xd_c00186{left:378.703187pt;}
.x63_c00186{left:379.644787pt;}
.x69_c00186{left:385.778387pt;}
.x58_c00186{left:389.791187pt;}
.x20_c00186{left:397.275587pt;}
.x3d_c00186{left:398.516387pt;}
.x34_c00186{left:408.702387pt;}
.x5e_c00186{left:409.714387pt;}
.x16_c00186{left:418.465987pt;}
.xe_c00186{left:428.251587pt;}
.x5b_c00186{left:429.386787pt;}
.x2d_c00186{left:430.649587pt;}
.xf_c00186{left:437.966787pt;}
.x44_c00186{left:438.881987pt;}
.x3e_c00186{left:447.783187pt;}
.x49_c00186{left:448.707187pt;}
.x17_c00186{left:458.180387pt;}
.x10_c00186{left:467.675587pt;}
.x28_c00186{left:477.276387pt;}
.x5d_c00186{left:486.639587pt;}
.x11_c00186{left:495.448387pt;}
.x4d_c00186{left:496.407587pt;}
.x55_c00186{left:499.021187pt;}
.x18_c00186{left:506.074387pt;}
.x68_c00186{left:514.808387pt;}
.x21_c00186{left:516.220787pt;}
.x22_c00186{left:525.689587pt;}
.x19_c00186{left:534.727187pt;}
.x3f_c00186{left:536.130787pt;}
.x5c_c00186{left:545.370787pt;}
.x35_c00186{left:546.299187pt;}
.x45_c00186{left:547.799587pt;}
.x23_c00186{left:555.473187pt;}
.x2e_c00186{left:556.894387pt;}
.x29_c00186{left:564.999187pt;}
.x36_c00186{left:567.493987pt;}
.x2f_c00186{left:574.696787pt;}
.x2_c00186{left:575.695587pt;}
.x4e_c00186{left:584.640787pt;}
.x2a_c00186{left:593.629987pt;}
.x3_c00186{left:595.385587pt;}
.x1a_c00186{left:603.653187pt;}
.x46_c00186{left:613.473987pt;}
.x30_c00186{left:615.189987pt;}
.x56_c00186{left:623.255187pt;}
.x40_c00186{left:633.084787pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_df2c7ae3d89f85b8afe8a6c4.woff2')format("woff");}.ff1_c00187{font-family:ff1_c00187;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00187;src:url('chunks/assets/font_718dd29fffa7cc0b56988410.woff2')format("woff");}.ff2_c00187{font-family:ff2_c00187;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m60_c00187{transform:matrix(0.216830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216830,0.000000,0.000000,0.250000,0,0);}
.m1a_c00187{transform:matrix(0.224573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224573,0.000000,0.000000,0.250000,0,0);}
.m90_c00187{transform:matrix(0.235239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235239,0.000000,0.000000,0.250000,0,0);}
.m5e_c00187{transform:matrix(0.248196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248196,0.000000,0.000000,0.250000,0,0);}
.m7f_c00187{transform:matrix(0.249355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249355,0.000000,0.000000,0.250000,0,0);}
.m6_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);}
.m0_c00187{transform:matrix(0.251380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251380,0.000000,0.000000,0.250000,0,0);}
.mb7_c00187{transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);}
.m80_c00187{transform:matrix(0.254597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254597,0.000000,0.000000,0.250000,0,0);}
.m48_c00187{transform:matrix(0.255632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255632,0.000000,0.000000,0.250000,0,0);}
.m77_c00187{transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);}
.m98_c00187{transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);}
.mb4_c00187{transform:matrix(0.258509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258509,0.000000,0.000000,0.250000,0,0);}
.m42_c00187{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m17_c00187{transform:matrix(0.259986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259986,0.000000,0.000000,0.250000,0,0);}
.m1f_c00187{transform:matrix(0.260115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260115,0.000000,0.000000,0.250000,0,0);}
.m64_c00187{transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);}
.m91_c00187{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m83_c00187{transform:matrix(0.262771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262771,0.000000,0.000000,0.250000,0,0);}
.m10_c00187{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m72_c00187{transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);}
.m2e_c00187{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m32_c00187{transform:matrix(0.265509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265509,0.000000,0.000000,0.250000,0,0);}
.m51_c00187{transform:matrix(0.265583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265583,0.000000,0.000000,0.250000,0,0);}
.mb_c00187{transform:matrix(0.265636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265636,0.000000,0.000000,0.250000,0,0);}
.m94_c00187{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.mae_c00187{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.m3f_c00187{transform:matrix(0.266949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266949,0.000000,0.000000,0.250000,0,0);}
.m1e_c00187{transform:matrix(0.267194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267194,0.000000,0.000000,0.250000,0,0);}
.m35_c00187{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m9d_c00187{transform:matrix(0.267925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267925,0.000000,0.000000,0.250000,0,0);}
.m69_c00187{transform:matrix(0.268743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268743,0.000000,0.000000,0.250000,0,0);}
.m24_c00187{transform:matrix(0.269857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269857,0.000000,0.000000,0.250000,0,0);}
.m52_c00187{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m4b_c00187{transform:matrix(0.271124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271124,0.000000,0.000000,0.250000,0,0);}
.m82_c00187{transform:matrix(0.271614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271614,0.000000,0.000000,0.250000,0,0);}
.m38_c00187{transform:matrix(0.271807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271807,0.000000,0.000000,0.250000,0,0);}
.m39_c00187{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m95_c00187{transform:matrix(0.273857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273857,0.000000,0.000000,0.250000,0,0);}
.m4a_c00187{transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);}
.mc_c00187{transform:matrix(0.274132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274132,0.000000,0.000000,0.250000,0,0);}
.md_c00187{transform:matrix(0.274156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274156,0.000000,0.000000,0.250000,0,0);}
.m14_c00187{transform:matrix(0.274645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274645,0.000000,0.000000,0.250000,0,0);}
.m19_c00187{transform:matrix(0.274935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274935,0.000000,0.000000,0.250000,0,0);}
.m6b_c00187{transform:matrix(0.275733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275733,0.000000,0.000000,0.250000,0,0);}
.m20_c00187{transform:matrix(0.276607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276607,0.000000,0.000000,0.250000,0,0);}
.m4_c00187{transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);}
.m11_c00187{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m30_c00187{transform:matrix(0.277686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277686,0.000000,0.000000,0.250000,0,0);}
.mb2_c00187{transform:matrix(0.277741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277741,0.000000,0.000000,0.250000,0,0);}
.m7a_c00187{transform:matrix(0.278198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278198,0.000000,0.000000,0.250000,0,0);}
.m74_c00187{transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);}
.m87_c00187{transform:matrix(0.278778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278778,0.000000,0.000000,0.250000,0,0);}
.m4f_c00187{transform:matrix(0.279268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279268,0.000000,0.000000,0.250000,0,0);}
.m47_c00187{transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);}
.m45_c00187{transform:matrix(0.279476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279476,0.000000,0.000000,0.250000,0,0);}
.m8e_c00187{transform:matrix(0.280064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280064,0.000000,0.000000,0.250000,0,0);}
.m93_c00187{transform:matrix(0.280247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280247,0.000000,0.000000,0.250000,0,0);}
.ma0_c00187{transform:matrix(0.282371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282371,0.000000,0.000000,0.250000,0,0);}
.m7d_c00187{transform:matrix(0.282543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282543,0.000000,0.000000,0.250000,0,0);}
.m88_c00187{transform:matrix(0.282670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282670,0.000000,0.000000,0.250000,0,0);}
.mb3_c00187{transform:matrix(0.283131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283131,0.000000,0.000000,0.250000,0,0);}
.ma4_c00187{transform:matrix(0.283271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283271,0.000000,0.000000,0.250000,0,0);}
.m9a_c00187{transform:matrix(0.283426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283426,0.000000,0.000000,0.250000,0,0);}
.m99_c00187{transform:matrix(0.283626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283626,0.000000,0.000000,0.250000,0,0);}
.m5c_c00187{transform:matrix(0.283961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283961,0.000000,0.000000,0.250000,0,0);}
.m3b_c00187{transform:matrix(0.284338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284338,0.000000,0.000000,0.250000,0,0);}
.mab_c00187{transform:matrix(0.284530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284530,0.000000,0.000000,0.250000,0,0);}
.m22_c00187{transform:matrix(0.284698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284698,0.000000,0.000000,0.250000,0,0);}
.m59_c00187{transform:matrix(0.285129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285129,0.000000,0.000000,0.250000,0,0);}
.m3d_c00187{transform:matrix(0.285131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285131,0.000000,0.000000,0.250000,0,0);}
.m57_c00187{transform:matrix(0.285486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285486,0.000000,0.000000,0.250000,0,0);}
.mb9_c00187{transform:matrix(0.285748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285748,0.000000,0.000000,0.250000,0,0);}
.m27_c00187{transform:matrix(0.285787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285787,0.000000,0.000000,0.250000,0,0);}
.maa_c00187{transform:matrix(0.286062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286062,0.000000,0.000000,0.250000,0,0);}
.mb5_c00187{transform:matrix(0.286610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286610,0.000000,0.000000,0.250000,0,0);}
.m54_c00187{transform:matrix(0.286896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286896,0.000000,0.000000,0.250000,0,0);}
.m23_c00187{transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);}
.m6a_c00187{transform:matrix(0.287532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287532,0.000000,0.000000,0.250000,0,0);}
.m9f_c00187{transform:matrix(0.288227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288227,0.000000,0.000000,0.250000,0,0);}
.m9e_c00187{transform:matrix(0.288333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288333,0.000000,0.000000,0.250000,0,0);}
.maf_c00187{transform:matrix(0.288899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288899,0.000000,0.000000,0.250000,0,0);}
.m53_c00187{transform:matrix(0.288974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288974,0.000000,0.000000,0.250000,0,0);}
.m36_c00187{transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);}
.m58_c00187{transform:matrix(0.289148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289148,0.000000,0.000000,0.250000,0,0);}
.m8c_c00187{transform:matrix(0.289772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289772,0.000000,0.000000,0.250000,0,0);}
.ma9_c00187{transform:matrix(0.289803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289803,0.000000,0.000000,0.250000,0,0);}
.m1c_c00187{transform:matrix(0.289966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289966,0.000000,0.000000,0.250000,0,0);}
.mb0_c00187{transform:matrix(0.291825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291825,0.000000,0.000000,0.250000,0,0);}
.mb8_c00187{transform:matrix(0.292438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292438,0.000000,0.000000,0.250000,0,0);}
.m86_c00187{transform:matrix(0.293903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293903,0.000000,0.000000,0.250000,0,0);}
.m63_c00187{transform:matrix(0.294474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294474,0.000000,0.000000,0.250000,0,0);}
.m9c_c00187{transform:matrix(0.294675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294675,0.000000,0.000000,0.250000,0,0);}
.m79_c00187{transform:matrix(0.295436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295436,0.000000,0.000000,0.250000,0,0);}
.m85_c00187{transform:matrix(0.295700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295700,0.000000,0.000000,0.250000,0,0);}
.m8_c00187{transform:matrix(0.296004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296004,0.000000,0.000000,0.250000,0,0);}
.m89_c00187{transform:matrix(0.296063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296063,0.000000,0.000000,0.250000,0,0);}
.m4e_c00187{transform:matrix(0.296715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296715,0.000000,0.000000,0.250000,0,0);}
.m13_c00187{transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);}
.ma_c00187{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m2b_c00187{transform:matrix(0.297355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297355,0.000000,0.000000,0.250000,0,0);}
.m3_c00187{transform:matrix(0.298143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298143,0.000000,0.000000,0.250000,0,0);}
.m1b_c00187{transform:matrix(0.298405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298405,0.000000,0.000000,0.250000,0,0);}
.mac_c00187{transform:matrix(0.298708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298708,0.000000,0.000000,0.250000,0,0);}
.m25_c00187{transform:matrix(0.299699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299699,0.000000,0.000000,0.250000,0,0);}
.m26_c00187{transform:matrix(0.299761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299761,0.000000,0.000000,0.250000,0,0);}
.m1d_c00187{transform:matrix(0.300181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300181,0.000000,0.000000,0.250000,0,0);}
.m4d_c00187{transform:matrix(0.300215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300215,0.000000,0.000000,0.250000,0,0);}
.m67_c00187{transform:matrix(0.301773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301773,0.000000,0.000000,0.250000,0,0);}
.m2f_c00187{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m50_c00187{transform:matrix(0.302504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302504,0.000000,0.000000,0.250000,0,0);}
.m8f_c00187{transform:matrix(0.303651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303651,0.000000,0.000000,0.250000,0,0);}
.mf_c00187{transform:matrix(0.303955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303955,0.000000,0.000000,0.250000,0,0);}
.m5a_c00187{transform:matrix(0.303979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303979,0.000000,0.000000,0.250000,0,0);}
.m61_c00187{transform:matrix(0.304302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304302,0.000000,0.000000,0.250000,0,0);}
.m75_c00187{transform:matrix(0.304805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304805,0.000000,0.000000,0.250000,0,0);}
.m5d_c00187{transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);}
.mb1_c00187{transform:matrix(0.305178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305178,0.000000,0.000000,0.250000,0,0);}
.m96_c00187{transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);}
.m76_c00187{transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);}
.m8d_c00187{transform:matrix(0.305693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305693,0.000000,0.000000,0.250000,0,0);}
.m12_c00187{transform:matrix(0.306147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306147,0.000000,0.000000,0.250000,0,0);}
.m56_c00187{transform:matrix(0.306547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306547,0.000000,0.000000,0.250000,0,0);}
.m7e_c00187{transform:matrix(0.307776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307776,0.000000,0.000000,0.250000,0,0);}
.m15_c00187{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m62_c00187{transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);}
.ma5_c00187{transform:matrix(0.310056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310056,0.000000,0.000000,0.250000,0,0);}
.m46_c00187{transform:matrix(0.310084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310084,0.000000,0.000000,0.250000,0,0);}
.me_c00187{transform:matrix(0.310115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310115,0.000000,0.000000,0.250000,0,0);}
.m7_c00187{transform:matrix(0.310426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310426,0.000000,0.000000,0.250000,0,0);}
.m16_c00187{transform:matrix(0.311073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311073,0.000000,0.000000,0.250000,0,0);}
.m21_c00187{transform:matrix(0.311149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311149,0.000000,0.000000,0.250000,0,0);}
.ma2_c00187{transform:matrix(0.311374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311374,0.000000,0.000000,0.250000,0,0);}
.m2c_c00187{transform:matrix(0.313001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313001,0.000000,0.000000,0.250000,0,0);}
.m70_c00187{transform:matrix(0.313510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313510,0.000000,0.000000,0.250000,0,0);}
.m65_c00187{transform:matrix(0.313583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313583,0.000000,0.000000,0.250000,0,0);}
.m81_c00187{transform:matrix(0.313615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313615,0.000000,0.000000,0.250000,0,0);}
.m5_c00187{transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);}
.m4c_c00187{transform:matrix(0.313920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313920,0.000000,0.000000,0.250000,0,0);}
.m8a_c00187{transform:matrix(0.314959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314959,0.000000,0.000000,0.250000,0,0);}
.m2_c00187{transform:matrix(0.315074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315074,0.000000,0.000000,0.250000,0,0);}
.mb6_c00187{transform:matrix(0.315146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315146,0.000000,0.000000,0.250000,0,0);}
.m3a_c00187{transform:matrix(0.315770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315770,0.000000,0.000000,0.250000,0,0);}
.ma1_c00187{transform:matrix(0.316480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316480,0.000000,0.000000,0.250000,0,0);}
.m6e_c00187{transform:matrix(0.316720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316720,0.000000,0.000000,0.250000,0,0);}
.mad_c00187{transform:matrix(0.317198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317198,0.000000,0.000000,0.250000,0,0);}
.m6d_c00187{transform:matrix(0.317369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317369,0.000000,0.000000,0.250000,0,0);}
.m7c_c00187{transform:matrix(0.318170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318170,0.000000,0.000000,0.250000,0,0);}
.m29_c00187{transform:matrix(0.318895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318895,0.000000,0.000000,0.250000,0,0);}
.m2d_c00187{transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);}
.m97_c00187{transform:matrix(0.320762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320762,0.000000,0.000000,0.250000,0,0);}
.m5f_c00187{transform:matrix(0.320963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320963,0.000000,0.000000,0.250000,0,0);}
.m84_c00187{transform:matrix(0.320966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320966,0.000000,0.000000,0.250000,0,0);}
.m41_c00187{transform:matrix(0.321349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321349,0.000000,0.000000,0.250000,0,0);}
.m18_c00187{transform:matrix(0.321537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321537,0.000000,0.000000,0.250000,0,0);}
.m6c_c00187{transform:matrix(0.322646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322646,0.000000,0.000000,0.250000,0,0);}
.m6f_c00187{transform:matrix(0.323057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323057,0.000000,0.000000,0.250000,0,0);}
.ma8_c00187{transform:matrix(0.323210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323210,0.000000,0.000000,0.250000,0,0);}
.m66_c00187{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.ma7_c00187{transform:matrix(0.324067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324067,0.000000,0.000000,0.250000,0,0);}
.m37_c00187{transform:matrix(0.324420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324420,0.000000,0.000000,0.250000,0,0);}
.m33_c00187{transform:matrix(0.324528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324528,0.000000,0.000000,0.250000,0,0);}
.m5b_c00187{transform:matrix(0.326313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326313,0.000000,0.000000,0.250000,0,0);}
.m71_c00187{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m3e_c00187{transform:matrix(0.327297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327297,0.000000,0.000000,0.250000,0,0);}
.m55_c00187{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.m40_c00187{transform:matrix(0.328769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328769,0.000000,0.000000,0.250000,0,0);}
.m49_c00187{transform:matrix(0.330299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330299,0.000000,0.000000,0.250000,0,0);}
.m78_c00187{transform:matrix(0.330517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330517,0.000000,0.000000,0.250000,0,0);}
.m43_c00187{transform:matrix(0.331134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331134,0.000000,0.000000,0.250000,0,0);}
.m44_c00187{transform:matrix(0.333021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333021,0.000000,0.000000,0.250000,0,0);}
.ma3_c00187{transform:matrix(0.335856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335856,0.000000,0.000000,0.250000,0,0);}
.m9_c00187{transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);}
.m31_c00187{transform:matrix(0.339419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339419,0.000000,0.000000,0.250000,0,0);}
.m68_c00187{transform:matrix(0.339821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339821,0.000000,0.000000,0.250000,0,0);}
.m92_c00187{transform:matrix(0.340823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340823,0.000000,0.000000,0.250000,0,0);}
.m3c_c00187{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.ma6_c00187{transform:matrix(0.343561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343561,0.000000,0.000000,0.250000,0,0);}
.m73_c00187{transform:matrix(0.346277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346277,0.000000,0.000000,0.250000,0,0);}
.m9b_c00187{transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);}
.m7b_c00187{transform:matrix(0.347756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347756,0.000000,0.000000,0.250000,0,0);}
.m28_c00187{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m34_c00187{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m2a_c00187{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);}
.m1_c00187{transform:matrix(0.380551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380551,0.000000,0.000000,0.250000,0,0);}
.m8b_c00187{transform:matrix(0.414699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414699,0.000000,0.000000,0.250000,0,0);}
.v0_c00187{vertical-align:0.000000px;}
.ls8_c00187{letter-spacing:-2.744280px;}
.ls9_c00187{letter-spacing:-2.375762px;}
.ls7_c00187{letter-spacing:-1.144757px;}
.ls6_c00187{letter-spacing:-0.972259px;}
.ls10_c00187{letter-spacing:-0.250906px;}
.ls5_c00187{letter-spacing:0.000000px;}
.lsb_c00187{letter-spacing:0.407722px;}
.lse_c00187{letter-spacing:0.533174px;}
.ls11_c00187{letter-spacing:1.082030px;}
.ls1_c00187{letter-spacing:1.685772px;}
.lsf_c00187{letter-spacing:3.191206px;}
.lsa_c00187{letter-spacing:3.340181px;}
.ls2_c00187{letter-spacing:3.348022px;}
.lsc_c00187{letter-spacing:3.653813px;}
.ls4_c00187{letter-spacing:3.920400px;}
.lsd_c00187{letter-spacing:3.999610px;}
.ls3_c00187{letter-spacing:4.197610px;}
.ls0_c00187{letter-spacing:10.114632px;}
.sc__c00187{text-shadow:none;}
.sc0_c00187{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00187{-webkit-text-stroke:0px transparent;}
.sc0_c00187{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00187{word-spacing:-23.255813px;}
.ws2_c00187{word-spacing:-22.950022px;}
.ws3_c00187{word-spacing:-22.793206px;}
.ws4_c00187{word-spacing:-20.684030px;}
.ws0_c00187{word-spacing:-19.602000px;}
.ws5_c00187{word-spacing:0.000000px;}
._8_c00187{margin-left:-6.978312px;}
._7_c00187{width:5.253336px;}
._6_c00187{width:7.213536px;}
._9_c00187{width:8.294774px;}
._4_c00187{width:9.408960px;}
._b_c00187{width:18.269856px;}
._3_c00187{width:20.855736px;}
._2_c00187{width:22.267872px;}
._a_c00187{width:27.600408px;}
._1_c00187{width:29.873448px;}
._0_c00187{width:31.097009px;}
._5_c00187{width:33.911460px;}
.fc0_c00187{color:transparent;}
.fs5_c00187{font-size:27.720000px;}
.fs2_c00187{font-size:76.032198px;}
.fs1_c00187{font-size:78.408000px;}
.fs4_c00187{font-size:79.992198px;}
.fs0_c00187{font-size:83.952198px;}
.fs3_c00187{font-size:91.872198px;}
.y0_c00187{bottom:0.000000px;}
.y1c_c00187{bottom:12.737385px;}
.y1_c00187{bottom:76.500000px;}
.y1b_c00187{bottom:146.387385px;}
.y1a_c00187{bottom:210.539385px;}
.y19_c00187{bottom:242.976735px;}
.y18_c00187{bottom:275.409135px;}
.y17_c00187{bottom:307.480185px;}
.y16_c00187{bottom:339.556185px;}
.y15_c00187{bottom:371.993535px;}
.y14_c00187{bottom:404.777385px;}
.y13_c00187{bottom:436.853385px;}
.y12_c00187{bottom:468.934335px;}
.y10_c00187{bottom:501.723135px;}
.y11_c00187{bottom:505.999935px;}
.yf_c00187{bottom:533.794185px;}
.ye_c00187{bottom:565.870185px;}
.yd_c00187{bottom:597.951135px;}
.yc_c00187{bottom:630.383535px;}
.yb_c00187{bottom:662.454585px;}
.ya_c00187{bottom:694.174185px;}
.y9_c00187{bottom:758.331135px;}
.y8_c00187{bottom:790.763535px;}
.y7_c00187{bottom:823.908735px;}
.y6_c00187{bottom:856.697535px;}
.y5_c00187{bottom:890.194185px;}
.y4_c00187{bottom:915.859935px;}
.y3_c00187{bottom:923.344335px;}
.y2_c00187{bottom:1072.670985px;}
.h7_c00187{height:28.911094px;}
.h3_c00187{height:76.953164px;}
.h6_c00187{height:78.507968px;}
.h4_c00187{height:79.299207px;}
.h2_c00187{height:82.394491px;}
.h5_c00187{height:95.819832px;}
.h1_c00187{height:1110.000000px;}
.h0_c00187{height:1263.000000px;}
.w1_c00187{width:733.500000px;}
.w0_c00187{width:892.500000px;}
.x0_c00187{left:0.000000px;}
.x3a_c00187{left:57.701685px;}
.x3_c00187{left:58.815435px;}
.x5d_c00187{left:60.018285px;}
.x56_c00187{left:61.696335px;}
.x1_c00187{left:79.500000px;}
.x37_c00187{left:80.709285px;}
.x4_c00187{left:91.703235px;}
.x45_c00187{left:102.642735px;}
.x31_c00187{left:112.230885px;}
.x21_c00187{left:114.191085px;}
.x30_c00187{left:124.001985px;}
.x19_c00187{left:135.119685px;}
.x12_c00187{left:137.010585px;}
.x46_c00187{left:145.920585px;}
.x22_c00187{left:146.960085px;}
.x38_c00187{left:157.340235px;}
.x5_c00187{left:168.715335px;}
.x32_c00187{left:179.070735px;}
.x3b_c00187{left:180.130035px;}
.x57_c00187{left:190.564635px;}
.x40_c00187{left:200.969535px;}
.x13_c00187{left:202.192185px;}
.x4f_c00187{left:212.453535px;}
.x33_c00187{left:213.592035px;}
.x6_c00187{left:223.115835px;}
.x23_c00187{left:226.412535px;}
.x2b_c00187{left:234.485985px;}
.x52_c00187{left:246.068985px;}
.x5e_c00187{left:248.826135px;}
.x14_c00187{left:257.483685px;}
.x7_c00187{left:268.339035px;}
.x24_c00187{left:278.837985px;}
.x8_c00187{left:290.628885px;}
.x9_c00187{left:301.672335px;}
.x48_c00187{left:303.251385px;}
.x5f_c00187{left:304.271085px;}
.x25_c00187{left:311.656485px;}
.x34_c00187{left:312.735585px;}
.x53_c00187{left:322.858335px;}
.x49_c00187{left:323.932485px;}
.x58_c00187{left:325.313535px;}
.x15_c00187{left:333.599835px;}
.x41_c00187{left:334.644285px;}
.x50_c00187{left:344.608635px;}
.x43_c00187{left:345.677835px;}
.x26_c00187{left:356.924235px;}
.xa_c00187{left:367.066785px;}
.x1a_c00187{left:379.035885px;}
.x4c_c00187{left:389.599185px;}
.x39_c00187{left:390.767385px;}
.x1b_c00187{left:400.731735px;}
.x3c_c00187{left:411.463335px;}
.x2c_c00187{left:422.145435px;}
.x16_c00187{left:433.772985px;}
.x1c_c00187{left:444.113535px;}
.x54_c00187{left:454.746135px;}
.x3d_c00187{left:456.092535px;}
.x2d_c00187{left:466.908285px;}
.x35_c00187{left:477.382485px;}
.x17_c00187{left:488.782335px;}
.x59_c00187{left:489.836685px;}
.x42_c00187{left:499.355535px;}
.xb_c00187{left:500.548485px;}
.x1d_c00187{left:510.488085px;}
.xc_c00187{left:522.264135px;}
.x5c_c00187{left:531.778035px;}
.x27_c00187{left:533.337285px;}
.x3e_c00187{left:543.836235px;}
.x28_c00187{left:553.142235px;}
.xd_c00187{left:554.369835px;}
.x11_c00187{left:557.958585px;}
.x1e_c00187{left:563.834235px;}
.x36_c00187{left:566.106285px;}
.x4a_c00187{left:575.560785px;}
.x29_c00187{left:576.818085px;}
.x18_c00187{left:587.480385px;}
.x2a_c00187{left:598.786185px;}
.x3f_c00187{left:608.384235px;}
.x1f_c00187{left:609.869235px;}
.x51_c00187{left:619.378185px;}
.x5a_c00187{left:620.467185px;}
.x47_c00187{left:622.501635px;}
.xe_c00187{left:632.287785px;}
.x44_c00187{left:642.410535px;}
.x2_c00187{left:643.420335px;}
.x4d_c00187{left:653.067885px;}
.x2e_c00187{left:654.146985px;}
.x55_c00187{left:663.923235px;}
.xf_c00187{left:665.041935px;}
.x20_c00187{left:675.199335px;}
.x5b_c00187{left:676.916985px;}
.x2f_c00187{left:684.653835px;}
.x10_c00187{left:697.607985px;}
.x4e_c00187{left:707.943585px;}
.x4b_c00187{left:720.793785px;}
@media print{
.v0_c00187{vertical-align:0.000000pt;}
.ls8_c00187{letter-spacing:-2.439360pt;}
.ls9_c00187{letter-spacing:-2.111789pt;}
.ls7_c00187{letter-spacing:-1.017562pt;}
.ls6_c00187{letter-spacing:-0.864230pt;}
.ls10_c00187{letter-spacing:-0.223027pt;}
.ls5_c00187{letter-spacing:0.000000pt;}
.lsb_c00187{letter-spacing:0.362419pt;}
.lse_c00187{letter-spacing:0.473933pt;}
.ls11_c00187{letter-spacing:0.961805pt;}
.ls1_c00187{letter-spacing:1.498464pt;}
.lsf_c00187{letter-spacing:2.836627pt;}
.lsa_c00187{letter-spacing:2.969050pt;}
.ls2_c00187{letter-spacing:2.976019pt;}
.lsc_c00187{letter-spacing:3.247834pt;}
.ls4_c00187{letter-spacing:3.484800pt;}
.lsd_c00187{letter-spacing:3.555209pt;}
.ls3_c00187{letter-spacing:3.731209pt;}
.ls0_c00187{letter-spacing:8.990784pt;}
.ws1_c00187{word-spacing:-20.671834pt;}
.ws2_c00187{word-spacing:-20.400019pt;}
.ws3_c00187{word-spacing:-20.260627pt;}
.ws4_c00187{word-spacing:-18.385805pt;}
.ws0_c00187{word-spacing:-17.424000pt;}
.ws5_c00187{word-spacing:0.000000pt;}
._8_c00187{margin-left:-6.202944pt;}
._7_c00187{width:4.669632pt;}
._6_c00187{width:6.412032pt;}
._9_c00187{width:7.373133pt;}
._4_c00187{width:8.363520pt;}
._b_c00187{width:16.239872pt;}
._3_c00187{width:18.538432pt;}
._2_c00187{width:19.793664pt;}
._a_c00187{width:24.533696pt;}
._1_c00187{width:26.554176pt;}
._0_c00187{width:27.641786pt;}
._5_c00187{width:30.143520pt;}
.fs5_c00187{font-size:24.640000pt;}
.fs2_c00187{font-size:67.584176pt;}
.fs1_c00187{font-size:69.696000pt;}
.fs4_c00187{font-size:71.104176pt;}
.fs0_c00187{font-size:74.624176pt;}
.fs3_c00187{font-size:81.664176pt;}
.y0_c00187{bottom:0.000000pt;}
.y1c_c00187{bottom:11.322120pt;}
.y1_c00187{bottom:68.000000pt;}
.y1b_c00187{bottom:130.122120pt;}
.y1a_c00187{bottom:187.146120pt;}
.y19_c00187{bottom:215.979320pt;}
.y18_c00187{bottom:244.808120pt;}
.y17_c00187{bottom:273.315720pt;}
.y16_c00187{bottom:301.827720pt;}
.y15_c00187{bottom:330.660920pt;}
.y14_c00187{bottom:359.802120pt;}
.y13_c00187{bottom:388.314120pt;}
.y12_c00187{bottom:416.830520pt;}
.y10_c00187{bottom:445.976120pt;}
.y11_c00187{bottom:449.777720pt;}
.yf_c00187{bottom:474.483720pt;}
.ye_c00187{bottom:502.995720pt;}
.yd_c00187{bottom:531.512120pt;}
.yc_c00187{bottom:560.340920pt;}
.yb_c00187{bottom:588.848520pt;}
.ya_c00187{bottom:617.043720pt;}
.y9_c00187{bottom:674.072120pt;}
.y8_c00187{bottom:702.900920pt;}
.y7_c00187{bottom:732.363320pt;}
.y6_c00187{bottom:761.508920pt;}
.y5_c00187{bottom:791.283720pt;}
.y4_c00187{bottom:814.097720pt;}
.y3_c00187{bottom:820.750520pt;}
.y2_c00187{bottom:953.485320pt;}
.h7_c00187{height:25.698750pt;}
.h3_c00187{height:68.402813pt;}
.h6_c00187{height:69.784860pt;}
.h4_c00187{height:70.488184pt;}
.h2_c00187{height:73.239548pt;}
.h5_c00187{height:85.173184pt;}
.h1_c00187{height:986.666667pt;}
.h0_c00187{height:1122.666667pt;}
.w1_c00187{width:652.000000pt;}
.w0_c00187{width:793.333333pt;}
.x0_c00187{left:0.000000pt;}
.x3a_c00187{left:51.290387pt;}
.x3_c00187{left:52.280387pt;}
.x5d_c00187{left:53.349587pt;}
.x56_c00187{left:54.841187pt;}
.x1_c00187{left:70.666667pt;}
.x37_c00187{left:71.741587pt;}
.x4_c00187{left:81.513987pt;}
.x45_c00187{left:91.237987pt;}
.x31_c00187{left:99.760787pt;}
.x21_c00187{left:101.503187pt;}
.x30_c00187{left:110.223987pt;}
.x19_c00187{left:120.106387pt;}
.x12_c00187{left:121.787187pt;}
.x46_c00187{left:129.707187pt;}
.x22_c00187{left:130.631187pt;}
.x38_c00187{left:139.857987pt;}
.x5_c00187{left:149.969187pt;}
.x32_c00187{left:159.173987pt;}
.x3b_c00187{left:160.115587pt;}
.x57_c00187{left:169.390787pt;}
.x40_c00187{left:178.639587pt;}
.x13_c00187{left:179.726387pt;}
.x4f_c00187{left:188.847587pt;}
.x33_c00187{left:189.859587pt;}
.x6_c00187{left:198.325187pt;}
.x23_c00187{left:201.255587pt;}
.x2b_c00187{left:208.431987pt;}
.x52_c00187{left:218.727987pt;}
.x5e_c00187{left:221.178787pt;}
.x14_c00187{left:228.874387pt;}
.x7_c00187{left:238.523587pt;}
.x24_c00187{left:247.855987pt;}
.x8_c00187{left:258.336787pt;}
.x9_c00187{left:268.153187pt;}
.x48_c00187{left:269.556787pt;}
.x5f_c00187{left:270.463187pt;}
.x25_c00187{left:277.027987pt;}
.x34_c00187{left:277.987187pt;}
.x53_c00187{left:286.985187pt;}
.x49_c00187{left:287.939987pt;}
.x58_c00187{left:289.167587pt;}
.x15_c00187{left:296.533187pt;}
.x41_c00187{left:297.461587pt;}
.x50_c00187{left:306.318787pt;}
.x43_c00187{left:307.269187pt;}
.x26_c00187{left:317.265987pt;}
.xa_c00187{left:326.281587pt;}
.x1a_c00187{left:336.920787pt;}
.x4c_c00187{left:346.310387pt;}
.x39_c00187{left:347.348787pt;}
.x1b_c00187{left:356.205987pt;}
.x3c_c00187{left:365.745187pt;}
.x2c_c00187{left:375.240387pt;}
.x16_c00187{left:385.575987pt;}
.x1c_c00187{left:394.767587pt;}
.x54_c00187{left:404.218787pt;}
.x3d_c00187{left:405.415587pt;}
.x2d_c00187{left:415.029587pt;}
.x35_c00187{left:424.339987pt;}
.x17_c00187{left:434.473187pt;}
.x59_c00187{left:435.410387pt;}
.x42_c00187{left:443.871587pt;}
.xb_c00187{left:444.931987pt;}
.x1d_c00187{left:453.767187pt;}
.xc_c00187{left:464.234787pt;}
.x5c_c00187{left:472.691587pt;}
.x27_c00187{left:474.077587pt;}
.x3e_c00187{left:483.409987pt;}
.x28_c00187{left:491.681987pt;}
.xd_c00187{left:492.773187pt;}
.x11_c00187{left:495.963187pt;}
.x1e_c00187{left:501.185987pt;}
.x36_c00187{left:503.205587pt;}
.x4a_c00187{left:511.609587pt;}
.x29_c00187{left:512.727187pt;}
.x18_c00187{left:522.204787pt;}
.x2a_c00187{left:532.254387pt;}
.x3f_c00187{left:540.785987pt;}
.x1f_c00187{left:542.105987pt;}
.x51_c00187{left:550.558387pt;}
.x5a_c00187{left:551.526387pt;}
.x47_c00187{left:553.334787pt;}
.xe_c00187{left:562.033587pt;}
.x44_c00187{left:571.031587pt;}
.x2_c00187{left:571.929187pt;}
.x4d_c00187{left:580.504787pt;}
.x2e_c00187{left:581.463987pt;}
.x55_c00187{left:590.153987pt;}
.xf_c00187{left:591.148387pt;}
.x20_c00187{left:600.177187pt;}
.x5b_c00187{left:601.703987pt;}
.x2f_c00187{left:608.581187pt;}
.x10_c00187{left:620.095987pt;}
.x4e_c00187{left:629.283187pt;}
.x4b_c00187{left:640.705587pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1a056145cf1c231cb5a9a538.woff2')format("woff");}.ff1_c00188{font-family:ff1_c00188;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00188;src:url('chunks/assets/font_9059868b73045b30ec0aec79.woff2')format("woff");}.ff2_c00188{font-family:ff2_c00188;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00188;src:url('chunks/assets/font_f3e73e55b76facb85b47b514.woff2')format("woff");}.ff3_c00188{font-family:ff3_c00188;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00188;src:url('chunks/assets/font_08cb79062079c858a4e5948b.woff2')format("woff");}.ff4_c00188{font-family:ff4_c00188;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00188;src:url('chunks/assets/font_6054b83b9d24b4fd15ec3189.woff2')format("woff");}.ff5_c00188{font-family:ff5_c00188;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00188;src:url('chunks/assets/font_eaa3530cf8642f61c2e3cdaa.woff2')format("woff");}.ff6_c00188{font-family:ff6_c00188;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m32_c00188{transform:matrix(0.085714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085714,0.000000,0.000000,0.250000,0,0);}
.m42_c00188{transform:matrix(0.097561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097561,0.000000,0.000000,0.250000,0,0);}
.m24_c00188{transform:matrix(0.099182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099182,0.000000,0.000000,0.250000,0,0);}
.m41_c00188{transform:matrix(0.134146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134146,0.000000,0.000000,0.250000,0,0);}
.m35_c00188{transform:matrix(0.136905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136905,0.000000,0.000000,0.250000,0,0);}
.m27_c00188{transform:matrix(0.152027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152027,0.000000,0.000000,0.250000,0,0);}
.m46_c00188{transform:matrix(0.152439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152439,0.000000,0.000000,0.250000,0,0);}
.m44_c00188{transform:matrix(0.164634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164634,0.000000,0.000000,0.250000,0,0);}
.m43_c00188{transform:matrix(0.173781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173781,0.000000,0.000000,0.250000,0,0);}
.m4d_c00188{transform:matrix(0.174999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174999,0.000000,0.000000,0.250000,0,0);}
.m15_c00188{transform:matrix(0.176190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176190,0.000000,0.000000,0.250000,0,0);}
.m4c_c00188{transform:matrix(0.178125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178125,0.000000,0.000000,0.250000,0,0);}
.m34_c00188{transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);}
.m4f_c00188{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00188{transform:matrix(0.184375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184375,0.000000,0.000000,0.250000,0,0);}
.m45_c00188{transform:matrix(0.189025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189025,0.000000,0.000000,0.250000,0,0);}
.m26_c00188{transform:matrix(0.189188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189188,0.000000,0.000000,0.250000,0,0);}
.m11_c00188{transform:matrix(0.195003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195003,0.000000,0.000000,0.250000,0,0);}
.m50_c00188{transform:matrix(0.196759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196759,0.000000,0.000000,0.250000,0,0);}
.m29_c00188{transform:matrix(0.202702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202702,0.000000,0.000000,0.250000,0,0);}
.m53_c00188{transform:matrix(0.205415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205415,0.000000,0.000000,0.250000,0,0);}
.m30_c00188{transform:matrix(0.209524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209524,0.000000,0.000000,0.250000,0,0);}
.m31_c00188{transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);}
.m2d_c00188{transform:matrix(0.215534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215534,0.000000,0.000000,0.250000,0,0);}
.m16_c00188{transform:matrix(0.215685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215685,0.000000,0.000000,0.250000,0,0);}
.m4a_c00188{transform:matrix(0.222600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222600,0.000000,0.000000,0.250000,0,0);}
.m2a_c00188{transform:matrix(0.222973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222973,0.000000,0.000000,0.250000,0,0);}
.m47_c00188{transform:matrix(0.225610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225610,0.000000,0.000000,0.250000,0,0);}
.m38_c00188{transform:matrix(0.237318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237318,0.000000,0.000000,0.250000,0,0);}
.m3d_c00188{transform:matrix(0.237602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237602,0.000000,0.000000,0.250000,0,0);}
.m1_c00188{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00188{transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);}
.m28_c00188{transform:matrix(0.258445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258445,0.000000,0.000000,0.250000,0,0);}
.mf_c00188{transform:matrix(0.259282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259282,0.000000,0.000000,0.250000,0,0);}
.m13_c00188{transform:matrix(0.260620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260620,0.000000,0.000000,0.250000,0,0);}
.m1d_c00188{transform:matrix(0.260991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260991,0.000000,0.000000,0.250000,0,0);}
.m2c_c00188{transform:matrix(0.261427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261427,0.000000,0.000000,0.250000,0,0);}
.m6_c00188{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m4_c00188{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m3e_c00188{transform:matrix(0.266381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266381,0.000000,0.000000,0.250000,0,0);}
.m21_c00188{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m3b_c00188{transform:matrix(0.269525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269525,0.000000,0.000000,0.250000,0,0);}
.m57_c00188{transform:matrix(0.270180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270180,0.000000,0.000000,0.250000,0,0);}
.m1b_c00188{transform:matrix(0.274328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274328,0.000000,0.000000,0.250000,0,0);}
.m3f_c00188{transform:matrix(0.275814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275814,0.000000,0.000000,0.250000,0,0);}
.m17_c00188{transform:matrix(0.277088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277088,0.000000,0.000000,0.250000,0,0);}
.m3a_c00188{transform:matrix(0.277537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277537,0.000000,0.000000,0.250000,0,0);}
.m52_c00188{transform:matrix(0.278263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278263,0.000000,0.000000,0.250000,0,0);}
.mc_c00188{transform:matrix(0.279246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279246,0.000000,0.000000,0.250000,0,0);}
.m48_c00188{transform:matrix(0.280159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280159,0.000000,0.000000,0.250000,0,0);}
.m49_c00188{transform:matrix(0.280783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280783,0.000000,0.000000,0.250000,0,0);}
.m2e_c00188{transform:matrix(0.285798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285798,0.000000,0.000000,0.250000,0,0);}
.m7_c00188{transform:matrix(0.287458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287458,0.000000,0.000000,0.250000,0,0);}
.m10_c00188{transform:matrix(0.289731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289731,0.000000,0.000000,0.250000,0,0);}
.m14_c00188{transform:matrix(0.292592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292592,0.000000,0.000000,0.250000,0,0);}
.m12_c00188{transform:matrix(0.292851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292851,0.000000,0.000000,0.250000,0,0);}
.m4b_c00188{transform:matrix(0.292890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292890,0.000000,0.000000,0.250000,0,0);}
.m18_c00188{transform:matrix(0.294145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294145,0.000000,0.000000,0.250000,0,0);}
.m2_c00188{transform:matrix(0.295359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295359,0.000000,0.000000,0.250000,0,0);}
.ma_c00188{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m2f_c00188{transform:matrix(0.300736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300736,0.000000,0.000000,0.250000,0,0);}
.m0_c00188{transform:matrix(0.302330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302330,0.000000,0.000000,0.250000,0,0);}
.m1e_c00188{transform:matrix(0.304295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304295,0.000000,0.000000,0.250000,0,0);}
.m3c_c00188{transform:matrix(0.306871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306871,0.000000,0.000000,0.250000,0,0);}
.m1c_c00188{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.me_c00188{transform:matrix(0.311728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311728,0.000000,0.000000,0.250000,0,0);}
.m5_c00188{transform:matrix(0.311922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311922,0.000000,0.000000,0.250000,0,0);}
.m51_c00188{transform:matrix(0.313958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313958,0.000000,0.000000,0.250000,0,0);}
.mb_c00188{transform:matrix(0.315960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315960,0.000000,0.000000,0.250000,0,0);}
.m39_c00188{transform:matrix(0.316232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316232,0.000000,0.000000,0.250000,0,0);}
.m33_c00188{transform:matrix(0.319999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319999,0.000000,0.000000,0.250000,0,0);}
.m36_c00188{transform:matrix(0.320297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320297,0.000000,0.000000,0.250000,0,0);}
.m2b_c00188{transform:matrix(0.321729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321729,0.000000,0.000000,0.250000,0,0);}
.m3_c00188{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.m54_c00188{transform:matrix(0.325346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325346,0.000000,0.000000,0.250000,0,0);}
.m25_c00188{transform:matrix(0.327746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327746,0.000000,0.000000,0.250000,0,0);}
.m55_c00188{transform:matrix(0.330843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330843,0.000000,0.000000,0.250000,0,0);}
.md_c00188{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m1f_c00188{transform:matrix(0.335935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335935,0.000000,0.000000,0.250000,0,0);}
.m37_c00188{transform:matrix(0.342985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342985,0.000000,0.000000,0.250000,0,0);}
.m22_c00188{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m8_c00188{transform:matrix(0.354408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354408,0.000000,0.000000,0.250000,0,0);}
.m19_c00188{transform:matrix(0.368741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368741,0.000000,0.000000,0.250000,0,0);}
.m9_c00188{transform:matrix(0.372071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372071,0.000000,0.000000,0.250000,0,0);}
.m23_c00188{transform:matrix(0.372636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372636,0.000000,0.000000,0.250000,0,0);}
.m40_c00188{transform:matrix(0.385852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385852,0.000000,0.000000,0.250000,0,0);}
.m20_c00188{transform:matrix(0.401619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401619,0.000000,0.000000,0.250000,0,0);}
.m56_c00188{transform:matrix(0.402151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402151,0.000000,0.000000,0.250000,0,0);}
.v1_c00188{vertical-align:-18.513000px;}
.v0_c00188{vertical-align:0.000000px;}
.v2_c00188{vertical-align:18.513000px;}
.ls7_c00188{letter-spacing:-3.035340px;}
.ls9_c00188{letter-spacing:-2.744280px;}
.ls14_c00188{letter-spacing:-2.439367px;}
.lsb_c00188{letter-spacing:-1.764180px;}
.ls4_c00188{letter-spacing:0.000000px;}
.ls10_c00188{letter-spacing:0.274428px;}
.ls1_c00188{letter-spacing:1.168200px;}
.ls0_c00188{letter-spacing:2.422807px;}
.ls2_c00188{letter-spacing:3.426430px;}
.ls16_c00188{letter-spacing:3.465000px;}
.ls15_c00188{letter-spacing:3.484810px;}
.lsc_c00188{letter-spacing:3.722400px;}
.lsa_c00188{letter-spacing:3.742200px;}
.lsf_c00188{letter-spacing:3.781810px;}
.ls5_c00188{letter-spacing:3.920400px;}
.ls3_c00188{letter-spacing:3.979810px;}
.ls6_c00188{letter-spacing:4.336200px;}
.lse_c00188{letter-spacing:49.896198px;}
.ls13_c00188{letter-spacing:51.321798px;}
.lsd_c00188{letter-spacing:52.747398px;}
.ls12_c00188{letter-spacing:57.024198px;}
.ls11_c00188{letter-spacing:58.449798px;}
.ls8_c00188{letter-spacing:59.875398px;}
.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;}
}
.ws5_c00188{word-spacing:-23.028430px;}
.ws1_c00188{word-spacing:-22.024807px;}
.ws4_c00188{word-spacing:-19.876428px;}
.ws0_c00188{word-spacing:-19.602000px;}
.ws2_c00188{word-spacing:-3.606768px;}
.ws6_c00188{word-spacing:0.000000px;}
.ws3_c00188{word-spacing:1.568556px;}
._2_c00188{margin-left:-11.761200px;}
._f_c00188{margin-left:-8.837037px;}
._7_c00188{margin-left:-4.312836px;}
._8_c00188{margin-left:-2.399285px;}
._c_c00188{width:2.187583px;}
._0_c00188{width:4.854861px;}
._d_c00188{width:6.429456px;}
._3_c00188{width:7.761600px;}
._9_c00188{width:9.173736px;}
._5_c00188{width:10.507068px;}
._4_c00188{width:21.798216px;}
._b_c00188{width:29.205000px;}
._a_c00188{width:30.610800px;}
._1_c00188{width:37.634256px;}
._6_c00188{width:40.013028px;}
._e_c00188{width:51.118056px;}
.fc0_c00188{color:transparent;}
.fs1_c00188{font-size:26.928000px;}
.fsf_c00188{font-size:37.224000px;}
.fs8_c00188{font-size:46.332000px;}
.fsb_c00188{font-size:49.896198px;}
.fs11_c00188{font-size:51.321798px;}
.fs9_c00188{font-size:52.747398px;}
.fs10_c00188{font-size:57.024198px;}
.fse_c00188{font-size:58.449798px;}
.fs5_c00188{font-size:59.875398px;}
.fsd_c00188{font-size:62.766198px;}
.fs3_c00188{font-size:64.548000px;}
.fs13_c00188{font-size:69.300000px;}
.fs12_c00188{font-size:69.696198px;}
.fsa_c00188{font-size:72.864000px;}
.fs7_c00188{font-size:74.448000px;}
.fs6_c00188{font-size:74.844000px;}
.fsc_c00188{font-size:75.636198px;}
.fs2_c00188{font-size:78.408000px;}
.fs0_c00188{font-size:79.596198px;}
.fs4_c00188{font-size:86.724000px;}
.y0_c00188{bottom:0.000000px;}
.y1_c00188{bottom:76.500000px;}
.y17_c00188{bottom:277.547535px;}
.y16_c00188{bottom:306.415935px;}
.y15_c00188{bottom:309.623535px;}
.y14_c00188{bottom:342.055935px;}
.y9_c00188{bottom:352.391535px;}
.y13_c00188{bottom:374.483385px;}
.y12_c00188{bottom:406.920735px;}
.y8_c00188{bottom:437.566185px;}
.y11_c00188{bottom:438.278985px;}
.y10_c00188{bottom:599.376735px;}
.yf_c00188{bottom:631.091385px;}
.ye_c00188{bottom:663.172335px;}
.yd_c00188{bottom:663.528735px;}
.y7_c00188{bottom:695.243385px;}
.yc_c00188{bottom:727.680735px;}
.yb_c00188{bottom:759.395385px;}
.y6_c00188{bottom:791.119935px;}
.ya_c00188{bottom:791.471385px;}
.y5_c00188{bottom:888.412185px;}
.y4_c00188{bottom:920.844585px;}
.y3_c00188{bottom:1062.691785px;}
.y2_c00188{bottom:1070.888985px;}
.h3_c00188{height:28.085063px;}
.hc_c00188{height:33.230868px;}
.h10_c00188{height:34.180317px;}
.ha_c00188{height:35.129767px;}
.hf_c00188{height:37.978116px;}
.he_c00188{height:38.927565px;}
.h6_c00188{height:39.877015px;}
.h9_c00188{height:48.322828px;}
.h11_c00188{height:68.403007px;}
.h12_c00188{height:69.841406px;}
.hb_c00188{height:71.512031px;}
.h8_c00188{height:73.066641px;}
.h7_c00188{height:73.455293px;}
.hd_c00188{height:74.232792px;}
.h4_c00188{height:76.953164px;}
.h2_c00188{height:78.119315px;}
.h5_c00188{height:85.114863px;}
.h1_c00188{height:1110.000000px;}
.h0_c00188{height:1263.000000px;}
.w1_c00188{width:775.500000px;}
.w0_c00188{width:892.500000px;}
.x0_c00188{left:0.000000px;}
.x1_c00188{left:58.500000px;}
.x15_c00188{left:72.108285px;}
.x5_c00188{left:74.271435px;}
.x10_c00188{left:106.693935px;}
.x16_c00188{left:127.394835px;}
.x19_c00188{left:138.443235px;}
.x17_c00188{left:163.856535px;}
.x18_c00188{left:193.625835px;}
.x11_c00188{left:205.312785px;}
.x6_c00188{left:238.344135px;}
.x12_c00188{left:272.345685px;}
.x7_c00188{left:282.389235px;}
.x35_c00188{left:303.654435px;}
.x13_c00188{left:304.708785px;}
.x47_c00188{left:314.687985px;}
.x27_c00188{left:317.544135px;}
.x33_c00188{left:324.979035px;}
.x8_c00188{left:326.246235px;}
.x1a_c00188{left:348.427185px;}
.x38_c00188{left:351.159585px;}
.x3f_c00188{left:358.441035px;}
.x44_c00188{left:359.866635px;}
.x1d_c00188{left:368.801385px;}
.x9_c00188{left:370.642785px;}
.x31_c00188{left:372.429735px;}
.x45_c00188{left:376.577835px;}
.x4_c00188{left:379.008285px;}
.x1b_c00188{left:380.923935px;}
.x1e_c00188{left:402.669285px;}
.x22_c00188{left:406.045185px;}
.x2b_c00188{left:413.326635px;}
.x14_c00188{left:415.326435px;}
.x28_c00188{left:424.820535px;}
.x29_c00188{left:436.576785px;}
.xa_c00188{left:447.065835px;}
.x2c_c00188{left:457.243035px;}
.x39_c00188{left:463.668135px;}
.x34_c00188{left:469.825935px;}
.x3a_c00188{left:474.716535px;}
.xb_c00188{left:479.300235px;}
.x3b_c00188{left:480.413985px;}
.x40_c00188{left:490.655535px;}
.x42_c00188{left:501.436635px;}
.xc_c00188{left:502.471185px;}
.x41_c00188{left:505.010535px;}
.x23_c00188{left:514.029435px;}
.x36_c00188{left:524.572935px;}
.x46_c00188{left:534.136335px;}
.x1f_c00188{left:535.205535px;}
.xd_c00188{left:546.075735px;}
.x2d_c00188{left:548.456685px;}
.x32_c00188{left:557.351835px;}
.x20_c00188{left:568.355685px;}
.x3c_c00188{left:571.068285px;}
.x2e_c00188{left:580.205985px;}
.x37_c00188{left:589.635735px;}
.x1c_c00188{left:590.690085px;}
.xe_c00188{left:600.491085px;}
.x21_c00188{left:601.832535px;}
.x2f_c00188{left:611.574135px;}
.x24_c00188{left:617.578485px;}
.x25_c00188{left:622.879935px;}
.x30_c00188{left:625.825185px;}
.x3d_c00188{left:633.849135px;}
.x26_c00188{left:635.165835px;}
.x3e_c00188{left:643.947135px;}
.x2a_c00188{left:645.041085px;}
.x2_c00188{left:656.539935px;}
.x43_c00188{left:657.871485px;}
.x3_c00188{left:678.567435px;}
.xf_c00188{left:700.104885px;}
@media print{
.v1_c00188{vertical-align:-16.456000pt;}
.v0_c00188{vertical-align:0.000000pt;}
.v2_c00188{vertical-align:16.456000pt;}
.ls7_c00188{letter-spacing:-2.698080pt;}
.ls9_c00188{letter-spacing:-2.439360pt;}
.ls14_c00188{letter-spacing:-2.168326pt;}
.lsb_c00188{letter-spacing:-1.568160pt;}
.ls4_c00188{letter-spacing:0.000000pt;}
.ls10_c00188{letter-spacing:0.243936pt;}
.ls1_c00188{letter-spacing:1.038400pt;}
.ls0_c00188{letter-spacing:2.153606pt;}
.ls2_c00188{letter-spacing:3.045715pt;}
.ls16_c00188{letter-spacing:3.080000pt;}
.ls15_c00188{letter-spacing:3.097609pt;}
.lsc_c00188{letter-spacing:3.308800pt;}
.lsa_c00188{letter-spacing:3.326400pt;}
.lsf_c00188{letter-spacing:3.361609pt;}
.ls5_c00188{letter-spacing:3.484800pt;}
.ls3_c00188{letter-spacing:3.537609pt;}
.ls6_c00188{letter-spacing:3.854400pt;}
.lse_c00188{letter-spacing:44.352176pt;}
.ls13_c00188{letter-spacing:45.619376pt;}
.lsd_c00188{letter-spacing:46.886576pt;}
.ls12_c00188{letter-spacing:50.688176pt;}
.ls11_c00188{letter-spacing:51.955376pt;}
.ls8_c00188{letter-spacing:53.222576pt;}
.ws5_c00188{word-spacing:-20.469715pt;}
.ws1_c00188{word-spacing:-19.577606pt;}
.ws4_c00188{word-spacing:-17.667936pt;}
.ws0_c00188{word-spacing:-17.424000pt;}
.ws2_c00188{word-spacing:-3.206016pt;}
.ws6_c00188{word-spacing:0.000000pt;}
.ws3_c00188{word-spacing:1.394272pt;}
._2_c00188{margin-left:-10.454400pt;}
._f_c00188{margin-left:-7.855144pt;}
._7_c00188{margin-left:-3.833632pt;}
._8_c00188{margin-left:-2.132698pt;}
._c_c00188{width:1.944518pt;}
._0_c00188{width:4.315432pt;}
._d_c00188{width:5.715072pt;}
._3_c00188{width:6.899200pt;}
._9_c00188{width:8.154432pt;}
._5_c00188{width:9.339616pt;}
._4_c00188{width:19.376192pt;}
._b_c00188{width:25.960000pt;}
._a_c00188{width:27.209600pt;}
._1_c00188{width:33.452672pt;}
._6_c00188{width:35.567136pt;}
._e_c00188{width:45.438272pt;}
.fs1_c00188{font-size:23.936000pt;}
.fsf_c00188{font-size:33.088000pt;}
.fs8_c00188{font-size:41.184000pt;}
.fsb_c00188{font-size:44.352176pt;}
.fs11_c00188{font-size:45.619376pt;}
.fs9_c00188{font-size:46.886576pt;}
.fs10_c00188{font-size:50.688176pt;}
.fse_c00188{font-size:51.955376pt;}
.fs5_c00188{font-size:53.222576pt;}
.fsd_c00188{font-size:55.792176pt;}
.fs3_c00188{font-size:57.376000pt;}
.fs13_c00188{font-size:61.600000pt;}
.fs12_c00188{font-size:61.952176pt;}
.fsa_c00188{font-size:64.768000pt;}
.fs7_c00188{font-size:66.176000pt;}
.fs6_c00188{font-size:66.528000pt;}
.fsc_c00188{font-size:67.232176pt;}
.fs2_c00188{font-size:69.696000pt;}
.fs0_c00188{font-size:70.752176pt;}
.fs4_c00188{font-size:77.088000pt;}
.y0_c00188{bottom:0.000000pt;}
.y1_c00188{bottom:68.000000pt;}
.y17_c00188{bottom:246.708920pt;}
.y16_c00188{bottom:272.369720pt;}
.y15_c00188{bottom:275.220920pt;}
.y14_c00188{bottom:304.049720pt;}
.y9_c00188{bottom:313.236920pt;}
.y13_c00188{bottom:332.874120pt;}
.y12_c00188{bottom:361.707320pt;}
.y8_c00188{bottom:388.947720pt;}
.y11_c00188{bottom:389.581320pt;}
.y10_c00188{bottom:532.779320pt;}
.yf_c00188{bottom:560.970120pt;}
.ye_c00188{bottom:589.486520pt;}
.yd_c00188{bottom:589.803320pt;}
.y7_c00188{bottom:617.994120pt;}
.yc_c00188{bottom:646.827320pt;}
.yb_c00188{bottom:675.018120pt;}
.y6_c00188{bottom:703.217720pt;}
.ya_c00188{bottom:703.530120pt;}
.y5_c00188{bottom:789.699720pt;}
.y4_c00188{bottom:818.528520pt;}
.y3_c00188{bottom:944.614920pt;}
.y2_c00188{bottom:951.901320pt;}
.h3_c00188{height:24.964500pt;}
.hc_c00188{height:29.538549pt;}
.h10_c00188{height:30.382504pt;}
.ha_c00188{height:31.226460pt;}
.hf_c00188{height:33.758325pt;}
.he_c00188{height:34.602280pt;}
.h6_c00188{height:35.446236pt;}
.h9_c00188{height:42.953625pt;}
.h11_c00188{height:60.802673pt;}
.h12_c00188{height:62.081250pt;}
.hb_c00188{height:63.566250pt;}
.h8_c00188{height:64.948125pt;}
.h7_c00188{height:65.293594pt;}
.hd_c00188{height:65.984704pt;}
.h4_c00188{height:68.402813pt;}
.h2_c00188{height:69.439391pt;}
.h5_c00188{height:75.657656pt;}
.h1_c00188{height:986.666667pt;}
.h0_c00188{height:1122.666667pt;}
.w1_c00188{width:689.333333pt;}
.w0_c00188{width:793.333333pt;}
.x0_c00188{left:0.000000pt;}
.x1_c00188{left:52.000000pt;}
.x15_c00188{left:64.096253pt;}
.x5_c00188{left:66.019053pt;}
.x10_c00188{left:94.839053pt;}
.x16_c00188{left:113.239853pt;}
.x19_c00188{left:123.060653pt;}
.x17_c00188{left:145.650253pt;}
.x18_c00188{left:172.111853pt;}
.x11_c00188{left:182.500253pt;}
.x6_c00188{left:211.861453pt;}
.x12_c00188{left:242.085053pt;}
.x7_c00188{left:251.012653pt;}
.x35_c00188{left:269.915053pt;}
.x13_c00188{left:270.852253pt;}
.x47_c00188{left:279.722653pt;}
.x27_c00188{left:282.261453pt;}
.x33_c00188{left:288.870253pt;}
.x8_c00188{left:289.996653pt;}
.x1a_c00188{left:309.713053pt;}
.x38_c00188{left:312.141853pt;}
.x3f_c00188{left:318.614253pt;}
.x44_c00188{left:319.881453pt;}
.x1d_c00188{left:327.823453pt;}
.x9_c00188{left:329.460253pt;}
.x31_c00188{left:331.048653pt;}
.x45_c00188{left:334.735853pt;}
.x4_c00188{left:336.896253pt;}
.x1b_c00188{left:338.599053pt;}
.x1e_c00188{left:357.928253pt;}
.x22_c00188{left:360.929053pt;}
.x2b_c00188{left:367.401453pt;}
.x14_c00188{left:369.179053pt;}
.x28_c00188{left:377.618253pt;}
.x29_c00188{left:388.068253pt;}
.xa_c00188{left:397.391853pt;}
.x2c_c00188{left:406.438253pt;}
.x39_c00188{left:412.149453pt;}
.x34_c00188{left:417.623053pt;}
.x3a_c00188{left:421.970253pt;}
.xb_c00188{left:426.044653pt;}
.x3b_c00188{left:427.034653pt;}
.x40_c00188{left:436.138253pt;}
.x42_c00188{left:445.721453pt;}
.xc_c00188{left:446.641053pt;}
.x41_c00188{left:448.898253pt;}
.x23_c00188{left:456.915053pt;}
.x36_c00188{left:466.287053pt;}
.x46_c00188{left:474.787853pt;}
.x1f_c00188{left:475.738253pt;}
.xd_c00188{left:485.400653pt;}
.x2d_c00188{left:487.517053pt;}
.x32_c00188{left:495.423853pt;}
.x20_c00188{left:505.205053pt;}
.x3c_c00188{left:507.616253pt;}
.x2e_c00188{left:515.738653pt;}
.x37_c00188{left:524.120653pt;}
.x1c_c00188{left:525.057853pt;}
.xe_c00188{left:533.769853pt;}
.x21_c00188{left:534.962253pt;}
.x2f_c00188{left:543.621453pt;}
.x24_c00188{left:548.958653pt;}
.x25_c00188{left:553.671053pt;}
.x30_c00188{left:556.289053pt;}
.x3d_c00188{left:563.421453pt;}
.x26_c00188{left:564.591853pt;}
.x3e_c00188{left:572.397453pt;}
.x2a_c00188{left:573.369853pt;}
.x2_c00188{left:583.591053pt;}
.x43_c00188{left:584.774653pt;}
.x3_c00188{left:603.171053pt;}
.xf_c00188{left:622.315453pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_33b466219e3a5b10ac4de32d.woff2')format("woff");}.ff1_c00189{font-family:ff1_c00189;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00189;src:url('chunks/assets/font_65dfbbeb81f15e4ee1731795.woff2')format("woff");}.ff2_c00189{font-family:ff2_c00189;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00189;src:url('chunks/assets/font_4da065073cd3281bc349384a.woff2')format("woff");}.ff3_c00189{font-family:ff3_c00189;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00189;src:url('chunks/assets/font_3f2b996effcc2d76cca69236.woff2')format("woff");}.ff4_c00189{font-family:ff4_c00189;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00189;src:url('chunks/assets/font_bd8a72ba5aa7711059bfc5d0.woff2')format("woff");}.ff5_c00189{font-family:ff5_c00189;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m8_c00189{transform:matrix(0.107142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107142,0.000000,0.000000,0.250000,0,0);}
.m20_c00189{transform:matrix(0.112745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112745,0.000000,0.000000,0.250000,0,0);}
.m53_c00189{transform:matrix(0.136100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136100,0.000000,0.000000,0.250000,0,0);}
.m41_c00189{transform:matrix(0.137255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137255,0.000000,0.000000,0.250000,0,0);}
.m3e_c00189{transform:matrix(0.146008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146008,0.000000,0.000000,0.250000,0,0);}
.m3b_c00189{transform:matrix(0.159375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159375,0.000000,0.000000,0.250000,0,0);}
.m2f_c00189{transform:matrix(0.164682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164682,0.000000,0.000000,0.250000,0,0);}
.m35_c00189{transform:matrix(0.182871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182871,0.000000,0.000000,0.250000,0,0);}
.m15_c00189{transform:matrix(0.184027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184027,0.000000,0.000000,0.250000,0,0);}
.m37_c00189{transform:matrix(0.185185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185185,0.000000,0.000000,0.250000,0,0);}
.m3c_c00189{transform:matrix(0.185417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185417,0.000000,0.000000,0.250000,0,0);}
.m14_c00189{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00189{transform:matrix(0.204861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204861,0.000000,0.000000,0.250000,0,0);}
.m42_c00189{transform:matrix(0.217248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217248,0.000000,0.000000,0.250000,0,0);}
.m9_c00189{transform:matrix(0.224489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224489,0.000000,0.000000,0.250000,0,0);}
.m5_c00189{transform:matrix(0.229811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229811,0.000000,0.000000,0.250000,0,0);}
.mb_c00189{transform:matrix(0.230841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230841,0.000000,0.000000,0.250000,0,0);}
.m2_c00189{transform:matrix(0.237697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237697,0.000000,0.000000,0.250000,0,0);}
.m28_c00189{transform:matrix(0.239536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239536,0.000000,0.000000,0.250000,0,0);}
.me_c00189{transform:matrix(0.249235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249235,0.000000,0.000000,0.250000,0,0);}
.m0_c00189{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m56_c00189{transform:matrix(0.253198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253198,0.000000,0.000000,0.250000,0,0);}
.m1e_c00189{transform:matrix(0.254226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254226,0.000000,0.000000,0.250000,0,0);}
.m18_c00189{transform:matrix(0.255028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255028,0.000000,0.000000,0.250000,0,0);}
.m30_c00189{transform:matrix(0.256441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256441,0.000000,0.000000,0.250000,0,0);}
.m57_c00189{transform:matrix(0.256630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256630,0.000000,0.000000,0.250000,0,0);}
.m4e_c00189{transform:matrix(0.256810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256810,0.000000,0.000000,0.250000,0,0);}
.m54_c00189{transform:matrix(0.261280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261280,0.000000,0.000000,0.250000,0,0);}
.m4b_c00189{transform:matrix(0.263426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263426,0.000000,0.000000,0.250000,0,0);}
.m4d_c00189{transform:matrix(0.273122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273122,0.000000,0.000000,0.250000,0,0);}
.m1a_c00189{transform:matrix(0.274843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274843,0.000000,0.000000,0.250000,0,0);}
.m3_c00189{transform:matrix(0.275169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275169,0.000000,0.000000,0.250000,0,0);}
.md_c00189{transform:matrix(0.277667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277667,0.000000,0.000000,0.250000,0,0);}
.m4c_c00189{transform:matrix(0.278255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278255,0.000000,0.000000,0.250000,0,0);}
.m47_c00189{transform:matrix(0.280127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280127,0.000000,0.000000,0.250000,0,0);}
.mf_c00189{transform:matrix(0.280435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280435,0.000000,0.000000,0.250000,0,0);}
.m22_c00189{transform:matrix(0.281701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281701,0.000000,0.000000,0.250000,0,0);}
.m24_c00189{transform:matrix(0.281807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281807,0.000000,0.000000,0.250000,0,0);}
.m13_c00189{transform:matrix(0.282424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282424,0.000000,0.000000,0.250000,0,0);}
.m27_c00189{transform:matrix(0.282470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282470,0.000000,0.000000,0.250000,0,0);}
.m4f_c00189{transform:matrix(0.284693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284693,0.000000,0.000000,0.250000,0,0);}
.m50_c00189{transform:matrix(0.284796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284796,0.000000,0.000000,0.250000,0,0);}
.m17_c00189{transform:matrix(0.286751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286751,0.000000,0.000000,0.250000,0,0);}
.m12_c00189{transform:matrix(0.286974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286974,0.000000,0.000000,0.250000,0,0);}
.m5a_c00189{transform:matrix(0.287926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287926,0.000000,0.000000,0.250000,0,0);}
.m34_c00189{transform:matrix(0.288261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288261,0.000000,0.000000,0.250000,0,0);}
.m19_c00189{transform:matrix(0.288626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288626,0.000000,0.000000,0.250000,0,0);}
.m3a_c00189{transform:matrix(0.289151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289151,0.000000,0.000000,0.250000,0,0);}
.m31_c00189{transform:matrix(0.289734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289734,0.000000,0.000000,0.250000,0,0);}
.m25_c00189{transform:matrix(0.290469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290469,0.000000,0.000000,0.250000,0,0);}
.m46_c00189{transform:matrix(0.291093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291093,0.000000,0.000000,0.250000,0,0);}
.m52_c00189{transform:matrix(0.291695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291695,0.000000,0.000000,0.250000,0,0);}
.m43_c00189{transform:matrix(0.292429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292429,0.000000,0.000000,0.250000,0,0);}
.m49_c00189{transform:matrix(0.292459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292459,0.000000,0.000000,0.250000,0,0);}
.m55_c00189{transform:matrix(0.293814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293814,0.000000,0.000000,0.250000,0,0);}
.m7_c00189{transform:matrix(0.293826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293826,0.000000,0.000000,0.250000,0,0);}
.ma_c00189{transform:matrix(0.294107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294107,0.000000,0.000000,0.250000,0,0);}
.m2c_c00189{transform:matrix(0.297082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297082,0.000000,0.000000,0.250000,0,0);}
.m29_c00189{transform:matrix(0.302422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302422,0.000000,0.000000,0.250000,0,0);}
.m2e_c00189{transform:matrix(0.303299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303299,0.000000,0.000000,0.250000,0,0);}
.m6_c00189{transform:matrix(0.307813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307813,0.000000,0.000000,0.250000,0,0);}
.m1f_c00189{transform:matrix(0.308688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308688,0.000000,0.000000,0.250000,0,0);}
.m21_c00189{transform:matrix(0.309136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309136,0.000000,0.000000,0.250000,0,0);}
.m11_c00189{transform:matrix(0.311998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311998,0.000000,0.000000,0.250000,0,0);}
.mc_c00189{transform:matrix(0.314861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314861,0.000000,0.000000,0.250000,0,0);}
.m39_c00189{transform:matrix(0.317520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317520,0.000000,0.000000,0.250000,0,0);}
.m1b_c00189{transform:matrix(0.318622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318622,0.000000,0.000000,0.250000,0,0);}
.m51_c00189{transform:matrix(0.319318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319318,0.000000,0.000000,0.250000,0,0);}
.m10_c00189{transform:matrix(0.320291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320291,0.000000,0.000000,0.250000,0,0);}
.m36_c00189{transform:matrix(0.321869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321869,0.000000,0.000000,0.250000,0,0);}
.m48_c00189{transform:matrix(0.322403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322403,0.000000,0.000000,0.250000,0,0);}
.m26_c00189{transform:matrix(0.322694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322694,0.000000,0.000000,0.250000,0,0);}
.m3f_c00189{transform:matrix(0.324461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324461,0.000000,0.000000,0.250000,0,0);}
.m59_c00189{transform:matrix(0.325820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325820,0.000000,0.000000,0.250000,0,0);}
.m1d_c00189{transform:matrix(0.329618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329618,0.000000,0.000000,0.250000,0,0);}
.m32_c00189{transform:matrix(0.329984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329984,0.000000,0.000000,0.250000,0,0);}
.m3d_c00189{transform:matrix(0.336047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336047,0.000000,0.000000,0.250000,0,0);}
.m4_c00189{transform:matrix(0.336521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336521,0.000000,0.000000,0.250000,0,0);}
.m40_c00189{transform:matrix(0.337630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337630,0.000000,0.000000,0.250000,0,0);}
.m1c_c00189{transform:matrix(0.347119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347119,0.000000,0.000000,0.250000,0,0);}
.m44_c00189{transform:matrix(0.347814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347814,0.000000,0.000000,0.250000,0,0);}
.m2a_c00189{transform:matrix(0.348476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348476,0.000000,0.000000,0.250000,0,0);}
.m2b_c00189{transform:matrix(0.354981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354981,0.000000,0.000000,0.250000,0,0);}
.m16_c00189{transform:matrix(0.358086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358086,0.000000,0.000000,0.250000,0,0);}
.m38_c00189{transform:matrix(0.359541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359541,0.000000,0.000000,0.250000,0,0);}
.m45_c00189{transform:matrix(0.360997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360997,0.000000,0.000000,0.250000,0,0);}
.m2d_c00189{transform:matrix(0.367842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367842,0.000000,0.000000,0.250000,0,0);}
.m23_c00189{transform:matrix(0.374307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374307,0.000000,0.000000,0.250000,0,0);}
.m1_c00189{transform:matrix(0.394359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394359,0.000000,0.000000,0.250000,0,0);}
.m58_c00189{transform:matrix(0.437940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437940,0.000000,0.000000,0.250000,0,0);}
.m33_c00189{transform:matrix(0.458170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458170,0.000000,0.000000,0.250000,0,0);}
.v0_c00189{vertical-align:0.000000px;}
.lsb_c00189{letter-spacing:-2.594123px;}
.ls2_c00189{letter-spacing:-2.564100px;}
.ls8_c00189{letter-spacing:-0.974358px;}
.ls7_c00189{letter-spacing:-0.498168px;}
.ls0_c00189{letter-spacing:0.000000px;}
.ls4_c00189{letter-spacing:1.604394px;}
.lsc_c00189{letter-spacing:2.970000px;}
.lsd_c00189{letter-spacing:3.247200px;}
.ls11_c00189{letter-spacing:3.445200px;}
.ls10_c00189{letter-spacing:3.516480px;}
.ls5_c00189{letter-spacing:3.544200px;}
.ls1_c00189{letter-spacing:3.663000px;}
.ls13_c00189{letter-spacing:3.801610px;}
.lsa_c00189{letter-spacing:4.197610px;}
.lsf_c00189{letter-spacing:48.470598px;}
.ls3_c00189{letter-spacing:49.896198px;}
.ls6_c00189{letter-spacing:51.321798px;}
.ls12_c00189{letter-spacing:52.747398px;}
.lse_c00189{letter-spacing:57.024198px;}
.ls9_c00189{letter-spacing:72.705798px;}
.sc__c00189{text-shadow:none;}
.sc0_c00189{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00189{-webkit-text-stroke:0px transparent;}
.sc0_c00189{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00189{word-spacing:0.000000px;}
._0_c00189{width:6.336000px;}
.fc0_c00189{color:transparent;}
.fs0_c00189{font-size:27.720000px;}
.fsb_c00189{font-size:48.470598px;}
.fs2_c00189{font-size:49.896198px;}
.fs4_c00189{font-size:51.321798px;}
.fse_c00189{font-size:52.747398px;}
.fsa_c00189{font-size:57.024198px;}
.fs8_c00189{font-size:59.400000px;}
.fsc_c00189{font-size:63.360000px;}
.fs5_c00189{font-size:64.548000px;}
.fs9_c00189{font-size:64.944000px;}
.fsd_c00189{font-size:68.904000px;}
.fs3_c00189{font-size:70.884000px;}
.fs6_c00189{font-size:72.705798px;}
.fs1_c00189{font-size:73.260000px;}
.fsf_c00189{font-size:76.032198px;}
.fs7_c00189{font-size:83.952198px;}
.y0_c00189{bottom:0.000000px;}
.y1_c00189{bottom:76.500000px;}
.y1e_c00189{bottom:126.077535px;}
.y1d_c00189{bottom:146.743785px;}
.y2_c00189{bottom:153.515385px;}
.y1c_c00189{bottom:179.181135px;}
.y1b_c00189{bottom:211.613535px;}
.y1a_c00189{bottom:244.045935px;}
.ya_c00189{bottom:276.121935px;}
.y19_c00189{bottom:276.473385px;}
.y9_c00189{bottom:373.057785px;}
.y8_c00189{bottom:404.777385px;}
.y18_c00189{bottom:501.723135px;}
.y17_c00189{bottom:534.511935px;}
.y7_c00189{bottom:555.534585px;}
.y16_c00189{bottom:566.587935px;}
.y6_c00189{bottom:598.307535px;}
.y15_c00189{bottom:636.442335px;}
.y5_c00189{bottom:694.535535px;}
.y12_c00189{bottom:726.606585px;}
.y14_c00189{bottom:727.324335px;}
.y13_c00189{bottom:758.687535px;}
.y11_c00189{bottom:759.038985px;}
.y10_c00189{bottom:791.476335px;}
.yf_c00189{bottom:823.190985px;}
.y4_c00189{bottom:823.908735px;}
.yd_c00189{bottom:854.554185px;}
.yc_c00189{bottom:886.986585px;}
.y3_c00189{bottom:919.067535px;}
.yb_c00189{bottom:919.418985px;}
.ye_c00189{bottom:1070.888985px;}
.h2_c00189{height:28.911094px;}
.he_c00189{height:32.281418px;}
.h4_c00189{height:33.230868px;}
.h6_c00189{height:34.180317px;}
.h11_c00189{height:35.129767px;}
.hd_c00189{height:37.978116px;}
.h8_c00189{height:48.422061px;}
.hb_c00189{height:58.297852px;}
.hf_c00189{height:62.184375px;}
.h7_c00189{height:67.321547px;}
.hc_c00189{height:67.734563px;}
.h5_c00189{height:69.568770px;}
.h10_c00189{height:71.864719px;}
.h3_c00189{height:71.900684px;}
.h9_c00189{height:73.832344px;}
.h12_c00189{height:74.621444px;}
.ha_c00189{height:82.394491px;}
.h1_c00189{height:1110.000000px;}
.h0_c00189{height:1263.000000px;}
.w1_c00189{width:775.500000px;}
.w0_c00189{width:892.500000px;}
.x0_c00189{left:0.000000px;}
.x2_c00189{left:55.832685px;}
.x1_c00189{left:58.500000px;}
.x3_c00189{left:66.826635px;}
.x39_c00189{left:67.935435px;}
.x4_c00189{left:80.280735px;}
.xc_c00189{left:89.042235px;}
.xe_c00189{left:111.663735px;}
.x6_c00189{left:112.693335px;}
.xd_c00189{left:122.751735px;}
.xb_c00189{left:133.810035px;}
.x5_c00189{left:144.140685px;}
.x9_c00189{left:158.941185px;}
.x3a_c00189{left:160.371735px;}
.x7_c00189{left:161.683485px;}
.xa_c00189{left:165.361335px;}
.xf_c00189{left:166.376085px;}
.x8_c00189{left:178.295685px;}
.x10_c00189{left:298.649985px;}
.x2b_c00189{left:300.075585px;}
.x11_c00189{left:309.698385px;}
.x2d_c00189{left:320.994285px;}
.x34_c00189{left:323.840535px;}
.x12_c00189{left:342.794085px;}
.x35_c00189{left:344.086035px;}
.x23_c00189{left:346.551135px;}
.x25_c00189{left:354.139485px;}
.x1c_c00189{left:365.460135px;}
.x3e_c00189{left:367.049085px;}
.x19_c00189{left:370.860585px;}
.x1d_c00189{left:376.305585px;}
.x36_c00189{left:397.323285px;}
.x1a_c00189{left:398.397435px;}
.x26_c00189{left:409.614135px;}
.x1e_c00189{left:422.741535px;}
.x30_c00189{left:425.528385px;}
.x13_c00189{left:442.071285px;}
.x27_c00189{left:443.348385px;}
.x2a_c00189{left:444.986835px;}
.x32_c00189{left:452.971185px;}
.x1f_c00189{left:464.014635px;}
.x33_c00189{left:472.573185px;}
.x14_c00189{left:475.671885px;}
.x2e_c00189{left:478.988385px;}
.x31_c00189{left:486.002535px;}
.x22_c00189{left:497.328135px;}
.x2f_c00189{left:498.951735px;}
.x15_c00189{left:508.376535px;}
.x28_c00189{left:518.454735px;}
.x16_c00189{left:519.578385px;}
.x37_c00189{left:530.107035px;}
.x24_c00189{left:531.151485px;}
.x1b_c00189{left:552.550335px;}
.x2c_c00189{left:554.515485px;}
.x17_c00189{left:563.024535px;}
.x18_c00189{left:584.977785px;}
.x3b_c00189{left:596.041035px;}
.x3f_c00189{left:617.177535px;}
.x29_c00189{left:629.537685px;}
.x3c_c00189{left:640.393035px;}
.x20_c00189{left:650.842485px;}
.x40_c00189{left:652.881885px;}
.x38_c00189{left:663.935235px;}
.x41_c00189{left:671.711685px;}
.x21_c00189{left:672.845235px;}
.x42_c00189{left:694.328235px;}
.x3d_c00189{left:705.139035px;}
.x43_c00189{left:716.098335px;}
.x44_c00189{left:726.646785px;}
@media print{
.v0_c00189{vertical-align:0.000000pt;}
.lsb_c00189{letter-spacing:-2.305887pt;}
.ls2_c00189{letter-spacing:-2.279200pt;}
.ls8_c00189{letter-spacing:-0.866096pt;}
.ls7_c00189{letter-spacing:-0.442816pt;}
.ls0_c00189{letter-spacing:0.000000pt;}
.ls4_c00189{letter-spacing:1.426128pt;}
.lsc_c00189{letter-spacing:2.640000pt;}
.lsd_c00189{letter-spacing:2.886400pt;}
.ls11_c00189{letter-spacing:3.062400pt;}
.ls10_c00189{letter-spacing:3.125760pt;}
.ls5_c00189{letter-spacing:3.150400pt;}
.ls1_c00189{letter-spacing:3.256000pt;}
.ls13_c00189{letter-spacing:3.379209pt;}
.lsa_c00189{letter-spacing:3.731209pt;}
.lsf_c00189{letter-spacing:43.084976pt;}
.ls3_c00189{letter-spacing:44.352176pt;}
.ls6_c00189{letter-spacing:45.619376pt;}
.ls12_c00189{letter-spacing:46.886576pt;}
.lse_c00189{letter-spacing:50.688176pt;}
.ls9_c00189{letter-spacing:64.627376pt;}
.ws0_c00189{word-spacing:0.000000pt;}
._0_c00189{width:5.632000pt;}
.fs0_c00189{font-size:24.640000pt;}
.fsb_c00189{font-size:43.084976pt;}
.fs2_c00189{font-size:44.352176pt;}
.fs4_c00189{font-size:45.619376pt;}
.fse_c00189{font-size:46.886576pt;}
.fsa_c00189{font-size:50.688176pt;}
.fs8_c00189{font-size:52.800000pt;}
.fsc_c00189{font-size:56.320000pt;}
.fs5_c00189{font-size:57.376000pt;}
.fs9_c00189{font-size:57.728000pt;}
.fsd_c00189{font-size:61.248000pt;}
.fs3_c00189{font-size:63.008000pt;}
.fs6_c00189{font-size:64.627376pt;}
.fs1_c00189{font-size:65.120000pt;}
.fsf_c00189{font-size:67.584176pt;}
.fs7_c00189{font-size:74.624176pt;}
.y0_c00189{bottom:0.000000pt;}
.y1_c00189{bottom:68.000000pt;}
.y1e_c00189{bottom:112.068920pt;}
.y1d_c00189{bottom:130.438920pt;}
.y2_c00189{bottom:136.458120pt;}
.y1c_c00189{bottom:159.272120pt;}
.y1b_c00189{bottom:188.100920pt;}
.y1a_c00189{bottom:216.929720pt;}
.ya_c00189{bottom:245.441720pt;}
.y19_c00189{bottom:245.754120pt;}
.y9_c00189{bottom:331.606920pt;}
.y8_c00189{bottom:359.802120pt;}
.y18_c00189{bottom:445.976120pt;}
.y17_c00189{bottom:475.121720pt;}
.y7_c00189{bottom:493.808520pt;}
.y16_c00189{bottom:503.633720pt;}
.y6_c00189{bottom:531.828920pt;}
.y15_c00189{bottom:565.726520pt;}
.y5_c00189{bottom:617.364920pt;}
.y12_c00189{bottom:645.872520pt;}
.y14_c00189{bottom:646.510520pt;}
.y13_c00189{bottom:674.388920pt;}
.y11_c00189{bottom:674.701320pt;}
.y10_c00189{bottom:703.534520pt;}
.yf_c00189{bottom:731.725320pt;}
.y4_c00189{bottom:732.363320pt;}
.yd_c00189{bottom:759.603720pt;}
.yc_c00189{bottom:788.432520pt;}
.y3_c00189{bottom:816.948920pt;}
.yb_c00189{bottom:817.261320pt;}
.ye_c00189{bottom:951.901320pt;}
.h2_c00189{height:25.698750pt;}
.he_c00189{height:28.694594pt;}
.h4_c00189{height:29.538549pt;}
.h6_c00189{height:30.382504pt;}
.h11_c00189{height:31.226460pt;}
.hd_c00189{height:33.758325pt;}
.h8_c00189{height:43.041832pt;}
.hb_c00189{height:51.820313pt;}
.hf_c00189{height:55.275000pt;}
.h7_c00189{height:59.841375pt;}
.hc_c00189{height:60.208500pt;}
.h5_c00189{height:61.838906pt;}
.h10_c00189{height:63.879750pt;}
.h3_c00189{height:63.911719pt;}
.h9_c00189{height:65.628750pt;}
.h12_c00189{height:66.330173pt;}
.ha_c00189{height:73.239548pt;}
.h1_c00189{height:986.666667pt;}
.h0_c00189{height:1122.666667pt;}
.w1_c00189{width:689.333333pt;}
.w0_c00189{width:793.333333pt;}
.x0_c00189{left:0.000000pt;}
.x2_c00189{left:49.629053pt;}
.x1_c00189{left:52.000000pt;}
.x3_c00189{left:59.401453pt;}
.x39_c00189{left:60.387053pt;}
.x4_c00189{left:71.360653pt;}
.xc_c00189{left:79.148653pt;}
.xe_c00189{left:99.256653pt;}
.x6_c00189{left:100.171853pt;}
.xd_c00189{left:109.112653pt;}
.xb_c00189{left:118.942253pt;}
.x5_c00189{left:128.125053pt;}
.x9_c00189{left:141.281053pt;}
.x3a_c00189{left:142.552653pt;}
.x7_c00189{left:143.718653pt;}
.xa_c00189{left:146.987853pt;}
.xf_c00189{left:147.889853pt;}
.x8_c00189{left:158.485053pt;}
.x10_c00189{left:265.466653pt;}
.x2b_c00189{left:266.733853pt;}
.x11_c00189{left:275.287453pt;}
.x2d_c00189{left:285.328253pt;}
.x34_c00189{left:287.858253pt;}
.x12_c00189{left:304.705853pt;}
.x35_c00189{left:305.854253pt;}
.x23_c00189{left:308.045453pt;}
.x25_c00189{left:314.790653pt;}
.x1c_c00189{left:324.853453pt;}
.x3e_c00189{left:326.265853pt;}
.x19_c00189{left:329.653853pt;}
.x1d_c00189{left:334.493853pt;}
.x36_c00189{left:353.176253pt;}
.x1a_c00189{left:354.131053pt;}
.x26_c00189{left:364.101453pt;}
.x1e_c00189{left:375.770253pt;}
.x30_c00189{left:378.247453pt;}
.x13_c00189{left:392.952253pt;}
.x27_c00189{left:394.087453pt;}
.x2a_c00189{left:395.543853pt;}
.x32_c00189{left:402.641053pt;}
.x1f_c00189{left:412.457453pt;}
.x33_c00189{left:420.065053pt;}
.x14_c00189{left:422.819453pt;}
.x2e_c00189{left:425.767453pt;}
.x31_c00189{left:432.002253pt;}
.x22_c00189{left:442.069453pt;}
.x2f_c00189{left:443.512653pt;}
.x15_c00189{left:451.890253pt;}
.x28_c00189{left:460.848653pt;}
.x16_c00189{left:461.847453pt;}
.x37_c00189{left:471.206253pt;}
.x24_c00189{left:472.134653pt;}
.x1b_c00189{left:491.155853pt;}
.x2c_c00189{left:492.902653pt;}
.x17_c00189{left:500.466253pt;}
.x18_c00189{left:519.980253pt;}
.x3b_c00189{left:529.814253pt;}
.x3f_c00189{left:548.602253pt;}
.x29_c00189{left:559.589053pt;}
.x3c_c00189{left:569.238253pt;}
.x20_c00189{left:578.526653pt;}
.x40_c00189{left:580.339453pt;}
.x38_c00189{left:590.164653pt;}
.x41_c00189{left:597.077053pt;}
.x21_c00189{left:598.084653pt;}
.x42_c00189{left:617.180653pt;}
.x3d_c00189{left:626.790253pt;}
.x43_c00189{left:636.531853pt;}
.x44_c00189{left:645.908253pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_165ad5d08ce01c8f62455e65.woff2')format("woff");}.ff1_c00190{font-family:ff1_c00190;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00190;src:url('chunks/assets/font_bda75cca4d42774f15252610.woff2')format("woff");}.ff2_c00190{font-family:ff2_c00190;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00190;src:url('chunks/assets/font_2af4cb7d569264d2dce1c741.woff2')format("woff");}.ff3_c00190{font-family:ff3_c00190;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00190;src:url('chunks/assets/font_2ba2375d77e5eeff75116601.woff2')format("woff");}.ff4_c00190{font-family:ff4_c00190;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00190;src:url('chunks/assets/font_0749345dd495de76978d4d04.woff2')format("woff");}.ff5_c00190{font-family:ff5_c00190;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00190;src:url('chunks/assets/font_00add65ce8280cd58d274869.woff2')format("woff");}.ff6_c00190{font-family:ff6_c00190;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m33_c00190{transform:matrix(0.079269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.079269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.079269,0.000000,0.000000,0.250000,0,0);}
.m10_c00190{transform:matrix(0.097298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097298,0.000000,0.000000,0.250000,0,0);}
.m45_c00190{transform:matrix(0.127164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127164,0.000000,0.000000,0.250000,0,0);}
.m19_c00190{transform:matrix(0.130264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130264,0.000000,0.000000,0.250000,0,0);}
.m29_c00190{transform:matrix(0.140873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140873,0.000000,0.000000,0.250000,0,0);}
.m5d_c00190{transform:matrix(0.152439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152439,0.000000,0.000000,0.250000,0,0);}
.mf_c00190{transform:matrix(0.155450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155450,0.000000,0.000000,0.250000,0,0);}
.ma_c00190{transform:matrix(0.161546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161546,0.000000,0.000000,0.250000,0,0);}
.m36_c00190{transform:matrix(0.162034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162034,0.000000,0.000000,0.250000,0,0);}
.m32_c00190{transform:matrix(0.164634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164634,0.000000,0.000000,0.250000,0,0);}
.m30_c00190{transform:matrix(0.172764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172764,0.000000,0.000000,0.250000,0,0);}
.m1f_c00190{transform:matrix(0.173214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173214,0.000000,0.000000,0.250000,0,0);}
.m5e_c00190{transform:matrix(0.179878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179878,0.000000,0.000000,0.250000,0,0);}
.m2f_c00190{transform:matrix(0.182926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182926,0.000000,0.000000,0.250000,0,0);}
.m5_c00190{transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);}
.m2_c00190{transform:matrix(0.206148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206148,0.000000,0.000000,0.250000,0,0);}
.m7_c00190{transform:matrix(0.215685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215685,0.000000,0.000000,0.250000,0,0);}
.m56_c00190{transform:matrix(0.219067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219067,0.000000,0.000000,0.250000,0,0);}
.m3_c00190{transform:matrix(0.223626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223626,0.000000,0.000000,0.250000,0,0);}
.m20_c00190{transform:matrix(0.235381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235381,0.000000,0.000000,0.250000,0,0);}
.m18_c00190{transform:matrix(0.236745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236745,0.000000,0.000000,0.250000,0,0);}
.m2e_c00190{transform:matrix(0.237805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237805,0.000000,0.000000,0.250000,0,0);}
.m1c_c00190{transform:matrix(0.246560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246560,0.000000,0.000000,0.250000,0,0);}
.m0_c00190{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m50_c00190{transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);}
.mb_c00190{transform:matrix(0.250225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250225,0.000000,0.000000,0.250000,0,0);}
.m13_c00190{transform:matrix(0.250744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250744,0.000000,0.000000,0.250000,0,0);}
.m1d_c00190{transform:matrix(0.251056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251056,0.000000,0.000000,0.250000,0,0);}
.m37_c00190{transform:matrix(0.251625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251625,0.000000,0.000000,0.250000,0,0);}
.m22_c00190{transform:matrix(0.253125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253125,0.000000,0.000000,0.250000,0,0);}
.m17_c00190{transform:matrix(0.253128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253128,0.000000,0.000000,0.250000,0,0);}
.mc_c00190{transform:matrix(0.253171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253171,0.000000,0.000000,0.250000,0,0);}
.m24_c00190{transform:matrix(0.254227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254227,0.000000,0.000000,0.250000,0,0);}
.m3c_c00190{transform:matrix(0.254776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254776,0.000000,0.000000,0.250000,0,0);}
.m1b_c00190{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m65_c00190{transform:matrix(0.260981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260981,0.000000,0.000000,0.250000,0,0);}
.m5c_c00190{transform:matrix(0.261747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261747,0.000000,0.000000,0.250000,0,0);}
.m3b_c00190{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m71_c00190{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m5a_c00190{transform:matrix(0.265580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265580,0.000000,0.000000,0.250000,0,0);}
.m69_c00190{transform:matrix(0.265754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265754,0.000000,0.000000,0.250000,0,0);}
.m55_c00190{transform:matrix(0.266097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266097,0.000000,0.000000,0.250000,0,0);}
.m44_c00190{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m4b_c00190{transform:matrix(0.268069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268069,0.000000,0.000000,0.250000,0,0);}
.m5f_c00190{transform:matrix(0.268177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268177,0.000000,0.000000,0.250000,0,0);}
.m70_c00190{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.m9_c00190{transform:matrix(0.269173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269173,0.000000,0.000000,0.250000,0,0);}
.m2d_c00190{transform:matrix(0.269912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269912,0.000000,0.000000,0.250000,0,0);}
.m7a_c00190{transform:matrix(0.270289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270289,0.000000,0.000000,0.250000,0,0);}
.m7f_c00190{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m7d_c00190{transform:matrix(0.271072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271072,0.000000,0.000000,0.250000,0,0);}
.m4_c00190{transform:matrix(0.271980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271980,0.000000,0.000000,0.250000,0,0);}
.m62_c00190{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m64_c00190{transform:matrix(0.273258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273258,0.000000,0.000000,0.250000,0,0);}
.m12_c00190{transform:matrix(0.274523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274523,0.000000,0.000000,0.250000,0,0);}
.m21_c00190{transform:matrix(0.275566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275566,0.000000,0.000000,0.250000,0,0);}
.m40_c00190{transform:matrix(0.275662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275662,0.000000,0.000000,0.250000,0,0);}
.m1_c00190{transform:matrix(0.276155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276155,0.000000,0.000000,0.250000,0,0);}
.m76_c00190{transform:matrix(0.276535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276535,0.000000,0.000000,0.250000,0,0);}
.m52_c00190{transform:matrix(0.277771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277771,0.000000,0.000000,0.250000,0,0);}
.m6f_c00190{transform:matrix(0.278972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278972,0.000000,0.000000,0.250000,0,0);}
.m59_c00190{transform:matrix(0.279544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279544,0.000000,0.000000,0.250000,0,0);}
.m79_c00190{transform:matrix(0.280329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280329,0.000000,0.000000,0.250000,0,0);}
.m4e_c00190{transform:matrix(0.280356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280356,0.000000,0.000000,0.250000,0,0);}
.m7e_c00190{transform:matrix(0.280480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280480,0.000000,0.000000,0.250000,0,0);}
.m11_c00190{transform:matrix(0.281972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281972,0.000000,0.000000,0.250000,0,0);}
.m26_c00190{transform:matrix(0.282461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282461,0.000000,0.000000,0.250000,0,0);}
.m8_c00190{transform:matrix(0.282527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282527,0.000000,0.000000,0.250000,0,0);}
.m75_c00190{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m3a_c00190{transform:matrix(0.284727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284727,0.000000,0.000000,0.250000,0,0);}
.m39_c00190{transform:matrix(0.286030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286030,0.000000,0.000000,0.250000,0,0);}
.m6e_c00190{transform:matrix(0.286295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286295,0.000000,0.000000,0.250000,0,0);}
.m82_c00190{transform:matrix(0.286758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286758,0.000000,0.000000,0.250000,0,0);}
.m77_c00190{transform:matrix(0.287474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287474,0.000000,0.000000,0.250000,0,0);}
.m2a_c00190{transform:matrix(0.288372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288372,0.000000,0.000000,0.250000,0,0);}
.m51_c00190{transform:matrix(0.288420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288420,0.000000,0.000000,0.250000,0,0);}
.m4f_c00190{transform:matrix(0.288601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288601,0.000000,0.000000,0.250000,0,0);}
.m2b_c00190{transform:matrix(0.288669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288669,0.000000,0.000000,0.250000,0,0);}
.m6a_c00190{transform:matrix(0.288698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288698,0.000000,0.000000,0.250000,0,0);}
.m3d_c00190{transform:matrix(0.289049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289049,0.000000,0.000000,0.250000,0,0);}
.m1e_c00190{transform:matrix(0.289722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289722,0.000000,0.000000,0.250000,0,0);}
.m81_c00190{transform:matrix(0.290140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290140,0.000000,0.000000,0.250000,0,0);}
.m63_c00190{transform:matrix(0.290176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290176,0.000000,0.000000,0.250000,0,0);}
.m83_c00190{transform:matrix(0.290656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290656,0.000000,0.000000,0.250000,0,0);}
.m54_c00190{transform:matrix(0.292039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292039,0.000000,0.000000,0.250000,0,0);}
.m23_c00190{transform:matrix(0.292941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292941,0.000000,0.000000,0.250000,0,0);}
.m7c_c00190{transform:matrix(0.293496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293496,0.000000,0.000000,0.250000,0,0);}
.m49_c00190{transform:matrix(0.293794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293794,0.000000,0.000000,0.250000,0,0);}
.m6_c00190{transform:matrix(0.295293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295293,0.000000,0.000000,0.250000,0,0);}
.m4a_c00190{transform:matrix(0.296672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296672,0.000000,0.000000,0.250000,0,0);}
.m72_c00190{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m25_c00190{transform:matrix(0.298672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298672,0.000000,0.000000,0.250000,0,0);}
.m34_c00190{transform:matrix(0.300427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300427,0.000000,0.000000,0.250000,0,0);}
.m74_c00190{transform:matrix(0.300627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300627,0.000000,0.000000,0.250000,0,0);}
.m16_c00190{transform:matrix(0.300736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300736,0.000000,0.000000,0.250000,0,0);}
.m73_c00190{transform:matrix(0.304443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304443,0.000000,0.000000,0.250000,0,0);}
.m28_c00190{transform:matrix(0.304800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304800,0.000000,0.000000,0.250000,0,0);}
.me_c00190{transform:matrix(0.306912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306912,0.000000,0.000000,0.250000,0,0);}
.m31_c00190{transform:matrix(0.308774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308774,0.000000,0.000000,0.250000,0,0);}
.m41_c00190{transform:matrix(0.308777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308777,0.000000,0.000000,0.250000,0,0);}
.m68_c00190{transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);}
.md_c00190{transform:matrix(0.308989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308989,0.000000,0.000000,0.250000,0,0);}
.m14_c00190{transform:matrix(0.311215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311215,0.000000,0.000000,0.250000,0,0);}
.m60_c00190{transform:matrix(0.311988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311988,0.000000,0.000000,0.250000,0,0);}
.m15_c00190{transform:matrix(0.312169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312169,0.000000,0.000000,0.250000,0,0);}
.m4d_c00190{transform:matrix(0.312248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312248,0.000000,0.000000,0.250000,0,0);}
.m7b_c00190{transform:matrix(0.313612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313612,0.000000,0.000000,0.250000,0,0);}
.m27_c00190{transform:matrix(0.317415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317415,0.000000,0.000000,0.250000,0,0);}
.m61_c00190{transform:matrix(0.317482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317482,0.000000,0.000000,0.250000,0,0);}
.m6c_c00190{transform:matrix(0.319500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319500,0.000000,0.000000,0.250000,0,0);}
.m35_c00190{transform:matrix(0.319653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319653,0.000000,0.000000,0.250000,0,0);}
.m3e_c00190{transform:matrix(0.319694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319694,0.000000,0.000000,0.250000,0,0);}
.m2c_c00190{transform:matrix(0.321190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321190,0.000000,0.000000,0.250000,0,0);}
.m80_c00190{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.m5b_c00190{transform:matrix(0.324242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324242,0.000000,0.000000,0.250000,0,0);}
.m6b_c00190{transform:matrix(0.326455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326455,0.000000,0.000000,0.250000,0,0);}
.m58_c00190{transform:matrix(0.330662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330662,0.000000,0.000000,0.250000,0,0);}
.m43_c00190{transform:matrix(0.333215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333215,0.000000,0.000000,0.250000,0,0);}
.m67_c00190{transform:matrix(0.333669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333669,0.000000,0.000000,0.250000,0,0);}
.m4c_c00190{transform:matrix(0.334575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334575,0.000000,0.000000,0.250000,0,0);}
.m46_c00190{transform:matrix(0.336613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336613,0.000000,0.000000,0.250000,0,0);}
.m3f_c00190{transform:matrix(0.336930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336930,0.000000,0.000000,0.250000,0,0);}
.m66_c00190{transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);}
.m1a_c00190{transform:matrix(0.337295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337295,0.000000,0.000000,0.250000,0,0);}
.m48_c00190{transform:matrix(0.343011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343011,0.000000,0.000000,0.250000,0,0);}
.m78_c00190{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.m47_c00190{transform:matrix(0.347955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347955,0.000000,0.000000,0.250000,0,0);}
.m53_c00190{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m57_c00190{transform:matrix(0.358842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358842,0.000000,0.000000,0.250000,0,0);}
.m6d_c00190{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m42_c00190{transform:matrix(0.409815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409815,0.000000,0.000000,0.250000,0,0);}
.m38_c00190{transform:matrix(0.421610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421610,0.000000,0.000000,0.250000,0,0);}
.v3_c00190{vertical-align:-14.236200px;}
.v4_c00190{vertical-align:-11.404800px;}
.v1_c00190{vertical-align:-9.959400px;}
.v0_c00190{vertical-align:0.000000px;}
.v2_c00190{vertical-align:9.961380px;}
.v5_c00190{vertical-align:11.416284px;}
.ls21_c00190{letter-spacing:-3.714480px;}
.lsf_c00190{letter-spacing:-2.744280px;}
.ls13_c00190{letter-spacing:-2.673713px;}
.ls1d_c00190{letter-spacing:-2.579623px;}
.ls12_c00190{letter-spacing:-2.550240px;}
.ls23_c00190{letter-spacing:-2.120342px;}
.ls28_c00190{letter-spacing:-1.772021px;}
.ls16_c00190{letter-spacing:-1.441440px;}
.ls1f_c00190{letter-spacing:-1.183961px;}
.ls24_c00190{letter-spacing:-0.784080px;}
.lsd_c00190{letter-spacing:0.000000px;}
.lsb_c00190{letter-spacing:0.462607px;}
.ls3_c00190{letter-spacing:0.642946px;}
.ls2_c00190{letter-spacing:0.948737px;}
.ls15_c00190{letter-spacing:1.325095px;}
.ls1c_c00190{letter-spacing:1.400731px;}
.ls14_c00190{letter-spacing:1.692900px;}
.ls26_c00190{letter-spacing:1.831500px;}
.ls22_c00190{letter-spacing:2.019600px;}
.ls25_c00190{letter-spacing:2.118600px;}
.lsc_c00190{letter-spacing:2.563942px;}
.ls27_c00190{letter-spacing:2.682900px;}
.ls20_c00190{letter-spacing:3.042230px;}
.ls29_c00190{letter-spacing:3.191206px;}
.ls1e_c00190{letter-spacing:3.246091px;}
.ls18_c00190{letter-spacing:3.316500px;}
.ls1a_c00190{letter-spacing:3.446942px;}
.ls11_c00190{letter-spacing:3.643200px;}
.ls7_c00190{letter-spacing:3.802788px;}
.lse_c00190{letter-spacing:3.920400px;}
.lsa_c00190{letter-spacing:6.209676px;}
.ls8_c00190{letter-spacing:10.474200px;}
.ls5_c00190{letter-spacing:10.825848px;}
.ls0_c00190{letter-spacing:10.865448px;}
.ls9_c00190{letter-spacing:11.013948px;}
.ls6_c00190{letter-spacing:12.196800px;}
.ls1_c00190{letter-spacing:15.791490px;}
.ls10_c00190{letter-spacing:51.321798px;}
.ls17_c00190{letter-spacing:52.747398px;}
.ls19_c00190{letter-spacing:54.172998px;}
.ls1b_c00190{letter-spacing:57.024198px;}
.ls4_c00190{letter-spacing:58.449798px;}
.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;}
}
.ws6_c00190{word-spacing:-106.087040px;}
.ws7_c00190{word-spacing:-23.404788px;}
.ws9_c00190{word-spacing:-22.165942px;}
.ws2_c00190{word-spacing:-20.550737px;}
.ws0_c00190{word-spacing:-19.602000px;}
.ws5_c00190{word-spacing:-18.418039px;}
.ws8_c00190{word-spacing:-17.829979px;}
.ws3_c00190{word-spacing:-17.022377px;}
.ws4_c00190{word-spacing:-3.841992px;}
.wsa_c00190{word-spacing:0.000000px;}
.ws1_c00190{word-spacing:3.605976px;}
._2_c00190{margin-left:-7.672104px;}
._0_c00190{width:2.430648px;}
._b_c00190{width:3.567168px;}
._4_c00190{width:5.107410px;}
._1_c00190{width:7.359264px;}
._a_c00190{width:9.228622px;}
._7_c00190{width:12.932726px;}
._f_c00190{width:18.211644px;}
._e_c00190{width:20.855736px;}
._d_c00190{width:22.267872px;}
._c_c00190{width:27.003715px;}
._9_c00190{width:29.185200px;}
._3_c00190{width:32.780088px;}
._5_c00190{width:33.852060px;}
._6_c00190{width:37.275163px;}
._8_c00190{width:42.535786px;}
.fc0_c00190{color:transparent;}
.fs16_c00190{font-size:27.720000px;}
.fs3_c00190{font-size:33.858000px;}
.fs14_c00190{font-size:36.630000px;}
.fsb_c00190{font-size:38.610000px;}
.fsf_c00190{font-size:40.392000px;}
.fs5_c00190{font-size:41.184000px;}
.fs11_c00190{font-size:42.372000px;}
.fs13_c00190{font-size:50.292000px;}
.fs1_c00190{font-size:51.321798px;}
.fs6_c00190{font-size:52.747398px;}
.fs15_c00190{font-size:53.658000px;}
.fs4_c00190{font-size:53.856198px;}
.fs8_c00190{font-size:54.172998px;}
.fsa_c00190{font-size:57.024198px;}
.fsd_c00190{font-size:58.449798px;}
.fsc_c00190{font-size:58.608000px;}
.fs7_c00190{font-size:66.330000px;}
.fs12_c00190{font-size:68.508000px;}
.fs2_c00190{font-size:72.864000px;}
.fs9_c00190{font-size:74.448000px;}
.fs0_c00190{font-size:78.408000px;}
.fs10_c00190{font-size:79.200000px;}
.fse_c00190{font-size:106.128000px;}
.y0_c00190{bottom:0.000000px;}
.y1c_c00190{bottom:24.859935px;}
.y1_c00190{bottom:76.500000px;}
.y1b_c00190{bottom:144.253935px;}
.y1a_c00190{bottom:174.899385px;}
.y19_c00190{bottom:209.826585px;}
.y18_c00190{bottom:242.620335px;}
.y17_c00190{bottom:275.409135px;}
.y16_c00190{bottom:307.485135px;}
.y15_c00190{bottom:407.633535px;}
.y14_c00190{bottom:440.060985px;}
.y7_c00190{bottom:440.773785px;}
.y6_c00190{bottom:472.136985px;}
.y13_c00190{bottom:569.439135px;}
.y12_c00190{bottom:600.802335px;}
.y5_c00190{bottom:633.234735px;}
.y11_c00190{bottom:633.591135px;}
.y10_c00190{bottom:666.023535px;}
.y4_c00190{bottom:697.738185px;}
.yf_c00190{bottom:794.678985px;}
.yd_c00190{bottom:826.759935px;}
.ye_c00190{bottom:827.111385px;}
.y3_c00190{bottom:858.835935px;}
.yc_c00190{bottom:859.192335px;}
.yb_c00190{bottom:890.199135px;}
.ya_c00190{bottom:922.987935px;}
.y2_c00190{bottom:923.339385px;}
.y9_c00190{bottom:936.174735px;}
.y8_c00190{bottom:1076.239935px;}
.h15_c00190{height:28.911094px;}
.h5_c00190{height:33.213243px;}
.h3_c00190{height:34.180317px;}
.h8_c00190{height:35.129767px;}
.ha_c00190{height:36.079217px;}
.hc_c00190{height:37.978116px;}
.h13_c00190{height:38.203945px;}
.hd_c00190{height:38.927565px;}
.hf_c00190{height:42.127594px;}
.h7_c00190{height:42.953625px;}
.h11_c00190{height:44.192672px;}
.h14_c00190{height:52.662393px;}
.h6_c00190{height:52.856913px;}
.h9_c00190{height:69.180117px;}
.h12_c00190{height:71.451703px;}
.h4_c00190{height:71.512031px;}
.hb_c00190{height:73.066641px;}
.h2_c00190{height:76.953164px;}
.h10_c00190{height:77.691797px;}
.he_c00190{height:110.688188px;}
.h1_c00190{height:1110.000000px;}
.h0_c00190{height:1263.000000px;}
.w1_c00190{width:733.500000px;}
.w0_c00190{width:892.500000px;}
.x0_c00190{left:0.000000px;}
.x9_c00190{left:62.968485px;}
.x2_c00190{left:63.993135px;}
.x1_c00190{left:79.500000px;}
.x3_c00190{left:85.139535px;}
.x49_c00190{left:86.213685px;}
.x5a_c00190{left:98.504535px;}
.xa_c00190{left:111.092385px;}
.x44_c00190{left:119.274735px;}
.x4_c00190{left:122.130885px;}
.x4a_c00190{left:129.897435px;}
.x5_c00190{left:140.619135px;}
.x8_c00190{left:151.657635px;}
.x7_c00190{left:156.830385px;}
.xc_c00190{left:162.423885px;}
.x5b_c00190{left:165.349335px;}
.x6_c00190{left:172.353585px;}
.xb_c00190{left:173.541585px;}
.xd_c00190{left:179.199435px;}
.x4d_c00190{left:185.129535px;}
.xe_c00190{left:196.247235px;}
.x5c_c00190{left:206.671935px;}
.xf_c00190{left:207.884685px;}
.x4b_c00190{left:218.086635px;}
.x10_c00190{left:229.684485px;}
.x50_c00190{left:231.540735px;}
.x45_c00190{left:262.116885px;}
.x51_c00190{left:263.186085px;}
.x60_c00190{left:277.541085px;}
.x52_c00190{left:284.525535px;}
.x14_c00190{left:295.474935px;}
.x4e_c00190{left:307.379685px;}
.x38_c00190{left:314.349285px;}
.x53_c00190{left:317.680635px;}
.x46_c00190{left:328.857735px;}
.x39_c00190{left:332.842485px;}
.x3a_c00190{left:349.949685px;}
.x3e_c00190{left:351.137685px;}
.x15_c00190{left:359.904135px;}
.x1c_c00190{left:361.557435px;}
.x2a_c00190{left:363.661185px;}
.x2d_c00190{left:371.591085px;}
.x57_c00190{left:372.962235px;}
.x54_c00190{left:375.348135px;}
.x1d_c00190{left:379.902135px;}
.x3f_c00190{left:381.857385px;}
.x1e_c00190{left:387.777585px;}
.x16_c00190{left:394.316535px;}
.x31_c00190{left:397.187535px;}
.x2b_c00190{left:404.835285px;}
.x5d_c00190{left:406.087635px;}
.x4f_c00190{left:408.136935px;}
.x40_c00190{left:415.170885px;}
.x42_c00190{left:416.848935px;}
.x47_c00190{left:419.586285px;}
.x55_c00190{left:427.733985px;}
.x1f_c00190{left:436.911285px;}
.x4c_c00190{left:439.529835px;}
.x21_c00190{left:441.009885px;}
.x26_c00190{left:448.984335px;}
.x5e_c00190{left:450.271335px;}
.x2e_c00190{left:459.057585px;}
.x28_c00190{left:460.082235px;}
.x32_c00190{left:471.293985px;}
.x22_c00190{left:482.109735px;}
.x58_c00190{left:483.436335px;}
.x17_c00190{left:493.598685px;}
.x2c_c00190{left:511.091985px;}
.x18_c00190{left:514.913385px;}
.x23_c00190{left:526.174635px;}
.x27_c00190{left:531.055335px;}
.x3b_c00190{left:535.787535px;}
.x20_c00190{left:537.267585px;}
.x3c_c00190{left:548.662485px;}
.x2f_c00190{left:550.657335px;}
.x24_c00190{left:559.364385px;}
.x29_c00190{left:569.076285px;}
.x13_c00190{left:570.194985px;}
.x33_c00190{left:581.728485px;}
.x56_c00190{left:592.504635px;}
.x25_c00190{left:599.122785px;}
.x19_c00190{left:603.345135px;}
.x34_c00190{left:614.601435px;}
.x1a_c00190{left:625.496385px;}
.x30_c00190{left:636.336885px;}
.x3d_c00190{left:638.653485px;}
.x35_c00190{left:646.424985px;}
.x11_c00190{left:647.657535px;}
.x41_c00190{left:649.706835px;}
.x48_c00190{left:658.082235px;}
.x12_c00190{left:670.051335px;}
.x1b_c00190{left:671.442285px;}
.x36_c00190{left:680.089935px;}
.x43_c00190{left:681.772935px;}
.x59_c00190{left:691.222485px;}
.x5f_c00190{left:702.241185px;}
.x37_c00190{left:712.388685px;}
@media print{
.v3_c00190{vertical-align:-12.654400pt;}
.v4_c00190{vertical-align:-10.137600pt;}
.v1_c00190{vertical-align:-8.852800pt;}
.v0_c00190{vertical-align:0.000000pt;}
.v2_c00190{vertical-align:8.854560pt;}
.v5_c00190{vertical-align:10.147808pt;}
.ls21_c00190{letter-spacing:-3.301760pt;}
.lsf_c00190{letter-spacing:-2.439360pt;}
.ls13_c00190{letter-spacing:-2.376634pt;}
.ls1d_c00190{letter-spacing:-2.292998pt;}
.ls12_c00190{letter-spacing:-2.266880pt;}
.ls23_c00190{letter-spacing:-1.884749pt;}
.ls28_c00190{letter-spacing:-1.575130pt;}
.ls16_c00190{letter-spacing:-1.281280pt;}
.ls1f_c00190{letter-spacing:-1.052410pt;}
.ls24_c00190{letter-spacing:-0.696960pt;}
.lsd_c00190{letter-spacing:0.000000pt;}
.lsb_c00190{letter-spacing:0.411206pt;}
.ls3_c00190{letter-spacing:0.571507pt;}
.ls2_c00190{letter-spacing:0.843322pt;}
.ls15_c00190{letter-spacing:1.177862pt;}
.ls1c_c00190{letter-spacing:1.245094pt;}
.ls14_c00190{letter-spacing:1.504800pt;}
.ls26_c00190{letter-spacing:1.628000pt;}
.ls22_c00190{letter-spacing:1.795200pt;}
.ls25_c00190{letter-spacing:1.883200pt;}
.lsc_c00190{letter-spacing:2.279059pt;}
.ls27_c00190{letter-spacing:2.384800pt;}
.ls20_c00190{letter-spacing:2.704205pt;}
.ls29_c00190{letter-spacing:2.836627pt;}
.ls1e_c00190{letter-spacing:2.885414pt;}
.ls18_c00190{letter-spacing:2.948000pt;}
.ls1a_c00190{letter-spacing:3.063949pt;}
.ls11_c00190{letter-spacing:3.238400pt;}
.ls7_c00190{letter-spacing:3.380256pt;}
.lse_c00190{letter-spacing:3.484800pt;}
.lsa_c00190{letter-spacing:5.519712pt;}
.ls8_c00190{letter-spacing:9.310400pt;}
.ls5_c00190{letter-spacing:9.622976pt;}
.ls0_c00190{letter-spacing:9.658176pt;}
.ls9_c00190{letter-spacing:9.790176pt;}
.ls6_c00190{letter-spacing:10.841600pt;}
.ls1_c00190{letter-spacing:14.036880pt;}
.ls10_c00190{letter-spacing:45.619376pt;}
.ls17_c00190{letter-spacing:46.886576pt;}
.ls19_c00190{letter-spacing:48.153776pt;}
.ls1b_c00190{letter-spacing:50.688176pt;}
.ls4_c00190{letter-spacing:51.955376pt;}
.ws6_c00190{word-spacing:-94.299591pt;}
.ws7_c00190{word-spacing:-20.804256pt;}
.ws9_c00190{word-spacing:-19.703059pt;}
.ws2_c00190{word-spacing:-18.267322pt;}
.ws0_c00190{word-spacing:-17.424000pt;}
.ws5_c00190{word-spacing:-16.371590pt;}
.ws8_c00190{word-spacing:-15.848870pt;}
.ws3_c00190{word-spacing:-15.131002pt;}
.ws4_c00190{word-spacing:-3.415104pt;}
.wsa_c00190{word-spacing:0.000000pt;}
.ws1_c00190{word-spacing:3.205312pt;}
._2_c00190{margin-left:-6.819648pt;}
._0_c00190{width:2.160576pt;}
._b_c00190{width:3.170816pt;}
._4_c00190{width:4.539920pt;}
._1_c00190{width:6.541568pt;}
._a_c00190{width:8.203219pt;}
._7_c00190{width:11.495757pt;}
._f_c00190{width:16.188128pt;}
._e_c00190{width:18.538432pt;}
._d_c00190{width:19.793664pt;}
._c_c00190{width:24.003302pt;}
._9_c00190{width:25.942400pt;}
._3_c00190{width:29.137856pt;}
._5_c00190{width:30.090720pt;}
._6_c00190{width:33.133478pt;}
._8_c00190{width:37.809587pt;}
.fs16_c00190{font-size:24.640000pt;}
.fs3_c00190{font-size:30.096000pt;}
.fs14_c00190{font-size:32.560000pt;}
.fsb_c00190{font-size:34.320000pt;}
.fsf_c00190{font-size:35.904000pt;}
.fs5_c00190{font-size:36.608000pt;}
.fs11_c00190{font-size:37.664000pt;}
.fs13_c00190{font-size:44.704000pt;}
.fs1_c00190{font-size:45.619376pt;}
.fs6_c00190{font-size:46.886576pt;}
.fs15_c00190{font-size:47.696000pt;}
.fs4_c00190{font-size:47.872176pt;}
.fs8_c00190{font-size:48.153776pt;}
.fsa_c00190{font-size:50.688176pt;}
.fsd_c00190{font-size:51.955376pt;}
.fsc_c00190{font-size:52.096000pt;}
.fs7_c00190{font-size:58.960000pt;}
.fs12_c00190{font-size:60.896000pt;}
.fs2_c00190{font-size:64.768000pt;}
.fs9_c00190{font-size:66.176000pt;}
.fs0_c00190{font-size:69.696000pt;}
.fs10_c00190{font-size:70.400000pt;}
.fse_c00190{font-size:94.336000pt;}
.y0_c00190{bottom:0.000000pt;}
.y1c_c00190{bottom:22.097720pt;}
.y1_c00190{bottom:68.000000pt;}
.y1b_c00190{bottom:128.225720pt;}
.y1a_c00190{bottom:155.466120pt;}
.y19_c00190{bottom:186.512520pt;}
.y18_c00190{bottom:215.662520pt;}
.y17_c00190{bottom:244.808120pt;}
.y16_c00190{bottom:273.320120pt;}
.y15_c00190{bottom:362.340920pt;}
.y14_c00190{bottom:391.165320pt;}
.y7_c00190{bottom:391.798920pt;}
.y6_c00190{bottom:419.677320pt;}
.y13_c00190{bottom:506.168120pt;}
.y12_c00190{bottom:534.046520pt;}
.y5_c00190{bottom:562.875320pt;}
.y11_c00190{bottom:563.192120pt;}
.y10_c00190{bottom:592.020920pt;}
.y4_c00190{bottom:620.211720pt;}
.yf_c00190{bottom:706.381320pt;}
.yd_c00190{bottom:734.897720pt;}
.ye_c00190{bottom:735.210120pt;}
.y3_c00190{bottom:763.409720pt;}
.yc_c00190{bottom:763.726520pt;}
.yb_c00190{bottom:791.288120pt;}
.ya_c00190{bottom:820.433720pt;}
.y2_c00190{bottom:820.746120pt;}
.y9_c00190{bottom:832.155320pt;}
.y8_c00190{bottom:956.657720pt;}
.h15_c00190{height:25.698750pt;}
.h5_c00190{height:29.522883pt;}
.h3_c00190{height:30.382504pt;}
.h8_c00190{height:31.226460pt;}
.ha_c00190{height:32.070415pt;}
.hc_c00190{height:33.758325pt;}
.h13_c00190{height:33.959063pt;}
.hd_c00190{height:34.602280pt;}
.hf_c00190{height:37.446750pt;}
.h7_c00190{height:38.181000pt;}
.h11_c00190{height:39.282375pt;}
.h14_c00190{height:46.811016pt;}
.h6_c00190{height:46.983923pt;}
.h9_c00190{height:61.493438pt;}
.h12_c00190{height:63.512625pt;}
.h4_c00190{height:63.566250pt;}
.hb_c00190{height:64.948125pt;}
.h2_c00190{height:68.402813pt;}
.h10_c00190{height:69.059375pt;}
.he_c00190{height:98.389500pt;}
.h1_c00190{height:986.666667pt;}
.h0_c00190{height:1122.666667pt;}
.w1_c00190{width:652.000000pt;}
.w0_c00190{width:793.333333pt;}
.x0_c00190{left:0.000000pt;}
.x9_c00190{left:55.971987pt;}
.x2_c00190{left:56.882787pt;}
.x1_c00190{left:70.666667pt;}
.x3_c00190{left:75.679587pt;}
.x49_c00190{left:76.634387pt;}
.x5a_c00190{left:87.559587pt;}
.xa_c00190{left:98.748787pt;}
.x44_c00190{left:106.021987pt;}
.x4_c00190{left:108.560787pt;}
.x4a_c00190{left:115.464387pt;}
.x5_c00190{left:124.994787pt;}
.x8_c00190{left:134.806787pt;}
.x7_c00190{left:139.404787pt;}
.xc_c00190{left:144.376787pt;}
.x5b_c00190{left:146.977187pt;}
.x6_c00190{left:153.203187pt;}
.xb_c00190{left:154.259187pt;}
.xd_c00190{left:159.288387pt;}
.x4d_c00190{left:164.559587pt;}
.xe_c00190{left:174.441987pt;}
.x5c_c00190{left:183.708387pt;}
.xf_c00190{left:184.786387pt;}
.x4b_c00190{left:193.854787pt;}
.x10_c00190{left:204.163987pt;}
.x50_c00190{left:205.813987pt;}
.x45_c00190{left:232.992787pt;}
.x51_c00190{left:233.943187pt;}
.x60_c00190{left:246.703187pt;}
.x52_c00190{left:252.911587pt;}
.x14_c00190{left:262.644387pt;}
.x4e_c00190{left:273.226387pt;}
.x38_c00190{left:279.421587pt;}
.x53_c00190{left:282.382787pt;}
.x46_c00190{left:292.317987pt;}
.x39_c00190{left:295.859987pt;}
.x3a_c00190{left:311.066387pt;}
.x3e_c00190{left:312.122387pt;}
.x15_c00190{left:319.914787pt;}
.x1c_c00190{left:321.384387pt;}
.x2a_c00190{left:323.254387pt;}
.x2d_c00190{left:330.303187pt;}
.x57_c00190{left:331.521987pt;}
.x54_c00190{left:333.642787pt;}
.x1d_c00190{left:337.690787pt;}
.x3f_c00190{left:339.428787pt;}
.x1e_c00190{left:344.691187pt;}
.x16_c00190{left:350.503587pt;}
.x31_c00190{left:353.055587pt;}
.x2b_c00190{left:359.853587pt;}
.x5d_c00190{left:360.966787pt;}
.x4f_c00190{left:362.788387pt;}
.x40_c00190{left:369.040787pt;}
.x42_c00190{left:370.532387pt;}
.x47_c00190{left:372.965587pt;}
.x55_c00190{left:380.207987pt;}
.x1f_c00190{left:388.365587pt;}
.x4c_c00190{left:390.693187pt;}
.x21_c00190{left:392.008787pt;}
.x26_c00190{left:399.097187pt;}
.x5e_c00190{left:400.241187pt;}
.x2e_c00190{left:408.051187pt;}
.x28_c00190{left:408.961987pt;}
.x32_c00190{left:418.927987pt;}
.x22_c00190{left:428.541987pt;}
.x58_c00190{left:429.721187pt;}
.x17_c00190{left:438.754387pt;}
.x2c_c00190{left:454.303987pt;}
.x18_c00190{left:457.700787pt;}
.x23_c00190{left:467.710787pt;}
.x27_c00190{left:472.049187pt;}
.x3b_c00190{left:476.255587pt;}
.x20_c00190{left:477.571187pt;}
.x3c_c00190{left:487.699987pt;}
.x2f_c00190{left:489.473187pt;}
.x24_c00190{left:497.212787pt;}
.x29_c00190{left:505.845587pt;}
.x13_c00190{left:506.839987pt;}
.x33_c00190{left:517.091987pt;}
.x56_c00190{left:526.670787pt;}
.x25_c00190{left:532.553587pt;}
.x19_c00190{left:536.306787pt;}
.x34_c00190{left:546.312387pt;}
.x1a_c00190{left:555.996787pt;}
.x30_c00190{left:565.632787pt;}
.x3d_c00190{left:567.691987pt;}
.x35_c00190{left:574.599987pt;}
.x11_c00190{left:575.695587pt;}
.x41_c00190{left:577.517187pt;}
.x48_c00190{left:584.961987pt;}
.x12_c00190{left:595.601187pt;}
.x1b_c00190{left:596.837587pt;}
.x36_c00190{left:604.524387pt;}
.x43_c00190{left:606.020387pt;}
.x59_c00190{left:614.419987pt;}
.x5f_c00190{left:624.214387pt;}
.x37_c00190{left:633.234387pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6a36408c73f69f27ec359390.woff2')format("woff");}.ff1_c00191{font-family:ff1_c00191;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00191;src:url('chunks/assets/font_f54d31a66b27384d69b0446e.woff2')format("woff");}.ff2_c00191{font-family:ff2_c00191;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.maa_c00191{transform:matrix(0.138889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138889,0.000000,0.000000,0.250000,0,0);}
.m63_c00191{transform:matrix(0.150656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150656,0.000000,0.000000,0.250000,0,0);}
.mab_c00191{transform:matrix(0.152777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152777,0.000000,0.000000,0.250000,0,0);}
.m74_c00191{transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);}
.m76_c00191{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m75_c00191{transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);}
.m93_c00191{transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);}
.ma4_c00191{transform:matrix(0.213031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213031,0.000000,0.000000,0.250000,0,0);}
.m83_c00191{transform:matrix(0.224050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224050,0.000000,0.000000,0.250000,0,0);}
.m8d_c00191{transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);}
.m40_c00191{transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);}
.mb6_c00191{transform:matrix(0.237876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237876,0.000000,0.000000,0.250000,0,0);}
.m4f_c00191{transform:matrix(0.239577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239577,0.000000,0.000000,0.250000,0,0);}
.m1_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);}
.m51_c00191{transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);}
.mc2_c00191{transform:matrix(0.252879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252879,0.000000,0.000000,0.250000,0,0);}
.m50_c00191{transform:matrix(0.253254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253254,0.000000,0.000000,0.250000,0,0);}
.m82_c00191{transform:matrix(0.254404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254404,0.000000,0.000000,0.250000,0,0);}
.mc7_c00191{transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);}
.mb4_c00191{transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);}
.m97_c00191{transform:matrix(0.256952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256952,0.000000,0.000000,0.250000,0,0);}
.mb_c00191{transform:matrix(0.257794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257794,0.000000,0.000000,0.250000,0,0);}
.m5b_c00191{transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);}
.m32_c00191{transform:matrix(0.259181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259181,0.000000,0.000000,0.250000,0,0);}
.m4e_c00191{transform:matrix(0.259597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259597,0.000000,0.000000,0.250000,0,0);}
.m1c_c00191{transform:matrix(0.259723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259723,0.000000,0.000000,0.250000,0,0);}
.m7c_c00191{transform:matrix(0.260756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260756,0.000000,0.000000,0.250000,0,0);}
.m57_c00191{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m9b_c00191{transform:matrix(0.261106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261106,0.000000,0.000000,0.250000,0,0);}
.m88_c00191{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.m43_c00191{transform:matrix(0.261993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261993,0.000000,0.000000,0.250000,0,0);}
.m42_c00191{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m24_c00191{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m8c_c00191{transform:matrix(0.264648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264648,0.000000,0.000000,0.250000,0,0);}
.m53_c00191{transform:matrix(0.264878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264878,0.000000,0.000000,0.250000,0,0);}
.m19_c00191{transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);}
.m3c_c00191{transform:matrix(0.265853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265853,0.000000,0.000000,0.250000,0,0);}
.m20_c00191{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m84_c00191{transform:matrix(0.266295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266295,0.000000,0.000000,0.250000,0,0);}
.m56_c00191{transform:matrix(0.267419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267419,0.000000,0.000000,0.250000,0,0);}
.m13_c00191{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m95_c00191{transform:matrix(0.268316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268316,0.000000,0.000000,0.250000,0,0);}
.m18_c00191{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.mf_c00191{transform:matrix(0.268624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268624,0.000000,0.000000,0.250000,0,0);}
.m6_c00191{transform:matrix(0.268833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268833,0.000000,0.000000,0.250000,0,0);}
.ma_c00191{transform:matrix(0.269152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269152,0.000000,0.000000,0.250000,0,0);}
.ma5_c00191{transform:matrix(0.272544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272544,0.000000,0.000000,0.250000,0,0);}
.m4d_c00191{transform:matrix(0.272610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272610,0.000000,0.000000,0.250000,0,0);}
.m7a_c00191{transform:matrix(0.272719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272719,0.000000,0.000000,0.250000,0,0);}
.m3d_c00191{transform:matrix(0.273343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273343,0.000000,0.000000,0.250000,0,0);}
.m5e_c00191{transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);}
.m73_c00191{transform:matrix(0.274344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274344,0.000000,0.000000,0.250000,0,0);}
.maf_c00191{transform:matrix(0.274422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274422,0.000000,0.000000,0.250000,0,0);}
.m92_c00191{transform:matrix(0.274964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274964,0.000000,0.000000,0.250000,0,0);}
.mcd_c00191{transform:matrix(0.275573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275573,0.000000,0.000000,0.250000,0,0);}
.m94_c00191{transform:matrix(0.275905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275905,0.000000,0.000000,0.250000,0,0);}
.m34_c00191{transform:matrix(0.276219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276219,0.000000,0.000000,0.250000,0,0);}
.mb8_c00191{transform:matrix(0.276336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276336,0.000000,0.000000,0.250000,0,0);}
.m87_c00191{transform:matrix(0.276460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276460,0.000000,0.000000,0.250000,0,0);}
.m44_c00191{transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);}
.mad_c00191{transform:matrix(0.277545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277545,0.000000,0.000000,0.250000,0,0);}
.mae_c00191{transform:matrix(0.277902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277902,0.000000,0.000000,0.250000,0,0);}
.ma2_c00191{transform:matrix(0.278057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278057,0.000000,0.000000,0.250000,0,0);}
.m45_c00191{transform:matrix(0.278106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278106,0.000000,0.000000,0.250000,0,0);}
.m60_c00191{transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);}
.mc6_c00191{transform:matrix(0.279794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279794,0.000000,0.000000,0.250000,0,0);}
.ma6_c00191{transform:matrix(0.279941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279941,0.000000,0.000000,0.250000,0,0);}
.m78_c00191{transform:matrix(0.280061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280061,0.000000,0.000000,0.250000,0,0);}
.m64_c00191{transform:matrix(0.280084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280084,0.000000,0.000000,0.250000,0,0);}
.m8a_c00191{transform:matrix(0.280310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280310,0.000000,0.000000,0.250000,0,0);}
.mc9_c00191{transform:matrix(0.280688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280688,0.000000,0.000000,0.250000,0,0);}
.m33_c00191{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.m7d_c00191{transform:matrix(0.281783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281783,0.000000,0.000000,0.250000,0,0);}
.m4_c00191{transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);}
.mca_c00191{transform:matrix(0.282334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282334,0.000000,0.000000,0.250000,0,0);}
.m9e_c00191{transform:matrix(0.282543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282543,0.000000,0.000000,0.250000,0,0);}
.m79_c00191{transform:matrix(0.282583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282583,0.000000,0.000000,0.250000,0,0);}
.m0_c00191{transform:matrix(0.283036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283036,0.000000,0.000000,0.250000,0,0);}
.m70_c00191{transform:matrix(0.283313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283313,0.000000,0.000000,0.250000,0,0);}
.m38_c00191{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m2d_c00191{transform:matrix(0.283635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283635,0.000000,0.000000,0.250000,0,0);}
.m8_c00191{transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);}
.m62_c00191{transform:matrix(0.284399,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284399,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284399,0.000000,0.000000,0.250000,0,0);}
.mb3_c00191{transform:matrix(0.284599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284599,0.000000,0.000000,0.250000,0,0);}
.m2a_c00191{transform:matrix(0.285386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285386,0.000000,0.000000,0.250000,0,0);}
.m48_c00191{transform:matrix(0.285479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285479,0.000000,0.000000,0.250000,0,0);}
.m3f_c00191{transform:matrix(0.286388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286388,0.000000,0.000000,0.250000,0,0);}
.m30_c00191{transform:matrix(0.286878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286878,0.000000,0.000000,0.250000,0,0);}
.mba_c00191{transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);}
.m6d_c00191{transform:matrix(0.287575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287575,0.000000,0.000000,0.250000,0,0);}
.m4a_c00191{transform:matrix(0.287700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287700,0.000000,0.000000,0.250000,0,0);}
.ma0_c00191{transform:matrix(0.288104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288104,0.000000,0.000000,0.250000,0,0);}
.m80_c00191{transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);}
.m28_c00191{transform:matrix(0.288801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288801,0.000000,0.000000,0.250000,0,0);}
.m36_c00191{transform:matrix(0.288839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288839,0.000000,0.000000,0.250000,0,0);}
.m3a_c00191{transform:matrix(0.289270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289270,0.000000,0.000000,0.250000,0,0);}
.m68_c00191{transform:matrix(0.289620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289620,0.000000,0.000000,0.250000,0,0);}
.m5c_c00191{transform:matrix(0.289989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289989,0.000000,0.000000,0.250000,0,0);}
.mc0_c00191{transform:matrix(0.290787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290787,0.000000,0.000000,0.250000,0,0);}
.m85_c00191{transform:matrix(0.291154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291154,0.000000,0.000000,0.250000,0,0);}
.m9f_c00191{transform:matrix(0.291650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291650,0.000000,0.000000,0.250000,0,0);}
.m91_c00191{transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);}
.m8b_c00191{transform:matrix(0.291994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291994,0.000000,0.000000,0.250000,0,0);}
.m23_c00191{transform:matrix(0.292612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292612,0.000000,0.000000,0.250000,0,0);}
.m1f_c00191{transform:matrix(0.294055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294055,0.000000,0.000000,0.250000,0,0);}
.mbc_c00191{transform:matrix(0.294124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294124,0.000000,0.000000,0.250000,0,0);}
.m54_c00191{transform:matrix(0.295385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295385,0.000000,0.000000,0.250000,0,0);}
.m72_c00191{transform:matrix(0.296141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296141,0.000000,0.000000,0.250000,0,0);}
.m37_c00191{transform:matrix(0.296415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296415,0.000000,0.000000,0.250000,0,0);}
.m77_c00191{transform:matrix(0.296436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296436,0.000000,0.000000,0.250000,0,0);}
.m61_c00191{transform:matrix(0.296723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296723,0.000000,0.000000,0.250000,0,0);}
.m66_c00191{transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);}
.m9_c00191{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m7b_c00191{transform:matrix(0.297216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297216,0.000000,0.000000,0.250000,0,0);}
.m5a_c00191{transform:matrix(0.298951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298951,0.000000,0.000000,0.250000,0,0);}
.m96_c00191{transform:matrix(0.299932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299932,0.000000,0.000000,0.250000,0,0);}
.mc1_c00191{transform:matrix(0.300336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300336,0.000000,0.000000,0.250000,0,0);}
.m86_c00191{transform:matrix(0.300614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300614,0.000000,0.000000,0.250000,0,0);}
.m2b_c00191{transform:matrix(0.301315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301315,0.000000,0.000000,0.250000,0,0);}
.m71_c00191{transform:matrix(0.301888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301888,0.000000,0.000000,0.250000,0,0);}
.m8e_c00191{transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);}
.m1b_c00191{transform:matrix(0.304982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304982,0.000000,0.000000,0.250000,0,0);}
.m69_c00191{transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);}
.m4c_c00191{transform:matrix(0.305693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305693,0.000000,0.000000,0.250000,0,0);}
.m1a_c00191{transform:matrix(0.306460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306460,0.000000,0.000000,0.250000,0,0);}
.m52_c00191{transform:matrix(0.307239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307239,0.000000,0.000000,0.250000,0,0);}
.mbd_c00191{transform:matrix(0.307350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307350,0.000000,0.000000,0.250000,0,0);}
.m1e_c00191{transform:matrix(0.307491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307491,0.000000,0.000000,0.250000,0,0);}
.mbb_c00191{transform:matrix(0.307590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307590,0.000000,0.000000,0.250000,0,0);}
.m7_c00191{transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);}
.m16_c00191{transform:matrix(0.308448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308448,0.000000,0.000000,0.250000,0,0);}
.m29_c00191{transform:matrix(0.308564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308564,0.000000,0.000000,0.250000,0,0);}
.m5f_c00191{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.mbe_c00191{transform:matrix(0.308602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308602,0.000000,0.000000,0.250000,0,0);}
.m47_c00191{transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);}
.mc4_c00191{transform:matrix(0.310271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310271,0.000000,0.000000,0.250000,0,0);}
.m99_c00191{transform:matrix(0.310470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310470,0.000000,0.000000,0.250000,0,0);}
.m6b_c00191{transform:matrix(0.311223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311223,0.000000,0.000000,0.250000,0,0);}
.mcc_c00191{transform:matrix(0.311932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311932,0.000000,0.000000,0.250000,0,0);}
.m2e_c00191{transform:matrix(0.311970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311970,0.000000,0.000000,0.250000,0,0);}
.m9c_c00191{transform:matrix(0.312248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312248,0.000000,0.000000,0.250000,0,0);}
.me_c00191{transform:matrix(0.312266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312266,0.000000,0.000000,0.250000,0,0);}
.m46_c00191{transform:matrix(0.312319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312319,0.000000,0.000000,0.250000,0,0);}
.m6f_c00191{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.m58_c00191{transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);}
.m39_c00191{transform:matrix(0.313670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313670,0.000000,0.000000,0.250000,0,0);}
.m6c_c00191{transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);}
.m3_c00191{transform:matrix(0.314432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314432,0.000000,0.000000,0.250000,0,0);}
.m17_c00191{transform:matrix(0.315717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315717,0.000000,0.000000,0.250000,0,0);}
.m35_c00191{transform:matrix(0.316105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316105,0.000000,0.000000,0.250000,0,0);}
.m2_c00191{transform:matrix(0.317494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317494,0.000000,0.000000,0.250000,0,0);}
.mb5_c00191{transform:matrix(0.319176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319176,0.000000,0.000000,0.250000,0,0);}
.m8f_c00191{transform:matrix(0.319290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319290,0.000000,0.000000,0.250000,0,0);}
.mb0_c00191{transform:matrix(0.320922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320922,0.000000,0.000000,0.250000,0,0);}
.m6e_c00191{transform:matrix(0.321236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321236,0.000000,0.000000,0.250000,0,0);}
.mb2_c00191{transform:matrix(0.321641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321641,0.000000,0.000000,0.250000,0,0);}
.m5_c00191{transform:matrix(0.323210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323210,0.000000,0.000000,0.250000,0,0);}
.m22_c00191{transform:matrix(0.323406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323406,0.000000,0.000000,0.250000,0,0);}
.m81_c00191{transform:matrix(0.323646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323646,0.000000,0.000000,0.250000,0,0);}
.m10_c00191{transform:matrix(0.324318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324318,0.000000,0.000000,0.250000,0,0);}
.mac_c00191{transform:matrix(0.324794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324794,0.000000,0.000000,0.250000,0,0);}
.m49_c00191{transform:matrix(0.325206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325206,0.000000,0.000000,0.250000,0,0);}
.m55_c00191{transform:matrix(0.329713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329713,0.000000,0.000000,0.250000,0,0);}
.mc_c00191{transform:matrix(0.329979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329979,0.000000,0.000000,0.250000,0,0);}
.m12_c00191{transform:matrix(0.330073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330073,0.000000,0.000000,0.250000,0,0);}
.m41_c00191{transform:matrix(0.330460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330460,0.000000,0.000000,0.250000,0,0);}
.ma9_c00191{transform:matrix(0.331416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331416,0.000000,0.000000,0.250000,0,0);}
.mc8_c00191{transform:matrix(0.331602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331602,0.000000,0.000000,0.250000,0,0);}
.m7e_c00191{transform:matrix(0.331967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331967,0.000000,0.000000,0.250000,0,0);}
.m21_c00191{transform:matrix(0.332335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332335,0.000000,0.000000,0.250000,0,0);}
.md_c00191{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m9a_c00191{transform:matrix(0.333277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333277,0.000000,0.000000,0.250000,0,0);}
.m25_c00191{transform:matrix(0.333608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333608,0.000000,0.000000,0.250000,0,0);}
.m3e_c00191{transform:matrix(0.334121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334121,0.000000,0.000000,0.250000,0,0);}
.m15_c00191{transform:matrix(0.336403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336403,0.000000,0.000000,0.250000,0,0);}
.m65_c00191{transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);}
.mbf_c00191{transform:matrix(0.338458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338458,0.000000,0.000000,0.250000,0,0);}
.m31_c00191{transform:matrix(0.338749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338749,0.000000,0.000000,0.250000,0,0);}
.m89_c00191{transform:matrix(0.340476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340476,0.000000,0.000000,0.250000,0,0);}
.m1d_c00191{transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);}
.mb1_c00191{transform:matrix(0.342184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342184,0.000000,0.000000,0.250000,0,0);}
.m9d_c00191{transform:matrix(0.342926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342926,0.000000,0.000000,0.250000,0,0);}
.ma8_c00191{transform:matrix(0.343069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343069,0.000000,0.000000,0.250000,0,0);}
.m2f_c00191{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.ma3_c00191{transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);}
.m7f_c00191{transform:matrix(0.344324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344324,0.000000,0.000000,0.250000,0,0);}
.m26_c00191{transform:matrix(0.344556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344556,0.000000,0.000000,0.250000,0,0);}
.mb7_c00191{transform:matrix(0.344844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344844,0.000000,0.000000,0.250000,0,0);}
.mc3_c00191{transform:matrix(0.347013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347013,0.000000,0.000000,0.250000,0,0);}
.m5d_c00191{transform:matrix(0.347068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347068,0.000000,0.000000,0.250000,0,0);}
.m2c_c00191{transform:matrix(0.347316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347316,0.000000,0.000000,0.250000,0,0);}
.m14_c00191{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m6a_c00191{transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);}
.m67_c00191{transform:matrix(0.350956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350956,0.000000,0.000000,0.250000,0,0);}
.mcb_c00191{transform:matrix(0.352586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352586,0.000000,0.000000,0.250000,0,0);}
.m59_c00191{transform:matrix(0.354540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354540,0.000000,0.000000,0.250000,0,0);}
.m27_c00191{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m4b_c00191{transform:matrix(0.357416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357416,0.000000,0.000000,0.250000,0,0);}
.m3b_c00191{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.mc5_c00191{transform:matrix(0.362499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362499,0.000000,0.000000,0.250000,0,0);}
.ma7_c00191{transform:matrix(0.363115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363115,0.000000,0.000000,0.250000,0,0);}
.ma1_c00191{transform:matrix(0.372775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372775,0.000000,0.000000,0.250000,0,0);}
.m11_c00191{transform:matrix(0.373581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373581,0.000000,0.000000,0.250000,0,0);}
.m90_c00191{transform:matrix(0.377753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377753,0.000000,0.000000,0.250000,0,0);}
.m98_c00191{transform:matrix(0.396487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396487,0.000000,0.000000,0.250000,0,0);}
.mb9_c00191{transform:matrix(0.421610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421610,0.000000,0.000000,0.250000,0,0);}
.v0_c00191{vertical-align:0.000000px;}
.ls6_c00191{letter-spacing:-2.744280px;}
.ls5_c00191{letter-spacing:-2.375762px;}
.ls2_c00191{letter-spacing:-0.785428px;}
.ls9_c00191{letter-spacing:-0.486130px;}
.ls8_c00191{letter-spacing:-0.180338px;}
.ls4_c00191{letter-spacing:0.000000px;}
.lsc_c00191{letter-spacing:0.392040px;}
.lsb_c00191{letter-spacing:1.301573px;}
.lsd_c00191{letter-spacing:3.112798px;}
.ls3_c00191{letter-spacing:3.920400px;}
.ls1_c00191{letter-spacing:4.177810px;}
.ls7_c00191{letter-spacing:4.356000px;}
.ls0_c00191{letter-spacing:12.623688px;}
.lsa_c00191{letter-spacing:51.321798px;}
.sc__c00191{text-shadow:none;}
.sc0_c00191{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00191{-webkit-text-stroke:0px transparent;}
.sc0_c00191{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00191{word-spacing:-19.602000px;}
.ws1_c00191{word-spacing:0.000000px;}
._8_c00191{margin-left:-3.920400px;}
._e_c00191{width:4.312440px;}
._4_c00191{width:5.488560px;}
._5_c00191{width:6.507864px;}
._c_c00191{width:7.683984px;}
._7_c00191{width:8.703288px;}
._6_c00191{width:10.036224px;}
._2_c00191{width:11.918808px;}
._1_c00191{width:20.855736px;}
._3_c00191{width:26.710200px;}
._d_c00191{width:32.068872px;}
._b_c00191{width:33.742368px;}
._0_c00191{width:35.362008px;}
._f_c00191{width:40.380120px;}
._a_c00191{width:43.516440px;}
._9_c00191{width:44.849376px;}
.fc0_c00191{color:transparent;}
.fs4_c00191{font-size:51.321798px;}
.fs2_c00191{font-size:76.824000px;}
.fs1_c00191{font-size:78.408000px;}
.fs0_c00191{font-size:83.556198px;}
.fs3_c00191{font-size:87.120000px;}
.y0_c00191{bottom:0.000000px;}
.y1_c00191{bottom:76.500000px;}
.y1a_c00191{bottom:172.760985px;}
.y19_c00191{bottom:207.331785px;}
.y18_c00191{bottom:239.769135px;}
.y17_c00191{bottom:272.201535px;}
.y16_c00191{bottom:304.277535px;}
.y15_c00191{bottom:336.348585px;}
.y14_c00191{bottom:368.785935px;}
.y13_c00191{bottom:368.793063px;}
.y12_c00191{bottom:400.861935px;}
.y11_c00191{bottom:433.294335px;}
.y10_c00191{bottom:466.083135px;}
.yf_c00191{bottom:498.159135px;}
.ye_c00191{bottom:530.947935px;}
.yd_c00191{bottom:564.449535px;}
.yc_c00191{bottom:596.876985px;}
.yb_c00191{bottom:628.601535px;}
.ya_c00191{bottom:663.167385px;}
.y9_c00191{bottom:695.248335px;}
.y8_c00191{bottom:727.680735px;}
.y7_c00191{bottom:792.540585px;}
.y6_c00191{bottom:824.621535px;}
.y5_c00191{bottom:857.053935px;}
.y4_c00191{bottom:889.481385px;}
.y3_c00191{bottom:923.339385px;}
.y2_c00191{bottom:1077.304185px;}
.h5_c00191{height:34.180317px;}
.h3_c00191{height:76.953164px;}
.h2_c00191{height:82.005839px;}
.h4_c00191{height:85.503516px;}
.h1_c00191{height:1110.000000px;}
.h0_c00191{height:1263.000000px;}
.w1_c00191{width:733.500000px;}
.w0_c00191{width:892.500000px;}
.x0_c00191{left:0.000000px;}
.x32_c00191{left:60.909285px;}
.x4_c00191{left:62.082435px;}
.x52_c00191{left:63.211035px;}
.x1_c00191{left:79.500000px;}
.x5_c00191{left:83.862435px;}
.x15_c00191{left:95.247435px;}
.x5c_c00191{left:96.737385px;}
.x2e_c00191{left:105.043485px;}
.x20_c00191{left:106.726485px;}
.x46_c00191{left:116.864085px;}
.x5d_c00191{left:117.908535px;}
.x26_c00191{left:119.482635px;}
.x6_c00191{left:127.264035px;}
.x55_c00191{left:128.476785px;}
.x7_c00191{left:139.134135px;}
.x66_c00191{left:140.386485px;}
.x53_c00191{left:149.989485px;}
.x8_c00191{left:160.681485px;}
.x16_c00191{left:171.591285px;}
.x4a_c00191{left:172.635735px;}
.x17_c00191{left:182.793135px;}
.x2b_c00191{left:194.044485px;}
.x61_c00191{left:195.118635px;}
.x33_c00191{left:205.058235px;}
.x4c_c00191{left:206.464035px;}
.x18_c00191{left:216.863985px;}
.x9_c00191{left:227.065935px;}
.x39_c00191{left:237.332235px;}
.x3d_c00191{left:238.832085px;}
.x42_c00191{left:249.632985px;}
.x62_c00191{left:250.885335px;}
.x2c_c00191{left:261.057585px;}
.x19_c00191{left:271.546635px;}
.x56_c00191{left:272.764335px;}
.x2d_c00191{left:282.946485px;}
.xa_c00191{left:293.123685px;}
.x43_c00191{left:294.856185px;}
.x27_c00191{left:304.528485px;}
.x34_c00191{left:306.458985px;}
.x3a_c00191{left:314.304735px;}
.x47_c00191{left:315.903585px;}
.x63_c00191{left:317.037135px;}
.x35_c00191{left:325.714485px;}
.x21_c00191{left:327.258885px;}
.xb_c00191{left:337.668735px;}
.x28_c00191{left:339.930885px;}
.x22_c00191{left:349.004235px;}
.x5a_c00191{left:352.523685px;}
.x1a_c00191{left:359.770485px;}
.x4d_c00191{left:360.829785px;}
.x69_c00191{left:363.393885px;}
.xc_c00191{left:370.477335px;}
.xd_c00191{left:380.288235px;}
.x23_c00191{left:382.030635px;}
.x5e_c00191{left:383.570085px;}
.x1b_c00191{left:392.881035px;}
.x57_c00191{left:393.979935px;}
.x2f_c00191{left:403.934385px;}
.x67_c00191{left:405.384735px;}
.xe_c00191{left:414.883785px;}
.x1c_c00191{left:426.070785px;}
.x1d_c00191{left:436.327185px;}
.xf_c00191{left:447.702285px;}
.x29_c00191{left:459.166485px;}
.x3e_c00191{left:461.567235px;}
.x4b_c00191{left:470.026785px;}
.x58_c00191{left:473.264085px;}
.x24_c00191{left:481.481085px;}
.x5b_c00191{left:482.609685px;}
.x1e_c00191{left:491.074185px;}
.x2a_c00191{left:492.361185px;}
.x3f_c00191{left:502.766085px;}
.x5f_c00191{left:503.968935px;}
.x36_c00191{left:514.091685px;}
.x4e_c00191{left:515.730135px;}
.x10_c00191{left:524.437185px;}
.x44_c00191{left:527.417085px;}
.x37_c00191{left:536.074635px;}
.x64_c00191{left:537.237885px;}
.x4f_c00191{left:547.251735px;}
.x11_c00191{left:558.631785px;}
.x6b_c00191{left:561.007785px;}
.x38_c00191{left:569.294085px;}
.x40_c00191{left:570.907785px;}
.x12_c00191{left:579.500985px;}
.x25_c00191{left:581.075085px;}
.x30_c00191{left:591.074085px;}
.x3b_c00191{left:600.543435px;}
.x45_c00191{left:602.137335px;}
.x68_c00191{left:610.042485px;}
.x31_c00191{left:611.898735px;}
.x1f_c00191{left:613.165935px;}
.x50_c00191{left:614.205435px;}
.x13_c00191{left:624.496485px;}
.x48_c00191{left:635.237985px;}
.x59_c00191{left:645.093435px;}
.x2_c00191{left:646.236885px;}
.x6a_c00191{left:647.662485px;}
.x14_c00191{left:657.171435px;}
.x3_c00191{left:667.888185px;}
.x65_c00191{left:669.823635px;}
.x41_c00191{left:678.268335px;}
.x51_c00191{left:680.154285px;}
.x54_c00191{left:690.034485px;}
.x49_c00191{left:691.895685px;}
.x3c_c00191{left:700.845285px;}
.x60_c00191{left:723.625185px;}
@media print{
.v0_c00191{vertical-align:0.000000pt;}
.ls6_c00191{letter-spacing:-2.439360pt;}
.ls5_c00191{letter-spacing:-2.111789pt;}
.ls2_c00191{letter-spacing:-0.698158pt;}
.ls9_c00191{letter-spacing:-0.432115pt;}
.ls8_c00191{letter-spacing:-0.160301pt;}
.ls4_c00191{letter-spacing:0.000000pt;}
.lsc_c00191{letter-spacing:0.348480pt;}
.lsb_c00191{letter-spacing:1.156954pt;}
.lsd_c00191{letter-spacing:2.766931pt;}
.ls3_c00191{letter-spacing:3.484800pt;}
.ls1_c00191{letter-spacing:3.713609pt;}
.ls7_c00191{letter-spacing:3.872000pt;}
.ls0_c00191{letter-spacing:11.221056pt;}
.lsa_c00191{letter-spacing:45.619376pt;}
.ws0_c00191{word-spacing:-17.424000pt;}
.ws1_c00191{word-spacing:0.000000pt;}
._8_c00191{margin-left:-3.484800pt;}
._e_c00191{width:3.833280pt;}
._4_c00191{width:4.878720pt;}
._5_c00191{width:5.784768pt;}
._c_c00191{width:6.830208pt;}
._7_c00191{width:7.736256pt;}
._6_c00191{width:8.921088pt;}
._2_c00191{width:10.594496pt;}
._1_c00191{width:18.538432pt;}
._3_c00191{width:23.742400pt;}
._d_c00191{width:28.505664pt;}
._b_c00191{width:29.993216pt;}
._0_c00191{width:31.432896pt;}
._f_c00191{width:35.893440pt;}
._a_c00191{width:38.681280pt;}
._9_c00191{width:39.866112pt;}
.fs4_c00191{font-size:45.619376pt;}
.fs2_c00191{font-size:68.288000pt;}
.fs1_c00191{font-size:69.696000pt;}
.fs0_c00191{font-size:74.272176pt;}
.fs3_c00191{font-size:77.440000pt;}
.y0_c00191{bottom:0.000000pt;}
.y1_c00191{bottom:68.000000pt;}
.y1a_c00191{bottom:153.565320pt;}
.y19_c00191{bottom:184.294920pt;}
.y18_c00191{bottom:213.128120pt;}
.y17_c00191{bottom:241.956920pt;}
.y16_c00191{bottom:270.468920pt;}
.y15_c00191{bottom:298.976520pt;}
.y14_c00191{bottom:327.809720pt;}
.y13_c00191{bottom:327.816056pt;}
.y12_c00191{bottom:356.321720pt;}
.y11_c00191{bottom:385.150520pt;}
.y10_c00191{bottom:414.296120pt;}
.yf_c00191{bottom:442.808120pt;}
.ye_c00191{bottom:471.953720pt;}
.yd_c00191{bottom:501.732920pt;}
.yc_c00191{bottom:530.557320pt;}
.yb_c00191{bottom:558.756920pt;}
.ya_c00191{bottom:589.482120pt;}
.y9_c00191{bottom:617.998520pt;}
.y8_c00191{bottom:646.827320pt;}
.y7_c00191{bottom:704.480520pt;}
.y6_c00191{bottom:732.996920pt;}
.y5_c00191{bottom:761.825720pt;}
.y4_c00191{bottom:790.650120pt;}
.y3_c00191{bottom:820.746120pt;}
.y2_c00191{bottom:957.603720pt;}
.h5_c00191{height:30.382504pt;}
.h3_c00191{height:68.402813pt;}
.h2_c00191{height:72.894079pt;}
.h4_c00191{height:76.003125pt;}
.h1_c00191{height:986.666667pt;}
.h0_c00191{height:1122.666667pt;}
.w1_c00191{width:652.000000pt;}
.w0_c00191{width:793.333333pt;}
.x0_c00191{left:0.000000pt;}
.x32_c00191{left:54.141587pt;}
.x4_c00191{left:55.184387pt;}
.x52_c00191{left:56.187587pt;}
.x1_c00191{left:70.666667pt;}
.x5_c00191{left:74.544387pt;}
.x15_c00191{left:84.664387pt;}
.x5c_c00191{left:85.988787pt;}
.x2e_c00191{left:93.371987pt;}
.x20_c00191{left:94.867987pt;}
.x46_c00191{left:103.879187pt;}
.x5d_c00191{left:104.807587pt;}
.x26_c00191{left:106.206787pt;}
.x6_c00191{left:113.123587pt;}
.x55_c00191{left:114.201587pt;}
.x7_c00191{left:123.674787pt;}
.x66_c00191{left:124.787987pt;}
.x53_c00191{left:133.323987pt;}
.x8_c00191{left:142.827987pt;}
.x16_c00191{left:152.525587pt;}
.x4a_c00191{left:153.453987pt;}
.x17_c00191{left:162.482787pt;}
.x2b_c00191{left:172.483987pt;}
.x61_c00191{left:173.438787pt;}
.x33_c00191{left:182.273987pt;}
.x4c_c00191{left:183.523587pt;}
.x18_c00191{left:192.767987pt;}
.x9_c00191{left:201.836387pt;}
.x39_c00191{left:210.961987pt;}
.x3d_c00191{left:212.295187pt;}
.x42_c00191{left:221.895987pt;}
.x62_c00191{left:223.009187pt;}
.x2c_c00191{left:232.051187pt;}
.x19_c00191{left:241.374787pt;}
.x56_c00191{left:242.457187pt;}
.x2d_c00191{left:251.507987pt;}
.xa_c00191{left:260.554387pt;}
.x43_c00191{left:262.094387pt;}
.x27_c00191{left:270.691987pt;}
.x34_c00191{left:272.407987pt;}
.x3a_c00191{left:279.381987pt;}
.x47_c00191{left:280.803187pt;}
.x63_c00191{left:281.810787pt;}
.x35_c00191{left:289.523987pt;}
.x21_c00191{left:290.896787pt;}
.xb_c00191{left:300.149987pt;}
.x28_c00191{left:302.160787pt;}
.x22_c00191{left:310.225987pt;}
.x5a_c00191{left:313.354387pt;}
.x1a_c00191{left:319.795987pt;}
.x4d_c00191{left:320.737587pt;}
.x69_c00191{left:323.016787pt;}
.xc_c00191{left:329.313187pt;}
.xd_c00191{left:338.033987pt;}
.x23_c00191{left:339.582787pt;}
.x5e_c00191{left:340.951187pt;}
.x1b_c00191{left:349.227587pt;}
.x57_c00191{left:350.204387pt;}
.x2f_c00191{left:359.052787pt;}
.x67_c00191{left:360.341987pt;}
.xe_c00191{left:368.785587pt;}
.x1c_c00191{left:378.729587pt;}
.x1d_c00191{left:387.846387pt;}
.xf_c00191{left:397.957587pt;}
.x29_c00191{left:408.147987pt;}
.x3e_c00191{left:410.281987pt;}
.x4b_c00191{left:417.801587pt;}
.x58_c00191{left:420.679187pt;}
.x24_c00191{left:427.983187pt;}
.x5b_c00191{left:428.986387pt;}
.x1e_c00191{left:436.510387pt;}
.x2a_c00191{left:437.654387pt;}
.x3f_c00191{left:446.903187pt;}
.x5f_c00191{left:447.972387pt;}
.x36_c00191{left:456.970387pt;}
.x4e_c00191{left:458.426787pt;}
.x10_c00191{left:466.166387pt;}
.x44_c00191{left:468.815187pt;}
.x37_c00191{left:476.510787pt;}
.x64_c00191{left:477.544787pt;}
.x4f_c00191{left:486.445987pt;}
.x11_c00191{left:496.561587pt;}
.x6b_c00191{left:498.673587pt;}
.x38_c00191{left:506.039187pt;}
.x40_c00191{left:507.473587pt;}
.x12_c00191{left:515.111987pt;}
.x25_c00191{left:516.511187pt;}
.x30_c00191{left:525.399187pt;}
.x3b_c00191{left:533.816387pt;}
.x45_c00191{left:535.233187pt;}
.x68_c00191{left:542.259987pt;}
.x31_c00191{left:543.909987pt;}
.x1f_c00191{left:545.036387pt;}
.x50_c00191{left:545.960387pt;}
.x13_c00191{left:555.107987pt;}
.x48_c00191{left:564.655987pt;}
.x59_c00191{left:573.416387pt;}
.x2_c00191{left:574.432787pt;}
.x6a_c00191{left:575.699987pt;}
.x14_c00191{left:584.152387pt;}
.x3_c00191{left:593.678387pt;}
.x65_c00191{left:595.398787pt;}
.x41_c00191{left:602.905187pt;}
.x51_c00191{left:604.581587pt;}
.x54_c00191{left:613.363987pt;}
.x49_c00191{left:615.018387pt;}
.x3c_c00191{left:622.973587pt;}
.x60_c00191{left:643.222387pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9c91f53ca3b7113c708bb374.woff2')format("woff");}.ff1_c00192{font-family:ff1_c00192;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00192;src:url('chunks/assets/font_9d222e60fadb73a9e214132b.woff2')format("woff");}.ff2_c00192{font-family:ff2_c00192;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00192;src:url('chunks/assets/font_86e8f10ecc499c7a40d06a0d.woff2')format("woff");}.ff3_c00192{font-family:ff3_c00192;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00192;src:url('chunks/assets/font_01750cbd2a6bfc0c79c394b9.woff2')format("woff");}.ff4_c00192{font-family:ff4_c00192;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m7a_c00192{transform:matrix(0.139286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139286,0.000000,0.000000,0.250000,0,0);}
.m4d_c00192{transform:matrix(0.157013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157013,0.000000,0.000000,0.250000,0,0);}
.m82_c00192{transform:matrix(0.191043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191043,0.000000,0.000000,0.250000,0,0);}
.m2_c00192{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00192{transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);}
.m97_c00192{transform:matrix(0.250919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250919,0.000000,0.000000,0.250000,0,0);}
.m88_c00192{transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);}
.m69_c00192{transform:matrix(0.255603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255603,0.000000,0.000000,0.250000,0,0);}
.m5a_c00192{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m22_c00192{transform:matrix(0.260152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260152,0.000000,0.000000,0.250000,0,0);}
.me_c00192{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m20_c00192{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.m53_c00192{transform:matrix(0.261665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261665,0.000000,0.000000,0.250000,0,0);}
.m3f_c00192{transform:matrix(0.262829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262829,0.000000,0.000000,0.250000,0,0);}
.m58_c00192{transform:matrix(0.262901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262901,0.000000,0.000000,0.250000,0,0);}
.m7b_c00192{transform:matrix(0.262979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262979,0.000000,0.000000,0.250000,0,0);}
.m14_c00192{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.ma8_c00192{transform:matrix(0.263720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263720,0.000000,0.000000,0.250000,0,0);}
.m3b_c00192{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.mc_c00192{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m42_c00192{transform:matrix(0.266554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266554,0.000000,0.000000,0.250000,0,0);}
.m31_c00192{transform:matrix(0.267110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267110,0.000000,0.000000,0.250000,0,0);}
.m49_c00192{transform:matrix(0.267214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267214,0.000000,0.000000,0.250000,0,0);}
.m4_c00192{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m79_c00192{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.m78_c00192{transform:matrix(0.268641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268641,0.000000,0.000000,0.250000,0,0);}
.m25_c00192{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m28_c00192{transform:matrix(0.271159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271159,0.000000,0.000000,0.250000,0,0);}
.m35_c00192{transform:matrix(0.271280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271280,0.000000,0.000000,0.250000,0,0);}
.m5e_c00192{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m73_c00192{transform:matrix(0.273832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273832,0.000000,0.000000,0.250000,0,0);}
.m95_c00192{transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);}
.m47_c00192{transform:matrix(0.274984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274984,0.000000,0.000000,0.250000,0,0);}
.m94_c00192{transform:matrix(0.275040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275040,0.000000,0.000000,0.250000,0,0);}
.ma5_c00192{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m86_c00192{transform:matrix(0.275788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275788,0.000000,0.000000,0.250000,0,0);}
.mad_c00192{transform:matrix(0.275879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275879,0.000000,0.000000,0.250000,0,0);}
.m0_c00192{transform:matrix(0.276116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276116,0.000000,0.000000,0.250000,0,0);}
.m4f_c00192{transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);}
.m98_c00192{transform:matrix(0.277131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277131,0.000000,0.000000,0.250000,0,0);}
.m99_c00192{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m6c_c00192{transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);}
.m57_c00192{transform:matrix(0.279111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279111,0.000000,0.000000,0.250000,0,0);}
.m23_c00192{transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);}
.m87_c00192{transform:matrix(0.279637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279637,0.000000,0.000000,0.250000,0,0);}
.m62_c00192{transform:matrix(0.279794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279794,0.000000,0.000000,0.250000,0,0);}
.ma6_c00192{transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);}
.m54_c00192{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.m30_c00192{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m84_c00192{transform:matrix(0.284095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284095,0.000000,0.000000,0.250000,0,0);}
.m9b_c00192{transform:matrix(0.285213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285213,0.000000,0.000000,0.250000,0,0);}
.m55_c00192{transform:matrix(0.285507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285507,0.000000,0.000000,0.250000,0,0);}
.m85_c00192{transform:matrix(0.286350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286350,0.000000,0.000000,0.250000,0,0);}
.m1e_c00192{transform:matrix(0.286658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286658,0.000000,0.000000,0.250000,0,0);}
.m51_c00192{transform:matrix(0.286708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286708,0.000000,0.000000,0.250000,0,0);}
.mac_c00192{transform:matrix(0.287082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287082,0.000000,0.000000,0.250000,0,0);}
.m4b_c00192{transform:matrix(0.287508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287508,0.000000,0.000000,0.250000,0,0);}
.m33_c00192{transform:matrix(0.287867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287867,0.000000,0.000000,0.250000,0,0);}
.m18_c00192{transform:matrix(0.288177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288177,0.000000,0.000000,0.250000,0,0);}
.m5c_c00192{transform:matrix(0.288270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288270,0.000000,0.000000,0.250000,0,0);}
.m6_c00192{transform:matrix(0.288384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288384,0.000000,0.000000,0.250000,0,0);}
.m75_c00192{transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);}
.m2e_c00192{transform:matrix(0.288557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288557,0.000000,0.000000,0.250000,0,0);}
.m4a_c00192{transform:matrix(0.289026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289026,0.000000,0.000000,0.250000,0,0);}
.m6b_c00192{transform:matrix(0.290107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290107,0.000000,0.000000,0.250000,0,0);}
.ma2_c00192{transform:matrix(0.290312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290312,0.000000,0.000000,0.250000,0,0);}
.m13_c00192{transform:matrix(0.290634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290634,0.000000,0.000000,0.250000,0,0);}
.m11_c00192{transform:matrix(0.290762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290762,0.000000,0.000000,0.250000,0,0);}
.m1a_c00192{transform:matrix(0.291132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291132,0.000000,0.000000,0.250000,0,0);}
.m29_c00192{transform:matrix(0.291209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291209,0.000000,0.000000,0.250000,0,0);}
.m9f_c00192{transform:matrix(0.291388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291388,0.000000,0.000000,0.250000,0,0);}
.m61_c00192{transform:matrix(0.291525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291525,0.000000,0.000000,0.250000,0,0);}
.ma7_c00192{transform:matrix(0.291694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291694,0.000000,0.000000,0.250000,0,0);}
.m8d_c00192{transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);}
.m63_c00192{transform:matrix(0.291852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291852,0.000000,0.000000,0.250000,0,0);}
.ma_c00192{transform:matrix(0.292392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292392,0.000000,0.000000,0.250000,0,0);}
.m70_c00192{transform:matrix(0.292423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292423,0.000000,0.000000,0.250000,0,0);}
.m2f_c00192{transform:matrix(0.293225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293225,0.000000,0.000000,0.250000,0,0);}
.m15_c00192{transform:matrix(0.293617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293617,0.000000,0.000000,0.250000,0,0);}
.m5f_c00192{transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);}
.m76_c00192{transform:matrix(0.294083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294083,0.000000,0.000000,0.250000,0,0);}
.m7f_c00192{transform:matrix(0.295093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295093,0.000000,0.000000,0.250000,0,0);}
.m9_c00192{transform:matrix(0.295722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295722,0.000000,0.000000,0.250000,0,0);}
.mab_c00192{transform:matrix(0.295788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295788,0.000000,0.000000,0.250000,0,0);}
.m52_c00192{transform:matrix(0.296261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296261,0.000000,0.000000,0.250000,0,0);}
.m3c_c00192{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m8b_c00192{transform:matrix(0.297357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297357,0.000000,0.000000,0.250000,0,0);}
.m60_c00192{transform:matrix(0.297860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297860,0.000000,0.000000,0.250000,0,0);}
.m2c_c00192{transform:matrix(0.298020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298020,0.000000,0.000000,0.250000,0,0);}
.maa_c00192{transform:matrix(0.299520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299520,0.000000,0.000000,0.250000,0,0);}
.m2b_c00192{transform:matrix(0.299566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299566,0.000000,0.000000,0.250000,0,0);}
.m3a_c00192{transform:matrix(0.299723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299723,0.000000,0.000000,0.250000,0,0);}
.m8e_c00192{transform:matrix(0.299854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299854,0.000000,0.000000,0.250000,0,0);}
.m67_c00192{transform:matrix(0.300111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300111,0.000000,0.000000,0.250000,0,0);}
.m6d_c00192{transform:matrix(0.300970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300970,0.000000,0.000000,0.250000,0,0);}
.m9e_c00192{transform:matrix(0.301595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301595,0.000000,0.000000,0.250000,0,0);}
.m8c_c00192{transform:matrix(0.301821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301821,0.000000,0.000000,0.250000,0,0);}
.m9d_c00192{transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);}
.m7e_c00192{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.mae_c00192{transform:matrix(0.303179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303179,0.000000,0.000000,0.250000,0,0);}
.m24_c00192{transform:matrix(0.303404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303404,0.000000,0.000000,0.250000,0,0);}
.m6a_c00192{transform:matrix(0.304910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304910,0.000000,0.000000,0.250000,0,0);}
.m2a_c00192{transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);}
.m72_c00192{transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);}
.m77_c00192{transform:matrix(0.305673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305673,0.000000,0.000000,0.250000,0,0);}
.m38_c00192{transform:matrix(0.306703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306703,0.000000,0.000000,0.250000,0,0);}
.m27_c00192{transform:matrix(0.307100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307100,0.000000,0.000000,0.250000,0,0);}
.m68_c00192{transform:matrix(0.308065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308065,0.000000,0.000000,0.250000,0,0);}
.m50_c00192{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m39_c00192{transform:matrix(0.310574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310574,0.000000,0.000000,0.250000,0,0);}
.m8f_c00192{transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);}
.m37_c00192{transform:matrix(0.311353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311353,0.000000,0.000000,0.250000,0,0);}
.m3e_c00192{transform:matrix(0.314095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314095,0.000000,0.000000,0.250000,0,0);}
.ma4_c00192{transform:matrix(0.314503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314503,0.000000,0.000000,0.250000,0,0);}
.mf_c00192{transform:matrix(0.314792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314792,0.000000,0.000000,0.250000,0,0);}
.m1_c00192{transform:matrix(0.315806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315806,0.000000,0.000000,0.250000,0,0);}
.m1b_c00192{transform:matrix(0.315855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315855,0.000000,0.000000,0.250000,0,0);}
.m7c_c00192{transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);}
.m80_c00192{transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);}
.m6e_c00192{transform:matrix(0.316932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316932,0.000000,0.000000,0.250000,0,0);}
.m45_c00192{transform:matrix(0.316942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316942,0.000000,0.000000,0.250000,0,0);}
.m32_c00192{transform:matrix(0.317085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317085,0.000000,0.000000,0.250000,0,0);}
.m71_c00192{transform:matrix(0.317160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317160,0.000000,0.000000,0.250000,0,0);}
.m9a_c00192{transform:matrix(0.317301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317301,0.000000,0.000000,0.250000,0,0);}
.m26_c00192{transform:matrix(0.317419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317419,0.000000,0.000000,0.250000,0,0);}
.m12_c00192{transform:matrix(0.319377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319377,0.000000,0.000000,0.250000,0,0);}
.m92_c00192{transform:matrix(0.320465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320465,0.000000,0.000000,0.250000,0,0);}
.m64_c00192{transform:matrix(0.320628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320628,0.000000,0.000000,0.250000,0,0);}
.m1f_c00192{transform:matrix(0.320949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320949,0.000000,0.000000,0.250000,0,0);}
.m93_c00192{transform:matrix(0.321492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321492,0.000000,0.000000,0.250000,0,0);}
.m2d_c00192{transform:matrix(0.322188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322188,0.000000,0.000000,0.250000,0,0);}
.m41_c00192{transform:matrix(0.323355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323355,0.000000,0.000000,0.250000,0,0);}
.m91_c00192{transform:matrix(0.323406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323406,0.000000,0.000000,0.250000,0,0);}
.m19_c00192{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.m7d_c00192{transform:matrix(0.324328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324328,0.000000,0.000000,0.250000,0,0);}
.m10_c00192{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m46_c00192{transform:matrix(0.328035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328035,0.000000,0.000000,0.250000,0,0);}
.m17_c00192{transform:matrix(0.328711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328711,0.000000,0.000000,0.250000,0,0);}
.m36_c00192{transform:matrix(0.329713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329713,0.000000,0.000000,0.250000,0,0);}
.ma9_c00192{transform:matrix(0.329979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329979,0.000000,0.000000,0.250000,0,0);}
.m34_c00192{transform:matrix(0.330493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330493,0.000000,0.000000,0.250000,0,0);}
.m5d_c00192{transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);}
.m7_c00192{transform:matrix(0.331567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331567,0.000000,0.000000,0.250000,0,0);}
.m56_c00192{transform:matrix(0.331637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331637,0.000000,0.000000,0.250000,0,0);}
.m8a_c00192{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.ma0_c00192{transform:matrix(0.333754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333754,0.000000,0.000000,0.250000,0,0);}
.m90_c00192{transform:matrix(0.334480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334480,0.000000,0.000000,0.250000,0,0);}
.m59_c00192{transform:matrix(0.334575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334575,0.000000,0.000000,0.250000,0,0);}
.m44_c00192{transform:matrix(0.335935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335935,0.000000,0.000000,0.250000,0,0);}
.m4c_c00192{transform:matrix(0.336330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336330,0.000000,0.000000,0.250000,0,0);}
.m96_c00192{transform:matrix(0.336825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336825,0.000000,0.000000,0.250000,0,0);}
.m5_c00192{transform:matrix(0.337511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337511,0.000000,0.000000,0.250000,0,0);}
.m65_c00192{transform:matrix(0.337910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337910,0.000000,0.000000,0.250000,0,0);}
.mb_c00192{transform:matrix(0.338225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338225,0.000000,0.000000,0.250000,0,0);}
.m3d_c00192{transform:matrix(0.338565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338565,0.000000,0.000000,0.250000,0,0);}
.m1d_c00192{transform:matrix(0.338858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338858,0.000000,0.000000,0.250000,0,0);}
.m21_c00192{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m6f_c00192{transform:matrix(0.340744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340744,0.000000,0.000000,0.250000,0,0);}
.m9c_c00192{transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);}
.m74_c00192{transform:matrix(0.342184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342184,0.000000,0.000000,0.250000,0,0);}
.m66_c00192{transform:matrix(0.342217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342217,0.000000,0.000000,0.250000,0,0);}
.md_c00192{transform:matrix(0.347316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347316,0.000000,0.000000,0.250000,0,0);}
.m3_c00192{transform:matrix(0.347906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347906,0.000000,0.000000,0.250000,0,0);}
.m40_c00192{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m83_c00192{transform:matrix(0.351400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351400,0.000000,0.000000,0.250000,0,0);}
.m43_c00192{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.ma1_c00192{transform:matrix(0.358675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358675,0.000000,0.000000,0.250000,0,0);}
.m1c_c00192{transform:matrix(0.359169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359169,0.000000,0.000000,0.250000,0,0);}
.m89_c00192{transform:matrix(0.361926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361926,0.000000,0.000000,0.250000,0,0);}
.ma3_c00192{transform:matrix(0.362739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362739,0.000000,0.000000,0.250000,0,0);}
.m5b_c00192{transform:matrix(0.366052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366052,0.000000,0.000000,0.250000,0,0);}
.maf_c00192{transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);}
.m8_c00192{transform:matrix(0.368363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368363,0.000000,0.000000,0.250000,0,0);}
.m81_c00192{transform:matrix(0.374979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374979,0.000000,0.000000,0.250000,0,0);}
.m48_c00192{transform:matrix(0.378961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378961,0.000000,0.000000,0.250000,0,0);}
.m16_c00192{transform:matrix(0.432348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432348,0.000000,0.000000,0.250000,0,0);}
.v0_c00192{vertical-align:0.000000px;}
.ls6_c00192{letter-spacing:-2.579623px;}
.ls4_c00192{letter-spacing:-0.062726px;}
.ls2_c00192{letter-spacing:0.000000px;}
.lsd_c00192{letter-spacing:0.878170px;}
.ls0_c00192{letter-spacing:1.348618px;}
.lsf_c00192{letter-spacing:1.685772px;}
.lse_c00192{letter-spacing:2.579623px;}
.lsc_c00192{letter-spacing:3.112798px;}
.ls3_c00192{letter-spacing:3.191206px;}
.ls9_c00192{letter-spacing:3.199046px;}
.lsa_c00192{letter-spacing:3.276900px;}
.ls8_c00192{letter-spacing:3.544200px;}
.ls1_c00192{letter-spacing:3.920400px;}
.ls7_c00192{letter-spacing:49.896198px;}
.ls5_c00192{letter-spacing:58.449798px;}
.lsb_c00192{letter-spacing:69.854598px;}
.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;}
}
.ws1_c00192{word-spacing:-22.793206px;}
.ws0_c00192{word-spacing:-19.602000px;}
.ws2_c00192{word-spacing:-19.539274px;}
.ws4_c00192{word-spacing:-17.022377px;}
.ws5_c00192{word-spacing:0.000000px;}
.ws3_c00192{word-spacing:5.017716px;}
._8_c00192{margin-left:-14.584284px;}
._10_c00192{margin-left:-13.172544px;}
._c_c00192{margin-left:-4.078008px;}
._a_c00192{width:1.411344px;}
._2_c00192{width:2.869337px;}
._7_c00192{width:5.096520px;}
._0_c00192{width:6.272640px;}
._f_c00192{width:7.998408px;}
._5_c00192{width:9.095328px;}
._b_c00192{width:11.918808px;}
._9_c00192{width:15.446376px;}
._d_c00192{width:17.926049px;}
._4_c00192{width:20.857716px;}
._e_c00192{width:28.854144px;}
._1_c00192{width:33.432775px;}
._3_c00192{width:35.518428px;}
._6_c00192{width:38.261916px;}
.fc0_c00192{color:transparent;}
.fs3_c00192{font-size:49.896198px;}
.fs2_c00192{font-size:58.449798px;}
.fs1_c00192{font-size:60.192000px;}
.fs5_c00192{font-size:65.538000px;}
.fs6_c00192{font-size:69.854598px;}
.fs4_c00192{font-size:70.884000px;}
.fs0_c00192{font-size:78.408000px;}
.y0_c00192{bottom:0.000000px;}
.y1_c00192{bottom:76.500000px;}
.y1b_c00192{bottom:137.477385px;}
.y1a_c00192{bottom:168.132735px;}
.y19_c00192{bottom:201.990735px;}
.y18_c00192{bottom:237.274335px;}
.y17_c00192{bottom:270.063135px;}
.y16_c00192{bottom:302.139135px;}
.y15_c00192{bottom:334.210185px;}
.y14_c00192{bottom:398.367135px;}
.y13_c00192{bottom:431.155935px;}
.y12_c00192{bottom:463.583385px;}
.y11_c00192{bottom:496.377135px;}
.yf_c00192{bottom:528.440760px;}
.y10_c00192{bottom:528.448185px;}
.ye_c00192{bottom:560.529135px;}
.yd_c00192{bottom:593.317935px;}
.yc_c00192{bottom:657.464985px;}
.yb_c00192{bottom:690.253785px;}
.ya_c00192{bottom:723.042585px;}
.y9_c00192{bottom:755.118585px;}
.y8_c00192{bottom:786.838185px;}
.y7_c00192{bottom:819.988335px;}
.y6_c00192{bottom:831.031785px;}
.y5_c00192{bottom:853.128585px;}
.y4_c00192{bottom:885.565935px;}
.y3_c00192{bottom:918.354735px;}
.y2_c00192{bottom:1077.660585px;}
.h5_c00192{height:33.230868px;}
.h4_c00192{height:38.927565px;}
.h8_c00192{height:46.523162px;}
.h3_c00192{height:61.867891px;}
.h7_c00192{height:68.354086px;}
.h6_c00192{height:69.568770px;}
.h2_c00192{height:76.953164px;}
.h1_c00192{height:1110.000000px;}
.h0_c00192{height:1263.000000px;}
.w1_c00192{width:733.500000px;}
.w0_c00192{width:892.500000px;}
.x0_c00192{left:0.000000px;}
.x3d_c00192{left:60.151935px;}
.xf_c00192{left:61.696335px;}
.x41_c00192{left:64.527735px;}
.x55_c00192{left:69.517335px;}
.x3e_c00192{left:72.091335px;}
.x1_c00192{left:79.500000px;}
.x39_c00192{left:83.204085px;}
.x10_c00192{left:94.252485px;}
.x11_c00192{left:106.345335px;}
.x3_c00192{left:116.047335px;}
.x2c_c00192{left:128.085735px;}
.x4d_c00192{left:129.823185px;}
.x49_c00192{left:138.416385px;}
.x1d_c00192{left:149.281635px;}
.x51_c00192{left:150.499335px;}
.x12_c00192{left:160.186485px;}
.x45_c00192{left:171.576435px;}
.x34_c00192{left:180.704235px;}
.x58_c00192{left:182.159535px;}
.x5c_c00192{left:183.684135px;}
.x13_c00192{left:193.133685px;}
.x27_c00192{left:205.082985px;}
.x1e_c00192{left:216.487785px;}
.x4_c00192{left:226.640235px;}
.x4f_c00192{left:238.896435px;}
.x5_c00192{left:248.811285px;}
.x2d_c00192{left:259.077585px;}
.x1f_c00192{left:260.166585px;}
.x14_c00192{left:271.026885px;}
.x46_c00192{left:273.477135px;}
.x3a_c00192{left:282.025785px;}
.x20_c00192{left:291.703035px;}
.x59_c00192{left:292.767285px;}
.x15_c00192{left:305.221485px;}
.x37_c00192{left:315.215535px;}
.x6_c00192{left:325.912485px;}
.x3f_c00192{left:329.070585px;}
.x16_c00192{left:337.351935px;}
.x21_c00192{left:348.642885px;}
.x4e_c00192{left:350.400135px;}
.x7_c00192{left:360.473385px;}
.x28_c00192{left:370.338735px;}
.x8_c00192{left:381.288135px;}
.x4b_c00192{left:391.222785px;}
.x17_c00192{left:392.361285px;}
.x38_c00192{left:402.706785px;}
.x9_c00192{left:413.393835px;}
.x52_c00192{left:414.611535px;}
.x2e_c00192{left:417.121185px;}
.x2f_c00192{left:425.308485px;}
.x22_c00192{left:436.629135px;}
.x18_c00192{left:447.093435px;}
.x3b_c00192{left:458.315085px;}
.x30_c00192{left:469.170435px;}
.x50_c00192{left:470.462385px;}
.x29_c00192{left:480.233685px;}
.x35_c00192{left:490.059435px;}
.x19_c00192{left:491.841435px;}
.x53_c00192{left:494.459985px;}
.x47_c00192{left:502.102785px;}
.x40_c00192{left:503.280885px;}
.x3c_c00192{left:512.468085px;}
.x2a_c00192{left:513.472935px;}
.x42_c00192{left:523.516485px;}
.x23_c00192{left:524.783685px;}
.xa_c00192{left:535.841985px;}
.x31_c00192{left:546.137985px;}
.x1a_c00192{left:547.519035px;}
.x24_c00192{left:557.027985px;}
.x5d_c00192{left:567.729885px;}
.x36_c00192{left:568.898085px;}
.x56_c00192{left:571.061235px;}
.x5b_c00192{left:578.090235px;}
.xb_c00192{left:579.312885px;}
.x43_c00192{left:589.138635px;}
.x32_c00192{left:590.584035px;}
.x1b_c00192{left:601.221585px;}
.x25_c00192{left:612.230385px;}
.x57_c00192{left:622.947135px;}
.x44_c00192{left:633.332235px;}
.xc_c00192{left:634.891485px;}
.x5a_c00192{left:644.024235px;}
.x26_c00192{left:645.246885px;}
.x2_c00192{left:646.261635px;}
.x54_c00192{left:647.716935px;}
.x2b_c00192{left:655.072635px;}
.x33_c00192{left:656.651685px;}
.x48_c00192{left:667.343685px;}
.xd_c00192{left:668.402985px;}
.x1c_c00192{left:677.169435px;}
.xe_c00192{left:678.545535px;}
.x4a_c00192{left:688.886085px;}
.x4c_c00192{left:700.102785px;}
@media print{
.v0_c00192{vertical-align:0.000000pt;}
.ls6_c00192{letter-spacing:-2.292998pt;}
.ls4_c00192{letter-spacing:-0.055757pt;}
.ls2_c00192{letter-spacing:0.000000pt;}
.lsd_c00192{letter-spacing:0.780595pt;}
.ls0_c00192{letter-spacing:1.198771pt;}
.lsf_c00192{letter-spacing:1.498464pt;}
.lse_c00192{letter-spacing:2.292998pt;}
.lsc_c00192{letter-spacing:2.766931pt;}
.ls3_c00192{letter-spacing:2.836627pt;}
.ls9_c00192{letter-spacing:2.843597pt;}
.lsa_c00192{letter-spacing:2.912800pt;}
.ls8_c00192{letter-spacing:3.150400pt;}
.ls1_c00192{letter-spacing:3.484800pt;}
.ls7_c00192{letter-spacing:44.352176pt;}
.ls5_c00192{letter-spacing:51.955376pt;}
.lsb_c00192{letter-spacing:62.092976pt;}
.ws1_c00192{word-spacing:-20.260627pt;}
.ws0_c00192{word-spacing:-17.424000pt;}
.ws2_c00192{word-spacing:-17.368243pt;}
.ws4_c00192{word-spacing:-15.131002pt;}
.ws5_c00192{word-spacing:0.000000pt;}
.ws3_c00192{word-spacing:4.460192pt;}
._8_c00192{margin-left:-12.963808pt;}
._10_c00192{margin-left:-11.708928pt;}
._c_c00192{margin-left:-3.624896pt;}
._a_c00192{width:1.254528pt;}
._2_c00192{width:2.550522pt;}
._7_c00192{width:4.530240pt;}
._0_c00192{width:5.575680pt;}
._f_c00192{width:7.109696pt;}
._5_c00192{width:8.084736pt;}
._b_c00192{width:10.594496pt;}
._9_c00192{width:13.730112pt;}
._d_c00192{width:15.934266pt;}
._4_c00192{width:18.540192pt;}
._e_c00192{width:25.648128pt;}
._1_c00192{width:29.718022pt;}
._3_c00192{width:31.571936pt;}
._6_c00192{width:34.010592pt;}
.fs3_c00192{font-size:44.352176pt;}
.fs2_c00192{font-size:51.955376pt;}
.fs1_c00192{font-size:53.504000pt;}
.fs5_c00192{font-size:58.256000pt;}
.fs6_c00192{font-size:62.092976pt;}
.fs4_c00192{font-size:63.008000pt;}
.fs0_c00192{font-size:69.696000pt;}
.y0_c00192{bottom:0.000000pt;}
.y1_c00192{bottom:68.000000pt;}
.y1b_c00192{bottom:122.202120pt;}
.y1a_c00192{bottom:149.451320pt;}
.y19_c00192{bottom:179.547320pt;}
.y18_c00192{bottom:210.910520pt;}
.y17_c00192{bottom:240.056120pt;}
.y16_c00192{bottom:268.568120pt;}
.y15_c00192{bottom:297.075720pt;}
.y14_c00192{bottom:354.104120pt;}
.y13_c00192{bottom:383.249720pt;}
.y12_c00192{bottom:412.074120pt;}
.y11_c00192{bottom:441.224120pt;}
.yf_c00192{bottom:469.725120pt;}
.y10_c00192{bottom:469.731720pt;}
.ye_c00192{bottom:498.248120pt;}
.yd_c00192{bottom:527.393720pt;}
.yc_c00192{bottom:584.413320pt;}
.yb_c00192{bottom:613.558920pt;}
.ya_c00192{bottom:642.704520pt;}
.y9_c00192{bottom:671.216520pt;}
.y8_c00192{bottom:699.411720pt;}
.y7_c00192{bottom:728.878520pt;}
.y6_c00192{bottom:738.694920pt;}
.y5_c00192{bottom:758.336520pt;}
.y4_c00192{bottom:787.169720pt;}
.y3_c00192{bottom:816.315320pt;}
.y2_c00192{bottom:957.920520pt;}
.h5_c00192{height:29.538549pt;}
.h4_c00192{height:34.602280pt;}
.h8_c00192{height:41.353922pt;}
.h3_c00192{height:54.993681pt;}
.h7_c00192{height:60.759188pt;}
.h6_c00192{height:61.838906pt;}
.h2_c00192{height:68.402813pt;}
.h1_c00192{height:986.666667pt;}
.h0_c00192{height:1122.666667pt;}
.w1_c00192{width:652.000000pt;}
.w0_c00192{width:793.333333pt;}
.x0_c00192{left:0.000000pt;}
.x3d_c00192{left:53.468387pt;}
.xf_c00192{left:54.841187pt;}
.x41_c00192{left:57.357987pt;}
.x55_c00192{left:61.793187pt;}
.x3e_c00192{left:64.081187pt;}
.x1_c00192{left:70.666667pt;}
.x39_c00192{left:73.959187pt;}
.x10_c00192{left:83.779987pt;}
.x11_c00192{left:94.529187pt;}
.x3_c00192{left:103.153187pt;}
.x2c_c00192{left:113.853987pt;}
.x4d_c00192{left:115.398387pt;}
.x49_c00192{left:123.036787pt;}
.x1d_c00192{left:132.694787pt;}
.x51_c00192{left:133.777187pt;}
.x12_c00192{left:142.387987pt;}
.x45_c00192{left:152.512387pt;}
.x34_c00192{left:160.625987pt;}
.x58_c00192{left:161.919587pt;}
.x5c_c00192{left:163.274787pt;}
.x13_c00192{left:171.674387pt;}
.x27_c00192{left:182.295987pt;}
.x1e_c00192{left:192.433587pt;}
.x4_c00192{left:201.457987pt;}
.x4f_c00192{left:212.352387pt;}
.x5_c00192{left:221.165587pt;}
.x2d_c00192{left:230.291187pt;}
.x1f_c00192{left:231.259187pt;}
.x14_c00192{left:240.912787pt;}
.x46_c00192{left:243.090787pt;}
.x3a_c00192{left:250.689587pt;}
.x20_c00192{left:259.291587pt;}
.x59_c00192{left:260.237587pt;}
.x15_c00192{left:271.307987pt;}
.x37_c00192{left:280.191587pt;}
.x6_c00192{left:289.699987pt;}
.x3f_c00192{left:292.507187pt;}
.x16_c00192{left:299.868387pt;}
.x21_c00192{left:309.904787pt;}
.x4e_c00192{left:311.466787pt;}
.x7_c00192{left:320.420787pt;}
.x28_c00192{left:329.189987pt;}
.x8_c00192{left:338.922787pt;}
.x4b_c00192{left:347.753587pt;}
.x17_c00192{left:348.765587pt;}
.x38_c00192{left:357.961587pt;}
.x9_c00192{left:367.461187pt;}
.x52_c00192{left:368.543587pt;}
.x2e_c00192{left:370.774387pt;}
.x2f_c00192{left:378.051987pt;}
.x22_c00192{left:388.114787pt;}
.x18_c00192{left:397.416387pt;}
.x3b_c00192{left:407.391187pt;}
.x30_c00192{left:417.040387pt;}
.x50_c00192{left:418.188787pt;}
.x29_c00192{left:426.874387pt;}
.x35_c00192{left:435.608387pt;}
.x19_c00192{left:437.192387pt;}
.x53_c00192{left:439.519987pt;}
.x47_c00192{left:446.313587pt;}
.x40_c00192{left:447.360787pt;}
.x3c_c00192{left:455.527187pt;}
.x2a_c00192{left:456.420387pt;}
.x42_c00192{left:465.347987pt;}
.x23_c00192{left:466.474387pt;}
.xa_c00192{left:476.303987pt;}
.x31_c00192{left:485.455987pt;}
.x1a_c00192{left:486.683587pt;}
.x24_c00192{left:495.135987pt;}
.x5d_c00192{left:504.648787pt;}
.x36_c00192{left:505.687187pt;}
.x56_c00192{left:507.609987pt;}
.x5b_c00192{left:513.857987pt;}
.xb_c00192{left:514.944787pt;}
.x43_c00192{left:523.678787pt;}
.x32_c00192{left:524.963587pt;}
.x1b_c00192{left:534.419187pt;}
.x25_c00192{left:544.204787pt;}
.x57_c00192{left:553.730787pt;}
.x44_c00192{left:562.961987pt;}
.xc_c00192{left:564.347987pt;}
.x5a_c00192{left:572.465987pt;}
.x26_c00192{left:573.552787pt;}
.x2_c00192{left:574.454787pt;}
.x54_c00192{left:575.748387pt;}
.x2b_c00192{left:582.286787pt;}
.x33_c00192{left:583.690387pt;}
.x48_c00192{left:593.194387pt;}
.xd_c00192{left:594.135987pt;}
.x1c_c00192{left:601.928387pt;}
.xe_c00192{left:603.151587pt;}
.x4a_c00192{left:612.343187pt;}
.x4c_c00192{left:622.313587pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_db2a43578d72ec67f3d4bdd0.woff2')format("woff");}.ff1_c00193{font-family:ff1_c00193;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00193;src:url('chunks/assets/font_a0246f878e8c27e85a00d061.woff2')format("woff");}.ff2_c00193{font-family:ff2_c00193;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00193;src:url('chunks/assets/font_d8b8528abdb8aae6e4305e42.woff2')format("woff");}.ff3_c00193{font-family:ff3_c00193;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00193;src:url('chunks/assets/font_1380f81c25c1ca02ec6d4c29.woff2')format("woff");}.ff4_c00193{font-family:ff4_c00193;line-height:0.666000;font-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_c00193{transform:matrix(0.163831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163831,0.000000,0.000000,0.250000,0,0);}
.m2d_c00193{transform:matrix(0.219497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219497,0.000000,0.000000,0.250000,0,0);}
.m87_c00193{transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);}
.m7b_c00193{transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);}
.ma2_c00193{transform:matrix(0.241340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241340,0.000000,0.000000,0.250000,0,0);}
.m48_c00193{transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);}
.m0_c00193{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00193{transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);}
.m4b_c00193{transform:matrix(0.250517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250517,0.000000,0.000000,0.250000,0,0);}
.m4e_c00193{transform:matrix(0.251460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251460,0.000000,0.000000,0.250000,0,0);}
.m68_c00193{transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);}
.m2_c00193{transform:matrix(0.252949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252949,0.000000,0.000000,0.250000,0,0);}
.m7e_c00193{transform:matrix(0.253172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253172,0.000000,0.000000,0.250000,0,0);}
.m37_c00193{transform:matrix(0.253545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253545,0.000000,0.000000,0.250000,0,0);}
.m2a_c00193{transform:matrix(0.254648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254648,0.000000,0.000000,0.250000,0,0);}
.m36_c00193{transform:matrix(0.254982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254982,0.000000,0.000000,0.250000,0,0);}
.m79_c00193{transform:matrix(0.255392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255392,0.000000,0.000000,0.250000,0,0);}
.m59_c00193{transform:matrix(0.255538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255538,0.000000,0.000000,0.250000,0,0);}
.m1f_c00193{transform:matrix(0.256146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256146,0.000000,0.000000,0.250000,0,0);}
.m7d_c00193{transform:matrix(0.256814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256814,0.000000,0.000000,0.250000,0,0);}
.m5b_c00193{transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);}
.m6d_c00193{transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);}
.m77_c00193{transform:matrix(0.260168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260168,0.000000,0.000000,0.250000,0,0);}
.m3d_c00193{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.mb0_c00193{transform:matrix(0.262931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262931,0.000000,0.000000,0.250000,0,0);}
.m11_c00193{transform:matrix(0.262979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262979,0.000000,0.000000,0.250000,0,0);}
.mc_c00193{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.md_c00193{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m57_c00193{transform:matrix(0.264652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264652,0.000000,0.000000,0.250000,0,0);}
.m6_c00193{transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);}
.m20_c00193{transform:matrix(0.265881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265881,0.000000,0.000000,0.250000,0,0);}
.m85_c00193{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m89_c00193{transform:matrix(0.266295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266295,0.000000,0.000000,0.250000,0,0);}
.m8_c00193{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m56_c00193{transform:matrix(0.268273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268273,0.000000,0.000000,0.250000,0,0);}
.m98_c00193{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.m46_c00193{transform:matrix(0.270439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270439,0.000000,0.000000,0.250000,0,0);}
.ma_c00193{transform:matrix(0.270773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270773,0.000000,0.000000,0.250000,0,0);}
.m45_c00193{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m31_c00193{transform:matrix(0.271710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271710,0.000000,0.000000,0.250000,0,0);}
.m78_c00193{transform:matrix(0.271712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271712,0.000000,0.000000,0.250000,0,0);}
.m95_c00193{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m92_c00193{transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);}
.m84_c00193{transform:matrix(0.273159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273159,0.000000,0.000000,0.250000,0,0);}
.m58_c00193{transform:matrix(0.273538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273538,0.000000,0.000000,0.250000,0,0);}
.m13_c00193{transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);}
.ma7_c00193{transform:matrix(0.274110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274110,0.000000,0.000000,0.250000,0,0);}
.m71_c00193{transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);}
.m33_c00193{transform:matrix(0.274496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274496,0.000000,0.000000,0.250000,0,0);}
.m1d_c00193{transform:matrix(0.274708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274708,0.000000,0.000000,0.250000,0,0);}
.m9e_c00193{transform:matrix(0.275308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275308,0.000000,0.000000,0.250000,0,0);}
.m51_c00193{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m55_c00193{transform:matrix(0.275788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275788,0.000000,0.000000,0.250000,0,0);}
.m8e_c00193{transform:matrix(0.275828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275828,0.000000,0.000000,0.250000,0,0);}
.mb1_c00193{transform:matrix(0.275879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275879,0.000000,0.000000,0.250000,0,0);}
.m32_c00193{transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);}
.m2b_c00193{transform:matrix(0.276021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276021,0.000000,0.000000,0.250000,0,0);}
.mb_c00193{transform:matrix(0.276280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276280,0.000000,0.000000,0.250000,0,0);}
.m27_c00193{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m26_c00193{transform:matrix(0.277549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277549,0.000000,0.000000,0.250000,0,0);}
.mae_c00193{transform:matrix(0.277905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277905,0.000000,0.000000,0.250000,0,0);}
.maf_c00193{transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);}
.mf_c00193{transform:matrix(0.278819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278819,0.000000,0.000000,0.250000,0,0);}
.m75_c00193{transform:matrix(0.278903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278903,0.000000,0.000000,0.250000,0,0);}
.me_c00193{transform:matrix(0.279604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279604,0.000000,0.000000,0.250000,0,0);}
.m83_c00193{transform:matrix(0.279648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279648,0.000000,0.000000,0.250000,0,0);}
.m8b_c00193{transform:matrix(0.280570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280570,0.000000,0.000000,0.250000,0,0);}
.m28_c00193{transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);}
.m5c_c00193{transform:matrix(0.282018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282018,0.000000,0.000000,0.250000,0,0);}
.m8f_c00193{transform:matrix(0.282165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282165,0.000000,0.000000,0.250000,0,0);}
.m42_c00193{transform:matrix(0.282366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282366,0.000000,0.000000,0.250000,0,0);}
.m30_c00193{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m70_c00193{transform:matrix(0.283578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283578,0.000000,0.000000,0.250000,0,0);}
.m8d_c00193{transform:matrix(0.284207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284207,0.000000,0.000000,0.250000,0,0);}
.m40_c00193{transform:matrix(0.284588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284588,0.000000,0.000000,0.250000,0,0);}
.m63_c00193{transform:matrix(0.285349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285349,0.000000,0.000000,0.250000,0,0);}
.m4c_c00193{transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);}
.m16_c00193{transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);}
.m5e_c00193{transform:matrix(0.287057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287057,0.000000,0.000000,0.250000,0,0);}
.ma1_c00193{transform:matrix(0.287224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287224,0.000000,0.000000,0.250000,0,0);}
.m9_c00193{transform:matrix(0.287323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287323,0.000000,0.000000,0.250000,0,0);}
.ma6_c00193{transform:matrix(0.287518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287518,0.000000,0.000000,0.250000,0,0);}
.m8a_c00193{transform:matrix(0.287876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287876,0.000000,0.000000,0.250000,0,0);}
.m67_c00193{transform:matrix(0.287967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287967,0.000000,0.000000,0.250000,0,0);}
.m65_c00193{transform:matrix(0.288491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288491,0.000000,0.000000,0.250000,0,0);}
.m4f_c00193{transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);}
.m69_c00193{transform:matrix(0.289255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289255,0.000000,0.000000,0.250000,0,0);}
.ma9_c00193{transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);}
.m5d_c00193{transform:matrix(0.290785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290785,0.000000,0.000000,0.250000,0,0);}
.ma0_c00193{transform:matrix(0.290940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290940,0.000000,0.000000,0.250000,0,0);}
.m4a_c00193{transform:matrix(0.291391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291391,0.000000,0.000000,0.250000,0,0);}
.m72_c00193{transform:matrix(0.291795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291795,0.000000,0.000000,0.250000,0,0);}
.m50_c00193{transform:matrix(0.292211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292211,0.000000,0.000000,0.250000,0,0);}
.m1c_c00193{transform:matrix(0.292348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292348,0.000000,0.000000,0.250000,0,0);}
.m93_c00193{transform:matrix(0.292352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292352,0.000000,0.000000,0.250000,0,0);}
.m9f_c00193{transform:matrix(0.292653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292653,0.000000,0.000000,0.250000,0,0);}
.m3f_c00193{transform:matrix(0.293357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293357,0.000000,0.000000,0.250000,0,0);}
.m1e_c00193{transform:matrix(0.293470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293470,0.000000,0.000000,0.250000,0,0);}
.mab_c00193{transform:matrix(0.293547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293547,0.000000,0.000000,0.250000,0,0);}
.m22_c00193{transform:matrix(0.293989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293989,0.000000,0.000000,0.250000,0,0);}
.m96_c00193{transform:matrix(0.294114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294114,0.000000,0.000000,0.250000,0,0);}
.m97_c00193{transform:matrix(0.295898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295898,0.000000,0.000000,0.250000,0,0);}
.m44_c00193{transform:matrix(0.296352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296352,0.000000,0.000000,0.250000,0,0);}
.m2c_c00193{transform:matrix(0.296539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296539,0.000000,0.000000,0.250000,0,0);}
.m1a_c00193{transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);}
.ma4_c00193{transform:matrix(0.296890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296890,0.000000,0.000000,0.250000,0,0);}
.m90_c00193{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m94_c00193{transform:matrix(0.297306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297306,0.000000,0.000000,0.250000,0,0);}
.m6e_c00193{transform:matrix(0.298426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298426,0.000000,0.000000,0.250000,0,0);}
.mad_c00193{transform:matrix(0.300641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300641,0.000000,0.000000,0.250000,0,0);}
.m9a_c00193{transform:matrix(0.300674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300674,0.000000,0.000000,0.250000,0,0);}
.m3c_c00193{transform:matrix(0.301688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301688,0.000000,0.000000,0.250000,0,0);}
.m39_c00193{transform:matrix(0.302071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302071,0.000000,0.000000,0.250000,0,0);}
.m21_c00193{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m19_c00193{transform:matrix(0.302646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302646,0.000000,0.000000,0.250000,0,0);}
.m64_c00193{transform:matrix(0.302665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302665,0.000000,0.000000,0.250000,0,0);}
.mb2_c00193{transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);}
.m5_c00193{transform:matrix(0.303102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303102,0.000000,0.000000,0.250000,0,0);}
.m91_c00193{transform:matrix(0.303753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303753,0.000000,0.000000,0.250000,0,0);}
.m34_c00193{transform:matrix(0.304657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304657,0.000000,0.000000,0.250000,0,0);}
.m2f_c00193{transform:matrix(0.305009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305009,0.000000,0.000000,0.250000,0,0);}
.m41_c00193{transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);}
.m3_c00193{transform:matrix(0.306126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306126,0.000000,0.000000,0.250000,0,0);}
.m7a_c00193{transform:matrix(0.306376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306376,0.000000,0.000000,0.250000,0,0);}
.m10_c00193{transform:matrix(0.306720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306720,0.000000,0.000000,0.250000,0,0);}
.m88_c00193{transform:matrix(0.307052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307052,0.000000,0.000000,0.250000,0,0);}
.m3e_c00193{transform:matrix(0.307786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307786,0.000000,0.000000,0.250000,0,0);}
.m62_c00193{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m9c_c00193{transform:matrix(0.311238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311238,0.000000,0.000000,0.250000,0,0);}
.m80_c00193{transform:matrix(0.311252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311252,0.000000,0.000000,0.250000,0,0);}
.m81_c00193{transform:matrix(0.311442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311442,0.000000,0.000000,0.250000,0,0);}
.m3b_c00193{transform:matrix(0.311765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311765,0.000000,0.000000,0.250000,0,0);}
.m6c_c00193{transform:matrix(0.312737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312737,0.000000,0.000000,0.250000,0,0);}
.m7c_c00193{transform:matrix(0.313682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313682,0.000000,0.000000,0.250000,0,0);}
.m4d_c00193{transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);}
.m15_c00193{transform:matrix(0.313942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313942,0.000000,0.000000,0.250000,0,0);}
.m6f_c00193{transform:matrix(0.314118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314118,0.000000,0.000000,0.250000,0,0);}
.m2e_c00193{transform:matrix(0.314943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314943,0.000000,0.000000,0.250000,0,0);}
.m54_c00193{transform:matrix(0.315773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315773,0.000000,0.000000,0.250000,0,0);}
.m6b_c00193{transform:matrix(0.316071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316071,0.000000,0.000000,0.250000,0,0);}
.m99_c00193{transform:matrix(0.316780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316780,0.000000,0.000000,0.250000,0,0);}
.m1_c00193{transform:matrix(0.317664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317664,0.000000,0.000000,0.250000,0,0);}
.m53_c00193{transform:matrix(0.319290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319290,0.000000,0.000000,0.250000,0,0);}
.m52_c00193{transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);}
.ma3_c00193{transform:matrix(0.320471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320471,0.000000,0.000000,0.250000,0,0);}
.ma5_c00193{transform:matrix(0.322881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322881,0.000000,0.000000,0.250000,0,0);}
.ma8_c00193{transform:matrix(0.323722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323722,0.000000,0.000000,0.250000,0,0);}
.m47_c00193{transform:matrix(0.324381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324381,0.000000,0.000000,0.250000,0,0);}
.m4_c00193{transform:matrix(0.324794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324794,0.000000,0.000000,0.250000,0,0);}
.m5f_c00193{transform:matrix(0.327026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327026,0.000000,0.000000,0.250000,0,0);}
.m24_c00193{transform:matrix(0.328069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328069,0.000000,0.000000,0.250000,0,0);}
.m43_c00193{transform:matrix(0.328093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328093,0.000000,0.000000,0.250000,0,0);}
.m23_c00193{transform:matrix(0.329405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329405,0.000000,0.000000,0.250000,0,0);}
.maa_c00193{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m17_c00193{transform:matrix(0.334121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334121,0.000000,0.000000,0.250000,0,0);}
.m66_c00193{transform:matrix(0.335559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335559,0.000000,0.000000,0.250000,0,0);}
.m14_c00193{transform:matrix(0.335935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335935,0.000000,0.000000,0.250000,0,0);}
.m25_c00193{transform:matrix(0.337205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337205,0.000000,0.000000,0.250000,0,0);}
.m86_c00193{transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);}
.m18_c00193{transform:matrix(0.338456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338456,0.000000,0.000000,0.250000,0,0);}
.m35_c00193{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m38_c00193{transform:matrix(0.342141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342141,0.000000,0.000000,0.250000,0,0);}
.mac_c00193{transform:matrix(0.342513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342513,0.000000,0.000000,0.250000,0,0);}
.m49_c00193{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.m12_c00193{transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);}
.m7_c00193{transform:matrix(0.344324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344324,0.000000,0.000000,0.250000,0,0);}
.m82_c00193{transform:matrix(0.349110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349110,0.000000,0.000000,0.250000,0,0);}
.m1b_c00193{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m7f_c00193{transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);}
.m76_c00193{transform:matrix(0.354539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354539,0.000000,0.000000,0.250000,0,0);}
.m74_c00193{transform:matrix(0.354899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354899,0.000000,0.000000,0.250000,0,0);}
.m3a_c00193{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m73_c00193{transform:matrix(0.355530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355530,0.000000,0.000000,0.250000,0,0);}
.m8c_c00193{transform:matrix(0.364326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364326,0.000000,0.000000,0.250000,0,0);}
.m29_c00193{transform:matrix(0.365181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365181,0.000000,0.000000,0.250000,0,0);}
.m9b_c00193{transform:matrix(0.373718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373718,0.000000,0.000000,0.250000,0,0);}
.m5a_c00193{transform:matrix(0.378961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378961,0.000000,0.000000,0.250000,0,0);}
.m6a_c00193{transform:matrix(0.430633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430633,0.000000,0.000000,0.250000,0,0);}
.m60_c00193{transform:matrix(0.473405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473405,0.000000,0.000000,0.250000,0,0);}
.v1_c00193{vertical-align:-22.799700px;}
.v0_c00193{vertical-align:0.000000px;}
.v2_c00193{vertical-align:25.654860px;}
.lsa_c00193{letter-spacing:-2.744280px;}
.ls8_c00193{letter-spacing:-2.375762px;}
.ls12_c00193{letter-spacing:-1.897474px;}
.ls13_c00193{letter-spacing:-1.866110px;}
.ls10_c00193{letter-spacing:-1.215324px;}
.ls5_c00193{letter-spacing:0.000000px;}
.lsf_c00193{letter-spacing:0.940896px;}
.ls4_c00193{letter-spacing:1.144757px;}
.ls1_c00193{letter-spacing:1.944518px;}
.ls0_c00193{letter-spacing:2.048434px;}
.ls11_c00193{letter-spacing:3.112798px;}
.lse_c00193{letter-spacing:3.246091px;}
.lsc_c00193{letter-spacing:3.276900px;}
.ls9_c00193{letter-spacing:3.544200px;}
.ls6_c00193{letter-spacing:3.722400px;}
.ls7_c00193{letter-spacing:3.920400px;}
.lsb_c00193{letter-spacing:4.197610px;}
.ls2_c00193{letter-spacing:8.177400px;}
.ls3_c00193{letter-spacing:26.444880px;}
.lsd_c00193{letter-spacing:67.003200px;}
.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;}
}
.ws2_c00193{word-spacing:-23.036483px;}
.ws3_c00193{word-spacing:-21.546518px;}
.ws6_c00193{word-spacing:-20.746757px;}
.ws0_c00193{word-spacing:-19.602000px;}
.ws4_c00193{word-spacing:-18.386676px;}
.ws7_c00193{word-spacing:-17.735890px;}
.ws8_c00193{word-spacing:0.000000px;}
.ws5_c00193{word-spacing:6.429456px;}
.ws1_c00193{word-spacing:7.840800px;}
._d_c00193{margin-left:-11.683584px;}
._c_c00193{margin-left:-1.897474px;}
._a_c00193{width:2.417902px;}
._0_c00193{width:5.211360px;}
._2_c00193{width:6.899904px;}
._3_c00193{width:7.919208px;}
._8_c00193{width:9.095328px;}
._10_c00193{width:10.115028px;}
._5_c00193{width:11.918016px;}
._b_c00193{width:17.955432px;}
._4_c00193{width:22.267872px;}
._9_c00193{width:26.737128px;}
._6_c00193{width:28.422900px;}
._7_c00193{width:32.264892px;}
._1_c00193{width:35.636436px;}
._e_c00193{width:39.047184px;}
._f_c00193{width:43.752060px;}
._11_c00193{width:53.166960px;}
.fc0_c00193{color:transparent;}
.fsc_c00193{font-size:27.720000px;}
.fs9_c00193{font-size:34.056198px;}
.fs8_c00193{font-size:34.650000px;}
.fs1_c00193{font-size:38.808000px;}
.fsa_c00193{font-size:41.580000px;}
.fs0_c00193{font-size:44.352000px;}
.fsd_c00193{font-size:50.292000px;}
.fs6_c00193{font-size:65.538000px;}
.fsb_c00193{font-size:66.330000px;}
.fs7_c00193{font-size:67.003200px;}
.fs4_c00193{font-size:70.884000px;}
.fs2_c00193{font-size:74.448000px;}
.fs3_c00193{font-size:78.408000px;}
.fs5_c00193{font-size:83.952198px;}
.y1f_c00193{bottom:-1.518615px;}
.y0_c00193{bottom:0.000000px;}
.y1_c00193{bottom:76.500000px;}
.y1e_c00193{bottom:114.311385px;}
.y1d_c00193{bottom:147.812985px;}
.y1c_c00193{bottom:178.111935px;}
.y1b_c00193{bottom:205.911135px;}
.y1a_c00193{bottom:212.321385px;}
.y19_c00193{bottom:276.834735px;}
.y18_c00193{bottom:305.341785px;}
.y17_c00193{bottom:308.910735px;}
.y15_c00193{bottom:340.268985px;}
.y16_c00193{bottom:345.971385px;}
.y14_c00193{bottom:372.701385px;}
.y13_c00193{bottom:405.138735px;}
.y12_c00193{bottom:437.927535px;}
.y11_c00193{bottom:471.067785px;}
.y10_c00193{bottom:503.148735px;}
.yf_c00193{bottom:535.937535px;}
.ye_c00193{bottom:599.015385px;}
.yd_c00193{bottom:631.447785px;}
.y3_c00193{bottom:642.501135px;}
.yc_c00193{bottom:666.023535px;}
.yb_c00193{bottom:698.450985px;}
.ya_c00193{bottom:730.883385px;}
.y9_c00193{bottom:762.964335px;}
.y8_c00193{bottom:796.104585px;}
.y7_c00193{bottom:828.185535px;}
.y2_c00193{bottom:855.979785px;}
.y6_c00193{bottom:893.045385px;}
.y5_c00193{bottom:927.259785px;}
.y4_c00193{bottom:1077.660585px;}
.hd_c00193{height:28.911094px;}
.hb_c00193{height:35.519550px;}
.ha_c00193{height:36.138867px;}
.h3_c00193{height:40.475531px;}
.h9_c00193{height:44.624131px;}
.h2_c00193{height:46.257750px;}
.he_c00193{height:49.358848px;}
.h8_c00193{height:68.354086px;}
.h6_c00193{height:69.568770px;}
.h4_c00193{height:73.066641px;}
.h5_c00193{height:76.953164px;}
.h7_c00193{height:82.394491px;}
.hc_c00193{height:102.594164px;}
.h1_c00193{height:1110.000000px;}
.h0_c00193{height:1263.000000px;}
.w1_c00193{width:733.500000px;}
.w0_c00193{width:892.500000px;}
.x0_c00193{left:0.000000px;}
.x2_c00193{left:22.650735px;}
.x3_c00193{left:26.590935px;}
.x55_c00193{left:61.627035px;}
.x6_c00193{left:62.696235px;}
.x4c_c00193{left:64.527735px;}
.x1_c00193{left:79.500000px;}
.x39_c00193{left:85.688985px;}
.x44_c00193{left:95.648385px;}
.x45_c00193{left:107.157135px;}
.x16_c00193{left:117.868935px;}
.x56_c00193{left:127.561035px;}
.x32_c00193{left:128.783685px;}
.x46_c00193{left:130.753785px;}
.xf_c00193{left:139.510335px;}
.x7_c00193{left:150.776535px;}
.x33_c00193{left:160.334985px;}
.x3a_c00193{left:162.300135px;}
.x52_c00193{left:163.646535px;}
.x66_c00193{left:164.789985px;}
.x5c_c00193{left:169.611285px;}
.x26_c00193{left:171.081435px;}
.x17_c00193{left:172.437735px;}
.x63_c00193{left:175.051335px;}
.x47_c00193{left:183.505935px;}
.x59_c00193{left:193.841535px;}
.x21_c00193{left:195.079035px;}
.x64_c00193{left:196.163085px;}
.x18_c00193{left:206.528385px;}
.x4d_c00193{left:216.824385px;}
.x6a_c00193{left:218.641035px;}
.x10_c00193{left:228.263835px;}
.x48_c00193{left:239.317185px;}
.x27_c00193{left:250.509135px;}
.x11_c00193{left:261.052635px;}
.x2e_c00193{left:264.200835px;}
.x8_c00193{left:272.818785px;}
.x5d_c00193{left:274.170135px;}
.x49_c00193{left:282.664335px;}
.x19_c00193{left:294.227535px;}
.x12_c00193{left:304.340385px;}
.x5a_c00193{left:307.632135px;}
.x62_c00193{left:309.161685px;}
.x41_c00193{left:317.012385px;}
.x60_c00193{left:318.576585px;}
.x1a_c00193{left:326.427285px;}
.x22_c00193{left:327.659835px;}
.x57_c00193{left:330.491235px;}
.x61_c00193{left:337.054935px;}
.x28_c00193{left:338.718135px;}
.x9_c00193{left:349.598235px;}
.x13_c00193{left:360.280335px;}
.x3b_c00193{left:361.562385px;}
.x29_c00193{left:371.561385px;}
.xa_c00193{left:382.387035px;}
.x5e_c00193{left:384.970935px;}
.x34_c00193{left:391.935585px;}
.x2a_c00193{left:393.272085px;}
.x23_c00193{left:404.117535px;}
.x3c_c00193{left:415.695585px;}
.x1b_c00193{left:426.060885px;}
.x50_c00193{left:435.772785px;}
.x14_c00193{left:437.817135px;}
.x2b_c00193{left:448.137885px;}
.x67_c00193{left:449.207085px;}
.x1c_c00193{left:458.225985px;}
.x2f_c00193{left:460.191135px;}
.x42_c00193{left:471.244485px;}
.x35_c00193{left:481.827585px;}
.x24_c00193{left:493.281885px;}
.x15_c00193{left:495.093585px;}
.x4e_c00193{left:503.939235px;}
.x4a_c00193{left:506.577585px;}
.x68_c00193{left:515.843985px;}
.x25_c00193{left:524.937135px;}
.xb_c00193{left:526.204335px;}
.x53_c00193{left:528.298185px;}
.x36_c00193{left:536.559735px;}
.x37_c00193{left:546.014235px;}
.x3d_c00193{left:547.959585px;}
.x1d_c00193{left:558.676335px;}
.x43_c00193{left:561.082035px;}
.xc_c00193{left:569.229735px;}
.x54_c00193{left:571.620585px;}
.x2c_c00193{left:581.015685px;}
.x2d_c00193{left:591.747285px;}
.x58_c00193{left:601.256235px;}
.x1e_c00193{left:603.201585px;}
.x65_c00193{left:605.226135px;}
.x38_c00193{left:613.883685px;}
.x1f_c00193{left:624.377685px;}
.x30_c00193{left:625.634985px;}
.x3e_c00193{left:634.045035px;}
.xd_c00193{left:635.624085px;}
.x51_c00193{left:636.648735px;}
.x5f_c00193{left:645.449835px;}
.x4_c00193{left:646.949685px;}
.x69_c00193{left:651.404685px;}
.xe_c00193{left:657.349635px;}
.x3f_c00193{left:668.219835px;}
.x5_c00193{left:669.472185px;}
.x4b_c00193{left:670.556235px;}
.x5b_c00193{left:678.199035px;}
.x20_c00193{left:679.263285px;}
.x40_c00193{left:690.479985px;}
.x31_c00193{left:701.528385px;}
.x4f_c00193{left:712.576785px;}
@media print{
.v1_c00193{vertical-align:-20.266400pt;}
.v0_c00193{vertical-align:0.000000pt;}
.v2_c00193{vertical-align:22.804320pt;}
.lsa_c00193{letter-spacing:-2.439360pt;}
.ls8_c00193{letter-spacing:-2.111789pt;}
.ls12_c00193{letter-spacing:-1.686643pt;}
.ls13_c00193{letter-spacing:-1.658765pt;}
.ls10_c00193{letter-spacing:-1.080288pt;}
.ls5_c00193{letter-spacing:0.000000pt;}
.lsf_c00193{letter-spacing:0.836352pt;}
.ls4_c00193{letter-spacing:1.017562pt;}
.ls1_c00193{letter-spacing:1.728461pt;}
.ls0_c00193{letter-spacing:1.820830pt;}
.ls11_c00193{letter-spacing:2.766931pt;}
.lse_c00193{letter-spacing:2.885414pt;}
.lsc_c00193{letter-spacing:2.912800pt;}
.ls9_c00193{letter-spacing:3.150400pt;}
.ls6_c00193{letter-spacing:3.308800pt;}
.ls7_c00193{letter-spacing:3.484800pt;}
.lsb_c00193{letter-spacing:3.731209pt;}
.ls2_c00193{letter-spacing:7.268800pt;}
.ls3_c00193{letter-spacing:23.506560pt;}
.lsd_c00193{letter-spacing:59.558400pt;}
.ws2_c00193{word-spacing:-20.476874pt;}
.ws3_c00193{word-spacing:-19.152461pt;}
.ws6_c00193{word-spacing:-18.441562pt;}
.ws0_c00193{word-spacing:-17.424000pt;}
.ws4_c00193{word-spacing:-16.343712pt;}
.ws7_c00193{word-spacing:-15.765235pt;}
.ws8_c00193{word-spacing:0.000000pt;}
.ws5_c00193{word-spacing:5.715072pt;}
.ws1_c00193{word-spacing:6.969600pt;}
._d_c00193{margin-left:-10.385408pt;}
._c_c00193{margin-left:-1.686643pt;}
._a_c00193{width:2.149246pt;}
._0_c00193{width:4.632320pt;}
._2_c00193{width:6.133248pt;}
._3_c00193{width:7.039296pt;}
._8_c00193{width:8.084736pt;}
._10_c00193{width:8.991136pt;}
._5_c00193{width:10.593792pt;}
._b_c00193{width:15.960384pt;}
._4_c00193{width:19.793664pt;}
._9_c00193{width:23.766336pt;}
._6_c00193{width:25.264800pt;}
._7_c00193{width:28.679904pt;}
._1_c00193{width:31.676832pt;}
._e_c00193{width:34.708608pt;}
._f_c00193{width:38.890720pt;}
._11_c00193{width:47.259520pt;}
.fsc_c00193{font-size:24.640000pt;}
.fs9_c00193{font-size:30.272176pt;}
.fs8_c00193{font-size:30.800000pt;}
.fs1_c00193{font-size:34.496000pt;}
.fsa_c00193{font-size:36.960000pt;}
.fs0_c00193{font-size:39.424000pt;}
.fsd_c00193{font-size:44.704000pt;}
.fs6_c00193{font-size:58.256000pt;}
.fsb_c00193{font-size:58.960000pt;}
.fs7_c00193{font-size:59.558400pt;}
.fs4_c00193{font-size:63.008000pt;}
.fs2_c00193{font-size:66.176000pt;}
.fs3_c00193{font-size:69.696000pt;}
.fs5_c00193{font-size:74.624176pt;}
.y1f_c00193{bottom:-1.349880pt;}
.y0_c00193{bottom:0.000000pt;}
.y1_c00193{bottom:68.000000pt;}
.y1e_c00193{bottom:101.610120pt;}
.y1d_c00193{bottom:131.389320pt;}
.y1c_c00193{bottom:158.321720pt;}
.y1b_c00193{bottom:183.032120pt;}
.y1a_c00193{bottom:188.730120pt;}
.y19_c00193{bottom:246.075320pt;}
.y18_c00193{bottom:271.414920pt;}
.y17_c00193{bottom:274.587320pt;}
.y15_c00193{bottom:302.461320pt;}
.y16_c00193{bottom:307.530120pt;}
.y14_c00193{bottom:331.290120pt;}
.y13_c00193{bottom:360.123320pt;}
.y12_c00193{bottom:389.268920pt;}
.y11_c00193{bottom:418.726920pt;}
.y10_c00193{bottom:447.243320pt;}
.yf_c00193{bottom:476.388920pt;}
.ye_c00193{bottom:532.458120pt;}
.yd_c00193{bottom:561.286920pt;}
.y3_c00193{bottom:571.112120pt;}
.yc_c00193{bottom:592.020920pt;}
.yb_c00193{bottom:620.845320pt;}
.ya_c00193{bottom:649.674120pt;}
.y9_c00193{bottom:678.190520pt;}
.y8_c00193{bottom:707.648520pt;}
.y7_c00193{bottom:736.164920pt;}
.y2_c00193{bottom:760.870920pt;}
.y6_c00193{bottom:793.818120pt;}
.y5_c00193{bottom:824.230920pt;}
.y4_c00193{bottom:957.920520pt;}
.hd_c00193{height:25.698750pt;}
.hb_c00193{height:31.572934pt;}
.ha_c00193{height:32.123438pt;}
.h3_c00193{height:35.978250pt;}
.h9_c00193{height:39.665894pt;}
.h2_c00193{height:41.118000pt;}
.he_c00193{height:43.874531pt;}
.h8_c00193{height:60.759188pt;}
.h6_c00193{height:61.838906pt;}
.h4_c00193{height:64.948125pt;}
.h5_c00193{height:68.402813pt;}
.h7_c00193{height:73.239548pt;}
.hc_c00193{height:91.194812pt;}
.h1_c00193{height:986.666667pt;}
.h0_c00193{height:1122.666667pt;}
.w1_c00193{width:652.000000pt;}
.w0_c00193{width:793.333333pt;}
.x0_c00193{left:0.000000pt;}
.x2_c00193{left:20.133987pt;}
.x3_c00193{left:23.636387pt;}
.x55_c00193{left:54.779587pt;}
.x6_c00193{left:55.729987pt;}
.x4c_c00193{left:57.357987pt;}
.x1_c00193{left:70.666667pt;}
.x39_c00193{left:76.167987pt;}
.x44_c00193{left:85.020787pt;}
.x45_c00193{left:95.250787pt;}
.x16_c00193{left:104.772387pt;}
.x56_c00193{left:113.387587pt;}
.x32_c00193{left:114.474387pt;}
.x46_c00193{left:116.225587pt;}
.xf_c00193{left:124.009187pt;}
.x7_c00193{left:134.023587pt;}
.x33_c00193{left:142.519987pt;}
.x3a_c00193{left:144.266787pt;}
.x52_c00193{left:145.463587pt;}
.x66_c00193{left:146.479987pt;}
.x5c_c00193{left:150.765587pt;}
.x26_c00193{left:152.072387pt;}
.x17_c00193{left:153.277987pt;}
.x63_c00193{left:155.601187pt;}
.x47_c00193{left:163.116387pt;}
.x59_c00193{left:172.303587pt;}
.x21_c00193{left:173.403587pt;}
.x64_c00193{left:174.367187pt;}
.x18_c00193{left:183.580787pt;}
.x4d_c00193{left:192.732787pt;}
.x6a_c00193{left:194.347587pt;}
.x10_c00193{left:202.901187pt;}
.x48_c00193{left:212.726387pt;}
.x27_c00193{left:222.674787pt;}
.x11_c00193{left:232.046787pt;}
.x2e_c00193{left:234.845187pt;}
.x8_c00193{left:242.505587pt;}
.x5d_c00193{left:243.706787pt;}
.x49_c00193{left:251.257187pt;}
.x19_c00193{left:261.535587pt;}
.x12_c00193{left:270.524787pt;}
.x5a_c00193{left:273.450787pt;}
.x62_c00193{left:274.810387pt;}
.x41_c00193{left:281.788787pt;}
.x60_c00193{left:283.179187pt;}
.x1a_c00193{left:290.157587pt;}
.x22_c00193{left:291.253187pt;}
.x57_c00193{left:293.769987pt;}
.x61_c00193{left:299.604387pt;}
.x28_c00193{left:301.082787pt;}
.x9_c00193{left:310.753987pt;}
.x13_c00193{left:320.249187pt;}
.x3b_c00193{left:321.388787pt;}
.x29_c00193{left:330.276787pt;}
.xa_c00193{left:339.899587pt;}
.x5e_c00193{left:342.196387pt;}
.x34_c00193{left:348.387187pt;}
.x2a_c00193{left:349.575187pt;}
.x23_c00193{left:359.215587pt;}
.x3c_c00193{left:369.507187pt;}
.x1b_c00193{left:378.720787pt;}
.x50_c00193{left:387.353587pt;}
.x14_c00193{left:389.170787pt;}
.x2b_c00193{left:398.344787pt;}
.x67_c00193{left:399.295187pt;}
.x1c_c00193{left:407.311987pt;}
.x2f_c00193{left:409.058787pt;}
.x42_c00193{left:418.883987pt;}
.x35_c00193{left:428.291187pt;}
.x24_c00193{left:438.472787pt;}
.x15_c00193{left:440.083187pt;}
.x4e_c00193{left:447.945987pt;}
.x4a_c00193{left:450.291187pt;}
.x68_c00193{left:458.527987pt;}
.x25_c00193{left:466.610787pt;}
.xb_c00193{left:467.737187pt;}
.x53_c00193{left:469.598387pt;}
.x36_c00193{left:476.941987pt;}
.x37_c00193{left:485.345987pt;}
.x3d_c00193{left:487.075187pt;}
.x1d_c00193{left:496.601187pt;}
.x43_c00193{left:498.739587pt;}
.xc_c00193{left:505.981987pt;}
.x54_c00193{left:508.107187pt;}
.x2c_c00193{left:516.458387pt;}
.x2d_c00193{left:525.997587pt;}
.x58_c00193{left:534.449987pt;}
.x1e_c00193{left:536.179187pt;}
.x65_c00193{left:537.978787pt;}
.x38_c00193{left:545.674387pt;}
.x1f_c00193{left:555.002387pt;}
.x30_c00193{left:556.119987pt;}
.x3e_c00193{left:563.595587pt;}
.xd_c00193{left:564.999187pt;}
.x51_c00193{left:565.909987pt;}
.x5f_c00193{left:573.733187pt;}
.x4_c00193{left:575.066387pt;}
.x69_c00193{left:579.026387pt;}
.xe_c00193{left:584.310787pt;}
.x3f_c00193{left:593.973187pt;}
.x5_c00193{left:595.086387pt;}
.x4b_c00193{left:596.049987pt;}
.x5b_c00193{left:602.843587pt;}
.x20_c00193{left:603.789587pt;}
.x40_c00193{left:613.759987pt;}
.x31_c00193{left:623.580787pt;}
.x4f_c00193{left:633.401587pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d7a8bec137d6d37444efa2c9.woff2')format("woff");}.ff1_c00194{font-family:ff1_c00194;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00194;src:url('chunks/assets/font_251e596432f0067861da2014.woff2')format("woff");}.ff2_c00194{font-family:ff2_c00194;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00194;src:url('chunks/assets/font_1eb3e2410904daf3bc1a14a7.woff2')format("woff");}.ff3_c00194{font-family:ff3_c00194;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00194;src:url('chunks/assets/font_62945dd922c9ea91feed2b2f.woff2')format("woff");}.ff4_c00194{font-family:ff4_c00194;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00194;src:url('chunks/assets/font_a5b07260e21ec18c7b4be501.woff2')format("woff");}.ff5_c00194{font-family:ff5_c00194;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m60_c00194{transform:matrix(0.148809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148809,0.000000,0.000000,0.250000,0,0);}
.mb_c00194{transform:matrix(0.160715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160715,0.000000,0.000000,0.250000,0,0);}
.md_c00194{transform:matrix(0.166666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166666,0.000000,0.000000,0.250000,0,0);}
.mc_c00194{transform:matrix(0.178572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178572,0.000000,0.000000,0.250000,0,0);}
.mc1_c00194{transform:matrix(0.206040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206040,0.000000,0.000000,0.250000,0,0);}
.ma_c00194{transform:matrix(0.213095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213095,0.000000,0.000000,0.250000,0,0);}
.m3e_c00194{transform:matrix(0.219533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219533,0.000000,0.000000,0.250000,0,0);}
.m12_c00194{transform:matrix(0.227167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227167,0.000000,0.000000,0.250000,0,0);}
.m6d_c00194{transform:matrix(0.228445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228445,0.000000,0.000000,0.250000,0,0);}
.mb5_c00194{transform:matrix(0.231421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231421,0.000000,0.000000,0.250000,0,0);}
.m30_c00194{transform:matrix(0.236997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236997,0.000000,0.000000,0.250000,0,0);}
.ma0_c00194{transform:matrix(0.237638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237638,0.000000,0.000000,0.250000,0,0);}
.m95_c00194{transform:matrix(0.247107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247107,0.000000,0.000000,0.250000,0,0);}
.mb2_c00194{transform:matrix(0.248605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248605,0.000000,0.000000,0.250000,0,0);}
.m9d_c00194{transform:matrix(0.248868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248868,0.000000,0.000000,0.250000,0,0);}
.m4d_c00194{transform:matrix(0.249385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249385,0.000000,0.000000,0.250000,0,0);}
.m27_c00194{transform:matrix(0.249980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249980,0.000000,0.000000,0.250000,0,0);}
.m0_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);}
.m67_c00194{transform:matrix(0.250517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250517,0.000000,0.000000,0.250000,0,0);}
.m31_c00194{transform:matrix(0.252202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252202,0.000000,0.000000,0.250000,0,0);}
.m21_c00194{transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);}
.m49_c00194{transform:matrix(0.254700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254700,0.000000,0.000000,0.250000,0,0);}
.m99_c00194{transform:matrix(0.256552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256552,0.000000,0.000000,0.250000,0,0);}
.m45_c00194{transform:matrix(0.256563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256563,0.000000,0.000000,0.250000,0,0);}
.m1b_c00194{transform:matrix(0.257306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257306,0.000000,0.000000,0.250000,0,0);}
.mad_c00194{transform:matrix(0.257917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257917,0.000000,0.000000,0.250000,0,0);}
.m88_c00194{transform:matrix(0.258596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258596,0.000000,0.000000,0.250000,0,0);}
.m24_c00194{transform:matrix(0.259723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259723,0.000000,0.000000,0.250000,0,0);}
.m47_c00194{transform:matrix(0.260756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260756,0.000000,0.000000,0.250000,0,0);}
.mf_c00194{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m94_c00194{transform:matrix(0.261938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261938,0.000000,0.000000,0.250000,0,0);}
.m85_c00194{transform:matrix(0.262454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262454,0.000000,0.000000,0.250000,0,0);}
.m4_c00194{transform:matrix(0.262576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262576,0.000000,0.000000,0.250000,0,0);}
.m80_c00194{transform:matrix(0.262649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262649,0.000000,0.000000,0.250000,0,0);}
.m4c_c00194{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.mce_c00194{transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);}
.m6e_c00194{transform:matrix(0.264128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264128,0.000000,0.000000,0.250000,0,0);}
.m23_c00194{transform:matrix(0.265221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265221,0.000000,0.000000,0.250000,0,0);}
.m53_c00194{transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);}
.me_c00194{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m5a_c00194{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m62_c00194{transform:matrix(0.267925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267925,0.000000,0.000000,0.250000,0,0);}
.mc8_c00194{transform:matrix(0.268177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268177,0.000000,0.000000,0.250000,0,0);}
.m26_c00194{transform:matrix(0.269485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269485,0.000000,0.000000,0.250000,0,0);}
.m17_c00194{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m3c_c00194{transform:matrix(0.271197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271197,0.000000,0.000000,0.250000,0,0);}
.mbf_c00194{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m3f_c00194{transform:matrix(0.273258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273258,0.000000,0.000000,0.250000,0,0);}
.m29_c00194{transform:matrix(0.273741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273741,0.000000,0.000000,0.250000,0,0);}
.m82_c00194{transform:matrix(0.274132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274132,0.000000,0.000000,0.250000,0,0);}
.mc6_c00194{transform:matrix(0.274588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274588,0.000000,0.000000,0.250000,0,0);}
.m7b_c00194{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.maf_c00194{transform:matrix(0.275570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275570,0.000000,0.000000,0.250000,0,0);}
.m7f_c00194{transform:matrix(0.277134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277134,0.000000,0.000000,0.250000,0,0);}
.m8e_c00194{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m1f_c00194{transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);}
.m41_c00194{transform:matrix(0.278029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278029,0.000000,0.000000,0.250000,0,0);}
.m5f_c00194{transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);}
.mcd_c00194{transform:matrix(0.279967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279967,0.000000,0.000000,0.250000,0,0);}
.m44_c00194{transform:matrix(0.280644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280644,0.000000,0.000000,0.250000,0,0);}
.m2_c00194{transform:matrix(0.280664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280664,0.000000,0.000000,0.250000,0,0);}
.m6f_c00194{transform:matrix(0.280991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280991,0.000000,0.000000,0.250000,0,0);}
.m1d_c00194{transform:matrix(0.281528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281528,0.000000,0.000000,0.250000,0,0);}
.m2c_c00194{transform:matrix(0.281783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281783,0.000000,0.000000,0.250000,0,0);}
.m84_c00194{transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);}
.ma7_c00194{transform:matrix(0.281954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281954,0.000000,0.000000,0.250000,0,0);}
.m75_c00194{transform:matrix(0.282518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282518,0.000000,0.000000,0.250000,0,0);}
.maa_c00194{transform:matrix(0.282795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282795,0.000000,0.000000,0.250000,0,0);}
.m86_c00194{transform:matrix(0.283366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283366,0.000000,0.000000,0.250000,0,0);}
.m50_c00194{transform:matrix(0.283801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283801,0.000000,0.000000,0.250000,0,0);}
.mb3_c00194{transform:matrix(0.284316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284316,0.000000,0.000000,0.250000,0,0);}
.m97_c00194{transform:matrix(0.284682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284682,0.000000,0.000000,0.250000,0,0);}
.mc3_c00194{transform:matrix(0.285533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285533,0.000000,0.000000,0.250000,0,0);}
.m77_c00194{transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);}
.mab_c00194{transform:matrix(0.286659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286659,0.000000,0.000000,0.250000,0,0);}
.m4a_c00194{transform:matrix(0.286826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286826,0.000000,0.000000,0.250000,0,0);}
.m42_c00194{transform:matrix(0.287090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287090,0.000000,0.000000,0.250000,0,0);}
.m6a_c00194{transform:matrix(0.287224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287224,0.000000,0.000000,0.250000,0,0);}
.ma2_c00194{transform:matrix(0.287283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287283,0.000000,0.000000,0.250000,0,0);}
.m8b_c00194{transform:matrix(0.289472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289472,0.000000,0.000000,0.250000,0,0);}
.m93_c00194{transform:matrix(0.289803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289803,0.000000,0.000000,0.250000,0,0);}
.mcb_c00194{transform:matrix(0.289951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289951,0.000000,0.000000,0.250000,0,0);}
.m56_c00194{transform:matrix(0.290475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290475,0.000000,0.000000,0.250000,0,0);}
.m70_c00194{transform:matrix(0.290530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290530,0.000000,0.000000,0.250000,0,0);}
.m38_c00194{transform:matrix(0.290836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290836,0.000000,0.000000,0.250000,0,0);}
.m64_c00194{transform:matrix(0.291032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291032,0.000000,0.000000,0.250000,0,0);}
.mae_c00194{transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);}
.m4f_c00194{transform:matrix(0.292392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292392,0.000000,0.000000,0.250000,0,0);}
.mb8_c00194{transform:matrix(0.293166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293166,0.000000,0.000000,0.250000,0,0);}
.m36_c00194{transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);}
.ma3_c00194{transform:matrix(0.293889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293889,0.000000,0.000000,0.250000,0,0);}
.m65_c00194{transform:matrix(0.293903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293903,0.000000,0.000000,0.250000,0,0);}
.m43_c00194{transform:matrix(0.294789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294789,0.000000,0.000000,0.250000,0,0);}
.m7d_c00194{transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);}
.mb1_c00194{transform:matrix(0.295090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295090,0.000000,0.000000,0.250000,0,0);}
.m13_c00194{transform:matrix(0.295763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295763,0.000000,0.000000,0.250000,0,0);}
.m5_c00194{transform:matrix(0.295937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295937,0.000000,0.000000,0.250000,0,0);}
.m8c_c00194{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m6c_c00194{transform:matrix(0.297110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297110,0.000000,0.000000,0.250000,0,0);}
.mb4_c00194{transform:matrix(0.297122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297122,0.000000,0.000000,0.250000,0,0);}
.mc2_c00194{transform:matrix(0.297306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297306,0.000000,0.000000,0.250000,0,0);}
.mb9_c00194{transform:matrix(0.297658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297658,0.000000,0.000000,0.250000,0,0);}
.m8d_c00194{transform:matrix(0.298909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298909,0.000000,0.000000,0.250000,0,0);}
.m61_c00194{transform:matrix(0.300165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300165,0.000000,0.000000,0.250000,0,0);}
.m46_c00194{transform:matrix(0.300521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300521,0.000000,0.000000,0.250000,0,0);}
.m33_c00194{transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);}
.m1e_c00194{transform:matrix(0.300736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300736,0.000000,0.000000,0.250000,0,0);}
.m1a_c00194{transform:matrix(0.301167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301167,0.000000,0.000000,0.250000,0,0);}
.m1_c00194{transform:matrix(0.301620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301620,0.000000,0.000000,0.250000,0,0);}
.mbd_c00194{transform:matrix(0.301761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301761,0.000000,0.000000,0.250000,0,0);}
.mc5_c00194{transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);}
.mba_c00194{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m5c_c00194{transform:matrix(0.303038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303038,0.000000,0.000000,0.250000,0,0);}
.mcc_c00194{transform:matrix(0.303343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303343,0.000000,0.000000,0.250000,0,0);}
.m83_c00194{transform:matrix(0.304642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304642,0.000000,0.000000,0.250000,0,0);}
.m40_c00194{transform:matrix(0.304800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304800,0.000000,0.000000,0.250000,0,0);}
.m39_c00194{transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);}
.m76_c00194{transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);}
.m3_c00194{transform:matrix(0.306235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306235,0.000000,0.000000,0.250000,0,0);}
.m28_c00194{transform:matrix(0.307242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307242,0.000000,0.000000,0.250000,0,0);}
.m22_c00194{transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);}
.m9c_c00194{transform:matrix(0.308280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308280,0.000000,0.000000,0.250000,0,0);}
.m11_c00194{transform:matrix(0.308319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308319,0.000000,0.000000,0.250000,0,0);}
.m9b_c00194{transform:matrix(0.309027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309027,0.000000,0.000000,0.250000,0,0);}
.m96_c00194{transform:matrix(0.310694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310694,0.000000,0.000000,0.250000,0,0);}
.m6_c00194{transform:matrix(0.310877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310877,0.000000,0.000000,0.250000,0,0);}
.m2a_c00194{transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);}
.m63_c00194{transform:matrix(0.311307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311307,0.000000,0.000000,0.250000,0,0);}
.m8_c00194{transform:matrix(0.311353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311353,0.000000,0.000000,0.250000,0,0);}
.m57_c00194{transform:matrix(0.312145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312145,0.000000,0.000000,0.250000,0,0);}
.m74_c00194{transform:matrix(0.312778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312778,0.000000,0.000000,0.250000,0,0);}
.m79_c00194{transform:matrix(0.313023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313023,0.000000,0.000000,0.250000,0,0);}
.m1c_c00194{transform:matrix(0.313434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313434,0.000000,0.000000,0.250000,0,0);}
.m32_c00194{transform:matrix(0.313504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313504,0.000000,0.000000,0.250000,0,0);}
.m19_c00194{transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);}
.m58_c00194{transform:matrix(0.315175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315175,0.000000,0.000000,0.250000,0,0);}
.m8a_c00194{transform:matrix(0.315717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315717,0.000000,0.000000,0.250000,0,0);}
.m92_c00194{transform:matrix(0.316540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316540,0.000000,0.000000,0.250000,0,0);}
.m48_c00194{transform:matrix(0.316801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316801,0.000000,0.000000,0.250000,0,0);}
.m78_c00194{transform:matrix(0.316908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316908,0.000000,0.000000,0.250000,0,0);}
.m4b_c00194{transform:matrix(0.316931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316931,0.000000,0.000000,0.250000,0,0);}
.m69_c00194{transform:matrix(0.317599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317599,0.000000,0.000000,0.250000,0,0);}
.m16_c00194{transform:matrix(0.319699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319699,0.000000,0.000000,0.250000,0,0);}
.mcf_c00194{transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);}
.m3b_c00194{transform:matrix(0.321349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321349,0.000000,0.000000,0.250000,0,0);}
.m66_c00194{transform:matrix(0.321354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321354,0.000000,0.000000,0.250000,0,0);}
.m10_c00194{transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);}
.m72_c00194{transform:matrix(0.321729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321729,0.000000,0.000000,0.250000,0,0);}
.m54_c00194{transform:matrix(0.323267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323267,0.000000,0.000000,0.250000,0,0);}
.m90_c00194{transform:matrix(0.323503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323503,0.000000,0.000000,0.250000,0,0);}
.m5e_c00194{transform:matrix(0.323585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323585,0.000000,0.000000,0.250000,0,0);}
.m20_c00194{transform:matrix(0.324174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324174,0.000000,0.000000,0.250000,0,0);}
.mb7_c00194{transform:matrix(0.325627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325627,0.000000,0.000000,0.250000,0,0);}
.ma8_c00194{transform:matrix(0.325862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325862,0.000000,0.000000,0.250000,0,0);}
.m68_c00194{transform:matrix(0.326317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326317,0.000000,0.000000,0.250000,0,0);}
.m35_c00194{transform:matrix(0.326944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326944,0.000000,0.000000,0.250000,0,0);}
.m37_c00194{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m71_c00194{transform:matrix(0.328655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328655,0.000000,0.000000,0.250000,0,0);}
.mb6_c00194{transform:matrix(0.328751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328751,0.000000,0.000000,0.250000,0,0);}
.mbe_c00194{transform:matrix(0.328825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328825,0.000000,0.000000,0.250000,0,0);}
.m4e_c00194{transform:matrix(0.329883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329883,0.000000,0.000000,0.250000,0,0);}
.m9f_c00194{transform:matrix(0.330361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330361,0.000000,0.000000,0.250000,0,0);}
.m51_c00194{transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);}
.m3a_c00194{transform:matrix(0.331248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331248,0.000000,0.000000,0.250000,0,0);}
.m59_c00194{transform:matrix(0.331407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331407,0.000000,0.000000,0.250000,0,0);}
.m73_c00194{transform:matrix(0.331631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331631,0.000000,0.000000,0.250000,0,0);}
.m98_c00194{transform:matrix(0.331913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331913,0.000000,0.000000,0.250000,0,0);}
.m14_c00194{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m7_c00194{transform:matrix(0.333376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333376,0.000000,0.000000,0.250000,0,0);}
.m7e_c00194{transform:matrix(0.333426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333426,0.000000,0.000000,0.250000,0,0);}
.ma5_c00194{transform:matrix(0.334473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334473,0.000000,0.000000,0.250000,0,0);}
.mbc_c00194{transform:matrix(0.335394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335394,0.000000,0.000000,0.250000,0,0);}
.m3d_c00194{transform:matrix(0.335559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335559,0.000000,0.000000,0.250000,0,0);}
.m81_c00194{transform:matrix(0.335935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335935,0.000000,0.000000,0.250000,0,0);}
.m52_c00194{transform:matrix(0.337181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337181,0.000000,0.000000,0.250000,0,0);}
.m18_c00194{transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);}
.m2e_c00194{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m87_c00194{transform:matrix(0.340256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340256,0.000000,0.000000,0.250000,0,0);}
.m5b_c00194{transform:matrix(0.341416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341416,0.000000,0.000000,0.250000,0,0);}
.m2d_c00194{transform:matrix(0.343069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343069,0.000000,0.000000,0.250000,0,0);}
.m9_c00194{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.m9a_c00194{transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);}
.m2b_c00194{transform:matrix(0.343889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343889,0.000000,0.000000,0.250000,0,0);}
.m34_c00194{transform:matrix(0.345193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345193,0.000000,0.000000,0.250000,0,0);}
.ma6_c00194{transform:matrix(0.346299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346299,0.000000,0.000000,0.250000,0,0);}
.m15_c00194{transform:matrix(0.347013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347013,0.000000,0.000000,0.250000,0,0);}
.mca_c00194{transform:matrix(0.348293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348293,0.000000,0.000000,0.250000,0,0);}
.m5d_c00194{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m89_c00194{transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);}
.m7c_c00194{transform:matrix(0.350956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350956,0.000000,0.000000,0.250000,0,0);}
.mbb_c00194{transform:matrix(0.355170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355170,0.000000,0.000000,0.250000,0,0);}
.mc0_c00194{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.ma4_c00194{transform:matrix(0.357165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357165,0.000000,0.000000,0.250000,0,0);}
.mac_c00194{transform:matrix(0.357999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357999,0.000000,0.000000,0.250000,0,0);}
.ma9_c00194{transform:matrix(0.359212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359212,0.000000,0.000000,0.250000,0,0);}
.m9e_c00194{transform:matrix(0.362739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362739,0.000000,0.000000,0.250000,0,0);}
.m8f_c00194{transform:matrix(0.362785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362785,0.000000,0.000000,0.250000,0,0);}
.mc9_c00194{transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);}
.m55_c00194{transform:matrix(0.374714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374714,0.000000,0.000000,0.250000,0,0);}
.ma1_c00194{transform:matrix(0.381065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381065,0.000000,0.000000,0.250000,0,0);}
.mc4_c00194{transform:matrix(0.388396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388396,0.000000,0.000000,0.250000,0,0);}
.mc7_c00194{transform:matrix(0.388717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388717,0.000000,0.000000,0.250000,0,0);}
.mb0_c00194{transform:matrix(0.414699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414699,0.000000,0.000000,0.250000,0,0);}
.m25_c00194{transform:matrix(0.420983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420983,0.000000,0.000000,0.250000,0,0);}
.m2f_c00194{transform:matrix(0.438188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438188,0.000000,0.000000,0.250000,0,0);}
.m7a_c00194{transform:matrix(0.440068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440068,0.000000,0.000000,0.250000,0,0);}
.m6b_c00194{transform:matrix(0.442832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442832,0.000000,0.000000,0.250000,0,0);}
.m91_c00194{transform:matrix(0.452857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452857,0.000000,0.000000,0.250000,0,0);}
.v0_c00194{vertical-align:0.000000px;}
.ls7_c00194{letter-spacing:-2.744280px;}
.ls8_c00194{letter-spacing:-2.736439px;}
.lsc_c00194{letter-spacing:-2.375762px;}
.ls3_c00194{letter-spacing:0.000000px;}
.ls5_c00194{letter-spacing:0.525334px;}
.lsa_c00194{letter-spacing:1.082030px;}
.ls12_c00194{letter-spacing:1.176120px;}
.lsd_c00194{letter-spacing:1.881792px;}
.ls2_c00194{letter-spacing:2.069971px;}
.lsf_c00194{letter-spacing:2.732400px;}
.lse_c00194{letter-spacing:2.752200px;}
.ls9_c00194{letter-spacing:2.987345px;}
.ls0_c00194{letter-spacing:3.112798px;}
.lsb_c00194{letter-spacing:3.405610px;}
.ls11_c00194{letter-spacing:3.534310px;}
.ls10_c00194{letter-spacing:3.544200px;}
.ls13_c00194{letter-spacing:3.559723px;}
.ls4_c00194{letter-spacing:3.920400px;}
.ls1_c00194{letter-spacing:20.856528px;}
.ls6_c00194{letter-spacing:59.875398px;}
.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;}
}
.ws1_c00194{word-spacing:-20.684030px;}
.ws0_c00194{word-spacing:-19.602000px;}
.ws3_c00194{word-spacing:0.000000px;}
.ws2_c00194{word-spacing:2.352240px;}
._15_c00194{margin-left:-11.761200px;}
._11_c00194{width:3.136716px;}
._a_c00194{width:4.940100px;}
._8_c00194{width:6.272640px;}
._13_c00194{width:7.761600px;}
._c_c00194{width:9.251748px;}
._3_c00194{width:10.584684px;}
._4_c00194{width:12.623688px;}
._0_c00194{width:20.856528px;}
._1_c00194{width:22.267476px;}
._b_c00194{width:23.553763px;}
._6_c00194{width:25.953048px;}
._9_c00194{width:27.364392px;}
._7_c00194{width:28.383696px;}
._14_c00194{width:30.012048px;}
._2_c00194{width:31.206384px;}
._10_c00194{width:32.446022px;}
._f_c00194{width:33.637032px;}
._e_c00194{width:36.131436px;}
._12_c00194{width:37.235088px;}
._5_c00194{width:40.850568px;}
._d_c00194{width:44.535744px;}
.fc0_c00194{color:transparent;}
.fs0_c00194{font-size:22.176000px;}
.fs5_c00194{font-size:54.648000px;}
.fs4_c00194{font-size:55.044000px;}
.fs2_c00194{font-size:59.875398px;}
.fs3_c00194{font-size:68.112198px;}
.fs7_c00194{font-size:70.686198px;}
.fs6_c00194{font-size:70.884000px;}
.fs1_c00194{font-size:78.408000px;}
.y0_c00194{bottom:0.000000px;}
.y1_c00194{bottom:76.500000px;}
.y1d_c00194{bottom:145.318185px;}
.y1c_c00194{bottom:175.260735px;}
.y1b_c00194{bottom:210.182985px;}
.y2_c00194{bottom:234.774585px;}
.y19_c00194{bottom:242.607861px;}
.y1a_c00194{bottom:242.615385px;}
.y18_c00194{bottom:274.696335px;}
.y17_c00194{bottom:306.415935px;}
.y16_c00194{bottom:370.919385px;}
.y15_c00194{bottom:403.351785px;}
.y14_c00194{bottom:435.789135px;}
.y13_c00194{bottom:467.865135px;}
.y12_c00194{bottom:500.297535px;}
.y11_c00194{bottom:532.373535px;}
.y10_c00194{bottom:559.811385px;}
.yf_c00194{bottom:565.513785px;}
.ye_c00194{bottom:597.594735px;}
.yd_c00194{bottom:630.027135px;}
.yc_c00194{bottom:662.459535px;}
.yb_c00194{bottom:695.956185px;}
.ya_c00194{bottom:760.469535px;}
.y9_c00194{bottom:760.471515px;}
.y8_c00194{bottom:792.540585px;}
.y7_c00194{bottom:824.265135px;}
.y6_c00194{bottom:856.336185px;}
.y5_c00194{bottom:889.481385px;}
.y4_c00194{bottom:922.631535px;}
.y3_c00194{bottom:1072.670985px;}
.h2_c00194{height:23.128875px;}
.h4_c00194{height:39.877015px;}
.h7_c00194{height:53.634023px;}
.h6_c00194{height:54.022676px;}
.h8_c00194{height:69.568770px;}
.h5_c00194{height:71.038894px;}
.h9_c00194{height:71.238434px;}
.h3_c00194{height:76.953164px;}
.h1_c00194{height:1110.000000px;}
.h0_c00194{height:1263.000000px;}
.w1_c00194{width:733.500000px;}
.w0_c00194{width:892.500000px;}
.x0_c00194{left:0.000000px;}
.x2_c00194{left:12.404235px;}
.x54_c00194{left:58.389735px;}
.x3c_c00194{left:59.843847px;}
.x5_c00194{left:61.404285px;}
.x12_c00194{left:62.513085px;}
.x1_c00194{left:79.500000px;}
.x8f_c00194{left:82.263585px;}
.x31_c00194{left:83.377335px;}
.x5c_c00194{left:92.148735px;}
.x80_c00194{left:93.529785px;}
.x13_c00194{left:94.643535px;}
.x6b_c00194{left:103.508985px;}
.x6_c00194{left:105.820635px;}
.x3f_c00194{left:113.943585px;}
.x24_c00194{left:116.626485px;}
.x5d_c00194{left:123.992085px;}
.x25_c00194{left:125.818635px;}
.x14_c00194{left:127.046235px;}
.x81_c00194{left:136.664085px;}
.x78_c00194{left:147.583785px;}
.x55_c00194{left:158.082735px;}
.x26_c00194{left:160.463685px;}
.x40_c00194{left:168.967785px;}
.x32_c00194{left:171.210135px;}
.x15_c00194{left:172.234785px;}
.x74_c00194{left:179.956785px;}
.x90_c00194{left:181.174485px;}
.x56_c00194{left:191.133885px;}
.x3d_c00194{left:195.286935px;}
.x5e_c00194{left:202.598085px;}
.x7_c00194{left:207.543135px;}
.x75_c00194{left:213.646485px;}
.x33_c00194{left:215.606685px;}
.x48_c00194{left:223.353435px;}
.x5f_c00194{left:224.853285px;}
.x16_c00194{left:227.189685px;}
.x66_c00194{left:236.743185px;}
.x27_c00194{left:241.168485px;}
.x17_c00194{left:248.029185px;}
.x3e_c00194{left:251.365485px;}
.x8a_c00194{left:254.780985px;}
.x60_c00194{left:257.439135px;}
.x84_c00194{left:258.835035px;}
.x8_c00194{left:259.958685px;}
.x67_c00194{left:268.353885px;}
.x18_c00194{left:271.195185px;}
.x41_c00194{left:279.367635px;}
.x34_c00194{left:281.654535px;}
.x72_c00194{left:290.529885px;}
.x8b_c00194{left:292.024785px;}
.x9_c00194{left:296.019435px;}
.x6c_c00194{left:301.677285px;}
.x28_c00194{left:303.434535px;}
.x68_c00194{left:312.661335px;}
.x89_c00194{left:313.775085px;}
.x19_c00194{left:315.854085px;}
.x49_c00194{left:323.779035px;}
.x82_c00194{left:324.853185px;}
.xa_c00194{left:326.452035px;}
.x6d_c00194{left:334.218585px;}
.x79_c00194{left:335.337285px;}
.x35_c00194{left:336.837135px;}
.x61_c00194{left:345.875835px;}
.x76_c00194{left:346.920285px;}
.x1a_c00194{left:348.524085px;}
.x4a_c00194{left:356.493585px;}
.x87_c00194{left:357.963735px;}
.x36_c00194{left:359.216085px;}
.x6e_c00194{left:367.309335px;}
.x42_c00194{left:368.685435px;}
.xb_c00194{left:370.427835px;}
.x4b_c00194{left:378.823035px;}
.x1b_c00194{left:381.154485px;}
.x7a_c00194{left:382.550385px;}
.x57_c00194{left:389.336835px;}
.x1c_c00194{left:391.985085px;}
.x73_c00194{left:401.271285px;}
.x29_c00194{left:403.261185px;}
.x69_c00194{left:410.903985px;}
.x83_c00194{left:412.037535px;}
.x8c_c00194{left:413.171085px;}
.x62_c00194{left:414.195735px;}
.x38_c00194{left:423.679935px;}
.x2a_c00194{left:425.204535px;}
.x7b_c00194{left:433.035435px;}
.x58_c00194{left:434.253135px;}
.x1d_c00194{left:436.579635px;}
.x6f_c00194{left:445.128285px;}
.x2b_c00194{left:449.479335px;}
.x7c_c00194{left:456.632085px;}
.xc_c00194{left:458.819985px;}
.x63_c00194{left:467.061735px;}
.x4c_c00194{left:468.091335px;}
.x2c_c00194{left:469.190235px;}
.x64_c00194{left:476.872635px;}
.x43_c00194{left:478.387335px;}
.x88_c00194{left:479.857485px;}
.x77_c00194{left:490.544535px;}
.xd_c00194{left:491.851335px;}
.x4d_c00194{left:500.350485px;}
.x1e_c00194{left:503.374935px;}
.x44_c00194{left:511.596885px;}
.x39_c00194{left:512.844285px;}
.x2d_c00194{left:514.081785px;}
.x65_c00194{left:522.140385px;}
.x6a_c00194{left:523.348185px;}
.x2e_c00194{left:524.912385px;}
.x45_c00194{left:531.758235px;}
.x4e_c00194{left:533.337285px;}
.x1f_c00194{left:535.807335px;}
.x4f_c00194{left:544.717335px;}
.x3a_c00194{left:546.454785px;}
.x59_c00194{left:555.443985px;}
.xe_c00194{left:557.780385px;}
.x46_c00194{left:566.131035px;}
.x20_c00194{left:568.071435px;}
.x37_c00194{left:577.733835px;}
.xf_c00194{left:580.238535px;}
.x70_c00194{left:588.039735px;}
.x21_c00194{left:590.296935px;}
.x50_c00194{left:599.607885px;}
.x47_c00194{left:609.775185px;}
.x22_c00194{left:612.631335px;}
.x5a_c00194{left:621.679935px;}
.x23_c00194{left:624.204435px;}
.x8d_c00194{left:631.550235px;}
.x85_c00194{left:634.698435px;}
.x51_c00194{left:643.123335px;}
.x2f_c00194{left:644.895435px;}
.x3_c00194{left:646.236885px;}
.x5b_c00194{left:651.112635px;}
.x52_c00194{left:654.137085px;}
.x3b_c00194{left:655.394385px;}
.x10_c00194{left:656.508135px;}
.x7e_c00194{left:665.487435px;}
.x11_c00194{left:667.195185px;}
.x4_c00194{left:668.393085px;}
.x53_c00194{left:675.540885px;}
.x8e_c00194{left:676.565535px;}
.x71_c00194{left:687.272385px;}
.x30_c00194{left:688.999935px;}
.x7d_c00194{left:690.232485px;}
.x7f_c00194{left:698.696985px;}
.x86_c00194{left:709.725585px;}
@media print{
.v0_c00194{vertical-align:0.000000pt;}
.ls7_c00194{letter-spacing:-2.439360pt;}
.ls8_c00194{letter-spacing:-2.432390pt;}
.lsc_c00194{letter-spacing:-2.111789pt;}
.ls3_c00194{letter-spacing:0.000000pt;}
.ls5_c00194{letter-spacing:0.466963pt;}
.lsa_c00194{letter-spacing:0.961805pt;}
.ls12_c00194{letter-spacing:1.045440pt;}
.lsd_c00194{letter-spacing:1.672704pt;}
.ls2_c00194{letter-spacing:1.839974pt;}
.lsf_c00194{letter-spacing:2.428800pt;}
.lse_c00194{letter-spacing:2.446400pt;}
.ls9_c00194{letter-spacing:2.655418pt;}
.ls0_c00194{letter-spacing:2.766931pt;}
.lsb_c00194{letter-spacing:3.027209pt;}
.ls11_c00194{letter-spacing:3.141609pt;}
.ls10_c00194{letter-spacing:3.150400pt;}
.ls13_c00194{letter-spacing:3.164198pt;}
.ls4_c00194{letter-spacing:3.484800pt;}
.ls1_c00194{letter-spacing:18.539136pt;}
.ls6_c00194{letter-spacing:53.222576pt;}
.ws1_c00194{word-spacing:-18.385805pt;}
.ws0_c00194{word-spacing:-17.424000pt;}
.ws3_c00194{word-spacing:0.000000pt;}
.ws2_c00194{word-spacing:2.090880pt;}
._15_c00194{margin-left:-10.454400pt;}
._11_c00194{width:2.788192pt;}
._a_c00194{width:4.391200pt;}
._8_c00194{width:5.575680pt;}
._13_c00194{width:6.899200pt;}
._c_c00194{width:8.223776pt;}
._3_c00194{width:9.408608pt;}
._4_c00194{width:11.221056pt;}
._0_c00194{width:18.539136pt;}
._1_c00194{width:19.793312pt;}
._b_c00194{width:20.936678pt;}
._6_c00194{width:23.069376pt;}
._9_c00194{width:24.323904pt;}
._7_c00194{width:25.229952pt;}
._14_c00194{width:26.677376pt;}
._2_c00194{width:27.739008pt;}
._10_c00194{width:28.840909pt;}
._f_c00194{width:29.899584pt;}
._e_c00194{width:32.116832pt;}
._12_c00194{width:33.097856pt;}
._5_c00194{width:36.311616pt;}
._d_c00194{width:39.587328pt;}
.fs0_c00194{font-size:19.712000pt;}
.fs5_c00194{font-size:48.576000pt;}
.fs4_c00194{font-size:48.928000pt;}
.fs2_c00194{font-size:53.222576pt;}
.fs3_c00194{font-size:60.544176pt;}
.fs7_c00194{font-size:62.832176pt;}
.fs6_c00194{font-size:63.008000pt;}
.fs1_c00194{font-size:69.696000pt;}
.y0_c00194{bottom:0.000000pt;}
.y1_c00194{bottom:68.000000pt;}
.y1d_c00194{bottom:129.171720pt;}
.y1c_c00194{bottom:155.787320pt;}
.y1b_c00194{bottom:186.829320pt;}
.y2_c00194{bottom:208.688520pt;}
.y19_c00194{bottom:215.651432pt;}
.y1a_c00194{bottom:215.658120pt;}
.y18_c00194{bottom:244.174520pt;}
.y17_c00194{bottom:272.369720pt;}
.y16_c00194{bottom:329.706120pt;}
.y15_c00194{bottom:358.534920pt;}
.y14_c00194{bottom:387.368120pt;}
.y13_c00194{bottom:415.880120pt;}
.y12_c00194{bottom:444.708920pt;}
.y11_c00194{bottom:473.220920pt;}
.y10_c00194{bottom:497.610120pt;}
.yf_c00194{bottom:502.678920pt;}
.ye_c00194{bottom:531.195320pt;}
.yd_c00194{bottom:560.024120pt;}
.yc_c00194{bottom:588.852920pt;}
.yb_c00194{bottom:618.627720pt;}
.ya_c00194{bottom:675.972920pt;}
.y9_c00194{bottom:675.974680pt;}
.y8_c00194{bottom:704.480520pt;}
.y7_c00194{bottom:732.680120pt;}
.y6_c00194{bottom:761.187720pt;}
.y5_c00194{bottom:790.650120pt;}
.y4_c00194{bottom:820.116920pt;}
.y3_c00194{bottom:953.485320pt;}
.h2_c00194{height:20.559000pt;}
.h4_c00194{height:35.446236pt;}
.h7_c00194{height:47.674688pt;}
.h6_c00194{height:48.020156pt;}
.h8_c00194{height:61.838906pt;}
.h5_c00194{height:63.145684pt;}
.h9_c00194{height:63.323052pt;}
.h3_c00194{height:68.402813pt;}
.h1_c00194{height:986.666667pt;}
.h0_c00194{height:1122.666667pt;}
.w1_c00194{width:652.000000pt;}
.w0_c00194{width:793.333333pt;}
.x0_c00194{left:0.000000pt;}
.x2_c00194{left:11.025987pt;}
.x54_c00194{left:51.901987pt;}
.x3c_c00194{left:53.194531pt;}
.x5_c00194{left:54.581587pt;}
.x12_c00194{left:55.567187pt;}
.x1_c00194{left:70.666667pt;}
.x8f_c00194{left:73.123187pt;}
.x31_c00194{left:74.113187pt;}
.x5c_c00194{left:81.909987pt;}
.x80_c00194{left:83.137587pt;}
.x13_c00194{left:84.127587pt;}
.x6b_c00194{left:92.007987pt;}
.x6_c00194{left:94.062787pt;}
.x3f_c00194{left:101.283187pt;}
.x24_c00194{left:103.667987pt;}
.x5d_c00194{left:110.215187pt;}
.x25_c00194{left:111.838787pt;}
.x14_c00194{left:112.929987pt;}
.x81_c00194{left:121.479187pt;}
.x78_c00194{left:131.185587pt;}
.x55_c00194{left:140.517987pt;}
.x26_c00194{left:142.634387pt;}
.x40_c00194{left:150.193587pt;}
.x32_c00194{left:152.186787pt;}
.x15_c00194{left:153.097587pt;}
.x74_c00194{left:159.961587pt;}
.x90_c00194{left:161.043987pt;}
.x56_c00194{left:169.896787pt;}
.x3d_c00194{left:173.588387pt;}
.x5e_c00194{left:180.087187pt;}
.x7_c00194{left:184.482787pt;}
.x75_c00194{left:189.907987pt;}
.x33_c00194{left:191.650387pt;}
.x48_c00194{left:198.536387pt;}
.x5f_c00194{left:199.869587pt;}
.x16_c00194{left:201.946387pt;}
.x66_c00194{left:210.438387pt;}
.x27_c00194{left:214.371987pt;}
.x17_c00194{left:220.470387pt;}
.x3e_c00194{left:223.435987pt;}
.x8a_c00194{left:226.471987pt;}
.x60_c00194{left:228.834787pt;}
.x84_c00194{left:230.075587pt;}
.x8_c00194{left:231.074387pt;}
.x67_c00194{left:238.536787pt;}
.x18_c00194{left:241.062387pt;}
.x41_c00194{left:248.326787pt;}
.x34_c00194{left:250.359587pt;}
.x72_c00194{left:258.248787pt;}
.x8b_c00194{left:259.577587pt;}
.x9_c00194{left:263.128387pt;}
.x6c_c00194{left:268.157587pt;}
.x28_c00194{left:269.719587pt;}
.x68_c00194{left:277.921187pt;}
.x89_c00194{left:278.911187pt;}
.x19_c00194{left:280.759187pt;}
.x49_c00194{left:287.803587pt;}
.x82_c00194{left:288.758387pt;}
.xa_c00194{left:290.179587pt;}
.x6d_c00194{left:297.083187pt;}
.x79_c00194{left:298.077587pt;}
.x35_c00194{left:299.410787pt;}
.x61_c00194{left:307.445187pt;}
.x76_c00194{left:308.373587pt;}
.x1a_c00194{left:309.799187pt;}
.x4a_c00194{left:316.883187pt;}
.x87_c00194{left:318.189987pt;}
.x36_c00194{left:319.303187pt;}
.x6e_c00194{left:326.497187pt;}
.x42_c00194{left:327.720387pt;}
.xb_c00194{left:329.269187pt;}
.x4b_c00194{left:336.731587pt;}
.x1b_c00194{left:338.803987pt;}
.x7a_c00194{left:340.044787pt;}
.x57_c00194{left:346.077187pt;}
.x1c_c00194{left:348.431187pt;}
.x73_c00194{left:356.685587pt;}
.x29_c00194{left:358.454387pt;}
.x69_c00194{left:365.247987pt;}
.x83_c00194{left:366.255587pt;}
.x8c_c00194{left:367.263187pt;}
.x62_c00194{left:368.173987pt;}
.x38_c00194{left:376.604387pt;}
.x2a_c00194{left:377.959587pt;}
.x7b_c00194{left:384.920387pt;}
.x58_c00194{left:386.002787pt;}
.x1d_c00194{left:388.070787pt;}
.x6f_c00194{left:395.669587pt;}
.x2b_c00194{left:399.537187pt;}
.x7c_c00194{left:405.895187pt;}
.xc_c00194{left:407.839987pt;}
.x63_c00194{left:415.165987pt;}
.x4c_c00194{left:416.081187pt;}
.x2c_c00194{left:417.057987pt;}
.x64_c00194{left:423.886787pt;}
.x43_c00194{left:425.233187pt;}
.x88_c00194{left:426.539987pt;}
.x77_c00194{left:436.039587pt;}
.xd_c00194{left:437.201187pt;}
.x4d_c00194{left:444.755987pt;}
.x1e_c00194{left:447.444387pt;}
.x44_c00194{left:454.752787pt;}
.x39_c00194{left:455.861587pt;}
.x2d_c00194{left:456.961587pt;}
.x65_c00194{left:464.124787pt;}
.x6a_c00194{left:465.198387pt;}
.x2e_c00194{left:466.588787pt;}
.x45_c00194{left:472.673987pt;}
.x4e_c00194{left:474.077587pt;}
.x1f_c00194{left:476.273187pt;}
.x4f_c00194{left:484.193187pt;}
.x3a_c00194{left:485.737587pt;}
.x59_c00194{left:493.727987pt;}
.xe_c00194{left:495.804787pt;}
.x46_c00194{left:503.227587pt;}
.x20_c00194{left:504.952387pt;}
.x37_c00194{left:513.541187pt;}
.xf_c00194{left:515.767587pt;}
.x70_c00194{left:522.701987pt;}
.x21_c00194{left:524.708387pt;}
.x50_c00194{left:532.984787pt;}
.x47_c00194{left:542.022387pt;}
.x22_c00194{left:544.561187pt;}
.x5a_c00194{left:552.604387pt;}
.x23_c00194{left:554.848387pt;}
.x8d_c00194{left:561.377987pt;}
.x85_c00194{left:564.176387pt;}
.x51_c00194{left:571.665187pt;}
.x2f_c00194{left:573.240387pt;}
.x3_c00194{left:574.432787pt;}
.x5b_c00194{left:578.766787pt;}
.x52_c00194{left:581.455187pt;}
.x3b_c00194{left:582.572787pt;}
.x10_c00194{left:583.562787pt;}
.x7e_c00194{left:591.544387pt;}
.x11_c00194{left:593.062387pt;}
.x4_c00194{left:594.127187pt;}
.x53_c00194{left:600.480787pt;}
.x8e_c00194{left:601.391587pt;}
.x71_c00194{left:610.908787pt;}
.x30_c00194{left:612.444387pt;}
.x7d_c00194{left:613.539987pt;}
.x7f_c00194{left:621.063987pt;}
.x86_c00194{left:630.867187pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8707a42680628ed4e2a81762.woff2')format("woff");}.ff1_c00195{font-family:ff1_c00195;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00195;src:url('chunks/assets/font_3a84aa8b4cb069ea3c3f1961.woff2')format("woff");}.ff2_c00195{font-family:ff2_c00195;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00195;src:url('chunks/assets/font_32905d6889e48c00bce51894.woff2')format("woff");}.ff3_c00195{font-family:ff3_c00195;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00195;src:url('chunks/assets/font_c4314ecea0447e30dd93cf04.woff2')format("woff");}.ff4_c00195{font-family:ff4_c00195;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1d_c00195{transform:matrix(0.149230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149230,0.000000,0.000000,0.250000,0,0);}
.m68_c00195{transform:matrix(0.152777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152777,0.000000,0.000000,0.250000,0,0);}
.m67_c00195{transform:matrix(0.159723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159723,0.000000,0.000000,0.250000,0,0);}
.m43_c00195{transform:matrix(0.171948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171948,0.000000,0.000000,0.250000,0,0);}
.m69_c00195{transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);}
.m3b_c00195{transform:matrix(0.197715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197715,0.000000,0.000000,0.250000,0,0);}
.m66_c00195{transform:matrix(0.203704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203704,0.000000,0.000000,0.250000,0,0);}
.m6b_c00195{transform:matrix(0.204861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204861,0.000000,0.000000,0.250000,0,0);}
.m57_c00195{transform:matrix(0.204934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204934,0.000000,0.000000,0.250000,0,0);}
.m8d_c00195{transform:matrix(0.213031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213031,0.000000,0.000000,0.250000,0,0);}
.m6e_c00195{transform:matrix(0.218448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218448,0.000000,0.000000,0.250000,0,0);}
.m14_c00195{transform:matrix(0.237612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237612,0.000000,0.000000,0.250000,0,0);}
.m5a_c00195{transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);}
.m6a_c00195{transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);}
.m1_c00195{transform:matrix(0.247057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247057,0.000000,0.000000,0.250000,0,0);}
.m70_c00195{transform:matrix(0.247103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247103,0.000000,0.000000,0.250000,0,0);}
.m3_c00195{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00195{transform:matrix(0.252205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252205,0.000000,0.000000,0.250000,0,0);}
.m8c_c00195{transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);}
.m20_c00195{transform:matrix(0.252971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252971,0.000000,0.000000,0.250000,0,0);}
.m92_c00195{transform:matrix(0.254597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254597,0.000000,0.000000,0.250000,0,0);}
.m54_c00195{transform:matrix(0.256057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256057,0.000000,0.000000,0.250000,0,0);}
.m36_c00195{transform:matrix(0.256696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256696,0.000000,0.000000,0.250000,0,0);}
.m26_c00195{transform:matrix(0.257566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257566,0.000000,0.000000,0.250000,0,0);}
.m3c_c00195{transform:matrix(0.257634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257634,0.000000,0.000000,0.250000,0,0);}
.mab_c00195{transform:matrix(0.257970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257970,0.000000,0.000000,0.250000,0,0);}
.m21_c00195{transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);}
.m7_c00195{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m75_c00195{transform:matrix(0.259024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259024,0.000000,0.000000,0.250000,0,0);}
.m83_c00195{transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);}
.m8a_c00195{transform:matrix(0.259662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259662,0.000000,0.000000,0.250000,0,0);}
.m64_c00195{transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);}
.mb0_c00195{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m94_c00195{transform:matrix(0.261277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261277,0.000000,0.000000,0.250000,0,0);}
.md_c00195{transform:matrix(0.262649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262649,0.000000,0.000000,0.250000,0,0);}
.m3d_c00195{transform:matrix(0.262950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262950,0.000000,0.000000,0.250000,0,0);}
.m2d_c00195{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m9b_c00195{transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);}
.m9e_c00195{transform:matrix(0.264211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264211,0.000000,0.000000,0.250000,0,0);}
.m65_c00195{transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);}
.m47_c00195{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m4b_c00195{transform:matrix(0.266381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266381,0.000000,0.000000,0.250000,0,0);}
.m24_c00195{transform:matrix(0.266467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266467,0.000000,0.000000,0.250000,0,0);}
.m2f_c00195{transform:matrix(0.267061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267061,0.000000,0.000000,0.250000,0,0);}
.m4c_c00195{transform:matrix(0.267141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267141,0.000000,0.000000,0.250000,0,0);}
.m2_c00195{transform:matrix(0.267206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267206,0.000000,0.000000,0.250000,0,0);}
.m11_c00195{transform:matrix(0.267891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267891,0.000000,0.000000,0.250000,0,0);}
.m1b_c00195{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m81_c00195{transform:matrix(0.267925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267925,0.000000,0.000000,0.250000,0,0);}
.mb8_c00195{transform:matrix(0.268772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268772,0.000000,0.000000,0.250000,0,0);}
.mb9_c00195{transform:matrix(0.269778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269778,0.000000,0.000000,0.250000,0,0);}
.mb_c00195{transform:matrix(0.270236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270236,0.000000,0.000000,0.250000,0,0);}
.m51_c00195{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m2a_c00195{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m85_c00195{transform:matrix(0.272733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272733,0.000000,0.000000,0.250000,0,0);}
.m89_c00195{transform:matrix(0.272975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272975,0.000000,0.000000,0.250000,0,0);}
.maa_c00195{transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);}
.m12_c00195{transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);}
.ma6_c00195{transform:matrix(0.274132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274132,0.000000,0.000000,0.250000,0,0);}
.m0_c00195{transform:matrix(0.275210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275210,0.000000,0.000000,0.250000,0,0);}
.m1f_c00195{transform:matrix(0.275788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275788,0.000000,0.000000,0.250000,0,0);}
.m9c_c00195{transform:matrix(0.276021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276021,0.000000,0.000000,0.250000,0,0);}
.m71_c00195{transform:matrix(0.276903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276903,0.000000,0.000000,0.250000,0,0);}
.m9f_c00195{transform:matrix(0.277604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277604,0.000000,0.000000,0.250000,0,0);}
.m3e_c00195{transform:matrix(0.277813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277813,0.000000,0.000000,0.250000,0,0);}
.m22_c00195{transform:matrix(0.277902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277902,0.000000,0.000000,0.250000,0,0);}
.m78_c00195{transform:matrix(0.278225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278225,0.000000,0.000000,0.250000,0,0);}
.maf_c00195{transform:matrix(0.278379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278379,0.000000,0.000000,0.250000,0,0);}
.mbb_c00195{transform:matrix(0.278536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278536,0.000000,0.000000,0.250000,0,0);}
.mc_c00195{transform:matrix(0.278896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278896,0.000000,0.000000,0.250000,0,0);}
.ma2_c00195{transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);}
.m9d_c00195{transform:matrix(0.279948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279948,0.000000,0.000000,0.250000,0,0);}
.m72_c00195{transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);}
.m8_c00195{transform:matrix(0.281732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281732,0.000000,0.000000,0.250000,0,0);}
.mb4_c00195{transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);}
.m1c_c00195{transform:matrix(0.282015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282015,0.000000,0.000000,0.250000,0,0);}
.m4e_c00195{transform:matrix(0.283726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283726,0.000000,0.000000,0.250000,0,0);}
.m5f_c00195{transform:matrix(0.284092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284092,0.000000,0.000000,0.250000,0,0);}
.m50_c00195{transform:matrix(0.284567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284567,0.000000,0.000000,0.250000,0,0);}
.m60_c00195{transform:matrix(0.284588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284588,0.000000,0.000000,0.250000,0,0);}
.m1e_c00195{transform:matrix(0.284799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284799,0.000000,0.000000,0.250000,0,0);}
.m62_c00195{transform:matrix(0.285011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285011,0.000000,0.000000,0.250000,0,0);}
.m84_c00195{transform:matrix(0.285694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285694,0.000000,0.000000,0.250000,0,0);}
.m5e_c00195{transform:matrix(0.285727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285727,0.000000,0.000000,0.250000,0,0);}
.m79_c00195{transform:matrix(0.288372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288372,0.000000,0.000000,0.250000,0,0);}
.m33_c00195{transform:matrix(0.290943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290943,0.000000,0.000000,0.250000,0,0);}
.mb5_c00195{transform:matrix(0.291905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291905,0.000000,0.000000,0.250000,0,0);}
.m4a_c00195{transform:matrix(0.291957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291957,0.000000,0.000000,0.250000,0,0);}
.m61_c00195{transform:matrix(0.292392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292392,0.000000,0.000000,0.250000,0,0);}
.m15_c00195{transform:matrix(0.292472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292472,0.000000,0.000000,0.250000,0,0);}
.m39_c00195{transform:matrix(0.292653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292653,0.000000,0.000000,0.250000,0,0);}
.m28_c00195{transform:matrix(0.293301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293301,0.000000,0.000000,0.250000,0,0);}
.m41_c00195{transform:matrix(0.293522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293522,0.000000,0.000000,0.250000,0,0);}
.m6f_c00195{transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);}
.m86_c00195{transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);}
.m8e_c00195{transform:matrix(0.294997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294997,0.000000,0.000000,0.250000,0,0);}
.m9_c00195{transform:matrix(0.296600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296600,0.000000,0.000000,0.250000,0,0);}
.m7e_c00195{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m99_c00195{transform:matrix(0.297216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297216,0.000000,0.000000,0.250000,0,0);}
.m44_c00195{transform:matrix(0.297270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297270,0.000000,0.000000,0.250000,0,0);}
.m13_c00195{transform:matrix(0.297628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297628,0.000000,0.000000,0.250000,0,0);}
.m95_c00195{transform:matrix(0.297991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297991,0.000000,0.000000,0.250000,0,0);}
.m55_c00195{transform:matrix(0.299459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299459,0.000000,0.000000,0.250000,0,0);}
.m7d_c00195{transform:matrix(0.300181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300181,0.000000,0.000000,0.250000,0,0);}
.mad_c00195{transform:matrix(0.300736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300736,0.000000,0.000000,0.250000,0,0);}
.m17_c00195{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m63_c00195{transform:matrix(0.302588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302588,0.000000,0.000000,0.250000,0,0);}
.m42_c00195{transform:matrix(0.303169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303169,0.000000,0.000000,0.250000,0,0);}
.mba_c00195{transform:matrix(0.303620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303620,0.000000,0.000000,0.250000,0,0);}
.m49_c00195{transform:matrix(0.304443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304443,0.000000,0.000000,0.250000,0,0);}
.mac_c00195{transform:matrix(0.304836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304836,0.000000,0.000000,0.250000,0,0);}
.m2e_c00195{transform:matrix(0.305043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305043,0.000000,0.000000,0.250000,0,0);}
.m3a_c00195{transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);}
.m98_c00195{transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);}
.m31_c00195{transform:matrix(0.305689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305689,0.000000,0.000000,0.250000,0,0);}
.m3f_c00195{transform:matrix(0.305912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305912,0.000000,0.000000,0.250000,0,0);}
.m34_c00195{transform:matrix(0.307242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307242,0.000000,0.000000,0.250000,0,0);}
.m5d_c00195{transform:matrix(0.307343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307343,0.000000,0.000000,0.250000,0,0);}
.mb1_c00195{transform:matrix(0.307975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307975,0.000000,0.000000,0.250000,0,0);}
.ma1_c00195{transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);}
.ma9_c00195{transform:matrix(0.308280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308280,0.000000,0.000000,0.250000,0,0);}
.m6_c00195{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m77_c00195{transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);}
.ma_c00195{transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);}
.m56_c00195{transform:matrix(0.310694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310694,0.000000,0.000000,0.250000,0,0);}
.m30_c00195{transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);}
.m5c_c00195{transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);}
.m32_c00195{transform:matrix(0.312347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312347,0.000000,0.000000,0.250000,0,0);}
.m91_c00195{transform:matrix(0.312462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312462,0.000000,0.000000,0.250000,0,0);}
.m90_c00195{transform:matrix(0.312531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312531,0.000000,0.000000,0.250000,0,0);}
.m37_c00195{transform:matrix(0.313425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313425,0.000000,0.000000,0.250000,0,0);}
.m6d_c00195{transform:matrix(0.313715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313715,0.000000,0.000000,0.250000,0,0);}
.m5_c00195{transform:matrix(0.313930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313930,0.000000,0.000000,0.250000,0,0);}
.mb7_c00195{transform:matrix(0.314095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314095,0.000000,0.000000,0.250000,0,0);}
.m59_c00195{transform:matrix(0.314182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314182,0.000000,0.000000,0.250000,0,0);}
.m4d_c00195{transform:matrix(0.314813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314813,0.000000,0.000000,0.250000,0,0);}
.mb6_c00195{transform:matrix(0.315082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315082,0.000000,0.000000,0.250000,0,0);}
.ma8_c00195{transform:matrix(0.315158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315158,0.000000,0.000000,0.250000,0,0);}
.m53_c00195{transform:matrix(0.315717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315717,0.000000,0.000000,0.250000,0,0);}
.m58_c00195{transform:matrix(0.317000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00195{transform:matrix(0.317023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317023,0.000000,0.000000,0.250000,0,0);}
.m27_c00195{transform:matrix(0.317737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317737,0.000000,0.000000,0.250000,0,0);}
.m45_c00195{transform:matrix(0.318133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318133,0.000000,0.000000,0.250000,0,0);}
.m73_c00195{transform:matrix(0.321236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321236,0.000000,0.000000,0.250000,0,0);}
.mae_c00195{transform:matrix(0.321475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321475,0.000000,0.000000,0.250000,0,0);}
.m7b_c00195{transform:matrix(0.323032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323032,0.000000,0.000000,0.250000,0,0);}
.ma5_c00195{transform:matrix(0.323074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323074,0.000000,0.000000,0.250000,0,0);}
.m5b_c00195{transform:matrix(0.324775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324775,0.000000,0.000000,0.250000,0,0);}
.m23_c00195{transform:matrix(0.324794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324794,0.000000,0.000000,0.250000,0,0);}
.m76_c00195{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m19_c00195{transform:matrix(0.328902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328902,0.000000,0.000000,0.250000,0,0);}
.m38_c00195{transform:matrix(0.328916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328916,0.000000,0.000000,0.250000,0,0);}
.m29_c00195{transform:matrix(0.329373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329373,0.000000,0.000000,0.250000,0,0);}
.m7c_c00195{transform:matrix(0.330005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330005,0.000000,0.000000,0.250000,0,0);}
.m82_c00195{transform:matrix(0.330662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330662,0.000000,0.000000,0.250000,0,0);}
.m18_c00195{transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);}
.m87_c00195{transform:matrix(0.332438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332438,0.000000,0.000000,0.250000,0,0);}
.m52_c00195{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.ma4_c00195{transform:matrix(0.334522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334522,0.000000,0.000000,0.250000,0,0);}
.m97_c00195{transform:matrix(0.334985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334985,0.000000,0.000000,0.250000,0,0);}
.ma3_c00195{transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);}
.mb3_c00195{transform:matrix(0.337302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337302,0.000000,0.000000,0.250000,0,0);}
.mb2_c00195{transform:matrix(0.337735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337735,0.000000,0.000000,0.250000,0,0);}
.m25_c00195{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m2c_c00195{transform:matrix(0.340015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340015,0.000000,0.000000,0.250000,0,0);}
.me_c00195{transform:matrix(0.340257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340257,0.000000,0.000000,0.250000,0,0);}
.m80_c00195{transform:matrix(0.342319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342319,0.000000,0.000000,0.250000,0,0);}
.m7f_c00195{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.mf_c00195{transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);}
.m35_c00195{transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);}
.m2b_c00195{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m6c_c00195{transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);}
.m10_c00195{transform:matrix(0.355254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355254,0.000000,0.000000,0.250000,0,0);}
.m93_c00195{transform:matrix(0.355848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355848,0.000000,0.000000,0.250000,0,0);}
.m4_c00195{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m8b_c00195{transform:matrix(0.361597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361597,0.000000,0.000000,0.250000,0,0);}
.m9a_c00195{transform:matrix(0.362739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362739,0.000000,0.000000,0.250000,0,0);}
.m4f_c00195{transform:matrix(0.364775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364775,0.000000,0.000000,0.250000,0,0);}
.m46_c00195{transform:matrix(0.368363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368363,0.000000,0.000000,0.250000,0,0);}
.m48_c00195{transform:matrix(0.371331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371331,0.000000,0.000000,0.250000,0,0);}
.ma0_c00195{transform:matrix(0.373449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373449,0.000000,0.000000,0.250000,0,0);}
.m74_c00195{transform:matrix(0.374714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374714,0.000000,0.000000,0.250000,0,0);}
.m40_c00195{transform:matrix(0.374761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374761,0.000000,0.000000,0.250000,0,0);}
.m96_c00195{transform:matrix(0.380532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380532,0.000000,0.000000,0.250000,0,0);}
.m8f_c00195{transform:matrix(0.381065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381065,0.000000,0.000000,0.250000,0,0);}
.m16_c00195{transform:matrix(0.396487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396487,0.000000,0.000000,0.250000,0,0);}
.m1a_c00195{transform:matrix(0.399633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399633,0.000000,0.000000,0.250000,0,0);}
.m88_c00195{transform:matrix(0.415523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415523,0.000000,0.000000,0.250000,0,0);}
.v0_c00195{vertical-align:0.000000px;}
.ls7_c00195{letter-spacing:-3.007627px;}
.lsa_c00195{letter-spacing:-2.744280px;}
.ls14_c00195{letter-spacing:-2.375762px;}
.lsf_c00195{letter-spacing:-1.897474px;}
.lsd_c00195{letter-spacing:-1.560319px;}
.ls16_c00195{letter-spacing:-0.964418px;}
.ls13_c00195{letter-spacing:-0.337154px;}
.ls10_c00195{letter-spacing:-0.172498px;}
.ls9_c00195{letter-spacing:0.000000px;}
.ls15_c00195{letter-spacing:0.274428px;}
.ls12_c00195{letter-spacing:1.082030px;}
.ls1_c00195{letter-spacing:1.113394px;}
.ls4_c00195{letter-spacing:1.819066px;}
.lsc_c00195{letter-spacing:2.132698px;}
.ls17_c00195{letter-spacing:2.516897px;}
.ls18_c00195{letter-spacing:3.081434px;}
.ls19_c00195{letter-spacing:3.112798px;}
.ls1a_c00195{letter-spacing:3.191206px;}
.ls1b_c00195{letter-spacing:3.239644px;}
.ls3_c00195{letter-spacing:3.246091px;}
.ls2_c00195{letter-spacing:3.285295px;}
.lse_c00195{letter-spacing:3.603610px;}
.ls0_c00195{letter-spacing:3.630290px;}
.ls5_c00195{letter-spacing:3.669305px;}
.lsb_c00195{letter-spacing:3.682810px;}
.ls8_c00195{letter-spacing:3.920400px;}
.ls6_c00195{letter-spacing:4.296610px;}
.ls11_c00195{letter-spacing:51.321798px;}
.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;}
}
.wsb_c00195{word-spacing:-25.152354px;}
.ws0_c00195{word-spacing:-23.232290px;}
.ws2_c00195{word-spacing:-21.734698px;}
.ws4_c00195{word-spacing:-19.602000px;}
.wsa_c00195{word-spacing:-18.637582px;}
.ws3_c00195{word-spacing:-18.041681px;}
.ws7_c00195{word-spacing:-0.784080px;}
.wsc_c00195{word-spacing:0.000000px;}
.ws5_c00195{word-spacing:1.489356px;}
.ws8_c00195{word-spacing:2.037816px;}
.ws1_c00195{word-spacing:2.195424px;}
.ws9_c00195{word-spacing:2.352636px;}
.ws6_c00195{word-spacing:3.606768px;}
._e_c00195{margin-left:-13.172544px;}
._18_c00195{margin-left:-11.682792px;}
._1b_c00195{margin-left:-10.271844px;}
._1d_c00195{margin-left:-4.203661px;}
._10_c00195{margin-left:-1.254528px;}
._16_c00195{width:1.489752px;}
._8_c00195{width:2.979504px;}
._15_c00195{width:4.076820px;}
._2_c00195{width:5.645376px;}
._6_c00195{width:7.683588px;}
._4_c00195{width:9.173340px;}
._1_c00195{width:10.585080px;}
._c_c00195{width:11.604384px;}
._f_c00195{width:12.623688px;}
._9_c00195{width:13.921380px;}
._1c_c00195{width:15.054732px;}
._3_c00195{width:17.955432px;}
._12_c00195{width:21.675852px;}
._22_c00195{width:22.783464px;}
._21_c00195{width:24.385284px;}
._14_c00195{width:26.947800px;}
._d_c00195{width:28.962648px;}
._11_c00195{width:30.070260px;}
._1f_c00195{width:31.149914px;}
._5_c00195{width:32.304888px;}
._1e_c00195{width:33.311124px;}
._13_c00195{width:34.674552px;}
._0_c00195{width:35.832456px;}
._b_c00195{width:36.930168px;}
._7_c00195{width:38.263500px;}
._a_c00195{width:41.122620px;}
._19_c00195{width:44.300916px;}
._20_c00195{width:45.555444px;}
._1a_c00195{width:51.436044px;}
._17_c00195{width:59.904108px;}
.fc0_c00195{color:transparent;}
.fs8_c00195{font-size:22.374000px;}
.fs7_c00195{font-size:51.321798px;}
.fs6_c00195{font-size:66.330000px;}
.fs4_c00195{font-size:69.102198px;}
.fs5_c00195{font-size:72.072198px;}
.fs3_c00195{font-size:73.656198px;}
.fs2_c00195{font-size:78.210000px;}
.fs1_c00195{font-size:78.408000px;}
.fs0_c00195{font-size:85.932198px;}
.y0_c00195{bottom:0.000000px;}
.y1c_c00195{bottom:30.557385px;}
.y1_c00195{bottom:76.500000px;}
.y1b_c00195{bottom:179.537535px;}
.y1a_c00195{bottom:212.682735px;}
.y19_c00195{bottom:245.110185px;}
.y18_c00195{bottom:277.186185px;}
.y17_c00195{bottom:309.267135px;}
.y15_c00195{bottom:340.977825px;}
.y16_c00195{bottom:340.981785px;}
.y14_c00195{bottom:373.419135px;}
.y13_c00195{bottom:405.851535px;}
.y12_c00195{bottom:438.278985px;}
.y11_c00195{bottom:504.217935px;}
.y10_c00195{bottom:535.932585px;}
.yf_c00195{bottom:568.008585px;}
.yd_c00195{bottom:599.720760px;}
.ye_c00195{bottom:599.728185px;}
.yc_c00195{bottom:631.809135px;}
.yb_c00195{bottom:664.949385px;}
.ya_c00195{bottom:697.381785px;}
.y9_c00195{bottom:697.388715px;}
.y8_c00195{bottom:762.251535px;}
.y7_c00195{bottom:793.966185px;}
.y6_c00195{bottom:826.398585px;}
.y5_c00195{bottom:859.543785px;}
.y4_c00195{bottom:891.976185px;}
.y3_c00195{bottom:926.908335px;}
.y2_c00195{bottom:1074.457935px;}
.h9_c00195{height:21.958857px;}
.h8_c00195{height:34.180317px;}
.h7_c00195{height:69.180117px;}
.h6_c00195{height:70.734921px;}
.h5_c00195{height:72.071433px;}
.h4_c00195{height:72.289530px;}
.h3_c00195{height:76.953164px;}
.h2_c00195{height:84.337753px;}
.h1_c00195{height:1110.000000px;}
.h0_c00195{height:1263.000000px;}
.w1_c00195{width:733.500000px;}
.w0_c00195{width:892.500000px;}
.x0_c00195{left:0.000000px;}
.x68_c00195{left:60.909285px;}
.x41_c00195{left:61.928985px;}
.x2e_c00195{left:63.399135px;}
.x4_c00195{left:65.022735px;}
.x26_c00195{left:66.042435px;}
.x42_c00195{left:73.393185px;}
.x1_c00195{left:79.500000px;}
.x53_c00195{left:83.372385px;}
.x6b_c00195{left:84.580185px;}
.x43_c00195{left:94.980135px;}
.x72_c00195{left:96.673035px;}
.x44_c00195{left:104.791035px;}
.x6f_c00195{left:105.889935px;}
.xf_c00195{left:107.454135px;}
.x37_c00195{left:116.435415px;}
.x10_c00195{left:117.621435px;}
.x27_c00195{left:119.858835px;}
.x5b_c00195{left:127.768935px;}
.x1c_c00195{left:129.347985px;}
.x5c_c00195{left:137.223435px;}
.x78_c00195{left:139.510335px;}
.x54_c00195{left:141.623985px;}
.x38_c00195{left:149.271735px;}
.x6c_c00195{left:150.370635px;}
.x11_c00195{left:151.618035px;}
.x73_c00195{left:161.240835px;}
.x5_c00195{left:162.602085px;}
.x55_c00195{left:171.754635px;}
.x79_c00195{left:173.363385px;}
.x45_c00195{left:175.793835px;}
.x2f_c00195{left:183.703935px;}
.x7a_c00195{left:186.995685px;}
.x34_c00195{left:194.202885px;}
.x1d_c00195{left:195.331485px;}
.x6d_c00195{left:205.790835px;}
.x6_c00195{left:217.522335px;}
.x12_c00195{left:218.626185px;}
.x46_c00195{left:227.531235px;}
.x1e_c00195{left:228.595485px;}
.x39_c00195{left:238.827135px;}
.x30_c00195{left:249.444885px;}
.x7_c00195{left:251.385285px;}
.x35_c00195{left:260.859585px;}
.x1f_c00195{left:262.399035px;}
.x28_c00195{left:271.185285px;}
.x74_c00195{left:272.992035px;}
.x56_c00195{left:282.213885px;}
.x7b_c00195{left:284.179035px;}
.x69_c00195{left:293.841435px;}
.x13_c00195{left:295.529385px;}
.x57_c00195{left:303.622635px;}
.x29_c00195{left:305.612535px;}
.x2a_c00195{left:316.809435px;}
.x6a_c00195{left:326.362935px;}
.x8_c00195{left:328.021185px;}
.x4c_c00195{left:337.554885px;}
.x58_c00195{left:338.732985px;}
.x70_c00195{left:347.855835px;}
.x2b_c00195{left:349.791285px;}
.x4d_c00195{left:359.770485px;}
.x14_c00195{left:361.374285px;}
.x36_c00195{left:363.126585px;}
.x47_c00195{left:370.972335px;}
.x9_c00195{left:372.477135px;}
.x75_c00195{left:381.001035px;}
.x31_c00195{left:383.248335px;}
.x3a_c00195{left:389.876385px;}
.x48_c00195{left:392.925585px;}
.x20_c00195{left:394.697685px;}
.x4e_c00195{left:403.780935px;}
.x63_c00195{left:405.340185px;}
.x21_c00195{left:415.368885px;}
.xa_c00195{left:426.783585px;}
.x59_c00195{left:436.361835px;}
.x49_c00195{left:437.802285px;}
.x64_c00195{left:440.009985px;}
.x5d_c00195{left:447.677535px;}
.x15_c00195{left:449.004135px;}
.xb_c00195{left:459.577335px;}
.x4a_c00195{left:468.239835px;}
.x65_c00195{left:469.898085px;}
.x3b_c00195{left:480.946485px;}
.x16_c00195{left:482.688885px;}
.x7f_c00195{left:484.985685px;}
.x5e_c00195{left:492.356235px;}
.x3c_c00195{left:502.686885px;}
.x22_c00195{left:504.112485px;}
.x2c_c00195{left:514.250085px;}
.x17_c00195{left:516.205335px;}
.x4f_c00195{left:525.773685px;}
.x23_c00195{left:528.773385px;}
.x24_c00195{left:536.544885px;}
.x18_c00195{left:547.608135px;}
.x50_c00195{left:557.448735px;}
.xc_c00195{left:558.656535px;}
.x32_c00195{left:569.690085px;}
.x76_c00195{left:579.119835px;}
.x25_c00195{left:580.738485px;}
.x19_c00195{left:581.777985px;}
.x7d_c00195{left:582.847185px;}
.x51_c00195{left:591.351285px;}
.x2d_c00195{left:592.489785px;}
.x66_c00195{left:600.543435px;}
.x3d_c00195{left:601.944285px;}
.x1a_c00195{left:603.161985px;}
.x3e_c00195{left:612.784785px;}
.x33_c00195{left:614.546985px;}
.x77_c00195{left:622.996635px;}
.x52_c00195{left:624.536085px;}
.x7e_c00195{left:626.149785px;}
.xd_c00195{left:635.940885px;}
.x4b_c00195{left:646.137885px;}
.x2_c00195{left:647.662485px;}
.x1b_c00195{left:657.517935px;}
.x3f_c00195{left:660.185985px;}
.x5f_c00195{left:667.556535px;}
.x3_c00195{left:669.442485px;}
.xe_c00195{left:671.516535px;}
.x60_c00195{left:673.258935px;}
.x7c_c00195{left:679.500885px;}
.x40_c00195{left:680.624535px;}
.x6e_c00195{left:688.534635px;}
.x5a_c00195{left:689.925585px;}
.x67_c00195{left:700.642335px;}
.x61_c00195{left:701.770935px;}
.x71_c00195{left:703.592535px;}
.x62_c00195{left:711.750135px;}
@media print{
.v0_c00195{vertical-align:0.000000pt;}
.ls7_c00195{letter-spacing:-2.673446pt;}
.lsa_c00195{letter-spacing:-2.439360pt;}
.ls14_c00195{letter-spacing:-2.111789pt;}
.lsf_c00195{letter-spacing:-1.686643pt;}
.lsd_c00195{letter-spacing:-1.386950pt;}
.ls16_c00195{letter-spacing:-0.857261pt;}
.ls13_c00195{letter-spacing:-0.299693pt;}
.ls10_c00195{letter-spacing:-0.153331pt;}
.ls9_c00195{letter-spacing:0.000000pt;}
.ls15_c00195{letter-spacing:0.243936pt;}
.ls12_c00195{letter-spacing:0.961805pt;}
.ls1_c00195{letter-spacing:0.989683pt;}
.ls4_c00195{letter-spacing:1.616947pt;}
.lsc_c00195{letter-spacing:1.895731pt;}
.ls17_c00195{letter-spacing:2.237242pt;}
.ls18_c00195{letter-spacing:2.739053pt;}
.ls19_c00195{letter-spacing:2.766931pt;}
.ls1a_c00195{letter-spacing:2.836627pt;}
.ls1b_c00195{letter-spacing:2.879683pt;}
.ls3_c00195{letter-spacing:2.885414pt;}
.ls2_c00195{letter-spacing:2.920262pt;}
.lse_c00195{letter-spacing:3.203209pt;}
.ls0_c00195{letter-spacing:3.226925pt;}
.ls5_c00195{letter-spacing:3.261604pt;}
.lsb_c00195{letter-spacing:3.273609pt;}
.ls8_c00195{letter-spacing:3.484800pt;}
.ls6_c00195{letter-spacing:3.819209pt;}
.ls11_c00195{letter-spacing:45.619376pt;}
.wsb_c00195{word-spacing:-22.357648pt;}
.ws0_c00195{word-spacing:-20.650925pt;}
.ws2_c00195{word-spacing:-19.319731pt;}
.ws4_c00195{word-spacing:-17.424000pt;}
.wsa_c00195{word-spacing:-16.566739pt;}
.ws3_c00195{word-spacing:-16.037050pt;}
.ws7_c00195{word-spacing:-0.696960pt;}
.wsc_c00195{word-spacing:0.000000pt;}
.ws5_c00195{word-spacing:1.323872pt;}
.ws8_c00195{word-spacing:1.811392pt;}
.ws1_c00195{word-spacing:1.951488pt;}
.ws9_c00195{word-spacing:2.091232pt;}
.ws6_c00195{word-spacing:3.206016pt;}
._e_c00195{margin-left:-11.708928pt;}
._18_c00195{margin-left:-10.384704pt;}
._1b_c00195{margin-left:-9.130528pt;}
._1d_c00195{margin-left:-3.736588pt;}
._10_c00195{margin-left:-1.115136pt;}
._16_c00195{width:1.324224pt;}
._8_c00195{width:2.648448pt;}
._15_c00195{width:3.623840pt;}
._2_c00195{width:5.018112pt;}
._6_c00195{width:6.829856pt;}
._4_c00195{width:8.154080pt;}
._1_c00195{width:9.408960pt;}
._c_c00195{width:10.315008pt;}
._f_c00195{width:11.221056pt;}
._9_c00195{width:12.374560pt;}
._1c_c00195{width:13.381984pt;}
._3_c00195{width:15.960384pt;}
._12_c00195{width:19.267424pt;}
._22_c00195{width:20.251968pt;}
._21_c00195{width:21.675808pt;}
._14_c00195{width:23.953600pt;}
._d_c00195{width:25.744576pt;}
._11_c00195{width:26.729120pt;}
._1f_c00195{width:27.688813pt;}
._5_c00195{width:28.715456pt;}
._1e_c00195{width:29.609888pt;}
._13_c00195{width:30.821824pt;}
._0_c00195{width:31.851072pt;}
._b_c00195{width:32.826816pt;}
._7_c00195{width:34.012000pt;}
._a_c00195{width:36.553440pt;}
._19_c00195{width:39.378592pt;}
._20_c00195{width:40.493728pt;}
._1a_c00195{width:45.720928pt;}
._17_c00195{width:53.248096pt;}
.fs8_c00195{font-size:19.888000pt;}
.fs7_c00195{font-size:45.619376pt;}
.fs6_c00195{font-size:58.960000pt;}
.fs4_c00195{font-size:61.424176pt;}
.fs5_c00195{font-size:64.064176pt;}
.fs3_c00195{font-size:65.472176pt;}
.fs2_c00195{font-size:69.520000pt;}
.fs1_c00195{font-size:69.696000pt;}
.fs0_c00195{font-size:76.384176pt;}
.y0_c00195{bottom:0.000000pt;}
.y1c_c00195{bottom:27.162120pt;}
.y1_c00195{bottom:68.000000pt;}
.y1b_c00195{bottom:159.588920pt;}
.y1a_c00195{bottom:189.051320pt;}
.y19_c00195{bottom:217.875720pt;}
.y18_c00195{bottom:246.387720pt;}
.y17_c00195{bottom:274.904120pt;}
.y15_c00195{bottom:303.091400pt;}
.y16_c00195{bottom:303.094920pt;}
.y14_c00195{bottom:331.928120pt;}
.y13_c00195{bottom:360.756920pt;}
.y12_c00195{bottom:389.581320pt;}
.y11_c00195{bottom:448.193720pt;}
.y10_c00195{bottom:476.384520pt;}
.yf_c00195{bottom:504.896520pt;}
.yd_c00195{bottom:533.085120pt;}
.ye_c00195{bottom:533.091720pt;}
.yc_c00195{bottom:561.608120pt;}
.yb_c00195{bottom:591.066120pt;}
.ya_c00195{bottom:619.894920pt;}
.y9_c00195{bottom:619.901080pt;}
.y8_c00195{bottom:677.556920pt;}
.y7_c00195{bottom:705.747720pt;}
.y6_c00195{bottom:734.576520pt;}
.y5_c00195{bottom:764.038920pt;}
.y4_c00195{bottom:792.867720pt;}
.y3_c00195{bottom:823.918520pt;}
.y2_c00195{bottom:955.073720pt;}
.h9_c00195{height:19.518984pt;}
.h8_c00195{height:30.382504pt;}
.h7_c00195{height:61.493438pt;}
.h6_c00195{height:62.875485pt;}
.h5_c00195{height:64.063496pt;}
.h4_c00195{height:64.257360pt;}
.h3_c00195{height:68.402813pt;}
.h2_c00195{height:74.966891pt;}
.h1_c00195{height:986.666667pt;}
.h0_c00195{height:1122.666667pt;}
.w1_c00195{width:652.000000pt;}
.w0_c00195{width:793.333333pt;}
.x0_c00195{left:0.000000pt;}
.x68_c00195{left:54.141587pt;}
.x41_c00195{left:55.047987pt;}
.x2e_c00195{left:56.354787pt;}
.x4_c00195{left:57.797987pt;}
.x26_c00195{left:58.704387pt;}
.x42_c00195{left:65.238387pt;}
.x1_c00195{left:70.666667pt;}
.x53_c00195{left:74.108787pt;}
.x6b_c00195{left:75.182387pt;}
.x43_c00195{left:84.426787pt;}
.x72_c00195{left:85.931587pt;}
.x44_c00195{left:93.147587pt;}
.x6f_c00195{left:94.124387pt;}
.xf_c00195{left:95.514787pt;}
.x37_c00195{left:103.498147pt;}
.x10_c00195{left:104.552387pt;}
.x27_c00195{left:106.541187pt;}
.x5b_c00195{left:113.572387pt;}
.x1c_c00195{left:114.975987pt;}
.x5c_c00195{left:121.976387pt;}
.x78_c00195{left:124.009187pt;}
.x54_c00195{left:125.887987pt;}
.x38_c00195{left:132.685987pt;}
.x6c_c00195{left:133.662787pt;}
.x11_c00195{left:134.771587pt;}
.x73_c00195{left:143.325187pt;}
.x5_c00195{left:144.535187pt;}
.x55_c00195{left:152.670787pt;}
.x79_c00195{left:154.100787pt;}
.x45_c00195{left:156.261187pt;}
.x2f_c00195{left:163.292387pt;}
.x7a_c00195{left:166.218387pt;}
.x34_c00195{left:172.624787pt;}
.x1d_c00195{left:173.627987pt;}
.x6d_c00195{left:182.925187pt;}
.x6_c00195{left:193.353187pt;}
.x12_c00195{left:194.334387pt;}
.x46_c00195{left:202.249987pt;}
.x1e_c00195{left:203.195987pt;}
.x39_c00195{left:212.290787pt;}
.x30_c00195{left:221.728787pt;}
.x7_c00195{left:223.453587pt;}
.x35_c00195{left:231.875187pt;}
.x1f_c00195{left:233.243587pt;}
.x28_c00195{left:241.053587pt;}
.x74_c00195{left:242.659587pt;}
.x56_c00195{left:250.856787pt;}
.x7b_c00195{left:252.603587pt;}
.x69_c00195{left:261.192387pt;}
.x13_c00195{left:262.692787pt;}
.x57_c00195{left:269.886787pt;}
.x29_c00195{left:271.655587pt;}
.x2a_c00195{left:281.608387pt;}
.x6a_c00195{left:290.100387pt;}
.x8_c00195{left:291.574387pt;}
.x4c_c00195{left:300.048787pt;}
.x58_c00195{left:301.095987pt;}
.x70_c00195{left:309.205187pt;}
.x2b_c00195{left:310.925587pt;}
.x4d_c00195{left:319.795987pt;}
.x14_c00195{left:321.221587pt;}
.x36_c00195{left:322.779187pt;}
.x47_c00195{left:329.753187pt;}
.x9_c00195{left:331.090787pt;}
.x75_c00195{left:338.667587pt;}
.x31_c00195{left:340.665187pt;}
.x3a_c00195{left:346.556787pt;}
.x48_c00195{left:349.267187pt;}
.x20_c00195{left:350.842387pt;}
.x4e_c00195{left:358.916387pt;}
.x63_c00195{left:360.302387pt;}
.x21_c00195{left:369.216787pt;}
.xa_c00195{left:379.363187pt;}
.x59_c00195{left:387.877187pt;}
.x49_c00195{left:389.157587pt;}
.x64_c00195{left:391.119987pt;}
.x5d_c00195{left:397.935587pt;}
.x15_c00195{left:399.114787pt;}
.xb_c00195{left:408.513187pt;}
.x4a_c00195{left:416.213187pt;}
.x65_c00195{left:417.687187pt;}
.x3b_c00195{left:427.507987pt;}
.x16_c00195{left:429.056787pt;}
.x7f_c00195{left:431.098387pt;}
.x5e_c00195{left:437.649987pt;}
.x3c_c00195{left:446.832787pt;}
.x22_c00195{left:448.099987pt;}
.x2c_c00195{left:457.111187pt;}
.x17_c00195{left:458.849187pt;}
.x4f_c00195{left:467.354387pt;}
.x23_c00195{left:470.020787pt;}
.x24_c00195{left:476.928787pt;}
.x18_c00195{left:486.762787pt;}
.x50_c00195{left:495.509987pt;}
.xc_c00195{left:496.583587pt;}
.x32_c00195{left:506.391187pt;}
.x76_c00195{left:514.773187pt;}
.x25_c00195{left:516.211987pt;}
.x19_c00195{left:517.135987pt;}
.x7d_c00195{left:518.086387pt;}
.x51_c00195{left:525.645587pt;}
.x2d_c00195{left:526.657587pt;}
.x66_c00195{left:533.816387pt;}
.x3d_c00195{left:535.061587pt;}
.x1a_c00195{left:536.143987pt;}
.x3e_c00195{left:544.697587pt;}
.x33_c00195{left:546.263987pt;}
.x77_c00195{left:553.774787pt;}
.x52_c00195{left:555.143187pt;}
.x7e_c00195{left:556.577587pt;}
.xd_c00195{left:565.280787pt;}
.x4b_c00195{left:574.344787pt;}
.x2_c00195{left:575.699987pt;}
.x1b_c00195{left:584.460387pt;}
.x3f_c00195{left:586.831987pt;}
.x5f_c00195{left:593.383587pt;}
.x3_c00195{left:595.059987pt;}
.xe_c00195{left:596.903587pt;}
.x60_c00195{left:598.452387pt;}
.x7c_c00195{left:604.000787pt;}
.x40_c00195{left:604.999587pt;}
.x6e_c00195{left:612.030787pt;}
.x5a_c00195{left:613.267187pt;}
.x67_c00195{left:622.793187pt;}
.x61_c00195{left:623.796387pt;}
.x71_c00195{left:625.415587pt;}
.x62_c00195{left:632.666787pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c198adb1308a4b9000480f3d.woff2')format("woff");}.ff1_c00196{font-family:ff1_c00196;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00196;src:url('chunks/assets/font_7ed8e5466a929bdf22d30b51.woff2')format("woff");}.ff2_c00196{font-family:ff2_c00196;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00196;src:url('chunks/assets/font_ef0b3adef301bb94f76654dd.woff2')format("woff");}.ff3_c00196{font-family:ff3_c00196;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m9b_c00196{transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);}
.m57_c00196{transform:matrix(0.179878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179878,0.000000,0.000000,0.250000,0,0);}
.m9a_c00196{transform:matrix(0.183200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183200,0.000000,0.000000,0.250000,0,0);}
.m78_c00196{transform:matrix(0.220294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220294,0.000000,0.000000,0.250000,0,0);}
.m24_c00196{transform:matrix(0.221355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221355,0.000000,0.000000,0.250000,0,0);}
.m37_c00196{transform:matrix(0.223169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223169,0.000000,0.000000,0.250000,0,0);}
.m99_c00196{transform:matrix(0.224601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224601,0.000000,0.000000,0.250000,0,0);}
.m6a_c00196{transform:matrix(0.239167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239167,0.000000,0.000000,0.250000,0,0);}
.m22_c00196{transform:matrix(0.249650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249650,0.000000,0.000000,0.250000,0,0);}
.m0_c00196{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00196{transform:matrix(0.250442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250442,0.000000,0.000000,0.250000,0,0);}
.m16_c00196{transform:matrix(0.250777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250777,0.000000,0.000000,0.250000,0,0);}
.me_c00196{transform:matrix(0.251216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251216,0.000000,0.000000,0.250000,0,0);}
.m6_c00196{transform:matrix(0.252466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252466,0.000000,0.000000,0.250000,0,0);}
.mc_c00196{transform:matrix(0.253062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253062,0.000000,0.000000,0.250000,0,0);}
.m29_c00196{transform:matrix(0.253998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253998,0.000000,0.000000,0.250000,0,0);}
.m34_c00196{transform:matrix(0.255255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255255,0.000000,0.000000,0.250000,0,0);}
.m58_c00196{transform:matrix(0.255728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255728,0.000000,0.000000,0.250000,0,0);}
.m63_c00196{transform:matrix(0.255906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255906,0.000000,0.000000,0.250000,0,0);}
.m1_c00196{transform:matrix(0.256173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256173,0.000000,0.000000,0.250000,0,0);}
.m88_c00196{transform:matrix(0.256534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256534,0.000000,0.000000,0.250000,0,0);}
.m74_c00196{transform:matrix(0.256733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256733,0.000000,0.000000,0.250000,0,0);}
.m1b_c00196{transform:matrix(0.256895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256895,0.000000,0.000000,0.250000,0,0);}
.m68_c00196{transform:matrix(0.258604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258604,0.000000,0.000000,0.250000,0,0);}
.m2b_c00196{transform:matrix(0.258749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258749,0.000000,0.000000,0.250000,0,0);}
.m65_c00196{transform:matrix(0.258879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258879,0.000000,0.000000,0.250000,0,0);}
.m46_c00196{transform:matrix(0.259416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259416,0.000000,0.000000,0.250000,0,0);}
.m7b_c00196{transform:matrix(0.259723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259723,0.000000,0.000000,0.250000,0,0);}
.m33_c00196{transform:matrix(0.259878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259878,0.000000,0.000000,0.250000,0,0);}
.m75_c00196{transform:matrix(0.260323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260323,0.000000,0.000000,0.250000,0,0);}
.m82_c00196{transform:matrix(0.261119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261119,0.000000,0.000000,0.250000,0,0);}
.m12_c00196{transform:matrix(0.261324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261324,0.000000,0.000000,0.250000,0,0);}
.ma3_c00196{transform:matrix(0.261651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261651,0.000000,0.000000,0.250000,0,0);}
.m27_c00196{transform:matrix(0.262939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262939,0.000000,0.000000,0.250000,0,0);}
.m39_c00196{transform:matrix(0.263719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263719,0.000000,0.000000,0.250000,0,0);}
.m55_c00196{transform:matrix(0.264143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264143,0.000000,0.000000,0.250000,0,0);}
.m1a_c00196{transform:matrix(0.264274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264274,0.000000,0.000000,0.250000,0,0);}
.m91_c00196{transform:matrix(0.265418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265418,0.000000,0.000000,0.250000,0,0);}
.m96_c00196{transform:matrix(0.265935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265935,0.000000,0.000000,0.250000,0,0);}
.m92_c00196{transform:matrix(0.266260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266260,0.000000,0.000000,0.250000,0,0);}
.m6d_c00196{transform:matrix(0.266611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266611,0.000000,0.000000,0.250000,0,0);}
.m76_c00196{transform:matrix(0.267485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267485,0.000000,0.000000,0.250000,0,0);}
.m77_c00196{transform:matrix(0.268109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268109,0.000000,0.000000,0.250000,0,0);}
.m6c_c00196{transform:matrix(0.268277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268277,0.000000,0.000000,0.250000,0,0);}
.m7c_c00196{transform:matrix(0.268745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268745,0.000000,0.000000,0.250000,0,0);}
.m73_c00196{transform:matrix(0.268893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268893,0.000000,0.000000,0.250000,0,0);}
.m41_c00196{transform:matrix(0.269958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269958,0.000000,0.000000,0.250000,0,0);}
.m10_c00196{transform:matrix(0.270952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270952,0.000000,0.000000,0.250000,0,0);}
.m69_c00196{transform:matrix(0.271267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271267,0.000000,0.000000,0.250000,0,0);}
.m3e_c00196{transform:matrix(0.271876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271876,0.000000,0.000000,0.250000,0,0);}
.m72_c00196{transform:matrix(0.272005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272005,0.000000,0.000000,0.250000,0,0);}
.m47_c00196{transform:matrix(0.273176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273176,0.000000,0.000000,0.250000,0,0);}
.m9c_c00196{transform:matrix(0.273899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273899,0.000000,0.000000,0.250000,0,0);}
.m48_c00196{transform:matrix(0.274458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274458,0.000000,0.000000,0.250000,0,0);}
.m38_c00196{transform:matrix(0.274483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274483,0.000000,0.000000,0.250000,0,0);}
.m50_c00196{transform:matrix(0.276243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276243,0.000000,0.000000,0.250000,0,0);}
.m11_c00196{transform:matrix(0.276803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276803,0.000000,0.000000,0.250000,0,0);}
.m6e_c00196{transform:matrix(0.276918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276918,0.000000,0.000000,0.250000,0,0);}
.m94_c00196{transform:matrix(0.277079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277079,0.000000,0.000000,0.250000,0,0);}
.m7f_c00196{transform:matrix(0.277183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277183,0.000000,0.000000,0.250000,0,0);}
.m21_c00196{transform:matrix(0.277602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277602,0.000000,0.000000,0.250000,0,0);}
.m5a_c00196{transform:matrix(0.278030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278030,0.000000,0.000000,0.250000,0,0);}
.m9d_c00196{transform:matrix(0.278248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278248,0.000000,0.000000,0.250000,0,0);}
.m17_c00196{transform:matrix(0.278378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278378,0.000000,0.000000,0.250000,0,0);}
.m5e_c00196{transform:matrix(0.278508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278508,0.000000,0.000000,0.250000,0,0);}
.ma0_c00196{transform:matrix(0.278616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278616,0.000000,0.000000,0.250000,0,0);}
.m79_c00196{transform:matrix(0.279519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279519,0.000000,0.000000,0.250000,0,0);}
.m2_c00196{transform:matrix(0.279790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279790,0.000000,0.000000,0.250000,0,0);}
.m56_c00196{transform:matrix(0.280301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280301,0.000000,0.000000,0.250000,0,0);}
.ma5_c00196{transform:matrix(0.280691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280691,0.000000,0.000000,0.250000,0,0);}
.ma6_c00196{transform:matrix(0.280987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280987,0.000000,0.000000,0.250000,0,0);}
.m83_c00196{transform:matrix(0.281415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281415,0.000000,0.000000,0.250000,0,0);}
.ma2_c00196{transform:matrix(0.282342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282342,0.000000,0.000000,0.250000,0,0);}
.m1d_c00196{transform:matrix(0.283061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283061,0.000000,0.000000,0.250000,0,0);}
.m93_c00196{transform:matrix(0.283302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283302,0.000000,0.000000,0.250000,0,0);}
.m45_c00196{transform:matrix(0.283611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283611,0.000000,0.000000,0.250000,0,0);}
.m15_c00196{transform:matrix(0.284188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284188,0.000000,0.000000,0.250000,0,0);}
.m4d_c00196{transform:matrix(0.284313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284313,0.000000,0.000000,0.250000,0,0);}
.m59_c00196{transform:matrix(0.284596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284596,0.000000,0.000000,0.250000,0,0);}
.mb_c00196{transform:matrix(0.284611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284611,0.000000,0.000000,0.250000,0,0);}
.ma4_c00196{transform:matrix(0.284641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284641,0.000000,0.000000,0.250000,0,0);}
.m9_c00196{transform:matrix(0.284877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284877,0.000000,0.000000,0.250000,0,0);}
.m36_c00196{transform:matrix(0.285132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285132,0.000000,0.000000,0.250000,0,0);}
.m3d_c00196{transform:matrix(0.285564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285564,0.000000,0.000000,0.250000,0,0);}
.m4c_c00196{transform:matrix(0.285824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285824,0.000000,0.000000,0.250000,0,0);}
.m87_c00196{transform:matrix(0.286246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286246,0.000000,0.000000,0.250000,0,0);}
.m8b_c00196{transform:matrix(0.287191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287191,0.000000,0.000000,0.250000,0,0);}
.m67_c00196{transform:matrix(0.287339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287339,0.000000,0.000000,0.250000,0,0);}
.m3f_c00196{transform:matrix(0.287862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287862,0.000000,0.000000,0.250000,0,0);}
.ma_c00196{transform:matrix(0.288295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288295,0.000000,0.000000,0.250000,0,0);}
.m44_c00196{transform:matrix(0.289503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289503,0.000000,0.000000,0.250000,0,0);}
.m4f_c00196{transform:matrix(0.289608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289608,0.000000,0.000000,0.250000,0,0);}
.m18_c00196{transform:matrix(0.289672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289672,0.000000,0.000000,0.250000,0,0);}
.m85_c00196{transform:matrix(0.289734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289734,0.000000,0.000000,0.250000,0,0);}
.m86_c00196{transform:matrix(0.289889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289889,0.000000,0.000000,0.250000,0,0);}
.m1e_c00196{transform:matrix(0.289910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289910,0.000000,0.000000,0.250000,0,0);}
.m9f_c00196{transform:matrix(0.289964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289964,0.000000,0.000000,0.250000,0,0);}
.m32_c00196{transform:matrix(0.290381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290381,0.000000,0.000000,0.250000,0,0);}
.m95_c00196{transform:matrix(0.290659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290659,0.000000,0.000000,0.250000,0,0);}
.m60_c00196{transform:matrix(0.290785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290785,0.000000,0.000000,0.250000,0,0);}
.m42_c00196{transform:matrix(0.291396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291396,0.000000,0.000000,0.250000,0,0);}
.md_c00196{transform:matrix(0.291467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291467,0.000000,0.000000,0.250000,0,0);}
.m9e_c00196{transform:matrix(0.291601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291601,0.000000,0.000000,0.250000,0,0);}
.m3b_c00196{transform:matrix(0.291770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291770,0.000000,0.000000,0.250000,0,0);}
.m90_c00196{transform:matrix(0.291847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291847,0.000000,0.000000,0.250000,0,0);}
.ma1_c00196{transform:matrix(0.291894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291894,0.000000,0.000000,0.250000,0,0);}
.m20_c00196{transform:matrix(0.292454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292454,0.000000,0.000000,0.250000,0,0);}
.m5d_c00196{transform:matrix(0.292552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292552,0.000000,0.000000,0.250000,0,0);}
.m2e_c00196{transform:matrix(0.292588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292588,0.000000,0.000000,0.250000,0,0);}
.m31_c00196{transform:matrix(0.292901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292901,0.000000,0.000000,0.250000,0,0);}
.m49_c00196{transform:matrix(0.293682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293682,0.000000,0.000000,0.250000,0,0);}
.m81_c00196{transform:matrix(0.294720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294720,0.000000,0.000000,0.250000,0,0);}
.m7d_c00196{transform:matrix(0.295051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295051,0.000000,0.000000,0.250000,0,0);}
.m64_c00196{transform:matrix(0.295347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295347,0.000000,0.000000,0.250000,0,0);}
.m61_c00196{transform:matrix(0.295785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295785,0.000000,0.000000,0.250000,0,0);}
.ma8_c00196{transform:matrix(0.296122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296122,0.000000,0.000000,0.250000,0,0);}
.m98_c00196{transform:matrix(0.297205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297205,0.000000,0.000000,0.250000,0,0);}
.m7e_c00196{transform:matrix(0.298145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298145,0.000000,0.000000,0.250000,0,0);}
.m5b_c00196{transform:matrix(0.298303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298303,0.000000,0.000000,0.250000,0,0);}
.m84_c00196{transform:matrix(0.299019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299019,0.000000,0.000000,0.250000,0,0);}
.m6f_c00196{transform:matrix(0.299237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299237,0.000000,0.000000,0.250000,0,0);}
.m7a_c00196{transform:matrix(0.300078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300078,0.000000,0.000000,0.250000,0,0);}
.ma9_c00196{transform:matrix(0.300470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300470,0.000000,0.000000,0.250000,0,0);}
.m8d_c00196{transform:matrix(0.301909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301909,0.000000,0.000000,0.250000,0,0);}
.m51_c00196{transform:matrix(0.302221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302221,0.000000,0.000000,0.250000,0,0);}
.m8e_c00196{transform:matrix(0.302407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302407,0.000000,0.000000,0.250000,0,0);}
.m28_c00196{transform:matrix(0.302522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302522,0.000000,0.000000,0.250000,0,0);}
.m54_c00196{transform:matrix(0.302913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302913,0.000000,0.000000,0.250000,0,0);}
.m97_c00196{transform:matrix(0.303123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303123,0.000000,0.000000,0.250000,0,0);}
.m23_c00196{transform:matrix(0.303681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303681,0.000000,0.000000,0.250000,0,0);}
.m8c_c00196{transform:matrix(0.304989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304989,0.000000,0.000000,0.250000,0,0);}
.m40_c00196{transform:matrix(0.305850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305850,0.000000,0.000000,0.250000,0,0);}
.m2a_c00196{transform:matrix(0.306038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306038,0.000000,0.000000,0.250000,0,0);}
.m19_c00196{transform:matrix(0.306274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306274,0.000000,0.000000,0.250000,0,0);}
.m5_c00196{transform:matrix(0.306909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306909,0.000000,0.000000,0.250000,0,0);}
.m5f_c00196{transform:matrix(0.307186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307186,0.000000,0.000000,0.250000,0,0);}
.maa_c00196{transform:matrix(0.307889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307889,0.000000,0.000000,0.250000,0,0);}
.ma7_c00196{transform:matrix(0.307917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307917,0.000000,0.000000,0.250000,0,0);}
.m71_c00196{transform:matrix(0.310610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310610,0.000000,0.000000,0.250000,0,0);}
.m26_c00196{transform:matrix(0.310895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310895,0.000000,0.000000,0.250000,0,0);}
.m8a_c00196{transform:matrix(0.311974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311974,0.000000,0.000000,0.250000,0,0);}
.m4a_c00196{transform:matrix(0.312473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312473,0.000000,0.000000,0.250000,0,0);}
.m2f_c00196{transform:matrix(0.313486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313486,0.000000,0.000000,0.250000,0,0);}
.m8f_c00196{transform:matrix(0.313613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313613,0.000000,0.000000,0.250000,0,0);}
.m35_c00196{transform:matrix(0.313698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313698,0.000000,0.000000,0.250000,0,0);}
.m53_c00196{transform:matrix(0.313783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313783,0.000000,0.000000,0.250000,0,0);}
.m5c_c00196{transform:matrix(0.313818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313818,0.000000,0.000000,0.250000,0,0);}
.m66_c00196{transform:matrix(0.313837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313837,0.000000,0.000000,0.250000,0,0);}
.m30_c00196{transform:matrix(0.315308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315308,0.000000,0.000000,0.250000,0,0);}
.m43_c00196{transform:matrix(0.316775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316775,0.000000,0.000000,0.250000,0,0);}
.m3a_c00196{transform:matrix(0.316778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316778,0.000000,0.000000,0.250000,0,0);}
.m4e_c00196{transform:matrix(0.317097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317097,0.000000,0.000000,0.250000,0,0);}
.m89_c00196{transform:matrix(0.317395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317395,0.000000,0.000000,0.250000,0,0);}
.m13_c00196{transform:matrix(0.317587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317587,0.000000,0.000000,0.250000,0,0);}
.mab_c00196{transform:matrix(0.318090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318090,0.000000,0.000000,0.250000,0,0);}
.m25_c00196{transform:matrix(0.318755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318755,0.000000,0.000000,0.250000,0,0);}
.m8_c00196{transform:matrix(0.318812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318812,0.000000,0.000000,0.250000,0,0);}
.m4_c00196{transform:matrix(0.319507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319507,0.000000,0.000000,0.250000,0,0);}
.m80_c00196{transform:matrix(0.320869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320869,0.000000,0.000000,0.250000,0,0);}
.m4b_c00196{transform:matrix(0.321160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321160,0.000000,0.000000,0.250000,0,0);}
.m1f_c00196{transform:matrix(0.326058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326058,0.000000,0.000000,0.250000,0,0);}
.m1c_c00196{transform:matrix(0.327553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327553,0.000000,0.000000,0.250000,0,0);}
.m52_c00196{transform:matrix(0.330051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330051,0.000000,0.000000,0.250000,0,0);}
.m2d_c00196{transform:matrix(0.336908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336908,0.000000,0.000000,0.250000,0,0);}
.m14_c00196{transform:matrix(0.338383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338383,0.000000,0.000000,0.250000,0,0);}
.m70_c00196{transform:matrix(0.340400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340400,0.000000,0.000000,0.250000,0,0);}
.m6b_c00196{transform:matrix(0.346344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346344,0.000000,0.000000,0.250000,0,0);}
.m2c_c00196{transform:matrix(0.346473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346473,0.000000,0.000000,0.250000,0,0);}
.m7_c00196{transform:matrix(0.363797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363797,0.000000,0.000000,0.250000,0,0);}
.m3c_c00196{transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);}
.mf_c00196{transform:matrix(0.373079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373079,0.000000,0.000000,0.250000,0,0);}
.m62_c00196{transform:matrix(0.702515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702515,0.000000,0.000000,0.250000,0,0);}
.v1_c00196{vertical-align:-44.193600px;}
.v0_c00196{vertical-align:0.000000px;}
.v2_c00196{vertical-align:57.043800px;}
.lsb_c00196{letter-spacing:-2.862090px;}
.ls10_c00196{letter-spacing:-1.815667px;}
.lsc_c00196{letter-spacing:-1.261267px;}
.ls11_c00196{letter-spacing:-0.834095px;}
.ls1a_c00196{letter-spacing:-0.057242px;}
.ls4_c00196{letter-spacing:0.000000px;}
.ls0_c00196{letter-spacing:0.274428px;}
.ls12_c00196{letter-spacing:0.686902px;}
.ls1_c00196{letter-spacing:0.964933px;}
.lsd_c00196{letter-spacing:1.030352px;}
.ls13_c00196{letter-spacing:1.038530px;}
.ls6_c00196{letter-spacing:1.234787px;}
.ls16_c00196{letter-spacing:1.970100px;}
.lsa_c00196{letter-spacing:2.183366px;}
.ls9_c00196{letter-spacing:2.395978px;}
.lse_c00196{letter-spacing:2.559526px;}
.ls15_c00196{letter-spacing:2.911154px;}
.lsf_c00196{letter-spacing:3.352734px;}
.ls17_c00196{letter-spacing:3.459040px;}
.ls8_c00196{letter-spacing:3.524400px;}
.ls19_c00196{letter-spacing:3.722400px;}
.ls2_c00196{letter-spacing:3.835201px;}
.ls18_c00196{letter-spacing:3.920400px;}
.ls3_c00196{letter-spacing:3.957862px;}
.ls7_c00196{letter-spacing:4.088700px;}
.ls5_c00196{letter-spacing:4.296610px;}
.ls1c_c00196{letter-spacing:31.363200px;}
.ls14_c00196{letter-spacing:58.449798px;}
.ls1b_c00196{letter-spacing:59.875398px;}
.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:-24.401362px;}
.ws0_c00196{word-spacing:-20.443500px;}
.ws2_c00196{word-spacing:0.000000px;}
._4_c00196{margin-left:-19.381032px;}
._7_c00196{margin-left:-3.091057px;}
._3_c00196{width:6.078501px;}
._6_c00196{width:17.806041px;}
._5_c00196{width:24.815300px;}
._1_c00196{width:337.651776px;}
._0_c00196{width:808.545672px;}
._2_c00196{width:970.601940px;}
.fc0_c00196{color:transparent;}
.fs0_c00196{font-size:22.176000px;}
.fs1_c00196{font-size:27.720000px;}
.fs13_c00196{font-size:31.363200px;}
.fs4_c00196{font-size:33.264000px;}
.fs14_c00196{font-size:34.056198px;}
.fsb_c00196{font-size:34.650000px;}
.fs7_c00196{font-size:36.036198px;}
.fsf_c00196{font-size:37.818000px;}
.fse_c00196{font-size:39.402000px;}
.fs3_c00196{font-size:43.758000px;}
.fs9_c00196{font-size:51.876198px;}
.fsd_c00196{font-size:58.449798px;}
.fs12_c00196{font-size:59.875398px;}
.fsc_c00196{font-size:64.152198px;}
.fs11_c00196{font-size:66.528000px;}
.fs6_c00196{font-size:70.488000px;}
.fs8_c00196{font-size:70.884000px;}
.fs10_c00196{font-size:74.448000px;}
.fsa_c00196{font-size:78.408000px;}
.fs5_c00196{font-size:81.774000px;}
.fs2_c00196{font-size:85.932198px;}
.y0_c00196{bottom:0.000000px;}
.y21_c00196{bottom:68.697135px;}
.y1_c00196{bottom:76.500000px;}
.y20_c00196{bottom:97.916985px;}
.y1f_c00196{bottom:170.978985px;}
.y1e_c00196{bottom:201.634335px;}
.y1d_c00196{bottom:219.805785px;}
.y1c_c00196{bottom:233.705385px;}
.y1b_c00196{bottom:243.328185px;}
.y1a_c00196{bottom:264.712185px;}
.y19_c00196{bottom:297.144585px;}
.y18_c00196{bottom:328.869135px;}
.y17_c00196{bottom:360.588735px;}
.y16_c00196{bottom:423.315135px;}
.y15_c00196{bottom:455.386185px;}
.y13_c00196{bottom:486.041535px;}
.y14_c00196{bottom:491.026185px;}
.y12_c00196{bottom:518.117535px;}
.y11_c00196{bottom:549.475785px;}
.y10_c00196{bottom:581.913135px;}
.yf_c00196{bottom:612.919935px;}
.ye_c00196{bottom:644.634585px;}
.yd_c00196{bottom:675.997785px;}
.yc_c00196{bottom:738.367785px;}
.yb_c00196{bottom:770.092335px;}
.ya_c00196{bottom:802.163385px;}
.y9_c00196{bottom:833.526585px;}
.y8_c00196{bottom:865.251135px;}
.y7_c00196{bottom:897.322185px;}
.y6_c00196{bottom:929.403135px;}
.y5_c00196{bottom:1033.110585px;}
.y4_c00196{bottom:1060.909785px;}
.y2_c00196{bottom:1063.404585px;}
.y3_c00196{bottom:1064.835135px;}
.h12_c00196{height:20.887891px;}
.h2_c00196{height:28.911094px;}
.h7_c00196{height:35.367558px;}
.h13_c00196{height:35.519550px;}
.he_c00196{height:37.116299px;}
.hb_c00196{height:38.927565px;}
.h11_c00196{height:39.877015px;}
.hc_c00196{height:41.095055px;}
.h4_c00196{height:45.638227px;}
.h9_c00196{height:54.105253px;}
.h6_c00196{height:69.180117px;}
.h10_c00196{height:69.386625px;}
.hf_c00196{height:73.066641px;}
.h8_c00196{height:73.929797px;}
.hd_c00196{height:76.953164px;}
.h5_c00196{height:80.256709px;}
.h3_c00196{height:84.337753px;}
.ha_c00196{height:93.182667px;}
.h1_c00196{height:1110.000000px;}
.h0_c00196{height:1263.000000px;}
.w1_c00196{width:775.500000px;}
.w0_c00196{width:892.500000px;}
.x0_c00196{left:0.000000px;}
.x1_c00196{left:58.500000px;}
.x1e_c00196{left:87.968085px;}
.x11_c00196{left:89.180835px;}
.x42_c00196{left:121.672635px;}
.x12_c00196{left:122.707185px;}
.x24_c00196{left:132.716085px;}
.x32_c00196{left:143.224935px;}
.x6_c00196{left:144.284235px;}
.x5d_c00196{left:153.916935px;}
.x29_c00196{left:155.758335px;}
.x19_c00196{left:156.877035px;}
.x66_c00196{left:164.960385px;}
.x1f_c00196{left:167.267085px;}
.x5e_c00196{left:176.008785px;}
.x39_c00196{left:177.266085px;}
.x4d_c00196{left:178.320435px;}
.x13_c00196{left:188.319435px;}
.x20_c00196{left:200.352885px;}
.x2a_c00196{left:210.054885px;}
.x33_c00196{left:211.104285px;}
.x53_c00196{left:221.454735px;}
.x3a_c00196{left:222.484335px;}
.x46_c00196{left:232.285335px;}
.x7_c00196{left:233.809935px;}
.x58_c00196{left:243.205035px;}
.x34_c00196{left:244.907835px;}
.x2b_c00196{left:254.203935px;}
.x3b_c00196{left:255.253335px;}
.x67_c00196{left:264.752385px;}
.x8_c00196{left:266.039385px;}
.x1a_c00196{left:267.059085px;}
.x25_c00196{left:268.078785px;}
.x35_c00196{left:277.384785px;}
.x26_c00196{left:279.795435px;}
.x59_c00196{left:287.695635px;}
.x2c_c00196{left:288.710385px;}
.x2_c00196{left:296.783835px;}
.x54_c00196{left:298.249035px;}
.x1b_c00196{left:300.144885px;}
.x5f_c00196{left:309.307335px;}
.x43_c00196{left:310.792335px;}
.x47_c00196{left:321.053685px;}
.x5_c00196{left:323.068335px;}
.x14_c00196{left:333.245535px;}
.x4_c00196{left:335.250285px;}
.x9_c00196{left:344.338485px;}
.x36_c00196{left:346.546185px;}
.x2d_c00196{left:354.748335px;}
.x37_c00196{left:356.876835px;}
.x3c_c00196{left:366.400635px;}
.xa_c00196{left:377.161935px;}
.x38_c00196{left:378.211335px;}
.x57_c00196{left:386.631285px;}
.x1c_c00196{left:387.898485px;}
.x50_c00196{left:390.215085px;}
.x60_c00196{left:397.367835px;}
.x3d_c00196{left:399.308235px;}
.x48_c00196{left:410.713035px;}
.x15_c00196{left:422.043585px;}
.x68_c00196{left:429.696285px;}
.x51_c00196{left:432.092085px;}
.x21_c00196{left:444.160185px;}
.x44_c00196{left:454.188885px;}
.x16_c00196{left:455.223435px;}
.x5a_c00196{left:464.692785px;}
.x2e_c00196{left:466.232235px;}
.x69_c00196{left:474.147285px;}
.xb_c00196{left:476.647035px;}
.x4e_c00196{left:487.339035px;}
.x27_c00196{left:498.372585px;}
.xc_c00196{left:509.020035px;}
.x1d_c00196{left:519.226935px;}
.x2f_c00196{left:520.424835px;}
.x4f_c00196{left:531.859335px;}
.xd_c00196{left:542.521635px;}
.x63_c00196{left:543.595785px;}
.x3e_c00196{left:544.788735px;}
.x52_c00196{left:554.357085px;}
.x49_c00196{left:564.999585px;}
.x17_c00196{left:576.394485px;}
.x22_c00196{left:586.027185px;}
.x65_c00196{left:596.239035px;}
.x30_c00196{left:597.694335px;}
.xe_c00196{left:608.326935px;}
.x3f_c00196{left:609.420885px;}
.x4b_c00196{left:619.009035px;}
.x28_c00196{left:629.339685px;}
.xf_c00196{left:631.547385px;}
.x4a_c00196{left:641.635485px;}
.x23_c00196{left:642.670035px;}
.x40_c00196{left:651.124635px;}
.x31_c00196{left:652.936335px;}
.x3_c00196{left:664.049085px;}
.x41_c00196{left:685.289535px;}
.x61_c00196{left:686.838885px;}
.x18_c00196{left:696.704235px;}
.x45_c00196{left:698.649585px;}
.x5b_c00196{left:699.788085px;}
.x62_c00196{left:703.970835px;}
.x64_c00196{left:705.302385px;}
.x5c_c00196{left:708.594135px;}
.x55_c00196{left:709.678185px;}
.x4c_c00196{left:719.518785px;}
.x10_c00196{left:738.016935px;}
.x56_c00196{left:754.391535px;}
@media print{
.v1_c00196{vertical-align:-39.283200pt;}
.v0_c00196{vertical-align:0.000000pt;}
.v2_c00196{vertical-align:50.705600pt;}
.lsb_c00196{letter-spacing:-2.544080pt;}
.ls10_c00196{letter-spacing:-1.613926pt;}
.lsc_c00196{letter-spacing:-1.121126pt;}
.ls11_c00196{letter-spacing:-0.741418pt;}
.ls1a_c00196{letter-spacing:-0.050882pt;}
.ls4_c00196{letter-spacing:0.000000pt;}
.ls0_c00196{letter-spacing:0.243936pt;}
.ls12_c00196{letter-spacing:0.610579pt;}
.ls1_c00196{letter-spacing:0.857718pt;}
.lsd_c00196{letter-spacing:0.915869pt;}
.ls13_c00196{letter-spacing:0.923138pt;}
.ls6_c00196{letter-spacing:1.097589pt;}
.ls16_c00196{letter-spacing:1.751200pt;}
.lsa_c00196{letter-spacing:1.940770pt;}
.ls9_c00196{letter-spacing:2.129758pt;}
.lse_c00196{letter-spacing:2.275134pt;}
.ls15_c00196{letter-spacing:2.587693pt;}
.lsf_c00196{letter-spacing:2.980208pt;}
.ls17_c00196{letter-spacing:3.074702pt;}
.ls8_c00196{letter-spacing:3.132800pt;}
.ls19_c00196{letter-spacing:3.308800pt;}
.ls2_c00196{letter-spacing:3.409067pt;}
.ls18_c00196{letter-spacing:3.484800pt;}
.ls3_c00196{letter-spacing:3.518099pt;}
.ls7_c00196{letter-spacing:3.634400pt;}
.ls5_c00196{letter-spacing:3.819209pt;}
.ls1c_c00196{letter-spacing:27.878400pt;}
.ls14_c00196{letter-spacing:51.955376pt;}
.ls1b_c00196{letter-spacing:53.222576pt;}
.ws1_c00196{word-spacing:-21.690099pt;}
.ws0_c00196{word-spacing:-18.172000pt;}
.ws2_c00196{word-spacing:0.000000pt;}
._4_c00196{margin-left:-17.227584pt;}
._7_c00196{margin-left:-2.747606pt;}
._3_c00196{width:5.403112pt;}
._6_c00196{width:15.827592pt;}
._5_c00196{width:22.058045pt;}
._1_c00196{width:300.134912pt;}
._0_c00196{width:718.707264pt;}
._2_c00196{width:862.757280pt;}
.fs0_c00196{font-size:19.712000pt;}
.fs1_c00196{font-size:24.640000pt;}
.fs13_c00196{font-size:27.878400pt;}
.fs4_c00196{font-size:29.568000pt;}
.fs14_c00196{font-size:30.272176pt;}
.fsb_c00196{font-size:30.800000pt;}
.fs7_c00196{font-size:32.032176pt;}
.fsf_c00196{font-size:33.616000pt;}
.fse_c00196{font-size:35.024000pt;}
.fs3_c00196{font-size:38.896000pt;}
.fs9_c00196{font-size:46.112176pt;}
.fsd_c00196{font-size:51.955376pt;}
.fs12_c00196{font-size:53.222576pt;}
.fsc_c00196{font-size:57.024176pt;}
.fs11_c00196{font-size:59.136000pt;}
.fs6_c00196{font-size:62.656000pt;}
.fs8_c00196{font-size:63.008000pt;}
.fs10_c00196{font-size:66.176000pt;}
.fsa_c00196{font-size:69.696000pt;}
.fs5_c00196{font-size:72.688000pt;}
.fs2_c00196{font-size:76.384176pt;}
.y0_c00196{bottom:0.000000pt;}
.y21_c00196{bottom:61.064120pt;}
.y1_c00196{bottom:68.000000pt;}
.y20_c00196{bottom:87.037320pt;}
.y1f_c00196{bottom:151.981320pt;}
.y1e_c00196{bottom:179.230520pt;}
.y1d_c00196{bottom:195.382920pt;}
.y1c_c00196{bottom:207.738120pt;}
.y1b_c00196{bottom:216.291720pt;}
.y1a_c00196{bottom:235.299720pt;}
.y19_c00196{bottom:264.128520pt;}
.y18_c00196{bottom:292.328120pt;}
.y17_c00196{bottom:320.523320pt;}
.y16_c00196{bottom:376.280120pt;}
.y15_c00196{bottom:404.787720pt;}
.y13_c00196{bottom:432.036920pt;}
.y14_c00196{bottom:436.467720pt;}
.y12_c00196{bottom:460.548920pt;}
.y11_c00196{bottom:488.422920pt;}
.y10_c00196{bottom:517.256120pt;}
.yf_c00196{bottom:544.817720pt;}
.ye_c00196{bottom:573.008520pt;}
.yd_c00196{bottom:600.886920pt;}
.yc_c00196{bottom:656.326920pt;}
.yb_c00196{bottom:684.526520pt;}
.ya_c00196{bottom:713.034120pt;}
.y9_c00196{bottom:740.912520pt;}
.y8_c00196{bottom:769.112120pt;}
.y7_c00196{bottom:797.619720pt;}
.y6_c00196{bottom:826.136120pt;}
.y5_c00196{bottom:918.320520pt;}
.y4_c00196{bottom:943.030920pt;}
.y2_c00196{bottom:945.248520pt;}
.y3_c00196{bottom:946.520120pt;}
.h12_c00196{height:18.567014pt;}
.h2_c00196{height:25.698750pt;}
.h7_c00196{height:31.437829pt;}
.h13_c00196{height:31.572934pt;}
.he_c00196{height:32.992266pt;}
.hb_c00196{height:34.602280pt;}
.h11_c00196{height:35.446236pt;}
.hc_c00196{height:36.528938pt;}
.h4_c00196{height:40.567313pt;}
.h9_c00196{height:48.093559pt;}
.h6_c00196{height:61.493438pt;}
.h10_c00196{height:61.677000pt;}
.hf_c00196{height:64.948125pt;}
.h8_c00196{height:65.715375pt;}
.hd_c00196{height:68.402813pt;}
.h5_c00196{height:71.339297pt;}
.h3_c00196{height:74.966891pt;}
.ha_c00196{height:82.829038pt;}
.h1_c00196{height:986.666667pt;}
.h0_c00196{height:1122.666667pt;}
.w1_c00196{width:689.333333pt;}
.w0_c00196{width:793.333333pt;}
.x0_c00196{left:0.000000pt;}
.x1_c00196{left:52.000000pt;}
.x1e_c00196{left:78.193853pt;}
.x11_c00196{left:79.271853pt;}
.x42_c00196{left:108.153453pt;}
.x12_c00196{left:109.073053pt;}
.x24_c00196{left:117.969853pt;}
.x32_c00196{left:127.311053pt;}
.x6_c00196{left:128.252653pt;}
.x5d_c00196{left:136.815053pt;}
.x29_c00196{left:138.451853pt;}
.x19_c00196{left:139.446253pt;}
.x66_c00196{left:146.631453pt;}
.x1f_c00196{left:148.681853pt;}
.x5e_c00196{left:156.452253pt;}
.x39_c00196{left:157.569853pt;}
.x4d_c00196{left:158.507053pt;}
.x13_c00196{left:167.395053pt;}
.x20_c00196{left:178.091453pt;}
.x2a_c00196{left:186.715453pt;}
.x33_c00196{left:187.648253pt;}
.x53_c00196{left:196.848653pt;}
.x3a_c00196{left:197.763853pt;}
.x46_c00196{left:206.475853pt;}
.x7_c00196{left:207.831053pt;}
.x58_c00196{left:216.182253pt;}
.x34_c00196{left:217.695853pt;}
.x2b_c00196{left:225.959053pt;}
.x3b_c00196{left:226.891853pt;}
.x67_c00196{left:235.335453pt;}
.x8_c00196{left:236.479453pt;}
.x1a_c00196{left:237.385853pt;}
.x25_c00196{left:238.292253pt;}
.x35_c00196{left:246.564253pt;}
.x26_c00196{left:248.707053pt;}
.x59_c00196{left:255.729453pt;}
.x2c_c00196{left:256.631453pt;}
.x2_c00196{left:263.807853pt;}
.x54_c00196{left:265.110253pt;}
.x1b_c00196{left:266.795453pt;}
.x5f_c00196{left:274.939853pt;}
.x43_c00196{left:276.259853pt;}
.x47_c00196{left:285.381053pt;}
.x5_c00196{left:287.171853pt;}
.x14_c00196{left:296.218253pt;}
.x4_c00196{left:298.000253pt;}
.x9_c00196{left:306.078653pt;}
.x36_c00196{left:308.041053pt;}
.x2d_c00196{left:315.331853pt;}
.x37_c00196{left:317.223853pt;}
.x3c_c00196{left:325.689453pt;}
.xa_c00196{left:335.255053pt;}
.x38_c00196{left:336.187853pt;}
.x57_c00196{left:343.672253pt;}
.x1c_c00196{left:344.798653pt;}
.x50_c00196{left:346.857853pt;}
.x60_c00196{left:353.215853pt;}
.x3d_c00196{left:354.940653pt;}
.x48_c00196{left:365.078253pt;}
.x15_c00196{left:375.149853pt;}
.x68_c00196{left:381.952253pt;}
.x51_c00196{left:384.081853pt;}
.x21_c00196{left:394.809053pt;}
.x44_c00196{left:403.723453pt;}
.x16_c00196{left:404.643053pt;}
.x5a_c00196{left:413.060253pt;}
.x2e_c00196{left:414.428653pt;}
.x69_c00196{left:421.464253pt;}
.xb_c00196{left:423.686253pt;}
.x4e_c00196{left:433.190253pt;}
.x27_c00196{left:442.997853pt;}
.xc_c00196{left:452.462253pt;}
.x1d_c00196{left:461.535053pt;}
.x2f_c00196{left:462.599853pt;}
.x4f_c00196{left:472.763853pt;}
.xd_c00196{left:482.241453pt;}
.x63_c00196{left:483.196253pt;}
.x3e_c00196{left:484.256653pt;}
.x52_c00196{left:492.761853pt;}
.x49_c00196{left:502.221853pt;}
.x17_c00196{left:512.350653pt;}
.x22_c00196{left:520.913053pt;}
.x65_c00196{left:529.990253pt;}
.x30_c00196{left:531.283853pt;}
.xe_c00196{left:540.735053pt;}
.x3f_c00196{left:541.707453pt;}
.x4b_c00196{left:550.230253pt;}
.x28_c00196{left:559.413053pt;}
.xf_c00196{left:561.375453pt;}
.x4a_c00196{left:570.342653pt;}
.x23_c00196{left:571.262253pt;}
.x40_c00196{left:578.777453pt;}
.x31_c00196{left:580.387853pt;}
.x3_c00196{left:590.265853pt;}
.x41_c00196{left:609.146253pt;}
.x61_c00196{left:610.523453pt;}
.x18_c00196{left:619.292653pt;}
.x45_c00196{left:621.021853pt;}
.x5b_c00196{left:622.033853pt;}
.x62_c00196{left:625.751853pt;}
.x64_c00196{left:626.935453pt;}
.x5c_c00196{left:629.861453pt;}
.x55_c00196{left:630.825053pt;}
.x4c_c00196{left:639.572253pt;}
.x10_c00196{left:656.015053pt;}
.x56_c00196{left:670.570253pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2b1f0b1b115fc2053e35c0e1.woff2')format("woff");}.ff1_c00197{font-family:ff1_c00197;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00197;src:url('chunks/assets/font_23b7f09382b40a515ac5210c.woff2')format("woff");}.ff2_c00197{font-family:ff2_c00197;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00197;src:url('chunks/assets/font_0fcba918c1e4050a131f71f7.woff2')format("woff");}.ff3_c00197{font-family:ff3_c00197;line-height:0.666000;font-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_c00197{transform:matrix(0.146342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146342,0.000000,0.000000,0.250000,0,0);}
.ma7_c00197{transform:matrix(0.152439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152439,0.000000,0.000000,0.250000,0,0);}
.m62_c00197{transform:matrix(0.161291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161291,0.000000,0.000000,0.250000,0,0);}
.ma8_c00197{transform:matrix(0.176830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176830,0.000000,0.000000,0.250000,0,0);}
.ma1_c00197{transform:matrix(0.179540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179540,0.000000,0.000000,0.250000,0,0);}
.m35_c00197{transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);}
.m2c_c00197{transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);}
.m60_c00197{transform:matrix(0.233826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233826,0.000000,0.000000,0.250000,0,0);}
.m9f_c00197{transform:matrix(0.245208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245208,0.000000,0.000000,0.250000,0,0);}
.m90_c00197{transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);}
.m3_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);}
.m0_c00197{transform:matrix(0.250393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250393,0.000000,0.000000,0.250000,0,0);}
.m2e_c00197{transform:matrix(0.250517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250517,0.000000,0.000000,0.250000,0,0);}
.m85_c00197{transform:matrix(0.250919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250919,0.000000,0.000000,0.250000,0,0);}
.m6e_c00197{transform:matrix(0.252497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252497,0.000000,0.000000,0.250000,0,0);}
.ma3_c00197{transform:matrix(0.253364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253364,0.000000,0.000000,0.250000,0,0);}
.me_c00197{transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);}
.m30_c00197{transform:matrix(0.254360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254360,0.000000,0.000000,0.250000,0,0);}
.m7d_c00197{transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);}
.m67_c00197{transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);}
.m4b_c00197{transform:matrix(0.258620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258620,0.000000,0.000000,0.250000,0,0);}
.m54_c00197{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m6a_c00197{transform:matrix(0.260756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260756,0.000000,0.000000,0.250000,0,0);}
.m19_c00197{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m75_c00197{transform:matrix(0.262023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262023,0.000000,0.000000,0.250000,0,0);}
.m4d_c00197{transform:matrix(0.262979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262979,0.000000,0.000000,0.250000,0,0);}
.m4_c00197{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m91_c00197{transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);}
.m93_c00197{transform:matrix(0.264128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264128,0.000000,0.000000,0.250000,0,0);}
.mc_c00197{transform:matrix(0.264758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264758,0.000000,0.000000,0.250000,0,0);}
.m58_c00197{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m94_c00197{transform:matrix(0.266688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266688,0.000000,0.000000,0.250000,0,0);}
.m57_c00197{transform:matrix(0.267150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267150,0.000000,0.000000,0.250000,0,0);}
.m53_c00197{transform:matrix(0.267205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267205,0.000000,0.000000,0.250000,0,0);}
.m47_c00197{transform:matrix(0.267210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267210,0.000000,0.000000,0.250000,0,0);}
.m95_c00197{transform:matrix(0.267593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267593,0.000000,0.000000,0.250000,0,0);}
.md_c00197{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m77_c00197{transform:matrix(0.267925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267925,0.000000,0.000000,0.250000,0,0);}
.m81_c00197{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.m45_c00197{transform:matrix(0.269316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269316,0.000000,0.000000,0.250000,0,0);}
.ma_c00197{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m82_c00197{transform:matrix(0.272278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272278,0.000000,0.000000,0.250000,0,0);}
.m15_c00197{transform:matrix(0.272536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272536,0.000000,0.000000,0.250000,0,0);}
.m16_c00197{transform:matrix(0.273330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273330,0.000000,0.000000,0.250000,0,0);}
.m7a_c00197{transform:matrix(0.274295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274295,0.000000,0.000000,0.250000,0,0);}
.m39_c00197{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m6d_c00197{transform:matrix(0.276833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276833,0.000000,0.000000,0.250000,0,0);}
.m34_c00197{transform:matrix(0.276889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276889,0.000000,0.000000,0.250000,0,0);}
.m12_c00197{transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);}
.m96_c00197{transform:matrix(0.277164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277164,0.000000,0.000000,0.250000,0,0);}
.m1a_c00197{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m74_c00197{transform:matrix(0.277360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277360,0.000000,0.000000,0.250000,0,0);}
.m1d_c00197{transform:matrix(0.277421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277421,0.000000,0.000000,0.250000,0,0);}
.m99_c00197{transform:matrix(0.277504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277504,0.000000,0.000000,0.250000,0,0);}
.ma2_c00197{transform:matrix(0.277650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277650,0.000000,0.000000,0.250000,0,0);}
.m50_c00197{transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);}
.mf_c00197{transform:matrix(0.277927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277927,0.000000,0.000000,0.250000,0,0);}
.m3b_c00197{transform:matrix(0.278037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278037,0.000000,0.000000,0.250000,0,0);}
.m79_c00197{transform:matrix(0.278756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278756,0.000000,0.000000,0.250000,0,0);}
.m48_c00197{transform:matrix(0.278962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278962,0.000000,0.000000,0.250000,0,0);}
.m70_c00197{transform:matrix(0.280385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280385,0.000000,0.000000,0.250000,0,0);}
.m6c_c00197{transform:matrix(0.280783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280783,0.000000,0.000000,0.250000,0,0);}
.ma6_c00197{transform:matrix(0.281559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281559,0.000000,0.000000,0.250000,0,0);}
.m9d_c00197{transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);}
.m7_c00197{transform:matrix(0.282254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282254,0.000000,0.000000,0.250000,0,0);}
.m1e_c00197{transform:matrix(0.282287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282287,0.000000,0.000000,0.250000,0,0);}
.m73_c00197{transform:matrix(0.282564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282564,0.000000,0.000000,0.250000,0,0);}
.m3a_c00197{transform:matrix(0.283449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283449,0.000000,0.000000,0.250000,0,0);}
.m5a_c00197{transform:matrix(0.283506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283506,0.000000,0.000000,0.250000,0,0);}
.m32_c00197{transform:matrix(0.283593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283593,0.000000,0.000000,0.250000,0,0);}
.m41_c00197{transform:matrix(0.284239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284239,0.000000,0.000000,0.250000,0,0);}
.m8f_c00197{transform:matrix(0.284698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284698,0.000000,0.000000,0.250000,0,0);}
.m3f_c00197{transform:matrix(0.285479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285479,0.000000,0.000000,0.250000,0,0);}
.m43_c00197{transform:matrix(0.285770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285770,0.000000,0.000000,0.250000,0,0);}
.m21_c00197{transform:matrix(0.285876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285876,0.000000,0.000000,0.250000,0,0);}
.m20_c00197{transform:matrix(0.286257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286257,0.000000,0.000000,0.250000,0,0);}
.maf_c00197{transform:matrix(0.286639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286639,0.000000,0.000000,0.250000,0,0);}
.m3d_c00197{transform:matrix(0.287284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287284,0.000000,0.000000,0.250000,0,0);}
.m71_c00197{transform:matrix(0.287330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287330,0.000000,0.000000,0.250000,0,0);}
.m37_c00197{transform:matrix(0.287521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287521,0.000000,0.000000,0.250000,0,0);}
.m9_c00197{transform:matrix(0.288205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288205,0.000000,0.000000,0.250000,0,0);}
.m44_c00197{transform:matrix(0.288372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288372,0.000000,0.000000,0.250000,0,0);}
.m59_c00197{transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);}
.ma4_c00197{transform:matrix(0.288974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288974,0.000000,0.000000,0.250000,0,0);}
.m5c_c00197{transform:matrix(0.289012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289012,0.000000,0.000000,0.250000,0,0);}
.ma5_c00197{transform:matrix(0.289161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289161,0.000000,0.000000,0.250000,0,0);}
.m68_c00197{transform:matrix(0.290364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290364,0.000000,0.000000,0.250000,0,0);}
.m11_c00197{transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);}
.m2b_c00197{transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);}
.ma9_c00197{transform:matrix(0.291977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291977,0.000000,0.000000,0.250000,0,0);}
.m89_c00197{transform:matrix(0.292392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292392,0.000000,0.000000,0.250000,0,0);}
.m52_c00197{transform:matrix(0.292396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292396,0.000000,0.000000,0.250000,0,0);}
.m86_c00197{transform:matrix(0.293273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293273,0.000000,0.000000,0.250000,0,0);}
.m22_c00197{transform:matrix(0.293758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293758,0.000000,0.000000,0.250000,0,0);}
.m23_c00197{transform:matrix(0.293770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293770,0.000000,0.000000,0.250000,0,0);}
.m40_c00197{transform:matrix(0.294307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294307,0.000000,0.000000,0.250000,0,0);}
.m80_c00197{transform:matrix(0.294390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294390,0.000000,0.000000,0.250000,0,0);}
.m9a_c00197{transform:matrix(0.294496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294496,0.000000,0.000000,0.250000,0,0);}
.m8d_c00197{transform:matrix(0.295569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295569,0.000000,0.000000,0.250000,0,0);}
.m38_c00197{transform:matrix(0.296267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296267,0.000000,0.000000,0.250000,0,0);}
.m3c_c00197{transform:matrix(0.296449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296449,0.000000,0.000000,0.250000,0,0);}
.m6_c00197{transform:matrix(0.296744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296744,0.000000,0.000000,0.250000,0,0);}
.m2a_c00197{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m69_c00197{transform:matrix(0.297218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297218,0.000000,0.000000,0.250000,0,0);}
.m24_c00197{transform:matrix(0.297485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297485,0.000000,0.000000,0.250000,0,0);}
.m27_c00197{transform:matrix(0.297924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297924,0.000000,0.000000,0.250000,0,0);}
.m5_c00197{transform:matrix(0.299262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299262,0.000000,0.000000,0.250000,0,0);}
.m28_c00197{transform:matrix(0.300641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300641,0.000000,0.000000,0.250000,0,0);}
.m49_c00197{transform:matrix(0.301074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301074,0.000000,0.000000,0.250000,0,0);}
.m17_c00197{transform:matrix(0.301192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301192,0.000000,0.000000,0.250000,0,0);}
.m26_c00197{transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);}
.m98_c00197{transform:matrix(0.305132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305132,0.000000,0.000000,0.250000,0,0);}
.m10_c00197{transform:matrix(0.306730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306730,0.000000,0.000000,0.250000,0,0);}
.m61_c00197{transform:matrix(0.307149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307149,0.000000,0.000000,0.250000,0,0);}
.m8c_c00197{transform:matrix(0.307667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307667,0.000000,0.000000,0.250000,0,0);}
.m36_c00197{transform:matrix(0.307750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307750,0.000000,0.000000,0.250000,0,0);}
.m1_c00197{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m1f_c00197{transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);}
.mac_c00197{transform:matrix(0.309237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309237,0.000000,0.000000,0.250000,0,0);}
.m64_c00197{transform:matrix(0.310477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310477,0.000000,0.000000,0.250000,0,0);}
.m7b_c00197{transform:matrix(0.311154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311154,0.000000,0.000000,0.250000,0,0);}
.m7c_c00197{transform:matrix(0.311374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311374,0.000000,0.000000,0.250000,0,0);}
.m4a_c00197{transform:matrix(0.313552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313552,0.000000,0.000000,0.250000,0,0);}
.m56_c00197{transform:matrix(0.314415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314415,0.000000,0.000000,0.250000,0,0);}
.m9b_c00197{transform:matrix(0.314543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314543,0.000000,0.000000,0.250000,0,0);}
.m33_c00197{transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);}
.m63_c00197{transform:matrix(0.316749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316749,0.000000,0.000000,0.250000,0,0);}
.m5d_c00197{transform:matrix(0.317925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317925,0.000000,0.000000,0.250000,0,0);}
.m31_c00197{transform:matrix(0.317979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317979,0.000000,0.000000,0.250000,0,0);}
.m7e_c00197{transform:matrix(0.318741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318741,0.000000,0.000000,0.250000,0,0);}
.m72_c00197{transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);}
.m13_c00197{transform:matrix(0.318906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318906,0.000000,0.000000,0.250000,0,0);}
.m8b_c00197{transform:matrix(0.320922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320922,0.000000,0.000000,0.250000,0,0);}
.m9c_c00197{transform:matrix(0.321492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321492,0.000000,0.000000,0.250000,0,0);}
.m42_c00197{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);}
.m5b_c00197{transform:matrix(0.322188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322188,0.000000,0.000000,0.250000,0,0);}
.m8a_c00197{transform:matrix(0.322527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322527,0.000000,0.000000,0.250000,0,0);}
.m76_c00197{transform:matrix(0.322881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322881,0.000000,0.000000,0.250000,0,0);}
.m1b_c00197{transform:matrix(0.323060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323060,0.000000,0.000000,0.250000,0,0);}
.m46_c00197{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.m14_c00197{transform:matrix(0.323918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323918,0.000000,0.000000,0.250000,0,0);}
.m5f_c00197{transform:matrix(0.324566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324566,0.000000,0.000000,0.250000,0,0);}
.m97_c00197{transform:matrix(0.324794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324794,0.000000,0.000000,0.250000,0,0);}
.m83_c00197{transform:matrix(0.325172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325172,0.000000,0.000000,0.250000,0,0);}
.m4f_c00197{transform:matrix(0.326063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326063,0.000000,0.000000,0.250000,0,0);}
.m2_c00197{transform:matrix(0.326261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326261,0.000000,0.000000,0.250000,0,0);}
.m29_c00197{transform:matrix(0.327129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327129,0.000000,0.000000,0.250000,0,0);}
.m5e_c00197{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m2f_c00197{transform:matrix(0.329390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329390,0.000000,0.000000,0.250000,0,0);}
.mab_c00197{transform:matrix(0.329713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329713,0.000000,0.000000,0.250000,0,0);}
.m2d_c00197{transform:matrix(0.329858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329858,0.000000,0.000000,0.250000,0,0);}
.m6b_c00197{transform:matrix(0.330414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330414,0.000000,0.000000,0.250000,0,0);}
.m4c_c00197{transform:matrix(0.332326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332326,0.000000,0.000000,0.250000,0,0);}
.m1c_c00197{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m8_c00197{transform:matrix(0.334135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334135,0.000000,0.000000,0.250000,0,0);}
.m51_c00197{transform:matrix(0.334551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334551,0.000000,0.000000,0.250000,0,0);}
.maa_c00197{transform:matrix(0.335146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335146,0.000000,0.000000,0.250000,0,0);}
.m6f_c00197{transform:matrix(0.335935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335935,0.000000,0.000000,0.250000,0,0);}
.mae_c00197{transform:matrix(0.337295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337295,0.000000,0.000000,0.250000,0,0);}
.m65_c00197{transform:matrix(0.338858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338858,0.000000,0.000000,0.250000,0,0);}
.mb_c00197{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m3e_c00197{transform:matrix(0.340323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340323,0.000000,0.000000,0.250000,0,0);}
.m66_c00197{transform:matrix(0.341742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341742,0.000000,0.000000,0.250000,0,0);}
.m9e_c00197{transform:matrix(0.341866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341866,0.000000,0.000000,0.250000,0,0);}
.m18_c00197{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.m84_c00197{transform:matrix(0.347316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347316,0.000000,0.000000,0.250000,0,0);}
.mad_c00197{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m7f_c00197{transform:matrix(0.350956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350956,0.000000,0.000000,0.250000,0,0);}
.m25_c00197{transform:matrix(0.354899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354899,0.000000,0.000000,0.250000,0,0);}
.m4e_c00197{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m92_c00197{transform:matrix(0.355750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00197{transform:matrix(0.357910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357910,0.000000,0.000000,0.250000,0,0);}
.m87_c00197{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m55_c00197{transform:matrix(0.362878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362878,0.000000,0.000000,0.250000,0,0);}
.m78_c00197{transform:matrix(0.368363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368363,0.000000,0.000000,0.250000,0,0);}
.m88_c00197{transform:matrix(0.374714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374714,0.000000,0.000000,0.250000,0,0);}
.v0_c00197{vertical-align:0.000000px;}
.v1_c00197{vertical-align:17.122644px;}
.ls9_c00197{letter-spacing:-2.744280px;}
.lsd_c00197{letter-spacing:-1.607767px;}
.lsc_c00197{letter-spacing:-1.113394px;}
.ls4_c00197{letter-spacing:0.000000px;}
.lsa_c00197{letter-spacing:1.113394px;}
.ls5_c00197{letter-spacing:2.454170px;}
.lsb_c00197{letter-spacing:3.097116px;}
.ls0_c00197{letter-spacing:3.324499px;}
.ls8_c00197{letter-spacing:3.544200px;}
.ls3_c00197{letter-spacing:3.920400px;}
.ls2_c00197{letter-spacing:4.177810px;}
.ls7_c00197{letter-spacing:49.896198px;}
.ls1_c00197{letter-spacing:50.724432px;}
.ls6_c00197{letter-spacing:51.321798px;}
.lse_c00197{letter-spacing:58.449798px;}
.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;}
}
.ws1_c00197{word-spacing:-22.699116px;}
.ws0_c00197{word-spacing:-19.602000px;}
.ws2_c00197{word-spacing:-18.488606px;}
.ws3_c00197{word-spacing:0.000000px;}
._3_c00197{width:2.979504px;}
._8_c00197{width:4.861296px;}
._2_c00197{width:6.507864px;}
._a_c00197{width:7.605576px;}
._5_c00197{width:9.095328px;}
._b_c00197{width:11.243707px;}
._6_c00197{width:17.328168px;}
._7_c00197{width:20.855736px;}
._0_c00197{width:22.267872px;}
._9_c00197{width:23.679216px;}
._4_c00197{width:29.722968px;}
._1_c00197{width:36.851760px;}
.fc0_c00197{color:transparent;}
.fs6_c00197{font-size:40.194000px;}
.fs7_c00197{font-size:45.936198px;}
.fs4_c00197{font-size:49.896198px;}
.fs3_c00197{font-size:51.321798px;}
.fs8_c00197{font-size:58.449798px;}
.fs2_c00197{font-size:66.330000px;}
.fs5_c00197{font-size:70.884000px;}
.fs1_c00197{font-size:78.408000px;}
.fs0_c00197{font-size:83.556198px;}
.y0_c00197{bottom:0.000000px;}
.y1_c00197{bottom:76.500000px;}
.y19_c00197{bottom:182.745135px;}
.y18_c00197{bottom:216.241785px;}
.y17_c00197{bottom:249.391935px;}
.y16_c00197{bottom:280.755135px;}
.y15_c00197{bottom:312.474735px;}
.y14_c00197{bottom:344.194335px;}
.y13_c00197{bottom:376.983135px;}
.y12_c00197{bottom:409.410585px;}
.y11_c00197{bottom:437.566185px;}
.y10_c00197{bottom:441.847935px;}
.yf_c00197{bottom:474.631785px;}
.ye_c00197{bottom:506.707785px;}
.yd_c00197{bottom:538.788735px;}
.yc_c00197{bottom:602.227935px;}
.yb_c00197{bottom:635.016735px;}
.ya_c00197{bottom:668.869785px;}
.y9_c00197{bottom:701.302185px;}
.y8_c00197{bottom:733.734585px;}
.y7_c00197{bottom:765.454185px;}
.y6_c00197{bottom:797.886585px;}
.y5_c00197{bottom:829.967535px;}
.y4_c00197{bottom:862.399935px;}
.y3_c00197{bottom:927.621135px;}
.y2_c00197{bottom:1080.155385px;}
.h6_c00197{height:33.230868px;}
.h5_c00197{height:34.180317px;}
.ha_c00197{height:38.927565px;}
.h9_c00197{height:45.083866px;}
.h8_c00197{height:59.043730px;}
.h4_c00197{height:69.180117px;}
.h7_c00197{height:69.568770px;}
.h3_c00197{height:76.953164px;}
.h2_c00197{height:82.005839px;}
.h1_c00197{height:1110.000000px;}
.h0_c00197{height:1263.000000px;}
.w1_c00197{width:733.500000px;}
.w0_c00197{width:892.500000px;}
.x0_c00197{left:0.000000px;}
.x2d_c00197{left:60.552885px;}
.x3_c00197{left:61.790385px;}
.x1e_c00197{left:62.810085px;}
.x61_c00197{left:64.963335px;}
.x1_c00197{left:79.500000px;}
.x5b_c00197{left:84.783135px;}
.x1f_c00197{left:95.648385px;}
.x4_c00197{left:106.350285px;}
.x59_c00197{left:107.394735px;}
.xc_c00197{left:116.151285px;}
.x53_c00197{left:117.240285px;}
.x5c_c00197{left:118.462935px;}
.x15_c00197{left:128.417385px;}
.x24_c00197{left:138.807435px;}
.x3a_c00197{left:149.454885px;}
.x2e_c00197{left:151.424985px;}
.x33_c00197{left:160.320135px;}
.x41_c00197{left:161.948685px;}
.x50_c00197{left:170.264685px;}
.x4b_c00197{left:171.467535px;}
.xd_c00197{left:172.635735px;}
.x5_c00197{left:182.768385px;}
.x5a_c00197{left:184.060335px;}
.x42_c00197{left:194.282085px;}
.x16_c00197{left:197.197635px;}
.x6_c00197{left:205.097835px;}
.x29_c00197{left:215.606685px;}
.x47_c00197{left:218.581635px;}
.x2f_c00197{left:227.417385px;}
.x48_c00197{left:228.605385px;}
.x7_c00197{left:238.213335px;}
.x5d_c00197{left:250.162635px;}
.x3b_c00197{left:252.107985px;}
.x2a_c00197{left:259.429035px;}
.x36_c00197{left:261.022935px;}
.x20_c00197{left:271.383285px;}
.x8_c00197{left:281.159535px;}
.x25_c00197{left:282.466335px;}
.xe_c00197{left:292.603935px;}
.x21_c00197{left:293.831535px;}
.x3c_c00197{left:304.503735px;}
.x43_c00197{left:315.042285px;}
.x51_c00197{left:316.274835px;}
.x54_c00197{left:318.324135px;}
.x17_c00197{left:319.918035px;}
.xf_c00197{left:326.268885px;}
.x5e_c00197{left:327.308385px;}
.x22_c00197{left:338.356785px;}
.x10_c00197{left:359.503185px;}
.x49_c00197{left:360.814935px;}
.x67_c00197{left:362.918685px;}
.x2b_c00197{left:371.180235px;}
.x63_c00197{left:373.640385px;}
.x9_c00197{left:382.223685px;}
.x11_c00197{left:392.638485px;}
.x62_c00197{left:393.905685px;}
.xa_c00197{left:403.850235px;}
.x55_c00197{left:404.954085px;}
.x5f_c00197{left:406.513335px;}
.x37_c00197{left:414.641235px;}
.x30_c00197{left:425.135235px;}
.x18_c00197{left:426.392535px;}
.x56_c00197{left:436.559835px;}
.x26_c00197{left:437.772585px;}
.xb_c00197{left:446.534085px;}
.x4c_c00197{left:448.504185px;}
.x19_c00197{left:459.176385px;}
.x60_c00197{left:470.323785px;}
.x68_c00197{left:474.031335px;}
.x44_c00197{left:481.639485px;}
.x64_c00197{left:489.638685px;}
.x12_c00197{left:492.316635px;}
.x69_c00197{left:493.633335px;}
.x4a_c00197{left:503.013585px;}
.x3d_c00197{left:505.790535px;}
.x65_c00197{left:507.176535px;}
.x34_c00197{left:513.967935px;}
.x2c_c00197{left:524.244135px;}
.x57_c00197{left:526.189485px;}
.x1a_c00197{left:527.530935px;}
.x3e_c00197{left:536.188485px;}
.x1b_c00197{left:547.568535px;}
.x4d_c00197{left:549.697035px;}
.x31_c00197{left:557.577435px;}
.x45_c00197{left:558.923835px;}
.x4e_c00197{left:567.541785px;}
.x38_c00197{left:569.655435px;}
.x1c_c00197{left:578.446635px;}
.x52_c00197{left:579.807885px;}
.x23_c00197{left:591.049335px;}
.x4f_c00197{left:600.498885px;}
.x3f_c00197{left:602.731335px;}
.x1d_c00197{left:612.334335px;}
.x13_c00197{left:623.739135px;}
.x66_c00197{left:624.917235px;}
.x58_c00197{left:634.361835px;}
.x2_c00197{left:635.935935px;}
.x39_c00197{left:646.088385px;}
.x35_c00197{left:657.240735px;}
.x14_c00197{left:666.477435px;}
.x27_c00197{left:667.932735px;}
.x46_c00197{left:678.763335px;}
.x28_c00197{left:689.767185px;}
.x32_c00197{left:700.459185px;}
.x40_c00197{left:712.220385px;}
@media print{
.v0_c00197{vertical-align:0.000000pt;}
.v1_c00197{vertical-align:15.220128pt;}
.ls9_c00197{letter-spacing:-2.439360pt;}
.lsd_c00197{letter-spacing:-1.429126pt;}
.lsc_c00197{letter-spacing:-0.989683pt;}
.ls4_c00197{letter-spacing:0.000000pt;}
.lsa_c00197{letter-spacing:0.989683pt;}
.ls5_c00197{letter-spacing:2.181485pt;}
.lsb_c00197{letter-spacing:2.752992pt;}
.ls0_c00197{letter-spacing:2.955110pt;}
.ls8_c00197{letter-spacing:3.150400pt;}
.ls3_c00197{letter-spacing:3.484800pt;}
.ls2_c00197{letter-spacing:3.713609pt;}
.ls7_c00197{letter-spacing:44.352176pt;}
.ls1_c00197{letter-spacing:45.088384pt;}
.ls6_c00197{letter-spacing:45.619376pt;}
.lse_c00197{letter-spacing:51.955376pt;}
.ws1_c00197{word-spacing:-20.176992pt;}
.ws0_c00197{word-spacing:-17.424000pt;}
.ws2_c00197{word-spacing:-16.434317pt;}
.ws3_c00197{word-spacing:0.000000pt;}
._3_c00197{width:2.648448pt;}
._8_c00197{width:4.321152pt;}
._2_c00197{width:5.784768pt;}
._a_c00197{width:6.760512pt;}
._5_c00197{width:8.084736pt;}
._b_c00197{width:9.994406pt;}
._6_c00197{width:15.402816pt;}
._7_c00197{width:18.538432pt;}
._0_c00197{width:19.793664pt;}
._9_c00197{width:21.048192pt;}
._4_c00197{width:26.420416pt;}
._1_c00197{width:32.757120pt;}
.fs6_c00197{font-size:35.728000pt;}
.fs7_c00197{font-size:40.832176pt;}
.fs4_c00197{font-size:44.352176pt;}
.fs3_c00197{font-size:45.619376pt;}
.fs8_c00197{font-size:51.955376pt;}
.fs2_c00197{font-size:58.960000pt;}
.fs5_c00197{font-size:63.008000pt;}
.fs1_c00197{font-size:69.696000pt;}
.fs0_c00197{font-size:74.272176pt;}
.y0_c00197{bottom:0.000000pt;}
.y1_c00197{bottom:68.000000pt;}
.y19_c00197{bottom:162.440120pt;}
.y18_c00197{bottom:192.214920pt;}
.y17_c00197{bottom:221.681720pt;}
.y16_c00197{bottom:249.560120pt;}
.y15_c00197{bottom:277.755320pt;}
.y14_c00197{bottom:305.950520pt;}
.y13_c00197{bottom:335.096120pt;}
.y12_c00197{bottom:363.920520pt;}
.y11_c00197{bottom:388.947720pt;}
.y10_c00197{bottom:392.753720pt;}
.yf_c00197{bottom:421.894920pt;}
.ye_c00197{bottom:450.406920pt;}
.yd_c00197{bottom:478.923320pt;}
.yc_c00197{bottom:535.313720pt;}
.yb_c00197{bottom:564.459320pt;}
.ya_c00197{bottom:594.550920pt;}
.y9_c00197{bottom:623.379720pt;}
.y8_c00197{bottom:652.208520pt;}
.y7_c00197{bottom:680.403720pt;}
.y6_c00197{bottom:709.232520pt;}
.y5_c00197{bottom:737.748920pt;}
.y4_c00197{bottom:766.577720pt;}
.y3_c00197{bottom:824.552120pt;}
.y2_c00197{bottom:960.138120pt;}
.h6_c00197{height:29.538549pt;}
.h5_c00197{height:30.382504pt;}
.ha_c00197{height:34.602280pt;}
.h9_c00197{height:40.074548pt;}
.h8_c00197{height:52.483316pt;}
.h4_c00197{height:61.493438pt;}
.h7_c00197{height:61.838906pt;}
.h3_c00197{height:68.402813pt;}
.h2_c00197{height:72.894079pt;}
.h1_c00197{height:986.666667pt;}
.h0_c00197{height:1122.666667pt;}
.w1_c00197{width:652.000000pt;}
.w0_c00197{width:793.333333pt;}
.x0_c00197{left:0.000000pt;}
.x2d_c00197{left:53.824787pt;}
.x3_c00197{left:54.924787pt;}
.x1e_c00197{left:55.831187pt;}
.x61_c00197{left:57.745187pt;}
.x1_c00197{left:70.666667pt;}
.x5b_c00197{left:75.362787pt;}
.x1f_c00197{left:85.020787pt;}
.x4_c00197{left:94.533587pt;}
.x59_c00197{left:95.461987pt;}
.xc_c00197{left:103.245587pt;}
.x53_c00197{left:104.213587pt;}
.x5c_c00197{left:105.300387pt;}
.x15_c00197{left:114.148787pt;}
.x24_c00197{left:123.384387pt;}
.x3a_c00197{left:132.848787pt;}
.x2e_c00197{left:134.599987pt;}
.x33_c00197{left:142.506787pt;}
.x41_c00197{left:143.954387pt;}
.x50_c00197{left:151.346387pt;}
.x4b_c00197{left:152.415587pt;}
.xd_c00197{left:153.453987pt;}
.x5_c00197{left:162.460787pt;}
.x5a_c00197{left:163.609187pt;}
.x42_c00197{left:172.695187pt;}
.x16_c00197{left:175.286787pt;}
.x6_c00197{left:182.309187pt;}
.x29_c00197{left:191.650387pt;}
.x47_c00197{left:194.294787pt;}
.x2f_c00197{left:202.148787pt;}
.x48_c00197{left:203.204787pt;}
.x7_c00197{left:211.745187pt;}
.x5d_c00197{left:222.366787pt;}
.x3b_c00197{left:224.095987pt;}
.x2a_c00197{left:230.603587pt;}
.x36_c00197{left:232.020387pt;}
.x20_c00197{left:241.229587pt;}
.x8_c00197{left:249.919587pt;}
.x25_c00197{left:251.081187pt;}
.xe_c00197{left:260.092387pt;}
.x21_c00197{left:261.183587pt;}
.x3c_c00197{left:270.669987pt;}
.x43_c00197{left:280.037587pt;}
.x51_c00197{left:281.133187pt;}
.x54_c00197{left:282.954787pt;}
.x17_c00197{left:284.371587pt;}
.xf_c00197{left:290.016787pt;}
.x5e_c00197{left:290.940787pt;}
.x22_c00197{left:300.761587pt;}
.x10_c00197{left:319.558387pt;}
.x49_c00197{left:320.724387pt;}
.x67_c00197{left:322.594387pt;}
.x2b_c00197{left:329.937987pt;}
.x63_c00197{left:332.124787pt;}
.x9_c00197{left:339.754387pt;}
.x11_c00197{left:349.011987pt;}
.x62_c00197{left:350.138387pt;}
.xa_c00197{left:358.977987pt;}
.x55_c00197{left:359.959187pt;}
.x5f_c00197{left:361.345187pt;}
.x37_c00197{left:368.569987pt;}
.x30_c00197{left:377.897987pt;}
.x18_c00197{left:379.015587pt;}
.x56_c00197{left:388.053187pt;}
.x26_c00197{left:389.131187pt;}
.xb_c00197{left:396.919187pt;}
.x4c_c00197{left:398.670387pt;}
.x19_c00197{left:408.156787pt;}
.x60_c00197{left:418.065587pt;}
.x68_c00197{left:421.361187pt;}
.x44_c00197{left:428.123987pt;}
.x64_c00197{left:435.234387pt;}
.x12_c00197{left:437.614787pt;}
.x69_c00197{left:438.785187pt;}
.x4a_c00197{left:447.123187pt;}
.x3d_c00197{left:449.591587pt;}
.x65_c00197{left:450.823587pt;}
.x34_c00197{left:456.860387pt;}
.x2c_c00197{left:465.994787pt;}
.x57_c00197{left:467.723987pt;}
.x1a_c00197{left:468.916387pt;}
.x3e_c00197{left:476.611987pt;}
.x1b_c00197{left:486.727587pt;}
.x4d_c00197{left:488.619587pt;}
.x31_c00197{left:495.624387pt;}
.x45_c00197{left:496.821187pt;}
.x4e_c00197{left:504.481587pt;}
.x38_c00197{left:506.360387pt;}
.x1c_c00197{left:514.174787pt;}
.x52_c00197{left:515.384787pt;}
.x23_c00197{left:525.377187pt;}
.x4f_c00197{left:533.776787pt;}
.x3f_c00197{left:535.761187pt;}
.x1d_c00197{left:544.297187pt;}
.x13_c00197{left:554.434787pt;}
.x66_c00197{left:555.481987pt;}
.x58_c00197{left:563.877187pt;}
.x2_c00197{left:565.276387pt;}
.x39_c00197{left:574.300787pt;}
.x35_c00197{left:584.213987pt;}
.x14_c00197{left:592.424387pt;}
.x27_c00197{left:593.717987pt;}
.x46_c00197{left:603.345187pt;}
.x28_c00197{left:613.126387pt;}
.x32_c00197{left:622.630387pt;}
.x40_c00197{left:633.084787pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2983fc9f440d2536c1b2010.woff2')format("woff");}.ff1_c00198{font-family:ff1_c00198;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00198;src:url('chunks/assets/font_549f5b5b42b86fade45de6cf.woff2')format("woff");}.ff2_c00198{font-family:ff2_c00198;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00198;src:url('chunks/assets/font_4d6e0cb7da9db50ff7201ab6.woff2')format("woff");}.ff3_c00198{font-family:ff3_c00198;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00198;src:url('chunks/assets/font_5bb26109aa19ce50ede550af.woff2')format("woff");}.ff4_c00198{font-family:ff4_c00198;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00198;src:url('chunks/assets/font_03bef8f05034e2f0b53234a0.woff2')format("woff");}.ff5_c00198{font-family:ff5_c00198;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ma8_c00198{transform:matrix(0.058824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.058824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.058824,0.000000,0.000000,0.250000,0,0);}
.m31_c00198{transform:matrix(0.077382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077382,0.000000,0.000000,0.250000,0,0);}
.ma9_c00198{transform:matrix(0.088235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088235,0.000000,0.000000,0.250000,0,0);}
.m20_c00198{transform:matrix(0.119705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119705,0.000000,0.000000,0.250000,0,0);}
.m55_c00198{transform:matrix(0.138456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138456,0.000000,0.000000,0.250000,0,0);}
.m3b_c00198{transform:matrix(0.149931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149931,0.000000,0.000000,0.250000,0,0);}
.m30_c00198{transform:matrix(0.150793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150793,0.000000,0.000000,0.250000,0,0);}
.m57_c00198{transform:matrix(0.163109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163109,0.000000,0.000000,0.250000,0,0);}
.m11_c00198{transform:matrix(0.165624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165624,0.000000,0.000000,0.250000,0,0);}
.m9c_c00198{transform:matrix(0.167187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167187,0.000000,0.000000,0.250000,0,0);}
.md_c00198{transform:matrix(0.170896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170896,0.000000,0.000000,0.250000,0,0);}
.mcb_c00198{transform:matrix(0.182164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182164,0.000000,0.000000,0.250000,0,0);}
.m43_c00198{transform:matrix(0.183232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183232,0.000000,0.000000,0.250000,0,0);}
.m3c_c00198{transform:matrix(0.222764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222764,0.000000,0.000000,0.250000,0,0);}
.maa_c00198{transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);}
.m82_c00198{transform:matrix(0.231421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231421,0.000000,0.000000,0.250000,0,0);}
.ma2_c00198{transform:matrix(0.244940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244940,0.000000,0.000000,0.250000,0,0);}
.m0_c00198{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00198{transform:matrix(0.250919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250919,0.000000,0.000000,0.250000,0,0);}
.mae_c00198{transform:matrix(0.251611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251611,0.000000,0.000000,0.250000,0,0);}
.m38_c00198{transform:matrix(0.252497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252497,0.000000,0.000000,0.250000,0,0);}
.m5b_c00198{transform:matrix(0.253667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253667,0.000000,0.000000,0.250000,0,0);}
.m1_c00198{transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);}
.mb9_c00198{transform:matrix(0.255156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255156,0.000000,0.000000,0.250000,0,0);}
.m2a_c00198{transform:matrix(0.255172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255172,0.000000,0.000000,0.250000,0,0);}
.m4b_c00198{transform:matrix(0.257508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257508,0.000000,0.000000,0.250000,0,0);}
.m52_c00198{transform:matrix(0.257757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257757,0.000000,0.000000,0.250000,0,0);}
.m9e_c00198{transform:matrix(0.258294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258294,0.000000,0.000000,0.250000,0,0);}
.m5d_c00198{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m22_c00198{transform:matrix(0.259057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259057,0.000000,0.000000,0.250000,0,0);}
.m45_c00198{transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);}
.m9a_c00198{transform:matrix(0.259871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259871,0.000000,0.000000,0.250000,0,0);}
.m36_c00198{transform:matrix(0.260756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260756,0.000000,0.000000,0.250000,0,0);}
.m23_c00198{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.mcd_c00198{transform:matrix(0.261057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261057,0.000000,0.000000,0.250000,0,0);}
.ma4_c00198{transform:matrix(0.261624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261624,0.000000,0.000000,0.250000,0,0);}
.m50_c00198{transform:matrix(0.261788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261788,0.000000,0.000000,0.250000,0,0);}
.m4e_c00198{transform:matrix(0.261954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261954,0.000000,0.000000,0.250000,0,0);}
.m28_c00198{transform:matrix(0.262549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262549,0.000000,0.000000,0.250000,0,0);}
.m7e_c00198{transform:matrix(0.263039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263039,0.000000,0.000000,0.250000,0,0);}
.m13_c00198{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m1a_c00198{transform:matrix(0.263305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263305,0.000000,0.000000,0.250000,0,0);}
.m15_c00198{transform:matrix(0.263660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263660,0.000000,0.000000,0.250000,0,0);}
.m1e_c00198{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.mb4_c00198{transform:matrix(0.264602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264602,0.000000,0.000000,0.250000,0,0);}
.mbc_c00198{transform:matrix(0.264886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264886,0.000000,0.000000,0.250000,0,0);}
.m74_c00198{transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);}
.m17_c00198{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m8_c00198{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m6b_c00198{transform:matrix(0.267925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267925,0.000000,0.000000,0.250000,0,0);}
.mce_c00198{transform:matrix(0.267951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267951,0.000000,0.000000,0.250000,0,0);}
.m42_c00198{transform:matrix(0.268552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268552,0.000000,0.000000,0.250000,0,0);}
.maf_c00198{transform:matrix(0.268660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268660,0.000000,0.000000,0.250000,0,0);}
.mb7_c00198{transform:matrix(0.270459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270459,0.000000,0.000000,0.250000,0,0);}
.m97_c00198{transform:matrix(0.270477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270477,0.000000,0.000000,0.250000,0,0);}
.m7c_c00198{transform:matrix(0.271124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271124,0.000000,0.000000,0.250000,0,0);}
.m58_c00198{transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);}
.m96_c00198{transform:matrix(0.272223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272223,0.000000,0.000000,0.250000,0,0);}
.m4a_c00198{transform:matrix(0.272605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272605,0.000000,0.000000,0.250000,0,0);}
.m34_c00198{transform:matrix(0.272872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272872,0.000000,0.000000,0.250000,0,0);}
.m1f_c00198{transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);}
.mbb_c00198{transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);}
.m5_c00198{transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);}
.mc0_c00198{transform:matrix(0.274157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274157,0.000000,0.000000,0.250000,0,0);}
.m6a_c00198{transform:matrix(0.274278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274278,0.000000,0.000000,0.250000,0,0);}
.mb8_c00198{transform:matrix(0.274559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274559,0.000000,0.000000,0.250000,0,0);}
.m4_c00198{transform:matrix(0.274709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274709,0.000000,0.000000,0.250000,0,0);}
.m27_c00198{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m9b_c00198{transform:matrix(0.275963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275963,0.000000,0.000000,0.250000,0,0);}
.mbe_c00198{transform:matrix(0.276082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276082,0.000000,0.000000,0.250000,0,0);}
.m6e_c00198{transform:matrix(0.276783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276783,0.000000,0.000000,0.250000,0,0);}
.mb3_c00198{transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);}
.m61_c00198{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m8f_c00198{transform:matrix(0.277423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277423,0.000000,0.000000,0.250000,0,0);}
.m19_c00198{transform:matrix(0.277748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277748,0.000000,0.000000,0.250000,0,0);}
.m9f_c00198{transform:matrix(0.278381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278381,0.000000,0.000000,0.250000,0,0);}
.m62_c00198{transform:matrix(0.278550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278550,0.000000,0.000000,0.250000,0,0);}
.mb6_c00198{transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);}
.m3_c00198{transform:matrix(0.278778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278778,0.000000,0.000000,0.250000,0,0);}
.m63_c00198{transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);}
.m98_c00198{transform:matrix(0.279561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279561,0.000000,0.000000,0.250000,0,0);}
.m14_c00198{transform:matrix(0.279848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279848,0.000000,0.000000,0.250000,0,0);}
.mbd_c00198{transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);}
.mb1_c00198{transform:matrix(0.281112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281112,0.000000,0.000000,0.250000,0,0);}
.mca_c00198{transform:matrix(0.281917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281917,0.000000,0.000000,0.250000,0,0);}
.mf_c00198{transform:matrix(0.282667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282667,0.000000,0.000000,0.250000,0,0);}
.m89_c00198{transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);}
.m68_c00198{transform:matrix(0.283200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283200,0.000000,0.000000,0.250000,0,0);}
.m26_c00198{transform:matrix(0.283914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283914,0.000000,0.000000,0.250000,0,0);}
.m86_c00198{transform:matrix(0.283931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283931,0.000000,0.000000,0.250000,0,0);}
.mc4_c00198{transform:matrix(0.284835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284835,0.000000,0.000000,0.250000,0,0);}
.m77_c00198{transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);}
.m48_c00198{transform:matrix(0.285801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285801,0.000000,0.000000,0.250000,0,0);}
.m65_c00198{transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);}
.m7d_c00198{transform:matrix(0.286720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286720,0.000000,0.000000,0.250000,0,0);}
.m1c_c00198{transform:matrix(0.286942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286942,0.000000,0.000000,0.250000,0,0);}
.m6_c00198{transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);}
.m16_c00198{transform:matrix(0.287478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287478,0.000000,0.000000,0.250000,0,0);}
.mcf_c00198{transform:matrix(0.287499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287499,0.000000,0.000000,0.250000,0,0);}
.m71_c00198{transform:matrix(0.288571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288571,0.000000,0.000000,0.250000,0,0);}
.m4f_c00198{transform:matrix(0.288716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288716,0.000000,0.000000,0.250000,0,0);}
.m66_c00198{transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);}
.ma0_c00198{transform:matrix(0.289289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289289,0.000000,0.000000,0.250000,0,0);}
.m2e_c00198{transform:matrix(0.289924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289924,0.000000,0.000000,0.250000,0,0);}
.m5e_c00198{transform:matrix(0.290393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290393,0.000000,0.000000,0.250000,0,0);}
.mad_c00198{transform:matrix(0.291209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291209,0.000000,0.000000,0.250000,0,0);}
.mb_c00198{transform:matrix(0.291292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291292,0.000000,0.000000,0.250000,0,0);}
.m94_c00198{transform:matrix(0.291928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291928,0.000000,0.000000,0.250000,0,0);}
.mcc_c00198{transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);}
.m49_c00198{transform:matrix(0.292752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292752,0.000000,0.000000,0.250000,0,0);}
.m8e_c00198{transform:matrix(0.292912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292912,0.000000,0.000000,0.250000,0,0);}
.m85_c00198{transform:matrix(0.293137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293137,0.000000,0.000000,0.250000,0,0);}
.m41_c00198{transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);}
.m70_c00198{transform:matrix(0.293719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293719,0.000000,0.000000,0.250000,0,0);}
.mc5_c00198{transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);}
.m7b_c00198{transform:matrix(0.295991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295991,0.000000,0.000000,0.250000,0,0);}
.m3e_c00198{transform:matrix(0.296073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296073,0.000000,0.000000,0.250000,0,0);}
.m24_c00198{transform:matrix(0.296168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296168,0.000000,0.000000,0.250000,0,0);}
.mb5_c00198{transform:matrix(0.296648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296648,0.000000,0.000000,0.250000,0,0);}
.m81_c00198{transform:matrix(0.296872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296872,0.000000,0.000000,0.250000,0,0);}
.mab_c00198{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m2c_c00198{transform:matrix(0.297162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297162,0.000000,0.000000,0.250000,0,0);}
.m93_c00198{transform:matrix(0.297306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297306,0.000000,0.000000,0.250000,0,0);}
.m1b_c00198{transform:matrix(0.297943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297943,0.000000,0.000000,0.250000,0,0);}
.m84_c00198{transform:matrix(0.298426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298426,0.000000,0.000000,0.250000,0,0);}
.mb2_c00198{transform:matrix(0.298872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298872,0.000000,0.000000,0.250000,0,0);}
.m90_c00198{transform:matrix(0.299010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299010,0.000000,0.000000,0.250000,0,0);}
.m7f_c00198{transform:matrix(0.299198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299198,0.000000,0.000000,0.250000,0,0);}
.m5c_c00198{transform:matrix(0.299976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299976,0.000000,0.000000,0.250000,0,0);}
.m78_c00198{transform:matrix(0.300200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300200,0.000000,0.000000,0.250000,0,0);}
.m35_c00198{transform:matrix(0.300521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300521,0.000000,0.000000,0.250000,0,0);}
.m64_c00198{transform:matrix(0.300523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300523,0.000000,0.000000,0.250000,0,0);}
.m1d_c00198{transform:matrix(0.301515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301515,0.000000,0.000000,0.250000,0,0);}
.m54_c00198{transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);}
.m76_c00198{transform:matrix(0.304381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304381,0.000000,0.000000,0.250000,0,0);}
.m8d_c00198{transform:matrix(0.304751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304751,0.000000,0.000000,0.250000,0,0);}
.m32_c00198{transform:matrix(0.305492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305492,0.000000,0.000000,0.250000,0,0);}
.m8b_c00198{transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);}
.m47_c00198{transform:matrix(0.305782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305782,0.000000,0.000000,0.250000,0,0);}
.m40_c00198{transform:matrix(0.306269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306269,0.000000,0.000000,0.250000,0,0);}
.m6d_c00198{transform:matrix(0.307242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307242,0.000000,0.000000,0.250000,0,0);}
.m67_c00198{transform:matrix(0.307902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307902,0.000000,0.000000,0.250000,0,0);}
.m8a_c00198{transform:matrix(0.308140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308140,0.000000,0.000000,0.250000,0,0);}
.mc3_c00198{transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);}
.m88_c00198{transform:matrix(0.309355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309355,0.000000,0.000000,0.250000,0,0);}
.m6c_c00198{transform:matrix(0.310128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310128,0.000000,0.000000,0.250000,0,0);}
.m29_c00198{transform:matrix(0.311728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311728,0.000000,0.000000,0.250000,0,0);}
.m12_c00198{transform:matrix(0.311819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311819,0.000000,0.000000,0.250000,0,0);}
.m18_c00198{transform:matrix(0.312047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312047,0.000000,0.000000,0.250000,0,0);}
.mbf_c00198{transform:matrix(0.313756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313756,0.000000,0.000000,0.250000,0,0);}
.mc2_c00198{transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);}
.m21_c00198{transform:matrix(0.314120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314120,0.000000,0.000000,0.250000,0,0);}
.ma1_c00198{transform:matrix(0.314565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314565,0.000000,0.000000,0.250000,0,0);}
.m60_c00198{transform:matrix(0.315578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315578,0.000000,0.000000,0.250000,0,0);}
.ma6_c00198{transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);}
.m80_c00198{transform:matrix(0.317487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317487,0.000000,0.000000,0.250000,0,0);}
.mc1_c00198{transform:matrix(0.318263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318263,0.000000,0.000000,0.250000,0,0);}
.m2d_c00198{transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);}
.mba_c00198{transform:matrix(0.319290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319290,0.000000,0.000000,0.250000,0,0);}
.ma3_c00198{transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);}
.mc6_c00198{transform:matrix(0.320110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320110,0.000000,0.000000,0.250000,0,0);}
.m2f_c00198{transform:matrix(0.320257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320257,0.000000,0.000000,0.250000,0,0);}
.m7_c00198{transform:matrix(0.320945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320945,0.000000,0.000000,0.250000,0,0);}
.mac_c00198{transform:matrix(0.321160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321160,0.000000,0.000000,0.250000,0,0);}
.m10_c00198{transform:matrix(0.321236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321236,0.000000,0.000000,0.250000,0,0);}
.ma7_c00198{transform:matrix(0.323233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323233,0.000000,0.000000,0.250000,0,0);}
.m46_c00198{transform:matrix(0.323725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323725,0.000000,0.000000,0.250000,0,0);}
.mc_c00198{transform:matrix(0.324856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324856,0.000000,0.000000,0.250000,0,0);}
.m87_c00198{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m79_c00198{transform:matrix(0.327374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327374,0.000000,0.000000,0.250000,0,0);}
.m7a_c00198{transform:matrix(0.328549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328549,0.000000,0.000000,0.250000,0,0);}
.m2b_c00198{transform:matrix(0.331108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331108,0.000000,0.000000,0.250000,0,0);}
.m95_c00198{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.me_c00198{transform:matrix(0.333754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333754,0.000000,0.000000,0.250000,0,0);}
.m75_c00198{transform:matrix(0.334575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334575,0.000000,0.000000,0.250000,0,0);}
.ma5_c00198{transform:matrix(0.334985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334985,0.000000,0.000000,0.250000,0,0);}
.mc8_c00198{transform:matrix(0.335219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335219,0.000000,0.000000,0.250000,0,0);}
.m25_c00198{transform:matrix(0.335804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335804,0.000000,0.000000,0.250000,0,0);}
.m72_c00198{transform:matrix(0.336348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336348,0.000000,0.000000,0.250000,0,0);}
.m33_c00198{transform:matrix(0.336924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336924,0.000000,0.000000,0.250000,0,0);}
.m99_c00198{transform:matrix(0.337295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337295,0.000000,0.000000,0.250000,0,0);}
.m37_c00198{transform:matrix(0.337895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337895,0.000000,0.000000,0.250000,0,0);}
.ma_c00198{transform:matrix(0.338217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338217,0.000000,0.000000,0.250000,0,0);}
.mc7_c00198{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m4d_c00198{transform:matrix(0.339556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339556,0.000000,0.000000,0.250000,0,0);}
.m51_c00198{transform:matrix(0.339945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339945,0.000000,0.000000,0.250000,0,0);}
.m56_c00198{transform:matrix(0.340207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340207,0.000000,0.000000,0.250000,0,0);}
.m92_c00198{transform:matrix(0.340822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340822,0.000000,0.000000,0.250000,0,0);}
.m9_c00198{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.m5f_c00198{transform:matrix(0.343551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343551,0.000000,0.000000,0.250000,0,0);}
.m39_c00198{transform:matrix(0.345489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345489,0.000000,0.000000,0.250000,0,0);}
.m3f_c00198{transform:matrix(0.347013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347013,0.000000,0.000000,0.250000,0,0);}
.m9d_c00198{transform:matrix(0.348765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348765,0.000000,0.000000,0.250000,0,0);}
.m5a_c00198{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.mb0_c00198{transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);}
.m8c_c00198{transform:matrix(0.352148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352148,0.000000,0.000000,0.250000,0,0);}
.m6f_c00198{transform:matrix(0.354899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354899,0.000000,0.000000,0.250000,0,0);}
.m91_c00198{transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);}
.md0_c00198{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m3a_c00198{transform:matrix(0.355789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355789,0.000000,0.000000,0.250000,0,0);}
.m73_c00198{transform:matrix(0.359169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359169,0.000000,0.000000,0.250000,0,0);}
.m2_c00198{transform:matrix(0.364060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364060,0.000000,0.000000,0.250000,0,0);}
.m83_c00198{transform:matrix(0.364074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364074,0.000000,0.000000,0.250000,0,0);}
.m59_c00198{transform:matrix(0.365181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365181,0.000000,0.000000,0.250000,0,0);}
.m44_c00198{transform:matrix(0.374714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374714,0.000000,0.000000,0.250000,0,0);}
.m53_c00198{transform:matrix(0.375327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375327,0.000000,0.000000,0.250000,0,0);}
.mc9_c00198{transform:matrix(0.378961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378961,0.000000,0.000000,0.250000,0,0);}
.m69_c00198{transform:matrix(0.381065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381065,0.000000,0.000000,0.250000,0,0);}
.m3d_c00198{transform:matrix(0.385852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385852,0.000000,0.000000,0.250000,0,0);}
.v4_c00198{vertical-align:-19.978200px;}
.v2_c00198{vertical-align:-17.067600px;}
.v3_c00198{vertical-align:-12.830400px;}
.v0_c00198{vertical-align:0.000000px;}
.v1_c00198{vertical-align:14.236200px;}
.v6_c00198{vertical-align:17.113140px;}
.v5_c00198{vertical-align:18.556560px;}
.lsa_c00198{letter-spacing:-2.744280px;}
.ls1c_c00198{letter-spacing:-2.069971px;}
.ls15_c00198{letter-spacing:-1.411344px;}
.ls17_c00198{letter-spacing:-1.027145px;}
.ls12_c00198{letter-spacing:-0.893851px;}
.ls1b_c00198{letter-spacing:-0.344995px;}
.ls8_c00198{letter-spacing:0.000000px;}
.ls21_c00198{letter-spacing:0.017186px;}
.ls22_c00198{letter-spacing:0.705672px;}
.ls23_c00198{letter-spacing:0.933055px;}
.lsd_c00198{letter-spacing:1.082030px;}
.lsc_c00198{letter-spacing:1.685772px;}
.ls0_c00198{letter-spacing:2.132698px;}
.ls1d_c00198{letter-spacing:2.391444px;}
.lsf_c00198{letter-spacing:2.435400px;}
.ls19_c00198{letter-spacing:2.924618px;}
.ls16_c00198{letter-spacing:3.128479px;}
.ls13_c00198{letter-spacing:3.167683px;}
.ls10_c00198{letter-spacing:3.247200px;}
.ls18_c00198{letter-spacing:3.559723px;}
.ls7_c00198{letter-spacing:3.781017px;}
.ls9_c00198{letter-spacing:3.920400px;}
.ls14_c00198{letter-spacing:4.098610px;}
.ls1_c00198{letter-spacing:4.152010px;}
.ls20_c00198{letter-spacing:4.296610px;}
.ls1f_c00198{letter-spacing:4.405500px;}
.ls1a_c00198{letter-spacing:5.227200px;}
.ls5_c00198{letter-spacing:5.499549px;}
.ls3_c00198{letter-spacing:9.408960px;}
.ls4_c00198{letter-spacing:29.184408px;}
.ls6_c00198{letter-spacing:31.978980px;}
.ls1e_c00198{letter-spacing:48.470598px;}
.lsb_c00198{letter-spacing:57.024198px;}
.ls11_c00198{letter-spacing:58.449798px;}
.lse_c00198{letter-spacing:59.875398px;}
.ls2_c00198{letter-spacing:1082.118246px;}
.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;}
}
.ws6_c00198{word-spacing:-23.161723px;}
.ws4_c00198{word-spacing:-22.769683px;}
.ws1_c00198{word-spacing:-19.602000px;}
.ws2_c00198{word-spacing:-17.028050px;}
.ws3_c00198{word-spacing:-2.744280px;}
.ws8_c00198{word-spacing:0.000000px;}
.ws7_c00198{word-spacing:1.254528px;}
.ws0_c00198{word-spacing:2.665872px;}
.ws5_c00198{word-spacing:5.488560px;}
._e_c00198{margin-left:-14.054040px;}
._7_c00198{margin-left:-2.665872px;}
._10_c00198{width:1.568160px;}
._4_c00198{width:4.861296px;}
._6_c00198{width:6.743088px;}
._3_c00198{width:8.076024px;}
._9_c00198{width:9.173736px;}
._1_c00198{width:10.977120px;}
._12_c00198{width:16.565155px;}
._13_c00198{width:18.326405px;}
._b_c00198{width:20.856528px;}
._5_c00198{width:24.071256px;}
._d_c00198{width:25.090560px;}
._0_c00198{width:29.716632px;}
._14_c00198{width:30.814344px;}
._8_c00198{width:32.931360px;}
._c_c00198{width:34.107480px;}
._2_c00198{width:35.362008px;}
._a_c00198{width:42.406848px;}
._11_c00198{width:43.830072px;}
._f_c00198{width:470.008440px;}
.fc0_c00198{color:transparent;}
.fs9_c00198{font-size:26.928000px;}
.fs15_c00198{font-size:34.056198px;}
.fs11_c00198{font-size:39.204000px;}
.fs1_c00198{font-size:45.144000px;}
.fs8_c00198{font-size:45.936198px;}
.fs12_c00198{font-size:48.470598px;}
.fs7_c00198{font-size:48.708000px;}
.fs14_c00198{font-size:51.084000px;}
.fsc_c00198{font-size:54.054000px;}
.fsf_c00198{font-size:56.232000px;}
.fs3_c00198{font-size:57.024198px;}
.fsb_c00198{font-size:58.449798px;}
.fs5_c00198{font-size:59.875398px;}
.fsd_c00198{font-size:61.380000px;}
.fsa_c00198{font-size:64.944000px;}
.fs6_c00198{font-size:68.112198px;}
.fs4_c00198{font-size:70.884000px;}
.fs2_c00198{font-size:78.408000px;}
.fse_c00198{font-size:81.972198px;}
.fs0_c00198{font-size:85.932198px;}
.fs13_c00198{font-size:88.110000px;}
.fs10_c00198{font-size:104.544000px;}
.y0_c00198{bottom:0.000000px;}
.y1_c00198{bottom:76.500000px;}
.y22_c00198{bottom:111.465135px;}
.y21_c00198{bottom:140.689935px;}
.y20_c00198{bottom:166.345785px;}
.y1f_c00198{bottom:170.627535px;}
.y1e_c00198{bottom:205.911135px;}
.y1d_c00198{bottom:239.056335px;}
.y1c_c00198{bottom:271.483785px;}
.y1b_c00198{bottom:336.353535px;}
.y1a_c00198{bottom:360.945135px;}
.y19_c00198{bottom:368.780985px;}
.y18_c00198{bottom:396.585135px;}
.y17_c00198{bottom:401.218335px;}
.y16_c00198{bottom:465.013935px;}
.y15_c00198{bottom:497.446335px;}
.y14_c00198{bottom:530.230185px;}
.y13_c00198{bottom:563.018985px;}
.y12_c00198{bottom:595.812735px;}
.y11_c00198{bottom:628.240185px;}
.yf_c00198{bottom:660.672585px;}
.y10_c00198{bottom:661.390335px;}
.ye_c00198{bottom:689.545935px;}
.yd_c00198{bottom:693.461385px;}
.yc_c00198{bottom:720.552735px;}
.yb_c00198{bottom:725.893785px;}
.ya_c00198{bottom:754.049385px;}
.y9_c00198{bottom:757.613385px;}
.y8_c00198{bottom:790.045785px;}
.y7_c00198{bottom:822.478185px;}
.y6_c00198{bottom:855.266985px;}
.y5_c00198{bottom:888.773535px;}
.y4_c00198{bottom:922.631535px;}
.y3_c00198{bottom:1016.359785px;}
.y2_c00198{bottom:1075.522185px;}
.h11_c00198{height:32.281418px;}
.h14_c00198{height:35.519550px;}
.h5_c00198{height:37.978116px;}
.h10_c00198{height:38.476582px;}
.hb_c00198{height:38.927565px;}
.h6_c00198{height:39.877015px;}
.h3_c00198{height:47.083781px;}
.h9_c00198{height:47.910019px;}
.h8_c00198{height:50.800922px;}
.hc_c00198{height:53.051045px;}
.ha_c00198{height:63.738984px;}
.h13_c00198{height:67.249292px;}
.he_c00198{height:73.745193px;}
.h4_c00198{height:76.953164px;}
.hd_c00198{height:80.451229px;}
.h7_c00198{height:81.084597px;}
.h2_c00198{height:84.337753px;}
.h12_c00198{height:86.432124px;}
.hf_c00198{height:102.604219px;}
.h1_c00198{height:1110.000000px;}
.h0_c00198{height:1263.000000px;}
.w1_c00198{width:775.500000px;}
.w0_c00198{width:892.500000px;}
.x0_c00198{left:0.000000px;}
.x1_c00198{left:58.500000px;}
.x6a_c00198{left:70.039185px;}
.x1d_c00198{left:71.073735px;}
.x12_c00198{left:72.103335px;}
.x35_c00198{left:74.122935px;}
.x44_c00198{left:93.155685px;}
.x78_c00198{left:94.581285px;}
.x52_c00198{left:104.372385px;}
.x73_c00198{left:106.268235px;}
.x36_c00198{left:107.624535px;}
.x23_c00198{left:116.291985px;}
.x4_c00198{left:126.389985px;}
.x6b_c00198{left:129.716385px;}
.x45_c00198{left:137.151285px;}
.x24_c00198{left:147.175035px;}
.x13_c00198{left:148.397685px;}
.x5_c00198{left:159.762885px;}
.x25_c00198{left:170.598435px;}
.x56_c00198{left:173.400135px;}
.x2f_c00198{left:181.201335px;}
.x6f_c00198{left:184.151535px;}
.x26_c00198{left:192.625935px;}
.x74_c00198{left:203.129835px;}
.x14_c00198{left:204.337635px;}
.x6_c00198{left:214.702935px;}
.x79_c00198{left:225.236535px;}
.x37_c00198{left:226.449285px;}
.x27_c00198{left:237.141285px;}
.x61_c00198{left:238.517385px;}
.x7_c00198{left:239.888535px;}
.x66_c00198{left:247.640235px;}
.x38_c00198{left:248.704485px;}
.x8_c00198{left:259.470735px;}
.x62_c00198{left:261.029985px;}
.x15_c00198{left:269.063835px;}
.x30_c00198{left:270.637935px;}
.x49_c00198{left:272.573385px;}
.x3_c00198{left:275.206785px;}
.x39_c00198{left:281.334885px;}
.x75_c00198{left:282.379335px;}
.x4a_c00198{left:292.581285px;}
.x9_c00198{left:293.798985px;}
.x3a_c00198{left:302.209035px;}
.x31_c00198{left:303.238635px;}
.x1e_c00198{left:304.481085px;}
.x46_c00198{left:313.945485px;}
.x5c_c00198{left:315.544335px;}
.x16_c00198{left:325.919535px;}
.x1f_c00198{left:336.458085px;}
.x57_c00198{left:337.636185px;}
.x32_c00198{left:347.021385px;}
.xa_c00198{left:349.021185px;}
.x17_c00198{left:359.272635px;}
.xb_c00198{left:370.801185px;}
.xc_c00198{left:381.097185px;}
.x69_c00198{left:383.943435px;}
.x5d_c00198{left:391.620885px;}
.x58_c00198{left:392.695035px;}
.x6c_c00198{left:402.327735px;}
.xd_c00198{left:403.589985px;}
.x70_c00198{left:411.267435px;}
.x28_c00198{left:413.702835px;}
.x63_c00198{left:422.672235px;}
.xe_c00198{left:425.666985px;}
.x53_c00198{left:435.146235px;}
.x67_c00198{left:437.037135px;}
.x18_c00198{left:447.417285px;}
.x5e_c00198{left:457.599435px;}
.x33_c00198{left:459.109185px;}
.x4e_c00198{left:469.162635px;}
.x54_c00198{left:470.553585px;}
.x19_c00198{left:472.221735px;}
.x29_c00198{left:480.562485px;}
.x2a_c00198{left:491.412885px;}
.x76_c00198{left:492.595935px;}
.x3b_c00198{left:494.427435px;}
.x47_c00198{left:502.481085px;}
.xf_c00198{left:513.351285px;}
.x20_c00198{left:515.781735px;}
.x1a_c00198{left:524.483835px;}
.x64_c00198{left:525.751035px;}
.x3c_c00198{left:532.705785px;}
.x4f_c00198{left:534.537285px;}
.x2b_c00198{left:535.819335px;}
.x6d_c00198{left:538.512135px;}
.x6e_c00198{left:545.278785px;}
.x10_c00198{left:546.823185px;}
.x3d_c00198{left:556.228185px;}
.x65_c00198{left:557.851785px;}
.x3e_c00198{left:568.558635px;}
.x59_c00198{left:571.390035px;}
.x51_c00198{left:572.399835px;}
.x11_c00198{left:578.374485px;}
.x2c_c00198{left:580.324785px;}
.x21_c00198{left:590.333685px;}
.x68_c00198{left:591.709785px;}
.x55_c00198{left:600.159435px;}
.x34_c00198{left:601.738485px;}
.x22_c00198{left:603.560085px;}
.x5f_c00198{left:611.519685px;}
.x2d_c00198{left:613.489785px;}
.x77_c00198{left:615.959835px;}
.x1b_c00198{left:623.840235px;}
.x3f_c00198{left:634.883685px;}
.x2e_c00198{left:645.021285px;}
.x71_c00198{left:646.535985px;}
.x1c_c00198{left:657.054735px;}
.x2_c00198{left:659.425785px;}
.x50_c00198{left:667.073535px;}
.x72_c00198{left:677.810085px;}
.x5a_c00198{left:678.899085px;}
.x60_c00198{left:680.096985px;}
.x40_c00198{left:688.219935px;}
.x41_c00198{left:693.353085px;}
.x42_c00198{left:696.134985px;}
.x7a_c00198{left:699.392085px;}
.x5b_c00198{left:701.857185px;}
.x4b_c00198{left:703.629285px;}
.x43_c00198{left:711.836385px;}
.x48_c00198{left:718.786185px;}
.x4c_c00198{left:722.315535px;}
.x4d_c00198{left:737.571435px;}
@media print{
.v4_c00198{vertical-align:-17.758400pt;}
.v2_c00198{vertical-align:-15.171200pt;}
.v3_c00198{vertical-align:-11.404800pt;}
.v0_c00198{vertical-align:0.000000pt;}
.v1_c00198{vertical-align:12.654400pt;}
.v6_c00198{vertical-align:15.211680pt;}
.v5_c00198{vertical-align:16.494720pt;}
.lsa_c00198{letter-spacing:-2.439360pt;}
.ls1c_c00198{letter-spacing:-1.839974pt;}
.ls15_c00198{letter-spacing:-1.254528pt;}
.ls17_c00198{letter-spacing:-0.913018pt;}
.ls12_c00198{letter-spacing:-0.794534pt;}
.ls1b_c00198{letter-spacing:-0.306662pt;}
.ls8_c00198{letter-spacing:0.000000pt;}
.ls21_c00198{letter-spacing:0.015277pt;}
.ls22_c00198{letter-spacing:0.627264pt;}
.ls23_c00198{letter-spacing:0.829382pt;}
.lsd_c00198{letter-spacing:0.961805pt;}
.lsc_c00198{letter-spacing:1.498464pt;}
.ls0_c00198{letter-spacing:1.895731pt;}
.ls1d_c00198{letter-spacing:2.125728pt;}
.lsf_c00198{letter-spacing:2.164800pt;}
.ls19_c00198{letter-spacing:2.599661pt;}
.ls16_c00198{letter-spacing:2.780870pt;}
.ls13_c00198{letter-spacing:2.815718pt;}
.ls10_c00198{letter-spacing:2.886400pt;}
.ls18_c00198{letter-spacing:3.164198pt;}
.ls7_c00198{letter-spacing:3.360904pt;}
.ls9_c00198{letter-spacing:3.484800pt;}
.ls14_c00198{letter-spacing:3.643209pt;}
.ls1_c00198{letter-spacing:3.690676pt;}
.ls20_c00198{letter-spacing:3.819209pt;}
.ls1f_c00198{letter-spacing:3.916000pt;}
.ls1a_c00198{letter-spacing:4.646400pt;}
.ls5_c00198{letter-spacing:4.888488pt;}
.ls3_c00198{letter-spacing:8.363520pt;}
.ls4_c00198{letter-spacing:25.941696pt;}
.ls6_c00198{letter-spacing:28.425760pt;}
.ls1e_c00198{letter-spacing:43.084976pt;}
.lsb_c00198{letter-spacing:50.688176pt;}
.ls11_c00198{letter-spacing:51.955376pt;}
.lse_c00198{letter-spacing:53.222576pt;}
.ls2_c00198{letter-spacing:961.882885pt;}
.ws6_c00198{word-spacing:-20.588198pt;}
.ws4_c00198{word-spacing:-20.239718pt;}
.ws1_c00198{word-spacing:-17.424000pt;}
.ws2_c00198{word-spacing:-15.136044pt;}
.ws3_c00198{word-spacing:-2.439360pt;}
.ws8_c00198{word-spacing:0.000000pt;}
.ws7_c00198{word-spacing:1.115136pt;}
.ws0_c00198{word-spacing:2.369664pt;}
.ws5_c00198{word-spacing:4.878720pt;}
._e_c00198{margin-left:-12.492480pt;}
._7_c00198{margin-left:-2.369664pt;}
._10_c00198{width:1.393920pt;}
._4_c00198{width:4.321152pt;}
._6_c00198{width:5.993856pt;}
._3_c00198{width:7.178688pt;}
._9_c00198{width:8.154432pt;}
._1_c00198{width:9.757440pt;}
._12_c00198{width:14.724582pt;}
._13_c00198{width:16.290138pt;}
._b_c00198{width:18.539136pt;}
._5_c00198{width:21.396672pt;}
._d_c00198{width:22.302720pt;}
._0_c00198{width:26.414784pt;}
._14_c00198{width:27.390528pt;}
._8_c00198{width:29.272320pt;}
._c_c00198{width:30.317760pt;}
._2_c00198{width:31.432896pt;}
._a_c00198{width:37.694976pt;}
._11_c00198{width:38.960064pt;}
._f_c00198{width:417.785280pt;}
.fs9_c00198{font-size:23.936000pt;}
.fs15_c00198{font-size:30.272176pt;}
.fs11_c00198{font-size:34.848000pt;}
.fs1_c00198{font-size:40.128000pt;}
.fs8_c00198{font-size:40.832176pt;}
.fs12_c00198{font-size:43.084976pt;}
.fs7_c00198{font-size:43.296000pt;}
.fs14_c00198{font-size:45.408000pt;}
.fsc_c00198{font-size:48.048000pt;}
.fsf_c00198{font-size:49.984000pt;}
.fs3_c00198{font-size:50.688176pt;}
.fsb_c00198{font-size:51.955376pt;}
.fs5_c00198{font-size:53.222576pt;}
.fsd_c00198{font-size:54.560000pt;}
.fsa_c00198{font-size:57.728000pt;}
.fs6_c00198{font-size:60.544176pt;}
.fs4_c00198{font-size:63.008000pt;}
.fs2_c00198{font-size:69.696000pt;}
.fse_c00198{font-size:72.864176pt;}
.fs0_c00198{font-size:76.384176pt;}
.fs13_c00198{font-size:78.320000pt;}
.fs10_c00198{font-size:92.928000pt;}
.y0_c00198{bottom:0.000000pt;}
.y1_c00198{bottom:68.000000pt;}
.y22_c00198{bottom:99.080120pt;}
.y21_c00198{bottom:125.057720pt;}
.y20_c00198{bottom:147.862920pt;}
.y1f_c00198{bottom:151.668920pt;}
.y1e_c00198{bottom:183.032120pt;}
.y1d_c00198{bottom:212.494520pt;}
.y1c_c00198{bottom:241.318920pt;}
.y1b_c00198{bottom:298.980920pt;}
.y1a_c00198{bottom:320.840120pt;}
.y19_c00198{bottom:327.805320pt;}
.y18_c00198{bottom:352.520120pt;}
.y17_c00198{bottom:356.638520pt;}
.y16_c00198{bottom:413.345720pt;}
.y15_c00198{bottom:442.174520pt;}
.y14_c00198{bottom:471.315720pt;}
.y13_c00198{bottom:500.461320pt;}
.y12_c00198{bottom:529.611320pt;}
.y11_c00198{bottom:558.435720pt;}
.yf_c00198{bottom:587.264520pt;}
.y10_c00198{bottom:587.902520pt;}
.ye_c00198{bottom:612.929720pt;}
.yd_c00198{bottom:616.410120pt;}
.yc_c00198{bottom:640.491320pt;}
.yb_c00198{bottom:645.238920pt;}
.ya_c00198{bottom:670.266120pt;}
.y9_c00198{bottom:673.434120pt;}
.y8_c00198{bottom:702.262920pt;}
.y7_c00198{bottom:731.091720pt;}
.y6_c00198{bottom:760.237320pt;}
.y5_c00198{bottom:790.020920pt;}
.y4_c00198{bottom:820.116920pt;}
.y3_c00198{bottom:903.430920pt;}
.y2_c00198{bottom:956.019720pt;}
.h11_c00198{height:28.694594pt;}
.h14_c00198{height:31.572934pt;}
.h5_c00198{height:33.758325pt;}
.h10_c00198{height:34.201406pt;}
.hb_c00198{height:34.602280pt;}
.h6_c00198{height:35.446236pt;}
.h3_c00198{height:41.852250pt;}
.h9_c00198{height:42.586684pt;}
.h8_c00198{height:45.156375pt;}
.hc_c00198{height:47.156484pt;}
.ha_c00198{height:56.656875pt;}
.h13_c00198{height:59.777149pt;}
.he_c00198{height:65.551282pt;}
.h4_c00198{height:68.402813pt;}
.hd_c00198{height:71.512204pt;}
.h7_c00198{height:72.075198pt;}
.h2_c00198{height:74.966891pt;}
.h12_c00198{height:76.828555pt;}
.hf_c00198{height:91.203750pt;}
.h1_c00198{height:986.666667pt;}
.h0_c00198{height:1122.666667pt;}
.w1_c00198{width:689.333333pt;}
.w0_c00198{width:793.333333pt;}
.x0_c00198{left:0.000000pt;}
.x1_c00198{left:52.000000pt;}
.x6a_c00198{left:62.257053pt;}
.x1d_c00198{left:63.176653pt;}
.x12_c00198{left:64.091853pt;}
.x35_c00198{left:65.887053pt;}
.x44_c00198{left:82.805053pt;}
.x78_c00198{left:84.072253pt;}
.x52_c00198{left:92.775453pt;}
.x73_c00198{left:94.460653pt;}
.x36_c00198{left:95.666253pt;}
.x23_c00198{left:103.370653pt;}
.x4_c00198{left:112.346653pt;}
.x6b_c00198{left:115.303453pt;}
.x45_c00198{left:121.912253pt;}
.x24_c00198{left:130.822253pt;}
.x13_c00198{left:131.909053pt;}
.x5_c00198{left:142.011453pt;}
.x25_c00198{left:151.643053pt;}
.x56_c00198{left:154.133453pt;}
.x2f_c00198{left:161.067853pt;}
.x6f_c00198{left:163.690253pt;}
.x26_c00198{left:171.223053pt;}
.x74_c00198{left:180.559853pt;}
.x14_c00198{left:181.633453pt;}
.x6_c00198{left:190.847053pt;}
.x79_c00198{left:200.210253pt;}
.x37_c00198{left:201.288253pt;}
.x27_c00198{left:210.792253pt;}
.x61_c00198{left:212.015453pt;}
.x7_c00198{left:213.234253pt;}
.x66_c00198{left:220.124653pt;}
.x38_c00198{left:221.070653pt;}
.x8_c00198{left:230.640653pt;}
.x62_c00198{left:232.026653pt;}
.x15_c00198{left:239.167853pt;}
.x30_c00198{left:240.567053pt;}
.x49_c00198{left:242.287453pt;}
.x3_c00198{left:244.628253pt;}
.x39_c00198{left:250.075453pt;}
.x75_c00198{left:251.003853pt;}
.x4a_c00198{left:260.072253pt;}
.x9_c00198{left:261.154653pt;}
.x3a_c00198{left:268.630253pt;}
.x31_c00198{left:269.545453pt;}
.x1e_c00198{left:270.649853pt;}
.x46_c00198{left:279.062653pt;}
.x5c_c00198{left:280.483853pt;}
.x16_c00198{left:289.706253pt;}
.x1f_c00198{left:299.073853pt;}
.x57_c00198{left:300.121053pt;}
.x32_c00198{left:308.463453pt;}
.xa_c00198{left:310.241053pt;}
.x17_c00198{left:319.353453pt;}
.xb_c00198{left:329.601053pt;}
.xc_c00198{left:338.753053pt;}
.x69_c00198{left:341.283053pt;}
.x5d_c00198{left:348.107453pt;}
.x58_c00198{left:349.062253pt;}
.x6c_c00198{left:357.624653pt;}
.xd_c00198{left:358.746653pt;}
.x70_c00198{left:365.571053pt;}
.x28_c00198{left:367.735853pt;}
.x63_c00198{left:375.708653pt;}
.xe_c00198{left:378.370653pt;}
.x53_c00198{left:386.796653pt;}
.x67_c00198{left:388.477453pt;}
.x18_c00198{left:397.704253pt;}
.x5e_c00198{left:406.755053pt;}
.x33_c00198{left:408.097053pt;}
.x4e_c00198{left:417.033453pt;}
.x54_c00198{left:418.269853pt;}
.x19_c00198{left:419.752653pt;}
.x29_c00198{left:427.166653pt;}
.x2a_c00198{left:436.811453pt;}
.x76_c00198{left:437.863053pt;}
.x3b_c00198{left:439.491053pt;}
.x47_c00198{left:446.649853pt;}
.xf_c00198{left:456.312253pt;}
.x20_c00198{left:458.472653pt;}
.x1a_c00198{left:466.207853pt;}
.x64_c00198{left:467.334253pt;}
.x3c_c00198{left:473.516253pt;}
.x4f_c00198{left:475.144253pt;}
.x2b_c00198{left:476.283853pt;}
.x6d_c00198{left:478.677453pt;}
.x6e_c00198{left:484.692253pt;}
.x10_c00198{left:486.065053pt;}
.x3d_c00198{left:494.425053pt;}
.x65_c00198{left:495.868253pt;}
.x3e_c00198{left:505.385453pt;}
.x59_c00198{left:507.902253pt;}
.x51_c00198{left:508.799853pt;}
.x11_c00198{left:514.110653pt;}
.x2c_c00198{left:515.844253pt;}
.x21_c00198{left:524.741053pt;}
.x68_c00198{left:525.964253pt;}
.x55_c00198{left:533.475053pt;}
.x34_c00198{left:534.878653pt;}
.x22_c00198{left:536.497853pt;}
.x5f_c00198{left:543.573053pt;}
.x2d_c00198{left:545.324253pt;}
.x77_c00198{left:547.519853pt;}
.x1b_c00198{left:554.524653pt;}
.x3f_c00198{left:564.341053pt;}
.x2e_c00198{left:573.352253pt;}
.x71_c00198{left:574.698653pt;}
.x1c_c00198{left:584.048653pt;}
.x2_c00198{left:586.156253pt;}
.x50_c00198{left:592.954253pt;}
.x72_c00198{left:602.497853pt;}
.x5a_c00198{left:603.465853pt;}
.x60_c00198{left:604.530653pt;}
.x40_c00198{left:611.751053pt;}
.x41_c00198{left:616.313853pt;}
.x42_c00198{left:618.786653pt;}
.x7a_c00198{left:621.681853pt;}
.x5b_c00198{left:623.873053pt;}
.x4b_c00198{left:625.448253pt;}
.x43_c00198{left:632.743453pt;}
.x48_c00198{left:638.921053pt;}
.x4c_c00198{left:642.058253pt;}
.x4d_c00198{left:655.619053pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1b5a2ef5244c68f134dabb8e.woff2')format("woff");}.ff1_c00199{font-family:ff1_c00199;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00199;src:url('chunks/assets/font_561ebbaf498fd6bf444feddf.woff2')format("woff");}.ff2_c00199{font-family:ff2_c00199;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00199;src:url('chunks/assets/font_0cf16679b11abe5c2e598162.woff2')format("woff");}.ff3_c00199{font-family:ff3_c00199;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m91_c00199{transform:matrix(0.087542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087542,0.000000,0.000000,0.250000,0,0);}
.m32_c00199{transform:matrix(0.154275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154275,0.000000,0.000000,0.250000,0,0);}
.me_c00199{transform:matrix(0.164634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164634,0.000000,0.000000,0.250000,0,0);}
.md_c00199{transform:matrix(0.178862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178862,0.000000,0.000000,0.250000,0,0);}
.mce_c00199{transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);}
.m45_c00199{transform:matrix(0.209459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209459,0.000000,0.000000,0.250000,0,0);}
.mca_c00199{transform:matrix(0.219533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219533,0.000000,0.000000,0.250000,0,0);}
.mcf_c00199{transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);}
.m88_c00199{transform:matrix(0.234209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234209,0.000000,0.000000,0.250000,0,0);}
.m1_c00199{transform:matrix(0.237687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237687,0.000000,0.000000,0.250000,0,0);}
.mcb_c00199{transform:matrix(0.238424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238424,0.000000,0.000000,0.250000,0,0);}
.m50_c00199{transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);}
.m36_c00199{transform:matrix(0.242253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242253,0.000000,0.000000,0.250000,0,0);}
.mbe_c00199{transform:matrix(0.246976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246976,0.000000,0.000000,0.250000,0,0);}
.m9_c00199{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.mba_c00199{transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);}
.m40_c00199{transform:matrix(0.250960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250960,0.000000,0.000000,0.250000,0,0);}
.ma_c00199{transform:matrix(0.251415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251415,0.000000,0.000000,0.250000,0,0);}
.m34_c00199{transform:matrix(0.252090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252090,0.000000,0.000000,0.250000,0,0);}
.m19_c00199{transform:matrix(0.252205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252205,0.000000,0.000000,0.250000,0,0);}
.m23_c00199{transform:matrix(0.253753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253753,0.000000,0.000000,0.250000,0,0);}
.mb5_c00199{transform:matrix(0.254158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254158,0.000000,0.000000,0.250000,0,0);}
.m83_c00199{transform:matrix(0.254597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254597,0.000000,0.000000,0.250000,0,0);}
.ma6_c00199{transform:matrix(0.254680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254680,0.000000,0.000000,0.250000,0,0);}
.m49_c00199{transform:matrix(0.254830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254830,0.000000,0.000000,0.250000,0,0);}
.ma3_c00199{transform:matrix(0.255172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255172,0.000000,0.000000,0.250000,0,0);}
.m70_c00199{transform:matrix(0.255443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255443,0.000000,0.000000,0.250000,0,0);}
.m58_c00199{transform:matrix(0.255731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255731,0.000000,0.000000,0.250000,0,0);}
.maf_c00199{transform:matrix(0.256704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256704,0.000000,0.000000,0.250000,0,0);}
.m8f_c00199{transform:matrix(0.256772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256772,0.000000,0.000000,0.250000,0,0);}
.m9f_c00199{transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);}
.mad_c00199{transform:matrix(0.257488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257488,0.000000,0.000000,0.250000,0,0);}
.m5_c00199{transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);}
.m4b_c00199{transform:matrix(0.258139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258139,0.000000,0.000000,0.250000,0,0);}
.mb4_c00199{transform:matrix(0.258289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258289,0.000000,0.000000,0.250000,0,0);}
.m55_c00199{transform:matrix(0.258596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258596,0.000000,0.000000,0.250000,0,0);}
.m59_c00199{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m17_c00199{transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);}
.m65_c00199{transform:matrix(0.260756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260756,0.000000,0.000000,0.250000,0,0);}
.m25_c00199{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m57_c00199{transform:matrix(0.261350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261350,0.000000,0.000000,0.250000,0,0);}
.mb3_c00199{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.m85_c00199{transform:matrix(0.261735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261735,0.000000,0.000000,0.250000,0,0);}
.m2_c00199{transform:matrix(0.262354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262354,0.000000,0.000000,0.250000,0,0);}
.m7c_c00199{transform:matrix(0.263017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263017,0.000000,0.000000,0.250000,0,0);}
.mc2_c00199{transform:matrix(0.263128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263128,0.000000,0.000000,0.250000,0,0);}
.m63_c00199{transform:matrix(0.263196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263196,0.000000,0.000000,0.250000,0,0);}
.mc_c00199{transform:matrix(0.263271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263271,0.000000,0.000000,0.250000,0,0);}
.m3_c00199{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m79_c00199{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.md2_c00199{transform:matrix(0.264886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264886,0.000000,0.000000,0.250000,0,0);}
.m71_c00199{transform:matrix(0.265042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265042,0.000000,0.000000,0.250000,0,0);}
.mcc_c00199{transform:matrix(0.265518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265518,0.000000,0.000000,0.250000,0,0);}
.m6d_c00199{transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);}
.m31_c00199{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.ma2_c00199{transform:matrix(0.266295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266295,0.000000,0.000000,0.250000,0,0);}
.m29_c00199{transform:matrix(0.266381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266381,0.000000,0.000000,0.250000,0,0);}
.mae_c00199{transform:matrix(0.266853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266853,0.000000,0.000000,0.250000,0,0);}
.m2d_c00199{transform:matrix(0.267040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267040,0.000000,0.000000,0.250000,0,0);}
.m5e_c00199{transform:matrix(0.267349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267349,0.000000,0.000000,0.250000,0,0);}
.m80_c00199{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m7b_c00199{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.m37_c00199{transform:matrix(0.268624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268624,0.000000,0.000000,0.250000,0,0);}
.m7f_c00199{transform:matrix(0.269269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269269,0.000000,0.000000,0.250000,0,0);}
.md3_c00199{transform:matrix(0.269646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269646,0.000000,0.000000,0.250000,0,0);}
.mc7_c00199{transform:matrix(0.270236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270236,0.000000,0.000000,0.250000,0,0);}
.m84_c00199{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.mc3_c00199{transform:matrix(0.271124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271124,0.000000,0.000000,0.250000,0,0);}
.m7e_c00199{transform:matrix(0.272825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272825,0.000000,0.000000,0.250000,0,0);}
.m5a_c00199{transform:matrix(0.273258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273258,0.000000,0.000000,0.250000,0,0);}
.m95_c00199{transform:matrix(0.274132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274132,0.000000,0.000000,0.250000,0,0);}
.m74_c00199{transform:matrix(0.274278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274278,0.000000,0.000000,0.250000,0,0);}
.m0_c00199{transform:matrix(0.274578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274578,0.000000,0.000000,0.250000,0,0);}
.m4f_c00199{transform:matrix(0.275949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275949,0.000000,0.000000,0.250000,0,0);}
.m9c_c00199{transform:matrix(0.276068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276068,0.000000,0.000000,0.250000,0,0);}
.m61_c00199{transform:matrix(0.276926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276926,0.000000,0.000000,0.250000,0,0);}
.m62_c00199{transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);}
.ma9_c00199{transform:matrix(0.277164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277164,0.000000,0.000000,0.250000,0,0);}
.m10_c00199{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m6c_c00199{transform:matrix(0.277360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277360,0.000000,0.000000,0.250000,0,0);}
.m9b_c00199{transform:matrix(0.277802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277802,0.000000,0.000000,0.250000,0,0);}
.m69_c00199{transform:matrix(0.278529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278529,0.000000,0.000000,0.250000,0,0);}
.m22_c00199{transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);}
.m11_c00199{transform:matrix(0.279648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279648,0.000000,0.000000,0.250000,0,0);}
.m8a_c00199{transform:matrix(0.280356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280356,0.000000,0.000000,0.250000,0,0);}
.m6_c00199{transform:matrix(0.280675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280675,0.000000,0.000000,0.250000,0,0);}
.m46_c00199{transform:matrix(0.281184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281184,0.000000,0.000000,0.250000,0,0);}
.m6a_c00199{transform:matrix(0.281417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281417,0.000000,0.000000,0.250000,0,0);}
.mbf_c00199{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.m3f_c00199{transform:matrix(0.282286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282286,0.000000,0.000000,0.250000,0,0);}
.m1c_c00199{transform:matrix(0.282334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282334,0.000000,0.000000,0.250000,0,0);}
.mc9_c00199{transform:matrix(0.282371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282371,0.000000,0.000000,0.250000,0,0);}
.m77_c00199{transform:matrix(0.282518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282518,0.000000,0.000000,0.250000,0,0);}
.m76_c00199{transform:matrix(0.282564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282564,0.000000,0.000000,0.250000,0,0);}
.m5d_c00199{transform:matrix(0.283266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283266,0.000000,0.000000,0.250000,0,0);}
.m44_c00199{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m30_c00199{transform:matrix(0.283914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283914,0.000000,0.000000,0.250000,0,0);}
.m51_c00199{transform:matrix(0.284153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284153,0.000000,0.000000,0.250000,0,0);}
.m1b_c00199{transform:matrix(0.284537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284537,0.000000,0.000000,0.250000,0,0);}
.mbc_c00199{transform:matrix(0.284924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284924,0.000000,0.000000,0.250000,0,0);}
.mb8_c00199{transform:matrix(0.286608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286608,0.000000,0.000000,0.250000,0,0);}
.m72_c00199{transform:matrix(0.286614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286614,0.000000,0.000000,0.250000,0,0);}
.m9e_c00199{transform:matrix(0.286929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286929,0.000000,0.000000,0.250000,0,0);}
.mc6_c00199{transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);}
.m8b_c00199{transform:matrix(0.287458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287458,0.000000,0.000000,0.250000,0,0);}
.m1e_c00199{transform:matrix(0.287915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287915,0.000000,0.000000,0.250000,0,0);}
.mf_c00199{transform:matrix(0.289075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289075,0.000000,0.000000,0.250000,0,0);}
.m33_c00199{transform:matrix(0.289203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289203,0.000000,0.000000,0.250000,0,0);}
.m39_c00199{transform:matrix(0.289213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289213,0.000000,0.000000,0.250000,0,0);}
.mac_c00199{transform:matrix(0.290884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290884,0.000000,0.000000,0.250000,0,0);}
.m5b_c00199{transform:matrix(0.291292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291292,0.000000,0.000000,0.250000,0,0);}
.m78_c00199{transform:matrix(0.291525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291525,0.000000,0.000000,0.250000,0,0);}
.m2c_c00199{transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);}
.m94_c00199{transform:matrix(0.292392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292392,0.000000,0.000000,0.250000,0,0);}
.maa_c00199{transform:matrix(0.293547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293547,0.000000,0.000000,0.250000,0,0);}
.m14_c00199{transform:matrix(0.294033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294033,0.000000,0.000000,0.250000,0,0);}
.m98_c00199{transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);}
.mb1_c00199{transform:matrix(0.295700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295700,0.000000,0.000000,0.250000,0,0);}
.mab_c00199{transform:matrix(0.296898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296898,0.000000,0.000000,0.250000,0,0);}
.m9a_c00199{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m27_c00199{transform:matrix(0.297217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297217,0.000000,0.000000,0.250000,0,0);}
.mb6_c00199{transform:matrix(0.297306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297306,0.000000,0.000000,0.250000,0,0);}
.m75_c00199{transform:matrix(0.297802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297802,0.000000,0.000000,0.250000,0,0);}
.m60_c00199{transform:matrix(0.298233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298233,0.000000,0.000000,0.250000,0,0);}
.mcd_c00199{transform:matrix(0.299520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299520,0.000000,0.000000,0.250000,0,0);}
.m3e_c00199{transform:matrix(0.300146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300146,0.000000,0.000000,0.250000,0,0);}
.m7a_c00199{transform:matrix(0.301061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301061,0.000000,0.000000,0.250000,0,0);}
.m86_c00199{transform:matrix(0.301335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301335,0.000000,0.000000,0.250000,0,0);}
.md1_c00199{transform:matrix(0.301409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301409,0.000000,0.000000,0.250000,0,0);}
.m81_c00199{transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);}
.m8e_c00199{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m8c_c00199{transform:matrix(0.302633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302633,0.000000,0.000000,0.250000,0,0);}
.ma4_c00199{transform:matrix(0.303125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303125,0.000000,0.000000,0.250000,0,0);}
.m64_c00199{transform:matrix(0.303823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303823,0.000000,0.000000,0.250000,0,0);}
.m96_c00199{transform:matrix(0.304642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304642,0.000000,0.000000,0.250000,0,0);}
.mb7_c00199{transform:matrix(0.304946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304946,0.000000,0.000000,0.250000,0,0);}
.m43_c00199{transform:matrix(0.305330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305330,0.000000,0.000000,0.250000,0,0);}
.m18_c00199{transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);}
.m92_c00199{transform:matrix(0.306715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306715,0.000000,0.000000,0.250000,0,0);}
.m41_c00199{transform:matrix(0.307020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307020,0.000000,0.000000,0.250000,0,0);}
.m9d_c00199{transform:matrix(0.307242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307242,0.000000,0.000000,0.250000,0,0);}
.m26_c00199{transform:matrix(0.308319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308319,0.000000,0.000000,0.250000,0,0);}
.m6f_c00199{transform:matrix(0.308869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308869,0.000000,0.000000,0.250000,0,0);}
.mb0_c00199{transform:matrix(0.309270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309270,0.000000,0.000000,0.250000,0,0);}
.mb2_c00199{transform:matrix(0.309627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309627,0.000000,0.000000,0.250000,0,0);}
.m7d_c00199{transform:matrix(0.310877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310877,0.000000,0.000000,0.250000,0,0);}
.m28_c00199{transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);}
.m52_c00199{transform:matrix(0.311154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311154,0.000000,0.000000,0.250000,0,0);}
.m35_c00199{transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);}
.m53_c00199{transform:matrix(0.313060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313060,0.000000,0.000000,0.250000,0,0);}
.m2a_c00199{transform:matrix(0.313182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313182,0.000000,0.000000,0.250000,0,0);}
.m20_c00199{transform:matrix(0.313415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313415,0.000000,0.000000,0.250000,0,0);}
.m3d_c00199{transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);}
.m2b_c00199{transform:matrix(0.315202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315202,0.000000,0.000000,0.250000,0,0);}
.ma1_c00199{transform:matrix(0.315917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315917,0.000000,0.000000,0.250000,0,0);}
.ma0_c00199{transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);}
.ma5_c00199{transform:matrix(0.316949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316949,0.000000,0.000000,0.250000,0,0);}
.mb9_c00199{transform:matrix(0.319184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319184,0.000000,0.000000,0.250000,0,0);}
.mc8_c00199{transform:matrix(0.320896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320896,0.000000,0.000000,0.250000,0,0);}
.md0_c00199{transform:matrix(0.322636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322636,0.000000,0.000000,0.250000,0,0);}
.m68_c00199{transform:matrix(0.323416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323416,0.000000,0.000000,0.250000,0,0);}
.m4d_c00199{transform:matrix(0.323503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323503,0.000000,0.000000,0.250000,0,0);}
.m6e_c00199{transform:matrix(0.323907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323907,0.000000,0.000000,0.250000,0,0);}
.m24_c00199{transform:matrix(0.324458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324458,0.000000,0.000000,0.250000,0,0);}
.m5f_c00199{transform:matrix(0.324856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324856,0.000000,0.000000,0.250000,0,0);}
.m6b_c00199{transform:matrix(0.325136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325136,0.000000,0.000000,0.250000,0,0);}
.m4_c00199{transform:matrix(0.326890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326890,0.000000,0.000000,0.250000,0,0);}
.m48_c00199{transform:matrix(0.327051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327051,0.000000,0.000000,0.250000,0,0);}
.m56_c00199{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.mbb_c00199{transform:matrix(0.328552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328552,0.000000,0.000000,0.250000,0,0);}
.m89_c00199{transform:matrix(0.328825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328825,0.000000,0.000000,0.250000,0,0);}
.m99_c00199{transform:matrix(0.329080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329080,0.000000,0.000000,0.250000,0,0);}
.m90_c00199{transform:matrix(0.329817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329817,0.000000,0.000000,0.250000,0,0);}
.m73_c00199{transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);}
.mc4_c00199{transform:matrix(0.331020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331020,0.000000,0.000000,0.250000,0,0);}
.m4e_c00199{transform:matrix(0.331496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331496,0.000000,0.000000,0.250000,0,0);}
.m66_c00199{transform:matrix(0.331654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331654,0.000000,0.000000,0.250000,0,0);}
.m5c_c00199{transform:matrix(0.333215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333215,0.000000,0.000000,0.250000,0,0);}
.m1f_c00199{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m12_c00199{transform:matrix(0.335004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335004,0.000000,0.000000,0.250000,0,0);}
.ma8_c00199{transform:matrix(0.336403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336403,0.000000,0.000000,0.250000,0,0);}
.m1d_c00199{transform:matrix(0.336825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336825,0.000000,0.000000,0.250000,0,0);}
.m54_c00199{transform:matrix(0.336969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336969,0.000000,0.000000,0.250000,0,0);}
.m1a_c00199{transform:matrix(0.337438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337438,0.000000,0.000000,0.250000,0,0);}
.m2f_c00199{transform:matrix(0.337511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337511,0.000000,0.000000,0.250000,0,0);}
.m8d_c00199{transform:matrix(0.338285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338285,0.000000,0.000000,0.250000,0,0);}
.m15_c00199{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m8_c00199{transform:matrix(0.341416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341416,0.000000,0.000000,0.250000,0,0);}
.m7_c00199{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.m21_c00199{transform:matrix(0.343551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343551,0.000000,0.000000,0.250000,0,0);}
.m3c_c00199{transform:matrix(0.344607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344607,0.000000,0.000000,0.250000,0,0);}
.m3a_c00199{transform:matrix(0.347013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347013,0.000000,0.000000,0.250000,0,0);}
.m3b_c00199{transform:matrix(0.347629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347629,0.000000,0.000000,0.250000,0,0);}
.mc0_c00199{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m67_c00199{transform:matrix(0.350956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350956,0.000000,0.000000,0.250000,0,0);}
.m38_c00199{transform:matrix(0.352028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352028,0.000000,0.000000,0.250000,0,0);}
.mc5_c00199{transform:matrix(0.352464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352464,0.000000,0.000000,0.250000,0,0);}
.m47_c00199{transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);}
.mc1_c00199{transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);}
.m4c_c00199{transform:matrix(0.358658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358658,0.000000,0.000000,0.250000,0,0);}
.m2e_c00199{transform:matrix(0.358888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358888,0.000000,0.000000,0.250000,0,0);}
.m42_c00199{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);}
.m13_c00199{transform:matrix(0.361878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361878,0.000000,0.000000,0.250000,0,0);}
.m82_c00199{transform:matrix(0.368363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368363,0.000000,0.000000,0.250000,0,0);}
.m16_c00199{transform:matrix(0.374714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374714,0.000000,0.000000,0.250000,0,0);}
.mbd_c00199{transform:matrix(0.378961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378961,0.000000,0.000000,0.250000,0,0);}
.m93_c00199{transform:matrix(0.381065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381065,0.000000,0.000000,0.250000,0,0);}
.mb_c00199{transform:matrix(0.385852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385852,0.000000,0.000000,0.250000,0,0);}
.ma7_c00199{transform:matrix(0.396179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396179,0.000000,0.000000,0.250000,0,0);}
.m97_c00199{transform:matrix(0.404579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404579,0.000000,0.000000,0.250000,0,0);}
.m4a_c00199{transform:matrix(0.409469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409469,0.000000,0.000000,0.250000,0,0);}
.m87_c00199{transform:matrix(0.430633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430633,0.000000,0.000000,0.250000,0,0);}
.v0_c00199{vertical-align:0.000000px;}
.v2_c00199{vertical-align:1.405800px;}
.v3_c00199{vertical-align:5.714280px;}
.v1_c00199{vertical-align:7.108200px;}
.ls6_c00199{letter-spacing:-3.014550px;}
.lsc_c00199{letter-spacing:-2.744280px;}
.lsb_c00199{letter-spacing:-2.399285px;}
.lsf_c00199{letter-spacing:-2.375762px;}
.ls11_c00199{letter-spacing:-1.599523px;}
.ls7_c00199{letter-spacing:0.000000px;}
.ls13_c00199{letter-spacing:1.082030px;}
.lsa_c00199{letter-spacing:1.685772px;}
.lsd_c00199{letter-spacing:2.509056px;}
.ls9_c00199{letter-spacing:2.712917px;}
.ls4_c00199{letter-spacing:3.112798px;}
.ls12_c00199{letter-spacing:3.484810px;}
.ls10_c00199{letter-spacing:3.544200px;}
.ls14_c00199{letter-spacing:3.912559px;}
.ls3_c00199{letter-spacing:3.920400px;}
.ls5_c00199{letter-spacing:4.306500px;}
.ls1_c00199{letter-spacing:10.566864px;}
.ls0_c00199{letter-spacing:17.247384px;}
.ls2_c00199{letter-spacing:37.992240px;}
.ls15_c00199{letter-spacing:49.896198px;}
.lse_c00199{letter-spacing:52.747398px;}
.ls8_c00199{letter-spacing:58.449798px;}
.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;}
}
.ws6_c00199{word-spacing:-23.522400px;}
.ws5_c00199{word-spacing:-23.514559px;}
.ws3_c00199{word-spacing:-22.111056px;}
.ws0_c00199{word-spacing:-19.602000px;}
.ws1_c00199{word-spacing:-17.202715px;}
.ws7_c00199{word-spacing:-3.998808px;}
.wsa_c00199{word-spacing:0.000000px;}
.ws2_c00199{word-spacing:2.038608px;}
.ws8_c00199{word-spacing:2.352240px;}
.ws4_c00199{word-spacing:3.606768px;}
.ws9_c00199{word-spacing:6.193836px;}
._12_c00199{margin-left:-13.172544px;}
._f_c00199{margin-left:-2.979504px;}
._e_c00199{margin-left:-1.254528px;}
._11_c00199{width:2.289910px;}
._15_c00199{width:3.700858px;}
._8_c00199{width:4.939704px;}
._4_c00199{width:7.135920px;}
._0_c00199{width:8.703288px;}
._6_c00199{width:10.115028px;}
._2_c00199{width:12.388464px;}
._b_c00199{width:14.035428px;}
._d_c00199{width:17.955036px;}
._9_c00199{width:20.856528px;}
._5_c00199{width:23.207976px;}
._7_c00199{width:26.926020px;}
._10_c00199{width:29.638224px;}
._13_c00199{width:31.049568px;}
._a_c00199{width:32.051448px;}
._1_c00199{width:34.029072px;}
._14_c00199{width:36.851760px;}
._c_c00199{width:39.047184px;}
._3_c00199{width:45.476640px;}
.fc0_c00199{color:transparent;}
.fs7_c00199{font-size:38.610000px;}
.fs6_c00199{font-size:40.392000px;}
.fs8_c00199{font-size:49.896198px;}
.fs3_c00199{font-size:52.747398px;}
.fs2_c00199{font-size:58.449798px;}
.fs5_c00199{font-size:69.696198px;}
.fs4_c00199{font-size:70.884000px;}
.fs1_c00199{font-size:78.408000px;}
.fs0_c00199{font-size:86.130000px;}
.y0_c00199{bottom:0.000000px;}
.y1_c00199{bottom:76.500000px;}
.y1c_c00199{bottom:149.956335px;}
.y1b_c00199{bottom:180.601785px;}
.y1a_c00199{bottom:213.039135px;}
.y19_c00199{bottom:245.466585px;}
.y18_c00199{bottom:277.547535px;}
.y17_c00199{bottom:308.554335px;}
.y16_c00199{bottom:340.981785px;}
.y15_c00199{bottom:340.988517px;}
.y14_c00199{bottom:405.851535px;}
.y13_c00199{bottom:437.927535px;}
.y12_c00199{bottom:469.998585px;}
.y10_c00199{bottom:498.159135px;}
.y11_c00199{bottom:500.297535px;}
.yf_c00199{bottom:502.074585px;}
.ye_c00199{bottom:534.150585px;}
.yd_c00199{bottom:565.875135px;}
.yc_c00199{bottom:598.663935px;}
.yb_c00199{bottom:632.160585px;}
.ya_c00199{bottom:697.030335px;}
.y9_c00199{bottom:729.819135px;}
.y8_c00199{bottom:762.607935px;}
.y7_c00199{bottom:794.683935px;}
.y6_c00199{bottom:826.754985px;}
.y5_c00199{bottom:859.187385px;}
.y4_c00199{bottom:891.976185px;}
.y3_c00199{bottom:924.408585px;}
.y2_c00199{bottom:1073.740185px;}
.h9_c00199{height:33.230868px;}
.h5_c00199{height:35.129767px;}
.h4_c00199{height:38.927565px;}
.h8_c00199{height:49.235794px;}
.h6_c00199{height:69.568770px;}
.h7_c00199{height:72.690957px;}
.h3_c00199{height:76.953164px;}
.h2_c00199{height:84.531885px;}
.h1_c00199{height:1110.000000px;}
.h0_c00199{height:1263.000000px;}
.w1_c00199{width:733.500000px;}
.w0_c00199{width:892.500000px;}
.x0_c00199{left:0.000000px;}
.x4_c00199{left:60.146985px;}
.x3b_c00199{left:61.265685px;}
.x6a_c00199{left:62.508135px;}
.x1_c00199{left:79.500000px;}
.x60_c00199{left:84.712251px;}
.x6b_c00199{left:88.733235px;}
.x13_c00199{left:93.905985px;}
.x51_c00199{left:103.721835px;}
.x35_c00199{left:105.315735px;}
.x14_c00199{left:114.770235px;}
.x46_c00199{left:116.091885px;}
.x4f_c00199{left:118.457985px;}
.x5a_c00199{left:126.699735px;}
.x2a_c00199{left:138.366885px;}
.x45_c00199{left:140.173635px;}
.x15_c00199{left:148.301535px;}
.x36_c00199{left:149.831085px;}
.x5_c00199{left:159.478635px;}
.x2b_c00199{left:170.888385px;}
.x68_c00199{left:172.284285px;}
.x3c_c00199{left:180.659685px;}
.x49_c00199{left:181.748685px;}
.x37_c00199{left:182.916885px;}
.x6_c00199{left:191.990235px;}
.x63_c00199{left:194.044485px;}
.x56_c00199{left:195.425535px;}
.x41_c00199{left:204.266235px;}
.x16_c00199{left:215.077035px;}
.x5e_c00199{left:216.116535px;}
.x20_c00199{left:226.402635px;}
.x57_c00199{left:229.372635px;}
.x52_c00199{left:236.302635px;}
.x7_c00199{left:237.535185px;}
.x17_c00199{left:247.648035px;}
.x64_c00199{left:249.979485px;}
.x3d_c00199{left:259.622085px;}
.x47_c00199{left:269.819085px;}
.x5c_c00199{left:271.358535px;}
.x21_c00199{left:280.030935px;}
.x8_c00199{left:281.704035px;}
.x18_c00199{left:292.410885px;}
.x61_c00199{left:302.840535px;}
.x3e_c00199{left:303.979035px;}
.x48_c00199{left:314.517585px;}
.x5d_c00199{left:315.873885px;}
.x19_c00199{left:325.516485px;}
.x3f_c00199{left:335.738235px;}
.x42_c00199{left:337.639035px;}
.x2c_c00199{left:347.618235px;}
.x22_c00199{left:348.642885px;}
.x4a_c00199{left:357.835035px;}
.x53_c00199{left:359.414085px;}
.x65_c00199{left:369.200235px;}
.x1a_c00199{left:370.417935px;}
.x2d_c00199{left:380.441685px;}
.x23_c00199{left:381.446535px;}
.x9_c00199{left:392.173185px;}
.x2e_c00199{left:402.355335px;}
.x24_c00199{left:413.562135px;}
.x54_c00199{left:414.646185px;}
.xa_c00199{left:423.368085px;}
.x2f_c00199{left:424.432335px;}
.x5b_c00199{left:427.699335px;}
.x50_c00199{left:435.342135px;}
.x66_c00199{left:436.376685px;}
.x30_c00199{left:446.375685px;}
.x38_c00199{left:447.444885px;}
.x31_c00199{left:457.389435px;}
.x25_c00199{left:458.458635px;}
.x4b_c00199{left:467.606235px;}
.x1b_c00199{left:469.457535px;}
.x39_c00199{left:480.134685px;}
.x26_c00199{left:490.722735px;}
.xb_c00199{left:501.974085px;}
.x69_c00199{left:504.721335px;}
.x43_c00199{left:512.675985px;}
.xc_c00199{left:523.234335px;}
.x55_c00199{left:524.749035px;}
.x32_c00199{left:534.545085px;}
.x1c_c00199{left:545.093535px;}
.x27_c00199{left:546.177585px;}
.xd_c00199{left:556.300335px;}
.x40_c00199{left:559.324785px;}
.x67_c00199{left:566.329035px;}
.x1d_c00199{left:567.878385px;}
.x4c_c00199{left:577.021035px;}
.xe_c00199{left:578.600085px;}
.x28_c00199{left:589.663335px;}
.x29_c00199{left:601.038435px;}
.x1e_c00199{left:603.518385px;}
.xf_c00199{left:610.849335px;}
.x44_c00199{left:612.710535px;}
.x33_c00199{left:623.026335px;}
.x5f_c00199{left:625.080585px;}
.x1f_c00199{left:634.198485px;}
.x58_c00199{left:636.440835px;}
.x2_c00199{left:645.167685px;}
.x10_c00199{left:655.399335px;}
.x59_c00199{left:657.047685px;}
.x3a_c00199{left:666.289335px;}
.x3_c00199{left:667.665435px;}
.x62_c00199{left:676.456635px;}
.x4d_c00199{left:677.476335px;}
.x11_c00199{left:678.599985px;}
.x34_c00199{left:688.693035px;}
.x4e_c00199{left:699.776085px;}
.x12_c00199{left:711.032385px;}
@media print{
.v0_c00199{vertical-align:0.000000pt;}
.v2_c00199{vertical-align:1.249600pt;}
.v3_c00199{vertical-align:5.079360pt;}
.v1_c00199{vertical-align:6.318400pt;}
.ls6_c00199{letter-spacing:-2.679600pt;}
.lsc_c00199{letter-spacing:-2.439360pt;}
.lsb_c00199{letter-spacing:-2.132698pt;}
.lsf_c00199{letter-spacing:-2.111789pt;}
.ls11_c00199{letter-spacing:-1.421798pt;}
.ls7_c00199{letter-spacing:0.000000pt;}
.ls13_c00199{letter-spacing:0.961805pt;}
.lsa_c00199{letter-spacing:1.498464pt;}
.lsd_c00199{letter-spacing:2.230272pt;}
.ls9_c00199{letter-spacing:2.411482pt;}
.ls4_c00199{letter-spacing:2.766931pt;}
.ls12_c00199{letter-spacing:3.097609pt;}
.ls10_c00199{letter-spacing:3.150400pt;}
.ls14_c00199{letter-spacing:3.477830pt;}
.ls3_c00199{letter-spacing:3.484800pt;}
.ls5_c00199{letter-spacing:3.828000pt;}
.ls1_c00199{letter-spacing:9.392768pt;}
.ls0_c00199{letter-spacing:15.331008pt;}
.ls2_c00199{letter-spacing:33.770880pt;}
.ls15_c00199{letter-spacing:44.352176pt;}
.lse_c00199{letter-spacing:46.886576pt;}
.ls8_c00199{letter-spacing:51.955376pt;}
.ws6_c00199{word-spacing:-20.908800pt;}
.ws5_c00199{word-spacing:-20.901830pt;}
.ws3_c00199{word-spacing:-19.654272pt;}
.ws0_c00199{word-spacing:-17.424000pt;}
.ws1_c00199{word-spacing:-15.291302pt;}
.ws7_c00199{word-spacing:-3.554496pt;}
.wsa_c00199{word-spacing:0.000000pt;}
.ws2_c00199{word-spacing:1.812096pt;}
.ws8_c00199{word-spacing:2.090880pt;}
.ws4_c00199{word-spacing:3.206016pt;}
.ws9_c00199{word-spacing:5.505632pt;}
._12_c00199{margin-left:-11.708928pt;}
._f_c00199{margin-left:-2.648448pt;}
._e_c00199{margin-left:-1.115136pt;}
._11_c00199{width:2.035475pt;}
._15_c00199{width:3.289651pt;}
._8_c00199{width:4.390848pt;}
._4_c00199{width:6.343040pt;}
._0_c00199{width:7.736256pt;}
._6_c00199{width:8.991136pt;}
._2_c00199{width:11.011968pt;}
._b_c00199{width:12.475936pt;}
._d_c00199{width:15.960032pt;}
._9_c00199{width:18.539136pt;}
._5_c00199{width:20.629312pt;}
._7_c00199{width:23.934240pt;}
._10_c00199{width:26.345088pt;}
._13_c00199{width:27.599616pt;}
._a_c00199{width:28.490176pt;}
._1_c00199{width:30.248064pt;}
._14_c00199{width:32.757120pt;}
._c_c00199{width:34.708608pt;}
._3_c00199{width:40.423680pt;}
.fs7_c00199{font-size:34.320000pt;}
.fs6_c00199{font-size:35.904000pt;}
.fs8_c00199{font-size:44.352176pt;}
.fs3_c00199{font-size:46.886576pt;}
.fs2_c00199{font-size:51.955376pt;}
.fs5_c00199{font-size:61.952176pt;}
.fs4_c00199{font-size:63.008000pt;}
.fs1_c00199{font-size:69.696000pt;}
.fs0_c00199{font-size:76.560000pt;}
.y0_c00199{bottom:0.000000pt;}
.y1_c00199{bottom:68.000000pt;}
.y1c_c00199{bottom:133.294520pt;}
.y1b_c00199{bottom:160.534920pt;}
.y1a_c00199{bottom:189.368120pt;}
.y19_c00199{bottom:218.192520pt;}
.y18_c00199{bottom:246.708920pt;}
.y17_c00199{bottom:274.270520pt;}
.y16_c00199{bottom:303.094920pt;}
.y15_c00199{bottom:303.100904pt;}
.y14_c00199{bottom:360.756920pt;}
.y13_c00199{bottom:389.268920pt;}
.y12_c00199{bottom:417.776520pt;}
.y10_c00199{bottom:442.808120pt;}
.y11_c00199{bottom:444.708920pt;}
.yf_c00199{bottom:446.288520pt;}
.ye_c00199{bottom:474.800520pt;}
.yd_c00199{bottom:503.000120pt;}
.yc_c00199{bottom:532.145720pt;}
.yb_c00199{bottom:561.920520pt;}
.ya_c00199{bottom:619.582520pt;}
.y9_c00199{bottom:648.728120pt;}
.y8_c00199{bottom:677.873720pt;}
.y7_c00199{bottom:706.385720pt;}
.y6_c00199{bottom:734.893320pt;}
.y5_c00199{bottom:763.722120pt;}
.y4_c00199{bottom:792.867720pt;}
.y3_c00199{bottom:821.696520pt;}
.y2_c00199{bottom:954.435720pt;}
.h9_c00199{height:29.538549pt;}
.h5_c00199{height:31.226460pt;}
.h4_c00199{height:34.602280pt;}
.h8_c00199{height:43.765150pt;}
.h6_c00199{height:61.838906pt;}
.h7_c00199{height:64.614184pt;}
.h3_c00199{height:68.402813pt;}
.h2_c00199{height:75.139453pt;}
.h1_c00199{height:986.666667pt;}
.h0_c00199{height:1122.666667pt;}
.w1_c00199{width:652.000000pt;}
.w0_c00199{width:793.333333pt;}
.x0_c00199{left:0.000000pt;}
.x4_c00199{left:53.463987pt;}
.x3b_c00199{left:54.458387pt;}
.x6a_c00199{left:55.562787pt;}
.x1_c00199{left:70.666667pt;}
.x60_c00199{left:75.299779pt;}
.x6b_c00199{left:78.873987pt;}
.x13_c00199{left:83.471987pt;}
.x51_c00199{left:92.197187pt;}
.x35_c00199{left:93.613987pt;}
.x14_c00199{left:102.017987pt;}
.x46_c00199{left:103.192787pt;}
.x4f_c00199{left:105.295987pt;}
.x5a_c00199{left:112.621987pt;}
.x2a_c00199{left:122.992787pt;}
.x45_c00199{left:124.598787pt;}
.x15_c00199{left:131.823587pt;}
.x36_c00199{left:133.183187pt;}
.x5_c00199{left:141.758787pt;}
.x2b_c00199{left:151.900787pt;}
.x68_c00199{left:153.141587pt;}
.x3c_c00199{left:160.586387pt;}
.x49_c00199{left:161.554387pt;}
.x37_c00199{left:162.592787pt;}
.x6_c00199{left:170.657987pt;}
.x63_c00199{left:172.483987pt;}
.x56_c00199{left:173.711587pt;}
.x41_c00199{left:181.569987pt;}
.x16_c00199{left:191.179587pt;}
.x5e_c00199{left:192.103587pt;}
.x20_c00199{left:201.246787pt;}
.x57_c00199{left:203.886787pt;}
.x52_c00199{left:210.046787pt;}
.x7_c00199{left:211.142387pt;}
.x17_c00199{left:220.131587pt;}
.x64_c00199{left:222.203987pt;}
.x3d_c00199{left:230.775187pt;}
.x47_c00199{left:239.839187pt;}
.x5c_c00199{left:241.207587pt;}
.x21_c00199{left:248.916387pt;}
.x8_c00199{left:250.403587pt;}
.x18_c00199{left:259.920787pt;}
.x61_c00199{left:269.191587pt;}
.x3e_c00199{left:270.203587pt;}
.x48_c00199{left:279.571187pt;}
.x5d_c00199{left:280.776787pt;}
.x19_c00199{left:289.347987pt;}
.x3f_c00199{left:298.433987pt;}
.x42_c00199{left:300.123587pt;}
.x2c_c00199{left:308.993987pt;}
.x22_c00199{left:309.904787pt;}
.x4a_c00199{left:318.075587pt;}
.x53_c00199{left:319.479187pt;}
.x65_c00199{left:328.177987pt;}
.x1a_c00199{left:329.260387pt;}
.x2d_c00199{left:338.170387pt;}
.x23_c00199{left:339.063587pt;}
.x9_c00199{left:348.598387pt;}
.x2e_c00199{left:357.649187pt;}
.x24_c00199{left:367.610787pt;}
.x54_c00199{left:368.574387pt;}
.xa_c00199{left:376.327187pt;}
.x2f_c00199{left:377.273187pt;}
.x5b_c00199{left:380.177187pt;}
.x50_c00199{left:386.970787pt;}
.x66_c00199{left:387.890387pt;}
.x30_c00199{left:396.778387pt;}
.x38_c00199{left:397.728787pt;}
.x31_c00199{left:406.568387pt;}
.x25_c00199{left:407.518787pt;}
.x4b_c00199{left:415.649987pt;}
.x1b_c00199{left:417.295587pt;}
.x39_c00199{left:426.786387pt;}
.x26_c00199{left:436.197987pt;}
.xb_c00199{left:446.199187pt;}
.x69_c00199{left:448.641187pt;}
.x43_c00199{left:455.711987pt;}
.xc_c00199{left:465.097187pt;}
.x55_c00199{left:466.443587pt;}
.x32_c00199{left:475.151187pt;}
.x1c_c00199{left:484.527587pt;}
.x27_c00199{left:485.491187pt;}
.xd_c00199{left:494.489187pt;}
.x40_c00199{left:497.177587pt;}
.x67_c00199{left:503.403587pt;}
.x1d_c00199{left:504.780787pt;}
.x4c_c00199{left:512.907587pt;}
.xe_c00199{left:514.311187pt;}
.x28_c00199{left:524.145187pt;}
.x29_c00199{left:534.256387pt;}
.x1e_c00199{left:536.460787pt;}
.xf_c00199{left:542.977187pt;}
.x44_c00199{left:544.631587pt;}
.x33_c00199{left:553.801187pt;}
.x5f_c00199{left:555.627187pt;}
.x1f_c00199{left:563.731987pt;}
.x58_c00199{left:565.725187pt;}
.x2_c00199{left:573.482387pt;}
.x10_c00199{left:582.577187pt;}
.x59_c00199{left:584.042387pt;}
.x3a_c00199{left:592.257187pt;}
.x3_c00199{left:593.480387pt;}
.x62_c00199{left:601.294787pt;}
.x4d_c00199{left:602.201187pt;}
.x11_c00199{left:603.199987pt;}
.x34_c00199{left:612.171587pt;}
.x4e_c00199{left:622.023187pt;}
.x12_c00199{left:632.028787pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6f660931e80b70bb03c5ab9b.woff2')format("woff");}.ff1_c00200{font-family:ff1_c00200;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00200;src:url('chunks/assets/font_22671f0e368208b4ad580824.woff2')format("woff");}.ff2_c00200{font-family:ff2_c00200;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00200;src:url('chunks/assets/font_6c661a31992cfa37deaac814.woff2')format("woff");}.ff3_c00200{font-family:ff3_c00200;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00200;src:url('chunks/assets/font_50765a2768be21c8ff98934b.woff2')format("woff");}.ff4_c00200{font-family:ff4_c00200;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m60_c00200{transform:matrix(0.085366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085366,0.000000,0.000000,0.250000,0,0);}
.m89_c00200{transform:matrix(0.151516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151516,0.000000,0.000000,0.250000,0,0);}
.mc_c00200{transform:matrix(0.157291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157291,0.000000,0.000000,0.250000,0,0);}
.m5f_c00200{transform:matrix(0.185976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185976,0.000000,0.000000,0.250000,0,0);}
.m61_c00200{transform:matrix(0.192683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192683,0.000000,0.000000,0.250000,0,0);}
.m63_c00200{transform:matrix(0.217887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217887,0.000000,0.000000,0.250000,0,0);}
.m41_c00200{transform:matrix(0.226636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226636,0.000000,0.000000,0.250000,0,0);}
.m75_c00200{transform:matrix(0.240031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240031,0.000000,0.000000,0.250000,0,0);}
.m29_c00200{transform:matrix(0.245784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245784,0.000000,0.000000,0.250000,0,0);}
.m0_c00200{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.me_c00200{transform:matrix(0.250645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250645,0.000000,0.000000,0.250000,0,0);}
.m5_c00200{transform:matrix(0.251166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251166,0.000000,0.000000,0.250000,0,0);}
.m10_c00200{transform:matrix(0.251237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251237,0.000000,0.000000,0.250000,0,0);}
.m9_c00200{transform:matrix(0.251430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251430,0.000000,0.000000,0.250000,0,0);}
.m77_c00200{transform:matrix(0.252166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252166,0.000000,0.000000,0.250000,0,0);}
.m4e_c00200{transform:matrix(0.253415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253415,0.000000,0.000000,0.250000,0,0);}
.m49_c00200{transform:matrix(0.253910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253910,0.000000,0.000000,0.250000,0,0);}
.m38_c00200{transform:matrix(0.254060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254060,0.000000,0.000000,0.250000,0,0);}
.m15_c00200{transform:matrix(0.254684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254684,0.000000,0.000000,0.250000,0,0);}
.m53_c00200{transform:matrix(0.254821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254821,0.000000,0.000000,0.250000,0,0);}
.m14_c00200{transform:matrix(0.255043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255043,0.000000,0.000000,0.250000,0,0);}
.m46_c00200{transform:matrix(0.255295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255295,0.000000,0.000000,0.250000,0,0);}
.m83_c00200{transform:matrix(0.255704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255704,0.000000,0.000000,0.250000,0,0);}
.m4b_c00200{transform:matrix(0.256883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256883,0.000000,0.000000,0.250000,0,0);}
.m56_c00200{transform:matrix(0.257163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257163,0.000000,0.000000,0.250000,0,0);}
.m2b_c00200{transform:matrix(0.257860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257860,0.000000,0.000000,0.250000,0,0);}
.m45_c00200{transform:matrix(0.258132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258132,0.000000,0.000000,0.250000,0,0);}
.m35_c00200{transform:matrix(0.258495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258495,0.000000,0.000000,0.250000,0,0);}
.m30_c00200{transform:matrix(0.259018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259018,0.000000,0.000000,0.250000,0,0);}
.m20_c00200{transform:matrix(0.259440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259440,0.000000,0.000000,0.250000,0,0);}
.m88_c00200{transform:matrix(0.259610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259610,0.000000,0.000000,0.250000,0,0);}
.m72_c00200{transform:matrix(0.260338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260338,0.000000,0.000000,0.250000,0,0);}
.m62_c00200{transform:matrix(0.260698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260698,0.000000,0.000000,0.250000,0,0);}
.m6a_c00200{transform:matrix(0.264600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264600,0.000000,0.000000,0.250000,0,0);}
.m4d_c00200{transform:matrix(0.264982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264982,0.000000,0.000000,0.250000,0,0);}
.m6f_c00200{transform:matrix(0.265269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265269,0.000000,0.000000,0.250000,0,0);}
.m3_c00200{transform:matrix(0.265874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265874,0.000000,0.000000,0.250000,0,0);}
.m11_c00200{transform:matrix(0.267025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267025,0.000000,0.000000,0.250000,0,0);}
.m1c_c00200{transform:matrix(0.267108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267108,0.000000,0.000000,0.250000,0,0);}
.m1d_c00200{transform:matrix(0.267633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267633,0.000000,0.000000,0.250000,0,0);}
.m40_c00200{transform:matrix(0.267928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267928,0.000000,0.000000,0.250000,0,0);}
.m5c_c00200{transform:matrix(0.270531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270531,0.000000,0.000000,0.250000,0,0);}
.m33_c00200{transform:matrix(0.271975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271975,0.000000,0.000000,0.250000,0,0);}
.m85_c00200{transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);}
.m69_c00200{transform:matrix(0.274465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274465,0.000000,0.000000,0.250000,0,0);}
.m52_c00200{transform:matrix(0.274660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274660,0.000000,0.000000,0.250000,0,0);}
.m78_c00200{transform:matrix(0.274921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274921,0.000000,0.000000,0.250000,0,0);}
.mb_c00200{transform:matrix(0.276299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276299,0.000000,0.000000,0.250000,0,0);}
.m66_c00200{transform:matrix(0.276773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276773,0.000000,0.000000,0.250000,0,0);}
.m32_c00200{transform:matrix(0.276833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276833,0.000000,0.000000,0.250000,0,0);}
.m81_c00200{transform:matrix(0.276968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276968,0.000000,0.000000,0.250000,0,0);}
.m27_c00200{transform:matrix(0.277136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277136,0.000000,0.000000,0.250000,0,0);}
.m2f_c00200{transform:matrix(0.278198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278198,0.000000,0.000000,0.250000,0,0);}
.m6c_c00200{transform:matrix(0.278363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278363,0.000000,0.000000,0.250000,0,0);}
.m3e_c00200{transform:matrix(0.278388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278388,0.000000,0.000000,0.250000,0,0);}
.m71_c00200{transform:matrix(0.280078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280078,0.000000,0.000000,0.250000,0,0);}
.m22_c00200{transform:matrix(0.281056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281056,0.000000,0.000000,0.250000,0,0);}
.m87_c00200{transform:matrix(0.282546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282546,0.000000,0.000000,0.250000,0,0);}
.m25_c00200{transform:matrix(0.282669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282669,0.000000,0.000000,0.250000,0,0);}
.m7a_c00200{transform:matrix(0.282703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282703,0.000000,0.000000,0.250000,0,0);}
.m39_c00200{transform:matrix(0.282822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282822,0.000000,0.000000,0.250000,0,0);}
.m48_c00200{transform:matrix(0.282901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282901,0.000000,0.000000,0.250000,0,0);}
.m3c_c00200{transform:matrix(0.283443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283443,0.000000,0.000000,0.250000,0,0);}
.m68_c00200{transform:matrix(0.283709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283709,0.000000,0.000000,0.250000,0,0);}
.m4_c00200{transform:matrix(0.283728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283728,0.000000,0.000000,0.250000,0,0);}
.m3b_c00200{transform:matrix(0.283810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283810,0.000000,0.000000,0.250000,0,0);}
.m2e_c00200{transform:matrix(0.283842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283842,0.000000,0.000000,0.250000,0,0);}
.m59_c00200{transform:matrix(0.284181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284181,0.000000,0.000000,0.250000,0,0);}
.m2d_c00200{transform:matrix(0.284844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284844,0.000000,0.000000,0.250000,0,0);}
.m6b_c00200{transform:matrix(0.286269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286269,0.000000,0.000000,0.250000,0,0);}
.m19_c00200{transform:matrix(0.286916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286916,0.000000,0.000000,0.250000,0,0);}
.m1e_c00200{transform:matrix(0.287064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287064,0.000000,0.000000,0.250000,0,0);}
.m2c_c00200{transform:matrix(0.287123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287123,0.000000,0.000000,0.250000,0,0);}
.m7e_c00200{transform:matrix(0.287142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287142,0.000000,0.000000,0.250000,0,0);}
.m57_c00200{transform:matrix(0.287197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287197,0.000000,0.000000,0.250000,0,0);}
.m65_c00200{transform:matrix(0.287274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287274,0.000000,0.000000,0.250000,0,0);}
.m5a_c00200{transform:matrix(0.288069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288069,0.000000,0.000000,0.250000,0,0);}
.m80_c00200{transform:matrix(0.288817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288817,0.000000,0.000000,0.250000,0,0);}
.m55_c00200{transform:matrix(0.288917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288917,0.000000,0.000000,0.250000,0,0);}
.m1b_c00200{transform:matrix(0.289498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289498,0.000000,0.000000,0.250000,0,0);}
.m7_c00200{transform:matrix(0.290285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290285,0.000000,0.000000,0.250000,0,0);}
.m74_c00200{transform:matrix(0.290478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290478,0.000000,0.000000,0.250000,0,0);}
.m6e_c00200{transform:matrix(0.290789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290789,0.000000,0.000000,0.250000,0,0);}
.m4a_c00200{transform:matrix(0.290918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290918,0.000000,0.000000,0.250000,0,0);}
.m16_c00200{transform:matrix(0.291252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291252,0.000000,0.000000,0.250000,0,0);}
.m42_c00200{transform:matrix(0.292364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292364,0.000000,0.000000,0.250000,0,0);}
.m3a_c00200{transform:matrix(0.292918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292918,0.000000,0.000000,0.250000,0,0);}
.m13_c00200{transform:matrix(0.293681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293681,0.000000,0.000000,0.250000,0,0);}
.m67_c00200{transform:matrix(0.293743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293743,0.000000,0.000000,0.250000,0,0);}
.m5d_c00200{transform:matrix(0.293748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293748,0.000000,0.000000,0.250000,0,0);}
.m7f_c00200{transform:matrix(0.296184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296184,0.000000,0.000000,0.250000,0,0);}
.md_c00200{transform:matrix(0.296279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296279,0.000000,0.000000,0.250000,0,0);}
.m2a_c00200{transform:matrix(0.296618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296618,0.000000,0.000000,0.250000,0,0);}
.m8e_c00200{transform:matrix(0.296661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296661,0.000000,0.000000,0.250000,0,0);}
.m82_c00200{transform:matrix(0.297130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297130,0.000000,0.000000,0.250000,0,0);}
.m36_c00200{transform:matrix(0.297246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297246,0.000000,0.000000,0.250000,0,0);}
.m5b_c00200{transform:matrix(0.298570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298570,0.000000,0.000000,0.250000,0,0);}
.ma_c00200{transform:matrix(0.299236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299236,0.000000,0.000000,0.250000,0,0);}
.m7c_c00200{transform:matrix(0.299537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299537,0.000000,0.000000,0.250000,0,0);}
.m58_c00200{transform:matrix(0.300812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300812,0.000000,0.000000,0.250000,0,0);}
.m34_c00200{transform:matrix(0.301466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301466,0.000000,0.000000,0.250000,0,0);}
.m17_c00200{transform:matrix(0.301840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301840,0.000000,0.000000,0.250000,0,0);}
.m37_c00200{transform:matrix(0.302715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302715,0.000000,0.000000,0.250000,0,0);}
.m1f_c00200{transform:matrix(0.303125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303125,0.000000,0.000000,0.250000,0,0);}
.m8c_c00200{transform:matrix(0.303509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303509,0.000000,0.000000,0.250000,0,0);}
.m28_c00200{transform:matrix(0.303617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303617,0.000000,0.000000,0.250000,0,0);}
.m2_c00200{transform:matrix(0.304461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304461,0.000000,0.000000,0.250000,0,0);}
.m6_c00200{transform:matrix(0.304481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304481,0.000000,0.000000,0.250000,0,0);}
.m4f_c00200{transform:matrix(0.305027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305027,0.000000,0.000000,0.250000,0,0);}
.m7d_c00200{transform:matrix(0.307865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307865,0.000000,0.000000,0.250000,0,0);}
.m73_c00200{transform:matrix(0.308156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308156,0.000000,0.000000,0.250000,0,0);}
.m50_c00200{transform:matrix(0.308175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308175,0.000000,0.000000,0.250000,0,0);}
.m7b_c00200{transform:matrix(0.310370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310370,0.000000,0.000000,0.250000,0,0);}
.m79_c00200{transform:matrix(0.311245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311245,0.000000,0.000000,0.250000,0,0);}
.m23_c00200{transform:matrix(0.311555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311555,0.000000,0.000000,0.250000,0,0);}
.m18_c00200{transform:matrix(0.313830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313830,0.000000,0.000000,0.250000,0,0);}
.m3d_c00200{transform:matrix(0.314471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314471,0.000000,0.000000,0.250000,0,0);}
.m8d_c00200{transform:matrix(0.315978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315978,0.000000,0.000000,0.250000,0,0);}
.m1a_c00200{transform:matrix(0.317203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317203,0.000000,0.000000,0.250000,0,0);}
.m8b_c00200{transform:matrix(0.317266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317266,0.000000,0.000000,0.250000,0,0);}
.m4c_c00200{transform:matrix(0.318555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318555,0.000000,0.000000,0.250000,0,0);}
.mf_c00200{transform:matrix(0.318969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318969,0.000000,0.000000,0.250000,0,0);}
.m76_c00200{transform:matrix(0.322374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322374,0.000000,0.000000,0.250000,0,0);}
.m70_c00200{transform:matrix(0.322971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322971,0.000000,0.000000,0.250000,0,0);}
.m24_c00200{transform:matrix(0.324483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324483,0.000000,0.000000,0.250000,0,0);}
.m6d_c00200{transform:matrix(0.325035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325035,0.000000,0.000000,0.250000,0,0);}
.m47_c00200{transform:matrix(0.325639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325639,0.000000,0.000000,0.250000,0,0);}
.m8_c00200{transform:matrix(0.326218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326218,0.000000,0.000000,0.250000,0,0);}
.m51_c00200{transform:matrix(0.329843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329843,0.000000,0.000000,0.250000,0,0);}
.m1_c00200{transform:matrix(0.330788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330788,0.000000,0.000000,0.250000,0,0);}
.m12_c00200{transform:matrix(0.334798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334798,0.000000,0.000000,0.250000,0,0);}
.m26_c00200{transform:matrix(0.338135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338135,0.000000,0.000000,0.250000,0,0);}
.m43_c00200{transform:matrix(0.340233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340233,0.000000,0.000000,0.250000,0,0);}
.m3f_c00200{transform:matrix(0.341757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341757,0.000000,0.000000,0.250000,0,0);}
.m64_c00200{transform:matrix(0.342553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342553,0.000000,0.000000,0.250000,0,0);}
.m8a_c00200{transform:matrix(0.345253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345253,0.000000,0.000000,0.250000,0,0);}
.m44_c00200{transform:matrix(0.353207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353207,0.000000,0.000000,0.250000,0,0);}
.m54_c00200{transform:matrix(0.354026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354026,0.000000,0.000000,0.250000,0,0);}
.m21_c00200{transform:matrix(0.355441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355441,0.000000,0.000000,0.250000,0,0);}
.m31_c00200{transform:matrix(0.361174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361174,0.000000,0.000000,0.250000,0,0);}
.m5e_c00200{transform:matrix(0.366906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366906,0.000000,0.000000,0.250000,0,0);}
.m84_c00200{transform:matrix(0.372639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372639,0.000000,0.000000,0.250000,0,0);}
.m86_c00200{transform:matrix(0.373079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373079,0.000000,0.000000,0.250000,0,0);}
.v0_c00200{vertical-align:0.000000px;}
.lsa_c00200{letter-spacing:-2.882880px;}
.ls17_c00200{letter-spacing:-1.219046px;}
.ls15_c00200{letter-spacing:-0.757786px;}
.ls11_c00200{letter-spacing:-0.502445px;}
.ls10_c00200{letter-spacing:-0.070963px;}
.ls5_c00200{letter-spacing:0.000000px;}
.lsd_c00200{letter-spacing:0.205920px;}
.ls9_c00200{letter-spacing:0.312682px;}
.ls1a_c00200{letter-spacing:0.889574px;}
.lse_c00200{letter-spacing:0.930758px;}
.ls18_c00200{letter-spacing:0.938995px;}
.ls14_c00200{letter-spacing:1.820333px;}
.lsb_c00200{letter-spacing:2.207462px;}
.ls2_c00200{letter-spacing:2.211264px;}
.ls7_c00200{letter-spacing:2.899354px;}
.ls1_c00200{letter-spacing:2.973485px;}
.ls19_c00200{letter-spacing:3.204115px;}
.ls1b_c00200{letter-spacing:3.524400px;}
.lsc_c00200{letter-spacing:3.714797px;}
.ls8_c00200{letter-spacing:3.722400px;}
.ls1e_c00200{letter-spacing:3.788928px;}
.ls12_c00200{letter-spacing:3.811500px;}
.ls1c_c00200{letter-spacing:3.830112px;}
.ls0_c00200{letter-spacing:3.961901px;}
.ls4_c00200{letter-spacing:4.118400px;}
.ls13_c00200{letter-spacing:4.169088px;}
.ls3_c00200{letter-spacing:4.247615px;}
.lsf_c00200{letter-spacing:4.435200px;}
.ls16_c00200{letter-spacing:58.449798px;}
.ls1d_c00200{letter-spacing:62.726400px;}
.ls6_c00200{letter-spacing:68.428998px;}
.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;}
._2_c00200{width:10.027512px;}
._0_c00200{width:16.716110px;}
._1_c00200{width:18.947808px;}
.fc0_c00200{color:transparent;}
.fs14_c00200{font-size:23.562000px;}
.fs6_c00200{font-size:25.740000px;}
.fs17_c00200{font-size:27.720000px;}
.fs8_c00200{font-size:28.908000px;}
.fs13_c00200{font-size:33.264000px;}
.fs16_c00200{font-size:38.808000px;}
.fs5_c00200{font-size:39.204000px;}
.fsb_c00200{font-size:44.352000px;}
.fs15_c00200{font-size:47.916198px;}
.fs18_c00200{font-size:50.688000px;}
.fsc_c00200{font-size:57.420000px;}
.fsd_c00200{font-size:58.449798px;}
.fsf_c00200{font-size:60.192000px;}
.fs12_c00200{font-size:62.726400px;}
.fs7_c00200{font-size:67.320000px;}
.fs2_c00200{font-size:68.428998px;}
.fse_c00200{font-size:70.488000px;}
.fs3_c00200{font-size:74.448000px;}
.fsa_c00200{font-size:76.230000px;}
.fs11_c00200{font-size:77.220000px;}
.fs1_c00200{font-size:82.368000px;}
.fs0_c00200{font-size:88.308000px;}
.fs4_c00200{font-size:88.704000px;}
.fs10_c00200{font-size:93.456198px;}
.fs9_c00200{font-size:131.076198px;}
.y0_c00200{bottom:0.000000px;}
.y26_c00200{bottom:33.408585px;}
.y20_c00200{bottom:64.420335px;}
.y1_c00200{bottom:76.500000px;}
.y25_c00200{bottom:123.226335px;}
.y24_c00200{bottom:125.008335px;}
.y1f_c00200{bottom:189.511785px;}
.y1d_c00200{bottom:221.236335px;}
.y1c_c00200{bottom:252.243135px;}
.y1b_c00200{bottom:314.964585px;}
.y1a_c00200{bottom:347.040585px;}
.y19_c00200{bottom:378.047385px;}
.y1e_c00200{bottom:396.585135px;}
.y18_c00200{bottom:409.771935px;}
.y17_c00200{bottom:440.778735px;}
.y16_c00200{bottom:472.854735px;}
.y23_c00200{bottom:482.477535px;}
.y22_c00200{bottom:492.813135px;}
.y13_c00200{bottom:536.288985px;}
.y21_c00200{bottom:560.524185px;}
.y15_c00200{bottom:567.295785px;}
.y12_c00200{bottom:567.652185px;}
.y14_c00200{bottom:581.195385px;}
.yd_c00200{bottom:599.015385px;}
.y11_c00200{bottom:608.286735px;}
.yc_c00200{bottom:630.739935px;}
.yb_c00200{bottom:662.810985px;}
.ya_c00200{bottom:693.109935px;}
.y9_c00200{bottom:725.542335px;}
.y10_c00200{bottom:743.362335px;}
.y8_c00200{bottom:756.544185px;}
.y7_c00200{bottom:788.268735px;}
.yf_c00200{bottom:797.886585px;}
.y6_c00200{bottom:850.282335px;}
.y5_c00200{bottom:882.001935px;}
.y4_c00200{bottom:914.434335px;}
.y3_c00200{bottom:946.505385px;}
.ye_c00200{bottom:1031.684985px;}
.y2_c00200{bottom:1070.532585px;}
.h15_c00200{height:24.574430px;}
.h8_c00200{height:26.846016px;}
.h18_c00200{height:28.911094px;}
.ha_c00200{height:30.150141px;}
.h14_c00200{height:34.693313px;}
.h7_c00200{height:38.476582px;}
.hf_c00200{height:38.927565px;}
.h17_c00200{height:40.475531px;}
.h13_c00200{height:41.775782px;}
.h4_c00200{height:45.573713px;}
.hd_c00200{height:46.257750px;}
.h16_c00200{height:49.975097px;}
.h19_c00200{height:52.866000px;}
.he_c00200{height:56.326553px;}
.h9_c00200{height:66.070898px;}
.h10_c00200{height:69.180117px;}
.h5_c00200{height:73.066641px;}
.hc_c00200{height:74.815576px;}
.h12_c00200{height:75.787207px;}
.h3_c00200{height:80.839688px;}
.h2_c00200{height:86.669473px;}
.h6_c00200{height:87.058125px;}
.h11_c00200{height:97.471894px;}
.hb_c00200{height:136.708378px;}
.h1_c00200{height:1110.000000px;}
.h0_c00200{height:1263.000000px;}
.w1_c00200{width:775.500000px;}
.w0_c00200{width:892.500000px;}
.x0_c00200{left:0.000000px;}
.x1_c00200{left:58.500000px;}
.x30_c00200{left:89.037285px;}
.x3_c00200{left:90.542085px;}
.x1f_c00200{left:122.548785px;}
.x4d_c00200{left:133.730835px;}
.xc_c00200{left:134.735685px;}
.x4_c00200{left:145.823685px;}
.x25_c00200{left:156.599835px;}
.x4e_c00200{left:168.009585px;}
.x44_c00200{left:177.944235px;}
.x2c_c00200{left:179.384685px;}
.x34_c00200{left:189.745035px;}
.x53_c00200{left:199.892535px;}
.x20_c00200{left:201.070635px;}
.x26_c00200{left:210.926085px;}
.x35_c00200{left:222.687285px;}
.x56_c00200{left:233.191185px;}
.x1a_c00200{left:234.567285px;}
.x12_c00200{left:244.754385px;}
.x5_c00200{left:254.684085px;}
.xd_c00200{left:267.054135px;}
.x27_c00200{left:268.949985px;}
.x57_c00200{left:278.429235px;}
.x3a_c00200{left:287.542185px;}
.x3f_c00200{left:289.116285px;}
.x54_c00200{left:297.600585px;}
.x59_c00200{left:299.154885px;}
.x13_c00200{left:300.793335px;}
.x21_c00200{left:310.727985px;}
.x50_c00200{left:320.697285px;}
.x36_c00200{left:321.969435px;}
.x5c_c00200{left:323.959335px;}
.x6_c00200{left:334.072185px;}
.x2d_c00200{left:335.275035px;}
.x22_c00200{left:344.764185px;}
.x40_c00200{left:354.396885px;}
.x7_c00200{left:355.827435px;}
.x5f_c00200{left:362.316885px;}
.x28_c00200{left:366.846135px;}
.x14_c00200{left:377.562885px;}
.x31_c00200{left:387.898485px;}
.x29_c00200{left:399.273585px;}
.x15_c00200{left:409.812135px;}
.x1b_c00200{left:411.396135px;}
.x48_c00200{left:412.702935px;}
.x49_c00200{left:416.618385px;}
.x37_c00200{left:420.410085px;}
.x51_c00200{left:421.672335px;}
.x5a_c00200{left:432.379185px;}
.x32_c00200{left:433.388985px;}
.xe_c00200{left:434.438385px;}
.x2a_c00200{left:442.952385px;}
.x41_c00200{left:453.555285px;}
.x3b_c00200{left:454.777935px;}
.x16_c00200{left:465.593685px;}
.x1c_c00200{left:475.736235px;}
.x2e_c00200{left:477.325185px;}
.x4a_c00200{left:486.621285px;}
.x17_c00200{left:498.738885px;}
.x55_c00200{left:507.495435px;}
.x2b_c00200{left:509.079435px;}
.x38_c00200{left:519.231885px;}
.x8_c00200{left:521.192085px;}
.x45_c00200{left:531.760335px;}
.x42_c00200{left:542.912685px;}
.x47_c00200{left:553.263135px;}
.xf_c00200{left:554.614485px;}
.x1d_c00200{left:564.455085px;}
.x43_c00200{left:574.597635px;}
.x9_c00200{left:575.676735px;}
.x52_c00200{left:585.690585px;}
.x46_c00200{left:587.066685px;}
.x58_c00200{left:597.050835px;}
.x23_c00200{left:608.282385px;}
.x5d_c00200{left:617.910135px;}
.x33_c00200{left:619.865385px;}
.x4b_c00200{left:628.626885px;}
.x18_c00200{left:630.255435px;}
.x2_c00200{left:640.883085px;}
.x4f_c00200{left:651.614685px;}
.xa_c00200{left:653.718435px;}
.x19_c00200{left:663.712485px;}
.x2f_c00200{left:664.974735px;}
.x4c_c00200{left:672.800685px;}
.x10_c00200{left:674.449035px;}
.x3c_c00200{left:675.671685px;}
.x5e_c00200{left:693.838185px;}
.x1e_c00200{left:696.179535px;}
.x11_c00200{left:707.208135px;}
.x24_c00200{left:708.267435px;}
.xb_c00200{left:717.895185px;}
.x39_c00200{left:719.573235px;}
.x5b_c00200{left:749.357385px;}
.x3d_c00200{left:769.652385px;}
.x3e_c00200{left:771.434385px;}
.x60_c00200{left:772.508535px;}
.x61_c00200{left:773.622285px;}
@media print{
.v0_c00200{vertical-align:0.000000pt;}
.lsa_c00200{letter-spacing:-2.562560pt;}
.ls17_c00200{letter-spacing:-1.083597pt;}
.ls15_c00200{letter-spacing:-0.673587pt;}
.ls11_c00200{letter-spacing:-0.446618pt;}
.ls10_c00200{letter-spacing:-0.063078pt;}
.ls5_c00200{letter-spacing:0.000000pt;}
.lsd_c00200{letter-spacing:0.183040pt;}
.ls9_c00200{letter-spacing:0.277939pt;}
.ls1a_c00200{letter-spacing:0.790733pt;}
.lse_c00200{letter-spacing:0.827341pt;}
.ls18_c00200{letter-spacing:0.834662pt;}
.ls14_c00200{letter-spacing:1.618074pt;}
.lsb_c00200{letter-spacing:1.962189pt;}
.ls2_c00200{letter-spacing:1.965568pt;}
.ls7_c00200{letter-spacing:2.577203pt;}
.ls1_c00200{letter-spacing:2.643098pt;}
.ls19_c00200{letter-spacing:2.848102pt;}
.ls1b_c00200{letter-spacing:3.132800pt;}
.lsc_c00200{letter-spacing:3.302042pt;}
.ls8_c00200{letter-spacing:3.308800pt;}
.ls1e_c00200{letter-spacing:3.367936pt;}
.ls12_c00200{letter-spacing:3.388000pt;}
.ls1c_c00200{letter-spacing:3.404544pt;}
.ls0_c00200{letter-spacing:3.521690pt;}
.ls4_c00200{letter-spacing:3.660800pt;}
.ls13_c00200{letter-spacing:3.705856pt;}
.ls3_c00200{letter-spacing:3.775658pt;}
.lsf_c00200{letter-spacing:3.942400pt;}
.ls16_c00200{letter-spacing:51.955376pt;}
.ls1d_c00200{letter-spacing:55.756800pt;}
.ls6_c00200{letter-spacing:60.825776pt;}
.ws0_c00200{word-spacing:0.000000pt;}
._2_c00200{width:8.913344pt;}
._0_c00200{width:14.858765pt;}
._1_c00200{width:16.842496pt;}
.fs14_c00200{font-size:20.944000pt;}
.fs6_c00200{font-size:22.880000pt;}
.fs17_c00200{font-size:24.640000pt;}
.fs8_c00200{font-size:25.696000pt;}
.fs13_c00200{font-size:29.568000pt;}
.fs16_c00200{font-size:34.496000pt;}
.fs5_c00200{font-size:34.848000pt;}
.fsb_c00200{font-size:39.424000pt;}
.fs15_c00200{font-size:42.592176pt;}
.fs18_c00200{font-size:45.056000pt;}
.fsc_c00200{font-size:51.040000pt;}
.fsd_c00200{font-size:51.955376pt;}
.fsf_c00200{font-size:53.504000pt;}
.fs12_c00200{font-size:55.756800pt;}
.fs7_c00200{font-size:59.840000pt;}
.fs2_c00200{font-size:60.825776pt;}
.fse_c00200{font-size:62.656000pt;}
.fs3_c00200{font-size:66.176000pt;}
.fsa_c00200{font-size:67.760000pt;}
.fs11_c00200{font-size:68.640000pt;}
.fs1_c00200{font-size:73.216000pt;}
.fs0_c00200{font-size:78.496000pt;}
.fs4_c00200{font-size:78.848000pt;}
.fs10_c00200{font-size:83.072176pt;}
.fs9_c00200{font-size:116.512176pt;}
.y0_c00200{bottom:0.000000pt;}
.y26_c00200{bottom:29.696520pt;}
.y20_c00200{bottom:57.262520pt;}
.y1_c00200{bottom:68.000000pt;}
.y25_c00200{bottom:109.534520pt;}
.y24_c00200{bottom:111.118520pt;}
.y1f_c00200{bottom:168.454920pt;}
.y1d_c00200{bottom:196.654520pt;}
.y1c_c00200{bottom:224.216120pt;}
.y1b_c00200{bottom:279.968520pt;}
.y1a_c00200{bottom:308.480520pt;}
.y19_c00200{bottom:336.042120pt;}
.y1e_c00200{bottom:352.520120pt;}
.y18_c00200{bottom:364.241720pt;}
.y17_c00200{bottom:391.803320pt;}
.y16_c00200{bottom:420.315320pt;}
.y23_c00200{bottom:428.868920pt;}
.y22_c00200{bottom:438.056120pt;}
.y13_c00200{bottom:476.701320pt;}
.y21_c00200{bottom:498.243720pt;}
.y15_c00200{bottom:504.262920pt;}
.y12_c00200{bottom:504.579720pt;}
.y14_c00200{bottom:516.618120pt;}
.yd_c00200{bottom:532.458120pt;}
.y11_c00200{bottom:540.699320pt;}
.yc_c00200{bottom:560.657720pt;}
.yb_c00200{bottom:589.165320pt;}
.ya_c00200{bottom:616.097720pt;}
.y9_c00200{bottom:644.926520pt;}
.y10_c00200{bottom:660.766520pt;}
.y8_c00200{bottom:672.483720pt;}
.y7_c00200{bottom:700.683320pt;}
.yf_c00200{bottom:709.232520pt;}
.y6_c00200{bottom:755.806520pt;}
.y5_c00200{bottom:784.001720pt;}
.y4_c00200{bottom:812.830520pt;}
.y3_c00200{bottom:841.338120pt;}
.ye_c00200{bottom:917.053320pt;}
.y2_c00200{bottom:951.584520pt;}
.h15_c00200{height:21.843938pt;}
.h8_c00200{height:23.863125pt;}
.h18_c00200{height:25.698750pt;}
.ha_c00200{height:26.800125pt;}
.h14_c00200{height:30.838500pt;}
.h7_c00200{height:34.201406pt;}
.hf_c00200{height:34.602280pt;}
.h17_c00200{height:35.978250pt;}
.h13_c00200{height:37.134029pt;}
.h4_c00200{height:40.509967pt;}
.hd_c00200{height:41.118000pt;}
.h16_c00200{height:44.422309pt;}
.h19_c00200{height:46.992000pt;}
.he_c00200{height:50.068047pt;}
.h9_c00200{height:58.729688pt;}
.h10_c00200{height:61.493438pt;}
.h5_c00200{height:64.948125pt;}
.hc_c00200{height:66.502734pt;}
.h12_c00200{height:67.366406pt;}
.h3_c00200{height:71.857500pt;}
.h2_c00200{height:77.039531pt;}
.h6_c00200{height:77.385000pt;}
.h11_c00200{height:86.641684pt;}
.hb_c00200{height:121.518559pt;}
.h1_c00200{height:986.666667pt;}
.h0_c00200{height:1122.666667pt;}
.w1_c00200{width:689.333333pt;}
.w0_c00200{width:793.333333pt;}
.x0_c00200{left:0.000000pt;}
.x1_c00200{left:52.000000pt;}
.x30_c00200{left:79.144253pt;}
.x3_c00200{left:80.481853pt;}
.x1f_c00200{left:108.932253pt;}
.x4d_c00200{left:118.871853pt;}
.xc_c00200{left:119.765053pt;}
.x4_c00200{left:129.621053pt;}
.x25_c00200{left:139.199853pt;}
.x4e_c00200{left:149.341853pt;}
.x44_c00200{left:158.172653pt;}
.x2c_c00200{left:159.453053pt;}
.x34_c00200{left:168.662253pt;}
.x53_c00200{left:177.682253pt;}
.x20_c00200{left:178.729453pt;}
.x26_c00200{left:187.489853pt;}
.x35_c00200{left:197.944253pt;}
.x56_c00200{left:207.281053pt;}
.x1a_c00200{left:208.504253pt;}
.x12_c00200{left:217.559453pt;}
.x5_c00200{left:226.385853pt;}
.xd_c00200{left:237.381453pt;}
.x27_c00200{left:239.066653pt;}
.x57_c00200{left:247.492653pt;}
.x3a_c00200{left:255.593053pt;}
.x3f_c00200{left:256.992253pt;}
.x54_c00200{left:264.533853pt;}
.x59_c00200{left:265.915453pt;}
.x13_c00200{left:267.371853pt;}
.x21_c00200{left:276.202653pt;}
.x50_c00200{left:285.064253pt;}
.x36_c00200{left:286.195053pt;}
.x5c_c00200{left:287.963853pt;}
.x6_c00200{left:296.953053pt;}
.x2d_c00200{left:298.022253pt;}
.x22_c00200{left:306.457053pt;}
.x40_c00200{left:315.019453pt;}
.x7_c00200{left:316.291053pt;}
.x5f_c00200{left:322.059453pt;}
.x28_c00200{left:326.085453pt;}
.x14_c00200{left:335.611453pt;}
.x31_c00200{left:344.798653pt;}
.x29_c00200{left:354.909853pt;}
.x15_c00200{left:364.277453pt;}
.x1b_c00200{left:365.685453pt;}
.x48_c00200{left:366.847053pt;}
.x49_c00200{left:370.327453pt;}
.x37_c00200{left:373.697853pt;}
.x51_c00200{left:374.819853pt;}
.x5a_c00200{left:384.337053pt;}
.x32_c00200{left:385.234653pt;}
.xe_c00200{left:386.167453pt;}
.x2a_c00200{left:393.735453pt;}
.x41_c00200{left:403.160253pt;}
.x3b_c00200{left:404.247053pt;}
.x16_c00200{left:413.861053pt;}
.x1c_c00200{left:422.876653pt;}
.x2e_c00200{left:424.289053pt;}
.x4a_c00200{left:432.552253pt;}
.x17_c00200{left:443.323453pt;}
.x55_c00200{left:451.107053pt;}
.x2b_c00200{left:452.515053pt;}
.x38_c00200{left:461.539453pt;}
.x8_c00200{left:463.281853pt;}
.x45_c00200{left:472.675853pt;}
.x42_c00200{left:482.589053pt;}
.x47_c00200{left:491.789453pt;}
.xf_c00200{left:492.990653pt;}
.x1d_c00200{left:501.737853pt;}
.x43_c00200{left:510.753453pt;}
.x9_c00200{left:511.712653pt;}
.x52_c00200{left:520.613853pt;}
.x46_c00200{left:521.837053pt;}
.x58_c00200{left:530.711853pt;}
.x23_c00200{left:540.695453pt;}
.x5d_c00200{left:549.253453pt;}
.x33_c00200{left:550.991453pt;}
.x4b_c00200{left:558.779453pt;}
.x18_c00200{left:560.227053pt;}
.x2_c00200{left:569.673853pt;}
.x4f_c00200{left:579.213053pt;}
.xa_c00200{left:581.083053pt;}
.x19_c00200{left:589.966653pt;}
.x2f_c00200{left:591.088653pt;}
.x4c_c00200{left:598.045053pt;}
.x10_c00200{left:599.510253pt;}
.x3c_c00200{left:600.597053pt;}
.x5e_c00200{left:616.745053pt;}
.x1e_c00200{left:618.826253pt;}
.x11_c00200{left:628.629453pt;}
.x24_c00200{left:629.571053pt;}
.xb_c00200{left:638.129053pt;}
.x39_c00200{left:639.620653pt;}
.x5b_c00200{left:666.095453pt;}
.x3d_c00200{left:684.135453pt;}
.x3e_c00200{left:685.719453pt;}
.x60_c00200{left:686.674253pt;}
.x61_c00200{left:687.664253pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_da0410dae7f691f07afda775.woff2')format("woff");}.ff1_c00201{font-family:ff1_c00201;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00201;src:url('chunks/assets/font_4d3ae9350461212771c47a5e.woff2')format("woff");}.ff2_c00201{font-family:ff2_c00201;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00201;src:url('chunks/assets/font_d3d206b46b93718e7182aafd.woff2')format("woff");}.ff3_c00201{font-family:ff3_c00201;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00201;src:url('chunks/assets/font_d114e7048255a2ef280b1094.woff2')format("woff");}.ff4_c00201{font-family:ff4_c00201;line-height:0.666000;font-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_c00201{transform:matrix(0.024391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024391,0.000000,0.000000,0.250000,0,0);}
.m54_c00201{transform:matrix(0.054879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054879,0.000000,0.000000,0.250000,0,0);}
.mab_c00201{transform:matrix(0.107377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107377,0.000000,0.000000,0.250000,0,0);}
.mc_c00201{transform:matrix(0.112946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112946,0.000000,0.000000,0.250000,0,0);}
.m2d_c00201{transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);}
.m3_c00201{transform:matrix(0.126549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126549,0.000000,0.000000,0.250000,0,0);}
.m55_c00201{transform:matrix(0.134146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134146,0.000000,0.000000,0.250000,0,0);}
.m9b_c00201{transform:matrix(0.138170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138170,0.000000,0.000000,0.250000,0,0);}
.m67_c00201{transform:matrix(0.138723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138723,0.000000,0.000000,0.250000,0,0);}
.m58_c00201{transform:matrix(0.146342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146342,0.000000,0.000000,0.250000,0,0);}
.m57_c00201{transform:matrix(0.152439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152439,0.000000,0.000000,0.250000,0,0);}
.m33_c00201{transform:matrix(0.152777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152777,0.000000,0.000000,0.250000,0,0);}
.m71_c00201{transform:matrix(0.158369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158369,0.000000,0.000000,0.250000,0,0);}
.m4b_c00201{transform:matrix(0.159524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159524,0.000000,0.000000,0.250000,0,0);}
.m53_c00201{transform:matrix(0.164634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164634,0.000000,0.000000,0.250000,0,0);}
.mb_c00201{transform:matrix(0.175967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175967,0.000000,0.000000,0.250000,0,0);}
.m31_c00201{transform:matrix(0.190972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190972,0.000000,0.000000,0.250000,0,0);}
.m64_c00201{transform:matrix(0.199410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199410,0.000000,0.000000,0.250000,0,0);}
.m2f_c00201{transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);}
.m32_c00201{transform:matrix(0.210648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210648,0.000000,0.000000,0.250000,0,0);}
.m8b_c00201{transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);}
.m49_c00201{transform:matrix(0.242098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242098,0.000000,0.000000,0.250000,0,0);}
.m88_c00201{transform:matrix(0.246148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246148,0.000000,0.000000,0.250000,0,0);}
.m1_c00201{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m43_c00201{transform:matrix(0.250517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250517,0.000000,0.000000,0.250000,0,0);}
.m18_c00201{transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);}
.mb4_c00201{transform:matrix(0.252823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252823,0.000000,0.000000,0.250000,0,0);}
.m80_c00201{transform:matrix(0.255400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255400,0.000000,0.000000,0.250000,0,0);}
.m5c_c00201{transform:matrix(0.258139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258139,0.000000,0.000000,0.250000,0,0);}
.m6f_c00201{transform:matrix(0.258445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258445,0.000000,0.000000,0.250000,0,0);}
.m5_c00201{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m15_c00201{transform:matrix(0.260640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260640,0.000000,0.000000,0.250000,0,0);}
.mb2_c00201{transform:matrix(0.261350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261350,0.000000,0.000000,0.250000,0,0);}
.m2_c00201{transform:matrix(0.262597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262597,0.000000,0.000000,0.250000,0,0);}
.m1e_c00201{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m5b_c00201{transform:matrix(0.263352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263352,0.000000,0.000000,0.250000,0,0);}
.m1c_c00201{transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);}
.m94_c00201{transform:matrix(0.264663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264663,0.000000,0.000000,0.250000,0,0);}
.m10_c00201{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m79_c00201{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.m28_c00201{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m76_c00201{transform:matrix(0.267951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267951,0.000000,0.000000,0.250000,0,0);}
.mbd_c00201{transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);}
.mae_c00201{transform:matrix(0.269706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269706,0.000000,0.000000,0.250000,0,0);}
.ma9_c00201{transform:matrix(0.270277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270277,0.000000,0.000000,0.250000,0,0);}
.m87_c00201{transform:matrix(0.270329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270329,0.000000,0.000000,0.250000,0,0);}
.m83_c00201{transform:matrix(0.271197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271197,0.000000,0.000000,0.250000,0,0);}
.mc5_c00201{transform:matrix(0.272521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272521,0.000000,0.000000,0.250000,0,0);}
.m4f_c00201{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.mc1_c00201{transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);}
.m6c_c00201{transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);}
.mc6_c00201{transform:matrix(0.274240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274240,0.000000,0.000000,0.250000,0,0);}
.mb8_c00201{transform:matrix(0.274823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274823,0.000000,0.000000,0.250000,0,0);}
.mc3_c00201{transform:matrix(0.275287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275287,0.000000,0.000000,0.250000,0,0);}
.m47_c00201{transform:matrix(0.276607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276607,0.000000,0.000000,0.250000,0,0);}
.m11_c00201{transform:matrix(0.276792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276792,0.000000,0.000000,0.250000,0,0);}
.m1f_c00201{transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);}
.m29_c00201{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.mc2_c00201{transform:matrix(0.277881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277881,0.000000,0.000000,0.250000,0,0);}
.m7d_c00201{transform:matrix(0.278623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278623,0.000000,0.000000,0.250000,0,0);}
.mb6_c00201{transform:matrix(0.278778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278778,0.000000,0.000000,0.250000,0,0);}
.m13_c00201{transform:matrix(0.280088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280088,0.000000,0.000000,0.250000,0,0);}
.m4e_c00201{transform:matrix(0.280107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280107,0.000000,0.000000,0.250000,0,0);}
.m72_c00201{transform:matrix(0.280687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280687,0.000000,0.000000,0.250000,0,0);}
.m36_c00201{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.m78_c00201{transform:matrix(0.281898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281898,0.000000,0.000000,0.250000,0,0);}
.m90_c00201{transform:matrix(0.283192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283192,0.000000,0.000000,0.250000,0,0);}
.m4d_c00201{transform:matrix(0.283206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283206,0.000000,0.000000,0.250000,0,0);}
.m19_c00201{transform:matrix(0.283223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283223,0.000000,0.000000,0.250000,0,0);}
.ma2_c00201{transform:matrix(0.283801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283801,0.000000,0.000000,0.250000,0,0);}
.m5e_c00201{transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);}
.m82_c00201{transform:matrix(0.284009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284009,0.000000,0.000000,0.250000,0,0);}
.m8c_c00201{transform:matrix(0.284153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284153,0.000000,0.000000,0.250000,0,0);}
.m65_c00201{transform:matrix(0.284488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284488,0.000000,0.000000,0.250000,0,0);}
.m23_c00201{transform:matrix(0.284799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284799,0.000000,0.000000,0.250000,0,0);}
.m3b_c00201{transform:matrix(0.284946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284946,0.000000,0.000000,0.250000,0,0);}
.m5a_c00201{transform:matrix(0.285818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285818,0.000000,0.000000,0.250000,0,0);}
.ma_c00201{transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);}
.m7_c00201{transform:matrix(0.286383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286383,0.000000,0.000000,0.250000,0,0);}
.mb3_c00201{transform:matrix(0.286458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286458,0.000000,0.000000,0.250000,0,0);}
.mb5_c00201{transform:matrix(0.286659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286659,0.000000,0.000000,0.250000,0,0);}
.m2e_c00201{transform:matrix(0.286766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286766,0.000000,0.000000,0.250000,0,0);}
.m1a_c00201{transform:matrix(0.287026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287026,0.000000,0.000000,0.250000,0,0);}
.m46_c00201{transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);}
.m21_c00201{transform:matrix(0.287376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287376,0.000000,0.000000,0.250000,0,0);}
.ma7_c00201{transform:matrix(0.287518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287518,0.000000,0.000000,0.250000,0,0);}
.ma1_c00201{transform:matrix(0.288066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288066,0.000000,0.000000,0.250000,0,0);}
.m96_c00201{transform:matrix(0.288455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288455,0.000000,0.000000,0.250000,0,0);}
.m16_c00201{transform:matrix(0.288691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288691,0.000000,0.000000,0.250000,0,0);}
.m89_c00201{transform:matrix(0.288785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288785,0.000000,0.000000,0.250000,0,0);}
.m7b_c00201{transform:matrix(0.290483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290483,0.000000,0.000000,0.250000,0,0);}
.m52_c00201{transform:matrix(0.290935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290935,0.000000,0.000000,0.250000,0,0);}
.m8e_c00201{transform:matrix(0.291032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291032,0.000000,0.000000,0.250000,0,0);}
.m9f_c00201{transform:matrix(0.291699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291699,0.000000,0.000000,0.250000,0,0);}
.m86_c00201{transform:matrix(0.292497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292497,0.000000,0.000000,0.250000,0,0);}
.m9d_c00201{transform:matrix(0.292499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292499,0.000000,0.000000,0.250000,0,0);}
.m14_c00201{transform:matrix(0.293905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293905,0.000000,0.000000,0.250000,0,0);}
.m40_c00201{transform:matrix(0.293934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293934,0.000000,0.000000,0.250000,0,0);}
.m73_c00201{transform:matrix(0.294060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294060,0.000000,0.000000,0.250000,0,0);}
.ma6_c00201{transform:matrix(0.294467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294467,0.000000,0.000000,0.250000,0,0);}
.m17_c00201{transform:matrix(0.294482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294482,0.000000,0.000000,0.250000,0,0);}
.m2c_c00201{transform:matrix(0.294705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294705,0.000000,0.000000,0.250000,0,0);}
.m39_c00201{transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);}
.m9a_c00201{transform:matrix(0.294932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294932,0.000000,0.000000,0.250000,0,0);}
.mc7_c00201{transform:matrix(0.295172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295172,0.000000,0.000000,0.250000,0,0);}
.ma0_c00201{transform:matrix(0.295385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295385,0.000000,0.000000,0.250000,0,0);}
.m7f_c00201{transform:matrix(0.295814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295814,0.000000,0.000000,0.250000,0,0);}
.mf_c00201{transform:matrix(0.295938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295938,0.000000,0.000000,0.250000,0,0);}
.maf_c00201{transform:matrix(0.296134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296134,0.000000,0.000000,0.250000,0,0);}
.m5f_c00201{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m26_c00201{transform:matrix(0.297146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297146,0.000000,0.000000,0.250000,0,0);}
.m9_c00201{transform:matrix(0.297169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297169,0.000000,0.000000,0.250000,0,0);}
.m91_c00201{transform:matrix(0.298020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298020,0.000000,0.000000,0.250000,0,0);}
.m60_c00201{transform:matrix(0.298173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298173,0.000000,0.000000,0.250000,0,0);}
.m20_c00201{transform:matrix(0.298350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298350,0.000000,0.000000,0.250000,0,0);}
.ma5_c00201{transform:matrix(0.299763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299763,0.000000,0.000000,0.250000,0,0);}
.m27_c00201{transform:matrix(0.300071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300071,0.000000,0.000000,0.250000,0,0);}
.m9c_c00201{transform:matrix(0.300360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300360,0.000000,0.000000,0.250000,0,0);}
.m12_c00201{transform:matrix(0.300736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300736,0.000000,0.000000,0.250000,0,0);}
.m0_c00201{transform:matrix(0.301620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301620,0.000000,0.000000,0.250000,0,0);}
.m74_c00201{transform:matrix(0.302297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302297,0.000000,0.000000,0.250000,0,0);}
.m75_c00201{transform:matrix(0.303384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303384,0.000000,0.000000,0.250000,0,0);}
.m77_c00201{transform:matrix(0.303938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303938,0.000000,0.000000,0.250000,0,0);}
.m2a_c00201{transform:matrix(0.304119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304119,0.000000,0.000000,0.250000,0,0);}
.maa_c00201{transform:matrix(0.304330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304330,0.000000,0.000000,0.250000,0,0);}
.mc4_c00201{transform:matrix(0.304348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304348,0.000000,0.000000,0.250000,0,0);}
.mb1_c00201{transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);}
.m99_c00201{transform:matrix(0.305417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305417,0.000000,0.000000,0.250000,0,0);}
.mbf_c00201{transform:matrix(0.305475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305475,0.000000,0.000000,0.250000,0,0);}
.ma8_c00201{transform:matrix(0.305590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305590,0.000000,0.000000,0.250000,0,0);}
.m1d_c00201{transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);}
.m93_c00201{transform:matrix(0.307141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307141,0.000000,0.000000,0.250000,0,0);}
.m7c_c00201{transform:matrix(0.307943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307943,0.000000,0.000000,0.250000,0,0);}
.me_c00201{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m97_c00201{transform:matrix(0.308611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308611,0.000000,0.000000,0.250000,0,0);}
.mad_c00201{transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);}
.m9e_c00201{transform:matrix(0.308858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308858,0.000000,0.000000,0.250000,0,0);}
.m25_c00201{transform:matrix(0.309919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309919,0.000000,0.000000,0.250000,0,0);}
.mc0_c00201{transform:matrix(0.313488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313488,0.000000,0.000000,0.250000,0,0);}
.m8d_c00201{transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);}
.m8a_c00201{transform:matrix(0.313583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313583,0.000000,0.000000,0.250000,0,0);}
.m8_c00201{transform:matrix(0.313838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313838,0.000000,0.000000,0.250000,0,0);}
.m98_c00201{transform:matrix(0.314895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314895,0.000000,0.000000,0.250000,0,0);}
.m61_c00201{transform:matrix(0.314943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314943,0.000000,0.000000,0.250000,0,0);}
.m42_c00201{transform:matrix(0.315578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315578,0.000000,0.000000,0.250000,0,0);}
.m8f_c00201{transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);}
.m22_c00201{transform:matrix(0.316251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316251,0.000000,0.000000,0.250000,0,0);}
.m6d_c00201{transform:matrix(0.318771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318771,0.000000,0.000000,0.250000,0,0);}
.mbb_c00201{transform:matrix(0.318957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318957,0.000000,0.000000,0.250000,0,0);}
.m37_c00201{transform:matrix(0.319183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319183,0.000000,0.000000,0.250000,0,0);}
.m51_c00201{transform:matrix(0.319290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319290,0.000000,0.000000,0.250000,0,0);}
.m7e_c00201{transform:matrix(0.319876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319876,0.000000,0.000000,0.250000,0,0);}
.m69_c00201{transform:matrix(0.320064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320064,0.000000,0.000000,0.250000,0,0);}
.m4_c00201{transform:matrix(0.320357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320357,0.000000,0.000000,0.250000,0,0);}
.ma4_c00201{transform:matrix(0.321033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321033,0.000000,0.000000,0.250000,0,0);}
.m3a_c00201{transform:matrix(0.321107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321107,0.000000,0.000000,0.250000,0,0);}
.m59_c00201{transform:matrix(0.322188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322188,0.000000,0.000000,0.250000,0,0);}
.m48_c00201{transform:matrix(0.322864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322864,0.000000,0.000000,0.250000,0,0);}
.m3f_c00201{transform:matrix(0.322941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322941,0.000000,0.000000,0.250000,0,0);}
.mbe_c00201{transform:matrix(0.322961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322961,0.000000,0.000000,0.250000,0,0);}
.m35_c00201{transform:matrix(0.323312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323312,0.000000,0.000000,0.250000,0,0);}
.m4c_c00201{transform:matrix(0.324775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324775,0.000000,0.000000,0.250000,0,0);}
.m34_c00201{transform:matrix(0.325136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325136,0.000000,0.000000,0.250000,0,0);}
.m66_c00201{transform:matrix(0.325597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325597,0.000000,0.000000,0.250000,0,0);}
.m84_c00201{transform:matrix(0.325819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325819,0.000000,0.000000,0.250000,0,0);}
.m30_c00201{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m50_c00201{transform:matrix(0.329090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329090,0.000000,0.000000,0.250000,0,0);}
.m24_c00201{transform:matrix(0.329576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329576,0.000000,0.000000,0.250000,0,0);}
.m7a_c00201{transform:matrix(0.330943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330943,0.000000,0.000000,0.250000,0,0);}
.m3e_c00201{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m6a_c00201{transform:matrix(0.334657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334657,0.000000,0.000000,0.250000,0,0);}
.mb0_c00201{transform:matrix(0.334943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334943,0.000000,0.000000,0.250000,0,0);}
.m62_c00201{transform:matrix(0.336403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336403,0.000000,0.000000,0.250000,0,0);}
.m5d_c00201{transform:matrix(0.337438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337438,0.000000,0.000000,0.250000,0,0);}
.m41_c00201{transform:matrix(0.338565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338565,0.000000,0.000000,0.250000,0,0);}
.mba_c00201{transform:matrix(0.338655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338655,0.000000,0.000000,0.250000,0,0);}
.m63_c00201{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.ma3_c00201{transform:matrix(0.339847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339847,0.000000,0.000000,0.250000,0,0);}
.m44_c00201{transform:matrix(0.342616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342616,0.000000,0.000000,0.250000,0,0);}
.mb9_c00201{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.md_c00201{transform:matrix(0.343691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343691,0.000000,0.000000,0.250000,0,0);}
.mbc_c00201{transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);}
.m45_c00201{transform:matrix(0.346540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346540,0.000000,0.000000,0.250000,0,0);}
.m6e_c00201{transform:matrix(0.346902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346902,0.000000,0.000000,0.250000,0,0);}
.mb7_c00201{transform:matrix(0.348306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348306,0.000000,0.000000,0.250000,0,0);}
.m2b_c00201{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.mac_c00201{transform:matrix(0.350956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350956,0.000000,0.000000,0.250000,0,0);}
.m85_c00201{transform:matrix(0.352464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352464,0.000000,0.000000,0.250000,0,0);}
.m38_c00201{transform:matrix(0.353460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353460,0.000000,0.000000,0.250000,0,0);}
.m3c_c00201{transform:matrix(0.355222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355222,0.000000,0.000000,0.250000,0,0);}
.m3d_c00201{transform:matrix(0.359212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359212,0.000000,0.000000,0.250000,0,0);}
.m6_c00201{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);}
.m95_c00201{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m6b_c00201{transform:matrix(0.363573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363573,0.000000,0.000000,0.250000,0,0);}
.m81_c00201{transform:matrix(0.365874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365874,0.000000,0.000000,0.250000,0,0);}
.m70_c00201{transform:matrix(0.367551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367551,0.000000,0.000000,0.250000,0,0);}
.m92_c00201{transform:matrix(0.374714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374714,0.000000,0.000000,0.250000,0,0);}
.m4a_c00201{transform:matrix(0.397125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397125,0.000000,0.000000,0.250000,0,0);}
.m68_c00201{transform:matrix(0.423588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423588,0.000000,0.000000,0.250000,0,0);}
.m1b_c00201{transform:matrix(0.440744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440744,0.000000,0.000000,0.250000,0,0);}
.v0_c00201{vertical-align:0.000000px;}
.v1_c00201{vertical-align:22.806036px;}
.ls12_c00201{letter-spacing:-4.989600px;}
.ls5_c00201{letter-spacing:-2.744280px;}
.ls6_c00201{letter-spacing:-2.390850px;}
.ls11_c00201{letter-spacing:-2.140538px;}
.ls15_c00201{letter-spacing:-1.995840px;}
.ls9_c00201{letter-spacing:-1.936678px;}
.ls13_c00201{letter-spacing:-1.772021px;}
.ls7_c00201{letter-spacing:-1.621620px;}
.lsb_c00201{letter-spacing:-1.325095px;}
.ls4_c00201{letter-spacing:0.000000px;}
.ls3_c00201{letter-spacing:0.525334px;}
.lse_c00201{letter-spacing:0.533174px;}
.ls14_c00201{letter-spacing:1.474070px;}
.ls8_c00201{letter-spacing:1.764180px;}
.ls0_c00201{letter-spacing:2.258150px;}
.ls17_c00201{letter-spacing:3.112798px;}
.ls16_c00201{letter-spacing:3.167683px;}
.lsa_c00201{letter-spacing:3.567564px;}
.ls2_c00201{letter-spacing:3.920400px;}
.ls1_c00201{letter-spacing:22.469436px;}
.lsc_c00201{letter-spacing:31.363200px;}
.lsd_c00201{letter-spacing:51.321798px;}
.ls10_c00201{letter-spacing:58.449798px;}
.lsf_c00201{letter-spacing:59.875398px;}
.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:-21.366180px;}
.ws0_c00201{word-spacing:-19.602000px;}
.ws6_c00201{word-spacing:-17.829979px;}
.ws7_c00201{word-spacing:0.000000px;}
.ws5_c00201{word-spacing:1.960200px;}
.ws3_c00201{word-spacing:2.352240px;}
.ws2_c00201{word-spacing:3.449952px;}
.ws4_c00201{word-spacing:18.586962px;}
._18_c00201{margin-left:-20.307672px;}
._17_c00201{margin-left:-11.003573px;}
._a_c00201{margin-left:-9.487368px;}
._12_c00201{margin-left:-6.870600px;}
._6_c00201{margin-left:-3.920400px;}
._2_c00201{margin-left:-2.665872px;}
._b_c00201{width:3.763584px;}
._4_c00201{width:4.861296px;}
._8_c00201{width:6.272640px;}
._0_c00201{width:8.442403px;}
._14_c00201{width:10.663488px;}
._1a_c00201{width:14.584284px;}
._5_c00201{width:16.308864px;}
._15_c00201{width:17.406576px;}
._1b_c00201{width:20.855736px;}
._f_c00201{width:22.267872px;}
._13_c00201{width:23.679216px;}
._d_c00201{width:26.022744px;}
._c_c00201{width:27.442800px;}
._10_c00201{width:28.923048px;}
._1_c00201{width:30.108672px;}
._3_c00201{width:31.494672px;}
._11_c00201{width:32.539320px;}
._e_c00201{width:34.860197px;}
._19_c00201{width:37.269461px;}
._1c_c00201{width:39.596040px;}
._16_c00201{width:41.477436px;}
._7_c00201{width:46.838088px;}
._9_c00201{width:101.904154px;}
.fc0_c00201{color:transparent;}
.fsc_c00201{font-size:22.176000px;}
.fs5_c00201{font-size:23.166000px;}
.fsd_c00201{font-size:27.720000px;}
.fs11_c00201{font-size:28.314000px;}
.fs6_c00201{font-size:31.363200px;}
.fs10_c00201{font-size:33.264000px;}
.fs2_c00201{font-size:34.056198px;}
.fs7_c00201{font-size:39.204000px;}
.fs4_c00201{font-size:46.332000px;}
.fse_c00201{font-size:48.114000px;}
.fs8_c00201{font-size:51.321798px;}
.fsf_c00201{font-size:57.024000px;}
.fsa_c00201{font-size:58.449798px;}
.fs9_c00201{font-size:59.875398px;}
.fs1_c00201{font-size:68.310000px;}
.fs0_c00201{font-size:78.408000px;}
.fs3_c00201{font-size:91.872198px;}
.fsb_c00201{font-size:142.560000px;}
.y0_c00201{bottom:0.000000px;}
.y27_c00201{bottom:60.851385px;}
.y26_c00201{bottom:62.281935px;}
.y1_c00201{bottom:76.500000px;}
.y25_c00201{bottom:128.567385px;}
.y24_c00201{bottom:147.100185px;}
.y23_c00201{bottom:176.329935px;}
.y22_c00201{bottom:197.357535px;}
.y21_c00201{bottom:212.321385px;}
.y20_c00201{bottom:212.323167px;}
.y1f_c00201{bottom:245.822985px;}
.y1e_c00201{bottom:283.249935px;}
.y1d_c00201{bottom:309.623535px;}
.y1c_c00201{bottom:327.443535px;}
.y1b_c00201{bottom:342.768735px;}
.y1a_c00201{bottom:375.196185px;}
.y19_c00201{bottom:406.920735px;}
.y18_c00201{bottom:439.704585px;}
.y17_c00201{bottom:459.311535px;}
.y16_c00201{bottom:466.434585px;}
.y15_c00201{bottom:472.141935px;}
.y14_c00201{bottom:527.027535px;}
.y13_c00201{bottom:535.937535px;}
.y12_c00201{bottom:548.406585px;}
.y11_c00201{bottom:568.369935px;}
.y10_c00201{bottom:601.158735px;}
.yf_c00201{bottom:634.298985px;}
.ye_c00201{bottom:667.805535px;}
.yd_c00201{bottom:700.594335px;}
.yc_c00201{bottom:733.026735px;}
.yb_c00201{bottom:765.454185px;}
.ya_c00201{bottom:795.035385px;}
.y9_c00201{bottom:805.732335px;}
.y8_c00201{bottom:816.424335px;}
.y7_c00201{bottom:830.318985px;}
.y6_c00201{bottom:862.751385px;}
.y5_c00201{bottom:895.540185px;}
.y4_c00201{bottom:924.769935px;}
.y3_c00201{bottom:929.046735px;}
.y2_c00201{bottom:1078.729785px;}
.h7_c00201{height:20.887891px;}
.hd_c00201{height:23.128875px;}
.h6_c00201{height:24.161414px;}
.he_c00201{height:28.911094px;}
.h13_c00201{height:29.530617px;}
.h9_c00201{height:34.180317px;}
.h12_c00201{height:34.693313px;}
.h10_c00201{height:35.519550px;}
.h8_c00201{height:38.476582px;}
.hb_c00201{height:38.927565px;}
.ha_c00201{height:39.877015px;}
.h5_c00201{height:48.322828px;}
.h11_c00201{height:59.474250px;}
.h3_c00201{height:67.042529px;}
.hf_c00201{height:72.987434px;}
.h2_c00201{height:76.953164px;}
.h4_c00201{height:95.819832px;}
.hc_c00201{height:139.914844px;}
.h1_c00201{height:1110.000000px;}
.h0_c00201{height:1263.000000px;}
.w1_c00201{width:733.500000px;}
.w0_c00201{width:892.500000px;}
.x0_c00201{left:0.000000px;}
.x4f_c00201{left:49.138185px;}
.x4_c00201{left:57.513585px;}
.x58_c00201{left:59.315385px;}
.x1_c00201{left:79.500000px;}
.x54_c00201{left:90.465735px;}
.x59_c00201{left:93.386235px;}
.x50_c00201{left:100.157835px;}
.x40_c00201{left:101.350785px;}
.x49_c00201{left:102.439785px;}
.x32_c00201{left:111.458685px;}
.x15_c00201{left:112.760535px;}
.x79_c00201{left:113.829735px;}
.x38_c00201{left:124.120785px;}
.x5a_c00201{left:133.555485px;}
.x41_c00201{left:135.228585px;}
.x12_c00201{left:144.103935px;}
.x66_c00201{left:145.970085px;}
.x70_c00201{left:148.697535px;}
.x16_c00201{left:156.236385px;}
.x13_c00201{left:166.601685px;}
.x67_c00201{left:167.631285px;}
.x6c_c00201{left:169.873635px;}
.x23_c00201{left:177.100635px;}
.x33_c00201{left:178.575735px;}
.x5b_c00201{left:179.743935px;}
.x5_c00201{left:190.817085px;}
.x17_c00201{left:200.692335px;}
.x74_c00201{left:201.885285px;}
.x14_c00201{left:210.181485px;}
.x42_c00201{left:212.527785px;}
.x6_c00201{left:223.115835px;}
.x71_c00201{left:233.451435px;}
.x18_c00201{left:234.951285px;}
.x6d_c00201{left:244.816635px;}
.x19_c00201{left:246.415485px;}
.x4a_c00201{left:255.909585px;}
.x5c_c00201{left:264.458235px;}
.x1a_c00201{left:267.259935px;}
.x75_c00201{left:268.868685px;}
.x2a_c00201{left:278.154885px;}
.x7_c00201{left:280.129935px;}
.x8_c00201{left:289.648785px;}
.x77_c00201{left:290.975385px;}
.x7b_c00201{left:292.301985px;}
.x4b_c00201{left:297.969735px;}
.x43_c00201{left:300.063585px;}
.x1b_c00201{left:301.310985px;}
.x24_c00201{left:311.176335px;}
.x6e_c00201{left:312.359385px;}
.x25_c00201{left:322.967235px;}
.x55_c00201{left:324.100785px;}
.x9_c00201{left:332.887035px;}
.x39_c00201{left:333.911685px;}
.x26_c00201{left:344.791785px;}
.x56_c00201{left:345.826335px;}
.x1c_c00201{left:347.474685px;}
.x2b_c00201{left:356.869785px;}
.x27_c00201{left:367.581585px;}
.x1d_c00201{left:379.199235px;}
.xa_c00201{left:389.361585px;}
.x7a_c00201{left:390.698085px;}
.x44_c00201{left:392.415735px;}
.x28_c00201{left:400.048635px;}
.x1e_c00201{left:402.835485px;}
.x3a_c00201{left:409.869435px;}
.x68_c00201{left:410.899035px;}
.x72_c00201{left:412.814685px;}
.xb_c00201{left:423.199785px;}
.x29_c00201{left:431.966235px;}
.x34_c00201{left:433.550235px;}
.x60_c00201{left:434.574885px;}
.xc_c00201{left:443.653185px;}
.x2c_c00201{left:444.989685px;}
.x4c_c00201{left:447.024135px;}
.x45_c00201{left:455.820285px;}
.x1f_c00201{left:466.091535px;}
.x51_c00201{left:467.675535px;}
.x5f_c00201{left:470.021835px;}
.xd_c00201{left:478.080435px;}
.x35_c00201{left:489.143685px;}
.x52_c00201{left:498.929835px;}
.x46_c00201{left:500.533635px;}
.x73_c00201{left:501.568185px;}
.x2d_c00201{left:509.661435px;}
.xe_c00201{left:511.240485px;}
.x3b_c00201{left:512.299785px;}
.x61_c00201{left:520.670235px;}
.x47_c00201{left:521.947335px;}
.x5d_c00201{left:525.199485px;}
.x20_c00201{left:531.377085px;}
.x3c_c00201{left:533.312535px;}
.x6f_c00201{left:534.342135px;}
.xf_c00201{left:543.638235px;}
.x36_c00201{left:553.815435px;}
.x62_c00201{left:555.434085px;}
.x4d_c00201{left:566.908185px;}
.x69_c00201{left:576.986385px;}
.x21_c00201{left:587.312085px;}
.x48_c00201{left:588.920835px;}
.x3d_c00201{left:599.588085px;}
.x10_c00201{left:609.062385px;}
.x2e_c00201{left:610.324635px;}
.x37_c00201{left:620.501835px;}
.x78_c00201{left:623.585685px;}
.x3e_c00201{left:631.881885px;}
.x63_c00201{left:633.455985px;}
.x6a_c00201{left:635.574585px;}
.x57_c00201{left:643.217385px;}
.x2_c00201{left:644.454885px;}
.x22_c00201{left:654.498435px;}
.x6b_c00201{left:656.458635px;}
.x11_c00201{left:663.982635px;}
.x5e_c00201{left:665.561685px;}
.x3_c00201{left:666.967485px;}
.x3f_c00201{left:675.699285px;}
.x2f_c00201{left:676.941735px;}
.x53_c00201{left:687.222885px;}
.x4e_c00201{left:688.707885px;}
.x65_c00201{left:693.459885px;}
.x7c_c00201{left:694.509285px;}
.x30_c00201{left:696.974385px;}
.x31_c00201{left:699.825585px;}
.x64_c00201{left:702.181785px;}
.x76_c00201{left:721.486785px;}
@media print{
.v0_c00201{vertical-align:0.000000pt;}
.v1_c00201{vertical-align:20.272032pt;}
.ls12_c00201{letter-spacing:-4.435200pt;}
.ls5_c00201{letter-spacing:-2.439360pt;}
.ls6_c00201{letter-spacing:-2.125200pt;}
.ls11_c00201{letter-spacing:-1.902701pt;}
.ls15_c00201{letter-spacing:-1.774080pt;}
.ls9_c00201{letter-spacing:-1.721491pt;}
.ls13_c00201{letter-spacing:-1.575130pt;}
.ls7_c00201{letter-spacing:-1.441440pt;}
.lsb_c00201{letter-spacing:-1.177862pt;}
.ls4_c00201{letter-spacing:0.000000pt;}
.ls3_c00201{letter-spacing:0.466963pt;}
.lse_c00201{letter-spacing:0.473933pt;}
.ls14_c00201{letter-spacing:1.310285pt;}
.ls8_c00201{letter-spacing:1.568160pt;}
.ls0_c00201{letter-spacing:2.007245pt;}
.ls17_c00201{letter-spacing:2.766931pt;}
.ls16_c00201{letter-spacing:2.815718pt;}
.lsa_c00201{letter-spacing:3.171168pt;}
.ls2_c00201{letter-spacing:3.484800pt;}
.ls1_c00201{letter-spacing:19.972832pt;}
.lsc_c00201{letter-spacing:27.878400pt;}
.lsd_c00201{letter-spacing:45.619376pt;}
.ls10_c00201{letter-spacing:51.955376pt;}
.lsf_c00201{letter-spacing:53.222576pt;}
.ws1_c00201{word-spacing:-18.992160pt;}
.ws0_c00201{word-spacing:-17.424000pt;}
.ws6_c00201{word-spacing:-15.848870pt;}
.ws7_c00201{word-spacing:0.000000pt;}
.ws5_c00201{word-spacing:1.742400pt;}
.ws3_c00201{word-spacing:2.090880pt;}
.ws2_c00201{word-spacing:3.066624pt;}
.ws4_c00201{word-spacing:16.521744pt;}
._18_c00201{margin-left:-18.051264pt;}
._17_c00201{margin-left:-9.780954pt;}
._a_c00201{margin-left:-8.433216pt;}
._12_c00201{margin-left:-6.107200pt;}
._6_c00201{margin-left:-3.484800pt;}
._2_c00201{margin-left:-2.369664pt;}
._b_c00201{width:3.345408pt;}
._4_c00201{width:4.321152pt;}
._8_c00201{width:5.575680pt;}
._0_c00201{width:7.504358pt;}
._14_c00201{width:9.478656pt;}
._1a_c00201{width:12.963808pt;}
._5_c00201{width:14.496768pt;}
._15_c00201{width:15.472512pt;}
._1b_c00201{width:18.538432pt;}
._f_c00201{width:19.793664pt;}
._13_c00201{width:21.048192pt;}
._d_c00201{width:23.131328pt;}
._c_c00201{width:24.393600pt;}
._10_c00201{width:25.709376pt;}
._1_c00201{width:26.763264pt;}
._3_c00201{width:27.995264pt;}
._11_c00201{width:28.923840pt;}
._e_c00201{width:30.986842pt;}
._19_c00201{width:33.128410pt;}
._1c_c00201{width:35.196480pt;}
._16_c00201{width:36.868832pt;}
._7_c00201{width:41.633856pt;}
._9_c00201{width:90.581470pt;}
.fsc_c00201{font-size:19.712000pt;}
.fs5_c00201{font-size:20.592000pt;}
.fsd_c00201{font-size:24.640000pt;}
.fs11_c00201{font-size:25.168000pt;}
.fs6_c00201{font-size:27.878400pt;}
.fs10_c00201{font-size:29.568000pt;}
.fs2_c00201{font-size:30.272176pt;}
.fs7_c00201{font-size:34.848000pt;}
.fs4_c00201{font-size:41.184000pt;}
.fse_c00201{font-size:42.768000pt;}
.fs8_c00201{font-size:45.619376pt;}
.fsf_c00201{font-size:50.688000pt;}
.fsa_c00201{font-size:51.955376pt;}
.fs9_c00201{font-size:53.222576pt;}
.fs1_c00201{font-size:60.720000pt;}
.fs0_c00201{font-size:69.696000pt;}
.fs3_c00201{font-size:81.664176pt;}
.fsb_c00201{font-size:126.720000pt;}
.y0_c00201{bottom:0.000000pt;}
.y27_c00201{bottom:54.090120pt;}
.y26_c00201{bottom:55.361720pt;}
.y1_c00201{bottom:68.000000pt;}
.y25_c00201{bottom:114.282120pt;}
.y24_c00201{bottom:130.755720pt;}
.y23_c00201{bottom:156.737720pt;}
.y22_c00201{bottom:175.428920pt;}
.y21_c00201{bottom:188.730120pt;}
.y20_c00201{bottom:188.731704pt;}
.y1f_c00201{bottom:218.509320pt;}
.y1e_c00201{bottom:251.777720pt;}
.y1d_c00201{bottom:275.220920pt;}
.y1c_c00201{bottom:291.060920pt;}
.y1b_c00201{bottom:304.683320pt;}
.y1a_c00201{bottom:333.507720pt;}
.y19_c00201{bottom:361.707320pt;}
.y18_c00201{bottom:390.848520pt;}
.y17_c00201{bottom:408.276920pt;}
.y16_c00201{bottom:414.608520pt;}
.y15_c00201{bottom:419.681720pt;}
.y14_c00201{bottom:468.468920pt;}
.y13_c00201{bottom:476.388920pt;}
.y12_c00201{bottom:487.472520pt;}
.y11_c00201{bottom:505.217720pt;}
.y10_c00201{bottom:534.363320pt;}
.yf_c00201{bottom:563.821320pt;}
.ye_c00201{bottom:593.604920pt;}
.yd_c00201{bottom:622.750520pt;}
.yc_c00201{bottom:651.579320pt;}
.yb_c00201{bottom:680.403720pt;}
.ya_c00201{bottom:706.698120pt;}
.y9_c00201{bottom:716.206520pt;}
.y8_c00201{bottom:725.710520pt;}
.y7_c00201{bottom:738.061320pt;}
.y6_c00201{bottom:766.890120pt;}
.y5_c00201{bottom:796.035720pt;}
.y4_c00201{bottom:822.017720pt;}
.y3_c00201{bottom:825.819320pt;}
.y2_c00201{bottom:958.870920pt;}
.h7_c00201{height:18.567014pt;}
.hd_c00201{height:20.559000pt;}
.h6_c00201{height:21.476813pt;}
.he_c00201{height:25.698750pt;}
.h13_c00201{height:26.249438pt;}
.h9_c00201{height:30.382504pt;}
.h12_c00201{height:30.838500pt;}
.h10_c00201{height:31.572934pt;}
.h8_c00201{height:34.201406pt;}
.hb_c00201{height:34.602280pt;}
.ha_c00201{height:35.446236pt;}
.h5_c00201{height:42.953625pt;}
.h11_c00201{height:52.866000pt;}
.h3_c00201{height:59.593359pt;}
.hf_c00201{height:64.877720pt;}
.h2_c00201{height:68.402813pt;}
.h4_c00201{height:85.173184pt;}
.hc_c00201{height:124.368750pt;}
.h1_c00201{height:986.666667pt;}
.h0_c00201{height:1122.666667pt;}
.w1_c00201{width:652.000000pt;}
.w0_c00201{width:793.333333pt;}
.x0_c00201{left:0.000000pt;}
.x4f_c00201{left:43.678387pt;}
.x4_c00201{left:51.123187pt;}
.x58_c00201{left:52.724787pt;}
.x1_c00201{left:70.666667pt;}
.x54_c00201{left:80.413987pt;}
.x59_c00201{left:83.009987pt;}
.x50_c00201{left:89.029187pt;}
.x40_c00201{left:90.089587pt;}
.x49_c00201{left:91.057587pt;}
.x32_c00201{left:99.074387pt;}
.x15_c00201{left:100.231587pt;}
.x79_c00201{left:101.181987pt;}
.x38_c00201{left:110.329587pt;}
.x5a_c00201{left:118.715987pt;}
.x41_c00201{left:120.203187pt;}
.x12_c00201{left:128.092387pt;}
.x66_c00201{left:129.751187pt;}
.x70_c00201{left:132.175587pt;}
.x16_c00201{left:138.876787pt;}
.x13_c00201{left:148.090387pt;}
.x67_c00201{left:149.005587pt;}
.x6c_c00201{left:150.998787pt;}
.x23_c00201{left:157.422787pt;}
.x33_c00201{left:158.733987pt;}
.x5b_c00201{left:159.772387pt;}
.x5_c00201{left:169.615187pt;}
.x17_c00201{left:178.393187pt;}
.x74_c00201{left:179.453587pt;}
.x14_c00201{left:186.827987pt;}
.x42_c00201{left:188.913587pt;}
.x6_c00201{left:198.325187pt;}
.x71_c00201{left:207.512387pt;}
.x18_c00201{left:208.845587pt;}
.x6d_c00201{left:217.614787pt;}
.x19_c00201{left:219.035987pt;}
.x4a_c00201{left:227.475187pt;}
.x5c_c00201{left:235.073987pt;}
.x1a_c00201{left:237.564387pt;}
.x75_c00201{left:238.994387pt;}
.x2a_c00201{left:247.248787pt;}
.x7_c00201{left:249.004387pt;}
.x8_c00201{left:257.465587pt;}
.x77_c00201{left:258.644787pt;}
.x7b_c00201{left:259.823987pt;}
.x4b_c00201{left:264.861987pt;}
.x43_c00201{left:266.723187pt;}
.x1b_c00201{left:267.831987pt;}
.x24_c00201{left:276.601187pt;}
.x6e_c00201{left:277.652787pt;}
.x25_c00201{left:287.081987pt;}
.x55_c00201{left:288.089587pt;}
.x9_c00201{left:295.899587pt;}
.x39_c00201{left:296.810387pt;}
.x26_c00201{left:306.481587pt;}
.x56_c00201{left:307.401187pt;}
.x1c_c00201{left:308.866387pt;}
.x2b_c00201{left:317.217587pt;}
.x27_c00201{left:326.739187pt;}
.x1d_c00201{left:337.065987pt;}
.xa_c00201{left:346.099187pt;}
.x7a_c00201{left:347.287187pt;}
.x44_c00201{left:348.813987pt;}
.x28_c00201{left:355.598787pt;}
.x1e_c00201{left:358.075987pt;}
.x3a_c00201{left:364.328387pt;}
.x68_c00201{left:365.243587pt;}
.x72_c00201{left:366.946387pt;}
.xb_c00201{left:376.177587pt;}
.x29_c00201{left:383.969987pt;}
.x34_c00201{left:385.377987pt;}
.x60_c00201{left:386.288787pt;}
.xc_c00201{left:394.358387pt;}
.x2c_c00201{left:395.546387pt;}
.x4c_c00201{left:397.354787pt;}
.x45_c00201{left:405.173587pt;}
.x1f_c00201{left:414.303587pt;}
.x51_c00201{left:415.711587pt;}
.x5f_c00201{left:417.797187pt;}
.xd_c00201{left:424.960387pt;}
.x35_c00201{left:434.794387pt;}
.x52_c00201{left:443.493187pt;}
.x46_c00201{left:444.918787pt;}
.x73_c00201{left:445.838387pt;}
.x2d_c00201{left:453.032387pt;}
.xe_c00201{left:454.435987pt;}
.x3b_c00201{left:455.377587pt;}
.x61_c00201{left:462.817987pt;}
.x47_c00201{left:463.953187pt;}
.x5d_c00201{left:466.843987pt;}
.x20_c00201{left:472.335187pt;}
.x3c_c00201{left:474.055587pt;}
.x6f_c00201{left:474.970787pt;}
.xf_c00201{left:483.233987pt;}
.x36_c00201{left:492.280387pt;}
.x62_c00201{left:493.719187pt;}
.x4d_c00201{left:503.918387pt;}
.x69_c00201{left:512.876787pt;}
.x21_c00201{left:522.055187pt;}
.x48_c00201{left:523.485187pt;}
.x3d_c00201{left:532.967187pt;}
.x10_c00201{left:541.388787pt;}
.x2e_c00201{left:542.510787pt;}
.x37_c00201{left:551.557187pt;}
.x78_c00201{left:554.298387pt;}
.x3e_c00201{left:561.672787pt;}
.x63_c00201{left:563.071987pt;}
.x6a_c00201{left:564.955187pt;}
.x57_c00201{left:571.748787pt;}
.x2_c00201{left:572.848787pt;}
.x22_c00201{left:581.776387pt;}
.x6b_c00201{left:583.518787pt;}
.x11_c00201{left:590.206787pt;}
.x5e_c00201{left:591.610387pt;}
.x3_c00201{left:592.859987pt;}
.x3f_c00201{left:600.621587pt;}
.x2f_c00201{left:601.725987pt;}
.x53_c00201{left:610.864787pt;}
.x4e_c00201{left:612.184787pt;}
.x65_c00201{left:616.408787pt;}
.x7c_c00201{left:617.341587pt;}
.x30_c00201{left:619.532787pt;}
.x31_c00201{left:622.067187pt;}
.x64_c00201{left:624.161587pt;}
.x76_c00201{left:641.321587pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1123fb09317925be9f1c84fa.woff2')format("woff");}.ff1_c00202{font-family:ff1_c00202;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00202;src:url('chunks/assets/font_e57e82543ac677613e1ed0a7.woff2')format("woff");}.ff2_c00202{font-family:ff2_c00202;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00202;src:url('chunks/assets/font_5640a067663d42b5a10a30f5.woff2')format("woff");}.ff3_c00202{font-family:ff3_c00202;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4_c00202{transform:matrix(0.148469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148469,0.000000,0.000000,0.250000,0,0);}
.m6d_c00202{transform:matrix(0.152020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152020,0.000000,0.000000,0.250000,0,0);}
.m54_c00202{transform:matrix(0.153410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153410,0.000000,0.000000,0.250000,0,0);}
.m13_c00202{transform:matrix(0.155683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155683,0.000000,0.000000,0.250000,0,0);}
.m4e_c00202{transform:matrix(0.195842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195842,0.000000,0.000000,0.250000,0,0);}
.m1_c00202{transform:matrix(0.232384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232384,0.000000,0.000000,0.250000,0,0);}
.ma_c00202{transform:matrix(0.232627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232627,0.000000,0.000000,0.250000,0,0);}
.m71_c00202{transform:matrix(0.241713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241713,0.000000,0.000000,0.250000,0,0);}
.m41_c00202{transform:matrix(0.242595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242595,0.000000,0.000000,0.250000,0,0);}
.m6_c00202{transform:matrix(0.245973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245973,0.000000,0.000000,0.250000,0,0);}
.m4c_c00202{transform:matrix(0.248109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248109,0.000000,0.000000,0.250000,0,0);}
.m8_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);}
.m1b_c00202{transform:matrix(0.250825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250825,0.000000,0.000000,0.250000,0,0);}
.mc_c00202{transform:matrix(0.251385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251385,0.000000,0.000000,0.250000,0,0);}
.m24_c00202{transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);}
.m9f_c00202{transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);}
.ma4_c00202{transform:matrix(0.253696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253696,0.000000,0.000000,0.250000,0,0);}
.m49_c00202{transform:matrix(0.254374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254374,0.000000,0.000000,0.250000,0,0);}
.m31_c00202{transform:matrix(0.254614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254614,0.000000,0.000000,0.250000,0,0);}
.m46_c00202{transform:matrix(0.255258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255258,0.000000,0.000000,0.250000,0,0);}
.m67_c00202{transform:matrix(0.255687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255687,0.000000,0.000000,0.250000,0,0);}
.m1c_c00202{transform:matrix(0.255786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255786,0.000000,0.000000,0.250000,0,0);}
.m3a_c00202{transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);}
.m2e_c00202{transform:matrix(0.256812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256812,0.000000,0.000000,0.250000,0,0);}
.m9_c00202{transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);}
.m2f_c00202{transform:matrix(0.257697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257697,0.000000,0.000000,0.250000,0,0);}
.m45_c00202{transform:matrix(0.258621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258621,0.000000,0.000000,0.250000,0,0);}
.m39_c00202{transform:matrix(0.258802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258802,0.000000,0.000000,0.250000,0,0);}
.m5_c00202{transform:matrix(0.258839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258839,0.000000,0.000000,0.250000,0,0);}
.me_c00202{transform:matrix(0.259376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259376,0.000000,0.000000,0.250000,0,0);}
.m55_c00202{transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);}
.m84_c00202{transform:matrix(0.260588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260588,0.000000,0.000000,0.250000,0,0);}
.m58_c00202{transform:matrix(0.260954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260954,0.000000,0.000000,0.250000,0,0);}
.m85_c00202{transform:matrix(0.261958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261958,0.000000,0.000000,0.250000,0,0);}
.m90_c00202{transform:matrix(0.262285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262285,0.000000,0.000000,0.250000,0,0);}
.m80_c00202{transform:matrix(0.262549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262549,0.000000,0.000000,0.250000,0,0);}
.m72_c00202{transform:matrix(0.262618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262618,0.000000,0.000000,0.250000,0,0);}
.m81_c00202{transform:matrix(0.262726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262726,0.000000,0.000000,0.250000,0,0);}
.m28_c00202{transform:matrix(0.263537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263537,0.000000,0.000000,0.250000,0,0);}
.m3f_c00202{transform:matrix(0.263643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263643,0.000000,0.000000,0.250000,0,0);}
.m94_c00202{transform:matrix(0.264133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264133,0.000000,0.000000,0.250000,0,0);}
.ma9_c00202{transform:matrix(0.264966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264966,0.000000,0.000000,0.250000,0,0);}
.m9a_c00202{transform:matrix(0.265067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265067,0.000000,0.000000,0.250000,0,0);}
.m5c_c00202{transform:matrix(0.266448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266448,0.000000,0.000000,0.250000,0,0);}
.m97_c00202{transform:matrix(0.267275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267275,0.000000,0.000000,0.250000,0,0);}
.m38_c00202{transform:matrix(0.269492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269492,0.000000,0.000000,0.250000,0,0);}
.m4d_c00202{transform:matrix(0.269732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269732,0.000000,0.000000,0.250000,0,0);}
.m1d_c00202{transform:matrix(0.269877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269877,0.000000,0.000000,0.250000,0,0);}
.m5f_c00202{transform:matrix(0.269878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269878,0.000000,0.000000,0.250000,0,0);}
.mb_c00202{transform:matrix(0.271661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271661,0.000000,0.000000,0.250000,0,0);}
.m66_c00202{transform:matrix(0.271878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271878,0.000000,0.000000,0.250000,0,0);}
.m16_c00202{transform:matrix(0.273314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273314,0.000000,0.000000,0.250000,0,0);}
.ma2_c00202{transform:matrix(0.273454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273454,0.000000,0.000000,0.250000,0,0);}
.m27_c00202{transform:matrix(0.274089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274089,0.000000,0.000000,0.250000,0,0);}
.m62_c00202{transform:matrix(0.274757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274757,0.000000,0.000000,0.250000,0,0);}
.m8f_c00202{transform:matrix(0.276095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276095,0.000000,0.000000,0.250000,0,0);}
.m83_c00202{transform:matrix(0.276543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276543,0.000000,0.000000,0.250000,0,0);}
.m64_c00202{transform:matrix(0.276550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276550,0.000000,0.000000,0.250000,0,0);}
.m8a_c00202{transform:matrix(0.276673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276673,0.000000,0.000000,0.250000,0,0);}
.m20_c00202{transform:matrix(0.276869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276869,0.000000,0.000000,0.250000,0,0);}
.m52_c00202{transform:matrix(0.277413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277413,0.000000,0.000000,0.250000,0,0);}
.m44_c00202{transform:matrix(0.277590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277590,0.000000,0.000000,0.250000,0,0);}
.m47_c00202{transform:matrix(0.277637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277637,0.000000,0.000000,0.250000,0,0);}
.m50_c00202{transform:matrix(0.277751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277751,0.000000,0.000000,0.250000,0,0);}
.m57_c00202{transform:matrix(0.278057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278057,0.000000,0.000000,0.250000,0,0);}
.m9c_c00202{transform:matrix(0.278913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278913,0.000000,0.000000,0.250000,0,0);}
.m3b_c00202{transform:matrix(0.280163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280163,0.000000,0.000000,0.250000,0,0);}
.mf_c00202{transform:matrix(0.280468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280468,0.000000,0.000000,0.250000,0,0);}
.m10_c00202{transform:matrix(0.281218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281218,0.000000,0.000000,0.250000,0,0);}
.m6a_c00202{transform:matrix(0.281246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281246,0.000000,0.000000,0.250000,0,0);}
.m18_c00202{transform:matrix(0.281287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281287,0.000000,0.000000,0.250000,0,0);}
.m8d_c00202{transform:matrix(0.281336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281336,0.000000,0.000000,0.250000,0,0);}
.m7a_c00202{transform:matrix(0.281411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281411,0.000000,0.000000,0.250000,0,0);}
.m89_c00202{transform:matrix(0.281712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281712,0.000000,0.000000,0.250000,0,0);}
.m4b_c00202{transform:matrix(0.281945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281945,0.000000,0.000000,0.250000,0,0);}
.m29_c00202{transform:matrix(0.282163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282163,0.000000,0.000000,0.250000,0,0);}
.m5a_c00202{transform:matrix(0.282805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282805,0.000000,0.000000,0.250000,0,0);}
.m23_c00202{transform:matrix(0.283089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283089,0.000000,0.000000,0.250000,0,0);}
.ma5_c00202{transform:matrix(0.283184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283184,0.000000,0.000000,0.250000,0,0);}
.m8b_c00202{transform:matrix(0.283465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283465,0.000000,0.000000,0.250000,0,0);}
.m8e_c00202{transform:matrix(0.284013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284013,0.000000,0.000000,0.250000,0,0);}
.m96_c00202{transform:matrix(0.284443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284443,0.000000,0.000000,0.250000,0,0);}
.m34_c00202{transform:matrix(0.284997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284997,0.000000,0.000000,0.250000,0,0);}
.m4f_c00202{transform:matrix(0.285055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285055,0.000000,0.000000,0.250000,0,0);}
.m42_c00202{transform:matrix(0.285567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285567,0.000000,0.000000,0.250000,0,0);}
.m9b_c00202{transform:matrix(0.286979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286979,0.000000,0.000000,0.250000,0,0);}
.m78_c00202{transform:matrix(0.288353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288353,0.000000,0.000000,0.250000,0,0);}
.m65_c00202{transform:matrix(0.288817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288817,0.000000,0.000000,0.250000,0,0);}
.m5b_c00202{transform:matrix(0.289677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289677,0.000000,0.000000,0.250000,0,0);}
.m68_c00202{transform:matrix(0.290092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290092,0.000000,0.000000,0.250000,0,0);}
.m51_c00202{transform:matrix(0.290837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290837,0.000000,0.000000,0.250000,0,0);}
.m0_c00202{transform:matrix(0.291044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291044,0.000000,0.000000,0.250000,0,0);}
.m2a_c00202{transform:matrix(0.291105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291105,0.000000,0.000000,0.250000,0,0);}
.ma3_c00202{transform:matrix(0.291158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291158,0.000000,0.000000,0.250000,0,0);}
.m3d_c00202{transform:matrix(0.291199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291199,0.000000,0.000000,0.250000,0,0);}
.m76_c00202{transform:matrix(0.291263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291263,0.000000,0.000000,0.250000,0,0);}
.m74_c00202{transform:matrix(0.291422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291422,0.000000,0.000000,0.250000,0,0);}
.m98_c00202{transform:matrix(0.291474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291474,0.000000,0.000000,0.250000,0,0);}
.m79_c00202{transform:matrix(0.293261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293261,0.000000,0.000000,0.250000,0,0);}
.ma6_c00202{transform:matrix(0.293612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293612,0.000000,0.000000,0.250000,0,0);}
.m5e_c00202{transform:matrix(0.293616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293616,0.000000,0.000000,0.250000,0,0);}
.m1e_c00202{transform:matrix(0.294220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294220,0.000000,0.000000,0.250000,0,0);}
.ma0_c00202{transform:matrix(0.294893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294893,0.000000,0.000000,0.250000,0,0);}
.m37_c00202{transform:matrix(0.295548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295548,0.000000,0.000000,0.250000,0,0);}
.m6f_c00202{transform:matrix(0.295951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295951,0.000000,0.000000,0.250000,0,0);}
.m9e_c00202{transform:matrix(0.296594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296594,0.000000,0.000000,0.250000,0,0);}
.m15_c00202{transform:matrix(0.296960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296960,0.000000,0.000000,0.250000,0,0);}
.m26_c00202{transform:matrix(0.297252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297252,0.000000,0.000000,0.250000,0,0);}
.m59_c00202{transform:matrix(0.297295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297295,0.000000,0.000000,0.250000,0,0);}
.m40_c00202{transform:matrix(0.298359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298359,0.000000,0.000000,0.250000,0,0);}
.m75_c00202{transform:matrix(0.298421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298421,0.000000,0.000000,0.250000,0,0);}
.m1a_c00202{transform:matrix(0.299302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299302,0.000000,0.000000,0.250000,0,0);}
.m30_c00202{transform:matrix(0.299541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299541,0.000000,0.000000,0.250000,0,0);}
.m6c_c00202{transform:matrix(0.299653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299653,0.000000,0.000000,0.250000,0,0);}
.m7c_c00202{transform:matrix(0.300457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300457,0.000000,0.000000,0.250000,0,0);}
.m19_c00202{transform:matrix(0.300883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300883,0.000000,0.000000,0.250000,0,0);}
.m5d_c00202{transform:matrix(0.301468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301468,0.000000,0.000000,0.250000,0,0);}
.m53_c00202{transform:matrix(0.302358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302358,0.000000,0.000000,0.250000,0,0);}
.m14_c00202{transform:matrix(0.302823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302823,0.000000,0.000000,0.250000,0,0);}
.ma7_c00202{transform:matrix(0.303321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303321,0.000000,0.000000,0.250000,0,0);}
.m6e_c00202{transform:matrix(0.303456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303456,0.000000,0.000000,0.250000,0,0);}
.m7f_c00202{transform:matrix(0.303482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303482,0.000000,0.000000,0.250000,0,0);}
.m35_c00202{transform:matrix(0.303516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303516,0.000000,0.000000,0.250000,0,0);}
.m86_c00202{transform:matrix(0.303652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303652,0.000000,0.000000,0.250000,0,0);}
.m22_c00202{transform:matrix(0.304530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304530,0.000000,0.000000,0.250000,0,0);}
.m9d_c00202{transform:matrix(0.305087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305087,0.000000,0.000000,0.250000,0,0);}
.m82_c00202{transform:matrix(0.305843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305843,0.000000,0.000000,0.250000,0,0);}
.m2_c00202{transform:matrix(0.307431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307431,0.000000,0.000000,0.250000,0,0);}
.m60_c00202{transform:matrix(0.307664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307664,0.000000,0.000000,0.250000,0,0);}
.m61_c00202{transform:matrix(0.307718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307718,0.000000,0.000000,0.250000,0,0);}
.m63_c00202{transform:matrix(0.308048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308048,0.000000,0.000000,0.250000,0,0);}
.m2c_c00202{transform:matrix(0.308240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308240,0.000000,0.000000,0.250000,0,0);}
.m2d_c00202{transform:matrix(0.308613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308613,0.000000,0.000000,0.250000,0,0);}
.m7_c00202{transform:matrix(0.308636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308636,0.000000,0.000000,0.250000,0,0);}
.m73_c00202{transform:matrix(0.309365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309365,0.000000,0.000000,0.250000,0,0);}
.m69_c00202{transform:matrix(0.310853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310853,0.000000,0.000000,0.250000,0,0);}
.ma8_c00202{transform:matrix(0.312034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312034,0.000000,0.000000,0.250000,0,0);}
.m93_c00202{transform:matrix(0.312613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312613,0.000000,0.000000,0.250000,0,0);}
.m32_c00202{transform:matrix(0.313639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313639,0.000000,0.000000,0.250000,0,0);}
.m77_c00202{transform:matrix(0.314374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314374,0.000000,0.000000,0.250000,0,0);}
.m3e_c00202{transform:matrix(0.315002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315002,0.000000,0.000000,0.250000,0,0);}
.m17_c00202{transform:matrix(0.316777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316777,0.000000,0.000000,0.250000,0,0);}
.m6b_c00202{transform:matrix(0.316843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316843,0.000000,0.000000,0.250000,0,0);}
.m7b_c00202{transform:matrix(0.317544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317544,0.000000,0.000000,0.250000,0,0);}
.ma1_c00202{transform:matrix(0.317866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317866,0.000000,0.000000,0.250000,0,0);}
.m1f_c00202{transform:matrix(0.317878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317878,0.000000,0.000000,0.250000,0,0);}
.m36_c00202{transform:matrix(0.318157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318157,0.000000,0.000000,0.250000,0,0);}
.m2b_c00202{transform:matrix(0.318242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318242,0.000000,0.000000,0.250000,0,0);}
.m70_c00202{transform:matrix(0.318277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318277,0.000000,0.000000,0.250000,0,0);}
.m21_c00202{transform:matrix(0.318405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318405,0.000000,0.000000,0.250000,0,0);}
.m3c_c00202{transform:matrix(0.320282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320282,0.000000,0.000000,0.250000,0,0);}
.m12_c00202{transform:matrix(0.321581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321581,0.000000,0.000000,0.250000,0,0);}
.m3_c00202{transform:matrix(0.321647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321647,0.000000,0.000000,0.250000,0,0);}
.m8c_c00202{transform:matrix(0.321825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321825,0.000000,0.000000,0.250000,0,0);}
.m91_c00202{transform:matrix(0.322341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322341,0.000000,0.000000,0.250000,0,0);}
.m95_c00202{transform:matrix(0.324928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324928,0.000000,0.000000,0.250000,0,0);}
.md_c00202{transform:matrix(0.326105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326105,0.000000,0.000000,0.250000,0,0);}
.m33_c00202{transform:matrix(0.329385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329385,0.000000,0.000000,0.250000,0,0);}
.m48_c00202{transform:matrix(0.331802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331802,0.000000,0.000000,0.250000,0,0);}
.m87_c00202{transform:matrix(0.331929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331929,0.000000,0.000000,0.250000,0,0);}
.m25_c00202{transform:matrix(0.333044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333044,0.000000,0.000000,0.250000,0,0);}
.m92_c00202{transform:matrix(0.335123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335123,0.000000,0.000000,0.250000,0,0);}
.m4a_c00202{transform:matrix(0.339443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339443,0.000000,0.000000,0.250000,0,0);}
.m43_c00202{transform:matrix(0.345930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345930,0.000000,0.000000,0.250000,0,0);}
.m11_c00202{transform:matrix(0.353102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353102,0.000000,0.000000,0.250000,0,0);}
.m7d_c00202{transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);}
.m99_c00202{transform:matrix(0.369365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369365,0.000000,0.000000,0.250000,0,0);}
.m56_c00202{transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);}
.m88_c00202{transform:matrix(0.376256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376256,0.000000,0.000000,0.250000,0,0);}
.m7e_c00202{transform:matrix(0.393992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393992,0.000000,0.000000,0.250000,0,0);}
.v0_c00202{vertical-align:0.000000px;}
.ls1_c00202{letter-spacing:-2.855167px;}
.ls7_c00202{letter-spacing:-2.798064px;}
.ls1b_c00202{letter-spacing:-2.324922px;}
.ls8_c00202{letter-spacing:-2.194400px;}
.ls4_c00202{letter-spacing:-2.178084px;}
.ls10_c00202{letter-spacing:-1.563966px;}
.ls6_c00202{letter-spacing:0.000000px;}
.ls19_c00202{letter-spacing:0.073419px;}
.ls15_c00202{letter-spacing:0.130522px;}
.ls11_c00202{letter-spacing:0.546561px;}
.lsa_c00202{letter-spacing:1.093121px;}
.ls13_c00202{letter-spacing:2.031247px;}
.ls1a_c00202{letter-spacing:2.554200px;}
.lse_c00202{letter-spacing:2.970000px;}
.ls14_c00202{letter-spacing:3.306610px;}
.ls17_c00202{letter-spacing:3.352782px;}
.ls9_c00202{letter-spacing:3.360939px;}
.ls1c_c00202{letter-spacing:3.623400px;}
.lsd_c00202{letter-spacing:3.638298px;}
.ls12_c00202{letter-spacing:3.643200px;}
.lsf_c00202{letter-spacing:3.695402px;}
.ls0_c00202{letter-spacing:3.781810px;}
.ls18_c00202{letter-spacing:3.817766px;}
.ls5_c00202{letter-spacing:3.850397px;}
.lsb_c00202{letter-spacing:4.059000px;}
.ls1d_c00202{letter-spacing:4.070652px;}
.ls2_c00202{letter-spacing:4.078810px;}
.lsc_c00202{letter-spacing:4.563900px;}
.ls3_c00202{letter-spacing:62.726400px;}
.ls16_c00202{letter-spacing:64.152198px;}
.sc__c00202{text-shadow:none;}
.sc0_c00202{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00202{-webkit-text-stroke:0px transparent;}
.sc0_c00202{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00202{word-spacing:-18.384751px;}
.ws1_c00202{word-spacing:0.000000px;}
._1_c00202{width:1.189881px;}
._0_c00202{width:25.777472px;}
._2_c00202{width:35.653860px;}
.fc0_c00202{color:transparent;}
.fs3_c00202{font-size:22.176000px;}
.fsc_c00202{font-size:51.084000px;}
.fs7_c00202{font-size:59.400000px;}
.fs2_c00202{font-size:62.726400px;}
.fsb_c00202{font-size:64.152198px;}
.fsa_c00202{font-size:66.132198px;}
.fs4_c00202{font-size:66.330000px;}
.fsd_c00202{font-size:72.468000px;}
.fs9_c00202{font-size:72.864000px;}
.fs0_c00202{font-size:75.636198px;}
.fs5_c00202{font-size:81.180000px;}
.fs1_c00202{font-size:81.576198px;}
.fs8_c00202{font-size:85.932198px;}
.fs6_c00202{font-size:91.278000px;}
.y0_c00202{bottom:0.000000px;}
.y1_c00202{bottom:76.500000px;}
.y1e_c00202{bottom:141.402735px;}
.y1d_c00202{bottom:151.025535px;}
.y1c_c00202{bottom:183.457935px;}
.y1b_c00202{bottom:214.821135px;}
.y1a_c00202{bottom:246.184335px;}
.y19_c00202{bottom:277.547535px;}
.y18_c00202{bottom:309.267135px;}
.y17_c00202{bottom:339.917535px;}
.y16_c00202{bottom:370.924335px;}
.y15_c00202{bottom:403.000335px;}
.y14_c00202{bottom:434.007135px;}
.y13_c00202{bottom:465.721785px;}
.y12_c00202{bottom:528.448185px;}
.y11_c00202{bottom:559.454985px;}
.y10_c00202{bottom:591.535935px;}
.yf_c00202{bottom:623.606985px;}
.ye_c00202{bottom:655.331535px;}
.yd_c00202{bottom:686.338335px;}
.yc_c00202{bottom:716.983785px;}
.yb_c00202{bottom:748.346985px;}
.ya_c00202{bottom:778.645935px;}
.y9_c00202{bottom:810.009135px;}
.y8_c00202{bottom:841.367385px;}
.y7_c00202{bottom:873.448335px;}
.y6_c00202{bottom:896.257935px;}
.y4_c00202{bottom:904.802625px;}
.y5_c00202{bottom:904.811535px;}
.y3_c00202{bottom:936.882585px;}
.y2_c00202{bottom:1061.978985px;}
.h5_c00202{height:23.128875px;}
.h4_c00202{height:41.775782px;}
.hd_c00202{height:42.725364px;}
.he_c00202{height:53.279016px;}
.h9_c00202{height:61.952344px;}
.hc_c00202{height:68.973816px;}
.h6_c00202{height:69.180117px;}
.hf_c00202{height:71.123379px;}
.hb_c00202{height:71.512031px;}
.h2_c00202{height:74.232792px;}
.h7_c00202{height:79.673730px;}
.h3_c00202{height:80.062577px;}
.ha_c00202{height:84.337753px;}
.h8_c00202{height:89.584365px;}
.h1_c00202{height:1110.000000px;}
.h0_c00202{height:1263.000000px;}
.w1_c00202{width:733.500000px;}
.w0_c00202{width:892.500000px;}
.x0_c00202{left:0.000000px;}
.xb_c00202{left:70.882644px;}
.x17_c00202{left:72.715035px;}
.x1_c00202{left:79.500000px;}
.x30_c00202{left:91.930935px;}
.x58_c00202{left:103.815885px;}
.x49_c00202{left:104.894985px;}
.x63_c00202{left:114.691035px;}
.x18_c00202{left:115.987935px;}
.x3_c00202{left:125.793885px;}
.x35_c00202{left:137.020485px;}
.x46_c00202{left:139.752885px;}
.x2b_c00202{left:147.519435px;}
.x25_c00202{left:148.786635px;}
.x5c_c00202{left:157.894635px;}
.xc_c00202{left:159.830085px;}
.x59_c00202{left:170.071635px;}
.x4_c00202{left:171.432885px;}
.x26_c00202{left:181.179435px;}
.x2c_c00202{left:182.481285px;}
.xd_c00202{left:192.000135px;}
.x38_c00202{left:193.678185px;}
.x53_c00202{left:203.627685px;}
.x31_c00202{left:214.329585px;}
.x5_c00202{left:225.704685px;}
.x40_c00202{left:227.115435px;}
.x47_c00202{left:237.094635px;}
.x5a_c00202{left:238.163835px;}
.x39_c00202{left:246.638235px;}
.x19_c00202{left:258.369735px;}
.x32_c00202{left:259.928985px;}
.x62_c00202{left:268.705335px;}
.x1f_c00202{left:281.070435px;}
.x4f_c00202{left:285.713535px;}
.x3a_c00202{left:291.158535px;}
.x5f_c00202{left:292.287135px;}
.x6_c00202{left:294.049335px;}
.x36_c00202{left:303.736485px;}
.x41_c00202{left:314.161185px;}
.x27_c00202{left:325.150185px;}
.xe_c00202{left:326.249085px;}
.x5d_c00202{left:334.624485px;}
.x20_c00202{left:336.550035px;}
.x2d_c00202{left:346.756935px;}
.x1a_c00202{left:348.316185px;}
.x42_c00202{left:357.448935px;}
.xf_c00202{left:358.973535px;}
.x4e_c00202{left:369.343785px;}
.x3b_c00202{left:370.442685px;}
.x2e_c00202{left:380.822835px;}
.x10_c00202{left:391.490085px;}
.x60_c00202{left:401.805885px;}
.x1b_c00202{left:404.196735px;}
.x21_c00202{left:413.537385px;}
.x28_c00202{left:424.991685px;}
.x16_c00202{left:427.253835px;}
.x4a_c00202{left:434.461035px;}
.x11_c00202{left:436.629135px;}
.x4c_c00202{left:445.865835px;}
.x61_c00202{left:446.964735px;}
.x29_c00202{left:458.463585px;}
.x12_c00202{left:470.130735px;}
.x54_c00202{left:478.298235px;}
.x33_c00202{left:480.525735px;}
.x3c_c00202{left:491.158335px;}
.x50_c00202{left:492.400785px;}
.x22_c00202{left:501.974085px;}
.x1c_c00202{left:512.121585px;}
.x43_c00202{left:513.611535px;}
.x48_c00202{left:523.655085px;}
.x7_c00202{left:524.778735px;}
.x5e_c00202{left:526.625085px;}
.x55_c00202{left:533.495685px;}
.x13_c00202{left:535.074735px;}
.x5b_c00202{left:543.875835px;}
.x52_c00202{left:545.044035px;}
.x37_c00202{left:546.756735px;}
.x23_c00202{left:556.839885px;}
.x14_c00202{left:568.066485px;}
.x57_c00202{left:577.327935px;}
.x3d_c00202{left:579.317835px;}
.x4b_c00202{left:588.425835px;}
.x8_c00202{left:589.801935px;}
.x2f_c00202{left:600.508785px;}
.x24_c00202{left:601.711635px;}
.x4d_c00202{left:611.725485px;}
.x34_c00202{left:612.779835px;}
.x1d_c00202{left:622.254135px;}
.x3e_c00202{left:632.248185px;}
.x2_c00202{left:633.426285px;}
.x2a_c00202{left:644.514285px;}
.x9_c00202{left:645.890385px;}
.x44_c00202{left:656.602185px;}
.x3f_c00202{left:666.957585px;}
.x15_c00202{left:668.982135px;}
.x56_c00202{left:676.912035px;}
.xa_c00202{left:678.095085px;}
.x1e_c00202{left:689.089035px;}
.x45_c00202{left:700.008735px;}
.x51_c00202{left:710.799735px;}
@media print{
.v0_c00202{vertical-align:0.000000pt;}
.ls1_c00202{letter-spacing:-2.537926pt;}
.ls7_c00202{letter-spacing:-2.487168pt;}
.ls1b_c00202{letter-spacing:-2.066597pt;}
.ls8_c00202{letter-spacing:-1.950578pt;}
.ls4_c00202{letter-spacing:-1.936075pt;}
.ls10_c00202{letter-spacing:-1.390192pt;}
.ls6_c00202{letter-spacing:0.000000pt;}
.ls19_c00202{letter-spacing:0.065261pt;}
.ls15_c00202{letter-spacing:0.116019pt;}
.ls11_c00202{letter-spacing:0.485832pt;}
.lsa_c00202{letter-spacing:0.971663pt;}
.ls13_c00202{letter-spacing:1.805553pt;}
.ls1a_c00202{letter-spacing:2.270400pt;}
.lse_c00202{letter-spacing:2.640000pt;}
.ls14_c00202{letter-spacing:2.939209pt;}
.ls17_c00202{letter-spacing:2.980250pt;}
.ls9_c00202{letter-spacing:2.987502pt;}
.ls1c_c00202{letter-spacing:3.220800pt;}
.lsd_c00202{letter-spacing:3.234043pt;}
.ls12_c00202{letter-spacing:3.238400pt;}
.lsf_c00202{letter-spacing:3.284802pt;}
.ls0_c00202{letter-spacing:3.361609pt;}
.ls18_c00202{letter-spacing:3.393570pt;}
.ls5_c00202{letter-spacing:3.422575pt;}
.lsb_c00202{letter-spacing:3.608000pt;}
.ls1d_c00202{letter-spacing:3.618358pt;}
.ls2_c00202{letter-spacing:3.625609pt;}
.lsc_c00202{letter-spacing:4.056800pt;}
.ls3_c00202{letter-spacing:55.756800pt;}
.ls16_c00202{letter-spacing:57.024176pt;}
.ws0_c00202{word-spacing:-16.342001pt;}
.ws1_c00202{word-spacing:0.000000pt;}
._1_c00202{width:1.057672pt;}
._0_c00202{width:22.913308pt;}
._2_c00202{width:31.692320pt;}
.fs3_c00202{font-size:19.712000pt;}
.fsc_c00202{font-size:45.408000pt;}
.fs7_c00202{font-size:52.800000pt;}
.fs2_c00202{font-size:55.756800pt;}
.fsb_c00202{font-size:57.024176pt;}
.fsa_c00202{font-size:58.784176pt;}
.fs4_c00202{font-size:58.960000pt;}
.fsd_c00202{font-size:64.416000pt;}
.fs9_c00202{font-size:64.768000pt;}
.fs0_c00202{font-size:67.232176pt;}
.fs5_c00202{font-size:72.160000pt;}
.fs1_c00202{font-size:72.512176pt;}
.fs8_c00202{font-size:76.384176pt;}
.fs6_c00202{font-size:81.136000pt;}
.y0_c00202{bottom:0.000000pt;}
.y1_c00202{bottom:68.000000pt;}
.y1e_c00202{bottom:125.691320pt;}
.y1d_c00202{bottom:134.244920pt;}
.y1c_c00202{bottom:163.073720pt;}
.y1b_c00202{bottom:190.952120pt;}
.y1a_c00202{bottom:218.830520pt;}
.y19_c00202{bottom:246.708920pt;}
.y18_c00202{bottom:274.904120pt;}
.y17_c00202{bottom:302.148920pt;}
.y16_c00202{bottom:329.710520pt;}
.y15_c00202{bottom:358.222520pt;}
.y14_c00202{bottom:385.784120pt;}
.y13_c00202{bottom:413.974920pt;}
.y12_c00202{bottom:469.731720pt;}
.y11_c00202{bottom:497.293320pt;}
.y10_c00202{bottom:525.809720pt;}
.yf_c00202{bottom:554.317320pt;}
.ye_c00202{bottom:582.516920pt;}
.yd_c00202{bottom:610.078520pt;}
.yc_c00202{bottom:637.318920pt;}
.yb_c00202{bottom:665.197320pt;}
.ya_c00202{bottom:692.129720pt;}
.y9_c00202{bottom:720.008120pt;}
.y8_c00202{bottom:747.882120pt;}
.y7_c00202{bottom:776.398520pt;}
.y6_c00202{bottom:796.673720pt;}
.y4_c00202{bottom:804.269000pt;}
.y5_c00202{bottom:804.276920pt;}
.y3_c00202{bottom:832.784520pt;}
.y2_c00202{bottom:943.981320pt;}
.h5_c00202{height:20.559000pt;}
.h4_c00202{height:37.134029pt;}
.hd_c00202{height:37.978101pt;}
.he_c00202{height:47.359125pt;}
.h9_c00202{height:55.068750pt;}
.hc_c00202{height:61.310059pt;}
.h6_c00202{height:61.493438pt;}
.hf_c00202{height:63.220781pt;}
.hb_c00202{height:63.566250pt;}
.h2_c00202{height:65.984704pt;}
.h7_c00202{height:70.821094pt;}
.h3_c00202{height:71.166735pt;}
.ha_c00202{height:74.966891pt;}
.h8_c00202{height:79.630547pt;}
.h1_c00202{height:986.666667pt;}
.h0_c00202{height:1122.666667pt;}
.w1_c00202{width:652.000000pt;}
.w0_c00202{width:793.333333pt;}
.x0_c00202{left:0.000000pt;}
.xb_c00202{left:63.006795pt;}
.x17_c00202{left:64.635587pt;}
.x1_c00202{left:70.666667pt;}
.x30_c00202{left:81.716387pt;}
.x58_c00202{left:92.280787pt;}
.x49_c00202{left:93.239987pt;}
.x63_c00202{left:101.947587pt;}
.x18_c00202{left:103.100387pt;}
.x3_c00202{left:111.816787pt;}
.x35_c00202{left:121.795987pt;}
.x46_c00202{left:124.224787pt;}
.x2b_c00202{left:131.128387pt;}
.x25_c00202{left:132.254787pt;}
.x5c_c00202{left:140.350787pt;}
.xc_c00202{left:142.071187pt;}
.x59_c00202{left:151.174787pt;}
.x4_c00202{left:152.384787pt;}
.x26_c00202{left:161.048387pt;}
.x2c_c00202{left:162.205587pt;}
.xd_c00202{left:170.666787pt;}
.x38_c00202{left:172.158387pt;}
.x53_c00202{left:181.002387pt;}
.x31_c00202{left:190.515187pt;}
.x5_c00202{left:200.626387pt;}
.x40_c00202{left:201.880387pt;}
.x47_c00202{left:210.750787pt;}
.x5a_c00202{left:211.701187pt;}
.x39_c00202{left:219.233987pt;}
.x19_c00202{left:229.661987pt;}
.x32_c00202{left:231.047987pt;}
.x62_c00202{left:238.849187pt;}
.x1f_c00202{left:249.840387pt;}
.x4f_c00202{left:253.967587pt;}
.x3a_c00202{left:258.807587pt;}
.x5f_c00202{left:259.810787pt;}
.x6_c00202{left:261.377187pt;}
.x36_c00202{left:269.987987pt;}
.x41_c00202{left:279.254387pt;}
.x27_c00202{left:289.022387pt;}
.xe_c00202{left:289.999187pt;}
.x5d_c00202{left:297.443987pt;}
.x20_c00202{left:299.155587pt;}
.x2d_c00202{left:308.228387pt;}
.x1a_c00202{left:309.614387pt;}
.x42_c00202{left:317.732387pt;}
.xf_c00202{left:319.087587pt;}
.x4e_c00202{left:328.305587pt;}
.x3b_c00202{left:329.282387pt;}
.x2e_c00202{left:338.509187pt;}
.x10_c00202{left:347.991187pt;}
.x60_c00202{left:357.160787pt;}
.x1b_c00202{left:359.285987pt;}
.x21_c00202{left:367.588787pt;}
.x28_c00202{left:377.770387pt;}
.x16_c00202{left:379.781187pt;}
.x4a_c00202{left:386.187587pt;}
.x11_c00202{left:388.114787pt;}
.x4c_c00202{left:396.325187pt;}
.x61_c00202{left:397.301987pt;}
.x29_c00202{left:407.523187pt;}
.x12_c00202{left:417.893987pt;}
.x54_c00202{left:425.153987pt;}
.x33_c00202{left:427.133987pt;}
.x3c_c00202{left:436.585187pt;}
.x50_c00202{left:437.689587pt;}
.x22_c00202{left:446.199187pt;}
.x1c_c00202{left:455.219187pt;}
.x43_c00202{left:456.543587pt;}
.x48_c00202{left:465.471187pt;}
.x7_c00202{left:466.469987pt;}
.x5e_c00202{left:468.111187pt;}
.x55_c00202{left:474.218387pt;}
.x13_c00202{left:475.621987pt;}
.x5b_c00202{left:483.445187pt;}
.x52_c00202{left:484.483587pt;}
.x37_c00202{left:486.005987pt;}
.x23_c00202{left:494.968787pt;}
.x14_c00202{left:504.947987pt;}
.x57_c00202{left:513.180387pt;}
.x3d_c00202{left:514.949187pt;}
.x4b_c00202{left:523.045187pt;}
.x8_c00202{left:524.268387pt;}
.x2f_c00202{left:533.785587pt;}
.x24_c00202{left:534.854787pt;}
.x4d_c00202{left:543.755987pt;}
.x34_c00202{left:544.693187pt;}
.x1d_c00202{left:553.114787pt;}
.x3e_c00202{left:561.998387pt;}
.x2_c00202{left:563.045587pt;}
.x2a_c00202{left:572.901587pt;}
.x9_c00202{left:574.124787pt;}
.x44_c00202{left:583.646387pt;}
.x3f_c00202{left:592.851187pt;}
.x15_c00202{left:594.650787pt;}
.x56_c00202{left:601.699587pt;}
.xa_c00202{left:602.751187pt;}
.x1e_c00202{left:612.523587pt;}
.x45_c00202{left:622.229987pt;}
.x51_c00202{left:631.821987pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d253326a4d64970385e6f06d.woff2')format("woff");}.ff1_c00203{font-family:ff1_c00203;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00203;src:url('chunks/assets/font_537eaa950f4b306c464b8a8d.woff2')format("woff");}.ff2_c00203{font-family:ff2_c00203;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00203;src:url('chunks/assets/font_53f7e534faad0568cccad96c.woff2')format("woff");}.ff3_c00203{font-family:ff3_c00203;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m39_c00203{transform:matrix(0.211007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211007,0.000000,0.000000,0.250000,0,0);}
.m3a_c00203{transform:matrix(0.239203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239203,0.000000,0.000000,0.250000,0,0);}
.m91_c00203{transform:matrix(0.242073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242073,0.000000,0.000000,0.250000,0,0);}
.m0_c00203{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m88_c00203{transform:matrix(0.250440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250440,0.000000,0.000000,0.250000,0,0);}
.m6_c00203{transform:matrix(0.250825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250825,0.000000,0.000000,0.250000,0,0);}
.m5f_c00203{transform:matrix(0.252226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252226,0.000000,0.000000,0.250000,0,0);}
.m53_c00203{transform:matrix(0.252448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252448,0.000000,0.000000,0.250000,0,0);}
.m13_c00203{transform:matrix(0.252487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252487,0.000000,0.000000,0.250000,0,0);}
.m3_c00203{transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);}
.m23_c00203{transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);}
.m7c_c00203{transform:matrix(0.254512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254512,0.000000,0.000000,0.250000,0,0);}
.m1d_c00203{transform:matrix(0.254538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254538,0.000000,0.000000,0.250000,0,0);}
.m1e_c00203{transform:matrix(0.254894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254894,0.000000,0.000000,0.250000,0,0);}
.m99_c00203{transform:matrix(0.255641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255641,0.000000,0.000000,0.250000,0,0);}
.m3c_c00203{transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);}
.m85_c00203{transform:matrix(0.256064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256064,0.000000,0.000000,0.250000,0,0);}
.m59_c00203{transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);}
.m9a_c00203{transform:matrix(0.256538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256538,0.000000,0.000000,0.250000,0,0);}
.md_c00203{transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);}
.m9_c00203{transform:matrix(0.257537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257537,0.000000,0.000000,0.250000,0,0);}
.m61_c00203{transform:matrix(0.258122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258122,0.000000,0.000000,0.250000,0,0);}
.m1f_c00203{transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);}
.m35_c00203{transform:matrix(0.260544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260544,0.000000,0.000000,0.250000,0,0);}
.m31_c00203{transform:matrix(0.262285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262285,0.000000,0.000000,0.250000,0,0);}
.m7d_c00203{transform:matrix(0.262776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262776,0.000000,0.000000,0.250000,0,0);}
.m38_c00203{transform:matrix(0.262973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262973,0.000000,0.000000,0.250000,0,0);}
.m62_c00203{transform:matrix(0.263771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263771,0.000000,0.000000,0.250000,0,0);}
.m8c_c00203{transform:matrix(0.263879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263879,0.000000,0.000000,0.250000,0,0);}
.m80_c00203{transform:matrix(0.263893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263893,0.000000,0.000000,0.250000,0,0);}
.m4c_c00203{transform:matrix(0.263908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263908,0.000000,0.000000,0.250000,0,0);}
.m5d_c00203{transform:matrix(0.264628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264628,0.000000,0.000000,0.250000,0,0);}
.m51_c00203{transform:matrix(0.264852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264852,0.000000,0.000000,0.250000,0,0);}
.m67_c00203{transform:matrix(0.265165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265165,0.000000,0.000000,0.250000,0,0);}
.m75_c00203{transform:matrix(0.265666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265666,0.000000,0.000000,0.250000,0,0);}
.m49_c00203{transform:matrix(0.265723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265723,0.000000,0.000000,0.250000,0,0);}
.m96_c00203{transform:matrix(0.266294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266294,0.000000,0.000000,0.250000,0,0);}
.m24_c00203{transform:matrix(0.266403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266403,0.000000,0.000000,0.250000,0,0);}
.m93_c00203{transform:matrix(0.266438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266438,0.000000,0.000000,0.250000,0,0);}
.m79_c00203{transform:matrix(0.267305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267305,0.000000,0.000000,0.250000,0,0);}
.m52_c00203{transform:matrix(0.267754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267754,0.000000,0.000000,0.250000,0,0);}
.m5b_c00203{transform:matrix(0.268062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268062,0.000000,0.000000,0.250000,0,0);}
.m28_c00203{transform:matrix(0.268222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268222,0.000000,0.000000,0.250000,0,0);}
.m78_c00203{transform:matrix(0.268231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268231,0.000000,0.000000,0.250000,0,0);}
.m8b_c00203{transform:matrix(0.268928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268928,0.000000,0.000000,0.250000,0,0);}
.m90_c00203{transform:matrix(0.269209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269209,0.000000,0.000000,0.250000,0,0);}
.m27_c00203{transform:matrix(0.269211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269211,0.000000,0.000000,0.250000,0,0);}
.m9d_c00203{transform:matrix(0.270009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270009,0.000000,0.000000,0.250000,0,0);}
.m43_c00203{transform:matrix(0.270015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270015,0.000000,0.000000,0.250000,0,0);}
.m7e_c00203{transform:matrix(0.270400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270400,0.000000,0.000000,0.250000,0,0);}
.m97_c00203{transform:matrix(0.271937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271937,0.000000,0.000000,0.250000,0,0);}
.m47_c00203{transform:matrix(0.272535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272535,0.000000,0.000000,0.250000,0,0);}
.m7_c00203{transform:matrix(0.272626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272626,0.000000,0.000000,0.250000,0,0);}
.m63_c00203{transform:matrix(0.272841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272841,0.000000,0.000000,0.250000,0,0);}
.m5e_c00203{transform:matrix(0.273169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273169,0.000000,0.000000,0.250000,0,0);}
.m2c_c00203{transform:matrix(0.273289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273289,0.000000,0.000000,0.250000,0,0);}
.m73_c00203{transform:matrix(0.273486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273486,0.000000,0.000000,0.250000,0,0);}
.m66_c00203{transform:matrix(0.273714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273714,0.000000,0.000000,0.250000,0,0);}
.m10_c00203{transform:matrix(0.274303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274303,0.000000,0.000000,0.250000,0,0);}
.m6f_c00203{transform:matrix(0.274575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274575,0.000000,0.000000,0.250000,0,0);}
.m12_c00203{transform:matrix(0.274757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274757,0.000000,0.000000,0.250000,0,0);}
.m5a_c00203{transform:matrix(0.276114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276114,0.000000,0.000000,0.250000,0,0);}
.m36_c00203{transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);}
.m40_c00203{transform:matrix(0.277475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277475,0.000000,0.000000,0.250000,0,0);}
.m11_c00203{transform:matrix(0.278222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278222,0.000000,0.000000,0.250000,0,0);}
.m72_c00203{transform:matrix(0.278455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278455,0.000000,0.000000,0.250000,0,0);}
.m6e_c00203{transform:matrix(0.278805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278805,0.000000,0.000000,0.250000,0,0);}
.m57_c00203{transform:matrix(0.278900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278900,0.000000,0.000000,0.250000,0,0);}
.m6a_c00203{transform:matrix(0.279561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279561,0.000000,0.000000,0.250000,0,0);}
.m8f_c00203{transform:matrix(0.279718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279718,0.000000,0.000000,0.250000,0,0);}
.m20_c00203{transform:matrix(0.279727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279727,0.000000,0.000000,0.250000,0,0);}
.m8_c00203{transform:matrix(0.280468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280468,0.000000,0.000000,0.250000,0,0);}
.m48_c00203{transform:matrix(0.281969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281969,0.000000,0.000000,0.250000,0,0);}
.m21_c00203{transform:matrix(0.282031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282031,0.000000,0.000000,0.250000,0,0);}
.me_c00203{transform:matrix(0.282244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282244,0.000000,0.000000,0.250000,0,0);}
.m69_c00203{transform:matrix(0.283007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283007,0.000000,0.000000,0.250000,0,0);}
.m2_c00203{transform:matrix(0.283189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283189,0.000000,0.000000,0.250000,0,0);}
.m44_c00203{transform:matrix(0.283229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283229,0.000000,0.000000,0.250000,0,0);}
.m6c_c00203{transform:matrix(0.283990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283990,0.000000,0.000000,0.250000,0,0);}
.m9b_c00203{transform:matrix(0.284502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284502,0.000000,0.000000,0.250000,0,0);}
.m3e_c00203{transform:matrix(0.286002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286002,0.000000,0.000000,0.250000,0,0);}
.m86_c00203{transform:matrix(0.286072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286072,0.000000,0.000000,0.250000,0,0);}
.m60_c00203{transform:matrix(0.286098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286098,0.000000,0.000000,0.250000,0,0);}
.m45_c00203{transform:matrix(0.286565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286565,0.000000,0.000000,0.250000,0,0);}
.m89_c00203{transform:matrix(0.286795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286795,0.000000,0.000000,0.250000,0,0);}
.m17_c00203{transform:matrix(0.287887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287887,0.000000,0.000000,0.250000,0,0);}
.m16_c00203{transform:matrix(0.288570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288570,0.000000,0.000000,0.250000,0,0);}
.m82_c00203{transform:matrix(0.289781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289781,0.000000,0.000000,0.250000,0,0);}
.m33_c00203{transform:matrix(0.289783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289783,0.000000,0.000000,0.250000,0,0);}
.m22_c00203{transform:matrix(0.289826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289826,0.000000,0.000000,0.250000,0,0);}
.m83_c00203{transform:matrix(0.289929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289929,0.000000,0.000000,0.250000,0,0);}
.mf_c00203{transform:matrix(0.290119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290119,0.000000,0.000000,0.250000,0,0);}
.m3b_c00203{transform:matrix(0.290740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290740,0.000000,0.000000,0.250000,0,0);}
.m1_c00203{transform:matrix(0.290803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290803,0.000000,0.000000,0.250000,0,0);}
.m87_c00203{transform:matrix(0.291158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291158,0.000000,0.000000,0.250000,0,0);}
.m98_c00203{transform:matrix(0.291263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291263,0.000000,0.000000,0.250000,0,0);}
.m19_c00203{transform:matrix(0.292090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292090,0.000000,0.000000,0.250000,0,0);}
.m8e_c00203{transform:matrix(0.293261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293261,0.000000,0.000000,0.250000,0,0);}
.ma_c00203{transform:matrix(0.294159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294159,0.000000,0.000000,0.250000,0,0);}
.m29_c00203{transform:matrix(0.294220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294220,0.000000,0.000000,0.250000,0,0);}
.m34_c00203{transform:matrix(0.294396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294396,0.000000,0.000000,0.250000,0,0);}
.m7a_c00203{transform:matrix(0.294479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294479,0.000000,0.000000,0.250000,0,0);}
.m6d_c00203{transform:matrix(0.295669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295669,0.000000,0.000000,0.250000,0,0);}
.m65_c00203{transform:matrix(0.296673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296673,0.000000,0.000000,0.250000,0,0);}
.m55_c00203{transform:matrix(0.297141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297141,0.000000,0.000000,0.250000,0,0);}
.m81_c00203{transform:matrix(0.297361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297361,0.000000,0.000000,0.250000,0,0);}
.m84_c00203{transform:matrix(0.297448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297448,0.000000,0.000000,0.250000,0,0);}
.m9c_c00203{transform:matrix(0.297589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297589,0.000000,0.000000,0.250000,0,0);}
.m8a_c00203{transform:matrix(0.297708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297708,0.000000,0.000000,0.250000,0,0);}
.mb_c00203{transform:matrix(0.298542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298542,0.000000,0.000000,0.250000,0,0);}
.m42_c00203{transform:matrix(0.298815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298815,0.000000,0.000000,0.250000,0,0);}
.m4a_c00203{transform:matrix(0.301225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301225,0.000000,0.000000,0.250000,0,0);}
.m15_c00203{transform:matrix(0.301582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301582,0.000000,0.000000,0.250000,0,0);}
.m7b_c00203{transform:matrix(0.302566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302566,0.000000,0.000000,0.250000,0,0);}
.m7f_c00203{transform:matrix(0.303168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303168,0.000000,0.000000,0.250000,0,0);}
.m5_c00203{transform:matrix(0.304179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304179,0.000000,0.000000,0.250000,0,0);}
.m5c_c00203{transform:matrix(0.308030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308030,0.000000,0.000000,0.250000,0,0);}
.m76_c00203{transform:matrix(0.308988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308988,0.000000,0.000000,0.250000,0,0);}
.m26_c00203{transform:matrix(0.309304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309304,0.000000,0.000000,0.250000,0,0);}
.m54_c00203{transform:matrix(0.309365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309365,0.000000,0.000000,0.250000,0,0);}
.m2b_c00203{transform:matrix(0.311270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311270,0.000000,0.000000,0.250000,0,0);}
.m4f_c00203{transform:matrix(0.311636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311636,0.000000,0.000000,0.250000,0,0);}
.m2e_c00203{transform:matrix(0.311649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311649,0.000000,0.000000,0.250000,0,0);}
.m32_c00203{transform:matrix(0.311663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311663,0.000000,0.000000,0.250000,0,0);}
.m71_c00203{transform:matrix(0.311849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311849,0.000000,0.000000,0.250000,0,0);}
.m8d_c00203{transform:matrix(0.311916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311916,0.000000,0.000000,0.250000,0,0);}
.m58_c00203{transform:matrix(0.313428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313428,0.000000,0.000000,0.250000,0,0);}
.m64_c00203{transform:matrix(0.314224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314224,0.000000,0.000000,0.250000,0,0);}
.m56_c00203{transform:matrix(0.314459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314459,0.000000,0.000000,0.250000,0,0);}
.m41_c00203{transform:matrix(0.315130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315130,0.000000,0.000000,0.250000,0,0);}
.m4e_c00203{transform:matrix(0.315763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315763,0.000000,0.000000,0.250000,0,0);}
.m2a_c00203{transform:matrix(0.316073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316073,0.000000,0.000000,0.250000,0,0);}
.m70_c00203{transform:matrix(0.316611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316611,0.000000,0.000000,0.250000,0,0);}
.m30_c00203{transform:matrix(0.316699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316699,0.000000,0.000000,0.250000,0,0);}
.m1b_c00203{transform:matrix(0.316920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316920,0.000000,0.000000,0.250000,0,0);}
.m14_c00203{transform:matrix(0.317524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317524,0.000000,0.000000,0.250000,0,0);}
.m74_c00203{transform:matrix(0.318660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318660,0.000000,0.000000,0.250000,0,0);}
.m37_c00203{transform:matrix(0.318712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318712,0.000000,0.000000,0.250000,0,0);}
.m50_c00203{transform:matrix(0.318832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318832,0.000000,0.000000,0.250000,0,0);}
.m2d_c00203{transform:matrix(0.319025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319025,0.000000,0.000000,0.250000,0,0);}
.m94_c00203{transform:matrix(0.319803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319803,0.000000,0.000000,0.250000,0,0);}
.m4b_c00203{transform:matrix(0.320282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320282,0.000000,0.000000,0.250000,0,0);}
.m25_c00203{transform:matrix(0.320286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320286,0.000000,0.000000,0.250000,0,0);}
.m77_c00203{transform:matrix(0.324848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324848,0.000000,0.000000,0.250000,0,0);}
.m3f_c00203{transform:matrix(0.325725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325725,0.000000,0.000000,0.250000,0,0);}
.m68_c00203{transform:matrix(0.326105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326105,0.000000,0.000000,0.250000,0,0);}
.m2f_c00203{transform:matrix(0.327397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327397,0.000000,0.000000,0.250000,0,0);}
.m95_c00203{transform:matrix(0.327832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327832,0.000000,0.000000,0.250000,0,0);}
.m46_c00203{transform:matrix(0.330081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330081,0.000000,0.000000,0.250000,0,0);}
.m92_c00203{transform:matrix(0.332461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332461,0.000000,0.000000,0.250000,0,0);}
.mc_c00203{transform:matrix(0.333345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333345,0.000000,0.000000,0.250000,0,0);}
.m1a_c00203{transform:matrix(0.335736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335736,0.000000,0.000000,0.250000,0,0);}
.m3d_c00203{transform:matrix(0.336661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336661,0.000000,0.000000,0.250000,0,0);}
.m1c_c00203{transform:matrix(0.348178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348178,0.000000,0.000000,0.250000,0,0);}
.m6b_c00203{transform:matrix(0.352491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352491,0.000000,0.000000,0.250000,0,0);}
.m4_c00203{transform:matrix(0.358891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358891,0.000000,0.000000,0.250000,0,0);}
.m18_c00203{transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);}
.m4d_c00203{transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);}
.v0_c00203{vertical-align:0.000000px;}
.ls8_c00203{letter-spacing:-2.855167px;}
.lsc_c00203{letter-spacing:-2.324922px;}
.ls10_c00203{letter-spacing:-0.546561px;}
.ls3_c00203{letter-spacing:0.000000px;}
.lsa_c00203{letter-spacing:0.840235px;}
.ls15_c00203{letter-spacing:1.044175px;}
.ls1_c00203{letter-spacing:1.517317px;}
.ls14_c00203{letter-spacing:2.585965px;}
.ls13_c00203{letter-spacing:2.961216px;}
.lsb_c00203{letter-spacing:2.993846px;}
.lsf_c00203{letter-spacing:3.009600px;}
.lsd_c00203{letter-spacing:3.091738px;}
.ls6_c00203{letter-spacing:3.165156px;}
.ls0_c00203{letter-spacing:3.246733px;}
.lse_c00203{letter-spacing:3.573037px;}
.ls7_c00203{letter-spacing:3.638298px;}
.ls9_c00203{letter-spacing:3.719875px;}
.ls4_c00203{letter-spacing:3.722400px;}
.ls11_c00203{letter-spacing:3.809608px;}
.ls12_c00203{letter-spacing:3.920400px;}
.ls2_c00203{letter-spacing:3.989076px;}
.ls5_c00203{letter-spacing:4.078810px;}
.ls16_c00203{letter-spacing:4.118400px;}
.sc__c00203{text-shadow:none;}
.sc0_c00203{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00203{-webkit-text-stroke:0px transparent;}
.sc0_c00203{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00203{word-spacing:0.000000px;}
._2_c00203{width:18.138949px;}
._0_c00203{width:26.084392px;}
._3_c00203{width:30.650400px;}
._1_c00203{width:35.241193px;}
.fc0_c00203{color:transparent;}
.fs0_c00203{font-size:22.176000px;}
.fs7_c00203{font-size:22.374000px;}
.fs16_c00203{font-size:23.166000px;}
.fs15_c00203{font-size:26.532000px;}
.fs11_c00203{font-size:26.928000px;}
.fs2_c00203{font-size:27.720000px;}
.fs17_c00203{font-size:28.314000px;}
.fs14_c00203{font-size:28.908000px;}
.fs5_c00203{font-size:32.472000px;}
.fs10_c00203{font-size:33.264000px;}
.fsd_c00203{font-size:34.056198px;}
.fsb_c00203{font-size:34.650000px;}
.fsc_c00203{font-size:38.808000px;}
.fs13_c00203{font-size:45.144000px;}
.fsf_c00203{font-size:50.094000px;}
.fs18_c00203{font-size:50.688000px;}
.fs6_c00203{font-size:60.192000px;}
.fs4_c00203{font-size:70.092198px;}
.fs1_c00203{font-size:74.448000px;}
.fs8_c00203{font-size:78.408000px;}
.fs9_c00203{font-size:78.804000px;}
.fs3_c00203{font-size:81.576198px;}
.fsa_c00203{font-size:82.368000px;}
.fs12_c00203{font-size:84.546198px;}
.fse_c00203{font-size:131.076198px;}
.y0_c00203{bottom:0.000000px;}
.y2f_c00203{bottom:13.455135px;}
.y2e_c00203{bottom:16.306335px;}
.y1_c00203{bottom:76.500000px;}
.y1c_c00203{bottom:216.241785px;}
.y1b_c00203{bottom:246.897135px;}
.y1a_c00203{bottom:277.898985px;}
.y2d_c00203{bottom:285.031935px;}
.y2_c00203{bottom:294.654735px;}
.y2c_c00203{bottom:300.352185px;}
.y19_c00203{bottom:309.262185px;}
.y2b_c00203{bottom:328.156335px;}
.y18_c00203{bottom:340.981785px;}
.y2a_c00203{bottom:342.412335px;}
.y17_c00203{bottom:372.344985px;}
.y16_c00203{bottom:403.713135px;}
.y14_c00203{bottom:435.427785px;}
.y13_c00203{bottom:457.173135px;}
.y12_c00203{bottom:466.795935px;}
.y29_c00203{bottom:479.626335px;}
.y11_c00203{bottom:498.510585px;}
.y10_c00203{bottom:561.598335px;}
.yf_c00203{bottom:593.312985px;}
.ye_c00203{bottom:625.032585px;}
.y28_c00203{bottom:645.703785px;}
.yd_c00203{bottom:656.757135px;}
.y27_c00203{bottom:675.641385px;}
.yc_c00203{bottom:687.402585px;}
.y26_c00203{bottom:694.179135px;}
.yb_c00203{bottom:718.409385px;}
.y25_c00203{bottom:743.362335px;}
.ya_c00203{bottom:748.346985px;}
.y24_c00203{bottom:754.049385px;}
.y9_c00203{bottom:780.071535px;}
.y23_c00203{bottom:784.348335px;}
.y22_c00203{bottom:804.658185px;}
.y8_c00203{bottom:811.434735px;}
.y21_c00203{bottom:813.211785px;}
.y20_c00203{bottom:841.015935px;}
.y7_c00203{bottom:843.867135px;}
.y1f_c00203{bottom:895.901535px;}
.y1e_c00203{bottom:899.816985px;}
.y6_c00203{bottom:906.237135px;}
.y1d_c00203{bottom:927.972585px;}
.y5_c00203{bottom:938.308185px;}
.y4_c00203{bottom:958.622985px;}
.y15_c00203{bottom:1045.584585px;}
.y3_c00203{bottom:1063.048185px;}
.h9_c00203{height:21.958857px;}
.h2_c00203{height:23.128875px;}
.h17_c00203{height:24.161414px;}
.h16_c00203{height:26.039707px;}
.h12_c00203{height:28.085063px;}
.h4_c00203{height:28.911094px;}
.h18_c00203{height:29.530617px;}
.h15_c00203{height:30.150141px;}
.h7_c00203{height:33.867281px;}
.h11_c00203{height:34.693313px;}
.he_c00203{height:35.519550px;}
.hc_c00203{height:36.138867px;}
.hd_c00203{height:40.475531px;}
.h14_c00203{height:47.083781px;}
.h10_c00203{height:52.246477px;}
.h19_c00203{height:52.866000px;}
.h8_c00203{height:59.075156px;}
.h3_c00203{height:73.066641px;}
.h6_c00203{height:73.103972px;}
.ha_c00203{height:76.914879px;}
.h5_c00203{height:80.062577px;}
.hb_c00203{height:80.839688px;}
.h13_c00203{height:82.977470px;}
.hf_c00203{height:136.708378px;}
.h1_c00203{height:1110.000000px;}
.h0_c00203{height:1263.000000px;}
.w1_c00203{width:775.500000px;}
.w0_c00203{width:892.500000px;}
.x0_c00203{left:0.000000px;}
.x2_c00203{left:12.376635px;}
.x1_c00203{left:58.500000px;}
.x47_c00203{left:81.914235px;}
.x5_c00203{left:83.047785px;}
.xf_c00203{left:115.608885px;}
.x21_c00203{left:116.910735px;}
.x32_c00203{left:126.281085px;}
.x1b_c00203{left:136.760235px;}
.x12_c00203{left:137.869035px;}
.x10_c00203{left:148.551135px;}
.x4_c00203{left:155.268285px;}
.x53_c00203{left:158.896635px;}
.x6_c00203{left:160.163835px;}
.x57_c00203{left:162.752685px;}
.x42_c00203{left:170.628135px;}
.x2e_c00203{left:180.676635px;}
.x3b_c00203{left:181.859685px;}
.x7_c00203{left:192.898185px;}
.x33_c00203{left:193.912935px;}
.x61_c00203{left:202.298235px;}
.x48_c00203{left:203.639685px;}
.x22_c00203{left:205.896885px;}
.x28_c00203{left:214.990035px;}
.x34_c00203{left:224.835585px;}
.x8_c00203{left:225.875085px;}
.x13_c00203{left:235.869135px;}
.x43_c00203{left:237.111585px;}
.x68_c00203{left:246.254235px;}
.x5d_c00203{left:247.476885px;}
.x11_c00203{left:249.120285px;}
.x54_c00203{left:258.881685px;}
.x59_c00203{left:270.162735px;}
.x14_c00203{left:271.231935px;}
.x4e_c00203{left:279.755835px;}
.x23_c00203{left:282.374385px;}
.x29_c00203{left:291.833835px;}
.x44_c00203{left:302.892135px;}
.x1c_c00203{left:314.445435px;}
.x4f_c00203{left:316.608585px;}
.x2f_c00203{left:325.528485px;}
.x15_c00203{left:335.354235px;}
.x9_c00203{left:336.581835px;}
.x1d_c00203{left:346.358085px;}
.x3e_c00203{left:348.258885px;}
.x30_c00203{left:358.767735px;}
.x49_c00203{left:359.990385px;}
.x24_c00203{left:369.727035px;}
.x16_c00203{left:379.859685px;}
.xa_c00203{left:381.453585px;}
.x3c_c00203{left:392.051535px;}
.x35_c00203{left:393.704835px;}
.x4a_c00203{left:402.317835px;}
.x25_c00203{left:413.004885px;}
.x66_c00203{left:425.602635px;}
.x17_c00203{left:434.789835px;}
.xb_c00203{left:436.957935px;}
.x5e_c00203{left:447.293535px;}
.x4b_c00203{left:457.901385px;}
.x5a_c00203{left:467.895435px;}
.xc_c00203{left:469.489335px;}
.x5f_c00203{left:478.943835px;}
.x18_c00203{left:480.151635px;}
.x2a_c00203{left:490.903035px;}
.x50_c00203{left:501.179235px;}
.x36_c00203{left:502.639485px;}
.x62_c00203{left:511.386135px;}
.x55_c00203{left:513.336435px;}
.x4c_c00203{left:514.356135px;}
.x64_c00203{left:522.419685px;}
.x2b_c00203{left:523.993785px;}
.x1e_c00203{left:525.686685px;}
.x51_c00203{left:533.512635px;}
.x37_c00203{left:535.710435px;}
.x63_c00203{left:545.070885px;}
.x26_c00203{left:546.125235px;}
.x19_c00203{left:547.154835px;}
.x60_c00203{left:556.069785px;}
.x2c_c00203{left:557.525085px;}
.x5c_c00203{left:566.133135px;}
.xd_c00203{left:568.043835px;}
.x3f_c00203{left:578.522985px;}
.x4d_c00203{left:580.067385px;}
.x38_c00203{left:589.764435px;}
.x45_c00203{left:599.402085px;}
.x31_c00203{left:601.387035px;}
.x3d_c00203{left:602.926485px;}
.x40_c00203{left:611.722635px;}
.x1f_c00203{left:613.019535px;}
.x56_c00203{left:622.003785px;}
.x3_c00203{left:633.403635px;}
.x46_c00203{left:645.095535px;}
.x67_c00203{left:654.837135px;}
.x39_c00203{left:655.886535px;}
.x1a_c00203{left:658.158585px;}
.xe_c00203{left:666.766635px;}
.x20_c00203{left:668.108085px;}
.x5b_c00203{left:677.938785px;}
.x27_c00203{left:680.087085px;}
.x65_c00203{left:688.328835px;}
.x41_c00203{left:689.338635px;}
.x52_c00203{left:698.525835px;}
.x3a_c00203{left:701.144385px;}
.x2d_c00203{left:711.455235px;}
.x58_c00203{left:750.119685px;}
.x69_c00203{left:772.493685px;}
.x6a_c00203{left:773.602485px;}
.x6b_c00203{left:774.641985px;}
.x6c_c00203{left:775.785435px;}
@media print{
.v0_c00203{vertical-align:0.000000pt;}
.ls8_c00203{letter-spacing:-2.537926pt;}
.lsc_c00203{letter-spacing:-2.066597pt;}
.ls10_c00203{letter-spacing:-0.485832pt;}
.ls3_c00203{letter-spacing:0.000000pt;}
.lsa_c00203{letter-spacing:0.746875pt;}
.ls15_c00203{letter-spacing:0.928156pt;}
.ls1_c00203{letter-spacing:1.348726pt;}
.ls14_c00203{letter-spacing:2.298636pt;}
.ls13_c00203{letter-spacing:2.632192pt;}
.lsb_c00203{letter-spacing:2.661197pt;}
.lsf_c00203{letter-spacing:2.675200pt;}
.lsd_c00203{letter-spacing:2.748211pt;}
.ls6_c00203{letter-spacing:2.813472pt;}
.ls0_c00203{letter-spacing:2.885985pt;}
.lse_c00203{letter-spacing:3.176033pt;}
.ls7_c00203{letter-spacing:3.234043pt;}
.ls9_c00203{letter-spacing:3.306555pt;}
.ls4_c00203{letter-spacing:3.308800pt;}
.ls11_c00203{letter-spacing:3.386319pt;}
.ls12_c00203{letter-spacing:3.484800pt;}
.ls2_c00203{letter-spacing:3.545845pt;}
.ls5_c00203{letter-spacing:3.625609pt;}
.ls16_c00203{letter-spacing:3.660800pt;}
.ws0_c00203{word-spacing:0.000000pt;}
._2_c00203{width:16.123510pt;}
._0_c00203{width:23.186127pt;}
._3_c00203{width:27.244800pt;}
._1_c00203{width:31.325505pt;}
.fs0_c00203{font-size:19.712000pt;}
.fs7_c00203{font-size:19.888000pt;}
.fs16_c00203{font-size:20.592000pt;}
.fs15_c00203{font-size:23.584000pt;}
.fs11_c00203{font-size:23.936000pt;}
.fs2_c00203{font-size:24.640000pt;}
.fs17_c00203{font-size:25.168000pt;}
.fs14_c00203{font-size:25.696000pt;}
.fs5_c00203{font-size:28.864000pt;}
.fs10_c00203{font-size:29.568000pt;}
.fsd_c00203{font-size:30.272176pt;}
.fsb_c00203{font-size:30.800000pt;}
.fsc_c00203{font-size:34.496000pt;}
.fs13_c00203{font-size:40.128000pt;}
.fsf_c00203{font-size:44.528000pt;}
.fs18_c00203{font-size:45.056000pt;}
.fs6_c00203{font-size:53.504000pt;}
.fs4_c00203{font-size:62.304176pt;}
.fs1_c00203{font-size:66.176000pt;}
.fs8_c00203{font-size:69.696000pt;}
.fs9_c00203{font-size:70.048000pt;}
.fs3_c00203{font-size:72.512176pt;}
.fsa_c00203{font-size:73.216000pt;}
.fs12_c00203{font-size:75.152176pt;}
.fse_c00203{font-size:116.512176pt;}
.y0_c00203{bottom:0.000000pt;}
.y2f_c00203{bottom:11.960120pt;}
.y2e_c00203{bottom:14.494520pt;}
.y1_c00203{bottom:68.000000pt;}
.y1c_c00203{bottom:192.214920pt;}
.y1b_c00203{bottom:219.464120pt;}
.y1a_c00203{bottom:247.021320pt;}
.y2d_c00203{bottom:253.361720pt;}
.y2_c00203{bottom:261.915320pt;}
.y2c_c00203{bottom:266.979720pt;}
.y19_c00203{bottom:274.899720pt;}
.y2b_c00203{bottom:291.694520pt;}
.y18_c00203{bottom:303.094920pt;}
.y2a_c00203{bottom:304.366520pt;}
.y17_c00203{bottom:330.973320pt;}
.y16_c00203{bottom:358.856120pt;}
.y14_c00203{bottom:387.046920pt;}
.y13_c00203{bottom:406.376120pt;}
.y12_c00203{bottom:414.929720pt;}
.y29_c00203{bottom:426.334520pt;}
.y11_c00203{bottom:443.120520pt;}
.y10_c00203{bottom:499.198520pt;}
.yf_c00203{bottom:527.389320pt;}
.ye_c00203{bottom:555.584520pt;}
.y28_c00203{bottom:573.958920pt;}
.yd_c00203{bottom:583.784120pt;}
.y27_c00203{bottom:600.570120pt;}
.yc_c00203{bottom:611.024520pt;}
.y26_c00203{bottom:617.048120pt;}
.yb_c00203{bottom:638.586120pt;}
.y25_c00203{bottom:660.766520pt;}
.ya_c00203{bottom:665.197320pt;}
.y24_c00203{bottom:670.266120pt;}
.y9_c00203{bottom:693.396920pt;}
.y23_c00203{bottom:697.198520pt;}
.y22_c00203{bottom:715.251720pt;}
.y8_c00203{bottom:721.275320pt;}
.y21_c00203{bottom:722.854920pt;}
.y20_c00203{bottom:747.569720pt;}
.y7_c00203{bottom:750.104120pt;}
.y1f_c00203{bottom:796.356920pt;}
.y1e_c00203{bottom:799.837320pt;}
.y6_c00203{bottom:805.544120pt;}
.y1d_c00203{bottom:824.864520pt;}
.y5_c00203{bottom:834.051720pt;}
.y4_c00203{bottom:852.109320pt;}
.y15_c00203{bottom:929.408520pt;}
.y3_c00203{bottom:944.931720pt;}
.h9_c00203{height:19.518984pt;}
.h2_c00203{height:20.559000pt;}
.h17_c00203{height:21.476813pt;}
.h16_c00203{height:23.146406pt;}
.h12_c00203{height:24.964500pt;}
.h4_c00203{height:25.698750pt;}
.h18_c00203{height:26.249438pt;}
.h15_c00203{height:26.800125pt;}
.h7_c00203{height:30.104250pt;}
.h11_c00203{height:30.838500pt;}
.he_c00203{height:31.572934pt;}
.hc_c00203{height:32.123438pt;}
.hd_c00203{height:35.978250pt;}
.h14_c00203{height:41.852250pt;}
.h10_c00203{height:46.441313pt;}
.h19_c00203{height:46.992000pt;}
.h8_c00203{height:52.511250pt;}
.h3_c00203{height:64.948125pt;}
.h6_c00203{height:64.981309pt;}
.ha_c00203{height:68.368781pt;}
.h5_c00203{height:71.166735pt;}
.hb_c00203{height:71.857500pt;}
.h13_c00203{height:73.757751pt;}
.hf_c00203{height:121.518559pt;}
.h1_c00203{height:986.666667pt;}
.h0_c00203{height:1122.666667pt;}
.w1_c00203{width:689.333333pt;}
.w0_c00203{width:793.333333pt;}
.x0_c00203{left:0.000000pt;}
.x2_c00203{left:11.001453pt;}
.x1_c00203{left:52.000000pt;}
.x47_c00203{left:72.812653pt;}
.x5_c00203{left:73.820253pt;}
.xf_c00203{left:102.763453pt;}
.x21_c00203{left:103.920653pt;}
.x32_c00203{left:112.249853pt;}
.x1b_c00203{left:121.564653pt;}
.x12_c00203{left:122.550253pt;}
.x10_c00203{left:132.045453pt;}
.x4_c00203{left:138.016253pt;}
.x53_c00203{left:141.241453pt;}
.x6_c00203{left:142.367853pt;}
.x57_c00203{left:144.669053pt;}
.x42_c00203{left:151.669453pt;}
.x2e_c00203{left:160.601453pt;}
.x3b_c00203{left:161.653053pt;}
.x7_c00203{left:171.465053pt;}
.x33_c00203{left:172.367053pt;}
.x61_c00203{left:179.820653pt;}
.x48_c00203{left:181.013053pt;}
.x22_c00203{left:183.019453pt;}
.x28_c00203{left:191.102253pt;}
.x34_c00203{left:199.853853pt;}
.x8_c00203{left:200.777853pt;}
.x13_c00203{left:209.661453pt;}
.x43_c00203{left:210.765853pt;}
.x68_c00203{left:218.892653pt;}
.x5d_c00203{left:219.979453pt;}
.x11_c00203{left:221.440253pt;}
.x54_c00203{left:230.117053pt;}
.x59_c00203{left:240.144653pt;}
.x14_c00203{left:241.095053pt;}
.x4e_c00203{left:248.671853pt;}
.x23_c00203{left:250.999453pt;}
.x29_c00203{left:259.407853pt;}
.x44_c00203{left:269.237453pt;}
.x1c_c00203{left:279.507053pt;}
.x4f_c00203{left:281.429853pt;}
.x2f_c00203{left:289.358653pt;}
.x15_c00203{left:298.092653pt;}
.x9_c00203{left:299.183853pt;}
.x1d_c00203{left:307.873853pt;}
.x3e_c00203{left:309.563453pt;}
.x30_c00203{left:318.904653pt;}
.x49_c00203{left:319.991453pt;}
.x24_c00203{left:328.646253pt;}
.x16_c00203{left:337.653053pt;}
.xa_c00203{left:339.069853pt;}
.x3c_c00203{left:348.490253pt;}
.x35_c00203{left:349.959853pt;}
.x4a_c00203{left:357.615853pt;}
.x25_c00203{left:367.115453pt;}
.x66_c00203{left:378.313453pt;}
.x17_c00203{left:386.479853pt;}
.xb_c00203{left:388.407053pt;}
.x5e_c00203{left:397.594253pt;}
.x4b_c00203{left:407.023453pt;}
.x5a_c00203{left:415.907053pt;}
.xc_c00203{left:417.323853pt;}
.x5f_c00203{left:425.727853pt;}
.x18_c00203{left:426.801453pt;}
.x2a_c00203{left:436.358253pt;}
.x50_c00203{left:445.492653pt;}
.x36_c00203{left:446.790653pt;}
.x62_c00203{left:454.565453pt;}
.x55_c00203{left:456.299053pt;}
.x4c_c00203{left:457.205453pt;}
.x64_c00203{left:464.373053pt;}
.x2b_c00203{left:465.772253pt;}
.x1e_c00203{left:467.277053pt;}
.x51_c00203{left:474.233453pt;}
.x37_c00203{left:476.187053pt;}
.x63_c00203{left:484.507453pt;}
.x26_c00203{left:485.444653pt;}
.x19_c00203{left:486.359853pt;}
.x60_c00203{left:494.284253pt;}
.x2c_c00203{left:495.577853pt;}
.x5c_c00203{left:503.229453pt;}
.xd_c00203{left:504.927853pt;}
.x3f_c00203{left:514.242653pt;}
.x4d_c00203{left:515.615453pt;}
.x38_c00203{left:524.235053pt;}
.x45_c00203{left:532.801853pt;}
.x31_c00203{left:534.566253pt;}
.x3d_c00203{left:535.934653pt;}
.x40_c00203{left:543.753453pt;}
.x1f_c00203{left:544.906253pt;}
.x56_c00203{left:552.892253pt;}
.x3_c00203{left:563.025453pt;}
.x46_c00203{left:573.418253pt;}
.x67_c00203{left:582.077453pt;}
.x39_c00203{left:583.010253pt;}
.x1a_c00203{left:585.029853pt;}
.xe_c00203{left:592.681453pt;}
.x20_c00203{left:593.873853pt;}
.x5b_c00203{left:602.612253pt;}
.x27_c00203{left:604.521853pt;}
.x65_c00203{left:611.847853pt;}
.x41_c00203{left:612.745453pt;}
.x52_c00203{left:620.911853pt;}
.x3a_c00203{left:623.239453pt;}
.x2d_c00203{left:632.404653pt;}
.x58_c00203{left:666.773053pt;}
.x69_c00203{left:686.661053pt;}
.x6a_c00203{left:687.646653pt;}
.x6b_c00203{left:688.570653pt;}
.x6c_c00203{left:689.587053pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bee95a8141bd36e24a3345a1.woff2')format("woff");}.ff1_c00204{font-family:ff1_c00204;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00204;src:url('chunks/assets/font_47734d108c5edcca121540f8.woff2')format("woff");}.ff2_c00204{font-family:ff2_c00204;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00204;src:url('chunks/assets/font_ae2e999b3f01dddc71795c65.woff2')format("woff");}.ff3_c00204{font-family:ff3_c00204;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00204;src:url('chunks/assets/font_4434c4c7a7fecc8056136a86.woff2')format("woff");}.ff4_c00204{font-family:ff4_c00204;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m34_c00204{transform:matrix(0.160715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160715,0.000000,0.000000,0.250000,0,0);}
.m75_c00204{transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00204{transform:matrix(0.177982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177982,0.000000,0.000000,0.250000,0,0);}
.m76_c00204{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m33_c00204{transform:matrix(0.181973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181973,0.000000,0.000000,0.250000,0,0);}
.ma_c00204{transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);}
.m9d_c00204{transform:matrix(0.235239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235239,0.000000,0.000000,0.250000,0,0);}
.m44_c00204{transform:matrix(0.238588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238588,0.000000,0.000000,0.250000,0,0);}
.m86_c00204{transform:matrix(0.239946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239946,0.000000,0.000000,0.250000,0,0);}
.m0_c00204{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00204{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.m4d_c00204{transform:matrix(0.252167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252167,0.000000,0.000000,0.250000,0,0);}
.m50_c00204{transform:matrix(0.252369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252369,0.000000,0.000000,0.250000,0,0);}
.m43_c00204{transform:matrix(0.255172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255172,0.000000,0.000000,0.250000,0,0);}
.m7a_c00204{transform:matrix(0.256424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256424,0.000000,0.000000,0.250000,0,0);}
.m5f_c00204{transform:matrix(0.257794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257794,0.000000,0.000000,0.250000,0,0);}
.m18_c00204{transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);}
.m48_c00204{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m66_c00204{transform:matrix(0.261106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261106,0.000000,0.000000,0.250000,0,0);}
.m1_c00204{transform:matrix(0.261283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261283,0.000000,0.000000,0.250000,0,0);}
.m47_c00204{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.mb5_c00204{transform:matrix(0.261624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261624,0.000000,0.000000,0.250000,0,0);}
.m8d_c00204{transform:matrix(0.262145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262145,0.000000,0.000000,0.250000,0,0);}
.m2b_c00204{transform:matrix(0.262549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262549,0.000000,0.000000,0.250000,0,0);}
.m15_c00204{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m22_c00204{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m58_c00204{transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);}
.m1b_c00204{transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);}
.m81_c00204{transform:matrix(0.265972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265972,0.000000,0.000000,0.250000,0,0);}
.ma6_c00204{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m13_c00204{transform:matrix(0.266682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266682,0.000000,0.000000,0.250000,0,0);}
.m71_c00204{transform:matrix(0.266804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266804,0.000000,0.000000,0.250000,0,0);}
.m98_c00204{transform:matrix(0.267205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267205,0.000000,0.000000,0.250000,0,0);}
.m4_c00204{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.ma5_c00204{transform:matrix(0.268100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268100,0.000000,0.000000,0.250000,0,0);}
.mc_c00204{transform:matrix(0.268177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268177,0.000000,0.000000,0.250000,0,0);}
.m61_c00204{transform:matrix(0.270180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270180,0.000000,0.000000,0.250000,0,0);}
.m24_c00204{transform:matrix(0.270666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270666,0.000000,0.000000,0.250000,0,0);}
.m72_c00204{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m88_c00204{transform:matrix(0.270977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270977,0.000000,0.000000,0.250000,0,0);}
.m83_c00204{transform:matrix(0.271388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271388,0.000000,0.000000,0.250000,0,0);}
.ma8_c00204{transform:matrix(0.271467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271467,0.000000,0.000000,0.250000,0,0);}
.m6_c00204{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m25_c00204{transform:matrix(0.273249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273249,0.000000,0.000000,0.250000,0,0);}
.maa_c00204{transform:matrix(0.273691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273691,0.000000,0.000000,0.250000,0,0);}
.m3c_c00204{transform:matrix(0.275566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275566,0.000000,0.000000,0.250000,0,0);}
.m68_c00204{transform:matrix(0.275571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275571,0.000000,0.000000,0.250000,0,0);}
.m7d_c00204{transform:matrix(0.275904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275904,0.000000,0.000000,0.250000,0,0);}
.ma3_c00204{transform:matrix(0.276432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276432,0.000000,0.000000,0.250000,0,0);}
.m1a_c00204{transform:matrix(0.276604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276604,0.000000,0.000000,0.250000,0,0);}
.m3_c00204{transform:matrix(0.277360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277360,0.000000,0.000000,0.250000,0,0);}
.m5e_c00204{transform:matrix(0.277596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277596,0.000000,0.000000,0.250000,0,0);}
.m6a_c00204{transform:matrix(0.278331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278331,0.000000,0.000000,0.250000,0,0);}
.mba_c00204{transform:matrix(0.278456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278456,0.000000,0.000000,0.250000,0,0);}
.m23_c00204{transform:matrix(0.278530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278530,0.000000,0.000000,0.250000,0,0);}
.m59_c00204{transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);}
.m17_c00204{transform:matrix(0.278975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278975,0.000000,0.000000,0.250000,0,0);}
.m12_c00204{transform:matrix(0.279183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279183,0.000000,0.000000,0.250000,0,0);}
.m39_c00204{transform:matrix(0.279578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279578,0.000000,0.000000,0.250000,0,0);}
.m6c_c00204{transform:matrix(0.279948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279948,0.000000,0.000000,0.250000,0,0);}
.m9b_c00204{transform:matrix(0.281349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281349,0.000000,0.000000,0.250000,0,0);}
.m40_c00204{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.m3b_c00204{transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);}
.m3f_c00204{transform:matrix(0.282888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282888,0.000000,0.000000,0.250000,0,0);}
.m26_c00204{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.mab_c00204{transform:matrix(0.283626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283626,0.000000,0.000000,0.250000,0,0);}
.m8e_c00204{transform:matrix(0.284153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284153,0.000000,0.000000,0.250000,0,0);}
.m78_c00204{transform:matrix(0.284531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284531,0.000000,0.000000,0.250000,0,0);}
.m85_c00204{transform:matrix(0.284612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284612,0.000000,0.000000,0.250000,0,0);}
.mb7_c00204{transform:matrix(0.285787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285787,0.000000,0.000000,0.250000,0,0);}
.ma7_c00204{transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);}
.m64_c00204{transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);}
.m53_c00204{transform:matrix(0.286302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286302,0.000000,0.000000,0.250000,0,0);}
.m77_c00204{transform:matrix(0.286439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286439,0.000000,0.000000,0.250000,0,0);}
.m42_c00204{transform:matrix(0.286756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286756,0.000000,0.000000,0.250000,0,0);}
.mb6_c00204{transform:matrix(0.287000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287000,0.000000,0.000000,0.250000,0,0);}
.m38_c00204{transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);}
.mb_c00204{transform:matrix(0.287284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287284,0.000000,0.000000,0.250000,0,0);}
.m9c_c00204{transform:matrix(0.287645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287645,0.000000,0.000000,0.250000,0,0);}
.m60_c00204{transform:matrix(0.287830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287830,0.000000,0.000000,0.250000,0,0);}
.mbb_c00204{transform:matrix(0.288974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288974,0.000000,0.000000,0.250000,0,0);}
.mae_c00204{transform:matrix(0.289616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289616,0.000000,0.000000,0.250000,0,0);}
.m2c_c00204{transform:matrix(0.290362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290362,0.000000,0.000000,0.250000,0,0);}
.m8a_c00204{transform:matrix(0.290594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290594,0.000000,0.000000,0.250000,0,0);}
.mc0_c00204{transform:matrix(0.290943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290943,0.000000,0.000000,0.250000,0,0);}
.m2d_c00204{transform:matrix(0.291977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291977,0.000000,0.000000,0.250000,0,0);}
.m80_c00204{transform:matrix(0.292383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292383,0.000000,0.000000,0.250000,0,0);}
.m8c_c00204{transform:matrix(0.293155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293155,0.000000,0.000000,0.250000,0,0);}
.me_c00204{transform:matrix(0.293719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293719,0.000000,0.000000,0.250000,0,0);}
.maf_c00204{transform:matrix(0.294066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294066,0.000000,0.000000,0.250000,0,0);}
.m73_c00204{transform:matrix(0.294638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294638,0.000000,0.000000,0.250000,0,0);}
.mbc_c00204{transform:matrix(0.294734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294734,0.000000,0.000000,0.250000,0,0);}
.mb0_c00204{transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);}
.m87_c00204{transform:matrix(0.294958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294958,0.000000,0.000000,0.250000,0,0);}
.m89_c00204{transform:matrix(0.295037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295037,0.000000,0.000000,0.250000,0,0);}
.m95_c00204{transform:matrix(0.295090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295090,0.000000,0.000000,0.250000,0,0);}
.m6e_c00204{transform:matrix(0.295202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295202,0.000000,0.000000,0.250000,0,0);}
.m65_c00204{transform:matrix(0.295492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295492,0.000000,0.000000,0.250000,0,0);}
.m1e_c00204{transform:matrix(0.295843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295843,0.000000,0.000000,0.250000,0,0);}
.m29_c00204{transform:matrix(0.295991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295991,0.000000,0.000000,0.250000,0,0);}
.mb9_c00204{transform:matrix(0.296778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296778,0.000000,0.000000,0.250000,0,0);}
.m69_c00204{transform:matrix(0.296890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296890,0.000000,0.000000,0.250000,0,0);}
.m4f_c00204{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m30_c00204{transform:matrix(0.297306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297306,0.000000,0.000000,0.250000,0,0);}
.m5b_c00204{transform:matrix(0.297646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297646,0.000000,0.000000,0.250000,0,0);}
.m90_c00204{transform:matrix(0.298017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298017,0.000000,0.000000,0.250000,0,0);}
.m56_c00204{transform:matrix(0.298124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298124,0.000000,0.000000,0.250000,0,0);}
.m8_c00204{transform:matrix(0.298206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298206,0.000000,0.000000,0.250000,0,0);}
.m1f_c00204{transform:matrix(0.299574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299574,0.000000,0.000000,0.250000,0,0);}
.mf_c00204{transform:matrix(0.300778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300778,0.000000,0.000000,0.250000,0,0);}
.m96_c00204{transform:matrix(0.300792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300792,0.000000,0.000000,0.250000,0,0);}
.m8f_c00204{transform:matrix(0.301806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301806,0.000000,0.000000,0.250000,0,0);}
.m49_c00204{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.mbd_c00204{transform:matrix(0.302563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302563,0.000000,0.000000,0.250000,0,0);}
.mb2_c00204{transform:matrix(0.302605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302605,0.000000,0.000000,0.250000,0,0);}
.ma0_c00204{transform:matrix(0.302940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302940,0.000000,0.000000,0.250000,0,0);}
.m54_c00204{transform:matrix(0.304428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304428,0.000000,0.000000,0.250000,0,0);}
.m4e_c00204{transform:matrix(0.306531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306531,0.000000,0.000000,0.250000,0,0);}
.m6f_c00204{transform:matrix(0.306846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306846,0.000000,0.000000,0.250000,0,0);}
.m93_c00204{transform:matrix(0.306974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306974,0.000000,0.000000,0.250000,0,0);}
.m92_c00204{transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);}
.m27_c00204{transform:matrix(0.308280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308280,0.000000,0.000000,0.250000,0,0);}
.m91_c00204{transform:matrix(0.308481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308481,0.000000,0.000000,0.250000,0,0);}
.m7_c00204{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m70_c00204{transform:matrix(0.308579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308579,0.000000,0.000000,0.250000,0,0);}
.m79_c00204{transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);}
.m1d_c00204{transform:matrix(0.309497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309497,0.000000,0.000000,0.250000,0,0);}
.m7b_c00204{transform:matrix(0.309855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309855,0.000000,0.000000,0.250000,0,0);}
.m46_c00204{transform:matrix(0.310252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310252,0.000000,0.000000,0.250000,0,0);}
.m19_c00204{transform:matrix(0.310653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310653,0.000000,0.000000,0.250000,0,0);}
.m62_c00204{transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);}
.mad_c00204{transform:matrix(0.310900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310900,0.000000,0.000000,0.250000,0,0);}
.m36_c00204{transform:matrix(0.311129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311129,0.000000,0.000000,0.250000,0,0);}
.m20_c00204{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.m4b_c00204{transform:matrix(0.312751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312751,0.000000,0.000000,0.250000,0,0);}
.m7e_c00204{transform:matrix(0.312774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312774,0.000000,0.000000,0.250000,0,0);}
.m9a_c00204{transform:matrix(0.314867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314867,0.000000,0.000000,0.250000,0,0);}
.m2_c00204{transform:matrix(0.315048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315048,0.000000,0.000000,0.250000,0,0);}
.m6d_c00204{transform:matrix(0.315389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315389,0.000000,0.000000,0.250000,0,0);}
.m41_c00204{transform:matrix(0.317482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317482,0.000000,0.000000,0.250000,0,0);}
.m9f_c00204{transform:matrix(0.317968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317968,0.000000,0.000000,0.250000,0,0);}
.m84_c00204{transform:matrix(0.318082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318082,0.000000,0.000000,0.250000,0,0);}
.m4a_c00204{transform:matrix(0.319176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319176,0.000000,0.000000,0.250000,0,0);}
.m21_c00204{transform:matrix(0.320833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320833,0.000000,0.000000,0.250000,0,0);}
.m67_c00204{transform:matrix(0.320919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320919,0.000000,0.000000,0.250000,0,0);}
.m57_c00204{transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);}
.mb8_c00204{transform:matrix(0.323210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323210,0.000000,0.000000,0.250000,0,0);}
.m99_c00204{transform:matrix(0.325326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325326,0.000000,0.000000,0.250000,0,0);}
.m31_c00204{transform:matrix(0.325919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325919,0.000000,0.000000,0.250000,0,0);}
.m35_c00204{transform:matrix(0.326049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326049,0.000000,0.000000,0.250000,0,0);}
.m5d_c00204{transform:matrix(0.326100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326100,0.000000,0.000000,0.250000,0,0);}
.m5_c00204{transform:matrix(0.326455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326455,0.000000,0.000000,0.250000,0,0);}
.m6b_c00204{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m3a_c00204{transform:matrix(0.327297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327297,0.000000,0.000000,0.250000,0,0);}
.m14_c00204{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);}
.m51_c00204{transform:matrix(0.330019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330019,0.000000,0.000000,0.250000,0,0);}
.ma2_c00204{transform:matrix(0.330299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330299,0.000000,0.000000,0.250000,0,0);}
.m94_c00204{transform:matrix(0.331026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331026,0.000000,0.000000,0.250000,0,0);}
.m45_c00204{transform:matrix(0.331631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331631,0.000000,0.000000,0.250000,0,0);}
.m32_c00204{transform:matrix(0.333215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333215,0.000000,0.000000,0.250000,0,0);}
.m2a_c00204{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m4c_c00204{transform:matrix(0.334069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334069,0.000000,0.000000,0.250000,0,0);}
.mb1_c00204{transform:matrix(0.334575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334575,0.000000,0.000000,0.250000,0,0);}
.m82_c00204{transform:matrix(0.336247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336247,0.000000,0.000000,0.250000,0,0);}
.mb4_c00204{transform:matrix(0.337181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337181,0.000000,0.000000,0.250000,0,0);}
.m8b_c00204{transform:matrix(0.338383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338383,0.000000,0.000000,0.250000,0,0);}
.m11_c00204{transform:matrix(0.339556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339556,0.000000,0.000000,0.250000,0,0);}
.m37_c00204{transform:matrix(0.340068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340068,0.000000,0.000000,0.250000,0,0);}
.m5c_c00204{transform:matrix(0.341020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341020,0.000000,0.000000,0.250000,0,0);}
.m10_c00204{transform:matrix(0.342184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342184,0.000000,0.000000,0.250000,0,0);}
.m5a_c00204{transform:matrix(0.344559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344559,0.000000,0.000000,0.250000,0,0);}
.m52_c00204{transform:matrix(0.344852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344852,0.000000,0.000000,0.250000,0,0);}
.mbf_c00204{transform:matrix(0.345627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345627,0.000000,0.000000,0.250000,0,0);}
.m28_c00204{transform:matrix(0.348266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348266,0.000000,0.000000,0.250000,0,0);}
.m97_c00204{transform:matrix(0.348765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348765,0.000000,0.000000,0.250000,0,0);}
.m2e_c00204{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.md_c00204{transform:matrix(0.350956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350956,0.000000,0.000000,0.250000,0,0);}
.mac_c00204{transform:matrix(0.351580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351580,0.000000,0.000000,0.250000,0,0);}
.mb3_c00204{transform:matrix(0.353109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353109,0.000000,0.000000,0.250000,0,0);}
.m9_c00204{transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);}
.m1c_c00204{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.mbe_c00204{transform:matrix(0.358046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358046,0.000000,0.000000,0.250000,0,0);}
.m3e_c00204{transform:matrix(0.359169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359169,0.000000,0.000000,0.250000,0,0);}
.m55_c00204{transform:matrix(0.359908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359908,0.000000,0.000000,0.250000,0,0);}
.m7f_c00204{transform:matrix(0.361367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361367,0.000000,0.000000,0.250000,0,0);}
.ma1_c00204{transform:matrix(0.370256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370256,0.000000,0.000000,0.250000,0,0);}
.m74_c00204{transform:matrix(0.373079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373079,0.000000,0.000000,0.250000,0,0);}
.m63_c00204{transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);}
.m2f_c00204{transform:matrix(0.374714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374714,0.000000,0.000000,0.250000,0,0);}
.ma9_c00204{transform:matrix(0.378961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378961,0.000000,0.000000,0.250000,0,0);}
.m3d_c00204{transform:matrix(0.381065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381065,0.000000,0.000000,0.250000,0,0);}
.ma4_c00204{transform:matrix(0.416528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416528,0.000000,0.000000,0.250000,0,0);}
.m16_c00204{transform:matrix(0.421627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421627,0.000000,0.000000,0.250000,0,0);}
.v0_c00204{vertical-align:0.000000px;}
.lsd_c00204{letter-spacing:-2.744280px;}
.ls16_c00204{letter-spacing:-2.375762px;}
.ls12_c00204{letter-spacing:-1.275120px;}
.ls4_c00204{letter-spacing:-0.219542px;}
.ls17_c00204{letter-spacing:-0.180338px;}
.lse_c00204{letter-spacing:-0.047045px;}
.ls2_c00204{letter-spacing:0.000000px;}
.lsf_c00204{letter-spacing:0.462607px;}
.ls13_c00204{letter-spacing:0.611582px;}
.ls0_c00204{letter-spacing:2.575827px;}
.lsc_c00204{letter-spacing:2.712917px;}
.ls18_c00204{letter-spacing:2.851200px;}
.ls8_c00204{letter-spacing:3.079712px;}
.ls14_c00204{letter-spacing:3.112798px;}
.lsb_c00204{letter-spacing:3.168000px;}
.ls10_c00204{letter-spacing:3.524400px;}
.ls3_c00204{letter-spacing:3.623400px;}
.ls9_c00204{letter-spacing:3.722400px;}
.ls7_c00204{letter-spacing:3.801610px;}
.ls5_c00204{letter-spacing:3.920400px;}
.ls15_c00204{letter-spacing:4.207500px;}
.ls1_c00204{letter-spacing:7.135128px;}
.ls6_c00204{letter-spacing:51.321798px;}
.ls11_c00204{letter-spacing:57.024198px;}
.lsa_c00204{letter-spacing:59.875398px;}
.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;}
}
.ws1_c00204{word-spacing:-19.602000px;}
.ws0_c00204{word-spacing:-19.382458px;}
.ws2_c00204{word-spacing:-6.285720px;}
.ws3_c00204{word-spacing:0.000000px;}
._c_c00204{width:4.469256px;}
._2_c00204{width:5.723388px;}
._0_c00204{width:6.931267px;}
._4_c00204{width:8.075628px;}
._9_c00204{width:9.251748px;}
._3_c00204{width:10.318493px;}
._e_c00204{width:11.761200px;}
._6_c00204{width:17.406576px;}
._1_c00204{width:20.856528px;}
._5_c00204{width:22.267872px;}
._a_c00204{width:23.679216px;}
._f_c00204{width:25.796232px;}
._11_c00204{width:29.324592px;}
._b_c00204{width:31.049568px;}
._10_c00204{width:34.029072px;}
._8_c00204{width:36.208181px;}
._12_c00204{width:38.332800px;}
._d_c00204{width:39.752856px;}
._7_c00204{width:100.205820px;}
.fc0_c00204{color:transparent;}
.fse_c00204{font-size:22.374000px;}
.fsb_c00204{font-size:36.432000px;}
.fs2_c00204{font-size:51.321798px;}
.fsd_c00204{font-size:57.024000px;}
.fs9_c00204{font-size:57.024198px;}
.fs6_c00204{font-size:59.875398px;}
.fs7_c00204{font-size:63.360000px;}
.fs8_c00204{font-size:70.488000px;}
.fs0_c00204{font-size:72.468000px;}
.fs4_c00204{font-size:73.854000px;}
.fs5_c00204{font-size:74.448000px;}
.fs3_c00204{font-size:76.032198px;}
.fs1_c00204{font-size:78.408000px;}
.fsc_c00204{font-size:84.150000px;}
.fsa_c00204{font-size:87.912198px;}
.y0_c00204{bottom:0.000000px;}
.y1c_c00204{bottom:39.115935px;}
.y1_c00204{bottom:76.500000px;}
.y1b_c00204{bottom:147.456585px;}
.y1a_c00204{bottom:177.755535px;}
.y19_c00204{bottom:212.682735px;}
.y18_c00204{bottom:245.110185px;}
.y17_c00204{bottom:277.542585px;}
.y16_c00204{bottom:342.050985px;}
.y14_c00204{bottom:374.126589px;}
.y15_c00204{bottom:374.126985px;}
.y13_c00204{bottom:406.920735px;}
.y12_c00204{bottom:438.996735px;}
.y11_c00204{bottom:471.424185px;}
.y10_c00204{bottom:504.217935px;}
.yf_c00204{bottom:536.288985px;}
.ye_c00204{bottom:569.795535px;}
.yd_c00204{bottom:569.802465px;}
.yc_c00204{bottom:601.871535px;}
.yb_c00204{bottom:633.942585px;}
.ya_c00204{bottom:665.667135px;}
.y9_c00204{bottom:698.094585px;}
.y8_c00204{bottom:730.175535px;}
.y7_c00204{bottom:794.678985px;}
.y6_c00204{bottom:828.536985px;}
.y5_c00204{bottom:861.325785px;}
.y4_c00204{bottom:894.114585px;}
.y3_c00204{bottom:927.621135px;}
.y2_c00204{bottom:1075.878585px;}
.h11_c00204{height:21.958857px;}
.h4_c00204{height:34.180317px;}
.hb_c00204{height:37.978116px;}
.hd_c00204{height:37.997438px;}
.h8_c00204{height:39.877015px;}
.h10_c00204{height:59.474250px;}
.h9_c00204{height:66.082500px;}
.ha_c00204{height:69.180117px;}
.h2_c00204{height:71.123379px;}
.h6_c00204{height:72.483662px;}
.h7_c00204{height:73.066641px;}
.h5_c00204{height:76.626200px;}
.h3_c00204{height:76.953164px;}
.he_c00204{height:79.020563px;}
.hf_c00204{height:84.807422px;}
.hc_c00204{height:86.281015px;}
.h1_c00204{height:1110.000000px;}
.h0_c00204{height:1263.000000px;}
.w1_c00204{width:733.500000px;}
.w0_c00204{width:892.500000px;}
.x0_c00204{left:0.000000px;}
.x11_c00204{left:47.410635px;}
.x24_c00204{left:48.950085px;}
.x4a_c00204{left:59.305485px;}
.x37_c00204{left:69.636135px;}
.x58_c00204{left:78.382785px;}
.x1_c00204{left:79.500000px;}
.x40_c00204{left:80.743935px;}
.x12_c00204{left:91.559685px;}
.x61_c00204{left:92.787285px;}
.x4_c00204{left:102.449685px;}
.x59_c00204{left:103.469385px;}
.x41_c00204{left:113.146635px;}
.x4d_c00204{left:114.493035px;}
.x1d_c00204{left:123.294135px;}
.x13_c00204{left:124.546485px;}
.x5f_c00204{left:125.952285px;}
.x46_c00204{left:134.679135px;}
.x14_c00204{left:135.926535px;}
.x25_c00204{left:146.276985px;}
.x38_c00204{left:157.107585px;}
.x5_c00204{left:158.340135px;}
.x15_c00204{left:168.205485px;}
.x64_c00204{left:169.452885px;}
.x6_c00204{left:179.768685px;}
.x16_c00204{left:190.703235px;}
.x42_c00204{left:201.870435px;}
.x55_c00204{left:202.944585px;}
.x6b_c00204{left:206.637285px;}
.x33_c00204{left:212.790135px;}
.x39_c00204{left:214.507785px;}
.x7_c00204{left:223.625685px;}
.x5e_c00204{left:224.684985px;}
.x3a_c00204{left:233.387085px;}
.x56_c00204{left:234.985935px;}
.x4e_c00204{left:245.514585px;}
.x2c_c00204{left:255.860085px;}
.x8_c00204{left:257.161935px;}
.x62_c00204{left:259.874535px;}
.x4f_c00204{left:268.452885px;}
.x3b_c00204{left:277.288635px;}
.x43_c00204{left:279.164685px;}
.x2d_c00204{left:281.308035px;}
.x9_c00204{left:288.995385px;}
.x1e_c00204{left:290.252685px;}
.x3c_c00204{left:301.320885px;}
.x34_c00204{left:304.023585px;}
.xa_c00204{left:312.007935px;}
.x63_c00204{left:313.057335px;}
.x17_c00204{left:323.076135px;}
.x53_c00204{left:326.565885px;}
.x26_c00204{left:334.857135px;}
.x5b_c00204{left:336.550035px;}
.xb_c00204{left:345.128385px;}
.x47_c00204{left:357.582585px;}
.x60_c00204{left:359.003235px;}
.x18_c00204{left:367.230135px;}
.x65_c00204{left:368.324085px;}
.x5c_c00204{left:370.601085px;}
.x1f_c00204{left:378.654735px;}
.x4b_c00204{left:380.694135px;}
.xc_c00204{left:388.871535px;}
.x19_c00204{left:400.043685px;}
.xd_c00204{left:401.063385px;}
.x27_c00204{left:411.092085px;}
.x20_c00204{left:422.100885px;}
.x1a_c00204{left:424.932285px;}
.x2e_c00204{left:433.510635px;}
.x28_c00204{left:444.618435px;}
.x21_c00204{left:455.424285px;}
.x3d_c00204{left:458.463585px;}
.x2f_c00204{left:466.155885px;}
.x54_c00204{left:467.403285px;}
.x5a_c00204{left:478.144785px;}
.x29_c00204{left:488.425935px;}
.x48_c00204{left:489.430785px;}
.x5d_c00204{left:499.286235px;}
.xe_c00204{left:500.538585px;}
.x44_c00204{left:501.870135px;}
.x30_c00204{left:510.527685px;}
.x66_c00204{left:511.586985px;}
.xf_c00204{left:520.991985px;}
.x22_c00204{left:530.995935px;}
.x67_c00204{left:532.901685px;}
.x49_c00204{left:543.167985px;}
.x10_c00204{left:553.152135px;}
.x35_c00204{left:554.661885px;}
.x2a_c00204{left:565.655835px;}
.x31_c00204{left:576.798285px;}
.x36_c00204{left:587.480385px;}
.x50_c00204{left:589.796985px;}
.x1b_c00204{left:598.207035px;}
.x68_c00204{left:599.246535px;}
.x57_c00204{left:601.345335px;}
.x3e_c00204{left:609.587085px;}
.x2b_c00204{left:621.011685px;}
.x69_c00204{left:630.109785px;}
.x2_c00204{left:631.693785px;}
.x3f_c00204{left:632.713485px;}
.x3_c00204{left:642.841185px;}
.x51_c00204{left:644.786535px;}
.x4c_c00204{left:651.825435px;}
.x32_c00204{left:653.449035px;}
.x1c_c00204{left:664.145985px;}
.x52_c00204{left:665.180535px;}
.x45_c00204{left:674.649885px;}
.x23_c00204{left:686.267535px;}
.x6a_c00204{left:708.656385px;}
@media print{
.v0_c00204{vertical-align:0.000000pt;}
.lsd_c00204{letter-spacing:-2.439360pt;}
.ls16_c00204{letter-spacing:-2.111789pt;}
.ls12_c00204{letter-spacing:-1.133440pt;}
.ls4_c00204{letter-spacing:-0.195149pt;}
.ls17_c00204{letter-spacing:-0.160301pt;}
.lse_c00204{letter-spacing:-0.041818pt;}
.ls2_c00204{letter-spacing:0.000000pt;}
.lsf_c00204{letter-spacing:0.411206pt;}
.ls13_c00204{letter-spacing:0.543629pt;}
.ls0_c00204{letter-spacing:2.289624pt;}
.lsc_c00204{letter-spacing:2.411482pt;}
.ls18_c00204{letter-spacing:2.534400pt;}
.ls8_c00204{letter-spacing:2.737522pt;}
.ls14_c00204{letter-spacing:2.766931pt;}
.lsb_c00204{letter-spacing:2.816000pt;}
.ls10_c00204{letter-spacing:3.132800pt;}
.ls3_c00204{letter-spacing:3.220800pt;}
.ls9_c00204{letter-spacing:3.308800pt;}
.ls7_c00204{letter-spacing:3.379209pt;}
.ls5_c00204{letter-spacing:3.484800pt;}
.ls15_c00204{letter-spacing:3.740000pt;}
.ls1_c00204{letter-spacing:6.342336pt;}
.ls6_c00204{letter-spacing:45.619376pt;}
.ls11_c00204{letter-spacing:50.688176pt;}
.lsa_c00204{letter-spacing:53.222576pt;}
.ws1_c00204{word-spacing:-17.424000pt;}
.ws0_c00204{word-spacing:-17.228851pt;}
.ws2_c00204{word-spacing:-5.587307pt;}
.ws3_c00204{word-spacing:0.000000pt;}
._c_c00204{width:3.972672pt;}
._2_c00204{width:5.087456pt;}
._0_c00204{width:6.161126pt;}
._4_c00204{width:7.178336pt;}
._9_c00204{width:8.223776pt;}
._3_c00204{width:9.171994pt;}
._e_c00204{width:10.454400pt;}
._6_c00204{width:15.472512pt;}
._1_c00204{width:18.539136pt;}
._5_c00204{width:19.793664pt;}
._a_c00204{width:21.048192pt;}
._f_c00204{width:22.929984pt;}
._11_c00204{width:26.066304pt;}
._b_c00204{width:27.599616pt;}
._10_c00204{width:30.248064pt;}
._8_c00204{width:32.185050pt;}
._12_c00204{width:34.073600pt;}
._d_c00204{width:35.335872pt;}
._7_c00204{width:89.071840pt;}
.fse_c00204{font-size:19.888000pt;}
.fsb_c00204{font-size:32.384000pt;}
.fs2_c00204{font-size:45.619376pt;}
.fsd_c00204{font-size:50.688000pt;}
.fs9_c00204{font-size:50.688176pt;}
.fs6_c00204{font-size:53.222576pt;}
.fs7_c00204{font-size:56.320000pt;}
.fs8_c00204{font-size:62.656000pt;}
.fs0_c00204{font-size:64.416000pt;}
.fs4_c00204{font-size:65.648000pt;}
.fs5_c00204{font-size:66.176000pt;}
.fs3_c00204{font-size:67.584176pt;}
.fs1_c00204{font-size:69.696000pt;}
.fsc_c00204{font-size:74.800000pt;}
.fsa_c00204{font-size:78.144176pt;}
.y0_c00204{bottom:0.000000pt;}
.y1c_c00204{bottom:34.769720pt;}
.y1_c00204{bottom:68.000000pt;}
.y1b_c00204{bottom:131.072520pt;}
.y1a_c00204{bottom:158.004920pt;}
.y19_c00204{bottom:189.051320pt;}
.y18_c00204{bottom:217.875720pt;}
.y17_c00204{bottom:246.704520pt;}
.y16_c00204{bottom:304.045320pt;}
.y14_c00204{bottom:332.556968pt;}
.y15_c00204{bottom:332.557320pt;}
.y13_c00204{bottom:361.707320pt;}
.y12_c00204{bottom:390.219320pt;}
.y11_c00204{bottom:419.043720pt;}
.y10_c00204{bottom:448.193720pt;}
.yf_c00204{bottom:476.701320pt;}
.ye_c00204{bottom:506.484920pt;}
.yd_c00204{bottom:506.491080pt;}
.yc_c00204{bottom:534.996920pt;}
.yb_c00204{bottom:563.504520pt;}
.ya_c00204{bottom:591.704120pt;}
.y9_c00204{bottom:620.528520pt;}
.y8_c00204{bottom:649.044920pt;}
.y7_c00204{bottom:706.381320pt;}
.y6_c00204{bottom:736.477320pt;}
.y5_c00204{bottom:765.622920pt;}
.y4_c00204{bottom:794.768520pt;}
.y3_c00204{bottom:824.552120pt;}
.y2_c00204{bottom:956.336520pt;}
.h11_c00204{height:19.518984pt;}
.h4_c00204{height:30.382504pt;}
.hb_c00204{height:33.758325pt;}
.hd_c00204{height:33.775500pt;}
.h8_c00204{height:35.446236pt;}
.h10_c00204{height:52.866000pt;}
.h9_c00204{height:58.740000pt;}
.ha_c00204{height:61.493438pt;}
.h2_c00204{height:63.220781pt;}
.h6_c00204{height:64.429922pt;}
.h7_c00204{height:64.948125pt;}
.h5_c00204{height:68.112177pt;}
.h3_c00204{height:68.402813pt;}
.he_c00204{height:70.240500pt;}
.hf_c00204{height:75.384375pt;}
.hc_c00204{height:76.694235pt;}
.h1_c00204{height:986.666667pt;}
.h0_c00204{height:1122.666667pt;}
.w1_c00204{width:652.000000pt;}
.w0_c00204{width:793.333333pt;}
.x0_c00204{left:0.000000pt;}
.x11_c00204{left:42.142787pt;}
.x24_c00204{left:43.511187pt;}
.x4a_c00204{left:52.715987pt;}
.x37_c00204{left:61.898787pt;}
.x58_c00204{left:69.673587pt;}
.x1_c00204{left:70.666667pt;}
.x40_c00204{left:71.772387pt;}
.x12_c00204{left:81.386387pt;}
.x61_c00204{left:82.477587pt;}
.x4_c00204{left:91.066387pt;}
.x59_c00204{left:91.972787pt;}
.x41_c00204{left:100.574787pt;}
.x4d_c00204{left:101.771587pt;}
.x1d_c00204{left:109.594787pt;}
.x13_c00204{left:110.707987pt;}
.x5f_c00204{left:111.957587pt;}
.x46_c00204{left:119.714787pt;}
.x14_c00204{left:120.823587pt;}
.x25_c00204{left:130.023987pt;}
.x38_c00204{left:139.651187pt;}
.x5_c00204{left:140.746787pt;}
.x15_c00204{left:149.515987pt;}
.x64_c00204{left:150.624787pt;}
.x6_c00204{left:159.794387pt;}
.x16_c00204{left:169.513987pt;}
.x42_c00204{left:179.440387pt;}
.x55_c00204{left:180.395187pt;}
.x6b_c00204{left:183.677587pt;}
.x33_c00204{left:189.146787pt;}
.x39_c00204{left:190.673587pt;}
.x7_c00204{left:198.778387pt;}
.x5e_c00204{left:199.719987pt;}
.x3a_c00204{left:207.455187pt;}
.x56_c00204{left:208.876387pt;}
.x4e_c00204{left:218.235187pt;}
.x2c_c00204{left:227.431187pt;}
.x8_c00204{left:228.588387pt;}
.x62_c00204{left:230.999587pt;}
.x4f_c00204{left:238.624787pt;}
.x3b_c00204{left:246.478787pt;}
.x43_c00204{left:248.146387pt;}
.x2d_c00204{left:250.051587pt;}
.x9_c00204{left:256.884787pt;}
.x1e_c00204{left:258.002387pt;}
.x3c_c00204{left:267.840787pt;}
.x34_c00204{left:270.243187pt;}
.xa_c00204{left:277.340387pt;}
.x63_c00204{left:278.273187pt;}
.x17_c00204{left:287.178787pt;}
.x53_c00204{left:290.280787pt;}
.x26_c00204{left:297.650787pt;}
.x5b_c00204{left:299.155587pt;}
.xb_c00204{left:306.780787pt;}
.x47_c00204{left:317.851187pt;}
.x60_c00204{left:319.113987pt;}
.x18_c00204{left:326.426787pt;}
.x65_c00204{left:327.399187pt;}
.x5c_c00204{left:329.423187pt;}
.x1f_c00204{left:336.581987pt;}
.x4b_c00204{left:338.394787pt;}
.xc_c00204{left:345.663587pt;}
.x19_c00204{left:355.594387pt;}
.xd_c00204{left:356.500787pt;}
.x27_c00204{left:365.415187pt;}
.x20_c00204{left:375.200787pt;}
.x1a_c00204{left:377.717587pt;}
.x2e_c00204{left:385.342787pt;}
.x28_c00204{left:395.216387pt;}
.x21_c00204{left:404.821587pt;}
.x3d_c00204{left:407.523187pt;}
.x2f_c00204{left:414.360787pt;}
.x54_c00204{left:415.469587pt;}
.x5a_c00204{left:425.017587pt;}
.x29_c00204{left:434.156387pt;}
.x48_c00204{left:435.049587pt;}
.x5d_c00204{left:443.809987pt;}
.xe_c00204{left:444.923187pt;}
.x44_c00204{left:446.106787pt;}
.x30_c00204{left:453.802387pt;}
.x66_c00204{left:454.743987pt;}
.xf_c00204{left:463.103987pt;}
.x22_c00204{left:471.996387pt;}
.x67_c00204{left:473.690387pt;}
.x49_c00204{left:482.815987pt;}
.x10_c00204{left:491.690787pt;}
.x35_c00204{left:493.032787pt;}
.x2a_c00204{left:502.805187pt;}
.x31_c00204{left:512.709587pt;}
.x36_c00204{left:522.204787pt;}
.x50_c00204{left:524.263987pt;}
.x1b_c00204{left:531.739587pt;}
.x68_c00204{left:532.663587pt;}
.x57_c00204{left:534.529187pt;}
.x3e_c00204{left:541.855187pt;}
.x2b_c00204{left:552.010387pt;}
.x69_c00204{left:560.097587pt;}
.x2_c00204{left:561.505587pt;}
.x3f_c00204{left:562.411987pt;}
.x3_c00204{left:571.414387pt;}
.x51_c00204{left:573.143587pt;}
.x4c_c00204{left:579.400387pt;}
.x32_c00204{left:580.843587pt;}
.x1c_c00204{left:590.351987pt;}
.x52_c00204{left:591.271587pt;}
.x45_c00204{left:599.688787pt;}
.x23_c00204{left:610.015587pt;}
.x6a_c00204{left:629.916787pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_453a392979205f351dbdec12.woff2')format("woff");}.ff1_c00205{font-family:ff1_c00205;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00205;src:url('chunks/assets/font_0546a3e5b07c619702ff4a6c.woff2')format("woff");}.ff2_c00205{font-family:ff2_c00205;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00205;src:url('chunks/assets/font_a38058bb7f4d9ac92eb644da.woff2')format("woff");}.ff3_c00205{font-family:ff3_c00205;line-height:0.666000;font-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_c00205{transform:matrix(0.136178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136178,0.000000,0.000000,0.250000,0,0);}
.m62_c00205{transform:matrix(0.206701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206701,0.000000,0.000000,0.250000,0,0);}
.m63_c00205{transform:matrix(0.209983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209983,0.000000,0.000000,0.250000,0,0);}
.m3d_c00205{transform:matrix(0.232580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232580,0.000000,0.000000,0.250000,0,0);}
.m76_c00205{transform:matrix(0.240818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240818,0.000000,0.000000,0.250000,0,0);}
.m55_c00205{transform:matrix(0.242073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242073,0.000000,0.000000,0.250000,0,0);}
.m4b_c00205{transform:matrix(0.246040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246040,0.000000,0.000000,0.250000,0,0);}
.m5a_c00205{transform:matrix(0.246084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246084,0.000000,0.000000,0.250000,0,0);}
.m87_c00205{transform:matrix(0.247919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247919,0.000000,0.000000,0.250000,0,0);}
.m73_c00205{transform:matrix(0.248170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248170,0.000000,0.000000,0.250000,0,0);}
.m0_c00205{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00205{transform:matrix(0.250440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250440,0.000000,0.000000,0.250000,0,0);}
.mb_c00205{transform:matrix(0.250825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250825,0.000000,0.000000,0.250000,0,0);}
.m39_c00205{transform:matrix(0.251385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251385,0.000000,0.000000,0.250000,0,0);}
.m14_c00205{transform:matrix(0.252342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252342,0.000000,0.000000,0.250000,0,0);}
.m7c_c00205{transform:matrix(0.252345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252345,0.000000,0.000000,0.250000,0,0);}
.m2c_c00205{transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);}
.m2f_c00205{transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);}
.m9b_c00205{transform:matrix(0.253783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253783,0.000000,0.000000,0.250000,0,0);}
.m5e_c00205{transform:matrix(0.254217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254217,0.000000,0.000000,0.250000,0,0);}
.m19_c00205{transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);}
.m9e_c00205{transform:matrix(0.256348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256348,0.000000,0.000000,0.250000,0,0);}
.m78_c00205{transform:matrix(0.256488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256488,0.000000,0.000000,0.250000,0,0);}
.m26_c00205{transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);}
.m1d_c00205{transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);}
.m9_c00205{transform:matrix(0.258122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258122,0.000000,0.000000,0.250000,0,0);}
.m89_c00205{transform:matrix(0.258186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258186,0.000000,0.000000,0.250000,0,0);}
.md_c00205{transform:matrix(0.258457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258457,0.000000,0.000000,0.250000,0,0);}
.m6f_c00205{transform:matrix(0.258788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258788,0.000000,0.000000,0.250000,0,0);}
.m53_c00205{transform:matrix(0.258869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258869,0.000000,0.000000,0.250000,0,0);}
.m20_c00205{transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);}
.m59_c00205{transform:matrix(0.260402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260402,0.000000,0.000000,0.250000,0,0);}
.m60_c00205{transform:matrix(0.260414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260414,0.000000,0.000000,0.250000,0,0);}
.ma_c00205{transform:matrix(0.260745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260745,0.000000,0.000000,0.250000,0,0);}
.ma9_c00205{transform:matrix(0.261693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261693,0.000000,0.000000,0.250000,0,0);}
.m68_c00205{transform:matrix(0.262032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262032,0.000000,0.000000,0.250000,0,0);}
.m98_c00205{transform:matrix(0.262893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262893,0.000000,0.000000,0.250000,0,0);}
.ma7_c00205{transform:matrix(0.262962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262962,0.000000,0.000000,0.250000,0,0);}
.m47_c00205{transform:matrix(0.264254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264254,0.000000,0.000000,0.250000,0,0);}
.m5f_c00205{transform:matrix(0.264852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264852,0.000000,0.000000,0.250000,0,0);}
.m8d_c00205{transform:matrix(0.265693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265693,0.000000,0.000000,0.250000,0,0);}
.m6c_c00205{transform:matrix(0.265863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265863,0.000000,0.000000,0.250000,0,0);}
.m31_c00205{transform:matrix(0.266391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266391,0.000000,0.000000,0.250000,0,0);}
.m5d_c00205{transform:matrix(0.267275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267275,0.000000,0.000000,0.250000,0,0);}
.m12_c00205{transform:matrix(0.268128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268128,0.000000,0.000000,0.250000,0,0);}
.m96_c00205{transform:matrix(0.268255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268255,0.000000,0.000000,0.250000,0,0);}
.m37_c00205{transform:matrix(0.268636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268636,0.000000,0.000000,0.250000,0,0);}
.m9a_c00205{transform:matrix(0.268802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268802,0.000000,0.000000,0.250000,0,0);}
.m46_c00205{transform:matrix(0.268928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268928,0.000000,0.000000,0.250000,0,0);}
.m2_c00205{transform:matrix(0.269763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269763,0.000000,0.000000,0.250000,0,0);}
.m79_c00205{transform:matrix(0.270215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270215,0.000000,0.000000,0.250000,0,0);}
.ma3_c00205{transform:matrix(0.270457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270457,0.000000,0.000000,0.250000,0,0);}
.m15_c00205{transform:matrix(0.271004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271004,0.000000,0.000000,0.250000,0,0);}
.m38_c00205{transform:matrix(0.271911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271911,0.000000,0.000000,0.250000,0,0);}
.m1c_c00205{transform:matrix(0.272212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272212,0.000000,0.000000,0.250000,0,0);}
.m18_c00205{transform:matrix(0.272274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272274,0.000000,0.000000,0.250000,0,0);}
.m9f_c00205{transform:matrix(0.272792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272792,0.000000,0.000000,0.250000,0,0);}
.m86_c00205{transform:matrix(0.273613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273613,0.000000,0.000000,0.250000,0,0);}
.m57_c00205{transform:matrix(0.273738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273738,0.000000,0.000000,0.250000,0,0);}
.m3e_c00205{transform:matrix(0.273950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273950,0.000000,0.000000,0.250000,0,0);}
.m72_c00205{transform:matrix(0.274359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274359,0.000000,0.000000,0.250000,0,0);}
.m8f_c00205{transform:matrix(0.274529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274529,0.000000,0.000000,0.250000,0,0);}
.m5c_c00205{transform:matrix(0.274757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274757,0.000000,0.000000,0.250000,0,0);}
.m9c_c00205{transform:matrix(0.275369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275369,0.000000,0.000000,0.250000,0,0);}
.m5b_c00205{transform:matrix(0.275995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275995,0.000000,0.000000,0.250000,0,0);}
.m3f_c00205{transform:matrix(0.276069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276069,0.000000,0.000000,0.250000,0,0);}
.m92_c00205{transform:matrix(0.276783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276783,0.000000,0.000000,0.250000,0,0);}
.m8a_c00205{transform:matrix(0.276793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276793,0.000000,0.000000,0.250000,0,0);}
.m65_c00205{transform:matrix(0.277075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277075,0.000000,0.000000,0.250000,0,0);}
.me_c00205{transform:matrix(0.277239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277239,0.000000,0.000000,0.250000,0,0);}
.m4a_c00205{transform:matrix(0.277556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277556,0.000000,0.000000,0.250000,0,0);}
.m1b_c00205{transform:matrix(0.277621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277621,0.000000,0.000000,0.250000,0,0);}
.ma1_c00205{transform:matrix(0.278118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278118,0.000000,0.000000,0.250000,0,0);}
.m84_c00205{transform:matrix(0.278629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278629,0.000000,0.000000,0.250000,0,0);}
.m81_c00205{transform:matrix(0.278680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278680,0.000000,0.000000,0.250000,0,0);}
.m7b_c00205{transform:matrix(0.278923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278923,0.000000,0.000000,0.250000,0,0);}
.m9d_c00205{transform:matrix(0.279311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279311,0.000000,0.000000,0.250000,0,0);}
.m30_c00205{transform:matrix(0.280160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280160,0.000000,0.000000,0.250000,0,0);}
.m27_c00205{transform:matrix(0.280468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280468,0.000000,0.000000,0.250000,0,0);}
.m4d_c00205{transform:matrix(0.281866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281866,0.000000,0.000000,0.250000,0,0);}
.ma0_c00205{transform:matrix(0.282098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282098,0.000000,0.000000,0.250000,0,0);}
.m22_c00205{transform:matrix(0.282705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282705,0.000000,0.000000,0.250000,0,0);}
.mc_c00205{transform:matrix(0.283152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283152,0.000000,0.000000,0.250000,0,0);}
.m6_c00205{transform:matrix(0.283598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283598,0.000000,0.000000,0.250000,0,0);}
.ma5_c00205{transform:matrix(0.283737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283737,0.000000,0.000000,0.250000,0,0);}
.m88_c00205{transform:matrix(0.284915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284915,0.000000,0.000000,0.250000,0,0);}
.m33_c00205{transform:matrix(0.285144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285144,0.000000,0.000000,0.250000,0,0);}
.m45_c00205{transform:matrix(0.285150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285150,0.000000,0.000000,0.250000,0,0);}
.m13_c00205{transform:matrix(0.285415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285415,0.000000,0.000000,0.250000,0,0);}
.mf_c00205{transform:matrix(0.285457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285457,0.000000,0.000000,0.250000,0,0);}
.m67_c00205{transform:matrix(0.285567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285567,0.000000,0.000000,0.250000,0,0);}
.m8c_c00205{transform:matrix(0.286565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286565,0.000000,0.000000,0.250000,0,0);}
.m70_c00205{transform:matrix(0.287098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287098,0.000000,0.000000,0.250000,0,0);}
.m8_c00205{transform:matrix(0.287209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287209,0.000000,0.000000,0.250000,0,0);}
.m2a_c00205{transform:matrix(0.287275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287275,0.000000,0.000000,0.250000,0,0);}
.m8b_c00205{transform:matrix(0.288130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288130,0.000000,0.000000,0.250000,0,0);}
.m7d_c00205{transform:matrix(0.288503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288503,0.000000,0.000000,0.250000,0,0);}
.m48_c00205{transform:matrix(0.288782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288782,0.000000,0.000000,0.250000,0,0);}
.m7f_c00205{transform:matrix(0.288914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288914,0.000000,0.000000,0.250000,0,0);}
.maa_c00205{transform:matrix(0.289665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289665,0.000000,0.000000,0.250000,0,0);}
.m56_c00205{transform:matrix(0.289741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289741,0.000000,0.000000,0.250000,0,0);}
.m11_c00205{transform:matrix(0.289929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289929,0.000000,0.000000,0.250000,0,0);}
.m7a_c00205{transform:matrix(0.290145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290145,0.000000,0.000000,0.250000,0,0);}
.m23_c00205{transform:matrix(0.290240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290240,0.000000,0.000000,0.250000,0,0);}
.m5_c00205{transform:matrix(0.290254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290254,0.000000,0.000000,0.250000,0,0);}
.m95_c00205{transform:matrix(0.290819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290819,0.000000,0.000000,0.250000,0,0);}
.m1f_c00205{transform:matrix(0.292400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292400,0.000000,0.000000,0.250000,0,0);}
.m1_c00205{transform:matrix(0.292467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292467,0.000000,0.000000,0.250000,0,0);}
.m58_c00205{transform:matrix(0.292751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292751,0.000000,0.000000,0.250000,0,0);}
.m42_c00205{transform:matrix(0.292865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292865,0.000000,0.000000,0.250000,0,0);}
.m64_c00205{transform:matrix(0.293298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293298,0.000000,0.000000,0.250000,0,0);}
.m4f_c00205{transform:matrix(0.293372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293372,0.000000,0.000000,0.250000,0,0);}
.m35_c00205{transform:matrix(0.294711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294711,0.000000,0.000000,0.250000,0,0);}
.m6b_c00205{transform:matrix(0.294760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294760,0.000000,0.000000,0.250000,0,0);}
.m74_c00205{transform:matrix(0.295051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295051,0.000000,0.000000,0.250000,0,0);}
.m25_c00205{transform:matrix(0.295907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295907,0.000000,0.000000,0.250000,0,0);}
.m6a_c00205{transform:matrix(0.296152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296152,0.000000,0.000000,0.250000,0,0);}
.m99_c00205{transform:matrix(0.296353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296353,0.000000,0.000000,0.250000,0,0);}
.m66_c00205{transform:matrix(0.296594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296594,0.000000,0.000000,0.250000,0,0);}
.m44_c00205{transform:matrix(0.297121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297121,0.000000,0.000000,0.250000,0,0);}
.m77_c00205{transform:matrix(0.297341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297341,0.000000,0.000000,0.250000,0,0);}
.ma8_c00205{transform:matrix(0.297774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297774,0.000000,0.000000,0.250000,0,0);}
.m97_c00205{transform:matrix(0.298134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298134,0.000000,0.000000,0.250000,0,0);}
.m32_c00205{transform:matrix(0.298735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298735,0.000000,0.000000,0.250000,0,0);}
.ma6_c00205{transform:matrix(0.299281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299281,0.000000,0.000000,0.250000,0,0);}
.m71_c00205{transform:matrix(0.299544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299544,0.000000,0.000000,0.250000,0,0);}
.m75_c00205{transform:matrix(0.300965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300965,0.000000,0.000000,0.250000,0,0);}
.m83_c00205{transform:matrix(0.302215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302215,0.000000,0.000000,0.250000,0,0);}
.m50_c00205{transform:matrix(0.303219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303219,0.000000,0.000000,0.250000,0,0);}
.m34_c00205{transform:matrix(0.303436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303436,0.000000,0.000000,0.250000,0,0);}
.m4e_c00205{transform:matrix(0.303989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303989,0.000000,0.000000,0.250000,0,0);}
.ma4_c00205{transform:matrix(0.304018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304018,0.000000,0.000000,0.250000,0,0);}
.m3b_c00205{transform:matrix(0.304412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304412,0.000000,0.000000,0.250000,0,0);}
.m2b_c00205{transform:matrix(0.304618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304618,0.000000,0.000000,0.250000,0,0);}
.m10_c00205{transform:matrix(0.305264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305264,0.000000,0.000000,0.250000,0,0);}
.m3c_c00205{transform:matrix(0.305729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305729,0.000000,0.000000,0.250000,0,0);}
.m85_c00205{transform:matrix(0.306500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306500,0.000000,0.000000,0.250000,0,0);}
.m28_c00205{transform:matrix(0.306935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306935,0.000000,0.000000,0.250000,0,0);}
.m4c_c00205{transform:matrix(0.307388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307388,0.000000,0.000000,0.250000,0,0);}
.m54_c00205{transform:matrix(0.307575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307575,0.000000,0.000000,0.250000,0,0);}
.m91_c00205{transform:matrix(0.307664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307664,0.000000,0.000000,0.250000,0,0);}
.m7e_c00205{transform:matrix(0.307900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307900,0.000000,0.000000,0.250000,0,0);}
.m90_c00205{transform:matrix(0.308096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308096,0.000000,0.000000,0.250000,0,0);}
.m2e_c00205{transform:matrix(0.310853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310853,0.000000,0.000000,0.250000,0,0);}
.m24_c00205{transform:matrix(0.310855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310855,0.000000,0.000000,0.250000,0,0);}
.m82_c00205{transform:matrix(0.311954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311954,0.000000,0.000000,0.250000,0,0);}
.m41_c00205{transform:matrix(0.312554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312554,0.000000,0.000000,0.250000,0,0);}
.m17_c00205{transform:matrix(0.313045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313045,0.000000,0.000000,0.250000,0,0);}
.m49_c00205{transform:matrix(0.313172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313172,0.000000,0.000000,0.250000,0,0);}
.m16_c00205{transform:matrix(0.313435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313435,0.000000,0.000000,0.250000,0,0);}
.m21_c00205{transform:matrix(0.314374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314374,0.000000,0.000000,0.250000,0,0);}
.m7_c00205{transform:matrix(0.314459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314459,0.000000,0.000000,0.250000,0,0);}
.m69_c00205{transform:matrix(0.315268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315268,0.000000,0.000000,0.250000,0,0);}
.m40_c00205{transform:matrix(0.316647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316647,0.000000,0.000000,0.250000,0,0);}
.m52_c00205{transform:matrix(0.320282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320282,0.000000,0.000000,0.250000,0,0);}
.m80_c00205{transform:matrix(0.323132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323132,0.000000,0.000000,0.250000,0,0);}
.m1a_c00205{transform:matrix(0.325725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325725,0.000000,0.000000,0.250000,0,0);}
.m29_c00205{transform:matrix(0.326105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326105,0.000000,0.000000,0.250000,0,0);}
.m3a_c00205{transform:matrix(0.326769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326769,0.000000,0.000000,0.250000,0,0);}
.m6e_c00205{transform:matrix(0.330420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330420,0.000000,0.000000,0.250000,0,0);}
.m93_c00205{transform:matrix(0.332577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332577,0.000000,0.000000,0.250000,0,0);}
.m94_c00205{transform:matrix(0.332792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332792,0.000000,0.000000,0.250000,0,0);}
.m2d_c00205{transform:matrix(0.333044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333044,0.000000,0.000000,0.250000,0,0);}
.m3_c00205{transform:matrix(0.334085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334085,0.000000,0.000000,0.250000,0,0);}
.m36_c00205{transform:matrix(0.337908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337908,0.000000,0.000000,0.250000,0,0);}
.m4_c00205{transform:matrix(0.340536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340536,0.000000,0.000000,0.250000,0,0);}
.m6d_c00205{transform:matrix(0.341722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341722,0.000000,0.000000,0.250000,0,0);}
.m51_c00205{transform:matrix(0.345648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345648,0.000000,0.000000,0.250000,0,0);}
.m61_c00205{transform:matrix(0.347870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347870,0.000000,0.000000,0.250000,0,0);}
.m8e_c00205{transform:matrix(0.358891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358891,0.000000,0.000000,0.250000,0,0);}
.m1e_c00205{transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);}
.v0_c00205{vertical-align:0.000000px;}
.ls8_c00205{letter-spacing:-2.855167px;}
.ls4_c00205{letter-spacing:-2.308606px;}
.lse_c00205{letter-spacing:-2.217600px;}
.lsb_c00205{letter-spacing:-0.758659px;}
.lsd_c00205{letter-spacing:-0.269201px;}
.ls0_c00205{letter-spacing:0.000000px;}
.ls7_c00205{letter-spacing:0.668925px;}
.ls12_c00205{letter-spacing:0.840235px;}
.ls5_c00205{letter-spacing:2.218873px;}
.lsc_c00205{letter-spacing:2.740960px;}
.ls3_c00205{letter-spacing:2.863325px;}
.ls6_c00205{letter-spacing:3.495658px;}
.ls13_c00205{letter-spacing:3.573037px;}
.ls11_c00205{letter-spacing:3.638298px;}
.ls1_c00205{letter-spacing:3.732310px;}
.lsa_c00205{letter-spacing:3.834081px;}
.lsf_c00205{letter-spacing:3.899342px;}
.ls10_c00205{letter-spacing:3.972761px;}
.ls2_c00205{letter-spacing:4.078810px;}
.ls9_c00205{letter-spacing:58.449798px;}
.sc__c00205{text-shadow:none;}
.sc0_c00205{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00205{-webkit-text-stroke:0px transparent;}
.sc0_c00205{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00205{word-spacing:0.000000px;}
._3_c00205{margin-left:-4.406017px;}
._2_c00205{width:1.060400px;}
._1_c00205{width:9.055035px;}
._0_c00205{width:26.185957px;}
.fc0_c00205{color:transparent;}
.fs0_c00205{font-size:22.176000px;}
.fsa_c00205{font-size:22.374000px;}
.fse_c00205{font-size:23.166000px;}
.fs9_c00205{font-size:27.720000px;}
.fsd_c00205{font-size:38.808000px;}
.fsb_c00205{font-size:44.748000px;}
.fs8_c00205{font-size:50.094000px;}
.fs7_c00205{font-size:50.292000px;}
.fs10_c00205{font-size:50.688000px;}
.fsc_c00205{font-size:55.440000px;}
.fs5_c00205{font-size:58.449798px;}
.fs6_c00205{font-size:63.360000px;}
.fs4_c00205{font-size:66.330000px;}
.fs1_c00205{font-size:74.646198px;}
.fsf_c00205{font-size:77.616198px;}
.fs2_c00205{font-size:81.576198px;}
.fs3_c00205{font-size:86.526198px;}
.y0_c00205{bottom:0.000000px;}
.y23_c00205{bottom:9.886185px;}
.y24_c00205{bottom:12.024585px;}
.y1_c00205{bottom:76.500000px;}
.y22_c00205{bottom:109.326735px;}
.y21_c00205{bottom:137.120985px;}
.y1b_c00205{bottom:139.620735px;}
.y1a_c00205{bottom:172.048185px;}
.y19_c00205{bottom:203.416335px;}
.y18_c00205{bottom:234.774585px;}
.y17_c00205{bottom:266.499135px;}
.y20_c00205{bottom:274.696335px;}
.y16_c00205{bottom:298.218735px;}
.y1f_c00205{bottom:325.300185px;}
.y15_c00205{bottom:329.581935px;}
.y14_c00205{bottom:360.588735px;}
.y13_c00205{bottom:422.958735px;}
.y12_c00205{bottom:454.321935px;}
.y11_c00205{bottom:485.680185px;}
.y10_c00205{bottom:517.404735px;}
.y1e_c00205{bottom:539.857935px;}
.yf_c00205{bottom:549.480735px;}
.ye_c00205{bottom:580.482585px;}
.y1d_c00205{bottom:591.535935px;}
.yd_c00205{bottom:612.207135px;}
.yc_c00205{bottom:643.570335px;}
.yb_c00205{bottom:675.284985px;}
.ya_c00205{bottom:706.648185px;}
.y9_c00205{bottom:738.372735px;}
.y2_c00205{bottom:743.005935px;}
.y8_c00205{bottom:800.381385px;}
.y7_c00205{bottom:831.388185px;}
.y1c_c00205{bottom:853.841385px;}
.y6_c00205{bottom:862.394985px;}
.y5_c00205{bottom:893.758185px;}
.y4_c00205{bottom:925.482735px;}
.y3_c00205{bottom:1072.314585px;}
.h2_c00205{height:23.128875px;}
.hc_c00205{height:23.335383px;}
.h10_c00205{height:24.161414px;}
.hb_c00205{height:28.911094px;}
.h7_c00205{height:38.927565px;}
.hf_c00205{height:40.475531px;}
.hd_c00205{height:43.917715px;}
.h9_c00205{height:49.358848px;}
.ha_c00205{height:52.246477px;}
.h12_c00205{height:52.866000px;}
.he_c00205{height:57.822188px;}
.h8_c00205{height:62.184375px;}
.h6_c00205{height:69.180117px;}
.h3_c00205{height:73.261161px;}
.h4_c00205{height:80.062577px;}
.h11_c00205{height:80.951269px;}
.h5_c00205{height:84.920731px;}
.h1_c00205{height:1110.000000px;}
.h0_c00205{height:1263.000000px;}
.w1_c00205{width:775.500000px;}
.w0_c00205{width:892.500000px;}
.x0_c00205{left:0.000000px;}
.x2_c00205{left:25.563435px;}
.x1_c00205{left:58.500000px;}
.x31_c00205{left:84.057585px;}
.x4_c00205{left:85.611885px;}
.x46_c00205{left:87.522585px;}
.x4e_c00205{left:116.881035px;}
.x19_c00205{left:118.415535px;}
.x56_c00205{left:127.929435px;}
.x5_c00205{left:129.048135px;}
.x27_c00205{left:130.097535px;}
.x2a_c00205{left:139.948035px;}
.x20_c00205{left:150.347985px;}
.xe_c00205{left:162.302235px;}
.x32_c00205{left:164.673285px;}
.x5c_c00205{left:172.934835px;}
.x47_c00205{left:174.444585px;}
.x3a_c00205{left:182.720985px;}
.x6_c00205{left:184.265385px;}
.x3b_c00205{left:196.447335px;}
.xf_c00205{left:205.931535px;}
.x1a_c00205{left:207.129435px;}
.x2b_c00205{left:216.791835px;}
.x59_c00205{left:218.202585px;}
.x4f_c00205{left:227.676885px;}
.x7_c00205{left:228.820335px;}
.x57_c00205{left:239.279685px;}
.x10_c00205{left:240.334035px;}
.x21_c00205{left:260.836935px;}
.x61_c00205{left:261.960585px;}
.x3c_c00205{left:272.197185px;}
.x48_c00205{left:274.880085px;}
.x33_c00205{left:282.928785px;}
.x22_c00205{left:284.517735px;}
.x3d_c00205{left:294.670185px;}
.x36_c00205{left:295.927485px;}
.x52_c00205{left:305.738385px;}
.x8_c00205{left:307.337235px;}
.x23_c00205{left:316.598685px;}
.x1b_c00205{left:317.623335px;}
.x37_c00205{left:328.651935px;}
.x2c_c00205{left:339.076635px;}
.x3e_c00205{left:349.139985px;}
.x28_c00205{left:350.699235px;}
.x43_c00205{left:360.262635px;}
.x24_c00205{left:361.480335px;}
.x9_c00205{left:370.959585px;}
.x2d_c00205{left:384.210735px;}
.x49_c00205{left:393.091035px;}
.x11_c00205{left:395.016585px;}
.x62_c00205{left:404.466135px;}
.x38_c00205{left:406.064985px;}
.x12_c00205{left:417.083685px;}
.x34_c00205{left:427.048035px;}
.x29_c00205{left:437.249985px;}
.x53_c00205{left:438.789435px;}
.x58_c00205{left:448.654785px;}
.x25_c00205{left:450.223935px;}
.x3f_c00205{left:454.401735px;}
.x13_c00205{left:460.836735px;}
.x63_c00205{left:470.751585px;}
.x5a_c00205{left:472.335585px;}
.x44_c00205{left:482.443485px;}
.x40_c00205{left:493.422585px;}
.x14_c00205{left:505.495635px;}
.x15_c00205{left:514.232385px;}
.x1c_c00205{left:515.826285px;}
.x4c_c00205{left:525.909435px;}
.x50_c00205{left:527.047935px;}
.x5d_c00205{left:536.319285px;}
.xa_c00205{left:537.868635px;}
.x1d_c00205{left:547.897335px;}
.x54_c00205{left:548.907135px;}
.x16_c00205{left:559.302135px;}
.x5f_c00205{left:560.633685px;}
.xb_c00205{left:570.023835px;}
.x26_c00205{left:571.028685px;}
.x2e_c00205{left:581.785035px;}
.x1e_c00205{left:591.986985px;}
.x17_c00205{left:603.129435px;}
.x5b_c00205{left:604.183785px;}
.x4a_c00205{left:605.252985px;}
.xc_c00205{left:613.306635px;}
.x35_c00205{left:614.459985px;}
.x2f_c00205{left:616.291485px;}
.x45_c00205{left:625.246035px;}
.x41_c00205{left:626.869635px;}
.x5e_c00205{left:636.259785px;}
.x51_c00205{left:646.729035px;}
.x3_c00205{left:657.638835px;}
.x42_c00205{left:659.905935px;}
.x1f_c00205{left:669.687135px;}
.x4d_c00205{left:680.017785px;}
.x18_c00205{left:681.497835px;}
.x39_c00205{left:690.556335px;}
.x55_c00205{left:691.887885px;}
.x60_c00205{left:703.292685px;}
.xd_c00205{left:711.712635px;}
.x30_c00205{left:725.830035px;}
.x4b_c00205{left:735.734985px;}
.x64_c00205{left:770.276085px;}
.x65_c00205{left:773.622285px;}
.x66_c00205{left:775.295385px;}
.x67_c00205{left:776.428935px;}
@media print{
.v0_c00205{vertical-align:0.000000pt;}
.ls8_c00205{letter-spacing:-2.537926pt;}
.ls4_c00205{letter-spacing:-2.052095pt;}
.lse_c00205{letter-spacing:-1.971200pt;}
.lsb_c00205{letter-spacing:-0.674363pt;}
.lsd_c00205{letter-spacing:-0.239290pt;}
.ls0_c00205{letter-spacing:0.000000pt;}
.ls7_c00205{letter-spacing:0.594600pt;}
.ls12_c00205{letter-spacing:0.746875pt;}
.ls5_c00205{letter-spacing:1.972331pt;}
.lsc_c00205{letter-spacing:2.436409pt;}
.ls3_c00205{letter-spacing:2.545177pt;}
.ls6_c00205{letter-spacing:3.107252pt;}
.ls13_c00205{letter-spacing:3.176033pt;}
.ls11_c00205{letter-spacing:3.234043pt;}
.ls1_c00205{letter-spacing:3.317609pt;}
.lsa_c00205{letter-spacing:3.408072pt;}
.lsf_c00205{letter-spacing:3.466082pt;}
.ls10_c00205{letter-spacing:3.531343pt;}
.ls2_c00205{letter-spacing:3.625609pt;}
.ls9_c00205{letter-spacing:51.955376pt;}
.ws0_c00205{word-spacing:0.000000pt;}
._3_c00205{margin-left:-3.916460pt;}
._2_c00205{width:0.942578pt;}
._1_c00205{width:8.048920pt;}
._0_c00205{width:23.276406pt;}
.fs0_c00205{font-size:19.712000pt;}
.fsa_c00205{font-size:19.888000pt;}
.fse_c00205{font-size:20.592000pt;}
.fs9_c00205{font-size:24.640000pt;}
.fsd_c00205{font-size:34.496000pt;}
.fsb_c00205{font-size:39.776000pt;}
.fs8_c00205{font-size:44.528000pt;}
.fs7_c00205{font-size:44.704000pt;}
.fs10_c00205{font-size:45.056000pt;}
.fsc_c00205{font-size:49.280000pt;}
.fs5_c00205{font-size:51.955376pt;}
.fs6_c00205{font-size:56.320000pt;}
.fs4_c00205{font-size:58.960000pt;}
.fs1_c00205{font-size:66.352176pt;}
.fsf_c00205{font-size:68.992176pt;}
.fs2_c00205{font-size:72.512176pt;}
.fs3_c00205{font-size:76.912176pt;}
.y0_c00205{bottom:0.000000pt;}
.y23_c00205{bottom:8.787720pt;}
.y24_c00205{bottom:10.688520pt;}
.y1_c00205{bottom:68.000000pt;}
.y22_c00205{bottom:97.179320pt;}
.y21_c00205{bottom:121.885320pt;}
.y1b_c00205{bottom:124.107320pt;}
.y1a_c00205{bottom:152.931720pt;}
.y19_c00205{bottom:180.814520pt;}
.y18_c00205{bottom:208.688520pt;}
.y17_c00205{bottom:236.888120pt;}
.y20_c00205{bottom:244.174520pt;}
.y16_c00205{bottom:265.083320pt;}
.y1f_c00205{bottom:289.155720pt;}
.y15_c00205{bottom:292.961720pt;}
.y14_c00205{bottom:320.523320pt;}
.y13_c00205{bottom:375.963320pt;}
.y12_c00205{bottom:403.841720pt;}
.y11_c00205{bottom:431.715720pt;}
.y10_c00205{bottom:459.915320pt;}
.y1e_c00205{bottom:479.873720pt;}
.yf_c00205{bottom:488.427320pt;}
.ye_c00205{bottom:515.984520pt;}
.y1d_c00205{bottom:525.809720pt;}
.yd_c00205{bottom:544.184120pt;}
.yc_c00205{bottom:572.062520pt;}
.yb_c00205{bottom:600.253320pt;}
.ya_c00205{bottom:628.131720pt;}
.y9_c00205{bottom:656.331320pt;}
.y2_c00205{bottom:660.449720pt;}
.y8_c00205{bottom:711.450120pt;}
.y7_c00205{bottom:739.011720pt;}
.y1c_c00205{bottom:758.970120pt;}
.y6_c00205{bottom:766.573320pt;}
.y5_c00205{bottom:794.451720pt;}
.y4_c00205{bottom:822.651320pt;}
.y3_c00205{bottom:953.168520pt;}
.h2_c00205{height:20.559000pt;}
.hc_c00205{height:20.742563pt;}
.h10_c00205{height:21.476813pt;}
.hb_c00205{height:25.698750pt;}
.h7_c00205{height:34.602280pt;}
.hf_c00205{height:35.978250pt;}
.hd_c00205{height:39.037969pt;}
.h9_c00205{height:43.874531pt;}
.ha_c00205{height:46.441313pt;}
.h12_c00205{height:46.992000pt;}
.he_c00205{height:51.397500pt;}
.h8_c00205{height:55.275000pt;}
.h6_c00205{height:61.493438pt;}
.h3_c00205{height:65.121032pt;}
.h4_c00205{height:71.166735pt;}
.h11_c00205{height:71.956684pt;}
.h5_c00205{height:75.485095pt;}
.h1_c00205{height:986.666667pt;}
.h0_c00205{height:1122.666667pt;}
.w1_c00205{width:689.333333pt;}
.w0_c00205{width:793.333333pt;}
.x0_c00205{left:0.000000pt;}
.x2_c00205{left:22.723053pt;}
.x1_c00205{left:52.000000pt;}
.x31_c00205{left:74.717853pt;}
.x4_c00205{left:76.099453pt;}
.x46_c00205{left:77.797853pt;}
.x4e_c00205{left:103.894253pt;}
.x19_c00205{left:105.258253pt;}
.x56_c00205{left:113.715053pt;}
.x5_c00205{left:114.709453pt;}
.x27_c00205{left:115.642253pt;}
.x2a_c00205{left:124.398253pt;}
.x20_c00205{left:133.642653pt;}
.xe_c00205{left:144.268653pt;}
.x32_c00205{left:146.376253pt;}
.x5c_c00205{left:153.719853pt;}
.x47_c00205{left:155.061853pt;}
.x3a_c00205{left:162.418653pt;}
.x6_c00205{left:163.791453pt;}
.x3b_c00205{left:174.619853pt;}
.xf_c00205{left:183.050253pt;}
.x1a_c00205{left:184.115053pt;}
.x2b_c00205{left:192.703853pt;}
.x59_c00205{left:193.957853pt;}
.x4f_c00205{left:202.379453pt;}
.x7_c00205{left:203.395853pt;}
.x57_c00205{left:212.693053pt;}
.x10_c00205{left:213.630253pt;}
.x21_c00205{left:231.855053pt;}
.x61_c00205{left:232.853853pt;}
.x3c_c00205{left:241.953053pt;}
.x48_c00205{left:244.337853pt;}
.x33_c00205{left:251.492253pt;}
.x22_c00205{left:252.904653pt;}
.x3d_c00205{left:261.929053pt;}
.x36_c00205{left:263.046653pt;}
.x52_c00205{left:271.767453pt;}
.x8_c00205{left:273.188653pt;}
.x23_c00205{left:281.421053pt;}
.x1b_c00205{left:282.331853pt;}
.x37_c00205{left:292.135053pt;}
.x2c_c00205{left:301.401453pt;}
.x3e_c00205{left:310.346653pt;}
.x28_c00205{left:311.732653pt;}
.x43_c00205{left:320.233453pt;}
.x24_c00205{left:321.315853pt;}
.x9_c00205{left:329.741853pt;}
.x2d_c00205{left:341.520653pt;}
.x49_c00205{left:349.414253pt;}
.x11_c00205{left:351.125853pt;}
.x62_c00205{left:359.525453pt;}
.x38_c00205{left:360.946653pt;}
.x12_c00205{left:370.741053pt;}
.x34_c00205{left:379.598253pt;}
.x29_c00205{left:388.666653pt;}
.x53_c00205{left:390.035053pt;}
.x58_c00205{left:398.804253pt;}
.x25_c00205{left:400.199053pt;}
.x3f_c00205{left:403.912653pt;}
.x13_c00205{left:409.632653pt;}
.x63_c00205{left:418.445853pt;}
.x5a_c00205{left:419.853853pt;}
.x44_c00205{left:428.838653pt;}
.x40_c00205{left:438.597853pt;}
.x14_c00205{left:449.329453pt;}
.x15_c00205{left:457.095453pt;}
.x1c_c00205{left:458.512253pt;}
.x4c_c00205{left:467.475053pt;}
.x50_c00205{left:468.487053pt;}
.x5d_c00205{left:476.728253pt;}
.xa_c00205{left:478.105453pt;}
.x1d_c00205{left:487.019853pt;}
.x54_c00205{left:487.917453pt;}
.x16_c00205{left:497.157453pt;}
.x5f_c00205{left:498.341053pt;}
.xb_c00205{left:506.687853pt;}
.x26_c00205{left:507.581053pt;}
.x2e_c00205{left:517.142253pt;}
.x1e_c00205{left:526.210653pt;}
.x17_c00205{left:536.115053pt;}
.x5b_c00205{left:537.052253pt;}
.x4a_c00205{left:538.002653pt;}
.xc_c00205{left:545.161453pt;}
.x35_c00205{left:546.186653pt;}
.x2f_c00205{left:547.814653pt;}
.x45_c00205{left:555.774253pt;}
.x41_c00205{left:557.217453pt;}
.x5e_c00205{left:565.564253pt;}
.x51_c00205{left:574.870253pt;}
.x3_c00205{left:584.567853pt;}
.x42_c00205{left:586.583053pt;}
.x1f_c00205{left:595.277453pt;}
.x4d_c00205{left:604.460253pt;}
.x18_c00205{left:605.775853pt;}
.x39_c00205{left:613.827853pt;}
.x55_c00205{left:615.011453pt;}
.x60_c00205{left:625.149053pt;}
.xd_c00205{left:632.633453pt;}
.x30_c00205{left:645.182253pt;}
.x4b_c00205{left:653.986653pt;}
.x64_c00205{left:684.689853pt;}
.x65_c00205{left:687.664253pt;}
.x66_c00205{left:689.151453pt;}
.x67_c00205{left:690.159053pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_45fc4b23762f50beba1f5609.woff2')format("woff");}.ff1_c00206{font-family:ff1_c00206;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00206;src:url('chunks/assets/font_fed2d016627db257be69598e.woff2')format("woff");}.ff2_c00206{font-family:ff2_c00206;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00206;src:url('chunks/assets/font_04ea8229331f14bac89a0e81.woff2')format("woff");}.ff3_c00206{font-family:ff3_c00206;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m96_c00206{transform:matrix(0.126190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126190,0.000000,0.000000,0.250000,0,0);}
.m33_c00206{transform:matrix(0.145834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145834,0.000000,0.000000,0.250000,0,0);}
.m35_c00206{transform:matrix(0.152777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152777,0.000000,0.000000,0.250000,0,0);}
.m32_c00206{transform:matrix(0.159723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159723,0.000000,0.000000,0.250000,0,0);}
.m7d_c00206{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m22_c00206{transform:matrix(0.184960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184960,0.000000,0.000000,0.250000,0,0);}
.m34_c00206{transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);}
.m19_c00206{transform:matrix(0.211905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211905,0.000000,0.000000,0.250000,0,0);}
.m65_c00206{transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);}
.m0_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);}
.m77_c00206{transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);}
.m39_c00206{transform:matrix(0.250919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250919,0.000000,0.000000,0.250000,0,0);}
.m53_c00206{transform:matrix(0.253712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253712,0.000000,0.000000,0.250000,0,0);}
.m66_c00206{transform:matrix(0.256057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256057,0.000000,0.000000,0.250000,0,0);}
.m7f_c00206{transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);}
.m57_c00206{transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);}
.m1d_c00206{transform:matrix(0.258405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258405,0.000000,0.000000,0.250000,0,0);}
.mad_c00206{transform:matrix(0.258638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258638,0.000000,0.000000,0.250000,0,0);}
.m67_c00206{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m13_c00206{transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);}
.m51_c00206{transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);}
.m8c_c00206{transform:matrix(0.260756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260756,0.000000,0.000000,0.250000,0,0);}
.mf_c00206{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m4a_c00206{transform:matrix(0.262649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262649,0.000000,0.000000,0.250000,0,0);}
.m75_c00206{transform:matrix(0.262979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262979,0.000000,0.000000,0.250000,0,0);}
.m27_c00206{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m2_c00206{transform:matrix(0.265338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265338,0.000000,0.000000,0.250000,0,0);}
.m8_c00206{transform:matrix(0.265371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265371,0.000000,0.000000,0.250000,0,0);}
.m18_c00206{transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);}
.m84_c00206{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m83_c00206{transform:matrix(0.266605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266605,0.000000,0.000000,0.250000,0,0);}
.m25_c00206{transform:matrix(0.266663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266663,0.000000,0.000000,0.250000,0,0);}
.m98_c00206{transform:matrix(0.267835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267835,0.000000,0.000000,0.250000,0,0);}
.m60_c00206{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.ma4_c00206{transform:matrix(0.268316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268316,0.000000,0.000000,0.250000,0,0);}
.m2e_c00206{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.mac_c00206{transform:matrix(0.269301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269301,0.000000,0.000000,0.250000,0,0);}
.m9f_c00206{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m28_c00206{transform:matrix(0.271238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271238,0.000000,0.000000,0.250000,0,0);}
.mb_c00206{transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);}
.m5e_c00206{transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);}
.m9a_c00206{transform:matrix(0.272938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272938,0.000000,0.000000,0.250000,0,0);}
.m45_c00206{transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);}
.ma1_c00206{transform:matrix(0.274095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274095,0.000000,0.000000,0.250000,0,0);}
.m94_c00206{transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);}
.maa_c00206{transform:matrix(0.275961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275961,0.000000,0.000000,0.250000,0,0);}
.m85_c00206{transform:matrix(0.276607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276607,0.000000,0.000000,0.250000,0,0);}
.m20_c00206{transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);}
.m55_c00206{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m23_c00206{transform:matrix(0.277585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277585,0.000000,0.000000,0.250000,0,0);}
.m3b_c00206{transform:matrix(0.278224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278224,0.000000,0.000000,0.250000,0,0);}
.m4f_c00206{transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);}
.m58_c00206{transform:matrix(0.278903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278903,0.000000,0.000000,0.250000,0,0);}
.mc_c00206{transform:matrix(0.278962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278962,0.000000,0.000000,0.250000,0,0);}
.m11_c00206{transform:matrix(0.280329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280329,0.000000,0.000000,0.250000,0,0);}
.m63_c00206{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.m6d_c00206{transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);}
.m37_c00206{transform:matrix(0.281955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281955,0.000000,0.000000,0.250000,0,0);}
.m49_c00206{transform:matrix(0.282313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282313,0.000000,0.000000,0.250000,0,0);}
.m73_c00206{transform:matrix(0.282371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282371,0.000000,0.000000,0.250000,0,0);}
.ma_c00206{transform:matrix(0.282550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282550,0.000000,0.000000,0.250000,0,0);}
.md_c00206{transform:matrix(0.283244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283244,0.000000,0.000000,0.250000,0,0);}
.m5a_c00206{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m6b_c00206{transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);}
.m47_c00206{transform:matrix(0.284343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284343,0.000000,0.000000,0.250000,0,0);}
.m44_c00206{transform:matrix(0.284874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284874,0.000000,0.000000,0.250000,0,0);}
.m30_c00206{transform:matrix(0.284936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284936,0.000000,0.000000,0.250000,0,0);}
.m4_c00206{transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);}
.m4c_c00206{transform:matrix(0.285694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285694,0.000000,0.000000,0.250000,0,0);}
.m8a_c00206{transform:matrix(0.286141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286141,0.000000,0.000000,0.250000,0,0);}
.m15_c00206{transform:matrix(0.287592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287592,0.000000,0.000000,0.250000,0,0);}
.m7e_c00206{transform:matrix(0.288372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288372,0.000000,0.000000,0.250000,0,0);}
.m78_c00206{transform:matrix(0.288420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288420,0.000000,0.000000,0.250000,0,0);}
.m93_c00206{transform:matrix(0.290083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290083,0.000000,0.000000,0.250000,0,0);}
.m95_c00206{transform:matrix(0.290226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290226,0.000000,0.000000,0.250000,0,0);}
.m9b_c00206{transform:matrix(0.290747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290747,0.000000,0.000000,0.250000,0,0);}
.m5_c00206{transform:matrix(0.291314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291314,0.000000,0.000000,0.250000,0,0);}
.m16_c00206{transform:matrix(0.291699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291699,0.000000,0.000000,0.250000,0,0);}
.ma6_c00206{transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);}
.ma0_c00206{transform:matrix(0.292392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292392,0.000000,0.000000,0.250000,0,0);}
.m3_c00206{transform:matrix(0.292818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292818,0.000000,0.000000,0.250000,0,0);}
.m79_c00206{transform:matrix(0.293178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293178,0.000000,0.000000,0.250000,0,0);}
.m97_c00206{transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);}
.mb5_c00206{transform:matrix(0.293707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293707,0.000000,0.000000,0.250000,0,0);}
.m31_c00206{transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);}
.mae_c00206{transform:matrix(0.295291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295291,0.000000,0.000000,0.250000,0,0);}
.m38_c00206{transform:matrix(0.296326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296326,0.000000,0.000000,0.250000,0,0);}
.m80_c00206{transform:matrix(0.296536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296536,0.000000,0.000000,0.250000,0,0);}
.m3e_c00206{transform:matrix(0.296908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296908,0.000000,0.000000,0.250000,0,0);}
.m10_c00206{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m86_c00206{transform:matrix(0.298020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298020,0.000000,0.000000,0.250000,0,0);}
.m89_c00206{transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);}
.m1f_c00206{transform:matrix(0.298888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298888,0.000000,0.000000,0.250000,0,0);}
.m43_c00206{transform:matrix(0.299102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299102,0.000000,0.000000,0.250000,0,0);}
.m70_c00206{transform:matrix(0.299699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299699,0.000000,0.000000,0.250000,0,0);}
.m1_c00206{transform:matrix(0.300944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300944,0.000000,0.000000,0.250000,0,0);}
.m42_c00206{transform:matrix(0.301024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301024,0.000000,0.000000,0.250000,0,0);}
.m50_c00206{transform:matrix(0.301409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301409,0.000000,0.000000,0.250000,0,0);}
.m8e_c00206{transform:matrix(0.301847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301847,0.000000,0.000000,0.250000,0,0);}
.m52_c00206{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.mb2_c00206{transform:matrix(0.303158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303158,0.000000,0.000000,0.250000,0,0);}
.m1b_c00206{transform:matrix(0.303946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303946,0.000000,0.000000,0.250000,0,0);}
.m5b_c00206{transform:matrix(0.304209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304209,0.000000,0.000000,0.250000,0,0);}
.m12_c00206{transform:matrix(0.304821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304821,0.000000,0.000000,0.250000,0,0);}
.ma3_c00206{transform:matrix(0.304849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304849,0.000000,0.000000,0.250000,0,0);}
.mb7_c00206{transform:matrix(0.305191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305191,0.000000,0.000000,0.250000,0,0);}
.m6a_c00206{transform:matrix(0.306169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306169,0.000000,0.000000,0.250000,0,0);}
.mb4_c00206{transform:matrix(0.306497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306497,0.000000,0.000000,0.250000,0,0);}
.m92_c00206{transform:matrix(0.306703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306703,0.000000,0.000000,0.250000,0,0);}
.m40_c00206{transform:matrix(0.307242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307242,0.000000,0.000000,0.250000,0,0);}
.m17_c00206{transform:matrix(0.307718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307718,0.000000,0.000000,0.250000,0,0);}
.m41_c00206{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m36_c00206{transform:matrix(0.308858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308858,0.000000,0.000000,0.250000,0,0);}
.m5c_c00206{transform:matrix(0.308859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308859,0.000000,0.000000,0.250000,0,0);}
.m24_c00206{transform:matrix(0.308970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308970,0.000000,0.000000,0.250000,0,0);}
.ma7_c00206{transform:matrix(0.309609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309609,0.000000,0.000000,0.250000,0,0);}
.m68_c00206{transform:matrix(0.310023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310023,0.000000,0.000000,0.250000,0,0);}
.m6c_c00206{transform:matrix(0.310223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310223,0.000000,0.000000,0.250000,0,0);}
.m5d_c00206{transform:matrix(0.310265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310265,0.000000,0.000000,0.250000,0,0);}
.m5f_c00206{transform:matrix(0.310676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310676,0.000000,0.000000,0.250000,0,0);}
.m9e_c00206{transform:matrix(0.310877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310877,0.000000,0.000000,0.250000,0,0);}
.m3d_c00206{transform:matrix(0.311043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311043,0.000000,0.000000,0.250000,0,0);}
.m1c_c00206{transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);}
.m3f_c00206{transform:matrix(0.312047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312047,0.000000,0.000000,0.250000,0,0);}
.m21_c00206{transform:matrix(0.312319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312319,0.000000,0.000000,0.250000,0,0);}
.mb9_c00206{transform:matrix(0.312531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312531,0.000000,0.000000,0.250000,0,0);}
.m29_c00206{transform:matrix(0.312626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312626,0.000000,0.000000,0.250000,0,0);}
.ma5_c00206{transform:matrix(0.313266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313266,0.000000,0.000000,0.250000,0,0);}
.m8f_c00206{transform:matrix(0.313291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313291,0.000000,0.000000,0.250000,0,0);}
.m6_c00206{transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);}
.m54_c00206{transform:matrix(0.313823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313823,0.000000,0.000000,0.250000,0,0);}
.m4b_c00206{transform:matrix(0.313958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313958,0.000000,0.000000,0.250000,0,0);}
.m2d_c00206{transform:matrix(0.314545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314545,0.000000,0.000000,0.250000,0,0);}
.m1a_c00206{transform:matrix(0.315059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315059,0.000000,0.000000,0.250000,0,0);}
.m61_c00206{transform:matrix(0.317925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317925,0.000000,0.000000,0.250000,0,0);}
.m14_c00206{transform:matrix(0.318333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318333,0.000000,0.000000,0.250000,0,0);}
.m72_c00206{transform:matrix(0.319389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319389,0.000000,0.000000,0.250000,0,0);}
.m74_c00206{transform:matrix(0.319597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319597,0.000000,0.000000,0.250000,0,0);}
.m81_c00206{transform:matrix(0.320939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320939,0.000000,0.000000,0.250000,0,0);}
.mb8_c00206{transform:matrix(0.321033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321033,0.000000,0.000000,0.250000,0,0);}
.m1e_c00206{transform:matrix(0.321059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321059,0.000000,0.000000,0.250000,0,0);}
.m2c_c00206{transform:matrix(0.322646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322646,0.000000,0.000000,0.250000,0,0);}
.mba_c00206{transform:matrix(0.324073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324073,0.000000,0.000000,0.250000,0,0);}
.m4d_c00206{transform:matrix(0.324794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324794,0.000000,0.000000,0.250000,0,0);}
.ma2_c00206{transform:matrix(0.325933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325933,0.000000,0.000000,0.250000,0,0);}
.m9d_c00206{transform:matrix(0.326746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326746,0.000000,0.000000,0.250000,0,0);}
.m6f_c00206{transform:matrix(0.328188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328188,0.000000,0.000000,0.250000,0,0);}
.m8d_c00206{transform:matrix(0.329467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329467,0.000000,0.000000,0.250000,0,0);}
.ma8_c00206{transform:matrix(0.330299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330299,0.000000,0.000000,0.250000,0,0);}
.m91_c00206{transform:matrix(0.330592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330592,0.000000,0.000000,0.250000,0,0);}
.m99_c00206{transform:matrix(0.331066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331066,0.000000,0.000000,0.250000,0,0);}
.me_c00206{transform:matrix(0.333100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333100,0.000000,0.000000,0.250000,0,0);}
.ma9_c00206{transform:matrix(0.333176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333176,0.000000,0.000000,0.250000,0,0);}
.m76_c00206{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m69_c00206{transform:matrix(0.333358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333358,0.000000,0.000000,0.250000,0,0);}
.maf_c00206{transform:matrix(0.334069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334069,0.000000,0.000000,0.250000,0,0);}
.m59_c00206{transform:matrix(0.334632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334632,0.000000,0.000000,0.250000,0,0);}
.m2b_c00206{transform:matrix(0.334696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334696,0.000000,0.000000,0.250000,0,0);}
.m62_c00206{transform:matrix(0.334798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334798,0.000000,0.000000,0.250000,0,0);}
.m3a_c00206{transform:matrix(0.335051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335051,0.000000,0.000000,0.250000,0,0);}
.m2a_c00206{transform:matrix(0.335561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335561,0.000000,0.000000,0.250000,0,0);}
.m7b_c00206{transform:matrix(0.335935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335935,0.000000,0.000000,0.250000,0,0);}
.m82_c00206{transform:matrix(0.336247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336247,0.000000,0.000000,0.250000,0,0);}
.m26_c00206{transform:matrix(0.337295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337295,0.000000,0.000000,0.250000,0,0);}
.mab_c00206{transform:matrix(0.338655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338655,0.000000,0.000000,0.250000,0,0);}
.mb0_c00206{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m87_c00206{transform:matrix(0.342217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342217,0.000000,0.000000,0.250000,0,0);}
.m90_c00206{transform:matrix(0.342513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342513,0.000000,0.000000,0.250000,0,0);}
.m9_c00206{transform:matrix(0.343069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343069,0.000000,0.000000,0.250000,0,0);}
.m7a_c00206{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.m64_c00206{transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);}
.mb6_c00206{transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);}
.m46_c00206{transform:matrix(0.347013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347013,0.000000,0.000000,0.250000,0,0);}
.m4e_c00206{transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);}
.m56_c00206{transform:matrix(0.350446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350446,0.000000,0.000000,0.250000,0,0);}
.m7_c00206{transform:matrix(0.350742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350742,0.000000,0.000000,0.250000,0,0);}
.mb1_c00206{transform:matrix(0.350956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350956,0.000000,0.000000,0.250000,0,0);}
.m71_c00206{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m88_c00206{transform:matrix(0.359169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359169,0.000000,0.000000,0.250000,0,0);}
.m6e_c00206{transform:matrix(0.360646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360646,0.000000,0.000000,0.250000,0,0);}
.m7c_c00206{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);}
.m3c_c00206{transform:matrix(0.374714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374714,0.000000,0.000000,0.250000,0,0);}
.mb3_c00206{transform:matrix(0.381065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381065,0.000000,0.000000,0.250000,0,0);}
.m2f_c00206{transform:matrix(0.382267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382267,0.000000,0.000000,0.250000,0,0);}
.m8b_c00206{transform:matrix(0.385852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385852,0.000000,0.000000,0.250000,0,0);}
.m9c_c00206{transform:matrix(0.404791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404791,0.000000,0.000000,0.250000,0,0);}
.m48_c00206{transform:matrix(0.406235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406235,0.000000,0.000000,0.250000,0,0);}
.v0_c00206{vertical-align:0.000000px;}
.v1_c00206{vertical-align:17.107200px;}
.ls15_c00206{letter-spacing:-2.744280px;}
.lsc_c00206{letter-spacing:-2.414966px;}
.lsd_c00206{letter-spacing:-2.375762px;}
.ls12_c00206{letter-spacing:-1.913155px;}
.ls13_c00206{letter-spacing:-0.886010px;}
.ls19_c00206{letter-spacing:-0.344995px;}
.ls9_c00206{letter-spacing:0.000000px;}
.ls16_c00206{letter-spacing:0.054886px;}
.ls8_c00206{letter-spacing:0.235224px;}
.ls2_c00206{letter-spacing:0.642946px;}
.ls6_c00206{letter-spacing:0.705672px;}
.ls14_c00206{letter-spacing:1.082030px;}
.ls1e_c00206{letter-spacing:1.661126px;}
.lsf_c00206{letter-spacing:1.685772px;}
.ls18_c00206{letter-spacing:1.905314px;}
.ls1_c00206{letter-spacing:2.132698px;}
.ls1d_c00206{letter-spacing:2.217600px;}
.ls7_c00206{letter-spacing:2.454170px;}
.ls5_c00206{letter-spacing:2.509056px;}
.ls11_c00206{letter-spacing:3.112798px;}
.ls1c_c00206{letter-spacing:3.336310px;}
.ls1f_c00206{letter-spacing:3.534310px;}
.ls17_c00206{letter-spacing:3.544200px;}
.lsa_c00206{letter-spacing:3.722400px;}
.ls3_c00206{letter-spacing:3.889037px;}
.lsb_c00206{letter-spacing:3.920400px;}
.ls0_c00206{letter-spacing:9.408960px;}
.ls4_c00206{letter-spacing:49.896198px;}
.ls10_c00206{letter-spacing:51.321798px;}
.ls1a_c00206{letter-spacing:57.024198px;}
.lse_c00206{letter-spacing:58.449798px;}
.ls1b_c00206{letter-spacing:59.875398px;}
.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;}
}
.ws1_c00206{word-spacing:-89.713458px;}
.ws0_c00206{word-spacing:-23.491037px;}
.ws4_c00206{word-spacing:-22.111056px;}
.ws8_c00206{word-spacing:-19.837224px;}
.ws5_c00206{word-spacing:-19.602000px;}
.ws7_c00206{word-spacing:-19.257005px;}
.ws6_c00206{word-spacing:-18.715990px;}
.ws3_c00206{word-spacing:-0.235224px;}
.ws9_c00206{word-spacing:0.000000px;}
.ws2_c00206{word-spacing:2.665872px;}
._14_c00206{margin-left:-10.824660px;}
._17_c00206{margin-left:-5.528952px;}
._1_c00206{margin-left:-3.920400px;}
._10_c00206{width:1.724976px;}
._d_c00206{width:4.625280px;}
._3_c00206{width:6.272244px;}
._6_c00206{width:7.919208px;}
._9_c00206{width:9.566568px;}
._13_c00206{width:11.133936px;}
._c_c00206{width:12.623688px;}
._b_c00206{width:20.856528px;}
._e_c00206{width:22.267872px;}
._a_c00206{width:23.914440px;}
._16_c00206{width:25.090560px;}
._7_c00206{width:27.285984px;}
._11_c00206{width:29.715840px;}
._8_c00206{width:30.971160px;}
._2_c00206{width:32.335459px;}
._12_c00206{width:34.107480px;}
._15_c00206{width:35.611884px;}
._5_c00206{width:36.850968px;}
._4_c00206{width:38.013228px;}
._0_c00206{width:40.380120px;}
._f_c00206{width:43.907688px;}
.fc0_c00206{color:transparent;}
.fs0_c00206{font-size:22.374000px;}
.fsa_c00206{font-size:44.352000px;}
.fs4_c00206{font-size:49.896198px;}
.fs6_c00206{font-size:51.321798px;}
.fs7_c00206{font-size:57.024198px;}
.fs5_c00206{font-size:58.449798px;}
.fs8_c00206{font-size:59.875398px;}
.fs9_c00206{font-size:66.726198px;}
.fsb_c00206{font-size:70.686198px;}
.fs3_c00206{font-size:70.884000px;}
.fs1_c00206{font-size:74.448000px;}
.fs2_c00206{font-size:78.408000px;}
.y0_c00206{bottom:0.000000px;}
.y1_c00206{bottom:76.500000px;}
.y1c_c00206{bottom:150.669135px;}
.y1b_c00206{bottom:182.388735px;}
.y1a_c00206{bottom:208.405935px;}
.y19_c00206{bottom:212.682735px;}
.y18_c00206{bottom:245.471535px;}
.y17_c00206{bottom:273.622185px;}
.y16_c00206{bottom:277.898985px;}
.y15_c00206{bottom:310.687785px;}
.y14_c00206{bottom:343.476585px;}
.y13_c00206{bottom:375.908985px;}
.y12_c00206{bottom:407.984985px;}
.y11_c00206{bottom:471.780585px;}
.y10_c00206{bottom:503.500185px;}
.yf_c00206{bottom:535.937535px;}
.ye_c00206{bottom:568.008585px;}
.yd_c00206{bottom:600.089535px;}
.yc_c00206{bottom:632.521935px;}
.yb_c00206{bottom:664.954335px;}
.ya_c00206{bottom:697.025385px;}
.y9_c00206{bottom:728.749935px;}
.y8_c00206{bottom:793.971135px;}
.y7_c00206{bottom:826.759935px;}
.y6_c00206{bottom:859.192335px;}
.y5_c00206{bottom:891.981135px;}
.y4_c00206{bottom:924.769935px;}
.y3_c00206{bottom:1072.670985px;}
.y2_c00206{bottom:1110.092985px;}
.h2_c00206{height:21.958857px;}
.h6_c00206{height:33.230868px;}
.h8_c00206{height:34.180317px;}
.h9_c00206{height:37.978116px;}
.h7_c00206{height:38.927565px;}
.ha_c00206{height:39.877015px;}
.hc_c00206{height:46.257750px;}
.he_c00206{height:69.374638px;}
.h5_c00206{height:69.568770px;}
.hb_c00206{height:69.593339px;}
.h3_c00206{height:73.066641px;}
.h4_c00206{height:76.953164px;}
.hd_c00206{height:86.481838px;}
.h1_c00206{height:1110.000000px;}
.h0_c00206{height:1263.000000px;}
.w1_c00206{width:733.500000px;}
.w0_c00206{width:892.500000px;}
.x0_c00206{left:0.000000px;}
.x5_c00206{left:65.007885px;}
.xf_c00206{left:68.527335px;}
.x19_c00206{left:76.427535px;}
.x1_c00206{left:79.500000px;}
.x4a_c00206{left:87.124485px;}
.x1a_c00206{left:98.182785px;}
.x5d_c00206{left:99.242085px;}
.x50_c00206{left:101.236935px;}
.x31_c00206{left:108.676785px;}
.x53_c00206{left:110.285535px;}
.x21_c00206{left:111.988335px;}
.x28_c00206{left:119.650935px;}
.x4b_c00206{left:121.284435px;}
.x52_c00206{left:130.837935px;}
.x46_c00206{left:133.604985px;}
.x10_c00206{left:142.356585px;}
.x45_c00206{left:151.835835px;}
.x4f_c00206{left:153.692085px;}
.x39_c00206{left:163.785135px;}
.x1b_c00206{left:175.036485px;}
.x41_c00206{left:184.886985px;}
.x22_c00206{left:186.169035px;}
.x11_c00206{left:187.594635px;}
.x29_c00206{left:197.252085px;}
.x6_c00206{left:209.250885px;}
.x32_c00206{left:218.126235px;}
.x3a_c00206{left:219.502335px;}
.x60_c00206{left:222.145635px;}
.x23_c00206{left:231.461535px;}
.x2a_c00206{left:240.178485px;}
.x3b_c00206{left:241.802085px;}
.x7_c00206{left:252.370335px;}
.x4c_c00206{left:253.553385px;}
.x54_c00206{left:263.898885px;}
.x12_c00206{left:264.933435px;}
.x33_c00206{left:274.665135px;}
.x1c_c00206{left:285.965985px;}
.x34_c00206{left:297.019335px;}
.x3c_c00206{left:307.736085px;}
.x2b_c00206{left:317.517285px;}
.x3f_c00206{left:318.784485px;}
.x8_c00206{left:320.714985px;}
.x24_c00206{left:330.476385px;}
.x59_c00206{left:332.758335px;}
.x47_c00206{left:341.183235px;}
.x35_c00206{left:351.944535px;}
.x5a_c00206{left:359.671485px;}
.x13_c00206{left:363.334485px;}
.x5e_c00206{left:366.457935px;}
.x9_c00206{left:373.833435px;}
.x55_c00206{left:375.407535px;}
.x36_c00206{left:386.000535px;}
.xa_c00206{left:396.044085px;}
.xb_c00206{left:405.236235px;}
.x1d_c00206{left:406.810335px;}
.x2c_c00206{left:417.512235px;}
.x48_c00206{left:427.689435px;}
.x37_c00206{left:429.481335px;}
.x25_c00206{left:438.381435px;}
.xc_c00206{left:439.604085px;}
.x2d_c00206{left:450.736635px;}
.x56_c00206{left:452.048385px;}
.x14_c00206{left:461.884035px;}
.x63_c00206{left:463.037385px;}
.x61_c00206{left:473.625435px;}
.x57_c00206{left:475.852935px;}
.x26_c00206{left:483.961035px;}
.x4d_c00206{left:494.296635px;}
.x42_c00206{left:495.558885px;}
.x1e_c00206{left:506.072685px;}
.x2e_c00206{left:516.942885px;}
.x1f_c00206{left:528.342735px;}
.x15_c00206{left:538.331835px;}
.x5f_c00206{left:540.084135px;}
.x38_c00206{left:549.602985px;}
.xd_c00206{left:560.240535px;}
.x51_c00206{left:561.824535px;}
.x20_c00206{left:572.174985px;}
.x16_c00206{left:582.748185px;}
.x40_c00206{left:594.256935px;}
.xe_c00206{left:604.617285px;}
.x62_c00206{left:605.869635px;}
.x17_c00206{left:614.764785px;}
.x27_c00206{left:616.234935px;}
.x3d_c00206{left:626.595285px;}
.x58_c00206{left:630.134535px;}
.x2f_c00206{left:638.099085px;}
.x18_c00206{left:648.617835px;}
.x3_c00206{left:649.815735px;}
.x2_c00206{left:653.919285px;}
.x3e_c00206{left:659.730585px;}
.x5b_c00206{left:663.467835px;}
.x43_c00206{left:670.585935px;}
.x4_c00206{left:671.971935px;}
.x30_c00206{left:681.758085px;}
.x4e_c00206{left:692.608485px;}
.x5c_c00206{left:694.048935px;}
.x44_c00206{left:695.108235px;}
.x49_c00206{left:703.151985px;}
@media print{
.v0_c00206{vertical-align:0.000000pt;}
.v1_c00206{vertical-align:15.206400pt;}
.ls15_c00206{letter-spacing:-2.439360pt;}
.lsc_c00206{letter-spacing:-2.146637pt;}
.lsd_c00206{letter-spacing:-2.111789pt;}
.ls12_c00206{letter-spacing:-1.700582pt;}
.ls13_c00206{letter-spacing:-0.787565pt;}
.ls19_c00206{letter-spacing:-0.306662pt;}
.ls9_c00206{letter-spacing:0.000000pt;}
.ls16_c00206{letter-spacing:0.048787pt;}
.ls8_c00206{letter-spacing:0.209088pt;}
.ls2_c00206{letter-spacing:0.571507pt;}
.ls6_c00206{letter-spacing:0.627264pt;}
.ls14_c00206{letter-spacing:0.961805pt;}
.ls1e_c00206{letter-spacing:1.476556pt;}
.lsf_c00206{letter-spacing:1.498464pt;}
.ls18_c00206{letter-spacing:1.693613pt;}
.ls1_c00206{letter-spacing:1.895731pt;}
.ls1d_c00206{letter-spacing:1.971200pt;}
.ls7_c00206{letter-spacing:2.181485pt;}
.ls5_c00206{letter-spacing:2.230272pt;}
.ls11_c00206{letter-spacing:2.766931pt;}
.ls1c_c00206{letter-spacing:2.965609pt;}
.ls1f_c00206{letter-spacing:3.141609pt;}
.ls17_c00206{letter-spacing:3.150400pt;}
.lsa_c00206{letter-spacing:3.308800pt;}
.ls3_c00206{letter-spacing:3.456922pt;}
.lsb_c00206{letter-spacing:3.484800pt;}
.ls0_c00206{letter-spacing:8.363520pt;}
.ls4_c00206{letter-spacing:44.352176pt;}
.ls10_c00206{letter-spacing:45.619376pt;}
.ls1a_c00206{letter-spacing:50.688176pt;}
.lse_c00206{letter-spacing:51.955376pt;}
.ls1b_c00206{letter-spacing:53.222576pt;}
.ws1_c00206{word-spacing:-79.745296pt;}
.ws0_c00206{word-spacing:-20.880922pt;}
.ws4_c00206{word-spacing:-19.654272pt;}
.ws8_c00206{word-spacing:-17.633088pt;}
.ws5_c00206{word-spacing:-17.424000pt;}
.ws7_c00206{word-spacing:-17.117338pt;}
.ws6_c00206{word-spacing:-16.636435pt;}
.ws3_c00206{word-spacing:-0.209088pt;}
.ws9_c00206{word-spacing:0.000000pt;}
.ws2_c00206{word-spacing:2.369664pt;}
._14_c00206{margin-left:-9.621920pt;}
._17_c00206{margin-left:-4.914624pt;}
._1_c00206{margin-left:-3.484800pt;}
._10_c00206{width:1.533312pt;}
._d_c00206{width:4.111360pt;}
._3_c00206{width:5.575328pt;}
._6_c00206{width:7.039296pt;}
._9_c00206{width:8.503616pt;}
._13_c00206{width:9.896832pt;}
._c_c00206{width:11.221056pt;}
._b_c00206{width:18.539136pt;}
._e_c00206{width:19.793664pt;}
._a_c00206{width:21.257280pt;}
._16_c00206{width:22.302720pt;}
._7_c00206{width:24.254208pt;}
._11_c00206{width:26.414080pt;}
._8_c00206{width:27.529920pt;}
._2_c00206{width:28.742630pt;}
._12_c00206{width:30.317760pt;}
._15_c00206{width:31.655008pt;}
._5_c00206{width:32.756416pt;}
._4_c00206{width:33.789536pt;}
._0_c00206{width:35.893440pt;}
._f_c00206{width:39.029056pt;}
.fs0_c00206{font-size:19.888000pt;}
.fsa_c00206{font-size:39.424000pt;}
.fs4_c00206{font-size:44.352176pt;}
.fs6_c00206{font-size:45.619376pt;}
.fs7_c00206{font-size:50.688176pt;}
.fs5_c00206{font-size:51.955376pt;}
.fs8_c00206{font-size:53.222576pt;}
.fs9_c00206{font-size:59.312176pt;}
.fsb_c00206{font-size:62.832176pt;}
.fs3_c00206{font-size:63.008000pt;}
.fs1_c00206{font-size:66.176000pt;}
.fs2_c00206{font-size:69.696000pt;}
.y0_c00206{bottom:0.000000pt;}
.y1_c00206{bottom:68.000000pt;}
.y1c_c00206{bottom:133.928120pt;}
.y1b_c00206{bottom:162.123320pt;}
.y1a_c00206{bottom:185.249720pt;}
.y19_c00206{bottom:189.051320pt;}
.y18_c00206{bottom:218.196920pt;}
.y17_c00206{bottom:243.219720pt;}
.y16_c00206{bottom:247.021320pt;}
.y15_c00206{bottom:276.166920pt;}
.y14_c00206{bottom:305.312520pt;}
.y13_c00206{bottom:334.141320pt;}
.y12_c00206{bottom:362.653320pt;}
.y11_c00206{bottom:419.360520pt;}
.y10_c00206{bottom:447.555720pt;}
.yf_c00206{bottom:476.388920pt;}
.ye_c00206{bottom:504.896520pt;}
.yd_c00206{bottom:533.412920pt;}
.yc_c00206{bottom:562.241720pt;}
.yb_c00206{bottom:591.070520pt;}
.ya_c00206{bottom:619.578120pt;}
.y9_c00206{bottom:647.777720pt;}
.y8_c00206{bottom:705.752120pt;}
.y7_c00206{bottom:734.897720pt;}
.y6_c00206{bottom:763.726520pt;}
.y5_c00206{bottom:792.872120pt;}
.y4_c00206{bottom:822.017720pt;}
.y3_c00206{bottom:953.485320pt;}
.y2_c00206{bottom:986.749320pt;}
.h2_c00206{height:19.518984pt;}
.h6_c00206{height:29.538549pt;}
.h8_c00206{height:30.382504pt;}
.h9_c00206{height:33.758325pt;}
.h7_c00206{height:34.602280pt;}
.ha_c00206{height:35.446236pt;}
.hc_c00206{height:41.118000pt;}
.he_c00206{height:61.666345pt;}
.h5_c00206{height:61.838906pt;}
.hb_c00206{height:61.860746pt;}
.h3_c00206{height:64.948125pt;}
.h4_c00206{height:68.402813pt;}
.hd_c00206{height:76.872745pt;}
.h1_c00206{height:986.666667pt;}
.h0_c00206{height:1122.666667pt;}
.w1_c00206{width:652.000000pt;}
.w0_c00206{width:793.333333pt;}
.x0_c00206{left:0.000000pt;}
.x5_c00206{left:57.784787pt;}
.xf_c00206{left:60.913187pt;}
.x19_c00206{left:67.935587pt;}
.x1_c00206{left:70.666667pt;}
.x4a_c00206{left:77.443987pt;}
.x1a_c00206{left:87.273587pt;}
.x5d_c00206{left:88.215187pt;}
.x50_c00206{left:89.988387pt;}
.x31_c00206{left:96.601587pt;}
.x53_c00206{left:98.031587pt;}
.x21_c00206{left:99.545187pt;}
.x28_c00206{left:106.356387pt;}
.x4b_c00206{left:107.808387pt;}
.x52_c00206{left:116.300387pt;}
.x46_c00206{left:118.759987pt;}
.x10_c00206{left:126.539187pt;}
.x45_c00206{left:134.965187pt;}
.x4f_c00206{left:136.615187pt;}
.x39_c00206{left:145.586787pt;}
.x1b_c00206{left:155.587987pt;}
.x41_c00206{left:164.343987pt;}
.x22_c00206{left:165.483587pt;}
.x11_c00206{left:166.750787pt;}
.x29_c00206{left:175.335187pt;}
.x6_c00206{left:186.000787pt;}
.x32_c00206{left:193.889987pt;}
.x3a_c00206{left:195.113187pt;}
.x60_c00206{left:197.462787pt;}
.x23_c00206{left:205.743587pt;}
.x2a_c00206{left:213.491987pt;}
.x3b_c00206{left:214.935187pt;}
.x7_c00206{left:224.329187pt;}
.x4c_c00206{left:225.380787pt;}
.x54_c00206{left:234.576787pt;}
.x12_c00206{left:235.496387pt;}
.x33_c00206{left:244.146787pt;}
.x1c_c00206{left:254.191987pt;}
.x34_c00206{left:264.017187pt;}
.x3c_c00206{left:273.543187pt;}
.x2b_c00206{left:282.237587pt;}
.x3f_c00206{left:283.363987pt;}
.x8_c00206{left:285.079987pt;}
.x24_c00206{left:293.756787pt;}
.x59_c00206{left:295.785187pt;}
.x47_c00206{left:303.273987pt;}
.x35_c00206{left:312.839587pt;}
.x5a_c00206{left:319.707987pt;}
.x13_c00206{left:322.963987pt;}
.x5e_c00206{left:325.740387pt;}
.x9_c00206{left:332.296387pt;}
.x55_c00206{left:333.695587pt;}
.x36_c00206{left:343.111587pt;}
.xa_c00206{left:352.039187pt;}
.xb_c00206{left:360.209987pt;}
.x1d_c00206{left:361.609187pt;}
.x2c_c00206{left:371.121987pt;}
.x48_c00206{left:380.168387pt;}
.x37_c00206{left:381.761187pt;}
.x25_c00206{left:389.672387pt;}
.xc_c00206{left:390.759187pt;}
.x2d_c00206{left:400.654787pt;}
.x56_c00206{left:401.820787pt;}
.x14_c00206{left:410.563587pt;}
.x63_c00206{left:411.588787pt;}
.x61_c00206{left:421.000387pt;}
.x57_c00206{left:422.980387pt;}
.x26_c00206{left:430.187587pt;}
.x4d_c00206{left:439.374787pt;}
.x42_c00206{left:440.496787pt;}
.x1e_c00206{left:449.842387pt;}
.x2e_c00206{left:459.504787pt;}
.x1f_c00206{left:469.637987pt;}
.x15_c00206{left:478.517187pt;}
.x5f_c00206{left:480.074787pt;}
.x38_c00206{left:488.535987pt;}
.xd_c00206{left:497.991587pt;}
.x51_c00206{left:499.399587pt;}
.x20_c00206{left:508.599987pt;}
.x16_c00206{left:517.998387pt;}
.x40_c00206{left:528.228387pt;}
.xe_c00206{left:537.437587pt;}
.x62_c00206{left:538.550787pt;}
.x17_c00206{left:546.457587pt;}
.x27_c00206{left:547.764387pt;}
.x3d_c00206{left:556.973587pt;}
.x58_c00206{left:560.119587pt;}
.x2f_c00206{left:567.199187pt;}
.x18_c00206{left:576.549187pt;}
.x3_c00206{left:577.613987pt;}
.x2_c00206{left:581.261587pt;}
.x3e_c00206{left:586.427187pt;}
.x5b_c00206{left:589.749187pt;}
.x43_c00206{left:596.076387pt;}
.x4_c00206{left:597.308387pt;}
.x30_c00206{left:606.007187pt;}
.x4e_c00206{left:615.651987pt;}
.x5c_c00206{left:616.932387pt;}
.x44_c00206{left:617.873987pt;}
.x49_c00206{left:625.023987pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_114c5c53e8e710b73137b359.woff2')format("woff");}.ff1_c00207{font-family:ff1_c00207;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00207;src:url('chunks/assets/font_26e4f1fa95eeb41a5aee2b43.woff2')format("woff");}.ff2_c00207{font-family:ff2_c00207;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m51_c00207{transform:matrix(0.099753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099753,0.000000,0.000000,0.250000,0,0);}
.mf_c00207{transform:matrix(0.204947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204947,0.000000,0.000000,0.250000,0,0);}
.m55_c00207{transform:matrix(0.211203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211203,0.000000,0.000000,0.250000,0,0);}
.m12_c00207{transform:matrix(0.219467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219467,0.000000,0.000000,0.250000,0,0);}
.m3d_c00207{transform:matrix(0.220701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220701,0.000000,0.000000,0.250000,0,0);}
.m73_c00207{transform:matrix(0.226383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226383,0.000000,0.000000,0.250000,0,0);}
.mcb_c00207{transform:matrix(0.227626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227626,0.000000,0.000000,0.250000,0,0);}
.mb9_c00207{transform:matrix(0.228497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228497,0.000000,0.000000,0.250000,0,0);}
.m7_c00207{transform:matrix(0.236745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236745,0.000000,0.000000,0.250000,0,0);}
.m6_c00207{transform:matrix(0.240778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240778,0.000000,0.000000,0.250000,0,0);}
.m92_c00207{transform:matrix(0.247349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247349,0.000000,0.000000,0.250000,0,0);}
.m0_c00207{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m85_c00207{transform:matrix(0.250051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250051,0.000000,0.000000,0.250000,0,0);}
.m24_c00207{transform:matrix(0.250384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250384,0.000000,0.000000,0.250000,0,0);}
.mbf_c00207{transform:matrix(0.251370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251370,0.000000,0.000000,0.250000,0,0);}
.m39_c00207{transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);}
.m83_c00207{transform:matrix(0.252621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252621,0.000000,0.000000,0.250000,0,0);}
.m89_c00207{transform:matrix(0.253667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253667,0.000000,0.000000,0.250000,0,0);}
.m80_c00207{transform:matrix(0.254116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254116,0.000000,0.000000,0.250000,0,0);}
.mcf_c00207{transform:matrix(0.254597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254597,0.000000,0.000000,0.250000,0,0);}
.mb2_c00207{transform:matrix(0.255313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255313,0.000000,0.000000,0.250000,0,0);}
.md4_c00207{transform:matrix(0.256057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256057,0.000000,0.000000,0.250000,0,0);}
.m16_c00207{transform:matrix(0.256139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256139,0.000000,0.000000,0.250000,0,0);}
.mab_c00207{transform:matrix(0.257373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257373,0.000000,0.000000,0.250000,0,0);}
.m50_c00207{transform:matrix(0.258012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258012,0.000000,0.000000,0.250000,0,0);}
.mc6_c00207{transform:matrix(0.258139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258139,0.000000,0.000000,0.250000,0,0);}
.m4a_c00207{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m7c_c00207{transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);}
.m23_c00207{transform:matrix(0.259898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259898,0.000000,0.000000,0.250000,0,0);}
.m3f_c00207{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m66_c00207{transform:matrix(0.261624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261624,0.000000,0.000000,0.250000,0,0);}
.m78_c00207{transform:matrix(0.263105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263105,0.000000,0.000000,0.250000,0,0);}
.m5_c00207{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.ma7_c00207{transform:matrix(0.263574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263574,0.000000,0.000000,0.250000,0,0);}
.ma3_c00207{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m56_c00207{transform:matrix(0.265033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265033,0.000000,0.000000,0.250000,0,0);}
.me_c00207{transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);}
.m10_c00207{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m57_c00207{transform:matrix(0.266603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266603,0.000000,0.000000,0.250000,0,0);}
.m6d_c00207{transform:matrix(0.267200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267200,0.000000,0.000000,0.250000,0,0);}
.m26_c00207{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m6b_c00207{transform:matrix(0.268418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268418,0.000000,0.000000,0.250000,0,0);}
.m70_c00207{transform:matrix(0.268484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268484,0.000000,0.000000,0.250000,0,0);}
.maf_c00207{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.mb4_c00207{transform:matrix(0.269819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269819,0.000000,0.000000,0.250000,0,0);}
.mbe_c00207{transform:matrix(0.270180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270180,0.000000,0.000000,0.250000,0,0);}
.m8f_c00207{transform:matrix(0.270773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270773,0.000000,0.000000,0.250000,0,0);}
.m5c_c00207{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m63_c00207{transform:matrix(0.270973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270973,0.000000,0.000000,0.250000,0,0);}
.m3a_c00207{transform:matrix(0.270977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270977,0.000000,0.000000,0.250000,0,0);}
.m1_c00207{transform:matrix(0.271131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271131,0.000000,0.000000,0.250000,0,0);}
.m45_c00207{transform:matrix(0.271853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271853,0.000000,0.000000,0.250000,0,0);}
.m7d_c00207{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m4e_c00207{transform:matrix(0.272544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272544,0.000000,0.000000,0.250000,0,0);}
.m8b_c00207{transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);}
.ma_c00207{transform:matrix(0.272964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272964,0.000000,0.000000,0.250000,0,0);}
.mc_c00207{transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);}
.mc3_c00207{transform:matrix(0.273898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273898,0.000000,0.000000,0.250000,0,0);}
.m5f_c00207{transform:matrix(0.273900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273900,0.000000,0.000000,0.250000,0,0);}
.m6c_c00207{transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);}
.m19_c00207{transform:matrix(0.274138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274138,0.000000,0.000000,0.250000,0,0);}
.ma0_c00207{transform:matrix(0.274278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274278,0.000000,0.000000,0.250000,0,0);}
.m95_c00207{transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);}
.m2_c00207{transform:matrix(0.275544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275544,0.000000,0.000000,0.250000,0,0);}
.m29_c00207{transform:matrix(0.275634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275634,0.000000,0.000000,0.250000,0,0);}
.m8a_c00207{transform:matrix(0.276319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276319,0.000000,0.000000,0.250000,0,0);}
.mba_c00207{transform:matrix(0.276432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276432,0.000000,0.000000,0.250000,0,0);}
.m1d_c00207{transform:matrix(0.276460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276460,0.000000,0.000000,0.250000,0,0);}
.m27_c00207{transform:matrix(0.278174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278174,0.000000,0.000000,0.250000,0,0);}
.mb1_c00207{transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);}
.m6a_c00207{transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);}
.mc9_c00207{transform:matrix(0.280116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280116,0.000000,0.000000,0.250000,0,0);}
.m5a_c00207{transform:matrix(0.280460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280460,0.000000,0.000000,0.250000,0,0);}
.m8d_c00207{transform:matrix(0.281520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281520,0.000000,0.000000,0.250000,0,0);}
.m44_c00207{transform:matrix(0.281528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281528,0.000000,0.000000,0.250000,0,0);}
.mb5_c00207{transform:matrix(0.282222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282222,0.000000,0.000000,0.250000,0,0);}
.ma4_c00207{transform:matrix(0.282761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282761,0.000000,0.000000,0.250000,0,0);}
.m35_c00207{transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);}
.m1f_c00207{transform:matrix(0.283147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283147,0.000000,0.000000,0.250000,0,0);}
.m52_c00207{transform:matrix(0.283693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283693,0.000000,0.000000,0.250000,0,0);}
.m74_c00207{transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);}
.m18_c00207{transform:matrix(0.284752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284752,0.000000,0.000000,0.250000,0,0);}
.maa_c00207{transform:matrix(0.286383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286383,0.000000,0.000000,0.250000,0,0);}
.m8c_c00207{transform:matrix(0.286756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286756,0.000000,0.000000,0.250000,0,0);}
.m99_c00207{transform:matrix(0.286766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286766,0.000000,0.000000,0.250000,0,0);}
.m9d_c00207{transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);}
.ma5_c00207{transform:matrix(0.287533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287533,0.000000,0.000000,0.250000,0,0);}
.m17_c00207{transform:matrix(0.288003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288003,0.000000,0.000000,0.250000,0,0);}
.m97_c00207{transform:matrix(0.288005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288005,0.000000,0.000000,0.250000,0,0);}
.ma9_c00207{transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);}
.mcd_c00207{transform:matrix(0.289520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289520,0.000000,0.000000,0.250000,0,0);}
.m69_c00207{transform:matrix(0.290184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290184,0.000000,0.000000,0.250000,0,0);}
.m22_c00207{transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);}
.m9c_c00207{transform:matrix(0.290594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290594,0.000000,0.000000,0.250000,0,0);}
.m64_c00207{transform:matrix(0.290806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290806,0.000000,0.000000,0.250000,0,0);}
.m93_c00207{transform:matrix(0.291381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291381,0.000000,0.000000,0.250000,0,0);}
.mc2_c00207{transform:matrix(0.291730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291730,0.000000,0.000000,0.250000,0,0);}
.m2e_c00207{transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);}
.m7a_c00207{transform:matrix(0.291905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291905,0.000000,0.000000,0.250000,0,0);}
.m49_c00207{transform:matrix(0.292061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292061,0.000000,0.000000,0.250000,0,0);}
.m2d_c00207{transform:matrix(0.292653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292653,0.000000,0.000000,0.250000,0,0);}
.m79_c00207{transform:matrix(0.293149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293149,0.000000,0.000000,0.250000,0,0);}
.mb0_c00207{transform:matrix(0.294066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294066,0.000000,0.000000,0.250000,0,0);}
.m54_c00207{transform:matrix(0.294638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294638,0.000000,0.000000,0.250000,0,0);}
.m98_c00207{transform:matrix(0.294675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294675,0.000000,0.000000,0.250000,0,0);}
.ma8_c00207{transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);}
.m9f_c00207{transform:matrix(0.295321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295321,0.000000,0.000000,0.250000,0,0);}
.m4d_c00207{transform:matrix(0.295991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295991,0.000000,0.000000,0.250000,0,0);}
.mca_c00207{transform:matrix(0.296568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296568,0.000000,0.000000,0.250000,0,0);}
.m1a_c00207{transform:matrix(0.296600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296600,0.000000,0.000000,0.250000,0,0);}
.m81_c00207{transform:matrix(0.297073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297073,0.000000,0.000000,0.250000,0,0);}
.m14_c00207{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m82_c00207{transform:matrix(0.297124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297124,0.000000,0.000000,0.250000,0,0);}
.m8e_c00207{transform:matrix(0.297216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297216,0.000000,0.000000,0.250000,0,0);}
.mcc_c00207{transform:matrix(0.298080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298080,0.000000,0.000000,0.250000,0,0);}
.m21_c00207{transform:matrix(0.298112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298112,0.000000,0.000000,0.250000,0,0);}
.m3e_c00207{transform:matrix(0.298405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298405,0.000000,0.000000,0.250000,0,0);}
.m53_c00207{transform:matrix(0.298414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298414,0.000000,0.000000,0.250000,0,0);}
.m9b_c00207{transform:matrix(0.299616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299616,0.000000,0.000000,0.250000,0,0);}
.m7f_c00207{transform:matrix(0.299763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299763,0.000000,0.000000,0.250000,0,0);}
.md1_c00207{transform:matrix(0.299964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299964,0.000000,0.000000,0.250000,0,0);}
.md_c00207{transform:matrix(0.300614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300614,0.000000,0.000000,0.250000,0,0);}
.m67_c00207{transform:matrix(0.300874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300874,0.000000,0.000000,0.250000,0,0);}
.m2c_c00207{transform:matrix(0.301210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301210,0.000000,0.000000,0.250000,0,0);}
.mac_c00207{transform:matrix(0.301666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301666,0.000000,0.000000,0.250000,0,0);}
.m2a_c00207{transform:matrix(0.302393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302393,0.000000,0.000000,0.250000,0,0);}
.mb8_c00207{transform:matrix(0.302927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302927,0.000000,0.000000,0.250000,0,0);}
.m76_c00207{transform:matrix(0.303158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303158,0.000000,0.000000,0.250000,0,0);}
.m46_c00207{transform:matrix(0.303162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303162,0.000000,0.000000,0.250000,0,0);}
.m32_c00207{transform:matrix(0.303287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303287,0.000000,0.000000,0.250000,0,0);}
.m61_c00207{transform:matrix(0.303448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303448,0.000000,0.000000,0.250000,0,0);}
.m1b_c00207{transform:matrix(0.303475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303475,0.000000,0.000000,0.250000,0,0);}
.m40_c00207{transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);}
.mb6_c00207{transform:matrix(0.305752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305752,0.000000,0.000000,0.250000,0,0);}
.m37_c00207{transform:matrix(0.306527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306527,0.000000,0.000000,0.250000,0,0);}
.m13_c00207{transform:matrix(0.306887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306887,0.000000,0.000000,0.250000,0,0);}
.m90_c00207{transform:matrix(0.307034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307034,0.000000,0.000000,0.250000,0,0);}
.m30_c00207{transform:matrix(0.307460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307460,0.000000,0.000000,0.250000,0,0);}
.md3_c00207{transform:matrix(0.307482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307482,0.000000,0.000000,0.250000,0,0);}
.m94_c00207{transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);}
.m41_c00207{transform:matrix(0.308223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308223,0.000000,0.000000,0.250000,0,0);}
.m25_c00207{transform:matrix(0.308448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308448,0.000000,0.000000,0.250000,0,0);}
.m33_c00207{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.md5_c00207{transform:matrix(0.308742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308742,0.000000,0.000000,0.250000,0,0);}
.m28_c00207{transform:matrix(0.308951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308951,0.000000,0.000000,0.250000,0,0);}
.ma1_c00207{transform:matrix(0.309093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309093,0.000000,0.000000,0.250000,0,0);}
.md2_c00207{transform:matrix(0.309745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309745,0.000000,0.000000,0.250000,0,0);}
.m20_c00207{transform:matrix(0.310123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310123,0.000000,0.000000,0.250000,0,0);}
.m48_c00207{transform:matrix(0.310265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310265,0.000000,0.000000,0.250000,0,0);}
.md0_c00207{transform:matrix(0.312047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312047,0.000000,0.000000,0.250000,0,0);}
.m68_c00207{transform:matrix(0.312347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312347,0.000000,0.000000,0.250000,0,0);}
.m77_c00207{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.m75_c00207{transform:matrix(0.312946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312946,0.000000,0.000000,0.250000,0,0);}
.m1c_c00207{transform:matrix(0.313266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313266,0.000000,0.000000,0.250000,0,0);}
.m5b_c00207{transform:matrix(0.314895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314895,0.000000,0.000000,0.250000,0,0);}
.ma6_c00207{transform:matrix(0.315717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315717,0.000000,0.000000,0.250000,0,0);}
.mc4_c00207{transform:matrix(0.315948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315948,0.000000,0.000000,0.250000,0,0);}
.m31_c00207{transform:matrix(0.316005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316005,0.000000,0.000000,0.250000,0,0);}
.m5d_c00207{transform:matrix(0.318160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318160,0.000000,0.000000,0.250000,0,0);}
.mbc_c00207{transform:matrix(0.319359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319359,0.000000,0.000000,0.250000,0,0);}
.m4b_c00207{transform:matrix(0.319377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319377,0.000000,0.000000,0.250000,0,0);}
.m9_c00207{transform:matrix(0.319530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319530,0.000000,0.000000,0.250000,0,0);}
.m5e_c00207{transform:matrix(0.319572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319572,0.000000,0.000000,0.250000,0,0);}
.m88_c00207{transform:matrix(0.319812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319812,0.000000,0.000000,0.250000,0,0);}
.m3_c00207{transform:matrix(0.320297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320297,0.000000,0.000000,0.250000,0,0);}
.m34_c00207{transform:matrix(0.320357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320357,0.000000,0.000000,0.250000,0,0);}
.mc5_c00207{transform:matrix(0.320922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320922,0.000000,0.000000,0.250000,0,0);}
.m42_c00207{transform:matrix(0.320945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320945,0.000000,0.000000,0.250000,0,0);}
.m15_c00207{transform:matrix(0.321009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321009,0.000000,0.000000,0.250000,0,0);}
.m72_c00207{transform:matrix(0.322704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322704,0.000000,0.000000,0.250000,0,0);}
.ma2_c00207{transform:matrix(0.323362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323362,0.000000,0.000000,0.250000,0,0);}
.m2b_c00207{transform:matrix(0.323499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323499,0.000000,0.000000,0.250000,0,0);}
.m38_c00207{transform:matrix(0.324609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324609,0.000000,0.000000,0.250000,0,0);}
.m6e_c00207{transform:matrix(0.326099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326099,0.000000,0.000000,0.250000,0,0);}
.mc8_c00207{transform:matrix(0.326261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326261,0.000000,0.000000,0.250000,0,0);}
.m43_c00207{transform:matrix(0.327017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327017,0.000000,0.000000,0.250000,0,0);}
.m6f_c00207{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m96_c00207{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);}
.mae_c00207{transform:matrix(0.328074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328074,0.000000,0.000000,0.250000,0,0);}
.m91_c00207{transform:matrix(0.328484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328484,0.000000,0.000000,0.250000,0,0);}
.m36_c00207{transform:matrix(0.328552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328552,0.000000,0.000000,0.250000,0,0);}
.m2f_c00207{transform:matrix(0.329713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329713,0.000000,0.000000,0.250000,0,0);}
.m59_c00207{transform:matrix(0.329886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329886,0.000000,0.000000,0.250000,0,0);}
.mc0_c00207{transform:matrix(0.330087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330087,0.000000,0.000000,0.250000,0,0);}
.m3b_c00207{transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);}
.m3c_c00207{transform:matrix(0.331631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331631,0.000000,0.000000,0.250000,0,0);}
.mad_c00207{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m71_c00207{transform:matrix(0.334985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334985,0.000000,0.000000,0.250000,0,0);}
.mce_c00207{transform:matrix(0.336348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336348,0.000000,0.000000,0.250000,0,0);}
.m84_c00207{transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);}
.m1e_c00207{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m58_c00207{transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);}
.mb7_c00207{transform:matrix(0.342690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342690,0.000000,0.000000,0.250000,0,0);}
.m47_c00207{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.m11_c00207{transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);}
.m4_c00207{transform:matrix(0.343578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343578,0.000000,0.000000,0.250000,0,0);}
.mb3_c00207{transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);}
.mb_c00207{transform:matrix(0.348765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348765,0.000000,0.000000,0.250000,0,0);}
.m4c_c00207{transform:matrix(0.349530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349530,0.000000,0.000000,0.250000,0,0);}
.m7b_c00207{transform:matrix(0.352685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352685,0.000000,0.000000,0.250000,0,0);}
.mc1_c00207{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m86_c00207{transform:matrix(0.355848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355848,0.000000,0.000000,0.250000,0,0);}
.m7e_c00207{transform:matrix(0.357165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357165,0.000000,0.000000,0.250000,0,0);}
.m60_c00207{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m9a_c00207{transform:matrix(0.368506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368506,0.000000,0.000000,0.250000,0,0);}
.m62_c00207{transform:matrix(0.369566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369566,0.000000,0.000000,0.250000,0,0);}
.m8_c00207{transform:matrix(0.372071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372071,0.000000,0.000000,0.250000,0,0);}
.mc7_c00207{transform:matrix(0.388965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388965,0.000000,0.000000,0.250000,0,0);}
.m9e_c00207{transform:matrix(0.389020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389020,0.000000,0.000000,0.250000,0,0);}
.m4f_c00207{transform:matrix(0.401549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401549,0.000000,0.000000,0.250000,0,0);}
.mbb_c00207{transform:matrix(0.409469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409469,0.000000,0.000000,0.250000,0,0);}
.m87_c00207{transform:matrix(0.409814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409814,0.000000,0.000000,0.250000,0,0);}
.m65_c00207{transform:matrix(0.423078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423078,0.000000,0.000000,0.250000,0,0);}
.mbd_c00207{transform:matrix(0.432348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432348,0.000000,0.000000,0.250000,0,0);}
.v0_c00207{vertical-align:0.000000px;}
.ls6_c00207{letter-spacing:-2.744280px;}
.lsa_c00207{letter-spacing:-2.557177px;}
.ls1a_c00207{letter-spacing:-1.897474px;}
.lse_c00207{letter-spacing:-1.278050px;}
.ls12_c00207{letter-spacing:-0.987941px;}
.ls9_c00207{letter-spacing:-0.807602px;}
.lsf_c00207{letter-spacing:-0.344995px;}
.ls1c_c00207{letter-spacing:-0.180338px;}
.ls3_c00207{letter-spacing:0.000000px;}
.ls1b_c00207{letter-spacing:0.533174px;}
.lsc_c00207{letter-spacing:0.627264px;}
.ls8_c00207{letter-spacing:0.940896px;}
.ls13_c00207{letter-spacing:1.082030px;}
.ls19_c00207{letter-spacing:1.685772px;}
.ls17_c00207{letter-spacing:1.764180px;}
.ls16_c00207{letter-spacing:2.744280px;}
.ls11_c00207{letter-spacing:3.112798px;}
.lsb_c00207{letter-spacing:3.484810px;}
.ls14_c00207{letter-spacing:3.559723px;}
.ls2_c00207{letter-spacing:3.606768px;}
.ls4_c00207{letter-spacing:3.633310px;}
.ls18_c00207{letter-spacing:3.653813px;}
.ls7_c00207{letter-spacing:3.712500px;}
.lsd_c00207{letter-spacing:3.912559px;}
.ls5_c00207{letter-spacing:3.920400px;}
.ls15_c00207{letter-spacing:4.158000px;}
.ls10_c00207{letter-spacing:4.395610px;}
.ls0_c00207{letter-spacing:11.605176px;}
.ls1_c00207{letter-spacing:12.388464px;}
.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;}
}
.ws3_c00207{word-spacing:-23.514559px;}
.ws8_c00207{word-spacing:-23.255813px;}
.ws6_c00207{word-spacing:-20.684030px;}
.ws1_c00207{word-spacing:-20.542896px;}
.ws0_c00207{word-spacing:-19.602000px;}
.ws4_c00207{word-spacing:-18.614059px;}
.ws2_c00207{word-spacing:-2.195424px;}
.ws7_c00207{word-spacing:-0.156816px;}
.wsa_c00207{word-spacing:0.000000px;}
.ws9_c00207{word-spacing:0.313236px;}
.ws5_c00207{word-spacing:3.606768px;}
._f_c00207{margin-left:-17.484984px;}
._d_c00207{margin-left:-13.172544px;}
._5_c00207{margin-left:-10.271448px;}
._10_c00207{margin-left:-3.214332px;}
._15_c00207{margin-left:-2.139588px;}
._13_c00207{width:2.807006px;}
._2_c00207{width:4.938120px;}
._9_c00207{width:6.429456px;}
._c_c00207{width:7.447968px;}
._1_c00207{width:8.545680px;}
._e_c00207{width:10.194228px;}
._16_c00207{width:12.780504px;}
._a_c00207{width:14.035032px;}
._17_c00207{width:17.031960px;}
._3_c00207{width:20.856528px;}
._12_c00207{width:22.423500px;}
._0_c00207{width:23.679216px;}
._8_c00207{width:28.932552px;}
._6_c00207{width:31.285188px;}
._11_c00207{width:32.920272px;}
._14_c00207{width:34.011648px;}
._b_c00207{width:36.773748px;}
._7_c00207{width:39.181824px;}
._4_c00207{width:40.956696px;}
.fc0_c00207{color:transparent;}
.fs4_c00207{font-size:69.696198px;}
.fs0_c00207{font-size:72.666198px;}
.fs3_c00207{font-size:73.062198px;}
.fs2_c00207{font-size:74.250000px;}
.fs1_c00207{font-size:78.408000px;}
.fs6_c00207{font-size:78.804000px;}
.fs7_c00207{font-size:83.160000px;}
.fs5_c00207{font-size:87.912198px;}
.y0_c00207{bottom:0.000000px;}
.y1_c00207{bottom:76.500000px;}
.y19_c00207{bottom:153.163935px;}
.y18_c00207{bottom:183.809385px;}
.y17_c00207{bottom:216.246735px;}
.y16_c00207{bottom:249.035535px;}
.y15_c00207{bottom:281.462985px;}
.y14_c00207{bottom:313.538985px;}
.y13_c00207{bottom:345.263535px;}
.y12_c00207{bottom:409.059135px;}
.y11_c00207{bottom:441.130185px;}
.y10_c00207{bottom:472.854735px;}
.yf_c00207{bottom:505.643535px;}
.ye_c00207{bottom:537.714585px;}
.yd_c00207{bottom:569.795535px;}
.yc_c00207{bottom:602.227935px;}
.yb_c00207{bottom:634.298985px;}
.ya_c00207{bottom:666.731385px;}
.y9_c00207{bottom:731.239785px;}
.y8_c00207{bottom:764.033535px;}
.y7_c00207{bottom:798.247935px;}
.y6_c00207{bottom:829.967535px;}
.y5_c00207{bottom:862.751385px;}
.y4_c00207{bottom:894.832335px;}
.y3_c00207{bottom:926.903385px;}
.y2_c00207{bottom:1075.878585px;}
.h6_c00207{height:68.403007px;}
.h2_c00207{height:71.317899px;}
.h5_c00207{height:71.706552px;}
.h4_c00207{height:74.830078px;}
.h3_c00207{height:76.953164px;}
.h8_c00207{height:77.341816px;}
.h9_c00207{height:81.616992px;}
.h7_c00207{height:86.281015px;}
.h1_c00207{height:1110.000000px;}
.h0_c00207{height:1263.000000px;}
.w1_c00207{width:733.500000px;}
.w0_c00207{width:892.500000px;}
.x0_c00207{left:0.000000px;}
.x38_c00207{left:68.413485px;}
.x1a_c00207{left:69.655935px;}
.x1_c00207{left:79.500000px;}
.x43_c00207{left:90.139035px;}
.x39_c00207{left:91.208235px;}
.x4a_c00207{left:102.103185px;}
.x1b_c00207{left:113.176335px;}
.x47_c00207{left:122.521935px;}
.x5_c00207{left:123.640635px;}
.x62_c00207{left:124.823685px;}
.x3a_c00207{left:134.837535px;}
.x25_c00207{left:145.395885px;}
.x44_c00207{left:156.602685px;}
.x63_c00207{left:157.983735px;}
.x52_c00207{left:166.091835px;}
.x5a_c00207{left:168.027285px;}
.x45_c00207{left:178.377735px;}
.x48_c00207{left:188.545035px;}
.x6_c00207{left:189.802335px;}
.x5d_c00207{left:199.593435px;}
.x1c_c00207{left:200.999235px;}
.x64_c00207{left:202.162485px;}
.x3f_c00207{left:211.834785px;}
.x68_c00207{left:212.854485px;}
.x53_c00207{left:220.932885px;}
.x7_c00207{left:222.363435px;}
.x61_c00207{left:223.902885px;}
.x2f_c00207{left:233.837535px;}
.x1d_c00207{left:235.010685px;}
.x5b_c00207{left:237.134235px;}
.x8_c00207{left:245.286885px;}
.x9_c00207{left:256.548135px;}
.x6b_c00207{left:257.775735px;}
.x40_c00207{left:265.883835px;}
.x26_c00207{left:267.066885px;}
.x1e_c00207{left:268.522185px;}
.x30_c00207{left:277.788585px;}
.x1f_c00207{left:288.624135px;}
.x54_c00207{left:290.242785px;}
.xa_c00207{left:300.608085px;}
.x69_c00207{left:310.433835px;}
.x57_c00207{left:311.933685px;}
.xb_c00207{left:321.997035px;}
.x4e_c00207{left:323.383035px;}
.x27_c00207{left:325.249185px;}
.x4b_c00207{left:332.486085px;}
.x46_c00207{left:333.723585px;}
.x41_c00207{left:342.866235px;}
.x20_c00207{left:343.900785px;}
.x5e_c00207{left:345.128385px;}
.xc_c00207{left:354.181935px;}
.x28_c00207{left:355.305585px;}
.x21_c00207{left:365.641185px;}
.x65_c00207{left:366.710385px;}
.x6a_c00207{left:367.957785px;}
.xd_c00207{left:377.234085px;}
.x31_c00207{left:380.411985px;}
.x3b_c00207{left:388.287435px;}
.x42_c00207{left:389.341785px;}
.xe_c00207{left:390.594135px;}
.x29_c00207{left:399.687285px;}
.xf_c00207{left:409.423935px;}
.x3c_c00207{left:412.111785px;}
.x10_c00207{left:421.581135px;}
.x58_c00207{left:431.931585px;}
.x11_c00207{left:442.846335px;}
.x4f_c00207{left:443.880885px;}
.x12_c00207{left:454.206585px;}
.x55_c00207{left:455.567835px;}
.x32_c00207{left:464.344185px;}
.x5c_c00207{left:465.660885px;}
.x13_c00207{left:476.313285px;}
.x59_c00207{left:479.416935px;}
.x2a_c00207{left:488.420985px;}
.x33_c00207{left:498.410085px;}
.x5f_c00207{left:499.419885px;}
.x14_c00207{left:500.870235px;}
.x2b_c00207{left:510.087135px;}
.x4c_c00207{left:515.774685px;}
.x34_c00207{left:520.521735px;}
.x35_c00207{left:532.233435px;}
.x22_c00207{left:542.960085px;}
.x2c_c00207{left:551.716635px;}
.x50_c00207{left:553.998585px;}
.x66_c00207{left:556.042935px;}
.x15_c00207{left:563.448135px;}
.x51_c00207{left:564.596535px;}
.x36_c00207{left:575.041035px;}
.x4d_c00207{left:578.164485px;}
.x16_c00207{left:586.252785px;}
.x3d_c00207{left:597.147735px;}
.x23_c00207{left:599.974185px;}
.x17_c00207{left:607.824885px;}
.x67_c00207{left:608.903985px;}
.x37_c00207{left:619.536585px;}
.x18_c00207{left:630.530535px;}
.x2d_c00207{left:640.405785px;}
.x60_c00207{left:641.692785px;}
.x2_c00207{left:652.008585px;}
.x3e_c00207{left:662.037285px;}
.x3_c00207{left:663.151035px;}
.x24_c00207{left:672.442185px;}
.x2e_c00207{left:673.555935px;}
.x6c_c00207{left:674.778585px;}
.x49_c00207{left:683.228235px;}
.x4_c00207{left:685.826985px;}
.x6e_c00207{left:687.000135px;}
.x19_c00207{left:695.860635px;}
.x56_c00207{left:706.468485px;}
.x6d_c00207{left:720.595785px;}
@media print{
.v0_c00207{vertical-align:0.000000pt;}
.ls6_c00207{letter-spacing:-2.439360pt;}
.lsa_c00207{letter-spacing:-2.273046pt;}
.ls1a_c00207{letter-spacing:-1.686643pt;}
.lse_c00207{letter-spacing:-1.136045pt;}
.ls12_c00207{letter-spacing:-0.878170pt;}
.ls9_c00207{letter-spacing:-0.717869pt;}
.lsf_c00207{letter-spacing:-0.306662pt;}
.ls1c_c00207{letter-spacing:-0.160301pt;}
.ls3_c00207{letter-spacing:0.000000pt;}
.ls1b_c00207{letter-spacing:0.473933pt;}
.lsc_c00207{letter-spacing:0.557568pt;}
.ls8_c00207{letter-spacing:0.836352pt;}
.ls13_c00207{letter-spacing:0.961805pt;}
.ls19_c00207{letter-spacing:1.498464pt;}
.ls17_c00207{letter-spacing:1.568160pt;}
.ls16_c00207{letter-spacing:2.439360pt;}
.ls11_c00207{letter-spacing:2.766931pt;}
.lsb_c00207{letter-spacing:3.097609pt;}
.ls14_c00207{letter-spacing:3.164198pt;}
.ls2_c00207{letter-spacing:3.206016pt;}
.ls4_c00207{letter-spacing:3.229609pt;}
.ls18_c00207{letter-spacing:3.247834pt;}
.ls7_c00207{letter-spacing:3.300000pt;}
.lsd_c00207{letter-spacing:3.477830pt;}
.ls5_c00207{letter-spacing:3.484800pt;}
.ls15_c00207{letter-spacing:3.696000pt;}
.ls10_c00207{letter-spacing:3.907209pt;}
.ls0_c00207{letter-spacing:10.315712pt;}
.ls1_c00207{letter-spacing:11.011968pt;}
.ws3_c00207{word-spacing:-20.901830pt;}
.ws8_c00207{word-spacing:-20.671834pt;}
.ws6_c00207{word-spacing:-18.385805pt;}
.ws1_c00207{word-spacing:-18.260352pt;}
.ws0_c00207{word-spacing:-17.424000pt;}
.ws4_c00207{word-spacing:-16.545830pt;}
.ws2_c00207{word-spacing:-1.951488pt;}
.ws7_c00207{word-spacing:-0.139392pt;}
.wsa_c00207{word-spacing:0.000000pt;}
.ws9_c00207{word-spacing:0.278432pt;}
.ws5_c00207{word-spacing:3.206016pt;}
._f_c00207{margin-left:-15.542208pt;}
._d_c00207{margin-left:-11.708928pt;}
._5_c00207{margin-left:-9.130176pt;}
._10_c00207{margin-left:-2.857184pt;}
._15_c00207{margin-left:-1.901856pt;}
._13_c00207{width:2.495117pt;}
._2_c00207{width:4.389440pt;}
._9_c00207{width:5.715072pt;}
._c_c00207{width:6.620416pt;}
._1_c00207{width:7.596160pt;}
._e_c00207{width:9.061536pt;}
._16_c00207{width:11.360448pt;}
._a_c00207{width:12.475584pt;}
._17_c00207{width:15.139520pt;}
._3_c00207{width:18.539136pt;}
._12_c00207{width:19.932000pt;}
._0_c00207{width:21.048192pt;}
._8_c00207{width:25.717824pt;}
._6_c00207{width:27.809056pt;}
._11_c00207{width:29.262464pt;}
._14_c00207{width:30.232576pt;}
._b_c00207{width:32.687776pt;}
._7_c00207{width:34.828288pt;}
._4_c00207{width:36.405952pt;}
.fs4_c00207{font-size:61.952176pt;}
.fs0_c00207{font-size:64.592176pt;}
.fs3_c00207{font-size:64.944176pt;}
.fs2_c00207{font-size:66.000000pt;}
.fs1_c00207{font-size:69.696000pt;}
.fs6_c00207{font-size:70.048000pt;}
.fs7_c00207{font-size:73.920000pt;}
.fs5_c00207{font-size:78.144176pt;}
.y0_c00207{bottom:0.000000pt;}
.y1_c00207{bottom:68.000000pt;}
.y19_c00207{bottom:136.145720pt;}
.y18_c00207{bottom:163.386120pt;}
.y17_c00207{bottom:192.219320pt;}
.y16_c00207{bottom:221.364920pt;}
.y15_c00207{bottom:250.189320pt;}
.y14_c00207{bottom:278.701320pt;}
.y13_c00207{bottom:306.900920pt;}
.y12_c00207{bottom:363.608120pt;}
.y11_c00207{bottom:392.115720pt;}
.y10_c00207{bottom:420.315320pt;}
.yf_c00207{bottom:449.460920pt;}
.ye_c00207{bottom:477.968520pt;}
.yd_c00207{bottom:506.484920pt;}
.yc_c00207{bottom:535.313720pt;}
.yb_c00207{bottom:563.821320pt;}
.ya_c00207{bottom:592.650120pt;}
.y9_c00207{bottom:649.990920pt;}
.y8_c00207{bottom:679.140920pt;}
.y7_c00207{bottom:709.553720pt;}
.y6_c00207{bottom:737.748920pt;}
.y5_c00207{bottom:766.890120pt;}
.y4_c00207{bottom:795.406520pt;}
.y3_c00207{bottom:823.914120pt;}
.y2_c00207{bottom:956.336520pt;}
.h6_c00207{height:60.802673pt;}
.h2_c00207{height:63.393688pt;}
.h5_c00207{height:63.739157pt;}
.h4_c00207{height:66.515625pt;}
.h3_c00207{height:68.402813pt;}
.h8_c00207{height:68.748281pt;}
.h9_c00207{height:72.548438pt;}
.h7_c00207{height:76.694235pt;}
.h1_c00207{height:986.666667pt;}
.h0_c00207{height:1122.666667pt;}
.w1_c00207{width:652.000000pt;}
.w0_c00207{width:793.333333pt;}
.x0_c00207{left:0.000000pt;}
.x38_c00207{left:60.811987pt;}
.x1a_c00207{left:61.916387pt;}
.x1_c00207{left:70.666667pt;}
.x43_c00207{left:80.123587pt;}
.x39_c00207{left:81.073987pt;}
.x4a_c00207{left:90.758387pt;}
.x1b_c00207{left:100.601187pt;}
.x47_c00207{left:108.908387pt;}
.x5_c00207{left:109.902787pt;}
.x62_c00207{left:110.954387pt;}
.x3a_c00207{left:119.855587pt;}
.x25_c00207{left:129.240787pt;}
.x44_c00207{left:139.202387pt;}
.x63_c00207{left:140.429987pt;}
.x52_c00207{left:147.637187pt;}
.x5a_c00207{left:149.357587pt;}
.x45_c00207{left:158.557987pt;}
.x48_c00207{left:167.595587pt;}
.x6_c00207{left:168.713187pt;}
.x5d_c00207{left:177.416387pt;}
.x1c_c00207{left:178.665987pt;}
.x64_c00207{left:179.699987pt;}
.x3f_c00207{left:188.297587pt;}
.x68_c00207{left:189.203987pt;}
.x53_c00207{left:196.384787pt;}
.x7_c00207{left:197.656387pt;}
.x61_c00207{left:199.024787pt;}
.x2f_c00207{left:207.855587pt;}
.x1d_c00207{left:208.898387pt;}
.x5b_c00207{left:210.785987pt;}
.x8_c00207{left:218.032787pt;}
.x9_c00207{left:228.042787pt;}
.x6b_c00207{left:229.133987pt;}
.x40_c00207{left:236.341187pt;}
.x26_c00207{left:237.392787pt;}
.x1e_c00207{left:238.686387pt;}
.x30_c00207{left:246.923187pt;}
.x1f_c00207{left:256.554787pt;}
.x54_c00207{left:257.993587pt;}
.xa_c00207{left:267.207187pt;}
.x69_c00207{left:275.941187pt;}
.x57_c00207{left:277.274387pt;}
.xb_c00207{left:286.219587pt;}
.x4e_c00207{left:287.451587pt;}
.x27_c00207{left:289.110387pt;}
.x4b_c00207{left:295.543187pt;}
.x46_c00207{left:296.643187pt;}
.x41_c00207{left:304.769987pt;}
.x20_c00207{left:305.689587pt;}
.x5e_c00207{left:306.780787pt;}
.xc_c00207{left:314.828387pt;}
.x28_c00207{left:315.827187pt;}
.x21_c00207{left:325.014387pt;}
.x65_c00207{left:325.964787pt;}
.x6a_c00207{left:327.073587pt;}
.xd_c00207{left:335.319187pt;}
.x31_c00207{left:338.143987pt;}
.x3b_c00207{left:345.144387pt;}
.x42_c00207{left:346.081587pt;}
.xe_c00207{left:347.194787pt;}
.x29_c00207{left:355.277587pt;}
.xf_c00207{left:363.932387pt;}
.x3c_c00207{left:366.321587pt;}
.x10_c00207{left:374.738787pt;}
.x58_c00207{left:383.939187pt;}
.x11_c00207{left:393.641187pt;}
.x4f_c00207{left:394.560787pt;}
.x12_c00207{left:403.739187pt;}
.x55_c00207{left:404.949187pt;}
.x32_c00207{left:412.750387pt;}
.x5c_c00207{left:413.920787pt;}
.x13_c00207{left:423.389587pt;}
.x59_c00207{left:426.148387pt;}
.x2a_c00207{left:434.151987pt;}
.x33_c00207{left:443.031187pt;}
.x5f_c00207{left:443.928787pt;}
.x14_c00207{left:445.217987pt;}
.x2b_c00207{left:453.410787pt;}
.x4c_c00207{left:458.466387pt;}
.x34_c00207{left:462.685987pt;}
.x35_c00207{left:473.096387pt;}
.x22_c00207{left:482.631187pt;}
.x2c_c00207{left:490.414787pt;}
.x50_c00207{left:492.443187pt;}
.x66_c00207{left:494.260387pt;}
.x15_c00207{left:500.842787pt;}
.x51_c00207{left:501.863587pt;}
.x36_c00207{left:511.147587pt;}
.x4d_c00207{left:513.923987pt;}
.x16_c00207{left:521.113587pt;}
.x3d_c00207{left:530.797987pt;}
.x23_c00207{left:533.310387pt;}
.x17_c00207{left:540.288787pt;}
.x67_c00207{left:541.247987pt;}
.x37_c00207{left:550.699187pt;}
.x18_c00207{left:560.471587pt;}
.x2d_c00207{left:569.249587pt;}
.x60_c00207{left:570.393587pt;}
.x2_c00207{left:579.563187pt;}
.x3e_c00207{left:588.477587pt;}
.x3_c00207{left:589.467587pt;}
.x24_c00207{left:597.726387pt;}
.x2e_c00207{left:598.716387pt;}
.x6c_c00207{left:599.803187pt;}
.x49_c00207{left:607.313987pt;}
.x4_c00207{left:609.623987pt;}
.x6e_c00207{left:610.666787pt;}
.x19_c00207{left:618.542787pt;}
.x56_c00207{left:627.971987pt;}
.x6d_c00207{left:640.529587pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_103af842e9b5dcec8e15af10.woff2')format("woff");}.ff1_c00208{font-family:ff1_c00208;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00208;src:url('chunks/assets/font_16ff5a7bd3734efd090dccd8.woff2')format("woff");}.ff2_c00208{font-family:ff2_c00208;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00208;src:url('chunks/assets/font_d30ed712107b426a0b8173fa.woff2')format("woff");}.ff3_c00208{font-family:ff3_c00208;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00208;src:url('chunks/assets/font_7f8c87dbb0444dd977f49b44.woff2')format("woff");}.ff4_c00208{font-family:ff4_c00208;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3_c00208{transform:matrix(0.038691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.038691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.038691,0.000000,0.000000,0.250000,0,0);}
.m96_c00208{transform:matrix(0.064286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064286,0.000000,0.000000,0.250000,0,0);}
.m6_c00208{transform:matrix(0.077382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077382,0.000000,0.000000,0.250000,0,0);}
.m50_c00208{transform:matrix(0.124452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124452,0.000000,0.000000,0.250000,0,0);}
.m84_c00208{transform:matrix(0.125406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125406,0.000000,0.000000,0.250000,0,0);}
.m3a_c00208{transform:matrix(0.132686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132686,0.000000,0.000000,0.250000,0,0);}
.m1c_c00208{transform:matrix(0.134146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134146,0.000000,0.000000,0.250000,0,0);}
.m2_c00208{transform:matrix(0.136905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136905,0.000000,0.000000,0.250000,0,0);}
.m82_c00208{transform:matrix(0.139678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139678,0.000000,0.000000,0.250000,0,0);}
.m5_c00208{transform:matrix(0.148809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148809,0.000000,0.000000,0.250000,0,0);}
.m1b_c00208{transform:matrix(0.155488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155488,0.000000,0.000000,0.250000,0,0);}
.m61_c00208{transform:matrix(0.159723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159723,0.000000,0.000000,0.250000,0,0);}
.m1d_c00208{transform:matrix(0.164634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164634,0.000000,0.000000,0.250000,0,0);}
.m4_c00208{transform:matrix(0.166666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166666,0.000000,0.000000,0.250000,0,0);}
.m60_c00208{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);}
.m54_c00208{transform:matrix(0.167051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167051,0.000000,0.000000,0.250000,0,0);}
.m1f_c00208{transform:matrix(0.170731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170731,0.000000,0.000000,0.250000,0,0);}
.m1e_c00208{transform:matrix(0.173781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173781,0.000000,0.000000,0.250000,0,0);}
.mba_c00208{transform:matrix(0.175701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175701,0.000000,0.000000,0.250000,0,0);}
.m21_c00208{transform:matrix(0.176830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176830,0.000000,0.000000,0.250000,0,0);}
.m51_c00208{transform:matrix(0.178789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178789,0.000000,0.000000,0.250000,0,0);}
.m5e_c00208{transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);}
.m52_c00208{transform:matrix(0.181819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181819,0.000000,0.000000,0.250000,0,0);}
.m31_c00208{transform:matrix(0.182270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182270,0.000000,0.000000,0.250000,0,0);}
.mb_c00208{transform:matrix(0.182905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182905,0.000000,0.000000,0.250000,0,0);}
.m22_c00208{transform:matrix(0.182927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182927,0.000000,0.000000,0.250000,0,0);}
.maf_c00208{transform:matrix(0.183863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183863,0.000000,0.000000,0.250000,0,0);}
.m7_c00208{transform:matrix(0.184524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184524,0.000000,0.000000,0.250000,0,0);}
.m5d_c00208{transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);}
.m32_c00208{transform:matrix(0.194857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194857,0.000000,0.000000,0.250000,0,0);}
.m20_c00208{transform:matrix(0.195122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195122,0.000000,0.000000,0.250000,0,0);}
.m62_c00208{transform:matrix(0.197917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197917,0.000000,0.000000,0.250000,0,0);}
.m5b_c00208{transform:matrix(0.203449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203449,0.000000,0.000000,0.250000,0,0);}
.mae_c00208{transform:matrix(0.207801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207801,0.000000,0.000000,0.250000,0,0);}
.m94_c00208{transform:matrix(0.214155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214155,0.000000,0.000000,0.250000,0,0);}
.m5f_c00208{transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);}
.m92_c00208{transform:matrix(0.219089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219089,0.000000,0.000000,0.250000,0,0);}
.m95_c00208{transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);}
.m44_c00208{transform:matrix(0.231932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231932,0.000000,0.000000,0.250000,0,0);}
.m9e_c00208{transform:matrix(0.235863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235863,0.000000,0.000000,0.250000,0,0);}
.m68_c00208{transform:matrix(0.242148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242148,0.000000,0.000000,0.250000,0,0);}
.m1_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);}
.m2d_c00208{transform:matrix(0.250809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250809,0.000000,0.000000,0.250000,0,0);}
.m36_c00208{transform:matrix(0.251439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251439,0.000000,0.000000,0.250000,0,0);}
.m16_c00208{transform:matrix(0.253832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253832,0.000000,0.000000,0.250000,0,0);}
.m78_c00208{transform:matrix(0.260278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260278,0.000000,0.000000,0.250000,0,0);}
.m3f_c00208{transform:matrix(0.264926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264926,0.000000,0.000000,0.250000,0,0);}
.m37_c00208{transform:matrix(0.265008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265008,0.000000,0.000000,0.250000,0,0);}
.m6b_c00208{transform:matrix(0.267607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267607,0.000000,0.000000,0.250000,0,0);}
.m4a_c00208{transform:matrix(0.269540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269540,0.000000,0.000000,0.250000,0,0);}
.mb0_c00208{transform:matrix(0.269574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269574,0.000000,0.000000,0.250000,0,0);}
.ma6_c00208{transform:matrix(0.269924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269924,0.000000,0.000000,0.250000,0,0);}
.m6a_c00208{transform:matrix(0.271686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271686,0.000000,0.000000,0.250000,0,0);}
.mb6_c00208{transform:matrix(0.274050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274050,0.000000,0.000000,0.250000,0,0);}
.m15_c00208{transform:matrix(0.276122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276122,0.000000,0.000000,0.250000,0,0);}
.m55_c00208{transform:matrix(0.276862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276862,0.000000,0.000000,0.250000,0,0);}
.m8_c00208{transform:matrix(0.276864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276864,0.000000,0.000000,0.250000,0,0);}
.m98_c00208{transform:matrix(0.277261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277261,0.000000,0.000000,0.250000,0,0);}
.mb3_c00208{transform:matrix(0.277442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277442,0.000000,0.000000,0.250000,0,0);}
.m8f_c00208{transform:matrix(0.279298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279298,0.000000,0.000000,0.250000,0,0);}
.m59_c00208{transform:matrix(0.279716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279716,0.000000,0.000000,0.250000,0,0);}
.m2a_c00208{transform:matrix(0.281284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281284,0.000000,0.000000,0.250000,0,0);}
.m53_c00208{transform:matrix(0.281807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281807,0.000000,0.000000,0.250000,0,0);}
.m56_c00208{transform:matrix(0.282397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282397,0.000000,0.000000,0.250000,0,0);}
.ma0_c00208{transform:matrix(0.282472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282472,0.000000,0.000000,0.250000,0,0);}
.m97_c00208{transform:matrix(0.283517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283517,0.000000,0.000000,0.250000,0,0);}
.m7a_c00208{transform:matrix(0.284300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284300,0.000000,0.000000,0.250000,0,0);}
.ma9_c00208{transform:matrix(0.284477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284477,0.000000,0.000000,0.250000,0,0);}
.m2b_c00208{transform:matrix(0.284920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284920,0.000000,0.000000,0.250000,0,0);}
.mab_c00208{transform:matrix(0.285916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285916,0.000000,0.000000,0.250000,0,0);}
.mb9_c00208{transform:matrix(0.285981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285981,0.000000,0.000000,0.250000,0,0);}
.m9f_c00208{transform:matrix(0.286751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286751,0.000000,0.000000,0.250000,0,0);}
.m27_c00208{transform:matrix(0.286811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286811,0.000000,0.000000,0.250000,0,0);}
.m7e_c00208{transform:matrix(0.287495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287495,0.000000,0.000000,0.250000,0,0);}
.m67_c00208{transform:matrix(0.289226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289226,0.000000,0.000000,0.250000,0,0);}
.m65_c00208{transform:matrix(0.289489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289489,0.000000,0.000000,0.250000,0,0);}
.me_c00208{transform:matrix(0.289918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289918,0.000000,0.000000,0.250000,0,0);}
.mb1_c00208{transform:matrix(0.290661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290661,0.000000,0.000000,0.250000,0,0);}
.mad_c00208{transform:matrix(0.291695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291695,0.000000,0.000000,0.250000,0,0);}
.m80_c00208{transform:matrix(0.291696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291696,0.000000,0.000000,0.250000,0,0);}
.m18_c00208{transform:matrix(0.292059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292059,0.000000,0.000000,0.250000,0,0);}
.m74_c00208{transform:matrix(0.293389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293389,0.000000,0.000000,0.250000,0,0);}
.m83_c00208{transform:matrix(0.294921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294921,0.000000,0.000000,0.250000,0,0);}
.m0_c00208{transform:matrix(0.295340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295340,0.000000,0.000000,0.250000,0,0);}
.m93_c00208{transform:matrix(0.295588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295588,0.000000,0.000000,0.250000,0,0);}
.mb4_c00208{transform:matrix(0.295853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295853,0.000000,0.000000,0.250000,0,0);}
.m12_c00208{transform:matrix(0.295865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295865,0.000000,0.000000,0.250000,0,0);}
.m71_c00208{transform:matrix(0.296044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296044,0.000000,0.000000,0.250000,0,0);}
.m24_c00208{transform:matrix(0.296143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296143,0.000000,0.000000,0.250000,0,0);}
.m86_c00208{transform:matrix(0.296712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296712,0.000000,0.000000,0.250000,0,0);}
.m7c_c00208{transform:matrix(0.297088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297088,0.000000,0.000000,0.250000,0,0);}
.m72_c00208{transform:matrix(0.298148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298148,0.000000,0.000000,0.250000,0,0);}
.m10_c00208{transform:matrix(0.298401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298401,0.000000,0.000000,0.250000,0,0);}
.m4b_c00208{transform:matrix(0.299030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299030,0.000000,0.000000,0.250000,0,0);}
.ma3_c00208{transform:matrix(0.299030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299030,0.000000,0.000000,0.250000,0,0);}
.m4f_c00208{transform:matrix(0.299347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299347,0.000000,0.000000,0.250000,0,0);}
.m29_c00208{transform:matrix(0.299530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299530,0.000000,0.000000,0.250000,0,0);}
.m23_c00208{transform:matrix(0.300893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300893,0.000000,0.000000,0.250000,0,0);}
.m66_c00208{transform:matrix(0.301212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301212,0.000000,0.000000,0.250000,0,0);}
.m6d_c00208{transform:matrix(0.301230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301230,0.000000,0.000000,0.250000,0,0);}
.m77_c00208{transform:matrix(0.301309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301309,0.000000,0.000000,0.250000,0,0);}
.ma_c00208{transform:matrix(0.301630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301630,0.000000,0.000000,0.250000,0,0);}
.m6e_c00208{transform:matrix(0.303061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303061,0.000000,0.000000,0.250000,0,0);}
.m4c_c00208{transform:matrix(0.303472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303472,0.000000,0.000000,0.250000,0,0);}
.m63_c00208{transform:matrix(0.303799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303799,0.000000,0.000000,0.250000,0,0);}
.m47_c00208{transform:matrix(0.303932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303932,0.000000,0.000000,0.250000,0,0);}
.m11_c00208{transform:matrix(0.305050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305050,0.000000,0.000000,0.250000,0,0);}
.m25_c00208{transform:matrix(0.305869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305869,0.000000,0.000000,0.250000,0,0);}
.ma4_c00208{transform:matrix(0.306531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306531,0.000000,0.000000,0.250000,0,0);}
.m14_c00208{transform:matrix(0.307216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307216,0.000000,0.000000,0.250000,0,0);}
.md_c00208{transform:matrix(0.307236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307236,0.000000,0.000000,0.250000,0,0);}
.m4d_c00208{transform:matrix(0.308402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308402,0.000000,0.000000,0.250000,0,0);}
.m6c_c00208{transform:matrix(0.308688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308688,0.000000,0.000000,0.250000,0,0);}
.m8c_c00208{transform:matrix(0.310274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310274,0.000000,0.000000,0.250000,0,0);}
.ma5_c00208{transform:matrix(0.311309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311309,0.000000,0.000000,0.250000,0,0);}
.m4e_c00208{transform:matrix(0.312305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312305,0.000000,0.000000,0.250000,0,0);}
.m70_c00208{transform:matrix(0.313628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313628,0.000000,0.000000,0.250000,0,0);}
.mb2_c00208{transform:matrix(0.314148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314148,0.000000,0.000000,0.250000,0,0);}
.m2f_c00208{transform:matrix(0.314886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314886,0.000000,0.000000,0.250000,0,0);}
.m33_c00208{transform:matrix(0.316557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316557,0.000000,0.000000,0.250000,0,0);}
.m89_c00208{transform:matrix(0.318198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318198,0.000000,0.000000,0.250000,0,0);}
.mbc_c00208{transform:matrix(0.320291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320291,0.000000,0.000000,0.250000,0,0);}
.m9d_c00208{transform:matrix(0.320299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320299,0.000000,0.000000,0.250000,0,0);}
.m6f_c00208{transform:matrix(0.321739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321739,0.000000,0.000000,0.250000,0,0);}
.m8a_c00208{transform:matrix(0.321869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321869,0.000000,0.000000,0.250000,0,0);}
.m57_c00208{transform:matrix(0.322230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322230,0.000000,0.000000,0.250000,0,0);}
.m40_c00208{transform:matrix(0.323662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323662,0.000000,0.000000,0.250000,0,0);}
.m85_c00208{transform:matrix(0.325138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325138,0.000000,0.000000,0.250000,0,0);}
.m7b_c00208{transform:matrix(0.325314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325314,0.000000,0.000000,0.250000,0,0);}
.m9c_c00208{transform:matrix(0.325834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325834,0.000000,0.000000,0.250000,0,0);}
.m3c_c00208{transform:matrix(0.326528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326528,0.000000,0.000000,0.250000,0,0);}
.mbb_c00208{transform:matrix(0.326586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326586,0.000000,0.000000,0.250000,0,0);}
.m45_c00208{transform:matrix(0.327106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327106,0.000000,0.000000,0.250000,0,0);}
.m9a_c00208{transform:matrix(0.328326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328326,0.000000,0.000000,0.250000,0,0);}
.m8e_c00208{transform:matrix(0.329316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329316,0.000000,0.000000,0.250000,0,0);}
.m48_c00208{transform:matrix(0.329737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329737,0.000000,0.000000,0.250000,0,0);}
.m17_c00208{transform:matrix(0.329943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329943,0.000000,0.000000,0.250000,0,0);}
.m13_c00208{transform:matrix(0.330361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330361,0.000000,0.000000,0.250000,0,0);}
.m49_c00208{transform:matrix(0.330743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330743,0.000000,0.000000,0.250000,0,0);}
.mb8_c00208{transform:matrix(0.330845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330845,0.000000,0.000000,0.250000,0,0);}
.m43_c00208{transform:matrix(0.331416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331416,0.000000,0.000000,0.250000,0,0);}
.m99_c00208{transform:matrix(0.332834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332834,0.000000,0.000000,0.250000,0,0);}
.m41_c00208{transform:matrix(0.335320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335320,0.000000,0.000000,0.250000,0,0);}
.mb5_c00208{transform:matrix(0.335711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335711,0.000000,0.000000,0.250000,0,0);}
.mac_c00208{transform:matrix(0.336260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336260,0.000000,0.000000,0.250000,0,0);}
.m39_c00208{transform:matrix(0.337351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337351,0.000000,0.000000,0.250000,0,0);}
.m34_c00208{transform:matrix(0.339720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339720,0.000000,0.000000,0.250000,0,0);}
.m5c_c00208{transform:matrix(0.341832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341832,0.000000,0.000000,0.250000,0,0);}
.m9b_c00208{transform:matrix(0.342028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342028,0.000000,0.000000,0.250000,0,0);}
.m76_c00208{transform:matrix(0.342039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342039,0.000000,0.000000,0.250000,0,0);}
.m26_c00208{transform:matrix(0.342411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342411,0.000000,0.000000,0.250000,0,0);}
.m79_c00208{transform:matrix(0.342555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342555,0.000000,0.000000,0.250000,0,0);}
.mf_c00208{transform:matrix(0.344318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344318,0.000000,0.000000,0.250000,0,0);}
.ma2_c00208{transform:matrix(0.345634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345634,0.000000,0.000000,0.250000,0,0);}
.m81_c00208{transform:matrix(0.346235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346235,0.000000,0.000000,0.250000,0,0);}
.mb7_c00208{transform:matrix(0.348345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348345,0.000000,0.000000,0.250000,0,0);}
.ma1_c00208{transform:matrix(0.350155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350155,0.000000,0.000000,0.250000,0,0);}
.m3d_c00208{transform:matrix(0.351810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351810,0.000000,0.000000,0.250000,0,0);}
.m7f_c00208{transform:matrix(0.352336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352336,0.000000,0.000000,0.250000,0,0);}
.mc_c00208{transform:matrix(0.355985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355985,0.000000,0.000000,0.250000,0,0);}
.m35_c00208{transform:matrix(0.356639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356639,0.000000,0.000000,0.250000,0,0);}
.m7d_c00208{transform:matrix(0.359876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359876,0.000000,0.000000,0.250000,0,0);}
.m9_c00208{transform:matrix(0.359983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359983,0.000000,0.000000,0.250000,0,0);}
.m28_c00208{transform:matrix(0.362553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362553,0.000000,0.000000,0.250000,0,0);}
.m2c_c00208{transform:matrix(0.363124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363124,0.000000,0.000000,0.250000,0,0);}
.m19_c00208{transform:matrix(0.367402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367402,0.000000,0.000000,0.250000,0,0);}
.m58_c00208{transform:matrix(0.367566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367566,0.000000,0.000000,0.250000,0,0);}
.m5a_c00208{transform:matrix(0.369608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369608,0.000000,0.000000,0.250000,0,0);}
.m90_c00208{transform:matrix(0.373848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373848,0.000000,0.000000,0.250000,0,0);}
.maa_c00208{transform:matrix(0.374295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374295,0.000000,0.000000,0.250000,0,0);}
.m8d_c00208{transform:matrix(0.374468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374468,0.000000,0.000000,0.250000,0,0);}
.ma8_c00208{transform:matrix(0.376766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376766,0.000000,0.000000,0.250000,0,0);}
.m3b_c00208{transform:matrix(0.377232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377232,0.000000,0.000000,0.250000,0,0);}
.m91_c00208{transform:matrix(0.378420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378420,0.000000,0.000000,0.250000,0,0);}
.m3e_c00208{transform:matrix(0.379838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379838,0.000000,0.000000,0.250000,0,0);}
.ma7_c00208{transform:matrix(0.380183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380183,0.000000,0.000000,0.250000,0,0);}
.m8b_c00208{transform:matrix(0.382532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382532,0.000000,0.000000,0.250000,0,0);}
.m69_c00208{transform:matrix(0.388565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388565,0.000000,0.000000,0.250000,0,0);}
.m42_c00208{transform:matrix(0.390408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390408,0.000000,0.000000,0.250000,0,0);}
.m30_c00208{transform:matrix(0.390843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390843,0.000000,0.000000,0.250000,0,0);}
.m88_c00208{transform:matrix(0.391257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391257,0.000000,0.000000,0.250000,0,0);}
.m38_c00208{transform:matrix(0.394248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394248,0.000000,0.000000,0.250000,0,0);}
.m2e_c00208{transform:matrix(0.395683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395683,0.000000,0.000000,0.250000,0,0);}
.m64_c00208{transform:matrix(0.398217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398217,0.000000,0.000000,0.250000,0,0);}
.m1a_c00208{transform:matrix(0.405591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405591,0.000000,0.000000,0.250000,0,0);}
.m46_c00208{transform:matrix(0.424349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424349,0.000000,0.000000,0.250000,0,0);}
.m75_c00208{transform:matrix(0.430941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430941,0.000000,0.000000,0.250000,0,0);}
.m73_c00208{transform:matrix(0.446203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446203,0.000000,0.000000,0.250000,0,0);}
.m87_c00208{transform:matrix(0.460894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460894,0.000000,0.000000,0.250000,0,0);}
.v0_c00208{vertical-align:0.000000px;}
.v2_c00208{vertical-align:34.214400px;}
.v1_c00208{vertical-align:57.004200px;}
.ls7_c00208{letter-spacing:-2.564100px;}
.ls12_c00208{letter-spacing:-1.677067px;}
.lsb_c00208{letter-spacing:-0.893772px;}
.ls8_c00208{letter-spacing:-0.449541px;}
.ls10_c00208{letter-spacing:-0.315592px;}
.ls4_c00208{letter-spacing:0.000000px;}
.ls9_c00208{letter-spacing:0.163944px;}
.ls1_c00208{letter-spacing:0.695970px;}
.ls0_c00208{letter-spacing:1.157508px;}
.lsf_c00208{letter-spacing:1.553112px;}
.lse_c00208{letter-spacing:2.161170px;}
.ls3_c00208{letter-spacing:3.603610px;}
.lsa_c00208{letter-spacing:3.623400px;}
.lsc_c00208{letter-spacing:3.643200px;}
.ls6_c00208{letter-spacing:3.663000px;}
.ls2_c00208{letter-spacing:9.067014px;}
.ls11_c00208{letter-spacing:47.044800px;}
.ls14_c00208{letter-spacing:49.896198px;}
.ls13_c00208{letter-spacing:51.321798px;}
.lsd_c00208{letter-spacing:58.449798px;}
.ls5_c00208{letter-spacing:59.875398px;}
.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;}
}
.ws6_c00208{word-spacing:-20.476170px;}
.ws3_c00208{word-spacing:-19.472508px;}
.ws5_c00208{word-spacing:-19.010970px;}
.ws0_c00208{word-spacing:-18.315000px;}
.ws1_c00208{word-spacing:-17.421228px;}
.ws9_c00208{word-spacing:-2.857140px;}
.wse_c00208{word-spacing:0.000000px;}
.ws2_c00208{word-spacing:2.417580px;}
.wsc_c00208{word-spacing:3.663000px;}
.ws7_c00208{word-spacing:3.956040px;}
.wsb_c00208{word-spacing:4.029300px;}
.wsd_c00208{word-spacing:5.054940px;}
.ws4_c00208{word-spacing:8.358379px;}
.ws8_c00208{word-spacing:9.157500px;}
.wsa_c00208{word-spacing:10.622700px;}
._1e_c00208{margin-left:-13.846140px;}
._0_c00208{margin-left:-8.864460px;}
._26_c00208{margin-left:-7.619040px;}
._25_c00208{margin-left:-5.901093px;}
._20_c00208{margin-left:-4.468860px;}
._1d_c00208{margin-left:-2.007324px;}
._13_c00208{width:2.051280px;}
._2_c00208{width:3.663000px;}
._3_c00208{width:4.688640px;}
._1_c00208{width:6.666660px;}
._9_c00208{width:8.571420px;}
._c_c00208{width:9.992664px;}
._5_c00208{width:11.135520px;}
._6_c00208{width:13.176504px;}
._b_c00208{width:14.578740px;}
._d_c00208{width:16.566660px;}
._1a_c00208{width:19.697040px;}
._23_c00208{width:20.897316px;}
._1f_c00208{width:22.219857px;}
._15_c00208{width:23.369940px;}
._7_c00208{width:24.835140px;}
._17_c00208{width:26.593380px;}
._1b_c00208{width:27.619020px;}
._f_c00208{width:31.072536px;}
._16_c00208{width:32.499720px;}
._e_c00208{width:33.846120px;}
._11_c00208{width:35.604360px;}
._1c_c00208{width:36.721080px;}
._4_c00208{width:38.065896px;}
._8_c00208{width:39.576240px;}
._12_c00208{width:41.453280px;}
._10_c00208{width:42.710580px;}
._18_c00208{width:44.542080px;}
._22_c00208{width:46.153800px;}
._14_c00208{width:48.808980px;}
._21_c00208{width:50.988960px;}
._19_c00208{width:63.882720px;}
._24_c00208{width:183.077136px;}
._a_c00208{width:359.021916px;}
._27_c00208{width:1484.071380px;}
.fc0_c00208{color:transparent;}
.fs19_c00208{font-size:21.186000px;}
.fsc_c00208{font-size:22.176000px;}
.fs1a_c00208{font-size:22.374000px;}
.fs2_c00208{font-size:27.720000px;}
.fs1b_c00208{font-size:38.808000px;}
.fs18_c00208{font-size:39.204000px;}
.fs13_c00208{font-size:39.600000px;}
.fs11_c00208{font-size:45.144000px;}
.fse_c00208{font-size:47.044800px;}
.fsf_c00208{font-size:47.916198px;}
.fs17_c00208{font-size:49.896198px;}
.fsd_c00208{font-size:50.094000px;}
.fs1_c00208{font-size:50.688000px;}
.fs14_c00208{font-size:51.321798px;}
.fsa_c00208{font-size:58.449798px;}
.fs3_c00208{font-size:59.875398px;}
.fs1c_c00208{font-size:62.568000px;}
.fs10_c00208{font-size:64.548000px;}
.fs5_c00208{font-size:68.112198px;}
.fs0_c00208{font-size:72.072198px;}
.fs7_c00208{font-size:72.468000px;}
.fs8_c00208{font-size:72.864000px;}
.fs4_c00208{font-size:73.260000px;}
.fs16_c00208{font-size:73.656198px;}
.fs9_c00208{font-size:75.240000px;}
.fsb_c00208{font-size:76.032198px;}
.fs12_c00208{font-size:89.892198px;}
.fs6_c00208{font-size:91.080000px;}
.fs15_c00208{font-size:91.872198px;}
.y0_c00208{bottom:0.000000px;}
.y2d_c00208{bottom:14.880735px;}
.y2c_c00208{bottom:55.148985px;}
.y2b_c00208{bottom:58.000185px;}
.y1_c00208{bottom:76.500000px;}
.y2a_c00208{bottom:91.150335px;}
.y29_c00208{bottom:119.305935px;}
.y28_c00208{bottom:123.939135px;}
.y27_c00208{bottom:147.456585px;}
.y25_c00208{bottom:210.544335px;}
.y26_c00208{bottom:214.464735px;}
.y24_c00208{bottom:243.328185px;}
.y23_c00208{bottom:275.047785px;}
.y22_c00208{bottom:308.197935px;}
.y21_c00208{bottom:322.810335px;}
.y20_c00208{bottom:340.268985px;}
.y1f_c00208{bottom:371.280735px;}
.y1d_c00208{bottom:372.344985px;}
.y1e_c00208{bottom:381.967785px;}
.y1c_c00208{bottom:404.777385px;}
.y1b_c00208{bottom:437.214735px;}
.y1a_c00208{bottom:469.998585px;}
.y19_c00208{bottom:493.164585px;}
.y18_c00208{bottom:501.361785px;}
.y17_c00208{bottom:515.979135px;}
.y16_c00208{bottom:535.576185px;}
.y15_c00208{bottom:547.337385px;}
.y14_c00208{bottom:565.875135px;}
.y13_c00208{bottom:597.946185px;}
.y12_c00208{bottom:628.957935px;}
.y11_c00208{bottom:644.995935px;}
.y10_c00208{bottom:661.390335px;}
.yf_c00208{bottom:661.395780px;}
.ye_c00208{bottom:695.956185px;}
.yd_c00208{bottom:728.037135px;}
.yc_c00208{bottom:761.533785px;}
.yb_c00208{bottom:785.412585px;}
.ya_c00208{bottom:795.040335px;}
.y9_c00208{bottom:795.041820px;}
.y8_c00208{bottom:827.111385px;}
.y7_c00208{bottom:827.472735px;}
.y6_c00208{bottom:891.624735px;}
.y5_c00208{bottom:925.482735px;}
.y4_c00208{bottom:1026.695385px;}
.y3_c00208{bottom:1068.750585px;}
.y2_c00208{bottom:1075.522185px;}
.h1c_c00208{height:21.958857px;}
.h1b_c00208{height:22.096336px;}
.he_c00208{height:23.128875px;}
.h4_c00208{height:28.911094px;}
.hf_c00208{height:31.331837px;}
.h19_c00208{height:33.230868px;}
.h15_c00208{height:34.180317px;}
.hc_c00208{height:38.927565px;}
.h5_c00208{height:39.877015px;}
.h1d_c00208{height:40.475531px;}
.h14_c00208{height:41.301563px;}
.h12_c00208{height:47.083781px;}
.h10_c00208{height:49.975097px;}
.h3_c00208{height:52.866000px;}
.h1e_c00208{height:65.256469px;}
.h11_c00208{height:67.321547px;}
.h2_c00208{height:70.734921px;}
.h7_c00208{height:71.038894px;}
.h9_c00208{height:71.123379px;}
.ha_c00208{height:71.512031px;}
.h6_c00208{height:71.900684px;}
.h1a_c00208{height:72.690982px;}
.h1f_c00208{height:73.843945px;}
.h17_c00208{height:76.821113px;}
.hd_c00208{height:79.299207px;}
.h16_c00208{height:90.167538px;}
.h8_c00208{height:91.791563px;}
.h13_c00208{height:93.754753px;}
.h18_c00208{height:95.819832px;}
.hb_c00208{height:135.477169px;}
.h1_c00208{height:1110.000000px;}
.h0_c00208{height:1263.000000px;}
.w1_c00208{width:733.500000px;}
.w0_c00208{width:892.500000px;}
.x0_c00208{left:0.000000px;}
.x64_c00208{left:57.365085px;}
.x34_c00208{left:65.903835px;}
.x5_c00208{left:67.022535px;}
.x6_c00208{left:78.427335px;}
.x1_c00208{left:79.500000px;}
.x7_c00208{left:89.119335px;}
.x3e_c00208{left:99.420285px;}
.x8_c00208{left:100.524135px;}
.x9_c00208{left:111.928935px;}
.x19_c00208{left:113.408985px;}
.x57_c00208{left:120.452835px;}
.xa_c00208{left:121.908135px;}
.x35_c00208{left:123.125835px;}
.x2d_c00208{left:131.877435px;}
.x52_c00208{left:134.025735px;}
.xb_c00208{left:144.024735px;}
.x4b_c00208{left:145.207785px;}
.x21_c00208{left:153.974235px;}
.x2e_c00208{left:155.211735px;}
.xc_c00208{left:163.928685px;}
.x36_c00208{left:165.883935px;}
.x5f_c00208{left:166.953135px;}
.xd_c00208{left:177.630285px;}
.x5b_c00208{left:187.119435px;}
.x53_c00208{left:188.475735px;}
.xe_c00208{left:200.078535px;}
.x6e_c00208{left:201.098235px;}
.x37_c00208{left:210.839835px;}
.x6b_c00208{left:220.621035px;}
.x22_c00208{left:222.526785px;}
.x70_c00208{left:233.010885px;}
.xf_c00208{left:234.322635px;}
.x38_c00208{left:243.074235px;}
.x4c_c00208{left:244.623585px;}
.x69_c00208{left:254.840385px;}
.x23_c00208{left:256.082835px;}
.x60_c00208{left:265.171035px;}
.x10_c00208{left:266.824335px;}
.x4_c00208{left:277.541085px;}
.x65_c00208{left:279.402285px;}
.x1a_c00208{left:288.663735px;}
.x54_c00208{left:294.885885px;}
.x24_c00208{left:299.553735px;}
.x6f_c00208{left:300.598185px;}
.x1b_c00208{left:310.557585px;}
.x4d_c00208{left:321.635685px;}
.x5e_c00208{left:322.709835px;}
.x25_c00208{left:325.056135px;}
.x6c_c00208{left:331.783185px;}
.x11_c00208{left:333.411735px;}
.x66_c00208{left:335.401635px;}
.x12_c00208{left:344.811585px;}
.x26_c00208{left:355.345185px;}
.x27_c00208{left:366.393585px;}
.x42_c00208{left:377.471685px;}
.x5c_c00208{left:387.059835px;}
.x13_c00208{left:389.020035px;}
.x43_c00208{left:399.702135px;}
.x28_c00208{left:409.879335px;}
.x14_c00208{left:411.067335px;}
.x2f_c00208{left:421.561335px;}
.x68_c00208{left:423.863085px;}
.x3_c00208{left:431.302935px;}
.x4e_c00208{left:432.500835px;}
.x44_c00208{left:433.842285px;}
.x4f_c00208{left:442.301835px;}
.x15_c00208{left:443.687835px;}
.x29_c00208{left:454.780785px;}
.x72_c00208{left:455.939085px;}
.x2a_c00208{left:465.477735px;}
.x30_c00208{left:466.695435px;}
.x3f_c00208{left:477.714135px;}
.x58_c00208{left:488.044785px;}
.x1c_c00208{left:489.148635px;}
.x67_c00208{left:499.479285px;}
.x39_c00208{left:502.449285px;}
.x40_c00208{left:510.884085px;}
.x3a_c00208{left:512.928435px;}
.x3b_c00208{left:519.155535px;}
.x1d_c00208{left:521.026635px;}
.x59_c00208{left:522.313635px;}
.x31_c00208{left:532.614585px;}
.x45_c00208{left:542.415585px;}
.x50_c00208{left:543.653085px;}
.x6d_c00208{left:553.142235px;}
.x6a_c00208{left:554.181735px;}
.x1e_c00208{left:555.439035px;}
.x32_c00208{left:564.725235px;}
.x46_c00208{left:565.739985px;}
.x51_c00208{left:576.476535px;}
.x16_c00208{left:578.501085px;}
.x41_c00208{left:587.911035px;}
.x47_c00208{left:598.845585px;}
.x5a_c00208{left:602.409585px;}
.x3c_c00208{left:609.809835px;}
.x2b_c00208{left:620.313735px;}
.x1f_c00208{left:621.729435px;}
.x61_c00208{left:631.748235px;}
.x17_c00208{left:632.758035px;}
.x48_c00208{left:641.885835px;}
.x5d_c00208{left:643.123335px;}
.x62_c00208{left:651.454185px;}
.x2_c00208{left:654.463785px;}
.x20_c00208{left:665.368635px;}
.x63_c00208{left:671.422485px;}
.x49_c00208{left:676.268535px;}
.x18_c00208{left:686.821935px;}
.x2c_c00208{left:691.252185px;}
.x4a_c00208{left:692.415435px;}
.x56_c00208{left:693.647985px;}
.x71_c00208{left:695.563635px;}
.x3d_c00208{left:697.088235px;}
.x33_c00208{left:698.979135px;}
.x55_c00208{left:710.022585px;}
@media print{
.v0_c00208{vertical-align:0.000000pt;}
.v2_c00208{vertical-align:30.412800pt;}
.v1_c00208{vertical-align:50.670400pt;}
.ls7_c00208{letter-spacing:-2.279200pt;}
.ls12_c00208{letter-spacing:-1.490726pt;}
.lsb_c00208{letter-spacing:-0.794464pt;}
.ls8_c00208{letter-spacing:-0.399592pt;}
.ls10_c00208{letter-spacing:-0.280526pt;}
.ls4_c00208{letter-spacing:0.000000pt;}
.ls9_c00208{letter-spacing:0.145728pt;}
.ls1_c00208{letter-spacing:0.618640pt;}
.ls0_c00208{letter-spacing:1.028896pt;}
.lsf_c00208{letter-spacing:1.380544pt;}
.lse_c00208{letter-spacing:1.921040pt;}
.ls3_c00208{letter-spacing:3.203209pt;}
.lsa_c00208{letter-spacing:3.220800pt;}
.lsc_c00208{letter-spacing:3.238400pt;}
.ls6_c00208{letter-spacing:3.256000pt;}
.ls2_c00208{letter-spacing:8.059568pt;}
.ls11_c00208{letter-spacing:41.817600pt;}
.ls14_c00208{letter-spacing:44.352176pt;}
.ls13_c00208{letter-spacing:45.619376pt;}
.lsd_c00208{letter-spacing:51.955376pt;}
.ls5_c00208{letter-spacing:53.222576pt;}
.ws6_c00208{word-spacing:-18.201040pt;}
.ws3_c00208{word-spacing:-17.308896pt;}
.ws5_c00208{word-spacing:-16.898640pt;}
.ws0_c00208{word-spacing:-16.280000pt;}
.ws1_c00208{word-spacing:-15.485536pt;}
.ws9_c00208{word-spacing:-2.539680pt;}
.wse_c00208{word-spacing:0.000000pt;}
.ws2_c00208{word-spacing:2.148960pt;}
.wsc_c00208{word-spacing:3.256000pt;}
.ws7_c00208{word-spacing:3.516480pt;}
.wsb_c00208{word-spacing:3.581600pt;}
.wsd_c00208{word-spacing:4.493280pt;}
.ws4_c00208{word-spacing:7.429670pt;}
.ws8_c00208{word-spacing:8.140000pt;}
.wsa_c00208{word-spacing:9.442400pt;}
._1e_c00208{margin-left:-12.307680pt;}
._0_c00208{margin-left:-7.879520pt;}
._26_c00208{margin-left:-6.772480pt;}
._25_c00208{margin-left:-5.245416pt;}
._20_c00208{margin-left:-3.972320pt;}
._1d_c00208{margin-left:-1.784288pt;}
._13_c00208{width:1.823360pt;}
._2_c00208{width:3.256000pt;}
._3_c00208{width:4.167680pt;}
._1_c00208{width:5.925920pt;}
._9_c00208{width:7.619040pt;}
._c_c00208{width:8.882368pt;}
._5_c00208{width:9.898240pt;}
._6_c00208{width:11.712448pt;}
._b_c00208{width:12.958880pt;}
._d_c00208{width:14.725920pt;}
._1a_c00208{width:17.508480pt;}
._23_c00208{width:18.575392pt;}
._1f_c00208{width:19.750984pt;}
._15_c00208{width:20.773280pt;}
._7_c00208{width:22.075680pt;}
._17_c00208{width:23.638560pt;}
._1b_c00208{width:24.550240pt;}
._f_c00208{width:27.620032pt;}
._16_c00208{width:28.888640pt;}
._e_c00208{width:30.085440pt;}
._11_c00208{width:31.648320pt;}
._1c_c00208{width:32.640960pt;}
._4_c00208{width:33.836352pt;}
._8_c00208{width:35.178880pt;}
._12_c00208{width:36.847360pt;}
._10_c00208{width:37.964960pt;}
._18_c00208{width:39.592960pt;}
._22_c00208{width:41.025600pt;}
._14_c00208{width:43.385760pt;}
._21_c00208{width:45.323520pt;}
._19_c00208{width:56.784640pt;}
._24_c00208{width:162.735232pt;}
._a_c00208{width:319.130592pt;}
._27_c00208{width:1319.174560pt;}
.fs19_c00208{font-size:18.832000pt;}
.fsc_c00208{font-size:19.712000pt;}
.fs1a_c00208{font-size:19.888000pt;}
.fs2_c00208{font-size:24.640000pt;}
.fs1b_c00208{font-size:34.496000pt;}
.fs18_c00208{font-size:34.848000pt;}
.fs13_c00208{font-size:35.200000pt;}
.fs11_c00208{font-size:40.128000pt;}
.fse_c00208{font-size:41.817600pt;}
.fsf_c00208{font-size:42.592176pt;}
.fs17_c00208{font-size:44.352176pt;}
.fsd_c00208{font-size:44.528000pt;}
.fs1_c00208{font-size:45.056000pt;}
.fs14_c00208{font-size:45.619376pt;}
.fsa_c00208{font-size:51.955376pt;}
.fs3_c00208{font-size:53.222576pt;}
.fs1c_c00208{font-size:55.616000pt;}
.fs10_c00208{font-size:57.376000pt;}
.fs5_c00208{font-size:60.544176pt;}
.fs0_c00208{font-size:64.064176pt;}
.fs7_c00208{font-size:64.416000pt;}
.fs8_c00208{font-size:64.768000pt;}
.fs4_c00208{font-size:65.120000pt;}
.fs16_c00208{font-size:65.472176pt;}
.fs9_c00208{font-size:66.880000pt;}
.fsb_c00208{font-size:67.584176pt;}
.fs12_c00208{font-size:79.904176pt;}
.fs6_c00208{font-size:80.960000pt;}
.fs15_c00208{font-size:81.664176pt;}
.y0_c00208{bottom:0.000000pt;}
.y2d_c00208{bottom:13.227320pt;}
.y2c_c00208{bottom:49.021320pt;}
.y2b_c00208{bottom:51.555720pt;}
.y1_c00208{bottom:68.000000pt;}
.y2a_c00208{bottom:81.022520pt;}
.y29_c00208{bottom:106.049720pt;}
.y28_c00208{bottom:110.168120pt;}
.y27_c00208{bottom:131.072520pt;}
.y25_c00208{bottom:187.150520pt;}
.y26_c00208{bottom:190.635320pt;}
.y24_c00208{bottom:216.291720pt;}
.y23_c00208{bottom:244.486920pt;}
.y22_c00208{bottom:273.953720pt;}
.y21_c00208{bottom:286.942520pt;}
.y20_c00208{bottom:302.461320pt;}
.y1f_c00208{bottom:330.027320pt;}
.y1d_c00208{bottom:330.973320pt;}
.y1e_c00208{bottom:339.526920pt;}
.y1c_c00208{bottom:359.802120pt;}
.y1b_c00208{bottom:388.635320pt;}
.y1a_c00208{bottom:417.776520pt;}
.y19_c00208{bottom:438.368520pt;}
.y18_c00208{bottom:445.654920pt;}
.y17_c00208{bottom:458.648120pt;}
.y16_c00208{bottom:476.067720pt;}
.y15_c00208{bottom:486.522120pt;}
.y14_c00208{bottom:503.000120pt;}
.y13_c00208{bottom:531.507720pt;}
.y12_c00208{bottom:559.073720pt;}
.y11_c00208{bottom:573.329720pt;}
.y10_c00208{bottom:587.902520pt;}
.yf_c00208{bottom:587.907360pt;}
.ye_c00208{bottom:618.627720pt;}
.yd_c00208{bottom:647.144120pt;}
.yc_c00208{bottom:676.918920pt;}
.yb_c00208{bottom:698.144520pt;}
.ya_c00208{bottom:706.702520pt;}
.y9_c00208{bottom:706.703840pt;}
.y8_c00208{bottom:735.210120pt;}
.y7_c00208{bottom:735.531320pt;}
.y6_c00208{bottom:792.555320pt;}
.y5_c00208{bottom:822.651320pt;}
.y4_c00208{bottom:912.618120pt;}
.y3_c00208{bottom:950.000520pt;}
.y2_c00208{bottom:956.019720pt;}
.h1c_c00208{height:19.518984pt;}
.h1b_c00208{height:19.641188pt;}
.he_c00208{height:20.559000pt;}
.h4_c00208{height:25.698750pt;}
.hf_c00208{height:27.850522pt;}
.h19_c00208{height:29.538549pt;}
.h15_c00208{height:30.382504pt;}
.hc_c00208{height:34.602280pt;}
.h5_c00208{height:35.446236pt;}
.h1d_c00208{height:35.978250pt;}
.h14_c00208{height:36.712500pt;}
.h12_c00208{height:41.852250pt;}
.h10_c00208{height:44.422309pt;}
.h3_c00208{height:46.992000pt;}
.h1e_c00208{height:58.005750pt;}
.h11_c00208{height:59.841375pt;}
.h2_c00208{height:62.875485pt;}
.h7_c00208{height:63.145684pt;}
.h9_c00208{height:63.220781pt;}
.ha_c00208{height:63.566250pt;}
.h6_c00208{height:63.911719pt;}
.h1a_c00208{height:64.614206pt;}
.h1f_c00208{height:65.639063pt;}
.h17_c00208{height:68.285434pt;}
.hd_c00208{height:70.488184pt;}
.h16_c00208{height:80.148923pt;}
.h8_c00208{height:81.592500pt;}
.h13_c00208{height:83.337559pt;}
.h18_c00208{height:85.173184pt;}
.hb_c00208{height:120.424150pt;}
.h1_c00208{height:986.666667pt;}
.h0_c00208{height:1122.666667pt;}
.w1_c00208{width:652.000000pt;}
.w0_c00208{width:793.333333pt;}
.x0_c00208{left:0.000000pt;}
.x64_c00208{left:50.991187pt;}
.x34_c00208{left:58.581187pt;}
.x5_c00208{left:59.575587pt;}
.x6_c00208{left:69.713187pt;}
.x1_c00208{left:70.666667pt;}
.x7_c00208{left:79.217187pt;}
.x3e_c00208{left:88.373587pt;}
.x8_c00208{left:89.354787pt;}
.x9_c00208{left:99.492387pt;}
.x19_c00208{left:100.807987pt;}
.x57_c00208{left:107.069187pt;}
.xa_c00208{left:108.362787pt;}
.x35_c00208{left:109.445187pt;}
.x2d_c00208{left:117.224387pt;}
.x52_c00208{left:119.133987pt;}
.xb_c00208{left:128.021987pt;}
.x4b_c00208{left:129.073587pt;}
.x21_c00208{left:136.865987pt;}
.x2e_c00208{left:137.965987pt;}
.xc_c00208{left:145.714387pt;}
.x36_c00208{left:147.452387pt;}
.x5f_c00208{left:148.402787pt;}
.xd_c00208{left:157.893587pt;}
.x5b_c00208{left:166.328387pt;}
.x53_c00208{left:167.533987pt;}
.xe_c00208{left:177.847587pt;}
.x6e_c00208{left:178.753987pt;}
.x37_c00208{left:187.413187pt;}
.x6b_c00208{left:196.107587pt;}
.x22_c00208{left:197.801587pt;}
.x70_c00208{left:207.120787pt;}
.xf_c00208{left:208.286787pt;}
.x38_c00208{left:216.065987pt;}
.x4c_c00208{left:217.443187pt;}
.x69_c00208{left:226.524787pt;}
.x23_c00208{left:227.629187pt;}
.x60_c00208{left:235.707587pt;}
.x10_c00208{left:237.177187pt;}
.x4_c00208{left:246.703187pt;}
.x65_c00208{left:248.357587pt;}
.x1a_c00208{left:256.589987pt;}
.x54_c00208{left:262.120787pt;}
.x24_c00208{left:266.269987pt;}
.x6f_c00208{left:267.198387pt;}
.x1b_c00208{left:276.051187pt;}
.x4d_c00208{left:285.898387pt;}
.x5e_c00208{left:286.853187pt;}
.x25_c00208{left:288.938787pt;}
.x6c_c00208{left:294.918387pt;}
.x11_c00208{left:296.365987pt;}
.x66_c00208{left:298.134787pt;}
.x12_c00208{left:306.499187pt;}
.x26_c00208{left:315.862387pt;}
.x27_c00208{left:325.683187pt;}
.x42_c00208{left:335.530387pt;}
.x5c_c00208{left:344.053187pt;}
.x13_c00208{left:345.795587pt;}
.x43_c00208{left:355.290787pt;}
.x28_c00208{left:364.337187pt;}
.x14_c00208{left:365.393187pt;}
.x2f_c00208{left:374.721187pt;}
.x68_c00208{left:376.767187pt;}
.x3_c00208{left:383.380387pt;}
.x4e_c00208{left:384.445187pt;}
.x44_c00208{left:385.637587pt;}
.x4f_c00208{left:393.157187pt;}
.x15_c00208{left:394.389187pt;}
.x29_c00208{left:404.249587pt;}
.x72_c00208{left:405.279187pt;}
.x2a_c00208{left:413.757987pt;}
.x30_c00208{left:414.840387pt;}
.x3f_c00208{left:424.634787pt;}
.x58_c00208{left:433.817587pt;}
.x1c_c00208{left:434.798787pt;}
.x67_c00208{left:443.981587pt;}
.x39_c00208{left:446.621587pt;}
.x40_c00208{left:454.119187pt;}
.x3a_c00208{left:455.936387pt;}
.x3b_c00208{left:461.471587pt;}
.x1d_c00208{left:463.134787pt;}
.x59_c00208{left:464.278787pt;}
.x31_c00208{left:473.435187pt;}
.x45_c00208{left:482.147187pt;}
.x50_c00208{left:483.247187pt;}
.x6d_c00208{left:491.681987pt;}
.x6a_c00208{left:492.605987pt;}
.x1e_c00208{left:493.723587pt;}
.x32_c00208{left:501.977987pt;}
.x46_c00208{left:502.879987pt;}
.x51_c00208{left:512.423587pt;}
.x16_c00208{left:514.223187pt;}
.x41_c00208{left:522.587587pt;}
.x47_c00208{left:532.307187pt;}
.x5a_c00208{left:535.475187pt;}
.x3c_c00208{left:542.053187pt;}
.x2b_c00208{left:551.389987pt;}
.x1f_c00208{left:552.648387pt;}
.x61_c00208{left:561.553987pt;}
.x17_c00208{left:562.451587pt;}
.x48_c00208{left:570.565187pt;}
.x5d_c00208{left:571.665187pt;}
.x62_c00208{left:579.070387pt;}
.x2_c00208{left:581.745587pt;}
.x20_c00208{left:591.438787pt;}
.x63_c00208{left:596.819987pt;}
.x49_c00208{left:601.127587pt;}
.x18_c00208{left:610.508387pt;}
.x2c_c00208{left:614.446387pt;}
.x4a_c00208{left:615.480387pt;}
.x56_c00208{left:616.575987pt;}
.x71_c00208{left:618.278787pt;}
.x3d_c00208{left:619.633987pt;}
.x33_c00208{left:621.314787pt;}
.x55_c00208{left:631.131187pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b9cfe4f7b226403847c5735a.woff2')format("woff");}.ff1_c00209{font-family:ff1_c00209;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00209;src:url('chunks/assets/font_8f4dcf2c253eb191a75e6e01.woff2')format("woff");}.ff2_c00209{font-family:ff2_c00209;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00209;src:url('chunks/assets/font_994b44f90bc1aa30be68968d.woff2')format("woff");}.ff3_c00209{font-family:ff3_c00209;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m69_c00209{transform:matrix(0.105042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105042,0.000000,0.000000,0.250000,0,0);}
.m9c_c00209{transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);}
.m2c_c00209{transform:matrix(0.128157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128157,0.000000,0.000000,0.250000,0,0);}
.m2_c00209{transform:matrix(0.204204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204204,0.000000,0.000000,0.250000,0,0);}
.m4b_c00209{transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);}
.m7b_c00209{transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);}
.m32_c00209{transform:matrix(0.231136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231136,0.000000,0.000000,0.250000,0,0);}
.m27_c00209{transform:matrix(0.237326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237326,0.000000,0.000000,0.250000,0,0);}
.m12_c00209{transform:matrix(0.248170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248170,0.000000,0.000000,0.250000,0,0);}
.m0_c00209{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00209{transform:matrix(0.250440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250440,0.000000,0.000000,0.250000,0,0);}
.m46_c00209{transform:matrix(0.250558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250558,0.000000,0.000000,0.250000,0,0);}
.m77_c00209{transform:matrix(0.250825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250825,0.000000,0.000000,0.250000,0,0);}
.m3b_c00209{transform:matrix(0.251896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251896,0.000000,0.000000,0.250000,0,0);}
.m1e_c00209{transform:matrix(0.252353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252353,0.000000,0.000000,0.250000,0,0);}
.m87_c00209{transform:matrix(0.252566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252566,0.000000,0.000000,0.250000,0,0);}
.m5b_c00209{transform:matrix(0.252911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252911,0.000000,0.000000,0.250000,0,0);}
.mf_c00209{transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);}
.m44_c00209{transform:matrix(0.253228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253228,0.000000,0.000000,0.250000,0,0);}
.m64_c00209{transform:matrix(0.253436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253436,0.000000,0.000000,0.250000,0,0);}
.m79_c00209{transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);}
.m70_c00209{transform:matrix(0.253959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253959,0.000000,0.000000,0.250000,0,0);}
.m76_c00209{transform:matrix(0.254064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254064,0.000000,0.000000,0.250000,0,0);}
.m54_c00209{transform:matrix(0.255476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255476,0.000000,0.000000,0.250000,0,0);}
.md_c00209{transform:matrix(0.255631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255631,0.000000,0.000000,0.250000,0,0);}
.m1c_c00209{transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);}
.m6a_c00209{transform:matrix(0.256348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256348,0.000000,0.000000,0.250000,0,0);}
.m2e_c00209{transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);}
.m13_c00209{transform:matrix(0.256752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256752,0.000000,0.000000,0.250000,0,0);}
.m36_c00209{transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);}
.m8a_c00209{transform:matrix(0.257675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257675,0.000000,0.000000,0.250000,0,0);}
.m29_c00209{transform:matrix(0.257859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257859,0.000000,0.000000,0.250000,0,0);}
.m74_c00209{transform:matrix(0.258135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258135,0.000000,0.000000,0.250000,0,0);}
.m89_c00209{transform:matrix(0.258407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258407,0.000000,0.000000,0.250000,0,0);}
.m7a_c00209{transform:matrix(0.258788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258788,0.000000,0.000000,0.250000,0,0);}
.m67_c00209{transform:matrix(0.258985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258985,0.000000,0.000000,0.250000,0,0);}
.m80_c00209{transform:matrix(0.260353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260353,0.000000,0.000000,0.250000,0,0);}
.m2d_c00209{transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);}
.m1f_c00209{transform:matrix(0.261958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261958,0.000000,0.000000,0.250000,0,0);}
.m7c_c00209{transform:matrix(0.262020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262020,0.000000,0.000000,0.250000,0,0);}
.m43_c00209{transform:matrix(0.262285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262285,0.000000,0.000000,0.250000,0,0);}
.m68_c00209{transform:matrix(0.264942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264942,0.000000,0.000000,0.250000,0,0);}
.m65_c00209{transform:matrix(0.265678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265678,0.000000,0.000000,0.250000,0,0);}
.m48_c00209{transform:matrix(0.265995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265995,0.000000,0.000000,0.250000,0,0);}
.m83_c00209{transform:matrix(0.267754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267754,0.000000,0.000000,0.250000,0,0);}
.m5_c00209{transform:matrix(0.267938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267938,0.000000,0.000000,0.250000,0,0);}
.m6b_c00209{transform:matrix(0.270802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270802,0.000000,0.000000,0.250000,0,0);}
.m19_c00209{transform:matrix(0.271582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271582,0.000000,0.000000,0.250000,0,0);}
.m60_c00209{transform:matrix(0.271634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271634,0.000000,0.000000,0.250000,0,0);}
.m1b_c00209{transform:matrix(0.271978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271978,0.000000,0.000000,0.250000,0,0);}
.m96_c00209{transform:matrix(0.272043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272043,0.000000,0.000000,0.250000,0,0);}
.m20_c00209{transform:matrix(0.272258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272258,0.000000,0.000000,0.250000,0,0);}
.m8_c00209{transform:matrix(0.272325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272325,0.000000,0.000000,0.250000,0,0);}
.m28_c00209{transform:matrix(0.272619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272619,0.000000,0.000000,0.250000,0,0);}
.m15_c00209{transform:matrix(0.272977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272977,0.000000,0.000000,0.250000,0,0);}
.m91_c00209{transform:matrix(0.272984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272984,0.000000,0.000000,0.250000,0,0);}
.mc_c00209{transform:matrix(0.274195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274195,0.000000,0.000000,0.250000,0,0);}
.m4f_c00209{transform:matrix(0.274364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274364,0.000000,0.000000,0.250000,0,0);}
.m2a_c00209{transform:matrix(0.274474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274474,0.000000,0.000000,0.250000,0,0);}
.m7e_c00209{transform:matrix(0.274521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274521,0.000000,0.000000,0.250000,0,0);}
.m37_c00209{transform:matrix(0.274757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274757,0.000000,0.000000,0.250000,0,0);}
.m5f_c00209{transform:matrix(0.275278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275278,0.000000,0.000000,0.250000,0,0);}
.m2f_c00209{transform:matrix(0.275369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275369,0.000000,0.000000,0.250000,0,0);}
.m4a_c00209{transform:matrix(0.275467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275467,0.000000,0.000000,0.250000,0,0);}
.m86_c00209{transform:matrix(0.277298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277298,0.000000,0.000000,0.250000,0,0);}
.m88_c00209{transform:matrix(0.277610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277610,0.000000,0.000000,0.250000,0,0);}
.m11_c00209{transform:matrix(0.279297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279297,0.000000,0.000000,0.250000,0,0);}
.m4c_c00209{transform:matrix(0.280250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00209{transform:matrix(0.280468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280468,0.000000,0.000000,0.250000,0,0);}
.m8b_c00209{transform:matrix(0.282017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282017,0.000000,0.000000,0.250000,0,0);}
.m7d_c00209{transform:matrix(0.282729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282729,0.000000,0.000000,0.250000,0,0);}
.m6e_c00209{transform:matrix(0.282930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282930,0.000000,0.000000,0.250000,0,0);}
.ma_c00209{transform:matrix(0.283398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283398,0.000000,0.000000,0.250000,0,0);}
.m38_c00209{transform:matrix(0.283481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283481,0.000000,0.000000,0.250000,0,0);}
.m50_c00209{transform:matrix(0.284366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284366,0.000000,0.000000,0.250000,0,0);}
.m57_c00209{transform:matrix(0.284620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284620,0.000000,0.000000,0.250000,0,0);}
.m71_c00209{transform:matrix(0.284872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284872,0.000000,0.000000,0.250000,0,0);}
.m23_c00209{transform:matrix(0.285436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285436,0.000000,0.000000,0.250000,0,0);}
.m8c_c00209{transform:matrix(0.285823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285823,0.000000,0.000000,0.250000,0,0);}
.m62_c00209{transform:matrix(0.287300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287300,0.000000,0.000000,0.250000,0,0);}
.m99_c00209{transform:matrix(0.287821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287821,0.000000,0.000000,0.250000,0,0);}
.m47_c00209{transform:matrix(0.288886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288886,0.000000,0.000000,0.250000,0,0);}
.m82_c00209{transform:matrix(0.288921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288921,0.000000,0.000000,0.250000,0,0);}
.m25_c00209{transform:matrix(0.289400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289400,0.000000,0.000000,0.250000,0,0);}
.m1_c00209{transform:matrix(0.289529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289529,0.000000,0.000000,0.250000,0,0);}
.m4e_c00209{transform:matrix(0.290099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290099,0.000000,0.000000,0.250000,0,0);}
.m3d_c00209{transform:matrix(0.290349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290349,0.000000,0.000000,0.250000,0,0);}
.m56_c00209{transform:matrix(0.290414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290414,0.000000,0.000000,0.250000,0,0);}
.m3e_c00209{transform:matrix(0.290667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290667,0.000000,0.000000,0.250000,0,0);}
.m9b_c00209{transform:matrix(0.290735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290735,0.000000,0.000000,0.250000,0,0);}
.m4_c00209{transform:matrix(0.290835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290835,0.000000,0.000000,0.250000,0,0);}
.m41_c00209{transform:matrix(0.290837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290837,0.000000,0.000000,0.250000,0,0);}
.m72_c00209{transform:matrix(0.291048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291048,0.000000,0.000000,0.250000,0,0);}
.m3_c00209{transform:matrix(0.291263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291263,0.000000,0.000000,0.250000,0,0);}
.m61_c00209{transform:matrix(0.291665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291665,0.000000,0.000000,0.250000,0,0);}
.m6f_c00209{transform:matrix(0.292544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292544,0.000000,0.000000,0.250000,0,0);}
.m6_c00209{transform:matrix(0.292546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292546,0.000000,0.000000,0.250000,0,0);}
.m7f_c00209{transform:matrix(0.292984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292984,0.000000,0.000000,0.250000,0,0);}
.m3f_c00209{transform:matrix(0.293328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293328,0.000000,0.000000,0.250000,0,0);}
.m3a_c00209{transform:matrix(0.293458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293458,0.000000,0.000000,0.250000,0,0);}
.m45_c00209{transform:matrix(0.293667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293667,0.000000,0.000000,0.250000,0,0);}
.m18_c00209{transform:matrix(0.294234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294234,0.000000,0.000000,0.250000,0,0);}
.m1a_c00209{transform:matrix(0.294342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294342,0.000000,0.000000,0.250000,0,0);}
.m78_c00209{transform:matrix(0.296203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296203,0.000000,0.000000,0.250000,0,0);}
.m4d_c00209{transform:matrix(0.296595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296595,0.000000,0.000000,0.250000,0,0);}
.m39_c00209{transform:matrix(0.297142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297142,0.000000,0.000000,0.250000,0,0);}
.m9a_c00209{transform:matrix(0.297733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297733,0.000000,0.000000,0.250000,0,0);}
.m40_c00209{transform:matrix(0.297961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297961,0.000000,0.000000,0.250000,0,0);}
.m17_c00209{transform:matrix(0.298533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298533,0.000000,0.000000,0.250000,0,0);}
.m95_c00209{transform:matrix(0.298863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298863,0.000000,0.000000,0.250000,0,0);}
.m8f_c00209{transform:matrix(0.299125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299125,0.000000,0.000000,0.250000,0,0);}
.m14_c00209{transform:matrix(0.300383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300383,0.000000,0.000000,0.250000,0,0);}
.m63_c00209{transform:matrix(0.301608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301608,0.000000,0.000000,0.250000,0,0);}
.m73_c00209{transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00209{transform:matrix(0.302588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302588,0.000000,0.000000,0.250000,0,0);}
.m92_c00209{transform:matrix(0.302862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302862,0.000000,0.000000,0.250000,0,0);}
.m84_c00209{transform:matrix(0.302949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302949,0.000000,0.000000,0.250000,0,0);}
.m35_c00209{transform:matrix(0.303648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303648,0.000000,0.000000,0.250000,0,0);}
.m55_c00209{transform:matrix(0.305717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305717,0.000000,0.000000,0.250000,0,0);}
.m98_c00209{transform:matrix(0.305744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305744,0.000000,0.000000,0.250000,0,0);}
.m5a_c00209{transform:matrix(0.306506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306506,0.000000,0.000000,0.250000,0,0);}
.m93_c00209{transform:matrix(0.306885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306885,0.000000,0.000000,0.250000,0,0);}
.m6c_c00209{transform:matrix(0.307110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307110,0.000000,0.000000,0.250000,0,0);}
.m75_c00209{transform:matrix(0.308562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308562,0.000000,0.000000,0.250000,0,0);}
.m52_c00209{transform:matrix(0.309154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309154,0.000000,0.000000,0.250000,0,0);}
.m97_c00209{transform:matrix(0.309161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309161,0.000000,0.000000,0.250000,0,0);}
.m21_c00209{transform:matrix(0.310854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310854,0.000000,0.000000,0.250000,0,0);}
.m51_c00209{transform:matrix(0.313355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313355,0.000000,0.000000,0.250000,0,0);}
.m90_c00209{transform:matrix(0.314374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314374,0.000000,0.000000,0.250000,0,0);}
.me_c00209{transform:matrix(0.314412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314412,0.000000,0.000000,0.250000,0,0);}
.m24_c00209{transform:matrix(0.314459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314459,0.000000,0.000000,0.250000,0,0);}
.m8e_c00209{transform:matrix(0.314681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314681,0.000000,0.000000,0.250000,0,0);}
.m66_c00209{transform:matrix(0.315977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315977,0.000000,0.000000,0.250000,0,0);}
.m9_c00209{transform:matrix(0.318677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318677,0.000000,0.000000,0.250000,0,0);}
.m2b_c00209{transform:matrix(0.318893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318893,0.000000,0.000000,0.250000,0,0);}
.mb_c00209{transform:matrix(0.319017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319017,0.000000,0.000000,0.250000,0,0);}
.m3c_c00209{transform:matrix(0.320282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320282,0.000000,0.000000,0.250000,0,0);}
.m59_c00209{transform:matrix(0.320679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320679,0.000000,0.000000,0.250000,0,0);}
.m81_c00209{transform:matrix(0.321647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321647,0.000000,0.000000,0.250000,0,0);}
.m30_c00209{transform:matrix(0.321828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321828,0.000000,0.000000,0.250000,0,0);}
.m49_c00209{transform:matrix(0.322124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322124,0.000000,0.000000,0.250000,0,0);}
.m58_c00209{transform:matrix(0.322243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322243,0.000000,0.000000,0.250000,0,0);}
.m31_c00209{transform:matrix(0.324195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324195,0.000000,0.000000,0.250000,0,0);}
.m22_c00209{transform:matrix(0.324715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324715,0.000000,0.000000,0.250000,0,0);}
.m6d_c00209{transform:matrix(0.325725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325725,0.000000,0.000000,0.250000,0,0);}
.m1d_c00209{transform:matrix(0.326105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326105,0.000000,0.000000,0.250000,0,0);}
.m26_c00209{transform:matrix(0.326810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326810,0.000000,0.000000,0.250000,0,0);}
.m53_c00209{transform:matrix(0.328117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328117,0.000000,0.000000,0.250000,0,0);}
.m8d_c00209{transform:matrix(0.331714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331714,0.000000,0.000000,0.250000,0,0);}
.m94_c00209{transform:matrix(0.331929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331929,0.000000,0.000000,0.250000,0,0);}
.m85_c00209{transform:matrix(0.337925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337925,0.000000,0.000000,0.250000,0,0);}
.m42_c00209{transform:matrix(0.349219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349219,0.000000,0.000000,0.250000,0,0);}
.m33_c00209{transform:matrix(0.354201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354201,0.000000,0.000000,0.250000,0,0);}
.m16_c00209{transform:matrix(0.358891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358891,0.000000,0.000000,0.250000,0,0);}
.m7_c00209{transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);}
.m10_c00209{transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);}
.m34_c00209{transform:matrix(0.683621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.683621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.683621,0.000000,0.000000,0.250000,0,0);}
.v4_c00209{vertical-align:-41.322600px;}
.v2_c00209{vertical-align:-4.276800px;}
.v0_c00209{vertical-align:0.000000px;}
.v1_c00209{vertical-align:11.394900px;}
.v3_c00209{vertical-align:15.677640px;}
.ls9_c00209{letter-spacing:-2.855167px;}
.ls14_c00209{letter-spacing:-2.550240px;}
.ls5_c00209{letter-spacing:0.000000px;}
.lsc_c00209{letter-spacing:0.179468px;}
.ls4_c00209{letter-spacing:0.603664px;}
.ls12_c00209{letter-spacing:0.750501px;}
.lsa_c00209{letter-spacing:0.758659px;}
.ls11_c00209{letter-spacing:1.681416px;}
.ls13_c00209{letter-spacing:1.713100px;}
.lsd_c00209{letter-spacing:2.049310px;}
.ls0_c00209{letter-spacing:3.360951px;}
.ls3_c00209{letter-spacing:3.638298px;}
.ls6_c00209{letter-spacing:3.801610px;}
.lsf_c00209{letter-spacing:3.817766px;}
.lse_c00209{letter-spacing:3.980918px;}
.ls8_c00209{letter-spacing:4.078810px;}
.ls1_c00209{letter-spacing:6.845781px;}
.ls2_c00209{letter-spacing:16.397964px;}
.ls15_c00209{letter-spacing:31.363200px;}
.ls10_c00209{letter-spacing:51.321798px;}
.ls7_c00209{letter-spacing:52.747398px;}
.lsb_c00209{letter-spacing:62.726400px;}
.sc__c00209{text-shadow:none;}
.sc0_c00209{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00209{-webkit-text-stroke:0px transparent;}
.sc0_c00209{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00209{word-spacing:-20.394050px;}
.ws1_c00209{word-spacing:0.000000px;}
._0_c00209{width:1.550054px;}
._3_c00209{width:3.833984px;}
._1_c00209{width:14.700128px;}
._4_c00209{width:495.012672px;}
._2_c00209{width:1688.056801px;}
.fc0_c00209{color:transparent;}
.fs1_c00209{font-size:22.176000px;}
.fse_c00209{font-size:25.542000px;}
.fs11_c00209{font-size:27.720000px;}
.fs0_c00209{font-size:28.314000px;}
.fs13_c00209{font-size:31.363200px;}
.fs12_c00209{font-size:32.868000px;}
.fsa_c00209{font-size:33.660000px;}
.fs10_c00209{font-size:34.848000px;}
.fs6_c00209{font-size:40.986198px;}
.fs7_c00209{font-size:42.372000px;}
.fs14_c00209{font-size:44.352000px;}
.fs8_c00209{font-size:51.321798px;}
.fs3_c00209{font-size:52.747398px;}
.fs9_c00209{font-size:56.628000px;}
.fs5_c00209{font-size:62.726400px;}
.fsd_c00209{font-size:72.864000px;}
.fs2_c00209{font-size:76.032198px;}
.fsb_c00209{font-size:76.428000px;}
.fsc_c00209{font-size:77.220000px;}
.fs4_c00209{font-size:81.576198px;}
.fsf_c00209{font-size:83.556198px;}
.y28_c00209{bottom:-1.513665px;}
.y0_c00209{bottom:0.000000px;}
.y27_c00209{bottom:8.816985px;}
.y1_c00209{bottom:76.500000px;}
.y3_c00209{bottom:82.596735px;}
.y26_c00209{bottom:131.779935px;}
.y25_c00209{bottom:143.184735px;}
.y24_c00209{bottom:156.010185px;}
.y23_c00209{bottom:161.004735px;}
.y22_c00209{bottom:180.601785px;}
.y21_c00209{bottom:193.437135px;}
.y20_c00209{bottom:225.864585px;}
.y1f_c00209{bottom:257.940585px;}
.y1e_c00209{bottom:289.308735px;}
.y1d_c00209{bottom:321.023385px;}
.y1c_c00209{bottom:352.030185px;}
.y2_c00209{bottom:353.817135px;}
.y1b_c00209{bottom:378.760185px;}
.y1a_c00209{bottom:387.670185px;}
.y19_c00209{bottom:413.687385px;}
.y18_c00209{bottom:445.763385px;}
.y17_c00209{bottom:477.487935px;}
.y16_c00209{bottom:509.563935px;}
.y12_c00209{bottom:572.641785px;}
.y11_c00209{bottom:604.004985px;}
.y10_c00209{bottom:635.368185px;}
.yf_c00209{bottom:667.092735px;}
.ye_c00209{bottom:694.886985px;}
.yd_c00209{bottom:695.248335px;}
.yc_c00209{bottom:698.099535px;}
.yb_c00209{bottom:730.526985px;}
.ya_c00209{bottom:762.251535px;}
.y9_c00209{bottom:824.977935px;}
.y29_c00209{bottom:829.962585px;}
.y8_c00209{bottom:856.336185px;}
.y7_c00209{bottom:888.060735px;}
.y6_c00209{bottom:919.062585px;}
.y5_c00209{bottom:951.494985px;}
.y15_c00209{bottom:976.091535px;}
.y14_c00209{bottom:981.076185px;}
.y13_c00209{bottom:986.070735px;}
.y4_c00209{bottom:1077.660585px;}
.h13_c00209{height:20.887891px;}
.h3_c00209{height:23.128875px;}
.hf_c00209{height:26.639508px;}
.h11_c00209{height:28.911094px;}
.h2_c00209{height:29.530617px;}
.hc_c00209{height:33.035449px;}
.ha_c00209{height:34.180317px;}
.h12_c00209{height:34.280297px;}
.h5_c00209{height:35.129767px;}
.h9_c00209{height:40.225712px;}
.h7_c00209{height:41.775782px;}
.h14_c00209{height:46.257750px;}
.h8_c00209{height:55.593512px;}
.hb_c00209{height:59.061234px;}
.h4_c00209{height:74.621444px;}
.hd_c00209{height:75.009902px;}
.he_c00209{height:75.994875px;}
.h6_c00209{height:80.062577px;}
.h10_c00209{height:82.005839px;}
.h1_c00209{height:1110.000000px;}
.h0_c00209{height:1263.000000px;}
.w1_c00209{width:775.500000px;}
.w0_c00209{width:892.500000px;}
.x0_c00209{left:0.000000px;}
.x3_c00209{left:19.148235px;}
.x1_c00209{left:58.500000px;}
.x2_c00209{left:72.519135px;}
.x30_c00209{left:84.349635px;}
.x47_c00209{left:85.839585px;}
.x17_c00209{left:86.903835px;}
.x5_c00209{left:88.017585px;}
.x63_c00209{left:94.348635px;}
.x52_c00209{left:108.713535px;}
.x40_c00209{left:117.950235px;}
.x5e_c00209{left:119.083785px;}
.x4b_c00209{left:130.498485px;}
.x22_c00209{left:141.007335px;}
.xe_c00209{left:142.343835px;}
.x38_c00209{left:152.535885px;}
.x5c_c00209{left:163.341735px;}
.x31_c00209{left:165.485085px;}
.xf_c00209{left:174.929685px;}
.x32_c00209{left:187.032435px;}
.x55_c00209{left:189.804435px;}
.x5d_c00209{left:195.605835px;}
.x6_c00209{left:197.457135px;}
.x49_c00209{left:207.718485px;}
.x33_c00209{left:209.104485px;}
.x41_c00209{left:217.707585px;}
.x18_c00209{left:219.692535px;}
.x34_c00209{left:222.855585px;}
.x4c_c00209{left:229.473735px;}
.x39_c00209{left:230.716185px;}
.x1d_c00209{left:242.120985px;}
.x4d_c00209{left:251.560635px;}
.x7_c00209{left:252.798135px;}
.x29_c00209{left:254.104935px;}
.x56_c00209{left:262.609035px;}
.x35_c00209{left:263.846535px;}
.x1e_c00209{left:264.905835px;}
.x44_c00209{left:275.191935px;}
.x23_c00209{left:286.606635px;}
.x8_c00209{left:297.249135px;}
.x10_c00209{left:308.139135px;}
.x19_c00209{left:319.063785px;}
.x58_c00209{left:329.755785px;}
.x5f_c00209{left:339.274635px;}
.x3a_c00209{left:340.309185px;}
.x11_c00209{left:342.259485px;}
.x9_c00209{left:352.228785px;}
.x59_c00209{left:361.683285px;}
.x36_c00209{left:363.544485px;}
.x24_c00209{left:373.434585px;}
.x45_c00209{left:374.716635px;}
.x42_c00209{left:385.279935px;}
.x1f_c00209{left:386.453085px;}
.x2a_c00209{left:407.144085px;}
.x46_c00209{left:408.450885px;}
.x12_c00209{left:419.246835px;}
.x25_c00209{left:429.904185px;}
.x3b_c00209{left:441.219885px;}
.x20_c00209{left:451.139685px;}
.x2b_c00209{left:453.357285px;}
.x37_c00209{left:461.876235px;}
.x26_c00209{left:462.900885px;}
.x53_c00209{left:464.841285px;}
.x3c_c00209{left:474.112635px;}
.x2c_c00209{left:485.532285px;}
.x4e_c00209{left:495.348135px;}
.x60_c00209{left:496.882635px;}
.x1a_c00209{left:506.396535px;}
.x13_c00209{left:507.653835px;}
.x5a_c00209{left:517.944885px;}
.x1b_c00209{left:528.973485px;}
.x4f_c00209{left:530.334735px;}
.x14_c00209{left:540.021885px;}
.xa_c00209{left:541.496985px;}
.xb_c00209{left:562.480035px;}
.x2d_c00209{left:573.172035px;}
.x15_c00209{left:574.275885px;}
.x61_c00209{left:577.983435px;}
.x3d_c00209{left:585.680685px;}
.xc_c00209{left:596.278635px;}
.x2e_c00209{left:606.886485px;}
.x3e_c00209{left:617.227035px;}
.x27_c00209{left:627.725985px;}
.x54_c00209{left:631.750335px;}
.x4_c00209{left:639.813885px;}
.x4a_c00209{left:651.980985px;}
.x5b_c00209{left:660.361335px;}
.x57_c00209{left:671.795835px;}
.xd_c00209{left:673.355085px;}
.x1c_c00209{left:684.056985px;}
.x21_c00209{left:685.061835px;}
.x16_c00209{left:694.204485px;}
.x50_c00209{left:700.144485px;}
.x62_c00209{left:701.629485px;}
.x2f_c00209{left:706.881435px;}
.x51_c00209{left:708.217935px;}
.x43_c00209{left:716.672535px;}
.x3f_c00209{left:718.157535px;}
.x28_c00209{left:727.720935px;}
.x48_c00209{left:753.421335px;}
.x64_c00209{left:766.137885px;}
@media print{
.v4_c00209{vertical-align:-36.731200pt;}
.v2_c00209{vertical-align:-3.801600pt;}
.v0_c00209{vertical-align:0.000000pt;}
.v1_c00209{vertical-align:10.128800pt;}
.v3_c00209{vertical-align:13.935680pt;}
.ls9_c00209{letter-spacing:-2.537926pt;}
.ls14_c00209{letter-spacing:-2.266880pt;}
.ls5_c00209{letter-spacing:0.000000pt;}
.lsc_c00209{letter-spacing:0.159527pt;}
.ls4_c00209{letter-spacing:0.536590pt;}
.ls12_c00209{letter-spacing:0.667112pt;}
.lsa_c00209{letter-spacing:0.674363pt;}
.ls11_c00209{letter-spacing:1.494592pt;}
.ls13_c00209{letter-spacing:1.522756pt;}
.lsd_c00209{letter-spacing:1.821609pt;}
.ls0_c00209{letter-spacing:2.987512pt;}
.ls3_c00209{letter-spacing:3.234043pt;}
.ls6_c00209{letter-spacing:3.379209pt;}
.lsf_c00209{letter-spacing:3.393570pt;}
.lse_c00209{letter-spacing:3.538594pt;}
.ls8_c00209{letter-spacing:3.625609pt;}
.ls1_c00209{letter-spacing:6.085138pt;}
.ls2_c00209{letter-spacing:14.575968pt;}
.ls15_c00209{letter-spacing:27.878400pt;}
.ls10_c00209{letter-spacing:45.619376pt;}
.ls7_c00209{letter-spacing:46.886576pt;}
.lsb_c00209{letter-spacing:55.756800pt;}
.ws0_c00209{word-spacing:-18.128044pt;}
.ws1_c00209{word-spacing:0.000000pt;}
._0_c00209{width:1.377826pt;}
._3_c00209{width:3.407986pt;}
._1_c00209{width:13.066781pt;}
._4_c00209{width:440.011264pt;}
._2_c00209{width:1500.494934pt;}
.fs1_c00209{font-size:19.712000pt;}
.fse_c00209{font-size:22.704000pt;}
.fs11_c00209{font-size:24.640000pt;}
.fs0_c00209{font-size:25.168000pt;}
.fs13_c00209{font-size:27.878400pt;}
.fs12_c00209{font-size:29.216000pt;}
.fsa_c00209{font-size:29.920000pt;}
.fs10_c00209{font-size:30.976000pt;}
.fs6_c00209{font-size:36.432176pt;}
.fs7_c00209{font-size:37.664000pt;}
.fs14_c00209{font-size:39.424000pt;}
.fs8_c00209{font-size:45.619376pt;}
.fs3_c00209{font-size:46.886576pt;}
.fs9_c00209{font-size:50.336000pt;}
.fs5_c00209{font-size:55.756800pt;}
.fsd_c00209{font-size:64.768000pt;}
.fs2_c00209{font-size:67.584176pt;}
.fsb_c00209{font-size:67.936000pt;}
.fsc_c00209{font-size:68.640000pt;}
.fs4_c00209{font-size:72.512176pt;}
.fsf_c00209{font-size:74.272176pt;}
.y28_c00209{bottom:-1.345480pt;}
.y0_c00209{bottom:0.000000pt;}
.y27_c00209{bottom:7.837320pt;}
.y1_c00209{bottom:68.000000pt;}
.y3_c00209{bottom:73.419320pt;}
.y26_c00209{bottom:117.137720pt;}
.y25_c00209{bottom:127.275320pt;}
.y24_c00209{bottom:138.675720pt;}
.y23_c00209{bottom:143.115320pt;}
.y22_c00209{bottom:160.534920pt;}
.y21_c00209{bottom:171.944120pt;}
.y20_c00209{bottom:200.768520pt;}
.y1f_c00209{bottom:229.280520pt;}
.y1e_c00209{bottom:257.163320pt;}
.y1d_c00209{bottom:285.354120pt;}
.y1c_c00209{bottom:312.915720pt;}
.y2_c00209{bottom:314.504120pt;}
.y1b_c00209{bottom:336.675720pt;}
.y1a_c00209{bottom:344.595720pt;}
.y19_c00209{bottom:367.722120pt;}
.y18_c00209{bottom:396.234120pt;}
.y17_c00209{bottom:424.433720pt;}
.y16_c00209{bottom:452.945720pt;}
.y12_c00209{bottom:509.014920pt;}
.y11_c00209{bottom:536.893320pt;}
.y10_c00209{bottom:564.771720pt;}
.yf_c00209{bottom:592.971320pt;}
.ye_c00209{bottom:617.677320pt;}
.yd_c00209{bottom:617.998520pt;}
.yc_c00209{bottom:620.532920pt;}
.yb_c00209{bottom:649.357320pt;}
.ya_c00209{bottom:677.556920pt;}
.y9_c00209{bottom:733.313720pt;}
.y29_c00209{bottom:737.744520pt;}
.y8_c00209{bottom:761.187720pt;}
.y7_c00209{bottom:789.387320pt;}
.y6_c00209{bottom:816.944520pt;}
.y5_c00209{bottom:845.773320pt;}
.y15_c00209{bottom:867.636920pt;}
.y14_c00209{bottom:872.067720pt;}
.y13_c00209{bottom:876.507320pt;}
.y4_c00209{bottom:957.920520pt;}
.h13_c00209{height:18.567014pt;}
.h3_c00209{height:20.559000pt;}
.hf_c00209{height:23.679563pt;}
.h11_c00209{height:25.698750pt;}
.h2_c00209{height:26.249438pt;}
.hc_c00209{height:29.364844pt;}
.ha_c00209{height:30.382504pt;}
.h12_c00209{height:30.471375pt;}
.h5_c00209{height:31.226460pt;}
.h9_c00209{height:35.756188pt;}
.h7_c00209{height:37.134029pt;}
.h14_c00209{height:41.118000pt;}
.h8_c00209{height:49.416455pt;}
.hb_c00209{height:52.498875pt;}
.h4_c00209{height:66.330173pt;}
.hd_c00209{height:66.675469pt;}
.he_c00209{height:67.551000pt;}
.h6_c00209{height:71.166735pt;}
.h10_c00209{height:72.894079pt;}
.h1_c00209{height:986.666667pt;}
.h0_c00209{height:1122.666667pt;}
.w1_c00209{width:689.333333pt;}
.w0_c00209{width:793.333333pt;}
.x0_c00209{left:0.000000pt;}
.x3_c00209{left:17.020653pt;}
.x1_c00209{left:52.000000pt;}
.x2_c00209{left:64.461453pt;}
.x30_c00209{left:74.977453pt;}
.x47_c00209{left:76.301853pt;}
.x17_c00209{left:77.247853pt;}
.x5_c00209{left:78.237853pt;}
.x63_c00209{left:83.865453pt;}
.x52_c00209{left:96.634253pt;}
.x40_c00209{left:104.844653pt;}
.x5e_c00209{left:105.852253pt;}
.x4b_c00209{left:115.998653pt;}
.x22_c00209{left:125.339853pt;}
.xe_c00209{left:126.527853pt;}
.x38_c00209{left:135.587453pt;}
.x5c_c00209{left:145.192653pt;}
.x31_c00209{left:147.097853pt;}
.xf_c00209{left:155.493053pt;}
.x32_c00209{left:166.251053pt;}
.x55_c00209{left:168.715053pt;}
.x5d_c00209{left:173.871853pt;}
.x6_c00209{left:175.517453pt;}
.x49_c00209{left:184.638653pt;}
.x33_c00209{left:185.870653pt;}
.x41_c00209{left:193.517853pt;}
.x18_c00209{left:195.282253pt;}
.x34_c00209{left:198.093853pt;}
.x4c_c00209{left:203.976653pt;}
.x39_c00209{left:205.081053pt;}
.x1d_c00209{left:215.218653pt;}
.x4d_c00209{left:223.609453pt;}
.x7_c00209{left:224.709453pt;}
.x29_c00209{left:225.871053pt;}
.x56_c00209{left:233.430253pt;}
.x35_c00209{left:234.530253pt;}
.x1e_c00209{left:235.471853pt;}
.x44_c00209{left:244.615053pt;}
.x23_c00209{left:254.761453pt;}
.x8_c00209{left:264.221453pt;}
.x10_c00209{left:273.901453pt;}
.x19_c00209{left:283.612253pt;}
.x58_c00209{left:293.116253pt;}
.x5f_c00209{left:301.577453pt;}
.x3a_c00209{left:302.497053pt;}
.x11_c00209{left:304.230653pt;}
.x9_c00209{left:313.092253pt;}
.x59_c00209{left:321.496253pt;}
.x36_c00209{left:323.150653pt;}
.x24_c00209{left:331.941853pt;}
.x45_c00209{left:333.081453pt;}
.x42_c00209{left:342.471053pt;}
.x1f_c00209{left:343.513853pt;}
.x2a_c00209{left:361.905853pt;}
.x46_c00209{left:363.067453pt;}
.x12_c00209{left:372.663853pt;}
.x25_c00209{left:382.137053pt;}
.x3b_c00209{left:392.195453pt;}
.x20_c00209{left:401.013053pt;}
.x2b_c00209{left:402.984253pt;}
.x37_c00209{left:410.556653pt;}
.x26_c00209{left:411.467453pt;}
.x53_c00209{left:413.192253pt;}
.x3c_c00209{left:421.433453pt;}
.x2c_c00209{left:431.584253pt;}
.x4e_c00209{left:440.309453pt;}
.x60_c00209{left:441.673453pt;}
.x1a_c00209{left:450.130253pt;}
.x13_c00209{left:451.247853pt;}
.x5a_c00209{left:460.395453pt;}
.x1b_c00209{left:470.198653pt;}
.x4f_c00209{left:471.408653pt;}
.x14_c00209{left:480.019453pt;}
.xa_c00209{left:481.330653pt;}
.xb_c00209{left:499.982253pt;}
.x2d_c00209{left:509.486253pt;}
.x15_c00209{left:510.467453pt;}
.x61_c00209{left:513.763053pt;}
.x3d_c00209{left:520.605053pt;}
.xc_c00209{left:530.025453pt;}
.x2e_c00209{left:539.454653pt;}
.x3e_c00209{left:548.646253pt;}
.x27_c00209{left:557.978653pt;}
.x54_c00209{left:561.555853pt;}
.x4_c00209{left:568.723453pt;}
.x4a_c00209{left:579.538653pt;}
.x5b_c00209{left:586.987853pt;}
.x57_c00209{left:597.151853pt;}
.xd_c00209{left:598.537853pt;}
.x1c_c00209{left:608.050653pt;}
.x21_c00209{left:608.943853pt;}
.x16_c00209{left:617.070653pt;}
.x50_c00209{left:622.350653pt;}
.x62_c00209{left:623.670653pt;}
.x2f_c00209{left:628.339053pt;}
.x51_c00209{left:629.527053pt;}
.x43_c00209{left:637.042253pt;}
.x3f_c00209{left:638.362253pt;}
.x28_c00209{left:646.863053pt;}
.x48_c00209{left:669.707853pt;}
.x64_c00209{left:681.011453pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1e51b07f398129c8a3c3a8ed.woff2')format("woff");}.ff1_c00210{font-family:ff1_c00210;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00210;src:url('chunks/assets/font_f849b4edace3ed5fe9163196.woff2')format("woff");}.ff2_c00210{font-family:ff2_c00210;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00210;src:url('chunks/assets/font_4818c719d88a3f97b215ff93.woff2')format("woff");}.ff3_c00210{font-family:ff3_c00210;line-height:0.666000;font-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_c00210{transform:matrix(0.038890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.038890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.038890,0.000000,0.000000,0.250000,0,0);}
.m5c_c00210{transform:matrix(0.106666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106666,0.000000,0.000000,0.250000,0,0);}
.m2_c00210{transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);}
.m9e_c00210{transform:matrix(0.141584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141584,0.000000,0.000000,0.250000,0,0);}
.m5e_c00210{transform:matrix(0.144445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144445,0.000000,0.000000,0.250000,0,0);}
.ma3_c00210{transform:matrix(0.188068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188068,0.000000,0.000000,0.250000,0,0);}
.m25_c00210{transform:matrix(0.189025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189025,0.000000,0.000000,0.250000,0,0);}
.m45_c00210{transform:matrix(0.189532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189532,0.000000,0.000000,0.250000,0,0);}
.m81_c00210{transform:matrix(0.227642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227642,0.000000,0.000000,0.250000,0,0);}
.m7d_c00210{transform:matrix(0.240549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240549,0.000000,0.000000,0.250000,0,0);}
.m6d_c00210{transform:matrix(0.242073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242073,0.000000,0.000000,0.250000,0,0);}
.m76_c00210{transform:matrix(0.246084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246084,0.000000,0.000000,0.250000,0,0);}
.m14_c00210{transform:matrix(0.248170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248170,0.000000,0.000000,0.250000,0,0);}
.m0_c00210{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00210{transform:matrix(0.250440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250440,0.000000,0.000000,0.250000,0,0);}
.m8_c00210{transform:matrix(0.250612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250612,0.000000,0.000000,0.250000,0,0);}
.m21_c00210{transform:matrix(0.250825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250825,0.000000,0.000000,0.250000,0,0);}
.m8d_c00210{transform:matrix(0.250983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250983,0.000000,0.000000,0.250000,0,0);}
.m71_c00210{transform:matrix(0.251385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251385,0.000000,0.000000,0.250000,0,0);}
.m27_c00210{transform:matrix(0.251896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251896,0.000000,0.000000,0.250000,0,0);}
.m19_c00210{transform:matrix(0.252203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252203,0.000000,0.000000,0.250000,0,0);}
.m16_c00210{transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);}
.m2e_c00210{transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);}
.m73_c00210{transform:matrix(0.253950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253950,0.000000,0.000000,0.250000,0,0);}
.m9a_c00210{transform:matrix(0.254122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254122,0.000000,0.000000,0.250000,0,0);}
.m43_c00210{transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);}
.m1a_c00210{transform:matrix(0.256348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256348,0.000000,0.000000,0.250000,0,0);}
.m37_c00210{transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);}
.m9_c00210{transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);}
.m60_c00210{transform:matrix(0.257693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257693,0.000000,0.000000,0.250000,0,0);}
.m6f_c00210{transform:matrix(0.257859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257859,0.000000,0.000000,0.250000,0,0);}
.m46_c00210{transform:matrix(0.258186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258186,0.000000,0.000000,0.250000,0,0);}
.mc_c00210{transform:matrix(0.258999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258999,0.000000,0.000000,0.250000,0,0);}
.m3e_c00210{transform:matrix(0.259659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259659,0.000000,0.000000,0.250000,0,0);}
.m36_c00210{transform:matrix(0.260284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260284,0.000000,0.000000,0.250000,0,0);}
.m38_c00210{transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);}
.m20_c00210{transform:matrix(0.261294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261294,0.000000,0.000000,0.250000,0,0);}
.m7c_c00210{transform:matrix(0.262255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262255,0.000000,0.000000,0.250000,0,0);}
.m8f_c00210{transform:matrix(0.263729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263729,0.000000,0.000000,0.250000,0,0);}
.m40_c00210{transform:matrix(0.264359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264359,0.000000,0.000000,0.250000,0,0);}
.m10_c00210{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);}
.m7b_c00210{transform:matrix(0.265245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265245,0.000000,0.000000,0.250000,0,0);}
.m7f_c00210{transform:matrix(0.265464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265464,0.000000,0.000000,0.250000,0,0);}
.m4b_c00210{transform:matrix(0.265589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265589,0.000000,0.000000,0.250000,0,0);}
.m1b_c00210{transform:matrix(0.265846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265846,0.000000,0.000000,0.250000,0,0);}
.m53_c00210{transform:matrix(0.265863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265863,0.000000,0.000000,0.250000,0,0);}
.m62_c00210{transform:matrix(0.266294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266294,0.000000,0.000000,0.250000,0,0);}
.m69_c00210{transform:matrix(0.266632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266632,0.000000,0.000000,0.250000,0,0);}
.m87_c00210{transform:matrix(0.266647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266647,0.000000,0.000000,0.250000,0,0);}
.m68_c00210{transform:matrix(0.267643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267643,0.000000,0.000000,0.250000,0,0);}
.m4d_c00210{transform:matrix(0.267754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267754,0.000000,0.000000,0.250000,0,0);}
.m6e_c00210{transform:matrix(0.269335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269335,0.000000,0.000000,0.250000,0,0);}
.m7_c00210{transform:matrix(0.269991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269991,0.000000,0.000000,0.250000,0,0);}
.m9b_c00210{transform:matrix(0.270090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270090,0.000000,0.000000,0.250000,0,0);}
.m47_c00210{transform:matrix(0.270213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270213,0.000000,0.000000,0.250000,0,0);}
.m90_c00210{transform:matrix(0.270507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270507,0.000000,0.000000,0.250000,0,0);}
.m67_c00210{transform:matrix(0.270572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270572,0.000000,0.000000,0.250000,0,0);}
.m4c_c00210{transform:matrix(0.271555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271555,0.000000,0.000000,0.250000,0,0);}
.m39_c00210{transform:matrix(0.271951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271951,0.000000,0.000000,0.250000,0,0);}
.ma1_c00210{transform:matrix(0.272398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272398,0.000000,0.000000,0.250000,0,0);}
.m51_c00210{transform:matrix(0.272402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272402,0.000000,0.000000,0.250000,0,0);}
.m33_c00210{transform:matrix(0.272570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272570,0.000000,0.000000,0.250000,0,0);}
.m95_c00210{transform:matrix(0.273059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273059,0.000000,0.000000,0.250000,0,0);}
.m96_c00210{transform:matrix(0.273323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273323,0.000000,0.000000,0.250000,0,0);}
.m5f_c00210{transform:matrix(0.273486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273486,0.000000,0.000000,0.250000,0,0);}
.m1d_c00210{transform:matrix(0.273613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273613,0.000000,0.000000,0.250000,0,0);}
.m2f_c00210{transform:matrix(0.274528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274528,0.000000,0.000000,0.250000,0,0);}
.m15_c00210{transform:matrix(0.274535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274535,0.000000,0.000000,0.250000,0,0);}
.m8b_c00210{transform:matrix(0.276538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276538,0.000000,0.000000,0.250000,0,0);}
.m83_c00210{transform:matrix(0.277131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277131,0.000000,0.000000,0.250000,0,0);}
.m2b_c00210{transform:matrix(0.277316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277316,0.000000,0.000000,0.250000,0,0);}
.m4a_c00210{transform:matrix(0.277590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277590,0.000000,0.000000,0.250000,0,0);}
.m23_c00210{transform:matrix(0.277958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277958,0.000000,0.000000,0.250000,0,0);}
.m52_c00210{transform:matrix(0.277988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277988,0.000000,0.000000,0.250000,0,0);}
.m54_c00210{transform:matrix(0.278394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278394,0.000000,0.000000,0.250000,0,0);}
.m3a_c00210{transform:matrix(0.278604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278604,0.000000,0.000000,0.250000,0,0);}
.m22_c00210{transform:matrix(0.278967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278967,0.000000,0.000000,0.250000,0,0);}
.m50_c00210{transform:matrix(0.279550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279550,0.000000,0.000000,0.250000,0,0);}
.m75_c00210{transform:matrix(0.280401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280401,0.000000,0.000000,0.250000,0,0);}
.m85_c00210{transform:matrix(0.280568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280568,0.000000,0.000000,0.250000,0,0);}
.ma4_c00210{transform:matrix(0.280932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280932,0.000000,0.000000,0.250000,0,0);}
.m18_c00210{transform:matrix(0.281802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281802,0.000000,0.000000,0.250000,0,0);}
.m35_c00210{transform:matrix(0.281890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281890,0.000000,0.000000,0.250000,0,0);}
.m26_c00210{transform:matrix(0.282098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282098,0.000000,0.000000,0.250000,0,0);}
.m3f_c00210{transform:matrix(0.282491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282491,0.000000,0.000000,0.250000,0,0);}
.m92_c00210{transform:matrix(0.282758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282758,0.000000,0.000000,0.250000,0,0);}
.m6c_c00210{transform:matrix(0.283630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283630,0.000000,0.000000,0.250000,0,0);}
.m82_c00210{transform:matrix(0.283737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283737,0.000000,0.000000,0.250000,0,0);}
.m89_c00210{transform:matrix(0.284253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284253,0.000000,0.000000,0.250000,0,0);}
.m56_c00210{transform:matrix(0.284590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284590,0.000000,0.000000,0.250000,0,0);}
.m4e_c00210{transform:matrix(0.285325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285325,0.000000,0.000000,0.250000,0,0);}
.m13_c00210{transform:matrix(0.286221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286221,0.000000,0.000000,0.250000,0,0);}
.m34_c00210{transform:matrix(0.286376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286376,0.000000,0.000000,0.250000,0,0);}
.m57_c00210{transform:matrix(0.286929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286929,0.000000,0.000000,0.250000,0,0);}
.mf_c00210{transform:matrix(0.286948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286948,0.000000,0.000000,0.250000,0,0);}
.m63_c00210{transform:matrix(0.287805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287805,0.000000,0.000000,0.250000,0,0);}
.ma5_c00210{transform:matrix(0.287887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287887,0.000000,0.000000,0.250000,0,0);}
.m72_c00210{transform:matrix(0.288234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288234,0.000000,0.000000,0.250000,0,0);}
.m11_c00210{transform:matrix(0.288417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288417,0.000000,0.000000,0.250000,0,0);}
.m59_c00210{transform:matrix(0.288562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288562,0.000000,0.000000,0.250000,0,0);}
.m88_c00210{transform:matrix(0.288814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288814,0.000000,0.000000,0.250000,0,0);}
.m74_c00210{transform:matrix(0.288826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288826,0.000000,0.000000,0.250000,0,0);}
.m58_c00210{transform:matrix(0.289124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289124,0.000000,0.000000,0.250000,0,0);}
.m2c_c00210{transform:matrix(0.289385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289385,0.000000,0.000000,0.250000,0,0);}
.m1_c00210{transform:matrix(0.290030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290030,0.000000,0.000000,0.250000,0,0);}
.m1e_c00210{transform:matrix(0.290477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290477,0.000000,0.000000,0.250000,0,0);}
.mb_c00210{transform:matrix(0.292057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292057,0.000000,0.000000,0.250000,0,0);}
.m78_c00210{transform:matrix(0.292308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292308,0.000000,0.000000,0.250000,0,0);}
.m28_c00210{transform:matrix(0.292872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292872,0.000000,0.000000,0.250000,0,0);}
.md_c00210{transform:matrix(0.292962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292962,0.000000,0.000000,0.250000,0,0);}
.m1f_c00210{transform:matrix(0.293261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293261,0.000000,0.000000,0.250000,0,0);}
.m3b_c00210{transform:matrix(0.294351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294351,0.000000,0.000000,0.250000,0,0);}
.m4_c00210{transform:matrix(0.294747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294747,0.000000,0.000000,0.250000,0,0);}
.m55_c00210{transform:matrix(0.294760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294760,0.000000,0.000000,0.250000,0,0);}
.m70_c00210{transform:matrix(0.295098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295098,0.000000,0.000000,0.250000,0,0);}
.m66_c00210{transform:matrix(0.296594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296594,0.000000,0.000000,0.250000,0,0);}
.m97_c00210{transform:matrix(0.297654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297654,0.000000,0.000000,0.250000,0,0);}
.m3d_c00210{transform:matrix(0.298746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298746,0.000000,0.000000,0.250000,0,0);}
.m31_c00210{transform:matrix(0.300866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300866,0.000000,0.000000,0.250000,0,0);}
.m2a_c00210{transform:matrix(0.301175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301175,0.000000,0.000000,0.250000,0,0);}
.m2d_c00210{transform:matrix(0.301225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301225,0.000000,0.000000,0.250000,0,0);}
.m3_c00210{transform:matrix(0.301846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301846,0.000000,0.000000,0.250000,0,0);}
.m6a_c00210{transform:matrix(0.302550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302550,0.000000,0.000000,0.250000,0,0);}
.m44_c00210{transform:matrix(0.302641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302641,0.000000,0.000000,0.250000,0,0);}
.m6_c00210{transform:matrix(0.303182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303182,0.000000,0.000000,0.250000,0,0);}
.m98_c00210{transform:matrix(0.303858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303858,0.000000,0.000000,0.250000,0,0);}
.m24_c00210{transform:matrix(0.303881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303881,0.000000,0.000000,0.250000,0,0);}
.m12_c00210{transform:matrix(0.305087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305087,0.000000,0.000000,0.250000,0,0);}
.m9c_c00210{transform:matrix(0.306780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306780,0.000000,0.000000,0.250000,0,0);}
.ma0_c00210{transform:matrix(0.311338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311338,0.000000,0.000000,0.250000,0,0);}
.m94_c00210{transform:matrix(0.312460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312460,0.000000,0.000000,0.250000,0,0);}
.m93_c00210{transform:matrix(0.314246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314246,0.000000,0.000000,0.250000,0,0);}
.m86_c00210{transform:matrix(0.314459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314459,0.000000,0.000000,0.250000,0,0);}
.m8c_c00210{transform:matrix(0.314608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314608,0.000000,0.000000,0.250000,0,0);}
.m48_c00210{transform:matrix(0.315122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315122,0.000000,0.000000,0.250000,0,0);}
.m5b_c00210{transform:matrix(0.315196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315196,0.000000,0.000000,0.250000,0,0);}
.m64_c00210{transform:matrix(0.318157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318157,0.000000,0.000000,0.250000,0,0);}
.m30_c00210{transform:matrix(0.318743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318743,0.000000,0.000000,0.250000,0,0);}
.m42_c00210{transform:matrix(0.319440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319440,0.000000,0.000000,0.250000,0,0);}
.m4f_c00210{transform:matrix(0.320282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320282,0.000000,0.000000,0.250000,0,0);}
.m91_c00210{transform:matrix(0.320486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320486,0.000000,0.000000,0.250000,0,0);}
.m8e_c00210{transform:matrix(0.320907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320907,0.000000,0.000000,0.250000,0,0);}
.m1c_c00210{transform:matrix(0.321372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321372,0.000000,0.000000,0.250000,0,0);}
.m32_c00210{transform:matrix(0.321803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321803,0.000000,0.000000,0.250000,0,0);}
.m65_c00210{transform:matrix(0.321934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321934,0.000000,0.000000,0.250000,0,0);}
.m9d_c00210{transform:matrix(0.322618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322618,0.000000,0.000000,0.250000,0,0);}
.m61_c00210{transform:matrix(0.324195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324195,0.000000,0.000000,0.250000,0,0);}
.m7a_c00210{transform:matrix(0.324531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324531,0.000000,0.000000,0.250000,0,0);}
.m41_c00210{transform:matrix(0.325503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325503,0.000000,0.000000,0.250000,0,0);}
.ma_c00210{transform:matrix(0.325725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325725,0.000000,0.000000,0.250000,0,0);}
.m5a_c00210{transform:matrix(0.326105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326105,0.000000,0.000000,0.250000,0,0);}
.ma2_c00210{transform:matrix(0.326275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326275,0.000000,0.000000,0.250000,0,0);}
.m80_c00210{transform:matrix(0.327054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327054,0.000000,0.000000,0.250000,0,0);}
.m29_c00210{transform:matrix(0.328207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328207,0.000000,0.000000,0.250000,0,0);}
.m49_c00210{transform:matrix(0.329577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329577,0.000000,0.000000,0.250000,0,0);}
.m8a_c00210{transform:matrix(0.330094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330094,0.000000,0.000000,0.250000,0,0);}
.m79_c00210{transform:matrix(0.335736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335736,0.000000,0.000000,0.250000,0,0);}
.m6b_c00210{transform:matrix(0.341545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341545,0.000000,0.000000,0.250000,0,0);}
.m99_c00210{transform:matrix(0.343535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343535,0.000000,0.000000,0.250000,0,0);}
.m77_c00210{transform:matrix(0.344083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344083,0.000000,0.000000,0.250000,0,0);}
.m7e_c00210{transform:matrix(0.347881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347881,0.000000,0.000000,0.250000,0,0);}
.me_c00210{transform:matrix(0.348178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348178,0.000000,0.000000,0.250000,0,0);}
.m3c_c00210{transform:matrix(0.357462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357462,0.000000,0.000000,0.250000,0,0);}
.m5_c00210{transform:matrix(0.358891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358891,0.000000,0.000000,0.250000,0,0);}
.m17_c00210{transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);}
.m9f_c00210{transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);}
.v1_c00210{vertical-align:-47.044800px;}
.v2_c00210{vertical-align:-34.214400px;}
.v0_c00210{vertical-align:0.000000px;}
.ls1a_c00210{letter-spacing:-3.298680px;}
.ls7_c00210{letter-spacing:-2.855167px;}
.ls16_c00210{letter-spacing:-1.509160px;}
.ls15_c00210{letter-spacing:-0.350778px;}
.ls2_c00210{letter-spacing:0.000000px;}
.ls0_c00210{letter-spacing:0.179468px;}
.lsb_c00210{letter-spacing:0.464984px;}
.ls12_c00210{letter-spacing:1.231801px;}
.lse_c00210{letter-spacing:2.104666px;}
.ls13_c00210{letter-spacing:2.235188px;}
.lsa_c00210{letter-spacing:2.985689px;}
.ls8_c00210{letter-spacing:3.311994px;}
.ls17_c00210{letter-spacing:3.474900px;}
.ls1_c00210{letter-spacing:3.638298px;}
.lsc_c00210{letter-spacing:3.722400px;}
.ls3_c00210{letter-spacing:3.732310px;}
.lsd_c00210{letter-spacing:3.762000px;}
.ls14_c00210{letter-spacing:3.821400px;}
.lsf_c00210{letter-spacing:4.005391px;}
.ls18_c00210{letter-spacing:4.013549px;}
.ls11_c00210{letter-spacing:4.059000px;}
.ls5_c00210{letter-spacing:4.078810px;}
.ls6_c00210{letter-spacing:4.217400px;}
.ls19_c00210{letter-spacing:4.633200px;}
.ls4_c00210{letter-spacing:29.937798px;}
.ls1b_c00210{letter-spacing:57.024198px;}
.ls9_c00210{letter-spacing:58.449798px;}
.ls10_c00210{letter-spacing:64.152198px;}
.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;}
._3_c00210{width:14.176800px;}
._1_c00210{width:16.086722px;}
._0_c00210{width:23.950793px;}
._2_c00210{width:25.288621px;}
._4_c00210{width:738.730872px;}
._5_c00210{width:1756.315440px;}
.fc0_c00210{color:transparent;}
.fs5_c00210{font-size:22.176000px;}
.fs3_c00210{font-size:25.344000px;}
.fs0_c00210{font-size:27.720000px;}
.fs14_c00210{font-size:28.314000px;}
.fs4_c00210{font-size:29.937798px;}
.fs1a_c00210{font-size:33.264000px;}
.fs10_c00210{font-size:38.808000px;}
.fs18_c00210{font-size:39.204000px;}
.fs8_c00210{font-size:39.600000px;}
.fs13_c00210{font-size:44.748000px;}
.fs17_c00210{font-size:57.024198px;}
.fs9_c00210{font-size:58.449798px;}
.fs19_c00210{font-size:59.400000px;}
.fsd_c00210{font-size:64.152198px;}
.fs2_c00210{font-size:66.528000px;}
.fs11_c00210{font-size:69.498000px;}
.fsf_c00210{font-size:73.656198px;}
.fsc_c00210{font-size:74.448000px;}
.fs1_c00210{font-size:74.646198px;}
.fsb_c00210{font-size:74.844000px;}
.fsa_c00210{font-size:75.240000px;}
.fs12_c00210{font-size:76.428000px;}
.fse_c00210{font-size:81.180000px;}
.fs6_c00210{font-size:81.576198px;}
.fs7_c00210{font-size:84.348000px;}
.fs15_c00210{font-size:92.664000px;}
.fs16_c00210{font-size:94.248000px;}
.y0_c00210{bottom:0.000000px;}
.y2b_c00210{bottom:20.583135px;}
.y2d_c00210{bottom:37.328985px;}
.y2a_c00210{bottom:40.536585px;}
.y1_c00210{bottom:76.500000px;}
.y29_c00210{bottom:88.655535px;}
.y2c_c00210{bottom:96.139935px;}
.y28_c00210{bottom:111.108735px;}
.y27_c00210{bottom:131.067135px;}
.y26_c00210{bottom:177.042735px;}
.y25_c00210{bottom:208.400985px;}
.y24_c00210{bottom:240.838335px;}
.y23_c00210{bottom:258.301935px;}
.y22_c00210{bottom:272.201535px;}
.y21_c00210{bottom:303.916185px;}
.y20_c00210{bottom:327.794985px;}
.y1f_c00210{bottom:335.640735px;}
.y1e_c00210{bottom:368.073135px;}
.y1d_c00210{bottom:400.149135px;}
.y1c_c00210{bottom:424.027935px;}
.y1b_c00210{bottom:427.943385px;}
.y1a_c00210{bottom:454.321935px;}
.y18_c00210{bottom:461.088585px;}
.y19_c00210{bottom:465.008985px;}
.y17_c00210{bottom:491.738985px;}
.y16_c00210{bottom:522.750735px;}
.y15_c00210{bottom:554.113935px;}
.y14_c00210{bottom:585.477135px;}
.y13_c00210{bottom:617.548185px;}
.y12_c00210{bottom:680.279535px;}
.y11_c00210{bottom:711.642735px;}
.y10_c00210{bottom:743.357385px;}
.yf_c00210{bottom:757.974735px;}
.ye_c00210{bottom:775.076985px;}
.y2_c00210{bottom:780.071535px;}
.yd_c00210{bottom:794.683935px;}
.yc_c00210{bottom:807.509385px;}
.yb_c00210{bottom:869.879385px;}
.ya_c00210{bottom:901.603935px;}
.y9_c00210{bottom:919.423935px;}
.y8_c00210{bottom:933.318585px;}
.y7_c00210{bottom:972.522585px;}
.y6_c00210{bottom:1030.615785px;}
.y5_c00210{bottom:1040.951385px;}
.y4_c00210{bottom:1053.781785px;}
.y3_c00210{bottom:1070.176185px;}
.h6_c00210{height:19.938573px;}
.h7_c00210{height:23.128875px;}
.h5_c00210{height:24.873750px;}
.h2_c00210{height:28.911094px;}
.h17_c00210{height:29.530617px;}
.h1b_c00210{height:29.776313px;}
.h1d_c00210{height:34.693313px;}
.h1a_c00210{height:37.978116px;}
.h1c_c00210{height:38.476582px;}
.hb_c00210{height:38.927565px;}
.h13_c00210{height:40.475531px;}
.ha_c00210{height:41.301563px;}
.h10_c00210{height:42.725364px;}
.h16_c00210{height:43.917715px;}
.h14_c00210{height:68.208486px;}
.h4_c00210{height:69.386625px;}
.he_c00210{height:73.066641px;}
.h3_c00210{height:73.261161px;}
.hd_c00210{height:73.455293px;}
.hf_c00210{height:73.843945px;}
.h15_c00210{height:75.009902px;}
.h12_c00210{height:76.821113px;}
.hc_c00210{height:78.472969px;}
.h11_c00210{height:79.673730px;}
.h8_c00210{height:80.062577px;}
.h9_c00210{height:82.782949px;}
.h18_c00210{height:90.944648px;}
.h19_c00210{height:98.297719px;}
.h1_c00210{height:1110.000000px;}
.h0_c00210{height:1263.000000px;}
.w1_c00210{width:775.500000px;}
.w0_c00210{width:892.500000px;}
.x0_c00210{left:0.000000px;}
.x2_c00210{left:51.199485px;}
.x1_c00210{left:58.500000px;}
.x16_c00210{left:85.106985px;}
.x7_c00210{left:86.294985px;}
.x69_c00210{left:87.403785px;}
.x65_c00210{left:107.575035px;}
.x1e_c00210{left:118.762035px;}
.x28_c00210{left:119.855985px;}
.x43_c00210{left:120.915285px;}
.x4a_c00210{left:128.998635px;}
.x20_c00210{left:140.641035px;}
.x17_c00210{left:141.858735px;}
.x1f_c00210{left:151.050885px;}
.x8_c00210{left:152.679435px;}
.x61_c00210{left:153.991185px;}
.x57_c00210{left:173.494185px;}
.x21_c00210{left:175.018785px;}
.x9_c00210{left:185.245485px;}
.x62_c00210{left:186.765135px;}
.x18_c00210{left:195.536535px;}
.x29_c00210{left:197.105685px;}
.x39_c00210{left:208.282785px;}
.x4b_c00210{left:229.463835px;}
.x44_c00210{left:230.646885px;}
.xa_c00210{left:240.655785px;}
.x5a_c00210{left:242.120985px;}
.x31_c00210{left:252.704085px;}
.x6c_c00210{left:258.267885px;}
.x19_c00210{left:262.242735px;}
.x50_c00210{left:263.460435px;}
.x5f_c00210{left:265.583985px;}
.xb_c00210{left:274.518735px;}
.x5b_c00210{left:275.602785px;}
.x45_c00210{left:284.745435px;}
.x1a_c00210{left:286.527435px;}
.x51_c00210{left:297.531285px;}
.x5c_c00210{left:307.515435px;}
.x22_c00210{left:308.767785px;}
.x67_c00210{left:310.426035px;}
.x46_c00210{left:329.607285px;}
.x23_c00210{left:330.834885px;}
.xc_c00210{left:341.442735px;}
.x3a_c00210{left:351.907035px;}
.x24_c00210{left:363.306885px;}
.x6a_c00210{left:366.014535px;}
.x2a_c00210{left:373.137585px;}
.x47_c00210{left:374.340435px;}
.xd_c00210{left:383.780085px;}
.x41_c00210{left:386.037285px;}
.x3b_c00210{left:396.432285px;}
.x64_c00210{left:401.476335px;}
.x53_c00210{left:407.114385px;}
.x63_c00210{left:410.163585px;}
.x68_c00210{left:419.850735px;}
.x32_c00210{left:429.958635px;}
.x3e_c00210{left:431.230785px;}
.x1b_c00210{left:440.650635px;}
.x42_c00210{left:441.695085px;}
.xe_c00210{left:462.742485px;}
.x2b_c00210{left:464.158185px;}
.x33_c00210{left:473.736435px;}
.x2c_c00210{left:485.066985px;}
.xf_c00210{left:495.506535px;}
.x58_c00210{left:496.937085px;}
.x54_c00210{left:507.114285px;}
.x34_c00210{left:508.599285px;}
.x6b_c00210{left:513.475035px;}
.x2d_c00210{left:519.043785px;}
.x4c_c00210{left:530.017935px;}
.x10_c00210{left:540.081285px;}
.x3f_c00210{left:541.383135px;}
.x5d_c00210{left:551.619735px;}
.x3c_c00210{left:561.999885px;}
.x48_c00210{left:563.168085px;}
.x11_c00210{left:574.077885px;}
.x35_c00210{left:584.601585px;}
.x40_c00210{left:594.724335px;}
.x2e_c00210{left:595.912335px;}
.x1c_c00210{left:605.960835px;}
.x12_c00210{left:607.341885px;}
.x25_c00210{left:617.425035px;}
.x36_c00210{left:628.245735px;}
.x55_c00210{left:629.884185px;}
.x15_c00210{left:635.205435px;}
.x5e_c00210{left:638.299185px;}
.x1d_c00210{left:639.328785px;}
.x56_c00210{left:640.789035px;}
.x13_c00210{left:651.807735px;}
.x66_c00210{left:660.697935px;}
.x26_c00210{left:662.331435px;}
.x3_c00210{left:672.251235px;}
.x49_c00210{left:673.355085px;}
.x6_c00210{left:684.903435px;}
.x3d_c00210{left:696.065685px;}
.x27_c00210{left:699.491085px;}
.x52_c00210{left:701.273085px;}
.x4_c00210{left:702.545235px;}
.x5_c00210{left:704.233185px;}
.x2f_c00210{left:706.406235px;}
.x14_c00210{left:707.450685px;}
.x30_c00210{left:709.455435px;}
.x6d_c00210{left:712.301685px;}
.x37_c00210{left:718.132785px;}
.x38_c00210{left:739.625685px;}
.x4d_c00210{left:744.862785px;}
.x59_c00210{left:746.763585px;}
.x4e_c00210{left:748.788135px;}
.x60_c00210{left:750.674085px;}
.x6e_c00210{left:752.906535px;}
.x6f_c00210{left:761.173035px;}
.x4f_c00210{left:764.524185px;}
@media print{
.v1_c00210{vertical-align:-41.817600pt;}
.v2_c00210{vertical-align:-30.412800pt;}
.v0_c00210{vertical-align:0.000000pt;}
.ls1a_c00210{letter-spacing:-2.932160pt;}
.ls7_c00210{letter-spacing:-2.537926pt;}
.ls16_c00210{letter-spacing:-1.341475pt;}
.ls15_c00210{letter-spacing:-0.311802pt;}
.ls2_c00210{letter-spacing:0.000000pt;}
.ls0_c00210{letter-spacing:0.159527pt;}
.lsb_c00210{letter-spacing:0.413319pt;}
.ls12_c00210{letter-spacing:1.094934pt;}
.lse_c00210{letter-spacing:1.870814pt;}
.ls13_c00210{letter-spacing:1.986834pt;}
.lsa_c00210{letter-spacing:2.653946pt;}
.ls8_c00210{letter-spacing:2.943994pt;}
.ls17_c00210{letter-spacing:3.088800pt;}
.ls1_c00210{letter-spacing:3.234043pt;}
.lsc_c00210{letter-spacing:3.308800pt;}
.ls3_c00210{letter-spacing:3.317609pt;}
.lsd_c00210{letter-spacing:3.344000pt;}
.ls14_c00210{letter-spacing:3.396800pt;}
.lsf_c00210{letter-spacing:3.560348pt;}
.ls18_c00210{letter-spacing:3.567599pt;}
.ls11_c00210{letter-spacing:3.608000pt;}
.ls5_c00210{letter-spacing:3.625609pt;}
.ls6_c00210{letter-spacing:3.748800pt;}
.ls19_c00210{letter-spacing:4.118400pt;}
.ls4_c00210{letter-spacing:26.611376pt;}
.ls1b_c00210{letter-spacing:50.688176pt;}
.ls9_c00210{letter-spacing:51.955376pt;}
.ls10_c00210{letter-spacing:57.024176pt;}
.ws0_c00210{word-spacing:0.000000pt;}
._3_c00210{width:12.601600pt;}
._1_c00210{width:14.299309pt;}
._0_c00210{width:21.289594pt;}
._2_c00210{width:22.478775pt;}
._4_c00210{width:656.649664pt;}
._5_c00210{width:1561.169280pt;}
.fs5_c00210{font-size:19.712000pt;}
.fs3_c00210{font-size:22.528000pt;}
.fs0_c00210{font-size:24.640000pt;}
.fs14_c00210{font-size:25.168000pt;}
.fs4_c00210{font-size:26.611376pt;}
.fs1a_c00210{font-size:29.568000pt;}
.fs10_c00210{font-size:34.496000pt;}
.fs18_c00210{font-size:34.848000pt;}
.fs8_c00210{font-size:35.200000pt;}
.fs13_c00210{font-size:39.776000pt;}
.fs17_c00210{font-size:50.688176pt;}
.fs9_c00210{font-size:51.955376pt;}
.fs19_c00210{font-size:52.800000pt;}
.fsd_c00210{font-size:57.024176pt;}
.fs2_c00210{font-size:59.136000pt;}
.fs11_c00210{font-size:61.776000pt;}
.fsf_c00210{font-size:65.472176pt;}
.fsc_c00210{font-size:66.176000pt;}
.fs1_c00210{font-size:66.352176pt;}
.fsb_c00210{font-size:66.528000pt;}
.fsa_c00210{font-size:66.880000pt;}
.fs12_c00210{font-size:67.936000pt;}
.fse_c00210{font-size:72.160000pt;}
.fs6_c00210{font-size:72.512176pt;}
.fs7_c00210{font-size:74.976000pt;}
.fs15_c00210{font-size:82.368000pt;}
.fs16_c00210{font-size:83.776000pt;}
.y0_c00210{bottom:0.000000pt;}
.y2b_c00210{bottom:18.296120pt;}
.y2d_c00210{bottom:33.181320pt;}
.y2a_c00210{bottom:36.032520pt;}
.y1_c00210{bottom:68.000000pt;}
.y29_c00210{bottom:78.804920pt;}
.y2c_c00210{bottom:85.457720pt;}
.y28_c00210{bottom:98.763320pt;}
.y27_c00210{bottom:116.504120pt;}
.y26_c00210{bottom:157.371320pt;}
.y25_c00210{bottom:185.245320pt;}
.y24_c00210{bottom:214.078520pt;}
.y23_c00210{bottom:229.601720pt;}
.y22_c00210{bottom:241.956920pt;}
.y21_c00210{bottom:270.147720pt;}
.y20_c00210{bottom:291.373320pt;}
.y1f_c00210{bottom:298.347320pt;}
.y1e_c00210{bottom:327.176120pt;}
.y1d_c00210{bottom:355.688120pt;}
.y1c_c00210{bottom:376.913720pt;}
.y1b_c00210{bottom:380.394120pt;}
.y1a_c00210{bottom:403.841720pt;}
.y18_c00210{bottom:409.856520pt;}
.y19_c00210{bottom:413.341320pt;}
.y17_c00210{bottom:437.101320pt;}
.y16_c00210{bottom:464.667320pt;}
.y15_c00210{bottom:492.545720pt;}
.y14_c00210{bottom:520.424120pt;}
.y13_c00210{bottom:548.931720pt;}
.y12_c00210{bottom:604.692920pt;}
.y11_c00210{bottom:632.571320pt;}
.y10_c00210{bottom:660.762120pt;}
.yf_c00210{bottom:673.755320pt;}
.ye_c00210{bottom:688.957320pt;}
.y2_c00210{bottom:693.396920pt;}
.yd_c00210{bottom:706.385720pt;}
.yc_c00210{bottom:717.786120pt;}
.yb_c00210{bottom:773.226120pt;}
.ya_c00210{bottom:801.425720pt;}
.y9_c00210{bottom:817.265720pt;}
.y8_c00210{bottom:829.616520pt;}
.y7_c00210{bottom:864.464520pt;}
.y6_c00210{bottom:916.102920pt;}
.y5_c00210{bottom:925.290120pt;}
.y4_c00210{bottom:936.694920pt;}
.y3_c00210{bottom:951.267720pt;}
.h6_c00210{height:17.723176pt;}
.h7_c00210{height:20.559000pt;}
.h5_c00210{height:22.110000pt;}
.h2_c00210{height:25.698750pt;}
.h17_c00210{height:26.249438pt;}
.h1b_c00210{height:26.467834pt;}
.h1d_c00210{height:30.838500pt;}
.h1a_c00210{height:33.758325pt;}
.h1c_c00210{height:34.201406pt;}
.hb_c00210{height:34.602280pt;}
.h13_c00210{height:35.978250pt;}
.ha_c00210{height:36.712500pt;}
.h10_c00210{height:37.978101pt;}
.h16_c00210{height:39.037969pt;}
.h14_c00210{height:60.629766pt;}
.h4_c00210{height:61.677000pt;}
.he_c00210{height:64.948125pt;}
.h3_c00210{height:65.121032pt;}
.hd_c00210{height:65.293594pt;}
.hf_c00210{height:65.639063pt;}
.h15_c00210{height:66.675469pt;}
.h12_c00210{height:68.285434pt;}
.hc_c00210{height:69.753750pt;}
.h11_c00210{height:70.821094pt;}
.h8_c00210{height:71.166735pt;}
.h9_c00210{height:73.584844pt;}
.h18_c00210{height:80.839688pt;}
.h19_c00210{height:87.375750pt;}
.h1_c00210{height:986.666667pt;}
.h0_c00210{height:1122.666667pt;}
.w1_c00210{width:689.333333pt;}
.w0_c00210{width:793.333333pt;}
.x0_c00210{left:0.000000pt;}
.x2_c00210{left:45.510653pt;}
.x1_c00210{left:52.000000pt;}
.x16_c00210{left:75.650653pt;}
.x7_c00210{left:76.706653pt;}
.x69_c00210{left:77.692253pt;}
.x65_c00210{left:95.622253pt;}
.x1e_c00210{left:105.566253pt;}
.x28_c00210{left:106.538653pt;}
.x43_c00210{left:107.480253pt;}
.x4a_c00210{left:114.665453pt;}
.x20_c00210{left:125.014253pt;}
.x17_c00210{left:126.096653pt;}
.x1f_c00210{left:134.267453pt;}
.x8_c00210{left:135.715053pt;}
.x61_c00210{left:136.881053pt;}
.x57_c00210{left:154.217053pt;}
.x21_c00210{left:155.572253pt;}
.x9_c00210{left:164.662653pt;}
.x62_c00210{left:166.013453pt;}
.x18_c00210{left:173.810253pt;}
.x29_c00210{left:175.205053pt;}
.x39_c00210{left:185.140253pt;}
.x4b_c00210{left:203.967853pt;}
.x44_c00210{left:205.019453pt;}
.xa_c00210{left:213.916253pt;}
.x5a_c00210{left:215.218653pt;}
.x31_c00210{left:224.625853pt;}
.x6c_c00210{left:229.571453pt;}
.x19_c00210{left:233.104653pt;}
.x50_c00210{left:234.187053pt;}
.x5f_c00210{left:236.074653pt;}
.xb_c00210{left:244.016653pt;}
.x5b_c00210{left:244.980253pt;}
.x45_c00210{left:253.107053pt;}
.x1a_c00210{left:254.691053pt;}
.x51_c00210{left:264.472253pt;}
.x5c_c00210{left:273.347053pt;}
.x22_c00210{left:274.460253pt;}
.x67_c00210{left:275.934253pt;}
.x46_c00210{left:292.984253pt;}
.x23_c00210{left:294.075453pt;}
.xc_c00210{left:303.504653pt;}
.x3a_c00210{left:312.806253pt;}
.x24_c00210{left:322.939453pt;}
.x6a_c00210{left:325.346253pt;}
.x2a_c00210{left:331.677853pt;}
.x47_c00210{left:332.747053pt;}
.xd_c00210{left:341.137853pt;}
.x41_c00210{left:343.144253pt;}
.x3b_c00210{left:352.384253pt;}
.x64_c00210{left:356.867853pt;}
.x53_c00210{left:361.879453pt;}
.x63_c00210{left:364.589853pt;}
.x68_c00210{left:373.200653pt;}
.x32_c00210{left:382.185453pt;}
.x3e_c00210{left:383.316253pt;}
.x1b_c00210{left:391.689453pt;}
.x42_c00210{left:392.617853pt;}
.xe_c00210{left:411.326653pt;}
.x2b_c00210{left:412.585053pt;}
.x33_c00210{left:421.099053pt;}
.x2c_c00210{left:431.170653pt;}
.xf_c00210{left:440.450253pt;}
.x58_c00210{left:441.721853pt;}
.x54_c00210{left:450.768253pt;}
.x34_c00210{left:452.088253pt;}
.x6b_c00210{left:456.422253pt;}
.x2d_c00210{left:461.372253pt;}
.x4c_c00210{left:471.127053pt;}
.x10_c00210{left:480.072253pt;}
.x3f_c00210{left:481.229453pt;}
.x5d_c00210{left:490.328653pt;}
.x3c_c00210{left:499.555453pt;}
.x48_c00210{left:500.593853pt;}
.x11_c00210{left:510.291453pt;}
.x35_c00210{left:519.645853pt;}
.x40_c00210{left:528.643853pt;}
.x2e_c00210{left:529.699853pt;}
.x1c_c00210{left:538.631853pt;}
.x12_c00210{left:539.859453pt;}
.x25_c00210{left:548.822253pt;}
.x36_c00210{left:558.440653pt;}
.x55_c00210{left:559.897053pt;}
.x15_c00210{left:564.627053pt;}
.x5e_c00210{left:567.377053pt;}
.x1d_c00210{left:568.292253pt;}
.x56_c00210{left:569.590253pt;}
.x13_c00210{left:579.384653pt;}
.x66_c00210{left:587.287053pt;}
.x26_c00210{left:588.739053pt;}
.x3_c00210{left:597.556653pt;}
.x49_c00210{left:598.537853pt;}
.x6_c00210{left:608.803053pt;}
.x3d_c00210{left:618.725053pt;}
.x27_c00210{left:621.769853pt;}
.x52_c00210{left:623.353853pt;}
.x4_c00210{left:624.484653pt;}
.x5_c00210{left:625.985053pt;}
.x2f_c00210{left:627.916653pt;}
.x14_c00210{left:628.845053pt;}
.x30_c00210{left:630.627053pt;}
.x6d_c00210{left:633.157053pt;}
.x37_c00210{left:638.340253pt;}
.x38_c00210{left:657.445053pt;}
.x4d_c00210{left:662.100253pt;}
.x59_c00210{left:663.789853pt;}
.x4e_c00210{left:665.589453pt;}
.x60_c00210{left:667.265853pt;}
.x6e_c00210{left:669.250253pt;}
.x6f_c00210{left:676.598253pt;}
.x4f_c00210{left:679.577053pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_742dd79b63f24ffba4c9b1f1.woff2')format("woff");}.ff1_c00211{font-family:ff1_c00211;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00211;src:url('chunks/assets/font_64e3a1643153e1788af34d7b.woff2')format("woff");}.ff2_c00211{font-family:ff2_c00211;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00211;src:url('chunks/assets/font_8b3c06632309944520431305.woff2')format("woff");}.ff3_c00211{font-family:ff3_c00211;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4d_c00211{transform:matrix(0.065562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065562,0.000000,0.000000,0.250000,0,0);}
.m37_c00211{transform:matrix(0.125567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125567,0.000000,0.000000,0.250000,0,0);}
.m78_c00211{transform:matrix(0.133469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133469,0.000000,0.000000,0.250000,0,0);}
.m7c_c00211{transform:matrix(0.180640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180640,0.000000,0.000000,0.250000,0,0);}
.maa_c00211{transform:matrix(0.188560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188560,0.000000,0.000000,0.250000,0,0);}
.m3_c00211{transform:matrix(0.197270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197270,0.000000,0.000000,0.250000,0,0);}
.m1_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);}
.m29_c00211{transform:matrix(0.250710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250710,0.000000,0.000000,0.250000,0,0);}
.m21_c00211{transform:matrix(0.253944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253944,0.000000,0.000000,0.250000,0,0);}
.m11_c00211{transform:matrix(0.254023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254023,0.000000,0.000000,0.250000,0,0);}
.mc7_c00211{transform:matrix(0.254400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254400,0.000000,0.000000,0.250000,0,0);}
.mca_c00211{transform:matrix(0.255273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255273,0.000000,0.000000,0.250000,0,0);}
.m13_c00211{transform:matrix(0.256365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256365,0.000000,0.000000,0.250000,0,0);}
.mb9_c00211{transform:matrix(0.258161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258161,0.000000,0.000000,0.250000,0,0);}
.m2a_c00211{transform:matrix(0.258400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258400,0.000000,0.000000,0.250000,0,0);}
.mce_c00211{transform:matrix(0.259038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259038,0.000000,0.000000,0.250000,0,0);}
.m94_c00211{transform:matrix(0.260114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260114,0.000000,0.000000,0.250000,0,0);}
.m42_c00211{transform:matrix(0.260216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260216,0.000000,0.000000,0.250000,0,0);}
.md3_c00211{transform:matrix(0.260790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260790,0.000000,0.000000,0.250000,0,0);}
.m86_c00211{transform:matrix(0.260949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260949,0.000000,0.000000,0.250000,0,0);}
.m2c_c00211{transform:matrix(0.261193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261193,0.000000,0.000000,0.250000,0,0);}
.m9f_c00211{transform:matrix(0.261245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261245,0.000000,0.000000,0.250000,0,0);}
.m93_c00211{transform:matrix(0.261783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261783,0.000000,0.000000,0.250000,0,0);}
.m4e_c00211{transform:matrix(0.264448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264448,0.000000,0.000000,0.250000,0,0);}
.m2_c00211{transform:matrix(0.264679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264679,0.000000,0.000000,0.250000,0,0);}
.m82_c00211{transform:matrix(0.265065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265065,0.000000,0.000000,0.250000,0,0);}
.m14_c00211{transform:matrix(0.265386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265386,0.000000,0.000000,0.250000,0,0);}
.m34_c00211{transform:matrix(0.265492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265492,0.000000,0.000000,0.250000,0,0);}
.mba_c00211{transform:matrix(0.266492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266492,0.000000,0.000000,0.250000,0,0);}
.ma_c00211{transform:matrix(0.267721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267721,0.000000,0.000000,0.250000,0,0);}
.m7a_c00211{transform:matrix(0.268319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268319,0.000000,0.000000,0.250000,0,0);}
.m25_c00211{transform:matrix(0.268497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268497,0.000000,0.000000,0.250000,0,0);}
.mb2_c00211{transform:matrix(0.268620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268620,0.000000,0.000000,0.250000,0,0);}
.m32_c00211{transform:matrix(0.270126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270126,0.000000,0.000000,0.250000,0,0);}
.m71_c00211{transform:matrix(0.270388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270388,0.000000,0.000000,0.250000,0,0);}
.md_c00211{transform:matrix(0.270691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270691,0.000000,0.000000,0.250000,0,0);}
.m98_c00211{transform:matrix(0.270718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270718,0.000000,0.000000,0.250000,0,0);}
.m6d_c00211{transform:matrix(0.270764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270764,0.000000,0.000000,0.250000,0,0);}
.m43_c00211{transform:matrix(0.271700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271700,0.000000,0.000000,0.250000,0,0);}
.mb0_c00211{transform:matrix(0.272516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272516,0.000000,0.000000,0.250000,0,0);}
.m1c_c00211{transform:matrix(0.273110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273110,0.000000,0.000000,0.250000,0,0);}
.mbe_c00211{transform:matrix(0.274865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274865,0.000000,0.000000,0.250000,0,0);}
.m7e_c00211{transform:matrix(0.275610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275610,0.000000,0.000000,0.250000,0,0);}
.mb4_c00211{transform:matrix(0.275819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275819,0.000000,0.000000,0.250000,0,0);}
.m8_c00211{transform:matrix(0.277289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277289,0.000000,0.000000,0.250000,0,0);}
.ma5_c00211{transform:matrix(0.277361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277361,0.000000,0.000000,0.250000,0,0);}
.m33_c00211{transform:matrix(0.277901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277901,0.000000,0.000000,0.250000,0,0);}
.m4f_c00211{transform:matrix(0.278228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278228,0.000000,0.000000,0.250000,0,0);}
.mc6_c00211{transform:matrix(0.278548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278548,0.000000,0.000000,0.250000,0,0);}
.m47_c00211{transform:matrix(0.279604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279604,0.000000,0.000000,0.250000,0,0);}
.mbd_c00211{transform:matrix(0.279653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279653,0.000000,0.000000,0.250000,0,0);}
.m24_c00211{transform:matrix(0.280188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280188,0.000000,0.000000,0.250000,0,0);}
.m2b_c00211{transform:matrix(0.281852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281852,0.000000,0.000000,0.250000,0,0);}
.m53_c00211{transform:matrix(0.281936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281936,0.000000,0.000000,0.250000,0,0);}
.m83_c00211{transform:matrix(0.282430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282430,0.000000,0.000000,0.250000,0,0);}
.m26_c00211{transform:matrix(0.282876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282876,0.000000,0.000000,0.250000,0,0);}
.m50_c00211{transform:matrix(0.283119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283119,0.000000,0.000000,0.250000,0,0);}
.mb1_c00211{transform:matrix(0.283773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283773,0.000000,0.000000,0.250000,0,0);}
.m8d_c00211{transform:matrix(0.284013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284013,0.000000,0.000000,0.250000,0,0);}
.me_c00211{transform:matrix(0.284016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284016,0.000000,0.000000,0.250000,0,0);}
.m8f_c00211{transform:matrix(0.285202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285202,0.000000,0.000000,0.250000,0,0);}
.m3a_c00211{transform:matrix(0.285653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285653,0.000000,0.000000,0.250000,0,0);}
.m27_c00211{transform:matrix(0.285780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285780,0.000000,0.000000,0.250000,0,0);}
.m15_c00211{transform:matrix(0.285790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285790,0.000000,0.000000,0.250000,0,0);}
.m1e_c00211{transform:matrix(0.286194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286194,0.000000,0.000000,0.250000,0,0);}
.m1b_c00211{transform:matrix(0.286635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286635,0.000000,0.000000,0.250000,0,0);}
.mc1_c00211{transform:matrix(0.286923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286923,0.000000,0.000000,0.250000,0,0);}
.ma3_c00211{transform:matrix(0.287591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287591,0.000000,0.000000,0.250000,0,0);}
.m62_c00211{transform:matrix(0.289045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289045,0.000000,0.000000,0.250000,0,0);}
.m5_c00211{transform:matrix(0.289127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289127,0.000000,0.000000,0.250000,0,0);}
.m9a_c00211{transform:matrix(0.289863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289863,0.000000,0.000000,0.250000,0,0);}
.ma6_c00211{transform:matrix(0.290242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290242,0.000000,0.000000,0.250000,0,0);}
.m8b_c00211{transform:matrix(0.290479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290479,0.000000,0.000000,0.250000,0,0);}
.m61_c00211{transform:matrix(0.290576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290576,0.000000,0.000000,0.250000,0,0);}
.m60_c00211{transform:matrix(0.290893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290893,0.000000,0.000000,0.250000,0,0);}
.m9b_c00211{transform:matrix(0.291109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291109,0.000000,0.000000,0.250000,0,0);}
.m23_c00211{transform:matrix(0.291334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291334,0.000000,0.000000,0.250000,0,0);}
.m77_c00211{transform:matrix(0.291939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291939,0.000000,0.000000,0.250000,0,0);}
.mc8_c00211{transform:matrix(0.291966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291966,0.000000,0.000000,0.250000,0,0);}
.m74_c00211{transform:matrix(0.292431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292431,0.000000,0.000000,0.250000,0,0);}
.m9c_c00211{transform:matrix(0.292663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292663,0.000000,0.000000,0.250000,0,0);}
.mf_c00211{transform:matrix(0.292764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292764,0.000000,0.000000,0.250000,0,0);}
.m5e_c00211{transform:matrix(0.293368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293368,0.000000,0.000000,0.250000,0,0);}
.mae_c00211{transform:matrix(0.293637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293637,0.000000,0.000000,0.250000,0,0);}
.m56_c00211{transform:matrix(0.294085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294085,0.000000,0.000000,0.250000,0,0);}
.m7f_c00211{transform:matrix(0.294359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294359,0.000000,0.000000,0.250000,0,0);}
.m81_c00211{transform:matrix(0.294481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294481,0.000000,0.000000,0.250000,0,0);}
.md4_c00211{transform:matrix(0.294560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294560,0.000000,0.000000,0.250000,0,0);}
.m4_c00211{transform:matrix(0.295148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295148,0.000000,0.000000,0.250000,0,0);}
.m5d_c00211{transform:matrix(0.295231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295231,0.000000,0.000000,0.250000,0,0);}
.mcc_c00211{transform:matrix(0.295996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295996,0.000000,0.000000,0.250000,0,0);}
.m57_c00211{transform:matrix(0.296894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296894,0.000000,0.000000,0.250000,0,0);}
.mc9_c00211{transform:matrix(0.296963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296963,0.000000,0.000000,0.250000,0,0);}
.m9e_c00211{transform:matrix(0.297442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297442,0.000000,0.000000,0.250000,0,0);}
.m73_c00211{transform:matrix(0.297502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297502,0.000000,0.000000,0.250000,0,0);}
.m59_c00211{transform:matrix(0.298572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298572,0.000000,0.000000,0.250000,0,0);}
.m31_c00211{transform:matrix(0.298797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298797,0.000000,0.000000,0.250000,0,0);}
.m9_c00211{transform:matrix(0.299335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299335,0.000000,0.000000,0.250000,0,0);}
.m6_c00211{transform:matrix(0.299360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299360,0.000000,0.000000,0.250000,0,0);}
.maf_c00211{transform:matrix(0.299967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299967,0.000000,0.000000,0.250000,0,0);}
.m51_c00211{transform:matrix(0.300118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300118,0.000000,0.000000,0.250000,0,0);}
.m6c_c00211{transform:matrix(0.300168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300168,0.000000,0.000000,0.250000,0,0);}
.m5b_c00211{transform:matrix(0.300198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300198,0.000000,0.000000,0.250000,0,0);}
.ma9_c00211{transform:matrix(0.300738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300738,0.000000,0.000000,0.250000,0,0);}
.m9d_c00211{transform:matrix(0.301276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301276,0.000000,0.000000,0.250000,0,0);}
.mcd_c00211{transform:matrix(0.301760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301760,0.000000,0.000000,0.250000,0,0);}
.m84_c00211{transform:matrix(0.302123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302123,0.000000,0.000000,0.250000,0,0);}
.m91_c00211{transform:matrix(0.302369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302369,0.000000,0.000000,0.250000,0,0);}
.md1_c00211{transform:matrix(0.302488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302488,0.000000,0.000000,0.250000,0,0);}
.ma0_c00211{transform:matrix(0.303038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303038,0.000000,0.000000,0.250000,0,0);}
.m67_c00211{transform:matrix(0.303495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303495,0.000000,0.000000,0.250000,0,0);}
.m0_c00211{transform:matrix(0.304586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304586,0.000000,0.000000,0.250000,0,0);}
.m2f_c00211{transform:matrix(0.304803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304803,0.000000,0.000000,0.250000,0,0);}
.m18_c00211{transform:matrix(0.304964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304964,0.000000,0.000000,0.250000,0,0);}
.ma8_c00211{transform:matrix(0.305008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305008,0.000000,0.000000,0.250000,0,0);}
.m4a_c00211{transform:matrix(0.306135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306135,0.000000,0.000000,0.250000,0,0);}
.mab_c00211{transform:matrix(0.306331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306331,0.000000,0.000000,0.250000,0,0);}
.mb6_c00211{transform:matrix(0.306653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306653,0.000000,0.000000,0.250000,0,0);}
.m3b_c00211{transform:matrix(0.307774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307774,0.000000,0.000000,0.250000,0,0);}
.m1d_c00211{transform:matrix(0.308334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308334,0.000000,0.000000,0.250000,0,0);}
.md2_c00211{transform:matrix(0.308570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308570,0.000000,0.000000,0.250000,0,0);}
.m95_c00211{transform:matrix(0.308677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308677,0.000000,0.000000,0.250000,0,0);}
.mcf_c00211{transform:matrix(0.309608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309608,0.000000,0.000000,0.250000,0,0);}
.m79_c00211{transform:matrix(0.310246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310246,0.000000,0.000000,0.250000,0,0);}
.m3c_c00211{transform:matrix(0.310299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310299,0.000000,0.000000,0.250000,0,0);}
.m3e_c00211{transform:matrix(0.310516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310516,0.000000,0.000000,0.250000,0,0);}
.m5f_c00211{transform:matrix(0.310889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310889,0.000000,0.000000,0.250000,0,0);}
.mcb_c00211{transform:matrix(0.310969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310969,0.000000,0.000000,0.250000,0,0);}
.ma1_c00211{transform:matrix(0.311311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311311,0.000000,0.000000,0.250000,0,0);}
.m7b_c00211{transform:matrix(0.311624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311624,0.000000,0.000000,0.250000,0,0);}
.m7_c00211{transform:matrix(0.311692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311692,0.000000,0.000000,0.250000,0,0);}
.m55_c00211{transform:matrix(0.313016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313016,0.000000,0.000000,0.250000,0,0);}
.m90_c00211{transform:matrix(0.313166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313166,0.000000,0.000000,0.250000,0,0);}
.m52_c00211{transform:matrix(0.313354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313354,0.000000,0.000000,0.250000,0,0);}
.mc3_c00211{transform:matrix(0.313389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313389,0.000000,0.000000,0.250000,0,0);}
.m35_c00211{transform:matrix(0.314434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314434,0.000000,0.000000,0.250000,0,0);}
.m46_c00211{transform:matrix(0.314571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314571,0.000000,0.000000,0.250000,0,0);}
.m28_c00211{transform:matrix(0.315429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315429,0.000000,0.000000,0.250000,0,0);}
.mb8_c00211{transform:matrix(0.315504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315504,0.000000,0.000000,0.250000,0,0);}
.mb3_c00211{transform:matrix(0.315828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315828,0.000000,0.000000,0.250000,0,0);}
.m30_c00211{transform:matrix(0.315955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315955,0.000000,0.000000,0.250000,0,0);}
.m87_c00211{transform:matrix(0.316597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316597,0.000000,0.000000,0.250000,0,0);}
.m8c_c00211{transform:matrix(0.316908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316908,0.000000,0.000000,0.250000,0,0);}
.mbc_c00211{transform:matrix(0.317383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317383,0.000000,0.000000,0.250000,0,0);}
.m6a_c00211{transform:matrix(0.319670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319670,0.000000,0.000000,0.250000,0,0);}
.m66_c00211{transform:matrix(0.319713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319713,0.000000,0.000000,0.250000,0,0);}
.m36_c00211{transform:matrix(0.320378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320378,0.000000,0.000000,0.250000,0,0);}
.m4b_c00211{transform:matrix(0.321699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321699,0.000000,0.000000,0.250000,0,0);}
.m12_c00211{transform:matrix(0.321885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321885,0.000000,0.000000,0.250000,0,0);}
.m96_c00211{transform:matrix(0.322342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322342,0.000000,0.000000,0.250000,0,0);}
.m70_c00211{transform:matrix(0.323896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323896,0.000000,0.000000,0.250000,0,0);}
.m20_c00211{transform:matrix(0.324326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324326,0.000000,0.000000,0.250000,0,0);}
.mc4_c00211{transform:matrix(0.324943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324943,0.000000,0.000000,0.250000,0,0);}
.m7d_c00211{transform:matrix(0.325015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325015,0.000000,0.000000,0.250000,0,0);}
.mc2_c00211{transform:matrix(0.326045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326045,0.000000,0.000000,0.250000,0,0);}
.m54_c00211{transform:matrix(0.327562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327562,0.000000,0.000000,0.250000,0,0);}
.m17_c00211{transform:matrix(0.327982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327982,0.000000,0.000000,0.250000,0,0);}
.m68_c00211{transform:matrix(0.328163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328163,0.000000,0.000000,0.250000,0,0);}
.m2e_c00211{transform:matrix(0.329274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329274,0.000000,0.000000,0.250000,0,0);}
.m64_c00211{transform:matrix(0.329679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329679,0.000000,0.000000,0.250000,0,0);}
.m65_c00211{transform:matrix(0.330878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330878,0.000000,0.000000,0.250000,0,0);}
.mc0_c00211{transform:matrix(0.331642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331642,0.000000,0.000000,0.250000,0,0);}
.m22_c00211{transform:matrix(0.331881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331881,0.000000,0.000000,0.250000,0,0);}
.mb5_c00211{transform:matrix(0.334510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334510,0.000000,0.000000,0.250000,0,0);}
.m4c_c00211{transform:matrix(0.334766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334766,0.000000,0.000000,0.250000,0,0);}
.m40_c00211{transform:matrix(0.335373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335373,0.000000,0.000000,0.250000,0,0);}
.m69_c00211{transform:matrix(0.335641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335641,0.000000,0.000000,0.250000,0,0);}
.m39_c00211{transform:matrix(0.335838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335838,0.000000,0.000000,0.250000,0,0);}
.m1a_c00211{transform:matrix(0.335856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335856,0.000000,0.000000,0.250000,0,0);}
.m58_c00211{transform:matrix(0.336128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336128,0.000000,0.000000,0.250000,0,0);}
.m8e_c00211{transform:matrix(0.336917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336917,0.000000,0.000000,0.250000,0,0);}
.m72_c00211{transform:matrix(0.337070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337070,0.000000,0.000000,0.250000,0,0);}
.mc5_c00211{transform:matrix(0.337263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337263,0.000000,0.000000,0.250000,0,0);}
.m6f_c00211{transform:matrix(0.337970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337970,0.000000,0.000000,0.250000,0,0);}
.m6e_c00211{transform:matrix(0.338528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338528,0.000000,0.000000,0.250000,0,0);}
.m8a_c00211{transform:matrix(0.338920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338920,0.000000,0.000000,0.250000,0,0);}
.mac_c00211{transform:matrix(0.339380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339380,0.000000,0.000000,0.250000,0,0);}
.ma2_c00211{transform:matrix(0.340394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340394,0.000000,0.000000,0.250000,0,0);}
.mb7_c00211{transform:matrix(0.340886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340886,0.000000,0.000000,0.250000,0,0);}
.mb_c00211{transform:matrix(0.341856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341856,0.000000,0.000000,0.250000,0,0);}
.mbb_c00211{transform:matrix(0.344678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344678,0.000000,0.000000,0.250000,0,0);}
.m89_c00211{transform:matrix(0.345062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345062,0.000000,0.000000,0.250000,0,0);}
.m3d_c00211{transform:matrix(0.348072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348072,0.000000,0.000000,0.250000,0,0);}
.m10_c00211{transform:matrix(0.350227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350227,0.000000,0.000000,0.250000,0,0);}
.ma7_c00211{transform:matrix(0.350987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350987,0.000000,0.000000,0.250000,0,0);}
.m48_c00211{transform:matrix(0.352330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352330,0.000000,0.000000,0.250000,0,0);}
.m85_c00211{transform:matrix(0.352813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352813,0.000000,0.000000,0.250000,0,0);}
.mad_c00211{transform:matrix(0.353451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353451,0.000000,0.000000,0.250000,0,0);}
.m5c_c00211{transform:matrix(0.355497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355497,0.000000,0.000000,0.250000,0,0);}
.m49_c00211{transform:matrix(0.357801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357801,0.000000,0.000000,0.250000,0,0);}
.m16_c00211{transform:matrix(0.360048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360048,0.000000,0.000000,0.250000,0,0);}
.m97_c00211{transform:matrix(0.361720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361720,0.000000,0.000000,0.250000,0,0);}
.m99_c00211{transform:matrix(0.362018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362018,0.000000,0.000000,0.250000,0,0);}
.md0_c00211{transform:matrix(0.364093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364093,0.000000,0.000000,0.250000,0,0);}
.ma4_c00211{transform:matrix(0.364243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364243,0.000000,0.000000,0.250000,0,0);}
.m44_c00211{transform:matrix(0.364530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364530,0.000000,0.000000,0.250000,0,0);}
.m41_c00211{transform:matrix(0.364531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364531,0.000000,0.000000,0.250000,0,0);}
.m80_c00211{transform:matrix(0.367573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367573,0.000000,0.000000,0.250000,0,0);}
.m88_c00211{transform:matrix(0.368983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368983,0.000000,0.000000,0.250000,0,0);}
.m38_c00211{transform:matrix(0.370554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370554,0.000000,0.000000,0.250000,0,0);}
.mbf_c00211{transform:matrix(0.370709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370709,0.000000,0.000000,0.250000,0,0);}
.m6b_c00211{transform:matrix(0.371302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371302,0.000000,0.000000,0.250000,0,0);}
.m76_c00211{transform:matrix(0.374225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374225,0.000000,0.000000,0.250000,0,0);}
.m92_c00211{transform:matrix(0.375040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375040,0.000000,0.000000,0.250000,0,0);}
.m1f_c00211{transform:matrix(0.377617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377617,0.000000,0.000000,0.250000,0,0);}
.m75_c00211{transform:matrix(0.378955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378955,0.000000,0.000000,0.250000,0,0);}
.m45_c00211{transform:matrix(0.381710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381710,0.000000,0.000000,0.250000,0,0);}
.mc_c00211{transform:matrix(0.390937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390937,0.000000,0.000000,0.250000,0,0);}
.m3f_c00211{transform:matrix(0.395595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395595,0.000000,0.000000,0.250000,0,0);}
.m2d_c00211{transform:matrix(0.407413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407413,0.000000,0.000000,0.250000,0,0);}
.m63_c00211{transform:matrix(0.430152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430152,0.000000,0.000000,0.250000,0,0);}
.m19_c00211{transform:matrix(0.437931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437931,0.000000,0.000000,0.250000,0,0);}
.m5a_c00211{transform:matrix(0.443549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443549,0.000000,0.000000,0.250000,0,0);}
.v0_c00211{vertical-align:0.000000px;}
.ls7_c00211{letter-spacing:-2.674980px;}
.lse_c00211{letter-spacing:-1.574417px;}
.ls16_c00211{letter-spacing:-1.390990px;}
.ls10_c00211{letter-spacing:-0.810137px;}
.lsc_c00211{letter-spacing:-0.771923px;}
.ls5_c00211{letter-spacing:0.000000px;}
.ls3_c00211{letter-spacing:1.413918px;}
.lsf_c00211{letter-spacing:1.643400px;}
.lsb_c00211{letter-spacing:1.831500px;}
.ls12_c00211{letter-spacing:2.201126px;}
.ls9_c00211{letter-spacing:2.231698px;}
.ls2_c00211{letter-spacing:2.743765px;}
.ls17_c00211{letter-spacing:2.835479px;}
.ls0_c00211{letter-spacing:2.873693px;}
.ls14_c00211{letter-spacing:2.888978px;}
.ls11_c00211{letter-spacing:3.168000px;}
.ls8_c00211{letter-spacing:3.538616px;}
.ls4_c00211{letter-spacing:3.583810px;}
.ls15_c00211{letter-spacing:3.683830px;}
.ls6_c00211{letter-spacing:3.821400px;}
.lsa_c00211{letter-spacing:3.880810px;}
.lsd_c00211{letter-spacing:3.979810px;}
.ls1_c00211{letter-spacing:14.139180px;}
.ls13_c00211{letter-spacing:58.449798px;}
.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;}
}
.ws3_c00211{word-spacing:-21.850765px;}
.ws0_c00211{word-spacing:-19.107000px;}
.ws4_c00211{word-spacing:-1.375704px;}
.ws5_c00211{word-spacing:0.000000px;}
.ws1_c00211{word-spacing:0.382140px;}
.ws2_c00211{word-spacing:3.821796px;}
._17_c00211{margin-left:-10.478160px;}
._d_c00211{margin-left:-4.738536px;}
._13_c00211{margin-left:-1.381248px;}
._e_c00211{width:5.273532px;}
._1_c00211{width:6.649236px;}
._6_c00211{width:7.948512px;}
._0_c00211{width:9.553500px;}
._11_c00211{width:10.929204px;}
._10_c00211{width:12.075624px;}
._15_c00211{width:13.909896px;}
._2_c00211{width:17.578440px;}
._c_c00211{width:21.476268px;}
._4_c00211{width:22.775544px;}
._8_c00211{width:24.146331px;}
._18_c00211{width:25.221240px;}
._a_c00211{width:27.482251px;}
._3_c00211{width:29.736036px;}
._5_c00211{width:31.992840px;}
._b_c00211{width:33.356268px;}
._14_c00211{width:34.514139px;}
._7_c00211{width:35.844732px;}
._16_c00211{width:39.895812px;}
._9_c00211{width:41.028768px;}
._f_c00211{width:47.920356px;}
._12_c00211{width:56.479896px;}
._19_c00211{width:124.368948px;}
.fc0_c00211{color:transparent;}
.fs11_c00211{font-size:23.166000px;}
.fsf_c00211{font-size:27.720000px;}
.fs8_c00211{font-size:32.868000px;}
.fs9_c00211{font-size:33.264000px;}
.fs13_c00211{font-size:34.056198px;}
.fs6_c00211{font-size:36.630000px;}
.fs2_c00211{font-size:45.144000px;}
.fs12_c00211{font-size:50.688000px;}
.fsb_c00211{font-size:58.449798px;}
.fsa_c00211{font-size:63.360000px;}
.fs10_c00211{font-size:66.528000px;}
.fse_c00211{font-size:70.884000px;}
.fsd_c00211{font-size:71.280000px;}
.fs0_c00211{font-size:71.676198px;}
.fs4_c00211{font-size:73.656198px;}
.fs3_c00211{font-size:76.428000px;}
.fs1_c00211{font-size:77.022198px;}
.fs5_c00211{font-size:77.616198px;}
.fsc_c00211{font-size:78.804000px;}
.fs7_c00211{font-size:79.596198px;}
.fs14_c00211{font-size:91.872198px;}
.y24_c00211{bottom:-2.236365px;}
.y0_c00211{bottom:0.000000px;}
.y23_c00211{bottom:30.918735px;}
.y1e_c00211{bottom:31.631535px;}
.y11_c00211{bottom:47.664585px;}
.y1_c00211{bottom:76.500000px;}
.y22_c00211{bottom:92.219535px;}
.y21_c00211{bottom:97.921935px;}
.y20_c00211{bottom:126.077535px;}
.y1f_c00211{bottom:158.148585px;}
.y1d_c00211{bottom:186.309135px;}
.y1c_c00211{bottom:219.092985px;}
.y1b_c00211{bottom:251.173935px;}
.y1a_c00211{bottom:282.180735px;}
.y19_c00211{bottom:315.320985px;}
.y18_c00211{bottom:347.758335px;}
.y17_c00211{bottom:377.690985px;}
.y16_c00211{bottom:410.479785px;}
.y15_c00211{bottom:443.273535px;}
.y14_c00211{bottom:476.413785px;}
.y13_c00211{bottom:508.494735px;}
.y12_c00211{bottom:540.209385px;}
.y10_c00211{bottom:605.430585px;}
.yf_c00211{bottom:637.150185px;}
.yd_c00211{bottom:669.231135px;}
.ye_c00211{bottom:674.933535px;}
.yc_c00211{bottom:701.663535px;}
.yb_c00211{bottom:733.734585px;}
.y9_c00211{bottom:766.166985px;}
.ya_c00211{bottom:771.161535px;}
.y8_c00211{bottom:800.029935px;}
.y7_c00211{bottom:832.105935px;}
.y6_c00211{bottom:864.894735px;}
.y5_c00211{bottom:899.109135px;}
.y4_c00211{bottom:931.180185px;}
.y3_c00211{bottom:1020.636585px;}
.y2_c00211{bottom:1082.650185px;}
.h12_c00211{height:24.161414px;}
.h10_c00211{height:28.911094px;}
.ha_c00211{height:34.280297px;}
.hb_c00211{height:34.693313px;}
.h14_c00211{height:35.519550px;}
.h8_c00211{height:38.203945px;}
.hd_c00211{height:38.927565px;}
.h4_c00211{height:47.083781px;}
.h13_c00211{height:52.866000px;}
.hc_c00211{height:66.082500px;}
.h11_c00211{height:69.386625px;}
.hf_c00211{height:69.957422px;}
.h2_c00211{height:70.346269px;}
.h5_c00211{height:75.009902px;}
.h7_c00211{height:76.176054px;}
.h6_c00211{height:76.821113px;}
.he_c00211{height:77.341816px;}
.h9_c00211{height:78.119315px;}
.h3_c00211{height:80.331746px;}
.h15_c00211{height:90.167538px;}
.h1_c00211{height:1110.000000px;}
.h0_c00211{height:1263.000000px;}
.w1_c00211{width:733.500000px;}
.w0_c00211{width:892.500000px;}
.x0_c00211{left:0.000000px;}
.x53_c00211{left:59.132235px;}
.x51_c00211{left:60.557835px;}
.x58_c00211{left:63.681285px;}
.x5c_c00211{left:68.398635px;}
.x5_c00211{left:70.027185px;}
.x73_c00211{left:71.432985px;}
.x7c_c00211{left:73.546635px;}
.x1_c00211{left:79.500000px;}
.x78_c00211{left:82.110135px;}
.x17_c00211{left:91.208235px;}
.x24_c00211{left:92.762535px;}
.x43_c00211{left:102.454635px;}
.x18_c00211{left:103.513935px;}
.x71_c00211{left:104.919735px;}
.x6_c00211{left:113.899035px;}
.x54_c00211{left:114.923685px;}
.x7_c00211{left:124.912785px;}
.x19_c00211{left:136.401735px;}
.x60_c00211{left:138.168885px;}
.x25_c00211{left:146.108685px;}
.x55_c00211{left:147.643185px;}
.x2f_c00211{left:157.864935px;}
.x59_c00211{left:159.117285px;}
.x8_c00211{left:169.071735px;}
.x44_c00211{left:174.546435px;}
.x26_c00211{left:180.337935px;}
.x3e_c00211{left:182.619885px;}
.x4e_c00211{left:191.148735px;}
.x30_c00211{left:201.019035px;}
.x9_c00211{left:202.612935px;}
.x69_c00211{left:203.984085px;}
.x36_c00211{left:208.914285px;}
.x37_c00211{left:213.418785px;}
.x79_c00211{left:214.715685px;}
.xa_c00211{left:224.927535px;}
.x64_c00211{left:234.842385px;}
.x1a_c00211{left:235.901685px;}
.x6a_c00211{left:237.119385px;}
.xb_c00211{left:246.955035px;}
.x27_c00211{left:258.127185px;}
.xc_c00211{left:268.873635px;}
.x61_c00211{left:269.962635px;}
.x1b_c00211{left:279.719085px;}
.x6d_c00211{left:280.981335px;}
.xd_c00211{left:290.995185px;}
.x28_c00211{left:300.454635px;}
.x48_c00211{left:302.429685px;}
.x65_c00211{left:304.959135px;}
.x31_c00211{left:309.721035px;}
.x3f_c00211{left:313.398885px;}
.x7a_c00211{left:314.740335px;}
.x49_c00211{left:324.006735px;}
.x1c_c00211{left:325.669935px;}
.x38_c00211{left:326.922285px;}
.xe_c00211{left:335.465985px;}
.x6e_c00211{left:336.599535px;}
.x5a_c00211{left:338.950785px;}
.x40_c00211{left:347.311335px;}
.xf_c00211{left:357.637035px;}
.x56_c00211{left:360.418935px;}
.x32_c00211{left:368.908185px;}
.x29_c00211{left:378.827985px;}
.x39_c00211{left:380.560485px;}
.x45_c00211{left:389.554635px;}
.x41_c00211{left:391.851435px;}
.x10_c00211{left:402.459285px;}
.x4a_c00211{left:404.053185px;}
.x1d_c00211{left:412.784985px;}
.x7b_c00211{left:413.943285px;}
.x4f_c00211{left:415.091685px;}
.x3a_c00211{left:424.858035px;}
.x11_c00211{left:434.079885px;}
.x33_c00211{left:435.658935px;}
.x4b_c00211{left:445.697535px;}
.x1e_c00211{left:447.088485px;}
.x12_c00211{left:457.221135px;}
.x62_c00211{left:458.468535px;}
.x2a_c00211{left:468.635835px;}
.x13_c00211{left:479.154585px;}
.x50_c00211{left:480.520785px;}
.x67_c00211{left:482.956185px;}
.x46_c00211{left:490.084185px;}
.x3b_c00211{left:491.559285px;}
.x14_c00211{left:501.964185px;}
.x2b_c00211{left:512.685885px;}
.x74_c00211{left:513.938235px;}
.x4_c00211{left:515.447985px;}
.x6c_c00211{left:520.670235px;}
.x1f_c00211{left:524.090685px;}
.x20_c00211{left:533.540235px;}
.x6f_c00211{left:535.832085px;}
.x47_c00211{left:537.559635px;}
.x34_c00211{left:545.816235px;}
.x5d_c00211{left:548.113035px;}
.x2c_c00211{left:556.681485px;}
.x7d_c00211{left:563.730285px;}
.x5e_c00211{left:567.640785px;}
.x21_c00211{left:568.957485px;}
.x75_c00211{left:578.832735px;}
.x5b_c00211{left:580.362285px;}
.x66_c00211{left:581.391885px;}
.x2d_c00211{left:589.108935px;}
.x35_c00211{left:590.692935px;}
.x6b_c00211{left:600.924585px;}
.x22_c00211{left:602.072985px;}
.x70_c00211{left:611.982885px;}
.x3c_c00211{left:613.086735px;}
.x15_c00211{left:622.249185px;}
.x2e_c00211{left:623.852985px;}
.x76_c00211{left:634.520235px;}
.x52_c00211{left:635.901285px;}
.x5f_c00211{left:637.737735px;}
.x68_c00211{left:645.029085px;}
.x3d_c00211{left:646.420035px;}
.x23_c00211{left:655.379535px;}
.x2_c00211{left:656.597235px;}
.x77_c00211{left:657.651585px;}
.x4c_c00211{left:667.719885px;}
.x72_c00211{left:668.774235px;}
.x4d_c00211{left:676.456635px;}
.x16_c00211{left:678.674235px;}
.x63_c00211{left:690.173085px;}
.x7e_c00211{left:693.969735px;}
.x57_c00211{left:695.306235px;}
.x42_c00211{left:700.835385px;}
.x3_c00211{left:706.814985px;}
@media print{
.v0_c00211{vertical-align:0.000000pt;}
.ls7_c00211{letter-spacing:-2.377760pt;}
.lse_c00211{letter-spacing:-1.399482pt;}
.ls16_c00211{letter-spacing:-1.236435pt;}
.ls10_c00211{letter-spacing:-0.720122pt;}
.lsc_c00211{letter-spacing:-0.686154pt;}
.ls5_c00211{letter-spacing:0.000000pt;}
.ls3_c00211{letter-spacing:1.256816pt;}
.lsf_c00211{letter-spacing:1.460800pt;}
.lsb_c00211{letter-spacing:1.628000pt;}
.ls12_c00211{letter-spacing:1.956557pt;}
.ls9_c00211{letter-spacing:1.983731pt;}
.ls2_c00211{letter-spacing:2.438902pt;}
.ls17_c00211{letter-spacing:2.520426pt;}
.ls0_c00211{letter-spacing:2.554394pt;}
.ls14_c00211{letter-spacing:2.567981pt;}
.ls11_c00211{letter-spacing:2.816000pt;}
.ls8_c00211{letter-spacing:3.145437pt;}
.ls4_c00211{letter-spacing:3.185609pt;}
.ls15_c00211{letter-spacing:3.274515pt;}
.ls6_c00211{letter-spacing:3.396800pt;}
.lsa_c00211{letter-spacing:3.449609pt;}
.lsd_c00211{letter-spacing:3.537609pt;}
.ls1_c00211{letter-spacing:12.568160pt;}
.ls13_c00211{letter-spacing:51.955376pt;}
.ws3_c00211{word-spacing:-19.422902pt;}
.ws0_c00211{word-spacing:-16.984000pt;}
.ws4_c00211{word-spacing:-1.222848pt;}
.ws5_c00211{word-spacing:0.000000pt;}
.ws1_c00211{word-spacing:0.339680pt;}
.ws2_c00211{word-spacing:3.397152pt;}
._17_c00211{margin-left:-9.313920pt;}
._d_c00211{margin-left:-4.212032pt;}
._13_c00211{margin-left:-1.227776pt;}
._e_c00211{width:4.687584pt;}
._1_c00211{width:5.910432pt;}
._6_c00211{width:7.065344pt;}
._0_c00211{width:8.492000pt;}
._11_c00211{width:9.714848pt;}
._10_c00211{width:10.733888pt;}
._15_c00211{width:12.364352pt;}
._2_c00211{width:15.625280pt;}
._c_c00211{width:19.090016pt;}
._4_c00211{width:20.244928pt;}
._8_c00211{width:21.463405pt;}
._18_c00211{width:22.418880pt;}
._a_c00211{width:24.428668pt;}
._3_c00211{width:26.432032pt;}
._5_c00211{width:28.438080pt;}
._b_c00211{width:29.650016pt;}
._14_c00211{width:30.679235pt;}
._7_c00211{width:31.861984pt;}
._16_c00211{width:35.462944pt;}
._9_c00211{width:36.470016pt;}
._f_c00211{width:42.595872pt;}
._12_c00211{width:50.204352pt;}
._19_c00211{width:110.550176pt;}
.fs11_c00211{font-size:20.592000pt;}
.fsf_c00211{font-size:24.640000pt;}
.fs8_c00211{font-size:29.216000pt;}
.fs9_c00211{font-size:29.568000pt;}
.fs13_c00211{font-size:30.272176pt;}
.fs6_c00211{font-size:32.560000pt;}
.fs2_c00211{font-size:40.128000pt;}
.fs12_c00211{font-size:45.056000pt;}
.fsb_c00211{font-size:51.955376pt;}
.fsa_c00211{font-size:56.320000pt;}
.fs10_c00211{font-size:59.136000pt;}
.fse_c00211{font-size:63.008000pt;}
.fsd_c00211{font-size:63.360000pt;}
.fs0_c00211{font-size:63.712176pt;}
.fs4_c00211{font-size:65.472176pt;}
.fs3_c00211{font-size:67.936000pt;}
.fs1_c00211{font-size:68.464176pt;}
.fs5_c00211{font-size:68.992176pt;}
.fsc_c00211{font-size:70.048000pt;}
.fs7_c00211{font-size:70.752176pt;}
.fs14_c00211{font-size:81.664176pt;}
.y24_c00211{bottom:-1.987880pt;}
.y0_c00211{bottom:0.000000pt;}
.y23_c00211{bottom:27.483320pt;}
.y1e_c00211{bottom:28.116920pt;}
.y11_c00211{bottom:42.368520pt;}
.y1_c00211{bottom:68.000000pt;}
.y22_c00211{bottom:81.972920pt;}
.y21_c00211{bottom:87.041720pt;}
.y20_c00211{bottom:112.068920pt;}
.y1f_c00211{bottom:140.576520pt;}
.y1d_c00211{bottom:165.608120pt;}
.y1c_c00211{bottom:194.749320pt;}
.y1b_c00211{bottom:223.265720pt;}
.y1a_c00211{bottom:250.827320pt;}
.y19_c00211{bottom:280.285320pt;}
.y18_c00211{bottom:309.118520pt;}
.y17_c00211{bottom:335.725320pt;}
.y16_c00211{bottom:364.870920pt;}
.y15_c00211{bottom:394.020920pt;}
.y14_c00211{bottom:423.478920pt;}
.y13_c00211{bottom:451.995320pt;}
.y12_c00211{bottom:480.186120pt;}
.y10_c00211{bottom:538.160520pt;}
.yf_c00211{bottom:566.355720pt;}
.yd_c00211{bottom:594.872120pt;}
.ye_c00211{bottom:599.940920pt;}
.yc_c00211{bottom:623.700920pt;}
.yb_c00211{bottom:652.208520pt;}
.y9_c00211{bottom:681.037320pt;}
.ya_c00211{bottom:685.476920pt;}
.y8_c00211{bottom:711.137720pt;}
.y7_c00211{bottom:739.649720pt;}
.y6_c00211{bottom:768.795320pt;}
.y5_c00211{bottom:799.208120pt;}
.y4_c00211{bottom:827.715720pt;}
.y3_c00211{bottom:907.232520pt;}
.y2_c00211{bottom:962.355720pt;}
.h12_c00211{height:21.476813pt;}
.h10_c00211{height:25.698750pt;}
.ha_c00211{height:30.471375pt;}
.hb_c00211{height:30.838500pt;}
.h14_c00211{height:31.572934pt;}
.h8_c00211{height:33.959063pt;}
.hd_c00211{height:34.602280pt;}
.h4_c00211{height:41.852250pt;}
.h13_c00211{height:46.992000pt;}
.hc_c00211{height:58.740000pt;}
.h11_c00211{height:61.677000pt;}
.hf_c00211{height:62.184375pt;}
.h2_c00211{height:62.530016pt;}
.h5_c00211{height:66.675469pt;}
.h7_c00211{height:67.712048pt;}
.h6_c00211{height:68.285434pt;}
.he_c00211{height:68.748281pt;}
.h9_c00211{height:69.439391pt;}
.h3_c00211{height:71.405996pt;}
.h15_c00211{height:80.148923pt;}
.h1_c00211{height:986.666667pt;}
.h0_c00211{height:1122.666667pt;}
.w1_c00211{width:652.000000pt;}
.w0_c00211{width:793.333333pt;}
.x0_c00211{left:0.000000pt;}
.x53_c00211{left:52.561987pt;}
.x51_c00211{left:53.829187pt;}
.x58_c00211{left:56.605587pt;}
.x5c_c00211{left:60.798787pt;}
.x5_c00211{left:62.246387pt;}
.x73_c00211{left:63.495987pt;}
.x7c_c00211{left:65.374787pt;}
.x1_c00211{left:70.666667pt;}
.x78_c00211{left:72.986787pt;}
.x17_c00211{left:81.073987pt;}
.x24_c00211{left:82.455587pt;}
.x43_c00211{left:91.070787pt;}
.x18_c00211{left:92.012387pt;}
.x71_c00211{left:93.261987pt;}
.x6_c00211{left:101.243587pt;}
.x54_c00211{left:102.154387pt;}
.x7_c00211{left:111.033587pt;}
.x19_c00211{left:121.245987pt;}
.x60_c00211{left:122.816787pt;}
.x25_c00211{left:129.874387pt;}
.x55_c00211{left:131.238387pt;}
.x2f_c00211{left:140.324387pt;}
.x59_c00211{left:141.437587pt;}
.x8_c00211{left:150.285987pt;}
.x44_c00211{left:155.152387pt;}
.x26_c00211{left:160.300387pt;}
.x3e_c00211{left:162.328787pt;}
.x4e_c00211{left:169.909987pt;}
.x30_c00211{left:178.683587pt;}
.x9_c00211{left:180.100387pt;}
.x69_c00211{left:181.319187pt;}
.x36_c00211{left:185.701587pt;}
.x37_c00211{left:189.705587pt;}
.x79_c00211{left:190.858387pt;}
.xa_c00211{left:199.935587pt;}
.x64_c00211{left:208.748787pt;}
.x1a_c00211{left:209.690387pt;}
.x6a_c00211{left:210.772787pt;}
.xb_c00211{left:219.515587pt;}
.x27_c00211{left:229.446387pt;}
.xc_c00211{left:238.998787pt;}
.x61_c00211{left:239.966787pt;}
.x1b_c00211{left:248.639187pt;}
.x6d_c00211{left:249.761187pt;}
.xd_c00211{left:258.662387pt;}
.x28_c00211{left:267.070787pt;}
.x48_c00211{left:268.826387pt;}
.x65_c00211{left:271.074787pt;}
.x31_c00211{left:275.307587pt;}
.x3f_c00211{left:278.576787pt;}
.x7a_c00211{left:279.769187pt;}
.x49_c00211{left:288.005987pt;}
.x1c_c00211{left:289.484387pt;}
.x38_c00211{left:290.597587pt;}
.xe_c00211{left:298.191987pt;}
.x6e_c00211{left:299.199587pt;}
.x5a_c00211{left:301.289587pt;}
.x40_c00211{left:308.721187pt;}
.xf_c00211{left:317.899587pt;}
.x56_c00211{left:320.372387pt;}
.x32_c00211{left:327.918387pt;}
.x29_c00211{left:336.735987pt;}
.x39_c00211{left:338.275987pt;}
.x45_c00211{left:346.270787pt;}
.x41_c00211{left:348.312387pt;}
.x10_c00211{left:357.741587pt;}
.x4a_c00211{left:359.158387pt;}
.x1d_c00211{left:366.919987pt;}
.x7b_c00211{left:367.949587pt;}
.x4f_c00211{left:368.970387pt;}
.x3a_c00211{left:377.651587pt;}
.x11_c00211{left:385.848787pt;}
.x33_c00211{left:387.252387pt;}
.x4b_c00211{left:396.175587pt;}
.x1e_c00211{left:397.411987pt;}
.x12_c00211{left:406.418787pt;}
.x62_c00211{left:407.527587pt;}
.x2a_c00211{left:416.565187pt;}
.x13_c00211{left:425.915187pt;}
.x50_c00211{left:427.129587pt;}
.x67_c00211{left:429.294387pt;}
.x46_c00211{left:435.630387pt;}
.x3b_c00211{left:436.941587pt;}
.x14_c00211{left:446.190387pt;}
.x2b_c00211{left:455.720787pt;}
.x74_c00211{left:456.833987pt;}
.x4_c00211{left:458.175987pt;}
.x6c_c00211{left:462.817987pt;}
.x1f_c00211{left:465.858387pt;}
.x20_c00211{left:474.257987pt;}
.x6f_c00211{left:476.295187pt;}
.x47_c00211{left:477.830787pt;}
.x34_c00211{left:485.169987pt;}
.x5d_c00211{left:487.211587pt;}
.x2c_c00211{left:494.827987pt;}
.x7d_c00211{left:501.093587pt;}
.x5e_c00211{left:504.569587pt;}
.x21_c00211{left:505.739987pt;}
.x75_c00211{left:514.517987pt;}
.x5b_c00211{left:515.877587pt;}
.x66_c00211{left:516.792787pt;}
.x2d_c00211{left:523.652387pt;}
.x35_c00211{left:525.060387pt;}
.x6b_c00211{left:534.155187pt;}
.x22_c00211{left:535.175987pt;}
.x70_c00211{left:543.984787pt;}
.x3c_c00211{left:544.965987pt;}
.x15_c00211{left:553.110387pt;}
.x2e_c00211{left:554.535987pt;}
.x76_c00211{left:564.017987pt;}
.x52_c00211{left:565.245587pt;}
.x5f_c00211{left:566.877987pt;}
.x68_c00211{left:573.359187pt;}
.x3d_c00211{left:574.595587pt;}
.x23_c00211{left:582.559587pt;}
.x2_c00211{left:583.641987pt;}
.x77_c00211{left:584.579187pt;}
.x4c_c00211{left:593.528787pt;}
.x72_c00211{left:594.465987pt;}
.x4d_c00211{left:601.294787pt;}
.x16_c00211{left:603.265987pt;}
.x63_c00211{left:613.487187pt;}
.x7e_c00211{left:616.861987pt;}
.x57_c00211{left:618.049987pt;}
.x42_c00211{left:622.964787pt;}
.x3_c00211{left:628.279987pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0eefdf6fdb364b58548db63a.woff2')format("woff");}.ff1_c00212{font-family:ff1_c00212;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00212;src:url('chunks/assets/font_38e1d7bec40e41defbd9799b.woff2')format("woff");}.ff2_c00212{font-family:ff2_c00212;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00212;src:url('chunks/assets/font_3dfc012e2aaa2240dcbe4cc6.woff2')format("woff");}.ff3_c00212{font-family:ff3_c00212;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00212;src:url('chunks/assets/font_661b9f5a0842e81a41702d29.woff2')format("woff");}.ff4_c00212{font-family:ff4_c00212;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00212;src:url('chunks/assets/font_d42332c9c6c273e7576ead6c.woff2')format("woff");}.ff5_c00212{font-family:ff5_c00212;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00212;src:url('chunks/assets/font_4caec64f76df8f0417cc0ddf.woff2')format("woff");}.ff6_c00212{font-family:ff6_c00212;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00212;src:url('chunks/assets/font_a0e620165c065fa0939065bf.woff2')format("woff");}.ff7_c00212{font-family:ff7_c00212;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00212;src:url('chunks/assets/font_260b800418ea3bad9187863e.woff2')format("woff");}.ff8_c00212{font-family:ff8_c00212;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m8a_c00212{transform:matrix(0.020834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020834,0.000000,0.000000,0.250000,0,0);}
.m99_c00212{transform:matrix(0.047620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.047620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.047620,0.000000,0.000000,0.250000,0,0);}
.m8c_c00212{transform:matrix(0.076390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076390,0.000000,0.000000,0.250000,0,0);}
.m9a_c00212{transform:matrix(0.079365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.079365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.079365,0.000000,0.000000,0.250000,0,0);}
.m85_c00212{transform:matrix(0.107934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107934,0.000000,0.000000,0.250000,0,0);}
.mdd_c00212{transform:matrix(0.119566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119566,0.000000,0.000000,0.250000,0,0);}
.ma2_c00212{transform:matrix(0.129630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129630,0.000000,0.000000,0.250000,0,0);}
.m98_c00212{transform:matrix(0.129762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129762,0.000000,0.000000,0.250000,0,0);}
.m89_c00212{transform:matrix(0.138889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138889,0.000000,0.000000,0.250000,0,0);}
.m88_c00212{transform:matrix(0.159723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159723,0.000000,0.000000,0.250000,0,0);}
.m5e_c00212{transform:matrix(0.169976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169976,0.000000,0.000000,0.250000,0,0);}
.m8b_c00212{transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);}
.m58_c00212{transform:matrix(0.214773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214773,0.000000,0.000000,0.250000,0,0);}
.m37_c00212{transform:matrix(0.216704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216704,0.000000,0.000000,0.250000,0,0);}
.m45_c00212{transform:matrix(0.224289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224289,0.000000,0.000000,0.250000,0,0);}
.m73_c00212{transform:matrix(0.229591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229591,0.000000,0.000000,0.250000,0,0);}
.m50_c00212{transform:matrix(0.230202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230202,0.000000,0.000000,0.250000,0,0);}
.m8_c00212{transform:matrix(0.230868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230868,0.000000,0.000000,0.250000,0,0);}
.m1c_c00212{transform:matrix(0.242302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242302,0.000000,0.000000,0.250000,0,0);}
.m33_c00212{transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);}
.m0_c00212{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00212{transform:matrix(0.250114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250114,0.000000,0.000000,0.250000,0,0);}
.m28_c00212{transform:matrix(0.252405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252405,0.000000,0.000000,0.250000,0,0);}
.m42_c00212{transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);}
.m1e_c00212{transform:matrix(0.254729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254729,0.000000,0.000000,0.250000,0,0);}
.m65_c00212{transform:matrix(0.256304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256304,0.000000,0.000000,0.250000,0,0);}
.m2a_c00212{transform:matrix(0.256595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256595,0.000000,0.000000,0.250000,0,0);}
.mae_c00212{transform:matrix(0.256952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256952,0.000000,0.000000,0.250000,0,0);}
.m41_c00212{transform:matrix(0.257621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257621,0.000000,0.000000,0.250000,0,0);}
.m30_c00212{transform:matrix(0.257917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257917,0.000000,0.000000,0.250000,0,0);}
.m48_c00212{transform:matrix(0.257970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257970,0.000000,0.000000,0.250000,0,0);}
.mc5_c00212{transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);}
.ma6_c00212{transform:matrix(0.258294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258294,0.000000,0.000000,0.250000,0,0);}
.mb6_c00212{transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);}
.m5a_c00212{transform:matrix(0.259763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259763,0.000000,0.000000,0.250000,0,0);}
.m82_c00212{transform:matrix(0.260458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260458,0.000000,0.000000,0.250000,0,0);}
.md7_c00212{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.mab_c00212{transform:matrix(0.261080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261080,0.000000,0.000000,0.250000,0,0);}
.m4d_c00212{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.m59_c00212{transform:matrix(0.261735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261735,0.000000,0.000000,0.250000,0,0);}
.mb7_c00212{transform:matrix(0.262256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262256,0.000000,0.000000,0.250000,0,0);}
.mb8_c00212{transform:matrix(0.262649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262649,0.000000,0.000000,0.250000,0,0);}
.m92_c00212{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m60_c00212{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m6e_c00212{transform:matrix(0.264902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264902,0.000000,0.000000,0.250000,0,0);}
.m47_c00212{transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);}
.m7d_c00212{transform:matrix(0.266097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266097,0.000000,0.000000,0.250000,0,0);}
.m80_c00212{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.mb2_c00212{transform:matrix(0.267205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267205,0.000000,0.000000,0.250000,0,0);}
.m23_c00212{transform:matrix(0.267397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267397,0.000000,0.000000,0.250000,0,0);}
.mf_c00212{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m9f_c00212{transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);}
.ma8_c00212{transform:matrix(0.269676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269676,0.000000,0.000000,0.250000,0,0);}
.m52_c00212{transform:matrix(0.269871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269871,0.000000,0.000000,0.250000,0,0);}
.mb0_c00212{transform:matrix(0.270236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270236,0.000000,0.000000,0.250000,0,0);}
.m34_c00212{transform:matrix(0.270241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270241,0.000000,0.000000,0.250000,0,0);}
.mda_c00212{transform:matrix(0.270571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270571,0.000000,0.000000,0.250000,0,0);}
.m8e_c00212{transform:matrix(0.271076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271076,0.000000,0.000000,0.250000,0,0);}
.m16_c00212{transform:matrix(0.271634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271634,0.000000,0.000000,0.250000,0,0);}
.mb_c00212{transform:matrix(0.271720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271720,0.000000,0.000000,0.250000,0,0);}
.m20_c00212{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m6f_c00212{transform:matrix(0.272806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272806,0.000000,0.000000,0.250000,0,0);}
.ma_c00212{transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);}
.m25_c00212{transform:matrix(0.273095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273095,0.000000,0.000000,0.250000,0,0);}
.m39_c00212{transform:matrix(0.273113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273113,0.000000,0.000000,0.250000,0,0);}
.mb1_c00212{transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);}
.m66_c00212{transform:matrix(0.274896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274896,0.000000,0.000000,0.250000,0,0);}
.mcf_c00212{transform:matrix(0.276607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276607,0.000000,0.000000,0.250000,0,0);}
.m55_c00212{transform:matrix(0.276792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276792,0.000000,0.000000,0.250000,0,0);}
.m49_c00212{transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);}
.mbf_c00212{transform:matrix(0.277164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277164,0.000000,0.000000,0.250000,0,0);}
.ma5_c00212{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m8f_c00212{transform:matrix(0.277278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277278,0.000000,0.000000,0.250000,0,0);}
.m97_c00212{transform:matrix(0.277360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277360,0.000000,0.000000,0.250000,0,0);}
.m22_c00212{transform:matrix(0.278068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278068,0.000000,0.000000,0.250000,0,0);}
.m76_c00212{transform:matrix(0.278468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278468,0.000000,0.000000,0.250000,0,0);}
.m3e_c00212{transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);}
.m2_c00212{transform:matrix(0.278582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278582,0.000000,0.000000,0.250000,0,0);}
.m9e_c00212{transform:matrix(0.278651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278651,0.000000,0.000000,0.250000,0,0);}
.m64_c00212{transform:matrix(0.278765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278765,0.000000,0.000000,0.250000,0,0);}
.md1_c00212{transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);}
.m44_c00212{transform:matrix(0.280116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280116,0.000000,0.000000,0.250000,0,0);}
.m1d_c00212{transform:matrix(0.280961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280961,0.000000,0.000000,0.250000,0,0);}
.md5_c00212{transform:matrix(0.281043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281043,0.000000,0.000000,0.250000,0,0);}
.md8_c00212{transform:matrix(0.281143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281143,0.000000,0.000000,0.250000,0,0);}
.m3f_c00212{transform:matrix(0.281237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281237,0.000000,0.000000,0.250000,0,0);}
.mc2_c00212{transform:matrix(0.281338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281338,0.000000,0.000000,0.250000,0,0);}
.m74_c00212{transform:matrix(0.281472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281472,0.000000,0.000000,0.250000,0,0);}
.mba_c00212{transform:matrix(0.281813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281813,0.000000,0.000000,0.250000,0,0);}
.m7b_c00212{transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);}
.m14_c00212{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.md2_c00212{transform:matrix(0.284092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284092,0.000000,0.000000,0.250000,0,0);}
.mc3_c00212{transform:matrix(0.284431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284431,0.000000,0.000000,0.250000,0,0);}
.m7c_c00212{transform:matrix(0.284593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284593,0.000000,0.000000,0.250000,0,0);}
.m19_c00212{transform:matrix(0.284888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284888,0.000000,0.000000,0.250000,0,0);}
.m6d_c00212{transform:matrix(0.285021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285021,0.000000,0.000000,0.250000,0,0);}
.mbc_c00212{transform:matrix(0.285119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285119,0.000000,0.000000,0.250000,0,0);}
.mbb_c00212{transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);}
.m2c_c00212{transform:matrix(0.285655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285655,0.000000,0.000000,0.250000,0,0);}
.mc7_c00212{transform:matrix(0.285997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285997,0.000000,0.000000,0.250000,0,0);}
.m84_c00212{transform:matrix(0.286186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286186,0.000000,0.000000,0.250000,0,0);}
.m4b_c00212{transform:matrix(0.287458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287458,0.000000,0.000000,0.250000,0,0);}
.m1a_c00212{transform:matrix(0.287592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287592,0.000000,0.000000,0.250000,0,0);}
.m24_c00212{transform:matrix(0.288397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288397,0.000000,0.000000,0.250000,0,0);}
.m77_c00212{transform:matrix(0.289049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289049,0.000000,0.000000,0.250000,0,0);}
.md9_c00212{transform:matrix(0.289321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289321,0.000000,0.000000,0.250000,0,0);}
.m15_c00212{transform:matrix(0.290244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290244,0.000000,0.000000,0.250000,0,0);}
.m4f_c00212{transform:matrix(0.290777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290777,0.000000,0.000000,0.250000,0,0);}
.mce_c00212{transform:matrix(0.291109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291109,0.000000,0.000000,0.250000,0,0);}
.m62_c00212{transform:matrix(0.291518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291518,0.000000,0.000000,0.250000,0,0);}
.m6a_c00212{transform:matrix(0.291785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291785,0.000000,0.000000,0.250000,0,0);}
.m79_c00212{transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);}
.m67_c00212{transform:matrix(0.292222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292222,0.000000,0.000000,0.250000,0,0);}
.m91_c00212{transform:matrix(0.292499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292499,0.000000,0.000000,0.250000,0,0);}
.m36_c00212{transform:matrix(0.292503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292503,0.000000,0.000000,0.250000,0,0);}
.m1f_c00212{transform:matrix(0.292840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292840,0.000000,0.000000,0.250000,0,0);}
.md0_c00212{transform:matrix(0.292949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292949,0.000000,0.000000,0.250000,0,0);}
.m57_c00212{transform:matrix(0.293522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293522,0.000000,0.000000,0.250000,0,0);}
.m5d_c00212{transform:matrix(0.293651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293651,0.000000,0.000000,0.250000,0,0);}
.m13_c00212{transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);}
.m9d_c00212{transform:matrix(0.296052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296052,0.000000,0.000000,0.250000,0,0);}
.m75_c00212{transform:matrix(0.296326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296326,0.000000,0.000000,0.250000,0,0);}
.m27_c00212{transform:matrix(0.296448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296448,0.000000,0.000000,0.250000,0,0);}
.m5_c00212{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.ma3_c00212{transform:matrix(0.297290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297290,0.000000,0.000000,0.250000,0,0);}
.m11_c00212{transform:matrix(0.297533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297533,0.000000,0.000000,0.250000,0,0);}
.ma1_c00212{transform:matrix(0.297810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297810,0.000000,0.000000,0.250000,0,0);}
.mbe_c00212{transform:matrix(0.297962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297962,0.000000,0.000000,0.250000,0,0);}
.mcc_c00212{transform:matrix(0.298761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298761,0.000000,0.000000,0.250000,0,0);}
.m32_c00212{transform:matrix(0.299651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299651,0.000000,0.000000,0.250000,0,0);}
.m61_c00212{transform:matrix(0.300448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300448,0.000000,0.000000,0.250000,0,0);}
.m83_c00212{transform:matrix(0.300614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300614,0.000000,0.000000,0.250000,0,0);}
.m51_c00212{transform:matrix(0.300871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300871,0.000000,0.000000,0.250000,0,0);}
.m7_c00212{transform:matrix(0.301141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301141,0.000000,0.000000,0.250000,0,0);}
.m4_c00212{transform:matrix(0.302297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302297,0.000000,0.000000,0.250000,0,0);}
.mc4_c00212{transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);}
.m31_c00212{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.ma7_c00212{transform:matrix(0.302713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302713,0.000000,0.000000,0.250000,0,0);}
.m12_c00212{transform:matrix(0.303146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303146,0.000000,0.000000,0.250000,0,0);}
.m40_c00212{transform:matrix(0.303158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303158,0.000000,0.000000,0.250000,0,0);}
.maf_c00212{transform:matrix(0.303509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303509,0.000000,0.000000,0.250000,0,0);}
.m3d_c00212{transform:matrix(0.303812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303812,0.000000,0.000000,0.250000,0,0);}
.m29_c00212{transform:matrix(0.304176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304176,0.000000,0.000000,0.250000,0,0);}
.mc8_c00212{transform:matrix(0.304372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304372,0.000000,0.000000,0.250000,0,0);}
.m6c_c00212{transform:matrix(0.304517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304517,0.000000,0.000000,0.250000,0,0);}
.m4c_c00212{transform:matrix(0.304786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304786,0.000000,0.000000,0.250000,0,0);}
.m9c_c00212{transform:matrix(0.304848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304848,0.000000,0.000000,0.250000,0,0);}
.m5c_c00212{transform:matrix(0.305475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305475,0.000000,0.000000,0.250000,0,0);}
.me_c00212{transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);}
.m17_c00212{transform:matrix(0.306531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306531,0.000000,0.000000,0.250000,0,0);}
.mc0_c00212{transform:matrix(0.306968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306968,0.000000,0.000000,0.250000,0,0);}
.m35_c00212{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);}
.mdb_c00212{transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);}
.m5f_c00212{transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);}
.mc9_c00212{transform:matrix(0.308280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308280,0.000000,0.000000,0.250000,0,0);}
.ma9_c00212{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m90_c00212{transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);}
.m69_c00212{transform:matrix(0.309041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309041,0.000000,0.000000,0.250000,0,0);}
.m63_c00212{transform:matrix(0.309073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309073,0.000000,0.000000,0.250000,0,0);}
.m4e_c00212{transform:matrix(0.309348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309348,0.000000,0.000000,0.250000,0,0);}
.m93_c00212{transform:matrix(0.309359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309359,0.000000,0.000000,0.250000,0,0);}
.ma0_c00212{transform:matrix(0.310884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310884,0.000000,0.000000,0.250000,0,0);}
.m53_c00212{transform:matrix(0.311426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311426,0.000000,0.000000,0.250000,0,0);}
.md3_c00212{transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);}
.mc6_c00212{transform:matrix(0.312732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312732,0.000000,0.000000,0.250000,0,0);}
.mc_c00212{transform:matrix(0.314182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314182,0.000000,0.000000,0.250000,0,0);}
.maa_c00212{transform:matrix(0.315334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315334,0.000000,0.000000,0.250000,0,0);}
.m3b_c00212{transform:matrix(0.315684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315684,0.000000,0.000000,0.250000,0,0);}
.m68_c00212{transform:matrix(0.315717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315717,0.000000,0.000000,0.250000,0,0);}
.mbd_c00212{transform:matrix(0.315842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315842,0.000000,0.000000,0.250000,0,0);}
.md4_c00212{transform:matrix(0.316105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316105,0.000000,0.000000,0.250000,0,0);}
.mad_c00212{transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);}
.m9_c00212{transform:matrix(0.316215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316215,0.000000,0.000000,0.250000,0,0);}
.m38_c00212{transform:matrix(0.317142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317142,0.000000,0.000000,0.250000,0,0);}
.m7f_c00212{transform:matrix(0.317528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317528,0.000000,0.000000,0.250000,0,0);}
.ma4_c00212{transform:matrix(0.318441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318441,0.000000,0.000000,0.250000,0,0);}
.m2e_c00212{transform:matrix(0.318592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318592,0.000000,0.000000,0.250000,0,0);}
.m1b_c00212{transform:matrix(0.319324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319324,0.000000,0.000000,0.250000,0,0);}
.m78_c00212{transform:matrix(0.319930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319930,0.000000,0.000000,0.250000,0,0);}
.m4a_c00212{transform:matrix(0.321081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321081,0.000000,0.000000,0.250000,0,0);}
.m5b_c00212{transform:matrix(0.321093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321093,0.000000,0.000000,0.250000,0,0);}
.m54_c00212{transform:matrix(0.321328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321328,0.000000,0.000000,0.250000,0,0);}
.mb3_c00212{transform:matrix(0.322550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322550,0.000000,0.000000,0.250000,0,0);}
.md6_c00212{transform:matrix(0.322878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322878,0.000000,0.000000,0.250000,0,0);}
.m21_c00212{transform:matrix(0.323918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323918,0.000000,0.000000,0.250000,0,0);}
.m7a_c00212{transform:matrix(0.324566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324566,0.000000,0.000000,0.250000,0,0);}
.m46_c00212{transform:matrix(0.324926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324926,0.000000,0.000000,0.250000,0,0);}
.md_c00212{transform:matrix(0.325343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325343,0.000000,0.000000,0.250000,0,0);}
.m2b_c00212{transform:matrix(0.325578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325578,0.000000,0.000000,0.250000,0,0);}
.mb5_c00212{transform:matrix(0.326328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326328,0.000000,0.000000,0.250000,0,0);}
.mdc_c00212{transform:matrix(0.326354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326354,0.000000,0.000000,0.250000,0,0);}
.m18_c00212{transform:matrix(0.327035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327035,0.000000,0.000000,0.250000,0,0);}
.mb9_c00212{transform:matrix(0.327083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327083,0.000000,0.000000,0.250000,0,0);}
.m26_c00212{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m2f_c00212{transform:matrix(0.328208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328208,0.000000,0.000000,0.250000,0,0);}
.mcb_c00212{transform:matrix(0.329564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329564,0.000000,0.000000,0.250000,0,0);}
.mb4_c00212{transform:matrix(0.329883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329883,0.000000,0.000000,0.250000,0,0);}
.m6_c00212{transform:matrix(0.330203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330203,0.000000,0.000000,0.250000,0,0);}
.m81_c00212{transform:matrix(0.338456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338456,0.000000,0.000000,0.250000,0,0);}
.m72_c00212{transform:matrix(0.338758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338758,0.000000,0.000000,0.250000,0,0);}
.m70_c00212{transform:matrix(0.340015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340015,0.000000,0.000000,0.250000,0,0);}
.mac_c00212{transform:matrix(0.340329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340329,0.000000,0.000000,0.250000,0,0);}
.m95_c00212{transform:matrix(0.340744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340744,0.000000,0.000000,0.250000,0,0);}
.m86_c00212{transform:matrix(0.341953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341953,0.000000,0.000000,0.250000,0,0);}
.mc1_c00212{transform:matrix(0.342926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342926,0.000000,0.000000,0.250000,0,0);}
.m3a_c00212{transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);}
.m3c_c00212{transform:matrix(0.348318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348318,0.000000,0.000000,0.250000,0,0);}
.m9b_c00212{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m8d_c00212{transform:matrix(0.349738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349738,0.000000,0.000000,0.250000,0,0);}
.m96_c00212{transform:matrix(0.350956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350956,0.000000,0.000000,0.250000,0,0);}
.mca_c00212{transform:matrix(0.354683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354683,0.000000,0.000000,0.250000,0,0);}
.m10_c00212{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m6b_c00212{transform:matrix(0.357416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357416,0.000000,0.000000,0.250000,0,0);}
.m71_c00212{transform:matrix(0.357774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357774,0.000000,0.000000,0.250000,0,0);}
.m56_c00212{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m2d_c00212{transform:matrix(0.361926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361926,0.000000,0.000000,0.250000,0,0);}
.m3_c00212{transform:matrix(0.362785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362785,0.000000,0.000000,0.250000,0,0);}
.m94_c00212{transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);}
.mcd_c00212{transform:matrix(0.370672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370672,0.000000,0.000000,0.250000,0,0);}
.m43_c00212{transform:matrix(0.400876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400876,0.000000,0.000000,0.250000,0,0);}
.m7e_c00212{transform:matrix(0.416907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416907,0.000000,0.000000,0.250000,0,0);}
.m87_c00212{transform:matrix(0.423078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423078,0.000000,0.000000,0.250000,0,0);}
.v1_c00212{vertical-align:-19.998000px;}
.v0_c00212{vertical-align:0.000000px;}
.lsc_c00212{letter-spacing:-2.744280px;}
.ls1c_c00212{letter-spacing:-2.712917px;}
.ls15_c00212{letter-spacing:-2.577967px;}
.lse_c00212{letter-spacing:-2.375762px;}
.ls13_c00212{letter-spacing:-2.367922px;}
.ls12_c00212{letter-spacing:-2.007245px;}
.ls1b_c00212{letter-spacing:-1.826906px;}
.lsa_c00212{letter-spacing:0.000000px;}
.ls8_c00212{letter-spacing:0.405821px;}
.lsf_c00212{letter-spacing:0.588060px;}
.ls1a_c00212{letter-spacing:0.940896px;}
.ls10_c00212{letter-spacing:1.246687px;}
.ls5_c00212{letter-spacing:1.481911px;}
.ls0_c00212{letter-spacing:1.490148px;}
.ls16_c00212{letter-spacing:1.701454px;}
.ls3_c00212{letter-spacing:2.132698px;}
.ls14_c00212{letter-spacing:2.187900px;}
.ls1_c00212{letter-spacing:2.328718px;}
.lsd_c00212{letter-spacing:3.112798px;}
.ls4_c00212{letter-spacing:3.246091px;}
.ls18_c00212{letter-spacing:3.293136px;}
.ls7_c00212{letter-spacing:3.567148px;}
.ls11_c00212{letter-spacing:3.873355px;}
.lsb_c00212{letter-spacing:3.920400px;}
.ls9_c00212{letter-spacing:7.683984px;}
.ls2_c00212{letter-spacing:7.997616px;}
.ls6_c00212{letter-spacing:11.070774px;}
.ls1d_c00212{letter-spacing:32.788998px;}
.ls17_c00212{letter-spacing:51.321798px;}
.ls19_c00212{letter-spacing:59.875398px;}
.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;}
}
.ws5_c00212{word-spacing:-27.285984px;}
.ws0_c00212{word-spacing:-19.602000px;}
.ws6_c00212{word-spacing:-1.176120px;}
.ws3_c00212{word-spacing:-0.705672px;}
.ws7_c00212{word-spacing:0.000000px;}
.ws1_c00212{word-spacing:0.705276px;}
.ws2_c00212{word-spacing:2.352240px;}
.ws4_c00212{word-spacing:23.262228px;}
._11_c00212{margin-left:-46.977850px;}
._a_c00212{margin-left:-17.249760px;}
._12_c00212{margin-left:-9.565776px;}
._14_c00212{margin-left:-8.389656px;}
._1b_c00212{margin-left:-7.370352px;}
._3_c00212{margin-left:-3.057120px;}
._5_c00212{width:2.117016px;}
._18_c00212{width:3.214728px;}
._19_c00212{width:4.499827px;}
._2_c00212{width:6.507864px;}
._10_c00212{width:7.575005px;}
._e_c00212{width:9.487368px;}
._6_c00212{width:10.506672px;}
._17_c00212{width:11.525976px;}
._13_c00212{width:12.623688px;}
._1d_c00212{width:13.956624px;}
._0_c00212{width:20.856528px;}
._7_c00212{width:22.267872px;}
._1e_c00212{width:24.463296px;}
._15_c00212{width:25.561008px;}
._b_c00212{width:27.363600px;}
._8_c00212{width:29.010960px;}
._f_c00212{width:30.233729px;}
._1c_c00212{width:32.539320px;}
._16_c00212{width:33.838358px;}
._4_c00212{width:34.891560px;}
._c_c00212{width:37.102666px;}
._1_c00212{width:38.263896px;}
._9_c00212{width:41.948280px;}
._d_c00212{width:45.397836px;}
._1a_c00212{width:47.564352px;}
.fc0_c00212{color:transparent;}
.fs5_c00212{font-size:22.176000px;}
.fsc_c00212{font-size:22.374000px;}
.fs0_c00212{font-size:22.572000px;}
.fs2_c00212{font-size:28.314000px;}
.fs10_c00212{font-size:32.788998px;}
.fsf_c00212{font-size:34.650000px;}
.fs6_c00212{font-size:43.758000px;}
.fs11_c00212{font-size:45.144000px;}
.fs9_c00212{font-size:51.321798px;}
.fsa_c00212{font-size:59.875398px;}
.fse_c00212{font-size:66.528000px;}
.fsb_c00212{font-size:72.468000px;}
.fs7_c00212{font-size:73.656198px;}
.fs8_c00212{font-size:73.854000px;}
.fs3_c00212{font-size:76.032198px;}
.fs1_c00212{font-size:78.408000px;}
.fsd_c00212{font-size:79.200000px;}
.fs12_c00212{font-size:104.544000px;}
.fs4_c00212{font-size:127.512198px;}
.y0_c00212{bottom:0.000000px;}
.y21_c00212{bottom:67.271535px;}
.y25_c00212{bottom:75.468735px;}
.y1_c00212{bottom:76.500000px;}
.y24_c00212{bottom:82.953135px;}
.y23_c00212{bottom:93.645135px;}
.y20_c00212{bottom:97.921935px;}
.y22_c00212{bottom:106.475535px;}
.y1f_c00212{bottom:155.653785px;}
.y1e_c00212{bottom:187.378335px;}
.y1d_c00212{bottom:220.167135px;}
.y1c_c00212{bottom:249.748335px;}
.y1b_c00212{bottom:281.462985px;}
.y1a_c00212{bottom:313.900335px;}
.y19_c00212{bottom:346.689135px;}
.y18_c00212{bottom:378.760185px;}
.y17_c00212{bottom:410.836185px;}
.y26_c00212{bottom:416.543535px;}
.y16_c00212{bottom:435.789135px;}
.y15_c00212{bottom:443.273535px;}
.y14_c00212{bottom:475.705935px;}
.y13_c00212{bottom:504.212985px;}
.y12_c00212{bottom:507.781935px;}
.y11_c00212{bottom:546.980985px;}
.y10_c00212{bottom:571.928985px;}
.yf_c00212{bottom:604.009935px;}
.ye_c00212{bottom:636.080985px;}
.yd_c00212{bottom:668.161935px;}
.yc_c00212{bottom:701.663535px;}
.yb_c00212{bottom:734.090985px;}
.ya_c00212{bottom:766.171935px;}
.y9_c00212{bottom:798.960735px;}
.y8_c00212{bottom:829.249785px;}
.y7_c00212{bottom:862.751385px;}
.y6_c00212{bottom:888.060735px;}
.y5_c00212{bottom:895.540185px;}
.y4_c00212{bottom:928.328985px;}
.y3_c00212{bottom:1086.214185px;}
.y2_c00212{bottom:1102.252185px;}
.h11_c00212{height:21.837473px;}
.hd_c00212{height:21.958857px;}
.h7_c00212{height:23.128875px;}
.h2_c00212{height:23.541891px;}
.h4_c00212{height:29.530617px;}
.ha_c00212{height:34.180317px;}
.h10_c00212{height:36.138867px;}
.hc_c00212{height:39.877015px;}
.h8_c00212{height:45.638227px;}
.h12_c00212{height:47.083781px;}
.hf_c00212{height:69.386625px;}
.h9_c00212{height:72.253565px;}
.h5_c00212{height:74.621444px;}
.h3_c00212{height:76.953164px;}
.hb_c00212{height:79.299207px;}
.he_c00212{height:82.603125px;}
.h13_c00212{height:109.036125px;}
.h6_c00212{height:132.991238px;}
.h1_c00212{height:1110.000000px;}
.h0_c00212{height:1263.000000px;}
.w1_c00212{width:775.500000px;}
.w0_c00212{width:892.500000px;}
.x0_c00212{left:0.000000px;}
.x1_c00212{left:58.500000px;}
.x10_c00212{left:68.346285px;}
.x63_c00212{left:69.509535px;}
.x2d_c00212{left:71.717235px;}
.x81_c00212{left:74.197185px;}
.x68_c00212{left:81.028185px;}
.x26_c00212{left:100.803435px;}
.x11_c00212{left:101.941935px;}
.x73_c00212{left:103.100235px;}
.x7d_c00212{left:104.496135px;}
.x35_c00212{left:112.213185px;}
.x12_c00212{left:113.406135px;}
.x5b_c00212{left:122.558685px;}
.x5_c00212{left:124.677285px;}
.x1f_c00212{left:134.636685px;}
.x7b_c00212{left:136.636485px;}
.x55_c00212{left:145.422735px;}
.x2e_c00212{left:146.897835px;}
.x47_c00212{left:155.981085px;}
.x6_c00212{left:156.985935px;}
.x74_c00212{left:158.366985px;}
.x27_c00212{left:166.064235px;}
.x40_c00212{left:167.762085px;}
.x2f_c00212{left:179.374785px;}
.x13_c00212{left:190.111335px;}
.x5c_c00212{left:191.135985px;}
.x14_c00212{left:201.471585px;}
.x4d_c00212{left:203.609985px;}
.x28_c00212{left:210.926085px;}
.x7_c00212{left:212.708085px;}
.x3c_c00212{left:222.340785px;}
.x48_c00212{left:223.395135px;}
.x56_c00212{left:224.959335px;}
.x15_c00212{left:234.290085px;}
.x4e_c00212{left:235.814685px;}
.x51_c00212{left:244.793985px;}
.x36_c00212{left:246.085935px;}
.x41_c00212{left:253.075335px;}
.x8_c00212{left:256.748235px;}
.x57_c00212{left:257.772885px;}
.x9_c00212{left:264.430635px;}
.x16_c00212{left:267.752085px;}
.x75_c00212{left:269.548935px;}
.x37_c00212{left:279.142035px;}
.x6f_c00212{left:280.255785px;}
.x30_c00212{left:289.532085px;}
.x69_c00212{left:291.309135px;}
.x4f_c00212{left:299.620185px;}
.xa_c00212{left:301.164585px;}
.x79_c00212{left:302.352585px;}
.x17_c00212{left:312.311985px;}
.x49_c00212{left:322.553535px;}
.x20_c00212{left:323.756385px;}
.x82_c00212{left:325.162185px;}
.xb_c00212{left:334.067235px;}
.x6a_c00212{left:336.071985px;}
.x5d_c00212{left:337.190685px;}
.x29_c00212{left:345.447285px;}
.x6b_c00212{left:346.763985px;}
.x6c_c00212{left:353.540535px;}
.x31_c00212{left:354.916635px;}
.x80_c00212{left:356.025435px;}
.x64_c00212{left:357.223335px;}
.x38_c00212{left:368.286585px;}
.x77_c00212{left:369.355785px;}
.x5e_c00212{left:375.013635px;}
.x7c_c00212{left:376.642185px;}
.x21_c00212{left:378.869685px;}
.x42_c00212{left:380.042835px;}
.x6d_c00212{left:381.691185px;}
.x5f_c00212{left:387.462885px;}
.x18_c00212{left:388.789485px;}
.x4a_c00212{left:390.002235px;}
.x7e_c00212{left:391.111035px;}
.x43_c00212{left:399.506235px;}
.x52_c00212{left:400.728885px;}
.x3d_c00212{left:411.792135px;}
.x3e_c00212{left:420.890235px;}
.x19_c00212{left:422.439585px;}
.xc_c00212{left:423.484035px;}
.x32_c00212{left:434.176035px;}
.x7a_c00212{left:435.269985px;}
.x2a_c00212{left:444.085935px;}
.x65_c00212{left:445.100685px;}
.x39_c00212{left:456.634185px;}
.xd_c00212{left:467.741985px;}
.x50_c00212{left:479.092335px;}
.x22_c00212{left:489.076485px;}
.xe_c00212{left:499.332885px;}
.x3f_c00212{left:500.491185px;}
.x83_c00212{left:501.585135px;}
.x58_c00212{left:502.882035px;}
.x1a_c00212{left:510.480285px;}
.x60_c00212{left:511.846485px;}
.x7f_c00212{left:515.014485px;}
.x61_c00212{left:521.395035px;}
.x23_c00212{left:522.587985px;}
.x1b_c00212{left:532.116735px;}
.x2b_c00212{left:533.210685px;}
.x59_c00212{left:543.437385px;}
.x66_c00212{left:544.630335px;}
.x3a_c00212{left:555.416385px;}
.x33_c00212{left:566.019285px;}
.x53_c00212{left:575.523285px;}
.x1c_c00212{left:577.033035px;}
.x62_c00212{left:588.195285px;}
.x24_c00212{left:598.768485px;}
.x70_c00212{left:603.020535px;}
.x5a_c00212{left:609.811935px;}
.x1d_c00212{left:610.980135px;}
.x1e_c00212{left:618.167535px;}
.xf_c00212{left:620.117835px;}
.x44_c00212{left:621.706785px;}
.x2c_c00212{left:631.908735px;}
.x6e_c00212{left:633.814485px;}
.x71_c00212{left:643.645185px;}
.x67_c00212{left:645.199485px;}
.x76_c00212{left:647.570535px;}
.x72_c00212{left:648.996135px;}
.x3b_c00212{left:655.198485px;}
.x3_c00212{left:656.594385px;}
.x4b_c00212{left:665.534085px;}
.x4_c00212{left:668.113035px;}
.x54_c00212{left:676.760685px;}
.x45_c00212{left:677.988285px;}
.x34_c00212{left:687.784335px;}
.x2_c00212{left:691.620585px;}
.x4c_c00212{left:698.634735px;}
.x25_c00212{left:700.352385px;}
.x84_c00212{left:704.455935px;}
.x85_c00212{left:707.891235px;}
.x86_c00212{left:709.341585px;}
.x46_c00212{left:711.079035px;}
.x87_c00212{left:712.153185px;}
.x78_c00212{left:721.102785px;}
.x88_c00212{left:756.376485px;}
@media print{
.v1_c00212{vertical-align:-17.776000pt;}
.v0_c00212{vertical-align:0.000000pt;}
.lsc_c00212{letter-spacing:-2.439360pt;}
.ls1c_c00212{letter-spacing:-2.411482pt;}
.ls15_c00212{letter-spacing:-2.291526pt;}
.lse_c00212{letter-spacing:-2.111789pt;}
.ls13_c00212{letter-spacing:-2.104819pt;}
.ls12_c00212{letter-spacing:-1.784218pt;}
.ls1b_c00212{letter-spacing:-1.623917pt;}
.lsa_c00212{letter-spacing:0.000000pt;}
.ls8_c00212{letter-spacing:0.360730pt;}
.lsf_c00212{letter-spacing:0.522720pt;}
.ls1a_c00212{letter-spacing:0.836352pt;}
.ls10_c00212{letter-spacing:1.108166pt;}
.ls5_c00212{letter-spacing:1.317254pt;}
.ls0_c00212{letter-spacing:1.324576pt;}
.ls16_c00212{letter-spacing:1.512403pt;}
.ls3_c00212{letter-spacing:1.895731pt;}
.ls14_c00212{letter-spacing:1.944800pt;}
.ls1_c00212{letter-spacing:2.069971pt;}
.lsd_c00212{letter-spacing:2.766931pt;}
.ls4_c00212{letter-spacing:2.885414pt;}
.ls18_c00212{letter-spacing:2.927232pt;}
.ls7_c00212{letter-spacing:3.170798pt;}
.ls11_c00212{letter-spacing:3.442982pt;}
.lsb_c00212{letter-spacing:3.484800pt;}
.ls9_c00212{letter-spacing:6.830208pt;}
.ls2_c00212{letter-spacing:7.108992pt;}
.ls6_c00212{letter-spacing:9.840688pt;}
.ls1d_c00212{letter-spacing:29.145776pt;}
.ls17_c00212{letter-spacing:45.619376pt;}
.ls19_c00212{letter-spacing:53.222576pt;}
.ws5_c00212{word-spacing:-24.254208pt;}
.ws0_c00212{word-spacing:-17.424000pt;}
.ws6_c00212{word-spacing:-1.045440pt;}
.ws3_c00212{word-spacing:-0.627264pt;}
.ws7_c00212{word-spacing:0.000000pt;}
.ws1_c00212{word-spacing:0.626912pt;}
.ws2_c00212{word-spacing:2.090880pt;}
.ws4_c00212{word-spacing:20.677536pt;}
._11_c00212{margin-left:-41.758089pt;}
._a_c00212{margin-left:-15.333120pt;}
._12_c00212{margin-left:-8.502912pt;}
._14_c00212{margin-left:-7.457472pt;}
._1b_c00212{margin-left:-6.551424pt;}
._3_c00212{margin-left:-2.717440pt;}
._5_c00212{width:1.881792pt;}
._18_c00212{width:2.857536pt;}
._19_c00212{width:3.999846pt;}
._2_c00212{width:5.784768pt;}
._10_c00212{width:6.733338pt;}
._e_c00212{width:8.433216pt;}
._6_c00212{width:9.339264pt;}
._17_c00212{width:10.245312pt;}
._13_c00212{width:11.221056pt;}
._1d_c00212{width:12.405888pt;}
._0_c00212{width:18.539136pt;}
._7_c00212{width:19.793664pt;}
._1e_c00212{width:21.745152pt;}
._15_c00212{width:22.720896pt;}
._b_c00212{width:24.323200pt;}
._8_c00212{width:25.787520pt;}
._f_c00212{width:26.874426pt;}
._1c_c00212{width:28.923840pt;}
._16_c00212{width:30.078541pt;}
._4_c00212{width:31.014720pt;}
._c_c00212{width:32.980147pt;}
._1_c00212{width:34.012352pt;}
._9_c00212{width:37.287360pt;}
._d_c00212{width:40.353632pt;}
._1a_c00212{width:42.279424pt;}
.fs5_c00212{font-size:19.712000pt;}
.fsc_c00212{font-size:19.888000pt;}
.fs0_c00212{font-size:20.064000pt;}
.fs2_c00212{font-size:25.168000pt;}
.fs10_c00212{font-size:29.145776pt;}
.fsf_c00212{font-size:30.800000pt;}
.fs6_c00212{font-size:38.896000pt;}
.fs11_c00212{font-size:40.128000pt;}
.fs9_c00212{font-size:45.619376pt;}
.fsa_c00212{font-size:53.222576pt;}
.fse_c00212{font-size:59.136000pt;}
.fsb_c00212{font-size:64.416000pt;}
.fs7_c00212{font-size:65.472176pt;}
.fs8_c00212{font-size:65.648000pt;}
.fs3_c00212{font-size:67.584176pt;}
.fs1_c00212{font-size:69.696000pt;}
.fsd_c00212{font-size:70.400000pt;}
.fs12_c00212{font-size:92.928000pt;}
.fs4_c00212{font-size:113.344176pt;}
.y0_c00212{bottom:0.000000pt;}
.y21_c00212{bottom:59.796920pt;}
.y25_c00212{bottom:67.083320pt;}
.y1_c00212{bottom:68.000000pt;}
.y24_c00212{bottom:73.736120pt;}
.y23_c00212{bottom:83.240120pt;}
.y20_c00212{bottom:87.041720pt;}
.y22_c00212{bottom:94.644920pt;}
.y1f_c00212{bottom:138.358920pt;}
.y1e_c00212{bottom:166.558520pt;}
.y1d_c00212{bottom:195.704120pt;}
.y1c_c00212{bottom:221.998520pt;}
.y1b_c00212{bottom:250.189320pt;}
.y1a_c00212{bottom:279.022520pt;}
.y19_c00212{bottom:308.168120pt;}
.y18_c00212{bottom:336.675720pt;}
.y17_c00212{bottom:365.187720pt;}
.y26_c00212{bottom:370.260920pt;}
.y16_c00212{bottom:387.368120pt;}
.y15_c00212{bottom:394.020920pt;}
.y14_c00212{bottom:422.849720pt;}
.y13_c00212{bottom:448.189320pt;}
.y12_c00212{bottom:451.361720pt;}
.y11_c00212{bottom:486.205320pt;}
.y10_c00212{bottom:508.381320pt;}
.yf_c00212{bottom:536.897720pt;}
.ye_c00212{bottom:565.405320pt;}
.yd_c00212{bottom:593.921720pt;}
.yc_c00212{bottom:623.700920pt;}
.yb_c00212{bottom:652.525320pt;}
.ya_c00212{bottom:681.041720pt;}
.y9_c00212{bottom:710.187320pt;}
.y8_c00212{bottom:737.110920pt;}
.y7_c00212{bottom:766.890120pt;}
.y6_c00212{bottom:789.387320pt;}
.y5_c00212{bottom:796.035720pt;}
.y4_c00212{bottom:825.181320pt;}
.y3_c00212{bottom:965.523720pt;}
.y2_c00212{bottom:979.779720pt;}
.h11_c00212{height:19.411087pt;}
.hd_c00212{height:19.518984pt;}
.h7_c00212{height:20.559000pt;}
.h2_c00212{height:20.926125pt;}
.h4_c00212{height:26.249438pt;}
.ha_c00212{height:30.382504pt;}
.h10_c00212{height:32.123438pt;}
.hc_c00212{height:35.446236pt;}
.h8_c00212{height:40.567313pt;}
.h12_c00212{height:41.852250pt;}
.hf_c00212{height:61.677000pt;}
.h9_c00212{height:64.225391pt;}
.h5_c00212{height:66.330173pt;}
.h3_c00212{height:68.402813pt;}
.hb_c00212{height:70.488184pt;}
.he_c00212{height:73.425000pt;}
.h13_c00212{height:96.921000pt;}
.h6_c00212{height:118.214434pt;}
.h1_c00212{height:986.666667pt;}
.h0_c00212{height:1122.666667pt;}
.w1_c00212{width:689.333333pt;}
.w0_c00212{width:793.333333pt;}
.x0_c00212{left:0.000000pt;}
.x1_c00212{left:52.000000pt;}
.x10_c00212{left:60.752253pt;}
.x63_c00212{left:61.786253pt;}
.x2d_c00212{left:63.748653pt;}
.x81_c00212{left:65.953053pt;}
.x68_c00212{left:72.025053pt;}
.x26_c00212{left:89.603053pt;}
.x11_c00212{left:90.615053pt;}
.x73_c00212{left:91.644653pt;}
.x7d_c00212{left:92.885453pt;}
.x35_c00212{left:99.745053pt;}
.x12_c00212{left:100.805453pt;}
.x5b_c00212{left:108.941053pt;}
.x5_c00212{left:110.824253pt;}
.x1f_c00212{left:119.677053pt;}
.x7b_c00212{left:121.454653pt;}
.x55_c00212{left:129.264653pt;}
.x2e_c00212{left:130.575853pt;}
.x47_c00212{left:138.649853pt;}
.x6_c00212{left:139.543053pt;}
.x74_c00212{left:140.770653pt;}
.x27_c00212{left:147.612653pt;}
.x40_c00212{left:149.121853pt;}
.x2f_c00212{left:159.444253pt;}
.x13_c00212{left:168.987853pt;}
.x5c_c00212{left:169.898653pt;}
.x14_c00212{left:179.085853pt;}
.x4d_c00212{left:180.986653pt;}
.x28_c00212{left:187.489853pt;}
.x7_c00212{left:189.073853pt;}
.x3c_c00212{left:197.636253pt;}
.x48_c00212{left:198.573453pt;}
.x56_c00212{left:199.963853pt;}
.x15_c00212{left:208.257853pt;}
.x4e_c00212{left:209.613053pt;}
.x51_c00212{left:217.594653pt;}
.x36_c00212{left:218.743053pt;}
.x41_c00212{left:224.955853pt;}
.x8_c00212{left:228.220653pt;}
.x57_c00212{left:229.131453pt;}
.x9_c00212{left:235.049453pt;}
.x16_c00212{left:238.001853pt;}
.x75_c00212{left:239.599053pt;}
.x37_c00212{left:248.126253pt;}
.x6f_c00212{left:249.116253pt;}
.x30_c00212{left:257.361853pt;}
.x69_c00212{left:258.941453pt;}
.x4f_c00212{left:266.329053pt;}
.xa_c00212{left:267.701853pt;}
.x79_c00212{left:268.757853pt;}
.x17_c00212{left:277.610653pt;}
.x49_c00212{left:286.714253pt;}
.x20_c00212{left:287.783453pt;}
.x82_c00212{left:289.033053pt;}
.xb_c00212{left:296.948653pt;}
.x6a_c00212{left:298.730653pt;}
.x5d_c00212{left:299.725053pt;}
.x29_c00212{left:307.064253pt;}
.x6b_c00212{left:308.234653pt;}
.x6c_c00212{left:314.258253pt;}
.x31_c00212{left:315.481453pt;}
.x80_c00212{left:316.467053pt;}
.x64_c00212{left:317.531853pt;}
.x38_c00212{left:327.365853pt;}
.x77_c00212{left:328.316253pt;}
.x5e_c00212{left:333.345453pt;}
.x7c_c00212{left:334.793053pt;}
.x21_c00212{left:336.773053pt;}
.x42_c00212{left:337.815853pt;}
.x6d_c00212{left:339.281053pt;}
.x5f_c00212{left:344.411453pt;}
.x18_c00212{left:345.590653pt;}
.x4a_c00212{left:346.668653pt;}
.x7e_c00212{left:347.654253pt;}
.x43_c00212{left:355.116653pt;}
.x52_c00212{left:356.203453pt;}
.x3d_c00212{left:366.037453pt;}
.x3e_c00212{left:374.124653pt;}
.x19_c00212{left:375.501853pt;}
.xc_c00212{left:376.430253pt;}
.x32_c00212{left:385.934253pt;}
.x7a_c00212{left:386.906653pt;}
.x2a_c00212{left:394.743053pt;}
.x65_c00212{left:395.645053pt;}
.x39_c00212{left:405.897053pt;}
.xd_c00212{left:415.770653pt;}
.x50_c00212{left:425.859853pt;}
.x22_c00212{left:434.734653pt;}
.xe_c00212{left:443.851453pt;}
.x3f_c00212{left:444.881053pt;}
.x83_c00212{left:445.853453pt;}
.x58_c00212{left:447.006253pt;}
.x1a_c00212{left:453.760253pt;}
.x60_c00212{left:454.974653pt;}
.x7f_c00212{left:457.790653pt;}
.x61_c00212{left:463.462253pt;}
.x23_c00212{left:464.522653pt;}
.x1b_c00212{left:472.992653pt;}
.x2b_c00212{left:473.965053pt;}
.x59_c00212{left:483.055453pt;}
.x66_c00212{left:484.115853pt;}
.x3a_c00212{left:493.703453pt;}
.x33_c00212{left:503.128253pt;}
.x53_c00212{left:511.576253pt;}
.x1c_c00212{left:512.918253pt;}
.x62_c00212{left:522.840253pt;}
.x24_c00212{left:532.238653pt;}
.x70_c00212{left:536.018253pt;}
.x5a_c00212{left:542.055053pt;}
.x1d_c00212{left:543.093453pt;}
.x1e_c00212{left:549.482253pt;}
.xf_c00212{left:551.215853pt;}
.x44_c00212{left:552.628253pt;}
.x2c_c00212{left:561.696653pt;}
.x6e_c00212{left:563.390653pt;}
.x71_c00212{left:572.129053pt;}
.x67_c00212{left:573.510653pt;}
.x76_c00212{left:575.618253pt;}
.x72_c00212{left:576.885453pt;}
.x3b_c00212{left:582.398653pt;}
.x3_c00212{left:583.639453pt;}
.x4b_c00212{left:591.585853pt;}
.x4_c00212{left:593.878253pt;}
.x54_c00212{left:601.565053pt;}
.x45_c00212{left:602.656253pt;}
.x34_c00212{left:611.363853pt;}
.x2_c00212{left:614.773853pt;}
.x4c_c00212{left:621.008653pt;}
.x25_c00212{left:622.535453pt;}
.x84_c00212{left:626.183053pt;}
.x85_c00212{left:629.236653pt;}
.x86_c00212{left:630.525853pt;}
.x46_c00212{left:632.070253pt;}
.x87_c00212{left:633.025053pt;}
.x78_c00212{left:640.980253pt;}
.x88_c00212{left:672.334653pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c3e9f1f96fbe43a5fdf9293c.woff2')format("woff");}.ff1_c00213{font-family:ff1_c00213;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00213;src:url('chunks/assets/font_edc1cdfa6a7f73304d2a6be1.woff2')format("woff");}.ff2_c00213{font-family:ff2_c00213;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00213;src:url('chunks/assets/font_18aba9c6f5b38fba256b644c.woff2')format("woff");}.ff3_c00213{font-family:ff3_c00213;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00213;src:url('chunks/assets/font_dbfb8cb8c2cbb6398b093871.woff2')format("woff");}.ff4_c00213{font-family:ff4_c00213;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00213;src:url('chunks/assets/font_6f74c6c2e21ac14cded3cca0.woff2')format("woff");}.ff5_c00213{font-family:ff5_c00213;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mbe_c00213{transform:matrix(0.122023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122023,0.000000,0.000000,0.250000,0,0);}
.m51_c00213{transform:matrix(0.137804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137804,0.000000,0.000000,0.250000,0,0);}
.m46_c00213{transform:matrix(0.219067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219067,0.000000,0.000000,0.250000,0,0);}
.m74_c00213{transform:matrix(0.226134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226134,0.000000,0.000000,0.250000,0,0);}
.m56_c00213{transform:matrix(0.227167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227167,0.000000,0.000000,0.250000,0,0);}
.m3e_c00213{transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);}
.mbc_c00213{transform:matrix(0.248358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248358,0.000000,0.000000,0.250000,0,0);}
.m0_c00213{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.me_c00213{transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);}
.m43_c00213{transform:matrix(0.250520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250520,0.000000,0.000000,0.250000,0,0);}
.mad_c00213{transform:matrix(0.250919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250919,0.000000,0.000000,0.250000,0,0);}
.m65_c00213{transform:matrix(0.251742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251742,0.000000,0.000000,0.250000,0,0);}
.m12_c00213{transform:matrix(0.251770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251770,0.000000,0.000000,0.250000,0,0);}
.m3d_c00213{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.m8d_c00213{transform:matrix(0.253010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253010,0.000000,0.000000,0.250000,0,0);}
.m77_c00213{transform:matrix(0.253253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253253,0.000000,0.000000,0.250000,0,0);}
.m6f_c00213{transform:matrix(0.254271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254271,0.000000,0.000000,0.250000,0,0);}
.m36_c00213{transform:matrix(0.255192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255192,0.000000,0.000000,0.250000,0,0);}
.ma5_c00213{transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);}
.m21_c00213{transform:matrix(0.256595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256595,0.000000,0.000000,0.250000,0,0);}
.m4a_c00213{transform:matrix(0.257917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257917,0.000000,0.000000,0.250000,0,0);}
.m1f_c00213{transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);}
.m4_c00213{transform:matrix(0.258384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258384,0.000000,0.000000,0.250000,0,0);}
.m66_c00213{transform:matrix(0.258596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258596,0.000000,0.000000,0.250000,0,0);}
.m1d_c00213{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m33_c00213{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.m79_c00213{transform:matrix(0.261762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261762,0.000000,0.000000,0.250000,0,0);}
.m49_c00213{transform:matrix(0.262649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262649,0.000000,0.000000,0.250000,0,0);}
.m30_c00213{transform:matrix(0.263131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263131,0.000000,0.000000,0.250000,0,0);}
.m48_c00213{transform:matrix(0.263206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263206,0.000000,0.000000,0.250000,0,0);}
.m23_c00213{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m94_c00213{transform:matrix(0.264886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264886,0.000000,0.000000,0.250000,0,0);}
.m15_c00213{transform:matrix(0.265519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265519,0.000000,0.000000,0.250000,0,0);}
.mba_c00213{transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);}
.mc_c00213{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m14_c00213{transform:matrix(0.266467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266467,0.000000,0.000000,0.250000,0,0);}
.m1c_c00213{transform:matrix(0.266629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266629,0.000000,0.000000,0.250000,0,0);}
.m92_c00213{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.mab_c00213{transform:matrix(0.267232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267232,0.000000,0.000000,0.250000,0,0);}
.m54_c00213{transform:matrix(0.267577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267577,0.000000,0.000000,0.250000,0,0);}
.m5_c00213{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m95_c00213{transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);}
.m45_c00213{transform:matrix(0.269983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269983,0.000000,0.000000,0.250000,0,0);}
.mb2_c00213{transform:matrix(0.270329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270329,0.000000,0.000000,0.250000,0,0);}
.mb6_c00213{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m55_c00213{transform:matrix(0.270973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270973,0.000000,0.000000,0.250000,0,0);}
.m9d_c00213{transform:matrix(0.271329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271329,0.000000,0.000000,0.250000,0,0);}
.m2f_c00213{transform:matrix(0.271706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271706,0.000000,0.000000,0.250000,0,0);}
.mbf_c00213{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m7b_c00213{transform:matrix(0.272720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272720,0.000000,0.000000,0.250000,0,0);}
.m6a_c00213{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m67_c00213{transform:matrix(0.273660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273660,0.000000,0.000000,0.250000,0,0);}
.mb_c00213{transform:matrix(0.274708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274708,0.000000,0.000000,0.250000,0,0);}
.m5b_c00213{transform:matrix(0.275287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275287,0.000000,0.000000,0.250000,0,0);}
.m39_c00213{transform:matrix(0.275733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275733,0.000000,0.000000,0.250000,0,0);}
.m10_c00213{transform:matrix(0.276607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276607,0.000000,0.000000,0.250000,0,0);}
.m17_c00213{transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);}
.ma7_c00213{transform:matrix(0.277208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277208,0.000000,0.000000,0.250000,0,0);}
.m97_c00213{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m3c_c00213{transform:matrix(0.277352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277352,0.000000,0.000000,0.250000,0,0);}
.m72_c00213{transform:matrix(0.278030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278030,0.000000,0.000000,0.250000,0,0);}
.m2b_c00213{transform:matrix(0.278416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278416,0.000000,0.000000,0.250000,0,0);}
.m5d_c00213{transform:matrix(0.278419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278419,0.000000,0.000000,0.250000,0,0);}
.ma6_c00213{transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);}
.m6_c00213{transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);}
.m5a_c00213{transform:matrix(0.280163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280163,0.000000,0.000000,0.250000,0,0);}
.m4d_c00213{transform:matrix(0.280329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280329,0.000000,0.000000,0.250000,0,0);}
.m58_c00213{transform:matrix(0.280773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280773,0.000000,0.000000,0.250000,0,0);}
.m9b_c00213{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.m9a_c00213{transform:matrix(0.281813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281813,0.000000,0.000000,0.250000,0,0);}
.m38_c00213{transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);}
.m70_c00213{transform:matrix(0.282461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282461,0.000000,0.000000,0.250000,0,0);}
.m5e_c00213{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m7d_c00213{transform:matrix(0.283801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283801,0.000000,0.000000,0.250000,0,0);}
.md_c00213{transform:matrix(0.284069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284069,0.000000,0.000000,0.250000,0,0);}
.m98_c00213{transform:matrix(0.284343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284343,0.000000,0.000000,0.250000,0,0);}
.m8a_c00213{transform:matrix(0.284537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284537,0.000000,0.000000,0.250000,0,0);}
.maf_c00213{transform:matrix(0.284878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284878,0.000000,0.000000,0.250000,0,0);}
.m37_c00213{transform:matrix(0.284992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284992,0.000000,0.000000,0.250000,0,0);}
.ma0_c00213{transform:matrix(0.285694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285694,0.000000,0.000000,0.250000,0,0);}
.m35_c00213{transform:matrix(0.286456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286456,0.000000,0.000000,0.250000,0,0);}
.m27_c00213{transform:matrix(0.286652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286652,0.000000,0.000000,0.250000,0,0);}
.m96_c00213{transform:matrix(0.286757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286757,0.000000,0.000000,0.250000,0,0);}
.m28_c00213{transform:matrix(0.288344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288344,0.000000,0.000000,0.250000,0,0);}
.m11_c00213{transform:matrix(0.288465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288465,0.000000,0.000000,0.250000,0,0);}
.ma2_c00213{transform:matrix(0.288479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288479,0.000000,0.000000,0.250000,0,0);}
.ma1_c00213{transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);}
.m40_c00213{transform:matrix(0.288590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288590,0.000000,0.000000,0.250000,0,0);}
.mb4_c00213{transform:matrix(0.288669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288669,0.000000,0.000000,0.250000,0,0);}
.m8c_c00213{transform:matrix(0.289268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289268,0.000000,0.000000,0.250000,0,0);}
.m78_c00213{transform:matrix(0.289278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289278,0.000000,0.000000,0.250000,0,0);}
.m57_c00213{transform:matrix(0.289318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289318,0.000000,0.000000,0.250000,0,0);}
.m73_c00213{transform:matrix(0.289344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289344,0.000000,0.000000,0.250000,0,0);}
.m1a_c00213{transform:matrix(0.289464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289464,0.000000,0.000000,0.250000,0,0);}
.m47_c00213{transform:matrix(0.289520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289520,0.000000,0.000000,0.250000,0,0);}
.m34_c00213{transform:matrix(0.289914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289914,0.000000,0.000000,0.250000,0,0);}
.m60_c00213{transform:matrix(0.290336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290336,0.000000,0.000000,0.250000,0,0);}
.m1_c00213{transform:matrix(0.290803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290803,0.000000,0.000000,0.250000,0,0);}
.m62_c00213{transform:matrix(0.290929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290929,0.000000,0.000000,0.250000,0,0);}
.mb8_c00213{transform:matrix(0.293217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293217,0.000000,0.000000,0.250000,0,0);}
.m61_c00213{transform:matrix(0.293335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293335,0.000000,0.000000,0.250000,0,0);}
.m87_c00213{transform:matrix(0.293377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293377,0.000000,0.000000,0.250000,0,0);}
.m7a_c00213{transform:matrix(0.293492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293492,0.000000,0.000000,0.250000,0,0);}
.m85_c00213{transform:matrix(0.293707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293707,0.000000,0.000000,0.250000,0,0);}
.m41_c00213{transform:matrix(0.294443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294443,0.000000,0.000000,0.250000,0,0);}
.m91_c00213{transform:matrix(0.294562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294562,0.000000,0.000000,0.250000,0,0);}
.m6d_c00213{transform:matrix(0.294813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294813,0.000000,0.000000,0.250000,0,0);}
.m16_c00213{transform:matrix(0.295157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295157,0.000000,0.000000,0.250000,0,0);}
.m1e_c00213{transform:matrix(0.295347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295347,0.000000,0.000000,0.250000,0,0);}
.m7c_c00213{transform:matrix(0.296073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296073,0.000000,0.000000,0.250000,0,0);}
.m3a_c00213{transform:matrix(0.296448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296448,0.000000,0.000000,0.250000,0,0);}
.m69_c00213{transform:matrix(0.296765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296765,0.000000,0.000000,0.250000,0,0);}
.ma8_c00213{transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);}
.m2e_c00213{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m99_c00213{transform:matrix(0.297216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297216,0.000000,0.000000,0.250000,0,0);}
.m7f_c00213{transform:matrix(0.297306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297306,0.000000,0.000000,0.250000,0,0);}
.m4c_c00213{transform:matrix(0.297366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297366,0.000000,0.000000,0.250000,0,0);}
.m6b_c00213{transform:matrix(0.298427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298427,0.000000,0.000000,0.250000,0,0);}
.m9c_c00213{transform:matrix(0.299789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299789,0.000000,0.000000,0.250000,0,0);}
.mb0_c00213{transform:matrix(0.300267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300267,0.000000,0.000000,0.250000,0,0);}
.m8b_c00213{transform:matrix(0.300548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300548,0.000000,0.000000,0.250000,0,0);}
.m80_c00213{transform:matrix(0.301470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301470,0.000000,0.000000,0.250000,0,0);}
.mac_c00213{transform:matrix(0.301994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301994,0.000000,0.000000,0.250000,0,0);}
.m6e_c00213{transform:matrix(0.302598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302598,0.000000,0.000000,0.250000,0,0);}
.m64_c00213{transform:matrix(0.302961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302961,0.000000,0.000000,0.250000,0,0);}
.m76_c00213{transform:matrix(0.304120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304120,0.000000,0.000000,0.250000,0,0);}
.m5c_c00213{transform:matrix(0.305475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305475,0.000000,0.000000,0.250000,0,0);}
.m93_c00213{transform:matrix(0.305914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305914,0.000000,0.000000,0.250000,0,0);}
.m22_c00213{transform:matrix(0.306494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306494,0.000000,0.000000,0.250000,0,0);}
.m52_c00213{transform:matrix(0.306774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306774,0.000000,0.000000,0.250000,0,0);}
.m44_c00213{transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);}
.m88_c00213{transform:matrix(0.308280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308280,0.000000,0.000000,0.250000,0,0);}
.m2c_c00213{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m20_c00213{transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);}
.m1b_c00213{transform:matrix(0.310694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310694,0.000000,0.000000,0.250000,0,0);}
.m8e_c00213{transform:matrix(0.310783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310783,0.000000,0.000000,0.250000,0,0);}
.m82_c00213{transform:matrix(0.310986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310986,0.000000,0.000000,0.250000,0,0);}
.ma9_c00213{transform:matrix(0.311143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311143,0.000000,0.000000,0.250000,0,0);}
.m59_c00213{transform:matrix(0.311186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311186,0.000000,0.000000,0.250000,0,0);}
.m53_c00213{transform:matrix(0.312273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312273,0.000000,0.000000,0.250000,0,0);}
.m3f_c00213{transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);}
.mb7_c00213{transform:matrix(0.313595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313595,0.000000,0.000000,0.250000,0,0);}
.m9e_c00213{transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);}
.m24_c00213{transform:matrix(0.315008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315008,0.000000,0.000000,0.250000,0,0);}
.m31_c00213{transform:matrix(0.315717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315717,0.000000,0.000000,0.250000,0,0);}
.m9f_c00213{transform:matrix(0.315881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315881,0.000000,0.000000,0.250000,0,0);}
.m4b_c00213{transform:matrix(0.317242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317242,0.000000,0.000000,0.250000,0,0);}
.m18_c00213{transform:matrix(0.317440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317440,0.000000,0.000000,0.250000,0,0);}
.m2d_c00213{transform:matrix(0.318250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318250,0.000000,0.000000,0.250000,0,0);}
.m89_c00213{transform:matrix(0.318518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318518,0.000000,0.000000,0.250000,0,0);}
.m3b_c00213{transform:matrix(0.318739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318739,0.000000,0.000000,0.250000,0,0);}
.m2_c00213{transform:matrix(0.318980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318980,0.000000,0.000000,0.250000,0,0);}
.ma4_c00213{transform:matrix(0.320465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320465,0.000000,0.000000,0.250000,0,0);}
.mb5_c00213{transform:matrix(0.322629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322629,0.000000,0.000000,0.250000,0,0);}
.mb9_c00213{transform:matrix(0.323416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323416,0.000000,0.000000,0.250000,0,0);}
.m3_c00213{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m63_c00213{transform:matrix(0.327376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327376,0.000000,0.000000,0.250000,0,0);}
.m81_c00213{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.m50_c00213{transform:matrix(0.327687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327687,0.000000,0.000000,0.250000,0,0);}
.maa_c00213{transform:matrix(0.328428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328428,0.000000,0.000000,0.250000,0,0);}
.m29_c00213{transform:matrix(0.330139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330139,0.000000,0.000000,0.250000,0,0);}
.m84_c00213{transform:matrix(0.330592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330592,0.000000,0.000000,0.250000,0,0);}
.m7e_c00213{transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);}
.m71_c00213{transform:matrix(0.331496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331496,0.000000,0.000000,0.250000,0,0);}
.m9_c00213{transform:matrix(0.331794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331794,0.000000,0.000000,0.250000,0,0);}
.m8_c00213{transform:matrix(0.333227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333227,0.000000,0.000000,0.250000,0,0);}
.m90_c00213{transform:matrix(0.334943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334943,0.000000,0.000000,0.250000,0,0);}
.m42_c00213{transform:matrix(0.335394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335394,0.000000,0.000000,0.250000,0,0);}
.ma3_c00213{transform:matrix(0.335935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335935,0.000000,0.000000,0.250000,0,0);}
.m7_c00213{transform:matrix(0.338655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338655,0.000000,0.000000,0.250000,0,0);}
.m19_c00213{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.mae_c00213{transform:matrix(0.339556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339556,0.000000,0.000000,0.250000,0,0);}
.mb3_c00213{transform:matrix(0.340015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340015,0.000000,0.000000,0.250000,0,0);}
.ma_c00213{transform:matrix(0.340789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340789,0.000000,0.000000,0.250000,0,0);}
.m13_c00213{transform:matrix(0.341332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341332,0.000000,0.000000,0.250000,0,0);}
.mf_c00213{transform:matrix(0.341375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341375,0.000000,0.000000,0.250000,0,0);}
.m5f_c00213{transform:matrix(0.344607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344607,0.000000,0.000000,0.250000,0,0);}
.m26_c00213{transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);}
.m25_c00213{transform:matrix(0.347505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347505,0.000000,0.000000,0.250000,0,0);}
.m75_c00213{transform:matrix(0.348116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348116,0.000000,0.000000,0.250000,0,0);}
.mbb_c00213{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m4f_c00213{transform:matrix(0.352586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352586,0.000000,0.000000,0.250000,0,0);}
.m8f_c00213{transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);}
.m6c_c00213{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m86_c00213{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m83_c00213{transform:matrix(0.362739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362739,0.000000,0.000000,0.250000,0,0);}
.m2a_c00213{transform:matrix(0.367117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367117,0.000000,0.000000,0.250000,0,0);}
.m68_c00213{transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);}
.mb1_c00213{transform:matrix(0.405229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405229,0.000000,0.000000,0.250000,0,0);}
.m4e_c00213{transform:matrix(0.407418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407418,0.000000,0.000000,0.250000,0,0);}
.m32_c00213{transform:matrix(0.423078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423078,0.000000,0.000000,0.250000,0,0);}
.mbd_c00213{transform:matrix(0.436334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436334,0.000000,0.000000,0.250000,0,0);}
.v0_c00213{vertical-align:0.000000px;}
.v1_c00213{vertical-align:11.404800px;}
.ls1a_c00213{letter-spacing:-3.201667px;}
.lsb_c00213{letter-spacing:-2.744280px;}
.ls18_c00213{letter-spacing:-1.971288px;}
.ls6_c00213{letter-spacing:-0.784080px;}
.ls3_c00213{letter-spacing:0.000000px;}
.lsd_c00213{letter-spacing:0.258746px;}
.ls0_c00213{letter-spacing:0.533174px;}
.ls19_c00213{letter-spacing:1.027145px;}
.ls9_c00213{letter-spacing:1.246687px;}
.lse_c00213{letter-spacing:1.623046px;}
.ls8_c00213{letter-spacing:1.764180px;}
.lsf_c00213{letter-spacing:1.831500px;}
.lsa_c00213{letter-spacing:2.132698px;}
.ls7_c00213{letter-spacing:2.164061px;}
.ls16_c00213{letter-spacing:2.493374px;}
.ls1b_c00213{letter-spacing:2.603700px;}
.ls12_c00213{letter-spacing:3.167683px;}
.ls15_c00213{letter-spacing:3.286810px;}
.ls17_c00213{letter-spacing:3.363703px;}
.ls14_c00213{letter-spacing:3.402907px;}
.ls13_c00213{letter-spacing:3.544200px;}
.ls10_c00213{letter-spacing:3.643200px;}
.lsc_c00213{letter-spacing:3.653813px;}
.ls4_c00213{letter-spacing:3.722400px;}
.ls5_c00213{letter-spacing:3.920400px;}
.ls2_c00213{letter-spacing:6.949701px;}
.ls1_c00213{letter-spacing:9.408960px;}
.ls11_c00213{letter-spacing:58.449798px;}
.ls1c_c00213{letter-spacing:59.875398px;}
.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;}
}
.ws2_c00213{word-spacing:-23.255813px;}
.ws0_c00213{word-spacing:-21.366180px;}
.ws1_c00213{word-spacing:-19.602000px;}
.ws3_c00213{word-spacing:0.000000px;}
._9_c00213{width:1.567368px;}
._1_c00213{width:2.901888px;}
._4_c00213{width:6.507864px;}
._7_c00213{width:9.957816px;}
._3_c00213{width:11.996424px;}
._8_c00213{width:14.191848px;}
._a_c00213{width:16.308864px;}
._6_c00213{width:20.856528px;}
._5_c00213{width:32.460912px;}
._2_c00213{width:33.832814px;}
._0_c00213{width:44.385264px;}
.fc0_c00213{color:transparent;}
.fs1_c00213{font-size:22.176000px;}
.fs3_c00213{font-size:27.720000px;}
.fs5_c00213{font-size:36.630000px;}
.fsb_c00213{font-size:42.966198px;}
.fsa_c00213{font-size:45.144000px;}
.fse_c00213{font-size:52.074000px;}
.fs7_c00213{font-size:58.449798px;}
.fsf_c00213{font-size:59.875398px;}
.fs0_c00213{font-size:60.192000px;}
.fs9_c00213{font-size:65.736198px;}
.fs8_c00213{font-size:70.884000px;}
.fs6_c00213{font-size:72.864000px;}
.fs2_c00213{font-size:74.448000px;}
.fsc_c00213{font-size:75.240000px;}
.fs4_c00213{font-size:78.408000px;}
.fsd_c00213{font-size:91.476198px;}
.y0_c00213{bottom:0.000000px;}
.y1_c00213{bottom:76.500000px;}
.y21_c00213{bottom:139.977135px;}
.y20_c00213{bottom:145.318185px;}
.y1f_c00213{bottom:172.409535px;}
.y1e_c00213{bottom:175.260735px;}
.y1d_c00213{bottom:242.615385px;}
.y1c_c00213{bottom:270.419535px;}
.y1b_c00213{bottom:275.047785px;}
.y1a_c00213{bottom:307.480185px;}
.y19_c00213{bottom:339.204735px;}
.y18_c00213{bottom:372.344985px;}
.y17_c00213{bottom:404.782335px;}
.y16_c00213{bottom:437.214735px;}
.y15_c00213{bottom:470.354985px;}
.y14_c00213{bottom:531.660735px;}
.y13_c00213{bottom:564.449535px;}
.y12_c00213{bottom:596.881935px;}
.yf_c00213{bottom:628.587675px;}
.y10_c00213{bottom:628.596585px;}
.y11_c00213{bottom:633.947535px;}
.ye_c00213{bottom:661.028985px;}
.yd_c00213{bottom:693.466335px;}
.yc_c00213{bottom:725.898735px;}
.yb_c00213{bottom:758.331135px;}
.ya_c00213{bottom:790.402185px;}
.y9_c00213{bottom:822.839535px;}
.y8_c00213{bottom:889.486335px;}
.y7_c00213{bottom:924.408585px;}
.y6_c00213{bottom:988.565535px;}
.y2_c00213{bottom:1038.456585px;}
.y5_c00213{bottom:1038.812985px;}
.y4_c00213{bottom:1076.591385px;}
.y3_c00213{bottom:1086.214185px;}
.h3_c00213{height:23.128875px;}
.h5_c00213{height:28.911094px;}
.h7_c00213{height:38.203945px;}
.h9_c00213{height:38.927565px;}
.h10_c00213{height:39.877015px;}
.hc_c00213{height:47.083781px;}
.hf_c00213{height:54.311555px;}
.h2_c00213{height:62.778375px;}
.hb_c00213{height:68.560800px;}
.ha_c00213{height:69.568770px;}
.h8_c00213{height:71.512031px;}
.h4_c00213{height:73.066641px;}
.h6_c00213{height:76.953164px;}
.hd_c00213{height:85.248745px;}
.he_c00213{height:89.734220px;}
.h1_c00213{height:1110.000000px;}
.h0_c00213{height:1263.000000px;}
.w1_c00213{width:742.500000px;}
.w0_c00213{width:892.500000px;}
.x0_c00213{left:0.000000px;}
.x62_c00213{left:61.122585px;}
.x47_c00213{left:70.765185px;}
.x6_c00213{left:72.022485px;}
.x61_c00213{left:73.042185px;}
.x1_c00213{left:75.000000px;}
.x7_c00213{left:94.317285px;}
.x30_c00213{left:104.821185px;}
.x65_c00213{left:106.246785px;}
.x26_c00213{left:115.854735px;}
.x12_c00213{left:116.909085px;}
.x31_c00213{left:126.546735px;}
.x41_c00213{left:127.620885px;}
.x48_c00213{left:137.416935px;}
.x8_c00213{left:138.595035px;}
.x14_c00213{left:147.381285px;}
.x5f_c00213{left:148.455435px;}
.x13_c00213{left:149.678085px;}
.x27_c00213{left:159.701835px;}
.x6e_c00213{left:160.741335px;}
.x9_c00213{left:169.478085px;}
.x42_c00213{left:170.755185px;}
.x1d_c00213{left:181.432335px;}
.x66_c00213{left:182.669835px;}
.x43_c00213{left:193.544985px;}
.x6f_c00213{left:194.940885px;}
.x3d_c00213{left:204.830985px;}
.x73_c00213{left:206.004135px;}
.x1e_c00213{left:214.033035px;}
.x52_c00213{left:216.017985px;}
.x32_c00213{left:226.313985px;}
.x63_c00213{left:227.412885px;}
.xa_c00213{left:237.035685px;}
.x49_c00213{left:238.139535px;}
.x15_c00213{left:248.440485px;}
.x4f_c00213{left:249.569085px;}
.x3e_c00213{left:260.488785px;}
.x67_c00213{left:261.617385px;}
.xb_c00213{left:268.958235px;}
.x28_c00213{left:270.542235px;}
.x5a_c00213{left:271.962885px;}
.x16_c00213{left:280.625385px;}
.x1f_c00213{left:282.214335px;}
.x6b_c00213{left:283.283535px;}
.x5b_c00213{left:285.560535px;}
.x29_c00213{left:292.668735px;}
.x68_c00213{left:293.688435px;}
.x44_c00213{left:302.781585px;}
.x53_c00213{left:304.172535px;}
.xc_c00213{left:313.463685px;}
.x20_c00213{left:314.963535px;}
.x6c_c00213{left:316.106985px;}
.x17_c00213{left:326.472285px;}
.x3f_c00213{left:337.198935px;}
.x54_c00213{left:338.253285px;}
.x18_c00213{left:348.242385px;}
.x5c_c00213{left:349.638285px;}
.x21_c00213{left:371.032185px;}
.x22_c00213{left:380.833185px;}
.x55_c00213{left:382.105335px;}
.x70_c00213{left:385.248585px;}
.x40_c00213{left:392.777535px;}
.x64_c00213{left:394.188285px;}
.x4a_c00213{left:403.830885px;}
.xd_c00213{left:414.176385px;}
.x39_c00213{left:415.205985px;}
.x23_c00213{left:424.304085px;}
.x33_c00213{left:425.927685px;}
.x74_c00213{left:428.877885px;}
.x19_c00213{left:434.951535px;}
.xe_c00213{left:436.090035px;}
.x5d_c00213{left:437.659185px;}
.x71_c00213{left:447.470085px;}
.x75_c00213{left:449.202585px;}
.x45_c00213{left:450.390585px;}
.x1a_c00213{left:458.330385px;}
.x56_c00213{left:459.557985px;}
.x76_c00213{left:463.211085px;}
.x69_c00213{left:469.566885px;}
.x34_c00213{left:470.769735px;}
.x2a_c00213{left:480.828135px;}
.x2b_c00213{left:492.485385px;}
.xf_c00213{left:502.553685px;}
.x4b_c00213{left:503.603085px;}
.x35_c00213{left:514.329735px;}
.x4c_c00213{left:515.730585px;}
.x24_c00213{left:524.046585px;}
.x2c_c00213{left:526.085985px;}
.x57_c00213{left:528.130335px;}
.x77_c00213{left:529.496535px;}
.x4_c00213{left:532.615035px;}
.x10_c00213{left:534.788085px;}
.x60_c00213{left:536.931435px;}
.x1b_c00213{left:547.103685px;}
.x36_c00213{left:548.509485px;}
.x2d_c00213{left:558.166935px;}
.x25_c00213{left:568.849035px;}
.x58_c00213{left:570.279585px;}
.x37_c00213{left:578.986635px;}
.x4d_c00213{left:581.600235px;}
.x3a_c00213{left:590.688435px;}
.x50_c00213{left:603.018885px;}
.x2_c00213{left:610.666635px;}
.x1c_c00213{left:612.498135px;}
.x46_c00213{left:614.171235px;}
.x38_c00213{left:624.442485px;}
.x6d_c00213{left:626.170035px;}
.x2e_c00213{left:627.224385px;}
.x51_c00213{left:635.287935px;}
.x11_c00213{left:646.484835px;}
.x3_c00213{left:657.889635px;}
.x5_c00213{left:663.389085px;}
.x59_c00213{left:668.081685px;}
.x72_c00213{left:669.487485px;}
.x3b_c00213{left:678.778635px;}
.x2f_c00213{left:680.674485px;}
.x6a_c00213{left:690.193335px;}
.x4e_c00213{left:691.792185px;}
.x78_c00213{left:702.494085px;}
.x3c_c00213{left:713.176185px;}
.x5e_c00213{left:724.204785px;}
@media print{
.v0_c00213{vertical-align:0.000000pt;}
.v1_c00213{vertical-align:10.137600pt;}
.ls1a_c00213{letter-spacing:-2.845926pt;}
.lsb_c00213{letter-spacing:-2.439360pt;}
.ls18_c00213{letter-spacing:-1.752256pt;}
.ls6_c00213{letter-spacing:-0.696960pt;}
.ls3_c00213{letter-spacing:0.000000pt;}
.lsd_c00213{letter-spacing:0.229997pt;}
.ls0_c00213{letter-spacing:0.473933pt;}
.ls19_c00213{letter-spacing:0.913018pt;}
.ls9_c00213{letter-spacing:1.108166pt;}
.lse_c00213{letter-spacing:1.442707pt;}
.ls8_c00213{letter-spacing:1.568160pt;}
.lsf_c00213{letter-spacing:1.628000pt;}
.lsa_c00213{letter-spacing:1.895731pt;}
.ls7_c00213{letter-spacing:1.923610pt;}
.ls16_c00213{letter-spacing:2.216333pt;}
.ls1b_c00213{letter-spacing:2.314400pt;}
.ls12_c00213{letter-spacing:2.815718pt;}
.ls15_c00213{letter-spacing:2.921609pt;}
.ls17_c00213{letter-spacing:2.989958pt;}
.ls14_c00213{letter-spacing:3.024806pt;}
.ls13_c00213{letter-spacing:3.150400pt;}
.ls10_c00213{letter-spacing:3.238400pt;}
.lsc_c00213{letter-spacing:3.247834pt;}
.ls4_c00213{letter-spacing:3.308800pt;}
.ls5_c00213{letter-spacing:3.484800pt;}
.ls2_c00213{letter-spacing:6.177512pt;}
.ls1_c00213{letter-spacing:8.363520pt;}
.ls11_c00213{letter-spacing:51.955376pt;}
.ls1c_c00213{letter-spacing:53.222576pt;}
.ws2_c00213{word-spacing:-20.671834pt;}
.ws0_c00213{word-spacing:-18.992160pt;}
.ws1_c00213{word-spacing:-17.424000pt;}
.ws3_c00213{word-spacing:0.000000pt;}
._9_c00213{width:1.393216pt;}
._1_c00213{width:2.579456pt;}
._4_c00213{width:5.784768pt;}
._7_c00213{width:8.851392pt;}
._3_c00213{width:10.663488pt;}
._8_c00213{width:12.614976pt;}
._a_c00213{width:14.496768pt;}
._6_c00213{width:18.539136pt;}
._5_c00213{width:28.854144pt;}
._2_c00213{width:30.073613pt;}
._0_c00213{width:39.453568pt;}
.fs1_c00213{font-size:19.712000pt;}
.fs3_c00213{font-size:24.640000pt;}
.fs5_c00213{font-size:32.560000pt;}
.fsb_c00213{font-size:38.192176pt;}
.fsa_c00213{font-size:40.128000pt;}
.fse_c00213{font-size:46.288000pt;}
.fs7_c00213{font-size:51.955376pt;}
.fsf_c00213{font-size:53.222576pt;}
.fs0_c00213{font-size:53.504000pt;}
.fs9_c00213{font-size:58.432176pt;}
.fs8_c00213{font-size:63.008000pt;}
.fs6_c00213{font-size:64.768000pt;}
.fs2_c00213{font-size:66.176000pt;}
.fsc_c00213{font-size:66.880000pt;}
.fs4_c00213{font-size:69.696000pt;}
.fsd_c00213{font-size:81.312176pt;}
.y0_c00213{bottom:0.000000pt;}
.y1_c00213{bottom:68.000000pt;}
.y21_c00213{bottom:124.424120pt;}
.y20_c00213{bottom:129.171720pt;}
.y1f_c00213{bottom:153.252920pt;}
.y1e_c00213{bottom:155.787320pt;}
.y1d_c00213{bottom:215.658120pt;}
.y1c_c00213{bottom:240.372920pt;}
.y1b_c00213{bottom:244.486920pt;}
.y1a_c00213{bottom:273.315720pt;}
.y19_c00213{bottom:301.515320pt;}
.y18_c00213{bottom:330.973320pt;}
.y17_c00213{bottom:359.806520pt;}
.y16_c00213{bottom:388.635320pt;}
.y15_c00213{bottom:418.093320pt;}
.y14_c00213{bottom:472.587320pt;}
.y13_c00213{bottom:501.732920pt;}
.y12_c00213{bottom:530.561720pt;}
.yf_c00213{bottom:558.744600pt;}
.y10_c00213{bottom:558.752520pt;}
.y11_c00213{bottom:563.508920pt;}
.ye_c00213{bottom:587.581320pt;}
.yd_c00213{bottom:616.414520pt;}
.yc_c00213{bottom:645.243320pt;}
.yb_c00213{bottom:674.072120pt;}
.ya_c00213{bottom:702.579720pt;}
.y9_c00213{bottom:731.412920pt;}
.y8_c00213{bottom:790.654520pt;}
.y7_c00213{bottom:821.696520pt;}
.y6_c00213{bottom:878.724920pt;}
.y2_c00213{bottom:923.072520pt;}
.y5_c00213{bottom:923.389320pt;}
.y4_c00213{bottom:956.970120pt;}
.y3_c00213{bottom:965.523720pt;}
.h3_c00213{height:20.559000pt;}
.h5_c00213{height:25.698750pt;}
.h7_c00213{height:33.959063pt;}
.h9_c00213{height:34.602280pt;}
.h10_c00213{height:35.446236pt;}
.hc_c00213{height:41.852250pt;}
.hf_c00213{height:48.276938pt;}
.h2_c00213{height:55.803000pt;}
.hb_c00213{height:60.942934pt;}
.ha_c00213{height:61.838906pt;}
.h8_c00213{height:63.566250pt;}
.h4_c00213{height:64.948125pt;}
.h6_c00213{height:68.402813pt;}
.hd_c00213{height:75.776663pt;}
.he_c00213{height:79.763751pt;}
.h1_c00213{height:986.666667pt;}
.h0_c00213{height:1122.666667pt;}
.w1_c00213{width:660.000000pt;}
.w0_c00213{width:793.333333pt;}
.x0_c00213{left:0.000000pt;}
.x62_c00213{left:54.331187pt;}
.x47_c00213{left:62.902387pt;}
.x6_c00213{left:64.019987pt;}
.x61_c00213{left:64.926387pt;}
.x1_c00213{left:66.666667pt;}
.x7_c00213{left:83.837587pt;}
.x30_c00213{left:93.174387pt;}
.x65_c00213{left:94.441587pt;}
.x26_c00213{left:102.981987pt;}
.x12_c00213{left:103.919187pt;}
.x31_c00213{left:112.485987pt;}
.x41_c00213{left:113.440787pt;}
.x48_c00213{left:122.148387pt;}
.x8_c00213{left:123.195587pt;}
.x14_c00213{left:131.005587pt;}
.x5f_c00213{left:131.960387pt;}
.x13_c00213{left:133.047187pt;}
.x27_c00213{left:141.957187pt;}
.x6e_c00213{left:142.881187pt;}
.x9_c00213{left:150.647187pt;}
.x42_c00213{left:151.782387pt;}
.x1d_c00213{left:161.273187pt;}
.x66_c00213{left:162.373187pt;}
.x43_c00213{left:172.039987pt;}
.x6f_c00213{left:173.280787pt;}
.x3d_c00213{left:182.071987pt;}
.x73_c00213{left:183.114787pt;}
.x1e_c00213{left:190.251587pt;}
.x52_c00213{left:192.015987pt;}
.x32_c00213{left:201.167987pt;}
.x63_c00213{left:202.144787pt;}
.xa_c00213{left:210.698387pt;}
.x49_c00213{left:211.679587pt;}
.x15_c00213{left:220.835987pt;}
.x4f_c00213{left:221.839187pt;}
.x3e_c00213{left:231.545587pt;}
.x67_c00213{left:232.548787pt;}
.xb_c00213{left:239.073987pt;}
.x28_c00213{left:240.481987pt;}
.x5a_c00213{left:241.744787pt;}
.x16_c00213{left:249.444787pt;}
.x1f_c00213{left:250.857187pt;}
.x6b_c00213{left:251.807587pt;}
.x5b_c00213{left:253.831587pt;}
.x29_c00213{left:260.149987pt;}
.x68_c00213{left:261.056387pt;}
.x44_c00213{left:269.139187pt;}
.x53_c00213{left:270.375587pt;}
.xc_c00213{left:278.634387pt;}
.x20_c00213{left:279.967587pt;}
.x6c_c00213{left:280.983987pt;}
.x17_c00213{left:290.197587pt;}
.x3f_c00213{left:299.732387pt;}
.x54_c00213{left:300.669587pt;}
.x18_c00213{left:309.548787pt;}
.x5c_c00213{left:310.789587pt;}
.x21_c00213{left:329.806387pt;}
.x22_c00213{left:338.518387pt;}
.x55_c00213{left:339.649187pt;}
.x70_c00213{left:342.443187pt;}
.x40_c00213{left:349.135587pt;}
.x64_c00213{left:350.389587pt;}
.x4a_c00213{left:358.960787pt;}
.xd_c00213{left:368.156787pt;}
.x39_c00213{left:369.071987pt;}
.x23_c00213{left:377.159187pt;}
.x33_c00213{left:378.602387pt;}
.x74_c00213{left:381.224787pt;}
.x19_c00213{left:386.623587pt;}
.xe_c00213{left:387.635587pt;}
.x5d_c00213{left:389.030387pt;}
.x71_c00213{left:397.751187pt;}
.x75_c00213{left:399.291187pt;}
.x45_c00213{left:400.347187pt;}
.x1a_c00213{left:407.404787pt;}
.x56_c00213{left:408.495987pt;}
.x76_c00213{left:411.743187pt;}
.x69_c00213{left:417.392787pt;}
.x34_c00213{left:418.461987pt;}
.x2a_c00213{left:427.402787pt;}
.x2b_c00213{left:437.764787pt;}
.xf_c00213{left:446.714387pt;}
.x4b_c00213{left:447.647187pt;}
.x35_c00213{left:457.181987pt;}
.x4c_c00213{left:458.427187pt;}
.x24_c00213{left:465.819187pt;}
.x2c_c00213{left:467.631987pt;}
.x57_c00213{left:469.449187pt;}
.x77_c00213{left:470.663587pt;}
.x4_c00213{left:473.435587pt;}
.x10_c00213{left:475.367187pt;}
.x60_c00213{left:477.272387pt;}
.x1b_c00213{left:486.314387pt;}
.x36_c00213{left:487.563987pt;}
.x2d_c00213{left:496.148387pt;}
.x25_c00213{left:505.643587pt;}
.x58_c00213{left:506.915187pt;}
.x37_c00213{left:514.654787pt;}
.x4d_c00213{left:516.977987pt;}
.x3a_c00213{left:525.056387pt;}
.x50_c00213{left:536.016787pt;}
.x2_c00213{left:542.814787pt;}
.x1c_c00213{left:544.442787pt;}
.x46_c00213{left:545.929987pt;}
.x38_c00213{left:555.059987pt;}
.x6d_c00213{left:556.595587pt;}
.x2e_c00213{left:557.532787pt;}
.x51_c00213{left:564.700387pt;}
.x11_c00213{left:574.653187pt;}
.x3_c00213{left:584.790787pt;}
.x5_c00213{left:589.679187pt;}
.x59_c00213{left:593.850387pt;}
.x72_c00213{left:595.099987pt;}
.x3b_c00213{left:603.358787pt;}
.x2f_c00213{left:605.043987pt;}
.x6a_c00213{left:613.505187pt;}
.x4e_c00213{left:614.926387pt;}
.x78_c00213{left:624.439187pt;}
.x3c_c00213{left:633.934387pt;}
.x5e_c00213{left:643.737587pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0b0f580ca76b1ed704e13f4a.woff2')format("woff");}.ff1_c00214{font-family:ff1_c00214;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00214;src:url('chunks/assets/font_a66adb2875e73ddc27b83ff4.woff2')format("woff");}.ff2_c00214{font-family:ff2_c00214;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00214;src:url('chunks/assets/font_4a9c790f21c1c54a30a13bad.woff2')format("woff");}.ff3_c00214{font-family:ff3_c00214;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00214;src:url('chunks/assets/font_ecb2fec0ff2b3638d0de12b0.woff2')format("woff");}.ff4_c00214{font-family:ff4_c00214;line-height:1.435059;font-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_c00214{transform:matrix(0.090394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090394,0.000000,0.000000,0.250000,0,0);}
.mca_c00214{transform:matrix(0.115021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115021,0.000000,0.000000,0.250000,0,0);}
.m8e_c00214{transform:matrix(0.116211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116211,0.000000,0.000000,0.250000,0,0);}
.m47_c00214{transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);}
.m92_c00214{transform:matrix(0.128801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128801,0.000000,0.000000,0.250000,0,0);}
.m4c_c00214{transform:matrix(0.170944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170944,0.000000,0.000000,0.250000,0,0);}
.m16_c00214{transform:matrix(0.195898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195898,0.000000,0.000000,0.250000,0,0);}
.m74_c00214{transform:matrix(0.222348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222348,0.000000,0.000000,0.250000,0,0);}
.mb8_c00214{transform:matrix(0.222386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222386,0.000000,0.000000,0.250000,0,0);}
.mac_c00214{transform:matrix(0.227167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227167,0.000000,0.000000,0.250000,0,0);}
.m67_c00214{transform:matrix(0.245407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245407,0.000000,0.000000,0.250000,0,0);}
.mab_c00214{transform:matrix(0.245737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245737,0.000000,0.000000,0.250000,0,0);}
.m5c_c00214{transform:matrix(0.248196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248196,0.000000,0.000000,0.250000,0,0);}
.m8a_c00214{transform:matrix(0.249542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249542,0.000000,0.000000,0.250000,0,0);}
.m15_c00214{transform:matrix(0.249831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249831,0.000000,0.000000,0.250000,0,0);}
.m1_c00214{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.ma_c00214{transform:matrix(0.251415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251415,0.000000,0.000000,0.250000,0,0);}
.mc_c00214{transform:matrix(0.251698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251698,0.000000,0.000000,0.250000,0,0);}
.ma7_c00214{transform:matrix(0.252118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252118,0.000000,0.000000,0.250000,0,0);}
.me_c00214{transform:matrix(0.254597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254597,0.000000,0.000000,0.250000,0,0);}
.m22_c00214{transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);}
.mc1_c00214{transform:matrix(0.256890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256890,0.000000,0.000000,0.250000,0,0);}
.ma4_c00214{transform:matrix(0.258289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258289,0.000000,0.000000,0.250000,0,0);}
.m50_c00214{transform:matrix(0.258953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258953,0.000000,0.000000,0.250000,0,0);}
.m6c_c00214{transform:matrix(0.260073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260073,0.000000,0.000000,0.250000,0,0);}
.m93_c00214{transform:matrix(0.260911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260911,0.000000,0.000000,0.250000,0,0);}
.m96_c00214{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m51_c00214{transform:matrix(0.260984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260984,0.000000,0.000000,0.250000,0,0);}
.mc4_c00214{transform:matrix(0.261057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261057,0.000000,0.000000,0.250000,0,0);}
.m38_c00214{transform:matrix(0.261121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261121,0.000000,0.000000,0.250000,0,0);}
.m4a_c00214{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.m43_c00214{transform:matrix(0.262649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262649,0.000000,0.000000,0.250000,0,0);}
.m2d_c00214{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m87_c00214{transform:matrix(0.263720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263720,0.000000,0.000000,0.250000,0,0);}
.m84_c00214{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m14_c00214{transform:matrix(0.264697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264697,0.000000,0.000000,0.250000,0,0);}
.m3c_c00214{transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);}
.m4_c00214{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.mb6_c00214{transform:matrix(0.267205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267205,0.000000,0.000000,0.250000,0,0);}
.m7_c00214{transform:matrix(0.267765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267765,0.000000,0.000000,0.250000,0,0);}
.m19_c00214{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.mb5_c00214{transform:matrix(0.267980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267980,0.000000,0.000000,0.250000,0,0);}
.m71_c00214{transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);}
.m60_c00214{transform:matrix(0.269972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269972,0.000000,0.000000,0.250000,0,0);}
.m66_c00214{transform:matrix(0.270456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270456,0.000000,0.000000,0.250000,0,0);}
.mbf_c00214{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m77_c00214{transform:matrix(0.270968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270968,0.000000,0.000000,0.250000,0,0);}
.m21_c00214{transform:matrix(0.271124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271124,0.000000,0.000000,0.250000,0,0);}
.ma1_c00214{transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);}
.mba_c00214{transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);}
.m2b_c00214{transform:matrix(0.274422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274422,0.000000,0.000000,0.250000,0,0);}
.m8_c00214{transform:matrix(0.274874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274874,0.000000,0.000000,0.250000,0,0);}
.mb3_c00214{transform:matrix(0.274975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274975,0.000000,0.000000,0.250000,0,0);}
.m30_c00214{transform:matrix(0.275040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275040,0.000000,0.000000,0.250000,0,0);}
.m68_c00214{transform:matrix(0.276021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276021,0.000000,0.000000,0.250000,0,0);}
.mc6_c00214{transform:matrix(0.276181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276181,0.000000,0.000000,0.250000,0,0);}
.m29_c00214{transform:matrix(0.276488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276488,0.000000,0.000000,0.250000,0,0);}
.m72_c00214{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m3f_c00214{transform:matrix(0.277547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277547,0.000000,0.000000,0.250000,0,0);}
.m53_c00214{transform:matrix(0.277612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277612,0.000000,0.000000,0.250000,0,0);}
.m62_c00214{transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);}
.m69_c00214{transform:matrix(0.277907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277907,0.000000,0.000000,0.250000,0,0);}
.mc5_c00214{transform:matrix(0.278023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278023,0.000000,0.000000,0.250000,0,0);}
.m1c_c00214{transform:matrix(0.278057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278057,0.000000,0.000000,0.250000,0,0);}
.m23_c00214{transform:matrix(0.278073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278073,0.000000,0.000000,0.250000,0,0);}
.m61_c00214{transform:matrix(0.278774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278774,0.000000,0.000000,0.250000,0,0);}
.m48_c00214{transform:matrix(0.279077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279077,0.000000,0.000000,0.250000,0,0);}
.m5f_c00214{transform:matrix(0.281612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281612,0.000000,0.000000,0.250000,0,0);}
.m99_c00214{transform:matrix(0.281783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281783,0.000000,0.000000,0.250000,0,0);}
.m89_c00214{transform:matrix(0.282140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282140,0.000000,0.000000,0.250000,0,0);}
.m76_c00214{transform:matrix(0.283223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283223,0.000000,0.000000,0.250000,0,0);}
.m6b_c00214{transform:matrix(0.283329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283329,0.000000,0.000000,0.250000,0,0);}
.maf_c00214{transform:matrix(0.283964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283964,0.000000,0.000000,0.250000,0,0);}
.m54_c00214{transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);}
.ma9_c00214{transform:matrix(0.284756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284756,0.000000,0.000000,0.250000,0,0);}
.m6e_c00214{transform:matrix(0.285273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285273,0.000000,0.000000,0.250000,0,0);}
.m1f_c00214{transform:matrix(0.285371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285371,0.000000,0.000000,0.250000,0,0);}
.mbe_c00214{transform:matrix(0.285782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285782,0.000000,0.000000,0.250000,0,0);}
.m9d_c00214{transform:matrix(0.287478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287478,0.000000,0.000000,0.250000,0,0);}
.m6f_c00214{transform:matrix(0.287521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287521,0.000000,0.000000,0.250000,0,0);}
.mc7_c00214{transform:matrix(0.287605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287605,0.000000,0.000000,0.250000,0,0);}
.m5e_c00214{transform:matrix(0.288441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288441,0.000000,0.000000,0.250000,0,0);}
.mc8_c00214{transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);}
.mb0_c00214{transform:matrix(0.288532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288532,0.000000,0.000000,0.250000,0,0);}
.m28_c00214{transform:matrix(0.288817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288817,0.000000,0.000000,0.250000,0,0);}
.m6_c00214{transform:matrix(0.288855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288855,0.000000,0.000000,0.250000,0,0);}
.m9a_c00214{transform:matrix(0.289069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289069,0.000000,0.000000,0.250000,0,0);}
.m75_c00214{transform:matrix(0.289076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289076,0.000000,0.000000,0.250000,0,0);}
.m39_c00214{transform:matrix(0.289100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289100,0.000000,0.000000,0.250000,0,0);}
.m65_c00214{transform:matrix(0.289520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289520,0.000000,0.000000,0.250000,0,0);}
.mbc_c00214{transform:matrix(0.290155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290155,0.000000,0.000000,0.250000,0,0);}
.m0_c00214{transform:matrix(0.291217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291217,0.000000,0.000000,0.250000,0,0);}
.m97_c00214{transform:matrix(0.291483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291483,0.000000,0.000000,0.250000,0,0);}
.m37_c00214{transform:matrix(0.292127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292127,0.000000,0.000000,0.250000,0,0);}
.m7d_c00214{transform:matrix(0.292392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292392,0.000000,0.000000,0.250000,0,0);}
.m64_c00214{transform:matrix(0.292497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292497,0.000000,0.000000,0.250000,0,0);}
.m55_c00214{transform:matrix(0.292744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292744,0.000000,0.000000,0.250000,0,0);}
.m32_c00214{transform:matrix(0.292855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292855,0.000000,0.000000,0.250000,0,0);}
.m24_c00214{transform:matrix(0.292881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292881,0.000000,0.000000,0.250000,0,0);}
.m10_c00214{transform:matrix(0.293778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293778,0.000000,0.000000,0.250000,0,0);}
.m70_c00214{transform:matrix(0.294224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294224,0.000000,0.000000,0.250000,0,0);}
.m9b_c00214{transform:matrix(0.295098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295098,0.000000,0.000000,0.250000,0,0);}
.m40_c00214{transform:matrix(0.296352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296352,0.000000,0.000000,0.250000,0,0);}
.m9_c00214{transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);}
.m73_c00214{transform:matrix(0.296872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296872,0.000000,0.000000,0.250000,0,0);}
.mbb_c00214{transform:matrix(0.296873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296873,0.000000,0.000000,0.250000,0,0);}
.mae_c00214{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.mb1_c00214{transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);}
.m35_c00214{transform:matrix(0.298510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298510,0.000000,0.000000,0.250000,0,0);}
.mc0_c00214{transform:matrix(0.299372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299372,0.000000,0.000000,0.250000,0,0);}
.m2_c00214{transform:matrix(0.300085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300085,0.000000,0.000000,0.250000,0,0);}
.m59_c00214{transform:matrix(0.300348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300348,0.000000,0.000000,0.250000,0,0);}
.m25_c00214{transform:matrix(0.300614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300614,0.000000,0.000000,0.250000,0,0);}
.maa_c00214{transform:matrix(0.301112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301112,0.000000,0.000000,0.250000,0,0);}
.m4b_c00214{transform:matrix(0.302148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302148,0.000000,0.000000,0.250000,0,0);}
.m3b_c00214{transform:matrix(0.302468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302468,0.000000,0.000000,0.250000,0,0);}
.m85_c00214{transform:matrix(0.304288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304288,0.000000,0.000000,0.250000,0,0);}
.m2e_c00214{transform:matrix(0.304485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304485,0.000000,0.000000,0.250000,0,0);}
.ma5_c00214{transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);}
.m4d_c00214{transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);}
.m98_c00214{transform:matrix(0.306092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306092,0.000000,0.000000,0.250000,0,0);}
.m57_c00214{transform:matrix(0.306147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306147,0.000000,0.000000,0.250000,0,0);}
.m45_c00214{transform:matrix(0.306527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306527,0.000000,0.000000,0.250000,0,0);}
.m9e_c00214{transform:matrix(0.306599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306599,0.000000,0.000000,0.250000,0,0);}
.m1a_c00214{transform:matrix(0.306828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306828,0.000000,0.000000,0.250000,0,0);}
.m3_c00214{transform:matrix(0.306840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306840,0.000000,0.000000,0.250000,0,0);}
.m3d_c00214{transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);}
.m4f_c00214{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m1e_c00214{transform:matrix(0.308625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308625,0.000000,0.000000,0.250000,0,0);}
.m7f_c00214{transform:matrix(0.308858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308858,0.000000,0.000000,0.250000,0,0);}
.mb4_c00214{transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);}
.mc2_c00214{transform:matrix(0.308942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308942,0.000000,0.000000,0.250000,0,0);}
.m78_c00214{transform:matrix(0.308989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308989,0.000000,0.000000,0.250000,0,0);}
.ma0_c00214{transform:matrix(0.309093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309093,0.000000,0.000000,0.250000,0,0);}
.mad_c00214{transform:matrix(0.309603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309603,0.000000,0.000000,0.250000,0,0);}
.m49_c00214{transform:matrix(0.309971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309971,0.000000,0.000000,0.250000,0,0);}
.m91_c00214{transform:matrix(0.310694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310694,0.000000,0.000000,0.250000,0,0);}
.m3e_c00214{transform:matrix(0.311150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311150,0.000000,0.000000,0.250000,0,0);}
.mc3_c00214{transform:matrix(0.311211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311211,0.000000,0.000000,0.250000,0,0);}
.mb2_c00214{transform:matrix(0.311922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311922,0.000000,0.000000,0.250000,0,0);}
.m6d_c00214{transform:matrix(0.312290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312290,0.000000,0.000000,0.250000,0,0);}
.mf_c00214{transform:matrix(0.312778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312778,0.000000,0.000000,0.250000,0,0);}
.m52_c00214{transform:matrix(0.314696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314696,0.000000,0.000000,0.250000,0,0);}
.m5b_c00214{transform:matrix(0.315717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315717,0.000000,0.000000,0.250000,0,0);}
.m4e_c00214{transform:matrix(0.315948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315948,0.000000,0.000000,0.250000,0,0);}
.m42_c00214{transform:matrix(0.316198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316198,0.000000,0.000000,0.250000,0,0);}
.m7a_c00214{transform:matrix(0.316653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316653,0.000000,0.000000,0.250000,0,0);}
.mc9_c00214{transform:matrix(0.317571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317571,0.000000,0.000000,0.250000,0,0);}
.m88_c00214{transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);}
.m46_c00214{transform:matrix(0.318953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318953,0.000000,0.000000,0.250000,0,0);}
.m8d_c00214{transform:matrix(0.319045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319045,0.000000,0.000000,0.250000,0,0);}
.m95_c00214{transform:matrix(0.319628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319628,0.000000,0.000000,0.250000,0,0);}
.m20_c00214{transform:matrix(0.320473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320473,0.000000,0.000000,0.250000,0,0);}
.mb9_c00214{transform:matrix(0.322646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322646,0.000000,0.000000,0.250000,0,0);}
.ma8_c00214{transform:matrix(0.322864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322864,0.000000,0.000000,0.250000,0,0);}
.m11_c00214{transform:matrix(0.324794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324794,0.000000,0.000000,0.250000,0,0);}
.m44_c00214{transform:matrix(0.325085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325085,0.000000,0.000000,0.250000,0,0);}
.m79_c00214{transform:matrix(0.325525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325525,0.000000,0.000000,0.250000,0,0);}
.ma2_c00214{transform:matrix(0.325819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325819,0.000000,0.000000,0.250000,0,0);}
.m5_c00214{transform:matrix(0.325899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325899,0.000000,0.000000,0.250000,0,0);}
.m1d_c00214{transform:matrix(0.326049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326049,0.000000,0.000000,0.250000,0,0);}
.ma6_c00214{transform:matrix(0.326379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326379,0.000000,0.000000,0.250000,0,0);}
.m2f_c00214{transform:matrix(0.327070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327070,0.000000,0.000000,0.250000,0,0);}
.m7e_c00214{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m34_c00214{transform:matrix(0.329713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329713,0.000000,0.000000,0.250000,0,0);}
.m33_c00214{transform:matrix(0.331698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331698,0.000000,0.000000,0.250000,0,0);}
.m2a_c00214{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m2c_c00214{transform:matrix(0.334273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334273,0.000000,0.000000,0.250000,0,0);}
.m12_c00214{transform:matrix(0.334541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334541,0.000000,0.000000,0.250000,0,0);}
.m9c_c00214{transform:matrix(0.335804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335804,0.000000,0.000000,0.250000,0,0);}
.m3a_c00214{transform:matrix(0.336348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336348,0.000000,0.000000,0.250000,0,0);}
.m83_c00214{transform:matrix(0.337061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337061,0.000000,0.000000,0.250000,0,0);}
.m18_c00214{transform:matrix(0.337295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337295,0.000000,0.000000,0.250000,0,0);}
.m31_c00214{transform:matrix(0.337410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337410,0.000000,0.000000,0.250000,0,0);}
.m8c_c00214{transform:matrix(0.339459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339459,0.000000,0.000000,0.250000,0,0);}
.mbd_c00214{transform:matrix(0.339789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339789,0.000000,0.000000,0.250000,0,0);}
.m58_c00214{transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);}
.m82_c00214{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.mb7_c00214{transform:matrix(0.343551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343551,0.000000,0.000000,0.250000,0,0);}
.m63_c00214{transform:matrix(0.344852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344852,0.000000,0.000000,0.250000,0,0);}
.m9f_c00214{transform:matrix(0.345336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345336,0.000000,0.000000,0.250000,0,0);}
.m5a_c00214{transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);}
.m1b_c00214{transform:matrix(0.347766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347766,0.000000,0.000000,0.250000,0,0);}
.m36_c00214{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.ma3_c00214{transform:matrix(0.352464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352464,0.000000,0.000000,0.250000,0,0);}
.m56_c00214{transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);}
.m27_c00214{transform:matrix(0.355222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355222,0.000000,0.000000,0.250000,0,0);}
.m7b_c00214{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m7c_c00214{transform:matrix(0.356321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356321,0.000000,0.000000,0.250000,0,0);}
.m80_c00214{transform:matrix(0.358126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358126,0.000000,0.000000,0.250000,0,0);}
.m6a_c00214{transform:matrix(0.358842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358842,0.000000,0.000000,0.250000,0,0);}
.m81_c00214{transform:matrix(0.359212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359212,0.000000,0.000000,0.250000,0,0);}
.m8f_c00214{transform:matrix(0.359665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359665,0.000000,0.000000,0.250000,0,0);}
.m94_c00214{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m13_c00214{transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);}
.md_c00214{transform:matrix(0.368363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368363,0.000000,0.000000,0.250000,0,0);}
.m86_c00214{transform:matrix(0.370364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370364,0.000000,0.000000,0.250000,0,0);}
.m26_c00214{transform:matrix(0.374714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374714,0.000000,0.000000,0.250000,0,0);}
.m8b_c00214{transform:matrix(0.381746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381746,0.000000,0.000000,0.250000,0,0);}
.m90_c00214{transform:matrix(0.385852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385852,0.000000,0.000000,0.250000,0,0);}
.m17_c00214{transform:matrix(0.396157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396157,0.000000,0.000000,0.250000,0,0);}
.mb_c00214{transform:matrix(0.416907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416907,0.000000,0.000000,0.250000,0,0);}
.m5d_c00214{transform:matrix(0.424628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424628,0.000000,0.000000,0.250000,0,0);}
.v0_c00214{vertical-align:0.000000px;}
.ls10_c00214{letter-spacing:-2.744280px;}
.lsd_c00214{letter-spacing:-2.375762px;}
.ls15_c00214{letter-spacing:-1.897474px;}
.ls1a_c00214{letter-spacing:-1.753290px;}
.ls12_c00214{letter-spacing:-1.693613px;}
.ls7_c00214{letter-spacing:-1.372140px;}
.ls19_c00214{letter-spacing:-0.454766px;}
.ls14_c00214{letter-spacing:-0.344995px;}
.ls5_c00214{letter-spacing:0.000000px;}
.lsa_c00214{letter-spacing:0.705672px;}
.ls9_c00214{letter-spacing:1.356458px;}
.lsf_c00214{letter-spacing:1.701454px;}
.lsb_c00214{letter-spacing:1.952359px;}
.ls8_c00214{letter-spacing:1.960200px;}
.ls3_c00214{letter-spacing:2.132698px;}
.ls2_c00214{letter-spacing:2.344399px;}
.ls13_c00214{letter-spacing:2.571782px;}
.lse_c00214{letter-spacing:2.901096px;}
.ls1_c00214{letter-spacing:3.112798px;}
.ls16_c00214{letter-spacing:3.167683px;}
.lsc_c00214{letter-spacing:3.496997px;}
.ls17_c00214{letter-spacing:3.559723px;}
.ls4_c00214{letter-spacing:3.623400px;}
.ls6_c00214{letter-spacing:3.920400px;}
.ls0_c00214{letter-spacing:5.254128px;}
.ls11_c00214{letter-spacing:31.363200px;}
.ls18_c00214{letter-spacing:91.238598px;}
.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;}
}
.wsa_c00214{word-spacing:-23.161723px;}
.wsd_c00214{word-spacing:-21.946399px;}
.wse_c00214{word-spacing:-21.734698px;}
.ws3_c00214{word-spacing:-21.554359px;}
.ws5_c00214{word-spacing:-21.303454px;}
.ws2_c00214{word-spacing:-20.307672px;}
.ws0_c00214{word-spacing:-19.602000px;}
.ws8_c00214{word-spacing:-19.257005px;}
.ws6_c00214{word-spacing:-17.908387px;}
.wsb_c00214{word-spacing:-2.352240px;}
.wsf_c00214{word-spacing:0.000000px;}
.ws1_c00214{word-spacing:0.627264px;}
.ws9_c00214{word-spacing:1.254528px;}
.wsc_c00214{word-spacing:2.665872px;}
.ws4_c00214{word-spacing:4.155624px;}
.ws7_c00214{word-spacing:6.429456px;}
._12_c00214{margin-left:-12.074832px;}
._18_c00214{margin-left:-9.747144px;}
._f_c00214{margin-left:-7.323307px;}
._2_c00214{margin-left:-4.312440px;}
._19_c00214{margin-left:-2.665872px;}
._7_c00214{width:4.390848px;}
._0_c00214{width:5.723784px;}
._5_c00214{width:6.900300px;}
._6_c00214{width:7.919208px;}
._e_c00214{width:9.016920px;}
._3_c00214{width:10.506672px;}
._13_c00214{width:11.526768px;}
._4_c00214{width:12.545280px;}
._15_c00214{width:14.505480px;}
._9_c00214{width:17.484984px;}
._a_c00214{width:20.856528px;}
._c_c00214{width:22.267872px;}
._10_c00214{width:24.306480px;}
._16_c00214{width:27.442800px;}
._1_c00214{width:30.150648px;}
._d_c00214{width:32.068872px;}
._8_c00214{width:33.793452px;}
._14_c00214{width:37.008180px;}
._b_c00214{width:38.269836px;}
._11_c00214{width:39.596040px;}
._17_c00214{width:42.667416px;}
.fc0_c00214{color:transparent;}
.fs4_c00214{font-size:22.176000px;}
.fs7_c00214{font-size:22.572000px;}
.fse_c00214{font-size:28.314000px;}
.fs6_c00214{font-size:31.363200px;}
.fs1_c00214{font-size:33.264000px;}
.fsc_c00214{font-size:38.808000px;}
.fs3_c00214{font-size:39.204000px;}
.fs8_c00214{font-size:39.600000px;}
.fs10_c00214{font-size:50.094000px;}
.fsd_c00214{font-size:50.292000px;}
.fsf_c00214{font-size:56.628000px;}
.fs0_c00214{font-size:72.468000px;}
.fs5_c00214{font-size:72.864000px;}
.fs2_c00214{font-size:78.408000px;}
.fsa_c00214{font-size:78.804000px;}
.fsb_c00214{font-size:79.200000px;}
.fs9_c00214{font-size:91.238598px;}
.y0_c00214{bottom:0.000000px;}
.y28_c00214{bottom:14.519385px;}
.y27_c00214{bottom:15.949935px;}
.y26_c00214{bottom:74.755935px;}
.y1_c00214{bottom:76.500000px;}
.y2a_c00214{bottom:99.347535px;}
.y25_c00214{bottom:106.470585px;}
.y24_c00214{bottom:113.242185px;}
.y23_c00214{bottom:134.274735px;}
.y22_c00214{bottom:144.253935px;}
.y21_c00214{bottom:144.259281px;}
.y20_c00214{bottom:205.554735px;}
.y1f_c00214{bottom:238.338585px;}
.y1e_c00214{bottom:265.073535px;}
.y1d_c00214{bottom:297.149535px;}
.y1c_c00214{bottom:329.220585px;}
.y1b_c00214{bottom:361.657935px;}
.y1a_c00214{bottom:393.733935px;}
.y19_c00214{bottom:426.166335px;}
.y18_c00214{bottom:458.955135px;}
.y17_c00214{bottom:474.988185px;}
.y16_c00214{bottom:491.743935px;}
.y15_c00214{bottom:556.603785px;}
.y14_c00214{bottom:589.041135px;}
.y13_c00214{bottom:620.755785px;}
.y12_c00214{bottom:639.649935px;}
.y11_c00214{bottom:643.208985px;}
.y10_c00214{bottom:652.836735px;}
.yf_c00214{bottom:666.379935px;}
.ye_c00214{bottom:685.269135px;}
.yd_c00214{bottom:717.701535px;}
.ya_c00214{bottom:781.853535px;}
.yc_c00214{bottom:786.486735px;}
.yb_c00214{bottom:792.896985px;}
.y9_c00214{bottom:814.285935px;}
.y8_c00214{bottom:833.170185px;}
.y7_c00214{bottom:847.074735px;}
.y6_c00214{bottom:878.789385px;}
.y5_c00214{bottom:880.571385px;}
.y4_c00214{bottom:916.211385px;}
.y3_c00214{bottom:959.697135px;}
.y29_c00214{bottom:1072.670985px;}
.y2_c00214{bottom:1074.452985px;}
.h8_c00214{height:20.887891px;}
.h6_c00214{height:23.128875px;}
.h9_c00214{height:23.541891px;}
.h10_c00214{height:29.530617px;}
.h3_c00214{height:34.693313px;}
.h5_c00214{height:38.476582px;}
.he_c00214{height:40.475531px;}
.ha_c00214{height:41.301563px;}
.hf_c00214{height:49.358848px;}
.h12_c00214{height:52.246477px;}
.h11_c00214{height:59.061234px;}
.hb_c00214{height:60.764906px;}
.h2_c00214{height:71.123379px;}
.h7_c00214{height:71.512031px;}
.h4_c00214{height:76.953164px;}
.hc_c00214{height:77.341816px;}
.hd_c00214{height:82.448438px;}
.h1_c00214{height:1110.000000px;}
.h0_c00214{height:1263.000000px;}
.w1_c00214{width:751.500000px;}
.w0_c00214{width:892.500000px;}
.x0_c00214{left:0.000000px;}
.x5b_c00214{left:45.842385px;}
.x20_c00214{left:62.603085px;}
.x4_c00214{left:64.291035px;}
.x74_c00214{left:65.983935px;}
.x1_c00214{left:70.500000px;}
.x4d_c00214{left:86.249235px;}
.xf_c00214{left:97.015485px;}
.x58_c00214{left:98.035185px;}
.x29_c00214{left:106.841235px;}
.x46_c00214{left:107.875785px;}
.x38_c00214{left:117.790635px;}
.x3f_c00214{left:119.339985px;}
.x6e_c00214{left:120.874485px;}
.x34_c00214{left:129.809235px;}
.x5c_c00214{left:131.512035px;}
.x10_c00214{left:141.124935px;}
.x2a_c00214{left:151.361535px;}
.x6f_c00214{left:152.782185px;}
.x3_c00214{left:155.187885px;}
.x11_c00214{left:162.949485px;}
.x68_c00214{left:163.998885px;}
.x39_c00214{left:173.676135px;}
.x2b_c00214{left:174.700785px;}
.x47_c00214{left:185.412585px;}
.x61_c00214{left:186.818385px;}
.x5_c00214{left:195.916485px;}
.x70_c00214{left:197.520285px;}
.x40_c00214{left:207.355935px;}
.x6a_c00214{left:208.845885px;}
.x35_c00214{left:217.211385px;}
.x6_c00214{left:218.711235px;}
.x2c_c00214{left:229.764585px;}
.x71_c00214{left:230.997135px;}
.x41_c00214{left:232.952385px;}
.x42_c00214{left:234.076035px;}
.x12_c00214{left:240.644685px;}
.x75_c00214{left:242.773185px;}
.x13_c00214{left:251.846535px;}
.x62_c00214{left:253.049385px;}
.x36_c00214{left:262.385085px;}
.x65_c00214{left:264.449235px;}
.x3a_c00214{left:272.012835px;}
.x14_c00214{left:274.141335px;}
.x72_c00214{left:276.274785px;}
.x3b_c00214{left:284.853135px;}
.x7_c00214{left:285.887685px;}
.x15_c00214{left:295.847085px;}
.x6b_c00214{left:296.926185px;}
.x21_c00214{left:306.727185px;}
.x76_c00214{left:309.014085px;}
.x3c_c00214{left:316.404435px;}
.x8_c00214{left:317.760735px;}
.x56_c00214{left:328.121085px;}
.x4e_c00214{left:329.299185px;}
.x48_c00214{left:330.437685px;}
.x2d_c00214{left:339.189285px;}
.x16_c00214{left:340.446585px;}
.x43_c00214{left:351.519735px;}
.x66_c00214{left:352.890885px;}
.x2e_c00214{left:362.330535px;}
.x5d_c00214{left:373.953135px;}
.x2f_c00214{left:384.273885px;}
.x4f_c00214{left:386.016285px;}
.x22_c00214{left:395.515335px;}
.x59_c00214{left:397.044885px;}
.x9_c00214{left:405.890535px;}
.x49_c00214{left:416.518185px;}
.x5e_c00214{left:418.102185px;}
.x30_c00214{left:428.467485px;}
.x5a_c00214{left:438.649635px;}
.x23_c00214{left:439.832685px;}
.x50_c00214{left:450.004935px;}
.x5f_c00214{left:451.608735px;}
.x31_c00214{left:461.226585px;}
.x4a_c00214{left:471.438435px;}
.x51_c00214{left:473.170935px;}
.x17_c00214{left:483.229335px;}
.x69_c00214{left:484.422285px;}
.xa_c00214{left:495.292485px;}
.x18_c00214{left:505.969635px;}
.x63_c00214{left:507.053685px;}
.x55_c00214{left:513.231285px;}
.x6c_c00214{left:516.305235px;}
.xb_c00214{left:517.359585px;}
.x73_c00214{left:519.304935px;}
.x32_c00214{left:527.898135px;}
.x52_c00214{left:529.343535px;}
.x19_c00214{left:538.931685px;}
.x60_c00214{left:540.713685px;}
.x24_c00214{left:549.321735px;}
.x64_c00214{left:550.702785px;}
.x3d_c00214{left:561.365085px;}
.x53_c00214{left:572.621385px;}
.x44_c00214{left:583.145085px;}
.xc_c00214{left:594.426135px;}
.x25_c00214{left:603.984585px;}
.xd_c00214{left:605.222085px;}
.x6d_c00214{left:606.617985px;}
.x4b_c00214{left:616.206135px;}
.x67_c00214{left:618.027735px;}
.x33_c00214{left:627.214935px;}
.x1a_c00214{left:638.342535px;}
.x54_c00214{left:640.089885px;}
.x4c_c00214{left:650.103735px;}
.x2_c00214{left:651.885735px;}
.x26_c00214{left:660.117585px;}
.xe_c00214{left:671.052135px;}
.x57_c00214{left:673.289535px;}
.x1b_c00214{left:674.338935px;}
.x37_c00214{left:691.258035px;}
.x1c_c00214{left:693.777585px;}
.x3e_c00214{left:696.391185px;}
.x45_c00214{left:697.757385px;}
.x77_c00214{left:699.722535px;}
.x28_c00214{left:701.162985px;}
.x27_c00214{left:704.291385px;}
.x1d_c00214{left:705.910035px;}
.x1e_c00214{left:711.909435px;}
.x1f_c00214{left:716.814885px;}
.x78_c00214{left:739.817535px;}
.x79_c00214{left:748.668135px;}
@media print{
.v0_c00214{vertical-align:0.000000pt;}
.ls10_c00214{letter-spacing:-2.439360pt;}
.lsd_c00214{letter-spacing:-2.111789pt;}
.ls15_c00214{letter-spacing:-1.686643pt;}
.ls1a_c00214{letter-spacing:-1.558480pt;}
.ls12_c00214{letter-spacing:-1.505434pt;}
.ls7_c00214{letter-spacing:-1.219680pt;}
.ls19_c00214{letter-spacing:-0.404237pt;}
.ls14_c00214{letter-spacing:-0.306662pt;}
.ls5_c00214{letter-spacing:0.000000pt;}
.lsa_c00214{letter-spacing:0.627264pt;}
.ls9_c00214{letter-spacing:1.205741pt;}
.lsf_c00214{letter-spacing:1.512403pt;}
.lsb_c00214{letter-spacing:1.735430pt;}
.ls8_c00214{letter-spacing:1.742400pt;}
.ls3_c00214{letter-spacing:1.895731pt;}
.ls2_c00214{letter-spacing:2.083910pt;}
.ls13_c00214{letter-spacing:2.286029pt;}
.lse_c00214{letter-spacing:2.578752pt;}
.ls1_c00214{letter-spacing:2.766931pt;}
.ls16_c00214{letter-spacing:2.815718pt;}
.lsc_c00214{letter-spacing:3.108442pt;}
.ls17_c00214{letter-spacing:3.164198pt;}
.ls4_c00214{letter-spacing:3.220800pt;}
.ls6_c00214{letter-spacing:3.484800pt;}
.ls0_c00214{letter-spacing:4.670336pt;}
.ls11_c00214{letter-spacing:27.878400pt;}
.ls18_c00214{letter-spacing:81.100976pt;}
.wsa_c00214{word-spacing:-20.588198pt;}
.wsd_c00214{word-spacing:-19.507910pt;}
.wse_c00214{word-spacing:-19.319731pt;}
.ws3_c00214{word-spacing:-19.159430pt;}
.ws5_c00214{word-spacing:-18.936403pt;}
.ws2_c00214{word-spacing:-18.051264pt;}
.ws0_c00214{word-spacing:-17.424000pt;}
.ws8_c00214{word-spacing:-17.117338pt;}
.ws6_c00214{word-spacing:-15.918566pt;}
.wsb_c00214{word-spacing:-2.090880pt;}
.wsf_c00214{word-spacing:0.000000pt;}
.ws1_c00214{word-spacing:0.557568pt;}
.ws9_c00214{word-spacing:1.115136pt;}
.wsc_c00214{word-spacing:2.369664pt;}
.ws4_c00214{word-spacing:3.693888pt;}
.ws7_c00214{word-spacing:5.715072pt;}
._12_c00214{margin-left:-10.733184pt;}
._18_c00214{margin-left:-8.664128pt;}
._f_c00214{margin-left:-6.509606pt;}
._2_c00214{margin-left:-3.833280pt;}
._19_c00214{margin-left:-2.369664pt;}
._7_c00214{width:3.902976pt;}
._0_c00214{width:5.087808pt;}
._5_c00214{width:6.133600pt;}
._6_c00214{width:7.039296pt;}
._e_c00214{width:8.015040pt;}
._3_c00214{width:9.339264pt;}
._13_c00214{width:10.246016pt;}
._4_c00214{width:11.151360pt;}
._15_c00214{width:12.893760pt;}
._9_c00214{width:15.542208pt;}
._a_c00214{width:18.539136pt;}
._c_c00214{width:19.793664pt;}
._10_c00214{width:21.605760pt;}
._16_c00214{width:24.393600pt;}
._1_c00214{width:26.800576pt;}
._d_c00214{width:28.505664pt;}
._8_c00214{width:30.038624pt;}
._14_c00214{width:32.896160pt;}
._b_c00214{width:34.017632pt;}
._11_c00214{width:35.196480pt;}
._17_c00214{width:37.926592pt;}
.fs4_c00214{font-size:19.712000pt;}
.fs7_c00214{font-size:20.064000pt;}
.fse_c00214{font-size:25.168000pt;}
.fs6_c00214{font-size:27.878400pt;}
.fs1_c00214{font-size:29.568000pt;}
.fsc_c00214{font-size:34.496000pt;}
.fs3_c00214{font-size:34.848000pt;}
.fs8_c00214{font-size:35.200000pt;}
.fs10_c00214{font-size:44.528000pt;}
.fsd_c00214{font-size:44.704000pt;}
.fsf_c00214{font-size:50.336000pt;}
.fs0_c00214{font-size:64.416000pt;}
.fs5_c00214{font-size:64.768000pt;}
.fs2_c00214{font-size:69.696000pt;}
.fsa_c00214{font-size:70.048000pt;}
.fsb_c00214{font-size:70.400000pt;}
.fs9_c00214{font-size:81.100976pt;}
.y0_c00214{bottom:0.000000pt;}
.y28_c00214{bottom:12.906120pt;}
.y27_c00214{bottom:14.177720pt;}
.y26_c00214{bottom:66.449720pt;}
.y1_c00214{bottom:68.000000pt;}
.y2a_c00214{bottom:88.308920pt;}
.y25_c00214{bottom:94.640520pt;}
.y24_c00214{bottom:100.659720pt;}
.y23_c00214{bottom:119.355320pt;}
.y22_c00214{bottom:128.225720pt;}
.y21_c00214{bottom:128.230472pt;}
.y20_c00214{bottom:182.715320pt;}
.y1f_c00214{bottom:211.856520pt;}
.y1e_c00214{bottom:235.620920pt;}
.y1d_c00214{bottom:264.132920pt;}
.y1c_c00214{bottom:292.640520pt;}
.y1b_c00214{bottom:321.473720pt;}
.y1a_c00214{bottom:349.985720pt;}
.y19_c00214{bottom:378.814520pt;}
.y18_c00214{bottom:407.960120pt;}
.y17_c00214{bottom:422.211720pt;}
.y16_c00214{bottom:437.105720pt;}
.y15_c00214{bottom:494.758920pt;}
.y14_c00214{bottom:523.592120pt;}
.y13_c00214{bottom:551.782920pt;}
.y12_c00214{bottom:568.577720pt;}
.y11_c00214{bottom:571.741320pt;}
.y10_c00214{bottom:580.299320pt;}
.yf_c00214{bottom:592.337720pt;}
.ye_c00214{bottom:609.128120pt;}
.yd_c00214{bottom:637.956920pt;}
.ya_c00214{bottom:694.980920pt;}
.yc_c00214{bottom:699.099320pt;}
.yb_c00214{bottom:704.797320pt;}
.y9_c00214{bottom:723.809720pt;}
.y8_c00214{bottom:740.595720pt;}
.y7_c00214{bottom:752.955320pt;}
.y6_c00214{bottom:781.146120pt;}
.y5_c00214{bottom:782.730120pt;}
.y4_c00214{bottom:814.410120pt;}
.y3_c00214{bottom:853.064120pt;}
.y29_c00214{bottom:953.485320pt;}
.y2_c00214{bottom:955.069320pt;}
.h8_c00214{height:18.567014pt;}
.h6_c00214{height:20.559000pt;}
.h9_c00214{height:20.926125pt;}
.h10_c00214{height:26.249438pt;}
.h3_c00214{height:30.838500pt;}
.h5_c00214{height:34.201406pt;}
.he_c00214{height:35.978250pt;}
.ha_c00214{height:36.712500pt;}
.hf_c00214{height:43.874531pt;}
.h12_c00214{height:46.441313pt;}
.h11_c00214{height:52.498875pt;}
.hb_c00214{height:54.013250pt;}
.h2_c00214{height:63.220781pt;}
.h7_c00214{height:63.566250pt;}
.h4_c00214{height:68.402813pt;}
.hc_c00214{height:68.748281pt;}
.hd_c00214{height:73.287500pt;}
.h1_c00214{height:986.666667pt;}
.h0_c00214{height:1122.666667pt;}
.w1_c00214{width:668.000000pt;}
.w0_c00214{width:793.333333pt;}
.x0_c00214{left:0.000000pt;}
.x5b_c00214{left:40.748787pt;}
.x20_c00214{left:55.647187pt;}
.x4_c00214{left:57.147587pt;}
.x74_c00214{left:58.652387pt;}
.x1_c00214{left:62.666667pt;}
.x4d_c00214{left:76.665987pt;}
.xf_c00214{left:86.235987pt;}
.x58_c00214{left:87.142387pt;}
.x29_c00214{left:94.969987pt;}
.x46_c00214{left:95.889587pt;}
.x38_c00214{left:104.702787pt;}
.x3f_c00214{left:106.079987pt;}
.x6e_c00214{left:107.443987pt;}
.x34_c00214{left:115.385987pt;}
.x5c_c00214{left:116.899587pt;}
.x10_c00214{left:125.444387pt;}
.x2a_c00214{left:134.543587pt;}
.x6f_c00214{left:135.806387pt;}
.x3_c00214{left:137.944787pt;}
.x11_c00214{left:144.843987pt;}
.x68_c00214{left:145.776787pt;}
.x39_c00214{left:154.378787pt;}
.x2b_c00214{left:155.289587pt;}
.x47_c00214{left:164.811187pt;}
.x61_c00214{left:166.060787pt;}
.x5_c00214{left:174.147987pt;}
.x70_c00214{left:175.573587pt;}
.x40_c00214{left:184.316387pt;}
.x6a_c00214{left:185.640787pt;}
.x35_c00214{left:193.076787pt;}
.x6_c00214{left:194.409987pt;}
.x2c_c00214{left:204.235187pt;}
.x71_c00214{left:205.330787pt;}
.x41_c00214{left:207.068787pt;}
.x42_c00214{left:208.067587pt;}
.x12_c00214{left:213.906387pt;}
.x75_c00214{left:215.798387pt;}
.x13_c00214{left:223.863587pt;}
.x62_c00214{left:224.932787pt;}
.x36_c00214{left:233.231187pt;}
.x65_c00214{left:235.065987pt;}
.x3a_c00214{left:241.789187pt;}
.x14_c00214{left:243.681187pt;}
.x72_c00214{left:245.577587pt;}
.x3b_c00214{left:253.202787pt;}
.x7_c00214{left:254.122387pt;}
.x15_c00214{left:262.975187pt;}
.x6b_c00214{left:263.934387pt;}
.x21_c00214{left:272.646387pt;}
.x76_c00214{left:274.679187pt;}
.x3c_c00214{left:281.248387pt;}
.x8_c00214{left:282.453987pt;}
.x56_c00214{left:291.663187pt;}
.x4e_c00214{left:292.710387pt;}
.x48_c00214{left:293.722387pt;}
.x2d_c00214{left:301.501587pt;}
.x16_c00214{left:302.619187pt;}
.x43_c00214{left:312.461987pt;}
.x66_c00214{left:313.680787pt;}
.x2e_c00214{left:322.071587pt;}
.x5d_c00214{left:332.402787pt;}
.x2f_c00214{left:341.576787pt;}
.x4f_c00214{left:343.125587pt;}
.x22_c00214{left:351.569187pt;}
.x59_c00214{left:352.928787pt;}
.x9_c00214{left:360.791587pt;}
.x49_c00214{left:370.238387pt;}
.x5e_c00214{left:371.646387pt;}
.x30_c00214{left:380.859987pt;}
.x5a_c00214{left:389.910787pt;}
.x23_c00214{left:390.962387pt;}
.x50_c00214{left:400.004387pt;}
.x5f_c00214{left:401.429987pt;}
.x31_c00214{left:409.979187pt;}
.x4a_c00214{left:419.056387pt;}
.x51_c00214{left:420.596387pt;}
.x17_c00214{left:429.537187pt;}
.x69_c00214{left:430.597587pt;}
.xa_c00214{left:440.259987pt;}
.x18_c00214{left:449.750787pt;}
.x63_c00214{left:450.714387pt;}
.x55_c00214{left:456.205587pt;}
.x6c_c00214{left:458.937987pt;}
.xb_c00214{left:459.875187pt;}
.x73_c00214{left:461.604387pt;}
.x32_c00214{left:469.242787pt;}
.x52_c00214{left:470.527587pt;}
.x19_c00214{left:479.050387pt;}
.x60_c00214{left:480.634387pt;}
.x24_c00214{left:488.285987pt;}
.x64_c00214{left:489.513587pt;}
.x3d_c00214{left:498.991187pt;}
.x53_c00214{left:508.996787pt;}
.x44_c00214{left:518.351187pt;}
.xc_c00214{left:528.378787pt;}
.x25_c00214{left:536.875187pt;}
.xd_c00214{left:537.975187pt;}
.x6d_c00214{left:539.215987pt;}
.x4b_c00214{left:547.738787pt;}
.x67_c00214{left:549.357987pt;}
.x33_c00214{left:557.524387pt;}
.x1a_c00214{left:567.415587pt;}
.x54_c00214{left:568.968787pt;}
.x4c_c00214{left:577.869987pt;}
.x2_c00214{left:579.453987pt;}
.x26_c00214{left:586.771187pt;}
.xe_c00214{left:596.490787pt;}
.x57_c00214{left:598.479587pt;}
.x1b_c00214{left:599.412387pt;}
.x37_c00214{left:614.451587pt;}
.x1c_c00214{left:616.691187pt;}
.x3e_c00214{left:619.014387pt;}
.x45_c00214{left:620.228787pt;}
.x77_c00214{left:621.975587pt;}
.x28_c00214{left:623.255987pt;}
.x27_c00214{left:626.036787pt;}
.x1d_c00214{left:627.475587pt;}
.x1e_c00214{left:632.808387pt;}
.x1f_c00214{left:637.168787pt;}
.x78_c00214{left:657.615587pt;}
.x79_c00214{left:665.482787pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b4f9cbdebfe4bc0977a20689.woff2')format("woff");}.ff1_c00215{font-family:ff1_c00215;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00215;src:url('chunks/assets/font_1d104f41e7fb5d2a91149a94.woff2')format("woff");}.ff2_c00215{font-family:ff2_c00215;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00215;src:url('chunks/assets/font_e5ccfc9998e172e2109ca615.woff2')format("woff");}.ff3_c00215{font-family:ff3_c00215;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00215;src:url('chunks/assets/font_1cdaea6c66868e4d227a637a.woff2')format("woff");}.ff4_c00215{font-family:ff4_c00215;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00215;src:url('chunks/assets/font_1ccfcb7af0f505b8a5dc8c02.woff2')format("woff");}.ff5_c00215{font-family:ff5_c00215;line-height:0.666000;font-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_c00215{transform:matrix(0.074075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.074075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.074075,0.000000,0.000000,0.250000,0,0);}
.m77_c00215{transform:matrix(0.083334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083334,0.000000,0.000000,0.250000,0,0);}
.m7a_c00215{transform:matrix(0.085714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085714,0.000000,0.000000,0.250000,0,0);}
.m78_c00215{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m52_c00215{transform:matrix(0.115556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115556,0.000000,0.000000,0.250000,0,0);}
.ma5_c00215{transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);}
.m76_c00215{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m75_c00215{transform:matrix(0.157142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157142,0.000000,0.000000,0.250000,0,0);}
.m74_c00215{transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);}
.m60_c00215{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);}
.m55_c00215{transform:matrix(0.171749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171749,0.000000,0.000000,0.250000,0,0);}
.m61_c00215{transform:matrix(0.177084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177084,0.000000,0.000000,0.250000,0,0);}
.m63_c00215{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m79_c00215{transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);}
.m5f_c00215{transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);}
.m5a_c00215{transform:matrix(0.225347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225347,0.000000,0.000000,0.250000,0,0);}
.m91_c00215{transform:matrix(0.226249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226249,0.000000,0.000000,0.250000,0,0);}
.m53_c00215{transform:matrix(0.228716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228716,0.000000,0.000000,0.250000,0,0);}
.m25_c00215{transform:matrix(0.229078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229078,0.000000,0.000000,0.250000,0,0);}
.m2a_c00215{transform:matrix(0.234381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234381,0.000000,0.000000,0.250000,0,0);}
.mf_c00215{transform:matrix(0.240511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240511,0.000000,0.000000,0.250000,0,0);}
.m0_c00215{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00215{transform:matrix(0.250823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250823,0.000000,0.000000,0.250000,0,0);}
.m65_c00215{transform:matrix(0.251642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251642,0.000000,0.000000,0.250000,0,0);}
.m11_c00215{transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);}
.m4a_c00215{transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);}
.m8c_c00215{transform:matrix(0.256738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256738,0.000000,0.000000,0.250000,0,0);}
.m3a_c00215{transform:matrix(0.257794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257794,0.000000,0.000000,0.250000,0,0);}
.m6c_c00215{transform:matrix(0.257808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257808,0.000000,0.000000,0.250000,0,0);}
.m46_c00215{transform:matrix(0.258532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258532,0.000000,0.000000,0.250000,0,0);}
.m7b_c00215{transform:matrix(0.259039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259039,0.000000,0.000000,0.250000,0,0);}
.m3d_c00215{transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);}
.m8b_c00215{transform:matrix(0.259766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259766,0.000000,0.000000,0.250000,0,0);}
.m1b_c00215{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.ma4_c00215{transform:matrix(0.261962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261962,0.000000,0.000000,0.250000,0,0);}
.m2c_c00215{transform:matrix(0.262649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262649,0.000000,0.000000,0.250000,0,0);}
.m19_c00215{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m3b_c00215{transform:matrix(0.265014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265014,0.000000,0.000000,0.250000,0,0);}
.m5_c00215{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m95_c00215{transform:matrix(0.266295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266295,0.000000,0.000000,0.250000,0,0);}
.m18_c00215{transform:matrix(0.266343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266343,0.000000,0.000000,0.250000,0,0);}
.m24_c00215{transform:matrix(0.266467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266467,0.000000,0.000000,0.250000,0,0);}
.m3e_c00215{transform:matrix(0.267108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267108,0.000000,0.000000,0.250000,0,0);}
.m85_c00215{transform:matrix(0.267199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267199,0.000000,0.000000,0.250000,0,0);}
.m88_c00215{transform:matrix(0.267523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267523,0.000000,0.000000,0.250000,0,0);}
.m36_c00215{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m73_c00215{transform:matrix(0.268552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268552,0.000000,0.000000,0.250000,0,0);}
.m81_c00215{transform:matrix(0.268574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268574,0.000000,0.000000,0.250000,0,0);}
.m69_c00215{transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);}
.m7e_c00215{transform:matrix(0.269559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269559,0.000000,0.000000,0.250000,0,0);}
.m82_c00215{transform:matrix(0.269857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269857,0.000000,0.000000,0.250000,0,0);}
.m94_c00215{transform:matrix(0.269988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269988,0.000000,0.000000,0.250000,0,0);}
.mc_c00215{transform:matrix(0.270327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270327,0.000000,0.000000,0.250000,0,0);}
.ma_c00215{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m97_c00215{transform:matrix(0.271674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271674,0.000000,0.000000,0.250000,0,0);}
.m9b_c00215{transform:matrix(0.272153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272153,0.000000,0.000000,0.250000,0,0);}
.m2b_c00215{transform:matrix(0.272806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272806,0.000000,0.000000,0.250000,0,0);}
.m29_c00215{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00215{transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);}
.m96_c00215{transform:matrix(0.274278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274278,0.000000,0.000000,0.250000,0,0);}
.m35_c00215{transform:matrix(0.274422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274422,0.000000,0.000000,0.250000,0,0);}
.m1_c00215{transform:matrix(0.275195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275195,0.000000,0.000000,0.250000,0,0);}
.m43_c00215{transform:matrix(0.275566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275566,0.000000,0.000000,0.250000,0,0);}
.m98_c00215{transform:matrix(0.275620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275620,0.000000,0.000000,0.250000,0,0);}
.m31_c00215{transform:matrix(0.276181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276181,0.000000,0.000000,0.250000,0,0);}
.m8a_c00215{transform:matrix(0.276913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276913,0.000000,0.000000,0.250000,0,0);}
.m32_c00215{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.ma1_c00215{transform:matrix(0.278073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278073,0.000000,0.000000,0.250000,0,0);}
.m8e_c00215{transform:matrix(0.278077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278077,0.000000,0.000000,0.250000,0,0);}
.m33_c00215{transform:matrix(0.278275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278275,0.000000,0.000000,0.250000,0,0);}
.m34_c00215{transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);}
.m6_c00215{transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);}
.m8d_c00215{transform:matrix(0.280329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280329,0.000000,0.000000,0.250000,0,0);}
.m48_c00215{transform:matrix(0.280651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280651,0.000000,0.000000,0.250000,0,0);}
.md_c00215{transform:matrix(0.280764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280764,0.000000,0.000000,0.250000,0,0);}
.m57_c00215{transform:matrix(0.281818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281818,0.000000,0.000000,0.250000,0,0);}
.m3_c00215{transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);}
.ma0_c00215{transform:matrix(0.283223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283223,0.000000,0.000000,0.250000,0,0);}
.m41_c00215{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m5e_c00215{transform:matrix(0.283852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283852,0.000000,0.000000,0.250000,0,0);}
.m23_c00215{transform:matrix(0.284537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284537,0.000000,0.000000,0.250000,0,0);}
.m7c_c00215{transform:matrix(0.286468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286468,0.000000,0.000000,0.250000,0,0);}
.m42_c00215{transform:matrix(0.286733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286733,0.000000,0.000000,0.250000,0,0);}
.m5b_c00215{transform:matrix(0.287458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287458,0.000000,0.000000,0.250000,0,0);}
.m50_c00215{transform:matrix(0.287563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287563,0.000000,0.000000,0.250000,0,0);}
.m15_c00215{transform:matrix(0.288557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288557,0.000000,0.000000,0.250000,0,0);}
.m13_c00215{transform:matrix(0.288826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288826,0.000000,0.000000,0.250000,0,0);}
.m4d_c00215{transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);}
.m9e_c00215{transform:matrix(0.289255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289255,0.000000,0.000000,0.250000,0,0);}
.m37_c00215{transform:matrix(0.289722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289722,0.000000,0.000000,0.250000,0,0);}
.m1f_c00215{transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);}
.m8f_c00215{transform:matrix(0.290762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290762,0.000000,0.000000,0.250000,0,0);}
.m90_c00215{transform:matrix(0.290813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290813,0.000000,0.000000,0.250000,0,0);}
.me_c00215{transform:matrix(0.291032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291032,0.000000,0.000000,0.250000,0,0);}
.m68_c00215{transform:matrix(0.292392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292392,0.000000,0.000000,0.250000,0,0);}
.m9a_c00215{transform:matrix(0.294676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294676,0.000000,0.000000,0.250000,0,0);}
.m45_c00215{transform:matrix(0.295132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295132,0.000000,0.000000,0.250000,0,0);}
.m6d_c00215{transform:matrix(0.296444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296444,0.000000,0.000000,0.250000,0,0);}
.m17_c00215{transform:matrix(0.296448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296448,0.000000,0.000000,0.250000,0,0);}
.m87_c00215{transform:matrix(0.296467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296467,0.000000,0.000000,0.250000,0,0);}
.m58_c00215{transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);}
.m1e_c00215{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m7_c00215{transform:matrix(0.298280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298280,0.000000,0.000000,0.250000,0,0);}
.m7d_c00215{transform:matrix(0.298995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298995,0.000000,0.000000,0.250000,0,0);}
.m38_c00215{transform:matrix(0.299044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299044,0.000000,0.000000,0.250000,0,0);}
.m54_c00215{transform:matrix(0.300360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300360,0.000000,0.000000,0.250000,0,0);}
.m26_c00215{transform:matrix(0.301943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301943,0.000000,0.000000,0.250000,0,0);}
.m7f_c00215{transform:matrix(0.302066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302066,0.000000,0.000000,0.250000,0,0);}
.m16_c00215{transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);}
.m9d_c00215{transform:matrix(0.302887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302887,0.000000,0.000000,0.250000,0,0);}
.m12_c00215{transform:matrix(0.303790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303790,0.000000,0.000000,0.250000,0,0);}
.m2f_c00215{transform:matrix(0.304806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304806,0.000000,0.000000,0.250000,0,0);}
.m89_c00215{transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);}
.m5d_c00215{transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);}
.m83_c00215{transform:matrix(0.307398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307398,0.000000,0.000000,0.250000,0,0);}
.m27_c00215{transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);}
.m64_c00215{transform:matrix(0.308860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308860,0.000000,0.000000,0.250000,0,0);}
.m1d_c00215{transform:matrix(0.308869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308869,0.000000,0.000000,0.250000,0,0);}
.m84_c00215{transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);}
.m3f_c00215{transform:matrix(0.309291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309291,0.000000,0.000000,0.250000,0,0);}
.m99_c00215{transform:matrix(0.309349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309349,0.000000,0.000000,0.250000,0,0);}
.m2d_c00215{transform:matrix(0.311387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311387,0.000000,0.000000,0.250000,0,0);}
.m4_c00215{transform:matrix(0.312462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312462,0.000000,0.000000,0.250000,0,0);}
.m44_c00215{transform:matrix(0.314496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314496,0.000000,0.000000,0.250000,0,0);}
.m21_c00215{transform:matrix(0.315578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315578,0.000000,0.000000,0.250000,0,0);}
.m4c_c00215{transform:matrix(0.315717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315717,0.000000,0.000000,0.250000,0,0);}
.m67_c00215{transform:matrix(0.318648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318648,0.000000,0.000000,0.250000,0,0);}
.m66_c00215{transform:matrix(0.318806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318806,0.000000,0.000000,0.250000,0,0);}
.m10_c00215{transform:matrix(0.320922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320922,0.000000,0.000000,0.250000,0,0);}
.m80_c00215{transform:matrix(0.322321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322321,0.000000,0.000000,0.250000,0,0);}
.m9_c00215{transform:matrix(0.325578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325578,0.000000,0.000000,0.250000,0,0);}
.m49_c00215{transform:matrix(0.325598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325598,0.000000,0.000000,0.250000,0,0);}
.m14_c00215{transform:matrix(0.326100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326100,0.000000,0.000000,0.250000,0,0);}
.m9c_c00215{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m2_c00215{transform:matrix(0.329758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329758,0.000000,0.000000,0.250000,0,0);}
.m92_c00215{transform:matrix(0.330043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330043,0.000000,0.000000,0.250000,0,0);}
.m1a_c00215{transform:matrix(0.332535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332535,0.000000,0.000000,0.250000,0,0);}
.m2e_c00215{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m28_c00215{transform:matrix(0.333235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333235,0.000000,0.000000,0.250000,0,0);}
.m86_c00215{transform:matrix(0.334551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334551,0.000000,0.000000,0.250000,0,0);}
.m72_c00215{transform:matrix(0.336458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336458,0.000000,0.000000,0.250000,0,0);}
.m4b_c00215{transform:matrix(0.336842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336842,0.000000,0.000000,0.250000,0,0);}
.m51_c00215{transform:matrix(0.337014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337014,0.000000,0.000000,0.250000,0,0);}
.m6e_c00215{transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);}
.m6a_c00215{transform:matrix(0.338858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338858,0.000000,0.000000,0.250000,0,0);}
.m4e_c00215{transform:matrix(0.340547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340547,0.000000,0.000000,0.250000,0,0);}
.ma3_c00215{transform:matrix(0.341749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341749,0.000000,0.000000,0.250000,0,0);}
.m20_c00215{transform:matrix(0.342184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342184,0.000000,0.000000,0.250000,0,0);}
.m70_c00215{transform:matrix(0.344511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344511,0.000000,0.000000,0.250000,0,0);}
.m22_c00215{transform:matrix(0.344844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344844,0.000000,0.000000,0.250000,0,0);}
.m8_c00215{transform:matrix(0.347013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347013,0.000000,0.000000,0.250000,0,0);}
.m59_c00215{transform:matrix(0.347328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347328,0.000000,0.000000,0.250000,0,0);}
.m4f_c00215{transform:matrix(0.347932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347932,0.000000,0.000000,0.250000,0,0);}
.m71_c00215{transform:matrix(0.349503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349503,0.000000,0.000000,0.250000,0,0);}
.m40_c00215{transform:matrix(0.353578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353578,0.000000,0.000000,0.250000,0,0);}
.ma2_c00215{transform:matrix(0.361273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361273,0.000000,0.000000,0.250000,0,0);}
.mb_c00215{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m56_c00215{transform:matrix(0.366729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366729,0.000000,0.000000,0.250000,0,0);}
.m93_c00215{transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);}
.m39_c00215{transform:matrix(0.378961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378961,0.000000,0.000000,0.250000,0,0);}
.m6f_c00215{transform:matrix(0.380120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380120,0.000000,0.000000,0.250000,0,0);}
.m1c_c00215{transform:matrix(0.385852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385852,0.000000,0.000000,0.250000,0,0);}
.m30_c00215{transform:matrix(0.414699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414699,0.000000,0.000000,0.250000,0,0);}
.m5c_c00215{transform:matrix(0.416907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416907,0.000000,0.000000,0.250000,0,0);}
.m47_c00215{transform:matrix(0.424628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424628,0.000000,0.000000,0.250000,0,0);}
.m3c_c00215{transform:matrix(0.427294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427294,0.000000,0.000000,0.250000,0,0);}
.v0_c00215{vertical-align:0.000000px;}
.v1_c00215{vertical-align:14.275800px;}
.ls6_c00215{letter-spacing:-2.744280px;}
.ls3_c00215{letter-spacing:0.000000px;}
.ls0_c00215{letter-spacing:0.360677px;}
.ls1_c00215{letter-spacing:1.246687px;}
.ls8_c00215{letter-spacing:1.254528px;}
.lsd_c00215{letter-spacing:1.536797px;}
.ls7_c00215{letter-spacing:1.685772px;}
.ls2_c00215{letter-spacing:2.783484px;}
.lsa_c00215{letter-spacing:3.167683px;}
.ls10_c00215{letter-spacing:3.223686px;}
.lsc_c00215{letter-spacing:3.257110px;}
.ls9_c00215{letter-spacing:3.653813px;}
.lsb_c00215{letter-spacing:3.880810px;}
.ls5_c00215{letter-spacing:3.920400px;}
.ls4_c00215{letter-spacing:3.999610px;}
.ls11_c00215{letter-spacing:31.363200px;}
.lsf_c00215{letter-spacing:49.896198px;}
.lse_c00215{letter-spacing:51.321798px;}
.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;}
}
.ws7_c00215{word-spacing:-90.861076px;}
.ws1_c00215{word-spacing:-23.255813px;}
.ws2_c00215{word-spacing:-22.769683px;}
.ws0_c00215{word-spacing:-21.287772px;}
.wsa_c00215{word-spacing:-19.998050px;}
.ws5_c00215{word-spacing:-19.962677px;}
.ws3_c00215{word-spacing:-19.602000px;}
.wsb_c00215{word-spacing:0.000000px;}
.ws8_c00215{word-spacing:1.332936px;}
.ws6_c00215{word-spacing:3.764376px;}
.ws9_c00215{word-spacing:5.018112px;}
.ws4_c00215{word-spacing:5.409756px;}
._10_c00215{margin-left:-11.604384px;}
._8_c00215{margin-left:-8.756352px;}
._c_c00215{margin-left:-1.332936px;}
._f_c00215{width:1.317254px;}
._9_c00215{width:3.936082px;}
._1b_c00215{width:4.939704px;}
._4_c00215{width:6.272640px;}
._e_c00215{width:7.763085px;}
._12_c00215{width:9.173340px;}
._3_c00215{width:10.585080px;}
._17_c00215{width:11.682099px;}
._7_c00215{width:12.858912px;}
._d_c00215{width:15.524784px;}
._2_c00215{width:16.857720px;}
._19_c00215{width:18.269064px;}
._6_c00215{width:22.267872px;}
._1_c00215{width:24.620112px;}
._0_c00215{width:27.537048px;}
._18_c00215{width:28.725048px;}
._13_c00215{width:29.879388px;}
._a_c00215{width:31.206384px;}
._b_c00215{width:32.382504px;}
._11_c00215{width:33.402204px;}
._1a_c00215{width:35.518428px;}
._14_c00215{width:37.536048px;}
._5_c00215{width:39.257064px;}
._1c_c00215{width:47.280024px;}
._15_c00215{width:493.655580px;}
._16_c00215{width:1094.489748px;}
.fc0_c00215{color:transparent;}
.fsd_c00215{font-size:22.176000px;}
.fs6_c00215{font-size:22.572000px;}
.fs5_c00215{font-size:24.354000px;}
.fs10_c00215{font-size:25.146000px;}
.fse_c00215{font-size:25.938000px;}
.fs7_c00215{font-size:26.928000px;}
.fs0_c00215{font-size:28.314000px;}
.fs11_c00215{font-size:31.363200px;}
.fs12_c00215{font-size:39.204000px;}
.fsa_c00215{font-size:44.352000px;}
.fsb_c00215{font-size:49.896198px;}
.fs8_c00215{font-size:51.321798px;}
.fs4_c00215{font-size:65.142198px;}
.fsf_c00215{font-size:72.864000px;}
.fsc_c00215{font-size:74.844000px;}
.fs3_c00215{font-size:77.616198px;}
.fs2_c00215{font-size:78.408000px;}
.fs9_c00215{font-size:78.804000px;}
.fs1_c00215{font-size:79.992198px;}
.y0_c00215{bottom:0.000000px;}
.y1f_c00215{bottom:2.050335px;}
.y1e_c00215{bottom:12.737385px;}
.y1d_c00215{bottom:23.077935px;}
.y1c_c00215{bottom:35.908335px;}
.y1_c00215{bottom:76.500000px;}
.y1b_c00215{bottom:97.916985px;}
.y1a_c00215{bottom:200.565135px;}
.y19_c00215{bottom:228.364335px;}
.y18_c00215{bottom:260.791785px;}
.y17_c00215{bottom:293.229135px;}
.y16_c00215{bottom:325.305135px;}
.y15_c00215{bottom:358.801785px;}
.y14_c00215{bottom:391.239135px;}
.y13_c00215{bottom:415.474335px;}
.y12_c00215{bottom:423.315135px;}
.y10_c00215{bottom:457.171749px;}
.y11_c00215{bottom:457.173135px;}
.yf_c00215{bottom:488.887785px;}
.ye_c00215{bottom:517.399785px;}
.yd_c00215{bottom:575.136585px;}
.yc_c00215{bottom:580.487535px;}
.yb_c00215{bottom:731.957535px;}
.ya_c00215{bottom:765.097785px;}
.y9_c00215{bottom:797.535135px;}
.y8_c00215{bottom:829.611135px;}
.y7_c00215{bottom:863.825535px;}
.y6_c00215{bottom:896.257935px;}
.y5_c00215{bottom:929.403135px;}
.y4_c00215{bottom:993.555135px;}
.y3_c00215{bottom:1079.086185px;}
.y2_c00215{bottom:1107.954585px;}
.h11_c00215{height:20.887891px;}
.hd_c00215{height:23.128875px;}
.h10_c00215{height:26.226492px;}
.he_c00215{height:27.052523px;}
.h8_c00215{height:28.085063px;}
.h2_c00215{height:29.530617px;}
.hc_c00215{height:33.230868px;}
.h9_c00215{height:34.180317px;}
.h7_c00215{height:37.817691px;}
.h12_c00215{height:38.476582px;}
.hb_c00215{height:46.257750px;}
.h6_c00215{height:63.933505px;}
.hf_c00215{height:71.512031px;}
.h5_c00215{height:76.138155px;}
.h4_c00215{height:76.953164px;}
.ha_c00215{height:77.341816px;}
.h3_c00215{height:78.507968px;}
.h1_c00215{height:1110.000000px;}
.h0_c00215{height:1263.000000px;}
.w1_c00215{width:751.500000px;}
.w0_c00215{width:892.500000px;}
.x0_c00215{left:0.000000px;}
.x2_c00215{left:62.835735px;}
.x1_c00215{left:70.500000px;}
.x3f_c00215{left:73.369335px;}
.x5_c00215{left:74.458335px;}
.x2a_c00215{left:75.621585px;}
.x1f_c00215{left:96.936285px;}
.x70_c00215{left:105.415635px;}
.x13_c00215{left:107.707485px;}
.x20_c00215{left:119.082585px;}
.x2b_c00215{left:129.408285px;}
.x77_c00215{left:130.517085px;}
.x40_c00215{left:139.793385px;}
.x71_c00215{left:140.852685px;}
.x2c_c00215{left:150.831885px;}
.x52_c00215{left:151.841685px;}
.x6_c00215{left:161.880285px;}
.x41_c00215{left:175.502685px;}
.x45_c00215{left:182.398035px;}
.x53_c00215{left:184.130535px;}
.x4d_c00215{left:193.763235px;}
.x7_c00215{left:195.000735px;}
.x21_c00215{left:196.084785px;}
.x46_c00215{left:206.088735px;}
.x4e_c00215{left:207.435135px;}
.x47_c00215{left:215.543235px;}
.x8_c00215{left:216.919335px;}
.x60_c00215{left:218.166735px;}
.x4b_c00215{left:227.254935px;}
.x4f_c00215{left:228.883485px;}
.x42_c00215{left:238.684485px;}
.x49_c00215{left:240.634785px;}
.x9_c00215{left:250.940685px;}
.x61_c00215{left:252.019785px;}
.x43_c00215{left:258.331035px;}
.x22_c00215{left:261.192135px;}
.x54_c00215{left:262.781085px;}
.x72_c00215{left:263.790885px;}
.x48_c00215{left:271.889085px;}
.x14_c00215{left:273.779985px;}
.x6a_c00215{left:281.987085px;}
.x36_c00215{left:283.170135px;}
.x64_c00215{left:285.046185px;}
.x62_c00215{left:286.932135px;}
.x7c_c00215{left:292.446435px;}
.x4a_c00215{left:293.847285px;}
.x73_c00215{left:295.035285px;}
.x78_c00215{left:296.163885px;}
.x15_c00215{left:304.484835px;}
.x37_c00215{left:305.509485px;}
.x55_c00215{left:307.271685px;}
.x65_c00215{left:310.350585px;}
.x38_c00215{left:316.003485px;}
.x2d_c00215{left:317.636985px;}
.x66_c00215{left:322.473135px;}
.x16_c00215{left:327.784485px;}
.x67_c00215{left:329.244735px;}
.x39_c00215{left:339.288285px;}
.xa_c00215{left:350.336685px;}
.x56_c00215{left:351.455385px;}
.x3a_c00215{left:361.112835px;}
.x5a_c00215{left:363.097785px;}
.x68_c00215{left:364.523385px;}
.x2e_c00215{left:372.908685px;}
.x57_c00215{left:376.883535px;}
.x17_c00215{left:382.996785px;}
.xb_c00215{left:384.254085px;}
.x3b_c00215{left:393.030435px;}
.x5b_c00215{left:394.104585px;}
.x23_c00215{left:395.312385px;}
.x50_c00215{left:396.381585px;}
.x18_c00215{left:405.667785px;}
.xc_c00215{left:414.770835px;}
.x3c_c00215{left:416.706285px;}
.x19_c00215{left:427.566585px;}
.x79_c00215{left:430.709835px;}
.x3d_c00215{left:438.045735px;}
.x6d_c00215{left:440.194035px;}
.x44_c00215{left:450.202935px;}
.xd_c00215{left:461.226585px;}
.x2f_c00215{left:463.285785px;}
.x1a_c00215{left:471.626535px;}
.x51_c00215{left:473.334285px;}
.x24_c00215{left:482.674935px;}
.x25_c00215{left:494.366835px;}
.x1b_c00215{left:505.043985px;}
.x6b_c00215{left:506.172585px;}
.x30_c00215{left:515.231085px;}
.x5c_c00215{left:517.220985px;}
.x5f_c00215{left:521.522535px;}
.x4_c00215{left:523.304535px;}
.x58_c00215{left:527.625885px;}
.x3e_c00215{left:537.016035px;}
.x26_c00215{left:538.253535px;}
.x1c_c00215{left:541.446285px;}
.x63_c00215{left:549.801885px;}
.x31_c00215{left:559.489035px;}
.x5d_c00215{left:560.681985px;}
.x6e_c00215{left:561.716535px;}
.xe_c00215{left:571.042335px;}
.x74_c00215{left:572.091735px;}
.x27_c00215{left:582.303585px;}
.x6f_c00215{left:583.516335px;}
.x59_c00215{left:593.356935px;}
.x7a_c00215{left:596.995185px;}
.x32_c00215{left:603.306435px;}
.xf_c00215{left:604.687485px;}
.x75_c00215{left:605.929935px;}
.x33_c00215{left:616.616985px;}
.x28_c00215{left:625.403235px;}
.x69_c00215{left:626.937735px;}
.x10_c00215{left:638.030685px;}
.x76_c00215{left:639.382035px;}
.x11_c00215{left:648.856335px;}
.x7b_c00215{left:651.811485px;}
.x3_c00215{left:659.711685px;}
.x34_c00215{left:660.840285px;}
.x29_c00215{left:670.274985px;}
.x6c_c00215{left:671.873835px;}
.x1d_c00215{left:681.872835px;}
.x1e_c00215{left:691.693635px;}
.x35_c00215{left:693.193485px;}
.x5e_c00215{left:694.272585px;}
.x4c_c00215{left:696.242685px;}
.x7d_c00215{left:701.737185px;}
.x7e_c00215{left:703.286535px;}
.x12_c00215{left:705.009135px;}
@media print{
.v0_c00215{vertical-align:0.000000pt;}
.v1_c00215{vertical-align:12.689600pt;}
.ls6_c00215{letter-spacing:-2.439360pt;}
.ls3_c00215{letter-spacing:0.000000pt;}
.ls0_c00215{letter-spacing:0.320602pt;}
.ls1_c00215{letter-spacing:1.108166pt;}
.ls8_c00215{letter-spacing:1.115136pt;}
.lsd_c00215{letter-spacing:1.366042pt;}
.ls7_c00215{letter-spacing:1.498464pt;}
.ls2_c00215{letter-spacing:2.474208pt;}
.lsa_c00215{letter-spacing:2.815718pt;}
.ls10_c00215{letter-spacing:2.865498pt;}
.lsc_c00215{letter-spacing:2.895209pt;}
.ls9_c00215{letter-spacing:3.247834pt;}
.lsb_c00215{letter-spacing:3.449609pt;}
.ls5_c00215{letter-spacing:3.484800pt;}
.ls4_c00215{letter-spacing:3.555209pt;}
.ls11_c00215{letter-spacing:27.878400pt;}
.lsf_c00215{letter-spacing:44.352176pt;}
.lse_c00215{letter-spacing:45.619376pt;}
.ws7_c00215{word-spacing:-80.765400pt;}
.ws1_c00215{word-spacing:-20.671834pt;}
.ws2_c00215{word-spacing:-20.239718pt;}
.ws0_c00215{word-spacing:-18.922464pt;}
.wsa_c00215{word-spacing:-17.776044pt;}
.ws5_c00215{word-spacing:-17.744602pt;}
.ws3_c00215{word-spacing:-17.424000pt;}
.wsb_c00215{word-spacing:0.000000pt;}
.ws8_c00215{word-spacing:1.184832pt;}
.ws6_c00215{word-spacing:3.346112pt;}
.ws9_c00215{word-spacing:4.460544pt;}
.ws4_c00215{word-spacing:4.808672pt;}
._10_c00215{margin-left:-10.315008pt;}
._8_c00215{margin-left:-7.783424pt;}
._c_c00215{margin-left:-1.184832pt;}
._f_c00215{width:1.170893pt;}
._9_c00215{width:3.498739pt;}
._1b_c00215{width:4.390848pt;}
._4_c00215{width:5.575680pt;}
._e_c00215{width:6.900520pt;}
._12_c00215{width:8.154080pt;}
._3_c00215{width:9.408960pt;}
._17_c00215{width:10.384088pt;}
._7_c00215{width:11.430144pt;}
._d_c00215{width:13.799808pt;}
._2_c00215{width:14.984640pt;}
._19_c00215{width:16.239168pt;}
._6_c00215{width:19.793664pt;}
._1_c00215{width:21.884544pt;}
._0_c00215{width:24.477376pt;}
._18_c00215{width:25.533376pt;}
._13_c00215{width:26.559456pt;}
._a_c00215{width:27.739008pt;}
._b_c00215{width:28.784448pt;}
._11_c00215{width:29.690848pt;}
._1a_c00215{width:31.571936pt;}
._14_c00215{width:33.365376pt;}
._5_c00215{width:34.895168pt;}
._1c_c00215{width:42.026688pt;}
._15_c00215{width:438.804960pt;}
._16_c00215{width:972.879776pt;}
.fsd_c00215{font-size:19.712000pt;}
.fs6_c00215{font-size:20.064000pt;}
.fs5_c00215{font-size:21.648000pt;}
.fs10_c00215{font-size:22.352000pt;}
.fse_c00215{font-size:23.056000pt;}
.fs7_c00215{font-size:23.936000pt;}
.fs0_c00215{font-size:25.168000pt;}
.fs11_c00215{font-size:27.878400pt;}
.fs12_c00215{font-size:34.848000pt;}
.fsa_c00215{font-size:39.424000pt;}
.fsb_c00215{font-size:44.352176pt;}
.fs8_c00215{font-size:45.619376pt;}
.fs4_c00215{font-size:57.904176pt;}
.fsf_c00215{font-size:64.768000pt;}
.fsc_c00215{font-size:66.528000pt;}
.fs3_c00215{font-size:68.992176pt;}
.fs2_c00215{font-size:69.696000pt;}
.fs9_c00215{font-size:70.048000pt;}
.fs1_c00215{font-size:71.104176pt;}
.y0_c00215{bottom:0.000000pt;}
.y1f_c00215{bottom:1.822520pt;}
.y1e_c00215{bottom:11.322120pt;}
.y1d_c00215{bottom:20.513720pt;}
.y1c_c00215{bottom:31.918520pt;}
.y1_c00215{bottom:68.000000pt;}
.y1b_c00215{bottom:87.037320pt;}
.y1a_c00215{bottom:178.280120pt;}
.y19_c00215{bottom:202.990520pt;}
.y18_c00215{bottom:231.814920pt;}
.y17_c00215{bottom:260.648120pt;}
.y16_c00215{bottom:289.160120pt;}
.y15_c00215{bottom:318.934920pt;}
.y14_c00215{bottom:347.768120pt;}
.y13_c00215{bottom:369.310520pt;}
.y12_c00215{bottom:376.280120pt;}
.y10_c00215{bottom:406.374888pt;}
.y11_c00215{bottom:406.376120pt;}
.yf_c00215{bottom:434.566920pt;}
.ye_c00215{bottom:459.910920pt;}
.yd_c00215{bottom:511.232520pt;}
.yc_c00215{bottom:515.988920pt;}
.yb_c00215{bottom:650.628920pt;}
.ya_c00215{bottom:680.086920pt;}
.y9_c00215{bottom:708.920120pt;}
.y8_c00215{bottom:737.432120pt;}
.y7_c00215{bottom:767.844920pt;}
.y6_c00215{bottom:796.673720pt;}
.y5_c00215{bottom:826.136120pt;}
.y4_c00215{bottom:883.160120pt;}
.y3_c00215{bottom:959.187720pt;}
.y2_c00215{bottom:984.848520pt;}
.h11_c00215{height:18.567014pt;}
.hd_c00215{height:20.559000pt;}
.h10_c00215{height:23.312438pt;}
.he_c00215{height:24.046688pt;}
.h8_c00215{height:24.964500pt;}
.h2_c00215{height:26.249438pt;}
.hc_c00215{height:29.538549pt;}
.h9_c00215{height:30.382504pt;}
.h7_c00215{height:33.615725pt;}
.h12_c00215{height:34.201406pt;}
.hb_c00215{height:41.118000pt;}
.h6_c00215{height:56.829782pt;}
.hf_c00215{height:63.566250pt;}
.h5_c00215{height:67.678360pt;}
.h4_c00215{height:68.402813pt;}
.ha_c00215{height:68.748281pt;}
.h3_c00215{height:69.784860pt;}
.h1_c00215{height:986.666667pt;}
.h0_c00215{height:1122.666667pt;}
.w1_c00215{width:668.000000pt;}
.w0_c00215{width:793.333333pt;}
.x0_c00215{left:0.000000pt;}
.x2_c00215{left:55.853987pt;}
.x1_c00215{left:62.666667pt;}
.x3f_c00215{left:65.217187pt;}
.x5_c00215{left:66.185187pt;}
.x2a_c00215{left:67.219187pt;}
.x1f_c00215{left:86.165587pt;}
.x70_c00215{left:93.702787pt;}
.x13_c00215{left:95.739987pt;}
.x20_c00215{left:105.851187pt;}
.x2b_c00215{left:115.029587pt;}
.x77_c00215{left:116.015187pt;}
.x40_c00215{left:124.260787pt;}
.x71_c00215{left:125.202387pt;}
.x2c_c00215{left:134.072787pt;}
.x52_c00215{left:134.970387pt;}
.x6_c00215{left:143.893587pt;}
.x41_c00215{left:156.002387pt;}
.x45_c00215{left:162.131587pt;}
.x53_c00215{left:163.671587pt;}
.x4d_c00215{left:172.233987pt;}
.x7_c00215{left:173.333987pt;}
.x21_c00215{left:174.297587pt;}
.x46_c00215{left:183.189987pt;}
.x4e_c00215{left:184.386787pt;}
.x47_c00215{left:191.593987pt;}
.x8_c00215{left:192.817187pt;}
.x60_c00215{left:193.925987pt;}
.x4b_c00215{left:202.004387pt;}
.x4f_c00215{left:203.451987pt;}
.x42_c00215{left:212.163987pt;}
.x49_c00215{left:213.897587pt;}
.x9_c00215{left:223.058387pt;}
.x61_c00215{left:224.017587pt;}
.x43_c00215{left:229.627587pt;}
.x22_c00215{left:232.170787pt;}
.x54_c00215{left:233.583187pt;}
.x72_c00215{left:234.480787pt;}
.x48_c00215{left:241.679187pt;}
.x14_c00215{left:243.359987pt;}
.x6a_c00215{left:250.655187pt;}
.x36_c00215{left:251.706787pt;}
.x64_c00215{left:253.374387pt;}
.x62_c00215{left:255.050787pt;}
.x7c_c00215{left:259.952387pt;}
.x4a_c00215{left:261.197587pt;}
.x73_c00215{left:262.253587pt;}
.x78_c00215{left:263.256787pt;}
.x15_c00215{left:270.653187pt;}
.x37_c00215{left:271.563987pt;}
.x55_c00215{left:273.130387pt;}
.x65_c00215{left:275.867187pt;}
.x38_c00215{left:280.891987pt;}
.x2d_c00215{left:282.343987pt;}
.x66_c00215{left:286.642787pt;}
.x16_c00215{left:291.363987pt;}
.x67_c00215{left:292.661987pt;}
.x39_c00215{left:301.589587pt;}
.xa_c00215{left:311.410387pt;}
.x56_c00215{left:312.404787pt;}
.x3a_c00215{left:320.989187pt;}
.x5a_c00215{left:322.753587pt;}
.x68_c00215{left:324.020787pt;}
.x2e_c00215{left:331.474387pt;}
.x57_c00215{left:335.007587pt;}
.x17_c00215{left:340.441587pt;}
.xb_c00215{left:341.559187pt;}
.x3b_c00215{left:349.360387pt;}
.x5b_c00215{left:350.315187pt;}
.x23_c00215{left:351.388787pt;}
.x50_c00215{left:352.339187pt;}
.x18_c00215{left:360.593587pt;}
.xc_c00215{left:368.685187pt;}
.x3c_c00215{left:370.405587pt;}
.x19_c00215{left:380.059187pt;}
.x79_c00215{left:382.853187pt;}
.x3d_c00215{left:389.373987pt;}
.x6d_c00215{left:391.283587pt;}
.x44_c00215{left:400.180387pt;}
.xd_c00215{left:409.979187pt;}
.x2f_c00215{left:411.809587pt;}
.x1a_c00215{left:419.223587pt;}
.x51_c00215{left:420.741587pt;}
.x24_c00215{left:429.044387pt;}
.x25_c00215{left:439.437187pt;}
.x1b_c00215{left:448.927987pt;}
.x6b_c00215{left:449.931187pt;}
.x30_c00215{left:457.983187pt;}
.x5c_c00215{left:459.751987pt;}
.x5f_c00215{left:463.575587pt;}
.x4_c00215{left:465.159587pt;}
.x58_c00215{left:469.000787pt;}
.x3e_c00215{left:477.347587pt;}
.x26_c00215{left:478.447587pt;}
.x1c_c00215{left:481.285587pt;}
.x63_c00215{left:488.712787pt;}
.x31_c00215{left:497.323587pt;}
.x5d_c00215{left:498.383987pt;}
.x6e_c00215{left:499.303587pt;}
.xe_c00215{left:507.593187pt;}
.x74_c00215{left:508.525987pt;}
.x27_c00215{left:517.603187pt;}
.x6f_c00215{left:518.681187pt;}
.x59_c00215{left:527.428387pt;}
.x7a_c00215{left:530.662387pt;}
.x32_c00215{left:536.272387pt;}
.xf_c00215{left:537.499987pt;}
.x75_c00215{left:538.604387pt;}
.x33_c00215{left:548.103987pt;}
.x28_c00215{left:555.913987pt;}
.x69_c00215{left:557.277987pt;}
.x10_c00215{left:567.138387pt;}
.x76_c00215{left:568.339587pt;}
.x11_c00215{left:576.761187pt;}
.x7b_c00215{left:579.387987pt;}
.x3_c00215{left:586.410387pt;}
.x34_c00215{left:587.413587pt;}
.x29_c00215{left:595.799987pt;}
.x6c_c00215{left:597.221187pt;}
.x1d_c00215{left:606.109187pt;}
.x1e_c00215{left:614.838787pt;}
.x35_c00215{left:616.171987pt;}
.x5e_c00215{left:617.131187pt;}
.x4c_c00215{left:618.882387pt;}
.x7d_c00215{left:623.766387pt;}
.x7e_c00215{left:625.143587pt;}
.x12_c00215{left:626.674787pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5831c891e2712d4ce086b9db.woff2')format("woff");}.ff1_c00216{font-family:ff1_c00216;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00216;src:url('chunks/assets/font_51326e9c3b7d49334f6ae830.woff2')format("woff");}.ff2_c00216{font-family:ff2_c00216;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00216;src:url('chunks/assets/font_a44b796930a1207e0e1e4cde.woff2')format("woff");}.ff3_c00216{font-family:ff3_c00216;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00216;src:url('chunks/assets/font_a392b06337fa80a1c94e431b.woff2')format("woff");}.ff4_c00216{font-family:ff4_c00216;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m98_c00216{transform:matrix(0.073530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073530,0.000000,0.000000,0.250000,0,0);}
.mba_c00216{transform:matrix(0.110372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110372,0.000000,0.000000,0.250000,0,0);}
.m8b_c00216{transform:matrix(0.110686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110686,0.000000,0.000000,0.250000,0,0);}
.m97_c00216{transform:matrix(0.161764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161764,0.000000,0.000000,0.250000,0,0);}
.m9a_c00216{transform:matrix(0.169118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169118,0.000000,0.000000,0.250000,0,0);}
.ma2_c00216{transform:matrix(0.171441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171441,0.000000,0.000000,0.250000,0,0);}
.m99_c00216{transform:matrix(0.176471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176471,0.000000,0.000000,0.250000,0,0);}
.m54_c00216{transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);}
.m3e_c00216{transform:matrix(0.192289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192289,0.000000,0.000000,0.250000,0,0);}
.mb1_c00216{transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);}
.m93_c00216{transform:matrix(0.210108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210108,0.000000,0.000000,0.250000,0,0);}
.mb0_c00216{transform:matrix(0.210648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210648,0.000000,0.000000,0.250000,0,0);}
.m86_c00216{transform:matrix(0.212001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212001,0.000000,0.000000,0.250000,0,0);}
.mbf_c00216{transform:matrix(0.216704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216704,0.000000,0.000000,0.250000,0,0);}
.m55_c00216{transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);}
.m8c_c00216{transform:matrix(0.223170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223170,0.000000,0.000000,0.250000,0,0);}
.m19_c00216{transform:matrix(0.231723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231723,0.000000,0.000000,0.250000,0,0);}
.ma6_c00216{transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);}
.m43_c00216{transform:matrix(0.243785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243785,0.000000,0.000000,0.250000,0,0);}
.m1_c00216{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m48_c00216{transform:matrix(0.250165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250165,0.000000,0.000000,0.250000,0,0);}
.m70_c00216{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.mbe_c00216{transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);}
.mad_c00216{transform:matrix(0.254597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254597,0.000000,0.000000,0.250000,0,0);}
.m24_c00216{transform:matrix(0.254648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254648,0.000000,0.000000,0.250000,0,0);}
.m6_c00216{transform:matrix(0.254845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254845,0.000000,0.000000,0.250000,0,0);}
.m69_c00216{transform:matrix(0.256395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256395,0.000000,0.000000,0.250000,0,0);}
.m21_c00216{transform:matrix(0.257043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257043,0.000000,0.000000,0.250000,0,0);}
.m1d_c00216{transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);}
.mc2_c00216{transform:matrix(0.259115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259115,0.000000,0.000000,0.250000,0,0);}
.m28_c00216{transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);}
.m10_c00216{transform:matrix(0.259640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259640,0.000000,0.000000,0.250000,0,0);}
.mb4_c00216{transform:matrix(0.259881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259881,0.000000,0.000000,0.250000,0,0);}
.m18_c00216{transform:matrix(0.260081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260081,0.000000,0.000000,0.250000,0,0);}
.m39_c00216{transform:matrix(0.260178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260178,0.000000,0.000000,0.250000,0,0);}
.mb_c00216{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.mca_c00216{transform:matrix(0.262842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262842,0.000000,0.000000,0.250000,0,0);}
.mbc_c00216{transform:matrix(0.262846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262846,0.000000,0.000000,0.250000,0,0);}
.m11_c00216{transform:matrix(0.262979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262979,0.000000,0.000000,0.250000,0,0);}
.m4d_c00216{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m7e_c00216{transform:matrix(0.263305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263305,0.000000,0.000000,0.250000,0,0);}
.mbb_c00216{transform:matrix(0.263720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263720,0.000000,0.000000,0.250000,0,0);}
.m9f_c00216{transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);}
.m82_c00216{transform:matrix(0.263868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263868,0.000000,0.000000,0.250000,0,0);}
.m79_c00216{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m38_c00216{transform:matrix(0.264128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264128,0.000000,0.000000,0.250000,0,0);}
.m3f_c00216{transform:matrix(0.264751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264751,0.000000,0.000000,0.250000,0,0);}
.m5e_c00216{transform:matrix(0.264886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264886,0.000000,0.000000,0.250000,0,0);}
.m49_c00216{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.mc_c00216{transform:matrix(0.267242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267242,0.000000,0.000000,0.250000,0,0);}
.m63_c00216{transform:matrix(0.267641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267641,0.000000,0.000000,0.250000,0,0);}
.m3d_c00216{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.ma9_c00216{transform:matrix(0.268088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268088,0.000000,0.000000,0.250000,0,0);}
.m89_c00216{transform:matrix(0.268484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268484,0.000000,0.000000,0.250000,0,0);}
.md_c00216{transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);}
.m84_c00216{transform:matrix(0.270081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270081,0.000000,0.000000,0.250000,0,0);}
.m75_c00216{transform:matrix(0.270420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270420,0.000000,0.000000,0.250000,0,0);}
.m88_c00216{transform:matrix(0.270819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270819,0.000000,0.000000,0.250000,0,0);}
.m1e_c00216{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m87_c00216{transform:matrix(0.271600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271600,0.000000,0.000000,0.250000,0,0);}
.m57_c00216{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.ma0_c00216{transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);}
.mb5_c00216{transform:matrix(0.273140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273140,0.000000,0.000000,0.250000,0,0);}
.mc6_c00216{transform:matrix(0.273700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273700,0.000000,0.000000,0.250000,0,0);}
.m46_c00216{transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);}
.m45_c00216{transform:matrix(0.274709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274709,0.000000,0.000000,0.250000,0,0);}
.m80_c00216{transform:matrix(0.276021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276021,0.000000,0.000000,0.250000,0,0);}
.m83_c00216{transform:matrix(0.276448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276448,0.000000,0.000000,0.250000,0,0);}
.m76_c00216{transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);}
.m12_c00216{transform:matrix(0.277582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277582,0.000000,0.000000,0.250000,0,0);}
.m4a_c00216{transform:matrix(0.277893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277893,0.000000,0.000000,0.250000,0,0);}
.m66_c00216{transform:matrix(0.278237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278237,0.000000,0.000000,0.250000,0,0);}
.m1a_c00216{transform:matrix(0.278950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278950,0.000000,0.000000,0.250000,0,0);}
.m52_c00216{transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);}
.m5d_c00216{transform:matrix(0.279663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279663,0.000000,0.000000,0.250000,0,0);}
.ma5_c00216{transform:matrix(0.279794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279794,0.000000,0.000000,0.250000,0,0);}
.m77_c00216{transform:matrix(0.279864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279864,0.000000,0.000000,0.250000,0,0);}
.m6e_c00216{transform:matrix(0.280269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280269,0.000000,0.000000,0.250000,0,0);}
.m0_c00216{transform:matrix(0.280756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280756,0.000000,0.000000,0.250000,0,0);}
.mc5_c00216{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.m22_c00216{transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);}
.mb7_c00216{transform:matrix(0.282610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282610,0.000000,0.000000,0.250000,0,0);}
.ma_c00216{transform:matrix(0.283165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283165,0.000000,0.000000,0.250000,0,0);}
.m5c_c00216{transform:matrix(0.283330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283330,0.000000,0.000000,0.250000,0,0);}
.mb9_c00216{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m58_c00216{transform:matrix(0.283726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283726,0.000000,0.000000,0.250000,0,0);}
.m6c_c00216{transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);}
.mcc_c00216{transform:matrix(0.284803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284803,0.000000,0.000000,0.250000,0,0);}
.mce_c00216{transform:matrix(0.284836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284836,0.000000,0.000000,0.250000,0,0);}
.mc7_c00216{transform:matrix(0.285047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285047,0.000000,0.000000,0.250000,0,0);}
.m68_c00216{transform:matrix(0.285373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285373,0.000000,0.000000,0.250000,0,0);}
.m8e_c00216{transform:matrix(0.285694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285694,0.000000,0.000000,0.250000,0,0);}
.m44_c00216{transform:matrix(0.286764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286764,0.000000,0.000000,0.250000,0,0);}
.m20_c00216{transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);}
.m53_c00216{transform:matrix(0.287119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287119,0.000000,0.000000,0.250000,0,0);}
.mcb_c00216{transform:matrix(0.287874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287874,0.000000,0.000000,0.250000,0,0);}
.m8a_c00216{transform:matrix(0.288481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288481,0.000000,0.000000,0.250000,0,0);}
.m81_c00216{transform:matrix(0.289172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289172,0.000000,0.000000,0.250000,0,0);}
.m2d_c00216{transform:matrix(0.289344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289344,0.000000,0.000000,0.250000,0,0);}
.ma7_c00216{transform:matrix(0.289931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289931,0.000000,0.000000,0.250000,0,0);}
.m42_c00216{transform:matrix(0.290045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290045,0.000000,0.000000,0.250000,0,0);}
.m3b_c00216{transform:matrix(0.290237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290237,0.000000,0.000000,0.250000,0,0);}
.m56_c00216{transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);}
.m7a_c00216{transform:matrix(0.291893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291893,0.000000,0.000000,0.250000,0,0);}
.m36_c00216{transform:matrix(0.291951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291951,0.000000,0.000000,0.250000,0,0);}
.mab_c00216{transform:matrix(0.291969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291969,0.000000,0.000000,0.250000,0,0);}
.m14_c00216{transform:matrix(0.292949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292949,0.000000,0.000000,0.250000,0,0);}
.m3a_c00216{transform:matrix(0.293323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293323,0.000000,0.000000,0.250000,0,0);}
.m23_c00216{transform:matrix(0.293403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293403,0.000000,0.000000,0.250000,0,0);}
.m65_c00216{transform:matrix(0.294033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294033,0.000000,0.000000,0.250000,0,0);}
.m5b_c00216{transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);}
.m7d_c00216{transform:matrix(0.295009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295009,0.000000,0.000000,0.250000,0,0);}
.m41_c00216{transform:matrix(0.295151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295151,0.000000,0.000000,0.250000,0,0);}
.mcd_c00216{transform:matrix(0.295247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295247,0.000000,0.000000,0.250000,0,0);}
.m3c_c00216{transform:matrix(0.296448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296448,0.000000,0.000000,0.250000,0,0);}
.m71_c00216{transform:matrix(0.296783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296783,0.000000,0.000000,0.250000,0,0);}
.m4e_c00216{transform:matrix(0.296805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296805,0.000000,0.000000,0.250000,0,0);}
.m78_c00216{transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);}
.m3_c00216{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m6b_c00216{transform:matrix(0.298085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298085,0.000000,0.000000,0.250000,0,0);}
.m64_c00216{transform:matrix(0.299238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299238,0.000000,0.000000,0.250000,0,0);}
.m9e_c00216{transform:matrix(0.300569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300569,0.000000,0.000000,0.250000,0,0);}
.mae_c00216{transform:matrix(0.300926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300926,0.000000,0.000000,0.250000,0,0);}
.me_c00216{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.mb3_c00216{transform:matrix(0.302808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302808,0.000000,0.000000,0.250000,0,0);}
.mc3_c00216{transform:matrix(0.303064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303064,0.000000,0.000000,0.250000,0,0);}
.m74_c00216{transform:matrix(0.303086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303086,0.000000,0.000000,0.250000,0,0);}
.m92_c00216{transform:matrix(0.303351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303351,0.000000,0.000000,0.250000,0,0);}
.m50_c00216{transform:matrix(0.303692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303692,0.000000,0.000000,0.250000,0,0);}
.mc1_c00216{transform:matrix(0.304531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304531,0.000000,0.000000,0.250000,0,0);}
.m96_c00216{transform:matrix(0.305726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305726,0.000000,0.000000,0.250000,0,0);}
.m94_c00216{transform:matrix(0.305994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305994,0.000000,0.000000,0.250000,0,0);}
.m4_c00216{transform:matrix(0.306004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306004,0.000000,0.000000,0.250000,0,0);}
.m9d_c00216{transform:matrix(0.306846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306846,0.000000,0.000000,0.250000,0,0);}
.m37_c00216{transform:matrix(0.307730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307730,0.000000,0.000000,0.250000,0,0);}
.m8f_c00216{transform:matrix(0.307732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307732,0.000000,0.000000,0.250000,0,0);}
.m91_c00216{transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);}
.ma8_c00216{transform:matrix(0.308088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308088,0.000000,0.000000,0.250000,0,0);}
.m8_c00216{transform:matrix(0.308174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308174,0.000000,0.000000,0.250000,0,0);}
.mb6_c00216{transform:matrix(0.308319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308319,0.000000,0.000000,0.250000,0,0);}
.m32_c00216{transform:matrix(0.308482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308482,0.000000,0.000000,0.250000,0,0);}
.m7_c00216{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.mc4_c00216{transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);}
.m2b_c00216{transform:matrix(0.308858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308858,0.000000,0.000000,0.250000,0,0);}
.m9b_c00216{transform:matrix(0.309349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309349,0.000000,0.000000,0.250000,0,0);}
.m8d_c00216{transform:matrix(0.310761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310761,0.000000,0.000000,0.250000,0,0);}
.m1c_c00216{transform:matrix(0.311143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311143,0.000000,0.000000,0.250000,0,0);}
.m67_c00216{transform:matrix(0.311898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311898,0.000000,0.000000,0.250000,0,0);}
.m35_c00216{transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);}
.m7b_c00216{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.m73_c00216{transform:matrix(0.313272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313272,0.000000,0.000000,0.250000,0,0);}
.m34_c00216{transform:matrix(0.314821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314821,0.000000,0.000000,0.250000,0,0);}
.m4f_c00216{transform:matrix(0.315048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315048,0.000000,0.000000,0.250000,0,0);}
.mbd_c00216{transform:matrix(0.315578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315578,0.000000,0.000000,0.250000,0,0);}
.mb8_c00216{transform:matrix(0.316169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316169,0.000000,0.000000,0.250000,0,0);}
.m25_c00216{transform:matrix(0.317242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317242,0.000000,0.000000,0.250000,0,0);}
.m2a_c00216{transform:matrix(0.317599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317599,0.000000,0.000000,0.250000,0,0);}
.m13_c00216{transform:matrix(0.318648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318648,0.000000,0.000000,0.250000,0,0);}
.m5f_c00216{transform:matrix(0.319415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319415,0.000000,0.000000,0.250000,0,0);}
.m17_c00216{transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);}
.m60_c00216{transform:matrix(0.321554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321554,0.000000,0.000000,0.250000,0,0);}
.m40_c00216{transform:matrix(0.321739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321739,0.000000,0.000000,0.250000,0,0);}
.maa_c00216{transform:matrix(0.323146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323146,0.000000,0.000000,0.250000,0,0);}
.m29_c00216{transform:matrix(0.323312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323312,0.000000,0.000000,0.250000,0,0);}
.maf_c00216{transform:matrix(0.324172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324172,0.000000,0.000000,0.250000,0,0);}
.m62_c00216{transform:matrix(0.324715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324715,0.000000,0.000000,0.250000,0,0);}
.m6f_c00216{transform:matrix(0.324725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324725,0.000000,0.000000,0.250000,0,0);}
.mb2_c00216{transform:matrix(0.325583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325583,0.000000,0.000000,0.250000,0,0);}
.m5_c00216{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.mac_c00216{transform:matrix(0.327297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327297,0.000000,0.000000,0.250000,0,0);}
.m7f_c00216{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.m4c_c00216{transform:matrix(0.328108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328108,0.000000,0.000000,0.250000,0,0);}
.m2_c00216{transform:matrix(0.328186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328186,0.000000,0.000000,0.250000,0,0);}
.m15_c00216{transform:matrix(0.328711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328711,0.000000,0.000000,0.250000,0,0);}
.m51_c00216{transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);}
.m4b_c00216{transform:matrix(0.331707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331707,0.000000,0.000000,0.250000,0,0);}
.m26_c00216{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m2f_c00216{transform:matrix(0.334418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334418,0.000000,0.000000,0.250000,0,0);}
.m1b_c00216{transform:matrix(0.335394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335394,0.000000,0.000000,0.250000,0,0);}
.ma3_c00216{transform:matrix(0.337061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337061,0.000000,0.000000,0.250000,0,0);}
.ma4_c00216{transform:matrix(0.337655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337655,0.000000,0.000000,0.250000,0,0);}
.m61_c00216{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m1f_c00216{transform:matrix(0.340068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340068,0.000000,0.000000,0.250000,0,0);}
.m7c_c00216{transform:matrix(0.342217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342217,0.000000,0.000000,0.250000,0,0);}
.m9c_c00216{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.mc0_c00216{transform:matrix(0.343814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343814,0.000000,0.000000,0.250000,0,0);}
.ma1_c00216{transform:matrix(0.344051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344051,0.000000,0.000000,0.250000,0,0);}
.m9_c00216{transform:matrix(0.345590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345590,0.000000,0.000000,0.250000,0,0);}
.m16_c00216{transform:matrix(0.345927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345927,0.000000,0.000000,0.250000,0,0);}
.m85_c00216{transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);}
.m47_c00216{transform:matrix(0.350093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350093,0.000000,0.000000,0.250000,0,0);}
.mf_c00216{transform:matrix(0.350318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350318,0.000000,0.000000,0.250000,0,0);}
.m2c_c00216{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.mc9_c00216{transform:matrix(0.357074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357074,0.000000,0.000000,0.250000,0,0);}
.m30_c00216{transform:matrix(0.360514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360514,0.000000,0.000000,0.250000,0,0);}
.m5a_c00216{transform:matrix(0.360669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360669,0.000000,0.000000,0.250000,0,0);}
.m33_c00216{transform:matrix(0.361640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361640,0.000000,0.000000,0.250000,0,0);}
.m59_c00216{transform:matrix(0.367117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367117,0.000000,0.000000,0.250000,0,0);}
.m31_c00216{transform:matrix(0.368363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368363,0.000000,0.000000,0.250000,0,0);}
.m90_c00216{transform:matrix(0.372071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372071,0.000000,0.000000,0.250000,0,0);}
.m72_c00216{transform:matrix(0.373039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373039,0.000000,0.000000,0.250000,0,0);}
.m2e_c00216{transform:matrix(0.381065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381065,0.000000,0.000000,0.250000,0,0);}
.m27_c00216{transform:matrix(0.400876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400876,0.000000,0.000000,0.250000,0,0);}
.m95_c00216{transform:matrix(0.407787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407787,0.000000,0.000000,0.250000,0,0);}
.m6a_c00216{transform:matrix(0.432348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432348,0.000000,0.000000,0.250000,0,0);}
.mc8_c00216{transform:matrix(0.435238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435238,0.000000,0.000000,0.250000,0,0);}
.m6d_c00216{transform:matrix(0.447789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447789,0.000000,0.000000,0.250000,0,0);}
.v1_c00216{vertical-align:-15.661800px;}
.v0_c00216{vertical-align:0.000000px;}
.ls6_c00216{letter-spacing:-2.744280px;}
.lse_c00216{letter-spacing:-2.668050px;}
.ls4_c00216{letter-spacing:-2.375762px;}
.lsf_c00216{letter-spacing:-2.300767px;}
.ls10_c00216{letter-spacing:-0.815443px;}
.ls8_c00216{letter-spacing:-0.428155px;}
.ls3_c00216{letter-spacing:0.000000px;}
.lsc_c00216{letter-spacing:1.027145px;}
.lsb_c00216{letter-spacing:2.062130px;}
.lsa_c00216{letter-spacing:2.462011px;}
.ls7_c00216{letter-spacing:3.191206px;}
.ls1_c00216{letter-spacing:3.261773px;}
.ls5_c00216{letter-spacing:3.544200px;}
.lsd_c00216{letter-spacing:3.653813px;}
.ls2_c00216{letter-spacing:3.920400px;}
.ls0_c00216{letter-spacing:4.469256px;}
.ls11_c00216{letter-spacing:48.470598px;}
.ls9_c00216{letter-spacing:49.896198px;}
.ls12_c00216{letter-spacing:51.321798px;}
.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;}
}
.ws5_c00216{word-spacing:-23.255813px;}
.ws2_c00216{word-spacing:-22.793206px;}
.ws0_c00216{word-spacing:-19.602000px;}
.ws4_c00216{word-spacing:-1.097712px;}
.ws1_c00216{word-spacing:-0.313632px;}
.ws7_c00216{word-spacing:0.000000px;}
.ws6_c00216{word-spacing:2.195424px;}
.ws3_c00216{word-spacing:2.822688px;}
._14_c00216{margin-left:-13.878216px;}
._0_c00216{margin-left:-10.663488px;}
._c_c00216{margin-left:-9.252144px;}
._11_c00216{margin-left:-6.978312px;}
._17_c00216{margin-left:-5.331744px;}
._12_c00216{margin-left:-1.254528px;}
._15_c00216{width:1.568160px;}
._7_c00216{width:4.939704px;}
._b_c00216{width:6.664680px;}
._1_c00216{width:8.546472px;}
._3_c00216{width:10.036224px;}
._e_c00216{width:11.525976px;}
._6_c00216{width:12.780504px;}
._8_c00216{width:14.035428px;}
._5_c00216{width:20.856528px;}
._10_c00216{width:25.717824px;}
._9_c00216{width:28.147680px;}
._d_c00216{width:29.559420px;}
._16_c00216{width:32.303700px;}
._2_c00216{width:34.577532px;}
._4_c00216{width:36.851760px;}
._a_c00216{width:40.340916px;}
._f_c00216{width:43.438032px;}
._13_c00216{width:44.862048px;}
._18_c00216{width:48.299328px;}
.fc0_c00216{color:transparent;}
.fsd_c00216{font-size:22.176000px;}
.fs3_c00216{font-size:22.572000px;}
.fs6_c00216{font-size:26.928000px;}
.fs8_c00216{font-size:27.720000px;}
.fs4_c00216{font-size:31.482000px;}
.fs10_c00216{font-size:33.858000px;}
.fs1_c00216{font-size:34.056198px;}
.fs9_c00216{font-size:37.620000px;}
.fsf_c00216{font-size:39.204000px;}
.fsc_c00216{font-size:48.470598px;}
.fs5_c00216{font-size:49.896198px;}
.fs7_c00216{font-size:50.688000px;}
.fse_c00216{font-size:51.321798px;}
.fsb_c00216{font-size:65.736198px;}
.fs2_c00216{font-size:70.884000px;}
.fsa_c00216{font-size:76.230000px;}
.fs0_c00216{font-size:78.408000px;}
.y0_c00216{bottom:0.000000px;}
.y2b_c00216{bottom:26.641935px;}
.y1_c00216{bottom:76.500000px;}
.y2a_c00216{bottom:85.448925px;}
.y29_c00216{bottom:144.610335px;}
.y28_c00216{bottom:152.451135px;}
.y27_c00216{bottom:183.452985px;}
.y26_c00216{bottom:216.246735px;}
.y25_c00216{bottom:227.290185px;}
.y24_c00216{bottom:248.322735px;}
.y23_c00216{bottom:280.393785px;}
.y22_c00216{bottom:294.298335px;}
.y21_c00216{bottom:313.182585px;}
.y20_c00216{bottom:313.186149px;}
.y1f_c00216{bottom:344.902185px;}
.y1e_c00216{bottom:379.116585px;}
.y1d_c00216{bottom:399.436335px;}
.y1c_c00216{bottom:404.420985px;}
.y19_c00216{bottom:408.702735px;}
.y1a_c00216{bottom:412.618185px;}
.y1b_c00216{bottom:417.612735px;}
.y18_c00216{bottom:441.486585px;}
.y17_c00216{bottom:441.847935px;}
.y16_c00216{bottom:456.103935px;}
.y15_c00216{bottom:473.923935px;}
.y14_c00216{bottom:505.999935px;}
.y13_c00216{bottom:538.075935px;}
.y12_c00216{bottom:570.146985px;}
.y11_c00216{bottom:601.510185px;}
.y10_c00216{bottom:631.809135px;}
.ye_c00216{bottom:632.160585px;}
.yf_c00216{bottom:646.060185px;}
.yd_c00216{bottom:664.597935px;}
.yc_c00216{bottom:686.333385px;}
.yb_c00216{bottom:697.030335px;}
.ya_c00216{bottom:762.959385px;}
.y9_c00216{bottom:791.119935px;}
.y8_c00216{bottom:796.465935px;}
.y7_c00216{bottom:828.536985px;}
.y6_c00216{bottom:860.617935px;}
.y5_c00216{bottom:893.406735px;}
.y4_c00216{bottom:926.546985px;}
.y3_c00216{bottom:993.550185px;}
.y2_c00216{bottom:1086.926985px;}
.h10_c00216{height:23.128875px;}
.h5_c00216{height:23.541891px;}
.h8_c00216{height:28.085063px;}
.ha_c00216{height:28.911094px;}
.h6_c00216{height:30.897861px;}
.hf_c00216{height:32.281418px;}
.h7_c00216{height:33.230868px;}
.h11_c00216{height:34.180317px;}
.h13_c00216{height:35.312836px;}
.h3_c00216{height:35.519550px;}
.h12_c00216{height:38.476582px;}
.hb_c00216{height:39.236484px;}
.h9_c00216{height:61.291364px;}
.hd_c00216{height:64.516483px;}
.h4_c00216{height:69.568770px;}
.hc_c00216{height:74.815576px;}
.h2_c00216{height:76.953164px;}
.he_c00216{height:79.020563px;}
.h1_c00216{height:1110.000000px;}
.h0_c00216{height:1263.000000px;}
.w1_c00216{width:751.500000px;}
.w0_c00216{width:892.500000px;}
.x0_c00216{left:0.000000px;}
.x33_c00216{left:59.390535px;}
.x10_c00216{left:61.717035px;}
.x1_c00216{left:70.500000px;}
.x4e_c00216{left:72.409035px;}
.x2c_c00216{left:83.115885px;}
.x11_c00216{left:94.164285px;}
.x57_c00216{left:105.217635px;}
.x4_c00216{left:115.924485px;}
.x41_c00216{left:116.954085px;}
.x61_c00216{left:118.904385px;}
.x12_c00216{left:127.314435px;}
.x62_c00216{left:130.056735px;}
.x45_c00216{left:138.338085px;}
.x4b_c00216{left:141.144735px;}
.x1d_c00216{left:149.440935px;}
.x63_c00216{left:160.217085px;}
.x13_c00216{left:171.503085px;}
.x46_c00216{left:180.972435px;}
.x36_c00216{left:182.586135px;}
.x14_c00216{left:193.624635px;}
.x6b_c00216{left:195.015585px;}
.x5a_c00216{left:203.009835px;}
.x5_c00216{left:204.578985px;}
.x37_c00216{left:215.157135px;}
.x68_c00216{left:217.211385px;}
.x6f_c00216{left:219.196335px;}
.x2d_c00216{left:226.745085px;}
.x55_c00216{left:227.809335px;}
.x6_c00216{left:238.021185px;}
.x4f_c00216{left:239.174535px;}
.x1e_c00216{left:249.198285px;}
.x15_c00216{left:259.697235px;}
.x7_c00216{left:270.042735px;}
.x2e_c00216{left:271.156485px;}
.x50_c00216{left:280.764435px;}
.x24_c00216{left:282.016785px;}
.x64_c00216{left:283.269135px;}
.x38_c00216{left:284.273985px;}
.x42_c00216{left:293.396835px;}
.x16_c00216{left:294.436335px;}
.x5b_c00216{left:295.817385px;}
.x65_c00216{left:298.589385px;}
.x8_c00216{left:303.603735px;}
.x47_c00216{left:305.489685px;}
.x51_c00216{left:315.384735px;}
.x17_c00216{left:326.754885px;}
.x6d_c00216{left:327.952785px;}
.x25_c00216{left:337.956735px;}
.x48_c00216{left:347.421135px;}
.x58_c00216{left:348.990285px;}
.x6e_c00216{left:349.995135px;}
.x39_c00216{left:359.083335px;}
.x18_c00216{left:360.682185px;}
.x3a_c00216{left:370.898985px;}
.x26_c00216{left:372.077085px;}
.x1f_c00216{left:381.957285px;}
.x9_c00216{left:393.193785px;}
.x3b_c00216{left:396.728085px;}
.x3c_c00216{left:398.925885px;}
.x20_c00216{left:404.964885px;}
.x49_c00216{left:414.434235px;}
.xa_c00216{left:415.919235px;}
.x27_c00216{left:426.324135px;}
.x5e_c00216{left:427.378485px;}
.x3d_c00216{left:428.759535px;}
.x52_c00216{left:436.773585px;}
.x21_c00216{left:438.055635px;}
.xb_c00216{left:447.886335px;}
.x6a_c00216{left:449.099085px;}
.x5f_c00216{left:458.870385px;}
.x43_c00216{left:468.943635px;}
.x19_c00216{left:470.874135px;}
.x2f_c00216{left:481.887885px;}
.x5d_c00216{left:490.580085px;}
.x28_c00216{left:492.074985px;}
.x32_c00216{left:502.667985px;}
.x59_c00216{left:503.841135px;}
.x4a_c00216{left:515.082585px;}
.xc_c00216{left:525.734985px;}
.x70_c00216{left:535.550835px;}
.x22_c00216{left:537.100185px;}
.x3_c00216{left:544.653885px;}
.x53_c00216{left:547.321935px;}
.x34_c00216{left:548.584185px;}
.x1a_c00216{left:549.791985px;}
.x30_c00216{left:559.221735px;}
.x69_c00216{left:568.339635px;}
.xd_c00216{left:570.265185px;}
.x4c_c00216{left:581.348235px;}
.x67_c00216{left:587.545635px;}
.x29_c00216{left:592.332285px;}
.x3e_c00216{left:593.450985px;}
.x1b_c00216{left:601.880835px;}
.x66_c00216{left:603.073785px;}
.x56_c00216{left:604.504335px;}
.x60_c00216{left:614.785485px;}
.x35_c00216{left:625.076535px;}
.x3f_c00216{left:626.546685px;}
.x71_c00216{left:629.576085px;}
.xe_c00216{left:636.619935px;}
.x2_c00216{left:647.594085px;}
.x40_c00216{left:658.226685px;}
.x1c_c00216{left:659.345385px;}
.x31_c00216{left:669.359235px;}
.x4d_c00216{left:679.486935px;}
.xf_c00216{left:680.966985px;}
.x2a_c00216{left:690.946185px;}
.x23_c00216{left:692.535135px;}
.x44_c00216{left:695.549685px;}
.x5c_c00216{left:696.915885px;}
.x6c_c00216{left:698.014785px;}
.x54_c00216{left:702.662835px;}
.x2b_c00216{left:713.914185px;}
@media print{
.v1_c00216{vertical-align:-13.921600pt;}
.v0_c00216{vertical-align:0.000000pt;}
.ls6_c00216{letter-spacing:-2.439360pt;}
.lse_c00216{letter-spacing:-2.371600pt;}
.ls4_c00216{letter-spacing:-2.111789pt;}
.lsf_c00216{letter-spacing:-2.045126pt;}
.ls10_c00216{letter-spacing:-0.724838pt;}
.ls8_c00216{letter-spacing:-0.380582pt;}
.ls3_c00216{letter-spacing:0.000000pt;}
.lsc_c00216{letter-spacing:0.913018pt;}
.lsb_c00216{letter-spacing:1.833005pt;}
.lsa_c00216{letter-spacing:2.188454pt;}
.ls7_c00216{letter-spacing:2.836627pt;}
.ls1_c00216{letter-spacing:2.899354pt;}
.ls5_c00216{letter-spacing:3.150400pt;}
.lsd_c00216{letter-spacing:3.247834pt;}
.ls2_c00216{letter-spacing:3.484800pt;}
.ls0_c00216{letter-spacing:3.972672pt;}
.ls11_c00216{letter-spacing:43.084976pt;}
.ls9_c00216{letter-spacing:44.352176pt;}
.ls12_c00216{letter-spacing:45.619376pt;}
.ws5_c00216{word-spacing:-20.671834pt;}
.ws2_c00216{word-spacing:-20.260627pt;}
.ws0_c00216{word-spacing:-17.424000pt;}
.ws4_c00216{word-spacing:-0.975744pt;}
.ws1_c00216{word-spacing:-0.278784pt;}
.ws7_c00216{word-spacing:0.000000pt;}
.ws6_c00216{word-spacing:1.951488pt;}
.ws3_c00216{word-spacing:2.509056pt;}
._14_c00216{margin-left:-12.336192pt;}
._0_c00216{margin-left:-9.478656pt;}
._c_c00216{margin-left:-8.224128pt;}
._11_c00216{margin-left:-6.202944pt;}
._17_c00216{margin-left:-4.739328pt;}
._12_c00216{margin-left:-1.115136pt;}
._15_c00216{width:1.393920pt;}
._7_c00216{width:4.390848pt;}
._b_c00216{width:5.924160pt;}
._1_c00216{width:7.596864pt;}
._3_c00216{width:8.921088pt;}
._e_c00216{width:10.245312pt;}
._6_c00216{width:11.360448pt;}
._8_c00216{width:12.475936pt;}
._5_c00216{width:18.539136pt;}
._10_c00216{width:22.860288pt;}
._9_c00216{width:25.020160pt;}
._d_c00216{width:26.275040pt;}
._16_c00216{width:28.714400pt;}
._2_c00216{width:30.735584pt;}
._4_c00216{width:32.757120pt;}
._a_c00216{width:35.858592pt;}
._f_c00216{width:38.611584pt;}
._13_c00216{width:39.877376pt;}
._18_c00216{width:42.932736pt;}
.fsd_c00216{font-size:19.712000pt;}
.fs3_c00216{font-size:20.064000pt;}
.fs6_c00216{font-size:23.936000pt;}
.fs8_c00216{font-size:24.640000pt;}
.fs4_c00216{font-size:27.984000pt;}
.fs10_c00216{font-size:30.096000pt;}
.fs1_c00216{font-size:30.272176pt;}
.fs9_c00216{font-size:33.440000pt;}
.fsf_c00216{font-size:34.848000pt;}
.fsc_c00216{font-size:43.084976pt;}
.fs5_c00216{font-size:44.352176pt;}
.fs7_c00216{font-size:45.056000pt;}
.fse_c00216{font-size:45.619376pt;}
.fsb_c00216{font-size:58.432176pt;}
.fs2_c00216{font-size:63.008000pt;}
.fsa_c00216{font-size:67.760000pt;}
.fs0_c00216{font-size:69.696000pt;}
.y0_c00216{bottom:0.000000pt;}
.y2b_c00216{bottom:23.681720pt;}
.y1_c00216{bottom:68.000000pt;}
.y2a_c00216{bottom:75.954600pt;}
.y29_c00216{bottom:128.542520pt;}
.y28_c00216{bottom:135.512120pt;}
.y27_c00216{bottom:163.069320pt;}
.y26_c00216{bottom:192.219320pt;}
.y25_c00216{bottom:202.035720pt;}
.y24_c00216{bottom:220.731320pt;}
.y23_c00216{bottom:249.238920pt;}
.y22_c00216{bottom:261.598520pt;}
.y21_c00216{bottom:278.384520pt;}
.y20_c00216{bottom:278.387688pt;}
.y1f_c00216{bottom:306.579720pt;}
.y1e_c00216{bottom:336.992520pt;}
.y1d_c00216{bottom:355.054520pt;}
.y1c_c00216{bottom:359.485320pt;}
.y19_c00216{bottom:363.291320pt;}
.y1a_c00216{bottom:366.771720pt;}
.y1b_c00216{bottom:371.211320pt;}
.y18_c00216{bottom:392.432520pt;}
.y17_c00216{bottom:392.753720pt;}
.y16_c00216{bottom:405.425720pt;}
.y15_c00216{bottom:421.265720pt;}
.y14_c00216{bottom:449.777720pt;}
.y13_c00216{bottom:478.289720pt;}
.y12_c00216{bottom:506.797320pt;}
.y11_c00216{bottom:534.675720pt;}
.y10_c00216{bottom:561.608120pt;}
.ye_c00216{bottom:561.920520pt;}
.yf_c00216{bottom:574.275720pt;}
.yd_c00216{bottom:590.753720pt;}
.yc_c00216{bottom:610.074120pt;}
.yb_c00216{bottom:619.582520pt;}
.ya_c00216{bottom:678.186120pt;}
.y9_c00216{bottom:703.217720pt;}
.y8_c00216{bottom:707.969720pt;}
.y7_c00216{bottom:736.477320pt;}
.y6_c00216{bottom:764.993720pt;}
.y5_c00216{bottom:794.139320pt;}
.y4_c00216{bottom:823.597320pt;}
.y3_c00216{bottom:883.155720pt;}
.y2_c00216{bottom:966.157320pt;}
.h10_c00216{height:20.559000pt;}
.h5_c00216{height:20.926125pt;}
.h8_c00216{height:24.964500pt;}
.ha_c00216{height:25.698750pt;}
.h6_c00216{height:27.464766pt;}
.hf_c00216{height:28.694594pt;}
.h7_c00216{height:29.538549pt;}
.h11_c00216{height:30.382504pt;}
.h13_c00216{height:31.389188pt;}
.h3_c00216{height:31.572934pt;}
.h12_c00216{height:34.201406pt;}
.hb_c00216{height:34.876875pt;}
.h9_c00216{height:54.481213pt;}
.hd_c00216{height:57.347985pt;}
.h4_c00216{height:61.838906pt;}
.hc_c00216{height:66.502734pt;}
.h2_c00216{height:68.402813pt;}
.he_c00216{height:70.240500pt;}
.h1_c00216{height:986.666667pt;}
.h0_c00216{height:1122.666667pt;}
.w1_c00216{width:668.000000pt;}
.w0_c00216{width:793.333333pt;}
.x0_c00216{left:0.000000pt;}
.x33_c00216{left:52.791587pt;}
.x10_c00216{left:54.859587pt;}
.x1_c00216{left:62.666667pt;}
.x4e_c00216{left:64.363587pt;}
.x2c_c00216{left:73.880787pt;}
.x11_c00216{left:83.701587pt;}
.x57_c00216{left:93.526787pt;}
.x4_c00216{left:103.043987pt;}
.x41_c00216{left:103.959187pt;}
.x61_c00216{left:105.692787pt;}
.x12_c00216{left:113.168387pt;}
.x62_c00216{left:115.605987pt;}
.x45_c00216{left:122.967187pt;}
.x4b_c00216{left:125.461987pt;}
.x1d_c00216{left:132.836387pt;}
.x63_c00216{left:142.415187pt;}
.x13_c00216{left:152.447187pt;}
.x46_c00216{left:160.864387pt;}
.x36_c00216{left:162.298787pt;}
.x14_c00216{left:172.110787pt;}
.x6b_c00216{left:173.347187pt;}
.x5a_c00216{left:180.453187pt;}
.x5_c00216{left:181.847987pt;}
.x37_c00216{left:191.250787pt;}
.x68_c00216{left:193.076787pt;}
.x6f_c00216{left:194.841187pt;}
.x2d_c00216{left:201.551187pt;}
.x55_c00216{left:202.497187pt;}
.x6_c00216{left:211.574387pt;}
.x4f_c00216{left:212.599587pt;}
.x1e_c00216{left:221.509587pt;}
.x15_c00216{left:230.841987pt;}
.x7_c00216{left:240.037987pt;}
.x2e_c00216{left:241.027987pt;}
.x50_c00216{left:249.568387pt;}
.x24_c00216{left:250.681587pt;}
.x64_c00216{left:251.794787pt;}
.x38_c00216{left:252.687987pt;}
.x42_c00216{left:260.797187pt;}
.x16_c00216{left:261.721187pt;}
.x5b_c00216{left:262.948787pt;}
.x65_c00216{left:265.412787pt;}
.x8_c00216{left:269.869987pt;}
.x47_c00216{left:271.546387pt;}
.x51_c00216{left:280.341987pt;}
.x17_c00216{left:290.448787pt;}
.x6d_c00216{left:291.513587pt;}
.x25_c00216{left:300.405987pt;}
.x48_c00216{left:308.818787pt;}
.x58_c00216{left:310.213587pt;}
.x6e_c00216{left:311.106787pt;}
.x39_c00216{left:319.185187pt;}
.x18_c00216{left:320.606387pt;}
.x3a_c00216{left:329.687987pt;}
.x26_c00216{left:330.735187pt;}
.x1f_c00216{left:339.517587pt;}
.x9_c00216{left:349.505587pt;}
.x3b_c00216{left:352.647187pt;}
.x3c_c00216{left:354.600787pt;}
.x20_c00216{left:359.968787pt;}
.x49_c00216{left:368.385987pt;}
.xa_c00216{left:369.705987pt;}
.x27_c00216{left:378.954787pt;}
.x5e_c00216{left:379.891987pt;}
.x3d_c00216{left:381.119587pt;}
.x52_c00216{left:388.243187pt;}
.x21_c00216{left:389.382787pt;}
.xb_c00216{left:398.121187pt;}
.x6a_c00216{left:399.199187pt;}
.x5f_c00216{left:407.884787pt;}
.x43_c00216{left:416.838787pt;}
.x19_c00216{left:418.554787pt;}
.x2f_c00216{left:428.344787pt;}
.x5d_c00216{left:436.071187pt;}
.x28_c00216{left:437.399987pt;}
.x32_c00216{left:446.815987pt;}
.x59_c00216{left:447.858787pt;}
.x4a_c00216{left:457.851187pt;}
.xc_c00216{left:467.319987pt;}
.x70_c00216{left:476.045187pt;}
.x22_c00216{left:477.422387pt;}
.x3_c00216{left:484.136787pt;}
.x53_c00216{left:486.508387pt;}
.x34_c00216{left:487.630387pt;}
.x1a_c00216{left:488.703987pt;}
.x30_c00216{left:497.085987pt;}
.x69_c00216{left:505.190787pt;}
.xd_c00216{left:506.902387pt;}
.x4c_c00216{left:516.753987pt;}
.x67_c00216{left:522.262787pt;}
.x29_c00216{left:526.517587pt;}
.x3e_c00216{left:527.511987pt;}
.x1b_c00216{left:535.005187pt;}
.x66_c00216{left:536.065587pt;}
.x56_c00216{left:537.337187pt;}
.x60_c00216{left:546.475987pt;}
.x35_c00216{left:555.623587pt;}
.x3f_c00216{left:556.930387pt;}
.x71_c00216{left:559.623187pt;}
.xe_c00216{left:565.884387pt;}
.x2_c00216{left:575.639187pt;}
.x40_c00216{left:585.090387pt;}
.x1c_c00216{left:586.084787pt;}
.x31_c00216{left:594.985987pt;}
.x4d_c00216{left:603.988387pt;}
.xf_c00216{left:605.303987pt;}
.x2a_c00216{left:614.174387pt;}
.x23_c00216{left:615.586787pt;}
.x44_c00216{left:618.266387pt;}
.x5c_c00216{left:619.480787pt;}
.x6c_c00216{left:620.457587pt;}
.x54_c00216{left:624.589187pt;}
.x2b_c00216{left:634.590387pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e5a6a0b79fd4943bfd06a57e.woff2')format("woff");}.ff1_c00217{font-family:ff1_c00217;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00217;src:url('chunks/assets/font_cacda6a43c89b936e3dc320d.woff2')format("woff");}.ff2_c00217{font-family:ff2_c00217;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m59_c00217{transform:matrix(0.189811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189811,0.000000,0.000000,0.250000,0,0);}
.m47_c00217{transform:matrix(0.207158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207158,0.000000,0.000000,0.250000,0,0);}
.m50_c00217{transform:matrix(0.213031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213031,0.000000,0.000000,0.250000,0,0);}
.m6f_c00217{transform:matrix(0.238001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238001,0.000000,0.000000,0.250000,0,0);}
.m86_c00217{transform:matrix(0.242568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242568,0.000000,0.000000,0.250000,0,0);}
.m81_c00217{transform:matrix(0.245362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245362,0.000000,0.000000,0.250000,0,0);}
.m9c_c00217{transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);}
.m0_c00217{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00217{transform:matrix(0.251770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251770,0.000000,0.000000,0.250000,0,0);}
.m8_c00217{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.m79_c00217{transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);}
.m7b_c00217{transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);}
.m9a_c00217{transform:matrix(0.254648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254648,0.000000,0.000000,0.250000,0,0);}
.m48_c00217{transform:matrix(0.257151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257151,0.000000,0.000000,0.250000,0,0);}
.m71_c00217{transform:matrix(0.257794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257794,0.000000,0.000000,0.250000,0,0);}
.m1f_c00217{transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);}
.m8e_c00217{transform:matrix(0.258042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258042,0.000000,0.000000,0.250000,0,0);}
.m11_c00217{transform:matrix(0.258596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258596,0.000000,0.000000,0.250000,0,0);}
.m38_c00217{transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);}
.m54_c00217{transform:matrix(0.260819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260819,0.000000,0.000000,0.250000,0,0);}
.m2_c00217{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m74_c00217{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.ma6_c00217{transform:matrix(0.261551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261551,0.000000,0.000000,0.250000,0,0);}
.m66_c00217{transform:matrix(0.261923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261923,0.000000,0.000000,0.250000,0,0);}
.m15_c00217{transform:matrix(0.262931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262931,0.000000,0.000000,0.250000,0,0);}
.m4a_c00217{transform:matrix(0.263092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263092,0.000000,0.000000,0.250000,0,0);}
.m40_c00217{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m2c_c00217{transform:matrix(0.263766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263766,0.000000,0.000000,0.250000,0,0);}
.m77_c00217{transform:matrix(0.265150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265150,0.000000,0.000000,0.250000,0,0);}
.m65_c00217{transform:matrix(0.265156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265156,0.000000,0.000000,0.250000,0,0);}
.mab_c00217{transform:matrix(0.265318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265318,0.000000,0.000000,0.250000,0,0);}
.m42_c00217{transform:matrix(0.265373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265373,0.000000,0.000000,0.250000,0,0);}
.md_c00217{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.mc_c00217{transform:matrix(0.266484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266484,0.000000,0.000000,0.250000,0,0);}
.m73_c00217{transform:matrix(0.266682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266682,0.000000,0.000000,0.250000,0,0);}
.m20_c00217{transform:matrix(0.267530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267530,0.000000,0.000000,0.250000,0,0);}
.m25_c00217{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m67_c00217{transform:matrix(0.268294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268294,0.000000,0.000000,0.250000,0,0);}
.ma8_c00217{transform:matrix(0.268353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268353,0.000000,0.000000,0.250000,0,0);}
.m8a_c00217{transform:matrix(0.268557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268557,0.000000,0.000000,0.250000,0,0);}
.m14_c00217{transform:matrix(0.269096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269096,0.000000,0.000000,0.250000,0,0);}
.mb_c00217{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m6a_c00217{transform:matrix(0.271079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271079,0.000000,0.000000,0.250000,0,0);}
.m2f_c00217{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m5c_c00217{transform:matrix(0.272610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272610,0.000000,0.000000,0.250000,0,0);}
.m88_c00217{transform:matrix(0.274033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274033,0.000000,0.000000,0.250000,0,0);}
.m5b_c00217{transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);}
.m3e_c00217{transform:matrix(0.274132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274132,0.000000,0.000000,0.250000,0,0);}
.ma7_c00217{transform:matrix(0.274756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274756,0.000000,0.000000,0.250000,0,0);}
.m5f_c00217{transform:matrix(0.275040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275040,0.000000,0.000000,0.250000,0,0);}
.m85_c00217{transform:matrix(0.275733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275733,0.000000,0.000000,0.250000,0,0);}
.ma5_c00217{transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);}
.m93_c00217{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m30_c00217{transform:matrix(0.277893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277893,0.000000,0.000000,0.250000,0,0);}
.m2a_c00217{transform:matrix(0.277902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277902,0.000000,0.000000,0.250000,0,0);}
.mac_c00217{transform:matrix(0.277922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277922,0.000000,0.000000,0.250000,0,0);}
.m27_c00217{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m78_c00217{transform:matrix(0.279350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279350,0.000000,0.000000,0.250000,0,0);}
.m84_c00217{transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);}
.m16_c00217{transform:matrix(0.279657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279657,0.000000,0.000000,0.250000,0,0);}
.m7_c00217{transform:matrix(0.279794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279794,0.000000,0.000000,0.250000,0,0);}
.m61_c00217{transform:matrix(0.280240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280240,0.000000,0.000000,0.250000,0,0);}
.m7e_c00217{transform:matrix(0.280356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280356,0.000000,0.000000,0.250000,0,0);}
.m5_c00217{transform:matrix(0.281266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281266,0.000000,0.000000,0.250000,0,0);}
.m1a_c00217{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.maa_c00217{transform:matrix(0.282317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282317,0.000000,0.000000,0.250000,0,0);}
.m10_c00217{transform:matrix(0.283330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283330,0.000000,0.000000,0.250000,0,0);}
.m6b_c00217{transform:matrix(0.283476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283476,0.000000,0.000000,0.250000,0,0);}
.m55_c00217{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m52_c00217{transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);}
.m22_c00217{transform:matrix(0.284044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284044,0.000000,0.000000,0.250000,0,0);}
.m9_c00217{transform:matrix(0.284926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284926,0.000000,0.000000,0.250000,0,0);}
.m5e_c00217{transform:matrix(0.285047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285047,0.000000,0.000000,0.250000,0,0);}
.m37_c00217{transform:matrix(0.285569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285569,0.000000,0.000000,0.250000,0,0);}
.m44_c00217{transform:matrix(0.287283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287283,0.000000,0.000000,0.250000,0,0);}
.m90_c00217{transform:matrix(0.287540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287540,0.000000,0.000000,0.250000,0,0);}
.m7f_c00217{transform:matrix(0.288903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288903,0.000000,0.000000,0.250000,0,0);}
.m75_c00217{transform:matrix(0.288974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288974,0.000000,0.000000,0.250000,0,0);}
.m28_c00217{transform:matrix(0.289309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289309,0.000000,0.000000,0.250000,0,0);}
.ma1_c00217{transform:matrix(0.290583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290583,0.000000,0.000000,0.250000,0,0);}
.m3d_c00217{transform:matrix(0.290774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290774,0.000000,0.000000,0.250000,0,0);}
.m5a_c00217{transform:matrix(0.291185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291185,0.000000,0.000000,0.250000,0,0);}
.m57_c00217{transform:matrix(0.291407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291407,0.000000,0.000000,0.250000,0,0);}
.m1_c00217{transform:matrix(0.291458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291458,0.000000,0.000000,0.250000,0,0);}
.m6e_c00217{transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);}
.m19_c00217{transform:matrix(0.293214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293214,0.000000,0.000000,0.250000,0,0);}
.m56_c00217{transform:matrix(0.293394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293394,0.000000,0.000000,0.250000,0,0);}
.m3a_c00217{transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);}
.m45_c00217{transform:matrix(0.293847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293847,0.000000,0.000000,0.250000,0,0);}
.m23_c00217{transform:matrix(0.294549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294549,0.000000,0.000000,0.250000,0,0);}
.m46_c00217{transform:matrix(0.294932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294932,0.000000,0.000000,0.250000,0,0);}
.m4_c00217{transform:matrix(0.294967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294967,0.000000,0.000000,0.250000,0,0);}
.m7d_c00217{transform:matrix(0.295029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295029,0.000000,0.000000,0.250000,0,0);}
.m18_c00217{transform:matrix(0.295306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295306,0.000000,0.000000,0.250000,0,0);}
.m2e_c00217{transform:matrix(0.296222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296222,0.000000,0.000000,0.250000,0,0);}
.m72_c00217{transform:matrix(0.296383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296383,0.000000,0.000000,0.250000,0,0);}
.m87_c00217{transform:matrix(0.296886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296886,0.000000,0.000000,0.250000,0,0);}
.m82_c00217{transform:matrix(0.297216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297216,0.000000,0.000000,0.250000,0,0);}
.m7a_c00217{transform:matrix(0.297218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297218,0.000000,0.000000,0.250000,0,0);}
.m4d_c00217{transform:matrix(0.297493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297493,0.000000,0.000000,0.250000,0,0);}
.mad_c00217{transform:matrix(0.297589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297589,0.000000,0.000000,0.250000,0,0);}
.m36_c00217{transform:matrix(0.299200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299200,0.000000,0.000000,0.250000,0,0);}
.m32_c00217{transform:matrix(0.299566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299566,0.000000,0.000000,0.250000,0,0);}
.m35_c00217{transform:matrix(0.300052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300052,0.000000,0.000000,0.250000,0,0);}
.m24_c00217{transform:matrix(0.300063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300063,0.000000,0.000000,0.250000,0,0);}
.m8c_c00217{transform:matrix(0.300415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300415,0.000000,0.000000,0.250000,0,0);}
.m39_c00217{transform:matrix(0.300859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300859,0.000000,0.000000,0.250000,0,0);}
.m68_c00217{transform:matrix(0.301074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301074,0.000000,0.000000,0.250000,0,0);}
.me_c00217{transform:matrix(0.301771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301771,0.000000,0.000000,0.250000,0,0);}
.m31_c00217{transform:matrix(0.302966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302966,0.000000,0.000000,0.250000,0,0);}
.m3f_c00217{transform:matrix(0.303150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303150,0.000000,0.000000,0.250000,0,0);}
.ma2_c00217{transform:matrix(0.303254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303254,0.000000,0.000000,0.250000,0,0);}
.m49_c00217{transform:matrix(0.303475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303475,0.000000,0.000000,0.250000,0,0);}
.m94_c00217{transform:matrix(0.303625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303625,0.000000,0.000000,0.250000,0,0);}
.m9d_c00217{transform:matrix(0.304119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304119,0.000000,0.000000,0.250000,0,0);}
.m9f_c00217{transform:matrix(0.305065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305065,0.000000,0.000000,0.250000,0,0);}
.m91_c00217{transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);}
.m63_c00217{transform:matrix(0.305187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305187,0.000000,0.000000,0.250000,0,0);}
.m89_c00217{transform:matrix(0.305482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305482,0.000000,0.000000,0.250000,0,0);}
.m58_c00217{transform:matrix(0.305891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305891,0.000000,0.000000,0.250000,0,0);}
.m13_c00217{transform:matrix(0.306092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306092,0.000000,0.000000,0.250000,0,0);}
.maf_c00217{transform:matrix(0.306639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306639,0.000000,0.000000,0.250000,0,0);}
.m98_c00217{transform:matrix(0.307269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307269,0.000000,0.000000,0.250000,0,0);}
.m70_c00217{transform:matrix(0.307729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307729,0.000000,0.000000,0.250000,0,0);}
.ma4_c00217{transform:matrix(0.309027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309027,0.000000,0.000000,0.250000,0,0);}
.m8f_c00217{transform:matrix(0.309104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309104,0.000000,0.000000,0.250000,0,0);}
.m9e_c00217{transform:matrix(0.309369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309369,0.000000,0.000000,0.250000,0,0);}
.m76_c00217{transform:matrix(0.309647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309647,0.000000,0.000000,0.250000,0,0);}
.m1b_c00217{transform:matrix(0.311002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311002,0.000000,0.000000,0.250000,0,0);}
.m51_c00217{transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);}
.m4b_c00217{transform:matrix(0.313415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313415,0.000000,0.000000,0.250000,0,0);}
.m8b_c00217{transform:matrix(0.314723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314723,0.000000,0.000000,0.250000,0,0);}
.m21_c00217{transform:matrix(0.315262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315262,0.000000,0.000000,0.250000,0,0);}
.m96_c00217{transform:matrix(0.318892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318892,0.000000,0.000000,0.250000,0,0);}
.ma9_c00217{transform:matrix(0.320042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320042,0.000000,0.000000,0.250000,0,0);}
.m34_c00217{transform:matrix(0.320919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320919,0.000000,0.000000,0.250000,0,0);}
.m53_c00217{transform:matrix(0.322595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322595,0.000000,0.000000,0.250000,0,0);}
.m69_c00217{transform:matrix(0.322941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322941,0.000000,0.000000,0.250000,0,0);}
.m62_c00217{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.m6c_c00217{transform:matrix(0.324414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324414,0.000000,0.000000,0.250000,0,0);}
.m95_c00217{transform:matrix(0.324518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324518,0.000000,0.000000,0.250000,0,0);}
.m60_c00217{transform:matrix(0.324784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324784,0.000000,0.000000,0.250000,0,0);}
.m3_c00217{transform:matrix(0.325213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325213,0.000000,0.000000,0.250000,0,0);}
.m7c_c00217{transform:matrix(0.325525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325525,0.000000,0.000000,0.250000,0,0);}
.m5d_c00217{transform:matrix(0.326848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326848,0.000000,0.000000,0.250000,0,0);}
.m1e_c00217{transform:matrix(0.326904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326904,0.000000,0.000000,0.250000,0,0);}
.m4c_c00217{transform:matrix(0.327038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327038,0.000000,0.000000,0.250000,0,0);}
.m2b_c00217{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m80_c00217{transform:matrix(0.329178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329178,0.000000,0.000000,0.250000,0,0);}
.ma3_c00217{transform:matrix(0.329679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329679,0.000000,0.000000,0.250000,0,0);}
.m9b_c00217{transform:matrix(0.330299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330299,0.000000,0.000000,0.250000,0,0);}
.m8d_c00217{transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);}
.m4e_c00217{transform:matrix(0.331020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331020,0.000000,0.000000,0.250000,0,0);}
.m4f_c00217{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m33_c00217{transform:matrix(0.333358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333358,0.000000,0.000000,0.250000,0,0);}
.m64_c00217{transform:matrix(0.336393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336393,0.000000,0.000000,0.250000,0,0);}
.m3c_c00217{transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);}
.mf_c00217{transform:matrix(0.339489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339489,0.000000,0.000000,0.250000,0,0);}
.mae_c00217{transform:matrix(0.341019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341019,0.000000,0.000000,0.250000,0,0);}
.m17_c00217{transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);}
.m3b_c00217{transform:matrix(0.347807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347807,0.000000,0.000000,0.250000,0,0);}
.ma0_c00217{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m6d_c00217{transform:matrix(0.351485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351485,0.000000,0.000000,0.250000,0,0);}
.m12_c00217{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m6_c00217{transform:matrix(0.359212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359212,0.000000,0.000000,0.250000,0,0);}
.m2d_c00217{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);}
.m26_c00217{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m43_c00217{transform:matrix(0.364737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364737,0.000000,0.000000,0.250000,0,0);}
.m1c_c00217{transform:matrix(0.365874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365874,0.000000,0.000000,0.250000,0,0);}
.ma_c00217{transform:matrix(0.368506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368506,0.000000,0.000000,0.250000,0,0);}
.m1d_c00217{transform:matrix(0.371753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371753,0.000000,0.000000,0.250000,0,0);}
.m99_c00217{transform:matrix(0.374773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374773,0.000000,0.000000,0.250000,0,0);}
.m29_c00217{transform:matrix(0.375491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375491,0.000000,0.000000,0.250000,0,0);}
.m83_c00217{transform:matrix(0.396487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396487,0.000000,0.000000,0.250000,0,0);}
.m92_c00217{transform:matrix(0.397003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397003,0.000000,0.000000,0.250000,0,0);}
.m97_c00217{transform:matrix(0.440068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440068,0.000000,0.000000,0.250000,0,0);}
.v2_c00217{vertical-align:-8.553600px;}
.v1_c00217{vertical-align:-5.682600px;}
.v0_c00217{vertical-align:0.000000px;}
.lsa_c00217{letter-spacing:-2.744280px;}
.lse_c00217{letter-spacing:-1.897474px;}
.ls3_c00217{letter-spacing:0.000000px;}
.ls1_c00217{letter-spacing:0.705672px;}
.ls2_c00217{letter-spacing:1.042826px;}
.lsb_c00217{letter-spacing:1.207483px;}
.lsf_c00217{letter-spacing:1.842588px;}
.ls8_c00217{letter-spacing:1.991563px;}
.ls9_c00217{letter-spacing:2.367922px;}
.lsd_c00217{letter-spacing:2.744280px;}
.ls7_c00217{letter-spacing:3.128479px;}
.lsc_c00217{letter-spacing:3.246091px;}
.ls6_c00217{letter-spacing:3.544200px;}
.ls4_c00217{letter-spacing:3.682810px;}
.ls5_c00217{letter-spacing:3.920400px;}
.ls0_c00217{letter-spacing:9.408960px;}
.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;}
}
.ws2_c00217{word-spacing:-22.848091px;}
.ws5_c00217{word-spacing:-21.444588px;}
.ws0_c00217{word-spacing:-19.602000px;}
.ws4_c00217{word-spacing:-1.097712px;}
.ws7_c00217{word-spacing:0.000000px;}
.ws1_c00217{word-spacing:1.411344px;}
.ws6_c00217{word-spacing:2.665872px;}
.ws3_c00217{word-spacing:3.998808px;}
._1b_c00217{margin-left:-15.838416px;}
._0_c00217{margin-left:-13.956624px;}
._11_c00217{margin-left:-10.193040px;}
._16_c00217{margin-left:-8.781696px;}
._17_c00217{margin-left:-2.195424px;}
._14_c00217{width:2.979504px;}
._4_c00217{width:4.861296px;}
._e_c00217{width:6.680362px;}
._3_c00217{width:7.840800px;}
._f_c00217{width:9.173736px;}
._d_c00217{width:10.506672px;}
._12_c00217{width:15.132744px;}
._15_c00217{width:17.249760px;}
._b_c00217{width:20.855736px;}
._8_c00217{width:22.267872px;}
._2_c00217{width:23.679216px;}
._9_c00217{width:25.325784px;}
._7_c00217{width:27.521208px;}
._c_c00217{width:28.775736px;}
._13_c00217{width:30.187080px;}
._6_c00217{width:32.382504px;}
._10_c00217{width:35.126784px;}
._a_c00217{width:36.208260px;}
._1_c00217{width:37.635840px;}
._5_c00217{width:38.929176px;}
._18_c00217{width:43.594848px;}
._19_c00217{width:220.676792px;}
._1a_c00217{width:567.091800px;}
._1c_c00217{width:2000.644272px;}
.fc0_c00217{color:transparent;}
.fsa_c00217{font-size:5.742198px;}
.fs9_c00217{font-size:8.712198px;}
.fs1_c00217{font-size:11.682198px;}
.fs0_c00217{font-size:14.454198px;}
.fs8_c00217{font-size:17.424000px;}
.fs10_c00217{font-size:22.176000px;}
.fse_c00217{font-size:24.948000px;}
.fs5_c00217{font-size:25.146000px;}
.fsf_c00217{font-size:27.720000px;}
.fs11_c00217{font-size:36.828000px;}
.fs4_c00217{font-size:60.984000px;}
.fs7_c00217{font-size:66.330000px;}
.fsb_c00217{font-size:68.706198px;}
.fs6_c00217{font-size:70.884000px;}
.fsc_c00217{font-size:72.864000px;}
.fs2_c00217{font-size:73.656198px;}
.fs3_c00217{font-size:78.408000px;}
.fs12_c00217{font-size:79.200000px;}
.fsd_c00217{font-size:79.398000px;}
.y0_c00217{bottom:0.000000px;}
.y29_c00217{bottom:29.131785px;}
.y28_c00217{bottom:37.685385px;}
.y27_c00217{bottom:64.063935px;}
.y1_c00217{bottom:76.500000px;}
.y2b_c00217{bottom:94.352985px;}
.y26_c00217{bottom:113.603535px;}
.y25_c00217{bottom:124.295535px;}
.y24_c00217{bottom:157.440735px;}
.y23_c00217{bottom:191.293785px;}
.y22_c00217{bottom:221.231385px;}
.y21_c00217{bottom:254.020185px;}
.y20_c00217{bottom:278.973135px;}
.y1f_c00217{bottom:286.457535px;}
.y1e_c00217{bottom:302.490585px;}
.y1d_c00217{bottom:317.820735px;}
.y1c_c00217{bottom:350.253135px;}
.y1b_c00217{bottom:350.260263px;}
.y1a_c00217{bottom:382.329135px;}
.y19_c00217{bottom:414.400185px;}
.y18_c00217{bottom:446.837535px;}
.y17_c00217{bottom:478.200735px;}
.y16_c00217{bottom:510.633135px;}
.y15_c00217{bottom:528.096735px;}
.y14_c00217{bottom:533.081385px;}
.y13_c00217{bottom:563.018985px;}
.y12_c00217{bottom:575.136585px;}
.y2_c00217{bottom:594.382185px;}
.y11_c00217{bottom:607.217535px;}
.y10_c00217{bottom:638.932185px;}
.yf_c00217{bottom:671.013135px;}
.ye_c00217{bottom:703.445535px;}
.yd_c00217{bottom:735.877935px;}
.yc_c00217{bottom:768.305385px;}
.yb_c00217{bottom:768.312315px;}
.ya_c00217{bottom:801.811935px;}
.y9_c00217{bottom:834.244335px;}
.y8_c00217{bottom:851.346585px;}
.y7_c00217{bottom:864.533385px;}
.y6_c00217{bottom:898.391385px;}
.y2a_c00217{bottom:899.104185px;}
.y5_c00217{bottom:931.180185px;}
.y4_c00217{bottom:1076.947785px;}
.y3_c00217{bottom:1080.155385px;}
.hb_c00217{height:5.635653px;}
.ha_c00217{height:8.550546px;}
.h3_c00217{height:11.465438px;}
.h2_c00217{height:14.186005px;}
.h9_c00217{height:17.100703px;}
.hf_c00217{height:23.128875px;}
.hd_c00217{height:26.019984px;}
.h7_c00217{height:26.226492px;}
.he_c00217{height:28.911094px;}
.h10_c00217{height:38.410453px;}
.h6_c00217{height:63.604406px;}
.h8_c00217{height:69.568770px;}
.h4_c00217{height:72.289530px;}
.h5_c00217{height:76.953164px;}
.hc_c00217{height:77.924795px;}
.h11_c00217{height:82.603125px;}
.h1_c00217{height:1110.000000px;}
.h0_c00217{height:1263.000000px;}
.w1_c00217{width:751.500000px;}
.w0_c00217{width:892.500000px;}
.x0_c00217{left:0.000000px;}
.x2_c00217{left:45.510735px;}
.x69_c00217{left:58.648035px;}
.x5a_c00217{left:60.147885px;}
.x2a_c00217{left:67.089171px;}
.x5_c00217{left:68.152035px;}
.x1_c00217{left:70.500000px;}
.x3a_c00217{left:89.531085px;}
.x2b_c00217{left:99.742935px;}
.x5e_c00217{left:100.970535px;}
.x6_c00217{left:112.320885px;}
.x52_c00217{left:121.711035px;}
.x17_c00217{left:123.131685px;}
.x14_c00217{left:125.463135px;}
.x32_c00217{left:134.412735px;}
.x7_c00217{left:143.857335px;}
.x5b_c00217{left:145.005735px;}
.x18_c00217{left:155.425485px;}
.x3b_c00217{left:165.290835px;}
.x33_c00217{left:167.152035px;}
.x45_c00217{left:177.571785px;}
.x53_c00217{left:178.621185px;}
.x57_c00217{left:180.363585px;}
.x8_c00217{left:188.941935px;}
.x34_c00217{left:199.534935px;}
.x35_c00217{left:211.400085px;}
.x21_c00217{left:221.701035px;}
.x3c_c00217{left:232.680135px;}
.x42_c00217{left:233.838435px;}
.x9_c00217{left:244.565085px;}
.x63_c00217{left:247.940985px;}
.x5d_c00217{left:254.390835px;}
.xa_c00217{left:255.415485px;}
.x60_c00217{left:257.029185px;}
.x46_c00217{left:258.425085px;}
.x22_c00217{left:265.082835px;}
.x54_c00217{left:266.617335px;}
.x36_c00217{left:267.721185px;}
.x3d_c00217{left:277.744935px;}
.xb_c00217{left:287.922135px;}
.x23_c00217{left:300.460485px;}
.x47_c00217{left:303.064185px;}
.x19_c00217{left:310.484235px;}
.x37_c00217{left:321.908835px;}
.x4d_c00217{left:322.943385px;}
.x3_c00217{left:325.651035px;}
.x2c_c00217{left:332.986935px;}
.xc_c00217{left:343.817535px;}
.x48_c00217{left:345.406485px;}
.x65_c00217{left:354.182835px;}
.x24_c00217{left:355.722285px;}
.x2d_c00217{left:366.097485px;}
.x5f_c00217{left:376.636035px;}
.xd_c00217{left:377.670585px;}
.x1a_c00217{left:387.595335px;}
.x4c_c00217{left:389.540685px;}
.x25_c00217{left:399.366435px;}
.x49_c00217{left:400.603935px;}
.x38_c00217{left:402.153285px;}
.x3e_c00217{left:410.439585px;}
.x4e_c00217{left:413.434335px;}
.x43_c00217{left:421.468185px;}
.x1b_c00217{left:433.432335px;}
.x2e_c00217{left:443.436285px;}
.x1c_c00217{left:454.499535px;}
.x55_c00217{left:455.553885px;}
.x4a_c00217{left:464.983635px;}
.x1d_c00217{left:466.582485px;}
.xe_c00217{left:477.081435px;}
.x66_c00217{left:478.294185px;}
.x3f_c00217{left:488.694135px;}
.x1e_c00217{left:498.777285px;}
.xf_c00217{left:511.127535px;}
.x26_c00217{left:521.497785px;}
.x61_c00217{left:531.313635px;}
.x39_c00217{left:532.496685px;}
.x50_c00217{left:537.694185px;}
.x10_c00217{left:543.926235px;}
.x2f_c00217{left:553.796535px;}
.x5c_c00217{left:555.682485px;}
.x27_c00217{left:564.057885px;}
.x30_c00217{left:565.993335px;}
.x4b_c00217{left:576.452685px;}
.x64_c00217{left:582.259035px;}
.x44_c00217{left:587.421885px;}
.x62_c00217{left:588.619785px;}
.x1f_c00217{left:598.752435px;}
.x11_c00217{left:609.884985px;}
.x40_c00217{left:620.443335px;}
.x20_c00217{left:631.615485px;}
.x12_c00217{left:633.021285px;}
.x28_c00217{left:642.653985px;}
.x56_c00217{left:645.826935px;}
.x4_c00217{left:654.019185px;}
.x58_c00217{left:655.415085px;}
.x51_c00217{left:660.315585px;}
.x13_c00217{left:665.240835px;}
.x31_c00217{left:675.754635px;}
.x59_c00217{left:686.585235px;}
.x6a_c00217{left:692.248035px;}
.x68_c00217{left:693.371685px;}
.x67_c00217{left:694.440885px;}
.x4f_c00217{left:695.584335px;}
.x15_c00217{left:698.940435px;}
.x16_c00217{left:700.435335px;}
.x41_c00217{left:709.280985px;}
.x29_c00217{left:719.972985px;}
.x6b_c00217{left:741.569835px;}
.x6c_c00217{left:750.469935px;}
@media print{
.v2_c00217{vertical-align:-7.603200pt;}
.v1_c00217{vertical-align:-5.051200pt;}
.v0_c00217{vertical-align:0.000000pt;}
.lsa_c00217{letter-spacing:-2.439360pt;}
.lse_c00217{letter-spacing:-1.686643pt;}
.ls3_c00217{letter-spacing:0.000000pt;}
.ls1_c00217{letter-spacing:0.627264pt;}
.ls2_c00217{letter-spacing:0.926957pt;}
.lsb_c00217{letter-spacing:1.073318pt;}
.lsf_c00217{letter-spacing:1.637856pt;}
.ls8_c00217{letter-spacing:1.770278pt;}
.ls9_c00217{letter-spacing:2.104819pt;}
.lsd_c00217{letter-spacing:2.439360pt;}
.ls7_c00217{letter-spacing:2.780870pt;}
.lsc_c00217{letter-spacing:2.885414pt;}
.ls6_c00217{letter-spacing:3.150400pt;}
.ls4_c00217{letter-spacing:3.273609pt;}
.ls5_c00217{letter-spacing:3.484800pt;}
.ls0_c00217{letter-spacing:8.363520pt;}
.ws2_c00217{word-spacing:-20.309414pt;}
.ws5_c00217{word-spacing:-19.061856pt;}
.ws0_c00217{word-spacing:-17.424000pt;}
.ws4_c00217{word-spacing:-0.975744pt;}
.ws7_c00217{word-spacing:0.000000pt;}
.ws1_c00217{word-spacing:1.254528pt;}
.ws6_c00217{word-spacing:2.369664pt;}
.ws3_c00217{word-spacing:3.554496pt;}
._1b_c00217{margin-left:-14.078592pt;}
._0_c00217{margin-left:-12.405888pt;}
._11_c00217{margin-left:-9.060480pt;}
._16_c00217{margin-left:-7.805952pt;}
._17_c00217{margin-left:-1.951488pt;}
._14_c00217{width:2.648448pt;}
._4_c00217{width:4.321152pt;}
._e_c00217{width:5.938099pt;}
._3_c00217{width:6.969600pt;}
._f_c00217{width:8.154432pt;}
._d_c00217{width:9.339264pt;}
._12_c00217{width:13.451328pt;}
._15_c00217{width:15.333120pt;}
._b_c00217{width:18.538432pt;}
._8_c00217{width:19.793664pt;}
._2_c00217{width:21.048192pt;}
._9_c00217{width:22.511808pt;}
._7_c00217{width:24.463296pt;}
._c_c00217{width:25.578432pt;}
._13_c00217{width:26.832960pt;}
._6_c00217{width:28.784448pt;}
._10_c00217{width:31.223808pt;}
._a_c00217{width:32.185120pt;}
._1_c00217{width:33.454080pt;}
._5_c00217{width:34.603712pt;}
._18_c00217{width:38.750976pt;}
._19_c00217{width:196.157148pt;}
._1a_c00217{width:504.081600pt;}
._1c_c00217{width:1778.350464pt;}
.fsa_c00217{font-size:5.104176pt;}
.fs9_c00217{font-size:7.744176pt;}
.fs1_c00217{font-size:10.384176pt;}
.fs0_c00217{font-size:12.848176pt;}
.fs8_c00217{font-size:15.488000pt;}
.fs10_c00217{font-size:19.712000pt;}
.fse_c00217{font-size:22.176000pt;}
.fs5_c00217{font-size:22.352000pt;}
.fsf_c00217{font-size:24.640000pt;}
.fs11_c00217{font-size:32.736000pt;}
.fs4_c00217{font-size:54.208000pt;}
.fs7_c00217{font-size:58.960000pt;}
.fsb_c00217{font-size:61.072176pt;}
.fs6_c00217{font-size:63.008000pt;}
.fsc_c00217{font-size:64.768000pt;}
.fs2_c00217{font-size:65.472176pt;}
.fs3_c00217{font-size:69.696000pt;}
.fs12_c00217{font-size:70.400000pt;}
.fsd_c00217{font-size:70.576000pt;}
.y0_c00217{bottom:0.000000pt;}
.y29_c00217{bottom:25.894920pt;}
.y28_c00217{bottom:33.498120pt;}
.y27_c00217{bottom:56.945720pt;}
.y1_c00217{bottom:68.000000pt;}
.y2b_c00217{bottom:83.869320pt;}
.y26_c00217{bottom:100.980920pt;}
.y25_c00217{bottom:110.484920pt;}
.y24_c00217{bottom:139.947320pt;}
.y23_c00217{bottom:170.038920pt;}
.y22_c00217{bottom:196.650120pt;}
.y21_c00217{bottom:225.795720pt;}
.y20_c00217{bottom:247.976120pt;}
.y1f_c00217{bottom:254.628920pt;}
.y1e_c00217{bottom:268.880520pt;}
.y1d_c00217{bottom:282.507320pt;}
.y1c_c00217{bottom:311.336120pt;}
.y1b_c00217{bottom:311.342456pt;}
.y1a_c00217{bottom:339.848120pt;}
.y19_c00217{bottom:368.355720pt;}
.y18_c00217{bottom:397.188920pt;}
.y17_c00217{bottom:425.067320pt;}
.y16_c00217{bottom:453.896120pt;}
.y15_c00217{bottom:469.419320pt;}
.y14_c00217{bottom:473.850120pt;}
.y13_c00217{bottom:500.461320pt;}
.y12_c00217{bottom:511.232520pt;}
.y2_c00217{bottom:528.339720pt;}
.y11_c00217{bottom:539.748920pt;}
.y10_c00217{bottom:567.939720pt;}
.yf_c00217{bottom:596.456120pt;}
.ye_c00217{bottom:625.284920pt;}
.yd_c00217{bottom:654.113720pt;}
.yc_c00217{bottom:682.938120pt;}
.yb_c00217{bottom:682.944280pt;}
.ya_c00217{bottom:712.721720pt;}
.y9_c00217{bottom:741.550520pt;}
.y8_c00217{bottom:756.752520pt;}
.y7_c00217{bottom:768.474120pt;}
.y6_c00217{bottom:798.570120pt;}
.y2a_c00217{bottom:799.203720pt;}
.y5_c00217{bottom:827.715720pt;}
.y4_c00217{bottom:957.286920pt;}
.y3_c00217{bottom:960.138120pt;}
.hb_c00217{height:5.009470pt;}
.ha_c00217{height:7.600485pt;}
.h3_c00217{height:10.191501pt;}
.h2_c00217{height:12.609782pt;}
.h9_c00217{height:15.200625pt;}
.hf_c00217{height:20.559000pt;}
.hd_c00217{height:23.128875pt;}
.h7_c00217{height:23.312438pt;}
.he_c00217{height:25.698750pt;}
.h10_c00217{height:34.142625pt;}
.h6_c00217{height:56.537250pt;}
.h8_c00217{height:61.838906pt;}
.h4_c00217{height:64.257360pt;}
.h5_c00217{height:68.402813pt;}
.hc_c00217{height:69.266484pt;}
.h11_c00217{height:73.425000pt;}
.h1_c00217{height:986.666667pt;}
.h0_c00217{height:1122.666667pt;}
.w1_c00217{width:668.000000pt;}
.w0_c00217{width:793.333333pt;}
.x0_c00217{left:0.000000pt;}
.x2_c00217{left:40.453987pt;}
.x69_c00217{left:52.131587pt;}
.x5a_c00217{left:53.464787pt;}
.x2a_c00217{left:59.634819pt;}
.x5_c00217{left:60.579587pt;}
.x1_c00217{left:62.666667pt;}
.x3a_c00217{left:79.583187pt;}
.x2b_c00217{left:88.660387pt;}
.x5e_c00217{left:89.751587pt;}
.x6_c00217{left:99.840787pt;}
.x52_c00217{left:108.187587pt;}
.x17_c00217{left:109.450387pt;}
.x14_c00217{left:111.522787pt;}
.x32_c00217{left:119.477987pt;}
.x7_c00217{left:127.873187pt;}
.x5b_c00217{left:128.893987pt;}
.x18_c00217{left:138.155987pt;}
.x3b_c00217{left:146.925187pt;}
.x33_c00217{left:148.579587pt;}
.x45_c00217{left:157.841587pt;}
.x53_c00217{left:158.774387pt;}
.x57_c00217{left:160.323187pt;}
.x8_c00217{left:167.948387pt;}
.x34_c00217{left:177.364387pt;}
.x35_c00217{left:187.911187pt;}
.x21_c00217{left:197.067587pt;}
.x3c_c00217{left:206.826787pt;}
.x42_c00217{left:207.856387pt;}
.x9_c00217{left:217.391187pt;}
.x63_c00217{left:220.391987pt;}
.x5d_c00217{left:226.125187pt;}
.xa_c00217{left:227.035987pt;}
.x60_c00217{left:228.470387pt;}
.x46_c00217{left:229.711187pt;}
.x22_c00217{left:235.629187pt;}
.x54_c00217{left:236.993187pt;}
.x36_c00217{left:237.974387pt;}
.x3d_c00217{left:246.884387pt;}
.xb_c00217{left:255.930787pt;}
.x23_c00217{left:267.075987pt;}
.x47_c00217{left:269.390387pt;}
.x19_c00217{left:275.985987pt;}
.x37_c00217{left:286.141187pt;}
.x4d_c00217{left:287.060787pt;}
.x3_c00217{left:289.467587pt;}
.x2c_c00217{left:295.988387pt;}
.xc_c00217{left:305.615587pt;}
.x48_c00217{left:307.027987pt;}
.x65_c00217{left:314.829187pt;}
.x24_c00217{left:316.197587pt;}
.x2d_c00217{left:325.419987pt;}
.x5f_c00217{left:334.787587pt;}
.xd_c00217{left:335.707187pt;}
.x1a_c00217{left:344.529187pt;}
.x4c_c00217{left:346.258387pt;}
.x25_c00217{left:354.992387pt;}
.x49_c00217{left:356.092387pt;}
.x38_c00217{left:357.469587pt;}
.x3e_c00217{left:364.835187pt;}
.x4e_c00217{left:367.497187pt;}
.x43_c00217{left:374.638387pt;}
.x1b_c00217{left:385.273187pt;}
.x2e_c00217{left:394.165587pt;}
.x1c_c00217{left:403.999587pt;}
.x55_c00217{left:404.936787pt;}
.x4a_c00217{left:413.318787pt;}
.x1d_c00217{left:414.739987pt;}
.xe_c00217{left:424.072387pt;}
.x66_c00217{left:425.150387pt;}
.x3f_c00217{left:434.394787pt;}
.x1e_c00217{left:443.357587pt;}
.xf_c00217{left:454.335587pt;}
.x26_c00217{left:463.553587pt;}
.x61_c00217{left:472.278787pt;}
.x39_c00217{left:473.330387pt;}
.x50_c00217{left:477.950387pt;}
.x10_c00217{left:483.489987pt;}
.x2f_c00217{left:492.263587pt;}
.x5c_c00217{left:493.939987pt;}
.x27_c00217{left:501.384787pt;}
.x30_c00217{left:503.105187pt;}
.x4b_c00217{left:512.402387pt;}
.x64_c00217{left:517.563587pt;}
.x44_c00217{left:522.152787pt;}
.x62_c00217{left:523.217587pt;}
.x1f_c00217{left:532.224387pt;}
.x11_c00217{left:542.119987pt;}
.x40_c00217{left:551.505187pt;}
.x20_c00217{left:561.435987pt;}
.x12_c00217{left:562.685587pt;}
.x28_c00217{left:571.247987pt;}
.x56_c00217{left:574.068387pt;}
.x4_c00217{left:581.350387pt;}
.x58_c00217{left:582.591187pt;}
.x51_c00217{left:586.947187pt;}
.x13_c00217{left:591.325187pt;}
.x31_c00217{left:600.670787pt;}
.x59_c00217{left:610.297987pt;}
.x6a_c00217{left:615.331587pt;}
.x68_c00217{left:616.330387pt;}
.x67_c00217{left:617.280787pt;}
.x4f_c00217{left:618.297187pt;}
.x15_c00217{left:621.280387pt;}
.x16_c00217{left:622.609187pt;}
.x41_c00217{left:630.471987pt;}
.x29_c00217{left:639.975987pt;}
.x6b_c00217{left:659.173187pt;}
.x6c_c00217{left:667.084387pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e48651903ba8aaf41bc89e44.woff2')format("woff");}.ff1_c00218{font-family:ff1_c00218;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00218;src:url('chunks/assets/font_36a805108a9be65101724ad8.woff2')format("woff");}.ff2_c00218{font-family:ff2_c00218;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00218;src:url('chunks/assets/font_a86077805950b59d5f9c96d8.woff2')format("woff");}.ff3_c00218{font-family:ff3_c00218;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00218;src:url('chunks/assets/font_91872e6d5c5ffe63500a361a.woff2')format("woff");}.ff4_c00218{font-family:ff4_c00218;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00218;src:url('chunks/assets/font_a9788d670cf47b5b4d5321b5.woff2')format("woff");}.ff5_c00218{font-family:ff5_c00218;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m7_c00218{transform:matrix(0.046429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.046429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.046429,0.000000,0.000000,0.250000,0,0);}
.mba_c00218{transform:matrix(0.073530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073530,0.000000,0.000000,0.250000,0,0);}
.m8_c00218{transform:matrix(0.078572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078572,0.000000,0.000000,0.250000,0,0);}
.mb7_c00218{transform:matrix(0.121323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121323,0.000000,0.000000,0.250000,0,0);}
.mb9_c00218{transform:matrix(0.150735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150735,0.000000,0.000000,0.250000,0,0);}
.m7b_c00218{transform:matrix(0.152443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152443,0.000000,0.000000,0.250000,0,0);}
.m86_c00218{transform:matrix(0.158537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158537,0.000000,0.000000,0.250000,0,0);}
.mb5_c00218{transform:matrix(0.174999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174999,0.000000,0.000000,0.250000,0,0);}
.mb8_c00218{transform:matrix(0.176471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176471,0.000000,0.000000,0.250000,0,0);}
.m9_c00218{transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);}
.mbc_c00218{transform:matrix(0.180147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180147,0.000000,0.000000,0.250000,0,0);}
.m2b_c00218{transform:matrix(0.180508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180508,0.000000,0.000000,0.250000,0,0);}
.mbb_c00218{transform:matrix(0.183823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183823,0.000000,0.000000,0.250000,0,0);}
.m85_c00218{transform:matrix(0.190244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190244,0.000000,0.000000,0.250000,0,0);}
.m6_c00218{transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);}
.ma_c00218{transform:matrix(0.203572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203572,0.000000,0.000000,0.250000,0,0);}
.mb6_c00218{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);}
.mb4_c00218{transform:matrix(0.220587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220587,0.000000,0.000000,0.250000,0,0);}
.m73_c00218{transform:matrix(0.228919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228919,0.000000,0.000000,0.250000,0,0);}
.m81_c00218{transform:matrix(0.238513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238513,0.000000,0.000000,0.250000,0,0);}
.m8b_c00218{transform:matrix(0.242306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242306,0.000000,0.000000,0.250000,0,0);}
.m1_c00218{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m67_c00218{transform:matrix(0.250809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250809,0.000000,0.000000,0.250000,0,0);}
.maf_c00218{transform:matrix(0.251277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251277,0.000000,0.000000,0.250000,0,0);}
.m14_c00218{transform:matrix(0.251415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251415,0.000000,0.000000,0.250000,0,0);}
.mcf_c00218{transform:matrix(0.252405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252405,0.000000,0.000000,0.250000,0,0);}
.me_c00218{transform:matrix(0.253545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253545,0.000000,0.000000,0.250000,0,0);}
.m37_c00218{transform:matrix(0.254402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254402,0.000000,0.000000,0.250000,0,0);}
.ma7_c00218{transform:matrix(0.256057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256057,0.000000,0.000000,0.250000,0,0);}
.m13_c00218{transform:matrix(0.256334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256334,0.000000,0.000000,0.250000,0,0);}
.m66_c00218{transform:matrix(0.257757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257757,0.000000,0.000000,0.250000,0,0);}
.m88_c00218{transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);}
.m5b_c00218{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m25_c00218{transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);}
.m63_c00218{transform:matrix(0.259713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259713,0.000000,0.000000,0.250000,0,0);}
.mc1_c00218{transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);}
.m1b_c00218{transform:matrix(0.260756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260756,0.000000,0.000000,0.250000,0,0);}
.m4f_c00218{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m6f_c00218{transform:matrix(0.261386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261386,0.000000,0.000000,0.250000,0,0);}
.m24_c00218{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m94_c00218{transform:matrix(0.263305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263305,0.000000,0.000000,0.250000,0,0);}
.m76_c00218{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m1e_c00218{transform:matrix(0.264697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264697,0.000000,0.000000,0.250000,0,0);}
.m7e_c00218{transform:matrix(0.264768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264768,0.000000,0.000000,0.250000,0,0);}
.m80_c00218{transform:matrix(0.264911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264911,0.000000,0.000000,0.250000,0,0);}
.m71_c00218{transform:matrix(0.265600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265600,0.000000,0.000000,0.250000,0,0);}
.m9e_c00218{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m29_c00218{transform:matrix(0.266852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266852,0.000000,0.000000,0.250000,0,0);}
.m43_c00218{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m96_c00218{transform:matrix(0.268203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268203,0.000000,0.000000,0.250000,0,0);}
.mbe_c00218{transform:matrix(0.268361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268361,0.000000,0.000000,0.250000,0,0);}
.mc_c00218{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.mc0_c00218{transform:matrix(0.268624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268624,0.000000,0.000000,0.250000,0,0);}
.m45_c00218{transform:matrix(0.268643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268643,0.000000,0.000000,0.250000,0,0);}
.m4e_c00218{transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);}
.mc8_c00218{transform:matrix(0.269269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269269,0.000000,0.000000,0.250000,0,0);}
.m78_c00218{transform:matrix(0.271634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271634,0.000000,0.000000,0.250000,0,0);}
.m7a_c00218{transform:matrix(0.271709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271709,0.000000,0.000000,0.250000,0,0);}
.m48_c00218{transform:matrix(0.272123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272123,0.000000,0.000000,0.250000,0,0);}
.m4_c00218{transform:matrix(0.272499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272499,0.000000,0.000000,0.250000,0,0);}
.ma0_c00218{transform:matrix(0.273210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273210,0.000000,0.000000,0.250000,0,0);}
.md0_c00218{transform:matrix(0.273272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273272,0.000000,0.000000,0.250000,0,0);}
.m2_c00218{transform:matrix(0.273513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273513,0.000000,0.000000,0.250000,0,0);}
.m3d_c00218{transform:matrix(0.273640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273640,0.000000,0.000000,0.250000,0,0);}
.m0_c00218{transform:matrix(0.273795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273795,0.000000,0.000000,0.250000,0,0);}
.m5_c00218{transform:matrix(0.274205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274205,0.000000,0.000000,0.250000,0,0);}
.mcd_c00218{transform:matrix(0.274650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274650,0.000000,0.000000,0.250000,0,0);}
.mca_c00218{transform:matrix(0.274659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274659,0.000000,0.000000,0.250000,0,0);}
.m9f_c00218{transform:matrix(0.274708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274708,0.000000,0.000000,0.250000,0,0);}
.m68_c00218{transform:matrix(0.275355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275355,0.000000,0.000000,0.250000,0,0);}
.mb3_c00218{transform:matrix(0.275942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275942,0.000000,0.000000,0.250000,0,0);}
.m33_c00218{transform:matrix(0.276021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276021,0.000000,0.000000,0.250000,0,0);}
.m60_c00218{transform:matrix(0.276320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276320,0.000000,0.000000,0.250000,0,0);}
.m4c_c00218{transform:matrix(0.276748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276748,0.000000,0.000000,0.250000,0,0);}
.m8f_c00218{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m98_c00218{transform:matrix(0.277612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277612,0.000000,0.000000,0.250000,0,0);}
.mae_c00218{transform:matrix(0.278331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278331,0.000000,0.000000,0.250000,0,0);}
.md1_c00218{transform:matrix(0.278357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278357,0.000000,0.000000,0.250000,0,0);}
.m3b_c00218{transform:matrix(0.278681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278681,0.000000,0.000000,0.250000,0,0);}
.m3f_c00218{transform:matrix(0.278697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278697,0.000000,0.000000,0.250000,0,0);}
.mb_c00218{transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);}
.ma5_c00218{transform:matrix(0.279629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279629,0.000000,0.000000,0.250000,0,0);}
.m50_c00218{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.mad_c00218{transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);}
.ma3_c00218{transform:matrix(0.282846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282846,0.000000,0.000000,0.250000,0,0);}
.m99_c00218{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m6b_c00218{transform:matrix(0.283746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283746,0.000000,0.000000,0.250000,0,0);}
.mc9_c00218{transform:matrix(0.283819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283819,0.000000,0.000000,0.250000,0,0);}
.m9a_c00218{transform:matrix(0.283852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283852,0.000000,0.000000,0.250000,0,0);}
.m5e_c00218{transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);}
.m8d_c00218{transform:matrix(0.284987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284987,0.000000,0.000000,0.250000,0,0);}
.m21_c00218{transform:matrix(0.285021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285021,0.000000,0.000000,0.250000,0,0);}
.mab_c00218{transform:matrix(0.285061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285061,0.000000,0.000000,0.250000,0,0);}
.m22_c00218{transform:matrix(0.285083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285083,0.000000,0.000000,0.250000,0,0);}
.m9b_c00218{transform:matrix(0.286537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286537,0.000000,0.000000,0.250000,0,0);}
.m54_c00218{transform:matrix(0.286624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286624,0.000000,0.000000,0.250000,0,0);}
.m19_c00218{transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);}
.m52_c00218{transform:matrix(0.287124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287124,0.000000,0.000000,0.250000,0,0);}
.mb2_c00218{transform:matrix(0.287242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287242,0.000000,0.000000,0.250000,0,0);}
.m4a_c00218{transform:matrix(0.287254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287254,0.000000,0.000000,0.250000,0,0);}
.mb0_c00218{transform:matrix(0.287538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287538,0.000000,0.000000,0.250000,0,0);}
.m3c_c00218{transform:matrix(0.287771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287771,0.000000,0.000000,0.250000,0,0);}
.m6d_c00218{transform:matrix(0.288297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288297,0.000000,0.000000,0.250000,0,0);}
.m34_c00218{transform:matrix(0.288557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288557,0.000000,0.000000,0.250000,0,0);}
.m2a_c00218{transform:matrix(0.288939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288939,0.000000,0.000000,0.250000,0,0);}
.m97_c00218{transform:matrix(0.288973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288973,0.000000,0.000000,0.250000,0,0);}
.m2e_c00218{transform:matrix(0.289601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289601,0.000000,0.000000,0.250000,0,0);}
.m6e_c00218{transform:matrix(0.289894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289894,0.000000,0.000000,0.250000,0,0);}
.mc7_c00218{transform:matrix(0.289966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289966,0.000000,0.000000,0.250000,0,0);}
.m92_c00218{transform:matrix(0.290475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290475,0.000000,0.000000,0.250000,0,0);}
.m7c_c00218{transform:matrix(0.291021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291021,0.000000,0.000000,0.250000,0,0);}
.m42_c00218{transform:matrix(0.291719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291719,0.000000,0.000000,0.250000,0,0);}
.ma9_c00218{transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);}
.mbd_c00218{transform:matrix(0.291860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291860,0.000000,0.000000,0.250000,0,0);}
.m49_c00218{transform:matrix(0.292446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292446,0.000000,0.000000,0.250000,0,0);}
.m74_c00218{transform:matrix(0.292819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292819,0.000000,0.000000,0.250000,0,0);}
.m6c_c00218{transform:matrix(0.293185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293185,0.000000,0.000000,0.250000,0,0);}
.m72_c00218{transform:matrix(0.293273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293273,0.000000,0.000000,0.250000,0,0);}
.mc4_c00218{transform:matrix(0.293691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293691,0.000000,0.000000,0.250000,0,0);}
.m1d_c00218{transform:matrix(0.293940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293940,0.000000,0.000000,0.250000,0,0);}
.m10_c00218{transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);}
.m79_c00218{transform:matrix(0.295164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295164,0.000000,0.000000,0.250000,0,0);}
.m39_c00218{transform:matrix(0.295172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295172,0.000000,0.000000,0.250000,0,0);}
.m64_c00218{transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);}
.m8a_c00218{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.ma2_c00218{transform:matrix(0.298011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298011,0.000000,0.000000,0.250000,0,0);}
.m70_c00218{transform:matrix(0.298364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298364,0.000000,0.000000,0.250000,0,0);}
.m15_c00218{transform:matrix(0.299616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299616,0.000000,0.000000,0.250000,0,0);}
.m12_c00218{transform:matrix(0.299757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299757,0.000000,0.000000,0.250000,0,0);}
.m8e_c00218{transform:matrix(0.300614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300614,0.000000,0.000000,0.250000,0,0);}
.m9d_c00218{transform:matrix(0.300674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300674,0.000000,0.000000,0.250000,0,0);}
.m16_c00218{transform:matrix(0.301368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301368,0.000000,0.000000,0.250000,0,0);}
.mbf_c00218{transform:matrix(0.301409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301409,0.000000,0.000000,0.250000,0,0);}
.m36_c00218{transform:matrix(0.302359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302359,0.000000,0.000000,0.250000,0,0);}
.m6a_c00218{transform:matrix(0.303298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303298,0.000000,0.000000,0.250000,0,0);}
.maa_c00218{transform:matrix(0.303509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303509,0.000000,0.000000,0.250000,0,0);}
.m61_c00218{transform:matrix(0.303513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303513,0.000000,0.000000,0.250000,0,0);}
.m7d_c00218{transform:matrix(0.303651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303651,0.000000,0.000000,0.250000,0,0);}
.m51_c00218{transform:matrix(0.303669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303669,0.000000,0.000000,0.250000,0,0);}
.m23_c00218{transform:matrix(0.304878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304878,0.000000,0.000000,0.250000,0,0);}
.m57_c00218{transform:matrix(0.305475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305475,0.000000,0.000000,0.250000,0,0);}
.m3a_c00218{transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);}
.mc5_c00218{transform:matrix(0.306042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306042,0.000000,0.000000,0.250000,0,0);}
.m31_c00218{transform:matrix(0.307034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307034,0.000000,0.000000,0.250000,0,0);}
.m35_c00218{transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);}
.ma1_c00218{transform:matrix(0.308174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308174,0.000000,0.000000,0.250000,0,0);}
.m62_c00218{transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);}
.m44_c00218{transform:matrix(0.309374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309374,0.000000,0.000000,0.250000,0,0);}
.m82_c00218{transform:matrix(0.310270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310270,0.000000,0.000000,0.250000,0,0);}
.m11_c00218{transform:matrix(0.310780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310780,0.000000,0.000000,0.250000,0,0);}
.m53_c00218{transform:matrix(0.311263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311263,0.000000,0.000000,0.250000,0,0);}
.ma6_c00218{transform:matrix(0.311312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311312,0.000000,0.000000,0.250000,0,0);}
.m30_c00218{transform:matrix(0.311400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311400,0.000000,0.000000,0.250000,0,0);}
.m87_c00218{transform:matrix(0.312189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312189,0.000000,0.000000,0.250000,0,0);}
.m4d_c00218{transform:matrix(0.312511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312511,0.000000,0.000000,0.250000,0,0);}
.m40_c00218{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.m4b_c00218{transform:matrix(0.313434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313434,0.000000,0.000000,0.250000,0,0);}
.ma8_c00218{transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);}
.md_c00218{transform:matrix(0.314095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314095,0.000000,0.000000,0.250000,0,0);}
.m89_c00218{transform:matrix(0.316027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316027,0.000000,0.000000,0.250000,0,0);}
.mcb_c00218{transform:matrix(0.317971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317971,0.000000,0.000000,0.250000,0,0);}
.m5a_c00218{transform:matrix(0.319173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319173,0.000000,0.000000,0.250000,0,0);}
.mc6_c00218{transform:matrix(0.319500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319500,0.000000,0.000000,0.250000,0,0);}
.mcc_c00218{transform:matrix(0.320364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320364,0.000000,0.000000,0.250000,0,0);}
.m18_c00218{transform:matrix(0.320598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320598,0.000000,0.000000,0.250000,0,0);}
.m3e_c00218{transform:matrix(0.322154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322154,0.000000,0.000000,0.250000,0,0);}
.m5d_c00218{transform:matrix(0.322235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322235,0.000000,0.000000,0.250000,0,0);}
.m9c_c00218{transform:matrix(0.322704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322704,0.000000,0.000000,0.250000,0,0);}
.ma4_c00218{transform:matrix(0.323214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323214,0.000000,0.000000,0.250000,0,0);}
.m56_c00218{transform:matrix(0.323683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323683,0.000000,0.000000,0.250000,0,0);}
.mc3_c00218{transform:matrix(0.323962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323962,0.000000,0.000000,0.250000,0,0);}
.m7f_c00218{transform:matrix(0.324729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324729,0.000000,0.000000,0.250000,0,0);}
.m2c_c00218{transform:matrix(0.324848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324848,0.000000,0.000000,0.250000,0,0);}
.m8c_c00218{transform:matrix(0.325473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325473,0.000000,0.000000,0.250000,0,0);}
.m83_c00218{transform:matrix(0.326313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326313,0.000000,0.000000,0.250000,0,0);}
.m32_c00218{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m2d_c00218{transform:matrix(0.327169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327169,0.000000,0.000000,0.250000,0,0);}
.m3_c00218{transform:matrix(0.327284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327284,0.000000,0.000000,0.250000,0,0);}
.m90_c00218{transform:matrix(0.327470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327470,0.000000,0.000000,0.250000,0,0);}
.m1c_c00218{transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);}
.m93_c00218{transform:matrix(0.330935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330935,0.000000,0.000000,0.250000,0,0);}
.m77_c00218{transform:matrix(0.331235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331235,0.000000,0.000000,0.250000,0,0);}
.m28_c00218{transform:matrix(0.331442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331442,0.000000,0.000000,0.250000,0,0);}
.m46_c00218{transform:matrix(0.331745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331745,0.000000,0.000000,0.250000,0,0);}
.mce_c00218{transform:matrix(0.332470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332470,0.000000,0.000000,0.250000,0,0);}
.m2f_c00218{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m27_c00218{transform:matrix(0.333682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333682,0.000000,0.000000,0.250000,0,0);}
.m1a_c00218{transform:matrix(0.334087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334087,0.000000,0.000000,0.250000,0,0);}
.m59_c00218{transform:matrix(0.335394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335394,0.000000,0.000000,0.250000,0,0);}
.m55_c00218{transform:matrix(0.336348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336348,0.000000,0.000000,0.250000,0,0);}
.m47_c00218{transform:matrix(0.337511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337511,0.000000,0.000000,0.250000,0,0);}
.m38_c00218{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.mc2_c00218{transform:matrix(0.340814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340814,0.000000,0.000000,0.250000,0,0);}
.mb1_c00218{transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);}
.m75_c00218{transform:matrix(0.341562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341562,0.000000,0.000000,0.250000,0,0);}
.m20_c00218{transform:matrix(0.344241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344241,0.000000,0.000000,0.250000,0,0);}
.m41_c00218{transform:matrix(0.345391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345391,0.000000,0.000000,0.250000,0,0);}
.m58_c00218{transform:matrix(0.348717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348717,0.000000,0.000000,0.250000,0,0);}
.m5c_c00218{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m65_c00218{transform:matrix(0.349503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349503,0.000000,0.000000,0.250000,0,0);}
.md2_c00218{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m95_c00218{transform:matrix(0.355515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355515,0.000000,0.000000,0.250000,0,0);}
.m84_c00218{transform:matrix(0.361063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361063,0.000000,0.000000,0.250000,0,0);}
.m26_c00218{transform:matrix(0.361394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361394,0.000000,0.000000,0.250000,0,0);}
.md3_c00218{transform:matrix(0.362785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362785,0.000000,0.000000,0.250000,0,0);}
.m1f_c00218{transform:matrix(0.364775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364775,0.000000,0.000000,0.250000,0,0);}
.m69_c00218{transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);}
.m5f_c00218{transform:matrix(0.369566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369566,0.000000,0.000000,0.250000,0,0);}
.mac_c00218{transform:matrix(0.372071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372071,0.000000,0.000000,0.250000,0,0);}
.mf_c00218{transform:matrix(0.383665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383665,0.000000,0.000000,0.250000,0,0);}
.m91_c00218{transform:matrix(0.394265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394265,0.000000,0.000000,0.250000,0,0);}
.m17_c00218{transform:matrix(0.407787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407787,0.000000,0.000000,0.250000,0,0);}
.v0_c00218{vertical-align:0.000000px;}
.v1_c00218{vertical-align:99.813780px;}
.ls7_c00218{letter-spacing:-2.744280px;}
.lsa_c00218{letter-spacing:-2.550240px;}
.ls12_c00218{letter-spacing:-2.399285px;}
.ls10_c00218{letter-spacing:-2.375762px;}
.ls11_c00218{letter-spacing:-0.065043px;}
.ls5_c00218{letter-spacing:-0.023522px;}
.ls4_c00218{letter-spacing:0.000000px;}
.ls1_c00218{letter-spacing:0.705672px;}
.ls14_c00218{letter-spacing:1.082030px;}
.lsc_c00218{letter-spacing:1.306800px;}
.ls15_c00218{letter-spacing:1.819066px;}
.ls2_c00218{letter-spacing:2.422807px;}
.lsd_c00218{letter-spacing:3.112798px;}
.lse_c00218{letter-spacing:3.559723px;}
.ls9_c00218{letter-spacing:3.643200px;}
.ls8_c00218{letter-spacing:3.889037px;}
.ls3_c00218{letter-spacing:3.920400px;}
.lsf_c00218{letter-spacing:4.088700px;}
.ls0_c00218{letter-spacing:9.408960px;}
.ls13_c00218{letter-spacing:48.470598px;}
.ls6_c00218{letter-spacing:49.896198px;}
.lsb_c00218{letter-spacing:58.449798px;}
.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;}
}
.ws2_c00218{word-spacing:-23.161723px;}
.ws1_c00218{word-spacing:-22.024807px;}
.ws0_c00218{word-spacing:-19.602000px;}
.ws5_c00218{word-spacing:0.000000px;}
.ws4_c00218{word-spacing:1.521115px;}
.ws3_c00218{word-spacing:3.606768px;}
._1b_c00218{margin-left:-10.662696px;}
._9_c00218{margin-left:-7.840800px;}
._14_c00218{margin-left:-6.821496px;}
._1_c00218{margin-left:-5.802984px;}
._19_c00218{margin-left:-4.077216px;}
._13_c00218{margin-left:-1.254528px;}
._b_c00218{width:1.568160px;}
._4_c00218{width:3.841992px;}
._18_c00218{width:5.504242px;}
._3_c00218{width:6.743088px;}
._5_c00218{width:7.920000px;}
._d_c00218{width:10.036620px;}
._a_c00218{width:11.447568px;}
._8_c00218{width:12.936528px;}
._1c_c00218{width:14.971176px;}
._f_c00218{width:17.484588px;}
._12_c00218{width:20.857716px;}
._e_c00218{width:22.267872px;}
._2_c00218{width:23.679216px;}
._6_c00218{width:27.129168px;}
._c_c00218{width:29.795040px;}
._0_c00218{width:31.358448px;}
._17_c00218{width:32.460912px;}
._11_c00218{width:34.106688px;}
._1a_c00218{width:35.440416px;}
._16_c00218{width:36.694944px;}
._10_c00218{width:39.693060px;}
._7_c00218{width:42.340320px;}
._15_c00218{width:45.480600px;}
.fc0_c00218{color:transparent;}
.fsc_c00218{font-size:22.176000px;}
.fs5_c00218{font-size:26.136000px;}
.fsf_c00218{font-size:27.720000px;}
.fs8_c00218{font-size:34.056198px;}
.fs2_c00218{font-size:34.650000px;}
.fse_c00218{font-size:39.204000px;}
.fs9_c00218{font-size:39.600000px;}
.fsd_c00218{font-size:48.470598px;}
.fs1_c00218{font-size:49.896198px;}
.fs4_c00218{font-size:58.449798px;}
.fsa_c00218{font-size:72.270000px;}
.fs3_c00218{font-size:72.864000px;}
.fs6_c00218{font-size:76.032198px;}
.fs0_c00218{font-size:78.408000px;}
.fs7_c00218{font-size:81.774000px;}
.fsb_c00218{font-size:83.952198px;}
.y0_c00218{bottom:0.000000px;}
.y1_c00218{bottom:76.500000px;}
.y21_c00218{bottom:123.582735px;}
.y20_c00218{bottom:159.579135px;}
.y23_c00218{bottom:162.781785px;}
.y1f_c00218{bottom:195.219135px;}
.y1e_c00218{bottom:229.077135px;}
.y1d_c00218{bottom:241.551135px;}
.y1c_c00218{bottom:259.014735px;}
.y1b_c00218{bottom:291.090735px;}
.y1a_c00218{bottom:304.628985px;}
.y19_c00218{bottom:386.957385px;}
.y18_c00218{bottom:398.010735px;}
.y17_c00218{bottom:419.394735px;}
.y16_c00218{bottom:451.827135px;}
.y15_c00218{bottom:479.626335px;}
.y14_c00218{bottom:484.254585px;}
.y13_c00218{bottom:515.979135px;}
.y12_c00218{bottom:530.235135px;}
.y11_c00218{bottom:548.411535px;}
.y10_c00218{bottom:581.551785px;}
.yf_c00218{bottom:613.271385px;}
.ye_c00218{bottom:645.703785px;}
.yd_c00218{bottom:677.784735px;}
.yb_c00218{bottom:678.136185px;}
.y22_c00218{bottom:694.530585px;}
.ya_c00218{bottom:702.732735px;}
.yc_c00218{bottom:703.089135px;}
.y9_c00218{bottom:735.521535px;}
.y8_c00218{bottom:768.310335px;}
.y7_c00218{bottom:800.742735px;}
.y6_c00218{bottom:833.175135px;}
.y5_c00218{bottom:866.320335px;}
.y4_c00218{bottom:899.816985px;}
.y3_c00218{bottom:932.610735px;}
.y2_c00218{bottom:1081.224585px;}
.h10_c00218{height:23.128875px;}
.h9_c00218{height:25.651055px;}
.h13_c00218{height:28.911094px;}
.h11_c00218{height:32.281418px;}
.h3_c00218{height:33.230868px;}
.hc_c00218{height:35.519550px;}
.h5_c00218{height:36.138867px;}
.h12_c00218{height:38.476582px;}
.h8_c00218{height:38.927565px;}
.hd_c00218{height:41.301563px;}
.h6_c00218{height:71.512031px;}
.he_c00218{height:75.375352px;}
.h2_c00218{height:76.953164px;}
.h7_c00218{height:79.020563px;}
.ha_c00218{height:79.299207px;}
.hb_c00218{height:80.216780px;}
.hf_c00218{height:82.394491px;}
.h4_c00218{height:176.766944px;}
.h1_c00218{height:1110.000000px;}
.h0_c00218{height:1263.000000px;}
.w1_c00218{width:751.500000px;}
.w0_c00218{width:892.500000px;}
.x0_c00218{left:0.000000px;}
.x3_c00218{left:65.766135px;}
.x3d_c00218{left:67.053135px;}
.x16_c00218{left:68.122335px;}
.x6c_c00218{left:69.226185px;}
.x1_c00218{left:70.500000px;}
.x4_c00218{left:78.477735px;}
.x20_c00218{left:89.531085px;}
.x76_c00218{left:90.813135px;}
.x45_c00218{left:100.356735px;}
.x55_c00218{left:102.896085px;}
.x5_c00218{left:111.286335px;}
.x6d_c00218{left:112.672335px;}
.x60_c00218{left:115.949235px;}
.x6_c00218{left:121.097235px;}
.x21_c00218{left:122.458485px;}
.x7e_c00218{left:124.354335px;}
.x67_c00218{left:126.240285px;}
.x17_c00218{left:132.145635px;}
.x4b_c00218{left:133.655385px;}
.x34_c00218{left:144.015735px;}
.x6e_c00218{left:145.490835px;}
.x35_c00218{left:154.781985px;}
.x58_c00218{left:156.212535px;}
.x7_c00218{left:166.157085px;}
.x36_c00218{left:177.160935px;}
.x77_c00218{left:181.690185px;}
.x18_c00218{left:188.610285px;}
.x78_c00218{left:189.887385px;}
.x22_c00218{left:199.183485px;}
.x6f_c00218{left:200.722935px;}
.x19_c00218{left:210.494235px;}
.x3e_c00218{left:211.692135px;}
.x2b_c00218{left:221.760435px;}
.x51_c00218{left:222.785085px;}
.x7a_c00218{left:232.615785px;}
.x37_c00218{left:234.219585px;}
.x3f_c00218{left:244.174035px;}
.x42_c00218{left:254.034435px;}
.x2c_c00218{left:255.252135px;}
.x69_c00218{left:256.336185px;}
.x8_c00218{left:265.751085px;}
.x66_c00218{left:267.023235px;}
.x70_c00218{left:268.369635px;}
.x23_c00218{left:277.002435px;}
.x59_c00218{left:278.294385px;}
.x1a_c00218{left:289.105185px;}
.x2d_c00218{left:298.896285px;}
.x53_c00218{left:300.158535px;}
.x7f_c00218{left:301.925685px;}
.x24_c00218{left:311.201985px;}
.x1b_c00218{left:320.636685px;}
.x4e_c00218{left:322.032585px;}
.x62_c00218{left:332.407785px;}
.x40_c00218{left:333.585885px;}
.x7b_c00218{left:335.011485px;}
.x9_c00218{left:343.164135px;}
.x43_c00218{left:344.277885px;}
.x80_c00218{left:345.446085px;}
.x38_c00218{left:355.682685px;}
.x4c_c00218{left:364.874835px;}
.x25_c00218{left:366.077685px;}
.x7c_c00218{left:367.315185px;}
.x2e_c00218{left:378.205185px;}
.x71_c00218{left:379.244685px;}
.x1c_c00218{left:387.664635px;}
.x6a_c00218{left:389.496135px;}
.x5a_c00218{left:392.149335px;}
.x44_c00218{left:398.346735px;}
.x26_c00218{left:399.910935px;}
.x81_c00218{left:400.945485px;}
.x68_c00218{left:408.806085px;}
.x46_c00218{left:410.464335px;}
.x2f_c00218{left:421.141485px;}
.xa_c00218{left:422.265135px;}
.x56_c00218{left:431.521635px;}
.x52_c00218{left:433.224435px;}
.xb_c00218{left:443.292735px;}
.x7d_c00218{left:444.510435px;}
.xc_c00218{left:448.995135px;}
.xd_c00218{left:454.341135px;}
.x72_c00218{left:455.836035px;}
.xe_c00218{left:465.740985px;}
.x79_c00218{left:467.285385px;}
.x30_c00218{left:476.101335px;}
.x5b_c00218{left:477.635835px;}
.x1d_c00218{left:486.724035px;}
.x63_c00218{left:488.218935px;}
.x73_c00218{left:489.372285px;}
.xf_c00218{left:498.292185px;}
.x39_c00218{left:499.688085px;}
.x10_c00218{left:508.504035px;}
.x48_c00218{left:510.083085px;}
.x4f_c00218{left:513.251085px;}
.x47_c00218{left:522.532335px;}
.x27_c00218{left:523.581735px;}
.x31_c00218{left:531.803685px;}
.x5c_c00218{left:532.897635px;}
.x11_c00218{left:543.223335px;}
.x32_c00218{left:553.563885px;}
.x64_c00218{left:554.647935px;}
.x65_c00218{left:564.102435px;}
.x28_c00218{left:566.542785px;}
.x1e_c00218{left:575.536935px;}
.x5d_c00218{left:576.744735px;}
.x41_c00218{left:585.486435px;}
.x12_c00218{left:587.100135px;}
.x33_c00218{left:596.866485px;}
.x3a_c00218{left:598.480185px;}
.x5e_c00218{left:608.652435px;}
.x74_c00218{left:609.875085px;}
.x13_c00218{left:620.235435px;}
.x4d_c00218{left:621.562035px;}
.x29_c00218{left:631.551135px;}
.x14_c00218{left:642.322335px;}
.x5f_c00218{left:643.361835px;}
.x2_c00218{left:653.306385px;}
.x49_c00218{left:663.181635px;}
.x15_c00218{left:664.349835px;}
.x1f_c00218{left:665.419035px;}
.x61_c00218{left:669.423585px;}
.x3b_c00218{left:673.160835px;}
.x50_c00218{left:675.403185px;}
.x6b_c00218{left:677.576235px;}
.x2a_c00218{left:685.664535px;}
.x4a_c00218{left:687.223785px;}
.x82_c00218{left:695.460585px;}
.x75_c00218{left:696.604035px;}
.x54_c00218{left:700.796685px;}
.x3c_c00218{left:708.454335px;}
.x57_c00218{left:709.523535px;}
.x83_c00218{left:742.223235px;}
.x84_c00218{left:752.177685px;}
@media print{
.v0_c00218{vertical-align:0.000000pt;}
.v1_c00218{vertical-align:88.723360pt;}
.ls7_c00218{letter-spacing:-2.439360pt;}
.lsa_c00218{letter-spacing:-2.266880pt;}
.ls12_c00218{letter-spacing:-2.132698pt;}
.ls10_c00218{letter-spacing:-2.111789pt;}
.ls11_c00218{letter-spacing:-0.057816pt;}
.ls5_c00218{letter-spacing:-0.020909pt;}
.ls4_c00218{letter-spacing:0.000000pt;}
.ls1_c00218{letter-spacing:0.627264pt;}
.ls14_c00218{letter-spacing:0.961805pt;}
.lsc_c00218{letter-spacing:1.161600pt;}
.ls15_c00218{letter-spacing:1.616947pt;}
.ls2_c00218{letter-spacing:2.153606pt;}
.lsd_c00218{letter-spacing:2.766931pt;}
.lse_c00218{letter-spacing:3.164198pt;}
.ls9_c00218{letter-spacing:3.238400pt;}
.ls8_c00218{letter-spacing:3.456922pt;}
.ls3_c00218{letter-spacing:3.484800pt;}
.lsf_c00218{letter-spacing:3.634400pt;}
.ls0_c00218{letter-spacing:8.363520pt;}
.ls13_c00218{letter-spacing:43.084976pt;}
.ls6_c00218{letter-spacing:44.352176pt;}
.lsb_c00218{letter-spacing:51.955376pt;}
.ws2_c00218{word-spacing:-20.588198pt;}
.ws1_c00218{word-spacing:-19.577606pt;}
.ws0_c00218{word-spacing:-17.424000pt;}
.ws5_c00218{word-spacing:0.000000pt;}
.ws4_c00218{word-spacing:1.352102pt;}
.ws3_c00218{word-spacing:3.206016pt;}
._1b_c00218{margin-left:-9.477952pt;}
._9_c00218{margin-left:-6.969600pt;}
._14_c00218{margin-left:-6.063552pt;}
._1_c00218{margin-left:-5.158208pt;}
._19_c00218{margin-left:-3.624192pt;}
._13_c00218{margin-left:-1.115136pt;}
._b_c00218{width:1.393920pt;}
._4_c00218{width:3.415104pt;}
._18_c00218{width:4.892659pt;}
._3_c00218{width:5.993856pt;}
._5_c00218{width:7.040000pt;}
._d_c00218{width:8.921440pt;}
._a_c00218{width:10.175616pt;}
._8_c00218{width:11.499136pt;}
._1c_c00218{width:13.307712pt;}
._f_c00218{width:15.541856pt;}
._12_c00218{width:18.540192pt;}
._e_c00218{width:19.793664pt;}
._2_c00218{width:21.048192pt;}
._6_c00218{width:24.114816pt;}
._c_c00218{width:26.484480pt;}
._0_c00218{width:27.874176pt;}
._17_c00218{width:28.854144pt;}
._11_c00218{width:30.317056pt;}
._1a_c00218{width:31.502592pt;}
._16_c00218{width:32.617728pt;}
._10_c00218{width:35.282720pt;}
._7_c00218{width:37.635840pt;}
._15_c00218{width:40.427200pt;}
.fsc_c00218{font-size:19.712000pt;}
.fs5_c00218{font-size:23.232000pt;}
.fsf_c00218{font-size:24.640000pt;}
.fs8_c00218{font-size:30.272176pt;}
.fs2_c00218{font-size:30.800000pt;}
.fse_c00218{font-size:34.848000pt;}
.fs9_c00218{font-size:35.200000pt;}
.fsd_c00218{font-size:43.084976pt;}
.fs1_c00218{font-size:44.352176pt;}
.fs4_c00218{font-size:51.955376pt;}
.fsa_c00218{font-size:64.240000pt;}
.fs3_c00218{font-size:64.768000pt;}
.fs6_c00218{font-size:67.584176pt;}
.fs0_c00218{font-size:69.696000pt;}
.fs7_c00218{font-size:72.688000pt;}
.fsb_c00218{font-size:74.624176pt;}
.y0_c00218{bottom:0.000000pt;}
.y1_c00218{bottom:68.000000pt;}
.y21_c00218{bottom:109.851320pt;}
.y20_c00218{bottom:141.848120pt;}
.y23_c00218{bottom:144.694920pt;}
.y1f_c00218{bottom:173.528120pt;}
.y1e_c00218{bottom:203.624120pt;}
.y1d_c00218{bottom:214.712120pt;}
.y1c_c00218{bottom:230.235320pt;}
.y1b_c00218{bottom:258.747320pt;}
.y1a_c00218{bottom:270.781320pt;}
.y19_c00218{bottom:343.962120pt;}
.y18_c00218{bottom:353.787320pt;}
.y17_c00218{bottom:372.795320pt;}
.y16_c00218{bottom:401.624120pt;}
.y15_c00218{bottom:426.334520pt;}
.y14_c00218{bottom:430.448520pt;}
.y13_c00218{bottom:458.648120pt;}
.y12_c00218{bottom:471.320120pt;}
.y11_c00218{bottom:487.476920pt;}
.y10_c00218{bottom:516.934920pt;}
.yf_c00218{bottom:545.130120pt;}
.ye_c00218{bottom:573.958920pt;}
.yd_c00218{bottom:602.475320pt;}
.yb_c00218{bottom:602.787720pt;}
.y22_c00218{bottom:617.360520pt;}
.ya_c00218{bottom:624.651320pt;}
.yc_c00218{bottom:624.968120pt;}
.y9_c00218{bottom:653.796920pt;}
.y8_c00218{bottom:682.942520pt;}
.y7_c00218{bottom:711.771320pt;}
.y6_c00218{bottom:740.600120pt;}
.y5_c00218{bottom:770.062520pt;}
.y4_c00218{bottom:799.837320pt;}
.y3_c00218{bottom:828.987320pt;}
.y2_c00218{bottom:961.088520pt;}
.h10_c00218{height:20.559000pt;}
.h9_c00218{height:22.800938pt;}
.h13_c00218{height:25.698750pt;}
.h11_c00218{height:28.694594pt;}
.h3_c00218{height:29.538549pt;}
.hc_c00218{height:31.572934pt;}
.h5_c00218{height:32.123438pt;}
.h12_c00218{height:34.201406pt;}
.h8_c00218{height:34.602280pt;}
.hd_c00218{height:36.712500pt;}
.h6_c00218{height:63.566250pt;}
.he_c00218{height:67.000313pt;}
.h2_c00218{height:68.402813pt;}
.h7_c00218{height:70.240500pt;}
.ha_c00218{height:70.488184pt;}
.hb_c00218{height:71.303805pt;}
.hf_c00218{height:73.239548pt;}
.h4_c00218{height:157.126172pt;}
.h1_c00218{height:986.666667pt;}
.h0_c00218{height:1122.666667pt;}
.w1_c00218{width:668.000000pt;}
.w0_c00218{width:793.333333pt;}
.x0_c00218{left:0.000000pt;}
.x3_c00218{left:58.458787pt;}
.x3d_c00218{left:59.602787pt;}
.x16_c00218{left:60.553187pt;}
.x6c_c00218{left:61.534387pt;}
.x1_c00218{left:62.666667pt;}
.x4_c00218{left:69.757987pt;}
.x20_c00218{left:79.583187pt;}
.x76_c00218{left:80.722787pt;}
.x45_c00218{left:89.205987pt;}
.x55_c00218{left:91.463187pt;}
.x5_c00218{left:98.921187pt;}
.x6d_c00218{left:100.153187pt;}
.x60_c00218{left:103.065987pt;}
.x6_c00218{left:107.641987pt;}
.x21_c00218{left:108.851987pt;}
.x7e_c00218{left:110.537187pt;}
.x67_c00218{left:112.213587pt;}
.x17_c00218{left:117.462787pt;}
.x4b_c00218{left:118.804787pt;}
.x34_c00218{left:128.013987pt;}
.x6e_c00218{left:129.325187pt;}
.x35_c00218{left:137.583987pt;}
.x58_c00218{left:138.855587pt;}
.x7_c00218{left:147.695187pt;}
.x36_c00218{left:157.476387pt;}
.x77_c00218{left:161.502387pt;}
.x18_c00218{left:167.653587pt;}
.x78_c00218{left:168.788787pt;}
.x22_c00218{left:177.051987pt;}
.x6f_c00218{left:178.420387pt;}
.x19_c00218{left:187.105987pt;}
.x3e_c00218{left:188.170787pt;}
.x2b_c00218{left:197.120387pt;}
.x51_c00218{left:198.031187pt;}
.x7a_c00218{left:206.769587pt;}
.x37_c00218{left:208.195187pt;}
.x3f_c00218{left:217.043587pt;}
.x42_c00218{left:225.808387pt;}
.x2c_c00218{left:226.890787pt;}
.x69_c00218{left:227.854387pt;}
.x8_c00218{left:236.223187pt;}
.x66_c00218{left:237.353987pt;}
.x70_c00218{left:238.550787pt;}
.x23_c00218{left:246.224387pt;}
.x59_c00218{left:247.372787pt;}
.x1a_c00218{left:256.982387pt;}
.x2d_c00218{left:265.685587pt;}
.x53_c00218{left:266.807587pt;}
.x7f_c00218{left:268.378387pt;}
.x24_c00218{left:276.623987pt;}
.x1b_c00218{left:285.010387pt;}
.x4e_c00218{left:286.251187pt;}
.x62_c00218{left:295.473587pt;}
.x40_c00218{left:296.520787pt;}
.x7b_c00218{left:297.787987pt;}
.x9_c00218{left:305.034787pt;}
.x43_c00218{left:306.024787pt;}
.x80_c00218{left:307.063187pt;}
.x38_c00218{left:316.162387pt;}
.x4c_c00218{left:324.333187pt;}
.x25_c00218{left:325.402387pt;}
.x7c_c00218{left:326.502387pt;}
.x2e_c00218{left:336.182387pt;}
.x71_c00218{left:337.106387pt;}
.x1c_c00218{left:344.590787pt;}
.x6a_c00218{left:346.218787pt;}
.x5a_c00218{left:348.577187pt;}
.x44_c00218{left:354.085987pt;}
.x26_c00218{left:355.476387pt;}
.x81_c00218{left:356.395987pt;}
.x68_c00218{left:363.383187pt;}
.x46_c00218{left:364.857187pt;}
.x2f_c00218{left:374.347987pt;}
.xa_c00218{left:375.346787pt;}
.x56_c00218{left:383.574787pt;}
.x52_c00218{left:385.088387pt;}
.xb_c00218{left:394.037987pt;}
.x7d_c00218{left:395.120387pt;}
.xc_c00218{left:399.106787pt;}
.xd_c00218{left:403.858787pt;}
.x72_c00218{left:405.187587pt;}
.xe_c00218{left:413.991987pt;}
.x79_c00218{left:415.364787pt;}
.x30_c00218{left:423.201187pt;}
.x5b_c00218{left:424.565187pt;}
.x1d_c00218{left:432.643587pt;}
.x63_c00218{left:433.972387pt;}
.x73_c00218{left:434.997587pt;}
.xf_c00218{left:442.926387pt;}
.x39_c00218{left:444.167187pt;}
.x10_c00218{left:452.003587pt;}
.x48_c00218{left:453.407187pt;}
.x4f_c00218{left:456.223187pt;}
.x47_c00218{left:464.473187pt;}
.x27_c00218{left:465.405987pt;}
.x31_c00218{left:472.714387pt;}
.x5c_c00218{left:473.686787pt;}
.x11_c00218{left:482.865187pt;}
.x32_c00218{left:492.056787pt;}
.x64_c00218{left:493.020387pt;}
.x65_c00218{left:501.424387pt;}
.x28_c00218{left:503.593587pt;}
.x1e_c00218{left:511.588387pt;}
.x5d_c00218{left:512.661987pt;}
.x41_c00218{left:520.432387pt;}
.x12_c00218{left:521.866787pt;}
.x33_c00218{left:530.547987pt;}
.x3a_c00218{left:531.982387pt;}
.x5e_c00218{left:541.024387pt;}
.x74_c00218{left:542.111187pt;}
.x13_c00218{left:551.320387pt;}
.x4d_c00218{left:552.499587pt;}
.x29_c00218{left:561.378787pt;}
.x14_c00218{left:570.953187pt;}
.x5f_c00218{left:571.877187pt;}
.x2_c00218{left:580.716787pt;}
.x49_c00218{left:589.494787pt;}
.x15_c00218{left:590.533187pt;}
.x1f_c00218{left:591.483587pt;}
.x61_c00218{left:595.043187pt;}
.x3b_c00218{left:598.365187pt;}
.x50_c00218{left:600.358387pt;}
.x6b_c00218{left:602.289987pt;}
.x2a_c00218{left:609.479587pt;}
.x4a_c00218{left:610.865587pt;}
.x82_c00218{left:618.187187pt;}
.x75_c00218{left:619.203587pt;}
.x54_c00218{left:622.930387pt;}
.x3c_c00218{left:629.737187pt;}
.x57_c00218{left:630.687587pt;}
.x83_c00218{left:659.753987pt;}
.x84_c00218{left:668.602387pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bd4e2f698eb991d7b4da7a1c.woff2')format("woff");}.ff1_c00219{font-family:ff1_c00219;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00219;src:url('chunks/assets/font_20e107bd5343f3b5f0739937.woff2')format("woff");}.ff2_c00219{font-family:ff2_c00219;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00219;src:url('chunks/assets/font_3502c5e33d5671d1cb52bdf8.woff2')format("woff");}.ff3_c00219{font-family:ff3_c00219;line-height:0.666000;font-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_c00219{transform:matrix(0.035715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.035715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.035715,0.000000,0.000000,0.250000,0,0);}
.m52_c00219{transform:matrix(0.064286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064286,0.000000,0.000000,0.250000,0,0);}
.m88_c00219{transform:matrix(0.069444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.069444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.069444,0.000000,0.000000,0.250000,0,0);}
.m8b_c00219{transform:matrix(0.127778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127778,0.000000,0.000000,0.250000,0,0);}
.m54_c00219{transform:matrix(0.139286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139286,0.000000,0.000000,0.250000,0,0);}
.ma7_c00219{transform:matrix(0.143553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143553,0.000000,0.000000,0.250000,0,0);}
.m89_c00219{transform:matrix(0.153703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153703,0.000000,0.000000,0.250000,0,0);}
.m8c_c00219{transform:matrix(0.155555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155555,0.000000,0.000000,0.250000,0,0);}
.m45_c00219{transform:matrix(0.157142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157142,0.000000,0.000000,0.250000,0,0);}
.m44_c00219{transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);}
.m8a_c00219{transform:matrix(0.166666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166666,0.000000,0.000000,0.250000,0,0);}
.m46_c00219{transform:matrix(0.171429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171429,0.000000,0.000000,0.250000,0,0);}
.m25_c00219{transform:matrix(0.179324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179324,0.000000,0.000000,0.250000,0,0);}
.m48_c00219{transform:matrix(0.189285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189285,0.000000,0.000000,0.250000,0,0);}
.m51_c00219{transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);}
.m47_c00219{transform:matrix(0.203572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203572,0.000000,0.000000,0.250000,0,0);}
.m7a_c00219{transform:matrix(0.216830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216830,0.000000,0.000000,0.250000,0,0);}
.m15_c00219{transform:matrix(0.218448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218448,0.000000,0.000000,0.250000,0,0);}
.m98_c00219{transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);}
.m6b_c00219{transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);}
.m61_c00219{transform:matrix(0.234741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234741,0.000000,0.000000,0.250000,0,0);}
.m68_c00219{transform:matrix(0.238424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238424,0.000000,0.000000,0.250000,0,0);}
.mc_c00219{transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);}
.m40_c00219{transform:matrix(0.243081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243081,0.000000,0.000000,0.250000,0,0);}
.m90_c00219{transform:matrix(0.246279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246279,0.000000,0.000000,0.250000,0,0);}
.m0_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);}
.m43_c00219{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.maa_c00219{transform:matrix(0.251904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251904,0.000000,0.000000,0.250000,0,0);}
.m59_c00219{transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);}
.m20_c00219{transform:matrix(0.253545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253545,0.000000,0.000000,0.250000,0,0);}
.m2d_c00219{transform:matrix(0.256057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256057,0.000000,0.000000,0.250000,0,0);}
.m70_c00219{transform:matrix(0.256106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256106,0.000000,0.000000,0.250000,0,0);}
.m27_c00219{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m63_c00219{transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);}
.m12_c00219{transform:matrix(0.260756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260756,0.000000,0.000000,0.250000,0,0);}
.mb0_c00219{transform:matrix(0.261904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261904,0.000000,0.000000,0.250000,0,0);}
.m96_c00219{transform:matrix(0.262545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262545,0.000000,0.000000,0.250000,0,0);}
.m2_c00219{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m3e_c00219{transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);}
.mad_c00219{transform:matrix(0.264751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264751,0.000000,0.000000,0.250000,0,0);}
.m9f_c00219{transform:matrix(0.264886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264886,0.000000,0.000000,0.250000,0,0);}
.m17_c00219{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.me_c00219{transform:matrix(0.266605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266605,0.000000,0.000000,0.250000,0,0);}
.m3a_c00219{transform:matrix(0.267205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267205,0.000000,0.000000,0.250000,0,0);}
.m13_c00219{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m5a_c00219{transform:matrix(0.267925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267925,0.000000,0.000000,0.250000,0,0);}
.m76_c00219{transform:matrix(0.268275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268275,0.000000,0.000000,0.250000,0,0);}
.m86_c00219{transform:matrix(0.270287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270287,0.000000,0.000000,0.250000,0,0);}
.m77_c00219{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m14_c00219{transform:matrix(0.271138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271138,0.000000,0.000000,0.250000,0,0);}
.mac_c00219{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m2c_c00219{transform:matrix(0.272544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272544,0.000000,0.000000,0.250000,0,0);}
.ma6_c00219{transform:matrix(0.273109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273109,0.000000,0.000000,0.250000,0,0);}
.m34_c00219{transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);}
.m5d_c00219{transform:matrix(0.273706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273706,0.000000,0.000000,0.250000,0,0);}
.m4_c00219{transform:matrix(0.274132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274132,0.000000,0.000000,0.250000,0,0);}
.m4a_c00219{transform:matrix(0.275105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275105,0.000000,0.000000,0.250000,0,0);}
.m6_c00219{transform:matrix(0.275733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275733,0.000000,0.000000,0.250000,0,0);}
.m4d_c00219{transform:matrix(0.277101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277101,0.000000,0.000000,0.250000,0,0);}
.m4e_c00219{transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);}
.m38_c00219{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m62_c00219{transform:matrix(0.277360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277360,0.000000,0.000000,0.250000,0,0);}
.m83_c00219{transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);}
.m9e_c00219{transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);}
.m6d_c00219{transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);}
.m82_c00219{transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);}
.m5b_c00219{transform:matrix(0.279482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279482,0.000000,0.000000,0.250000,0,0);}
.m21_c00219{transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);}
.m42_c00219{transform:matrix(0.280163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280163,0.000000,0.000000,0.250000,0,0);}
.mae_c00219{transform:matrix(0.280900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280900,0.000000,0.000000,0.250000,0,0);}
.m36_c00219{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.m97_c00219{transform:matrix(0.281782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281782,0.000000,0.000000,0.250000,0,0);}
.m9b_c00219{transform:matrix(0.282717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282717,0.000000,0.000000,0.250000,0,0);}
.m16_c00219{transform:matrix(0.282854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282854,0.000000,0.000000,0.250000,0,0);}
.ma2_c00219{transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);}
.m5_c00219{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.ma_c00219{transform:matrix(0.284009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284009,0.000000,0.000000,0.250000,0,0);}
.m55_c00219{transform:matrix(0.284803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284803,0.000000,0.000000,0.250000,0,0);}
.m8_c00219{transform:matrix(0.285273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285273,0.000000,0.000000,0.250000,0,0);}
.m6f_c00219{transform:matrix(0.285539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285539,0.000000,0.000000,0.250000,0,0);}
.m84_c00219{transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);}
.m1a_c00219{transform:matrix(0.288372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288372,0.000000,0.000000,0.250000,0,0);}
.m39_c00219{transform:matrix(0.288557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288557,0.000000,0.000000,0.250000,0,0);}
.m11_c00219{transform:matrix(0.289344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289344,0.000000,0.000000,0.250000,0,0);}
.m7c_c00219{transform:matrix(0.289652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289652,0.000000,0.000000,0.250000,0,0);}
.m7e_c00219{transform:matrix(0.289849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289849,0.000000,0.000000,0.250000,0,0);}
.m1b_c00219{transform:matrix(0.290155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290155,0.000000,0.000000,0.250000,0,0);}
.m4c_c00219{transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);}
.m69_c00219{transform:matrix(0.291525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291525,0.000000,0.000000,0.250000,0,0);}
.m22_c00219{transform:matrix(0.292127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292127,0.000000,0.000000,0.250000,0,0);}
.m29_c00219{transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);}
.m2e_c00219{transform:matrix(0.292509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292509,0.000000,0.000000,0.250000,0,0);}
.m1_c00219{transform:matrix(0.292704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292704,0.000000,0.000000,0.250000,0,0);}
.m3b_c00219{transform:matrix(0.294997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294997,0.000000,0.000000,0.250000,0,0);}
.m7_c00219{transform:matrix(0.295090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295090,0.000000,0.000000,0.250000,0,0);}
.mb3_c00219{transform:matrix(0.295215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295215,0.000000,0.000000,0.250000,0,0);}
.m4f_c00219{transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);}
.mb_c00219{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.ma4_c00219{transform:matrix(0.297336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297336,0.000000,0.000000,0.250000,0,0);}
.maf_c00219{transform:matrix(0.297871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297871,0.000000,0.000000,0.250000,0,0);}
.md_c00219{transform:matrix(0.297991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297991,0.000000,0.000000,0.250000,0,0);}
.ma1_c00219{transform:matrix(0.300741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300741,0.000000,0.000000,0.250000,0,0);}
.m71_c00219{transform:matrix(0.300878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300878,0.000000,0.000000,0.250000,0,0);}
.m92_c00219{transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);}
.m30_c00219{transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);}
.ma0_c00219{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.ma8_c00219{transform:matrix(0.302783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302783,0.000000,0.000000,0.250000,0,0);}
.m80_c00219{transform:matrix(0.302915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302915,0.000000,0.000000,0.250000,0,0);}
.m9d_c00219{transform:matrix(0.303446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303446,0.000000,0.000000,0.250000,0,0);}
.m1f_c00219{transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);}
.m8d_c00219{transform:matrix(0.306878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306878,0.000000,0.000000,0.250000,0,0);}
.m5f_c00219{transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);}
.m93_c00219{transform:matrix(0.308088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308088,0.000000,0.000000,0.250000,0,0);}
.m26_c00219{transform:matrix(0.308319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308319,0.000000,0.000000,0.250000,0,0);}
.ma3_c00219{transform:matrix(0.308464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308464,0.000000,0.000000,0.250000,0,0);}
.m72_c00219{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m33_c00219{transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);}
.m3c_c00219{transform:matrix(0.309093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309093,0.000000,0.000000,0.250000,0,0);}
.m95_c00219{transform:matrix(0.310673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310673,0.000000,0.000000,0.250000,0,0);}
.m7b_c00219{transform:matrix(0.310694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310694,0.000000,0.000000,0.250000,0,0);}
.m5c_c00219{transform:matrix(0.310770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310770,0.000000,0.000000,0.250000,0,0);}
.m66_c00219{transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);}
.m8f_c00219{transform:matrix(0.311442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311442,0.000000,0.000000,0.250000,0,0);}
.m2f_c00219{transform:matrix(0.311765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311765,0.000000,0.000000,0.250000,0,0);}
.mb5_c00219{transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);}
.m3_c00219{transform:matrix(0.312047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312047,0.000000,0.000000,0.250000,0,0);}
.m23_c00219{transform:matrix(0.312139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312139,0.000000,0.000000,0.250000,0,0);}
.m74_c00219{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.mb2_c00219{transform:matrix(0.312747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312747,0.000000,0.000000,0.250000,0,0);}
.m3d_c00219{transform:matrix(0.313023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313023,0.000000,0.000000,0.250000,0,0);}
.m64_c00219{transform:matrix(0.313583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313583,0.000000,0.000000,0.250000,0,0);}
.m6c_c00219{transform:matrix(0.314545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314545,0.000000,0.000000,0.250000,0,0);}
.m2b_c00219{transform:matrix(0.315086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315086,0.000000,0.000000,0.250000,0,0);}
.m99_c00219{transform:matrix(0.315191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315191,0.000000,0.000000,0.250000,0,0);}
.m37_c00219{transform:matrix(0.315389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315389,0.000000,0.000000,0.250000,0,0);}
.m6a_c00219{transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);}
.m73_c00219{transform:matrix(0.316232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316232,0.000000,0.000000,0.250000,0,0);}
.mb9_c00219{transform:matrix(0.317027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317027,0.000000,0.000000,0.250000,0,0);}
.m32_c00219{transform:matrix(0.317242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317242,0.000000,0.000000,0.250000,0,0);}
.m60_c00219{transform:matrix(0.317261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317261,0.000000,0.000000,0.250000,0,0);}
.m49_c00219{transform:matrix(0.317389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317389,0.000000,0.000000,0.250000,0,0);}
.m56_c00219{transform:matrix(0.317481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317481,0.000000,0.000000,0.250000,0,0);}
.m91_c00219{transform:matrix(0.317780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317780,0.000000,0.000000,0.250000,0,0);}
.m79_c00219{transform:matrix(0.318778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318778,0.000000,0.000000,0.250000,0,0);}
.m3f_c00219{transform:matrix(0.319038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319038,0.000000,0.000000,0.250000,0,0);}
.mb4_c00219{transform:matrix(0.319455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319455,0.000000,0.000000,0.250000,0,0);}
.m31_c00219{transform:matrix(0.321236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321236,0.000000,0.000000,0.250000,0,0);}
.m58_c00219{transform:matrix(0.322941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322941,0.000000,0.000000,0.250000,0,0);}
.m2a_c00219{transform:matrix(0.323587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323587,0.000000,0.000000,0.250000,0,0);}
.m7d_c00219{transform:matrix(0.324172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324172,0.000000,0.000000,0.250000,0,0);}
.m41_c00219{transform:matrix(0.326182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326182,0.000000,0.000000,0.250000,0,0);}
.m94_c00219{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m1d_c00219{transform:matrix(0.327852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327852,0.000000,0.000000,0.250000,0,0);}
.mb8_c00219{transform:matrix(0.328083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328083,0.000000,0.000000,0.250000,0,0);}
.m8e_c00219{transform:matrix(0.328429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328429,0.000000,0.000000,0.250000,0,0);}
.m50_c00219{transform:matrix(0.329979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329979,0.000000,0.000000,0.250000,0,0);}
.m35_c00219{transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);}
.mb6_c00219{transform:matrix(0.331746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331746,0.000000,0.000000,0.250000,0,0);}
.m18_c00219{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m75_c00219{transform:matrix(0.334019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334019,0.000000,0.000000,0.250000,0,0);}
.m9c_c00219{transform:matrix(0.336095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336095,0.000000,0.000000,0.250000,0,0);}
.mab_c00219{transform:matrix(0.338602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338602,0.000000,0.000000,0.250000,0,0);}
.ma9_c00219{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m87_c00219{transform:matrix(0.339312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339312,0.000000,0.000000,0.250000,0,0);}
.m5e_c00219{transform:matrix(0.339556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339556,0.000000,0.000000,0.250000,0,0);}
.m24_c00219{transform:matrix(0.343254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343254,0.000000,0.000000,0.250000,0,0);}
.m6e_c00219{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.m1c_c00219{transform:matrix(0.348765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348765,0.000000,0.000000,0.250000,0,0);}
.m57_c00219{transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);}
.mb7_c00219{transform:matrix(0.350318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350318,0.000000,0.000000,0.250000,0,0);}
.m85_c00219{transform:matrix(0.351540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351540,0.000000,0.000000,0.250000,0,0);}
.m78_c00219{transform:matrix(0.352464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352464,0.000000,0.000000,0.250000,0,0);}
.m19_c00219{transform:matrix(0.354266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354266,0.000000,0.000000,0.250000,0,0);}
.m4b_c00219{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m81_c00219{transform:matrix(0.355345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355345,0.000000,0.000000,0.250000,0,0);}
.mb1_c00219{transform:matrix(0.355739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355739,0.000000,0.000000,0.250000,0,0);}
.m65_c00219{transform:matrix(0.358652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358652,0.000000,0.000000,0.250000,0,0);}
.m67_c00219{transform:matrix(0.361926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361926,0.000000,0.000000,0.250000,0,0);}
.ma5_c00219{transform:matrix(0.362739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362739,0.000000,0.000000,0.250000,0,0);}
.mf_c00219{transform:matrix(0.370080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370080,0.000000,0.000000,0.250000,0,0);}
.m28_c00219{transform:matrix(0.372071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372071,0.000000,0.000000,0.250000,0,0);}
.m7f_c00219{transform:matrix(0.378961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378961,0.000000,0.000000,0.250000,0,0);}
.m9_c00219{transform:matrix(0.396487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396487,0.000000,0.000000,0.250000,0,0);}
.m10_c00219{transform:matrix(0.409186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409186,0.000000,0.000000,0.250000,0,0);}
.m9a_c00219{transform:matrix(0.414699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414699,0.000000,0.000000,0.250000,0,0);}
.m1e_c00219{transform:matrix(0.424628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424628,0.000000,0.000000,0.250000,0,0);}
.v0_c00219{vertical-align:0.000000px;}
.v1_c00219{vertical-align:17.087400px;}
.ls7_c00219{letter-spacing:-2.744280px;}
.lse_c00219{letter-spacing:-2.720758px;}
.lsa_c00219{letter-spacing:-1.474070px;}
.ls4_c00219{letter-spacing:0.000000px;}
.lsd_c00219{letter-spacing:0.172498px;}
.ls3_c00219{letter-spacing:0.705672px;}
.ls8_c00219{letter-spacing:2.438489px;}
.ls1_c00219{letter-spacing:3.112798px;}
.lsb_c00219{letter-spacing:3.191206px;}
.ls0_c00219{letter-spacing:3.379385px;}
.ls5_c00219{letter-spacing:3.573900px;}
.ls6_c00219{letter-spacing:3.920400px;}
.ls9_c00219{letter-spacing:49.896198px;}
.lsc_c00219{letter-spacing:64.152198px;}
.ls2_c00219{letter-spacing:71.016420px;}
.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;}
}
.wsc_c00219{word-spacing:-119.772154px;}
.ws2_c00219{word-spacing:-22.981385px;}
.ws9_c00219{word-spacing:-20.307672px;}
.wsd_c00219{word-spacing:-19.774498px;}
.ws0_c00219{word-spacing:-19.602000px;}
.ws7_c00219{word-spacing:-18.127930px;}
.wsf_c00219{word-spacing:-16.881242px;}
.ws3_c00219{word-spacing:-2.901096px;}
.ws4_c00219{word-spacing:-1.098504px;}
.ws1_c00219{word-spacing:-0.392040px;}
.wsb_c00219{word-spacing:-0.156816px;}
.ws10_c00219{word-spacing:0.000000px;}
.wsa_c00219{word-spacing:0.313632px;}
.ws6_c00219{word-spacing:2.037816px;}
.ws8_c00219{word-spacing:2.352240px;}
.ws5_c00219{word-spacing:3.685176px;}
.wse_c00219{word-spacing:3.763584px;}
._26_c00219{margin-left:-19.608336px;}
._0_c00219{margin-left:-14.427072px;}
._1b_c00219{margin-left:-11.996424px;}
._4_c00219{margin-left:-10.193040px;}
._25_c00219{margin-left:-8.614584px;}
._23_c00219{margin-left:-7.056720px;}
._21_c00219{margin-left:-3.881592px;}
._13_c00219{margin-left:-1.098108px;}
._15_c00219{width:1.165824px;}
._a_c00219{width:3.136716px;}
._8_c00219{width:4.469256px;}
._c_c00219{width:5.802588px;}
._2_c00219{width:7.213536px;}
._7_c00219{width:8.938512px;}
._5_c00219{width:10.036224px;}
._b_c00219{width:11.369160px;}
._1e_c00219{width:12.780504px;}
._10_c00219{width:14.191848px;}
._d_c00219{width:15.994836px;}
._19_c00219{width:17.406576px;}
._17_c00219{width:18.503892px;}
._1_c00219{width:20.778120px;}
._11_c00219{width:22.503096px;}
._e_c00219{width:23.679216px;}
._18_c00219{width:24.698916px;}
._16_c00219{width:26.579916px;}
._3_c00219{width:28.697328px;}
._1d_c00219{width:30.108276px;}
._9_c00219{width:31.833252px;}
._12_c00219{width:33.402204px;}
._f_c00219{width:34.499916px;}
._22_c00219{width:35.926704px;}
._6_c00219{width:37.175688px;}
._14_c00219{width:38.654748px;}
._20_c00219{width:39.761964px;}
._1a_c00219{width:44.142516px;}
._24_c00219{width:45.933307px;}
._1c_c00219{width:55.983312px;}
._1f_c00219{width:1226.311812px;}
.fc0_c00219{color:transparent;}
.fs0_c00219{font-size:22.176000px;}
.fs8_c00219{font-size:22.374000px;}
.fs7_c00219{font-size:39.600000px;}
.fs4_c00219{font-size:45.144000px;}
.fsa_c00219{font-size:46.134000px;}
.fs3_c00219{font-size:49.896198px;}
.fs9_c00219{font-size:50.292000px;}
.fs6_c00219{font-size:50.688000px;}
.fs5_c00219{font-size:64.152198px;}
.fs1_c00219{font-size:71.478000px;}
.fs2_c00219{font-size:78.408000px;}
.y0_c00219{bottom:0.000000px;}
.y21_c00219{bottom:31.626585px;}
.y1_c00219{bottom:76.500000px;}
.y20_c00219{bottom:93.996585px;}
.y1f_c00219{bottom:135.700335px;}
.y1e_c00219{bottom:157.084335px;}
.y1d_c00219{bottom:190.937385px;}
.y1a_c00219{bottom:255.094335px;}
.y1c_c00219{bottom:257.940585px;}
.y1b_c00219{bottom:264.004335px;}
.y19_c00219{bottom:286.808985px;}
.y18_c00219{bottom:319.597785px;}
.y17_c00219{bottom:351.678735px;}
.y22_c00219{bottom:383.754735px;}
.y16_c00219{bottom:384.467535px;}
.y15_c00219{bottom:399.787785px;}
.y14_c00219{bottom:419.033385px;}
.y13_c00219{bottom:449.327385px;}
.y12_c00219{bottom:451.470735px;}
.y11_c00219{bottom:512.415135px;}
.y10_c00219{bottom:545.203935px;}
.yf_c00219{bottom:577.274985px;}
.ye_c00219{bottom:609.707385px;}
.yd_c00219{bottom:641.788335px;}
.yc_c00219{bottom:673.151535px;}
.ya_c00219{bottom:705.940335px;}
.y9_c00219{bottom:738.372735px;}
.y8_c00219{bottom:770.443785px;}
.y7_c00219{bottom:803.232585px;}
.y6_c00219{bottom:870.597135px;}
.yb_c00219{bottom:880.214985px;}
.y5_c00219{bottom:902.668185px;}
.y4_c00219{bottom:936.174735px;}
.y3_c00219{bottom:1079.086185px;}
.y2_c00219{bottom:1079.442585px;}
.ha_c00219{height:21.958857px;}
.h2_c00219{height:23.128875px;}
.h5_c00219{height:33.230868px;}
.h9_c00219{height:41.301563px;}
.h7_c00219{height:42.725364px;}
.h6_c00219{height:47.083781px;}
.hc_c00219{height:48.116320px;}
.hb_c00219{height:49.358848px;}
.h8_c00219{height:52.866000px;}
.h3_c00219{height:70.151748px;}
.h4_c00219{height:76.953164px;}
.h1_c00219{height:1110.000000px;}
.h0_c00219{height:1263.000000px;}
.w1_c00219{width:751.500000px;}
.w0_c00219{width:892.500000px;}
.x0_c00219{left:0.000000px;}
.x4_c00219{left:69.221235px;}
.x1_c00219{left:70.500000px;}
.x2d_c00219{left:79.962735px;}
.x6e_c00219{left:81.096285px;}
.x56_c00219{left:90.407235px;}
.x38_c00219{left:91.590285px;}
.x63_c00219{left:92.728785px;}
.x14_c00219{left:101.099235px;}
.x5_c00219{left:102.896085px;}
.x2e_c00219{left:113.409885px;}
.x6_c00219{left:123.983085px;}
.x21_c00219{left:135.506685px;}
.x51_c00219{left:145.822485px;}
.x7_c00219{left:146.951085px;}
.x15_c00219{left:157.935135px;}
.x41_c00219{left:168.330135px;}
.x6b_c00219{left:170.582385px;}
.x27_c00219{left:179.254785px;}
.x64_c00219{left:180.695235px;}
.x45_c00219{left:190.298235px;}
.x5a_c00219{left:191.793135px;}
.x16_c00219{left:201.425835px;}
.x57_c00219{left:211.979235px;}
.x17_c00219{left:213.157335px;}
.x48_c00219{left:215.196735px;}
.x49_c00219{left:218.760735px;}
.x2f_c00219{left:223.502835px;}
.x8_c00219{left:234.962085px;}
.x39_c00219{left:246.129285px;}
.x5b_c00219{left:247.391535px;}
.x9_c00219{left:258.029085px;}
.x30_c00219{left:267.538035px;}
.x3a_c00219{left:268.721085px;}
.x52_c00219{left:270.290235px;}
.x4a_c00219{left:277.913235px;}
.x28_c00219{left:279.145785px;}
.x3b_c00219{left:290.550585px;}
.x6c_c00219{left:291.946485px;}
.xa_c00219{left:301.831635px;}
.x3c_c00219{left:312.889935px;}
.x31_c00219{left:323.720535px;}
.x61_c00219{left:331.729635px;}
.xb_c00219{left:334.189785px;}
.x3d_c00219{left:335.793585px;}
.x22_c00219{left:345.950985px;}
.x5c_c00219{left:355.964835px;}
.xc_c00219{left:357.365685px;}
.x65_c00219{left:358.603185px;}
.x29_c00219{left:366.656835px;}
.x23_c00219{left:367.755735px;}
.x4b_c00219{left:369.295185px;}
.x68_c00219{left:375.868785px;}
.x62_c00219{left:378.061635px;}
.x18_c00219{left:379.640685px;}
.x19_c00219{left:388.362585px;}
.x32_c00219{left:390.500985px;}
.x5f_c00219{left:393.079935px;}
.xd_c00219{left:401.712735px;}
.x2a_c00219{left:411.172185px;}
.x1a_c00219{left:412.825485px;}
.x1b_c00219{left:423.126435px;}
.xe_c00219{left:434.343135px;}
.x6d_c00219{left:435.570735px;}
.x46_c00219{left:445.030185px;}
.x24_c00219{left:455.360835px;}
.x33_c00219{left:456.900285px;}
.x3e_c00219{left:466.092435px;}
.x1c_c00219{left:467.671485px;}
.xf_c00219{left:468.730785px;}
.x34_c00219{left:478.239735px;}
.x4f_c00219{left:479.343585px;}
.x2b_c00219{left:489.649485px;}
.x42_c00219{left:491.183985px;}
.x1d_c00219{left:500.272185px;}
.x35_c00219{left:501.346335px;}
.x60_c00219{left:502.366035px;}
.x50_c00219{left:512.211585px;}
.x4c_c00219{left:513.280785px;}
.x1e_c00219{left:523.992585px;}
.x58_c00219{left:533.932185px;}
.x25_c00219{left:534.986535px;}
.x36_c00219{left:545.366685px;}
.x5e_c00219{left:548.831685px;}
.x53_c00219{left:555.509235px;}
.x10_c00219{left:567.394185px;}
.x47_c00219{left:578.150535px;}
.x26_c00219{left:589.510785px;}
.x2_c00219{left:596.812035px;}
.x11_c00219{left:600.643335px;}
.x1f_c00219{left:601.697685px;}
.x43_c00219{left:611.637285px;}
.x66_c00219{left:621.487785px;}
.x20_c00219{left:623.047035px;}
.x5d_c00219{left:624.056835px;}
.x67_c00219{left:632.174835px;}
.x12_c00219{left:633.927135px;}
.x59_c00219{left:645.173535px;}
.x3_c00219{left:646.539735px;}
.x3f_c00219{left:654.271635px;}
.x2c_c00219{left:656.182335px;}
.x4d_c00219{left:665.676435px;}
.x54_c00219{left:667.220835px;}
.x69_c00219{left:676.328835px;}
.x40_c00219{left:677.962335px;}
.x37_c00219{left:688.075185px;}
.x13_c00219{left:689.352285px;}
.x6a_c00219{left:693.881535px;}
.x4e_c00219{left:698.821635px;}
.x55_c00219{left:700.034385px;}
.x44_c00219{left:740.441235px;}
.x6f_c00219{left:746.856435px;}
@media print{
.v0_c00219{vertical-align:0.000000pt;}
.v1_c00219{vertical-align:15.188800pt;}
.ls7_c00219{letter-spacing:-2.439360pt;}
.lse_c00219{letter-spacing:-2.418451pt;}
.lsa_c00219{letter-spacing:-1.310285pt;}
.ls4_c00219{letter-spacing:0.000000pt;}
.lsd_c00219{letter-spacing:0.153331pt;}
.ls3_c00219{letter-spacing:0.627264pt;}
.ls8_c00219{letter-spacing:2.167546pt;}
.ls1_c00219{letter-spacing:2.766931pt;}
.lsb_c00219{letter-spacing:2.836627pt;}
.ls0_c00219{letter-spacing:3.003898pt;}
.ls5_c00219{letter-spacing:3.176800pt;}
.ls6_c00219{letter-spacing:3.484800pt;}
.ls9_c00219{letter-spacing:44.352176pt;}
.lsc_c00219{letter-spacing:57.024176pt;}
.ls2_c00219{letter-spacing:63.125706pt;}
.wsc_c00219{word-spacing:-106.464137pt;}
.ws2_c00219{word-spacing:-20.427898pt;}
.ws9_c00219{word-spacing:-18.051264pt;}
.wsd_c00219{word-spacing:-17.577331pt;}
.ws0_c00219{word-spacing:-17.424000pt;}
.ws7_c00219{word-spacing:-16.113715pt;}
.wsf_c00219{word-spacing:-15.005549pt;}
.ws3_c00219{word-spacing:-2.578752pt;}
.ws4_c00219{word-spacing:-0.976448pt;}
.ws1_c00219{word-spacing:-0.348480pt;}
.wsb_c00219{word-spacing:-0.139392pt;}
.ws10_c00219{word-spacing:0.000000pt;}
.wsa_c00219{word-spacing:0.278784pt;}
.ws6_c00219{word-spacing:1.811392pt;}
.ws8_c00219{word-spacing:2.090880pt;}
.ws5_c00219{word-spacing:3.275712pt;}
.wse_c00219{word-spacing:3.345408pt;}
._26_c00219{margin-left:-17.429632pt;}
._0_c00219{margin-left:-12.824064pt;}
._1b_c00219{margin-left:-10.663488pt;}
._4_c00219{margin-left:-9.060480pt;}
._25_c00219{margin-left:-7.657408pt;}
._23_c00219{margin-left:-6.272640pt;}
._21_c00219{margin-left:-3.450304pt;}
._13_c00219{margin-left:-0.976096pt;}
._15_c00219{width:1.036288pt;}
._a_c00219{width:2.788192pt;}
._8_c00219{width:3.972672pt;}
._c_c00219{width:5.157856pt;}
._2_c00219{width:6.412032pt;}
._7_c00219{width:7.945344pt;}
._5_c00219{width:8.921088pt;}
._b_c00219{width:10.105920pt;}
._1e_c00219{width:11.360448pt;}
._10_c00219{width:12.614976pt;}
._d_c00219{width:14.217632pt;}
._19_c00219{width:15.472512pt;}
._17_c00219{width:16.447904pt;}
._1_c00219{width:18.469440pt;}
._11_c00219{width:20.002752pt;}
._e_c00219{width:21.048192pt;}
._18_c00219{width:21.954592pt;}
._16_c00219{width:23.626592pt;}
._3_c00219{width:25.508736pt;}
._1d_c00219{width:26.762912pt;}
._9_c00219{width:28.296224pt;}
._12_c00219{width:29.690848pt;}
._f_c00219{width:30.666592pt;}
._22_c00219{width:31.934848pt;}
._6_c00219{width:33.045056pt;}
._14_c00219{width:34.359776pt;}
._20_c00219{width:35.343968pt;}
._1a_c00219{width:39.237792pt;}
._24_c00219{width:40.829606pt;}
._1c_c00219{width:49.762944pt;}
._1f_c00219{width:1090.054944pt;}
.fs0_c00219{font-size:19.712000pt;}
.fs8_c00219{font-size:19.888000pt;}
.fs7_c00219{font-size:35.200000pt;}
.fs4_c00219{font-size:40.128000pt;}
.fsa_c00219{font-size:41.008000pt;}
.fs3_c00219{font-size:44.352176pt;}
.fs9_c00219{font-size:44.704000pt;}
.fs6_c00219{font-size:45.056000pt;}
.fs5_c00219{font-size:57.024176pt;}
.fs1_c00219{font-size:63.536000pt;}
.fs2_c00219{font-size:69.696000pt;}
.y0_c00219{bottom:0.000000pt;}
.y21_c00219{bottom:28.112520pt;}
.y1_c00219{bottom:68.000000pt;}
.y20_c00219{bottom:83.552520pt;}
.y1f_c00219{bottom:120.622520pt;}
.y1e_c00219{bottom:139.630520pt;}
.y1d_c00219{bottom:169.722120pt;}
.y1a_c00219{bottom:226.750520pt;}
.y1c_c00219{bottom:229.280520pt;}
.y1b_c00219{bottom:234.670520pt;}
.y19_c00219{bottom:254.941320pt;}
.y18_c00219{bottom:284.086920pt;}
.y17_c00219{bottom:312.603320pt;}
.y22_c00219{bottom:341.115320pt;}
.y16_c00219{bottom:341.748920pt;}
.y15_c00219{bottom:355.366920pt;}
.y14_c00219{bottom:372.474120pt;}
.y13_c00219{bottom:399.402120pt;}
.y12_c00219{bottom:401.307320pt;}
.y11_c00219{bottom:455.480120pt;}
.y10_c00219{bottom:484.625720pt;}
.yf_c00219{bottom:513.133320pt;}
.ye_c00219{bottom:541.962120pt;}
.yd_c00219{bottom:570.478520pt;}
.yc_c00219{bottom:598.356920pt;}
.ya_c00219{bottom:627.502520pt;}
.y9_c00219{bottom:656.331320pt;}
.y8_c00219{bottom:684.838920pt;}
.y7_c00219{bottom:713.984520pt;}
.y6_c00219{bottom:773.864120pt;}
.yb_c00219{bottom:782.413320pt;}
.y5_c00219{bottom:802.371720pt;}
.y4_c00219{bottom:832.155320pt;}
.y3_c00219{bottom:959.187720pt;}
.y2_c00219{bottom:959.504520pt;}
.ha_c00219{height:19.518984pt;}
.h2_c00219{height:20.559000pt;}
.h5_c00219{height:29.538549pt;}
.h9_c00219{height:36.712500pt;}
.h7_c00219{height:37.978101pt;}
.h6_c00219{height:41.852250pt;}
.hc_c00219{height:42.770063pt;}
.hb_c00219{height:43.874531pt;}
.h8_c00219{height:46.992000pt;}
.h3_c00219{height:62.357109pt;}
.h4_c00219{height:68.402813pt;}
.h1_c00219{height:986.666667pt;}
.h0_c00219{height:1122.666667pt;}
.w1_c00219{width:668.000000pt;}
.w0_c00219{width:793.333333pt;}
.x0_c00219{left:0.000000pt;}
.x4_c00219{left:61.529987pt;}
.x1_c00219{left:62.666667pt;}
.x2d_c00219{left:71.077987pt;}
.x6e_c00219{left:72.085587pt;}
.x56_c00219{left:80.361987pt;}
.x38_c00219{left:81.413587pt;}
.x63_c00219{left:82.425587pt;}
.x14_c00219{left:89.865987pt;}
.x5_c00219{left:91.463187pt;}
.x2e_c00219{left:100.808787pt;}
.x6_c00219{left:110.207187pt;}
.x21_c00219{left:120.450387pt;}
.x51_c00219{left:129.619987pt;}
.x7_c00219{left:130.623187pt;}
.x15_c00219{left:140.386787pt;}
.x41_c00219{left:149.626787pt;}
.x6b_c00219{left:151.628787pt;}
.x27_c00219{left:159.337587pt;}
.x64_c00219{left:160.617987pt;}
.x45_c00219{left:169.153987pt;}
.x5a_c00219{left:170.482787pt;}
.x16_c00219{left:179.045187pt;}
.x57_c00219{left:188.425987pt;}
.x17_c00219{left:189.473187pt;}
.x48_c00219{left:191.285987pt;}
.x49_c00219{left:194.453987pt;}
.x2f_c00219{left:198.669187pt;}
.x8_c00219{left:208.855187pt;}
.x39_c00219{left:218.781587pt;}
.x5b_c00219{left:219.903587pt;}
.x9_c00219{left:229.359187pt;}
.x30_c00219{left:237.811587pt;}
.x3a_c00219{left:238.863187pt;}
.x52_c00219{left:240.257987pt;}
.x4a_c00219{left:247.033987pt;}
.x28_c00219{left:248.129587pt;}
.x3b_c00219{left:258.267187pt;}
.x6c_c00219{left:259.507987pt;}
.xa_c00219{left:268.294787pt;}
.x3c_c00219{left:278.124387pt;}
.x31_c00219{left:287.751587pt;}
.x61_c00219{left:294.870787pt;}
.xb_c00219{left:297.057587pt;}
.x3d_c00219{left:298.483187pt;}
.x22_c00219{left:307.511987pt;}
.x5c_c00219{left:316.413187pt;}
.xc_c00219{left:317.658387pt;}
.x65_c00219{left:318.758387pt;}
.x29_c00219{left:325.917187pt;}
.x23_c00219{left:326.893987pt;}
.x4b_c00219{left:328.262387pt;}
.x68_c00219{left:334.105587pt;}
.x62_c00219{left:336.054787pt;}
.x18_c00219{left:337.458387pt;}
.x19_c00219{left:345.211187pt;}
.x32_c00219{left:347.111987pt;}
.x5f_c00219{left:349.404387pt;}
.xd_c00219{left:357.077987pt;}
.x2a_c00219{left:365.486387pt;}
.x1a_c00219{left:366.955987pt;}
.x1b_c00219{left:376.112387pt;}
.xe_c00219{left:386.082787pt;}
.x6d_c00219{left:387.173987pt;}
.x46_c00219{left:395.582387pt;}
.x24_c00219{left:404.765187pt;}
.x33_c00219{left:406.133587pt;}
.x3e_c00219{left:414.304387pt;}
.x1c_c00219{left:415.707987pt;}
.xf_c00219{left:416.649587pt;}
.x34_c00219{left:425.101987pt;}
.x4f_c00219{left:426.083187pt;}
.x2b_c00219{left:435.243987pt;}
.x42_c00219{left:436.607987pt;}
.x1d_c00219{left:444.686387pt;}
.x35_c00219{left:445.641187pt;}
.x60_c00219{left:446.547587pt;}
.x50_c00219{left:455.299187pt;}
.x4c_c00219{left:456.249587pt;}
.x1e_c00219{left:465.771187pt;}
.x58_c00219{left:474.606387pt;}
.x25_c00219{left:475.543587pt;}
.x36_c00219{left:484.770387pt;}
.x5e_c00219{left:487.850387pt;}
.x53_c00219{left:493.785987pt;}
.x10_c00219{left:504.350387pt;}
.x47_c00219{left:513.911587pt;}
.x26_c00219{left:524.009587pt;}
.x2_c00219{left:530.499587pt;}
.x11_c00219{left:533.905187pt;}
.x1f_c00219{left:534.842387pt;}
.x43_c00219{left:543.677587pt;}
.x66_c00219{left:552.433587pt;}
.x20_c00219{left:553.819587pt;}
.x5d_c00219{left:554.717187pt;}
.x67_c00219{left:561.933187pt;}
.x12_c00219{left:563.490787pt;}
.x59_c00219{left:573.487587pt;}
.x3_c00219{left:574.701987pt;}
.x3f_c00219{left:581.574787pt;}
.x2c_c00219{left:583.273187pt;}
.x4d_c00219{left:591.712387pt;}
.x54_c00219{left:593.085187pt;}
.x69_c00219{left:601.181187pt;}
.x40_c00219{left:602.633187pt;}
.x37_c00219{left:611.622387pt;}
.x13_c00219{left:612.757587pt;}
.x6a_c00219{left:616.783587pt;}
.x4e_c00219{left:621.174787pt;}
.x55_c00219{left:622.252787pt;}
.x44_c00219{left:658.169987pt;}
.x6f_c00219{left:663.872387pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a68806377dda3896ee41b6db.woff2')format("woff");}.ff1_c00220{font-family:ff1_c00220;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00220;src:url('chunks/assets/font_11e041878c33b83aa51927f8.woff2')format("woff");}.ff2_c00220{font-family:ff2_c00220;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00220;src:url('chunks/assets/font_735a8423d042f746a63906af.woff2')format("woff");}.ff3_c00220{font-family:ff3_c00220;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00220;src:url('chunks/assets/font_86a8324aaa5923d978d9a1ce.woff2')format("woff");}.ff4_c00220{font-family:ff4_c00220;line-height:0.666000;font-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_c00220{transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00220{transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);}
.m99_c00220{transform:matrix(0.107612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107612,0.000000,0.000000,0.250000,0,0);}
.m8a_c00220{transform:matrix(0.171742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171742,0.000000,0.000000,0.250000,0,0);}
.m6c_c00220{transform:matrix(0.187499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187499,0.000000,0.000000,0.250000,0,0);}
.mb_c00220{transform:matrix(0.216830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216830,0.000000,0.000000,0.250000,0,0);}
.m75_c00220{transform:matrix(0.216865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216865,0.000000,0.000000,0.250000,0,0);}
.m98_c00220{transform:matrix(0.218497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218497,0.000000,0.000000,0.250000,0,0);}
.m59_c00220{transform:matrix(0.227167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227167,0.000000,0.000000,0.250000,0,0);}
.m8b_c00220{transform:matrix(0.231106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231106,0.000000,0.000000,0.250000,0,0);}
.m5d_c00220{transform:matrix(0.238687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238687,0.000000,0.000000,0.250000,0,0);}
.m72_c00220{transform:matrix(0.248196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248196,0.000000,0.000000,0.250000,0,0);}
.m0_c00220{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00220{transform:matrix(0.250051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250051,0.000000,0.000000,0.250000,0,0);}
.mac_c00220{transform:matrix(0.250812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250812,0.000000,0.000000,0.250000,0,0);}
.m49_c00220{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.m8f_c00220{transform:matrix(0.252094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252094,0.000000,0.000000,0.250000,0,0);}
.m70_c00220{transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);}
.mb5_c00220{transform:matrix(0.253581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253581,0.000000,0.000000,0.250000,0,0);}
.ma1_c00220{transform:matrix(0.253602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253602,0.000000,0.000000,0.250000,0,0);}
.m3b_c00220{transform:matrix(0.256268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256268,0.000000,0.000000,0.250000,0,0);}
.mbb_c00220{transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);}
.m5e_c00220{transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);}
.m4f_c00220{transform:matrix(0.259791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259791,0.000000,0.000000,0.250000,0,0);}
.m1e_c00220{transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);}
.m54_c00220{transform:matrix(0.261788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261788,0.000000,0.000000,0.250000,0,0);}
.ma6_c00220{transform:matrix(0.263196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263196,0.000000,0.000000,0.250000,0,0);}
.m27_c00220{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m7d_c00220{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m8_c00220{transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);}
.m55_c00220{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.ma8_c00220{transform:matrix(0.267205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267205,0.000000,0.000000,0.250000,0,0);}
.ma7_c00220{transform:matrix(0.267472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267472,0.000000,0.000000,0.250000,0,0);}
.md_c00220{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m32_c00220{transform:matrix(0.268115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268115,0.000000,0.000000,0.250000,0,0);}
.m15_c00220{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.m3_c00220{transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);}
.m9a_c00220{transform:matrix(0.270652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270652,0.000000,0.000000,0.250000,0,0);}
.mf_c00220{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m1b_c00220{transform:matrix(0.271578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271578,0.000000,0.000000,0.250000,0,0);}
.mae_c00220{transform:matrix(0.272153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272153,0.000000,0.000000,0.250000,0,0);}
.m30_c00220{transform:matrix(0.272293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272293,0.000000,0.000000,0.250000,0,0);}
.m6e_c00220{transform:matrix(0.272532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272532,0.000000,0.000000,0.250000,0,0);}
.m7c_c00220{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m53_c00220{transform:matrix(0.273113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273113,0.000000,0.000000,0.250000,0,0);}
.m3f_c00220{transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);}
.m87_c00220{transform:matrix(0.274262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274262,0.000000,0.000000,0.250000,0,0);}
.m13_c00220{transform:matrix(0.274708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274708,0.000000,0.000000,0.250000,0,0);}
.m41_c00220{transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);}
.m77_c00220{transform:matrix(0.275040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275040,0.000000,0.000000,0.250000,0,0);}
.m8d_c00220{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m8c_c00220{transform:matrix(0.275776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275776,0.000000,0.000000,0.250000,0,0);}
.ma3_c00220{transform:matrix(0.276460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276460,0.000000,0.000000,0.250000,0,0);}
.m79_c00220{transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);}
.m52_c00220{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.mb1_c00220{transform:matrix(0.277360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277360,0.000000,0.000000,0.250000,0,0);}
.m4d_c00220{transform:matrix(0.277596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277596,0.000000,0.000000,0.250000,0,0);}
.m62_c00220{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00220{transform:matrix(0.278107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278107,0.000000,0.000000,0.250000,0,0);}
.m90_c00220{transform:matrix(0.278536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278536,0.000000,0.000000,0.250000,0,0);}
.m2_c00220{transform:matrix(0.278641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278641,0.000000,0.000000,0.250000,0,0);}
.m84_c00220{transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);}
.m36_c00220{transform:matrix(0.280566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280566,0.000000,0.000000,0.250000,0,0);}
.m6_c00220{transform:matrix(0.280783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280783,0.000000,0.000000,0.250000,0,0);}
.m2a_c00220{transform:matrix(0.280858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280858,0.000000,0.000000,0.250000,0,0);}
.mb2_c00220{transform:matrix(0.280908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280908,0.000000,0.000000,0.250000,0,0);}
.m89_c00220{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.m78_c00220{transform:matrix(0.281782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281782,0.000000,0.000000,0.250000,0,0);}
.m80_c00220{transform:matrix(0.281836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281836,0.000000,0.000000,0.250000,0,0);}
.m9b_c00220{transform:matrix(0.282018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282018,0.000000,0.000000,0.250000,0,0);}
.m93_c00220{transform:matrix(0.283049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283049,0.000000,0.000000,0.250000,0,0);}
.m29_c00220{transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);}
.m8e_c00220{transform:matrix(0.284753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284753,0.000000,0.000000,0.250000,0,0);}
.ma9_c00220{transform:matrix(0.285047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285047,0.000000,0.000000,0.250000,0,0);}
.maa_c00220{transform:matrix(0.285539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285539,0.000000,0.000000,0.250000,0,0);}
.mab_c00220{transform:matrix(0.285787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285787,0.000000,0.000000,0.250000,0,0);}
.m37_c00220{transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);}
.mb3_c00220{transform:matrix(0.286415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286415,0.000000,0.000000,0.250000,0,0);}
.ma0_c00220{transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);}
.m19_c00220{transform:matrix(0.288109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288109,0.000000,0.000000,0.250000,0,0);}
.m69_c00220{transform:matrix(0.289570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289570,0.000000,0.000000,0.250000,0,0);}
.m6f_c00220{transform:matrix(0.289613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289613,0.000000,0.000000,0.250000,0,0);}
.m34_c00220{transform:matrix(0.289843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289843,0.000000,0.000000,0.250000,0,0);}
.m4b_c00220{transform:matrix(0.290129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290129,0.000000,0.000000,0.250000,0,0);}
.m42_c00220{transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);}
.m83_c00220{transform:matrix(0.290787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290787,0.000000,0.000000,0.250000,0,0);}
.m38_c00220{transform:matrix(0.290806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290806,0.000000,0.000000,0.250000,0,0);}
.mb4_c00220{transform:matrix(0.290958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290958,0.000000,0.000000,0.250000,0,0);}
.m1_c00220{transform:matrix(0.291458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291458,0.000000,0.000000,0.250000,0,0);}
.m68_c00220{transform:matrix(0.291634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291634,0.000000,0.000000,0.250000,0,0);}
.m86_c00220{transform:matrix(0.291652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291652,0.000000,0.000000,0.250000,0,0);}
.m7b_c00220{transform:matrix(0.291741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291741,0.000000,0.000000,0.250000,0,0);}
.m6d_c00220{transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);}
.m33_c00220{transform:matrix(0.292127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292127,0.000000,0.000000,0.250000,0,0);}
.m7e_c00220{transform:matrix(0.292181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292181,0.000000,0.000000,0.250000,0,0);}
.m39_c00220{transform:matrix(0.292392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292392,0.000000,0.000000,0.250000,0,0);}
.m40_c00220{transform:matrix(0.292604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292604,0.000000,0.000000,0.250000,0,0);}
.m88_c00220{transform:matrix(0.292898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292898,0.000000,0.000000,0.250000,0,0);}
.m43_c00220{transform:matrix(0.293651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293651,0.000000,0.000000,0.250000,0,0);}
.m9c_c00220{transform:matrix(0.293719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293719,0.000000,0.000000,0.250000,0,0);}
.m4e_c00220{transform:matrix(0.294463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294463,0.000000,0.000000,0.250000,0,0);}
.m24_c00220{transform:matrix(0.294521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294521,0.000000,0.000000,0.250000,0,0);}
.maf_c00220{transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);}
.ma2_c00220{transform:matrix(0.295385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295385,0.000000,0.000000,0.250000,0,0);}
.m22_c00220{transform:matrix(0.295641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295641,0.000000,0.000000,0.250000,0,0);}
.mc_c00220{transform:matrix(0.295851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295851,0.000000,0.000000,0.250000,0,0);}
.m4c_c00220{transform:matrix(0.296204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296204,0.000000,0.000000,0.250000,0,0);}
.m5_c00220{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m57_c00220{transform:matrix(0.297306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297306,0.000000,0.000000,0.250000,0,0);}
.m7_c00220{transform:matrix(0.297444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297444,0.000000,0.000000,0.250000,0,0);}
.m81_c00220{transform:matrix(0.298105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298105,0.000000,0.000000,0.250000,0,0);}
.mba_c00220{transform:matrix(0.298758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298758,0.000000,0.000000,0.250000,0,0);}
.m46_c00220{transform:matrix(0.299100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299100,0.000000,0.000000,0.250000,0,0);}
.m1d_c00220{transform:matrix(0.299508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299508,0.000000,0.000000,0.250000,0,0);}
.mb7_c00220{transform:matrix(0.299719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299719,0.000000,0.000000,0.250000,0,0);}
.mb8_c00220{transform:matrix(0.301189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301189,0.000000,0.000000,0.250000,0,0);}
.m12_c00220{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m3e_c00220{transform:matrix(0.302504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302504,0.000000,0.000000,0.250000,0,0);}
.m67_c00220{transform:matrix(0.302985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302985,0.000000,0.000000,0.250000,0,0);}
.m35_c00220{transform:matrix(0.303785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303785,0.000000,0.000000,0.250000,0,0);}
.ma5_c00220{transform:matrix(0.305499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305499,0.000000,0.000000,0.250000,0,0);}
.m64_c00220{transform:matrix(0.307871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307871,0.000000,0.000000,0.250000,0,0);}
.m85_c00220{transform:matrix(0.308389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308389,0.000000,0.000000,0.250000,0,0);}
.m58_c00220{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m5a_c00220{transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);}
.m1c_c00220{transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);}
.m61_c00220{transform:matrix(0.310202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310202,0.000000,0.000000,0.250000,0,0);}
.m20_c00220{transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);}
.m7f_c00220{transform:matrix(0.311181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311181,0.000000,0.000000,0.250000,0,0);}
.m5f_c00220{transform:matrix(0.311499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311499,0.000000,0.000000,0.250000,0,0);}
.m9f_c00220{transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);}
.m28_c00220{transform:matrix(0.312391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312391,0.000000,0.000000,0.250000,0,0);}
.m45_c00220{transform:matrix(0.313759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313759,0.000000,0.000000,0.250000,0,0);}
.m91_c00220{transform:matrix(0.313914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313914,0.000000,0.000000,0.250000,0,0);}
.m73_c00220{transform:matrix(0.314956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314956,0.000000,0.000000,0.250000,0,0);}
.m60_c00220{transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);}
.mad_c00220{transform:matrix(0.316535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316535,0.000000,0.000000,0.250000,0,0);}
.m65_c00220{transform:matrix(0.316973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316973,0.000000,0.000000,0.250000,0,0);}
.m76_c00220{transform:matrix(0.317707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317707,0.000000,0.000000,0.250000,0,0);}
.m96_c00220{transform:matrix(0.317864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317864,0.000000,0.000000,0.250000,0,0);}
.m9e_c00220{transform:matrix(0.317996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317996,0.000000,0.000000,0.250000,0,0);}
.m16_c00220{transform:matrix(0.320939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320939,0.000000,0.000000,0.250000,0,0);}
.m95_c00220{transform:matrix(0.321335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321335,0.000000,0.000000,0.250000,0,0);}
.m25_c00220{transform:matrix(0.321431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321431,0.000000,0.000000,0.250000,0,0);}
.m97_c00220{transform:matrix(0.321492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321492,0.000000,0.000000,0.250000,0,0);}
.m2d_c00220{transform:matrix(0.321523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321523,0.000000,0.000000,0.250000,0,0);}
.m26_c00220{transform:matrix(0.322081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322081,0.000000,0.000000,0.250000,0,0);}
.m48_c00220{transform:matrix(0.322448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322448,0.000000,0.000000,0.250000,0,0);}
.m1f_c00220{transform:matrix(0.322684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322684,0.000000,0.000000,0.250000,0,0);}
.m82_c00220{transform:matrix(0.322941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322941,0.000000,0.000000,0.250000,0,0);}
.m11_c00220{transform:matrix(0.323694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323694,0.000000,0.000000,0.250000,0,0);}
.m2f_c00220{transform:matrix(0.324057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324057,0.000000,0.000000,0.250000,0,0);}
.ma_c00220{transform:matrix(0.324566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324566,0.000000,0.000000,0.250000,0,0);}
.m18_c00220{transform:matrix(0.324676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324676,0.000000,0.000000,0.250000,0,0);}
.m74_c00220{transform:matrix(0.325919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325919,0.000000,0.000000,0.250000,0,0);}
.ma4_c00220{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.m63_c00220{transform:matrix(0.329090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329090,0.000000,0.000000,0.250000,0,0);}
.m21_c00220{transform:matrix(0.329576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329576,0.000000,0.000000,0.250000,0,0);}
.m2c_c00220{transform:matrix(0.329747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329747,0.000000,0.000000,0.250000,0,0);}
.m71_c00220{transform:matrix(0.330837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330837,0.000000,0.000000,0.250000,0,0);}
.mb6_c00220{transform:matrix(0.331863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331863,0.000000,0.000000,0.250000,0,0);}
.m4_c00220{transform:matrix(0.333124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333124,0.000000,0.000000,0.250000,0,0);}
.m9_c00220{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m94_c00220{transform:matrix(0.334881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334881,0.000000,0.000000,0.250000,0,0);}
.me_c00220{transform:matrix(0.335559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335559,0.000000,0.000000,0.250000,0,0);}
.m9d_c00220{transform:matrix(0.336348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336348,0.000000,0.000000,0.250000,0,0);}
.m3a_c00220{transform:matrix(0.338188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338188,0.000000,0.000000,0.250000,0,0);}
.m47_c00220{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m92_c00220{transform:matrix(0.339419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339419,0.000000,0.000000,0.250000,0,0);}
.mbc_c00220{transform:matrix(0.342665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342665,0.000000,0.000000,0.250000,0,0);}
.m2b_c00220{transform:matrix(0.343461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343461,0.000000,0.000000,0.250000,0,0);}
.m4a_c00220{transform:matrix(0.343503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343503,0.000000,0.000000,0.250000,0,0);}
.m51_c00220{transform:matrix(0.344754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344754,0.000000,0.000000,0.250000,0,0);}
.m23_c00220{transform:matrix(0.347316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347316,0.000000,0.000000,0.250000,0,0);}
.m3d_c00220{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m10_c00220{transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);}
.m14_c00220{transform:matrix(0.355170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355170,0.000000,0.000000,0.250000,0,0);}
.m44_c00220{transform:matrix(0.355222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355222,0.000000,0.000000,0.250000,0,0);}
.m7a_c00220{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m5b_c00220{transform:matrix(0.358126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358126,0.000000,0.000000,0.250000,0,0);}
.m50_c00220{transform:matrix(0.363431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363431,0.000000,0.000000,0.250000,0,0);}
.m56_c00220{transform:matrix(0.365549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365549,0.000000,0.000000,0.250000,0,0);}
.m5c_c00220{transform:matrix(0.366396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366396,0.000000,0.000000,0.250000,0,0);}
.m31_c00220{transform:matrix(0.369284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369284,0.000000,0.000000,0.250000,0,0);}
.m2e_c00220{transform:matrix(0.374714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374714,0.000000,0.000000,0.250000,0,0);}
.m66_c00220{transform:matrix(0.390133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390133,0.000000,0.000000,0.250000,0,0);}
.m1a_c00220{transform:matrix(0.414699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414699,0.000000,0.000000,0.250000,0,0);}
.mb0_c00220{transform:matrix(0.421610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421610,0.000000,0.000000,0.250000,0,0);}
.m3c_c00220{transform:matrix(0.438188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438188,0.000000,0.000000,0.250000,0,0);}
.v0_c00220{vertical-align:0.000000px;}
.lsa_c00220{letter-spacing:-2.952180px;}
.ls8_c00220{letter-spacing:-2.744280px;}
.ls10_c00220{letter-spacing:-2.391444px;}
.ls5_c00220{letter-spacing:0.000000px;}
.ls1_c00220{letter-spacing:0.533174px;}
.lsf_c00220{letter-spacing:1.434866px;}
.lse_c00220{letter-spacing:1.450548px;}
.ls3_c00220{letter-spacing:2.077812px;}
.ls9_c00220{letter-spacing:2.736439px;}
.lsc_c00220{letter-spacing:3.112798px;}
.lsd_c00220{letter-spacing:3.191206px;}
.ls4_c00220{letter-spacing:3.489156px;}
.ls6_c00220{letter-spacing:3.682810px;}
.ls2_c00220{letter-spacing:3.841992px;}
.ls7_c00220{letter-spacing:3.920400px;}
.ls0_c00220{letter-spacing:7.213536px;}
.lsb_c00220{letter-spacing:57.024198px;}
.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;}
}
.ws2_c00220{word-spacing:-26.815536px;}
.ws3_c00220{word-spacing:-22.793206px;}
.ws7_c00220{word-spacing:-21.679812px;}
.ws9_c00220{word-spacing:-21.036866px;}
.ws0_c00220{word-spacing:-19.602000px;}
.wsa_c00220{word-spacing:-17.210556px;}
.ws6_c00220{word-spacing:-3.841992px;}
.wsb_c00220{word-spacing:-1.646568px;}
.ws5_c00220{word-spacing:-0.156816px;}
.wsc_c00220{word-spacing:0.000000px;}
.ws1_c00220{word-spacing:0.784080px;}
.ws4_c00220{word-spacing:2.037816px;}
.ws8_c00220{word-spacing:3.605976px;}
._13_c00220{margin-left:-13.172544px;}
._19_c00220{margin-left:-8.546472px;}
._b_c00220{margin-left:-7.213536px;}
._1b_c00220{margin-left:-1.355825px;}
._14_c00220{width:1.208592px;}
._c_c00220{width:3.528360px;}
._e_c00220{width:4.626468px;}
._5_c00220{width:5.723784px;}
._6_c00220{width:7.683984px;}
._4_c00220{width:8.703288px;}
._1d_c00220{width:9.918612px;}
._0_c00220{width:10.977120px;}
._15_c00220{width:11.996820px;}
._7_c00220{width:13.172544px;}
._17_c00220{width:14.270256px;}
._10_c00220{width:15.367968px;}
._16_c00220{width:16.701696px;}
._9_c00220{width:20.856528px;}
._3_c00220{width:22.267872px;}
._1_c00220{width:23.679216px;}
._f_c00220{width:25.090560px;}
._1c_c00220{width:26.580312px;}
._11_c00220{width:28.336968px;}
._2_c00220{width:30.422304px;}
._d_c00220{width:32.382900px;}
._a_c00220{width:34.105896px;}
._8_c00220{width:35.296272px;}
._1a_c00220{width:37.124208px;}
._18_c00220{width:39.988080px;}
._12_c00220{width:45.241416px;}
.fc0_c00220{color:transparent;}
.fsb_c00220{font-size:22.176000px;}
.fs2_c00220{font-size:27.720000px;}
.fs4_c00220{font-size:33.660000px;}
.fs0_c00220{font-size:45.144000px;}
.fs5_c00220{font-size:50.688000px;}
.fs8_c00220{font-size:57.024198px;}
.fsc_c00220{font-size:66.330000px;}
.fs9_c00220{font-size:68.706198px;}
.fs1_c00220{font-size:73.656198px;}
.fsa_c00220{font-size:74.844000px;}
.fs3_c00220{font-size:78.408000px;}
.fs6_c00220{font-size:79.200000px;}
.fs7_c00220{font-size:84.348000px;}
.y0_c00220{bottom:0.000000px;}
.y26_c00220{bottom:61.922565px;}
.y25_c00220{bottom:69.053535px;}
.y1_c00220{bottom:76.500000px;}
.y24_c00220{bottom:82.593567px;}
.y23_c00220{bottom:90.793143px;}
.y22_c00220{bottom:106.471575px;}
.y21_c00220{bottom:134.274735px;}
.y20_c00220{bottom:156.727935px;}
.y1f_c00220{bottom:221.236335px;}
.y1e_c00220{bottom:254.025135px;}
.y1c_c00220{bottom:286.096185px;}
.y1b_c00220{bottom:318.533535px;}
.y1d_c00220{bottom:330.646185px;}
.y1a_c00220{bottom:350.965935px;}
.y2_c00220{bottom:375.908985px;}
.y19_c00220{bottom:383.041935px;}
.y18_c00220{bottom:415.117935px;}
.y17_c00220{bottom:447.550335px;}
.y16_c00220{bottom:479.626335px;}
.y15_c00220{bottom:511.702335px;}
.y14_c00220{bottom:544.129785px;}
.y13_c00220{bottom:567.295785px;}
.y12_c00220{bottom:576.562185px;}
.y11_c00220{bottom:611.845785px;}
.y10_c00220{bottom:616.478985px;}
.yf_c00220{bottom:616.835385px;}
.ye_c00220{bottom:634.298985px;}
.yd_c00220{bottom:665.662185px;}
.yc_c00220{bottom:698.450985px;}
.yb_c00220{bottom:731.239785px;}
.ya_c00220{bottom:765.815535px;}
.y9_c00220{bottom:799.312185px;}
.y8_c00220{bottom:837.095535px;}
.y7_c00220{bottom:864.533385px;}
.y6_c00220{bottom:896.614335px;}
.y5_c00220{bottom:929.754585px;}
.y4_c00220{bottom:1013.152185px;}
.y3_c00220{bottom:1076.234985px;}
.he_c00220{height:23.128875px;}
.h4_c00220{height:28.911094px;}
.h6_c00220{height:33.035449px;}
.hb_c00220{height:37.978116px;}
.h2_c00220{height:47.083781px;}
.h7_c00220{height:52.866000px;}
.hc_c00220{height:67.431376px;}
.hf_c00220{height:69.180117px;}
.h3_c00220{height:72.289530px;}
.hd_c00220{height:73.455293px;}
.h5_c00220{height:76.953164px;}
.h9_c00220{height:82.448438px;}
.h8_c00220{height:82.603125px;}
.ha_c00220{height:82.782949px;}
.h1_c00220{height:1110.000000px;}
.h0_c00220{height:1263.000000px;}
.w1_c00220{width:751.500000px;}
.w0_c00220{width:892.500000px;}
.x0_c00220{left:0.000000px;}
.x2_c00220{left:34.219785px;}
.x89_c00220{left:58.672785px;}
.x81_c00220{left:60.098385px;}
.x59_c00220{left:64.429635px;}
.x67_c00220{left:65.686935px;}
.x34_c00220{left:67.652085px;}
.x23_c00220{left:68.869785px;}
.x1_c00220{left:70.500000px;}
.x76_c00220{left:87.199635px;}
.x8a_c00220{left:88.605435px;}
.x5a_c00220{left:98.832135px;}
.x35_c00220{left:100.376535px;}
.x42_c00220{left:102.222885px;}
.x14_c00220{left:113.593035px;}
.x4d_c00220{left:121.216035px;}
.x2a_c00220{left:122.790135px;}
.x5_c00220{left:124.458285px;}
.x98_c00220{left:131.036835px;}
.x48_c00220{left:133.571235px;}
.x24_c00220{left:135.506685px;}
.x82_c00220{left:142.649535px;}
.x36_c00220{left:145.644285px;}
.x6_c00220{left:147.599535px;}
.x83_c00220{left:152.816835px;}
.x4_c00220{left:154.138485px;}
.x25_c00220{left:157.004535px;}
.x6f_c00220{left:165.092835px;}
.x2b_c00220{left:167.889585px;}
.x93_c00220{left:176.116485px;}
.x7_c00220{left:179.378535px;}
.x5b_c00220{left:186.645135px;}
.x26_c00220{left:189.837885px;}
.x4e_c00220{left:198.589485px;}
.x49_c00220{left:200.539785px;}
.x5c_c00220{left:210.340785px;}
.x3b_c00220{left:211.598085px;}
.x15_c00220{left:212.617785px;}
.x70_c00220{left:220.686285px;}
.x2c_c00220{left:223.057335px;}
.x4f_c00220{left:232.066335px;}
.x8b_c00220{left:233.665185px;}
.x8_c00220{left:235.481835px;}
.x84_c00220{left:242.580135px;}
.x16_c00220{left:246.124335px;}
.x9d_c00220{left:248.966427px;}
.x8c_c00220{left:254.123535px;}
.x5d_c00220{left:264.914535px;}
.x9a_c00220{left:265.924335px;}
.x27_c00220{left:268.438935px;}
.x77_c00220{left:274.705635px;}
.x68_c00220{left:275.878785px;}
.x9_c00220{left:279.888285px;}
.x85_c00220{left:287.837985px;}
.x17_c00220{left:290.402085px;}
.x5e_c00220{left:296.446035px;}
.x7e_c00220{left:298.025085px;}
.x43_c00220{left:299.609085px;}
.x37_c00220{left:300.826785px;}
.x2d_c00220{left:301.935585px;}
.x50_c00220{left:309.786285px;}
.xa_c00220{left:312.865185px;}
.x58_c00220{left:315.196635px;}
.x18_c00220{left:323.680935px;}
.x51_c00220{left:331.417785px;}
.x44_c00220{left:333.773985px;}
.x8d_c00220{left:341.352435px;}
.x71_c00220{left:342.575085px;}
.xb_c00220{left:345.579735px;}
.x78_c00220{left:353.786835px;}
.x45_c00220{left:356.350935px;}
.x19_c00220{left:357.543885px;}
.x5f_c00220{left:364.671885px;}
.x99_c00220{left:365.716335px;}
.x1a_c00220{left:368.394285px;}
.x60_c00220{left:376.403385px;}
.x3c_c00220{left:378.932835px;}
.xc_c00220{left:379.967385px;}
.x69_c00220{left:386.803335px;}
.x4a_c00220{left:389.144685px;}
.x46_c00220{left:390.253485px;}
.x28_c00220{left:392.550285px;}
.x79_c00220{left:397.693335px;}
.x8e_c00220{left:408.865485px;}
.x3d_c00220{left:410.815785px;}
.xd_c00220{left:412.073085px;}
.x94_c00220{left:418.691235px;}
.x52_c00220{left:419.894085px;}
.x1b_c00220{left:423.121485px;}
.x61_c00220{left:430.932585px;}
.x72_c00220{left:442.223535px;}
.x1c_c00220{left:445.926135px;}
.x73_c00220{left:452.197785px;}
.x7f_c00220{left:453.430335px;}
.x8f_c00220{left:454.504485px;}
.x2e_c00220{left:457.865535px;}
.x2f_c00220{left:461.167185px;}
.x6a_c00220{left:465.117285px;}
.xe_c00220{left:468.379335px;}
.x62_c00220{left:474.967785px;}
.x3e_c00220{left:478.685235px;}
.x90_c00220{left:480.887985px;}
.x86_c00220{left:485.338035px;}
.x74_c00220{left:486.382485px;}
.x1d_c00220{left:490.758285px;}
.x53_c00220{left:497.623935px;}
.x95_c00220{left:498.668385px;}
.x9b_c00220{left:503.790645px;}
.x6b_c00220{left:509.716785px;}
.x30_c00220{left:511.865085px;}
.xf_c00220{left:513.211485px;}
.x63_c00220{left:520.077135px;}
.x47_c00220{left:521.334435px;}
.x1e_c00220{left:523.259985px;}
.x54_c00220{left:530.571135px;}
.x91_c00220{left:531.650235px;}
.x38_c00220{left:533.758935px;}
.x7a_c00220{left:540.837435px;}
.x87_c00220{left:541.896735px;}
.x10_c00220{left:544.995435px;}
.x75_c00220{left:553.197585px;}
.x31_c00220{left:555.350835px;}
.x55_c00220{left:564.176685px;}
.x39_c00220{left:566.527935px;}
.x56_c00220{left:574.363785px;}
.x96_c00220{left:575.611185px;}
.x1f_c00220{left:589.203885px;}
.x7b_c00220{left:596.678385px;}
.x20_c00220{left:599.346435px;}
.x6c_c00220{left:607.751535px;}
.x11_c00220{left:611.686785px;}
.x6d_c00220{left:617.562435px;}
.x57_c00220{left:619.468185px;}
.x3f_c00220{left:622.007535px;}
.x64_c00220{left:629.833485px;}
.x12_c00220{left:633.268785px;}
.x65_c00220{left:641.035335px;}
.x3a_c00220{left:643.549935px;}
.x4b_c00220{left:644.718135px;}
.x6e_c00220{left:650.707635px;}
.x7c_c00220{left:652.603485px;}
.x40_c00220{left:654.236985px;}
.x3_c00220{left:656.513985px;}
.x80_c00220{left:662.112435px;}
.x92_c00220{left:664.023135px;}
.x32_c00220{left:666.201135px;}
.x66_c00220{left:674.111235px;}
.x33_c00220{left:676.012035px;}
.x13_c00220{left:677.947485px;}
.x7d_c00220{left:684.946785px;}
.x21_c00220{left:688.594935px;}
.x29_c00220{left:695.510085px;}
.x9e_c00220{left:696.579285px;}
.x41_c00220{left:697.752435px;}
.x88_c00220{left:707.706885px;}
.x4c_c00220{left:710.350185px;}
.x22_c00220{left:732.981585px;}
.x97_c00220{left:739.857135px;}
.x9c_c00220{left:747.926625px;}
@media print{
.v0_c00220{vertical-align:0.000000pt;}
.lsa_c00220{letter-spacing:-2.624160pt;}
.ls8_c00220{letter-spacing:-2.439360pt;}
.ls10_c00220{letter-spacing:-2.125728pt;}
.ls5_c00220{letter-spacing:0.000000pt;}
.ls1_c00220{letter-spacing:0.473933pt;}
.lsf_c00220{letter-spacing:1.275437pt;}
.lse_c00220{letter-spacing:1.289376pt;}
.ls3_c00220{letter-spacing:1.846944pt;}
.ls9_c00220{letter-spacing:2.432390pt;}
.lsc_c00220{letter-spacing:2.766931pt;}
.lsd_c00220{letter-spacing:2.836627pt;}
.ls4_c00220{letter-spacing:3.101472pt;}
.ls6_c00220{letter-spacing:3.273609pt;}
.ls2_c00220{letter-spacing:3.415104pt;}
.ls7_c00220{letter-spacing:3.484800pt;}
.ls0_c00220{letter-spacing:6.412032pt;}
.lsb_c00220{letter-spacing:50.688176pt;}
.ws2_c00220{word-spacing:-23.836032pt;}
.ws3_c00220{word-spacing:-20.260627pt;}
.ws7_c00220{word-spacing:-19.270944pt;}
.ws9_c00220{word-spacing:-18.699437pt;}
.ws0_c00220{word-spacing:-17.424000pt;}
.wsa_c00220{word-spacing:-15.298272pt;}
.ws6_c00220{word-spacing:-3.415104pt;}
.wsb_c00220{word-spacing:-1.463616pt;}
.ws5_c00220{word-spacing:-0.139392pt;}
.wsc_c00220{word-spacing:0.000000pt;}
.ws1_c00220{word-spacing:0.696960pt;}
.ws4_c00220{word-spacing:1.811392pt;}
.ws8_c00220{word-spacing:3.205312pt;}
._13_c00220{margin-left:-11.708928pt;}
._19_c00220{margin-left:-7.596864pt;}
._b_c00220{margin-left:-6.412032pt;}
._1b_c00220{margin-left:-1.205178pt;}
._14_c00220{width:1.074304pt;}
._c_c00220{width:3.136320pt;}
._e_c00220{width:4.112416pt;}
._5_c00220{width:5.087808pt;}
._6_c00220{width:6.830208pt;}
._4_c00220{width:7.736256pt;}
._1d_c00220{width:8.816544pt;}
._0_c00220{width:9.757440pt;}
._15_c00220{width:10.663840pt;}
._7_c00220{width:11.708928pt;}
._17_c00220{width:12.684672pt;}
._10_c00220{width:13.660416pt;}
._16_c00220{width:14.845952pt;}
._9_c00220{width:18.539136pt;}
._3_c00220{width:19.793664pt;}
._1_c00220{width:21.048192pt;}
._f_c00220{width:22.302720pt;}
._1c_c00220{width:23.626944pt;}
._11_c00220{width:25.188416pt;}
._2_c00220{width:27.042048pt;}
._d_c00220{width:28.784800pt;}
._a_c00220{width:30.316352pt;}
._8_c00220{width:31.374464pt;}
._1a_c00220{width:32.999296pt;}
._18_c00220{width:35.544960pt;}
._12_c00220{width:40.214592pt;}
.fsb_c00220{font-size:19.712000pt;}
.fs2_c00220{font-size:24.640000pt;}
.fs4_c00220{font-size:29.920000pt;}
.fs0_c00220{font-size:40.128000pt;}
.fs5_c00220{font-size:45.056000pt;}
.fs8_c00220{font-size:50.688176pt;}
.fsc_c00220{font-size:58.960000pt;}
.fs9_c00220{font-size:61.072176pt;}
.fs1_c00220{font-size:65.472176pt;}
.fsa_c00220{font-size:66.528000pt;}
.fs3_c00220{font-size:69.696000pt;}
.fs6_c00220{font-size:70.400000pt;}
.fs7_c00220{font-size:74.976000pt;}
.y0_c00220{bottom:0.000000pt;}
.y26_c00220{bottom:55.042280pt;}
.y25_c00220{bottom:61.380920pt;}
.y1_c00220{bottom:68.000000pt;}
.y24_c00220{bottom:73.416504pt;}
.y23_c00220{bottom:80.705016pt;}
.y22_c00220{bottom:94.641400pt;}
.y21_c00220{bottom:119.355320pt;}
.y20_c00220{bottom:139.313720pt;}
.y1f_c00220{bottom:196.654520pt;}
.y1e_c00220{bottom:225.800120pt;}
.y1c_c00220{bottom:254.307720pt;}
.y1b_c00220{bottom:283.140920pt;}
.y1d_c00220{bottom:293.907720pt;}
.y1a_c00220{bottom:311.969720pt;}
.y2_c00220{bottom:334.141320pt;}
.y19_c00220{bottom:340.481720pt;}
.y18_c00220{bottom:368.993720pt;}
.y17_c00220{bottom:397.822520pt;}
.y16_c00220{bottom:426.334520pt;}
.y15_c00220{bottom:454.846520pt;}
.y14_c00220{bottom:483.670920pt;}
.y13_c00220{bottom:504.262920pt;}
.y12_c00220{bottom:512.499720pt;}
.y11_c00220{bottom:543.862920pt;}
.y10_c00220{bottom:547.981320pt;}
.yf_c00220{bottom:548.298120pt;}
.ye_c00220{bottom:563.821320pt;}
.yd_c00220{bottom:591.699720pt;}
.yc_c00220{bottom:620.845320pt;}
.yb_c00220{bottom:649.990920pt;}
.ya_c00220{bottom:680.724920pt;}
.y9_c00220{bottom:710.499720pt;}
.y8_c00220{bottom:744.084920pt;}
.y7_c00220{bottom:768.474120pt;}
.y6_c00220{bottom:796.990520pt;}
.y5_c00220{bottom:826.448520pt;}
.y4_c00220{bottom:900.579720pt;}
.y3_c00220{bottom:956.653320pt;}
.he_c00220{height:20.559000pt;}
.h4_c00220{height:25.698750pt;}
.h6_c00220{height:29.364844pt;}
.hb_c00220{height:33.758325pt;}
.h2_c00220{height:41.852250pt;}
.h7_c00220{height:46.992000pt;}
.hc_c00220{height:59.939001pt;}
.hf_c00220{height:61.493438pt;}
.h3_c00220{height:64.257360pt;}
.hd_c00220{height:65.293594pt;}
.h5_c00220{height:68.402813pt;}
.h9_c00220{height:73.287500pt;}
.h8_c00220{height:73.425000pt;}
.ha_c00220{height:73.584844pt;}
.h1_c00220{height:986.666667pt;}
.h0_c00220{height:1122.666667pt;}
.w1_c00220{width:668.000000pt;}
.w0_c00220{width:793.333333pt;}
.x0_c00220{left:0.000000pt;}
.x2_c00220{left:30.417587pt;}
.x89_c00220{left:52.153587pt;}
.x81_c00220{left:53.420787pt;}
.x59_c00220{left:57.270787pt;}
.x67_c00220{left:58.388387pt;}
.x34_c00220{left:60.135187pt;}
.x23_c00220{left:61.217587pt;}
.x1_c00220{left:62.666667pt;}
.x76_c00220{left:77.510787pt;}
.x8a_c00220{left:78.760387pt;}
.x5a_c00220{left:87.850787pt;}
.x35_c00220{left:89.223587pt;}
.x42_c00220{left:90.864787pt;}
.x14_c00220{left:100.971587pt;}
.x4d_c00220{left:107.747587pt;}
.x2a_c00220{left:109.146787pt;}
.x5_c00220{left:110.629587pt;}
.x98_c00220{left:116.477187pt;}
.x48_c00220{left:118.729987pt;}
.x24_c00220{left:120.450387pt;}
.x82_c00220{left:126.799587pt;}
.x36_c00220{left:129.461587pt;}
.x6_c00220{left:131.199587pt;}
.x83_c00220{left:135.837187pt;}
.x4_c00220{left:137.011987pt;}
.x25_c00220{left:139.559587pt;}
.x6f_c00220{left:146.749187pt;}
.x2b_c00220{left:149.235187pt;}
.x93_c00220{left:156.547987pt;}
.x7_c00220{left:159.447587pt;}
.x5b_c00220{left:165.906787pt;}
.x26_c00220{left:168.744787pt;}
.x4e_c00220{left:176.523987pt;}
.x49_c00220{left:178.257587pt;}
.x5c_c00220{left:186.969587pt;}
.x3b_c00220{left:188.087187pt;}
.x15_c00220{left:188.993587pt;}
.x70_c00220{left:196.165587pt;}
.x2c_c00220{left:198.273187pt;}
.x4f_c00220{left:206.281187pt;}
.x8b_c00220{left:207.702387pt;}
.x8_c00220{left:209.317187pt;}
.x84_c00220{left:215.626787pt;}
.x16_c00220{left:218.777187pt;}
.x9d_c00220{left:221.303491pt;}
.x8c_c00220{left:225.887587pt;}
.x5d_c00220{left:235.479587pt;}
.x9a_c00220{left:236.377187pt;}
.x27_c00220{left:238.612387pt;}
.x77_c00220{left:244.182787pt;}
.x68_c00220{left:245.225587pt;}
.x9_c00220{left:248.789587pt;}
.x85_c00220{left:255.855987pt;}
.x17_c00220{left:258.135187pt;}
.x5e_c00220{left:263.507587pt;}
.x7e_c00220{left:264.911187pt;}
.x43_c00220{left:266.319187pt;}
.x37_c00220{left:267.401587pt;}
.x2d_c00220{left:268.387187pt;}
.x50_c00220{left:275.365587pt;}
.xa_c00220{left:278.102387pt;}
.x58_c00220{left:280.174787pt;}
.x18_c00220{left:287.716387pt;}
.x51_c00220{left:294.593587pt;}
.x44_c00220{left:296.687987pt;}
.x8d_c00220{left:303.424387pt;}
.x71_c00220{left:304.511187pt;}
.xb_c00220{left:307.181987pt;}
.x78_c00220{left:314.477187pt;}
.x45_c00220{left:316.756387pt;}
.x19_c00220{left:317.816787pt;}
.x5f_c00220{left:324.152787pt;}
.x99_c00220{left:325.081187pt;}
.x1a_c00220{left:327.461587pt;}
.x60_c00220{left:334.580787pt;}
.x3c_c00220{left:336.829187pt;}
.xc_c00220{left:337.748787pt;}
.x69_c00220{left:343.825187pt;}
.x4a_c00220{left:345.906387pt;}
.x46_c00220{left:346.891987pt;}
.x28_c00220{left:348.933587pt;}
.x79_c00220{left:353.505187pt;}
.x8e_c00220{left:363.435987pt;}
.x3d_c00220{left:365.169587pt;}
.xd_c00220{left:366.287187pt;}
.x94_c00220{left:372.169987pt;}
.x52_c00220{left:373.239187pt;}
.x1b_c00220{left:376.107987pt;}
.x61_c00220{left:383.051187pt;}
.x72_c00220{left:393.087587pt;}
.x1c_c00220{left:396.378787pt;}
.x73_c00220{left:401.953587pt;}
.x7f_c00220{left:403.049187pt;}
.x8f_c00220{left:404.003987pt;}
.x2e_c00220{left:406.991587pt;}
.x2f_c00220{left:409.926387pt;}
.x6a_c00220{left:413.437587pt;}
.xe_c00220{left:416.337187pt;}
.x62_c00220{left:422.193587pt;}
.x3e_c00220{left:425.497987pt;}
.x90_c00220{left:427.455987pt;}
.x86_c00220{left:431.411587pt;}
.x74_c00220{left:432.339987pt;}
.x1d_c00220{left:436.229587pt;}
.x53_c00220{left:442.332387pt;}
.x95_c00220{left:443.260787pt;}
.x9b_c00220{left:447.813907pt;}
.x6b_c00220{left:453.081587pt;}
.x30_c00220{left:454.991187pt;}
.xf_c00220{left:456.187987pt;}
.x63_c00220{left:462.290787pt;}
.x47_c00220{left:463.408387pt;}
.x1e_c00220{left:465.119987pt;}
.x54_c00220{left:471.618787pt;}
.x91_c00220{left:472.577987pt;}
.x38_c00220{left:474.452387pt;}
.x7a_c00220{left:480.744387pt;}
.x87_c00220{left:481.685987pt;}
.x10_c00220{left:484.440387pt;}
.x75_c00220{left:491.731187pt;}
.x31_c00220{left:493.645187pt;}
.x55_c00220{left:501.490387pt;}
.x39_c00220{left:503.580387pt;}
.x56_c00220{left:510.545587pt;}
.x96_c00220{left:511.654387pt;}
.x1f_c00220{left:523.736787pt;}
.x7b_c00220{left:530.380787pt;}
.x20_c00220{left:532.752387pt;}
.x6c_c00220{left:540.223587pt;}
.x11_c00220{left:543.721587pt;}
.x6d_c00220{left:548.944387pt;}
.x57_c00220{left:550.638387pt;}
.x3f_c00220{left:552.895587pt;}
.x64_c00220{left:559.851987pt;}
.x12_c00220{left:562.905587pt;}
.x65_c00220{left:569.809187pt;}
.x3a_c00220{left:572.044387pt;}
.x4b_c00220{left:573.082787pt;}
.x6e_c00220{left:578.406787pt;}
.x7c_c00220{left:580.091987pt;}
.x40_c00220{left:581.543987pt;}
.x3_c00220{left:583.567987pt;}
.x80_c00220{left:588.544387pt;}
.x92_c00220{left:590.242787pt;}
.x32_c00220{left:592.178787pt;}
.x66_c00220{left:599.209987pt;}
.x33_c00220{left:600.899587pt;}
.x13_c00220{left:602.619987pt;}
.x7d_c00220{left:608.841587pt;}
.x21_c00220{left:612.084387pt;}
.x29_c00220{left:618.231187pt;}
.x9e_c00220{left:619.181587pt;}
.x41_c00220{left:620.224387pt;}
.x88_c00220{left:629.072787pt;}
.x4c_c00220{left:631.422387pt;}
.x22_c00220{left:651.539187pt;}
.x97_c00220{left:657.650787pt;}
.x9c_c00220{left:664.823667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b8278a806eaadc6439edf4c3.woff2')format("woff");}.ff1_c00221{font-family:ff1_c00221;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00221;src:url('chunks/assets/font_064855f25571017f5f74b08f.woff2')format("woff");}.ff2_c00221{font-family:ff2_c00221;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00221;src:url('chunks/assets/font_372c0a0cfc605653ba002a0b.woff2')format("woff");}.ff3_c00221{font-family:ff3_c00221;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00221;src:url('chunks/assets/font_21a4a0e0c5fa2479024e6f2d.woff2')format("woff");}.ff4_c00221{font-family:ff4_c00221;line-height:0.666000;font-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_c00221{transform:matrix(0.088040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088040,0.000000,0.000000,0.250000,0,0);}
.mab_c00221{transform:matrix(0.104651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104651,0.000000,0.000000,0.250000,0,0);}
.ma9_c00221{transform:matrix(0.114825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114825,0.000000,0.000000,0.250000,0,0);}
.mac_c00221{transform:matrix(0.122093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122093,0.000000,0.000000,0.250000,0,0);}
.maa_c00221{transform:matrix(0.139535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139535,0.000000,0.000000,0.250000,0,0);}
.ma7_c00221{transform:matrix(0.152617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152617,0.000000,0.000000,0.250000,0,0);}
.m5d_c00221{transform:matrix(0.159054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159054,0.000000,0.000000,0.250000,0,0);}
.m26_c00221{transform:matrix(0.163707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163707,0.000000,0.000000,0.250000,0,0);}
.ma6_c00221{transform:matrix(0.170954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170954,0.000000,0.000000,0.250000,0,0);}
.ma8_c00221{transform:matrix(0.174418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174418,0.000000,0.000000,0.250000,0,0);}
.m56_c00221{transform:matrix(0.186607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186607,0.000000,0.000000,0.250000,0,0);}
.m27_c00221{transform:matrix(0.195262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195262,0.000000,0.000000,0.250000,0,0);}
.m55_c00221{transform:matrix(0.201652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201652,0.000000,0.000000,0.250000,0,0);}
.m29_c00221{transform:matrix(0.208014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208014,0.000000,0.000000,0.250000,0,0);}
.m7_c00221{transform:matrix(0.222764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222764,0.000000,0.000000,0.250000,0,0);}
.m92_c00221{transform:matrix(0.228669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228669,0.000000,0.000000,0.250000,0,0);}
.m62_c00221{transform:matrix(0.231886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231886,0.000000,0.000000,0.250000,0,0);}
.m8d_c00221{transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);}
.m85_c00221{transform:matrix(0.246899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246899,0.000000,0.000000,0.250000,0,0);}
.ma2_c00221{transform:matrix(0.249990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249990,0.000000,0.000000,0.250000,0,0);}
.m0_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);}
.mcd_c00221{transform:matrix(0.255432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255432,0.000000,0.000000,0.250000,0,0);}
.m2b_c00221{transform:matrix(0.257482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257482,0.000000,0.000000,0.250000,0,0);}
.mcb_c00221{transform:matrix(0.257703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257703,0.000000,0.000000,0.250000,0,0);}
.ma1_c00221{transform:matrix(0.258646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258646,0.000000,0.000000,0.250000,0,0);}
.m73_c00221{transform:matrix(0.259847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259847,0.000000,0.000000,0.250000,0,0);}
.m79_c00221{transform:matrix(0.262051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262051,0.000000,0.000000,0.250000,0,0);}
.m3b_c00221{transform:matrix(0.263314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263314,0.000000,0.000000,0.250000,0,0);}
.m24_c00221{transform:matrix(0.263614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263614,0.000000,0.000000,0.250000,0,0);}
.m11_c00221{transform:matrix(0.263965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263965,0.000000,0.000000,0.250000,0,0);}
.m48_c00221{transform:matrix(0.264018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264018,0.000000,0.000000,0.250000,0,0);}
.m7a_c00221{transform:matrix(0.264399,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264399,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264399,0.000000,0.000000,0.250000,0,0);}
.m35_c00221{transform:matrix(0.264571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264571,0.000000,0.000000,0.250000,0,0);}
.mc6_c00221{transform:matrix(0.265842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265842,0.000000,0.000000,0.250000,0,0);}
.m43_c00221{transform:matrix(0.266133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266133,0.000000,0.000000,0.250000,0,0);}
.mc0_c00221{transform:matrix(0.266341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266341,0.000000,0.000000,0.250000,0,0);}
.m32_c00221{transform:matrix(0.266936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266936,0.000000,0.000000,0.250000,0,0);}
.m93_c00221{transform:matrix(0.267018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267018,0.000000,0.000000,0.250000,0,0);}
.m8f_c00221{transform:matrix(0.267304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267304,0.000000,0.000000,0.250000,0,0);}
.mb_c00221{transform:matrix(0.268733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268733,0.000000,0.000000,0.250000,0,0);}
.maf_c00221{transform:matrix(0.268939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268939,0.000000,0.000000,0.250000,0,0);}
.m1a_c00221{transform:matrix(0.269227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269227,0.000000,0.000000,0.250000,0,0);}
.mbc_c00221{transform:matrix(0.269296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269296,0.000000,0.000000,0.250000,0,0);}
.mc_c00221{transform:matrix(0.269368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269368,0.000000,0.000000,0.250000,0,0);}
.m9d_c00221{transform:matrix(0.270541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270541,0.000000,0.000000,0.250000,0,0);}
.m1b_c00221{transform:matrix(0.271499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271499,0.000000,0.000000,0.250000,0,0);}
.m6f_c00221{transform:matrix(0.271702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271702,0.000000,0.000000,0.250000,0,0);}
.m21_c00221{transform:matrix(0.271786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271786,0.000000,0.000000,0.250000,0,0);}
.mb2_c00221{transform:matrix(0.272546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272546,0.000000,0.000000,0.250000,0,0);}
.m64_c00221{transform:matrix(0.273331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273331,0.000000,0.000000,0.250000,0,0);}
.m18_c00221{transform:matrix(0.273448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273448,0.000000,0.000000,0.250000,0,0);}
.m50_c00221{transform:matrix(0.273515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273515,0.000000,0.000000,0.250000,0,0);}
.mc3_c00221{transform:matrix(0.273635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273635,0.000000,0.000000,0.250000,0,0);}
.mcc_c00221{transform:matrix(0.274020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274020,0.000000,0.000000,0.250000,0,0);}
.m95_c00221{transform:matrix(0.274157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274157,0.000000,0.000000,0.250000,0,0);}
.m31_c00221{transform:matrix(0.274581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274581,0.000000,0.000000,0.250000,0,0);}
.m52_c00221{transform:matrix(0.274643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274643,0.000000,0.000000,0.250000,0,0);}
.m39_c00221{transform:matrix(0.274785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274785,0.000000,0.000000,0.250000,0,0);}
.m10_c00221{transform:matrix(0.275095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275095,0.000000,0.000000,0.250000,0,0);}
.m12_c00221{transform:matrix(0.276468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276468,0.000000,0.000000,0.250000,0,0);}
.m3d_c00221{transform:matrix(0.277356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277356,0.000000,0.000000,0.250000,0,0);}
.m91_c00221{transform:matrix(0.278867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278867,0.000000,0.000000,0.250000,0,0);}
.m4f_c00221{transform:matrix(0.279722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279722,0.000000,0.000000,0.250000,0,0);}
.m4e_c00221{transform:matrix(0.279778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279778,0.000000,0.000000,0.250000,0,0);}
.mb4_c00221{transform:matrix(0.280322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280322,0.000000,0.000000,0.250000,0,0);}
.m99_c00221{transform:matrix(0.280793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280793,0.000000,0.000000,0.250000,0,0);}
.m17_c00221{transform:matrix(0.280963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280963,0.000000,0.000000,0.250000,0,0);}
.m9b_c00221{transform:matrix(0.281875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281875,0.000000,0.000000,0.250000,0,0);}
.m34_c00221{transform:matrix(0.283079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283079,0.000000,0.000000,0.250000,0,0);}
.m1c_c00221{transform:matrix(0.283336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283336,0.000000,0.000000,0.250000,0,0);}
.mb1_c00221{transform:matrix(0.283494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283494,0.000000,0.000000,0.250000,0,0);}
.mae_c00221{transform:matrix(0.284157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284157,0.000000,0.000000,0.250000,0,0);}
.m76_c00221{transform:matrix(0.285157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285157,0.000000,0.000000,0.250000,0,0);}
.m6a_c00221{transform:matrix(0.285537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285537,0.000000,0.000000,0.250000,0,0);}
.m2d_c00221{transform:matrix(0.285738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285738,0.000000,0.000000,0.250000,0,0);}
.m9e_c00221{transform:matrix(0.287352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287352,0.000000,0.000000,0.250000,0,0);}
.m71_c00221{transform:matrix(0.287637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287637,0.000000,0.000000,0.250000,0,0);}
.m67_c00221{transform:matrix(0.287768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287768,0.000000,0.000000,0.250000,0,0);}
.m4c_c00221{transform:matrix(0.287983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287983,0.000000,0.000000,0.250000,0,0);}
.m77_c00221{transform:matrix(0.288584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288584,0.000000,0.000000,0.250000,0,0);}
.m49_c00221{transform:matrix(0.289394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289394,0.000000,0.000000,0.250000,0,0);}
.m40_c00221{transform:matrix(0.289614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289614,0.000000,0.000000,0.250000,0,0);}
.m94_c00221{transform:matrix(0.290370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290370,0.000000,0.000000,0.250000,0,0);}
.mce_c00221{transform:matrix(0.291155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291155,0.000000,0.000000,0.250000,0,0);}
.m2a_c00221{transform:matrix(0.291629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291629,0.000000,0.000000,0.250000,0,0);}
.m97_c00221{transform:matrix(0.293114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293114,0.000000,0.000000,0.250000,0,0);}
.m4a_c00221{transform:matrix(0.293220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293220,0.000000,0.000000,0.250000,0,0);}
.mc4_c00221{transform:matrix(0.294470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294470,0.000000,0.000000,0.250000,0,0);}
.m1_c00221{transform:matrix(0.296343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296343,0.000000,0.000000,0.250000,0,0);}
.m69_c00221{transform:matrix(0.296356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296356,0.000000,0.000000,0.250000,0,0);}
.m6d_c00221{transform:matrix(0.297010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297010,0.000000,0.000000,0.250000,0,0);}
.m57_c00221{transform:matrix(0.297543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297543,0.000000,0.000000,0.250000,0,0);}
.m72_c00221{transform:matrix(0.297592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297592,0.000000,0.000000,0.250000,0,0);}
.m38_c00221{transform:matrix(0.297817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297817,0.000000,0.000000,0.250000,0,0);}
.m46_c00221{transform:matrix(0.298303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298303,0.000000,0.000000,0.250000,0,0);}
.mb6_c00221{transform:matrix(0.298450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298450,0.000000,0.000000,0.250000,0,0);}
.mca_c00221{transform:matrix(0.299262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299262,0.000000,0.000000,0.250000,0,0);}
.m58_c00221{transform:matrix(0.299723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299723,0.000000,0.000000,0.250000,0,0);}
.m1e_c00221{transform:matrix(0.299875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299875,0.000000,0.000000,0.250000,0,0);}
.m9c_c00221{transform:matrix(0.301235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301235,0.000000,0.000000,0.250000,0,0);}
.m7d_c00221{transform:matrix(0.301590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301590,0.000000,0.000000,0.250000,0,0);}
.m90_c00221{transform:matrix(0.302222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302222,0.000000,0.000000,0.250000,0,0);}
.m3_c00221{transform:matrix(0.302682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302682,0.000000,0.000000,0.250000,0,0);}
.m53_c00221{transform:matrix(0.302970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302970,0.000000,0.000000,0.250000,0,0);}
.m96_c00221{transform:matrix(0.302993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302993,0.000000,0.000000,0.250000,0,0);}
.mc1_c00221{transform:matrix(0.303019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303019,0.000000,0.000000,0.250000,0,0);}
.m1d_c00221{transform:matrix(0.303104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303104,0.000000,0.000000,0.250000,0,0);}
.m65_c00221{transform:matrix(0.303232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303232,0.000000,0.000000,0.250000,0,0);}
.m75_c00221{transform:matrix(0.303393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303393,0.000000,0.000000,0.250000,0,0);}
.m45_c00221{transform:matrix(0.303488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303488,0.000000,0.000000,0.250000,0,0);}
.m3c_c00221{transform:matrix(0.304156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304156,0.000000,0.000000,0.250000,0,0);}
.m3a_c00221{transform:matrix(0.306021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306021,0.000000,0.000000,0.250000,0,0);}
.m33_c00221{transform:matrix(0.306813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306813,0.000000,0.000000,0.250000,0,0);}
.mb5_c00221{transform:matrix(0.307372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307372,0.000000,0.000000,0.250000,0,0);}
.mba_c00221{transform:matrix(0.307376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307376,0.000000,0.000000,0.250000,0,0);}
.m9f_c00221{transform:matrix(0.308044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308044,0.000000,0.000000,0.250000,0,0);}
.mb3_c00221{transform:matrix(0.308531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308531,0.000000,0.000000,0.250000,0,0);}
.mf_c00221{transform:matrix(0.308647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308647,0.000000,0.000000,0.250000,0,0);}
.m66_c00221{transform:matrix(0.308827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308827,0.000000,0.000000,0.250000,0,0);}
.m68_c00221{transform:matrix(0.309521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309521,0.000000,0.000000,0.250000,0,0);}
.m5e_c00221{transform:matrix(0.310036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310036,0.000000,0.000000,0.250000,0,0);}
.m51_c00221{transform:matrix(0.310222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310222,0.000000,0.000000,0.250000,0,0);}
.m60_c00221{transform:matrix(0.310330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310330,0.000000,0.000000,0.250000,0,0);}
.m2c_c00221{transform:matrix(0.310648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310648,0.000000,0.000000,0.250000,0,0);}
.m8a_c00221{transform:matrix(0.311402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311402,0.000000,0.000000,0.250000,0,0);}
.mb0_c00221{transform:matrix(0.312112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312112,0.000000,0.000000,0.250000,0,0);}
.ma4_c00221{transform:matrix(0.312198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312198,0.000000,0.000000,0.250000,0,0);}
.m41_c00221{transform:matrix(0.312403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312403,0.000000,0.000000,0.250000,0,0);}
.mcf_c00221{transform:matrix(0.312777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312777,0.000000,0.000000,0.250000,0,0);}
.mbf_c00221{transform:matrix(0.312814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312814,0.000000,0.000000,0.250000,0,0);}
.ma_c00221{transform:matrix(0.313216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313216,0.000000,0.000000,0.250000,0,0);}
.mc9_c00221{transform:matrix(0.313264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313264,0.000000,0.000000,0.250000,0,0);}
.m59_c00221{transform:matrix(0.314676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314676,0.000000,0.000000,0.250000,0,0);}
.m23_c00221{transform:matrix(0.314683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314683,0.000000,0.000000,0.250000,0,0);}
.m74_c00221{transform:matrix(0.315035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315035,0.000000,0.000000,0.250000,0,0);}
.mb7_c00221{transform:matrix(0.315228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315228,0.000000,0.000000,0.250000,0,0);}
.m7c_c00221{transform:matrix(0.315274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315274,0.000000,0.000000,0.250000,0,0);}
.m78_c00221{transform:matrix(0.316133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316133,0.000000,0.000000,0.250000,0,0);}
.m61_c00221{transform:matrix(0.316649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316649,0.000000,0.000000,0.250000,0,0);}
.m7e_c00221{transform:matrix(0.317309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317309,0.000000,0.000000,0.250000,0,0);}
.m8b_c00221{transform:matrix(0.317577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317577,0.000000,0.000000,0.250000,0,0);}
.m28_c00221{transform:matrix(0.317863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317863,0.000000,0.000000,0.250000,0,0);}
.m9a_c00221{transform:matrix(0.318391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318391,0.000000,0.000000,0.250000,0,0);}
.m44_c00221{transform:matrix(0.318479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318479,0.000000,0.000000,0.250000,0,0);}
.m63_c00221{transform:matrix(0.319023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319023,0.000000,0.000000,0.250000,0,0);}
.m6b_c00221{transform:matrix(0.319399,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319399,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319399,0.000000,0.000000,0.250000,0,0);}
.m82_c00221{transform:matrix(0.319885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319885,0.000000,0.000000,0.250000,0,0);}
.m6c_c00221{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);}
.m3f_c00221{transform:matrix(0.320255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320255,0.000000,0.000000,0.250000,0,0);}
.m36_c00221{transform:matrix(0.320528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320528,0.000000,0.000000,0.250000,0,0);}
.m87_c00221{transform:matrix(0.320571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320571,0.000000,0.000000,0.250000,0,0);}
.m16_c00221{transform:matrix(0.321014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321014,0.000000,0.000000,0.250000,0,0);}
.m84_c00221{transform:matrix(0.321358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321358,0.000000,0.000000,0.250000,0,0);}
.m86_c00221{transform:matrix(0.321481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321481,0.000000,0.000000,0.250000,0,0);}
.m89_c00221{transform:matrix(0.321639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321639,0.000000,0.000000,0.250000,0,0);}
.mc2_c00221{transform:matrix(0.322226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322226,0.000000,0.000000,0.250000,0,0);}
.m6_c00221{transform:matrix(0.324122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324122,0.000000,0.000000,0.250000,0,0);}
.m8_c00221{transform:matrix(0.324476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324476,0.000000,0.000000,0.250000,0,0);}
.m6e_c00221{transform:matrix(0.324535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324535,0.000000,0.000000,0.250000,0,0);}
.m7b_c00221{transform:matrix(0.324640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324640,0.000000,0.000000,0.250000,0,0);}
.m5a_c00221{transform:matrix(0.325267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325267,0.000000,0.000000,0.250000,0,0);}
.mbd_c00221{transform:matrix(0.325873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325873,0.000000,0.000000,0.250000,0,0);}
.mb8_c00221{transform:matrix(0.326091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326091,0.000000,0.000000,0.250000,0,0);}
.m3e_c00221{transform:matrix(0.326276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326276,0.000000,0.000000,0.250000,0,0);}
.md0_c00221{transform:matrix(0.326442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326442,0.000000,0.000000,0.250000,0,0);}
.m22_c00221{transform:matrix(0.329206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329206,0.000000,0.000000,0.250000,0,0);}
.me_c00221{transform:matrix(0.329599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329599,0.000000,0.000000,0.250000,0,0);}
.m25_c00221{transform:matrix(0.330235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330235,0.000000,0.000000,0.250000,0,0);}
.m15_c00221{transform:matrix(0.330329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330329,0.000000,0.000000,0.250000,0,0);}
.m4b_c00221{transform:matrix(0.330738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330738,0.000000,0.000000,0.250000,0,0);}
.m4d_c00221{transform:matrix(0.330927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330927,0.000000,0.000000,0.250000,0,0);}
.ma5_c00221{transform:matrix(0.332236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332236,0.000000,0.000000,0.250000,0,0);}
.m20_c00221{transform:matrix(0.332296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332296,0.000000,0.000000,0.250000,0,0);}
.m5f_c00221{transform:matrix(0.332311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332311,0.000000,0.000000,0.250000,0,0);}
.m37_c00221{transform:matrix(0.333398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333398,0.000000,0.000000,0.250000,0,0);}
.mbe_c00221{transform:matrix(0.335168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335168,0.000000,0.000000,0.250000,0,0);}
.m1f_c00221{transform:matrix(0.335672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335672,0.000000,0.000000,0.250000,0,0);}
.mc7_c00221{transform:matrix(0.336557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336557,0.000000,0.000000,0.250000,0,0);}
.m80_c00221{transform:matrix(0.336617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336617,0.000000,0.000000,0.250000,0,0);}
.m4_c00221{transform:matrix(0.336652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336652,0.000000,0.000000,0.250000,0,0);}
.m88_c00221{transform:matrix(0.336823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336823,0.000000,0.000000,0.250000,0,0);}
.m54_c00221{transform:matrix(0.338716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338716,0.000000,0.000000,0.250000,0,0);}
.md_c00221{transform:matrix(0.340094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340094,0.000000,0.000000,0.250000,0,0);}
.m83_c00221{transform:matrix(0.341959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341959,0.000000,0.000000,0.250000,0,0);}
.mc8_c00221{transform:matrix(0.343088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343088,0.000000,0.000000,0.250000,0,0);}
.m47_c00221{transform:matrix(0.345028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345028,0.000000,0.000000,0.250000,0,0);}
.m9_c00221{transform:matrix(0.346278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346278,0.000000,0.000000,0.250000,0,0);}
.m2e_c00221{transform:matrix(0.347026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347026,0.000000,0.000000,0.250000,0,0);}
.m5b_c00221{transform:matrix(0.347405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347405,0.000000,0.000000,0.250000,0,0);}
.m5c_c00221{transform:matrix(0.348622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348622,0.000000,0.000000,0.250000,0,0);}
.m98_c00221{transform:matrix(0.349240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349240,0.000000,0.000000,0.250000,0,0);}
.m70_c00221{transform:matrix(0.349575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349575,0.000000,0.000000,0.250000,0,0);}
.m13_c00221{transform:matrix(0.350514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350514,0.000000,0.000000,0.250000,0,0);}
.m8c_c00221{transform:matrix(0.350644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350644,0.000000,0.000000,0.250000,0,0);}
.m8e_c00221{transform:matrix(0.352461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352461,0.000000,0.000000,0.250000,0,0);}
.m7f_c00221{transform:matrix(0.354430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354430,0.000000,0.000000,0.250000,0,0);}
.ma3_c00221{transform:matrix(0.354531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354531,0.000000,0.000000,0.250000,0,0);}
.mc5_c00221{transform:matrix(0.356593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356593,0.000000,0.000000,0.250000,0,0);}
.m2f_c00221{transform:matrix(0.360945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360945,0.000000,0.000000,0.250000,0,0);}
.m5_c00221{transform:matrix(0.362651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362651,0.000000,0.000000,0.250000,0,0);}
.m14_c00221{transform:matrix(0.366046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366046,0.000000,0.000000,0.250000,0,0);}
.m19_c00221{transform:matrix(0.372382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372382,0.000000,0.000000,0.250000,0,0);}
.m30_c00221{transform:matrix(0.385061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385061,0.000000,0.000000,0.250000,0,0);}
.mbb_c00221{transform:matrix(0.388588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388588,0.000000,0.000000,0.250000,0,0);}
.mb9_c00221{transform:matrix(0.388922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388922,0.000000,0.000000,0.250000,0,0);}
.m81_c00221{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);}
.m2_c00221{transform:matrix(0.401188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401188,0.000000,0.000000,0.250000,0,0);}
.ma0_c00221{transform:matrix(0.431802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431802,0.000000,0.000000,0.250000,0,0);}
.m42_c00221{transform:matrix(0.433383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433383,0.000000,0.000000,0.250000,0,0);}
.v0_c00221{vertical-align:0.000000px;}
.v1_c00221{vertical-align:37.085400px;}
.ls4_c00221{letter-spacing:-2.688840px;}
.ls8_c00221{letter-spacing:-1.029442px;}
.ls9_c00221{letter-spacing:-0.706781px;}
.ls6_c00221{letter-spacing:-0.253519px;}
.lsb_c00221{letter-spacing:-0.230472px;}
.ls1_c00221{letter-spacing:0.000000px;}
.lsd_c00221{letter-spacing:0.599387px;}
.ls7_c00221{letter-spacing:1.751587px;}
.ls0_c00221{letter-spacing:2.135707px;}
.lse_c00221{letter-spacing:2.458368px;}
.ls2_c00221{letter-spacing:3.573900px;}
.ls3_c00221{letter-spacing:3.841200px;}
.ls5_c00221{letter-spacing:4.039200px;}
.lsf_c00221{letter-spacing:4.435200px;}
.lsa_c00221{letter-spacing:51.321798px;}
.lsc_c00221{letter-spacing:61.300998px;}
.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:-19.206000px;}
.ws2_c00221{word-spacing:-4.009421px;}
.ws3_c00221{word-spacing:0.000000px;}
.ws1_c00221{word-spacing:4.455792px;}
._1a_c00221{margin-left:-39.813048px;}
._17_c00221{margin-left:-30.884040px;}
._18_c00221{margin-left:-23.815440px;}
._6_c00221{margin-left:-14.903856px;}
._1b_c00221{margin-left:-10.141560px;}
._3_c00221{margin-left:-9.065232px;}
._19_c00221{margin-left:-3.841200px;}
._c_c00221{margin-left:-1.690524px;}
._1c_c00221{width:2.995740px;}
._12_c00221{width:5.087808px;}
._15_c00221{width:6.713784px;}
._11_c00221{width:7.836444px;}
._0_c00221{width:10.217592px;}
._e_c00221{width:11.501424px;}
._5_c00221{width:13.751496px;}
._8_c00221{width:16.363512px;}
._7_c00221{width:17.976816px;}
._a_c00221{width:21.280248px;}
._14_c00221{width:22.663080px;}
._4_c00221{width:24.258960px;}
._2_c00221{width:30.042144px;}
._1_c00221{width:32.155200px;}
._f_c00221{width:33.690096px;}
._d_c00221{width:34.801272px;}
._10_c00221{width:40.486248px;}
._9_c00221{width:41.656032px;}
._b_c00221{width:44.866008px;}
._13_c00221{width:46.478124px;}
._1e_c00221{width:78.170400px;}
._1d_c00221{width:244.520496px;}
._1f_c00221{width:380.972196px;}
._16_c00221{width:1804.777920px;}
.fc0_c00221{color:transparent;}
.fs11_c00221{font-size:21.186000px;}
.fs2_c00221{font-size:22.176000px;}
.fs5_c00221{font-size:22.572000px;}
.fs7_c00221{font-size:26.928000px;}
.fsb_c00221{font-size:27.720000px;}
.fs9_c00221{font-size:28.314000px;}
.fsf_c00221{font-size:32.868000px;}
.fs10_c00221{font-size:33.264000px;}
.fs0_c00221{font-size:38.808000px;}
.fsa_c00221{font-size:39.600000px;}
.fs12_c00221{font-size:44.352000px;}
.fs8_c00221{font-size:51.321798px;}
.fsc_c00221{font-size:61.300998px;}
.fsd_c00221{font-size:68.112198px;}
.fs1_c00221{font-size:71.478000px;}
.fs3_c00221{font-size:76.824000px;}
.fs4_c00221{font-size:80.784000px;}
.fse_c00221{font-size:88.704000px;}
.fs6_c00221{font-size:96.822198px;}
.y28_c00221{bottom:-1.879965px;}
.y0_c00221{bottom:0.000000px;}
.y1_c00221{bottom:76.500000px;}
.y27_c00221{bottom:95.431689px;}
.y26_c00221{bottom:112.529385px;}
.y25_c00221{bottom:143.184735px;}
.y24_c00221{bottom:151.025535px;}
.y21_c00221{bottom:157.435785px;}
.y23_c00221{bottom:157.797135px;}
.y22_c00221{bottom:165.989385px;}
.y20_c00221{bottom:192.006585px;}
.y1f_c00221{bottom:224.800335px;}
.y1e_c00221{bottom:257.227785px;}
.y1d_c00221{bottom:288.590985px;}
.y1c_c00221{bottom:315.320985px;}
.y1b_c00221{bottom:324.230985px;}
.y19_c00221{bottom:347.396985px;}
.y1a_c00221{bottom:349.183935px;}
.y18_c00221{bottom:379.477935px;}
.y17_c00221{bottom:411.905385px;}
.y16_c00221{bottom:443.629935px;}
.y15_c00221{bottom:476.062335px;}
.y14_c00221{bottom:508.489785px;}
.y13_c00221{bottom:540.570735px;}
.y12_c00221{bottom:572.285385px;}
.y11_c00221{bottom:604.717785px;}
.y10_c00221{bottom:636.437385px;}
.yf_c00221{bottom:700.232985px;}
.ye_c00221{bottom:714.493935px;}
.yd_c00221{bottom:733.383135px;}
.yc_c00221{bottom:765.454185px;}
.yb_c00221{bottom:781.140735px;}
.ya_c00221{bottom:792.540585px;}
.y9_c00221{bottom:798.960735px;}
.y8_c00221{bottom:832.100985px;}
.y7_c00221{bottom:864.538335px;}
.y6_c00221{bottom:897.327135px;}
.y5_c00221{bottom:929.759535px;}
.y2_c00221{bottom:933.318585px;}
.y4_c00221{bottom:970.384185px;}
.y3_c00221{bottom:1074.452985px;}
.h13_c00221{height:22.096336px;}
.h4_c00221{height:23.128875px;}
.h7_c00221{height:23.541891px;}
.h9_c00221{height:28.085063px;}
.hd_c00221{height:28.911094px;}
.hb_c00221{height:29.530617px;}
.ha_c00221{height:34.180317px;}
.h12_c00221{height:34.280297px;}
.h11_c00221{height:34.693313px;}
.h2_c00221{height:40.475531px;}
.he_c00221{height:40.826465px;}
.hc_c00221{height:41.301563px;}
.h14_c00221{height:46.257750px;}
.hf_c00221{height:66.848397px;}
.h3_c00221{height:72.036422px;}
.h5_c00221{height:75.398555px;}
.h6_c00221{height:81.415125px;}
.h10_c00221{height:87.058125px;}
.h8_c00221{height:95.025692px;}
.h1_c00221{height:1110.000000px;}
.h0_c00221{height:1263.000000px;}
.w1_c00221{width:751.500000px;}
.w0_c00221{width:892.500000px;}
.x0_c00221{left:0.000000px;}
.x2_c00221{left:9.395535px;}
.x1_c00221{left:70.500000px;}
.x5_c00221{left:76.893735px;}
.x10_c00221{left:78.759885px;}
.x77_c00221{left:90.575535px;}
.x6_c00221{left:100.529985px;}
.x6b_c00221{left:101.633835px;}
.x11_c00221{left:111.276435px;}
.x12_c00221{left:120.740835px;}
.x33_c00221{left:122.324835px;}
.x6f_c00221{left:123.329685px;}
.x61_c00221{left:127.819335px;}
.x1e_c00221{left:133.368285px;}
.x4f_c00221{left:134.417685px;}
.x29_c00221{left:144.139485px;}
.x5e_c00221{left:145.169085px;}
.x7_c00221{left:155.400735px;}
.x6c_c00221{left:157.227285px;}
.x2a_c00221{left:166.171935px;}
.x50_c00221{left:167.577735px;}
.x13_c00221{left:177.423285px;}
.x55_c00221{left:178.918185px;}
.x1f_c00221{left:187.352985px;}
.x3f_c00221{left:188.892435px;}
.x14_c00221{left:199.663635px;}
.x46_c00221{left:210.127935px;}
.x51_c00221{left:211.414935px;}
.x56_c00221{left:214.172085px;}
.x3e_c00221{left:221.275335px;}
.x15_c00221{left:222.369285px;}
.x70_c00221{left:229.279485px;}
.x20_c00221{left:233.031585px;}
.x40_c00221{left:245.248185px;}
.x49_c00221{left:246.960885px;}
.x16_c00221{left:254.771985px;}
.x57_c00221{left:255.964935px;}
.x78_c00221{left:259.855635px;}
.x17_c00221{left:266.691585px;}
.x62_c00221{left:267.711285px;}
.x39_c00221{left:275.651085px;}
.x2b_c00221{left:277.393485px;}
.x73_c00221{left:278.418135px;}
.x2c_c00221{left:279.645735px;}
.x2d_c00221{left:287.565735px;}
.x21_c00221{left:288.733935px;}
.x8_c00221{left:299.054685px;}
.x52_c00221{left:300.475335px;}
.x79_c00221{left:303.173085px;}
.x4a_c00221{left:310.860435px;}
.x74_c00221{left:311.924685px;}
.x18_c00221{left:321.324735px;}
.x4b_c00221{left:322.591935px;}
.x7a_c00221{left:323.928435px;}
.x9_c00221{left:331.803885px;}
.x6d_c00221{left:334.006635px;}
.x5b_c00221{left:344.644185px;}
.x19_c00221{left:355.682685px;}
.x34_c00221{left:365.721285px;}
.x5f_c00221{left:366.815235px;}
.x6e_c00221{left:374.854035px;}
.x2e_c00221{left:377.512185px;}
.x64_c00221{left:378.848685px;}
.x1a_c00221{left:388.189335px;}
.x2f_c00221{left:397.980435px;}
.x22_c00221{left:399.604035px;}
.x71_c00221{left:400.673235px;}
.x1b_c00221{left:410.256435px;}
.x4c_c00221{left:411.276135px;}
.x23_c00221{left:420.879135px;}
.x58_c00221{left:422.017635px;}
.xa_c00221{left:431.595885px;}
.x5c_c00221{left:432.838335px;}
.x4d_c00221{left:444.104535px;}
.x7f_c00221{left:446.030085px;}
.x53_c00221{left:447.614085px;}
.x42_c00221{left:455.197485px;}
.x24_c00221{left:464.270835px;}
.xb_c00221{left:466.176585px;}
.x3a_c00221{left:476.744835px;}
.x43_c00221{left:487.986285px;}
.x54_c00221{left:489.332685px;}
.x1c_c00221{left:499.019835px;}
.x7b_c00221{left:500.108835px;}
.x4_c00221{left:506.999235px;}
.x3b_c00221{left:510.092985px;}
.x65_c00221{left:518.166435px;}
.x25_c00221{left:520.780035px;}
.x44_c00221{left:521.799735px;}
.x75_c00221{left:523.190685px;}
.x26_c00221{left:532.165035px;}
.x60_c00221{left:533.605485px;}
.x30_c00221{left:541.292835px;}
.xc_c00221{left:543.500535px;}
.x59_c00221{left:554.994435px;}
.x35_c00221{left:565.364685px;}
.xd_c00221{left:575.536935px;}
.x5d_c00221{left:576.695235px;}
.x7c_c00221{left:580.373085px;}
.x31_c00221{left:585.798285px;}
.x5a_c00221{left:587.303085px;}
.x36_c00221{left:596.534835px;}
.x3c_c00221{left:597.851535px;}
.x41_c00221{left:599.103885px;}
.x27_c00221{left:609.127635px;}
.x66_c00221{left:614.364735px;}
.x1d_c00221{left:620.562135px;}
.x47_c00221{left:621.987735px;}
.x3d_c00221{left:631.615485px;}
.x67_c00221{left:633.654885px;}
.x48_c00221{left:642.812385px;}
.x68_c00221{left:643.945935px;}
.x69_c00221{left:652.855935px;}
.x45_c00221{left:654.603285px;}
.x3_c00221{left:665.171535px;}
.x6a_c00221{left:672.101535px;}
.x28_c00221{left:674.185485px;}
.xe_c00221{left:675.814035px;}
.x63_c00221{left:676.833735px;}
.x32_c00221{left:686.392185px;}
.x76_c00221{left:687.590085px;}
.x7e_c00221{left:694.018650px;}
.x37_c00221{left:697.009935px;}
.x4e_c00221{left:698.930535px;}
.x38_c00221{left:700.113585px;}
.x7d_c00221{left:703.642935px;}
.xf_c00221{left:708.959235px;}
.x72_c00221{left:710.315535px;}
@media print{
.v0_c00221{vertical-align:0.000000pt;}
.v1_c00221{vertical-align:32.964800pt;}
.ls4_c00221{letter-spacing:-2.390080pt;}
.ls8_c00221{letter-spacing:-0.915059pt;}
.ls9_c00221{letter-spacing:-0.628250pt;}
.ls6_c00221{letter-spacing:-0.225350pt;}
.lsb_c00221{letter-spacing:-0.204864pt;}
.ls1_c00221{letter-spacing:0.000000pt;}
.lsd_c00221{letter-spacing:0.532789pt;}
.ls7_c00221{letter-spacing:1.556966pt;}
.ls0_c00221{letter-spacing:1.898406pt;}
.lse_c00221{letter-spacing:2.185216pt;}
.ls2_c00221{letter-spacing:3.176800pt;}
.ls3_c00221{letter-spacing:3.414400pt;}
.ls5_c00221{letter-spacing:3.590400pt;}
.lsf_c00221{letter-spacing:3.942400pt;}
.lsa_c00221{letter-spacing:45.619376pt;}
.lsc_c00221{letter-spacing:54.489776pt;}
.ws0_c00221{word-spacing:-17.072000pt;}
.ws2_c00221{word-spacing:-3.563930pt;}
.ws3_c00221{word-spacing:0.000000pt;}
.ws1_c00221{word-spacing:3.960704pt;}
._1a_c00221{margin-left:-35.389376pt;}
._17_c00221{margin-left:-27.452480pt;}
._18_c00221{margin-left:-21.169280pt;}
._6_c00221{margin-left:-13.247872pt;}
._1b_c00221{margin-left:-9.014720pt;}
._3_c00221{margin-left:-8.057984pt;}
._19_c00221{margin-left:-3.414400pt;}
._c_c00221{margin-left:-1.502688pt;}
._1c_c00221{width:2.662880pt;}
._12_c00221{width:4.522496pt;}
._15_c00221{width:5.967808pt;}
._11_c00221{width:6.965728pt;}
._0_c00221{width:9.082304pt;}
._e_c00221{width:10.223488pt;}
._5_c00221{width:12.223552pt;}
._8_c00221{width:14.545344pt;}
._7_c00221{width:15.979392pt;}
._a_c00221{width:18.915776pt;}
._14_c00221{width:20.144960pt;}
._4_c00221{width:21.563520pt;}
._2_c00221{width:26.704128pt;}
._1_c00221{width:28.582400pt;}
._f_c00221{width:29.946752pt;}
._d_c00221{width:30.934464pt;}
._10_c00221{width:35.987776pt;}
._9_c00221{width:37.027584pt;}
._b_c00221{width:39.880896pt;}
._13_c00221{width:41.313888pt;}
._1e_c00221{width:69.484800pt;}
._1d_c00221{width:217.351552pt;}
._1f_c00221{width:338.641952pt;}
._16_c00221{width:1604.247040pt;}
.fs11_c00221{font-size:18.832000pt;}
.fs2_c00221{font-size:19.712000pt;}
.fs5_c00221{font-size:20.064000pt;}
.fs7_c00221{font-size:23.936000pt;}
.fsb_c00221{font-size:24.640000pt;}
.fs9_c00221{font-size:25.168000pt;}
.fsf_c00221{font-size:29.216000pt;}
.fs10_c00221{font-size:29.568000pt;}
.fs0_c00221{font-size:34.496000pt;}
.fsa_c00221{font-size:35.200000pt;}
.fs12_c00221{font-size:39.424000pt;}
.fs8_c00221{font-size:45.619376pt;}
.fsc_c00221{font-size:54.489776pt;}
.fsd_c00221{font-size:60.544176pt;}
.fs1_c00221{font-size:63.536000pt;}
.fs3_c00221{font-size:68.288000pt;}
.fs4_c00221{font-size:71.808000pt;}
.fse_c00221{font-size:78.848000pt;}
.fs6_c00221{font-size:86.064176pt;}
.y28_c00221{bottom:-1.671080pt;}
.y0_c00221{bottom:0.000000pt;}
.y1_c00221{bottom:68.000000pt;}
.y27_c00221{bottom:84.828168pt;}
.y26_c00221{bottom:100.026120pt;}
.y25_c00221{bottom:127.275320pt;}
.y24_c00221{bottom:134.244920pt;}
.y21_c00221{bottom:139.942920pt;}
.y23_c00221{bottom:140.264120pt;}
.y22_c00221{bottom:147.546120pt;}
.y20_c00221{bottom:170.672520pt;}
.y1f_c00221{bottom:199.822520pt;}
.y1e_c00221{bottom:228.646920pt;}
.y1d_c00221{bottom:256.525320pt;}
.y1c_c00221{bottom:280.285320pt;}
.y1b_c00221{bottom:288.205320pt;}
.y19_c00221{bottom:308.797320pt;}
.y1a_c00221{bottom:310.385720pt;}
.y18_c00221{bottom:337.313720pt;}
.y17_c00221{bottom:366.138120pt;}
.y16_c00221{bottom:394.337720pt;}
.y15_c00221{bottom:423.166520pt;}
.y14_c00221{bottom:451.990920pt;}
.y13_c00221{bottom:480.507320pt;}
.y12_c00221{bottom:508.698120pt;}
.y11_c00221{bottom:537.526920pt;}
.y10_c00221{bottom:565.722120pt;}
.yf_c00221{bottom:622.429320pt;}
.ye_c00221{bottom:635.105720pt;}
.yd_c00221{bottom:651.896120pt;}
.yc_c00221{bottom:680.403720pt;}
.yb_c00221{bottom:694.347320pt;}
.ya_c00221{bottom:704.480520pt;}
.y9_c00221{bottom:710.187320pt;}
.y8_c00221{bottom:739.645320pt;}
.y7_c00221{bottom:768.478520pt;}
.y6_c00221{bottom:797.624120pt;}
.y5_c00221{bottom:826.452920pt;}
.y2_c00221{bottom:829.616520pt;}
.y4_c00221{bottom:862.563720pt;}
.y3_c00221{bottom:955.069320pt;}
.h13_c00221{height:19.641188pt;}
.h4_c00221{height:20.559000pt;}
.h7_c00221{height:20.926125pt;}
.h9_c00221{height:24.964500pt;}
.hd_c00221{height:25.698750pt;}
.hb_c00221{height:26.249438pt;}
.ha_c00221{height:30.382504pt;}
.h12_c00221{height:30.471375pt;}
.h11_c00221{height:30.838500pt;}
.h2_c00221{height:35.978250pt;}
.he_c00221{height:36.290191pt;}
.hc_c00221{height:36.712500pt;}
.h14_c00221{height:41.118000pt;}
.hf_c00221{height:59.420798pt;}
.h3_c00221{height:64.032375pt;}
.h5_c00221{height:67.020938pt;}
.h6_c00221{height:72.369000pt;}
.h10_c00221{height:77.385000pt;}
.h8_c00221{height:84.467282pt;}
.h1_c00221{height:986.666667pt;}
.h0_c00221{height:1122.666667pt;}
.w1_c00221{width:668.000000pt;}
.w0_c00221{width:793.333333pt;}
.x0_c00221{left:0.000000pt;}
.x2_c00221{left:8.351587pt;}
.x1_c00221{left:62.666667pt;}
.x5_c00221{left:68.349987pt;}
.x10_c00221{left:70.008787pt;}
.x77_c00221{left:80.511587pt;}
.x6_c00221{left:89.359987pt;}
.x6b_c00221{left:90.341187pt;}
.x11_c00221{left:98.912387pt;}
.x12_c00221{left:107.325187pt;}
.x33_c00221{left:108.733187pt;}
.x6f_c00221{left:109.626387pt;}
.x61_c00221{left:113.617187pt;}
.x1e_c00221{left:118.549587pt;}
.x4f_c00221{left:119.482387pt;}
.x29_c00221{left:128.123987pt;}
.x5e_c00221{left:129.039187pt;}
.x7_c00221{left:138.133987pt;}
.x6c_c00221{left:139.757587pt;}
.x2a_c00221{left:147.708387pt;}
.x50_c00221{left:148.957987pt;}
.x13_c00221{left:157.709587pt;}
.x55_c00221{left:159.038387pt;}
.x1f_c00221{left:166.535987pt;}
.x3f_c00221{left:167.904387pt;}
.x14_c00221{left:177.478787pt;}
.x46_c00221{left:186.780387pt;}
.x51_c00221{left:187.924387pt;}
.x56_c00221{left:190.375187pt;}
.x3e_c00221{left:196.689187pt;}
.x15_c00221{left:197.661587pt;}
.x70_c00221{left:203.803987pt;}
.x20_c00221{left:207.139187pt;}
.x40_c00221{left:217.998387pt;}
.x49_c00221{left:219.520787pt;}
.x16_c00221{left:226.463987pt;}
.x57_c00221{left:227.524387pt;}
.x78_c00221{left:230.982787pt;}
.x17_c00221{left:237.059187pt;}
.x62_c00221{left:237.965587pt;}
.x39_c00221{left:245.023187pt;}
.x2b_c00221{left:246.571987pt;}
.x73_c00221{left:247.482787pt;}
.x2c_c00221{left:248.573987pt;}
.x2d_c00221{left:255.613987pt;}
.x21_c00221{left:256.652387pt;}
.x8_c00221{left:265.826387pt;}
.x52_c00221{left:267.089187pt;}
.x79_c00221{left:269.487187pt;}
.x4a_c00221{left:276.320387pt;}
.x74_c00221{left:277.266387pt;}
.x18_c00221{left:285.621987pt;}
.x4b_c00221{left:286.748387pt;}
.x7a_c00221{left:287.936387pt;}
.x9_c00221{left:294.936787pt;}
.x6d_c00221{left:296.894787pt;}
.x5b_c00221{left:306.350387pt;}
.x19_c00221{left:316.162387pt;}
.x34_c00221{left:325.085587pt;}
.x5f_c00221{left:326.057987pt;}
.x6e_c00221{left:333.203587pt;}
.x2e_c00221{left:335.566387pt;}
.x64_c00221{left:336.754387pt;}
.x1a_c00221{left:345.057187pt;}
.x2f_c00221{left:353.760387pt;}
.x22_c00221{left:355.203587pt;}
.x71_c00221{left:356.153987pt;}
.x1b_c00221{left:364.672387pt;}
.x4c_c00221{left:365.578787pt;}
.x23_c00221{left:374.114787pt;}
.x58_c00221{left:375.126787pt;}
.xa_c00221{left:383.640787pt;}
.x5c_c00221{left:384.745187pt;}
.x4d_c00221{left:394.759587pt;}
.x7f_c00221{left:396.471187pt;}
.x53_c00221{left:397.879187pt;}
.x42_c00221{left:404.619987pt;}
.x24_c00221{left:412.685187pt;}
.xb_c00221{left:414.379187pt;}
.x3a_c00221{left:423.773187pt;}
.x43_c00221{left:433.765587pt;}
.x54_c00221{left:434.962387pt;}
.x1c_c00221{left:443.573187pt;}
.x7b_c00221{left:444.541187pt;}
.x4_c00221{left:450.665987pt;}
.x3b_c00221{left:453.415987pt;}
.x65_c00221{left:460.592387pt;}
.x25_c00221{left:462.915587pt;}
.x44_c00221{left:463.821987pt;}
.x75_c00221{left:465.058387pt;}
.x26_c00221{left:473.035587pt;}
.x60_c00221{left:474.315987pt;}
.x30_c00221{left:481.149187pt;}
.xc_c00221{left:483.111587pt;}
.x59_c00221{left:493.328387pt;}
.x35_c00221{left:502.546387pt;}
.xd_c00221{left:511.588387pt;}
.x5d_c00221{left:512.617987pt;}
.x7c_c00221{left:515.887187pt;}
.x31_c00221{left:520.709587pt;}
.x5a_c00221{left:522.047187pt;}
.x36_c00221{left:530.253187pt;}
.x3c_c00221{left:531.423587pt;}
.x41_c00221{left:532.536787pt;}
.x27_c00221{left:541.446787pt;}
.x66_c00221{left:546.101987pt;}
.x1d_c00221{left:551.610787pt;}
.x47_c00221{left:552.877987pt;}
.x3d_c00221{left:561.435987pt;}
.x67_c00221{left:563.248787pt;}
.x48_c00221{left:571.388787pt;}
.x68_c00221{left:572.396387pt;}
.x69_c00221{left:580.316387pt;}
.x45_c00221{left:581.869587pt;}
.x3_c00221{left:591.263587pt;}
.x6a_c00221{left:597.423587pt;}
.x28_c00221{left:599.275987pt;}
.xe_c00221{left:600.723587pt;}
.x63_c00221{left:601.629987pt;}
.x32_c00221{left:610.126387pt;}
.x76_c00221{left:611.191187pt;}
.x7e_c00221{left:616.905467pt;}
.x37_c00221{left:619.564387pt;}
.x4e_c00221{left:621.271587pt;}
.x38_c00221{left:622.323187pt;}
.x7d_c00221{left:625.460387pt;}
.xf_c00221{left:630.185987pt;}
.x72_c00221{left:631.391587pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e2d73a396cdc7d33d67365b5.woff2')format("woff");}.ff1_c00222{font-family:ff1_c00222;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00222;src:url('chunks/assets/font_ea68c0f72b3904ea58bc1ce9.woff2')format("woff");}.ff2_c00222{font-family:ff2_c00222;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00222;src:url('chunks/assets/font_947a3cad44f4fcd83ee0c7e8.woff2')format("woff");}.ff3_c00222{font-family:ff3_c00222;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00222;src:url('chunks/assets/font_36e48f657e7679bd9eb8bab7.woff2')format("woff");}.ff4_c00222{font-family:ff4_c00222;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m85_c00222{transform:matrix(0.057693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.057693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.057693,0.000000,0.000000,0.250000,0,0);}
.m86_c00222{transform:matrix(0.089743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089743,0.000000,0.000000,0.250000,0,0);}
.m41_c00222{transform:matrix(0.113638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113638,0.000000,0.000000,0.250000,0,0);}
.m7e_c00222{transform:matrix(0.176137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176137,0.000000,0.000000,0.250000,0,0);}
.m4e_c00222{transform:matrix(0.177274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177274,0.000000,0.000000,0.250000,0,0);}
.m28_c00222{transform:matrix(0.195122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195122,0.000000,0.000000,0.250000,0,0);}
.m84_c00222{transform:matrix(0.197116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197116,0.000000,0.000000,0.250000,0,0);}
.ma0_c00222{transform:matrix(0.244716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244716,0.000000,0.000000,0.250000,0,0);}
.m0_c00222{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00222{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m39_c00222{transform:matrix(0.250825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250825,0.000000,0.000000,0.250000,0,0);}
.m8e_c00222{transform:matrix(0.251291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251291,0.000000,0.000000,0.250000,0,0);}
.m65_c00222{transform:matrix(0.251385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251385,0.000000,0.000000,0.250000,0,0);}
.m31_c00222{transform:matrix(0.251596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251596,0.000000,0.000000,0.250000,0,0);}
.m6_c00222{transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);}
.md_c00222{transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);}
.ma9_c00222{transform:matrix(0.254325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254325,0.000000,0.000000,0.250000,0,0);}
.m9_c00222{transform:matrix(0.254614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254614,0.000000,0.000000,0.250000,0,0);}
.m21_c00222{transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);}
.m90_c00222{transform:matrix(0.256118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256118,0.000000,0.000000,0.250000,0,0);}
.m66_c00222{transform:matrix(0.256348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256348,0.000000,0.000000,0.250000,0,0);}
.m17_c00222{transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);}
.ma3_c00222{transform:matrix(0.257133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257133,0.000000,0.000000,0.250000,0,0);}
.ma7_c00222{transform:matrix(0.257269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257269,0.000000,0.000000,0.250000,0,0);}
.m27_c00222{transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);}
.m16_c00222{transform:matrix(0.258186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258186,0.000000,0.000000,0.250000,0,0);}
.m60_c00222{transform:matrix(0.258427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258427,0.000000,0.000000,0.250000,0,0);}
.m74_c00222{transform:matrix(0.259376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259376,0.000000,0.000000,0.250000,0,0);}
.m7b_c00222{transform:matrix(0.259659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259659,0.000000,0.000000,0.250000,0,0);}
.mb_c00222{transform:matrix(0.259955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259955,0.000000,0.000000,0.250000,0,0);}
.mac_c00222{transform:matrix(0.260231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260231,0.000000,0.000000,0.250000,0,0);}
.m81_c00222{transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);}
.m89_c00222{transform:matrix(0.260545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260545,0.000000,0.000000,0.250000,0,0);}
.maf_c00222{transform:matrix(0.261055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261055,0.000000,0.000000,0.250000,0,0);}
.m94_c00222{transform:matrix(0.261877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261877,0.000000,0.000000,0.250000,0,0);}
.mc_c00222{transform:matrix(0.261958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261958,0.000000,0.000000,0.250000,0,0);}
.m29_c00222{transform:matrix(0.263075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263075,0.000000,0.000000,0.250000,0,0);}
.m99_c00222{transform:matrix(0.263686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263686,0.000000,0.000000,0.250000,0,0);}
.m1e_c00222{transform:matrix(0.264595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264595,0.000000,0.000000,0.250000,0,0);}
.m11_c00222{transform:matrix(0.265552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265552,0.000000,0.000000,0.250000,0,0);}
.m82_c00222{transform:matrix(0.265873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265873,0.000000,0.000000,0.250000,0,0);}
.mab_c00222{transform:matrix(0.266448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266448,0.000000,0.000000,0.250000,0,0);}
.m8f_c00222{transform:matrix(0.267076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267076,0.000000,0.000000,0.250000,0,0);}
.ma_c00222{transform:matrix(0.267629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267629,0.000000,0.000000,0.250000,0,0);}
.m15_c00222{transform:matrix(0.267673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267673,0.000000,0.000000,0.250000,0,0);}
.m45_c00222{transform:matrix(0.267858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267858,0.000000,0.000000,0.250000,0,0);}
.m1b_c00222{transform:matrix(0.268141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268141,0.000000,0.000000,0.250000,0,0);}
.m7c_c00222{transform:matrix(0.268222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268222,0.000000,0.000000,0.250000,0,0);}
.ma2_c00222{transform:matrix(0.268562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268562,0.000000,0.000000,0.250000,0,0);}
.m7f_c00222{transform:matrix(0.268781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268781,0.000000,0.000000,0.250000,0,0);}
.m59_c00222{transform:matrix(0.269187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269187,0.000000,0.000000,0.250000,0,0);}
.m68_c00222{transform:matrix(0.269991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269991,0.000000,0.000000,0.250000,0,0);}
.mae_c00222{transform:matrix(0.270070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270070,0.000000,0.000000,0.250000,0,0);}
.m36_c00222{transform:matrix(0.270195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270195,0.000000,0.000000,0.250000,0,0);}
.m3b_c00222{transform:matrix(0.270269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270269,0.000000,0.000000,0.250000,0,0);}
.m42_c00222{transform:matrix(0.271534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271534,0.000000,0.000000,0.250000,0,0);}
.m1_c00222{transform:matrix(0.272082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272082,0.000000,0.000000,0.250000,0,0);}
.m7a_c00222{transform:matrix(0.272371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272371,0.000000,0.000000,0.250000,0,0);}
.m6c_c00222{transform:matrix(0.273059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273059,0.000000,0.000000,0.250000,0,0);}
.m38_c00222{transform:matrix(0.273249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273249,0.000000,0.000000,0.250000,0,0);}
.m4d_c00222{transform:matrix(0.273353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273353,0.000000,0.000000,0.250000,0,0);}
.ma6_c00222{transform:matrix(0.273679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273679,0.000000,0.000000,0.250000,0,0);}
.m87_c00222{transform:matrix(0.273859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273859,0.000000,0.000000,0.250000,0,0);}
.m6f_c00222{transform:matrix(0.274699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274699,0.000000,0.000000,0.250000,0,0);}
.m34_c00222{transform:matrix(0.275369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275369,0.000000,0.000000,0.250000,0,0);}
.m4_c00222{transform:matrix(0.275702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275702,0.000000,0.000000,0.250000,0,0);}
.m5f_c00222{transform:matrix(0.275805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275805,0.000000,0.000000,0.250000,0,0);}
.m3d_c00222{transform:matrix(0.275826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275826,0.000000,0.000000,0.250000,0,0);}
.m8a_c00222{transform:matrix(0.276127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276127,0.000000,0.000000,0.250000,0,0);}
.m97_c00222{transform:matrix(0.276355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276355,0.000000,0.000000,0.250000,0,0);}
.m63_c00222{transform:matrix(0.276780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276780,0.000000,0.000000,0.250000,0,0);}
.m55_c00222{transform:matrix(0.277015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277015,0.000000,0.000000,0.250000,0,0);}
.m1d_c00222{transform:matrix(0.277368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277368,0.000000,0.000000,0.250000,0,0);}
.mf_c00222{transform:matrix(0.277590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277590,0.000000,0.000000,0.250000,0,0);}
.m44_c00222{transform:matrix(0.278222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278222,0.000000,0.000000,0.250000,0,0);}
.m40_c00222{transform:matrix(0.278285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278285,0.000000,0.000000,0.250000,0,0);}
.m4f_c00222{transform:matrix(0.278521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278521,0.000000,0.000000,0.250000,0,0);}
.me_c00222{transform:matrix(0.278680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278680,0.000000,0.000000,0.250000,0,0);}
.m7d_c00222{transform:matrix(0.278923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278923,0.000000,0.000000,0.250000,0,0);}
.m52_c00222{transform:matrix(0.279096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279096,0.000000,0.000000,0.250000,0,0);}
.m2a_c00222{transform:matrix(0.279195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279195,0.000000,0.000000,0.250000,0,0);}
.m77_c00222{transform:matrix(0.279706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279706,0.000000,0.000000,0.250000,0,0);}
.m18_c00222{transform:matrix(0.280468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280468,0.000000,0.000000,0.250000,0,0);}
.m37_c00222{transform:matrix(0.280631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280631,0.000000,0.000000,0.250000,0,0);}
.m9d_c00222{transform:matrix(0.280770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280770,0.000000,0.000000,0.250000,0,0);}
.m70_c00222{transform:matrix(0.281213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281213,0.000000,0.000000,0.250000,0,0);}
.m93_c00222{transform:matrix(0.281435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281435,0.000000,0.000000,0.250000,0,0);}
.m5a_c00222{transform:matrix(0.281808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281808,0.000000,0.000000,0.250000,0,0);}
.m50_c00222{transform:matrix(0.281999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281999,0.000000,0.000000,0.250000,0,0);}
.m6b_c00222{transform:matrix(0.282176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282176,0.000000,0.000000,0.250000,0,0);}
.m33_c00222{transform:matrix(0.282814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282814,0.000000,0.000000,0.250000,0,0);}
.m6a_c00222{transform:matrix(0.282943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282943,0.000000,0.000000,0.250000,0,0);}
.m91_c00222{transform:matrix(0.284143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284143,0.000000,0.000000,0.250000,0,0);}
.m23_c00222{transform:matrix(0.284641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284641,0.000000,0.000000,0.250000,0,0);}
.m10_c00222{transform:matrix(0.285286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285286,0.000000,0.000000,0.250000,0,0);}
.m2f_c00222{transform:matrix(0.285301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285301,0.000000,0.000000,0.250000,0,0);}
.m53_c00222{transform:matrix(0.285567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285567,0.000000,0.000000,0.250000,0,0);}
.m56_c00222{transform:matrix(0.286164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286164,0.000000,0.000000,0.250000,0,0);}
.m1c_c00222{transform:matrix(0.286714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286714,0.000000,0.000000,0.250000,0,0);}
.m30_c00222{transform:matrix(0.286785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286785,0.000000,0.000000,0.250000,0,0);}
.m4b_c00222{transform:matrix(0.286788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286788,0.000000,0.000000,0.250000,0,0);}
.m13_c00222{transform:matrix(0.287158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287158,0.000000,0.000000,0.250000,0,0);}
.m4c_c00222{transform:matrix(0.287729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287729,0.000000,0.000000,0.250000,0,0);}
.m2_c00222{transform:matrix(0.287772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287772,0.000000,0.000000,0.250000,0,0);}
.mb0_c00222{transform:matrix(0.288228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288228,0.000000,0.000000,0.250000,0,0);}
.m9f_c00222{transform:matrix(0.288378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288378,0.000000,0.000000,0.250000,0,0);}
.m2e_c00222{transform:matrix(0.288473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288473,0.000000,0.000000,0.250000,0,0);}
.m20_c00222{transform:matrix(0.288563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288563,0.000000,0.000000,0.250000,0,0);}
.m32_c00222{transform:matrix(0.288681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288681,0.000000,0.000000,0.250000,0,0);}
.m95_c00222{transform:matrix(0.288689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288689,0.000000,0.000000,0.250000,0,0);}
.m71_c00222{transform:matrix(0.288886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288886,0.000000,0.000000,0.250000,0,0);}
.m88_c00222{transform:matrix(0.290326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290326,0.000000,0.000000,0.250000,0,0);}
.m5_c00222{transform:matrix(0.290360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290360,0.000000,0.000000,0.250000,0,0);}
.m73_c00222{transform:matrix(0.290516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290516,0.000000,0.000000,0.250000,0,0);}
.m5c_c00222{transform:matrix(0.290544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290544,0.000000,0.000000,0.250000,0,0);}
.m64_c00222{transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);}
.m9c_c00222{transform:matrix(0.291076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291076,0.000000,0.000000,0.250000,0,0);}
.m8_c00222{transform:matrix(0.291090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291090,0.000000,0.000000,0.250000,0,0);}
.m96_c00222{transform:matrix(0.291173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291173,0.000000,0.000000,0.250000,0,0);}
.m76_c00222{transform:matrix(0.291695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291695,0.000000,0.000000,0.250000,0,0);}
.m57_c00222{transform:matrix(0.292150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292150,0.000000,0.000000,0.250000,0,0);}
.m3a_c00222{transform:matrix(0.292194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292194,0.000000,0.000000,0.250000,0,0);}
.m19_c00222{transform:matrix(0.292360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292360,0.000000,0.000000,0.250000,0,0);}
.m6e_c00222{transform:matrix(0.292388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292388,0.000000,0.000000,0.250000,0,0);}
.m3f_c00222{transform:matrix(0.292607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292607,0.000000,0.000000,0.250000,0,0);}
.m78_c00222{transform:matrix(0.293246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293246,0.000000,0.000000,0.250000,0,0);}
.m5d_c00222{transform:matrix(0.293261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293261,0.000000,0.000000,0.250000,0,0);}
.m80_c00222{transform:matrix(0.294814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294814,0.000000,0.000000,0.250000,0,0);}
.m8b_c00222{transform:matrix(0.295361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295361,0.000000,0.000000,0.250000,0,0);}
.m3e_c00222{transform:matrix(0.296594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296594,0.000000,0.000000,0.250000,0,0);}
.m9a_c00222{transform:matrix(0.297426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297426,0.000000,0.000000,0.250000,0,0);}
.m8d_c00222{transform:matrix(0.298058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298058,0.000000,0.000000,0.250000,0,0);}
.m9b_c00222{transform:matrix(0.298988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298988,0.000000,0.000000,0.250000,0,0);}
.m79_c00222{transform:matrix(0.299578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299578,0.000000,0.000000,0.250000,0,0);}
.m49_c00222{transform:matrix(0.300186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300186,0.000000,0.000000,0.250000,0,0);}
.m67_c00222{transform:matrix(0.300696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300696,0.000000,0.000000,0.250000,0,0);}
.m2d_c00222{transform:matrix(0.300792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300792,0.000000,0.000000,0.250000,0,0);}
.m24_c00222{transform:matrix(0.301573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301573,0.000000,0.000000,0.250000,0,0);}
.m75_c00222{transform:matrix(0.301829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301829,0.000000,0.000000,0.250000,0,0);}
.m51_c00222{transform:matrix(0.303393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303393,0.000000,0.000000,0.250000,0,0);}
.ma5_c00222{transform:matrix(0.305325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305325,0.000000,0.000000,0.250000,0,0);}
.m48_c00222{transform:matrix(0.305420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305420,0.000000,0.000000,0.250000,0,0);}
.m62_c00222{transform:matrix(0.309493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309493,0.000000,0.000000,0.250000,0,0);}
.m35_c00222{transform:matrix(0.309519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309519,0.000000,0.000000,0.250000,0,0);}
.mad_c00222{transform:matrix(0.309653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309653,0.000000,0.000000,0.250000,0,0);}
.m26_c00222{transform:matrix(0.309746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309746,0.000000,0.000000,0.250000,0,0);}
.m12_c00222{transform:matrix(0.309845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309845,0.000000,0.000000,0.250000,0,0);}
.ma4_c00222{transform:matrix(0.309924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309924,0.000000,0.000000,0.250000,0,0);}
.m46_c00222{transform:matrix(0.310853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310853,0.000000,0.000000,0.250000,0,0);}
.m2b_c00222{transform:matrix(0.310880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310880,0.000000,0.000000,0.250000,0,0);}
.m14_c00222{transform:matrix(0.312283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312283,0.000000,0.000000,0.250000,0,0);}
.ma1_c00222{transform:matrix(0.314374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314374,0.000000,0.000000,0.250000,0,0);}
.m98_c00222{transform:matrix(0.314459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314459,0.000000,0.000000,0.250000,0,0);}
.m1a_c00222{transform:matrix(0.314719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314719,0.000000,0.000000,0.250000,0,0);}
.m2c_c00222{transform:matrix(0.315341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315341,0.000000,0.000000,0.250000,0,0);}
.m43_c00222{transform:matrix(0.315538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315538,0.000000,0.000000,0.250000,0,0);}
.maa_c00222{transform:matrix(0.316175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316175,0.000000,0.000000,0.250000,0,0);}
.m3_c00222{transform:matrix(0.316611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316611,0.000000,0.000000,0.250000,0,0);}
.m5b_c00222{transform:matrix(0.316721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316721,0.000000,0.000000,0.250000,0,0);}
.m83_c00222{transform:matrix(0.316843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316843,0.000000,0.000000,0.250000,0,0);}
.m47_c00222{transform:matrix(0.317866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317866,0.000000,0.000000,0.250000,0,0);}
.m61_c00222{transform:matrix(0.320486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320486,0.000000,0.000000,0.250000,0,0);}
.mb1_c00222{transform:matrix(0.321610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321610,0.000000,0.000000,0.250000,0,0);}
.m58_c00222{transform:matrix(0.322065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322065,0.000000,0.000000,0.250000,0,0);}
.m3c_c00222{transform:matrix(0.324070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324070,0.000000,0.000000,0.250000,0,0);}
.m69_c00222{transform:matrix(0.325725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325725,0.000000,0.000000,0.250000,0,0);}
.m6d_c00222{transform:matrix(0.326105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326105,0.000000,0.000000,0.250000,0,0);}
.m22_c00222{transform:matrix(0.329385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329385,0.000000,0.000000,0.250000,0,0);}
.m5e_c00222{transform:matrix(0.333477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333477,0.000000,0.000000,0.250000,0,0);}
.m54_c00222{transform:matrix(0.336983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336983,0.000000,0.000000,0.250000,0,0);}
.m92_c00222{transform:matrix(0.338857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338857,0.000000,0.000000,0.250000,0,0);}
.m25_c00222{transform:matrix(0.343239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343239,0.000000,0.000000,0.250000,0,0);}
.m1f_c00222{transform:matrix(0.344614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344614,0.000000,0.000000,0.250000,0,0);}
.m72_c00222{transform:matrix(0.349926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349926,0.000000,0.000000,0.250000,0,0);}
.m9e_c00222{transform:matrix(0.358891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358891,0.000000,0.000000,0.250000,0,0);}
.m7_c00222{transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);}
.m4a_c00222{transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);}
.m8c_c00222{transform:matrix(0.406032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406032,0.000000,0.000000,0.250000,0,0);}
.v1_c00222{vertical-align:-14.275800px;}
.v0_c00222{vertical-align:0.000000px;}
.ls10_c00222{letter-spacing:-2.411640px;}
.ls3_c00222{letter-spacing:-0.497615px;}
.ls0_c00222{letter-spacing:0.000000px;}
.ls6_c00222{letter-spacing:0.514285px;}
.lsa_c00222{letter-spacing:0.726028px;}
.ls8_c00222{letter-spacing:0.807604px;}
.ls11_c00222{letter-spacing:0.978914px;}
.ls4_c00222{letter-spacing:1.525475px;}
.lsb_c00222{letter-spacing:3.026477px;}
.ls2_c00222{letter-spacing:3.091738px;}
.lsc_c00222{letter-spacing:3.623400px;}
.ls12_c00222{letter-spacing:3.638298px;}
.lsf_c00222{letter-spacing:3.861000px;}
.lse_c00222{letter-spacing:3.870900px;}
.ls1_c00222{letter-spacing:4.078810px;}
.ls7_c00222{letter-spacing:31.363200px;}
.lsd_c00222{letter-spacing:55.598598px;}
.ls5_c00222{letter-spacing:58.449798px;}
.ls9_c00222{letter-spacing:62.726400px;}
.sc__c00222{text-shadow:none;}
.sc0_c00222{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00222{-webkit-text-stroke:0px transparent;}
.sc0_c00222{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00222{word-spacing:0.000000px;}
._3_c00222{width:31.522277px;}
._1_c00222{width:39.916800px;}
._0_c00222{width:42.261120px;}
._2_c00222{width:89.476200px;}
.fc0_c00222{color:transparent;}
.fs13_c00222{font-size:21.186000px;}
.fs11_c00222{font-size:22.176000px;}
.fsf_c00222{font-size:26.928000px;}
.fs0_c00222{font-size:27.720000px;}
.fs9_c00222{font-size:29.304000px;}
.fs7_c00222{font-size:31.363200px;}
.fs12_c00222{font-size:33.660000px;}
.fs4_c00222{font-size:36.630000px;}
.fsb_c00222{font-size:39.600000px;}
.fsc_c00222{font-size:55.598598px;}
.fs3_c00222{font-size:58.449798px;}
.fs8_c00222{font-size:62.726400px;}
.fs2_c00222{font-size:66.330000px;}
.fs10_c00222{font-size:68.904000px;}
.fsa_c00222{font-size:72.468000px;}
.fs5_c00222{font-size:74.844000px;}
.fse_c00222{font-size:77.220000px;}
.fsd_c00222{font-size:77.418000px;}
.fs1_c00222{font-size:81.576198px;}
.fs6_c00222{font-size:95.238000px;}
.y0_c00222{bottom:0.000000px;}
.y2b_c00222{bottom:51.584985px;}
.y2a_c00222{bottom:70.117785px;}
.y29_c00222{bottom:76.185495px;}
.y1_c00222{bottom:76.500000px;}
.y28_c00222{bottom:99.705915px;}
.y27_c00222{bottom:118.236735px;}
.y26_c00222{bottom:142.115535px;}
.y25_c00222{bottom:164.212335px;}
.y24_c00222{bottom:178.468335px;}
.y23_c00222{bottom:198.778185px;}
.y22_c00222{bottom:209.831535px;}
.y21_c00222{bottom:240.838335px;}
.y3_c00222{bottom:256.517955px;}
.y20_c00222{bottom:272.909385px;}
.y1f_c00222{bottom:304.277535px;}
.y1e_c00222{bottom:321.384735px;}
.y1d_c00222{bottom:335.992185px;}
.y1c_c00222{bottom:359.514585px;}
.y1b_c00222{bottom:368.424585px;}
.y1a_c00222{bottom:399.787785px;}
.y19_c00222{bottom:424.740735px;}
.y18_c00222{bottom:430.443135px;}
.y2_c00222{bottom:447.550335px;}
.y17_c00222{bottom:461.444985px;}
.y16_c00222{bottom:492.100335px;}
.y15_c00222{bottom:523.814985px;}
.y14_c00222{bottom:555.539535px;}
.y13_c00222{bottom:587.610585px;}
.y12_c00222{bottom:606.148335px;}
.y11_c00222{bottom:619.335135px;}
.y10_c00222{bottom:650.698335px;}
.yf_c00222{bottom:683.125785px;}
.ye_c00222{bottom:698.099535px;}
.yd_c00222{bottom:714.132585px;}
.yc_c00222{bottom:746.213535px;}
.yb_c00222{bottom:777.571785px;}
.ya_c00222{bottom:789.689385px;}
.y9_c00222{bottom:808.934985px;}
.y8_c00222{bottom:840.298185px;}
.y7_c00222{bottom:871.661385px;}
.y6_c00222{bottom:902.668185px;}
.y5_c00222{bottom:934.749135px;}
.y4_c00222{bottom:1073.032335px;}
.h8_c00222{height:20.887891px;}
.h15_c00222{height:22.096336px;}
.h13_c00222{height:23.128875px;}
.h11_c00222{height:28.085063px;}
.h2_c00222{height:28.911094px;}
.ha_c00222{height:30.563156px;}
.h14_c00222{height:33.035449px;}
.he_c00222{height:37.028666px;}
.h6_c00222{height:38.203945px;}
.h5_c00222{height:38.927565px;}
.hd_c00222{height:41.301563px;}
.h9_c00222{height:41.775782px;}
.h12_c00222{height:67.625508px;}
.h4_c00222{height:69.180117px;}
.hc_c00222{height:71.123379px;}
.hb_c00222{height:73.455293px;}
.h10_c00222{height:77.823281px;}
.hf_c00222{height:78.022828px;}
.h3_c00222{height:80.062577px;}
.h7_c00222{height:93.470889px;}
.h1_c00222{height:1110.000000px;}
.h0_c00222{height:1263.000000px;}
.w1_c00222{width:751.500000px;}
.w0_c00222{width:892.500000px;}
.x0_c00222{left:0.000000px;}
.x3_c00222{left:22.983285px;}
.x2_c00222{left:47.931285px;}
.x1_c00222{left:70.500000px;}
.x39_c00222{left:87.194685px;}
.x11_c00222{left:88.823235px;}
.x5_c00222{left:89.872635px;}
.x2d_c00222{left:110.147835px;}
.x1d_c00222{left:111.563535px;}
.x6_c00222{left:121.750635px;}
.x4d_c00222{left:130.680435px;}
.x51_c00222{left:132.274335px;}
.x12_c00222{left:133.680135px;}
.x47_c00222{left:142.303035px;}
.x2e_c00222{left:143.708835px;}
.x1e_c00222{left:145.005735px;}
.x6b_c00222{left:152.420835px;}
.x64_c00222{left:155.425485px;}
.x13_c00222{left:165.290835px;}
.x1a_c00222{left:166.508535px;}
.x52_c00222{left:175.938285px;}
.x3a_c00222{left:177.893535px;}
.x65_c00222{left:187.689585px;}
.x7_c00222{left:189.615135px;}
.x58_c00222{left:198.891435px;}
.x40_c00222{left:200.321985px;}
.x14_c00222{left:210.162585px;}
.x8_c00222{left:221.196135px;}
.x34_c00222{left:222.710835px;}
.x70_c00222{left:228.650835px;}
.x6f_c00222{left:232.081185px;}
.x2f_c00222{left:233.140485px;}
.x4e_c00222{left:244.406685px;}
.x35_c00222{left:253.321635px;}
.x44_c00222{left:254.895735px;}
.x1b_c00222{left:256.202535px;}
.x2a_c00222{left:265.597635px;}
.x3b_c00222{left:267.627135px;}
.x5f_c00222{left:276.873735px;}
.x41_c00222{left:278.056785px;}
.x4c_c00222{left:287.144985px;}
.x15_c00222{left:289.441785px;}
.x73_c00222{left:293.822535px;}
.x42_c00222{left:298.678485px;}
.x1f_c00222{left:299.737785px;}
.x24_c00222{left:310.499085px;}
.x71_c00222{left:314.162085px;}
.x60_c00222{left:320.973285px;}
.x43_c00222{left:331.694985px;}
.x9_c00222{left:333.620535px;}
.x25_c00222{left:343.495785px;}
.x4f_c00222{left:344.589735px;}
.x36_c00222{left:354.133335px;}
.x48_c00222{left:365.741085px;}
.x1c_c00222{left:366.800385px;}
.x26_c00222{left:376.512285px;}
.x30_c00222{left:378.096285px;}
.x69_c00222{left:386.936985px;}
.x16_c00222{left:388.862535px;}
.x66_c00222{left:398.242785px;}
.xa_c00222{left:399.604035px;}
.x59_c00222{left:409.365435px;}
.x2b_c00222{left:410.434635px;}
.x6c_c00222{left:420.710835px;}
.x20_c00222{left:422.725485px;}
.xb_c00222{left:432.333435px;}
.x5c_c00222{left:441.268185px;}
.x3c_c00222{left:444.297585px;}
.x27_c00222{left:454.484685px;}
.xc_c00222{left:464.770785px;}
.x5a_c00222{left:466.478535px;}
.x53_c00222{left:477.170535px;}
.x63_c00222{left:483.734235px;}
.x28_c00222{left:487.575435px;}
.x61_c00222{left:489.728685px;}
.x31_c00222{left:497.782335px;}
.x3d_c00222{left:499.727685px;}
.x17_c00222{left:509.791035px;}
.x21_c00222{left:522.180885px;}
.x67_c00222{left:530.353335px;}
.x3e_c00222{left:531.793785px;}
.x2c_c00222{left:532.828335px;}
.x6a_c00222{left:541.263135px;}
.x49_c00222{left:543.911385px;}
.x22_c00222{left:554.246985px;}
.x62_c00222{left:555.662685px;}
.x72_c00222{left:557.585265px;}
.x18_c00222{left:564.414285px;}
.x37_c00222{left:565.914135px;}
.xd_c00222{left:575.477535px;}
.x32_c00222{left:577.051635px;}
.x50_c00222{left:586.793235px;}
.x23_c00222{left:598.796985px;}
.xe_c00222{left:609.860235px;}
.x4a_c00222{left:620.354235px;}
.x68_c00222{left:629.927535px;}
.x19_c00222{left:631.927335px;}
.x4_c00222{left:653.652885px;}
.xf_c00222{left:665.473485px;}
.x57_c00222{left:670.072035px;}
.x6d_c00222{left:674.230035px;}
.x55_c00222{left:677.472285px;}
.x29_c00222{left:680.422485px;}
.x3f_c00222{left:687.194085px;}
.x46_c00222{left:695.846685px;}
.x4b_c00222{left:698.262285px;}
.x6e_c00222{left:699.925485px;}
.x38_c00222{left:701.326335px;}
.x56_c00222{left:707.385135px;}
.x54_c00222{left:709.310685px;}
.x33_c00222{left:710.622435px;}
.x10_c00222{left:720.710535px;}
.x5b_c00222{left:731.768835px;}
.x45_c00222{left:733.288485px;}
.x5d_c00222{left:740.173935px;}
.x5e_c00222{left:745.158585px;}
@media print{
.v1_c00222{vertical-align:-12.689600pt;}
.v0_c00222{vertical-align:0.000000pt;}
.ls10_c00222{letter-spacing:-2.143680pt;}
.ls3_c00222{letter-spacing:-0.442324pt;}
.ls0_c00222{letter-spacing:0.000000pt;}
.ls6_c00222{letter-spacing:0.457142pt;}
.lsa_c00222{letter-spacing:0.645358pt;}
.ls8_c00222{letter-spacing:0.717871pt;}
.ls11_c00222{letter-spacing:0.870146pt;}
.ls4_c00222{letter-spacing:1.355978pt;}
.lsb_c00222{letter-spacing:2.690202pt;}
.ls2_c00222{letter-spacing:2.748211pt;}
.lsc_c00222{letter-spacing:3.220800pt;}
.ls12_c00222{letter-spacing:3.234043pt;}
.lsf_c00222{letter-spacing:3.432000pt;}
.lse_c00222{letter-spacing:3.440800pt;}
.ls1_c00222{letter-spacing:3.625609pt;}
.ls7_c00222{letter-spacing:27.878400pt;}
.lsd_c00222{letter-spacing:49.420976pt;}
.ls5_c00222{letter-spacing:51.955376pt;}
.ls9_c00222{letter-spacing:55.756800pt;}
.ws0_c00222{word-spacing:0.000000pt;}
._3_c00222{width:28.019801pt;}
._1_c00222{width:35.481600pt;}
._0_c00222{width:37.565440pt;}
._2_c00222{width:79.534400pt;}
.fs13_c00222{font-size:18.832000pt;}
.fs11_c00222{font-size:19.712000pt;}
.fsf_c00222{font-size:23.936000pt;}
.fs0_c00222{font-size:24.640000pt;}
.fs9_c00222{font-size:26.048000pt;}
.fs7_c00222{font-size:27.878400pt;}
.fs12_c00222{font-size:29.920000pt;}
.fs4_c00222{font-size:32.560000pt;}
.fsb_c00222{font-size:35.200000pt;}
.fsc_c00222{font-size:49.420976pt;}
.fs3_c00222{font-size:51.955376pt;}
.fs8_c00222{font-size:55.756800pt;}
.fs2_c00222{font-size:58.960000pt;}
.fs10_c00222{font-size:61.248000pt;}
.fsa_c00222{font-size:64.416000pt;}
.fs5_c00222{font-size:66.528000pt;}
.fse_c00222{font-size:68.640000pt;}
.fsd_c00222{font-size:68.816000pt;}
.fs1_c00222{font-size:72.512176pt;}
.fs6_c00222{font-size:84.656000pt;}
.y0_c00222{bottom:0.000000pt;}
.y2b_c00222{bottom:45.853320pt;}
.y2a_c00222{bottom:62.326920pt;}
.y29_c00222{bottom:67.720440pt;}
.y1_c00222{bottom:68.000000pt;}
.y28_c00222{bottom:88.627480pt;}
.y27_c00222{bottom:105.099320pt;}
.y26_c00222{bottom:126.324920pt;}
.y25_c00222{bottom:145.966520pt;}
.y24_c00222{bottom:158.638520pt;}
.y23_c00222{bottom:176.691720pt;}
.y22_c00222{bottom:186.516920pt;}
.y21_c00222{bottom:214.078520pt;}
.y3_c00222{bottom:228.015960pt;}
.y20_c00222{bottom:242.586120pt;}
.y1f_c00222{bottom:270.468920pt;}
.y1e_c00222{bottom:285.675320pt;}
.y1d_c00222{bottom:298.659720pt;}
.y1c_c00222{bottom:319.568520pt;}
.y1b_c00222{bottom:327.488520pt;}
.y1a_c00222{bottom:355.366920pt;}
.y19_c00222{bottom:377.547320pt;}
.y18_c00222{bottom:382.616120pt;}
.y2_c00222{bottom:397.822520pt;}
.y17_c00222{bottom:410.173320pt;}
.y16_c00222{bottom:437.422520pt;}
.y15_c00222{bottom:465.613320pt;}
.y14_c00222{bottom:493.812920pt;}
.y13_c00222{bottom:522.320520pt;}
.y12_c00222{bottom:538.798520pt;}
.y11_c00222{bottom:550.520120pt;}
.y10_c00222{bottom:578.398520pt;}
.yf_c00222{bottom:607.222920pt;}
.ye_c00222{bottom:620.532920pt;}
.yd_c00222{bottom:634.784520pt;}
.yc_c00222{bottom:663.300920pt;}
.yb_c00222{bottom:691.174920pt;}
.ya_c00222{bottom:701.946120pt;}
.y9_c00222{bottom:719.053320pt;}
.y8_c00222{bottom:746.931720pt;}
.y7_c00222{bottom:774.810120pt;}
.y6_c00222{bottom:802.371720pt;}
.y5_c00222{bottom:830.888120pt;}
.y4_c00222{bottom:953.806520pt;}
.h8_c00222{height:18.567014pt;}
.h15_c00222{height:19.641188pt;}
.h13_c00222{height:20.559000pt;}
.h11_c00222{height:24.964500pt;}
.h2_c00222{height:25.698750pt;}
.ha_c00222{height:27.167250pt;}
.h14_c00222{height:29.364844pt;}
.he_c00222{height:32.914370pt;}
.h6_c00222{height:33.959063pt;}
.h5_c00222{height:34.602280pt;}
.hd_c00222{height:36.712500pt;}
.h9_c00222{height:37.134029pt;}
.h12_c00222{height:60.111562pt;}
.h4_c00222{height:61.493438pt;}
.hc_c00222{height:63.220781pt;}
.hb_c00222{height:65.293594pt;}
.h10_c00222{height:69.176250pt;}
.hf_c00222{height:69.353625pt;}
.h3_c00222{height:71.166735pt;}
.h7_c00222{height:83.085234pt;}
.h1_c00222{height:986.666667pt;}
.h0_c00222{height:1122.666667pt;}
.w1_c00222{width:668.000000pt;}
.w0_c00222{width:793.333333pt;}
.x0_c00222{left:0.000000pt;}
.x3_c00222{left:20.429587pt;}
.x2_c00222{left:42.605587pt;}
.x1_c00222{left:62.666667pt;}
.x39_c00222{left:77.506387pt;}
.x11_c00222{left:78.953987pt;}
.x5_c00222{left:79.886787pt;}
.x2d_c00222{left:97.909187pt;}
.x1d_c00222{left:99.167587pt;}
.x6_c00222{left:108.222787pt;}
.x4d_c00222{left:116.160387pt;}
.x51_c00222{left:117.577187pt;}
.x12_c00222{left:118.826787pt;}
.x47_c00222{left:126.491587pt;}
.x2e_c00222{left:127.741187pt;}
.x1e_c00222{left:128.893987pt;}
.x6b_c00222{left:135.485187pt;}
.x64_c00222{left:138.155987pt;}
.x13_c00222{left:146.925187pt;}
.x1a_c00222{left:148.007587pt;}
.x52_c00222{left:156.389587pt;}
.x3a_c00222{left:158.127587pt;}
.x65_c00222{left:166.835187pt;}
.x7_c00222{left:168.546787pt;}
.x58_c00222{left:176.792387pt;}
.x40_c00222{left:178.063987pt;}
.x14_c00222{left:186.811187pt;}
.x8_c00222{left:196.618787pt;}
.x34_c00222{left:197.965187pt;}
.x70_c00222{left:203.245187pt;}
.x6f_c00222{left:206.294387pt;}
.x2f_c00222{left:207.235987pt;}
.x4e_c00222{left:217.250387pt;}
.x35_c00222{left:225.174787pt;}
.x44_c00222{left:226.573987pt;}
.x1b_c00222{left:227.735587pt;}
.x2a_c00222{left:236.086787pt;}
.x3b_c00222{left:237.890787pt;}
.x5f_c00222{left:246.109987pt;}
.x41_c00222{left:247.161587pt;}
.x4c_c00222{left:255.239987pt;}
.x15_c00222{left:257.281587pt;}
.x73_c00222{left:261.175587pt;}
.x42_c00222{left:265.491987pt;}
.x1f_c00222{left:266.433587pt;}
.x24_c00222{left:275.999187pt;}
.x71_c00222{left:279.255187pt;}
.x60_c00222{left:285.309587pt;}
.x43_c00222{left:294.839987pt;}
.x9_c00222{left:296.551587pt;}
.x25_c00222{left:305.329587pt;}
.x4f_c00222{left:306.301987pt;}
.x36_c00222{left:314.785187pt;}
.x48_c00222{left:325.103187pt;}
.x1c_c00222{left:326.044787pt;}
.x26_c00222{left:334.677587pt;}
.x30_c00222{left:336.085587pt;}
.x69_c00222{left:343.943987pt;}
.x16_c00222{left:345.655587pt;}
.x66_c00222{left:353.993587pt;}
.xa_c00222{left:355.203587pt;}
.x59_c00222{left:363.880387pt;}
.x2b_c00222{left:364.830787pt;}
.x6c_c00222{left:373.965187pt;}
.x20_c00222{left:375.755987pt;}
.xb_c00222{left:384.296387pt;}
.x5c_c00222{left:392.238387pt;}
.x3c_c00222{left:394.931187pt;}
.x27_c00222{left:403.986387pt;}
.xc_c00222{left:413.129587pt;}
.x5a_c00222{left:414.647587pt;}
.x53_c00222{left:424.151587pt;}
.x63_c00222{left:429.985987pt;}
.x28_c00222{left:433.400387pt;}
.x61_c00222{left:435.314387pt;}
.x31_c00222{left:442.473187pt;}
.x3d_c00222{left:444.202387pt;}
.x17_c00222{left:453.147587pt;}
.x21_c00222{left:464.160787pt;}
.x67_c00222{left:471.425187pt;}
.x3e_c00222{left:472.705587pt;}
.x2c_c00222{left:473.625187pt;}
.x6a_c00222{left:481.122787pt;}
.x49_c00222{left:483.476787pt;}
.x22_c00222{left:492.663987pt;}
.x62_c00222{left:493.922387pt;}
.x72_c00222{left:495.631347pt;}
.x18_c00222{left:501.701587pt;}
.x37_c00222{left:503.034787pt;}
.xd_c00222{left:511.535587pt;}
.x32_c00222{left:512.934787pt;}
.x50_c00222{left:521.593987pt;}
.x23_c00222{left:532.263987pt;}
.xe_c00222{left:542.097987pt;}
.x4a_c00222{left:551.425987pt;}
.x68_c00222{left:559.935587pt;}
.x19_c00222{left:561.713187pt;}
.x4_c00222{left:581.024787pt;}
.xf_c00222{left:591.531987pt;}
.x57_c00222{left:595.619587pt;}
.x6d_c00222{left:599.315587pt;}
.x55_c00222{left:602.197587pt;}
.x29_c00222{left:604.819987pt;}
.x3f_c00222{left:610.839187pt;}
.x46_c00222{left:618.530387pt;}
.x4b_c00222{left:620.677587pt;}
.x6e_c00222{left:622.155987pt;}
.x38_c00222{left:623.401187pt;}
.x56_c00222{left:628.786787pt;}
.x54_c00222{left:630.498387pt;}
.x33_c00222{left:631.664387pt;}
.x10_c00222{left:640.631587pt;}
.x5b_c00222{left:650.461187pt;}
.x45_c00222{left:651.811987pt;}
.x5d_c00222{left:657.932387pt;}
.x5e_c00222{left:662.363187pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_877fd78c3d723c0ea4e291cd.woff2')format("woff");}.ff1_c00223{font-family:ff1_c00223;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00223;src:url('chunks/assets/font_aca5b2ab29fbcf44d58a859f.woff2')format("woff");}.ff2_c00223{font-family:ff2_c00223;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00223;src:url('chunks/assets/font_08a07dc52c50c36074ef0c2f.woff2')format("woff");}.ff3_c00223{font-family:ff3_c00223;line-height:0.666000;font-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_c00223{transform:matrix(0.112499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112499,0.000000,0.000000,0.250000,0,0);}
.mb3_c00223{transform:matrix(0.133169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133169,0.000000,0.000000,0.250000,0,0);}
.m3c_c00223{transform:matrix(0.158919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158919,0.000000,0.000000,0.250000,0,0);}
.m1b_c00223{transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);}
.m52_c00223{transform:matrix(0.184216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184216,0.000000,0.000000,0.250000,0,0);}
.m30_c00223{transform:matrix(0.186724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186724,0.000000,0.000000,0.250000,0,0);}
.m1c_c00223{transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);}
.m24_c00223{transform:matrix(0.226673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226673,0.000000,0.000000,0.250000,0,0);}
.m49_c00223{transform:matrix(0.234972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234972,0.000000,0.000000,0.250000,0,0);}
.m2c_c00223{transform:matrix(0.237316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237316,0.000000,0.000000,0.250000,0,0);}
.m97_c00223{transform:matrix(0.246353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246353,0.000000,0.000000,0.250000,0,0);}
.m0_c00223{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m31_c00223{transform:matrix(0.252204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252204,0.000000,0.000000,0.250000,0,0);}
.m91_c00223{transform:matrix(0.254604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254604,0.000000,0.000000,0.250000,0,0);}
.m2f_c00223{transform:matrix(0.256474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256474,0.000000,0.000000,0.250000,0,0);}
.maf_c00223{transform:matrix(0.257181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257181,0.000000,0.000000,0.250000,0,0);}
.mad_c00223{transform:matrix(0.262195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262195,0.000000,0.000000,0.250000,0,0);}
.m9d_c00223{transform:matrix(0.263086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263086,0.000000,0.000000,0.250000,0,0);}
.m57_c00223{transform:matrix(0.264006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264006,0.000000,0.000000,0.250000,0,0);}
.m60_c00223{transform:matrix(0.265366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265366,0.000000,0.000000,0.250000,0,0);}
.m65_c00223{transform:matrix(0.266075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266075,0.000000,0.000000,0.250000,0,0);}
.ma2_c00223{transform:matrix(0.266637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266637,0.000000,0.000000,0.250000,0,0);}
.m42_c00223{transform:matrix(0.267144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267144,0.000000,0.000000,0.250000,0,0);}
.m47_c00223{transform:matrix(0.267845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267845,0.000000,0.000000,0.250000,0,0);}
.m83_c00223{transform:matrix(0.267914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267914,0.000000,0.000000,0.250000,0,0);}
.m8_c00223{transform:matrix(0.267945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267945,0.000000,0.000000,0.250000,0,0);}
.mb_c00223{transform:matrix(0.268416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268416,0.000000,0.000000,0.250000,0,0);}
.m5a_c00223{transform:matrix(0.269016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269016,0.000000,0.000000,0.250000,0,0);}
.m40_c00223{transform:matrix(0.270287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270287,0.000000,0.000000,0.250000,0,0);}
.m72_c00223{transform:matrix(0.270638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270638,0.000000,0.000000,0.250000,0,0);}
.m10_c00223{transform:matrix(0.270827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270827,0.000000,0.000000,0.250000,0,0);}
.m43_c00223{transform:matrix(0.270978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270978,0.000000,0.000000,0.250000,0,0);}
.m48_c00223{transform:matrix(0.271394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271394,0.000000,0.000000,0.250000,0,0);}
.m8c_c00223{transform:matrix(0.271467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271467,0.000000,0.000000,0.250000,0,0);}
.m15_c00223{transform:matrix(0.273287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273287,0.000000,0.000000,0.250000,0,0);}
.m98_c00223{transform:matrix(0.273779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273779,0.000000,0.000000,0.250000,0,0);}
.m21_c00223{transform:matrix(0.273819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273819,0.000000,0.000000,0.250000,0,0);}
.m9_c00223{transform:matrix(0.275579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275579,0.000000,0.000000,0.250000,0,0);}
.m6f_c00223{transform:matrix(0.275580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275580,0.000000,0.000000,0.250000,0,0);}
.m67_c00223{transform:matrix(0.275831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275831,0.000000,0.000000,0.250000,0,0);}
.m68_c00223{transform:matrix(0.277567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277567,0.000000,0.000000,0.250000,0,0);}
.m77_c00223{transform:matrix(0.277581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277581,0.000000,0.000000,0.250000,0,0);}
.m14_c00223{transform:matrix(0.278623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278623,0.000000,0.000000,0.250000,0,0);}
.m95_c00223{transform:matrix(0.279671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279671,0.000000,0.000000,0.250000,0,0);}
.m3e_c00223{transform:matrix(0.280330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280330,0.000000,0.000000,0.250000,0,0);}
.m56_c00223{transform:matrix(0.280680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280680,0.000000,0.000000,0.250000,0,0);}
.m93_c00223{transform:matrix(0.281964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281964,0.000000,0.000000,0.250000,0,0);}
.m7a_c00223{transform:matrix(0.282556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282556,0.000000,0.000000,0.250000,0,0);}
.m2_c00223{transform:matrix(0.282899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282899,0.000000,0.000000,0.250000,0,0);}
.m1_c00223{transform:matrix(0.284005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284005,0.000000,0.000000,0.250000,0,0);}
.mf_c00223{transform:matrix(0.284158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284158,0.000000,0.000000,0.250000,0,0);}
.mab_c00223{transform:matrix(0.284933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284933,0.000000,0.000000,0.250000,0,0);}
.m9c_c00223{transform:matrix(0.285081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285081,0.000000,0.000000,0.250000,0,0);}
.m5_c00223{transform:matrix(0.285135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285135,0.000000,0.000000,0.250000,0,0);}
.m33_c00223{transform:matrix(0.285943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285943,0.000000,0.000000,0.250000,0,0);}
.m38_c00223{transform:matrix(0.286532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286532,0.000000,0.000000,0.250000,0,0);}
.m4_c00223{transform:matrix(0.287380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287380,0.000000,0.000000,0.250000,0,0);}
.m76_c00223{transform:matrix(0.287771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287771,0.000000,0.000000,0.250000,0,0);}
.m1f_c00223{transform:matrix(0.288168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288168,0.000000,0.000000,0.250000,0,0);}
.m2b_c00223{transform:matrix(0.288783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288783,0.000000,0.000000,0.250000,0,0);}
.m6_c00223{transform:matrix(0.288926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288926,0.000000,0.000000,0.250000,0,0);}
.m8d_c00223{transform:matrix(0.289457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289457,0.000000,0.000000,0.250000,0,0);}
.m63_c00223{transform:matrix(0.289591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289591,0.000000,0.000000,0.250000,0,0);}
.m25_c00223{transform:matrix(0.289878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289878,0.000000,0.000000,0.250000,0,0);}
.m94_c00223{transform:matrix(0.290521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290521,0.000000,0.000000,0.250000,0,0);}
.md_c00223{transform:matrix(0.290917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290917,0.000000,0.000000,0.250000,0,0);}
.m4f_c00223{transform:matrix(0.291522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291522,0.000000,0.000000,0.250000,0,0);}
.m79_c00223{transform:matrix(0.291565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291565,0.000000,0.000000,0.250000,0,0);}
.me_c00223{transform:matrix(0.291649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291649,0.000000,0.000000,0.250000,0,0);}
.m50_c00223{transform:matrix(0.291697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291697,0.000000,0.000000,0.250000,0,0);}
.m53_c00223{transform:matrix(0.292090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292090,0.000000,0.000000,0.250000,0,0);}
.m36_c00223{transform:matrix(0.292862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292862,0.000000,0.000000,0.250000,0,0);}
.m46_c00223{transform:matrix(0.293425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293425,0.000000,0.000000,0.250000,0,0);}
.m9f_c00223{transform:matrix(0.294667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294667,0.000000,0.000000,0.250000,0,0);}
.mb1_c00223{transform:matrix(0.295091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295091,0.000000,0.000000,0.250000,0,0);}
.m5e_c00223{transform:matrix(0.295649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295649,0.000000,0.000000,0.250000,0,0);}
.m17_c00223{transform:matrix(0.295993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295993,0.000000,0.000000,0.250000,0,0);}
.m89_c00223{transform:matrix(0.296682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296682,0.000000,0.000000,0.250000,0,0);}
.m9b_c00223{transform:matrix(0.296702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296702,0.000000,0.000000,0.250000,0,0);}
.m8a_c00223{transform:matrix(0.296986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296986,0.000000,0.000000,0.250000,0,0);}
.m4c_c00223{transform:matrix(0.296992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296992,0.000000,0.000000,0.250000,0,0);}
.m28_c00223{transform:matrix(0.297284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297284,0.000000,0.000000,0.250000,0,0);}
.m70_c00223{transform:matrix(0.297503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297503,0.000000,0.000000,0.250000,0,0);}
.m6a_c00223{transform:matrix(0.298866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298866,0.000000,0.000000,0.250000,0,0);}
.m4a_c00223{transform:matrix(0.299505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299505,0.000000,0.000000,0.250000,0,0);}
.m1d_c00223{transform:matrix(0.300138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300138,0.000000,0.000000,0.250000,0,0);}
.ma8_c00223{transform:matrix(0.301464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301464,0.000000,0.000000,0.250000,0,0);}
.m34_c00223{transform:matrix(0.301512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301512,0.000000,0.000000,0.250000,0,0);}
.m4b_c00223{transform:matrix(0.302041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302041,0.000000,0.000000,0.250000,0,0);}
.m45_c00223{transform:matrix(0.303270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303270,0.000000,0.000000,0.250000,0,0);}
.mc_c00223{transform:matrix(0.305285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305285,0.000000,0.000000,0.250000,0,0);}
.m3f_c00223{transform:matrix(0.305342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305342,0.000000,0.000000,0.250000,0,0);}
.m8f_c00223{transform:matrix(0.305943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305943,0.000000,0.000000,0.250000,0,0);}
.m3a_c00223{transform:matrix(0.306906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306906,0.000000,0.000000,0.250000,0,0);}
.m61_c00223{transform:matrix(0.307814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307814,0.000000,0.000000,0.250000,0,0);}
.m3b_c00223{transform:matrix(0.307871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307871,0.000000,0.000000,0.250000,0,0);}
.mb2_c00223{transform:matrix(0.308728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308728,0.000000,0.000000,0.250000,0,0);}
.m86_c00223{transform:matrix(0.308894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308894,0.000000,0.000000,0.250000,0,0);}
.m2d_c00223{transform:matrix(0.308942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308942,0.000000,0.000000,0.250000,0,0);}
.m85_c00223{transform:matrix(0.310227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310227,0.000000,0.000000,0.250000,0,0);}
.ma5_c00223{transform:matrix(0.310653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310653,0.000000,0.000000,0.250000,0,0);}
.m8e_c00223{transform:matrix(0.310688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310688,0.000000,0.000000,0.250000,0,0);}
.m87_c00223{transform:matrix(0.310739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310739,0.000000,0.000000,0.250000,0,0);}
.ma_c00223{transform:matrix(0.311016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311016,0.000000,0.000000,0.250000,0,0);}
.m54_c00223{transform:matrix(0.311052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311052,0.000000,0.000000,0.250000,0,0);}
.ma6_c00223{transform:matrix(0.311434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311434,0.000000,0.000000,0.250000,0,0);}
.m71_c00223{transform:matrix(0.312222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312222,0.000000,0.000000,0.250000,0,0);}
.m73_c00223{transform:matrix(0.313829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313829,0.000000,0.000000,0.250000,0,0);}
.m5d_c00223{transform:matrix(0.314227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314227,0.000000,0.000000,0.250000,0,0);}
.ma0_c00223{transform:matrix(0.314535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314535,0.000000,0.000000,0.250000,0,0);}
.m96_c00223{transform:matrix(0.314953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314953,0.000000,0.000000,0.250000,0,0);}
.m9a_c00223{transform:matrix(0.315003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315003,0.000000,0.000000,0.250000,0,0);}
.m4d_c00223{transform:matrix(0.315753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315753,0.000000,0.000000,0.250000,0,0);}
.m5b_c00223{transform:matrix(0.316775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316775,0.000000,0.000000,0.250000,0,0);}
.m6e_c00223{transform:matrix(0.317731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317731,0.000000,0.000000,0.250000,0,0);}
.m82_c00223{transform:matrix(0.318074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318074,0.000000,0.000000,0.250000,0,0);}
.m88_c00223{transform:matrix(0.318136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318136,0.000000,0.000000,0.250000,0,0);}
.ma1_c00223{transform:matrix(0.320033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320033,0.000000,0.000000,0.250000,0,0);}
.m3d_c00223{transform:matrix(0.320073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320073,0.000000,0.000000,0.250000,0,0);}
.ma9_c00223{transform:matrix(0.320766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320766,0.000000,0.000000,0.250000,0,0);}
.m55_c00223{transform:matrix(0.320899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320899,0.000000,0.000000,0.250000,0,0);}
.m2a_c00223{transform:matrix(0.320961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320961,0.000000,0.000000,0.250000,0,0);}
.m9e_c00223{transform:matrix(0.321469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321469,0.000000,0.000000,0.250000,0,0);}
.m66_c00223{transform:matrix(0.322966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322966,0.000000,0.000000,0.250000,0,0);}
.m12_c00223{transform:matrix(0.323298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323298,0.000000,0.000000,0.250000,0,0);}
.m7c_c00223{transform:matrix(0.323677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323677,0.000000,0.000000,0.250000,0,0);}
.m1e_c00223{transform:matrix(0.324688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324688,0.000000,0.000000,0.250000,0,0);}
.m18_c00223{transform:matrix(0.324829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324829,0.000000,0.000000,0.250000,0,0);}
.m2e_c00223{transform:matrix(0.325661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325661,0.000000,0.000000,0.250000,0,0);}
.m75_c00223{transform:matrix(0.326301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326301,0.000000,0.000000,0.250000,0,0);}
.m92_c00223{transform:matrix(0.326437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326437,0.000000,0.000000,0.250000,0,0);}
.mac_c00223{transform:matrix(0.326587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326587,0.000000,0.000000,0.250000,0,0);}
.m8b_c00223{transform:matrix(0.326660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326660,0.000000,0.000000,0.250000,0,0);}
.m32_c00223{transform:matrix(0.327747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327747,0.000000,0.000000,0.250000,0,0);}
.m51_c00223{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);}
.m6b_c00223{transform:matrix(0.328248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328248,0.000000,0.000000,0.250000,0,0);}
.m4e_c00223{transform:matrix(0.328295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328295,0.000000,0.000000,0.250000,0,0);}
.m64_c00223{transform:matrix(0.329549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329549,0.000000,0.000000,0.250000,0,0);}
.m90_c00223{transform:matrix(0.330677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330677,0.000000,0.000000,0.250000,0,0);}
.m23_c00223{transform:matrix(0.331059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331059,0.000000,0.000000,0.250000,0,0);}
.ma3_c00223{transform:matrix(0.331737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331737,0.000000,0.000000,0.250000,0,0);}
.m35_c00223{transform:matrix(0.331934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331934,0.000000,0.000000,0.250000,0,0);}
.m13_c00223{transform:matrix(0.333584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333584,0.000000,0.000000,0.250000,0,0);}
.m7e_c00223{transform:matrix(0.334074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334074,0.000000,0.000000,0.250000,0,0);}
.m19_c00223{transform:matrix(0.335129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335129,0.000000,0.000000,0.250000,0,0);}
.mae_c00223{transform:matrix(0.335360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335360,0.000000,0.000000,0.250000,0,0);}
.m37_c00223{transform:matrix(0.337098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337098,0.000000,0.000000,0.250000,0,0);}
.m26_c00223{transform:matrix(0.338096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338096,0.000000,0.000000,0.250000,0,0);}
.m7f_c00223{transform:matrix(0.340192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340192,0.000000,0.000000,0.250000,0,0);}
.ma7_c00223{transform:matrix(0.342744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342744,0.000000,0.000000,0.250000,0,0);}
.maa_c00223{transform:matrix(0.343754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343754,0.000000,0.000000,0.250000,0,0);}
.ma4_c00223{transform:matrix(0.344977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344977,0.000000,0.000000,0.250000,0,0);}
.m20_c00223{transform:matrix(0.347393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347393,0.000000,0.000000,0.250000,0,0);}
.m58_c00223{transform:matrix(0.347732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347732,0.000000,0.000000,0.250000,0,0);}
.m74_c00223{transform:matrix(0.350421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350421,0.000000,0.000000,0.250000,0,0);}
.m5f_c00223{transform:matrix(0.350551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350551,0.000000,0.000000,0.250000,0,0);}
.m7_c00223{transform:matrix(0.351137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351137,0.000000,0.000000,0.250000,0,0);}
.m3_c00223{transform:matrix(0.351961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351961,0.000000,0.000000,0.250000,0,0);}
.m11_c00223{transform:matrix(0.353088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353088,0.000000,0.000000,0.250000,0,0);}
.m7d_c00223{transform:matrix(0.353245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353245,0.000000,0.000000,0.250000,0,0);}
.m80_c00223{transform:matrix(0.353367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353367,0.000000,0.000000,0.250000,0,0);}
.m41_c00223{transform:matrix(0.357321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357321,0.000000,0.000000,0.250000,0,0);}
.m6d_c00223{transform:matrix(0.357545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357545,0.000000,0.000000,0.250000,0,0);}
.m44_c00223{transform:matrix(0.359282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359282,0.000000,0.000000,0.250000,0,0);}
.m1a_c00223{transform:matrix(0.362534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362534,0.000000,0.000000,0.250000,0,0);}
.m81_c00223{transform:matrix(0.365381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365381,0.000000,0.000000,0.250000,0,0);}
.m69_c00223{transform:matrix(0.365477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365477,0.000000,0.000000,0.250000,0,0);}
.m29_c00223{transform:matrix(0.366895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366895,0.000000,0.000000,0.250000,0,0);}
.m6c_c00223{transform:matrix(0.369431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369431,0.000000,0.000000,0.250000,0,0);}
.m62_c00223{transform:matrix(0.371516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371516,0.000000,0.000000,0.250000,0,0);}
.m5c_c00223{transform:matrix(0.372218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372218,0.000000,0.000000,0.250000,0,0);}
.m7b_c00223{transform:matrix(0.373103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373103,0.000000,0.000000,0.250000,0,0);}
.m22_c00223{transform:matrix(0.382702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382702,0.000000,0.000000,0.250000,0,0);}
.m99_c00223{transform:matrix(0.389789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389789,0.000000,0.000000,0.250000,0,0);}
.m27_c00223{transform:matrix(0.399493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399493,0.000000,0.000000,0.250000,0,0);}
.m39_c00223{transform:matrix(0.405617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405617,0.000000,0.000000,0.250000,0,0);}
.m59_c00223{transform:matrix(0.412237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412237,0.000000,0.000000,0.250000,0,0);}
.m16_c00223{transform:matrix(0.419438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419438,0.000000,0.000000,0.250000,0,0);}
.m78_c00223{transform:matrix(0.428429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428429,0.000000,0.000000,0.250000,0,0);}
.m84_c00223{transform:matrix(0.444701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444701,0.000000,0.000000,0.250000,0,0);}
.v0_c00223{vertical-align:0.000000px;}
.ls6_c00223{letter-spacing:-2.668050px;}
.lsa_c00223{letter-spacing:-1.774080px;}
.ls7_c00223{letter-spacing:-1.425501px;}
.ls8_c00223{letter-spacing:-1.288287px;}
.ls5_c00223{letter-spacing:-1.250172px;}
.ls3_c00223{letter-spacing:-0.777546px;}
.ls2_c00223{letter-spacing:0.000000px;}
.ls0_c00223{letter-spacing:1.005048px;}
.ls9_c00223{letter-spacing:3.194037px;}
.ls1_c00223{letter-spacing:3.811500px;}
.ls4_c00223{letter-spacing:49.896198px;}
.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;}
}
.ws3_c00223{word-spacing:-22.869000px;}
.ws0_c00223{word-spacing:-19.057500px;}
.ws4_c00223{word-spacing:0.000000px;}
.ws2_c00223{word-spacing:0.228690px;}
.ws1_c00223{word-spacing:6.632010px;}
._2_c00223{margin-left:-9.071370px;}
._f_c00223{margin-left:-7.165620px;}
._e_c00223{margin-left:-1.295910px;}
._9_c00223{width:1.524600px;}
._3_c00223{width:3.963960px;}
._b_c00223{width:6.022170px;}
._12_c00223{width:8.081370px;}
._0_c00223{width:9.604980px;}
._7_c00223{width:11.052360px;}
._4_c00223{width:12.730410px;}
._13_c00223{width:13.837923px;}
._5_c00223{width:14.864850px;}
._8_c00223{width:16.694370px;}
._11_c00223{width:21.420630px;}
._15_c00223{width:22.869000px;}
._19_c00223{width:24.318360px;}
._10_c00223{width:25.613280px;}
._1_c00223{width:27.137880px;}
._a_c00223{width:29.179656px;}
._18_c00223{width:32.702670px;}
._d_c00223{width:36.285480px;}
._16_c00223{width:38.724840px;}
._c_c00223{width:40.096980px;}
._14_c00223{width:43.298640px;}
._1a_c00223{width:44.823240px;}
._17_c00223{width:47.719980px;}
._6_c00223{width:76.839840px;}
.fc0_c00223{color:transparent;}
.fs5_c00223{font-size:21.582000px;}
.fsc_c00223{font-size:22.176000px;}
.fse_c00223{font-size:26.928000px;}
.fs0_c00223{font-size:27.720000px;}
.fsf_c00223{font-size:33.264000px;}
.fs1_c00223{font-size:33.660000px;}
.fs10_c00223{font-size:39.798000px;}
.fs6_c00223{font-size:49.896198px;}
.fs9_c00223{font-size:50.292000px;}
.fsa_c00223{font-size:50.688000px;}
.fs11_c00223{font-size:65.538000px;}
.fsd_c00223{font-size:68.112198px;}
.fs7_c00223{font-size:71.280000px;}
.fs8_c00223{font-size:72.072198px;}
.fs4_c00223{font-size:72.864000px;}
.fsb_c00223{font-size:75.240000px;}
.fs2_c00223{font-size:76.230000px;}
.fs3_c00223{font-size:78.012198px;}
.y0_c00223{bottom:0.000000px;}
.y29_c00223{bottom:72.261135px;}
.y1_c00223{bottom:76.500000px;}
.y28_c00223{bottom:77.963535px;}
.y27_c00223{bottom:96.847785px;}
.y26_c00223{bottom:107.188335px;}
.y24_c00223{bottom:133.918335px;}
.y25_c00223{bottom:135.338985px;}
.y20_c00223{bottom:139.620735px;}
.y2a_c00223{bottom:144.248985px;}
.y1f_c00223{bottom:159.935535px;}
.y23_c00223{bottom:171.335385px;}
.y1e_c00223{bottom:226.582335px;}
.y22_c00223{bottom:230.502735px;}
.y21_c00223{bottom:237.274335px;}
.y1d_c00223{bottom:258.653385px;}
.y1c_c00223{bottom:290.372985px;}
.y1b_c00223{bottom:322.448985px;}
.y1a_c00223{bottom:355.237785px;}
.y19_c00223{bottom:386.962335px;}
.y18_c00223{bottom:419.746185px;}
.y17_c00223{bottom:453.247785px;}
.y16_c00223{bottom:485.685135px;}
.y15_c00223{bottom:517.404735px;}
.y14_c00223{bottom:549.475785px;}
.y13_c00223{bottom:581.908185px;}
.y12_c00223{bottom:612.914985px;}
.y11_c00223{bottom:644.639535px;}
.y10_c00223{bottom:676.002735px;}
.yf_c00223{bottom:708.435135px;}
.ye_c00223{bottom:740.154735px;}
.yd_c00223{bottom:772.943535px;}
.yc_c00223{bottom:788.263785px;}
.yb_c00223{bottom:798.599385px;}
.ya_c00223{bottom:869.879385px;}
.y9_c00223{bottom:904.093785px;}
.y8_c00223{bottom:936.882585px;}
.y4_c00223{bottom:1019.210985px;}
.y7_c00223{bottom:1052.356185px;}
.y6_c00223{bottom:1058.414985px;}
.y5_c00223{bottom:1077.304185px;}
.y2_c00223{bottom:1077.660585px;}
.y3_c00223{bottom:1102.252185px;}
.h7_c00223{height:22.509352px;}
.hd_c00223{height:23.128875px;}
.hf_c00223{height:28.085063px;}
.h2_c00223{height:28.911094px;}
.h3_c00223{height:33.035449px;}
.h8_c00223{height:33.230868px;}
.h10_c00223{height:34.693313px;}
.h11_c00223{height:39.059561px;}
.ha_c00223{height:49.358848px;}
.hb_c00223{height:49.747500px;}
.h12_c00223{height:64.321963px;}
.h9_c00223{height:70.734921px;}
.he_c00223{height:71.038894px;}
.h6_c00223{height:71.512031px;}
.hc_c00223{height:73.843945px;}
.h4_c00223{height:74.815576px;}
.h5_c00223{height:81.364285px;}
.h1_c00223{height:1110.000000px;}
.h0_c00223{height:1263.000000px;}
.w1_c00223{width:751.500000px;}
.w0_c00223{width:892.500000px;}
.x0_c00223{left:0.000000px;}
.x2_c00223{left:42.585285px;}
.x16_c00223{left:69.315285px;}
.x1_c00223{left:70.500000px;}
.x4f_c00223{left:81.309135px;}
.x5a_c00223{left:92.545635px;}
.x55_c00223{left:102.524835px;}
.x1f_c00223{left:104.074185px;}
.x20_c00223{left:114.597885px;}
.x61_c00223{left:115.904685px;}
.x8_c00223{left:124.918635px;}
.x49_c00223{left:126.571935px;}
.x21_c00223{left:136.937235px;}
.x56_c00223{left:137.981685px;}
.x2d_c00223{left:147.629235px;}
.x62_c00223{left:148.663785px;}
.x3d_c00223{left:157.054035px;}
.x17_c00223{left:158.677635px;}
.x40_c00223{left:169.325085px;}
.x66_c00223{left:170.711085px;}
.x41_c00223{left:174.750285px;}
.x6a_c00223{left:175.873935px;}
.x42_c00223{left:179.937885px;}
.x9_c00223{left:181.838685px;}
.x5d_c00223{left:190.902135px;}
.xa_c00223{left:191.991135px;}
.x18_c00223{left:202.381185px;}
.x50_c00223{left:203.935485px;}
.x67_c00223{left:205.029435px;}
.x43_c00223{left:213.909735px;}
.xb_c00223{left:215.340285px;}
.x35_c00223{left:224.408685px;}
.x6b_c00223{left:225.893685px;}
.x23_c00223{left:236.105535px;}
.xc_c00223{left:237.402435px;}
.x2e_c00223{left:246.158985px;}
.x36_c00223{left:247.762785px;}
.x6c_c00223{left:256.529235px;}
.x64_c00223{left:257.925135px;}
.x5b_c00223{left:259.538835px;}
.xd_c00223{left:269.003235px;}
.x4a_c00223{left:270.225885px;}
.x3e_c00223{left:280.799085px;}
.x51_c00223{left:290.387235px;}
.x24_c00223{left:291.896985px;}
.xe_c00223{left:302.534535px;}
.x4b_c00223{left:315.087735px;}
.x19_c00223{left:325.091685px;}
.x3_c00223{left:326.967735px;}
.xf_c00223{left:335.669835px;}
.x57_c00223{left:336.852885px;}
.x25_c00223{left:346.856835px;}
.x2f_c00223{left:358.657635px;}
.x26_c00223{left:369.512985px;}
.x5f_c00223{left:370.691085px;}
.x27_c00223{left:379.497135px;}
.x30_c00223{left:381.046485px;}
.x44_c00223{left:391.273185px;}
.x10_c00223{left:403.088835px;}
.x28_c00223{left:414.087735px;}
.x31_c00223{left:424.908435px;}
.x11_c00223{left:434.684685px;}
.x1a_c00223{left:436.278585px;}
.x29_c00223{left:446.099385px;}
.x45_c00223{left:447.693285px;}
.x37_c00223{left:452.781885px;}
.x52_c00223{left:456.826035px;}
.x58_c00223{left:458.018985px;}
.x38_c00223{left:467.735835px;}
.x1b_c00223{left:469.235685px;}
.x46_c00223{left:478.878285px;}
.x4c_c00223{left:480.150435px;}
.x12_c00223{left:481.214685px;}
.x53_c00223{left:491.911635px;}
.x32_c00223{left:501.762135px;}
.x4d_c00223{left:502.940235px;}
.x6d_c00223{left:504.385635px;}
.x5e_c00223{left:512.424435px;}
.x13_c00223{left:513.647085px;}
.x68_c00223{left:523.472835px;}
.x2a_c00223{left:525.066735px;}
.x47_c00223{left:535.748835px;}
.x39_c00223{left:536.793285px;}
.x14_c00223{left:547.505085px;}
.x48_c00223{left:557.806035px;}
.x1c_c00223{left:558.835635px;}
.x3a_c00223{left:568.631685px;}
.x4_c00223{left:579.323685px;}
.x33_c00223{left:591.000735px;}
.x70_c00223{left:601.638285px;}
.x54_c00223{left:602.662935px;}
.x2b_c00223{left:612.315435px;}
.x63_c00223{left:614.132085px;}
.x4e_c00223{left:623.571735px;}
.x15_c00223{left:624.804285px;}
.x1d_c00223{left:635.184435px;}
.x3f_c00223{left:645.361635px;}
.x60_c00223{left:646.589235px;}
.x69_c00223{left:656.796135px;}
.x5_c00223{left:657.934635px;}
.x3b_c00223{left:660.068085px;}
.x59_c00223{left:666.745635px;}
.x34_c00223{left:668.290035px;}
.x1e_c00223{left:669.725535px;}
.x2c_c00223{left:680.422485px;}
.x65_c00223{left:690.767985px;}
.x7_c00223{left:691.946085px;}
.x22_c00223{left:693.406335px;}
.x6e_c00223{left:696.193185px;}
.x6f_c00223{left:697.326735px;}
.x6_c00223{left:701.222385px;}
.x3c_c00223{left:710.939235px;}
.x5c_c00223{left:723.903285px;}
.x71_c00223{left:746.386185px;}
@media print{
.v0_c00223{vertical-align:0.000000pt;}
.ls6_c00223{letter-spacing:-2.371600pt;}
.lsa_c00223{letter-spacing:-1.576960pt;}
.ls7_c00223{letter-spacing:-1.267112pt;}
.ls8_c00223{letter-spacing:-1.145144pt;}
.ls5_c00223{letter-spacing:-1.111264pt;}
.ls3_c00223{letter-spacing:-0.691152pt;}
.ls2_c00223{letter-spacing:0.000000pt;}
.ls0_c00223{letter-spacing:0.893376pt;}
.ls9_c00223{letter-spacing:2.839144pt;}
.ls1_c00223{letter-spacing:3.388000pt;}
.ls4_c00223{letter-spacing:44.352176pt;}
.ws3_c00223{word-spacing:-20.328000pt;}
.ws0_c00223{word-spacing:-16.940000pt;}
.ws4_c00223{word-spacing:0.000000pt;}
.ws2_c00223{word-spacing:0.203280pt;}
.ws1_c00223{word-spacing:5.895120pt;}
._2_c00223{margin-left:-8.063440pt;}
._f_c00223{margin-left:-6.369440pt;}
._e_c00223{margin-left:-1.151920pt;}
._9_c00223{width:1.355200pt;}
._3_c00223{width:3.523520pt;}
._b_c00223{width:5.353040pt;}
._12_c00223{width:7.183440pt;}
._0_c00223{width:8.537760pt;}
._7_c00223{width:9.824320pt;}
._4_c00223{width:11.315920pt;}
._13_c00223{width:12.300376pt;}
._5_c00223{width:13.213200pt;}
._8_c00223{width:14.839440pt;}
._11_c00223{width:19.040560pt;}
._15_c00223{width:20.328000pt;}
._19_c00223{width:21.616320pt;}
._10_c00223{width:22.767360pt;}
._1_c00223{width:24.122560pt;}
._a_c00223{width:25.937472pt;}
._18_c00223{width:29.069040pt;}
._d_c00223{width:32.253760pt;}
._16_c00223{width:34.422080pt;}
._c_c00223{width:35.641760pt;}
._14_c00223{width:38.487680pt;}
._1a_c00223{width:39.842880pt;}
._17_c00223{width:42.417760pt;}
._6_c00223{width:68.302080pt;}
.fs5_c00223{font-size:19.184000pt;}
.fsc_c00223{font-size:19.712000pt;}
.fse_c00223{font-size:23.936000pt;}
.fs0_c00223{font-size:24.640000pt;}
.fsf_c00223{font-size:29.568000pt;}
.fs1_c00223{font-size:29.920000pt;}
.fs10_c00223{font-size:35.376000pt;}
.fs6_c00223{font-size:44.352176pt;}
.fs9_c00223{font-size:44.704000pt;}
.fsa_c00223{font-size:45.056000pt;}
.fs11_c00223{font-size:58.256000pt;}
.fsd_c00223{font-size:60.544176pt;}
.fs7_c00223{font-size:63.360000pt;}
.fs8_c00223{font-size:64.064176pt;}
.fs4_c00223{font-size:64.768000pt;}
.fsb_c00223{font-size:66.880000pt;}
.fs2_c00223{font-size:67.760000pt;}
.fs3_c00223{font-size:69.344176pt;}
.y0_c00223{bottom:0.000000pt;}
.y29_c00223{bottom:64.232120pt;}
.y1_c00223{bottom:68.000000pt;}
.y28_c00223{bottom:69.300920pt;}
.y27_c00223{bottom:86.086920pt;}
.y26_c00223{bottom:95.278520pt;}
.y24_c00223{bottom:119.038520pt;}
.y25_c00223{bottom:120.301320pt;}
.y20_c00223{bottom:124.107320pt;}
.y2a_c00223{bottom:128.221320pt;}
.y1f_c00223{bottom:142.164920pt;}
.y23_c00223{bottom:152.298120pt;}
.y1e_c00223{bottom:201.406520pt;}
.y22_c00223{bottom:204.891320pt;}
.y21_c00223{bottom:210.910520pt;}
.y1d_c00223{bottom:229.914120pt;}
.y1c_c00223{bottom:258.109320pt;}
.y1b_c00223{bottom:286.621320pt;}
.y1a_c00223{bottom:315.766920pt;}
.y19_c00223{bottom:343.966520pt;}
.y18_c00223{bottom:373.107720pt;}
.y17_c00223{bottom:402.886920pt;}
.y16_c00223{bottom:431.720120pt;}
.y15_c00223{bottom:459.915320pt;}
.y14_c00223{bottom:488.422920pt;}
.y13_c00223{bottom:517.251720pt;}
.y12_c00223{bottom:544.813320pt;}
.y11_c00223{bottom:573.012920pt;}
.y10_c00223{bottom:600.891320pt;}
.yf_c00223{bottom:629.720120pt;}
.ye_c00223{bottom:657.915320pt;}
.yd_c00223{bottom:687.060920pt;}
.yc_c00223{bottom:700.678920pt;}
.yb_c00223{bottom:709.866120pt;}
.ya_c00223{bottom:773.226120pt;}
.y9_c00223{bottom:803.638920pt;}
.y8_c00223{bottom:832.784520pt;}
.y4_c00223{bottom:905.965320pt;}
.y7_c00223{bottom:935.427720pt;}
.y6_c00223{bottom:940.813320pt;}
.y5_c00223{bottom:957.603720pt;}
.y2_c00223{bottom:957.920520pt;}
.y3_c00223{bottom:979.779720pt;}
.h7_c00223{height:20.008313pt;}
.hd_c00223{height:20.559000pt;}
.hf_c00223{height:24.964500pt;}
.h2_c00223{height:25.698750pt;}
.h3_c00223{height:29.364844pt;}
.h8_c00223{height:29.538549pt;}
.h10_c00223{height:30.838500pt;}
.h11_c00223{height:34.719609pt;}
.ha_c00223{height:43.874531pt;}
.hb_c00223{height:44.220000pt;}
.h12_c00223{height:57.175078pt;}
.h9_c00223{height:62.875485pt;}
.he_c00223{height:63.145684pt;}
.h6_c00223{height:63.566250pt;}
.hc_c00223{height:65.639063pt;}
.h4_c00223{height:66.502734pt;}
.h5_c00223{height:72.323809pt;}
.h1_c00223{height:986.666667pt;}
.h0_c00223{height:1122.666667pt;}
.w1_c00223{width:668.000000pt;}
.w0_c00223{width:793.333333pt;}
.x0_c00223{left:0.000000pt;}
.x2_c00223{left:37.853587pt;}
.x16_c00223{left:61.613587pt;}
.x1_c00223{left:62.666667pt;}
.x4f_c00223{left:72.274787pt;}
.x5a_c00223{left:82.262787pt;}
.x55_c00223{left:91.133187pt;}
.x1f_c00223{left:92.510387pt;}
.x20_c00223{left:101.864787pt;}
.x61_c00223{left:103.026387pt;}
.x8_c00223{left:111.038787pt;}
.x49_c00223{left:112.508387pt;}
.x21_c00223{left:121.721987pt;}
.x56_c00223{left:122.650387pt;}
.x2d_c00223{left:131.225987pt;}
.x62_c00223{left:132.145587pt;}
.x3d_c00223{left:139.603587pt;}
.x17_c00223{left:141.046787pt;}
.x40_c00223{left:150.511187pt;}
.x66_c00223{left:151.743187pt;}
.x41_c00223{left:155.333587pt;}
.x6a_c00223{left:156.332387pt;}
.x42_c00223{left:159.944787pt;}
.x9_c00223{left:161.634387pt;}
.x5d_c00223{left:169.690787pt;}
.xa_c00223{left:170.658787pt;}
.x18_c00223{left:179.894387pt;}
.x50_c00223{left:181.275987pt;}
.x67_c00223{left:182.248387pt;}
.x43_c00223{left:190.141987pt;}
.xb_c00223{left:191.413587pt;}
.x35_c00223{left:199.474387pt;}
.x6b_c00223{left:200.794387pt;}
.x23_c00223{left:209.871587pt;}
.xc_c00223{left:211.024387pt;}
.x2e_c00223{left:218.807987pt;}
.x36_c00223{left:220.233587pt;}
.x6c_c00223{left:228.025987pt;}
.x64_c00223{left:229.266787pt;}
.x5b_c00223{left:230.701187pt;}
.xd_c00223{left:239.113987pt;}
.x4a_c00223{left:240.200787pt;}
.x3e_c00223{left:249.599187pt;}
.x51_c00223{left:258.121987pt;}
.x24_c00223{left:259.463987pt;}
.xe_c00223{left:268.919587pt;}
.x4b_c00223{left:280.077987pt;}
.x19_c00223{left:288.970387pt;}
.x3_c00223{left:290.637987pt;}
.xf_c00223{left:298.373187pt;}
.x57_c00223{left:299.424787pt;}
.x25_c00223{left:308.317187pt;}
.x2f_c00223{left:318.806787pt;}
.x26_c00223{left:328.455987pt;}
.x5f_c00223{left:329.503187pt;}
.x27_c00223{left:337.330787pt;}
.x30_c00223{left:338.707987pt;}
.x44_c00223{left:347.798387pt;}
.x10_c00223{left:358.301187pt;}
.x28_c00223{left:368.077987pt;}
.x31_c00223{left:377.696387pt;}
.x11_c00223{left:386.386387pt;}
.x1a_c00223{left:387.803187pt;}
.x29_c00223{left:396.532787pt;}
.x45_c00223{left:397.949587pt;}
.x37_c00223{left:402.472787pt;}
.x52_c00223{left:406.067587pt;}
.x58_c00223{left:407.127987pt;}
.x38_c00223{left:415.765187pt;}
.x1b_c00223{left:417.098387pt;}
.x46_c00223{left:425.669587pt;}
.x4c_c00223{left:426.800387pt;}
.x12_c00223{left:427.746387pt;}
.x53_c00223{left:437.254787pt;}
.x32_c00223{left:446.010787pt;}
.x4d_c00223{left:447.057987pt;}
.x6d_c00223{left:448.342787pt;}
.x5e_c00223{left:455.488387pt;}
.x13_c00223{left:456.575187pt;}
.x68_c00223{left:465.309187pt;}
.x2a_c00223{left:466.725987pt;}
.x47_c00223{left:476.221187pt;}
.x39_c00223{left:477.149587pt;}
.x14_c00223{left:486.671187pt;}
.x48_c00223{left:495.827587pt;}
.x1c_c00223{left:496.742787pt;}
.x3a_c00223{left:505.450387pt;}
.x4_c00223{left:514.954387pt;}
.x33_c00223{left:525.333987pt;}
.x70_c00223{left:534.789587pt;}
.x54_c00223{left:535.700387pt;}
.x2b_c00223{left:544.280387pt;}
.x63_c00223{left:545.895187pt;}
.x4e_c00223{left:554.285987pt;}
.x15_c00223{left:555.381587pt;}
.x1d_c00223{left:564.608387pt;}
.x3f_c00223{left:573.654787pt;}
.x60_c00223{left:574.745987pt;}
.x69_c00223{left:583.818787pt;}
.x5_c00223{left:584.830787pt;}
.x3b_c00223{left:586.727187pt;}
.x59_c00223{left:592.662787pt;}
.x34_c00223{left:594.035587pt;}
.x1e_c00223{left:595.311587pt;}
.x2c_c00223{left:604.819987pt;}
.x65_c00223{left:614.015987pt;}
.x7_c00223{left:615.063187pt;}
.x22_c00223{left:616.361187pt;}
.x6e_c00223{left:618.838387pt;}
.x6f_c00223{left:619.845987pt;}
.x6_c00223{left:623.308787pt;}
.x3c_c00223{left:631.945987pt;}
.x5c_c00223{left:643.469587pt;}
.x71_c00223{left:663.454387pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a68806377dda3896ee41b6db.woff2')format("woff");}.ff1_c00224{font-family:ff1_c00224;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00224;src:url('chunks/assets/font_22e728c960ef623a8aa36b9e.woff2')format("woff");}.ff2_c00224{font-family:ff2_c00224;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00224;src:url('chunks/assets/font_ddc3480648bd7ffcf755adc1.woff2')format("woff");}.ff3_c00224{font-family:ff3_c00224;line-height:0.666000;font-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_c00224{transform:matrix(0.098964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098964,0.000000,0.000000,0.250000,0,0);}
.mb1_c00224{transform:matrix(0.114286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114286,0.000000,0.000000,0.250000,0,0);}
.mc5_c00224{transform:matrix(0.137670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137670,0.000000,0.000000,0.250000,0,0);}
.m24_c00224{transform:matrix(0.140259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140259,0.000000,0.000000,0.250000,0,0);}
.m94_c00224{transform:matrix(0.147569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147569,0.000000,0.000000,0.250000,0,0);}
.m3c_c00224{transform:matrix(0.157142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157142,0.000000,0.000000,0.250000,0,0);}
.m95_c00224{transform:matrix(0.159723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159723,0.000000,0.000000,0.250000,0,0);}
.m6d_c00224{transform:matrix(0.172994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172994,0.000000,0.000000,0.250000,0,0);}
.mb2_c00224{transform:matrix(0.191429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191429,0.000000,0.000000,0.250000,0,0);}
.m50_c00224{transform:matrix(0.197270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197270,0.000000,0.000000,0.250000,0,0);}
.m3b_c00224{transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);}
.m1a_c00224{transform:matrix(0.225221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225221,0.000000,0.000000,0.250000,0,0);}
.mbb_c00224{transform:matrix(0.226086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226086,0.000000,0.000000,0.250000,0,0);}
.m81_c00224{transform:matrix(0.240952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240952,0.000000,0.000000,0.250000,0,0);}
.m6f_c00224{transform:matrix(0.244293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244293,0.000000,0.000000,0.250000,0,0);}
.m13_c00224{transform:matrix(0.248852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248852,0.000000,0.000000,0.250000,0,0);}
.m0_c00224{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m61_c00224{transform:matrix(0.250220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250220,0.000000,0.000000,0.250000,0,0);}
.m2e_c00224{transform:matrix(0.253843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253843,0.000000,0.000000,0.250000,0,0);}
.ma_c00224{transform:matrix(0.253944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253944,0.000000,0.000000,0.250000,0,0);}
.m1_c00224{transform:matrix(0.257069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257069,0.000000,0.000000,0.250000,0,0);}
.m8e_c00224{transform:matrix(0.257206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257206,0.000000,0.000000,0.250000,0,0);}
.m11_c00224{transform:matrix(0.258400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258400,0.000000,0.000000,0.250000,0,0);}
.m3f_c00224{transform:matrix(0.258736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258736,0.000000,0.000000,0.250000,0,0);}
.mba_c00224{transform:matrix(0.258816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258816,0.000000,0.000000,0.250000,0,0);}
.mbd_c00224{transform:matrix(0.260267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260267,0.000000,0.000000,0.250000,0,0);}
.m84_c00224{transform:matrix(0.260845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260845,0.000000,0.000000,0.250000,0,0);}
.m49_c00224{transform:matrix(0.261193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261193,0.000000,0.000000,0.250000,0,0);}
.mae_c00224{transform:matrix(0.262690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262690,0.000000,0.000000,0.250000,0,0);}
.m68_c00224{transform:matrix(0.263354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263354,0.000000,0.000000,0.250000,0,0);}
.mce_c00224{transform:matrix(0.263527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263527,0.000000,0.000000,0.250000,0,0);}
.m9d_c00224{transform:matrix(0.264653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264653,0.000000,0.000000,0.250000,0,0);}
.mc1_c00224{transform:matrix(0.264679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264679,0.000000,0.000000,0.250000,0,0);}
.m5a_c00224{transform:matrix(0.265320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265320,0.000000,0.000000,0.250000,0,0);}
.m20_c00224{transform:matrix(0.265386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265386,0.000000,0.000000,0.250000,0,0);}
.m7d_c00224{transform:matrix(0.265942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265942,0.000000,0.000000,0.250000,0,0);}
.ma1_c00224{transform:matrix(0.267220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267220,0.000000,0.000000,0.250000,0,0);}
.m2a_c00224{transform:matrix(0.267681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267681,0.000000,0.000000,0.250000,0,0);}
.ma9_c00224{transform:matrix(0.267721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267721,0.000000,0.000000,0.250000,0,0);}
.m27_c00224{transform:matrix(0.268319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268319,0.000000,0.000000,0.250000,0,0);}
.mb4_c00224{transform:matrix(0.268402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268402,0.000000,0.000000,0.250000,0,0);}
.mc8_c00224{transform:matrix(0.269831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269831,0.000000,0.000000,0.250000,0,0);}
.m7_c00224{transform:matrix(0.270126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270126,0.000000,0.000000,0.250000,0,0);}
.md_c00224{transform:matrix(0.270388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270388,0.000000,0.000000,0.250000,0,0);}
.m67_c00224{transform:matrix(0.270754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270754,0.000000,0.000000,0.250000,0,0);}
.mb3_c00224{transform:matrix(0.270764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270764,0.000000,0.000000,0.250000,0,0);}
.m2_c00224{transform:matrix(0.271185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271185,0.000000,0.000000,0.250000,0,0);}
.ma7_c00224{transform:matrix(0.271610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271610,0.000000,0.000000,0.250000,0,0);}
.md1_c00224{transform:matrix(0.271749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271749,0.000000,0.000000,0.250000,0,0);}
.m6a_c00224{transform:matrix(0.271807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271807,0.000000,0.000000,0.250000,0,0);}
.m8d_c00224{transform:matrix(0.272516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272516,0.000000,0.000000,0.250000,0,0);}
.m17_c00224{transform:matrix(0.273110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273110,0.000000,0.000000,0.250000,0,0);}
.m40_c00224{transform:matrix(0.273740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273740,0.000000,0.000000,0.250000,0,0);}
.m37_c00224{transform:matrix(0.274067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274067,0.000000,0.000000,0.250000,0,0);}
.m22_c00224{transform:matrix(0.274865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274865,0.000000,0.000000,0.250000,0,0);}
.m48_c00224{transform:matrix(0.276693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276693,0.000000,0.000000,0.250000,0,0);}
.m9c_c00224{transform:matrix(0.277367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277367,0.000000,0.000000,0.250000,0,0);}
.ma8_c00224{transform:matrix(0.278052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278052,0.000000,0.000000,0.250000,0,0);}
.m52_c00224{transform:matrix(0.278613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278613,0.000000,0.000000,0.250000,0,0);}
.mc9_c00224{transform:matrix(0.278828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278828,0.000000,0.000000,0.250000,0,0);}
.m2b_c00224{transform:matrix(0.279203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279203,0.000000,0.000000,0.250000,0,0);}
.m75_c00224{transform:matrix(0.279604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279604,0.000000,0.000000,0.250000,0,0);}
.m1d_c00224{transform:matrix(0.280014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280014,0.000000,0.000000,0.250000,0,0);}
.maf_c00224{transform:matrix(0.281227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281227,0.000000,0.000000,0.250000,0,0);}
.m91_c00224{transform:matrix(0.281515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281515,0.000000,0.000000,0.250000,0,0);}
.m4f_c00224{transform:matrix(0.281824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281824,0.000000,0.000000,0.250000,0,0);}
.m71_c00224{transform:matrix(0.282692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282692,0.000000,0.000000,0.250000,0,0);}
.m23_c00224{transform:matrix(0.283773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283773,0.000000,0.000000,0.250000,0,0);}
.m29_c00224{transform:matrix(0.284343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284343,0.000000,0.000000,0.250000,0,0);}
.mf_c00224{transform:matrix(0.284344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284344,0.000000,0.000000,0.250000,0,0);}
.ma3_c00224{transform:matrix(0.284396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284396,0.000000,0.000000,0.250000,0,0);}
.m3d_c00224{transform:matrix(0.284739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284739,0.000000,0.000000,0.250000,0,0);}
.m36_c00224{transform:matrix(0.285232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285232,0.000000,0.000000,0.250000,0,0);}
.m73_c00224{transform:matrix(0.285512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285512,0.000000,0.000000,0.250000,0,0);}
.m59_c00224{transform:matrix(0.285657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285657,0.000000,0.000000,0.250000,0,0);}
.m97_c00224{transform:matrix(0.285790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285790,0.000000,0.000000,0.250000,0,0);}
.me_c00224{transform:matrix(0.286249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286249,0.000000,0.000000,0.250000,0,0);}
.m25_c00224{transform:matrix(0.286635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286635,0.000000,0.000000,0.250000,0,0);}
.mc3_c00224{transform:matrix(0.286635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286635,0.000000,0.000000,0.250000,0,0);}
.m38_c00224{transform:matrix(0.287043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287043,0.000000,0.000000,0.250000,0,0);}
.m70_c00224{transform:matrix(0.287485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287485,0.000000,0.000000,0.250000,0,0);}
.m99_c00224{transform:matrix(0.287707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287707,0.000000,0.000000,0.250000,0,0);}
.m1e_c00224{transform:matrix(0.288841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288841,0.000000,0.000000,0.250000,0,0);}
.m76_c00224{transform:matrix(0.289127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289127,0.000000,0.000000,0.250000,0,0);}
.mb7_c00224{transform:matrix(0.290242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290242,0.000000,0.000000,0.250000,0,0);}
.m10_c00224{transform:matrix(0.290560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290560,0.000000,0.000000,0.250000,0,0);}
.m8_c00224{transform:matrix(0.290893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290893,0.000000,0.000000,0.250000,0,0);}
.mb_c00224{transform:matrix(0.292306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292306,0.000000,0.000000,0.250000,0,0);}
.m5f_c00224{transform:matrix(0.293284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293284,0.000000,0.000000,0.250000,0,0);}
.m72_c00224{transform:matrix(0.295996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295996,0.000000,0.000000,0.250000,0,0);}
.m9e_c00224{transform:matrix(0.296032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296032,0.000000,0.000000,0.250000,0,0);}
.m16_c00224{transform:matrix(0.296460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296460,0.000000,0.000000,0.250000,0,0);}
.m4c_c00224{transform:matrix(0.296462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296462,0.000000,0.000000,0.250000,0,0);}
.mb0_c00224{transform:matrix(0.296590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296590,0.000000,0.000000,0.250000,0,0);}
.m8a_c00224{transform:matrix(0.297358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297358,0.000000,0.000000,0.250000,0,0);}
.m6e_c00224{transform:matrix(0.297565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297565,0.000000,0.000000,0.250000,0,0);}
.m74_c00224{transform:matrix(0.297705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297705,0.000000,0.000000,0.250000,0,0);}
.md0_c00224{transform:matrix(0.298170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298170,0.000000,0.000000,0.250000,0,0);}
.mca_c00224{transform:matrix(0.298418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298418,0.000000,0.000000,0.250000,0,0);}
.mc2_c00224{transform:matrix(0.299256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299256,0.000000,0.000000,0.250000,0,0);}
.m7c_c00224{transform:matrix(0.299360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299360,0.000000,0.000000,0.250000,0,0);}
.m83_c00224{transform:matrix(0.299835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299835,0.000000,0.000000,0.250000,0,0);}
.m5c_c00224{transform:matrix(0.300244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300244,0.000000,0.000000,0.250000,0,0);}
.m60_c00224{transform:matrix(0.300353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300353,0.000000,0.000000,0.250000,0,0);}
.m31_c00224{transform:matrix(0.300683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300683,0.000000,0.000000,0.250000,0,0);}
.m65_c00224{transform:matrix(0.300731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300731,0.000000,0.000000,0.250000,0,0);}
.mc_c00224{transform:matrix(0.302071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302071,0.000000,0.000000,0.250000,0,0);}
.m9b_c00224{transform:matrix(0.302488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302488,0.000000,0.000000,0.250000,0,0);}
.m93_c00224{transform:matrix(0.302735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302735,0.000000,0.000000,0.250000,0,0);}
.m47_c00224{transform:matrix(0.302757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302757,0.000000,0.000000,0.250000,0,0);}
.mcf_c00224{transform:matrix(0.303744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303744,0.000000,0.000000,0.250000,0,0);}
.m6b_c00224{transform:matrix(0.304159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304159,0.000000,0.000000,0.250000,0,0);}
.m4e_c00224{transform:matrix(0.304803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304803,0.000000,0.000000,0.250000,0,0);}
.mc7_c00224{transform:matrix(0.304995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304995,0.000000,0.000000,0.250000,0,0);}
.m8b_c00224{transform:matrix(0.305008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305008,0.000000,0.000000,0.250000,0,0);}
.m41_c00224{transform:matrix(0.307016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307016,0.000000,0.000000,0.250000,0,0);}
.m1f_c00224{transform:matrix(0.307326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307326,0.000000,0.000000,0.250000,0,0);}
.m6c_c00224{transform:matrix(0.307529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307529,0.000000,0.000000,0.250000,0,0);}
.m66_c00224{transform:matrix(0.307997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307997,0.000000,0.000000,0.250000,0,0);}
.m12_c00224{transform:matrix(0.308382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308382,0.000000,0.000000,0.250000,0,0);}
.md2_c00224{transform:matrix(0.308422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308422,0.000000,0.000000,0.250000,0,0);}
.m96_c00224{transform:matrix(0.308464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308464,0.000000,0.000000,0.250000,0,0);}
.m15_c00224{transform:matrix(0.308499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308499,0.000000,0.000000,0.250000,0,0);}
.mbc_c00224{transform:matrix(0.310210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310210,0.000000,0.000000,0.250000,0,0);}
.m19_c00224{transform:matrix(0.310304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310304,0.000000,0.000000,0.250000,0,0);}
.m62_c00224{transform:matrix(0.311012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311012,0.000000,0.000000,0.250000,0,0);}
.m34_c00224{transform:matrix(0.311229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311229,0.000000,0.000000,0.250000,0,0);}
.mb8_c00224{transform:matrix(0.311829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311829,0.000000,0.000000,0.250000,0,0);}
.m2f_c00224{transform:matrix(0.311854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311854,0.000000,0.000000,0.250000,0,0);}
.m55_c00224{transform:matrix(0.312297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312297,0.000000,0.000000,0.250000,0,0);}
.m33_c00224{transform:matrix(0.312736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312736,0.000000,0.000000,0.250000,0,0);}
.mab_c00224{transform:matrix(0.313180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313180,0.000000,0.000000,0.250000,0,0);}
.m86_c00224{transform:matrix(0.314240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314240,0.000000,0.000000,0.250000,0,0);}
.m4b_c00224{transform:matrix(0.314510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314510,0.000000,0.000000,0.250000,0,0);}
.m92_c00224{transform:matrix(0.314953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314953,0.000000,0.000000,0.250000,0,0);}
.m5d_c00224{transform:matrix(0.315637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315637,0.000000,0.000000,0.250000,0,0);}
.m42_c00224{transform:matrix(0.315689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315689,0.000000,0.000000,0.250000,0,0);}
.m3a_c00224{transform:matrix(0.315955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315955,0.000000,0.000000,0.250000,0,0);}
.m8f_c00224{transform:matrix(0.317320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317320,0.000000,0.000000,0.250000,0,0);}
.m3e_c00224{transform:matrix(0.318953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318953,0.000000,0.000000,0.250000,0,0);}
.m79_c00224{transform:matrix(0.319076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319076,0.000000,0.000000,0.250000,0,0);}
.mad_c00224{transform:matrix(0.319132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319132,0.000000,0.000000,0.250000,0,0);}
.m4d_c00224{transform:matrix(0.319242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319242,0.000000,0.000000,0.250000,0,0);}
.m4_c00224{transform:matrix(0.319527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319527,0.000000,0.000000,0.250000,0,0);}
.m39_c00224{transform:matrix(0.320860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320860,0.000000,0.000000,0.250000,0,0);}
.m5b_c00224{transform:matrix(0.321699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321699,0.000000,0.000000,0.250000,0,0);}
.m44_c00224{transform:matrix(0.321914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321914,0.000000,0.000000,0.250000,0,0);}
.m6_c00224{transform:matrix(0.322004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322004,0.000000,0.000000,0.250000,0,0);}
.m18_c00224{transform:matrix(0.322825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322825,0.000000,0.000000,0.250000,0,0);}
.m56_c00224{transform:matrix(0.323003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323003,0.000000,0.000000,0.250000,0,0);}
.ma0_c00224{transform:matrix(0.323896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323896,0.000000,0.000000,0.250000,0,0);}
.m54_c00224{transform:matrix(0.324139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324139,0.000000,0.000000,0.250000,0,0);}
.m32_c00224{transform:matrix(0.327065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327065,0.000000,0.000000,0.250000,0,0);}
.m45_c00224{transform:matrix(0.327562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327562,0.000000,0.000000,0.250000,0,0);}
.m14_c00224{transform:matrix(0.328410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328410,0.000000,0.000000,0.250000,0,0);}
.mb6_c00224{transform:matrix(0.329130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329130,0.000000,0.000000,0.250000,0,0);}
.m7e_c00224{transform:matrix(0.329236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329236,0.000000,0.000000,0.250000,0,0);}
.maa_c00224{transform:matrix(0.329278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329278,0.000000,0.000000,0.250000,0,0);}
.m5e_c00224{transform:matrix(0.329402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329402,0.000000,0.000000,0.250000,0,0);}
.mc4_c00224{transform:matrix(0.329679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329679,0.000000,0.000000,0.250000,0,0);}
.m8c_c00224{transform:matrix(0.329733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329733,0.000000,0.000000,0.250000,0,0);}
.m46_c00224{transform:matrix(0.331127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331127,0.000000,0.000000,0.250000,0,0);}
.ma2_c00224{transform:matrix(0.331763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331763,0.000000,0.000000,0.250000,0,0);}
.m21_c00224{transform:matrix(0.332099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332099,0.000000,0.000000,0.250000,0,0);}
.m4a_c00224{transform:matrix(0.332626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332626,0.000000,0.000000,0.250000,0,0);}
.m1c_c00224{transform:matrix(0.333194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333194,0.000000,0.000000,0.250000,0,0);}
.m35_c00224{transform:matrix(0.333287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333287,0.000000,0.000000,0.250000,0,0);}
.m2d_c00224{transform:matrix(0.333433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333433,0.000000,0.000000,0.250000,0,0);}
.mc0_c00224{transform:matrix(0.335125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335125,0.000000,0.000000,0.250000,0,0);}
.m53_c00224{transform:matrix(0.335641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335641,0.000000,0.000000,0.250000,0,0);}
.m87_c00224{transform:matrix(0.336913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336913,0.000000,0.000000,0.250000,0,0);}
.m69_c00224{transform:matrix(0.337344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337344,0.000000,0.000000,0.250000,0,0);}
.m5_c00224{transform:matrix(0.341856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341856,0.000000,0.000000,0.250000,0,0);}
.ma4_c00224{transform:matrix(0.342326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342326,0.000000,0.000000,0.250000,0,0);}
.m9f_c00224{transform:matrix(0.342400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342400,0.000000,0.000000,0.250000,0,0);}
.m2c_c00224{transform:matrix(0.345062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345062,0.000000,0.000000,0.250000,0,0);}
.m9a_c00224{transform:matrix(0.345388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345388,0.000000,0.000000,0.250000,0,0);}
.m28_c00224{transform:matrix(0.346255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346255,0.000000,0.000000,0.250000,0,0);}
.mb5_c00224{transform:matrix(0.347677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347677,0.000000,0.000000,0.250000,0,0);}
.mb9_c00224{transform:matrix(0.348227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348227,0.000000,0.000000,0.250000,0,0);}
.mcc_c00224{transform:matrix(0.350103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350103,0.000000,0.000000,0.250000,0,0);}
.mac_c00224{transform:matrix(0.350482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350482,0.000000,0.000000,0.250000,0,0);}
.m77_c00224{transform:matrix(0.351005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351005,0.000000,0.000000,0.250000,0,0);}
.m9_c00224{transform:matrix(0.351920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351920,0.000000,0.000000,0.250000,0,0);}
.m63_c00224{transform:matrix(0.351957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351957,0.000000,0.000000,0.250000,0,0);}
.ma5_c00224{transform:matrix(0.352291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352291,0.000000,0.000000,0.250000,0,0);}
.m90_c00224{transform:matrix(0.352330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352330,0.000000,0.000000,0.250000,0,0);}
.m98_c00224{transform:matrix(0.354188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354188,0.000000,0.000000,0.250000,0,0);}
.m7f_c00224{transform:matrix(0.360048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360048,0.000000,0.000000,0.250000,0,0);}
.m57_c00224{transform:matrix(0.360375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360375,0.000000,0.000000,0.250000,0,0);}
.mbf_c00224{transform:matrix(0.361148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361148,0.000000,0.000000,0.250000,0,0);}
.mbe_c00224{transform:matrix(0.364424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364424,0.000000,0.000000,0.250000,0,0);}
.m30_c00224{transform:matrix(0.364530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364530,0.000000,0.000000,0.250000,0,0);}
.mcb_c00224{transform:matrix(0.364966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364966,0.000000,0.000000,0.250000,0,0);}
.m58_c00224{transform:matrix(0.368518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368518,0.000000,0.000000,0.250000,0,0);}
.ma6_c00224{transform:matrix(0.370709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370709,0.000000,0.000000,0.250000,0,0);}
.m7a_c00224{transform:matrix(0.372303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372303,0.000000,0.000000,0.250000,0,0);}
.mcd_c00224{transform:matrix(0.374518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374518,0.000000,0.000000,0.250000,0,0);}
.m82_c00224{transform:matrix(0.374642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374642,0.000000,0.000000,0.250000,0,0);}
.m78_c00224{transform:matrix(0.374880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374880,0.000000,0.000000,0.250000,0,0);}
.m7b_c00224{transform:matrix(0.375889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375889,0.000000,0.000000,0.250000,0,0);}
.m89_c00224{transform:matrix(0.388779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388779,0.000000,0.000000,0.250000,0,0);}
.m64_c00224{transform:matrix(0.389460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389460,0.000000,0.000000,0.250000,0,0);}
.m85_c00224{transform:matrix(0.392283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392283,0.000000,0.000000,0.250000,0,0);}
.m80_c00224{transform:matrix(0.395848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395848,0.000000,0.000000,0.250000,0,0);}
.m1b_c00224{transform:matrix(0.406759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406759,0.000000,0.000000,0.250000,0,0);}
.m51_c00224{transform:matrix(0.418352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418352,0.000000,0.000000,0.250000,0,0);}
.m26_c00224{transform:matrix(0.427708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427708,0.000000,0.000000,0.250000,0,0);}
.mc6_c00224{transform:matrix(0.427978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427978,0.000000,0.000000,0.250000,0,0);}
.m43_c00224{transform:matrix(0.435628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435628,0.000000,0.000000,0.250000,0,0);}
.m88_c00224{transform:matrix(0.443460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443460,0.000000,0.000000,0.250000,0,0);}
.v0_c00224{vertical-align:0.000000px;}
.ls7_c00224{letter-spacing:-2.674980px;}
.ls11_c00224{letter-spacing:-1.926540px;}
.lsc_c00224{letter-spacing:-1.666130px;}
.lsd_c00224{letter-spacing:-1.238134px;}
.ls4_c00224{letter-spacing:0.000000px;}
.ls10_c00224{letter-spacing:0.435640px;}
.ls13_c00224{letter-spacing:1.627916px;}
.ls8_c00224{letter-spacing:1.849558px;}
.lse_c00224{letter-spacing:2.239340px;}
.lsb_c00224{letter-spacing:2.636766px;}
.ls12_c00224{letter-spacing:2.752200px;}
.ls3_c00224{letter-spacing:3.110620px;}
.ls5_c00224{letter-spacing:3.682810px;}
.ls0_c00224{letter-spacing:3.820608px;}
.ls6_c00224{letter-spacing:3.821400px;}
.ls9_c00224{letter-spacing:4.474810px;}
.ls1_c00224{letter-spacing:14.444892px;}
.lsa_c00224{letter-spacing:49.896198px;}
.lsf_c00224{letter-spacing:51.321798px;}
.ls2_c00224{letter-spacing:64.665385px;}
.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;}
}
.ws4_c00224{word-spacing:-21.743766px;}
.ws0_c00224{word-spacing:-19.107000px;}
.ws8_c00224{word-spacing:-3.974256px;}
.ws6_c00224{word-spacing:-3.821400px;}
.ws5_c00224{word-spacing:-1.069992px;}
.wsa_c00224{word-spacing:0.000000px;}
.ws1_c00224{word-spacing:1.757844px;}
.ws3_c00224{word-spacing:2.522124px;}
.ws2_c00224{word-spacing:2.675376px;}
.ws7_c00224{word-spacing:3.744972px;}
.ws9_c00224{word-spacing:3.897828px;}
._15_c00224{margin-left:-12.381336px;}
._c_c00224{margin-left:-8.662104px;}
._0_c00224{margin-left:-7.337088px;}
._1f_c00224{margin-left:-1.529352px;}
._3_c00224{width:3.057120px;}
._19_c00224{width:4.840704px;}
._e_c00224{width:6.470640px;}
._12_c00224{width:7.974252px;}
._1_c00224{width:9.477072px;}
._7_c00224{width:11.005632px;}
._13_c00224{width:12.457764px;}
._10_c00224{width:14.215608px;}
._4_c00224{width:16.203528px;}
._1d_c00224{width:19.022929px;}
._17_c00224{width:21.272724px;}
._1c_c00224{width:22.367664px;}
._f_c00224{width:23.386968px;}
._5_c00224{width:25.679808px;}
._b_c00224{width:27.234108px;}
._6_c00224{width:28.889784px;}
._9_c00224{width:31.029768px;}
._d_c00224{width:32.558328px;}
._8_c00224{width:34.010460px;}
._a_c00224{width:35.309736px;}
._1a_c00224{width:36.489816px;}
._11_c00224{width:37.712268px;}
._1b_c00224{width:39.207564px;}
._16_c00224{width:40.736124px;}
._2_c00224{width:42.799680px;}
._1e_c00224{width:44.608212px;}
._18_c00224{width:47.996784px;}
._14_c00224{width:50.289624px;}
.fc0_c00224{color:transparent;}
.fs0_c00224{font-size:22.176000px;}
.fse_c00224{font-size:33.264000px;}
.fs8_c00224{font-size:33.660000px;}
.fsc_c00224{font-size:37.818000px;}
.fs2_c00224{font-size:38.808000px;}
.fs9_c00224{font-size:45.144000px;}
.fs5_c00224{font-size:49.896198px;}
.fsa_c00224{font-size:51.321798px;}
.fsf_c00224{font-size:55.044000px;}
.fsb_c00224{font-size:64.548000px;}
.fs7_c00224{font-size:70.884000px;}
.fs1_c00224{font-size:73.656198px;}
.fs3_c00224{font-size:76.428000px;}
.fsd_c00224{font-size:77.616198px;}
.fs6_c00224{font-size:78.804000px;}
.fs4_c00224{font-size:89.496198px;}
.y0_c00224{bottom:0.000000px;}
.y24_c00224{bottom:52.654185px;}
.y1_c00224{bottom:76.500000px;}
.y23_c00224{bottom:81.883935px;}
.y2_c00224{bottom:109.683135px;}
.y22_c00224{bottom:146.748735px;}
.y21_c00224{bottom:177.399135px;}
.y1f_c00224{bottom:213.038145px;}
.y20_c00224{bottom:213.039135px;}
.y1e_c00224{bottom:276.473385px;}
.y1d_c00224{bottom:309.262185px;}
.y1c_c00224{bottom:340.981785px;}
.y1b_c00224{bottom:359.875935px;}
.y1a_c00224{bottom:360.232335px;}
.y18_c00224{bottom:373.057785px;}
.y19_c00224{bottom:373.419135px;}
.y17_c00224{bottom:388.382985px;}
.y16_c00224{bottom:405.851535px;}
.y15_c00224{bottom:438.640335px;}
.y14_c00224{bottom:470.716335px;}
.y13_c00224{bottom:503.148735px;}
.y12_c00224{bottom:544.486185px;}
.y11_c00224{bottom:564.449535px;}
.y10_c00224{bottom:572.641785px;}
.yf_c00224{bottom:597.238335px;}
.ye_c00224{bottom:629.309385px;}
.yd_c00224{bottom:661.390335px;}
.yc_c00224{bottom:693.822735px;}
.yb_c00224{bottom:725.893785px;}
.ya_c00224{bottom:757.974735px;}
.y9_c00224{bottom:790.045785px;}
.y8_c00224{bottom:822.839535px;}
.y7_c00224{bottom:855.628335px;}
.y6_c00224{bottom:888.055785px;}
.y5_c00224{bottom:920.849535px;}
.y4_c00224{bottom:1067.681385px;}
.y3_c00224{bottom:1074.809385px;}
.h2_c00224{height:23.128875px;}
.h9_c00224{height:33.035449px;}
.h7_c00224{height:33.230868px;}
.hb_c00224{height:34.180317px;}
.he_c00224{height:34.693313px;}
.hc_c00224{height:37.116299px;}
.h4_c00224{height:40.475531px;}
.ha_c00224{height:47.083781px;}
.hf_c00224{height:54.022676px;}
.h3_c00224{height:72.289530px;}
.h5_c00224{height:75.009902px;}
.h8_c00224{height:77.341816px;}
.hd_c00224{height:80.951269px;}
.h6_c00224{height:87.835624px;}
.h1_c00224{height:1110.000000px;}
.h0_c00224{height:1263.000000px;}
.w1_c00224{width:751.500000px;}
.w0_c00224{width:892.500000px;}
.x0_c00224{left:0.000000px;}
.x2_c00224{left:49.738035px;}
.x14_c00224{left:66.523485px;}
.x6_c00224{left:67.790685px;}
.x1_c00224{left:70.500000px;}
.x5f_c00224{left:77.260035px;}
.x71_c00224{left:79.205385px;}
.x7a_c00224{left:80.249835px;}
.x30_c00224{left:89.818185px;}
.x15_c00224{left:100.237935px;}
.x6f_c00224{left:101.648685px;}
.x31_c00224{left:111.632835px;}
.x7b_c00224{left:115.602735px;}
.x59_c00224{left:122.290185px;}
.x40_c00224{left:123.958335px;}
.x57_c00224{left:133.729635px;}
.x69_c00224{left:134.769135px;}
.x16_c00224{left:136.120485px;}
.x49_c00224{left:143.194035px;}
.x32_c00224{left:145.169085px;}
.x7c_c00224{left:146.198685px;}
.x23_c00224{left:154.900785px;}
.x33_c00224{left:156.158085px;}
.x7_c00224{left:166.642185px;}
.x8_c00224{left:174.200835px;}
.x5a_c00224{left:177.200535px;}
.x46_c00224{left:178.606335px;}
.x70_c00224{left:187.541085px;}
.x17_c00224{left:189.134985px;}
.x7d_c00224{left:190.367535px;}
.x53_c00224{left:195.010635px;}
.x34_c00224{left:199.148835px;}
.x60_c00224{left:200.173485px;}
.x56_c00224{left:202.940535px;}
.x41_c00224{left:211.028835px;}
.x9_c00224{left:212.053485px;}
.x18_c00224{left:221.572335px;}
.x74_c00224{left:223.537485px;}
.x35_c00224{left:232.962285px;}
.x73_c00224{left:234.239385px;}
.x42_c00224{left:242.946435px;}
.xa_c00224{left:245.084835px;}
.x72_c00224{left:249.762585px;}
.x19_c00224{left:255.484785px;}
.x24_c00224{left:267.389535px;}
.x25_c00224{left:278.101335px;}
.x1a_c00224{left:279.130935px;}
.x43_c00224{left:288.773535px;}
.x6a_c00224{left:298.584435px;}
.x1b_c00224{left:300.178335px;}
.x78_c00224{left:303.326535px;}
.x4d_c00224{left:309.276435px;}
.x63_c00224{left:310.860435px;}
.x54_c00224{left:311.924685px;}
.xb_c00224{left:321.908835px;}
.x47_c00224{left:331.373235px;}
.x36_c00224{left:332.947335px;}
.x26_c00224{left:344.287785px;}
.x61_c00224{left:354.143235px;}
.xc_c00224{left:355.648035px;}
.x37_c00224{left:366.458835px;}
.x27_c00224{left:377.814135px;}
.x66_c00224{left:378.942735px;}
.xd_c00224{left:387.639885px;}
.x1c_c00224{left:389.194185px;}
.x5b_c00224{left:399.604035px;}
.x3b_c00224{left:402.118635px;}
.x1d_c00224{left:409.385235px;}
.x28_c00224{left:411.360285px;}
.x29_c00224{left:422.398785px;}
.x75_c00224{left:431.521635px;}
.x1e_c00224{left:432.942285px;}
.x67_c00224{left:435.763785px;}
.xe_c00224{left:443.258085px;}
.x4e_c00224{left:444.817335px;}
.x2a_c00224{left:453.262035px;}
.x38_c00224{left:454.821285px;}
.x7e_c00224{left:455.845935px;}
.x3c_c00224{left:457.632885px;}
.x44_c00224{left:466.102335px;}
.xf_c00224{left:476.036985px;}
.x48_c00224{left:477.616035px;}
.x6b_c00224{left:487.120035px;}
.x2b_c00224{left:488.565435px;}
.x5c_c00224{left:499.173285px;}
.x4a_c00224{left:500.386035px;}
.x64_c00224{left:509.543535px;}
.x10_c00224{left:510.667185px;}
.x4f_c00224{left:512.632335px;}
.x3d_c00224{left:521.606685px;}
.x6c_c00224{left:522.834285px;}
.x51_c00224{left:532.536285px;}
.x4b_c00224{left:533.897535px;}
.x76_c00224{left:543.906435px;}
.x2c_c00224{left:554.638035px;}
.x3e_c00224{left:564.844935px;}
.x11_c00224{left:566.315085px;}
.x7f_c00224{left:575.150835px;}
.x2d_c00224{left:576.383385px;}
.x62_c00224{left:577.799085px;}
.x5_c00224{left:579.635535px;}
.x45_c00224{left:587.055585px;}
.x1f_c00224{left:588.411885px;}
.x55_c00224{left:597.574335px;}
.x12_c00224{left:599.539485px;}
.x2e_c00224{left:609.043485px;}
.x39_c00224{left:610.508685px;}
.x4c_c00224{left:611.701635px;}
.x50_c00224{left:618.988035px;}
.x3f_c00224{left:620.027535px;}
.x20_c00224{left:621.156135px;}
.x13_c00224{left:632.328285px;}
.x3a_c00224{left:643.183635px;}
.x21_c00224{left:653.583585px;}
.x3_c00224{left:655.479435px;}
.x79_c00224{left:664.161735px;}
.x5d_c00224{left:665.478435px;}
.x4_c00224{left:667.344585px;}
.x5e_c00224{left:675.962535px;}
.x65_c00224{left:677.224785px;}
.x52_c00224{left:686.530785px;}
.x22_c00224{left:687.857385px;}
.x58_c00224{left:696.410985px;}
.x77_c00224{left:697.643535px;}
.x80_c00224{left:699.762135px;}
.x68_c00224{left:701.227335px;}
.x6e_c00224{left:704.400285px;}
.x6d_c00224{left:709.266135px;}
.x2f_c00224{left:719.982885px;}
@media print{
.v0_c00224{vertical-align:0.000000pt;}
.ls7_c00224{letter-spacing:-2.377760pt;}
.ls11_c00224{letter-spacing:-1.712480pt;}
.lsc_c00224{letter-spacing:-1.481005pt;}
.lsd_c00224{letter-spacing:-1.100563pt;}
.ls4_c00224{letter-spacing:0.000000pt;}
.ls10_c00224{letter-spacing:0.387235pt;}
.ls13_c00224{letter-spacing:1.447037pt;}
.ls8_c00224{letter-spacing:1.644051pt;}
.lse_c00224{letter-spacing:1.990525pt;}
.lsb_c00224{letter-spacing:2.343792pt;}
.ls12_c00224{letter-spacing:2.446400pt;}
.ls3_c00224{letter-spacing:2.764995pt;}
.ls5_c00224{letter-spacing:3.273609pt;}
.ls0_c00224{letter-spacing:3.396096pt;}
.ls6_c00224{letter-spacing:3.396800pt;}
.ls9_c00224{letter-spacing:3.977609pt;}
.ls1_c00224{letter-spacing:12.839904pt;}
.lsa_c00224{letter-spacing:44.352176pt;}
.lsf_c00224{letter-spacing:45.619376pt;}
.ls2_c00224{letter-spacing:57.480342pt;}
.ws4_c00224{word-spacing:-19.327792pt;}
.ws0_c00224{word-spacing:-16.984000pt;}
.ws8_c00224{word-spacing:-3.532672pt;}
.ws6_c00224{word-spacing:-3.396800pt;}
.ws5_c00224{word-spacing:-0.951104pt;}
.wsa_c00224{word-spacing:0.000000pt;}
.ws1_c00224{word-spacing:1.562528pt;}
.ws3_c00224{word-spacing:2.241888pt;}
.ws2_c00224{word-spacing:2.378112pt;}
.ws7_c00224{word-spacing:3.328864pt;}
.ws9_c00224{word-spacing:3.464736pt;}
._15_c00224{margin-left:-11.005632pt;}
._c_c00224{margin-left:-7.699648pt;}
._0_c00224{margin-left:-6.521856pt;}
._1f_c00224{margin-left:-1.359424pt;}
._3_c00224{width:2.717440pt;}
._19_c00224{width:4.302848pt;}
._e_c00224{width:5.751680pt;}
._12_c00224{width:7.088224pt;}
._1_c00224{width:8.424064pt;}
._7_c00224{width:9.782784pt;}
._13_c00224{width:11.073568pt;}
._10_c00224{width:12.636096pt;}
._4_c00224{width:14.403136pt;}
._1d_c00224{width:16.909270pt;}
._17_c00224{width:18.909088pt;}
._1c_c00224{width:19.882368pt;}
._f_c00224{width:20.788416pt;}
._5_c00224{width:22.826496pt;}
._b_c00224{width:24.208096pt;}
._6_c00224{width:25.679808pt;}
._9_c00224{width:27.582016pt;}
._d_c00224{width:28.940736pt;}
._8_c00224{width:30.231520pt;}
._a_c00224{width:31.386432pt;}
._1a_c00224{width:32.435392pt;}
._11_c00224{width:33.522016pt;}
._1b_c00224{width:34.851168pt;}
._16_c00224{width:36.209888pt;}
._2_c00224{width:38.044160pt;}
._1e_c00224{width:39.651744pt;}
._18_c00224{width:42.663808pt;}
._14_c00224{width:44.701888pt;}
.fs0_c00224{font-size:19.712000pt;}
.fse_c00224{font-size:29.568000pt;}
.fs8_c00224{font-size:29.920000pt;}
.fsc_c00224{font-size:33.616000pt;}
.fs2_c00224{font-size:34.496000pt;}
.fs9_c00224{font-size:40.128000pt;}
.fs5_c00224{font-size:44.352176pt;}
.fsa_c00224{font-size:45.619376pt;}
.fsf_c00224{font-size:48.928000pt;}
.fsb_c00224{font-size:57.376000pt;}
.fs7_c00224{font-size:63.008000pt;}
.fs1_c00224{font-size:65.472176pt;}
.fs3_c00224{font-size:67.936000pt;}
.fsd_c00224{font-size:68.992176pt;}
.fs6_c00224{font-size:70.048000pt;}
.fs4_c00224{font-size:79.552176pt;}
.y0_c00224{bottom:0.000000pt;}
.y24_c00224{bottom:46.803720pt;}
.y1_c00224{bottom:68.000000pt;}
.y23_c00224{bottom:72.785720pt;}
.y2_c00224{bottom:97.496120pt;}
.y22_c00224{bottom:130.443320pt;}
.y21_c00224{bottom:157.688120pt;}
.y1f_c00224{bottom:189.367240pt;}
.y20_c00224{bottom:189.368120pt;}
.y1e_c00224{bottom:245.754120pt;}
.y1d_c00224{bottom:274.899720pt;}
.y1c_c00224{bottom:303.094920pt;}
.y1b_c00224{bottom:319.889720pt;}
.y1a_c00224{bottom:320.206520pt;}
.y18_c00224{bottom:331.606920pt;}
.y19_c00224{bottom:331.928120pt;}
.y17_c00224{bottom:345.229320pt;}
.y16_c00224{bottom:360.756920pt;}
.y15_c00224{bottom:389.902520pt;}
.y14_c00224{bottom:418.414520pt;}
.y13_c00224{bottom:447.243320pt;}
.y12_c00224{bottom:483.987720pt;}
.y11_c00224{bottom:501.732920pt;}
.y10_c00224{bottom:509.014920pt;}
.yf_c00224{bottom:530.878520pt;}
.ye_c00224{bottom:559.386120pt;}
.yd_c00224{bottom:587.902520pt;}
.yc_c00224{bottom:616.731320pt;}
.yb_c00224{bottom:645.238920pt;}
.ya_c00224{bottom:673.755320pt;}
.y9_c00224{bottom:702.262920pt;}
.y8_c00224{bottom:731.412920pt;}
.y7_c00224{bottom:760.558520pt;}
.y6_c00224{bottom:789.382920pt;}
.y5_c00224{bottom:818.532920pt;}
.y4_c00224{bottom:949.050120pt;}
.y3_c00224{bottom:955.386120pt;}
.h2_c00224{height:20.559000pt;}
.h9_c00224{height:29.364844pt;}
.h7_c00224{height:29.538549pt;}
.hb_c00224{height:30.382504pt;}
.he_c00224{height:30.838500pt;}
.hc_c00224{height:32.992266pt;}
.h4_c00224{height:35.978250pt;}
.ha_c00224{height:41.852250pt;}
.hf_c00224{height:48.020156pt;}
.h3_c00224{height:64.257360pt;}
.h5_c00224{height:66.675469pt;}
.h8_c00224{height:68.748281pt;}
.hd_c00224{height:71.956684pt;}
.h6_c00224{height:78.076110pt;}
.h1_c00224{height:986.666667pt;}
.h0_c00224{height:1122.666667pt;}
.w1_c00224{width:668.000000pt;}
.w0_c00224{width:793.333333pt;}
.x0_c00224{left:0.000000pt;}
.x2_c00224{left:44.211587pt;}
.x14_c00224{left:59.131987pt;}
.x6_c00224{left:60.258387pt;}
.x1_c00224{left:62.666667pt;}
.x5f_c00224{left:68.675587pt;}
.x71_c00224{left:70.404787pt;}
.x7a_c00224{left:71.333187pt;}
.x30_c00224{left:79.838387pt;}
.x15_c00224{left:89.100387pt;}
.x6f_c00224{left:90.354387pt;}
.x31_c00224{left:99.229187pt;}
.x7b_c00224{left:102.757987pt;}
.x59_c00224{left:108.702387pt;}
.x40_c00224{left:110.185187pt;}
.x57_c00224{left:118.870787pt;}
.x69_c00224{left:119.794787pt;}
.x16_c00224{left:120.995987pt;}
.x49_c00224{left:127.283587pt;}
.x32_c00224{left:129.039187pt;}
.x7c_c00224{left:129.954387pt;}
.x23_c00224{left:137.689587pt;}
.x33_c00224{left:138.807187pt;}
.x7_c00224{left:148.126387pt;}
.x8_c00224{left:154.845187pt;}
.x5a_c00224{left:157.511587pt;}
.x46_c00224{left:158.761187pt;}
.x70_c00224{left:166.703187pt;}
.x17_c00224{left:168.119987pt;}
.x7d_c00224{left:169.215587pt;}
.x53_c00224{left:173.342787pt;}
.x34_c00224{left:177.021187pt;}
.x60_c00224{left:177.931987pt;}
.x56_c00224{left:180.391587pt;}
.x41_c00224{left:187.581187pt;}
.x9_c00224{left:188.491987pt;}
.x18_c00224{left:196.953187pt;}
.x74_c00224{left:198.699987pt;}
.x35_c00224{left:207.077587pt;}
.x73_c00224{left:208.212787pt;}
.x42_c00224{left:215.952387pt;}
.xa_c00224{left:217.853187pt;}
.x72_c00224{left:222.011187pt;}
.x19_c00224{left:227.097587pt;}
.x24_c00224{left:237.679587pt;}
.x25_c00224{left:247.201187pt;}
.x1a_c00224{left:248.116387pt;}
.x43_c00224{left:256.687587pt;}
.x6a_c00224{left:265.408387pt;}
.x1b_c00224{left:266.825187pt;}
.x78_c00224{left:269.623587pt;}
.x4d_c00224{left:274.912387pt;}
.x63_c00224{left:276.320387pt;}
.x54_c00224{left:277.266387pt;}
.xb_c00224{left:286.141187pt;}
.x47_c00224{left:294.553987pt;}
.x36_c00224{left:295.953187pt;}
.x26_c00224{left:306.033587pt;}
.x61_c00224{left:314.793987pt;}
.xc_c00224{left:316.131587pt;}
.x37_c00224{left:325.741187pt;}
.x27_c00224{left:335.834787pt;}
.x66_c00224{left:336.837987pt;}
.xd_c00224{left:344.568787pt;}
.x1c_c00224{left:345.950387pt;}
.x5b_c00224{left:355.203587pt;}
.x3b_c00224{left:357.438787pt;}
.x1d_c00224{left:363.897987pt;}
.x28_c00224{left:365.653587pt;}
.x29_c00224{left:375.465587pt;}
.x75_c00224{left:383.574787pt;}
.x1e_c00224{left:384.837587pt;}
.x67_c00224{left:387.345587pt;}
.xe_c00224{left:394.007187pt;}
.x4e_c00224{left:395.393187pt;}
.x2a_c00224{left:402.899587pt;}
.x38_c00224{left:404.285587pt;}
.x7e_c00224{left:405.196387pt;}
.x3c_c00224{left:406.784787pt;}
.x44_c00224{left:414.313187pt;}
.xf_c00224{left:423.143987pt;}
.x48_c00224{left:424.547587pt;}
.x6b_c00224{left:432.995587pt;}
.x2b_c00224{left:434.280387pt;}
.x5c_c00224{left:443.709587pt;}
.x4a_c00224{left:444.787587pt;}
.x64_c00224{left:452.927587pt;}
.x10_c00224{left:453.926387pt;}
.x4f_c00224{left:455.673187pt;}
.x3d_c00224{left:463.650387pt;}
.x6c_c00224{left:464.741587pt;}
.x51_c00224{left:473.365587pt;}
.x4b_c00224{left:474.575587pt;}
.x76_c00224{left:483.472387pt;}
.x2c_c00224{left:493.011587pt;}
.x3e_c00224{left:502.084387pt;}
.x11_c00224{left:503.391187pt;}
.x7f_c00224{left:511.245187pt;}
.x2d_c00224{left:512.340787pt;}
.x62_c00224{left:513.599187pt;}
.x5_c00224{left:515.231587pt;}
.x45_c00224{left:521.827187pt;}
.x1f_c00224{left:523.032787pt;}
.x55_c00224{left:531.177187pt;}
.x12_c00224{left:532.923987pt;}
.x2e_c00224{left:541.371987pt;}
.x39_c00224{left:542.674387pt;}
.x4c_c00224{left:543.734787pt;}
.x50_c00224{left:550.211587pt;}
.x3f_c00224{left:551.135587pt;}
.x20_c00224{left:552.138787pt;}
.x13_c00224{left:562.069587pt;}
.x3a_c00224{left:571.718787pt;}
.x21_c00224{left:580.963187pt;}
.x3_c00224{left:582.648387pt;}
.x79_c00224{left:590.365987pt;}
.x5d_c00224{left:591.536387pt;}
.x4_c00224{left:593.195187pt;}
.x5e_c00224{left:600.855587pt;}
.x65_c00224{left:601.977587pt;}
.x52_c00224{left:610.249587pt;}
.x22_c00224{left:611.428787pt;}
.x58_c00224{left:619.031987pt;}
.x77_c00224{left:620.127587pt;}
.x80_c00224{left:622.010787pt;}
.x68_c00224{left:623.313187pt;}
.x6e_c00224{left:626.133587pt;}
.x6d_c00224{left:630.458787pt;}
.x2f_c00224{left:639.984787pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3fa9bd695f6aa64687dd52dc.woff2')format("woff");}.ff1_c00225{font-family:ff1_c00225;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00225;src:url('chunks/assets/font_e880555e351ed4ba74cca83a.woff2')format("woff");}.ff2_c00225{font-family:ff2_c00225;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00225;src:url('chunks/assets/font_2140262f7a8226cb4df31d16.woff2')format("woff");}.ff3_c00225{font-family:ff3_c00225;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m25_c00225{transform:matrix(0.028572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.028572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.028572,0.000000,0.000000,0.250000,0,0);}
.m1d_c00225{transform:matrix(0.064286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064286,0.000000,0.000000,0.250000,0,0);}
.m4f_c00225{transform:matrix(0.080883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080883,0.000000,0.000000,0.250000,0,0);}
.m6c_c00225{transform:matrix(0.108154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108154,0.000000,0.000000,0.250000,0,0);}
.m4e_c00225{transform:matrix(0.125001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125001,0.000000,0.000000,0.250000,0,0);}
.m4a_c00225{transform:matrix(0.132352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132352,0.000000,0.000000,0.250000,0,0);}
.m4c_c00225{transform:matrix(0.139705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139705,0.000000,0.000000,0.250000,0,0);}
.m9b_c00225{transform:matrix(0.142782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142782,0.000000,0.000000,0.250000,0,0);}
.m58_c00225{transform:matrix(0.151203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151203,0.000000,0.000000,0.250000,0,0);}
.m1c_c00225{transform:matrix(0.157142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157142,0.000000,0.000000,0.250000,0,0);}
.m21_c00225{transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);}
.mb0_c00225{transform:matrix(0.173710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173710,0.000000,0.000000,0.250000,0,0);}
.m1f_c00225{transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);}
.m4d_c00225{transform:matrix(0.183823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183823,0.000000,0.000000,0.250000,0,0);}
.m20_c00225{transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);}
.m37_c00225{transform:matrix(0.198297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198297,0.000000,0.000000,0.250000,0,0);}
.m24_c00225{transform:matrix(0.203572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203572,0.000000,0.000000,0.250000,0,0);}
.m1b_c00225{transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);}
.m7d_c00225{transform:matrix(0.209524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209524,0.000000,0.000000,0.250000,0,0);}
.m83_c00225{transform:matrix(0.215277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215277,0.000000,0.000000,0.250000,0,0);}
.m4b_c00225{transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);}
.m49_c00225{transform:matrix(0.217646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217646,0.000000,0.000000,0.250000,0,0);}
.m1e_c00225{transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);}
.me3_c00225{transform:matrix(0.235583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235583,0.000000,0.000000,0.250000,0,0);}
.mbd_c00225{transform:matrix(0.238785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238785,0.000000,0.000000,0.250000,0,0);}
.mc7_c00225{transform:matrix(0.241527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241527,0.000000,0.000000,0.250000,0,0);}
.m48_c00225{transform:matrix(0.242738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242738,0.000000,0.000000,0.250000,0,0);}
.m1_c00225{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m73_c00225{transform:matrix(0.250527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250527,0.000000,0.000000,0.250000,0,0);}
.mb5_c00225{transform:matrix(0.250528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250528,0.000000,0.000000,0.250000,0,0);}
.me6_c00225{transform:matrix(0.250788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250788,0.000000,0.000000,0.250000,0,0);}
.m6d_c00225{transform:matrix(0.252161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252161,0.000000,0.000000,0.250000,0,0);}
.m86_c00225{transform:matrix(0.253040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253040,0.000000,0.000000,0.250000,0,0);}
.mac_c00225{transform:matrix(0.253341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253341,0.000000,0.000000,0.250000,0,0);}
.m6e_c00225{transform:matrix(0.255266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255266,0.000000,0.000000,0.250000,0,0);}
.mb9_c00225{transform:matrix(0.255734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255734,0.000000,0.000000,0.250000,0,0);}
.m51_c00225{transform:matrix(0.255887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255887,0.000000,0.000000,0.250000,0,0);}
.m90_c00225{transform:matrix(0.257113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257113,0.000000,0.000000,0.250000,0,0);}
.m34_c00225{transform:matrix(0.257779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257779,0.000000,0.000000,0.250000,0,0);}
.m8_c00225{transform:matrix(0.258760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258760,0.000000,0.000000,0.250000,0,0);}
.m5f_c00225{transform:matrix(0.260178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260178,0.000000,0.000000,0.250000,0,0);}
.ma6_c00225{transform:matrix(0.260603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260603,0.000000,0.000000,0.250000,0,0);}
.m5a_c00225{transform:matrix(0.260618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260618,0.000000,0.000000,0.250000,0,0);}
.m3f_c00225{transform:matrix(0.262999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262999,0.000000,0.000000,0.250000,0,0);}
.m4_c00225{transform:matrix(0.264223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264223,0.000000,0.000000,0.250000,0,0);}
.m8a_c00225{transform:matrix(0.264548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264548,0.000000,0.000000,0.250000,0,0);}
.ma8_c00225{transform:matrix(0.264648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264648,0.000000,0.000000,0.250000,0,0);}
.m75_c00225{transform:matrix(0.264899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264899,0.000000,0.000000,0.250000,0,0);}
.m18_c00225{transform:matrix(0.265976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265976,0.000000,0.000000,0.250000,0,0);}
.mc_c00225{transform:matrix(0.266031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266031,0.000000,0.000000,0.250000,0,0);}
.m30_c00225{transform:matrix(0.266057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266057,0.000000,0.000000,0.250000,0,0);}
.m28_c00225{transform:matrix(0.266768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266768,0.000000,0.000000,0.250000,0,0);}
.m93_c00225{transform:matrix(0.267326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267326,0.000000,0.000000,0.250000,0,0);}
.m56_c00225{transform:matrix(0.268529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268529,0.000000,0.000000,0.250000,0,0);}
.mce_c00225{transform:matrix(0.268904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268904,0.000000,0.000000,0.250000,0,0);}
.m36_c00225{transform:matrix(0.269115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269115,0.000000,0.000000,0.250000,0,0);}
.m94_c00225{transform:matrix(0.270451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270451,0.000000,0.000000,0.250000,0,0);}
.m74_c00225{transform:matrix(0.271038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271038,0.000000,0.000000,0.250000,0,0);}
.m23_c00225{transform:matrix(0.271146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271146,0.000000,0.000000,0.250000,0,0);}
.m42_c00225{transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);}
.md6_c00225{transform:matrix(0.272100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272100,0.000000,0.000000,0.250000,0,0);}
.ma2_c00225{transform:matrix(0.272173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272173,0.000000,0.000000,0.250000,0,0);}
.m78_c00225{transform:matrix(0.273665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273665,0.000000,0.000000,0.250000,0,0);}
.m3_c00225{transform:matrix(0.274532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274532,0.000000,0.000000,0.250000,0,0);}
.me_c00225{transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);}
.mc1_c00225{transform:matrix(0.276353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276353,0.000000,0.000000,0.250000,0,0);}
.mb3_c00225{transform:matrix(0.277012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277012,0.000000,0.000000,0.250000,0,0);}
.m10_c00225{transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);}
.m17_c00225{transform:matrix(0.277562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277562,0.000000,0.000000,0.250000,0,0);}
.m5_c00225{transform:matrix(0.278059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278059,0.000000,0.000000,0.250000,0,0);}
.m8c_c00225{transform:matrix(0.280090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280090,0.000000,0.000000,0.250000,0,0);}
.m91_c00225{transform:matrix(0.280837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280837,0.000000,0.000000,0.250000,0,0);}
.m45_c00225{transform:matrix(0.281059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281059,0.000000,0.000000,0.250000,0,0);}
.md3_c00225{transform:matrix(0.281788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281788,0.000000,0.000000,0.250000,0,0);}
.m7c_c00225{transform:matrix(0.282691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282691,0.000000,0.000000,0.250000,0,0);}
.md4_c00225{transform:matrix(0.283404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283404,0.000000,0.000000,0.250000,0,0);}
.mbe_c00225{transform:matrix(0.284531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284531,0.000000,0.000000,0.250000,0,0);}
.me5_c00225{transform:matrix(0.284618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284618,0.000000,0.000000,0.250000,0,0);}
.mc8_c00225{transform:matrix(0.284646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284646,0.000000,0.000000,0.250000,0,0);}
.m53_c00225{transform:matrix(0.284687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284687,0.000000,0.000000,0.250000,0,0);}
.m92_c00225{transform:matrix(0.285012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285012,0.000000,0.000000,0.250000,0,0);}
.m9a_c00225{transform:matrix(0.285823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285823,0.000000,0.000000,0.250000,0,0);}
.ma_c00225{transform:matrix(0.285877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285877,0.000000,0.000000,0.250000,0,0);}
.mb2_c00225{transform:matrix(0.285993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285993,0.000000,0.000000,0.250000,0,0);}
.ma3_c00225{transform:matrix(0.286027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286027,0.000000,0.000000,0.250000,0,0);}
.m19_c00225{transform:matrix(0.286385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286385,0.000000,0.000000,0.250000,0,0);}
.m8b_c00225{transform:matrix(0.286447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286447,0.000000,0.000000,0.250000,0,0);}
.mae_c00225{transform:matrix(0.286721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286721,0.000000,0.000000,0.250000,0,0);}
.m13_c00225{transform:matrix(0.286866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286866,0.000000,0.000000,0.250000,0,0);}
.m6a_c00225{transform:matrix(0.287078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287078,0.000000,0.000000,0.250000,0,0);}
.m38_c00225{transform:matrix(0.287389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287389,0.000000,0.000000,0.250000,0,0);}
.m9d_c00225{transform:matrix(0.287402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287402,0.000000,0.000000,0.250000,0,0);}
.m44_c00225{transform:matrix(0.287518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287518,0.000000,0.000000,0.250000,0,0);}
.mb6_c00225{transform:matrix(0.287739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287739,0.000000,0.000000,0.250000,0,0);}
.m81_c00225{transform:matrix(0.288127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288127,0.000000,0.000000,0.250000,0,0);}
.m26_c00225{transform:matrix(0.288713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288713,0.000000,0.000000,0.250000,0,0);}
.m99_c00225{transform:matrix(0.288768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288768,0.000000,0.000000,0.250000,0,0);}
.mda_c00225{transform:matrix(0.289027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289027,0.000000,0.000000,0.250000,0,0);}
.m3c_c00225{transform:matrix(0.289088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289088,0.000000,0.000000,0.250000,0,0);}
.m41_c00225{transform:matrix(0.289169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289169,0.000000,0.000000,0.250000,0,0);}
.maf_c00225{transform:matrix(0.289174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289174,0.000000,0.000000,0.250000,0,0);}
.mab_c00225{transform:matrix(0.289502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289502,0.000000,0.000000,0.250000,0,0);}
.m22_c00225{transform:matrix(0.289537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289537,0.000000,0.000000,0.250000,0,0);}
.mdf_c00225{transform:matrix(0.290055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290055,0.000000,0.000000,0.250000,0,0);}
.me2_c00225{transform:matrix(0.290141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290141,0.000000,0.000000,0.250000,0,0);}
.m72_c00225{transform:matrix(0.290344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290344,0.000000,0.000000,0.250000,0,0);}
.m9_c00225{transform:matrix(0.291010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291010,0.000000,0.000000,0.250000,0,0);}
.m7a_c00225{transform:matrix(0.291073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291073,0.000000,0.000000,0.250000,0,0);}
.md7_c00225{transform:matrix(0.291991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291991,0.000000,0.000000,0.250000,0,0);}
.md5_c00225{transform:matrix(0.292061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292061,0.000000,0.000000,0.250000,0,0);}
.m0_c00225{transform:matrix(0.292357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292357,0.000000,0.000000,0.250000,0,0);}
.md8_c00225{transform:matrix(0.292426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292426,0.000000,0.000000,0.250000,0,0);}
.maa_c00225{transform:matrix(0.292722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292722,0.000000,0.000000,0.250000,0,0);}
.m50_c00225{transform:matrix(0.292850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292850,0.000000,0.000000,0.250000,0,0);}
.mc3_c00225{transform:matrix(0.293502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293502,0.000000,0.000000,0.250000,0,0);}
.m9e_c00225{transform:matrix(0.293578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293578,0.000000,0.000000,0.250000,0,0);}
.mc2_c00225{transform:matrix(0.293698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293698,0.000000,0.000000,0.250000,0,0);}
.m2d_c00225{transform:matrix(0.294101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294101,0.000000,0.000000,0.250000,0,0);}
.m32_c00225{transform:matrix(0.294617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294617,0.000000,0.000000,0.250000,0,0);}
.m7b_c00225{transform:matrix(0.295130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295130,0.000000,0.000000,0.250000,0,0);}
.m46_c00225{transform:matrix(0.295491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295491,0.000000,0.000000,0.250000,0,0);}
.m87_c00225{transform:matrix(0.296014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296014,0.000000,0.000000,0.250000,0,0);}
.mb7_c00225{transform:matrix(0.296256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296256,0.000000,0.000000,0.250000,0,0);}
.m64_c00225{transform:matrix(0.297505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297505,0.000000,0.000000,0.250000,0,0);}
.mc6_c00225{transform:matrix(0.298038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298038,0.000000,0.000000,0.250000,0,0);}
.ma4_c00225{transform:matrix(0.298413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298413,0.000000,0.000000,0.250000,0,0);}
.m2a_c00225{transform:matrix(0.298864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298864,0.000000,0.000000,0.250000,0,0);}
.m27_c00225{transform:matrix(0.299545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299545,0.000000,0.000000,0.250000,0,0);}
.mcb_c00225{transform:matrix(0.299928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299928,0.000000,0.000000,0.250000,0,0);}
.m7e_c00225{transform:matrix(0.300026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300026,0.000000,0.000000,0.250000,0,0);}
.m3a_c00225{transform:matrix(0.300126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300126,0.000000,0.000000,0.250000,0,0);}
.m9c_c00225{transform:matrix(0.300924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300924,0.000000,0.000000,0.250000,0,0);}
.me4_c00225{transform:matrix(0.301300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301300,0.000000,0.000000,0.250000,0,0);}
.me7_c00225{transform:matrix(0.301353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301353,0.000000,0.000000,0.250000,0,0);}
.m67_c00225{transform:matrix(0.301396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301396,0.000000,0.000000,0.250000,0,0);}
.mb8_c00225{transform:matrix(0.301536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301536,0.000000,0.000000,0.250000,0,0);}
.m60_c00225{transform:matrix(0.301668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301668,0.000000,0.000000,0.250000,0,0);}
.m39_c00225{transform:matrix(0.302546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302546,0.000000,0.000000,0.250000,0,0);}
.mb4_c00225{transform:matrix(0.302675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302675,0.000000,0.000000,0.250000,0,0);}
.m16_c00225{transform:matrix(0.302863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302863,0.000000,0.000000,0.250000,0,0);}
.md2_c00225{transform:matrix(0.303122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303122,0.000000,0.000000,0.250000,0,0);}
.mdd_c00225{transform:matrix(0.303306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303306,0.000000,0.000000,0.250000,0,0);}
.mde_c00225{transform:matrix(0.303643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303643,0.000000,0.000000,0.250000,0,0);}
.m43_c00225{transform:matrix(0.303995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303995,0.000000,0.000000,0.250000,0,0);}
.m57_c00225{transform:matrix(0.304062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304062,0.000000,0.000000,0.250000,0,0);}
.ma9_c00225{transform:matrix(0.304311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304311,0.000000,0.000000,0.250000,0,0);}
.mcf_c00225{transform:matrix(0.305180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305180,0.000000,0.000000,0.250000,0,0);}
.m2e_c00225{transform:matrix(0.305574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305574,0.000000,0.000000,0.250000,0,0);}
.mdc_c00225{transform:matrix(0.305883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305883,0.000000,0.000000,0.250000,0,0);}
.m3b_c00225{transform:matrix(0.306390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306390,0.000000,0.000000,0.250000,0,0);}
.m9f_c00225{transform:matrix(0.306596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306596,0.000000,0.000000,0.250000,0,0);}
.mba_c00225{transform:matrix(0.307400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307400,0.000000,0.000000,0.250000,0,0);}
.m8e_c00225{transform:matrix(0.309723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309723,0.000000,0.000000,0.250000,0,0);}
.m65_c00225{transform:matrix(0.309980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309980,0.000000,0.000000,0.250000,0,0);}
.mcc_c00225{transform:matrix(0.310221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310221,0.000000,0.000000,0.250000,0,0);}
.m8d_c00225{transform:matrix(0.311646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311646,0.000000,0.000000,0.250000,0,0);}
.m47_c00225{transform:matrix(0.311825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311825,0.000000,0.000000,0.250000,0,0);}
.m1a_c00225{transform:matrix(0.311861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311861,0.000000,0.000000,0.250000,0,0);}
.m76_c00225{transform:matrix(0.312631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312631,0.000000,0.000000,0.250000,0,0);}
.mf_c00225{transform:matrix(0.312741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312741,0.000000,0.000000,0.250000,0,0);}
.m79_c00225{transform:matrix(0.313452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313452,0.000000,0.000000,0.250000,0,0);}
.m6_c00225{transform:matrix(0.313808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313808,0.000000,0.000000,0.250000,0,0);}
.mb_c00225{transform:matrix(0.313954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313954,0.000000,0.000000,0.250000,0,0);}
.m3d_c00225{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);}
.m84_c00225{transform:matrix(0.314474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314474,0.000000,0.000000,0.250000,0,0);}
.m95_c00225{transform:matrix(0.315180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315180,0.000000,0.000000,0.250000,0,0);}
.mc9_c00225{transform:matrix(0.317599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317599,0.000000,0.000000,0.250000,0,0);}
.mdb_c00225{transform:matrix(0.317804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317804,0.000000,0.000000,0.250000,0,0);}
.m89_c00225{transform:matrix(0.318221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318221,0.000000,0.000000,0.250000,0,0);}
.md_c00225{transform:matrix(0.318316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318316,0.000000,0.000000,0.250000,0,0);}
.m2b_c00225{transform:matrix(0.318782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318782,0.000000,0.000000,0.250000,0,0);}
.m80_c00225{transform:matrix(0.319032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319032,0.000000,0.000000,0.250000,0,0);}
.md9_c00225{transform:matrix(0.320441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320441,0.000000,0.000000,0.250000,0,0);}
.m2f_c00225{transform:matrix(0.321617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321617,0.000000,0.000000,0.250000,0,0);}
.m8f_c00225{transform:matrix(0.322306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322306,0.000000,0.000000,0.250000,0,0);}
.mc5_c00225{transform:matrix(0.322644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322644,0.000000,0.000000,0.250000,0,0);}
.mad_c00225{transform:matrix(0.323374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323374,0.000000,0.000000,0.250000,0,0);}
.m11_c00225{transform:matrix(0.323590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323590,0.000000,0.000000,0.250000,0,0);}
.m62_c00225{transform:matrix(0.323910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323910,0.000000,0.000000,0.250000,0,0);}
.m59_c00225{transform:matrix(0.324892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324892,0.000000,0.000000,0.250000,0,0);}
.ma1_c00225{transform:matrix(0.327155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327155,0.000000,0.000000,0.250000,0,0);}
.ma5_c00225{transform:matrix(0.329484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329484,0.000000,0.000000,0.250000,0,0);}
.m7f_c00225{transform:matrix(0.329657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329657,0.000000,0.000000,0.250000,0,0);}
.m5d_c00225{transform:matrix(0.330306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330306,0.000000,0.000000,0.250000,0,0);}
.m52_c00225{transform:matrix(0.331140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331140,0.000000,0.000000,0.250000,0,0);}
.m71_c00225{transform:matrix(0.335502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335502,0.000000,0.000000,0.250000,0,0);}
.m66_c00225{transform:matrix(0.335688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335688,0.000000,0.000000,0.250000,0,0);}
.m6b_c00225{transform:matrix(0.337388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337388,0.000000,0.000000,0.250000,0,0);}
.m33_c00225{transform:matrix(0.337524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337524,0.000000,0.000000,0.250000,0,0);}
.mca_c00225{transform:matrix(0.337569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337569,0.000000,0.000000,0.250000,0,0);}
.m54_c00225{transform:matrix(0.339745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339745,0.000000,0.000000,0.250000,0,0);}
.m55_c00225{transform:matrix(0.341077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341077,0.000000,0.000000,0.250000,0,0);}
.mb1_c00225{transform:matrix(0.341633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341633,0.000000,0.000000,0.250000,0,0);}
.mbb_c00225{transform:matrix(0.341980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341980,0.000000,0.000000,0.250000,0,0);}
.m3e_c00225{transform:matrix(0.342064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342064,0.000000,0.000000,0.250000,0,0);}
.me8_c00225{transform:matrix(0.343062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343062,0.000000,0.000000,0.250000,0,0);}
.mbc_c00225{transform:matrix(0.343636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343636,0.000000,0.000000,0.250000,0,0);}
.m82_c00225{transform:matrix(0.344635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344635,0.000000,0.000000,0.250000,0,0);}
.m5b_c00225{transform:matrix(0.347024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347024,0.000000,0.000000,0.250000,0,0);}
.m88_c00225{transform:matrix(0.347629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347629,0.000000,0.000000,0.250000,0,0);}
.m63_c00225{transform:matrix(0.347796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347796,0.000000,0.000000,0.250000,0,0);}
.md1_c00225{transform:matrix(0.348058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348058,0.000000,0.000000,0.250000,0,0);}
.me1_c00225{transform:matrix(0.348605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348605,0.000000,0.000000,0.250000,0,0);}
.m2_c00225{transform:matrix(0.348980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348980,0.000000,0.000000,0.250000,0,0);}
.md0_c00225{transform:matrix(0.349225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349225,0.000000,0.000000,0.250000,0,0);}
.m35_c00225{transform:matrix(0.351332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351332,0.000000,0.000000,0.250000,0,0);}
.m2c_c00225{transform:matrix(0.352814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352814,0.000000,0.000000,0.250000,0,0);}
.mcd_c00225{transform:matrix(0.353107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353107,0.000000,0.000000,0.250000,0,0);}
.mbf_c00225{transform:matrix(0.353974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353974,0.000000,0.000000,0.250000,0,0);}
.m61_c00225{transform:matrix(0.354006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354006,0.000000,0.000000,0.250000,0,0);}
.m97_c00225{transform:matrix(0.354164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354164,0.000000,0.000000,0.250000,0,0);}
.m5e_c00225{transform:matrix(0.354434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354434,0.000000,0.000000,0.250000,0,0);}
.m15_c00225{transform:matrix(0.357248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357248,0.000000,0.000000,0.250000,0,0);}
.m5c_c00225{transform:matrix(0.360217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360217,0.000000,0.000000,0.250000,0,0);}
.m14_c00225{transform:matrix(0.360849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360849,0.000000,0.000000,0.250000,0,0);}
.me0_c00225{transform:matrix(0.361684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361684,0.000000,0.000000,0.250000,0,0);}
.ma0_c00225{transform:matrix(0.362375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362375,0.000000,0.000000,0.250000,0,0);}
.m77_c00225{transform:matrix(0.362525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362525,0.000000,0.000000,0.250000,0,0);}
.mc4_c00225{transform:matrix(0.366428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366428,0.000000,0.000000,0.250000,0,0);}
.m6f_c00225{transform:matrix(0.369317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369317,0.000000,0.000000,0.250000,0,0);}
.m96_c00225{transform:matrix(0.369586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369586,0.000000,0.000000,0.250000,0,0);}
.mc0_c00225{transform:matrix(0.370055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370055,0.000000,0.000000,0.250000,0,0);}
.m70_c00225{transform:matrix(0.370437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370437,0.000000,0.000000,0.250000,0,0);}
.m69_c00225{transform:matrix(0.370471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370471,0.000000,0.000000,0.250000,0,0);}
.m31_c00225{transform:matrix(0.372638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372638,0.000000,0.000000,0.250000,0,0);}
.m68_c00225{transform:matrix(0.374073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374073,0.000000,0.000000,0.250000,0,0);}
.ma7_c00225{transform:matrix(0.375268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375268,0.000000,0.000000,0.250000,0,0);}
.m85_c00225{transform:matrix(0.378500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378500,0.000000,0.000000,0.250000,0,0);}
.m29_c00225{transform:matrix(0.414947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414947,0.000000,0.000000,0.250000,0,0);}
.m40_c00225{transform:matrix(0.420530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420530,0.000000,0.000000,0.250000,0,0);}
.m98_c00225{transform:matrix(0.428507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428507,0.000000,0.000000,0.250000,0,0);}
.m12_c00225{transform:matrix(0.429934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429934,0.000000,0.000000,0.250000,0,0);}
.m7_c00225{transform:matrix(0.432296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432296,0.000000,0.000000,0.250000,0,0);}
.v0_c00225{vertical-align:0.000000px;}
.v1_c00225{vertical-align:7.108200px;}
.lsb_c00225{letter-spacing:-2.661127px;}
.ls9_c00225{letter-spacing:-2.607904px;}
.lsf_c00225{letter-spacing:-0.357351px;}
.ls6_c00225{letter-spacing:0.000000px;}
.ls10_c00225{letter-spacing:0.243303px;}
.lsd_c00225{letter-spacing:0.380161px;}
.ls8_c00225{letter-spacing:1.544400px;}
.ls1_c00225{letter-spacing:1.992044px;}
.ls3_c00225{letter-spacing:2.775175px;}
.ls5_c00225{letter-spacing:3.702610px;}
.ls7_c00225{letter-spacing:3.801610px;}
.ls0_c00225{letter-spacing:6.994867px;}
.lsc_c00225{letter-spacing:48.470598px;}
.lsa_c00225{letter-spacing:49.896198px;}
.lse_c00225{letter-spacing:51.321798px;}
.ls2_c00225{letter-spacing:58.528342px;}
.ls4_c00225{letter-spacing:1207.692288px;}
.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;}
}
.ws4_c00225{word-spacing:-21.783225px;}
.ws5_c00225{word-spacing:-19.251353px;}
.ws0_c00225{word-spacing:-19.008050px;}
.ws6_c00225{word-spacing:0.000000px;}
.ws3_c00225{word-spacing:3.571419px;}
.ws1_c00225{word-spacing:3.573399px;}
.ws2_c00225{word-spacing:5.321739px;}
._b_c00225{margin-left:-12.089143px;}
._12_c00225{width:1.748663px;}
._10_c00225{width:2.812304px;}
._c_c00225{width:4.485932px;}
._5_c00225{width:7.299182px;}
._1_c00225{width:8.743790px;}
._e_c00225{width:10.340451px;}
._2_c00225{width:12.621235px;}
._6_c00225{width:14.065843px;}
._9_c00225{width:16.308468px;}
._3_c00225{width:22.429583px;}
._14_c00225{width:23.436413px;}
._7_c00225{width:25.318799px;}
._16_c00225{width:26.647258px;}
._15_c00225{width:29.323800px;}
._11_c00225{width:31.002505px;}
._17_c00225{width:32.062970px;}
._f_c00225{width:34.388305px;}
._4_c00225{width:36.723517px;}
._0_c00225{width:38.183492px;}
._a_c00225{width:40.753251px;}
._8_c00225{width:42.045773px;}
._d_c00225{width:46.115669px;}
._13_c00225{width:49.010253px;}
.fc0_c00225{color:transparent;}
.fsf_c00225{font-size:27.720000px;}
.fs8_c00225{font-size:28.314000px;}
.fs3_c00225{font-size:30.888000px;}
.fse_c00225{font-size:32.472000px;}
.fs1_c00225{font-size:34.056198px;}
.fs11_c00225{font-size:39.204000px;}
.fs12_c00225{font-size:39.600000px;}
.fsb_c00225{font-size:45.738000px;}
.fs7_c00225{font-size:48.470598px;}
.fs4_c00225{font-size:49.896198px;}
.fsa_c00225{font-size:51.321798px;}
.fs5_c00225{font-size:56.628000px;}
.fs6_c00225{font-size:66.330000px;}
.fs9_c00225{font-size:70.884000px;}
.fs10_c00225{font-size:72.864000px;}
.fs0_c00225{font-size:74.052198px;}
.fs2_c00225{font-size:76.032198px;}
.fsc_c00225{font-size:76.824000px;}
.fsd_c00225{font-size:78.804000px;}
.y0_c00225{bottom:0.000000px;}
.y20_c00225{bottom:25.572735px;}
.y1f_c00225{bottom:59.069385px;}
.y1_c00225{bottom:76.500000px;}
.y21_c00225{bottom:94.001535px;}
.y1e_c00225{bottom:130.349385px;}
.y1d_c00225{bottom:154.940985px;}
.y1c_c00225{bottom:187.021935px;}
.y1b_c00225{bottom:219.449385px;}
.y1a_c00225{bottom:251.886735px;}
.y19_c00225{bottom:283.962735px;}
.y18_c00225{bottom:314.969535px;}
.y17_c00225{bottom:347.045535px;}
.y16_c00225{bottom:378.408735px;}
.y15_c00225{bottom:410.128335px;}
.y14_c00225{bottom:441.847935px;}
.y13_c00225{bottom:473.923935px;}
.y12_c00225{bottom:505.643535px;}
.y11_c00225{bottom:570.864735px;}
.y10_c00225{bottom:602.935785px;}
.yf_c00225{bottom:635.368185px;}
.ye_c00225{bottom:648.559935px;}
.yd_c00225{bottom:666.379935px;}
.yc_c00225{bottom:698.455935px;}
.yb_c00225{bottom:730.526985px;}
.ya_c00225{bottom:762.959385px;}
.y9_c00225{bottom:795.040335px;}
.y8_c00225{bottom:828.536985px;}
.y7_c00225{bottom:860.969385px;}
.y6_c00225{bottom:893.758185px;}
.y4_c00225{bottom:926.195535px;}
.y5_c00225{bottom:931.541535px;}
.y3_c00225{bottom:952.207785px;}
.y2_c00225{bottom:1072.314585px;}
.h10_c00225{height:28.911094px;}
.ha_c00225{height:29.530617px;}
.h5_c00225{height:32.215219px;}
.h9_c00225{height:32.281418px;}
.h6_c00225{height:33.230868px;}
.hf_c00225{height:33.867281px;}
.hc_c00225{height:34.180317px;}
.h3_c00225{height:35.519550px;}
.h12_c00225{height:41.301563px;}
.h7_c00225{height:55.577285px;}
.h8_c00225{height:69.180117px;}
.hb_c00225{height:69.568770px;}
.h11_c00225{height:71.512031px;}
.h2_c00225{height:72.678183px;}
.h4_c00225{height:74.621444px;}
.hd_c00225{height:75.398555px;}
.he_c00225{height:77.341816px;}
.h1_c00225{height:1110.000000px;}
.h0_c00225{height:1263.000000px;}
.w1_c00225{width:751.500000px;}
.w0_c00225{width:892.500000px;}
.x0_c00225{left:0.000000px;}
.x4_c00225{left:67.676835px;}
.x14_c00225{left:69.473685px;}
.x1_c00225{left:70.500000px;}
.x71_c00225{left:71.651685px;}
.x50_c00225{left:81.279435px;}
.x48_c00225{left:89.734035px;}
.x38_c00225{left:92.030835px;}
.x31_c00225{left:94.664235px;}
.x15_c00225{left:102.168435px;}
.x66_c00225{left:112.187235px;}
.x39_c00225{left:113.419785px;}
.x51_c00225{left:123.710835px;}
.x5_c00225{left:125.507685px;}
.x16_c00225{left:135.778935px;}
.x4d_c00225{left:146.525385px;}
.x32_c00225{left:147.564885px;}
.x6_c00225{left:157.063935px;}
.x3a_c00225{left:158.316285px;}
.x5a_c00225{left:167.944035px;}
.x21_c00225{left:169.364685px;}
.x4e_c00225{left:178.512285px;}
.x7_c00225{left:179.700285px;}
.x3f_c00225{left:181.744635px;}
.x8_c00225{left:189.837885px;}
.x49_c00225{left:201.643635px;}
.x63_c00225{left:203.653335px;}
.x6a_c00225{left:211.934685px;}
.x33_c00225{left:213.375135px;}
.x22_c00225{left:223.745385px;}
.x17_c00225{left:224.928435px;}
.x52_c00225{left:234.590835px;}
.x9_c00225{left:235.759035px;}
.x40_c00225{left:245.995635px;}
.x41_c00225{left:256.479735px;}
.x34_c00225{left:257.756835px;}
.x68_c00225{left:267.963735px;}
.x18_c00225{left:269.156685px;}
.x23_c00225{left:279.348735px;}
.x24_c00225{left:286.115385px;}
.x25_c00225{left:289.684335px;}
.x6f_c00225{left:291.065385px;}
.x4a_c00225{left:294.505635px;}
.x26_c00225{left:301.796985px;}
.x27_c00225{left:312.845385px;}
.x69_c00225{left:322.463235px;}
.x35_c00225{left:323.972985px;}
.x64_c00225{left:333.511635px;}
.x19_c00225{left:335.417385px;}
.x58_c00225{left:344.560035px;}
.x4b_c00225{left:345.787635px;}
.xa_c00225{left:347.163735px;}
.x61_c00225{left:350.099085px;}
.x67_c00225{left:355.519335px;}
.x28_c00225{left:357.529035px;}
.xb_c00225{left:359.345685px;}
.x5d_c00225{left:367.334985px;}
.x43_c00225{left:368.805135px;}
.x1a_c00225{left:378.378435px;}
.xc_c00225{left:379.838685px;}
.x73_c00225{left:383.907585px;}
.x6b_c00225{left:389.852535px;}
.x3b_c00225{left:391.050435px;}
.x1b_c00225{left:401.509785px;}
.x44_c00225{left:402.658185px;}
.x29_c00225{left:411.880035px;}
.xd_c00225{left:413.127435px;}
.x5b_c00225{left:423.091785px;}
.x2a_c00225{left:424.170885px;}
.x3c_c00225{left:426.368685px;}
.x36_c00225{left:434.174835px;}
.x6d_c00225{left:435.199485px;}
.x3d_c00225{left:444.658935px;}
.x5e_c00225{left:445.822185px;}
.x45_c00225{left:455.044035px;}
.x1c_c00225{left:456.266685px;}
.x53_c00225{left:462.107685px;}
.x5c_c00225{left:466.404285px;}
.x42_c00225{left:467.443785px;}
.x2b_c00225{left:476.076585px;}
.x2c_c00225{left:479.284185px;}
.x1d_c00225{left:489.748485px;}
.x2d_c00225{left:501.534435px;}
.xe_c00225{left:510.998835px;}
.x4c_c00225{left:512.543235px;}
.x2e_c00225{left:521.690835px;}
.x54_c00225{left:523.235235px;}
.x59_c00225{left:524.284635px;}
.x3e_c00225{left:533.417385px;}
.x65_c00225{left:544.104435px;}
.x37_c00225{left:545.376585px;}
.xf_c00225{left:546.381435px;}
.x70_c00225{left:555.573585px;}
.x2f_c00225{left:566.562585px;}
.x10_c00225{left:568.517835px;}
.x46_c00225{left:578.501985px;}
.x11_c00225{left:588.986085px;}
.x56_c00225{left:591.604635px;}
.x5f_c00225{left:599.767185px;}
.x62_c00225{left:610.751235px;}
.x1e_c00225{left:611.914485px;}
.x6e_c00225{left:621.433335px;}
.x12_c00225{left:622.705485px;}
.x6c_c00225{left:632.135235px;}
.x57_c00225{left:633.397485px;}
.x60_c00225{left:644.822085px;}
.x13_c00225{left:655.291335px;}
.x2_c00225{left:656.865435px;}
.x47_c00225{left:666.879285px;}
.x30_c00225{left:678.313785px;}
.x55_c00225{left:687.416835px;}
.x1f_c00225{left:689.005785px;}
.x72_c00225{left:691.946085px;}
.x4f_c00225{left:698.296935px;}
.x3_c00225{left:700.757085px;}
.x20_c00225{left:712.518285px;}
.x74_c00225{left:744.916035px;}
@media print{
.v0_c00225{vertical-align:0.000000pt;}
.v1_c00225{vertical-align:6.318400pt;}
.lsb_c00225{letter-spacing:-2.365446pt;}
.ls9_c00225{letter-spacing:-2.318137pt;}
.lsf_c00225{letter-spacing:-0.317646pt;}
.ls6_c00225{letter-spacing:0.000000pt;}
.ls10_c00225{letter-spacing:0.216269pt;}
.lsd_c00225{letter-spacing:0.337921pt;}
.ls8_c00225{letter-spacing:1.372800pt;}
.ls1_c00225{letter-spacing:1.770705pt;}
.ls3_c00225{letter-spacing:2.466822pt;}
.ls5_c00225{letter-spacing:3.291209pt;}
.ls7_c00225{letter-spacing:3.379209pt;}
.ls0_c00225{letter-spacing:6.217660pt;}
.lsc_c00225{letter-spacing:43.084976pt;}
.lsa_c00225{letter-spacing:44.352176pt;}
.lse_c00225{letter-spacing:45.619376pt;}
.ls2_c00225{letter-spacing:52.025193pt;}
.ls4_c00225{letter-spacing:1073.504256pt;}
.ws4_c00225{word-spacing:-19.362866pt;}
.ws5_c00225{word-spacing:-17.112313pt;}
.ws0_c00225{word-spacing:-16.896044pt;}
.ws6_c00225{word-spacing:0.000000pt;}
.ws3_c00225{word-spacing:3.174595pt;}
.ws1_c00225{word-spacing:3.176355pt;}
.ws2_c00225{word-spacing:4.730435pt;}
._b_c00225{margin-left:-10.745905pt;}
._12_c00225{width:1.554367pt;}
._10_c00225{width:2.499826pt;}
._c_c00225{width:3.987495pt;}
._5_c00225{width:6.488162pt;}
._1_c00225{width:7.772258pt;}
._e_c00225{width:9.191512pt;}
._2_c00225{width:11.218876pt;}
._6_c00225{width:12.502972pt;}
._9_c00225{width:14.496416pt;}
._3_c00225{width:19.937407pt;}
._14_c00225{width:20.832367pt;}
._7_c00225{width:22.505599pt;}
._16_c00225{width:23.686452pt;}
._15_c00225{width:26.065600pt;}
._11_c00225{width:27.557782pt;}
._17_c00225{width:28.500418pt;}
._f_c00225{width:30.567382pt;}
._4_c00225{width:32.643126pt;}
._0_c00225{width:33.940881pt;}
._a_c00225{width:36.225112pt;}
._8_c00225{width:37.374020pt;}
._d_c00225{width:40.991705pt;}
._13_c00225{width:43.564669pt;}
.fsf_c00225{font-size:24.640000pt;}
.fs8_c00225{font-size:25.168000pt;}
.fs3_c00225{font-size:27.456000pt;}
.fse_c00225{font-size:28.864000pt;}
.fs1_c00225{font-size:30.272176pt;}
.fs11_c00225{font-size:34.848000pt;}
.fs12_c00225{font-size:35.200000pt;}
.fsb_c00225{font-size:40.656000pt;}
.fs7_c00225{font-size:43.084976pt;}
.fs4_c00225{font-size:44.352176pt;}
.fsa_c00225{font-size:45.619376pt;}
.fs5_c00225{font-size:50.336000pt;}
.fs6_c00225{font-size:58.960000pt;}
.fs9_c00225{font-size:63.008000pt;}
.fs10_c00225{font-size:64.768000pt;}
.fs0_c00225{font-size:65.824176pt;}
.fs2_c00225{font-size:67.584176pt;}
.fsc_c00225{font-size:68.288000pt;}
.fsd_c00225{font-size:70.048000pt;}
.y0_c00225{bottom:0.000000pt;}
.y20_c00225{bottom:22.731320pt;}
.y1f_c00225{bottom:52.506120pt;}
.y1_c00225{bottom:68.000000pt;}
.y21_c00225{bottom:83.556920pt;}
.y1e_c00225{bottom:115.866120pt;}
.y1d_c00225{bottom:137.725320pt;}
.y1c_c00225{bottom:166.241720pt;}
.y1b_c00225{bottom:195.066120pt;}
.y1a_c00225{bottom:223.899320pt;}
.y19_c00225{bottom:252.411320pt;}
.y18_c00225{bottom:279.972920pt;}
.y17_c00225{bottom:308.484920pt;}
.y16_c00225{bottom:336.363320pt;}
.y15_c00225{bottom:364.558520pt;}
.y14_c00225{bottom:392.753720pt;}
.y13_c00225{bottom:421.265720pt;}
.y12_c00225{bottom:449.460920pt;}
.y11_c00225{bottom:507.435320pt;}
.y10_c00225{bottom:535.942920pt;}
.yf_c00225{bottom:564.771720pt;}
.ye_c00225{bottom:576.497720pt;}
.yd_c00225{bottom:592.337720pt;}
.yc_c00225{bottom:620.849720pt;}
.yb_c00225{bottom:649.357320pt;}
.ya_c00225{bottom:678.186120pt;}
.y9_c00225{bottom:706.702520pt;}
.y8_c00225{bottom:736.477320pt;}
.y7_c00225{bottom:765.306120pt;}
.y6_c00225{bottom:794.451720pt;}
.y4_c00225{bottom:823.284920pt;}
.y5_c00225{bottom:828.036920pt;}
.y3_c00225{bottom:846.406920pt;}
.y2_c00225{bottom:953.168520pt;}
.h10_c00225{height:25.698750pt;}
.ha_c00225{height:26.249438pt;}
.h5_c00225{height:28.635750pt;}
.h9_c00225{height:28.694594pt;}
.h6_c00225{height:29.538549pt;}
.hf_c00225{height:30.104250pt;}
.hc_c00225{height:30.382504pt;}
.h3_c00225{height:31.572934pt;}
.h12_c00225{height:36.712500pt;}
.h7_c00225{height:49.402031pt;}
.h8_c00225{height:61.493438pt;}
.hb_c00225{height:61.838906pt;}
.h11_c00225{height:63.566250pt;}
.h2_c00225{height:64.602829pt;}
.h4_c00225{height:66.330173pt;}
.hd_c00225{height:67.020938pt;}
.he_c00225{height:68.748281pt;}
.h1_c00225{height:986.666667pt;}
.h0_c00225{height:1122.666667pt;}
.w1_c00225{width:668.000000pt;}
.w0_c00225{width:793.333333pt;}
.x0_c00225{left:0.000000pt;}
.x4_c00225{left:60.157187pt;}
.x14_c00225{left:61.754387pt;}
.x1_c00225{left:62.666667pt;}
.x71_c00225{left:63.690387pt;}
.x50_c00225{left:72.248387pt;}
.x48_c00225{left:79.763587pt;}
.x38_c00225{left:81.805187pt;}
.x31_c00225{left:84.145987pt;}
.x15_c00225{left:90.816387pt;}
.x66_c00225{left:99.721987pt;}
.x39_c00225{left:100.817587pt;}
.x51_c00225{left:109.965187pt;}
.x5_c00225{left:111.562387pt;}
.x16_c00225{left:120.692387pt;}
.x4d_c00225{left:130.244787pt;}
.x32_c00225{left:131.168787pt;}
.x6_c00225{left:139.612387pt;}
.x3a_c00225{left:140.725587pt;}
.x5a_c00225{left:149.283587pt;}
.x21_c00225{left:150.546387pt;}
.x4e_c00225{left:158.677587pt;}
.x7_c00225{left:159.733587pt;}
.x3f_c00225{left:161.550787pt;}
.x8_c00225{left:168.744787pt;}
.x49_c00225{left:179.238787pt;}
.x63_c00225{left:181.025187pt;}
.x6a_c00225{left:188.386387pt;}
.x33_c00225{left:189.666787pt;}
.x22_c00225{left:198.884787pt;}
.x17_c00225{left:199.936387pt;}
.x52_c00225{left:208.525187pt;}
.x9_c00225{left:209.563587pt;}
.x40_c00225{left:218.662787pt;}
.x41_c00225{left:227.981987pt;}
.x34_c00225{left:229.117187pt;}
.x68_c00225{left:238.189987pt;}
.x18_c00225{left:239.250387pt;}
.x23_c00225{left:248.309987pt;}
.x24_c00225{left:254.324787pt;}
.x25_c00225{left:257.497187pt;}
.x6f_c00225{left:258.724787pt;}
.x4a_c00225{left:261.782787pt;}
.x26_c00225{left:268.263987pt;}
.x27_c00225{left:278.084787pt;}
.x69_c00225{left:286.633987pt;}
.x35_c00225{left:287.975987pt;}
.x64_c00225{left:296.454787pt;}
.x19_c00225{left:298.148787pt;}
.x58_c00225{left:306.275587pt;}
.x4b_c00225{left:307.366787pt;}
.xa_c00225{left:308.589987pt;}
.x61_c00225{left:311.199187pt;}
.x67_c00225{left:316.017187pt;}
.x28_c00225{left:317.803587pt;}
.xb_c00225{left:319.418387pt;}
.x5d_c00225{left:326.519987pt;}
.x43_c00225{left:327.826787pt;}
.x1a_c00225{left:336.336387pt;}
.xc_c00225{left:337.634387pt;}
.x73_c00225{left:341.251187pt;}
.x6b_c00225{left:346.535587pt;}
.x3b_c00225{left:347.600387pt;}
.x1b_c00225{left:356.897587pt;}
.x44_c00225{left:357.918387pt;}
.x29_c00225{left:366.115587pt;}
.xd_c00225{left:367.224387pt;}
.x5b_c00225{left:376.081587pt;}
.x2a_c00225{left:377.040787pt;}
.x3c_c00225{left:378.994387pt;}
.x36_c00225{left:385.933187pt;}
.x6d_c00225{left:386.843987pt;}
.x3d_c00225{left:395.252387pt;}
.x5e_c00225{left:396.286387pt;}
.x45_c00225{left:404.483587pt;}
.x1c_c00225{left:405.570387pt;}
.x53_c00225{left:410.762387pt;}
.x5c_c00225{left:414.581587pt;}
.x42_c00225{left:415.505587pt;}
.x2b_c00225{left:423.179187pt;}
.x2c_c00225{left:426.030387pt;}
.x1d_c00225{left:435.331987pt;}
.x2d_c00225{left:445.808387pt;}
.xe_c00225{left:454.221187pt;}
.x4c_c00225{left:455.593987pt;}
.x2e_c00225{left:463.725187pt;}
.x54_c00225{left:465.097987pt;}
.x59_c00225{left:466.030787pt;}
.x3e_c00225{left:474.148787pt;}
.x65_c00225{left:483.648387pt;}
.x37_c00225{left:484.779187pt;}
.xf_c00225{left:485.672387pt;}
.x70_c00225{left:493.843187pt;}
.x2f_c00225{left:503.611187pt;}
.x10_c00225{left:505.349187pt;}
.x46_c00225{left:514.223987pt;}
.x11_c00225{left:523.543187pt;}
.x56_c00225{left:525.870787pt;}
.x5f_c00225{left:533.126387pt;}
.x62_c00225{left:542.889987pt;}
.x1e_c00225{left:543.923987pt;}
.x6e_c00225{left:552.385187pt;}
.x12_c00225{left:553.515987pt;}
.x6c_c00225{left:561.897987pt;}
.x57_c00225{left:563.019987pt;}
.x60_c00225{left:573.175187pt;}
.x13_c00225{left:582.481187pt;}
.x2_c00225{left:583.880387pt;}
.x47_c00225{left:592.781587pt;}
.x30_c00225{left:602.945587pt;}
.x55_c00225{left:611.037187pt;}
.x1f_c00225{left:612.449587pt;}
.x72_c00225{left:615.063187pt;}
.x4f_c00225{left:620.708387pt;}
.x3_c00225{left:622.895187pt;}
.x20_c00225{left:633.349587pt;}
.x74_c00225{left:662.147587pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3ce7160a0105cd068c6a16c5.woff2')format("woff");}.ff1_c00226{font-family:ff1_c00226;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00226;src:url('chunks/assets/font_559a2291cea2cfefda34d5cc.woff2')format("woff");}.ff2_c00226{font-family:ff2_c00226;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00226;src:url('chunks/assets/font_619932145ab534ca708318a2.woff2')format("woff");}.ff3_c00226{font-family:ff3_c00226;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00226;src:url('chunks/assets/font_f293a0b64a5a4d5cf2b945a1.woff2')format("woff");}.ff4_c00226{font-family:ff4_c00226;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00226;src:url('chunks/assets/font_418dcdb7deae56ac209db789.woff2')format("woff");}.ff5_c00226{font-family:ff5_c00226;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m79_c00226{transform:matrix(0.034376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.034376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.034376,0.000000,0.000000,0.250000,0,0);}
.mbd_c00226{transform:matrix(0.095785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095785,0.000000,0.000000,0.250000,0,0);}
.mea_c00226{transform:matrix(0.096428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096428,0.000000,0.000000,0.250000,0,0);}
.me7_c00226{transform:matrix(0.103572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103572,0.000000,0.000000,0.250000,0,0);}
.m78_c00226{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m72_c00226{transform:matrix(0.131862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131862,0.000000,0.000000,0.250000,0,0);}
.mde_c00226{transform:matrix(0.139959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139959,0.000000,0.000000,0.250000,0,0);}
.m9a_c00226{transform:matrix(0.147998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147998,0.000000,0.000000,0.250000,0,0);}
.mb9_c00226{transform:matrix(0.161764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161764,0.000000,0.000000,0.250000,0,0);}
.meb_c00226{transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);}
.mb8_c00226{transform:matrix(0.169118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169118,0.000000,0.000000,0.250000,0,0);}
.m6c_c00226{transform:matrix(0.172472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172472,0.000000,0.000000,0.250000,0,0);}
.m7a_c00226{transform:matrix(0.184375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184375,0.000000,0.000000,0.250000,0,0);}
.m18_c00226{transform:matrix(0.189584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189584,0.000000,0.000000,0.250000,0,0);}
.mcd_c00226{transform:matrix(0.190457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190457,0.000000,0.000000,0.250000,0,0);}
.md3_c00226{transform:matrix(0.197782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197782,0.000000,0.000000,0.250000,0,0);}
.mba_c00226{transform:matrix(0.198530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198530,0.000000,0.000000,0.250000,0,0);}
.m92_c00226{transform:matrix(0.199384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199384,0.000000,0.000000,0.250000,0,0);}
.mbb_c00226{transform:matrix(0.199429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199429,0.000000,0.000000,0.250000,0,0);}
.me8_c00226{transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);}
.m9f_c00226{transform:matrix(0.202350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202350,0.000000,0.000000,0.250000,0,0);}
.me6_c00226{transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);}
.m70_c00226{transform:matrix(0.210036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210036,0.000000,0.000000,0.250000,0,0);}
.me9_c00226{transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);}
.m90_c00226{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);}
.m76_c00226{transform:matrix(0.222745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222745,0.000000,0.000000,0.250000,0,0);}
.m20_c00226{transform:matrix(0.225455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225455,0.000000,0.000000,0.250000,0,0);}
.m7f_c00226{transform:matrix(0.233747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233747,0.000000,0.000000,0.250000,0,0);}
.me2_c00226{transform:matrix(0.241578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241578,0.000000,0.000000,0.250000,0,0);}
.mf8_c00226{transform:matrix(0.246193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246193,0.000000,0.000000,0.250000,0,0);}
.m1_c00226{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00226{transform:matrix(0.250137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250137,0.000000,0.000000,0.250000,0,0);}
.mfa_c00226{transform:matrix(0.252056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252056,0.000000,0.000000,0.250000,0,0);}
.m39_c00226{transform:matrix(0.254604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254604,0.000000,0.000000,0.250000,0,0);}
.m4d_c00226{transform:matrix(0.254853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254853,0.000000,0.000000,0.250000,0,0);}
.m37_c00226{transform:matrix(0.255088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255088,0.000000,0.000000,0.250000,0,0);}
.ma3_c00226{transform:matrix(0.256293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256293,0.000000,0.000000,0.250000,0,0);}
.ma0_c00226{transform:matrix(0.259071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259071,0.000000,0.000000,0.250000,0,0);}
.m93_c00226{transform:matrix(0.259461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259461,0.000000,0.000000,0.250000,0,0);}
.m44_c00226{transform:matrix(0.259488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259488,0.000000,0.000000,0.250000,0,0);}
.m103_c00226{transform:matrix(0.261467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261467,0.000000,0.000000,0.250000,0,0);}
.m2e_c00226{transform:matrix(0.262011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262011,0.000000,0.000000,0.250000,0,0);}
.m51_c00226{transform:matrix(0.262289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262289,0.000000,0.000000,0.250000,0,0);}
.m69_c00226{transform:matrix(0.262336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262336,0.000000,0.000000,0.250000,0,0);}
.m8e_c00226{transform:matrix(0.262579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262579,0.000000,0.000000,0.250000,0,0);}
.ma7_c00226{transform:matrix(0.262990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262990,0.000000,0.000000,0.250000,0,0);}
.mf7_c00226{transform:matrix(0.265159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265159,0.000000,0.000000,0.250000,0,0);}
.mbe_c00226{transform:matrix(0.265340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265340,0.000000,0.000000,0.250000,0,0);}
.ma1_c00226{transform:matrix(0.265366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265366,0.000000,0.000000,0.250000,0,0);}
.md2_c00226{transform:matrix(0.265753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265753,0.000000,0.000000,0.250000,0,0);}
.m2b_c00226{transform:matrix(0.265918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265918,0.000000,0.000000,0.250000,0,0);}
.m95_c00226{transform:matrix(0.266632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266632,0.000000,0.000000,0.250000,0,0);}
.m3a_c00226{transform:matrix(0.267349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267349,0.000000,0.000000,0.250000,0,0);}
.m16_c00226{transform:matrix(0.268416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268416,0.000000,0.000000,0.250000,0,0);}
.md5_c00226{transform:matrix(0.268556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268556,0.000000,0.000000,0.250000,0,0);}
.m7e_c00226{transform:matrix(0.269669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269669,0.000000,0.000000,0.250000,0,0);}
.m2f_c00226{transform:matrix(0.270732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270732,0.000000,0.000000,0.250000,0,0);}
.m24_c00226{transform:matrix(0.270827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270827,0.000000,0.000000,0.250000,0,0);}
.m5f_c00226{transform:matrix(0.272037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272037,0.000000,0.000000,0.250000,0,0);}
.m82_c00226{transform:matrix(0.273819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273819,0.000000,0.000000,0.250000,0,0);}
.m86_c00226{transform:matrix(0.274223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274223,0.000000,0.000000,0.250000,0,0);}
.med_c00226{transform:matrix(0.274839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274839,0.000000,0.000000,0.250000,0,0);}
.m32_c00226{transform:matrix(0.275349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275349,0.000000,0.000000,0.250000,0,0);}
.ma_c00226{transform:matrix(0.275579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275579,0.000000,0.000000,0.250000,0,0);}
.m7_c00226{transform:matrix(0.276155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276155,0.000000,0.000000,0.250000,0,0);}
.md1_c00226{transform:matrix(0.276294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276294,0.000000,0.000000,0.250000,0,0);}
.mc9_c00226{transform:matrix(0.276299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276299,0.000000,0.000000,0.250000,0,0);}
.m61_c00226{transform:matrix(0.276535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276535,0.000000,0.000000,0.250000,0,0);}
.m6a_c00226{transform:matrix(0.276791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276791,0.000000,0.000000,0.250000,0,0);}
.m8b_c00226{transform:matrix(0.276926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276926,0.000000,0.000000,0.250000,0,0);}
.mb2_c00226{transform:matrix(0.277185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277185,0.000000,0.000000,0.250000,0,0);}
.m8f_c00226{transform:matrix(0.277412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277412,0.000000,0.000000,0.250000,0,0);}
.m3f_c00226{transform:matrix(0.277818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277818,0.000000,0.000000,0.250000,0,0);}
.m8_c00226{transform:matrix(0.278623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278623,0.000000,0.000000,0.250000,0,0);}
.mcf_c00226{transform:matrix(0.280057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280057,0.000000,0.000000,0.250000,0,0);}
.m4b_c00226{transform:matrix(0.280122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280122,0.000000,0.000000,0.250000,0,0);}
.m97_c00226{transform:matrix(0.280330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280330,0.000000,0.000000,0.250000,0,0);}
.mc6_c00226{transform:matrix(0.280680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280680,0.000000,0.000000,0.250000,0,0);}
.mef_c00226{transform:matrix(0.281416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281416,0.000000,0.000000,0.250000,0,0);}
.m5b_c00226{transform:matrix(0.281902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281902,0.000000,0.000000,0.250000,0,0);}
.m13_c00226{transform:matrix(0.282234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282234,0.000000,0.000000,0.250000,0,0);}
.ma6_c00226{transform:matrix(0.282607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282607,0.000000,0.000000,0.250000,0,0);}
.mad_c00226{transform:matrix(0.282668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282668,0.000000,0.000000,0.250000,0,0);}
.m77_c00226{transform:matrix(0.282899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282899,0.000000,0.000000,0.250000,0,0);}
.m57_c00226{transform:matrix(0.283417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283417,0.000000,0.000000,0.250000,0,0);}
.mc4_c00226{transform:matrix(0.283427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283427,0.000000,0.000000,0.250000,0,0);}
.m1f_c00226{transform:matrix(0.283690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283690,0.000000,0.000000,0.250000,0,0);}
.m5a_c00226{transform:matrix(0.284386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284386,0.000000,0.000000,0.250000,0,0);}
.m5d_c00226{transform:matrix(0.284388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284388,0.000000,0.000000,0.250000,0,0);}
.m87_c00226{transform:matrix(0.285135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285135,0.000000,0.000000,0.250000,0,0);}
.mc2_c00226{transform:matrix(0.285285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285285,0.000000,0.000000,0.250000,0,0);}
.m54_c00226{transform:matrix(0.285287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285287,0.000000,0.000000,0.250000,0,0);}
.md4_c00226{transform:matrix(0.285890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285890,0.000000,0.000000,0.250000,0,0);}
.mf9_c00226{transform:matrix(0.286494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286494,0.000000,0.000000,0.250000,0,0);}
.m2_c00226{transform:matrix(0.286532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286532,0.000000,0.000000,0.250000,0,0);}
.m42_c00226{transform:matrix(0.286644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286644,0.000000,0.000000,0.250000,0,0);}
.mdf_c00226{transform:matrix(0.287379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287379,0.000000,0.000000,0.250000,0,0);}
.m5_c00226{transform:matrix(0.288338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288338,0.000000,0.000000,0.250000,0,0);}
.m2d_c00226{transform:matrix(0.289077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289077,0.000000,0.000000,0.250000,0,0);}
.m45_c00226{transform:matrix(0.289144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289144,0.000000,0.000000,0.250000,0,0);}
.mdd_c00226{transform:matrix(0.289284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289284,0.000000,0.000000,0.250000,0,0);}
.mf1_c00226{transform:matrix(0.289591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289591,0.000000,0.000000,0.250000,0,0);}
.m67_c00226{transform:matrix(0.289658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289658,0.000000,0.000000,0.250000,0,0);}
.m94_c00226{transform:matrix(0.289834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289834,0.000000,0.000000,0.250000,0,0);}
.m81_c00226{transform:matrix(0.290020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290020,0.000000,0.000000,0.250000,0,0);}
.m40_c00226{transform:matrix(0.290227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290227,0.000000,0.000000,0.250000,0,0);}
.m59_c00226{transform:matrix(0.290810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290810,0.000000,0.000000,0.250000,0,0);}
.ma5_c00226{transform:matrix(0.291315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291315,0.000000,0.000000,0.250000,0,0);}
.m31_c00226{transform:matrix(0.291649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291649,0.000000,0.000000,0.250000,0,0);}
.m12_c00226{transform:matrix(0.291971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291971,0.000000,0.000000,0.250000,0,0);}
.mc1_c00226{transform:matrix(0.292090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292090,0.000000,0.000000,0.250000,0,0);}
.m1d_c00226{transform:matrix(0.292209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292209,0.000000,0.000000,0.250000,0,0);}
.m6e_c00226{transform:matrix(0.292320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292320,0.000000,0.000000,0.250000,0,0);}
.me_c00226{transform:matrix(0.292468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292468,0.000000,0.000000,0.250000,0,0);}
.m52_c00226{transform:matrix(0.292517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292517,0.000000,0.000000,0.250000,0,0);}
.ma4_c00226{transform:matrix(0.292959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292959,0.000000,0.000000,0.250000,0,0);}
.md6_c00226{transform:matrix(0.293664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293664,0.000000,0.000000,0.250000,0,0);}
.m43_c00226{transform:matrix(0.293758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293758,0.000000,0.000000,0.250000,0,0);}
.m0_c00226{transform:matrix(0.294125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294125,0.000000,0.000000,0.250000,0,0);}
.m65_c00226{transform:matrix(0.295246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295246,0.000000,0.000000,0.250000,0,0);}
.m66_c00226{transform:matrix(0.295993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295993,0.000000,0.000000,0.250000,0,0);}
.md0_c00226{transform:matrix(0.296760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296760,0.000000,0.000000,0.250000,0,0);}
.m74_c00226{transform:matrix(0.296765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296765,0.000000,0.000000,0.250000,0,0);}
.m6d_c00226{transform:matrix(0.296801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296801,0.000000,0.000000,0.250000,0,0);}
.m62_c00226{transform:matrix(0.296816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296816,0.000000,0.000000,0.250000,0,0);}
.mf2_c00226{transform:matrix(0.296935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296935,0.000000,0.000000,0.250000,0,0);}
.mcb_c00226{transform:matrix(0.298484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298484,0.000000,0.000000,0.250000,0,0);}
.mc5_c00226{transform:matrix(0.298866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298866,0.000000,0.000000,0.250000,0,0);}
.m4_c00226{transform:matrix(0.299146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299146,0.000000,0.000000,0.250000,0,0);}
.m4e_c00226{transform:matrix(0.300194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300194,0.000000,0.000000,0.250000,0,0);}
.md8_c00226{transform:matrix(0.300614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300614,0.000000,0.000000,0.250000,0,0);}
.mae_c00226{transform:matrix(0.300935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300935,0.000000,0.000000,0.250000,0,0);}
.m1e_c00226{transform:matrix(0.301435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301435,0.000000,0.000000,0.250000,0,0);}
.m28_c00226{transform:matrix(0.302058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302058,0.000000,0.000000,0.250000,0,0);}
.mc7_c00226{transform:matrix(0.302332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302332,0.000000,0.000000,0.250000,0,0);}
.m50_c00226{transform:matrix(0.302434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302434,0.000000,0.000000,0.250000,0,0);}
.m58_c00226{transform:matrix(0.302746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302746,0.000000,0.000000,0.250000,0,0);}
.m105_c00226{transform:matrix(0.302801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302801,0.000000,0.000000,0.250000,0,0);}
.ma9_c00226{transform:matrix(0.302988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302988,0.000000,0.000000,0.250000,0,0);}
.mc0_c00226{transform:matrix(0.303825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303825,0.000000,0.000000,0.250000,0,0);}
.m9c_c00226{transform:matrix(0.303875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303875,0.000000,0.000000,0.250000,0,0);}
.m23_c00226{transform:matrix(0.303940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303940,0.000000,0.000000,0.250000,0,0);}
.m27_c00226{transform:matrix(0.305131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305131,0.000000,0.000000,0.250000,0,0);}
.maf_c00226{transform:matrix(0.305342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305342,0.000000,0.000000,0.250000,0,0);}
.m11_c00226{transform:matrix(0.305595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305595,0.000000,0.000000,0.250000,0,0);}
.mfd_c00226{transform:matrix(0.306168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306168,0.000000,0.000000,0.250000,0,0);}
.m8c_c00226{transform:matrix(0.306330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306330,0.000000,0.000000,0.250000,0,0);}
.m6b_c00226{transform:matrix(0.306689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306689,0.000000,0.000000,0.250000,0,0);}
.mc3_c00226{transform:matrix(0.307095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307095,0.000000,0.000000,0.250000,0,0);}
.m88_c00226{transform:matrix(0.308273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308273,0.000000,0.000000,0.250000,0,0);}
.mb3_c00226{transform:matrix(0.308451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308451,0.000000,0.000000,0.250000,0,0);}
.m25_c00226{transform:matrix(0.309078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309078,0.000000,0.000000,0.250000,0,0);}
.mb6_c00226{transform:matrix(0.309329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309329,0.000000,0.000000,0.250000,0,0);}
.m15_c00226{transform:matrix(0.309458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309458,0.000000,0.000000,0.250000,0,0);}
.mf5_c00226{transform:matrix(0.309542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309542,0.000000,0.000000,0.250000,0,0);}
.m84_c00226{transform:matrix(0.309842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309842,0.000000,0.000000,0.250000,0,0);}
.m98_c00226{transform:matrix(0.310068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310068,0.000000,0.000000,0.250000,0,0);}
.m6_c00226{transform:matrix(0.310517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310517,0.000000,0.000000,0.250000,0,0);}
.m4c_c00226{transform:matrix(0.310570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310570,0.000000,0.000000,0.250000,0,0);}
.m63_c00226{transform:matrix(0.311016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311016,0.000000,0.000000,0.250000,0,0);}
.m7b_c00226{transform:matrix(0.311454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311454,0.000000,0.000000,0.250000,0,0);}
.me1_c00226{transform:matrix(0.312687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312687,0.000000,0.000000,0.250000,0,0);}
.m91_c00226{transform:matrix(0.312694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312694,0.000000,0.000000,0.250000,0,0);}
.m48_c00226{transform:matrix(0.312901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312901,0.000000,0.000000,0.250000,0,0);}
.m49_c00226{transform:matrix(0.313069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313069,0.000000,0.000000,0.250000,0,0);}
.m104_c00226{transform:matrix(0.314258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314258,0.000000,0.000000,0.250000,0,0);}
.m36_c00226{transform:matrix(0.314362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314362,0.000000,0.000000,0.250000,0,0);}
.mec_c00226{transform:matrix(0.314484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314484,0.000000,0.000000,0.250000,0,0);}
.m6f_c00226{transform:matrix(0.315797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315797,0.000000,0.000000,0.250000,0,0);}
.m17_c00226{transform:matrix(0.315850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315850,0.000000,0.000000,0.250000,0,0);}
.m30_c00226{transform:matrix(0.315851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315851,0.000000,0.000000,0.250000,0,0);}
.mb4_c00226{transform:matrix(0.316350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316350,0.000000,0.000000,0.250000,0,0);}
.m7c_c00226{transform:matrix(0.316509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316509,0.000000,0.000000,0.250000,0,0);}
.m3e_c00226{transform:matrix(0.316581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316581,0.000000,0.000000,0.250000,0,0);}
.m68_c00226{transform:matrix(0.316775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316775,0.000000,0.000000,0.250000,0,0);}
.mb5_c00226{transform:matrix(0.317490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317490,0.000000,0.000000,0.250000,0,0);}
.m47_c00226{transform:matrix(0.317532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317532,0.000000,0.000000,0.250000,0,0);}
.m22_c00226{transform:matrix(0.317731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317731,0.000000,0.000000,0.250000,0,0);}
.m10_c00226{transform:matrix(0.318639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318639,0.000000,0.000000,0.250000,0,0);}
.m4f_c00226{transform:matrix(0.318687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318687,0.000000,0.000000,0.250000,0,0);}
.mfb_c00226{transform:matrix(0.319553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319553,0.000000,0.000000,0.250000,0,0);}
.m1a_c00226{transform:matrix(0.320293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320293,0.000000,0.000000,0.250000,0,0);}
.mdb_c00226{transform:matrix(0.320336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320336,0.000000,0.000000,0.250000,0,0);}
.ma2_c00226{transform:matrix(0.320340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320340,0.000000,0.000000,0.250000,0,0);}
.mff_c00226{transform:matrix(0.321163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321163,0.000000,0.000000,0.250000,0,0);}
.mc_c00226{transform:matrix(0.321197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321197,0.000000,0.000000,0.250000,0,0);}
.mb7_c00226{transform:matrix(0.321356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321356,0.000000,0.000000,0.250000,0,0);}
.m53_c00226{transform:matrix(0.321469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321469,0.000000,0.000000,0.250000,0,0);}
.m96_c00226{transform:matrix(0.321621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321621,0.000000,0.000000,0.250000,0,0);}
.m75_c00226{transform:matrix(0.321997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321997,0.000000,0.000000,0.250000,0,0);}
.m3d_c00226{transform:matrix(0.322721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322721,0.000000,0.000000,0.250000,0,0);}
.mee_c00226{transform:matrix(0.322750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322750,0.000000,0.000000,0.250000,0,0);}
.mda_c00226{transform:matrix(0.323069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323069,0.000000,0.000000,0.250000,0,0);}
.me4_c00226{transform:matrix(0.323069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323069,0.000000,0.000000,0.250000,0,0);}
.m19_c00226{transform:matrix(0.324400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324400,0.000000,0.000000,0.250000,0,0);}
.maa_c00226{transform:matrix(0.324744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324744,0.000000,0.000000,0.250000,0,0);}
.m2a_c00226{transform:matrix(0.325788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325788,0.000000,0.000000,0.250000,0,0);}
.m3c_c00226{transform:matrix(0.325789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325789,0.000000,0.000000,0.250000,0,0);}
.m83_c00226{transform:matrix(0.328006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328006,0.000000,0.000000,0.250000,0,0);}
.mce_c00226{transform:matrix(0.328295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328295,0.000000,0.000000,0.250000,0,0);}
.mbc_c00226{transform:matrix(0.328703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328703,0.000000,0.000000,0.250000,0,0);}
.me5_c00226{transform:matrix(0.328829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328829,0.000000,0.000000,0.250000,0,0);}
.m55_c00226{transform:matrix(0.329209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329209,0.000000,0.000000,0.250000,0,0);}
.md_c00226{transform:matrix(0.329507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329507,0.000000,0.000000,0.250000,0,0);}
.m4a_c00226{transform:matrix(0.330204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330204,0.000000,0.000000,0.250000,0,0);}
.m3b_c00226{transform:matrix(0.331059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331059,0.000000,0.000000,0.250000,0,0);}
.m5c_c00226{transform:matrix(0.332903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332903,0.000000,0.000000,0.250000,0,0);}
.m71_c00226{transform:matrix(0.333595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333595,0.000000,0.000000,0.250000,0,0);}
.m89_c00226{transform:matrix(0.334426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334426,0.000000,0.000000,0.250000,0,0);}
.mb0_c00226{transform:matrix(0.334498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334498,0.000000,0.000000,0.250000,0,0);}
.m64_c00226{transform:matrix(0.334905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334905,0.000000,0.000000,0.250000,0,0);}
.m1c_c00226{transform:matrix(0.336513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336513,0.000000,0.000000,0.250000,0,0);}
.m56_c00226{transform:matrix(0.336814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336814,0.000000,0.000000,0.250000,0,0);}
.mdc_c00226{transform:matrix(0.338095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338095,0.000000,0.000000,0.250000,0,0);}
.m101_c00226{transform:matrix(0.338534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338534,0.000000,0.000000,0.250000,0,0);}
.m3_c00226{transform:matrix(0.339299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339299,0.000000,0.000000,0.250000,0,0);}
.mcc_c00226{transform:matrix(0.339448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339448,0.000000,0.000000,0.250000,0,0);}
.mf3_c00226{transform:matrix(0.339928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339928,0.000000,0.000000,0.250000,0,0);}
.m5e_c00226{transform:matrix(0.340192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340192,0.000000,0.000000,0.250000,0,0);}
.m9_c00226{transform:matrix(0.340913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340913,0.000000,0.000000,0.250000,0,0);}
.m60_c00226{transform:matrix(0.341088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341088,0.000000,0.000000,0.250000,0,0);}
.m8d_c00226{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);}
.m33_c00226{transform:matrix(0.342744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342744,0.000000,0.000000,0.250000,0,0);}
.m9e_c00226{transform:matrix(0.343938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343938,0.000000,0.000000,0.250000,0,0);}
.m35_c00226{transform:matrix(0.345105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345105,0.000000,0.000000,0.250000,0,0);}
.mab_c00226{transform:matrix(0.345940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345940,0.000000,0.000000,0.250000,0,0);}
.m34_c00226{transform:matrix(0.345958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345958,0.000000,0.000000,0.250000,0,0);}
.m1b_c00226{transform:matrix(0.346894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346894,0.000000,0.000000,0.250000,0,0);}
.m8a_c00226{transform:matrix(0.347155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347155,0.000000,0.000000,0.250000,0,0);}
.m41_c00226{transform:matrix(0.348976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348976,0.000000,0.000000,0.250000,0,0);}
.m26_c00226{transform:matrix(0.349992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349992,0.000000,0.000000,0.250000,0,0);}
.mf4_c00226{transform:matrix(0.350030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350030,0.000000,0.000000,0.250000,0,0);}
.ma8_c00226{transform:matrix(0.351137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351137,0.000000,0.000000,0.250000,0,0);}
.mfe_c00226{transform:matrix(0.352299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352299,0.000000,0.000000,0.250000,0,0);}
.m80_c00226{transform:matrix(0.352833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352833,0.000000,0.000000,0.250000,0,0);}
.m14_c00226{transform:matrix(0.353088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353088,0.000000,0.000000,0.250000,0,0);}
.md9_c00226{transform:matrix(0.353245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353245,0.000000,0.000000,0.250000,0,0);}
.m21_c00226{transform:matrix(0.353510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353510,0.000000,0.000000,0.250000,0,0);}
.mfc_c00226{transform:matrix(0.354400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354400,0.000000,0.000000,0.250000,0,0);}
.md7_c00226{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);}
.me3_c00226{transform:matrix(0.359282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359282,0.000000,0.000000,0.250000,0,0);}
.me0_c00226{transform:matrix(0.359336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359336,0.000000,0.000000,0.250000,0,0);}
.mca_c00226{transform:matrix(0.360327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360327,0.000000,0.000000,0.250000,0,0);}
.m73_c00226{transform:matrix(0.360983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360983,0.000000,0.000000,0.250000,0,0);}
.m100_c00226{transform:matrix(0.361584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361584,0.000000,0.000000,0.250000,0,0);}
.m102_c00226{transform:matrix(0.362138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362138,0.000000,0.000000,0.250000,0,0);}
.mb_c00226{transform:matrix(0.365477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365477,0.000000,0.000000,0.250000,0,0);}
.mc8_c00226{transform:matrix(0.368377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368377,0.000000,0.000000,0.250000,0,0);}
.mf6_c00226{transform:matrix(0.368870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368870,0.000000,0.000000,0.250000,0,0);}
.m46_c00226{transform:matrix(0.369095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369095,0.000000,0.000000,0.250000,0,0);}
.m9d_c00226{transform:matrix(0.375615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375615,0.000000,0.000000,0.250000,0,0);}
.m2c_c00226{transform:matrix(0.378966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378966,0.000000,0.000000,0.250000,0,0);}
.m99_c00226{transform:matrix(0.389789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389789,0.000000,0.000000,0.250000,0,0);}
.m38_c00226{transform:matrix(0.403963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403963,0.000000,0.000000,0.250000,0,0);}
.mbf_c00226{transform:matrix(0.405617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405617,0.000000,0.000000,0.250000,0,0);}
.m85_c00226{transform:matrix(0.427395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427395,0.000000,0.000000,0.250000,0,0);}
.mf0_c00226{transform:matrix(0.428429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428429,0.000000,0.000000,0.250000,0,0);}
.mac_c00226{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);}
.mb1_c00226{transform:matrix(0.436760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436760,0.000000,0.000000,0.250000,0,0);}
.m7d_c00226{transform:matrix(0.444701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444701,0.000000,0.000000,0.250000,0,0);}
.m29_c00226{transform:matrix(0.444959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444959,0.000000,0.000000,0.250000,0,0);}
.mf_c00226{transform:matrix(0.449723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449723,0.000000,0.000000,0.250000,0,0);}
.v1_c00226{vertical-align:-14.236200px;}
.v0_c00226{vertical-align:0.000000px;}
.ls7_c00226{letter-spacing:-2.668050px;}
.ls16_c00226{letter-spacing:-1.115730px;}
.ls11_c00226{letter-spacing:-0.777546px;}
.ls12_c00226{letter-spacing:-0.419265px;}
.ls4_c00226{letter-spacing:0.000000px;}
.lse_c00226{letter-spacing:0.945252px;}
.ls14_c00226{letter-spacing:2.065833px;}
.ls13_c00226{letter-spacing:2.325015px;}
.lsd_c00226{letter-spacing:2.332638px;}
.lsa_c00226{letter-spacing:2.431737px;}
.lsb_c00226{letter-spacing:2.995839px;}
.lsf_c00226{letter-spacing:3.232152px;}
.lsc_c00226{letter-spacing:3.603610px;}
.ls8_c00226{letter-spacing:3.643200px;}
.ls3_c00226{letter-spacing:3.742200px;}
.ls5_c00226{letter-spacing:3.811500px;}
.ls9_c00226{letter-spacing:3.861000px;}
.ls17_c00226{letter-spacing:4.494610px;}
.ls1_c00226{letter-spacing:11.053350px;}
.ls2_c00226{letter-spacing:20.658330px;}
.ls10_c00226{letter-spacing:48.470598px;}
.ls15_c00226{letter-spacing:49.896198px;}
.ls0_c00226{letter-spacing:56.316678px;}
.ls6_c00226{letter-spacing:57.024198px;}
.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;}
}
.ws2_c00226{word-spacing:-21.489237px;}
.ws3_c00226{word-spacing:-20.002752px;}
.ws1_c00226{word-spacing:-19.057500px;}
.ws4_c00226{word-spacing:-4.040190px;}
.ws5_c00226{word-spacing:0.000000px;}
.ws0_c00226{word-spacing:2.439360px;}
._d_c00226{margin-left:-7.013160px;}
._12_c00226{margin-left:-5.793480px;}
._16_c00226{width:1.383426px;}
._11_c00226{width:4.650030px;}
._8_c00226{width:6.022170px;}
._3_c00226{width:7.468560px;}
._7_c00226{width:8.770410px;}
._4_c00226{width:9.986130px;}
._f_c00226{width:11.129580px;}
._14_c00226{width:12.808620px;}
._6_c00226{width:14.331240px;}
._c_c00226{width:15.934050px;}
._13_c00226{width:20.353410px;}
._1_c00226{width:21.420630px;}
._0_c00226{width:22.869000px;}
._1a_c00226{width:24.134220px;}
._10_c00226{width:25.232130px;}
._18_c00226{width:28.141740px;}
._9_c00226{width:31.940370px;}
._e_c00226{width:33.518430px;}
._15_c00226{width:34.711380px;}
._b_c00226{width:37.047780px;}
._a_c00226{width:38.343690px;}
._2_c00226{width:39.793050px;}
._19_c00226{width:42.155190px;}
._5_c00226{width:45.358830px;}
._17_c00226{width:49.794030px;}
.fc0_c00226{color:transparent;}
.fs1_c00226{font-size:22.572000px;}
.fs14_c00226{font-size:27.720000px;}
.fs10_c00226{font-size:31.878000px;}
.fs4_c00226{font-size:34.848000px;}
.fs6_c00226{font-size:38.808000px;}
.fse_c00226{font-size:48.114000px;}
.fsd_c00226{font-size:48.470598px;}
.fsf_c00226{font-size:49.896198px;}
.fs13_c00226{font-size:50.688000px;}
.fs5_c00226{font-size:57.024198px;}
.fs12_c00226{font-size:62.568000px;}
.fsb_c00226{font-size:70.092198px;}
.fsc_c00226{font-size:70.884000px;}
.fsa_c00226{font-size:72.072198px;}
.fs7_c00226{font-size:72.864000px;}
.fs0_c00226{font-size:74.844000px;}
.fs3_c00226{font-size:76.032198px;}
.fs2_c00226{font-size:76.230000px;}
.fs9_c00226{font-size:77.022198px;}
.fs8_c00226{font-size:77.220000px;}
.fs11_c00226{font-size:89.892198px;}
.y0_c00226{bottom:0.000000px;}
.y1f_c00226{bottom:74.399535px;}
.y1_c00226{bottom:76.500000px;}
.y22_c00226{bottom:96.139935px;}
.y21_c00226{bottom:128.210985px;}
.y20_c00226{bottom:133.205535px;}
.y1e_c00226{bottom:155.297385px;}
.y1d_c00226{bottom:189.511785px;}
.y1c_c00226{bottom:222.305535px;}
.y1b_c00226{bottom:252.955935px;}
.y1a_c00226{bottom:283.957785px;}
.y19_c00226{bottom:316.038735px;}
.y18_c00226{bottom:347.753385px;}
.y17_c00226{bottom:379.834335px;}
.y16_c00226{bottom:410.836185px;}
.y15_c00226{bottom:442.912185px;}
.y14_c00226{bottom:475.344585px;}
.y13_c00226{bottom:507.064185px;}
.y12_c00226{bottom:539.496585px;}
.y11_c00226{bottom:571.221135px;}
.yf_c00226{bottom:601.866585px;}
.y10_c00226{bottom:620.047935px;}
.ye_c00226{bottom:632.873385px;}
.yd_c00226{bottom:665.305785px;}
.yc_c00226{bottom:697.025385px;}
.yb_c00226{bottom:730.531935px;}
.ya_c00226{bottom:762.964335px;}
.y9_c00226{bottom:796.460985px;}
.y8_c00226{bottom:860.974335px;}
.y7_c00226{bottom:886.635135px;}
.y6_c00226{bottom:894.114585px;}
.y5_c00226{bottom:919.418985px;}
.y4_c00226{bottom:927.259785px;}
.y3_c00226{bottom:945.079785px;}
.y2_c00226{bottom:1073.383785px;}
.h3_c00226{height:23.541891px;}
.h15_c00226{height:28.911094px;}
.h10_c00226{height:31.286514px;}
.hd_c00226{height:32.281418px;}
.hf_c00226{height:33.230868px;}
.h6_c00226{height:37.978116px;}
.h7_c00226{height:40.475531px;}
.he_c00226{height:50.181398px;}
.h12_c00226{height:52.040175px;}
.h14_c00226{height:52.866000px;}
.h13_c00226{height:65.256469px;}
.hc_c00226{height:72.635262px;}
.h8_c00226{height:73.433250px;}
.h2_c00226{height:73.455293px;}
.h4_c00226{height:74.815576px;}
.h9_c00226{height:75.749502px;}
.ha_c00226{height:76.825547px;}
.h5_c00226{height:79.299207px;}
.hb_c00226{height:80.331746px;}
.h11_c00226{height:88.224276px;}
.h1_c00226{height:1110.000000px;}
.h0_c00226{height:1263.000000px;}
.w1_c00226{width:751.500000px;}
.w0_c00226{width:892.500000px;}
.x0_c00226{left:0.000000px;}
.x49_c00226{left:46.307685px;}
.x5a_c00226{left:62.608035px;}
.x20_c00226{left:63.662385px;}
.x4_c00226{left:64.830585px;}
.x1_c00226{left:70.500000px;}
.x3e_c00226{left:74.408835px;}
.x66_c00226{left:75.784935px;}
.x5_c00226{left:86.966985px;}
.x33_c00226{left:95.792835px;}
.x4a_c00226{left:97.505535px;}
.x5b_c00226{left:99.569685px;}
.x71_c00226{left:107.910435px;}
.x6_c00226{left:109.118235px;}
.x21_c00226{left:119.800335px;}
.x63_c00226{left:120.869535px;}
.x4b_c00226{left:131.160585px;}
.x78_c00226{left:132.264435px;}
.x67_c00226{left:141.011085px;}
.x15_c00226{left:142.164435px;}
.x28_c00226{left:152.589135px;}
.x22_c00226{left:153.608835px;}
.x44_c00226{left:162.706935px;}
.x2b_c00226{left:164.008785px;}
.x6f_c00226{left:165.370035px;}
.x56_c00226{left:173.131635px;}
.x7_c00226{left:174.715635px;}
.x72_c00226{left:177.383685px;}
.x23_c00226{left:185.278935px;}
.x8_c00226{left:186.447135px;}
.x64_c00226{left:195.941235px;}
.x4c_c00226{left:197.327235px;}
.x16_c00226{left:207.860835px;}
.x2c_c00226{left:209.281485px;}
.x73_c00226{left:210.286335px;}
.x17_c00226{left:218.716185px;}
.x51_c00226{left:219.953685px;}
.x5f_c00226{left:229.442835px;}
.x24_c00226{left:230.833785px;}
.x5c_c00226{left:234.793785px;}
.x34_c00226{left:241.362435px;}
.x35_c00226{left:252.227685px;}
.x79_c00226{left:253.781985px;}
.x9_c00226{left:263.850285px;}
.x60_c00226{left:265.186785px;}
.x18_c00226{left:275.086785px;}
.x68_c00226{left:276.264885px;}
.x74_c00226{left:277.517235px;}
.x25_c00226{left:285.551085px;}
.x7a_c00226{left:286.946985px;}
.x6b_c00226{left:288.659685px;}
.xa_c00226{left:296.054985px;}
.x75_c00226{left:298.624035px;}
.x19_c00226{left:307.994385px;}
.x26_c00226{left:319.092285px;}
.x65_c00226{left:320.423835px;}
.x57_c00226{left:322.255335px;}
.x52_c00226{left:330.071385px;}
.xb_c00226{left:331.115835px;}
.x61_c00226{left:340.243635px;}
.x36_c00226{left:341.703885px;}
.x27_c00226{left:351.989985px;}
.x76_c00226{left:353.598735px;}
.x1a_c00226{left:363.973935px;}
.x1b_c00226{left:374.631285px;}
.x3f_c00226{left:375.660885px;}
.x2d_c00226{left:385.145085px;}
.x62_c00226{left:386.397435px;}
.xc_c00226{left:396.733035px;}
.x6c_c00226{left:398.123985px;}
.x4d_c00226{left:399.500085px;}
.x37_c00226{left:407.791335px;}
.x29_c00226{left:408.815985px;}
.x45_c00226{left:410.192085px;}
.x6d_c00226{left:417.622035px;}
.xd_c00226{left:418.864485px;}
.x2e_c00226{left:429.541635px;}
.x4e_c00226{left:430.576185px;}
.x38_c00226{left:440.604885px;}
.xe_c00226{left:441.629535px;}
.x39_c00226{left:451.955235px;}
.x70_c00226{left:461.815635px;}
.x69_c00226{left:463.622385px;}
.xf_c00226{left:474.482685px;}
.x46_c00226{left:484.244085px;}
.x2f_c00226{left:486.169635px;}
.x3a_c00226{left:496.544835px;}
.x3b_c00226{left:507.405135px;}
.x53_c00226{left:510.380085px;}
.x4f_c00226{left:517.770435px;}
.x40_c00226{left:519.651435px;}
.x10_c00226{left:529.848435px;}
.x47_c00226{left:541.070085px;}
.x77_c00226{left:542.990685px;}
.x30_c00226{left:551.430435px;}
.x3_c00226{left:560.761185px;}
.x41_c00226{left:562.478835px;}
.x5d_c00226{left:563.508435px;}
.x1c_c00226{left:573.527235px;}
.x11_c00226{left:584.570685px;}
.x6e_c00226{left:585.639885px;}
.x42_c00226{left:596.618985px;}
.x31_c00226{left:605.410185px;}
.x58_c00226{left:607.182285px;}
.x1d_c00226{left:616.810035px;}
.x12_c00226{left:618.032685px;}
.x3c_c00226{left:629.749335px;}
.x50_c00226{left:639.688935px;}
.x5e_c00226{left:640.862085px;}
.x6a_c00226{left:642.842085px;}
.x13_c00226{left:650.890785px;}
.x2_c00226{left:652.940085px;}
.x7c_c00226{left:657.286185px;}
.x3d_c00226{left:662.057985px;}
.x43_c00226{left:663.701385px;}
.x1e_c00226{left:672.096585px;}
.x54_c00226{left:673.665735px;}
.x7b_c00226{left:674.695335px;}
.x14_c00226{left:677.977185px;}
.x59_c00226{left:684.600285px;}
.x48_c00226{left:693.955785px;}
.x2a_c00226{left:695.059635px;}
.x7d_c00226{left:698.440485px;}
.x1f_c00226{left:701.524335px;}
.x55_c00226{left:705.301185px;}
.x32_c00226{left:707.449485px;}
.x7e_c00226{left:751.108485px;}
@media print{
.v1_c00226{vertical-align:-12.654400pt;}
.v0_c00226{vertical-align:0.000000pt;}
.ls7_c00226{letter-spacing:-2.371600pt;}
.ls16_c00226{letter-spacing:-0.991760pt;}
.ls11_c00226{letter-spacing:-0.691152pt;}
.ls12_c00226{letter-spacing:-0.372680pt;}
.ls4_c00226{letter-spacing:0.000000pt;}
.lse_c00226{letter-spacing:0.840224pt;}
.ls14_c00226{letter-spacing:1.836296pt;}
.ls13_c00226{letter-spacing:2.066680pt;}
.lsd_c00226{letter-spacing:2.073456pt;}
.lsa_c00226{letter-spacing:2.161544pt;}
.lsb_c00226{letter-spacing:2.662968pt;}
.lsf_c00226{letter-spacing:2.873024pt;}
.lsc_c00226{letter-spacing:3.203209pt;}
.ls8_c00226{letter-spacing:3.238400pt;}
.ls3_c00226{letter-spacing:3.326400pt;}
.ls5_c00226{letter-spacing:3.388000pt;}
.ls9_c00226{letter-spacing:3.432000pt;}
.ls17_c00226{letter-spacing:3.995209pt;}
.ls1_c00226{letter-spacing:9.825200pt;}
.ls2_c00226{letter-spacing:18.362960pt;}
.ls10_c00226{letter-spacing:43.084976pt;}
.ls15_c00226{letter-spacing:44.352176pt;}
.ls0_c00226{letter-spacing:50.059269pt;}
.ls6_c00226{letter-spacing:50.688176pt;}
.ws2_c00226{word-spacing:-19.101544pt;}
.ws3_c00226{word-spacing:-17.780224pt;}
.ws1_c00226{word-spacing:-16.940000pt;}
.ws4_c00226{word-spacing:-3.591280pt;}
.ws5_c00226{word-spacing:0.000000pt;}
.ws0_c00226{word-spacing:2.168320pt;}
._d_c00226{margin-left:-6.233920pt;}
._12_c00226{margin-left:-5.149760pt;}
._16_c00226{width:1.229712pt;}
._11_c00226{width:4.133360pt;}
._8_c00226{width:5.353040pt;}
._3_c00226{width:6.638720pt;}
._7_c00226{width:7.795920pt;}
._4_c00226{width:8.876560pt;}
._f_c00226{width:9.892960pt;}
._14_c00226{width:11.385440pt;}
._6_c00226{width:12.738880pt;}
._c_c00226{width:14.163600pt;}
._13_c00226{width:18.091920pt;}
._1_c00226{width:19.040560pt;}
._0_c00226{width:20.328000pt;}
._1a_c00226{width:21.452640pt;}
._10_c00226{width:22.428560pt;}
._18_c00226{width:25.014880pt;}
._9_c00226{width:28.391440pt;}
._e_c00226{width:29.794160pt;}
._15_c00226{width:30.854560pt;}
._b_c00226{width:32.931360pt;}
._a_c00226{width:34.083280pt;}
._2_c00226{width:35.371600pt;}
._19_c00226{width:37.471280pt;}
._5_c00226{width:40.318960pt;}
._17_c00226{width:44.261360pt;}
.fs1_c00226{font-size:20.064000pt;}
.fs14_c00226{font-size:24.640000pt;}
.fs10_c00226{font-size:28.336000pt;}
.fs4_c00226{font-size:30.976000pt;}
.fs6_c00226{font-size:34.496000pt;}
.fse_c00226{font-size:42.768000pt;}
.fsd_c00226{font-size:43.084976pt;}
.fsf_c00226{font-size:44.352176pt;}
.fs13_c00226{font-size:45.056000pt;}
.fs5_c00226{font-size:50.688176pt;}
.fs12_c00226{font-size:55.616000pt;}
.fsb_c00226{font-size:62.304176pt;}
.fsc_c00226{font-size:63.008000pt;}
.fsa_c00226{font-size:64.064176pt;}
.fs7_c00226{font-size:64.768000pt;}
.fs0_c00226{font-size:66.528000pt;}
.fs3_c00226{font-size:67.584176pt;}
.fs2_c00226{font-size:67.760000pt;}
.fs9_c00226{font-size:68.464176pt;}
.fs8_c00226{font-size:68.640000pt;}
.fs11_c00226{font-size:79.904176pt;}
.y0_c00226{bottom:0.000000pt;}
.y1f_c00226{bottom:66.132920pt;}
.y1_c00226{bottom:68.000000pt;}
.y22_c00226{bottom:85.457720pt;}
.y21_c00226{bottom:113.965320pt;}
.y20_c00226{bottom:118.404920pt;}
.y1e_c00226{bottom:138.042120pt;}
.y1d_c00226{bottom:168.454920pt;}
.y1c_c00226{bottom:197.604920pt;}
.y1b_c00226{bottom:224.849720pt;}
.y1a_c00226{bottom:252.406920pt;}
.y19_c00226{bottom:280.923320pt;}
.y18_c00226{bottom:309.114120pt;}
.y17_c00226{bottom:337.630520pt;}
.y16_c00226{bottom:365.187720pt;}
.y15_c00226{bottom:393.699720pt;}
.y14_c00226{bottom:422.528520pt;}
.y13_c00226{bottom:450.723720pt;}
.y12_c00226{bottom:479.552520pt;}
.y11_c00226{bottom:507.752120pt;}
.yf_c00226{bottom:534.992520pt;}
.y10_c00226{bottom:551.153720pt;}
.ye_c00226{bottom:562.554120pt;}
.yd_c00226{bottom:591.382920pt;}
.yc_c00226{bottom:619.578120pt;}
.yb_c00226{bottom:649.361720pt;}
.ya_c00226{bottom:678.190520pt;}
.y9_c00226{bottom:707.965320pt;}
.y8_c00226{bottom:765.310520pt;}
.y7_c00226{bottom:788.120120pt;}
.y6_c00226{bottom:794.768520pt;}
.y5_c00226{bottom:817.261320pt;}
.y4_c00226{bottom:824.230920pt;}
.y3_c00226{bottom:840.070920pt;}
.y2_c00226{bottom:954.118920pt;}
.h3_c00226{height:20.926125pt;}
.h15_c00226{height:25.698750pt;}
.h10_c00226{height:27.810234pt;}
.hd_c00226{height:28.694594pt;}
.hf_c00226{height:29.538549pt;}
.h6_c00226{height:33.758325pt;}
.h7_c00226{height:35.978250pt;}
.he_c00226{height:44.605688pt;}
.h12_c00226{height:46.257934pt;}
.h14_c00226{height:46.992000pt;}
.h13_c00226{height:58.005750pt;}
.hc_c00226{height:64.564677pt;}
.h8_c00226{height:65.274000pt;}
.h2_c00226{height:65.293594pt;}
.h4_c00226{height:66.502734pt;}
.h9_c00226{height:67.332891pt;}
.ha_c00226{height:68.289375pt;}
.h5_c00226{height:70.488184pt;}
.hb_c00226{height:71.405996pt;}
.h11_c00226{height:78.421579pt;}
.h1_c00226{height:986.666667pt;}
.h0_c00226{height:1122.666667pt;}
.w1_c00226{width:668.000000pt;}
.w0_c00226{width:793.333333pt;}
.x0_c00226{left:0.000000pt;}
.x49_c00226{left:41.162387pt;}
.x5a_c00226{left:55.651587pt;}
.x20_c00226{left:56.588787pt;}
.x4_c00226{left:57.627187pt;}
.x1_c00226{left:62.666667pt;}
.x3e_c00226{left:66.141187pt;}
.x66_c00226{left:67.364387pt;}
.x5_c00226{left:77.303987pt;}
.x33_c00226{left:85.149187pt;}
.x4a_c00226{left:86.671587pt;}
.x5b_c00226{left:88.506387pt;}
.x71_c00226{left:95.920387pt;}
.x6_c00226{left:96.993987pt;}
.x21_c00226{left:106.489187pt;}
.x63_c00226{left:107.439587pt;}
.x4b_c00226{left:116.587187pt;}
.x78_c00226{left:117.568387pt;}
.x67_c00226{left:125.343187pt;}
.x15_c00226{left:126.368387pt;}
.x28_c00226{left:135.634787pt;}
.x22_c00226{left:136.541187pt;}
.x44_c00226{left:144.628387pt;}
.x2b_c00226{left:145.785587pt;}
.x6f_c00226{left:146.995587pt;}
.x56_c00226{left:153.894787pt;}
.x7_c00226{left:155.302787pt;}
.x72_c00226{left:157.674387pt;}
.x23_c00226{left:164.692387pt;}
.x8_c00226{left:165.730787pt;}
.x64_c00226{left:174.169987pt;}
.x4c_c00226{left:175.401987pt;}
.x16_c00226{left:184.765187pt;}
.x2c_c00226{left:186.027987pt;}
.x73_c00226{left:186.921187pt;}
.x17_c00226{left:194.414387pt;}
.x51_c00226{left:195.514387pt;}
.x5f_c00226{left:203.949187pt;}
.x24_c00226{left:205.185587pt;}
.x5c_c00226{left:208.705587pt;}
.x34_c00226{left:214.544387pt;}
.x35_c00226{left:224.202387pt;}
.x79_c00226{left:225.583987pt;}
.x9_c00226{left:234.533587pt;}
.x60_c00226{left:235.721587pt;}
.x18_c00226{left:244.521587pt;}
.x68_c00226{left:245.568787pt;}
.x74_c00226{left:246.681987pt;}
.x25_c00226{left:253.823187pt;}
.x7a_c00226{left:255.063987pt;}
.x6b_c00226{left:256.586387pt;}
.xa_c00226{left:263.159987pt;}
.x75_c00226{left:265.443587pt;}
.x19_c00226{left:273.772787pt;}
.x26_c00226{left:283.637587pt;}
.x65_c00226{left:284.821187pt;}
.x57_c00226{left:286.449187pt;}
.x52_c00226{left:293.396787pt;}
.xb_c00226{left:294.325187pt;}
.x61_c00226{left:302.438787pt;}
.x36_c00226{left:303.736787pt;}
.x27_c00226{left:312.879987pt;}
.x76_c00226{left:314.309987pt;}
.x1a_c00226{left:323.532387pt;}
.x1b_c00226{left:333.005587pt;}
.x3f_c00226{left:333.920787pt;}
.x2d_c00226{left:342.351187pt;}
.x62_c00226{left:343.464387pt;}
.xc_c00226{left:352.651587pt;}
.x6c_c00226{left:353.887987pt;}
.x4d_c00226{left:355.111187pt;}
.x37_c00226{left:362.481187pt;}
.x29_c00226{left:363.391987pt;}
.x45_c00226{left:364.615187pt;}
.x6d_c00226{left:371.219587pt;}
.xd_c00226{left:372.323987pt;}
.x2e_c00226{left:381.814787pt;}
.x4e_c00226{left:382.734387pt;}
.x38_c00226{left:391.648787pt;}
.xe_c00226{left:392.559587pt;}
.x39_c00226{left:401.737987pt;}
.x70_c00226{left:410.502787pt;}
.x69_c00226{left:412.108787pt;}
.xf_c00226{left:421.762387pt;}
.x46_c00226{left:430.439187pt;}
.x2f_c00226{left:432.150787pt;}
.x3a_c00226{left:441.373187pt;}
.x3b_c00226{left:451.026787pt;}
.x53_c00226{left:453.671187pt;}
.x4f_c00226{left:460.240387pt;}
.x40_c00226{left:461.912387pt;}
.x10_c00226{left:470.976387pt;}
.x47_c00226{left:480.951187pt;}
.x77_c00226{left:482.658387pt;}
.x30_c00226{left:490.160387pt;}
.x3_c00226{left:498.454387pt;}
.x41_c00226{left:499.981187pt;}
.x5d_c00226{left:500.896387pt;}
.x1c_c00226{left:509.801987pt;}
.x11_c00226{left:519.618387pt;}
.x6e_c00226{left:520.568787pt;}
.x42_c00226{left:530.327987pt;}
.x31_c00226{left:538.142387pt;}
.x58_c00226{left:539.717587pt;}
.x1d_c00226{left:548.275587pt;}
.x12_c00226{left:549.362387pt;}
.x3c_c00226{left:559.777187pt;}
.x50_c00226{left:568.612387pt;}
.x5e_c00226{left:569.655187pt;}
.x6a_c00226{left:571.415187pt;}
.x13_c00226{left:578.569587pt;}
.x2_c00226{left:580.391187pt;}
.x7c_c00226{left:584.254387pt;}
.x3d_c00226{left:588.495987pt;}
.x43_c00226{left:589.956787pt;}
.x1e_c00226{left:597.419187pt;}
.x54_c00226{left:598.813987pt;}
.x7b_c00226{left:599.729187pt;}
.x14_c00226{left:602.646387pt;}
.x59_c00226{left:608.533587pt;}
.x48_c00226{left:616.849587pt;}
.x2a_c00226{left:617.830787pt;}
.x7d_c00226{left:620.835987pt;}
.x1f_c00226{left:623.577187pt;}
.x55_c00226{left:626.934387pt;}
.x32_c00226{left:628.843987pt;}
.x7e_c00226{left:667.651987pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_58ccb7409e75dac6e858b4ae.woff2')format("woff");}.ff1_c00227{font-family:ff1_c00227;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00227;src:url('chunks/assets/font_0de171531048ea0e00b4211f.woff2')format("woff");}.ff2_c00227{font-family:ff2_c00227;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00227;src:url('chunks/assets/font_35b4563786fe68c698992952.woff2')format("woff");}.ff3_c00227{font-family:ff3_c00227;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00227;src:url('chunks/assets/font_fc8d56420a6a2297ca86f24c.woff2')format("woff");}.ff4_c00227{font-family:ff4_c00227;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00227;src:url('chunks/assets/font_f23f7d9ac7f5d3983de2c3b8.woff2')format("woff");}.ff5_c00227{font-family:ff5_c00227;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00227;src:url('chunks/assets/font_a6485df39d6d9e029c333376.woff2')format("woff");}.ff6_c00227{font-family:ff6_c00227;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m65_c00227{transform:matrix(0.091055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091055,0.000000,0.000000,0.250000,0,0);}
.m82_c00227{transform:matrix(0.148991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148991,0.000000,0.000000,0.250000,0,0);}
.m1c_c00227{transform:matrix(0.182837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182837,0.000000,0.000000,0.250000,0,0);}
.m73_c00227{transform:matrix(0.186497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186497,0.000000,0.000000,0.250000,0,0);}
.m14_c00227{transform:matrix(0.200456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200456,0.000000,0.000000,0.250000,0,0);}
.mb6_c00227{transform:matrix(0.226365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226365,0.000000,0.000000,0.250000,0,0);}
.m83_c00227{transform:matrix(0.227274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227274,0.000000,0.000000,0.250000,0,0);}
.m81_c00227{transform:matrix(0.228355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228355,0.000000,0.000000,0.250000,0,0);}
.m64_c00227{transform:matrix(0.234741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234741,0.000000,0.000000,0.250000,0,0);}
.m91_c00227{transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);}
.mc1_c00227{transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);}
.mb8_c00227{transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);}
.m0_c00227{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00227{transform:matrix(0.250711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250711,0.000000,0.000000,0.250000,0,0);}
.ma5_c00227{transform:matrix(0.251394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251394,0.000000,0.000000,0.250000,0,0);}
.m2a_c00227{transform:matrix(0.253636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253636,0.000000,0.000000,0.250000,0,0);}
.m3_c00227{transform:matrix(0.254582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254582,0.000000,0.000000,0.250000,0,0);}
.m59_c00227{transform:matrix(0.256516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256516,0.000000,0.000000,0.250000,0,0);}
.me_c00227{transform:matrix(0.256680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256680,0.000000,0.000000,0.250000,0,0);}
.m37_c00227{transform:matrix(0.258620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258620,0.000000,0.000000,0.250000,0,0);}
.m3b_c00227{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.mcc_c00227{transform:matrix(0.259395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259395,0.000000,0.000000,0.250000,0,0);}
.m9_c00227{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m5e_c00227{transform:matrix(0.261492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261492,0.000000,0.000000,0.250000,0,0);}
.m4f_c00227{transform:matrix(0.261788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261788,0.000000,0.000000,0.250000,0,0);}
.m22_c00227{transform:matrix(0.261904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261904,0.000000,0.000000,0.250000,0,0);}
.m26_c00227{transform:matrix(0.262152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262152,0.000000,0.000000,0.250000,0,0);}
.m21_c00227{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m88_c00227{transform:matrix(0.263452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263452,0.000000,0.000000,0.250000,0,0);}
.m47_c00227{transform:matrix(0.263649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263649,0.000000,0.000000,0.250000,0,0);}
.m7b_c00227{transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);}
.m94_c00227{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m62_c00227{transform:matrix(0.264850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264850,0.000000,0.000000,0.250000,0,0);}
.m98_c00227{transform:matrix(0.264886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264886,0.000000,0.000000,0.250000,0,0);}
.m41_c00227{transform:matrix(0.266097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266097,0.000000,0.000000,0.250000,0,0);}
.m7_c00227{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m12_c00227{transform:matrix(0.267205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267205,0.000000,0.000000,0.250000,0,0);}
.m32_c00227{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.mca_c00227{transform:matrix(0.268088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268088,0.000000,0.000000,0.250000,0,0);}
.m2_c00227{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.mb2_c00227{transform:matrix(0.269485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269485,0.000000,0.000000,0.250000,0,0);}
.m8b_c00227{transform:matrix(0.270009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270009,0.000000,0.000000,0.250000,0,0);}
.m8a_c00227{transform:matrix(0.270687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270687,0.000000,0.000000,0.250000,0,0);}
.m7c_c00227{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m40_c00227{transform:matrix(0.270973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270973,0.000000,0.000000,0.250000,0,0);}
.m9a_c00227{transform:matrix(0.270977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270977,0.000000,0.000000,0.250000,0,0);}
.mbc_c00227{transform:matrix(0.271514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271514,0.000000,0.000000,0.250000,0,0);}
.m67_c00227{transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);}
.m9b_c00227{transform:matrix(0.272607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272607,0.000000,0.000000,0.250000,0,0);}
.mc6_c00227{transform:matrix(0.273832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273832,0.000000,0.000000,0.250000,0,0);}
.m20_c00227{transform:matrix(0.274645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274645,0.000000,0.000000,0.250000,0,0);}
.m30_c00227{transform:matrix(0.274708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274708,0.000000,0.000000,0.250000,0,0);}
.m33_c00227{transform:matrix(0.275963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275963,0.000000,0.000000,0.250000,0,0);}
.m35_c00227{transform:matrix(0.276233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276233,0.000000,0.000000,0.250000,0,0);}
.ma6_c00227{transform:matrix(0.276600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276600,0.000000,0.000000,0.250000,0,0);}
.ma4_c00227{transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);}
.m4a_c00227{transform:matrix(0.277134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277134,0.000000,0.000000,0.250000,0,0);}
.mb5_c00227{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m89_c00227{transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);}
.m27_c00227{transform:matrix(0.278790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278790,0.000000,0.000000,0.250000,0,0);}
.ma_c00227{transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);}
.m19_c00227{transform:matrix(0.279653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279653,0.000000,0.000000,0.250000,0,0);}
.mba_c00227{transform:matrix(0.280329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280329,0.000000,0.000000,0.250000,0,0);}
.m5b_c00227{transform:matrix(0.280475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280475,0.000000,0.000000,0.250000,0,0);}
.ma3_c00227{transform:matrix(0.281782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281782,0.000000,0.000000,0.250000,0,0);}
.m6b_c00227{transform:matrix(0.281783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281783,0.000000,0.000000,0.250000,0,0);}
.mc9_c00227{transform:matrix(0.282018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282018,0.000000,0.000000,0.250000,0,0);}
.m69_c00227{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m53_c00227{transform:matrix(0.283664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283664,0.000000,0.000000,0.250000,0,0);}
.m72_c00227{transform:matrix(0.284946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284946,0.000000,0.000000,0.250000,0,0);}
.m96_c00227{transform:matrix(0.285147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285147,0.000000,0.000000,0.250000,0,0);}
.ma7_c00227{transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);}
.m44_c00227{transform:matrix(0.287365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287365,0.000000,0.000000,0.250000,0,0);}
.maa_c00227{transform:matrix(0.287434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287434,0.000000,0.000000,0.250000,0,0);}
.m4d_c00227{transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);}
.m38_c00227{transform:matrix(0.289371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289371,0.000000,0.000000,0.250000,0,0);}
.m3c_c00227{transform:matrix(0.289652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289652,0.000000,0.000000,0.250000,0,0);}
.m25_c00227{transform:matrix(0.289872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289872,0.000000,0.000000,0.250000,0,0);}
.mc5_c00227{transform:matrix(0.289935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289935,0.000000,0.000000,0.250000,0,0);}
.m2b_c00227{transform:matrix(0.290155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290155,0.000000,0.000000,0.250000,0,0);}
.mc8_c00227{transform:matrix(0.290223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290223,0.000000,0.000000,0.250000,0,0);}
.m3e_c00227{transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);}
.m1f_c00227{transform:matrix(0.291226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291226,0.000000,0.000000,0.250000,0,0);}
.m45_c00227{transform:matrix(0.291242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291242,0.000000,0.000000,0.250000,0,0);}
.m58_c00227{transform:matrix(0.291532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291532,0.000000,0.000000,0.250000,0,0);}
.m8e_c00227{transform:matrix(0.291795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291795,0.000000,0.000000,0.250000,0,0);}
.m84_c00227{transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);}
.m13_c00227{transform:matrix(0.291905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291905,0.000000,0.000000,0.250000,0,0);}
.m1_c00227{transform:matrix(0.292357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292357,0.000000,0.000000,0.250000,0,0);}
.m80_c00227{transform:matrix(0.292701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292701,0.000000,0.000000,0.250000,0,0);}
.m24_c00227{transform:matrix(0.292876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292876,0.000000,0.000000,0.250000,0,0);}
.m3a_c00227{transform:matrix(0.293069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293069,0.000000,0.000000,0.250000,0,0);}
.m51_c00227{transform:matrix(0.294391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294391,0.000000,0.000000,0.250000,0,0);}
.m85_c00227{transform:matrix(0.294733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294733,0.000000,0.000000,0.250000,0,0);}
.m2f_c00227{transform:matrix(0.295060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295060,0.000000,0.000000,0.250000,0,0);}
.m6d_c00227{transform:matrix(0.296274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296274,0.000000,0.000000,0.250000,0,0);}
.m42_c00227{transform:matrix(0.296755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296755,0.000000,0.000000,0.250000,0,0);}
.m86_c00227{transform:matrix(0.296805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296805,0.000000,0.000000,0.250000,0,0);}
.m2d_c00227{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m43_c00227{transform:matrix(0.297533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297533,0.000000,0.000000,0.250000,0,0);}
.mb3_c00227{transform:matrix(0.297646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297646,0.000000,0.000000,0.250000,0,0);}
.maf_c00227{transform:matrix(0.297799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297799,0.000000,0.000000,0.250000,0,0);}
.m6c_c00227{transform:matrix(0.298170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298170,0.000000,0.000000,0.250000,0,0);}
.m9e_c00227{transform:matrix(0.298595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298595,0.000000,0.000000,0.250000,0,0);}
.m5d_c00227{transform:matrix(0.298632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298632,0.000000,0.000000,0.250000,0,0);}
.m1a_c00227{transform:matrix(0.299763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299763,0.000000,0.000000,0.250000,0,0);}
.ma8_c00227{transform:matrix(0.299862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299862,0.000000,0.000000,0.250000,0,0);}
.mbf_c00227{transform:matrix(0.300181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300181,0.000000,0.000000,0.250000,0,0);}
.m9c_c00227{transform:matrix(0.300336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300336,0.000000,0.000000,0.250000,0,0);}
.m6f_c00227{transform:matrix(0.300516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300516,0.000000,0.000000,0.250000,0,0);}
.m16_c00227{transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);}
.m7d_c00227{transform:matrix(0.301514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301514,0.000000,0.000000,0.250000,0,0);}
.mc0_c00227{transform:matrix(0.301927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301927,0.000000,0.000000,0.250000,0,0);}
.m48_c00227{transform:matrix(0.301977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301977,0.000000,0.000000,0.250000,0,0);}
.m6e_c00227{transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);}
.mb4_c00227{transform:matrix(0.302713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302713,0.000000,0.000000,0.250000,0,0);}
.m78_c00227{transform:matrix(0.302966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302966,0.000000,0.000000,0.250000,0,0);}
.ma2_c00227{transform:matrix(0.302994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302994,0.000000,0.000000,0.250000,0,0);}
.m60_c00227{transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);}
.mcb_c00227{transform:matrix(0.303707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303707,0.000000,0.000000,0.250000,0,0);}
.ma1_c00227{transform:matrix(0.303931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303931,0.000000,0.000000,0.250000,0,0);}
.mbe_c00227{transform:matrix(0.303979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303979,0.000000,0.000000,0.250000,0,0);}
.m97_c00227{transform:matrix(0.304307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304307,0.000000,0.000000,0.250000,0,0);}
.m79_c00227{transform:matrix(0.304441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304441,0.000000,0.000000,0.250000,0,0);}
.m90_c00227{transform:matrix(0.304686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304686,0.000000,0.000000,0.250000,0,0);}
.md_c00227{transform:matrix(0.304775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304775,0.000000,0.000000,0.250000,0,0);}
.m70_c00227{transform:matrix(0.304819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304819,0.000000,0.000000,0.250000,0,0);}
.m95_c00227{transform:matrix(0.304958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304958,0.000000,0.000000,0.250000,0,0);}
.m55_c00227{transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);}
.m57_c00227{transform:matrix(0.305475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305475,0.000000,0.000000,0.250000,0,0);}
.mb_c00227{transform:matrix(0.306256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306256,0.000000,0.000000,0.250000,0,0);}
.m10_c00227{transform:matrix(0.306545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306545,0.000000,0.000000,0.250000,0,0);}
.mc7_c00227{transform:matrix(0.307567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307567,0.000000,0.000000,0.250000,0,0);}
.mc2_c00227{transform:matrix(0.307990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307990,0.000000,0.000000,0.250000,0,0);}
.m8f_c00227{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m7e_c00227{transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);}
.m63_c00227{transform:matrix(0.308869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308869,0.000000,0.000000,0.250000,0,0);}
.mc_c00227{transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);}
.m92_c00227{transform:matrix(0.309629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309629,0.000000,0.000000,0.250000,0,0);}
.m3f_c00227{transform:matrix(0.310202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310202,0.000000,0.000000,0.250000,0,0);}
.m2e_c00227{transform:matrix(0.310707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310707,0.000000,0.000000,0.250000,0,0);}
.m6a_c00227{transform:matrix(0.311202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311202,0.000000,0.000000,0.250000,0,0);}
.m34_c00227{transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);}
.m39_c00227{transform:matrix(0.312507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312507,0.000000,0.000000,0.250000,0,0);}
.ma9_c00227{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.mb0_c00227{transform:matrix(0.313434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313434,0.000000,0.000000,0.250000,0,0);}
.m56_c00227{transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);}
.m4c_c00227{transform:matrix(0.314011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314011,0.000000,0.000000,0.250000,0,0);}
.m5_c00227{transform:matrix(0.315578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315578,0.000000,0.000000,0.250000,0,0);}
.m5a_c00227{transform:matrix(0.317255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317255,0.000000,0.000000,0.250000,0,0);}
.m9d_c00227{transform:matrix(0.317369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317369,0.000000,0.000000,0.250000,0,0);}
.mb7_c00227{transform:matrix(0.318884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318884,0.000000,0.000000,0.250000,0,0);}
.m46_c00227{transform:matrix(0.318892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318892,0.000000,0.000000,0.250000,0,0);}
.m4_c00227{transform:matrix(0.318980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318980,0.000000,0.000000,0.250000,0,0);}
.mf_c00227{transform:matrix(0.319290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319290,0.000000,0.000000,0.250000,0,0);}
.m36_c00227{transform:matrix(0.319362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319362,0.000000,0.000000,0.250000,0,0);}
.m74_c00227{transform:matrix(0.319932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319932,0.000000,0.000000,0.250000,0,0);}
.m52_c00227{transform:matrix(0.320268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320268,0.000000,0.000000,0.250000,0,0);}
.m7f_c00227{transform:matrix(0.321107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321107,0.000000,0.000000,0.250000,0,0);}
.mcd_c00227{transform:matrix(0.323503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323503,0.000000,0.000000,0.250000,0,0);}
.m18_c00227{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.m9f_c00227{transform:matrix(0.323921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323921,0.000000,0.000000,0.250000,0,0);}
.m87_c00227{transform:matrix(0.324518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324518,0.000000,0.000000,0.250000,0,0);}
.m3d_c00227{transform:matrix(0.324559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324559,0.000000,0.000000,0.250000,0,0);}
.m61_c00227{transform:matrix(0.324775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324775,0.000000,0.000000,0.250000,0,0);}
.ma0_c00227{transform:matrix(0.324886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324886,0.000000,0.000000,0.250000,0,0);}
.m29_c00227{transform:matrix(0.325172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325172,0.000000,0.000000,0.250000,0,0);}
.m15_c00227{transform:matrix(0.325578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325578,0.000000,0.000000,0.250000,0,0);}
.m31_c00227{transform:matrix(0.325972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325972,0.000000,0.000000,0.250000,0,0);}
.m8c_c00227{transform:matrix(0.328660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328660,0.000000,0.000000,0.250000,0,0);}
.m8d_c00227{transform:matrix(0.329080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329080,0.000000,0.000000,0.250000,0,0);}
.m6_c00227{transform:matrix(0.330225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330225,0.000000,0.000000,0.250000,0,0);}
.m17_c00227{transform:matrix(0.330480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330480,0.000000,0.000000,0.250000,0,0);}
.m68_c00227{transform:matrix(0.330508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330508,0.000000,0.000000,0.250000,0,0);}
.mc4_c00227{transform:matrix(0.330638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330638,0.000000,0.000000,0.250000,0,0);}
.m1b_c00227{transform:matrix(0.331631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331631,0.000000,0.000000,0.250000,0,0);}
.m8_c00227{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m54_c00227{transform:matrix(0.334044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334044,0.000000,0.000000,0.250000,0,0);}
.m76_c00227{transform:matrix(0.336348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336348,0.000000,0.000000,0.250000,0,0);}
.m71_c00227{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.mae_c00227{transform:matrix(0.340814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340814,0.000000,0.000000,0.250000,0,0);}
.m99_c00227{transform:matrix(0.341749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341749,0.000000,0.000000,0.250000,0,0);}
.mab_c00227{transform:matrix(0.341953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341953,0.000000,0.000000,0.250000,0,0);}
.mc3_c00227{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.m66_c00227{transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);}
.m1e_c00227{transform:matrix(0.343551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343551,0.000000,0.000000,0.250000,0,0);}
.m7a_c00227{transform:matrix(0.344559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344559,0.000000,0.000000,0.250000,0,0);}
.m50_c00227{transform:matrix(0.345507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345507,0.000000,0.000000,0.250000,0,0);}
.m4e_c00227{transform:matrix(0.345799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345799,0.000000,0.000000,0.250000,0,0);}
.m5c_c00227{transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);}
.m93_c00227{transform:matrix(0.347434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347434,0.000000,0.000000,0.250000,0,0);}
.mb1_c00227{transform:matrix(0.348943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348943,0.000000,0.000000,0.250000,0,0);}
.m49_c00227{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m77_c00227{transform:matrix(0.353462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353462,0.000000,0.000000,0.250000,0,0);}
.m28_c00227{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m1d_c00227{transform:matrix(0.355345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355345,0.000000,0.000000,0.250000,0,0);}
.mac_c00227{transform:matrix(0.357520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357520,0.000000,0.000000,0.250000,0,0);}
.mce_c00227{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);}
.m4b_c00227{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.mad_c00227{transform:matrix(0.361600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361600,0.000000,0.000000,0.250000,0,0);}
.mbd_c00227{transform:matrix(0.362273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362273,0.000000,0.000000,0.250000,0,0);}
.m23_c00227{transform:matrix(0.364273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364273,0.000000,0.000000,0.250000,0,0);}
.m75_c00227{transform:matrix(0.365874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365874,0.000000,0.000000,0.250000,0,0);}
.mb9_c00227{transform:matrix(0.368506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368506,0.000000,0.000000,0.250000,0,0);}
.m11_c00227{transform:matrix(0.385852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385852,0.000000,0.000000,0.250000,0,0);}
.m2c_c00227{transform:matrix(0.396487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396487,0.000000,0.000000,0.250000,0,0);}
.m5f_c00227{transform:matrix(0.437230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437230,0.000000,0.000000,0.250000,0,0);}
.v0_c00227{vertical-align:0.000000px;}
.lsa_c00227{letter-spacing:-2.744280px;}
.ls13_c00227{letter-spacing:-2.399285px;}
.ls11_c00227{letter-spacing:-1.580040px;}
.ls16_c00227{letter-spacing:-0.180338px;}
.ls7_c00227{letter-spacing:0.000000px;}
.ls5_c00227{letter-spacing:0.023522px;}
.lsd_c00227{letter-spacing:0.533174px;}
.lsc_c00227{letter-spacing:0.705672px;}
.ls6_c00227{letter-spacing:1.246687px;}
.ls14_c00227{letter-spacing:1.819066px;}
.lsf_c00227{letter-spacing:2.132698px;}
.ls3_c00227{letter-spacing:2.305195px;}
.ls10_c00227{letter-spacing:3.112798px;}
.ls15_c00227{letter-spacing:3.227400px;}
.lse_c00227{letter-spacing:3.316500px;}
.ls0_c00227{letter-spacing:3.520519px;}
.ls2_c00227{letter-spacing:3.614609px;}
.ls8_c00227{letter-spacing:3.702610px;}
.ls9_c00227{letter-spacing:3.920400px;}
.lsb_c00227{letter-spacing:4.257000px;}
.ls1_c00227{letter-spacing:7.997616px;}
.ls4_c00227{letter-spacing:10.663488px;}
.ls12_c00227{letter-spacing:47.044800px;}
.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:-23.122519px;}
.ws3_c00227{word-spacing:-20.307672px;}
.ws5_c00227{word-spacing:-19.625522px;}
.ws0_c00227{word-spacing:-19.602000px;}
.ws6_c00227{word-spacing:-0.705672px;}
.ws7_c00227{word-spacing:0.000000px;}
.ws1_c00227{word-spacing:1.176120px;}
.ws4_c00227{word-spacing:1.254528px;}
._a_c00227{margin-left:-14.583888px;}
._1_c00227{margin-left:-13.094136px;}
._9_c00227{margin-left:-10.193436px;}
._12_c00227{margin-left:-8.078796px;}
._11_c00227{margin-left:-2.679732px;}
._0_c00227{width:5.253336px;}
._2_c00227{width:6.554909px;}
._8_c00227{width:7.793755px;}
._17_c00227{width:9.095328px;}
._3_c00227{width:10.506672px;}
._6_c00227{width:13.328568px;}
._10_c00227{width:15.760008px;}
._b_c00227{width:20.856528px;}
._5_c00227{width:22.267476px;}
._13_c00227{width:23.679216px;}
._d_c00227{width:28.023019px;}
._15_c00227{width:30.130848px;}
._c_c00227{width:33.950664px;}
._e_c00227{width:35.283600px;}
._4_c00227{width:36.459720px;}
._7_c00227{width:38.373271px;}
._16_c00227{width:42.764040px;}
._f_c00227{width:45.680501px;}
._14_c00227{width:239.439706px;}
.fc0_c00227{color:transparent;}
.fsa_c00227{font-size:13.464198px;}
.fs0_c00227{font-size:22.176000px;}
.fsd_c00227{font-size:22.572000px;}
.fsf_c00227{font-size:27.720000px;}
.fs4_c00227{font-size:28.314000px;}
.fs5_c00227{font-size:33.660000px;}
.fs7_c00227{font-size:37.224000px;}
.fs8_c00227{font-size:39.600000px;}
.fs9_c00227{font-size:45.144000px;}
.fsb_c00227{font-size:47.044800px;}
.fsc_c00227{font-size:62.568000px;}
.fse_c00227{font-size:64.548000px;}
.fs6_c00227{font-size:66.330000px;}
.fs1_c00227{font-size:74.052198px;}
.fs2_c00227{font-size:78.408000px;}
.fs3_c00227{font-size:85.140000px;}
.y0_c00227{bottom:0.000000px;}
.y28_c00227{bottom:38.398185px;}
.y1_c00227{bottom:76.500000px;}
.y27_c00227{bottom:141.759135px;}
.y26_c00227{bottom:170.983935px;}
.y25_c00227{bottom:206.267535px;}
.y24_c00227{bottom:239.769135px;}
.y23_c00227{bottom:272.557935px;}
.y22_c00227{bottom:286.808985px;}
.y21_c00227{bottom:304.628985px;}
.y20_c00227{bottom:336.704985px;}
.y1f_c00227{bottom:368.785935px;}
.y1e_c00227{bottom:400.500585px;}
.y1d_c00227{bottom:430.443135px;}
.y1b_c00227{bottom:433.650735px;}
.y1c_c00227{bottom:447.550335px;}
.y1a_c00227{bottom:462.157785px;}
.y18_c00227{bottom:465.370335px;}
.y19_c00227{bottom:465.721785px;}
.y17_c00227{bottom:480.690585px;}
.y16_c00227{bottom:497.797785px;}
.y15_c00227{bottom:525.958335px;}
.y13_c00227{bottom:529.517385px;}
.y14_c00227{bottom:530.235135px;}
.y12_c00227{bottom:544.486185px;}
.y11_c00227{bottom:563.023935px;}
.yf_c00227{bottom:595.087560px;}
.y10_c00227{bottom:595.094985px;}
.ye_c00227{bottom:627.175935px;}
.yd_c00227{bottom:659.964735px;}
.yc_c00227{bottom:693.104985px;}
.yb_c00227{bottom:725.185935px;}
.ya_c00227{bottom:757.974735px;}
.y9_c00227{bottom:794.683935px;}
.y8_c00227{bottom:802.524735px;}
.y7_c00227{bottom:821.770335px;}
.y6_c00227{bottom:854.559135px;}
.y5_c00227{bottom:886.991535px;}
.y4_c00227{bottom:919.780335px;}
.y2_c00227{bottom:1047.727935px;}
.y3_c00227{bottom:1079.086185px;}
.hb_c00227{height:14.042738px;}
.h2_c00227{height:23.128875px;}
.he_c00227{height:23.541891px;}
.h10_c00227{height:28.911094px;}
.h6_c00227{height:29.530617px;}
.hc_c00227{height:31.331837px;}
.h7_c00227{height:33.035449px;}
.h9_c00227{height:41.301563px;}
.ha_c00227{height:47.083781px;}
.hd_c00227{height:65.256469px;}
.hf_c00227{height:67.321547px;}
.h8_c00227{height:69.180117px;}
.h3_c00227{height:72.678183px;}
.h4_c00227{height:76.953164px;}
.h5_c00227{height:85.805156px;}
.h1_c00227{height:1110.000000px;}
.h0_c00227{height:1263.000000px;}
.w1_c00227{width:751.500000px;}
.w0_c00227{width:892.500000px;}
.x0_c00227{left:0.000000px;}
.x2_c00227{left:60.786435px;}
.x1_c00227{left:70.500000px;}
.x4_c00227{left:71.706135px;}
.x69_c00227{left:73.146585px;}
.x57_c00227{left:82.695135px;}
.x63_c00227{left:83.764335px;}
.x13_c00227{left:105.133485px;}
.x5a_c00227{left:106.242285px;}
.x46_c00227{left:115.424535px;}
.x5_c00227{left:116.607585px;}
.x64_c00227{left:117.622335px;}
.x14_c00227{left:126.760035px;}
.x5b_c00227{left:127.938135px;}
.x6c_c00227{left:129.066735px;}
.x26_c00227{left:138.006435px;}
.x50_c00227{left:140.214135px;}
.x6_c00227{left:147.782685px;}
.x5e_c00227{left:149.440935px;}
.x1e_c00227{left:158.836035px;}
.x42_c00227{left:160.316085px;}
.x5c_c00227{left:169.924035px;}
.x15_c00227{left:170.943735px;}
.x51_c00227{left:182.155485px;}
.x7_c00227{left:193.258335px;}
.x16_c00227{left:204.648285px;}
.x54_c00227{left:211.682235px;}
.x39_c00227{left:215.340285px;}
.x6d_c00227{left:216.760935px;}
.x3f_c00227{left:225.552135px;}
.x8_c00227{left:227.388585px;}
.x71_c00227{left:230.051685px;}
.x17_c00227{left:237.669735px;}
.x65_c00227{left:238.872585px;}
.x33_c00227{left:248.485485px;}
.x58_c00227{left:250.222935px;}
.x1f_c00227{left:260.207085px;}
.x3a_c00227{left:269.676435px;}
.x40_c00227{left:271.111935px;}
.x66_c00227{left:272.507835px;}
.x9_c00227{left:282.303885px;}
.x18_c00227{left:293.431485px;}
.xa_c00227{left:303.663135px;}
.x67_c00227{left:305.509485px;}
.x2c_c00227{left:315.112485px;}
.x6a_c00227{left:316.161885px;}
.x41_c00227{left:325.274835px;}
.x52_c00227{left:326.393535px;}
.x34_c00227{left:337.585485px;}
.x27_c00227{left:347.921085px;}
.xb_c00227{left:349.326885px;}
.x35_c00227{left:358.934835px;}
.x19_c00227{left:370.507935px;}
.x20_c00227{left:381.759285px;}
.xc_c00227{left:382.769085px;}
.x4a_c00227{left:393.104685px;}
.x53_c00227{left:399.668385px;}
.x21_c00227{left:403.638285px;}
.x5d_c00227{left:404.761935px;}
.xd_c00227{left:414.929235px;}
.x6e_c00227{left:415.943985px;}
.x1a_c00227{left:425.492535px;}
.x2d_c00227{left:437.332935px;}
.x3b_c00227{left:448.104135px;}
.xe_c00227{left:459.439635px;}
.x49_c00227{left:461.736435px;}
.x2e_c00227{left:469.453485px;}
.x6f_c00227{left:471.601785px;}
.x3c_c00227{left:480.313785px;}
.x1b_c00227{left:481.848285px;}
.x6b_c00227{left:482.986785px;}
.x60_c00227{left:489.971235px;}
.x28_c00227{left:492.139335px;}
.xf_c00227{left:493.272885px;}
.x22_c00227{left:503.346135px;}
.x2f_c00227{left:504.360885px;}
.x47_c00227{left:513.454035px;}
.x30_c00227{left:514.587585px;}
.x36_c00227{left:525.413235px;}
.x61_c00227{left:526.437885px;}
.x70_c00227{left:528.506985px;}
.x3d_c00227{left:536.100285px;}
.x55_c00227{left:537.402135px;}
.x31_c00227{left:547.455585px;}
.x1c_c00227{left:558.538635px;}
.x4e_c00227{left:559.568235px;}
.x3e_c00227{left:568.022835px;}
.x23_c00227{left:569.403885px;}
.x48_c00227{left:579.021735px;}
.x37_c00227{left:580.279035px;}
.x62_c00227{left:581.363085px;}
.x29_c00227{left:583.085685px;}
.x10_c00227{left:591.347235px;}
.x4b_c00227{left:601.856085px;}
.x1d_c00227{left:603.088635px;}
.x4c_c00227{left:613.572735px;}
.x4d_c00227{left:617.671335px;}
.x24_c00227{left:624.487485px;}
.x11_c00227{left:636.243735px;}
.x32_c00227{left:646.901085px;}
.x25_c00227{left:656.716935px;}
.x3_c00227{left:658.647435px;}
.x56_c00227{left:659.751285px;}
.x38_c00227{left:667.458435px;}
.x43_c00227{left:668.483085px;}
.x4f_c00227{left:670.086885px;}
.x12_c00227{left:679.536435px;}
.x59_c00227{left:681.016485px;}
.x68_c00227{left:690.946185px;}
.x45_c00227{left:692.168835px;}
.x2a_c00227{left:697.584135px;}
.x2b_c00227{left:699.049335px;}
.x44_c00227{left:715.161585px;}
.x5f_c00227{left:724.606185px;}
@media print{
.v0_c00227{vertical-align:0.000000pt;}
.lsa_c00227{letter-spacing:-2.439360pt;}
.ls13_c00227{letter-spacing:-2.132698pt;}
.ls11_c00227{letter-spacing:-1.404480pt;}
.ls16_c00227{letter-spacing:-0.160301pt;}
.ls7_c00227{letter-spacing:0.000000pt;}
.ls5_c00227{letter-spacing:0.020909pt;}
.lsd_c00227{letter-spacing:0.473933pt;}
.lsc_c00227{letter-spacing:0.627264pt;}
.ls6_c00227{letter-spacing:1.108166pt;}
.ls14_c00227{letter-spacing:1.616947pt;}
.lsf_c00227{letter-spacing:1.895731pt;}
.ls3_c00227{letter-spacing:2.049062pt;}
.ls10_c00227{letter-spacing:2.766931pt;}
.ls15_c00227{letter-spacing:2.868800pt;}
.lse_c00227{letter-spacing:2.948000pt;}
.ls0_c00227{letter-spacing:3.129350pt;}
.ls2_c00227{letter-spacing:3.212986pt;}
.ls8_c00227{letter-spacing:3.291209pt;}
.ls9_c00227{letter-spacing:3.484800pt;}
.lsb_c00227{letter-spacing:3.784000pt;}
.ls1_c00227{letter-spacing:7.108992pt;}
.ls4_c00227{letter-spacing:9.478656pt;}
.ls12_c00227{letter-spacing:41.817600pt;}
.ws2_c00227{word-spacing:-20.553350pt;}
.ws3_c00227{word-spacing:-18.051264pt;}
.ws5_c00227{word-spacing:-17.444909pt;}
.ws0_c00227{word-spacing:-17.424000pt;}
.ws6_c00227{word-spacing:-0.627264pt;}
.ws7_c00227{word-spacing:0.000000pt;}
.ws1_c00227{word-spacing:1.045440pt;}
.ws4_c00227{word-spacing:1.115136pt;}
._a_c00227{margin-left:-12.963456pt;}
._1_c00227{margin-left:-11.639232pt;}
._9_c00227{margin-left:-9.060832pt;}
._12_c00227{margin-left:-7.181152pt;}
._11_c00227{margin-left:-2.381984pt;}
._0_c00227{width:4.669632pt;}
._2_c00227{width:5.826586pt;}
._8_c00227{width:6.927782pt;}
._17_c00227{width:8.084736pt;}
._3_c00227{width:9.339264pt;}
._6_c00227{width:11.847616pt;}
._10_c00227{width:14.008896pt;}
._b_c00227{width:18.539136pt;}
._5_c00227{width:19.793312pt;}
._13_c00227{width:21.048192pt;}
._d_c00227{width:24.909350pt;}
._15_c00227{width:26.782976pt;}
._c_c00227{width:30.178368pt;}
._e_c00227{width:31.363200pt;}
._4_c00227{width:32.408640pt;}
._7_c00227{width:34.109574pt;}
._16_c00227{width:38.012480pt;}
._f_c00227{width:40.604890pt;}
._14_c00227{width:212.835294pt;}
.fsa_c00227{font-size:11.968176pt;}
.fs0_c00227{font-size:19.712000pt;}
.fsd_c00227{font-size:20.064000pt;}
.fsf_c00227{font-size:24.640000pt;}
.fs4_c00227{font-size:25.168000pt;}
.fs5_c00227{font-size:29.920000pt;}
.fs7_c00227{font-size:33.088000pt;}
.fs8_c00227{font-size:35.200000pt;}
.fs9_c00227{font-size:40.128000pt;}
.fsb_c00227{font-size:41.817600pt;}
.fsc_c00227{font-size:55.616000pt;}
.fse_c00227{font-size:57.376000pt;}
.fs6_c00227{font-size:58.960000pt;}
.fs1_c00227{font-size:65.824176pt;}
.fs2_c00227{font-size:69.696000pt;}
.fs3_c00227{font-size:75.680000pt;}
.y0_c00227{bottom:0.000000pt;}
.y28_c00227{bottom:34.131720pt;}
.y1_c00227{bottom:68.000000pt;}
.y27_c00227{bottom:126.008120pt;}
.y26_c00227{bottom:151.985720pt;}
.y25_c00227{bottom:183.348920pt;}
.y24_c00227{bottom:213.128120pt;}
.y23_c00227{bottom:242.273720pt;}
.y22_c00227{bottom:254.941320pt;}
.y21_c00227{bottom:270.781320pt;}
.y20_c00227{bottom:299.293320pt;}
.y1f_c00227{bottom:327.809720pt;}
.y1e_c00227{bottom:356.000520pt;}
.y1d_c00227{bottom:382.616120pt;}
.y1b_c00227{bottom:385.467320pt;}
.y1c_c00227{bottom:397.822520pt;}
.y1a_c00227{bottom:410.806920pt;}
.y18_c00227{bottom:413.662520pt;}
.y19_c00227{bottom:413.974920pt;}
.y17_c00227{bottom:427.280520pt;}
.y16_c00227{bottom:442.486920pt;}
.y15_c00227{bottom:467.518520pt;}
.y13_c00227{bottom:470.682120pt;}
.y14_c00227{bottom:471.320120pt;}
.y12_c00227{bottom:483.987720pt;}
.y11_c00227{bottom:500.465720pt;}
.yf_c00227{bottom:528.966720pt;}
.y10_c00227{bottom:528.973320pt;}
.ye_c00227{bottom:557.489720pt;}
.yd_c00227{bottom:586.635320pt;}
.yc_c00227{bottom:616.093320pt;}
.yb_c00227{bottom:644.609720pt;}
.ya_c00227{bottom:673.755320pt;}
.y9_c00227{bottom:706.385720pt;}
.y8_c00227{bottom:713.355320pt;}
.y7_c00227{bottom:730.462520pt;}
.y6_c00227{bottom:759.608120pt;}
.y5_c00227{bottom:788.436920pt;}
.y4_c00227{bottom:817.582520pt;}
.y2_c00227{bottom:931.313720pt;}
.y3_c00227{bottom:959.187720pt;}
.hb_c00227{height:12.482434pt;}
.h2_c00227{height:20.559000pt;}
.he_c00227{height:20.926125pt;}
.h10_c00227{height:25.698750pt;}
.h6_c00227{height:26.249438pt;}
.hc_c00227{height:27.850522pt;}
.h7_c00227{height:29.364844pt;}
.h9_c00227{height:36.712500pt;}
.ha_c00227{height:41.852250pt;}
.hd_c00227{height:58.005750pt;}
.hf_c00227{height:59.841375pt;}
.h8_c00227{height:61.493438pt;}
.h3_c00227{height:64.602829pt;}
.h4_c00227{height:68.402813pt;}
.h5_c00227{height:76.271250pt;}
.h1_c00227{height:986.666667pt;}
.h0_c00227{height:1122.666667pt;}
.w1_c00227{width:668.000000pt;}
.w0_c00227{width:793.333333pt;}
.x0_c00227{left:0.000000pt;}
.x2_c00227{left:54.032387pt;}
.x1_c00227{left:62.666667pt;}
.x4_c00227{left:63.738787pt;}
.x69_c00227{left:65.019187pt;}
.x57_c00227{left:73.506787pt;}
.x63_c00227{left:74.457187pt;}
.x13_c00227{left:93.451987pt;}
.x5a_c00227{left:94.437587pt;}
.x46_c00227{left:102.599587pt;}
.x5_c00227{left:103.651187pt;}
.x64_c00227{left:104.553187pt;}
.x14_c00227{left:112.675587pt;}
.x5b_c00227{left:113.722787pt;}
.x6c_c00227{left:114.725987pt;}
.x26_c00227{left:122.672387pt;}
.x50_c00227{left:124.634787pt;}
.x6_c00227{left:131.362387pt;}
.x5e_c00227{left:132.836387pt;}
.x1e_c00227{left:141.187587pt;}
.x42_c00227{left:142.503187pt;}
.x5c_c00227{left:151.043587pt;}
.x15_c00227{left:151.949987pt;}
.x51_c00227{left:161.915987pt;}
.x7_c00227{left:171.785187pt;}
.x16_c00227{left:181.909587pt;}
.x54_c00227{left:188.161987pt;}
.x39_c00227{left:191.413587pt;}
.x6d_c00227{left:192.676387pt;}
.x3f_c00227{left:200.490787pt;}
.x8_c00227{left:202.123187pt;}
.x71_c00227{left:204.490387pt;}
.x17_c00227{left:211.261987pt;}
.x65_c00227{left:212.331187pt;}
.x33_c00227{left:220.875987pt;}
.x58_c00227{left:222.420387pt;}
.x1f_c00227{left:231.295187pt;}
.x3a_c00227{left:239.712387pt;}
.x40_c00227{left:240.988387pt;}
.x66_c00227{left:242.229187pt;}
.x9_c00227{left:250.936787pt;}
.x18_c00227{left:260.827987pt;}
.xa_c00227{left:269.922787pt;}
.x67_c00227{left:271.563987pt;}
.x2c_c00227{left:280.099987pt;}
.x6a_c00227{left:281.032787pt;}
.x41_c00227{left:289.133187pt;}
.x52_c00227{left:290.127587pt;}
.x34_c00227{left:300.075987pt;}
.x27_c00227{left:309.263187pt;}
.xb_c00227{left:310.512787pt;}
.x35_c00227{left:319.053187pt;}
.x19_c00227{left:329.340387pt;}
.x20_c00227{left:339.341587pt;}
.xc_c00227{left:340.239187pt;}
.x4a_c00227{left:349.426387pt;}
.x53_c00227{left:355.260787pt;}
.x21_c00227{left:358.789587pt;}
.x5d_c00227{left:359.788387pt;}
.xd_c00227{left:368.825987pt;}
.x6e_c00227{left:369.727987pt;}
.x1a_c00227{left:378.215587pt;}
.x2d_c00227{left:388.740387pt;}
.x3b_c00227{left:398.314787pt;}
.xe_c00227{left:408.390787pt;}
.x49_c00227{left:410.432387pt;}
.x2e_c00227{left:417.291987pt;}
.x6f_c00227{left:419.201587pt;}
.x3c_c00227{left:426.945587pt;}
.x1b_c00227{left:428.309587pt;}
.x6b_c00227{left:429.321587pt;}
.x60_c00227{left:435.529987pt;}
.x28_c00227{left:437.457187pt;}
.xf_c00227{left:438.464787pt;}
.x22_c00227{left:447.418787pt;}
.x2f_c00227{left:448.320787pt;}
.x47_c00227{left:456.403587pt;}
.x30_c00227{left:457.411187pt;}
.x36_c00227{left:467.033987pt;}
.x61_c00227{left:467.944787pt;}
.x70_c00227{left:469.783987pt;}
.x3d_c00227{left:476.533587pt;}
.x55_c00227{left:477.690787pt;}
.x31_c00227{left:486.627187pt;}
.x1c_c00227{left:496.478787pt;}
.x4e_c00227{left:497.393987pt;}
.x3e_c00227{left:504.909187pt;}
.x23_c00227{left:506.136787pt;}
.x48_c00227{left:514.685987pt;}
.x37_c00227{left:515.803587pt;}
.x62_c00227{left:516.767187pt;}
.x29_c00227{left:518.298387pt;}
.x10_c00227{left:525.641987pt;}
.x4b_c00227{left:534.983187pt;}
.x1d_c00227{left:536.078787pt;}
.x4c_c00227{left:545.397987pt;}
.x4d_c00227{left:549.041187pt;}
.x24_c00227{left:555.099987pt;}
.x11_c00227{left:565.549987pt;}
.x32_c00227{left:575.023187pt;}
.x25_c00227{left:583.748387pt;}
.x3_c00227{left:585.464387pt;}
.x56_c00227{left:586.445587pt;}
.x38_c00227{left:593.296387pt;}
.x43_c00227{left:594.207187pt;}
.x4f_c00227{left:595.632787pt;}
.x12_c00227{left:604.032387pt;}
.x59_c00227{left:605.347987pt;}
.x68_c00227{left:614.174387pt;}
.x45_c00227{left:615.261187pt;}
.x2a_c00227{left:620.074787pt;}
.x2b_c00227{left:621.377187pt;}
.x44_c00227{left:635.699187pt;}
.x5f_c00227{left:644.094387pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8691ad06b1eec8a54a6f3a7e.woff2')format("woff");}.ff1_c00228{font-family:ff1_c00228;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00228;src:url('chunks/assets/font_e4d2f85d6b5b427df0268ba3.woff2')format("woff");}.ff2_c00228{font-family:ff2_c00228;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00228;src:url('chunks/assets/font_ddf978b54c826fd425adc37c.woff2')format("woff");}.ff3_c00228{font-family:ff3_c00228;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00228;src:url('chunks/assets/font_d7a8bec137d6d37444efa2c9.woff2')format("woff");}.ff4_c00228{font-family:ff4_c00228;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4b_c00228{transform:matrix(0.048215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048215,0.000000,0.000000,0.250000,0,0);}
.m21_c00228{transform:matrix(0.070513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070513,0.000000,0.000000,0.250000,0,0);}
.m4d_c00228{transform:matrix(0.142858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142858,0.000000,0.000000,0.250000,0,0);}
.m62_c00228{transform:matrix(0.143980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143980,0.000000,0.000000,0.250000,0,0);}
.m1f_c00228{transform:matrix(0.179487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179487,0.000000,0.000000,0.250000,0,0);}
.m7a_c00228{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.mb6_c00228{transform:matrix(0.190972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190972,0.000000,0.000000,0.250000,0,0);}
.m7b_c00228{transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);}
.m20_c00228{transform:matrix(0.197436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197436,0.000000,0.000000,0.250000,0,0);}
.m4a_c00228{transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);}
.m7e_c00228{transform:matrix(0.206442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206442,0.000000,0.000000,0.250000,0,0);}
.mb5_c00228{transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);}
.m9e_c00228{transform:matrix(0.219131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219131,0.000000,0.000000,0.250000,0,0);}
.m73_c00228{transform:matrix(0.221249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221249,0.000000,0.000000,0.250000,0,0);}
.m79_c00228{transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);}
.m6a_c00228{transform:matrix(0.224028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224028,0.000000,0.000000,0.250000,0,0);}
.m4c_c00228{transform:matrix(0.224285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224285,0.000000,0.000000,0.250000,0,0);}
.m71_c00228{transform:matrix(0.232318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232318,0.000000,0.000000,0.250000,0,0);}
.mbe_c00228{transform:matrix(0.233507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233507,0.000000,0.000000,0.250000,0,0);}
.mb8_c00228{transform:matrix(0.234126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234126,0.000000,0.000000,0.250000,0,0);}
.m16_c00228{transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);}
.m10_c00228{transform:matrix(0.249276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249276,0.000000,0.000000,0.250000,0,0);}
.m3c_c00228{transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);}
.m2_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);}
.m60_c00228{transform:matrix(0.250611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250611,0.000000,0.000000,0.250000,0,0);}
.m94_c00228{transform:matrix(0.252083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252083,0.000000,0.000000,0.250000,0,0);}
.mb0_c00228{transform:matrix(0.252232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252232,0.000000,0.000000,0.250000,0,0);}
.mc8_c00228{transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);}
.m67_c00228{transform:matrix(0.254205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254205,0.000000,0.000000,0.250000,0,0);}
.m53_c00228{transform:matrix(0.254272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254272,0.000000,0.000000,0.250000,0,0);}
.m91_c00228{transform:matrix(0.254582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254582,0.000000,0.000000,0.250000,0,0);}
.m3d_c00228{transform:matrix(0.254597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254597,0.000000,0.000000,0.250000,0,0);}
.m84_c00228{transform:matrix(0.254992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254992,0.000000,0.000000,0.250000,0,0);}
.m23_c00228{transform:matrix(0.255634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255634,0.000000,0.000000,0.250000,0,0);}
.m38_c00228{transform:matrix(0.256395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256395,0.000000,0.000000,0.250000,0,0);}
.mc1_c00228{transform:matrix(0.257151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257151,0.000000,0.000000,0.250000,0,0);}
.m95_c00228{transform:matrix(0.257917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257917,0.000000,0.000000,0.250000,0,0);}
.m80_c00228{transform:matrix(0.257970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257970,0.000000,0.000000,0.250000,0,0);}
.m35_c00228{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m1_c00228{transform:matrix(0.258979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258979,0.000000,0.000000,0.250000,0,0);}
.m7_c00228{transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);}
.ma8_c00228{transform:matrix(0.259554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259554,0.000000,0.000000,0.250000,0,0);}
.m55_c00228{transform:matrix(0.259662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259662,0.000000,0.000000,0.250000,0,0);}
.maf_c00228{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m17_c00228{transform:matrix(0.261089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261089,0.000000,0.000000,0.250000,0,0);}
.m6e_c00228{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.mab_c00228{transform:matrix(0.261624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261624,0.000000,0.000000,0.250000,0,0);}
.m37_c00228{transform:matrix(0.261904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261904,0.000000,0.000000,0.250000,0,0);}
.m4f_c00228{transform:matrix(0.261993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261993,0.000000,0.000000,0.250000,0,0);}
.m9_c00228{transform:matrix(0.262552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262552,0.000000,0.000000,0.250000,0,0);}
.m69_c00228{transform:matrix(0.262634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262634,0.000000,0.000000,0.250000,0,0);}
.m42_c00228{transform:matrix(0.263211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263211,0.000000,0.000000,0.250000,0,0);}
.m11_c00228{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m40_c00228{transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);}
.m5e_c00228{transform:matrix(0.264403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264403,0.000000,0.000000,0.250000,0,0);}
.mb_c00228{transform:matrix(0.265600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265600,0.000000,0.000000,0.250000,0,0);}
.mb2_c00228{transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);}
.m83_c00228{transform:matrix(0.265757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265757,0.000000,0.000000,0.250000,0,0);}
.m86_c00228{transform:matrix(0.265816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265816,0.000000,0.000000,0.250000,0,0);}
.m1c_c00228{transform:matrix(0.266411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266411,0.000000,0.000000,0.250000,0,0);}
.m7d_c00228{transform:matrix(0.266988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266988,0.000000,0.000000,0.250000,0,0);}
.m30_c00228{transform:matrix(0.267526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267526,0.000000,0.000000,0.250000,0,0);}
.m5f_c00228{transform:matrix(0.267605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267605,0.000000,0.000000,0.250000,0,0);}
.m24_c00228{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m3e_c00228{transform:matrix(0.268484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268484,0.000000,0.000000,0.250000,0,0);}
.mbc_c00228{transform:matrix(0.268624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268624,0.000000,0.000000,0.250000,0,0);}
.m1a_c00228{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m6c_c00228{transform:matrix(0.270931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270931,0.000000,0.000000,0.250000,0,0);}
.m5c_c00228{transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);}
.m87_c00228{transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);}
.m49_c00228{transform:matrix(0.274522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274522,0.000000,0.000000,0.250000,0,0);}
.m7f_c00228{transform:matrix(0.275566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275566,0.000000,0.000000,0.250000,0,0);}
.m8e_c00228{transform:matrix(0.276189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276189,0.000000,0.000000,0.250000,0,0);}
.m3a_c00228{transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);}
.m56_c00228{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m2b_c00228{transform:matrix(0.277244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277244,0.000000,0.000000,0.250000,0,0);}
.m75_c00228{transform:matrix(0.277574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277574,0.000000,0.000000,0.250000,0,0);}
.ma6_c00228{transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);}
.m81_c00228{transform:matrix(0.278545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278545,0.000000,0.000000,0.250000,0,0);}
.mba_c00228{transform:matrix(0.278576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278576,0.000000,0.000000,0.250000,0,0);}
.m4_c00228{transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);}
.mf_c00228{transform:matrix(0.279850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279850,0.000000,0.000000,0.250000,0,0);}
.m8c_c00228{transform:matrix(0.280146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280146,0.000000,0.000000,0.250000,0,0);}
.m44_c00228{transform:matrix(0.280362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280362,0.000000,0.000000,0.250000,0,0);}
.mb4_c00228{transform:matrix(0.280679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280679,0.000000,0.000000,0.250000,0,0);}
.m15_c00228{transform:matrix(0.281452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281452,0.000000,0.000000,0.250000,0,0);}
.m25_c00228{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.m77_c00228{transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);}
.m9d_c00228{transform:matrix(0.282169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282169,0.000000,0.000000,0.250000,0,0);}
.m26_c00228{transform:matrix(0.282286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282286,0.000000,0.000000,0.250000,0,0);}
.m29_c00228{transform:matrix(0.282371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282371,0.000000,0.000000,0.250000,0,0);}
.m5a_c00228{transform:matrix(0.283314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283314,0.000000,0.000000,0.250000,0,0);}
.m4e_c00228{transform:matrix(0.283489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283489,0.000000,0.000000,0.250000,0,0);}
.m8d_c00228{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m19_c00228{transform:matrix(0.283756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283756,0.000000,0.000000,0.250000,0,0);}
.m89_c00228{transform:matrix(0.283950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283950,0.000000,0.000000,0.250000,0,0);}
.ma1_c00228{transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);}
.m45_c00228{transform:matrix(0.284537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284537,0.000000,0.000000,0.250000,0,0);}
.m72_c00228{transform:matrix(0.284766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284766,0.000000,0.000000,0.250000,0,0);}
.mad_c00228{transform:matrix(0.285047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285047,0.000000,0.000000,0.250000,0,0);}
.m93_c00228{transform:matrix(0.285568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285568,0.000000,0.000000,0.250000,0,0);}
.m2a_c00228{transform:matrix(0.285694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285694,0.000000,0.000000,0.250000,0,0);}
.m57_c00228{transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);}
.maa_c00228{transform:matrix(0.286238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286238,0.000000,0.000000,0.250000,0,0);}
.ma0_c00228{transform:matrix(0.287254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287254,0.000000,0.000000,0.250000,0,0);}
.m47_c00228{transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);}
.mb7_c00228{transform:matrix(0.288623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288623,0.000000,0.000000,0.250000,0,0);}
.m7c_c00228{transform:matrix(0.289287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289287,0.000000,0.000000,0.250000,0,0);}
.m96_c00228{transform:matrix(0.290219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290219,0.000000,0.000000,0.250000,0,0);}
.m78_c00228{transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);}
.m82_c00228{transform:matrix(0.290903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290903,0.000000,0.000000,0.250000,0,0);}
.m3_c00228{transform:matrix(0.291223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291223,0.000000,0.000000,0.250000,0,0);}
.mb3_c00228{transform:matrix(0.291302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291302,0.000000,0.000000,0.250000,0,0);}
.m27_c00228{transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);}
.m43_c00228{transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);}
.m14_c00228{transform:matrix(0.292795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292795,0.000000,0.000000,0.250000,0,0);}
.m48_c00228{transform:matrix(0.293486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293486,0.000000,0.000000,0.250000,0,0);}
.ma2_c00228{transform:matrix(0.295232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295232,0.000000,0.000000,0.250000,0,0);}
.m64_c00228{transform:matrix(0.295258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295258,0.000000,0.000000,0.250000,0,0);}
.m12_c00228{transform:matrix(0.295300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295300,0.000000,0.000000,0.250000,0,0);}
.m9c_c00228{transform:matrix(0.296378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296378,0.000000,0.000000,0.250000,0,0);}
.m92_c00228{transform:matrix(0.296672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296672,0.000000,0.000000,0.250000,0,0);}
.m18_c00228{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m6_c00228{transform:matrix(0.297207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297207,0.000000,0.000000,0.250000,0,0);}
.m46_c00228{transform:matrix(0.297370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297370,0.000000,0.000000,0.250000,0,0);}
.m31_c00228{transform:matrix(0.298265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298265,0.000000,0.000000,0.250000,0,0);}
.m8b_c00228{transform:matrix(0.300157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300157,0.000000,0.000000,0.250000,0,0);}
.ma3_c00228{transform:matrix(0.300360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300360,0.000000,0.000000,0.250000,0,0);}
.mc0_c00228{transform:matrix(0.301826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301826,0.000000,0.000000,0.250000,0,0);}
.m2e_c00228{transform:matrix(0.302297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302297,0.000000,0.000000,0.250000,0,0);}
.ma7_c00228{transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);}
.m3b_c00228{transform:matrix(0.302401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302401,0.000000,0.000000,0.250000,0,0);}
.mc4_c00228{transform:matrix(0.302588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302588,0.000000,0.000000,0.250000,0,0);}
.m1e_c00228{transform:matrix(0.302713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302713,0.000000,0.000000,0.250000,0,0);}
.m58_c00228{transform:matrix(0.304946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304946,0.000000,0.000000,0.250000,0,0);}
.m97_c00228{transform:matrix(0.304991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304991,0.000000,0.000000,0.250000,0,0);}
.m8_c00228{transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);}
.m9f_c00228{transform:matrix(0.307242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307242,0.000000,0.000000,0.250000,0,0);}
.m32_c00228{transform:matrix(0.308088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308088,0.000000,0.000000,0.250000,0,0);}
.m99_c00228{transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);}
.m88_c00228{transform:matrix(0.308720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308720,0.000000,0.000000,0.250000,0,0);}
.mc9_c00228{transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);}
.m74_c00228{transform:matrix(0.308970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308970,0.000000,0.000000,0.250000,0,0);}
.mc7_c00228{transform:matrix(0.309393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309393,0.000000,0.000000,0.250000,0,0);}
.m51_c00228{transform:matrix(0.310547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310547,0.000000,0.000000,0.250000,0,0);}
.mc2_c00228{transform:matrix(0.310877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310877,0.000000,0.000000,0.250000,0,0);}
.mc3_c00228{transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);}
.m65_c00228{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.m41_c00228{transform:matrix(0.312698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312698,0.000000,0.000000,0.250000,0,0);}
.ma4_c00228{transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);}
.m8a_c00228{transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);}
.m68_c00228{transform:matrix(0.314665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314665,0.000000,0.000000,0.250000,0,0);}
.m5_c00228{transform:matrix(0.315658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315658,0.000000,0.000000,0.250000,0,0);}
.m1d_c00228{transform:matrix(0.315717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315717,0.000000,0.000000,0.250000,0,0);}
.mca_c00228{transform:matrix(0.316206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316206,0.000000,0.000000,0.250000,0,0);}
.m66_c00228{transform:matrix(0.316482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316482,0.000000,0.000000,0.250000,0,0);}
.m0_c00228{transform:matrix(0.316621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316621,0.000000,0.000000,0.250000,0,0);}
.m6d_c00228{transform:matrix(0.316730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316730,0.000000,0.000000,0.250000,0,0);}
.m90_c00228{transform:matrix(0.317925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317925,0.000000,0.000000,0.250000,0,0);}
.m8f_c00228{transform:matrix(0.319831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319831,0.000000,0.000000,0.250000,0,0);}
.ma9_c00228{transform:matrix(0.322646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322646,0.000000,0.000000,0.250000,0,0);}
.m52_c00228{transform:matrix(0.322773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322773,0.000000,0.000000,0.250000,0,0);}
.md_c00228{transform:matrix(0.323416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323416,0.000000,0.000000,0.250000,0,0);}
.ma5_c00228{transform:matrix(0.324715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324715,0.000000,0.000000,0.250000,0,0);}
.mc_c00228{transform:matrix(0.324798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324798,0.000000,0.000000,0.250000,0,0);}
.m9b_c00228{transform:matrix(0.326848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326848,0.000000,0.000000,0.250000,0,0);}
.m54_c00228{transform:matrix(0.326992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326992,0.000000,0.000000,0.250000,0,0);}
.mb9_c00228{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m2f_c00228{transform:matrix(0.328074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328074,0.000000,0.000000,0.250000,0,0);}
.m22_c00228{transform:matrix(0.329405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329405,0.000000,0.000000,0.250000,0,0);}
.me_c00228{transform:matrix(0.330599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330599,0.000000,0.000000,0.250000,0,0);}
.mbb_c00228{transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);}
.m61_c00228{transform:matrix(0.331631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331631,0.000000,0.000000,0.250000,0,0);}
.m70_c00228{transform:matrix(0.333215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333215,0.000000,0.000000,0.250000,0,0);}
.m1b_c00228{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.mac_c00228{transform:matrix(0.333754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333754,0.000000,0.000000,0.250000,0,0);}
.m63_c00228{transform:matrix(0.335804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335804,0.000000,0.000000,0.250000,0,0);}
.m2c_c00228{transform:matrix(0.336348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336348,0.000000,0.000000,0.250000,0,0);}
.m34_c00228{transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);}
.m50_c00228{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.mb1_c00228{transform:matrix(0.339434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339434,0.000000,0.000000,0.250000,0,0);}
.mbf_c00228{transform:matrix(0.341020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341020,0.000000,0.000000,0.250000,0,0);}
.m5b_c00228{transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);}
.mae_c00228{transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);}
.m33_c00228{transform:matrix(0.343605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343605,0.000000,0.000000,0.250000,0,0);}
.mc5_c00228{transform:matrix(0.344852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344852,0.000000,0.000000,0.250000,0,0);}
.m6b_c00228{transform:matrix(0.346006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346006,0.000000,0.000000,0.250000,0,0);}
.m3f_c00228{transform:matrix(0.346277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346277,0.000000,0.000000,0.250000,0,0);}
.ma_c00228{transform:matrix(0.348761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348761,0.000000,0.000000,0.250000,0,0);}
.m9a_c00228{transform:matrix(0.348765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348765,0.000000,0.000000,0.250000,0,0);}
.m6f_c00228{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m5d_c00228{transform:matrix(0.349503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349503,0.000000,0.000000,0.250000,0,0);}
.m98_c00228{transform:matrix(0.350956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350956,0.000000,0.000000,0.250000,0,0);}
.m76_c00228{transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);}
.m36_c00228{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.mc6_c00228{transform:matrix(0.360335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360335,0.000000,0.000000,0.250000,0,0);}
.m59_c00228{transform:matrix(0.369566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369566,0.000000,0.000000,0.250000,0,0);}
.m28_c00228{transform:matrix(0.375836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375836,0.000000,0.000000,0.250000,0,0);}
.m2d_c00228{transform:matrix(0.388396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388396,0.000000,0.000000,0.250000,0,0);}
.m13_c00228{transform:matrix(0.404579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404579,0.000000,0.000000,0.250000,0,0);}
.mbd_c00228{transform:matrix(0.409469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409469,0.000000,0.000000,0.250000,0,0);}
.m85_c00228{transform:matrix(0.416907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416907,0.000000,0.000000,0.250000,0,0);}
.m39_c00228{transform:matrix(0.424628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424628,0.000000,0.000000,0.250000,0,0);}
.v0_c00228{vertical-align:0.000000px;}
.lsa_c00228{letter-spacing:-2.744280px;}
.ls16_c00228{letter-spacing:-2.399285px;}
.ls17_c00228{letter-spacing:-2.132698px;}
.lsf_c00228{letter-spacing:-1.772021px;}
.ls11_c00228{letter-spacing:-1.685772px;}
.ls14_c00228{letter-spacing:-0.964418px;}
.lsd_c00228{letter-spacing:-0.407722px;}
.ls8_c00228{letter-spacing:0.000000px;}
.ls13_c00228{letter-spacing:0.117850px;}
.ls3_c00228{letter-spacing:0.705672px;}
.ls6_c00228{letter-spacing:1.262369px;}
.ls12_c00228{letter-spacing:1.685772px;}
.ls1_c00228{letter-spacing:1.936678px;}
.ls10_c00228{letter-spacing:2.132698px;}
.lsc_c00228{letter-spacing:2.305195px;}
.ls4_c00228{letter-spacing:2.749428px;}
.ls15_c00228{letter-spacing:2.901096px;}
.ls18_c00228{letter-spacing:3.191206px;}
.ls19_c00228{letter-spacing:3.559723px;}
.ls7_c00228{letter-spacing:3.603610px;}
.ls1a_c00228{letter-spacing:3.643200px;}
.ls9_c00228{letter-spacing:3.920400px;}
.ls2_c00228{letter-spacing:22.267872px;}
.ls0_c00228{letter-spacing:22.582296px;}
.lse_c00228{letter-spacing:49.896198px;}
.ls5_c00228{letter-spacing:51.321798px;}
.lsb_c00228{letter-spacing:55.598598px;}
.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;}
}
.ws5_c00228{word-spacing:-89.813147px;}
.wsb_c00228{word-spacing:-23.161723px;}
.ws2_c00228{word-spacing:-21.538678px;}
.ws8_c00228{word-spacing:-20.864369px;}
.ws0_c00228{word-spacing:-19.602000px;}
.ws1_c00228{word-spacing:-19.194278px;}
.wsa_c00228{word-spacing:-17.469302px;}
.ws7_c00228{word-spacing:-4.156020px;}
.ws6_c00228{word-spacing:-2.195424px;}
.wsd_c00228{word-spacing:0.000000px;}
.wsc_c00228{word-spacing:0.627264px;}
.ws9_c00228{word-spacing:1.254528px;}
.ws4_c00228{word-spacing:3.797899px;}
.ws3_c00228{word-spacing:5.174928px;}
._1d_c00228{margin-left:-15.133536px;}
._1e_c00228{margin-left:-13.172544px;}
._1a_c00228{margin-left:-11.447568px;}
._13_c00228{margin-left:-5.331744px;}
._6_c00228{width:2.039400px;}
._18_c00228{width:3.451932px;}
._f_c00228{width:4.539269px;}
._8_c00228{width:6.271848px;}
._17_c00228{width:7.369956px;}
._0_c00228{width:8.546472px;}
._4_c00228{width:10.035828px;}
._1_c00228{width:11.290752px;}
._14_c00228{width:12.780504px;}
._9_c00228{width:14.035428px;}
._e_c00228{width:16.152840px;}
._a_c00228{width:20.855736px;}
._2_c00228{width:22.267872px;}
._1c_c00228{width:23.600808px;}
._12_c00228{width:25.011360px;}
._3_c00228{width:26.187480px;}
._16_c00228{width:27.992052px;}
._15_c00228{width:29.857687px;}
._10_c00228{width:31.200048px;}
._19_c00228{width:32.852556px;}
._7_c00228{width:34.107480px;}
._b_c00228{width:36.839088px;}
._c_c00228{width:38.184696px;}
._11_c00228{width:39.440016px;}
._5_c00228{width:41.524956px;}
._d_c00228{width:44.378928px;}
._1b_c00228{width:48.377736px;}
.fc0_c00228{color:transparent;}
.fs7_c00228{font-size:27.720000px;}
.fs3_c00228{font-size:49.896198px;}
.fs5_c00228{font-size:51.321798px;}
.fs2_c00228{font-size:55.598598px;}
.fs0_c00228{font-size:72.072198px;}
.fs6_c00228{font-size:72.864000px;}
.fs1_c00228{font-size:78.408000px;}
.fs4_c00228{font-size:98.208000px;}
.y0_c00228{bottom:0.000000px;}
.y1_c00228{bottom:76.500000px;}
.y1a_c00228{bottom:109.683135px;}
.y19_c00228{bottom:154.945935px;}
.y18_c00228{bottom:218.380185px;}
.y17_c00228{bottom:250.461135px;}
.y16_c00228{bottom:282.532185px;}
.y15_c00228{bottom:314.256735px;}
.y14_c00228{bottom:346.689135px;}
.y13_c00228{bottom:378.403785px;}
.y12_c00228{bottom:410.128335px;}
.y11_c00228{bottom:441.847935px;}
.y10_c00228{bottom:474.988185px;}
.yf_c00228{bottom:507.420585px;}
.ye_c00228{bottom:539.501535px;}
.yd_c00228{bottom:572.646735px;}
.yc_c00228{bottom:604.361385px;}
.yb_c00228{bottom:635.724585px;}
.ya_c00228{bottom:698.094585px;}
.y9_c00228{bottom:730.170585px;}
.y8_c00228{bottom:762.251535px;}
.y7_c00228{bottom:795.040335px;}
.y6_c00228{bottom:827.111385px;}
.y5_c00228{bottom:859.543785px;}
.y4_c00228{bottom:893.050335px;}
.y3_c00228{bottom:926.546985px;}
.y2_c00228{bottom:1074.452985px;}
.h9_c00228{height:28.911094px;}
.h5_c00228{height:33.230868px;}
.h7_c00228{height:34.180317px;}
.h4_c00228{height:37.028666px;}
.h2_c00228{height:70.734921px;}
.h8_c00228{height:73.433250px;}
.h3_c00228{height:76.953164px;}
.h6_c00228{height:98.975250px;}
.h1_c00228{height:1110.000000px;}
.h0_c00228{height:1263.000000px;}
.w1_c00228{width:751.500000px;}
.w0_c00228{width:892.500000px;}
.x0_c00228{left:0.000000px;}
.x13_c00228{left:61.177485px;}
.x2a_c00228{left:62.736735px;}
.x1_c00228{left:70.500000px;}
.x57_c00228{left:84.224685px;}
.x6f_c00228{left:93.654435px;}
.x2b_c00228{left:94.872135px;}
.x39_c00228{left:95.936385px;}
.x1e_c00228{left:106.623435px;}
.x4_c00228{left:116.018535px;}
.x45_c00228{left:117.062985px;}
.x5f_c00228{left:127.537185px;}
.x5_c00228{left:129.046935px;}
.x1f_c00228{left:137.808435px;}
.x58_c00228{left:139.006335px;}
.x63_c00228{left:141.035835px;}
.x6c_c00228{left:148.540035px;}
.x2c_c00228{left:150.128985px;}
.x43_c00228{left:160.454685px;}
.x3f_c00228{left:161.499135px;}
.x20_c00228{left:172.017885px;}
.x70_c00228{left:175.027485px;}
.x46_c00228{left:179.556735px;}
.x44_c00228{left:181.581285px;}
.x14_c00228{left:183.071235px;}
.x69_c00228{left:193.946385px;}
.x3a_c00228{left:195.015585px;}
.x64_c00228{left:196.743135px;}
.x2d_c00228{left:203.782035px;}
.x3b_c00228{left:205.271985px;}
.x6_c00228{left:216.067935px;}
.x60_c00228{left:218.443935px;}
.x7_c00228{left:226.235235px;}
.x3c_c00228{left:227.457885px;}
.x6d_c00228{left:229.531935px;}
.x40_c00228{left:238.139985px;}
.x2e_c00228{left:239.184435px;}
.x21_c00228{left:249.782385px;}
.x8_c00228{left:259.707135px;}
.x61_c00228{left:270.072435px;}
.x65_c00228{left:271.473285px;}
.x4c_c00228{left:274.042335px;}
.x9_c00228{left:282.214785px;}
.x15_c00228{left:283.422585px;}
.x16_c00228{left:293.332485px;}
.x6a_c00228{left:294.381885px;}
.x47_c00228{left:304.410585px;}
.x4d_c00228{left:314.266035px;}
.x17_c00228{left:315.364935px;}
.x59_c00228{left:316.538085px;}
.xa_c00228{left:327.170685px;}
.x2f_c00228{left:336.654885px;}
.x48_c00228{left:337.862685px;}
.x37_c00228{left:348.089385px;}
.x18_c00228{left:359.682285px;}
.x5b_c00228{left:362.073135px;}
.x3d_c00228{left:369.814935px;}
.x22_c00228{left:371.126685px;}
.x52_c00228{left:380.200035px;}
.x30_c00228{left:381.397935px;}
.xb_c00228{left:383.155185px;}
.x71_c00228{left:392.471085px;}
.x19_c00228{left:393.525435px;}
.x31_c00228{left:403.861035px;}
.x67_c00228{left:406.311285px;}
.x41_c00228{left:414.013485px;}
.x53_c00228{left:415.627185px;}
.x62_c00228{left:424.774785px;}
.x23_c00228{left:426.304335px;}
.x32_c00228{left:435.630135px;}
.x38_c00228{left:436.639935px;}
.x72_c00228{left:445.777635px;}
.x54_c00228{left:447.356685px;}
.x42_c00228{left:458.014035px;}
.x24_c00228{left:459.395085px;}
.x5c_c00228{left:468.230835px;}
.xc_c00228{left:469.804935px;}
.x4a_c00228{left:479.279235px;}
.x4e_c00228{left:481.214685px;}
.xd_c00228{left:491.916585px;}
.x1a_c00228{left:492.965985px;}
.x25_c00228{left:502.801635px;}
.x55_c00228{left:513.661935px;}
.x66_c00228{left:514.706385px;}
.x68_c00228{left:523.804485px;}
.xe_c00228{left:525.022185px;}
.x3e_c00228{left:535.738935px;}
.x26_c00228{left:546.792285px;}
.xf_c00228{left:557.830785px;}
.x6b_c00228{left:567.696135px;}
.x56_c00228{left:568.879185px;}
.x1b_c00228{left:579.229635px;}
.x4f_c00228{left:590.278035px;}
.x10_c00228{left:601.321485px;}
.x4b_c00228{left:602.336235px;}
.x1c_c00228{left:612.760935px;}
.x27_c00228{left:622.205535px;}
.x33_c00228{left:623.754885px;}
.x5d_c00228{left:635.149785px;}
.x34_c00228{left:645.515085px;}
.x5a_c00228{left:646.574385px;}
.x2_c00228{left:647.940585px;}
.x49_c00228{left:655.301235px;}
.x1d_c00228{left:656.880285px;}
.x50_c00228{left:666.715935px;}
.x11_c00228{left:668.290035px;}
.x3_c00228{left:670.195785px;}
.x5e_c00228{left:677.081235px;}
.x28_c00228{left:678.873135px;}
.x35_c00228{left:689.367135px;}
.x29_c00228{left:692.059935px;}
.x36_c00228{left:697.396035px;}
.x12_c00228{left:700.400685px;}
.x6e_c00228{left:713.483535px;}
.x51_c00228{left:722.111385px;}
.x73_c00228{left:743.624085px;}
@media print{
.v0_c00228{vertical-align:0.000000pt;}
.lsa_c00228{letter-spacing:-2.439360pt;}
.ls16_c00228{letter-spacing:-2.132698pt;}
.ls17_c00228{letter-spacing:-1.895731pt;}
.lsf_c00228{letter-spacing:-1.575130pt;}
.ls11_c00228{letter-spacing:-1.498464pt;}
.ls14_c00228{letter-spacing:-0.857261pt;}
.lsd_c00228{letter-spacing:-0.362419pt;}
.ls8_c00228{letter-spacing:0.000000pt;}
.ls13_c00228{letter-spacing:0.104755pt;}
.ls3_c00228{letter-spacing:0.627264pt;}
.ls6_c00228{letter-spacing:1.122106pt;}
.ls12_c00228{letter-spacing:1.498464pt;}
.ls1_c00228{letter-spacing:1.721491pt;}
.ls10_c00228{letter-spacing:1.895731pt;}
.lsc_c00228{letter-spacing:2.049062pt;}
.ls4_c00228{letter-spacing:2.443936pt;}
.ls15_c00228{letter-spacing:2.578752pt;}
.ls18_c00228{letter-spacing:2.836627pt;}
.ls19_c00228{letter-spacing:3.164198pt;}
.ls7_c00228{letter-spacing:3.203209pt;}
.ls1a_c00228{letter-spacing:3.238400pt;}
.ls9_c00228{letter-spacing:3.484800pt;}
.ls2_c00228{letter-spacing:19.793664pt;}
.ls0_c00228{letter-spacing:20.073152pt;}
.lse_c00228{letter-spacing:44.352176pt;}
.ls5_c00228{letter-spacing:45.619376pt;}
.lsb_c00228{letter-spacing:49.420976pt;}
.ws5_c00228{word-spacing:-79.833908pt;}
.wsb_c00228{word-spacing:-20.588198pt;}
.ws2_c00228{word-spacing:-19.145491pt;}
.ws8_c00228{word-spacing:-18.546106pt;}
.ws0_c00228{word-spacing:-17.424000pt;}
.ws1_c00228{word-spacing:-17.061581pt;}
.wsa_c00228{word-spacing:-15.528269pt;}
.ws7_c00228{word-spacing:-3.694240pt;}
.ws6_c00228{word-spacing:-1.951488pt;}
.wsd_c00228{word-spacing:0.000000pt;}
.wsc_c00228{word-spacing:0.557568pt;}
.ws9_c00228{word-spacing:1.115136pt;}
.ws4_c00228{word-spacing:3.375910pt;}
.ws3_c00228{word-spacing:4.599936pt;}
._1d_c00228{margin-left:-13.452032pt;}
._1e_c00228{margin-left:-11.708928pt;}
._1a_c00228{margin-left:-10.175616pt;}
._13_c00228{margin-left:-4.739328pt;}
._6_c00228{width:1.812800pt;}
._18_c00228{width:3.068384pt;}
._f_c00228{width:4.034906pt;}
._8_c00228{width:5.574976pt;}
._17_c00228{width:6.551072pt;}
._0_c00228{width:7.596864pt;}
._4_c00228{width:8.920736pt;}
._1_c00228{width:10.036224pt;}
._14_c00228{width:11.360448pt;}
._9_c00228{width:12.475936pt;}
._e_c00228{width:14.358080pt;}
._a_c00228{width:18.538432pt;}
._2_c00228{width:19.793664pt;}
._1c_c00228{width:20.978496pt;}
._12_c00228{width:22.232320pt;}
._3_c00228{width:23.277760pt;}
._16_c00228{width:24.881824pt;}
._15_c00228{width:26.540166pt;}
._10_c00228{width:27.733376pt;}
._19_c00228{width:29.202272pt;}
._7_c00228{width:30.317760pt;}
._b_c00228{width:32.745856pt;}
._c_c00228{width:33.941952pt;}
._11_c00228{width:35.057792pt;}
._5_c00228{width:36.911072pt;}
._d_c00228{width:39.447936pt;}
._1b_c00228{width:43.002432pt;}
.fs7_c00228{font-size:24.640000pt;}
.fs3_c00228{font-size:44.352176pt;}
.fs5_c00228{font-size:45.619376pt;}
.fs2_c00228{font-size:49.420976pt;}
.fs0_c00228{font-size:64.064176pt;}
.fs6_c00228{font-size:64.768000pt;}
.fs1_c00228{font-size:69.696000pt;}
.fs4_c00228{font-size:87.296000pt;}
.y0_c00228{bottom:0.000000pt;}
.y1_c00228{bottom:68.000000pt;}
.y1a_c00228{bottom:97.496120pt;}
.y19_c00228{bottom:137.729720pt;}
.y18_c00228{bottom:194.115720pt;}
.y17_c00228{bottom:222.632120pt;}
.y16_c00228{bottom:251.139720pt;}
.y15_c00228{bottom:279.339320pt;}
.y14_c00228{bottom:308.168120pt;}
.y13_c00228{bottom:336.358920pt;}
.y12_c00228{bottom:364.558520pt;}
.y11_c00228{bottom:392.753720pt;}
.y10_c00228{bottom:422.211720pt;}
.yf_c00228{bottom:451.040520pt;}
.ye_c00228{bottom:479.556920pt;}
.yd_c00228{bottom:509.019320pt;}
.yc_c00228{bottom:537.210120pt;}
.yb_c00228{bottom:565.088520pt;}
.ya_c00228{bottom:620.528520pt;}
.y9_c00228{bottom:649.040520pt;}
.y8_c00228{bottom:677.556920pt;}
.y7_c00228{bottom:706.702520pt;}
.y6_c00228{bottom:735.210120pt;}
.y5_c00228{bottom:764.038920pt;}
.y4_c00228{bottom:793.822520pt;}
.y3_c00228{bottom:823.597320pt;}
.y2_c00228{bottom:955.069320pt;}
.h9_c00228{height:25.698750pt;}
.h5_c00228{height:29.538549pt;}
.h7_c00228{height:30.382504pt;}
.h4_c00228{height:32.914370pt;}
.h2_c00228{height:62.875485pt;}
.h8_c00228{height:65.274000pt;}
.h3_c00228{height:68.402813pt;}
.h6_c00228{height:87.978000pt;}
.h1_c00228{height:986.666667pt;}
.h0_c00228{height:1122.666667pt;}
.w1_c00228{width:668.000000pt;}
.w0_c00228{width:793.333333pt;}
.x0_c00228{left:0.000000pt;}
.x13_c00228{left:54.379987pt;}
.x2a_c00228{left:55.765987pt;}
.x1_c00228{left:62.666667pt;}
.x57_c00228{left:74.866387pt;}
.x6f_c00228{left:83.248387pt;}
.x2b_c00228{left:84.330787pt;}
.x39_c00228{left:85.276787pt;}
.x1e_c00228{left:94.776387pt;}
.x4_c00228{left:103.127587pt;}
.x45_c00228{left:104.055987pt;}
.x5f_c00228{left:113.366387pt;}
.x5_c00228{left:114.708387pt;}
.x1f_c00228{left:122.496387pt;}
.x58_c00228{left:123.561187pt;}
.x63_c00228{left:125.365187pt;}
.x6c_c00228{left:132.035587pt;}
.x2c_c00228{left:133.447987pt;}
.x43_c00228{left:142.626387pt;}
.x3f_c00228{left:143.554787pt;}
.x20_c00228{left:152.904787pt;}
.x70_c00228{left:155.579987pt;}
.x46_c00228{left:159.605987pt;}
.x44_c00228{left:161.405587pt;}
.x14_c00228{left:162.729987pt;}
.x69_c00228{left:172.396787pt;}
.x3a_c00228{left:173.347187pt;}
.x64_c00228{left:174.882787pt;}
.x2d_c00228{left:181.139587pt;}
.x3b_c00228{left:182.463987pt;}
.x6_c00228{left:192.060387pt;}
.x60_c00228{left:194.172387pt;}
.x7_c00228{left:201.097987pt;}
.x3c_c00228{left:202.184787pt;}
.x6d_c00228{left:204.028387pt;}
.x40_c00228{left:211.679987pt;}
.x2e_c00228{left:212.608387pt;}
.x21_c00228{left:222.028787pt;}
.x8_c00228{left:230.850787pt;}
.x61_c00228{left:240.064387pt;}
.x65_c00228{left:241.309587pt;}
.x4c_c00228{left:243.593187pt;}
.x9_c00228{left:250.857587pt;}
.x15_c00228{left:251.931187pt;}
.x16_c00228{left:260.739987pt;}
.x6a_c00228{left:261.672787pt;}
.x47_c00228{left:270.587187pt;}
.x4d_c00228{left:279.347587pt;}
.x17_c00228{left:280.324387pt;}
.x59_c00228{left:281.367187pt;}
.xa_c00228{left:290.818387pt;}
.x2f_c00228{left:299.248787pt;}
.x48_c00228{left:300.322387pt;}
.x37_c00228{left:309.412787pt;}
.x18_c00228{left:319.717587pt;}
.x5b_c00228{left:321.842787pt;}
.x3d_c00228{left:328.724387pt;}
.x22_c00228{left:329.890387pt;}
.x52_c00228{left:337.955587pt;}
.x30_c00228{left:339.020387pt;}
.xb_c00228{left:340.582387pt;}
.x71_c00228{left:348.863187pt;}
.x19_c00228{left:349.800387pt;}
.x31_c00228{left:358.987587pt;}
.x67_c00228{left:361.165587pt;}
.x41_c00228{left:368.011987pt;}
.x53_c00228{left:369.446387pt;}
.x62_c00228{left:377.577587pt;}
.x23_c00228{left:378.937187pt;}
.x32_c00228{left:387.226787pt;}
.x38_c00228{left:388.124387pt;}
.x72_c00228{left:396.246787pt;}
.x54_c00228{left:397.650387pt;}
.x42_c00228{left:407.123587pt;}
.x24_c00228{left:408.351187pt;}
.x5c_c00228{left:416.205187pt;}
.xc_c00228{left:417.604387pt;}
.x4a_c00228{left:426.025987pt;}
.x4e_c00228{left:427.746387pt;}
.xd_c00228{left:437.259187pt;}
.x1a_c00228{left:438.191987pt;}
.x25_c00228{left:446.934787pt;}
.x55_c00228{left:456.588387pt;}
.x66_c00228{left:457.516787pt;}
.x68_c00228{left:465.603987pt;}
.xe_c00228{left:466.686387pt;}
.x3e_c00228{left:476.212387pt;}
.x26_c00228{left:486.037587pt;}
.xf_c00228{left:495.849587pt;}
.x6b_c00228{left:504.618787pt;}
.x56_c00228{left:505.670387pt;}
.x1b_c00228{left:514.870787pt;}
.x4f_c00228{left:524.691587pt;}
.x10_c00228{left:534.507987pt;}
.x4b_c00228{left:535.409987pt;}
.x1c_c00228{left:544.676387pt;}
.x27_c00228{left:553.071587pt;}
.x33_c00228{left:554.448787pt;}
.x5d_c00228{left:564.577587pt;}
.x34_c00228{left:573.791187pt;}
.x5a_c00228{left:574.732787pt;}
.x2_c00228{left:575.947187pt;}
.x49_c00228{left:582.489987pt;}
.x1d_c00228{left:583.893587pt;}
.x50_c00228{left:592.636387pt;}
.x11_c00228{left:594.035587pt;}
.x3_c00228{left:595.729587pt;}
.x5e_c00228{left:601.849987pt;}
.x28_c00228{left:603.442787pt;}
.x35_c00228{left:612.770787pt;}
.x29_c00228{left:615.164387pt;}
.x36_c00228{left:619.907587pt;}
.x12_c00228{left:622.578387pt;}
.x6e_c00228{left:634.207587pt;}
.x51_c00228{left:641.876787pt;}
.x73_c00228{left:660.999187pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_57e8e750e76ad4bc42e5d62a.woff2')format("woff");}.ff1_c00229{font-family:ff1_c00229;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00229;src:url('chunks/assets/font_a2f5908c224b5af08e2c622f.woff2')format("woff");}.ff2_c00229{font-family:ff2_c00229;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00229;src:url('chunks/assets/font_ba21343f9ff0a5a68c923b76.woff2')format("woff");}.ff3_c00229{font-family:ff3_c00229;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00229;src:url('chunks/assets/font_b9c109855e60455b33048b3f.woff2')format("woff");}.ff4_c00229{font-family:ff4_c00229;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mc7_c00229{transform:matrix(0.065477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065477,0.000000,0.000000,0.250000,0,0);}
.m87_c00229{transform:matrix(0.071429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071429,0.000000,0.000000,0.250000,0,0);}
.m12_c00229{transform:matrix(0.139424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139424,0.000000,0.000000,0.250000,0,0);}
.mbd_c00229{transform:matrix(0.145472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145472,0.000000,0.000000,0.250000,0,0);}
.m8f_c00229{transform:matrix(0.146342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146342,0.000000,0.000000,0.250000,0,0);}
.m1_c00229{transform:matrix(0.157309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157309,0.000000,0.000000,0.250000,0,0);}
.m5a_c00229{transform:matrix(0.167692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167692,0.000000,0.000000,0.250000,0,0);}
.m57_c00229{transform:matrix(0.175651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175651,0.000000,0.000000,0.250000,0,0);}
.mc6_c00229{transform:matrix(0.183532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183532,0.000000,0.000000,0.250000,0,0);}
.m90_c00229{transform:matrix(0.185976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185976,0.000000,0.000000,0.250000,0,0);}
.m6d_c00229{transform:matrix(0.207770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207770,0.000000,0.000000,0.250000,0,0);}
.m50_c00229{transform:matrix(0.209086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209086,0.000000,0.000000,0.250000,0,0);}
.m86_c00229{transform:matrix(0.217143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217143,0.000000,0.000000,0.250000,0,0);}
.m52_c00229{transform:matrix(0.223845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223845,0.000000,0.000000,0.250000,0,0);}
.m28_c00229{transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);}
.m99_c00229{transform:matrix(0.231773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231773,0.000000,0.000000,0.250000,0,0);}
.m7e_c00229{transform:matrix(0.233754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233754,0.000000,0.000000,0.250000,0,0);}
.m79_c00229{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00229{transform:matrix(0.248291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248291,0.000000,0.000000,0.250000,0,0);}
.m3d_c00229{transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);}
.m0_c00229{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m14_c00229{transform:matrix(0.252202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252202,0.000000,0.000000,0.250000,0,0);}
.m1a_c00229{transform:matrix(0.254956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254956,0.000000,0.000000,0.250000,0,0);}
.md_c00229{transform:matrix(0.255030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255030,0.000000,0.000000,0.250000,0,0);}
.m9a_c00229{transform:matrix(0.255497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255497,0.000000,0.000000,0.250000,0,0);}
.mb7_c00229{transform:matrix(0.256211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256211,0.000000,0.000000,0.250000,0,0);}
.mcb_c00229{transform:matrix(0.256804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256804,0.000000,0.000000,0.250000,0,0);}
.m80_c00229{transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);}
.me_c00229{transform:matrix(0.258532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258532,0.000000,0.000000,0.250000,0,0);}
.m5f_c00229{transform:matrix(0.258966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258966,0.000000,0.000000,0.250000,0,0);}
.m25_c00229{transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);}
.m18_c00229{transform:matrix(0.259390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259390,0.000000,0.000000,0.250000,0,0);}
.ma2_c00229{transform:matrix(0.259554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259554,0.000000,0.000000,0.250000,0,0);}
.m95_c00229{transform:matrix(0.260008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260008,0.000000,0.000000,0.250000,0,0);}
.mac_c00229{transform:matrix(0.260756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260756,0.000000,0.000000,0.250000,0,0);}
.m16_c00229{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m5d_c00229{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.m1f_c00229{transform:matrix(0.261551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261551,0.000000,0.000000,0.250000,0,0);}
.mb8_c00229{transform:matrix(0.261624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261624,0.000000,0.000000,0.250000,0,0);}
.md7_c00229{transform:matrix(0.261904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261904,0.000000,0.000000,0.250000,0,0);}
.m2f_c00229{transform:matrix(0.262048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262048,0.000000,0.000000,0.250000,0,0);}
.m61_c00229{transform:matrix(0.262649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262649,0.000000,0.000000,0.250000,0,0);}
.m89_c00229{transform:matrix(0.263196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263196,0.000000,0.000000,0.250000,0,0);}
.m2d_c00229{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m2_c00229{transform:matrix(0.263598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263598,0.000000,0.000000,0.250000,0,0);}
.m83_c00229{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.mc4_c00229{transform:matrix(0.264128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264128,0.000000,0.000000,0.250000,0,0);}
.m35_c00229{transform:matrix(0.264198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264198,0.000000,0.000000,0.250000,0,0);}
.m88_c00229{transform:matrix(0.264704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264704,0.000000,0.000000,0.250000,0,0);}
.m7b_c00229{transform:matrix(0.265631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265631,0.000000,0.000000,0.250000,0,0);}
.m56_c00229{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m2a_c00229{transform:matrix(0.266748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266748,0.000000,0.000000,0.250000,0,0);}
.mda_c00229{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.ma3_c00229{transform:matrix(0.267205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267205,0.000000,0.000000,0.250000,0,0);}
.mba_c00229{transform:matrix(0.267523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267523,0.000000,0.000000,0.250000,0,0);}
.m71_c00229{transform:matrix(0.267848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267848,0.000000,0.000000,0.250000,0,0);}
.m32_c00229{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.ma8_c00229{transform:matrix(0.269886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269886,0.000000,0.000000,0.250000,0,0);}
.m7c_c00229{transform:matrix(0.270008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270008,0.000000,0.000000,0.250000,0,0);}
.mce_c00229{transform:matrix(0.270666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270666,0.000000,0.000000,0.250000,0,0);}
.m84_c00229{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.mcf_c00229{transform:matrix(0.270973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270973,0.000000,0.000000,0.250000,0,0);}
.m8c_c00229{transform:matrix(0.271197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271197,0.000000,0.000000,0.250000,0,0);}
.mab_c00229{transform:matrix(0.271578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271578,0.000000,0.000000,0.250000,0,0);}
.md5_c00229{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m4_c00229{transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);}
.m3a_c00229{transform:matrix(0.272943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272943,0.000000,0.000000,0.250000,0,0);}
.m21_c00229{transform:matrix(0.274047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274047,0.000000,0.000000,0.250000,0,0);}
.m4d_c00229{transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);}
.maa_c00229{transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);}
.m64_c00229{transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);}
.ma7_c00229{transform:matrix(0.275573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275573,0.000000,0.000000,0.250000,0,0);}
.mc9_c00229{transform:matrix(0.276181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276181,0.000000,0.000000,0.250000,0,0);}
.mae_c00229{transform:matrix(0.276319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276319,0.000000,0.000000,0.250000,0,0);}
.m96_c00229{transform:matrix(0.276607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276607,0.000000,0.000000,0.250000,0,0);}
.m38_c00229{transform:matrix(0.276765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276765,0.000000,0.000000,0.250000,0,0);}
.mc8_c00229{transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);}
.m7a_c00229{transform:matrix(0.277101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277101,0.000000,0.000000,0.250000,0,0);}
.md6_c00229{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.mb9_c00229{transform:matrix(0.277360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277360,0.000000,0.000000,0.250000,0,0);}
.m27_c00229{transform:matrix(0.277695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277695,0.000000,0.000000,0.250000,0,0);}
.m70_c00229{transform:matrix(0.278073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278073,0.000000,0.000000,0.250000,0,0);}
.md4_c00229{transform:matrix(0.278426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278426,0.000000,0.000000,0.250000,0,0);}
.m60_c00229{transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);}
.m5b_c00229{transform:matrix(0.280362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280362,0.000000,0.000000,0.250000,0,0);}
.m8e_c00229{transform:matrix(0.280566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280566,0.000000,0.000000,0.250000,0,0);}
.mc5_c00229{transform:matrix(0.280818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280818,0.000000,0.000000,0.250000,0,0);}
.m3e_c00229{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.m20_c00229{transform:matrix(0.281899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281899,0.000000,0.000000,0.250000,0,0);}
.m94_c00229{transform:matrix(0.282518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282518,0.000000,0.000000,0.250000,0,0);}
.m5c_c00229{transform:matrix(0.282925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282925,0.000000,0.000000,0.250000,0,0);}
.m6b_c00229{transform:matrix(0.283259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283259,0.000000,0.000000,0.250000,0,0);}
.mb4_c00229{transform:matrix(0.283530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283530,0.000000,0.000000,0.250000,0,0);}
.m33_c00229{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m62_c00229{transform:matrix(0.283886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283886,0.000000,0.000000,0.250000,0,0);}
.m10_c00229{transform:matrix(0.284194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284194,0.000000,0.000000,0.250000,0,0);}
.m73_c00229{transform:matrix(0.285189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285189,0.000000,0.000000,0.250000,0,0);}
.md9_c00229{transform:matrix(0.285694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285694,0.000000,0.000000,0.250000,0,0);}
.m30_c00229{transform:matrix(0.285890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285890,0.000000,0.000000,0.250000,0,0);}
.m23_c00229{transform:matrix(0.286031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286031,0.000000,0.000000,0.250000,0,0);}
.ma4_c00229{transform:matrix(0.286238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286238,0.000000,0.000000,0.250000,0,0);}
.m48_c00229{transform:matrix(0.286439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286439,0.000000,0.000000,0.250000,0,0);}
.m9c_c00229{transform:matrix(0.286798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286798,0.000000,0.000000,0.250000,0,0);}
.ma6_c00229{transform:matrix(0.287066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287066,0.000000,0.000000,0.250000,0,0);}
.m6a_c00229{transform:matrix(0.287284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287284,0.000000,0.000000,0.250000,0,0);}
.md2_c00229{transform:matrix(0.287763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287763,0.000000,0.000000,0.250000,0,0);}
.m13_c00229{transform:matrix(0.287771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287771,0.000000,0.000000,0.250000,0,0);}
.m45_c00229{transform:matrix(0.288419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288419,0.000000,0.000000,0.250000,0,0);}
.m19_c00229{transform:matrix(0.288573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288573,0.000000,0.000000,0.250000,0,0);}
.m67_c00229{transform:matrix(0.289069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289069,0.000000,0.000000,0.250000,0,0);}
.mad_c00229{transform:matrix(0.289464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289464,0.000000,0.000000,0.250000,0,0);}
.m75_c00229{transform:matrix(0.289620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289620,0.000000,0.000000,0.250000,0,0);}
.m9f_c00229{transform:matrix(0.289768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289768,0.000000,0.000000,0.250000,0,0);}
.m3b_c00229{transform:matrix(0.290019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290019,0.000000,0.000000,0.250000,0,0);}
.m85_c00229{transform:matrix(0.290141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290141,0.000000,0.000000,0.250000,0,0);}
.mb3_c00229{transform:matrix(0.290343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290343,0.000000,0.000000,0.250000,0,0);}
.m34_c00229{transform:matrix(0.290655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290655,0.000000,0.000000,0.250000,0,0);}
.mc1_c00229{transform:matrix(0.291521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291521,0.000000,0.000000,0.250000,0,0);}
.mb_c00229{transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);}
.m98_c00229{transform:matrix(0.291828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291828,0.000000,0.000000,0.250000,0,0);}
.m59_c00229{transform:matrix(0.293131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293131,0.000000,0.000000,0.250000,0,0);}
.m55_c00229{transform:matrix(0.293444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293444,0.000000,0.000000,0.250000,0,0);}
.m5_c00229{transform:matrix(0.293597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293597,0.000000,0.000000,0.250000,0,0);}
.m93_c00229{transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);}
.m7_c00229{transform:matrix(0.293774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293774,0.000000,0.000000,0.250000,0,0);}
.ma9_c00229{transform:matrix(0.294655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294655,0.000000,0.000000,0.250000,0,0);}
.md1_c00229{transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);}
.m69_c00229{transform:matrix(0.295938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295938,0.000000,0.000000,0.250000,0,0);}
.mdc_c00229{transform:matrix(0.296922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296922,0.000000,0.000000,0.250000,0,0);}
.m6_c00229{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.mbf_c00229{transform:matrix(0.297325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297325,0.000000,0.000000,0.250000,0,0);}
.m63_c00229{transform:matrix(0.297357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297357,0.000000,0.000000,0.250000,0,0);}
.m24_c00229{transform:matrix(0.297951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297951,0.000000,0.000000,0.250000,0,0);}
.ma1_c00229{transform:matrix(0.298017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298017,0.000000,0.000000,0.250000,0,0);}
.m7d_c00229{transform:matrix(0.298290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298290,0.000000,0.000000,0.250000,0,0);}
.m43_c00229{transform:matrix(0.298503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298503,0.000000,0.000000,0.250000,0,0);}
.m2b_c00229{transform:matrix(0.299263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299263,0.000000,0.000000,0.250000,0,0);}
.m2c_c00229{transform:matrix(0.299395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299395,0.000000,0.000000,0.250000,0,0);}
.m4e_c00229{transform:matrix(0.300266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300266,0.000000,0.000000,0.250000,0,0);}
.mdd_c00229{transform:matrix(0.300360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300360,0.000000,0.000000,0.250000,0,0);}
.m77_c00229{transform:matrix(0.300523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300523,0.000000,0.000000,0.250000,0,0);}
.m2e_c00229{transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);}
.mc0_c00229{transform:matrix(0.300614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300614,0.000000,0.000000,0.250000,0,0);}
.ma5_c00229{transform:matrix(0.301248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301248,0.000000,0.000000,0.250000,0,0);}
.m22_c00229{transform:matrix(0.303475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303475,0.000000,0.000000,0.250000,0,0);}
.m5e_c00229{transform:matrix(0.303509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303509,0.000000,0.000000,0.250000,0,0);}
.m6e_c00229{transform:matrix(0.303707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303707,0.000000,0.000000,0.250000,0,0);}
.m3_c00229{transform:matrix(0.303998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303998,0.000000,0.000000,0.250000,0,0);}
.m26_c00229{transform:matrix(0.305392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305392,0.000000,0.000000,0.250000,0,0);}
.m3f_c00229{transform:matrix(0.305630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305630,0.000000,0.000000,0.250000,0,0);}
.m66_c00229{transform:matrix(0.306206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306206,0.000000,0.000000,0.250000,0,0);}
.mcc_c00229{transform:matrix(0.307034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307034,0.000000,0.000000,0.250000,0,0);}
.m65_c00229{transform:matrix(0.307915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307915,0.000000,0.000000,0.250000,0,0);}
.m3c_c00229{transform:matrix(0.307943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307943,0.000000,0.000000,0.250000,0,0);}
.m31_c00229{transform:matrix(0.308566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308566,0.000000,0.000000,0.250000,0,0);}
.mb1_c00229{transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);}
.m4c_c00229{transform:matrix(0.308942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308942,0.000000,0.000000,0.250000,0,0);}
.m91_c00229{transform:matrix(0.308957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308957,0.000000,0.000000,0.250000,0,0);}
.mbe_c00229{transform:matrix(0.308970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308970,0.000000,0.000000,0.250000,0,0);}
.m40_c00229{transform:matrix(0.309027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309027,0.000000,0.000000,0.250000,0,0);}
.mdb_c00229{transform:matrix(0.309198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309198,0.000000,0.000000,0.250000,0,0);}
.m8_c00229{transform:matrix(0.309855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309855,0.000000,0.000000,0.250000,0,0);}
.m8b_c00229{transform:matrix(0.310011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310011,0.000000,0.000000,0.250000,0,0);}
.m11_c00229{transform:matrix(0.310030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310030,0.000000,0.000000,0.250000,0,0);}
.m8d_c00229{transform:matrix(0.310147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310147,0.000000,0.000000,0.250000,0,0);}
.m9b_c00229{transform:matrix(0.312133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312133,0.000000,0.000000,0.250000,0,0);}
.mc2_c00229{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.mca_c00229{transform:matrix(0.312751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312751,0.000000,0.000000,0.250000,0,0);}
.ma_c00229{transform:matrix(0.312778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312778,0.000000,0.000000,0.250000,0,0);}
.m36_c00229{transform:matrix(0.312992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312992,0.000000,0.000000,0.250000,0,0);}
.mb0_c00229{transform:matrix(0.313105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313105,0.000000,0.000000,0.250000,0,0);}
.m4a_c00229{transform:matrix(0.313396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313396,0.000000,0.000000,0.250000,0,0);}
.m47_c00229{transform:matrix(0.313434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313434,0.000000,0.000000,0.250000,0,0);}
.mb5_c00229{transform:matrix(0.313583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313583,0.000000,0.000000,0.250000,0,0);}
.md3_c00229{transform:matrix(0.313839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313839,0.000000,0.000000,0.250000,0,0);}
.m46_c00229{transform:matrix(0.315493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315493,0.000000,0.000000,0.250000,0,0);}
.m7f_c00229{transform:matrix(0.315917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315917,0.000000,0.000000,0.250000,0,0);}
.m8a_c00229{transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);}
.m49_c00229{transform:matrix(0.317024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317024,0.000000,0.000000,0.250000,0,0);}
.m76_c00229{transform:matrix(0.317369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317369,0.000000,0.000000,0.250000,0,0);}
.mb6_c00229{transform:matrix(0.318361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318361,0.000000,0.000000,0.250000,0,0);}
.m82_c00229{transform:matrix(0.318862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318862,0.000000,0.000000,0.250000,0,0);}
.md0_c00229{transform:matrix(0.319290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319290,0.000000,0.000000,0.250000,0,0);}
.m9d_c00229{transform:matrix(0.320394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320394,0.000000,0.000000,0.250000,0,0);}
.mbb_c00229{transform:matrix(0.320730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320730,0.000000,0.000000,0.250000,0,0);}
.m54_c00229{transform:matrix(0.320853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320853,0.000000,0.000000,0.250000,0,0);}
.m81_c00229{transform:matrix(0.320893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320893,0.000000,0.000000,0.250000,0,0);}
.m37_c00229{transform:matrix(0.321236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321236,0.000000,0.000000,0.250000,0,0);}
.m78_c00229{transform:matrix(0.322669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322669,0.000000,0.000000,0.250000,0,0);}
.m29_c00229{transform:matrix(0.323258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323258,0.000000,0.000000,0.250000,0,0);}
.maf_c00229{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.m6c_c00229{transform:matrix(0.325414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325414,0.000000,0.000000,0.250000,0,0);}
.m53_c00229{transform:matrix(0.326588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326588,0.000000,0.000000,0.250000,0,0);}
.m6f_c00229{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.mbc_c00229{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.m9e_c00229{transform:matrix(0.330299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330299,0.000000,0.000000,0.250000,0,0);}
.ma0_c00229{transform:matrix(0.330475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330475,0.000000,0.000000,0.250000,0,0);}
.md8_c00229{transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);}
.m92_c00229{transform:matrix(0.331235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331235,0.000000,0.000000,0.250000,0,0);}
.m1e_c00229{transform:matrix(0.331631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331631,0.000000,0.000000,0.250000,0,0);}
.m17_c00229{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m4b_c00229{transform:matrix(0.333410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333410,0.000000,0.000000,0.250000,0,0);}
.mcd_c00229{transform:matrix(0.334114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334114,0.000000,0.000000,0.250000,0,0);}
.mb2_c00229{transform:matrix(0.335470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335470,0.000000,0.000000,0.250000,0,0);}
.m44_c00229{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m9_c00229{transform:matrix(0.342184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342184,0.000000,0.000000,0.250000,0,0);}
.m41_c00229{transform:matrix(0.343123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343123,0.000000,0.000000,0.250000,0,0);}
.m39_c00229{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.m74_c00229{transform:matrix(0.345353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345353,0.000000,0.000000,0.250000,0,0);}
.mc3_c00229{transform:matrix(0.346097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346097,0.000000,0.000000,0.250000,0,0);}
.mc_c00229{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m68_c00229{transform:matrix(0.350799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350799,0.000000,0.000000,0.250000,0,0);}
.m72_c00229{transform:matrix(0.350956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350956,0.000000,0.000000,0.250000,0,0);}
.m97_c00229{transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);}
.m15_c00229{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m1d_c00229{transform:matrix(0.355345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355345,0.000000,0.000000,0.250000,0,0);}
.m58_c00229{transform:matrix(0.356590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356590,0.000000,0.000000,0.250000,0,0);}
.m4f_c00229{transform:matrix(0.357109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357109,0.000000,0.000000,0.250000,0,0);}
.m51_c00229{transform:matrix(0.378175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378175,0.000000,0.000000,0.250000,0,0);}
.m42_c00229{transform:matrix(0.384902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384902,0.000000,0.000000,0.250000,0,0);}
.m1c_c00229{transform:matrix(0.391573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391573,0.000000,0.000000,0.250000,0,0);}
.mf_c00229{transform:matrix(0.424628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424628,0.000000,0.000000,0.250000,0,0);}
.v0_c00229{vertical-align:0.000000px;}
.ls6_c00229{letter-spacing:-2.744280px;}
.lsc_c00229{letter-spacing:-1.960200px;}
.lsd_c00229{letter-spacing:-1.693613px;}
.lsf_c00229{letter-spacing:-0.478289px;}
.ls4_c00229{letter-spacing:0.000000px;}
.ls1_c00229{letter-spacing:0.258746px;}
.ls8_c00229{letter-spacing:0.533174px;}
.lsb_c00229{letter-spacing:0.784080px;}
.ls2_c00229{letter-spacing:0.893851px;}
.lse_c00229{letter-spacing:1.246687px;}
.ls5_c00229{letter-spacing:1.481911px;}
.ls9_c00229{letter-spacing:1.764180px;}
.ls3_c00229{letter-spacing:2.501215px;}
.ls12_c00229{letter-spacing:3.112798px;}
.lsa_c00229{letter-spacing:3.247200px;}
.ls7_c00229{letter-spacing:3.920400px;}
.ls0_c00229{letter-spacing:11.525976px;}
.ls11_c00229{letter-spacing:49.896198px;}
.ls10_c00229{letter-spacing:52.747398px;}
.ls13_c00229{letter-spacing:58.449798px;}
.ls14_c00229{letter-spacing:59.875398px;}
.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;}
}
.ws2_c00229{word-spacing:-21.366180px;}
.ws1_c00229{word-spacing:-19.602000px;}
.ws5_c00229{word-spacing:-3.293532px;}
.ws4_c00229{word-spacing:-2.430648px;}
.ws6_c00229{word-spacing:0.000000px;}
.ws0_c00229{word-spacing:1.804176px;}
.ws3_c00229{word-spacing:2.352636px;}
._6_c00229{margin-left:-12.310056px;}
._12_c00229{margin-left:-1.568160px;}
._0_c00229{width:3.528360px;}
._14_c00229{width:5.723784px;}
._4_c00229{width:6.821496px;}
._15_c00229{width:8.624880px;}
._b_c00229{width:10.585080px;}
._f_c00229{width:11.918808px;}
._e_c00229{width:13.328568px;}
._17_c00229{width:14.975928px;}
._19_c00229{width:16.622496px;}
._11_c00229{width:18.135216px;}
._d_c00229{width:20.855736px;}
._10_c00229{width:22.267872px;}
._13_c00229{width:23.679216px;}
._2_c00229{width:25.012152px;}
._16_c00229{width:27.834840px;}
._9_c00229{width:29.403000px;}
._8_c00229{width:31.127184px;}
._1_c00229{width:33.801689px;}
._a_c00229{width:35.809488px;}
._3_c00229{width:37.526069px;}
._5_c00229{width:39.361212px;}
._c_c00229{width:41.085000px;}
._18_c00229{width:44.065296px;}
._7_c00229{width:45.947088px;}
._1b_c00229{width:51.334272px;}
._1a_c00229{width:80.211384px;}
.fc0_c00229{color:transparent;}
.fs8_c00229{font-size:27.720000px;}
.fs4_c00229{font-size:49.896198px;}
.fs3_c00229{font-size:52.747398px;}
.fs5_c00229{font-size:58.449798px;}
.fs7_c00229{font-size:59.875398px;}
.fs2_c00229{font-size:64.548000px;}
.fs1_c00229{font-size:64.944000px;}
.fs6_c00229{font-size:72.864000px;}
.fs0_c00229{font-size:78.408000px;}
.y0_c00229{bottom:0.000000px;}
.y1c_c00229{bottom:3.114585px;}
.y1_c00229{bottom:76.500000px;}
.y1b_c00229{bottom:142.471935px;}
.y1a_c00229{bottom:173.117385px;}
.y19_c00229{bottom:208.044585px;}
.y18_c00229{bottom:242.258985px;}
.y17_c00229{bottom:274.696335px;}
.y16_c00229{bottom:306.415935px;}
.y15_c00229{bottom:338.491935px;}
.y14_c00229{bottom:371.632185px;}
.y13_c00229{bottom:405.851535px;}
.y12_c00229{bottom:470.354985px;}
.y11_c00229{bottom:503.148735px;}
.y10_c00229{bottom:534.511935px;}
.yf_c00229{bottom:565.875135px;}
.ye_c00229{bottom:597.951135px;}
.yd_c00229{bottom:630.022185px;}
.yc_c00229{bottom:630.030600px;}
.yb_c00229{bottom:661.746735px;}
.ya_c00229{bottom:694.891935px;}
.y9_c00229{bottom:727.675785px;}
.y8_c00229{bottom:760.820985px;}
.y7_c00229{bottom:793.253385px;}
.y6_c00229{bottom:825.685785px;}
.y5_c00229{bottom:858.123135px;}
.y4_c00229{bottom:890.194185px;}
.y3_c00229{bottom:922.626585px;}
.y2_c00229{bottom:1078.016985px;}
.ha_c00229{height:28.911094px;}
.h6_c00229{height:33.230868px;}
.h4_c00229{height:35.129767px;}
.h7_c00229{height:38.927565px;}
.h9_c00229{height:39.877015px;}
.h3_c00229{height:63.738984px;}
.h5_c00229{height:67.321547px;}
.h2_c00229{height:76.953164px;}
.h8_c00229{height:79.020563px;}
.h1_c00229{height:1110.000000px;}
.h0_c00229{height:1263.000000px;}
.w1_c00229{width:751.500000px;}
.w0_c00229{width:892.500000px;}
.x0_c00229{left:0.000000px;}
.x3_c00229{left:61.157685px;}
.x43_c00229{left:62.454585px;}
.x76_c00229{left:63.810885px;}
.x67_c00229{left:64.914735px;}
.x1_c00229{left:70.500000px;}
.x4_c00229{left:74.186085px;}
.x68_c00229{left:75.220635px;}
.x10_c00229{left:83.289135px;}
.x3d_c00229{left:94.505835px;}
.x36_c00229{left:104.663235px;}
.x11_c00229{left:106.247235px;}
.x69_c00229{left:108.915285px;}
.x44_c00229{left:115.394835px;}
.x48_c00229{left:116.493735px;}
.x6d_c00229{left:117.963885px;}
.x58_c00229{left:128.027235px;}
.x72_c00229{left:131.125935px;}
.x4e_c00229{left:137.353035px;}
.x12_c00229{left:139.080585px;}
.x4f_c00229{left:142.991085px;}
.x54_c00229{left:148.540035px;}
.x37_c00229{left:149.673585px;}
.x50_c00229{left:150.797235px;}
.x5_c00229{left:159.835935px;}
.x3e_c00229{left:161.157585px;}
.x21_c00229{left:171.503085px;}
.x13_c00229{left:182.897985px;}
.x6_c00229{left:193.599885px;}
.x62_c00229{left:204.103785px;}
.x59_c00229{left:205.163085px;}
.x77_c00229{left:206.346135px;}
.x5d_c00229{left:208.063785px;}
.x22_c00229{left:215.572935px;}
.x6e_c00229{left:218.612235px;}
.x14_c00229{left:227.804385px;}
.x51_c00229{left:229.922985px;}
.x15_c00229{left:238.060785px;}
.x2b_c00229{left:241.050585px;}
.x38_c00229{left:249.361635px;}
.x6f_c00229{left:250.613985px;}
.x49_c00229{left:258.984435px;}
.x16_c00229{left:260.246685px;}
.x2c_c00229{left:271.443585px;}
.x17_c00229{left:281.729685px;}
.x79_c00229{left:283.021635px;}
.x74_c00229{left:285.758985px;}
.x5e_c00229{left:293.357235px;}
.x45_c00229{left:304.054185px;}
.x73_c00229{left:305.123385px;}
.x66_c00229{left:306.831135px;}
.x2d_c00229{left:314.751135px;}
.x39_c00229{left:317.523135px;}
.x3f_c00229{left:326.388585px;}
.x23_c00229{left:337.229085px;}
.x78_c00229{left:338.263635px;}
.x7_c00229{left:347.411235px;}
.x55_c00229{left:348.653685px;}
.x4c_c00229{left:351.024735px;}
.x24_c00229{left:359.553585px;}
.x70_c00229{left:362.429535px;}
.x46_c00229{left:370.671285px;}
.x8_c00229{left:380.160435px;}
.x63_c00229{left:381.457335px;}
.x4d_c00229{left:382.803735px;}
.x2e_c00229{left:392.466135px;}
.x18_c00229{left:393.530385px;}
.x40_c00229{left:404.182785px;}
.x2f_c00229{left:414.538185px;}
.x19_c00229{left:423.680835px;}
.x3a_c00229{left:424.908435px;}
.x9_c00229{left:425.928135px;}
.x56_c00229{left:427.190385px;}
.x5a_c00229{left:436.095435px;}
.x1a_c00229{left:447.000285px;}
.x71_c00229{left:448.415985px;}
.x25_c00229{left:458.048685px;}
.x1b_c00229{left:469.903935px;}
.x30_c00229{left:481.135485px;}
.x26_c00229{left:490.644435px;}
.x5b_c00229{left:492.609585px;}
.xa_c00229{left:502.613535px;}
.x47_c00229{left:512.374935px;}
.x31_c00229{left:513.439185px;}
.x4a_c00229{left:525.398385px;}
.x27_c00229{left:535.387485px;}
.x64_c00229{left:536.778435px;}
.x41_c00229{left:545.539935px;}
.x28_c00229{left:546.589335px;}
.x3b_c00229{left:557.127885px;}
.x1c_c00229{left:567.908985px;}
.x6a_c00229{left:570.497835px;}
.x29_c00229{left:579.026685px;}
.x5f_c00229{left:580.274085px;}
.x1d_c00229{left:589.372185px;}
.x53_c00229{left:591.322485px;}
.x32_c00229{left:600.059235px;}
.xb_c00229{left:601.549185px;}
.x57_c00229{left:612.147135px;}
.x60_c00229{left:613.359885px;}
.x52_c00229{left:622.195635px;}
.x2a_c00229{left:623.418285px;}
.x3c_c00229{left:624.428085px;}
.x6b_c00229{left:625.705185px;}
.xc_c00229{left:633.570735px;}
.x33_c00229{left:634.808235px;}
.x61_c00229{left:636.753585px;}
.x1e_c00229{left:645.515085px;}
.x2_c00229{left:646.554585px;}
.x65_c00229{left:655.667535px;}
.x42_c00229{left:656.880285px;}
.xd_c00229{left:667.047585px;}
.x1f_c00229{left:668.671185px;}
.x34_c00229{left:678.566235px;}
.xe_c00229{left:689.525535px;}
.x6c_c00229{left:691.282785px;}
.x20_c00229{left:700.361085px;}
.x75_c00229{left:702.791535px;}
.xf_c00229{left:711.409485px;}
.x5c_c00229{left:713.839935px;}
.x35_c00229{left:722.111385px;}
.x4b_c00229{left:724.695285px;}
.x7a_c00229{left:749.682885px;}
@media print{
.v0_c00229{vertical-align:0.000000pt;}
.ls6_c00229{letter-spacing:-2.439360pt;}
.lsc_c00229{letter-spacing:-1.742400pt;}
.lsd_c00229{letter-spacing:-1.505434pt;}
.lsf_c00229{letter-spacing:-0.425146pt;}
.ls4_c00229{letter-spacing:0.000000pt;}
.ls1_c00229{letter-spacing:0.229997pt;}
.ls8_c00229{letter-spacing:0.473933pt;}
.lsb_c00229{letter-spacing:0.696960pt;}
.ls2_c00229{letter-spacing:0.794534pt;}
.lse_c00229{letter-spacing:1.108166pt;}
.ls5_c00229{letter-spacing:1.317254pt;}
.ls9_c00229{letter-spacing:1.568160pt;}
.ls3_c00229{letter-spacing:2.223302pt;}
.ls12_c00229{letter-spacing:2.766931pt;}
.lsa_c00229{letter-spacing:2.886400pt;}
.ls7_c00229{letter-spacing:3.484800pt;}
.ls0_c00229{letter-spacing:10.245312pt;}
.ls11_c00229{letter-spacing:44.352176pt;}
.ls10_c00229{letter-spacing:46.886576pt;}
.ls13_c00229{letter-spacing:51.955376pt;}
.ls14_c00229{letter-spacing:53.222576pt;}
.ws2_c00229{word-spacing:-18.992160pt;}
.ws1_c00229{word-spacing:-17.424000pt;}
.ws5_c00229{word-spacing:-2.927584pt;}
.ws4_c00229{word-spacing:-2.160576pt;}
.ws6_c00229{word-spacing:0.000000pt;}
.ws0_c00229{word-spacing:1.603712pt;}
.ws3_c00229{word-spacing:2.091232pt;}
._6_c00229{margin-left:-10.942272pt;}
._12_c00229{margin-left:-1.393920pt;}
._0_c00229{width:3.136320pt;}
._14_c00229{width:5.087808pt;}
._4_c00229{width:6.063552pt;}
._15_c00229{width:7.666560pt;}
._b_c00229{width:9.408960pt;}
._f_c00229{width:10.594496pt;}
._e_c00229{width:11.847616pt;}
._17_c00229{width:13.311936pt;}
._19_c00229{width:14.775552pt;}
._11_c00229{width:16.120192pt;}
._d_c00229{width:18.538432pt;}
._10_c00229{width:19.793664pt;}
._13_c00229{width:21.048192pt;}
._2_c00229{width:22.233024pt;}
._16_c00229{width:24.742080pt;}
._9_c00229{width:26.136000pt;}
._8_c00229{width:27.668608pt;}
._1_c00229{width:30.045946pt;}
._a_c00229{width:31.830656pt;}
._3_c00229{width:33.356506pt;}
._5_c00229{width:34.987744pt;}
._c_c00229{width:36.520000pt;}
._18_c00229{width:39.169152pt;}
._7_c00229{width:40.841856pt;}
._1b_c00229{width:45.630464pt;}
._1a_c00229{width:71.299008pt;}
.fs8_c00229{font-size:24.640000pt;}
.fs4_c00229{font-size:44.352176pt;}
.fs3_c00229{font-size:46.886576pt;}
.fs5_c00229{font-size:51.955376pt;}
.fs7_c00229{font-size:53.222576pt;}
.fs2_c00229{font-size:57.376000pt;}
.fs1_c00229{font-size:57.728000pt;}
.fs6_c00229{font-size:64.768000pt;}
.fs0_c00229{font-size:69.696000pt;}
.y0_c00229{bottom:0.000000pt;}
.y1c_c00229{bottom:2.768520pt;}
.y1_c00229{bottom:68.000000pt;}
.y1b_c00229{bottom:126.641720pt;}
.y1a_c00229{bottom:153.882120pt;}
.y19_c00229{bottom:184.928520pt;}
.y18_c00229{bottom:215.341320pt;}
.y17_c00229{bottom:244.174520pt;}
.y16_c00229{bottom:272.369720pt;}
.y15_c00229{bottom:300.881720pt;}
.y14_c00229{bottom:330.339720pt;}
.y13_c00229{bottom:360.756920pt;}
.y12_c00229{bottom:418.093320pt;}
.y11_c00229{bottom:447.243320pt;}
.y10_c00229{bottom:475.121720pt;}
.yf_c00229{bottom:503.000120pt;}
.ye_c00229{bottom:531.512120pt;}
.yd_c00229{bottom:560.019720pt;}
.yc_c00229{bottom:560.027200pt;}
.yb_c00229{bottom:588.219320pt;}
.ya_c00229{bottom:617.681720pt;}
.y9_c00229{bottom:646.822920pt;}
.y8_c00229{bottom:676.285320pt;}
.y7_c00229{bottom:705.114120pt;}
.y6_c00229{bottom:733.942920pt;}
.y5_c00229{bottom:762.776120pt;}
.y4_c00229{bottom:791.283720pt;}
.y3_c00229{bottom:820.112520pt;}
.y2_c00229{bottom:958.237320pt;}
.ha_c00229{height:25.698750pt;}
.h6_c00229{height:29.538549pt;}
.h4_c00229{height:31.226460pt;}
.h7_c00229{height:34.602280pt;}
.h9_c00229{height:35.446236pt;}
.h3_c00229{height:56.656875pt;}
.h5_c00229{height:59.841375pt;}
.h2_c00229{height:68.402813pt;}
.h8_c00229{height:70.240500pt;}
.h1_c00229{height:986.666667pt;}
.h0_c00229{height:1122.666667pt;}
.w1_c00229{width:668.000000pt;}
.w0_c00229{width:793.333333pt;}
.x0_c00229{left:0.000000pt;}
.x3_c00229{left:54.362387pt;}
.x43_c00229{left:55.515187pt;}
.x76_c00229{left:56.720787pt;}
.x67_c00229{left:57.701987pt;}
.x1_c00229{left:62.666667pt;}
.x4_c00229{left:65.943187pt;}
.x68_c00229{left:66.862787pt;}
.x10_c00229{left:74.034787pt;}
.x3d_c00229{left:84.005187pt;}
.x36_c00229{left:93.033987pt;}
.x11_c00229{left:94.441987pt;}
.x69_c00229{left:96.813587pt;}
.x44_c00229{left:102.573187pt;}
.x48_c00229{left:103.549987pt;}
.x6d_c00229{left:104.856787pt;}
.x58_c00229{left:113.801987pt;}
.x72_c00229{left:116.556387pt;}
.x4e_c00229{left:122.091587pt;}
.x12_c00229{left:123.627187pt;}
.x4f_c00229{left:127.103187pt;}
.x54_c00229{left:132.035587pt;}
.x37_c00229{left:133.043187pt;}
.x50_c00229{left:134.041987pt;}
.x5_c00229{left:142.076387pt;}
.x3e_c00229{left:143.251187pt;}
.x21_c00229{left:152.447187pt;}
.x13_c00229{left:162.575987pt;}
.x6_c00229{left:172.088787pt;}
.x62_c00229{left:181.425587pt;}
.x59_c00229{left:182.367187pt;}
.x77_c00229{left:183.418787pt;}
.x5d_c00229{left:184.945587pt;}
.x22_c00229{left:191.620387pt;}
.x6e_c00229{left:194.321987pt;}
.x14_c00229{left:202.492787pt;}
.x51_c00229{left:204.375987pt;}
.x15_c00229{left:211.609587pt;}
.x2b_c00229{left:214.267187pt;}
.x38_c00229{left:221.654787pt;}
.x6f_c00229{left:222.767987pt;}
.x49_c00229{left:230.208387pt;}
.x16_c00229{left:231.330387pt;}
.x2c_c00229{left:241.283187pt;}
.x17_c00229{left:250.426387pt;}
.x79_c00229{left:251.574787pt;}
.x74_c00229{left:254.007987pt;}
.x5e_c00229{left:260.761987pt;}
.x45_c00229{left:270.270387pt;}
.x73_c00229{left:271.220787pt;}
.x66_c00229{left:272.738787pt;}
.x2d_c00229{left:279.778787pt;}
.x39_c00229{left:282.242787pt;}
.x3f_c00229{left:290.123187pt;}
.x23_c00229{left:299.759187pt;}
.x78_c00229{left:300.678787pt;}
.x7_c00229{left:308.809987pt;}
.x55_c00229{left:309.914387pt;}
.x4c_c00229{left:312.021987pt;}
.x24_c00229{left:319.603187pt;}
.x70_c00229{left:322.159587pt;}
.x46_c00229{left:329.485587pt;}
.x8_c00229{left:337.920387pt;}
.x63_c00229{left:339.073187pt;}
.x4d_c00229{left:340.269987pt;}
.x2e_c00229{left:348.858787pt;}
.x18_c00229{left:349.804787pt;}
.x40_c00229{left:359.273587pt;}
.x2f_c00229{left:368.478387pt;}
.x19_c00229{left:376.605187pt;}
.x3a_c00229{left:377.696387pt;}
.x9_c00229{left:378.602787pt;}
.x56_c00229{left:379.724787pt;}
.x5a_c00229{left:387.640387pt;}
.x1a_c00229{left:397.333587pt;}
.x71_c00229{left:398.591987pt;}
.x25_c00229{left:407.154387pt;}
.x1b_c00229{left:417.692387pt;}
.x30_c00229{left:427.675987pt;}
.x26_c00229{left:436.128387pt;}
.x5b_c00229{left:437.875187pt;}
.xa_c00229{left:446.767587pt;}
.x47_c00229{left:455.444387pt;}
.x31_c00229{left:456.390387pt;}
.x4a_c00229{left:467.020787pt;}
.x27_c00229{left:475.899987pt;}
.x64_c00229{left:477.136387pt;}
.x41_c00229{left:484.924387pt;}
.x28_c00229{left:485.857187pt;}
.x3b_c00229{left:495.224787pt;}
.x1c_c00229{left:504.807987pt;}
.x6a_c00229{left:507.109187pt;}
.x29_c00229{left:514.690387pt;}
.x5f_c00229{left:515.799187pt;}
.x1d_c00229{left:523.886387pt;}
.x53_c00229{left:525.619987pt;}
.x32_c00229{left:533.385987pt;}
.xb_c00229{left:534.710387pt;}
.x57_c00229{left:544.130787pt;}
.x60_c00229{left:545.208787pt;}
.x52_c00229{left:553.062787pt;}
.x2a_c00229{left:554.149587pt;}
.x3c_c00229{left:555.047187pt;}
.x6b_c00229{left:556.182387pt;}
.xc_c00229{left:563.173987pt;}
.x33_c00229{left:564.273987pt;}
.x61_c00229{left:566.003187pt;}
.x1e_c00229{left:573.791187pt;}
.x2_c00229{left:574.715187pt;}
.x65_c00229{left:582.815587pt;}
.x42_c00229{left:583.893587pt;}
.xd_c00229{left:592.931187pt;}
.x1f_c00229{left:594.374387pt;}
.x34_c00229{left:603.169987pt;}
.xe_c00229{left:612.911587pt;}
.x6c_c00229{left:614.473587pt;}
.x20_c00229{left:622.543187pt;}
.x75_c00229{left:624.703587pt;}
.xf_c00229{left:632.363987pt;}
.x5c_c00229{left:634.524387pt;}
.x35_c00229{left:641.876787pt;}
.x4b_c00229{left:644.173587pt;}
.x7a_c00229{left:666.384787pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_93068b55452786ddbc13b4f6.woff2')format("woff");}.ff1_c00230{font-family:ff1_c00230;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00230;src:url('chunks/assets/font_6f1087604a236855416f0c6b.woff2')format("woff");}.ff2_c00230{font-family:ff2_c00230;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00230;src:url('chunks/assets/font_81d37290e95b19dc4641ef5a.woff2')format("woff");}.ff3_c00230{font-family:ff3_c00230;line-height:0.666000;font-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_c00230{transform:matrix(0.157343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157343,0.000000,0.000000,0.250000,0,0);}
.m7_c00230{transform:matrix(0.224509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224509,0.000000,0.000000,0.250000,0,0);}
.m6f_c00230{transform:matrix(0.245904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245904,0.000000,0.000000,0.250000,0,0);}
.m12_c00230{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00230{transform:matrix(0.250440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250440,0.000000,0.000000,0.250000,0,0);}
.m19_c00230{transform:matrix(0.251385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251385,0.000000,0.000000,0.250000,0,0);}
.m4_c00230{transform:matrix(0.251502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251502,0.000000,0.000000,0.250000,0,0);}
.m3d_c00230{transform:matrix(0.252353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252353,0.000000,0.000000,0.250000,0,0);}
.m46_c00230{transform:matrix(0.252448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252448,0.000000,0.000000,0.250000,0,0);}
.m22_c00230{transform:matrix(0.252887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252887,0.000000,0.000000,0.250000,0,0);}
.m15_c00230{transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);}
.mf_c00230{transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);}
.m49_c00230{transform:matrix(0.254160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254160,0.000000,0.000000,0.250000,0,0);}
.m5e_c00230{transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);}
.m65_c00230{transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);}
.m10_c00230{transform:matrix(0.257269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257269,0.000000,0.000000,0.250000,0,0);}
.m5_c00230{transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);}
.m1d_c00230{transform:matrix(0.258644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258644,0.000000,0.000000,0.250000,0,0);}
.m6c_c00230{transform:matrix(0.258788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258788,0.000000,0.000000,0.250000,0,0);}
.m33_c00230{transform:matrix(0.259265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259265,0.000000,0.000000,0.250000,0,0);}
.m57_c00230{transform:matrix(0.259376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259376,0.000000,0.000000,0.250000,0,0);}
.m11_c00230{transform:matrix(0.259732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259732,0.000000,0.000000,0.250000,0,0);}
.m68_c00230{transform:matrix(0.260224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260224,0.000000,0.000000,0.250000,0,0);}
.m5c_c00230{transform:matrix(0.260353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260353,0.000000,0.000000,0.250000,0,0);}
.m7b_c00230{transform:matrix(0.264149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264149,0.000000,0.000000,0.250000,0,0);}
.m70_c00230{transform:matrix(0.265552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265552,0.000000,0.000000,0.250000,0,0);}
.m67_c00230{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.m27_c00230{transform:matrix(0.266393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266393,0.000000,0.000000,0.250000,0,0);}
.m48_c00230{transform:matrix(0.267004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267004,0.000000,0.000000,0.250000,0,0);}
.m8c_c00230{transform:matrix(0.267630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267630,0.000000,0.000000,0.250000,0,0);}
.m41_c00230{transform:matrix(0.269363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269363,0.000000,0.000000,0.250000,0,0);}
.m30_c00230{transform:matrix(0.269516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269516,0.000000,0.000000,0.250000,0,0);}
.m2e_c00230{transform:matrix(0.269991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269991,0.000000,0.000000,0.250000,0,0);}
.m4a_c00230{transform:matrix(0.270838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270838,0.000000,0.000000,0.250000,0,0);}
.m53_c00230{transform:matrix(0.272021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272021,0.000000,0.000000,0.250000,0,0);}
.m75_c00230{transform:matrix(0.272826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272826,0.000000,0.000000,0.250000,0,0);}
.m14_c00230{transform:matrix(0.272984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272984,0.000000,0.000000,0.250000,0,0);}
.md_c00230{transform:matrix(0.273059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273059,0.000000,0.000000,0.250000,0,0);}
.m8f_c00230{transform:matrix(0.273289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273289,0.000000,0.000000,0.250000,0,0);}
.m3e_c00230{transform:matrix(0.274757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274757,0.000000,0.000000,0.250000,0,0);}
.m60_c00230{transform:matrix(0.275129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275129,0.000000,0.000000,0.250000,0,0);}
.m2a_c00230{transform:matrix(0.275563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275563,0.000000,0.000000,0.250000,0,0);}
.ma_c00230{transform:matrix(0.276115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276115,0.000000,0.000000,0.250000,0,0);}
.m3_c00230{transform:matrix(0.276127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276127,0.000000,0.000000,0.250000,0,0);}
.m3b_c00230{transform:matrix(0.276355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276355,0.000000,0.000000,0.250000,0,0);}
.m50_c00230{transform:matrix(0.276604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276604,0.000000,0.000000,0.250000,0,0);}
.m2d_c00230{transform:matrix(0.276682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276682,0.000000,0.000000,0.250000,0,0);}
.m26_c00230{transform:matrix(0.276856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276856,0.000000,0.000000,0.250000,0,0);}
.m7c_c00230{transform:matrix(0.277487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277487,0.000000,0.000000,0.250000,0,0);}
.m86_c00230{transform:matrix(0.277600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277600,0.000000,0.000000,0.250000,0,0);}
.m59_c00230{transform:matrix(0.278118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278118,0.000000,0.000000,0.250000,0,0);}
.m4f_c00230{transform:matrix(0.278680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278680,0.000000,0.000000,0.250000,0,0);}
.m74_c00230{transform:matrix(0.278923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278923,0.000000,0.000000,0.250000,0,0);}
.m72_c00230{transform:matrix(0.279195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279195,0.000000,0.000000,0.250000,0,0);}
.m20_c00230{transform:matrix(0.279510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279510,0.000000,0.000000,0.250000,0,0);}
.m6b_c00230{transform:matrix(0.279875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279875,0.000000,0.000000,0.250000,0,0);}
.m24_c00230{transform:matrix(0.280089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280089,0.000000,0.000000,0.250000,0,0);}
.m84_c00230{transform:matrix(0.280105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280105,0.000000,0.000000,0.250000,0,0);}
.m44_c00230{transform:matrix(0.280468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280468,0.000000,0.000000,0.250000,0,0);}
.m77_c00230{transform:matrix(0.280504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280504,0.000000,0.000000,0.250000,0,0);}
.m35_c00230{transform:matrix(0.281298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281298,0.000000,0.000000,0.250000,0,0);}
.m79_c00230{transform:matrix(0.281517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281517,0.000000,0.000000,0.250000,0,0);}
.m31_c00230{transform:matrix(0.281806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281806,0.000000,0.000000,0.250000,0,0);}
.m64_c00230{transform:matrix(0.282525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282525,0.000000,0.000000,0.250000,0,0);}
.m7f_c00230{transform:matrix(0.283785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283785,0.000000,0.000000,0.250000,0,0);}
.m54_c00230{transform:matrix(0.284396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284396,0.000000,0.000000,0.250000,0,0);}
.m36_c00230{transform:matrix(0.284872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284872,0.000000,0.000000,0.250000,0,0);}
.m21_c00230{transform:matrix(0.284886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284886,0.000000,0.000000,0.250000,0,0);}
.m3a_c00230{transform:matrix(0.285325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285325,0.000000,0.000000,0.250000,0,0);}
.m32_c00230{transform:matrix(0.285756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285756,0.000000,0.000000,0.250000,0,0);}
.m2c_c00230{transform:matrix(0.286503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286503,0.000000,0.000000,0.250000,0,0);}
.m78_c00230{transform:matrix(0.287822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287822,0.000000,0.000000,0.250000,0,0);}
.m2f_c00230{transform:matrix(0.288009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288009,0.000000,0.000000,0.250000,0,0);}
.m45_c00230{transform:matrix(0.288490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288490,0.000000,0.000000,0.250000,0,0);}
.m61_c00230{transform:matrix(0.288814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288814,0.000000,0.000000,0.250000,0,0);}
.m81_c00230{transform:matrix(0.289553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289553,0.000000,0.000000,0.250000,0,0);}
.m5f_c00230{transform:matrix(0.289916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289916,0.000000,0.000000,0.250000,0,0);}
.m0_c00230{transform:matrix(0.290159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290159,0.000000,0.000000,0.250000,0,0);}
.m9_c00230{transform:matrix(0.291076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291076,0.000000,0.000000,0.250000,0,0);}
.m39_c00230{transform:matrix(0.291379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291379,0.000000,0.000000,0.250000,0,0);}
.m56_c00230{transform:matrix(0.291911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291911,0.000000,0.000000,0.250000,0,0);}
.m7e_c00230{transform:matrix(0.292833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292833,0.000000,0.000000,0.250000,0,0);}
.m8_c00230{transform:matrix(0.293572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293572,0.000000,0.000000,0.250000,0,0);}
.m1e_c00230{transform:matrix(0.294029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294029,0.000000,0.000000,0.250000,0,0);}
.m66_c00230{transform:matrix(0.294033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294033,0.000000,0.000000,0.250000,0,0);}
.m8a_c00230{transform:matrix(0.295036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295036,0.000000,0.000000,0.250000,0,0);}
.m76_c00230{transform:matrix(0.295115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295115,0.000000,0.000000,0.250000,0,0);}
.m83_c00230{transform:matrix(0.296031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296031,0.000000,0.000000,0.250000,0,0);}
.m6e_c00230{transform:matrix(0.296351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296351,0.000000,0.000000,0.250000,0,0);}
.m5a_c00230{transform:matrix(0.296594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296594,0.000000,0.000000,0.250000,0,0);}
.m2b_c00230{transform:matrix(0.298413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298413,0.000000,0.000000,0.250000,0,0);}
.m63_c00230{transform:matrix(0.298735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298735,0.000000,0.000000,0.250000,0,0);}
.m34_c00230{transform:matrix(0.299328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299328,0.000000,0.000000,0.250000,0,0);}
.m51_c00230{transform:matrix(0.299584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299584,0.000000,0.000000,0.250000,0,0);}
.m5d_c00230{transform:matrix(0.299621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299621,0.000000,0.000000,0.250000,0,0);}
.m62_c00230{transform:matrix(0.299657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299657,0.000000,0.000000,0.250000,0,0);}
.m42_c00230{transform:matrix(0.300764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300764,0.000000,0.000000,0.250000,0,0);}
.m8b_c00230{transform:matrix(0.300870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300870,0.000000,0.000000,0.250000,0,0);}
.m90_c00230{transform:matrix(0.301081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301081,0.000000,0.000000,0.250000,0,0);}
.m4c_c00230{transform:matrix(0.301590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301590,0.000000,0.000000,0.250000,0,0);}
.m88_c00230{transform:matrix(0.301975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301975,0.000000,0.000000,0.250000,0,0);}
.m1a_c00230{transform:matrix(0.302091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302091,0.000000,0.000000,0.250000,0,0);}
.m17_c00230{transform:matrix(0.302110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302110,0.000000,0.000000,0.250000,0,0);}
.m4e_c00230{transform:matrix(0.303056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303056,0.000000,0.000000,0.250000,0,0);}
.m8d_c00230{transform:matrix(0.303741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303741,0.000000,0.000000,0.250000,0,0);}
.m40_c00230{transform:matrix(0.304186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304186,0.000000,0.000000,0.250000,0,0);}
.m55_c00230{transform:matrix(0.304908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304908,0.000000,0.000000,0.250000,0,0);}
.m80_c00230{transform:matrix(0.305661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305661,0.000000,0.000000,0.250000,0,0);}
.m7d_c00230{transform:matrix(0.306067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306067,0.000000,0.000000,0.250000,0,0);}
.m92_c00230{transform:matrix(0.306187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306187,0.000000,0.000000,0.250000,0,0);}
.m4d_c00230{transform:matrix(0.306455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306455,0.000000,0.000000,0.250000,0,0);}
.m38_c00230{transform:matrix(0.306546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306546,0.000000,0.000000,0.250000,0,0);}
.m1_c00230{transform:matrix(0.306973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306973,0.000000,0.000000,0.250000,0,0);}
.m23_c00230{transform:matrix(0.307220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307220,0.000000,0.000000,0.250000,0,0);}
.mc_c00230{transform:matrix(0.308480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308480,0.000000,0.000000,0.250000,0,0);}
.mb_c00230{transform:matrix(0.308613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308613,0.000000,0.000000,0.250000,0,0);}
.m47_c00230{transform:matrix(0.308636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308636,0.000000,0.000000,0.250000,0,0);}
.m71_c00230{transform:matrix(0.308956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308956,0.000000,0.000000,0.250000,0,0);}
.m73_c00230{transform:matrix(0.310325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310325,0.000000,0.000000,0.250000,0,0);}
.m6d_c00230{transform:matrix(0.310657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310657,0.000000,0.000000,0.250000,0,0);}
.m6_c00230{transform:matrix(0.311854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311854,0.000000,0.000000,0.250000,0,0);}
.m18_c00230{transform:matrix(0.312291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312291,0.000000,0.000000,0.250000,0,0);}
.m29_c00230{transform:matrix(0.312972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312972,0.000000,0.000000,0.250000,0,0);}
.m3c_c00230{transform:matrix(0.314459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314459,0.000000,0.000000,0.250000,0,0);}
.m7a_c00230{transform:matrix(0.317528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317528,0.000000,0.000000,0.250000,0,0);}
.me_c00230{transform:matrix(0.317544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317544,0.000000,0.000000,0.250000,0,0);}
.m25_c00230{transform:matrix(0.320282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320282,0.000000,0.000000,0.250000,0,0);}
.m3f_c00230{transform:matrix(0.321625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321625,0.000000,0.000000,0.250000,0,0);}
.m5b_c00230{transform:matrix(0.321939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321939,0.000000,0.000000,0.250000,0,0);}
.m85_c00230{transform:matrix(0.322037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322037,0.000000,0.000000,0.250000,0,0);}
.m1f_c00230{transform:matrix(0.322065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322065,0.000000,0.000000,0.250000,0,0);}
.m13_c00230{transform:matrix(0.326105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326105,0.000000,0.000000,0.250000,0,0);}
.m2_c00230{transform:matrix(0.327073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327073,0.000000,0.000000,0.250000,0,0);}
.m69_c00230{transform:matrix(0.329691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329691,0.000000,0.000000,0.250000,0,0);}
.m91_c00230{transform:matrix(0.329791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329791,0.000000,0.000000,0.250000,0,0);}
.m1b_c00230{transform:matrix(0.330357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330357,0.000000,0.000000,0.250000,0,0);}
.m37_c00230{transform:matrix(0.330653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330653,0.000000,0.000000,0.250000,0,0);}
.m43_c00230{transform:matrix(0.335220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335220,0.000000,0.000000,0.250000,0,0);}
.m52_c00230{transform:matrix(0.339644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339644,0.000000,0.000000,0.250000,0,0);}
.m82_c00230{transform:matrix(0.343872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343872,0.000000,0.000000,0.250000,0,0);}
.m87_c00230{transform:matrix(0.344194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344194,0.000000,0.000000,0.250000,0,0);}
.m6a_c00230{transform:matrix(0.349316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349316,0.000000,0.000000,0.250000,0,0);}
.m89_c00230{transform:matrix(0.349937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349937,0.000000,0.000000,0.250000,0,0);}
.m28_c00230{transform:matrix(0.352777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352777,0.000000,0.000000,0.250000,0,0);}
.m58_c00230{transform:matrix(0.356405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356405,0.000000,0.000000,0.250000,0,0);}
.m16_c00230{transform:matrix(0.358891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358891,0.000000,0.000000,0.250000,0,0);}
.m4b_c00230{transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);}
.m8e_c00230{transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);}
.v0_c00230{vertical-align:0.000000px;}
.ls2_c00230{letter-spacing:-2.855167px;}
.ls8_c00230{letter-spacing:-2.798064px;}
.ls6_c00230{letter-spacing:-0.848392px;}
.lsb_c00230{letter-spacing:-0.579191px;}
.ls4_c00230{letter-spacing:0.000000px;}
.lsa_c00230{letter-spacing:0.334462px;}
.ls10_c00230{letter-spacing:0.350778px;}
.ls11_c00230{letter-spacing:0.734186px;}
.lsd_c00230{letter-spacing:0.840235px;}
.ls13_c00230{letter-spacing:2.534400px;}
.ls3_c00230{letter-spacing:3.091738px;}
.ls14_c00230{letter-spacing:3.504610px;}
.ls12_c00230{letter-spacing:3.603610px;}
.lsc_c00230{letter-spacing:3.623400px;}
.lse_c00230{letter-spacing:3.638298px;}
.ls0_c00230{letter-spacing:3.762000px;}
.ls5_c00230{letter-spacing:3.842239px;}
.ls7_c00230{letter-spacing:3.915658px;}
.ls9_c00230{letter-spacing:3.940200px;}
.lsf_c00230{letter-spacing:4.054337px;}
.ls1_c00230{letter-spacing:4.078810px;}
.ls15_c00230{letter-spacing:74.131398px;}
.sc__c00230{text-shadow:none;}
.sc0_c00230{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00230{-webkit-text-stroke:0px transparent;}
.sc0_c00230{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00230{word-spacing:0.000000px;}
.fc0_c00230{color:transparent;}
.fs8_c00230{font-size:33.264000px;}
.fs9_c00230{font-size:34.056198px;}
.fs5_c00230{font-size:50.688000px;}
.fs6_c00230{font-size:70.092198px;}
.fs4_c00230{font-size:72.072198px;}
.fs3_c00230{font-size:72.468000px;}
.fs7_c00230{font-size:74.131398px;}
.fs0_c00230{font-size:75.240000px;}
.fs2_c00230{font-size:78.804000px;}
.fs1_c00230{font-size:81.576198px;}
.y0_c00230{bottom:0.000000px;}
.y1_c00230{bottom:76.500000px;}
.y19_c00230{bottom:106.119135px;}
.y1a_c00230{bottom:166.345785px;}
.y18_c00230{bottom:204.129135px;}
.y17_c00230{bottom:234.423135px;}
.y16_c00230{bottom:266.142735px;}
.y15_c00230{bottom:297.149535px;}
.y14_c00230{bottom:329.220585px;}
.y13_c00230{bottom:360.232335px;}
.y12_c00230{bottom:391.590585px;}
.y11_c00230{bottom:422.953785px;}
.y10_c00230{bottom:455.029785px;}
.yf_c00230{bottom:486.749385px;}
.ye_c00230{bottom:549.837135px;}
.yd_c00230{bottom:581.200335px;}
.yc_c00230{bottom:612.207135px;}
.yb_c00230{bottom:643.570335px;}
.ya_c00230{bottom:674.577135px;}
.y9_c00230{bottom:705.222585px;}
.y8_c00230{bottom:736.585785px;}
.y7_c00230{bottom:768.310335px;}
.y6_c00230{bottom:800.029935px;}
.y5_c00230{bottom:832.105935px;}
.y4_c00230{bottom:864.176985px;}
.y3_c00230{bottom:926.546985px;}
.y2_c00230{bottom:1073.383785px;}
.ha_c00230{height:34.693313px;}
.hb_c00230{height:35.519550px;}
.h9_c00230{height:49.371511px;}
.h7_c00230{height:52.866000px;}
.h5_c00230{height:71.123379px;}
.h8_c00230{height:73.103972px;}
.h2_c00230{height:73.843945px;}
.h6_c00230{height:75.169050px;}
.h4_c00230{height:77.341816px;}
.h3_c00230{height:80.062577px;}
.h1_c00230{height:1110.000000px;}
.h0_c00230{height:1263.000000px;}
.w1_c00230{width:751.500000px;}
.w0_c00230{width:892.500000px;}
.x0_c00230{left:0.000000px;}
.x1_c00230{left:70.500000px;}
.x3_c00230{left:80.769585px;}
.x24_c00230{left:82.190235px;}
.x57_c00230{left:83.546535px;}
.x39_c00230{left:114.068235px;}
.x11_c00230{left:126.141285px;}
.x9_c00230{left:135.788835px;}
.x4_c00230{left:137.199585px;}
.x3a_c00230{left:146.366985px;}
.x1e_c00230{left:148.569735px;}
.x46_c00230{left:168.820185px;}
.xa_c00230{left:170.404185px;}
.x51_c00230{left:180.358635px;}
.x25_c00230{left:181.408035px;}
.x33_c00230{left:191.634735px;}
.x12_c00230{left:202.866285px;}
.x2f_c00230{left:213.013785px;}
.x58_c00230{left:214.127535px;}
.x5_c00230{left:225.195735px;}
.x41_c00230{left:235.100685px;}
.x13_c00230{left:237.065835px;}
.x26_c00230{left:247.366785px;}
.x34_c00230{left:258.108285px;}
.x6_c00230{left:268.245885px;}
.x3f_c00230{left:269.518035px;}
.xb_c00230{left:279.091335px;}
.x4e_c00230{left:280.185285px;}
.x42_c00230{left:281.200035px;}
.x4c_c00230{left:290.139735px;}
.x27_c00230{left:291.392085px;}
.x3b_c00230{left:303.301785px;}
.x1a_c00230{left:312.434535px;}
.x2b_c00230{left:313.706685px;}
.x14_c00230{left:314.761035px;}
.x49_c00230{left:323.844285px;}
.x7_c00230{left:335.803485px;}
.x2c_c00230{left:345.941085px;}
.x15_c00230{left:347.124135px;}
.x3c_c00230{left:357.682485px;}
.x8_c00230{left:368.899185px;}
.xc_c00230{left:379.383285px;}
.x35_c00230{left:380.942535px;}
.x28_c00230{left:391.728585px;}
.x40_c00230{left:402.796785px;}
.x36_c00230{left:413.374935px;}
.x43_c00230{left:422.720535px;}
.x16_c00230{left:424.195635px;}
.x52_c00230{left:433.660035px;}
.x30_c00230{left:435.833085px;}
.x4f_c00230{left:445.386585px;}
.x1f_c00230{left:446.921085px;}
.x17_c00230{left:456.929985px;}
.x4b_c00230{left:468.032835px;}
.x4d_c00230{left:478.719885px;}
.x20_c00230{left:479.798985px;}
.xd_c00230{left:489.906885px;}
.x31_c00230{left:501.811635px;}
.x50_c00230{left:511.647285px;}
.x44_c00230{left:522.656085px;}
.x29_c00230{left:523.898535px;}
.x1b_c00230{left:534.323235px;}
.x21_c00230{left:545.371635px;}
.x55_c00230{left:555.652785px;}
.xe_c00230{left:556.761585px;}
.x53_c00230{left:565.854735px;}
.x3d_c00230{left:567.696135px;}
.x1c_c00230{left:577.774335px;}
.x18_c00230{left:578.794035px;}
.x4a_c00230{left:589.124685px;}
.x37_c00230{left:590.203785px;}
.x47_c00230{left:599.900835px;}
.x59_c00230{left:603.539085px;}
.x3e_c00230{left:609.686985px;}
.x22_c00230{left:611.627385px;}
.x2d_c00230{left:613.008435px;}
.x1d_c00230{left:622.685685px;}
.x2_c00230{left:632.630235px;}
.x32_c00230{left:642.866835px;}
.xf_c00230{left:645.034935px;}
.x2a_c00230{left:654.603285px;}
.x45_c00230{left:664.562685px;}
.x56_c00230{left:665.834835px;}
.x54_c00230{left:676.333785px;}
.x23_c00230{left:677.551485px;}
.x10_c00230{left:687.906885px;}
.x19_c00230{left:689.332485px;}
.x48_c00230{left:698.390985px;}
.x2e_c00230{left:700.004685px;}
.x38_c00230{left:709.771035px;}
.x5a_c00230{left:747.089085px;}
@media print{
.v0_c00230{vertical-align:0.000000pt;}
.ls2_c00230{letter-spacing:-2.537926pt;}
.ls8_c00230{letter-spacing:-2.487168pt;}
.ls6_c00230{letter-spacing:-0.754127pt;}
.lsb_c00230{letter-spacing:-0.514836pt;}
.ls4_c00230{letter-spacing:0.000000pt;}
.lsa_c00230{letter-spacing:0.297300pt;}
.ls10_c00230{letter-spacing:0.311802pt;}
.ls11_c00230{letter-spacing:0.652610pt;}
.lsd_c00230{letter-spacing:0.746875pt;}
.ls13_c00230{letter-spacing:2.252800pt;}
.ls3_c00230{letter-spacing:2.748211pt;}
.ls14_c00230{letter-spacing:3.115209pt;}
.ls12_c00230{letter-spacing:3.203209pt;}
.lsc_c00230{letter-spacing:3.220800pt;}
.lse_c00230{letter-spacing:3.234043pt;}
.ls0_c00230{letter-spacing:3.344000pt;}
.ls5_c00230{letter-spacing:3.415323pt;}
.ls7_c00230{letter-spacing:3.480584pt;}
.ls9_c00230{letter-spacing:3.502400pt;}
.lsf_c00230{letter-spacing:3.603855pt;}
.ls1_c00230{letter-spacing:3.625609pt;}
.ls15_c00230{letter-spacing:65.894576pt;}
.ws0_c00230{word-spacing:0.000000pt;}
.fs8_c00230{font-size:29.568000pt;}
.fs9_c00230{font-size:30.272176pt;}
.fs5_c00230{font-size:45.056000pt;}
.fs6_c00230{font-size:62.304176pt;}
.fs4_c00230{font-size:64.064176pt;}
.fs3_c00230{font-size:64.416000pt;}
.fs7_c00230{font-size:65.894576pt;}
.fs0_c00230{font-size:66.880000pt;}
.fs2_c00230{font-size:70.048000pt;}
.fs1_c00230{font-size:72.512176pt;}
.y0_c00230{bottom:0.000000pt;}
.y1_c00230{bottom:68.000000pt;}
.y19_c00230{bottom:94.328120pt;}
.y1a_c00230{bottom:147.862920pt;}
.y18_c00230{bottom:181.448120pt;}
.y17_c00230{bottom:208.376120pt;}
.y16_c00230{bottom:236.571320pt;}
.y15_c00230{bottom:264.132920pt;}
.y14_c00230{bottom:292.640520pt;}
.y13_c00230{bottom:320.206520pt;}
.y12_c00230{bottom:348.080520pt;}
.y11_c00230{bottom:375.958920pt;}
.y10_c00230{bottom:404.470920pt;}
.yf_c00230{bottom:432.666120pt;}
.ye_c00230{bottom:488.744120pt;}
.yd_c00230{bottom:516.622520pt;}
.yc_c00230{bottom:544.184120pt;}
.yb_c00230{bottom:572.062520pt;}
.ya_c00230{bottom:599.624120pt;}
.y9_c00230{bottom:626.864520pt;}
.y8_c00230{bottom:654.742920pt;}
.y7_c00230{bottom:682.942520pt;}
.y6_c00230{bottom:711.137720pt;}
.y5_c00230{bottom:739.649720pt;}
.y4_c00230{bottom:768.157320pt;}
.y3_c00230{bottom:823.597320pt;}
.y2_c00230{bottom:954.118920pt;}
.ha_c00230{height:30.838500pt;}
.hb_c00230{height:31.572934pt;}
.h9_c00230{height:43.885788pt;}
.h7_c00230{height:46.992000pt;}
.h5_c00230{height:63.220781pt;}
.h8_c00230{height:64.981309pt;}
.h2_c00230{height:65.639063pt;}
.h6_c00230{height:66.816934pt;}
.h4_c00230{height:68.748281pt;}
.h3_c00230{height:71.166735pt;}
.h1_c00230{height:986.666667pt;}
.h0_c00230{height:1122.666667pt;}
.w1_c00230{width:668.000000pt;}
.w0_c00230{width:793.333333pt;}
.x0_c00230{left:0.000000pt;}
.x1_c00230{left:62.666667pt;}
.x3_c00230{left:71.795187pt;}
.x24_c00230{left:73.057987pt;}
.x57_c00230{left:74.263587pt;}
.x39_c00230{left:101.393987pt;}
.x11_c00230{left:112.125587pt;}
.x9_c00230{left:120.701187pt;}
.x4_c00230{left:121.955187pt;}
.x3a_c00230{left:130.103987pt;}
.x1e_c00230{left:132.061987pt;}
.x46_c00230{left:150.062387pt;}
.xa_c00230{left:151.470387pt;}
.x51_c00230{left:160.318787pt;}
.x25_c00230{left:161.251587pt;}
.x33_c00230{left:170.341987pt;}
.x12_c00230{left:180.325587pt;}
.x2f_c00230{left:189.345587pt;}
.x58_c00230{left:190.335587pt;}
.x5_c00230{left:200.173987pt;}
.x41_c00230{left:208.978387pt;}
.x13_c00230{left:210.725187pt;}
.x26_c00230{left:219.881587pt;}
.x34_c00230{left:229.429587pt;}
.x6_c00230{left:238.440787pt;}
.x3f_c00230{left:239.571587pt;}
.xb_c00230{left:248.081187pt;}
.x4e_c00230{left:249.053587pt;}
.x42_c00230{left:249.955587pt;}
.x4c_c00230{left:257.901987pt;}
.x27_c00230{left:259.015187pt;}
.x3b_c00230{left:269.601587pt;}
.x1a_c00230{left:277.719587pt;}
.x2b_c00230{left:278.850387pt;}
.x14_c00230{left:279.787587pt;}
.x49_c00230{left:287.861587pt;}
.x7_c00230{left:298.491987pt;}
.x2c_c00230{left:307.503187pt;}
.x15_c00230{left:308.554787pt;}
.x3c_c00230{left:317.939987pt;}
.x8_c00230{left:327.910387pt;}
.xc_c00230{left:337.229587pt;}
.x35_c00230{left:338.615587pt;}
.x28_c00230{left:348.203187pt;}
.x40_c00230{left:358.041587pt;}
.x36_c00230{left:367.444387pt;}
.x43_c00230{left:375.751587pt;}
.x16_c00230{left:377.062787pt;}
.x52_c00230{left:385.475587pt;}
.x30_c00230{left:387.407187pt;}
.x4f_c00230{left:395.899187pt;}
.x1f_c00230{left:397.263187pt;}
.x17_c00230{left:406.159987pt;}
.x4b_c00230{left:416.029187pt;}
.x4d_c00230{left:425.528787pt;}
.x20_c00230{left:426.487987pt;}
.xd_c00230{left:435.472787pt;}
.x31_c00230{left:446.054787pt;}
.x50_c00230{left:454.797587pt;}
.x44_c00230{left:464.583187pt;}
.x29_c00230{left:465.687587pt;}
.x1b_c00230{left:474.953987pt;}
.x21_c00230{left:484.774787pt;}
.x55_c00230{left:493.913587pt;}
.xe_c00230{left:494.899187pt;}
.x53_c00230{left:502.981987pt;}
.x3d_c00230{left:504.618787pt;}
.x1c_c00230{left:513.577187pt;}
.x18_c00230{left:514.483587pt;}
.x4a_c00230{left:523.666387pt;}
.x37_c00230{left:524.625587pt;}
.x47_c00230{left:533.245187pt;}
.x59_c00230{left:536.479187pt;}
.x3e_c00230{left:541.943987pt;}
.x22_c00230{left:543.668787pt;}
.x2d_c00230{left:544.896387pt;}
.x1d_c00230{left:553.498387pt;}
.x2_c00230{left:562.337987pt;}
.x32_c00230{left:571.437187pt;}
.xf_c00230{left:573.364387pt;}
.x2a_c00230{left:581.869587pt;}
.x45_c00230{left:590.722387pt;}
.x56_c00230{left:591.853187pt;}
.x54_c00230{left:601.185587pt;}
.x23_c00230{left:602.267987pt;}
.x10_c00230{left:611.472787pt;}
.x19_c00230{left:612.739987pt;}
.x48_c00230{left:620.791987pt;}
.x2e_c00230{left:622.226387pt;}
.x38_c00230{left:630.907587pt;}
.x5a_c00230{left:664.079187pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a2f5908c224b5af08e2c622f.woff2')format("woff");}.ff1_c00231{font-family:ff1_c00231;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00231;src:url('chunks/assets/font_a209e5c713e55db17ca6ea53.woff2')format("woff");}.ff2_c00231{font-family:ff2_c00231;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00231;src:url('chunks/assets/font_41cd94b5478f87bee9b77c0a.woff2')format("woff");}.ff3_c00231{font-family:ff3_c00231;line-height:0.666000;font-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_c00231{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);}
.mb2_c00231{transform:matrix(0.121429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121429,0.000000,0.000000,0.250000,0,0);}
.mb1_c00231{transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);}
.m37_c00231{transform:matrix(0.172298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172298,0.000000,0.000000,0.250000,0,0);}
.mb4_c00231{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m36_c00231{transform:matrix(0.175676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175676,0.000000,0.000000,0.250000,0,0);}
.m38_c00231{transform:matrix(0.189188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189188,0.000000,0.000000,0.250000,0,0);}
.m6f_c00231{transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);}
.mb3_c00231{transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);}
.m6e_c00231{transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);}
.m1d_c00231{transform:matrix(0.210938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210938,0.000000,0.000000,0.250000,0,0);}
.m4a_c00231{transform:matrix(0.219467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219467,0.000000,0.000000,0.250000,0,0);}
.mb0_c00231{transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);}
.mb5_c00231{transform:matrix(0.229356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229356,0.000000,0.000000,0.250000,0,0);}
.m39_c00231{transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);}
.ma5_c00231{transform:matrix(0.235340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235340,0.000000,0.000000,0.250000,0,0);}
.m56_c00231{transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);}
.m5d_c00231{transform:matrix(0.242773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242773,0.000000,0.000000,0.250000,0,0);}
.mc2_c00231{transform:matrix(0.246148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246148,0.000000,0.000000,0.250000,0,0);}
.m93_c00231{transform:matrix(0.246976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246976,0.000000,0.000000,0.250000,0,0);}
.m0_c00231{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00231{transform:matrix(0.252101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252101,0.000000,0.000000,0.250000,0,0);}
.m32_c00231{transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);}
.m44_c00231{transform:matrix(0.253550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253550,0.000000,0.000000,0.250000,0,0);}
.m7f_c00231{transform:matrix(0.254360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254360,0.000000,0.000000,0.250000,0,0);}
.m25_c00231{transform:matrix(0.254416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254416,0.000000,0.000000,0.250000,0,0);}
.mbf_c00231{transform:matrix(0.256070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256070,0.000000,0.000000,0.250000,0,0);}
.mb9_c00231{transform:matrix(0.257917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257917,0.000000,0.000000,0.250000,0,0);}
.ma9_c00231{transform:matrix(0.258227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258227,0.000000,0.000000,0.250000,0,0);}
.m7_c00231{transform:matrix(0.258321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258321,0.000000,0.000000,0.250000,0,0);}
.m4f_c00231{transform:matrix(0.258363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258363,0.000000,0.000000,0.250000,0,0);}
.m4c_c00231{transform:matrix(0.258620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258620,0.000000,0.000000,0.250000,0,0);}
.ma3_c00231{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m19_c00231{transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);}
.m23_c00231{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m87_c00231{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.m3_c00231{transform:matrix(0.262256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262256,0.000000,0.000000,0.250000,0,0);}
.m9d_c00231{transform:matrix(0.262649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262649,0.000000,0.000000,0.250000,0,0);}
.m8a_c00231{transform:matrix(0.262708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262708,0.000000,0.000000,0.250000,0,0);}
.m1_c00231{transform:matrix(0.262957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262957,0.000000,0.000000,0.250000,0,0);}
.m35_c00231{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m5_c00231{transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);}
.m15_c00231{transform:matrix(0.264220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264220,0.000000,0.000000,0.250000,0,0);}
.m41_c00231{transform:matrix(0.264697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264697,0.000000,0.000000,0.250000,0,0);}
.m3d_c00231{transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);}
.m47_c00231{transform:matrix(0.265700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265700,0.000000,0.000000,0.250000,0,0);}
.m3a_c00231{transform:matrix(0.265816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265816,0.000000,0.000000,0.250000,0,0);}
.m65_c00231{transform:matrix(0.265986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265986,0.000000,0.000000,0.250000,0,0);}
.mcb_c00231{transform:matrix(0.266021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266021,0.000000,0.000000,0.250000,0,0);}
.m1a_c00231{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m76_c00231{transform:matrix(0.266699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266699,0.000000,0.000000,0.250000,0,0);}
.m2b_c00231{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m3f_c00231{transform:matrix(0.268484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268484,0.000000,0.000000,0.250000,0,0);}
.m18_c00231{transform:matrix(0.268624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268624,0.000000,0.000000,0.250000,0,0);}
.m92_c00231{transform:matrix(0.268694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268694,0.000000,0.000000,0.250000,0,0);}
.m60_c00231{transform:matrix(0.270180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270180,0.000000,0.000000,0.250000,0,0);}
.md_c00231{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.mab_c00231{transform:matrix(0.271514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271514,0.000000,0.000000,0.250000,0,0);}
.ma7_c00231{transform:matrix(0.272153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272153,0.000000,0.000000,0.250000,0,0);}
.m4d_c00231{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m26_c00231{transform:matrix(0.272544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272544,0.000000,0.000000,0.250000,0,0);}
.m6c_c00231{transform:matrix(0.274018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274018,0.000000,0.000000,0.250000,0,0);}
.m1b_c00231{transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);}
.mae_c00231{transform:matrix(0.274278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274278,0.000000,0.000000,0.250000,0,0);}
.m61_c00231{transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);}
.m49_c00231{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.maa_c00231{transform:matrix(0.275566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275566,0.000000,0.000000,0.250000,0,0);}
.m78_c00231{transform:matrix(0.276482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276482,0.000000,0.000000,0.250000,0,0);}
.m5f_c00231{transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);}
.m77_c00231{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.mc_c00231{transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);}
.mb8_c00231{transform:matrix(0.278338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278338,0.000000,0.000000,0.250000,0,0);}
.m74_c00231{transform:matrix(0.278571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278571,0.000000,0.000000,0.250000,0,0);}
.m2f_c00231{transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);}
.m90_c00231{transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00231{transform:matrix(0.279864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279864,0.000000,0.000000,0.250000,0,0);}
.m70_c00231{transform:matrix(0.280783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280783,0.000000,0.000000,0.250000,0,0);}
.m86_c00231{transform:matrix(0.281112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281112,0.000000,0.000000,0.250000,0,0);}
.m21_c00231{transform:matrix(0.281469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281469,0.000000,0.000000,0.250000,0,0);}
.m96_c00231{transform:matrix(0.281515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281515,0.000000,0.000000,0.250000,0,0);}
.m30_c00231{transform:matrix(0.281605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281605,0.000000,0.000000,0.250000,0,0);}
.m9b_c00231{transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);}
.mcf_c00231{transform:matrix(0.282744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282744,0.000000,0.000000,0.250000,0,0);}
.m8_c00231{transform:matrix(0.283223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283223,0.000000,0.000000,0.250000,0,0);}
.me_c00231{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m40_c00231{transform:matrix(0.284878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284878,0.000000,0.000000,0.250000,0,0);}
.m2e_c00231{transform:matrix(0.285571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285571,0.000000,0.000000,0.250000,0,0);}
.m98_c00231{transform:matrix(0.285694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285694,0.000000,0.000000,0.250000,0,0);}
.m80_c00231{transform:matrix(0.286199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286199,0.000000,0.000000,0.250000,0,0);}
.ma6_c00231{transform:matrix(0.286659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286659,0.000000,0.000000,0.250000,0,0);}
.m99_c00231{transform:matrix(0.286698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286698,0.000000,0.000000,0.250000,0,0);}
.m5a_c00231{transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);}
.mbc_c00231{transform:matrix(0.287283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287283,0.000000,0.000000,0.250000,0,0);}
.m16_c00231{transform:matrix(0.287771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287771,0.000000,0.000000,0.250000,0,0);}
.m95_c00231{transform:matrix(0.287961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287961,0.000000,0.000000,0.250000,0,0);}
.m67_c00231{transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);}
.ma0_c00231{transform:matrix(0.288773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288773,0.000000,0.000000,0.250000,0,0);}
.m7d_c00231{transform:matrix(0.288937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288937,0.000000,0.000000,0.250000,0,0);}
.mf_c00231{transform:matrix(0.289026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289026,0.000000,0.000000,0.250000,0,0);}
.m6d_c00231{transform:matrix(0.289344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289344,0.000000,0.000000,0.250000,0,0);}
.m73_c00231{transform:matrix(0.289424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289424,0.000000,0.000000,0.250000,0,0);}
.mba_c00231{transform:matrix(0.289956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289956,0.000000,0.000000,0.250000,0,0);}
.ma_c00231{transform:matrix(0.290155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290155,0.000000,0.000000,0.250000,0,0);}
.m51_c00231{transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);}
.m53_c00231{transform:matrix(0.290656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290656,0.000000,0.000000,0.250000,0,0);}
.m63_c00231{transform:matrix(0.290735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290735,0.000000,0.000000,0.250000,0,0);}
.m97_c00231{transform:matrix(0.290893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290893,0.000000,0.000000,0.250000,0,0);}
.m59_c00231{transform:matrix(0.291314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291314,0.000000,0.000000,0.250000,0,0);}
.m6b_c00231{transform:matrix(0.292277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292277,0.000000,0.000000,0.250000,0,0);}
.mc9_c00231{transform:matrix(0.292277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292277,0.000000,0.000000,0.250000,0,0);}
.m91_c00231{transform:matrix(0.292556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292556,0.000000,0.000000,0.250000,0,0);}
.m43_c00231{transform:matrix(0.292807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292807,0.000000,0.000000,0.250000,0,0);}
.m7b_c00231{transform:matrix(0.292954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292954,0.000000,0.000000,0.250000,0,0);}
.m83_c00231{transform:matrix(0.293095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293095,0.000000,0.000000,0.250000,0,0);}
.m20_c00231{transform:matrix(0.293214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293214,0.000000,0.000000,0.250000,0,0);}
.mc6_c00231{transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);}
.m1c_c00231{transform:matrix(0.293936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293936,0.000000,0.000000,0.250000,0,0);}
.m84_c00231{transform:matrix(0.294323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294323,0.000000,0.000000,0.250000,0,0);}
.m57_c00231{transform:matrix(0.294727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294727,0.000000,0.000000,0.250000,0,0);}
.m88_c00231{transform:matrix(0.295150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295150,0.000000,0.000000,0.250000,0,0);}
.m14_c00231{transform:matrix(0.295247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295247,0.000000,0.000000,0.250000,0,0);}
.m7a_c00231{transform:matrix(0.295398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295398,0.000000,0.000000,0.250000,0,0);}
.m22_c00231{transform:matrix(0.295700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295700,0.000000,0.000000,0.250000,0,0);}
.mc3_c00231{transform:matrix(0.295733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295733,0.000000,0.000000,0.250000,0,0);}
.m5e_c00231{transform:matrix(0.296568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296568,0.000000,0.000000,0.250000,0,0);}
.m33_c00231{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m4b_c00231{transform:matrix(0.297370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297370,0.000000,0.000000,0.250000,0,0);}
.m1f_c00231{transform:matrix(0.297712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297712,0.000000,0.000000,0.250000,0,0);}
.maf_c00231{transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);}
.m6_c00231{transform:matrix(0.298405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298405,0.000000,0.000000,0.250000,0,0);}
.m54_c00231{transform:matrix(0.299812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299812,0.000000,0.000000,0.250000,0,0);}
.mc8_c00231{transform:matrix(0.300487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300487,0.000000,0.000000,0.250000,0,0);}
.m34_c00231{transform:matrix(0.300521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300521,0.000000,0.000000,0.250000,0,0);}
.m9f_c00231{transform:matrix(0.300674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300674,0.000000,0.000000,0.250000,0,0);}
.m3e_c00231{transform:matrix(0.300711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300711,0.000000,0.000000,0.250000,0,0);}
.mb_c00231{transform:matrix(0.300739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300739,0.000000,0.000000,0.250000,0,0);}
.m68_c00231{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m8f_c00231{transform:matrix(0.303446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303446,0.000000,0.000000,0.250000,0,0);}
.m72_c00231{transform:matrix(0.303938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303938,0.000000,0.000000,0.250000,0,0);}
.m2c_c00231{transform:matrix(0.305398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305398,0.000000,0.000000,0.250000,0,0);}
.m82_c00231{transform:matrix(0.305409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305409,0.000000,0.000000,0.250000,0,0);}
.m12_c00231{transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);}
.m85_c00231{transform:matrix(0.306386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306386,0.000000,0.000000,0.250000,0,0);}
.ma4_c00231{transform:matrix(0.307416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307416,0.000000,0.000000,0.250000,0,0);}
.m8d_c00231{transform:matrix(0.307645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307645,0.000000,0.000000,0.250000,0,0);}
.m58_c00231{transform:matrix(0.307706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307706,0.000000,0.000000,0.250000,0,0);}
.m4e_c00231{transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);}
.m75_c00231{transform:matrix(0.308079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308079,0.000000,0.000000,0.250000,0,0);}
.m94_c00231{transform:matrix(0.308151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308151,0.000000,0.000000,0.250000,0,0);}
.m17_c00231{transform:matrix(0.308280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308280,0.000000,0.000000,0.250000,0,0);}
.m2a_c00231{transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);}
.mbb_c00231{transform:matrix(0.309919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309919,0.000000,0.000000,0.250000,0,0);}
.mce_c00231{transform:matrix(0.310694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310694,0.000000,0.000000,0.250000,0,0);}
.m2_c00231{transform:matrix(0.310875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310875,0.000000,0.000000,0.250000,0,0);}
.m3c_c00231{transform:matrix(0.311442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311442,0.000000,0.000000,0.250000,0,0);}
.m69_c00231{transform:matrix(0.312094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312094,0.000000,0.000000,0.250000,0,0);}
.m5c_c00231{transform:matrix(0.313638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313638,0.000000,0.000000,0.250000,0,0);}
.m8b_c00231{transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);}
.ma1_c00231{transform:matrix(0.314182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314182,0.000000,0.000000,0.250000,0,0);}
.m6a_c00231{transform:matrix(0.314792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314792,0.000000,0.000000,0.250000,0,0);}
.mb7_c00231{transform:matrix(0.315389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315389,0.000000,0.000000,0.250000,0,0);}
.m52_c00231{transform:matrix(0.315442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315442,0.000000,0.000000,0.250000,0,0);}
.mca_c00231{transform:matrix(0.317023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317023,0.000000,0.000000,0.250000,0,0);}
.m64_c00231{transform:matrix(0.317147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317147,0.000000,0.000000,0.250000,0,0);}
.m13_c00231{transform:matrix(0.317516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317516,0.000000,0.000000,0.250000,0,0);}
.m62_c00231{transform:matrix(0.317925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317925,0.000000,0.000000,0.250000,0,0);}
.m50_c00231{transform:matrix(0.319096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319096,0.000000,0.000000,0.250000,0,0);}
.m48_c00231{transform:matrix(0.319290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319290,0.000000,0.000000,0.250000,0,0);}
.m8c_c00231{transform:matrix(0.320893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320893,0.000000,0.000000,0.250000,0,0);}
.m9a_c00231{transform:matrix(0.320963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320963,0.000000,0.000000,0.250000,0,0);}
.m79_c00231{transform:matrix(0.321107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321107,0.000000,0.000000,0.250000,0,0);}
.m45_c00231{transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);}
.m46_c00231{transform:matrix(0.321773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321773,0.000000,0.000000,0.250000,0,0);}
.m71_c00231{transform:matrix(0.322646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322646,0.000000,0.000000,0.250000,0,0);}
.m9e_c00231{transform:matrix(0.323385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323385,0.000000,0.000000,0.250000,0,0);}
.mc0_c00231{transform:matrix(0.324028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324028,0.000000,0.000000,0.250000,0,0);}
.m3b_c00231{transform:matrix(0.326049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326049,0.000000,0.000000,0.250000,0,0);}
.mbe_c00231{transform:matrix(0.326126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326126,0.000000,0.000000,0.250000,0,0);}
.m2d_c00231{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.mcd_c00231{transform:matrix(0.327436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327436,0.000000,0.000000,0.250000,0,0);}
.m31_c00231{transform:matrix(0.329080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329080,0.000000,0.000000,0.250000,0,0);}
.m11_c00231{transform:matrix(0.330019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330019,0.000000,0.000000,0.250000,0,0);}
.m29_c00231{transform:matrix(0.330299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330299,0.000000,0.000000,0.250000,0,0);}
.m24_c00231{transform:matrix(0.331222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331222,0.000000,0.000000,0.250000,0,0);}
.m66_c00231{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m89_c00231{transform:matrix(0.333623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333623,0.000000,0.000000,0.250000,0,0);}
.m10_c00231{transform:matrix(0.336403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336403,0.000000,0.000000,0.250000,0,0);}
.mad_c00231{transform:matrix(0.336419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336419,0.000000,0.000000,0.250000,0,0);}
.m4_c00231{transform:matrix(0.337014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337014,0.000000,0.000000,0.250000,0,0);}
.mcc_c00231{transform:matrix(0.338003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338003,0.000000,0.000000,0.250000,0,0);}
.m28_c00231{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.ma2_c00231{transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);}
.m7c_c00231{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.m55_c00231{transform:matrix(0.346365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346365,0.000000,0.000000,0.250000,0,0);}
.mc7_c00231{transform:matrix(0.346796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346796,0.000000,0.000000,0.250000,0,0);}
.m27_c00231{transform:matrix(0.347013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347013,0.000000,0.000000,0.250000,0,0);}
.m8e_c00231{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m81_c00231{transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);}
.mac_c00231{transform:matrix(0.353815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353815,0.000000,0.000000,0.250000,0,0);}
.m7e_c00231{transform:matrix(0.354899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354899,0.000000,0.000000,0.250000,0,0);}
.mc4_c00231{transform:matrix(0.355345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355345,0.000000,0.000000,0.250000,0,0);}
.ma8_c00231{transform:matrix(0.361926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361926,0.000000,0.000000,0.250000,0,0);}
.m42_c00231{transform:matrix(0.365181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365181,0.000000,0.000000,0.250000,0,0);}
.m9c_c00231{transform:matrix(0.384181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384181,0.000000,0.000000,0.250000,0,0);}
.mb6_c00231{transform:matrix(0.402409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402409,0.000000,0.000000,0.250000,0,0);}
.m5b_c00231{transform:matrix(0.423078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423078,0.000000,0.000000,0.250000,0,0);}
.m9_c00231{transform:matrix(0.424628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424628,0.000000,0.000000,0.250000,0,0);}
.mc5_c00231{transform:matrix(0.440744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440744,0.000000,0.000000,0.250000,0,0);}
.v0_c00231{vertical-align:0.000000px;}
.lsd_c00231{letter-spacing:-2.744280px;}
.ls12_c00231{letter-spacing:-2.399285px;}
.ls16_c00231{letter-spacing:-2.391444px;}
.lsc_c00231{letter-spacing:-2.375762px;}
.ls8_c00231{letter-spacing:-2.022926px;}
.ls14_c00231{letter-spacing:-1.772021px;}
.lse_c00231{letter-spacing:-1.364299px;}
.ls15_c00231{letter-spacing:-0.376358px;}
.ls3_c00231{letter-spacing:0.000000px;}
.ls1_c00231{letter-spacing:0.125453px;}
.ls7_c00231{letter-spacing:0.250906px;}
.ls17_c00231{letter-spacing:0.588060px;}
.ls11_c00231{letter-spacing:1.599523px;}
.ls18_c00231{letter-spacing:1.685772px;}
.ls13_c00231{letter-spacing:2.226787px;}
.ls10_c00231{letter-spacing:2.759962px;}
.ls2_c00231{letter-spacing:2.971663px;}
.ls19_c00231{letter-spacing:3.010867px;}
.ls0_c00231{letter-spacing:3.261773px;}
.ls4_c00231{letter-spacing:3.643200px;}
.lsa_c00231{letter-spacing:3.653813px;}
.ls5_c00231{letter-spacing:3.724380px;}
.ls6_c00231{letter-spacing:3.920400px;}
.lsf_c00231{letter-spacing:49.896198px;}
.ls9_c00231{letter-spacing:51.321798px;}
.lsb_c00231{letter-spacing:52.747398px;}
.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;}
}
.ws3_c00231{word-spacing:-23.255813px;}
.ws9_c00231{word-spacing:-22.573663px;}
.ws7_c00231{word-spacing:-21.828787px;}
.ws1_c00231{word-spacing:-19.852906px;}
.ws0_c00231{word-spacing:-19.602000px;}
.ws4_c00231{word-spacing:-18.237701px;}
.ws2_c00231{word-spacing:-17.579074px;}
.ws6_c00231{word-spacing:-1.019304px;}
.wsa_c00231{word-spacing:0.000000px;}
.ws5_c00231{word-spacing:2.822688px;}
.ws8_c00231{word-spacing:5.018112px;}
._b_c00231{margin-left:-11.682792px;}
._0_c00231{margin-left:-10.193040px;}
._1a_c00231{margin-left:-8.953006px;}
._14_c00231{margin-left:-1.097712px;}
._3_c00231{width:1.285891px;}
._2_c00231{width:2.556497px;}
._5_c00231{width:4.940100px;}
._7_c00231{width:6.272640px;}
._a_c00231{width:7.762392px;}
._9_c00231{width:9.173340px;}
._13_c00231{width:11.447568px;}
._18_c00231{width:12.780504px;}
._4_c00231{width:13.912272px;}
._16_c00231{width:17.484984px;}
._f_c00231{width:21.639816px;}
._19_c00231{width:23.154912px;}
._12_c00231{width:24.532200px;}
._e_c00231{width:26.281570px;}
._8_c00231{width:29.723522px;}
._d_c00231{width:30.971160px;}
._6_c00231{width:32.808600px;}
._10_c00231{width:33.952248px;}
._1_c00231{width:39.595248px;}
._17_c00231{width:40.929372px;}
._c_c00231{width:42.253200px;}
._15_c00231{width:44.927784px;}
._11_c00231{width:48.768984px;}
.fc0_c00231{color:transparent;}
.fs0_c00231{font-size:22.176000px;}
.fs1_c00231{font-size:38.808000px;}
.fsa_c00231{font-size:49.896198px;}
.fs5_c00231{font-size:51.321798px;}
.fs8_c00231{font-size:52.747398px;}
.fs4_c00231{font-size:66.330000px;}
.fs9_c00231{font-size:70.884000px;}
.fs2_c00231{font-size:72.864000px;}
.fs7_c00231{font-size:74.844000px;}
.fs3_c00231{font-size:78.408000px;}
.fs6_c00231{font-size:78.804000px;}
.y0_c00231{bottom:0.000000px;}
.y2_c00231{bottom:60.138585px;}
.y1_c00231{bottom:76.500000px;}
.y1c_c00231{bottom:146.387385px;}
.y1b_c00231{bottom:178.111935px;}
.y1a_c00231{bottom:212.682735px;}
.y19_c00231{bottom:245.827935px;}
.y18_c00231{bottom:277.547535px;}
.y17_c00231{bottom:309.618585px;}
.y16_c00231{bottom:341.694585px;}
.y15_c00231{bottom:373.419135px;}
.y14_c00231{bottom:405.851535px;}
.y13_c00231{bottom:470.354985px;}
.y12_c00231{bottom:503.148735px;}
.y11_c00231{bottom:534.868335px;}
.y10_c00231{bottom:566.939385px;}
.yf_c00231{bottom:599.728185px;}
.ye_c00231{bottom:648.554985px;}
.yd_c00231{bottom:658.182735px;}
.yc_c00231{bottom:690.615135px;}
.yb_c00231{bottom:723.403935px;}
.ya_c00231{bottom:755.474985px;}
.y9_c00231{bottom:787.907385px;}
.y8_c00231{bottom:820.696185px;}
.y7_c00231{bottom:853.128585px;}
.y6_c00231{bottom:885.209535px;}
.y5_c00231{bottom:920.488185px;}
.y4_c00231{bottom:1069.106985px;}
.y3_c00231{bottom:1105.103385px;}
.h2_c00231{height:23.128875px;}
.hc_c00231{height:33.230868px;}
.h7_c00231{height:34.180317px;}
.ha_c00231{height:35.129767px;}
.h3_c00231{height:40.475531px;}
.h6_c00231{height:69.180117px;}
.hb_c00231{height:69.568770px;}
.h4_c00231{height:71.512031px;}
.h9_c00231{height:73.455293px;}
.h5_c00231{height:76.953164px;}
.h8_c00231{height:77.341816px;}
.h1_c00231{height:1110.000000px;}
.h0_c00231{height:1263.000000px;}
.w1_c00231{width:751.500000px;}
.w0_c00231{width:892.500000px;}
.x0_c00231{left:0.000000px;}
.x2_c00231{left:52.589235px;}
.x17_c00231{left:60.182535px;}
.x40_c00231{left:61.335885px;}
.x5c_c00231{left:63.825735px;}
.x1_c00231{left:70.500000px;}
.x50_c00231{left:82.794135px;}
.x41_c00231{left:93.807885px;}
.x67_c00231{left:104.732535px;}
.x25_c00231{left:105.880935px;}
.x6_c00231{left:115.998735px;}
.x37_c00231{left:126.888735px;}
.x62_c00231{left:127.948035px;}
.x2c_c00231{left:137.803485px;}
.x18_c00231{left:149.416185px;}
.x6f_c00231{left:158.831085px;}
.x7_c00231{left:160.063635px;}
.x45_c00231{left:170.953635px;}
.x4d_c00231{left:181.358535px;}
.x2d_c00231{left:182.888085px;}
.x38_c00231{left:193.253385px;}
.x46_c00231{left:204.618585px;}
.x19_c00231{left:206.682735px;}
.x39_c00231{left:213.721635px;}
.x26_c00231{left:215.548185px;}
.x52_c00231{left:224.809635px;}
.x8_c00231{left:226.759935px;}
.x73_c00231{left:227.789535px;}
.x1a_c00231{left:236.214435px;}
.x9_c00231{left:238.154835px;}
.x2e_c00231{left:248.648835px;}
.x57_c00231{left:250.059585px;}
.x4e_c00231{left:258.613185px;}
.x1b_c00231{left:259.627935px;}
.x5a_c00231{left:269.003235px;}
.x2f_c00231{left:270.102135px;}
.xa_c00231{left:271.235685px;}
.x30_c00231{left:281.056485px;}
.x3a_c00231{left:292.490985px;}
.x5b_c00231{left:302.103885px;}
.xb_c00231{left:303.361185px;}
.x27_c00231{left:305.722335px;}
.x47_c00231{left:312.840435px;}
.x31_c00231{left:314.063085px;}
.x3b_c00231{left:323.888835px;}
.xc_c00231{left:325.443135px;}
.x74_c00231{left:326.873685px;}
.x58_c00231{left:336.159885px;}
.x1c_c00231{left:337.164735px;}
.x32_c00231{left:347.158785px;}
.x42_c00231{left:348.237885px;}
.x48_c00231{left:358.256685px;}
.x72_c00231{left:359.989185px;}
.xd_c00231{left:369.057585px;}
.x63_c00231{left:370.275285px;}
.x66_c00231{left:379.452585px;}
.x54_c00231{left:380.571285px;}
.x3c_c00231{left:391.763235px;}
.x5f_c00231{left:392.807685px;}
.x43_c00231{left:394.208535px;}
.xe_c00231{left:402.974985px;}
.x1d_c00231{left:413.270985px;}
.x28_c00231{left:424.136235px;}
.x5d_c00231{left:425.606385px;}
.xf_c00231{left:435.041085px;}
.x68_c00231{left:445.064835px;}
.x33_c00231{left:446.465685px;}
.x3d_c00231{left:447.569535px;}
.x10_c00231{left:457.603185px;}
.x29_c00231{left:468.626835px;}
.x69_c00231{left:477.814035px;}
.x5e_c00231{left:478.947585px;}
.x11_c00231{left:480.457335px;}
.x64_c00231{left:482.179935px;}
.x1e_c00231{left:490.233585px;}
.x1f_c00231{left:500.663235px;}
.x34_c00231{left:502.524435px;}
.x4f_c00231{left:512.454135px;}
.x12_c00231{left:513.637185px;}
.x44_c00231{left:522.982785px;}
.x20_c00231{left:524.655885px;}
.x60_c00231{left:526.017135px;}
.x51_c00231{left:527.670435px;}
.x35_c00231{left:533.095635px;}
.x53_c00231{left:534.417285px;}
.x55_c00231{left:535.669635px;}
.x6a_c00231{left:536.892285px;}
.x2a_c00231{left:545.381535px;}
.x65_c00231{left:546.782385px;}
.x49_c00231{left:556.236885px;}
.x6c_c00231{left:557.335785px;}
.x13_c00231{left:566.240835px;}
.x21_c00231{left:567.270435px;}
.x4a_c00231{left:575.061735px;}
.x2b_c00231{left:578.031735px;}
.x6d_c00231{left:579.081135px;}
.x22_c00231{left:589.817685px;}
.x59_c00231{left:599.346435px;}
.x14_c00231{left:600.583935px;}
.x6e_c00231{left:601.885785px;}
.x6b_c00231{left:602.999535px;}
.x23_c00231{left:611.662035px;}
.x15_c00231{left:623.071785px;}
.x3e_c00231{left:624.635985px;}
.x24_c00231{left:633.412335px;}
.x4_c00231{left:645.148785px;}
.x3_c00231{left:649.489935px;}
.x36_c00231{left:654.271635px;}
.x75_c00231{left:655.573485px;}
.x5_c00231{left:657.008985px;}
.x56_c00231{left:666.186285px;}
.x4b_c00231{left:668.473185px;}
.x16_c00231{left:677.833635px;}
.x4c_c00231{left:688.352385px;}
.x61_c00231{left:698.945385px;}
.x70_c00231{left:700.019535px;}
.x3f_c00231{left:709.993785px;}
.x71_c00231{left:723.819135px;}
@media print{
.v0_c00231{vertical-align:0.000000pt;}
.lsd_c00231{letter-spacing:-2.439360pt;}
.ls12_c00231{letter-spacing:-2.132698pt;}
.ls16_c00231{letter-spacing:-2.125728pt;}
.lsc_c00231{letter-spacing:-2.111789pt;}
.ls8_c00231{letter-spacing:-1.798157pt;}
.ls14_c00231{letter-spacing:-1.575130pt;}
.lse_c00231{letter-spacing:-1.212710pt;}
.ls15_c00231{letter-spacing:-0.334541pt;}
.ls3_c00231{letter-spacing:0.000000pt;}
.ls1_c00231{letter-spacing:0.111514pt;}
.ls7_c00231{letter-spacing:0.223027pt;}
.ls17_c00231{letter-spacing:0.522720pt;}
.ls11_c00231{letter-spacing:1.421798pt;}
.ls18_c00231{letter-spacing:1.498464pt;}
.ls13_c00231{letter-spacing:1.979366pt;}
.ls10_c00231{letter-spacing:2.453299pt;}
.ls2_c00231{letter-spacing:2.641478pt;}
.ls19_c00231{letter-spacing:2.676326pt;}
.ls0_c00231{letter-spacing:2.899354pt;}
.ls4_c00231{letter-spacing:3.238400pt;}
.lsa_c00231{letter-spacing:3.247834pt;}
.ls5_c00231{letter-spacing:3.310560pt;}
.ls6_c00231{letter-spacing:3.484800pt;}
.lsf_c00231{letter-spacing:44.352176pt;}
.ls9_c00231{letter-spacing:45.619376pt;}
.lsb_c00231{letter-spacing:46.886576pt;}
.ws3_c00231{word-spacing:-20.671834pt;}
.ws9_c00231{word-spacing:-20.065478pt;}
.ws7_c00231{word-spacing:-19.403366pt;}
.ws1_c00231{word-spacing:-17.647027pt;}
.ws0_c00231{word-spacing:-17.424000pt;}
.ws4_c00231{word-spacing:-16.211290pt;}
.ws2_c00231{word-spacing:-15.625843pt;}
.ws6_c00231{word-spacing:-0.906048pt;}
.wsa_c00231{word-spacing:0.000000pt;}
.ws5_c00231{word-spacing:2.509056pt;}
.ws8_c00231{word-spacing:4.460544pt;}
._b_c00231{margin-left:-10.384704pt;}
._0_c00231{margin-left:-9.060480pt;}
._1a_c00231{margin-left:-7.958227pt;}
._14_c00231{margin-left:-0.975744pt;}
._3_c00231{width:1.143014pt;}
._2_c00231{width:2.272442pt;}
._5_c00231{width:4.391200pt;}
._7_c00231{width:5.575680pt;}
._a_c00231{width:6.899904pt;}
._9_c00231{width:8.154080pt;}
._13_c00231{width:10.175616pt;}
._18_c00231{width:11.360448pt;}
._4_c00231{width:12.366464pt;}
._16_c00231{width:15.542208pt;}
._f_c00231{width:19.235392pt;}
._19_c00231{width:20.582144pt;}
._12_c00231{width:21.806400pt;}
._e_c00231{width:23.361395pt;}
._8_c00231{width:26.420909pt;}
._d_c00231{width:27.529920pt;}
._6_c00231{width:29.163200pt;}
._10_c00231{width:30.179776pt;}
._1_c00231{width:35.195776pt;}
._17_c00231{width:36.381664pt;}
._c_c00231{width:37.558400pt;}
._15_c00231{width:39.935808pt;}
._11_c00231{width:43.350208pt;}
.fs0_c00231{font-size:19.712000pt;}
.fs1_c00231{font-size:34.496000pt;}
.fsa_c00231{font-size:44.352176pt;}
.fs5_c00231{font-size:45.619376pt;}
.fs8_c00231{font-size:46.886576pt;}
.fs4_c00231{font-size:58.960000pt;}
.fs9_c00231{font-size:63.008000pt;}
.fs2_c00231{font-size:64.768000pt;}
.fs7_c00231{font-size:66.528000pt;}
.fs3_c00231{font-size:69.696000pt;}
.fs6_c00231{font-size:70.048000pt;}
.y0_c00231{bottom:0.000000pt;}
.y2_c00231{bottom:53.456520pt;}
.y1_c00231{bottom:68.000000pt;}
.y1c_c00231{bottom:130.122120pt;}
.y1b_c00231{bottom:158.321720pt;}
.y1a_c00231{bottom:189.051320pt;}
.y19_c00231{bottom:218.513720pt;}
.y18_c00231{bottom:246.708920pt;}
.y17_c00231{bottom:275.216520pt;}
.y16_c00231{bottom:303.728520pt;}
.y15_c00231{bottom:331.928120pt;}
.y14_c00231{bottom:360.756920pt;}
.y13_c00231{bottom:418.093320pt;}
.y12_c00231{bottom:447.243320pt;}
.y11_c00231{bottom:475.438520pt;}
.y10_c00231{bottom:503.946120pt;}
.yf_c00231{bottom:533.091720pt;}
.ye_c00231{bottom:576.493320pt;}
.yd_c00231{bottom:585.051320pt;}
.yc_c00231{bottom:613.880120pt;}
.yb_c00231{bottom:643.025720pt;}
.ya_c00231{bottom:671.533320pt;}
.y9_c00231{bottom:700.362120pt;}
.y8_c00231{bottom:729.507720pt;}
.y7_c00231{bottom:758.336520pt;}
.y6_c00231{bottom:786.852920pt;}
.y5_c00231{bottom:818.211720pt;}
.y4_c00231{bottom:950.317320pt;}
.y3_c00231{bottom:982.314120pt;}
.h2_c00231{height:20.559000pt;}
.hc_c00231{height:29.538549pt;}
.h7_c00231{height:30.382504pt;}
.ha_c00231{height:31.226460pt;}
.h3_c00231{height:35.978250pt;}
.h6_c00231{height:61.493438pt;}
.hb_c00231{height:61.838906pt;}
.h4_c00231{height:63.566250pt;}
.h9_c00231{height:65.293594pt;}
.h5_c00231{height:68.402813pt;}
.h8_c00231{height:68.748281pt;}
.h1_c00231{height:986.666667pt;}
.h0_c00231{height:1122.666667pt;}
.w1_c00231{width:668.000000pt;}
.w0_c00231{width:793.333333pt;}
.x0_c00231{left:0.000000pt;}
.x2_c00231{left:46.745987pt;}
.x17_c00231{left:53.495587pt;}
.x40_c00231{left:54.520787pt;}
.x5c_c00231{left:56.733987pt;}
.x1_c00231{left:62.666667pt;}
.x50_c00231{left:73.594787pt;}
.x41_c00231{left:83.384787pt;}
.x67_c00231{left:93.095587pt;}
.x25_c00231{left:94.116387pt;}
.x6_c00231{left:103.109987pt;}
.x37_c00231{left:112.789987pt;}
.x62_c00231{left:113.731587pt;}
.x2c_c00231{left:122.491987pt;}
.x18_c00231{left:132.814387pt;}
.x6f_c00231{left:141.183187pt;}
.x7_c00231{left:142.278787pt;}
.x45_c00231{left:151.958787pt;}
.x4d_c00231{left:161.207587pt;}
.x2d_c00231{left:162.567187pt;}
.x38_c00231{left:171.780787pt;}
.x46_c00231{left:181.883187pt;}
.x19_c00231{left:183.717987pt;}
.x39_c00231{left:189.974787pt;}
.x26_c00231{left:191.598387pt;}
.x52_c00231{left:199.830787pt;}
.x8_c00231{left:201.564387pt;}
.x73_c00231{left:202.479587pt;}
.x1a_c00231{left:209.968387pt;}
.x9_c00231{left:211.693187pt;}
.x2e_c00231{left:221.021187pt;}
.x57_c00231{left:222.275187pt;}
.x4e_c00231{left:229.878387pt;}
.x1b_c00231{left:230.780387pt;}
.x5a_c00231{left:239.113987pt;}
.x2f_c00231{left:240.090787pt;}
.xa_c00231{left:241.098387pt;}
.x30_c00231{left:249.827987pt;}
.x3a_c00231{left:259.991987pt;}
.x5b_c00231{left:268.536787pt;}
.xb_c00231{left:269.654387pt;}
.x27_c00231{left:271.753187pt;}
.x47_c00231{left:278.080387pt;}
.x31_c00231{left:279.167187pt;}
.x3b_c00231{left:287.901187pt;}
.xc_c00231{left:289.282787pt;}
.x74_c00231{left:290.554387pt;}
.x58_c00231{left:298.808787pt;}
.x1c_c00231{left:299.701987pt;}
.x32_c00231{left:308.585587pt;}
.x42_c00231{left:309.544787pt;}
.x48_c00231{left:318.450387pt;}
.x72_c00231{left:319.990387pt;}
.xd_c00231{left:328.051187pt;}
.x63_c00231{left:329.133587pt;}
.x66_c00231{left:337.291187pt;}
.x54_c00231{left:338.285587pt;}
.x3c_c00231{left:348.233987pt;}
.x5f_c00231{left:349.162387pt;}
.x43_c00231{left:350.407587pt;}
.xe_c00231{left:358.199987pt;}
.x1d_c00231{left:367.351987pt;}
.x28_c00231{left:377.009987pt;}
.x5d_c00231{left:378.316787pt;}
.xf_c00231{left:386.703187pt;}
.x68_c00231{left:395.613187pt;}
.x33_c00231{left:396.858387pt;}
.x3d_c00231{left:397.839587pt;}
.x10_c00231{left:406.758387pt;}
.x29_c00231{left:416.557187pt;}
.x69_c00231{left:424.723587pt;}
.x5e_c00231{left:425.731187pt;}
.x11_c00231{left:427.073187pt;}
.x64_c00231{left:428.604387pt;}
.x1e_c00231{left:435.763187pt;}
.x1f_c00231{left:445.033987pt;}
.x34_c00231{left:446.688387pt;}
.x4f_c00231{left:455.514787pt;}
.x12_c00231{left:456.566387pt;}
.x44_c00231{left:464.873587pt;}
.x20_c00231{left:466.360787pt;}
.x60_c00231{left:467.570787pt;}
.x51_c00231{left:469.040387pt;}
.x35_c00231{left:473.862787pt;}
.x53_c00231{left:475.037587pt;}
.x55_c00231{left:476.150787pt;}
.x6a_c00231{left:477.237587pt;}
.x2a_c00231{left:484.783587pt;}
.x65_c00231{left:486.028787pt;}
.x49_c00231{left:494.432787pt;}
.x6c_c00231{left:495.409587pt;}
.x13_c00231{left:503.325187pt;}
.x21_c00231{left:504.240387pt;}
.x4a_c00231{left:511.165987pt;}
.x2b_c00231{left:513.805987pt;}
.x6d_c00231{left:514.738787pt;}
.x22_c00231{left:524.282387pt;}
.x59_c00231{left:532.752387pt;}
.x14_c00231{left:533.852387pt;}
.x6e_c00231{left:535.009587pt;}
.x6b_c00231{left:535.999587pt;}
.x23_c00231{left:543.699587pt;}
.x15_c00231{left:553.841587pt;}
.x3e_c00231{left:555.231987pt;}
.x24_c00231{left:563.033187pt;}
.x4_c00231{left:573.465587pt;}
.x3_c00231{left:577.324387pt;}
.x36_c00231{left:581.574787pt;}
.x75_c00231{left:582.731987pt;}
.x5_c00231{left:584.007987pt;}
.x56_c00231{left:592.165587pt;}
.x4b_c00231{left:594.198387pt;}
.x16_c00231{left:602.518787pt;}
.x4c_c00231{left:611.868787pt;}
.x61_c00231{left:621.284787pt;}
.x70_c00231{left:622.239587pt;}
.x3f_c00231{left:631.105587pt;}
.x71_c00231{left:643.394787pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f99920e716ab0f788230d1c5.woff2')format("woff");}.ff1_c00232{font-family:ff1_c00232;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00232;src:url('chunks/assets/font_3add2cfe313951a9c731f870.woff2')format("woff");}.ff2_c00232{font-family:ff2_c00232;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00232;src:url('chunks/assets/font_4caec64f76df8f0417cc0ddf.woff2')format("woff");}.ff3_c00232{font-family:ff3_c00232;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00232;src:url('chunks/assets/font_ea2e4c76ea74c8de39f9371e.woff2')format("woff");}.ff4_c00232{font-family:ff4_c00232;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m60_c00232{transform:matrix(0.141866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141866,0.000000,0.000000,0.250000,0,0);}
.m97_c00232{transform:matrix(0.162510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162510,0.000000,0.000000,0.250000,0,0);}
.m1_c00232{transform:matrix(0.184074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184074,0.000000,0.000000,0.250000,0,0);}
.m14_c00232{transform:matrix(0.196729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196729,0.000000,0.000000,0.250000,0,0);}
.m39_c00232{transform:matrix(0.213031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213031,0.000000,0.000000,0.250000,0,0);}
.m94_c00232{transform:matrix(0.221894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221894,0.000000,0.000000,0.250000,0,0);}
.m6c_c00232{transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);}
.m2e_c00232{transform:matrix(0.237881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237881,0.000000,0.000000,0.250000,0,0);}
.m5_c00232{transform:matrix(0.239745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239745,0.000000,0.000000,0.250000,0,0);}
.m5c_c00232{transform:matrix(0.249980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249980,0.000000,0.000000,0.250000,0,0);}
.m0_c00232{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00232{transform:matrix(0.250661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250661,0.000000,0.000000,0.250000,0,0);}
.m2a_c00232{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.m38_c00232{transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);}
.m6_c00232{transform:matrix(0.253753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253753,0.000000,0.000000,0.250000,0,0);}
.m63_c00232{transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);}
.m5a_c00232{transform:matrix(0.254597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254597,0.000000,0.000000,0.250000,0,0);}
.m44_c00232{transform:matrix(0.255030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255030,0.000000,0.000000,0.250000,0,0);}
.m41_c00232{transform:matrix(0.255468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255468,0.000000,0.000000,0.250000,0,0);}
.m13_c00232{transform:matrix(0.255599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255599,0.000000,0.000000,0.250000,0,0);}
.m83_c00232{transform:matrix(0.255860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255860,0.000000,0.000000,0.250000,0,0);}
.m5e_c00232{transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);}
.m1d_c00232{transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);}
.m32_c00232{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m33_c00232{transform:matrix(0.259617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259617,0.000000,0.000000,0.250000,0,0);}
.m4d_c00232{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m3_c00232{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.m77_c00232{transform:matrix(0.261624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261624,0.000000,0.000000,0.250000,0,0);}
.ma2_c00232{transform:matrix(0.263191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263191,0.000000,0.000000,0.250000,0,0);}
.m16_c00232{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.ma_c00232{transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);}
.m57_c00232{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m9e_c00232{transform:matrix(0.264886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264886,0.000000,0.000000,0.250000,0,0);}
.me_c00232{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m62_c00232{transform:matrix(0.266215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266215,0.000000,0.000000,0.250000,0,0);}
.m4c_c00232{transform:matrix(0.266509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266509,0.000000,0.000000,0.250000,0,0);}
.m6a_c00232{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m4a_c00232{transform:matrix(0.267925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267925,0.000000,0.000000,0.250000,0,0);}
.m35_c00232{transform:matrix(0.268275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268275,0.000000,0.000000,0.250000,0,0);}
.m48_c00232{transform:matrix(0.271712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271712,0.000000,0.000000,0.250000,0,0);}
.m3e_c00232{transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);}
.m53_c00232{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m18_c00232{transform:matrix(0.272544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272544,0.000000,0.000000,0.250000,0,0);}
.m9d_c00232{transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);}
.ma1_c00232{transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);}
.m8c_c00232{transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);}
.m4_c00232{transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);}
.m7a_c00232{transform:matrix(0.274878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274878,0.000000,0.000000,0.250000,0,0);}
.m1a_c00232{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m43_c00232{transform:matrix(0.275794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275794,0.000000,0.000000,0.250000,0,0);}
.ma0_c00232{transform:matrix(0.276764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276764,0.000000,0.000000,0.250000,0,0);}
.m52_c00232{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m1e_c00232{transform:matrix(0.277902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277902,0.000000,0.000000,0.250000,0,0);}
.m55_c00232{transform:matrix(0.277905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277905,0.000000,0.000000,0.250000,0,0);}
.m28_c00232{transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);}
.m96_c00232{transform:matrix(0.278581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278581,0.000000,0.000000,0.250000,0,0);}
.m1f_c00232{transform:matrix(0.278778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278778,0.000000,0.000000,0.250000,0,0);}
.m8_c00232{transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);}
.m73_c00232{transform:matrix(0.279995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279995,0.000000,0.000000,0.250000,0,0);}
.m17_c00232{transform:matrix(0.280086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280086,0.000000,0.000000,0.250000,0,0);}
.m6e_c00232{transform:matrix(0.281497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281497,0.000000,0.000000,0.250000,0,0);}
.mc_c00232{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.m8f_c00232{transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);}
.m80_c00232{transform:matrix(0.282218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282218,0.000000,0.000000,0.250000,0,0);}
.m7d_c00232{transform:matrix(0.282776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282776,0.000000,0.000000,0.250000,0,0);}
.m25_c00232{transform:matrix(0.283217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283217,0.000000,0.000000,0.250000,0,0);}
.m26_c00232{transform:matrix(0.283223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283223,0.000000,0.000000,0.250000,0,0);}
.m30_c00232{transform:matrix(0.283447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283447,0.000000,0.000000,0.250000,0,0);}
.m75_c00232{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m61_c00232{transform:matrix(0.283566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283566,0.000000,0.000000,0.250000,0,0);}
.m3f_c00232{transform:matrix(0.283583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283583,0.000000,0.000000,0.250000,0,0);}
.ma4_c00232{transform:matrix(0.284188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284188,0.000000,0.000000,0.250000,0,0);}
.m49_c00232{transform:matrix(0.284555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284555,0.000000,0.000000,0.250000,0,0);}
.m8a_c00232{transform:matrix(0.284786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284786,0.000000,0.000000,0.250000,0,0);}
.m20_c00232{transform:matrix(0.285107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285107,0.000000,0.000000,0.250000,0,0);}
.m67_c00232{transform:matrix(0.286659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286659,0.000000,0.000000,0.250000,0,0);}
.m92_c00232{transform:matrix(0.287215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287215,0.000000,0.000000,0.250000,0,0);}
.m34_c00232{transform:matrix(0.287284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287284,0.000000,0.000000,0.250000,0,0);}
.ma3_c00232{transform:matrix(0.287323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287323,0.000000,0.000000,0.250000,0,0);}
.m54_c00232{transform:matrix(0.287575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287575,0.000000,0.000000,0.250000,0,0);}
.m9f_c00232{transform:matrix(0.287876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287876,0.000000,0.000000,0.250000,0,0);}
.m76_c00232{transform:matrix(0.288205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288205,0.000000,0.000000,0.250000,0,0);}
.m4e_c00232{transform:matrix(0.288441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288441,0.000000,0.000000,0.250000,0,0);}
.m7c_c00232{transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);}
.m84_c00232{transform:matrix(0.288687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288687,0.000000,0.000000,0.250000,0,0);}
.m9b_c00232{transform:matrix(0.289652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289652,0.000000,0.000000,0.250000,0,0);}
.mf_c00232{transform:matrix(0.290019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290019,0.000000,0.000000,0.250000,0,0);}
.m23_c00232{transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);}
.m37_c00232{transform:matrix(0.290512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290512,0.000000,0.000000,0.250000,0,0);}
.m72_c00232{transform:matrix(0.291857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291857,0.000000,0.000000,0.250000,0,0);}
.m3b_c00232{transform:matrix(0.293098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293098,0.000000,0.000000,0.250000,0,0);}
.m24_c00232{transform:matrix(0.293607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293607,0.000000,0.000000,0.250000,0,0);}
.m74_c00232{transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);}
.m12_c00232{transform:matrix(0.294066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294066,0.000000,0.000000,0.250000,0,0);}
.m69_c00232{transform:matrix(0.295016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295016,0.000000,0.000000,0.250000,0,0);}
.m82_c00232{transform:matrix(0.295144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295144,0.000000,0.000000,0.250000,0,0);}
.m90_c00232{transform:matrix(0.295468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295468,0.000000,0.000000,0.250000,0,0);}
.m3c_c00232{transform:matrix(0.295700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295700,0.000000,0.000000,0.250000,0,0);}
.m22_c00232{transform:matrix(0.296144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296144,0.000000,0.000000,0.250000,0,0);}
.m36_c00232{transform:matrix(0.296536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296536,0.000000,0.000000,0.250000,0,0);}
.m45_c00232{transform:matrix(0.296854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296854,0.000000,0.000000,0.250000,0,0);}
.m4f_c00232{transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);}
.m58_c00232{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m2_c00232{transform:matrix(0.297864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297864,0.000000,0.000000,0.250000,0,0);}
.m10_c00232{transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);}
.m46_c00232{transform:matrix(0.300600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300600,0.000000,0.000000,0.250000,0,0);}
.m8d_c00232{transform:matrix(0.301074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301074,0.000000,0.000000,0.250000,0,0);}
.m70_c00232{transform:matrix(0.301463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301463,0.000000,0.000000,0.250000,0,0);}
.m15_c00232{transform:matrix(0.302297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302297,0.000000,0.000000,0.250000,0,0);}
.m93_c00232{transform:matrix(0.302362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302362,0.000000,0.000000,0.250000,0,0);}
.m64_c00232{transform:matrix(0.302940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302940,0.000000,0.000000,0.250000,0,0);}
.m81_c00232{transform:matrix(0.303100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303100,0.000000,0.000000,0.250000,0,0);}
.m85_c00232{transform:matrix(0.303352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303352,0.000000,0.000000,0.250000,0,0);}
.m47_c00232{transform:matrix(0.303530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303530,0.000000,0.000000,0.250000,0,0);}
.m40_c00232{transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);}
.m7e_c00232{transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);}
.m7_c00232{transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);}
.m42_c00232{transform:matrix(0.308280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308280,0.000000,0.000000,0.250000,0,0);}
.m21_c00232{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m51_c00232{transform:matrix(0.309246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309246,0.000000,0.000000,0.250000,0,0);}
.m5d_c00232{transform:matrix(0.310694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310694,0.000000,0.000000,0.250000,0,0);}
.m66_c00232{transform:matrix(0.310765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310765,0.000000,0.000000,0.250000,0,0);}
.mb_c00232{transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);}
.m71_c00232{transform:matrix(0.311987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311987,0.000000,0.000000,0.250000,0,0);}
.m59_c00232{transform:matrix(0.312910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312910,0.000000,0.000000,0.250000,0,0);}
.m9c_c00232{transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);}
.m7b_c00232{transform:matrix(0.315717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315717,0.000000,0.000000,0.250000,0,0);}
.m7f_c00232{transform:matrix(0.315917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315917,0.000000,0.000000,0.250000,0,0);}
.m89_c00232{transform:matrix(0.316703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316703,0.000000,0.000000,0.250000,0,0);}
.m68_c00232{transform:matrix(0.316778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316778,0.000000,0.000000,0.250000,0,0);}
.m88_c00232{transform:matrix(0.316807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316807,0.000000,0.000000,0.250000,0,0);}
.m99_c00232{transform:matrix(0.319540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319540,0.000000,0.000000,0.250000,0,0);}
.m6b_c00232{transform:matrix(0.320140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320140,0.000000,0.000000,0.250000,0,0);}
.m9_c00232{transform:matrix(0.320963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320963,0.000000,0.000000,0.250000,0,0);}
.m98_c00232{transform:matrix(0.321083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321083,0.000000,0.000000,0.250000,0,0);}
.m79_c00232{transform:matrix(0.323134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323134,0.000000,0.000000,0.250000,0,0);}
.m86_c00232{transform:matrix(0.323503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323503,0.000000,0.000000,0.250000,0,0);}
.m29_c00232{transform:matrix(0.324088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324088,0.000000,0.000000,0.250000,0,0);}
.m19_c00232{transform:matrix(0.324794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324794,0.000000,0.000000,0.250000,0,0);}
.m87_c00232{transform:matrix(0.326249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326249,0.000000,0.000000,0.250000,0,0);}
.m4b_c00232{transform:matrix(0.326261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326261,0.000000,0.000000,0.250000,0,0);}
.m1b_c00232{transform:matrix(0.326313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326313,0.000000,0.000000,0.250000,0,0);}
.m50_c00232{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m1c_c00232{transform:matrix(0.327350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327350,0.000000,0.000000,0.250000,0,0);}
.m6f_c00232{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.m5f_c00232{transform:matrix(0.330843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330843,0.000000,0.000000,0.250000,0,0);}
.m11_c00232{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m8b_c00232{transform:matrix(0.333713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333713,0.000000,0.000000,0.250000,0,0);}
.m8e_c00232{transform:matrix(0.334985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334985,0.000000,0.000000,0.250000,0,0);}
.m27_c00232{transform:matrix(0.335568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335568,0.000000,0.000000,0.250000,0,0);}
.m6d_c00232{transform:matrix(0.337371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337371,0.000000,0.000000,0.250000,0,0);}
.m3a_c00232{transform:matrix(0.337716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337716,0.000000,0.000000,0.250000,0,0);}
.m3d_c00232{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m56_c00232{transform:matrix(0.340687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340687,0.000000,0.000000,0.250000,0,0);}
.m91_c00232{transform:matrix(0.342184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342184,0.000000,0.000000,0.250000,0,0);}
.m9a_c00232{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.m2d_c00232{transform:matrix(0.354539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354539,0.000000,0.000000,0.250000,0,0);}
.m31_c00232{transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);}
.m2f_c00232{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m5b_c00232{transform:matrix(0.360196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360196,0.000000,0.000000,0.250000,0,0);}
.m95_c00232{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.md_c00232{transform:matrix(0.365181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365181,0.000000,0.000000,0.250000,0,0);}
.m65_c00232{transform:matrix(0.377282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377282,0.000000,0.000000,0.250000,0,0);}
.m78_c00232{transform:matrix(0.407787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407787,0.000000,0.000000,0.250000,0,0);}
.m2c_c00232{transform:matrix(0.424628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424628,0.000000,0.000000,0.250000,0,0);}
.v0_c00232{vertical-align:0.000000px;}
.lsb_c00232{letter-spacing:-2.882880px;}
.lsc_c00232{letter-spacing:-2.744280px;}
.ls8_c00232{letter-spacing:-2.328480px;}
.ls10_c00232{letter-spacing:-1.799741px;}
.ls11_c00232{letter-spacing:-1.034986px;}
.lsd_c00232{letter-spacing:-0.180338px;}
.ls7_c00232{letter-spacing:0.000000px;}
.ls5_c00232{letter-spacing:0.533174px;}
.lsf_c00232{letter-spacing:0.611582px;}
.ls1_c00232{letter-spacing:0.705672px;}
.ls12_c00232{letter-spacing:1.348618px;}
.ls4_c00232{letter-spacing:1.913155px;}
.ls13_c00232{letter-spacing:3.069000px;}
.ls6_c00232{letter-spacing:3.293136px;}
.ls9_c00232{letter-spacing:3.603610px;}
.lsa_c00232{letter-spacing:3.920400px;}
.lse_c00232{letter-spacing:4.068900px;}
.ls2_c00232{letter-spacing:7.135128px;}
.ls3_c00232{letter-spacing:8.703288px;}
.ls0_c00232{letter-spacing:9.408168px;}
.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;}
}
.ws3_c00232{word-spacing:-22.895136px;}
.ws0_c00232{word-spacing:-19.602000px;}
.ws2_c00232{word-spacing:-18.567014px;}
.ws5_c00232{word-spacing:0.000000px;}
.ws4_c00232{word-spacing:3.606768px;}
.ws1_c00232{word-spacing:4.077216px;}
._a_c00232{margin-left:-11.761200px;}
._15_c00232{margin-left:-10.193040px;}
._8_c00232{margin-left:-8.781696px;}
._19_c00232{margin-left:-4.704876px;}
._7_c00232{width:3.763188px;}
._17_c00232{width:4.940496px;}
._2_c00232{width:6.507864px;}
._6_c00232{width:7.998012px;}
._0_c00232{width:9.173736px;}
._16_c00232{width:10.507068px;}
._1a_c00232{width:13.328964px;}
._9_c00232{width:15.680808px;}
._3_c00232{width:16.857720px;}
._e_c00232{width:18.111456px;}
._5_c00232{width:20.856528px;}
._d_c00232{width:22.267872px;}
._11_c00232{width:23.679216px;}
._14_c00232{width:26.767303px;}
._4_c00232{width:29.246184px;}
._10_c00232{width:31.206384px;}
._b_c00232{width:32.696136px;}
._13_c00232{width:34.107480px;}
._f_c00232{width:35.440416px;}
._1_c00232{width:36.862848px;}
._c_c00232{width:38.576736px;}
._18_c00232{width:40.616136px;}
._12_c00232{width:42.497136px;}
.fc0_c00232{color:transparent;}
.fs9_c00232{font-size:22.176000px;}
.fsa_c00232{font-size:27.720000px;}
.fsb_c00232{font-size:28.314000px;}
.fs8_c00232{font-size:39.600000px;}
.fs7_c00232{font-size:61.380000px;}
.fs1_c00232{font-size:66.528000px;}
.fs2_c00232{font-size:72.072198px;}
.fs6_c00232{font-size:72.864000px;}
.fs3_c00232{font-size:78.408000px;}
.fs5_c00232{font-size:81.378000px;}
.fs4_c00232{font-size:82.368000px;}
.fs0_c00232{font-size:93.456198px;}
.y0_c00232{bottom:0.000000px;}
.y1_c00232{bottom:76.500000px;}
.y1b_c00232{bottom:126.428985px;}
.y1c_c00232{bottom:190.942335px;}
.y1a_c00232{bottom:203.416335px;}
.y19_c00232{bottom:222.661935px;}
.y18_c00232{bottom:236.205135px;}
.y17_c00232{bottom:249.035535px;}
.y16_c00232{bottom:268.988985px;}
.y15_c00232{bottom:302.139135px;}
.y14_c00232{bottom:322.097535px;}
.y13_c00232{bottom:336.353535px;}
.y12_c00232{bottom:368.073135px;}
.y11_c00232{bottom:432.225135px;}
.y10_c00232{bottom:464.296185px;}
.yf_c00232{bottom:497.084985px;}
.ye_c00232{bottom:528.809535px;}
.yd_c00232{bottom:592.961535px;}
.yc_c00232{bottom:624.676185px;}
.yb_c00232{bottom:656.395785px;}
.ya_c00232{bottom:689.189535px;}
.y9_c00232{bottom:721.260585px;}
.y8_c00232{bottom:752.985135px;}
.y7_c00232{bottom:787.555935px;}
.y6_c00232{bottom:821.052585px;}
.y5_c00232{bottom:884.848185px;}
.y4_c00232{bottom:919.780335px;}
.y3_c00232{bottom:1071.601785px;}
.y2_c00232{bottom:1106.172585px;}
.hb_c00232{height:23.128875px;}
.hc_c00232{height:28.911094px;}
.ha_c00232{height:41.301563px;}
.h9_c00232{height:64.017422px;}
.h3_c00232{height:69.386625px;}
.h4_c00232{height:70.734921px;}
.h8_c00232{height:71.512031px;}
.h5_c00232{height:76.953164px;}
.h7_c00232{height:79.868057px;}
.h6_c00232{height:83.011500px;}
.h2_c00232{height:97.471894px;}
.h1_c00232{height:1110.000000px;}
.h0_c00232{height:1263.000000px;}
.w1_c00232{width:751.500000px;}
.w0_c00232{width:892.500000px;}
.x0_c00232{left:0.000000px;}
.x30_c00232{left:48.703485px;}
.x5_c00232{left:50.663685px;}
.x1_c00232{left:70.500000px;}
.x5b_c00232{left:71.686335px;}
.x6_c00232{left:82.061535px;}
.x7_c00232{left:91.872435px;}
.x1b_c00232{left:92.902035px;}
.x29_c00232{left:103.163385px;}
.x47_c00232{left:104.772135px;}
.x4f_c00232{left:114.840435px;}
.x8_c00232{left:125.304735px;}
.x58_c00232{left:126.403635px;}
.x2a_c00232{left:135.665085px;}
.x48_c00232{left:136.947135px;}
.x61_c00232{left:138.699435px;}
.x5c_c00232{left:140.035935px;}
.x50_c00232{left:146.683785px;}
.x31_c00232{left:148.228185px;}
.x64_c00232{left:152.024835px;}
.x9_c00232{left:159.390435px;}
.x54_c00232{left:161.063535px;}
.xa_c00232{left:170.087385px;}
.x32_c00232{left:180.962535px;}
.x2b_c00232{left:191.278335px;}
.x1c_c00232{left:193.223685px;}
.xb_c00232{left:203.222685px;}
.x52_c00232{left:205.049235px;}
.x3a_c00232{left:213.048435px;}
.xc_c00232{left:214.266135px;}
.x1d_c00232{left:225.710535px;}
.x1e_c00232{left:236.412435px;}
.x3b_c00232{left:246.936135px;}
.xd_c00232{left:248.094435px;}
.x1f_c00232{left:258.479535px;}
.x40_c00232{left:259.514085px;}
.x20_c00232{left:266.152035px;}
.x5d_c00232{left:269.389335px;}
.x5a_c00232{left:276.547035px;}
.xe_c00232{left:280.081335px;}
.xf_c00232{left:291.565335px;}
.x21_c00232{left:302.579085px;}
.x65_c00232{left:304.945185px;}
.x55_c00232{left:312.444435px;}
.x49_c00232{left:314.409585px;}
.x10_c00232{left:324.388785px;}
.x33_c00232{left:325.457985px;}
.x51_c00232{left:326.685585px;}
.x3c_c00232{left:335.763885px;}
.x43_c00232{left:336.798435px;}
.x11_c00232{left:346.817235px;}
.x22_c00232{left:357.905235px;}
.x3d_c00232{left:367.686435px;}
.x59_c00232{left:369.656535px;}
.x12_c00232{left:379.655535px;}
.x23_c00232{left:391.080135px;}
.x2c_c00232{left:401.257335px;}
.x34_c00232{left:402.796785px;}
.x13_c00232{left:411.206835px;}
.x57_c00232{left:413.478885px;}
.x41_c00232{left:415.587585px;}
.x24_c00232{left:422.205735px;}
.x4a_c00232{left:423.794685px;}
.x14_c00232{left:434.526285px;}
.x2d_c00232{left:444.673785px;}
.x35_c00232{left:457.261635px;}
.x42_c00232{left:458.909985px;}
.x4b_c00232{left:468.384285px;}
.x15_c00232{left:479.229735px;}
.x36_c00232{left:490.124685px;}
.x53_c00232{left:499.950435px;}
.x16_c00232{left:501.173085px;}
.x44_c00232{left:510.642435px;}
.x2e_c00232{left:511.855185px;}
.x62_c00232{left:514.612335px;}
.x37_c00232{left:522.725385px;}
.x17_c00232{left:523.962885px;}
.x3f_c00232{left:533.640135px;}
.x45_c00232{left:544.639035px;}
.x4c_c00232{left:546.064635px;}
.x18_c00232{left:555.311235px;}
.x25_c00232{left:556.335885px;}
.x38_c00232{left:566.270535px;}
.x4d_c00232{left:578.190135px;}
.x5e_c00232{left:579.214785px;}
.x26_c00232{left:589.530585px;}
.x2f_c00232{left:599.539485px;}
.x27_c00232{left:610.983885px;}
.x5f_c00232{left:612.003585px;}
.x19_c00232{left:621.512535px;}
.x4e_c00232{left:622.636185px;}
.x4_c00232{left:632.991585px;}
.x2_c00232{left:636.184335px;}
.x60_c00232{left:638.327685px;}
.x63_c00232{left:643.223235px;}
.x3e_c00232{left:644.421135px;}
.x3_c00232{left:646.104135px;}
.x28_c00232{left:655.123035px;}
.x46_c00232{left:665.508135px;}
.x56_c00232{left:675.972435px;}
.x1a_c00232{left:677.511885px;}
.x39_c00232{left:687.698985px;}
.x66_c00232{left:734.728935px;}
@media print{
.v0_c00232{vertical-align:0.000000pt;}
.lsb_c00232{letter-spacing:-2.562560pt;}
.lsc_c00232{letter-spacing:-2.439360pt;}
.ls8_c00232{letter-spacing:-2.069760pt;}
.ls10_c00232{letter-spacing:-1.599770pt;}
.ls11_c00232{letter-spacing:-0.919987pt;}
.lsd_c00232{letter-spacing:-0.160301pt;}
.ls7_c00232{letter-spacing:0.000000pt;}
.ls5_c00232{letter-spacing:0.473933pt;}
.lsf_c00232{letter-spacing:0.543629pt;}
.ls1_c00232{letter-spacing:0.627264pt;}
.ls12_c00232{letter-spacing:1.198771pt;}
.ls4_c00232{letter-spacing:1.700582pt;}
.ls13_c00232{letter-spacing:2.728000pt;}
.ls6_c00232{letter-spacing:2.927232pt;}
.ls9_c00232{letter-spacing:3.203209pt;}
.lsa_c00232{letter-spacing:3.484800pt;}
.lse_c00232{letter-spacing:3.616800pt;}
.ls2_c00232{letter-spacing:6.342336pt;}
.ls3_c00232{letter-spacing:7.736256pt;}
.ls0_c00232{letter-spacing:8.362816pt;}
.ws3_c00232{word-spacing:-20.351232pt;}
.ws0_c00232{word-spacing:-17.424000pt;}
.ws2_c00232{word-spacing:-16.504013pt;}
.ws5_c00232{word-spacing:0.000000pt;}
.ws4_c00232{word-spacing:3.206016pt;}
.ws1_c00232{word-spacing:3.624192pt;}
._a_c00232{margin-left:-10.454400pt;}
._15_c00232{margin-left:-9.060480pt;}
._8_c00232{margin-left:-7.805952pt;}
._19_c00232{margin-left:-4.182112pt;}
._7_c00232{width:3.345056pt;}
._17_c00232{width:4.391552pt;}
._2_c00232{width:5.784768pt;}
._6_c00232{width:7.109344pt;}
._0_c00232{width:8.154432pt;}
._16_c00232{width:9.339616pt;}
._1a_c00232{width:11.847968pt;}
._9_c00232{width:13.938496pt;}
._3_c00232{width:14.984640pt;}
._e_c00232{width:16.099072pt;}
._5_c00232{width:18.539136pt;}
._d_c00232{width:19.793664pt;}
._11_c00232{width:21.048192pt;}
._14_c00232{width:23.793158pt;}
._4_c00232{width:25.996608pt;}
._10_c00232{width:27.739008pt;}
._b_c00232{width:29.063232pt;}
._13_c00232{width:30.317760pt;}
._f_c00232{width:31.502592pt;}
._1_c00232{width:32.766976pt;}
._c_c00232{width:34.290432pt;}
._18_c00232{width:36.103232pt;}
._12_c00232{width:37.775232pt;}
.fs9_c00232{font-size:19.712000pt;}
.fsa_c00232{font-size:24.640000pt;}
.fsb_c00232{font-size:25.168000pt;}
.fs8_c00232{font-size:35.200000pt;}
.fs7_c00232{font-size:54.560000pt;}
.fs1_c00232{font-size:59.136000pt;}
.fs2_c00232{font-size:64.064176pt;}
.fs6_c00232{font-size:64.768000pt;}
.fs3_c00232{font-size:69.696000pt;}
.fs5_c00232{font-size:72.336000pt;}
.fs4_c00232{font-size:73.216000pt;}
.fs0_c00232{font-size:83.072176pt;}
.y0_c00232{bottom:0.000000pt;}
.y1_c00232{bottom:68.000000pt;}
.y1b_c00232{bottom:112.381320pt;}
.y1c_c00232{bottom:169.726520pt;}
.y1a_c00232{bottom:180.814520pt;}
.y19_c00232{bottom:197.921720pt;}
.y18_c00232{bottom:209.960120pt;}
.y17_c00232{bottom:221.364920pt;}
.y16_c00232{bottom:239.101320pt;}
.y15_c00232{bottom:268.568120pt;}
.y14_c00232{bottom:286.308920pt;}
.y13_c00232{bottom:298.980920pt;}
.y12_c00232{bottom:327.176120pt;}
.y11_c00232{bottom:384.200120pt;}
.y10_c00232{bottom:412.707720pt;}
.yf_c00232{bottom:441.853320pt;}
.ye_c00232{bottom:470.052920pt;}
.yd_c00232{bottom:527.076920pt;}
.yc_c00232{bottom:555.267720pt;}
.yb_c00232{bottom:583.462920pt;}
.ya_c00232{bottom:612.612920pt;}
.y9_c00232{bottom:641.120520pt;}
.y8_c00232{bottom:669.320120pt;}
.y7_c00232{bottom:700.049720pt;}
.y6_c00232{bottom:729.824520pt;}
.y5_c00232{bottom:786.531720pt;}
.y4_c00232{bottom:817.582520pt;}
.y3_c00232{bottom:952.534920pt;}
.y2_c00232{bottom:983.264520pt;}
.hb_c00232{height:20.559000pt;}
.hc_c00232{height:25.698750pt;}
.ha_c00232{height:36.712500pt;}
.h9_c00232{height:56.904375pt;}
.h3_c00232{height:61.677000pt;}
.h4_c00232{height:62.875485pt;}
.h8_c00232{height:63.566250pt;}
.h5_c00232{height:68.402813pt;}
.h7_c00232{height:70.993828pt;}
.h6_c00232{height:73.788000pt;}
.h2_c00232{height:86.641684pt;}
.h1_c00232{height:986.666667pt;}
.h0_c00232{height:1122.666667pt;}
.w1_c00232{width:668.000000pt;}
.w0_c00232{width:793.333333pt;}
.x0_c00232{left:0.000000pt;}
.x30_c00232{left:43.291987pt;}
.x5_c00232{left:45.034387pt;}
.x1_c00232{left:62.666667pt;}
.x5b_c00232{left:63.721187pt;}
.x6_c00232{left:72.943587pt;}
.x7_c00232{left:81.664387pt;}
.x1b_c00232{left:82.579587pt;}
.x29_c00232{left:91.700787pt;}
.x47_c00232{left:93.130787pt;}
.x4f_c00232{left:102.080387pt;}
.x8_c00232{left:111.381987pt;}
.x58_c00232{left:112.358787pt;}
.x2a_c00232{left:120.591187pt;}
.x48_c00232{left:121.730787pt;}
.x61_c00232{left:123.288387pt;}
.x5c_c00232{left:124.476387pt;}
.x50_c00232{left:130.385587pt;}
.x31_c00232{left:131.758387pt;}
.x64_c00232{left:135.133187pt;}
.x9_c00232{left:141.680387pt;}
.x54_c00232{left:143.167587pt;}
.xa_c00232{left:151.188787pt;}
.x32_c00232{left:160.855587pt;}
.x2b_c00232{left:170.025187pt;}
.x1c_c00232{left:171.754387pt;}
.xb_c00232{left:180.642387pt;}
.x52_c00232{left:182.265987pt;}
.x3a_c00232{left:189.376387pt;}
.xc_c00232{left:190.458787pt;}
.x1d_c00232{left:200.631587pt;}
.x1e_c00232{left:210.144387pt;}
.x3b_c00232{left:219.498787pt;}
.xd_c00232{left:220.528387pt;}
.x1f_c00232{left:229.759587pt;}
.x40_c00232{left:230.679187pt;}
.x20_c00232{left:236.579587pt;}
.x5d_c00232{left:239.457187pt;}
.x5a_c00232{left:245.819587pt;}
.xe_c00232{left:248.961187pt;}
.xf_c00232{left:259.169187pt;}
.x21_c00232{left:268.959187pt;}
.x65_c00232{left:271.062387pt;}
.x55_c00232{left:277.728387pt;}
.x49_c00232{left:279.475187pt;}
.x10_c00232{left:288.345587pt;}
.x33_c00232{left:289.295987pt;}
.x51_c00232{left:290.387187pt;}
.x3c_c00232{left:298.456787pt;}
.x43_c00232{left:299.376387pt;}
.x11_c00232{left:308.281987pt;}
.x22_c00232{left:318.137987pt;}
.x3d_c00232{left:326.832387pt;}
.x59_c00232{left:328.583587pt;}
.x12_c00232{left:337.471587pt;}
.x23_c00232{left:347.626787pt;}
.x2c_c00232{left:356.673187pt;}
.x34_c00232{left:358.041587pt;}
.x13_c00232{left:365.517187pt;}
.x57_c00232{left:367.536787pt;}
.x41_c00232{left:369.411187pt;}
.x24_c00232{left:375.293987pt;}
.x4a_c00232{left:376.706387pt;}
.x14_c00232{left:386.245587pt;}
.x2d_c00232{left:395.265587pt;}
.x35_c00232{left:406.454787pt;}
.x42_c00232{left:407.919987pt;}
.x4b_c00232{left:416.341587pt;}
.x15_c00232{left:425.981987pt;}
.x36_c00232{left:435.666387pt;}
.x53_c00232{left:444.400387pt;}
.x16_c00232{left:445.487187pt;}
.x44_c00232{left:453.904387pt;}
.x2e_c00232{left:454.982387pt;}
.x62_c00232{left:457.433187pt;}
.x37_c00232{left:464.644787pt;}
.x17_c00232{left:465.744787pt;}
.x3f_c00232{left:474.346787pt;}
.x45_c00232{left:484.123587pt;}
.x4c_c00232{left:485.390787pt;}
.x18_c00232{left:493.609987pt;}
.x25_c00232{left:494.520787pt;}
.x38_c00232{left:503.351587pt;}
.x4d_c00232{left:513.946787pt;}
.x5e_c00232{left:514.857587pt;}
.x26_c00232{left:524.027187pt;}
.x2f_c00232{left:532.923987pt;}
.x27_c00232{left:543.096787pt;}
.x5f_c00232{left:544.003187pt;}
.x19_c00232{left:552.455587pt;}
.x4e_c00232{left:553.454387pt;}
.x4_c00232{left:562.659187pt;}
.x2_c00232{left:565.497187pt;}
.x60_c00232{left:567.402387pt;}
.x63_c00232{left:571.753987pt;}
.x3e_c00232{left:572.818787pt;}
.x3_c00232{left:574.314787pt;}
.x28_c00232{left:582.331587pt;}
.x46_c00232{left:591.562787pt;}
.x56_c00232{left:600.864387pt;}
.x1a_c00232{left:602.232787pt;}
.x39_c00232{left:611.287987pt;}
.x66_c00232{left:653.092387pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_43cd9b409135c8ddee796954.woff2')format("woff");}.ff1_c00233{font-family:ff1_c00233;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00233;src:url('chunks/assets/font_6514b5f72a08bf07e32bd1fb.woff2')format("woff");}.ff2_c00233{font-family:ff2_c00233;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00233;src:url('chunks/assets/font_a50b715df9fd946e2a7ff6ca.woff2')format("woff");}.ff3_c00233{font-family:ff3_c00233;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m12_c00233{transform:matrix(0.151316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151316,0.000000,0.000000,0.250000,0,0);}
.m47_c00233{transform:matrix(0.189703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189703,0.000000,0.000000,0.250000,0,0);}
.m11_c00233{transform:matrix(0.192434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192434,0.000000,0.000000,0.250000,0,0);}
.m13_c00233{transform:matrix(0.196053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196053,0.000000,0.000000,0.250000,0,0);}
.m58_c00233{transform:matrix(0.209721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209721,0.000000,0.000000,0.250000,0,0);}
.m1f_c00233{transform:matrix(0.213031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213031,0.000000,0.000000,0.250000,0,0);}
.m48_c00233{transform:matrix(0.216065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216065,0.000000,0.000000,0.250000,0,0);}
.m2b_c00233{transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);}
.m36_c00233{transform:matrix(0.247626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247626,0.000000,0.000000,0.250000,0,0);}
.m8_c00233{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2_c00233{transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);}
.m4f_c00233{transform:matrix(0.250712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250712,0.000000,0.000000,0.250000,0,0);}
.m65_c00233{transform:matrix(0.252090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252090,0.000000,0.000000,0.250000,0,0);}
.m34_c00233{transform:matrix(0.255660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255660,0.000000,0.000000,0.250000,0,0);}
.m23_c00233{transform:matrix(0.255888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255888,0.000000,0.000000,0.250000,0,0);}
.m63_c00233{transform:matrix(0.256603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256603,0.000000,0.000000,0.250000,0,0);}
.m4_c00233{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m53_c00233{transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);}
.m45_c00233{transform:matrix(0.262649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262649,0.000000,0.000000,0.250000,0,0);}
.m37_c00233{transform:matrix(0.262931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262931,0.000000,0.000000,0.250000,0,0);}
.m1d_c00233{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m68_c00233{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m1a_c00233{transform:matrix(0.266106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266106,0.000000,0.000000,0.250000,0,0);}
.m5c_c00233{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m2d_c00233{transform:matrix(0.266460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266460,0.000000,0.000000,0.250000,0,0);}
.m50_c00233{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m10_c00233{transform:matrix(0.268115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268115,0.000000,0.000000,0.250000,0,0);}
.m46_c00233{transform:matrix(0.268917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268917,0.000000,0.000000,0.250000,0,0);}
.m30_c00233{transform:matrix(0.269591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269591,0.000000,0.000000,0.250000,0,0);}
.m33_c00233{transform:matrix(0.272131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272131,0.000000,0.000000,0.250000,0,0);}
.m3b_c00233{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m27_c00233{transform:matrix(0.272729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272729,0.000000,0.000000,0.250000,0,0);}
.m26_c00233{transform:matrix(0.273508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273508,0.000000,0.000000,0.250000,0,0);}
.m3a_c00233{transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);}
.m39_c00233{transform:matrix(0.274005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274005,0.000000,0.000000,0.250000,0,0);}
.m0_c00233{transform:matrix(0.276116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276116,0.000000,0.000000,0.250000,0,0);}
.m20_c00233{transform:matrix(0.276131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276131,0.000000,0.000000,0.250000,0,0);}
.m6_c00233{transform:matrix(0.276488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276488,0.000000,0.000000,0.250000,0,0);}
.m5a_c00233{transform:matrix(0.277016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277016,0.000000,0.000000,0.250000,0,0);}
.m51_c00233{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m4b_c00233{transform:matrix(0.277902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277902,0.000000,0.000000,0.250000,0,0);}
.m5f_c00233{transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);}
.m41_c00233{transform:matrix(0.279643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279643,0.000000,0.000000,0.250000,0,0);}
.m43_c00233{transform:matrix(0.280772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280772,0.000000,0.000000,0.250000,0,0);}
.m2a_c00233{transform:matrix(0.281452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281452,0.000000,0.000000,0.250000,0,0);}
.ma_c00233{transform:matrix(0.281453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281453,0.000000,0.000000,0.250000,0,0);}
.m16_c00233{transform:matrix(0.281783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281783,0.000000,0.000000,0.250000,0,0);}
.m4e_c00233{transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);}
.m31_c00233{transform:matrix(0.282808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282808,0.000000,0.000000,0.250000,0,0);}
.m59_c00233{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m42_c00233{transform:matrix(0.284403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284403,0.000000,0.000000,0.250000,0,0);}
.m32_c00233{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m44_c00233{transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);}
.m69_c00233{transform:matrix(0.286241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286241,0.000000,0.000000,0.250000,0,0);}
.m3_c00233{transform:matrix(0.288237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288237,0.000000,0.000000,0.250000,0,0);}
.m21_c00233{transform:matrix(0.288251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288251,0.000000,0.000000,0.250000,0,0);}
.m25_c00233{transform:matrix(0.288516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288516,0.000000,0.000000,0.250000,0,0);}
.m3d_c00233{transform:matrix(0.288812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288812,0.000000,0.000000,0.250000,0,0);}
.m1c_c00233{transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);}
.m4a_c00233{transform:matrix(0.289032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289032,0.000000,0.000000,0.250000,0,0);}
.m2f_c00233{transform:matrix(0.289323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289323,0.000000,0.000000,0.250000,0,0);}
.m29_c00233{transform:matrix(0.290334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290334,0.000000,0.000000,0.250000,0,0);}
.m24_c00233{transform:matrix(0.290475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290475,0.000000,0.000000,0.250000,0,0);}
.m2e_c00233{transform:matrix(0.291518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291518,0.000000,0.000000,0.250000,0,0);}
.mc_c00233{transform:matrix(0.291724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291724,0.000000,0.000000,0.250000,0,0);}
.m38_c00233{transform:matrix(0.292010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292010,0.000000,0.000000,0.250000,0,0);}
.m5b_c00233{transform:matrix(0.292427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292427,0.000000,0.000000,0.250000,0,0);}
.m57_c00233{transform:matrix(0.292920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292920,0.000000,0.000000,0.250000,0,0);}
.m35_c00233{transform:matrix(0.295247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295247,0.000000,0.000000,0.250000,0,0);}
.m14_c00233{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m1b_c00233{transform:matrix(0.297357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297357,0.000000,0.000000,0.250000,0,0);}
.mb_c00233{transform:matrix(0.297860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297860,0.000000,0.000000,0.250000,0,0);}
.m52_c00233{transform:matrix(0.299372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299372,0.000000,0.000000,0.250000,0,0);}
.m60_c00233{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m3e_c00233{transform:matrix(0.303625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303625,0.000000,0.000000,0.250000,0,0);}
.mf_c00233{transform:matrix(0.303823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303823,0.000000,0.000000,0.250000,0,0);}
.m56_c00233{transform:matrix(0.305624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305624,0.000000,0.000000,0.250000,0,0);}
.m40_c00233{transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);}
.m5_c00233{transform:matrix(0.306430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306430,0.000000,0.000000,0.250000,0,0);}
.m18_c00233{transform:matrix(0.307034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307034,0.000000,0.000000,0.250000,0,0);}
.m19_c00233{transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);}
.m7_c00233{transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);}
.m1e_c00233{transform:matrix(0.310732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310732,0.000000,0.000000,0.250000,0,0);}
.m61_c00233{transform:matrix(0.312102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312102,0.000000,0.000000,0.250000,0,0);}
.m67_c00233{transform:matrix(0.312751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312751,0.000000,0.000000,0.250000,0,0);}
.me_c00233{transform:matrix(0.313517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313517,0.000000,0.000000,0.250000,0,0);}
.m15_c00233{transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);}
.m2c_c00233{transform:matrix(0.314120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314120,0.000000,0.000000,0.250000,0,0);}
.m3c_c00233{transform:matrix(0.318643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318643,0.000000,0.000000,0.250000,0,0);}
.md_c00233{transform:matrix(0.319963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319963,0.000000,0.000000,0.250000,0,0);}
.m4d_c00233{transform:matrix(0.322527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322527,0.000000,0.000000,0.250000,0,0);}
.m1_c00233{transform:matrix(0.325174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325174,0.000000,0.000000,0.250000,0,0);}
.m62_c00233{transform:matrix(0.330111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330111,0.000000,0.000000,0.250000,0,0);}
.m55_c00233{transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);}
.m54_c00233{transform:matrix(0.334069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334069,0.000000,0.000000,0.250000,0,0);}
.m49_c00233{transform:matrix(0.334121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334121,0.000000,0.000000,0.250000,0,0);}
.m5e_c00233{transform:matrix(0.334575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334575,0.000000,0.000000,0.250000,0,0);}
.m9_c00233{transform:matrix(0.337396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337396,0.000000,0.000000,0.250000,0,0);}
.m28_c00233{transform:matrix(0.337421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337421,0.000000,0.000000,0.250000,0,0);}
.m64_c00233{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m3f_c00233{transform:matrix(0.342537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342537,0.000000,0.000000,0.250000,0,0);}
.m66_c00233{transform:matrix(0.343381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343381,0.000000,0.000000,0.250000,0,0);}
.m17_c00233{transform:matrix(0.350956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350956,0.000000,0.000000,0.250000,0,0);}
.m5d_c00233{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m4c_c00233{transform:matrix(0.372071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372071,0.000000,0.000000,0.250000,0,0);}
.m22_c00233{transform:matrix(0.388396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388396,0.000000,0.000000,0.250000,0,0);}
.v0_c00233{vertical-align:0.000000px;}
.v1_c00233{vertical-align:86.961600px;}
.ls6_c00233{letter-spacing:-2.744280px;}
.lsd_c00233{letter-spacing:-1.897474px;}
.ls3_c00233{letter-spacing:0.000000px;}
.ls1_c00233{letter-spacing:1.466230px;}
.lsb_c00233{letter-spacing:1.685772px;}
.ls0_c00233{letter-spacing:2.497770px;}
.ls7_c00233{letter-spacing:2.730321px;}
.ls5_c00233{letter-spacing:2.979504px;}
.ls8_c00233{letter-spacing:3.900610px;}
.ls2_c00233{letter-spacing:3.920400px;}
.lsa_c00233{letter-spacing:4.068900px;}
.ls9_c00233{letter-spacing:4.494610px;}
.lsc_c00233{letter-spacing:51.321798px;}
.ls4_c00233{letter-spacing:54.172998px;}
.sc__c00233{text-shadow:none;}
.sc0_c00233{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00233{-webkit-text-stroke:0px transparent;}
.sc0_c00233{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00233{word-spacing:-19.602000px;}
.ws1_c00233{word-spacing:0.000000px;}
._7_c00233{margin-left:-10.193040px;}
._0_c00233{margin-left:-8.076024px;}
._a_c00233{width:6.507864px;}
._8_c00233{width:7.683984px;}
._9_c00233{width:9.173736px;}
._1_c00233{width:10.585080px;}
._c_c00233{width:15.192936px;}
._6_c00233{width:20.856132px;}
._2_c00233{width:25.168968px;}
._3_c00233{width:29.363400px;}
._5_c00233{width:31.284792px;}
._4_c00233{width:34.421508px;}
._b_c00233{width:277.236511px;}
.fc0_c00233{color:transparent;}
.fse_c00233{font-size:33.264000px;}
.fs8_c00233{font-size:34.056198px;}
.fs14_c00233{font-size:51.321798px;}
.fs1_c00233{font-size:54.172998px;}
.fsa_c00233{font-size:67.122198px;}
.fsd_c00233{font-size:69.102198px;}
.fs13_c00233{font-size:69.696198px;}
.fs7_c00233{font-size:71.280000px;}
.fs12_c00233{font-size:71.676198px;}
.fsc_c00233{font-size:72.072198px;}
.fsb_c00233{font-size:73.656198px;}
.fs10_c00233{font-size:74.052198px;}
.fs9_c00233{font-size:75.240000px;}
.fs11_c00233{font-size:76.428000px;}
.fsf_c00233{font-size:77.220000px;}
.fs4_c00233{font-size:78.012198px;}
.fs0_c00233{font-size:78.408000px;}
.fs2_c00233{font-size:78.804000px;}
.fs6_c00233{font-size:81.378000px;}
.fs3_c00233{font-size:86.130000px;}
.fs5_c00233{font-size:89.892198px;}
.y0_c00233{bottom:0.000000px;}
.y1_c00233{bottom:76.500000px;}
.y31_c00233{bottom:172.409535px;}
.y30_c00233{bottom:205.549785px;}
.y2f_c00233{bottom:239.412735px;}
.y21_c00233{bottom:322.810335px;}
.y2e_c00233{bottom:323.523135px;}
.y14_c00233{bottom:324.943785px;}
.y13_c00233{bottom:366.647535px;}
.y2d_c00233{bottom:367.716735px;}
.y12_c00233{bottom:394.090335px;}
.y2c_c00233{bottom:394.446735px;}
.y20_c00233{bottom:395.159535px;}
.y11_c00233{bottom:419.033385px;}
.y10_c00233{bottom:426.517785px;}
.y1f_c00233{bottom:426.879135px;}
.y2b_c00233{bottom:427.591935px;}
.yf_c00233{bottom:458.955135px;}
.y2a_c00233{bottom:459.311882px;}
.y1e_c00233{bottom:459.667935px;}
.ye_c00233{bottom:491.026185px;}
.y29_c00233{bottom:491.738985px;}
.y1d_c00233{bottom:492.100335px;}
.yd_c00233{bottom:523.463535px;}
.y28_c00233{bottom:524.532735px;}
.yc_c00233{bottom:555.178185px;}
.y1c_c00233{bottom:556.246395px;}
.y27_c00233{bottom:556.247385px;}
.y26_c00233{bottom:586.534455px;}
.y1b_c00233{bottom:586.549305px;}
.yb_c00233{bottom:587.610585px;}
.y1a_c00233{bottom:617.548185px;}
.y25_c00233{bottom:618.617385px;}
.ya_c00233{bottom:619.330185px;}
.y9_c00233{bottom:651.054735px;}
.y24_c00233{bottom:651.406185px;}
.y19_c00233{bottom:651.762585px;}
.y23_c00233{bottom:681.700185px;}
.y18_c00233{bottom:682.061535px;}
.y8_c00233{bottom:683.487135px;}
.y17_c00233{bottom:727.319385px;}
.y7_c00233{bottom:747.990585px;}
.y22_c00233{bottom:749.064735px;}
.y16_c00233{bottom:749.416185px;}
.y15_c00233{bottom:765.810585px;}
.y6_c00233{bottom:812.503935px;}
.y5_c00233{bottom:844.931385px;}
.y4_c00233{bottom:876.655935px;}
.y3_c00233{bottom:909.444735px;}
.y2_c00233{bottom:1073.027385px;}
.h17_c00233{height:34.180317px;}
.ha_c00233{height:35.519550px;}
.h3_c00233{height:36.079217px;}
.h16_c00233{height:68.403007px;}
.hc_c00233{height:70.006355px;}
.h15_c00233{height:70.346269px;}
.he_c00233{height:70.734921px;}
.hf_c00233{height:72.071433px;}
.hd_c00233{height:72.289530px;}
.h13_c00233{height:72.678183px;}
.hb_c00233{height:73.843945px;}
.h9_c00233{height:74.342813px;}
.h14_c00233{height:75.009902px;}
.h6_c00233{height:76.564706px;}
.h2_c00233{height:76.953164px;}
.h12_c00233{height:77.234128px;}
.h4_c00233{height:77.341816px;}
.h8_c00233{height:79.868057px;}
.h11_c00233{height:80.538047px;}
.h5_c00233{height:84.531885px;}
.h7_c00233{height:88.224276px;}
.h10_c00233{height:121.654913px;}
.h1_c00233{height:1110.000000px;}
.h0_c00233{height:1263.000000px;}
.w1_c00233{width:751.500000px;}
.w0_c00233{width:892.500000px;}
.x0_c00233{left:0.000000px;}
.x2f_c00233{left:61.152735px;}
.xd_c00233{left:62.454585px;}
.x27_c00233{left:63.464385px;}
.x1_c00233{left:70.500000px;}
.xe_c00233{left:95.208735px;}
.x22_c00233{left:96.243285px;}
.x2b_c00233{left:107.326335px;}
.x3_c00233{left:116.637285px;}
.x31_c00233{left:117.701535px;}
.x33_c00233{left:121.646685px;}
.x25_c00233{left:127.987635px;}
.x28_c00233{left:139.412235px;}
.x34_c00233{left:140.496285px;}
.x23_c00233{left:148.861785px;}
.x2d_c00233{left:150.049785px;}
.x2c_c00233{left:151.178385px;}
.x19_c00233{left:161.038785px;}
.x24_c00233{left:171.874335px;}
.xf_c00233{left:182.343585px;}
.x2e_c00233{left:184.313685px;}
.x2a_c00233{left:192.986085px;}
.x1a_c00233{left:194.119635px;}
.x29_c00233{left:204.806685px;}
.x1b_c00233{left:215.929335px;}
.x32_c00233{left:217.458885px;}
.x4_c00233{left:227.195535px;}
.x1c_c00233{left:237.951885px;}
.x30_c00233{left:239.318085px;}
.x26_c00233{left:248.990385px;}
.x5_c00233{left:260.939685px;}
.x41_c00233{left:262.038585px;}
.x1d_c00233{left:283.353285px;}
.x10_c00233{left:293.129535px;}
.x35_c00233{left:294.139335px;}
.x42_c00233{left:306.222285px;}
.x48_c00233{left:316.567785px;}
.x4b_c00233{left:328.591335px;}
.x43_c00233{left:338.303235px;}
.x1e_c00233{left:348.628935px;}
.x6_c00233{left:359.692185px;}
.x1f_c00233{left:371.007885px;}
.x7_c00233{left:381.234585px;}
.x36_c00233{left:382.853235px;}
.x11_c00233{left:392.827485px;}
.x44_c00233{left:405.271785px;}
.x12_c00233{left:414.775785px;}
.x37_c00233{left:425.626185px;}
.x8_c00233{left:436.303335px;}
.x4c_c00233{left:437.511135px;}
.x20_c00233{left:446.876535px;}
.x3a_c00233{left:449.821785px;}
.x38_c00233{left:459.484185px;}
.x39_c00233{left:469.448535px;}
.x4d_c00233{left:470.522685px;}
.x13_c00233{left:480.516735px;}
.x45_c00233{left:481.932435px;}
.x9_c00233{left:502.950135px;}
.x4e_c00233{left:504.029235px;}
.x49_c00233{left:514.161885px;}
.x14_c00233{left:523.472835px;}
.x4f_c00233{left:537.486285px;}
.xa_c00233{left:546.450735px;}
.xb_c00233{left:557.820885px;}
.x46_c00233{left:580.630485px;}
.x15_c00233{left:593.020335px;}
.x3b_c00233{left:601.608585px;}
.x16_c00233{left:612.577785px;}
.x50_c00233{left:613.800435px;}
.x4a_c00233{left:623.621235px;}
.x47_c00233{left:624.853785px;}
.x21_c00233{left:633.922185px;}
.x2_c00233{left:645.460635px;}
.x40_c00233{left:647.623785px;}
.xc_c00233{left:656.083335px;}
.x17_c00233{left:657.127785px;}
.x3f_c00233{left:658.291035px;}
.x18_c00233{left:667.106985px;}
.x3e_c00233{left:678.318735px;}
.x3c_c00233{left:689.505735px;}
.x3d_c00233{left:711.805485px;}
@media print{
.v0_c00233{vertical-align:0.000000pt;}
.v1_c00233{vertical-align:77.299200pt;}
.ls6_c00233{letter-spacing:-2.439360pt;}
.lsd_c00233{letter-spacing:-1.686643pt;}
.ls3_c00233{letter-spacing:0.000000pt;}
.ls1_c00233{letter-spacing:1.303315pt;}
.lsb_c00233{letter-spacing:1.498464pt;}
.ls0_c00233{letter-spacing:2.220240pt;}
.ls7_c00233{letter-spacing:2.426952pt;}
.ls5_c00233{letter-spacing:2.648448pt;}
.ls8_c00233{letter-spacing:3.467209pt;}
.ls2_c00233{letter-spacing:3.484800pt;}
.lsa_c00233{letter-spacing:3.616800pt;}
.ls9_c00233{letter-spacing:3.995209pt;}
.lsc_c00233{letter-spacing:45.619376pt;}
.ls4_c00233{letter-spacing:48.153776pt;}
.ws0_c00233{word-spacing:-17.424000pt;}
.ws1_c00233{word-spacing:0.000000pt;}
._7_c00233{margin-left:-9.060480pt;}
._0_c00233{margin-left:-7.178688pt;}
._a_c00233{width:5.784768pt;}
._8_c00233{width:6.830208pt;}
._9_c00233{width:8.154432pt;}
._1_c00233{width:9.408960pt;}
._c_c00233{width:13.504832pt;}
._6_c00233{width:18.538784pt;}
._2_c00233{width:22.372416pt;}
._3_c00233{width:26.100800pt;}
._5_c00233{width:27.808704pt;}
._4_c00233{width:30.596896pt;}
._b_c00233{width:246.432454pt;}
.fse_c00233{font-size:29.568000pt;}
.fs8_c00233{font-size:30.272176pt;}
.fs14_c00233{font-size:45.619376pt;}
.fs1_c00233{font-size:48.153776pt;}
.fsa_c00233{font-size:59.664176pt;}
.fsd_c00233{font-size:61.424176pt;}
.fs13_c00233{font-size:61.952176pt;}
.fs7_c00233{font-size:63.360000pt;}
.fs12_c00233{font-size:63.712176pt;}
.fsc_c00233{font-size:64.064176pt;}
.fsb_c00233{font-size:65.472176pt;}
.fs10_c00233{font-size:65.824176pt;}
.fs9_c00233{font-size:66.880000pt;}
.fs11_c00233{font-size:67.936000pt;}
.fsf_c00233{font-size:68.640000pt;}
.fs4_c00233{font-size:69.344176pt;}
.fs0_c00233{font-size:69.696000pt;}
.fs2_c00233{font-size:70.048000pt;}
.fs6_c00233{font-size:72.336000pt;}
.fs3_c00233{font-size:76.560000pt;}
.fs5_c00233{font-size:79.904176pt;}
.y0_c00233{bottom:0.000000pt;}
.y1_c00233{bottom:68.000000pt;}
.y31_c00233{bottom:153.252920pt;}
.y30_c00233{bottom:182.710920pt;}
.y2f_c00233{bottom:212.811320pt;}
.y21_c00233{bottom:286.942520pt;}
.y2e_c00233{bottom:287.576120pt;}
.y14_c00233{bottom:288.838920pt;}
.y13_c00233{bottom:325.908920pt;}
.y2d_c00233{bottom:326.859320pt;}
.y12_c00233{bottom:350.302520pt;}
.y2c_c00233{bottom:350.619320pt;}
.y20_c00233{bottom:351.252920pt;}
.y11_c00233{bottom:372.474120pt;}
.y10_c00233{bottom:379.126920pt;}
.y1f_c00233{bottom:379.448120pt;}
.y2b_c00233{bottom:380.081720pt;}
.yf_c00233{bottom:407.960120pt;}
.y2a_c00233{bottom:408.277228pt;}
.y1e_c00233{bottom:408.593720pt;}
.ye_c00233{bottom:436.467720pt;}
.y29_c00233{bottom:437.101320pt;}
.y1d_c00233{bottom:437.422520pt;}
.yd_c00233{bottom:465.300920pt;}
.y28_c00233{bottom:466.251320pt;}
.yc_c00233{bottom:493.491720pt;}
.y1c_c00233{bottom:494.441240pt;}
.y27_c00233{bottom:494.442120pt;}
.y26_c00233{bottom:521.363960pt;}
.y1b_c00233{bottom:521.377160pt;}
.yb_c00233{bottom:522.320520pt;}
.y1a_c00233{bottom:548.931720pt;}
.y25_c00233{bottom:549.882120pt;}
.ya_c00233{bottom:550.515720pt;}
.y9_c00233{bottom:578.715320pt;}
.y24_c00233{bottom:579.027720pt;}
.y19_c00233{bottom:579.344520pt;}
.y23_c00233{bottom:605.955720pt;}
.y18_c00233{bottom:606.276920pt;}
.y8_c00233{bottom:607.544120pt;}
.y17_c00233{bottom:646.506120pt;}
.y7_c00233{bottom:664.880520pt;}
.y22_c00233{bottom:665.835320pt;}
.y16_c00233{bottom:666.147720pt;}
.y15_c00233{bottom:680.720520pt;}
.y6_c00233{bottom:722.225720pt;}
.y5_c00233{bottom:751.050120pt;}
.y4_c00233{bottom:779.249720pt;}
.y3_c00233{bottom:808.395320pt;}
.y2_c00233{bottom:953.802120pt;}
.h17_c00233{height:30.382504pt;}
.ha_c00233{height:31.572934pt;}
.h3_c00233{height:32.070415pt;}
.h16_c00233{height:60.802673pt;}
.hc_c00233{height:62.227871pt;}
.h15_c00233{height:62.530016pt;}
.he_c00233{height:62.875485pt;}
.hf_c00233{height:64.063496pt;}
.hd_c00233{height:64.257360pt;}
.h13_c00233{height:64.602829pt;}
.hb_c00233{height:65.639063pt;}
.h9_c00233{height:66.082500pt;}
.h14_c00233{height:66.675469pt;}
.h6_c00233{height:68.057516pt;}
.h2_c00233{height:68.402813pt;}
.h12_c00233{height:68.652559pt;}
.h4_c00233{height:68.748281pt;}
.h8_c00233{height:70.993828pt;}
.h11_c00233{height:71.589375pt;}
.h5_c00233{height:75.139453pt;}
.h7_c00233{height:78.421579pt;}
.h10_c00233{height:108.137700pt;}
.h1_c00233{height:986.666667pt;}
.h0_c00233{height:1122.666667pt;}
.w1_c00233{width:668.000000pt;}
.w0_c00233{width:793.333333pt;}
.x0_c00233{left:0.000000pt;}
.x2f_c00233{left:54.357987pt;}
.xd_c00233{left:55.515187pt;}
.x27_c00233{left:56.412787pt;}
.x1_c00233{left:62.666667pt;}
.xe_c00233{left:84.629987pt;}
.x22_c00233{left:85.549587pt;}
.x2b_c00233{left:95.401187pt;}
.x3_c00233{left:103.677587pt;}
.x31_c00233{left:104.623587pt;}
.x33_c00233{left:108.130387pt;}
.x25_c00233{left:113.766787pt;}
.x28_c00233{left:123.921987pt;}
.x34_c00233{left:124.885587pt;}
.x23_c00233{left:132.321587pt;}
.x2d_c00233{left:133.377587pt;}
.x2c_c00233{left:134.380787pt;}
.x19_c00233{left:143.145587pt;}
.x24_c00233{left:152.777187pt;}
.xf_c00233{left:162.083187pt;}
.x2e_c00233{left:163.834387pt;}
.x2a_c00233{left:171.543187pt;}
.x1a_c00233{left:172.550787pt;}
.x29_c00233{left:182.050387pt;}
.x1b_c00233{left:191.937187pt;}
.x32_c00233{left:193.296787pt;}
.x4_c00233{left:201.951587pt;}
.x1c_c00233{left:211.512787pt;}
.x30_c00233{left:212.727187pt;}
.x26_c00233{left:221.324787pt;}
.x5_c00233{left:231.946387pt;}
.x41_c00233{left:232.923187pt;}
.x1d_c00233{left:251.869587pt;}
.x10_c00233{left:260.559587pt;}
.x35_c00233{left:261.457187pt;}
.x42_c00233{left:272.197587pt;}
.x48_c00233{left:281.393587pt;}
.x4b_c00233{left:292.081187pt;}
.x43_c00233{left:300.713987pt;}
.x1e_c00233{left:309.892387pt;}
.x6_c00233{left:319.726387pt;}
.x1f_c00233{left:329.784787pt;}
.x7_c00233{left:338.875187pt;}
.x36_c00233{left:340.313987pt;}
.x11_c00233{left:349.179987pt;}
.x44_c00233{left:360.241587pt;}
.x12_c00233{left:368.689587pt;}
.x37_c00233{left:378.334387pt;}
.x8_c00233{left:387.825187pt;}
.x4c_c00233{left:388.898787pt;}
.x20_c00233{left:397.223587pt;}
.x3a_c00233{left:399.841587pt;}
.x38_c00233{left:408.430387pt;}
.x39_c00233{left:417.287587pt;}
.x4d_c00233{left:418.242387pt;}
.x13_c00233{left:427.125987pt;}
.x45_c00233{left:428.384387pt;}
.x9_c00233{left:447.066787pt;}
.x4e_c00233{left:448.025987pt;}
.x49_c00233{left:457.032787pt;}
.x14_c00233{left:465.309187pt;}
.x4f_c00233{left:477.765587pt;}
.xa_c00233{left:485.733987pt;}
.xb_c00233{left:495.840787pt;}
.x46_c00233{left:516.115987pt;}
.x15_c00233{left:527.129187pt;}
.x3b_c00233{left:534.763187pt;}
.x16_c00233{left:544.513587pt;}
.x50_c00233{left:545.600387pt;}
.x4a_c00233{left:554.329987pt;}
.x47_c00233{left:555.425587pt;}
.x21_c00233{left:563.486387pt;}
.x2_c00233{left:573.742787pt;}
.x40_c00233{left:575.665587pt;}
.xc_c00233{left:583.185187pt;}
.x17_c00233{left:584.113587pt;}
.x3f_c00233{left:585.147587pt;}
.x18_c00233{left:592.983987pt;}
.x3e_c00233{left:602.949987pt;}
.x3c_c00233{left:612.893987pt;}
.x3d_c00233{left:632.715987pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5080208241a39708d330b606.woff2')format("woff");}.ff1_c00234{font-family:ff1_c00234;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00234;src:url('chunks/assets/font_c251df45d2fc4314f10657c3.woff2')format("woff");}.ff2_c00234{font-family:ff2_c00234;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00234;src:url('chunks/assets/font_5158a80764b9e4dd6d4769b0.woff2')format("woff");}.ff3_c00234{font-family:ff3_c00234;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m76_c00234{transform:matrix(0.173823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173823,0.000000,0.000000,0.250000,0,0);}
.m40_c00234{transform:matrix(0.193128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193128,0.000000,0.000000,0.250000,0,0);}
.m12_c00234{transform:matrix(0.196729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196729,0.000000,0.000000,0.250000,0,0);}
.m19_c00234{transform:matrix(0.211711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211711,0.000000,0.000000,0.250000,0,0);}
.m5f_c00234{transform:matrix(0.216704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216704,0.000000,0.000000,0.250000,0,0);}
.m8_c00234{transform:matrix(0.220377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220377,0.000000,0.000000,0.250000,0,0);}
.m83_c00234{transform:matrix(0.224573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224573,0.000000,0.000000,0.250000,0,0);}
.m5b_c00234{transform:matrix(0.227167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227167,0.000000,0.000000,0.250000,0,0);}
.m85_c00234{transform:matrix(0.228445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228445,0.000000,0.000000,0.250000,0,0);}
.mc_c00234{transform:matrix(0.230189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230189,0.000000,0.000000,0.250000,0,0);}
.m15_c00234{transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);}
.m8a_c00234{transform:matrix(0.241737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241737,0.000000,0.000000,0.250000,0,0);}
.m6d_c00234{transform:matrix(0.248868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248868,0.000000,0.000000,0.250000,0,0);}
.m1_c00234{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m7_c00234{transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);}
.ma7_c00234{transform:matrix(0.254597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254597,0.000000,0.000000,0.250000,0,0);}
.m4a_c00234{transform:matrix(0.254648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254648,0.000000,0.000000,0.250000,0,0);}
.mad_c00234{transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);}
.m68_c00234{transform:matrix(0.256952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256952,0.000000,0.000000,0.250000,0,0);}
.maf_c00234{transform:matrix(0.257043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257043,0.000000,0.000000,0.250000,0,0);}
.m22_c00234{transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);}
.m59_c00234{transform:matrix(0.258054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258054,0.000000,0.000000,0.250000,0,0);}
.md_c00234{transform:matrix(0.258321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258321,0.000000,0.000000,0.250000,0,0);}
.m63_c00234{transform:matrix(0.258532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258532,0.000000,0.000000,0.250000,0,0);}
.m27_c00234{transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);}
.m98_c00234{transform:matrix(0.259554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259554,0.000000,0.000000,0.250000,0,0);}
.m96_c00234{transform:matrix(0.259810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259810,0.000000,0.000000,0.250000,0,0);}
.m52_c00234{transform:matrix(0.259988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259988,0.000000,0.000000,0.250000,0,0);}
.m2b_c00234{transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);}
.m39_c00234{transform:matrix(0.260756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260756,0.000000,0.000000,0.250000,0,0);}
.mbb_c00234{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.m20_c00234{transform:matrix(0.261735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261735,0.000000,0.000000,0.250000,0,0);}
.mb_c00234{transform:matrix(0.262074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262074,0.000000,0.000000,0.250000,0,0);}
.m3a_c00234{transform:matrix(0.263254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263254,0.000000,0.000000,0.250000,0,0);}
.m6_c00234{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.mb7_c00234{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.mb4_c00234{transform:matrix(0.264697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264697,0.000000,0.000000,0.250000,0,0);}
.m3c_c00234{transform:matrix(0.265371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265371,0.000000,0.000000,0.250000,0,0);}
.m62_c00234{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.maa_c00234{transform:matrix(0.266384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266384,0.000000,0.000000,0.250000,0,0);}
.ma_c00234{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m8f_c00234{transform:matrix(0.268050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268050,0.000000,0.000000,0.250000,0,0);}
.m90_c00234{transform:matrix(0.268088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268088,0.000000,0.000000,0.250000,0,0);}
.m2d_c00234{transform:matrix(0.268275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268275,0.000000,0.000000,0.250000,0,0);}
.m66_c00234{transform:matrix(0.268484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268484,0.000000,0.000000,0.250000,0,0);}
.mb6_c00234{transform:matrix(0.268695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268695,0.000000,0.000000,0.250000,0,0);}
.mc8_c00234{transform:matrix(0.268751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268751,0.000000,0.000000,0.250000,0,0);}
.mcb_c00234{transform:matrix(0.268797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268797,0.000000,0.000000,0.250000,0,0);}
.m56_c00234{transform:matrix(0.270362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270362,0.000000,0.000000,0.250000,0,0);}
.m87_c00234{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m7b_c00234{transform:matrix(0.272038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272038,0.000000,0.000000,0.250000,0,0);}
.m5c_c00234{transform:matrix(0.272293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272293,0.000000,0.000000,0.250000,0,0);}
.mbd_c00234{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.ma5_c00234{transform:matrix(0.272710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272710,0.000000,0.000000,0.250000,0,0);}
.m1c_c00234{transform:matrix(0.272825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272825,0.000000,0.000000,0.250000,0,0);}
.m16_c00234{transform:matrix(0.273113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273113,0.000000,0.000000,0.250000,0,0);}
.m2f_c00234{transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);}
.mca_c00234{transform:matrix(0.273905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273905,0.000000,0.000000,0.250000,0,0);}
.m4_c00234{transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);}
.m57_c00234{transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);}
.m94_c00234{transform:matrix(0.275961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275961,0.000000,0.000000,0.250000,0,0);}
.m60_c00234{transform:matrix(0.276021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276021,0.000000,0.000000,0.250000,0,0);}
.m49_c00234{transform:matrix(0.276131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276131,0.000000,0.000000,0.250000,0,0);}
.mba_c00234{transform:matrix(0.276535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276535,0.000000,0.000000,0.250000,0,0);}
.m4c_c00234{transform:matrix(0.277058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277058,0.000000,0.000000,0.250000,0,0);}
.m24_c00234{transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);}
.m29_c00234{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m9d_c00234{transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);}
.m61_c00234{transform:matrix(0.277767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277767,0.000000,0.000000,0.250000,0,0);}
.m21_c00234{transform:matrix(0.277905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277905,0.000000,0.000000,0.250000,0,0);}
.ma1_c00234{transform:matrix(0.278073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278073,0.000000,0.000000,0.250000,0,0);}
.m30_c00234{transform:matrix(0.278174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278174,0.000000,0.000000,0.250000,0,0);}
.m70_c00234{transform:matrix(0.279230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279230,0.000000,0.000000,0.250000,0,0);}
.m37_c00234{transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);}
.m32_c00234{transform:matrix(0.279610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279610,0.000000,0.000000,0.250000,0,0);}
.m14_c00234{transform:matrix(0.280943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280943,0.000000,0.000000,0.250000,0,0);}
.m4f_c00234{transform:matrix(0.281528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281528,0.000000,0.000000,0.250000,0,0);}
.m3b_c00234{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.m67_c00234{transform:matrix(0.281605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281605,0.000000,0.000000,0.250000,0,0);}
.ma2_c00234{transform:matrix(0.281766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281766,0.000000,0.000000,0.250000,0,0);}
.m7a_c00234{transform:matrix(0.281782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281782,0.000000,0.000000,0.250000,0,0);}
.m33_c00234{transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);}
.m26_c00234{transform:matrix(0.282518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282518,0.000000,0.000000,0.250000,0,0);}
.m31_c00234{transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);}
.m3f_c00234{transform:matrix(0.284756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284756,0.000000,0.000000,0.250000,0,0);}
.m77_c00234{transform:matrix(0.286577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286577,0.000000,0.000000,0.250000,0,0);}
.m5_c00234{transform:matrix(0.286672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286672,0.000000,0.000000,0.250000,0,0);}
.mb3_c00234{transform:matrix(0.287458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287458,0.000000,0.000000,0.250000,0,0);}
.ma3_c00234{transform:matrix(0.288372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288372,0.000000,0.000000,0.250000,0,0);}
.m4d_c00234{transform:matrix(0.289069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289069,0.000000,0.000000,0.250000,0,0);}
.m3_c00234{transform:matrix(0.289652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289652,0.000000,0.000000,0.250000,0,0);}
.m34_c00234{transform:matrix(0.290155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290155,0.000000,0.000000,0.250000,0,0);}
.mb9_c00234{transform:matrix(0.290640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290640,0.000000,0.000000,0.250000,0,0);}
.m72_c00234{transform:matrix(0.290723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290723,0.000000,0.000000,0.250000,0,0);}
.m6a_c00234{transform:matrix(0.290836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290836,0.000000,0.000000,0.250000,0,0);}
.mae_c00234{transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);}
.m28_c00234{transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);}
.m7e_c00234{transform:matrix(0.294033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294033,0.000000,0.000000,0.250000,0,0);}
.m71_c00234{transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);}
.m86_c00234{transform:matrix(0.295851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295851,0.000000,0.000000,0.250000,0,0);}
.m8b_c00234{transform:matrix(0.295949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295949,0.000000,0.000000,0.250000,0,0);}
.m69_c00234{transform:matrix(0.296644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296644,0.000000,0.000000,0.250000,0,0);}
.m54_c00234{transform:matrix(0.296872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296872,0.000000,0.000000,0.250000,0,0);}
.mab_c00234{transform:matrix(0.297275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297275,0.000000,0.000000,0.250000,0,0);}
.m23_c00234{transform:matrix(0.297646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297646,0.000000,0.000000,0.250000,0,0);}
.m44_c00234{transform:matrix(0.299632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299632,0.000000,0.000000,0.250000,0,0);}
.m17_c00234{transform:matrix(0.299927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299927,0.000000,0.000000,0.250000,0,0);}
.m9e_c00234{transform:matrix(0.300157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300157,0.000000,0.000000,0.250000,0,0);}
.m8c_c00234{transform:matrix(0.300987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300987,0.000000,0.000000,0.250000,0,0);}
.m2a_c00234{transform:matrix(0.301222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301222,0.000000,0.000000,0.250000,0,0);}
.m50_c00234{transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);}
.m1f_c00234{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m41_c00234{transform:matrix(0.303158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303158,0.000000,0.000000,0.250000,0,0);}
.mc1_c00234{transform:matrix(0.303625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303625,0.000000,0.000000,0.250000,0,0);}
.ma9_c00234{transform:matrix(0.303651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303651,0.000000,0.000000,0.250000,0,0);}
.m80_c00234{transform:matrix(0.304191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304191,0.000000,0.000000,0.250000,0,0);}
.mc6_c00234{transform:matrix(0.304378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304378,0.000000,0.000000,0.250000,0,0);}
.m84_c00234{transform:matrix(0.305409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305409,0.000000,0.000000,0.250000,0,0);}
.m92_c00234{transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);}
.m2_c00234{transform:matrix(0.305703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305703,0.000000,0.000000,0.250000,0,0);}
.m6c_c00234{transform:matrix(0.305824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305824,0.000000,0.000000,0.250000,0,0);}
.m65_c00234{transform:matrix(0.306304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306304,0.000000,0.000000,0.250000,0,0);}
.m1a_c00234{transform:matrix(0.307937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307937,0.000000,0.000000,0.250000,0,0);}
.m5a_c00234{transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);}
.mf_c00234{transform:matrix(0.308470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308470,0.000000,0.000000,0.250000,0,0);}
.mbc_c00234{transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);}
.ma6_c00234{transform:matrix(0.308970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308970,0.000000,0.000000,0.250000,0,0);}
.mb2_c00234{transform:matrix(0.309166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309166,0.000000,0.000000,0.250000,0,0);}
.m3e_c00234{transform:matrix(0.310877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310877,0.000000,0.000000,0.250000,0,0);}
.m1e_c00234{transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);}
.ma8_c00234{transform:matrix(0.312061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312061,0.000000,0.000000,0.250000,0,0);}
.m13_c00234{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.m8d_c00234{transform:matrix(0.312688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312688,0.000000,0.000000,0.250000,0,0);}
.m79_c00234{transform:matrix(0.313366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313366,0.000000,0.000000,0.250000,0,0);}
.m36_c00234{transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);}
.m73_c00234{transform:matrix(0.313583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313583,0.000000,0.000000,0.250000,0,0);}
.m2e_c00234{transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);}
.m7d_c00234{transform:matrix(0.314146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314146,0.000000,0.000000,0.250000,0,0);}
.m81_c00234{transform:matrix(0.314816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314816,0.000000,0.000000,0.250000,0,0);}
.m3d_c00234{transform:matrix(0.315167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315167,0.000000,0.000000,0.250000,0,0);}
.m10_c00234{transform:matrix(0.315202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315202,0.000000,0.000000,0.250000,0,0);}
.mbe_c00234{transform:matrix(0.315389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315389,0.000000,0.000000,0.250000,0,0);}
.m9a_c00234{transform:matrix(0.315717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315717,0.000000,0.000000,0.250000,0,0);}
.m0_c00234{transform:matrix(0.315865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315865,0.000000,0.000000,0.250000,0,0);}
.mc3_c00234{transform:matrix(0.316807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316807,0.000000,0.000000,0.250000,0,0);}
.m47_c00234{transform:matrix(0.316972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316972,0.000000,0.000000,0.250000,0,0);}
.m8e_c00234{transform:matrix(0.316975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316975,0.000000,0.000000,0.250000,0,0);}
.mb5_c00234{transform:matrix(0.317925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317925,0.000000,0.000000,0.250000,0,0);}
.m11_c00234{transform:matrix(0.318723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318723,0.000000,0.000000,0.250000,0,0);}
.m35_c00234{transform:matrix(0.320922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320922,0.000000,0.000000,0.250000,0,0);}
.me_c00234{transform:matrix(0.321354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321354,0.000000,0.000000,0.250000,0,0);}
.m42_c00234{transform:matrix(0.321492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321492,0.000000,0.000000,0.250000,0,0);}
.m48_c00234{transform:matrix(0.321863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321863,0.000000,0.000000,0.250000,0,0);}
.m89_c00234{transform:matrix(0.323503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323503,0.000000,0.000000,0.250000,0,0);}
.m45_c00234{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.m75_c00234{transform:matrix(0.323839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323839,0.000000,0.000000,0.250000,0,0);}
.m6f_c00234{transform:matrix(0.324254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324254,0.000000,0.000000,0.250000,0,0);}
.mac_c00234{transform:matrix(0.324794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324794,0.000000,0.000000,0.250000,0,0);}
.m7c_c00234{transform:matrix(0.327297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327297,0.000000,0.000000,0.250000,0,0);}
.m4b_c00234{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.mcc_c00234{transform:matrix(0.327729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327729,0.000000,0.000000,0.250000,0,0);}
.m82_c00234{transform:matrix(0.328605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328605,0.000000,0.000000,0.250000,0,0);}
.m1d_c00234{transform:matrix(0.328936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328936,0.000000,0.000000,0.250000,0,0);}
.m55_c00234{transform:matrix(0.329713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329713,0.000000,0.000000,0.250000,0,0);}
.m6b_c00234{transform:matrix(0.330614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330614,0.000000,0.000000,0.250000,0,0);}
.m4e_c00234{transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);}
.mbf_c00234{transform:matrix(0.331443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331443,0.000000,0.000000,0.250000,0,0);}
.m5d_c00234{transform:matrix(0.331490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331490,0.000000,0.000000,0.250000,0,0);}
.m1b_c00234{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.ma4_c00234{transform:matrix(0.333713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333713,0.000000,0.000000,0.250000,0,0);}
.m43_c00234{transform:matrix(0.334414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334414,0.000000,0.000000,0.250000,0,0);}
.m51_c00234{transform:matrix(0.334696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334696,0.000000,0.000000,0.250000,0,0);}
.mc2_c00234{transform:matrix(0.335519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335519,0.000000,0.000000,0.250000,0,0);}
.m5e_c00234{transform:matrix(0.335804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335804,0.000000,0.000000,0.250000,0,0);}
.m53_c00234{transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);}
.m7f_c00234{transform:matrix(0.339126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339126,0.000000,0.000000,0.250000,0,0);}
.m88_c00234{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m6e_c00234{transform:matrix(0.339556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339556,0.000000,0.000000,0.250000,0,0);}
.mc4_c00234{transform:matrix(0.339587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339587,0.000000,0.000000,0.250000,0,0);}
.mb0_c00234{transform:matrix(0.341020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341020,0.000000,0.000000,0.250000,0,0);}
.mb1_c00234{transform:matrix(0.341026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341026,0.000000,0.000000,0.250000,0,0);}
.m74_c00234{transform:matrix(0.341622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341622,0.000000,0.000000,0.250000,0,0);}
.m9c_c00234{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.m9b_c00234{transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);}
.m46_c00234{transform:matrix(0.345039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345039,0.000000,0.000000,0.250000,0,0);}
.m99_c00234{transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);}
.mb8_c00234{transform:matrix(0.351023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351023,0.000000,0.000000,0.250000,0,0);}
.mc7_c00234{transform:matrix(0.353894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353894,0.000000,0.000000,0.250000,0,0);}
.m97_c00234{transform:matrix(0.354932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354932,0.000000,0.000000,0.250000,0,0);}
.m58_c00234{transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);}
.mc0_c00234{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m38_c00234{transform:matrix(0.358842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358842,0.000000,0.000000,0.250000,0,0);}
.ma0_c00234{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);}
.mc5_c00234{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.mc9_c00234{transform:matrix(0.362785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362785,0.000000,0.000000,0.250000,0,0);}
.m18_c00234{transform:matrix(0.365181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365181,0.000000,0.000000,0.250000,0,0);}
.m91_c00234{transform:matrix(0.368363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368363,0.000000,0.000000,0.250000,0,0);}
.m25_c00234{transform:matrix(0.372071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372071,0.000000,0.000000,0.250000,0,0);}
.m9f_c00234{transform:matrix(0.374773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374773,0.000000,0.000000,0.250000,0,0);}
.m95_c00234{transform:matrix(0.378961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378961,0.000000,0.000000,0.250000,0,0);}
.m9_c00234{transform:matrix(0.392470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392470,0.000000,0.000000,0.250000,0,0);}
.m93_c00234{transform:matrix(0.394350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394350,0.000000,0.000000,0.250000,0,0);}
.m78_c00234{transform:matrix(0.396177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396177,0.000000,0.000000,0.250000,0,0);}
.m64_c00234{transform:matrix(0.424628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424628,0.000000,0.000000,0.250000,0,0);}
.m2c_c00234{transform:matrix(0.430633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430633,0.000000,0.000000,0.250000,0,0);}
.v0_c00234{vertical-align:0.000000px;}
.ls5_c00234{letter-spacing:-2.744280px;}
.ls6_c00234{letter-spacing:-0.250906px;}
.ls3_c00234{letter-spacing:0.000000px;}
.lsa_c00234{letter-spacing:0.454766px;}
.lsd_c00234{letter-spacing:1.591682px;}
.ls1_c00234{letter-spacing:2.595305px;}
.ls8_c00234{letter-spacing:3.395066px;}
.ls9_c00234{letter-spacing:3.559723px;}
.ls2_c00234{letter-spacing:3.603610px;}
.lsc_c00234{letter-spacing:3.653813px;}
.lsf_c00234{letter-spacing:3.781810px;}
.lsb_c00234{letter-spacing:3.912559px;}
.ls4_c00234{letter-spacing:3.920400px;}
.ls0_c00234{letter-spacing:13.486176px;}
.ls7_c00234{letter-spacing:52.747398px;}
.lse_c00234{letter-spacing:54.172998px;}
.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;}
}
.ws7_c00234{word-spacing:-23.255813px;}
.ws4_c00234{word-spacing:-23.161723px;}
.ws6_c00234{word-spacing:-19.602000px;}
.ws1_c00234{word-spacing:-19.351094px;}
.ws8_c00234{word-spacing:-2.431044px;}
.ws3_c00234{word-spacing:-2.195424px;}
.ws9_c00234{word-spacing:0.000000px;}
.ws5_c00234{word-spacing:3.449556px;}
.ws0_c00234{word-spacing:5.488956px;}
.ws2_c00234{word-spacing:6.821496px;}
._1b_c00234{margin-left:-18.229464px;}
._1c_c00234{margin-left:-10.193040px;}
._12_c00234{margin-left:-9.094140px;}
._18_c00234{margin-left:-3.728736px;}
._1d_c00234{margin-left:-2.015640px;}
._7_c00234{width:1.144757px;}
._0_c00234{width:2.979504px;}
._15_c00234{width:4.876978px;}
._8_c00234{width:6.037020px;}
._d_c00234{width:7.135920px;}
._1_c00234{width:8.660520px;}
._4_c00234{width:9.957024px;}
._19_c00234{width:10.977120px;}
._10_c00234{width:12.310056px;}
._f_c00234{width:14.113440px;}
._c_c00234{width:15.681600px;}
._11_c00234{width:18.425088px;}
._3_c00234{width:20.856528px;}
._2_c00234{width:22.267872px;}
._a_c00234{width:23.679216px;}
._5_c00234{width:25.090956px;}
._1e_c00234{width:26.747899px;}
._6_c00234{width:28.504872px;}
._9_c00234{width:30.380328px;}
._13_c00234{width:31.798008px;}
._b_c00234{width:34.029072px;}
._1a_c00234{width:35.049168px;}
._e_c00234{width:38.149848px;}
._14_c00234{width:40.614948px;}
._17_c00234{width:44.111232px;}
._16_c00234{width:47.359224px;}
.fc0_c00234{color:transparent;}
.fs2_c00234{font-size:52.747398px;}
.fs3_c00234{font-size:54.172998px;}
.fs4_c00234{font-size:64.548000px;}
.fs0_c00234{font-size:72.072198px;}
.fs5_c00234{font-size:75.636198px;}
.fs1_c00234{font-size:78.408000px;}
.y0_c00234{bottom:0.000000px;}
.y1_c00234{bottom:76.500000px;}
.y1b_c00234{bottom:170.627535px;}
.y1a_c00234{bottom:201.985785px;}
.y19_c00234{bottom:201.992517px;}
.y18_c00234{bottom:231.571935px;}
.y17_c00234{bottom:262.222335px;}
.y16_c00234{bottom:293.580585px;}
.y15_c00234{bottom:324.943785px;}
.y14_c00234{bottom:357.019785px;}
.y13_c00234{bottom:389.100735px;}
.y11_c00234{bottom:446.829021px;}
.y12_c00234{bottom:446.832585px;}
.y10_c00234{bottom:477.839385px;}
.yf_c00234{bottom:508.851135px;}
.ye_c00234{bottom:540.209385px;}
.yd_c00234{bottom:571.572585px;}
.yc_c00234{bottom:603.297135px;}
.yb_c00234{bottom:634.660335px;}
.ya_c00234{bottom:666.379935px;}
.y9_c00234{bottom:697.386735px;}
.y8_c00234{bottom:729.819135px;}
.y7_c00234{bottom:762.251535px;}
.y6_c00234{bottom:794.322585px;}
.y5_c00234{bottom:858.118185px;}
.y4_c00234{bottom:890.550585px;}
.y3_c00234{bottom:922.987935px;}
.y2_c00234{bottom:1083.719385px;}
.h4_c00234{height:35.129767px;}
.h5_c00234{height:36.079217px;}
.h2_c00234{height:70.734921px;}
.h6_c00234{height:74.232792px;}
.h3_c00234{height:76.953164px;}
.h1_c00234{height:1110.000000px;}
.h0_c00234{height:1263.000000px;}
.w1_c00234{width:751.500000px;}
.w0_c00234{width:892.500000px;}
.x0_c00234{left:0.000000px;}
.x4_c00234{left:57.375885px;}
.x68_c00234{left:58.702485px;}
.x50_c00234{left:68.864835px;}
.x1_c00234{left:70.500000px;}
.x13_c00234{left:79.571685px;}
.x69_c00234{left:80.952735px;}
.x3f_c00234{left:90.402285px;}
.x70_c00234{left:91.674435px;}
.x49_c00234{left:101.846685px;}
.x59_c00234{left:104.039535px;}
.x25_c00234{left:111.127935px;}
.x46_c00234{left:112.137735px;}
.x74_c00234{left:113.588085px;}
.x14_c00234{left:114.627585px;}
.x31_c00234{left:123.542535px;}
.x80_c00234{left:124.626585px;}
.x15_c00234{left:133.833585px;}
.x5_c00234{left:135.853185px;}
.x39_c00234{left:144.263235px;}
.x24_c00234{left:145.995735px;}
.x79_c00234{left:147.040185px;}
.x54_c00234{left:154.955235px;}
.x6a_c00234{left:156.024435px;}
.x26_c00234{left:157.237185px;}
.x16_c00234{left:167.953935px;}
.x3a_c00234{left:177.735135px;}
.x32_c00234{left:179.309235px;}
.x7a_c00234{left:181.106085px;}
.x4a_c00234{left:189.352785px;}
.x6b_c00234{left:190.362585px;}
.x6_c00234{left:199.826985px;}
.x55_c00234{left:201.084285px;}
.x71_c00234{left:202.089135px;}
.x56_c00234{left:210.197235px;}
.x60_c00234{left:211.291185px;}
.x17_c00234{left:212.419785px;}
.x33_c00234{left:222.819735px;}
.x75_c00234{left:223.928535px;}
.x40_c00234{left:233.882985px;}
.x72_c00234{left:235.293735px;}
.x64_c00234{left:236.669835px;}
.x62_c00234{left:244.055235px;}
.x18_c00234{left:245.277885px;}
.x7_c00234{left:255.969885px;}
.x57_c00234{left:256.994535px;}
.x27_c00234{left:267.651885px;}
.x47_c00234{left:277.710285px;}
.x8_c00234{left:279.106185px;}
.x4b_c00234{left:287.847885px;}
.x41_c00234{left:289.461585px;}
.x34_c00234{left:298.940835px;}
.x19_c00234{left:300.163485px;}
.x1a_c00234{left:310.994085px;}
.x9_c00234{left:312.241485px;}
.x6c_c00234{left:314.686785px;}
.x5a_c00234{left:322.062285px;}
.x58_c00234{left:324.106635px;}
.x51_c00234{left:331.729635px;}
.x35_c00234{left:333.635385px;}
.x81_c00234{left:336.818235px;}
.x4c_c00234{left:343.644285px;}
.x4d_c00234{left:355.385685px;}
.x7b_c00234{left:356.791485px;}
.x5b_c00234{left:365.552985px;}
.x1b_c00234{left:366.656835px;}
.x82_c00234{left:367.681485px;}
.x28_c00234{left:377.145885px;}
.x65_c00234{left:378.561585px;}
.x29_c00234{left:387.644835px;}
.x61_c00234{left:389.179335px;}
.x42_c00234{left:397.663635px;}
.x1c_c00234{left:399.287235px;}
.x66_c00234{left:400.594035px;}
.x1d_c00234{left:409.741635px;}
.x48_c00234{left:410.974185px;}
.xa_c00234{left:421.700835px;}
.x76_c00234{left:423.111585px;}
.x2a_c00234{left:433.140285px;}
.x63_c00234{left:442.213635px;}
.x2b_c00234{left:443.401635px;}
.x7c_c00234{left:445.139085px;}
.xb_c00234{left:454.519335px;}
.x7d_c00234{left:455.900385px;}
.x5c_c00234{left:465.191535px;}
.x5d_c00234{left:474.646035px;}
.x2c_c00234{left:476.442885px;}
.x6d_c00234{left:486.763635px;}
.xc_c00234{left:487.996185px;}
.x77_c00234{left:489.392085px;}
.x4e_c00234{left:497.980335px;}
.x36_c00234{left:499.366335px;}
.xd_c00234{left:508.469385px;}
.x1e_c00234{left:509.716785px;}
.x5e_c00234{left:519.196035px;}
.x3b_c00234{left:520.948335px;}
.x6e_c00234{left:522.190785px;}
.xe_c00234{left:531.858135px;}
.x3c_c00234{left:541.951185px;}
.x78_c00234{left:543.366885px;}
.x1f_c00234{left:552.341235px;}
.x2d_c00234{left:553.905435px;}
.xf_c00234{left:555.905235px;}
.x3d_c00234{left:564.612285px;}
.x7e_c00234{left:566.666535px;}
.x10_c00234{left:575.675535px;}
.x2e_c00234{left:586.362585px;}
.x37_c00234{left:595.822035px;}
.x43_c00234{left:596.866485px;}
.x20_c00234{left:607.187235px;}
.x4f_c00234{left:608.370285px;}
.x52_c00234{left:609.825585px;}
.x44_c00234{left:611.345235px;}
.x11_c00234{left:619.497885px;}
.x7f_c00234{left:621.279885px;}
.x21_c00234{left:630.912585px;}
.x2_c00234{left:640.461135px;}
.x22_c00234{left:641.574885px;}
.x53_c00234{left:643.629135px;}
.x5f_c00234{left:651.752085px;}
.x12_c00234{left:653.034135px;}
.x73_c00234{left:656.162535px;}
.x3e_c00234{left:662.468835px;}
.x23_c00234{left:664.052835px;}
.x3_c00234{left:674.121135px;}
.x67_c00234{left:675.744735px;}
.x2f_c00234{left:685.783335px;}
.x38_c00234{left:686.822835px;}
.x45_c00234{left:697.539585px;}
.x6f_c00234{left:698.608785px;}
.x30_c00234{left:708.162285px;}
@media print{
.v0_c00234{vertical-align:0.000000pt;}
.ls5_c00234{letter-spacing:-2.439360pt;}
.ls6_c00234{letter-spacing:-0.223027pt;}
.ls3_c00234{letter-spacing:0.000000pt;}
.lsa_c00234{letter-spacing:0.404237pt;}
.lsd_c00234{letter-spacing:1.414829pt;}
.ls1_c00234{letter-spacing:2.306938pt;}
.ls8_c00234{letter-spacing:3.017837pt;}
.ls9_c00234{letter-spacing:3.164198pt;}
.ls2_c00234{letter-spacing:3.203209pt;}
.lsc_c00234{letter-spacing:3.247834pt;}
.lsf_c00234{letter-spacing:3.361609pt;}
.lsb_c00234{letter-spacing:3.477830pt;}
.ls4_c00234{letter-spacing:3.484800pt;}
.ls0_c00234{letter-spacing:11.987712pt;}
.ls7_c00234{letter-spacing:46.886576pt;}
.lse_c00234{letter-spacing:48.153776pt;}
.ws7_c00234{word-spacing:-20.671834pt;}
.ws4_c00234{word-spacing:-20.588198pt;}
.ws6_c00234{word-spacing:-17.424000pt;}
.ws1_c00234{word-spacing:-17.200973pt;}
.ws8_c00234{word-spacing:-2.160928pt;}
.ws3_c00234{word-spacing:-1.951488pt;}
.ws9_c00234{word-spacing:0.000000pt;}
.ws5_c00234{word-spacing:3.066272pt;}
.ws0_c00234{word-spacing:4.879072pt;}
.ws2_c00234{word-spacing:6.063552pt;}
._1b_c00234{margin-left:-16.203968pt;}
._1c_c00234{margin-left:-9.060480pt;}
._12_c00234{margin-left:-8.083680pt;}
._18_c00234{margin-left:-3.314432pt;}
._1d_c00234{margin-left:-1.791680pt;}
._7_c00234{width:1.017562pt;}
._0_c00234{width:2.648448pt;}
._15_c00234{width:4.335091pt;}
._8_c00234{width:5.366240pt;}
._d_c00234{width:6.343040pt;}
._1_c00234{width:7.698240pt;}
._4_c00234{width:8.850688pt;}
._19_c00234{width:9.757440pt;}
._10_c00234{width:10.942272pt;}
._f_c00234{width:12.545280pt;}
._c_c00234{width:13.939200pt;}
._11_c00234{width:16.377856pt;}
._3_c00234{width:18.539136pt;}
._2_c00234{width:19.793664pt;}
._a_c00234{width:21.048192pt;}
._5_c00234{width:22.303072pt;}
._1e_c00234{width:23.775910pt;}
._6_c00234{width:25.337664pt;}
._9_c00234{width:27.004736pt;}
._13_c00234{width:28.264896pt;}
._b_c00234{width:30.248064pt;}
._1a_c00234{width:31.154816pt;}
._e_c00234{width:33.910976pt;}
._14_c00234{width:36.102176pt;}
._17_c00234{width:39.209984pt;}
._16_c00234{width:42.097088pt;}
.fs2_c00234{font-size:46.886576pt;}
.fs3_c00234{font-size:48.153776pt;}
.fs4_c00234{font-size:57.376000pt;}
.fs0_c00234{font-size:64.064176pt;}
.fs5_c00234{font-size:67.232176pt;}
.fs1_c00234{font-size:69.696000pt;}
.y0_c00234{bottom:0.000000pt;}
.y1_c00234{bottom:68.000000pt;}
.y1b_c00234{bottom:151.668920pt;}
.y1a_c00234{bottom:179.542920pt;}
.y19_c00234{bottom:179.548904pt;}
.y18_c00234{bottom:205.841720pt;}
.y17_c00234{bottom:233.086520pt;}
.y16_c00234{bottom:260.960520pt;}
.y15_c00234{bottom:288.838920pt;}
.y14_c00234{bottom:317.350920pt;}
.y13_c00234{bottom:345.867320pt;}
.y11_c00234{bottom:397.181352pt;}
.y12_c00234{bottom:397.184520pt;}
.y10_c00234{bottom:424.746120pt;}
.yf_c00234{bottom:452.312120pt;}
.ye_c00234{bottom:480.186120pt;}
.yd_c00234{bottom:508.064520pt;}
.yc_c00234{bottom:536.264120pt;}
.yb_c00234{bottom:564.142520pt;}
.ya_c00234{bottom:592.337720pt;}
.y9_c00234{bottom:619.899320pt;}
.y8_c00234{bottom:648.728120pt;}
.y7_c00234{bottom:677.556920pt;}
.y6_c00234{bottom:706.064520pt;}
.y5_c00234{bottom:762.771720pt;}
.y4_c00234{bottom:791.600520pt;}
.y3_c00234{bottom:820.433720pt;}
.y2_c00234{bottom:963.306120pt;}
.h4_c00234{height:31.226460pt;}
.h5_c00234{height:32.070415pt;}
.h2_c00234{height:62.875485pt;}
.h6_c00234{height:65.984704pt;}
.h3_c00234{height:68.402813pt;}
.h1_c00234{height:986.666667pt;}
.h0_c00234{height:1122.666667pt;}
.w1_c00234{width:668.000000pt;}
.w0_c00234{width:793.333333pt;}
.x0_c00234{left:0.000000pt;}
.x4_c00234{left:51.000787pt;}
.x68_c00234{left:52.179987pt;}
.x50_c00234{left:61.213187pt;}
.x1_c00234{left:62.666667pt;}
.x13_c00234{left:70.730387pt;}
.x69_c00234{left:71.957987pt;}
.x3f_c00234{left:80.357587pt;}
.x70_c00234{left:81.488387pt;}
.x49_c00234{left:90.530387pt;}
.x59_c00234{left:92.479587pt;}
.x25_c00234{left:98.780387pt;}
.x46_c00234{left:99.677987pt;}
.x74_c00234{left:100.967187pt;}
.x14_c00234{left:101.891187pt;}
.x31_c00234{left:109.815587pt;}
.x80_c00234{left:110.779187pt;}
.x15_c00234{left:118.963187pt;}
.x5_c00234{left:120.758387pt;}
.x39_c00234{left:128.233987pt;}
.x24_c00234{left:129.773987pt;}
.x79_c00234{left:130.702387pt;}
.x54_c00234{left:137.737987pt;}
.x6a_c00234{left:138.688387pt;}
.x26_c00234{left:139.766387pt;}
.x16_c00234{left:149.292387pt;}
.x3a_c00234{left:157.986787pt;}
.x32_c00234{left:159.385987pt;}
.x7a_c00234{left:160.983187pt;}
.x4a_c00234{left:168.313587pt;}
.x6b_c00234{left:169.211187pt;}
.x6_c00234{left:177.623987pt;}
.x55_c00234{left:178.741587pt;}
.x71_c00234{left:179.634787pt;}
.x56_c00234{left:186.841987pt;}
.x60_c00234{left:187.814387pt;}
.x17_c00234{left:188.817587pt;}
.x33_c00234{left:198.061987pt;}
.x75_c00234{left:199.047587pt;}
.x40_c00234{left:207.895987pt;}
.x72_c00234{left:209.149987pt;}
.x64_c00234{left:210.373187pt;}
.x62_c00234{left:216.937987pt;}
.x18_c00234{left:218.024787pt;}
.x7_c00234{left:227.528787pt;}
.x57_c00234{left:228.439587pt;}
.x27_c00234{left:237.912787pt;}
.x47_c00234{left:246.853587pt;}
.x8_c00234{left:248.094387pt;}
.x4b_c00234{left:255.864787pt;}
.x41_c00234{left:257.299187pt;}
.x34_c00234{left:265.725187pt;}
.x19_c00234{left:266.811987pt;}
.x1a_c00234{left:276.439187pt;}
.x9_c00234{left:277.547987pt;}
.x6c_c00234{left:279.721587pt;}
.x5a_c00234{left:286.277587pt;}
.x58_c00234{left:288.094787pt;}
.x51_c00234{left:294.870787pt;}
.x35_c00234{left:296.564787pt;}
.x81_c00234{left:299.393987pt;}
.x4c_c00234{left:305.461587pt;}
.x4d_c00234{left:315.898387pt;}
.x7b_c00234{left:317.147987pt;}
.x5b_c00234{left:324.935987pt;}
.x1b_c00234{left:325.917187pt;}
.x82_c00234{left:326.827987pt;}
.x28_c00234{left:335.240787pt;}
.x65_c00234{left:336.499187pt;}
.x29_c00234{left:344.573187pt;}
.x61_c00234{left:345.937187pt;}
.x42_c00234{left:353.478787pt;}
.x1c_c00234{left:354.921987pt;}
.x66_c00234{left:356.083587pt;}
.x1d_c00234{left:364.214787pt;}
.x48_c00234{left:365.310387pt;}
.xa_c00234{left:374.845187pt;}
.x76_c00234{left:376.099187pt;}
.x2a_c00234{left:385.013587pt;}
.x63_c00234{left:393.078787pt;}
.x2b_c00234{left:394.134787pt;}
.x7c_c00234{left:395.679187pt;}
.xb_c00234{left:404.017187pt;}
.x7d_c00234{left:405.244787pt;}
.x5c_c00234{left:413.503587pt;}
.x5d_c00234{left:421.907587pt;}
.x2c_c00234{left:423.504787pt;}
.x6d_c00234{left:432.678787pt;}
.xc_c00234{left:433.774387pt;}
.x77_c00234{left:435.015187pt;}
.x4e_c00234{left:442.649187pt;}
.x36_c00234{left:443.881187pt;}
.xd_c00234{left:451.972787pt;}
.x1e_c00234{left:453.081587pt;}
.x5e_c00234{left:461.507587pt;}
.x3b_c00234{left:463.065187pt;}
.x6e_c00234{left:464.169587pt;}
.xe_c00234{left:472.762787pt;}
.x3c_c00234{left:481.734387pt;}
.x78_c00234{left:482.992787pt;}
.x1f_c00234{left:490.969987pt;}
.x2d_c00234{left:492.360387pt;}
.xf_c00234{left:494.137987pt;}
.x3d_c00234{left:501.877587pt;}
.x7e_c00234{left:503.703587pt;}
.x10_c00234{left:511.711587pt;}
.x2e_c00234{left:521.211187pt;}
.x37_c00234{left:529.619587pt;}
.x43_c00234{left:530.547987pt;}
.x20_c00234{left:539.721987pt;}
.x4f_c00234{left:540.773587pt;}
.x52_c00234{left:542.067187pt;}
.x44_c00234{left:543.417987pt;}
.x11_c00234{left:550.664787pt;}
.x7f_c00234{left:552.248787pt;}
.x21_c00234{left:560.811187pt;}
.x2_c00234{left:569.298787pt;}
.x22_c00234{left:570.288787pt;}
.x53_c00234{left:572.114787pt;}
.x5f_c00234{left:579.335187pt;}
.x12_c00234{left:580.474787pt;}
.x73_c00234{left:583.255587pt;}
.x3e_c00234{left:588.861187pt;}
.x23_c00234{left:590.269187pt;}
.x3_c00234{left:599.218787pt;}
.x67_c00234{left:600.661987pt;}
.x2f_c00234{left:609.585187pt;}
.x38_c00234{left:610.509187pt;}
.x45_c00234{left:620.035187pt;}
.x6f_c00234{left:620.985587pt;}
.x30_c00234{left:629.477587pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bf7f2b9d5e2a9ad8a071cd9e.woff2')format("woff");}.ff1_c00235{font-family:ff1_c00235;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00235;src:url('chunks/assets/font_a3ff266cbd3052cafbcfa89a.woff2')format("woff");}.ff2_c00235{font-family:ff2_c00235;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00235;src:url('chunks/assets/font_72f3997a075253bb56dbdb2f.woff2')format("woff");}.ff3_c00235{font-family:ff3_c00235;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m86_c00235{transform:matrix(0.170518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170518,0.000000,0.000000,0.250000,0,0);}
.m71_c00235{transform:matrix(0.178625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178625,0.000000,0.000000,0.250000,0,0);}
.m28_c00235{transform:matrix(0.195513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195513,0.000000,0.000000,0.250000,0,0);}
.m30_c00235{transform:matrix(0.222386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222386,0.000000,0.000000,0.250000,0,0);}
.mb7_c00235{transform:matrix(0.224226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224226,0.000000,0.000000,0.250000,0,0);}
.m5d_c00235{transform:matrix(0.229768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229768,0.000000,0.000000,0.250000,0,0);}
.m91_c00235{transform:matrix(0.232318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232318,0.000000,0.000000,0.250000,0,0);}
.mbc_c00235{transform:matrix(0.234662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234662,0.000000,0.000000,0.250000,0,0);}
.m9a_c00235{transform:matrix(0.238513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238513,0.000000,0.000000,0.250000,0,0);}
.m48_c00235{transform:matrix(0.242568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242568,0.000000,0.000000,0.250000,0,0);}
.m9f_c00235{transform:matrix(0.243164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243164,0.000000,0.000000,0.250000,0,0);}
.m0_c00235{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00235{transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);}
.mbe_c00235{transform:matrix(0.250427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250427,0.000000,0.000000,0.250000,0,0);}
.m81_c00235{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.m1c_c00235{transform:matrix(0.252167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252167,0.000000,0.000000,0.250000,0,0);}
.m73_c00235{transform:matrix(0.253545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253545,0.000000,0.000000,0.250000,0,0);}
.m8_c00235{transform:matrix(0.253661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253661,0.000000,0.000000,0.250000,0,0);}
.m9b_c00235{transform:matrix(0.253753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253753,0.000000,0.000000,0.250000,0,0);}
.m2c_c00235{transform:matrix(0.255007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255007,0.000000,0.000000,0.250000,0,0);}
.m58_c00235{transform:matrix(0.256515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256515,0.000000,0.000000,0.250000,0,0);}
.m62_c00235{transform:matrix(0.257066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257066,0.000000,0.000000,0.250000,0,0);}
.mc_c00235{transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);}
.m9_c00235{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m79_c00235{transform:matrix(0.259039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259039,0.000000,0.000000,0.250000,0,0);}
.m98_c00235{transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);}
.m8a_c00235{transform:matrix(0.259922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259922,0.000000,0.000000,0.250000,0,0);}
.m6f_c00235{transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);}
.mc1_c00235{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m55_c00235{transform:matrix(0.261089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261089,0.000000,0.000000,0.250000,0,0);}
.m72_c00235{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.m40_c00235{transform:matrix(0.262979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262979,0.000000,0.000000,0.250000,0,0);}
.m43_c00235{transform:matrix(0.263211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263211,0.000000,0.000000,0.250000,0,0);}
.m7d_c00235{transform:matrix(0.263257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263257,0.000000,0.000000,0.250000,0,0);}
.m94_c00235{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m7b_c00235{transform:matrix(0.263560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263560,0.000000,0.000000,0.250000,0,0);}
.mce_c00235{transform:matrix(0.263720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263720,0.000000,0.000000,0.250000,0,0);}
.m15_c00235{transform:matrix(0.264094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264094,0.000000,0.000000,0.250000,0,0);}
.m5c_c00235{transform:matrix(0.264697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264697,0.000000,0.000000,0.250000,0,0);}
.m64_c00235{transform:matrix(0.265372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265372,0.000000,0.000000,0.250000,0,0);}
.m52_c00235{transform:matrix(0.265655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265655,0.000000,0.000000,0.250000,0,0);}
.m3a_c00235{transform:matrix(0.265816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265816,0.000000,0.000000,0.250000,0,0);}
.m46_c00235{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.ma_c00235{transform:matrix(0.267694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267694,0.000000,0.000000,0.250000,0,0);}
.mf_c00235{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m96_c00235{transform:matrix(0.268088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268088,0.000000,0.000000,0.250000,0,0);}
.m9d_c00235{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.m8d_c00235{transform:matrix(0.268624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268624,0.000000,0.000000,0.250000,0,0);}
.m77_c00235{transform:matrix(0.269646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269646,0.000000,0.000000,0.250000,0,0);}
.m4c_c00235{transform:matrix(0.269996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269996,0.000000,0.000000,0.250000,0,0);}
.mb1_c00235{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m26_c00235{transform:matrix(0.270977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270977,0.000000,0.000000,0.250000,0,0);}
.m61_c00235{transform:matrix(0.272278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272278,0.000000,0.000000,0.250000,0,0);}
.m19_c00235{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m8b_c00235{transform:matrix(0.272607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272607,0.000000,0.000000,0.250000,0,0);}
.m5e_c00235{transform:matrix(0.273069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273069,0.000000,0.000000,0.250000,0,0);}
.m4f_c00235{transform:matrix(0.273271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273271,0.000000,0.000000,0.250000,0,0);}
.m6e_c00235{transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);}
.m51_c00235{transform:matrix(0.273807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273807,0.000000,0.000000,0.250000,0,0);}
.m35_c00235{transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);}
.md_c00235{transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);}
.mb3_c00235{transform:matrix(0.274360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274360,0.000000,0.000000,0.250000,0,0);}
.m60_c00235{transform:matrix(0.275047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275047,0.000000,0.000000,0.250000,0,0);}
.m7f_c00235{transform:matrix(0.275102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275102,0.000000,0.000000,0.250000,0,0);}
.m63_c00235{transform:matrix(0.275814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275814,0.000000,0.000000,0.250000,0,0);}
.maf_c00235{transform:matrix(0.276489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276489,0.000000,0.000000,0.250000,0,0);}
.m95_c00235{transform:matrix(0.277075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277075,0.000000,0.000000,0.250000,0,0);}
.m2d_c00235{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m1e_c00235{transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);}
.m11_c00235{transform:matrix(0.278174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278174,0.000000,0.000000,0.250000,0,0);}
.m56_c00235{transform:matrix(0.278379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278379,0.000000,0.000000,0.250000,0,0);}
.m12_c00235{transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);}
.m2_c00235{transform:matrix(0.278581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278581,0.000000,0.000000,0.250000,0,0);}
.mcb_c00235{transform:matrix(0.278811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278811,0.000000,0.000000,0.250000,0,0);}
.m5_c00235{transform:matrix(0.279088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279088,0.000000,0.000000,0.250000,0,0);}
.m54_c00235{transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);}
.ma6_c00235{transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);}
.m16_c00235{transform:matrix(0.280107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280107,0.000000,0.000000,0.250000,0,0);}
.m7e_c00235{transform:matrix(0.280159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280159,0.000000,0.000000,0.250000,0,0);}
.ma2_c00235{transform:matrix(0.281417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281417,0.000000,0.000000,0.250000,0,0);}
.mc5_c00235{transform:matrix(0.282165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282165,0.000000,0.000000,0.250000,0,0);}
.m22_c00235{transform:matrix(0.282521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282521,0.000000,0.000000,0.250000,0,0);}
.ma4_c00235{transform:matrix(0.282790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282790,0.000000,0.000000,0.250000,0,0);}
.m17_c00235{transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);}
.ma3_c00235{transform:matrix(0.283206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283206,0.000000,0.000000,0.250000,0,0);}
.m66_c00235{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.mca_c00235{transform:matrix(0.284803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284803,0.000000,0.000000,0.250000,0,0);}
.m38_c00235{transform:matrix(0.285189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285189,0.000000,0.000000,0.250000,0,0);}
.m8f_c00235{transform:matrix(0.286110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286110,0.000000,0.000000,0.250000,0,0);}
.m33_c00235{transform:matrix(0.286533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286533,0.000000,0.000000,0.250000,0,0);}
.m88_c00235{transform:matrix(0.286857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286857,0.000000,0.000000,0.250000,0,0);}
.mbd_c00235{transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);}
.m49_c00235{transform:matrix(0.287229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287229,0.000000,0.000000,0.250000,0,0);}
.m67_c00235{transform:matrix(0.287592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287592,0.000000,0.000000,0.250000,0,0);}
.m10_c00235{transform:matrix(0.287771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287771,0.000000,0.000000,0.250000,0,0);}
.m36_c00235{transform:matrix(0.287899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287899,0.000000,0.000000,0.250000,0,0);}
.m1b_c00235{transform:matrix(0.287908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287908,0.000000,0.000000,0.250000,0,0);}
.m9c_c00235{transform:matrix(0.288130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288130,0.000000,0.000000,0.250000,0,0);}
.m1f_c00235{transform:matrix(0.288153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288153,0.000000,0.000000,0.250000,0,0);}
.m65_c00235{transform:matrix(0.289888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289888,0.000000,0.000000,0.250000,0,0);}
.mb0_c00235{transform:matrix(0.290129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290129,0.000000,0.000000,0.250000,0,0);}
.m3e_c00235{transform:matrix(0.291539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291539,0.000000,0.000000,0.250000,0,0);}
.maa_c00235{transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);}
.m25_c00235{transform:matrix(0.291955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291955,0.000000,0.000000,0.250000,0,0);}
.ma5_c00235{transform:matrix(0.292177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292177,0.000000,0.000000,0.250000,0,0);}
.m6b_c00235{transform:matrix(0.292779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292779,0.000000,0.000000,0.250000,0,0);}
.m6c_c00235{transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);}
.me_c00235{transform:matrix(0.294218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294218,0.000000,0.000000,0.250000,0,0);}
.m83_c00235{transform:matrix(0.294329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294329,0.000000,0.000000,0.250000,0,0);}
.m82_c00235{transform:matrix(0.294443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294443,0.000000,0.000000,0.250000,0,0);}
.m3f_c00235{transform:matrix(0.294705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294705,0.000000,0.000000,0.250000,0,0);}
.mc9_c00235{transform:matrix(0.295398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295398,0.000000,0.000000,0.250000,0,0);}
.mba_c00235{transform:matrix(0.295835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295835,0.000000,0.000000,0.250000,0,0);}
.m1a_c00235{transform:matrix(0.296420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296420,0.000000,0.000000,0.250000,0,0);}
.mcc_c00235{transform:matrix(0.296922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296922,0.000000,0.000000,0.250000,0,0);}
.m2a_c00235{transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);}
.m4_c00235{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m4a_c00235{transform:matrix(0.297533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297533,0.000000,0.000000,0.250000,0,0);}
.m93_c00235{transform:matrix(0.298680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298680,0.000000,0.000000,0.250000,0,0);}
.m92_c00235{transform:matrix(0.299102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299102,0.000000,0.000000,0.250000,0,0);}
.mad_c00235{transform:matrix(0.300146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300146,0.000000,0.000000,0.250000,0,0);}
.m70_c00235{transform:matrix(0.300215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300215,0.000000,0.000000,0.250000,0,0);}
.m5b_c00235{transform:matrix(0.300360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300360,0.000000,0.000000,0.250000,0,0);}
.m78_c00235{transform:matrix(0.300527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300527,0.000000,0.000000,0.250000,0,0);}
.m39_c00235{transform:matrix(0.300996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300996,0.000000,0.000000,0.250000,0,0);}
.m44_c00235{transform:matrix(0.301143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301143,0.000000,0.000000,0.250000,0,0);}
.m6d_c00235{transform:matrix(0.301409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301409,0.000000,0.000000,0.250000,0,0);}
.mc3_c00235{transform:matrix(0.302915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302915,0.000000,0.000000,0.250000,0,0);}
.m2f_c00235{transform:matrix(0.303158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303158,0.000000,0.000000,0.250000,0,0);}
.m57_c00235{transform:matrix(0.303298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303298,0.000000,0.000000,0.250000,0,0);}
.ma1_c00235{transform:matrix(0.303528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303528,0.000000,0.000000,0.250000,0,0);}
.mb5_c00235{transform:matrix(0.303625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303625,0.000000,0.000000,0.250000,0,0);}
.m24_c00235{transform:matrix(0.304205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304205,0.000000,0.000000,0.250000,0,0);}
.m21_c00235{transform:matrix(0.304295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304295,0.000000,0.000000,0.250000,0,0);}
.m99_c00235{transform:matrix(0.304959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304959,0.000000,0.000000,0.250000,0,0);}
.mbf_c00235{transform:matrix(0.304968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304968,0.000000,0.000000,0.250000,0,0);}
.m75_c00235{transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);}
.m80_c00235{transform:matrix(0.307034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307034,0.000000,0.000000,0.250000,0,0);}
.m14_c00235{transform:matrix(0.307871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307871,0.000000,0.000000,0.250000,0,0);}
.mae_c00235{transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);}
.m4e_c00235{transform:matrix(0.308280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308280,0.000000,0.000000,0.250000,0,0);}
.m69_c00235{transform:matrix(0.308860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308860,0.000000,0.000000,0.250000,0,0);}
.mb_c00235{transform:matrix(0.308963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308963,0.000000,0.000000,0.250000,0,0);}
.m97_c00235{transform:matrix(0.308970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308970,0.000000,0.000000,0.250000,0,0);}
.m45_c00235{transform:matrix(0.310337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310337,0.000000,0.000000,0.250000,0,0);}
.m41_c00235{transform:matrix(0.310586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310586,0.000000,0.000000,0.250000,0,0);}
.mc8_c00235{transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);}
.m3c_c00235{transform:matrix(0.312732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312732,0.000000,0.000000,0.250000,0,0);}
.m6a_c00235{transform:matrix(0.313309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313309,0.000000,0.000000,0.250000,0,0);}
.m85_c00235{transform:matrix(0.313434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313434,0.000000,0.000000,0.250000,0,0);}
.mc4_c00235{transform:matrix(0.313755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313755,0.000000,0.000000,0.250000,0,0);}
.m4b_c00235{transform:matrix(0.313756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313756,0.000000,0.000000,0.250000,0,0);}
.m8c_c00235{transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);}
.m74_c00235{transform:matrix(0.314748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314748,0.000000,0.000000,0.250000,0,0);}
.m13_c00235{transform:matrix(0.314926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314926,0.000000,0.000000,0.250000,0,0);}
.m90_c00235{transform:matrix(0.315717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315717,0.000000,0.000000,0.250000,0,0);}
.mb8_c00235{transform:matrix(0.317169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317169,0.000000,0.000000,0.250000,0,0);}
.m76_c00235{transform:matrix(0.317481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317481,0.000000,0.000000,0.250000,0,0);}
.ma0_c00235{transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);}
.mc2_c00235{transform:matrix(0.319290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319290,0.000000,0.000000,0.250000,0,0);}
.mc6_c00235{transform:matrix(0.320540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320540,0.000000,0.000000,0.250000,0,0);}
.m1d_c00235{transform:matrix(0.323146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323146,0.000000,0.000000,0.250000,0,0);}
.m23_c00235{transform:matrix(0.324242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324242,0.000000,0.000000,0.250000,0,0);}
.mcd_c00235{transform:matrix(0.324794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324794,0.000000,0.000000,0.250000,0,0);}
.m42_c00235{transform:matrix(0.326965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326965,0.000000,0.000000,0.250000,0,0);}
.m2b_c00235{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m87_c00235{transform:matrix(0.327374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327374,0.000000,0.000000,0.250000,0,0);}
.m27_c00235{transform:matrix(0.327451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327451,0.000000,0.000000,0.250000,0,0);}
.m18_c00235{transform:matrix(0.328813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328813,0.000000,0.000000,0.250000,0,0);}
.m59_c00235{transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);}
.m3d_c00235{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m31_c00235{transform:matrix(0.334019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334019,0.000000,0.000000,0.250000,0,0);}
.m3b_c00235{transform:matrix(0.335182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335182,0.000000,0.000000,0.250000,0,0);}
.m5a_c00235{transform:matrix(0.335519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335519,0.000000,0.000000,0.250000,0,0);}
.m4d_c00235{transform:matrix(0.336348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336348,0.000000,0.000000,0.250000,0,0);}
.mc7_c00235{transform:matrix(0.337511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337511,0.000000,0.000000,0.250000,0,0);}
.m7c_c00235{transform:matrix(0.338749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338749,0.000000,0.000000,0.250000,0,0);}
.m7_c00235{transform:matrix(0.339183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339183,0.000000,0.000000,0.250000,0,0);}
.ma7_c00235{transform:matrix(0.340595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340595,0.000000,0.000000,0.250000,0,0);}
.ma9_c00235{transform:matrix(0.341026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341026,0.000000,0.000000,0.250000,0,0);}
.mb9_c00235{transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);}
.m50_c00235{transform:matrix(0.341749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341749,0.000000,0.000000,0.250000,0,0);}
.mbb_c00235{transform:matrix(0.341913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341913,0.000000,0.000000,0.250000,0,0);}
.m20_c00235{transform:matrix(0.342184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342184,0.000000,0.000000,0.250000,0,0);}
.m47_c00235{transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);}
.m3_c00235{transform:matrix(0.344852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344852,0.000000,0.000000,0.250000,0,0);}
.m32_c00235{transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);}
.mb2_c00235{transform:matrix(0.348941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348941,0.000000,0.000000,0.250000,0,0);}
.mcf_c00235{transform:matrix(0.349110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349110,0.000000,0.000000,0.250000,0,0);}
.m68_c00235{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m84_c00235{transform:matrix(0.349797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349797,0.000000,0.000000,0.250000,0,0);}
.m2e_c00235{transform:matrix(0.350956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350956,0.000000,0.000000,0.250000,0,0);}
.m89_c00235{transform:matrix(0.353574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353574,0.000000,0.000000,0.250000,0,0);}
.m8e_c00235{transform:matrix(0.354899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354899,0.000000,0.000000,0.250000,0,0);}
.mc0_c00235{transform:matrix(0.355222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355222,0.000000,0.000000,0.250000,0,0);}
.m6_c00235{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m37_c00235{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);}
.m1_c00235{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m5f_c00235{transform:matrix(0.361860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361860,0.000000,0.000000,0.250000,0,0);}
.m9e_c00235{transform:matrix(0.365181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365181,0.000000,0.000000,0.250000,0,0);}
.m53_c00235{transform:matrix(0.367117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367117,0.000000,0.000000,0.250000,0,0);}
.mb4_c00235{transform:matrix(0.372071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372071,0.000000,0.000000,0.250000,0,0);}
.m29_c00235{transform:matrix(0.378961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378961,0.000000,0.000000,0.250000,0,0);}
.mb6_c00235{transform:matrix(0.380688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380688,0.000000,0.000000,0.250000,0,0);}
.m7a_c00235{transform:matrix(0.416528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416528,0.000000,0.000000,0.250000,0,0);}
.mac_c00235{transform:matrix(0.417547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417547,0.000000,0.000000,0.250000,0,0);}
.m34_c00235{transform:matrix(0.421610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421610,0.000000,0.000000,0.250000,0,0);}
.mab_c00235{transform:matrix(0.424628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424628,0.000000,0.000000,0.250000,0,0);}
.v0_c00235{vertical-align:0.000000px;}
.lsc_c00235{letter-spacing:-2.744280px;}
.ls10_c00235{letter-spacing:-2.493374px;}
.ls12_c00235{letter-spacing:-2.344399px;}
.ls14_c00235{letter-spacing:-2.297354px;}
.lse_c00235{letter-spacing:-1.325095px;}
.lsd_c00235{letter-spacing:-1.168279px;}
.ls8_c00235{letter-spacing:-0.180338px;}
.ls4_c00235{letter-spacing:-0.159509px;}
.ls5_c00235{letter-spacing:0.000000px;}
.ls1_c00235{letter-spacing:1.364299px;}
.ls6_c00235{letter-spacing:1.654409px;}
.ls13_c00235{letter-spacing:1.685772px;}
.ls7_c00235{letter-spacing:1.803384px;}
.ls16_c00235{letter-spacing:2.563942px;}
.lsb_c00235{letter-spacing:3.112798px;}
.ls11_c00235{letter-spacing:3.177900px;}
.ls9_c00235{letter-spacing:3.191206px;}
.lsf_c00235{letter-spacing:3.544200px;}
.ls15_c00235{letter-spacing:3.653813px;}
.ls3_c00235{letter-spacing:3.669494px;}
.ls2_c00235{letter-spacing:3.920400px;}
.ls0_c00235{letter-spacing:18.134358px;}
.lsa_c00235{letter-spacing:55.598598px;}
.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;}
}
.ws2_c00235{word-spacing:-22.793206px;}
.ws1_c00235{word-spacing:-19.602000px;}
.ws3_c00235{word-spacing:-18.276905px;}
.ws6_c00235{word-spacing:-7.102973px;}
.ws7_c00235{word-spacing:0.000000px;}
.ws4_c00235{word-spacing:1.254528px;}
.ws0_c00235{word-spacing:3.606768px;}
.ws5_c00235{word-spacing:4.846010px;}
._15_c00235{margin-left:-16.073644px;}
._3_c00235{margin-left:-12.074832px;}
._b_c00235{margin-left:-10.224007px;}
._1a_c00235{margin-left:-4.077216px;}
._4_c00235{width:1.489752px;}
._14_c00235{width:4.077612px;}
._19_c00235{width:5.096520px;}
._2_c00235{width:6.272640px;}
._f_c00235{width:7.761600px;}
._0_c00235{width:9.173736px;}
._10_c00235{width:10.270656px;}
._a_c00235{width:11.525976px;}
._8_c00235{width:12.859308px;}
._12_c00235{width:14.191848px;}
._6_c00235{width:22.267872px;}
._e_c00235{width:23.679216px;}
._13_c00235{width:25.466522px;}
._5_c00235{width:27.285984px;}
._d_c00235{width:28.932552px;}
._7_c00235{width:30.338352px;}
._c_c00235{width:31.833648px;}
._1_c00235{width:33.950664px;}
._11_c00235{width:36.538128px;}
._9_c00235{width:40.162716px;}
._18_c00235{width:41.635836px;}
._16_c00235{width:42.810768px;}
._17_c00235{width:44.136576px;}
.fc0_c00235{color:transparent;}
.fs6_c00235{font-size:27.720000px;}
.fs7_c00235{font-size:45.144000px;}
.fs2_c00235{font-size:55.598598px;}
.fs4_c00235{font-size:63.558000px;}
.fs5_c00235{font-size:66.330000px;}
.fs3_c00235{font-size:70.884000px;}
.fs1_c00235{font-size:78.408000px;}
.fs0_c00235{font-size:83.952198px;}
.y0_c00235{bottom:0.000000px;}
.y1_c00235{bottom:76.500000px;}
.y1c_c00235{bottom:134.274735px;}
.y1b_c00235{bottom:148.887135px;}
.y1a_c00235{bottom:181.314585px;}
.y19_c00235{bottom:194.149935px;}
.y18_c00235{bottom:215.177535px;}
.y17_c00235{bottom:247.966335px;}
.y16_c00235{bottom:280.037385px;}
.y15_c00235{bottom:311.761935px;}
.y14_c00235{bottom:344.194335px;}
.y13_c00235{bottom:376.621785px;}
.y12_c00235{bottom:440.778735px;}
.y11_c00235{bottom:472.854735px;}
.y10_c00235{bottom:504.925785px;}
.yf_c00235{bottom:537.006735px;}
.ye_c00235{bottom:569.077785px;}
.yd_c00235{bottom:602.227935px;}
.yc_c00235{bottom:665.305785px;}
.yb_c00235{bottom:697.025385px;}
.ya_c00235{bottom:729.106335px;}
.y9_c00235{bottom:729.113265px;}
.y8_c00235{bottom:761.182335px;}
.y7_c00235{bottom:793.253385px;}
.y6_c00235{bottom:826.398585px;}
.y5_c00235{bottom:858.830985px;}
.y4_c00235{bottom:891.619785px;}
.y3_c00235{bottom:925.126335px;}
.y2_c00235{bottom:1074.096585px;}
.h8_c00235{height:28.911094px;}
.h4_c00235{height:37.028666px;}
.h9_c00235{height:47.083781px;}
.h6_c00235{height:66.289008px;}
.h7_c00235{height:69.180117px;}
.h5_c00235{height:69.568770px;}
.h3_c00235{height:76.953164px;}
.h2_c00235{height:82.394491px;}
.h1_c00235{height:1110.000000px;}
.h0_c00235{height:1263.000000px;}
.w1_c00235{width:751.500000px;}
.w0_c00235{width:892.500000px;}
.x0_c00235{left:0.000000px;}
.x3_c00235{left:61.687335px;}
.x43_c00235{left:62.766435px;}
.x1_c00235{left:70.500000px;}
.x5c_c00235{left:73.785135px;}
.x60_c00235{left:83.546535px;}
.x4_c00235{left:93.966285px;}
.x36_c00235{left:95.084985px;}
.x3d_c00235{left:105.088935px;}
.x44_c00235{left:106.281885px;}
.x25_c00235{left:107.855985px;}
.x3e_c00235{left:115.226535px;}
.x1e_c00235{left:116.850135px;}
.x1f_c00235{left:128.185635px;}
.x4d_c00235{left:138.516285px;}
.x63_c00235{left:140.105235px;}
.x45_c00235{left:149.762685px;}
.x20_c00235{left:161.142735px;}
.x5_c00235{left:171.874335px;}
.x33_c00235{left:182.006985px;}
.x21_c00235{left:183.244485px;}
.x57_c00235{left:193.060335px;}
.x4e_c00235{left:194.208735px;}
.x3f_c00235{left:204.648285px;}
.x17_c00235{left:205.658085px;}
.x22_c00235{left:216.582735px;}
.x58_c00235{left:225.839235px;}
.x6_c00235{left:227.230185px;}
.x23_c00235{left:238.461735px;}
.xf_c00235{left:249.851685px;}
.x64_c00235{left:261.291135px;}
.x7_c00235{left:271.582185px;}
.x37_c00235{left:281.789085px;}
.x26_c00235{left:283.382985px;}
.x10_c00235{left:293.758185px;}
.x8_c00235{left:305.024385px;}
.x68_c00235{left:309.885285px;}
.x27_c00235{left:315.716385px;}
.x66_c00235{left:316.825185px;}
.x38_c00235{left:326.537085px;}
.x9_c00235{left:337.753785px;}
.x18_c00235{left:348.277485px;}
.x24_c00235{left:351.381135px;}
.x46_c00235{left:357.746835px;}
.x4f_c00235{left:360.731685px;}
.x5d_c00235{left:369.463485px;}
.x11_c00235{left:370.765335px;}
.x40_c00235{left:371.789985px;}
.x19_c00235{left:379.843635px;}
.x41_c00235{left:381.952335px;}
.x2d_c00235{left:391.604835px;}
.x53_c00235{left:393.074985px;}
.x67_c00235{left:395.663835px;}
.x28_c00235{left:402.965085px;}
.x34_c00235{left:404.865885px;}
.x47_c00235{left:415.250985px;}
.x54_c00235{left:424.720335px;}
.x1a_c00235{left:425.804385px;}
.x50_c00235{left:428.363535px;}
.xa_c00235{left:436.461735px;}
.x5e_c00235{left:447.366585px;}
.x12_c00235{left:448.381335px;}
.x48_c00235{left:450.163335px;}
.x39_c00235{left:459.117885px;}
.x29_c00235{left:469.453485px;}
.x51_c00235{left:470.512785px;}
.x3a_c00235{left:481.175085px;}
.x1b_c00235{left:491.193885px;}
.x52_c00235{left:492.540285px;}
.x2a_c00235{left:501.376035px;}
.x2e_c00235{left:503.232285px;}
.x2f_c00235{left:513.419385px;}
.x61_c00235{left:514.646985px;}
.x55_c00235{left:523.091685px;}
.xb_c00235{left:525.012285px;}
.x13_c00235{left:535.743885px;}
.x69_c00235{left:538.491135px;}
.x30_c00235{left:547.148685px;}
.xc_c00235{left:558.563385px;}
.x49_c00235{left:559.771185px;}
.x62_c00235{left:567.310035px;}
.xd_c00235{left:568.458435px;}
.x31_c00235{left:569.492985px;}
.x2b_c00235{left:579.719685px;}
.x56_c00235{left:589.362285px;}
.x65_c00235{left:590.644335px;}
.x3b_c00235{left:591.678885px;}
.x14_c00235{left:600.776985px;}
.x32_c00235{left:602.370885px;}
.x1c_c00235{left:611.820435px;}
.x4a_c00235{left:613.072785px;}
.xe_c00235{left:622.873785px;}
.x3c_c00235{left:624.408285px;}
.x59_c00235{left:633.560835px;}
.x1d_c00235{left:635.496285px;}
.x5b_c00235{left:643.936035px;}
.x2_c00235{left:646.183335px;}
.x15_c00235{left:656.919885px;}
.x5f_c00235{left:667.621785px;}
.x5a_c00235{left:668.661285px;}
.x4b_c00235{left:676.982235px;}
.x35_c00235{left:678.397935px;}
.x6a_c00235{left:688.486035px;}
.x2c_c00235{left:689.842335px;}
.x42_c00235{left:700.044285px;}
.x16_c00235{left:701.791635px;}
.x4c_c00235{left:710.706585px;}
@media print{
.v0_c00235{vertical-align:0.000000pt;}
.lsc_c00235{letter-spacing:-2.439360pt;}
.ls10_c00235{letter-spacing:-2.216333pt;}
.ls12_c00235{letter-spacing:-2.083910pt;}
.ls14_c00235{letter-spacing:-2.042093pt;}
.lse_c00235{letter-spacing:-1.177862pt;}
.lsd_c00235{letter-spacing:-1.038470pt;}
.ls8_c00235{letter-spacing:-0.160301pt;}
.ls4_c00235{letter-spacing:-0.141786pt;}
.ls5_c00235{letter-spacing:0.000000pt;}
.ls1_c00235{letter-spacing:1.212710pt;}
.ls6_c00235{letter-spacing:1.470586pt;}
.ls13_c00235{letter-spacing:1.498464pt;}
.ls7_c00235{letter-spacing:1.603008pt;}
.ls16_c00235{letter-spacing:2.279059pt;}
.lsb_c00235{letter-spacing:2.766931pt;}
.ls11_c00235{letter-spacing:2.824800pt;}
.ls9_c00235{letter-spacing:2.836627pt;}
.lsf_c00235{letter-spacing:3.150400pt;}
.ls15_c00235{letter-spacing:3.247834pt;}
.ls3_c00235{letter-spacing:3.261773pt;}
.ls2_c00235{letter-spacing:3.484800pt;}
.ls0_c00235{letter-spacing:16.119429pt;}
.lsa_c00235{letter-spacing:49.420976pt;}
.ws2_c00235{word-spacing:-20.260627pt;}
.ws1_c00235{word-spacing:-17.424000pt;}
.ws3_c00235{word-spacing:-16.246138pt;}
.ws6_c00235{word-spacing:-6.313754pt;}
.ws7_c00235{word-spacing:0.000000pt;}
.ws4_c00235{word-spacing:1.115136pt;}
.ws0_c00235{word-spacing:3.206016pt;}
.ws5_c00235{word-spacing:4.307565pt;}
._15_c00235{margin-left:-14.287683pt;}
._3_c00235{margin-left:-10.733184pt;}
._b_c00235{margin-left:-9.088006pt;}
._1a_c00235{margin-left:-3.624192pt;}
._4_c00235{width:1.324224pt;}
._14_c00235{width:3.624544pt;}
._19_c00235{width:4.530240pt;}
._2_c00235{width:5.575680pt;}
._f_c00235{width:6.899200pt;}
._0_c00235{width:8.154432pt;}
._10_c00235{width:9.129472pt;}
._a_c00235{width:10.245312pt;}
._8_c00235{width:11.430496pt;}
._12_c00235{width:12.614976pt;}
._6_c00235{width:19.793664pt;}
._e_c00235{width:21.048192pt;}
._13_c00235{width:22.636909pt;}
._5_c00235{width:24.254208pt;}
._d_c00235{width:25.717824pt;}
._7_c00235{width:26.967424pt;}
._c_c00235{width:28.296576pt;}
._1_c00235{width:30.178368pt;}
._11_c00235{width:32.478336pt;}
._9_c00235{width:35.700192pt;}
._18_c00235{width:37.009632pt;}
._16_c00235{width:38.054016pt;}
._17_c00235{width:39.232512pt;}
.fs6_c00235{font-size:24.640000pt;}
.fs7_c00235{font-size:40.128000pt;}
.fs2_c00235{font-size:49.420976pt;}
.fs4_c00235{font-size:56.496000pt;}
.fs5_c00235{font-size:58.960000pt;}
.fs3_c00235{font-size:63.008000pt;}
.fs1_c00235{font-size:69.696000pt;}
.fs0_c00235{font-size:74.624176pt;}
.y0_c00235{bottom:0.000000pt;}
.y1_c00235{bottom:68.000000pt;}
.y1c_c00235{bottom:119.355320pt;}
.y1b_c00235{bottom:132.344120pt;}
.y1a_c00235{bottom:161.168520pt;}
.y19_c00235{bottom:172.577720pt;}
.y18_c00235{bottom:191.268920pt;}
.y17_c00235{bottom:220.414520pt;}
.y16_c00235{bottom:248.922120pt;}
.y15_c00235{bottom:277.121720pt;}
.y14_c00235{bottom:305.950520pt;}
.y13_c00235{bottom:334.774920pt;}
.y12_c00235{bottom:391.803320pt;}
.y11_c00235{bottom:420.315320pt;}
.y10_c00235{bottom:448.822920pt;}
.yf_c00235{bottom:477.339320pt;}
.ye_c00235{bottom:505.846920pt;}
.yd_c00235{bottom:535.313720pt;}
.yc_c00235{bottom:591.382920pt;}
.yb_c00235{bottom:619.578120pt;}
.ya_c00235{bottom:648.094520pt;}
.y9_c00235{bottom:648.100680pt;}
.y8_c00235{bottom:676.606520pt;}
.y7_c00235{bottom:705.114120pt;}
.y6_c00235{bottom:734.576520pt;}
.y5_c00235{bottom:763.405320pt;}
.y4_c00235{bottom:792.550920pt;}
.y3_c00235{bottom:822.334520pt;}
.y2_c00235{bottom:954.752520pt;}
.h8_c00235{height:25.698750pt;}
.h4_c00235{height:32.914370pt;}
.h9_c00235{height:41.852250pt;}
.h6_c00235{height:58.923563pt;}
.h7_c00235{height:61.493438pt;}
.h5_c00235{height:61.838906pt;}
.h3_c00235{height:68.402813pt;}
.h2_c00235{height:73.239548pt;}
.h1_c00235{height:986.666667pt;}
.h0_c00235{height:1122.666667pt;}
.w1_c00235{width:668.000000pt;}
.w0_c00235{width:793.333333pt;}
.x0_c00235{left:0.000000pt;}
.x3_c00235{left:54.833187pt;}
.x43_c00235{left:55.792387pt;}
.x1_c00235{left:62.666667pt;}
.x5c_c00235{left:65.586787pt;}
.x60_c00235{left:74.263587pt;}
.x4_c00235{left:83.525587pt;}
.x36_c00235{left:84.519987pt;}
.x3d_c00235{left:93.412387pt;}
.x44_c00235{left:94.472787pt;}
.x25_c00235{left:95.871987pt;}
.x3e_c00235{left:102.423587pt;}
.x1e_c00235{left:103.866787pt;}
.x1f_c00235{left:113.942787pt;}
.x4d_c00235{left:123.125587pt;}
.x63_c00235{left:124.537987pt;}
.x45_c00235{left:133.122387pt;}
.x20_c00235{left:143.237987pt;}
.x5_c00235{left:152.777187pt;}
.x33_c00235{left:161.783987pt;}
.x21_c00235{left:162.883987pt;}
.x57_c00235{left:171.609187pt;}
.x4e_c00235{left:172.629987pt;}
.x3f_c00235{left:181.909587pt;}
.x17_c00235{left:182.807187pt;}
.x22_c00235{left:192.517987pt;}
.x58_c00235{left:200.745987pt;}
.x6_c00235{left:201.982387pt;}
.x23_c00235{left:211.965987pt;}
.xf_c00235{left:222.090387pt;}
.x64_c00235{left:232.258787pt;}
.x7_c00235{left:241.406387pt;}
.x37_c00235{left:250.479187pt;}
.x26_c00235{left:251.895987pt;}
.x10_c00235{left:261.118387pt;}
.x8_c00235{left:271.132787pt;}
.x68_c00235{left:275.453587pt;}
.x27_c00235{left:280.636787pt;}
.x66_c00235{left:281.622387pt;}
.x38_c00235{left:290.255187pt;}
.x9_c00235{left:300.225587pt;}
.x18_c00235{left:309.579987pt;}
.x24_c00235{left:312.338787pt;}
.x46_c00235{left:317.997187pt;}
.x4f_c00235{left:320.650387pt;}
.x5d_c00235{left:328.411987pt;}
.x11_c00235{left:329.569187pt;}
.x40_c00235{left:330.479987pt;}
.x19_c00235{left:337.638787pt;}
.x41_c00235{left:339.513187pt;}
.x2d_c00235{left:348.093187pt;}
.x53_c00235{left:349.399987pt;}
.x67_c00235{left:351.701187pt;}
.x28_c00235{left:358.191187pt;}
.x34_c00235{left:359.880787pt;}
.x47_c00235{left:369.111987pt;}
.x54_c00235{left:377.529187pt;}
.x1a_c00235{left:378.492787pt;}
.x50_c00235{left:380.767587pt;}
.xa_c00235{left:387.965987pt;}
.x5e_c00235{left:397.659187pt;}
.x12_c00235{left:398.561187pt;}
.x48_c00235{left:400.145187pt;}
.x39_c00235{left:408.104787pt;}
.x29_c00235{left:417.291987pt;}
.x51_c00235{left:418.233587pt;}
.x3a_c00235{left:427.711187pt;}
.x1b_c00235{left:436.616787pt;}
.x52_c00235{left:437.813587pt;}
.x2a_c00235{left:445.667587pt;}
.x2e_c00235{left:447.317587pt;}
.x2f_c00235{left:456.372787pt;}
.x61_c00235{left:457.463987pt;}
.x55_c00235{left:464.970387pt;}
.xb_c00235{left:466.677587pt;}
.x13_c00235{left:476.216787pt;}
.x69_c00235{left:478.658787pt;}
.x30_c00235{left:486.354387pt;}
.xc_c00235{left:496.500787pt;}
.x49_c00235{left:497.574387pt;}
.x62_c00235{left:504.275587pt;}
.xd_c00235{left:505.296387pt;}
.x31_c00235{left:506.215987pt;}
.x2b_c00235{left:515.306387pt;}
.x56_c00235{left:523.877587pt;}
.x65_c00235{left:525.017187pt;}
.x3b_c00235{left:525.936787pt;}
.x14_c00235{left:534.023987pt;}
.x32_c00235{left:535.440787pt;}
.x1c_c00235{left:543.840387pt;}
.x4a_c00235{left:544.953587pt;}
.xe_c00235{left:553.665587pt;}
.x3c_c00235{left:555.029587pt;}
.x59_c00235{left:563.165187pt;}
.x1d_c00235{left:564.885587pt;}
.x5b_c00235{left:572.387587pt;}
.x2_c00235{left:574.385187pt;}
.x15_c00235{left:583.928787pt;}
.x5f_c00235{left:593.441587pt;}
.x5a_c00235{left:594.365587pt;}
.x4b_c00235{left:601.761987pt;}
.x35_c00235{left:603.020387pt;}
.x6a_c00235{left:611.987587pt;}
.x2c_c00235{left:613.193187pt;}
.x42_c00235{left:622.261587pt;}
.x16_c00235{left:623.814787pt;}
.x4c_c00235{left:631.739187pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_af8633ce65358b3b69ce0914.woff2')format("woff");}.ff1_c00236{font-family:ff1_c00236;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00236;src:url('chunks/assets/font_634439ab7e9c516ded9c4616.woff2')format("woff");}.ff2_c00236{font-family:ff2_c00236;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00236;src:url('chunks/assets/font_7698e4614fb361b92edb0742.woff2')format("woff");}.ff3_c00236{font-family:ff3_c00236;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00236;src:url('chunks/assets/font_648ff079620bede6446cac8f.woff2')format("woff");}.ff4_c00236{font-family:ff4_c00236;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m55_c00236{transform:matrix(0.042373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042373,0.000000,0.000000,0.250000,0,0);}
.m5b_c00236{transform:matrix(0.057501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.057501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.057501,0.000000,0.000000,0.250000,0,0);}
.m59_c00236{transform:matrix(0.087143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087143,0.000000,0.000000,0.250000,0,0);}
.m54_c00236{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m57_c00236{transform:matrix(0.105932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105932,0.000000,0.000000,0.250000,0,0);}
.m6c_c00236{transform:matrix(0.111111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111111,0.000000,0.000000,0.250000,0,0);}
.m6d_c00236{transform:matrix(0.115740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115740,0.000000,0.000000,0.250000,0,0);}
.m61_c00236{transform:matrix(0.121794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121794,0.000000,0.000000,0.250000,0,0);}
.m5a_c00236{transform:matrix(0.124001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124001,0.000000,0.000000,0.250000,0,0);}
.m6a_c00236{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);}
.m6b_c00236{transform:matrix(0.134260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134260,0.000000,0.000000,0.250000,0,0);}
.m69_c00236{transform:matrix(0.138889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138889,0.000000,0.000000,0.250000,0,0);}
.m6e_c00236{transform:matrix(0.141976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141976,0.000000,0.000000,0.250000,0,0);}
.m58_c00236{transform:matrix(0.142501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142501,0.000000,0.000000,0.250000,0,0);}
.m5c_c00236{transform:matrix(0.142592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142592,0.000000,0.000000,0.250000,0,0);}
.m3c_c00236{transform:matrix(0.144736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144736,0.000000,0.000000,0.250000,0,0);}
.m96_c00236{transform:matrix(0.153363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153363,0.000000,0.000000,0.250000,0,0);}
.m56_c00236{transform:matrix(0.153955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153955,0.000000,0.000000,0.250000,0,0);}
.m3b_c00236{transform:matrix(0.157895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157895,0.000000,0.000000,0.250000,0,0);}
.m83_c00236{transform:matrix(0.162709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162709,0.000000,0.000000,0.250000,0,0);}
.m32_c00236{transform:matrix(0.169118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169118,0.000000,0.000000,0.250000,0,0);}
.m38_c00236{transform:matrix(0.171053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171053,0.000000,0.000000,0.250000,0,0);}
.m33_c00236{transform:matrix(0.176307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176307,0.000000,0.000000,0.250000,0,0);}
.m62_c00236{transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00236{transform:matrix(0.177632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177632,0.000000,0.000000,0.250000,0,0);}
.m31_c00236{transform:matrix(0.180147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180147,0.000000,0.000000,0.250000,0,0);}
.m19_c00236{transform:matrix(0.180508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180508,0.000000,0.000000,0.250000,0,0);}
.m82_c00236{transform:matrix(0.184484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184484,0.000000,0.000000,0.250000,0,0);}
.m3a_c00236{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m88_c00236{transform:matrix(0.191317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191317,0.000000,0.000000,0.250000,0,0);}
.m39_c00236{transform:matrix(0.194079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194079,0.000000,0.000000,0.250000,0,0);}
.m3e_c00236{transform:matrix(0.197368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197368,0.000000,0.000000,0.250000,0,0);}
.m2b_c00236{transform:matrix(0.198530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198530,0.000000,0.000000,0.250000,0,0);}
.m60_c00236{transform:matrix(0.199325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199325,0.000000,0.000000,0.250000,0,0);}
.m5f_c00236{transform:matrix(0.209460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209460,0.000000,0.000000,0.250000,0,0);}
.m2c_c00236{transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);}
.m64_c00236{transform:matrix(0.219434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219434,0.000000,0.000000,0.250000,0,0);}
.m71_c00236{transform:matrix(0.220499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220499,0.000000,0.000000,0.250000,0,0);}
.m63_c00236{transform:matrix(0.223038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223038,0.000000,0.000000,0.250000,0,0);}
.m2d_c00236{transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);}
.m68_c00236{transform:matrix(0.226852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226852,0.000000,0.000000,0.250000,0,0);}
.m45_c00236{transform:matrix(0.228445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228445,0.000000,0.000000,0.250000,0,0);}
.m30_c00236{transform:matrix(0.230391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230391,0.000000,0.000000,0.250000,0,0);}
.m8c_c00236{transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);}
.m42_c00236{transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);}
.m53_c00236{transform:matrix(0.240181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240181,0.000000,0.000000,0.250000,0,0);}
.m66_c00236{transform:matrix(0.242795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242795,0.000000,0.000000,0.250000,0,0);}
.m70_c00236{transform:matrix(0.242862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242862,0.000000,0.000000,0.250000,0,0);}
.m1_c00236{transform:matrix(0.244940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244940,0.000000,0.000000,0.250000,0,0);}
.m16_c00236{transform:matrix(0.247983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247983,0.000000,0.000000,0.250000,0,0);}
.m0_c00236{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00236{transform:matrix(0.250043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250043,0.000000,0.000000,0.250000,0,0);}
.m94_c00236{transform:matrix(0.251878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251878,0.000000,0.000000,0.250000,0,0);}
.m26_c00236{transform:matrix(0.252202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252202,0.000000,0.000000,0.250000,0,0);}
.m52_c00236{transform:matrix(0.253943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253943,0.000000,0.000000,0.250000,0,0);}
.m76_c00236{transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);}
.m7e_c00236{transform:matrix(0.256463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256463,0.000000,0.000000,0.250000,0,0);}
.m10_c00236{transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);}
.m13_c00236{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m67_c00236{transform:matrix(0.261049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261049,0.000000,0.000000,0.250000,0,0);}
.m20_c00236{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.m81_c00236{transform:matrix(0.263211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263211,0.000000,0.000000,0.250000,0,0);}
.m47_c00236{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m1d_c00236{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m6f_c00236{transform:matrix(0.264412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264412,0.000000,0.000000,0.250000,0,0);}
.m93_c00236{transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);}
.md_c00236{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m5_c00236{transform:matrix(0.266509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266509,0.000000,0.000000,0.250000,0,0);}
.m11_c00236{transform:matrix(0.268484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268484,0.000000,0.000000,0.250000,0,0);}
.m75_c00236{transform:matrix(0.271852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271852,0.000000,0.000000,0.250000,0,0);}
.m9d_c00236{transform:matrix(0.272879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272879,0.000000,0.000000,0.250000,0,0);}
.m15_c00236{transform:matrix(0.273113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273113,0.000000,0.000000,0.250000,0,0);}
.m40_c00236{transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);}
.m73_c00236{transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);}
.m50_c00236{transform:matrix(0.274552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274552,0.000000,0.000000,0.250000,0,0);}
.m9_c00236{transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);}
.m1f_c00236{transform:matrix(0.275201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275201,0.000000,0.000000,0.250000,0,0);}
.m5e_c00236{transform:matrix(0.275944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275944,0.000000,0.000000,0.250000,0,0);}
.m95_c00236{transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);}
.m41_c00236{transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);}
.m2e_c00236{transform:matrix(0.279482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279482,0.000000,0.000000,0.250000,0,0);}
.m74_c00236{transform:matrix(0.280116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280116,0.000000,0.000000,0.250000,0,0);}
.m1e_c00236{transform:matrix(0.280174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280174,0.000000,0.000000,0.250000,0,0);}
.m98_c00236{transform:matrix(0.280177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280177,0.000000,0.000000,0.250000,0,0);}
.m84_c00236{transform:matrix(0.280362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280362,0.000000,0.000000,0.250000,0,0);}
.m3f_c00236{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.m7c_c00236{transform:matrix(0.281783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281783,0.000000,0.000000,0.250000,0,0);}
.m8_c00236{transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);}
.m9b_c00236{transform:matrix(0.283211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283211,0.000000,0.000000,0.250000,0,0);}
.m6_c00236{transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);}
.m86_c00236{transform:matrix(0.285539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285539,0.000000,0.000000,0.250000,0,0);}
.mf_c00236{transform:matrix(0.285890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285890,0.000000,0.000000,0.250000,0,0);}
.m21_c00236{transform:matrix(0.286427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286427,0.000000,0.000000,0.250000,0,0);}
.mb_c00236{transform:matrix(0.287569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287569,0.000000,0.000000,0.250000,0,0);}
.m79_c00236{transform:matrix(0.288855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288855,0.000000,0.000000,0.250000,0,0);}
.m92_c00236{transform:matrix(0.289601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289601,0.000000,0.000000,0.250000,0,0);}
.m23_c00236{transform:matrix(0.290081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290081,0.000000,0.000000,0.250000,0,0);}
.m87_c00236{transform:matrix(0.290224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290224,0.000000,0.000000,0.250000,0,0);}
.m46_c00236{transform:matrix(0.292527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292527,0.000000,0.000000,0.250000,0,0);}
.m1a_c00236{transform:matrix(0.293719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293719,0.000000,0.000000,0.250000,0,0);}
.m29_c00236{transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);}
.m89_c00236{transform:matrix(0.294890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294890,0.000000,0.000000,0.250000,0,0);}
.m4e_c00236{transform:matrix(0.295421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295421,0.000000,0.000000,0.250000,0,0);}
.ma_c00236{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m1b_c00236{transform:matrix(0.297295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297295,0.000000,0.000000,0.250000,0,0);}
.m9e_c00236{transform:matrix(0.297683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297683,0.000000,0.000000,0.250000,0,0);}
.m2a_c00236{transform:matrix(0.298208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298208,0.000000,0.000000,0.250000,0,0);}
.m28_c00236{transform:matrix(0.299689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299689,0.000000,0.000000,0.250000,0,0);}
.m8f_c00236{transform:matrix(0.300650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300650,0.000000,0.000000,0.250000,0,0);}
.m25_c00236{transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);}
.m4_c00236{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m2_c00236{transform:matrix(0.303158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303158,0.000000,0.000000,0.250000,0,0);}
.m49_c00236{transform:matrix(0.304946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304946,0.000000,0.000000,0.250000,0,0);}
.m97_c00236{transform:matrix(0.305448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305448,0.000000,0.000000,0.250000,0,0);}
.m24_c00236{transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);}
.m4d_c00236{transform:matrix(0.305914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305914,0.000000,0.000000,0.250000,0,0);}
.m77_c00236{transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);}
.m43_c00236{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.mc_c00236{transform:matrix(0.310470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310470,0.000000,0.000000,0.250000,0,0);}
.m7f_c00236{transform:matrix(0.310694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310694,0.000000,0.000000,0.250000,0,0);}
.m9c_c00236{transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);}
.m37_c00236{transform:matrix(0.312531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312531,0.000000,0.000000,0.250000,0,0);}
.m4a_c00236{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.m72_c00236{transform:matrix(0.313434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313434,0.000000,0.000000,0.250000,0,0);}
.m3_c00236{transform:matrix(0.314182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314182,0.000000,0.000000,0.250000,0,0);}
.m48_c00236{transform:matrix(0.314528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314528,0.000000,0.000000,0.250000,0,0);}
.m9f_c00236{transform:matrix(0.315717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315717,0.000000,0.000000,0.250000,0,0);}
.m22_c00236{transform:matrix(0.319290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319290,0.000000,0.000000,0.250000,0,0);}
.m8d_c00236{transform:matrix(0.320598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320598,0.000000,0.000000,0.250000,0,0);}
.m27_c00236{transform:matrix(0.320919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320919,0.000000,0.000000,0.250000,0,0);}
.ma0_c00236{transform:matrix(0.321773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321773,0.000000,0.000000,0.250000,0,0);}
.m17_c00236{transform:matrix(0.321816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321816,0.000000,0.000000,0.250000,0,0);}
.m4c_c00236{transform:matrix(0.323962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323962,0.000000,0.000000,0.250000,0,0);}
.m44_c00236{transform:matrix(0.324566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324566,0.000000,0.000000,0.250000,0,0);}
.m8a_c00236{transform:matrix(0.325136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325136,0.000000,0.000000,0.250000,0,0);}
.m8e_c00236{transform:matrix(0.325482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325482,0.000000,0.000000,0.250000,0,0);}
.m99_c00236{transform:matrix(0.326698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326698,0.000000,0.000000,0.250000,0,0);}
.m4b_c00236{transform:matrix(0.330460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330460,0.000000,0.000000,0.250000,0,0);}
.m7a_c00236{transform:matrix(0.331333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331333,0.000000,0.000000,0.250000,0,0);}
.m7b_c00236{transform:matrix(0.331443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331443,0.000000,0.000000,0.250000,0,0);}
.m4f_c00236{transform:matrix(0.331768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331768,0.000000,0.000000,0.250000,0,0);}
.m9a_c00236{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m80_c00236{transform:matrix(0.336429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336429,0.000000,0.000000,0.250000,0,0);}
.m7d_c00236{transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);}
.m85_c00236{transform:matrix(0.339287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339287,0.000000,0.000000,0.250000,0,0);}
.m14_c00236{transform:matrix(0.339945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339945,0.000000,0.000000,0.250000,0,0);}
.m12_c00236{transform:matrix(0.342345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342345,0.000000,0.000000,0.250000,0,0);}
.m34_c00236{transform:matrix(0.342883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342883,0.000000,0.000000,0.250000,0,0);}
.m8b_c00236{transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);}
.m78_c00236{transform:matrix(0.343679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343679,0.000000,0.000000,0.250000,0,0);}
.me_c00236{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m35_c00236{transform:matrix(0.351540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351540,0.000000,0.000000,0.250000,0,0);}
.m18_c00236{transform:matrix(0.354899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354899,0.000000,0.000000,0.250000,0,0);}
.m91_c00236{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m90_c00236{transform:matrix(0.361261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361261,0.000000,0.000000,0.250000,0,0);}
.m7_c00236{transform:matrix(0.365181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365181,0.000000,0.000000,0.250000,0,0);}
.m2f_c00236{transform:matrix(0.372071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372071,0.000000,0.000000,0.250000,0,0);}
.m65_c00236{transform:matrix(0.402698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402698,0.000000,0.000000,0.250000,0,0);}
.m1c_c00236{transform:matrix(0.407787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407787,0.000000,0.000000,0.250000,0,0);}
.m36_c00236{transform:matrix(0.414699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414699,0.000000,0.000000,0.250000,0,0);}
.m51_c00236{transform:matrix(0.440068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440068,0.000000,0.000000,0.250000,0,0);}
.v1_c00236{vertical-align:-32.788800px;}
.v0_c00236{vertical-align:0.000000px;}
.v2_c00236{vertical-align:1.438668px;}
.ls19_c00236{letter-spacing:-4.989600px;}
.ls7_c00236{letter-spacing:-2.744280px;}
.ls1a_c00236{letter-spacing:-2.439367px;}
.ls12_c00236{letter-spacing:-2.397780px;}
.ls1b_c00236{letter-spacing:-2.113650px;}
.ls15_c00236{letter-spacing:-2.079000px;}
.ls16_c00236{letter-spacing:-1.719551px;}
.ls1f_c00236{letter-spacing:-1.693613px;}
.lsb_c00236{letter-spacing:-0.611582px;}
.ls6_c00236{letter-spacing:0.000000px;}
.ls9_c00236{letter-spacing:0.258746px;}
.ls4_c00236{letter-spacing:1.019304px;}
.lsd_c00236{letter-spacing:1.144757px;}
.ls3_c00236{letter-spacing:1.301652px;}
.lsc_c00236{letter-spacing:1.685772px;}
.ls2_c00236{letter-spacing:2.034688px;}
.ls1_c00236{letter-spacing:2.823480px;}
.ls5_c00236{letter-spacing:3.026477px;}
.lsa_c00236{letter-spacing:3.112798px;}
.lse_c00236{letter-spacing:3.277454px;}
.ls11_c00236{letter-spacing:3.425400px;}
.ls1d_c00236{letter-spacing:3.484810px;}
.ls8_c00236{letter-spacing:3.920400px;}
.ls1c_c00236{letter-spacing:3.960000px;}
.ls0_c00236{letter-spacing:17.539566px;}
.lsf_c00236{letter-spacing:48.470598px;}
.ls17_c00236{letter-spacing:52.747398px;}
.ls10_c00236{letter-spacing:54.172998px;}
.ls18_c00236{letter-spacing:55.598598px;}
.ls14_c00236{letter-spacing:71.280000px;}
.ls1e_c00236{letter-spacing:76.982598px;}
.ls13_c00236{letter-spacing:84.110598px;}
.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;}
}
.ws2_c00236{word-spacing:-20.746757px;}
.ws5_c00236{word-spacing:-20.621304px;}
.ws0_c00236{word-spacing:-19.602000px;}
.ws4_c00236{word-spacing:-19.161688px;}
.ws1_c00236{word-spacing:-18.990418px;}
.ws7_c00236{word-spacing:-17.908387px;}
.ws3_c00236{word-spacing:-15.407449px;}
.ws8_c00236{word-spacing:0.000000px;}
.ws6_c00236{word-spacing:0.313236px;}
._d_c00236{margin-left:-1.897078px;}
._10_c00236{width:1.960200px;}
._14_c00236{width:3.449952px;}
._0_c00236{width:4.939704px;}
._2_c00236{width:6.194232px;}
._8_c00236{width:8.076024px;}
._e_c00236{width:9.095328px;}
._4_c00236{width:10.506672px;}
._a_c00236{width:12.623688px;}
._11_c00236{width:15.681600px;}
._f_c00236{width:18.191448px;}
._3_c00236{width:20.856528px;}
._19_c00236{width:22.267872px;}
._c_c00236{width:23.337072px;}
._b_c00236{width:26.749800px;}
._16_c00236{width:28.888200px;}
._7_c00236{width:30.294000px;}
._1a_c00236{width:31.362804px;}
._1_c00236{width:32.382504px;}
._6_c00236{width:33.637032px;}
._15_c00236{width:35.037288px;}
._5_c00236{width:38.655144px;}
._17_c00236{width:40.380120px;}
._18_c00236{width:42.120936px;}
._9_c00236{width:46.371600px;}
._13_c00236{width:67.434880px;}
._12_c00236{width:655.959744px;}
.fc0_c00236{color:transparent;}
.fs19_c00236{font-size:22.374000px;}
.fs1_c00236{font-size:33.660000px;}
.fs3_c00236{font-size:48.470598px;}
.fsd_c00236{font-size:52.747398px;}
.fs8_c00236{font-size:53.658000px;}
.fs4_c00236{font-size:54.172998px;}
.fse_c00236{font-size:55.598598px;}
.fsb_c00236{font-size:59.400000px;}
.fs13_c00236{font-size:60.390000px;}
.fs16_c00236{font-size:65.340000px;}
.fs6_c00236{font-size:67.320000px;}
.fs5_c00236{font-size:68.508000px;}
.fs12_c00236{font-size:69.696198px;}
.fsf_c00236{font-size:70.884000px;}
.fsa_c00236{font-size:71.280000px;}
.fs9_c00236{font-size:71.676198px;}
.fs17_c00236{font-size:72.864000px;}
.fsc_c00236{font-size:76.428000px;}
.fs15_c00236{font-size:76.982598px;}
.fs2_c00236{font-size:78.408000px;}
.fs18_c00236{font-size:78.804000px;}
.fs14_c00236{font-size:79.200000px;}
.fs0_c00236{font-size:81.576198px;}
.fs10_c00236{font-size:81.972198px;}
.fs7_c00236{font-size:84.110598px;}
.fs11_c00236{font-size:142.560000px;}
.y0_c00236{bottom:0.000000px;}
.y1_c00236{bottom:76.500000px;}
.y20_c00236{bottom:121.800735px;}
.y1f_c00236{bottom:149.951385px;}
.y1e_c00236{bottom:180.250335px;}
.y1d_c00236{bottom:212.682735px;}
.y1b_c00236{bottom:244.753389px;}
.y1c_c00236{bottom:244.753785px;}
.y1a_c00236{bottom:277.547535px;}
.y18_c00236{bottom:331.007535px;}
.y16_c00236{bottom:341.694585px;}
.y17_c00236{bottom:342.055935px;}
.y15_c00236{bottom:406.564335px;}
.y14_c00236{bottom:421.533135px;}
.y13_c00236{bottom:440.065935px;}
.y19_c00236{bottom:471.067785px;}
.y12_c00236{bottom:505.287135px;}
.y11_c00236{bottom:524.884185px;}
.y10_c00236{bottom:537.006735px;}
.yf_c00236{bottom:570.503385px;}
.ye_c00236{bottom:590.105385px;}
.yd_c00236{bottom:600.802335px;}
.yc_c00236{bottom:664.597935px;}
.yb_c00236{bottom:696.317535px;}
.y9_c00236{bottom:729.095940px;}
.ya_c00236{bottom:729.101385px;}
.y8_c00236{bottom:793.253385px;}
.y7_c00236{bottom:824.977935px;}
.y6_c00236{bottom:858.474585px;}
.y5_c00236{bottom:892.337535px;}
.y4_c00236{bottom:924.769935px;}
.y3_c00236{bottom:1009.236735px;}
.y2_c00236{bottom:1073.383785px;}
.h1b_c00236{height:21.958857px;}
.h5_c00236{height:32.281418px;}
.h3_c00236{height:33.035449px;}
.hf_c00236{height:35.129767px;}
.h6_c00236{height:36.079217px;}
.h10_c00236{height:37.028666px;}
.hc_c00236{height:47.472480px;}
.h17_c00236{height:51.270410px;}
.ha_c00236{height:55.963617px;}
.h9_c00236{height:56.017658px;}
.h14_c00236{height:60.861797px;}
.hd_c00236{height:61.952344px;}
.h7_c00236{height:67.236855px;}
.h18_c00236{height:68.147578px;}
.h13_c00236{height:68.403007px;}
.h16_c00236{height:68.682255px;}
.h19_c00236{height:69.043219px;}
.h8_c00236{height:70.212656px;}
.hb_c00236{height:70.346269px;}
.h11_c00236{height:73.929797px;}
.h4_c00236{height:76.953164px;}
.h1a_c00236{height:77.341816px;}
.he_c00236{height:79.712016px;}
.h15_c00236{height:79.818750px;}
.h2_c00236{height:80.062577px;}
.h12_c00236{height:139.914844px;}
.h1_c00236{height:1110.000000px;}
.h0_c00236{height:1263.000000px;}
.w1_c00236{width:751.500000px;}
.w0_c00236{width:892.500000px;}
.x0_c00236{left:0.000000px;}
.x5f_c00236{left:59.044035px;}
.x14_c00236{left:60.444885px;}
.x1_c00236{left:70.500000px;}
.x40_c00236{left:71.607135px;}
.x60_c00236{left:81.818985px;}
.x41_c00236{left:91.516035px;}
.x21_c00236{left:92.897085px;}
.x66_c00236{left:101.767485px;}
.x15_c00236{left:105.192885px;}
.x4_c00236{left:114.236535px;}
.x22_c00236{left:126.195735px;}
.x16_c00236{left:137.610435px;}
.x5_c00236{left:148.475685px;}
.x48_c00236{left:157.806435px;}
.x2a_c00236{left:159.395385px;}
.x57_c00236{left:169.176585px;}
.x6_c00236{left:170.448735px;}
.x2b_c00236{left:180.932835px;}
.x3d_c00236{left:192.451485px;}
.x52_c00236{left:197.733135px;}
.x53_c00236{left:198.797385px;}
.x2c_c00236{left:203.222685px;}
.x4f_c00236{left:212.424735px;}
.x2d_c00236{left:214.602735px;}
.x54_c00236{left:215.686785px;}
.x7_c00236{left:225.101685px;}
.x23_c00236{left:236.536185px;}
.x55_c00236{left:239.659635px;}
.x4b_c00236{left:246.871785px;}
.x56_c00236{left:252.024735px;}
.x8_c00236{left:258.682485px;}
.x4c_c00236{left:263.667135px;}
.x5b_c00236{left:268.968585px;}
.x37_c00236{left:270.077385px;}
.x42_c00236{left:280.432785px;}
.x50_c00236{left:281.843535px;}
.x9_c00236{left:291.966285px;}
.x38_c00236{left:301.440585px;}
.x2e_c00236{left:302.534535px;}
.x17_c00236{left:312.127635px;}
.x2f_c00236{left:313.676985px;}
.x43_c00236{left:324.403635px;}
.x49_c00236{left:325.804485px;}
.x30_c00236{left:335.818335px;}
.x51_c00236{left:338.659635px;}
.x31_c00236{left:345.629235px;}
.x4d_c00236{left:347.777535px;}
.x4e_c00236{left:351.341535px;}
.x18_c00236{left:357.543885px;}
.x4a_c00236{left:358.603185px;}
.xa_c00236{left:368.963535px;}
.xb_c00236{left:378.418035px;}
.x32_c00236{left:379.462485px;}
.x5e_c00236{left:389.783235px;}
.x19_c00236{left:391.050435px;}
.x39_c00236{left:401.890935px;}
.x63_c00236{left:404.484735px;}
.xc_c00236{left:413.176935px;}
.x58_c00236{left:422.972985px;}
.x3a_c00236{left:424.190685px;}
.x3_c00236{left:433.531335px;}
.x1a_c00236{left:434.704485px;}
.x44_c00236{left:435.897435px;}
.x33_c00236{left:445.747935px;}
.x3b_c00236{left:455.410335px;}
.x34_c00236{left:457.682385px;}
.x1b_c00236{left:467.448735px;}
.x35_c00236{left:477.140835px;}
.xd_c00236{left:479.229735px;}
.x5c_c00236{left:482.739285px;}
.x3c_c00236{left:489.976185px;}
.xe_c00236{left:500.791935px;}
.x61_c00236{left:501.875985px;}
.x24_c00236{left:511.513635px;}
.x1c_c00236{left:512.914485px;}
.x3e_c00236{left:522.730335px;}
.xf_c00236{left:534.333135px;}
.x10_c00236{left:543.787635px;}
.x36_c00236{left:545.332035px;}
.x25_c00236{left:555.524085px;}
.x5d_c00236{left:557.632785px;}
.x1d_c00236{left:567.087285px;}
.x11_c00236{left:577.620885px;}
.x62_c00236{left:578.858385px;}
.x26_c00236{left:588.481185px;}
.x1e_c00236{left:599.935485px;}
.x45_c00236{left:600.945285px;}
.x1f_c00236{left:609.553335px;}
.x12_c00236{left:610.815585px;}
.x59_c00236{left:612.755985px;}
.x46_c00236{left:621.769935px;}
.x2_c00236{left:644.406285px;}
.x3f_c00236{left:653.558835px;}
.x27_c00236{left:654.761685px;}
.x5a_c00236{left:655.944735px;}
.x47_c00236{left:665.349735px;}
.x64_c00236{left:666.493185px;}
.x28_c00236{left:677.927685px;}
.x20_c00236{left:688.589985px;}
.x29_c00236{left:698.678085px;}
.x13_c00236{left:709.993785px;}
.x65_c00236{left:720.329385px;}
@media print{
.v1_c00236{vertical-align:-29.145600pt;}
.v0_c00236{vertical-align:0.000000pt;}
.v2_c00236{vertical-align:1.278816pt;}
.ls19_c00236{letter-spacing:-4.435200pt;}
.ls7_c00236{letter-spacing:-2.439360pt;}
.ls1a_c00236{letter-spacing:-2.168326pt;}
.ls12_c00236{letter-spacing:-2.131360pt;}
.ls1b_c00236{letter-spacing:-1.878800pt;}
.ls15_c00236{letter-spacing:-1.848000pt;}
.ls16_c00236{letter-spacing:-1.528490pt;}
.ls1f_c00236{letter-spacing:-1.505434pt;}
.lsb_c00236{letter-spacing:-0.543629pt;}
.ls6_c00236{letter-spacing:0.000000pt;}
.ls9_c00236{letter-spacing:0.229997pt;}
.ls4_c00236{letter-spacing:0.906048pt;}
.lsd_c00236{letter-spacing:1.017562pt;}
.ls3_c00236{letter-spacing:1.157024pt;}
.lsc_c00236{letter-spacing:1.498464pt;}
.ls2_c00236{letter-spacing:1.808611pt;}
.ls1_c00236{letter-spacing:2.509760pt;}
.ls5_c00236{letter-spacing:2.690202pt;}
.lsa_c00236{letter-spacing:2.766931pt;}
.lse_c00236{letter-spacing:2.913293pt;}
.ls11_c00236{letter-spacing:3.044800pt;}
.ls1d_c00236{letter-spacing:3.097609pt;}
.ls8_c00236{letter-spacing:3.484800pt;}
.ls1c_c00236{letter-spacing:3.520000pt;}
.ls0_c00236{letter-spacing:15.590725pt;}
.lsf_c00236{letter-spacing:43.084976pt;}
.ls17_c00236{letter-spacing:46.886576pt;}
.ls10_c00236{letter-spacing:48.153776pt;}
.ls18_c00236{letter-spacing:49.420976pt;}
.ls14_c00236{letter-spacing:63.360000pt;}
.ls1e_c00236{letter-spacing:68.428976pt;}
.ls13_c00236{letter-spacing:74.764976pt;}
.ws2_c00236{word-spacing:-18.441562pt;}
.ws5_c00236{word-spacing:-18.330048pt;}
.ws0_c00236{word-spacing:-17.424000pt;}
.ws4_c00236{word-spacing:-17.032611pt;}
.ws1_c00236{word-spacing:-16.880371pt;}
.ws7_c00236{word-spacing:-15.918566pt;}
.ws3_c00236{word-spacing:-13.695510pt;}
.ws8_c00236{word-spacing:0.000000pt;}
.ws6_c00236{word-spacing:0.278432pt;}
._d_c00236{margin-left:-1.686291pt;}
._10_c00236{width:1.742400pt;}
._14_c00236{width:3.066624pt;}
._0_c00236{width:4.390848pt;}
._2_c00236{width:5.505984pt;}
._8_c00236{width:7.178688pt;}
._e_c00236{width:8.084736pt;}
._4_c00236{width:9.339264pt;}
._a_c00236{width:11.221056pt;}
._11_c00236{width:13.939200pt;}
._f_c00236{width:16.170176pt;}
._3_c00236{width:18.539136pt;}
._19_c00236{width:19.793664pt;}
._c_c00236{width:20.744064pt;}
._b_c00236{width:23.777600pt;}
._16_c00236{width:25.678400pt;}
._7_c00236{width:26.928000pt;}
._1a_c00236{width:27.878048pt;}
._1_c00236{width:28.784448pt;}
._6_c00236{width:29.899584pt;}
._15_c00236{width:31.144256pt;}
._5_c00236{width:34.360128pt;}
._17_c00236{width:35.893440pt;}
._18_c00236{width:37.440832pt;}
._9_c00236{width:41.219200pt;}
._13_c00236{width:59.942115pt;}
._12_c00236{width:583.075328pt;}
.fs19_c00236{font-size:19.888000pt;}
.fs1_c00236{font-size:29.920000pt;}
.fs3_c00236{font-size:43.084976pt;}
.fsd_c00236{font-size:46.886576pt;}
.fs8_c00236{font-size:47.696000pt;}
.fs4_c00236{font-size:48.153776pt;}
.fse_c00236{font-size:49.420976pt;}
.fsb_c00236{font-size:52.800000pt;}
.fs13_c00236{font-size:53.680000pt;}
.fs16_c00236{font-size:58.080000pt;}
.fs6_c00236{font-size:59.840000pt;}
.fs5_c00236{font-size:60.896000pt;}
.fs12_c00236{font-size:61.952176pt;}
.fsf_c00236{font-size:63.008000pt;}
.fsa_c00236{font-size:63.360000pt;}
.fs9_c00236{font-size:63.712176pt;}
.fs17_c00236{font-size:64.768000pt;}
.fsc_c00236{font-size:67.936000pt;}
.fs15_c00236{font-size:68.428976pt;}
.fs2_c00236{font-size:69.696000pt;}
.fs18_c00236{font-size:70.048000pt;}
.fs14_c00236{font-size:70.400000pt;}
.fs0_c00236{font-size:72.512176pt;}
.fs10_c00236{font-size:72.864176pt;}
.fs7_c00236{font-size:74.764976pt;}
.fs11_c00236{font-size:126.720000pt;}
.y0_c00236{bottom:0.000000pt;}
.y1_c00236{bottom:68.000000pt;}
.y20_c00236{bottom:108.267320pt;}
.y1f_c00236{bottom:133.290120pt;}
.y1e_c00236{bottom:160.222520pt;}
.y1d_c00236{bottom:189.051320pt;}
.y1b_c00236{bottom:217.558568pt;}
.y1c_c00236{bottom:217.558920pt;}
.y1a_c00236{bottom:246.708920pt;}
.y18_c00236{bottom:294.228920pt;}
.y16_c00236{bottom:303.728520pt;}
.y17_c00236{bottom:304.049720pt;}
.y15_c00236{bottom:361.390520pt;}
.y14_c00236{bottom:374.696120pt;}
.y13_c00236{bottom:391.169720pt;}
.y19_c00236{bottom:418.726920pt;}
.y12_c00236{bottom:449.144120pt;}
.y11_c00236{bottom:466.563720pt;}
.y10_c00236{bottom:477.339320pt;}
.yf_c00236{bottom:507.114120pt;}
.ye_c00236{bottom:524.538120pt;}
.yd_c00236{bottom:534.046520pt;}
.yc_c00236{bottom:590.753720pt;}
.yb_c00236{bottom:618.948920pt;}
.y9_c00236{bottom:648.085280pt;}
.ya_c00236{bottom:648.090120pt;}
.y8_c00236{bottom:705.114120pt;}
.y7_c00236{bottom:733.313720pt;}
.y6_c00236{bottom:763.088520pt;}
.y5_c00236{bottom:793.188920pt;}
.y4_c00236{bottom:822.017720pt;}
.y3_c00236{bottom:897.099320pt;}
.y2_c00236{bottom:954.118920pt;}
.h1b_c00236{height:19.518984pt;}
.h5_c00236{height:28.694594pt;}
.h3_c00236{height:29.364844pt;}
.hf_c00236{height:31.226460pt;}
.h6_c00236{height:32.070415pt;}
.h10_c00236{height:32.914370pt;}
.hc_c00236{height:42.197760pt;}
.h17_c00236{height:45.573698pt;}
.ha_c00236{height:49.745438pt;}
.h9_c00236{height:49.793474pt;}
.h14_c00236{height:54.099375pt;}
.hd_c00236{height:55.068750pt;}
.h7_c00236{height:59.766094pt;}
.h18_c00236{height:60.575625pt;}
.h13_c00236{height:60.802673pt;}
.h16_c00236{height:61.050894pt;}
.h19_c00236{height:61.371750pt;}
.h8_c00236{height:62.411250pt;}
.hb_c00236{height:62.530016pt;}
.h11_c00236{height:65.715375pt;}
.h4_c00236{height:68.402813pt;}
.h1a_c00236{height:68.748281pt;}
.he_c00236{height:70.855125pt;}
.h15_c00236{height:70.950000pt;}
.h2_c00236{height:71.166735pt;}
.h12_c00236{height:124.368750pt;}
.h1_c00236{height:986.666667pt;}
.h0_c00236{height:1122.666667pt;}
.w1_c00236{width:668.000000pt;}
.w0_c00236{width:793.333333pt;}
.x0_c00236{left:0.000000pt;}
.x5f_c00236{left:52.483587pt;}
.x14_c00236{left:53.728787pt;}
.x1_c00236{left:62.666667pt;}
.x40_c00236{left:63.650787pt;}
.x60_c00236{left:72.727987pt;}
.x41_c00236{left:81.347587pt;}
.x21_c00236{left:82.575187pt;}
.x66_c00236{left:90.459987pt;}
.x15_c00236{left:93.504787pt;}
.x4_c00236{left:101.543587pt;}
.x22_c00236{left:112.173987pt;}
.x16_c00236{left:122.320387pt;}
.x5_c00236{left:131.978387pt;}
.x48_c00236{left:140.272387pt;}
.x2a_c00236{left:141.684787pt;}
.x57_c00236{left:150.379187pt;}
.x6_c00236{left:151.509987pt;}
.x2b_c00236{left:160.829187pt;}
.x3d_c00236{left:171.067987pt;}
.x52_c00236{left:175.762787pt;}
.x53_c00236{left:176.708787pt;}
.x2c_c00236{left:180.642387pt;}
.x4f_c00236{left:188.821987pt;}
.x2d_c00236{left:190.757987pt;}
.x54_c00236{left:191.721587pt;}
.x7_c00236{left:200.090387pt;}
.x23_c00236{left:210.254387pt;}
.x55_c00236{left:213.030787pt;}
.x4b_c00236{left:219.441587pt;}
.x56_c00236{left:224.021987pt;}
.x8_c00236{left:229.939987pt;}
.x4c_c00236{left:234.370787pt;}
.x5b_c00236{left:239.083187pt;}
.x37_c00236{left:240.068787pt;}
.x42_c00236{left:249.273587pt;}
.x50_c00236{left:250.527587pt;}
.x9_c00236{left:259.525587pt;}
.x38_c00236{left:267.947187pt;}
.x2e_c00236{left:268.919587pt;}
.x17_c00236{left:277.446787pt;}
.x2f_c00236{left:278.823987pt;}
.x43_c00236{left:288.358787pt;}
.x49_c00236{left:289.603987pt;}
.x30_c00236{left:298.505187pt;}
.x51_c00236{left:301.030787pt;}
.x31_c00236{left:307.225987pt;}
.x4d_c00236{left:309.135587pt;}
.x4e_c00236{left:312.303587pt;}
.x18_c00236{left:317.816787pt;}
.x4a_c00236{left:318.758387pt;}
.xa_c00236{left:327.967587pt;}
.xb_c00236{left:336.371587pt;}
.x32_c00236{left:337.299987pt;}
.x5e_c00236{left:346.473987pt;}
.x19_c00236{left:347.600387pt;}
.x39_c00236{left:357.236387pt;}
.x63_c00236{left:359.541987pt;}
.xc_c00236{left:367.268387pt;}
.x58_c00236{left:375.975987pt;}
.x3a_c00236{left:377.058387pt;}
.x3_c00236{left:385.361187pt;}
.x1a_c00236{left:386.403987pt;}
.x44_c00236{left:387.464387pt;}
.x33_c00236{left:396.220387pt;}
.x3b_c00236{left:404.809187pt;}
.x34_c00236{left:406.828787pt;}
.x1b_c00236{left:415.509987pt;}
.x35_c00236{left:424.125187pt;}
.xd_c00236{left:425.981987pt;}
.x5c_c00236{left:429.101587pt;}
.x3c_c00236{left:435.534387pt;}
.xe_c00236{left:445.148387pt;}
.x61_c00236{left:446.111987pt;}
.x24_c00236{left:454.678787pt;}
.x1c_c00236{left:455.923987pt;}
.x3e_c00236{left:464.649187pt;}
.xf_c00236{left:474.962787pt;}
.x10_c00236{left:483.366787pt;}
.x36_c00236{left:484.739587pt;}
.x25_c00236{left:493.799187pt;}
.x5d_c00236{left:495.673587pt;}
.x1d_c00236{left:504.077587pt;}
.x11_c00236{left:513.440787pt;}
.x62_c00236{left:514.540787pt;}
.x26_c00236{left:523.094387pt;}
.x1e_c00236{left:533.275987pt;}
.x45_c00236{left:534.173587pt;}
.x1f_c00236{left:541.825187pt;}
.x12_c00236{left:542.947187pt;}
.x59_c00236{left:544.671987pt;}
.x46_c00236{left:552.684387pt;}
.x2_c00236{left:572.805587pt;}
.x3f_c00236{left:580.941187pt;}
.x27_c00236{left:582.010387pt;}
.x5a_c00236{left:583.061987pt;}
.x47_c00236{left:591.421987pt;}
.x64_c00236{left:592.438387pt;}
.x28_c00236{left:602.602387pt;}
.x20_c00236{left:612.079987pt;}
.x29_c00236{left:621.047187pt;}
.x13_c00236{left:631.105587pt;}
.x65_c00236{left:640.292787pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c5a59b612ede02fc7f2f4c81.woff2')format("woff");}.ff1_c00237{font-family:ff1_c00237;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00237;src:url('chunks/assets/font_c29c6565ce7294640adf2a3e.woff2')format("woff");}.ff2_c00237{font-family:ff2_c00237;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00237;src:url('chunks/assets/font_c2ea94fb1f292a2ee0c2875e.woff2')format("woff");}.ff3_c00237{font-family:ff3_c00237;line-height:0.666000;font-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_c00237{transform:matrix(0.069445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.069445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.069445,0.000000,0.000000,0.250000,0,0);}
.m48_c00237{transform:matrix(0.090001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090001,0.000000,0.000000,0.250000,0,0);}
.m45_c00237{transform:matrix(0.121195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121195,0.000000,0.000000,0.250000,0,0);}
.m6b_c00237{transform:matrix(0.139424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139424,0.000000,0.000000,0.250000,0,0);}
.mc_c00237{transform:matrix(0.145834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145834,0.000000,0.000000,0.250000,0,0);}
.me_c00237{transform:matrix(0.152777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152777,0.000000,0.000000,0.250000,0,0);}
.md_c00237{transform:matrix(0.159723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159723,0.000000,0.000000,0.250000,0,0);}
.m5f_c00237{transform:matrix(0.164369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164369,0.000000,0.000000,0.250000,0,0);}
.m82_c00237{transform:matrix(0.171004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171004,0.000000,0.000000,0.250000,0,0);}
.m7a_c00237{transform:matrix(0.176307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176307,0.000000,0.000000,0.250000,0,0);}
.m18_c00237{transform:matrix(0.182677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182677,0.000000,0.000000,0.250000,0,0);}
.m63_c00237{transform:matrix(0.190417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190417,0.000000,0.000000,0.250000,0,0);}
.mb_c00237{transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);}
.ma5_c00237{transform:matrix(0.227723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227723,0.000000,0.000000,0.250000,0,0);}
.m78_c00237{transform:matrix(0.238903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238903,0.000000,0.000000,0.250000,0,0);}
.m9a_c00237{transform:matrix(0.242534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242534,0.000000,0.000000,0.250000,0,0);}
.m86_c00237{transform:matrix(0.248979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248979,0.000000,0.000000,0.250000,0,0);}
.m0_c00237{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m9_c00237{transform:matrix(0.252205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252205,0.000000,0.000000,0.250000,0,0);}
.m44_c00237{transform:matrix(0.254582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254582,0.000000,0.000000,0.250000,0,0);}
.m23_c00237{transform:matrix(0.254830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254830,0.000000,0.000000,0.250000,0,0);}
.m2b_c00237{transform:matrix(0.255030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255030,0.000000,0.000000,0.250000,0,0);}
.m1_c00237{transform:matrix(0.255713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255713,0.000000,0.000000,0.250000,0,0);}
.m3c_c00237{transform:matrix(0.256057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256057,0.000000,0.000000,0.250000,0,0);}
.m22_c00237{transform:matrix(0.256843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256843,0.000000,0.000000,0.250000,0,0);}
.m8e_c00237{transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);}
.ma4_c00237{transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);}
.ma_c00237{transform:matrix(0.258464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258464,0.000000,0.000000,0.250000,0,0);}
.m92_c00237{transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);}
.m1a_c00237{transform:matrix(0.259810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259810,0.000000,0.000000,0.250000,0,0);}
.mc3_c00237{transform:matrix(0.260404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260404,0.000000,0.000000,0.250000,0,0);}
.m65_c00237{transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);}
.m75_c00237{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m16_c00237{transform:matrix(0.261378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261378,0.000000,0.000000,0.250000,0,0);}
.m49_c00237{transform:matrix(0.261470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261470,0.000000,0.000000,0.250000,0,0);}
.m52_c00237{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.m54_c00237{transform:matrix(0.261904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261904,0.000000,0.000000,0.250000,0,0);}
.m3a_c00237{transform:matrix(0.263083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263083,0.000000,0.000000,0.250000,0,0);}
.m6d_c00237{transform:matrix(0.263115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263115,0.000000,0.000000,0.250000,0,0);}
.m4_c00237{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m41_c00237{transform:matrix(0.263454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263454,0.000000,0.000000,0.250000,0,0);}
.m5e_c00237{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m3d_c00237{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m6f_c00237{transform:matrix(0.267061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267061,0.000000,0.000000,0.250000,0,0);}
.m19_c00237{transform:matrix(0.267123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267123,0.000000,0.000000,0.250000,0,0);}
.m1e_c00237{transform:matrix(0.267205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267205,0.000000,0.000000,0.250000,0,0);}
.m90_c00237{transform:matrix(0.267678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267678,0.000000,0.000000,0.250000,0,0);}
.m88_c00237{transform:matrix(0.267775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267775,0.000000,0.000000,0.250000,0,0);}
.m27_c00237{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m5b_c00237{transform:matrix(0.268100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268100,0.000000,0.000000,0.250000,0,0);}
.ma9_c00237{transform:matrix(0.268484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268484,0.000000,0.000000,0.250000,0,0);}
.m9d_c00237{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.m8a_c00237{transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);}
.m69_c00237{transform:matrix(0.270652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270652,0.000000,0.000000,0.250000,0,0);}
.m42_c00237{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m47_c00237{transform:matrix(0.271169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271169,0.000000,0.000000,0.250000,0,0);}
.ma1_c00237{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m84_c00237{transform:matrix(0.272544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272544,0.000000,0.000000,0.250000,0,0);}
.m43_c00237{transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);}
.m20_c00237{transform:matrix(0.273113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273113,0.000000,0.000000,0.250000,0,0);}
.m12_c00237{transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);}
.mb7_c00237{transform:matrix(0.274035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274035,0.000000,0.000000,0.250000,0,0);}
.m91_c00237{transform:matrix(0.274708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274708,0.000000,0.000000,0.250000,0,0);}
.ma8_c00237{transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);}
.m4a_c00237{transform:matrix(0.275491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275491,0.000000,0.000000,0.250000,0,0);}
.mc7_c00237{transform:matrix(0.275891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275891,0.000000,0.000000,0.250000,0,0);}
.m7b_c00237{transform:matrix(0.276200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276200,0.000000,0.000000,0.250000,0,0);}
.m3f_c00237{transform:matrix(0.276520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276520,0.000000,0.000000,0.250000,0,0);}
.m73_c00237{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m6e_c00237{transform:matrix(0.277360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277360,0.000000,0.000000,0.250000,0,0);}
.m4e_c00237{transform:matrix(0.277907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277907,0.000000,0.000000,0.250000,0,0);}
.m8b_c00237{transform:matrix(0.278073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278073,0.000000,0.000000,0.250000,0,0);}
.m24_c00237{transform:matrix(0.278174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278174,0.000000,0.000000,0.250000,0,0);}
.mb4_c00237{transform:matrix(0.278426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278426,0.000000,0.000000,0.250000,0,0);}
.m66_c00237{transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);}
.mc4_c00237{transform:matrix(0.281253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281253,0.000000,0.000000,0.250000,0,0);}
.m70_c00237{transform:matrix(0.281467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281467,0.000000,0.000000,0.250000,0,0);}
.m67_c00237{transform:matrix(0.281843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281843,0.000000,0.000000,0.250000,0,0);}
.mab_c00237{transform:matrix(0.282913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282913,0.000000,0.000000,0.250000,0,0);}
.m87_c00237{transform:matrix(0.283223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283223,0.000000,0.000000,0.250000,0,0);}
.m11_c00237{transform:matrix(0.284153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284153,0.000000,0.000000,0.250000,0,0);}
.m9b_c00237{transform:matrix(0.285021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285021,0.000000,0.000000,0.250000,0,0);}
.m32_c00237{transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);}
.m2f_c00237{transform:matrix(0.285700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285700,0.000000,0.000000,0.250000,0,0);}
.mb1_c00237{transform:matrix(0.285922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285922,0.000000,0.000000,0.250000,0,0);}
.m17_c00237{transform:matrix(0.286242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286242,0.000000,0.000000,0.250000,0,0);}
.m36_c00237{transform:matrix(0.286383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286383,0.000000,0.000000,0.250000,0,0);}
.mb2_c00237{transform:matrix(0.286804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286804,0.000000,0.000000,0.250000,0,0);}
.mb8_c00237{transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);}
.m58_c00237{transform:matrix(0.287657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287657,0.000000,0.000000,0.250000,0,0);}
.m9f_c00237{transform:matrix(0.287807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287807,0.000000,0.000000,0.250000,0,0);}
.m5d_c00237{transform:matrix(0.287876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287876,0.000000,0.000000,0.250000,0,0);}
.m26_c00237{transform:matrix(0.288153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288153,0.000000,0.000000,0.250000,0,0);}
.m25_c00237{transform:matrix(0.288227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288227,0.000000,0.000000,0.250000,0,0);}
.m10_c00237{transform:matrix(0.288601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288601,0.000000,0.000000,0.250000,0,0);}
.m6_c00237{transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);}
.mb3_c00237{transform:matrix(0.289843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289843,0.000000,0.000000,0.250000,0,0);}
.m57_c00237{transform:matrix(0.289931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289931,0.000000,0.000000,0.250000,0,0);}
.m33_c00237{transform:matrix(0.290170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290170,0.000000,0.000000,0.250000,0,0);}
.m4b_c00237{transform:matrix(0.290222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290222,0.000000,0.000000,0.250000,0,0);}
.m2_c00237{transform:matrix(0.290343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290343,0.000000,0.000000,0.250000,0,0);}
.m28_c00237{transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);}
.m2e_c00237{transform:matrix(0.291518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291518,0.000000,0.000000,0.250000,0,0);}
.m59_c00237{transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);}
.m60_c00237{transform:matrix(0.292548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292548,0.000000,0.000000,0.250000,0,0);}
.m89_c00237{transform:matrix(0.294443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294443,0.000000,0.000000,0.250000,0,0);}
.mbd_c00237{transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);}
.m3_c00237{transform:matrix(0.295128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295128,0.000000,0.000000,0.250000,0,0);}
.m93_c00237{transform:matrix(0.295244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295244,0.000000,0.000000,0.250000,0,0);}
.m7d_c00237{transform:matrix(0.295991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295991,0.000000,0.000000,0.250000,0,0);}
.m46_c00237{transform:matrix(0.296168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296168,0.000000,0.000000,0.250000,0,0);}
.m98_c00237{transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);}
.m94_c00237{transform:matrix(0.296872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296872,0.000000,0.000000,0.250000,0,0);}
.mac_c00237{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m2d_c00237{transform:matrix(0.297218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297218,0.000000,0.000000,0.250000,0,0);}
.m76_c00237{transform:matrix(0.298895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298895,0.000000,0.000000,0.250000,0,0);}
.m8_c00237{transform:matrix(0.299445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299445,0.000000,0.000000,0.250000,0,0);}
.m77_c00237{transform:matrix(0.300535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300535,0.000000,0.000000,0.250000,0,0);}
.m1d_c00237{transform:matrix(0.300674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300674,0.000000,0.000000,0.250000,0,0);}
.m6c_c00237{transform:matrix(0.300944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300944,0.000000,0.000000,0.250000,0,0);}
.m85_c00237{transform:matrix(0.301074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301074,0.000000,0.000000,0.250000,0,0);}
.m56_c00237{transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);}
.m8c_c00237{transform:matrix(0.302713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302713,0.000000,0.000000,0.250000,0,0);}
.m2a_c00237{transform:matrix(0.303309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303309,0.000000,0.000000,0.250000,0,0);}
.m72_c00237{transform:matrix(0.304173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304173,0.000000,0.000000,0.250000,0,0);}
.mc6_c00237{transform:matrix(0.304857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304857,0.000000,0.000000,0.250000,0,0);}
.m40_c00237{transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);}
.m15_c00237{transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);}
.m8d_c00237{transform:matrix(0.306147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306147,0.000000,0.000000,0.250000,0,0);}
.m31_c00237{transform:matrix(0.306784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306784,0.000000,0.000000,0.250000,0,0);}
.m39_c00237{transform:matrix(0.306843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306843,0.000000,0.000000,0.250000,0,0);}
.m7f_c00237{transform:matrix(0.307034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307034,0.000000,0.000000,0.250000,0,0);}
.maa_c00237{transform:matrix(0.307223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307223,0.000000,0.000000,0.250000,0,0);}
.ma7_c00237{transform:matrix(0.307242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307242,0.000000,0.000000,0.250000,0,0);}
.m38_c00237{transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);}
.ma0_c00237{transform:matrix(0.308742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308742,0.000000,0.000000,0.250000,0,0);}
.m35_c00237{transform:matrix(0.308759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308759,0.000000,0.000000,0.250000,0,0);}
.m13_c00237{transform:matrix(0.308860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308860,0.000000,0.000000,0.250000,0,0);}
.m9e_c00237{transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);}
.m7e_c00237{transform:matrix(0.309855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309855,0.000000,0.000000,0.250000,0,0);}
.mba_c00237{transform:matrix(0.310431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310431,0.000000,0.000000,0.250000,0,0);}
.m4d_c00237{transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);}
.m50_c00237{transform:matrix(0.312862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312862,0.000000,0.000000,0.250000,0,0);}
.mc5_c00237{transform:matrix(0.313434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313434,0.000000,0.000000,0.250000,0,0);}
.m1f_c00237{transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);}
.mc8_c00237{transform:matrix(0.314588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314588,0.000000,0.000000,0.250000,0,0);}
.m9c_c00237{transform:matrix(0.315175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315175,0.000000,0.000000,0.250000,0,0);}
.m4c_c00237{transform:matrix(0.315706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315706,0.000000,0.000000,0.250000,0,0);}
.mb6_c00237{transform:matrix(0.316004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316004,0.000000,0.000000,0.250000,0,0);}
.m96_c00237{transform:matrix(0.316934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316934,0.000000,0.000000,0.250000,0,0);}
.m1b_c00237{transform:matrix(0.316953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316953,0.000000,0.000000,0.250000,0,0);}
.mb0_c00237{transform:matrix(0.318441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318441,0.000000,0.000000,0.250000,0,0);}
.mbb_c00237{transform:matrix(0.319310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319310,0.000000,0.000000,0.250000,0,0);}
.m3b_c00237{transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);}
.m21_c00237{transform:matrix(0.320195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320195,0.000000,0.000000,0.250000,0,0);}
.m68_c00237{transform:matrix(0.321130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321130,0.000000,0.000000,0.250000,0,0);}
.m29_c00237{transform:matrix(0.321916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321916,0.000000,0.000000,0.250000,0,0);}
.m80_c00237{transform:matrix(0.322941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322941,0.000000,0.000000,0.250000,0,0);}
.m53_c00237{transform:matrix(0.324242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324242,0.000000,0.000000,0.250000,0,0);}
.m83_c00237{transform:matrix(0.324780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324780,0.000000,0.000000,0.250000,0,0);}
.m79_c00237{transform:matrix(0.324891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324891,0.000000,0.000000,0.250000,0,0);}
.m1c_c00237{transform:matrix(0.326261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326261,0.000000,0.000000,0.250000,0,0);}
.m2c_c00237{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.mc2_c00237{transform:matrix(0.327259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327259,0.000000,0.000000,0.250000,0,0);}
.mbe_c00237{transform:matrix(0.328074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328074,0.000000,0.000000,0.250000,0,0);}
.m3e_c00237{transform:matrix(0.328711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328711,0.000000,0.000000,0.250000,0,0);}
.m14_c00237{transform:matrix(0.330019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330019,0.000000,0.000000,0.250000,0,0);}
.m64_c00237{transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);}
.mad_c00237{transform:matrix(0.330935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330935,0.000000,0.000000,0.250000,0,0);}
.mb9_c00237{transform:matrix(0.331265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331265,0.000000,0.000000,0.250000,0,0);}
.maf_c00237{transform:matrix(0.331333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331333,0.000000,0.000000,0.250000,0,0);}
.m6a_c00237{transform:matrix(0.331631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331631,0.000000,0.000000,0.250000,0,0);}
.mb5_c00237{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m37_c00237{transform:matrix(0.334121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334121,0.000000,0.000000,0.250000,0,0);}
.m71_c00237{transform:matrix(0.334696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334696,0.000000,0.000000,0.250000,0,0);}
.m61_c00237{transform:matrix(0.335394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335394,0.000000,0.000000,0.250000,0,0);}
.m8f_c00237{transform:matrix(0.336976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336976,0.000000,0.000000,0.250000,0,0);}
.mbf_c00237{transform:matrix(0.338655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338655,0.000000,0.000000,0.250000,0,0);}
.m97_c00237{transform:matrix(0.338749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338749,0.000000,0.000000,0.250000,0,0);}
.m95_c00237{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m81_c00237{transform:matrix(0.342217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342217,0.000000,0.000000,0.250000,0,0);}
.m5_c00237{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.m5c_c00237{transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);}
.m62_c00237{transform:matrix(0.343691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343691,0.000000,0.000000,0.250000,0,0);}
.m51_c00237{transform:matrix(0.345150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345150,0.000000,0.000000,0.250000,0,0);}
.ma3_c00237{transform:matrix(0.348286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348286,0.000000,0.000000,0.250000,0,0);}
.m4f_c00237{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.mc1_c00237{transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);}
.ma6_c00237{transform:matrix(0.349915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349915,0.000000,0.000000,0.250000,0,0);}
.m34_c00237{transform:matrix(0.353662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353662,0.000000,0.000000,0.250000,0,0);}
.m55_c00237{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m99_c00237{transform:matrix(0.355345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355345,0.000000,0.000000,0.250000,0,0);}
.ma2_c00237{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m74_c00237{transform:matrix(0.361640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361640,0.000000,0.000000,0.250000,0,0);}
.m7_c00237{transform:matrix(0.365727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365727,0.000000,0.000000,0.250000,0,0);}
.mbc_c00237{transform:matrix(0.365874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365874,0.000000,0.000000,0.250000,0,0);}
.m5a_c00237{transform:matrix(0.370958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370958,0.000000,0.000000,0.250000,0,0);}
.m7c_c00237{transform:matrix(0.374714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374714,0.000000,0.000000,0.250000,0,0);}
.mae_c00237{transform:matrix(0.381466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381466,0.000000,0.000000,0.250000,0,0);}
.m30_c00237{transform:matrix(0.409469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409469,0.000000,0.000000,0.250000,0,0);}
.mc0_c00237{transform:matrix(0.414699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414699,0.000000,0.000000,0.250000,0,0);}
.v0_c00237{vertical-align:0.000000px;}
.ls5_c00237{letter-spacing:-2.744280px;}
.ls1_c00237{letter-spacing:0.000000px;}
.lsb_c00237{letter-spacing:1.254528px;}
.lsd_c00237{letter-spacing:1.685772px;}
.lsf_c00237{letter-spacing:1.764180px;}
.lsa_c00237{letter-spacing:1.872134px;}
.lse_c00237{letter-spacing:2.250310px;}
.ls8_c00237{letter-spacing:3.191206px;}
.ls7_c00237{letter-spacing:3.285295px;}
.ls6_c00237{letter-spacing:3.387226px;}
.ls0_c00237{letter-spacing:3.442111px;}
.ls3_c00237{letter-spacing:3.920400px;}
.ls2_c00237{letter-spacing:4.197610px;}
.ls9_c00237{letter-spacing:35.640000px;}
.lsc_c00237{letter-spacing:49.896198px;}
.ls4_c00237{letter-spacing:51.321798px;}
.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;}
}
.ws5_c00237{word-spacing:-23.044111px;}
.ws6_c00237{word-spacing:-22.860184px;}
.ws4_c00237{word-spacing:-22.793206px;}
.ws9_c00237{word-spacing:-21.366180px;}
.ws0_c00237{word-spacing:-19.602000px;}
.ws7_c00237{word-spacing:-3.693789px;}
.ws3_c00237{word-spacing:-2.745072px;}
.wsa_c00237{word-spacing:0.000000px;}
.ws1_c00237{word-spacing:1.254528px;}
.ws2_c00237{word-spacing:3.449952px;}
.ws8_c00237{word-spacing:5.488560px;}
._1b_c00237{margin-left:-13.172544px;}
._13_c00237{margin-left:-11.682792px;}
._15_c00237{margin-left:-9.565776px;}
._10_c00237{margin-left:-5.331744px;}
._c_c00237{margin-left:-2.665872px;}
._12_c00237{width:2.142677px;}
._16_c00237{width:3.214728px;}
._8_c00237{width:4.390848px;}
._19_c00237{width:5.723784px;}
._4_c00237{width:6.743088px;}
._0_c00237{width:8.076024px;}
._14_c00237{width:9.095328px;}
._7_c00237{width:10.506672px;}
._6_c00237{width:12.388068px;}
._5_c00237{width:14.191848px;}
._17_c00237{width:15.681600px;}
._e_c00237{width:17.092944px;}
._1e_c00237{width:18.425880px;}
._a_c00237{width:20.856528px;}
._d_c00237{width:22.267872px;}
._9_c00237{width:23.993244px;}
._1d_c00237{width:26.730000px;}
._2_c00237{width:28.854144px;}
._1c_c00237{width:29.951856px;}
._18_c00237{width:31.043232px;}
._3_c00237{width:33.088176px;}
._b_c00237{width:35.754048px;}
._1a_c00237{width:37.060135px;}
._11_c00237{width:38.654748px;}
._f_c00237{width:40.401504px;}
._1f_c00237{width:43.595640px;}
._1_c00237{width:45.398232px;}
.fc0_c00237{color:transparent;}
.fs18_c00237{font-size:21.186000px;}
.fs0_c00237{font-size:22.176000px;}
.fs12_c00237{font-size:23.166000px;}
.fsb_c00237{font-size:23.958000px;}
.fs5_c00237{font-size:25.146000px;}
.fsa_c00237{font-size:30.690000px;}
.fsc_c00237{font-size:32.868000px;}
.fs8_c00237{font-size:35.640000px;}
.fs2_c00237{font-size:38.808000px;}
.fs11_c00237{font-size:39.204000px;}
.fs1a_c00237{font-size:39.600000px;}
.fs15_c00237{font-size:43.758000px;}
.fsd_c00237{font-size:44.748000px;}
.fse_c00237{font-size:44.946198px;}
.fs16_c00237{font-size:49.896198px;}
.fs1c_c00237{font-size:50.688000px;}
.fs4_c00237{font-size:51.321798px;}
.fs6_c00237{font-size:53.658000px;}
.fs19_c00237{font-size:60.588000px;}
.fs7_c00237{font-size:63.558000px;}
.fs14_c00237{font-size:64.548000px;}
.fs9_c00237{font-size:67.320000px;}
.fs1b_c00237{font-size:70.884000px;}
.fs17_c00237{font-size:76.032198px;}
.fs10_c00237{font-size:77.616198px;}
.fs3_c00237{font-size:78.408000px;}
.fs13_c00237{font-size:80.784000px;}
.fs1_c00237{font-size:83.952198px;}
.fsf_c00237{font-size:85.932198px;}
.y0_c00237{bottom:0.000000px;}
.y39_c00237{bottom:73.325385px;}
.y1_c00237{bottom:76.500000px;}
.y38_c00237{bottom:122.508585px;}
.y32_c00237{bottom:136.769535px;}
.y37_c00237{bottom:138.902985px;}
.y36_c00237{bottom:146.743785px;}
.y35_c00237{bottom:148.525785px;}
.y30_c00237{bottom:165.271239px;}
.y31_c00237{bottom:165.276585px;}
.y34_c00237{bottom:183.096536px;}
.y2f_c00237{bottom:201.985785px;}
.y2e_c00237{bottom:234.779535px;}
.y2d_c00237{bottom:266.499135px;}
.y2c_c00237{bottom:329.576985px;}
.y2b_c00237{bottom:362.009385px;}
.y2a_c00237{bottom:394.446735px;}
.y29_c00237{bottom:417.256335px;}
.y28_c00237{bottom:426.879135px;}
.y33_c00237{bottom:436.496985px;}
.y27_c00237{bottom:458.955135px;}
.y26_c00237{bottom:490.669785px;}
.y25_c00237{bottom:522.745785px;}
.y24_c00237{bottom:555.895935px;}
.y23_c00237{bottom:588.323385px;}
.y22_c00237{bottom:621.829935px;}
.y21_c00237{bottom:625.388985px;}
.y20_c00237{bottom:648.911385px;}
.y1f_c00237{bottom:658.539135px;}
.yd_c00237{bottom:686.694735px;}
.y1e_c00237{bottom:689.184585px;}
.ye_c00237{bottom:692.035785px;}
.y1d_c00237{bottom:702.019935px;}
.y1c_c00237{bottom:707.004585px;}
.y1b_c00237{bottom:717.340185px;}
.yb_c00237{bottom:718.052490px;}
.yc_c00237{bottom:718.057935px;}
.y1a_c00237{bottom:721.616985px;}
.y19_c00237{bottom:737.303535px;}
.y18_c00237{bottom:743.713785px;}
.ya_c00237{bottom:750.846735px;}
.y17_c00237{bottom:764.741385px;}
.y16_c00237{bottom:774.012735px;}
.y9_c00237{bottom:783.630585px;}
.y15_c00237{bottom:787.555935px;}
.y14_c00237{bottom:793.971135px;}
.y13_c00237{bottom:809.652735px;}
.y8_c00237{bottom:816.067935px;}
.y12_c00237{bottom:821.770335px;}
.y7_c00237{bottom:848.500335px;}
.y6_c00237{bottom:881.640585px;}
.y11_c00237{bottom:886.630185px;}
.y5_c00237{bottom:915.147135px;}
.y10_c00237{bottom:955.058985px;}
.yf_c00237{bottom:957.910185px;}
.y4_c00237{bottom:992.124585px;}
.y2_c00237{bottom:1032.041385px;}
.y3_c00237{bottom:1072.314585px;}
.h1a_c00237{height:22.096336px;}
.h2_c00237{height:23.128875px;}
.hd_c00237{height:23.513467px;}
.ha_c00237{height:23.736240px;}
.h14_c00237{height:24.161414px;}
.h7_c00237{height:26.226492px;}
.hc_c00237{height:30.120557px;}
.h18_c00237{height:33.230868px;}
.h6_c00237{height:34.180317px;}
.he_c00237{height:34.280297px;}
.h13_c00237{height:38.476582px;}
.h4_c00237{height:40.475531px;}
.h1c_c00237{height:41.301563px;}
.hf_c00237{height:43.917715px;}
.h10_c00237{height:44.112235px;}
.h17_c00237{height:45.638227px;}
.h1e_c00237{height:52.866000px;}
.h8_c00237{height:55.963617px;}
.h1b_c00237{height:63.191391px;}
.h9_c00237{height:66.289008px;}
.h16_c00237{height:67.321547px;}
.hb_c00237{height:70.212656px;}
.h1d_c00237{height:73.929797px;}
.h5_c00237{height:76.953164px;}
.h19_c00237{height:79.299207px;}
.h12_c00237{height:80.951269px;}
.h3_c00237{height:82.394491px;}
.h15_c00237{height:84.255188px;}
.h11_c00237{height:84.337753px;}
.h1_c00237{height:1110.000000px;}
.h0_c00237{height:1263.000000px;}
.w1_c00237{width:775.500000px;}
.w0_c00237{width:892.500000px;}
.x0_c00237{left:0.000000px;}
.x2_c00237{left:51.937035px;}
.x1_c00237{left:58.500000px;}
.x36_c00237{left:66.945435px;}
.x5_c00237{left:68.143335px;}
.x14_c00237{left:70.722285px;}
.x3e_c00237{left:78.909585px;}
.x4d_c00237{left:89.561985px;}
.x65_c00237{left:90.650985px;}
.x37_c00237{left:100.164885px;}
.x2b_c00237{left:101.674635px;}
.x66_c00237{left:102.872535px;}
.x23_c00237{left:112.044885px;}
.x48_c00237{left:121.850835px;}
.x44_c00237{left:133.428885px;}
.x15_c00237{left:134.498085px;}
.x3f_c00237{left:135.819735px;}
.x24_c00237{left:144.823785px;}
.x30_c00237{left:154.303035px;}
.x6_c00237{left:155.530635px;}
.x63_c00237{left:158.168985px;}
.x52_c00237{left:166.861185px;}
.x57_c00237{left:176.043435px;}
.x16_c00237{left:177.790785px;}
.x25_c00237{left:188.660985px;}
.x6d_c00237{left:189.740085px;}
.x2c_c00237{left:199.343085px;}
.x49_c00237{left:200.377635px;}
.x17_c00237{left:210.277635px;}
.x4e_c00237{left:211.406235px;}
.x4a_c00237{left:230.904285px;}
.x18_c00237{left:233.116935px;}
.x31_c00237{left:243.873285px;}
.x69_c00237{left:245.318685px;}
.x6e_c00237{left:254.045535px;}
.x19_c00237{left:255.327585px;}
.x45_c00237{left:263.282235px;}
.x4f_c00237{left:265.470135px;}
.x4b_c00237{left:266.702685px;}
.x7_c00237{left:277.063035px;}
.x6a_c00237{left:278.404485px;}
.x40_c00237{left:288.106485px;}
.x50_c00237{left:299.857785px;}
.x8_c00237{left:310.173585px;}
.x32_c00237{left:321.251685px;}
.x5f_c00237{left:322.301085px;}
.x58_c00237{left:331.037835px;}
.x1a_c00237{left:332.329785px;}
.x9_c00237{left:342.091185px;}
.x5a_c00237{left:343.482135px;}
.x1b_c00237{left:353.698935px;}
.x64_c00237{left:355.391835px;}
.x1c_c00237{left:363.509835px;}
.x38_c00237{left:375.939285px;}
.x6b_c00237{left:377.186685px;}
.x1d_c00237{left:387.462885px;}
.x55_c00237{left:397.011435px;}
.x60_c00237{left:398.590485px;}
.xa_c00237{left:408.787485px;}
.x61_c00237{left:409.950735px;}
.x2d_c00237{left:411.480285px;}
.x1e_c00237{left:420.301185px;}
.x6f_c00237{left:422.721735px;}
.x5c_c00237{left:430.156635px;}
.x26_c00237{left:431.379285px;}
.x6c_c00237{left:441.160485px;}
.xb_c00237{left:442.249485px;}
.x1f_c00237{left:453.114735px;}
.x4_c00237{left:454.243335px;}
.x5e_c00237{left:458.138985px;}
.xc_c00237{left:464.123535px;}
.x67_c00237{left:465.167985px;}
.x39_c00237{left:474.855135px;}
.x70_c00237{left:484.685835px;}
.x27_c00237{left:485.784735px;}
.x2e_c00237{left:495.377835px;}
.x28_c00237{left:497.120235px;}
.x20_c00237{left:507.648885px;}
.x53_c00237{left:517.831035px;}
.xd_c00237{left:519.053685px;}
.x4c_c00237{left:528.523035px;}
.x33_c00237{left:529.983285px;}
.x68_c00237{left:531.131685px;}
.x5b_c00237{left:539.571435px;}
.x56_c00237{left:541.056435px;}
.x5d_c00237{left:550.619835px;}
.x21_c00237{left:551.718735px;}
.x41_c00237{left:561.668235px;}
.xe_c00237{left:562.692885px;}
.x54_c00237{left:563.925435px;}
.x34_c00237{left:574.617435px;}
.x29_c00237{left:584.769885px;}
.x42_c00237{left:594.417435px;}
.x3a_c00237{left:595.679685px;}
.x2f_c00237{left:607.049835px;}
.x43_c00237{left:616.509285px;}
.x22_c00237{left:617.835885px;}
.x62_c00237{left:619.969335px;}
.x2a_c00237{left:628.473435px;}
.xf_c00237{left:630.755385px;}
.x3b_c00237{left:639.858435px;}
.x3_c00237{left:650.872185px;}
.x35_c00237{left:652.956135px;}
.x10_c00237{left:662.534385px;}
.x11_c00237{left:672.869985px;}
.x3c_c00237{left:683.873835px;}
.x12_c00237{left:684.987585px;}
.x59_c00237{left:695.392485px;}
.x13_c00237{left:697.822935px;}
.x3d_c00237{left:706.440885px;}
.x51_c00237{left:738.601035px;}
.x47_c00237{left:767.360535px;}
.x46_c00237{left:768.568335px;}
@media print{
.v0_c00237{vertical-align:0.000000pt;}
.ls5_c00237{letter-spacing:-2.439360pt;}
.ls1_c00237{letter-spacing:0.000000pt;}
.lsb_c00237{letter-spacing:1.115136pt;}
.lsd_c00237{letter-spacing:1.498464pt;}
.lsf_c00237{letter-spacing:1.568160pt;}
.lsa_c00237{letter-spacing:1.664119pt;}
.lse_c00237{letter-spacing:2.000275pt;}
.ls8_c00237{letter-spacing:2.836627pt;}
.ls7_c00237{letter-spacing:2.920262pt;}
.ls6_c00237{letter-spacing:3.010867pt;}
.ls0_c00237{letter-spacing:3.059654pt;}
.ls3_c00237{letter-spacing:3.484800pt;}
.ls2_c00237{letter-spacing:3.731209pt;}
.ls9_c00237{letter-spacing:31.680000pt;}
.lsc_c00237{letter-spacing:44.352176pt;}
.ls4_c00237{letter-spacing:45.619376pt;}
.ws5_c00237{word-spacing:-20.483654pt;}
.ws6_c00237{word-spacing:-20.320163pt;}
.ws4_c00237{word-spacing:-20.260627pt;}
.ws9_c00237{word-spacing:-18.992160pt;}
.ws0_c00237{word-spacing:-17.424000pt;}
.ws7_c00237{word-spacing:-3.283368pt;}
.ws3_c00237{word-spacing:-2.440064pt;}
.wsa_c00237{word-spacing:0.000000pt;}
.ws1_c00237{word-spacing:1.115136pt;}
.ws2_c00237{word-spacing:3.066624pt;}
.ws8_c00237{word-spacing:4.878720pt;}
._1b_c00237{margin-left:-11.708928pt;}
._13_c00237{margin-left:-10.384704pt;}
._15_c00237{margin-left:-8.502912pt;}
._10_c00237{margin-left:-4.739328pt;}
._c_c00237{margin-left:-2.369664pt;}
._12_c00237{width:1.904602pt;}
._16_c00237{width:2.857536pt;}
._8_c00237{width:3.902976pt;}
._19_c00237{width:5.087808pt;}
._4_c00237{width:5.993856pt;}
._0_c00237{width:7.178688pt;}
._14_c00237{width:8.084736pt;}
._7_c00237{width:9.339264pt;}
._6_c00237{width:11.011616pt;}
._5_c00237{width:12.614976pt;}
._17_c00237{width:13.939200pt;}
._e_c00237{width:15.193728pt;}
._1e_c00237{width:16.378560pt;}
._a_c00237{width:18.539136pt;}
._d_c00237{width:19.793664pt;}
._9_c00237{width:21.327328pt;}
._1d_c00237{width:23.760000pt;}
._2_c00237{width:25.648128pt;}
._1c_c00237{width:26.623872pt;}
._18_c00237{width:27.593984pt;}
._3_c00237{width:29.411712pt;}
._b_c00237{width:31.781376pt;}
._1a_c00237{width:32.942342pt;}
._11_c00237{width:34.359776pt;}
._f_c00237{width:35.912448pt;}
._1f_c00237{width:38.751680pt;}
._1_c00237{width:40.353984pt;}
.fs18_c00237{font-size:18.832000pt;}
.fs0_c00237{font-size:19.712000pt;}
.fs12_c00237{font-size:20.592000pt;}
.fsb_c00237{font-size:21.296000pt;}
.fs5_c00237{font-size:22.352000pt;}
.fsa_c00237{font-size:27.280000pt;}
.fsc_c00237{font-size:29.216000pt;}
.fs8_c00237{font-size:31.680000pt;}
.fs2_c00237{font-size:34.496000pt;}
.fs11_c00237{font-size:34.848000pt;}
.fs1a_c00237{font-size:35.200000pt;}
.fs15_c00237{font-size:38.896000pt;}
.fsd_c00237{font-size:39.776000pt;}
.fse_c00237{font-size:39.952176pt;}
.fs16_c00237{font-size:44.352176pt;}
.fs1c_c00237{font-size:45.056000pt;}
.fs4_c00237{font-size:45.619376pt;}
.fs6_c00237{font-size:47.696000pt;}
.fs19_c00237{font-size:53.856000pt;}
.fs7_c00237{font-size:56.496000pt;}
.fs14_c00237{font-size:57.376000pt;}
.fs9_c00237{font-size:59.840000pt;}
.fs1b_c00237{font-size:63.008000pt;}
.fs17_c00237{font-size:67.584176pt;}
.fs10_c00237{font-size:68.992176pt;}
.fs3_c00237{font-size:69.696000pt;}
.fs13_c00237{font-size:71.808000pt;}
.fs1_c00237{font-size:74.624176pt;}
.fsf_c00237{font-size:76.384176pt;}
.y0_c00237{bottom:0.000000pt;}
.y39_c00237{bottom:65.178120pt;}
.y1_c00237{bottom:68.000000pt;}
.y38_c00237{bottom:108.896520pt;}
.y32_c00237{bottom:121.572920pt;}
.y37_c00237{bottom:123.469320pt;}
.y36_c00237{bottom:130.438920pt;}
.y35_c00237{bottom:132.022920pt;}
.y30_c00237{bottom:146.907768pt;}
.y31_c00237{bottom:146.912520pt;}
.y34_c00237{bottom:162.752476pt;}
.y2f_c00237{bottom:179.542920pt;}
.y2e_c00237{bottom:208.692920pt;}
.y2d_c00237{bottom:236.888120pt;}
.y2c_c00237{bottom:292.957320pt;}
.y2b_c00237{bottom:321.786120pt;}
.y2a_c00237{bottom:350.619320pt;}
.y29_c00237{bottom:370.894520pt;}
.y28_c00237{bottom:379.448120pt;}
.y33_c00237{bottom:387.997320pt;}
.y27_c00237{bottom:407.960120pt;}
.y26_c00237{bottom:436.150920pt;}
.y25_c00237{bottom:464.662920pt;}
.y24_c00237{bottom:494.129720pt;}
.y23_c00237{bottom:522.954120pt;}
.y22_c00237{bottom:552.737720pt;}
.y21_c00237{bottom:555.901320pt;}
.y20_c00237{bottom:576.810120pt;}
.y1f_c00237{bottom:585.368120pt;}
.yd_c00237{bottom:610.395320pt;}
.y1e_c00237{bottom:612.608520pt;}
.ye_c00237{bottom:615.142920pt;}
.y1d_c00237{bottom:624.017720pt;}
.y1c_c00237{bottom:628.448520pt;}
.y1b_c00237{bottom:637.635720pt;}
.yb_c00237{bottom:638.268880pt;}
.yc_c00237{bottom:638.273720pt;}
.y1a_c00237{bottom:641.437320pt;}
.y19_c00237{bottom:655.380920pt;}
.y18_c00237{bottom:661.078920pt;}
.ya_c00237{bottom:667.419320pt;}
.y17_c00237{bottom:679.770120pt;}
.y16_c00237{bottom:688.011320pt;}
.y9_c00237{bottom:696.560520pt;}
.y15_c00237{bottom:700.049720pt;}
.y14_c00237{bottom:705.752120pt;}
.y13_c00237{bottom:719.691320pt;}
.y8_c00237{bottom:725.393720pt;}
.y12_c00237{bottom:730.462520pt;}
.y7_c00237{bottom:754.222520pt;}
.y6_c00237{bottom:783.680520pt;}
.y11_c00237{bottom:788.115720pt;}
.y5_c00237{bottom:813.464120pt;}
.y10_c00237{bottom:848.941320pt;}
.yf_c00237{bottom:851.475720pt;}
.y4_c00237{bottom:881.888520pt;}
.y2_c00237{bottom:917.370120pt;}
.y3_c00237{bottom:953.168520pt;}
.h1a_c00237{height:19.641188pt;}
.h2_c00237{height:20.559000pt;}
.hd_c00237{height:20.900859pt;}
.ha_c00237{height:21.098880pt;}
.h14_c00237{height:21.476813pt;}
.h7_c00237{height:23.312438pt;}
.hc_c00237{height:26.773828pt;}
.h18_c00237{height:29.538549pt;}
.h6_c00237{height:30.382504pt;}
.he_c00237{height:30.471375pt;}
.h13_c00237{height:34.201406pt;}
.h4_c00237{height:35.978250pt;}
.h1c_c00237{height:36.712500pt;}
.hf_c00237{height:39.037969pt;}
.h10_c00237{height:39.210876pt;}
.h17_c00237{height:40.567313pt;}
.h1e_c00237{height:46.992000pt;}
.h8_c00237{height:49.745438pt;}
.h1b_c00237{height:56.170125pt;}
.h9_c00237{height:58.923563pt;}
.h16_c00237{height:59.841375pt;}
.hb_c00237{height:62.411250pt;}
.h1d_c00237{height:65.715375pt;}
.h5_c00237{height:68.402813pt;}
.h19_c00237{height:70.488184pt;}
.h12_c00237{height:71.956684pt;}
.h3_c00237{height:73.239548pt;}
.h15_c00237{height:74.893500pt;}
.h11_c00237{height:74.966891pt;}
.h1_c00237{height:986.666667pt;}
.h0_c00237{height:1122.666667pt;}
.w1_c00237{width:689.333333pt;}
.w0_c00237{width:793.333333pt;}
.x0_c00237{left:0.000000pt;}
.x2_c00237{left:46.166253pt;}
.x1_c00237{left:52.000000pt;}
.x36_c00237{left:59.507053pt;}
.x5_c00237{left:60.571853pt;}
.x14_c00237{left:62.864253pt;}
.x3e_c00237{left:70.141853pt;}
.x4d_c00237{left:79.610653pt;}
.x65_c00237{left:80.578653pt;}
.x37_c00237{left:89.035453pt;}
.x2b_c00237{left:90.377453pt;}
.x66_c00237{left:91.442253pt;}
.x23_c00237{left:99.595453pt;}
.x48_c00237{left:108.311853pt;}
.x44_c00237{left:118.603453pt;}
.x15_c00237{left:119.553853pt;}
.x3f_c00237{left:120.728653pt;}
.x24_c00237{left:128.732253pt;}
.x30_c00237{left:137.158253pt;}
.x6_c00237{left:138.249453pt;}
.x63_c00237{left:140.594653pt;}
.x52_c00237{left:148.321053pt;}
.x57_c00237{left:156.483053pt;}
.x16_c00237{left:158.036253pt;}
.x25_c00237{left:167.698653pt;}
.x6d_c00237{left:168.657853pt;}
.x2c_c00237{left:177.193853pt;}
.x49_c00237{left:178.113453pt;}
.x17_c00237{left:186.913453pt;}
.x4e_c00237{left:187.916653pt;}
.x4a_c00237{left:205.248253pt;}
.x18_c00237{left:207.215053pt;}
.x31_c00237{left:216.776253pt;}
.x69_c00237{left:218.061053pt;}
.x6e_c00237{left:225.818253pt;}
.x19_c00237{left:226.957853pt;}
.x45_c00237{left:234.028653pt;}
.x4f_c00237{left:235.973453pt;}
.x4b_c00237{left:237.069053pt;}
.x7_c00237{left:246.278253pt;}
.x6a_c00237{left:247.470653pt;}
.x40_c00237{left:256.094653pt;}
.x50_c00237{left:266.540253pt;}
.x8_c00237{left:275.709853pt;}
.x32_c00237{left:285.557053pt;}
.x5f_c00237{left:286.489853pt;}
.x58_c00237{left:294.255853pt;}
.x1a_c00237{left:295.404253pt;}
.x9_c00237{left:304.081053pt;}
.x5a_c00237{left:305.317453pt;}
.x1b_c00237{left:314.399053pt;}
.x64_c00237{left:315.903853pt;}
.x1c_c00237{left:323.119853pt;}
.x38_c00237{left:334.168253pt;}
.x6b_c00237{left:335.277053pt;}
.x1d_c00237{left:344.411453pt;}
.x55_c00237{left:352.899053pt;}
.x60_c00237{left:354.302653pt;}
.xa_c00237{left:363.366653pt;}
.x61_c00237{left:364.400653pt;}
.x2d_c00237{left:365.760253pt;}
.x1e_c00237{left:373.601053pt;}
.x6f_c00237{left:375.752653pt;}
.x5c_c00237{left:382.361453pt;}
.x26_c00237{left:383.448253pt;}
.x6c_c00237{left:392.142653pt;}
.xb_c00237{left:393.110653pt;}
.x1f_c00237{left:402.768653pt;}
.x4_c00237{left:403.771853pt;}
.x5e_c00237{left:407.234653pt;}
.xc_c00237{left:412.554253pt;}
.x67_c00237{left:413.482653pt;}
.x39_c00237{left:422.093453pt;}
.x70_c00237{left:430.831853pt;}
.x27_c00237{left:431.808653pt;}
.x2e_c00237{left:440.335853pt;}
.x28_c00237{left:441.884653pt;}
.x20_c00237{left:451.243453pt;}
.x53_c00237{left:460.294253pt;}
.xd_c00237{left:461.381053pt;}
.x4c_c00237{left:469.798253pt;}
.x33_c00237{left:471.096253pt;}
.x68_c00237{left:472.117053pt;}
.x5b_c00237{left:479.619053pt;}
.x56_c00237{left:480.939053pt;}
.x5d_c00237{left:489.439853pt;}
.x21_c00237{left:490.416653pt;}
.x41_c00237{left:499.260653pt;}
.xe_c00237{left:500.171453pt;}
.x54_c00237{left:501.267053pt;}
.x34_c00237{left:510.771053pt;}
.x29_c00237{left:519.795453pt;}
.x42_c00237{left:528.371053pt;}
.x3a_c00237{left:529.493053pt;}
.x2f_c00237{left:539.599853pt;}
.x43_c00237{left:548.008253pt;}
.x22_c00237{left:549.187453pt;}
.x62_c00237{left:551.083853pt;}
.x2a_c00237{left:558.643053pt;}
.xf_c00237{left:560.671453pt;}
.x3b_c00237{left:568.763053pt;}
.x3_c00237{left:578.553053pt;}
.x35_c00237{left:580.405453pt;}
.x10_c00237{left:588.919453pt;}
.x11_c00237{left:598.106653pt;}
.x3c_c00237{left:607.887853pt;}
.x12_c00237{left:608.877853pt;}
.x59_c00237{left:618.126653pt;}
.x13_c00237{left:620.287053pt;}
.x3d_c00237{left:627.947453pt;}
.x51_c00237{left:656.534253pt;}
.x47_c00237{left:682.098253pt;}
.x46_c00237{left:683.171853pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1b47c296cbd03760448d1087.woff2')format("woff");}.ff1_c00238{font-family:ff1_c00238;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00238;src:url('chunks/assets/font_718dd29fffa7cc0b56988410.woff2')format("woff");}.ff2_c00238{font-family:ff2_c00238;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00238;src:url('chunks/assets/font_c165c607e73066c7961a26d0.woff2')format("woff");}.ff3_c00238{font-family:ff3_c00238;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00238;src:url('chunks/assets/font_6d8e9ab45ef60f85551c91da.woff2')format("woff");}.ff4_c00238{font-family:ff4_c00238;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m53_c00238{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);}
.m79_c00238{transform:matrix(0.182433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182433,0.000000,0.000000,0.250000,0,0);}
.m51_c00238{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m78_c00238{transform:matrix(0.206081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206081,0.000000,0.000000,0.250000,0,0);}
.m97_c00238{transform:matrix(0.211470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211470,0.000000,0.000000,0.250000,0,0);}
.m20_c00238{transform:matrix(0.215713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215713,0.000000,0.000000,0.250000,0,0);}
.m76_c00238{transform:matrix(0.222973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222973,0.000000,0.000000,0.250000,0,0);}
.m2a_c00238{transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);}
.m6e_c00238{transform:matrix(0.233364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233364,0.000000,0.000000,0.250000,0,0);}
.m52_c00238{transform:matrix(0.236110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236110,0.000000,0.000000,0.250000,0,0);}
.mb_c00238{transform:matrix(0.238424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238424,0.000000,0.000000,0.250000,0,0);}
.m1_c00238{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00238{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.m5b_c00238{transform:matrix(0.253253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253253,0.000000,0.000000,0.250000,0,0);}
.ma4_c00238{transform:matrix(0.255131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255131,0.000000,0.000000,0.250000,0,0);}
.m50_c00238{transform:matrix(0.256057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256057,0.000000,0.000000,0.250000,0,0);}
.m4_c00238{transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);}
.m11_c00238{transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);}
.m24_c00238{transform:matrix(0.259662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259662,0.000000,0.000000,0.250000,0,0);}
.m1c_c00238{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.me_c00238{transform:matrix(0.261106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261106,0.000000,0.000000,0.250000,0,0);}
.m82_c00238{transform:matrix(0.261277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261277,0.000000,0.000000,0.250000,0,0);}
.m14_c00238{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m5a_c00238{transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);}
.m96_c00238{transform:matrix(0.266021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266021,0.000000,0.000000,0.250000,0,0);}
.m5d_c00238{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.md_c00238{transform:matrix(0.266295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266295,0.000000,0.000000,0.250000,0,0);}
.m90_c00238{transform:matrix(0.267242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267242,0.000000,0.000000,0.250000,0,0);}
.m22_c00238{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m18_c00238{transform:matrix(0.268107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268107,0.000000,0.000000,0.250000,0,0);}
.m42_c00238{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.m54_c00238{transform:matrix(0.269234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269234,0.000000,0.000000,0.250000,0,0);}
.m7b_c00238{transform:matrix(0.269520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269520,0.000000,0.000000,0.250000,0,0);}
.m2_c00238{transform:matrix(0.269646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269646,0.000000,0.000000,0.250000,0,0);}
.m74_c00238{transform:matrix(0.270398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270398,0.000000,0.000000,0.250000,0,0);}
.m47_c00238{transform:matrix(0.270666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270666,0.000000,0.000000,0.250000,0,0);}
.m32_c00238{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m85_c00238{transform:matrix(0.271804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271804,0.000000,0.000000,0.250000,0,0);}
.m56_c00238{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m0_c00238{transform:matrix(0.273795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273795,0.000000,0.000000,0.250000,0,0);}
.m63_c00238{transform:matrix(0.275025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275025,0.000000,0.000000,0.250000,0,0);}
.m93_c00238{transform:matrix(0.275066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275066,0.000000,0.000000,0.250000,0,0);}
.mf_c00238{transform:matrix(0.275130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275130,0.000000,0.000000,0.250000,0,0);}
.m28_c00238{transform:matrix(0.276607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276607,0.000000,0.000000,0.250000,0,0);}
.m60_c00238{transform:matrix(0.276794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276794,0.000000,0.000000,0.250000,0,0);}
.m7c_c00238{transform:matrix(0.276906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276906,0.000000,0.000000,0.250000,0,0);}
.m3_c00238{transform:matrix(0.276972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276972,0.000000,0.000000,0.250000,0,0);}
.m5f_c00238{transform:matrix(0.277542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277542,0.000000,0.000000,0.250000,0,0);}
.m26_c00238{transform:matrix(0.277612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277612,0.000000,0.000000,0.250000,0,0);}
.m38_c00238{transform:matrix(0.278057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278057,0.000000,0.000000,0.250000,0,0);}
.m5c_c00238{transform:matrix(0.278106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278106,0.000000,0.000000,0.250000,0,0);}
.m8e_c00238{transform:matrix(0.279025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279025,0.000000,0.000000,0.250000,0,0);}
.m1b_c00238{transform:matrix(0.279111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279111,0.000000,0.000000,0.250000,0,0);}
.ma1_c00238{transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);}
.m68_c00238{transform:matrix(0.280492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280492,0.000000,0.000000,0.250000,0,0);}
.m61_c00238{transform:matrix(0.283330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283330,0.000000,0.000000,0.250000,0,0);}
.m36_c00238{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m99_c00238{transform:matrix(0.284095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284095,0.000000,0.000000,0.250000,0,0);}
.m64_c00238{transform:matrix(0.284597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284597,0.000000,0.000000,0.250000,0,0);}
.m65_c00238{transform:matrix(0.285047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285047,0.000000,0.000000,0.250000,0,0);}
.m66_c00238{transform:matrix(0.285198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285198,0.000000,0.000000,0.250000,0,0);}
.m5e_c00238{transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);}
.mc_c00238{transform:matrix(0.285694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285694,0.000000,0.000000,0.250000,0,0);}
.m98_c00238{transform:matrix(0.286141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286141,0.000000,0.000000,0.250000,0,0);}
.m43_c00238{transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);}
.m2c_c00238{transform:matrix(0.287082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287082,0.000000,0.000000,0.250000,0,0);}
.m8c_c00238{transform:matrix(0.287547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287547,0.000000,0.000000,0.250000,0,0);}
.m70_c00238{transform:matrix(0.287592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287592,0.000000,0.000000,0.250000,0,0);}
.m9b_c00238{transform:matrix(0.288035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288035,0.000000,0.000000,0.250000,0,0);}
.m1d_c00238{transform:matrix(0.288037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288037,0.000000,0.000000,0.250000,0,0);}
.m57_c00238{transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);}
.m7a_c00238{transform:matrix(0.289318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289318,0.000000,0.000000,0.250000,0,0);}
.m3a_c00238{transform:matrix(0.289371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289371,0.000000,0.000000,0.250000,0,0);}
.m40_c00238{transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);}
.m89_c00238{transform:matrix(0.291097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291097,0.000000,0.000000,0.250000,0,0);}
.m16_c00238{transform:matrix(0.291730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291730,0.000000,0.000000,0.250000,0,0);}
.m9c_c00238{transform:matrix(0.291887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291887,0.000000,0.000000,0.250000,0,0);}
.m23_c00238{transform:matrix(0.292127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292127,0.000000,0.000000,0.250000,0,0);}
.m46_c00238{transform:matrix(0.292249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292249,0.000000,0.000000,0.250000,0,0);}
.m37_c00238{transform:matrix(0.292488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292488,0.000000,0.000000,0.250000,0,0);}
.m6a_c00238{transform:matrix(0.293098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293098,0.000000,0.000000,0.250000,0,0);}
.m49_c00238{transform:matrix(0.293144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293144,0.000000,0.000000,0.250000,0,0);}
.m7e_c00238{transform:matrix(0.293383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293383,0.000000,0.000000,0.250000,0,0);}
.m92_c00238{transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);}
.m81_c00238{transform:matrix(0.295359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295359,0.000000,0.000000,0.250000,0,0);}
.m69_c00238{transform:matrix(0.295679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295679,0.000000,0.000000,0.250000,0,0);}
.m1e_c00238{transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);}
.m25_c00238{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m9d_c00238{transform:matrix(0.297215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297215,0.000000,0.000000,0.250000,0,0);}
.m44_c00238{transform:matrix(0.297682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297682,0.000000,0.000000,0.250000,0,0);}
.m3f_c00238{transform:matrix(0.298105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298105,0.000000,0.000000,0.250000,0,0);}
.m1a_c00238{transform:matrix(0.299699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299699,0.000000,0.000000,0.250000,0,0);}
.m9e_c00238{transform:matrix(0.299710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299710,0.000000,0.000000,0.250000,0,0);}
.m9_c00238{transform:matrix(0.300052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300052,0.000000,0.000000,0.250000,0,0);}
.m7d_c00238{transform:matrix(0.301621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301621,0.000000,0.000000,0.250000,0,0);}
.m94_c00238{transform:matrix(0.302112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302112,0.000000,0.000000,0.250000,0,0);}
.m77_c00238{transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);}
.m7_c00238{transform:matrix(0.302561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302561,0.000000,0.000000,0.250000,0,0);}
.m87_c00238{transform:matrix(0.302905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302905,0.000000,0.000000,0.250000,0,0);}
.m59_c00238{transform:matrix(0.302966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302966,0.000000,0.000000,0.250000,0,0);}
.m71_c00238{transform:matrix(0.303625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303625,0.000000,0.000000,0.250000,0,0);}
.m73_c00238{transform:matrix(0.304205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304205,0.000000,0.000000,0.250000,0,0);}
.ma2_c00238{transform:matrix(0.304423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304423,0.000000,0.000000,0.250000,0,0);}
.m58_c00238{transform:matrix(0.304593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304593,0.000000,0.000000,0.250000,0,0);}
.m6c_c00238{transform:matrix(0.304872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304872,0.000000,0.000000,0.250000,0,0);}
.m6b_c00238{transform:matrix(0.305132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305132,0.000000,0.000000,0.250000,0,0);}
.m39_c00238{transform:matrix(0.306753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306753,0.000000,0.000000,0.250000,0,0);}
.m3c_c00238{transform:matrix(0.307223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307223,0.000000,0.000000,0.250000,0,0);}
.m9f_c00238{transform:matrix(0.307816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307816,0.000000,0.000000,0.250000,0,0);}
.m1f_c00238{transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);}
.m55_c00238{transform:matrix(0.309551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309551,0.000000,0.000000,0.250000,0,0);}
.m4e_c00238{transform:matrix(0.310426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310426,0.000000,0.000000,0.250000,0,0);}
.m41_c00238{transform:matrix(0.311143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311143,0.000000,0.000000,0.250000,0,0);}
.m88_c00238{transform:matrix(0.311385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311385,0.000000,0.000000,0.250000,0,0);}
.m48_c00238{transform:matrix(0.311442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311442,0.000000,0.000000,0.250000,0,0);}
.m45_c00238{transform:matrix(0.312046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312046,0.000000,0.000000,0.250000,0,0);}
.m8a_c00238{transform:matrix(0.312058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312058,0.000000,0.000000,0.250000,0,0);}
.m21_c00238{transform:matrix(0.312483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312483,0.000000,0.000000,0.250000,0,0);}
.m8_c00238{transform:matrix(0.312886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312886,0.000000,0.000000,0.250000,0,0);}
.m9a_c00238{transform:matrix(0.313425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313425,0.000000,0.000000,0.250000,0,0);}
.m3b_c00238{transform:matrix(0.314510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314510,0.000000,0.000000,0.250000,0,0);}
.m17_c00238{transform:matrix(0.314588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314588,0.000000,0.000000,0.250000,0,0);}
.m4f_c00238{transform:matrix(0.314894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314894,0.000000,0.000000,0.250000,0,0);}
.m67_c00238{transform:matrix(0.315116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315116,0.000000,0.000000,0.250000,0,0);}
.m75_c00238{transform:matrix(0.315604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315604,0.000000,0.000000,0.250000,0,0);}
.m8d_c00238{transform:matrix(0.317247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317247,0.000000,0.000000,0.250000,0,0);}
.m91_c00238{transform:matrix(0.318696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318696,0.000000,0.000000,0.250000,0,0);}
.m2f_c00238{transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);}
.m4d_c00238{transform:matrix(0.319290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319290,0.000000,0.000000,0.250000,0,0);}
.m72_c00238{transform:matrix(0.322235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322235,0.000000,0.000000,0.250000,0,0);}
.m7f_c00238{transform:matrix(0.322646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322646,0.000000,0.000000,0.250000,0,0);}
.m2b_c00238{transform:matrix(0.322864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322864,0.000000,0.000000,0.250000,0,0);}
.m62_c00238{transform:matrix(0.323035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323035,0.000000,0.000000,0.250000,0,0);}
.m4a_c00238{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.m4c_c00238{transform:matrix(0.323827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323827,0.000000,0.000000,0.250000,0,0);}
.m3d_c00238{transform:matrix(0.323962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323962,0.000000,0.000000,0.250000,0,0);}
.ma5_c00238{transform:matrix(0.324420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324420,0.000000,0.000000,0.250000,0,0);}
.m80_c00238{transform:matrix(0.324715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324715,0.000000,0.000000,0.250000,0,0);}
.m19_c00238{transform:matrix(0.326313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326313,0.000000,0.000000,0.250000,0,0);}
.m8b_c00238{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m2d_c00238{transform:matrix(0.329886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329886,0.000000,0.000000,0.250000,0,0);}
.m6_c00238{transform:matrix(0.331699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331699,0.000000,0.000000,0.250000,0,0);}
.m27_c00238{transform:matrix(0.332438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332438,0.000000,0.000000,0.250000,0,0);}
.m5_c00238{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m30_c00238{transform:matrix(0.333410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333410,0.000000,0.000000,0.250000,0,0);}
.m34_c00238{transform:matrix(0.333417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333417,0.000000,0.000000,0.250000,0,0);}
.m84_c00238{transform:matrix(0.333511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333511,0.000000,0.000000,0.250000,0,0);}
.m83_c00238{transform:matrix(0.335394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335394,0.000000,0.000000,0.250000,0,0);}
.m13_c00238{transform:matrix(0.337161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337161,0.000000,0.000000,0.250000,0,0);}
.m6f_c00238{transform:matrix(0.337455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337455,0.000000,0.000000,0.250000,0,0);}
.m31_c00238{transform:matrix(0.337661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337661,0.000000,0.000000,0.250000,0,0);}
.ma3_c00238{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.ma0_c00238{transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);}
.m10_c00238{transform:matrix(0.342633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342633,0.000000,0.000000,0.250000,0,0);}
.m86_c00238{transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);}
.m12_c00238{transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);}
.m6d_c00238{transform:matrix(0.348765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348765,0.000000,0.000000,0.250000,0,0);}
.m33_c00238{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m15_c00238{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.ma_c00238{transform:matrix(0.361926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361926,0.000000,0.000000,0.250000,0,0);}
.m35_c00238{transform:matrix(0.362785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362785,0.000000,0.000000,0.250000,0,0);}
.m4b_c00238{transform:matrix(0.365181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365181,0.000000,0.000000,0.250000,0,0);}
.m29_c00238{transform:matrix(0.377662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377662,0.000000,0.000000,0.250000,0,0);}
.m3e_c00238{transform:matrix(0.387416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387416,0.000000,0.000000,0.250000,0,0);}
.m8f_c00238{transform:matrix(0.408896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408896,0.000000,0.000000,0.250000,0,0);}
.m95_c00238{transform:matrix(0.423078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423078,0.000000,0.000000,0.250000,0,0);}
.v0_c00238{vertical-align:0.000000px;}
.ls3_c00238{letter-spacing:-2.744280px;}
.ls10_c00238{letter-spacing:-2.605680px;}
.lsc_c00238{letter-spacing:-2.375762px;}
.ls5_c00238{letter-spacing:-1.685772px;}
.ls8_c00238{letter-spacing:-1.544638px;}
.ls2_c00238{letter-spacing:0.000000px;}
.lse_c00238{letter-spacing:0.705672px;}
.ls6_c00238{letter-spacing:1.246687px;}
.ls4_c00238{letter-spacing:1.928837px;}
.ls9_c00238{letter-spacing:2.132698px;}
.lsa_c00238{letter-spacing:3.418589px;}
.ls1_c00238{letter-spacing:3.920400px;}
.lsf_c00238{letter-spacing:4.138200px;}
.ls0_c00238{letter-spacing:7.998408px;}
.ls7_c00238{letter-spacing:49.896198px;}
.lsb_c00238{letter-spacing:51.321798px;}
.lsd_c00238{letter-spacing:52.747398px;}
.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:-19.602000px;}
.ws1_c00238{word-spacing:0.000000px;}
._0_c00238{margin-left:-14.427864px;}
._8_c00238{width:4.312440px;}
._2_c00238{width:6.271848px;}
._3_c00238{width:7.683984px;}
._5_c00238{width:9.173340px;}
._4_c00238{width:10.349856px;}
._7_c00238{width:20.856528px;}
._1_c00238{width:22.267872px;}
._9_c00238{width:23.679216px;}
._6_c00238{width:29.559420px;}
._a_c00238{width:31.259448px;}
._b_c00238{width:37.008972px;}
.fc0_c00238{color:transparent;}
.fs1_c00238{font-size:27.720000px;}
.fs2_c00238{font-size:49.896198px;}
.fs3_c00238{font-size:51.321798px;}
.fs4_c00238{font-size:52.747398px;}
.fs7_c00238{font-size:74.448000px;}
.fs5_c00238{font-size:76.032198px;}
.fs0_c00238{font-size:78.408000px;}
.fs6_c00238{font-size:82.764000px;}
.y0_c00238{bottom:0.000000px;}
.y1_c00238{bottom:76.500000px;}
.y1a_c00238{bottom:151.738335px;}
.y19_c00238{bottom:181.314585px;}
.y18_c00238{bottom:214.821135px;}
.y17_c00238{bottom:246.540735px;}
.y16_c00238{bottom:341.694585px;}
.y15_c00238{bottom:367.360335px;}
.y14_c00238{bottom:374.131935px;}
.y13_c00238{bottom:406.564335px;}
.y12_c00238{bottom:440.065935px;}
.y11_c00238{bottom:472.854735px;}
.y10_c00238{bottom:504.930735px;}
.yf_c00238{bottom:538.075935px;}
.ye_c00238{bottom:570.508335px;}
.yd_c00238{bottom:603.297135px;}
.yc_c00238{bottom:635.729535px;}
.yb_c00238{bottom:668.518335px;}
.ya_c00238{bottom:730.170585px;}
.y9_c00238{bottom:762.607935px;}
.y8_c00238{bottom:795.040335px;}
.y7_c00238{bottom:826.754985px;}
.y6_c00238{bottom:860.617935px;}
.y5_c00238{bottom:894.475935px;}
.y4_c00238{bottom:927.264735px;}
.y3_c00238{bottom:1024.913385px;}
.y2_c00238{bottom:1078.016985px;}
.h3_c00238{height:28.911094px;}
.h4_c00238{height:33.230868px;}
.h5_c00238{height:34.180317px;}
.h6_c00238{height:35.129767px;}
.h9_c00238{height:73.066641px;}
.h2_c00238{height:76.953164px;}
.h7_c00238{height:79.299207px;}
.h8_c00238{height:83.410594px;}
.h1_c00238{height:1110.000000px;}
.h0_c00238{height:1263.000000px;}
.w1_c00238{width:751.500000px;}
.w0_c00238{width:892.500000px;}
.x0_c00238{left:0.000000px;}
.x4_c00238{left:64.459335px;}
.x38_c00238{left:65.592885px;}
.x68_c00238{left:66.671985px;}
.x1_c00238{left:70.500000px;}
.x5_c00238{left:97.718385px;}
.x2c_c00238{left:108.242085px;}
.x63_c00238{left:110.182485px;}
.x42_c00238{left:111.563535px;}
.x12_c00238{left:119.438985px;}
.x47_c00238{left:120.547785px;}
.x2d_c00238{left:130.759635px;}
.x60_c00238{left:132.254535px;}
.x33_c00238{left:141.525885px;}
.x69_c00238{left:142.634685px;}
.x1d_c00238{left:151.351635px;}
.x36_c00238{left:152.564385px;}
.x13_c00238{left:163.657335px;}
.x34_c00238{left:174.176085px;}
.x48_c00238{left:175.591785px;}
.x6_c00238{left:185.768985px;}
.x55_c00238{left:187.159935px;}
.x23_c00238{left:196.094685px;}
.x1e_c00238{left:197.149035px;}
.x14_c00238{left:207.420285px;}
.x35_c00238{left:218.547885px;}
.x49_c00238{left:220.334835px;}
.x7_c00238{left:230.586285px;}
.x15_c00238{left:240.550635px;}
.x4a_c00238{left:241.694085px;}
.x3f_c00238{left:251.920785px;}
.x8_c00238{left:263.078085px;}
.x61_c00238{left:264.523485px;}
.x29_c00238{left:275.136285px;}
.x51_c00238{left:286.956885px;}
.x1f_c00238{left:295.891635px;}
.x4b_c00238{left:296.960835px;}
.x16_c00238{left:307.296435px;}
.x56_c00238{left:308.697285px;}
.x2e_c00238{left:318.131985px;}
.x43_c00238{left:319.735785px;}
.x3_c00238{left:322.359285px;}
.x59_c00238{left:329.972385px;}
.x64_c00238{left:333.239385px;}
.x9_c00238{left:340.055535px;}
.x4c_c00238{left:341.783085px;}
.x44_c00238{left:361.261335px;}
.x3a_c00238{left:362.711685px;}
.x17_c00238{left:372.680985px;}
.x20_c00238{left:373.908585px;}
.x5a_c00238{left:374.997585px;}
.x2a_c00238{left:383.734335px;}
.x5d_c00238{left:386.338035px;}
.x3b_c00238{left:395.688585px;}
.x5b_c00238{left:397.025085px;}
.x2f_c00238{left:406.692435px;}
.x65_c00238{left:408.127935px;}
.x24_c00238{left:417.646785px;}
.x3c_c00238{left:418.834785px;}
.xa_c00238{left:428.606085px;}
.x30_c00238{left:439.515885px;}
.x3d_c00238{left:440.797935px;}
.x25_c00238{left:449.306985px;}
.x4d_c00238{left:451.633485px;}
.x18_c00238{left:460.008885px;}
.x39_c00238{left:461.582985px;}
.x2b_c00238{left:472.344285px;}
.x52_c00238{left:473.586735px;}
.x21_c00238{left:482.872935px;}
.x5c_c00238{left:484.709385px;}
.xb_c00238{left:493.564935px;}
.x26_c00238{left:495.460785px;}
.x19_c00238{left:504.529185px;}
.x4e_c00238{left:506.553735px;}
.x45_c00238{left:508.593135px;}
.x27_c00238{left:516.800235px;}
.x62_c00238{left:517.928835px;}
.x22_c00238{left:527.898135px;}
.x66_c00238{left:528.972285px;}
.x4f_c00238{left:537.728835px;}
.xc_c00238{left:538.748535px;}
.x46_c00238{left:541.738335px;}
.x40_c00238{left:551.049285px;}
.x5e_c00238{left:561.394785px;}
.xd_c00238{left:571.190835px;}
.x57_c00238{left:572.462985px;}
.x1a_c00238{left:582.437235px;}
.x3e_c00238{left:584.065785px;}
.xe_c00238{left:593.772735px;}
.x58_c00238{left:594.871635px;}
.x31_c00238{left:604.474635px;}
.x53_c00238{left:606.291285px;}
.xf_c00238{left:615.562635px;}
.x28_c00238{left:624.690435px;}
.x1b_c00238{left:626.145735px;}
.x50_c00238{left:637.491135px;}
.x54_c00238{left:638.624685px;}
.x2_c00238{left:648.316785px;}
.x32_c00238{left:660.077985px;}
.x67_c00238{left:661.830285px;}
.x10_c00238{left:670.809585px;}
.x5f_c00238{left:671.888685px;}
.x37_c00238{left:682.184685px;}
.x1c_c00238{left:693.109335px;}
.x11_c00238{left:703.974585px;}
.x41_c00238{left:714.983385px;}
@media print{
.v0_c00238{vertical-align:0.000000pt;}
.ls3_c00238{letter-spacing:-2.439360pt;}
.ls10_c00238{letter-spacing:-2.316160pt;}
.lsc_c00238{letter-spacing:-2.111789pt;}
.ls5_c00238{letter-spacing:-1.498464pt;}
.ls8_c00238{letter-spacing:-1.373011pt;}
.ls2_c00238{letter-spacing:0.000000pt;}
.lse_c00238{letter-spacing:0.627264pt;}
.ls6_c00238{letter-spacing:1.108166pt;}
.ls4_c00238{letter-spacing:1.714522pt;}
.ls9_c00238{letter-spacing:1.895731pt;}
.lsa_c00238{letter-spacing:3.038746pt;}
.ls1_c00238{letter-spacing:3.484800pt;}
.lsf_c00238{letter-spacing:3.678400pt;}
.ls0_c00238{letter-spacing:7.109696pt;}
.ls7_c00238{letter-spacing:44.352176pt;}
.lsb_c00238{letter-spacing:45.619376pt;}
.lsd_c00238{letter-spacing:46.886576pt;}
.ws0_c00238{word-spacing:-17.424000pt;}
.ws1_c00238{word-spacing:0.000000pt;}
._0_c00238{margin-left:-12.824768pt;}
._8_c00238{width:3.833280pt;}
._2_c00238{width:5.574976pt;}
._3_c00238{width:6.830208pt;}
._5_c00238{width:8.154080pt;}
._4_c00238{width:9.199872pt;}
._7_c00238{width:18.539136pt;}
._1_c00238{width:19.793664pt;}
._9_c00238{width:21.048192pt;}
._6_c00238{width:26.275040pt;}
._a_c00238{width:27.786176pt;}
._b_c00238{width:32.896864pt;}
.fs1_c00238{font-size:24.640000pt;}
.fs2_c00238{font-size:44.352176pt;}
.fs3_c00238{font-size:45.619376pt;}
.fs4_c00238{font-size:46.886576pt;}
.fs7_c00238{font-size:66.176000pt;}
.fs5_c00238{font-size:67.584176pt;}
.fs0_c00238{font-size:69.696000pt;}
.fs6_c00238{font-size:73.568000pt;}
.y0_c00238{bottom:0.000000pt;}
.y1_c00238{bottom:68.000000pt;}
.y1a_c00238{bottom:134.878520pt;}
.y19_c00238{bottom:161.168520pt;}
.y18_c00238{bottom:190.952120pt;}
.y17_c00238{bottom:219.147320pt;}
.y16_c00238{bottom:303.728520pt;}
.y15_c00238{bottom:326.542520pt;}
.y14_c00238{bottom:332.561720pt;}
.y13_c00238{bottom:361.390520pt;}
.y12_c00238{bottom:391.169720pt;}
.y11_c00238{bottom:420.315320pt;}
.y10_c00238{bottom:448.827320pt;}
.yf_c00238{bottom:478.289720pt;}
.ye_c00238{bottom:507.118520pt;}
.yd_c00238{bottom:536.264120pt;}
.yc_c00238{bottom:565.092920pt;}
.yb_c00238{bottom:594.238520pt;}
.ya_c00238{bottom:649.040520pt;}
.y9_c00238{bottom:677.873720pt;}
.y8_c00238{bottom:706.702520pt;}
.y7_c00238{bottom:734.893320pt;}
.y6_c00238{bottom:764.993720pt;}
.y5_c00238{bottom:795.089720pt;}
.y4_c00238{bottom:824.235320pt;}
.y3_c00238{bottom:911.034120pt;}
.y2_c00238{bottom:958.237320pt;}
.h3_c00238{height:25.698750pt;}
.h4_c00238{height:29.538549pt;}
.h5_c00238{height:30.382504pt;}
.h6_c00238{height:31.226460pt;}
.h9_c00238{height:64.948125pt;}
.h2_c00238{height:68.402813pt;}
.h7_c00238{height:70.488184pt;}
.h8_c00238{height:74.142750pt;}
.h1_c00238{height:986.666667pt;}
.h0_c00238{height:1122.666667pt;}
.w1_c00238{width:668.000000pt;}
.w0_c00238{width:793.333333pt;}
.x0_c00238{left:0.000000pt;}
.x4_c00238{left:57.297187pt;}
.x38_c00238{left:58.304787pt;}
.x68_c00238{left:59.263987pt;}
.x1_c00238{left:62.666667pt;}
.x5_c00238{left:86.860787pt;}
.x2c_c00238{left:96.215187pt;}
.x63_c00238{left:97.939987pt;}
.x42_c00238{left:99.167587pt;}
.x12_c00238{left:106.167987pt;}
.x47_c00238{left:107.153587pt;}
.x2d_c00238{left:116.230787pt;}
.x60_c00238{left:117.559587pt;}
.x33_c00238{left:125.800787pt;}
.x69_c00238{left:126.786387pt;}
.x1d_c00238{left:134.534787pt;}
.x36_c00238{left:135.612787pt;}
.x13_c00238{left:145.473187pt;}
.x34_c00238{left:154.823187pt;}
.x48_c00238{left:156.081587pt;}
.x6_c00238{left:165.127987pt;}
.x55_c00238{left:166.364387pt;}
.x23_c00238{left:174.306387pt;}
.x1e_c00238{left:175.243587pt;}
.x14_c00238{left:184.373587pt;}
.x35_c00238{left:194.264787pt;}
.x49_c00238{left:195.853187pt;}
.x7_c00238{left:204.965587pt;}
.x15_c00238{left:213.822787pt;}
.x4a_c00238{left:214.839187pt;}
.x3f_c00238{left:223.929587pt;}
.x8_c00238{left:233.847187pt;}
.x61_c00238{left:235.131987pt;}
.x29_c00238{left:244.565587pt;}
.x51_c00238{left:255.072787pt;}
.x1f_c00238{left:263.014787pt;}
.x4b_c00238{left:263.965187pt;}
.x16_c00238{left:273.152387pt;}
.x56_c00238{left:274.397587pt;}
.x2e_c00238{left:282.783987pt;}
.x43_c00238{left:284.209587pt;}
.x3_c00238{left:286.541587pt;}
.x59_c00238{left:293.308787pt;}
.x64_c00238{left:296.212787pt;}
.x9_c00238{left:302.271587pt;}
.x4c_c00238{left:303.807187pt;}
.x44_c00238{left:321.121187pt;}
.x3a_c00238{left:322.410387pt;}
.x17_c00238{left:331.271987pt;}
.x20_c00238{left:332.363187pt;}
.x5a_c00238{left:333.331187pt;}
.x2a_c00238{left:341.097187pt;}
.x5d_c00238{left:343.411587pt;}
.x3b_c00238{left:351.723187pt;}
.x5b_c00238{left:352.911187pt;}
.x2f_c00238{left:361.504387pt;}
.x65_c00238{left:362.780387pt;}
.x24_c00238{left:371.241587pt;}
.x3c_c00238{left:372.297587pt;}
.xa_c00238{left:380.983187pt;}
.x30_c00238{left:390.680787pt;}
.x3d_c00238{left:391.820387pt;}
.x25_c00238{left:399.383987pt;}
.x4d_c00238{left:401.451987pt;}
.x18_c00238{left:408.896787pt;}
.x39_c00238{left:410.295987pt;}
.x2b_c00238{left:419.861587pt;}
.x52_c00238{left:420.965987pt;}
.x21_c00238{left:429.220387pt;}
.x5c_c00238{left:430.852787pt;}
.xb_c00238{left:438.724387pt;}
.x26_c00238{left:440.409587pt;}
.x19_c00238{left:448.470387pt;}
.x4e_c00238{left:450.269987pt;}
.x45_c00238{left:452.082787pt;}
.x27_c00238{left:459.377987pt;}
.x62_c00238{left:460.381187pt;}
.x22_c00238{left:469.242787pt;}
.x66_c00238{left:470.197587pt;}
.x4f_c00238{left:477.981187pt;}
.xc_c00238{left:478.887587pt;}
.x46_c00238{left:481.545187pt;}
.x40_c00238{left:489.821587pt;}
.x5e_c00238{left:499.017587pt;}
.xd_c00238{left:507.725187pt;}
.x57_c00238{left:508.855987pt;}
.x1a_c00238{left:517.721987pt;}
.x3e_c00238{left:519.169587pt;}
.xe_c00238{left:527.797987pt;}
.x58_c00238{left:528.774787pt;}
.x31_c00238{left:537.310787pt;}
.x53_c00238{left:538.925587pt;}
.xf_c00238{left:547.166787pt;}
.x28_c00238{left:555.280387pt;}
.x1b_c00238{left:556.573987pt;}
.x50_c00238{left:566.658787pt;}
.x54_c00238{left:567.666387pt;}
.x2_c00238{left:576.281587pt;}
.x32_c00238{left:586.735987pt;}
.x67_c00238{left:588.293587pt;}
.x10_c00238{left:596.275187pt;}
.x5f_c00238{left:597.234387pt;}
.x37_c00238{left:606.386387pt;}
.x1c_c00238{left:616.097187pt;}
.x11_c00238{left:625.755187pt;}
.x41_c00238{left:635.540787pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a66adb2875e73ddc27b83ff4.woff2')format("woff");}.ff1_c00239{font-family:ff1_c00239;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00239;src:url('chunks/assets/font_6a502850563c430091e977a8.woff2')format("woff");}.ff2_c00239{font-family:ff2_c00239;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00239;src:url('chunks/assets/font_56098e1100cfc646a8d1e329.woff2')format("woff");}.ff3_c00239{font-family:ff3_c00239;line-height:0.666000;font-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_c00239{transform:matrix(0.114286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114286,0.000000,0.000000,0.250000,0,0);}
.md0_c00239{transform:matrix(0.129141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129141,0.000000,0.000000,0.250000,0,0);}
.md1_c00239{transform:matrix(0.142450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142450,0.000000,0.000000,0.250000,0,0);}
.m76_c00239{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00239{transform:matrix(0.204066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204066,0.000000,0.000000,0.250000,0,0);}
.m77_c00239{transform:matrix(0.204286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204286,0.000000,0.000000,0.250000,0,0);}
.m89_c00239{transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);}
.m8_c00239{transform:matrix(0.208467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208467,0.000000,0.000000,0.250000,0,0);}
.m75_c00239{transform:matrix(0.209524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209524,0.000000,0.000000,0.250000,0,0);}
.md6_c00239{transform:matrix(0.220701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220701,0.000000,0.000000,0.250000,0,0);}
.m6a_c00239{transform:matrix(0.230731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230731,0.000000,0.000000,0.250000,0,0);}
.m87_c00239{transform:matrix(0.236309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236309,0.000000,0.000000,0.250000,0,0);}
.m5b_c00239{transform:matrix(0.238513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238513,0.000000,0.000000,0.250000,0,0);}
.mc3_c00239{transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);}
.m25_c00239{transform:matrix(0.241006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241006,0.000000,0.000000,0.250000,0,0);}
.m93_c00239{transform:matrix(0.241545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241545,0.000000,0.000000,0.250000,0,0);}
.ma1_c00239{transform:matrix(0.245974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245974,0.000000,0.000000,0.250000,0,0);}
.m95_c00239{transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);}
.m0_c00239{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00239{transform:matrix(0.251962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251962,0.000000,0.000000,0.250000,0,0);}
.mc_c00239{transform:matrix(0.253545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253545,0.000000,0.000000,0.250000,0,0);}
.maa_c00239{transform:matrix(0.253597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253597,0.000000,0.000000,0.250000,0,0);}
.m22_c00239{transform:matrix(0.255379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255379,0.000000,0.000000,0.250000,0,0);}
.m63_c00239{transform:matrix(0.256334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256334,0.000000,0.000000,0.250000,0,0);}
.mad_c00239{transform:matrix(0.256463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256463,0.000000,0.000000,0.250000,0,0);}
.m67_c00239{transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);}
.m85_c00239{transform:matrix(0.257195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257195,0.000000,0.000000,0.250000,0,0);}
.m13_c00239{transform:matrix(0.257985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257985,0.000000,0.000000,0.250000,0,0);}
.m3c_c00239{transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);}
.m78_c00239{transform:matrix(0.258241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258241,0.000000,0.000000,0.250000,0,0);}
.m8d_c00239{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.mda_c00239{transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);}
.m37_c00239{transform:matrix(0.259970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259970,0.000000,0.000000,0.250000,0,0);}
.m2b_c00239{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m4_c00239{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.m19_c00239{transform:matrix(0.262708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262708,0.000000,0.000000,0.250000,0,0);}
.mc2_c00239{transform:matrix(0.262939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262939,0.000000,0.000000,0.250000,0,0);}
.m10_c00239{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m44_c00239{transform:matrix(0.263916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263916,0.000000,0.000000,0.250000,0,0);}
.m1c_c00239{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m17_c00239{transform:matrix(0.265372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265372,0.000000,0.000000,0.250000,0,0);}
.mc6_c00239{transform:matrix(0.265602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265602,0.000000,0.000000,0.250000,0,0);}
.m8b_c00239{transform:matrix(0.265816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265816,0.000000,0.000000,0.250000,0,0);}
.m5f_c00239{transform:matrix(0.266106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266106,0.000000,0.000000,0.250000,0,0);}
.m6d_c00239{transform:matrix(0.266177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266177,0.000000,0.000000,0.250000,0,0);}
.m14_c00239{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m7_c00239{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.ma6_c00239{transform:matrix(0.268316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268316,0.000000,0.000000,0.250000,0,0);}
.mdc_c00239{transform:matrix(0.268484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268484,0.000000,0.000000,0.250000,0,0);}
.ma7_c00239{transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);}
.m99_c00239{transform:matrix(0.270180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270180,0.000000,0.000000,0.250000,0,0);}
.m6f_c00239{transform:matrix(0.270227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270227,0.000000,0.000000,0.250000,0,0);}
.m98_c00239{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m2_c00239{transform:matrix(0.271186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271186,0.000000,0.000000,0.250000,0,0);}
.m79_c00239{transform:matrix(0.271197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271197,0.000000,0.000000,0.250000,0,0);}
.m65_c00239{transform:matrix(0.271476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271476,0.000000,0.000000,0.250000,0,0);}
.m23_c00239{transform:matrix(0.271712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271712,0.000000,0.000000,0.250000,0,0);}
.mab_c00239{transform:matrix(0.272544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272544,0.000000,0.000000,0.250000,0,0);}
.mdd_c00239{transform:matrix(0.272844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272844,0.000000,0.000000,0.250000,0,0);}
.m6e_c00239{transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);}
.mc8_c00239{transform:matrix(0.272943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272943,0.000000,0.000000,0.250000,0,0);}
.m1_c00239{transform:matrix(0.273795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273795,0.000000,0.000000,0.250000,0,0);}
.m30_c00239{transform:matrix(0.274035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274035,0.000000,0.000000,0.250000,0,0);}
.mbb_c00239{transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);}
.m9a_c00239{transform:matrix(0.274205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274205,0.000000,0.000000,0.250000,0,0);}
.m82_c00239{transform:matrix(0.275040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275040,0.000000,0.000000,0.250000,0,0);}
.m62_c00239{transform:matrix(0.275287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275287,0.000000,0.000000,0.250000,0,0);}
.m24_c00239{transform:matrix(0.276565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276565,0.000000,0.000000,0.250000,0,0);}
.mb8_c00239{transform:matrix(0.276607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276607,0.000000,0.000000,0.250000,0,0);}
.m31_c00239{transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);}
.mf_c00239{transform:matrix(0.277075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277075,0.000000,0.000000,0.250000,0,0);}
.m34_c00239{transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);}
.m49_c00239{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m81_c00239{transform:matrix(0.277421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277421,0.000000,0.000000,0.250000,0,0);}
.m4c_c00239{transform:matrix(0.277516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277516,0.000000,0.000000,0.250000,0,0);}
.m7f_c00239{transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);}
.m7b_c00239{transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);}
.mb7_c00239{transform:matrix(0.280116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280116,0.000000,0.000000,0.250000,0,0);}
.m2e_c00239{transform:matrix(0.280163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280163,0.000000,0.000000,0.250000,0,0);}
.m21_c00239{transform:matrix(0.280508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280508,0.000000,0.000000,0.250000,0,0);}
.m4b_c00239{transform:matrix(0.280981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280981,0.000000,0.000000,0.250000,0,0);}
.m35_c00239{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.m8c_c00239{transform:matrix(0.281630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281630,0.000000,0.000000,0.250000,0,0);}
.m3e_c00239{transform:matrix(0.282198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282198,0.000000,0.000000,0.250000,0,0);}
.mcf_c00239{transform:matrix(0.282913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282913,0.000000,0.000000,0.250000,0,0);}
.m57_c00239{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.md7_c00239{transform:matrix(0.283967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283967,0.000000,0.000000,0.250000,0,0);}
.mac_c00239{transform:matrix(0.285030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285030,0.000000,0.000000,0.250000,0,0);}
.m1e_c00239{transform:matrix(0.285539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285539,0.000000,0.000000,0.250000,0,0);}
.m47_c00239{transform:matrix(0.285563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285563,0.000000,0.000000,0.250000,0,0);}
.m12_c00239{transform:matrix(0.285774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285774,0.000000,0.000000,0.250000,0,0);}
.mc7_c00239{transform:matrix(0.286152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286152,0.000000,0.000000,0.250000,0,0);}
.m60_c00239{transform:matrix(0.286181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286181,0.000000,0.000000,0.250000,0,0);}
.ma8_c00239{transform:matrix(0.286703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286703,0.000000,0.000000,0.250000,0,0);}
.m9e_c00239{transform:matrix(0.286783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286783,0.000000,0.000000,0.250000,0,0);}
.m9_c00239{transform:matrix(0.286895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286895,0.000000,0.000000,0.250000,0,0);}
.md9_c00239{transform:matrix(0.287876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287876,0.000000,0.000000,0.250000,0,0);}
.mb1_c00239{transform:matrix(0.288441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288441,0.000000,0.000000,0.250000,0,0);}
.m33_c00239{transform:matrix(0.288855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288855,0.000000,0.000000,0.250000,0,0);}
.m69_c00239{transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);}
.mb6_c00239{transform:matrix(0.289075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289075,0.000000,0.000000,0.250000,0,0);}
.mca_c00239{transform:matrix(0.289141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289141,0.000000,0.000000,0.250000,0,0);}
.m97_c00239{transform:matrix(0.289189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289189,0.000000,0.000000,0.250000,0,0);}
.m9c_c00239{transform:matrix(0.289520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289520,0.000000,0.000000,0.250000,0,0);}
.mc1_c00239{transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);}
.m4d_c00239{transform:matrix(0.291694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291694,0.000000,0.000000,0.250000,0,0);}
.m56_c00239{transform:matrix(0.291893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291893,0.000000,0.000000,0.250000,0,0);}
.m27_c00239{transform:matrix(0.291905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291905,0.000000,0.000000,0.250000,0,0);}
.mc9_c00239{transform:matrix(0.292116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292116,0.000000,0.000000,0.250000,0,0);}
.m9f_c00239{transform:matrix(0.292127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292127,0.000000,0.000000,0.250000,0,0);}
.m3_c00239{transform:matrix(0.292181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292181,0.000000,0.000000,0.250000,0,0);}
.m42_c00239{transform:matrix(0.293190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293190,0.000000,0.000000,0.250000,0,0);}
.m86_c00239{transform:matrix(0.293287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293287,0.000000,0.000000,0.250000,0,0);}
.m7a_c00239{transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);}
.mcb_c00239{transform:matrix(0.294033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294033,0.000000,0.000000,0.250000,0,0);}
.m50_c00239{transform:matrix(0.294391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294391,0.000000,0.000000,0.250000,0,0);}
.m80_c00239{transform:matrix(0.294443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294443,0.000000,0.000000,0.250000,0,0);}
.maf_c00239{transform:matrix(0.294793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294793,0.000000,0.000000,0.250000,0,0);}
.m71_c00239{transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);}
.mb0_c00239{transform:matrix(0.295060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295060,0.000000,0.000000,0.250000,0,0);}
.m11_c00239{transform:matrix(0.295598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295598,0.000000,0.000000,0.250000,0,0);}
.mc5_c00239{transform:matrix(0.295657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295657,0.000000,0.000000,0.250000,0,0);}
.mb_c00239{transform:matrix(0.296073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296073,0.000000,0.000000,0.250000,0,0);}
.m3f_c00239{transform:matrix(0.296141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296141,0.000000,0.000000,0.250000,0,0);}
.m2a_c00239{transform:matrix(0.296444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296444,0.000000,0.000000,0.250000,0,0);}
.m3d_c00239{transform:matrix(0.296805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296805,0.000000,0.000000,0.250000,0,0);}
.m84_c00239{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m48_c00239{transform:matrix(0.297479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297479,0.000000,0.000000,0.250000,0,0);}
.m83_c00239{transform:matrix(0.298571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298571,0.000000,0.000000,0.250000,0,0);}
.m9d_c00239{transform:matrix(0.299451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299451,0.000000,0.000000,0.250000,0,0);}
.m4a_c00239{transform:matrix(0.299710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299710,0.000000,0.000000,0.250000,0,0);}
.m29_c00239{transform:matrix(0.299812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299812,0.000000,0.000000,0.250000,0,0);}
.md8_c00239{transform:matrix(0.300181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300181,0.000000,0.000000,0.250000,0,0);}
.m18_c00239{transform:matrix(0.300614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300614,0.000000,0.000000,0.250000,0,0);}
.m52_c00239{transform:matrix(0.300619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300619,0.000000,0.000000,0.250000,0,0);}
.m1d_c00239{transform:matrix(0.301049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301049,0.000000,0.000000,0.250000,0,0);}
.mcd_c00239{transform:matrix(0.301851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301851,0.000000,0.000000,0.250000,0,0);}
.m2c_c00239{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.mb4_c00239{transform:matrix(0.302658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302658,0.000000,0.000000,0.250000,0,0);}
.mce_c00239{transform:matrix(0.303100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303100,0.000000,0.000000,0.250000,0,0);}
.md3_c00239{transform:matrix(0.303158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303158,0.000000,0.000000,0.250000,0,0);}
.m4f_c00239{transform:matrix(0.303517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303517,0.000000,0.000000,0.250000,0,0);}
.m73_c00239{transform:matrix(0.304821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304821,0.000000,0.000000,0.250000,0,0);}
.m72_c00239{transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);}
.m66_c00239{transform:matrix(0.305962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305962,0.000000,0.000000,0.250000,0,0);}
.m51_c00239{transform:matrix(0.306304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306304,0.000000,0.000000,0.250000,0,0);}
.m41_c00239{transform:matrix(0.306601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306601,0.000000,0.000000,0.250000,0,0);}
.m6c_c00239{transform:matrix(0.307343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307343,0.000000,0.000000,0.250000,0,0);}
.m28_c00239{transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);}
.m5c_c00239{transform:matrix(0.308319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308319,0.000000,0.000000,0.250000,0,0);}
.m5e_c00239{transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);}
.m7e_c00239{transform:matrix(0.309093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309093,0.000000,0.000000,0.250000,0,0);}
.ma4_c00239{transform:matrix(0.309291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309291,0.000000,0.000000,0.250000,0,0);}
.m46_c00239{transform:matrix(0.310202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310202,0.000000,0.000000,0.250000,0,0);}
.mbc_c00239{transform:matrix(0.310732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310732,0.000000,0.000000,0.250000,0,0);}
.m64_c00239{transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);}
.m1a_c00239{transform:matrix(0.311479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311479,0.000000,0.000000,0.250000,0,0);}
.ma2_c00239{transform:matrix(0.312047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312047,0.000000,0.000000,0.250000,0,0);}
.m55_c00239{transform:matrix(0.312139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312139,0.000000,0.000000,0.250000,0,0);}
.m1b_c00239{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.m5d_c00239{transform:matrix(0.312751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312751,0.000000,0.000000,0.250000,0,0);}
.m6b_c00239{transform:matrix(0.313434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313434,0.000000,0.000000,0.250000,0,0);}
.m94_c00239{transform:matrix(0.313920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313920,0.000000,0.000000,0.250000,0,0);}
.m2d_c00239{transform:matrix(0.314041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314041,0.000000,0.000000,0.250000,0,0);}
.m53_c00239{transform:matrix(0.314426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314426,0.000000,0.000000,0.250000,0,0);}
.mb3_c00239{transform:matrix(0.314528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314528,0.000000,0.000000,0.250000,0,0);}
.m74_c00239{transform:matrix(0.314904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314904,0.000000,0.000000,0.250000,0,0);}
.m59_c00239{transform:matrix(0.315597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315597,0.000000,0.000000,0.250000,0,0);}
.m7d_c00239{transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);}
.ma3_c00239{transform:matrix(0.316739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316739,0.000000,0.000000,0.250000,0,0);}
.m3b_c00239{transform:matrix(0.319176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319176,0.000000,0.000000,0.250000,0,0);}
.m36_c00239{transform:matrix(0.319290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319290,0.000000,0.000000,0.250000,0,0);}
.m61_c00239{transform:matrix(0.319500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00239{transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);}
.md4_c00239{transform:matrix(0.319886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319886,0.000000,0.000000,0.250000,0,0);}
.ma5_c00239{transform:matrix(0.321339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321339,0.000000,0.000000,0.250000,0,0);}
.m4e_c00239{transform:matrix(0.321835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321835,0.000000,0.000000,0.250000,0,0);}
.m32_c00239{transform:matrix(0.322881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322881,0.000000,0.000000,0.250000,0,0);}
.mae_c00239{transform:matrix(0.323354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323354,0.000000,0.000000,0.250000,0,0);}
.m8f_c00239{transform:matrix(0.323503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323503,0.000000,0.000000,0.250000,0,0);}
.mb2_c00239{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.mc0_c00239{transform:matrix(0.323918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323918,0.000000,0.000000,0.250000,0,0);}
.m90_c00239{transform:matrix(0.323962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323962,0.000000,0.000000,0.250000,0,0);}
.m1f_c00239{transform:matrix(0.324269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324269,0.000000,0.000000,0.250000,0,0);}
.m54_c00239{transform:matrix(0.324318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324318,0.000000,0.000000,0.250000,0,0);}
.m5a_c00239{transform:matrix(0.324566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324566,0.000000,0.000000,0.250000,0,0);}
.md5_c00239{transform:matrix(0.324732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324732,0.000000,0.000000,0.250000,0,0);}
.m40_c00239{transform:matrix(0.326313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326313,0.000000,0.000000,0.250000,0,0);}
.m45_c00239{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m6_c00239{transform:matrix(0.328208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328208,0.000000,0.000000,0.250000,0,0);}
.mba_c00239{transform:matrix(0.328711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328711,0.000000,0.000000,0.250000,0,0);}
.m7c_c00239{transform:matrix(0.328813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328813,0.000000,0.000000,0.250000,0,0);}
.mde_c00239{transform:matrix(0.329090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329090,0.000000,0.000000,0.250000,0,0);}
.ma_c00239{transform:matrix(0.329405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329405,0.000000,0.000000,0.250000,0,0);}
.m43_c00239{transform:matrix(0.329713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329713,0.000000,0.000000,0.250000,0,0);}
.m38_c00239{transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);}
.mdb_c00239{transform:matrix(0.331235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331235,0.000000,0.000000,0.250000,0,0);}
.mbd_c00239{transform:matrix(0.331244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331244,0.000000,0.000000,0.250000,0,0);}
.md2_c00239{transform:matrix(0.331631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331631,0.000000,0.000000,0.250000,0,0);}
.mcc_c00239{transform:matrix(0.332419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332419,0.000000,0.000000,0.250000,0,0);}
.m8a_c00239{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m15_c00239{transform:matrix(0.336349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336349,0.000000,0.000000,0.250000,0,0);}
.m39_c00239{transform:matrix(0.336475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336475,0.000000,0.000000,0.250000,0,0);}
.m26_c00239{transform:matrix(0.337455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337455,0.000000,0.000000,0.250000,0,0);}
.m20_c00239{transform:matrix(0.340489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340489,0.000000,0.000000,0.250000,0,0);}
.m16_c00239{transform:matrix(0.343069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343069,0.000000,0.000000,0.250000,0,0);}
.m91_c00239{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.mc4_c00239{transform:matrix(0.343338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343338,0.000000,0.000000,0.250000,0,0);}
.m92_c00239{transform:matrix(0.346142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346142,0.000000,0.000000,0.250000,0,0);}
.md_c00239{transform:matrix(0.347013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347013,0.000000,0.000000,0.250000,0,0);}
.m58_c00239{transform:matrix(0.348765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348765,0.000000,0.000000,0.250000,0,0);}
.mbf_c00239{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m3a_c00239{transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);}
.mbe_c00239{transform:matrix(0.349535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349535,0.000000,0.000000,0.250000,0,0);}
.mb9_c00239{transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);}
.m68_c00239{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.ma9_c00239{transform:matrix(0.356360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356360,0.000000,0.000000,0.250000,0,0);}
.me_c00239{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);}
.m5_c00239{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m70_c00239{transform:matrix(0.361597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361597,0.000000,0.000000,0.250000,0,0);}
.m96_c00239{transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);}
.m2f_c00239{transform:matrix(0.407787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407787,0.000000,0.000000,0.250000,0,0);}
.m9b_c00239{transform:matrix(0.412011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412011,0.000000,0.000000,0.250000,0,0);}
.v0_c00239{vertical-align:0.000000px;}
.lsd_c00239{letter-spacing:-2.952180px;}
.ls4_c00239{letter-spacing:-2.744280px;}
.lsa_c00239{letter-spacing:-2.375762px;}
.ls13_c00239{letter-spacing:-1.325095px;}
.ls12_c00239{letter-spacing:-0.721354px;}
.ls9_c00239{letter-spacing:-0.258746px;}
.lsc_c00239{letter-spacing:-0.250906px;}
.ls2_c00239{letter-spacing:0.000000px;}
.ls14_c00239{letter-spacing:0.258746px;}
.ls7_c00239{letter-spacing:0.533174px;}
.ls11_c00239{letter-spacing:1.599523px;}
.lsb_c00239{letter-spacing:1.685772px;}
.ls5_c00239{letter-spacing:2.030767px;}
.ls1_c00239{letter-spacing:2.211264px;}
.lse_c00239{letter-spacing:2.509056px;}
.ls0_c00239{letter-spacing:2.916778px;}
.ls10_c00239{letter-spacing:3.081434px;}
.ls8_c00239{letter-spacing:3.167683px;}
.ls3_c00239{letter-spacing:3.920400px;}
.ls6_c00239{letter-spacing:4.078810px;}
.lsf_c00239{letter-spacing:49.896198px;}
.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;}
}
.ws5_c00239{word-spacing:-22.111056px;}
.ws2_c00239{word-spacing:-21.287772px;}
.ws3_c00239{word-spacing:-21.201523px;}
.ws4_c00239{word-spacing:-19.860746px;}
.ws0_c00239{word-spacing:-19.602000px;}
.ws1_c00239{word-spacing:-19.343254px;}
.ws6_c00239{word-spacing:0.000000px;}
._3_c00239{width:2.133490px;}
._b_c00239{width:4.861296px;}
._12_c00239{width:6.037416px;}
._2_c00239{width:7.840008px;}
._5_c00239{width:9.173736px;}
._f_c00239{width:10.663488px;}
._a_c00239{width:12.623688px;}
._11_c00239{width:14.067187px;}
._7_c00239{width:17.092548px;}
._9_c00239{width:20.855736px;}
._10_c00239{width:22.267872px;}
._e_c00239{width:23.679216px;}
._1_c00239{width:25.090560px;}
._4_c00239{width:28.148472px;}
._6_c00239{width:31.284792px;}
._c_c00239{width:34.342704px;}
._0_c00239{width:36.036317px;}
._d_c00239{width:39.596040px;}
._8_c00239{width:41.085792px;}
.fc0_c00239{color:transparent;}
.fs0_c00239{font-size:27.720000px;}
.fs2_c00239{font-size:33.660000px;}
.fs7_c00239{font-size:39.600000px;}
.fs6_c00239{font-size:49.896198px;}
.fs8_c00239{font-size:60.192000px;}
.fs3_c00239{font-size:72.864000px;}
.fs1_c00239{font-size:78.408000px;}
.fs4_c00239{font-size:81.576198px;}
.fs5_c00239{font-size:84.348000px;}
.fs9_c00239{font-size:93.456198px;}
.y0_c00239{bottom:0.000000px;}
.y2_c00239{bottom:39.823785px;}
.y1_c00239{bottom:76.500000px;}
.y1e_c00239{bottom:158.509935px;}
.y1d_c00239{bottom:188.447535px;}
.y1c_c00239{bottom:221.236335px;}
.y1b_c00239{bottom:253.312335px;}
.y1a_c00239{bottom:285.739785px;}
.y19_c00239{bottom:318.889935px;}
.y18_c00239{bottom:318.892113px;}
.y17_c00239{bottom:350.960985px;}
.y16_c00239{bottom:383.036985px;}
.y15_c00239{bottom:415.117935px;}
.y14_c00239{bottom:447.545385px;}
.y13_c00239{bottom:479.269935px;}
.y12_c00239{bottom:511.345935px;}
.y11_c00239{bottom:543.060585px;}
.y20_c00239{bottom:553.752585px;}
.y10_c00239{bottom:575.497935px;}
.yf_c00239{bottom:604.722735px;}
.ye_c00239{bottom:636.793785px;}
.yd_c00239{bottom:698.094585px;}
.y1f_c00239{bottom:706.296735px;}
.yc_c00239{bottom:729.819135px;}
.yb_c00239{bottom:761.890185px;}
.ya_c00239{bottom:793.971135px;}
.y9_c00239{bottom:825.685785px;}
.y8_c00239{bottom:858.474585px;}
.y7_c00239{bottom:884.496735px;}
.y6_c00239{bottom:891.263385px;}
.y5_c00239{bottom:924.413535px;}
.y4_c00239{bottom:1011.370185px;}
.y3_c00239{bottom:1070.888985px;}
.h2_c00239{height:28.911094px;}
.h4_c00239{height:33.035449px;}
.h8_c00239{height:33.230868px;}
.h9_c00239{height:41.301563px;}
.h5_c00239{height:71.512031px;}
.h3_c00239{height:76.953164px;}
.h6_c00239{height:80.062577px;}
.h7_c00239{height:82.782949px;}
.ha_c00239{height:97.471894px;}
.h1_c00239{height:1110.000000px;}
.h0_c00239{height:1263.000000px;}
.w1_c00239{width:751.500000px;}
.w0_c00239{width:892.500000px;}
.x0_c00239{left:0.000000px;}
.x2_c00239{left:42.228885px;}
.x5_c00239{left:62.612985px;}
.x69_c00239{left:63.860385px;}
.x1_c00239{left:70.500000px;}
.x6b_c00239{left:74.146485px;}
.x13_c00239{left:95.233485px;}
.x5c_c00239{left:96.990735px;}
.x14_c00239{left:106.410585px;}
.x40_c00239{left:117.290685px;}
.x6_c00239{left:128.522235px;}
.x4e_c00239{left:130.665585px;}
.x31_c00239{left:138.204435px;}
.x15_c00239{left:139.818135px;}
.x4a_c00239{left:141.639735px;}
.x2a_c00239{left:151.064535px;}
.x39_c00239{left:152.866335px;}
.x22_c00239{left:161.513985px;}
.x6a_c00239{left:162.904935px;}
.x16_c00239{left:171.661485px;}
.x3a_c00239{left:173.567235px;}
.x66_c00239{left:174.829485px;}
.x32_c00239{left:183.759285px;}
.x57_c00239{left:184.863135px;}
.x7_c00239{left:195.718485px;}
.x23_c00239{left:205.366035px;}
.x41_c00239{left:215.097735px;}
.x58_c00239{left:216.414435px;}
.x60_c00239{left:217.478685px;}
.x8_c00239{left:227.769735px;}
.x61_c00239{left:238.738935px;}
.x4b_c00239{left:239.912085px;}
.x5d_c00239{left:248.688435px;}
.x17_c00239{left:249.916035px;}
.x9_c00239{left:261.617835px;}
.x2b_c00239{left:271.686135px;}
.x46_c00239{left:273.057285px;}
.x18_c00239{left:283.373085px;}
.x62_c00239{left:295.490685px;}
.x36_c00239{left:304.252185px;}
.x47_c00239{left:306.504435px;}
.x3f_c00239{left:315.805485px;}
.x67_c00239{left:317.221185px;}
.x42_c00239{left:318.235935px;}
.xa_c00239{left:325.992585px;}
.x5e_c00239{left:327.259785px;}
.x4_c00239{left:331.957335px;}
.x24_c00239{left:337.941885px;}
.x63_c00239{left:338.991285px;}
.x25_c00239{left:349.158585px;}
.x53_c00239{left:360.167385px;}
.x33_c00239{left:371.082135px;}
.x5f_c00239{left:372.156285px;}
.x19_c00239{left:381.650385px;}
.x64_c00239{left:382.828485px;}
.x26_c00239{left:391.891935px;}
.x2c_c00239{left:393.550185px;}
.x6c_c00239{left:403.009635px;}
.x48_c00239{left:404.598585px;}
.x34_c00239{left:413.701635px;}
.xb_c00239{left:415.280685px;}
.x54_c00239{left:425.106435px;}
.x43_c00239{left:426.977535px;}
.x1a_c00239{left:437.387385px;}
.xc_c00239{left:447.128985px;}
.x3b_c00239{left:448.732785px;}
.x2d_c00239{left:458.979285px;}
.xd_c00239{left:469.626735px;}
.x1b_c00239{left:471.225585px;}
.x51_c00239{left:481.071135px;}
.x4c_c00239{left:483.605535px;}
.x2e_c00239{left:492.045285px;}
.x1c_c00239{left:493.312485px;}
.x49_c00239{left:503.628285px;}
.x37_c00239{left:514.018335px;}
.x55_c00239{left:515.042985px;}
.x59_c00239{left:517.270485px;}
.x5a_c00239{left:520.710735px;}
.x3c_c00239{left:523.789635px;}
.x1d_c00239{left:526.175535px;}
.xe_c00239{left:537.105135px;}
.x44_c00239{left:546.792285px;}
.x5b_c00239{left:548.504985px;}
.x4f_c00239{left:558.588135px;}
.xf_c00239{left:569.601885px;}
.x45_c00239{left:579.462285px;}
.x56_c00239{left:582.224385px;}
.x50_c00239{left:589.406835px;}
.x27_c00239{left:591.337335px;}
.x38_c00239{left:600.757185px;}
.x1e_c00239{left:602.380785px;}
.x2f_c00239{left:612.899535px;}
.x1f_c00239{left:624.136035px;}
.x10_c00239{left:627.393135px;}
.x35_c00239{left:634.803285px;}
.x4d_c00239{left:636.233835px;}
.x30_c00239{left:646.584285px;}
.x3_c00239{left:648.316785px;}
.x11_c00239{left:656.929785px;}
.x68_c00239{left:657.959385px;}
.x20_c00239{left:667.968285px;}
.x28_c00239{left:670.255185px;}
.x21_c00239{left:674.017185px;}
.x52_c00239{left:677.794035px;}
.x3d_c00239{left:678.823635px;}
.x12_c00239{left:680.075985px;}
.x29_c00239{left:689.837385px;}
.x3e_c00239{left:700.727385px;}
.x65_c00239{left:711.775785px;}
.x6e_c00239{left:743.950785px;}
.x6d_c00239{left:745.272435px;}
@media print{
.v0_c00239{vertical-align:0.000000pt;}
.lsd_c00239{letter-spacing:-2.624160pt;}
.ls4_c00239{letter-spacing:-2.439360pt;}
.lsa_c00239{letter-spacing:-2.111789pt;}
.ls13_c00239{letter-spacing:-1.177862pt;}
.ls12_c00239{letter-spacing:-0.641203pt;}
.ls9_c00239{letter-spacing:-0.229997pt;}
.lsc_c00239{letter-spacing:-0.223027pt;}
.ls2_c00239{letter-spacing:0.000000pt;}
.ls14_c00239{letter-spacing:0.229997pt;}
.ls7_c00239{letter-spacing:0.473933pt;}
.ls11_c00239{letter-spacing:1.421798pt;}
.lsb_c00239{letter-spacing:1.498464pt;}
.ls5_c00239{letter-spacing:1.805126pt;}
.ls1_c00239{letter-spacing:1.965568pt;}
.lse_c00239{letter-spacing:2.230272pt;}
.ls0_c00239{letter-spacing:2.592691pt;}
.ls10_c00239{letter-spacing:2.739053pt;}
.ls8_c00239{letter-spacing:2.815718pt;}
.ls3_c00239{letter-spacing:3.484800pt;}
.ls6_c00239{letter-spacing:3.625609pt;}
.lsf_c00239{letter-spacing:44.352176pt;}
.ws5_c00239{word-spacing:-19.654272pt;}
.ws2_c00239{word-spacing:-18.922464pt;}
.ws3_c00239{word-spacing:-18.845798pt;}
.ws4_c00239{word-spacing:-17.653997pt;}
.ws0_c00239{word-spacing:-17.424000pt;}
.ws1_c00239{word-spacing:-17.194003pt;}
.ws6_c00239{word-spacing:0.000000pt;}
._3_c00239{width:1.896435pt;}
._b_c00239{width:4.321152pt;}
._12_c00239{width:5.366592pt;}
._2_c00239{width:6.968896pt;}
._5_c00239{width:8.154432pt;}
._f_c00239{width:9.478656pt;}
._a_c00239{width:11.221056pt;}
._11_c00239{width:12.504166pt;}
._7_c00239{width:15.193376pt;}
._9_c00239{width:18.538432pt;}
._10_c00239{width:19.793664pt;}
._e_c00239{width:21.048192pt;}
._1_c00239{width:22.302720pt;}
._4_c00239{width:25.020864pt;}
._6_c00239{width:27.808704pt;}
._c_c00239{width:30.526848pt;}
._0_c00239{width:32.032282pt;}
._d_c00239{width:35.196480pt;}
._8_c00239{width:36.520704pt;}
.fs0_c00239{font-size:24.640000pt;}
.fs2_c00239{font-size:29.920000pt;}
.fs7_c00239{font-size:35.200000pt;}
.fs6_c00239{font-size:44.352176pt;}
.fs8_c00239{font-size:53.504000pt;}
.fs3_c00239{font-size:64.768000pt;}
.fs1_c00239{font-size:69.696000pt;}
.fs4_c00239{font-size:72.512176pt;}
.fs5_c00239{font-size:74.976000pt;}
.fs9_c00239{font-size:83.072176pt;}
.y0_c00239{bottom:0.000000pt;}
.y2_c00239{bottom:35.398920pt;}
.y1_c00239{bottom:68.000000pt;}
.y1e_c00239{bottom:140.897720pt;}
.y1d_c00239{bottom:167.508920pt;}
.y1c_c00239{bottom:196.654520pt;}
.y1b_c00239{bottom:225.166520pt;}
.y1a_c00239{bottom:253.990920pt;}
.y19_c00239{bottom:283.457720pt;}
.y18_c00239{bottom:283.459656pt;}
.y17_c00239{bottom:311.965320pt;}
.y16_c00239{bottom:340.477320pt;}
.y15_c00239{bottom:368.993720pt;}
.y14_c00239{bottom:397.818120pt;}
.y13_c00239{bottom:426.017720pt;}
.y12_c00239{bottom:454.529720pt;}
.y11_c00239{bottom:482.720520pt;}
.y20_c00239{bottom:492.224520pt;}
.y10_c00239{bottom:511.553720pt;}
.yf_c00239{bottom:537.531320pt;}
.ye_c00239{bottom:566.038920pt;}
.yd_c00239{bottom:620.528520pt;}
.y1f_c00239{bottom:627.819320pt;}
.yc_c00239{bottom:648.728120pt;}
.yb_c00239{bottom:677.235720pt;}
.ya_c00239{bottom:705.752120pt;}
.y9_c00239{bottom:733.942920pt;}
.y8_c00239{bottom:763.088520pt;}
.y7_c00239{bottom:786.219320pt;}
.y6_c00239{bottom:792.234120pt;}
.y5_c00239{bottom:821.700920pt;}
.y4_c00239{bottom:898.995720pt;}
.y3_c00239{bottom:951.901320pt;}
.h2_c00239{height:25.698750pt;}
.h4_c00239{height:29.364844pt;}
.h8_c00239{height:29.538549pt;}
.h9_c00239{height:36.712500pt;}
.h5_c00239{height:63.566250pt;}
.h3_c00239{height:68.402813pt;}
.h6_c00239{height:71.166735pt;}
.h7_c00239{height:73.584844pt;}
.ha_c00239{height:86.641684pt;}
.h1_c00239{height:986.666667pt;}
.h0_c00239{height:1122.666667pt;}
.w1_c00239{width:668.000000pt;}
.w0_c00239{width:793.333333pt;}
.x0_c00239{left:0.000000pt;}
.x2_c00239{left:37.536787pt;}
.x5_c00239{left:55.655987pt;}
.x69_c00239{left:56.764787pt;}
.x1_c00239{left:62.666667pt;}
.x6b_c00239{left:65.907987pt;}
.x13_c00239{left:84.651987pt;}
.x5c_c00239{left:86.213987pt;}
.x14_c00239{left:94.587187pt;}
.x40_c00239{left:104.258387pt;}
.x6_c00239{left:114.241987pt;}
.x4e_c00239{left:116.147187pt;}
.x31_c00239{left:122.848387pt;}
.x15_c00239{left:124.282787pt;}
.x4a_c00239{left:125.901987pt;}
.x2a_c00239{left:134.279587pt;}
.x39_c00239{left:135.881187pt;}
.x22_c00239{left:143.567987pt;}
.x6a_c00239{left:144.804387pt;}
.x16_c00239{left:152.587987pt;}
.x3a_c00239{left:154.281987pt;}
.x66_c00239{left:155.403987pt;}
.x32_c00239{left:163.341587pt;}
.x57_c00239{left:164.322787pt;}
.x7_c00239{left:173.971987pt;}
.x23_c00239{left:182.547587pt;}
.x41_c00239{left:191.197987pt;}
.x58_c00239{left:192.368387pt;}
.x60_c00239{left:193.314387pt;}
.x8_c00239{left:202.461987pt;}
.x61_c00239{left:212.212387pt;}
.x4b_c00239{left:213.255187pt;}
.x5d_c00239{left:221.056387pt;}
.x17_c00239{left:222.147587pt;}
.x9_c00239{left:232.549187pt;}
.x2b_c00239{left:241.498787pt;}
.x46_c00239{left:242.717587pt;}
.x18_c00239{left:251.887187pt;}
.x62_c00239{left:262.658387pt;}
.x36_c00239{left:270.446387pt;}
.x47_c00239{left:272.448387pt;}
.x3f_c00239{left:280.715987pt;}
.x67_c00239{left:281.974387pt;}
.x42_c00239{left:282.876387pt;}
.xa_c00239{left:289.771187pt;}
.x5e_c00239{left:290.897587pt;}
.x4_c00239{left:295.073187pt;}
.x24_c00239{left:300.392787pt;}
.x63_c00239{left:301.325587pt;}
.x25_c00239{left:310.363187pt;}
.x53_c00239{left:320.148787pt;}
.x33_c00239{left:329.850787pt;}
.x5f_c00239{left:330.805587pt;}
.x19_c00239{left:339.244787pt;}
.x64_c00239{left:340.291987pt;}
.x26_c00239{left:348.348387pt;}
.x2c_c00239{left:349.822387pt;}
.x6c_c00239{left:358.230787pt;}
.x48_c00239{left:359.643187pt;}
.x34_c00239{left:367.734787pt;}
.xb_c00239{left:369.138387pt;}
.x54_c00239{left:377.872387pt;}
.x43_c00239{left:379.535587pt;}
.x1a_c00239{left:388.788787pt;}
.xc_c00239{left:397.447987pt;}
.x3b_c00239{left:398.873587pt;}
.x2d_c00239{left:407.981587pt;}
.xd_c00239{left:417.445987pt;}
.x1b_c00239{left:418.867187pt;}
.x51_c00239{left:427.618787pt;}
.x4c_c00239{left:429.871587pt;}
.x2e_c00239{left:437.373587pt;}
.x1c_c00239{left:438.499987pt;}
.x49_c00239{left:447.669587pt;}
.x37_c00239{left:456.905187pt;}
.x55_c00239{left:457.815987pt;}
.x59_c00239{left:459.795987pt;}
.x5a_c00239{left:462.853987pt;}
.x3c_c00239{left:465.590787pt;}
.x1d_c00239{left:467.711587pt;}
.xe_c00239{left:477.426787pt;}
.x44_c00239{left:486.037587pt;}
.x5b_c00239{left:487.559987pt;}
.x4f_c00239{left:496.522787pt;}
.xf_c00239{left:506.312787pt;}
.x45_c00239{left:515.077587pt;}
.x56_c00239{left:517.532787pt;}
.x50_c00239{left:523.917187pt;}
.x27_c00239{left:525.633187pt;}
.x38_c00239{left:534.006387pt;}
.x1e_c00239{left:535.449587pt;}
.x2f_c00239{left:544.799587pt;}
.x1f_c00239{left:554.787587pt;}
.x10_c00239{left:557.682787pt;}
.x35_c00239{left:564.269587pt;}
.x4d_c00239{left:565.541187pt;}
.x30_c00239{left:574.741587pt;}
.x3_c00239{left:576.281587pt;}
.x11_c00239{left:583.937587pt;}
.x68_c00239{left:584.852787pt;}
.x20_c00239{left:593.749587pt;}
.x28_c00239{left:595.782387pt;}
.x21_c00239{left:599.126387pt;}
.x52_c00239{left:602.483587pt;}
.x3d_c00239{left:603.398787pt;}
.x12_c00239{left:604.511987pt;}
.x29_c00239{left:613.188787pt;}
.x3e_c00239{left:622.868787pt;}
.x65_c00239{left:632.689587pt;}
.x6e_c00239{left:661.289587pt;}
.x6d_c00239{left:662.464387pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c45b3824481844be1c1825d4.woff2')format("woff");}.ff1_c00240{font-family:ff1_c00240;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00240;src:url('chunks/assets/font_6269812a0504489932e83fcc.woff2')format("woff");}.ff2_c00240{font-family:ff2_c00240;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00240;src:url('chunks/assets/font_4655761dfdf085016e05fd64.woff2')format("woff");}.ff3_c00240{font-family:ff3_c00240;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00240;src:url('chunks/assets/font_8c94bd4194364833e49ede5d.woff2')format("woff");}.ff4_c00240{font-family:ff4_c00240;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00240;src:url('chunks/assets/font_2de33902ff87b1c72e6f15e3.woff2')format("woff");}.ff5_c00240{font-family:ff5_c00240;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m28_c00240{transform:matrix(0.090626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090626,0.000000,0.000000,0.250000,0,0);}
.m93_c00240{transform:matrix(0.103390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103390,0.000000,0.000000,0.250000,0,0);}
.m38_c00240{transform:matrix(0.116666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116666,0.000000,0.000000,0.250000,0,0);}
.m64_c00240{transform:matrix(0.142858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142858,0.000000,0.000000,0.250000,0,0);}
.m2e_c00240{transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);}
.m65_c00240{transform:matrix(0.160715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160715,0.000000,0.000000,0.250000,0,0);}
.m7d_c00240{transform:matrix(0.163600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163600,0.000000,0.000000,0.250000,0,0);}
.m30_c00240{transform:matrix(0.165624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165624,0.000000,0.000000,0.250000,0,0);}
.m4c_c00240{transform:matrix(0.171004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171004,0.000000,0.000000,0.250000,0,0);}
.m31_c00240{transform:matrix(0.174999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174999,0.000000,0.000000,0.250000,0,0);}
.m85_c00240{transform:matrix(0.176521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176521,0.000000,0.000000,0.250000,0,0);}
.m23_c00240{transform:matrix(0.178125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178125,0.000000,0.000000,0.250000,0,0);}
.m2f_c00240{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m29_c00240{transform:matrix(0.184375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184375,0.000000,0.000000,0.250000,0,0);}
.ma2_c00240{transform:matrix(0.200163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200163,0.000000,0.000000,0.250000,0,0);}
.m67_c00240{transform:matrix(0.211905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211905,0.000000,0.000000,0.250000,0,0);}
.m24_c00240{transform:matrix(0.212056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212056,0.000000,0.000000,0.250000,0,0);}
.m66_c00240{transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);}
.m42_c00240{transform:matrix(0.222367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222367,0.000000,0.000000,0.250000,0,0);}
.m35_c00240{transform:matrix(0.247349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247349,0.000000,0.000000,0.250000,0,0);}
.m0_c00240{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00240{transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);}
.m20_c00240{transform:matrix(0.250225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250225,0.000000,0.000000,0.250000,0,0);}
.m57_c00240{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.m15_c00240{transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);}
.m18_c00240{transform:matrix(0.252497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252497,0.000000,0.000000,0.250000,0,0);}
.md_c00240{transform:matrix(0.253184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253184,0.000000,0.000000,0.250000,0,0);}
.m8b_c00240{transform:matrix(0.254289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254289,0.000000,0.000000,0.250000,0,0);}
.m12_c00240{transform:matrix(0.255992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255992,0.000000,0.000000,0.250000,0,0);}
.m97_c00240{transform:matrix(0.256424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256424,0.000000,0.000000,0.250000,0,0);}
.m19_c00240{transform:matrix(0.256553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256553,0.000000,0.000000,0.250000,0,0);}
.m48_c00240{transform:matrix(0.257786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257786,0.000000,0.000000,0.250000,0,0);}
.m86_c00240{transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);}
.m83_c00240{transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);}
.m99_c00240{transform:matrix(0.260152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260152,0.000000,0.000000,0.250000,0,0);}
.m5e_c00240{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.mf_c00240{transform:matrix(0.261539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261539,0.000000,0.000000,0.250000,0,0);}
.m76_c00240{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.m58_c00240{transform:matrix(0.262649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262649,0.000000,0.000000,0.250000,0,0);}
.m5_c00240{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m7_c00240{transform:matrix(0.263482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263482,0.000000,0.000000,0.250000,0,0);}
.m1f_c00240{transform:matrix(0.264362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264362,0.000000,0.000000,0.250000,0,0);}
.m13_c00240{transform:matrix(0.264758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264758,0.000000,0.000000,0.250000,0,0);}
.m33_c00240{transform:matrix(0.265156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265156,0.000000,0.000000,0.250000,0,0);}
.m3d_c00240{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m8a_c00240{transform:matrix(0.266686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266686,0.000000,0.000000,0.250000,0,0);}
.m98_c00240{transform:matrix(0.267664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267664,0.000000,0.000000,0.250000,0,0);}
.m16_c00240{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m4a_c00240{transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);}
.m7f_c00240{transform:matrix(0.268884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268884,0.000000,0.000000,0.250000,0,0);}
.m3b_c00240{transform:matrix(0.269057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269057,0.000000,0.000000,0.250000,0,0);}
.m2_c00240{transform:matrix(0.269857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269857,0.000000,0.000000,0.250000,0,0);}
.m89_c00240{transform:matrix(0.270646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270646,0.000000,0.000000,0.250000,0,0);}
.m1b_c00240{transform:matrix(0.271993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271993,0.000000,0.000000,0.250000,0,0);}
.m34_c00240{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m4e_c00240{transform:matrix(0.272544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272544,0.000000,0.000000,0.250000,0,0);}
.m6d_c00240{transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);}
.mad_c00240{transform:matrix(0.272905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272905,0.000000,0.000000,0.250000,0,0);}
.mab_c00240{transform:matrix(0.273253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273253,0.000000,0.000000,0.250000,0,0);}
.m40_c00240{transform:matrix(0.273532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273532,0.000000,0.000000,0.250000,0,0);}
.m7c_c00240{transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);}
.m51_c00240{transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);}
.m10_c00240{transform:matrix(0.274766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274766,0.000000,0.000000,0.250000,0,0);}
.m27_c00240{transform:matrix(0.275105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275105,0.000000,0.000000,0.250000,0,0);}
.m84_c00240{transform:matrix(0.275408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275408,0.000000,0.000000,0.250000,0,0);}
.me_c00240{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m5d_c00240{transform:matrix(0.275570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275570,0.000000,0.000000,0.250000,0,0);}
.m45_c00240{transform:matrix(0.276376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276376,0.000000,0.000000,0.250000,0,0);}
.m9c_c00240{transform:matrix(0.276535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276535,0.000000,0.000000,0.250000,0,0);}
.m7b_c00240{transform:matrix(0.276607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276607,0.000000,0.000000,0.250000,0,0);}
.m1c_c00240{transform:matrix(0.276906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276906,0.000000,0.000000,0.250000,0,0);}
.maa_c00240{transform:matrix(0.277433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277433,0.000000,0.000000,0.250000,0,0);}
.ma5_c00240{transform:matrix(0.278468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278468,0.000000,0.000000,0.250000,0,0);}
.m75_c00240{transform:matrix(0.278872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278872,0.000000,0.000000,0.250000,0,0);}
.m70_c00240{transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);}
.m3f_c00240{transform:matrix(0.279568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279568,0.000000,0.000000,0.250000,0,0);}
.m73_c00240{transform:matrix(0.281290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281290,0.000000,0.000000,0.250000,0,0);}
.m26_c00240{transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);}
.m2c_c00240{transform:matrix(0.282254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282254,0.000000,0.000000,0.250000,0,0);}
.m2d_c00240{transform:matrix(0.283330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283330,0.000000,0.000000,0.250000,0,0);}
.m78_c00240{transform:matrix(0.283458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283458,0.000000,0.000000,0.250000,0,0);}
.m6b_c00240{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m53_c00240{transform:matrix(0.283775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283775,0.000000,0.000000,0.250000,0,0);}
.m46_c00240{transform:matrix(0.283907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283907,0.000000,0.000000,0.250000,0,0);}
.ma_c00240{transform:matrix(0.283914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283914,0.000000,0.000000,0.250000,0,0);}
.m87_c00240{transform:matrix(0.284351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284351,0.000000,0.000000,0.250000,0,0);}
.m6c_c00240{transform:matrix(0.286238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286238,0.000000,0.000000,0.250000,0,0);}
.m61_c00240{transform:matrix(0.286566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286566,0.000000,0.000000,0.250000,0,0);}
.m69_c00240{transform:matrix(0.287586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287586,0.000000,0.000000,0.250000,0,0);}
.m62_c00240{transform:matrix(0.289843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289843,0.000000,0.000000,0.250000,0,0);}
.m43_c00240{transform:matrix(0.289935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289935,0.000000,0.000000,0.250000,0,0);}
.mc_c00240{transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);}
.m5a_c00240{transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);}
.m1a_c00240{transform:matrix(0.290984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290984,0.000000,0.000000,0.250000,0,0);}
.m71_c00240{transform:matrix(0.291021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291021,0.000000,0.000000,0.250000,0,0);}
.m55_c00240{transform:matrix(0.291498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291498,0.000000,0.000000,0.250000,0,0);}
.m3_c00240{transform:matrix(0.291905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291905,0.000000,0.000000,0.250000,0,0);}
.m7e_c00240{transform:matrix(0.292385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292385,0.000000,0.000000,0.250000,0,0);}
.m17_c00240{transform:matrix(0.295677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295677,0.000000,0.000000,0.250000,0,0);}
.m39_c00240{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m72_c00240{transform:matrix(0.298565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298565,0.000000,0.000000,0.250000,0,0);}
.m94_c00240{transform:matrix(0.299126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299126,0.000000,0.000000,0.250000,0,0);}
.m3c_c00240{transform:matrix(0.299502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299502,0.000000,0.000000,0.250000,0,0);}
.m1d_c00240{transform:matrix(0.299693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299693,0.000000,0.000000,0.250000,0,0);}
.mac_c00240{transform:matrix(0.299998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299998,0.000000,0.000000,0.250000,0,0);}
.m50_c00240{transform:matrix(0.300085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300085,0.000000,0.000000,0.250000,0,0);}
.m63_c00240{transform:matrix(0.300181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300181,0.000000,0.000000,0.250000,0,0);}
.mb_c00240{transform:matrix(0.300360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300360,0.000000,0.000000,0.250000,0,0);}
.m6f_c00240{transform:matrix(0.300516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300516,0.000000,0.000000,0.250000,0,0);}
.m74_c00240{transform:matrix(0.300523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300523,0.000000,0.000000,0.250000,0,0);}
.m37_c00240{transform:matrix(0.301051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301051,0.000000,0.000000,0.250000,0,0);}
.m92_c00240{transform:matrix(0.302199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302199,0.000000,0.000000,0.250000,0,0);}
.m22_c00240{transform:matrix(0.302227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302227,0.000000,0.000000,0.250000,0,0);}
.m44_c00240{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m6a_c00240{transform:matrix(0.302713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302713,0.000000,0.000000,0.250000,0,0);}
.m56_c00240{transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);}
.m4_c00240{transform:matrix(0.303158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303158,0.000000,0.000000,0.250000,0,0);}
.m8_c00240{transform:matrix(0.303230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303230,0.000000,0.000000,0.250000,0,0);}
.m8c_c00240{transform:matrix(0.303651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303651,0.000000,0.000000,0.250000,0,0);}
.m60_c00240{transform:matrix(0.304119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304119,0.000000,0.000000,0.250000,0,0);}
.ma3_c00240{transform:matrix(0.304171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304171,0.000000,0.000000,0.250000,0,0);}
.m2a_c00240{transform:matrix(0.304596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304596,0.000000,0.000000,0.250000,0,0);}
.m95_c00240{transform:matrix(0.304946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304946,0.000000,0.000000,0.250000,0,0);}
.ma8_c00240{transform:matrix(0.305277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305277,0.000000,0.000000,0.250000,0,0);}
.m8d_c00240{transform:matrix(0.305914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305914,0.000000,0.000000,0.250000,0,0);}
.m9b_c00240{transform:matrix(0.306047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306047,0.000000,0.000000,0.250000,0,0);}
.m77_c00240{transform:matrix(0.306878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306878,0.000000,0.000000,0.250000,0,0);}
.m49_c00240{transform:matrix(0.308759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308759,0.000000,0.000000,0.250000,0,0);}
.m4d_c00240{transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);}
.ma0_c00240{transform:matrix(0.310149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310149,0.000000,0.000000,0.250000,0,0);}
.m9d_c00240{transform:matrix(0.310195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310195,0.000000,0.000000,0.250000,0,0);}
.m7a_c00240{transform:matrix(0.311093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311093,0.000000,0.000000,0.250000,0,0);}
.m11_c00240{transform:matrix(0.311312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311312,0.000000,0.000000,0.250000,0,0);}
.m9e_c00240{transform:matrix(0.311453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311453,0.000000,0.000000,0.250000,0,0);}
.m3e_c00240{transform:matrix(0.311833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311833,0.000000,0.000000,0.250000,0,0);}
.m96_c00240{transform:matrix(0.312047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312047,0.000000,0.000000,0.250000,0,0);}
.m47_c00240{transform:matrix(0.313301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313301,0.000000,0.000000,0.250000,0,0);}
.m1e_c00240{transform:matrix(0.314366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314366,0.000000,0.000000,0.250000,0,0);}
.m2b_c00240{transform:matrix(0.314374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314374,0.000000,0.000000,0.250000,0,0);}
.m90_c00240{transform:matrix(0.315717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315717,0.000000,0.000000,0.250000,0,0);}
.ma1_c00240{transform:matrix(0.315881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315881,0.000000,0.000000,0.250000,0,0);}
.m21_c00240{transform:matrix(0.316085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316085,0.000000,0.000000,0.250000,0,0);}
.m52_c00240{transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);}
.m80_c00240{transform:matrix(0.316989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316989,0.000000,0.000000,0.250000,0,0);}
.m88_c00240{transform:matrix(0.317301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317301,0.000000,0.000000,0.250000,0,0);}
.m6_c00240{transform:matrix(0.320922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320922,0.000000,0.000000,0.250000,0,0);}
.m3a_c00240{transform:matrix(0.323035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323035,0.000000,0.000000,0.250000,0,0);}
.m68_c00240{transform:matrix(0.325033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325033,0.000000,0.000000,0.250000,0,0);}
.m81_c00240{transform:matrix(0.325473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325473,0.000000,0.000000,0.250000,0,0);}
.m1_c00240{transform:matrix(0.325771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325771,0.000000,0.000000,0.250000,0,0);}
.ma7_c00240{transform:matrix(0.325819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325819,0.000000,0.000000,0.250000,0,0);}
.m5f_c00240{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m91_c00240{transform:matrix(0.327297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327297,0.000000,0.000000,0.250000,0,0);}
.m59_c00240{transform:matrix(0.327848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327848,0.000000,0.000000,0.250000,0,0);}
.m5b_c00240{transform:matrix(0.328605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328605,0.000000,0.000000,0.250000,0,0);}
.ma4_c00240{transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);}
.m8f_c00240{transform:matrix(0.333056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333056,0.000000,0.000000,0.250000,0,0);}
.m14_c00240{transform:matrix(0.333358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333358,0.000000,0.000000,0.250000,0,0);}
.m5c_c00240{transform:matrix(0.334285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334285,0.000000,0.000000,0.250000,0,0);}
.m6e_c00240{transform:matrix(0.334798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334798,0.000000,0.000000,0.250000,0,0);}
.m32_c00240{transform:matrix(0.336268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336268,0.000000,0.000000,0.250000,0,0);}
.m9f_c00240{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m4b_c00240{transform:matrix(0.339936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339936,0.000000,0.000000,0.250000,0,0);}
.m79_c00240{transform:matrix(0.340752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340752,0.000000,0.000000,0.250000,0,0);}
.m54_c00240{transform:matrix(0.342690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342690,0.000000,0.000000,0.250000,0,0);}
.m9a_c00240{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.m41_c00240{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m8e_c00240{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.ma6_c00240{transform:matrix(0.359665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359665,0.000000,0.000000,0.250000,0,0);}
.ma9_c00240{transform:matrix(0.363691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363691,0.000000,0.000000,0.250000,0,0);}
.m4f_c00240{transform:matrix(0.368363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368363,0.000000,0.000000,0.250000,0,0);}
.m25_c00240{transform:matrix(0.372071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372071,0.000000,0.000000,0.250000,0,0);}
.m36_c00240{transform:matrix(0.400876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400876,0.000000,0.000000,0.250000,0,0);}
.m82_c00240{transform:matrix(0.407787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407787,0.000000,0.000000,0.250000,0,0);}
.v0_c00240{vertical-align:0.000000px;}
.lsa_c00240{letter-spacing:-2.744280px;}
.ls11_c00240{letter-spacing:-2.375762px;}
.ls17_c00240{letter-spacing:-1.787702px;}
.lsb_c00240{letter-spacing:-1.599523px;}
.ls18_c00240{letter-spacing:-1.560319px;}
.lsc_c00240{letter-spacing:-0.642946px;}
.ls4_c00240{letter-spacing:0.000000px;}
.ls8_c00240{letter-spacing:0.525334px;}
.ls9_c00240{letter-spacing:1.136916px;}
.ls15_c00240{letter-spacing:1.610294px;}
.lse_c00240{letter-spacing:1.685772px;}
.ls14_c00240{letter-spacing:1.968041px;}
.lsd_c00240{letter-spacing:2.955982px;}
.lsf_c00240{letter-spacing:3.073594px;}
.ls1_c00240{letter-spacing:3.112798px;}
.ls6_c00240{letter-spacing:3.191206px;}
.ls3_c00240{letter-spacing:3.238250px;}
.ls7_c00240{letter-spacing:3.276900px;}
.ls16_c00240{letter-spacing:3.405610px;}
.ls12_c00240{letter-spacing:3.603610px;}
.ls5_c00240{letter-spacing:3.920400px;}
.ls0_c00240{letter-spacing:21.406176px;}
.ls10_c00240{letter-spacing:49.896198px;}
.ls13_c00240{letter-spacing:52.747398px;}
.ls2_c00240{letter-spacing:57.024198px;}
.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;}
}
.ws3_c00240{word-spacing:-104.069766px;}
.ws2_c00240{word-spacing:-19.602000px;}
.ws4_c00240{word-spacing:-17.814298px;}
.ws1_c00240{word-spacing:-4.398689px;}
.ws5_c00240{word-spacing:0.000000px;}
.ws0_c00240{word-spacing:5.174136px;}
._a_c00240{margin-left:-8.232048px;}
._5_c00240{margin-left:-1.176120px;}
._6_c00240{width:2.979504px;}
._8_c00240{width:4.626072px;}
._d_c00240{width:6.037416px;}
._0_c00240{width:7.919208px;}
._11_c00240{width:9.346234px;}
._14_c00240{width:10.836936px;}
._16_c00240{width:12.702096px;}
._3_c00240{width:14.035428px;}
._15_c00240{width:17.563392px;}
._e_c00240{width:22.267872px;}
._1_c00240{width:23.749783px;}
._c_c00240{width:25.090560px;}
._13_c00240{width:27.016625px;}
._b_c00240{width:28.315742px;}
._7_c00240{width:29.561400px;}
._f_c00240{width:30.971160px;}
._2_c00240{width:32.605848px;}
._9_c00240{width:36.466848px;}
._4_c00240{width:38.640888px;}
._10_c00240{width:40.340916px;}
._12_c00240{width:43.186176px;}
.fc0_c00240{color:transparent;}
.fse_c00240{font-size:22.176000px;}
.fsd_c00240{font-size:25.740000px;}
.fs5_c00240{font-size:33.264000px;}
.fs1_c00240{font-size:38.808000px;}
.fs7_c00240{font-size:49.896198px;}
.fsb_c00240{font-size:52.747398px;}
.fs3_c00240{font-size:57.024198px;}
.fs2_c00240{font-size:65.538000px;}
.fs9_c00240{font-size:66.330000px;}
.fsc_c00240{font-size:68.112198px;}
.fs6_c00240{font-size:70.092198px;}
.fsa_c00240{font-size:72.072198px;}
.fs8_c00240{font-size:72.864000px;}
.fs4_c00240{font-size:77.220000px;}
.fs0_c00240{font-size:78.408000px;}
.y0_c00240{bottom:0.000000px;}
.y1a_c00240{bottom:54.436185px;}
.y1_c00240{bottom:76.500000px;}
.y19_c00240{bottom:151.025535px;}
.y18_c00240{bottom:173.473785px;}
.y17_c00240{bottom:181.319535px;}
.y16_c00240{bottom:213.751935px;}
.y15_c00240{bottom:245.466585px;}
.y14_c00240{bottom:277.542585px;}
.y13_c00240{bottom:309.623535px;}
.y12_c00240{bottom:374.126985px;}
.y11_c00240{bottom:405.846585px;}
.y10_c00240{bottom:437.571135px;}
.yd_c00240{bottom:469.290735px;}
.yf_c00240{bottom:470.003535px;}
.yc_c00240{bottom:477.839385px;}
.ye_c00240{bottom:501.718185px;}
.yb_c00240{bottom:502.079535px;}
.ya_c00240{bottom:533.794185px;}
.y9_c00240{bottom:566.944335px;}
.y8_c00240{bottom:600.089535px;}
.y7_c00240{bottom:631.804185px;}
.y6_c00240{bottom:663.885135px;}
.y5_c00240{bottom:760.113135px;}
.y4_c00240{bottom:922.626585px;}
.y3_c00240{bottom:1021.705785px;}
.y2_c00240{bottom:1071.601785px;}
.h10_c00240{height:23.128875px;}
.hf_c00240{height:26.846016px;}
.h8_c00240{height:33.230868px;}
.h6_c00240{height:34.693313px;}
.hc_c00240{height:35.129767px;}
.h5_c00240{height:37.978116px;}
.h3_c00240{height:40.475531px;}
.h4_c00240{height:68.354086px;}
.he_c00240{height:68.644325px;}
.h7_c00240{height:68.791659px;}
.ha_c00240{height:69.180117px;}
.hd_c00240{height:71.476453px;}
.h9_c00240{height:71.512031px;}
.hb_c00240{height:72.635262px;}
.h2_c00240{height:76.953164px;}
.h1_c00240{height:1110.000000px;}
.h0_c00240{height:1263.000000px;}
.w1_c00240{width:751.500000px;}
.w0_c00240{width:892.500000px;}
.x0_c00240{left:0.000000px;}
.x43_c00240{left:65.444385px;}
.x4_c00240{left:67.335285px;}
.x63_c00240{left:69.052935px;}
.x1_c00240{left:70.500000px;}
.x3d_c00240{left:77.982735px;}
.x4f_c00240{left:88.065885px;}
.x33_c00240{left:99.119235px;}
.x5_c00240{left:100.589385px;}
.x34_c00240{left:110.355735px;}
.x47_c00240{left:111.702135px;}
.x46_c00240{left:115.627485px;}
.x57_c00240{left:120.028035px;}
.xe_c00240{left:121.339785px;}
.x35_c00240{left:132.630735px;}
.x6_c00240{left:143.703885px;}
.x58_c00240{left:153.915735px;}
.x2b_c00240{left:155.078985px;}
.x36_c00240{left:165.449235px;}
.x50_c00240{left:175.992735px;}
.x51_c00240{left:181.690185px;}
.x7_c00240{left:188.432085px;}
.x37_c00240{left:198.569685px;}
.x5a_c00240{left:199.638885px;}
.x20_c00240{left:209.806185px;}
.xf_c00240{left:220.800135px;}
.x10_c00240{left:232.462335px;}
.x5f_c00240{left:234.481935px;}
.x5b_c00240{left:239.422035px;}
.x21_c00240{left:242.263335px;}
.x38_c00240{left:243.347385px;}
.x60_c00240{left:253.950285px;}
.x8_c00240{left:255.489735px;}
.x11_c00240{left:265.513485px;}
.x2c_c00240{left:275.448135px;}
.x12_c00240{left:276.611385px;}
.x2d_c00240{left:285.754035px;}
.x4e_c00240{left:287.283585px;}
.x52_c00240{left:288.328035px;}
.x61_c00240{left:297.515235px;}
.x13_c00240{left:298.737885px;}
.x3e_c00240{left:300.475335px;}
.x9_c00240{left:309.924885px;}
.x14_c00240{left:319.998135px;}
.xa_c00240{left:331.888035px;}
.x62_c00240{left:342.396885px;}
.x3_c00240{left:346.906335px;}
.xb_c00240{left:352.702785px;}
.x4a_c00240{left:353.950185px;}
.x15_c00240{left:364.315485px;}
.x59_c00240{left:365.889585px;}
.x16_c00240{left:374.101635px;}
.xc_c00240{left:376.076685px;}
.x5c_c00240{left:377.388435px;}
.x22_c00240{left:386.778585px;}
.x2e_c00240{left:397.638885px;}
.x39_c00240{left:408.152685px;}
.xd_c00240{left:409.221885px;}
.x17_c00240{left:411.256335px;}
.x23_c00240{left:419.201085px;}
.x64_c00240{left:420.205935px;}
.x18_c00240{left:430.610835px;}
.x69_c00240{left:434.575785px;}
.x3f_c00240{left:442.020585px;}
.x24_c00240{left:451.668135px;}
.x53_c00240{left:453.019485px;}
.x19_c00240{left:463.142235px;}
.x25_c00240{left:474.561885px;}
.x3a_c00240{left:484.214385px;}
.x5d_c00240{left:485.828085px;}
.x40_c00240{left:496.302285px;}
.x2f_c00240{left:506.969535px;}
.x65_c00240{left:508.276335px;}
.x4b_c00240{left:516.701235px;}
.x1a_c00240{left:518.676285px;}
.x26_c00240{left:520.740435px;}
.x48_c00240{left:529.105935px;}
.x67_c00240{left:530.378085px;}
.x30_c00240{left:539.540535px;}
.x44_c00240{left:540.550335px;}
.x27_c00240{left:551.098785px;}
.x66_c00240{left:552.890685px;}
.x54_c00240{left:562.716435px;}
.x1b_c00240{left:573.527235px;}
.x28_c00240{left:583.714335px;}
.x29_c00240{left:592.139235px;}
.x55_c00240{left:594.891435px;}
.x3b_c00240{left:597.693135px;}
.x6b_c00240{left:602.870835px;}
.x1c_c00240{left:605.989335px;}
.x1d_c00240{left:617.661435px;}
.x4c_c00240{left:627.214935px;}
.x2a_c00240{left:628.660335px;}
.x6a_c00240{left:630.080985px;}
.x31_c00240{left:638.619735px;}
.x1e_c00240{left:640.169085px;}
.x56_c00240{left:648.925635px;}
.x1f_c00240{left:650.583885px;}
.x2_c00240{left:651.900585px;}
.x41_c00240{left:661.067985px;}
.x3c_c00240{left:672.690585px;}
.x5e_c00240{left:679.932435px;}
.x4d_c00240{left:682.041135px;}
.x32_c00240{left:683.506335px;}
.x42_c00240{left:693.985485px;}
.x45_c00240{left:704.647785px;}
.x49_c00240{left:715.522935px;}
.x68_c00240{left:716.755485px;}
@media print{
.v0_c00240{vertical-align:0.000000pt;}
.lsa_c00240{letter-spacing:-2.439360pt;}
.ls11_c00240{letter-spacing:-2.111789pt;}
.ls17_c00240{letter-spacing:-1.589069pt;}
.lsb_c00240{letter-spacing:-1.421798pt;}
.ls18_c00240{letter-spacing:-1.386950pt;}
.lsc_c00240{letter-spacing:-0.571507pt;}
.ls4_c00240{letter-spacing:0.000000pt;}
.ls8_c00240{letter-spacing:0.466963pt;}
.ls9_c00240{letter-spacing:1.010592pt;}
.ls15_c00240{letter-spacing:1.431373pt;}
.lse_c00240{letter-spacing:1.498464pt;}
.ls14_c00240{letter-spacing:1.749370pt;}
.lsd_c00240{letter-spacing:2.627539pt;}
.lsf_c00240{letter-spacing:2.732083pt;}
.ls1_c00240{letter-spacing:2.766931pt;}
.ls6_c00240{letter-spacing:2.836627pt;}
.ls3_c00240{letter-spacing:2.878445pt;}
.ls7_c00240{letter-spacing:2.912800pt;}
.ls16_c00240{letter-spacing:3.027209pt;}
.ls12_c00240{letter-spacing:3.203209pt;}
.ls5_c00240{letter-spacing:3.484800pt;}
.ls0_c00240{letter-spacing:19.027712pt;}
.ls10_c00240{letter-spacing:44.352176pt;}
.ls13_c00240{letter-spacing:46.886576pt;}
.ls2_c00240{letter-spacing:50.688176pt;}
.ws3_c00240{word-spacing:-92.506458pt;}
.ws2_c00240{word-spacing:-17.424000pt;}
.ws4_c00240{word-spacing:-15.834931pt;}
.ws1_c00240{word-spacing:-3.909946pt;}
.ws5_c00240{word-spacing:0.000000pt;}
.ws0_c00240{word-spacing:4.599232pt;}
._a_c00240{margin-left:-7.317376pt;}
._5_c00240{margin-left:-1.045440pt;}
._6_c00240{width:2.648448pt;}
._8_c00240{width:4.112064pt;}
._d_c00240{width:5.366592pt;}
._0_c00240{width:7.039296pt;}
._11_c00240{width:8.307763pt;}
._14_c00240{width:9.632832pt;}
._16_c00240{width:11.290752pt;}
._3_c00240{width:12.475936pt;}
._15_c00240{width:15.611904pt;}
._e_c00240{width:19.793664pt;}
._1_c00240{width:21.110918pt;}
._c_c00240{width:22.302720pt;}
._13_c00240{width:24.014778pt;}
._b_c00240{width:25.169549pt;}
._7_c00240{width:26.276800pt;}
._f_c00240{width:27.529920pt;}
._2_c00240{width:28.982976pt;}
._9_c00240{width:32.414976pt;}
._4_c00240{width:34.347456pt;}
._10_c00240{width:35.858592pt;}
._12_c00240{width:38.387712pt;}
.fse_c00240{font-size:19.712000pt;}
.fsd_c00240{font-size:22.880000pt;}
.fs5_c00240{font-size:29.568000pt;}
.fs1_c00240{font-size:34.496000pt;}
.fs7_c00240{font-size:44.352176pt;}
.fsb_c00240{font-size:46.886576pt;}
.fs3_c00240{font-size:50.688176pt;}
.fs2_c00240{font-size:58.256000pt;}
.fs9_c00240{font-size:58.960000pt;}
.fsc_c00240{font-size:60.544176pt;}
.fs6_c00240{font-size:62.304176pt;}
.fsa_c00240{font-size:64.064176pt;}
.fs8_c00240{font-size:64.768000pt;}
.fs4_c00240{font-size:68.640000pt;}
.fs0_c00240{font-size:69.696000pt;}
.y0_c00240{bottom:0.000000pt;}
.y1a_c00240{bottom:48.387720pt;}
.y1_c00240{bottom:68.000000pt;}
.y19_c00240{bottom:134.244920pt;}
.y18_c00240{bottom:154.198920pt;}
.y17_c00240{bottom:161.172920pt;}
.y16_c00240{bottom:190.001720pt;}
.y15_c00240{bottom:218.192520pt;}
.y14_c00240{bottom:246.704520pt;}
.y13_c00240{bottom:275.220920pt;}
.y12_c00240{bottom:332.557320pt;}
.y11_c00240{bottom:360.752520pt;}
.y10_c00240{bottom:388.952120pt;}
.yd_c00240{bottom:417.147320pt;}
.yf_c00240{bottom:417.780920pt;}
.yc_c00240{bottom:424.746120pt;}
.ye_c00240{bottom:445.971720pt;}
.yb_c00240{bottom:446.292920pt;}
.ya_c00240{bottom:474.483720pt;}
.y9_c00240{bottom:503.950520pt;}
.y8_c00240{bottom:533.412920pt;}
.y7_c00240{bottom:561.603720pt;}
.y6_c00240{bottom:590.120120pt;}
.y5_c00240{bottom:675.656120pt;}
.y4_c00240{bottom:820.112520pt;}
.y3_c00240{bottom:908.182920pt;}
.y2_c00240{bottom:952.534920pt;}
.h10_c00240{height:20.559000pt;}
.hf_c00240{height:23.863125pt;}
.h8_c00240{height:29.538549pt;}
.h6_c00240{height:30.838500pt;}
.hc_c00240{height:31.226460pt;}
.h5_c00240{height:33.758325pt;}
.h3_c00240{height:35.978250pt;}
.h4_c00240{height:60.759188pt;}
.he_c00240{height:61.017177pt;}
.h7_c00240{height:61.148141pt;}
.ha_c00240{height:61.493438pt;}
.hd_c00240{height:63.534625pt;}
.h9_c00240{height:63.566250pt;}
.hb_c00240{height:64.564677pt;}
.h2_c00240{height:68.402813pt;}
.h1_c00240{height:986.666667pt;}
.h0_c00240{height:1122.666667pt;}
.w1_c00240{width:668.000000pt;}
.w0_c00240{width:793.333333pt;}
.x0_c00240{left:0.000000pt;}
.x43_c00240{left:58.172787pt;}
.x4_c00240{left:59.853587pt;}
.x63_c00240{left:61.380387pt;}
.x1_c00240{left:62.666667pt;}
.x3d_c00240{left:69.317987pt;}
.x4f_c00240{left:78.280787pt;}
.x33_c00240{left:88.105987pt;}
.x5_c00240{left:89.412787pt;}
.x34_c00240{left:98.093987pt;}
.x47_c00240{left:99.290787pt;}
.x46_c00240{left:102.779987pt;}
.x57_c00240{left:106.691587pt;}
.xe_c00240{left:107.857587pt;}
.x35_c00240{left:117.893987pt;}
.x6_c00240{left:127.736787pt;}
.x58_c00240{left:136.813987pt;}
.x2b_c00240{left:137.847987pt;}
.x36_c00240{left:147.065987pt;}
.x50_c00240{left:156.437987pt;}
.x51_c00240{left:161.502387pt;}
.x7_c00240{left:167.495187pt;}
.x37_c00240{left:176.506387pt;}
.x5a_c00240{left:177.456787pt;}
.x20_c00240{left:186.494387pt;}
.xf_c00240{left:196.266787pt;}
.x10_c00240{left:206.633187pt;}
.x5f_c00240{left:208.428387pt;}
.x5b_c00240{left:212.819587pt;}
.x21_c00240{left:215.345187pt;}
.x38_c00240{left:216.308787pt;}
.x60_c00240{left:225.733587pt;}
.x8_c00240{left:227.101987pt;}
.x11_c00240{left:236.011987pt;}
.x2c_c00240{left:244.842787pt;}
.x12_c00240{left:245.876787pt;}
.x2d_c00240{left:254.003587pt;}
.x4e_c00240{left:255.363187pt;}
.x52_c00240{left:256.291587pt;}
.x61_c00240{left:264.457987pt;}
.x13_c00240{left:265.544787pt;}
.x3e_c00240{left:267.089187pt;}
.x9_c00240{left:275.488787pt;}
.x14_c00240{left:284.442787pt;}
.xa_c00240{left:295.011587pt;}
.x62_c00240{left:304.352787pt;}
.x3_c00240{left:308.361187pt;}
.xb_c00240{left:313.513587pt;}
.x4a_c00240{left:314.622387pt;}
.x15_c00240{left:323.835987pt;}
.x59_c00240{left:325.235187pt;}
.x16_c00240{left:332.534787pt;}
.xc_c00240{left:334.290387pt;}
.x5c_c00240{left:335.456387pt;}
.x22_c00240{left:343.803187pt;}
.x2e_c00240{left:353.456787pt;}
.x39_c00240{left:362.802387pt;}
.xd_c00240{left:363.752787pt;}
.x17_c00240{left:365.561187pt;}
.x23_c00240{left:372.623187pt;}
.x64_c00240{left:373.516387pt;}
.x18_c00240{left:382.765187pt;}
.x69_c00240{left:386.289587pt;}
.x3f_c00240{left:392.907187pt;}
.x24_c00240{left:401.482787pt;}
.x53_c00240{left:402.683987pt;}
.x19_c00240{left:411.681987pt;}
.x25_c00240{left:421.832787pt;}
.x3a_c00240{left:430.412787pt;}
.x5d_c00240{left:431.847187pt;}
.x40_c00240{left:441.157587pt;}
.x2f_c00240{left:450.639587pt;}
.x65_c00240{left:451.801187pt;}
.x4b_c00240{left:459.289987pt;}
.x1a_c00240{left:461.045587pt;}
.x26_c00240{left:462.880387pt;}
.x48_c00240{left:470.316387pt;}
.x67_c00240{left:471.447187pt;}
.x30_c00240{left:479.591587pt;}
.x44_c00240{left:480.489187pt;}
.x27_c00240{left:489.865587pt;}
.x66_c00240{left:491.458387pt;}
.x54_c00240{left:500.192387pt;}
.x1b_c00240{left:509.801987pt;}
.x28_c00240{left:518.857187pt;}
.x29_c00240{left:526.345987pt;}
.x55_c00240{left:528.792387pt;}
.x3b_c00240{left:531.282787pt;}
.x6b_c00240{left:535.885187pt;}
.x1c_c00240{left:538.657187pt;}
.x1d_c00240{left:549.032387pt;}
.x4c_c00240{left:557.524387pt;}
.x2a_c00240{left:558.809187pt;}
.x6a_c00240{left:560.071987pt;}
.x31_c00240{left:567.661987pt;}
.x1e_c00240{left:569.039187pt;}
.x56_c00240{left:576.822787pt;}
.x1f_c00240{left:578.296787pt;}
.x2_c00240{left:579.467187pt;}
.x41_c00240{left:587.615987pt;}
.x3c_c00240{left:597.947187pt;}
.x5e_c00240{left:604.384387pt;}
.x4d_c00240{left:606.258787pt;}
.x32_c00240{left:607.561187pt;}
.x42_c00240{left:616.875987pt;}
.x45_c00240{left:626.353587pt;}
.x49_c00240{left:636.020387pt;}
.x68_c00240{left:637.115987pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_79834f5f2d2209df6fe5b728.woff2')format("woff");}.ff1_c00241{font-family:ff1_c00241;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00241;src:url('chunks/assets/font_fd7905c4506accd621ab1dca.woff2')format("woff");}.ff2_c00241{font-family:ff2_c00241;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m73_c00241{transform:matrix(0.164060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164060,0.000000,0.000000,0.250000,0,0);}
.m58_c00241{transform:matrix(0.214547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214547,0.000000,0.000000,0.250000,0,0);}
.m4_c00241{transform:matrix(0.216704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216704,0.000000,0.000000,0.250000,0,0);}
.m56_c00241{transform:matrix(0.220701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220701,0.000000,0.000000,0.250000,0,0);}
.m4d_c00241{transform:matrix(0.227167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227167,0.000000,0.000000,0.250000,0,0);}
.m1a_c00241{transform:matrix(0.228866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228866,0.000000,0.000000,0.250000,0,0);}
.m8b_c00241{transform:matrix(0.249980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249980,0.000000,0.000000,0.250000,0,0);}
.m1_c00241{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m67_c00241{transform:matrix(0.252202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252202,0.000000,0.000000,0.250000,0,0);}
.m28_c00241{transform:matrix(0.253126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253126,0.000000,0.000000,0.250000,0,0);}
.mb0_c00241{transform:matrix(0.253667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253667,0.000000,0.000000,0.250000,0,0);}
.ma2_c00241{transform:matrix(0.254597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254597,0.000000,0.000000,0.250000,0,0);}
.m7b_c00241{transform:matrix(0.254685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254685,0.000000,0.000000,0.250000,0,0);}
.m30_c00241{transform:matrix(0.256057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256057,0.000000,0.000000,0.250000,0,0);}
.mba_c00241{transform:matrix(0.256704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256704,0.000000,0.000000,0.250000,0,0);}
.ma1_c00241{transform:matrix(0.256738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256738,0.000000,0.000000,0.250000,0,0);}
.m78_c00241{transform:matrix(0.257754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257754,0.000000,0.000000,0.250000,0,0);}
.m89_c00241{transform:matrix(0.257794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257794,0.000000,0.000000,0.250000,0,0);}
.m16_c00241{transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);}
.mc_c00241{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.mb1_c00241{transform:matrix(0.258953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258953,0.000000,0.000000,0.250000,0,0);}
.m43_c00241{transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);}
.ma_c00241{transform:matrix(0.260228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260228,0.000000,0.000000,0.250000,0,0);}
.m7_c00241{transform:matrix(0.261088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261088,0.000000,0.000000,0.250000,0,0);}
.m50_c00241{transform:matrix(0.261904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261904,0.000000,0.000000,0.250000,0,0);}
.m8f_c00241{transform:matrix(0.262634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262634,0.000000,0.000000,0.250000,0,0);}
.m3b_c00241{transform:matrix(0.262807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262807,0.000000,0.000000,0.250000,0,0);}
.m47_c00241{transform:matrix(0.262846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262846,0.000000,0.000000,0.250000,0,0);}
.m5_c00241{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m9e_c00241{transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);}
.m32_c00241{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m12_c00241{transform:matrix(0.265631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265631,0.000000,0.000000,0.250000,0,0);}
.m21_c00241{transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);}
.m39_c00241{transform:matrix(0.265972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265972,0.000000,0.000000,0.250000,0,0);}
.mc6_c00241{transform:matrix(0.265986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265986,0.000000,0.000000,0.250000,0,0);}
.m3d_c00241{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.ma5_c00241{transform:matrix(0.266384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266384,0.000000,0.000000,0.250000,0,0);}
.m4b_c00241{transform:matrix(0.266801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266801,0.000000,0.000000,0.250000,0,0);}
.mbf_c00241{transform:matrix(0.267040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267040,0.000000,0.000000,0.250000,0,0);}
.mcb_c00241{transform:matrix(0.267115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267115,0.000000,0.000000,0.250000,0,0);}
.m24_c00241{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m7f_c00241{transform:matrix(0.267925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267925,0.000000,0.000000,0.250000,0,0);}
.m7c_c00241{transform:matrix(0.268245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268245,0.000000,0.000000,0.250000,0,0);}
.m96_c00241{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.mb2_c00241{transform:matrix(0.268753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268753,0.000000,0.000000,0.250000,0,0);}
.m74_c00241{transform:matrix(0.269048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269048,0.000000,0.000000,0.250000,0,0);}
.m34_c00241{transform:matrix(0.269761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269761,0.000000,0.000000,0.250000,0,0);}
.m52_c00241{transform:matrix(0.270236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270236,0.000000,0.000000,0.250000,0,0);}
.m5d_c00241{transform:matrix(0.270362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270362,0.000000,0.000000,0.250000,0,0);}
.m4a_c00241{transform:matrix(0.270773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270773,0.000000,0.000000,0.250000,0,0);}
.m13_c00241{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m2_c00241{transform:matrix(0.271993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271993,0.000000,0.000000,0.250000,0,0);}
.m83_c00241{transform:matrix(0.272710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272710,0.000000,0.000000,0.250000,0,0);}
.m54_c00241{transform:matrix(0.272806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272806,0.000000,0.000000,0.250000,0,0);}
.m55_c00241{transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);}
.m37_c00241{transform:matrix(0.272943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272943,0.000000,0.000000,0.250000,0,0);}
.m1e_c00241{transform:matrix(0.273113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273113,0.000000,0.000000,0.250000,0,0);}
.m87_c00241{transform:matrix(0.274018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274018,0.000000,0.000000,0.250000,0,0);}
.ma8_c00241{transform:matrix(0.274033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274033,0.000000,0.000000,0.250000,0,0);}
.mac_c00241{transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);}
.m6f_c00241{transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);}
.m92_c00241{transform:matrix(0.274132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274132,0.000000,0.000000,0.250000,0,0);}
.mb6_c00241{transform:matrix(0.274853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274853,0.000000,0.000000,0.250000,0,0);}
.ma6_c00241{transform:matrix(0.276607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276607,0.000000,0.000000,0.250000,0,0);}
.m9_c00241{transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);}
.m9f_c00241{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m10_c00241{transform:matrix(0.277604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277604,0.000000,0.000000,0.250000,0,0);}
.m79_c00241{transform:matrix(0.277650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277650,0.000000,0.000000,0.250000,0,0);}
.m20_c00241{transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);}
.m44_c00241{transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);}
.maa_c00241{transform:matrix(0.279864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279864,0.000000,0.000000,0.250000,0,0);}
.m91_c00241{transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);}
.md_c00241{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.m17_c00241{transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);}
.mc1_c00241{transform:matrix(0.282165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282165,0.000000,0.000000,0.250000,0,0);}
.m98_c00241{transform:matrix(0.283640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283640,0.000000,0.000000,0.250000,0,0);}
.mc8_c00241{transform:matrix(0.283852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283852,0.000000,0.000000,0.250000,0,0);}
.m0_c00241{transform:matrix(0.284591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284591,0.000000,0.000000,0.250000,0,0);}
.m49_c00241{transform:matrix(0.284669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284669,0.000000,0.000000,0.250000,0,0);}
.m1f_c00241{transform:matrix(0.284803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284803,0.000000,0.000000,0.250000,0,0);}
.m9c_c00241{transform:matrix(0.284878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284878,0.000000,0.000000,0.250000,0,0);}
.m35_c00241{transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);}
.m29_c00241{transform:matrix(0.286496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286496,0.000000,0.000000,0.250000,0,0);}
.m76_c00241{transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);}
.m6c_c00241{transform:matrix(0.287057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287057,0.000000,0.000000,0.250000,0,0);}
.m18_c00241{transform:matrix(0.287538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287538,0.000000,0.000000,0.250000,0,0);}
.m4e_c00241{transform:matrix(0.287876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287876,0.000000,0.000000,0.250000,0,0);}
.mc2_c00241{transform:matrix(0.287941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287941,0.000000,0.000000,0.250000,0,0);}
.mf_c00241{transform:matrix(0.288247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288247,0.000000,0.000000,0.250000,0,0);}
.mca_c00241{transform:matrix(0.288338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288338,0.000000,0.000000,0.250000,0,0);}
.mb3_c00241{transform:matrix(0.288741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288741,0.000000,0.000000,0.250000,0,0);}
.m5e_c00241{transform:matrix(0.288963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288963,0.000000,0.000000,0.250000,0,0);}
.m60_c00241{transform:matrix(0.289026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289026,0.000000,0.000000,0.250000,0,0);}
.m81_c00241{transform:matrix(0.289420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289420,0.000000,0.000000,0.250000,0,0);}
.m90_c00241{transform:matrix(0.289935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289935,0.000000,0.000000,0.250000,0,0);}
.mbd_c00241{transform:matrix(0.289989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289989,0.000000,0.000000,0.250000,0,0);}
.m93_c00241{transform:matrix(0.290806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290806,0.000000,0.000000,0.250000,0,0);}
.m5a_c00241{transform:matrix(0.291185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291185,0.000000,0.000000,0.250000,0,0);}
.m26_c00241{transform:matrix(0.291415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291415,0.000000,0.000000,0.250000,0,0);}
.mae_c00241{transform:matrix(0.291917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291917,0.000000,0.000000,0.250000,0,0);}
.mab_c00241{transform:matrix(0.291924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291924,0.000000,0.000000,0.250000,0,0);}
.m3_c00241{transform:matrix(0.292134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292134,0.000000,0.000000,0.250000,0,0);}
.m64_c00241{transform:matrix(0.292392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292392,0.000000,0.000000,0.250000,0,0);}
.m57_c00241{transform:matrix(0.292527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292527,0.000000,0.000000,0.250000,0,0);}
.m40_c00241{transform:matrix(0.292819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292819,0.000000,0.000000,0.250000,0,0);}
.m36_c00241{transform:matrix(0.292941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292941,0.000000,0.000000,0.250000,0,0);}
.m48_c00241{transform:matrix(0.293597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293597,0.000000,0.000000,0.250000,0,0);}
.m7a_c00241{transform:matrix(0.294443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294443,0.000000,0.000000,0.250000,0,0);}
.m2e_c00241{transform:matrix(0.294997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294997,0.000000,0.000000,0.250000,0,0);}
.m84_c00241{transform:matrix(0.295160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295160,0.000000,0.000000,0.250000,0,0);}
.mbb_c00241{transform:matrix(0.295321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295321,0.000000,0.000000,0.250000,0,0);}
.mc4_c00241{transform:matrix(0.295434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295434,0.000000,0.000000,0.250000,0,0);}
.m2f_c00241{transform:matrix(0.295567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295567,0.000000,0.000000,0.250000,0,0);}
.m72_c00241{transform:matrix(0.295812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295812,0.000000,0.000000,0.250000,0,0);}
.mcc_c00241{transform:matrix(0.296073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296073,0.000000,0.000000,0.250000,0,0);}
.m4c_c00241{transform:matrix(0.296326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296326,0.000000,0.000000,0.250000,0,0);}
.ma7_c00241{transform:matrix(0.296671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296671,0.000000,0.000000,0.250000,0,0);}
.ma4_c00241{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.mb_c00241{transform:matrix(0.297275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297275,0.000000,0.000000,0.250000,0,0);}
.m70_c00241{transform:matrix(0.298205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298205,0.000000,0.000000,0.250000,0,0);}
.me_c00241{transform:matrix(0.299077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299077,0.000000,0.000000,0.250000,0,0);}
.m71_c00241{transform:matrix(0.299320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299320,0.000000,0.000000,0.250000,0,0);}
.m46_c00241{transform:matrix(0.299343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299343,0.000000,0.000000,0.250000,0,0);}
.m33_c00241{transform:matrix(0.299939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299939,0.000000,0.000000,0.250000,0,0);}
.m22_c00241{transform:matrix(0.300070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300070,0.000000,0.000000,0.250000,0,0);}
.m3c_c00241{transform:matrix(0.300422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300422,0.000000,0.000000,0.250000,0,0);}
.m82_c00241{transform:matrix(0.300527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300527,0.000000,0.000000,0.250000,0,0);}
.m2c_c00241{transform:matrix(0.301049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301049,0.000000,0.000000,0.250000,0,0);}
.m97_c00241{transform:matrix(0.301577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301577,0.000000,0.000000,0.250000,0,0);}
.mb9_c00241{transform:matrix(0.301963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301963,0.000000,0.000000,0.250000,0,0);}
.mc3_c00241{transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);}
.mc5_c00241{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m8e_c00241{transform:matrix(0.302703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302703,0.000000,0.000000,0.250000,0,0);}
.m41_c00241{transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);}
.mcd_c00241{transform:matrix(0.303311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303311,0.000000,0.000000,0.250000,0,0);}
.m25_c00241{transform:matrix(0.303427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303427,0.000000,0.000000,0.250000,0,0);}
.m9b_c00241{transform:matrix(0.303475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303475,0.000000,0.000000,0.250000,0,0);}
.m6e_c00241{transform:matrix(0.303669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303669,0.000000,0.000000,0.250000,0,0);}
.mce_c00241{transform:matrix(0.304119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304119,0.000000,0.000000,0.250000,0,0);}
.mc0_c00241{transform:matrix(0.304223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304223,0.000000,0.000000,0.250000,0,0);}
.mb4_c00241{transform:matrix(0.304441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304441,0.000000,0.000000,0.250000,0,0);}
.m6a_c00241{transform:matrix(0.304615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304615,0.000000,0.000000,0.250000,0,0);}
.m8d_c00241{transform:matrix(0.305345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305345,0.000000,0.000000,0.250000,0,0);}
.m9a_c00241{transform:matrix(0.305492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305492,0.000000,0.000000,0.250000,0,0);}
.m8_c00241{transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);}
.m2d_c00241{transform:matrix(0.306703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306703,0.000000,0.000000,0.250000,0,0);}
.m66_c00241{transform:matrix(0.306840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306840,0.000000,0.000000,0.250000,0,0);}
.m85_c00241{transform:matrix(0.307034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307034,0.000000,0.000000,0.250000,0,0);}
.m1b_c00241{transform:matrix(0.307242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307242,0.000000,0.000000,0.250000,0,0);}
.md2_c00241{transform:matrix(0.307990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307990,0.000000,0.000000,0.250000,0,0);}
.m65_c00241{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m5b_c00241{transform:matrix(0.308720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308720,0.000000,0.000000,0.250000,0,0);}
.m80_c00241{transform:matrix(0.308896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308896,0.000000,0.000000,0.250000,0,0);}
.m77_c00241{transform:matrix(0.309093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309093,0.000000,0.000000,0.250000,0,0);}
.m1c_c00241{transform:matrix(0.309166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309166,0.000000,0.000000,0.250000,0,0);}
.m8c_c00241{transform:matrix(0.310694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310694,0.000000,0.000000,0.250000,0,0);}
.m53_c00241{transform:matrix(0.311112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311112,0.000000,0.000000,0.250000,0,0);}
.m2a_c00241{transform:matrix(0.311265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311265,0.000000,0.000000,0.250000,0,0);}
.m7d_c00241{transform:matrix(0.311307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311307,0.000000,0.000000,0.250000,0,0);}
.mad_c00241{transform:matrix(0.311407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311407,0.000000,0.000000,0.250000,0,0);}
.ma0_c00241{transform:matrix(0.313920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313920,0.000000,0.000000,0.250000,0,0);}
.ma9_c00241{transform:matrix(0.314723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314723,0.000000,0.000000,0.250000,0,0);}
.md0_c00241{transform:matrix(0.315211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315211,0.000000,0.000000,0.250000,0,0);}
.m31_c00241{transform:matrix(0.315814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315814,0.000000,0.000000,0.250000,0,0);}
.m75_c00241{transform:matrix(0.315900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315900,0.000000,0.000000,0.250000,0,0);}
.m61_c00241{transform:matrix(0.315917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315917,0.000000,0.000000,0.250000,0,0);}
.maf_c00241{transform:matrix(0.316950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316950,0.000000,0.000000,0.250000,0,0);}
.mbe_c00241{transform:matrix(0.317900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317900,0.000000,0.000000,0.250000,0,0);}
.mb8_c00241{transform:matrix(0.319563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319563,0.000000,0.000000,0.250000,0,0);}
.m8a_c00241{transform:matrix(0.320098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320098,0.000000,0.000000,0.250000,0,0);}
.m3f_c00241{transform:matrix(0.321236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321236,0.000000,0.000000,0.250000,0,0);}
.m1d_c00241{transform:matrix(0.323146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323146,0.000000,0.000000,0.250000,0,0);}
.m14_c00241{transform:matrix(0.324227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324227,0.000000,0.000000,0.250000,0,0);}
.m86_c00241{transform:matrix(0.324729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324729,0.000000,0.000000,0.250000,0,0);}
.mb5_c00241{transform:matrix(0.325602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325602,0.000000,0.000000,0.250000,0,0);}
.m9d_c00241{transform:matrix(0.327297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327297,0.000000,0.000000,0.250000,0,0);}
.mb7_c00241{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.m6d_c00241{transform:matrix(0.327607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327607,0.000000,0.000000,0.250000,0,0);}
.mbc_c00241{transform:matrix(0.327852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327852,0.000000,0.000000,0.250000,0,0);}
.m19_c00241{transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);}
.m51_c00241{transform:matrix(0.331093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331093,0.000000,0.000000,0.250000,0,0);}
.m2b_c00241{transform:matrix(0.332811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332811,0.000000,0.000000,0.250000,0,0);}
.m6b_c00241{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m38_c00241{transform:matrix(0.333406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333406,0.000000,0.000000,0.250000,0,0);}
.md1_c00241{transform:matrix(0.336348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336348,0.000000,0.000000,0.250000,0,0);}
.m69_c00241{transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);}
.m7e_c00241{transform:matrix(0.337511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337511,0.000000,0.000000,0.250000,0,0);}
.m11_c00241{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m6_c00241{transform:matrix(0.342951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342951,0.000000,0.000000,0.250000,0,0);}
.m23_c00241{transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);}
.m99_c00241{transform:matrix(0.346958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346958,0.000000,0.000000,0.250000,0,0);}
.m68_c00241{transform:matrix(0.348765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348765,0.000000,0.000000,0.250000,0,0);}
.mc7_c00241{transform:matrix(0.349257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349257,0.000000,0.000000,0.250000,0,0);}
.m5f_c00241{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m59_c00241{transform:matrix(0.355345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355345,0.000000,0.000000,0.250000,0,0);}
.m3a_c00241{transform:matrix(0.359212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359212,0.000000,0.000000,0.250000,0,0);}
.m63_c00241{transform:matrix(0.359622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359622,0.000000,0.000000,0.250000,0,0);}
.m4f_c00241{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m62_c00241{transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);}
.m88_c00241{transform:matrix(0.367617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367617,0.000000,0.000000,0.250000,0,0);}
.m15_c00241{transform:matrix(0.372071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372071,0.000000,0.000000,0.250000,0,0);}
.mc9_c00241{transform:matrix(0.376760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376760,0.000000,0.000000,0.250000,0,0);}
.m95_c00241{transform:matrix(0.377871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377871,0.000000,0.000000,0.250000,0,0);}
.m27_c00241{transform:matrix(0.386966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386966,0.000000,0.000000,0.250000,0,0);}
.m5c_c00241{transform:matrix(0.394115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394115,0.000000,0.000000,0.250000,0,0);}
.m42_c00241{transform:matrix(0.400876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400876,0.000000,0.000000,0.250000,0,0);}
.m3e_c00241{transform:matrix(0.407787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407787,0.000000,0.000000,0.250000,0,0);}
.m45_c00241{transform:matrix(0.416693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416693,0.000000,0.000000,0.250000,0,0);}
.mcf_c00241{transform:matrix(0.421610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421610,0.000000,0.000000,0.250000,0,0);}
.m94_c00241{transform:matrix(0.423078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423078,0.000000,0.000000,0.250000,0,0);}
.ma3_c00241{transform:matrix(0.433011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433011,0.000000,0.000000,0.250000,0,0);}
.v0_c00241{vertical-align:0.000000px;}
.ls7_c00241{letter-spacing:-2.744280px;}
.lsc_c00241{letter-spacing:-2.399285px;}
.ls9_c00241{letter-spacing:-1.897474px;}
.lse_c00241{letter-spacing:-0.909533px;}
.ls11_c00241{letter-spacing:-0.548856px;}
.lsf_c00241{letter-spacing:-0.250906px;}
.ls4_c00241{letter-spacing:0.000000px;}
.lsa_c00241{letter-spacing:0.533174px;}
.ls8_c00241{letter-spacing:0.705672px;}
.ls10_c00241{letter-spacing:2.030767px;}
.lsb_c00241{letter-spacing:2.132698px;}
.ls2_c00241{letter-spacing:2.454170px;}
.lsd_c00241{letter-spacing:3.112798px;}
.ls6_c00241{letter-spacing:3.559723px;}
.ls12_c00241{letter-spacing:3.653813px;}
.ls5_c00241{letter-spacing:3.920400px;}
.ls3_c00241{letter-spacing:3.999610px;}
.ls0_c00241{letter-spacing:7.997616px;}
.ls1_c00241{letter-spacing:9.408960px;}
.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;}
}
.ws8_c00241{word-spacing:-23.255813px;}
.ws6_c00241{word-spacing:-22.714798px;}
.ws7_c00241{word-spacing:-22.056170px;}
.ws0_c00241{word-spacing:-19.602000px;}
.ws1_c00241{word-spacing:-2.508264px;}
.ws9_c00241{word-spacing:0.000000px;}
.ws3_c00241{word-spacing:2.665476px;}
.ws4_c00241{word-spacing:2.665872px;}
.ws5_c00241{word-spacing:6.429456px;}
.ws2_c00241{word-spacing:6.899904px;}
._c_c00241{margin-left:-13.172544px;}
._17_c00241{margin-left:-10.768824px;}
._0_c00241{margin-left:-2.509056px;}
._15_c00241{width:1.568160px;}
._14_c00241{width:2.979108px;}
._d_c00241{width:4.155624px;}
._a_c00241{width:6.272640px;}
._6_c00241{width:7.606368px;}
._16_c00241{width:9.079250px;}
._7_c00241{width:10.507068px;}
._10_c00241{width:12.623688px;}
._f_c00241{width:14.035032px;}
._11_c00241{width:15.447168px;}
._4_c00241{width:20.855736px;}
._2_c00241{width:22.267476px;}
._b_c00241{width:24.463296px;}
._12_c00241{width:27.930672px;}
._13_c00241{width:29.541600px;}
._1_c00241{width:30.657528px;}
._3_c00241{width:34.120548px;}
._5_c00241{width:36.538128px;}
._18_c00241{width:40.850568px;}
._8_c00241{width:42.497136px;}
._9_c00241{width:43.857000px;}
._e_c00241{width:46.887588px;}
.fc0_c00241{color:transparent;}
.fs3_c00241{font-size:22.176000px;}
.fs1_c00241{font-size:38.808000px;}
.fs5_c00241{font-size:72.864000px;}
.fs6_c00241{font-size:74.052198px;}
.fs2_c00241{font-size:78.408000px;}
.fs0_c00241{font-size:79.992198px;}
.fs4_c00241{font-size:85.734000px;}
.y0_c00241{bottom:0.000000px;}
.y1_c00241{bottom:76.500000px;}
.y1c_c00241{bottom:154.228185px;}
.y1b_c00241{bottom:185.239935px;}
.y1a_c00241{bottom:217.310985px;}
.y19_c00241{bottom:280.398735px;}
.y18_c00241{bottom:312.474735px;}
.y17_c00241{bottom:344.902185px;}
.y16_c00241{bottom:376.983135px;}
.y15_c00241{bottom:409.410585px;}
.y14_c00241{bottom:442.560735px;}
.y13_c00241{bottom:474.280335px;}
.y12_c00241{bottom:505.994985px;}
.y11_c00241{bottom:524.532735px;}
.y10_c00241{bottom:570.508335px;}
.yf_c00241{bottom:602.222985px;}
.ye_c00241{bottom:633.586185px;}
.yd_c00241{bottom:665.667135px;}
.yc_c00241{bottom:697.738185px;}
.yb_c00241{bottom:730.888335px;}
.ya_c00241{bottom:762.959385px;}
.y9_c00241{bottom:795.748185px;}
.y8_c00241{bottom:823.552335px;}
.y7_c00241{bottom:828.180585px;}
.y6_c00241{bottom:861.687135px;}
.y5_c00241{bottom:895.545135px;}
.y4_c00241{bottom:927.616185px;}
.y3_c00241{bottom:1064.473785px;}
.y2_c00241{bottom:1075.522185px;}
.h5_c00241{height:23.128875px;}
.h3_c00241{height:40.475531px;}
.h7_c00241{height:71.512031px;}
.h8_c00241{height:72.678183px;}
.h4_c00241{height:76.953164px;}
.h2_c00241{height:78.507968px;}
.h6_c00241{height:89.417883px;}
.h1_c00241{height:1110.000000px;}
.h0_c00241{height:1263.000000px;}
.w1_c00241{width:751.500000px;}
.w0_c00241{width:892.500000px;}
.x0_c00241{left:0.000000px;}
.x4d_c00241{left:63.469335px;}
.x16_c00241{left:64.592985px;}
.x1_c00241{left:70.500000px;}
.x4b_c00241{left:74.943435px;}
.x40_c00241{left:85.610685px;}
.x17_c00241{left:95.436435px;}
.x33_c00241{left:96.743235px;}
.x24_c00241{left:99.406335px;}
.x3a_c00241{left:106.484835px;}
.x53_c00241{left:107.677785px;}
.x5a_c00241{left:108.756885px;}
.x57_c00241{left:117.790635px;}
.x5_c00241{left:118.844985px;}
.x18_c00241{left:129.744885px;}
.x34_c00241{left:130.868535px;}
.x58_c00241{left:132.551535px;}
.x3b_c00241{left:141.189285px;}
.x2c_c00241{left:150.589335px;}
.x6_c00241{left:152.509935px;}
.x41_c00241{left:161.370435px;}
.x4e_c00241{left:163.305885px;}
.x5f_c00241{left:165.414585px;}
.x19_c00241{left:174.354285px;}
.x42_c00241{left:185.046285px;}
.x5b_c00241{left:186.105585px;}
.x50_c00241{left:194.832435px;}
.x65_c00241{left:196.411485px;}
.x7_c00241{left:206.801535px;}
.x69_c00241{left:207.845985px;}
.x1a_c00241{left:217.805385px;}
.x3c_c00241{left:218.894385px;}
.x2d_c00241{left:228.883485px;}
.x8_c00241{left:240.431835px;}
.x61_c00241{left:242.095035px;}
.x3d_c00241{left:250.430835px;}
.x9_c00241{left:261.484185px;}
.x25_c00241{left:262.489035px;}
.x4f_c00241{left:273.596835px;}
.x4_c00241{left:284.892735px;}
.x5c_c00241{left:294.307635px;}
.xa_c00241{left:295.891635px;}
.x62_c00241{left:305.712435px;}
.x1b_c00241{left:307.974585px;}
.x35_c00241{left:317.275635px;}
.xb_c00241{left:328.413135px;}
.x26_c00241{left:331.066335px;}
.x43_c00241{left:339.362535px;}
.x2e_c00241{left:350.128785px;}
.x44_c00241{left:359.885235px;}
.xc_c00241{left:361.187085px;}
.x4c_c00241{left:362.508735px;}
.x64_c00241{left:371.601885px;}
.x1c_c00241{left:373.497735px;}
.x45_c00241{left:383.481885px;}
.x56_c00241{left:388.758585px;}
.xd_c00241{left:394.960935px;}
.x1d_c00241{left:405.806385px;}
.x59_c00241{left:416.226135px;}
.x36_c00241{left:417.394335px;}
.x48_c00241{left:427.710135px;}
.x51_c00241{left:428.774385px;}
.xe_c00241{left:438.803085px;}
.x54_c00241{left:448.272435px;}
.x37_c00241{left:449.663385px;}
.x49_c00241{left:460.003935px;}
.x1e_c00241{left:461.587935px;}
.x2f_c00241{left:470.329635px;}
.xf_c00241{left:471.918585px;}
.x27_c00241{left:482.803635px;}
.x5d_c00241{left:492.466035px;}
.x1f_c00241{left:494.079735px;}
.x10_c00241{left:505.177635px;}
.x28_c00241{left:516.122085px;}
.x46_c00241{left:525.937935px;}
.x11_c00241{left:527.160585px;}
.x55_c00241{left:536.971485px;}
.x20_c00241{left:538.520835px;}
.x3e_c00241{left:548.707935px;}
.x66_c00241{left:551.356185px;}
.x12_c00241{left:559.617735px;}
.x29_c00241{left:571.304685px;}
.x38_c00241{left:573.061935px;}
.x3f_c00241{left:580.813635px;}
.x52_c00241{left:582.155085px;}
.x63_c00241{left:591.500685px;}
.x13_c00241{left:592.802535px;}
.x30_c00241{left:603.469785px;}
.x32_c00241{left:607.860435px;}
.x31_c00241{left:613.642035px;}
.x67_c00241{left:625.185435px;}
.x21_c00241{left:626.279385px;}
.x14_c00241{left:635.694285px;}
.x2a_c00241{left:637.208985px;}
.x22_c00241{left:647.806935px;}
.x2_c00241{left:649.371135px;}
.x68_c00241{left:650.915535px;}
.x39_c00241{left:658.142535px;}
.x60_c00241{left:661.602585px;}
.x23_c00241{left:670.106685px;}
.x4a_c00241{left:679.576035px;}
.x47_c00241{left:681.471885px;}
.x3_c00241{left:683.625135px;}
.x15_c00241{left:692.208435px;}
.x2b_c00241{left:702.865785px;}
.x5e_c00241{left:713.557785px;}
@media print{
.v0_c00241{vertical-align:0.000000pt;}
.ls7_c00241{letter-spacing:-2.439360pt;}
.lsc_c00241{letter-spacing:-2.132698pt;}
.ls9_c00241{letter-spacing:-1.686643pt;}
.lse_c00241{letter-spacing:-0.808474pt;}
.ls11_c00241{letter-spacing:-0.487872pt;}
.lsf_c00241{letter-spacing:-0.223027pt;}
.ls4_c00241{letter-spacing:0.000000pt;}
.lsa_c00241{letter-spacing:0.473933pt;}
.ls8_c00241{letter-spacing:0.627264pt;}
.ls10_c00241{letter-spacing:1.805126pt;}
.lsb_c00241{letter-spacing:1.895731pt;}
.ls2_c00241{letter-spacing:2.181485pt;}
.lsd_c00241{letter-spacing:2.766931pt;}
.ls6_c00241{letter-spacing:3.164198pt;}
.ls12_c00241{letter-spacing:3.247834pt;}
.ls5_c00241{letter-spacing:3.484800pt;}
.ls3_c00241{letter-spacing:3.555209pt;}
.ls0_c00241{letter-spacing:7.108992pt;}
.ls1_c00241{letter-spacing:8.363520pt;}
.ws8_c00241{word-spacing:-20.671834pt;}
.ws6_c00241{word-spacing:-20.190931pt;}
.ws7_c00241{word-spacing:-19.605485pt;}
.ws0_c00241{word-spacing:-17.424000pt;}
.ws1_c00241{word-spacing:-2.229568pt;}
.ws9_c00241{word-spacing:0.000000pt;}
.ws3_c00241{word-spacing:2.369312pt;}
.ws4_c00241{word-spacing:2.369664pt;}
.ws5_c00241{word-spacing:5.715072pt;}
.ws2_c00241{word-spacing:6.133248pt;}
._c_c00241{margin-left:-11.708928pt;}
._17_c00241{margin-left:-9.572288pt;}
._0_c00241{margin-left:-2.230272pt;}
._15_c00241{width:1.393920pt;}
._14_c00241{width:2.648096pt;}
._d_c00241{width:3.693888pt;}
._a_c00241{width:5.575680pt;}
._6_c00241{width:6.761216pt;}
._16_c00241{width:8.070445pt;}
._7_c00241{width:9.339616pt;}
._10_c00241{width:11.221056pt;}
._f_c00241{width:12.475584pt;}
._11_c00241{width:13.730816pt;}
._4_c00241{width:18.538432pt;}
._2_c00241{width:19.793312pt;}
._b_c00241{width:21.745152pt;}
._12_c00241{width:24.827264pt;}
._13_c00241{width:26.259200pt;}
._1_c00241{width:27.251136pt;}
._3_c00241{width:30.329376pt;}
._5_c00241{width:32.478336pt;}
._18_c00241{width:36.311616pt;}
._8_c00241{width:37.775232pt;}
._9_c00241{width:38.984000pt;}
._e_c00241{width:41.677856pt;}
.fs3_c00241{font-size:19.712000pt;}
.fs1_c00241{font-size:34.496000pt;}
.fs5_c00241{font-size:64.768000pt;}
.fs6_c00241{font-size:65.824176pt;}
.fs2_c00241{font-size:69.696000pt;}
.fs0_c00241{font-size:71.104176pt;}
.fs4_c00241{font-size:76.208000pt;}
.y0_c00241{bottom:0.000000pt;}
.y1_c00241{bottom:68.000000pt;}
.y1c_c00241{bottom:137.091720pt;}
.y1b_c00241{bottom:164.657720pt;}
.y1a_c00241{bottom:193.165320pt;}
.y19_c00241{bottom:249.243320pt;}
.y18_c00241{bottom:277.755320pt;}
.y17_c00241{bottom:306.579720pt;}
.y16_c00241{bottom:335.096120pt;}
.y15_c00241{bottom:363.920520pt;}
.y14_c00241{bottom:393.387320pt;}
.y13_c00241{bottom:421.582520pt;}
.y12_c00241{bottom:449.773320pt;}
.y11_c00241{bottom:466.251320pt;}
.y10_c00241{bottom:507.118520pt;}
.yf_c00241{bottom:535.309320pt;}
.ye_c00241{bottom:563.187720pt;}
.yd_c00241{bottom:591.704120pt;}
.yc_c00241{bottom:620.211720pt;}
.yb_c00241{bottom:649.678520pt;}
.ya_c00241{bottom:678.186120pt;}
.y9_c00241{bottom:707.331720pt;}
.y8_c00241{bottom:732.046520pt;}
.y7_c00241{bottom:736.160520pt;}
.y6_c00241{bottom:765.944120pt;}
.y5_c00241{bottom:796.040120pt;}
.y4_c00241{bottom:824.547720pt;}
.y3_c00241{bottom:946.198920pt;}
.y2_c00241{bottom:956.019720pt;}
.h5_c00241{height:20.559000pt;}
.h3_c00241{height:35.978250pt;}
.h7_c00241{height:63.566250pt;}
.h8_c00241{height:64.602829pt;}
.h4_c00241{height:68.402813pt;}
.h2_c00241{height:69.784860pt;}
.h6_c00241{height:79.482563pt;}
.h1_c00241{height:986.666667pt;}
.h0_c00241{height:1122.666667pt;}
.w1_c00241{width:668.000000pt;}
.w0_c00241{width:793.333333pt;}
.x0_c00241{left:0.000000pt;}
.x4d_c00241{left:56.417187pt;}
.x16_c00241{left:57.415987pt;}
.x1_c00241{left:62.666667pt;}
.x4b_c00241{left:66.616387pt;}
.x40_c00241{left:76.098387pt;}
.x17_c00241{left:84.832387pt;}
.x33_c00241{left:85.993987pt;}
.x24_c00241{left:88.361187pt;}
.x3a_c00241{left:94.653187pt;}
.x53_c00241{left:95.713587pt;}
.x5a_c00241{left:96.672787pt;}
.x57_c00241{left:104.702787pt;}
.x5_c00241{left:105.639987pt;}
.x18_c00241{left:115.328787pt;}
.x34_c00241{left:116.327587pt;}
.x58_c00241{left:117.823587pt;}
.x3b_c00241{left:125.501587pt;}
.x2c_c00241{left:133.857187pt;}
.x6_c00241{left:135.564387pt;}
.x41_c00241{left:143.440387pt;}
.x4e_c00241{left:145.160787pt;}
.x5f_c00241{left:147.035187pt;}
.x19_c00241{left:154.981587pt;}
.x42_c00241{left:164.485587pt;}
.x5b_c00241{left:165.427187pt;}
.x50_c00241{left:173.184387pt;}
.x65_c00241{left:174.587987pt;}
.x7_c00241{left:183.823587pt;}
.x69_c00241{left:184.751987pt;}
.x1a_c00241{left:193.604787pt;}
.x3c_c00241{left:194.572787pt;}
.x2d_c00241{left:203.451987pt;}
.x8_c00241{left:213.717187pt;}
.x61_c00241{left:215.195587pt;}
.x3d_c00241{left:222.605187pt;}
.x9_c00241{left:232.430387pt;}
.x25_c00241{left:233.323587pt;}
.x4f_c00241{left:243.197187pt;}
.x4_c00241{left:253.237987pt;}
.x5c_c00241{left:261.606787pt;}
.xa_c00241{left:263.014787pt;}
.x62_c00241{left:271.744387pt;}
.x1b_c00241{left:273.755187pt;}
.x35_c00241{left:282.022787pt;}
.xb_c00241{left:291.922787pt;}
.x26_c00241{left:294.281187pt;}
.x43_c00241{left:301.655587pt;}
.x2e_c00241{left:311.225587pt;}
.x44_c00241{left:319.897987pt;}
.xc_c00241{left:321.055187pt;}
.x4c_c00241{left:322.229987pt;}
.x64_c00241{left:330.312787pt;}
.x1c_c00241{left:331.997987pt;}
.x45_c00241{left:340.872787pt;}
.x56_c00241{left:345.563187pt;}
.xd_c00241{left:351.076387pt;}
.x1d_c00241{left:360.716787pt;}
.x59_c00241{left:369.978787pt;}
.x36_c00241{left:371.017187pt;}
.x48_c00241{left:380.186787pt;}
.x51_c00241{left:381.132787pt;}
.xe_c00241{left:390.047187pt;}
.x54_c00241{left:398.464387pt;}
.x37_c00241{left:399.700787pt;}
.x49_c00241{left:408.892387pt;}
.x1e_c00241{left:410.300387pt;}
.x2f_c00241{left:418.070787pt;}
.xf_c00241{left:419.483187pt;}
.x27_c00241{left:429.158787pt;}
.x5d_c00241{left:437.747587pt;}
.x1f_c00241{left:439.181987pt;}
.x10_c00241{left:449.046787pt;}
.x28_c00241{left:458.775187pt;}
.x46_c00241{left:467.500387pt;}
.x11_c00241{left:468.587187pt;}
.x55_c00241{left:477.307987pt;}
.x20_c00241{left:478.685187pt;}
.x3e_c00241{left:487.740387pt;}
.x66_c00241{left:490.094387pt;}
.x12_c00241{left:497.437987pt;}
.x29_c00241{left:507.826387pt;}
.x38_c00241{left:509.388387pt;}
.x3f_c00241{left:516.278787pt;}
.x52_c00241{left:517.471187pt;}
.x63_c00241{left:525.778387pt;}
.x13_c00241{left:526.935587pt;}
.x30_c00241{left:536.417587pt;}
.x32_c00241{left:540.320387pt;}
.x31_c00241{left:545.459587pt;}
.x67_c00241{left:555.720387pt;}
.x21_c00241{left:556.692787pt;}
.x14_c00241{left:565.061587pt;}
.x2a_c00241{left:566.407987pt;}
.x22_c00241{left:575.828387pt;}
.x2_c00241{left:577.218787pt;}
.x68_c00241{left:578.591587pt;}
.x39_c00241{left:585.015587pt;}
.x60_c00241{left:588.091187pt;}
.x23_c00241{left:595.650387pt;}
.x4a_c00241{left:604.067587pt;}
.x47_c00241{left:605.752787pt;}
.x3_c00241{left:607.666787pt;}
.x15_c00241{left:615.296387pt;}
.x2b_c00241{left:624.769587pt;}
.x5e_c00241{left:634.273587pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ad22de4e3d95eeaf2fc698c2.woff2')format("woff");}.ff1_c00242{font-family:ff1_c00242;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00242;src:url('chunks/assets/font_f09c6f77a48f9d5731a23ac8.woff2')format("woff");}.ff2_c00242{font-family:ff2_c00242;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00242;src:url('chunks/assets/font_49172a4e47f51d66125412b1.woff2')format("woff");}.ff3_c00242{font-family:ff3_c00242;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00242;src:url('chunks/assets/font_fb2adefc73accb18f609ffbd.woff2')format("woff");}.ff4_c00242{font-family:ff4_c00242;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00242;src:url('chunks/assets/font_d7a8bec137d6d37444efa2c9.woff2')format("woff");}.ff5_c00242{font-family:ff5_c00242;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m30_c00242{transform:matrix(0.080883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080883,0.000000,0.000000,0.250000,0,0);}
.m8e_c00242{transform:matrix(0.111158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111158,0.000000,0.000000,0.250000,0,0);}
.m3f_c00242{transform:matrix(0.142509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142509,0.000000,0.000000,0.250000,0,0);}
.m85_c00242{transform:matrix(0.159723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159723,0.000000,0.000000,0.250000,0,0);}
.m8b_c00242{transform:matrix(0.184484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184484,0.000000,0.000000,0.250000,0,0);}
.m86_c00242{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m87_c00242{transform:matrix(0.189814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189814,0.000000,0.000000,0.250000,0,0);}
.m32_c00242{transform:matrix(0.196428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196428,0.000000,0.000000,0.250000,0,0);}
.m2e_c00242{transform:matrix(0.198530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198530,0.000000,0.000000,0.250000,0,0);}
.m5b_c00242{transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);}
.m4c_c00242{transform:matrix(0.201857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201857,0.000000,0.000000,0.250000,0,0);}
.m59_c00242{transform:matrix(0.202380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202380,0.000000,0.000000,0.250000,0,0);}
.m5a_c00242{transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);}
.m84_c00242{transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);}
.ma4_c00242{transform:matrix(0.209265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209265,0.000000,0.000000,0.250000,0,0);}
.m49_c00242{transform:matrix(0.212388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212388,0.000000,0.000000,0.250000,0,0);}
.m9d_c00242{transform:matrix(0.213265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213265,0.000000,0.000000,0.250000,0,0);}
.mab_c00242{transform:matrix(0.216704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216704,0.000000,0.000000,0.250000,0,0);}
.m9e_c00242{transform:matrix(0.216883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216883,0.000000,0.000000,0.250000,0,0);}
.m2f_c00242{transform:matrix(0.218137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218137,0.000000,0.000000,0.250000,0,0);}
.m56_c00242{transform:matrix(0.218264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218264,0.000000,0.000000,0.250000,0,0);}
.m2d_c00242{transform:matrix(0.218749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218749,0.000000,0.000000,0.250000,0,0);}
.m35_c00242{transform:matrix(0.219347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219347,0.000000,0.000000,0.250000,0,0);}
.m5c_c00242{transform:matrix(0.233826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233826,0.000000,0.000000,0.250000,0,0);}
.m6f_c00242{transform:matrix(0.236189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236189,0.000000,0.000000,0.250000,0,0);}
.m1_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);}
.m3a_c00242{transform:matrix(0.251415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251415,0.000000,0.000000,0.250000,0,0);}
.mb1_c00242{transform:matrix(0.252232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252232,0.000000,0.000000,0.250000,0,0);}
.m79_c00242{transform:matrix(0.252592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252592,0.000000,0.000000,0.250000,0,0);}
.m40_c00242{transform:matrix(0.253626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253626,0.000000,0.000000,0.250000,0,0);}
.m2_c00242{transform:matrix(0.253804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253804,0.000000,0.000000,0.250000,0,0);}
.m45_c00242{transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);}
.m95_c00242{transform:matrix(0.254597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254597,0.000000,0.000000,0.250000,0,0);}
.m7f_c00242{transform:matrix(0.257003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257003,0.000000,0.000000,0.250000,0,0);}
.md_c00242{transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);}
.m36_c00242{transform:matrix(0.258139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258139,0.000000,0.000000,0.250000,0,0);}
.m6_c00242{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m2c_c00242{transform:matrix(0.259057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259057,0.000000,0.000000,0.250000,0,0);}
.m52_c00242{transform:matrix(0.259336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259336,0.000000,0.000000,0.250000,0,0);}
.mae_c00242{transform:matrix(0.259636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259636,0.000000,0.000000,0.250000,0,0);}
.ma_c00242{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m75_c00242{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.m66_c00242{transform:matrix(0.261665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261665,0.000000,0.000000,0.250000,0,0);}
.m98_c00242{transform:matrix(0.262649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262649,0.000000,0.000000,0.250000,0,0);}
.m80_c00242{transform:matrix(0.262979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262979,0.000000,0.000000,0.250000,0,0);}
.m10_c00242{transform:matrix(0.263194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263194,0.000000,0.000000,0.250000,0,0);}
.m17_c00242{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m90_c00242{transform:matrix(0.263454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263454,0.000000,0.000000,0.250000,0,0);}
.m4e_c00242{transform:matrix(0.263788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263788,0.000000,0.000000,0.250000,0,0);}
.m14_c00242{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m8d_c00242{transform:matrix(0.267040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267040,0.000000,0.000000,0.250000,0,0);}
.m22_c00242{transform:matrix(0.267252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267252,0.000000,0.000000,0.250000,0,0);}
.m7c_c00242{transform:matrix(0.267605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267605,0.000000,0.000000,0.250000,0,0);}
.m67_c00242{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m2b_c00242{transform:matrix(0.268275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268275,0.000000,0.000000,0.250000,0,0);}
.m44_c00242{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.m70_c00242{transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);}
.m24_c00242{transform:matrix(0.270271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270271,0.000000,0.000000,0.250000,0,0);}
.m78_c00242{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.mf_c00242{transform:matrix(0.271095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271095,0.000000,0.000000,0.250000,0,0);}
.m3c_c00242{transform:matrix(0.271360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271360,0.000000,0.000000,0.250000,0,0);}
.m96_c00242{transform:matrix(0.272153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272153,0.000000,0.000000,0.250000,0,0);}
.m5_c00242{transform:matrix(0.272600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272600,0.000000,0.000000,0.250000,0,0);}
.m6d_c00242{transform:matrix(0.272840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272840,0.000000,0.000000,0.250000,0,0);}
.m3_c00242{transform:matrix(0.272939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272939,0.000000,0.000000,0.250000,0,0);}
.m1a_c00242{transform:matrix(0.274027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274027,0.000000,0.000000,0.250000,0,0);}
.m68_c00242{transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);}
.m23_c00242{transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);}
.m8f_c00242{transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);}
.ma0_c00242{transform:matrix(0.275066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275066,0.000000,0.000000,0.250000,0,0);}
.ma8_c00242{transform:matrix(0.275570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275570,0.000000,0.000000,0.250000,0,0);}
.m60_c00242{transform:matrix(0.275871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275871,0.000000,0.000000,0.250000,0,0);}
.m71_c00242{transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);}
.m9b_c00242{transform:matrix(0.277164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277164,0.000000,0.000000,0.250000,0,0);}
.m16_c00242{transform:matrix(0.277350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277350,0.000000,0.000000,0.250000,0,0);}
.m7d_c00242{transform:matrix(0.278073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278073,0.000000,0.000000,0.250000,0,0);}
.m1e_c00242{transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);}
.m76_c00242{transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);}
.m27_c00242{transform:matrix(0.280280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280280,0.000000,0.000000,0.250000,0,0);}
.me_c00242{transform:matrix(0.280769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280769,0.000000,0.000000,0.250000,0,0);}
.ma2_c00242{transform:matrix(0.281191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281191,0.000000,0.000000,0.250000,0,0);}
.m8_c00242{transform:matrix(0.281467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281467,0.000000,0.000000,0.250000,0,0);}
.m63_c00242{transform:matrix(0.281783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281783,0.000000,0.000000,0.250000,0,0);}
.m31_c00242{transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);}
.ma7_c00242{transform:matrix(0.281943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281943,0.000000,0.000000,0.250000,0,0);}
.m5e_c00242{transform:matrix(0.282333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282333,0.000000,0.000000,0.250000,0,0);}
.m7e_c00242{transform:matrix(0.282819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282819,0.000000,0.000000,0.250000,0,0);}
.m74_c00242{transform:matrix(0.283415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283415,0.000000,0.000000,0.250000,0,0);}
.m28_c00242{transform:matrix(0.283755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283755,0.000000,0.000000,0.250000,0,0);}
.m46_c00242{transform:matrix(0.283914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283914,0.000000,0.000000,0.250000,0,0);}
.m29_c00242{transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);}
.m7_c00242{transform:matrix(0.284316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284316,0.000000,0.000000,0.250000,0,0);}
.ma6_c00242{transform:matrix(0.284799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284799,0.000000,0.000000,0.250000,0,0);}
.mac_c00242{transform:matrix(0.285129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285129,0.000000,0.000000,0.250000,0,0);}
.ma9_c00242{transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);}
.m5f_c00242{transform:matrix(0.286566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286566,0.000000,0.000000,0.250000,0,0);}
.m50_c00242{transform:matrix(0.287521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287521,0.000000,0.000000,0.250000,0,0);}
.m73_c00242{transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);}
.m92_c00242{transform:matrix(0.289203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289203,0.000000,0.000000,0.250000,0,0);}
.m3e_c00242{transform:matrix(0.289843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289843,0.000000,0.000000,0.250000,0,0);}
.m0_c00242{transform:matrix(0.290159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290159,0.000000,0.000000,0.250000,0,0);}
.m21_c00242{transform:matrix(0.290162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290162,0.000000,0.000000,0.250000,0,0);}
.m61_c00242{transform:matrix(0.290204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290204,0.000000,0.000000,0.250000,0,0);}
.m3d_c00242{transform:matrix(0.291032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291032,0.000000,0.000000,0.250000,0,0);}
.m62_c00242{transform:matrix(0.291225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291225,0.000000,0.000000,0.250000,0,0);}
.mc_c00242{transform:matrix(0.291742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291742,0.000000,0.000000,0.250000,0,0);}
.m19_c00242{transform:matrix(0.291795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291795,0.000000,0.000000,0.250000,0,0);}
.mad_c00242{transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);}
.maa_c00242{transform:matrix(0.291919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291919,0.000000,0.000000,0.250000,0,0);}
.m89_c00242{transform:matrix(0.292061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292061,0.000000,0.000000,0.250000,0,0);}
.m64_c00242{transform:matrix(0.292548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292548,0.000000,0.000000,0.250000,0,0);}
.m55_c00242{transform:matrix(0.292643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292643,0.000000,0.000000,0.250000,0,0);}
.m9a_c00242{transform:matrix(0.293042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293042,0.000000,0.000000,0.250000,0,0);}
.m57_c00242{transform:matrix(0.293647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293647,0.000000,0.000000,0.250000,0,0);}
.m83_c00242{transform:matrix(0.293889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293889,0.000000,0.000000,0.250000,0,0);}
.mb2_c00242{transform:matrix(0.294070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294070,0.000000,0.000000,0.250000,0,0);}
.m8a_c00242{transform:matrix(0.294734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294734,0.000000,0.000000,0.250000,0,0);}
.m47_c00242{transform:matrix(0.295090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295090,0.000000,0.000000,0.250000,0,0);}
.mb_c00242{transform:matrix(0.295617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295617,0.000000,0.000000,0.250000,0,0);}
.m88_c00242{transform:matrix(0.295938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295938,0.000000,0.000000,0.250000,0,0);}
.m48_c00242{transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);}
.m9f_c00242{transform:matrix(0.296922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296922,0.000000,0.000000,0.250000,0,0);}
.m1c_c00242{transform:matrix(0.296994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296994,0.000000,0.000000,0.250000,0,0);}
.m82_c00242{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.mb0_c00242{transform:matrix(0.298205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298205,0.000000,0.000000,0.250000,0,0);}
.m6e_c00242{transform:matrix(0.298426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298426,0.000000,0.000000,0.250000,0,0);}
.m26_c00242{transform:matrix(0.298853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298853,0.000000,0.000000,0.250000,0,0);}
.m53_c00242{transform:matrix(0.299220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299220,0.000000,0.000000,0.250000,0,0);}
.m4f_c00242{transform:matrix(0.299605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299605,0.000000,0.000000,0.250000,0,0);}
.m4b_c00242{transform:matrix(0.299616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299616,0.000000,0.000000,0.250000,0,0);}
.m94_c00242{transform:matrix(0.300360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300360,0.000000,0.000000,0.250000,0,0);}
.m77_c00242{transform:matrix(0.303404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303404,0.000000,0.000000,0.250000,0,0);}
.m2a_c00242{transform:matrix(0.304848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304848,0.000000,0.000000,0.250000,0,0);}
.m97_c00242{transform:matrix(0.305366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305366,0.000000,0.000000,0.250000,0,0);}
.m4a_c00242{transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);}
.m18_c00242{transform:matrix(0.307487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307487,0.000000,0.000000,0.250000,0,0);}
.ma3_c00242{transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);}
.m41_c00242{transform:matrix(0.310470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310470,0.000000,0.000000,0.250000,0,0);}
.ma5_c00242{transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);}
.ma1_c00242{transform:matrix(0.311131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311131,0.000000,0.000000,0.250000,0,0);}
.m12_c00242{transform:matrix(0.311374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311374,0.000000,0.000000,0.250000,0,0);}
.m34_c00242{transform:matrix(0.311822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311822,0.000000,0.000000,0.250000,0,0);}
.m93_c00242{transform:matrix(0.312077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312077,0.000000,0.000000,0.250000,0,0);}
.m39_c00242{transform:matrix(0.315191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315191,0.000000,0.000000,0.250000,0,0);}
.m1f_c00242{transform:matrix(0.315292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315292,0.000000,0.000000,0.250000,0,0);}
.m33_c00242{transform:matrix(0.316100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316100,0.000000,0.000000,0.250000,0,0);}
.m6c_c00242{transform:matrix(0.316546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316546,0.000000,0.000000,0.250000,0,0);}
.m9c_c00242{transform:matrix(0.317031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317031,0.000000,0.000000,0.250000,0,0);}
.maf_c00242{transform:matrix(0.317247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317247,0.000000,0.000000,0.250000,0,0);}
.m11_c00242{transform:matrix(0.317562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317562,0.000000,0.000000,0.250000,0,0);}
.m58_c00242{transform:matrix(0.317707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317707,0.000000,0.000000,0.250000,0,0);}
.m1b_c00242{transform:matrix(0.317996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317996,0.000000,0.000000,0.250000,0,0);}
.m72_c00242{transform:matrix(0.321773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321773,0.000000,0.000000,0.250000,0,0);}
.m42_c00242{transform:matrix(0.321816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321816,0.000000,0.000000,0.250000,0,0);}
.m7b_c00242{transform:matrix(0.322297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322297,0.000000,0.000000,0.250000,0,0);}
.m69_c00242{transform:matrix(0.323033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323033,0.000000,0.000000,0.250000,0,0);}
.m15_c00242{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.m3b_c00242{transform:matrix(0.325919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325919,0.000000,0.000000,0.250000,0,0);}
.m25_c00242{transform:matrix(0.326099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326099,0.000000,0.000000,0.250000,0,0);}
.m9_c00242{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m6a_c00242{transform:matrix(0.328605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328605,0.000000,0.000000,0.250000,0,0);}
.m1d_c00242{transform:matrix(0.333076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333076,0.000000,0.000000,0.250000,0,0);}
.m38_c00242{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m43_c00242{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);}
.m4d_c00242{transform:matrix(0.335394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335394,0.000000,0.000000,0.250000,0,0);}
.m6b_c00242{transform:matrix(0.336348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336348,0.000000,0.000000,0.250000,0,0);}
.m13_c00242{transform:matrix(0.336638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336638,0.000000,0.000000,0.250000,0,0);}
.m8c_c00242{transform:matrix(0.336804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336804,0.000000,0.000000,0.250000,0,0);}
.m65_c00242{transform:matrix(0.340048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340048,0.000000,0.000000,0.250000,0,0);}
.m7a_c00242{transform:matrix(0.340746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340746,0.000000,0.000000,0.250000,0,0);}
.m51_c00242{transform:matrix(0.342145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342145,0.000000,0.000000,0.250000,0,0);}
.m20_c00242{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.m81_c00242{transform:matrix(0.344474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344474,0.000000,0.000000,0.250000,0,0);}
.m91_c00242{transform:matrix(0.347013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347013,0.000000,0.000000,0.250000,0,0);}
.m4_c00242{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m54_c00242{transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);}
.m99_c00242{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m5d_c00242{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m37_c00242{transform:matrix(0.387985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387985,0.000000,0.000000,0.250000,0,0);}
.v0_c00242{vertical-align:0.000000px;}
.lsa_c00242{letter-spacing:-2.744280px;}
.ls12_c00242{letter-spacing:-1.693613px;}
.ls11_c00242{letter-spacing:-0.893851px;}
.ls3_c00242{letter-spacing:0.000000px;}
.ls6_c00242{letter-spacing:1.246687px;}
.ls1_c00242{letter-spacing:1.881792px;}
.lsc_c00242{letter-spacing:2.414966px;}
.ls7_c00242{letter-spacing:3.112798px;}
.ls0_c00242{letter-spacing:3.348022px;}
.lsf_c00242{letter-spacing:3.544200px;}
.lsb_c00242{letter-spacing:3.559723px;}
.ls2_c00242{letter-spacing:3.762000px;}
.ls5_c00242{letter-spacing:3.801610px;}
.ls4_c00242{letter-spacing:3.920400px;}
.ls8_c00242{letter-spacing:48.470598px;}
.lse_c00242{letter-spacing:49.896198px;}
.ls10_c00242{letter-spacing:51.321798px;}
.lsd_c00242{letter-spacing:52.747398px;}
.ls9_c00242{letter-spacing:54.172998px;}
.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;}
}
.ws1_c00242{word-spacing:-22.950022px;}
.ws3_c00242{word-spacing:-19.602000px;}
.ws2_c00242{word-spacing:-4.156020px;}
.ws0_c00242{word-spacing:-0.314424px;}
.ws6_c00242{word-spacing:0.000000px;}
.ws4_c00242{word-spacing:0.784476px;}
.ws5_c00242{word-spacing:2.665872px;}
._4_c00242{margin-left:-2.430648px;}
._3_c00242{width:5.254128px;}
._6_c00242{width:6.429456px;}
._c_c00242{width:7.683984px;}
._5_c00242{width:9.487368px;}
._8_c00242{width:10.585080px;}
._b_c00242{width:17.092944px;}
._0_c00242{width:20.856528px;}
._2_c00242{width:22.267476px;}
._a_c00242{width:32.068872px;}
._7_c00242{width:33.480612px;}
._1_c00242{width:39.476448px;}
._d_c00242{width:46.887984px;}
._9_c00242{width:300.833948px;}
.fc0_c00242{color:transparent;}
.fsd_c00242{font-size:28.512000px;}
.fs1_c00242{font-size:38.808000px;}
.fs5_c00242{font-size:48.470598px;}
.fs6_c00242{font-size:49.896198px;}
.fsf_c00242{font-size:50.490000px;}
.fse_c00242{font-size:51.321798px;}
.fsa_c00242{font-size:52.747398px;}
.fs7_c00242{font-size:54.172998px;}
.fsc_c00242{font-size:61.776198px;}
.fs4_c00242{font-size:66.330000px;}
.fs9_c00242{font-size:70.884000px;}
.fs0_c00242{font-size:75.240000px;}
.fs3_c00242{font-size:76.032198px;}
.fs2_c00242{font-size:78.408000px;}
.fsb_c00242{font-size:78.804000px;}
.fs8_c00242{font-size:83.556198px;}
.y0_c00242{bottom:0.000000px;}
.y1_c00242{bottom:76.500000px;}
.y1c_c00242{bottom:146.743785px;}
.y1b_c00242{bottom:177.755535px;}
.y1a_c00242{bottom:210.900735px;}
.y19_c00242{bottom:244.040985px;}
.y18_c00242{bottom:276.834735px;}
.y17_c00242{bottom:309.267135px;}
.y16_c00242{bottom:342.768735px;}
.y15_c00242{bottom:375.557535px;}
.y14_c00242{bottom:399.436335px;}
.y13_c00242{bottom:407.628585px;}
.y12_c00242{bottom:471.067785px;}
.y11_c00242{bottom:503.500185px;}
.y10_c00242{bottom:535.576185px;}
.yf_c00242{bottom:568.008585px;}
.y1d_c00242{bottom:586.184985px;}
.ye_c00242{bottom:600.797385px;}
.yd_c00242{bottom:632.878335px;}
.yc_c00242{bottom:664.949385px;}
.yb_c00242{bottom:688.120335px;}
.ya_c00242{bottom:697.738185px;}
.y9_c00242{bottom:730.170585px;}
.y8_c00242{bottom:792.896985px;}
.y7_c00242{bottom:826.047135px;}
.y6_c00242{bottom:858.479535px;}
.y5_c00242{bottom:890.906985px;}
.y4_c00242{bottom:923.700735px;}
.y3_c00242{bottom:1047.010185px;}
.y2_c00242{bottom:1071.245385px;}
.h6_c00242{height:32.281418px;}
.hc_c00242{height:33.230868px;}
.hf_c00242{height:34.180317px;}
.hb_c00242{height:35.129767px;}
.h8_c00242{height:36.079217px;}
.h3_c00242{height:40.475531px;}
.h7_c00242{height:52.040175px;}
.h11_c00242{height:52.659492px;}
.he_c00242{height:64.430644px;}
.h10_c00242{height:69.180117px;}
.ha_c00242{height:69.568770px;}
.h2_c00242{height:73.843945px;}
.h5_c00242{height:76.626200px;}
.h4_c00242{height:76.953164px;}
.hd_c00242{height:77.341816px;}
.h9_c00242{height:82.005839px;}
.h1_c00242{height:1110.000000px;}
.h0_c00242{height:1263.000000px;}
.w1_c00242{width:751.500000px;}
.w0_c00242{width:892.500000px;}
.x0_c00242{left:0.000000px;}
.x10_c00242{left:61.895235px;}
.x43_c00242{left:63.078285px;}
.x4_c00242{left:64.231635px;}
.x1_c00242{left:70.500000px;}
.x30_c00242{left:74.537535px;}
.x23_c00242{left:85.224585px;}
.x1e_c00242{left:96.970935px;}
.x5d_c00242{left:98.426235px;}
.x11_c00242{left:107.331285px;}
.x59_c00242{left:108.400485px;}
.x24_c00242{left:117.919335px;}
.x19_c00242{left:129.962685px;}
.x4e_c00242{left:139.630035px;}
.x5_c00242{left:141.179385px;}
.x44_c00242{left:151.000185px;}
.x5a_c00242{left:153.296985px;}
.x35_c00242{left:162.271335px;}
.x5e_c00242{left:172.775235px;}
.x6_c00242{left:174.319635px;}
.x27_c00242{left:183.427635px;}
.x3a_c00242{left:185.323485px;}
.x31_c00242{left:195.698685px;}
.x36_c00242{left:205.870935px;}
.x7_c00242{left:207.845985px;}
.x3b_c00242{left:217.483635px;}
.x1a_c00242{left:228.883485px;}
.x51_c00242{left:229.932885px;}
.x45_c00242{left:239.788335px;}
.x4f_c00242{left:240.976335px;}
.x3c_c00242{left:250.712985px;}
.x1b_c00242{left:252.029685px;}
.x12_c00242{left:261.998985px;}
.x37_c00242{left:263.023635px;}
.x28_c00242{left:273.091935px;}
.x29_c00242{left:282.546435px;}
.x13_c00242{left:283.778985px;}
.x3_c00242{left:284.892735px;}
.x1f_c00242{left:294.258135px;}
.x3d_c00242{left:295.545135px;}
.x52_c00242{left:296.584635px;}
.x5f_c00242{left:306.029235px;}
.x2a_c00242{left:317.592435px;}
.x14_c00242{left:327.928035px;}
.x48_c00242{left:330.353535px;}
.x8_c00242{left:339.020985px;}
.x4b_c00242{left:341.297985px;}
.x41_c00242{left:350.262435px;}
.x4c_c00242{left:351.460335px;}
.x15_c00242{left:359.850585px;}
.x3e_c00242{left:361.107885px;}
.x9_c00242{left:372.547335px;}
.x4d_c00242{left:381.982035px;}
.x38_c00242{left:383.412585px;}
.x25_c00242{left:394.594635px;}
.xa_c00242{left:405.118335px;}
.x53_c00242{left:406.281585px;}
.x16_c00242{left:414.726285px;}
.x32_c00242{left:417.057735px;}
.x2b_c00242{left:428.393235px;}
.x20_c00242{left:438.070485px;}
.x26_c00242{left:449.801985px;}
.x2c_c00242{left:459.964335px;}
.x56_c00242{left:471.577035px;}
.xb_c00242{left:481.897785px;}
.x5b_c00242{left:483.293685px;}
.x46_c00242{left:492.975885px;}
.xc_c00242{left:504.365835px;}
.x57_c00242{left:514.206435px;}
.x33_c00242{left:527.111085px;}
.x1c_c00242{left:537.560535px;}
.x5c_c00242{left:538.911885px;}
.x42_c00242{left:547.876335px;}
.x58_c00242{left:549.207885px;}
.xd_c00242{left:560.261235px;}
.x1d_c00242{left:569.478135px;}
.x21_c00242{left:570.562185px;}
.x49_c00242{left:581.160135px;}
.xe_c00242{left:591.703635px;}
.x47_c00242{left:592.738185px;}
.x4a_c00242{left:602.192685px;}
.x22_c00242{left:603.751935px;}
.x17_c00242{left:614.141985px;}
.x34_c00242{left:624.720135px;}
.xf_c00242{left:635.332935px;}
.x39_c00242{left:636.555585px;}
.x50_c00242{left:647.321835px;}
.x2_c00242{left:649.737435px;}
.x18_c00242{left:657.632685px;}
.x2d_c00242{left:658.914735px;}
.x3f_c00242{left:669.680985px;}
.x54_c00242{left:679.962135px;}
.x2e_c00242{left:681.011535px;}
.x40_c00242{left:691.104585px;}
.x55_c00242{left:713.201385px;}
.x2f_c00242{left:715.933785px;}
.x60_c00242{left:738.268185px;}
@media print{
.v0_c00242{vertical-align:0.000000pt;}
.lsa_c00242{letter-spacing:-2.439360pt;}
.ls12_c00242{letter-spacing:-1.505434pt;}
.ls11_c00242{letter-spacing:-0.794534pt;}
.ls3_c00242{letter-spacing:0.000000pt;}
.ls6_c00242{letter-spacing:1.108166pt;}
.ls1_c00242{letter-spacing:1.672704pt;}
.lsc_c00242{letter-spacing:2.146637pt;}
.ls7_c00242{letter-spacing:2.766931pt;}
.ls0_c00242{letter-spacing:2.976019pt;}
.lsf_c00242{letter-spacing:3.150400pt;}
.lsb_c00242{letter-spacing:3.164198pt;}
.ls2_c00242{letter-spacing:3.344000pt;}
.ls5_c00242{letter-spacing:3.379209pt;}
.ls4_c00242{letter-spacing:3.484800pt;}
.ls8_c00242{letter-spacing:43.084976pt;}
.lse_c00242{letter-spacing:44.352176pt;}
.ls10_c00242{letter-spacing:45.619376pt;}
.lsd_c00242{letter-spacing:46.886576pt;}
.ls9_c00242{letter-spacing:48.153776pt;}
.ws1_c00242{word-spacing:-20.400019pt;}
.ws3_c00242{word-spacing:-17.424000pt;}
.ws2_c00242{word-spacing:-3.694240pt;}
.ws0_c00242{word-spacing:-0.279488pt;}
.ws6_c00242{word-spacing:0.000000pt;}
.ws4_c00242{word-spacing:0.697312pt;}
.ws5_c00242{word-spacing:2.369664pt;}
._4_c00242{margin-left:-2.160576pt;}
._3_c00242{width:4.670336pt;}
._6_c00242{width:5.715072pt;}
._c_c00242{width:6.830208pt;}
._5_c00242{width:8.433216pt;}
._8_c00242{width:9.408960pt;}
._b_c00242{width:15.193728pt;}
._0_c00242{width:18.539136pt;}
._2_c00242{width:19.793312pt;}
._a_c00242{width:28.505664pt;}
._7_c00242{width:29.760544pt;}
._1_c00242{width:35.090176pt;}
._d_c00242{width:41.678208pt;}
._9_c00242{width:267.407953pt;}
.fsd_c00242{font-size:25.344000pt;}
.fs1_c00242{font-size:34.496000pt;}
.fs5_c00242{font-size:43.084976pt;}
.fs6_c00242{font-size:44.352176pt;}
.fsf_c00242{font-size:44.880000pt;}
.fse_c00242{font-size:45.619376pt;}
.fsa_c00242{font-size:46.886576pt;}
.fs7_c00242{font-size:48.153776pt;}
.fsc_c00242{font-size:54.912176pt;}
.fs4_c00242{font-size:58.960000pt;}
.fs9_c00242{font-size:63.008000pt;}
.fs0_c00242{font-size:66.880000pt;}
.fs3_c00242{font-size:67.584176pt;}
.fs2_c00242{font-size:69.696000pt;}
.fsb_c00242{font-size:70.048000pt;}
.fs8_c00242{font-size:74.272176pt;}
.y0_c00242{bottom:0.000000pt;}
.y1_c00242{bottom:68.000000pt;}
.y1c_c00242{bottom:130.438920pt;}
.y1b_c00242{bottom:158.004920pt;}
.y1a_c00242{bottom:187.467320pt;}
.y19_c00242{bottom:216.925320pt;}
.y18_c00242{bottom:246.075320pt;}
.y17_c00242{bottom:274.904120pt;}
.y16_c00242{bottom:304.683320pt;}
.y15_c00242{bottom:333.828920pt;}
.y14_c00242{bottom:355.054520pt;}
.y13_c00242{bottom:362.336520pt;}
.y12_c00242{bottom:418.726920pt;}
.y11_c00242{bottom:447.555720pt;}
.y10_c00242{bottom:476.067720pt;}
.yf_c00242{bottom:504.896520pt;}
.y1d_c00242{bottom:521.053320pt;}
.ye_c00242{bottom:534.042120pt;}
.yd_c00242{bottom:562.558520pt;}
.yc_c00242{bottom:591.066120pt;}
.yb_c00242{bottom:611.662520pt;}
.ya_c00242{bottom:620.211720pt;}
.y9_c00242{bottom:649.040520pt;}
.y8_c00242{bottom:704.797320pt;}
.y7_c00242{bottom:734.264120pt;}
.y6_c00242{bottom:763.092920pt;}
.y5_c00242{bottom:791.917320pt;}
.y4_c00242{bottom:821.067320pt;}
.y3_c00242{bottom:930.675720pt;}
.y2_c00242{bottom:952.218120pt;}
.h6_c00242{height:28.694594pt;}
.hc_c00242{height:29.538549pt;}
.hf_c00242{height:30.382504pt;}
.hb_c00242{height:31.226460pt;}
.h8_c00242{height:32.070415pt;}
.h3_c00242{height:35.978250pt;}
.h7_c00242{height:46.257934pt;}
.h11_c00242{height:46.808438pt;}
.he_c00242{height:57.271684pt;}
.h10_c00242{height:61.493438pt;}
.ha_c00242{height:61.838906pt;}
.h2_c00242{height:65.639063pt;}
.h5_c00242{height:68.112177pt;}
.h4_c00242{height:68.402813pt;}
.hd_c00242{height:68.748281pt;}
.h9_c00242{height:72.894079pt;}
.h1_c00242{height:986.666667pt;}
.h0_c00242{height:1122.666667pt;}
.w1_c00242{width:668.000000pt;}
.w0_c00242{width:793.333333pt;}
.x0_c00242{left:0.000000pt;}
.x10_c00242{left:55.017987pt;}
.x43_c00242{left:56.069587pt;}
.x4_c00242{left:57.094787pt;}
.x1_c00242{left:62.666667pt;}
.x30_c00242{left:66.255587pt;}
.x23_c00242{left:75.755187pt;}
.x1e_c00242{left:86.196387pt;}
.x5d_c00242{left:87.489987pt;}
.x11_c00242{left:95.405587pt;}
.x59_c00242{left:96.355987pt;}
.x24_c00242{left:104.817187pt;}
.x19_c00242{left:115.522387pt;}
.x4e_c00242{left:124.115587pt;}
.x5_c00242{left:125.492787pt;}
.x44_c00242{left:134.222387pt;}
.x5a_c00242{left:136.263987pt;}
.x35_c00242{left:144.241187pt;}
.x5e_c00242{left:153.577987pt;}
.x6_c00242{left:154.950787pt;}
.x27_c00242{left:163.046787pt;}
.x3a_c00242{left:164.731987pt;}
.x31_c00242{left:173.954387pt;}
.x36_c00242{left:182.996387pt;}
.x7_c00242{left:184.751987pt;}
.x3b_c00242{left:193.318787pt;}
.x1a_c00242{left:203.451987pt;}
.x51_c00242{left:204.384787pt;}
.x45_c00242{left:213.145187pt;}
.x4f_c00242{left:214.201187pt;}
.x3c_c00242{left:222.855987pt;}
.x1b_c00242{left:224.026387pt;}
.x12_c00242{left:232.887987pt;}
.x37_c00242{left:233.798787pt;}
.x28_c00242{left:242.748387pt;}
.x29_c00242{left:251.152387pt;}
.x13_c00242{left:252.247987pt;}
.x3_c00242{left:253.237987pt;}
.x1f_c00242{left:261.562787pt;}
.x3d_c00242{left:262.706787pt;}
.x52_c00242{left:263.630787pt;}
.x5f_c00242{left:272.025987pt;}
.x2a_c00242{left:282.304387pt;}
.x14_c00242{left:291.491587pt;}
.x48_c00242{left:293.647587pt;}
.x8_c00242{left:301.351987pt;}
.x4b_c00242{left:303.375987pt;}
.x41_c00242{left:311.344387pt;}
.x4c_c00242{left:312.409187pt;}
.x15_c00242{left:319.867187pt;}
.x3e_c00242{left:320.984787pt;}
.x9_c00242{left:331.153187pt;}
.x4d_c00242{left:339.539587pt;}
.x38_c00242{left:340.811187pt;}
.x25_c00242{left:350.750787pt;}
.xa_c00242{left:360.105187pt;}
.x53_c00242{left:361.139187pt;}
.x16_c00242{left:368.645587pt;}
.x32_c00242{left:370.717987pt;}
.x2b_c00242{left:380.793987pt;}
.x20_c00242{left:389.395987pt;}
.x26_c00242{left:399.823987pt;}
.x2c_c00242{left:408.857187pt;}
.x56_c00242{left:419.179587pt;}
.xb_c00242{left:428.353587pt;}
.x5b_c00242{left:429.594387pt;}
.x46_c00242{left:438.200787pt;}
.xc_c00242{left:448.325187pt;}
.x57_c00242{left:457.072387pt;}
.x33_c00242{left:468.543187pt;}
.x1c_c00242{left:477.831587pt;}
.x5c_c00242{left:479.032787pt;}
.x42_c00242{left:487.001187pt;}
.x58_c00242{left:488.184787pt;}
.xd_c00242{left:498.009987pt;}
.x1d_c00242{left:506.202787pt;}
.x21_c00242{left:507.166387pt;}
.x49_c00242{left:516.586787pt;}
.xe_c00242{left:525.958787pt;}
.x47_c00242{left:526.878387pt;}
.x4a_c00242{left:535.282387pt;}
.x22_c00242{left:536.668387pt;}
.x17_c00242{left:545.903987pt;}
.x34_c00242{left:555.306787pt;}
.xf_c00242{left:564.740387pt;}
.x39_c00242{left:565.827187pt;}
.x50_c00242{left:575.397187pt;}
.x2_c00242{left:577.544387pt;}
.x18_c00242{left:584.562387pt;}
.x2d_c00242{left:585.701987pt;}
.x3f_c00242{left:595.271987pt;}
.x54_c00242{left:604.410787pt;}
.x2e_c00242{left:605.343587pt;}
.x40_c00242{left:614.315187pt;}
.x55_c00242{left:633.956787pt;}
.x2f_c00242{left:636.385587pt;}
.x60_c00242{left:656.238387pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7b607bf4407855a980fad431.woff2')format("woff");}.ff1_c00243{font-family:ff1_c00243;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00243;src:url('chunks/assets/font_a66adb2875e73ddc27b83ff4.woff2')format("woff");}.ff2_c00243{font-family:ff2_c00243;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00243;src:url('chunks/assets/font_e1e969628c2490bbe1a197b4.woff2')format("woff");}.ff3_c00243{font-family:ff3_c00243;line-height:0.666000;font-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_c00243{transform:matrix(0.034723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.034723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.034723,0.000000,0.000000,0.250000,0,0);}
.mb2_c00243{transform:matrix(0.069445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.069445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.069445,0.000000,0.000000,0.250000,0,0);}
.ma5_c00243{transform:matrix(0.103217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103217,0.000000,0.000000,0.250000,0,0);}
.m5e_c00243{transform:matrix(0.133215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133215,0.000000,0.000000,0.250000,0,0);}
.maf_c00243{transform:matrix(0.138456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138456,0.000000,0.000000,0.250000,0,0);}
.m7f_c00243{transform:matrix(0.144588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144588,0.000000,0.000000,0.250000,0,0);}
.m60_c00243{transform:matrix(0.156711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156711,0.000000,0.000000,0.250000,0,0);}
.m9_c00243{transform:matrix(0.173984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173984,0.000000,0.000000,0.250000,0,0);}
.m7e_c00243{transform:matrix(0.176623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176623,0.000000,0.000000,0.250000,0,0);}
.mb0_c00243{transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);}
.mb4_c00243{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00243{transform:matrix(0.189703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189703,0.000000,0.000000,0.250000,0,0);}
.m33_c00243{transform:matrix(0.196729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196729,0.000000,0.000000,0.250000,0,0);}
.m75_c00243{transform:matrix(0.199410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199410,0.000000,0.000000,0.250000,0,0);}
.m44_c00243{transform:matrix(0.216669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216669,0.000000,0.000000,0.250000,0,0);}
.ma4_c00243{transform:matrix(0.224831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224831,0.000000,0.000000,0.250000,0,0);}
.mcb_c00243{transform:matrix(0.229588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229588,0.000000,0.000000,0.250000,0,0);}
.m7_c00243{transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);}
.m95_c00243{transform:matrix(0.234313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234313,0.000000,0.000000,0.250000,0,0);}
.m57_c00243{transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);}
.mb3_c00243{transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);}
.ma8_c00243{transform:matrix(0.247349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247349,0.000000,0.000000,0.250000,0,0);}
.m1_c00243{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00243{transform:matrix(0.250165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250165,0.000000,0.000000,0.250000,0,0);}
.m39_c00243{transform:matrix(0.250823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250823,0.000000,0.000000,0.250000,0,0);}
.m79_c00243{transform:matrix(0.250919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250919,0.000000,0.000000,0.250000,0,0);}
.m22_c00243{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.m15_c00243{transform:matrix(0.252369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252369,0.000000,0.000000,0.250000,0,0);}
.mac_c00243{transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);}
.m5f_c00243{transform:matrix(0.255239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255239,0.000000,0.000000,0.250000,0,0);}
.m77_c00243{transform:matrix(0.257106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257106,0.000000,0.000000,0.250000,0,0);}
.m16_c00243{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m37_c00243{transform:matrix(0.258698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258698,0.000000,0.000000,0.250000,0,0);}
.mf_c00243{transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);}
.ma1_c00243{transform:matrix(0.260503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260503,0.000000,0.000000,0.250000,0,0);}
.mb6_c00243{transform:matrix(0.260756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260756,0.000000,0.000000,0.250000,0,0);}
.m9f_c00243{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.m32_c00243{transform:matrix(0.261624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261624,0.000000,0.000000,0.250000,0,0);}
.m3f_c00243{transform:matrix(0.261717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261717,0.000000,0.000000,0.250000,0,0);}
.m5_c00243{transform:matrix(0.262150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262150,0.000000,0.000000,0.250000,0,0);}
.m17_c00243{transform:matrix(0.262744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262744,0.000000,0.000000,0.250000,0,0);}
.m36_c00243{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m64_c00243{transform:matrix(0.263506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263506,0.000000,0.000000,0.250000,0,0);}
.m8f_c00243{transform:matrix(0.263563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263563,0.000000,0.000000,0.250000,0,0);}
.m35_c00243{transform:matrix(0.263720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263720,0.000000,0.000000,0.250000,0,0);}
.m24_c00243{transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);}
.m4c_c00243{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m2f_c00243{transform:matrix(0.264839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264839,0.000000,0.000000,0.250000,0,0);}
.md7_c00243{transform:matrix(0.265115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265115,0.000000,0.000000,0.250000,0,0);}
.mcf_c00243{transform:matrix(0.265600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265600,0.000000,0.000000,0.250000,0,0);}
.m5b_c00243{transform:matrix(0.266174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266174,0.000000,0.000000,0.250000,0,0);}
.m10_c00243{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m4a_c00243{transform:matrix(0.266946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266946,0.000000,0.000000,0.250000,0,0);}
.m4e_c00243{transform:matrix(0.267123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267123,0.000000,0.000000,0.250000,0,0);}
.m40_c00243{transform:matrix(0.267891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267891,0.000000,0.000000,0.250000,0,0);}
.m30_c00243{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m90_c00243{transform:matrix(0.268088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268088,0.000000,0.000000,0.250000,0,0);}
.ma2_c00243{transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);}
.m29_c00243{transform:matrix(0.269854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269854,0.000000,0.000000,0.250000,0,0);}
.m80_c00243{transform:matrix(0.269924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269924,0.000000,0.000000,0.250000,0,0);}
.m4b_c00243{transform:matrix(0.270180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270180,0.000000,0.000000,0.250000,0,0);}
.md1_c00243{transform:matrix(0.270186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270186,0.000000,0.000000,0.250000,0,0);}
.m9b_c00243{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m73_c00243{transform:matrix(0.271197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271197,0.000000,0.000000,0.250000,0,0);}
.m6b_c00243{transform:matrix(0.272357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272357,0.000000,0.000000,0.250000,0,0);}
.m97_c00243{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.md6_c00243{transform:matrix(0.273802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273802,0.000000,0.000000,0.250000,0,0);}
.m6c_c00243{transform:matrix(0.273807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273807,0.000000,0.000000,0.250000,0,0);}
.md5_c00243{transform:matrix(0.273905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273905,0.000000,0.000000,0.250000,0,0);}
.m31_c00243{transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);}
.m9c_c00243{transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);}
.m21_c00243{transform:matrix(0.275040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275040,0.000000,0.000000,0.250000,0,0);}
.m85_c00243{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m41_c00243{transform:matrix(0.276290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276290,0.000000,0.000000,0.250000,0,0);}
.m50_c00243{transform:matrix(0.276607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276607,0.000000,0.000000,0.250000,0,0);}
.ma9_c00243{transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);}
.m48_c00243{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.md2_c00243{transform:matrix(0.277931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277931,0.000000,0.000000,0.250000,0,0);}
.m0_c00243{transform:matrix(0.278436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278436,0.000000,0.000000,0.250000,0,0);}
.mb7_c00243{transform:matrix(0.278967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278967,0.000000,0.000000,0.250000,0,0);}
.mc4_c00243{transform:matrix(0.279294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279294,0.000000,0.000000,0.250000,0,0);}
.m28_c00243{transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);}
.mbd_c00243{transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);}
.md_c00243{transform:matrix(0.280460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280460,0.000000,0.000000,0.250000,0,0);}
.m74_c00243{transform:matrix(0.281374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281374,0.000000,0.000000,0.250000,0,0);}
.m5d_c00243{transform:matrix(0.281383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281383,0.000000,0.000000,0.250000,0,0);}
.m78_c00243{transform:matrix(0.281612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281612,0.000000,0.000000,0.250000,0,0);}
.m82_c00243{transform:matrix(0.281783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281783,0.000000,0.000000,0.250000,0,0);}
.mbe_c00243{transform:matrix(0.281796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281796,0.000000,0.000000,0.250000,0,0);}
.mc8_c00243{transform:matrix(0.282254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282254,0.000000,0.000000,0.250000,0,0);}
.m1b_c00243{transform:matrix(0.283330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283330,0.000000,0.000000,0.250000,0,0);}
.mca_c00243{transform:matrix(0.283453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283453,0.000000,0.000000,0.250000,0,0);}
.m8a_c00243{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m71_c00243{transform:matrix(0.284567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284567,0.000000,0.000000,0.250000,0,0);}
.m25_c00243{transform:matrix(0.284588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284588,0.000000,0.000000,0.250000,0,0);}
.m8b_c00243{transform:matrix(0.285694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285694,0.000000,0.000000,0.250000,0,0);}
.m54_c00243{transform:matrix(0.285890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285890,0.000000,0.000000,0.250000,0,0);}
.m20_c00243{transform:matrix(0.286523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286523,0.000000,0.000000,0.250000,0,0);}
.m42_c00243{transform:matrix(0.286659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286659,0.000000,0.000000,0.250000,0,0);}
.m11_c00243{transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);}
.m69_c00243{transform:matrix(0.287177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287177,0.000000,0.000000,0.250000,0,0);}
.m52_c00243{transform:matrix(0.287333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287333,0.000000,0.000000,0.250000,0,0);}
.m3b_c00243{transform:matrix(0.287521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287521,0.000000,0.000000,0.250000,0,0);}
.m7c_c00243{transform:matrix(0.287575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287575,0.000000,0.000000,0.250000,0,0);}
.mc1_c00243{transform:matrix(0.287876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287876,0.000000,0.000000,0.250000,0,0);}
.mc0_c00243{transform:matrix(0.288681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288681,0.000000,0.000000,0.250000,0,0);}
.m3_c00243{transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);}
.m63_c00243{transform:matrix(0.289407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289407,0.000000,0.000000,0.250000,0,0);}
.m62_c00243{transform:matrix(0.289601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289601,0.000000,0.000000,0.250000,0,0);}
.m67_c00243{transform:matrix(0.290004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290004,0.000000,0.000000,0.250000,0,0);}
.ma0_c00243{transform:matrix(0.290107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290107,0.000000,0.000000,0.250000,0,0);}
.m68_c00243{transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);}
.md9_c00243{transform:matrix(0.290762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290762,0.000000,0.000000,0.250000,0,0);}
.m34_c00243{transform:matrix(0.291185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291185,0.000000,0.000000,0.250000,0,0);}
.m93_c00243{transform:matrix(0.291263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291263,0.000000,0.000000,0.250000,0,0);}
.m4d_c00243{transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);}
.ma3_c00243{transform:matrix(0.291917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291917,0.000000,0.000000,0.250000,0,0);}
.m2b_c00243{transform:matrix(0.292948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292948,0.000000,0.000000,0.250000,0,0);}
.mab_c00243{transform:matrix(0.293489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293489,0.000000,0.000000,0.250000,0,0);}
.m2e_c00243{transform:matrix(0.293864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293864,0.000000,0.000000,0.250000,0,0);}
.m26_c00243{transform:matrix(0.294443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294443,0.000000,0.000000,0.250000,0,0);}
.m1e_c00243{transform:matrix(0.295160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295160,0.000000,0.000000,0.250000,0,0);}
.mad_c00243{transform:matrix(0.295484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295484,0.000000,0.000000,0.250000,0,0);}
.m5a_c00243{transform:matrix(0.296073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296073,0.000000,0.000000,0.250000,0,0);}
.m9a_c00243{transform:matrix(0.296652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296652,0.000000,0.000000,0.250000,0,0);}
.m23_c00243{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m58_c00243{transform:matrix(0.297107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297107,0.000000,0.000000,0.250000,0,0);}
.mb9_c00243{transform:matrix(0.297275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297275,0.000000,0.000000,0.250000,0,0);}
.m13_c00243{transform:matrix(0.297925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297925,0.000000,0.000000,0.250000,0,0);}
.m45_c00243{transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);}
.mb8_c00243{transform:matrix(0.298177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298177,0.000000,0.000000,0.250000,0,0);}
.m96_c00243{transform:matrix(0.298987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298987,0.000000,0.000000,0.250000,0,0);}
.m66_c00243{transform:matrix(0.299102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299102,0.000000,0.000000,0.250000,0,0);}
.m38_c00243{transform:matrix(0.299231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299231,0.000000,0.000000,0.250000,0,0);}
.mbb_c00243{transform:matrix(0.300266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300266,0.000000,0.000000,0.250000,0,0);}
.m56_c00243{transform:matrix(0.300360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300360,0.000000,0.000000,0.250000,0,0);}
.m3d_c00243{transform:matrix(0.302227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302227,0.000000,0.000000,0.250000,0,0);}
.mae_c00243{transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);}
.m9d_c00243{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.mc7_c00243{transform:matrix(0.302878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302878,0.000000,0.000000,0.250000,0,0);}
.m6f_c00243{transform:matrix(0.302970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302970,0.000000,0.000000,0.250000,0,0);}
.m1c_c00243{transform:matrix(0.303158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303158,0.000000,0.000000,0.250000,0,0);}
.ma6_c00243{transform:matrix(0.303309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303309,0.000000,0.000000,0.250000,0,0);}
.mc3_c00243{transform:matrix(0.303404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303404,0.000000,0.000000,0.250000,0,0);}
.m8_c00243{transform:matrix(0.303509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303509,0.000000,0.000000,0.250000,0,0);}
.m9e_c00243{transform:matrix(0.304073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304073,0.000000,0.000000,0.250000,0,0);}
.m3a_c00243{transform:matrix(0.304766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304766,0.000000,0.000000,0.250000,0,0);}
.m3e_c00243{transform:matrix(0.304857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304857,0.000000,0.000000,0.250000,0,0);}
.m2c_c00243{transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);}
.mc_c00243{transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);}
.mba_c00243{transform:matrix(0.305752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305752,0.000000,0.000000,0.250000,0,0);}
.mc9_c00243{transform:matrix(0.305775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305775,0.000000,0.000000,0.250000,0,0);}
.mc2_c00243{transform:matrix(0.306878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306878,0.000000,0.000000,0.250000,0,0);}
.md4_c00243{transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);}
.m2a_c00243{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.mc5_c00243{transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);}
.m76_c00243{transform:matrix(0.309092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309092,0.000000,0.000000,0.250000,0,0);}
.m2_c00243{transform:matrix(0.309786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309786,0.000000,0.000000,0.250000,0,0);}
.m94_c00243{transform:matrix(0.309943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309943,0.000000,0.000000,0.250000,0,0);}
.m2d_c00243{transform:matrix(0.310352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310352,0.000000,0.000000,0.250000,0,0);}
.mbc_c00243{transform:matrix(0.310739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310739,0.000000,0.000000,0.250000,0,0);}
.m98_c00243{transform:matrix(0.310783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310783,0.000000,0.000000,0.250000,0,0);}
.m27_c00243{transform:matrix(0.312495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312495,0.000000,0.000000,0.250000,0,0);}
.m87_c00243{transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);}
.m47_c00243{transform:matrix(0.313843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313843,0.000000,0.000000,0.250000,0,0);}
.m89_c00243{transform:matrix(0.315347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315347,0.000000,0.000000,0.250000,0,0);}
.m6a_c00243{transform:matrix(0.315515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315515,0.000000,0.000000,0.250000,0,0);}
.m7a_c00243{transform:matrix(0.315917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315917,0.000000,0.000000,0.250000,0,0);}
.m49_c00243{transform:matrix(0.317004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317004,0.000000,0.000000,0.250000,0,0);}
.maa_c00243{transform:matrix(0.317031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317031,0.000000,0.000000,0.250000,0,0);}
.m46_c00243{transform:matrix(0.317237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317237,0.000000,0.000000,0.250000,0,0);}
.m86_c00243{transform:matrix(0.317925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317925,0.000000,0.000000,0.250000,0,0);}
.mcc_c00243{transform:matrix(0.318444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318444,0.000000,0.000000,0.250000,0,0);}
.m14_c00243{transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);}
.m88_c00243{transform:matrix(0.319295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319295,0.000000,0.000000,0.250000,0,0);}
.m4f_c00243{transform:matrix(0.319329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319329,0.000000,0.000000,0.250000,0,0);}
.m12_c00243{transform:matrix(0.321083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321083,0.000000,0.000000,0.250000,0,0);}
.m6d_c00243{transform:matrix(0.321107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321107,0.000000,0.000000,0.250000,0,0);}
.m65_c00243{transform:matrix(0.321492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321492,0.000000,0.000000,0.250000,0,0);}
.mcd_c00243{transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);}
.m6_c00243{transform:matrix(0.322037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322037,0.000000,0.000000,0.250000,0,0);}
.m61_c00243{transform:matrix(0.323146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323146,0.000000,0.000000,0.250000,0,0);}
.mc6_c00243{transform:matrix(0.323533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323533,0.000000,0.000000,0.250000,0,0);}
.m59_c00243{transform:matrix(0.323962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323962,0.000000,0.000000,0.250000,0,0);}
.mce_c00243{transform:matrix(0.324242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324242,0.000000,0.000000,0.250000,0,0);}
.m6e_c00243{transform:matrix(0.325136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325136,0.000000,0.000000,0.250000,0,0);}
.md3_c00243{transform:matrix(0.326049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326049,0.000000,0.000000,0.250000,0,0);}
.m8e_c00243{transform:matrix(0.326126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326126,0.000000,0.000000,0.250000,0,0);}
.ma7_c00243{transform:matrix(0.326904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326904,0.000000,0.000000,0.250000,0,0);}
.mbf_c00243{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m53_c00243{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.m8d_c00243{transform:matrix(0.329865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329865,0.000000,0.000000,0.250000,0,0);}
.m83_c00243{transform:matrix(0.330299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330299,0.000000,0.000000,0.250000,0,0);}
.m5c_c00243{transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);}
.md8_c00243{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m8c_c00243{transform:matrix(0.335051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335051,0.000000,0.000000,0.250000,0,0);}
.m92_c00243{transform:matrix(0.335559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335559,0.000000,0.000000,0.250000,0,0);}
.me_c00243{transform:matrix(0.336348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336348,0.000000,0.000000,0.250000,0,0);}
.m4_c00243{transform:matrix(0.339419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339419,0.000000,0.000000,0.250000,0,0);}
.mb5_c00243{transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);}
.mb_c00243{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m43_c00243{transform:matrix(0.351275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351275,0.000000,0.000000,0.250000,0,0);}
.m1a_c00243{transform:matrix(0.355222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355222,0.000000,0.000000,0.250000,0,0);}
.m99_c00243{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m55_c00243{transform:matrix(0.358046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358046,0.000000,0.000000,0.250000,0,0);}
.ma_c00243{transform:matrix(0.360646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360646,0.000000,0.000000,0.250000,0,0);}
.md0_c00243{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m19_c00243{transform:matrix(0.374714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374714,0.000000,0.000000,0.250000,0,0);}
.m72_c00243{transform:matrix(0.375438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375438,0.000000,0.000000,0.250000,0,0);}
.m1d_c00243{transform:matrix(0.378961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378961,0.000000,0.000000,0.250000,0,0);}
.m51_c00243{transform:matrix(0.385852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385852,0.000000,0.000000,0.250000,0,0);}
.m81_c00243{transform:matrix(0.396487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396487,0.000000,0.000000,0.250000,0,0);}
.m70_c00243{transform:matrix(0.400876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400876,0.000000,0.000000,0.250000,0,0);}
.m1f_c00243{transform:matrix(0.407787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407787,0.000000,0.000000,0.250000,0,0);}
.m18_c00243{transform:matrix(0.414699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414699,0.000000,0.000000,0.250000,0,0);}
.m7d_c00243{transform:matrix(0.423078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423078,0.000000,0.000000,0.250000,0,0);}
.m91_c00243{transform:matrix(0.440068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440068,0.000000,0.000000,0.250000,0,0);}
.m84_c00243{transform:matrix(0.447789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447789,0.000000,0.000000,0.250000,0,0);}
.v0_c00243{vertical-align:0.000000px;}
.ls5_c00243{letter-spacing:-2.744280px;}
.ls10_c00243{letter-spacing:-1.693613px;}
.ls4_c00243{letter-spacing:0.000000px;}
.ls0_c00243{letter-spacing:0.815443px;}
.lse_c00243{letter-spacing:1.082030px;}
.lsc_c00243{letter-spacing:1.246687px;}
.ls7_c00243{letter-spacing:1.278050px;}
.lsa_c00243{letter-spacing:1.764180px;}
.ls9_c00243{letter-spacing:1.819066px;}
.ls8_c00243{letter-spacing:2.383603px;}
.ls2_c00243{letter-spacing:2.943864px;}
.ls1_c00243{letter-spacing:3.112798px;}
.lsd_c00243{letter-spacing:3.191206px;}
.ls3_c00243{letter-spacing:3.920400px;}
.ls6_c00243{letter-spacing:21.384000px;}
.lsb_c00243{letter-spacing:49.896198px;}
.lsf_c00243{letter-spacing:51.321798px;}
.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;}
}
.ws7_c00243{word-spacing:-22.793206px;}
.ws5_c00243{word-spacing:-21.421066px;}
.ws6_c00243{word-spacing:-21.366180px;}
.ws1_c00243{word-spacing:-19.602000px;}
.wsa_c00243{word-spacing:-17.908387px;}
.ws3_c00243{word-spacing:-2.038608px;}
.wsb_c00243{word-spacing:0.000000px;}
.ws2_c00243{word-spacing:0.000396px;}
.ws0_c00243{word-spacing:0.627264px;}
.ws4_c00243{word-spacing:2.195424px;}
.ws8_c00243{word-spacing:2.352240px;}
.ws9_c00243{word-spacing:13.858182px;}
._17_c00243{margin-left:-13.015728px;}
._a_c00243{margin-left:-11.761200px;}
._1a_c00243{margin-left:-6.977916px;}
._0_c00243{margin-left:-2.665872px;}
._18_c00243{width:2.372832px;}
._16_c00243{width:3.449952px;}
._8_c00243{width:4.468464px;}
._9_c00243{width:6.351048px;}
._1_c00243{width:8.624880px;}
._5_c00243{width:10.585080px;}
._d_c00243{width:11.918016px;}
._1e_c00243{width:13.643388px;}
._11_c00243{width:15.681600px;}
._3_c00243{width:16.858116px;}
._c_c00243{width:20.856528px;}
._1b_c00243{width:22.267872px;}
._13_c00243{width:23.679216px;}
._12_c00243{width:28.148472px;}
._e_c00243{width:30.109464px;}
._1d_c00243{width:31.284396px;}
._4_c00243{width:32.617728px;}
._1c_c00243{width:34.029072px;}
._10_c00243{width:35.159256px;}
._7_c00243{width:36.773352px;}
._b_c00243{width:38.890368px;}
._f_c00243{width:39.984120px;}
._15_c00243{width:41.007384px;}
._19_c00243{width:42.294384px;}
._2_c00243{width:45.304776px;}
._6_c00243{width:46.495944px;}
._14_c00243{width:47.802744px;}
.fc0_c00243{color:transparent;}
.fs3_c00243{font-size:21.384000px;}
.fs6_c00243{font-size:28.314000px;}
.fs1_c00243{font-size:33.264000px;}
.fs4_c00243{font-size:49.896198px;}
.fs5_c00243{font-size:51.321798px;}
.fs7_c00243{font-size:60.192000px;}
.fs8_c00243{font-size:66.528000px;}
.fs2_c00243{font-size:71.280000px;}
.fs0_c00243{font-size:78.408000px;}
.y0_c00243{bottom:0.000000px;}
.y1_c00243{bottom:76.500000px;}
.y1c_c00243{bottom:144.605385px;}
.y1b_c00243{bottom:174.547935px;}
.y1a_c00243{bottom:240.481935px;}
.y19_c00243{bottom:272.201535px;}
.y18_c00243{bottom:304.628985px;}
.y17_c00243{bottom:336.353535px;}
.y16_c00243{bottom:369.137385px;}
.y15_c00243{bottom:400.500585px;}
.y14_c00243{bottom:432.225135px;}
.y13_c00243{bottom:464.657535px;}
.y12_c00243{bottom:497.084985px;}
.y11_c00243{bottom:529.522335px;}
.y10_c00243{bottom:529.524315px;}
.yf_c00243{bottom:561.593385px;}
.ye_c00243{bottom:594.382185px;}
.y1e_c00243{bottom:636.442335px;}
.yd_c00243{bottom:658.534185px;}
.yc_c00243{bottom:690.615135px;}
.yb_c00243{bottom:722.691135px;}
.ya_c00243{bottom:749.421135px;}
.y9_c00243{bottom:754.762185px;}
.y8_c00243{bottom:787.194585px;}
.y1d_c00243{bottom:787.912335px;}
.y7_c00243{bottom:819.275535px;}
.y6_c00243{bottom:852.064335px;}
.y5_c00243{bottom:884.853135px;}
.y4_c00243{bottom:920.493135px;}
.y3_c00243{bottom:1036.318185px;}
.y2_c00243{bottom:1067.681385px;}
.h5_c00243{height:14.241744px;}
.h8_c00243{height:29.530617px;}
.h6_c00243{height:33.230868px;}
.h7_c00243{height:34.180317px;}
.h3_c00243{height:34.693313px;}
.h9_c00243{height:69.386625px;}
.h4_c00243{height:74.342813px;}
.h2_c00243{height:76.953164px;}
.h1_c00243{height:1110.000000px;}
.h0_c00243{height:1263.000000px;}
.w1_c00243{width:751.500000px;}
.w0_c00243{width:892.500000px;}
.x0_c00243{left:0.000000px;}
.x4e_c00243{left:62.255793px;}
.x11_c00243{left:63.479235px;}
.x70_c00243{left:64.484085px;}
.x1_c00243{left:70.500000px;}
.x58_c00243{left:85.417635px;}
.x12_c00243{left:95.040435px;}
.x5f_c00243{left:96.634335px;}
.x13_c00243{left:107.321385px;}
.x6b_c00243{left:108.346035px;}
.x30_c00243{left:116.464035px;}
.x4_c00243{left:117.755985px;}
.x6e_c00243{left:118.770735px;}
.x14_c00243{left:129.091485px;}
.x21_c00243{left:139.897335px;}
.x27_c00243{left:142.426785px;}
.x41_c00243{left:151.188285px;}
.x22_c00243{left:161.880285px;}
.x43_c00243{left:173.096985px;}
.x6f_c00243{left:174.666135px;}
.x15_c00243{left:185.011635px;}
.x53_c00243{left:194.119635px;}
.x3b_c00243{left:195.619485px;}
.x60_c00243{left:205.163085px;}
.x5_c00243{left:206.167935px;}
.x28_c00243{left:216.226335px;}
.x6c_c00243{left:217.448985px;}
.x23_c00243{left:228.170685px;}
.x66_c00243{left:229.225035px;}
.x6_c00243{left:239.030985px;}
.x4f_c00243{left:240.268485px;}
.x54_c00243{left:241.966335px;}
.x16_c00243{left:250.247685px;}
.x31_c00243{left:260.053635px;}
.x3c_c00243{left:261.706935px;}
.x71_c00243{left:262.934535px;}
.x17_c00243{left:272.720685px;}
.x3_c00243{left:279.215085px;}
.x65_c00243{left:282.496935px;}
.x29_c00243{left:283.531485px;}
.x67_c00243{left:285.120435px;}
.x32_c00243{left:294.485835px;}
.x47_c00243{left:295.866885px;}
.x24_c00243{left:297.247935px;}
.x18_c00243{left:305.860935px;}
.x33_c00243{left:316.379685px;}
.x7_c00243{left:317.562735px;}
.x2a_c00243{left:326.027235px;}
.x44_c00243{left:327.606285px;}
.x19_c00243{left:328.655685px;}
.x8_c00243{left:339.011085px;}
.x1a_c00243{left:349.673385px;}
.x48_c00243{left:361.117785px;}
.x50_c00243{left:363.498735px;}
.x9_c00243{left:371.245485px;}
.x6d_c00243{left:373.171035px;}
.x34_c00243{left:381.625635px;}
.x1b_c00243{left:382.630485px;}
.x55_c00243{left:383.877885px;}
.x49_c00243{left:394.559985px;}
.x42_c00243{left:396.698385px;}
.x5a_c00243{left:404.816385px;}
.x68_c00243{left:406.004385px;}
.x25_c00243{left:415.775685px;}
.x35_c00243{left:418.027935px;}
.x2b_c00243{left:427.398285px;}
.xa_c00243{left:438.288285px;}
.x1c_c00243{left:448.222935px;}
.x5b_c00243{left:449.851485px;}
.x36_c00243{left:459.830685px;}
.x26_c00243{left:470.676135px;}
.x37_c00243{left:481.615635px;}
.x69_c00243{left:489.971235px;}
.xb_c00243{left:492.070035px;}
.x4b_c00243{left:493.228335px;}
.x45_c00243{left:502.762035px;}
.x3d_c00243{left:504.712335px;}
.xc_c00243{left:514.528185px;}
.x59_c00243{left:515.706285px;}
.x2c_c00243{left:524.542035px;}
.x1d_c00243{left:525.764685px;}
.x6a_c00243{left:527.135835px;}
.x38_c00243{left:536.332935px;}
.xd_c00243{left:537.392235px;}
.xe_c00243{left:548.608935px;}
.x2d_c00243{left:558.573285px;}
.x3e_c00243{left:559.583085px;}
.x39_c00243{left:569.963235px;}
.x5c_c00243{left:571.017585px;}
.x4a_c00243{left:580.447335px;}
.x1e_c00243{left:581.650185px;}
.x72_c00243{left:591.149235px;}
.xf_c00243{left:592.371885px;}
.x62_c00243{left:601.880835px;}
.x3a_c00243{left:603.098535px;}
.x2e_c00243{left:613.409385px;}
.x40_c00243{left:624.338985px;}
.x4c_c00243{left:625.502235px;}
.x1f_c00243{left:636.951585px;}
.x51_c00243{left:646.891185px;}
.x5d_c00243{left:647.950485px;}
.x2_c00243{left:649.381035px;}
.x2f_c00243{left:657.261435px;}
.x10_c00243{left:658.345485px;}
.x56_c00243{left:668.022735px;}
.x5e_c00243{left:669.403785px;}
.x46_c00243{left:672.299535px;}
.x20_c00243{left:680.085885px;}
.x61_c00243{left:681.164985px;}
.x52_c00243{left:682.877685px;}
.x3f_c00243{left:690.777885px;}
.x63_c00243{left:695.975385px;}
.x64_c00243{left:700.608585px;}
.x4d_c00243{left:702.182685px;}
.x57_c00243{left:713.161785px;}
.x74_c00243{left:743.950785px;}
.x73_c00243{left:745.698135px;}
@media print{
.v0_c00243{vertical-align:0.000000pt;}
.ls5_c00243{letter-spacing:-2.439360pt;}
.ls10_c00243{letter-spacing:-1.505434pt;}
.ls4_c00243{letter-spacing:0.000000pt;}
.ls0_c00243{letter-spacing:0.724838pt;}
.lse_c00243{letter-spacing:0.961805pt;}
.lsc_c00243{letter-spacing:1.108166pt;}
.ls7_c00243{letter-spacing:1.136045pt;}
.lsa_c00243{letter-spacing:1.568160pt;}
.ls9_c00243{letter-spacing:1.616947pt;}
.ls8_c00243{letter-spacing:2.118758pt;}
.ls2_c00243{letter-spacing:2.616768pt;}
.ls1_c00243{letter-spacing:2.766931pt;}
.lsd_c00243{letter-spacing:2.836627pt;}
.ls3_c00243{letter-spacing:3.484800pt;}
.ls6_c00243{letter-spacing:19.008000pt;}
.lsb_c00243{letter-spacing:44.352176pt;}
.lsf_c00243{letter-spacing:45.619376pt;}
.ws7_c00243{word-spacing:-20.260627pt;}
.ws5_c00243{word-spacing:-19.040947pt;}
.ws6_c00243{word-spacing:-18.992160pt;}
.ws1_c00243{word-spacing:-17.424000pt;}
.wsa_c00243{word-spacing:-15.918566pt;}
.ws3_c00243{word-spacing:-1.812096pt;}
.wsb_c00243{word-spacing:0.000000pt;}
.ws2_c00243{word-spacing:0.000352pt;}
.ws0_c00243{word-spacing:0.557568pt;}
.ws4_c00243{word-spacing:1.951488pt;}
.ws8_c00243{word-spacing:2.090880pt;}
.ws9_c00243{word-spacing:12.318384pt;}
._17_c00243{margin-left:-11.569536pt;}
._a_c00243{margin-left:-10.454400pt;}
._1a_c00243{margin-left:-6.202592pt;}
._0_c00243{margin-left:-2.369664pt;}
._18_c00243{width:2.109184pt;}
._16_c00243{width:3.066624pt;}
._8_c00243{width:3.971968pt;}
._9_c00243{width:5.645376pt;}
._1_c00243{width:7.666560pt;}
._5_c00243{width:9.408960pt;}
._d_c00243{width:10.593792pt;}
._1e_c00243{width:12.127456pt;}
._11_c00243{width:13.939200pt;}
._3_c00243{width:14.984992pt;}
._c_c00243{width:18.539136pt;}
._1b_c00243{width:19.793664pt;}
._13_c00243{width:21.048192pt;}
._12_c00243{width:25.020864pt;}
._e_c00243{width:26.763968pt;}
._1d_c00243{width:27.808352pt;}
._4_c00243{width:28.993536pt;}
._1c_c00243{width:30.248064pt;}
._10_c00243{width:31.252672pt;}
._7_c00243{width:32.687424pt;}
._b_c00243{width:34.569216pt;}
._f_c00243{width:35.541440pt;}
._15_c00243{width:36.451008pt;}
._19_c00243{width:37.595008pt;}
._2_c00243{width:40.270912pt;}
._6_c00243{width:41.329728pt;}
._14_c00243{width:42.491328pt;}
.fs3_c00243{font-size:19.008000pt;}
.fs6_c00243{font-size:25.168000pt;}
.fs1_c00243{font-size:29.568000pt;}
.fs4_c00243{font-size:44.352176pt;}
.fs5_c00243{font-size:45.619376pt;}
.fs7_c00243{font-size:53.504000pt;}
.fs8_c00243{font-size:59.136000pt;}
.fs2_c00243{font-size:63.360000pt;}
.fs0_c00243{font-size:69.696000pt;}
.y0_c00243{bottom:0.000000pt;}
.y1_c00243{bottom:68.000000pt;}
.y1c_c00243{bottom:128.538120pt;}
.y1b_c00243{bottom:155.153720pt;}
.y1a_c00243{bottom:213.761720pt;}
.y19_c00243{bottom:241.956920pt;}
.y18_c00243{bottom:270.781320pt;}
.y17_c00243{bottom:298.980920pt;}
.y16_c00243{bottom:328.122120pt;}
.y15_c00243{bottom:356.000520pt;}
.y14_c00243{bottom:384.200120pt;}
.y13_c00243{bottom:413.028920pt;}
.y12_c00243{bottom:441.853320pt;}
.y11_c00243{bottom:470.686520pt;}
.y10_c00243{bottom:470.688280pt;}
.yf_c00243{bottom:499.194120pt;}
.ye_c00243{bottom:528.339720pt;}
.y1e_c00243{bottom:565.726520pt;}
.yd_c00243{bottom:585.363720pt;}
.yc_c00243{bottom:613.880120pt;}
.yb_c00243{bottom:642.392120pt;}
.ya_c00243{bottom:666.152120pt;}
.y9_c00243{bottom:670.899720pt;}
.y8_c00243{bottom:699.728520pt;}
.y1d_c00243{bottom:700.366520pt;}
.y7_c00243{bottom:728.244920pt;}
.y6_c00243{bottom:757.390520pt;}
.y5_c00243{bottom:786.536120pt;}
.y4_c00243{bottom:818.216120pt;}
.y3_c00243{bottom:921.171720pt;}
.y2_c00243{bottom:949.050120pt;}
.h5_c00243{height:12.659328pt;}
.h8_c00243{height:26.249438pt;}
.h6_c00243{height:29.538549pt;}
.h7_c00243{height:30.382504pt;}
.h3_c00243{height:30.838500pt;}
.h9_c00243{height:61.677000pt;}
.h4_c00243{height:66.082500pt;}
.h2_c00243{height:68.402813pt;}
.h1_c00243{height:986.666667pt;}
.h0_c00243{height:1122.666667pt;}
.w1_c00243{width:668.000000pt;}
.w0_c00243{width:793.333333pt;}
.x0_c00243{left:0.000000pt;}
.x4e_c00243{left:55.338483pt;}
.x11_c00243{left:56.425987pt;}
.x70_c00243{left:57.319187pt;}
.x1_c00243{left:62.666667pt;}
.x58_c00243{left:75.926787pt;}
.x12_c00243{left:84.480387pt;}
.x5f_c00243{left:85.897187pt;}
.x13_c00243{left:95.396787pt;}
.x6b_c00243{left:96.307587pt;}
.x30_c00243{left:103.523587pt;}
.x4_c00243{left:104.671987pt;}
.x6e_c00243{left:105.573987pt;}
.x14_c00243{left:114.747987pt;}
.x21_c00243{left:124.353187pt;}
.x27_c00243{left:126.601587pt;}
.x41_c00243{left:134.389587pt;}
.x22_c00243{left:143.893587pt;}
.x43_c00243{left:153.863987pt;}
.x6f_c00243{left:155.258787pt;}
.x15_c00243{left:164.454787pt;}
.x53_c00243{left:172.550787pt;}
.x3b_c00243{left:173.883987pt;}
.x60_c00243{left:182.367187pt;}
.x5_c00243{left:183.260387pt;}
.x28_c00243{left:192.201187pt;}
.x6c_c00243{left:193.287987pt;}
.x23_c00243{left:202.818387pt;}
.x66_c00243{left:203.755587pt;}
.x6_c00243{left:212.471987pt;}
.x4f_c00243{left:213.571987pt;}
.x54_c00243{left:215.081187pt;}
.x16_c00243{left:222.442387pt;}
.x31_c00243{left:231.158787pt;}
.x3c_c00243{left:232.628387pt;}
.x71_c00243{left:233.719587pt;}
.x17_c00243{left:242.418387pt;}
.x3_c00243{left:248.191187pt;}
.x65_c00243{left:251.108387pt;}
.x29_c00243{left:252.027987pt;}
.x67_c00243{left:253.440387pt;}
.x32_c00243{left:261.765187pt;}
.x47_c00243{left:262.992787pt;}
.x24_c00243{left:264.220387pt;}
.x18_c00243{left:271.876387pt;}
.x33_c00243{left:281.226387pt;}
.x7_c00243{left:282.277987pt;}
.x2a_c00243{left:289.801987pt;}
.x44_c00243{left:291.205587pt;}
.x19_c00243{left:292.138387pt;}
.x8_c00243{left:301.343187pt;}
.x1a_c00243{left:310.820787pt;}
.x48_c00243{left:320.993587pt;}
.x50_c00243{left:323.109987pt;}
.x9_c00243{left:329.995987pt;}
.x6d_c00243{left:331.707587pt;}
.x34_c00243{left:339.222787pt;}
.x1b_c00243{left:340.115987pt;}
.x55_c00243{left:341.224787pt;}
.x49_c00243{left:350.719987pt;}
.x42_c00243{left:352.620787pt;}
.x5a_c00243{left:359.836787pt;}
.x68_c00243{left:360.892787pt;}
.x25_c00243{left:369.578387pt;}
.x35_c00243{left:371.580387pt;}
.x2b_c00243{left:379.909587pt;}
.xa_c00243{left:389.589587pt;}
.x1c_c00243{left:398.420387pt;}
.x5b_c00243{left:399.867987pt;}
.x36_c00243{left:408.738387pt;}
.x26_c00243{left:418.378787pt;}
.x37_c00243{left:428.102787pt;}
.x69_c00243{left:435.529987pt;}
.xb_c00243{left:437.395587pt;}
.x4b_c00243{left:438.425187pt;}
.x45_c00243{left:446.899587pt;}
.x3d_c00243{left:448.633187pt;}
.xc_c00243{left:457.358387pt;}
.x59_c00243{left:458.405587pt;}
.x2c_c00243{left:466.259587pt;}
.x1d_c00243{left:467.346387pt;}
.x6a_c00243{left:468.565187pt;}
.x38_c00243{left:476.740387pt;}
.xd_c00243{left:477.681987pt;}
.xe_c00243{left:487.652387pt;}
.x2d_c00243{left:496.509587pt;}
.x3e_c00243{left:497.407187pt;}
.x39_c00243{left:506.633987pt;}
.x5c_c00243{left:507.571187pt;}
.x4a_c00243{left:515.953187pt;}
.x1e_c00243{left:517.022387pt;}
.x72_c00243{left:525.465987pt;}
.xf_c00243{left:526.552787pt;}
.x62_c00243{left:535.005187pt;}
.x3a_c00243{left:536.087587pt;}
.x2e_c00243{left:545.252787pt;}
.x40_c00243{left:554.967987pt;}
.x4c_c00243{left:556.001987pt;}
.x1f_c00243{left:566.179187pt;}
.x51_c00243{left:575.014387pt;}
.x5d_c00243{left:575.955987pt;}
.x2_c00243{left:577.227587pt;}
.x2f_c00243{left:584.232387pt;}
.x10_c00243{left:585.195987pt;}
.x56_c00243{left:593.797987pt;}
.x5e_c00243{left:595.025587pt;}
.x46_c00243{left:597.599587pt;}
.x20_c00243{left:604.520787pt;}
.x61_c00243{left:605.479987pt;}
.x52_c00243{left:607.002387pt;}
.x3f_c00243{left:614.024787pt;}
.x63_c00243{left:618.644787pt;}
.x64_c00243{left:622.763187pt;}
.x4d_c00243{left:624.162387pt;}
.x57_c00243{left:633.921587pt;}
.x74_c00243{left:661.289587pt;}
.x73_c00243{left:662.842787pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d2a5a2d7cc0998b19e782740.woff2')format("woff");}.ff1_c00244{font-family:ff1_c00244;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00244;src:url('chunks/assets/font_7015710799e84a928641b355.woff2')format("woff");}.ff2_c00244{font-family:ff2_c00244;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00244;src:url('chunks/assets/font_88b74bc770d07ed830b7ee63.woff2')format("woff");}.ff3_c00244{font-family:ff3_c00244;line-height:1.402354;font-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_c00244{transform:matrix(0.085714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085714,0.000000,0.000000,0.250000,0,0);}
.m55_c00244{transform:matrix(0.151692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151692,0.000000,0.000000,0.250000,0,0);}
.m2f_c00244{transform:matrix(0.157142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157142,0.000000,0.000000,0.250000,0,0);}
.mc4_c00244{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);}
.ma0_c00244{transform:matrix(0.184027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184027,0.000000,0.000000,0.250000,0,0);}
.m5c_c00244{transform:matrix(0.184646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184646,0.000000,0.000000,0.250000,0,0);}
.m43_c00244{transform:matrix(0.184966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184966,0.000000,0.000000,0.250000,0,0);}
.m30_c00244{transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);}
.m2a_c00244{transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);}
.m32_c00244{transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);}
.m34_c00244{transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);}
.mc2_c00244{transform:matrix(0.204861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204861,0.000000,0.000000,0.250000,0,0);}
.m29_c00244{transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);}
.m31_c00244{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00244{transform:matrix(0.210070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210070,0.000000,0.000000,0.250000,0,0);}
.m9f_c00244{transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);}
.m12_c00244{transform:matrix(0.228766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228766,0.000000,0.000000,0.250000,0,0);}
.m4c_c00244{transform:matrix(0.230787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230787,0.000000,0.000000,0.250000,0,0);}
.m97_c00244{transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);}
.m3a_c00244{transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);}
.m2_c00244{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m70_c00244{transform:matrix(0.253184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253184,0.000000,0.000000,0.250000,0,0);}
.m94_c00244{transform:matrix(0.255474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255474,0.000000,0.000000,0.250000,0,0);}
.m74_c00244{transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);}
.m75_c00244{transform:matrix(0.257826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257826,0.000000,0.000000,0.250000,0,0);}
.m51_c00244{transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);}
.m3c_c00244{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.ma7_c00244{transform:matrix(0.258745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258745,0.000000,0.000000,0.250000,0,0);}
.m6_c00244{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m6d_c00244{transform:matrix(0.261106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261106,0.000000,0.000000,0.250000,0,0);}
.m66_c00244{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.m35_c00244{transform:matrix(0.261904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261904,0.000000,0.000000,0.250000,0,0);}
.m65_c00244{transform:matrix(0.262649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262649,0.000000,0.000000,0.250000,0,0);}
.m37_c00244{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m24_c00244{transform:matrix(0.264128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264128,0.000000,0.000000,0.250000,0,0);}
.m8c_c00244{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m93_c00244{transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);}
.mb4_c00244{transform:matrix(0.265818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265818,0.000000,0.000000,0.250000,0,0);}
.m1a_c00244{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.ma5_c00244{transform:matrix(0.266703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266703,0.000000,0.000000,0.250000,0,0);}
.md_c00244{transform:matrix(0.269862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269862,0.000000,0.000000,0.250000,0,0);}
.m39_c00244{transform:matrix(0.269911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269911,0.000000,0.000000,0.250000,0,0);}
.m85_c00244{transform:matrix(0.270364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270364,0.000000,0.000000,0.250000,0,0);}
.m5_c00244{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.mc5_c00244{transform:matrix(0.272372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272372,0.000000,0.000000,0.250000,0,0);}
.m4f_c00244{transform:matrix(0.272544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272544,0.000000,0.000000,0.250000,0,0);}
.m4a_c00244{transform:matrix(0.272653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272653,0.000000,0.000000,0.250000,0,0);}
.m3d_c00244{transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);}
.m3e_c00244{transform:matrix(0.273643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273643,0.000000,0.000000,0.250000,0,0);}
.m9e_c00244{transform:matrix(0.274132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274132,0.000000,0.000000,0.250000,0,0);}
.m15_c00244{transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);}
.mb2_c00244{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);}
.m88_c00244{transform:matrix(0.276153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276153,0.000000,0.000000,0.250000,0,0);}
.m4_c00244{transform:matrix(0.276248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276248,0.000000,0.000000,0.250000,0,0);}
.m7c_c00244{transform:matrix(0.276602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276602,0.000000,0.000000,0.250000,0,0);}
.m62_c00244{transform:matrix(0.277164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277164,0.000000,0.000000,0.250000,0,0);}
.m3_c00244{transform:matrix(0.277186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277186,0.000000,0.000000,0.250000,0,0);}
.ma_c00244{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m57_c00244{transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);}
.mba_c00244{transform:matrix(0.277843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277843,0.000000,0.000000,0.250000,0,0);}
.m6b_c00244{transform:matrix(0.278029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278029,0.000000,0.000000,0.250000,0,0);}
.m2d_c00244{transform:matrix(0.278106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278106,0.000000,0.000000,0.250000,0,0);}
.m5b_c00244{transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);}
.ma1_c00244{transform:matrix(0.278893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278893,0.000000,0.000000,0.250000,0,0);}
.mb3_c00244{transform:matrix(0.279367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279367,0.000000,0.000000,0.250000,0,0);}
.m16_c00244{transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);}
.m61_c00244{transform:matrix(0.279485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279485,0.000000,0.000000,0.250000,0,0);}
.ma3_c00244{transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);}
.m58_c00244{transform:matrix(0.281452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281452,0.000000,0.000000,0.250000,0,0);}
.mb8_c00244{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.m13_c00244{transform:matrix(0.281651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281651,0.000000,0.000000,0.250000,0,0);}
.mc1_c00244{transform:matrix(0.282165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282165,0.000000,0.000000,0.250000,0,0);}
.m10_c00244{transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);}
.m8e_c00244{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m6e_c00244{transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);}
.m92_c00244{transform:matrix(0.284669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284669,0.000000,0.000000,0.250000,0,0);}
.m8b_c00244{transform:matrix(0.284803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284803,0.000000,0.000000,0.250000,0,0);}
.m26_c00244{transform:matrix(0.285184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285184,0.000000,0.000000,0.250000,0,0);}
.m20_c00244{transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);}
.m90_c00244{transform:matrix(0.285787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285787,0.000000,0.000000,0.250000,0,0);}
.m2e_c00244{transform:matrix(0.286391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286391,0.000000,0.000000,0.250000,0,0);}
.m71_c00244{transform:matrix(0.286402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286402,0.000000,0.000000,0.250000,0,0);}
.m9b_c00244{transform:matrix(0.286496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286496,0.000000,0.000000,0.250000,0,0);}
.mbd_c00244{transform:matrix(0.286566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286566,0.000000,0.000000,0.250000,0,0);}
.mb9_c00244{transform:matrix(0.286787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286787,0.000000,0.000000,0.250000,0,0);}
.m67_c00244{transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);}
.m1c_c00244{transform:matrix(0.287440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287440,0.000000,0.000000,0.250000,0,0);}
.m7b_c00244{transform:matrix(0.287639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287639,0.000000,0.000000,0.250000,0,0);}
.maf_c00244{transform:matrix(0.287758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287758,0.000000,0.000000,0.250000,0,0);}
.m0_c00244{transform:matrix(0.288988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288988,0.000000,0.000000,0.250000,0,0);}
.m84_c00244{transform:matrix(0.289105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289105,0.000000,0.000000,0.250000,0,0);}
.m9_c00244{transform:matrix(0.290510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290510,0.000000,0.000000,0.250000,0,0);}
.m4e_c00244{transform:matrix(0.290979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290979,0.000000,0.000000,0.250000,0,0);}
.mab_c00244{transform:matrix(0.291407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291407,0.000000,0.000000,0.250000,0,0);}
.m81_c00244{transform:matrix(0.291905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291905,0.000000,0.000000,0.250000,0,0);}
.m91_c00244{transform:matrix(0.292392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292392,0.000000,0.000000,0.250000,0,0);}
.m8f_c00244{transform:matrix(0.292612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292612,0.000000,0.000000,0.250000,0,0);}
.m48_c00244{transform:matrix(0.292686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292686,0.000000,0.000000,0.250000,0,0);}
.m42_c00244{transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);}
.m63_c00244{transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);}
.m41_c00244{transform:matrix(0.295090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295090,0.000000,0.000000,0.250000,0,0);}
.m77_c00244{transform:matrix(0.295127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295127,0.000000,0.000000,0.250000,0,0);}
.m1d_c00244{transform:matrix(0.295473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295473,0.000000,0.000000,0.250000,0,0);}
.maa_c00244{transform:matrix(0.295938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295938,0.000000,0.000000,0.250000,0,0);}
.m1f_c00244{transform:matrix(0.296165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296165,0.000000,0.000000,0.250000,0,0);}
.m6f_c00244{transform:matrix(0.296755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296755,0.000000,0.000000,0.250000,0,0);}
.m45_c00244{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m3b_c00244{transform:matrix(0.297286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297286,0.000000,0.000000,0.250000,0,0);}
.m68_c00244{transform:matrix(0.297375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297375,0.000000,0.000000,0.250000,0,0);}
.mc0_c00244{transform:matrix(0.298341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298341,0.000000,0.000000,0.250000,0,0);}
.mbb_c00244{transform:matrix(0.298729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298729,0.000000,0.000000,0.250000,0,0);}
.m36_c00244{transform:matrix(0.298987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298987,0.000000,0.000000,0.250000,0,0);}
.mad_c00244{transform:matrix(0.299883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299883,0.000000,0.000000,0.250000,0,0);}
.mc_c00244{transform:matrix(0.300360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300360,0.000000,0.000000,0.250000,0,0);}
.m46_c00244{transform:matrix(0.301982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301982,0.000000,0.000000,0.250000,0,0);}
.m86_c00244{transform:matrix(0.302057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302057,0.000000,0.000000,0.250000,0,0);}
.m7_c00244{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m64_c00244{transform:matrix(0.302560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302560,0.000000,0.000000,0.250000,0,0);}
.m96_c00244{transform:matrix(0.303415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303415,0.000000,0.000000,0.250000,0,0);}
.mb7_c00244{transform:matrix(0.303481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303481,0.000000,0.000000,0.250000,0,0);}
.m6c_c00244{transform:matrix(0.303651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303651,0.000000,0.000000,0.250000,0,0);}
.m7d_c00244{transform:matrix(0.303955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303955,0.000000,0.000000,0.250000,0,0);}
.m99_c00244{transform:matrix(0.304289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304289,0.000000,0.000000,0.250000,0,0);}
.ma8_c00244{transform:matrix(0.304332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304332,0.000000,0.000000,0.250000,0,0);}
.m76_c00244{transform:matrix(0.304744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304744,0.000000,0.000000,0.250000,0,0);}
.m7a_c00244{transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);}
.m78_c00244{transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);}
.m5f_c00244{transform:matrix(0.305499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305499,0.000000,0.000000,0.250000,0,0);}
.m5d_c00244{transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);}
.m8d_c00244{transform:matrix(0.305845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305845,0.000000,0.000000,0.250000,0,0);}
.m8a_c00244{transform:matrix(0.306319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306319,0.000000,0.000000,0.250000,0,0);}
.m72_c00244{transform:matrix(0.306545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306545,0.000000,0.000000,0.250000,0,0);}
.m1e_c00244{transform:matrix(0.306614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306614,0.000000,0.000000,0.250000,0,0);}
.m25_c00244{transform:matrix(0.307283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307283,0.000000,0.000000,0.250000,0,0);}
.m50_c00244{transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);}
.m40_c00244{transform:matrix(0.307750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00244{transform:matrix(0.307990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307990,0.000000,0.000000,0.250000,0,0);}
.m89_c00244{transform:matrix(0.308319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308319,0.000000,0.000000,0.250000,0,0);}
.m49_c00244{transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);}
.m73_c00244{transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);}
.mb1_c00244{transform:matrix(0.309056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309056,0.000000,0.000000,0.250000,0,0);}
.mb5_c00244{transform:matrix(0.310270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310270,0.000000,0.000000,0.250000,0,0);}
.m44_c00244{transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);}
.m87_c00244{transform:matrix(0.311366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311366,0.000000,0.000000,0.250000,0,0);}
.m18_c00244{transform:matrix(0.311960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311960,0.000000,0.000000,0.250000,0,0);}
.m3f_c00244{transform:matrix(0.312278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312278,0.000000,0.000000,0.250000,0,0);}
.m82_c00244{transform:matrix(0.312531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312531,0.000000,0.000000,0.250000,0,0);}
.m23_c00244{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.mb6_c00244{transform:matrix(0.312542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312542,0.000000,0.000000,0.250000,0,0);}
.ma2_c00244{transform:matrix(0.312751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312751,0.000000,0.000000,0.250000,0,0);}
.m6a_c00244{transform:matrix(0.313258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313258,0.000000,0.000000,0.250000,0,0);}
.mb_c00244{transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);}
.m98_c00244{transform:matrix(0.313798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313798,0.000000,0.000000,0.250000,0,0);}
.m21_c00244{transform:matrix(0.313856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313856,0.000000,0.000000,0.250000,0,0);}
.mbe_c00244{transform:matrix(0.313928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313928,0.000000,0.000000,0.250000,0,0);}
.m59_c00244{transform:matrix(0.314426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314426,0.000000,0.000000,0.250000,0,0);}
.m17_c00244{transform:matrix(0.315059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315059,0.000000,0.000000,0.250000,0,0);}
.m54_c00244{transform:matrix(0.315917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315917,0.000000,0.000000,0.250000,0,0);}
.m19_c00244{transform:matrix(0.316282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316282,0.000000,0.000000,0.250000,0,0);}
.m79_c00244{transform:matrix(0.316482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316482,0.000000,0.000000,0.250000,0,0);}
.m4d_c00244{transform:matrix(0.316807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316807,0.000000,0.000000,0.250000,0,0);}
.m60_c00244{transform:matrix(0.317996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317996,0.000000,0.000000,0.250000,0,0);}
.mbf_c00244{transform:matrix(0.318352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318352,0.000000,0.000000,0.250000,0,0);}
.mf_c00244{transform:matrix(0.318369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318369,0.000000,0.000000,0.250000,0,0);}
.m2b_c00244{transform:matrix(0.319243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319243,0.000000,0.000000,0.250000,0,0);}
.m8_c00244{transform:matrix(0.319328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319328,0.000000,0.000000,0.250000,0,0);}
.m56_c00244{transform:matrix(0.319389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319389,0.000000,0.000000,0.250000,0,0);}
.m7e_c00244{transform:matrix(0.319415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319415,0.000000,0.000000,0.250000,0,0);}
.me_c00244{transform:matrix(0.320922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320922,0.000000,0.000000,0.250000,0,0);}
.m9a_c00244{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.m38_c00244{transform:matrix(0.324242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324242,0.000000,0.000000,0.250000,0,0);}
.m5e_c00244{transform:matrix(0.325136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325136,0.000000,0.000000,0.250000,0,0);}
.m28_c00244{transform:matrix(0.325172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325172,0.000000,0.000000,0.250000,0,0);}
.m9c_c00244{transform:matrix(0.327070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327070,0.000000,0.000000,0.250000,0,0);}
.mac_c00244{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.ma4_c00244{transform:matrix(0.328813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328813,0.000000,0.000000,0.250000,0,0);}
.m5a_c00244{transform:matrix(0.330299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330299,0.000000,0.000000,0.250000,0,0);}
.m7f_c00244{transform:matrix(0.332795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332795,0.000000,0.000000,0.250000,0,0);}
.mb0_c00244{transform:matrix(0.332811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332811,0.000000,0.000000,0.250000,0,0);}
.m47_c00244{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.mae_c00244{transform:matrix(0.334657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334657,0.000000,0.000000,0.250000,0,0);}
.ma6_c00244{transform:matrix(0.337181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337181,0.000000,0.000000,0.250000,0,0);}
.m9d_c00244{transform:matrix(0.338552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338552,0.000000,0.000000,0.250000,0,0);}
.m52_c00244{transform:matrix(0.341283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341283,0.000000,0.000000,0.250000,0,0);}
.m80_c00244{transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);}
.m83_c00244{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.mbc_c00244{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m22_c00244{transform:matrix(0.350725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350725,0.000000,0.000000,0.250000,0,0);}
.m53_c00244{transform:matrix(0.355222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355222,0.000000,0.000000,0.250000,0,0);}
.m1b_c00244{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m2c_c00244{transform:matrix(0.355345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355345,0.000000,0.000000,0.250000,0,0);}
.m69_c00244{transform:matrix(0.356405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356405,0.000000,0.000000,0.250000,0,0);}
.m27_c00244{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m11_c00244{transform:matrix(0.361600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361600,0.000000,0.000000,0.250000,0,0);}
.m1_c00244{transform:matrix(0.374410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374410,0.000000,0.000000,0.250000,0,0);}
.m95_c00244{transform:matrix(0.396487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396487,0.000000,0.000000,0.250000,0,0);}
.m4b_c00244{transform:matrix(0.414699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414699,0.000000,0.000000,0.250000,0,0);}
.m14_c00244{transform:matrix(0.425279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425279,0.000000,0.000000,0.250000,0,0);}
.v0_c00244{vertical-align:0.000000px;}
.ls5_c00244{letter-spacing:-2.744280px;}
.lsc_c00244{letter-spacing:-1.897474px;}
.ls7_c00244{letter-spacing:-1.089871px;}
.ls4_c00244{letter-spacing:0.000000px;}
.ls9_c00244{letter-spacing:1.082030px;}
.lsd_c00244{letter-spacing:1.685772px;}
.lsa_c00244{letter-spacing:1.764180px;}
.ls1_c00244{letter-spacing:2.940300px;}
.lsb_c00244{letter-spacing:3.623400px;}
.ls2_c00244{letter-spacing:3.682810px;}
.ls0_c00244{letter-spacing:3.842388px;}
.ls3_c00244{letter-spacing:3.920400px;}
.ls8_c00244{letter-spacing:49.896198px;}
.ls6_c00244{letter-spacing:51.321798px;}
.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;}
}
.ws5_c00244{word-spacing:-22.542300px;}
.ws4_c00244{word-spacing:-21.366180px;}
.ws3_c00244{word-spacing:-19.602000px;}
.ws8_c00244{word-spacing:-2.431044px;}
.ws1_c00244{word-spacing:-1.254924px;}
.ws0_c00244{word-spacing:-1.019304px;}
.ws9_c00244{word-spacing:0.000000px;}
.ws7_c00244{word-spacing:0.628056px;}
.ws6_c00244{word-spacing:1.254528px;}
.ws2_c00244{word-spacing:3.606768px;}
._12_c00244{margin-left:-18.112644px;}
._6_c00244{margin-left:-14.035824px;}
._e_c00244{margin-left:-10.193436px;}
._13_c00244{margin-left:-1.881792px;}
._16_c00244{width:3.076920px;}
._a_c00244{width:4.860900px;}
._5_c00244{width:6.351048px;}
._d_c00244{width:7.683984px;}
._b_c00244{width:9.487368px;}
._2_c00244{width:10.585080px;}
._10_c00244{width:11.761200px;}
._8_c00244{width:12.780108px;}
._14_c00244{width:16.073640px;}
._17_c00244{width:17.172738px;}
._4_c00244{width:20.856528px;}
._1_c00244{width:22.267080px;}
._7_c00244{width:24.306876px;}
._c_c00244{width:28.147680px;}
._3_c00244{width:29.881368px;}
._9_c00244{width:31.131144px;}
._f_c00244{width:33.210540px;}
._0_c00244{width:35.518824px;}
._11_c00244{width:36.823248px;}
._15_c00244{width:41.164200px;}
._18_c00244{width:44.144496px;}
.fc0_c00244{color:transparent;}
.fs3_c00244{font-size:49.896198px;}
.fs2_c00244{font-size:51.321798px;}
.fs6_c00244{font-size:72.468000px;}
.fs0_c00244{font-size:73.656198px;}
.fs4_c00244{font-size:76.032198px;}
.fs1_c00244{font-size:78.408000px;}
.fs5_c00244{font-size:79.002198px;}
.fs7_c00244{font-size:81.774000px;}
.y0_c00244{bottom:0.000000px;}
.y1_c00244{bottom:76.500000px;}
.y1c_c00244{bottom:151.738335px;}
.y1b_c00244{bottom:181.670985px;}
.y1a_c00244{bottom:214.821135px;}
.y19_c00244{bottom:248.679135px;}
.y18_c00244{bottom:280.750185px;}
.y17_c00244{bottom:312.474735px;}
.y16_c00244{bottom:344.550735px;}
.y15_c00244{bottom:376.621785px;}
.y14_c00244{bottom:440.417385px;}
.y13_c00244{bottom:473.206185px;}
.y12_c00244{bottom:505.287135px;}
.y11_c00244{bottom:537.363135px;}
.y10_c00244{bottom:570.151935px;}
.yf_c00244{bottom:599.015385px;}
.ye_c00244{bottom:631.091385px;}
.yd_c00244{bottom:664.597935px;}
.yc_c00244{bottom:728.393535px;}
.yb_c00244{bottom:752.980185px;}
.y9_c00244{bottom:760.813560px;}
.ya_c00244{bottom:760.820985px;}
.y8_c00244{bottom:792.901935px;}
.y6_c00244{bottom:824.256225px;}
.y7_c00244{bottom:824.260185px;}
.y5_c00244{bottom:856.697535px;}
.y4_c00244{bottom:889.481385px;}
.y3_c00244{bottom:925.477785px;}
.y2_c00244{bottom:1074.809385px;}
.h5_c00244{height:33.230868px;}
.h4_c00244{height:34.180317px;}
.h8_c00244{height:71.123379px;}
.h2_c00244{height:72.289530px;}
.h3_c00244{height:76.953164px;}
.h7_c00244{height:77.536337px;}
.h6_c00244{height:78.149118px;}
.h9_c00244{height:80.256709px;}
.h1_c00244{height:1110.000000px;}
.h0_c00244{height:1263.000000px;}
.w1_c00244{width:751.500000px;}
.w0_c00244{width:892.500000px;}
.x0_c00244{left:0.000000px;}
.x5b_c00244{left:59.019285px;}
.x11_c00244{left:60.108285px;}
.x3_c00244{left:61.226985px;}
.x1_c00244{left:70.500000px;}
.x4_c00244{left:82.759485px;}
.x4a_c00244{left:92.738685px;}
.x5_c00244{left:93.822735px;}
.x1e_c00244{left:103.633635px;}
.x34_c00244{left:104.712735px;}
.x4b_c00244{left:114.360285px;}
.x35_c00244{left:116.117535px;}
.x12_c00244{left:126.611535px;}
.x1f_c00244{left:138.204435px;}
.x3b_c00244{left:147.718335px;}
.x5c_c00244{left:149.020185px;}
.x51_c00244{left:158.548935px;}
.x27_c00244{left:161.672385px;}
.x6_c00244{left:170.661585px;}
.x3c_c00244{left:180.507135px;}
.x28_c00244{left:181.556535px;}
.x13_c00244{left:191.966385px;}
.x20_c00244{left:203.103885px;}
.x36_c00244{left:205.573935px;}
.x59_c00244{left:212.652435px;}
.x14_c00244{left:214.642335px;}
.x61_c00244{left:224.096835px;}
.x3d_c00244{left:225.240285px;}
.x5a_c00244{left:235.466985px;}
.x2d_c00244{left:236.605485px;}
.x4c_c00244{left:246.515385px;}
.x15_c00244{left:248.074635px;}
.x3e_c00244{left:258.464685px;}
.x7_c00244{left:259.865535px;}
.x54_c00244{left:268.884435px;}
.x21_c00244{left:270.225885px;}
.x3f_c00244{left:279.724935px;}
.x22_c00244{left:281.437635px;}
.x5e_c00244{left:291.045585px;}
.x8_c00244{left:292.327635px;}
.x62_c00244{left:301.435635px;}
.x52_c00244{left:302.628585px;}
.x37_c00244{left:304.073985px;}
.x29_c00244{left:314.077935px;}
.x40_c00244{left:324.344235px;}
.x23_c00244{left:326.160885px;}
.x5f_c00244{left:334.966935px;}
.x9_c00244{left:336.377685px;}
.x16_c00244{left:347.030085px;}
.x24_c00244{left:358.217085px;}
.x17_c00244{left:367.726035px;}
.xa_c00244{left:369.265485px;}
.x2e_c00244{left:380.511885px;}
.x55_c00244{left:389.110035px;}
.x25_c00244{left:390.857385px;}
.x2a_c00244{left:392.104785px;}
.x4d_c00244{left:401.747385px;}
.x2f_c00244{left:402.806685px;}
.x41_c00244{left:411.949335px;}
.x18_c00244{left:413.459085px;}
.x44_c00244{left:423.289785px;}
.x2b_c00244{left:435.244035px;}
.x4e_c00244{left:445.589535px;}
.x63_c00244{left:455.400435px;}
.x45_c00244{left:456.623085px;}
.xb_c00244{left:468.027885px;}
.x46_c00244{left:477.883335px;}
.x2c_c00244{left:479.383185px;}
.x42_c00244{left:489.411885px;}
.x60_c00244{left:490.481085px;}
.x19_c00244{left:500.623635px;}
.x53_c00244{left:501.866085px;}
.x65_c00244{left:510.998835px;}
.x38_c00244{left:512.860035px;}
.x47_c00244{left:522.730335px;}
.xc_c00244{left:523.948035px;}
.x30_c00244{left:534.323235px;}
.x1a_c00244{left:544.450935px;}
.x64_c00244{left:545.703285px;}
.x56_c00244{left:553.370835px;}
.x66_c00244{left:556.622985px;}
.x4f_c00244{left:566.448735px;}
.x39_c00244{left:568.151535px;}
.x31_c00244{left:577.601085px;}
.x50_c00244{left:588.461385px;}
.x1b_c00244{left:589.481085px;}
.x57_c00244{left:598.702935px;}
.x26_c00244{left:599.742435px;}
.xd_c00244{left:609.721635px;}
.x32_c00244{left:621.284835px;}
.x1c_c00244{left:622.977735px;}
.x5d_c00244{left:632.343135px;}
.x3a_c00244{left:633.763785px;}
.x43_c00244{left:643.158885px;}
.x2_c00244{left:644.396385px;}
.x33_c00244{left:645.505185px;}
.x48_c00244{left:654.400335px;}
.xe_c00244{left:655.657635px;}
.x1d_c00244{left:665.676435px;}
.xf_c00244{left:677.249535px;}
.x58_c00244{left:687.208935px;}
.x10_c00244{left:688.609785px;}
.x49_c00244{left:709.310685px;}
.x67_c00244{left:720.715485px;}
@media print{
.v0_c00244{vertical-align:0.000000pt;}
.ls5_c00244{letter-spacing:-2.439360pt;}
.lsc_c00244{letter-spacing:-1.686643pt;}
.ls7_c00244{letter-spacing:-0.968774pt;}
.ls4_c00244{letter-spacing:0.000000pt;}
.ls9_c00244{letter-spacing:0.961805pt;}
.lsd_c00244{letter-spacing:1.498464pt;}
.lsa_c00244{letter-spacing:1.568160pt;}
.ls1_c00244{letter-spacing:2.613600pt;}
.lsb_c00244{letter-spacing:3.220800pt;}
.ls2_c00244{letter-spacing:3.273609pt;}
.ls0_c00244{letter-spacing:3.415456pt;}
.ls3_c00244{letter-spacing:3.484800pt;}
.ls8_c00244{letter-spacing:44.352176pt;}
.ls6_c00244{letter-spacing:45.619376pt;}
.ws5_c00244{word-spacing:-20.037600pt;}
.ws4_c00244{word-spacing:-18.992160pt;}
.ws3_c00244{word-spacing:-17.424000pt;}
.ws8_c00244{word-spacing:-2.160928pt;}
.ws1_c00244{word-spacing:-1.115488pt;}
.ws0_c00244{word-spacing:-0.906048pt;}
.ws9_c00244{word-spacing:0.000000pt;}
.ws7_c00244{word-spacing:0.558272pt;}
.ws6_c00244{word-spacing:1.115136pt;}
.ws2_c00244{word-spacing:3.206016pt;}
._12_c00244{margin-left:-16.100128pt;}
._6_c00244{margin-left:-12.476288pt;}
._e_c00244{margin-left:-9.060832pt;}
._13_c00244{margin-left:-1.672704pt;}
._16_c00244{width:2.735040pt;}
._a_c00244{width:4.320800pt;}
._5_c00244{width:5.645376pt;}
._d_c00244{width:6.830208pt;}
._b_c00244{width:8.433216pt;}
._2_c00244{width:9.408960pt;}
._10_c00244{width:10.454400pt;}
._8_c00244{width:11.360096pt;}
._14_c00244{width:14.287680pt;}
._17_c00244{width:15.264656pt;}
._4_c00244{width:18.539136pt;}
._1_c00244{width:19.792960pt;}
._7_c00244{width:21.606112pt;}
._c_c00244{width:25.020160pt;}
._3_c00244{width:26.561216pt;}
._9_c00244{width:27.672128pt;}
._f_c00244{width:29.520480pt;}
._0_c00244{width:31.572288pt;}
._11_c00244{width:32.731776pt;}
._15_c00244{width:36.590400pt;}
._18_c00244{width:39.239552pt;}
.fs3_c00244{font-size:44.352176pt;}
.fs2_c00244{font-size:45.619376pt;}
.fs6_c00244{font-size:64.416000pt;}
.fs0_c00244{font-size:65.472176pt;}
.fs4_c00244{font-size:67.584176pt;}
.fs1_c00244{font-size:69.696000pt;}
.fs5_c00244{font-size:70.224176pt;}
.fs7_c00244{font-size:72.688000pt;}
.y0_c00244{bottom:0.000000pt;}
.y1_c00244{bottom:68.000000pt;}
.y1c_c00244{bottom:134.878520pt;}
.y1b_c00244{bottom:161.485320pt;}
.y1a_c00244{bottom:190.952120pt;}
.y19_c00244{bottom:221.048120pt;}
.y18_c00244{bottom:249.555720pt;}
.y17_c00244{bottom:277.755320pt;}
.y16_c00244{bottom:306.267320pt;}
.y15_c00244{bottom:334.774920pt;}
.y14_c00244{bottom:391.482120pt;}
.y13_c00244{bottom:420.627720pt;}
.y12_c00244{bottom:449.144120pt;}
.y11_c00244{bottom:477.656120pt;}
.y10_c00244{bottom:506.801720pt;}
.yf_c00244{bottom:532.458120pt;}
.ye_c00244{bottom:560.970120pt;}
.yd_c00244{bottom:590.753720pt;}
.yc_c00244{bottom:647.460920pt;}
.yb_c00244{bottom:669.315720pt;}
.y9_c00244{bottom:676.278720pt;}
.ya_c00244{bottom:676.285320pt;}
.y8_c00244{bottom:704.801720pt;}
.y6_c00244{bottom:732.672200pt;}
.y7_c00244{bottom:732.675720pt;}
.y5_c00244{bottom:761.508920pt;}
.y4_c00244{bottom:790.650120pt;}
.y3_c00244{bottom:822.646920pt;}
.y2_c00244{bottom:955.386120pt;}
.h5_c00244{height:29.538549pt;}
.h4_c00244{height:30.382504pt;}
.h8_c00244{height:63.220781pt;}
.h2_c00244{height:64.257360pt;}
.h3_c00244{height:68.402813pt;}
.h7_c00244{height:68.921188pt;}
.h6_c00244{height:69.465883pt;}
.h9_c00244{height:71.339297pt;}
.h1_c00244{height:986.666667pt;}
.h0_c00244{height:1122.666667pt;}
.w1_c00244{width:668.000000pt;}
.w0_c00244{width:793.333333pt;}
.x0_c00244{left:0.000000pt;}
.x5b_c00244{left:52.461587pt;}
.x11_c00244{left:53.429587pt;}
.x3_c00244{left:54.423987pt;}
.x1_c00244{left:62.666667pt;}
.x4_c00244{left:73.563987pt;}
.x4a_c00244{left:82.434387pt;}
.x5_c00244{left:83.397987pt;}
.x1e_c00244{left:92.118787pt;}
.x34_c00244{left:93.077987pt;}
.x4b_c00244{left:101.653587pt;}
.x35_c00244{left:103.215587pt;}
.x12_c00244{left:112.543587pt;}
.x1f_c00244{left:122.848387pt;}
.x3b_c00244{left:131.305187pt;}
.x5c_c00244{left:132.462387pt;}
.x51_c00244{left:140.932387pt;}
.x27_c00244{left:143.708787pt;}
.x6_c00244{left:151.699187pt;}
.x3c_c00244{left:160.450787pt;}
.x28_c00244{left:161.383587pt;}
.x13_c00244{left:170.636787pt;}
.x20_c00244{left:180.536787pt;}
.x36_c00244{left:182.732387pt;}
.x59_c00244{left:189.024387pt;}
.x14_c00244{left:190.793187pt;}
.x61_c00244{left:199.197187pt;}
.x3d_c00244{left:200.213587pt;}
.x5a_c00244{left:209.303987pt;}
.x2d_c00244{left:210.315987pt;}
.x4c_c00244{left:219.124787pt;}
.x15_c00244{left:220.510787pt;}
.x3e_c00244{left:229.746387pt;}
.x7_c00244{left:230.991587pt;}
.x54_c00244{left:239.008387pt;}
.x21_c00244{left:240.200787pt;}
.x3f_c00244{left:248.644387pt;}
.x22_c00244{left:250.166787pt;}
.x5e_c00244{left:258.707187pt;}
.x8_c00244{left:259.846787pt;}
.x62_c00244{left:267.942787pt;}
.x52_c00244{left:269.003187pt;}
.x37_c00244{left:270.287987pt;}
.x29_c00244{left:279.180387pt;}
.x40_c00244{left:288.305987pt;}
.x23_c00244{left:289.920787pt;}
.x5f_c00244{left:297.748387pt;}
.x9_c00244{left:299.002387pt;}
.x16_c00244{left:308.471187pt;}
.x24_c00244{left:318.415187pt;}
.x17_c00244{left:326.867587pt;}
.xa_c00244{left:328.235987pt;}
.x2e_c00244{left:338.232787pt;}
.x55_c00244{left:345.875587pt;}
.x25_c00244{left:347.428787pt;}
.x2a_c00244{left:348.537587pt;}
.x4d_c00244{left:357.108787pt;}
.x2f_c00244{left:358.050387pt;}
.x41_c00244{left:366.177187pt;}
.x18_c00244{left:367.519187pt;}
.x44_c00244{left:376.257587pt;}
.x2b_c00244{left:386.883587pt;}
.x4e_c00244{left:396.079587pt;}
.x63_c00244{left:404.800387pt;}
.x45_c00244{left:405.887187pt;}
.xb_c00244{left:416.024787pt;}
.x46_c00244{left:424.785187pt;}
.x2c_c00244{left:426.118387pt;}
.x42_c00244{left:435.032787pt;}
.x60_c00244{left:435.983187pt;}
.x19_c00244{left:444.998787pt;}
.x53_c00244{left:446.103187pt;}
.x65_c00244{left:454.221187pt;}
.x38_c00244{left:455.875587pt;}
.x47_c00244{left:464.649187pt;}
.xc_c00244{left:465.731587pt;}
.x30_c00244{left:474.953987pt;}
.x1a_c00244{left:483.956387pt;}
.x64_c00244{left:485.069587pt;}
.x56_c00244{left:491.885187pt;}
.x66_c00244{left:494.775987pt;}
.x4f_c00244{left:503.509987pt;}
.x39_c00244{left:505.023587pt;}
.x31_c00244{left:513.423187pt;}
.x50_c00244{left:523.076787pt;}
.x1b_c00244{left:523.983187pt;}
.x57_c00244{left:532.180387pt;}
.x26_c00244{left:533.104387pt;}
.xd_c00244{left:541.974787pt;}
.x32_c00244{left:552.253187pt;}
.x1c_c00244{left:553.757987pt;}
.x5d_c00244{left:562.082787pt;}
.x3a_c00244{left:563.345587pt;}
.x43_c00244{left:571.696787pt;}
.x2_c00244{left:572.796787pt;}
.x33_c00244{left:573.782387pt;}
.x48_c00244{left:581.689187pt;}
.xe_c00244{left:582.806787pt;}
.x1d_c00244{left:591.712387pt;}
.xf_c00244{left:601.999587pt;}
.x58_c00244{left:610.852387pt;}
.x10_c00244{left:612.097587pt;}
.x49_c00244{left:630.498387pt;}
.x67_c00244{left:640.635987pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_50353f7b7e8b5a6e0e997375.woff2')format("woff");}.ff1_c00245{font-family:ff1_c00245;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00245;src:url('chunks/assets/font_dba646d0e7327d87243f86a8.woff2')format("woff");}.ff2_c00245{font-family:ff2_c00245;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00245;src:url('chunks/assets/font_5ecb50cd0f16949403e0f406.woff2')format("woff");}.ff3_c00245{font-family:ff3_c00245;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00245;src:url('chunks/assets/font_bad7bb3b309b7256536a2d03.woff2')format("woff");}.ff4_c00245{font-family:ff4_c00245;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m39_c00245{transform:matrix(0.047795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.047795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.047795,0.000000,0.000000,0.250000,0,0);}
.m1a_c00245{transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);}
.m30_c00245{transform:matrix(0.189703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189703,0.000000,0.000000,0.250000,0,0);}
.m3a_c00245{transform:matrix(0.191177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191177,0.000000,0.000000,0.250000,0,0);}
.m4e_c00245{transform:matrix(0.204650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204650,0.000000,0.000000,0.250000,0,0);}
.m38_c00245{transform:matrix(0.215686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215686,0.000000,0.000000,0.250000,0,0);}
.m1b_c00245{transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);}
.m81_c00245{transform:matrix(0.224573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224573,0.000000,0.000000,0.250000,0,0);}
.m62_c00245{transform:matrix(0.227167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227167,0.000000,0.000000,0.250000,0,0);}
.m7_c00245{transform:matrix(0.228445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228445,0.000000,0.000000,0.250000,0,0);}
.m7a_c00245{transform:matrix(0.234830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234830,0.000000,0.000000,0.250000,0,0);}
.m53_c00245{transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);}
.m1d_c00245{transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);}
.m0_c00245{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00245{transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);}
.m40_c00245{transform:matrix(0.254597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254597,0.000000,0.000000,0.250000,0,0);}
.m7e_c00245{transform:matrix(0.255538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255538,0.000000,0.000000,0.250000,0,0);}
.m88_c00245{transform:matrix(0.256251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256251,0.000000,0.000000,0.250000,0,0);}
.m1_c00245{transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);}
.m46_c00245{transform:matrix(0.257794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257794,0.000000,0.000000,0.250000,0,0);}
.m11_c00245{transform:matrix(0.258509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258509,0.000000,0.000000,0.250000,0,0);}
.m74_c00245{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.ma1_c00245{transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);}
.m2e_c00245{transform:matrix(0.259419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259419,0.000000,0.000000,0.250000,0,0);}
.m72_c00245{transform:matrix(0.260073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260073,0.000000,0.000000,0.250000,0,0);}
.m85_c00245{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m3c_c00245{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.m65_c00245{transform:matrix(0.261624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261624,0.000000,0.000000,0.250000,0,0);}
.mb_c00245{transform:matrix(0.261836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261836,0.000000,0.000000,0.250000,0,0);}
.m2f_c00245{transform:matrix(0.262283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262283,0.000000,0.000000,0.250000,0,0);}
.m57_c00245{transform:matrix(0.263115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263115,0.000000,0.000000,0.250000,0,0);}
.m3f_c00245{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.ma2_c00245{transform:matrix(0.263531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263531,0.000000,0.000000,0.250000,0,0);}
.mb3_c00245{transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);}
.m56_c00245{transform:matrix(0.264094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264094,0.000000,0.000000,0.250000,0,0);}
.m6d_c00245{transform:matrix(0.264264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264264,0.000000,0.000000,0.250000,0,0);}
.m42_c00245{transform:matrix(0.265632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265632,0.000000,0.000000,0.250000,0,0);}
.m34_c00245{transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);}
.m64_c00245{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m33_c00245{transform:matrix(0.266283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266283,0.000000,0.000000,0.250000,0,0);}
.m83_c00245{transform:matrix(0.267255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267255,0.000000,0.000000,0.250000,0,0);}
.m13_c00245{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m76_c00245{transform:matrix(0.267925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267925,0.000000,0.000000,0.250000,0,0);}
.m9e_c00245{transform:matrix(0.268884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268884,0.000000,0.000000,0.250000,0,0);}
.m17_c00245{transform:matrix(0.269234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269234,0.000000,0.000000,0.250000,0,0);}
.m2a_c00245{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m6a_c00245{transform:matrix(0.271197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271197,0.000000,0.000000,0.250000,0,0);}
.m99_c00245{transform:matrix(0.271799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271799,0.000000,0.000000,0.250000,0,0);}
.m27_c00245{transform:matrix(0.273113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273113,0.000000,0.000000,0.250000,0,0);}
.m78_c00245{transform:matrix(0.273807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273807,0.000000,0.000000,0.250000,0,0);}
.m68_c00245{transform:matrix(0.273921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273921,0.000000,0.000000,0.250000,0,0);}
.m21_c00245{transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);}
.md_c00245{transform:matrix(0.274541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274541,0.000000,0.000000,0.250000,0,0);}
.m4b_c00245{transform:matrix(0.275152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275152,0.000000,0.000000,0.250000,0,0);}
.m7b_c00245{transform:matrix(0.275489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275489,0.000000,0.000000,0.250000,0,0);}
.m8b_c00245{transform:matrix(0.276181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276181,0.000000,0.000000,0.250000,0,0);}
.m2_c00245{transform:matrix(0.276603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276603,0.000000,0.000000,0.250000,0,0);}
.ma5_c00245{transform:matrix(0.276778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276778,0.000000,0.000000,0.250000,0,0);}
.m24_c00245{transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);}
.m26_c00245{transform:matrix(0.278073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278073,0.000000,0.000000,0.250000,0,0);}
.m37_c00245{transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);}
.mb7_c00245{transform:matrix(0.279032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279032,0.000000,0.000000,0.250000,0,0);}
.me_c00245{transform:matrix(0.279073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279073,0.000000,0.000000,0.250000,0,0);}
.m5f_c00245{transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);}
.m23_c00245{transform:matrix(0.281079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281079,0.000000,0.000000,0.250000,0,0);}
.m3d_c00245{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.m59_c00245{transform:matrix(0.281718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281718,0.000000,0.000000,0.250000,0,0);}
.m8f_c00245{transform:matrix(0.281864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281864,0.000000,0.000000,0.250000,0,0);}
.mf_c00245{transform:matrix(0.282254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282254,0.000000,0.000000,0.250000,0,0);}
.m6b_c00245{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m1f_c00245{transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);}
.m96_c00245{transform:matrix(0.284095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284095,0.000000,0.000000,0.250000,0,0);}
.m45_c00245{transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);}
.m54_c00245{transform:matrix(0.285753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285753,0.000000,0.000000,0.250000,0,0);}
.m51_c00245{transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);}
.m4_c00245{transform:matrix(0.286269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286269,0.000000,0.000000,0.250000,0,0);}
.m82_c00245{transform:matrix(0.286383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286383,0.000000,0.000000,0.250000,0,0);}
.mac_c00245{transform:matrix(0.287205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287205,0.000000,0.000000,0.250000,0,0);}
.m5e_c00245{transform:matrix(0.287254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287254,0.000000,0.000000,0.250000,0,0);}
.m3e_c00245{transform:matrix(0.287458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287458,0.000000,0.000000,0.250000,0,0);}
.m35_c00245{transform:matrix(0.287530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287530,0.000000,0.000000,0.250000,0,0);}
.m84_c00245{transform:matrix(0.287592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287592,0.000000,0.000000,0.250000,0,0);}
.m6c_c00245{transform:matrix(0.288578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288578,0.000000,0.000000,0.250000,0,0);}
.m71_c00245{transform:matrix(0.288615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288615,0.000000,0.000000,0.250000,0,0);}
.m9c_c00245{transform:matrix(0.288623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288623,0.000000,0.000000,0.250000,0,0);}
.maa_c00245{transform:matrix(0.288785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288785,0.000000,0.000000,0.250000,0,0);}
.m2b_c00245{transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);}
.m66_c00245{transform:matrix(0.291185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291185,0.000000,0.000000,0.250000,0,0);}
.m9d_c00245{transform:matrix(0.291695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291695,0.000000,0.000000,0.250000,0,0);}
.m44_c00245{transform:matrix(0.292297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292297,0.000000,0.000000,0.250000,0,0);}
.ma7_c00245{transform:matrix(0.292422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292422,0.000000,0.000000,0.250000,0,0);}
.ma3_c00245{transform:matrix(0.293013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293013,0.000000,0.000000,0.250000,0,0);}
.ma_c00245{transform:matrix(0.293323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293323,0.000000,0.000000,0.250000,0,0);}
.m25_c00245{transform:matrix(0.293461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293461,0.000000,0.000000,0.250000,0,0);}
.m4d_c00245{transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);}
.m7d_c00245{transform:matrix(0.293719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293719,0.000000,0.000000,0.250000,0,0);}
.m50_c00245{transform:matrix(0.294488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294488,0.000000,0.000000,0.250000,0,0);}
.m5a_c00245{transform:matrix(0.296444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296444,0.000000,0.000000,0.250000,0,0);}
.m2c_c00245{transform:matrix(0.297029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297029,0.000000,0.000000,0.250000,0,0);}
.m8d_c00245{transform:matrix(0.299812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299812,0.000000,0.000000,0.250000,0,0);}
.m10_c00245{transform:matrix(0.300258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300258,0.000000,0.000000,0.250000,0,0);}
.m5_c00245{transform:matrix(0.300881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300881,0.000000,0.000000,0.250000,0,0);}
.m67_c00245{transform:matrix(0.301049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301049,0.000000,0.000000,0.250000,0,0);}
.m58_c00245{transform:matrix(0.301346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301346,0.000000,0.000000,0.250000,0,0);}
.m8c_c00245{transform:matrix(0.301583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301583,0.000000,0.000000,0.250000,0,0);}
.m77_c00245{transform:matrix(0.302303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302303,0.000000,0.000000,0.250000,0,0);}
.m31_c00245{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m36_c00245{transform:matrix(0.302562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302562,0.000000,0.000000,0.250000,0,0);}
.m5b_c00245{transform:matrix(0.302961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302961,0.000000,0.000000,0.250000,0,0);}
.m8e_c00245{transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);}
.m8a_c00245{transform:matrix(0.303352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303352,0.000000,0.000000,0.250000,0,0);}
.m63_c00245{transform:matrix(0.303509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303509,0.000000,0.000000,0.250000,0,0);}
.m16_c00245{transform:matrix(0.303789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303789,0.000000,0.000000,0.250000,0,0);}
.m5d_c00245{transform:matrix(0.303910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303910,0.000000,0.000000,0.250000,0,0);}
.m32_c00245{transform:matrix(0.304104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304104,0.000000,0.000000,0.250000,0,0);}
.m69_c00245{transform:matrix(0.304153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304153,0.000000,0.000000,0.250000,0,0);}
.mb0_c00245{transform:matrix(0.304956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304956,0.000000,0.000000,0.250000,0,0);}
.ma9_c00245{transform:matrix(0.305098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305098,0.000000,0.000000,0.250000,0,0);}
.ma4_c00245{transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);}
.m4c_c00245{transform:matrix(0.305131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305131,0.000000,0.000000,0.250000,0,0);}
.m5c_c00245{transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);}
.m47_c00245{transform:matrix(0.305499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305499,0.000000,0.000000,0.250000,0,0);}
.m73_c00245{transform:matrix(0.307223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307223,0.000000,0.000000,0.250000,0,0);}
.m9b_c00245{transform:matrix(0.307343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307343,0.000000,0.000000,0.250000,0,0);}
.m19_c00245{transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);}
.m92_c00245{transform:matrix(0.308280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308280,0.000000,0.000000,0.250000,0,0);}
.m20_c00245{transform:matrix(0.308306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308306,0.000000,0.000000,0.250000,0,0);}
.m4f_c00245{transform:matrix(0.308869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308869,0.000000,0.000000,0.250000,0,0);}
.m70_c00245{transform:matrix(0.310099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310099,0.000000,0.000000,0.250000,0,0);}
.mb2_c00245{transform:matrix(0.310383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310383,0.000000,0.000000,0.250000,0,0);}
.m41_c00245{transform:matrix(0.310525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310525,0.000000,0.000000,0.250000,0,0);}
.m79_c00245{transform:matrix(0.310532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310532,0.000000,0.000000,0.250000,0,0);}
.mb5_c00245{transform:matrix(0.310681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310681,0.000000,0.000000,0.250000,0,0);}
.m6e_c00245{transform:matrix(0.310814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310814,0.000000,0.000000,0.250000,0,0);}
.m7c_c00245{transform:matrix(0.311689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311689,0.000000,0.000000,0.250000,0,0);}
.ma0_c00245{transform:matrix(0.311867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311867,0.000000,0.000000,0.250000,0,0);}
.m3b_c00245{transform:matrix(0.312128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312128,0.000000,0.000000,0.250000,0,0);}
.m97_c00245{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.m1e_c00245{transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);}
.m29_c00245{transform:matrix(0.314545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314545,0.000000,0.000000,0.250000,0,0);}
.mb6_c00245{transform:matrix(0.314734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314734,0.000000,0.000000,0.250000,0,0);}
.m75_c00245{transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);}
.mae_c00245{transform:matrix(0.316653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316653,0.000000,0.000000,0.250000,0,0);}
.m8_c00245{transform:matrix(0.316972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316972,0.000000,0.000000,0.250000,0,0);}
.m95_c00245{transform:matrix(0.318219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318219,0.000000,0.000000,0.250000,0,0);}
.m3_c00245{transform:matrix(0.318374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318374,0.000000,0.000000,0.250000,0,0);}
.m98_c00245{transform:matrix(0.318998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318998,0.000000,0.000000,0.250000,0,0);}
.m15_c00245{transform:matrix(0.319389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319389,0.000000,0.000000,0.250000,0,0);}
.ma8_c00245{transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);}
.mb4_c00245{transform:matrix(0.320040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320040,0.000000,0.000000,0.250000,0,0);}
.m94_c00245{transform:matrix(0.320385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320385,0.000000,0.000000,0.250000,0,0);}
.m60_c00245{transform:matrix(0.321083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321083,0.000000,0.000000,0.250000,0,0);}
.m1c_c00245{transform:matrix(0.322165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322165,0.000000,0.000000,0.250000,0,0);}
.m87_c00245{transform:matrix(0.322753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322753,0.000000,0.000000,0.250000,0,0);}
.m6f_c00245{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.m43_c00245{transform:matrix(0.326049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326049,0.000000,0.000000,0.250000,0,0);}
.mad_c00245{transform:matrix(0.329336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329336,0.000000,0.000000,0.250000,0,0);}
.m91_c00245{transform:matrix(0.329991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329991,0.000000,0.000000,0.250000,0,0);}
.mb1_c00245{transform:matrix(0.331224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331224,0.000000,0.000000,0.250000,0,0);}
.m7f_c00245{transform:matrix(0.332431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332431,0.000000,0.000000,0.250000,0,0);}
.m9_c00245{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.ma6_c00245{transform:matrix(0.334113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334113,0.000000,0.000000,0.250000,0,0);}
.m93_c00245{transform:matrix(0.334276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334276,0.000000,0.000000,0.250000,0,0);}
.m49_c00245{transform:matrix(0.334728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334728,0.000000,0.000000,0.250000,0,0);}
.m6_c00245{transform:matrix(0.337104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337104,0.000000,0.000000,0.250000,0,0);}
.m9a_c00245{transform:matrix(0.337511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337511,0.000000,0.000000,0.250000,0,0);}
.m61_c00245{transform:matrix(0.338602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338602,0.000000,0.000000,0.250000,0,0);}
.m86_c00245{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.maf_c00245{transform:matrix(0.341562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341562,0.000000,0.000000,0.250000,0,0);}
.m9f_c00245{transform:matrix(0.343060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343060,0.000000,0.000000,0.250000,0,0);}
.mc_c00245{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.m28_c00245{transform:matrix(0.344343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344343,0.000000,0.000000,0.250000,0,0);}
.m22_c00245{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m89_c00245{transform:matrix(0.353351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353351,0.000000,0.000000,0.250000,0,0);}
.m2d_c00245{transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);}
.m52_c00245{transform:matrix(0.354932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354932,0.000000,0.000000,0.250000,0,0);}
.m14_c00245{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m55_c00245{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);}
.mab_c00245{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m90_c00245{transform:matrix(0.363411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363411,0.000000,0.000000,0.250000,0,0);}
.m12_c00245{transform:matrix(0.372071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372071,0.000000,0.000000,0.250000,0,0);}
.m48_c00245{transform:matrix(0.405723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405723,0.000000,0.000000,0.250000,0,0);}
.m18_c00245{transform:matrix(0.407787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407787,0.000000,0.000000,0.250000,0,0);}
.m80_c00245{transform:matrix(0.480657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480657,0.000000,0.000000,0.250000,0,0);}
.v1_c00245{vertical-align:-32.788800px;}
.v0_c00245{vertical-align:0.000000px;}
.ls6_c00245{letter-spacing:-2.744280px;}
.lse_c00245{letter-spacing:-2.399285px;}
.ls7_c00245{letter-spacing:-2.391444px;}
.lsa_c00245{letter-spacing:-2.375762px;}
.ls2_c00245{letter-spacing:0.000000px;}
.ls1_c00245{letter-spacing:0.031363px;}
.ls3_c00245{letter-spacing:1.598893px;}
.lsb_c00245{letter-spacing:3.112798px;}
.lsd_c00245{letter-spacing:3.316500px;}
.lsc_c00245{letter-spacing:3.622450px;}
.ls5_c00245{letter-spacing:3.781810px;}
.ls4_c00245{letter-spacing:3.920400px;}
.ls0_c00245{letter-spacing:18.925566px;}
.ls9_c00245{letter-spacing:48.470598px;}
.ls8_c00245{letter-spacing:49.896198px;}
.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:-19.633363px;}
.ws1_c00245{word-spacing:-19.602000px;}
.ws2_c00245{word-spacing:-17.210556px;}
.ws4_c00245{word-spacing:0.000000px;}
.ws3_c00245{word-spacing:1.176516px;}
._a_c00245{margin-left:-13.172544px;}
._7_c00245{margin-left:-10.663488px;}
._e_c00245{width:4.626072px;}
._b_c00245{width:6.271848px;}
._4_c00245{width:8.624088px;}
._8_c00245{width:10.036224px;}
._1_c00245{width:11.541658px;}
._6_c00245{width:21.797028px;}
._c_c00245{width:23.600808px;}
._5_c00245{width:29.560608px;}
._2_c00245{width:32.382504px;}
._3_c00245{width:35.441208px;}
._d_c00245{width:37.479024px;}
._9_c00245{width:39.045600px;}
._f_c00245{width:42.075000px;}
._0_c00245{width:1863.991800px;}
.fc0_c00245{color:transparent;}
.fs0_c00245{font-size:33.660000px;}
.fs5_c00245{font-size:48.470598px;}
.fs4_c00245{font-size:49.896198px;}
.fs6_c00245{font-size:66.330000px;}
.fs3_c00245{font-size:75.636198px;}
.fs2_c00245{font-size:78.408000px;}
.fs1_c00245{font-size:81.576198px;}
.y0_c00245{bottom:0.000000px;}
.y1_c00245{bottom:76.500000px;}
.y18_c00245{bottom:152.089785px;}
.y17_c00245{bottom:183.457935px;}
.y16_c00245{bottom:215.885385px;}
.y15_c00245{bottom:249.743385px;}
.y14_c00245{bottom:281.467935px;}
.y13_c00245{bottom:313.538985px;}
.y12_c00245{bottom:346.327785px;}
.y11_c00245{bottom:376.983135px;}
.y10_c00245{bottom:441.486585px;}
.yf_c00245{bottom:467.860185px;}
.ye_c00245{bottom:500.648985px;}
.yd_c00245{bottom:533.794185px;}
.yc_c00245{bottom:567.652185px;}
.yb_c00245{bottom:599.733135px;}
.ya_c00245{bottom:660.677535px;}
.y9_c00245{bottom:692.392185px;}
.y8_c00245{bottom:724.473135px;}
.y7_c00245{bottom:756.905535px;}
.y6_c00245{bottom:789.332985px;}
.y5_c00245{bottom:821.408985px;}
.y4_c00245{bottom:886.986585px;}
.y3_c00245{bottom:919.418985px;}
.y2_c00245{bottom:1077.304185px;}
.h6_c00245{height:32.281418px;}
.h5_c00245{height:33.230868px;}
.h2_c00245{height:47.273777px;}
.h7_c00245{height:69.180117px;}
.h4_c00245{height:74.195860px;}
.h3_c00245{height:76.953164px;}
.h1_c00245{height:1110.000000px;}
.h0_c00245{height:1263.000000px;}
.w1_c00245{width:751.500000px;}
.w0_c00245{width:892.500000px;}
.x0_c00245{left:0.000000px;}
.x27_c00245{left:57.296685px;}
.x3_c00245{left:59.222235px;}
.x57_c00245{left:60.969585px;}
.x1_c00245{left:70.500000px;}
.x47_c00245{left:79.551885px;}
.x4_c00245{left:90.773535px;}
.x44_c00245{left:101.653635px;}
.x19_c00245{left:112.429785px;}
.x31_c00245{left:123.200985px;}
.x58_c00245{left:124.784985px;}
.x28_c00245{left:135.516585px;}
.x10_c00245{left:137.090685px;}
.x3d_c00245{left:145.233435px;}
.x61_c00245{left:146.564985px;}
.x32_c00245{left:155.638335px;}
.x11_c00245{left:157.157985px;}
.x5_c00245{left:167.043135px;}
.x48_c00245{left:168.290535px;}
.x3c_c00245{left:169.354785px;}
.x2_c00245{left:170.508135px;}
.x1a_c00245{left:178.784535px;}
.x37_c00245{left:180.036885px;}
.x29_c00245{left:189.669585px;}
.x1b_c00245{left:200.727885px;}
.x38_c00245{left:210.197235px;}
.x12_c00245{left:212.102985px;}
.x52_c00245{left:213.538485px;}
.x2a_c00245{left:222.839535px;}
.x49_c00245{left:224.195835px;}
.x1c_c00245{left:233.516685px;}
.x5d_c00245{left:234.575985px;}
.x13_c00245{left:244.797735px;}
.x53_c00245{left:245.876835px;}
.x45_c00245{left:256.588635px;}
.x1d_c00245{left:267.335085px;}
.x6_c00245{left:278.561685px;}
.x3e_c00245{left:289.877385px;}
.x1e_c00245{left:300.039735px;}
.x1f_c00245{left:311.375235px;}
.x14_c00245{left:322.260285px;}
.x54_c00245{left:334.353135px;}
.x15_c00245{left:344.347185px;}
.x51_c00245{left:345.386685px;}
.x5e_c00245{left:346.643985px;}
.x59_c00245{left:353.425485px;}
.x20_c00245{left:355.049085px;}
.x3f_c00245{left:356.128185px;}
.x39_c00245{left:366.453885px;}
.x3a_c00245{left:377.665635px;}
.x34_c00245{left:387.991335px;}
.x2b_c00245{left:389.233785px;}
.x4a_c00245{left:399.613935px;}
.x4d_c00245{left:400.658385px;}
.x4b_c00245{left:409.424835px;}
.x7_c00245{left:411.677085px;}
.x16_c00245{left:421.869135px;}
.x5f_c00245{left:423.111585px;}
.x4e_c00245{left:432.392835px;}
.x5a_c00245{left:433.422435px;}
.x21_c00245{left:442.540335px;}
.x17_c00245{left:444.035235px;}
.x2c_c00245{left:454.370835px;}
.x60_c00245{left:455.831085px;}
.x8_c00245{left:465.533085px;}
.x55_c00245{left:466.547835px;}
.x46_c00245{left:476.546835px;}
.x22_c00245{left:486.367635px;}
.x18_c00245{left:487.852635px;}
.x4f_c00245{left:498.896085px;}
.x2d_c00245{left:508.147635px;}
.x9_c00245{left:510.003885px;}
.x5b_c00245{left:520.938435px;}
.xa_c00245{left:530.818635px;}
.x4c_c00245{left:532.155135px;}
.x40_c00245{left:543.931185px;}
.x23_c00245{left:553.207485px;}
.xb_c00245{left:564.968685px;}
.x35_c00245{left:575.126085px;}
.x3b_c00245{left:586.902135px;}
.x33_c00245{left:588.283185px;}
.xc_c00245{left:597.420885px;}
.x41_c00245{left:608.449485px;}
.xd_c00245{left:619.012785px;}
.x56_c00245{left:620.586885px;}
.x2e_c00245{left:630.714585px;}
.xe_c00245{left:641.951085px;}
.x2f_c00245{left:651.395685px;}
.x24_c00245{left:652.638135px;}
.x62_c00245{left:653.722185px;}
.x30_c00245{left:663.671685px;}
.x63_c00245{left:664.745835px;}
.x36_c00245{left:666.750585px;}
.x42_c00245{left:673.834035px;}
.xf_c00245{left:675.373485px;}
.x25_c00245{left:685.288335px;}
.x26_c00245{left:694.906185px;}
.x43_c00245{left:696.450585px;}
.x50_c00245{left:707.142585px;}
.x5c_c00245{left:718.547385px;}
@media print{
.v1_c00245{vertical-align:-29.145600pt;}
.v0_c00245{vertical-align:0.000000pt;}
.ls6_c00245{letter-spacing:-2.439360pt;}
.lse_c00245{letter-spacing:-2.132698pt;}
.ls7_c00245{letter-spacing:-2.125728pt;}
.lsa_c00245{letter-spacing:-2.111789pt;}
.ls2_c00245{letter-spacing:0.000000pt;}
.ls1_c00245{letter-spacing:0.027878pt;}
.ls3_c00245{letter-spacing:1.421239pt;}
.lsb_c00245{letter-spacing:2.766931pt;}
.lsd_c00245{letter-spacing:2.948000pt;}
.lsc_c00245{letter-spacing:3.219955pt;}
.ls5_c00245{letter-spacing:3.361609pt;}
.ls4_c00245{letter-spacing:3.484800pt;}
.ls0_c00245{letter-spacing:16.822725pt;}
.ls9_c00245{letter-spacing:43.084976pt;}
.ls8_c00245{letter-spacing:44.352176pt;}
.ws0_c00245{word-spacing:-17.451878pt;}
.ws1_c00245{word-spacing:-17.424000pt;}
.ws2_c00245{word-spacing:-15.298272pt;}
.ws4_c00245{word-spacing:0.000000pt;}
.ws3_c00245{word-spacing:1.045792pt;}
._a_c00245{margin-left:-11.708928pt;}
._7_c00245{margin-left:-9.478656pt;}
._e_c00245{width:4.112064pt;}
._b_c00245{width:5.574976pt;}
._4_c00245{width:7.665856pt;}
._8_c00245{width:8.921088pt;}
._1_c00245{width:10.259251pt;}
._6_c00245{width:19.375136pt;}
._c_c00245{width:20.978496pt;}
._5_c00245{width:26.276096pt;}
._2_c00245{width:28.784448pt;}
._3_c00245{width:31.503296pt;}
._d_c00245{width:33.314688pt;}
._9_c00245{width:34.707200pt;}
._f_c00245{width:37.400000pt;}
._0_c00245{width:1656.881600pt;}
.fs0_c00245{font-size:29.920000pt;}
.fs5_c00245{font-size:43.084976pt;}
.fs4_c00245{font-size:44.352176pt;}
.fs6_c00245{font-size:58.960000pt;}
.fs3_c00245{font-size:67.232176pt;}
.fs2_c00245{font-size:69.696000pt;}
.fs1_c00245{font-size:72.512176pt;}
.y0_c00245{bottom:0.000000pt;}
.y1_c00245{bottom:68.000000pt;}
.y18_c00245{bottom:135.190920pt;}
.y17_c00245{bottom:163.073720pt;}
.y16_c00245{bottom:191.898120pt;}
.y15_c00245{bottom:221.994120pt;}
.y14_c00245{bottom:250.193720pt;}
.y13_c00245{bottom:278.701320pt;}
.y12_c00245{bottom:307.846920pt;}
.y11_c00245{bottom:335.096120pt;}
.y10_c00245{bottom:392.432520pt;}
.yf_c00245{bottom:415.875720pt;}
.ye_c00245{bottom:445.021320pt;}
.yd_c00245{bottom:474.483720pt;}
.yc_c00245{bottom:504.579720pt;}
.yb_c00245{bottom:533.096120pt;}
.ya_c00245{bottom:587.268920pt;}
.y9_c00245{bottom:615.459720pt;}
.y8_c00245{bottom:643.976120pt;}
.y7_c00245{bottom:672.804920pt;}
.y6_c00245{bottom:701.629320pt;}
.y5_c00245{bottom:730.141320pt;}
.y4_c00245{bottom:788.432520pt;}
.y3_c00245{bottom:817.261320pt;}
.y2_c00245{bottom:957.603720pt;}
.h6_c00245{height:28.694594pt;}
.h5_c00245{height:29.538549pt;}
.h2_c00245{height:42.021135pt;}
.h7_c00245{height:61.493438pt;}
.h4_c00245{height:65.951876pt;}
.h3_c00245{height:68.402813pt;}
.h1_c00245{height:986.666667pt;}
.h0_c00245{height:1122.666667pt;}
.w1_c00245{width:668.000000pt;}
.w0_c00245{width:793.333333pt;}
.x0_c00245{left:0.000000pt;}
.x27_c00245{left:50.930387pt;}
.x3_c00245{left:52.641987pt;}
.x57_c00245{left:54.195187pt;}
.x1_c00245{left:62.666667pt;}
.x47_c00245{left:70.712787pt;}
.x4_c00245{left:80.687587pt;}
.x44_c00245{left:90.358787pt;}
.x19_c00245{left:99.937587pt;}
.x31_c00245{left:109.511987pt;}
.x58_c00245{left:110.919987pt;}
.x28_c00245{left:120.459187pt;}
.x10_c00245{left:121.858387pt;}
.x3d_c00245{left:129.096387pt;}
.x61_c00245{left:130.279987pt;}
.x32_c00245{left:138.345187pt;}
.x11_c00245{left:139.695987pt;}
.x5_c00245{left:148.482787pt;}
.x48_c00245{left:149.591587pt;}
.x3c_c00245{left:150.537587pt;}
.x2_c00245{left:151.562787pt;}
.x1a_c00245{left:158.919587pt;}
.x37_c00245{left:160.032787pt;}
.x29_c00245{left:168.595187pt;}
.x1b_c00245{left:178.424787pt;}
.x38_c00245{left:186.841987pt;}
.x12_c00245{left:188.535987pt;}
.x52_c00245{left:189.811987pt;}
.x2a_c00245{left:198.079587pt;}
.x49_c00245{left:199.285187pt;}
.x1c_c00245{left:207.570387pt;}
.x5d_c00245{left:208.511987pt;}
.x13_c00245{left:217.597987pt;}
.x53_c00245{left:218.557187pt;}
.x45_c00245{left:228.078787pt;}
.x1d_c00245{left:237.631187pt;}
.x6_c00245{left:247.610387pt;}
.x3e_c00245{left:257.668787pt;}
.x1e_c00245{left:266.701987pt;}
.x1f_c00245{left:276.777987pt;}
.x14_c00245{left:286.453587pt;}
.x54_c00245{left:297.202787pt;}
.x15_c00245{left:306.086387pt;}
.x51_c00245{left:307.010387pt;}
.x5e_c00245{left:308.127987pt;}
.x59_c00245{left:314.155987pt;}
.x20_c00245{left:315.599187pt;}
.x3f_c00245{left:316.558387pt;}
.x39_c00245{left:325.736787pt;}
.x3a_c00245{left:335.702787pt;}
.x34_c00245{left:344.881187pt;}
.x2b_c00245{left:345.985587pt;}
.x4a_c00245{left:355.212387pt;}
.x4d_c00245{left:356.140787pt;}
.x4b_c00245{left:363.933187pt;}
.x7_c00245{left:365.935187pt;}
.x16_c00245{left:374.994787pt;}
.x5f_c00245{left:376.099187pt;}
.x4e_c00245{left:384.349187pt;}
.x5a_c00245{left:385.264387pt;}
.x21_c00245{left:393.369187pt;}
.x17_c00245{left:394.697987pt;}
.x2c_c00245{left:403.885187pt;}
.x60_c00245{left:405.183187pt;}
.x8_c00245{left:413.807187pt;}
.x55_c00245{left:414.709187pt;}
.x46_c00245{left:423.597187pt;}
.x22_c00245{left:432.326787pt;}
.x18_c00245{left:433.646787pt;}
.x4f_c00245{left:443.463187pt;}
.x2d_c00245{left:451.686787pt;}
.x9_c00245{left:453.336787pt;}
.x5b_c00245{left:463.056387pt;}
.xa_c00245{left:471.838787pt;}
.x4c_c00245{left:473.026787pt;}
.x40_c00245{left:483.494387pt;}
.x23_c00245{left:491.739987pt;}
.xb_c00245{left:502.194387pt;}
.x35_c00245{left:511.223187pt;}
.x3b_c00245{left:521.690787pt;}
.x33_c00245{left:522.918387pt;}
.xc_c00245{left:531.040787pt;}
.x41_c00245{left:540.843987pt;}
.xd_c00245{left:550.233587pt;}
.x56_c00245{left:551.632787pt;}
.x2e_c00245{left:560.635187pt;}
.xe_c00245{left:570.623187pt;}
.x2f_c00245{left:579.018387pt;}
.x24_c00245{left:580.122787pt;}
.x62_c00245{left:581.086387pt;}
.x30_c00245{left:589.930387pt;}
.x63_c00245{left:590.885187pt;}
.x36_c00245{left:592.667187pt;}
.x42_c00245{left:598.963587pt;}
.xf_c00245{left:600.331987pt;}
.x25_c00245{left:609.145187pt;}
.x26_c00245{left:617.694387pt;}
.x43_c00245{left:619.067187pt;}
.x50_c00245{left:628.571187pt;}
.x5c_c00245{left:638.708787pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c56f0efed91cd3cd9776dd0a.woff2')format("woff");}.ff1_c00246{font-family:ff1_c00246;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00246;src:url('chunks/assets/font_b97b1ab999af4db68bc55484.woff2')format("woff");}.ff2_c00246{font-family:ff2_c00246;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00246;src:url('chunks/assets/font_7ecc45d18f9ae82425341ea6.woff2')format("woff");}.ff3_c00246{font-family:ff3_c00246;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00246;src:url('chunks/assets/font_124ba22866389d1f7c6da5c3.woff2')format("woff");}.ff4_c00246{font-family:ff4_c00246;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m9a_c00246{transform:matrix(0.095589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095589,0.000000,0.000000,0.250000,0,0);}
.m23_c00246{transform:matrix(0.113636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113636,0.000000,0.000000,0.250000,0,0);}
.ma7_c00246{transform:matrix(0.138456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138456,0.000000,0.000000,0.250000,0,0);}
.m85_c00246{transform:matrix(0.182837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182837,0.000000,0.000000,0.250000,0,0);}
.m7f_c00246{transform:matrix(0.187194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187194,0.000000,0.000000,0.250000,0,0);}
.m99_c00246{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);}
.mbb_c00246{transform:matrix(0.211712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211712,0.000000,0.000000,0.250000,0,0);}
.m98_c00246{transform:matrix(0.220587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220587,0.000000,0.000000,0.250000,0,0);}
.m97_c00246{transform:matrix(0.222427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222427,0.000000,0.000000,0.250000,0,0);}
.m82_c00246{transform:matrix(0.223535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223535,0.000000,0.000000,0.250000,0,0);}
.m22_c00246{transform:matrix(0.224027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224027,0.000000,0.000000,0.250000,0,0);}
.m6_c00246{transform:matrix(0.227723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227723,0.000000,0.000000,0.250000,0,0);}
.m96_c00246{transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);}
.m1c_c00246{transform:matrix(0.232318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232318,0.000000,0.000000,0.250000,0,0);}
.md_c00246{transform:matrix(0.235112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235112,0.000000,0.000000,0.250000,0,0);}
.ma5_c00246{transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);}
.m0_c00246{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m19_c00246{transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);}
.m6b_c00246{transform:matrix(0.250919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250919,0.000000,0.000000,0.250000,0,0);}
.m2d_c00246{transform:matrix(0.251158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251158,0.000000,0.000000,0.250000,0,0);}
.m64_c00246{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.m6a_c00246{transform:matrix(0.252435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252435,0.000000,0.000000,0.250000,0,0);}
.m33_c00246{transform:matrix(0.253545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253545,0.000000,0.000000,0.250000,0,0);}
.m9c_c00246{transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);}
.mb6_c00246{transform:matrix(0.254597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254597,0.000000,0.000000,0.250000,0,0);}
.m7e_c00246{transform:matrix(0.255799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255799,0.000000,0.000000,0.250000,0,0);}
.m9d_c00246{transform:matrix(0.256057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256057,0.000000,0.000000,0.250000,0,0);}
.m93_c00246{transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);}
.mb_c00246{transform:matrix(0.257794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257794,0.000000,0.000000,0.250000,0,0);}
.mbc_c00246{transform:matrix(0.258083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258083,0.000000,0.000000,0.250000,0,0);}
.m6d_c00246{transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);}
.m4a_c00246{transform:matrix(0.259258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259258,0.000000,0.000000,0.250000,0,0);}
.ma6_c00246{transform:matrix(0.259854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259854,0.000000,0.000000,0.250000,0,0);}
.m50_c00246{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.ma8_c00246{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.m58_c00246{transform:matrix(0.262649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262649,0.000000,0.000000,0.250000,0,0);}
.m77_c00246{transform:matrix(0.262708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262708,0.000000,0.000000,0.250000,0,0);}
.m4_c00246{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.mb8_c00246{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m31_c00246{transform:matrix(0.264665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264665,0.000000,0.000000,0.250000,0,0);}
.m34_c00246{transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);}
.m8_c00246{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m86_c00246{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m89_c00246{transform:matrix(0.267925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267925,0.000000,0.000000,0.250000,0,0);}
.m8e_c00246{transform:matrix(0.267980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267980,0.000000,0.000000,0.250000,0,0);}
.m78_c00246{transform:matrix(0.268484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268484,0.000000,0.000000,0.250000,0,0);}
.m4d_c00246{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.m76_c00246{transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);}
.m1_c00246{transform:matrix(0.269425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269425,0.000000,0.000000,0.250000,0,0);}
.m3e_c00246{transform:matrix(0.270936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270936,0.000000,0.000000,0.250000,0,0);}
.m5e_c00246{transform:matrix(0.270977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270977,0.000000,0.000000,0.250000,0,0);}
.m35_c00246{transform:matrix(0.271337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271337,0.000000,0.000000,0.250000,0,0);}
.m5b_c00246{transform:matrix(0.272710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272710,0.000000,0.000000,0.250000,0,0);}
.m3c_c00246{transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);}
.m16_c00246{transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);}
.m59_c00246{transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);}
.m1e_c00246{transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);}
.m54_c00246{transform:matrix(0.274479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274479,0.000000,0.000000,0.250000,0,0);}
.m38_c00246{transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);}
.m68_c00246{transform:matrix(0.275148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275148,0.000000,0.000000,0.250000,0,0);}
.m7a_c00246{transform:matrix(0.275533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275533,0.000000,0.000000,0.250000,0,0);}
.m41_c00246{transform:matrix(0.275573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275573,0.000000,0.000000,0.250000,0,0);}
.m73_c00246{transform:matrix(0.275967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275967,0.000000,0.000000,0.250000,0,0);}
.m7c_c00246{transform:matrix(0.276607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276607,0.000000,0.000000,0.250000,0,0);}
.m1f_c00246{transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);}
.m10_c00246{transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);}
.m24_c00246{transform:matrix(0.277168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277168,0.000000,0.000000,0.250000,0,0);}
.m2b_c00246{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m8b_c00246{transform:matrix(0.277881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277881,0.000000,0.000000,0.250000,0,0);}
.m67_c00246{transform:matrix(0.278107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278107,0.000000,0.000000,0.250000,0,0);}
.mbf_c00246{transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);}
.m52_c00246{transform:matrix(0.278778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278778,0.000000,0.000000,0.250000,0,0);}
.m8f_c00246{transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);}
.m3d_c00246{transform:matrix(0.279969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279969,0.000000,0.000000,0.250000,0,0);}
.mf_c00246{transform:matrix(0.280181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280181,0.000000,0.000000,0.250000,0,0);}
.m3b_c00246{transform:matrix(0.281153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281153,0.000000,0.000000,0.250000,0,0);}
.m88_c00246{transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);}
.m29_c00246{transform:matrix(0.281854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281854,0.000000,0.000000,0.250000,0,0);}
.m42_c00246{transform:matrix(0.282073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282073,0.000000,0.000000,0.250000,0,0);}
.m17_c00246{transform:matrix(0.282710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282710,0.000000,0.000000,0.250000,0,0);}
.m71_c00246{transform:matrix(0.283164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283164,0.000000,0.000000,0.250000,0,0);}
.m44_c00246{transform:matrix(0.283276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283276,0.000000,0.000000,0.250000,0,0);}
.m48_c00246{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m30_c00246{transform:matrix(0.283775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283775,0.000000,0.000000,0.250000,0,0);}
.m13_c00246{transform:matrix(0.284799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284799,0.000000,0.000000,0.250000,0,0);}
.m40_c00246{transform:matrix(0.285682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285682,0.000000,0.000000,0.250000,0,0);}
.maa_c00246{transform:matrix(0.285694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285694,0.000000,0.000000,0.250000,0,0);}
.m72_c00246{transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);}
.m56_c00246{transform:matrix(0.286402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286402,0.000000,0.000000,0.250000,0,0);}
.ma9_c00246{transform:matrix(0.286659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286659,0.000000,0.000000,0.250000,0,0);}
.m20_c00246{transform:matrix(0.287440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287440,0.000000,0.000000,0.250000,0,0);}
.mb0_c00246{transform:matrix(0.288104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288104,0.000000,0.000000,0.250000,0,0);}
.m43_c00246{transform:matrix(0.289803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289803,0.000000,0.000000,0.250000,0,0);}
.m1a_c00246{transform:matrix(0.290061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290061,0.000000,0.000000,0.250000,0,0);}
.m2c_c00246{transform:matrix(0.290141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290141,0.000000,0.000000,0.250000,0,0);}
.m8a_c00246{transform:matrix(0.290222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290222,0.000000,0.000000,0.250000,0,0);}
.m6f_c00246{transform:matrix(0.290806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290806,0.000000,0.000000,0.250000,0,0);}
.m62_c00246{transform:matrix(0.291024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291024,0.000000,0.000000,0.250000,0,0);}
.m14_c00246{transform:matrix(0.291922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291922,0.000000,0.000000,0.250000,0,0);}
.m69_c00246{transform:matrix(0.293486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293486,0.000000,0.000000,0.250000,0,0);}
.m1b_c00246{transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);}
.m83_c00246{transform:matrix(0.294314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294314,0.000000,0.000000,0.250000,0,0);}
.m2_c00246{transform:matrix(0.294710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294710,0.000000,0.000000,0.250000,0,0);}
.m28_c00246{transform:matrix(0.295009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295009,0.000000,0.000000,0.250000,0,0);}
.m25_c00246{transform:matrix(0.295167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295167,0.000000,0.000000,0.250000,0,0);}
.m5f_c00246{transform:matrix(0.295385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295385,0.000000,0.000000,0.250000,0,0);}
.m5d_c00246{transform:matrix(0.295485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295485,0.000000,0.000000,0.250000,0,0);}
.m90_c00246{transform:matrix(0.295952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295952,0.000000,0.000000,0.250000,0,0);}
.mbd_c00246{transform:matrix(0.296723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296723,0.000000,0.000000,0.250000,0,0);}
.m60_c00246{transform:matrix(0.296777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296777,0.000000,0.000000,0.250000,0,0);}
.m65_c00246{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m3_c00246{transform:matrix(0.297275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297275,0.000000,0.000000,0.250000,0,0);}
.m21_c00246{transform:matrix(0.298271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298271,0.000000,0.000000,0.250000,0,0);}
.m26_c00246{transform:matrix(0.298503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298503,0.000000,0.000000,0.250000,0,0);}
.m2f_c00246{transform:matrix(0.298716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298716,0.000000,0.000000,0.250000,0,0);}
.m84_c00246{transform:matrix(0.299604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299604,0.000000,0.000000,0.250000,0,0);}
.ma2_c00246{transform:matrix(0.299777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299777,0.000000,0.000000,0.250000,0,0);}
.m32_c00246{transform:matrix(0.300614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300614,0.000000,0.000000,0.250000,0,0);}
.ma0_c00246{transform:matrix(0.300944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300944,0.000000,0.000000,0.250000,0,0);}
.mb2_c00246{transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);}
.m61_c00246{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m53_c00246{transform:matrix(0.302463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302463,0.000000,0.000000,0.250000,0,0);}
.m9f_c00246{transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);}
.m51_c00246{transform:matrix(0.303790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303790,0.000000,0.000000,0.250000,0,0);}
.ma_c00246{transform:matrix(0.304153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304153,0.000000,0.000000,0.250000,0,0);}
.maf_c00246{transform:matrix(0.305132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305132,0.000000,0.000000,0.250000,0,0);}
.m1d_c00246{transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);}
.mb5_c00246{transform:matrix(0.307034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307034,0.000000,0.000000,0.250000,0,0);}
.m2a_c00246{transform:matrix(0.307943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307943,0.000000,0.000000,0.250000,0,0);}
.m3a_c00246{transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);}
.mac_c00246{transform:matrix(0.308236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308236,0.000000,0.000000,0.250000,0,0);}
.ma3_c00246{transform:matrix(0.308280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308280,0.000000,0.000000,0.250000,0,0);}
.mc_c00246{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m55_c00246{transform:matrix(0.310856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310856,0.000000,0.000000,0.250000,0,0);}
.m9b_c00246{transform:matrix(0.311312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311312,0.000000,0.000000,0.250000,0,0);}
.mb7_c00246{transform:matrix(0.311468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311468,0.000000,0.000000,0.250000,0,0);}
.mb1_c00246{transform:matrix(0.313280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313280,0.000000,0.000000,0.250000,0,0);}
.mab_c00246{transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);}
.m66_c00246{transform:matrix(0.313965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313965,0.000000,0.000000,0.250000,0,0);}
.m8c_c00246{transform:matrix(0.315175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315175,0.000000,0.000000,0.250000,0,0);}
.m49_c00246{transform:matrix(0.315717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315717,0.000000,0.000000,0.250000,0,0);}
.m87_c00246{transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);}
.m11_c00246{transform:matrix(0.317247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317247,0.000000,0.000000,0.250000,0,0);}
.m2e_c00246{transform:matrix(0.317828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317828,0.000000,0.000000,0.250000,0,0);}
.mb9_c00246{transform:matrix(0.317925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317925,0.000000,0.000000,0.250000,0,0);}
.mbe_c00246{transform:matrix(0.318248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318248,0.000000,0.000000,0.250000,0,0);}
.m95_c00246{transform:matrix(0.318706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318706,0.000000,0.000000,0.250000,0,0);}
.mad_c00246{transform:matrix(0.318741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318741,0.000000,0.000000,0.250000,0,0);}
.m4f_c00246{transform:matrix(0.318980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318980,0.000000,0.000000,0.250000,0,0);}
.m57_c00246{transform:matrix(0.319290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319290,0.000000,0.000000,0.250000,0,0);}
.m37_c00246{transform:matrix(0.319305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319305,0.000000,0.000000,0.250000,0,0);}
.m6c_c00246{transform:matrix(0.320064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320064,0.000000,0.000000,0.250000,0,0);}
.mc0_c00246{transform:matrix(0.320534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320534,0.000000,0.000000,0.250000,0,0);}
.m63_c00246{transform:matrix(0.320966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320966,0.000000,0.000000,0.250000,0,0);}
.m18_c00246{transform:matrix(0.321047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321047,0.000000,0.000000,0.250000,0,0);}
.m91_c00246{transform:matrix(0.321229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321229,0.000000,0.000000,0.250000,0,0);}
.m5c_c00246{transform:matrix(0.322261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322261,0.000000,0.000000,0.250000,0,0);}
.m6e_c00246{transform:matrix(0.322304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322304,0.000000,0.000000,0.250000,0,0);}
.m3f_c00246{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m5a_c00246{transform:matrix(0.327174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327174,0.000000,0.000000,0.250000,0,0);}
.mb3_c00246{transform:matrix(0.330301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330301,0.000000,0.000000,0.250000,0,0);}
.m7d_c00246{transform:matrix(0.331490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331490,0.000000,0.000000,0.250000,0,0);}
.m7b_c00246{transform:matrix(0.332674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332674,0.000000,0.000000,0.250000,0,0);}
.m46_c00246{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m94_c00246{transform:matrix(0.334985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334985,0.000000,0.000000,0.250000,0,0);}
.m27_c00246{transform:matrix(0.335394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335394,0.000000,0.000000,0.250000,0,0);}
.m47_c00246{transform:matrix(0.336509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336509,0.000000,0.000000,0.250000,0,0);}
.m80_c00246{transform:matrix(0.337910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337910,0.000000,0.000000,0.250000,0,0);}
.m4e_c00246{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m4b_c00246{transform:matrix(0.341239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341239,0.000000,0.000000,0.250000,0,0);}
.m7_c00246{transform:matrix(0.341400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341400,0.000000,0.000000,0.250000,0,0);}
.m74_c00246{transform:matrix(0.341936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341936,0.000000,0.000000,0.250000,0,0);}
.m75_c00246{transform:matrix(0.343551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343551,0.000000,0.000000,0.250000,0,0);}
.m9e_c00246{transform:matrix(0.344761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344761,0.000000,0.000000,0.250000,0,0);}
.m92_c00246{transform:matrix(0.348145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348145,0.000000,0.000000,0.250000,0,0);}
.m5_c00246{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.mae_c00246{transform:matrix(0.350956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350956,0.000000,0.000000,0.250000,0,0);}
.m45_c00246{transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);}
.m9_c00246{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.me_c00246{transform:matrix(0.358626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358626,0.000000,0.000000,0.250000,0,0);}
.m36_c00246{transform:matrix(0.360913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360913,0.000000,0.000000,0.250000,0,0);}
.m79_c00246{transform:matrix(0.361367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361367,0.000000,0.000000,0.250000,0,0);}
.m4c_c00246{transform:matrix(0.361669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361669,0.000000,0.000000,0.250000,0,0);}
.m15_c00246{transform:matrix(0.367358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367358,0.000000,0.000000,0.250000,0,0);}
.m8d_c00246{transform:matrix(0.374773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374773,0.000000,0.000000,0.250000,0,0);}
.m39_c00246{transform:matrix(0.397527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397527,0.000000,0.000000,0.250000,0,0);}
.m12_c00246{transform:matrix(0.402409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402409,0.000000,0.000000,0.250000,0,0);}
.mb4_c00246{transform:matrix(0.406255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406255,0.000000,0.000000,0.250000,0,0);}
.m81_c00246{transform:matrix(0.407787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407787,0.000000,0.000000,0.250000,0,0);}
.mba_c00246{transform:matrix(0.416528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416528,0.000000,0.000000,0.250000,0,0);}
.m70_c00246{transform:matrix(0.423078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423078,0.000000,0.000000,0.250000,0,0);}
.ma4_c00246{transform:matrix(0.424628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424628,0.000000,0.000000,0.250000,0,0);}
.ma1_c00246{transform:matrix(0.433011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433011,0.000000,0.000000,0.250000,0,0);}
.v0_c00246{vertical-align:0.000000px;}
.ls8_c00246{letter-spacing:-2.744280px;}
.lsa_c00246{letter-spacing:-2.399285px;}
.ls13_c00246{letter-spacing:-2.391444px;}
.ls10_c00246{letter-spacing:-0.611582px;}
.ls5_c00246{letter-spacing:0.000000px;}
.ls4_c00246{letter-spacing:0.580219px;}
.ls1_c00246{letter-spacing:1.246687px;}
.ls11_c00246{letter-spacing:1.364299px;}
.ls12_c00246{letter-spacing:1.505434px;}
.ls17_c00246{letter-spacing:1.643400px;}
.ls15_c00246{letter-spacing:1.764180px;}
.ls0_c00246{letter-spacing:2.532578px;}
.lsd_c00246{letter-spacing:3.112798px;}
.lsc_c00246{letter-spacing:3.183365px;}
.ls2_c00246{letter-spacing:3.316658px;}
.lse_c00246{letter-spacing:3.559723px;}
.ls9_c00246{letter-spacing:3.643200px;}
.lsf_c00246{letter-spacing:3.771900px;}
.ls7_c00246{letter-spacing:3.920400px;}
.ls6_c00246{letter-spacing:4.177810px;}
.ls3_c00246{letter-spacing:5.645376px;}
.ls16_c00246{letter-spacing:12.858912px;}
.lsb_c00246{letter-spacing:47.044800px;}
.ls14_c00246{letter-spacing:48.470598px;}
.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;}
}
.ws1_c00246{word-spacing:-23.161723px;}
.ws0_c00246{word-spacing:-22.714798px;}
.ws6_c00246{word-spacing:-21.366180px;}
.ws3_c00246{word-spacing:-19.602000px;}
.ws2_c00246{word-spacing:-18.990418px;}
.ws5_c00246{word-spacing:-0.783684px;}
.ws7_c00246{word-spacing:0.000000px;}
.ws4_c00246{word-spacing:2.665872px;}
._11_c00246{margin-left:-13.172544px;}
._9_c00246{margin-left:-11.761200px;}
._12_c00246{width:1.332540px;}
._5_c00246{width:2.979108px;}
._1_c00246{width:5.253336px;}
._6_c00246{width:7.213140px;}
._e_c00246{width:8.624088px;}
._a_c00246{width:10.506672px;}
._17_c00246{width:15.367968px;}
._10_c00246{width:17.484984px;}
._3_c00246{width:20.856528px;}
._7_c00246{width:22.654203px;}
._2_c00246{width:25.245000px;}
._c_c00246{width:26.423892px;}
._19_c00246{width:27.750571px;}
._0_c00246{width:29.755836px;}
._d_c00246{width:31.755636px;}
._8_c00246{width:33.480216px;}
._b_c00246{width:35.205192px;}
._16_c00246{width:36.460512px;}
._4_c00246{width:37.636157px;}
._15_c00246{width:39.988080px;}
._18_c00246{width:42.114600px;}
._f_c00246{width:43.256347px;}
._13_c00246{width:46.339920px;}
._14_c00246{width:79.740540px;}
.fc0_c00246{color:transparent;}
.fs9_c00246{font-size:32.868000px;}
.fs0_c00246{font-size:38.808000px;}
.fs4_c00246{font-size:47.044800px;}
.fs8_c00246{font-size:48.470598px;}
.fs7_c00246{font-size:66.330000px;}
.fs3_c00246{font-size:72.864000px;}
.fs5_c00246{font-size:73.656198px;}
.fs6_c00246{font-size:75.438000px;}
.fs2_c00246{font-size:78.408000px;}
.fs1_c00246{font-size:83.556198px;}
.y0_c00246{bottom:0.000000px;}
.y1_c00246{bottom:76.500000px;}
.y1b_c00246{bottom:162.786735px;}
.y19_c00246{bottom:191.293785px;}
.y1a_c00246{bottom:197.357535px;}
.y18_c00246{bottom:222.305535px;}
.y17_c00246{bottom:253.668735px;}
.y16_c00246{bottom:340.630335px;}
.y15_c00246{bottom:373.057785px;}
.y14_c00246{bottom:404.777385px;}
.y13_c00246{bottom:437.927535px;}
.y12_c00246{bottom:470.003535px;}
.y11_c00246{bottom:533.794185px;}
.y10_c00246{bottom:566.226585px;}
.yf_c00246{bottom:598.307535px;}
.ye_c00246{bottom:629.314335px;}
.yd_c00246{bottom:661.028985px;}
.yc_c00246{bottom:692.753535px;}
.ya_c00246{bottom:725.173560px;}
.yb_c00246{bottom:725.180985px;}
.y9_c00246{bottom:757.261935px;}
.y8_c00246{bottom:790.050735px;}
.y7_c00246{bottom:811.429785px;}
.y6_c00246{bottom:823.190985px;}
.y5_c00246{bottom:890.555535px;}
.y4_c00246{bottom:922.987935px;}
.y2_c00246{bottom:1066.968585px;}
.y3_c00246{bottom:1069.463385px;}
.h6_c00246{height:31.331837px;}
.h9_c00246{height:32.281418px;}
.ha_c00246{height:34.280297px;}
.h2_c00246{height:40.475531px;}
.h8_c00246{height:69.180117px;}
.h5_c00246{height:71.512031px;}
.h7_c00246{height:76.027359px;}
.h4_c00246{height:76.953164px;}
.h3_c00246{height:82.005839px;}
.h1_c00246{height:1110.000000px;}
.h0_c00246{height:1263.000000px;}
.w1_c00246{width:751.500000px;}
.w0_c00246{width:892.500000px;}
.x0_c00246{left:0.000000px;}
.x36_c00246{left:60.478149px;}
.x5_c00246{left:61.702185px;}
.x1_c00246{left:70.500000px;}
.x4d_c00246{left:71.681385px;}
.x6_c00246{left:72.760485px;}
.x4c_c00246{left:82.794135px;}
.x27_c00246{left:93.253485px;}
.x3a_c00246{left:94.505835px;}
.x65_c00246{left:103.935585px;}
.x7_c00246{left:105.574035px;}
.x25_c00246{left:115.048335px;}
.x1c_c00246{left:116.355135px;}
.x42_c00246{left:126.502635px;}
.x55_c00246{left:136.744185px;}
.x37_c00246{left:138.001485px;}
.x8_c00246{left:148.698435px;}
.x43_c00246{left:159.558735px;}
.x28_c00246{left:160.786335px;}
.x5a_c00246{left:171.478335px;}
.x2_c00246{left:172.626735px;}
.x4e_c00246{left:180.917985px;}
.x9_c00246{left:182.160435px;}
.x30_c00246{left:193.253385px;}
.x5b_c00246{left:203.227635px;}
.x56_c00246{left:204.574035px;}
.xa_c00246{left:213.726585px;}
.x17_c00246{left:214.805685px;}
.x1d_c00246{left:226.032285px;}
.x5f_c00246{left:236.189685px;}
.x44_c00246{left:237.729135px;}
.xb_c00246{left:238.976535px;}
.x1e_c00246{left:247.648935px;}
.x62_c00246{left:249.178485px;}
.x29_c00246{left:259.820985px;}
.x4f_c00246{left:269.329935px;}
.x49_c00246{left:271.265385px;}
.x5d_c00246{left:279.695235px;}
.x3b_c00246{left:280.794135px;}
.x5e_c00246{left:283.264185px;}
.x2a_c00246{left:291.288135px;}
.x1f_c00246{left:292.337535px;}
.xc_c00246{left:293.372085px;}
.x50_c00246{left:303.598785px;}
.x20_c00246{left:314.389785px;}
.x38_c00246{left:323.849235px;}
.xd_c00246{left:325.428285px;}
.x51_c00246{left:335.679735px;}
.x18_c00246{left:347.490435px;}
.x68_c00246{left:356.999385px;}
.xe_c00246{left:358.474485px;}
.x45_c00246{left:369.206085px;}
.x21_c00246{left:379.130835px;}
.x3c_c00246{left:380.338635px;}
.x19_c00246{left:381.412785px;}
.x57_c00246{left:390.496035px;}
.x1a_c00246{left:391.654335px;}
.x46_c00246{left:402.410685px;}
.x58_c00246{left:403.484835px;}
.xf_c00246{left:413.508585px;}
.x22_c00246{left:423.646185px;}
.x52_c00246{left:425.596485px;}
.x3d_c00246{left:427.012185px;}
.x39_c00246{left:434.372835px;}
.x47_c00246{left:435.605385px;}
.x31_c00246{left:446.292435px;}
.x10_c00246{left:457.306185px;}
.x1b_c00246{left:469.027785px;}
.x3e_c00246{left:470.314785px;}
.x69_c00246{left:478.175385px;}
.x32_c00246{left:479.467335px;}
.x3f_c00246{left:490.535535px;}
.x60_c00246{left:499.950435px;}
.x11_c00246{left:500.984985px;}
.x2b_c00246{left:502.588785px;}
.x4a_c00246{left:511.741335px;}
.x5c_c00246{left:522.007635px;}
.x33_c00246{left:523.438185px;}
.x53_c00246{left:533.412435px;}
.x12_c00246{left:535.031085px;}
.x40_c00246{left:545.495385px;}
.x2c_c00246{left:556.910085px;}
.x66_c00246{left:558.558435px;}
.x41_c00246{left:567.448635px;}
.x13_c00246{left:578.398035px;}
.x63_c00246{left:587.624835px;}
.x23_c00246{left:589.203885px;}
.x48_c00246{left:599.900835px;}
.x59_c00246{left:610.766085px;}
.x24_c00246{left:611.993685px;}
.x4b_c00246{left:620.770035px;}
.x54_c00246{left:622.027335px;}
.x2d_c00246{left:631.818435px;}
.x3_c00246{left:633.689535px;}
.x14_c00246{left:644.084535px;}
.x67_c00246{left:645.148785px;}
.x34_c00246{left:655.152735px;}
.x2e_c00246{left:666.191235px;}
.x4_c00246{left:667.369335px;}
.x15_c00246{left:676.759485px;}
.x35_c00246{left:678.293985px;}
.x26_c00246{left:681.362985px;}
.x64_c00246{left:687.896985px;}
.x61_c00246{left:690.673935px;}
.x16_c00246{left:699.262185px;}
.x2f_c00246{left:709.637385px;}
@media print{
.v0_c00246{vertical-align:0.000000pt;}
.ls8_c00246{letter-spacing:-2.439360pt;}
.lsa_c00246{letter-spacing:-2.132698pt;}
.ls13_c00246{letter-spacing:-2.125728pt;}
.ls10_c00246{letter-spacing:-0.543629pt;}
.ls5_c00246{letter-spacing:0.000000pt;}
.ls4_c00246{letter-spacing:0.515750pt;}
.ls1_c00246{letter-spacing:1.108166pt;}
.ls11_c00246{letter-spacing:1.212710pt;}
.ls12_c00246{letter-spacing:1.338163pt;}
.ls17_c00246{letter-spacing:1.460800pt;}
.ls15_c00246{letter-spacing:1.568160pt;}
.ls0_c00246{letter-spacing:2.251181pt;}
.lsd_c00246{letter-spacing:2.766931pt;}
.lsc_c00246{letter-spacing:2.829658pt;}
.ls2_c00246{letter-spacing:2.948141pt;}
.lse_c00246{letter-spacing:3.164198pt;}
.ls9_c00246{letter-spacing:3.238400pt;}
.lsf_c00246{letter-spacing:3.352800pt;}
.ls7_c00246{letter-spacing:3.484800pt;}
.ls6_c00246{letter-spacing:3.713609pt;}
.ls3_c00246{letter-spacing:5.018112pt;}
.ls16_c00246{letter-spacing:11.430144pt;}
.lsb_c00246{letter-spacing:41.817600pt;}
.ls14_c00246{letter-spacing:43.084976pt;}
.ws1_c00246{word-spacing:-20.588198pt;}
.ws0_c00246{word-spacing:-20.190931pt;}
.ws6_c00246{word-spacing:-18.992160pt;}
.ws3_c00246{word-spacing:-17.424000pt;}
.ws2_c00246{word-spacing:-16.880371pt;}
.ws5_c00246{word-spacing:-0.696608pt;}
.ws7_c00246{word-spacing:0.000000pt;}
.ws4_c00246{word-spacing:2.369664pt;}
._11_c00246{margin-left:-11.708928pt;}
._9_c00246{margin-left:-10.454400pt;}
._12_c00246{width:1.184480pt;}
._5_c00246{width:2.648096pt;}
._1_c00246{width:4.669632pt;}
._6_c00246{width:6.411680pt;}
._e_c00246{width:7.665856pt;}
._a_c00246{width:9.339264pt;}
._17_c00246{width:13.660416pt;}
._10_c00246{width:15.542208pt;}
._3_c00246{width:18.539136pt;}
._7_c00246{width:20.137069pt;}
._2_c00246{width:22.440000pt;}
._c_c00246{width:23.487904pt;}
._19_c00246{width:24.667174pt;}
._0_c00246{width:26.449632pt;}
._d_c00246{width:28.227232pt;}
._8_c00246{width:29.760192pt;}
._b_c00246{width:31.293504pt;}
._16_c00246{width:32.409344pt;}
._4_c00246{width:33.454362pt;}
._15_c00246{width:35.544960pt;}
._18_c00246{width:37.435200pt;}
._f_c00246{width:38.450086pt;}
._13_c00246{width:41.191040pt;}
._14_c00246{width:70.880480pt;}
.fs9_c00246{font-size:29.216000pt;}
.fs0_c00246{font-size:34.496000pt;}
.fs4_c00246{font-size:41.817600pt;}
.fs8_c00246{font-size:43.084976pt;}
.fs7_c00246{font-size:58.960000pt;}
.fs3_c00246{font-size:64.768000pt;}
.fs5_c00246{font-size:65.472176pt;}
.fs6_c00246{font-size:67.056000pt;}
.fs2_c00246{font-size:69.696000pt;}
.fs1_c00246{font-size:74.272176pt;}
.y0_c00246{bottom:0.000000pt;}
.y1_c00246{bottom:68.000000pt;}
.y1b_c00246{bottom:144.699320pt;}
.y19_c00246{bottom:170.038920pt;}
.y1a_c00246{bottom:175.428920pt;}
.y18_c00246{bottom:197.604920pt;}
.y17_c00246{bottom:225.483320pt;}
.y16_c00246{bottom:302.782520pt;}
.y15_c00246{bottom:331.606920pt;}
.y14_c00246{bottom:359.802120pt;}
.y13_c00246{bottom:389.268920pt;}
.y12_c00246{bottom:417.780920pt;}
.y11_c00246{bottom:474.483720pt;}
.y10_c00246{bottom:503.312520pt;}
.yf_c00246{bottom:531.828920pt;}
.ye_c00246{bottom:559.390520pt;}
.yd_c00246{bottom:587.581320pt;}
.yc_c00246{bottom:615.780920pt;}
.ya_c00246{bottom:644.598720pt;}
.yb_c00246{bottom:644.605320pt;}
.y9_c00246{bottom:673.121720pt;}
.y8_c00246{bottom:702.267320pt;}
.y7_c00246{bottom:721.270920pt;}
.y6_c00246{bottom:731.725320pt;}
.y5_c00246{bottom:791.604920pt;}
.y4_c00246{bottom:820.433720pt;}
.y2_c00246{bottom:948.416520pt;}
.y3_c00246{bottom:950.634120pt;}
.h6_c00246{height:27.850522pt;}
.h9_c00246{height:28.694594pt;}
.ha_c00246{height:30.471375pt;}
.h2_c00246{height:35.978250pt;}
.h8_c00246{height:61.493438pt;}
.h5_c00246{height:63.566250pt;}
.h7_c00246{height:67.579875pt;}
.h4_c00246{height:68.402813pt;}
.h3_c00246{height:72.894079pt;}
.h1_c00246{height:986.666667pt;}
.h0_c00246{height:1122.666667pt;}
.w1_c00246{width:668.000000pt;}
.w0_c00246{width:793.333333pt;}
.x0_c00246{left:0.000000pt;}
.x36_c00246{left:53.758355pt;}
.x5_c00246{left:54.846387pt;}
.x1_c00246{left:62.666667pt;}
.x4d_c00246{left:63.716787pt;}
.x6_c00246{left:64.675987pt;}
.x4c_c00246{left:73.594787pt;}
.x27_c00246{left:82.891987pt;}
.x3a_c00246{left:84.005187pt;}
.x65_c00246{left:92.387187pt;}
.x7_c00246{left:93.843587pt;}
.x25_c00246{left:102.265187pt;}
.x1c_c00246{left:103.426787pt;}
.x42_c00246{left:112.446787pt;}
.x55_c00246{left:121.550387pt;}
.x37_c00246{left:122.667987pt;}
.x8_c00246{left:132.176387pt;}
.x43_c00246{left:141.829987pt;}
.x28_c00246{left:142.921187pt;}
.x5a_c00246{left:152.425187pt;}
.x2_c00246{left:153.445987pt;}
.x4e_c00246{left:160.815987pt;}
.x9_c00246{left:161.920387pt;}
.x30_c00246{left:171.780787pt;}
.x5b_c00246{left:180.646787pt;}
.x56_c00246{left:181.843587pt;}
.xa_c00246{left:189.979187pt;}
.x17_c00246{left:190.938387pt;}
.x1d_c00246{left:200.917587pt;}
.x5f_c00246{left:209.946387pt;}
.x44_c00246{left:211.314787pt;}
.xb_c00246{left:212.423587pt;}
.x1e_c00246{left:220.132387pt;}
.x62_c00246{left:221.491987pt;}
.x29_c00246{left:230.951987pt;}
.x4f_c00246{left:239.404387pt;}
.x49_c00246{left:241.124787pt;}
.x5d_c00246{left:248.617987pt;}
.x3b_c00246{left:249.594787pt;}
.x5e_c00246{left:251.790387pt;}
.x2a_c00246{left:258.922787pt;}
.x1f_c00246{left:259.855587pt;}
.xc_c00246{left:260.775187pt;}
.x50_c00246{left:269.865587pt;}
.x20_c00246{left:279.457587pt;}
.x38_c00246{left:287.865987pt;}
.xd_c00246{left:289.269587pt;}
.x51_c00246{left:298.381987pt;}
.x18_c00246{left:308.880387pt;}
.x68_c00246{left:317.332787pt;}
.xe_c00246{left:318.643987pt;}
.x45_c00246{left:328.183187pt;}
.x21_c00246{left:337.005187pt;}
.x3c_c00246{left:338.078787pt;}
.x19_c00246{left:339.033587pt;}
.x57_c00246{left:347.107587pt;}
.x1a_c00246{left:348.137187pt;}
.x46_c00246{left:357.698387pt;}
.x58_c00246{left:358.653187pt;}
.xf_c00246{left:367.563187pt;}
.x22_c00246{left:376.574387pt;}
.x52_c00246{left:378.307987pt;}
.x3d_c00246{left:379.566387pt;}
.x39_c00246{left:386.109187pt;}
.x47_c00246{left:387.204787pt;}
.x31_c00246{left:396.704387pt;}
.x10_c00246{left:406.494387pt;}
.x1b_c00246{left:416.913587pt;}
.x3e_c00246{left:418.057587pt;}
.x69_c00246{left:425.044787pt;}
.x32_c00246{left:426.193187pt;}
.x3f_c00246{left:436.031587pt;}
.x60_c00246{left:444.400387pt;}
.x11_c00246{left:445.319987pt;}
.x2b_c00246{left:446.745587pt;}
.x4a_c00246{left:454.881187pt;}
.x5c_c00246{left:464.006787pt;}
.x33_c00246{left:465.278387pt;}
.x53_c00246{left:474.144387pt;}
.x12_c00246{left:475.583187pt;}
.x40_c00246{left:484.884787pt;}
.x2c_c00246{left:495.031187pt;}
.x66_c00246{left:496.496387pt;}
.x41_c00246{left:504.398787pt;}
.x13_c00246{left:514.131587pt;}
.x63_c00246{left:522.333187pt;}
.x23_c00246{left:523.736787pt;}
.x48_c00246{left:533.245187pt;}
.x59_c00246{left:542.903187pt;}
.x24_c00246{left:543.994387pt;}
.x4b_c00246{left:551.795587pt;}
.x54_c00246{left:552.913187pt;}
.x2d_c00246{left:561.616387pt;}
.x3_c00246{left:563.279587pt;}
.x14_c00246{left:572.519587pt;}
.x67_c00246{left:573.465587pt;}
.x34_c00246{left:582.357987pt;}
.x2e_c00246{left:592.169987pt;}
.x4_c00246{left:593.217187pt;}
.x15_c00246{left:601.563987pt;}
.x35_c00246{left:602.927987pt;}
.x26_c00246{left:605.655987pt;}
.x64_c00246{left:611.463987pt;}
.x61_c00246{left:613.932387pt;}
.x16_c00246{left:621.566387pt;}
.x2f_c00246{left:630.788787pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ddcef25f1c04a7cb47abde03.woff2')format("woff");}.ff1_c00247{font-family:ff1_c00247;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00247;src:url('chunks/assets/font_cb65d579fb1d77b068d97287.woff2')format("woff");}.ff2_c00247{font-family:ff2_c00247;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00247;src:url('chunks/assets/font_4aec7fb376bd33b4eb4eaf51.woff2')format("woff");}.ff3_c00247{font-family:ff3_c00247;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00247;src:url('chunks/assets/font_a82a39b14d9f3fdde85ff999.woff2')format("woff");}.ff4_c00247{font-family:ff4_c00247;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00247;src:url('chunks/assets/font_4f02ce983239f334ca975d3a.woff2')format("woff");}.ff5_c00247{font-family:ff5_c00247;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ma3_c00247{transform:matrix(0.035715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.035715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.035715,0.000000,0.000000,0.250000,0,0);}
.m6b_c00247{transform:matrix(0.038195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.038195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.038195,0.000000,0.000000,0.250000,0,0);}
.m97_c00247{transform:matrix(0.057784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.057784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.057784,0.000000,0.000000,0.250000,0,0);}
.m6c_c00247{transform:matrix(0.097222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097222,0.000000,0.000000,0.250000,0,0);}
.m6a_c00247{transform:matrix(0.118056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118056,0.000000,0.000000,0.250000,0,0);}
.m9f_c00247{transform:matrix(0.132143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132143,0.000000,0.000000,0.250000,0,0);}
.m67_c00247{transform:matrix(0.134326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134326,0.000000,0.000000,0.250000,0,0);}
.m6d_c00247{transform:matrix(0.152777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152777,0.000000,0.000000,0.250000,0,0);}
.m9c_c00247{transform:matrix(0.163792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163792,0.000000,0.000000,0.250000,0,0);}
.m6e_c00247{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);}
.m96_c00247{transform:matrix(0.176674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176674,0.000000,0.000000,0.250000,0,0);}
.m30_c00247{transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);}
.m2f_c00247{transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);}
.m66_c00247{transform:matrix(0.206973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206973,0.000000,0.000000,0.250000,0,0);}
.ma0_c00247{transform:matrix(0.210891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210891,0.000000,0.000000,0.250000,0,0);}
.ma2_c00247{transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);}
.m45_c00247{transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);}
.m99_c00247{transform:matrix(0.232195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232195,0.000000,0.000000,0.250000,0,0);}
.m50_c00247{transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);}
.m40_c00247{transform:matrix(0.242098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242098,0.000000,0.000000,0.250000,0,0);}
.ma1_c00247{transform:matrix(0.245270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245270,0.000000,0.000000,0.250000,0,0);}
.m0_c00247{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00247{transform:matrix(0.250395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250395,0.000000,0.000000,0.250000,0,0);}
.m55_c00247{transform:matrix(0.251683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251683,0.000000,0.000000,0.250000,0,0);}
.m5a_c00247{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.m13_c00247{transform:matrix(0.253645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253645,0.000000,0.000000,0.250000,0,0);}
.m9d_c00247{transform:matrix(0.253690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253690,0.000000,0.000000,0.250000,0,0);}
.m9b_c00247{transform:matrix(0.255161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255161,0.000000,0.000000,0.250000,0,0);}
.m9e_c00247{transform:matrix(0.255872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255872,0.000000,0.000000,0.250000,0,0);}
.m9a_c00247{transform:matrix(0.257359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257359,0.000000,0.000000,0.250000,0,0);}
.me_c00247{transform:matrix(0.258294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258294,0.000000,0.000000,0.250000,0,0);}
.m89_c00247{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.mc_c00247{transform:matrix(0.259643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259643,0.000000,0.000000,0.250000,0,0);}
.ma_c00247{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m75_c00247{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.m2_c00247{transform:matrix(0.261987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261987,0.000000,0.000000,0.250000,0,0);}
.m94_c00247{transform:matrix(0.263083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263083,0.000000,0.000000,0.250000,0,0);}
.m3c_c00247{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m65_c00247{transform:matrix(0.263305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263305,0.000000,0.000000,0.250000,0,0);}
.m22_c00247{transform:matrix(0.263848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263848,0.000000,0.000000,0.250000,0,0);}
.m71_c00247{transform:matrix(0.264886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264886,0.000000,0.000000,0.250000,0,0);}
.m1b_c00247{transform:matrix(0.265372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265372,0.000000,0.000000,0.250000,0,0);}
.m34_c00247{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m79_c00247{transform:matrix(0.266975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266975,0.000000,0.000000,0.250000,0,0);}
.m2c_c00247{transform:matrix(0.267123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267123,0.000000,0.000000,0.250000,0,0);}
.m77_c00247{transform:matrix(0.267205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267205,0.000000,0.000000,0.250000,0,0);}
.m4c_c00247{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m93_c00247{transform:matrix(0.268624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268624,0.000000,0.000000,0.250000,0,0);}
.m20_c00247{transform:matrix(0.269646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269646,0.000000,0.000000,0.250000,0,0);}
.m8e_c00247{transform:matrix(0.270439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270439,0.000000,0.000000,0.250000,0,0);}
.m4_c00247{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m83_c00247{transform:matrix(0.271301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271301,0.000000,0.000000,0.250000,0,0);}
.m14_c00247{transform:matrix(0.272153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272153,0.000000,0.000000,0.250000,0,0);}
.m8d_c00247{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m32_c00247{transform:matrix(0.272544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272544,0.000000,0.000000,0.250000,0,0);}
.m8b_c00247{transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);}
.m2a_c00247{transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);}
.m87_c00247{transform:matrix(0.275400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275400,0.000000,0.000000,0.250000,0,0);}
.ma8_c00247{transform:matrix(0.275491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275491,0.000000,0.000000,0.250000,0,0);}
.m38_c00247{transform:matrix(0.275570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275570,0.000000,0.000000,0.250000,0,0);}
.m4e_c00247{transform:matrix(0.275733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275733,0.000000,0.000000,0.250000,0,0);}
.m68_c00247{transform:matrix(0.276082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276082,0.000000,0.000000,0.250000,0,0);}
.m5b_c00247{transform:matrix(0.276166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276166,0.000000,0.000000,0.250000,0,0);}
.m12_c00247{transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);}
.m3b_c00247{transform:matrix(0.277164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277164,0.000000,0.000000,0.250000,0,0);}
.m7_c00247{transform:matrix(0.277905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277905,0.000000,0.000000,0.250000,0,0);}
.m4b_c00247{transform:matrix(0.278381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278381,0.000000,0.000000,0.250000,0,0);}
.m56_c00247{transform:matrix(0.278962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278962,0.000000,0.000000,0.250000,0,0);}
.ma4_c00247{transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);}
.m59_c00247{transform:matrix(0.279399,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279399,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279399,0.000000,0.000000,0.250000,0,0);}
.m5_c00247{transform:matrix(0.279509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279509,0.000000,0.000000,0.250000,0,0);}
.m21_c00247{transform:matrix(0.280419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280419,0.000000,0.000000,0.250000,0,0);}
.m2d_c00247{transform:matrix(0.280574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280574,0.000000,0.000000,0.250000,0,0);}
.m60_c00247{transform:matrix(0.281196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281196,0.000000,0.000000,0.250000,0,0);}
.m1c_c00247{transform:matrix(0.281452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281452,0.000000,0.000000,0.250000,0,0);}
.m41_c00247{transform:matrix(0.281782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281782,0.000000,0.000000,0.250000,0,0);}
.m51_c00247{transform:matrix(0.281783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281783,0.000000,0.000000,0.250000,0,0);}
.m9_c00247{transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);}
.m18_c00247{transform:matrix(0.281955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281955,0.000000,0.000000,0.250000,0,0);}
.m85_c00247{transform:matrix(0.283223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283223,0.000000,0.000000,0.250000,0,0);}
.ma7_c00247{transform:matrix(0.283722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283722,0.000000,0.000000,0.250000,0,0);}
.m25_c00247{transform:matrix(0.284670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284670,0.000000,0.000000,0.250000,0,0);}
.m7e_c00247{transform:matrix(0.286383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286383,0.000000,0.000000,0.250000,0,0);}
.m43_c00247{transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);}
.m36_c00247{transform:matrix(0.287185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287185,0.000000,0.000000,0.250000,0,0);}
.m81_c00247{transform:matrix(0.287284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287284,0.000000,0.000000,0.250000,0,0);}
.m7c_c00247{transform:matrix(0.288005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288005,0.000000,0.000000,0.250000,0,0);}
.m23_c00247{transform:matrix(0.288372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288372,0.000000,0.000000,0.250000,0,0);}
.m4f_c00247{transform:matrix(0.288388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288388,0.000000,0.000000,0.250000,0,0);}
.m17_c00247{transform:matrix(0.288510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288510,0.000000,0.000000,0.250000,0,0);}
.m5d_c00247{transform:matrix(0.289278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289278,0.000000,0.000000,0.250000,0,0);}
.m61_c00247{transform:matrix(0.289652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289652,0.000000,0.000000,0.250000,0,0);}
.m58_c00247{transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);}
.m2e_c00247{transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);}
.m37_c00247{transform:matrix(0.291498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291498,0.000000,0.000000,0.250000,0,0);}
.m27_c00247{transform:matrix(0.291532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291532,0.000000,0.000000,0.250000,0,0);}
.m7b_c00247{transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);}
.m7d_c00247{transform:matrix(0.293332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293332,0.000000,0.000000,0.250000,0,0);}
.m76_c00247{transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);}
.m8f_c00247{transform:matrix(0.294066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294066,0.000000,0.000000,0.250000,0,0);}
.m5e_c00247{transform:matrix(0.295321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295321,0.000000,0.000000,0.250000,0,0);}
.m52_c00247{transform:matrix(0.296056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296056,0.000000,0.000000,0.250000,0,0);}
.m53_c00247{transform:matrix(0.296688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296688,0.000000,0.000000,0.250000,0,0);}
.m39_c00247{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m92_c00247{transform:matrix(0.299372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299372,0.000000,0.000000,0.250000,0,0);}
.m8c_c00247{transform:matrix(0.299395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299395,0.000000,0.000000,0.250000,0,0);}
.m16_c00247{transform:matrix(0.300643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300643,0.000000,0.000000,0.250000,0,0);}
.m49_c00247{transform:matrix(0.301506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301506,0.000000,0.000000,0.250000,0,0);}
.m73_c00247{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m28_c00247{transform:matrix(0.303158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303158,0.000000,0.000000,0.250000,0,0);}
.m70_c00247{transform:matrix(0.304441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304441,0.000000,0.000000,0.250000,0,0);}
.m5f_c00247{transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);}
.m11_c00247{transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);}
.m91_c00247{transform:matrix(0.307034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307034,0.000000,0.000000,0.250000,0,0);}
.m29_c00247{transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);}
.m1f_c00247{transform:matrix(0.308601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308601,0.000000,0.000000,0.250000,0,0);}
.m1e_c00247{transform:matrix(0.308831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308831,0.000000,0.000000,0.250000,0,0);}
.m1a_c00247{transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);}
.m1d_c00247{transform:matrix(0.309114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309114,0.000000,0.000000,0.250000,0,0);}
.ma9_c00247{transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);}
.m44_c00247{transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);}
.m3_c00247{transform:matrix(0.311396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311396,0.000000,0.000000,0.250000,0,0);}
.m84_c00247{transform:matrix(0.311437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311437,0.000000,0.000000,0.250000,0,0);}
.m88_c00247{transform:matrix(0.312347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312347,0.000000,0.000000,0.250000,0,0);}
.m33_c00247{transform:matrix(0.312531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312531,0.000000,0.000000,0.250000,0,0);}
.maa_c00247{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.m95_c00247{transform:matrix(0.313434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313434,0.000000,0.000000,0.250000,0,0);}
.m6f_c00247{transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);}
.m72_c00247{transform:matrix(0.313583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313583,0.000000,0.000000,0.250000,0,0);}
.m31_c00247{transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);}
.m10_c00247{transform:matrix(0.315444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315444,0.000000,0.000000,0.250000,0,0);}
.m5c_c00247{transform:matrix(0.315881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315881,0.000000,0.000000,0.250000,0,0);}
.m54_c00247{transform:matrix(0.315973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315973,0.000000,0.000000,0.250000,0,0);}
.m47_c00247{transform:matrix(0.315989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315989,0.000000,0.000000,0.250000,0,0);}
.m7f_c00247{transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);}
.m80_c00247{transform:matrix(0.316169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316169,0.000000,0.000000,0.250000,0,0);}
.m19_c00247{transform:matrix(0.316972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316972,0.000000,0.000000,0.250000,0,0);}
.m42_c00247{transform:matrix(0.318723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318723,0.000000,0.000000,0.250000,0,0);}
.m3a_c00247{transform:matrix(0.319389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319389,0.000000,0.000000,0.250000,0,0);}
.m7a_c00247{transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);}
.ma5_c00247{transform:matrix(0.322304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322304,0.000000,0.000000,0.250000,0,0);}
.m2b_c00247{transform:matrix(0.322532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322532,0.000000,0.000000,0.250000,0,0);}
.m6_c00247{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.m3f_c00247{transform:matrix(0.324566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324566,0.000000,0.000000,0.250000,0,0);}
.m90_c00247{transform:matrix(0.325687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325687,0.000000,0.000000,0.250000,0,0);}
.m69_c00247{transform:matrix(0.326152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326152,0.000000,0.000000,0.250000,0,0);}
.m63_c00247{transform:matrix(0.326848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326848,0.000000,0.000000,0.250000,0,0);}
.m8a_c00247{transform:matrix(0.328448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328448,0.000000,0.000000,0.250000,0,0);}
.m48_c00247{transform:matrix(0.329874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329874,0.000000,0.000000,0.250000,0,0);}
.m26_c00247{transform:matrix(0.330771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330771,0.000000,0.000000,0.250000,0,0);}
.m74_c00247{transform:matrix(0.331826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331826,0.000000,0.000000,0.250000,0,0);}
.m15_c00247{transform:matrix(0.333215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333215,0.000000,0.000000,0.250000,0,0);}
.m24_c00247{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m46_c00247{transform:matrix(0.337661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337661,0.000000,0.000000,0.250000,0,0);}
.mf_c00247{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m62_c00247{transform:matrix(0.342184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342184,0.000000,0.000000,0.250000,0,0);}
.m4a_c00247{transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);}
.m4d_c00247{transform:matrix(0.343814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343814,0.000000,0.000000,0.250000,0,0);}
.m57_c00247{transform:matrix(0.344922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344922,0.000000,0.000000,0.250000,0,0);}
.m35_c00247{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m1_c00247{transform:matrix(0.349503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349503,0.000000,0.000000,0.250000,0,0);}
.m3e_c00247{transform:matrix(0.350693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350693,0.000000,0.000000,0.250000,0,0);}
.m64_c00247{transform:matrix(0.352028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352028,0.000000,0.000000,0.250000,0,0);}
.mb_c00247{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.ma6_c00247{transform:matrix(0.365181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365181,0.000000,0.000000,0.250000,0,0);}
.md_c00247{transform:matrix(0.365569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365569,0.000000,0.000000,0.250000,0,0);}
.m3d_c00247{transform:matrix(0.366986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366986,0.000000,0.000000,0.250000,0,0);}
.m86_c00247{transform:matrix(0.367098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367098,0.000000,0.000000,0.250000,0,0);}
.m8_c00247{transform:matrix(0.372071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372071,0.000000,0.000000,0.250000,0,0);}
.m82_c00247{transform:matrix(0.378961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378961,0.000000,0.000000,0.250000,0,0);}
.m78_c00247{transform:matrix(0.400876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400876,0.000000,0.000000,0.250000,0,0);}
.v1_c00247{vertical-align:-25.660800px;}
.v0_c00247{vertical-align:0.000000px;}
.ls9_c00247{letter-spacing:-2.744280px;}
.ls5_c00247{letter-spacing:-2.399285px;}
.ls15_c00247{letter-spacing:-2.293830px;}
.ls1a_c00247{letter-spacing:-2.155230px;}
.ls1f_c00247{letter-spacing:-2.025124px;}
.ls12_c00247{letter-spacing:-1.677931px;}
.ls14_c00247{letter-spacing:-1.264883px;}
.lsb_c00247{letter-spacing:-0.721354px;}
.lsa_c00247{letter-spacing:-0.180338px;}
.ls2_c00247{letter-spacing:0.000000px;}
.ls3_c00247{letter-spacing:0.283417px;}
.ls17_c00247{letter-spacing:0.406336px;}
.ls11_c00247{letter-spacing:0.541015px;}
.ls13_c00247{letter-spacing:0.705672px;}
.lsc_c00247{letter-spacing:1.246687px;}
.ls1_c00247{letter-spacing:1.450548px;}
.ls1c_c00247{letter-spacing:1.566358px;}
.ls8_c00247{letter-spacing:1.685772px;}
.ls7_c00247{letter-spacing:2.226787px;}
.ls1e_c00247{letter-spacing:2.326500px;}
.ls19_c00247{letter-spacing:3.078900px;}
.ls20_c00247{letter-spacing:3.086840px;}
.ls16_c00247{letter-spacing:3.119609px;}
.ls1b_c00247{letter-spacing:3.276900px;}
.lsd_c00247{letter-spacing:3.366000px;}
.lse_c00247{letter-spacing:3.405610px;}
.ls10_c00247{letter-spacing:3.653813px;}
.ls4_c00247{letter-spacing:3.920400px;}
.ls0_c00247{letter-spacing:18.338166px;}
.ls1d_c00247{letter-spacing:41.342598px;}
.ls6_c00247{letter-spacing:49.896198px;}
.lsf_c00247{letter-spacing:51.321798px;}
.ls18_c00247{letter-spacing:75.556800px;}
.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;}
}
.ws3_c00247{word-spacing:-23.255813px;}
.ws2_c00247{word-spacing:-21.828787px;}
.ws0_c00247{word-spacing:-19.602000px;}
.ws6_c00247{word-spacing:-18.219564px;}
.ws4_c00247{word-spacing:-17.924069px;}
.ws7_c00247{word-spacing:-16.194440px;}
.ws5_c00247{word-spacing:-2.980296px;}
.ws8_c00247{word-spacing:0.000000px;}
.ws1_c00247{word-spacing:2.195424px;}
._16_c00247{margin-left:-14.582304px;}
._7_c00247{margin-left:-13.172544px;}
._1d_c00247{margin-left:-10.271844px;}
._1f_c00247{margin-left:-6.051355px;}
._1e_c00247{margin-left:-2.466625px;}
._1a_c00247{margin-left:-1.097712px;}
._15_c00247{width:1.175328px;}
._5_c00247{width:2.822688px;}
._17_c00247{width:3.841992px;}
._19_c00247{width:5.096520px;}
._3_c00247{width:6.664680px;}
._b_c00247{width:7.683984px;}
._11_c00247{width:9.330552px;}
._8_c00247{width:10.506672px;}
._c_c00247{width:11.761200px;}
._9_c00247{width:12.780900px;}
._f_c00247{width:14.191848px;}
._d_c00247{width:17.484588px;}
._4_c00247{width:20.856528px;}
._1c_c00247{width:22.267872px;}
._2_c00247{width:23.679216px;}
._12_c00247{width:25.138080px;}
._e_c00247{width:28.190290px;}
._6_c00247{width:29.715048px;}
._10_c00247{width:31.261824px;}
._18_c00247{width:33.793848px;}
._1_c00247{width:36.146088px;}
._13_c00247{width:38.209248px;}
._14_c00247{width:39.674448px;}
._a_c00247{width:43.045596px;}
._1b_c00247{width:49.710672px;}
._0_c00247{width:1772.357400px;}
.fc0_c00247{color:transparent;}
.fs0_c00247{font-size:39.204000px;}
.fsb_c00247{font-size:41.342598px;}
.fsd_c00247{font-size:46.530000px;}
.fsc_c00247{font-size:48.708000px;}
.fs3_c00247{font-size:49.896198px;}
.fsa_c00247{font-size:50.094000px;}
.fs6_c00247{font-size:51.321798px;}
.fs9_c00247{font-size:61.578000px;}
.fs7_c00247{font-size:65.538000px;}
.fs4_c00247{font-size:67.320000px;}
.fs5_c00247{font-size:68.112198px;}
.fse_c00247{font-size:70.488000px;}
.fs8_c00247{font-size:75.556800px;}
.fs2_c00247{font-size:78.408000px;}
.fs1_c00247{font-size:83.358000px;}
.y0_c00247{bottom:0.000000px;}
.y1_c00247{bottom:76.500000px;}
.y1c_c00247{bottom:131.779935px;}
.y1b_c00247{bottom:176.686335px;}
.y1a_c00247{bottom:183.457935px;}
.y19_c00247{bottom:185.596335px;}
.y18_c00247{bottom:239.764185px;}
.y16_c00247{bottom:249.386144px;}
.y17_c00247{bottom:249.391935px;}
.y15_c00247{bottom:311.761935px;}
.y14_c00247{bottom:375.913935px;}
.y13_c00247{bottom:407.984985px;}
.y12_c00247{bottom:440.422335px;}
.y11_c00247{bottom:503.148735px;}
.y10_c00247{bottom:535.219785px;}
.yf_c00247{bottom:567.300735px;}
.ye_c00247{bottom:600.440985px;}
.yd_c00247{bottom:659.251935px;}
.yb_c00247{bottom:691.678890px;}
.yc_c00247{bottom:691.684335px;}
.ya_c00247{bottom:724.473135px;}
.y8_c00247{bottom:758.328165px;}
.y9_c00247{bottom:758.331135px;}
.y7_c00247{bottom:791.827785px;}
.y6_c00247{bottom:824.972985px;}
.y5_c00247{bottom:857.053935px;}
.y4_c00247{bottom:889.486335px;}
.y3_c00247{bottom:922.626585px;}
.y2_c00247{bottom:1080.155385px;}
.hd_c00247{height:27.534170px;}
.h4_c00247{height:33.230868px;}
.h8_c00247{height:34.180317px;}
.hf_c00247{height:48.529336px;}
.he_c00247{height:49.088531px;}
.ha_c00247{height:50.320829px;}
.hc_c00247{height:52.246477px;}
.h2_c00247{height:56.150518px;}
.hb_c00247{height:64.223930px;}
.h9_c00247{height:68.354086px;}
.h6_c00247{height:70.212656px;}
.h7_c00247{height:71.038894px;}
.h10_c00247{height:73.516781px;}
.h3_c00247{height:76.953164px;}
.h5_c00247{height:76.965044px;}
.h1_c00247{height:1110.000000px;}
.h0_c00247{height:1263.000000px;}
.w1_c00247{width:751.500000px;}
.w0_c00247{width:892.500000px;}
.x0_c00247{left:0.000000px;}
.x3_c00247{left:62.058585px;}
.x56_c00247{left:63.726735px;}
.x63_c00247{left:64.889985px;}
.x1_c00247{left:70.500000px;}
.x4_c00247{left:72.908985px;}
.x57_c00247{left:75.844335px;}
.x58_c00247{left:80.828985px;}
.x45_c00247{left:84.338535px;}
.x1f_c00247{left:93.971235px;}
.x2f_c00247{left:95.867085px;}
.x3b_c00247{left:106.984785px;}
.x5_c00247{left:116.973885px;}
.x14_c00247{left:128.650935px;}
.x65_c00247{left:130.769535px;}
.x20_c00247{left:138.941985px;}
.x30_c00247{left:150.490335px;}
.x6_c00247{left:161.043735px;}
.x21_c00247{left:162.211935px;}
.x54_c00247{left:163.914735px;}
.x46_c00247{left:172.186185px;}
.x3c_c00247{left:183.427635px;}
.x7_c00247{left:184.679985px;}
.x68_c00247{left:193.078848px;}
.x8_c00247{left:194.876985px;}
.x2_c00247{left:196.856985px;}
.x3d_c00247{left:204.880935px;}
.x47_c00247{left:205.900635px;}
.x4c_c00247{left:215.860035px;}
.x5e_c00247{left:217.488585px;}
.x50_c00247{left:226.552035px;}
.x3e_c00247{left:227.596485px;}
.x31_c00247{left:228.838935px;}
.x59_c00247{left:238.506285px;}
.x9_c00247{left:239.550735px;}
.x48_c00247{left:249.559635px;}
.x22_c00247{left:260.944635px;}
.x60_c00247{left:270.745635px;}
.xa_c00247{left:271.997985px;}
.x5a_c00247{left:273.854235px;}
.x69_c00247{left:276.497535px;}
.x15_c00247{left:282.670185px;}
.x3f_c00247{left:283.749285px;}
.x5f_c00247{left:284.986785px;}
.x6d_c00247{left:287.189535px;}
.x49_c00247{left:292.842435px;}
.x23_c00247{left:294.451185px;}
.x24_c00247{left:305.826285px;}
.x16_c00247{left:314.622435px;}
.x32_c00247{left:315.627285px;}
.x6b_c00247{left:321.443535px;}
.x6f_c00247{left:322.829535px;}
.x25_c00247{left:325.987635px;}
.x4a_c00247{left:327.170685px;}
.x70_c00247{left:333.877935px;}
.xb_c00247{left:337.570635px;}
.x40_c00247{left:349.683285px;}
.x6c_c00247{left:357.395385px;}
.x17_c00247{left:360.385185px;}
.x33_c00247{left:370.725735px;}
.x51_c00247{left:373.364085px;}
.x6e_c00247{left:377.398335px;}
.x52_c00247{left:381.333585px;}
.xc_c00247{left:382.833435px;}
.x18_c00247{left:393.178935px;}
.xd_c00247{left:404.029335px;}
.x34_c00247{left:413.701635px;}
.x19_c00247{left:415.320285px;}
.x4d_c00247{left:417.315135px;}
.x6a_c00247{left:419.483235px;}
.xe_c00247{left:425.947935px;}
.x42_c00247{left:437.654685px;}
.x26_c00247{left:447.688335px;}
.xf_c00247{left:458.410035px;}
.x41_c00247{left:459.429735px;}
.x35_c00247{left:468.968385px;}
.x43_c00247{left:470.151435px;}
.x1a_c00247{left:479.591085px;}
.x27_c00247{left:481.224585px;}
.x28_c00247{left:491.857185px;}
.x5b_c00247{left:493.312485px;}
.x10_c00247{left:502.915485px;}
.x36_c00247{left:513.632235px;}
.x5c_c00247{left:524.571735px;}
.x29_c00247{left:530.902785px;}
.x4e_c00247{left:535.199385px;}
.x11_c00247{left:536.456685px;}
.x66_c00247{left:547.505085px;}
.x37_c00247{left:558.211935px;}
.x1b_c00247{left:569.245485px;}
.x2a_c00247{left:579.457335px;}
.x64_c00247{left:590.505735px;}
.x53_c00247{left:591.654135px;}
.x38_c00247{left:601.172985px;}
.x2b_c00247{left:614.300385px;}
.x44_c00247{left:623.408385px;}
.x61_c00247{left:624.962685px;}
.x2c_c00247{left:633.902385px;}
.x1c_c00247{left:635.125035px;}
.x67_c00247{left:636.184335px;}
.x4f_c00247{left:644.609235px;}
.x39_c00247{left:646.084335px;}
.x55_c00247{left:647.287185px;}
.x12_c00247{left:656.518935px;}
.x1d_c00247{left:667.938585px;}
.x2d_c00247{left:669.542385px;}
.x3a_c00247{left:678.482085px;}
.x5d_c00247{left:679.729485px;}
.x13_c00247{left:688.966185px;}
.x4b_c00247{left:690.421485px;}
.x1e_c00247{left:700.370985px;}
.x62_c00247{left:701.826285px;}
.x2e_c00247{left:711.419385px;}
@media print{
.v1_c00247{vertical-align:-22.809600pt;}
.v0_c00247{vertical-align:0.000000pt;}
.ls9_c00247{letter-spacing:-2.439360pt;}
.ls5_c00247{letter-spacing:-2.132698pt;}
.ls15_c00247{letter-spacing:-2.038960pt;}
.ls1a_c00247{letter-spacing:-1.915760pt;}
.ls1f_c00247{letter-spacing:-1.800110pt;}
.ls12_c00247{letter-spacing:-1.491494pt;}
.ls14_c00247{letter-spacing:-1.124341pt;}
.lsb_c00247{letter-spacing:-0.641203pt;}
.lsa_c00247{letter-spacing:-0.160301pt;}
.ls2_c00247{letter-spacing:0.000000pt;}
.ls3_c00247{letter-spacing:0.251926pt;}
.ls17_c00247{letter-spacing:0.361187pt;}
.ls11_c00247{letter-spacing:0.480902pt;}
.ls13_c00247{letter-spacing:0.627264pt;}
.lsc_c00247{letter-spacing:1.108166pt;}
.ls1_c00247{letter-spacing:1.289376pt;}
.ls1c_c00247{letter-spacing:1.392318pt;}
.ls8_c00247{letter-spacing:1.498464pt;}
.ls7_c00247{letter-spacing:1.979366pt;}
.ls1e_c00247{letter-spacing:2.068000pt;}
.ls19_c00247{letter-spacing:2.736800pt;}
.ls20_c00247{letter-spacing:2.743858pt;}
.ls16_c00247{letter-spacing:2.772986pt;}
.ls1b_c00247{letter-spacing:2.912800pt;}
.lsd_c00247{letter-spacing:2.992000pt;}
.lse_c00247{letter-spacing:3.027209pt;}
.ls10_c00247{letter-spacing:3.247834pt;}
.ls4_c00247{letter-spacing:3.484800pt;}
.ls0_c00247{letter-spacing:16.300592pt;}
.ls1d_c00247{letter-spacing:36.748976pt;}
.ls6_c00247{letter-spacing:44.352176pt;}
.lsf_c00247{letter-spacing:45.619376pt;}
.ls18_c00247{letter-spacing:67.161600pt;}
.ws3_c00247{word-spacing:-20.671834pt;}
.ws2_c00247{word-spacing:-19.403366pt;}
.ws0_c00247{word-spacing:-17.424000pt;}
.ws6_c00247{word-spacing:-16.195168pt;}
.ws4_c00247{word-spacing:-15.932506pt;}
.ws7_c00247{word-spacing:-14.395058pt;}
.ws5_c00247{word-spacing:-2.649152pt;}
.ws8_c00247{word-spacing:0.000000pt;}
.ws1_c00247{word-spacing:1.951488pt;}
._16_c00247{margin-left:-12.962048pt;}
._7_c00247{margin-left:-11.708928pt;}
._1d_c00247{margin-left:-9.130528pt;}
._1f_c00247{margin-left:-5.378982pt;}
._1e_c00247{margin-left:-2.192555pt;}
._1a_c00247{margin-left:-0.975744pt;}
._15_c00247{width:1.044736pt;}
._5_c00247{width:2.509056pt;}
._17_c00247{width:3.415104pt;}
._19_c00247{width:4.530240pt;}
._3_c00247{width:5.924160pt;}
._b_c00247{width:6.830208pt;}
._11_c00247{width:8.293824pt;}
._8_c00247{width:9.339264pt;}
._c_c00247{width:10.454400pt;}
._9_c00247{width:11.360800pt;}
._f_c00247{width:12.614976pt;}
._d_c00247{width:15.541856pt;}
._4_c00247{width:18.539136pt;}
._1c_c00247{width:19.793664pt;}
._2_c00247{width:21.048192pt;}
._12_c00247{width:22.344960pt;}
._e_c00247{width:25.058035pt;}
._6_c00247{width:26.413376pt;}
._10_c00247{width:27.788288pt;}
._18_c00247{width:30.038976pt;}
._1_c00247{width:32.129856pt;}
._13_c00247{width:33.963776pt;}
._14_c00247{width:35.266176pt;}
._a_c00247{width:38.262752pt;}
._1b_c00247{width:44.187264pt;}
._0_c00247{width:1575.428800pt;}
.fs0_c00247{font-size:34.848000pt;}
.fsb_c00247{font-size:36.748976pt;}
.fsd_c00247{font-size:41.360000pt;}
.fsc_c00247{font-size:43.296000pt;}
.fs3_c00247{font-size:44.352176pt;}
.fsa_c00247{font-size:44.528000pt;}
.fs6_c00247{font-size:45.619376pt;}
.fs9_c00247{font-size:54.736000pt;}
.fs7_c00247{font-size:58.256000pt;}
.fs4_c00247{font-size:59.840000pt;}
.fs5_c00247{font-size:60.544176pt;}
.fse_c00247{font-size:62.656000pt;}
.fs8_c00247{font-size:67.161600pt;}
.fs2_c00247{font-size:69.696000pt;}
.fs1_c00247{font-size:74.096000pt;}
.y0_c00247{bottom:0.000000pt;}
.y1_c00247{bottom:68.000000pt;}
.y1c_c00247{bottom:117.137720pt;}
.y1b_c00247{bottom:157.054520pt;}
.y1a_c00247{bottom:163.073720pt;}
.y19_c00247{bottom:164.974520pt;}
.y18_c00247{bottom:213.123720pt;}
.y16_c00247{bottom:221.676572pt;}
.y17_c00247{bottom:221.681720pt;}
.y15_c00247{bottom:277.121720pt;}
.y14_c00247{bottom:334.145720pt;}
.y13_c00247{bottom:362.653320pt;}
.y12_c00247{bottom:391.486520pt;}
.y11_c00247{bottom:447.243320pt;}
.y10_c00247{bottom:475.750920pt;}
.yf_c00247{bottom:504.267320pt;}
.ye_c00247{bottom:533.725320pt;}
.yd_c00247{bottom:586.001720pt;}
.yb_c00247{bottom:614.825680pt;}
.yc_c00247{bottom:614.830520pt;}
.ya_c00247{bottom:643.976120pt;}
.y8_c00247{bottom:674.069480pt;}
.y9_c00247{bottom:674.072120pt;}
.y7_c00247{bottom:703.846920pt;}
.y6_c00247{bottom:733.309320pt;}
.y5_c00247{bottom:761.825720pt;}
.y4_c00247{bottom:790.654520pt;}
.y3_c00247{bottom:820.112520pt;}
.y2_c00247{bottom:960.138120pt;}
.hd_c00247{height:24.474818pt;}
.h4_c00247{height:29.538549pt;}
.h8_c00247{height:30.382504pt;}
.hf_c00247{height:43.137188pt;}
.he_c00247{height:43.634250pt;}
.ha_c00247{height:44.729626pt;}
.hc_c00247{height:46.441313pt;}
.h2_c00247{height:49.911572pt;}
.hb_c00247{height:57.087938pt;}
.h9_c00247{height:60.759188pt;}
.h6_c00247{height:62.411250pt;}
.h7_c00247{height:63.145684pt;}
.h10_c00247{height:65.348250pt;}
.h3_c00247{height:68.402813pt;}
.h5_c00247{height:68.413373pt;}
.h1_c00247{height:986.666667pt;}
.h0_c00247{height:1122.666667pt;}
.w1_c00247{width:668.000000pt;}
.w0_c00247{width:793.333333pt;}
.x0_c00247{left:0.000000pt;}
.x3_c00247{left:55.163187pt;}
.x56_c00247{left:56.645987pt;}
.x63_c00247{left:57.679987pt;}
.x1_c00247{left:62.666667pt;}
.x4_c00247{left:64.807987pt;}
.x57_c00247{left:67.417187pt;}
.x58_c00247{left:71.847987pt;}
.x45_c00247{left:74.967587pt;}
.x1f_c00247{left:83.529987pt;}
.x2f_c00247{left:85.215187pt;}
.x3b_c00247{left:95.097587pt;}
.x5_c00247{left:103.976787pt;}
.x14_c00247{left:114.356387pt;}
.x65_c00247{left:116.239587pt;}
.x20_c00247{left:123.503987pt;}
.x30_c00247{left:133.769187pt;}
.x6_c00247{left:143.149987pt;}
.x21_c00247{left:144.188387pt;}
.x54_c00247{left:145.701987pt;}
.x46_c00247{left:153.054387pt;}
.x3c_c00247{left:163.046787pt;}
.x7_c00247{left:164.159987pt;}
.x68_c00247{left:171.625643pt;}
.x8_c00247{left:173.223987pt;}
.x2_c00247{left:174.983987pt;}
.x3d_c00247{left:182.116387pt;}
.x47_c00247{left:183.022787pt;}
.x4c_c00247{left:191.875587pt;}
.x5e_c00247{left:193.323187pt;}
.x50_c00247{left:201.379587pt;}
.x3e_c00247{left:202.307987pt;}
.x31_c00247{left:203.412387pt;}
.x59_c00247{left:212.005587pt;}
.x9_c00247{left:212.933987pt;}
.x48_c00247{left:221.830787pt;}
.x22_c00247{left:231.950787pt;}
.x60_c00247{left:240.662787pt;}
.xa_c00247{left:241.775987pt;}
.x5a_c00247{left:243.425987pt;}
.x69_c00247{left:245.775587pt;}
.x15_c00247{left:251.262387pt;}
.x3f_c00247{left:252.221587pt;}
.x5f_c00247{left:253.321587pt;}
.x6d_c00247{left:255.279587pt;}
.x49_c00247{left:260.304387pt;}
.x23_c00247{left:261.734387pt;}
.x24_c00247{left:271.845587pt;}
.x16_c00247{left:279.664387pt;}
.x32_c00247{left:280.557587pt;}
.x6b_c00247{left:285.727587pt;}
.x6f_c00247{left:286.959587pt;}
.x25_c00247{left:289.766787pt;}
.x4a_c00247{left:290.818387pt;}
.x70_c00247{left:296.780387pt;}
.xb_c00247{left:300.062787pt;}
.x40_c00247{left:310.829587pt;}
.x6c_c00247{left:317.684787pt;}
.x17_c00247{left:320.342387pt;}
.x33_c00247{left:329.533987pt;}
.x51_c00247{left:331.879187pt;}
.x6e_c00247{left:335.465187pt;}
.x52_c00247{left:338.963187pt;}
.xc_c00247{left:340.296387pt;}
.x18_c00247{left:349.492387pt;}
.xd_c00247{left:359.137187pt;}
.x34_c00247{left:367.734787pt;}
.x19_c00247{left:369.173587pt;}
.x4d_c00247{left:370.946787pt;}
.x6a_c00247{left:372.873987pt;}
.xe_c00247{left:378.620387pt;}
.x42_c00247{left:389.026387pt;}
.x26_c00247{left:397.945187pt;}
.xf_c00247{left:407.475587pt;}
.x41_c00247{left:408.381987pt;}
.x35_c00247{left:416.860787pt;}
.x43_c00247{left:417.912387pt;}
.x1a_c00247{left:426.303187pt;}
.x27_c00247{left:427.755187pt;}
.x28_c00247{left:437.206387pt;}
.x5b_c00247{left:438.499987pt;}
.x10_c00247{left:447.035987pt;}
.x36_c00247{left:456.561987pt;}
.x5c_c00247{left:466.285987pt;}
.x29_c00247{left:471.913587pt;}
.x4e_c00247{left:475.732787pt;}
.x11_c00247{left:476.850387pt;}
.x66_c00247{left:486.671187pt;}
.x37_c00247{left:496.188387pt;}
.x1b_c00247{left:505.995987pt;}
.x2a_c00247{left:515.073187pt;}
.x64_c00247{left:524.893987pt;}
.x53_c00247{left:525.914787pt;}
.x38_c00247{left:534.375987pt;}
.x2b_c00247{left:546.044787pt;}
.x44_c00247{left:554.140787pt;}
.x61_c00247{left:555.522387pt;}
.x2c_c00247{left:563.468787pt;}
.x1c_c00247{left:564.555587pt;}
.x67_c00247{left:565.497187pt;}
.x4f_c00247{left:572.985987pt;}
.x39_c00247{left:574.297187pt;}
.x55_c00247{left:575.366387pt;}
.x12_c00247{left:583.572387pt;}
.x1d_c00247{left:593.723187pt;}
.x2d_c00247{left:595.148787pt;}
.x3a_c00247{left:603.095187pt;}
.x5d_c00247{left:604.203987pt;}
.x13_c00247{left:612.414387pt;}
.x4b_c00247{left:613.707987pt;}
.x1e_c00247{left:622.551987pt;}
.x62_c00247{left:623.845587pt;}
.x2e_c00247{left:632.372787pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_479a4745ea723f2ceb7d3808.woff2')format("woff");}.ff1_c00248{font-family:ff1_c00248;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00248;src:url('chunks/assets/font_a68806377dda3896ee41b6db.woff2')format("woff");}.ff2_c00248{font-family:ff2_c00248;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00248;src:url('chunks/assets/font_fa0a87b3b1794fde81f9dcad.woff2')format("woff");}.ff3_c00248{font-family:ff3_c00248;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m76_c00248{transform:matrix(0.129039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129039,0.000000,0.000000,0.250000,0,0);}
.m8_c00248{transform:matrix(0.141025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141025,0.000000,0.000000,0.250000,0,0);}
.m9_c00248{transform:matrix(0.179487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179487,0.000000,0.000000,0.250000,0,0);}
.m1d_c00248{transform:matrix(0.185811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185811,0.000000,0.000000,0.250000,0,0);}
.ma_c00248{transform:matrix(0.190171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190171,0.000000,0.000000,0.250000,0,0);}
.m75_c00248{transform:matrix(0.193102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193102,0.000000,0.000000,0.250000,0,0);}
.m61_c00248{transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);}
.m3a_c00248{transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);}
.m60_c00248{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m37_c00248{transform:matrix(0.232318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232318,0.000000,0.000000,0.250000,0,0);}
.m68_c00248{transform:matrix(0.241983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241983,0.000000,0.000000,0.250000,0,0);}
.m99_c00248{transform:matrix(0.244393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244393,0.000000,0.000000,0.250000,0,0);}
.m57_c00248{transform:matrix(0.247349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247349,0.000000,0.000000,0.250000,0,0);}
.m2b_c00248{transform:matrix(0.249973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249973,0.000000,0.000000,0.250000,0,0);}
.m0_c00248{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00248{transform:matrix(0.252202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252202,0.000000,0.000000,0.250000,0,0);}
.m26_c00248{transform:matrix(0.253936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253936,0.000000,0.000000,0.250000,0,0);}
.m18_c00248{transform:matrix(0.255474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255474,0.000000,0.000000,0.250000,0,0);}
.m59_c00248{transform:matrix(0.256864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256864,0.000000,0.000000,0.250000,0,0);}
.m29_c00248{transform:matrix(0.257551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257551,0.000000,0.000000,0.250000,0,0);}
.m3c_c00248{transform:matrix(0.257794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257794,0.000000,0.000000,0.250000,0,0);}
.m6f_c00248{transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);}
.m2e_c00248{transform:matrix(0.258459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258459,0.000000,0.000000,0.250000,0,0);}
.m17_c00248{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m67_c00248{transform:matrix(0.259628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259628,0.000000,0.000000,0.250000,0,0);}
.m9f_c00248{transform:matrix(0.260756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260756,0.000000,0.000000,0.250000,0,0);}
.m5_c00248{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.maa_c00248{transform:matrix(0.261460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261460,0.000000,0.000000,0.250000,0,0);}
.ma8_c00248{transform:matrix(0.262539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262539,0.000000,0.000000,0.250000,0,0);}
.m50_c00248{transform:matrix(0.262843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262843,0.000000,0.000000,0.250000,0,0);}
.m2_c00248{transform:matrix(0.262954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262954,0.000000,0.000000,0.250000,0,0);}
.m1b_c00248{transform:matrix(0.262979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262979,0.000000,0.000000,0.250000,0,0);}
.m4_c00248{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.md_c00248{transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);}
.ma6_c00248{transform:matrix(0.265655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265655,0.000000,0.000000,0.250000,0,0);}
.m47_c00248{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m4b_c00248{transform:matrix(0.266853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266853,0.000000,0.000000,0.250000,0,0);}
.m92_c00248{transform:matrix(0.267205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267205,0.000000,0.000000,0.250000,0,0);}
.m39_c00248{transform:matrix(0.267361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267361,0.000000,0.000000,0.250000,0,0);}
.m36_c00248{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m84_c00248{transform:matrix(0.268552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268552,0.000000,0.000000,0.250000,0,0);}
.m22_c00248{transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);}
.m85_c00248{transform:matrix(0.269374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269374,0.000000,0.000000,0.250000,0,0);}
.m7a_c00248{transform:matrix(0.269761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269761,0.000000,0.000000,0.250000,0,0);}
.m3f_c00248{transform:matrix(0.270287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270287,0.000000,0.000000,0.250000,0,0);}
.m14_c00248{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m34_c00248{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m70_c00248{transform:matrix(0.272544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272544,0.000000,0.000000,0.250000,0,0);}
.m62_c00248{transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);}
.m10_c00248{transform:matrix(0.273482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273482,0.000000,0.000000,0.250000,0,0);}
.m8e_c00248{transform:matrix(0.274262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274262,0.000000,0.000000,0.250000,0,0);}
.m13_c00248{transform:matrix(0.274708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274708,0.000000,0.000000,0.250000,0,0);}
.m8a_c00248{transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);}
.m30_c00248{transform:matrix(0.274964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274964,0.000000,0.000000,0.250000,0,0);}
.m43_c00248{transform:matrix(0.276494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276494,0.000000,0.000000,0.250000,0,0);}
.m7d_c00248{transform:matrix(0.276607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276607,0.000000,0.000000,0.250000,0,0);}
.mab_c00248{transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);}
.m82_c00248{transform:matrix(0.277164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277164,0.000000,0.000000,0.250000,0,0);}
.ma3_c00248{transform:matrix(0.277708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277708,0.000000,0.000000,0.250000,0,0);}
.m42_c00248{transform:matrix(0.278188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278188,0.000000,0.000000,0.250000,0,0);}
.m91_c00248{transform:matrix(0.278331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278331,0.000000,0.000000,0.250000,0,0);}
.m4a_c00248{transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);}
.m3b_c00248{transform:matrix(0.279485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279485,0.000000,0.000000,0.250000,0,0);}
.m97_c00248{transform:matrix(0.279985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279985,0.000000,0.000000,0.250000,0,0);}
.m6_c00248{transform:matrix(0.280840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280840,0.000000,0.000000,0.250000,0,0);}
.ma2_c00248{transform:matrix(0.281258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281258,0.000000,0.000000,0.250000,0,0);}
.m5a_c00248{transform:matrix(0.281605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281605,0.000000,0.000000,0.250000,0,0);}
.m93_c00248{transform:matrix(0.283147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283147,0.000000,0.000000,0.250000,0,0);}
.me_c00248{transform:matrix(0.283165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283165,0.000000,0.000000,0.250000,0,0);}
.m54_c00248{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m21_c00248{transform:matrix(0.284009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284009,0.000000,0.000000,0.250000,0,0);}
.m2d_c00248{transform:matrix(0.284545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284545,0.000000,0.000000,0.250000,0,0);}
.m16_c00248{transform:matrix(0.285573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285573,0.000000,0.000000,0.250000,0,0);}
.m1a_c00248{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);}
.mad_c00248{transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);}
.m55_c00248{transform:matrix(0.287899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287899,0.000000,0.000000,0.250000,0,0);}
.m31_c00248{transform:matrix(0.287961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287961,0.000000,0.000000,0.250000,0,0);}
.m1e_c00248{transform:matrix(0.288403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288403,0.000000,0.000000,0.250000,0,0);}
.m9b_c00248{transform:matrix(0.288519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288519,0.000000,0.000000,0.250000,0,0);}
.m4d_c00248{transform:matrix(0.289069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289069,0.000000,0.000000,0.250000,0,0);}
.m44_c00248{transform:matrix(0.289203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289203,0.000000,0.000000,0.250000,0,0);}
.ma5_c00248{transform:matrix(0.289272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289272,0.000000,0.000000,0.250000,0,0);}
.m8b_c00248{transform:matrix(0.289789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289789,0.000000,0.000000,0.250000,0,0);}
.m41_c00248{transform:matrix(0.289833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289833,0.000000,0.000000,0.250000,0,0);}
.mae_c00248{transform:matrix(0.290826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290826,0.000000,0.000000,0.250000,0,0);}
.m74_c00248{transform:matrix(0.291574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291574,0.000000,0.000000,0.250000,0,0);}
.m27_c00248{transform:matrix(0.292222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292222,0.000000,0.000000,0.250000,0,0);}
.m64_c00248{transform:matrix(0.292527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292527,0.000000,0.000000,0.250000,0,0);}
.m3_c00248{transform:matrix(0.293637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293637,0.000000,0.000000,0.250000,0,0);}
.m7e_c00248{transform:matrix(0.293651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293651,0.000000,0.000000,0.250000,0,0);}
.m3d_c00248{transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);}
.m6d_c00248{transform:matrix(0.294033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294033,0.000000,0.000000,0.250000,0,0);}
.m81_c00248{transform:matrix(0.294105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294105,0.000000,0.000000,0.250000,0,0);}
.m69_c00248{transform:matrix(0.295046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295046,0.000000,0.000000,0.250000,0,0);}
.m58_c00248{transform:matrix(0.295258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295258,0.000000,0.000000,0.250000,0,0);}
.ma1_c00248{transform:matrix(0.296031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296031,0.000000,0.000000,0.250000,0,0);}
.m1f_c00248{transform:matrix(0.296105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296105,0.000000,0.000000,0.250000,0,0);}
.m7_c00248{transform:matrix(0.296352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296352,0.000000,0.000000,0.250000,0,0);}
.mf_c00248{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m5b_c00248{transform:matrix(0.298105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298105,0.000000,0.000000,0.250000,0,0);}
.m51_c00248{transform:matrix(0.298226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298226,0.000000,0.000000,0.250000,0,0);}
.ma9_c00248{transform:matrix(0.298403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298403,0.000000,0.000000,0.250000,0,0);}
.m8c_c00248{transform:matrix(0.298498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298498,0.000000,0.000000,0.250000,0,0);}
.m2c_c00248{transform:matrix(0.299144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299144,0.000000,0.000000,0.250000,0,0);}
.m96_c00248{transform:matrix(0.299372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299372,0.000000,0.000000,0.250000,0,0);}
.m89_c00248{transform:matrix(0.300384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300384,0.000000,0.000000,0.250000,0,0);}
.m9a_c00248{transform:matrix(0.301193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301193,0.000000,0.000000,0.250000,0,0);}
.m4f_c00248{transform:matrix(0.301409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301409,0.000000,0.000000,0.250000,0,0);}
.m86_c00248{transform:matrix(0.303158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303158,0.000000,0.000000,0.250000,0,0);}
.m35_c00248{transform:matrix(0.303447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303447,0.000000,0.000000,0.250000,0,0);}
.m6e_c00248{transform:matrix(0.303758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303758,0.000000,0.000000,0.250000,0,0);}
.m45_c00248{transform:matrix(0.304857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304857,0.000000,0.000000,0.250000,0,0);}
.mb_c00248{transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);}
.m11_c00248{transform:matrix(0.305441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305441,0.000000,0.000000,0.250000,0,0);}
.m2f_c00248{transform:matrix(0.305460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305460,0.000000,0.000000,0.250000,0,0);}
.m72_c00248{transform:matrix(0.305899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305899,0.000000,0.000000,0.250000,0,0);}
.m90_c00248{transform:matrix(0.306386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306386,0.000000,0.000000,0.250000,0,0);}
.m1_c00248{transform:matrix(0.307335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307335,0.000000,0.000000,0.250000,0,0);}
.m19_c00248{transform:matrix(0.307340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307340,0.000000,0.000000,0.250000,0,0);}
.m1c_c00248{transform:matrix(0.307700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307700,0.000000,0.000000,0.250000,0,0);}
.maf_c00248{transform:matrix(0.307943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307943,0.000000,0.000000,0.250000,0,0);}
.m8d_c00248{transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);}
.m87_c00248{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m88_c00248{transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);}
.m98_c00248{transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);}
.m2a_c00248{transform:matrix(0.309166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309166,0.000000,0.000000,0.250000,0,0);}
.m73_c00248{transform:matrix(0.309292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309292,0.000000,0.000000,0.250000,0,0);}
.m6b_c00248{transform:matrix(0.310270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310270,0.000000,0.000000,0.250000,0,0);}
.m28_c00248{transform:matrix(0.310437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310437,0.000000,0.000000,0.250000,0,0);}
.ma7_c00248{transform:matrix(0.310694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310694,0.000000,0.000000,0.250000,0,0);}
.m5d_c00248{transform:matrix(0.310732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310732,0.000000,0.000000,0.250000,0,0);}
.m38_c00248{transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);}
.ma0_c00248{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.ma4_c00248{transform:matrix(0.313350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313350,0.000000,0.000000,0.250000,0,0);}
.m9c_c00248{transform:matrix(0.315835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315835,0.000000,0.000000,0.250000,0,0);}
.mac_c00248{transform:matrix(0.316653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316653,0.000000,0.000000,0.250000,0,0);}
.m78_c00248{transform:matrix(0.317237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317237,0.000000,0.000000,0.250000,0,0);}
.m53_c00248{transform:matrix(0.317242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317242,0.000000,0.000000,0.250000,0,0);}
.m80_c00248{transform:matrix(0.319290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319290,0.000000,0.000000,0.250000,0,0);}
.m65_c00248{transform:matrix(0.319628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319628,0.000000,0.000000,0.250000,0,0);}
.m5f_c00248{transform:matrix(0.320518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320518,0.000000,0.000000,0.250000,0,0);}
.m12_c00248{transform:matrix(0.320811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320811,0.000000,0.000000,0.250000,0,0);}
.mc_c00248{transform:matrix(0.320896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320896,0.000000,0.000000,0.250000,0,0);}
.m94_c00248{transform:matrix(0.320922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320922,0.000000,0.000000,0.250000,0,0);}
.m63_c00248{transform:matrix(0.320939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320939,0.000000,0.000000,0.250000,0,0);}
.m48_c00248{transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);}
.m7b_c00248{transform:matrix(0.322522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322522,0.000000,0.000000,0.250000,0,0);}
.m32_c00248{transform:matrix(0.322527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322527,0.000000,0.000000,0.250000,0,0);}
.m66_c00248{transform:matrix(0.323587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323587,0.000000,0.000000,0.250000,0,0);}
.m15_c00248{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.m95_c00248{transform:matrix(0.324215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324215,0.000000,0.000000,0.250000,0,0);}
.m52_c00248{transform:matrix(0.324328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324328,0.000000,0.000000,0.250000,0,0);}
.m7c_c00248{transform:matrix(0.325919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325919,0.000000,0.000000,0.250000,0,0);}
.m79_c00248{transform:matrix(0.328093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328093,0.000000,0.000000,0.250000,0,0);}
.m6a_c00248{transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);}
.m77_c00248{transform:matrix(0.331931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331931,0.000000,0.000000,0.250000,0,0);}
.m56_c00248{transform:matrix(0.334069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334069,0.000000,0.000000,0.250000,0,0);}
.m8f_c00248{transform:matrix(0.334972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334972,0.000000,0.000000,0.250000,0,0);}
.m5e_c00248{transform:matrix(0.336348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336348,0.000000,0.000000,0.250000,0,0);}
.m6c_c00248{transform:matrix(0.337511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337511,0.000000,0.000000,0.250000,0,0);}
.m83_c00248{transform:matrix(0.337901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337901,0.000000,0.000000,0.250000,0,0);}
.m4c_c00248{transform:matrix(0.342217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342217,0.000000,0.000000,0.250000,0,0);}
.m33_c00248{transform:matrix(0.343060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343060,0.000000,0.000000,0.250000,0,0);}
.m46_c00248{transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);}
.m71_c00248{transform:matrix(0.347316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347316,0.000000,0.000000,0.250000,0,0);}
.m4e_c00248{transform:matrix(0.347369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347369,0.000000,0.000000,0.250000,0,0);}
.m3e_c00248{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m7f_c00248{transform:matrix(0.351275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351275,0.000000,0.000000,0.250000,0,0);}
.m5c_c00248{transform:matrix(0.351688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351688,0.000000,0.000000,0.250000,0,0);}
.m49_c00248{transform:matrix(0.354899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354899,0.000000,0.000000,0.250000,0,0);}
.m20_c00248{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m23_c00248{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m24_c00248{transform:matrix(0.362012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362012,0.000000,0.000000,0.250000,0,0);}
.m40_c00248{transform:matrix(0.365812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365812,0.000000,0.000000,0.250000,0,0);}
.m9e_c00248{transform:matrix(0.375438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375438,0.000000,0.000000,0.250000,0,0);}
.m25_c00248{transform:matrix(0.385852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385852,0.000000,0.000000,0.250000,0,0);}
.v0_c00248{vertical-align:0.000000px;}
.lsa_c00248{letter-spacing:-2.744280px;}
.lsf_c00248{letter-spacing:-2.626668px;}
.ls13_c00248{letter-spacing:-2.179742px;}
.lsc_c00248{letter-spacing:-0.893851px;}
.ls1_c00248{letter-spacing:0.000000px;}
.ls11_c00248{letter-spacing:0.737035px;}
.ls3_c00248{letter-spacing:1.017225px;}
.ls12_c00248{letter-spacing:1.779862px;}
.ls6_c00248{letter-spacing:1.881792px;}
.ls10_c00248{letter-spacing:2.783484px;}
.lse_c00248{letter-spacing:3.167683px;}
.ls7_c00248{letter-spacing:3.544200px;}
.ls9_c00248{letter-spacing:3.653813px;}
.ls2_c00248{letter-spacing:3.712500px;}
.ls4_c00248{letter-spacing:3.920400px;}
.ls0_c00248{letter-spacing:9.173340px;}
.lsd_c00248{letter-spacing:49.896198px;}
.lsb_c00248{letter-spacing:51.321798px;}
.ls8_c00248{letter-spacing:52.747398px;}
.ls5_c00248{letter-spacing:55.598598px;}
.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;}
}
.ws2_c00248{word-spacing:-23.255813px;}
.ws6_c00248{word-spacing:-22.769683px;}
.ws0_c00248{word-spacing:-19.602000px;}
.ws3_c00248{word-spacing:-18.708149px;}
.ws7_c00248{word-spacing:-3.606768px;}
.wsa_c00248{word-spacing:0.000000px;}
.ws5_c00248{word-spacing:0.784080px;}
.ws4_c00248{word-spacing:1.254528px;}
.ws9_c00248{word-spacing:1.489752px;}
.ws8_c00248{word-spacing:2.038608px;}
.ws1_c00248{word-spacing:2.665476px;}
._4_c00248{margin-left:-19.746144px;}
._13_c00248{margin-left:-6.115824px;}
._11_c00248{margin-left:-3.057912px;}
._18_c00248{margin-left:-1.254528px;}
._2_c00248{width:4.626072px;}
._1_c00248{width:6.429456px;}
._7_c00248{width:7.919208px;}
._5_c00248{width:9.095328px;}
._3_c00248{width:10.976328px;}
._b_c00248{width:13.172544px;}
._14_c00248{width:16.230456px;}
._a_c00248{width:20.856528px;}
._e_c00248{width:22.784256px;}
._15_c00248{width:24.306480px;}
._0_c00248{width:26.737920px;}
._10_c00248{width:28.636344px;}
._f_c00248{width:29.716632px;}
._9_c00248{width:31.363200px;}
._6_c00248{width:32.617728px;}
._19_c00248{width:34.106688px;}
._12_c00248{width:35.597232px;}
._17_c00248{width:37.165788px;}
._c_c00248{width:38.576736px;}
._16_c00248{width:39.674448px;}
._d_c00248{width:44.023320px;}
._8_c00248{width:50.024304px;}
.fc0_c00248{color:transparent;}
.fsc_c00248{font-size:22.176000px;}
.fs2_c00248{font-size:33.264000px;}
.fs0_c00248{font-size:33.660000px;}
.fsa_c00248{font-size:49.896198px;}
.fsb_c00248{font-size:50.688000px;}
.fs7_c00248{font-size:51.321798px;}
.fs6_c00248{font-size:52.747398px;}
.fs4_c00248{font-size:55.598598px;}
.fs8_c00248{font-size:66.330000px;}
.fs5_c00248{font-size:70.884000px;}
.fs1_c00248{font-size:74.250000px;}
.fs3_c00248{font-size:78.408000px;}
.fs9_c00248{font-size:78.804000px;}
.y0_c00248{bottom:0.000000px;}
.y1d_c00248{bottom:56.930985px;}
.y1_c00248{bottom:76.500000px;}
.y1c_c00248{bottom:168.845535px;}
.y1b_c00248{bottom:232.636185px;}
.y1a_c00248{bottom:246.540735px;}
.y19_c00248{bottom:263.999385px;}
.y18_c00248{bottom:288.952335px;}
.y17_c00248{bottom:317.102985px;}
.y16_c00248{bottom:348.827535px;}
.y15_c00248{bottom:380.190735px;}
.y14_c00248{bottom:411.548985px;}
.y13_c00248{bottom:441.842985px;}
.y12_c00248{bottom:473.567535px;}
.y11_c00248{bottom:505.643535px;}
.y10_c00248{bottom:569.082735px;}
.yf_c00248{bottom:601.153785px;}
.ye_c00248{bottom:632.516985px;}
.yd_c00248{bottom:664.241535px;}
.yc_c00248{bottom:696.673935px;}
.yb_c00248{bottom:729.819135px;}
.ya_c00248{bottom:762.251535px;}
.y9_c00248{bottom:795.040335px;}
.y7_c00248{bottom:860.607540px;}
.y8_c00248{bottom:860.612985px;}
.y6_c00248{bottom:893.401785px;}
.y5_c00248{bottom:927.264735px;}
.y4_c00248{bottom:1044.871785px;}
.y3_c00248{bottom:1077.304185px;}
.y2_c00248{bottom:1092.629385px;}
.hf_c00248{height:23.128875px;}
.h2_c00248{height:33.035449px;}
.hd_c00248{height:33.230868px;}
.ha_c00248{height:34.180317px;}
.h4_c00248{height:34.693313px;}
.h9_c00248{height:35.129767px;}
.h6_c00248{height:37.028666px;}
.he_c00248{height:52.866000px;}
.hb_c00248{height:69.180117px;}
.h8_c00248{height:69.568770px;}
.h3_c00248{height:72.872314px;}
.h5_c00248{height:76.953164px;}
.h7_c00248{height:76.974944px;}
.hc_c00248{height:77.341816px;}
.h1_c00248{height:1110.000000px;}
.h0_c00248{height:1263.000000px;}
.w1_c00248{width:751.500000px;}
.w0_c00248{width:892.500000px;}
.x0_c00248{left:0.000000px;}
.x5c_c00248{left:63.494085px;}
.x15_c00248{left:64.588035px;}
.x6_c00248{left:65.642385px;}
.x1_c00248{left:70.500000px;}
.x6c_c00248{left:82.526835px;}
.x56_c00248{left:85.774035px;}
.x67_c00248{left:87.739185px;}
.x16_c00248{left:97.599585px;}
.x3c_c00248{left:108.385635px;}
.x24_c00248{left:119.206335px;}
.x33_c00248{left:121.923885px;}
.x49_c00248{left:130.393335px;}
.x17_c00248{left:131.576385px;}
.x18_c00248{left:141.560535px;}
.x57_c00248{left:152.435685px;}
.x25_c00248{left:153.623685px;}
.x7_c00248{left:155.390835px;}
.x21_c00248{left:163.667235px;}
.x2e_c00248{left:166.478835px;}
.x37_c00248{left:174.349335px;}
.x4a_c00248{left:175.730385px;}
.x52_c00248{left:184.853235px;}
.x42_c00248{left:186.125385px;}
.x22_c00248{left:195.495735px;}
.x2_c00248{left:203.296935px;}
.x2f_c00248{left:207.019335px;}
.x19_c00248{left:208.514235px;}
.x58_c00248{left:217.285635px;}
.x4e_c00248{left:218.552835px;}
.x62_c00248{left:219.597285px;}
.x8_c00248{left:229.601235px;}
.x53_c00248{left:239.679435px;}
.x4b_c00248{left:240.808035px;}
.x26_c00248{left:241.921785px;}
.x43_c00248{left:251.698035px;}
.x4f_c00248{left:253.059285px;}
.x9_c00248{left:263.102835px;}
.x5d_c00248{left:265.765935px;}
.x27_c00248{left:273.245385px;}
.x1a_c00248{left:274.492785px;}
.x44_c00248{left:285.442185px;}
.x5e_c00248{left:296.050035px;}
.xa_c00248{left:307.449885px;}
.x23_c00248{left:309.221985px;}
.x65_c00248{left:316.760835px;}
.x45_c00248{left:317.859735px;}
.x5f_c00248{left:319.042785px;}
.x50_c00248{left:329.309085px;}
.x1b_c00248{left:339.718935px;}
.x59_c00248{left:342.471135px;}
.x28_c00248{left:350.777235px;}
.x46_c00248{left:362.568135px;}
.x38_c00248{left:372.883935px;}
.x3d_c00248{left:383.932335px;}
.x1c_c00248{left:384.961935px;}
.x30_c00248{left:395.322285px;}
.x66_c00248{left:396.381585px;}
.x6b_c00248{left:397.713135px;}
.x69_c00248{left:402.346335px;}
.xb_c00248{left:406.598385px;}
.x34_c00248{left:408.405135px;}
.x1d_c00248{left:417.404235px;}
.x63_c00248{left:419.809935px;}
.x35_c00248{left:428.106135px;}
.x47_c00248{left:439.317885px;}
.x64_c00248{left:449.341635px;}
.xc_c00248{left:450.777135px;}
.x3e_c00248{left:451.989885px;}
.x39_c00248{left:460.399935px;}
.xd_c00248{left:461.464185px;}
.x6a_c00248{left:463.186785px;}
.xe_c00248{left:472.873935px;}
.xf_c00248{left:483.209535px;}
.x4c_c00248{left:494.644035px;}
.x1e_c00248{left:504.613335px;}
.x3f_c00248{left:507.023985px;}
.x61_c00248{left:515.537985px;}
.x31_c00248{left:516.854685px;}
.x10_c00248{left:527.160585px;}
.x29_c00248{left:537.699135px;}
.x48_c00248{left:538.931685px;}
.x36_c00248{left:548.386185px;}
.x3a_c00248{left:559.751385px;}
.x60_c00248{left:561.038385px;}
.x54_c00248{left:562.726335px;}
.x11_c00248{left:571.373985px;}
.x3b_c00248{left:581.595735px;}
.x5a_c00248{left:582.778785px;}
.x2a_c00248{left:592.767885px;}
.x1f_c00248{left:603.826185px;}
.x40_c00248{left:604.875585px;}
.x32_c00248{left:614.879535px;}
.x2b_c00248{left:615.909135px;}
.x51_c00248{left:625.927935px;}
.x4d_c00248{left:628.303935px;}
.x12_c00248{left:636.595185px;}
.x2c_c00248{left:647.608935px;}
.x3_c00248{left:649.009785px;}
.x13_c00248{left:659.068185px;}
.x5b_c00248{left:660.087885px;}
.x55_c00248{left:670.458135px;}
.x4_c00248{left:672.368835px;}
.x20_c00248{left:680.442285px;}
.x14_c00248{left:691.832235px;}
.x2d_c00248{left:703.053885px;}
.x5_c00248{left:704.400285px;}
.x41_c00248{left:713.042985px;}
.x68_c00248{left:725.318985px;}
@media print{
.v0_c00248{vertical-align:0.000000pt;}
.lsa_c00248{letter-spacing:-2.439360pt;}
.lsf_c00248{letter-spacing:-2.334816pt;}
.ls13_c00248{letter-spacing:-1.937549pt;}
.lsc_c00248{letter-spacing:-0.794534pt;}
.ls1_c00248{letter-spacing:0.000000pt;}
.ls11_c00248{letter-spacing:0.655142pt;}
.ls3_c00248{letter-spacing:0.904200pt;}
.ls12_c00248{letter-spacing:1.582099pt;}
.ls6_c00248{letter-spacing:1.672704pt;}
.ls10_c00248{letter-spacing:2.474208pt;}
.lse_c00248{letter-spacing:2.815718pt;}
.ls7_c00248{letter-spacing:3.150400pt;}
.ls9_c00248{letter-spacing:3.247834pt;}
.ls2_c00248{letter-spacing:3.300000pt;}
.ls4_c00248{letter-spacing:3.484800pt;}
.ls0_c00248{letter-spacing:8.154080pt;}
.lsd_c00248{letter-spacing:44.352176pt;}
.lsb_c00248{letter-spacing:45.619376pt;}
.ls8_c00248{letter-spacing:46.886576pt;}
.ls5_c00248{letter-spacing:49.420976pt;}
.ws2_c00248{word-spacing:-20.671834pt;}
.ws6_c00248{word-spacing:-20.239718pt;}
.ws0_c00248{word-spacing:-17.424000pt;}
.ws3_c00248{word-spacing:-16.629466pt;}
.ws7_c00248{word-spacing:-3.206016pt;}
.wsa_c00248{word-spacing:0.000000pt;}
.ws5_c00248{word-spacing:0.696960pt;}
.ws4_c00248{word-spacing:1.115136pt;}
.ws9_c00248{word-spacing:1.324224pt;}
.ws8_c00248{word-spacing:1.812096pt;}
.ws1_c00248{word-spacing:2.369312pt;}
._4_c00248{margin-left:-17.552128pt;}
._13_c00248{margin-left:-5.436288pt;}
._11_c00248{margin-left:-2.718144pt;}
._18_c00248{margin-left:-1.115136pt;}
._2_c00248{width:4.112064pt;}
._1_c00248{width:5.715072pt;}
._7_c00248{width:7.039296pt;}
._5_c00248{width:8.084736pt;}
._3_c00248{width:9.756736pt;}
._b_c00248{width:11.708928pt;}
._14_c00248{width:14.427072pt;}
._a_c00248{width:18.539136pt;}
._e_c00248{width:20.252672pt;}
._15_c00248{width:21.605760pt;}
._0_c00248{width:23.767040pt;}
._10_c00248{width:25.454528pt;}
._f_c00248{width:26.414784pt;}
._9_c00248{width:27.878400pt;}
._6_c00248{width:28.993536pt;}
._19_c00248{width:30.317056pt;}
._12_c00248{width:31.641984pt;}
._17_c00248{width:33.036256pt;}
._c_c00248{width:34.290432pt;}
._16_c00248{width:35.266176pt;}
._d_c00248{width:39.131840pt;}
._8_c00248{width:44.466048pt;}
.fsc_c00248{font-size:19.712000pt;}
.fs2_c00248{font-size:29.568000pt;}
.fs0_c00248{font-size:29.920000pt;}
.fsa_c00248{font-size:44.352176pt;}
.fsb_c00248{font-size:45.056000pt;}
.fs7_c00248{font-size:45.619376pt;}
.fs6_c00248{font-size:46.886576pt;}
.fs4_c00248{font-size:49.420976pt;}
.fs8_c00248{font-size:58.960000pt;}
.fs5_c00248{font-size:63.008000pt;}
.fs1_c00248{font-size:66.000000pt;}
.fs3_c00248{font-size:69.696000pt;}
.fs9_c00248{font-size:70.048000pt;}
.y0_c00248{bottom:0.000000pt;}
.y1d_c00248{bottom:50.605320pt;}
.y1_c00248{bottom:68.000000pt;}
.y1c_c00248{bottom:150.084920pt;}
.y1b_c00248{bottom:206.787720pt;}
.y1a_c00248{bottom:219.147320pt;}
.y19_c00248{bottom:234.666120pt;}
.y18_c00248{bottom:256.846520pt;}
.y17_c00248{bottom:281.869320pt;}
.y16_c00248{bottom:310.068920pt;}
.y15_c00248{bottom:337.947320pt;}
.y14_c00248{bottom:365.821320pt;}
.y13_c00248{bottom:392.749320pt;}
.y12_c00248{bottom:420.948920pt;}
.y11_c00248{bottom:449.460920pt;}
.y10_c00248{bottom:505.851320pt;}
.yf_c00248{bottom:534.358920pt;}
.ye_c00248{bottom:562.237320pt;}
.yd_c00248{bottom:590.436920pt;}
.yc_c00248{bottom:619.265720pt;}
.yb_c00248{bottom:648.728120pt;}
.ya_c00248{bottom:677.556920pt;}
.y9_c00248{bottom:706.702520pt;}
.y7_c00248{bottom:764.984480pt;}
.y8_c00248{bottom:764.989320pt;}
.y6_c00248{bottom:794.134920pt;}
.y5_c00248{bottom:824.235320pt;}
.y4_c00248{bottom:928.774920pt;}
.y3_c00248{bottom:957.603720pt;}
.y2_c00248{bottom:971.226120pt;}
.hf_c00248{height:20.559000pt;}
.h2_c00248{height:29.364844pt;}
.hd_c00248{height:29.538549pt;}
.ha_c00248{height:30.382504pt;}
.h4_c00248{height:30.838500pt;}
.h9_c00248{height:31.226460pt;}
.h6_c00248{height:32.914370pt;}
.he_c00248{height:46.992000pt;}
.hb_c00248{height:61.493438pt;}
.h8_c00248{height:61.838906pt;}
.h3_c00248{height:64.775391pt;}
.h5_c00248{height:68.402813pt;}
.h7_c00248{height:68.422173pt;}
.hc_c00248{height:68.748281pt;}
.h1_c00248{height:986.666667pt;}
.h0_c00248{height:1122.666667pt;}
.w1_c00248{width:668.000000pt;}
.w0_c00248{width:793.333333pt;}
.x0_c00248{left:0.000000pt;}
.x5c_c00248{left:56.439187pt;}
.x15_c00248{left:57.411587pt;}
.x6_c00248{left:58.348787pt;}
.x1_c00248{left:62.666667pt;}
.x6c_c00248{left:73.357187pt;}
.x56_c00248{left:76.243587pt;}
.x67_c00248{left:77.990387pt;}
.x16_c00248{left:86.755187pt;}
.x3c_c00248{left:96.342787pt;}
.x24_c00248{left:105.961187pt;}
.x33_c00248{left:108.376787pt;}
.x49_c00248{left:115.905187pt;}
.x17_c00248{left:116.956787pt;}
.x18_c00248{left:125.831587pt;}
.x57_c00248{left:135.498387pt;}
.x25_c00248{left:136.554387pt;}
.x7_c00248{left:138.125187pt;}
.x21_c00248{left:145.481987pt;}
.x2e_c00248{left:147.981187pt;}
.x37_c00248{left:154.977187pt;}
.x4a_c00248{left:156.204787pt;}
.x52_c00248{left:164.313987pt;}
.x42_c00248{left:165.444787pt;}
.x22_c00248{left:173.773987pt;}
.x2_c00248{left:180.708387pt;}
.x2f_c00248{left:184.017187pt;}
.x19_c00248{left:185.345987pt;}
.x58_c00248{left:193.142787pt;}
.x4e_c00248{left:194.269187pt;}
.x62_c00248{left:195.197587pt;}
.x8_c00248{left:204.089987pt;}
.x53_c00248{left:213.048387pt;}
.x4b_c00248{left:214.051587pt;}
.x26_c00248{left:215.041587pt;}
.x43_c00248{left:223.731587pt;}
.x4f_c00248{left:224.941587pt;}
.x9_c00248{left:233.869187pt;}
.x5d_c00248{left:236.236387pt;}
.x27_c00248{left:242.884787pt;}
.x1a_c00248{left:243.993587pt;}
.x44_c00248{left:253.726387pt;}
.x5e_c00248{left:263.155587pt;}
.xa_c00248{left:273.288787pt;}
.x23_c00248{left:274.863987pt;}
.x65_c00248{left:281.565187pt;}
.x45_c00248{left:282.541987pt;}
.x5f_c00248{left:283.593587pt;}
.x50_c00248{left:292.719187pt;}
.x1b_c00248{left:301.972387pt;}
.x59_c00248{left:304.418787pt;}
.x28_c00248{left:311.801987pt;}
.x46_c00248{left:322.282787pt;}
.x38_c00248{left:331.452387pt;}
.x3d_c00248{left:341.273187pt;}
.x1c_c00248{left:342.188387pt;}
.x30_c00248{left:351.397587pt;}
.x66_c00248{left:352.339187pt;}
.x6b_c00248{left:353.522787pt;}
.x69_c00248{left:357.641187pt;}
.xb_c00248{left:361.420787pt;}
.x34_c00248{left:363.026787pt;}
.x1d_c00248{left:371.025987pt;}
.x63_c00248{left:373.164387pt;}
.x35_c00248{left:380.538787pt;}
.x47_c00248{left:390.504787pt;}
.x64_c00248{left:399.414787pt;}
.xc_c00248{left:400.690787pt;}
.x3e_c00248{left:401.768787pt;}
.x39_c00248{left:409.244387pt;}
.xd_c00248{left:410.190387pt;}
.x6a_c00248{left:411.721587pt;}
.xe_c00248{left:420.332387pt;}
.xf_c00248{left:429.519587pt;}
.x4c_c00248{left:439.683587pt;}
.x1e_c00248{left:448.545187pt;}
.x3f_c00248{left:450.687987pt;}
.x61_c00248{left:458.255987pt;}
.x31_c00248{left:459.426387pt;}
.x10_c00248{left:468.587187pt;}
.x29_c00248{left:477.954787pt;}
.x48_c00248{left:479.050387pt;}
.x36_c00248{left:487.454387pt;}
.x3a_c00248{left:497.556787pt;}
.x60_c00248{left:498.700787pt;}
.x54_c00248{left:500.201187pt;}
.x11_c00248{left:507.887987pt;}
.x3b_c00248{left:516.973987pt;}
.x5a_c00248{left:518.025587pt;}
.x2a_c00248{left:526.904787pt;}
.x1f_c00248{left:536.734387pt;}
.x40_c00248{left:537.667187pt;}
.x32_c00248{left:546.559587pt;}
.x2b_c00248{left:547.474787pt;}
.x51_c00248{left:556.380387pt;}
.x4d_c00248{left:558.492387pt;}
.x12_c00248{left:565.862387pt;}
.x2c_c00248{left:575.652387pt;}
.x3_c00248{left:576.897587pt;}
.x13_c00248{left:585.838387pt;}
.x5b_c00248{left:586.744787pt;}
.x55_c00248{left:595.962787pt;}
.x4_c00248{left:597.661187pt;}
.x20_c00248{left:604.837587pt;}
.x14_c00248{left:614.961987pt;}
.x2d_c00248{left:624.936787pt;}
.x5_c00248{left:626.133587pt;}
.x41_c00248{left:633.815987pt;}
.x68_c00248{left:644.727987pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_853155dbc0548823ad16a4d4.woff2')format("woff");}.ff1_c00249{font-family:ff1_c00249;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00249;src:url('chunks/assets/font_626853d9a6ca2736b6248689.woff2')format("woff");}.ff2_c00249{font-family:ff2_c00249;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00249;src:url('chunks/assets/font_9b2d07a80ea71cf799c8721f.woff2')format("woff");}.ff3_c00249{font-family:ff3_c00249;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00249;src:url('chunks/assets/font_0cf1208712f391368466cd2a.woff2')format("woff");}.ff4_c00249{font-family:ff4_c00249;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ma1_c00249{transform:matrix(0.045674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045674,0.000000,0.000000,0.250000,0,0);}
.ma3_c00249{transform:matrix(0.057692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.057692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.057692,0.000000,0.000000,0.250000,0,0);}
.ma0_c00249{transform:matrix(0.062501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062501,0.000000,0.000000,0.250000,0,0);}
.m9f_c00249{transform:matrix(0.063402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.063402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.063402,0.000000,0.000000,0.250000,0,0);}
.ma4_c00249{transform:matrix(0.079327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.079327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.079327,0.000000,0.000000,0.250000,0,0);}
.m60_c00249{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m61_c00249{transform:matrix(0.114286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114286,0.000000,0.000000,0.250000,0,0);}
.m21_c00249{transform:matrix(0.119439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119439,0.000000,0.000000,0.250000,0,0);}
.ma2_c00249{transform:matrix(0.147436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147436,0.000000,0.000000,0.250000,0,0);}
.m8c_c00249{transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);}
.m1b_c00249{transform:matrix(0.171429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171429,0.000000,0.000000,0.250000,0,0);}
.m1e_c00249{transform:matrix(0.180875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180875,0.000000,0.000000,0.250000,0,0);}
.m98_c00249{transform:matrix(0.192751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192751,0.000000,0.000000,0.250000,0,0);}
.m8d_c00249{transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);}
.m1d_c00249{transform:matrix(0.194866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194866,0.000000,0.000000,0.250000,0,0);}
.m8e_c00249{transform:matrix(0.202857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202857,0.000000,0.000000,0.250000,0,0);}
.m31_c00249{transform:matrix(0.217143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217143,0.000000,0.000000,0.250000,0,0);}
.m62_c00249{transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);}
.m1a_c00249{transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);}
.m9b_c00249{transform:matrix(0.222374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222374,0.000000,0.000000,0.250000,0,0);}
.m87_c00249{transform:matrix(0.222447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222447,0.000000,0.000000,0.250000,0,0);}
.m99_c00249{transform:matrix(0.230759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230759,0.000000,0.000000,0.250000,0,0);}
.m9d_c00249{transform:matrix(0.233080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233080,0.000000,0.000000,0.250000,0,0);}
.m1_c00249{transform:matrix(0.240983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240983,0.000000,0.000000,0.250000,0,0);}
.ma5_c00249{transform:matrix(0.244556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244556,0.000000,0.000000,0.250000,0,0);}
.m9a_c00249{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m33_c00249{transform:matrix(0.249794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249794,0.000000,0.000000,0.250000,0,0);}
.m0_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);}
.m6_c00249{transform:matrix(0.253944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253944,0.000000,0.000000,0.250000,0,0);}
.m32_c00249{transform:matrix(0.258400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258400,0.000000,0.000000,0.250000,0,0);}
.m43_c00249{transform:matrix(0.258699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258699,0.000000,0.000000,0.250000,0,0);}
.m65_c00249{transform:matrix(0.260114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260114,0.000000,0.000000,0.250000,0,0);}
.md_c00249{transform:matrix(0.260647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260647,0.000000,0.000000,0.250000,0,0);}
.m23_c00249{transform:matrix(0.263791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263791,0.000000,0.000000,0.250000,0,0);}
.m7f_c00249{transform:matrix(0.263995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263995,0.000000,0.000000,0.250000,0,0);}
.m2f_c00249{transform:matrix(0.264679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264679,0.000000,0.000000,0.250000,0,0);}
.m54_c00249{transform:matrix(0.265125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265125,0.000000,0.000000,0.250000,0,0);}
.m8b_c00249{transform:matrix(0.265207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265207,0.000000,0.000000,0.250000,0,0);}
.m68_c00249{transform:matrix(0.265386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265386,0.000000,0.000000,0.250000,0,0);}
.m13_c00249{transform:matrix(0.265942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265942,0.000000,0.000000,0.250000,0,0);}
.m77_c00249{transform:matrix(0.266604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266604,0.000000,0.000000,0.250000,0,0);}
.m91_c00249{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.m70_c00249{transform:matrix(0.267095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267095,0.000000,0.000000,0.250000,0,0);}
.m7a_c00249{transform:matrix(0.267220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267220,0.000000,0.000000,0.250000,0,0);}
.m2c_c00249{transform:matrix(0.270126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270126,0.000000,0.000000,0.250000,0,0);}
.ma_c00249{transform:matrix(0.270764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270764,0.000000,0.000000,0.250000,0,0);}
.m90_c00249{transform:matrix(0.271512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271512,0.000000,0.000000,0.250000,0,0);}
.mf_c00249{transform:matrix(0.272516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272516,0.000000,0.000000,0.250000,0,0);}
.m5f_c00249{transform:matrix(0.273110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273110,0.000000,0.000000,0.250000,0,0);}
.m95_c00249{transform:matrix(0.274411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274411,0.000000,0.000000,0.250000,0,0);}
.m9c_c00249{transform:matrix(0.274737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274737,0.000000,0.000000,0.250000,0,0);}
.m28_c00249{transform:matrix(0.274865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274865,0.000000,0.000000,0.250000,0,0);}
.m53_c00249{transform:matrix(0.275160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275160,0.000000,0.000000,0.250000,0,0);}
.m20_c00249{transform:matrix(0.275671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275671,0.000000,0.000000,0.250000,0,0);}
.m71_c00249{transform:matrix(0.277901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277901,0.000000,0.000000,0.250000,0,0);}
.m97_c00249{transform:matrix(0.278311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278311,0.000000,0.000000,0.250000,0,0);}
.m4f_c00249{transform:matrix(0.278435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278435,0.000000,0.000000,0.250000,0,0);}
.m78_c00249{transform:matrix(0.278828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278828,0.000000,0.000000,0.250000,0,0);}
.m3c_c00249{transform:matrix(0.279672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279672,0.000000,0.000000,0.250000,0,0);}
.me_c00249{transform:matrix(0.279716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279716,0.000000,0.000000,0.250000,0,0);}
.m47_c00249{transform:matrix(0.281775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281775,0.000000,0.000000,0.250000,0,0);}
.m4a_c00249{transform:matrix(0.282694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282694,0.000000,0.000000,0.250000,0,0);}
.m57_c00249{transform:matrix(0.284396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284396,0.000000,0.000000,0.250000,0,0);}
.m52_c00249{transform:matrix(0.284425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284425,0.000000,0.000000,0.250000,0,0);}
.m8_c00249{transform:matrix(0.284517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284517,0.000000,0.000000,0.250000,0,0);}
.m73_c00249{transform:matrix(0.285790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285790,0.000000,0.000000,0.250000,0,0);}
.m45_c00249{transform:matrix(0.285901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285901,0.000000,0.000000,0.250000,0,0);}
.m4c_c00249{transform:matrix(0.287345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287345,0.000000,0.000000,0.250000,0,0);}
.m89_c00249{transform:matrix(0.287372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287372,0.000000,0.000000,0.250000,0,0);}
.m39_c00249{transform:matrix(0.287519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287519,0.000000,0.000000,0.250000,0,0);}
.m5c_c00249{transform:matrix(0.288308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288308,0.000000,0.000000,0.250000,0,0);}
.m29_c00249{transform:matrix(0.288841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288841,0.000000,0.000000,0.250000,0,0);}
.m50_c00249{transform:matrix(0.289082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289082,0.000000,0.000000,0.250000,0,0);}
.m15_c00249{transform:matrix(0.289127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289127,0.000000,0.000000,0.250000,0,0);}
.m4e_c00249{transform:matrix(0.289475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289475,0.000000,0.000000,0.250000,0,0);}
.m64_c00249{transform:matrix(0.289527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289527,0.000000,0.000000,0.250000,0,0);}
.m3e_c00249{transform:matrix(0.290893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290893,0.000000,0.000000,0.250000,0,0);}
.m5e_c00249{transform:matrix(0.291917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291917,0.000000,0.000000,0.250000,0,0);}
.m75_c00249{transform:matrix(0.292730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292730,0.000000,0.000000,0.250000,0,0);}
.m41_c00249{transform:matrix(0.293013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293013,0.000000,0.000000,0.250000,0,0);}
.mb_c00249{transform:matrix(0.293416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293416,0.000000,0.000000,0.250000,0,0);}
.m46_c00249{transform:matrix(0.293918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293918,0.000000,0.000000,0.250000,0,0);}
.m56_c00249{transform:matrix(0.295562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295562,0.000000,0.000000,0.250000,0,0);}
.m4b_c00249{transform:matrix(0.295916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295916,0.000000,0.000000,0.250000,0,0);}
.m4_c00249{transform:matrix(0.296032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296032,0.000000,0.000000,0.250000,0,0);}
.m5b_c00249{transform:matrix(0.296047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296047,0.000000,0.000000,0.250000,0,0);}
.m36_c00249{transform:matrix(0.296863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296863,0.000000,0.000000,0.250000,0,0);}
.m6e_c00249{transform:matrix(0.297020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297020,0.000000,0.000000,0.250000,0,0);}
.m38_c00249{transform:matrix(0.297038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297038,0.000000,0.000000,0.250000,0,0);}
.mc_c00249{transform:matrix(0.297085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297085,0.000000,0.000000,0.250000,0,0);}
.m49_c00249{transform:matrix(0.297806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297806,0.000000,0.000000,0.250000,0,0);}
.m2e_c00249{transform:matrix(0.297982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297982,0.000000,0.000000,0.250000,0,0);}
.m3f_c00249{transform:matrix(0.298480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298480,0.000000,0.000000,0.250000,0,0);}
.m44_c00249{transform:matrix(0.298813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298813,0.000000,0.000000,0.250000,0,0);}
.m4d_c00249{transform:matrix(0.299411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299411,0.000000,0.000000,0.250000,0,0);}
.m3_c00249{transform:matrix(0.299835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299835,0.000000,0.000000,0.250000,0,0);}
.m69_c00249{transform:matrix(0.299907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299907,0.000000,0.000000,0.250000,0,0);}
.m22_c00249{transform:matrix(0.299967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299967,0.000000,0.000000,0.250000,0,0);}
.m72_c00249{transform:matrix(0.300192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300192,0.000000,0.000000,0.250000,0,0);}
.m37_c00249{transform:matrix(0.301276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301276,0.000000,0.000000,0.250000,0,0);}
.m67_c00249{transform:matrix(0.301795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301795,0.000000,0.000000,0.250000,0,0);}
.m92_c00249{transform:matrix(0.302193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302193,0.000000,0.000000,0.250000,0,0);}
.m66_c00249{transform:matrix(0.303038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303038,0.000000,0.000000,0.250000,0,0);}
.m7c_c00249{transform:matrix(0.303080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303080,0.000000,0.000000,0.250000,0,0);}
.m51_c00249{transform:matrix(0.304245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304245,0.000000,0.000000,0.250000,0,0);}
.m6d_c00249{transform:matrix(0.304803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304803,0.000000,0.000000,0.250000,0,0);}
.m8a_c00249{transform:matrix(0.306135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306135,0.000000,0.000000,0.250000,0,0);}
.m5d_c00249{transform:matrix(0.306894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306894,0.000000,0.000000,0.250000,0,0);}
.m55_c00249{transform:matrix(0.307071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307071,0.000000,0.000000,0.250000,0,0);}
.m16_c00249{transform:matrix(0.308553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308553,0.000000,0.000000,0.250000,0,0);}
.m42_c00249{transform:matrix(0.309848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309848,0.000000,0.000000,0.250000,0,0);}
.m82_c00249{transform:matrix(0.310400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310400,0.000000,0.000000,0.250000,0,0);}
.m63_c00249{transform:matrix(0.311389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311389,0.000000,0.000000,0.250000,0,0);}
.m25_c00249{transform:matrix(0.311446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311446,0.000000,0.000000,0.250000,0,0);}
.m27_c00249{transform:matrix(0.311713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311713,0.000000,0.000000,0.250000,0,0);}
.m40_c00249{transform:matrix(0.312922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312922,0.000000,0.000000,0.250000,0,0);}
.m5a_c00249{transform:matrix(0.313016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313016,0.000000,0.000000,0.250000,0,0);}
.m10_c00249{transform:matrix(0.313547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313547,0.000000,0.000000,0.250000,0,0);}
.m93_c00249{transform:matrix(0.315689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315689,0.000000,0.000000,0.250000,0,0);}
.m17_c00249{transform:matrix(0.316222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316222,0.000000,0.000000,0.250000,0,0);}
.m6b_c00249{transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);}
.m86_c00249{transform:matrix(0.316908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316908,0.000000,0.000000,0.250000,0,0);}
.m85_c00249{transform:matrix(0.317131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317131,0.000000,0.000000,0.250000,0,0);}
.m7e_c00249{transform:matrix(0.317648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317648,0.000000,0.000000,0.250000,0,0);}
.m81_c00249{transform:matrix(0.318187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318187,0.000000,0.000000,0.250000,0,0);}
.m84_c00249{transform:matrix(0.318298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318298,0.000000,0.000000,0.250000,0,0);}
.m88_c00249{transform:matrix(0.318953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318953,0.000000,0.000000,0.250000,0,0);}
.m26_c00249{transform:matrix(0.319274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319274,0.000000,0.000000,0.250000,0,0);}
.m30_c00249{transform:matrix(0.319441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319441,0.000000,0.000000,0.250000,0,0);}
.m34_c00249{transform:matrix(0.319463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319463,0.000000,0.000000,0.250000,0,0);}
.m5_c00249{transform:matrix(0.319858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319858,0.000000,0.000000,0.250000,0,0);}
.m58_c00249{transform:matrix(0.320071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320071,0.000000,0.000000,0.250000,0,0);}
.m7b_c00249{transform:matrix(0.321707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321707,0.000000,0.000000,0.250000,0,0);}
.m6f_c00249{transform:matrix(0.322054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322054,0.000000,0.000000,0.250000,0,0);}
.m3a_c00249{transform:matrix(0.322076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322076,0.000000,0.000000,0.250000,0,0);}
.m1f_c00249{transform:matrix(0.322885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322885,0.000000,0.000000,0.250000,0,0);}
.m9_c00249{transform:matrix(0.324326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324326,0.000000,0.000000,0.250000,0,0);}
.m79_c00249{transform:matrix(0.325216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325216,0.000000,0.000000,0.250000,0,0);}
.m2d_c00249{transform:matrix(0.326599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326599,0.000000,0.000000,0.250000,0,0);}
.m14_c00249{transform:matrix(0.327153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327153,0.000000,0.000000,0.250000,0,0);}
.m80_c00249{transform:matrix(0.328446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328446,0.000000,0.000000,0.250000,0,0);}
.m2a_c00249{transform:matrix(0.328823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328823,0.000000,0.000000,0.250000,0,0);}
.m7_c00249{transform:matrix(0.329660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329660,0.000000,0.000000,0.250000,0,0);}
.m6a_c00249{transform:matrix(0.331883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331883,0.000000,0.000000,0.250000,0,0);}
.m1c_c00249{transform:matrix(0.335591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335591,0.000000,0.000000,0.250000,0,0);}
.m83_c00249{transform:matrix(0.335946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335946,0.000000,0.000000,0.250000,0,0);}
.m6c_c00249{transform:matrix(0.337227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337227,0.000000,0.000000,0.250000,0,0);}
.m74_c00249{transform:matrix(0.340398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340398,0.000000,0.000000,0.250000,0,0);}
.m94_c00249{transform:matrix(0.341211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341211,0.000000,0.000000,0.250000,0,0);}
.m8f_c00249{transform:matrix(0.341856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341856,0.000000,0.000000,0.250000,0,0);}
.m19_c00249{transform:matrix(0.344253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344253,0.000000,0.000000,0.250000,0,0);}
.m11_c00249{transform:matrix(0.350227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350227,0.000000,0.000000,0.250000,0,0);}
.m96_c00249{transform:matrix(0.350603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350603,0.000000,0.000000,0.250000,0,0);}
.m3d_c00249{transform:matrix(0.352330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352330,0.000000,0.000000,0.250000,0,0);}
.m35_c00249{transform:matrix(0.356017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356017,0.000000,0.000000,0.250000,0,0);}
.m18_c00249{transform:matrix(0.358352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358352,0.000000,0.000000,0.250000,0,0);}
.m59_c00249{transform:matrix(0.360048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360048,0.000000,0.000000,0.250000,0,0);}
.m2b_c00249{transform:matrix(0.364530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364530,0.000000,0.000000,0.250000,0,0);}
.m7d_c00249{transform:matrix(0.364551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364551,0.000000,0.000000,0.250000,0,0);}
.m3b_c00249{transform:matrix(0.375352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375352,0.000000,0.000000,0.250000,0,0);}
.m76_c00249{transform:matrix(0.376887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376887,0.000000,0.000000,0.250000,0,0);}
.m24_c00249{transform:matrix(0.381710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381710,0.000000,0.000000,0.250000,0,0);}
.m2_c00249{transform:matrix(0.388602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388602,0.000000,0.000000,0.250000,0,0);}
.m48_c00249{transform:matrix(0.408275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408275,0.000000,0.000000,0.250000,0,0);}
.m12_c00249{transform:matrix(0.418352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418352,0.000000,0.000000,0.250000,0,0);}
.m9e_c00249{transform:matrix(0.614340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614340,0.000000,0.000000,0.250000,0,0);}
.v2_c00249{vertical-align:-9.959400px;}
.v0_c00249{vertical-align:0.000000px;}
.v1_c00249{vertical-align:17.107200px;}
.ls2_c00249{letter-spacing:-2.716567px;}
.ls7_c00249{letter-spacing:-2.674980px;}
.lsb_c00249{letter-spacing:-2.514481px;}
.ls6_c00249{letter-spacing:-2.224530px;}
.ls10_c00249{letter-spacing:-1.031778px;}
.lse_c00249{letter-spacing:-0.909493px;}
.lsc_c00249{letter-spacing:-0.695495px;}
.ls1_c00249{letter-spacing:0.000000px;}
.ls8_c00249{letter-spacing:1.734916px;}
.ls0_c00249{letter-spacing:1.925986px;}
.ls4_c00249{letter-spacing:2.124698px;}
.lsa_c00249{letter-spacing:3.087691px;}
.lsd_c00249{letter-spacing:3.366000px;}
.ls3_c00249{letter-spacing:3.821400px;}
.ls9_c00249{letter-spacing:4.197610px;}
.ls5_c00249{letter-spacing:49.896198px;}
.lsf_c00249{letter-spacing:74.131398px;}
.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:-21.032986px;}
.ws1_c00249{word-spacing:-19.107000px;}
.ws2_c00249{word-spacing:-16.592519px;}
.ws3_c00249{word-spacing:0.000000px;}
._f_c00249{margin-left:-10.470636px;}
._12_c00249{margin-left:-2.277792px;}
._10_c00249{width:2.522124px;}
._7_c00249{width:7.337088px;}
._2_c00249{width:8.942076px;}
._b_c00249{width:10.241352px;}
._e_c00249{width:11.616660px;}
._5_c00249{width:14.196600px;}
._0_c00249{width:21.399840px;}
._8_c00249{width:22.776336px;}
._6_c00249{width:24.227676px;}
._c_c00249{width:28.659708px;}
._4_c00249{width:30.494772px;}
._d_c00249{width:31.986306px;}
._1_c00249{width:33.093324px;}
._9_c00249{width:34.621488px;}
._a_c00249{width:38.451600px;}
._3_c00249{width:47.156076px;}
._11_c00249{width:324.656640px;}
.fc0_c00249{color:transparent;}
.fs9_c00249{font-size:17.028000px;}
.fs8_c00249{font-size:22.176000px;}
.fs10_c00249{font-size:27.720000px;}
.fs4_c00249{font-size:28.314000px;}
.fs11_c00249{font-size:33.264000px;}
.fsb_c00249{font-size:33.660000px;}
.fs0_c00249{font-size:38.808000px;}
.fs7_c00249{font-size:39.204000px;}
.fs3_c00249{font-size:49.896198px;}
.fsa_c00249{font-size:53.856198px;}
.fs5_c00249{font-size:63.558000px;}
.fsd_c00249{font-size:67.320000px;}
.fsc_c00249{font-size:69.696198px;}
.fsf_c00249{font-size:70.488000px;}
.fse_c00249{font-size:74.131398px;}
.fs2_c00249{font-size:76.428000px;}
.fs1_c00249{font-size:77.616198px;}
.fs6_c00249{font-size:83.952198px;}
.y0_c00249{bottom:0.000000px;}
.y1_c00249{bottom:76.500000px;}
.y27_c00249{bottom:89.719785px;}
.y25_c00249{bottom:139.620735px;}
.y24_c00249{bottom:146.743785px;}
.y20_c00249{bottom:147.100185px;}
.y1f_c00249{bottom:172.404585px;}
.y23_c00249{bottom:175.260735px;}
.y1e_c00249{bottom:210.187935px;}
.y22_c00249{bottom:212.326335px;}
.y21_c00249{bottom:274.696335px;}
.y1d_c00249{bottom:308.197935px;}
.y26_c00249{bottom:320.310585px;}
.y1c_c00249{bottom:339.204735px;}
.y1b_c00249{bottom:371.280735px;}
.y1a_c00249{bottom:410.484735px;}
.y19_c00249{bottom:413.335935px;}
.y18_c00249{bottom:435.427785px;}
.y17_c00249{bottom:444.337785px;}
.y16_c00249{bottom:468.577935px;}
.y15_c00249{bottom:482.828985px;}
.y14_c00249{bottom:492.813135px;}
.y13_c00249{bottom:501.361785px;}
.y12_c00249{bottom:534.150585px;}
.y11_c00249{bottom:568.364985px;}
.y10_c00249{bottom:601.153785px;}
.yf_c00249{bottom:626.456205px;}
.ye_c00249{bottom:637.511535px;}
.yd_c00249{bottom:664.241535px;}
.yc_c00249{bottom:695.956185px;}
.yb_c00249{bottom:728.037135px;}
.ya_c00249{bottom:760.825935px;}
.y9_c00249{bottom:793.966185px;}
.y8_c00249{bottom:826.047135px;}
.y7_c00249{bottom:858.835935px;}
.y6_c00249{bottom:872.379135px;}
.y5_c00249{bottom:890.906985px;}
.y4_c00249{bottom:925.482735px;}
.y3_c00249{bottom:1074.096585px;}
.y2_c00249{bottom:1094.054985px;}
.hb_c00249{height:17.759672px;}
.ha_c00249{height:23.128875px;}
.h6_c00249{height:29.530617px;}
.hd_c00249{height:33.035449px;}
.h5_c00249{height:33.230868px;}
.h9_c00249{height:38.476582px;}
.h2_c00249{height:40.475531px;}
.h10_c00249{height:49.371511px;}
.h12_c00249{height:51.800513px;}
.hc_c00249{height:52.856913px;}
.h7_c00249{height:66.289008px;}
.he_c00249{height:68.403007px;}
.h11_c00249{height:69.180117px;}
.hf_c00249{height:70.212656px;}
.h4_c00249{height:75.009902px;}
.h3_c00249{height:76.176054px;}
.h8_c00249{height:84.608075px;}
.h1_c00249{height:1110.000000px;}
.h0_c00249{height:1263.000000px;}
.w1_c00249{width:751.500000px;}
.w0_c00249{width:892.500000px;}
.x0_c00249{left:0.000000px;}
.x4_c00249{left:51.960585px;}
.x1_c00249{left:70.500000px;}
.x5_c00249{left:73.458435px;}
.x3a_c00249{left:74.547435px;}
.x43_c00249{left:83.640585px;}
.x14_c00249{left:85.234485px;}
.x34_c00249{left:95.040435px;}
.x6_c00249{left:106.301685px;}
.x4f_c00249{left:107.687685px;}
.x7_c00249{left:116.107635px;}
.x3b_c00249{left:118.330185px;}
.x5f_c00249{left:124.938435px;}
.x23_c00249{left:129.180585px;}
.x2c_c00249{left:140.159685px;}
.x3d_c00249{left:142.892085px;}
.x50_c00249{left:143.916735px;}
.x4c_c00249{left:149.609235px;}
.x8_c00249{left:150.638835px;}
.x5e_c00249{left:151.757535px;}
.x24_c00249{left:161.999085px;}
.x15_c00249{left:173.280135px;}
.x25_c00249{left:183.784035px;}
.x60_c00249{left:184.793835px;}
.x49_c00249{left:194.109735px;}
.x4d_c00249{left:195.233385px;}
.x44_c00249{left:197.460885px;}
.x2d_c00249{left:204.851235px;}
.x5d_c00249{left:206.752035px;}
.x16_c00249{left:217.518285px;}
.x61_c00249{left:218.973585px;}
.x35_c00249{left:227.631135px;}
.x3e_c00249{left:229.170585px;}
.x9_c00249{left:239.040885px;}
.x5a_c00249{left:240.293235px;}
.x5c_c00249{left:243.540435px;}
.x3c_c00249{left:250.757535px;}
.x36_c00249{left:260.776335px;}
.x17_c00249{left:261.998985px;}
.x2e_c00249{left:272.176185px;}
.xa_c00249{left:273.720585px;}
.x18_c00249{left:284.051235px;}
.x64_c00249{left:286.946985px;}
.x37_c00249{left:295.738185px;}
.x26_c00249{left:306.737085px;}
.x58_c00249{left:309.910035px;}
.x19_c00249{left:317.033085px;}
.xb_c00249{left:325.368885px;}
.xc_c00249{left:327.477585px;}
.x65_c00249{left:336.372735px;}
.x1a_c00249{left:339.362535px;}
.x2f_c00249{left:350.732685px;}
.xd_c00249{left:361.469235px;}
.x53_c00249{left:362.508735px;}
.x56_c00249{left:363.667035px;}
.x45_c00249{left:383.363085px;}
.xe_c00249{left:384.922335px;}
.x54_c00249{left:394.946085px;}
.x3f_c00249{left:406.301385px;}
.x1b_c00249{left:417.424035px;}
.x62_c00249{left:426.878535px;}
.x27_c00249{left:427.908135px;}
.x66_c00249{left:431.887935px;}
.xf_c00249{left:437.897235px;}
.x28_c00249{left:439.491135px;}
.x30_c00249{left:449.772285px;}
.x51_c00249{left:450.871185px;}
.x2_c00249{left:459.885135px;}
.x55_c00249{left:461.503785px;}
.x63_c00249{left:470.997885px;}
.x67_c00249{left:478.932735px;}
.x10_c00249{left:481.576035px;}
.x1c_c00249{left:483.328335px;}
.x29_c00249{left:493.921335px;}
.x68_c00249{left:499.871235px;}
.x40_c00249{left:505.113285px;}
.x5b_c00249{left:506.499285px;}
.x1d_c00249{left:516.498285px;}
.x11_c00249{left:527.531835px;}
.x4e_c00249{left:539.312835px;}
.x2a_c00249{left:546.693285px;}
.x41_c00249{left:549.292035px;}
.x46_c00249{left:550.356285px;}
.x31_c00249{left:560.696835px;}
.x38_c00249{left:561.716535px;}
.x47_c00249{left:571.398735px;}
.x57_c00249{left:572.769885px;}
.x12_c00249{left:583.150035px;}
.x32_c00249{left:591.901635px;}
.x13_c00249{left:594.881535px;}
.x52_c00249{left:605.118135px;}
.x33_c00249{left:626.145735px;}
.x42_c00249{left:627.685185px;}
.x59_c00249{left:630.293835px;}
.x1e_c00249{left:638.352435px;}
.x3_c00249{left:641.277885px;}
.x4b_c00249{left:642.717840px;}
.x4a_c00249{left:644.138985px;}
.x2b_c00249{left:650.445285px;}
.x69_c00249{left:658.444485px;}
.x1f_c00249{left:661.023435px;}
.x39_c00249{left:671.532285px;}
.x48_c00249{left:683.194485px;}
.x22_c00249{left:690.456135px;}
.x20_c00249{left:693.485535px;}
.x21_c00249{left:706.315935px;}
@media print{
.v2_c00249{vertical-align:-8.852800pt;}
.v0_c00249{vertical-align:0.000000pt;}
.v1_c00249{vertical-align:15.206400pt;}
.ls2_c00249{letter-spacing:-2.414726pt;}
.ls7_c00249{letter-spacing:-2.377760pt;}
.lsb_c00249{letter-spacing:-2.235094pt;}
.ls6_c00249{letter-spacing:-1.977360pt;}
.ls10_c00249{letter-spacing:-0.917136pt;}
.lse_c00249{letter-spacing:-0.808438pt;}
.lsc_c00249{letter-spacing:-0.618218pt;}
.ls1_c00249{letter-spacing:0.000000pt;}
.ls8_c00249{letter-spacing:1.542147pt;}
.ls0_c00249{letter-spacing:1.711987pt;}
.ls4_c00249{letter-spacing:1.888621pt;}
.lsa_c00249{letter-spacing:2.744614pt;}
.lsd_c00249{letter-spacing:2.992000pt;}
.ls3_c00249{letter-spacing:3.396800pt;}
.ls9_c00249{letter-spacing:3.731209pt;}
.ls5_c00249{letter-spacing:44.352176pt;}
.lsf_c00249{letter-spacing:65.894576pt;}
.ws0_c00249{word-spacing:-18.695987pt;}
.ws1_c00249{word-spacing:-16.984000pt;}
.ws2_c00249{word-spacing:-14.748906pt;}
.ws3_c00249{word-spacing:0.000000pt;}
._f_c00249{margin-left:-9.307232pt;}
._12_c00249{margin-left:-2.024704pt;}
._10_c00249{width:2.241888pt;}
._7_c00249{width:6.521856pt;}
._2_c00249{width:7.948512pt;}
._b_c00249{width:9.103424pt;}
._e_c00249{width:10.325920pt;}
._5_c00249{width:12.619200pt;}
._0_c00249{width:19.022080pt;}
._8_c00249{width:20.245632pt;}
._6_c00249{width:21.535712pt;}
._c_c00249{width:25.475296pt;}
._4_c00249{width:27.106464pt;}
._d_c00249{width:28.432272pt;}
._1_c00249{width:29.416288pt;}
._9_c00249{width:30.774656pt;}
._a_c00249{width:34.179200pt;}
._3_c00249{width:41.916512pt;}
._11_c00249{width:288.583680pt;}
.fs9_c00249{font-size:15.136000pt;}
.fs8_c00249{font-size:19.712000pt;}
.fs10_c00249{font-size:24.640000pt;}
.fs4_c00249{font-size:25.168000pt;}
.fs11_c00249{font-size:29.568000pt;}
.fsb_c00249{font-size:29.920000pt;}
.fs0_c00249{font-size:34.496000pt;}
.fs7_c00249{font-size:34.848000pt;}
.fs3_c00249{font-size:44.352176pt;}
.fsa_c00249{font-size:47.872176pt;}
.fs5_c00249{font-size:56.496000pt;}
.fsd_c00249{font-size:59.840000pt;}
.fsc_c00249{font-size:61.952176pt;}
.fsf_c00249{font-size:62.656000pt;}
.fse_c00249{font-size:65.894576pt;}
.fs2_c00249{font-size:67.936000pt;}
.fs1_c00249{font-size:68.992176pt;}
.fs6_c00249{font-size:74.624176pt;}
.y0_c00249{bottom:0.000000pt;}
.y1_c00249{bottom:68.000000pt;}
.y27_c00249{bottom:79.750920pt;}
.y25_c00249{bottom:124.107320pt;}
.y24_c00249{bottom:130.438920pt;}
.y20_c00249{bottom:130.755720pt;}
.y1f_c00249{bottom:153.248520pt;}
.y23_c00249{bottom:155.787320pt;}
.y1e_c00249{bottom:186.833720pt;}
.y22_c00249{bottom:188.734520pt;}
.y21_c00249{bottom:244.174520pt;}
.y1d_c00249{bottom:273.953720pt;}
.y26_c00249{bottom:284.720520pt;}
.y1c_c00249{bottom:301.515320pt;}
.y1b_c00249{bottom:330.027320pt;}
.y1a_c00249{bottom:364.875320pt;}
.y19_c00249{bottom:367.409720pt;}
.y18_c00249{bottom:387.046920pt;}
.y17_c00249{bottom:394.966920pt;}
.y16_c00249{bottom:416.513720pt;}
.y15_c00249{bottom:429.181320pt;}
.y14_c00249{bottom:438.056120pt;}
.y13_c00249{bottom:445.654920pt;}
.y12_c00249{bottom:474.800520pt;}
.y11_c00249{bottom:505.213320pt;}
.y10_c00249{bottom:534.358920pt;}
.yf_c00249{bottom:556.849960pt;}
.ye_c00249{bottom:566.676920pt;}
.yd_c00249{bottom:590.436920pt;}
.yc_c00249{bottom:618.627720pt;}
.yb_c00249{bottom:647.144120pt;}
.ya_c00249{bottom:676.289720pt;}
.y9_c00249{bottom:705.747720pt;}
.y8_c00249{bottom:734.264120pt;}
.y7_c00249{bottom:763.409720pt;}
.y6_c00249{bottom:775.448120pt;}
.y5_c00249{bottom:791.917320pt;}
.y4_c00249{bottom:822.651320pt;}
.y3_c00249{bottom:954.752520pt;}
.y2_c00249{bottom:972.493320pt;}
.hb_c00249{height:15.786375pt;}
.ha_c00249{height:20.559000pt;}
.h6_c00249{height:26.249438pt;}
.hd_c00249{height:29.364844pt;}
.h5_c00249{height:29.538549pt;}
.h9_c00249{height:34.201406pt;}
.h2_c00249{height:35.978250pt;}
.h10_c00249{height:43.885788pt;}
.h12_c00249{height:46.044900pt;}
.hc_c00249{height:46.983923pt;}
.h7_c00249{height:58.923563pt;}
.he_c00249{height:60.802673pt;}
.h11_c00249{height:61.493438pt;}
.hf_c00249{height:62.411250pt;}
.h4_c00249{height:66.675469pt;}
.h3_c00249{height:67.712048pt;}
.h8_c00249{height:75.207177pt;}
.h1_c00249{height:986.666667pt;}
.h0_c00249{height:1122.666667pt;}
.w1_c00249{width:668.000000pt;}
.w0_c00249{width:793.333333pt;}
.x0_c00249{left:0.000000pt;}
.x4_c00249{left:46.187187pt;}
.x1_c00249{left:62.666667pt;}
.x5_c00249{left:65.296387pt;}
.x3a_c00249{left:66.264387pt;}
.x43_c00249{left:74.347187pt;}
.x14_c00249{left:75.763987pt;}
.x34_c00249{left:84.480387pt;}
.x6_c00249{left:94.490387pt;}
.x4f_c00249{left:95.722387pt;}
.x7_c00249{left:103.206787pt;}
.x3b_c00249{left:105.182387pt;}
.x5f_c00249{left:111.056387pt;}
.x23_c00249{left:114.827187pt;}
.x2c_c00249{left:124.586387pt;}
.x3d_c00249{left:127.015187pt;}
.x50_c00249{left:127.925987pt;}
.x4c_c00249{left:132.985987pt;}
.x8_c00249{left:133.901187pt;}
.x5e_c00249{left:134.895587pt;}
.x24_c00249{left:143.999187pt;}
.x15_c00249{left:154.026787pt;}
.x25_c00249{left:163.363587pt;}
.x60_c00249{left:164.261187pt;}
.x49_c00249{left:172.541987pt;}
.x4d_c00249{left:173.540787pt;}
.x44_c00249{left:175.520787pt;}
.x2d_c00249{left:182.089987pt;}
.x5d_c00249{left:183.779587pt;}
.x16_c00249{left:193.349587pt;}
.x61_c00249{left:194.643187pt;}
.x35_c00249{left:202.338787pt;}
.x3e_c00249{left:203.707187pt;}
.x9_c00249{left:212.480787pt;}
.x5a_c00249{left:213.593987pt;}
.x5c_c00249{left:216.480387pt;}
.x3c_c00249{left:222.895587pt;}
.x36_c00249{left:231.801187pt;}
.x17_c00249{left:232.887987pt;}
.x2e_c00249{left:241.934387pt;}
.xa_c00249{left:243.307187pt;}
.x18_c00249{left:252.489987pt;}
.x64_c00249{left:255.063987pt;}
.x37_c00249{left:262.878387pt;}
.x26_c00249{left:272.655187pt;}
.x58_c00249{left:275.475587pt;}
.x19_c00249{left:281.807187pt;}
.xb_c00249{left:289.216787pt;}
.xc_c00249{left:291.091187pt;}
.x65_c00249{left:298.997987pt;}
.x1a_c00249{left:301.655587pt;}
.x2f_c00249{left:311.762387pt;}
.xd_c00249{left:321.305987pt;}
.x53_c00249{left:322.229987pt;}
.x56_c00249{left:323.259587pt;}
.x45_c00249{left:340.767187pt;}
.xe_c00249{left:342.153187pt;}
.x54_c00249{left:351.063187pt;}
.x3f_c00249{left:361.156787pt;}
.x1b_c00249{left:371.043587pt;}
.x62_c00249{left:379.447587pt;}
.x27_c00249{left:380.362787pt;}
.x66_c00249{left:383.900387pt;}
.xf_c00249{left:389.241987pt;}
.x28_c00249{left:390.658787pt;}
.x30_c00249{left:399.797587pt;}
.x51_c00249{left:400.774387pt;}
.x2_c00249{left:408.786787pt;}
.x55_c00249{left:410.225587pt;}
.x63_c00249{left:418.664787pt;}
.x67_c00249{left:425.717987pt;}
.x10_c00249{left:428.067587pt;}
.x1c_c00249{left:429.625187pt;}
.x29_c00249{left:439.041187pt;}
.x68_c00249{left:444.329987pt;}
.x40_c00249{left:448.989587pt;}
.x5b_c00249{left:450.221587pt;}
.x1d_c00249{left:459.109587pt;}
.x11_c00249{left:468.917187pt;}
.x4e_c00249{left:479.389187pt;}
.x2a_c00249{left:485.949587pt;}
.x41_c00249{left:488.259587pt;}
.x46_c00249{left:489.205587pt;}
.x31_c00249{left:498.397187pt;}
.x38_c00249{left:499.303587pt;}
.x47_c00249{left:507.909987pt;}
.x57_c00249{left:509.128787pt;}
.x12_c00249{left:518.355587pt;}
.x32_c00249{left:526.134787pt;}
.x13_c00249{left:528.783587pt;}
.x52_c00249{left:537.882787pt;}
.x33_c00249{left:556.573987pt;}
.x42_c00249{left:557.942387pt;}
.x59_c00249{left:560.261187pt;}
.x1e_c00249{left:567.424387pt;}
.x3_c00249{left:570.024787pt;}
.x4b_c00249{left:571.304747pt;}
.x4a_c00249{left:572.567987pt;}
.x2b_c00249{left:578.173587pt;}
.x69_c00249{left:585.283987pt;}
.x1f_c00249{left:587.576387pt;}
.x39_c00249{left:596.917587pt;}
.x48_c00249{left:607.283987pt;}
.x22_c00249{left:613.738787pt;}
.x20_c00249{left:616.431587pt;}
.x21_c00249{left:627.836387pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c4178a327a38516255619613.woff2')format("woff");}.ff1_c00250{font-family:ff1_c00250;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00250;src:url('chunks/assets/font_cb8ca4fedd51ff96f1e1f62e.woff2')format("woff");}.ff2_c00250{font-family:ff2_c00250;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00250;src:url('chunks/assets/font_74b0e31ee31c57739406f885.woff2')format("woff");}.ff3_c00250{font-family:ff3_c00250;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00250;src:url('chunks/assets/font_e637bfcc507ebace9fffec08.woff2')format("woff");}.ff4_c00250{font-family:ff4_c00250;line-height:0.666000;font-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_c00250{transform:matrix(0.050001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050001,0.000000,0.000000,0.250000,0,0);}
.mbf_c00250{transform:matrix(0.064286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064286,0.000000,0.000000,0.250000,0,0);}
.ma3_c00250{transform:matrix(0.113074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113074,0.000000,0.000000,0.250000,0,0);}
.m5e_c00250{transform:matrix(0.142043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142043,0.000000,0.000000,0.250000,0,0);}
.m3_c00250{transform:matrix(0.143036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143036,0.000000,0.000000,0.250000,0,0);}
.maa_c00250{transform:matrix(0.143085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143085,0.000000,0.000000,0.250000,0,0);}
.m98_c00250{transform:matrix(0.157369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157369,0.000000,0.000000,0.250000,0,0);}
.mbe_c00250{transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);}
.m5b_c00250{transform:matrix(0.180875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180875,0.000000,0.000000,0.250000,0,0);}
.m6c_c00250{transform:matrix(0.184620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184620,0.000000,0.000000,0.250000,0,0);}
.m14_c00250{transform:matrix(0.189549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189549,0.000000,0.000000,0.250000,0,0);}
.m59_c00250{transform:matrix(0.194618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194618,0.000000,0.000000,0.250000,0,0);}
.m79_c00250{transform:matrix(0.203572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203572,0.000000,0.000000,0.250000,0,0);}
.mc4_c00250{transform:matrix(0.207039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207039,0.000000,0.000000,0.250000,0,0);}
.mc1_c00250{transform:matrix(0.219643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219643,0.000000,0.000000,0.250000,0,0);}
.mab_c00250{transform:matrix(0.227239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227239,0.000000,0.000000,0.250000,0,0);}
.md_c00250{transform:matrix(0.228109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228109,0.000000,0.000000,0.250000,0,0);}
.mb2_c00250{transform:matrix(0.237819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237819,0.000000,0.000000,0.250000,0,0);}
.m0_c00250{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00250{transform:matrix(0.253944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253944,0.000000,0.000000,0.250000,0,0);}
.m9b_c00250{transform:matrix(0.254859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254859,0.000000,0.000000,0.250000,0,0);}
.m99_c00250{transform:matrix(0.256444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256444,0.000000,0.000000,0.250000,0,0);}
.m70_c00250{transform:matrix(0.258400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258400,0.000000,0.000000,0.250000,0,0);}
.ma_c00250{transform:matrix(0.261451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261451,0.000000,0.000000,0.250000,0,0);}
.mbb_c00250{transform:matrix(0.262855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262855,0.000000,0.000000,0.250000,0,0);}
.m49_c00250{transform:matrix(0.263609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263609,0.000000,0.000000,0.250000,0,0);}
.m8c_c00250{transform:matrix(0.264146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264146,0.000000,0.000000,0.250000,0,0);}
.m9e_c00250{transform:matrix(0.264679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264679,0.000000,0.000000,0.250000,0,0);}
.mb9_c00250{transform:matrix(0.265386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265386,0.000000,0.000000,0.250000,0,0);}
.m2a_c00250{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.m95_c00250{transform:matrix(0.267139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267139,0.000000,0.000000,0.250000,0,0);}
.m88_c00250{transform:matrix(0.267152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267152,0.000000,0.000000,0.250000,0,0);}
.m26_c00250{transform:matrix(0.267220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267220,0.000000,0.000000,0.250000,0,0);}
.m60_c00250{transform:matrix(0.267721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267721,0.000000,0.000000,0.250000,0,0);}
.m16_c00250{transform:matrix(0.268319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268319,0.000000,0.000000,0.250000,0,0);}
.ma4_c00250{transform:matrix(0.269362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269362,0.000000,0.000000,0.250000,0,0);}
.m2e_c00250{transform:matrix(0.270126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270126,0.000000,0.000000,0.250000,0,0);}
.m9f_c00250{transform:matrix(0.270332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270332,0.000000,0.000000,0.250000,0,0);}
.m1_c00250{transform:matrix(0.270510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270510,0.000000,0.000000,0.250000,0,0);}
.ma6_c00250{transform:matrix(0.270832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270832,0.000000,0.000000,0.250000,0,0);}
.m4d_c00250{transform:matrix(0.271554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271554,0.000000,0.000000,0.250000,0,0);}
.m86_c00250{transform:matrix(0.272187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272187,0.000000,0.000000,0.250000,0,0);}
.ma1_c00250{transform:matrix(0.272516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272516,0.000000,0.000000,0.250000,0,0);}
.m34_c00250{transform:matrix(0.273110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273110,0.000000,0.000000,0.250000,0,0);}
.mb3_c00250{transform:matrix(0.273128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273128,0.000000,0.000000,0.250000,0,0);}
.m10_c00250{transform:matrix(0.273282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273282,0.000000,0.000000,0.250000,0,0);}
.ma7_c00250{transform:matrix(0.273654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273654,0.000000,0.000000,0.250000,0,0);}
.m8f_c00250{transform:matrix(0.273806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273806,0.000000,0.000000,0.250000,0,0);}
.m2d_c00250{transform:matrix(0.274678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274678,0.000000,0.000000,0.250000,0,0);}
.mb_c00250{transform:matrix(0.274865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274865,0.000000,0.000000,0.250000,0,0);}
.m53_c00250{transform:matrix(0.274866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274866,0.000000,0.000000,0.250000,0,0);}
.mb5_c00250{transform:matrix(0.275340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275340,0.000000,0.000000,0.250000,0,0);}
.m30_c00250{transform:matrix(0.275583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275583,0.000000,0.000000,0.250000,0,0);}
.m7d_c00250{transform:matrix(0.275886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275886,0.000000,0.000000,0.250000,0,0);}
.m77_c00250{transform:matrix(0.275926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275926,0.000000,0.000000,0.250000,0,0);}
.mc6_c00250{transform:matrix(0.276848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276848,0.000000,0.000000,0.250000,0,0);}
.m55_c00250{transform:matrix(0.276964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276964,0.000000,0.000000,0.250000,0,0);}
.m42_c00250{transform:matrix(0.277179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277179,0.000000,0.000000,0.250000,0,0);}
.m93_c00250{transform:matrix(0.277289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277289,0.000000,0.000000,0.250000,0,0);}
.m11_c00250{transform:matrix(0.277367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277367,0.000000,0.000000,0.250000,0,0);}
.m41_c00250{transform:matrix(0.277580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277580,0.000000,0.000000,0.250000,0,0);}
.m6_c00250{transform:matrix(0.277901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277901,0.000000,0.000000,0.250000,0,0);}
.m82_c00250{transform:matrix(0.278548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278548,0.000000,0.000000,0.250000,0,0);}
.m65_c00250{transform:matrix(0.279605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279605,0.000000,0.000000,0.250000,0,0);}
.m67_c00250{transform:matrix(0.280668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280668,0.000000,0.000000,0.250000,0,0);}
.m22_c00250{transform:matrix(0.280687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280687,0.000000,0.000000,0.250000,0,0);}
.m56_c00250{transform:matrix(0.281172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281172,0.000000,0.000000,0.250000,0,0);}
.m27_c00250{transform:matrix(0.281227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281227,0.000000,0.000000,0.250000,0,0);}
.m91_c00250{transform:matrix(0.281687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281687,0.000000,0.000000,0.250000,0,0);}
.m29_c00250{transform:matrix(0.281936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281936,0.000000,0.000000,0.250000,0,0);}
.m51_c00250{transform:matrix(0.282297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282297,0.000000,0.000000,0.250000,0,0);}
.m5_c00250{transform:matrix(0.283773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283773,0.000000,0.000000,0.250000,0,0);}
.m37_c00250{transform:matrix(0.284344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284344,0.000000,0.000000,0.250000,0,0);}
.m7_c00250{transform:matrix(0.284396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284396,0.000000,0.000000,0.250000,0,0);}
.mb1_c00250{transform:matrix(0.285583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285583,0.000000,0.000000,0.250000,0,0);}
.m12_c00250{transform:matrix(0.286635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286635,0.000000,0.000000,0.250000,0,0);}
.mad_c00250{transform:matrix(0.287218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287218,0.000000,0.000000,0.250000,0,0);}
.mb6_c00250{transform:matrix(0.287372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287372,0.000000,0.000000,0.250000,0,0);}
.m46_c00250{transform:matrix(0.288041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288041,0.000000,0.000000,0.250000,0,0);}
.mc3_c00250{transform:matrix(0.288177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288177,0.000000,0.000000,0.250000,0,0);}
.m73_c00250{transform:matrix(0.289083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289083,0.000000,0.000000,0.250000,0,0);}
.m2_c00250{transform:matrix(0.289127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289127,0.000000,0.000000,0.250000,0,0);}
.ma9_c00250{transform:matrix(0.290777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290777,0.000000,0.000000,0.250000,0,0);}
.m6d_c00250{transform:matrix(0.292181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292181,0.000000,0.000000,0.250000,0,0);}
.m3e_c00250{transform:matrix(0.292306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292306,0.000000,0.000000,0.250000,0,0);}
.m7a_c00250{transform:matrix(0.293013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293013,0.000000,0.000000,0.250000,0,0);}
.m72_c00250{transform:matrix(0.293054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293054,0.000000,0.000000,0.250000,0,0);}
.m7c_c00250{transform:matrix(0.294481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294481,0.000000,0.000000,0.250000,0,0);}
.m94_c00250{transform:matrix(0.296032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296032,0.000000,0.000000,0.250000,0,0);}
.m87_c00250{transform:matrix(0.296339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296339,0.000000,0.000000,0.250000,0,0);}
.mb8_c00250{transform:matrix(0.296784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296784,0.000000,0.000000,0.250000,0,0);}
.m33_c00250{transform:matrix(0.297416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297416,0.000000,0.000000,0.250000,0,0);}
.mb0_c00250{transform:matrix(0.297863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297863,0.000000,0.000000,0.250000,0,0);}
.m8a_c00250{transform:matrix(0.298371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298371,0.000000,0.000000,0.250000,0,0);}
.m89_c00250{transform:matrix(0.298561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298561,0.000000,0.000000,0.250000,0,0);}
.m8d_c00250{transform:matrix(0.299031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299031,0.000000,0.000000,0.250000,0,0);}
.m23_c00250{transform:matrix(0.299050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299050,0.000000,0.000000,0.250000,0,0);}
.mc5_c00250{transform:matrix(0.299056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299056,0.000000,0.000000,0.250000,0,0);}
.m1a_c00250{transform:matrix(0.299201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299201,0.000000,0.000000,0.250000,0,0);}
.m7f_c00250{transform:matrix(0.299360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299360,0.000000,0.000000,0.250000,0,0);}
.m4f_c00250{transform:matrix(0.299695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299695,0.000000,0.000000,0.250000,0,0);}
.m80_c00250{transform:matrix(0.299937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299937,0.000000,0.000000,0.250000,0,0);}
.ma2_c00250{transform:matrix(0.299960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299960,0.000000,0.000000,0.250000,0,0);}
.m24_c00250{transform:matrix(0.300463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300463,0.000000,0.000000,0.250000,0,0);}
.mc2_c00250{transform:matrix(0.300508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300508,0.000000,0.000000,0.250000,0,0);}
.m64_c00250{transform:matrix(0.301466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301466,0.000000,0.000000,0.250000,0,0);}
.m2b_c00250{transform:matrix(0.301735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301735,0.000000,0.000000,0.250000,0,0);}
.m90_c00250{transform:matrix(0.302735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302735,0.000000,0.000000,0.250000,0,0);}
.m8e_c00250{transform:matrix(0.302969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302969,0.000000,0.000000,0.250000,0,0);}
.me_c00250{transform:matrix(0.303384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303384,0.000000,0.000000,0.250000,0,0);}
.m68_c00250{transform:matrix(0.303913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303913,0.000000,0.000000,0.250000,0,0);}
.m9c_c00250{transform:matrix(0.304126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304126,0.000000,0.000000,0.250000,0,0);}
.m54_c00250{transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);}
.m71_c00250{transform:matrix(0.304803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304803,0.000000,0.000000,0.250000,0,0);}
.m3d_c00250{transform:matrix(0.304845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304845,0.000000,0.000000,0.250000,0,0);}
.m5c_c00250{transform:matrix(0.304918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304918,0.000000,0.000000,0.250000,0,0);}
.m18_c00250{transform:matrix(0.305008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305008,0.000000,0.000000,0.250000,0,0);}
.m7e_c00250{transform:matrix(0.305028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305028,0.000000,0.000000,0.250000,0,0);}
.m2f_c00250{transform:matrix(0.305039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305039,0.000000,0.000000,0.250000,0,0);}
.m28_c00250{transform:matrix(0.306756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306756,0.000000,0.000000,0.250000,0,0);}
.m92_c00250{transform:matrix(0.307453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307453,0.000000,0.000000,0.250000,0,0);}
.m8b_c00250{transform:matrix(0.308381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308381,0.000000,0.000000,0.250000,0,0);}
.m38_c00250{transform:matrix(0.308874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308874,0.000000,0.000000,0.250000,0,0);}
.m61_c00250{transform:matrix(0.308990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308990,0.000000,0.000000,0.250000,0,0);}
.m78_c00250{transform:matrix(0.309176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309176,0.000000,0.000000,0.250000,0,0);}
.m19_c00250{transform:matrix(0.309459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309459,0.000000,0.000000,0.250000,0,0);}
.m6f_c00250{transform:matrix(0.310129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310129,0.000000,0.000000,0.250000,0,0);}
.m81_c00250{transform:matrix(0.310195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310195,0.000000,0.000000,0.250000,0,0);}
.mb4_c00250{transform:matrix(0.310210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310210,0.000000,0.000000,0.250000,0,0);}
.m2c_c00250{transform:matrix(0.310815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310815,0.000000,0.000000,0.250000,0,0);}
.m1e_c00250{transform:matrix(0.311797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311797,0.000000,0.000000,0.250000,0,0);}
.m52_c00250{transform:matrix(0.312258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312258,0.000000,0.000000,0.250000,0,0);}
.m58_c00250{transform:matrix(0.312639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312639,0.000000,0.000000,0.250000,0,0);}
.ma0_c00250{transform:matrix(0.313037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313037,0.000000,0.000000,0.250000,0,0);}
.m9d_c00250{transform:matrix(0.313595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313595,0.000000,0.000000,0.250000,0,0);}
.m40_c00250{transform:matrix(0.314466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314466,0.000000,0.000000,0.250000,0,0);}
.m31_c00250{transform:matrix(0.315689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315689,0.000000,0.000000,0.250000,0,0);}
.m69_c00250{transform:matrix(0.315955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315955,0.000000,0.000000,0.250000,0,0);}
.m15_c00250{transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);}
.m9_c00250{transform:matrix(0.316383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316383,0.000000,0.000000,0.250000,0,0);}
.mc_c00250{transform:matrix(0.316908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316908,0.000000,0.000000,0.250000,0,0);}
.mf_c00250{transform:matrix(0.317264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317264,0.000000,0.000000,0.250000,0,0);}
.m8_c00250{transform:matrix(0.317381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317381,0.000000,0.000000,0.250000,0,0);}
.m66_c00250{transform:matrix(0.319115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319115,0.000000,0.000000,0.250000,0,0);}
.m3b_c00250{transform:matrix(0.319760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319760,0.000000,0.000000,0.250000,0,0);}
.m21_c00250{transform:matrix(0.321914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321914,0.000000,0.000000,0.250000,0,0);}
.m57_c00250{transform:matrix(0.322560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322560,0.000000,0.000000,0.250000,0,0);}
.mac_c00250{transform:matrix(0.322694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322694,0.000000,0.000000,0.250000,0,0);}
.m84_c00250{transform:matrix(0.323368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323368,0.000000,0.000000,0.250000,0,0);}
.ma5_c00250{transform:matrix(0.324246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324246,0.000000,0.000000,0.250000,0,0);}
.m85_c00250{transform:matrix(0.325466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325466,0.000000,0.000000,0.250000,0,0);}
.m3a_c00250{transform:matrix(0.326257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326257,0.000000,0.000000,0.250000,0,0);}
.mba_c00250{transform:matrix(0.327253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327253,0.000000,0.000000,0.250000,0,0);}
.m96_c00250{transform:matrix(0.328062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328062,0.000000,0.000000,0.250000,0,0);}
.m36_c00250{transform:matrix(0.329501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329501,0.000000,0.000000,0.250000,0,0);}
.m1d_c00250{transform:matrix(0.329535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329535,0.000000,0.000000,0.250000,0,0);}
.m50_c00250{transform:matrix(0.329660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329660,0.000000,0.000000,0.250000,0,0);}
.m4b_c00250{transform:matrix(0.329679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329679,0.000000,0.000000,0.250000,0,0);}
.m39_c00250{transform:matrix(0.331307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331307,0.000000,0.000000,0.250000,0,0);}
.m6b_c00250{transform:matrix(0.331518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331518,0.000000,0.000000,0.250000,0,0);}
.m5d_c00250{transform:matrix(0.331883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331883,0.000000,0.000000,0.250000,0,0);}
.m62_c00250{transform:matrix(0.332040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332040,0.000000,0.000000,0.250000,0,0);}
.mbd_c00250{transform:matrix(0.332106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332106,0.000000,0.000000,0.250000,0,0);}
.m74_c00250{transform:matrix(0.333343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333343,0.000000,0.000000,0.250000,0,0);}
.m44_c00250{transform:matrix(0.334579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334579,0.000000,0.000000,0.250000,0,0);}
.m83_c00250{transform:matrix(0.335373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335373,0.000000,0.000000,0.250000,0,0);}
.m43_c00250{transform:matrix(0.335641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335641,0.000000,0.000000,0.250000,0,0);}
.m63_c00250{transform:matrix(0.336823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336823,0.000000,0.000000,0.250000,0,0);}
.m1f_c00250{transform:matrix(0.340214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340214,0.000000,0.000000,0.250000,0,0);}
.m3c_c00250{transform:matrix(0.341856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341856,0.000000,0.000000,0.250000,0,0);}
.mbc_c00250{transform:matrix(0.342903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342903,0.000000,0.000000,0.250000,0,0);}
.m7b_c00250{transform:matrix(0.343328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343328,0.000000,0.000000,0.250000,0,0);}
.m4e_c00250{transform:matrix(0.345043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345043,0.000000,0.000000,0.250000,0,0);}
.m6a_c00250{transform:matrix(0.345793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345793,0.000000,0.000000,0.250000,0,0);}
.m3f_c00250{transform:matrix(0.345995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345995,0.000000,0.000000,0.250000,0,0);}
.m32_c00250{transform:matrix(0.346521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346521,0.000000,0.000000,0.250000,0,0);}
.m76_c00250{transform:matrix(0.348591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348591,0.000000,0.000000,0.250000,0,0);}
.m9a_c00250{transform:matrix(0.352451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352451,0.000000,0.000000,0.250000,0,0);}
.m35_c00250{transform:matrix(0.352583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352583,0.000000,0.000000,0.250000,0,0);}
.m4c_c00250{transform:matrix(0.352798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352798,0.000000,0.000000,0.250000,0,0);}
.m20_c00250{transform:matrix(0.353699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353699,0.000000,0.000000,0.250000,0,0);}
.m6e_c00250{transform:matrix(0.353786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353786,0.000000,0.000000,0.250000,0,0);}
.m25_c00250{transform:matrix(0.356003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356003,0.000000,0.000000,0.250000,0,0);}
.mae_c00250{transform:matrix(0.357309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357309,0.000000,0.000000,0.250000,0,0);}
.m1c_c00250{transform:matrix(0.357801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357801,0.000000,0.000000,0.250000,0,0);}
.m13_c00250{transform:matrix(0.358154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358154,0.000000,0.000000,0.250000,0,0);}
.m97_c00250{transform:matrix(0.361148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361148,0.000000,0.000000,0.250000,0,0);}
.m45_c00250{transform:matrix(0.362049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362049,0.000000,0.000000,0.250000,0,0);}
.mb7_c00250{transform:matrix(0.364479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364479,0.000000,0.000000,0.250000,0,0);}
.m48_c00250{transform:matrix(0.370554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370554,0.000000,0.000000,0.250000,0,0);}
.m75_c00250{transform:matrix(0.372522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372522,0.000000,0.000000,0.250000,0,0);}
.m4_c00250{transform:matrix(0.374642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374642,0.000000,0.000000,0.250000,0,0);}
.m17_c00250{transform:matrix(0.375019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375019,0.000000,0.000000,0.250000,0,0);}
.m5a_c00250{transform:matrix(0.376887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376887,0.000000,0.000000,0.250000,0,0);}
.m4a_c00250{transform:matrix(0.378068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378068,0.000000,0.000000,0.250000,0,0);}
.maf_c00250{transform:matrix(0.385361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385361,0.000000,0.000000,0.250000,0,0);}
.m47_c00250{transform:matrix(0.418352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418352,0.000000,0.000000,0.250000,0,0);}
.m5f_c00250{transform:matrix(0.426288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426288,0.000000,0.000000,0.250000,0,0);}
.ma8_c00250{transform:matrix(0.451469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451469,0.000000,0.000000,0.250000,0,0);}
.v2_c00250{vertical-align:-7.128000px;}
.v0_c00250{vertical-align:0.000000px;}
.v1_c00250{vertical-align:51.301800px;}
.ls20_c00250{letter-spacing:-3.049200px;}
.lsc_c00250{letter-spacing:-2.674980px;}
.ls11_c00250{letter-spacing:-2.636766px;}
.ls19_c00250{letter-spacing:-2.430410px;}
.ls1b_c00250{letter-spacing:-2.020788px;}
.ls10_c00250{letter-spacing:-1.666130px;}
.lsd_c00250{letter-spacing:-1.429204px;}
.ls13_c00250{letter-spacing:-1.277338px;}
.lse_c00250{letter-spacing:-0.924779px;}
.ls1c_c00250{letter-spacing:-0.871279px;}
.ls18_c00250{letter-spacing:-0.703138px;}
.ls12_c00250{letter-spacing:-0.320998px;}
.ls9_c00250{letter-spacing:0.000000px;}
.ls6_c00250{letter-spacing:0.917136px;}
.ls2_c00250{letter-spacing:1.245776px;}
.lsa_c00250{letter-spacing:1.598893px;}
.ls1e_c00250{letter-spacing:1.732500px;}
.ls1f_c00250{letter-spacing:1.777248px;}
.ls8_c00250{letter-spacing:2.086484px;}
.ls1d_c00250{letter-spacing:2.267100px;}
.ls5_c00250{letter-spacing:2.682623px;}
.ls1a_c00250{letter-spacing:2.835479px;}
.ls14_c00250{letter-spacing:3.603610px;}
.ls17_c00250{letter-spacing:3.623400px;}
.ls15_c00250{letter-spacing:3.643200px;}
.ls1_c00250{letter-spacing:3.660901px;}
.ls4_c00250{letter-spacing:3.744972px;}
.lsf_c00250{letter-spacing:3.806114px;}
.lsb_c00250{letter-spacing:3.821400px;}
.ls21_c00250{letter-spacing:4.356000px;}
.ls3_c00250{letter-spacing:10.036224px;}
.ls7_c00250{letter-spacing:11.725560px;}
.ls0_c00250{letter-spacing:20.394726px;}
.ls16_c00250{letter-spacing:49.896198px;}
.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;}
}
.wsc_c00250{word-spacing:-21.193484px;}
.ws2_c00250{word-spacing:-19.107000px;}
.ws5_c00250{word-spacing:-18.786002px;}
.ws9_c00250{word-spacing:-18.403862px;}
.ws7_c00250{word-spacing:-18.018050px;}
.ws3_c00250{word-spacing:-17.677796px;}
.ws6_c00250{word-spacing:-0.172339px;}
.wsd_c00250{word-spacing:0.000000px;}
.wsb_c00250{word-spacing:0.458568px;}
.ws1_c00250{word-spacing:1.757844px;}
.ws4_c00250{word-spacing:2.369268px;}
.ws8_c00250{word-spacing:3.209976px;}
.ws0_c00250{word-spacing:3.668544px;}
.wsa_c00250{word-spacing:4.371682px;}
._13_c00250{margin-left:-10.164924px;}
._15_c00250{margin-left:-6.344316px;}
._1e_c00250{margin-left:-3.703392px;}
._2_c00250{margin-left:-1.299276px;}
._1a_c00250{width:1.108800px;}
._e_c00250{width:3.218015px;}
._17_c00250{width:4.234111px;}
._c_c00250{width:6.496380px;}
._0_c00250{width:8.177796px;}
._a_c00250{width:9.553500px;}
._10_c00250{width:11.318432px;}
._f_c00250{width:13.528548px;}
._5_c00250{width:14.827032px;}
._14_c00250{width:16.165908px;}
._d_c00250{width:20.634768px;}
._4_c00250{width:22.776336px;}
._7_c00250{width:24.227676px;}
._1b_c00250{width:25.374096px;}
._1_c00250{width:26.596944px;}
._6_c00250{width:29.119068px;}
._18_c00250{width:30.494772px;}
._9_c00250{width:31.794048px;}
._1d_c00250{width:33.009253px;}
._b_c00250{width:34.214796px;}
._11_c00250{width:36.341514px;}
._8_c00250{width:39.589704px;}
._16_c00250{width:42.111828px;}
._19_c00250{width:46.720080px;}
._3_c00250{width:49.362984px;}
._12_c00250{width:50.670972px;}
._1c_c00250{width:62.013600px;}
.fc0_c00250{color:transparent;}
.fs12_c00250{font-size:27.720000px;}
.fs5_c00250{font-size:28.314000px;}
.fs0_c00250{font-size:30.888000px;}
.fs11_c00250{font-size:33.264000px;}
.fse_c00250{font-size:34.650000px;}
.fs3_c00250{font-size:39.600000px;}
.fsd_c00250{font-size:45.342000px;}
.fsa_c00250{font-size:49.896198px;}
.fs6_c00250{font-size:50.688000px;}
.fsc_c00250{font-size:62.370000px;}
.fs10_c00250{font-size:65.538000px;}
.fs4_c00250{font-size:68.112198px;}
.fs7_c00250{font-size:72.072198px;}
.fsb_c00250{font-size:72.468000px;}
.fs8_c00250{font-size:72.864000px;}
.fs2_c00250{font-size:76.428000px;}
.fs9_c00250{font-size:79.200000px;}
.fs1_c00250{font-size:81.576198px;}
.fsf_c00250{font-size:87.120000px;}
.y0_c00250{bottom:0.000000px;}
.y25_c00250{bottom:75.112335px;}
.y1_c00250{bottom:76.500000px;}
.y27_c00250{bottom:91.506735px;}
.y24_c00250{bottom:141.759135px;}
.y26_c00250{bottom:151.381935px;}
.y23_c00250{bottom:171.335385px;}
.y21_c00250{bottom:205.906185px;}
.y22_c00250{bottom:211.613535px;}
.y20_c00250{bottom:267.563385px;}
.y2_c00250{bottom:282.532185px;}
.y1f_c00250{bottom:299.639385px;}
.y1e_c00250{bottom:331.007535px;}
.y1d_c00250{bottom:363.083535px;}
.y1c_c00250{bottom:396.228735px;}
.y1b_c00250{bottom:428.304735px;}
.y1a_c00250{bottom:461.444985px;}
.y19_c00250{bottom:494.595135px;}
.y18_c00250{bottom:508.494735px;}
.y17_c00250{bottom:527.022585px;}
.y16_c00250{bottom:541.991385px;}
.y15_c00250{bottom:559.454985px;}
.y14_c00250{bottom:574.072335px;}
.y13_c00250{bottom:591.535935px;}
.y12_c00250{bottom:592.605135px;}
.y11_c00250{bottom:610.063785px;}
.y10_c00250{bottom:655.682985px;}
.yf_c00250{bottom:655.683975px;}
.ye_c00250{bottom:688.471785px;}
.yd_c00250{bottom:722.334735px;}
.yc_c00250{bottom:722.335725px;}
.yb_c00250{bottom:755.123535px;}
.ya_c00250{bottom:787.199535px;}
.y9_c00250{bottom:819.270585px;}
.y8_c00250{bottom:819.271575px;}
.y7_c00250{bottom:852.059385px;}
.y6_c00250{bottom:884.491785px;}
.y5_c00250{bottom:900.178335px;}
.y4_c00250{bottom:919.062585px;}
.y3_c00250{bottom:1078.373385px;}
.h7_c00250{height:29.530617px;}
.h2_c00250{height:32.215219px;}
.hc_c00250{height:33.230868px;}
.h14_c00250{height:34.693313px;}
.h10_c00250{height:36.138867px;}
.h5_c00250{height:41.301563px;}
.hf_c00250{height:47.290289px;}
.h8_c00250{height:49.747500px;}
.h12_c00250{height:64.321963px;}
.he_c00250{height:65.049961px;}
.hd_c00250{height:71.123379px;}
.h13_c00250{height:71.512031px;}
.h9_c00250{height:72.635262px;}
.ha_c00250{height:73.433250px;}
.h4_c00250{height:75.009902px;}
.h3_c00250{height:80.062577px;}
.hb_c00250{height:82.603125px;}
.h11_c00250{height:85.503516px;}
.h6_c00250{height:122.340694px;}
.h1_c00250{height:1110.000000px;}
.h0_c00250{height:1263.000000px;}
.w1_c00250{width:751.500000px;}
.w0_c00250{width:892.500000px;}
.x0_c00250{left:0.000000px;}
.x2_c00250{left:12.900135px;}
.x75_c00250{left:58.707435px;}
.x52_c00250{left:59.821185px;}
.x14_c00250{left:61.014135px;}
.x1_c00250{left:70.500000px;}
.x47_c00250{left:83.120835px;}
.x48_c00250{left:93.580185px;}
.x4c_c00250{left:94.857285px;}
.x41_c00250{left:103.990035px;}
.x35_c00250{left:105.232485px;}
.x15_c00250{left:106.296735px;}
.x64_c00250{left:114.518685px;}
.x4_c00250{left:115.929435px;}
.x65_c00250{left:120.285435px;}
.x16_c00250{left:127.710435px;}
.x42_c00250{left:137.100585px;}
.x17_c00250{left:138.941985px;}
.x5d_c00250{left:149.049885px;}
.x13_c00250{left:150.059685px;}
.x53_c00250{left:158.875635px;}
.x27_c00250{left:160.741785px;}
.x3d_c00250{left:171.324885px;}
.x43_c00250{left:172.572285px;}
.x5_c00250{left:182.591085px;}
.x71_c00250{left:184.986885px;}
.x6_c00250{left:193.931535px;}
.x18_c00250{left:205.019535px;}
.x19_c00250{left:215.147235px;}
.x5e_c00250{left:226.527285px;}
.x7_c00250{left:227.829135px;}
.x72_c00250{left:230.002185px;}
.x49_c00250{left:234.076035px;}
.x6a_c00250{left:236.927235px;}
.x8_c00250{left:238.238985px;}
.x6e_c00250{left:239.575485px;}
.x9_c00250{left:250.064535px;}
.x76_c00250{left:255.108585px;}
.x6f_c00250{left:259.380435px;}
.x1a_c00250{left:260.419935px;}
.x54_c00250{left:271.235685px;}
.xa_c00250{left:272.344485px;}
.x2d_c00250{left:282.739485px;}
.x66_c00250{left:283.769085px;}
.x4e_c00250{left:292.169235px;}
.x1b_c00250{left:294.277935px;}
.xb_c00250{left:304.247235px;}
.x1c_c00250{left:305.841135px;}
.x5b_c00250{left:314.266035px;}
.x44_c00250{left:315.508485px;}
.x6b_c00250{left:316.552935px;}
.x2e_c00250{left:326.898435px;}
.x4f_c00250{left:334.660035px;}
.x1d_c00250{left:336.362835px;}
.x5c_c00250{left:338.134935px;}
.x5f_c00250{left:347.366685px;}
.x36_c00250{left:348.995235px;}
.xc_c00250{left:350.034735px;}
.x57_c00250{left:360.033735px;}
.x67_c00250{left:365.538135px;}
.x1e_c00250{left:370.859385px;}
.x50_c00250{left:380.170335px;}
.xd_c00250{left:381.269235px;}
.x37_c00250{left:393.515535px;}
.x3e_c00250{left:403.009635px;}
.xe_c00250{left:404.593635px;}
.x2f_c00250{left:405.628185px;}
.x1f_c00250{left:415.731135px;}
.xf_c00250{left:427.254735px;}
.x4a_c00250{left:437.535885px;}
.x30_c00250{left:438.753585px;}
.x38_c00250{left:448.247685px;}
.x73_c00250{left:449.851485px;}
.x20_c00250{left:459.667335px;}
.x61_c00250{left:460.706835px;}
.x45_c00250{left:470.686035px;}
.x62_c00250{left:479.992035px;}
.x10_c00250{left:481.897785px;}
.x68_c00250{left:491.753235px;}
.x21_c00250{left:493.332285px;}
.x6c_c00250{left:498.485235px;}
.x6d_c00250{left:502.801635px;}
.x28_c00250{left:504.539085px;}
.x63_c00250{left:515.434035px;}
.x70_c00250{left:517.918935px;}
.x77_c00250{left:525.640935px;}
.x39_c00250{left:526.809135px;}
.x22_c00250{left:527.883285px;}
.x58_c00250{left:537.580335px;}
.x31_c00250{left:548.737635px;}
.x23_c00250{left:560.018685px;}
.x29_c00250{left:570.676035px;}
.x51_c00250{left:581.412585px;}
.x24_c00250{left:591.188835px;}
.x59_c00250{left:592.342185px;}
.x11_c00250{left:603.746985px;}
.x3a_c00250{left:614.156835px;}
.x60_c00250{left:623.977635px;}
.x55_c00250{left:625.145835px;}
.x2a_c00250{left:626.165535px;}
.x46_c00250{left:635.332935px;}
.x3f_c00250{left:637.595085px;}
.x32_c00250{left:647.683185px;}
.x2b_c00250{left:649.034535px;}
.x3_c00250{left:651.890685px;}
.x5a_c00250{left:656.053635px;}
.x69_c00250{left:658.221735px;}
.x25_c00250{left:659.776035px;}
.x40_c00250{left:669.200835px;}
.x26_c00250{left:671.146185px;}
.x74_c00250{left:680.259135px;}
.x3b_c00250{left:681.848085px;}
.x33_c00250{left:691.302585px;}
.x12_c00250{left:692.916285px;}
.x56_c00250{left:696.445635px;}
.x4d_c00250{left:697.846485px;}
.x3c_c00250{left:703.232085px;}
.x2c_c00250{left:704.326035px;}
.x34_c00250{left:714.280485px;}
.x4b_c00250{left:724.616085px;}
.x78_c00250{left:742.445985px;}
.x79_c00250{left:748.237485px;}
@media print{
.v2_c00250{vertical-align:-6.336000pt;}
.v0_c00250{vertical-align:0.000000pt;}
.v1_c00250{vertical-align:45.601600pt;}
.ls20_c00250{letter-spacing:-2.710400pt;}
.lsc_c00250{letter-spacing:-2.377760pt;}
.ls11_c00250{letter-spacing:-2.343792pt;}
.ls19_c00250{letter-spacing:-2.160365pt;}
.ls1b_c00250{letter-spacing:-1.796256pt;}
.ls10_c00250{letter-spacing:-1.481005pt;}
.lsd_c00250{letter-spacing:-1.270403pt;}
.ls13_c00250{letter-spacing:-1.135411pt;}
.lse_c00250{letter-spacing:-0.822026pt;}
.ls1c_c00250{letter-spacing:-0.774470pt;}
.ls18_c00250{letter-spacing:-0.625011pt;}
.ls12_c00250{letter-spacing:-0.285331pt;}
.ls9_c00250{letter-spacing:0.000000pt;}
.ls6_c00250{letter-spacing:0.815232pt;}
.ls2_c00250{letter-spacing:1.107357pt;}
.lsa_c00250{letter-spacing:1.421239pt;}
.ls1e_c00250{letter-spacing:1.540000pt;}
.ls1f_c00250{letter-spacing:1.579776pt;}
.ls8_c00250{letter-spacing:1.854653pt;}
.ls1d_c00250{letter-spacing:2.015200pt;}
.ls5_c00250{letter-spacing:2.384554pt;}
.ls1a_c00250{letter-spacing:2.520426pt;}
.ls14_c00250{letter-spacing:3.203209pt;}
.ls17_c00250{letter-spacing:3.220800pt;}
.ls15_c00250{letter-spacing:3.238400pt;}
.ls1_c00250{letter-spacing:3.254134pt;}
.ls4_c00250{letter-spacing:3.328864pt;}
.lsf_c00250{letter-spacing:3.383213pt;}
.lsb_c00250{letter-spacing:3.396800pt;}
.ls21_c00250{letter-spacing:3.872000pt;}
.ls3_c00250{letter-spacing:8.921088pt;}
.ls7_c00250{letter-spacing:10.422720pt;}
.ls0_c00250{letter-spacing:18.128645pt;}
.ls16_c00250{letter-spacing:44.352176pt;}
.wsc_c00250{word-spacing:-18.838653pt;}
.ws2_c00250{word-spacing:-16.984000pt;}
.ws5_c00250{word-spacing:-16.698669pt;}
.ws9_c00250{word-spacing:-16.358989pt;}
.ws7_c00250{word-spacing:-16.016044pt;}
.ws3_c00250{word-spacing:-15.713597pt;}
.ws6_c00250{word-spacing:-0.153190pt;}
.wsd_c00250{word-spacing:0.000000pt;}
.wsb_c00250{word-spacing:0.407616pt;}
.ws1_c00250{word-spacing:1.562528pt;}
.ws4_c00250{word-spacing:2.106016pt;}
.ws8_c00250{word-spacing:2.853312pt;}
.ws0_c00250{word-spacing:3.260928pt;}
.wsa_c00250{word-spacing:3.885939pt;}
._13_c00250{margin-left:-9.035488pt;}
._15_c00250{margin-left:-5.639392pt;}
._1e_c00250{margin-left:-3.291904pt;}
._2_c00250{margin-left:-1.154912pt;}
._1a_c00250{width:0.985600pt;}
._e_c00250{width:2.860458pt;}
._17_c00250{width:3.763654pt;}
._c_c00250{width:5.774560pt;}
._0_c00250{width:7.269152pt;}
._a_c00250{width:8.492000pt;}
._10_c00250{width:10.060829pt;}
._f_c00250{width:12.025376pt;}
._5_c00250{width:13.179584pt;}
._14_c00250{width:14.369696pt;}
._d_c00250{width:18.342016pt;}
._4_c00250{width:20.245632pt;}
._7_c00250{width:21.535712pt;}
._1b_c00250{width:22.554752pt;}
._1_c00250{width:23.641728pt;}
._6_c00250{width:25.883616pt;}
._18_c00250{width:27.106464pt;}
._9_c00250{width:28.261376pt;}
._1d_c00250{width:29.341558pt;}
._b_c00250{width:30.413152pt;}
._11_c00250{width:32.303568pt;}
._8_c00250{width:35.190848pt;}
._16_c00250{width:37.432736pt;}
._19_c00250{width:41.528960pt;}
._3_c00250{width:43.878208pt;}
._12_c00250{width:45.040864pt;}
._1c_c00250{width:55.123200pt;}
.fs12_c00250{font-size:24.640000pt;}
.fs5_c00250{font-size:25.168000pt;}
.fs0_c00250{font-size:27.456000pt;}
.fs11_c00250{font-size:29.568000pt;}
.fse_c00250{font-size:30.800000pt;}
.fs3_c00250{font-size:35.200000pt;}
.fsd_c00250{font-size:40.304000pt;}
.fsa_c00250{font-size:44.352176pt;}
.fs6_c00250{font-size:45.056000pt;}
.fsc_c00250{font-size:55.440000pt;}
.fs10_c00250{font-size:58.256000pt;}
.fs4_c00250{font-size:60.544176pt;}
.fs7_c00250{font-size:64.064176pt;}
.fsb_c00250{font-size:64.416000pt;}
.fs8_c00250{font-size:64.768000pt;}
.fs2_c00250{font-size:67.936000pt;}
.fs9_c00250{font-size:70.400000pt;}
.fs1_c00250{font-size:72.512176pt;}
.fsf_c00250{font-size:77.440000pt;}
.y0_c00250{bottom:0.000000pt;}
.y25_c00250{bottom:66.766520pt;}
.y1_c00250{bottom:68.000000pt;}
.y27_c00250{bottom:81.339320pt;}
.y24_c00250{bottom:126.008120pt;}
.y26_c00250{bottom:134.561720pt;}
.y23_c00250{bottom:152.298120pt;}
.y21_c00250{bottom:183.027720pt;}
.y22_c00250{bottom:188.100920pt;}
.y20_c00250{bottom:237.834120pt;}
.y2_c00250{bottom:251.139720pt;}
.y1f_c00250{bottom:266.346120pt;}
.y1e_c00250{bottom:294.228920pt;}
.y1d_c00250{bottom:322.740920pt;}
.y1c_c00250{bottom:352.203320pt;}
.y1b_c00250{bottom:380.715320pt;}
.y1a_c00250{bottom:410.173320pt;}
.y19_c00250{bottom:439.640120pt;}
.y18_c00250{bottom:451.995320pt;}
.y17_c00250{bottom:468.464520pt;}
.y16_c00250{bottom:481.770120pt;}
.y15_c00250{bottom:497.293320pt;}
.y14_c00250{bottom:510.286520pt;}
.y13_c00250{bottom:525.809720pt;}
.y12_c00250{bottom:526.760120pt;}
.y11_c00250{bottom:542.278920pt;}
.y10_c00250{bottom:582.829320pt;}
.yf_c00250{bottom:582.830200pt;}
.ye_c00250{bottom:611.974920pt;}
.yd_c00250{bottom:642.075320pt;}
.yc_c00250{bottom:642.076200pt;}
.yb_c00250{bottom:671.220920pt;}
.ya_c00250{bottom:699.732920pt;}
.y9_c00250{bottom:728.240520pt;}
.y8_c00250{bottom:728.241400pt;}
.y7_c00250{bottom:757.386120pt;}
.y6_c00250{bottom:786.214920pt;}
.y5_c00250{bottom:800.158520pt;}
.y4_c00250{bottom:816.944520pt;}
.y3_c00250{bottom:958.554120pt;}
.h7_c00250{height:26.249438pt;}
.h2_c00250{height:28.635750pt;}
.hc_c00250{height:29.538549pt;}
.h14_c00250{height:30.838500pt;}
.h10_c00250{height:32.123438pt;}
.h5_c00250{height:36.712500pt;}
.hf_c00250{height:42.035813pt;}
.h8_c00250{height:44.220000pt;}
.h12_c00250{height:57.175078pt;}
.he_c00250{height:57.822188pt;}
.hd_c00250{height:63.220781pt;}
.h13_c00250{height:63.566250pt;}
.h9_c00250{height:64.564677pt;}
.ha_c00250{height:65.274000pt;}
.h4_c00250{height:66.675469pt;}
.h3_c00250{height:71.166735pt;}
.hb_c00250{height:73.425000pt;}
.h11_c00250{height:76.003125pt;}
.h6_c00250{height:108.747284pt;}
.h1_c00250{height:986.666667pt;}
.h0_c00250{height:1122.666667pt;}
.w1_c00250{width:668.000000pt;}
.w0_c00250{width:793.333333pt;}
.x0_c00250{left:0.000000pt;}
.x2_c00250{left:11.466787pt;}
.x75_c00250{left:52.184387pt;}
.x52_c00250{left:53.174387pt;}
.x14_c00250{left:54.234787pt;}
.x1_c00250{left:62.666667pt;}
.x47_c00250{left:73.885187pt;}
.x48_c00250{left:83.182387pt;}
.x4c_c00250{left:84.317587pt;}
.x41_c00250{left:92.435587pt;}
.x35_c00250{left:93.539987pt;}
.x15_c00250{left:94.485987pt;}
.x64_c00250{left:101.794387pt;}
.x4_c00250{left:103.048387pt;}
.x65_c00250{left:106.920387pt;}
.x16_c00250{left:113.520387pt;}
.x42_c00250{left:121.867187pt;}
.x17_c00250{left:123.503987pt;}
.x5d_c00250{left:132.488787pt;}
.x13_c00250{left:133.386387pt;}
.x53_c00250{left:141.222787pt;}
.x27_c00250{left:142.881587pt;}
.x3d_c00250{left:152.288787pt;}
.x43_c00250{left:153.397587pt;}
.x5_c00250{left:162.303187pt;}
.x71_c00250{left:164.432787pt;}
.x6_c00250{left:172.383587pt;}
.x18_c00250{left:182.239587pt;}
.x19_c00250{left:191.241987pt;}
.x5e_c00250{left:201.357587pt;}
.x7_c00250{left:202.514787pt;}
.x72_c00250{left:204.446387pt;}
.x49_c00250{left:208.067587pt;}
.x6a_c00250{left:210.601987pt;}
.x8_c00250{left:211.767987pt;}
.x6e_c00250{left:212.955987pt;}
.x9_c00250{left:222.279587pt;}
.x76_c00250{left:226.763187pt;}
.x6f_c00250{left:230.560387pt;}
.x1a_c00250{left:231.484387pt;}
.x54_c00250{left:241.098387pt;}
.xa_c00250{left:242.083987pt;}
.x2d_c00250{left:251.323987pt;}
.x66_c00250{left:252.239187pt;}
.x4e_c00250{left:259.705987pt;}
.x1b_c00250{left:261.580387pt;}
.xb_c00250{left:270.441987pt;}
.x1c_c00250{left:271.858787pt;}
.x5b_c00250{left:279.347587pt;}
.x44_c00250{left:280.451987pt;}
.x6b_c00250{left:281.380387pt;}
.x2e_c00250{left:290.576387pt;}
.x4f_c00250{left:297.475587pt;}
.x1d_c00250{left:298.989187pt;}
.x5c_c00250{left:300.564387pt;}
.x5f_c00250{left:308.770387pt;}
.x36_c00250{left:310.217987pt;}
.xc_c00250{left:311.141987pt;}
.x57_c00250{left:320.029987pt;}
.x67_c00250{left:324.922787pt;}
.x1e_c00250{left:329.652787pt;}
.x50_c00250{left:337.929187pt;}
.xd_c00250{left:338.905987pt;}
.x37_c00250{left:349.791587pt;}
.x3e_c00250{left:358.230787pt;}
.xe_c00250{left:359.638787pt;}
.x2f_c00250{left:360.558387pt;}
.x1f_c00250{left:369.538787pt;}
.xf_c00250{left:379.781987pt;}
.x4a_c00250{left:388.920787pt;}
.x30_c00250{left:390.003187pt;}
.x38_c00250{left:398.442387pt;}
.x73_c00250{left:399.867987pt;}
.x20_c00250{left:408.593187pt;}
.x61_c00250{left:409.517187pt;}
.x45_c00250{left:418.387587pt;}
.x62_c00250{left:426.659587pt;}
.x10_c00250{left:428.353587pt;}
.x68_c00250{left:437.113987pt;}
.x21_c00250{left:438.517587pt;}
.x6c_c00250{left:443.097987pt;}
.x6d_c00250{left:446.934787pt;}
.x28_c00250{left:448.479187pt;}
.x63_c00250{left:458.163587pt;}
.x70_c00250{left:460.372387pt;}
.x77_c00250{left:467.236387pt;}
.x39_c00250{left:468.274787pt;}
.x22_c00250{left:469.229587pt;}
.x58_c00250{left:477.849187pt;}
.x31_c00250{left:487.766787pt;}
.x23_c00250{left:497.794387pt;}
.x29_c00250{left:507.267587pt;}
.x51_c00250{left:516.811187pt;}
.x24_c00250{left:525.501187pt;}
.x59_c00250{left:526.526387pt;}
.x11_c00250{left:536.663987pt;}
.x3a_c00250{left:545.917187pt;}
.x60_c00250{left:554.646787pt;}
.x55_c00250{left:555.685187pt;}
.x2a_c00250{left:556.591587pt;}
.x46_c00250{left:564.740387pt;}
.x3f_c00250{left:566.751187pt;}
.x32_c00250{left:575.718387pt;}
.x2b_c00250{left:576.919587pt;}
.x3_c00250{left:579.458387pt;}
.x5a_c00250{left:583.158787pt;}
.x69_c00250{left:585.085987pt;}
.x25_c00250{left:586.467587pt;}
.x40_c00250{left:594.845187pt;}
.x26_c00250{left:596.574387pt;}
.x74_c00250{left:604.674787pt;}
.x3b_c00250{left:606.087187pt;}
.x33_c00250{left:614.491187pt;}
.x12_c00250{left:615.925587pt;}
.x56_c00250{left:619.062787pt;}
.x4d_c00250{left:620.307987pt;}
.x3c_c00250{left:625.095187pt;}
.x2c_c00250{left:626.067587pt;}
.x34_c00250{left:634.915987pt;}
.x4b_c00250{left:644.103187pt;}
.x78_c00250{left:659.951987pt;}
.x79_c00250{left:665.099987pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f3ba41b5f45d065746971fa0.woff2')format("woff");}.ff1_c00251{font-family:ff1_c00251;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00251;src:url('chunks/assets/font_fabeb2c1be2bf14d3bdb8026.woff2')format("woff");}.ff2_c00251{font-family:ff2_c00251;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00251;src:url('chunks/assets/font_ce9681947359caa2083f7ef9.woff2')format("woff");}.ff3_c00251{font-family:ff3_c00251;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m40_c00251{transform:matrix(0.037501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.037501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.037501,0.000000,0.000000,0.250000,0,0);}
.m41_c00251{transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00251{transform:matrix(0.078572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078572,0.000000,0.000000,0.250000,0,0);}
.m3d_c00251{transform:matrix(0.081251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081251,0.000000,0.000000,0.250000,0,0);}
.m4a_c00251{transform:matrix(0.103572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103572,0.000000,0.000000,0.250000,0,0);}
.mc5_c00251{transform:matrix(0.108077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108077,0.000000,0.000000,0.250000,0,0);}
.mab_c00251{transform:matrix(0.135714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135714,0.000000,0.000000,0.250000,0,0);}
.m9f_c00251{transform:matrix(0.137066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137066,0.000000,0.000000,0.250000,0,0);}
.m87_c00251{transform:matrix(0.148570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148570,0.000000,0.000000,0.250000,0,0);}
.ma9_c00251{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00251{transform:matrix(0.167856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167856,0.000000,0.000000,0.250000,0,0);}
.mc4_c00251{transform:matrix(0.171429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171429,0.000000,0.000000,0.250000,0,0);}
.m4d_c00251{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m54_c00251{transform:matrix(0.175005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175005,0.000000,0.000000,0.250000,0,0);}
.m3a_c00251{transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);}
.m88_c00251{transform:matrix(0.185420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185420,0.000000,0.000000,0.250000,0,0);}
.maa_c00251{transform:matrix(0.189285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189285,0.000000,0.000000,0.250000,0,0);}
.m3e_c00251{transform:matrix(0.190625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190625,0.000000,0.000000,0.250000,0,0);}
.mce_c00251{transform:matrix(0.190712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190712,0.000000,0.000000,0.250000,0,0);}
.m1b_c00251{transform:matrix(0.192542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192542,0.000000,0.000000,0.250000,0,0);}
.m4c_c00251{transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);}
.m4b_c00251{transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);}
.mc0_c00251{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00251{transform:matrix(0.204762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204762,0.000000,0.000000,0.250000,0,0);}
.m9e_c00251{transform:matrix(0.205747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205747,0.000000,0.000000,0.250000,0,0);}
.m42_c00251{transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);}
.m3b_c00251{transform:matrix(0.225893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225893,0.000000,0.000000,0.250000,0,0);}
.mb2_c00251{transform:matrix(0.230990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230990,0.000000,0.000000,0.250000,0,0);}
.m3f_c00251{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m61_c00251{transform:matrix(0.238484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238484,0.000000,0.000000,0.250000,0,0);}
.m1a_c00251{transform:matrix(0.243113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243113,0.000000,0.000000,0.250000,0,0);}
.m9d_c00251{transform:matrix(0.243769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243769,0.000000,0.000000,0.250000,0,0);}
.m2_c00251{transform:matrix(0.245691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245691,0.000000,0.000000,0.250000,0,0);}
.m34_c00251{transform:matrix(0.248056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248056,0.000000,0.000000,0.250000,0,0);}
.m0_c00251{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00251{transform:matrix(0.253247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253247,0.000000,0.000000,0.250000,0,0);}
.m38_c00251{transform:matrix(0.255999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255999,0.000000,0.000000,0.250000,0,0);}
.mc9_c00251{transform:matrix(0.257181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257181,0.000000,0.000000,0.250000,0,0);}
.mc7_c00251{transform:matrix(0.257677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257677,0.000000,0.000000,0.250000,0,0);}
.m30_c00251{transform:matrix(0.259097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259097,0.000000,0.000000,0.250000,0,0);}
.m29_c00251{transform:matrix(0.259305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259305,0.000000,0.000000,0.250000,0,0);}
.m6c_c00251{transform:matrix(0.262316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262316,0.000000,0.000000,0.250000,0,0);}
.m74_c00251{transform:matrix(0.266075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266075,0.000000,0.000000,0.250000,0,0);}
.m80_c00251{transform:matrix(0.266632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266632,0.000000,0.000000,0.250000,0,0);}
.m6e_c00251{transform:matrix(0.269016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269016,0.000000,0.000000,0.250000,0,0);}
.m5d_c00251{transform:matrix(0.269099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269099,0.000000,0.000000,0.250000,0,0);}
.m1f_c00251{transform:matrix(0.269122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269122,0.000000,0.000000,0.250000,0,0);}
.mba_c00251{transform:matrix(0.270153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270153,0.000000,0.000000,0.250000,0,0);}
.m13_c00251{transform:matrix(0.270827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270827,0.000000,0.000000,0.250000,0,0);}
.m2c_c00251{transform:matrix(0.271460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271460,0.000000,0.000000,0.250000,0,0);}
.m53_c00251{transform:matrix(0.271467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271467,0.000000,0.000000,0.250000,0,0);}
.m1_c00251{transform:matrix(0.271634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271634,0.000000,0.000000,0.250000,0,0);}
.m83_c00251{transform:matrix(0.272406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272406,0.000000,0.000000,0.250000,0,0);}
.m56_c00251{transform:matrix(0.273223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273223,0.000000,0.000000,0.250000,0,0);}
.m32_c00251{transform:matrix(0.273819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273819,0.000000,0.000000,0.250000,0,0);}
.m15_c00251{transform:matrix(0.273904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273904,0.000000,0.000000,0.250000,0,0);}
.m48_c00251{transform:matrix(0.275579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275579,0.000000,0.000000,0.250000,0,0);}
.m9c_c00251{transform:matrix(0.276225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276225,0.000000,0.000000,0.250000,0,0);}
.m46_c00251{transform:matrix(0.276294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276294,0.000000,0.000000,0.250000,0,0);}
.m7a_c00251{transform:matrix(0.276535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276535,0.000000,0.000000,0.250000,0,0);}
.m58_c00251{transform:matrix(0.276946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276946,0.000000,0.000000,0.250000,0,0);}
.m68_c00251{transform:matrix(0.279271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279271,0.000000,0.000000,0.250000,0,0);}
.md_c00251{transform:matrix(0.279337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279337,0.000000,0.000000,0.250000,0,0);}
.m72_c00251{transform:matrix(0.279672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279672,0.000000,0.000000,0.250000,0,0);}
.m8f_c00251{transform:matrix(0.279878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279878,0.000000,0.000000,0.250000,0,0);}
.m45_c00251{transform:matrix(0.280330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280330,0.000000,0.000000,0.250000,0,0);}
.m6a_c00251{transform:matrix(0.280658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280658,0.000000,0.000000,0.250000,0,0);}
.m96_c00251{transform:matrix(0.280741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280741,0.000000,0.000000,0.250000,0,0);}
.m2f_c00251{transform:matrix(0.281038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281038,0.000000,0.000000,0.250000,0,0);}
.m37_c00251{transform:matrix(0.281656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281656,0.000000,0.000000,0.250000,0,0);}
.ma6_c00251{transform:matrix(0.281964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281964,0.000000,0.000000,0.250000,0,0);}
.ma4_c00251{transform:matrix(0.284987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284987,0.000000,0.000000,0.250000,0,0);}
.m39_c00251{transform:matrix(0.285135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285135,0.000000,0.000000,0.250000,0,0);}
.m23_c00251{transform:matrix(0.285821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285821,0.000000,0.000000,0.250000,0,0);}
.m91_c00251{transform:matrix(0.286001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286001,0.000000,0.000000,0.250000,0,0);}
.m12_c00251{transform:matrix(0.286194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286194,0.000000,0.000000,0.250000,0,0);}
.m8d_c00251{transform:matrix(0.286532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286532,0.000000,0.000000,0.250000,0,0);}
.m65_c00251{transform:matrix(0.286554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286554,0.000000,0.000000,0.250000,0,0);}
.m8a_c00251{transform:matrix(0.287503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287503,0.000000,0.000000,0.250000,0,0);}
.m4e_c00251{transform:matrix(0.288095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288095,0.000000,0.000000,0.250000,0,0);}
.m18_c00251{transform:matrix(0.288388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288388,0.000000,0.000000,0.250000,0,0);}
.m82_c00251{transform:matrix(0.288407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288407,0.000000,0.000000,0.250000,0,0);}
.maf_c00251{transform:matrix(0.288419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288419,0.000000,0.000000,0.250000,0,0);}
.m90_c00251{transform:matrix(0.288624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288624,0.000000,0.000000,0.250000,0,0);}
.m76_c00251{transform:matrix(0.288667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288667,0.000000,0.000000,0.250000,0,0);}
.m47_c00251{transform:matrix(0.288877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288877,0.000000,0.000000,0.250000,0,0);}
.m94_c00251{transform:matrix(0.290378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290378,0.000000,0.000000,0.250000,0,0);}
.m85_c00251{transform:matrix(0.290590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290590,0.000000,0.000000,0.250000,0,0);}
.m22_c00251{transform:matrix(0.291649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291649,0.000000,0.000000,0.250000,0,0);}
.m5c_c00251{transform:matrix(0.291745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291745,0.000000,0.000000,0.250000,0,0);}
.m2b_c00251{transform:matrix(0.292090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292090,0.000000,0.000000,0.250000,0,0);}
.mb6_c00251{transform:matrix(0.293425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293425,0.000000,0.000000,0.250000,0,0);}
.m8c_c00251{transform:matrix(0.293917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293917,0.000000,0.000000,0.250000,0,0);}
.m57_c00251{transform:matrix(0.293935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293935,0.000000,0.000000,0.250000,0,0);}
.mcc_c00251{transform:matrix(0.294992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294992,0.000000,0.000000,0.250000,0,0);}
.m59_c00251{transform:matrix(0.295621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295621,0.000000,0.000000,0.250000,0,0);}
.mad_c00251{transform:matrix(0.296386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296386,0.000000,0.000000,0.250000,0,0);}
.ma3_c00251{transform:matrix(0.297235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297235,0.000000,0.000000,0.250000,0,0);}
.m27_c00251{transform:matrix(0.297611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297611,0.000000,0.000000,0.250000,0,0);}
.mbf_c00251{transform:matrix(0.297638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297638,0.000000,0.000000,0.250000,0,0);}
.m62_c00251{transform:matrix(0.298866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298866,0.000000,0.000000,0.250000,0,0);}
.m1c_c00251{transform:matrix(0.299069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299069,0.000000,0.000000,0.250000,0,0);}
.mc6_c00251{transform:matrix(0.299177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299177,0.000000,0.000000,0.250000,0,0);}
.m64_c00251{transform:matrix(0.300458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300458,0.000000,0.000000,0.250000,0,0);}
.m19_c00251{transform:matrix(0.300565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300565,0.000000,0.000000,0.250000,0,0);}
.m4_c00251{transform:matrix(0.300867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300867,0.000000,0.000000,0.250000,0,0);}
.m7b_c00251{transform:matrix(0.301023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301023,0.000000,0.000000,0.250000,0,0);}
.m73_c00251{transform:matrix(0.301268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301268,0.000000,0.000000,0.250000,0,0);}
.m60_c00251{transform:matrix(0.301958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301958,0.000000,0.000000,0.250000,0,0);}
.m75_c00251{transform:matrix(0.302080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302080,0.000000,0.000000,0.250000,0,0);}
.mb3_c00251{transform:matrix(0.302908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302908,0.000000,0.000000,0.250000,0,0);}
.m9b_c00251{transform:matrix(0.303125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303125,0.000000,0.000000,0.250000,0,0);}
.m6_c00251{transform:matrix(0.303130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303130,0.000000,0.000000,0.250000,0,0);}
.m7d_c00251{transform:matrix(0.303759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303759,0.000000,0.000000,0.250000,0,0);}
.mf_c00251{transform:matrix(0.304363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304363,0.000000,0.000000,0.250000,0,0);}
.m89_c00251{transform:matrix(0.304406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304406,0.000000,0.000000,0.250000,0,0);}
.m3c_c00251{transform:matrix(0.304792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304792,0.000000,0.000000,0.250000,0,0);}
.mb_c00251{transform:matrix(0.305131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305131,0.000000,0.000000,0.250000,0,0);}
.me_c00251{transform:matrix(0.305155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305155,0.000000,0.000000,0.250000,0,0);}
.m6d_c00251{transform:matrix(0.305458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305458,0.000000,0.000000,0.250000,0,0);}
.m5e_c00251{transform:matrix(0.305595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305595,0.000000,0.000000,0.250000,0,0);}
.m24_c00251{transform:matrix(0.305612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305612,0.000000,0.000000,0.250000,0,0);}
.m5f_c00251{transform:matrix(0.306299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306299,0.000000,0.000000,0.250000,0,0);}
.ma2_c00251{transform:matrix(0.306623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306623,0.000000,0.000000,0.250000,0,0);}
.mb1_c00251{transform:matrix(0.307103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307103,0.000000,0.000000,0.250000,0,0);}
.m49_c00251{transform:matrix(0.307691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307691,0.000000,0.000000,0.250000,0,0);}
.mbd_c00251{transform:matrix(0.308218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308218,0.000000,0.000000,0.250000,0,0);}
.mcb_c00251{transform:matrix(0.308595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308595,0.000000,0.000000,0.250000,0,0);}
.m21_c00251{transform:matrix(0.309102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309102,0.000000,0.000000,0.250000,0,0);}
.m86_c00251{transform:matrix(0.309265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309265,0.000000,0.000000,0.250000,0,0);}
.m10_c00251{transform:matrix(0.309329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309329,0.000000,0.000000,0.250000,0,0);}
.m7f_c00251{transform:matrix(0.309542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309542,0.000000,0.000000,0.250000,0,0);}
.m43_c00251{transform:matrix(0.311052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311052,0.000000,0.000000,0.250000,0,0);}
.m98_c00251{transform:matrix(0.311867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311867,0.000000,0.000000,0.250000,0,0);}
.m11_c00251{transform:matrix(0.312146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312146,0.000000,0.000000,0.250000,0,0);}
.m5_c00251{transform:matrix(0.314344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314344,0.000000,0.000000,0.250000,0,0);}
.m52_c00251{transform:matrix(0.315056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315056,0.000000,0.000000,0.250000,0,0);}
.m84_c00251{transform:matrix(0.316021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316021,0.000000,0.000000,0.250000,0,0);}
.m2a_c00251{transform:matrix(0.317128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317128,0.000000,0.000000,0.250000,0,0);}
.m67_c00251{transform:matrix(0.317184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317184,0.000000,0.000000,0.250000,0,0);}
.m66_c00251{transform:matrix(0.317284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317284,0.000000,0.000000,0.250000,0,0);}
.mbe_c00251{transform:matrix(0.317395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317395,0.000000,0.000000,0.250000,0,0);}
.ma0_c00251{transform:matrix(0.317490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317490,0.000000,0.000000,0.250000,0,0);}
.m71_c00251{transform:matrix(0.317903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317903,0.000000,0.000000,0.250000,0,0);}
.mbc_c00251{transform:matrix(0.318639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318639,0.000000,0.000000,0.250000,0,0);}
.m8e_c00251{transform:matrix(0.318773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318773,0.000000,0.000000,0.250000,0,0);}
.ma_c00251{transform:matrix(0.319757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319757,0.000000,0.000000,0.250000,0,0);}
.m81_c00251{transform:matrix(0.319782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319782,0.000000,0.000000,0.250000,0,0);}
.m2d_c00251{transform:matrix(0.320085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320085,0.000000,0.000000,0.250000,0,0);}
.m55_c00251{transform:matrix(0.321063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321063,0.000000,0.000000,0.250000,0,0);}
.m14_c00251{transform:matrix(0.321469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321469,0.000000,0.000000,0.250000,0,0);}
.m69_c00251{transform:matrix(0.322255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322255,0.000000,0.000000,0.250000,0,0);}
.m7c_c00251{transform:matrix(0.322543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322543,0.000000,0.000000,0.250000,0,0);}
.m6f_c00251{transform:matrix(0.322806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322806,0.000000,0.000000,0.250000,0,0);}
.m92_c00251{transform:matrix(0.322874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322874,0.000000,0.000000,0.250000,0,0);}
.m7e_c00251{transform:matrix(0.323572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323572,0.000000,0.000000,0.250000,0,0);}
.mb7_c00251{transform:matrix(0.323786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323786,0.000000,0.000000,0.250000,0,0);}
.m99_c00251{transform:matrix(0.324944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324944,0.000000,0.000000,0.250000,0,0);}
.m26_c00251{transform:matrix(0.327004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327004,0.000000,0.000000,0.250000,0,0);}
.m17_c00251{transform:matrix(0.327423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327423,0.000000,0.000000,0.250000,0,0);}
.m2e_c00251{transform:matrix(0.328071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328071,0.000000,0.000000,0.250000,0,0);}
.m35_c00251{transform:matrix(0.328094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328094,0.000000,0.000000,0.250000,0,0);}
.mb4_c00251{transform:matrix(0.329263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329263,0.000000,0.000000,0.250000,0,0);}
.m36_c00251{transform:matrix(0.330657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330657,0.000000,0.000000,0.250000,0,0);}
.m28_c00251{transform:matrix(0.331661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331661,0.000000,0.000000,0.250000,0,0);}
.m6b_c00251{transform:matrix(0.331785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331785,0.000000,0.000000,0.250000,0,0);}
.m33_c00251{transform:matrix(0.332227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332227,0.000000,0.000000,0.250000,0,0);}
.mac_c00251{transform:matrix(0.332379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332379,0.000000,0.000000,0.250000,0,0);}
.mc_c00251{transform:matrix(0.333923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333923,0.000000,0.000000,0.250000,0,0);}
.mb0_c00251{transform:matrix(0.334773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334773,0.000000,0.000000,0.250000,0,0);}
.ma7_c00251{transform:matrix(0.335636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335636,0.000000,0.000000,0.250000,0,0);}
.m8b_c00251{transform:matrix(0.336513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336513,0.000000,0.000000,0.250000,0,0);}
.m1d_c00251{transform:matrix(0.336641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336641,0.000000,0.000000,0.250000,0,0);}
.m5b_c00251{transform:matrix(0.336728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336728,0.000000,0.000000,0.250000,0,0);}
.m16_c00251{transform:matrix(0.336819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336819,0.000000,0.000000,0.250000,0,0);}
.m5a_c00251{transform:matrix(0.340192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340192,0.000000,0.000000,0.250000,0,0);}
.m95_c00251{transform:matrix(0.340561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340561,0.000000,0.000000,0.250000,0,0);}
.m7_c00251{transform:matrix(0.340736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340736,0.000000,0.000000,0.250000,0,0);}
.m8_c00251{transform:matrix(0.341274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341274,0.000000,0.000000,0.250000,0,0);}
.m93_c00251{transform:matrix(0.342744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342744,0.000000,0.000000,0.250000,0,0);}
.mca_c00251{transform:matrix(0.343754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343754,0.000000,0.000000,0.250000,0,0);}
.m70_c00251{transform:matrix(0.345593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345593,0.000000,0.000000,0.250000,0,0);}
.m63_c00251{transform:matrix(0.346285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346285,0.000000,0.000000,0.250000,0,0);}
.m31_c00251{transform:matrix(0.347155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347155,0.000000,0.000000,0.250000,0,0);}
.mbb_c00251{transform:matrix(0.348976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348976,0.000000,0.000000,0.250000,0,0);}
.m9_c00251{transform:matrix(0.351097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351097,0.000000,0.000000,0.250000,0,0);}
.mae_c00251{transform:matrix(0.351514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351514,0.000000,0.000000,0.250000,0,0);}
.m3_c00251{transform:matrix(0.353088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353088,0.000000,0.000000,0.250000,0,0);}
.ma8_c00251{transform:matrix(0.353510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353510,0.000000,0.000000,0.250000,0,0);}
.mb9_c00251{transform:matrix(0.354914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354914,0.000000,0.000000,0.250000,0,0);}
.m51_c00251{transform:matrix(0.354919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354919,0.000000,0.000000,0.250000,0,0);}
.mb8_c00251{transform:matrix(0.354978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354978,0.000000,0.000000,0.250000,0,0);}
.m77_c00251{transform:matrix(0.355308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355308,0.000000,0.000000,0.250000,0,0);}
.m50_c00251{transform:matrix(0.359282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359282,0.000000,0.000000,0.250000,0,0);}
.m4f_c00251{transform:matrix(0.359336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359336,0.000000,0.000000,0.250000,0,0);}
.m78_c00251{transform:matrix(0.362086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362086,0.000000,0.000000,0.250000,0,0);}
.m25_c00251{transform:matrix(0.365477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365477,0.000000,0.000000,0.250000,0,0);}
.m9a_c00251{transform:matrix(0.371671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371671,0.000000,0.000000,0.250000,0,0);}
.m79_c00251{transform:matrix(0.376977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376977,0.000000,0.000000,0.250000,0,0);}
.m97_c00251{transform:matrix(0.383697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383697,0.000000,0.000000,0.250000,0,0);}
.ma1_c00251{transform:matrix(0.385420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385420,0.000000,0.000000,0.250000,0,0);}
.ma5_c00251{transform:matrix(0.390255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390255,0.000000,0.000000,0.250000,0,0);}
.mc8_c00251{transform:matrix(0.396277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396277,0.000000,0.000000,0.250000,0,0);}
.mcd_c00251{transform:matrix(0.428429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428429,0.000000,0.000000,0.250000,0,0);}
.m44_c00251{transform:matrix(0.436760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436760,0.000000,0.000000,0.250000,0,0);}
.m20_c00251{transform:matrix(0.444701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444701,0.000000,0.000000,0.250000,0,0);}
.mb5_c00251{transform:matrix(0.499996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499996,0.000000,0.000000,0.250000,0,0);}
.v0_c00251{vertical-align:0.000000px;}
.ls2_c00251{letter-spacing:-2.993767px;}
.ls5_c00251{letter-spacing:-2.668050px;}
.ls4_c00251{letter-spacing:-2.439360px;}
.lsc_c00251{letter-spacing:-2.431737px;}
.ls8_c00251{letter-spacing:-2.233539px;}
.lse_c00251{letter-spacing:-2.012472px;}
.ls6_c00251{letter-spacing:-1.730421px;}
.ls11_c00251{letter-spacing:-0.922383px;}
.ls0_c00251{letter-spacing:0.000000px;}
.lsf_c00251{letter-spacing:1.173942px;}
.lsd_c00251{letter-spacing:3.232152px;}
.lsb_c00251{letter-spacing:3.369366px;}
.ls12_c00251{letter-spacing:3.468465px;}
.ls7_c00251{letter-spacing:3.636171px;}
.ls3_c00251{letter-spacing:3.811500px;}
.ls10_c00251{letter-spacing:4.039200px;}
.ls1_c00251{letter-spacing:4.276810px;}
.ls13_c00251{letter-spacing:11.404998px;}
.ls9_c00251{letter-spacing:49.896198px;}
.lsa_c00251{letter-spacing:57.024198px;}
.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;}
}
.ws2_c00251{word-spacing:-19.057500px;}
.ws3_c00251{word-spacing:-16.625763px;}
.ws1_c00251{word-spacing:-4.192650px;}
.ws7_c00251{word-spacing:0.000000px;}
.ws0_c00251{word-spacing:2.363130px;}
.ws5_c00251{word-spacing:4.878720px;}
.ws6_c00251{word-spacing:5.183640px;}
.ws4_c00251{word-spacing:6.174630px;}
._e_c00251{margin-left:-15.627150px;}
._c_c00251{margin-left:-10.977120px;}
._b_c00251{margin-left:-6.327090px;}
._d_c00251{margin-left:-4.650030px;}
._6_c00251{width:2.668050px;}
._8_c00251{width:4.650030px;}
._a_c00251{width:6.098400px;}
._4_c00251{width:7.623000px;}
._f_c00251{width:9.223830px;}
._5_c00251{width:10.291050px;}
._0_c00251{width:12.883860px;}
._10_c00251{width:15.932070px;}
._3_c00251{width:20.429640px;}
._12_c00251{width:22.869000px;}
._7_c00251{width:24.546060px;}
._14_c00251{width:30.659706px;}
._9_c00251{width:32.092830px;}
._2_c00251{width:33.922350px;}
._11_c00251{width:35.980560px;}
._17_c00251{width:37.772460px;}
._1_c00251{width:39.944520px;}
._16_c00251{width:43.374870px;}
._15_c00251{width:46.573560px;}
._13_c00251{width:48.101130px;}
.fc0_c00251{color:transparent;}
.fs10_c00251{font-size:11.404998px;}
.fs11_c00251{font-size:20.790000px;}
.fs8_c00251{font-size:22.176000px;}
.fs0_c00251{font-size:22.572000px;}
.fse_c00251{font-size:27.720000px;}
.fs2_c00251{font-size:28.314000px;}
.fs6_c00251{font-size:39.204000px;}
.fsa_c00251{font-size:45.936198px;}
.fs5_c00251{font-size:49.896198px;}
.fs7_c00251{font-size:57.024198px;}
.fsf_c00251{font-size:66.330000px;}
.fs4_c00251{font-size:67.320000px;}
.fsb_c00251{font-size:75.240000px;}
.fs3_c00251{font-size:76.230000px;}
.fsc_c00251{font-size:80.784000px;}
.fs9_c00251{font-size:81.378000px;}
.fs1_c00251{font-size:85.536198px;}
.fsd_c00251{font-size:93.456198px;}
.y0_c00251{bottom:0.000000px;}
.y24_c00251{bottom:46.595385px;}
.y1_c00251{bottom:76.500000px;}
.y25_c00251{bottom:96.139935px;}
.y23_c00251{bottom:139.259385px;}
.y22_c00251{bottom:168.845535px;}
.y21_c00251{bottom:233.353935px;}
.y20_c00251{bottom:236.912985px;}
.y1f_c00251{bottom:268.988985px;}
.y1e_c00251{bottom:301.421385px;}
.y1d_c00251{bottom:333.497385px;}
.y1c_c00251{bottom:347.401935px;}
.y1b_c00251{bottom:365.934735px;}
.y1a_c00251{bottom:398.723535px;}
.y19_c00251{bottom:431.868735px;}
.y18_c00251{bottom:452.183535px;}
.y2_c00251{bottom:474.280335px;}
.y17_c00251{bottom:496.020735px;}
.y16_c00251{bottom:529.160985px;}
.y15_c00251{bottom:561.593385px;}
.y14_c00251{bottom:595.099935px;}
.y13_c00251{bottom:608.994585px;}
.y12_c00251{bottom:626.463135px;}
.y11_c00251{bottom:635.373135px;}
.y10_c00251{bottom:647.490735px;}
.yf_c00251{bottom:659.251935px;}
.ye_c00251{bottom:690.966585px;}
.yd_c00251{bottom:710.212185px;}
.yc_c00251{bottom:723.755385px;}
.yb_c00251{bottom:744.426585px;}
.ya_c00251{bottom:756.187785px;}
.y9_c00251{bottom:791.471385px;}
.y8_c00251{bottom:857.766735px;}
.y7_c00251{bottom:891.619785px;}
.y6_c00251{bottom:925.477785px;}
.y5_c00251{bottom:955.058985px;}
.y4_c00251{bottom:1075.522185px;}
.y3_c00251{bottom:1097.972910px;}
.h11_c00251{height:7.595729px;}
.h12_c00251{height:21.683320px;}
.ha_c00251{height:23.128875px;}
.h2_c00251{height:23.541891px;}
.h10_c00251{height:28.911094px;}
.h4_c00251{height:29.530617px;}
.h7_c00251{height:33.230868px;}
.h9_c00251{height:37.978116px;}
.h8_c00251{height:38.476582px;}
.hc_c00251{height:47.910019px;}
.h6_c00251{height:66.070898px;}
.h5_c00251{height:74.815576px;}
.hd_c00251{height:78.472969px;}
.he_c00251{height:79.285078px;}
.h3_c00251{height:83.949101px;}
.hb_c00251{height:84.874711px;}
.hf_c00251{height:91.722147px;}
.h1_c00251{height:1110.000000px;}
.h0_c00251{height:1263.000000px;}
.w1_c00251{width:751.500000px;}
.w0_c00251{width:892.500000px;}
.x0_c00251{left:0.000000px;}
.x2_c00251{left:49.683585px;}
.x1_c00251{left:70.500000px;}
.x1f_c00251{left:72.577335px;}
.x7_c00251{left:73.819785px;}
.x3f_c00251{left:75.631485px;}
.x5d_c00251{left:95.758185px;}
.x8_c00251{left:106.514535px;}
.x36_c00251{left:108.044085px;}
.x67_c00251{left:119.473635px;}
.x29_c00251{left:127.779735px;}
.x5e_c00251{left:129.809235px;}
.x40_c00251{left:140.501235px;}
.x37_c00251{left:141.565485px;}
.x49_c00251{left:151.549635px;}
.x6f_c00251{left:154.460235px;}
.x4e_c00251{left:163.305885px;}
.x55_c00251{left:164.518635px;}
.x58_c00251{left:173.042535px;}
.x2a_c00251{left:174.329535px;}
.x20_c00251{left:184.635435px;}
.x70_c00251{left:185.971935px;}
.x41_c00251{left:187.753935px;}
.x9_c00251{left:195.738285px;}
.x6c_c00251{left:196.852035px;}
.x11_c00251{left:198.129135px;}
.x21_c00251{left:206.059035px;}
.x4c_c00251{left:207.162885px;}
.x22_c00251{left:208.930035px;}
.x56_c00251{left:217.835085px;}
.x71_c00251{left:219.112185px;}
.x23_c00251{left:228.888435px;}
.x38_c00251{left:232.269285px;}
.x72_c00251{left:236.575785px;}
.x12_c00251{left:239.377485px;}
.x42_c00251{left:240.501135px;}
.x6b_c00251{left:241.926735px;}
.x68_c00251{left:245.079885px;}
.x24_c00251{left:251.341635px;}
.x5f_c00251{left:252.727635px;}
.x13_c00251{left:262.033635px;}
.x39_c00251{left:263.384985px;}
.x43_c00251{left:266.874735px;}
.x44_c00251{left:270.438735px;}
.x14_c00251{left:272.532585px;}
.x4a_c00251{left:274.002735px;}
.x73_c00251{left:275.423385px;}
.x25_c00251{left:284.377935px;}
.x62_c00251{left:285.897585px;}
.x26_c00251{left:295.475835px;}
.x69_c00251{left:297.292485px;}
.x15_c00251{left:305.954985px;}
.x45_c00251{left:307.113285px;}
.x6_c00251{left:313.384935px;}
.xa_c00251{left:317.963685px;}
.x63_c00251{left:319.745685px;}
.x74_c00251{left:323.403735px;}
.x75_c00251{left:324.908535px;}
.x32_c00251{left:340.436685px;}
.xb_c00251{left:351.133635px;}
.x59_c00251{left:352.509735px;}
.x27_c00251{left:362.815635px;}
.xc_c00251{left:373.205685px;}
.x53_c00251{left:374.255085px;}
.x46_c00251{left:384.541185px;}
.x16_c00251{left:386.234085px;}
.x2b_c00251{left:395.228235px;}
.x60_c00251{left:397.104285px;}
.x33_c00251{left:405.148035px;}
.x3a_c00251{left:406.717185px;}
.x2c_c00251{left:417.775485px;}
.xd_c00251{left:418.844685px;}
.x17_c00251{left:420.676185px;}
.x64_c00251{left:429.219885px;}
.x65_c00251{left:437.224035px;}
.xe_c00251{left:438.961485px;}
.x34_c00251{left:440.134635px;}
.x3b_c00251{left:450.019785px;}
.x18_c00251{left:451.608735px;}
.x66_c00251{left:462.681885px;}
.x28_c00251{left:463.914435px;}
.x2d_c00251{left:473.260035px;}
.x47_c00251{left:483.882735px;}
.x61_c00251{left:485.105385px;}
.x2e_c00251{left:495.361785px;}
.x3_c00251{left:505.163775px;}
.x54_c00251{left:506.524035px;}
.x4f_c00251{left:518.295135px;}
.x2f_c00251{left:528.071385px;}
.x6d_c00251{left:529.289085px;}
.x19_c00251{left:539.312835px;}
.x50_c00251{left:541.089885px;}
.xf_c00251{left:550.514685px;}
.x51_c00251{left:561.889785px;}
.x3c_c00251{left:571.230435px;}
.x1a_c00251{left:572.799585px;}
.x5a_c00251{left:573.848985px;}
.x30_c00251{left:584.585535px;}
.x52_c00251{left:594.361785px;}
.x3d_c00251{left:605.454735px;}
.x4d_c00251{left:606.637785px;}
.x1b_c00251{left:616.998135px;}
.x10_c00251{left:627.700035px;}
.x1c_c00251{left:639.104835px;}
.x1d_c00251{left:650.128485px;}
.x4_c00251{left:661.122435px;}
.x76_c00251{left:662.152035px;}
.x31_c00251{left:673.244985px;}
.x48_c00251{left:683.293485px;}
.x5_c00251{left:684.476535px;}
.x1e_c00251{left:694.544835px;}
.x5b_c00251{left:695.717985px;}
.x4b_c00251{left:699.455235px;}
.x35_c00251{left:703.187535px;}
.x6e_c00251{left:706.073385px;}
.x3e_c00251{left:707.221785px;}
.x57_c00251{left:708.523635px;}
.x6a_c00251{left:716.740635px;}
.x5c_c00251{left:728.165235px;}
.x77_c00251{left:739.505685px;}
.x78_c00251{left:751.400535px;}
@media print{
.v0_c00251{vertical-align:0.000000pt;}
.ls2_c00251{letter-spacing:-2.661126pt;}
.ls5_c00251{letter-spacing:-2.371600pt;}
.ls4_c00251{letter-spacing:-2.168320pt;}
.lsc_c00251{letter-spacing:-2.161544pt;}
.ls8_c00251{letter-spacing:-1.985368pt;}
.lse_c00251{letter-spacing:-1.788864pt;}
.ls6_c00251{letter-spacing:-1.538152pt;}
.ls11_c00251{letter-spacing:-0.819896pt;}
.ls0_c00251{letter-spacing:0.000000pt;}
.lsf_c00251{letter-spacing:1.043504pt;}
.lsd_c00251{letter-spacing:2.873024pt;}
.lsb_c00251{letter-spacing:2.994992pt;}
.ls12_c00251{letter-spacing:3.083080pt;}
.ls7_c00251{letter-spacing:3.232152pt;}
.ls3_c00251{letter-spacing:3.388000pt;}
.ls10_c00251{letter-spacing:3.590400pt;}
.ls1_c00251{letter-spacing:3.801609pt;}
.ls13_c00251{letter-spacing:10.137776pt;}
.ls9_c00251{letter-spacing:44.352176pt;}
.lsa_c00251{letter-spacing:50.688176pt;}
.ws2_c00251{word-spacing:-16.940000pt;}
.ws3_c00251{word-spacing:-14.778456pt;}
.ws1_c00251{word-spacing:-3.726800pt;}
.ws7_c00251{word-spacing:0.000000pt;}
.ws0_c00251{word-spacing:2.100560pt;}
.ws5_c00251{word-spacing:4.336640pt;}
.ws6_c00251{word-spacing:4.607680pt;}
.ws4_c00251{word-spacing:5.488560pt;}
._e_c00251{margin-left:-13.890800pt;}
._c_c00251{margin-left:-9.757440pt;}
._b_c00251{margin-left:-5.624080pt;}
._d_c00251{margin-left:-4.133360pt;}
._6_c00251{width:2.371600pt;}
._8_c00251{width:4.133360pt;}
._a_c00251{width:5.420800pt;}
._4_c00251{width:6.776000pt;}
._f_c00251{width:8.198960pt;}
._5_c00251{width:9.147600pt;}
._0_c00251{width:11.452320pt;}
._10_c00251{width:14.161840pt;}
._3_c00251{width:18.159680pt;}
._12_c00251{width:20.328000pt;}
._7_c00251{width:21.818720pt;}
._14_c00251{width:27.253072pt;}
._9_c00251{width:28.526960pt;}
._2_c00251{width:30.153200pt;}
._11_c00251{width:31.982720pt;}
._17_c00251{width:33.575520pt;}
._1_c00251{width:35.506240pt;}
._16_c00251{width:38.555440pt;}
._15_c00251{width:41.398720pt;}
._13_c00251{width:42.756560pt;}
.fs10_c00251{font-size:10.137776pt;}
.fs11_c00251{font-size:18.480000pt;}
.fs8_c00251{font-size:19.712000pt;}
.fs0_c00251{font-size:20.064000pt;}
.fse_c00251{font-size:24.640000pt;}
.fs2_c00251{font-size:25.168000pt;}
.fs6_c00251{font-size:34.848000pt;}
.fsa_c00251{font-size:40.832176pt;}
.fs5_c00251{font-size:44.352176pt;}
.fs7_c00251{font-size:50.688176pt;}
.fsf_c00251{font-size:58.960000pt;}
.fs4_c00251{font-size:59.840000pt;}
.fsb_c00251{font-size:66.880000pt;}
.fs3_c00251{font-size:67.760000pt;}
.fsc_c00251{font-size:71.808000pt;}
.fs9_c00251{font-size:72.336000pt;}
.fs1_c00251{font-size:76.032176pt;}
.fsd_c00251{font-size:83.072176pt;}
.y0_c00251{bottom:0.000000pt;}
.y24_c00251{bottom:41.418120pt;}
.y1_c00251{bottom:68.000000pt;}
.y25_c00251{bottom:85.457720pt;}
.y23_c00251{bottom:123.786120pt;}
.y22_c00251{bottom:150.084920pt;}
.y21_c00251{bottom:207.425720pt;}
.y20_c00251{bottom:210.589320pt;}
.y1f_c00251{bottom:239.101320pt;}
.y1e_c00251{bottom:267.930120pt;}
.y1d_c00251{bottom:296.442120pt;}
.y1c_c00251{bottom:308.801720pt;}
.y1b_c00251{bottom:325.275320pt;}
.y1a_c00251{bottom:354.420920pt;}
.y19_c00251{bottom:383.883320pt;}
.y18_c00251{bottom:401.940920pt;}
.y2_c00251{bottom:421.582520pt;}
.y17_c00251{bottom:440.907320pt;}
.y16_c00251{bottom:470.365320pt;}
.y15_c00251{bottom:499.194120pt;}
.y14_c00251{bottom:528.977720pt;}
.y13_c00251{bottom:541.328520pt;}
.y12_c00251{bottom:556.856120pt;}
.y11_c00251{bottom:564.776120pt;}
.y10_c00251{bottom:575.547320pt;}
.yf_c00251{bottom:586.001720pt;}
.ye_c00251{bottom:614.192520pt;}
.yd_c00251{bottom:631.299720pt;}
.yc_c00251{bottom:643.338120pt;}
.yb_c00251{bottom:661.712520pt;}
.ya_c00251{bottom:672.166920pt;}
.y9_c00251{bottom:703.530120pt;}
.y8_c00251{bottom:762.459320pt;}
.y7_c00251{bottom:792.550920pt;}
.y6_c00251{bottom:822.646920pt;}
.y5_c00251{bottom:848.941320pt;}
.y4_c00251{bottom:956.019720pt;}
.y3_c00251{bottom:975.975920pt;}
.h11_c00251{height:6.751759pt;}
.h12_c00251{height:19.274063pt;}
.ha_c00251{height:20.559000pt;}
.h2_c00251{height:20.926125pt;}
.h10_c00251{height:25.698750pt;}
.h4_c00251{height:26.249438pt;}
.h7_c00251{height:29.538549pt;}
.h9_c00251{height:33.758325pt;}
.h8_c00251{height:34.201406pt;}
.hc_c00251{height:42.586684pt;}
.h6_c00251{height:58.729688pt;}
.h5_c00251{height:66.502734pt;}
.hd_c00251{height:69.753750pt;}
.he_c00251{height:70.475625pt;}
.h3_c00251{height:74.621423pt;}
.hb_c00251{height:75.444188pt;}
.hf_c00251{height:81.530798pt;}
.h1_c00251{height:986.666667pt;}
.h0_c00251{height:1122.666667pt;}
.w1_c00251{width:668.000000pt;}
.w0_c00251{width:793.333333pt;}
.x0_c00251{left:0.000000pt;}
.x2_c00251{left:44.163187pt;}
.x1_c00251{left:62.666667pt;}
.x1f_c00251{left:64.513187pt;}
.x7_c00251{left:65.617587pt;}
.x3f_c00251{left:67.227987pt;}
.x5d_c00251{left:85.118387pt;}
.x8_c00251{left:94.679587pt;}
.x36_c00251{left:96.039187pt;}
.x67_c00251{left:106.198787pt;}
.x29_c00251{left:113.581987pt;}
.x5e_c00251{left:115.385987pt;}
.x40_c00251{left:124.889987pt;}
.x37_c00251{left:125.835987pt;}
.x49_c00251{left:134.710787pt;}
.x6f_c00251{left:137.297987pt;}
.x4e_c00251{left:145.160787pt;}
.x55_c00251{left:146.238787pt;}
.x58_c00251{left:153.815587pt;}
.x2a_c00251{left:154.959587pt;}
.x20_c00251{left:164.120387pt;}
.x70_c00251{left:165.308387pt;}
.x41_c00251{left:166.892387pt;}
.x9_c00251{left:173.989587pt;}
.x6c_c00251{left:174.979587pt;}
.x11_c00251{left:176.114787pt;}
.x21_c00251{left:183.163587pt;}
.x4c_c00251{left:184.144787pt;}
.x22_c00251{left:185.715587pt;}
.x56_c00251{left:193.631187pt;}
.x71_c00251{left:194.766387pt;}
.x23_c00251{left:203.456387pt;}
.x38_c00251{left:206.461587pt;}
.x72_c00251{left:210.289587pt;}
.x12_c00251{left:212.779987pt;}
.x42_c00251{left:213.778787pt;}
.x6b_c00251{left:215.045987pt;}
.x68_c00251{left:217.848787pt;}
.x24_c00251{left:223.414787pt;}
.x5f_c00251{left:224.646787pt;}
.x13_c00251{left:232.918787pt;}
.x39_c00251{left:234.119987pt;}
.x43_c00251{left:237.221987pt;}
.x44_c00251{left:240.389987pt;}
.x14_c00251{left:242.251187pt;}
.x4a_c00251{left:243.557987pt;}
.x73_c00251{left:244.820787pt;}
.x25_c00251{left:252.780387pt;}
.x62_c00251{left:254.131187pt;}
.x26_c00251{left:262.645187pt;}
.x69_c00251{left:264.259987pt;}
.x15_c00251{left:271.959987pt;}
.x45_c00251{left:272.989587pt;}
.x6_c00251{left:278.564387pt;}
.xa_c00251{left:282.634387pt;}
.x63_c00251{left:284.218387pt;}
.x74_c00251{left:287.469987pt;}
.x75_c00251{left:288.807587pt;}
.x32_c00251{left:302.610387pt;}
.xb_c00251{left:312.118787pt;}
.x59_c00251{left:313.341987pt;}
.x27_c00251{left:322.502787pt;}
.xc_c00251{left:331.738387pt;}
.x53_c00251{left:332.671187pt;}
.x46_c00251{left:341.814387pt;}
.x16_c00251{left:343.319187pt;}
.x2b_c00251{left:351.313987pt;}
.x60_c00251{left:352.981587pt;}
.x33_c00251{left:360.131587pt;}
.x3a_c00251{left:361.526387pt;}
.x2c_c00251{left:371.355987pt;}
.xd_c00251{left:372.306387pt;}
.x17_c00251{left:373.934387pt;}
.x64_c00251{left:381.528787pt;}
.x65_c00251{left:388.643587pt;}
.xe_c00251{left:390.187987pt;}
.x34_c00251{left:391.230787pt;}
.x3b_c00251{left:400.017587pt;}
.x18_c00251{left:401.429987pt;}
.x66_c00251{left:411.272787pt;}
.x28_c00251{left:412.368387pt;}
.x2d_c00251{left:420.675587pt;}
.x47_c00251{left:430.117987pt;}
.x61_c00251{left:431.204787pt;}
.x2e_c00251{left:440.321587pt;}
.x3_c00251{left:449.034467pt;}
.x54_c00251{left:450.243587pt;}
.x4f_c00251{left:460.706787pt;}
.x2f_c00251{left:469.396787pt;}
.x6d_c00251{left:470.479187pt;}
.x19_c00251{left:479.389187pt;}
.x50_c00251{left:480.968787pt;}
.xf_c00251{left:489.346387pt;}
.x51_c00251{left:499.457587pt;}
.x3c_c00251{left:507.760387pt;}
.x1a_c00251{left:509.155187pt;}
.x5a_c00251{left:510.087987pt;}
.x30_c00251{left:519.631587pt;}
.x52_c00251{left:528.321587pt;}
.x3d_c00251{left:538.181987pt;}
.x4d_c00251{left:539.233587pt;}
.x1b_c00251{left:548.442787pt;}
.x10_c00251{left:557.955587pt;}
.x1c_c00251{left:568.093187pt;}
.x1d_c00251{left:577.891987pt;}
.x4_c00251{left:587.664387pt;}
.x76_c00251{left:588.579587pt;}
.x31_c00251{left:598.439987pt;}
.x48_c00251{left:607.371987pt;}
.x5_c00251{left:608.423587pt;}
.x1e_c00251{left:617.373187pt;}
.x5b_c00251{left:618.415987pt;}
.x4b_c00251{left:621.737987pt;}
.x35_c00251{left:625.055587pt;}
.x6e_c00251{left:627.620787pt;}
.x3e_c00251{left:628.641587pt;}
.x57_c00251{left:629.798787pt;}
.x6a_c00251{left:637.102787pt;}
.x5c_c00251{left:647.257987pt;}
.x77_c00251{left:657.338387pt;}
.x78_c00251{left:667.911587pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a64725b07abcf85d211c867a.woff2')format("woff");}.ff1_c00252{font-family:ff1_c00252;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00252;src:url('chunks/assets/font_3515068d4a15440daec0893f.woff2')format("woff");}.ff2_c00252{font-family:ff2_c00252;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m77_c00252{transform:matrix(0.117615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117615,0.000000,0.000000,0.250000,0,0);}
.m18_c00252{transform:matrix(0.137009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137009,0.000000,0.000000,0.250000,0,0);}
.m35_c00252{transform:matrix(0.237002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237002,0.000000,0.000000,0.250000,0,0);}
.m0_c00252{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m67_c00252{transform:matrix(0.250933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250933,0.000000,0.000000,0.250000,0,0);}
.m15_c00252{transform:matrix(0.251037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251037,0.000000,0.000000,0.250000,0,0);}
.m45_c00252{transform:matrix(0.253944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253944,0.000000,0.000000,0.250000,0,0);}
.m85_c00252{transform:matrix(0.253995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253995,0.000000,0.000000,0.250000,0,0);}
.ma_c00252{transform:matrix(0.257106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257106,0.000000,0.000000,0.250000,0,0);}
.m19_c00252{transform:matrix(0.258400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258400,0.000000,0.000000,0.250000,0,0);}
.m37_c00252{transform:matrix(0.258736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258736,0.000000,0.000000,0.250000,0,0);}
.m13_c00252{transform:matrix(0.258901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258901,0.000000,0.000000,0.250000,0,0);}
.m91_c00252{transform:matrix(0.261177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261177,0.000000,0.000000,0.250000,0,0);}
.m2_c00252{transform:matrix(0.261486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261486,0.000000,0.000000,0.250000,0,0);}
.m5_c00252{transform:matrix(0.262563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262563,0.000000,0.000000,0.250000,0,0);}
.m4b_c00252{transform:matrix(0.264244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264244,0.000000,0.000000,0.250000,0,0);}
.m4_c00252{transform:matrix(0.265942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265942,0.000000,0.000000,0.250000,0,0);}
.m95_c00252{transform:matrix(0.266869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266869,0.000000,0.000000,0.250000,0,0);}
.m80_c00252{transform:matrix(0.267721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267721,0.000000,0.000000,0.250000,0,0);}
.m42_c00252{transform:matrix(0.268121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268121,0.000000,0.000000,0.250000,0,0);}
.m3f_c00252{transform:matrix(0.268319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268319,0.000000,0.000000,0.250000,0,0);}
.m1b_c00252{transform:matrix(0.268402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268402,0.000000,0.000000,0.250000,0,0);}
.m2d_c00252{transform:matrix(0.270126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270126,0.000000,0.000000,0.250000,0,0);}
.m41_c00252{transform:matrix(0.271512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271512,0.000000,0.000000,0.250000,0,0);}
.m2f_c00252{transform:matrix(0.271848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271848,0.000000,0.000000,0.250000,0,0);}
.m4f_c00252{transform:matrix(0.272278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272278,0.000000,0.000000,0.250000,0,0);}
.m9a_c00252{transform:matrix(0.272393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272393,0.000000,0.000000,0.250000,0,0);}
.m66_c00252{transform:matrix(0.273110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273110,0.000000,0.000000,0.250000,0,0);}
.m10_c00252{transform:matrix(0.274865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274865,0.000000,0.000000,0.250000,0,0);}
.m5d_c00252{transform:matrix(0.275440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275440,0.000000,0.000000,0.250000,0,0);}
.m22_c00252{transform:matrix(0.276531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276531,0.000000,0.000000,0.250000,0,0);}
.m5a_c00252{transform:matrix(0.277237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277237,0.000000,0.000000,0.250000,0,0);}
.m12_c00252{transform:matrix(0.277901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277901,0.000000,0.000000,0.250000,0,0);}
.m8e_c00252{transform:matrix(0.278456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278456,0.000000,0.000000,0.250000,0,0);}
.m2b_c00252{transform:matrix(0.278736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278736,0.000000,0.000000,0.250000,0,0);}
.m8a_c00252{transform:matrix(0.280014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280014,0.000000,0.000000,0.250000,0,0);}
.m89_c00252{transform:matrix(0.280188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280188,0.000000,0.000000,0.250000,0,0);}
.m21_c00252{transform:matrix(0.280628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280628,0.000000,0.000000,0.250000,0,0);}
.m76_c00252{transform:matrix(0.282364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282364,0.000000,0.000000,0.250000,0,0);}
.m5b_c00252{transform:matrix(0.283172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283172,0.000000,0.000000,0.250000,0,0);}
.m8f_c00252{transform:matrix(0.283252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283252,0.000000,0.000000,0.250000,0,0);}
.m1f_c00252{transform:matrix(0.283924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283924,0.000000,0.000000,0.250000,0,0);}
.m3_c00252{transform:matrix(0.284069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284069,0.000000,0.000000,0.250000,0,0);}
.m48_c00252{transform:matrix(0.284344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284344,0.000000,0.000000,0.250000,0,0);}
.m88_c00252{transform:matrix(0.284396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284396,0.000000,0.000000,0.250000,0,0);}
.m75_c00252{transform:matrix(0.285681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285681,0.000000,0.000000,0.250000,0,0);}
.m59_c00252{transform:matrix(0.285700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285700,0.000000,0.000000,0.250000,0,0);}
.m84_c00252{transform:matrix(0.285790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285790,0.000000,0.000000,0.250000,0,0);}
.m53_c00252{transform:matrix(0.287624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287624,0.000000,0.000000,0.250000,0,0);}
.m81_c00252{transform:matrix(0.287863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287863,0.000000,0.000000,0.250000,0,0);}
.m6b_c00252{transform:matrix(0.288041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288041,0.000000,0.000000,0.250000,0,0);}
.m7f_c00252{transform:matrix(0.288350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288350,0.000000,0.000000,0.250000,0,0);}
.m2a_c00252{transform:matrix(0.288841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288841,0.000000,0.000000,0.250000,0,0);}
.m16_c00252{transform:matrix(0.289127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289127,0.000000,0.000000,0.250000,0,0);}
.m70_c00252{transform:matrix(0.289941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289941,0.000000,0.000000,0.250000,0,0);}
.m7_c00252{transform:matrix(0.290893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290893,0.000000,0.000000,0.250000,0,0);}
.m33_c00252{transform:matrix(0.291215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291215,0.000000,0.000000,0.250000,0,0);}
.m62_c00252{transform:matrix(0.291249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291249,0.000000,0.000000,0.250000,0,0);}
.m34_c00252{transform:matrix(0.291334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291334,0.000000,0.000000,0.250000,0,0);}
.m32_c00252{transform:matrix(0.291961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291961,0.000000,0.000000,0.250000,0,0);}
.mb_c00252{transform:matrix(0.294085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294085,0.000000,0.000000,0.250000,0,0);}
.m79_c00252{transform:matrix(0.294481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294481,0.000000,0.000000,0.250000,0,0);}
.m6f_c00252{transform:matrix(0.294509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294509,0.000000,0.000000,0.250000,0,0);}
.m39_c00252{transform:matrix(0.294696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294696,0.000000,0.000000,0.250000,0,0);}
.m26_c00252{transform:matrix(0.295696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295696,0.000000,0.000000,0.250000,0,0);}
.m4e_c00252{transform:matrix(0.296100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296100,0.000000,0.000000,0.250000,0,0);}
.m99_c00252{transform:matrix(0.296490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296490,0.000000,0.000000,0.250000,0,0);}
.m24_c00252{transform:matrix(0.296824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296824,0.000000,0.000000,0.250000,0,0);}
.m3d_c00252{transform:matrix(0.296963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296963,0.000000,0.000000,0.250000,0,0);}
.m8_c00252{transform:matrix(0.297524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297524,0.000000,0.000000,0.250000,0,0);}
.m8b_c00252{transform:matrix(0.297626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297626,0.000000,0.000000,0.250000,0,0);}
.me_c00252{transform:matrix(0.297728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297728,0.000000,0.000000,0.250000,0,0);}
.m51_c00252{transform:matrix(0.298092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298092,0.000000,0.000000,0.250000,0,0);}
.m8d_c00252{transform:matrix(0.299111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299111,0.000000,0.000000,0.250000,0,0);}
.m6e_c00252{transform:matrix(0.299860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299860,0.000000,0.000000,0.250000,0,0);}
.m23_c00252{transform:matrix(0.299914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299914,0.000000,0.000000,0.250000,0,0);}
.m11_c00252{transform:matrix(0.300177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300177,0.000000,0.000000,0.250000,0,0);}
.m63_c00252{transform:matrix(0.300192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300192,0.000000,0.000000,0.250000,0,0);}
.m57_c00252{transform:matrix(0.301276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301276,0.000000,0.000000,0.250000,0,0);}
.m3b_c00252{transform:matrix(0.301650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301650,0.000000,0.000000,0.250000,0,0);}
.m68_c00252{transform:matrix(0.303073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303073,0.000000,0.000000,0.250000,0,0);}
.m6a_c00252{transform:matrix(0.303744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303744,0.000000,0.000000,0.250000,0,0);}
.m14_c00252{transform:matrix(0.304551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304551,0.000000,0.000000,0.250000,0,0);}
.m46_c00252{transform:matrix(0.304803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304803,0.000000,0.000000,0.250000,0,0);}
.m74_c00252{transform:matrix(0.305430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305430,0.000000,0.000000,0.250000,0,0);}
.m6c_c00252{transform:matrix(0.306311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306311,0.000000,0.000000,0.250000,0,0);}
.m52_c00252{transform:matrix(0.307652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307652,0.000000,0.000000,0.250000,0,0);}
.m2e_c00252{transform:matrix(0.309218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309218,0.000000,0.000000,0.250000,0,0);}
.m44_c00252{transform:matrix(0.309712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309712,0.000000,0.000000,0.250000,0,0);}
.m96_c00252{transform:matrix(0.309918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309918,0.000000,0.000000,0.250000,0,0);}
.m36_c00252{transform:matrix(0.311012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311012,0.000000,0.000000,0.250000,0,0);}
.m27_c00252{transform:matrix(0.311306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311306,0.000000,0.000000,0.250000,0,0);}
.m28_c00252{transform:matrix(0.311622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311622,0.000000,0.000000,0.250000,0,0);}
.m47_c00252{transform:matrix(0.311948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311948,0.000000,0.000000,0.250000,0,0);}
.m73_c00252{transform:matrix(0.312050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312050,0.000000,0.000000,0.250000,0,0);}
.m4c_c00252{transform:matrix(0.312369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312369,0.000000,0.000000,0.250000,0,0);}
.m82_c00252{transform:matrix(0.313111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313111,0.000000,0.000000,0.250000,0,0);}
.m1c_c00252{transform:matrix(0.314322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314322,0.000000,0.000000,0.250000,0,0);}
.m56_c00252{transform:matrix(0.314472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314472,0.000000,0.000000,0.250000,0,0);}
.m55_c00252{transform:matrix(0.315689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315689,0.000000,0.000000,0.250000,0,0);}
.m87_c00252{transform:matrix(0.315920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315920,0.000000,0.000000,0.250000,0,0);}
.m90_c00252{transform:matrix(0.316573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316573,0.000000,0.000000,0.250000,0,0);}
.m3e_c00252{transform:matrix(0.316667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316667,0.000000,0.000000,0.250000,0,0);}
.m8c_c00252{transform:matrix(0.316740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316740,0.000000,0.000000,0.250000,0,0);}
.m1_c00252{transform:matrix(0.316970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316970,0.000000,0.000000,0.250000,0,0);}
.m7b_c00252{transform:matrix(0.317350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317350,0.000000,0.000000,0.250000,0,0);}
.m4a_c00252{transform:matrix(0.317635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317635,0.000000,0.000000,0.250000,0,0);}
.m6d_c00252{transform:matrix(0.318953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318953,0.000000,0.000000,0.250000,0,0);}
.md_c00252{transform:matrix(0.319097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319097,0.000000,0.000000,0.250000,0,0);}
.m7d_c00252{transform:matrix(0.320130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320130,0.000000,0.000000,0.250000,0,0);}
.m5c_c00252{transform:matrix(0.320277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320277,0.000000,0.000000,0.250000,0,0);}
.mf_c00252{transform:matrix(0.320628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320628,0.000000,0.000000,0.250000,0,0);}
.m94_c00252{transform:matrix(0.320637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320637,0.000000,0.000000,0.250000,0,0);}
.m3c_c00252{transform:matrix(0.321109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321109,0.000000,0.000000,0.250000,0,0);}
.m1e_c00252{transform:matrix(0.321791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321791,0.000000,0.000000,0.250000,0,0);}
.m64_c00252{transform:matrix(0.321885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321885,0.000000,0.000000,0.250000,0,0);}
.m1a_c00252{transform:matrix(0.322052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322052,0.000000,0.000000,0.250000,0,0);}
.m97_c00252{transform:matrix(0.322460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322460,0.000000,0.000000,0.250000,0,0);}
.m6_c00252{transform:matrix(0.323398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323398,0.000000,0.000000,0.250000,0,0);}
.m60_c00252{transform:matrix(0.325042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325042,0.000000,0.000000,0.250000,0,0);}
.m50_c00252{transform:matrix(0.327098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327098,0.000000,0.000000,0.250000,0,0);}
.m86_c00252{transform:matrix(0.331221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331221,0.000000,0.000000,0.250000,0,0);}
.m92_c00252{transform:matrix(0.334304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334304,0.000000,0.000000,0.250000,0,0);}
.m78_c00252{transform:matrix(0.334548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334548,0.000000,0.000000,0.250000,0,0);}
.m4d_c00252{transform:matrix(0.334766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334766,0.000000,0.000000,0.250000,0,0);}
.m58_c00252{transform:matrix(0.335641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335641,0.000000,0.000000,0.250000,0,0);}
.m9_c00252{transform:matrix(0.335858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335858,0.000000,0.000000,0.250000,0,0);}
.m69_c00252{transform:matrix(0.337791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337791,0.000000,0.000000,0.250000,0,0);}
.m1d_c00252{transform:matrix(0.338424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338424,0.000000,0.000000,0.250000,0,0);}
.m61_c00252{transform:matrix(0.338975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338975,0.000000,0.000000,0.250000,0,0);}
.m31_c00252{transform:matrix(0.339310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339310,0.000000,0.000000,0.250000,0,0);}
.m7c_c00252{transform:matrix(0.339348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339348,0.000000,0.000000,0.250000,0,0);}
.m54_c00252{transform:matrix(0.340415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340415,0.000000,0.000000,0.250000,0,0);}
.m72_c00252{transform:matrix(0.341538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341538,0.000000,0.000000,0.250000,0,0);}
.m40_c00252{transform:matrix(0.341856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341856,0.000000,0.000000,0.250000,0,0);}
.m98_c00252{transform:matrix(0.345043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345043,0.000000,0.000000,0.250000,0,0);}
.m71_c00252{transform:matrix(0.345062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345062,0.000000,0.000000,0.250000,0,0);}
.m7e_c00252{transform:matrix(0.347225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347225,0.000000,0.000000,0.250000,0,0);}
.m2c_c00252{transform:matrix(0.347911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347911,0.000000,0.000000,0.250000,0,0);}
.m5e_c00252{transform:matrix(0.351387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351387,0.000000,0.000000,0.250000,0,0);}
.mc_c00252{transform:matrix(0.352330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352330,0.000000,0.000000,0.250000,0,0);}
.m49_c00252{transform:matrix(0.356003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356003,0.000000,0.000000,0.250000,0,0);}
.m65_c00252{transform:matrix(0.356449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356449,0.000000,0.000000,0.250000,0,0);}
.m38_c00252{transform:matrix(0.357309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357309,0.000000,0.000000,0.250000,0,0);}
.m25_c00252{transform:matrix(0.358352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358352,0.000000,0.000000,0.250000,0,0);}
.m30_c00252{transform:matrix(0.358420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358420,0.000000,0.000000,0.250000,0,0);}
.m3a_c00252{transform:matrix(0.359185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359185,0.000000,0.000000,0.250000,0,0);}
.m83_c00252{transform:matrix(0.360223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360223,0.000000,0.000000,0.250000,0,0);}
.m29_c00252{transform:matrix(0.360648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360648,0.000000,0.000000,0.250000,0,0);}
.m43_c00252{transform:matrix(0.364530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364530,0.000000,0.000000,0.250000,0,0);}
.m7a_c00252{transform:matrix(0.365828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365828,0.000000,0.000000,0.250000,0,0);}
.m93_c00252{transform:matrix(0.375889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375889,0.000000,0.000000,0.250000,0,0);}
.m17_c00252{transform:matrix(0.381710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381710,0.000000,0.000000,0.250000,0,0);}
.m20_c00252{transform:matrix(0.383967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383967,0.000000,0.000000,0.250000,0,0);}
.m5f_c00252{transform:matrix(0.418352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418352,0.000000,0.000000,0.250000,0,0);}
.v1_c00252{vertical-align:-57.024000px;}
.v2_c00252{vertical-align:-11.404800px;}
.v3_c00252{vertical-align:-7.104240px;}
.v0_c00252{vertical-align:0.000000px;}
.ls5_c00252{letter-spacing:-2.674980px;}
.ls8_c00252{letter-spacing:-2.346340px;}
.ls7_c00252{letter-spacing:-0.771923px;}
.ls6_c00252{letter-spacing:-0.183427px;}
.ls1_c00252{letter-spacing:0.000000px;}
.ls9_c00252{letter-spacing:0.649638px;}
.ls0_c00252{letter-spacing:0.901850px;}
.ls4_c00252{letter-spacing:3.141191px;}
.ls2_c00252{letter-spacing:3.821400px;}
.ls3_c00252{letter-spacing:4.316400px;}
.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;}
}
.ws2_c00252{word-spacing:-20.008850px;}
.ws0_c00252{word-spacing:-19.107000px;}
.ws3_c00252{word-spacing:-0.229284px;}
.ws5_c00252{word-spacing:0.000000px;}
.ws4_c00252{word-spacing:4.814964px;}
.ws1_c00252{word-spacing:5.349960px;}
._4_c00252{margin-left:-7.795656px;}
._17_c00252{margin-left:-1.619640px;}
._6_c00252{width:5.640386px;}
._1_c00252{width:6.802092px;}
._0_c00252{width:8.101368px;}
._e_c00252{width:10.241352px;}
._c_c00252{width:11.386188px;}
._15_c00252{width:12.839112px;}
._14_c00252{width:14.215608px;}
._2_c00252{width:19.918800px;}
._9_c00252{width:21.400236px;}
._b_c00252{width:22.776336px;}
._13_c00252{width:24.227676px;}
._11_c00252{width:25.679808px;}
._10_c00252{width:28.660500px;}
._d_c00252{width:31.029768px;}
._12_c00252{width:34.010460px;}
._7_c00252{width:36.088272px;}
._a_c00252{width:38.213208px;}
._8_c00252{width:39.218256px;}
._5_c00252{width:41.342400px;}
._f_c00252{width:44.633952px;}
._3_c00252{width:129.207672px;}
._16_c00252{width:668.836872px;}
.fc0_c00252{color:transparent;}
.fs3_c00252{font-size:22.176000px;}
.fs8_c00252{font-size:22.374000px;}
.fs0_c00252{font-size:27.720000px;}
.fs2_c00252{font-size:33.660000px;}
.fs6_c00252{font-size:64.548000px;}
.fs7_c00252{font-size:74.844000px;}
.fs1_c00252{font-size:76.428000px;}
.fs4_c00252{font-size:77.022198px;}
.fs5_c00252{font-size:86.328000px;}
.y0_c00252{bottom:0.000000px;}
.y1c_c00252{bottom:15.590565px;}
.y1_c00252{bottom:76.500000px;}
.y1d_c00252{bottom:88.293195px;}
.y1b_c00252{bottom:151.737345px;}
.y2_c00252{bottom:180.958185px;}
.y1a_c00252{bottom:187.734735px;}
.y19_c00252{bottom:203.059935px;}
.y18_c00252{bottom:234.418185px;}
.y17_c00252{bottom:267.924735px;}
.y16_c00252{bottom:301.064985px;}
.y15_c00252{bottom:333.858735px;}
.y14_c00252{bottom:367.360335px;}
.y13_c00252{bottom:422.245935px;}
.y12_c00252{bottom:431.868735px;}
.y11_c00252{bottom:463.944735px;}
.y10_c00252{bottom:498.871935px;}
.yf_c00252{bottom:530.591535px;}
.ye_c00252{bottom:563.023935px;}
.yd_c00252{bottom:595.451385px;}
.yc_c00252{bottom:659.964735px;}
.yb_c00252{bottom:692.035785px;}
.ya_c00252{bottom:724.829535px;}
.y9_c00252{bottom:757.256985px;}
.y8_c00252{bottom:791.114985px;}
.y7_c00252{bottom:822.839535px;}
.y6_c00252{bottom:856.336185px;}
.y3_c00252{bottom:920.849535px;}
.y5_c00252{bottom:1070.888985px;}
.y4_c00252{bottom:1107.598185px;}
.h9_c00252{height:21.958857px;}
.h8_c00252{height:23.128875px;}
.h2_c00252{height:28.911094px;}
.h4_c00252{height:33.035449px;}
.h6_c00252{height:67.321547px;}
.h7_c00252{height:73.455293px;}
.h3_c00252{height:75.009902px;}
.h5_c00252{height:84.726211px;}
.h1_c00252{height:1110.000000px;}
.h0_c00252{height:1263.000000px;}
.w1_c00252{width:751.500000px;}
.w0_c00252{width:892.500000px;}
.x0_c00252{left:0.000000px;}
.x2_c00252{left:31.893285px;}
.x3_c00252{left:59.044035px;}
.x1_c00252{left:70.500000px;}
.x4_c00252{left:71.626935px;}
.x64_c00252{left:72.706035px;}
.x3e_c00252{left:83.427735px;}
.x36_c00252{left:93.114885px;}
.x37_c00252{left:102.920835px;}
.x50_c00252{left:104.539485px;}
.x5e_c00252{left:114.682035px;}
.x1d_c00252{left:117.850035px;}
.x5_c00252{left:126.413535px;}
.x4d_c00252{left:127.586685px;}
.x28_c00252{left:137.249085px;}
.x3f_c00252{left:138.649935px;}
.x47_c00252{left:148.213335px;}
.x1e_c00252{left:149.381535px;}
.x44_c00252{left:160.063635px;}
.x11_c00252{left:161.127885px;}
.x38_c00252{left:170.310135px;}
.x1f_c00252{left:182.566335px;}
.x30_c00252{left:193.213785px;}
.x6_c00252{left:194.312685px;}
.x7_c00252{left:203.395935px;}
.x5f_c00252{left:204.994785px;}
.x48_c00252{left:214.988835px;}
.x8_c00252{left:226.383735px;}
.x20_c00252{left:229.324035px;}
.x12_c00252{left:236.536185px;}
.x40_c00252{left:237.669735px;}
.x52_c00252{left:247.213335px;}
.x9_c00252{left:248.836935px;}
.x55_c00252{left:256.885635px;}
.x21_c00252{left:258.637935px;}
.x13_c00252{left:270.265485px;}
.x29_c00252{left:271.621785px;}
.x14_c00252{left:279.695235px;}
.xa_c00252{left:281.977185px;}
.x49_c00252{left:293.015685px;}
.x22_c00252{left:294.104685px;}
.x68_c00252{left:300.264465px;}
.x31_c00252{left:303.732435px;}
.x65_c00252{left:304.836285px;}
.x15_c00252{left:314.914485px;}
.x39_c00252{left:324.918435px;}
.xb_c00252{left:326.185635px;}
.x5a_c00252{left:337.105335px;}
.x53_c00252{left:338.248785px;}
.x4a_c00252{left:347.010285px;}
.x3a_c00252{left:348.059685px;}
.x23_c00252{left:358.959585px;}
.x41_c00252{left:360.375285px;}
.x16_c00252{left:370.017885px;}
.x5b_c00252{left:373.403685px;}
.xc_c00252{left:381.665235px;}
.x32_c00252{left:391.629585px;}
.x42_c00252{left:393.461085px;}
.x17_c00252{left:404.207535px;}
.xd_c00252{left:413.345235px;}
.x33_c00252{left:414.726285px;}
.x60_c00252{left:416.349885px;}
.x3b_c00252{left:425.942985px;}
.x4b_c00252{left:426.972585px;}
.x2a_c00252{left:436.441935px;}
.x61_c00252{left:437.743785px;}
.x56_c00252{left:448.386285px;}
.x2b_c00252{left:458.761485px;}
.x51_c00252{left:460.112835px;}
.x58_c00252{left:470.488035px;}
.xe_c00252{left:480.813735px;}
.x34_c00252{left:491.446335px;}
.x18_c00252{left:502.960035px;}
.x2c_c00252{left:503.979735px;}
.x3c_c00252{left:513.107535px;}
.x45_c00252{left:514.681635px;}
.x67_c00252{left:524.819235px;}
.x19_c00252{left:526.096335px;}
.x5c_c00252{left:535.550835px;}
.x24_c00252{left:536.620035px;}
.x4e_c00252{left:537.862485px;}
.x46_c00252{left:547.302135px;}
.x1a_c00252{left:558.647535px;}
.x54_c00252{left:559.904835px;}
.x4f_c00252{left:570.200835px;}
.x2d_c00252{left:579.427635px;}
.x35_c00252{left:580.912635px;}
.x1b_c00252{left:591.099735px;}
.x3d_c00252{left:602.039235px;}
.x62_c00252{left:603.113385px;}
.x25_c00252{left:613.082685px;}
.x4c_c00252{left:614.790435px;}
.x43_c00252{left:635.852685px;}
.x5d_c00252{left:636.892185px;}
.x57_c00252{left:638.283135px;}
.x26_c00252{left:646.623885px;}
.x63_c00252{left:647.643585px;}
.x10_c00252{left:658.286085px;}
.xf_c00252{left:662.696535px;}
.x2e_c00252{left:668.646435px;}
.x59_c00252{left:680.600685px;}
.x1c_c00252{left:690.654135px;}
.x27_c00252{left:691.792635px;}
.x2f_c00252{left:702.855885px;}
.x66_c00252{left:712.993485px;}
.x69_c00252{left:746.473305px;}
@media print{
.v1_c00252{vertical-align:-50.688000pt;}
.v2_c00252{vertical-align:-10.137600pt;}
.v3_c00252{vertical-align:-6.314880pt;}
.v0_c00252{vertical-align:0.000000pt;}
.ls5_c00252{letter-spacing:-2.377760pt;}
.ls8_c00252{letter-spacing:-2.085635pt;}
.ls7_c00252{letter-spacing:-0.686154pt;}
.ls6_c00252{letter-spacing:-0.163046pt;}
.ls1_c00252{letter-spacing:0.000000pt;}
.ls9_c00252{letter-spacing:0.577456pt;}
.ls0_c00252{letter-spacing:0.801645pt;}
.ls4_c00252{letter-spacing:2.792170pt;}
.ls2_c00252{letter-spacing:3.396800pt;}
.ls3_c00252{letter-spacing:3.836800pt;}
.ws2_c00252{word-spacing:-17.785645pt;}
.ws0_c00252{word-spacing:-16.984000pt;}
.ws3_c00252{word-spacing:-0.203808pt;}
.ws5_c00252{word-spacing:0.000000pt;}
.ws4_c00252{word-spacing:4.279968pt;}
.ws1_c00252{word-spacing:4.755520pt;}
._4_c00252{margin-left:-6.929472pt;}
._17_c00252{margin-left:-1.439680pt;}
._6_c00252{width:5.013677pt;}
._1_c00252{width:6.046304pt;}
._0_c00252{width:7.201216pt;}
._e_c00252{width:9.103424pt;}
._c_c00252{width:10.121056pt;}
._15_c00252{width:11.412544pt;}
._14_c00252{width:12.636096pt;}
._2_c00252{width:17.705600pt;}
._9_c00252{width:19.022432pt;}
._b_c00252{width:20.245632pt;}
._13_c00252{width:21.535712pt;}
._11_c00252{width:22.826496pt;}
._10_c00252{width:25.476000pt;}
._d_c00252{width:27.582016pt;}
._12_c00252{width:30.231520pt;}
._7_c00252{width:32.078464pt;}
._a_c00252{width:33.967296pt;}
._8_c00252{width:34.860672pt;}
._5_c00252{width:36.748800pt;}
._f_c00252{width:39.674624pt;}
._3_c00252{width:114.851264pt;}
._16_c00252{width:594.521664pt;}
.fs3_c00252{font-size:19.712000pt;}
.fs8_c00252{font-size:19.888000pt;}
.fs0_c00252{font-size:24.640000pt;}
.fs2_c00252{font-size:29.920000pt;}
.fs6_c00252{font-size:57.376000pt;}
.fs7_c00252{font-size:66.528000pt;}
.fs1_c00252{font-size:67.936000pt;}
.fs4_c00252{font-size:68.464176pt;}
.fs5_c00252{font-size:76.736000pt;}
.y0_c00252{bottom:0.000000pt;}
.y1c_c00252{bottom:13.858280pt;}
.y1_c00252{bottom:68.000000pt;}
.y1d_c00252{bottom:78.482840pt;}
.y1b_c00252{bottom:134.877640pt;}
.y2_c00252{bottom:160.851720pt;}
.y1a_c00252{bottom:166.875320pt;}
.y19_c00252{bottom:180.497720pt;}
.y18_c00252{bottom:208.371720pt;}
.y17_c00252{bottom:238.155320pt;}
.y16_c00252{bottom:267.613320pt;}
.y15_c00252{bottom:296.763320pt;}
.y14_c00252{bottom:326.542520pt;}
.y13_c00252{bottom:375.329720pt;}
.y12_c00252{bottom:383.883320pt;}
.y11_c00252{bottom:412.395320pt;}
.y10_c00252{bottom:443.441720pt;}
.yf_c00252{bottom:471.636920pt;}
.ye_c00252{bottom:500.465720pt;}
.yd_c00252{bottom:529.290120pt;}
.yc_c00252{bottom:586.635320pt;}
.yb_c00252{bottom:615.142920pt;}
.ya_c00252{bottom:644.292920pt;}
.y9_c00252{bottom:673.117320pt;}
.y8_c00252{bottom:703.213320pt;}
.y7_c00252{bottom:731.412920pt;}
.y6_c00252{bottom:761.187720pt;}
.y3_c00252{bottom:818.532920pt;}
.y5_c00252{bottom:951.901320pt;}
.y4_c00252{bottom:984.531720pt;}
.h9_c00252{height:19.518984pt;}
.h8_c00252{height:20.559000pt;}
.h2_c00252{height:25.698750pt;}
.h4_c00252{height:29.364844pt;}
.h6_c00252{height:59.841375pt;}
.h7_c00252{height:65.293594pt;}
.h3_c00252{height:66.675469pt;}
.h5_c00252{height:75.312188pt;}
.h1_c00252{height:986.666667pt;}
.h0_c00252{height:1122.666667pt;}
.w1_c00252{width:668.000000pt;}
.w0_c00252{width:793.333333pt;}
.x0_c00252{left:0.000000pt;}
.x2_c00252{left:28.349587pt;}
.x3_c00252{left:52.483587pt;}
.x1_c00252{left:62.666667pt;}
.x4_c00252{left:63.668387pt;}
.x64_c00252{left:64.627587pt;}
.x3e_c00252{left:74.157987pt;}
.x36_c00252{left:82.768787pt;}
.x37_c00252{left:91.485187pt;}
.x50_c00252{left:92.923987pt;}
.x5e_c00252{left:101.939587pt;}
.x1d_c00252{left:104.755587pt;}
.x5_c00252{left:112.367587pt;}
.x4d_c00252{left:113.410387pt;}
.x28_c00252{left:121.999187pt;}
.x3f_c00252{left:123.244387pt;}
.x47_c00252{left:131.745187pt;}
.x1e_c00252{left:132.783587pt;}
.x44_c00252{left:142.278787pt;}
.x11_c00252{left:143.224787pt;}
.x38_c00252{left:151.386787pt;}
.x1f_c00252{left:162.281187pt;}
.x30_c00252{left:171.745587pt;}
.x6_c00252{left:172.722387pt;}
.x7_c00252{left:180.796387pt;}
.x5f_c00252{left:182.217587pt;}
.x48_c00252{left:191.101187pt;}
.x8_c00252{left:201.229987pt;}
.x20_c00252{left:203.843587pt;}
.x12_c00252{left:210.254387pt;}
.x40_c00252{left:211.261987pt;}
.x52_c00252{left:219.745187pt;}
.x9_c00252{left:221.188387pt;}
.x55_c00252{left:228.342787pt;}
.x21_c00252{left:229.900387pt;}
.x13_c00252{left:240.235987pt;}
.x29_c00252{left:241.441587pt;}
.x14_c00252{left:248.617987pt;}
.xa_c00252{left:250.646387pt;}
.x49_c00252{left:260.458387pt;}
.x22_c00252{left:261.426387pt;}
.x68_c00252{left:266.901747pt;}
.x31_c00252{left:269.984387pt;}
.x65_c00252{left:270.965587pt;}
.x15_c00252{left:279.923987pt;}
.x39_c00252{left:288.816387pt;}
.xb_c00252{left:289.942787pt;}
.x5a_c00252{left:299.649187pt;}
.x53_c00252{left:300.665587pt;}
.x4a_c00252{left:308.453587pt;}
.x3a_c00252{left:309.386387pt;}
.x23_c00252{left:319.075187pt;}
.x41_c00252{left:320.333587pt;}
.x16_c00252{left:328.904787pt;}
.x5b_c00252{left:331.914387pt;}
.xc_c00252{left:339.257987pt;}
.x32_c00252{left:348.115187pt;}
.x42_c00252{left:349.743187pt;}
.x17_c00252{left:359.295587pt;}
.xd_c00252{left:367.417987pt;}
.x33_c00252{left:368.645587pt;}
.x60_c00252{left:370.088787pt;}
.x3b_c00252{left:378.615987pt;}
.x4b_c00252{left:379.531187pt;}
.x2a_c00252{left:387.948387pt;}
.x61_c00252{left:389.105587pt;}
.x56_c00252{left:398.565587pt;}
.x2b_c00252{left:407.787987pt;}
.x51_c00252{left:408.989187pt;}
.x58_c00252{left:418.211587pt;}
.xe_c00252{left:427.389987pt;}
.x34_c00252{left:436.841187pt;}
.x18_c00252{left:447.075587pt;}
.x2c_c00252{left:447.981987pt;}
.x3c_c00252{left:456.095587pt;}
.x45_c00252{left:457.494787pt;}
.x67_c00252{left:466.505987pt;}
.x19_c00252{left:467.641187pt;}
.x5c_c00252{left:476.045187pt;}
.x24_c00252{left:476.995587pt;}
.x4e_c00252{left:478.099987pt;}
.x46_c00252{left:486.490787pt;}
.x1a_c00252{left:496.575587pt;}
.x54_c00252{left:497.693187pt;}
.x4f_c00252{left:506.845187pt;}
.x2d_c00252{left:515.046787pt;}
.x35_c00252{left:516.366787pt;}
.x1b_c00252{left:525.421987pt;}
.x3d_c00252{left:535.145987pt;}
.x62_c00252{left:536.100787pt;}
.x25_c00252{left:544.962387pt;}
.x4c_c00252{left:546.480387pt;}
.x43_c00252{left:565.202387pt;}
.x5d_c00252{left:566.126387pt;}
.x57_c00252{left:567.362787pt;}
.x26_c00252{left:574.776787pt;}
.x63_c00252{left:575.683187pt;}
.x10_c00252{left:585.143187pt;}
.xf_c00252{left:589.063587pt;}
.x2e_c00252{left:594.352387pt;}
.x59_c00252{left:604.978387pt;}
.x1c_c00252{left:613.914787pt;}
.x27_c00252{left:614.926787pt;}
.x2f_c00252{left:624.760787pt;}
.x66_c00252{left:633.771987pt;}
.x69_c00252{left:663.531827pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7d77924911ba8f845cda41dd.woff2')format("woff");}.ff1_c00253{font-family:ff1_c00253;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00253;src:url('chunks/assets/font_e6e13db240caab9913cb0b83.woff2')format("woff");}.ff2_c00253{font-family:ff2_c00253;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00253;src:url('chunks/assets/font_e95ef11338daacaf338cb8f7.woff2')format("woff");}.ff3_c00253{font-family:ff3_c00253;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00253;src:url('chunks/assets/font_cd0c55a7ea0d450e8a4a309f.woff2')format("woff");}.ff4_c00253{font-family:ff4_c00253;line-height:0.666000;font-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_c00253{transform:matrix(0.121429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121429,0.000000,0.000000,0.250000,0,0);}
.m4c_c00253{transform:matrix(0.134616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134616,0.000000,0.000000,0.250000,0,0);}
.m61_c00253{transform:matrix(0.148648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148648,0.000000,0.000000,0.250000,0,0);}
.m4b_c00253{transform:matrix(0.153846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153846,0.000000,0.000000,0.250000,0,0);}
.m7c_c00253{transform:matrix(0.157142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157142,0.000000,0.000000,0.250000,0,0);}
.m63_c00253{transform:matrix(0.162162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162162,0.000000,0.000000,0.250000,0,0);}
.m80_c00253{transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);}
.m7d_c00253{transform:matrix(0.171429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171429,0.000000,0.000000,0.250000,0,0);}
.m65_c00253{transform:matrix(0.175676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175676,0.000000,0.000000,0.250000,0,0);}
.m4e_c00253{transform:matrix(0.179487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179487,0.000000,0.000000,0.250000,0,0);}
.m62_c00253{transform:matrix(0.182433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182433,0.000000,0.000000,0.250000,0,0);}
.m23_c00253{transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);}
.m7_c00253{transform:matrix(0.185898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185898,0.000000,0.000000,0.250000,0,0);}
.m37_c00253{transform:matrix(0.186539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186539,0.000000,0.000000,0.250000,0,0);}
.m64_c00253{transform:matrix(0.189188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189188,0.000000,0.000000,0.250000,0,0);}
.m22_c00253{transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);}
.m66_c00253{transform:matrix(0.195946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195946,0.000000,0.000000,0.250000,0,0);}
.m24_c00253{transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);}
.m68_c00253{transform:matrix(0.215812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215812,0.000000,0.000000,0.250000,0,0);}
.m7e_c00253{transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);}
.m3b_c00253{transform:matrix(0.220377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220377,0.000000,0.000000,0.250000,0,0);}
.m21_c00253{transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);}
.m4d_c00253{transform:matrix(0.224359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224359,0.000000,0.000000,0.250000,0,0);}
.m8_c00253{transform:matrix(0.225347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225347,0.000000,0.000000,0.250000,0,0);}
.m6d_c00253{transform:matrix(0.234313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234313,0.000000,0.000000,0.250000,0,0);}
.m2d_c00253{transform:matrix(0.234470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234470,0.000000,0.000000,0.250000,0,0);}
.m91_c00253{transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);}
.m47_c00253{transform:matrix(0.237481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237481,0.000000,0.000000,0.250000,0,0);}
.m44_c00253{transform:matrix(0.237851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237851,0.000000,0.000000,0.250000,0,0);}
.m6b_c00253{transform:matrix(0.242568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242568,0.000000,0.000000,0.250000,0,0);}
.ma3_c00253{transform:matrix(0.246419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246419,0.000000,0.000000,0.250000,0,0);}
.m1_c00253{transform:matrix(0.246627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246627,0.000000,0.000000,0.250000,0,0);}
.m28_c00253{transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);}
.m0_c00253{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m36_c00253{transform:matrix(0.252202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252202,0.000000,0.000000,0.250000,0,0);}
.m1f_c00253{transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);}
.m40_c00253{transform:matrix(0.253545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253545,0.000000,0.000000,0.250000,0,0);}
.m1c_c00253{transform:matrix(0.253667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253667,0.000000,0.000000,0.250000,0,0);}
.m48_c00253{transform:matrix(0.254272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254272,0.000000,0.000000,0.250000,0,0);}
.m5f_c00253{transform:matrix(0.254648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254648,0.000000,0.000000,0.250000,0,0);}
.mad_c00253{transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);}
.m56_c00253{transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);}
.m2e_c00253{transform:matrix(0.258144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258144,0.000000,0.000000,0.250000,0,0);}
.m15_c00253{transform:matrix(0.258369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258369,0.000000,0.000000,0.250000,0,0);}
.m8a_c00253{transform:matrix(0.259057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259057,0.000000,0.000000,0.250000,0,0);}
.m12_c00253{transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);}
.m9_c00253{transform:matrix(0.260093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260093,0.000000,0.000000,0.250000,0,0);}
.m5b_c00253{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m9c_c00253{transform:matrix(0.261462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261462,0.000000,0.000000,0.250000,0,0);}
.ma1_c00253{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.m97_c00253{transform:matrix(0.261730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261730,0.000000,0.000000,0.250000,0,0);}
.m92_c00253{transform:matrix(0.261904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261904,0.000000,0.000000,0.250000,0,0);}
.m3_c00253{transform:matrix(0.262167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262167,0.000000,0.000000,0.250000,0,0);}
.mb0_c00253{transform:matrix(0.262649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262649,0.000000,0.000000,0.250000,0,0);}
.mb2_c00253{transform:matrix(0.262697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262697,0.000000,0.000000,0.250000,0,0);}
.mb_c00253{transform:matrix(0.262979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262979,0.000000,0.000000,0.250000,0,0);}
.m1d_c00253{transform:matrix(0.263196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263196,0.000000,0.000000,0.250000,0,0);}
.m18_c00253{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.mae_c00253{transform:matrix(0.263305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263305,0.000000,0.000000,0.250000,0,0);}
.m69_c00253{transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);}
.m1e_c00253{transform:matrix(0.265501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265501,0.000000,0.000000,0.250000,0,0);}
.m2a_c00253{transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);}
.ma6_c00253{transform:matrix(0.265938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265938,0.000000,0.000000,0.250000,0,0);}
.m75_c00253{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m14_c00253{transform:matrix(0.266605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266605,0.000000,0.000000,0.250000,0,0);}
.m67_c00253{transform:matrix(0.266682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266682,0.000000,0.000000,0.250000,0,0);}
.m60_c00253{transform:matrix(0.267205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267205,0.000000,0.000000,0.250000,0,0);}
.m50_c00253{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m20_c00253{transform:matrix(0.268340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268340,0.000000,0.000000,0.250000,0,0);}
.m73_c00253{transform:matrix(0.268484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268484,0.000000,0.000000,0.250000,0,0);}
.m9b_c00253{transform:matrix(0.269646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269646,0.000000,0.000000,0.250000,0,0);}
.m77_c00253{transform:matrix(0.269824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269824,0.000000,0.000000,0.250000,0,0);}
.m9e_c00253{transform:matrix(0.269908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269908,0.000000,0.000000,0.250000,0,0);}
.ma_c00253{transform:matrix(0.269979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269979,0.000000,0.000000,0.250000,0,0);}
.m42_c00253{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m39_c00253{transform:matrix(0.272038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272038,0.000000,0.000000,0.250000,0,0);}
.m38_c00253{transform:matrix(0.272153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272153,0.000000,0.000000,0.250000,0,0);}
.mf_c00253{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m9a_c00253{transform:matrix(0.272610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272610,0.000000,0.000000,0.250000,0,0);}
.m26_c00253{transform:matrix(0.272848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272848,0.000000,0.000000,0.250000,0,0);}
.m11_c00253{transform:matrix(0.272862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272862,0.000000,0.000000,0.250000,0,0);}
.m5c_c00253{transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);}
.m29_c00253{transform:matrix(0.272943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272943,0.000000,0.000000,0.250000,0,0);}
.m81_c00253{transform:matrix(0.273113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273113,0.000000,0.000000,0.250000,0,0);}
.m82_c00253{transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);}
.m9f_c00253{transform:matrix(0.274278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274278,0.000000,0.000000,0.250000,0,0);}
.mac_c00253{transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);}
.m1a_c00253{transform:matrix(0.276794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276794,0.000000,0.000000,0.250000,0,0);}
.m4_c00253{transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);}
.m2f_c00253{transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);}
.mb1_c00253{transform:matrix(0.280411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280411,0.000000,0.000000,0.250000,0,0);}
.m72_c00253{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.m7a_c00253{transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);}
.m59_c00253{transform:matrix(0.283164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283164,0.000000,0.000000,0.250000,0,0);}
.m2c_c00253{transform:matrix(0.283223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283223,0.000000,0.000000,0.250000,0,0);}
.m5d_c00253{transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);}
.m6a_c00253{transform:matrix(0.284803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284803,0.000000,0.000000,0.250000,0,0);}
.m43_c00253{transform:matrix(0.284970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284970,0.000000,0.000000,0.250000,0,0);}
.m5_c00253{transform:matrix(0.285694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285694,0.000000,0.000000,0.250000,0,0);}
.m34_c00253{transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);}
.m79_c00253{transform:matrix(0.286383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286383,0.000000,0.000000,0.250000,0,0);}
.m45_c00253{transform:matrix(0.286402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286402,0.000000,0.000000,0.250000,0,0);}
.ma9_c00253{transform:matrix(0.286416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286416,0.000000,0.000000,0.250000,0,0);}
.m17_c00253{transform:matrix(0.286725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286725,0.000000,0.000000,0.250000,0,0);}
.m94_c00253{transform:matrix(0.287458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287458,0.000000,0.000000,0.250000,0,0);}
.m4a_c00253{transform:matrix(0.287830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287830,0.000000,0.000000,0.250000,0,0);}
.m9d_c00253{transform:matrix(0.288153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288153,0.000000,0.000000,0.250000,0,0);}
.ma4_c00253{transform:matrix(0.291699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291699,0.000000,0.000000,0.250000,0,0);}
.m85_c00253{transform:matrix(0.292392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292392,0.000000,0.000000,0.250000,0,0);}
.m8d_c00253{transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);}
.m1b_c00253{transform:matrix(0.295210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295210,0.000000,0.000000,0.250000,0,0);}
.m46_c00253{transform:matrix(0.296436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296436,0.000000,0.000000,0.250000,0,0);}
.md_c00253{transform:matrix(0.296777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296777,0.000000,0.000000,0.250000,0,0);}
.m88_c00253{transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);}
.me_c00253{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m30_c00253{transform:matrix(0.297717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297717,0.000000,0.000000,0.250000,0,0);}
.ma8_c00253{transform:matrix(0.299150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299150,0.000000,0.000000,0.250000,0,0);}
.m3f_c00253{transform:matrix(0.300655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300655,0.000000,0.000000,0.250000,0,0);}
.m31_c00253{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m76_c00253{transform:matrix(0.303158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303158,0.000000,0.000000,0.250000,0,0);}
.m51_c00253{transform:matrix(0.303790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303790,0.000000,0.000000,0.250000,0,0);}
.m78_c00253{transform:matrix(0.304946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304946,0.000000,0.000000,0.250000,0,0);}
.m41_c00253{transform:matrix(0.305282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305282,0.000000,0.000000,0.250000,0,0);}
.m8e_c00253{transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);}
.m8f_c00253{transform:matrix(0.305713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305713,0.000000,0.000000,0.250000,0,0);}
.m10_c00253{transform:matrix(0.306545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306545,0.000000,0.000000,0.250000,0,0);}
.maf_c00253{transform:matrix(0.307242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307242,0.000000,0.000000,0.250000,0,0);}
.m3d_c00253{transform:matrix(0.307871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307871,0.000000,0.000000,0.250000,0,0);}
.m70_c00253{transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);}
.m54_c00253{transform:matrix(0.310732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310732,0.000000,0.000000,0.250000,0,0);}
.m7b_c00253{transform:matrix(0.311255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311255,0.000000,0.000000,0.250000,0,0);}
.m86_c00253{transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);}
.m71_c00253{transform:matrix(0.313366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313366,0.000000,0.000000,0.250000,0,0);}
.m25_c00253{transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);}
.ma0_c00253{transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);}
.m99_c00253{transform:matrix(0.314095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314095,0.000000,0.000000,0.250000,0,0);}
.m90_c00253{transform:matrix(0.314146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314146,0.000000,0.000000,0.250000,0,0);}
.m3a_c00253{transform:matrix(0.315717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315717,0.000000,0.000000,0.250000,0,0);}
.m96_c00253{transform:matrix(0.317414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317414,0.000000,0.000000,0.250000,0,0);}
.m4f_c00253{transform:matrix(0.318648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318648,0.000000,0.000000,0.250000,0,0);}
.m35_c00253{transform:matrix(0.319130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319130,0.000000,0.000000,0.250000,0,0);}
.m6_c00253{transform:matrix(0.320064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320064,0.000000,0.000000,0.250000,0,0);}
.m95_c00253{transform:matrix(0.320297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320297,0.000000,0.000000,0.250000,0,0);}
.m6e_c00253{transform:matrix(0.320357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320357,0.000000,0.000000,0.250000,0,0);}
.m27_c00253{transform:matrix(0.321773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321773,0.000000,0.000000,0.250000,0,0);}
.m87_c00253{transform:matrix(0.322941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322941,0.000000,0.000000,0.250000,0,0);}
.m2b_c00253{transform:matrix(0.323503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323503,0.000000,0.000000,0.250000,0,0);}
.m13_c00253{transform:matrix(0.324210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324210,0.000000,0.000000,0.250000,0,0);}
.mab_c00253{transform:matrix(0.324784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324784,0.000000,0.000000,0.250000,0,0);}
.m2_c00253{transform:matrix(0.325483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325483,0.000000,0.000000,0.250000,0,0);}
.ma7_c00253{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m74_c00253{transform:matrix(0.327297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327297,0.000000,0.000000,0.250000,0,0);}
.maa_c00253{transform:matrix(0.327957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327957,0.000000,0.000000,0.250000,0,0);}
.m5e_c00253{transform:matrix(0.329405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329405,0.000000,0.000000,0.250000,0,0);}
.m6f_c00253{transform:matrix(0.329979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329979,0.000000,0.000000,0.250000,0,0);}
.m5a_c00253{transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);}
.m8c_c00253{transform:matrix(0.332470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332470,0.000000,0.000000,0.250000,0,0);}
.m84_c00253{transform:matrix(0.333499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333499,0.000000,0.000000,0.250000,0,0);}
.m3c_c00253{transform:matrix(0.336842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336842,0.000000,0.000000,0.250000,0,0);}
.mc_c00253{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m58_c00253{transform:matrix(0.342407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342407,0.000000,0.000000,0.250000,0,0);}
.ma2_c00253{transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);}
.m83_c00253{transform:matrix(0.345060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345060,0.000000,0.000000,0.250000,0,0);}
.m6c_c00253{transform:matrix(0.348765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348765,0.000000,0.000000,0.250000,0,0);}
.m8b_c00253{transform:matrix(0.348900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348900,0.000000,0.000000,0.250000,0,0);}
.m89_c00253{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m33_c00253{transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);}
.mb3_c00253{transform:matrix(0.350994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350994,0.000000,0.000000,0.250000,0,0);}
.m3e_c00253{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m19_c00253{transform:matrix(0.355345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355345,0.000000,0.000000,0.250000,0,0);}
.m52_c00253{transform:matrix(0.355515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355515,0.000000,0.000000,0.250000,0,0);}
.m93_c00253{transform:matrix(0.355535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355535,0.000000,0.000000,0.250000,0,0);}
.ma5_c00253{transform:matrix(0.361367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361367,0.000000,0.000000,0.250000,0,0);}
.m98_c00253{transform:matrix(0.368363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368363,0.000000,0.000000,0.250000,0,0);}
.m55_c00253{transform:matrix(0.372071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372071,0.000000,0.000000,0.250000,0,0);}
.m57_c00253{transform:matrix(0.385852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385852,0.000000,0.000000,0.250000,0,0);}
.m53_c00253{transform:matrix(0.396487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396487,0.000000,0.000000,0.250000,0,0);}
.m16_c00253{transform:matrix(0.409186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409186,0.000000,0.000000,0.250000,0,0);}
.m32_c00253{transform:matrix(0.414699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414699,0.000000,0.000000,0.250000,0,0);}
.m49_c00253{transform:matrix(0.416907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416907,0.000000,0.000000,0.250000,0,0);}
.mb4_c00253{transform:matrix(0.417547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417547,0.000000,0.000000,0.250000,0,0);}
.v0_c00253{vertical-align:0.000000px;}
.ls8_c00253{letter-spacing:-2.993767px;}
.lsd_c00253{letter-spacing:-2.744280px;}
.ls12_c00253{letter-spacing:-1.685772px;}
.ls15_c00253{letter-spacing:-1.497593px;}
.lsb_c00253{letter-spacing:-0.337154px;}
.ls13_c00253{letter-spacing:-0.250906px;}
.ls7_c00253{letter-spacing:0.000000px;}
.ls0_c00253{letter-spacing:0.402020px;}
.ls3_c00253{letter-spacing:0.533174px;}
.ls6_c00253{letter-spacing:0.705672px;}
.ls5_c00253{letter-spacing:0.821148px;}
.lsf_c00253{letter-spacing:1.082030px;}
.ls4_c00253{letter-spacing:1.556759px;}
.ls1_c00253{letter-spacing:1.685772px;}
.ls2_c00253{letter-spacing:2.916784px;}
.ls16_c00253{letter-spacing:3.112798px;}
.ls17_c00253{letter-spacing:3.191206px;}
.lse_c00253{letter-spacing:3.544200px;}
.ls9_c00253{letter-spacing:3.603610px;}
.lsa_c00253{letter-spacing:3.920400px;}
.ls11_c00253{letter-spacing:4.276810px;}
.ls10_c00253{letter-spacing:49.896198px;}
.ls14_c00253{letter-spacing:52.747398px;}
.lsc_c00253{letter-spacing:55.598598px;}
.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;}
}
.ws6_c00253{word-spacing:-24.300834px;}
.ws9_c00253{word-spacing:-22.205197px;}
.ws3_c00253{word-spacing:-21.384050px;}
.ws4_c00253{word-spacing:-20.684030px;}
.ws5_c00253{word-spacing:-19.602000px;}
.wsa_c00253{word-spacing:-19.351094px;}
.ws0_c00253{word-spacing:-19.264846px;}
.wsc_c00253{word-spacing:-18.104407px;}
.wsf_c00253{word-spacing:-3.841992px;}
.ws10_c00253{word-spacing:0.000000px;}
.ws8_c00253{word-spacing:1.253736px;}
.wse_c00253{word-spacing:1.254528px;}
.wsb_c00253{word-spacing:2.195424px;}
.wsd_c00253{word-spacing:2.352240px;}
.ws1_c00253{word-spacing:3.606768px;}
.ws7_c00253{word-spacing:9.630021px;}
.ws2_c00253{word-spacing:28.930968px;}
._1c_c00253{margin-left:-13.172544px;}
._14_c00253{margin-left:-12.074436px;}
._a_c00253{margin-left:-10.748232px;}
._23_c00253{margin-left:-9.173736px;}
._e_c00253{margin-left:-7.862092px;}
._12_c00253{margin-left:-5.474736px;}
._1b_c00253{margin-left:-4.077216px;}
._c_c00253{margin-left:-2.273238px;}
._19_c00253{width:2.455366px;}
._1a_c00253{width:3.967445px;}
._7_c00253{width:5.096520px;}
._b_c00253{width:6.351048px;}
._8_c00253{width:7.762392px;}
._0_c00253{width:9.173736px;}
._15_c00253{width:10.350648px;}
._2_c00253{width:12.702096px;}
._4_c00253{width:14.035428px;}
._6_c00253{width:15.783669px;}
._16_c00253{width:17.563392px;}
._5_c00253{width:19.406129px;}
._3_c00253{width:20.856528px;}
._21_c00253{width:22.761356px;}
._f_c00253{width:24.149664px;}
._20_c00253{width:25.325784px;}
._d_c00253{width:26.680012px;}
._9_c00253{width:28.154808px;}
._1_c00253{width:30.108672px;}
._11_c00253{width:31.516452px;}
._17_c00253{width:32.675080px;}
._1e_c00253{width:34.139635px;}
._10_c00253{width:35.361216px;}
._1d_c00253{width:37.250050px;}
._13_c00253{width:38.398766px;}
._24_c00253{width:39.674448px;}
._18_c00253{width:41.006988px;}
._22_c00253{width:42.156576px;}
._1f_c00253{width:44.015326px;}
.fc0_c00253{color:transparent;}
.fs0_c00253{font-size:28.314000px;}
.fs9_c00253{font-size:45.144000px;}
.fs6_c00253{font-size:49.896198px;}
.fs8_c00253{font-size:52.747398px;}
.fs4_c00253{font-size:55.598598px;}
.fs5_c00253{font-size:70.884000px;}
.fs2_c00253{font-size:72.072198px;}
.fs3_c00253{font-size:78.408000px;}
.fs7_c00253{font-size:79.398000px;}
.fs1_c00253{font-size:85.536198px;}
.y0_c00253{bottom:0.000000px;}
.y1_c00253{bottom:76.500000px;}
.y1b_c00253{bottom:99.347535px;}
.y1a_c00253{bottom:137.833785px;}
.y19_c00253{bottom:166.707135px;}
.y18_c00253{bottom:166.714659px;}
.y17_c00253{bottom:201.272985px;}
.y16_c00253{bottom:235.487385px;}
.y15_c00253{bottom:268.632585px;}
.y14_c00253{bottom:300.713535px;}
.y12_c00253{bottom:333.853389px;}
.y13_c00253{bottom:333.853785px;}
.y2_c00253{bottom:340.986735px;}
.y11_c00253{bottom:398.010735px;}
.y10_c00253{bottom:430.799535px;}
.yf_c00253{bottom:463.226985px;}
.ye_c00253{bottom:495.664335px;}
.yd_c00253{bottom:527.740335px;}
.yc_c00253{bottom:560.529135px;}
.yb_c00253{bottom:593.674335px;}
.ya_c00253{bottom:655.331535px;}
.y9_c00253{bottom:688.120335px;}
.y8_c00253{bottom:720.909135px;}
.y7_c00253{bottom:752.980185px;}
.y6_c00253{bottom:785.768985px;}
.y5_c00253{bottom:817.844985px;}
.y4_c00253{bottom:914.077935px;}
.y3_c00253{bottom:1070.176185px;}
.h2_c00253{height:29.102330px;}
.h8_c00253{height:33.230868px;}
.ha_c00253{height:35.129767px;}
.h6_c00253{height:37.028666px;}
.hb_c00253{height:46.400918px;}
.h7_c00253{height:69.568770px;}
.h4_c00253{height:72.635262px;}
.h5_c00253{height:76.953164px;}
.h9_c00253{height:77.924795px;}
.h3_c00253{height:83.949101px;}
.h1_c00253{height:1110.000000px;}
.h0_c00253{height:1263.000000px;}
.w1_c00253{width:751.500000px;}
.w0_c00253{width:892.500000px;}
.x0_c00253{left:0.000000px;}
.x2_c00253{left:1.534935px;}
.x1_c00253{left:70.500000px;}
.x1b_c00253{left:72.413985px;}
.x38_c00253{left:74.859285px;}
.x6b_c00253{left:81.893235px;}
.x4c_c00253{left:93.822735px;}
.x28_c00253{left:103.589085px;}
.x5a_c00253{left:104.831535px;}
.x67_c00253{left:106.262085px;}
.x1c_c00253{left:115.563135px;}
.x6c_c00253{left:116.652135px;}
.x6_c00253{left:126.344235px;}
.x5e_c00253{left:127.387893px;}
.x40_c00253{left:136.739235px;}
.x29_c00253{left:138.001485px;}
.x1d_c00253{left:148.688535px;}
.x39_c00253{left:149.728035px;}
.x12_c00253{left:150.807135px;}
.x2a_c00253{left:159.202335px;}
.x53_c00253{left:160.494285px;}
.x5b_c00253{left:169.211235px;}
.x1e_c00253{left:170.790285px;}
.x1f_c00253{left:181.645635px;}
.x3a_c00253{left:190.238835px;}
.x7_c00253{left:191.976285px;}
.x41_c00253{left:193.203885px;}
.x5f_c00253{left:194.302785px;}
.x6d_c00253{left:195.396735px;}
.x2b_c00253{left:203.970135px;}
.x13_c00253{left:214.721535px;}
.x31_c00253{left:225.497685px;}
.x42_c00253{left:226.690635px;}
.x2c_c00253{left:236.729235px;}
.x54_c00253{left:238.159785px;}
.x8_c00253{left:247.747935px;}
.x62_c00253{left:249.143835px;}
.x68_c00253{left:250.772385px;}
.x20_c00253{left:258.835935px;}
.x48_c00253{left:268.963635px;}
.x9_c00253{left:270.211035px;}
.x32_c00253{left:280.012035px;}
.x14_c00253{left:281.996985px;}
.x3b_c00253{left:292.094985px;}
.x72_c00253{left:293.391885px;}
.x76_c00253{left:294.753135px;}
.xa_c00253{left:303.029535px;}
.x69_c00253{left:304.405635px;}
.x2d_c00253{left:313.518585px;}
.x6e_c00253{left:316.028235px;}
.x4d_c00253{left:317.166735px;}
.x15_c00253{left:325.467885px;}
.x5c_c00253{left:336.011385px;}
.x21_c00253{left:337.204335px;}
.x16_c00253{left:346.530135px;}
.x55_c00253{left:347.906235px;}
.x3c_c00253{left:356.677635px;}
.x49_c00253{left:358.350735px;}
.x5d_c00253{left:359.895135px;}
.x22_c00253{left:368.958585px;}
.x56_c00253{left:369.963435px;}
.xb_c00253{left:379.452585px;}
.x73_c00253{left:382.110735px;}
.x43_c00253{left:390.921735px;}
.x3d_c00253{left:392.401785px;}
.xc_c00253{left:402.727485px;}
.x6f_c00253{left:403.846185px;}
.x4a_c00253{left:414.508485px;}
.x2e_c00253{left:424.175835px;}
.x57_c00253{left:425.596485px;}
.x33_c00253{left:435.961785px;}
.x70_c00253{left:437.011185px;}
.x58_c00253{left:446.782485px;}
.xd_c00253{left:457.192335px;}
.x74_c00253{left:459.117885px;}
.x4e_c00253{left:468.740685px;}
.x23_c00253{left:479.358435px;}
.x63_c00253{left:480.477135px;}
.x34_c00253{left:488.872335px;}
.xe_c00253{left:490.144485px;}
.x17_c00253{left:501.400785px;}
.xf_c00253{left:512.498685px;}
.x4f_c00253{left:523.477785px;}
.x77_c00253{left:524.670735px;}
.x18_c00253{left:533.956935px;}
.x64_c00253{left:535.050885px;}
.x45_c00253{left:536.709135px;}
.x24_c00253{left:544.832085px;}
.x50_c00253{left:545.935935px;}
.x46_c00253{left:556.271535px;}
.x10_c00253{left:567.542685px;}
.x47_c00253{left:573.373785px;}
.x35_c00253{left:578.789085px;}
.x4b_c00253{left:588.307935px;}
.x11_c00253{left:589.570185px;}
.x65_c00253{left:590.619585px;}
.x25_c00253{left:600.643335px;}
.x3e_c00253{left:611.340285px;}
.x6a_c00253{left:612.652035px;}
.x44_c00253{left:613.840035px;}
.x51_c00253{left:620.770035px;}
.x59_c00253{left:623.363835px;}
.x36_c00253{left:632.085735px;}
.x3f_c00253{left:634.045935px;}
.x37_c00253{left:644.257785px;}
.x71_c00253{left:645.331935px;}
.x2f_c00253{left:655.365585px;}
.x3_c00253{left:656.513985px;}
.x26_c00253{left:666.344685px;}
.x4_c00253{left:667.686135px;}
.x19_c00253{left:676.808985px;}
.x60_c00253{left:678.100935px;}
.x52_c00253{left:680.026485px;}
.x5_c00253{left:689.169135px;}
.x1a_c00253{left:698.945385px;}
.x61_c00253{left:700.044285px;}
.x30_c00253{left:709.637385px;}
.x75_c00253{left:710.706585px;}
.x66_c00253{left:721.398585px;}
.x27_c00253{left:734.154735px;}
.x78_c00253{left:745.594185px;}
@media print{
.v0_c00253{vertical-align:0.000000pt;}
.ls8_c00253{letter-spacing:-2.661126pt;}
.lsd_c00253{letter-spacing:-2.439360pt;}
.ls12_c00253{letter-spacing:-1.498464pt;}
.ls15_c00253{letter-spacing:-1.331194pt;}
.lsb_c00253{letter-spacing:-0.299693pt;}
.ls13_c00253{letter-spacing:-0.223027pt;}
.ls7_c00253{letter-spacing:0.000000pt;}
.ls0_c00253{letter-spacing:0.357351pt;}
.ls3_c00253{letter-spacing:0.473933pt;}
.ls6_c00253{letter-spacing:0.627264pt;}
.ls5_c00253{letter-spacing:0.729909pt;}
.lsf_c00253{letter-spacing:0.961805pt;}
.ls4_c00253{letter-spacing:1.383786pt;}
.ls1_c00253{letter-spacing:1.498464pt;}
.ls2_c00253{letter-spacing:2.592697pt;}
.ls16_c00253{letter-spacing:2.766931pt;}
.ls17_c00253{letter-spacing:2.836627pt;}
.lse_c00253{letter-spacing:3.150400pt;}
.ls9_c00253{letter-spacing:3.203209pt;}
.lsa_c00253{letter-spacing:3.484800pt;}
.ls11_c00253{letter-spacing:3.801609pt;}
.ls10_c00253{letter-spacing:44.352176pt;}
.ls14_c00253{letter-spacing:46.886576pt;}
.lsc_c00253{letter-spacing:49.420976pt;}
.ws6_c00253{word-spacing:-21.600741pt;}
.ws9_c00253{word-spacing:-19.737953pt;}
.ws3_c00253{word-spacing:-19.008044pt;}
.ws4_c00253{word-spacing:-18.385805pt;}
.ws5_c00253{word-spacing:-17.424000pt;}
.wsa_c00253{word-spacing:-17.200973pt;}
.ws0_c00253{word-spacing:-17.124307pt;}
.wsc_c00253{word-spacing:-16.092806pt;}
.wsf_c00253{word-spacing:-3.415104pt;}
.ws10_c00253{word-spacing:0.000000pt;}
.ws8_c00253{word-spacing:1.114432pt;}
.wse_c00253{word-spacing:1.115136pt;}
.wsb_c00253{word-spacing:1.951488pt;}
.wsd_c00253{word-spacing:2.090880pt;}
.ws1_c00253{word-spacing:3.206016pt;}
.ws7_c00253{word-spacing:8.560019pt;}
.ws2_c00253{word-spacing:25.716416pt;}
._1c_c00253{margin-left:-11.708928pt;}
._14_c00253{margin-left:-10.732832pt;}
._a_c00253{margin-left:-9.553984pt;}
._23_c00253{margin-left:-8.154432pt;}
._e_c00253{margin-left:-6.988526pt;}
._12_c00253{margin-left:-4.866432pt;}
._1b_c00253{margin-left:-3.624192pt;}
._c_c00253{margin-left:-2.020656pt;}
._19_c00253{width:2.182547pt;}
._1a_c00253{width:3.526618pt;}
._7_c00253{width:4.530240pt;}
._b_c00253{width:5.645376pt;}
._8_c00253{width:6.899904pt;}
._0_c00253{width:8.154432pt;}
._15_c00253{width:9.200576pt;}
._2_c00253{width:11.290752pt;}
._4_c00253{width:12.475936pt;}
._6_c00253{width:14.029928pt;}
._16_c00253{width:15.611904pt;}
._5_c00253{width:17.249892pt;}
._3_c00253{width:18.539136pt;}
._21_c00253{width:20.232316pt;}
._f_c00253{width:21.466368pt;}
._20_c00253{width:22.511808pt;}
._d_c00253{width:23.715566pt;}
._9_c00253{width:25.026496pt;}
._1_c00253{width:26.763264pt;}
._11_c00253{width:28.014624pt;}
._17_c00253{width:29.044516pt;}
._1e_c00253{width:30.346342pt;}
._10_c00253{width:31.432192pt;}
._1d_c00253{width:33.111155pt;}
._13_c00253{width:34.132237pt;}
._24_c00253{width:35.266176pt;}
._18_c00253{width:36.450656pt;}
._22_c00253{width:37.472512pt;}
._1f_c00253{width:39.124734pt;}
.fs0_c00253{font-size:25.168000pt;}
.fs9_c00253{font-size:40.128000pt;}
.fs6_c00253{font-size:44.352176pt;}
.fs8_c00253{font-size:46.886576pt;}
.fs4_c00253{font-size:49.420976pt;}
.fs5_c00253{font-size:63.008000pt;}
.fs2_c00253{font-size:64.064176pt;}
.fs3_c00253{font-size:69.696000pt;}
.fs7_c00253{font-size:70.576000pt;}
.fs1_c00253{font-size:76.032176pt;}
.y0_c00253{bottom:0.000000pt;}
.y1_c00253{bottom:68.000000pt;}
.y1b_c00253{bottom:88.308920pt;}
.y1a_c00253{bottom:122.518920pt;}
.y19_c00253{bottom:148.184120pt;}
.y18_c00253{bottom:148.190808pt;}
.y17_c00253{bottom:178.909320pt;}
.y16_c00253{bottom:209.322120pt;}
.y15_c00253{bottom:238.784520pt;}
.y14_c00253{bottom:267.300920pt;}
.y12_c00253{bottom:296.758568pt;}
.y13_c00253{bottom:296.758920pt;}
.y2_c00253{bottom:303.099320pt;}
.y11_c00253{bottom:353.787320pt;}
.y10_c00253{bottom:382.932920pt;}
.yf_c00253{bottom:411.757320pt;}
.ye_c00253{bottom:440.590520pt;}
.yd_c00253{bottom:469.102520pt;}
.yc_c00253{bottom:498.248120pt;}
.yb_c00253{bottom:527.710520pt;}
.ya_c00253{bottom:582.516920pt;}
.y9_c00253{bottom:611.662520pt;}
.y8_c00253{bottom:640.808120pt;}
.y7_c00253{bottom:669.315720pt;}
.y6_c00253{bottom:698.461320pt;}
.y5_c00253{bottom:726.973320pt;}
.y4_c00253{bottom:812.513720pt;}
.y3_c00253{bottom:951.267720pt;}
.h2_c00253{height:25.868738pt;}
.h8_c00253{height:29.538549pt;}
.ha_c00253{height:31.226460pt;}
.h6_c00253{height:32.914370pt;}
.hb_c00253{height:41.245261pt;}
.h7_c00253{height:61.838906pt;}
.h4_c00253{height:64.564677pt;}
.h5_c00253{height:68.402813pt;}
.h9_c00253{height:69.266484pt;}
.h3_c00253{height:74.621423pt;}
.h1_c00253{height:986.666667pt;}
.h0_c00253{height:1122.666667pt;}
.w1_c00253{width:668.000000pt;}
.w0_c00253{width:793.333333pt;}
.x0_c00253{left:0.000000pt;}
.x2_c00253{left:1.364387pt;}
.x1_c00253{left:62.666667pt;}
.x1b_c00253{left:64.367987pt;}
.x38_c00253{left:66.541587pt;}
.x6b_c00253{left:72.793987pt;}
.x4c_c00253{left:83.397987pt;}
.x28_c00253{left:92.079187pt;}
.x5a_c00253{left:93.183587pt;}
.x67_c00253{left:94.455187pt;}
.x1c_c00253{left:102.722787pt;}
.x6c_c00253{left:103.690787pt;}
.x6_c00253{left:112.305987pt;}
.x5e_c00253{left:113.233683pt;}
.x40_c00253{left:121.545987pt;}
.x29_c00253{left:122.667987pt;}
.x1d_c00253{left:132.167587pt;}
.x39_c00253{left:133.091587pt;}
.x12_c00253{left:134.050787pt;}
.x2a_c00253{left:141.513187pt;}
.x53_c00253{left:142.661587pt;}
.x5b_c00253{left:150.409987pt;}
.x1e_c00253{left:151.813587pt;}
.x1f_c00253{left:161.462787pt;}
.x3a_c00253{left:169.101187pt;}
.x7_c00253{left:170.645587pt;}
.x41_c00253{left:171.736787pt;}
.x5f_c00253{left:172.713587pt;}
.x6d_c00253{left:173.685987pt;}
.x2b_c00253{left:181.306787pt;}
.x13_c00253{left:190.863587pt;}
.x31_c00253{left:200.442387pt;}
.x42_c00253{left:201.502787pt;}
.x2c_c00253{left:210.425987pt;}
.x54_c00253{left:211.697587pt;}
.x8_c00253{left:220.220387pt;}
.x62_c00253{left:221.461187pt;}
.x68_c00253{left:222.908787pt;}
.x20_c00253{left:230.076387pt;}
.x48_c00253{left:239.078787pt;}
.x9_c00253{left:240.187587pt;}
.x32_c00253{left:248.899587pt;}
.x14_c00253{left:250.663987pt;}
.x3b_c00253{left:259.639987pt;}
.x72_c00253{left:260.792787pt;}
.x76_c00253{left:262.002787pt;}
.xa_c00253{left:269.359587pt;}
.x69_c00253{left:270.582787pt;}
.x2d_c00253{left:278.683187pt;}
.x6e_c00253{left:280.913987pt;}
.x4d_c00253{left:281.925987pt;}
.x15_c00253{left:289.304787pt;}
.x5c_c00253{left:298.676787pt;}
.x21_c00253{left:299.737187pt;}
.x16_c00253{left:308.026787pt;}
.x55_c00253{left:309.249987pt;}
.x3c_c00253{left:317.046787pt;}
.x49_c00253{left:318.533987pt;}
.x5d_c00253{left:319.906787pt;}
.x22_c00253{left:327.963187pt;}
.x56_c00253{left:328.856387pt;}
.xb_c00253{left:337.291187pt;}
.x73_c00253{left:339.653987pt;}
.x43_c00253{left:347.485987pt;}
.x3d_c00253{left:348.801587pt;}
.xc_c00253{left:357.979987pt;}
.x6f_c00253{left:358.974387pt;}
.x4a_c00253{left:368.451987pt;}
.x2e_c00253{left:377.045187pt;}
.x57_c00253{left:378.307987pt;}
.x33_c00253{left:387.521587pt;}
.x70_c00253{left:388.454387pt;}
.x58_c00253{left:397.139987pt;}
.xd_c00253{left:406.393187pt;}
.x74_c00253{left:408.104787pt;}
.x4e_c00253{left:416.658387pt;}
.x23_c00253{left:426.096387pt;}
.x63_c00253{left:427.090787pt;}
.x34_c00253{left:434.553187pt;}
.xe_c00253{left:435.683987pt;}
.x17_c00253{left:445.689587pt;}
.xf_c00253{left:455.554387pt;}
.x4f_c00253{left:465.313587pt;}
.x77_c00253{left:466.373987pt;}
.x18_c00253{left:474.628387pt;}
.x64_c00253{left:475.600787pt;}
.x45_c00253{left:477.074787pt;}
.x24_c00253{left:484.295187pt;}
.x50_c00253{left:485.276387pt;}
.x46_c00253{left:494.463587pt;}
.x10_c00253{left:504.482387pt;}
.x47_c00253{left:509.665587pt;}
.x35_c00253{left:514.479187pt;}
.x4b_c00253{left:522.940387pt;}
.x11_c00253{left:524.062387pt;}
.x65_c00253{left:524.995187pt;}
.x25_c00253{left:533.905187pt;}
.x3e_c00253{left:543.413587pt;}
.x6a_c00253{left:544.579587pt;}
.x44_c00253{left:545.635587pt;}
.x51_c00253{left:551.795587pt;}
.x59_c00253{left:554.101187pt;}
.x36_c00253{left:561.853987pt;}
.x3f_c00253{left:563.596387pt;}
.x37_c00253{left:572.673587pt;}
.x71_c00253{left:573.628387pt;}
.x2f_c00253{left:582.547187pt;}
.x3_c00253{left:583.567987pt;}
.x26_c00253{left:592.306387pt;}
.x4_c00253{left:593.498787pt;}
.x19_c00253{left:601.607987pt;}
.x60_c00253{left:602.756387pt;}
.x52_c00253{left:604.467987pt;}
.x5_c00253{left:612.594787pt;}
.x1a_c00253{left:621.284787pt;}
.x61_c00253{left:622.261587pt;}
.x30_c00253{left:630.788787pt;}
.x75_c00253{left:631.739187pt;}
.x66_c00253{left:641.243187pt;}
.x27_c00253{left:652.581987pt;}
.x78_c00253{left:662.750387pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b1cc1c3a6b75eef111e1d2f3.woff2')format("woff");}.ff1_c00254{font-family:ff1_c00254;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00254;src:url('chunks/assets/font_2646870dbfc23ae6d149bff8.woff2')format("woff");}.ff2_c00254{font-family:ff2_c00254;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00254;src:url('chunks/assets/font_321a1d3b2b80e17aa5a5dc69.woff2')format("woff");}.ff3_c00254{font-family:ff3_c00254;line-height:1.402354;font-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_c00254{transform:matrix(0.130549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130549,0.000000,0.000000,0.250000,0,0);}
.m2e_c00254{transform:matrix(0.206757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206757,0.000000,0.000000,0.250000,0,0);}
.m10_c00254{transform:matrix(0.225104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225104,0.000000,0.000000,0.250000,0,0);}
.m77_c00254{transform:matrix(0.230189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230189,0.000000,0.000000,0.250000,0,0);}
.mb6_c00254{transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);}
.m9b_c00254{transform:matrix(0.245407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245407,0.000000,0.000000,0.250000,0,0);}
.m46_c00254{transform:matrix(0.248605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248605,0.000000,0.000000,0.250000,0,0);}
.m0_c00254{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m45_c00254{transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);}
.m97_c00254{transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);}
.m5a_c00254{transform:matrix(0.252369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252369,0.000000,0.000000,0.250000,0,0);}
.m83_c00254{transform:matrix(0.252703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252703,0.000000,0.000000,0.250000,0,0);}
.m72_c00254{transform:matrix(0.256334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256334,0.000000,0.000000,0.250000,0,0);}
.m55_c00254{transform:matrix(0.256738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256738,0.000000,0.000000,0.250000,0,0);}
.m4d_c00254{transform:matrix(0.257794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257794,0.000000,0.000000,0.250000,0,0);}
.m9d_c00254{transform:matrix(0.257997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257997,0.000000,0.000000,0.250000,0,0);}
.m98_c00254{transform:matrix(0.258139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258139,0.000000,0.000000,0.250000,0,0);}
.m65_c00254{transform:matrix(0.259554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259554,0.000000,0.000000,0.250000,0,0);}
.m39_c00254{transform:matrix(0.259559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259559,0.000000,0.000000,0.250000,0,0);}
.m99_c00254{transform:matrix(0.259903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259903,0.000000,0.000000,0.250000,0,0);}
.m1_c00254{transform:matrix(0.260390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260390,0.000000,0.000000,0.250000,0,0);}
.m50_c00254{transform:matrix(0.260584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260584,0.000000,0.000000,0.250000,0,0);}
.m8e_c00254{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.ma_c00254{transform:matrix(0.261222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261222,0.000000,0.000000,0.250000,0,0);}
.m1a_c00254{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.m67_c00254{transform:matrix(0.262649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262649,0.000000,0.000000,0.250000,0,0);}
.ma3_c00254{transform:matrix(0.262846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262846,0.000000,0.000000,0.250000,0,0);}
.m82_c00254{transform:matrix(0.263017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263017,0.000000,0.000000,0.250000,0,0);}
.md_c00254{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m6f_c00254{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m78_c00254{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m6e_c00254{transform:matrix(0.266253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266253,0.000000,0.000000,0.250000,0,0);}
.m5_c00254{transform:matrix(0.267141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267141,0.000000,0.000000,0.250000,0,0);}
.m90_c00254{transform:matrix(0.267200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267200,0.000000,0.000000,0.250000,0,0);}
.m84_c00254{transform:matrix(0.267749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267749,0.000000,0.000000,0.250000,0,0);}
.m15_c00254{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m69_c00254{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.mb2_c00254{transform:matrix(0.268624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268624,0.000000,0.000000,0.250000,0,0);}
.m3d_c00254{transform:matrix(0.268788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268788,0.000000,0.000000,0.250000,0,0);}
.m95_c00254{transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);}
.m9f_c00254{transform:matrix(0.269485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269485,0.000000,0.000000,0.250000,0,0);}
.m96_c00254{transform:matrix(0.269857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269857,0.000000,0.000000,0.250000,0,0);}
.m86_c00254{transform:matrix(0.270550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270550,0.000000,0.000000,0.250000,0,0);}
.m23_c00254{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.mb8_c00254{transform:matrix(0.271600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271600,0.000000,0.000000,0.250000,0,0);}
.m5f_c00254{transform:matrix(0.272437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272437,0.000000,0.000000,0.250000,0,0);}
.m3_c00254{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m3b_c00254{transform:matrix(0.272747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272747,0.000000,0.000000,0.250000,0,0);}
.m6_c00254{transform:matrix(0.273136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273136,0.000000,0.000000,0.250000,0,0);}
.m8f_c00254{transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);}
.m12_c00254{transform:matrix(0.274156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274156,0.000000,0.000000,0.250000,0,0);}
.m2a_c00254{transform:matrix(0.274278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274278,0.000000,0.000000,0.250000,0,0);}
.m57_c00254{transform:matrix(0.274659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274659,0.000000,0.000000,0.250000,0,0);}
.m18_c00254{transform:matrix(0.274853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274853,0.000000,0.000000,0.250000,0,0);}
.m5e_c00254{transform:matrix(0.274860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274860,0.000000,0.000000,0.250000,0,0);}
.m14_c00254{transform:matrix(0.274908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274908,0.000000,0.000000,0.250000,0,0);}
.m4e_c00254{transform:matrix(0.274937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274937,0.000000,0.000000,0.250000,0,0);}
.m2_c00254{transform:matrix(0.274964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274964,0.000000,0.000000,0.250000,0,0);}
.m7f_c00254{transform:matrix(0.275281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275281,0.000000,0.000000,0.250000,0,0);}
.ma7_c00254{transform:matrix(0.275609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275609,0.000000,0.000000,0.250000,0,0);}
.m37_c00254{transform:matrix(0.276319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276319,0.000000,0.000000,0.250000,0,0);}
.m71_c00254{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m8c_c00254{transform:matrix(0.277356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277356,0.000000,0.000000,0.250000,0,0);}
.mbc_c00254{transform:matrix(0.277612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277612,0.000000,0.000000,0.250000,0,0);}
.m75_c00254{transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);}
.m28_c00254{transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);}
.m8_c00254{transform:matrix(0.280064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280064,0.000000,0.000000,0.250000,0,0);}
.m81_c00254{transform:matrix(0.281235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281235,0.000000,0.000000,0.250000,0,0);}
.m60_c00254{transform:matrix(0.281467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281467,0.000000,0.000000,0.250000,0,0);}
.m53_c00254{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.ma6_c00254{transform:matrix(0.281734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281734,0.000000,0.000000,0.250000,0,0);}
.mb_c00254{transform:matrix(0.281783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281783,0.000000,0.000000,0.250000,0,0);}
.me_c00254{transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);}
.m44_c00254{transform:matrix(0.283330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283330,0.000000,0.000000,0.250000,0,0);}
.m1b_c00254{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m8a_c00254{transform:matrix(0.284009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284009,0.000000,0.000000,0.250000,0,0);}
.m3e_c00254{transform:matrix(0.284316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284316,0.000000,0.000000,0.250000,0,0);}
.m32_c00254{transform:matrix(0.284504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284504,0.000000,0.000000,0.250000,0,0);}
.mad_c00254{transform:matrix(0.285317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285317,0.000000,0.000000,0.250000,0,0);}
.mf_c00254{transform:matrix(0.285890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285890,0.000000,0.000000,0.250000,0,0);}
.ma4_c00254{transform:matrix(0.286642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286642,0.000000,0.000000,0.250000,0,0);}
.m88_c00254{transform:matrix(0.286896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286896,0.000000,0.000000,0.250000,0,0);}
.m62_c00254{transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);}
.m4_c00254{transform:matrix(0.287057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287057,0.000000,0.000000,0.250000,0,0);}
.m93_c00254{transform:matrix(0.287057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287057,0.000000,0.000000,0.250000,0,0);}
.m36_c00254{transform:matrix(0.287521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287521,0.000000,0.000000,0.250000,0,0);}
.m52_c00254{transform:matrix(0.290285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290285,0.000000,0.000000,0.250000,0,0);}
.m33_c00254{transform:matrix(0.290806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290806,0.000000,0.000000,0.250000,0,0);}
.mbd_c00254{transform:matrix(0.292444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292444,0.000000,0.000000,0.250000,0,0);}
.m56_c00254{transform:matrix(0.292564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292564,0.000000,0.000000,0.250000,0,0);}
.m8d_c00254{transform:matrix(0.292598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292598,0.000000,0.000000,0.250000,0,0);}
.ma9_c00254{transform:matrix(0.292819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292819,0.000000,0.000000,0.250000,0,0);}
.mb3_c00254{transform:matrix(0.293256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293256,0.000000,0.000000,0.250000,0,0);}
.m27_c00254{transform:matrix(0.294383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294383,0.000000,0.000000,0.250000,0,0);}
.m4b_c00254{transform:matrix(0.295169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295169,0.000000,0.000000,0.250000,0,0);}
.m63_c00254{transform:matrix(0.295628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295628,0.000000,0.000000,0.250000,0,0);}
.mb5_c00254{transform:matrix(0.295679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295679,0.000000,0.000000,0.250000,0,0);}
.ma0_c00254{transform:matrix(0.295738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295738,0.000000,0.000000,0.250000,0,0);}
.m5b_c00254{transform:matrix(0.296227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296227,0.000000,0.000000,0.250000,0,0);}
.m6a_c00254{transform:matrix(0.296778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296778,0.000000,0.000000,0.250000,0,0);}
.m21_c00254{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m5c_c00254{transform:matrix(0.297275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297275,0.000000,0.000000,0.250000,0,0);}
.m2c_c00254{transform:matrix(0.297567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297567,0.000000,0.000000,0.250000,0,0);}
.m8b_c00254{transform:matrix(0.298085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298085,0.000000,0.000000,0.250000,0,0);}
.mab_c00254{transform:matrix(0.298751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298751,0.000000,0.000000,0.250000,0,0);}
.m9c_c00254{transform:matrix(0.299102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299102,0.000000,0.000000,0.250000,0,0);}
.m87_c00254{transform:matrix(0.299263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299263,0.000000,0.000000,0.250000,0,0);}
.ma5_c00254{transform:matrix(0.299320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299320,0.000000,0.000000,0.250000,0,0);}
.m4f_c00254{transform:matrix(0.299607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299607,0.000000,0.000000,0.250000,0,0);}
.m80_c00254{transform:matrix(0.299839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299839,0.000000,0.000000,0.250000,0,0);}
.m2f_c00254{transform:matrix(0.302227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302227,0.000000,0.000000,0.250000,0,0);}
.mbb_c00254{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m11_c00254{transform:matrix(0.302703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302703,0.000000,0.000000,0.250000,0,0);}
.m20_c00254{transform:matrix(0.303475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303475,0.000000,0.000000,0.250000,0,0);}
.mb0_c00254{transform:matrix(0.303723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303723,0.000000,0.000000,0.250000,0,0);}
.m54_c00254{transform:matrix(0.304531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304531,0.000000,0.000000,0.250000,0,0);}
.m85_c00254{transform:matrix(0.304666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304666,0.000000,0.000000,0.250000,0,0);}
.m2b_c00254{transform:matrix(0.304815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304815,0.000000,0.000000,0.250000,0,0);}
.m7d_c00254{transform:matrix(0.305059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305059,0.000000,0.000000,0.250000,0,0);}
.m94_c00254{transform:matrix(0.305085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305085,0.000000,0.000000,0.250000,0,0);}
.m6d_c00254{transform:matrix(0.305713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305713,0.000000,0.000000,0.250000,0,0);}
.m24_c00254{transform:matrix(0.305726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305726,0.000000,0.000000,0.250000,0,0);}
.m35_c00254{transform:matrix(0.306221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306221,0.000000,0.000000,0.250000,0,0);}
.m17_c00254{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.mb4_c00254{transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);}
.m74_c00254{transform:matrix(0.308963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308963,0.000000,0.000000,0.250000,0,0);}
.mb9_c00254{transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);}
.m9_c00254{transform:matrix(0.310877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310877,0.000000,0.000000,0.250000,0,0);}
.m66_c00254{transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);}
.m61_c00254{transform:matrix(0.313415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313415,0.000000,0.000000,0.250000,0,0);}
.m34_c00254{transform:matrix(0.313804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313804,0.000000,0.000000,0.250000,0,0);}
.m92_c00254{transform:matrix(0.313838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313838,0.000000,0.000000,0.250000,0,0);}
.m4a_c00254{transform:matrix(0.313921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313921,0.000000,0.000000,0.250000,0,0);}
.m1d_c00254{transform:matrix(0.315597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315597,0.000000,0.000000,0.250000,0,0);}
.m47_c00254{transform:matrix(0.316725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316725,0.000000,0.000000,0.250000,0,0);}
.m3a_c00254{transform:matrix(0.317172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317172,0.000000,0.000000,0.250000,0,0);}
.m6c_c00254{transform:matrix(0.317396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317396,0.000000,0.000000,0.250000,0,0);}
.m4c_c00254{transform:matrix(0.317900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317900,0.000000,0.000000,0.250000,0,0);}
.m76_c00254{transform:matrix(0.318648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318648,0.000000,0.000000,0.250000,0,0);}
.m70_c00254{transform:matrix(0.319777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319777,0.000000,0.000000,0.250000,0,0);}
.m6b_c00254{transform:matrix(0.319794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319794,0.000000,0.000000,0.250000,0,0);}
.maa_c00254{transform:matrix(0.320064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320064,0.000000,0.000000,0.250000,0,0);}
.m41_c00254{transform:matrix(0.321354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321354,0.000000,0.000000,0.250000,0,0);}
.m7a_c00254{transform:matrix(0.322521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322521,0.000000,0.000000,0.250000,0,0);}
.m26_c00254{transform:matrix(0.323214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323214,0.000000,0.000000,0.250000,0,0);}
.mae_c00254{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.mb1_c00254{transform:matrix(0.323660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323660,0.000000,0.000000,0.250000,0,0);}
.m73_c00254{transform:matrix(0.324891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324891,0.000000,0.000000,0.250000,0,0);}
.mac_c00254{transform:matrix(0.325583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325583,0.000000,0.000000,0.250000,0,0);}
.m43_c00254{transform:matrix(0.326107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326107,0.000000,0.000000,0.250000,0,0);}
.m13_c00254{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m64_c00254{transform:matrix(0.329713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329713,0.000000,0.000000,0.250000,0,0);}
.m22_c00254{transform:matrix(0.330203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330203,0.000000,0.000000,0.250000,0,0);}
.ma2_c00254{transform:matrix(0.331020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331020,0.000000,0.000000,0.250000,0,0);}
.m7e_c00254{transform:matrix(0.332426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332426,0.000000,0.000000,0.250000,0,0);}
.m49_c00254{transform:matrix(0.332895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332895,0.000000,0.000000,0.250000,0,0);}
.m2d_c00254{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.ma8_c00254{transform:matrix(0.333358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333358,0.000000,0.000000,0.250000,0,0);}
.m16_c00254{transform:matrix(0.336458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336458,0.000000,0.000000,0.250000,0,0);}
.m89_c00254{transform:matrix(0.337910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337910,0.000000,0.000000,0.250000,0,0);}
.maf_c00254{transform:matrix(0.338456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338456,0.000000,0.000000,0.250000,0,0);}
.mb7_c00254{transform:matrix(0.338661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338661,0.000000,0.000000,0.250000,0,0);}
.m42_c00254{transform:matrix(0.338749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338749,0.000000,0.000000,0.250000,0,0);}
.m79_c00254{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m1c_c00254{transform:matrix(0.342184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342184,0.000000,0.000000,0.250000,0,0);}
.m3f_c00254{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.m51_c00254{transform:matrix(0.344410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344410,0.000000,0.000000,0.250000,0,0);}
.mc_c00254{transform:matrix(0.347013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347013,0.000000,0.000000,0.250000,0,0);}
.m29_c00254{transform:matrix(0.347324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347324,0.000000,0.000000,0.250000,0,0);}
.m91_c00254{transform:matrix(0.347545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347545,0.000000,0.000000,0.250000,0,0);}
.m9a_c00254{transform:matrix(0.348399,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348399,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348399,0.000000,0.000000,0.250000,0,0);}
.m48_c00254{transform:matrix(0.348765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348765,0.000000,0.000000,0.250000,0,0);}
.m7_c00254{transform:matrix(0.352372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352372,0.000000,0.000000,0.250000,0,0);}
.m58_c00254{transform:matrix(0.353165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353165,0.000000,0.000000,0.250000,0,0);}
.m5d_c00254{transform:matrix(0.354873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354873,0.000000,0.000000,0.250000,0,0);}
.m3c_c00254{transform:matrix(0.355184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355184,0.000000,0.000000,0.250000,0,0);}
.m19_c00254{transform:matrix(0.358842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358842,0.000000,0.000000,0.250000,0,0);}
.m1f_c00254{transform:matrix(0.359169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359169,0.000000,0.000000,0.250000,0,0);}
.ma1_c00254{transform:matrix(0.361926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361926,0.000000,0.000000,0.250000,0,0);}
.mba_c00254{transform:matrix(0.368506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368506,0.000000,0.000000,0.250000,0,0);}
.m9e_c00254{transform:matrix(0.369284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369284,0.000000,0.000000,0.250000,0,0);}
.m7b_c00254{transform:matrix(0.374531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374531,0.000000,0.000000,0.250000,0,0);}
.m7c_c00254{transform:matrix(0.380304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380304,0.000000,0.000000,0.250000,0,0);}
.m25_c00254{transform:matrix(0.380532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380532,0.000000,0.000000,0.250000,0,0);}
.m1e_c00254{transform:matrix(0.381065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381065,0.000000,0.000000,0.250000,0,0);}
.m30_c00254{transform:matrix(0.392859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392859,0.000000,0.000000,0.250000,0,0);}
.m68_c00254{transform:matrix(0.399633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399633,0.000000,0.000000,0.250000,0,0);}
.m31_c00254{transform:matrix(0.404579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404579,0.000000,0.000000,0.250000,0,0);}
.m38_c00254{transform:matrix(0.408896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408896,0.000000,0.000000,0.250000,0,0);}
.m40_c00254{transform:matrix(0.424628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424628,0.000000,0.000000,0.250000,0,0);}
.v0_c00254{vertical-align:0.000000px;}
.ls9_c00254{letter-spacing:-2.744280px;}
.ls8_c00254{letter-spacing:-2.375762px;}
.ls7_c00254{letter-spacing:-1.027145px;}
.lse_c00254{letter-spacing:-0.964418px;}
.lsc_c00254{letter-spacing:-0.313632px;}
.ls13_c00254{letter-spacing:-0.148975px;}
.ls4_c00254{letter-spacing:0.000000px;}
.lsf_c00254{letter-spacing:1.262369px;}
.ls3_c00254{letter-spacing:1.582416px;}
.ls10_c00254{letter-spacing:1.685772px;}
.ls2_c00254{letter-spacing:2.132698px;}
.ls12_c00254{letter-spacing:3.010867px;}
.ls11_c00254{letter-spacing:3.564000px;}
.lsa_c00254{letter-spacing:3.653813px;}
.ls5_c00254{letter-spacing:3.722400px;}
.lsb_c00254{letter-spacing:3.889037px;}
.ls6_c00254{letter-spacing:3.920400px;}
.ls0_c00254{letter-spacing:5.410152px;}
.ls1_c00254{letter-spacing:24.071256px;}
.lsd_c00254{letter-spacing:52.747398px;}
.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;}
}
.ws1_c00254{word-spacing:-23.255813px;}
.ws0_c00254{word-spacing:-19.602000px;}
.ws2_c00254{word-spacing:-18.637582px;}
.ws4_c00254{word-spacing:-2.195424px;}
.ws6_c00254{word-spacing:0.000000px;}
.ws5_c00254{word-spacing:1.254528px;}
.ws3_c00254{word-spacing:3.606768px;}
._5_c00254{margin-left:-19.680408px;}
._14_c00254{margin-left:-12.074832px;}
._c_c00254{margin-left:-6.899904px;}
._9_c00254{width:1.873951px;}
._17_c00254{width:2.901096px;}
._4_c00254{width:4.155624px;}
._7_c00254{width:5.679828px;}
._a_c00254{width:6.899904px;}
._13_c00254{width:7.919208px;}
._0_c00254{width:9.173736px;}
._10_c00254{width:11.133936px;}
._1_c00254{width:14.191056px;}
._b_c00254{width:16.465680px;}
._6_c00254{width:17.955036px;}
._e_c00254{width:20.857716px;}
._11_c00254{width:23.208768px;}
._15_c00254{width:28.148472px;}
._12_c00254{width:29.677507px;}
._8_c00254{width:31.833648px;}
._f_c00254{width:33.794640px;}
._d_c00254{width:35.518428px;}
._3_c00254{width:37.680588px;}
._2_c00254{width:39.674448px;}
._16_c00254{width:41.085792px;}
.fc0_c00254{color:transparent;}
.fs0_c00254{font-size:22.374000px;}
.fs5_c00254{font-size:33.660000px;}
.fs6_c00254{font-size:50.688000px;}
.fs3_c00254{font-size:52.747398px;}
.fs4_c00254{font-size:71.280000px;}
.fs1_c00254{font-size:74.448000px;}
.fs2_c00254{font-size:78.408000px;}
.y0_c00254{bottom:0.000000px;}
.y1_c00254{bottom:76.500000px;}
.y1c_c00254{bottom:103.624335px;}
.y1b_c00254{bottom:124.651935px;}
.y1a_c00254{bottom:155.302335px;}
.y19_c00254{bottom:190.942335px;}
.y18_c00254{bottom:223.726185px;}
.y17_c00254{bottom:256.163535px;}
.y16_c00254{bottom:288.952335px;}
.y15_c00254{bottom:321.384735px;}
.y14_c00254{bottom:355.237785px;}
.y13_c00254{bottom:387.675135px;}
.y12_c00254{bottom:420.107535px;}
.y11_c00254{bottom:486.392985px;}
.y10_c00254{bottom:518.473935px;}
.yf_c00254{bottom:550.901385px;}
.yd_c00254{bottom:584.042625px;}
.ye_c00254{bottom:584.051535px;}
.yc_c00254{bottom:616.483935px;}
.yb_c00254{bottom:648.554985px;}
.ya_c00254{bottom:680.992335px;}
.y9_c00254{bottom:714.493935px;}
.y8_c00254{bottom:746.921385px;}
.y7_c00254{bottom:780.071535px;}
.y6_c00254{bottom:813.568185px;}
.y5_c00254{bottom:846.000585px;}
.y4_c00254{bottom:909.796185px;}
.y3_c00254{bottom:1073.032335px;}
.y2_c00254{bottom:1110.092985px;}
.h2_c00254{height:21.958857px;}
.h7_c00254{height:33.035449px;}
.h5_c00254{height:35.129767px;}
.h8_c00254{height:52.099277px;}
.h6_c00254{height:69.957422px;}
.h3_c00254{height:73.066641px;}
.h4_c00254{height:76.953164px;}
.h1_c00254{height:1110.000000px;}
.h0_c00254{height:1263.000000px;}
.w1_c00254{width:763.500000px;}
.w0_c00254{width:892.500000px;}
.x0_c00254{left:0.000000px;}
.x1_c00254{left:64.500000px;}
.x5_c00254{left:66.296400px;}
.x1b_c00254{left:68.058600px;}
.x35_c00254{left:85.715250px;}
.x41_c00254{left:86.774550px;}
.x27_c00254{left:98.016000px;}
.x28_c00254{left:108.891150px;}
.x10_c00254{left:119.211900px;}
.x4b_c00254{left:128.879250px;}
.x6_c00254{left:130.809750px;}
.x36_c00254{left:141.432450px;}
.x6d_c00254{left:151.560150px;}
.x3d_c00254{left:152.758050px;}
.x42_c00254{left:163.247100px;}
.x7_c00254{left:164.316300px;}
.x37_c00254{left:174.651900px;}
.x43_c00254{left:185.259750px;}
.x38_c00254{left:195.476550px;}
.x8_c00254{left:196.733850px;}
.x30_c00254{left:206.218050px;}
.x1c_c00254{left:207.435750px;}
.x64_c00254{left:208.841550px;}
.x11_c00254{left:210.544350px;}
.x3e_c00254{left:218.127750px;}
.x55_c00254{left:219.196950px;}
.x5f_c00254{left:228.314850px;}
.x58_c00254{left:229.814700px;}
.x29_c00254{left:240.739350px;}
.x65_c00254{left:242.724300px;}
.x9_c00254{left:252.005550px;}
.x67_c00254{left:253.050000px;}
.x2a_c00254{left:262.682700px;}
.x4c_c00254{left:264.063750px;}
.x51_c00254{left:272.820300px;}
.x2b_c00254{left:273.859800px;}
.x1d_c00254{left:275.082450px;}
.xa_c00254{left:285.838800px;}
.x39_c00254{left:296.461500px;}
.x1e_c00254{left:306.752550px;}
.x31_c00254{left:317.904900px;}
.x2c_c00254{left:321.181800px;}
.x68_c00254{left:328.433550px;}
.x47_c00254{left:329.695800px;}
.x44_c00254{left:331.759950px;}
.x12_c00254{left:339.541350px;}
.x61_c00254{left:342.412350px;}
.x1f_c00254{left:351.079800px;}
.x4d_c00254{left:353.817150px;}
.x13_c00254{left:362.276700px;}
.x20_c00254{left:372.810300px;}
.x59_c00254{left:374.226000px;}
.xb_c00254{left:375.963450px;}
.x2d_c00254{left:383.843850px;}
.x6c_c00254{left:386.244600px;}
.x3f_c00254{left:395.065500px;}
.x48_c00254{left:396.322800px;}
.x14_c00254{left:406.316850px;}
.x4e_c00254{left:416.454450px;}
.x52_c00254{left:428.022600px;}
.xc_c00254{left:429.047250px;}
.x45_c00254{left:438.194850px;}
.x15_c00254{left:439.848150px;}
.x16_c00254{left:450.124350px;}
.x53_c00254{left:461.172750px;}
.x62_c00254{left:462.237000px;}
.x21_c00254{left:471.503400px;}
.x32_c00254{left:472.552800px;}
.x4f_c00254{left:474.468450px;}
.xd_c00254{left:482.457750px;}
.x56_c00254{left:485.328750px;}
.x6b_c00254{left:493.080450px;}
.x60_c00254{left:494.520900px;}
.x5a_c00254{left:496.792950px;}
.x2e_c00254{left:504.490200px;}
.x22_c00254{left:514.860450px;}
.x5b_c00254{left:516.291000px;}
.x3a_c00254{left:526.389000px;}
.x63_c00254{left:527.458200px;}
.x69_c00254{left:537.274050px;}
.xe_c00254{left:538.600650px;}
.x46_c00254{left:548.886750px;}
.x66_c00254{left:550.223250px;}
.x23_c00254{left:559.925250px;}
.x57_c00254{left:560.979600px;}
.xf_c00254{left:563.172450px;}
.x17_c00254{left:570.973650px;}
.x40_c00254{left:581.477550px;}
.x24_c00254{left:593.456550px;}
.x3b_c00254{left:603.549600px;}
.x18_c00254{left:605.173200px;}
.x50_c00254{left:614.593050px;}
.x33_c00254{left:624.280200px;}
.x49_c00254{left:625.438500px;}
.x5c_c00254{left:628.660950px;}
.x54_c00254{left:636.422550px;}
.x6a_c00254{left:637.937250px;}
.x25_c00254{left:647.753100px;}
.x5d_c00254{left:648.990600px;}
.x3_c00254{left:651.143850px;}
.x2_c00254{left:655.554300px;}
.x2f_c00254{left:658.450050px;}
.x5e_c00254{left:659.935050px;}
.x4_c00254{left:662.647650px;}
.x4a_c00254{left:669.696450px;}
.x19_c00254{left:681.126000px;}
.x34_c00254{left:691.649700px;}
.x26_c00254{left:692.837700px;}
.x1a_c00254{left:702.841650px;}
.x3c_c00254{left:745.584900px;}
.x6e_c00254{left:750.133950px;}
@media print{
.v0_c00254{vertical-align:0.000000pt;}
.ls9_c00254{letter-spacing:-2.439360pt;}
.ls8_c00254{letter-spacing:-2.111789pt;}
.ls7_c00254{letter-spacing:-0.913018pt;}
.lse_c00254{letter-spacing:-0.857261pt;}
.lsc_c00254{letter-spacing:-0.278784pt;}
.ls13_c00254{letter-spacing:-0.132422pt;}
.ls4_c00254{letter-spacing:0.000000pt;}
.lsf_c00254{letter-spacing:1.122106pt;}
.ls3_c00254{letter-spacing:1.406592pt;}
.ls10_c00254{letter-spacing:1.498464pt;}
.ls2_c00254{letter-spacing:1.895731pt;}
.ls12_c00254{letter-spacing:2.676326pt;}
.ls11_c00254{letter-spacing:3.168000pt;}
.lsa_c00254{letter-spacing:3.247834pt;}
.ls5_c00254{letter-spacing:3.308800pt;}
.lsb_c00254{letter-spacing:3.456922pt;}
.ls6_c00254{letter-spacing:3.484800pt;}
.ls0_c00254{letter-spacing:4.809024pt;}
.ls1_c00254{letter-spacing:21.396672pt;}
.lsd_c00254{letter-spacing:46.886576pt;}
.ws1_c00254{word-spacing:-20.671834pt;}
.ws0_c00254{word-spacing:-17.424000pt;}
.ws2_c00254{word-spacing:-16.566739pt;}
.ws4_c00254{word-spacing:-1.951488pt;}
.ws6_c00254{word-spacing:0.000000pt;}
.ws5_c00254{word-spacing:1.115136pt;}
.ws3_c00254{word-spacing:3.206016pt;}
._5_c00254{margin-left:-17.493696pt;}
._14_c00254{margin-left:-10.733184pt;}
._c_c00254{margin-left:-6.133248pt;}
._9_c00254{width:1.665734pt;}
._17_c00254{width:2.578752pt;}
._4_c00254{width:3.693888pt;}
._7_c00254{width:5.048736pt;}
._a_c00254{width:6.133248pt;}
._13_c00254{width:7.039296pt;}
._0_c00254{width:8.154432pt;}
._10_c00254{width:9.896832pt;}
._1_c00254{width:12.614272pt;}
._b_c00254{width:14.636160pt;}
._6_c00254{width:15.960032pt;}
._e_c00254{width:18.540192pt;}
._11_c00254{width:20.630016pt;}
._15_c00254{width:25.020864pt;}
._12_c00254{width:26.380006pt;}
._8_c00254{width:28.296576pt;}
._f_c00254{width:30.039680pt;}
._d_c00254{width:31.571936pt;}
._3_c00254{width:33.493856pt;}
._2_c00254{width:35.266176pt;}
._16_c00254{width:36.520704pt;}
.fs0_c00254{font-size:19.888000pt;}
.fs5_c00254{font-size:29.920000pt;}
.fs6_c00254{font-size:45.056000pt;}
.fs3_c00254{font-size:46.886576pt;}
.fs4_c00254{font-size:63.360000pt;}
.fs1_c00254{font-size:66.176000pt;}
.fs2_c00254{font-size:69.696000pt;}
.y0_c00254{bottom:0.000000pt;}
.y1_c00254{bottom:68.000000pt;}
.y1c_c00254{bottom:92.110520pt;}
.y1b_c00254{bottom:110.801720pt;}
.y1a_c00254{bottom:138.046520pt;}
.y19_c00254{bottom:169.726520pt;}
.y18_c00254{bottom:198.867720pt;}
.y17_c00254{bottom:227.700920pt;}
.y16_c00254{bottom:256.846520pt;}
.y15_c00254{bottom:285.675320pt;}
.y14_c00254{bottom:315.766920pt;}
.y13_c00254{bottom:344.600120pt;}
.y12_c00254{bottom:373.428920pt;}
.y11_c00254{bottom:432.349320pt;}
.y10_c00254{bottom:460.865720pt;}
.yf_c00254{bottom:489.690120pt;}
.yd_c00254{bottom:519.149000pt;}
.ye_c00254{bottom:519.156920pt;}
.yc_c00254{bottom:547.985720pt;}
.yb_c00254{bottom:576.493320pt;}
.ya_c00254{bottom:605.326520pt;}
.y9_c00254{bottom:635.105720pt;}
.y8_c00254{bottom:663.930120pt;}
.y7_c00254{bottom:693.396920pt;}
.y6_c00254{bottom:723.171720pt;}
.y5_c00254{bottom:752.000520pt;}
.y4_c00254{bottom:808.707720pt;}
.y3_c00254{bottom:953.806520pt;}
.y2_c00254{bottom:986.749320pt;}
.h2_c00254{height:19.518984pt;}
.h7_c00254{height:29.364844pt;}
.h5_c00254{height:31.226460pt;}
.h8_c00254{height:46.310468pt;}
.h6_c00254{height:62.184375pt;}
.h3_c00254{height:64.948125pt;}
.h4_c00254{height:68.402813pt;}
.h1_c00254{height:986.666667pt;}
.h0_c00254{height:1122.666667pt;}
.w1_c00254{width:678.666667pt;}
.w0_c00254{width:793.333333pt;}
.x0_c00254{left:0.000000pt;}
.x1_c00254{left:57.333333pt;}
.x5_c00254{left:58.930133pt;}
.x1b_c00254{left:60.496533pt;}
.x35_c00254{left:76.191333pt;}
.x41_c00254{left:77.132933pt;}
.x27_c00254{left:87.125333pt;}
.x28_c00254{left:96.792133pt;}
.x10_c00254{left:105.966133pt;}
.x4b_c00254{left:114.559333pt;}
.x6_c00254{left:116.275333pt;}
.x36_c00254{left:125.717733pt;}
.x6d_c00254{left:134.720133pt;}
.x3d_c00254{left:135.784933pt;}
.x42_c00254{left:145.108533pt;}
.x7_c00254{left:146.058933pt;}
.x37_c00254{left:155.246133pt;}
.x43_c00254{left:164.675333pt;}
.x38_c00254{left:173.756933pt;}
.x8_c00254{left:174.874533pt;}
.x30_c00254{left:183.304933pt;}
.x1c_c00254{left:184.387333pt;}
.x64_c00254{left:185.636933pt;}
.x11_c00254{left:187.150533pt;}
.x3e_c00254{left:193.891333pt;}
.x55_c00254{left:194.841733pt;}
.x5f_c00254{left:202.946533pt;}
.x58_c00254{left:204.279733pt;}
.x29_c00254{left:213.990533pt;}
.x65_c00254{left:215.754933pt;}
.x9_c00254{left:224.004933pt;}
.x67_c00254{left:224.933333pt;}
.x2a_c00254{left:233.495733pt;}
.x4c_c00254{left:234.723333pt;}
.x51_c00254{left:242.506933pt;}
.x2b_c00254{left:243.430933pt;}
.x1d_c00254{left:244.517733pt;}
.xa_c00254{left:254.078933pt;}
.x39_c00254{left:263.521333pt;}
.x1e_c00254{left:272.668933pt;}
.x31_c00254{left:282.582133pt;}
.x2c_c00254{left:285.494933pt;}
.x68_c00254{left:291.940933pt;}
.x47_c00254{left:293.062933pt;}
.x44_c00254{left:294.897733pt;}
.x12_c00254{left:301.814533pt;}
.x61_c00254{left:304.366533pt;}
.x1f_c00254{left:312.070933pt;}
.x4d_c00254{left:314.504133pt;}
.x13_c00254{left:322.023733pt;}
.x20_c00254{left:331.386933pt;}
.x59_c00254{left:332.645333pt;}
.xb_c00254{left:334.189733pt;}
.x2d_c00254{left:341.194533pt;}
.x6c_c00254{left:343.328533pt;}
.x3f_c00254{left:351.169333pt;}
.x48_c00254{left:352.286933pt;}
.x14_c00254{left:361.170533pt;}
.x4e_c00254{left:370.181733pt;}
.x52_c00254{left:380.464533pt;}
.xc_c00254{left:381.375333pt;}
.x45_c00254{left:389.506533pt;}
.x15_c00254{left:390.976133pt;}
.x16_c00254{left:400.110533pt;}
.x53_c00254{left:409.931333pt;}
.x62_c00254{left:410.877333pt;}
.x21_c00254{left:419.114133pt;}
.x32_c00254{left:420.046933pt;}
.x4f_c00254{left:421.749733pt;}
.xd_c00254{left:428.851333pt;}
.x56_c00254{left:431.403333pt;}
.x6b_c00254{left:438.293733pt;}
.x60_c00254{left:439.574133pt;}
.x5a_c00254{left:441.593733pt;}
.x2e_c00254{left:448.435733pt;}
.x22_c00254{left:457.653733pt;}
.x5b_c00254{left:458.925333pt;}
.x3a_c00254{left:467.901333pt;}
.x63_c00254{left:468.851733pt;}
.x69_c00254{left:477.576933pt;}
.xe_c00254{left:478.756133pt;}
.x46_c00254{left:487.899333pt;}
.x66_c00254{left:489.087333pt;}
.x23_c00254{left:497.711333pt;}
.x57_c00254{left:498.648533pt;}
.xf_c00254{left:500.597733pt;}
.x17_c00254{left:507.532133pt;}
.x40_c00254{left:516.868933pt;}
.x24_c00254{left:527.516933pt;}
.x3b_c00254{left:536.488533pt;}
.x18_c00254{left:537.931733pt;}
.x50_c00254{left:546.304933pt;}
.x33_c00254{left:554.915733pt;}
.x49_c00254{left:555.945333pt;}
.x5c_c00254{left:558.809733pt;}
.x54_c00254{left:565.708933pt;}
.x6a_c00254{left:567.055333pt;}
.x25_c00254{left:575.780533pt;}
.x5d_c00254{left:576.880533pt;}
.x3_c00254{left:578.794533pt;}
.x2_c00254{left:582.714933pt;}
.x2f_c00254{left:585.288933pt;}
.x5e_c00254{left:586.608933pt;}
.x4_c00254{left:589.020133pt;}
.x4a_c00254{left:595.285733pt;}
.x19_c00254{left:605.445333pt;}
.x34_c00254{left:614.799733pt;}
.x26_c00254{left:615.855733pt;}
.x1a_c00254{left:624.748133pt;}
.x3c_c00254{left:662.742133pt;}
.x6e_c00254{left:666.785733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_930539fe0235f6cdbfbbada0.woff2')format("woff");}.ff1_c00255{font-family:ff1_c00255;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00255;src:url('chunks/assets/font_142fb03e7f945851f8cd3e25.woff2')format("woff");}.ff2_c00255{font-family:ff2_c00255;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m18_c00255{transform:matrix(0.216452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216452,0.000000,0.000000,0.250000,0,0);}
.m3f_c00255{transform:matrix(0.220828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220828,0.000000,0.000000,0.250000,0,0);}
.m21_c00255{transform:matrix(0.225746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225746,0.000000,0.000000,0.250000,0,0);}
.m4_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);}
.m5e_c00255{transform:matrix(0.250825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250825,0.000000,0.000000,0.250000,0,0);}
.m2_c00255{transform:matrix(0.251385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251385,0.000000,0.000000,0.250000,0,0);}
.m8b_c00255{transform:matrix(0.252036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252036,0.000000,0.000000,0.250000,0,0);}
.m12_c00255{transform:matrix(0.252671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252671,0.000000,0.000000,0.250000,0,0);}
.m11_c00255{transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);}
.m7e_c00255{transform:matrix(0.253143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253143,0.000000,0.000000,0.250000,0,0);}
.m70_c00255{transform:matrix(0.253661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253661,0.000000,0.000000,0.250000,0,0);}
.m16_c00255{transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);}
.m3b_c00255{transform:matrix(0.254177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254177,0.000000,0.000000,0.250000,0,0);}
.m54_c00255{transform:matrix(0.254614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254614,0.000000,0.000000,0.250000,0,0);}
.m77_c00255{transform:matrix(0.255186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255186,0.000000,0.000000,0.250000,0,0);}
.m69_c00255{transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);}
.m1b_c00255{transform:matrix(0.256191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256191,0.000000,0.000000,0.250000,0,0);}
.m59_c00255{transform:matrix(0.256267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256267,0.000000,0.000000,0.250000,0,0);}
.m3c_c00255{transform:matrix(0.256271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256271,0.000000,0.000000,0.250000,0,0);}
.m32_c00255{transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);}
.m45_c00255{transform:matrix(0.256940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256940,0.000000,0.000000,0.250000,0,0);}
.m2f_c00255{transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);}
.m43_c00255{transform:matrix(0.257657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257657,0.000000,0.000000,0.250000,0,0);}
.m71_c00255{transform:matrix(0.259211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259211,0.000000,0.000000,0.250000,0,0);}
.m1a_c00255{transform:matrix(0.259376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259376,0.000000,0.000000,0.250000,0,0);}
.m83_c00255{transform:matrix(0.259586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259586,0.000000,0.000000,0.250000,0,0);}
.m9_c00255{transform:matrix(0.259659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259659,0.000000,0.000000,0.250000,0,0);}
.m98_c00255{transform:matrix(0.259746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259746,0.000000,0.000000,0.250000,0,0);}
.m5f_c00255{transform:matrix(0.259941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259941,0.000000,0.000000,0.250000,0,0);}
.m2e_c00255{transform:matrix(0.261087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261087,0.000000,0.000000,0.250000,0,0);}
.m4b_c00255{transform:matrix(0.262285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262285,0.000000,0.000000,0.250000,0,0);}
.m35_c00255{transform:matrix(0.262422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262422,0.000000,0.000000,0.250000,0,0);}
.m80_c00255{transform:matrix(0.262549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262549,0.000000,0.000000,0.250000,0,0);}
.m82_c00255{transform:matrix(0.262576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262576,0.000000,0.000000,0.250000,0,0);}
.m2a_c00255{transform:matrix(0.264069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264069,0.000000,0.000000,0.250000,0,0);}
.m9b_c00255{transform:matrix(0.264094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264094,0.000000,0.000000,0.250000,0,0);}
.m39_c00255{transform:matrix(0.264383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264383,0.000000,0.000000,0.250000,0,0);}
.m87_c00255{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);}
.m6b_c00255{transform:matrix(0.264437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264437,0.000000,0.000000,0.250000,0,0);}
.m0_c00255{transform:matrix(0.265392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265392,0.000000,0.000000,0.250000,0,0);}
.m5c_c00255{transform:matrix(0.266539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266539,0.000000,0.000000,0.250000,0,0);}
.m46_c00255{transform:matrix(0.266922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266922,0.000000,0.000000,0.250000,0,0);}
.m92_c00255{transform:matrix(0.267018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267018,0.000000,0.000000,0.250000,0,0);}
.m24_c00255{transform:matrix(0.267437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267437,0.000000,0.000000,0.250000,0,0);}
.m25_c00255{transform:matrix(0.267516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267516,0.000000,0.000000,0.250000,0,0);}
.m7_c00255{transform:matrix(0.267626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267626,0.000000,0.000000,0.250000,0,0);}
.ma3_c00255{transform:matrix(0.267754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267754,0.000000,0.000000,0.250000,0,0);}
.m3e_c00255{transform:matrix(0.268222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268222,0.000000,0.000000,0.250000,0,0);}
.m53_c00255{transform:matrix(0.268546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268546,0.000000,0.000000,0.250000,0,0);}
.m26_c00255{transform:matrix(0.268901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268901,0.000000,0.000000,0.250000,0,0);}
.m36_c00255{transform:matrix(0.269095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269095,0.000000,0.000000,0.250000,0,0);}
.m90_c00255{transform:matrix(0.269730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269730,0.000000,0.000000,0.250000,0,0);}
.m37_c00255{transform:matrix(0.269902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269902,0.000000,0.000000,0.250000,0,0);}
.ma_c00255{transform:matrix(0.270152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270152,0.000000,0.000000,0.250000,0,0);}
.m55_c00255{transform:matrix(0.270269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270269,0.000000,0.000000,0.250000,0,0);}
.mb_c00255{transform:matrix(0.270838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270838,0.000000,0.000000,0.250000,0,0);}
.m6a_c00255{transform:matrix(0.271491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271491,0.000000,0.000000,0.250000,0,0);}
.m72_c00255{transform:matrix(0.272306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272306,0.000000,0.000000,0.250000,0,0);}
.m22_c00255{transform:matrix(0.272977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272977,0.000000,0.000000,0.250000,0,0);}
.m9f_c00255{transform:matrix(0.273059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273059,0.000000,0.000000,0.250000,0,0);}
.m89_c00255{transform:matrix(0.274195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274195,0.000000,0.000000,0.250000,0,0);}
.m8d_c00255{transform:matrix(0.274945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274945,0.000000,0.000000,0.250000,0,0);}
.m3d_c00255{transform:matrix(0.275149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275149,0.000000,0.000000,0.250000,0,0);}
.m6_c00255{transform:matrix(0.275315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275315,0.000000,0.000000,0.250000,0,0);}
.m64_c00255{transform:matrix(0.275369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275369,0.000000,0.000000,0.250000,0,0);}
.mf_c00255{transform:matrix(0.275397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275397,0.000000,0.000000,0.250000,0,0);}
.m4a_c00255{transform:matrix(0.275510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275510,0.000000,0.000000,0.250000,0,0);}
.ma4_c00255{transform:matrix(0.276127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276127,0.000000,0.000000,0.250000,0,0);}
.ma6_c00255{transform:matrix(0.276179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276179,0.000000,0.000000,0.250000,0,0);}
.m10_c00255{transform:matrix(0.276522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276522,0.000000,0.000000,0.250000,0,0);}
.m8c_c00255{transform:matrix(0.277166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277166,0.000000,0.000000,0.250000,0,0);}
.m1_c00255{transform:matrix(0.277556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277556,0.000000,0.000000,0.250000,0,0);}
.m3a_c00255{transform:matrix(0.277752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277752,0.000000,0.000000,0.250000,0,0);}
.m7f_c00255{transform:matrix(0.277817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277817,0.000000,0.000000,0.250000,0,0);}
.m65_c00255{transform:matrix(0.278275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278275,0.000000,0.000000,0.250000,0,0);}
.m4c_c00255{transform:matrix(0.278575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278575,0.000000,0.000000,0.250000,0,0);}
.m40_c00255{transform:matrix(0.278680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278680,0.000000,0.000000,0.250000,0,0);}
.m67_c00255{transform:matrix(0.279195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279195,0.000000,0.000000,0.250000,0,0);}
.m15_c00255{transform:matrix(0.279279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279279,0.000000,0.000000,0.250000,0,0);}
.m4e_c00255{transform:matrix(0.279294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279294,0.000000,0.000000,0.250000,0,0);}
.m52_c00255{transform:matrix(0.280240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280240,0.000000,0.000000,0.250000,0,0);}
.m33_c00255{transform:matrix(0.280468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280468,0.000000,0.000000,0.250000,0,0);}
.m88_c00255{transform:matrix(0.280516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280516,0.000000,0.000000,0.250000,0,0);}
.m56_c00255{transform:matrix(0.280568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280568,0.000000,0.000000,0.250000,0,0);}
.m9c_c00255{transform:matrix(0.280712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280712,0.000000,0.000000,0.250000,0,0);}
.m7d_c00255{transform:matrix(0.281385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281385,0.000000,0.000000,0.250000,0,0);}
.m76_c00255{transform:matrix(0.281896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281896,0.000000,0.000000,0.250000,0,0);}
.m8f_c00255{transform:matrix(0.282525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282525,0.000000,0.000000,0.250000,0,0);}
.m48_c00255{transform:matrix(0.283278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283278,0.000000,0.000000,0.250000,0,0);}
.m2b_c00255{transform:matrix(0.283760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283760,0.000000,0.000000,0.250000,0,0);}
.m2c_c00255{transform:matrix(0.283785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283785,0.000000,0.000000,0.250000,0,0);}
.m73_c00255{transform:matrix(0.284631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284631,0.000000,0.000000,0.250000,0,0);}
.m62_c00255{transform:matrix(0.284773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284773,0.000000,0.000000,0.250000,0,0);}
.m75_c00255{transform:matrix(0.285286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285286,0.000000,0.000000,0.250000,0,0);}
.m17_c00255{transform:matrix(0.285932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285932,0.000000,0.000000,0.250000,0,0);}
.m1f_c00255{transform:matrix(0.286442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286442,0.000000,0.000000,0.250000,0,0);}
.m94_c00255{transform:matrix(0.286515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286515,0.000000,0.000000,0.250000,0,0);}
.m41_c00255{transform:matrix(0.287502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287502,0.000000,0.000000,0.250000,0,0);}
.m5b_c00255{transform:matrix(0.288347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288347,0.000000,0.000000,0.250000,0,0);}
.m5_c00255{transform:matrix(0.289930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289930,0.000000,0.000000,0.250000,0,0);}
.ma0_c00255{transform:matrix(0.290068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290068,0.000000,0.000000,0.250000,0,0);}
.m4d_c00255{transform:matrix(0.290096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290096,0.000000,0.000000,0.250000,0,0);}
.m28_c00255{transform:matrix(0.290310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290310,0.000000,0.000000,0.250000,0,0);}
.m9a_c00255{transform:matrix(0.290409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290409,0.000000,0.000000,0.250000,0,0);}
.m95_c00255{transform:matrix(0.290667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290667,0.000000,0.000000,0.250000,0,0);}
.m34_c00255{transform:matrix(0.291401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291401,0.000000,0.000000,0.250000,0,0);}
.m44_c00255{transform:matrix(0.291919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291919,0.000000,0.000000,0.250000,0,0);}
.m61_c00255{transform:matrix(0.291999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291999,0.000000,0.000000,0.250000,0,0);}
.m1e_c00255{transform:matrix(0.292557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292557,0.000000,0.000000,0.250000,0,0);}
.me_c00255{transform:matrix(0.293261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293261,0.000000,0.000000,0.250000,0,0);}
.ma2_c00255{transform:matrix(0.293838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293838,0.000000,0.000000,0.250000,0,0);}
.m7a_c00255{transform:matrix(0.294159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294159,0.000000,0.000000,0.250000,0,0);}
.m49_c00255{transform:matrix(0.294807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294807,0.000000,0.000000,0.250000,0,0);}
.m14_c00255{transform:matrix(0.295294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295294,0.000000,0.000000,0.250000,0,0);}
.m38_c00255{transform:matrix(0.295766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295766,0.000000,0.000000,0.250000,0,0);}
.m6e_c00255{transform:matrix(0.296451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296451,0.000000,0.000000,0.250000,0,0);}
.m51_c00255{transform:matrix(0.296513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296513,0.000000,0.000000,0.250000,0,0);}
.m27_c00255{transform:matrix(0.296594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296594,0.000000,0.000000,0.250000,0,0);}
.ma5_c00255{transform:matrix(0.296704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296704,0.000000,0.000000,0.250000,0,0);}
.m57_c00255{transform:matrix(0.297118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297118,0.000000,0.000000,0.250000,0,0);}
.m99_c00255{transform:matrix(0.297296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297296,0.000000,0.000000,0.250000,0,0);}
.m29_c00255{transform:matrix(0.297536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297536,0.000000,0.000000,0.250000,0,0);}
.m91_c00255{transform:matrix(0.297655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297655,0.000000,0.000000,0.250000,0,0);}
.m42_c00255{transform:matrix(0.299544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299544,0.000000,0.000000,0.250000,0,0);}
.m3_c00255{transform:matrix(0.299578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299578,0.000000,0.000000,0.250000,0,0);}
.m13_c00255{transform:matrix(0.299992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299992,0.000000,0.000000,0.250000,0,0);}
.m50_c00255{transform:matrix(0.300402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300402,0.000000,0.000000,0.250000,0,0);}
.m8e_c00255{transform:matrix(0.300897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300897,0.000000,0.000000,0.250000,0,0);}
.m5d_c00255{transform:matrix(0.301313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301313,0.000000,0.000000,0.250000,0,0);}
.m7c_c00255{transform:matrix(0.301947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301947,0.000000,0.000000,0.250000,0,0);}
.m63_c00255{transform:matrix(0.302298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302298,0.000000,0.000000,0.250000,0,0);}
.m9d_c00255{transform:matrix(0.302725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302725,0.000000,0.000000,0.250000,0,0);}
.ma1_c00255{transform:matrix(0.303321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303321,0.000000,0.000000,0.250000,0,0);}
.m96_c00255{transform:matrix(0.304473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304473,0.000000,0.000000,0.250000,0,0);}
.m23_c00255{transform:matrix(0.305423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305423,0.000000,0.000000,0.250000,0,0);}
.m60_c00255{transform:matrix(0.306591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306591,0.000000,0.000000,0.250000,0,0);}
.md_c00255{transform:matrix(0.306957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306957,0.000000,0.000000,0.250000,0,0);}
.m79_c00255{transform:matrix(0.307460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307460,0.000000,0.000000,0.250000,0,0);}
.m6f_c00255{transform:matrix(0.309052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309052,0.000000,0.000000,0.250000,0,0);}
.m66_c00255{transform:matrix(0.309395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309395,0.000000,0.000000,0.250000,0,0);}
.m68_c00255{transform:matrix(0.310854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310854,0.000000,0.000000,0.250000,0,0);}
.m2d_c00255{transform:matrix(0.311649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311649,0.000000,0.000000,0.250000,0,0);}
.m1c_c00255{transform:matrix(0.311954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311954,0.000000,0.000000,0.250000,0,0);}
.m47_c00255{transform:matrix(0.312458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312458,0.000000,0.000000,0.250000,0,0);}
.m30_c00255{transform:matrix(0.314303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314303,0.000000,0.000000,0.250000,0,0);}
.m81_c00255{transform:matrix(0.317524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317524,0.000000,0.000000,0.250000,0,0);}
.m20_c00255{transform:matrix(0.317544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317544,0.000000,0.000000,0.250000,0,0);}
.m31_c00255{transform:matrix(0.318622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318622,0.000000,0.000000,0.250000,0,0);}
.m5a_c00255{transform:matrix(0.319419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319419,0.000000,0.000000,0.250000,0,0);}
.m1d_c00255{transform:matrix(0.319547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319547,0.000000,0.000000,0.250000,0,0);}
.m19_c00255{transform:matrix(0.320282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320282,0.000000,0.000000,0.250000,0,0);}
.m9e_c00255{transform:matrix(0.320973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320973,0.000000,0.000000,0.250000,0,0);}
.m6c_c00255{transform:matrix(0.321525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321525,0.000000,0.000000,0.250000,0,0);}
.m7b_c00255{transform:matrix(0.328064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328064,0.000000,0.000000,0.250000,0,0);}
.m97_c00255{transform:matrix(0.329385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329385,0.000000,0.000000,0.250000,0,0);}
.ma7_c00255{transform:matrix(0.331714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331714,0.000000,0.000000,0.250000,0,0);}
.m84_c00255{transform:matrix(0.333699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333699,0.000000,0.000000,0.250000,0,0);}
.m8_c00255{transform:matrix(0.336450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336450,0.000000,0.000000,0.250000,0,0);}
.m4f_c00255{transform:matrix(0.337925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337925,0.000000,0.000000,0.250000,0,0);}
.m93_c00255{transform:matrix(0.338474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338474,0.000000,0.000000,0.250000,0,0);}
.m6d_c00255{transform:matrix(0.347881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347881,0.000000,0.000000,0.250000,0,0);}
.mc_c00255{transform:matrix(0.358891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358891,0.000000,0.000000,0.250000,0,0);}
.m74_c00255{transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);}
.m85_c00255{transform:matrix(0.364931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364931,0.000000,0.000000,0.250000,0,0);}
.m8a_c00255{transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);}
.m78_c00255{transform:matrix(0.375603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375603,0.000000,0.000000,0.250000,0,0);}
.m86_c00255{transform:matrix(0.380160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380160,0.000000,0.000000,0.250000,0,0);}
.m58_c00255{transform:matrix(0.387742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387742,0.000000,0.000000,0.250000,0,0);}
.v0_c00255{vertical-align:0.000000px;}
.v1_c00255{vertical-align:12.810600px;}
.ls6_c00255{letter-spacing:-2.855167px;}
.ls10_c00255{letter-spacing:-1.463616px;}
.ls14_c00255{letter-spacing:-0.717871px;}
.ls4_c00255{letter-spacing:0.000000px;}
.ls11_c00255{letter-spacing:0.065261px;}
.ls8_c00255{letter-spacing:0.214434px;}
.ls12_c00255{letter-spacing:1.125752px;}
.ls19_c00255{letter-spacing:1.248116px;}
.ls13_c00255{letter-spacing:1.933356px;}
.lsa_c00255{letter-spacing:2.049310px;}
.ls15_c00255{letter-spacing:2.218873px;}
.ls1_c00255{letter-spacing:2.422813px;}
.ls17_c00255{letter-spacing:2.585965px;}
.lsb_c00255{letter-spacing:3.091738px;}
.ls16_c00255{letter-spacing:3.222260px;}
.ls9_c00255{letter-spacing:3.328309px;}
.lsd_c00255{letter-spacing:3.405610px;}
.ls18_c00255{letter-spacing:3.504610px;}
.ls5_c00255{letter-spacing:3.577266px;}
.lsf_c00255{letter-spacing:3.605668px;}
.ls2_c00255{letter-spacing:3.638298px;}
.lse_c00255{letter-spacing:3.866712px;}
.lsc_c00255{letter-spacing:3.964603px;}
.ls7_c00255{letter-spacing:4.005391px;}
.ls3_c00255{letter-spacing:4.078810px;}
.ls0_c00255{letter-spacing:10.038501px;}
.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:-23.485787px;}
.ws1_c00255{word-spacing:0.000000px;}
._1_c00255{width:20.600924px;}
._0_c00255{width:24.970114px;}
.fc0_c00255{color:transparent;}
.fsa_c00255{font-size:34.056198px;}
.fs4_c00255{font-size:40.986198px;}
.fs2_c00255{font-size:49.302000px;}
.fs9_c00255{font-size:56.628000px;}
.fs6_c00255{font-size:66.528000px;}
.fs5_c00255{font-size:68.112198px;}
.fs8_c00255{font-size:70.092198px;}
.fs3_c00255{font-size:71.478000px;}
.fs7_c00255{font-size:74.844000px;}
.fs0_c00255{font-size:81.576198px;}
.fs1_c00255{font-size:88.110000px;}
.y0_c00255{bottom:0.000000px;}
.y1c_c00255{bottom:5.609385px;}
.y1_c00255{bottom:76.500000px;}
.y1b_c00255{bottom:119.662335px;}
.y1a_c00255{bottom:184.878585px;}
.y19_c00255{bottom:215.533935px;}
.y18_c00255{bottom:246.892185px;}
.y17_c00255{bottom:277.903935px;}
.y16_c00255{bottom:309.262185px;}
.y15_c00255{bottom:339.912585px;}
.y14_c00255{bottom:371.632185px;}
.y13_c00255{bottom:403.356735px;}
.y12_c00255{bottom:435.789135px;}
.y11_c00255{bottom:467.503785px;}
.y10_c00255{bottom:499.228335px;}
.yf_c00255{bottom:530.230185px;}
.ye_c00255{bottom:561.954735px;}
.yd_c00255{bottom:593.317935px;}
.yc_c00255{bottom:624.681135px;}
.ya_c00255{bottom:656.395785px;}
.yb_c00255{bottom:661.390335px;}
.y9_c00255{bottom:687.051135px;}
.y8_c00255{bottom:718.765785px;}
.y7_c00255{bottom:781.853535px;}
.y6_c00255{bottom:813.216735px;}
.y5_c00255{bottom:844.579935px;}
.y4_c00255{bottom:875.586735px;}
.y3_c00255{bottom:907.301385px;}
.y2_c00255{bottom:1063.760985px;}
.hb_c00255{height:35.519550px;}
.h5_c00255{height:42.747324px;}
.ha_c00255{height:59.061234px;}
.h7_c00255{height:65.293594px;}
.h9_c00255{height:68.791659px;}
.h6_c00255{height:71.038894px;}
.h8_c00255{height:73.455293px;}
.h4_c00255{height:74.549320px;}
.h2_c00255{height:80.062577px;}
.h3_c00255{height:86.475146px;}
.h1_c00255{height:1110.000000px;}
.h0_c00255{height:1263.000000px;}
.w1_c00255{width:763.500000px;}
.w0_c00255{width:892.500000px;}
.x0_c00255{left:0.000000px;}
.x1_c00255{left:64.500000px;}
.x3d_c00255{left:81.987900px;}
.x17_c00255{left:83.146200px;}
.xd_c00255{left:84.195600px;}
.x68_c00255{left:111.925500px;}
.x34_c00255{left:114.593550px;}
.x2f_c00255{left:125.825100px;}
.x3e_c00255{left:127.221000px;}
.x28_c00255{left:136.259700px;}
.x3_c00255{left:137.685300px;}
.x4c_c00255{left:147.882300px;}
.xe_c00255{left:148.981200px;}
.x63_c00255{left:158.104050px;}
.x52_c00255{left:159.994950px;}
.x1f_c00255{left:169.766250px;}
.x30_c00255{left:171.320550px;}
.x66_c00255{left:180.171150px;}
.xf_c00255{left:181.730400px;}
.x29_c00255{left:192.615450px;}
.x49_c00255{left:203.490600px;}
.x4_c00255{left:204.569700px;}
.x57_c00255{left:213.311400px;}
.x10_c00255{left:214.375650px;}
.x3f_c00255{left:224.394450px;}
.x5_c00255{left:236.121000px;}
.x27_c00255{left:248.659350px;}
.x40_c00255{left:259.485000px;}
.x20_c00255{left:269.810700px;}
.x35_c00255{left:281.215500px;}
.x18_c00255{left:292.268850px;}
.x6_c00255{left:293.323200px;}
.x31_c00255{left:302.040150px;}
.x4d_c00255{left:303.594450px;}
.x21_c00255{left:313.454850px;}
.x7_c00255{left:314.949750px;}
.x5a_c00255{left:325.720950px;}
.x5d_c00255{left:335.259600px;}
.x11_c00255{left:336.427800px;}
.x22_c00255{left:347.877150px;}
.x8_c00255{left:358.915650px;}
.x2a_c00255{left:360.148200px;}
.x64_c00255{left:368.855250px;}
.x4e_c00255{left:369.939300px;}
.x44_c00255{left:371.622300px;}
.x58_c00255{left:379.933350px;}
.x12_c00255{left:381.680700px;}
.x41_c00255{left:390.793650px;}
.x9_c00255{left:392.644950px;}
.x2b_c00255{left:401.490600px;}
.x5b_c00255{left:403.044900px;}
.x36_c00255{left:404.891250px;}
.x5f_c00255{left:412.539000px;}
.x32_c00255{left:414.147750px;}
.x53_c00255{left:423.235950px;}
.x65_c00255{left:424.419000px;}
.x23_c00255{left:425.547600px;}
.x45_c00255{left:434.640750px;}
.x19_c00255{left:435.912900px;}
.x60_c00255{left:445.515900px;}
.x4f_c00255{left:446.555400px;}
.x24_c00255{left:447.599850px;}
.x4a_c00255{left:457.603800px;}
.x5c_c00255{left:467.414700px;}
.x3a_c00255{left:469.270950px;}
.xa_c00255{left:470.404500px;}
.x1a_c00255{left:480.363900px;}
.x13_c00255{left:481.641000px;}
.x50_c00255{left:490.427250px;}
.x37_c00255{left:491.560800px;}
.x42_c00255{left:501.470700px;}
.x1b_c00255{left:512.162700px;}
.x3b_c00255{left:513.167550px;}
.x51_c00255{left:521.528100px;}
.xb_c00255{left:523.498200px;}
.x2c_c00255{left:534.249600px;}
.x25_c00255{left:535.303950px;}
.x62_c00255{left:544.758450px;}
.x4b_c00255{left:546.253350px;}
.x33_c00255{left:555.257400px;}
.x1c_c00255{left:556.881000px;}
.x38_c00255{left:566.617650px;}
.x3c_c00255{left:568.072950px;}
.x59_c00255{left:578.294700px;}
.x46_c00255{left:579.398550px;}
.x1d_c00255{left:588.278850px;}
.x54_c00255{left:589.778700px;}
.x39_c00255{left:601.218150px;}
.x47_c00255{left:610.702350px;}
.x67_c00255{left:619.295550px;}
.x14_c00255{left:622.295250px;}
.x2_c00255{left:633.284250px;}
.x2d_c00255{left:644.030700px;}
.x15_c00255{left:655.460250px;}
.x5e_c00255{left:675.552300px;}
.x61_c00255{left:676.968000px;}
.xc_c00255{left:678.477750px;}
.x16_c00255{left:687.600600px;}
.x55_c00255{left:698.713350px;}
.x26_c00255{left:699.960750px;}
.x1e_c00255{left:701.302200px;}
.x2e_c00255{left:710.266650px;}
.x43_c00255{left:711.375450px;}
.x48_c00255{left:719.691450px;}
.x56_c00255{left:748.426200px;}
@media print{
.v0_c00255{vertical-align:0.000000pt;}
.v1_c00255{vertical-align:11.387200pt;}
.ls6_c00255{letter-spacing:-2.537926pt;}
.ls10_c00255{letter-spacing:-1.300992pt;}
.ls14_c00255{letter-spacing:-0.638107pt;}
.ls4_c00255{letter-spacing:0.000000pt;}
.ls11_c00255{letter-spacing:0.058010pt;}
.ls8_c00255{letter-spacing:0.190608pt;}
.ls12_c00255{letter-spacing:1.000668pt;}
.ls19_c00255{letter-spacing:1.109436pt;}
.ls13_c00255{letter-spacing:1.718539pt;}
.lsa_c00255{letter-spacing:1.821609pt;}
.ls15_c00255{letter-spacing:1.972331pt;}
.ls1_c00255{letter-spacing:2.153612pt;}
.ls17_c00255{letter-spacing:2.298636pt;}
.lsb_c00255{letter-spacing:2.748211pt;}
.ls16_c00255{letter-spacing:2.864231pt;}
.ls9_c00255{letter-spacing:2.958497pt;}
.lsd_c00255{letter-spacing:3.027209pt;}
.ls18_c00255{letter-spacing:3.115209pt;}
.ls5_c00255{letter-spacing:3.179792pt;}
.lsf_c00255{letter-spacing:3.205038pt;}
.ls2_c00255{letter-spacing:3.234043pt;}
.lse_c00255{letter-spacing:3.437077pt;}
.lsc_c00255{letter-spacing:3.524092pt;}
.ls7_c00255{letter-spacing:3.560348pt;}
.ls3_c00255{letter-spacing:3.625609pt;}
.ls0_c00255{letter-spacing:8.923112pt;}
.ws0_c00255{word-spacing:-20.876255pt;}
.ws1_c00255{word-spacing:0.000000pt;}
._1_c00255{width:18.311933pt;}
._0_c00255{width:22.195657pt;}
.fsa_c00255{font-size:30.272176pt;}
.fs4_c00255{font-size:36.432176pt;}
.fs2_c00255{font-size:43.824000pt;}
.fs9_c00255{font-size:50.336000pt;}
.fs6_c00255{font-size:59.136000pt;}
.fs5_c00255{font-size:60.544176pt;}
.fs8_c00255{font-size:62.304176pt;}
.fs3_c00255{font-size:63.536000pt;}
.fs7_c00255{font-size:66.528000pt;}
.fs0_c00255{font-size:72.512176pt;}
.fs1_c00255{font-size:78.320000pt;}
.y0_c00255{bottom:0.000000pt;}
.y1c_c00255{bottom:4.986120pt;}
.y1_c00255{bottom:68.000000pt;}
.y1b_c00255{bottom:106.366520pt;}
.y1a_c00255{bottom:164.336520pt;}
.y19_c00255{bottom:191.585720pt;}
.y18_c00255{bottom:219.459720pt;}
.y17_c00255{bottom:247.025720pt;}
.y16_c00255{bottom:274.899720pt;}
.y15_c00255{bottom:302.144520pt;}
.y14_c00255{bottom:330.339720pt;}
.y13_c00255{bottom:358.539320pt;}
.y12_c00255{bottom:387.368120pt;}
.y11_c00255{bottom:415.558920pt;}
.y10_c00255{bottom:443.758520pt;}
.yf_c00255{bottom:471.315720pt;}
.ye_c00255{bottom:499.515320pt;}
.yd_c00255{bottom:527.393720pt;}
.yc_c00255{bottom:555.272120pt;}
.ya_c00255{bottom:583.462920pt;}
.yb_c00255{bottom:587.902520pt;}
.y9_c00255{bottom:610.712120pt;}
.y8_c00255{bottom:638.902920pt;}
.y7_c00255{bottom:694.980920pt;}
.y6_c00255{bottom:722.859320pt;}
.y5_c00255{bottom:750.737720pt;}
.y4_c00255{bottom:778.299320pt;}
.y3_c00255{bottom:806.490120pt;}
.y2_c00255{bottom:945.565320pt;}
.hb_c00255{height:31.572934pt;}
.h5_c00255{height:37.997621pt;}
.ha_c00255{height:52.498875pt;}
.h7_c00255{height:58.038750pt;}
.h9_c00255{height:61.148141pt;}
.h6_c00255{height:63.145684pt;}
.h8_c00255{height:65.293594pt;}
.h4_c00255{height:66.266063pt;}
.h2_c00255{height:71.166735pt;}
.h3_c00255{height:76.866797pt;}
.h1_c00255{height:986.666667pt;}
.h0_c00255{height:1122.666667pt;}
.w1_c00255{width:678.666667pt;}
.w0_c00255{width:793.333333pt;}
.x0_c00255{left:0.000000pt;}
.x1_c00255{left:57.333333pt;}
.x3d_c00255{left:72.878133pt;}
.x17_c00255{left:73.907733pt;}
.xd_c00255{left:74.840533pt;}
.x68_c00255{left:99.489333pt;}
.x34_c00255{left:101.860933pt;}
.x2f_c00255{left:111.844533pt;}
.x3e_c00255{left:113.085333pt;}
.x28_c00255{left:121.119733pt;}
.x3_c00255{left:122.386933pt;}
.x4c_c00255{left:131.450933pt;}
.xe_c00255{left:132.427733pt;}
.x63_c00255{left:140.536933pt;}
.x52_c00255{left:142.217733pt;}
.x1f_c00255{left:150.903333pt;}
.x30_c00255{left:152.284933pt;}
.x66_c00255{left:160.152133pt;}
.xf_c00255{left:161.538133pt;}
.x29_c00255{left:171.213733pt;}
.x49_c00255{left:180.880533pt;}
.x4_c00255{left:181.839733pt;}
.x57_c00255{left:189.610133pt;}
.x10_c00255{left:190.556133pt;}
.x3f_c00255{left:199.461733pt;}
.x5_c00255{left:209.885333pt;}
.x27_c00255{left:221.030533pt;}
.x40_c00255{left:230.653333pt;}
.x20_c00255{left:239.831733pt;}
.x35_c00255{left:249.969333pt;}
.x18_c00255{left:259.794533pt;}
.x6_c00255{left:260.731733pt;}
.x31_c00255{left:268.480133pt;}
.x4d_c00255{left:269.861733pt;}
.x21_c00255{left:278.626533pt;}
.x7_c00255{left:279.955333pt;}
.x5a_c00255{left:289.529733pt;}
.x5d_c00255{left:298.008533pt;}
.x11_c00255{left:299.046933pt;}
.x22_c00255{left:309.224133pt;}
.x8_c00255{left:319.036133pt;}
.x2a_c00255{left:320.131733pt;}
.x64_c00255{left:327.871333pt;}
.x4e_c00255{left:328.834933pt;}
.x44_c00255{left:330.330933pt;}
.x58_c00255{left:337.718533pt;}
.x12_c00255{left:339.271733pt;}
.x41_c00255{left:347.372133pt;}
.x9_c00255{left:349.017733pt;}
.x2b_c00255{left:356.880533pt;}
.x5b_c00255{left:358.262133pt;}
.x36_c00255{left:359.903333pt;}
.x5f_c00255{left:366.701333pt;}
.x32_c00255{left:368.131333pt;}
.x53_c00255{left:376.209733pt;}
.x65_c00255{left:377.261333pt;}
.x23_c00255{left:378.264533pt;}
.x45_c00255{left:386.347333pt;}
.x19_c00255{left:387.478133pt;}
.x60_c00255{left:396.014133pt;}
.x4f_c00255{left:396.938133pt;}
.x24_c00255{left:397.866533pt;}
.x4a_c00255{left:406.758933pt;}
.x5c_c00255{left:415.479733pt;}
.x3a_c00255{left:417.129733pt;}
.xa_c00255{left:418.137333pt;}
.x1a_c00255{left:426.990133pt;}
.x13_c00255{left:428.125333pt;}
.x50_c00255{left:435.935333pt;}
.x37_c00255{left:436.942933pt;}
.x42_c00255{left:445.751733pt;}
.x1b_c00255{left:455.255733pt;}
.x3b_c00255{left:456.148933pt;}
.x51_c00255{left:463.580533pt;}
.xb_c00255{left:465.331733pt;}
.x2c_c00255{left:474.888533pt;}
.x25_c00255{left:475.825733pt;}
.x62_c00255{left:484.229733pt;}
.x4b_c00255{left:485.558533pt;}
.x33_c00255{left:493.562133pt;}
.x1c_c00255{left:495.005333pt;}
.x38_c00255{left:503.660133pt;}
.x3c_c00255{left:504.953733pt;}
.x59_c00255{left:514.039733pt;}
.x46_c00255{left:515.020933pt;}
.x1d_c00255{left:522.914533pt;}
.x54_c00255{left:524.247733pt;}
.x39_c00255{left:534.416133pt;}
.x47_c00255{left:542.846533pt;}
.x67_c00255{left:550.484933pt;}
.x14_c00255{left:553.151333pt;}
.x2_c00255{left:562.919333pt;}
.x2d_c00255{left:572.471733pt;}
.x15_c00255{left:582.631333pt;}
.x5e_c00255{left:600.490933pt;}
.x61_c00255{left:601.749333pt;}
.xc_c00255{left:603.091333pt;}
.x16_c00255{left:611.200533pt;}
.x55_c00255{left:621.078533pt;}
.x26_c00255{left:622.187333pt;}
.x1e_c00255{left:623.379733pt;}
.x2e_c00255{left:631.348133pt;}
.x43_c00255{left:632.333733pt;}
.x48_c00255{left:639.725733pt;}
.x56_c00255{left:665.267733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cc1f827373a5333ea4a63202.woff2')format("woff");}.ff1_c00256{font-family:ff1_c00256;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00256;src:url('chunks/assets/font_a6303040cf1cb19ae5d613e7.woff2')format("woff");}.ff2_c00256{font-family:ff2_c00256;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00256;src:url('chunks/assets/font_909df7d0f77e8c59f0f4a42c.woff2')format("woff");}.ff3_c00256{font-family:ff3_c00256;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00256;src:url('chunks/assets/font_87df1da9e618fd44482fe56e.woff2')format("woff");}.ff4_c00256{font-family:ff4_c00256;line-height:0.666000;font-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_c00256{transform:matrix(0.080580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080580,0.000000,0.000000,0.250000,0,0);}
.mc7_c00256{transform:matrix(0.177652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177652,0.000000,0.000000,0.250000,0,0);}
.m6f_c00256{transform:matrix(0.221141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221141,0.000000,0.000000,0.250000,0,0);}
.m37_c00256{transform:matrix(0.224013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224013,0.000000,0.000000,0.250000,0,0);}
.m71_c00256{transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);}
.m15_c00256{transform:matrix(0.236189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236189,0.000000,0.000000,0.250000,0,0);}
.m0_c00256{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00256{transform:matrix(0.250711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250711,0.000000,0.000000,0.250000,0,0);}
.mb1_c00256{transform:matrix(0.252169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252169,0.000000,0.000000,0.250000,0,0);}
.m8a_c00256{transform:matrix(0.254360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254360,0.000000,0.000000,0.250000,0,0);}
.m61_c00256{transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);}
.m63_c00256{transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);}
.m66_c00256{transform:matrix(0.258203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258203,0.000000,0.000000,0.250000,0,0);}
.m6a_c00256{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m98_c00256{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m67_c00256{transform:matrix(0.261222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261222,0.000000,0.000000,0.250000,0,0);}
.mc2_c00256{transform:matrix(0.261682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261682,0.000000,0.000000,0.250000,0,0);}
.m2b_c00256{transform:matrix(0.262297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262297,0.000000,0.000000,0.250000,0,0);}
.m82_c00256{transform:matrix(0.262649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262649,0.000000,0.000000,0.250000,0,0);}
.m25_c00256{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.md_c00256{transform:matrix(0.263372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263372,0.000000,0.000000,0.250000,0,0);}
.m5b_c00256{transform:matrix(0.263451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263451,0.000000,0.000000,0.250000,0,0);}
.m44_c00256{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.mba_c00256{transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);}
.mac_c00256{transform:matrix(0.267324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267324,0.000000,0.000000,0.250000,0,0);}
.m11_c00256{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m84_c00256{transform:matrix(0.268045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268045,0.000000,0.000000,0.250000,0,0);}
.m65_c00256{transform:matrix(0.269056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269056,0.000000,0.000000,0.250000,0,0);}
.m80_c00256{transform:matrix(0.269234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269234,0.000000,0.000000,0.250000,0,0);}
.ma9_c00256{transform:matrix(0.269412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269412,0.000000,0.000000,0.250000,0,0);}
.m17_c00256{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m16_c00256{transform:matrix(0.272153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272153,0.000000,0.000000,0.250000,0,0);}
.m5c_c00256{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m60_c00256{transform:matrix(0.273497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273497,0.000000,0.000000,0.250000,0,0);}
.m46_c00256{transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);}
.m32_c00256{transform:matrix(0.273807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273807,0.000000,0.000000,0.250000,0,0);}
.m9e_c00256{transform:matrix(0.274027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274027,0.000000,0.000000,0.250000,0,0);}
.m86_c00256{transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);}
.m9_c00256{transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);}
.m1e_c00256{transform:matrix(0.274479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274479,0.000000,0.000000,0.250000,0,0);}
.m27_c00256{transform:matrix(0.274902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274902,0.000000,0.000000,0.250000,0,0);}
.m30_c00256{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m36_c00256{transform:matrix(0.276320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276320,0.000000,0.000000,0.250000,0,0);}
.m4c_c00256{transform:matrix(0.276771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276771,0.000000,0.000000,0.250000,0,0);}
.m40_c00256{transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);}
.ma2_c00256{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m45_c00256{transform:matrix(0.277905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277905,0.000000,0.000000,0.250000,0,0);}
.m4e_c00256{transform:matrix(0.278073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278073,0.000000,0.000000,0.250000,0,0);}
.mc9_c00256{transform:matrix(0.278700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278700,0.000000,0.000000,0.250000,0,0);}
.m51_c00256{transform:matrix(0.280020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280020,0.000000,0.000000,0.250000,0,0);}
.m29_c00256{transform:matrix(0.280064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280064,0.000000,0.000000,0.250000,0,0);}
.ma0_c00256{transform:matrix(0.280174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280174,0.000000,0.000000,0.250000,0,0);}
.m54_c00256{transform:matrix(0.280263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280263,0.000000,0.000000,0.250000,0,0);}
.m91_c00256{transform:matrix(0.280329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280329,0.000000,0.000000,0.250000,0,0);}
.mc1_c00256{transform:matrix(0.280435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280435,0.000000,0.000000,0.250000,0,0);}
.m1_c00256{transform:matrix(0.280756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280756,0.000000,0.000000,0.250000,0,0);}
.m5a_c00256{transform:matrix(0.280767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280767,0.000000,0.000000,0.250000,0,0);}
.mbf_c00256{transform:matrix(0.280908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280908,0.000000,0.000000,0.250000,0,0);}
.ma3_c00256{transform:matrix(0.280926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280926,0.000000,0.000000,0.250000,0,0);}
.m69_c00256{transform:matrix(0.281208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281208,0.000000,0.000000,0.250000,0,0);}
.mb5_c00256{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.mb8_c00256{transform:matrix(0.281592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281592,0.000000,0.000000,0.250000,0,0);}
.mb0_c00256{transform:matrix(0.281743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281743,0.000000,0.000000,0.250000,0,0);}
.mc5_c00256{transform:matrix(0.281955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281955,0.000000,0.000000,0.250000,0,0);}
.mb9_c00256{transform:matrix(0.281974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281974,0.000000,0.000000,0.250000,0,0);}
.m6_c00256{transform:matrix(0.282049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282049,0.000000,0.000000,0.250000,0,0);}
.m9a_c00256{transform:matrix(0.282222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282222,0.000000,0.000000,0.250000,0,0);}
.mca_c00256{transform:matrix(0.282543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282543,0.000000,0.000000,0.250000,0,0);}
.m72_c00256{transform:matrix(0.283524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283524,0.000000,0.000000,0.250000,0,0);}
.m1d_c00256{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.ma6_c00256{transform:matrix(0.284121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284121,0.000000,0.000000,0.250000,0,0);}
.m2a_c00256{transform:matrix(0.285083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285083,0.000000,0.000000,0.250000,0,0);}
.m96_c00256{transform:matrix(0.285136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285136,0.000000,0.000000,0.250000,0,0);}
.m1a_c00256{transform:matrix(0.285179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285179,0.000000,0.000000,0.250000,0,0);}
.m6d_c00256{transform:matrix(0.285484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285484,0.000000,0.000000,0.250000,0,0);}
.m4b_c00256{transform:matrix(0.286083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286083,0.000000,0.000000,0.250000,0,0);}
.m6e_c00256{transform:matrix(0.286265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286265,0.000000,0.000000,0.250000,0,0);}
.maa_c00256{transform:matrix(0.286740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286740,0.000000,0.000000,0.250000,0,0);}
.m64_c00256{transform:matrix(0.287440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287440,0.000000,0.000000,0.250000,0,0);}
.mc_c00256{transform:matrix(0.288444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288444,0.000000,0.000000,0.250000,0,0);}
.m59_c00256{transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);}
.mb4_c00256{transform:matrix(0.288889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288889,0.000000,0.000000,0.250000,0,0);}
.m87_c00256{transform:matrix(0.289321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289321,0.000000,0.000000,0.250000,0,0);}
.m7d_c00256{transform:matrix(0.289488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289488,0.000000,0.000000,0.250000,0,0);}
.m7c_c00256{transform:matrix(0.289512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289512,0.000000,0.000000,0.250000,0,0);}
.m68_c00256{transform:matrix(0.289520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289520,0.000000,0.000000,0.250000,0,0);}
.m9b_c00256{transform:matrix(0.290065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290065,0.000000,0.000000,0.250000,0,0);}
.m7e_c00256{transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);}
.m34_c00256{transform:matrix(0.290314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290314,0.000000,0.000000,0.250000,0,0);}
.mb6_c00256{transform:matrix(0.290963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290963,0.000000,0.000000,0.250000,0,0);}
.m3a_c00256{transform:matrix(0.292392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292392,0.000000,0.000000,0.250000,0,0);}
.m35_c00256{transform:matrix(0.292623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292623,0.000000,0.000000,0.250000,0,0);}
.m3_c00256{transform:matrix(0.292782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292782,0.000000,0.000000,0.250000,0,0);}
.m58_c00256{transform:matrix(0.293058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293058,0.000000,0.000000,0.250000,0,0);}
.mf_c00256{transform:matrix(0.293273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293273,0.000000,0.000000,0.250000,0,0);}
.mc3_c00256{transform:matrix(0.295367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295367,0.000000,0.000000,0.250000,0,0);}
.m8b_c00256{transform:matrix(0.296448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296448,0.000000,0.000000,0.250000,0,0);}
.m4_c00256{transform:matrix(0.296562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296562,0.000000,0.000000,0.250000,0,0);}
.m53_c00256{transform:matrix(0.296801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296801,0.000000,0.000000,0.250000,0,0);}
.m3e_c00256{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.mae_c00256{transform:matrix(0.297306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297306,0.000000,0.000000,0.250000,0,0);}
.m52_c00256{transform:matrix(0.297367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297367,0.000000,0.000000,0.250000,0,0);}
.m47_c00256{transform:matrix(0.298266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298266,0.000000,0.000000,0.250000,0,0);}
.m42_c00256{transform:matrix(0.298698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298698,0.000000,0.000000,0.250000,0,0);}
.mbe_c00256{transform:matrix(0.299789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299789,0.000000,0.000000,0.250000,0,0);}
.m85_c00256{transform:matrix(0.299845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299845,0.000000,0.000000,0.250000,0,0);}
.m19_c00256{transform:matrix(0.300063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300063,0.000000,0.000000,0.250000,0,0);}
.mc6_c00256{transform:matrix(0.300179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300179,0.000000,0.000000,0.250000,0,0);}
.mb7_c00256{transform:matrix(0.300345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300345,0.000000,0.000000,0.250000,0,0);}
.maf_c00256{transform:matrix(0.300577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300577,0.000000,0.000000,0.250000,0,0);}
.ma1_c00256{transform:matrix(0.301062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301062,0.000000,0.000000,0.250000,0,0);}
.m50_c00256{transform:matrix(0.302049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302049,0.000000,0.000000,0.250000,0,0);}
.m14_c00256{transform:matrix(0.302217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302217,0.000000,0.000000,0.250000,0,0);}
.m8_c00256{transform:matrix(0.302408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302408,0.000000,0.000000,0.250000,0,0);}
.me_c00256{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.mc4_c00256{transform:matrix(0.303571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303571,0.000000,0.000000,0.250000,0,0);}
.m22_c00256{transform:matrix(0.305294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305294,0.000000,0.000000,0.250000,0,0);}
.m79_c00256{transform:matrix(0.306785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306785,0.000000,0.000000,0.250000,0,0);}
.m18_c00256{transform:matrix(0.307753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307753,0.000000,0.000000,0.250000,0,0);}
.m55_c00256{transform:matrix(0.307828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307828,0.000000,0.000000,0.250000,0,0);}
.m76_c00256{transform:matrix(0.307828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307828,0.000000,0.000000,0.250000,0,0);}
.m2d_c00256{transform:matrix(0.308088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308088,0.000000,0.000000,0.250000,0,0);}
.m7f_c00256{transform:matrix(0.308174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308174,0.000000,0.000000,0.250000,0,0);}
.mad_c00256{transform:matrix(0.308389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308389,0.000000,0.000000,0.250000,0,0);}
.m2f_c00256{transform:matrix(0.308561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308561,0.000000,0.000000,0.250000,0,0);}
.ma5_c00256{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m8c_c00256{transform:matrix(0.308781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308781,0.000000,0.000000,0.250000,0,0);}
.m62_c00256{transform:matrix(0.308879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308879,0.000000,0.000000,0.250000,0,0);}
.ma8_c00256{transform:matrix(0.309166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309166,0.000000,0.000000,0.250000,0,0);}
.m10_c00256{transform:matrix(0.309573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309573,0.000000,0.000000,0.250000,0,0);}
.mab_c00256{transform:matrix(0.309991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309991,0.000000,0.000000,0.250000,0,0);}
.m1b_c00256{transform:matrix(0.310026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310026,0.000000,0.000000,0.250000,0,0);}
.m3c_c00256{transform:matrix(0.310673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310673,0.000000,0.000000,0.250000,0,0);}
.m7b_c00256{transform:matrix(0.311458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311458,0.000000,0.000000,0.250000,0,0);}
.m94_c00256{transform:matrix(0.311912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311912,0.000000,0.000000,0.250000,0,0);}
.m88_c00256{transform:matrix(0.312053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312053,0.000000,0.000000,0.250000,0,0);}
.m21_c00256{transform:matrix(0.312169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312169,0.000000,0.000000,0.250000,0,0);}
.m9d_c00256{transform:matrix(0.312376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312376,0.000000,0.000000,0.250000,0,0);}
.m81_c00256{transform:matrix(0.312438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312438,0.000000,0.000000,0.250000,0,0);}
.m3f_c00256{transform:matrix(0.314004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314004,0.000000,0.000000,0.250000,0,0);}
.mb_c00256{transform:matrix(0.314146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314146,0.000000,0.000000,0.250000,0,0);}
.m8e_c00256{transform:matrix(0.314613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314613,0.000000,0.000000,0.250000,0,0);}
.m1c_c00256{transform:matrix(0.315245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315245,0.000000,0.000000,0.250000,0,0);}
.m93_c00256{transform:matrix(0.315556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315556,0.000000,0.000000,0.250000,0,0);}
.m4d_c00256{transform:matrix(0.316015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316015,0.000000,0.000000,0.250000,0,0);}
.mbd_c00256{transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);}
.m12_c00256{transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);}
.m8f_c00256{transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);}
.m5e_c00256{transform:matrix(0.316509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316509,0.000000,0.000000,0.250000,0,0);}
.m8d_c00256{transform:matrix(0.318247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318247,0.000000,0.000000,0.250000,0,0);}
.m49_c00256{transform:matrix(0.319065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319065,0.000000,0.000000,0.250000,0,0);}
.m13_c00256{transform:matrix(0.321792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321792,0.000000,0.000000,0.250000,0,0);}
.mbc_c00256{transform:matrix(0.323330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323330,0.000000,0.000000,0.250000,0,0);}
.m9f_c00256{transform:matrix(0.325086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325086,0.000000,0.000000,0.250000,0,0);}
.m75_c00256{transform:matrix(0.325583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325583,0.000000,0.000000,0.250000,0,0);}
.m74_c00256{transform:matrix(0.326405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326405,0.000000,0.000000,0.250000,0,0);}
.m99_c00256{transform:matrix(0.326944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326944,0.000000,0.000000,0.250000,0,0);}
.mc0_c00256{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.m92_c00256{transform:matrix(0.327915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327915,0.000000,0.000000,0.250000,0,0);}
.m6c_c00256{transform:matrix(0.328617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328617,0.000000,0.000000,0.250000,0,0);}
.m5_c00256{transform:matrix(0.329590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329590,0.000000,0.000000,0.250000,0,0);}
.mb2_c00256{transform:matrix(0.331190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331190,0.000000,0.000000,0.250000,0,0);}
.m97_c00256{transform:matrix(0.331422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331422,0.000000,0.000000,0.250000,0,0);}
.m38_c00256{transform:matrix(0.331567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331567,0.000000,0.000000,0.250000,0,0);}
.m3b_c00256{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m26_c00256{transform:matrix(0.334039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334039,0.000000,0.000000,0.250000,0,0);}
.m7_c00256{transform:matrix(0.334276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334276,0.000000,0.000000,0.250000,0,0);}
.m4a_c00256{transform:matrix(0.334622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334622,0.000000,0.000000,0.250000,0,0);}
.m3d_c00256{transform:matrix(0.334801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334801,0.000000,0.000000,0.250000,0,0);}
.m39_c00256{transform:matrix(0.335182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335182,0.000000,0.000000,0.250000,0,0);}
.ma4_c00256{transform:matrix(0.335619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335619,0.000000,0.000000,0.250000,0,0);}
.m48_c00256{transform:matrix(0.336364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336364,0.000000,0.000000,0.250000,0,0);}
.m7a_c00256{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);}
.m73_c00256{transform:matrix(0.337061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337061,0.000000,0.000000,0.250000,0,0);}
.mcb_c00256{transform:matrix(0.338345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338345,0.000000,0.000000,0.250000,0,0);}
.m83_c00256{transform:matrix(0.338441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338441,0.000000,0.000000,0.250000,0,0);}
.m5f_c00256{transform:matrix(0.339419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339419,0.000000,0.000000,0.250000,0,0);}
.m23_c00256{transform:matrix(0.339553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339553,0.000000,0.000000,0.250000,0,0);}
.m20_c00256{transform:matrix(0.340207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340207,0.000000,0.000000,0.250000,0,0);}
.m57_c00256{transform:matrix(0.340542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340542,0.000000,0.000000,0.250000,0,0);}
.mc8_c00256{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.m90_c00256{transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);}
.m78_c00256{transform:matrix(0.345525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345525,0.000000,0.000000,0.250000,0,0);}
.m33_c00256{transform:matrix(0.347013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347013,0.000000,0.000000,0.250000,0,0);}
.m1f_c00256{transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);}
.mb3_c00256{transform:matrix(0.347545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347545,0.000000,0.000000,0.250000,0,0);}
.m77_c00256{transform:matrix(0.347756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347756,0.000000,0.000000,0.250000,0,0);}
.m89_c00256{transform:matrix(0.348229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348229,0.000000,0.000000,0.250000,0,0);}
.m31_c00256{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m95_c00256{transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);}
.m24_c00256{transform:matrix(0.352629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352629,0.000000,0.000000,0.250000,0,0);}
.m9c_c00256{transform:matrix(0.352876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352876,0.000000,0.000000,0.250000,0,0);}
.m56_c00256{transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);}
.m41_c00256{transform:matrix(0.353894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353894,0.000000,0.000000,0.250000,0,0);}
.m6b_c00256{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.ma_c00256{transform:matrix(0.355345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355345,0.000000,0.000000,0.250000,0,0);}
.m28_c00256{transform:matrix(0.357794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357794,0.000000,0.000000,0.250000,0,0);}
.ma7_c00256{transform:matrix(0.366396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366396,0.000000,0.000000,0.250000,0,0);}
.m4f_c00256{transform:matrix(0.370958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370958,0.000000,0.000000,0.250000,0,0);}
.m70_c00256{transform:matrix(0.379261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379261,0.000000,0.000000,0.250000,0,0);}
.m5d_c00256{transform:matrix(0.401619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401619,0.000000,0.000000,0.250000,0,0);}
.m43_c00256{transform:matrix(0.416660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416660,0.000000,0.000000,0.250000,0,0);}
.mbb_c00256{transform:matrix(0.424701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424701,0.000000,0.000000,0.250000,0,0);}
.m2_c00256{transform:matrix(0.467966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467966,0.000000,0.000000,0.250000,0,0);}
.v0_c00256{vertical-align:0.000000px;}
.ls8_c00256{letter-spacing:-2.744280px;}
.ls10_c00256{letter-spacing:-1.434866px;}
.ls7_c00256{letter-spacing:-0.737035px;}
.lsf_c00256{letter-spacing:-0.721354px;}
.ls13_c00256{letter-spacing:-0.705672px;}
.ls14_c00256{letter-spacing:-0.486130px;}
.ls4_c00256{letter-spacing:0.000000px;}
.ls15_c00256{letter-spacing:0.392040px;}
.ls6_c00256{letter-spacing:1.178100px;}
.ls11_c00256{letter-spacing:1.246687px;}
.ls3_c00256{letter-spacing:1.497593px;}
.ls12_c00256{letter-spacing:1.819066px;}
.ls9_c00256{letter-spacing:2.415600px;}
.lsa_c00256{letter-spacing:2.634509px;}
.ls2_c00256{letter-spacing:3.112798px;}
.ls1_c00256{letter-spacing:3.457793px;}
.lse_c00256{letter-spacing:3.598927px;}
.lsb_c00256{letter-spacing:3.603610px;}
.ls16_c00256{letter-spacing:3.613500px;}
.lsc_c00256{letter-spacing:3.781810px;}
.ls5_c00256{letter-spacing:3.920400px;}
.ls0_c00256{letter-spacing:7.213536px;}
.lsd_c00256{letter-spacing:12.830598px;}
.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;}
}
.ws1_c00256{word-spacing:-23.059793px;}
.ws0_c00256{word-spacing:-19.602000px;}
.ws2_c00256{word-spacing:-2.901096px;}
.ws4_c00256{word-spacing:-0.784080px;}
.ws5_c00256{word-spacing:0.000000px;}
.ws3_c00256{word-spacing:2.038608px;}
._1_c00256{width:4.077216px;}
._0_c00256{width:6.429456px;}
._5_c00256{width:7.887845px;}
._9_c00256{width:9.487368px;}
._2_c00256{width:11.604384px;}
._b_c00256{width:20.856528px;}
._8_c00256{width:22.816728px;}
._c_c00256{width:27.364392px;}
._7_c00256{width:28.854144px;}
._3_c00256{width:32.487048px;}
._a_c00256{width:34.342704px;}
._6_c00256{width:36.438336px;}
._4_c00256{width:39.065400px;}
.fc0_c00256{color:transparent;}
.fsa_c00256{font-size:12.830598px;}
.fs6_c00256{font-size:21.780000px;}
.fsf_c00256{font-size:22.176000px;}
.fs0_c00256{font-size:22.572000px;}
.fs4_c00256{font-size:23.562000px;}
.fs15_c00256{font-size:27.720000px;}
.fs2_c00256{font-size:28.314000px;}
.fs7_c00256{font-size:30.888000px;}
.fsb_c00256{font-size:32.670000px;}
.fs12_c00256{font-size:34.056198px;}
.fs14_c00256{font-size:38.808000px;}
.fse_c00256{font-size:42.966198px;}
.fsd_c00256{font-size:45.144000px;}
.fs5_c00256{font-size:48.312000px;}
.fsc_c00256{font-size:66.330000px;}
.fs8_c00256{font-size:72.072198px;}
.fs13_c00256{font-size:72.270000px;}
.fs9_c00256{font-size:75.636198px;}
.fs1_c00256{font-size:77.616198px;}
.fs3_c00256{font-size:78.408000px;}
.fs11_c00256{font-size:99.000000px;}
.fs10_c00256{font-size:117.216198px;}
.y0_c00256{bottom:0.000000px;}
.y2d_c00256{bottom:10.598985px;}
.y2c_c00256{bottom:23.077935px;}
.y2b_c00256{bottom:71.547345px;}
.y1_c00256{bottom:76.500000px;}
.y2a_c00256{bottom:82.240335px;}
.y2e_c00256{bottom:93.645135px;}
.y29_c00256{bottom:106.475535px;}
.y28_c00256{bottom:137.477385px;}
.y27_c00256{bottom:167.776335px;}
.y26_c00256{bottom:181.670985px;}
.y25_c00256{bottom:201.634335px;}
.y24_c00256{bottom:234.418185px;}
.y23_c00256{bottom:267.206985px;}
.y22_c00256{bottom:278.968185px;}
.y21_c00256{bottom:299.644335px;}
.y20_c00256{bottom:339.199785px;}
.y1f_c00256{bottom:349.535385px;}
.y1e_c00256{bottom:364.504185px;}
.y1d_c00256{bottom:397.297935px;}
.y1c_c00256{bottom:429.012585px;}
.y1b_c00256{bottom:461.801385px;}
.y1a_c00256{bottom:494.233785px;}
.y19_c00256{bottom:527.022585px;}
.y18_c00256{bottom:527.029515px;}
.y17_c00256{bottom:560.529135px;}
.y16_c00256{bottom:593.674335px;}
.y15_c00256{bottom:605.786985px;}
.y14_c00256{bottom:626.814585px;}
.y13_c00256{bottom:658.895535px;}
.y12_c00256{bottom:690.971535px;}
.y11_c00256{bottom:719.834985px;}
.y10_c00256{bottom:723.398985px;}
.yf_c00256{bottom:755.474985px;}
.ye_c00256{bottom:787.555935px;}
.yd_c00256{bottom:800.024985px;}
.yc_c00256{bottom:810.009135px;}
.yb_c00256{bottom:819.983385px;}
.ya_c00256{bottom:852.415785px;}
.y9_c00256{bottom:884.848185px;}
.y8_c00256{bottom:918.354735px;}
.y7_c00256{bottom:929.398185px;}
.y2_c00256{bottom:974.304585px;}
.y6_c00256{bottom:1058.771385px;}
.y5_c00256{bottom:1079.086185px;}
.y3_c00256{bottom:1100.470185px;}
.y4_c00256{bottom:1101.182985px;}
.hc_c00256{height:8.545178px;}
.h8_c00256{height:21.375879px;}
.h11_c00256{height:23.128875px;}
.h2_c00256{height:23.541891px;}
.h6_c00256{height:24.574430px;}
.h17_c00256{height:28.911094px;}
.h4_c00256{height:29.530617px;}
.hd_c00256{height:32.063818px;}
.h9_c00256{height:32.215219px;}
.h14_c00256{height:35.519550px;}
.h16_c00256{height:40.475531px;}
.h10_c00256{height:42.168974px;}
.hf_c00256{height:47.083781px;}
.h7_c00256{height:47.415586px;}
.he_c00256{height:69.180117px;}
.h15_c00256{height:70.929053px;}
.hb_c00256{height:74.232792px;}
.ha_c00256{height:75.169050px;}
.h5_c00256{height:76.953164px;}
.h3_c00256{height:80.951269px;}
.h13_c00256{height:103.253906px;}
.h12_c00256{height:115.041288px;}
.h1_c00256{height:1110.000000px;}
.h0_c00256{height:1263.000000px;}
.w1_c00256{width:763.500000px;}
.w0_c00256{width:892.500000px;}
.x0_c00256{left:0.000000px;}
.x2_c00256{left:55.683585px;}
.x1_c00256{left:64.500000px;}
.x62_c00256{left:71.815635px;}
.x12_c00256{left:72.944235px;}
.x69_c00256{left:74.147085px;}
.x2f_c00256{left:75.325185px;}
.x13_c00256{left:95.333085px;}
.x26_c00256{left:104.985585px;}
.x3d_c00256{left:106.925985px;}
.x30_c00256{left:116.009235px;}
.x14_c00256{left:117.271485px;}
.x27_c00256{left:120.543435px;}
.x8_c00256{left:128.057535px;}
.x56_c00256{left:129.067335px;}
.x3e_c00256{left:139.883085px;}
.x57_c00256{left:147.817935px;}
.x51_c00256{left:149.862285px;}
.x1b_c00256{left:151.832385px;}
.x6b_c00256{left:160.955235px;}
.x45_c00256{left:162.163035px;}
.x15_c00256{left:173.107485px;}
.x1c_c00256{left:183.571785px;}
.x3f_c00256{left:184.606335px;}
.x58_c00256{left:194.060835px;}
.x9_c00256{left:195.550785px;}
.x1d_c00256{left:206.010135px;}
.x46_c00256{left:217.315935px;}
.x31_c00256{left:227.889135px;}
.x60_c00256{left:229.156335px;}
.x5e_c00256{left:237.937635px;}
.x40_c00256{left:239.175135px;}
.x1e_c00256{left:240.204735px;}
.x52_c00256{left:249.307785px;}
.x41_c00256{left:251.198685px;}
.x4e_c00256{left:256.019985px;}
.x16_c00256{left:260.702685px;}
.xa_c00256{left:261.984735px;}
.x1f_c00256{left:271.830285px;}
.xb_c00256{left:273.003435px;}
.x42_c00256{left:283.492485px;}
.x5c_c00256{left:291.397635px;}
.x28_c00256{left:295.798185px;}
.x4f_c00256{left:304.911135px;}
.x37_c00256{left:306.415935px;}
.x20_c00256{left:317.211885px;}
.x6c_c00256{left:318.236535px;}
.xc_c00256{left:328.275135px;}
.x59_c00256{left:331.007535px;}
.x21_c00256{left:338.952285px;}
.x6e_c00256{left:340.313535px;}
.x32_c00256{left:341.511435px;}
.x29_c00256{left:350.000685px;}
.x6a_c00256{left:351.045135px;}
.xd_c00256{left:360.078885px;}
.x7_c00256{left:361.113435px;}
.x5f_c00256{left:372.097485px;}
.x2a_c00256{left:383.066685px;}
.x61_c00256{left:384.175485px;}
.x67_c00256{left:393.991335px;}
.x17_c00256{left:395.218935px;}
.x5a_c00256{left:406.287135px;}
.x53_c00256{left:415.167435px;}
.x22_c00256{left:416.647485px;}
.x4b_c00256{left:427.136535px;}
.x65_c00256{left:428.294835px;}
.x6d_c00256{left:439.105635px;}
.x33_c00256{left:449.312535px;}
.x23_c00256{left:450.550035px;}
.x38_c00256{left:460.846035px;}
.x48_c00256{left:462.048885px;}
.x6f_c00256{left:471.755835px;}
.xe_c00256{left:473.706135px;}
.x2b_c00256{left:483.502185px;}
.x39_c00256{left:493.951635px;}
.x54_c00256{left:495.540585px;}
.x18_c00256{left:504.915885px;}
.x68_c00256{left:506.232585px;}
.x6_c00256{left:516.865185px;}
.x70_c00256{left:519.166935px;}
.x3a_c00256{left:526.943385px;}
.x2c_c00256{left:538.471935px;}
.x5b_c00256{left:549.035235px;}
.x66_c00256{left:550.629135px;}
.x4c_c00256{left:559.717335px;}
.xf_c00256{left:560.989485px;}
.x34_c00256{left:571.127085px;}
.x10_c00256{left:582.512085px;}
.x43_c00256{left:593.416935px;}
.x63_c00256{left:596.505735px;}
.x50_c00256{left:605.178135px;}
.x3b_c00256{left:614.805885px;}
.x24_c00256{left:616.053285px;}
.x4d_c00256{left:625.656285px;}
.x19_c00256{left:626.923485px;}
.x25_c00256{left:638.625285px;}
.x71_c00256{left:648.015435px;}
.x49_c00256{left:649.020285px;}
.x47_c00256{left:658.083735px;}
.x3c_c00256{left:659.157885px;}
.x5_c00256{left:661.078485px;}
.x5d_c00256{left:670.726035px;}
.x35_c00256{left:672.156585px;}
.x4a_c00256{left:682.848585px;}
.x11_c00256{left:683.917785px;}
.x2d_c00256{left:692.664435px;}
.x72_c00256{left:694.832535px;}
.x64_c00256{left:696.253185px;}
.x2e_c00256{left:698.198535px;}
.x4_c00256{left:701.445735px;}
.x36_c00256{left:703.356435px;}
.x1a_c00256{left:704.539485px;}
.x3_c00256{left:710.934885px;}
.x55_c00256{left:726.329385px;}
.x44_c00256{left:745.218585px;}
.x73_c00256{left:752.445585px;}
@media print{
.v0_c00256{vertical-align:0.000000pt;}
.ls8_c00256{letter-spacing:-2.439360pt;}
.ls10_c00256{letter-spacing:-1.275437pt;}
.ls7_c00256{letter-spacing:-0.655142pt;}
.lsf_c00256{letter-spacing:-0.641203pt;}
.ls13_c00256{letter-spacing:-0.627264pt;}
.ls14_c00256{letter-spacing:-0.432115pt;}
.ls4_c00256{letter-spacing:0.000000pt;}
.ls15_c00256{letter-spacing:0.348480pt;}
.ls6_c00256{letter-spacing:1.047200pt;}
.ls11_c00256{letter-spacing:1.108166pt;}
.ls3_c00256{letter-spacing:1.331194pt;}
.ls12_c00256{letter-spacing:1.616947pt;}
.ls9_c00256{letter-spacing:2.147200pt;}
.lsa_c00256{letter-spacing:2.341786pt;}
.ls2_c00256{letter-spacing:2.766931pt;}
.ls1_c00256{letter-spacing:3.073594pt;}
.lse_c00256{letter-spacing:3.199046pt;}
.lsb_c00256{letter-spacing:3.203209pt;}
.ls16_c00256{letter-spacing:3.212000pt;}
.lsc_c00256{letter-spacing:3.361609pt;}
.ls5_c00256{letter-spacing:3.484800pt;}
.ls0_c00256{letter-spacing:6.412032pt;}
.lsd_c00256{letter-spacing:11.404976pt;}
.ws1_c00256{word-spacing:-20.497594pt;}
.ws0_c00256{word-spacing:-17.424000pt;}
.ws2_c00256{word-spacing:-2.578752pt;}
.ws4_c00256{word-spacing:-0.696960pt;}
.ws5_c00256{word-spacing:0.000000pt;}
.ws3_c00256{word-spacing:1.812096pt;}
._1_c00256{width:3.624192pt;}
._0_c00256{width:5.715072pt;}
._5_c00256{width:7.011418pt;}
._9_c00256{width:8.433216pt;}
._2_c00256{width:10.315008pt;}
._b_c00256{width:18.539136pt;}
._8_c00256{width:20.281536pt;}
._c_c00256{width:24.323904pt;}
._7_c00256{width:25.648128pt;}
._3_c00256{width:28.877376pt;}
._a_c00256{width:30.526848pt;}
._6_c00256{width:32.389632pt;}
._4_c00256{width:34.724800pt;}
.fsa_c00256{font-size:11.404976pt;}
.fs6_c00256{font-size:19.360000pt;}
.fsf_c00256{font-size:19.712000pt;}
.fs0_c00256{font-size:20.064000pt;}
.fs4_c00256{font-size:20.944000pt;}
.fs15_c00256{font-size:24.640000pt;}
.fs2_c00256{font-size:25.168000pt;}
.fs7_c00256{font-size:27.456000pt;}
.fsb_c00256{font-size:29.040000pt;}
.fs12_c00256{font-size:30.272176pt;}
.fs14_c00256{font-size:34.496000pt;}
.fse_c00256{font-size:38.192176pt;}
.fsd_c00256{font-size:40.128000pt;}
.fs5_c00256{font-size:42.944000pt;}
.fsc_c00256{font-size:58.960000pt;}
.fs8_c00256{font-size:64.064176pt;}
.fs13_c00256{font-size:64.240000pt;}
.fs9_c00256{font-size:67.232176pt;}
.fs1_c00256{font-size:68.992176pt;}
.fs3_c00256{font-size:69.696000pt;}
.fs11_c00256{font-size:88.000000pt;}
.fs10_c00256{font-size:104.192176pt;}
.y0_c00256{bottom:0.000000pt;}
.y2d_c00256{bottom:9.421320pt;}
.y2c_c00256{bottom:20.513720pt;}
.y2b_c00256{bottom:63.597640pt;}
.y1_c00256{bottom:68.000000pt;}
.y2a_c00256{bottom:73.102520pt;}
.y2e_c00256{bottom:83.240120pt;}
.y29_c00256{bottom:94.644920pt;}
.y28_c00256{bottom:122.202120pt;}
.y27_c00256{bottom:149.134520pt;}
.y26_c00256{bottom:161.485320pt;}
.y25_c00256{bottom:179.230520pt;}
.y24_c00256{bottom:208.371720pt;}
.y23_c00256{bottom:237.517320pt;}
.y22_c00256{bottom:247.971720pt;}
.y21_c00256{bottom:266.350520pt;}
.y20_c00256{bottom:301.510920pt;}
.y1f_c00256{bottom:310.698120pt;}
.y1e_c00256{bottom:324.003720pt;}
.y1d_c00256{bottom:353.153720pt;}
.y1c_c00256{bottom:381.344520pt;}
.y1b_c00256{bottom:410.490120pt;}
.y1a_c00256{bottom:439.318920pt;}
.y19_c00256{bottom:468.464520pt;}
.y18_c00256{bottom:468.470680pt;}
.y17_c00256{bottom:498.248120pt;}
.y16_c00256{bottom:527.710520pt;}
.y15_c00256{bottom:538.477320pt;}
.y14_c00256{bottom:557.168520pt;}
.y13_c00256{bottom:585.684920pt;}
.y12_c00256{bottom:614.196920pt;}
.y11_c00256{bottom:639.853320pt;}
.y10_c00256{bottom:643.021320pt;}
.yf_c00256{bottom:671.533320pt;}
.ye_c00256{bottom:700.049720pt;}
.yd_c00256{bottom:711.133320pt;}
.yc_c00256{bottom:720.008120pt;}
.yb_c00256{bottom:728.874120pt;}
.ya_c00256{bottom:757.702920pt;}
.y9_c00256{bottom:786.531720pt;}
.y8_c00256{bottom:816.315320pt;}
.y7_c00256{bottom:826.131720pt;}
.y2_c00256{bottom:866.048520pt;}
.y6_c00256{bottom:941.130120pt;}
.y5_c00256{bottom:959.187720pt;}
.y3_c00256{bottom:978.195720pt;}
.y4_c00256{bottom:978.829320pt;}
.hc_c00256{height:7.595714pt;}
.h8_c00256{height:19.000781pt;}
.h11_c00256{height:20.559000pt;}
.h2_c00256{height:20.926125pt;}
.h6_c00256{height:21.843938pt;}
.h17_c00256{height:25.698750pt;}
.h4_c00256{height:26.249438pt;}
.hd_c00256{height:28.501172pt;}
.h9_c00256{height:28.635750pt;}
.h14_c00256{height:31.572934pt;}
.h16_c00256{height:35.978250pt;}
.h10_c00256{height:37.483532pt;}
.hf_c00256{height:41.852250pt;}
.h7_c00256{height:42.147188pt;}
.he_c00256{height:61.493438pt;}
.h15_c00256{height:63.048047pt;}
.hb_c00256{height:65.984704pt;}
.ha_c00256{height:66.816934pt;}
.h5_c00256{height:68.402813pt;}
.h3_c00256{height:71.956684pt;}
.h13_c00256{height:91.781250pt;}
.h12_c00256{height:102.258923pt;}
.h1_c00256{height:986.666667pt;}
.h0_c00256{height:1122.666667pt;}
.w1_c00256{width:678.666667pt;}
.w0_c00256{width:793.333333pt;}
.x0_c00256{left:0.000000pt;}
.x2_c00256{left:49.496520pt;}
.x1_c00256{left:57.333333pt;}
.x62_c00256{left:63.836120pt;}
.x12_c00256{left:64.839320pt;}
.x69_c00256{left:65.908520pt;}
.x2f_c00256{left:66.955720pt;}
.x13_c00256{left:84.740520pt;}
.x26_c00256{left:93.320520pt;}
.x3d_c00256{left:95.045320pt;}
.x30_c00256{left:103.119320pt;}
.x14_c00256{left:104.241320pt;}
.x27_c00256{left:107.149720pt;}
.x8_c00256{left:113.828920pt;}
.x56_c00256{left:114.726520pt;}
.x3e_c00256{left:124.340520pt;}
.x57_c00256{left:131.393720pt;}
.x51_c00256{left:133.210920pt;}
.x1b_c00256{left:134.962120pt;}
.x6b_c00256{left:143.071320pt;}
.x45_c00256{left:144.144920pt;}
.x15_c00256{left:153.873320pt;}
.x1c_c00256{left:163.174920pt;}
.x3f_c00256{left:164.094520pt;}
.x58_c00256{left:172.498520pt;}
.x9_c00256{left:173.822920pt;}
.x1d_c00256{left:183.120120pt;}
.x46_c00256{left:193.169720pt;}
.x31_c00256{left:202.568120pt;}
.x60_c00256{left:203.694520pt;}
.x5e_c00256{left:211.500120pt;}
.x40_c00256{left:212.600120pt;}
.x1e_c00256{left:213.515320pt;}
.x52_c00256{left:221.606920pt;}
.x41_c00256{left:223.287720pt;}
.x4e_c00256{left:227.573320pt;}
.x16_c00256{left:231.735720pt;}
.xa_c00256{left:232.875320pt;}
.x1f_c00256{left:241.626920pt;}
.xb_c00256{left:242.669720pt;}
.x42_c00256{left:251.993320pt;}
.x5c_c00256{left:259.020120pt;}
.x28_c00256{left:262.931720pt;}
.x4f_c00256{left:271.032120pt;}
.x37_c00256{left:272.369720pt;}
.x20_c00256{left:281.966120pt;}
.x6c_c00256{left:282.876920pt;}
.xc_c00256{left:291.800120pt;}
.x59_c00256{left:294.228920pt;}
.x21_c00256{left:301.290920pt;}
.x6e_c00256{left:302.500920pt;}
.x32_c00256{left:303.565720pt;}
.x29_c00256{left:311.111720pt;}
.x6a_c00256{left:312.040120pt;}
.xd_c00256{left:320.070120pt;}
.x7_c00256{left:320.989720pt;}
.x5f_c00256{left:330.753320pt;}
.x2a_c00256{left:340.503720pt;}
.x61_c00256{left:341.489320pt;}
.x67_c00256{left:350.214520pt;}
.x17_c00256{left:351.305720pt;}
.x5a_c00256{left:361.144120pt;}
.x53_c00256{left:369.037720pt;}
.x22_c00256{left:370.353320pt;}
.x4b_c00256{left:379.676920pt;}
.x65_c00256{left:380.706520pt;}
.x6d_c00256{left:390.316120pt;}
.x33_c00256{left:399.388920pt;}
.x23_c00256{left:400.488920pt;}
.x38_c00256{left:409.640920pt;}
.x48_c00256{left:410.710120pt;}
.x6f_c00256{left:419.338520pt;}
.xe_c00256{left:421.072120pt;}
.x2b_c00256{left:429.779720pt;}
.x39_c00256{left:439.068120pt;}
.x54_c00256{left:440.480520pt;}
.x18_c00256{left:448.814120pt;}
.x68_c00256{left:449.984520pt;}
.x6_c00256{left:459.435720pt;}
.x70_c00256{left:461.481720pt;}
.x3a_c00256{left:468.394120pt;}
.x2c_c00256{left:478.641720pt;}
.x5b_c00256{left:488.031320pt;}
.x66_c00256{left:489.448120pt;}
.x4c_c00256{left:497.526520pt;}
.xf_c00256{left:498.657320pt;}
.x34_c00256{left:507.668520pt;}
.x10_c00256{left:517.788520pt;}
.x43_c00256{left:527.481720pt;}
.x63_c00256{left:530.227320pt;}
.x50_c00256{left:537.936120pt;}
.x3b_c00256{left:546.494120pt;}
.x24_c00256{left:547.602920pt;}
.x4d_c00256{left:556.138920pt;}
.x19_c00256{left:557.265320pt;}
.x25_c00256{left:567.666920pt;}
.x71_c00256{left:576.013720pt;}
.x49_c00256{left:576.906920pt;}
.x47_c00256{left:584.963320pt;}
.x3c_c00256{left:585.918120pt;}
.x5_c00256{left:587.625320pt;}
.x5d_c00256{left:596.200920pt;}
.x35_c00256{left:597.472520pt;}
.x4a_c00256{left:606.976520pt;}
.x11_c00256{left:607.926920pt;}
.x2d_c00256{left:615.701720pt;}
.x72_c00256{left:617.628920pt;}
.x64_c00256{left:618.891720pt;}
.x2e_c00256{left:620.620920pt;}
.x4_c00256{left:623.507320pt;}
.x36_c00256{left:625.205720pt;}
.x1a_c00256{left:626.257320pt;}
.x3_c00256{left:631.942120pt;}
.x55_c00256{left:645.626120pt;}
.x44_c00256{left:662.416520pt;}
.x73_c00256{left:668.840520pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c22ba0f30a5f0d4a5398fbb4.woff2')format("woff");}.ff1_c00257{font-family:ff1_c00257;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00257;src:url('chunks/assets/font_2d42cfe5c23a72c97f27c52b.woff2')format("woff");}.ff2_c00257{font-family:ff2_c00257;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00257;src:url('chunks/assets/font_96cb27ccacada7d5a796f67c.woff2')format("woff");}.ff3_c00257{font-family:ff3_c00257;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00257;src:url('chunks/assets/font_4424f5337efda385130f0fd6.woff2')format("woff");}.ff4_c00257{font-family:ff4_c00257;line-height:0.666000;font-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_c00257{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);}
.m3b_c00257{transform:matrix(0.144084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144084,0.000000,0.000000,0.250000,0,0);}
.m94_c00257{transform:matrix(0.167087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167087,0.000000,0.000000,0.250000,0,0);}
.m3d_c00257{transform:matrix(0.186350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186350,0.000000,0.000000,0.250000,0,0);}
.m77_c00257{transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);}
.m48_c00257{transform:matrix(0.218345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218345,0.000000,0.000000,0.250000,0,0);}
.m68_c00257{transform:matrix(0.225243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225243,0.000000,0.000000,0.250000,0,0);}
.m38_c00257{transform:matrix(0.233321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233321,0.000000,0.000000,0.250000,0,0);}
.m81_c00257{transform:matrix(0.236979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236979,0.000000,0.000000,0.250000,0,0);}
.m0_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);}
.m30_c00257{transform:matrix(0.251308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251308,0.000000,0.000000,0.250000,0,0);}
.m2f_c00257{transform:matrix(0.251385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251385,0.000000,0.000000,0.250000,0,0);}
.m25_c00257{transform:matrix(0.251454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251454,0.000000,0.000000,0.250000,0,0);}
.m39_c00257{transform:matrix(0.251773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251773,0.000000,0.000000,0.250000,0,0);}
.m83_c00257{transform:matrix(0.251896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251896,0.000000,0.000000,0.250000,0,0);}
.ma1_c00257{transform:matrix(0.252448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252448,0.000000,0.000000,0.250000,0,0);}
.m67_c00257{transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);}
.m6_c00257{transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);}
.m97_c00257{transform:matrix(0.253783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253783,0.000000,0.000000,0.250000,0,0);}
.m45_c00257{transform:matrix(0.253959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253959,0.000000,0.000000,0.250000,0,0);}
.m3e_c00257{transform:matrix(0.254323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254323,0.000000,0.000000,0.250000,0,0);}
.m3a_c00257{transform:matrix(0.254353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254353,0.000000,0.000000,0.250000,0,0);}
.m1_c00257{transform:matrix(0.255186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255186,0.000000,0.000000,0.250000,0,0);}
.mb0_c00257{transform:matrix(0.255210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255210,0.000000,0.000000,0.250000,0,0);}
.mb4_c00257{transform:matrix(0.255317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255317,0.000000,0.000000,0.250000,0,0);}
.m74_c00257{transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);}
.mb6_c00257{transform:matrix(0.256064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256064,0.000000,0.000000,0.250000,0,0);}
.m71_c00257{transform:matrix(0.256243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256243,0.000000,0.000000,0.250000,0,0);}
.m44_c00257{transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);}
.ma_c00257{transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);}
.m7d_c00257{transform:matrix(0.258122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258122,0.000000,0.000000,0.250000,0,0);}
.m3c_c00257{transform:matrix(0.258329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258329,0.000000,0.000000,0.250000,0,0);}
.m72_c00257{transform:matrix(0.258788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258788,0.000000,0.000000,0.250000,0,0);}
.m7f_c00257{transform:matrix(0.259672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259672,0.000000,0.000000,0.250000,0,0);}
.m60_c00257{transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);}
.m18_c00257{transform:matrix(0.262041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262041,0.000000,0.000000,0.250000,0,0);}
.m69_c00257{transform:matrix(0.262217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262217,0.000000,0.000000,0.250000,0,0);}
.mb8_c00257{transform:matrix(0.262227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262227,0.000000,0.000000,0.250000,0,0);}
.m8e_c00257{transform:matrix(0.262795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262795,0.000000,0.000000,0.250000,0,0);}
.m9c_c00257{transform:matrix(0.264224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264224,0.000000,0.000000,0.250000,0,0);}
.mae_c00257{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);}
.m6b_c00257{transform:matrix(0.265112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265112,0.000000,0.000000,0.250000,0,0);}
.m2e_c00257{transform:matrix(0.265284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265284,0.000000,0.000000,0.250000,0,0);}
.m21_c00257{transform:matrix(0.266247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266247,0.000000,0.000000,0.250000,0,0);}
.ma8_c00257{transform:matrix(0.266294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266294,0.000000,0.000000,0.250000,0,0);}
.m4c_c00257{transform:matrix(0.266805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266805,0.000000,0.000000,0.250000,0,0);}
.m63_c00257{transform:matrix(0.266960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266960,0.000000,0.000000,0.250000,0,0);}
.m9e_c00257{transform:matrix(0.267638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267638,0.000000,0.000000,0.250000,0,0);}
.m15_c00257{transform:matrix(0.267651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267651,0.000000,0.000000,0.250000,0,0);}
.mc_c00257{transform:matrix(0.267754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267754,0.000000,0.000000,0.250000,0,0);}
.m34_c00257{transform:matrix(0.267761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267761,0.000000,0.000000,0.250000,0,0);}
.m5f_c00257{transform:matrix(0.268157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268157,0.000000,0.000000,0.250000,0,0);}
.mac_c00257{transform:matrix(0.268539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268539,0.000000,0.000000,0.250000,0,0);}
.m4b_c00257{transform:matrix(0.268561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268561,0.000000,0.000000,0.250000,0,0);}
.m92_c00257{transform:matrix(0.268723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268723,0.000000,0.000000,0.250000,0,0);}
.m6a_c00257{transform:matrix(0.269209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269209,0.000000,0.000000,0.250000,0,0);}
.m13_c00257{transform:matrix(0.269991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269991,0.000000,0.000000,0.250000,0,0);}
.m8_c00257{transform:matrix(0.270269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270269,0.000000,0.000000,0.250000,0,0);}
.m4f_c00257{transform:matrix(0.270831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270831,0.000000,0.000000,0.250000,0,0);}
.m58_c00257{transform:matrix(0.273059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273059,0.000000,0.000000,0.250000,0,0);}
.me_c00257{transform:matrix(0.273290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273290,0.000000,0.000000,0.250000,0,0);}
.m7b_c00257{transform:matrix(0.273486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273486,0.000000,0.000000,0.250000,0,0);}
.m86_c00257{transform:matrix(0.273859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273859,0.000000,0.000000,0.250000,0,0);}
.m33_c00257{transform:matrix(0.274757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274757,0.000000,0.000000,0.250000,0,0);}
.m85_c00257{transform:matrix(0.275369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275369,0.000000,0.000000,0.250000,0,0);}
.mb5_c00257{transform:matrix(0.275727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275727,0.000000,0.000000,0.250000,0,0);}
.ma6_c00257{transform:matrix(0.275851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275851,0.000000,0.000000,0.250000,0,0);}
.m8d_c00257{transform:matrix(0.275989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275989,0.000000,0.000000,0.250000,0,0);}
.m80_c00257{transform:matrix(0.276127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276127,0.000000,0.000000,0.250000,0,0);}
.m9_c00257{transform:matrix(0.276184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276184,0.000000,0.000000,0.250000,0,0);}
.m16_c00257{transform:matrix(0.276758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276758,0.000000,0.000000,0.250000,0,0);}
.m9f_c00257{transform:matrix(0.276912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276912,0.000000,0.000000,0.250000,0,0);}
.m1e_c00257{transform:matrix(0.277316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277316,0.000000,0.000000,0.250000,0,0);}
.m40_c00257{transform:matrix(0.277534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277534,0.000000,0.000000,0.250000,0,0);}
.m9d_c00257{transform:matrix(0.278889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278889,0.000000,0.000000,0.250000,0,0);}
.m7c_c00257{transform:matrix(0.279195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279195,0.000000,0.000000,0.250000,0,0);}
.m82_c00257{transform:matrix(0.279212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279212,0.000000,0.000000,0.250000,0,0);}
.m9a_c00257{transform:matrix(0.279644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279644,0.000000,0.000000,0.250000,0,0);}
.m95_c00257{transform:matrix(0.280191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280191,0.000000,0.000000,0.250000,0,0);}
.m1c_c00257{transform:matrix(0.280271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280271,0.000000,0.000000,0.250000,0,0);}
.m78_c00257{transform:matrix(0.280468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280468,0.000000,0.000000,0.250000,0,0);}
.m8a_c00257{transform:matrix(0.280521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280521,0.000000,0.000000,0.250000,0,0);}
.m5a_c00257{transform:matrix(0.281106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281106,0.000000,0.000000,0.250000,0,0);}
.ma5_c00257{transform:matrix(0.281133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281133,0.000000,0.000000,0.250000,0,0);}
.m52_c00257{transform:matrix(0.281606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281606,0.000000,0.000000,0.250000,0,0);}
.ma7_c00257{transform:matrix(0.281709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281709,0.000000,0.000000,0.250000,0,0);}
.ma3_c00257{transform:matrix(0.283014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283014,0.000000,0.000000,0.250000,0,0);}
.m2b_c00257{transform:matrix(0.283152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283152,0.000000,0.000000,0.250000,0,0);}
.m84_c00257{transform:matrix(0.283538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283538,0.000000,0.000000,0.250000,0,0);}
.m36_c00257{transform:matrix(0.284497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284497,0.000000,0.000000,0.250000,0,0);}
.m29_c00257{transform:matrix(0.284960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284960,0.000000,0.000000,0.250000,0,0);}
.mb3_c00257{transform:matrix(0.285054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285054,0.000000,0.000000,0.250000,0,0);}
.m3_c00257{transform:matrix(0.285399,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285399,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285399,0.000000,0.000000,0.250000,0,0);}
.m20_c00257{transform:matrix(0.286359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286359,0.000000,0.000000,0.250000,0,0);}
.m8f_c00257{transform:matrix(0.286394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286394,0.000000,0.000000,0.250000,0,0);}
.ma9_c00257{transform:matrix(0.286543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286543,0.000000,0.000000,0.250000,0,0);}
.mad_c00257{transform:matrix(0.286604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286604,0.000000,0.000000,0.250000,0,0);}
.m75_c00257{transform:matrix(0.287271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287271,0.000000,0.000000,0.250000,0,0);}
.m54_c00257{transform:matrix(0.287576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287576,0.000000,0.000000,0.250000,0,0);}
.m1a_c00257{transform:matrix(0.288342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288342,0.000000,0.000000,0.250000,0,0);}
.m42_c00257{transform:matrix(0.289056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289056,0.000000,0.000000,0.250000,0,0);}
.m49_c00257{transform:matrix(0.289144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289144,0.000000,0.000000,0.250000,0,0);}
.m37_c00257{transform:matrix(0.289173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289173,0.000000,0.000000,0.250000,0,0);}
.m70_c00257{transform:matrix(0.289535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289535,0.000000,0.000000,0.250000,0,0);}
.m6c_c00257{transform:matrix(0.289791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289791,0.000000,0.000000,0.250000,0,0);}
.m28_c00257{transform:matrix(0.289929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289929,0.000000,0.000000,0.250000,0,0);}
.m4e_c00257{transform:matrix(0.289977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289977,0.000000,0.000000,0.250000,0,0);}
.m5b_c00257{transform:matrix(0.290058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290058,0.000000,0.000000,0.250000,0,0);}
.m57_c00257{transform:matrix(0.290326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290326,0.000000,0.000000,0.250000,0,0);}
.m24_c00257{transform:matrix(0.290699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290699,0.000000,0.000000,0.250000,0,0);}
.m4d_c00257{transform:matrix(0.290950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290950,0.000000,0.000000,0.250000,0,0);}
.m19_c00257{transform:matrix(0.291274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291274,0.000000,0.000000,0.250000,0,0);}
.mb7_c00257{transform:matrix(0.291600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291600,0.000000,0.000000,0.250000,0,0);}
.m43_c00257{transform:matrix(0.291909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291909,0.000000,0.000000,0.250000,0,0);}
.m51_c00257{transform:matrix(0.292571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292571,0.000000,0.000000,0.250000,0,0);}
.m7a_c00257{transform:matrix(0.292686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292686,0.000000,0.000000,0.250000,0,0);}
.m6e_c00257{transform:matrix(0.292962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292962,0.000000,0.000000,0.250000,0,0);}
.m5_c00257{transform:matrix(0.293038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293038,0.000000,0.000000,0.250000,0,0);}
.mb_c00257{transform:matrix(0.293298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293298,0.000000,0.000000,0.250000,0,0);}
.m55_c00257{transform:matrix(0.293880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293880,0.000000,0.000000,0.250000,0,0);}
.m14_c00257{transform:matrix(0.294077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294077,0.000000,0.000000,0.250000,0,0);}
.m22_c00257{transform:matrix(0.294204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294204,0.000000,0.000000,0.250000,0,0);}
.m89_c00257{transform:matrix(0.294321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294321,0.000000,0.000000,0.250000,0,0);}
.m10_c00257{transform:matrix(0.294618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294618,0.000000,0.000000,0.250000,0,0);}
.m12_c00257{transform:matrix(0.295066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295066,0.000000,0.000000,0.250000,0,0);}
.m93_c00257{transform:matrix(0.295112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295112,0.000000,0.000000,0.250000,0,0);}
.m23_c00257{transform:matrix(0.296580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296580,0.000000,0.000000,0.250000,0,0);}
.m11_c00257{transform:matrix(0.296683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296683,0.000000,0.000000,0.250000,0,0);}
.m96_c00257{transform:matrix(0.297117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297117,0.000000,0.000000,0.250000,0,0);}
.m7e_c00257{transform:matrix(0.298187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298187,0.000000,0.000000,0.250000,0,0);}
.m6f_c00257{transform:matrix(0.298267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298267,0.000000,0.000000,0.250000,0,0);}
.mb9_c00257{transform:matrix(0.298510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298510,0.000000,0.000000,0.250000,0,0);}
.m8b_c00257{transform:matrix(0.299723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299723,0.000000,0.000000,0.250000,0,0);}
.m2d_c00257{transform:matrix(0.300104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300104,0.000000,0.000000,0.250000,0,0);}
.ma4_c00257{transform:matrix(0.300611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300611,0.000000,0.000000,0.250000,0,0);}
.m1f_c00257{transform:matrix(0.300666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300666,0.000000,0.000000,0.250000,0,0);}
.m73_c00257{transform:matrix(0.301009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301009,0.000000,0.000000,0.250000,0,0);}
.m2a_c00257{transform:matrix(0.301244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301244,0.000000,0.000000,0.250000,0,0);}
.m35_c00257{transform:matrix(0.301516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301516,0.000000,0.000000,0.250000,0,0);}
.ma0_c00257{transform:matrix(0.301996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301996,0.000000,0.000000,0.250000,0,0);}
.m62_c00257{transform:matrix(0.302203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302203,0.000000,0.000000,0.250000,0,0);}
.m2c_c00257{transform:matrix(0.302406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302406,0.000000,0.000000,0.250000,0,0);}
.m6d_c00257{transform:matrix(0.302797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302797,0.000000,0.000000,0.250000,0,0);}
.m50_c00257{transform:matrix(0.304507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304507,0.000000,0.000000,0.250000,0,0);}
.m46_c00257{transform:matrix(0.305807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305807,0.000000,0.000000,0.250000,0,0);}
.m32_c00257{transform:matrix(0.305877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305877,0.000000,0.000000,0.250000,0,0);}
.m53_c00257{transform:matrix(0.306313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306313,0.000000,0.000000,0.250000,0,0);}
.m5e_c00257{transform:matrix(0.306591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306591,0.000000,0.000000,0.250000,0,0);}
.m65_c00257{transform:matrix(0.307272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307272,0.000000,0.000000,0.250000,0,0);}
.ma2_c00257{transform:matrix(0.308766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308766,0.000000,0.000000,0.250000,0,0);}
.m27_c00257{transform:matrix(0.309419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309419,0.000000,0.000000,0.250000,0,0);}
.m41_c00257{transform:matrix(0.309451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309451,0.000000,0.000000,0.250000,0,0);}
.maf_c00257{transform:matrix(0.309512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309512,0.000000,0.000000,0.250000,0,0);}
.maa_c00257{transform:matrix(0.309743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309743,0.000000,0.000000,0.250000,0,0);}
.m1b_c00257{transform:matrix(0.309865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309865,0.000000,0.000000,0.250000,0,0);}
.m59_c00257{transform:matrix(0.312875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312875,0.000000,0.000000,0.250000,0,0);}
.mab_c00257{transform:matrix(0.314180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314180,0.000000,0.000000,0.250000,0,0);}
.m61_c00257{transform:matrix(0.314374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314374,0.000000,0.000000,0.250000,0,0);}
.m98_c00257{transform:matrix(0.315763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315763,0.000000,0.000000,0.250000,0,0);}
.m76_c00257{transform:matrix(0.315938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315938,0.000000,0.000000,0.250000,0,0);}
.m5c_c00257{transform:matrix(0.316611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316611,0.000000,0.000000,0.250000,0,0);}
.m5d_c00257{transform:matrix(0.316832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316832,0.000000,0.000000,0.250000,0,0);}
.m31_c00257{transform:matrix(0.317164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317164,0.000000,0.000000,0.250000,0,0);}
.m47_c00257{transform:matrix(0.317628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317628,0.000000,0.000000,0.250000,0,0);}
.m56_c00257{transform:matrix(0.320282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320282,0.000000,0.000000,0.250000,0,0);}
.m87_c00257{transform:matrix(0.320776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320776,0.000000,0.000000,0.250000,0,0);}
.m64_c00257{transform:matrix(0.322368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322368,0.000000,0.000000,0.250000,0,0);}
.m2_c00257{transform:matrix(0.326105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326105,0.000000,0.000000,0.250000,0,0);}
.m66_c00257{transform:matrix(0.330094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330094,0.000000,0.000000,0.250000,0,0);}
.mb1_c00257{transform:matrix(0.330209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330209,0.000000,0.000000,0.250000,0,0);}
.m79_c00257{transform:matrix(0.335736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335736,0.000000,0.000000,0.250000,0,0);}
.m3f_c00257{transform:matrix(0.337087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337087,0.000000,0.000000,0.250000,0,0);}
.m91_c00257{transform:matrix(0.339255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339255,0.000000,0.000000,0.250000,0,0);}
.m4_c00257{transform:matrix(0.341525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341525,0.000000,0.000000,0.250000,0,0);}
.m7_c00257{transform:matrix(0.341545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341545,0.000000,0.000000,0.250000,0,0);}
.mb2_c00257{transform:matrix(0.347168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347168,0.000000,0.000000,0.250000,0,0);}
.m17_c00257{transform:matrix(0.348178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348178,0.000000,0.000000,0.250000,0,0);}
.m4a_c00257{transform:matrix(0.352820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352820,0.000000,0.000000,0.250000,0,0);}
.m99_c00257{transform:matrix(0.352860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352860,0.000000,0.000000,0.250000,0,0);}
.mf_c00257{transform:matrix(0.352883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352883,0.000000,0.000000,0.250000,0,0);}
.m9b_c00257{transform:matrix(0.358891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358891,0.000000,0.000000,0.250000,0,0);}
.m26_c00257{transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);}
.m8c_c00257{transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);}
.m90_c00257{transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);}
.md_c00257{transform:matrix(0.371565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371565,0.000000,0.000000,0.250000,0,0);}
.m1d_c00257{transform:matrix(0.393566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393566,0.000000,0.000000,0.250000,0,0);}
.v0_c00257{vertical-align:0.000000px;}
.lsd_c00257{letter-spacing:-3.465000px;}
.lsc_c00257{letter-spacing:-2.855167px;}
.ls9_c00257{letter-spacing:-2.765433px;}
.ls14_c00257{letter-spacing:-2.512547px;}
.ls11_c00257{letter-spacing:-2.324922px;}
.ls1d_c00257{letter-spacing:-1.509160px;}
.ls1b_c00257{letter-spacing:-1.503817px;}
.ls1c_c00257{letter-spacing:-0.628137px;}
.ls15_c00257{letter-spacing:-0.571033px;}
.ls2_c00257{letter-spacing:0.000000px;}
.ls0_c00257{letter-spacing:0.013464px;}
.lse_c00257{letter-spacing:0.750501px;}
.ls10_c00257{letter-spacing:1.109436px;}
.ls19_c00257{letter-spacing:2.284134px;}
.lsa_c00257{letter-spacing:2.406498px;}
.ls1_c00257{letter-spacing:2.553335px;}
.ls3_c00257{letter-spacing:2.826773px;}
.ls5_c00257{letter-spacing:2.936743px;}
.ls13_c00257{letter-spacing:2.944901px;}
.ls8_c00257{letter-spacing:3.091738px;}
.ls1e_c00257{letter-spacing:3.287521px;}
.ls16_c00257{letter-spacing:3.366000px;}
.ls6_c00257{letter-spacing:3.524400px;}
.lsb_c00257{letter-spacing:3.638298px;}
.ls17_c00257{letter-spacing:3.662771px;}
.lsf_c00257{letter-spacing:3.722400px;}
.ls1f_c00257{letter-spacing:3.880810px;}
.ls12_c00257{letter-spacing:3.950110px;}
.ls7_c00257{letter-spacing:3.999610px;}
.ls4_c00257{letter-spacing:4.078810px;}
.ls1a_c00257{letter-spacing:31.363200px;}
.ls18_c00257{letter-spacing:51.321798px;}
.sc__c00257{text-shadow:none;}
.sc0_c00257{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00257{-webkit-text-stroke:0px transparent;}
.sc0_c00257{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00257{word-spacing:0.000000px;}
._0_c00257{margin-left:-13.590720px;}
._4_c00257{width:1.989801px;}
._3_c00257{width:7.301448px;}
._2_c00257{width:29.138592px;}
._1_c00257{width:43.153787px;}
.fc0_c00257{color:transparent;}
.fs15_c00257{font-size:21.978000px;}
.fs0_c00257{font-size:22.176000px;}
.fse_c00257{font-size:25.146000px;}
.fs14_c00257{font-size:27.720000px;}
.fsf_c00257{font-size:31.363200px;}
.fs17_c00257{font-size:33.264000px;}
.fs18_c00257{font-size:38.808000px;}
.fs10_c00257{font-size:42.966198px;}
.fs11_c00257{font-size:44.352000px;}
.fs19_c00257{font-size:45.936198px;}
.fsc_c00257{font-size:46.134000px;}
.fsd_c00257{font-size:51.321798px;}
.fs2_c00257{font-size:66.330000px;}
.fsb_c00257{font-size:67.320000px;}
.fs4_c00257{font-size:70.488000px;}
.fs9_c00257{font-size:74.448000px;}
.fs6_c00257{font-size:77.220000px;}
.fs13_c00257{font-size:77.616198px;}
.fs12_c00257{font-size:78.804000px;}
.fsa_c00257{font-size:79.002198px;}
.fs16_c00257{font-size:79.596198px;}
.fs7_c00257{font-size:79.992198px;}
.fs3_c00257{font-size:81.576198px;}
.fs1_c00257{font-size:87.516198px;}
.fs8_c00257{font-size:99.000000px;}
.fs1a_c00257{font-size:107.712198px;}
.fs5_c00257{font-size:120.384000px;}
.y0_c00257{bottom:0.000000px;}
.y27_c00257{bottom:33.764985px;}
.y26_c00257{bottom:40.180185px;}
.y25_c00257{bottom:68.335785px;}
.y24_c00257{bottom:74.043135px;}
.y1_c00257{bottom:76.500000px;}
.y23_c00257{bottom:91.863135px;}
.y22_c00257{bottom:100.060335px;}
.y2_c00257{bottom:121.087935px;}
.y21_c00257{bottom:133.561935px;}
.y20_c00257{bottom:137.477385px;}
.y1f_c00257{bottom:166.707135px;}
.y1e_c00257{bottom:199.139535px;}
.y1d_c00257{bottom:230.859135px;}
.y1c_c00257{bottom:262.573785px;}
.y1b_c00257{bottom:286.101135px;}
.y1a_c00257{bottom:294.298335px;}
.y19_c00257{bottom:326.369385px;}
.y18_c00257{bottom:357.732585px;}
.y17_c00257{bottom:371.637135px;}
.y16_c00257{bottom:381.967785px;}
.y15_c00257{bottom:389.457135px;}
.y14_c00257{bottom:420.815385px;}
.y13_c00257{bottom:452.539935px;}
.y12_c00257{bottom:479.626335px;}
.y11_c00257{bottom:513.840735px;}
.y10_c00257{bottom:545.911785px;}
.yf_c00257{bottom:577.279935px;}
.ye_c00257{bottom:609.350985px;}
.yd_c00257{bottom:641.070585px;}
.yc_c00257{bottom:672.438735px;}
.yb_c00257{bottom:704.158335px;}
.ya_c00257{bottom:735.516585px;}
.y9_c00257{bottom:767.236185px;}
.y8_c00257{bottom:798.604335px;}
.y7_c00257{bottom:829.967535px;}
.y6_c00257{bottom:862.038585px;}
.y5_c00257{bottom:893.763135px;}
.y4_c00257{bottom:925.126335px;}
.y3_c00257{bottom:1071.958185px;}
.h10_c00257{height:20.887891px;}
.h16_c00257{height:22.922367px;}
.h2_c00257{height:23.128875px;}
.hf_c00257{height:26.226492px;}
.h15_c00257{height:28.911094px;}
.he_c00257{height:34.180317px;}
.h18_c00257{height:34.693313px;}
.h19_c00257{height:40.475531px;}
.h11_c00257{height:42.168974px;}
.h12_c00257{height:46.257750px;}
.h1a_c00257{height:47.910019px;}
.hd_c00257{height:48.116320px;}
.h4_c00257{height:69.180117px;}
.hc_c00257{height:70.212656px;}
.ha_c00257{height:73.066641px;}
.h7_c00257{height:75.749502px;}
.h14_c00257{height:76.176054px;}
.h13_c00257{height:77.341816px;}
.hb_c00257{height:77.536337px;}
.h17_c00257{height:78.119315px;}
.h8_c00257{height:78.507968px;}
.h5_c00257{height:80.062577px;}
.h3_c00257{height:85.892362px;}
.h9_c00257{height:103.253906px;}
.h1b_c00257{height:105.713632px;}
.h6_c00257{height:118.150313px;}
.h1_c00257{height:1110.000000px;}
.h0_c00257{height:1263.000000px;}
.w1_c00257{width:763.500000px;}
.w0_c00257{width:892.500000px;}
.x0_c00257{left:0.000000px;}
.x2_c00257{left:51.461235px;}
.x1_c00257{left:64.500000px;}
.x69_c00257{left:72.855135px;}
.x4_c00257{left:81.047385px;}
.x1c_c00257{left:82.156185px;}
.x11_c00257{left:83.304585px;}
.x5_c00257{left:104.436135px;}
.x5e_c00257{left:114.751935px;}
.x12_c00257{left:115.821135px;}
.x52_c00257{left:136.670535px;}
.x50_c00257{left:137.878335px;}
.x4c_c00257{left:147.441735px;}
.x6c_c00257{left:148.629735px;}
.x1d_c00257{left:150.634485px;}
.x13_c00257{left:159.980085px;}
.x2a_c00257{left:171.092835px;}
.x47_c00257{left:181.240335px;}
.x6_c00257{left:182.764935px;}
.x32_c00257{left:191.962035px;}
.x1e_c00257{left:193.224285px;}
.x14_c00257{left:202.960935px;}
.x48_c00257{left:204.787485px;}
.x7_c00257{left:215.251785px;}
.x1f_c00257{left:227.275335px;}
.x3f_c00257{left:236.299185px;}
.x2b_c00257{left:237.972285px;}
.x45_c00257{left:249.060285px;}
.x49_c00257{left:250.654185px;}
.x37_c00257{left:259.480035px;}
.x59_c00257{left:260.484885px;}
.x5f_c00257{left:270.394785px;}
.x33_c00257{left:271.513485px;}
.x66_c00257{left:281.037285px;}
.x20_c00257{left:282.784635px;}
.x4a_c00257{left:293.922135px;}
.x3a_c00257{left:295.075485px;}
.x8_c00257{left:303.985485px;}
.x15_c00257{left:306.247635px;}
.x54_c00257{left:313.741935px;}
.x40_c00257{left:315.751635px;}
.x2c_c00257{left:326.453535px;}
.x25_c00257{left:336.209985px;}
.x9_c00257{left:337.496985px;}
.x21_c00257{left:338.556285px;}
.x16_c00257{left:349.228485px;}
.x60_c00257{left:358.707735px;}
.x3c_c00257{left:360.123435px;}
.x2d_c00257{left:370.998585px;}
.x4d_c00257{left:381.665835px;}
.x26_c00257{left:382.744935px;}
.x5a_c00257{left:384.175485px;}
.xa_c00257{left:393.130035px;}
.x67_c00257{left:403.262685px;}
.x5b_c00257{left:405.811935px;}
.x41_c00257{left:413.533935px;}
.x17_c00257{left:416.073285px;}
.x34_c00257{left:425.404035px;}
.x3d_c00257{left:426.809835px;}
.x68_c00257{left:437.288985px;}
.xb_c00257{left:438.546285px;}
.x63_c00257{left:439.625385px;}
.x5c_c00257{left:447.773085px;}
.x18_c00257{left:449.322435px;}
.x61_c00257{left:458.875935px;}
.x22_c00257{left:460.004535px;}
.x55_c00257{left:461.078685px;}
.x35_c00257{left:469.909485px;}
.xc_c00257{left:472.132035px;}
.x62_c00257{left:480.180735px;}
.x3e_c00257{left:482.457735px;}
.x2e_c00257{left:483.739785px;}
.x6a_c00257{left:491.644935px;}
.x27_c00257{left:493.570485px;}
.xd_c00257{left:504.995085px;}
.x38_c00257{left:515.013885px;}
.x2f_c00257{left:525.502935px;}
.x56_c00257{left:526.651335px;}
.x5d_c00257{left:547.515585px;}
.x19_c00257{left:549.104535px;}
.x3b_c00257{left:557.984835px;}
.x30_c00257{left:560.266785px;}
.x64_c00257{left:569.350035px;}
.x42_c00257{left:570.924135px;}
.x23_c00257{left:581.230035px;}
.x1a_c00257{left:590.738985px;}
.xe_c00257{left:592.352685px;}
.x28_c00257{left:604.717785px;}
.x24_c00257{left:615.147435px;}
.x57_c00257{left:616.345335px;}
.xf_c00257{left:625.463235px;}
.x6b_c00257{left:626.552235px;}
.x43_c00257{left:636.006735px;}
.x29_c00257{left:637.249185px;}
.x3_c00257{left:647.540235px;}
.x6d_c00257{left:657.662985px;}
.x31_c00257{left:659.237085px;}
.x4e_c00257{left:660.598335px;}
.x39_c00257{left:669.656835px;}
.x1b_c00257{left:681.611085px;}
.x4b_c00257{left:693.134685px;}
.x4f_c00257{left:694.486035px;}
.x46_c00257{left:696.104685px;}
.x51_c00257{left:697.634235px;}
.x6e_c00257{left:698.658885px;}
.x6f_c00257{left:700.064685px;}
.x44_c00257{left:702.990135px;}
.x10_c00257{left:704.252385px;}
.x58_c00257{left:706.727385px;}
.x53_c00257{left:715.186935px;}
.x36_c00257{left:725.646285px;}
.x65_c00257{left:737.036235px;}
@media print{
.v0_c00257{vertical-align:0.000000pt;}
.lsd_c00257{letter-spacing:-3.080000pt;}
.lsc_c00257{letter-spacing:-2.537926pt;}
.ls9_c00257{letter-spacing:-2.458163pt;}
.ls14_c00257{letter-spacing:-2.233375pt;}
.ls11_c00257{letter-spacing:-2.066597pt;}
.ls1d_c00257{letter-spacing:-1.341475pt;}
.ls1b_c00257{letter-spacing:-1.336726pt;}
.ls1c_c00257{letter-spacing:-0.558344pt;}
.ls15_c00257{letter-spacing:-0.507585pt;}
.ls2_c00257{letter-spacing:0.000000pt;}
.ls0_c00257{letter-spacing:0.011968pt;}
.lse_c00257{letter-spacing:0.667112pt;}
.ls10_c00257{letter-spacing:0.986166pt;}
.ls19_c00257{letter-spacing:2.030341pt;}
.lsa_c00257{letter-spacing:2.139109pt;}
.ls1_c00257{letter-spacing:2.269631pt;}
.ls3_c00257{letter-spacing:2.512687pt;}
.ls5_c00257{letter-spacing:2.610438pt;}
.ls13_c00257{letter-spacing:2.617690pt;}
.ls8_c00257{letter-spacing:2.748211pt;}
.ls1e_c00257{letter-spacing:2.922241pt;}
.ls16_c00257{letter-spacing:2.992000pt;}
.ls6_c00257{letter-spacing:3.132800pt;}
.lsb_c00257{letter-spacing:3.234043pt;}
.ls17_c00257{letter-spacing:3.255797pt;}
.lsf_c00257{letter-spacing:3.308800pt;}
.ls1f_c00257{letter-spacing:3.449609pt;}
.ls12_c00257{letter-spacing:3.511209pt;}
.ls7_c00257{letter-spacing:3.555209pt;}
.ls4_c00257{letter-spacing:3.625609pt;}
.ls1a_c00257{letter-spacing:27.878400pt;}
.ls18_c00257{letter-spacing:45.619376pt;}
.ws0_c00257{word-spacing:0.000000pt;}
._0_c00257{margin-left:-12.080640pt;}
._4_c00257{width:1.768712pt;}
._3_c00257{width:6.490176pt;}
._2_c00257{width:25.900971pt;}
._1_c00257{width:38.358921pt;}
.fs15_c00257{font-size:19.536000pt;}
.fs0_c00257{font-size:19.712000pt;}
.fse_c00257{font-size:22.352000pt;}
.fs14_c00257{font-size:24.640000pt;}
.fsf_c00257{font-size:27.878400pt;}
.fs17_c00257{font-size:29.568000pt;}
.fs18_c00257{font-size:34.496000pt;}
.fs10_c00257{font-size:38.192176pt;}
.fs11_c00257{font-size:39.424000pt;}
.fs19_c00257{font-size:40.832176pt;}
.fsc_c00257{font-size:41.008000pt;}
.fsd_c00257{font-size:45.619376pt;}
.fs2_c00257{font-size:58.960000pt;}
.fsb_c00257{font-size:59.840000pt;}
.fs4_c00257{font-size:62.656000pt;}
.fs9_c00257{font-size:66.176000pt;}
.fs6_c00257{font-size:68.640000pt;}
.fs13_c00257{font-size:68.992176pt;}
.fs12_c00257{font-size:70.048000pt;}
.fsa_c00257{font-size:70.224176pt;}
.fs16_c00257{font-size:70.752176pt;}
.fs7_c00257{font-size:71.104176pt;}
.fs3_c00257{font-size:72.512176pt;}
.fs1_c00257{font-size:77.792176pt;}
.fs8_c00257{font-size:88.000000pt;}
.fs1a_c00257{font-size:95.744176pt;}
.fs5_c00257{font-size:107.008000pt;}
.y0_c00257{bottom:0.000000pt;}
.y27_c00257{bottom:30.013320pt;}
.y26_c00257{bottom:35.715720pt;}
.y25_c00257{bottom:60.742920pt;}
.y24_c00257{bottom:65.816120pt;}
.y1_c00257{bottom:68.000000pt;}
.y23_c00257{bottom:81.656120pt;}
.y22_c00257{bottom:88.942520pt;}
.y2_c00257{bottom:107.633720pt;}
.y21_c00257{bottom:118.721720pt;}
.y20_c00257{bottom:122.202120pt;}
.y1f_c00257{bottom:148.184120pt;}
.y1e_c00257{bottom:177.012920pt;}
.y1d_c00257{bottom:205.208120pt;}
.y1c_c00257{bottom:233.398920pt;}
.y1b_c00257{bottom:254.312120pt;}
.y1a_c00257{bottom:261.598520pt;}
.y19_c00257{bottom:290.106120pt;}
.y18_c00257{bottom:317.984520pt;}
.y17_c00257{bottom:330.344120pt;}
.y16_c00257{bottom:339.526920pt;}
.y15_c00257{bottom:346.184120pt;}
.y14_c00257{bottom:374.058120pt;}
.y13_c00257{bottom:402.257720pt;}
.y12_c00257{bottom:426.334520pt;}
.y11_c00257{bottom:456.747320pt;}
.y10_c00257{bottom:485.254920pt;}
.yf_c00257{bottom:513.137720pt;}
.ye_c00257{bottom:541.645320pt;}
.yd_c00257{bottom:569.840520pt;}
.yc_c00257{bottom:597.723320pt;}
.yb_c00257{bottom:625.918520pt;}
.ya_c00257{bottom:653.792520pt;}
.y9_c00257{bottom:681.987720pt;}
.y8_c00257{bottom:709.870520pt;}
.y7_c00257{bottom:737.748920pt;}
.y6_c00257{bottom:766.256520pt;}
.y5_c00257{bottom:794.456120pt;}
.y4_c00257{bottom:822.334520pt;}
.y3_c00257{bottom:952.851720pt;}
.h10_c00257{height:18.567014pt;}
.h16_c00257{height:20.375438pt;}
.h2_c00257{height:20.559000pt;}
.hf_c00257{height:23.312438pt;}
.h15_c00257{height:25.698750pt;}
.he_c00257{height:30.382504pt;}
.h18_c00257{height:30.838500pt;}
.h19_c00257{height:35.978250pt;}
.h11_c00257{height:37.483532pt;}
.h12_c00257{height:41.118000pt;}
.h1a_c00257{height:42.586684pt;}
.hd_c00257{height:42.770063pt;}
.h4_c00257{height:61.493438pt;}
.hc_c00257{height:62.411250pt;}
.ha_c00257{height:64.948125pt;}
.h7_c00257{height:67.332891pt;}
.h14_c00257{height:67.712048pt;}
.h13_c00257{height:68.748281pt;}
.hb_c00257{height:68.921188pt;}
.h17_c00257{height:69.439391pt;}
.h8_c00257{height:69.784860pt;}
.h5_c00257{height:71.166735pt;}
.h3_c00257{height:76.348766pt;}
.h9_c00257{height:91.781250pt;}
.h1b_c00257{height:93.967673pt;}
.h6_c00257{height:105.022500pt;}
.h1_c00257{height:986.666667pt;}
.h0_c00257{height:1122.666667pt;}
.w1_c00257{width:678.666667pt;}
.w0_c00257{width:793.333333pt;}
.x0_c00257{left:0.000000pt;}
.x2_c00257{left:45.743320pt;}
.x1_c00257{left:57.333333pt;}
.x69_c00257{left:64.760120pt;}
.x4_c00257{left:72.042120pt;}
.x1c_c00257{left:73.027720pt;}
.x11_c00257{left:74.048520pt;}
.x5_c00257{left:92.832120pt;}
.x5e_c00257{left:102.001720pt;}
.x12_c00257{left:102.952120pt;}
.x52_c00257{left:121.484920pt;}
.x50_c00257{left:122.558520pt;}
.x4c_c00257{left:131.059320pt;}
.x6c_c00257{left:132.115320pt;}
.x1d_c00257{left:133.897320pt;}
.x13_c00257{left:142.204520pt;}
.x2a_c00257{left:152.082520pt;}
.x47_c00257{left:161.102520pt;}
.x6_c00257{left:162.457720pt;}
.x32_c00257{left:170.632920pt;}
.x1e_c00257{left:171.754920pt;}
.x14_c00257{left:180.409720pt;}
.x48_c00257{left:182.033320pt;}
.x7_c00257{left:191.334920pt;}
.x1f_c00257{left:202.022520pt;}
.x3f_c00257{left:210.043720pt;}
.x2b_c00257{left:211.530920pt;}
.x45_c00257{left:221.386920pt;}
.x49_c00257{left:222.803720pt;}
.x37_c00257{left:230.648920pt;}
.x59_c00257{left:231.542120pt;}
.x5f_c00257{left:240.350920pt;}
.x33_c00257{left:241.345320pt;}
.x66_c00257{left:249.810920pt;}
.x20_c00257{left:251.364120pt;}
.x4a_c00257{left:261.264120pt;}
.x3a_c00257{left:262.289320pt;}
.x8_c00257{left:270.209320pt;}
.x15_c00257{left:272.220120pt;}
.x54_c00257{left:278.881720pt;}
.x40_c00257{left:280.668120pt;}
.x2c_c00257{left:290.180920pt;}
.x25_c00257{left:298.853320pt;}
.x9_c00257{left:299.997320pt;}
.x21_c00257{left:300.938920pt;}
.x16_c00257{left:310.425320pt;}
.x60_c00257{left:318.851320pt;}
.x3c_c00257{left:320.109720pt;}
.x2d_c00257{left:329.776520pt;}
.x4d_c00257{left:339.258520pt;}
.x26_c00257{left:340.217720pt;}
.x5a_c00257{left:341.489320pt;}
.xa_c00257{left:349.448920pt;}
.x67_c00257{left:358.455720pt;}
.x5b_c00257{left:360.721720pt;}
.x41_c00257{left:367.585720pt;}
.x17_c00257{left:369.842920pt;}
.x34_c00257{left:378.136920pt;}
.x3d_c00257{left:379.386520pt;}
.x68_c00257{left:388.701320pt;}
.xb_c00257{left:389.818920pt;}
.x63_c00257{left:390.778120pt;}
.x5c_c00257{left:398.020520pt;}
.x18_c00257{left:399.397720pt;}
.x61_c00257{left:407.889720pt;}
.x22_c00257{left:408.892920pt;}
.x55_c00257{left:409.847720pt;}
.x35_c00257{left:417.697320pt;}
.xc_c00257{left:419.672920pt;}
.x62_c00257{left:426.827320pt;}
.x3e_c00257{left:428.851320pt;}
.x2e_c00257{left:429.990920pt;}
.x6a_c00257{left:437.017720pt;}
.x27_c00257{left:438.729320pt;}
.xd_c00257{left:448.884520pt;}
.x38_c00257{left:457.790120pt;}
.x2f_c00257{left:467.113720pt;}
.x56_c00257{left:468.134520pt;}
.x5d_c00257{left:486.680520pt;}
.x19_c00257{left:488.092920pt;}
.x3b_c00257{left:495.986520pt;}
.x30_c00257{left:498.014920pt;}
.x64_c00257{left:506.088920pt;}
.x42_c00257{left:507.488120pt;}
.x23_c00257{left:516.648920pt;}
.x1a_c00257{left:525.101320pt;}
.xe_c00257{left:526.535720pt;}
.x28_c00257{left:537.526920pt;}
.x24_c00257{left:546.797720pt;}
.x57_c00257{left:547.862520pt;}
.xf_c00257{left:555.967320pt;}
.x6b_c00257{left:556.935320pt;}
.x43_c00257{left:565.339320pt;}
.x29_c00257{left:566.443720pt;}
.x3_c00257{left:575.591320pt;}
.x6d_c00257{left:584.589320pt;}
.x31_c00257{left:585.988520pt;}
.x4e_c00257{left:587.198520pt;}
.x39_c00257{left:595.250520pt;}
.x1b_c00257{left:605.876520pt;}
.x4b_c00257{left:616.119720pt;}
.x4f_c00257{left:617.320920pt;}
.x46_c00257{left:618.759720pt;}
.x51_c00257{left:620.119320pt;}
.x6e_c00257{left:621.030120pt;}
.x6f_c00257{left:622.279720pt;}
.x44_c00257{left:624.880120pt;}
.x10_c00257{left:626.002120pt;}
.x58_c00257{left:628.202120pt;}
.x53_c00257{left:635.721720pt;}
.x36_c00257{left:645.018920pt;}
.x65_c00257{left:655.143320pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_87b785ed44d74aeb78df7151.woff2')format("woff");}.ff1_c00258{font-family:ff1_c00258;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00258;src:url('chunks/assets/font_677a24a57894101145a0794f.woff2')format("woff");}.ff2_c00258{font-family:ff2_c00258;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00258;src:url('chunks/assets/font_8e468f533c30bca419d5581a.woff2')format("woff");}.ff3_c00258{font-family:ff3_c00258;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00258;src:url('chunks/assets/font_9b28855a3e9f16b8a3c3296e.woff2')format("woff");}.ff4_c00258{font-family:ff4_c00258;line-height:0.666000;font-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_c00258{transform:matrix(0.056251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056251,0.000000,0.000000,0.250000,0,0);}
.mc9_c00258{transform:matrix(0.062501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062501,0.000000,0.000000,0.250000,0,0);}
.m1b_c00258{transform:matrix(0.155278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155278,0.000000,0.000000,0.250000,0,0);}
.mc5_c00258{transform:matrix(0.156249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156249,0.000000,0.000000,0.250000,0,0);}
.mc8_c00258{transform:matrix(0.174999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174999,0.000000,0.000000,0.250000,0,0);}
.mc7_c00258{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00258{transform:matrix(0.183334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183334,0.000000,0.000000,0.250000,0,0);}
.m97_c00258{transform:matrix(0.189703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189703,0.000000,0.000000,0.250000,0,0);}
.m4_c00258{transform:matrix(0.192806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192806,0.000000,0.000000,0.250000,0,0);}
.m3b_c00258{transform:matrix(0.194962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194962,0.000000,0.000000,0.250000,0,0);}
.m8e_c00258{transform:matrix(0.196729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196729,0.000000,0.000000,0.250000,0,0);}
.m7f_c00258{transform:matrix(0.215988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215988,0.000000,0.000000,0.250000,0,0);}
.m96_c00258{transform:matrix(0.228445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228445,0.000000,0.000000,0.250000,0,0);}
.m9e_c00258{transform:matrix(0.233136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233136,0.000000,0.000000,0.250000,0,0);}
.m2a_c00258{transform:matrix(0.236189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236189,0.000000,0.000000,0.250000,0,0);}
.m75_c00258{transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);}
.m0_c00258{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m27_c00258{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.m90_c00258{transform:matrix(0.252435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252435,0.000000,0.000000,0.250000,0,0);}
.m82_c00258{transform:matrix(0.252461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252461,0.000000,0.000000,0.250000,0,0);}
.ma8_c00258{transform:matrix(0.254184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254184,0.000000,0.000000,0.250000,0,0);}
.m4d_c00258{transform:matrix(0.254597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254597,0.000000,0.000000,0.250000,0,0);}
.m68_c00258{transform:matrix(0.254676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254676,0.000000,0.000000,0.250000,0,0);}
.mb0_c00258{transform:matrix(0.254970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254970,0.000000,0.000000,0.250000,0,0);}
.m60_c00258{transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);}
.mce_c00258{transform:matrix(0.258384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258384,0.000000,0.000000,0.250000,0,0);}
.m84_c00258{transform:matrix(0.258445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258445,0.000000,0.000000,0.250000,0,0);}
.m89_c00258{transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);}
.mb2_c00258{transform:matrix(0.259641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259641,0.000000,0.000000,0.250000,0,0);}
.m26_c00258{transform:matrix(0.260147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260147,0.000000,0.000000,0.250000,0,0);}
.mbf_c00258{transform:matrix(0.260405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260405,0.000000,0.000000,0.250000,0,0);}
.m87_c00258{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m4b_c00258{transform:matrix(0.261258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261258,0.000000,0.000000,0.250000,0,0);}
.m1f_c00258{transform:matrix(0.262297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262297,0.000000,0.000000,0.250000,0,0);}
.m1c_c00258{transform:matrix(0.262708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262708,0.000000,0.000000,0.250000,0,0);}
.m1a_c00258{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m7_c00258{transform:matrix(0.263372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263372,0.000000,0.000000,0.250000,0,0);}
.m78_c00258{transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);}
.m4c_c00258{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m6d_c00258{transform:matrix(0.264073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264073,0.000000,0.000000,0.250000,0,0);}
.m9d_c00258{transform:matrix(0.264092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264092,0.000000,0.000000,0.250000,0,0);}
.m31_c00258{transform:matrix(0.264950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264950,0.000000,0.000000,0.250000,0,0);}
.m4e_c00258{transform:matrix(0.265581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265581,0.000000,0.000000,0.250000,0,0);}
.mcd_c00258{transform:matrix(0.265773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265773,0.000000,0.000000,0.250000,0,0);}
.mac_c00258{transform:matrix(0.266105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266105,0.000000,0.000000,0.250000,0,0);}
.m16_c00258{transform:matrix(0.266354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266354,0.000000,0.000000,0.250000,0,0);}
.m1_c00258{transform:matrix(0.266688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266688,0.000000,0.000000,0.250000,0,0);}
.m5f_c00258{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.m38_c00258{transform:matrix(0.267205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267205,0.000000,0.000000,0.250000,0,0);}
.m21_c00258{transform:matrix(0.267577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267577,0.000000,0.000000,0.250000,0,0);}
.m6_c00258{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m5c_c00258{transform:matrix(0.268107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268107,0.000000,0.000000,0.250000,0,0);}
.maa_c00258{transform:matrix(0.268241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268241,0.000000,0.000000,0.250000,0,0);}
.m3e_c00258{transform:matrix(0.268484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268484,0.000000,0.000000,0.250000,0,0);}
.mb1_c00258{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.ma9_c00258{transform:matrix(0.268624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268624,0.000000,0.000000,0.250000,0,0);}
.m20_c00258{transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);}
.m6f_c00258{transform:matrix(0.268885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268885,0.000000,0.000000,0.250000,0,0);}
.m5e_c00258{transform:matrix(0.270374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270374,0.000000,0.000000,0.250000,0,0);}
.ma7_c00258{transform:matrix(0.270773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270773,0.000000,0.000000,0.250000,0,0);}
.m12_c00258{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m51_c00258{transform:matrix(0.271184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271184,0.000000,0.000000,0.250000,0,0);}
.mb7_c00258{transform:matrix(0.271529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271529,0.000000,0.000000,0.250000,0,0);}
.m6b_c00258{transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);}
.m4f_c00258{transform:matrix(0.271612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271612,0.000000,0.000000,0.250000,0,0);}
.ma1_c00258{transform:matrix(0.272031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272031,0.000000,0.000000,0.250000,0,0);}
.m9c_c00258{transform:matrix(0.272153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272153,0.000000,0.000000,0.250000,0,0);}
.m52_c00258{transform:matrix(0.272435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272435,0.000000,0.000000,0.250000,0,0);}
.m41_c00258{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m4a_c00258{transform:matrix(0.272719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272719,0.000000,0.000000,0.250000,0,0);}
.mcc_c00258{transform:matrix(0.273538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273538,0.000000,0.000000,0.250000,0,0);}
.m46_c00258{transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);}
.m2_c00258{transform:matrix(0.273905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273905,0.000000,0.000000,0.250000,0,0);}
.m43_c00258{transform:matrix(0.274611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274611,0.000000,0.000000,0.250000,0,0);}
.m40_c00258{transform:matrix(0.274841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274841,0.000000,0.000000,0.250000,0,0);}
.m2d_c00258{transform:matrix(0.274860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274860,0.000000,0.000000,0.250000,0,0);}
.m8d_c00258{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m59_c00258{transform:matrix(0.275573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275573,0.000000,0.000000,0.250000,0,0);}
.m3c_c00258{transform:matrix(0.275733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275733,0.000000,0.000000,0.250000,0,0);}
.m48_c00258{transform:matrix(0.276718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276718,0.000000,0.000000,0.250000,0,0);}
.mf_c00258{transform:matrix(0.277164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277164,0.000000,0.000000,0.250000,0,0);}
.m5a_c00258{transform:matrix(0.277173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277173,0.000000,0.000000,0.250000,0,0);}
.m33_c00258{transform:matrix(0.277285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277285,0.000000,0.000000,0.250000,0,0);}
.m55_c00258{transform:matrix(0.277332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277332,0.000000,0.000000,0.250000,0,0);}
.m53_c00258{transform:matrix(0.277536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277536,0.000000,0.000000,0.250000,0,0);}
.m2c_c00258{transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);}
.m6a_c00258{transform:matrix(0.278896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278896,0.000000,0.000000,0.250000,0,0);}
.ma5_c00258{transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);}
.mc_c00258{transform:matrix(0.279667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279667,0.000000,0.000000,0.250000,0,0);}
.mb8_c00258{transform:matrix(0.279964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279964,0.000000,0.000000,0.250000,0,0);}
.me_c00258{transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);}
.m2e_c00258{transform:matrix(0.280174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280174,0.000000,0.000000,0.250000,0,0);}
.m9_c00258{transform:matrix(0.280818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280818,0.000000,0.000000,0.250000,0,0);}
.mb5_c00258{transform:matrix(0.280848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280848,0.000000,0.000000,0.250000,0,0);}
.m63_c00258{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.ma0_c00258{transform:matrix(0.282371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282371,0.000000,0.000000,0.250000,0,0);}
.mb6_c00258{transform:matrix(0.282543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282543,0.000000,0.000000,0.250000,0,0);}
.m7b_c00258{transform:matrix(0.282587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282587,0.000000,0.000000,0.250000,0,0);}
.m32_c00258{transform:matrix(0.282816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282816,0.000000,0.000000,0.250000,0,0);}
.m71_c00258{transform:matrix(0.283093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283093,0.000000,0.000000,0.250000,0,0);}
.mcb_c00258{transform:matrix(0.283366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283366,0.000000,0.000000,0.250000,0,0);}
.m66_c00258{transform:matrix(0.283372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283372,0.000000,0.000000,0.250000,0,0);}
.m1d_c00258{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m56_c00258{transform:matrix(0.283787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283787,0.000000,0.000000,0.250000,0,0);}
.m10_c00258{transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);}
.m86_c00258{transform:matrix(0.284196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284196,0.000000,0.000000,0.250000,0,0);}
.mb9_c00258{transform:matrix(0.284681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284681,0.000000,0.000000,0.250000,0,0);}
.m29_c00258{transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);}
.m3f_c00258{transform:matrix(0.285694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285694,0.000000,0.000000,0.250000,0,0);}
.m37_c00258{transform:matrix(0.286659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286659,0.000000,0.000000,0.250000,0,0);}
.m92_c00258{transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);}
.m50_c00258{transform:matrix(0.287402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287402,0.000000,0.000000,0.250000,0,0);}
.mc1_c00258{transform:matrix(0.287553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287553,0.000000,0.000000,0.250000,0,0);}
.mc3_c00258{transform:matrix(0.287735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287735,0.000000,0.000000,0.250000,0,0);}
.m99_c00258{transform:matrix(0.289520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289520,0.000000,0.000000,0.250000,0,0);}
.m19_c00258{transform:matrix(0.290170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290170,0.000000,0.000000,0.250000,0,0);}
.m47_c00258{transform:matrix(0.290202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290202,0.000000,0.000000,0.250000,0,0);}
.m24_c00258{transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);}
.m76_c00258{transform:matrix(0.291802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291802,0.000000,0.000000,0.250000,0,0);}
.m58_c00258{transform:matrix(0.292191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292191,0.000000,0.000000,0.250000,0,0);}
.m7d_c00258{transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);}
.m6c_c00258{transform:matrix(0.292782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292782,0.000000,0.000000,0.250000,0,0);}
.ma6_c00258{transform:matrix(0.292830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292830,0.000000,0.000000,0.250000,0,0);}
.m2b_c00258{transform:matrix(0.292954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292954,0.000000,0.000000,0.250000,0,0);}
.ma4_c00258{transform:matrix(0.293677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293677,0.000000,0.000000,0.250000,0,0);}
.m6e_c00258{transform:matrix(0.293847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293847,0.000000,0.000000,0.250000,0,0);}
.m5b_c00258{transform:matrix(0.293864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293864,0.000000,0.000000,0.250000,0,0);}
.m23_c00258{transform:matrix(0.293917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293917,0.000000,0.000000,0.250000,0,0);}
.m11_c00258{transform:matrix(0.294286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294286,0.000000,0.000000,0.250000,0,0);}
.m5_c00258{transform:matrix(0.295479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295479,0.000000,0.000000,0.250000,0,0);}
.m80_c00258{transform:matrix(0.296568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296568,0.000000,0.000000,0.250000,0,0);}
.m91_c00258{transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);}
.m88_c00258{transform:matrix(0.296872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296872,0.000000,0.000000,0.250000,0,0);}
.m94_c00258{transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);}
.m34_c00258{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m93_c00258{transform:matrix(0.298428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298428,0.000000,0.000000,0.250000,0,0);}
.mab_c00258{transform:matrix(0.298710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298710,0.000000,0.000000,0.250000,0,0);}
.mbe_c00258{transform:matrix(0.301301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301301,0.000000,0.000000,0.250000,0,0);}
.mbd_c00258{transform:matrix(0.302713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302713,0.000000,0.000000,0.250000,0,0);}
.mb4_c00258{transform:matrix(0.303652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303652,0.000000,0.000000,0.250000,0,0);}
.m81_c00258{transform:matrix(0.304123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304123,0.000000,0.000000,0.250000,0,0);}
.m17_c00258{transform:matrix(0.304441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304441,0.000000,0.000000,0.250000,0,0);}
.m39_c00258{transform:matrix(0.305499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305499,0.000000,0.000000,0.250000,0,0);}
.m69_c00258{transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);}
.m61_c00258{transform:matrix(0.307757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307757,0.000000,0.000000,0.250000,0,0);}
.m77_c00258{transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);}
.m3a_c00258{transform:matrix(0.307987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307987,0.000000,0.000000,0.250000,0,0);}
.m79_c00258{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m72_c00258{transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);}
.m3_c00258{transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);}
.mbb_c00258{transform:matrix(0.309112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309112,0.000000,0.000000,0.250000,0,0);}
.m25_c00258{transform:matrix(0.309804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309804,0.000000,0.000000,0.250000,0,0);}
.m28_c00258{transform:matrix(0.310026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310026,0.000000,0.000000,0.250000,0,0);}
.m18_c00258{transform:matrix(0.310773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310773,0.000000,0.000000,0.250000,0,0);}
.m67_c00258{transform:matrix(0.311988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311988,0.000000,0.000000,0.250000,0,0);}
.mb3_c00258{transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);}
.m45_c00258{transform:matrix(0.314970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314970,0.000000,0.000000,0.250000,0,0);}
.m9b_c00258{transform:matrix(0.315717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315717,0.000000,0.000000,0.250000,0,0);}
.ma_c00258{transform:matrix(0.316971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316971,0.000000,0.000000,0.250000,0,0);}
.m7c_c00258{transform:matrix(0.318696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318696,0.000000,0.000000,0.250000,0,0);}
.mad_c00258{transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);}
.m64_c00258{transform:matrix(0.319854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319854,0.000000,0.000000,0.250000,0,0);}
.m62_c00258{transform:matrix(0.320064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320064,0.000000,0.000000,0.250000,0,0);}
.m8f_c00258{transform:matrix(0.321236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321236,0.000000,0.000000,0.250000,0,0);}
.m70_c00258{transform:matrix(0.322443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322443,0.000000,0.000000,0.250000,0,0);}
.md_c00258{transform:matrix(0.322595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322595,0.000000,0.000000,0.250000,0,0);}
.m54_c00258{transform:matrix(0.323536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323536,0.000000,0.000000,0.250000,0,0);}
.m8_c00258{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.m7e_c00258{transform:matrix(0.324528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324528,0.000000,0.000000,0.250000,0,0);}
.m2f_c00258{transform:matrix(0.324940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324940,0.000000,0.000000,0.250000,0,0);}
.m14_c00258{transform:matrix(0.325345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325345,0.000000,0.000000,0.250000,0,0);}
.m1e_c00258{transform:matrix(0.325859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325859,0.000000,0.000000,0.250000,0,0);}
.m30_c00258{transform:matrix(0.325919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325919,0.000000,0.000000,0.250000,0,0);}
.m95_c00258{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m73_c00258{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.mc0_c00258{transform:matrix(0.328681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328681,0.000000,0.000000,0.250000,0,0);}
.m5d_c00258{transform:matrix(0.329979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329979,0.000000,0.000000,0.250000,0,0);}
.m15_c00258{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m36_c00258{transform:matrix(0.334869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334869,0.000000,0.000000,0.250000,0,0);}
.mae_c00258{transform:matrix(0.337410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337410,0.000000,0.000000,0.250000,0,0);}
.m83_c00258{transform:matrix(0.337752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337752,0.000000,0.000000,0.250000,0,0);}
.m7a_c00258{transform:matrix(0.339232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339232,0.000000,0.000000,0.250000,0,0);}
.mbc_c00258{transform:matrix(0.340484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340484,0.000000,0.000000,0.250000,0,0);}
.mb_c00258{transform:matrix(0.340595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340595,0.000000,0.000000,0.250000,0,0);}
.m22_c00258{transform:matrix(0.340627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340627,0.000000,0.000000,0.250000,0,0);}
.mba_c00258{transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);}
.m85_c00258{transform:matrix(0.342633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342633,0.000000,0.000000,0.250000,0,0);}
.m13_c00258{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.ma3_c00258{transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);}
.m42_c00258{transform:matrix(0.345117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345117,0.000000,0.000000,0.250000,0,0);}
.m49_c00258{transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);}
.m57_c00258{transform:matrix(0.347756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347756,0.000000,0.000000,0.250000,0,0);}
.m44_c00258{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m98_c00258{transform:matrix(0.349838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349838,0.000000,0.000000,0.250000,0,0);}
.m65_c00258{transform:matrix(0.350956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350956,0.000000,0.000000,0.250000,0,0);}
.m9a_c00258{transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);}
.maf_c00258{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m8c_c00258{transform:matrix(0.359212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359212,0.000000,0.000000,0.250000,0,0);}
.m9f_c00258{transform:matrix(0.365360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365360,0.000000,0.000000,0.250000,0,0);}
.ma2_c00258{transform:matrix(0.365644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365644,0.000000,0.000000,0.250000,0,0);}
.mca_c00258{transform:matrix(0.372071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372071,0.000000,0.000000,0.250000,0,0);}
.m8a_c00258{transform:matrix(0.374714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374714,0.000000,0.000000,0.250000,0,0);}
.m74_c00258{transform:matrix(0.378961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378961,0.000000,0.000000,0.250000,0,0);}
.m3d_c00258{transform:matrix(0.386874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386874,0.000000,0.000000,0.250000,0,0);}
.m8b_c00258{transform:matrix(0.414699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414699,0.000000,0.000000,0.250000,0,0);}
.m35_c00258{transform:matrix(0.420983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420983,0.000000,0.000000,0.250000,0,0);}
.mc2_c00258{transform:matrix(0.432348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432348,0.000000,0.000000,0.250000,0,0);}
.v2_c00258{vertical-align:-32.769000px;}
.v1_c00258{vertical-align:-27.086400px;}
.v0_c00258{vertical-align:0.000000px;}
.ls12_c00258{letter-spacing:-3.104640px;}
.ls8_c00258{letter-spacing:-2.744280px;}
.ls14_c00258{letter-spacing:-1.521115px;}
.ls7_c00258{letter-spacing:0.000000px;}
.ls5_c00258{letter-spacing:0.451935px;}
.lsb_c00258{letter-spacing:0.533174px;}
.lsd_c00258{letter-spacing:0.588060px;}
.ls10_c00258{letter-spacing:1.042826px;}
.ls3_c00258{letter-spacing:1.144757px;}
.ls9_c00258{letter-spacing:1.364299px;}
.ls18_c00258{letter-spacing:1.599523px;}
.ls2_c00258{letter-spacing:2.187583px;}
.ls4_c00258{letter-spacing:2.595305px;}
.lsc_c00258{letter-spacing:2.634509px;}
.lsf_c00258{letter-spacing:3.112798px;}
.ls11_c00258{letter-spacing:3.387226px;}
.lsa_c00258{letter-spacing:3.653813px;}
.ls15_c00258{letter-spacing:3.801610px;}
.ls6_c00258{letter-spacing:3.920400px;}
.ls13_c00258{letter-spacing:4.108500px;}
.lse_c00258{letter-spacing:4.385700px;}
.ls16_c00258{letter-spacing:4.573810px;}
.ls1_c00258{letter-spacing:9.330948px;}
.ls0_c00258{letter-spacing:20.131650px;}
.ls17_c00258{letter-spacing:57.024198px;}
.sc__c00258{text-shadow:none;}
.sc0_c00258{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00258{-webkit-text-stroke:0px transparent;}
.sc0_c00258{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00258{word-spacing:-23.255813px;}
.ws4_c00258{word-spacing:-22.197305px;}
.ws2_c00258{word-spacing:-21.789583px;}
.ws7_c00258{word-spacing:-21.201523px;}
.ws3_c00258{word-spacing:-20.746757px;}
.ws1_c00258{word-spacing:-19.602000px;}
.ws8_c00258{word-spacing:0.000000px;}
.ws6_c00258{word-spacing:2.038608px;}
.ws5_c00258{word-spacing:2.665476px;}
._16_c00258{margin-left:-11.369160px;}
._13_c00258{margin-left:-2.430648px;}
._0_c00258{width:2.979504px;}
._5_c00258{width:3.983126px;}
._11_c00258{width:5.096520px;}
._2_c00258{width:6.272640px;}
._10_c00258{width:7.362432px;}
._4_c00258{width:8.546472px;}
._d_c00258{width:9.581458px;}
._15_c00258{width:10.585080px;}
._c_c00258{width:11.918808px;}
._9_c00258{width:14.769216px;}
._b_c00258{width:18.370994px;}
._7_c00258{width:20.856528px;}
._e_c00258{width:22.328856px;}
._17_c00258{width:24.376968px;}
._1_c00258{width:28.540512px;}
._12_c00258{width:29.907662px;}
._6_c00258{width:31.676832px;}
._8_c00258{width:33.480216px;}
._14_c00258{width:34.656336px;}
._3_c00258{width:35.929080px;}
._f_c00258{width:38.184696px;}
._a_c00258{width:41.756616px;}
.fc0_c00258{color:transparent;}
.fs10_c00258{font-size:22.572000px;}
.fsd_c00258{font-size:23.760000px;}
.fs12_c00258{font-size:27.720000px;}
.fsa_c00258{font-size:28.314000px;}
.fsc_c00258{font-size:31.680000px;}
.fsb_c00258{font-size:34.848000px;}
.fse_c00258{font-size:39.600000px;}
.fs11_c00258{font-size:44.352000px;}
.fs4_c00258{font-size:56.628000px;}
.fs9_c00258{font-size:57.024198px;}
.fs2_c00258{font-size:64.548000px;}
.fs7_c00258{font-size:76.032198px;}
.fs1_c00258{font-size:78.408000px;}
.fs0_c00258{font-size:82.170000px;}
.fs5_c00258{font-size:87.714000px;}
.fs6_c00258{font-size:88.704000px;}
.fs8_c00258{font-size:91.476198px;}
.fsf_c00258{font-size:93.456198px;}
.fs3_c00258{font-size:117.216198px;}
.y0_c00258{bottom:0.000000px;}
.y20_c00258{bottom:48.733770px;}
.y1f_c00258{bottom:52.297770px;}
.y1e_c00258{bottom:55.505370px;}
.y1d_c00258{bottom:62.633370px;}
.y1_c00258{bottom:76.500000px;}
.y1c_c00258{bottom:85.804320px;}
.y22_c00258{bottom:92.575920px;}
.y1b_c00258{bottom:136.764570px;}
.y1a_c00258{bottom:165.281520px;}
.y19_c00258{bottom:201.990720px;}
.y18_c00258{bottom:236.917920px;}
.y17_c00258{bottom:269.706720px;}
.y16_c00258{bottom:301.782720px;}
.y15_c00258{bottom:334.215120px;}
.y14_c00258{bottom:366.642570px;}
.y13_c00258{bottom:398.718570px;}
.y12_c00258{bottom:431.863770px;}
.y11_c00258{bottom:465.013920px;}
.y10_c00258{bottom:529.160970px;}
.yf_c00258{bottom:561.949770px;}
.ye_c00258{bottom:595.094970px;}
.yd_c00258{bottom:626.819520px;}
.yc_c00258{bottom:643.921770px;}
.yb_c00258{bottom:659.959770px;}
.ya_c00258{bottom:693.822720px;}
.y9_c00258{bottom:693.829650px;}
.y21_c00258{bottom:718.052970px;}
.y8_c00258{bottom:725.898720px;}
.y7_c00258{bottom:758.326170px;}
.y6_c00258{bottom:823.190970px;}
.y5_c00258{bottom:855.628320px;}
.y4_c00258{bottom:889.486320px;}
.y3_c00258{bottom:923.700720px;}
.y2_c00258{bottom:1076.591370px;}
.he_c00258{height:23.319141px;}
.h10_c00258{height:23.541891px;}
.h11_c00258{height:28.911094px;}
.hc_c00258{height:29.530617px;}
.hd_c00258{height:33.041250px;}
.hb_c00258{height:37.978116px;}
.h6_c00258{height:59.061234px;}
.h4_c00258{height:67.321547px;}
.h9_c00258{height:74.621444px;}
.h3_c00258{height:76.953164px;}
.h2_c00258{height:80.645361px;}
.h7_c00258{height:86.086494px;}
.h8_c00258{height:87.014813px;}
.ha_c00258{height:89.778886px;}
.hf_c00258{height:97.471894px;}
.h5_c00258{height:115.041288px;}
.h1_c00258{height:1110.000000px;}
.h0_c00258{height:1263.000000px;}
.w1_c00258{width:763.500000px;}
.w0_c00258{width:892.500000px;}
.x0_c00258{left:0.000000px;}
.x1_c00258{left:64.500000px;}
.x3d_c00258{left:69.684363px;}
.x35_c00258{left:70.974135px;}
.x10_c00258{left:72.498735px;}
.x3_c00258{left:73.775835px;}
.x4a_c00258{left:81.626535px;}
.x3e_c00258{left:82.661085px;}
.x71_c00258{left:94.065885px;}
.x5b_c00258{left:102.149235px;}
.x4b_c00258{left:103.767885px;}
.x6c_c00258{left:104.807385px;}
.x2c_c00258{left:108.975285px;}
.x54_c00258{left:110.485035px;}
.x61_c00258{left:113.860935px;}
.x36_c00258{left:115.296435px;}
.x11_c00258{left:117.469485px;}
.x2d_c00258{left:125.627085px;}
.x21_c00258{left:126.909135px;}
.x55_c00258{left:131.319585px;}
.x44_c00258{left:137.125935px;}
.x3f_c00258{left:147.921885px;}
.x4_c00258{left:150.406785px;}
.x60_c00258{left:157.747635px;}
.x2a_c00258{left:158.846535px;}
.x6d_c00258{left:160.385985px;}
.x22_c00258{left:169.538535px;}
.x56_c00258{left:179.265285px;}
.x12_c00258{left:181.067085px;}
.x13_c00258{left:191.630385px;}
.x5c_c00258{left:192.818385px;}
.x4f_c00258{left:194.842935px;}
.x2b_c00258{left:202.535235px;}
.x5f_c00258{left:203.673735px;}
.x37_c00258{left:214.375635px;}
.x2e_c00258{left:224.364735px;}
.x5_c00258{left:225.433935px;}
.x50_c00258{left:229.478085px;}
.x72_c00258{left:232.240185px;}
.x14_c00258{left:235.086435px;}
.x40_c00258{left:236.700135px;}
.x23_c00258{left:247.718835px;}
.x73_c00258{left:248.995935px;}
.x2f_c00258{left:259.415685px;}
.x24_c00258{left:269.875035px;}
.x74_c00258{left:273.231135px;}
.x15_c00258{left:280.735335px;}
.x6f_c00258{left:284.299335px;}
.x6_c00258{left:292.085685px;}
.x16_c00258{left:302.970735px;}
.x17_c00258{left:313.138035px;}
.x7_c00258{left:314.712135px;}
.x51_c00258{left:316.291185px;}
.x25_c00258{left:325.651635px;}
.x45_c00258{left:326.824785px;}
.x18_c00258{left:335.566485px;}
.x46_c00258{left:336.709935px;}
.x30_c00258{left:348.758235px;}
.x38_c00258{left:357.658335px;}
.x8_c00258{left:358.668135px;}
.x19_c00258{left:369.607635px;}
.x67_c00258{left:372.597435px;}
.x9_c00258{left:381.012435px;}
.x70_c00258{left:391.150035px;}
.x41_c00258{left:392.758785px;}
.x69_c00258{left:404.138835px;}
.x39_c00258{left:412.890435px;}
.x57_c00258{left:414.756585px;}
.x31_c00258{left:424.854585px;}
.x5d_c00258{left:426.047535px;}
.xa_c00258{left:436.249485px;}
.x1a_c00258{left:437.293935px;}
.x32_c00258{left:447.307785px;}
.x58_c00258{left:448.357185px;}
.x26_c00258{left:458.479935px;}
.xb_c00258{left:468.483885px;}
.x1b_c00258{left:469.721385px;}
.x27_c00258{left:479.532285px;}
.x63_c00258{left:481.071735px;}
.x4c_c00258{left:491.135085px;}
.x1c_c00258{left:502.544835px;}
.x75_c00258{left:505.336635px;}
.x1d_c00258{left:512.365635px;}
.x5e_c00258{left:513.583335px;}
.x68_c00258{left:515.518785px;}
.x6a_c00258{left:522.656685px;}
.x3a_c00258{left:524.280285px;}
.x42_c00258{left:536.026635px;}
.x64_c00258{left:538.432335px;}
.x1e_c00258{left:546.614685px;}
.x52_c00258{left:548.079885px;}
.x3b_c00258{left:558.172935px;}
.xc_c00258{left:569.171835px;}
.x53_c00258{left:578.967885px;}
.x28_c00258{left:581.279535px;}
.x3c_c00258{left:590.907285px;}
.x33_c00258{left:601.495335px;}
.x59_c00258{left:603.049635px;}
.xd_c00258{left:612.479385px;}
.x6e_c00258{left:622.805085px;}
.x47_c00258{left:624.077235px;}
.x65_c00258{left:634.219785px;}
.x6b_c00258{left:635.843385px;}
.x43_c00258{left:645.807735px;}
.x62_c00258{left:647.584785px;}
.x2_c00258{left:657.890685px;}
.x34_c00258{left:668.255985px;}
.x5a_c00258{left:669.344985px;}
.xe_c00258{left:679.591485px;}
.x4d_c00258{left:680.665635px;}
.x1f_c00258{left:690.238935px;}
.x66_c00258{left:692.080335px;}
.x49_c00258{left:698.416335px;}
.x48_c00258{left:702.089235px;}
.x76_c00258{left:705.895785px;}
.x29_c00258{left:713.142585px;}
.x20_c00258{left:714.543435px;}
.xf_c00258{left:724.190985px;}
.x4e_c00258{left:735.239385px;}
.x78_c00258{left:752.118885px;}
.x77_c00258{left:755.262135px;}
@media print{
.v2_c00258{vertical-align:-29.128000pt;}
.v1_c00258{vertical-align:-24.076800pt;}
.v0_c00258{vertical-align:0.000000pt;}
.ls12_c00258{letter-spacing:-2.759680pt;}
.ls8_c00258{letter-spacing:-2.439360pt;}
.ls14_c00258{letter-spacing:-1.352102pt;}
.ls7_c00258{letter-spacing:0.000000pt;}
.ls5_c00258{letter-spacing:0.401720pt;}
.lsb_c00258{letter-spacing:0.473933pt;}
.lsd_c00258{letter-spacing:0.522720pt;}
.ls10_c00258{letter-spacing:0.926957pt;}
.ls3_c00258{letter-spacing:1.017562pt;}
.ls9_c00258{letter-spacing:1.212710pt;}
.ls18_c00258{letter-spacing:1.421798pt;}
.ls2_c00258{letter-spacing:1.944518pt;}
.ls4_c00258{letter-spacing:2.306938pt;}
.lsc_c00258{letter-spacing:2.341786pt;}
.lsf_c00258{letter-spacing:2.766931pt;}
.ls11_c00258{letter-spacing:3.010867pt;}
.lsa_c00258{letter-spacing:3.247834pt;}
.ls15_c00258{letter-spacing:3.379209pt;}
.ls6_c00258{letter-spacing:3.484800pt;}
.ls13_c00258{letter-spacing:3.652000pt;}
.lse_c00258{letter-spacing:3.898400pt;}
.ls16_c00258{letter-spacing:4.065609pt;}
.ls1_c00258{letter-spacing:8.294176pt;}
.ls0_c00258{letter-spacing:17.894800pt;}
.ls17_c00258{letter-spacing:50.688176pt;}
.ws0_c00258{word-spacing:-20.671834pt;}
.ws4_c00258{word-spacing:-19.730938pt;}
.ws2_c00258{word-spacing:-19.368518pt;}
.ws7_c00258{word-spacing:-18.845798pt;}
.ws3_c00258{word-spacing:-18.441562pt;}
.ws1_c00258{word-spacing:-17.424000pt;}
.ws8_c00258{word-spacing:0.000000pt;}
.ws6_c00258{word-spacing:1.812096pt;}
.ws5_c00258{word-spacing:2.369312pt;}
._16_c00258{margin-left:-10.105920pt;}
._13_c00258{margin-left:-2.160576pt;}
._0_c00258{width:2.648448pt;}
._5_c00258{width:3.540557pt;}
._11_c00258{width:4.530240pt;}
._2_c00258{width:5.575680pt;}
._10_c00258{width:6.544384pt;}
._4_c00258{width:7.596864pt;}
._d_c00258{width:8.516851pt;}
._15_c00258{width:9.408960pt;}
._c_c00258{width:10.594496pt;}
._9_c00258{width:13.128192pt;}
._b_c00258{width:16.329773pt;}
._7_c00258{width:18.539136pt;}
._e_c00258{width:19.847872pt;}
._17_c00258{width:21.668416pt;}
._1_c00258{width:25.369344pt;}
._12_c00258{width:26.584589pt;}
._6_c00258{width:28.157184pt;}
._8_c00258{width:29.760192pt;}
._14_c00258{width:30.805632pt;}
._3_c00258{width:31.936960pt;}
._f_c00258{width:33.941952pt;}
._a_c00258{width:37.116992pt;}
.fs10_c00258{font-size:20.064000pt;}
.fsd_c00258{font-size:21.120000pt;}
.fs12_c00258{font-size:24.640000pt;}
.fsa_c00258{font-size:25.168000pt;}
.fsc_c00258{font-size:28.160000pt;}
.fsb_c00258{font-size:30.976000pt;}
.fse_c00258{font-size:35.200000pt;}
.fs11_c00258{font-size:39.424000pt;}
.fs4_c00258{font-size:50.336000pt;}
.fs9_c00258{font-size:50.688176pt;}
.fs2_c00258{font-size:57.376000pt;}
.fs7_c00258{font-size:67.584176pt;}
.fs1_c00258{font-size:69.696000pt;}
.fs0_c00258{font-size:73.040000pt;}
.fs5_c00258{font-size:77.968000pt;}
.fs6_c00258{font-size:78.848000pt;}
.fs8_c00258{font-size:81.312176pt;}
.fsf_c00258{font-size:83.072176pt;}
.fs3_c00258{font-size:104.192176pt;}
.y0_c00258{bottom:0.000000pt;}
.y20_c00258{bottom:43.318907pt;}
.y1f_c00258{bottom:46.486907pt;}
.y1e_c00258{bottom:49.338107pt;}
.y1d_c00258{bottom:55.674107pt;}
.y1_c00258{bottom:68.000000pt;}
.y1c_c00258{bottom:76.270507pt;}
.y22_c00258{bottom:82.289707pt;}
.y1b_c00258{bottom:121.568507pt;}
.y1a_c00258{bottom:146.916907pt;}
.y19_c00258{bottom:179.547307pt;}
.y18_c00258{bottom:210.593707pt;}
.y17_c00258{bottom:239.739307pt;}
.y16_c00258{bottom:268.251307pt;}
.y15_c00258{bottom:297.080107pt;}
.y14_c00258{bottom:325.904507pt;}
.y13_c00258{bottom:354.416507pt;}
.y12_c00258{bottom:383.878907pt;}
.y11_c00258{bottom:413.345707pt;}
.y10_c00258{bottom:470.365307pt;}
.yf_c00258{bottom:499.510907pt;}
.ye_c00258{bottom:528.973307pt;}
.yd_c00258{bottom:557.172907pt;}
.yc_c00258{bottom:572.374907pt;}
.yb_c00258{bottom:586.630907pt;}
.ya_c00258{bottom:616.731307pt;}
.y9_c00258{bottom:616.737467pt;}
.y21_c00258{bottom:638.269307pt;}
.y8_c00258{bottom:645.243307pt;}
.y7_c00258{bottom:674.067707pt;}
.y6_c00258{bottom:731.725307pt;}
.y5_c00258{bottom:760.558507pt;}
.y4_c00258{bottom:790.654507pt;}
.y3_c00258{bottom:821.067307pt;}
.y2_c00258{bottom:956.970107pt;}
.he_c00258{height:20.728125pt;}
.h10_c00258{height:20.926125pt;}
.h11_c00258{height:25.698750pt;}
.hc_c00258{height:26.249438pt;}
.hd_c00258{height:29.370000pt;}
.hb_c00258{height:33.758325pt;}
.h6_c00258{height:52.498875pt;}
.h4_c00258{height:59.841375pt;}
.h9_c00258{height:66.330173pt;}
.h3_c00258{height:68.402813pt;}
.h2_c00258{height:71.684766pt;}
.h7_c00258{height:76.521328pt;}
.h8_c00258{height:77.346500pt;}
.ha_c00258{height:79.803454pt;}
.hf_c00258{height:86.641684pt;}
.h5_c00258{height:102.258923pt;}
.h1_c00258{height:986.666667pt;}
.h0_c00258{height:1122.666667pt;}
.w1_c00258{width:678.666667pt;}
.w0_c00258{width:793.333333pt;}
.x0_c00258{left:0.000000pt;}
.x1_c00258{left:57.333333pt;}
.x3d_c00258{left:61.941656pt;}
.x35_c00258{left:63.088120pt;}
.x10_c00258{left:64.443320pt;}
.x3_c00258{left:65.578520pt;}
.x4a_c00258{left:72.556920pt;}
.x3e_c00258{left:73.476520pt;}
.x71_c00258{left:83.614120pt;}
.x5b_c00258{left:90.799320pt;}
.x4b_c00258{left:92.238120pt;}
.x6c_c00258{left:93.162120pt;}
.x2c_c00258{left:96.866920pt;}
.x54_c00258{left:98.208920pt;}
.x61_c00258{left:101.209720pt;}
.x36_c00258{left:102.485720pt;}
.x11_c00258{left:104.417320pt;}
.x2d_c00258{left:111.668520pt;}
.x21_c00258{left:112.808120pt;}
.x55_c00258{left:116.728520pt;}
.x44_c00258{left:121.889720pt;}
.x3f_c00258{left:131.486120pt;}
.x4_c00258{left:133.694920pt;}
.x60_c00258{left:140.220120pt;}
.x2a_c00258{left:141.196920pt;}
.x6d_c00258{left:142.565320pt;}
.x22_c00258{left:150.700920pt;}
.x56_c00258{left:159.346920pt;}
.x12_c00258{left:160.948520pt;}
.x13_c00258{left:170.338120pt;}
.x5c_c00258{left:171.394120pt;}
.x4f_c00258{left:173.193720pt;}
.x2b_c00258{left:180.031320pt;}
.x5f_c00258{left:181.043320pt;}
.x37_c00258{left:190.556120pt;}
.x2e_c00258{left:199.435320pt;}
.x5_c00258{left:200.385720pt;}
.x50_c00258{left:203.980520pt;}
.x72_c00258{left:206.435720pt;}
.x14_c00258{left:208.965720pt;}
.x40_c00258{left:210.400120pt;}
.x23_c00258{left:220.194520pt;}
.x73_c00258{left:221.329720pt;}
.x2f_c00258{left:230.591720pt;}
.x24_c00258{left:239.888920pt;}
.x74_c00258{left:242.872120pt;}
.x15_c00258{left:249.542520pt;}
.x6f_c00258{left:252.710520pt;}
.x6_c00258{left:259.631720pt;}
.x16_c00258{left:269.307320pt;}
.x17_c00258{left:278.344920pt;}
.x7_c00258{left:279.744120pt;}
.x51_c00258{left:281.147720pt;}
.x25_c00258{left:289.468120pt;}
.x45_c00258{left:290.510920pt;}
.x18_c00258{left:298.281320pt;}
.x46_c00258{left:299.297720pt;}
.x30_c00258{left:310.007320pt;}
.x38_c00258{left:317.918520pt;}
.x8_c00258{left:318.816120pt;}
.x19_c00258{left:328.540120pt;}
.x67_c00258{left:331.197720pt;}
.x9_c00258{left:338.677720pt;}
.x70_c00258{left:347.688920pt;}
.x41_c00258{left:349.118920pt;}
.x69_c00258{left:359.234520pt;}
.x39_c00258{left:367.013720pt;}
.x57_c00258{left:368.672520pt;}
.x31_c00258{left:377.648520pt;}
.x5d_c00258{left:378.708920pt;}
.xa_c00258{left:387.777320pt;}
.x1a_c00258{left:388.705720pt;}
.x32_c00258{left:397.606920pt;}
.x58_c00258{left:398.539720pt;}
.x26_c00258{left:407.537720pt;}
.xb_c00258{left:416.430120pt;}
.x1b_c00258{left:417.530120pt;}
.x27_c00258{left:426.250920pt;}
.x63_c00258{left:427.619320pt;}
.x4c_c00258{left:436.564520pt;}
.x1c_c00258{left:446.706520pt;}
.x75_c00258{left:449.188120pt;}
.x1d_c00258{left:455.436120pt;}
.x5e_c00258{left:456.518520pt;}
.x68_c00258{left:458.238920pt;}
.x6a_c00258{left:464.583720pt;}
.x3a_c00258{left:466.026920pt;}
.x42_c00258{left:476.468120pt;}
.x64_c00258{left:478.606520pt;}
.x1e_c00258{left:485.879720pt;}
.x52_c00258{left:487.182120pt;}
.x3b_c00258{left:496.153720pt;}
.xc_c00258{left:505.930520pt;}
.x53_c00258{left:514.638120pt;}
.x28_c00258{left:516.692920pt;}
.x3c_c00258{left:525.250920pt;}
.x33_c00258{left:534.662520pt;}
.x59_c00258{left:536.044120pt;}
.xd_c00258{left:544.426120pt;}
.x6e_c00258{left:553.604520pt;}
.x47_c00258{left:554.735320pt;}
.x65_c00258{left:563.750920pt;}
.x6b_c00258{left:565.194120pt;}
.x43_c00258{left:574.051320pt;}
.x62_c00258{left:575.630920pt;}
.x2_c00258{left:584.791720pt;}
.x34_c00258{left:594.005320pt;}
.x5a_c00258{left:594.973320pt;}
.xe_c00258{left:604.081320pt;}
.x4d_c00258{left:605.036120pt;}
.x1f_c00258{left:613.545720pt;}
.x66_c00258{left:615.182520pt;}
.x49_c00258{left:620.814520pt;}
.x48_c00258{left:624.079320pt;}
.x76_c00258{left:627.462920pt;}
.x29_c00258{left:633.904520pt;}
.x20_c00258{left:635.149720pt;}
.xf_c00258{left:643.725320pt;}
.x4e_c00258{left:653.546120pt;}
.x78_c00258{left:668.550120pt;}
.x77_c00258{left:671.344120pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_00b6cb4883889aa68861d0d6.woff2')format("woff");}.ff1_c00259{font-family:ff1_c00259;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00259;src:url('chunks/assets/font_4a2d712e690a5b534f3807d6.woff2')format("woff");}.ff2_c00259{font-family:ff2_c00259;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00259;src:url('chunks/assets/font_6fa6362ad56b52f4088bcdb9.woff2')format("woff");}.ff3_c00259{font-family:ff3_c00259;line-height:0.666000;font-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_c00259{transform:matrix(0.092583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092583,0.000000,0.000000,0.250000,0,0);}
.m21_c00259{transform:matrix(0.096428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096428,0.000000,0.000000,0.250000,0,0);}
.ma8_c00259{transform:matrix(0.097910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097910,0.000000,0.000000,0.250000,0,0);}
.m5f_c00259{transform:matrix(0.102878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102878,0.000000,0.000000,0.250000,0,0);}
.mc_c00259{transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);}
.m87_c00259{transform:matrix(0.154520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154520,0.000000,0.000000,0.250000,0,0);}
.m22_c00259{transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);}
.mb1_c00259{transform:matrix(0.220377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220377,0.000000,0.000000,0.250000,0,0);}
.m94_c00259{transform:matrix(0.228445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228445,0.000000,0.000000,0.250000,0,0);}
.m20_c00259{transform:matrix(0.228572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228572,0.000000,0.000000,0.250000,0,0);}
.m7a_c00259{transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);}
.m5a_c00259{transform:matrix(0.249946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249946,0.000000,0.000000,0.250000,0,0);}
.m0_c00259{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00259{transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);}
.m78_c00259{transform:matrix(0.250519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250519,0.000000,0.000000,0.250000,0,0);}
.m72_c00259{transform:matrix(0.252169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252169,0.000000,0.000000,0.250000,0,0);}
.mb6_c00259{transform:matrix(0.253545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253545,0.000000,0.000000,0.250000,0,0);}
.m69_c00259{transform:matrix(0.254912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254912,0.000000,0.000000,0.250000,0,0);}
.m2b_c00259{transform:matrix(0.255066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255066,0.000000,0.000000,0.250000,0,0);}
.mbd_c00259{transform:matrix(0.255172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255172,0.000000,0.000000,0.250000,0,0);}
.m7e_c00259{transform:matrix(0.256057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256057,0.000000,0.000000,0.250000,0,0);}
.m39_c00259{transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);}
.ma3_c00259{transform:matrix(0.256595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256595,0.000000,0.000000,0.250000,0,0);}
.m70_c00259{transform:matrix(0.256967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256967,0.000000,0.000000,0.250000,0,0);}
.mc2_c00259{transform:matrix(0.257079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257079,0.000000,0.000000,0.250000,0,0);}
.m83_c00259{transform:matrix(0.258620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258620,0.000000,0.000000,0.250000,0,0);}
.m32_c00259{transform:matrix(0.259723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259723,0.000000,0.000000,0.250000,0,0);}
.m40_c00259{transform:matrix(0.260073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260073,0.000000,0.000000,0.250000,0,0);}
.mba_c00259{transform:matrix(0.260405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260405,0.000000,0.000000,0.250000,0,0);}
.mc3_c00259{transform:matrix(0.260924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260924,0.000000,0.000000,0.250000,0,0);}
.m56_c00259{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.m99_c00259{transform:matrix(0.261857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261857,0.000000,0.000000,0.250000,0,0);}
.m1_c00259{transform:matrix(0.261976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261976,0.000000,0.000000,0.250000,0,0);}
.m34_c00259{transform:matrix(0.262297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262297,0.000000,0.000000,0.250000,0,0);}
.m71_c00259{transform:matrix(0.262665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262665,0.000000,0.000000,0.250000,0,0);}
.m6c_c00259{transform:matrix(0.263083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263083,0.000000,0.000000,0.250000,0,0);}
.me_c00259{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.maa_c00259{transform:matrix(0.263372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263372,0.000000,0.000000,0.250000,0,0);}
.ma0_c00259{transform:matrix(0.263451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263451,0.000000,0.000000,0.250000,0,0);}
.m7f_c00259{transform:matrix(0.263917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263917,0.000000,0.000000,0.250000,0,0);}
.mc9_c00259{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m82_c00259{transform:matrix(0.264456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264456,0.000000,0.000000,0.250000,0,0);}
.m27_c00259{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.mb_c00259{transform:matrix(0.267833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267833,0.000000,0.000000,0.250000,0,0);}
.m7_c00259{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m6_c00259{transform:matrix(0.268437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268437,0.000000,0.000000,0.250000,0,0);}
.m6d_c00259{transform:matrix(0.269064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269064,0.000000,0.000000,0.250000,0,0);}
.m37_c00259{transform:matrix(0.269819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269819,0.000000,0.000000,0.250000,0,0);}
.m4f_c00259{transform:matrix(0.269857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269857,0.000000,0.000000,0.250000,0,0);}
.m8c_c00259{transform:matrix(0.269908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269908,0.000000,0.000000,0.250000,0,0);}
.m7d_c00259{transform:matrix(0.270287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270287,0.000000,0.000000,0.250000,0,0);}
.m47_c00259{transform:matrix(0.270462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270462,0.000000,0.000000,0.250000,0,0);}
.m26_c00259{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.mf_c00259{transform:matrix(0.271018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271018,0.000000,0.000000,0.250000,0,0);}
.mc6_c00259{transform:matrix(0.271281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271281,0.000000,0.000000,0.250000,0,0);}
.m5c_c00259{transform:matrix(0.271940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271940,0.000000,0.000000,0.250000,0,0);}
.m14_c00259{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m1b_c00259{transform:matrix(0.272581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272581,0.000000,0.000000,0.250000,0,0);}
.mc0_c00259{transform:matrix(0.272703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272703,0.000000,0.000000,0.250000,0,0);}
.mb9_c00259{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m96_c00259{transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);}
.mcc_c00259{transform:matrix(0.274460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274460,0.000000,0.000000,0.250000,0,0);}
.m10_c00259{transform:matrix(0.275802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275802,0.000000,0.000000,0.250000,0,0);}
.mb8_c00259{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m88_c00259{transform:matrix(0.278536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278536,0.000000,0.000000,0.250000,0,0);}
.m6b_c00259{transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);}
.ma9_c00259{transform:matrix(0.279123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279123,0.000000,0.000000,0.250000,0,0);}
.ma1_c00259{transform:matrix(0.279247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279247,0.000000,0.000000,0.250000,0,0);}
.m33_c00259{transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);}
.m67_c00259{transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);}
.m15_c00259{transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);}
.m53_c00259{transform:matrix(0.280163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280163,0.000000,0.000000,0.250000,0,0);}
.mcb_c00259{transform:matrix(0.280329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280329,0.000000,0.000000,0.250000,0,0);}
.m42_c00259{transform:matrix(0.281417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281417,0.000000,0.000000,0.250000,0,0);}
.mbf_c00259{transform:matrix(0.281436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281436,0.000000,0.000000,0.250000,0,0);}
.mb4_c00259{transform:matrix(0.281728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281728,0.000000,0.000000,0.250000,0,0);}
.m1e_c00259{transform:matrix(0.282543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282543,0.000000,0.000000,0.250000,0,0);}
.m55_c00259{transform:matrix(0.283206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283206,0.000000,0.000000,0.250000,0,0);}
.m46_c00259{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m6a_c00259{transform:matrix(0.283660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283660,0.000000,0.000000,0.250000,0,0);}
.m9d_c00259{transform:matrix(0.283994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283994,0.000000,0.000000,0.250000,0,0);}
.m97_c00259{transform:matrix(0.284009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284009,0.000000,0.000000,0.250000,0,0);}
.m9_c00259{transform:matrix(0.284112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284112,0.000000,0.000000,0.250000,0,0);}
.m9b_c00259{transform:matrix(0.284777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284777,0.000000,0.000000,0.250000,0,0);}
.mb3_c00259{transform:matrix(0.285101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285101,0.000000,0.000000,0.250000,0,0);}
.m54_c00259{transform:matrix(0.285269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285269,0.000000,0.000000,0.250000,0,0);}
.m3b_c00259{transform:matrix(0.285273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285273,0.000000,0.000000,0.250000,0,0);}
.m90_c00259{transform:matrix(0.285694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285694,0.000000,0.000000,0.250000,0,0);}
.mc1_c00259{transform:matrix(0.285997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285997,0.000000,0.000000,0.250000,0,0);}
.m11_c00259{transform:matrix(0.286086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286086,0.000000,0.000000,0.250000,0,0);}
.m92_c00259{transform:matrix(0.286186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286186,0.000000,0.000000,0.250000,0,0);}
.m2c_c00259{transform:matrix(0.286402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286402,0.000000,0.000000,0.250000,0,0);}
.m3f_c00259{transform:matrix(0.286415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286415,0.000000,0.000000,0.250000,0,0);}
.m28_c00259{transform:matrix(0.286698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286698,0.000000,0.000000,0.250000,0,0);}
.m4d_c00259{transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);}
.mae_c00259{transform:matrix(0.287129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287129,0.000000,0.000000,0.250000,0,0);}
.m29_c00259{transform:matrix(0.287298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287298,0.000000,0.000000,0.250000,0,0);}
.m51_c00259{transform:matrix(0.287772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287772,0.000000,0.000000,0.250000,0,0);}
.m1d_c00259{transform:matrix(0.287958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287958,0.000000,0.000000,0.250000,0,0);}
.m77_c00259{transform:matrix(0.288372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288372,0.000000,0.000000,0.250000,0,0);}
.m74_c00259{transform:matrix(0.288753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288753,0.000000,0.000000,0.250000,0,0);}
.m9a_c00259{transform:matrix(0.288885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288885,0.000000,0.000000,0.250000,0,0);}
.m62_c00259{transform:matrix(0.289565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289565,0.000000,0.000000,0.250000,0,0);}
.m91_c00259{transform:matrix(0.290977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290977,0.000000,0.000000,0.250000,0,0);}
.m84_c00259{transform:matrix(0.291580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291580,0.000000,0.000000,0.250000,0,0);}
.mca_c00259{transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);}
.m19_c00259{transform:matrix(0.291820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291820,0.000000,0.000000,0.250000,0,0);}
.m66_c00259{transform:matrix(0.292007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292007,0.000000,0.000000,0.250000,0,0);}
.m43_c00259{transform:matrix(0.292340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292340,0.000000,0.000000,0.250000,0,0);}
.m65_c00259{transform:matrix(0.293174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293174,0.000000,0.000000,0.250000,0,0);}
.m48_c00259{transform:matrix(0.293874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293874,0.000000,0.000000,0.250000,0,0);}
.m5_c00259{transform:matrix(0.294155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294155,0.000000,0.000000,0.250000,0,0);}
.m89_c00259{transform:matrix(0.295333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295333,0.000000,0.000000,0.250000,0,0);}
.m81_c00259{transform:matrix(0.295753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295753,0.000000,0.000000,0.250000,0,0);}
.mcd_c00259{transform:matrix(0.296184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296184,0.000000,0.000000,0.250000,0,0);}
.m9e_c00259{transform:matrix(0.296187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296187,0.000000,0.000000,0.250000,0,0);}
.m57_c00259{transform:matrix(0.296644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296644,0.000000,0.000000,0.250000,0,0);}
.m76_c00259{transform:matrix(0.296672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296672,0.000000,0.000000,0.250000,0,0);}
.m3c_c00259{transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);}
.m5d_c00259{transform:matrix(0.296922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296922,0.000000,0.000000,0.250000,0,0);}
.m4e_c00259{transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);}
.m4a_c00259{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.mc5_c00259{transform:matrix(0.297248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297248,0.000000,0.000000,0.250000,0,0);}
.m6f_c00259{transform:matrix(0.297483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297483,0.000000,0.000000,0.250000,0,0);}
.m18_c00259{transform:matrix(0.298362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298362,0.000000,0.000000,0.250000,0,0);}
.m60_c00259{transform:matrix(0.298855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298855,0.000000,0.000000,0.250000,0,0);}
.m95_c00259{transform:matrix(0.300523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300523,0.000000,0.000000,0.250000,0,0);}
.m8d_c00259{transform:matrix(0.300709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300709,0.000000,0.000000,0.250000,0,0);}
.m45_c00259{transform:matrix(0.300732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300732,0.000000,0.000000,0.250000,0,0);}
.m8a_c00259{transform:matrix(0.301668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301668,0.000000,0.000000,0.250000,0,0);}
.m7c_c00259{transform:matrix(0.301702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301702,0.000000,0.000000,0.250000,0,0);}
.mab_c00259{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m7b_c00259{transform:matrix(0.302713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302713,0.000000,0.000000,0.250000,0,0);}
.m49_c00259{transform:matrix(0.303443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303443,0.000000,0.000000,0.250000,0,0);}
.mc8_c00259{transform:matrix(0.304104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304104,0.000000,0.000000,0.250000,0,0);}
.ma5_c00259{transform:matrix(0.305402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305402,0.000000,0.000000,0.250000,0,0);}
.mb5_c00259{transform:matrix(0.305521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305521,0.000000,0.000000,0.250000,0,0);}
.m3_c00259{transform:matrix(0.305639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305639,0.000000,0.000000,0.250000,0,0);}
.mad_c00259{transform:matrix(0.305643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305643,0.000000,0.000000,0.250000,0,0);}
.m30_c00259{transform:matrix(0.306259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306259,0.000000,0.000000,0.250000,0,0);}
.m1f_c00259{transform:matrix(0.306386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306386,0.000000,0.000000,0.250000,0,0);}
.m2e_c00259{transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);}
.m44_c00259{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m4b_c00259{transform:matrix(0.308602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308602,0.000000,0.000000,0.250000,0,0);}
.ma2_c00259{transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);}
.m63_c00259{transform:matrix(0.309093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309093,0.000000,0.000000,0.250000,0,0);}
.m64_c00259{transform:matrix(0.309349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309349,0.000000,0.000000,0.250000,0,0);}
.md_c00259{transform:matrix(0.309672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309672,0.000000,0.000000,0.250000,0,0);}
.ma6_c00259{transform:matrix(0.309963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309963,0.000000,0.000000,0.250000,0,0);}
.maf_c00259{transform:matrix(0.311181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311181,0.000000,0.000000,0.250000,0,0);}
.m16_c00259{transform:matrix(0.311211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311211,0.000000,0.000000,0.250000,0,0);}
.m52_c00259{transform:matrix(0.312269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312269,0.000000,0.000000,0.250000,0,0);}
.m8_c00259{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.mc4_c00259{transform:matrix(0.312688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312688,0.000000,0.000000,0.250000,0,0);}
.m98_c00259{transform:matrix(0.313023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313023,0.000000,0.000000,0.250000,0,0);}
.m5b_c00259{transform:matrix(0.313344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313344,0.000000,0.000000,0.250000,0,0);}
.m17_c00259{transform:matrix(0.314570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314570,0.000000,0.000000,0.250000,0,0);}
.mb7_c00259{transform:matrix(0.314584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314584,0.000000,0.000000,0.250000,0,0);}
.m61_c00259{transform:matrix(0.314673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314673,0.000000,0.000000,0.250000,0,0);}
.m8e_c00259{transform:matrix(0.315252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315252,0.000000,0.000000,0.250000,0,0);}
.m31_c00259{transform:matrix(0.315366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315366,0.000000,0.000000,0.250000,0,0);}
.m93_c00259{transform:matrix(0.317610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317610,0.000000,0.000000,0.250000,0,0);}
.mbc_c00259{transform:matrix(0.318160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318160,0.000000,0.000000,0.250000,0,0);}
.m38_c00259{transform:matrix(0.318741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318741,0.000000,0.000000,0.250000,0,0);}
.m86_c00259{transform:matrix(0.319176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319176,0.000000,0.000000,0.250000,0,0);}
.m36_c00259{transform:matrix(0.319876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319876,0.000000,0.000000,0.250000,0,0);}
.ma4_c00259{transform:matrix(0.320090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320090,0.000000,0.000000,0.250000,0,0);}
.m58_c00259{transform:matrix(0.323503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323503,0.000000,0.000000,0.250000,0,0);}
.mb2_c00259{transform:matrix(0.324227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324227,0.000000,0.000000,0.250000,0,0);}
.mbe_c00259{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m2a_c00259{transform:matrix(0.328705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328705,0.000000,0.000000,0.250000,0,0);}
.m2_c00259{transform:matrix(0.330544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330544,0.000000,0.000000,0.250000,0,0);}
.m12_c00259{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m1a_c00259{transform:matrix(0.333316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333316,0.000000,0.000000,0.250000,0,0);}
.m35_c00259{transform:matrix(0.333460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333460,0.000000,0.000000,0.250000,0,0);}
.m3a_c00259{transform:matrix(0.334418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334418,0.000000,0.000000,0.250000,0,0);}
.mbb_c00259{transform:matrix(0.334658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334658,0.000000,0.000000,0.250000,0,0);}
.m80_c00259{transform:matrix(0.335924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335924,0.000000,0.000000,0.250000,0,0);}
.m24_c00259{transform:matrix(0.336348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336348,0.000000,0.000000,0.250000,0,0);}
.m13_c00259{transform:matrix(0.337161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337161,0.000000,0.000000,0.250000,0,0);}
.m50_c00259{transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);}
.m9c_c00259{transform:matrix(0.337410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337410,0.000000,0.000000,0.250000,0,0);}
.m4c_c00259{transform:matrix(0.338456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338456,0.000000,0.000000,0.250000,0,0);}
.m75_c00259{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m3d_c00259{transform:matrix(0.340068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340068,0.000000,0.000000,0.250000,0,0);}
.mac_c00259{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.m8b_c00259{transform:matrix(0.343381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343381,0.000000,0.000000,0.250000,0,0);}
.m2d_c00259{transform:matrix(0.345198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345198,0.000000,0.000000,0.250000,0,0);}
.m68_c00259{transform:matrix(0.346117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346117,0.000000,0.000000,0.250000,0,0);}
.m41_c00259{transform:matrix(0.346224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346224,0.000000,0.000000,0.250000,0,0);}
.m4_c00259{transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);}
.m85_c00259{transform:matrix(0.347629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347629,0.000000,0.000000,0.250000,0,0);}
.m1c_c00259{transform:matrix(0.347756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347756,0.000000,0.000000,0.250000,0,0);}
.m2f_c00259{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m3e_c00259{transform:matrix(0.353574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353574,0.000000,0.000000,0.250000,0,0);}
.m73_c00259{transform:matrix(0.354899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354899,0.000000,0.000000,0.250000,0,0);}
.m59_c00259{transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);}
.ma_c00259{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m5e_c00259{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m6e_c00259{transform:matrix(0.361926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361926,0.000000,0.000000,0.250000,0,0);}
.m79_c00259{transform:matrix(0.379237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379237,0.000000,0.000000,0.250000,0,0);}
.mc7_c00259{transform:matrix(0.392339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392339,0.000000,0.000000,0.250000,0,0);}
.m8f_c00259{transform:matrix(0.392742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392742,0.000000,0.000000,0.250000,0,0);}
.m9f_c00259{transform:matrix(0.395497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395497,0.000000,0.000000,0.250000,0,0);}
.m23_c00259{transform:matrix(0.416907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416907,0.000000,0.000000,0.250000,0,0);}
.m25_c00259{transform:matrix(0.420085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420085,0.000000,0.000000,0.250000,0,0);}
.v0_c00259{vertical-align:0.000000px;}
.v1_c00259{vertical-align:8.533800px;}
.lsf_c00259{letter-spacing:-2.744280px;}
.lsb_c00259{letter-spacing:-2.493374px;}
.ls12_c00259{letter-spacing:-1.677931px;}
.ls4_c00259{letter-spacing:0.000000px;}
.ls1_c00259{letter-spacing:1.215324px;}
.ls3_c00259{letter-spacing:1.246687px;}
.ls2_c00259{letter-spacing:1.685772px;}
.ls11_c00259{letter-spacing:1.819066px;}
.lsd_c00259{letter-spacing:2.015086px;}
.ls8_c00259{letter-spacing:2.493374px;}
.ls9_c00259{letter-spacing:3.112798px;}
.ls10_c00259{letter-spacing:3.348022px;}
.lse_c00259{letter-spacing:3.653110px;}
.ls13_c00259{letter-spacing:3.762000px;}
.lsc_c00259{letter-spacing:3.889037px;}
.ls6_c00259{letter-spacing:3.920400px;}
.ls5_c00259{letter-spacing:4.296610px;}
.ls14_c00259{letter-spacing:4.435200px;}
.ls0_c00259{letter-spacing:19.445580px;}
.ls7_c00259{letter-spacing:29.937798px;}
.lsa_c00259{letter-spacing:49.896198px;}
.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;}
}
.ws3_c00259{word-spacing:-19.602000px;}
.ws0_c00259{word-spacing:-16.623343px;}
.ws6_c00259{word-spacing:0.000000px;}
.ws1_c00259{word-spacing:1.411344px;}
.ws5_c00259{word-spacing:2.195424px;}
.ws4_c00259{word-spacing:2.196216px;}
.ws2_c00259{word-spacing:3.763584px;}
._1_c00259{margin-left:-11.240966px;}
._0_c00259{margin-left:-7.594543px;}
._14_c00259{margin-left:-4.858128px;}
._15_c00259{width:4.861296px;}
._9_c00259{width:6.255216px;}
._b_c00259{width:7.683984px;}
._c_c00259{width:9.173736px;}
._8_c00259{width:10.977120px;}
._3_c00259{width:12.780504px;}
._e_c00259{width:15.681600px;}
._11_c00259{width:17.345592px;}
._5_c00259{width:20.778120px;}
._7_c00259{width:23.208768px;}
._10_c00259{width:25.678620px;}
._f_c00259{width:26.815536px;}
._2_c00259{width:28.148472px;}
._d_c00259{width:29.403000px;}
._4_c00259{width:31.284792px;}
._12_c00259{width:33.168960px;}
._6_c00259{width:34.577928px;}
._a_c00259{width:36.851760px;}
._16_c00259{width:41.100048px;}
._13_c00259{width:842.291208px;}
.fc0_c00259{color:transparent;}
.fs0_c00259{font-size:22.176000px;}
.fs4_c00259{font-size:22.374000px;}
.fs6_c00259{font-size:23.166000px;}
.fsc_c00259{font-size:26.928000px;}
.fsf_c00259{font-size:27.720000px;}
.fs7_c00259{font-size:29.937798px;}
.fs9_c00259{font-size:30.888000px;}
.fs10_c00259{font-size:33.264000px;}
.fs2_c00259{font-size:34.056198px;}
.fs16_c00259{font-size:38.808000px;}
.fs13_c00259{font-size:39.600000px;}
.fs12_c00259{font-size:45.144000px;}
.fs8_c00259{font-size:49.896198px;}
.fs11_c00259{font-size:50.688000px;}
.fs15_c00259{font-size:55.440000px;}
.fs14_c00259{font-size:56.628000px;}
.fs1_c00259{font-size:59.796198px;}
.fsa_c00259{font-size:73.062198px;}
.fsb_c00259{font-size:74.448000px;}
.fsd_c00259{font-size:75.240000px;}
.fs5_c00259{font-size:78.408000px;}
.fs3_c00259{font-size:85.932198px;}
.fse_c00259{font-size:88.704000px;}
.y2d_c00259{bottom:-2.595735px;}
.y0_c00259{bottom:0.000000px;}
.y2c_c00259{bottom:13.093785px;}
.y2b_c00259{bottom:28.780335px;}
.y2a_c00259{bottom:45.882585px;}
.y29_c00259{bottom:56.579535px;}
.y1_c00259{bottom:76.500000px;}
.y28_c00259{bottom:81.527535px;}
.y2e_c00259{bottom:86.863635px;}
.y27_c00259{bottom:111.108735px;}
.y26_c00259{bottom:119.305935px;}
.y25_c00259{bottom:137.120985px;}
.y24_c00259{bottom:147.456585px;}
.y23_c00259{bottom:167.776335px;}
.y22_c00259{bottom:183.814335px;}
.y21_c00259{bottom:203.772735px;}
.y20_c00259{bottom:241.551135px;}
.y1f_c00259{bottom:268.988985px;}
.y1e_c00259{bottom:302.139135px;}
.y1d_c00259{bottom:313.900335px;}
.y1c_c00259{bottom:334.571535px;}
.y1b_c00259{bottom:367.360335px;}
.y1a_c00259{bottom:399.074985px;}
.y19_c00259{bottom:410.836185px;}
.y18_c00259{bottom:431.507385px;}
.y17_c00259{bottom:463.231935px;}
.y16_c00259{bottom:495.664335px;}
.y15_c00259{bottom:528.091785px;}
.y14_c00259{bottom:560.172735px;}
.y13_c00259{bottom:593.317935px;}
.y12_c00259{bottom:625.032585px;}
.y2_c00259{bottom:654.613785px;}
.y11_c00259{bottom:658.539135px;}
.y10_c00259{bottom:691.327935px;}
.yf_c00259{bottom:724.111785px;}
.ye_c00259{bottom:778.289535px;}
.yd_c00259{bottom:788.263785px;}
.yc_c00259{bottom:820.696185px;}
.yb_c00259{bottom:853.128585px;}
.ya_c00259{bottom:886.273785px;}
.y9_c00259{bottom:899.816985px;}
.y8_c00259{bottom:910.513935px;}
.y7_c00259{bottom:919.062585px;}
.y6_c00259{bottom:1053.781785px;}
.y5_c00259{bottom:1064.473785px;}
.y4_c00259{bottom:1083.367935px;}
.y3_c00259{bottom:1089.065385px;}
.h9_c00259{height:19.938573px;}
.h6_c00259{height:21.958857px;}
.h2_c00259{height:23.128875px;}
.h8_c00259{height:24.161414px;}
.hd_c00259{height:28.085063px;}
.h10_c00259{height:28.911094px;}
.hb_c00259{height:32.215219px;}
.ha_c00259{height:33.230868px;}
.h15_c00259{height:34.693313px;}
.h4_c00259{height:35.519550px;}
.h17_c00259{height:40.475531px;}
.h13_c00259{height:41.301563px;}
.h12_c00259{height:47.083781px;}
.h16_c00259{height:57.822188px;}
.h14_c00259{height:59.061234px;}
.h11_c00259{height:61.399800px;}
.h3_c00259{height:62.365566px;}
.hc_c00259{height:71.706552px;}
.he_c00259{height:73.843945px;}
.h7_c00259{height:76.953164px;}
.h5_c00259{height:84.337753px;}
.hf_c00259{height:87.058125px;}
.h1_c00259{height:1110.000000px;}
.h0_c00259{height:1263.000000px;}
.w1_c00259{width:763.500000px;}
.w0_c00259{width:892.500000px;}
.x0_c00259{left:0.000000px;}
.x2_c00259{left:50.035635px;}
.x1_c00259{left:64.500000px;}
.x14_c00259{left:75.429135px;}
.x7_c00259{left:76.562685px;}
.x6d_c00259{left:79.062435px;}
.x60_c00259{left:98.040735px;}
.x79_c00259{left:99.258435px;}
.x45_c00259{left:108.688185px;}
.x70_c00259{left:109.747485px;}
.x64_c00259{left:119.751435px;}
.x3c_c00259{left:121.181985px;}
.x23_c00259{left:129.958335px;}
.x15_c00259{left:131.176035px;}
.x24_c00259{left:142.432335px;}
.x1b_c00259{left:153.272835px;}
.x8_c00259{left:154.282635px;}
.x6c_c00259{left:156.015135px;}
.x4_c00259{left:163.247085px;}
.x41_c00259{left:164.672685px;}
.x77_c00259{left:166.083435px;}
.x34_c00259{left:175.369635px;}
.x4f_c00259{left:176.745735px;}
.x71_c00259{left:179.047485px;}
.x25_c00259{left:186.041835px;}
.x76_c00259{left:188.120835px;}
.x50_c00259{left:197.694135px;}
.x26_c00259{left:208.425735px;}
.x57_c00259{left:209.559285px;}
.x2f_c00259{left:219.553335px;}
.x78_c00259{left:220.939335px;}
.x65_c00259{left:222.998535px;}
.x35_c00259{left:229.384035px;}
.x27_c00259{left:230.606685px;}
.x74_c00259{left:232.893585px;}
.x9_c00259{left:241.932285px;}
.x46_c00259{left:251.782785px;}
.x28_c00259{left:253.396485px;}
.x6e_c00259{left:254.990385px;}
.x4b_c00259{left:264.405285px;}
.x51_c00259{left:265.509135px;}
.xa_c00259{left:275.844735px;}
.x36_c00259{left:285.650685px;}
.x47_c00259{left:286.719885px;}
.x30_c00259{left:297.575235px;}
.x52_c00259{left:298.669185px;}
.x1c_c00259{left:300.748185px;}
.x29_c00259{left:308.415735px;}
.x61_c00259{left:310.430385px;}
.x6f_c00259{left:315.172485px;}
.x48_c00259{left:319.676985px;}
.x31_c00259{left:331.106535px;}
.x1d_c00259{left:341.961885px;}
.x66_c00259{left:344.090385px;}
.x3d_c00259{left:352.233135px;}
.x2a_c00259{left:353.539935px;}
.xb_c00259{left:364.637835px;}
.x42_c00259{left:374.948685px;}
.x58_c00259{left:376.290135px;}
.x2b_c00259{left:385.640685px;}
.x4c_c00259{left:387.026685px;}
.x32_c00259{left:397.045485px;}
.x72_c00259{left:407.895885px;}
.x16_c00259{left:409.554135px;}
.x59_c00259{left:411.628185px;}
.x49_c00259{left:419.142285px;}
.x68_c00259{left:420.246135px;}
.x5a_c00259{left:422.176635px;}
.x67_c00259{left:429.680835px;}
.x1e_c00259{left:430.903485px;}
.x43_c00259{left:440.684685px;}
.x37_c00259{left:441.758835px;}
.x1f_c00259{left:452.084535px;}
.x69_c00259{left:453.693285px;}
.x5b_c00259{left:456.287085px;}
.x56_c00259{left:463.152735px;}
.x17_c00259{left:464.375385px;}
.x3e_c00259{left:473.829885px;}
.x4d_c00259{left:475.339635px;}
.x75_c00259{left:482.304285px;}
.xc_c00259{left:485.789085px;}
.x4a_c00259{left:496.713735px;}
.x6a_c00259{left:497.916585px;}
.x6_c00259{left:502.658685px;}
.x2c_c00259{left:507.405735px;}
.x6b_c00259{left:508.588785px;}
.x38_c00259{left:517.711635px;}
.xd_c00259{left:519.280785px;}
.x62_c00259{left:530.487585px;}
.x3f_c00259{left:541.392435px;}
.x53_c00259{left:542.422035px;}
.x18_c00259{left:552.341835px;}
.xe_c00259{left:564.083235px;}
.x39_c00259{left:573.626835px;}
.x40_c00259{left:574.661385px;}
.x54_c00259{left:575.879085px;}
.x20_c00259{left:577.616535px;}
.x44_c00259{left:585.100935px;}
.x4e_c00259{left:586.986885px;}
.x5c_c00259{left:597.149235px;}
.x55_c00259{left:607.450185px;}
.x19_c00259{left:618.364935px;}
.x2d_c00259{left:630.833985px;}
.x3a_c00259{left:640.110285px;}
.x5d_c00259{left:641.867535px;}
.x1a_c00259{left:650.648835px;}
.xf_c00259{left:652.049685px;}
.x21_c00259{left:662.796135px;}
.x5_c00259{left:664.281135px;}
.x5e_c00259{left:673.062435px;}
.x10_c00259{left:674.285085px;}
.x3b_c00259{left:684.120735px;}
.x73_c00259{left:686.066085px;}
.x2e_c00259{left:696.060135px;}
.x3_c00259{left:698.005485px;}
.x33_c00259{left:700.336935px;}
.x11_c00259{left:704.420685px;}
.x13_c00259{left:706.093785px;}
.x5f_c00259{left:707.776785px;}
.x22_c00259{left:717.884685px;}
.x63_c00259{left:719.899335px;}
.x12_c00259{left:740.585385px;}
.x7a_c00259{left:753.191055px;}
@media print{
.v0_c00259{vertical-align:0.000000pt;}
.v1_c00259{vertical-align:7.585600pt;}
.lsf_c00259{letter-spacing:-2.439360pt;}
.lsb_c00259{letter-spacing:-2.216333pt;}
.ls12_c00259{letter-spacing:-1.491494pt;}
.ls4_c00259{letter-spacing:0.000000pt;}
.ls1_c00259{letter-spacing:1.080288pt;}
.ls3_c00259{letter-spacing:1.108166pt;}
.ls2_c00259{letter-spacing:1.498464pt;}
.ls11_c00259{letter-spacing:1.616947pt;}
.lsd_c00259{letter-spacing:1.791187pt;}
.ls8_c00259{letter-spacing:2.216333pt;}
.ls9_c00259{letter-spacing:2.766931pt;}
.ls10_c00259{letter-spacing:2.976019pt;}
.lse_c00259{letter-spacing:3.247209pt;}
.ls13_c00259{letter-spacing:3.344000pt;}
.lsc_c00259{letter-spacing:3.456922pt;}
.ls6_c00259{letter-spacing:3.484800pt;}
.ls5_c00259{letter-spacing:3.819209pt;}
.ls14_c00259{letter-spacing:3.942400pt;}
.ls0_c00259{letter-spacing:17.284960pt;}
.ls7_c00259{letter-spacing:26.611376pt;}
.lsa_c00259{letter-spacing:44.352176pt;}
.ws3_c00259{word-spacing:-17.424000pt;}
.ws0_c00259{word-spacing:-14.776305pt;}
.ws6_c00259{word-spacing:0.000000pt;}
.ws1_c00259{word-spacing:1.254528pt;}
.ws5_c00259{word-spacing:1.951488pt;}
.ws4_c00259{word-spacing:1.952192pt;}
.ws2_c00259{word-spacing:3.345408pt;}
._1_c00259{margin-left:-9.991970pt;}
._0_c00259{margin-left:-6.750705pt;}
._14_c00259{margin-left:-4.318336pt;}
._15_c00259{width:4.321152pt;}
._9_c00259{width:5.560192pt;}
._b_c00259{width:6.830208pt;}
._c_c00259{width:8.154432pt;}
._8_c00259{width:9.757440pt;}
._3_c00259{width:11.360448pt;}
._e_c00259{width:13.939200pt;}
._11_c00259{width:15.418304pt;}
._5_c00259{width:18.469440pt;}
._7_c00259{width:20.630016pt;}
._10_c00259{width:22.825440pt;}
._f_c00259{width:23.836032pt;}
._2_c00259{width:25.020864pt;}
._d_c00259{width:26.136000pt;}
._4_c00259{width:27.808704pt;}
._12_c00259{width:29.483520pt;}
._6_c00259{width:30.735936pt;}
._a_c00259{width:32.757120pt;}
._16_c00259{width:36.533376pt;}
._13_c00259{width:748.703296pt;}
.fs0_c00259{font-size:19.712000pt;}
.fs4_c00259{font-size:19.888000pt;}
.fs6_c00259{font-size:20.592000pt;}
.fsc_c00259{font-size:23.936000pt;}
.fsf_c00259{font-size:24.640000pt;}
.fs7_c00259{font-size:26.611376pt;}
.fs9_c00259{font-size:27.456000pt;}
.fs10_c00259{font-size:29.568000pt;}
.fs2_c00259{font-size:30.272176pt;}
.fs16_c00259{font-size:34.496000pt;}
.fs13_c00259{font-size:35.200000pt;}
.fs12_c00259{font-size:40.128000pt;}
.fs8_c00259{font-size:44.352176pt;}
.fs11_c00259{font-size:45.056000pt;}
.fs15_c00259{font-size:49.280000pt;}
.fs14_c00259{font-size:50.336000pt;}
.fs1_c00259{font-size:53.152176pt;}
.fsa_c00259{font-size:64.944176pt;}
.fsb_c00259{font-size:66.176000pt;}
.fsd_c00259{font-size:66.880000pt;}
.fs5_c00259{font-size:69.696000pt;}
.fs3_c00259{font-size:76.384176pt;}
.fse_c00259{font-size:78.848000pt;}
.y2d_c00259{bottom:-2.307320pt;}
.y0_c00259{bottom:0.000000pt;}
.y2c_c00259{bottom:11.638920pt;}
.y2b_c00259{bottom:25.582520pt;}
.y2a_c00259{bottom:40.784520pt;}
.y29_c00259{bottom:50.292920pt;}
.y1_c00259{bottom:68.000000pt;}
.y28_c00259{bottom:72.468920pt;}
.y2e_c00259{bottom:77.212120pt;}
.y27_c00259{bottom:98.763320pt;}
.y26_c00259{bottom:106.049720pt;}
.y25_c00259{bottom:121.885320pt;}
.y24_c00259{bottom:131.072520pt;}
.y23_c00259{bottom:149.134520pt;}
.y22_c00259{bottom:163.390520pt;}
.y21_c00259{bottom:181.131320pt;}
.y20_c00259{bottom:214.712120pt;}
.y1f_c00259{bottom:239.101320pt;}
.y1e_c00259{bottom:268.568120pt;}
.y1d_c00259{bottom:279.022520pt;}
.y1c_c00259{bottom:297.396920pt;}
.y1b_c00259{bottom:326.542520pt;}
.y1a_c00259{bottom:354.733320pt;}
.y19_c00259{bottom:365.187720pt;}
.y18_c00259{bottom:383.562120pt;}
.y17_c00259{bottom:411.761720pt;}
.y16_c00259{bottom:440.590520pt;}
.y15_c00259{bottom:469.414920pt;}
.y14_c00259{bottom:497.931320pt;}
.y13_c00259{bottom:527.393720pt;}
.y12_c00259{bottom:555.584520pt;}
.y2_c00259{bottom:581.878920pt;}
.y11_c00259{bottom:585.368120pt;}
.y10_c00259{bottom:614.513720pt;}
.yf_c00259{bottom:643.654920pt;}
.ye_c00259{bottom:691.812920pt;}
.yd_c00259{bottom:700.678920pt;}
.yc_c00259{bottom:729.507720pt;}
.yb_c00259{bottom:758.336520pt;}
.ya_c00259{bottom:787.798920pt;}
.y9_c00259{bottom:799.837320pt;}
.y8_c00259{bottom:809.345720pt;}
.y7_c00259{bottom:816.944520pt;}
.y6_c00259{bottom:936.694920pt;}
.y5_c00259{bottom:946.198920pt;}
.y4_c00259{bottom:962.993720pt;}
.y3_c00259{bottom:968.058120pt;}
.h9_c00259{height:17.723176pt;}
.h6_c00259{height:19.518984pt;}
.h2_c00259{height:20.559000pt;}
.h8_c00259{height:21.476813pt;}
.hd_c00259{height:24.964500pt;}
.h10_c00259{height:25.698750pt;}
.hb_c00259{height:28.635750pt;}
.ha_c00259{height:29.538549pt;}
.h15_c00259{height:30.838500pt;}
.h4_c00259{height:31.572934pt;}
.h17_c00259{height:35.978250pt;}
.h13_c00259{height:36.712500pt;}
.h12_c00259{height:41.852250pt;}
.h16_c00259{height:51.397500pt;}
.h14_c00259{height:52.498875pt;}
.h11_c00259{height:54.577600pt;}
.h3_c00259{height:55.436059pt;}
.hc_c00259{height:63.739157pt;}
.he_c00259{height:65.639063pt;}
.h7_c00259{height:68.402813pt;}
.h5_c00259{height:74.966891pt;}
.hf_c00259{height:77.385000pt;}
.h1_c00259{height:986.666667pt;}
.h0_c00259{height:1122.666667pt;}
.w1_c00259{width:678.666667pt;}
.w0_c00259{width:793.333333pt;}
.x0_c00259{left:0.000000pt;}
.x2_c00259{left:44.476120pt;}
.x1_c00259{left:57.333333pt;}
.x14_c00259{left:67.048120pt;}
.x7_c00259{left:68.055720pt;}
.x6d_c00259{left:70.277720pt;}
.x60_c00259{left:87.147320pt;}
.x79_c00259{left:88.229720pt;}
.x45_c00259{left:96.611720pt;}
.x70_c00259{left:97.553320pt;}
.x64_c00259{left:106.445720pt;}
.x3c_c00259{left:107.717320pt;}
.x23_c00259{left:115.518520pt;}
.x15_c00259{left:116.600920pt;}
.x24_c00259{left:126.606520pt;}
.x1b_c00259{left:136.242520pt;}
.x8_c00259{left:137.140120pt;}
.x6c_c00259{left:138.680120pt;}
.x4_c00259{left:145.108520pt;}
.x41_c00259{left:146.375720pt;}
.x77_c00259{left:147.629720pt;}
.x34_c00259{left:155.884120pt;}
.x4f_c00259{left:157.107320pt;}
.x71_c00259{left:159.153320pt;}
.x25_c00259{left:165.370520pt;}
.x76_c00259{left:167.218520pt;}
.x50_c00259{left:175.728120pt;}
.x26_c00259{left:185.267320pt;}
.x57_c00259{left:186.274920pt;}
.x2f_c00259{left:195.158520pt;}
.x78_c00259{left:196.390520pt;}
.x65_c00259{left:198.220920pt;}
.x35_c00259{left:203.896920pt;}
.x27_c00259{left:204.983720pt;}
.x74_c00259{left:207.016520pt;}
.x9_c00259{left:215.050920pt;}
.x46_c00259{left:223.806920pt;}
.x28_c00259{left:225.241320pt;}
.x6e_c00259{left:226.658120pt;}
.x4b_c00259{left:235.026920pt;}
.x51_c00259{left:236.008120pt;}
.xa_c00259{left:245.195320pt;}
.x36_c00259{left:253.911720pt;}
.x47_c00259{left:254.862120pt;}
.x30_c00259{left:264.511320pt;}
.x52_c00259{left:265.483720pt;}
.x1c_c00259{left:267.331720pt;}
.x29_c00259{left:274.147320pt;}
.x61_c00259{left:275.938120pt;}
.x6f_c00259{left:280.153320pt;}
.x48_c00259{left:284.157320pt;}
.x31_c00259{left:294.316920pt;}
.x1d_c00259{left:303.966120pt;}
.x66_c00259{left:305.858120pt;}
.x3d_c00259{left:313.096120pt;}
.x2a_c00259{left:314.257720pt;}
.xb_c00259{left:324.122520pt;}
.x42_c00259{left:333.287720pt;}
.x58_c00259{left:334.480120pt;}
.x2b_c00259{left:342.791720pt;}
.x4c_c00259{left:344.023720pt;}
.x32_c00259{left:352.929320pt;}
.x72_c00259{left:362.574120pt;}
.x16_c00259{left:364.048120pt;}
.x59_c00259{left:365.891720pt;}
.x49_c00259{left:372.570920pt;}
.x68_c00259{left:373.552120pt;}
.x5a_c00259{left:375.268120pt;}
.x67_c00259{left:381.938520pt;}
.x1e_c00259{left:383.025320pt;}
.x43_c00259{left:391.719720pt;}
.x37_c00259{left:392.674520pt;}
.x1f_c00259{left:401.852920pt;}
.x69_c00259{left:403.282920pt;}
.x5b_c00259{left:405.588520pt;}
.x56_c00259{left:411.691320pt;}
.x17_c00259{left:412.778120pt;}
.x3e_c00259{left:421.182120pt;}
.x4d_c00259{left:422.524120pt;}
.x75_c00259{left:428.714920pt;}
.xc_c00259{left:431.812520pt;}
.x4a_c00259{left:441.523320pt;}
.x6a_c00259{left:442.592520pt;}
.x6_c00259{left:446.807720pt;}
.x2c_c00259{left:451.027320pt;}
.x6b_c00259{left:452.078920pt;}
.x38_c00259{left:460.188120pt;}
.xd_c00259{left:461.582920pt;}
.x62_c00259{left:471.544520pt;}
.x3f_c00259{left:481.237720pt;}
.x53_c00259{left:482.152920pt;}
.x18_c00259{left:490.970520pt;}
.xe_c00259{left:501.407320pt;}
.x39_c00259{left:509.890520pt;}
.x40_c00259{left:510.810120pt;}
.x54_c00259{left:511.892520pt;}
.x20_c00259{left:513.436920pt;}
.x44_c00259{left:520.089720pt;}
.x4e_c00259{left:521.766120pt;}
.x5c_c00259{left:530.799320pt;}
.x55_c00259{left:539.955720pt;}
.x19_c00259{left:549.657720pt;}
.x2d_c00259{left:560.741320pt;}
.x3a_c00259{left:568.986920pt;}
.x5d_c00259{left:570.548920pt;}
.x1a_c00259{left:578.354520pt;}
.xf_c00259{left:579.599720pt;}
.x21_c00259{left:589.152120pt;}
.x5_c00259{left:590.472120pt;}
.x5e_c00259{left:598.277720pt;}
.x10_c00259{left:599.364520pt;}
.x3b_c00259{left:608.107320pt;}
.x73_c00259{left:609.836520pt;}
.x2e_c00259{left:618.720120pt;}
.x3_c00259{left:620.449320pt;}
.x33_c00259{left:622.521720pt;}
.x11_c00259{left:626.151720pt;}
.x13_c00259{left:627.638920pt;}
.x5f_c00259{left:629.134920pt;}
.x22_c00259{left:638.119720pt;}
.x63_c00259{left:639.910520pt;}
.x12_c00259{left:658.298120pt;}
.x7a_c00259{left:669.503160pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0e76b1862ca335f47e3f397c.woff2')format("woff");}.ff1_c00260{font-family:ff1_c00260;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00260;src:url('chunks/assets/font_d45bc7ef10d06fa539a924ac.woff2')format("woff");}.ff2_c00260{font-family:ff2_c00260;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00260;src:url('chunks/assets/font_1f3a8fb502c6f3b2564b38ac.woff2')format("woff");}.ff3_c00260{font-family:ff3_c00260;line-height:0.666000;font-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_c00260{transform:matrix(0.097222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097222,0.000000,0.000000,0.250000,0,0);}
.ma1_c00260{transform:matrix(0.097641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097641,0.000000,0.000000,0.250000,0,0);}
.mbb_c00260{transform:matrix(0.138889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138889,0.000000,0.000000,0.250000,0,0);}
.m5d_c00260{transform:matrix(0.167856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167856,0.000000,0.000000,0.250000,0,0);}
.maa_c00260{transform:matrix(0.170260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170260,0.000000,0.000000,0.250000,0,0);}
.m5a_c00260{transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);}
.m5c_c00260{transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);}
.maf_c00260{transform:matrix(0.194857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194857,0.000000,0.000000,0.250000,0,0);}
.ma0_c00260{transform:matrix(0.205970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205970,0.000000,0.000000,0.250000,0,0);}
.m5b_c00260{transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);}
.m83_c00260{transform:matrix(0.212244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212244,0.000000,0.000000,0.250000,0,0);}
.m6f_c00260{transform:matrix(0.228978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228978,0.000000,0.000000,0.250000,0,0);}
.mc2_c00260{transform:matrix(0.231419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231419,0.000000,0.000000,0.250000,0,0);}
.m81_c00260{transform:matrix(0.234363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234363,0.000000,0.000000,0.250000,0,0);}
.m86_c00260{transform:matrix(0.237002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237002,0.000000,0.000000,0.250000,0,0);}
.m0_c00260{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m97_c00260{transform:matrix(0.250220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250220,0.000000,0.000000,0.250000,0,0);}
.m4d_c00260{transform:matrix(0.250855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250855,0.000000,0.000000,0.250000,0,0);}
.m72_c00260{transform:matrix(0.252823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252823,0.000000,0.000000,0.250000,0,0);}
.m1d_c00260{transform:matrix(0.253899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253899,0.000000,0.000000,0.250000,0,0);}
.m85_c00260{transform:matrix(0.255629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255629,0.000000,0.000000,0.250000,0,0);}
.m4b_c00260{transform:matrix(0.255729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255729,0.000000,0.000000,0.250000,0,0);}
.m3c_c00260{transform:matrix(0.257007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257007,0.000000,0.000000,0.250000,0,0);}
.m90_c00260{transform:matrix(0.257010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257010,0.000000,0.000000,0.250000,0,0);}
.m9b_c00260{transform:matrix(0.258816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258816,0.000000,0.000000,0.250000,0,0);}
.m94_c00260{transform:matrix(0.260722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260722,0.000000,0.000000,0.250000,0,0);}
.m39_c00260{transform:matrix(0.260908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260908,0.000000,0.000000,0.250000,0,0);}
.m99_c00260{transform:matrix(0.262975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262975,0.000000,0.000000,0.250000,0,0);}
.mb3_c00260{transform:matrix(0.263248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263248,0.000000,0.000000,0.250000,0,0);}
.m88_c00260{transform:matrix(0.264295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264295,0.000000,0.000000,0.250000,0,0);}
.m33_c00260{transform:matrix(0.265207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265207,0.000000,0.000000,0.250000,0,0);}
.m62_c00260{transform:matrix(0.265386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265386,0.000000,0.000000,0.250000,0,0);}
.m30_c00260{transform:matrix(0.266278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266278,0.000000,0.000000,0.250000,0,0);}
.m2f_c00260{transform:matrix(0.266811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266811,0.000000,0.000000,0.250000,0,0);}
.m55_c00260{transform:matrix(0.266903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266903,0.000000,0.000000,0.250000,0,0);}
.m36_c00260{transform:matrix(0.267721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267721,0.000000,0.000000,0.250000,0,0);}
.m27_c00260{transform:matrix(0.268402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268402,0.000000,0.000000,0.250000,0,0);}
.m7c_c00260{transform:matrix(0.269453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269453,0.000000,0.000000,0.250000,0,0);}
.m41_c00260{transform:matrix(0.270126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270126,0.000000,0.000000,0.250000,0,0);}
.m49_c00260{transform:matrix(0.270126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270126,0.000000,0.000000,0.250000,0,0);}
.m74_c00260{transform:matrix(0.270764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270764,0.000000,0.000000,0.250000,0,0);}
.mc3_c00260{transform:matrix(0.272247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272247,0.000000,0.000000,0.250000,0,0);}
.m2_c00260{transform:matrix(0.272516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272516,0.000000,0.000000,0.250000,0,0);}
.m1e_c00260{transform:matrix(0.273110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273110,0.000000,0.000000,0.250000,0,0);}
.m2b_c00260{transform:matrix(0.273194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273194,0.000000,0.000000,0.250000,0,0);}
.m67_c00260{transform:matrix(0.273512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273512,0.000000,0.000000,0.250000,0,0);}
.mb1_c00260{transform:matrix(0.274741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274741,0.000000,0.000000,0.250000,0,0);}
.mc0_c00260{transform:matrix(0.274744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274744,0.000000,0.000000,0.250000,0,0);}
.ma2_c00260{transform:matrix(0.274839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274839,0.000000,0.000000,0.250000,0,0);}
.m29_c00260{transform:matrix(0.274865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274865,0.000000,0.000000,0.250000,0,0);}
.ma4_c00260{transform:matrix(0.275578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275578,0.000000,0.000000,0.250000,0,0);}
.mbf_c00260{transform:matrix(0.275583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275583,0.000000,0.000000,0.250000,0,0);}
.m8c_c00260{transform:matrix(0.276111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276111,0.000000,0.000000,0.250000,0,0);}
.m2e_c00260{transform:matrix(0.276990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276990,0.000000,0.000000,0.250000,0,0);}
.ma_c00260{transform:matrix(0.277901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277901,0.000000,0.000000,0.250000,0,0);}
.mba_c00260{transform:matrix(0.278194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278194,0.000000,0.000000,0.250000,0,0);}
.ma7_c00260{transform:matrix(0.278639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278639,0.000000,0.000000,0.250000,0,0);}
.m3_c00260{transform:matrix(0.279069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279069,0.000000,0.000000,0.250000,0,0);}
.mc8_c00260{transform:matrix(0.279604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279604,0.000000,0.000000,0.250000,0,0);}
.m6c_c00260{transform:matrix(0.279672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279672,0.000000,0.000000,0.250000,0,0);}
.m12_c00260{transform:matrix(0.279862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279862,0.000000,0.000000,0.250000,0,0);}
.m56_c00260{transform:matrix(0.279953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279953,0.000000,0.000000,0.250000,0,0);}
.m2d_c00260{transform:matrix(0.280106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280106,0.000000,0.000000,0.250000,0,0);}
.m5e_c00260{transform:matrix(0.280424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280424,0.000000,0.000000,0.250000,0,0);}
.m4f_c00260{transform:matrix(0.280687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280687,0.000000,0.000000,0.250000,0,0);}
.m75_c00260{transform:matrix(0.281227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281227,0.000000,0.000000,0.250000,0,0);}
.mae_c00260{transform:matrix(0.281760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281760,0.000000,0.000000,0.250000,0,0);}
.m31_c00260{transform:matrix(0.281824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281824,0.000000,0.000000,0.250000,0,0);}
.m8a_c00260{transform:matrix(0.282876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282876,0.000000,0.000000,0.250000,0,0);}
.m82_c00260{transform:matrix(0.283284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283284,0.000000,0.000000,0.250000,0,0);}
.mb6_c00260{transform:matrix(0.283473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283473,0.000000,0.000000,0.250000,0,0);}
.m93_c00260{transform:matrix(0.283536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283536,0.000000,0.000000,0.250000,0,0);}
.m9d_c00260{transform:matrix(0.283737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283737,0.000000,0.000000,0.250000,0,0);}
.m98_c00260{transform:matrix(0.284347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284347,0.000000,0.000000,0.250000,0,0);}
.m10_c00260{transform:matrix(0.284707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284707,0.000000,0.000000,0.250000,0,0);}
.ma9_c00260{transform:matrix(0.284804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284804,0.000000,0.000000,0.250000,0,0);}
.m66_c00260{transform:matrix(0.285790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285790,0.000000,0.000000,0.250000,0,0);}
.m4e_c00260{transform:matrix(0.285798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285798,0.000000,0.000000,0.250000,0,0);}
.mc_c00260{transform:matrix(0.285901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285901,0.000000,0.000000,0.250000,0,0);}
.m37_c00260{transform:matrix(0.285995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285995,0.000000,0.000000,0.250000,0,0);}
.m7b_c00260{transform:matrix(0.286635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286635,0.000000,0.000000,0.250000,0,0);}
.mc7_c00260{transform:matrix(0.287014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287014,0.000000,0.000000,0.250000,0,0);}
.m6_c00260{transform:matrix(0.287218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287218,0.000000,0.000000,0.250000,0,0);}
.m9f_c00260{transform:matrix(0.287320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287320,0.000000,0.000000,0.250000,0,0);}
.m57_c00260{transform:matrix(0.287544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287544,0.000000,0.000000,0.250000,0,0);}
.m45_c00260{transform:matrix(0.287741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287741,0.000000,0.000000,0.250000,0,0);}
.md_c00260{transform:matrix(0.288055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288055,0.000000,0.000000,0.250000,0,0);}
.m92_c00260{transform:matrix(0.288819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288819,0.000000,0.000000,0.250000,0,0);}
.mb_c00260{transform:matrix(0.288841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288841,0.000000,0.000000,0.250000,0,0);}
.m25_c00260{transform:matrix(0.290102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290102,0.000000,0.000000,0.250000,0,0);}
.m17_c00260{transform:matrix(0.290560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290560,0.000000,0.000000,0.250000,0,0);}
.m24_c00260{transform:matrix(0.290893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290893,0.000000,0.000000,0.250000,0,0);}
.m20_c00260{transform:matrix(0.291139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291139,0.000000,0.000000,0.250000,0,0);}
.m2c_c00260{transform:matrix(0.291256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291256,0.000000,0.000000,0.250000,0,0);}
.m9e_c00260{transform:matrix(0.291771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291771,0.000000,0.000000,0.250000,0,0);}
.m6e_c00260{transform:matrix(0.291908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291908,0.000000,0.000000,0.250000,0,0);}
.m9c_c00260{transform:matrix(0.291999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291999,0.000000,0.000000,0.250000,0,0);}
.m7a_c00260{transform:matrix(0.292013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292013,0.000000,0.000000,0.250000,0,0);}
.m65_c00260{transform:matrix(0.292137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292137,0.000000,0.000000,0.250000,0,0);}
.m1c_c00260{transform:matrix(0.292405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292405,0.000000,0.000000,0.250000,0,0);}
.m63_c00260{transform:matrix(0.292963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292963,0.000000,0.000000,0.250000,0,0);}
.m73_c00260{transform:matrix(0.293548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293548,0.000000,0.000000,0.250000,0,0);}
.m8e_c00260{transform:matrix(0.293687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293687,0.000000,0.000000,0.250000,0,0);}
.m3a_c00260{transform:matrix(0.293965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293965,0.000000,0.000000,0.250000,0,0);}
.m71_c00260{transform:matrix(0.294382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294382,0.000000,0.000000,0.250000,0,0);}
.m35_c00260{transform:matrix(0.294481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294481,0.000000,0.000000,0.250000,0,0);}
.m84_c00260{transform:matrix(0.294896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294896,0.000000,0.000000,0.250000,0,0);}
.m40_c00260{transform:matrix(0.295324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295324,0.000000,0.000000,0.250000,0,0);}
.m87_c00260{transform:matrix(0.295843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295843,0.000000,0.000000,0.250000,0,0);}
.m8_c00260{transform:matrix(0.296634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296634,0.000000,0.000000,0.250000,0,0);}
.m61_c00260{transform:matrix(0.296876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296876,0.000000,0.000000,0.250000,0,0);}
.m18_c00260{transform:matrix(0.297228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297228,0.000000,0.000000,0.250000,0,0);}
.m26_c00260{transform:matrix(0.297413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297413,0.000000,0.000000,0.250000,0,0);}
.mac_c00260{transform:matrix(0.297683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297683,0.000000,0.000000,0.250000,0,0);}
.m47_c00260{transform:matrix(0.297700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297700,0.000000,0.000000,0.250000,0,0);}
.m3e_c00260{transform:matrix(0.298387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298387,0.000000,0.000000,0.250000,0,0);}
.mc5_c00260{transform:matrix(0.298970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298970,0.000000,0.000000,0.250000,0,0);}
.m79_c00260{transform:matrix(0.299031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299031,0.000000,0.000000,0.250000,0,0);}
.m23_c00260{transform:matrix(0.299049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299049,0.000000,0.000000,0.250000,0,0);}
.m6d_c00260{transform:matrix(0.299411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299411,0.000000,0.000000,0.250000,0,0);}
.m32_c00260{transform:matrix(0.299530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299530,0.000000,0.000000,0.250000,0,0);}
.m42_c00260{transform:matrix(0.299587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299587,0.000000,0.000000,0.250000,0,0);}
.mc4_c00260{transform:matrix(0.300361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300361,0.000000,0.000000,0.250000,0,0);}
.m22_c00260{transform:matrix(0.301276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301276,0.000000,0.000000,0.250000,0,0);}
.m21_c00260{transform:matrix(0.301704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301704,0.000000,0.000000,0.250000,0,0);}
.m8b_c00260{transform:matrix(0.301773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301773,0.000000,0.000000,0.250000,0,0);}
.mad_c00260{transform:matrix(0.302071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302071,0.000000,0.000000,0.250000,0,0);}
.mbd_c00260{transform:matrix(0.303605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303605,0.000000,0.000000,0.250000,0,0);}
.mb5_c00260{transform:matrix(0.303659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303659,0.000000,0.000000,0.250000,0,0);}
.m51_c00260{transform:matrix(0.303760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303760,0.000000,0.000000,0.250000,0,0);}
.m89_c00260{transform:matrix(0.304803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304803,0.000000,0.000000,0.250000,0,0);}
.m50_c00260{transform:matrix(0.305141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305141,0.000000,0.000000,0.250000,0,0);}
.m7d_c00260{transform:matrix(0.306598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306598,0.000000,0.000000,0.250000,0,0);}
.m38_c00260{transform:matrix(0.306846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306846,0.000000,0.000000,0.250000,0,0);}
.m13_c00260{transform:matrix(0.309163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309163,0.000000,0.000000,0.250000,0,0);}
.m59_c00260{transform:matrix(0.310210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310210,0.000000,0.000000,0.250000,0,0);}
.ma3_c00260{transform:matrix(0.310506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310506,0.000000,0.000000,0.250000,0,0);}
.mb9_c00260{transform:matrix(0.311372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311372,0.000000,0.000000,0.250000,0,0);}
.m5_c00260{transform:matrix(0.311622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311622,0.000000,0.000000,0.250000,0,0);}
.m68_c00260{transform:matrix(0.311829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311829,0.000000,0.000000,0.250000,0,0);}
.m1_c00260{transform:matrix(0.312924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312924,0.000000,0.000000,0.250000,0,0);}
.mb0_c00260{transform:matrix(0.313256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313256,0.000000,0.000000,0.250000,0,0);}
.m14_c00260{transform:matrix(0.313389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313389,0.000000,0.000000,0.250000,0,0);}
.mb2_c00260{transform:matrix(0.313912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313912,0.000000,0.000000,0.250000,0,0);}
.m77_c00260{transform:matrix(0.314078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314078,0.000000,0.000000,0.250000,0,0);}
.m3f_c00260{transform:matrix(0.314203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314203,0.000000,0.000000,0.250000,0,0);}
.m80_c00260{transform:matrix(0.315802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315802,0.000000,0.000000,0.250000,0,0);}
.m4a_c00260{transform:matrix(0.315815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315815,0.000000,0.000000,0.250000,0,0);}
.m2a_c00260{transform:matrix(0.315955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315955,0.000000,0.000000,0.250000,0,0);}
.m78_c00260{transform:matrix(0.316573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316573,0.000000,0.000000,0.250000,0,0);}
.m28_c00260{transform:matrix(0.316946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316946,0.000000,0.000000,0.250000,0,0);}
.m58_c00260{transform:matrix(0.317131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317131,0.000000,0.000000,0.250000,0,0);}
.m16_c00260{transform:matrix(0.317176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317176,0.000000,0.000000,0.250000,0,0);}
.m54_c00260{transform:matrix(0.317420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317420,0.000000,0.000000,0.250000,0,0);}
.ma6_c00260{transform:matrix(0.317617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317617,0.000000,0.000000,0.250000,0,0);}
.m19_c00260{transform:matrix(0.317798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317798,0.000000,0.000000,0.250000,0,0);}
.m34_c00260{transform:matrix(0.318722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318722,0.000000,0.000000,0.250000,0,0);}
.m7e_c00260{transform:matrix(0.318725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318725,0.000000,0.000000,0.250000,0,0);}
.mb4_c00260{transform:matrix(0.318909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318909,0.000000,0.000000,0.250000,0,0);}
.m95_c00260{transform:matrix(0.319499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319499,0.000000,0.000000,0.250000,0,0);}
.m48_c00260{transform:matrix(0.320130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320130,0.000000,0.000000,0.250000,0,0);}
.m44_c00260{transform:matrix(0.321405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321405,0.000000,0.000000,0.250000,0,0);}
.m70_c00260{transform:matrix(0.321699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321699,0.000000,0.000000,0.250000,0,0);}
.m7_c00260{transform:matrix(0.323407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323407,0.000000,0.000000,0.250000,0,0);}
.m64_c00260{transform:matrix(0.325594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325594,0.000000,0.000000,0.250000,0,0);}
.m69_c00260{transform:matrix(0.325816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325816,0.000000,0.000000,0.250000,0,0);}
.m53_c00260{transform:matrix(0.326402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326402,0.000000,0.000000,0.250000,0,0);}
.mbe_c00260{transform:matrix(0.329558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329558,0.000000,0.000000,0.250000,0,0);}
.m96_c00260{transform:matrix(0.329943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329943,0.000000,0.000000,0.250000,0,0);}
.m4_c00260{transform:matrix(0.331583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331583,0.000000,0.000000,0.250000,0,0);}
.m52_c00260{transform:matrix(0.331883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331883,0.000000,0.000000,0.250000,0,0);}
.m46_c00260{transform:matrix(0.333095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333095,0.000000,0.000000,0.250000,0,0);}
.m9_c00260{transform:matrix(0.333199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333199,0.000000,0.000000,0.250000,0,0);}
.m8d_c00260{transform:matrix(0.333204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333204,0.000000,0.000000,0.250000,0,0);}
.m8f_c00260{transform:matrix(0.333481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333481,0.000000,0.000000,0.250000,0,0);}
.mb8_c00260{transform:matrix(0.333631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333631,0.000000,0.000000,0.250000,0,0);}
.mab_c00260{transform:matrix(0.333866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333866,0.000000,0.000000,0.250000,0,0);}
.m7f_c00260{transform:matrix(0.334766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334766,0.000000,0.000000,0.250000,0,0);}
.m76_c00260{transform:matrix(0.335641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335641,0.000000,0.000000,0.250000,0,0);}
.m9a_c00260{transform:matrix(0.335946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335946,0.000000,0.000000,0.250000,0,0);}
.m3b_c00260{transform:matrix(0.337240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337240,0.000000,0.000000,0.250000,0,0);}
.mb7_c00260{transform:matrix(0.338901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338901,0.000000,0.000000,0.250000,0,0);}
.m15_c00260{transform:matrix(0.341856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341856,0.000000,0.000000,0.250000,0,0);}
.ma5_c00260{transform:matrix(0.342551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342551,0.000000,0.000000,0.250000,0,0);}
.me_c00260{transform:matrix(0.345063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345063,0.000000,0.000000,0.250000,0,0);}
.m60_c00260{transform:matrix(0.345227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345227,0.000000,0.000000,0.250000,0,0);}
.m5f_c00260{transform:matrix(0.348072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348072,0.000000,0.000000,0.250000,0,0);}
.ma8_c00260{transform:matrix(0.349072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349072,0.000000,0.000000,0.250000,0,0);}
.mc1_c00260{transform:matrix(0.349450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349450,0.000000,0.000000,0.250000,0,0);}
.m1f_c00260{transform:matrix(0.352173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352173,0.000000,0.000000,0.250000,0,0);}
.mf_c00260{transform:matrix(0.355792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355792,0.000000,0.000000,0.250000,0,0);}
.mc6_c00260{transform:matrix(0.356372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356372,0.000000,0.000000,0.250000,0,0);}
.m6a_c00260{transform:matrix(0.356766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356766,0.000000,0.000000,0.250000,0,0);}
.m1a_c00260{transform:matrix(0.361720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361720,0.000000,0.000000,0.250000,0,0);}
.m3d_c00260{transform:matrix(0.364530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364530,0.000000,0.000000,0.250000,0,0);}
.m6b_c00260{transform:matrix(0.367917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367917,0.000000,0.000000,0.250000,0,0);}
.m4c_c00260{transform:matrix(0.372846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372846,0.000000,0.000000,0.250000,0,0);}
.m11_c00260{transform:matrix(0.376887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376887,0.000000,0.000000,0.250000,0,0);}
.m1b_c00260{transform:matrix(0.377231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377231,0.000000,0.000000,0.250000,0,0);}
.m91_c00260{transform:matrix(0.390310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390310,0.000000,0.000000,0.250000,0,0);}
.m43_c00260{transform:matrix(0.427091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427091,0.000000,0.000000,0.250000,0,0);}
.v0_c00260{vertical-align:0.000000px;}
.lsd_c00260{letter-spacing:-3.991680px;}
.lsb_c00260{letter-spacing:-2.674980px;}
.ls5_c00260{letter-spacing:0.000000px;}
.ls7_c00260{letter-spacing:0.649638px;}
.ls2_c00260{letter-spacing:1.245776px;}
.ls3_c00260{letter-spacing:1.311555px;}
.lsa_c00260{letter-spacing:2.059200px;}
.lse_c00260{letter-spacing:2.262269px;}
.lsc_c00260{letter-spacing:2.827836px;}
.ls4_c00260{letter-spacing:3.821400px;}
.ls8_c00260{letter-spacing:4.098610px;}
.ls6_c00260{letter-spacing:4.494610px;}
.ls1_c00260{letter-spacing:11.769912px;}
.ls0_c00260{letter-spacing:20.247018px;}
.ls9_c00260{letter-spacing:49.896198px;}
.lsf_c00260{letter-spacing:51.321798px;}
.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:-19.107000px;}
.ws3_c00260{word-spacing:0.000000px;}
.ws2_c00260{word-spacing:2.292840px;}
.ws1_c00260{word-spacing:2.369268px;}
._c_c00260{margin-left:-10.012068px;}
._1_c00260{margin-left:-8.789220px;}
._11_c00260{width:4.967820px;}
._3_c00260{width:7.948512px;}
._4_c00260{width:10.852776px;}
._0_c00260{width:12.381336px;}
._e_c00260{width:21.400236px;}
._d_c00260{width:22.776336px;}
._8_c00260{width:24.227676px;}
._2_c00260{width:29.806920px;}
._5_c00260{width:31.960368px;}
._a_c00260{width:33.223727px;}
._9_c00260{width:35.385768px;}
._7_c00260{width:36.914328px;}
._b_c00260{width:38.956500px;}
._f_c00260{width:40.965408px;}
._10_c00260{width:46.238940px;}
._6_c00260{width:51.741756px;}
.fc0_c00260{color:transparent;}
.fs3_c00260{font-size:22.176000px;}
.fs8_c00260{font-size:28.908000px;}
.fs5_c00260{font-size:32.868000px;}
.fs6_c00260{font-size:41.184000px;}
.fs4_c00260{font-size:49.896198px;}
.fsa_c00260{font-size:51.321798px;}
.fs9_c00260{font-size:76.032198px;}
.fs1_c00260{font-size:76.428000px;}
.fs0_c00260{font-size:81.972198px;}
.fs2_c00260{font-size:89.892198px;}
.fs7_c00260{font-size:114.048000px;}
.y0_c00260{bottom:0.000000px;}
.y1_c00260{bottom:76.500000px;}
.y1f_c00260{bottom:126.428985px;}
.y1e_c00260{bottom:183.101535px;}
.y1d_c00260{bottom:190.942335px;}
.y1c_c00260{bottom:211.613535px;}
.y1b_c00260{bottom:224.438985px;}
.y1a_c00260{bottom:256.876335px;}
.y19_c00260{bottom:288.952335px;}
.y18_c00260{bottom:288.954414px;}
.y17_c00260{bottom:322.448985px;}
.y16_c00260{bottom:358.088985px;}
.y15_c00260{bottom:391.951935px;}
.y14_c00260{bottom:424.379385px;}
.y13_c00260{bottom:458.242335px;}
.y12_c00260{bottom:492.100335px;}
.y10_c00260{bottom:524.527785px;}
.y11_c00260{bottom:528.453135px;}
.yf_c00260{bottom:545.555385px;}
.ye_c00260{bottom:558.034335px;}
.yd_c00260{bottom:590.105385px;}
.yc_c00260{bottom:621.829935px;}
.yb_c00260{bottom:654.262335px;}
.ya_c00260{bottom:687.051135px;}
.y9_c00260{bottom:750.846735px;}
.y8_c00260{bottom:768.666735px;}
.y7_c00260{bottom:786.125385px;}
.y6_c00260{bottom:819.983385px;}
.y5_c00260{bottom:854.197785px;}
.y4_c00260{bottom:886.986585px;}
.y3_c00260{bottom:921.918735px;}
.y2_c00260{bottom:1073.740185px;}
.h5_c00260{height:23.128875px;}
.ha_c00260{height:28.371621px;}
.h6_c00260{height:33.230868px;}
.hc_c00260{height:34.180317px;}
.h7_c00260{height:34.280297px;}
.h8_c00260{height:40.419844px;}
.h3_c00260{height:75.009902px;}
.hb_c00260{height:79.299207px;}
.h2_c00260{height:80.451229px;}
.h4_c00260{height:88.224276px;}
.h9_c00260{height:111.931875px;}
.h1_c00260{height:1110.000000px;}
.h0_c00260{height:1263.000000px;}
.w1_c00260{width:763.500000px;}
.w0_c00260{width:892.500000px;}
.x0_c00260{left:0.000000px;}
.x68_c00260{left:49.720320px;}
.x1_c00260{left:64.500000px;}
.x3_c00260{left:68.365485px;}
.x1c_c00260{left:69.617835px;}
.x6f_c00260{left:70.627635px;}
.x69_c00260{left:80.780085px;}
.x26_c00260{left:91.967085px;}
.x27_c00260{left:101.401785px;}
.x51_c00260{left:102.995685px;}
.x78_c00260{left:104.005485px;}
.x3f_c00260{left:113.014485px;}
.x70_c00260{left:114.044085px;}
.x45_c00260{left:123.176835px;}
.x1d_c00260{left:124.736085px;}
.x7a_c00260{left:125.755785px;}
.x33_c00260{left:134.631135px;}
.x4d_c00260{left:135.843885px;}
.xc_c00260{left:146.144835px;}
.x6a_c00260{left:147.560535px;}
.x34_c00260{left:156.322035px;}
.x1e_c00260{left:157.514985px;}
.x7b_c00260{left:159.890985px;}
.xd_c00260{left:168.924735px;}
.x7c_c00260{left:173.439135px;}
.x15_c00260{left:178.448535px;}
.x40_c00260{left:180.037485px;}
.x1f_c00260{left:189.986985px;}
.x62_c00260{left:191.051235px;}
.x75_c00260{left:192.466935px;}
.x66_c00260{left:194.130135px;}
.xe_c00260{left:199.802835px;}
.x4_c00260{left:202.089735px;}
.x41_c00260{left:211.875885px;}
.x52_c00260{left:213.702435px;}
.x28_c00260{left:224.186535px;}
.x7d_c00260{left:225.567585px;}
.xf_c00260{left:234.675585px;}
.x5_c00260{left:244.659735px;}
.x3c_c00260{left:245.936835px;}
.x46_c00260{left:247.298085px;}
.x35_c00260{left:256.495185px;}
.x5a_c00260{left:258.039585px;}
.x16_c00260{left:266.766435px;}
.x58_c00260{left:268.746435px;}
.x29_c00260{left:279.770085px;}
.x6b_c00260{left:281.136285px;}
.x10_c00260{left:289.209735px;}
.x42_c00260{left:290.843235px;}
.x5b_c00260{left:291.902535px;}
.x7e_c00260{left:296.580285px;}
.x2f_c00260{left:301.500585px;}
.x79_c00260{left:302.955885px;}
.x17_c00260{left:313.251885px;}
.x76_c00260{left:314.697285px;}
.x20_c00260{left:323.632035px;}
.x71_c00260{left:325.300185px;}
.x30_c00260{left:334.680435px;}
.x4e_c00260{left:336.432735px;}
.x53_c00260{left:346.085235px;}
.x6_c00260{left:356.554485px;}
.x36_c00260{left:357.841485px;}
.x21_c00260{left:367.825635px;}
.x63_c00260{left:369.929385px;}
.x18_c00260{left:378.690885px;}
.x22_c00260{left:389.793735px;}
.x47_c00260{left:391.199535px;}
.x5c_c00260{left:402.049935px;}
.x59_c00260{left:403.980435px;}
.x5e_c00260{left:412.177635px;}
.x48_c00260{left:414.004185px;}
.x7_c00260{left:423.419085px;}
.x54_c00260{left:425.126835px;}
.x23_c00260{left:434.096235px;}
.x37_c00260{left:435.185235px;}
.x7f_c00260{left:436.214835px;}
.x4f_c00260{left:437.907735px;}
.x19_c00260{left:445.124835px;}
.x2a_c00260{left:446.916735px;}
.x8_c00260{left:456.212835px;}
.x55_c00260{left:457.588935px;}
.x38_c00260{left:466.390035px;}
.x64_c00260{left:469.023435px;}
.x31_c00260{left:479.651085px;}
.x77_c00260{left:480.740085px;}
.x2e_c00260{left:486.982035px;}
.x9_c00260{left:488.130435px;}
.x5d_c00260{left:490.590585px;}
.x11_c00260{left:500.297535px;}
.x49_c00260{left:501.742935px;}
.x32_c00260{left:511.746885px;}
.x72_c00260{left:513.459585px;}
.x39_c00260{left:523.216035px;}
.xa_c00260{left:533.338785px;}
.x24_c00260{left:534.502035px;}
.x6c_c00260{left:535.675185px;}
.x5f_c00260{left:546.624585px;}
.x2b_c00260{left:555.089085px;}
.x3a_c00260{left:557.400735px;}
.x50_c00260{left:559.014435px;}
.x12_c00260{left:566.508735px;}
.x56_c00260{left:568.127385px;}
.x73_c00260{left:569.186685px;}
.x3d_c00260{left:578.329335px;}
.x6d_c00260{left:580.145985px;}
.x43_c00260{left:590.154885px;}
.x60_c00260{left:591.273585px;}
.x3e_c00260{left:600.713235px;}
.x1a_c00260{left:602.559585px;}
.x4a_c00260{left:611.038935px;}
.x44_c00260{left:612.266535px;}
.x2c_c00260{left:622.166535px;}
.xb_c00260{left:634.368285px;}
.x13_c00260{left:644.337585px;}
.x6e_c00260{left:645.386985px;}
.x2_c00260{left:655.752285px;}
.x25_c00260{left:667.528335px;}
.x14_c00260{left:676.992735px;}
.x61_c00260{left:678.834135px;}
.x1b_c00260{left:688.456935px;}
.x57_c00260{left:689.615235px;}
.x3b_c00260{left:700.262685px;}
.x65_c00260{left:701.391285px;}
.x4b_c00260{left:702.495135px;}
.x4c_c00260{left:703.950435px;}
.x2d_c00260{left:711.014085px;}
.x67_c00260{left:712.637685px;}
.x74_c00260{left:723.369285px;}
@media print{
.v0_c00260{vertical-align:0.000000pt;}
.lsd_c00260{letter-spacing:-3.548160pt;}
.lsb_c00260{letter-spacing:-2.377760pt;}
.ls5_c00260{letter-spacing:0.000000pt;}
.ls7_c00260{letter-spacing:0.577456pt;}
.ls2_c00260{letter-spacing:1.107357pt;}
.ls3_c00260{letter-spacing:1.165827pt;}
.lsa_c00260{letter-spacing:1.830400pt;}
.lse_c00260{letter-spacing:2.010906pt;}
.lsc_c00260{letter-spacing:2.513632pt;}
.ls4_c00260{letter-spacing:3.396800pt;}
.ls8_c00260{letter-spacing:3.643209pt;}
.ls6_c00260{letter-spacing:3.995209pt;}
.ls1_c00260{letter-spacing:10.462144pt;}
.ls0_c00260{letter-spacing:17.997349pt;}
.ls9_c00260{letter-spacing:44.352176pt;}
.lsf_c00260{letter-spacing:45.619376pt;}
.ws0_c00260{word-spacing:-16.984000pt;}
.ws3_c00260{word-spacing:0.000000pt;}
.ws2_c00260{word-spacing:2.038080pt;}
.ws1_c00260{word-spacing:2.106016pt;}
._c_c00260{margin-left:-8.899616pt;}
._1_c00260{margin-left:-7.812640pt;}
._11_c00260{width:4.415840pt;}
._3_c00260{width:7.065344pt;}
._4_c00260{width:9.646912pt;}
._0_c00260{width:11.005632pt;}
._e_c00260{width:19.022432pt;}
._d_c00260{width:20.245632pt;}
._8_c00260{width:21.535712pt;}
._2_c00260{width:26.495040pt;}
._5_c00260{width:28.409216pt;}
._a_c00260{width:29.532202pt;}
._9_c00260{width:31.454016pt;}
._7_c00260{width:32.812736pt;}
._b_c00260{width:34.628000pt;}
._f_c00260{width:36.413696pt;}
._10_c00260{width:41.101280pt;}
._6_c00260{width:45.992672pt;}
.fs3_c00260{font-size:19.712000pt;}
.fs8_c00260{font-size:25.696000pt;}
.fs5_c00260{font-size:29.216000pt;}
.fs6_c00260{font-size:36.608000pt;}
.fs4_c00260{font-size:44.352176pt;}
.fsa_c00260{font-size:45.619376pt;}
.fs9_c00260{font-size:67.584176pt;}
.fs1_c00260{font-size:67.936000pt;}
.fs0_c00260{font-size:72.864176pt;}
.fs2_c00260{font-size:79.904176pt;}
.fs7_c00260{font-size:101.376000pt;}
.y0_c00260{bottom:0.000000pt;}
.y1_c00260{bottom:68.000000pt;}
.y1f_c00260{bottom:112.381320pt;}
.y1e_c00260{bottom:162.756920pt;}
.y1d_c00260{bottom:169.726520pt;}
.y1c_c00260{bottom:188.100920pt;}
.y1b_c00260{bottom:199.501320pt;}
.y1a_c00260{bottom:228.334520pt;}
.y19_c00260{bottom:256.846520pt;}
.y18_c00260{bottom:256.848368pt;}
.y17_c00260{bottom:286.621320pt;}
.y16_c00260{bottom:318.301320pt;}
.y15_c00260{bottom:348.401720pt;}
.y14_c00260{bottom:377.226120pt;}
.y13_c00260{bottom:407.326520pt;}
.y12_c00260{bottom:437.422520pt;}
.y10_c00260{bottom:466.246920pt;}
.y11_c00260{bottom:469.736120pt;}
.yf_c00260{bottom:484.938120pt;}
.ye_c00260{bottom:496.030520pt;}
.yd_c00260{bottom:524.538120pt;}
.yc_c00260{bottom:552.737720pt;}
.yb_c00260{bottom:581.566520pt;}
.ya_c00260{bottom:610.712120pt;}
.y9_c00260{bottom:667.419320pt;}
.y8_c00260{bottom:683.259320pt;}
.y7_c00260{bottom:698.778120pt;}
.y6_c00260{bottom:728.874120pt;}
.y5_c00260{bottom:759.286920pt;}
.y4_c00260{bottom:788.432520pt;}
.y3_c00260{bottom:819.483320pt;}
.y2_c00260{bottom:954.435720pt;}
.h5_c00260{height:20.559000pt;}
.ha_c00260{height:25.219219pt;}
.h6_c00260{height:29.538549pt;}
.hc_c00260{height:30.382504pt;}
.h7_c00260{height:30.471375pt;}
.h8_c00260{height:35.928750pt;}
.h3_c00260{height:66.675469pt;}
.hb_c00260{height:70.488184pt;}
.h2_c00260{height:71.512204pt;}
.h4_c00260{height:78.421579pt;}
.h9_c00260{height:99.495000pt;}
.h1_c00260{height:986.666667pt;}
.h0_c00260{height:1122.666667pt;}
.w1_c00260{width:678.666667pt;}
.w0_c00260{width:793.333333pt;}
.x0_c00260{left:0.000000pt;}
.x68_c00260{left:44.195840pt;}
.x1_c00260{left:57.333333pt;}
.x3_c00260{left:60.769320pt;}
.x1c_c00260{left:61.882520pt;}
.x6f_c00260{left:62.780120pt;}
.x69_c00260{left:71.804520pt;}
.x26_c00260{left:81.748520pt;}
.x27_c00260{left:90.134920pt;}
.x51_c00260{left:91.551720pt;}
.x78_c00260{left:92.449320pt;}
.x3f_c00260{left:100.457320pt;}
.x70_c00260{left:101.372520pt;}
.x45_c00260{left:109.490520pt;}
.x1d_c00260{left:110.876520pt;}
.x7a_c00260{left:111.782920pt;}
.x33_c00260{left:119.672120pt;}
.x4d_c00260{left:120.750120pt;}
.xc_c00260{left:129.906520pt;}
.x6a_c00260{left:131.164920pt;}
.x34_c00260{left:138.952920pt;}
.x1e_c00260{left:140.013320pt;}
.x7b_c00260{left:142.125320pt;}
.xd_c00260{left:150.155320pt;}
.x7c_c00260{left:154.168120pt;}
.x15_c00260{left:158.620920pt;}
.x40_c00260{left:160.033320pt;}
.x1f_c00260{left:168.877320pt;}
.x62_c00260{left:169.823320pt;}
.x75_c00260{left:171.081720pt;}
.x66_c00260{left:172.560120pt;}
.xe_c00260{left:177.602520pt;}
.x4_c00260{left:179.635320pt;}
.x41_c00260{left:188.334120pt;}
.x52_c00260{left:189.957720pt;}
.x28_c00260{left:199.276920pt;}
.x7d_c00260{left:200.504520pt;}
.xf_c00260{left:208.600520pt;}
.x5_c00260{left:217.475320pt;}
.x3c_c00260{left:218.610520pt;}
.x46_c00260{left:219.820520pt;}
.x35_c00260{left:227.995720pt;}
.x5a_c00260{left:229.368520pt;}
.x16_c00260{left:237.125720pt;}
.x58_c00260{left:238.885720pt;}
.x29_c00260{left:248.684520pt;}
.x6b_c00260{left:249.898920pt;}
.x10_c00260{left:257.075320pt;}
.x42_c00260{left:258.527320pt;}
.x5b_c00260{left:259.468920pt;}
.x7e_c00260{left:263.626920pt;}
.x2f_c00260{left:268.000520pt;}
.x79_c00260{left:269.294120pt;}
.x17_c00260{left:278.446120pt;}
.x76_c00260{left:279.730920pt;}
.x20_c00260{left:287.672920pt;}
.x71_c00260{left:289.155720pt;}
.x30_c00260{left:297.493720pt;}
.x4e_c00260{left:299.051320pt;}
.x53_c00260{left:307.631320pt;}
.x6_c00260{left:316.937320pt;}
.x36_c00260{left:318.081320pt;}
.x21_c00260{left:326.956120pt;}
.x63_c00260{left:328.826120pt;}
.x18_c00260{left:336.614120pt;}
.x22_c00260{left:346.483320pt;}
.x47_c00260{left:347.732920pt;}
.x5c_c00260{left:357.377720pt;}
.x59_c00260{left:359.093720pt;}
.x5e_c00260{left:366.380120pt;}
.x48_c00260{left:368.003720pt;}
.x7_c00260{left:376.372520pt;}
.x54_c00260{left:377.890520pt;}
.x23_c00260{left:385.863320pt;}
.x37_c00260{left:386.831320pt;}
.x7f_c00260{left:387.746520pt;}
.x4f_c00260{left:389.251320pt;}
.x19_c00260{left:395.666520pt;}
.x2a_c00260{left:397.259320pt;}
.x8_c00260{left:405.522520pt;}
.x55_c00260{left:406.745720pt;}
.x38_c00260{left:414.568920pt;}
.x64_c00260{left:416.909720pt;}
.x31_c00260{left:426.356520pt;}
.x77_c00260{left:427.324520pt;}
.x2e_c00260{left:432.872920pt;}
.x9_c00260{left:433.893720pt;}
.x5d_c00260{left:436.080520pt;}
.x11_c00260{left:444.708920pt;}
.x49_c00260{left:445.993720pt;}
.x32_c00260{left:454.886120pt;}
.x72_c00260{left:456.408520pt;}
.x39_c00260{left:465.080920pt;}
.xa_c00260{left:474.078920pt;}
.x24_c00260{left:475.112920pt;}
.x6c_c00260{left:476.155720pt;}
.x5f_c00260{left:485.888520pt;}
.x2b_c00260{left:493.412520pt;}
.x3a_c00260{left:495.467320pt;}
.x50_c00260{left:496.901720pt;}
.x12_c00260{left:503.563320pt;}
.x56_c00260{left:505.002120pt;}
.x73_c00260{left:505.943720pt;}
.x3d_c00260{left:514.070520pt;}
.x6d_c00260{left:515.685320pt;}
.x43_c00260{left:524.582120pt;}
.x60_c00260{left:525.576520pt;}
.x3e_c00260{left:533.967320pt;}
.x1a_c00260{left:535.608520pt;}
.x4a_c00260{left:543.145720pt;}
.x44_c00260{left:544.236920pt;}
.x2c_c00260{left:553.036920pt;}
.xb_c00260{left:563.882920pt;}
.x13_c00260{left:572.744520pt;}
.x6e_c00260{left:573.677320pt;}
.x2_c00260{left:582.890920pt;}
.x25_c00260{left:593.358520pt;}
.x14_c00260{left:601.771320pt;}
.x61_c00260{left:603.408120pt;}
.x1b_c00260{left:611.961720pt;}
.x57_c00260{left:612.991320pt;}
.x3b_c00260{left:622.455720pt;}
.x65_c00260{left:623.458920pt;}
.x4b_c00260{left:624.440120pt;}
.x4c_c00260{left:625.733720pt;}
.x2d_c00260{left:632.012520pt;}
.x67_c00260{left:633.455720pt;}
.x74_c00260{left:642.994920pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_56792e26cde81c691e66d2e7.woff2')format("woff");}.ff1_c00261{font-family:ff1_c00261;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00261;src:url('chunks/assets/font_fa291ae075e39297d6038ad5.woff2')format("woff");}.ff2_c00261{font-family:ff2_c00261;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00261;src:url('chunks/assets/font_3c6e76e2d571f436720da436.woff2')format("woff");}.ff3_c00261{font-family:ff3_c00261;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00261;src:url('chunks/assets/font_3740c1eb870afa4adf031903.woff2')format("woff");}.ff4_c00261{font-family:ff4_c00261;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00261;src:url('chunks/assets/font_bc88b9260fe14176e0354851.woff2')format("woff");}.ff5_c00261{font-family:ff5_c00261;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m77_c00261{transform:matrix(0.060185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060185,0.000000,0.000000,0.250000,0,0);}
.m73_c00261{transform:matrix(0.070653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070653,0.000000,0.000000,0.250000,0,0);}
.m7a_c00261{transform:matrix(0.112638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112638,0.000000,0.000000,0.250000,0,0);}
.m76_c00261{transform:matrix(0.127451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127451,0.000000,0.000000,0.250000,0,0);}
.m75_c00261{transform:matrix(0.128852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128852,0.000000,0.000000,0.250000,0,0);}
.m74_c00261{transform:matrix(0.142157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142157,0.000000,0.000000,0.250000,0,0);}
.m2e_c00261{transform:matrix(0.172201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172201,0.000000,0.000000,0.250000,0,0);}
.m72_c00261{transform:matrix(0.176636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176636,0.000000,0.000000,0.250000,0,0);}
.m9_c00261{transform:matrix(0.197782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197782,0.000000,0.000000,0.250000,0,0);}
.m18_c00261{transform:matrix(0.202303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202303,0.000000,0.000000,0.250000,0,0);}
.m45_c00261{transform:matrix(0.207099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207099,0.000000,0.000000,0.250000,0,0);}
.m7b_c00261{transform:matrix(0.213607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213607,0.000000,0.000000,0.250000,0,0);}
.m7c_c00261{transform:matrix(0.216249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216249,0.000000,0.000000,0.250000,0,0);}
.m70_c00261{transform:matrix(0.228701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228701,0.000000,0.000000,0.250000,0,0);}
.m78_c00261{transform:matrix(0.240016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240016,0.000000,0.000000,0.250000,0,0);}
.m7d_c00261{transform:matrix(0.244516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244516,0.000000,0.000000,0.250000,0,0);}
.m79_c00261{transform:matrix(0.245757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245757,0.000000,0.000000,0.250000,0,0);}
.m0_c00261{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00261{transform:matrix(0.256293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256293,0.000000,0.000000,0.250000,0,0);}
.m33_c00261{transform:matrix(0.256426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256426,0.000000,0.000000,0.250000,0,0);}
.m27_c00261{transform:matrix(0.257181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257181,0.000000,0.000000,0.250000,0,0);}
.m23_c00261{transform:matrix(0.259541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259541,0.000000,0.000000,0.250000,0,0);}
.m5e_c00261{transform:matrix(0.260489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260489,0.000000,0.000000,0.250000,0,0);}
.m51_c00261{transform:matrix(0.260539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260539,0.000000,0.000000,0.250000,0,0);}
.m34_c00261{transform:matrix(0.262867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262867,0.000000,0.000000,0.250000,0,0);}
.m46_c00261{transform:matrix(0.264764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264764,0.000000,0.000000,0.250000,0,0);}
.m6f_c00261{transform:matrix(0.265286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265286,0.000000,0.000000,0.250000,0,0);}
.m5_c00261{transform:matrix(0.265325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265325,0.000000,0.000000,0.250000,0,0);}
.m38_c00261{transform:matrix(0.268416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268416,0.000000,0.000000,0.250000,0,0);}
.m1_c00261{transform:matrix(0.269327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269327,0.000000,0.000000,0.250000,0,0);}
.m42_c00261{transform:matrix(0.269411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269411,0.000000,0.000000,0.250000,0,0);}
.m2b_c00261{transform:matrix(0.270046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270046,0.000000,0.000000,0.250000,0,0);}
.m31_c00261{transform:matrix(0.270092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270092,0.000000,0.000000,0.250000,0,0);}
.m5d_c00261{transform:matrix(0.270153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270153,0.000000,0.000000,0.250000,0,0);}
.m5b_c00261{transform:matrix(0.270827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270827,0.000000,0.000000,0.250000,0,0);}
.m22_c00261{transform:matrix(0.271182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271182,0.000000,0.000000,0.250000,0,0);}
.m20_c00261{transform:matrix(0.273819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273819,0.000000,0.000000,0.250000,0,0);}
.m3e_c00261{transform:matrix(0.274303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274303,0.000000,0.000000,0.250000,0,0);}
.m1d_c00261{transform:matrix(0.274839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274839,0.000000,0.000000,0.250000,0,0);}
.m13_c00261{transform:matrix(0.275579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275579,0.000000,0.000000,0.250000,0,0);}
.m1c_c00261{transform:matrix(0.278623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278623,0.000000,0.000000,0.250000,0,0);}
.m57_c00261{transform:matrix(0.280680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280680,0.000000,0.000000,0.250000,0,0);}
.m56_c00261{transform:matrix(0.280827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280827,0.000000,0.000000,0.250000,0,0);}
.m43_c00261{transform:matrix(0.281503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281503,0.000000,0.000000,0.250000,0,0);}
.m26_c00261{transform:matrix(0.284367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284367,0.000000,0.000000,0.250000,0,0);}
.m1b_c00261{transform:matrix(0.285081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285081,0.000000,0.000000,0.250000,0,0);}
.m52_c00261{transform:matrix(0.285805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285805,0.000000,0.000000,0.250000,0,0);}
.m25_c00261{transform:matrix(0.286532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286532,0.000000,0.000000,0.250000,0,0);}
.m6e_c00261{transform:matrix(0.287380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287380,0.000000,0.000000,0.250000,0,0);}
.m21_c00261{transform:matrix(0.287668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287668,0.000000,0.000000,0.250000,0,0);}
.m11_c00261{transform:matrix(0.287964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287964,0.000000,0.000000,0.250000,0,0);}
.m39_c00261{transform:matrix(0.288455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288455,0.000000,0.000000,0.250000,0,0);}
.m6d_c00261{transform:matrix(0.289425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289425,0.000000,0.000000,0.250000,0,0);}
.m8_c00261{transform:matrix(0.289841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289841,0.000000,0.000000,0.250000,0,0);}
.m65_c00261{transform:matrix(0.290439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290439,0.000000,0.000000,0.250000,0,0);}
.m4c_c00261{transform:matrix(0.290876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290876,0.000000,0.000000,0.250000,0,0);}
.m15_c00261{transform:matrix(0.292560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292560,0.000000,0.000000,0.250000,0,0);}
.m32_c00261{transform:matrix(0.292737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292737,0.000000,0.000000,0.250000,0,0);}
.mb_c00261{transform:matrix(0.293338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293338,0.000000,0.000000,0.250000,0,0);}
.m36_c00261{transform:matrix(0.293856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293856,0.000000,0.000000,0.250000,0,0);}
.m3f_c00261{transform:matrix(0.295246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295246,0.000000,0.000000,0.250000,0,0);}
.m71_c00261{transform:matrix(0.295694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295694,0.000000,0.000000,0.250000,0,0);}
.m5c_c00261{transform:matrix(0.296191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296191,0.000000,0.000000,0.250000,0,0);}
.m3_c00261{transform:matrix(0.297734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297734,0.000000,0.000000,0.250000,0,0);}
.m35_c00261{transform:matrix(0.299832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299832,0.000000,0.000000,0.250000,0,0);}
.m41_c00261{transform:matrix(0.300214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300214,0.000000,0.000000,0.250000,0,0);}
.m12_c00261{transform:matrix(0.300605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300605,0.000000,0.000000,0.250000,0,0);}
.m7_c00261{transform:matrix(0.300614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300614,0.000000,0.000000,0.250000,0,0);}
.m28_c00261{transform:matrix(0.301412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301412,0.000000,0.000000,0.250000,0,0);}
.m16_c00261{transform:matrix(0.301521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301521,0.000000,0.000000,0.250000,0,0);}
.m4d_c00261{transform:matrix(0.302058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302058,0.000000,0.000000,0.250000,0,0);}
.m62_c00261{transform:matrix(0.303442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303442,0.000000,0.000000,0.250000,0,0);}
.md_c00261{transform:matrix(0.305342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305342,0.000000,0.000000,0.250000,0,0);}
.m68_c00261{transform:matrix(0.305801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305801,0.000000,0.000000,0.250000,0,0);}
.m6c_c00261{transform:matrix(0.306135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306135,0.000000,0.000000,0.250000,0,0);}
.mf_c00261{transform:matrix(0.308108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308108,0.000000,0.000000,0.250000,0,0);}
.m55_c00261{transform:matrix(0.308495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308495,0.000000,0.000000,0.250000,0,0);}
.m59_c00261{transform:matrix(0.308625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308625,0.000000,0.000000,0.250000,0,0);}
.m44_c00261{transform:matrix(0.308758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308758,0.000000,0.000000,0.250000,0,0);}
.m4_c00261{transform:matrix(0.308981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308981,0.000000,0.000000,0.250000,0,0);}
.m49_c00261{transform:matrix(0.311052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311052,0.000000,0.000000,0.250000,0,0);}
.me_c00261{transform:matrix(0.311760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311760,0.000000,0.000000,0.250000,0,0);}
.m2_c00261{transform:matrix(0.312479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312479,0.000000,0.000000,0.250000,0,0);}
.m1a_c00261{transform:matrix(0.314466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314466,0.000000,0.000000,0.250000,0,0);}
.m60_c00261{transform:matrix(0.316745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316745,0.000000,0.000000,0.250000,0,0);}
.m6b_c00261{transform:matrix(0.317731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317731,0.000000,0.000000,0.250000,0,0);}
.m53_c00261{transform:matrix(0.317955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317955,0.000000,0.000000,0.250000,0,0);}
.m58_c00261{transform:matrix(0.319553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319553,0.000000,0.000000,0.250000,0,0);}
.m6a_c00261{transform:matrix(0.320103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320103,0.000000,0.000000,0.250000,0,0);}
.m64_c00261{transform:matrix(0.320831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320831,0.000000,0.000000,0.250000,0,0);}
.m4f_c00261{transform:matrix(0.321687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321687,0.000000,0.000000,0.250000,0,0);}
.m6_c00261{transform:matrix(0.322369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322369,0.000000,0.000000,0.250000,0,0);}
.m66_c00261{transform:matrix(0.325991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325991,0.000000,0.000000,0.250000,0,0);}
.m10_c00261{transform:matrix(0.327540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327540,0.000000,0.000000,0.250000,0,0);}
.m1e_c00261{transform:matrix(0.327561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327561,0.000000,0.000000,0.250000,0,0);}
.m2a_c00261{transform:matrix(0.327947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327947,0.000000,0.000000,0.250000,0,0);}
.m47_c00261{transform:matrix(0.330473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330473,0.000000,0.000000,0.250000,0,0);}
.m5a_c00261{transform:matrix(0.331357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331357,0.000000,0.000000,0.250000,0,0);}
.m3b_c00261{transform:matrix(0.332040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332040,0.000000,0.000000,0.250000,0,0);}
.m14_c00261{transform:matrix(0.332262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332262,0.000000,0.000000,0.250000,0,0);}
.m4b_c00261{transform:matrix(0.332596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332596,0.000000,0.000000,0.250000,0,0);}
.m2c_c00261{transform:matrix(0.332745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332745,0.000000,0.000000,0.250000,0,0);}
.m3c_c00261{transform:matrix(0.332903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332903,0.000000,0.000000,0.250000,0,0);}
.m24_c00261{transform:matrix(0.332971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332971,0.000000,0.000000,0.250000,0,0);}
.m30_c00261{transform:matrix(0.334731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334731,0.000000,0.000000,0.250000,0,0);}
.m69_c00261{transform:matrix(0.335417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335417,0.000000,0.000000,0.250000,0,0);}
.m63_c00261{transform:matrix(0.335935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335935,0.000000,0.000000,0.250000,0,0);}
.m2f_c00261{transform:matrix(0.337994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337994,0.000000,0.000000,0.250000,0,0);}
.m48_c00261{transform:matrix(0.338482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338482,0.000000,0.000000,0.250000,0,0);}
.m3a_c00261{transform:matrix(0.340192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340192,0.000000,0.000000,0.250000,0,0);}
.m54_c00261{transform:matrix(0.342744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342744,0.000000,0.000000,0.250000,0,0);}
.m37_c00261{transform:matrix(0.342901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342901,0.000000,0.000000,0.250000,0,0);}
.m4e_c00261{transform:matrix(0.344109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344109,0.000000,0.000000,0.250000,0,0);}
.mc_c00261{transform:matrix(0.345147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345147,0.000000,0.000000,0.250000,0,0);}
.m3d_c00261{transform:matrix(0.346174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346174,0.000000,0.000000,0.250000,0,0);}
.m61_c00261{transform:matrix(0.348976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348976,0.000000,0.000000,0.250000,0,0);}
.m1f_c00261{transform:matrix(0.351457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351457,0.000000,0.000000,0.250000,0,0);}
.m19_c00261{transform:matrix(0.353245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353245,0.000000,0.000000,0.250000,0,0);}
.m17_c00261{transform:matrix(0.353538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353538,0.000000,0.000000,0.250000,0,0);}
.m50_c00261{transform:matrix(0.355012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355012,0.000000,0.000000,0.250000,0,0);}
.m29_c00261{transform:matrix(0.356927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356927,0.000000,0.000000,0.250000,0,0);}
.m40_c00261{transform:matrix(0.358730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358730,0.000000,0.000000,0.250000,0,0);}
.m2d_c00261{transform:matrix(0.359282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359282,0.000000,0.000000,0.250000,0,0);}
.m67_c00261{transform:matrix(0.360983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360983,0.000000,0.000000,0.250000,0,0);}
.ma_c00261{transform:matrix(0.363048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363048,0.000000,0.000000,0.250000,0,0);}
.m5f_c00261{transform:matrix(0.371403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371403,0.000000,0.000000,0.250000,0,0);}
.v0_c00261{vertical-align:0.000000px;}
.ls5_c00261{letter-spacing:-2.668050px;}
.lse_c00261{letter-spacing:-2.432430px;}
.lsa_c00261{letter-spacing:-1.975050px;}
.lsd_c00261{letter-spacing:-1.223165px;}
.ls2_c00261{letter-spacing:0.000000px;}
.ls6_c00261{letter-spacing:0.059875px;}
.ls1_c00261{letter-spacing:1.481911px;}
.ls0_c00261{letter-spacing:3.468465px;}
.ls9_c00261{letter-spacing:3.494700px;}
.ls7_c00261{letter-spacing:3.653110px;}
.ls4_c00261{letter-spacing:3.811500px;}
.ls3_c00261{letter-spacing:3.999610px;}
.ls8_c00261{letter-spacing:54.172998px;}
.lsf_c00261{letter-spacing:59.875398px;}
.lsb_c00261{letter-spacing:65.577798px;}
.lsc_c00261{letter-spacing:72.705798px;}
.sc__c00261{text-shadow:none;}
.sc0_c00261{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00261{-webkit-text-stroke:0px transparent;}
.sc0_c00261{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00261{word-spacing:-22.525965px;}
.ws1_c00261{word-spacing:-19.057500px;}
.ws3_c00261{word-spacing:-16.151335px;}
.ws4_c00261{word-spacing:0.000000px;}
.ws2_c00261{word-spacing:3.354120px;}
._c_c00261{margin-left:-12.301146px;}
._1_c00261{margin-left:-6.555780px;}
._0_c00261{margin-left:-3.861099px;}
._b_c00261{width:4.698065px;}
._2_c00261{width:6.784470px;}
._3_c00261{width:8.842680px;}
._8_c00261{width:10.443510px;}
._a_c00261{width:11.739420px;}
._5_c00261{width:13.873860px;}
._4_c00261{width:22.869000px;}
._9_c00261{width:29.847866px;}
._7_c00261{width:31.899780px;}
._d_c00261{width:39.619800px;}
._6_c00261{width:49.622760px;}
.fc0_c00261{color:transparent;}
.fs15_c00261{font-size:22.176000px;}
.fs11_c00261{font-size:22.374000px;}
.fs0_c00261{font-size:27.720000px;}
.fs9_c00261{font-size:33.264000px;}
.fs14_c00261{font-size:39.600000px;}
.fsf_c00261{font-size:50.688000px;}
.fs6_c00261{font-size:54.172998px;}
.fs13_c00261{font-size:55.440000px;}
.fsa_c00261{font-size:56.430000px;}
.fs10_c00261{font-size:59.875398px;}
.fsb_c00261{font-size:65.577798px;}
.fs4_c00261{font-size:66.528000px;}
.fse_c00261{font-size:67.320000px;}
.fsd_c00261{font-size:69.498000px;}
.fs8_c00261{font-size:69.894000px;}
.fsc_c00261{font-size:72.705798px;}
.fs12_c00261{font-size:72.864000px;}
.fs5_c00261{font-size:73.062198px;}
.fs3_c00261{font-size:76.230000px;}
.fs2_c00261{font-size:77.022198px;}
.fs7_c00261{font-size:78.408000px;}
.fs1_c00261{font-size:79.992198px;}
.y0_c00261{bottom:0.000000px;}
.y1c_c00261{bottom:5.257935px;}
.y2_c00261{bottom:58.712985px;}
.y1_c00261{bottom:76.500000px;}
.y21_c00261{bottom:87.229935px;}
.y1b_c00261{bottom:145.679535px;}
.y1f_c00261{bottom:151.738335px;}
.y1e_c00261{bottom:153.520335px;}
.y1d_c00261{bottom:177.399135px;}
.y1a_c00261{bottom:209.826585px;}
.y19_c00261{bottom:241.907535px;}
.y18_c00261{bottom:276.116985px;}
.y17_c00261{bottom:311.400585px;}
.y16_c00261{bottom:327.443535px;}
.y20_c00261{bottom:332.789535px;}
.y14_c00261{bottom:404.781593px;}
.y15_c00261{bottom:404.782335px;}
.y13_c00261{bottom:437.922585px;}
.y12_c00261{bottom:502.430985px;}
.y11_c00261{bottom:534.506985px;}
.y10_c00261{bottom:567.295785px;}
.yf_c00261{bottom:600.802335px;}
.ye_c00261{bottom:633.591135px;}
.yd_c00261{bottom:666.379935px;}
.yc_c00261{bottom:698.455935px;}
.yb_c00261{bottom:731.601135px;}
.ya_c00261{bottom:763.677135px;}
.y9_c00261{bottom:827.111385px;}
.y7_c00261{bottom:860.614470px;}
.y8_c00261{bottom:860.617935px;}
.y6_c00261{bottom:893.050335px;}
.y5_c00261{bottom:915.859935px;}
.y4_c00261{bottom:926.190585px;}
.y3_c00261{bottom:1078.016985px;}
.h12_c00261{height:21.958857px;}
.h16_c00261{height:23.128875px;}
.h2_c00261{height:28.911094px;}
.hb_c00261{height:34.693313px;}
.h8_c00261{height:36.079217px;}
.h11_c00261{height:39.877015px;}
.h15_c00261{height:41.301563px;}
.hd_c00261{height:43.674813px;}
.he_c00261{height:48.422061px;}
.hc_c00261{height:55.355405px;}
.h14_c00261{height:57.822188px;}
.h6_c00261{height:65.293594px;}
.hf_c00261{height:68.208486px;}
.ha_c00261{height:68.597139px;}
.h10_c00261{height:70.212656px;}
.h13_c00261{height:71.512031px;}
.h7_c00261{height:73.632996px;}
.h5_c00261{height:74.815576px;}
.h9_c00261{height:76.953164px;}
.h4_c00261{height:80.331746px;}
.h3_c00261{height:80.617137px;}
.h1_c00261{height:1110.000000px;}
.h0_c00261{height:1263.000000px;}
.w1_c00261{width:763.500000px;}
.w0_c00261{width:892.500000px;}
.x0_c00261{left:0.000000px;}
.x2_c00261{left:61.415700px;}
.x1_c00261{left:64.500000px;}
.x5_c00261{left:68.182350px;}
.x25_c00261{left:69.494100px;}
.x41_c00261{left:79.072350px;}
.x30_c00261{left:90.343500px;}
.x1c_c00261{left:100.689000px;}
.x26_c00261{left:101.931450px;}
.x13_c00261{left:124.043100px;}
.x31_c00261{left:135.378600px;}
.x4d_c00261{left:145.437000px;}
.x37_c00261{left:157.079400px;}
.x6_c00261{left:168.469350px;}
.x27_c00261{left:179.646450px;}
.x32_c00261{left:189.947400px;}
.x14_c00261{left:190.977000px;}
.x3c_c00261{left:201.193800px;}
.x1e_c00261{left:211.217550px;}
.x28_c00261{left:223.384650px;}
.x7_c00261{left:233.616300px;}
.x52_c00261{left:234.913200px;}
.x29_c00261{left:242.214450px;}
.x45_c00261{left:246.209100px;}
.x51_c00261{left:255.797250px;}
.x38_c00261{left:256.980300px;}
.x15_c00261{left:266.806050px;}
.x42_c00261{left:268.033650px;}
.x4f_c00261{left:274.300350px;}
.x33_c00261{left:278.240550px;}
.x2a_c00261{left:279.438450px;}
.x39_c00261{left:290.105700px;}
.x8_c00261{left:298.491000px;}
.x43_c00261{left:299.951250px;}
.x48_c00261{left:301.352100px;}
.x16_c00261{left:313.246950px;}
.x4e_c00261{left:314.439900px;}
.x53_c00261{left:321.340200px;}
.x2b_c00261{left:323.077650px;}
.x50_c00261{left:328.116750px;}
.x1f_c00261{left:334.096350px;}
.x9_c00261{left:345.392250px;}
.x54_c00261{left:348.337500px;}
.x46_c00261{left:355.500150px;}
.x20_c00261{left:367.434600px;}
.x4a_c00261{left:368.474100px;}
.x3d_c00261{left:377.973150px;}
.x34_c00261{left:389.714550px;}
.x2c_c00261{left:412.192500px;}
.xa_c00261{left:413.375550px;}
.x21_c00261{left:423.107250px;}
.x17_c00261{left:434.111100px;}
.xb_c00261{left:445.124850px;}
.x3a_c00261{left:455.311950px;}
.x2d_c00261{left:456.811800px;}
.x18_c00261{left:468.008700px;}
.x1d_c00261{left:469.850100px;}
.x35_c00261{left:476.992950px;}
.xc_c00261{left:478.180950px;}
.x2e_c00261{left:490.056000px;}
.x47_c00261{left:499.535250px;}
.x19_c00261{left:501.099450px;}
.x3e_c00261{left:510.232200px;}
.x22_c00261{left:511.806300px;}
.x44_c00261{left:522.988350px;}
.xd_c00261{left:533.947650px;}
.x3f_c00261{left:544.040700px;}
.xe_c00261{left:545.629650px;}
.x1a_c00261{left:567.053250px;}
.xf_c00261{left:578.814450px;}
.x10_c00261{left:590.194500px;}
.x4b_c00261{left:600.361800px;}
.x3b_c00261{left:610.905300px;}
.x40_c00261{left:622.310100px;}
.x55_c00261{left:627.982800px;}
.x23_c00261{left:633.284250px;}
.x11_c00261{left:644.926650px;}
.x3_c00261{left:656.202750px;}
.x2f_c00261{left:666.003750px;}
.x12_c00261{left:677.408550px;}
.x49_c00261{left:688.105500px;}
.x1b_c00261{left:689.313300px;}
.x24_c00261{left:699.782550px;}
.x4c_c00261{left:701.059650px;}
.x4_c00261{left:705.831450px;}
.x36_c00261{left:708.697500px;}
.x56_c00261{left:751.406100px;}
.x57_c00261{left:753.569250px;}
@media print{
.v0_c00261{vertical-align:0.000000pt;}
.ls5_c00261{letter-spacing:-2.371600pt;}
.lse_c00261{letter-spacing:-2.162160pt;}
.lsa_c00261{letter-spacing:-1.755600pt;}
.lsd_c00261{letter-spacing:-1.087258pt;}
.ls2_c00261{letter-spacing:0.000000pt;}
.ls6_c00261{letter-spacing:0.053222pt;}
.ls1_c00261{letter-spacing:1.317254pt;}
.ls0_c00261{letter-spacing:3.083080pt;}
.ls9_c00261{letter-spacing:3.106400pt;}
.ls7_c00261{letter-spacing:3.247209pt;}
.ls4_c00261{letter-spacing:3.388000pt;}
.ls3_c00261{letter-spacing:3.555209pt;}
.ls8_c00261{letter-spacing:48.153776pt;}
.lsf_c00261{letter-spacing:53.222576pt;}
.lsb_c00261{letter-spacing:58.291376pt;}
.lsc_c00261{letter-spacing:64.627376pt;}
.ws0_c00261{word-spacing:-20.023080pt;}
.ws1_c00261{word-spacing:-16.940000pt;}
.ws3_c00261{word-spacing:-14.356742pt;}
.ws4_c00261{word-spacing:0.000000pt;}
.ws2_c00261{word-spacing:2.981440pt;}
._c_c00261{margin-left:-10.934352pt;}
._1_c00261{margin-left:-5.827360pt;}
._0_c00261{margin-left:-3.432088pt;}
._b_c00261{width:4.176058pt;}
._2_c00261{width:6.030640pt;}
._3_c00261{width:7.860160pt;}
._8_c00261{width:9.283120pt;}
._a_c00261{width:10.435040pt;}
._5_c00261{width:12.332320pt;}
._4_c00261{width:20.328000pt;}
._9_c00261{width:26.531437pt;}
._7_c00261{width:28.355360pt;}
._d_c00261{width:35.217600pt;}
._6_c00261{width:44.109120pt;}
.fs15_c00261{font-size:19.712000pt;}
.fs11_c00261{font-size:19.888000pt;}
.fs0_c00261{font-size:24.640000pt;}
.fs9_c00261{font-size:29.568000pt;}
.fs14_c00261{font-size:35.200000pt;}
.fsf_c00261{font-size:45.056000pt;}
.fs6_c00261{font-size:48.153776pt;}
.fs13_c00261{font-size:49.280000pt;}
.fsa_c00261{font-size:50.160000pt;}
.fs10_c00261{font-size:53.222576pt;}
.fsb_c00261{font-size:58.291376pt;}
.fs4_c00261{font-size:59.136000pt;}
.fse_c00261{font-size:59.840000pt;}
.fsd_c00261{font-size:61.776000pt;}
.fs8_c00261{font-size:62.128000pt;}
.fsc_c00261{font-size:64.627376pt;}
.fs12_c00261{font-size:64.768000pt;}
.fs5_c00261{font-size:64.944176pt;}
.fs3_c00261{font-size:67.760000pt;}
.fs2_c00261{font-size:68.464176pt;}
.fs7_c00261{font-size:69.696000pt;}
.fs1_c00261{font-size:71.104176pt;}
.y0_c00261{bottom:0.000000pt;}
.y1c_c00261{bottom:4.673720pt;}
.y2_c00261{bottom:52.189320pt;}
.y1_c00261{bottom:68.000000pt;}
.y21_c00261{bottom:77.537720pt;}
.y1b_c00261{bottom:129.492920pt;}
.y1f_c00261{bottom:134.878520pt;}
.y1e_c00261{bottom:136.462520pt;}
.y1d_c00261{bottom:157.688120pt;}
.y1a_c00261{bottom:186.512520pt;}
.y19_c00261{bottom:215.028920pt;}
.y18_c00261{bottom:245.437320pt;}
.y17_c00261{bottom:276.800520pt;}
.y16_c00261{bottom:291.060920pt;}
.y20_c00261{bottom:295.812920pt;}
.y14_c00261{bottom:359.805860pt;}
.y15_c00261{bottom:359.806520pt;}
.y13_c00261{bottom:389.264520pt;}
.y12_c00261{bottom:446.605320pt;}
.y11_c00261{bottom:475.117320pt;}
.y10_c00261{bottom:504.262920pt;}
.yf_c00261{bottom:534.046520pt;}
.ye_c00261{bottom:563.192120pt;}
.yd_c00261{bottom:592.337720pt;}
.yc_c00261{bottom:620.849720pt;}
.yb_c00261{bottom:650.312120pt;}
.ya_c00261{bottom:678.824120pt;}
.y9_c00261{bottom:735.210120pt;}
.y7_c00261{bottom:764.990640pt;}
.y8_c00261{bottom:764.993720pt;}
.y6_c00261{bottom:793.822520pt;}
.y5_c00261{bottom:814.097720pt;}
.y4_c00261{bottom:823.280520pt;}
.y3_c00261{bottom:958.237320pt;}
.h12_c00261{height:19.518984pt;}
.h16_c00261{height:20.559000pt;}
.h2_c00261{height:25.698750pt;}
.hb_c00261{height:30.838500pt;}
.h8_c00261{height:32.070415pt;}
.h11_c00261{height:35.446236pt;}
.h15_c00261{height:36.712500pt;}
.hd_c00261{height:38.822056pt;}
.he_c00261{height:43.041832pt;}
.hc_c00261{height:49.204805pt;}
.h14_c00261{height:51.397500pt;}
.h6_c00261{height:58.038750pt;}
.hf_c00261{height:60.629766pt;}
.ha_c00261{height:60.975234pt;}
.h10_c00261{height:62.411250pt;}
.h13_c00261{height:63.566250pt;}
.h7_c00261{height:65.451552pt;}
.h5_c00261{height:66.502734pt;}
.h9_c00261{height:68.402813pt;}
.h4_c00261{height:71.405996pt;}
.h3_c00261{height:71.659677pt;}
.h1_c00261{height:986.666667pt;}
.h0_c00261{height:1122.666667pt;}
.w1_c00261{width:678.666667pt;}
.w0_c00261{width:793.333333pt;}
.x0_c00261{left:0.000000pt;}
.x2_c00261{left:54.591733pt;}
.x1_c00261{left:57.333333pt;}
.x5_c00261{left:60.606533pt;}
.x25_c00261{left:61.772533pt;}
.x41_c00261{left:70.286533pt;}
.x30_c00261{left:80.305333pt;}
.x1c_c00261{left:89.501333pt;}
.x26_c00261{left:90.605733pt;}
.x13_c00261{left:110.260533pt;}
.x31_c00261{left:120.336533pt;}
.x4d_c00261{left:129.277333pt;}
.x37_c00261{left:139.626133pt;}
.x6_c00261{left:149.750533pt;}
.x27_c00261{left:159.685733pt;}
.x32_c00261{left:168.842133pt;}
.x14_c00261{left:169.757333pt;}
.x3c_c00261{left:178.838933pt;}
.x1e_c00261{left:187.748933pt;}
.x28_c00261{left:198.564133pt;}
.x7_c00261{left:207.658933pt;}
.x52_c00261{left:208.811733pt;}
.x29_c00261{left:215.301733pt;}
.x45_c00261{left:218.852533pt;}
.x51_c00261{left:227.375333pt;}
.x38_c00261{left:228.426933pt;}
.x15_c00261{left:237.160933pt;}
.x42_c00261{left:238.252133pt;}
.x4f_c00261{left:243.822533pt;}
.x33_c00261{left:247.324933pt;}
.x2a_c00261{left:248.389733pt;}
.x39_c00261{left:257.871733pt;}
.x8_c00261{left:265.325333pt;}
.x43_c00261{left:266.623333pt;}
.x48_c00261{left:267.868533pt;}
.x16_c00261{left:278.441733pt;}
.x4e_c00261{left:279.502133pt;}
.x53_c00261{left:285.635733pt;}
.x2b_c00261{left:287.180133pt;}
.x50_c00261{left:291.659333pt;}
.x1f_c00261{left:296.974533pt;}
.x9_c00261{left:307.015333pt;}
.x54_c00261{left:309.633333pt;}
.x46_c00261{left:316.000133pt;}
.x20_c00261{left:326.608533pt;}
.x4a_c00261{left:327.532533pt;}
.x3d_c00261{left:335.976133pt;}
.x34_c00261{left:346.412933pt;}
.x2c_c00261{left:366.393333pt;}
.xa_c00261{left:367.444933pt;}
.x21_c00261{left:376.095333pt;}
.x17_c00261{left:385.876533pt;}
.xb_c00261{left:395.666533pt;}
.x3a_c00261{left:404.721733pt;}
.x2d_c00261{left:406.054933pt;}
.x18_c00261{left:416.007733pt;}
.x1d_c00261{left:417.644533pt;}
.x35_c00261{left:423.993733pt;}
.xc_c00261{left:425.049733pt;}
.x2e_c00261{left:435.605333pt;}
.x47_c00261{left:444.031333pt;}
.x19_c00261{left:445.421733pt;}
.x3e_c00261{left:453.539733pt;}
.x22_c00261{left:454.938933pt;}
.x44_c00261{left:464.878533pt;}
.xd_c00261{left:474.620133pt;}
.x3f_c00261{left:483.591733pt;}
.xe_c00261{left:485.004133pt;}
.x1a_c00261{left:504.047333pt;}
.xf_c00261{left:514.501733pt;}
.x10_c00261{left:524.617333pt;}
.x4b_c00261{left:533.654933pt;}
.x3b_c00261{left:543.026933pt;}
.x40_c00261{left:553.164533pt;}
.x55_c00261{left:558.206933pt;}
.x23_c00261{left:562.919333pt;}
.x11_c00261{left:573.268133pt;}
.x3_c00261{left:583.291333pt;}
.x2f_c00261{left:592.003333pt;}
.x12_c00261{left:602.140933pt;}
.x49_c00261{left:611.649333pt;}
.x1b_c00261{left:612.722933pt;}
.x24_c00261{left:622.028933pt;}
.x4c_c00261{left:623.164133pt;}
.x4_c00261{left:627.405733pt;}
.x36_c00261{left:629.953333pt;}
.x56_c00261{left:667.916533pt;}
.x57_c00261{left:669.839333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9eb1d0d2bf7d705d528e1ab3.woff2')format("woff");}.ff1_c00262{font-family:ff1_c00262;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00262;src:url('chunks/assets/font_bb8b808f16017323587774ba.woff2')format("woff");}.ff2_c00262{font-family:ff2_c00262;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00262;src:url('chunks/assets/font_0f1bf5117efaaf21b1e60789.woff2')format("woff");}.ff3_c00262{font-family:ff3_c00262;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00262;src:url('chunks/assets/font_128e4fe767ba4e6cbde3c235.woff2')format("woff");}.ff4_c00262{font-family:ff4_c00262;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m79_c00262{transform:matrix(0.042858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042858,0.000000,0.000000,0.250000,0,0);}
.m7a_c00262{transform:matrix(0.050001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050001,0.000000,0.000000,0.250000,0,0);}
.m1c_c00262{transform:matrix(0.078572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078572,0.000000,0.000000,0.250000,0,0);}
.m41_c00262{transform:matrix(0.088882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088882,0.000000,0.000000,0.250000,0,0);}
.m1b_c00262{transform:matrix(0.121429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121429,0.000000,0.000000,0.250000,0,0);}
.m2_c00262{transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);}
.ma1_c00262{transform:matrix(0.127451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127451,0.000000,0.000000,0.250000,0,0);}
.m92_c00262{transform:matrix(0.129774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129774,0.000000,0.000000,0.250000,0,0);}
.ma4_c00262{transform:matrix(0.137255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137255,0.000000,0.000000,0.250000,0,0);}
.ma3_c00262{transform:matrix(0.139706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139706,0.000000,0.000000,0.250000,0,0);}
.ma5_c00262{transform:matrix(0.142157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142157,0.000000,0.000000,0.250000,0,0);}
.ma2_c00262{transform:matrix(0.147058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147058,0.000000,0.000000,0.250000,0,0);}
.m1d_c00262{transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);}
.mc8_c00262{transform:matrix(0.182810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182810,0.000000,0.000000,0.250000,0,0);}
.m78_c00262{transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);}
.ma6_c00262{transform:matrix(0.188726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188726,0.000000,0.000000,0.250000,0,0);}
.m1a_c00262{transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);}
.m5_c00262{transform:matrix(0.209657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209657,0.000000,0.000000,0.250000,0,0);}
.m7b_c00262{transform:matrix(0.212499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212499,0.000000,0.000000,0.250000,0,0);}
.m77_c00262{transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);}
.maf_c00262{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);}
.md9_c00262{transform:matrix(0.219998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219998,0.000000,0.000000,0.250000,0,0);}
.m32_c00262{transform:matrix(0.226673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226673,0.000000,0.000000,0.250000,0,0);}
.m7_c00262{transform:matrix(0.232753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232753,0.000000,0.000000,0.250000,0,0);}
.m9a_c00262{transform:matrix(0.242938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242938,0.000000,0.000000,0.250000,0,0);}
.mb4_c00262{transform:matrix(0.245236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245236,0.000000,0.000000,0.250000,0,0);}
.mbb_c00262{transform:matrix(0.247521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247521,0.000000,0.000000,0.250000,0,0);}
.m0_c00262{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m75_c00262{transform:matrix(0.250137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250137,0.000000,0.000000,0.250000,0,0);}
.md1_c00262{transform:matrix(0.251506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251506,0.000000,0.000000,0.250000,0,0);}
.m59_c00262{transform:matrix(0.251725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251725,0.000000,0.000000,0.250000,0,0);}
.m91_c00262{transform:matrix(0.253561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253561,0.000000,0.000000,0.250000,0,0);}
.m61_c00262{transform:matrix(0.254604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254604,0.000000,0.000000,0.250000,0,0);}
.m89_c00262{transform:matrix(0.254683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254683,0.000000,0.000000,0.250000,0,0);}
.mb1_c00262{transform:matrix(0.255351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255351,0.000000,0.000000,0.250000,0,0);}
.m9e_c00262{transform:matrix(0.255878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255878,0.000000,0.000000,0.250000,0,0);}
.m90_c00262{transform:matrix(0.256805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256805,0.000000,0.000000,0.250000,0,0);}
.mbd_c00262{transform:matrix(0.259071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259071,0.000000,0.000000,0.250000,0,0);}
.m62_c00262{transform:matrix(0.259368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259368,0.000000,0.000000,0.250000,0,0);}
.m70_c00262{transform:matrix(0.259488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259488,0.000000,0.000000,0.250000,0,0);}
.m68_c00262{transform:matrix(0.260790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260790,0.000000,0.000000,0.250000,0,0);}
.m36_c00262{transform:matrix(0.262839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262839,0.000000,0.000000,0.250000,0,0);}
.m5e_c00262{transform:matrix(0.262845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262845,0.000000,0.000000,0.250000,0,0);}
.m6c_c00262{transform:matrix(0.264343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264343,0.000000,0.000000,0.250000,0,0);}
.m49_c00262{transform:matrix(0.264613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264613,0.000000,0.000000,0.250000,0,0);}
.m23_c00262{transform:matrix(0.265341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265341,0.000000,0.000000,0.250000,0,0);}
.md2_c00262{transform:matrix(0.266009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266009,0.000000,0.000000,0.250000,0,0);}
.m6f_c00262{transform:matrix(0.266075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266075,0.000000,0.000000,0.250000,0,0);}
.mcb_c00262{transform:matrix(0.266632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266632,0.000000,0.000000,0.250000,0,0);}
.m33_c00262{transform:matrix(0.267405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267405,0.000000,0.000000,0.250000,0,0);}
.m10_c00262{transform:matrix(0.267914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267914,0.000000,0.000000,0.250000,0,0);}
.m20_c00262{transform:matrix(0.268416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268416,0.000000,0.000000,0.250000,0,0);}
.m3b_c00262{transform:matrix(0.269016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269016,0.000000,0.000000,0.250000,0,0);}
.mce_c00262{transform:matrix(0.270046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270046,0.000000,0.000000,0.250000,0,0);}
.m9f_c00262{transform:matrix(0.270827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270827,0.000000,0.000000,0.250000,0,0);}
.m50_c00262{transform:matrix(0.271467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271467,0.000000,0.000000,0.250000,0,0);}
.m74_c00262{transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);}
.mdd_c00262{transform:matrix(0.273223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273223,0.000000,0.000000,0.250000,0,0);}
.m54_c00262{transform:matrix(0.273819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273819,0.000000,0.000000,0.250000,0,0);}
.m3d_c00262{transform:matrix(0.273863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273863,0.000000,0.000000,0.250000,0,0);}
.m7c_c00262{transform:matrix(0.275579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275579,0.000000,0.000000,0.250000,0,0);}
.mcc_c00262{transform:matrix(0.276294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276294,0.000000,0.000000,0.250000,0,0);}
.m52_c00262{transform:matrix(0.276535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276535,0.000000,0.000000,0.250000,0,0);}
.m11_c00262{transform:matrix(0.277350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277350,0.000000,0.000000,0.250000,0,0);}
.m3_c00262{transform:matrix(0.278032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278032,0.000000,0.000000,0.250000,0,0);}
.mba_c00262{transform:matrix(0.278087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278087,0.000000,0.000000,0.250000,0,0);}
.m19_c00262{transform:matrix(0.278623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278623,0.000000,0.000000,0.250000,0,0);}
.m15_c00262{transform:matrix(0.278762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278762,0.000000,0.000000,0.250000,0,0);}
.m98_c00262{transform:matrix(0.279196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279196,0.000000,0.000000,0.250000,0,0);}
.m9c_c00262{transform:matrix(0.279620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279620,0.000000,0.000000,0.250000,0,0);}
.m4e_c00262{transform:matrix(0.280330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280330,0.000000,0.000000,0.250000,0,0);}
.m53_c00262{transform:matrix(0.280680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280680,0.000000,0.000000,0.250000,0,0);}
.mae_c00262{transform:matrix(0.280741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280741,0.000000,0.000000,0.250000,0,0);}
.mf_c00262{transform:matrix(0.281416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281416,0.000000,0.000000,0.250000,0,0);}
.mb8_c00262{transform:matrix(0.282556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282556,0.000000,0.000000,0.250000,0,0);}
.m4_c00262{transform:matrix(0.282668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282668,0.000000,0.000000,0.250000,0,0);}
.m24_c00262{transform:matrix(0.282875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282875,0.000000,0.000000,0.250000,0,0);}
.m7f_c00262{transform:matrix(0.283712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283712,0.000000,0.000000,0.250000,0,0);}
.m16_c00262{transform:matrix(0.283767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283767,0.000000,0.000000,0.250000,0,0);}
.m51_c00262{transform:matrix(0.284322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284322,0.000000,0.000000,0.250000,0,0);}
.m7e_c00262{transform:matrix(0.285081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285081,0.000000,0.000000,0.250000,0,0);}
.md5_c00262{transform:matrix(0.285082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285082,0.000000,0.000000,0.250000,0,0);}
.m3c_c00262{transform:matrix(0.285135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285135,0.000000,0.000000,0.250000,0,0);}
.m2a_c00262{transform:matrix(0.285678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285678,0.000000,0.000000,0.250000,0,0);}
.m88_c00262{transform:matrix(0.285842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285842,0.000000,0.000000,0.250000,0,0);}
.mda_c00262{transform:matrix(0.286644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286644,0.000000,0.000000,0.250000,0,0);}
.md_c00262{transform:matrix(0.286880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286880,0.000000,0.000000,0.250000,0,0);}
.m46_c00262{transform:matrix(0.288231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288231,0.000000,0.000000,0.250000,0,0);}
.m1_c00262{transform:matrix(0.289529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289529,0.000000,0.000000,0.250000,0,0);}
.mb0_c00262{transform:matrix(0.289591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289591,0.000000,0.000000,0.250000,0,0);}
.m1f_c00262{transform:matrix(0.289878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289878,0.000000,0.000000,0.250000,0,0);}
.m43_c00262{transform:matrix(0.290949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290949,0.000000,0.000000,0.250000,0,0);}
.mc2_c00262{transform:matrix(0.291365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291365,0.000000,0.000000,0.250000,0,0);}
.m56_c00262{transform:matrix(0.291522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291522,0.000000,0.000000,0.250000,0,0);}
.mc_c00262{transform:matrix(0.291649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291649,0.000000,0.000000,0.250000,0,0);}
.m45_c00262{transform:matrix(0.291910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291910,0.000000,0.000000,0.250000,0,0);}
.m81_c00262{transform:matrix(0.292090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292090,0.000000,0.000000,0.250000,0,0);}
.m4f_c00262{transform:matrix(0.292123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292123,0.000000,0.000000,0.250000,0,0);}
.m2f_c00262{transform:matrix(0.292208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292208,0.000000,0.000000,0.250000,0,0);}
.m2b_c00262{transform:matrix(0.292940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292940,0.000000,0.000000,0.250000,0,0);}
.m8d_c00262{transform:matrix(0.294058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294058,0.000000,0.000000,0.250000,0,0);}
.m86_c00262{transform:matrix(0.294063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294063,0.000000,0.000000,0.250000,0,0);}
.m40_c00262{transform:matrix(0.295246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295246,0.000000,0.000000,0.250000,0,0);}
.m65_c00262{transform:matrix(0.295305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295305,0.000000,0.000000,0.250000,0,0);}
.m14_c00262{transform:matrix(0.295949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295949,0.000000,0.000000,0.250000,0,0);}
.m30_c00262{transform:matrix(0.295993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295993,0.000000,0.000000,0.250000,0,0);}
.m31_c00262{transform:matrix(0.296612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296612,0.000000,0.000000,0.250000,0,0);}
.m9d_c00262{transform:matrix(0.296737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296737,0.000000,0.000000,0.250000,0,0);}
.m96_c00262{transform:matrix(0.297108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297108,0.000000,0.000000,0.250000,0,0);}
.mac_c00262{transform:matrix(0.297260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297260,0.000000,0.000000,0.250000,0,0);}
.m97_c00262{transform:matrix(0.297562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297562,0.000000,0.000000,0.250000,0,0);}
.m95_c00262{transform:matrix(0.297969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297969,0.000000,0.000000,0.250000,0,0);}
.ma9_c00262{transform:matrix(0.298660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298660,0.000000,0.000000,0.250000,0,0);}
.m8_c00262{transform:matrix(0.299505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299505,0.000000,0.000000,0.250000,0,0);}
.mb_c00262{transform:matrix(0.299706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299706,0.000000,0.000000,0.250000,0,0);}
.m72_c00262{transform:matrix(0.300060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300060,0.000000,0.000000,0.250000,0,0);}
.m38_c00262{transform:matrix(0.300138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300138,0.000000,0.000000,0.250000,0,0);}
.m80_c00262{transform:matrix(0.300245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300245,0.000000,0.000000,0.250000,0,0);}
.mc0_c00262{transform:matrix(0.300323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300323,0.000000,0.000000,0.250000,0,0);}
.mb3_c00262{transform:matrix(0.300614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300614,0.000000,0.000000,0.250000,0,0);}
.m57_c00262{transform:matrix(0.301461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301461,0.000000,0.000000,0.250000,0,0);}
.m6d_c00262{transform:matrix(0.304906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304906,0.000000,0.000000,0.250000,0,0);}
.md0_c00262{transform:matrix(0.305234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305234,0.000000,0.000000,0.250000,0,0);}
.m73_c00262{transform:matrix(0.305405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305405,0.000000,0.000000,0.250000,0,0);}
.mb5_c00262{transform:matrix(0.305477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305477,0.000000,0.000000,0.250000,0,0);}
.m69_c00262{transform:matrix(0.305595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305595,0.000000,0.000000,0.250000,0,0);}
.m4c_c00262{transform:matrix(0.305653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305653,0.000000,0.000000,0.250000,0,0);}
.m4a_c00262{transform:matrix(0.305768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305768,0.000000,0.000000,0.250000,0,0);}
.mdf_c00262{transform:matrix(0.305801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305801,0.000000,0.000000,0.250000,0,0);}
.m84_c00262{transform:matrix(0.306623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306623,0.000000,0.000000,0.250000,0,0);}
.me2_c00262{transform:matrix(0.307139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307139,0.000000,0.000000,0.250000,0,0);}
.mc7_c00262{transform:matrix(0.307245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307245,0.000000,0.000000,0.250000,0,0);}
.m64_c00262{transform:matrix(0.307419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307419,0.000000,0.000000,0.250000,0,0);}
.m82_c00262{transform:matrix(0.307931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307931,0.000000,0.000000,0.250000,0,0);}
.m8b_c00262{transform:matrix(0.310077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310077,0.000000,0.000000,0.250000,0,0);}
.m94_c00262{transform:matrix(0.310289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310289,0.000000,0.000000,0.250000,0,0);}
.m9b_c00262{transform:matrix(0.310768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310768,0.000000,0.000000,0.250000,0,0);}
.mde_c00262{transform:matrix(0.310856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310856,0.000000,0.000000,0.250000,0,0);}
.m85_c00262{transform:matrix(0.311053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311053,0.000000,0.000000,0.250000,0,0);}
.m8c_c00262{transform:matrix(0.311243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311243,0.000000,0.000000,0.250000,0,0);}
.m93_c00262{transform:matrix(0.312181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312181,0.000000,0.000000,0.250000,0,0);}
.mbf_c00262{transform:matrix(0.312561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312561,0.000000,0.000000,0.250000,0,0);}
.m2d_c00262{transform:matrix(0.313829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313829,0.000000,0.000000,0.250000,0,0);}
.mc6_c00262{transform:matrix(0.314135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314135,0.000000,0.000000,0.250000,0,0);}
.me_c00262{transform:matrix(0.314210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314210,0.000000,0.000000,0.250000,0,0);}
.m42_c00262{transform:matrix(0.314227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314227,0.000000,0.000000,0.250000,0,0);}
.m71_c00262{transform:matrix(0.314312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314312,0.000000,0.000000,0.250000,0,0);}
.m13_c00262{transform:matrix(0.315806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315806,0.000000,0.000000,0.250000,0,0);}
.m22_c00262{transform:matrix(0.315875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315875,0.000000,0.000000,0.250000,0,0);}
.m63_c00262{transform:matrix(0.315887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315887,0.000000,0.000000,0.250000,0,0);}
.mc9_c00262{transform:matrix(0.316509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316509,0.000000,0.000000,0.250000,0,0);}
.m76_c00262{transform:matrix(0.316775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316775,0.000000,0.000000,0.250000,0,0);}
.md7_c00262{transform:matrix(0.317215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317215,0.000000,0.000000,0.250000,0,0);}
.ma_c00262{transform:matrix(0.317395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317395,0.000000,0.000000,0.250000,0,0);}
.mc3_c00262{transform:matrix(0.317490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317490,0.000000,0.000000,0.250000,0,0);}
.m8a_c00262{transform:matrix(0.319023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319023,0.000000,0.000000,0.250000,0,0);}
.m3a_c00262{transform:matrix(0.319341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319341,0.000000,0.000000,0.250000,0,0);}
.me3_c00262{transform:matrix(0.319662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319662,0.000000,0.000000,0.250000,0,0);}
.ma8_c00262{transform:matrix(0.319759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319759,0.000000,0.000000,0.250000,0,0);}
.m25_c00262{transform:matrix(0.320073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320073,0.000000,0.000000,0.250000,0,0);}
.mbe_c00262{transform:matrix(0.320079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320079,0.000000,0.000000,0.250000,0,0);}
.ma0_c00262{transform:matrix(0.320149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320149,0.000000,0.000000,0.250000,0,0);}
.md8_c00262{transform:matrix(0.320961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320961,0.000000,0.000000,0.250000,0,0);}
.md3_c00262{transform:matrix(0.321469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321469,0.000000,0.000000,0.250000,0,0);}
.m48_c00262{transform:matrix(0.321888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321888,0.000000,0.000000,0.250000,0,0);}
.mb9_c00262{transform:matrix(0.322632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322632,0.000000,0.000000,0.250000,0,0);}
.mcf_c00262{transform:matrix(0.323170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323170,0.000000,0.000000,0.250000,0,0);}
.m5a_c00262{transform:matrix(0.323425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323425,0.000000,0.000000,0.250000,0,0);}
.mc1_c00262{transform:matrix(0.323532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323532,0.000000,0.000000,0.250000,0,0);}
.me1_c00262{transform:matrix(0.324180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324180,0.000000,0.000000,0.250000,0,0);}
.me5_c00262{transform:matrix(0.324554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324554,0.000000,0.000000,0.250000,0,0);}
.mbc_c00262{transform:matrix(0.324820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324820,0.000000,0.000000,0.250000,0,0);}
.m37_c00262{transform:matrix(0.325343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325343,0.000000,0.000000,0.250000,0,0);}
.m18_c00262{transform:matrix(0.326051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326051,0.000000,0.000000,0.250000,0,0);}
.m26_c00262{transform:matrix(0.326784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326784,0.000000,0.000000,0.250000,0,0);}
.m2e_c00262{transform:matrix(0.327542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327542,0.000000,0.000000,0.250000,0,0);}
.m29_c00262{transform:matrix(0.328514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328514,0.000000,0.000000,0.250000,0,0);}
.mb6_c00262{transform:matrix(0.328629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328629,0.000000,0.000000,0.250000,0,0);}
.m17_c00262{transform:matrix(0.328660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328660,0.000000,0.000000,0.250000,0,0);}
.m99_c00262{transform:matrix(0.328829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328829,0.000000,0.000000,0.250000,0,0);}
.m39_c00262{transform:matrix(0.330091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330091,0.000000,0.000000,0.250000,0,0);}
.m12_c00262{transform:matrix(0.330414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330414,0.000000,0.000000,0.250000,0,0);}
.mad_c00262{transform:matrix(0.330727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330727,0.000000,0.000000,0.250000,0,0);}
.m2c_c00262{transform:matrix(0.330832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330832,0.000000,0.000000,0.250000,0,0);}
.mcd_c00262{transform:matrix(0.333436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333436,0.000000,0.000000,0.250000,0,0);}
.m34_c00262{transform:matrix(0.333584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333584,0.000000,0.000000,0.250000,0,0);}
.m5c_c00262{transform:matrix(0.334825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334825,0.000000,0.000000,0.250000,0,0);}
.m67_c00262{transform:matrix(0.335365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335365,0.000000,0.000000,0.250000,0,0);}
.m5b_c00262{transform:matrix(0.336513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336513,0.000000,0.000000,0.250000,0,0);}
.m8e_c00262{transform:matrix(0.337094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337094,0.000000,0.000000,0.250000,0,0);}
.ma7_c00262{transform:matrix(0.337665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337665,0.000000,0.000000,0.250000,0,0);}
.m7d_c00262{transform:matrix(0.338234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338234,0.000000,0.000000,0.250000,0,0);}
.m5f_c00262{transform:matrix(0.339448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339448,0.000000,0.000000,0.250000,0,0);}
.m60_c00262{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);}
.m5d_c00262{transform:matrix(0.341356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341356,0.000000,0.000000,0.250000,0,0);}
.m28_c00262{transform:matrix(0.342744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342744,0.000000,0.000000,0.250000,0,0);}
.m87_c00262{transform:matrix(0.342882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342882,0.000000,0.000000,0.250000,0,0);}
.m44_c00262{transform:matrix(0.344455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344455,0.000000,0.000000,0.250000,0,0);}
.m4d_c00262{transform:matrix(0.345072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345072,0.000000,0.000000,0.250000,0,0);}
.m27_c00262{transform:matrix(0.346449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346449,0.000000,0.000000,0.250000,0,0);}
.m4b_c00262{transform:matrix(0.346894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346894,0.000000,0.000000,0.250000,0,0);}
.md4_c00262{transform:matrix(0.347823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347823,0.000000,0.000000,0.250000,0,0);}
.m6a_c00262{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);}
.md6_c00262{transform:matrix(0.353088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353088,0.000000,0.000000,0.250000,0,0);}
.m21_c00262{transform:matrix(0.353245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353245,0.000000,0.000000,0.250000,0,0);}
.m35_c00262{transform:matrix(0.354697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354697,0.000000,0.000000,0.250000,0,0);}
.m6e_c00262{transform:matrix(0.356171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356171,0.000000,0.000000,0.250000,0,0);}
.m55_c00262{transform:matrix(0.357562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357562,0.000000,0.000000,0.250000,0,0);}
.m6b_c00262{transform:matrix(0.359241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359241,0.000000,0.000000,0.250000,0,0);}
.mdb_c00262{transform:matrix(0.359775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359775,0.000000,0.000000,0.250000,0,0);}
.maa_c00262{transform:matrix(0.360983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360983,0.000000,0.000000,0.250000,0,0);}
.m6_c00262{transform:matrix(0.365094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365094,0.000000,0.000000,0.250000,0,0);}
.m3f_c00262{transform:matrix(0.365371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365371,0.000000,0.000000,0.250000,0,0);}
.mab_c00262{transform:matrix(0.365477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365477,0.000000,0.000000,0.250000,0,0);}
.mca_c00262{transform:matrix(0.367753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367753,0.000000,0.000000,0.250000,0,0);}
.m8f_c00262{transform:matrix(0.368276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368276,0.000000,0.000000,0.250000,0,0);}
.me4_c00262{transform:matrix(0.371671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371671,0.000000,0.000000,0.250000,0,0);}
.m9_c00262{transform:matrix(0.373151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373151,0.000000,0.000000,0.250000,0,0);}
.mc4_c00262{transform:matrix(0.373615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373615,0.000000,0.000000,0.250000,0,0);}
.m47_c00262{transform:matrix(0.375197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375197,0.000000,0.000000,0.250000,0,0);}
.mb2_c00262{transform:matrix(0.375615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375615,0.000000,0.000000,0.250000,0,0);}
.mdc_c00262{transform:matrix(0.377866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377866,0.000000,0.000000,0.250000,0,0);}
.m1e_c00262{transform:matrix(0.382702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382702,0.000000,0.000000,0.250000,0,0);}
.mb7_c00262{transform:matrix(0.383524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383524,0.000000,0.000000,0.250000,0,0);}
.m83_c00262{transform:matrix(0.385420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385420,0.000000,0.000000,0.250000,0,0);}
.m3e_c00262{transform:matrix(0.391953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391953,0.000000,0.000000,0.250000,0,0);}
.mc5_c00262{transform:matrix(0.403963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403963,0.000000,0.000000,0.250000,0,0);}
.m66_c00262{transform:matrix(0.407816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407816,0.000000,0.000000,0.250000,0,0);}
.m58_c00262{transform:matrix(0.416138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416138,0.000000,0.000000,0.250000,0,0);}
.me0_c00262{transform:matrix(0.428429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428429,0.000000,0.000000,0.250000,0,0);}
.v1_c00262{vertical-align:-1.425600px;}
.v0_c00262{vertical-align:0.000000px;}
.ls7_c00262{letter-spacing:-2.668050px;}
.lsd_c00262{letter-spacing:-0.830907px;}
.lse_c00262{letter-spacing:-0.777546px;}
.ls12_c00262{letter-spacing:-0.556479px;}
.ls3_c00262{letter-spacing:0.000000px;}
.ls11_c00262{letter-spacing:0.152460px;}
.lsc_c00262{letter-spacing:1.098900px;}
.ls0_c00262{letter-spacing:2.004849px;}
.ls1_c00262{letter-spacing:2.279277px;}
.lsb_c00262{letter-spacing:2.797978px;}
.ls2_c00262{letter-spacing:3.575187px;}
.lsa_c00262{letter-spacing:3.636171px;}
.ls10_c00262{letter-spacing:3.752110px;}
.ls8_c00262{letter-spacing:3.773385px;}
.ls4_c00262{letter-spacing:3.801610px;}
.ls6_c00262{letter-spacing:3.811500px;}
.ls5_c00262{letter-spacing:31.363200px;}
.ls9_c00262{letter-spacing:49.896198px;}
.lsf_c00262{letter-spacing:72.705798px;}
.sc__c00262{text-shadow:none;}
.sc0_c00262{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00262{-webkit-text-stroke:0px transparent;}
.sc0_c00262{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00262{word-spacing:-22.830885px;}
.ws4_c00262{word-spacing:-22.632687px;}
.ws2_c00262{word-spacing:-21.062349px;}
.ws1_c00262{word-spacing:-19.057500px;}
.ws5_c00262{word-spacing:-18.760550px;}
.ws3_c00262{word-spacing:-13.464050px;}
.ws6_c00262{word-spacing:0.000000px;}
._4_c00262{margin-left:-11.282040px;}
._1a_c00262{margin-left:-9.909900px;}
._8_c00262{margin-left:-7.623000px;}
._12_c00262{margin-left:-6.516642px;}
._c_c00262{margin-left:-2.744280px;}
._13_c00262{width:1.144440px;}
._1c_c00262{width:4.116420px;}
._d_c00262{width:5.336100px;}
._11_c00262{width:6.480540px;}
._1_c00262{width:8.232840px;}
._e_c00262{width:9.681210px;}
._14_c00262{width:10.975140px;}
._2_c00262{width:12.501720px;}
._17_c00262{width:13.701600px;}
._19_c00262{width:15.855840px;}
._1b_c00262{width:17.763570px;}
._10_c00262{width:21.344400px;}
._6_c00262{width:22.411620px;}
._9_c00262{width:23.831280px;}
._a_c00262{width:25.308360px;}
._3_c00262{width:28.965420px;}
._5_c00262{width:30.415770px;}
._b_c00262{width:34.227270px;}
._f_c00262{width:35.751870px;}
._7_c00262{width:37.400220px;}
._18_c00262{width:40.478130px;}
._15_c00262{width:41.696820px;}
._16_c00262{width:45.638901px;}
._0_c00262{width:2001.914640px;}
.fc0_c00262{color:transparent;}
.fsd_c00262{font-size:21.978000px;}
.fs0_c00262{font-size:22.176000px;}
.fs5_c00262{font-size:25.146000px;}
.fs3_c00262{font-size:27.720000px;}
.fs6_c00262{font-size:31.363200px;}
.fs10_c00262{font-size:33.264000px;}
.fs1_c00262{font-size:33.660000px;}
.fs7_c00262{font-size:39.600000px;}
.fs9_c00262{font-size:49.896198px;}
.fsa_c00262{font-size:50.688000px;}
.fsc_c00262{font-size:53.856198px;}
.fse_c00262{font-size:72.705798px;}
.fs4_c00262{font-size:72.864000px;}
.fsf_c00262{font-size:75.042198px;}
.fs2_c00262{font-size:76.032198px;}
.fs8_c00262{font-size:76.230000px;}
.fsb_c00262{font-size:77.022198px;}
.y0_c00262{bottom:0.000000px;}
.y2d_c00262{bottom:19.156149px;}
.y1_c00262{bottom:76.500000px;}
.y2c_c00262{bottom:90.432585px;}
.y2b_c00262{bottom:130.349385px;}
.y2a_c00262{bottom:162.430335px;}
.y27_c00262{bottom:199.130378px;}
.y28_c00262{bottom:199.134585px;}
.y26_c00262{bottom:231.928335px;}
.y25_c00262{bottom:263.642985px;}
.y24_c00262{bottom:297.144585px;}
.y23_c00262{bottom:328.869135px;}
.y22_c00262{bottom:361.652985px;}
.y29_c00262{bottom:401.926185px;}
.y21_c00262{bottom:426.517785px;}
.y20_c00262{bottom:458.237385px;}
.y1f_c00262{bottom:491.026185px;}
.y1d_c00262{bottom:525.243060px;}
.y1e_c00262{bottom:525.245535px;}
.y1c_c00262{bottom:557.316585px;}
.y1b_c00262{bottom:590.823135px;}
.y1a_c00262{bottom:617.904585px;}
.y19_c00262{bottom:623.611935px;}
.y3_c00262{bottom:642.857535px;}
.y18_c00262{bottom:657.113535px;}
.y2e_c00262{bottom:687.413475px;}
.y17_c00262{bottom:689.540985px;}
.y12_c00262{bottom:712.711935px;}
.y16_c00262{bottom:721.973385px;}
.y11_c00262{bottom:722.691135px;}
.y15_c00262{bottom:736.234335px;}
.y14_c00262{bottom:754.410735px;}
.y10_c00262{bottom:755.479935px;}
.y2_c00262{bottom:760.113135px;}
.y13_c00262{bottom:789.337935px;}
.yf_c00262{bottom:793.609785px;}
.ye_c00262{bottom:797.884605px;}
.yd_c00262{bottom:810.365535px;}
.yc_c00262{bottom:820.701135px;}
.yb_c00262{bottom:854.197785px;}
.ya_c00262{bottom:886.630185px;}
.y9_c00262{bottom:919.067535px;}
.y8_c00262{bottom:997.831935px;}
.y7_c00262{bottom:1005.311385px;}
.y6_c00262{bottom:1016.003385px;}
.y5_c00262{bottom:1028.833785px;}
.y4_c00262{bottom:1071.245385px;}
.h7_c00262{height:20.887891px;}
.h10_c00262{height:22.922367px;}
.h2_c00262{height:23.128875px;}
.h6_c00262{height:26.226492px;}
.hb_c00262{height:28.911094px;}
.h3_c00262{height:33.035449px;}
.ha_c00262{height:33.230868px;}
.h13_c00262{height:34.693313px;}
.h8_c00262{height:41.301563px;}
.h11_c00262{height:48.422061px;}
.hf_c00262{height:52.856913px;}
.hc_c00262{height:52.866000px;}
.h5_c00262{height:70.086431px;}
.he_c00262{height:71.476453px;}
.h12_c00262{height:73.649813px;}
.h4_c00262{height:74.621444px;}
.h9_c00262{height:74.815576px;}
.hd_c00262{height:80.331746px;}
.h1_c00262{height:1110.000000px;}
.h0_c00262{height:1263.000000px;}
.w1_c00262{width:763.500000px;}
.w0_c00262{width:892.500000px;}
.x0_c00262{left:0.000000px;}
.x3_c00262{left:35.730135px;}
.x2_c00262{left:50.035635px;}
.x4f_c00262{left:63.118485px;}
.x1_c00262{left:64.500000px;}
.x82_c00262{left:66.816135px;}
.x3a_c00262{left:67.880385px;}
.x8_c00262{left:70.102935px;}
.x17_c00262{left:71.261235px;}
.x50_c00262{left:80.131635px;}
.x68_c00262{left:89.120835px;}
.x2c_c00262{left:90.902835px;}
.x75_c00262{left:100.020735px;}
.x2d_c00262{left:101.045385px;}
.x22_c00262{left:102.292785px;}
.x5f_c00262{left:111.390885px;}
.x3b_c00262{left:112.420485px;}
.x51_c00262{left:121.751235px;}
.x9_c00262{left:123.147135px;}
.x23_c00262{left:124.246035px;}
.x43_c00262{left:127.730835px;}
.x7e_c00262{left:132.443235px;}
.x6c_c00262{left:134.027235px;}
.x60_c00262{left:144.174735px;}
.x45_c00262{left:145.209285px;}
.x36_c00262{left:155.930985px;}
.x18_c00262{left:157.559535px;}
.x76_c00262{left:165.598335px;}
.x5a_c00262{left:167.533785px;}
.xa_c00262{left:178.062435px;}
.x6d_c00262{left:179.275185px;}
.x3c_c00262{left:188.398035px;}
.x46_c00262{left:190.338435px;}
.x5_c00262{left:197.204085px;}
.x7b_c00262{left:198.733635px;}
.x72_c00262{left:199.827585px;}
.x24_c00262{left:201.713535px;}
.x83_c00262{left:209.782035px;}
.xb_c00262{left:211.752135px;}
.x2e_c00262{left:213.063885px;}
.x69_c00262{left:223.132185px;}
.xc_c00262{left:233.601435px;}
.x4a_c00262{left:234.863685px;}
.x6e_c00262{left:236.210085px;}
.x2f_c00262{left:244.733985px;}
.x19_c00262{left:245.897235px;}
.x25_c00262{left:251.490735px;}
.x37_c00262{left:255.010185px;}
.x65_c00262{left:256.064535px;}
.x26_c00262{left:257.188185px;}
.x77_c00262{left:258.806835px;}
.x5b_c00262{left:266.414985px;}
.x88_c00262{left:267.984135px;}
.x66_c00262{left:278.369235px;}
.x27_c00262{left:279.448335px;}
.x3d_c00262{left:288.878085px;}
.x30_c00262{left:290.100735px;}
.x73_c00262{left:300.337335px;}
.x1a_c00262{left:301.426335px;}
.x61_c00262{left:306.727785px;}
.xd_c00262{left:312.603435px;}
.x78_c00262{left:322.434135px;}
.x1b_c00262{left:323.632035px;}
.x38_c00262{left:332.695485px;}
.x6a_c00262{left:334.324035px;}
.xe_c00262{left:335.388285px;}
.x6f_c00262{left:337.838535px;}
.x1c_c00262{left:345.367485px;}
.x74_c00262{left:347.406885px;}
.x28_c00262{left:356.420835px;}
.x54_c00262{left:360.024435px;}
.x62_c00262{left:367.107885px;}
.x56_c00262{left:368.177085px;}
.xf_c00262{left:378.324585px;}
.x1d_c00262{left:379.532385px;}
.x7f_c00262{left:381.344085px;}
.x57_c00262{left:389.432385px;}
.x1e_c00262{left:400.614435px;}
.x29_c00262{left:401.678685px;}
.x80_c00262{left:407.188035px;}
.x3e_c00262{left:411.944985px;}
.x84_c00262{left:413.083485px;}
.x55_c00262{left:416.078235px;}
.x4b_c00262{left:422.354835px;}
.x10_c00262{left:423.458685px;}
.x5c_c00262{left:432.497385px;}
.x47_c00262{left:434.388285px;}
.x63_c00262{left:443.580435px;}
.x70_c00262{left:445.327785px;}
.x81_c00262{left:448.055235px;}
.x2a_c00262{left:456.861285px;}
.x4c_c00262{left:465.637635px;}
.x3f_c00262{left:466.677135px;}
.x11_c00262{left:478.106685px;}
.x52_c00262{left:483.101235px;}
.x1f_c00262{left:488.377935px;}
.x5d_c00262{left:490.942035px;}
.x31_c00262{left:500.371785px;}
.x79_c00262{left:511.410285px;}
.x12_c00262{left:522.468585px;}
.x34_c00262{left:523.666485px;}
.x4d_c00262{left:532.284435px;}
.x40_c00262{left:533.551635px;}
.x2b_c00262{left:544.956435px;}
.x35_c00262{left:547.900695px;}
.x6b_c00262{left:554.747535px;}
.x41_c00262{left:555.985035px;}
.x13_c00262{left:558.658035px;}
.x48_c00262{left:566.731485px;}
.x14_c00262{left:567.736335px;}
.x42_c00262{left:576.898785px;}
.x20_c00262{left:577.918485px;}
.x32_c00262{left:589.150035px;}
.x21_c00262{left:599.277735px;}
.x53_c00262{left:600.549885px;}
.x71_c00262{left:601.782435px;}
.x8a_c00262{left:606.331485px;}
.x58_c00262{left:610.885485px;}
.x7a_c00262{left:622.933785px;}
.x7c_c00262{left:624.146535px;}
.x4e_c00262{left:631.705185px;}
.x67_c00262{left:633.299085px;}
.x33_c00262{left:635.016735px;}
.x39_c00262{left:644.263335px;}
.x64_c00262{left:653.143635px;}
.x15_c00262{left:655.440435px;}
.x4_c00262{left:658.227285px;}
.x7d_c00262{left:666.795735px;}
.x16_c00262{left:678.131235px;}
.x49_c00262{left:687.872835px;}
.x44_c00262{left:697.386735px;}
.x6_c00262{left:703.584135px;}
.x7_c00262{left:706.366035px;}
.x85_c00262{left:711.014085px;}
.x59_c00262{left:721.646685px;}
.x5e_c00262{left:731.685285px;}
.x86_c00262{left:732.754485px;}
.x89_c00262{left:746.040285px;}
.x87_c00262{left:747.866835px;}
.x8b_c00262{left:758.871675px;}
@media print{
.v1_c00262{vertical-align:-1.267200pt;}
.v0_c00262{vertical-align:0.000000pt;}
.ls7_c00262{letter-spacing:-2.371600pt;}
.lsd_c00262{letter-spacing:-0.738584pt;}
.lse_c00262{letter-spacing:-0.691152pt;}
.ls12_c00262{letter-spacing:-0.494648pt;}
.ls3_c00262{letter-spacing:0.000000pt;}
.ls11_c00262{letter-spacing:0.135520pt;}
.lsc_c00262{letter-spacing:0.976800pt;}
.ls0_c00262{letter-spacing:1.782088pt;}
.ls1_c00262{letter-spacing:2.026024pt;}
.lsb_c00262{letter-spacing:2.487091pt;}
.ls2_c00262{letter-spacing:3.177944pt;}
.lsa_c00262{letter-spacing:3.232152pt;}
.ls10_c00262{letter-spacing:3.335209pt;}
.ls8_c00262{letter-spacing:3.354120pt;}
.ls4_c00262{letter-spacing:3.379209pt;}
.ls6_c00262{letter-spacing:3.388000pt;}
.ls5_c00262{letter-spacing:27.878400pt;}
.ls9_c00262{letter-spacing:44.352176pt;}
.lsf_c00262{letter-spacing:64.627376pt;}
.ws0_c00262{word-spacing:-20.294120pt;}
.ws4_c00262{word-spacing:-20.117944pt;}
.ws2_c00262{word-spacing:-18.722088pt;}
.ws1_c00262{word-spacing:-16.940000pt;}
.ws5_c00262{word-spacing:-16.676044pt;}
.ws3_c00262{word-spacing:-11.968044pt;}
.ws6_c00262{word-spacing:0.000000pt;}
._4_c00262{margin-left:-10.028480pt;}
._1a_c00262{margin-left:-8.808800pt;}
._8_c00262{margin-left:-6.776000pt;}
._12_c00262{margin-left:-5.792571pt;}
._c_c00262{margin-left:-2.439360pt;}
._13_c00262{width:1.017280pt;}
._1c_c00262{width:3.659040pt;}
._d_c00262{width:4.743200pt;}
._11_c00262{width:5.760480pt;}
._1_c00262{width:7.318080pt;}
._e_c00262{width:8.605520pt;}
._14_c00262{width:9.755680pt;}
._2_c00262{width:11.112640pt;}
._17_c00262{width:12.179200pt;}
._19_c00262{width:14.094080pt;}
._1b_c00262{width:15.789840pt;}
._10_c00262{width:18.972800pt;}
._6_c00262{width:19.921440pt;}
._9_c00262{width:21.183360pt;}
._a_c00262{width:22.496320pt;}
._3_c00262{width:25.747040pt;}
._5_c00262{width:27.036240pt;}
._b_c00262{width:30.424240pt;}
._f_c00262{width:31.779440pt;}
._7_c00262{width:33.244640pt;}
._18_c00262{width:35.980560pt;}
._15_c00262{width:37.063840pt;}
._16_c00262{width:40.567912pt;}
._0_c00262{width:1779.479680pt;}
.fsd_c00262{font-size:19.536000pt;}
.fs0_c00262{font-size:19.712000pt;}
.fs5_c00262{font-size:22.352000pt;}
.fs3_c00262{font-size:24.640000pt;}
.fs6_c00262{font-size:27.878400pt;}
.fs10_c00262{font-size:29.568000pt;}
.fs1_c00262{font-size:29.920000pt;}
.fs7_c00262{font-size:35.200000pt;}
.fs9_c00262{font-size:44.352176pt;}
.fsa_c00262{font-size:45.056000pt;}
.fsc_c00262{font-size:47.872176pt;}
.fse_c00262{font-size:64.627376pt;}
.fs4_c00262{font-size:64.768000pt;}
.fsf_c00262{font-size:66.704176pt;}
.fs2_c00262{font-size:67.584176pt;}
.fs8_c00262{font-size:67.760000pt;}
.fsb_c00262{font-size:68.464176pt;}
.y0_c00262{bottom:0.000000pt;}
.y2d_c00262{bottom:17.027688pt;}
.y1_c00262{bottom:68.000000pt;}
.y2c_c00262{bottom:80.384520pt;}
.y2b_c00262{bottom:115.866120pt;}
.y2a_c00262{bottom:144.382520pt;}
.y27_c00262{bottom:177.004780pt;}
.y28_c00262{bottom:177.008520pt;}
.y26_c00262{bottom:206.158520pt;}
.y25_c00262{bottom:234.349320pt;}
.y24_c00262{bottom:264.128520pt;}
.y23_c00262{bottom:292.328120pt;}
.y22_c00262{bottom:321.469320pt;}
.y29_c00262{bottom:357.267720pt;}
.y21_c00262{bottom:379.126920pt;}
.y20_c00262{bottom:407.322120pt;}
.y1f_c00262{bottom:436.467720pt;}
.y1d_c00262{bottom:466.882720pt;}
.y1e_c00262{bottom:466.884920pt;}
.y1c_c00262{bottom:495.392520pt;}
.y1b_c00262{bottom:525.176120pt;}
.y1a_c00262{bottom:549.248520pt;}
.y19_c00262{bottom:554.321720pt;}
.y3_c00262{bottom:571.428920pt;}
.y18_c00262{bottom:584.100920pt;}
.y2e_c00262{bottom:611.034200pt;}
.y17_c00262{bottom:612.925320pt;}
.y12_c00262{bottom:633.521720pt;}
.y16_c00262{bottom:641.754120pt;}
.y11_c00262{bottom:642.392120pt;}
.y15_c00262{bottom:654.430520pt;}
.y14_c00262{bottom:670.587320pt;}
.y10_c00262{bottom:671.537720pt;}
.y2_c00262{bottom:675.656120pt;}
.y13_c00262{bottom:701.633720pt;}
.yf_c00262{bottom:705.430920pt;}
.ye_c00262{bottom:709.230760pt;}
.yd_c00262{bottom:720.324920pt;}
.yc_c00262{bottom:729.512120pt;}
.yb_c00262{bottom:759.286920pt;}
.ya_c00262{bottom:788.115720pt;}
.y9_c00262{bottom:816.948920pt;}
.y8_c00262{bottom:886.961720pt;}
.y7_c00262{bottom:893.610120pt;}
.y6_c00262{bottom:903.114120pt;}
.y5_c00262{bottom:914.518920pt;}
.y4_c00262{bottom:952.218120pt;}
.h7_c00262{height:18.567014pt;}
.h10_c00262{height:20.375438pt;}
.h2_c00262{height:20.559000pt;}
.h6_c00262{height:23.312438pt;}
.hb_c00262{height:25.698750pt;}
.h3_c00262{height:29.364844pt;}
.ha_c00262{height:29.538549pt;}
.h13_c00262{height:30.838500pt;}
.h8_c00262{height:36.712500pt;}
.h11_c00262{height:43.041832pt;}
.hf_c00262{height:46.983923pt;}
.hc_c00262{height:46.992000pt;}
.h5_c00262{height:62.299050pt;}
.he_c00262{height:63.534625pt;}
.h12_c00262{height:65.466501pt;}
.h4_c00262{height:66.330173pt;}
.h9_c00262{height:66.502734pt;}
.hd_c00262{height:71.405996pt;}
.h1_c00262{height:986.666667pt;}
.h0_c00262{height:1122.666667pt;}
.w1_c00262{width:678.666667pt;}
.w0_c00262{width:793.333333pt;}
.x0_c00262{left:0.000000pt;}
.x3_c00262{left:31.760120pt;}
.x2_c00262{left:44.476120pt;}
.x4f_c00262{left:56.105320pt;}
.x1_c00262{left:57.333333pt;}
.x82_c00262{left:59.392120pt;}
.x3a_c00262{left:60.338120pt;}
.x8_c00262{left:62.313720pt;}
.x17_c00262{left:63.343320pt;}
.x50_c00262{left:71.228120pt;}
.x68_c00262{left:79.218520pt;}
.x2c_c00262{left:80.802520pt;}
.x75_c00262{left:88.907320pt;}
.x2d_c00262{left:89.818120pt;}
.x22_c00262{left:90.926920pt;}
.x5f_c00262{left:99.014120pt;}
.x3b_c00262{left:99.929320pt;}
.x51_c00262{left:108.223320pt;}
.x9_c00262{left:109.464120pt;}
.x23_c00262{left:110.440920pt;}
.x43_c00262{left:113.538520pt;}
.x7e_c00262{left:117.727320pt;}
.x6c_c00262{left:119.135320pt;}
.x60_c00262{left:128.155320pt;}
.x45_c00262{left:129.074920pt;}
.x36_c00262{left:138.605320pt;}
.x18_c00262{left:140.052920pt;}
.x76_c00262{left:147.198520pt;}
.x5a_c00262{left:148.918920pt;}
.xa_c00262{left:158.277720pt;}
.x6d_c00262{left:159.355720pt;}
.x3c_c00262{left:167.464920pt;}
.x46_c00262{left:169.189720pt;}
.x5_c00262{left:175.292520pt;}
.x7b_c00262{left:176.652120pt;}
.x72_c00262{left:177.624520pt;}
.x24_c00262{left:179.300920pt;}
.x83_c00262{left:186.472920pt;}
.xb_c00262{left:188.224120pt;}
.x2e_c00262{left:189.390120pt;}
.x69_c00262{left:198.339720pt;}
.xc_c00262{left:207.645720pt;}
.x4a_c00262{left:208.767720pt;}
.x6e_c00262{left:209.964520pt;}
.x2f_c00262{left:217.541320pt;}
.x19_c00262{left:218.575320pt;}
.x25_c00262{left:223.547320pt;}
.x37_c00262{left:226.675720pt;}
.x65_c00262{left:227.612920pt;}
.x26_c00262{left:228.611720pt;}
.x77_c00262{left:230.050520pt;}
.x5b_c00262{left:236.813320pt;}
.x88_c00262{left:238.208120pt;}
.x66_c00262{left:247.439320pt;}
.x27_c00262{left:248.398520pt;}
.x3d_c00262{left:256.780520pt;}
.x30_c00262{left:257.867320pt;}
.x73_c00262{left:266.966520pt;}
.x1a_c00262{left:267.934520pt;}
.x61_c00262{left:272.646920pt;}
.xd_c00262{left:277.869720pt;}
.x78_c00262{left:286.608120pt;}
.x1b_c00262{left:287.672920pt;}
.x38_c00262{left:295.729320pt;}
.x6a_c00262{left:297.176920pt;}
.xe_c00262{left:298.122920pt;}
.x6f_c00262{left:300.300920pt;}
.x1c_c00262{left:306.993320pt;}
.x74_c00262{left:308.806120pt;}
.x28_c00262{left:316.818520pt;}
.x54_c00262{left:320.021720pt;}
.x62_c00262{left:326.318120pt;}
.x56_c00262{left:327.268520pt;}
.xf_c00262{left:336.288520pt;}
.x1d_c00262{left:337.362120pt;}
.x7f_c00262{left:338.972520pt;}
.x57_c00262{left:346.162120pt;}
.x1e_c00262{left:356.101720pt;}
.x29_c00262{left:357.047720pt;}
.x80_c00262{left:361.944920pt;}
.x3e_c00262{left:366.173320pt;}
.x84_c00262{left:367.185320pt;}
.x55_c00262{left:369.847320pt;}
.x4b_c00262{left:375.426520pt;}
.x10_c00262{left:376.407720pt;}
.x5c_c00262{left:384.442120pt;}
.x47_c00262{left:386.122920pt;}
.x63_c00262{left:394.293720pt;}
.x70_c00262{left:395.846920pt;}
.x81_c00262{left:398.271320pt;}
.x2a_c00262{left:406.098920pt;}
.x4c_c00262{left:413.900120pt;}
.x3f_c00262{left:414.824120pt;}
.x11_c00262{left:424.983720pt;}
.x52_c00262{left:429.423320pt;}
.x1f_c00262{left:434.113720pt;}
.x5d_c00262{left:436.392920pt;}
.x31_c00262{left:444.774920pt;}
.x79_c00262{left:454.586920pt;}
.x12_c00262{left:464.416520pt;}
.x34_c00262{left:465.481320pt;}
.x4d_c00262{left:473.141720pt;}
.x40_c00262{left:474.268120pt;}
.x2b_c00262{left:484.405720pt;}
.x35_c00262{left:487.022840pt;}
.x6b_c00262{left:493.108920pt;}
.x41_c00262{left:494.208920pt;}
.x13_c00262{left:496.584920pt;}
.x48_c00262{left:503.761320pt;}
.x14_c00262{left:504.654520pt;}
.x42_c00262{left:512.798920pt;}
.x20_c00262{left:513.705320pt;}
.x32_c00262{left:523.688920pt;}
.x21_c00262{left:532.691320pt;}
.x53_c00262{left:533.822120pt;}
.x71_c00262{left:534.917720pt;}
.x8a_c00262{left:538.961320pt;}
.x58_c00262{left:543.009320pt;}
.x7a_c00262{left:553.718920pt;}
.x7c_c00262{left:554.796920pt;}
.x4e_c00262{left:561.515720pt;}
.x67_c00262{left:562.932520pt;}
.x33_c00262{left:564.459320pt;}
.x39_c00262{left:572.678520pt;}
.x64_c00262{left:580.572120pt;}
.x15_c00262{left:582.613720pt;}
.x4_c00262{left:585.090920pt;}
.x7d_c00262{left:592.707320pt;}
.x16_c00262{left:602.783320pt;}
.x49_c00262{left:611.442520pt;}
.x44_c00262{left:619.899320pt;}
.x6_c00262{left:625.408120pt;}
.x7_c00262{left:627.880920pt;}
.x85_c00262{left:632.012520pt;}
.x59_c00262{left:641.463720pt;}
.x5e_c00262{left:650.386920pt;}
.x86_c00262{left:651.337320pt;}
.x89_c00262{left:663.146920pt;}
.x87_c00262{left:664.770520pt;}
.x8b_c00262{left:674.552600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0157a00f64eae1124046786e.woff2')format("woff");}.ff1_c00263{font-family:ff1_c00263;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00263;src:url('chunks/assets/font_d3ed0db326181ee2c96cec44.woff2')format("woff");}.ff2_c00263{font-family:ff2_c00263;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00263;src:url('chunks/assets/font_e5ccfc9998e172e2109ca615.woff2')format("woff");}.ff3_c00263{font-family:ff3_c00263;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00263;src:url('chunks/assets/font_4ece6a12ee691e34bea4c174.woff2')format("woff");}.ff4_c00263{font-family:ff4_c00263;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m76_c00263{transform:matrix(0.071429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071429,0.000000,0.000000,0.250000,0,0);}
.m57_c00263{transform:matrix(0.094392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094392,0.000000,0.000000,0.250000,0,0);}
.m90_c00263{transform:matrix(0.101104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101104,0.000000,0.000000,0.250000,0,0);}
.m21_c00263{transform:matrix(0.118498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118498,0.000000,0.000000,0.250000,0,0);}
.ma4_c00263{transform:matrix(0.140244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140244,0.000000,0.000000,0.250000,0,0);}
.m86_c00263{transform:matrix(0.153964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153964,0.000000,0.000000,0.250000,0,0);}
.m75_c00263{transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);}
.ma3_c00263{transform:matrix(0.167683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167683,0.000000,0.000000,0.250000,0,0);}
.mbb_c00263{transform:matrix(0.169467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169467,0.000000,0.000000,0.250000,0,0);}
.ma2_c00263{transform:matrix(0.174797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174797,0.000000,0.000000,0.250000,0,0);}
.m8f_c00263{transform:matrix(0.176471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176471,0.000000,0.000000,0.250000,0,0);}
.m56_c00263{transform:matrix(0.181372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181372,0.000000,0.000000,0.250000,0,0);}
.m54_c00263{transform:matrix(0.191177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191177,0.000000,0.000000,0.250000,0,0);}
.m77_c00263{transform:matrix(0.201429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201429,0.000000,0.000000,0.250000,0,0);}
.m55_c00263{transform:matrix(0.208332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208332,0.000000,0.000000,0.250000,0,0);}
.m19_c00263{transform:matrix(0.210638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210638,0.000000,0.000000,0.250000,0,0);}
.m65_c00263{transform:matrix(0.218753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218753,0.000000,0.000000,0.250000,0,0);}
.m1e_c00263{transform:matrix(0.232803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232803,0.000000,0.000000,0.250000,0,0);}
.mc2_c00263{transform:matrix(0.236272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236272,0.000000,0.000000,0.250000,0,0);}
.m8_c00263{transform:matrix(0.240213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240213,0.000000,0.000000,0.250000,0,0);}
.m8c_c00263{transform:matrix(0.242101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242101,0.000000,0.000000,0.250000,0,0);}
.m6d_c00263{transform:matrix(0.242792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242792,0.000000,0.000000,0.250000,0,0);}
.m51_c00263{transform:matrix(0.247466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247466,0.000000,0.000000,0.250000,0,0);}
.m1_c00263{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00263{transform:matrix(0.252101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252101,0.000000,0.000000,0.250000,0,0);}
.m6b_c00263{transform:matrix(0.256683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256683,0.000000,0.000000,0.250000,0,0);}
.mc1_c00263{transform:matrix(0.257749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257749,0.000000,0.000000,0.250000,0,0);}
.m16_c00263{transform:matrix(0.261444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261444,0.000000,0.000000,0.250000,0,0);}
.m6e_c00263{transform:matrix(0.261618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261618,0.000000,0.000000,0.250000,0,0);}
.m34_c00263{transform:matrix(0.262189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262189,0.000000,0.000000,0.250000,0,0);}
.mad_c00263{transform:matrix(0.262271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262271,0.000000,0.000000,0.250000,0,0);}
.m6_c00263{transform:matrix(0.262837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262837,0.000000,0.000000,0.250000,0,0);}
.m6c_c00263{transform:matrix(0.262940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262940,0.000000,0.000000,0.250000,0,0);}
.m73_c00263{transform:matrix(0.264480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264480,0.000000,0.000000,0.250000,0,0);}
.m5d_c00263{transform:matrix(0.265974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265974,0.000000,0.000000,0.250000,0,0);}
.m92_c00263{transform:matrix(0.266286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266286,0.000000,0.000000,0.250000,0,0);}
.m25_c00263{transform:matrix(0.267450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267450,0.000000,0.000000,0.250000,0,0);}
.m43_c00263{transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);}
.m9b_c00263{transform:matrix(0.268726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268726,0.000000,0.000000,0.250000,0,0);}
.mb3_c00263{transform:matrix(0.269728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269728,0.000000,0.000000,0.250000,0,0);}
.m7c_c00263{transform:matrix(0.270312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270312,0.000000,0.000000,0.250000,0,0);}
.m12_c00263{transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);}
.mb4_c00263{transform:matrix(0.271381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271381,0.000000,0.000000,0.250000,0,0);}
.m5e_c00263{transform:matrix(0.271448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271448,0.000000,0.000000,0.250000,0,0);}
.mb6_c00263{transform:matrix(0.271757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271757,0.000000,0.000000,0.250000,0,0);}
.mb0_c00263{transform:matrix(0.271774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271774,0.000000,0.000000,0.250000,0,0);}
.m4_c00263{transform:matrix(0.271900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271900,0.000000,0.000000,0.250000,0,0);}
.m3_c00263{transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);}
.mcb_c00263{transform:matrix(0.273525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273525,0.000000,0.000000,0.250000,0,0);}
.mb8_c00263{transform:matrix(0.273903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273903,0.000000,0.000000,0.250000,0,0);}
.m47_c00263{transform:matrix(0.274544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274544,0.000000,0.000000,0.250000,0,0);}
.ma5_c00263{transform:matrix(0.275333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275333,0.000000,0.000000,0.250000,0,0);}
.m8e_c00263{transform:matrix(0.275368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275368,0.000000,0.000000,0.250000,0,0);}
.m38_c00263{transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);}
.ma_c00263{transform:matrix(0.276732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276732,0.000000,0.000000,0.250000,0,0);}
.mb_c00263{transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);}
.mbf_c00263{transform:matrix(0.277800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277800,0.000000,0.000000,0.250000,0,0);}
.m97_c00263{transform:matrix(0.278463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278463,0.000000,0.000000,0.250000,0,0);}
.mcd_c00263{transform:matrix(0.279198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279198,0.000000,0.000000,0.250000,0,0);}
.m9_c00263{transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);}
.m84_c00263{transform:matrix(0.280904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280904,0.000000,0.000000,0.250000,0,0);}
.m29_c00263{transform:matrix(0.282019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282019,0.000000,0.000000,0.250000,0,0);}
.m7e_c00263{transform:matrix(0.282126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282126,0.000000,0.000000,0.250000,0,0);}
.m3b_c00263{transform:matrix(0.282532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282532,0.000000,0.000000,0.250000,0,0);}
.mb1_c00263{transform:matrix(0.283415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283415,0.000000,0.000000,0.250000,0,0);}
.m1b_c00263{transform:matrix(0.284171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284171,0.000000,0.000000,0.250000,0,0);}
.mcc_c00263{transform:matrix(0.284709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284709,0.000000,0.000000,0.250000,0,0);}
.m59_c00263{transform:matrix(0.286897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286897,0.000000,0.000000,0.250000,0,0);}
.m2f_c00263{transform:matrix(0.287127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287127,0.000000,0.000000,0.250000,0,0);}
.mf_c00263{transform:matrix(0.287374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287374,0.000000,0.000000,0.250000,0,0);}
.m7d_c00263{transform:matrix(0.287440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287440,0.000000,0.000000,0.250000,0,0);}
.ma7_c00263{transform:matrix(0.287525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287525,0.000000,0.000000,0.250000,0,0);}
.mbc_c00263{transform:matrix(0.288065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288065,0.000000,0.000000,0.250000,0,0);}
.mc3_c00263{transform:matrix(0.288227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288227,0.000000,0.000000,0.250000,0,0);}
.m41_c00263{transform:matrix(0.288264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288264,0.000000,0.000000,0.250000,0,0);}
.m88_c00263{transform:matrix(0.288894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288894,0.000000,0.000000,0.250000,0,0);}
.m2a_c00263{transform:matrix(0.289636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289636,0.000000,0.000000,0.250000,0,0);}
.m50_c00263{transform:matrix(0.290124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290124,0.000000,0.000000,0.250000,0,0);}
.m0_c00263{transform:matrix(0.291044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291044,0.000000,0.000000,0.250000,0,0);}
.m36_c00263{transform:matrix(0.291495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291495,0.000000,0.000000,0.250000,0,0);}
.ma6_c00263{transform:matrix(0.291864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291864,0.000000,0.000000,0.250000,0,0);}
.m2_c00263{transform:matrix(0.292722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292722,0.000000,0.000000,0.250000,0,0);}
.m2d_c00263{transform:matrix(0.293234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293234,0.000000,0.000000,0.250000,0,0);}
.m31_c00263{transform:matrix(0.293540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293540,0.000000,0.000000,0.250000,0,0);}
.m15_c00263{transform:matrix(0.293640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293640,0.000000,0.000000,0.250000,0,0);}
.m80_c00263{transform:matrix(0.293917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293917,0.000000,0.000000,0.250000,0,0);}
.m24_c00263{transform:matrix(0.294318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294318,0.000000,0.000000,0.250000,0,0);}
.m5_c00263{transform:matrix(0.294417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294417,0.000000,0.000000,0.250000,0,0);}
.m28_c00263{transform:matrix(0.295101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295101,0.000000,0.000000,0.250000,0,0);}
.ma1_c00263{transform:matrix(0.296355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296355,0.000000,0.000000,0.250000,0,0);}
.m30_c00263{transform:matrix(0.296903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296903,0.000000,0.000000,0.250000,0,0);}
.m35_c00263{transform:matrix(0.296995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296995,0.000000,0.000000,0.250000,0,0);}
.m45_c00263{transform:matrix(0.297564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297564,0.000000,0.000000,0.250000,0,0);}
.m99_c00263{transform:matrix(0.297992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297992,0.000000,0.000000,0.250000,0,0);}
.m46_c00263{transform:matrix(0.298218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298218,0.000000,0.000000,0.250000,0,0);}
.mae_c00263{transform:matrix(0.298230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298230,0.000000,0.000000,0.250000,0,0);}
.m39_c00263{transform:matrix(0.299031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299031,0.000000,0.000000,0.250000,0,0);}
.m44_c00263{transform:matrix(0.300214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300214,0.000000,0.000000,0.250000,0,0);}
.m14_c00263{transform:matrix(0.300387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300387,0.000000,0.000000,0.250000,0,0);}
.m8b_c00263{transform:matrix(0.300640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300640,0.000000,0.000000,0.250000,0,0);}
.m5f_c00263{transform:matrix(0.300953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300953,0.000000,0.000000,0.250000,0,0);}
.m81_c00263{transform:matrix(0.301226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301226,0.000000,0.000000,0.250000,0,0);}
.m4d_c00263{transform:matrix(0.301674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301674,0.000000,0.000000,0.250000,0,0);}
.ma9_c00263{transform:matrix(0.302495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302495,0.000000,0.000000,0.250000,0,0);}
.m96_c00263{transform:matrix(0.302974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302974,0.000000,0.000000,0.250000,0,0);}
.m60_c00263{transform:matrix(0.303239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303239,0.000000,0.000000,0.250000,0,0);}
.m1c_c00263{transform:matrix(0.303463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303463,0.000000,0.000000,0.250000,0,0);}
.m7_c00263{transform:matrix(0.303469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303469,0.000000,0.000000,0.250000,0,0);}
.m49_c00263{transform:matrix(0.303512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303512,0.000000,0.000000,0.250000,0,0);}
.m1d_c00263{transform:matrix(0.304994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304994,0.000000,0.000000,0.250000,0,0);}
.m71_c00263{transform:matrix(0.305126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305126,0.000000,0.000000,0.250000,0,0);}
.m83_c00263{transform:matrix(0.305266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305266,0.000000,0.000000,0.250000,0,0);}
.m74_c00263{transform:matrix(0.305505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305505,0.000000,0.000000,0.250000,0,0);}
.m4a_c00263{transform:matrix(0.307653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307653,0.000000,0.000000,0.250000,0,0);}
.m64_c00263{transform:matrix(0.307766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307766,0.000000,0.000000,0.250000,0,0);}
.m63_c00263{transform:matrix(0.307966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307966,0.000000,0.000000,0.250000,0,0);}
.m4e_c00263{transform:matrix(0.308052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308052,0.000000,0.000000,0.250000,0,0);}
.mc6_c00263{transform:matrix(0.308737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308737,0.000000,0.000000,0.250000,0,0);}
.mb5_c00263{transform:matrix(0.309617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309617,0.000000,0.000000,0.250000,0,0);}
.m48_c00263{transform:matrix(0.311037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311037,0.000000,0.000000,0.250000,0,0);}
.m6f_c00263{transform:matrix(0.313127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313127,0.000000,0.000000,0.250000,0,0);}
.m87_c00263{transform:matrix(0.313375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313375,0.000000,0.000000,0.250000,0,0);}
.m82_c00263{transform:matrix(0.313458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313458,0.000000,0.000000,0.250000,0,0);}
.m8d_c00263{transform:matrix(0.313677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313677,0.000000,0.000000,0.250000,0,0);}
.m1f_c00263{transform:matrix(0.314011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314011,0.000000,0.000000,0.250000,0,0);}
.mbe_c00263{transform:matrix(0.314268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314268,0.000000,0.000000,0.250000,0,0);}
.m4b_c00263{transform:matrix(0.314631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314631,0.000000,0.000000,0.250000,0,0);}
.m69_c00263{transform:matrix(0.315357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315357,0.000000,0.000000,0.250000,0,0);}
.m3f_c00263{transform:matrix(0.315404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315404,0.000000,0.000000,0.250000,0,0);}
.m85_c00263{transform:matrix(0.316231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316231,0.000000,0.000000,0.250000,0,0);}
.m3a_c00263{transform:matrix(0.316459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316459,0.000000,0.000000,0.250000,0,0);}
.m42_c00263{transform:matrix(0.317014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317014,0.000000,0.000000,0.250000,0,0);}
.m52_c00263{transform:matrix(0.318127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318127,0.000000,0.000000,0.250000,0,0);}
.mce_c00263{transform:matrix(0.319530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319530,0.000000,0.000000,0.250000,0,0);}
.mc9_c00263{transform:matrix(0.319577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319577,0.000000,0.000000,0.250000,0,0);}
.m5c_c00263{transform:matrix(0.320195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320195,0.000000,0.000000,0.250000,0,0);}
.mb9_c00263{transform:matrix(0.321018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321018,0.000000,0.000000,0.250000,0,0);}
.m20_c00263{transform:matrix(0.321373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321373,0.000000,0.000000,0.250000,0,0);}
.mab_c00263{transform:matrix(0.321947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321947,0.000000,0.000000,0.250000,0,0);}
.m7b_c00263{transform:matrix(0.323375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323375,0.000000,0.000000,0.250000,0,0);}
.m5b_c00263{transform:matrix(0.323704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323704,0.000000,0.000000,0.250000,0,0);}
.m2c_c00263{transform:matrix(0.324033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324033,0.000000,0.000000,0.250000,0,0);}
.m26_c00263{transform:matrix(0.324051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324051,0.000000,0.000000,0.250000,0,0);}
.mc8_c00263{transform:matrix(0.324230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324230,0.000000,0.000000,0.250000,0,0);}
.m70_c00263{transform:matrix(0.324385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324385,0.000000,0.000000,0.250000,0,0);}
.mb7_c00263{transform:matrix(0.324603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324603,0.000000,0.000000,0.250000,0,0);}
.mbd_c00263{transform:matrix(0.324931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324931,0.000000,0.000000,0.250000,0,0);}
.m95_c00263{transform:matrix(0.325033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325033,0.000000,0.000000,0.250000,0,0);}
.m32_c00263{transform:matrix(0.325284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325284,0.000000,0.000000,0.250000,0,0);}
.mc7_c00263{transform:matrix(0.325340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325340,0.000000,0.000000,0.250000,0,0);}
.me_c00263{transform:matrix(0.325424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325424,0.000000,0.000000,0.250000,0,0);}
.m33_c00263{transform:matrix(0.325605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325605,0.000000,0.000000,0.250000,0,0);}
.m9e_c00263{transform:matrix(0.325881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325881,0.000000,0.000000,0.250000,0,0);}
.mc_c00263{transform:matrix(0.326055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326055,0.000000,0.000000,0.250000,0,0);}
.m11_c00263{transform:matrix(0.326646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326646,0.000000,0.000000,0.250000,0,0);}
.m18_c00263{transform:matrix(0.327142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327142,0.000000,0.000000,0.250000,0,0);}
.mac_c00263{transform:matrix(0.327379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327379,0.000000,0.000000,0.250000,0,0);}
.m3e_c00263{transform:matrix(0.327721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327721,0.000000,0.000000,0.250000,0,0);}
.m9d_c00263{transform:matrix(0.328873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328873,0.000000,0.000000,0.250000,0,0);}
.m67_c00263{transform:matrix(0.329059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329059,0.000000,0.000000,0.250000,0,0);}
.m78_c00263{transform:matrix(0.329209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329209,0.000000,0.000000,0.250000,0,0);}
.maf_c00263{transform:matrix(0.329649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329649,0.000000,0.000000,0.250000,0,0);}
.mb2_c00263{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);}
.m37_c00263{transform:matrix(0.329991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329991,0.000000,0.000000,0.250000,0,0);}
.m9c_c00263{transform:matrix(0.330578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330578,0.000000,0.000000,0.250000,0,0);}
.m40_c00263{transform:matrix(0.330887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330887,0.000000,0.000000,0.250000,0,0);}
.mba_c00263{transform:matrix(0.331240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331240,0.000000,0.000000,0.250000,0,0);}
.m58_c00263{transform:matrix(0.331496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331496,0.000000,0.000000,0.250000,0,0);}
.m3c_c00263{transform:matrix(0.332067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332067,0.000000,0.000000,0.250000,0,0);}
.m9f_c00263{transform:matrix(0.332568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332568,0.000000,0.000000,0.250000,0,0);}
.m2e_c00263{transform:matrix(0.332985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332985,0.000000,0.000000,0.250000,0,0);}
.m91_c00263{transform:matrix(0.335279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335279,0.000000,0.000000,0.250000,0,0);}
.m62_c00263{transform:matrix(0.335516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335516,0.000000,0.000000,0.250000,0,0);}
.m93_c00263{transform:matrix(0.335834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335834,0.000000,0.000000,0.250000,0,0);}
.ma0_c00263{transform:matrix(0.335881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335881,0.000000,0.000000,0.250000,0,0);}
.m68_c00263{transform:matrix(0.337051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337051,0.000000,0.000000,0.250000,0,0);}
.m8a_c00263{transform:matrix(0.339155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339155,0.000000,0.000000,0.250000,0,0);}
.mc4_c00263{transform:matrix(0.341796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341796,0.000000,0.000000,0.250000,0,0);}
.m7a_c00263{transform:matrix(0.343718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343718,0.000000,0.000000,0.250000,0,0);}
.m79_c00263{transform:matrix(0.343742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343742,0.000000,0.000000,0.250000,0,0);}
.mc0_c00263{transform:matrix(0.343796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343796,0.000000,0.000000,0.250000,0,0);}
.m94_c00263{transform:matrix(0.345574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345574,0.000000,0.000000,0.250000,0,0);}
.mc5_c00263{transform:matrix(0.346032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346032,0.000000,0.000000,0.250000,0,0);}
.m17_c00263{transform:matrix(0.347903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347903,0.000000,0.000000,0.250000,0,0);}
.md_c00263{transform:matrix(0.348747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348747,0.000000,0.000000,0.250000,0,0);}
.m72_c00263{transform:matrix(0.349880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349880,0.000000,0.000000,0.250000,0,0);}
.m7f_c00263{transform:matrix(0.350249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350249,0.000000,0.000000,0.250000,0,0);}
.ma8_c00263{transform:matrix(0.350352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350352,0.000000,0.000000,0.250000,0,0);}
.m13_c00263{transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);}
.m61_c00263{transform:matrix(0.355641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355641,0.000000,0.000000,0.250000,0,0);}
.m5a_c00263{transform:matrix(0.357402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357402,0.000000,0.000000,0.250000,0,0);}
.m98_c00263{transform:matrix(0.357996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357996,0.000000,0.000000,0.250000,0,0);}
.mca_c00263{transform:matrix(0.359996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359996,0.000000,0.000000,0.250000,0,0);}
.m53_c00263{transform:matrix(0.361546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361546,0.000000,0.000000,0.250000,0,0);}
.m27_c00263{transform:matrix(0.363743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363743,0.000000,0.000000,0.250000,0,0);}
.m23_c00263{transform:matrix(0.368239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368239,0.000000,0.000000,0.250000,0,0);}
.m4f_c00263{transform:matrix(0.368347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368347,0.000000,0.000000,0.250000,0,0);}
.m89_c00263{transform:matrix(0.368367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368367,0.000000,0.000000,0.250000,0,0);}
.m3d_c00263{transform:matrix(0.372801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372801,0.000000,0.000000,0.250000,0,0);}
.m2b_c00263{transform:matrix(0.374589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374589,0.000000,0.000000,0.250000,0,0);}
.m22_c00263{transform:matrix(0.381862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381862,0.000000,0.000000,0.250000,0,0);}
.m4c_c00263{transform:matrix(0.385032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385032,0.000000,0.000000,0.250000,0,0);}
.m66_c00263{transform:matrix(0.388446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388446,0.000000,0.000000,0.250000,0,0);}
.m6a_c00263{transform:matrix(0.402629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402629,0.000000,0.000000,0.250000,0,0);}
.m10_c00263{transform:matrix(0.424181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424181,0.000000,0.000000,0.250000,0,0);}
.m9a_c00263{transform:matrix(0.429896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429896,0.000000,0.000000,0.250000,0,0);}
.maa_c00263{transform:matrix(0.438583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438583,0.000000,0.000000,0.250000,0,0);}
.v1_c00263{vertical-align:-11.404800px;}
.v0_c00263{vertical-align:0.000000px;}
.ls6_c00263{letter-spacing:-2.647267px;}
.ls7_c00263{letter-spacing:-2.382540px;}
.ls5_c00263{letter-spacing:0.000000px;}
.lse_c00263{letter-spacing:0.605090px;}
.ls0_c00263{letter-spacing:0.695853px;}
.lsa_c00263{letter-spacing:0.990834px;}
.lsf_c00263{letter-spacing:1.159887px;}
.ls1_c00263{letter-spacing:2.541376px;}
.lsd_c00263{letter-spacing:3.435310px;}
.ls8_c00263{letter-spacing:3.534310px;}
.ls4_c00263{letter-spacing:3.781810px;}
.ls3_c00263{letter-spacing:6.958028px;}
.ls9_c00263{letter-spacing:48.470598px;}
.lsb_c00263{letter-spacing:49.896198px;}
.lsc_c00263{letter-spacing:58.449798px;}
.ls2_c00263{letter-spacing:76.277232px;}
.sc__c00263{text-shadow:none;}
.sc0_c00263{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00263{-webkit-text-stroke:0px transparent;}
.sc0_c00263{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00263{word-spacing:-18.909050px;}
.ws1_c00263{word-spacing:0.000000px;}
._10_c00263{margin-left:-12.555730px;}
._17_c00263{margin-left:-10.967176px;}
._9_c00263{margin-left:-9.530092px;}
._1_c00263{margin-left:-2.269201px;}
._1b_c00263{width:1.656072px;}
._5_c00263{width:5.521538px;}
._f_c00263{width:7.260968px;}
._4_c00263{width:9.227702px;}
._18_c00263{width:10.362242px;}
._6_c00263{width:11.496573px;}
._3_c00263{width:12.782385px;}
._16_c00263{width:15.505479px;}
._b_c00263{width:17.623320px;}
._c_c00263{width:20.194955px;}
._8_c00263{width:21.631841px;}
._14_c00263{width:23.220373px;}
._12_c00263{width:25.478992px;}
._13_c00263{width:27.597465px;}
._11_c00263{width:30.234451px;}
._7_c00263{width:34.641349px;}
._a_c00263{width:37.212973px;}
._e_c00263{width:39.567215px;}
._15_c00263{width:41.030847px;}
._d_c00263{width:42.113874px;}
._2_c00263{width:46.138251px;}
._19_c00263{width:47.819874px;}
._1a_c00263{width:100.091184px;}
._0_c00263{width:143.154792px;}
.fc0_c00263{color:transparent;}
.fs1_c00263{font-size:22.176000px;}
.fs5_c00263{font-size:27.720000px;}
.fsd_c00263{font-size:33.660000px;}
.fse_c00263{font-size:34.848000px;}
.fs4_c00263{font-size:39.600000px;}
.fs7_c00263{font-size:48.470598px;}
.fs8_c00263{font-size:49.896198px;}
.fs9_c00263{font-size:58.449798px;}
.fs2_c00263{font-size:62.568000px;}
.fs3_c00263{font-size:66.528000px;}
.fsb_c00263{font-size:68.706198px;}
.fs6_c00263{font-size:70.686198px;}
.fs0_c00263{font-size:75.636198px;}
.fsa_c00263{font-size:78.804000px;}
.fsc_c00263{font-size:79.992198px;}
.y0_c00263{bottom:0.000000px;}
.y21_c00263{bottom:15.237135px;}
.y1_c00263{bottom:76.500000px;}
.y20_c00263{bottom:91.863135px;}
.y1f_c00263{bottom:115.029135px;}
.y1e_c00263{bottom:148.530735px;}
.y1d_c00263{bottom:181.314585px;}
.y1c_c00263{bottom:213.395535px;}
.y1b_c00263{bottom:245.466585px;}
.y1a_c00263{bottom:341.343135px;}
.y19_c00263{bottom:373.419135px;}
.y18_c00263{bottom:405.490185px;}
.y17_c00263{bottom:437.566185px;}
.y16_c00263{bottom:469.290735px;}
.y15_c00263{bottom:501.010335px;}
.y14_c00263{bottom:533.081385px;}
.y13_c00263{bottom:567.652185px;}
.y12_c00263{bottom:600.084585px;}
.y11_c00263{bottom:631.804185px;}
.y10_c00263{bottom:664.597935px;}
.yf_c00263{bottom:680.277060px;}
.ye_c00263{bottom:689.540985px;}
.yd_c00263{bottom:697.386735px;}
.yc_c00263{bottom:729.814185px;}
.yb_c00263{bottom:761.538735px;}
.ya_c00263{bottom:793.609785px;}
.y9_c00263{bottom:805.732335px;}
.y8_c00263{bottom:825.690735px;}
.y7_c00263{bottom:857.405385px;}
.y6_c00263{bottom:872.735535px;}
.y5_c00263{bottom:919.775385px;}
.y4_c00263{bottom:930.110985px;}
.y3_c00263{bottom:1066.260735px;}
.y2_c00263{bottom:1070.176185px;}
.h3_c00263{height:23.128875px;}
.h6_c00263{height:28.911094px;}
.h8_c00263{height:32.281418px;}
.he_c00263{height:33.035449px;}
.h9_c00263{height:33.230868px;}
.hf_c00263{height:34.201406px;}
.ha_c00263{height:38.927565px;}
.h5_c00263{height:41.301563px;}
.hc_c00263{height:67.431376px;}
.h7_c00263{height:69.340123px;}
.h4_c00263{height:69.386625px;}
.h2_c00263{height:74.232792px;}
.hb_c00263{height:77.341816px;}
.hd_c00263{height:78.507968px;}
.h1_c00263{height:1110.000000px;}
.h0_c00263{height:1263.000000px;}
.w1_c00263{width:763.500000px;}
.w0_c00263{width:892.500000px;}
.x0_c00263{left:0.000000px;}
.x1_c00263{left:64.500000px;}
.x50_c00263{left:88.210035px;}
.x5_c00263{left:96.580485px;}
.x6c_c00263{left:97.595235px;}
.x6_c00263{left:107.168535px;}
.x2d_c00263{left:108.465435px;}
.x2e_c00263{left:113.390685px;}
.x2f_c00263{left:118.494135px;}
.x22_c00263{left:129.344535px;}
.x3d_c00263{left:130.458285px;}
.x30_c00263{left:140.803785px;}
.x63_c00263{left:141.858135px;}
.x4_c00263{left:143.823285px;}
.x8_c00263{left:151.936335px;}
.x3e_c00263{left:163.410435px;}
.x70_c00263{left:166.004235px;}
.x43_c00263{left:174.463785px;}
.x15_c00263{left:184.081635px;}
.x31_c00263{left:185.353785px;}
.x44_c00263{left:195.857685px;}
.x64_c00263{left:196.961535px;}
.x16_c00263{left:207.247635px;}
.x69_c00263{left:208.866285px;}
.x23_c00263{left:219.191985px;}
.x32_c00263{left:229.908735px;}
.x4a_c00263{left:239.363235px;}
.x24_c00263{left:241.343235px;}
.x51_c00263{left:243.833085px;}
.x9_c00263{left:251.282835px;}
.x3_c00263{left:262.450035px;}
.x3f_c00263{left:263.732085px;}
.x17_c00263{left:273.869685px;}
.xa_c00263{left:284.428035px;}
.x65_c00263{left:286.190235px;}
.x25_c00263{left:295.897185px;}
.x5d_c00263{left:296.916885px;}
.x38_c00263{left:298.624635px;}
.xb_c00263{left:307.945485px;}
.x18_c00263{left:317.058435px;}
.x33_c00263{left:318.444435px;}
.x71_c00263{left:320.023485px;}
.x26_c00263{left:329.151285px;}
.x45_c00263{left:330.443235px;}
.x5e_c00263{left:332.111385px;}
.x19_c00263{left:340.387785px;}
.x5f_c00263{left:342.105435px;}
.x52_c00263{left:352.460835px;}
.x7_c00263{left:356.712885px;}
.x27_c00263{left:363.514185px;}
.xc_c00263{left:373.696335px;}
.x6d_c00263{left:376.537635px;}
.x1a_c00263{left:384.853635px;}
.x60_c00263{left:392.971635px;}
.x28_c00263{left:396.268335px;}
.x1b_c00263{left:406.678185px;}
.x4c_c00263{left:407.836485px;}
.x66_c00263{left:418.038435px;}
.x47_c00263{left:419.092785px;}
.xd_c00263{left:429.131385px;}
.x53_c00263{left:430.200585px;}
.x6a_c00263{left:438.947235px;}
.x58_c00263{left:441.357885px;}
.x67_c00263{left:443.283435px;}
.x34_c00263{left:451.544985px;}
.x39_c00263{left:453.975435px;}
.xe_c00263{left:462.276585px;}
.x68_c00263{left:463.330935px;}
.x3a_c00263{left:474.706035px;}
.x40_c00263{left:483.497235px;}
.xf_c00263{left:485.432685px;}
.x4d_c00263{left:496.134585px;}
.x54_c00263{left:497.183985px;}
.x10_c00263{left:507.484935px;}
.x29_c00263{left:517.058235px;}
.x48_c00263{left:518.181885px;}
.x2a_c00263{left:527.690835px;}
.x4b_c00263{left:529.071885px;}
.x35_c00263{left:539.625285px;}
.x55_c00263{left:541.036035px;}
.x6e_c00263{left:549.787635px;}
.x1c_c00263{left:551.030085px;}
.x46_c00263{left:562.078485px;}
.x59_c00263{left:563.340735px;}
.x42_c00263{left:566.818110px;}
.x3b_c00263{left:572.740785px;}
.x1d_c00263{left:574.156485px;}
.x5a_c00263{left:579.017385px;}
.x11_c00263{left:584.021835px;}
.x61_c00263{left:585.506835px;}
.x12_c00263{left:592.783335px;}
.x72_c00263{left:593.981235px;}
.x2b_c00263{left:595.862235px;}
.x41_c00263{left:598.535235px;}
.x1e_c00263{left:606.880935px;}
.x56_c00263{left:617.666985px;}
.x3c_c00263{left:627.809535px;}
.x57_c00263{left:629.279685px;}
.x1f_c00263{left:638.135235px;}
.x13_c00263{left:640.085535px;}
.x49_c00263{left:649.540035px;}
.x4e_c00263{left:650.807235px;}
.x6b_c00263{left:660.271635px;}
.x20_c00263{left:661.306185px;}
.x2_c00263{left:672.483285px;}
.x6f_c00263{left:673.527735px;}
.x2c_c00263{left:683.046585px;}
.x4f_c00263{left:684.289035px;}
.x62_c00263{left:694.644435px;}
.x5b_c00263{left:695.683935px;}
.x36_c00263{left:705.697785px;}
.x74_c00263{left:706.880835px;}
.x21_c00263{left:716.736285px;}
.x37_c00263{left:728.096535px;}
.x5c_c00263{left:729.497385px;}
.x14_c00263{left:739.189485px;}
.x73_c00263{left:754.638435px;}
@media print{
.v1_c00263{vertical-align:-10.137600pt;}
.v0_c00263{vertical-align:0.000000pt;}
.ls6_c00263{letter-spacing:-2.353126pt;}
.ls7_c00263{letter-spacing:-2.117814pt;}
.ls5_c00263{letter-spacing:0.000000pt;}
.lse_c00263{letter-spacing:0.537857pt;}
.ls0_c00263{letter-spacing:0.618536pt;}
.lsa_c00263{letter-spacing:0.880742pt;}
.lsf_c00263{letter-spacing:1.031011pt;}
.ls1_c00263{letter-spacing:2.259001pt;}
.lsd_c00263{letter-spacing:3.053609pt;}
.ls8_c00263{letter-spacing:3.141609pt;}
.ls4_c00263{letter-spacing:3.361609pt;}
.ls3_c00263{letter-spacing:6.184914pt;}
.ls9_c00263{letter-spacing:43.084976pt;}
.lsb_c00263{letter-spacing:44.352176pt;}
.lsc_c00263{letter-spacing:51.955376pt;}
.ls2_c00263{letter-spacing:67.801984pt;}
.ws0_c00263{word-spacing:-16.808044pt;}
.ws1_c00263{word-spacing:0.000000pt;}
._10_c00263{margin-left:-11.160649pt;}
._17_c00263{margin-left:-9.748601pt;}
._9_c00263{margin-left:-8.471193pt;}
._1_c00263{margin-left:-2.017068pt;}
._1b_c00263{width:1.472064pt;}
._5_c00263{width:4.908034pt;}
._f_c00263{width:6.454194pt;}
._4_c00263{width:8.202402pt;}
._18_c00263{width:9.210882pt;}
._6_c00263{width:10.219176pt;}
._3_c00263{width:11.362120pt;}
._16_c00263{width:13.782648pt;}
._b_c00263{width:15.665173pt;}
._c_c00263{width:17.951071pt;}
._8_c00263{width:19.228303pt;}
._14_c00263{width:20.640332pt;}
._12_c00263{width:22.647993pt;}
._13_c00263{width:24.531080pt;}
._11_c00263{width:26.875068pt;}
._7_c00263{width:30.792310pt;}
._a_c00263{width:33.078198pt;}
._e_c00263{width:35.170857pt;}
._15_c00263{width:36.471864pt;}
._d_c00263{width:37.434555pt;}
._2_c00263{width:41.011779pt;}
._19_c00263{width:42.506555pt;}
._1a_c00263{width:88.969941pt;}
._0_c00263{width:127.248704pt;}
.fs1_c00263{font-size:19.712000pt;}
.fs5_c00263{font-size:24.640000pt;}
.fsd_c00263{font-size:29.920000pt;}
.fse_c00263{font-size:30.976000pt;}
.fs4_c00263{font-size:35.200000pt;}
.fs7_c00263{font-size:43.084976pt;}
.fs8_c00263{font-size:44.352176pt;}
.fs9_c00263{font-size:51.955376pt;}
.fs2_c00263{font-size:55.616000pt;}
.fs3_c00263{font-size:59.136000pt;}
.fsb_c00263{font-size:61.072176pt;}
.fs6_c00263{font-size:62.832176pt;}
.fs0_c00263{font-size:67.232176pt;}
.fsa_c00263{font-size:70.048000pt;}
.fsc_c00263{font-size:71.104176pt;}
.y0_c00263{bottom:0.000000pt;}
.y21_c00263{bottom:13.544120pt;}
.y1_c00263{bottom:68.000000pt;}
.y20_c00263{bottom:81.656120pt;}
.y1f_c00263{bottom:102.248120pt;}
.y1e_c00263{bottom:132.027320pt;}
.y1d_c00263{bottom:161.168520pt;}
.y1c_c00263{bottom:189.684920pt;}
.y1b_c00263{bottom:218.192520pt;}
.y1a_c00263{bottom:303.416120pt;}
.y19_c00263{bottom:331.928120pt;}
.y18_c00263{bottom:360.435720pt;}
.y17_c00263{bottom:388.947720pt;}
.y16_c00263{bottom:417.147320pt;}
.y15_c00263{bottom:445.342520pt;}
.y14_c00263{bottom:473.850120pt;}
.y13_c00263{bottom:504.579720pt;}
.y12_c00263{bottom:533.408520pt;}
.y11_c00263{bottom:561.603720pt;}
.y10_c00263{bottom:590.753720pt;}
.yf_c00263{bottom:604.690720pt;}
.ye_c00263{bottom:612.925320pt;}
.yd_c00263{bottom:619.899320pt;}
.yc_c00263{bottom:648.723720pt;}
.yb_c00263{bottom:676.923320pt;}
.ya_c00263{bottom:705.430920pt;}
.y9_c00263{bottom:716.206520pt;}
.y8_c00263{bottom:733.947320pt;}
.y7_c00263{bottom:762.138120pt;}
.y6_c00263{bottom:775.764920pt;}
.y5_c00263{bottom:817.578120pt;}
.y4_c00263{bottom:826.765320pt;}
.y3_c00263{bottom:947.787320pt;}
.y2_c00263{bottom:951.267720pt;}
.h3_c00263{height:20.559000pt;}
.h6_c00263{height:25.698750pt;}
.h8_c00263{height:28.694594pt;}
.he_c00263{height:29.364844pt;}
.h9_c00263{height:29.538549pt;}
.hf_c00263{height:30.401250pt;}
.ha_c00263{height:34.602280pt;}
.h5_c00263{height:36.712500pt;}
.hc_c00263{height:59.939001pt;}
.h7_c00263{height:61.635665pt;}
.h4_c00263{height:61.677000pt;}
.h2_c00263{height:65.984704pt;}
.hb_c00263{height:68.748281pt;}
.hd_c00263{height:69.784860pt;}
.h1_c00263{height:986.666667pt;}
.h0_c00263{height:1122.666667pt;}
.w1_c00263{width:678.666667pt;}
.w0_c00263{width:793.333333pt;}
.x0_c00263{left:0.000000pt;}
.x1_c00263{left:57.333333pt;}
.x50_c00263{left:78.408920pt;}
.x5_c00263{left:85.849320pt;}
.x6c_c00263{left:86.751320pt;}
.x6_c00263{left:95.260920pt;}
.x2d_c00263{left:96.413720pt;}
.x2e_c00263{left:100.791720pt;}
.x2f_c00263{left:105.328120pt;}
.x22_c00263{left:114.972920pt;}
.x3d_c00263{left:115.962920pt;}
.x30_c00263{left:125.158920pt;}
.x63_c00263{left:126.096120pt;}
.x4_c00263{left:127.842920pt;}
.x8_c00263{left:135.054520pt;}
.x3e_c00263{left:145.253720pt;}
.x70_c00263{left:147.559320pt;}
.x43_c00263{left:155.078920pt;}
.x15_c00263{left:163.628120pt;}
.x31_c00263{left:164.758920pt;}
.x44_c00263{left:174.095720pt;}
.x64_c00263{left:175.076920pt;}
.x16_c00263{left:184.220120pt;}
.x69_c00263{left:185.658920pt;}
.x23_c00263{left:194.837320pt;}
.x32_c00263{left:204.363320pt;}
.x4a_c00263{left:212.767320pt;}
.x24_c00263{left:214.527320pt;}
.x51_c00263{left:216.740520pt;}
.x9_c00263{left:223.362520pt;}
.x3_c00263{left:233.288920pt;}
.x3f_c00263{left:234.428520pt;}
.x17_c00263{left:243.439720pt;}
.xa_c00263{left:252.824920pt;}
.x65_c00263{left:254.391320pt;}
.x25_c00263{left:263.019720pt;}
.x5d_c00263{left:263.926120pt;}
.x38_c00263{left:265.444120pt;}
.xb_c00263{left:273.729320pt;}
.x18_c00263{left:281.829720pt;}
.x33_c00263{left:283.061720pt;}
.x71_c00263{left:284.465320pt;}
.x26_c00263{left:292.578920pt;}
.x45_c00263{left:293.727320pt;}
.x5e_c00263{left:295.210120pt;}
.x19_c00263{left:302.566920pt;}
.x5f_c00263{left:304.093720pt;}
.x52_c00263{left:313.298520pt;}
.x7_c00263{left:317.078120pt;}
.x27_c00263{left:323.123720pt;}
.xc_c00263{left:332.174520pt;}
.x6d_c00263{left:334.700120pt;}
.x1a_c00263{left:342.092120pt;}
.x60_c00263{left:349.308120pt;}
.x28_c00263{left:352.238520pt;}
.x1b_c00263{left:361.491720pt;}
.x4c_c00263{left:362.521320pt;}
.x66_c00263{left:371.589720pt;}
.x47_c00263{left:372.526920pt;}
.xd_c00263{left:381.450120pt;}
.x53_c00263{left:382.400520pt;}
.x6a_c00263{left:390.175320pt;}
.x58_c00263{left:392.318120pt;}
.x67_c00263{left:394.029720pt;}
.x34_c00263{left:401.373320pt;}
.x39_c00263{left:403.533720pt;}
.xe_c00263{left:410.912520pt;}
.x68_c00263{left:411.849720pt;}
.x3a_c00263{left:421.960920pt;}
.x40_c00263{left:429.775320pt;}
.xf_c00263{left:431.495720pt;}
.x4d_c00263{left:441.008520pt;}
.x54_c00263{left:441.941320pt;}
.x10_c00263{left:451.097720pt;}
.x29_c00263{left:459.607320pt;}
.x48_c00263{left:460.606120pt;}
.x2a_c00263{left:469.058520pt;}
.x4b_c00263{left:470.286120pt;}
.x35_c00263{left:479.666920pt;}
.x55_c00263{left:480.920920pt;}
.x6e_c00263{left:488.700120pt;}
.x1c_c00263{left:489.804520pt;}
.x46_c00263{left:499.625320pt;}
.x59_c00263{left:500.747320pt;}
.x42_c00263{left:503.838320pt;}
.x3b_c00263{left:509.102920pt;}
.x1d_c00263{left:510.361320pt;}
.x5a_c00263{left:514.682120pt;}
.x11_c00263{left:519.130520pt;}
.x61_c00263{left:520.450520pt;}
.x12_c00263{left:526.918520pt;}
.x72_c00263{left:527.983320pt;}
.x2b_c00263{left:529.655320pt;}
.x41_c00263{left:532.031320pt;}
.x1e_c00263{left:539.449720pt;}
.x56_c00263{left:549.037320pt;}
.x3c_c00263{left:558.052920pt;}
.x57_c00263{left:559.359720pt;}
.x1f_c00263{left:567.231320pt;}
.x13_c00263{left:568.964920pt;}
.x49_c00263{left:577.368920pt;}
.x4e_c00263{left:578.495320pt;}
.x6b_c00263{left:586.908120pt;}
.x20_c00263{left:587.827720pt;}
.x2_c00263{left:597.762920pt;}
.x6f_c00263{left:598.691320pt;}
.x2c_c00263{left:607.152520pt;}
.x4f_c00263{left:608.256920pt;}
.x62_c00263{left:617.461720pt;}
.x5b_c00263{left:618.385720pt;}
.x36_c00263{left:627.286920pt;}
.x74_c00263{left:628.338520pt;}
.x21_c00263{left:637.098920pt;}
.x37_c00263{left:647.196920pt;}
.x5c_c00263{left:648.442120pt;}
.x14_c00263{left:657.057320pt;}
.x73_c00263{left:670.789720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5dcea568977324046153184e.woff2')format("woff");}.ff1_c00264{font-family:ff1_c00264;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00264;src:url('chunks/assets/font_a2f5908c224b5af08e2c622f.woff2')format("woff");}.ff2_c00264{font-family:ff2_c00264;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00264;src:url('chunks/assets/font_fe420c76c2483c528ff48bdd.woff2')format("woff");}.ff3_c00264{font-family:ff3_c00264;line-height:0.666000;font-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_c00264{transform:matrix(0.184524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184524,0.000000,0.000000,0.250000,0,0);}
.m95_c00264{transform:matrix(0.190909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190909,0.000000,0.000000,0.250000,0,0);}
.m7a_c00264{transform:matrix(0.229083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229083,0.000000,0.000000,0.250000,0,0);}
.m1_c00264{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00264{transform:matrix(0.250565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250565,0.000000,0.000000,0.250000,0,0);}
.m40_c00264{transform:matrix(0.250747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250747,0.000000,0.000000,0.250000,0,0);}
.m74_c00264{transform:matrix(0.251453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251453,0.000000,0.000000,0.250000,0,0);}
.m45_c00264{transform:matrix(0.252313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252313,0.000000,0.000000,0.250000,0,0);}
.m4e_c00264{transform:matrix(0.252334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252334,0.000000,0.000000,0.250000,0,0);}
.m24_c00264{transform:matrix(0.253488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253488,0.000000,0.000000,0.250000,0,0);}
.m46_c00264{transform:matrix(0.253802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253802,0.000000,0.000000,0.250000,0,0);}
.m21_c00264{transform:matrix(0.254142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254142,0.000000,0.000000,0.250000,0,0);}
.m67_c00264{transform:matrix(0.254334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254334,0.000000,0.000000,0.250000,0,0);}
.m59_c00264{transform:matrix(0.254533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254533,0.000000,0.000000,0.250000,0,0);}
.md_c00264{transform:matrix(0.255101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255101,0.000000,0.000000,0.250000,0,0);}
.mf_c00264{transform:matrix(0.256819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256819,0.000000,0.000000,0.250000,0,0);}
.m3c_c00264{transform:matrix(0.257425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257425,0.000000,0.000000,0.250000,0,0);}
.m29_c00264{transform:matrix(0.258377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258377,0.000000,0.000000,0.250000,0,0);}
.m61_c00264{transform:matrix(0.258794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258794,0.000000,0.000000,0.250000,0,0);}
.m12_c00264{transform:matrix(0.259656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259656,0.000000,0.000000,0.250000,0,0);}
.m6_c00264{transform:matrix(0.260318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260318,0.000000,0.000000,0.250000,0,0);}
.m6d_c00264{transform:matrix(0.260381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260381,0.000000,0.000000,0.250000,0,0);}
.m2_c00264{transform:matrix(0.261325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261325,0.000000,0.000000,0.250000,0,0);}
.ma1_c00264{transform:matrix(0.261466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261466,0.000000,0.000000,0.250000,0,0);}
.m93_c00264{transform:matrix(0.262002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262002,0.000000,0.000000,0.250000,0,0);}
.m33_c00264{transform:matrix(0.263210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263210,0.000000,0.000000,0.250000,0,0);}
.m2f_c00264{transform:matrix(0.264211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264211,0.000000,0.000000,0.250000,0,0);}
.m85_c00264{transform:matrix(0.264490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264490,0.000000,0.000000,0.250000,0,0);}
.m1d_c00264{transform:matrix(0.265830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265830,0.000000,0.000000,0.250000,0,0);}
.m18_c00264{transform:matrix(0.266064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266064,0.000000,0.000000,0.250000,0,0);}
.m1a_c00264{transform:matrix(0.266289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266289,0.000000,0.000000,0.250000,0,0);}
.m4a_c00264{transform:matrix(0.266860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266860,0.000000,0.000000,0.250000,0,0);}
.m28_c00264{transform:matrix(0.267345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267345,0.000000,0.000000,0.250000,0,0);}
.m9d_c00264{transform:matrix(0.267395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267395,0.000000,0.000000,0.250000,0,0);}
.m80_c00264{transform:matrix(0.267636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267636,0.000000,0.000000,0.250000,0,0);}
.m3a_c00264{transform:matrix(0.267885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267885,0.000000,0.000000,0.250000,0,0);}
.m89_c00264{transform:matrix(0.268571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268571,0.000000,0.000000,0.250000,0,0);}
.m26_c00264{transform:matrix(0.270318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270318,0.000000,0.000000,0.250000,0,0);}
.m4f_c00264{transform:matrix(0.270387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270387,0.000000,0.000000,0.250000,0,0);}
.m22_c00264{transform:matrix(0.271366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271366,0.000000,0.000000,0.250000,0,0);}
.m94_c00264{transform:matrix(0.271935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271935,0.000000,0.000000,0.250000,0,0);}
.m7f_c00264{transform:matrix(0.273541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273541,0.000000,0.000000,0.250000,0,0);}
.m69_c00264{transform:matrix(0.273567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273567,0.000000,0.000000,0.250000,0,0);}
.m5c_c00264{transform:matrix(0.273982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273982,0.000000,0.000000,0.250000,0,0);}
.m19_c00264{transform:matrix(0.274244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274244,0.000000,0.000000,0.250000,0,0);}
.m88_c00264{transform:matrix(0.274264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274264,0.000000,0.000000,0.250000,0,0);}
.m17_c00264{transform:matrix(0.274335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274335,0.000000,0.000000,0.250000,0,0);}
.me_c00264{transform:matrix(0.274427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274427,0.000000,0.000000,0.250000,0,0);}
.m1f_c00264{transform:matrix(0.274462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274462,0.000000,0.000000,0.250000,0,0);}
.m98_c00264{transform:matrix(0.274720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274720,0.000000,0.000000,0.250000,0,0);}
.m4c_c00264{transform:matrix(0.274808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274808,0.000000,0.000000,0.250000,0,0);}
.m81_c00264{transform:matrix(0.275086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275086,0.000000,0.000000,0.250000,0,0);}
.m64_c00264{transform:matrix(0.275113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275113,0.000000,0.000000,0.250000,0,0);}
.m2e_c00264{transform:matrix(0.275858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275858,0.000000,0.000000,0.250000,0,0);}
.m7_c00264{transform:matrix(0.276256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276256,0.000000,0.000000,0.250000,0,0);}
.m53_c00264{transform:matrix(0.276331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276331,0.000000,0.000000,0.250000,0,0);}
.m79_c00264{transform:matrix(0.276424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276424,0.000000,0.000000,0.250000,0,0);}
.m20_c00264{transform:matrix(0.277095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277095,0.000000,0.000000,0.250000,0,0);}
.m9c_c00264{transform:matrix(0.277173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277173,0.000000,0.000000,0.250000,0,0);}
.m58_c00264{transform:matrix(0.277528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277528,0.000000,0.000000,0.250000,0,0);}
.m52_c00264{transform:matrix(0.277906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277906,0.000000,0.000000,0.250000,0,0);}
.m10_c00264{transform:matrix(0.278249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278249,0.000000,0.000000,0.250000,0,0);}
.m38_c00264{transform:matrix(0.278592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278592,0.000000,0.000000,0.250000,0,0);}
.m76_c00264{transform:matrix(0.279224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279224,0.000000,0.000000,0.250000,0,0);}
.m3d_c00264{transform:matrix(0.279318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279318,0.000000,0.000000,0.250000,0,0);}
.m51_c00264{transform:matrix(0.279439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279439,0.000000,0.000000,0.250000,0,0);}
.m6e_c00264{transform:matrix(0.279636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279636,0.000000,0.000000,0.250000,0,0);}
.m55_c00264{transform:matrix(0.280208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280208,0.000000,0.000000,0.250000,0,0);}
.m43_c00264{transform:matrix(0.280602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280602,0.000000,0.000000,0.250000,0,0);}
.m78_c00264{transform:matrix(0.280675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280675,0.000000,0.000000,0.250000,0,0);}
.m62_c00264{transform:matrix(0.281415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281415,0.000000,0.000000,0.250000,0,0);}
.m92_c00264{transform:matrix(0.281857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281857,0.000000,0.000000,0.250000,0,0);}
.m6c_c00264{transform:matrix(0.282358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282358,0.000000,0.000000,0.250000,0,0);}
.m8b_c00264{transform:matrix(0.283381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283381,0.000000,0.000000,0.250000,0,0);}
.m48_c00264{transform:matrix(0.283725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283725,0.000000,0.000000,0.250000,0,0);}
.m8f_c00264{transform:matrix(0.283873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283873,0.000000,0.000000,0.250000,0,0);}
.m86_c00264{transform:matrix(0.284540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284540,0.000000,0.000000,0.250000,0,0);}
.m8e_c00264{transform:matrix(0.285134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285134,0.000000,0.000000,0.250000,0,0);}
.m6f_c00264{transform:matrix(0.285403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285403,0.000000,0.000000,0.250000,0,0);}
.m6a_c00264{transform:matrix(0.285988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285988,0.000000,0.000000,0.250000,0,0);}
.mc_c00264{transform:matrix(0.286701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286701,0.000000,0.000000,0.250000,0,0);}
.m34_c00264{transform:matrix(0.287190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287190,0.000000,0.000000,0.250000,0,0);}
.m2a_c00264{transform:matrix(0.287443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287443,0.000000,0.000000,0.250000,0,0);}
.m72_c00264{transform:matrix(0.287456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287456,0.000000,0.000000,0.250000,0,0);}
.m82_c00264{transform:matrix(0.287890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287890,0.000000,0.000000,0.250000,0,0);}
.m83_c00264{transform:matrix(0.288014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288014,0.000000,0.000000,0.250000,0,0);}
.m6b_c00264{transform:matrix(0.288253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288253,0.000000,0.000000,0.250000,0,0);}
.m8c_c00264{transform:matrix(0.288289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288289,0.000000,0.000000,0.250000,0,0);}
.ma3_c00264{transform:matrix(0.288308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288308,0.000000,0.000000,0.250000,0,0);}
.m68_c00264{transform:matrix(0.289788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289788,0.000000,0.000000,0.250000,0,0);}
.m0_c00264{transform:matrix(0.290159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290159,0.000000,0.000000,0.250000,0,0);}
.m32_c00264{transform:matrix(0.291816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291816,0.000000,0.000000,0.250000,0,0);}
.m25_c00264{transform:matrix(0.291892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291892,0.000000,0.000000,0.250000,0,0);}
.m50_c00264{transform:matrix(0.292134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292134,0.000000,0.000000,0.250000,0,0);}
.m23_c00264{transform:matrix(0.292142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292142,0.000000,0.000000,0.250000,0,0);}
.m57_c00264{transform:matrix(0.292164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292164,0.000000,0.000000,0.250000,0,0);}
.m70_c00264{transform:matrix(0.292564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292564,0.000000,0.000000,0.250000,0,0);}
.m65_c00264{transform:matrix(0.293083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293083,0.000000,0.000000,0.250000,0,0);}
.m14_c00264{transform:matrix(0.294595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294595,0.000000,0.000000,0.250000,0,0);}
.m9e_c00264{transform:matrix(0.294933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294933,0.000000,0.000000,0.250000,0,0);}
.m2d_c00264{transform:matrix(0.295568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295568,0.000000,0.000000,0.250000,0,0);}
.m16_c00264{transform:matrix(0.295911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295911,0.000000,0.000000,0.250000,0,0);}
.m9a_c00264{transform:matrix(0.296560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296560,0.000000,0.000000,0.250000,0,0);}
.m8d_c00264{transform:matrix(0.296600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296600,0.000000,0.000000,0.250000,0,0);}
.m9f_c00264{transform:matrix(0.297060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297060,0.000000,0.000000,0.250000,0,0);}
.m5d_c00264{transform:matrix(0.297241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297241,0.000000,0.000000,0.250000,0,0);}
.m77_c00264{transform:matrix(0.297596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297596,0.000000,0.000000,0.250000,0,0);}
.m99_c00264{transform:matrix(0.297687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297687,0.000000,0.000000,0.250000,0,0);}
.m1c_c00264{transform:matrix(0.298388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298388,0.000000,0.000000,0.250000,0,0);}
.m39_c00264{transform:matrix(0.298541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298541,0.000000,0.000000,0.250000,0,0);}
.m63_c00264{transform:matrix(0.299038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299038,0.000000,0.000000,0.250000,0,0);}
.m7d_c00264{transform:matrix(0.299398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299398,0.000000,0.000000,0.250000,0,0);}
.m49_c00264{transform:matrix(0.299954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299954,0.000000,0.000000,0.250000,0,0);}
.m96_c00264{transform:matrix(0.300584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300584,0.000000,0.000000,0.250000,0,0);}
.m9b_c00264{transform:matrix(0.300892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300892,0.000000,0.000000,0.250000,0,0);}
.m41_c00264{transform:matrix(0.301448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301448,0.000000,0.000000,0.250000,0,0);}
.m5e_c00264{transform:matrix(0.301783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301783,0.000000,0.000000,0.250000,0,0);}
.m1b_c00264{transform:matrix(0.302575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302575,0.000000,0.000000,0.250000,0,0);}
.m9_c00264{transform:matrix(0.303149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303149,0.000000,0.000000,0.250000,0,0);}
.m5b_c00264{transform:matrix(0.303514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303514,0.000000,0.000000,0.250000,0,0);}
.mb_c00264{transform:matrix(0.303623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303623,0.000000,0.000000,0.250000,0,0);}
.m44_c00264{transform:matrix(0.304082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304082,0.000000,0.000000,0.250000,0,0);}
.m27_c00264{transform:matrix(0.304131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304131,0.000000,0.000000,0.250000,0,0);}
.m36_c00264{transform:matrix(0.305163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305163,0.000000,0.000000,0.250000,0,0);}
.m35_c00264{transform:matrix(0.305190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305190,0.000000,0.000000,0.250000,0,0);}
.m15_c00264{transform:matrix(0.306605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306605,0.000000,0.000000,0.250000,0,0);}
.m3_c00264{transform:matrix(0.306831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306831,0.000000,0.000000,0.250000,0,0);}
.m87_c00264{transform:matrix(0.307649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307649,0.000000,0.000000,0.250000,0,0);}
.m71_c00264{transform:matrix(0.308463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308463,0.000000,0.000000,0.250000,0,0);}
.ma0_c00264{transform:matrix(0.308472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308472,0.000000,0.000000,0.250000,0,0);}
.m5a_c00264{transform:matrix(0.309072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309072,0.000000,0.000000,0.250000,0,0);}
.m73_c00264{transform:matrix(0.309425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309425,0.000000,0.000000,0.250000,0,0);}
.m1e_c00264{transform:matrix(0.309473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309473,0.000000,0.000000,0.250000,0,0);}
.m3e_c00264{transform:matrix(0.310834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310834,0.000000,0.000000,0.250000,0,0);}
.m4_c00264{transform:matrix(0.310985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310985,0.000000,0.000000,0.250000,0,0);}
.m2c_c00264{transform:matrix(0.311427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311427,0.000000,0.000000,0.250000,0,0);}
.m7b_c00264{transform:matrix(0.312051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312051,0.000000,0.000000,0.250000,0,0);}
.ma2_c00264{transform:matrix(0.312122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312122,0.000000,0.000000,0.250000,0,0);}
.m4b_c00264{transform:matrix(0.312551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312551,0.000000,0.000000,0.250000,0,0);}
.m11_c00264{transform:matrix(0.314879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314879,0.000000,0.000000,0.250000,0,0);}
.m75_c00264{transform:matrix(0.315475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315475,0.000000,0.000000,0.250000,0,0);}
.m66_c00264{transform:matrix(0.318575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318575,0.000000,0.000000,0.250000,0,0);}
.m37_c00264{transform:matrix(0.319915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319915,0.000000,0.000000,0.250000,0,0);}
.m3f_c00264{transform:matrix(0.320734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320734,0.000000,0.000000,0.250000,0,0);}
.m4d_c00264{transform:matrix(0.322565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322565,0.000000,0.000000,0.250000,0,0);}
.m31_c00264{transform:matrix(0.323422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323422,0.000000,0.000000,0.250000,0,0);}
.m7e_c00264{transform:matrix(0.323987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323987,0.000000,0.000000,0.250000,0,0);}
.ma_c00264{transform:matrix(0.323991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323991,0.000000,0.000000,0.250000,0,0);}
.m54_c00264{transform:matrix(0.324524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324524,0.000000,0.000000,0.250000,0,0);}
.m60_c00264{transform:matrix(0.325016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325016,0.000000,0.000000,0.250000,0,0);}
.m42_c00264{transform:matrix(0.326797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326797,0.000000,0.000000,0.250000,0,0);}
.m90_c00264{transform:matrix(0.326962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326962,0.000000,0.000000,0.250000,0,0);}
.m8a_c00264{transform:matrix(0.331828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331828,0.000000,0.000000,0.250000,0,0);}
.m3b_c00264{transform:matrix(0.334253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334253,0.000000,0.000000,0.250000,0,0);}
.m7c_c00264{transform:matrix(0.335927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335927,0.000000,0.000000,0.250000,0,0);}
.m56_c00264{transform:matrix(0.337967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337967,0.000000,0.000000,0.250000,0,0);}
.m5_c00264{transform:matrix(0.342293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342293,0.000000,0.000000,0.250000,0,0);}
.m97_c00264{transform:matrix(0.345409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345409,0.000000,0.000000,0.250000,0,0);}
.m47_c00264{transform:matrix(0.346573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346573,0.000000,0.000000,0.250000,0,0);}
.m84_c00264{transform:matrix(0.355836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355836,0.000000,0.000000,0.250000,0,0);}
.m91_c00264{transform:matrix(0.361542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361542,0.000000,0.000000,0.250000,0,0);}
.m8_c00264{transform:matrix(0.364195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364195,0.000000,0.000000,0.250000,0,0);}
.m13_c00264{transform:matrix(0.370070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370070,0.000000,0.000000,0.250000,0,0);}
.m30_c00264{transform:matrix(0.375943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375943,0.000000,0.000000,0.250000,0,0);}
.v0_c00264{vertical-align:0.000000px;}
.lsb_c00264{letter-spacing:-2.813580px;}
.ls7_c00264{letter-spacing:-2.403601px;}
.lsd_c00264{letter-spacing:-1.929312px;}
.ls4_c00264{letter-spacing:-1.631876px;}
.lsa_c00264{letter-spacing:-1.446984px;}
.ls2_c00264{letter-spacing:0.000000px;}
.ls0_c00264{letter-spacing:0.885300px;}
.ls5_c00264{letter-spacing:1.543450px;}
.ls8_c00264{letter-spacing:1.800691px;}
.lse_c00264{letter-spacing:1.832846px;}
.ls9_c00264{letter-spacing:3.408451px;}
.ls1_c00264{letter-spacing:3.762000px;}
.ls3_c00264{letter-spacing:4.019400px;}
.lsc_c00264{letter-spacing:4.098610px;}
.lsf_c00264{letter-spacing:57.024198px;}
.ls6_c00264{letter-spacing:59.875398px;}
.sc__c00264{text-shadow:none;}
.sc0_c00264{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00264{-webkit-text-stroke:0px transparent;}
.sc0_c00264{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00264{word-spacing:0.000000px;}
._0_c00264{width:22.628453px;}
.fc0_c00264{color:transparent;}
.fs1_c00264{font-size:22.176000px;}
.fs4_c00264{font-size:27.720000px;}
.fs5_c00264{font-size:33.264000px;}
.fsb_c00264{font-size:57.024198px;}
.fs3_c00264{font-size:59.875398px;}
.fs6_c00264{font-size:66.330000px;}
.fsa_c00264{font-size:74.844000px;}
.fs0_c00264{font-size:75.240000px;}
.fs8_c00264{font-size:78.804000px;}
.fs2_c00264{font-size:80.388000px;}
.fs9_c00264{font-size:81.972198px;}
.fs7_c00264{font-size:84.546198px;}
.y0_c00264{bottom:0.000000px;}
.y1_c00264{bottom:76.500000px;}
.y1f_c00264{bottom:93.645135px;}
.y1e_c00264{bottom:195.219135px;}
.y1d_c00264{bottom:226.933785px;}
.y1c_c00264{bottom:258.658335px;}
.y1b_c00264{bottom:290.734335px;}
.y1a_c00264{bottom:322.092585px;}
.y19_c00264{bottom:353.104335px;}
.y18_c00264{bottom:385.175385px;}
.y17_c00264{bottom:416.187135px;}
.y16_c00264{bottom:447.906735px;}
.y15_c00264{bottom:478.913535px;}
.y14_c00264{bottom:510.628185px;}
.y13_c00264{bottom:541.634985px;}
.y12_c00264{bottom:556.960185px;}
.y11_c00264{bottom:573.354585px;}
.y10_c00264{bottom:596.169135px;}
.yf_c00264{bottom:605.435535px;}
.ye_c00264{bottom:637.150185px;}
.yd_c00264{bottom:700.945785px;}
.yc_c00264{bottom:732.308985px;}
.yb_c00264{bottom:763.677135px;}
.ya_c00264{bottom:795.748185px;}
.y9_c00264{bottom:827.829135px;}
.y8_c00264{bottom:844.931385px;}
.y7_c00264{bottom:859.192335px;}
.y6_c00264{bottom:890.199135px;}
.y5_c00264{bottom:921.913785px;}
.y4_c00264{bottom:970.747515px;}
.y3_c00264{bottom:1040.951385px;}
.y2_c00264{bottom:1068.750585px;}
.h3_c00264{height:23.128875px;}
.h6_c00264{height:28.911094px;}
.h7_c00264{height:34.693313px;}
.hc_c00264{height:37.978116px;}
.h5_c00264{height:39.877015px;}
.h8_c00264{height:69.180117px;}
.h2_c00264{height:73.843945px;}
.ha_c00264{height:77.341816px;}
.h4_c00264{height:78.896426px;}
.hb_c00264{height:80.451229px;}
.h9_c00264{height:82.977470px;}
.h1_c00264{height:1110.000000px;}
.h0_c00264{height:1263.000000px;}
.w1_c00264{width:763.500000px;}
.w0_c00264{width:892.500000px;}
.x0_c00264{left:0.000000px;}
.x1_c00264{left:64.500000px;}
.x5f_c00264{left:84.279735px;}
.x32_c00264{left:85.368735px;}
.x19_c00264{left:87.125985px;}
.x5_c00264{left:88.403085px;}
.x35_c00264{left:118.508985px;}
.x6_c00264{left:121.355235px;}
.x4a_c00264{left:128.849535px;}
.x39_c00264{left:130.463235px;}
.x3b_c00264{left:140.957235px;}
.xf_c00264{left:142.031385px;}
.x1a_c00264{left:143.244135px;}
.x64_c00264{left:152.861985px;}
.x4b_c00264{left:164.232135px;}
.x41_c00264{left:173.384685px;}
.x4c_c00264{left:174.523185px;}
.x10_c00264{left:175.701285px;}
.x2b_c00264{left:186.007185px;}
.x5a_c00264{left:195.501285px;}
.x48_c00264{left:196.981335px;}
.x36_c00264{left:206.891235px;}
.x11_c00264{left:208.262385px;}
.x60_c00264{left:209.692935px;}
.x1b_c00264{left:218.305935px;}
.x7_c00264{left:240.046335px;}
.x5d_c00264{left:241.531335px;}
.x23_c00264{left:251.990685px;}
.x51_c00264{left:253.035135px;}
.x56_c00264{left:254.143935px;}
.x3a_c00264{left:262.979685px;}
.x8_c00264{left:264.038985px;}
.x63_c00264{left:274.676535px;}
.x22_c00264{left:278.844435px;}
.x33_c00264{left:285.432885px;}
.x2c_c00264{left:287.576235px;}
.x49_c00264{left:295.644735px;}
.x24_c00264{left:296.981235px;}
.x12_c00264{left:307.202985px;}
.x52_c00264{left:317.880135px;}
.x9_c00264{left:319.622535px;}
.x61_c00264{left:329.052285px;}
.x3c_c00264{left:330.735285px;}
.x2d_c00264{left:340.194735px;}
.x37_c00264{left:341.452035px;}
.x4d_c00264{left:352.470735px;}
.x3d_c00264{left:363.816135px;}
.x25_c00264{left:373.265685px;}
.x2e_c00264{left:374.468535px;}
.x34_c00264{left:385.610985px;}
.x53_c00264{left:396.104985px;}
.x1c_c00264{left:397.738485px;}
.x13_c00264{left:408.098835px;}
.x44_c00264{left:409.400685px;}
.x62_c00264{left:418.434435px;}
.x3e_c00264{left:419.731335px;}
.xa_c00264{left:429.834285px;}
.x4e_c00264{left:431.141085px;}
.x57_c00264{left:441.026235px;}
.x14_c00264{left:442.100385px;}
.x3_c00264{left:447.421635px;}
.x54_c00264{left:452.633985px;}
.x5b_c00264{left:462.929985px;}
.x4f_c00264{left:464.355585px;}
.xb_c00264{left:475.062435px;}
.x26_c00264{left:484.536735px;}
.x5e_c00264{left:486.744435px;}
.x58_c00264{left:495.218835px;}
.x2f_c00264{left:497.188935px;}
.x1d_c00264{left:507.173085px;}
.x30_c00264{left:517.365135px;}
.x27_c00264{left:519.166935px;}
.x4_c00264{left:527.970510px;}
.x42_c00264{left:529.576785px;}
.x15_c00264{left:540.135135px;}
.x1e_c00264{left:541.184535px;}
.x45_c00264{left:552.722985px;}
.xc_c00264{left:562.721985px;}
.x16_c00264{left:563.771385px;}
.x50_c00264{left:564.929685px;}
.x47_c00264{left:569.978685px;}
.x3f_c00264{left:574.186185px;}
.x28_c00264{left:585.447435px;}
.xd_c00264{left:595.367235px;}
.x40_c00264{left:606.054285px;}
.x31_c00264{left:618.251085px;}
.x5c_c00264{left:629.032185px;}
.x29_c00264{left:638.887635px;}
.x38_c00264{left:640.115235px;}
.x2_c00264{left:651.460635px;}
.x43_c00264{left:662.568435px;}
.x55_c00264{left:664.073235px;}
.x59_c00264{left:673.201035px;}
.x1f_c00264{left:674.329635px;}
.x17_c00264{left:684.962235px;}
.x20_c00264{left:696.154185px;}
.x46_c00264{left:706.722435px;}
.x18_c00264{left:717.260985px;}
.xe_c00264{left:718.795485px;}
.x21_c00264{left:740.224035px;}
.x2a_c00264{left:747.168885px;}
.x65_c00264{left:753.881085px;}
@media print{
.v0_c00264{vertical-align:0.000000pt;}
.lsb_c00264{letter-spacing:-2.500960pt;}
.ls7_c00264{letter-spacing:-2.136534pt;}
.lsd_c00264{letter-spacing:-1.714944pt;}
.ls4_c00264{letter-spacing:-1.450557pt;}
.lsa_c00264{letter-spacing:-1.286208pt;}
.ls2_c00264{letter-spacing:0.000000pt;}
.ls0_c00264{letter-spacing:0.786933pt;}
.ls5_c00264{letter-spacing:1.371955pt;}
.ls8_c00264{letter-spacing:1.600614pt;}
.lse_c00264{letter-spacing:1.629197pt;}
.ls9_c00264{letter-spacing:3.029734pt;}
.ls1_c00264{letter-spacing:3.344000pt;}
.ls3_c00264{letter-spacing:3.572800pt;}
.lsc_c00264{letter-spacing:3.643209pt;}
.lsf_c00264{letter-spacing:50.688176pt;}
.ls6_c00264{letter-spacing:53.222576pt;}
.ws0_c00264{word-spacing:0.000000pt;}
._0_c00264{width:20.114181pt;}
.fs1_c00264{font-size:19.712000pt;}
.fs4_c00264{font-size:24.640000pt;}
.fs5_c00264{font-size:29.568000pt;}
.fsb_c00264{font-size:50.688176pt;}
.fs3_c00264{font-size:53.222576pt;}
.fs6_c00264{font-size:58.960000pt;}
.fsa_c00264{font-size:66.528000pt;}
.fs0_c00264{font-size:66.880000pt;}
.fs8_c00264{font-size:70.048000pt;}
.fs2_c00264{font-size:71.456000pt;}
.fs9_c00264{font-size:72.864176pt;}
.fs7_c00264{font-size:75.152176pt;}
.y0_c00264{bottom:0.000000pt;}
.y1_c00264{bottom:68.000000pt;}
.y1f_c00264{bottom:83.240120pt;}
.y1e_c00264{bottom:173.528120pt;}
.y1d_c00264{bottom:201.718920pt;}
.y1c_c00264{bottom:229.918520pt;}
.y1b_c00264{bottom:258.430520pt;}
.y1a_c00264{bottom:286.304520pt;}
.y19_c00264{bottom:313.870520pt;}
.y18_c00264{bottom:342.378120pt;}
.y17_c00264{bottom:369.944120pt;}
.y16_c00264{bottom:398.139320pt;}
.y15_c00264{bottom:425.700920pt;}
.y14_c00264{bottom:453.891720pt;}
.y13_c00264{bottom:481.453320pt;}
.y12_c00264{bottom:495.075720pt;}
.y11_c00264{bottom:509.648520pt;}
.y10_c00264{bottom:529.928120pt;}
.yf_c00264{bottom:538.164920pt;}
.ye_c00264{bottom:566.355720pt;}
.yd_c00264{bottom:623.062920pt;}
.yc_c00264{bottom:650.941320pt;}
.yb_c00264{bottom:678.824120pt;}
.ya_c00264{bottom:707.331720pt;}
.y9_c00264{bottom:735.848120pt;}
.y8_c00264{bottom:751.050120pt;}
.y7_c00264{bottom:763.726520pt;}
.y6_c00264{bottom:791.288120pt;}
.y5_c00264{bottom:819.478920pt;}
.y4_c00264{bottom:862.886680pt;}
.y3_c00264{bottom:925.290120pt;}
.y2_c00264{bottom:950.000520pt;}
.h3_c00264{height:20.559000pt;}
.h6_c00264{height:25.698750pt;}
.h7_c00264{height:30.838500pt;}
.hc_c00264{height:33.758325pt;}
.h5_c00264{height:35.446236pt;}
.h8_c00264{height:61.493438pt;}
.h2_c00264{height:65.639063pt;}
.ha_c00264{height:68.748281pt;}
.h4_c00264{height:70.130156pt;}
.hb_c00264{height:71.512204pt;}
.h9_c00264{height:73.757751pt;}
.h1_c00264{height:986.666667pt;}
.h0_c00264{height:1122.666667pt;}
.w1_c00264{width:678.666667pt;}
.w0_c00264{width:793.333333pt;}
.x0_c00264{left:0.000000pt;}
.x1_c00264{left:57.333333pt;}
.x5f_c00264{left:74.915320pt;}
.x32_c00264{left:75.883320pt;}
.x19_c00264{left:77.445320pt;}
.x5_c00264{left:78.580520pt;}
.x35_c00264{left:105.341320pt;}
.x6_c00264{left:107.871320pt;}
.x4a_c00264{left:114.532920pt;}
.x39_c00264{left:115.967320pt;}
.x3b_c00264{left:125.295320pt;}
.xf_c00264{left:126.250120pt;}
.x1a_c00264{left:127.328120pt;}
.x64_c00264{left:135.877320pt;}
.x4b_c00264{left:145.984120pt;}
.x41_c00264{left:154.119720pt;}
.x4c_c00264{left:155.131720pt;}
.x10_c00264{left:156.178920pt;}
.x2b_c00264{left:165.339720pt;}
.x5a_c00264{left:173.778920pt;}
.x48_c00264{left:175.094520pt;}
.x36_c00264{left:183.903320pt;}
.x11_c00264{left:185.122120pt;}
.x60_c00264{left:186.393720pt;}
.x1b_c00264{left:194.049720pt;}
.x7_c00264{left:213.374520pt;}
.x5d_c00264{left:214.694520pt;}
.x23_c00264{left:223.991720pt;}
.x51_c00264{left:224.920120pt;}
.x56_c00264{left:225.905720pt;}
.x3a_c00264{left:233.759720pt;}
.x8_c00264{left:234.701320pt;}
.x63_c00264{left:244.156920pt;}
.x22_c00264{left:247.861720pt;}
.x33_c00264{left:253.718120pt;}
.x2c_c00264{left:255.623320pt;}
.x49_c00264{left:262.795320pt;}
.x24_c00264{left:263.983320pt;}
.x12_c00264{left:273.069320pt;}
.x52_c00264{left:282.560120pt;}
.x9_c00264{left:284.108920pt;}
.x61_c00264{left:292.490920pt;}
.x3c_c00264{left:293.986920pt;}
.x2d_c00264{left:302.395320pt;}
.x37_c00264{left:303.512920pt;}
.x4d_c00264{left:313.307320pt;}
.x3d_c00264{left:323.392120pt;}
.x25_c00264{left:331.791720pt;}
.x2e_c00264{left:332.860920pt;}
.x34_c00264{left:342.765320pt;}
.x53_c00264{left:352.093320pt;}
.x1c_c00264{left:353.545320pt;}
.x13_c00264{left:362.754520pt;}
.x44_c00264{left:363.911720pt;}
.x62_c00264{left:371.941720pt;}
.x3e_c00264{left:373.094520pt;}
.xa_c00264{left:382.074920pt;}
.x4e_c00264{left:383.236520pt;}
.x57_c00264{left:392.023320pt;}
.x14_c00264{left:392.978120pt;}
.x3_c00264{left:397.708120pt;}
.x54_c00264{left:402.341320pt;}
.x5b_c00264{left:411.493320pt;}
.x4f_c00264{left:412.760520pt;}
.xb_c00264{left:422.277720pt;}
.x26_c00264{left:430.699320pt;}
.x5e_c00264{left:432.661720pt;}
.x58_c00264{left:440.194520pt;}
.x2f_c00264{left:441.945720pt;}
.x1d_c00264{left:450.820520pt;}
.x30_c00264{left:459.880120pt;}
.x27_c00264{left:461.481720pt;}
.x4_c00264{left:469.307120pt;}
.x42_c00264{left:470.734920pt;}
.x15_c00264{left:480.120120pt;}
.x1e_c00264{left:481.052920pt;}
.x45_c00264{left:491.309320pt;}
.xc_c00264{left:500.197320pt;}
.x16_c00264{left:501.130120pt;}
.x50_c00264{left:502.159720pt;}
.x47_c00264{left:506.647720pt;}
.x3f_c00264{left:510.387720pt;}
.x28_c00264{left:520.397720pt;}
.xd_c00264{left:529.215320pt;}
.x40_c00264{left:538.714920pt;}
.x31_c00264{left:549.556520pt;}
.x5c_c00264{left:559.139720pt;}
.x29_c00264{left:567.900120pt;}
.x38_c00264{left:568.991320pt;}
.x2_c00264{left:579.076120pt;}
.x43_c00264{left:588.949720pt;}
.x55_c00264{left:590.287320pt;}
.x59_c00264{left:598.400920pt;}
.x1f_c00264{left:599.404120pt;}
.x17_c00264{left:608.855320pt;}
.x20_c00264{left:618.803720pt;}
.x46_c00264{left:628.197720pt;}
.x18_c00264{left:637.565320pt;}
.xe_c00264{left:638.929320pt;}
.x21_c00264{left:657.976920pt;}
.x2a_c00264{left:664.150120pt;}
.x65_c00264{left:670.116520pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2c87b00732e963ce4ec862ab.woff2')format("woff");}.ff1_c00265{font-family:ff1_c00265;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00265;src:url('chunks/assets/font_da53acb9a6b1ecbe27405693.woff2')format("woff");}.ff2_c00265{font-family:ff2_c00265;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00265;src:url('chunks/assets/font_910c8a76bb77714daecd6fa0.woff2')format("woff");}.ff3_c00265{font-family:ff3_c00265;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00265;src:url('chunks/assets/font_35762cf00885deabe296014a.woff2')format("woff");}.ff4_c00265{font-family:ff4_c00265;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m9b_c00265{transform:matrix(0.214435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214435,0.000000,0.000000,0.250000,0,0);}
.m92_c00265{transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);}
.m54_c00265{transform:matrix(0.239859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239859,0.000000,0.000000,0.250000,0,0);}
.mbc_c00265{transform:matrix(0.249022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249022,0.000000,0.000000,0.250000,0,0);}
.m3_c00265{transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);}
.m6_c00265{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00265{transform:matrix(0.251114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251114,0.000000,0.000000,0.250000,0,0);}
.m71_c00265{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.mb7_c00265{transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);}
.m2_c00265{transform:matrix(0.252682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252682,0.000000,0.000000,0.250000,0,0);}
.md_c00265{transform:matrix(0.253705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253705,0.000000,0.000000,0.250000,0,0);}
.maa_c00265{transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);}
.m6c_c00265{transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);}
.m5c_c00265{transform:matrix(0.256334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256334,0.000000,0.000000,0.250000,0,0);}
.m78_c00265{transform:matrix(0.256942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256942,0.000000,0.000000,0.250000,0,0);}
.m36_c00265{transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);}
.m41_c00265{transform:matrix(0.259119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259119,0.000000,0.000000,0.250000,0,0);}
.m93_c00265{transform:matrix(0.259977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259977,0.000000,0.000000,0.250000,0,0);}
.mbf_c00265{transform:matrix(0.260442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260442,0.000000,0.000000,0.250000,0,0);}
.m3b_c00265{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.m53_c00265{transform:matrix(0.261624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261624,0.000000,0.000000,0.250000,0,0);}
.m7f_c00265{transform:matrix(0.262634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262634,0.000000,0.000000,0.250000,0,0);}
.m40_c00265{transform:matrix(0.262979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262979,0.000000,0.000000,0.250000,0,0);}
.m1a_c00265{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m95_c00265{transform:matrix(0.263875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263875,0.000000,0.000000,0.250000,0,0);}
.m6e_c00265{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.mb2_c00265{transform:matrix(0.265372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265372,0.000000,0.000000,0.250000,0,0);}
.m29_c00265{transform:matrix(0.266174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266174,0.000000,0.000000,0.250000,0,0);}
.mf_c00265{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m8f_c00265{transform:matrix(0.266569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266569,0.000000,0.000000,0.250000,0,0);}
.m57_c00265{transform:matrix(0.267003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267003,0.000000,0.000000,0.250000,0,0);}
.m5e_c00265{transform:matrix(0.267205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267205,0.000000,0.000000,0.250000,0,0);}
.m15_c00265{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.mc3_c00265{transform:matrix(0.268150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268150,0.000000,0.000000,0.250000,0,0);}
.m16_c00265{transform:matrix(0.268624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268624,0.000000,0.000000,0.250000,0,0);}
.m73_c00265{transform:matrix(0.269049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269049,0.000000,0.000000,0.250000,0,0);}
.m1_c00265{transform:matrix(0.269313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269313,0.000000,0.000000,0.250000,0,0);}
.m70_c00265{transform:matrix(0.269834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269834,0.000000,0.000000,0.250000,0,0);}
.ma5_c00265{transform:matrix(0.270362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270362,0.000000,0.000000,0.250000,0,0);}
.m44_c00265{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m74_c00265{transform:matrix(0.272153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272153,0.000000,0.000000,0.250000,0,0);}
.m49_c00265{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m66_c00265{transform:matrix(0.272698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272698,0.000000,0.000000,0.250000,0,0);}
.m98_c00265{transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);}
.m8_c00265{transform:matrix(0.275066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275066,0.000000,0.000000,0.250000,0,0);}
.ma6_c00265{transform:matrix(0.275163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275163,0.000000,0.000000,0.250000,0,0);}
.ma8_c00265{transform:matrix(0.275573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275573,0.000000,0.000000,0.250000,0,0);}
.m91_c00265{transform:matrix(0.275999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275999,0.000000,0.000000,0.250000,0,0);}
.m2a_c00265{transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);}
.m14_c00265{transform:matrix(0.277168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277168,0.000000,0.000000,0.250000,0,0);}
.m1c_c00265{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m90_c00265{transform:matrix(0.277612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277612,0.000000,0.000000,0.250000,0,0);}
.m8d_c00265{transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);}
.m97_c00265{transform:matrix(0.277903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277903,0.000000,0.000000,0.250000,0,0);}
.m5a_c00265{transform:matrix(0.277975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277975,0.000000,0.000000,0.250000,0,0);}
.m10_c00265{transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);}
.m45_c00265{transform:matrix(0.278681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278681,0.000000,0.000000,0.250000,0,0);}
.m85_c00265{transform:matrix(0.278936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278936,0.000000,0.000000,0.250000,0,0);}
.ma1_c00265{transform:matrix(0.279017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279017,0.000000,0.000000,0.250000,0,0);}
.m8e_c00265{transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);}
.m30_c00265{transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);}
.m83_c00265{transform:matrix(0.280329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280329,0.000000,0.000000,0.250000,0,0);}
.m81_c00265{transform:matrix(0.281112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281112,0.000000,0.000000,0.250000,0,0);}
.m82_c00265{transform:matrix(0.281182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281182,0.000000,0.000000,0.250000,0,0);}
.m37_c00265{transform:matrix(0.281255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281255,0.000000,0.000000,0.250000,0,0);}
.m8b_c00265{transform:matrix(0.281266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281266,0.000000,0.000000,0.250000,0,0);}
.m7b_c00265{transform:matrix(0.281499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281499,0.000000,0.000000,0.250000,0,0);}
.mc1_c00265{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.mc4_c00265{transform:matrix(0.281766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281766,0.000000,0.000000,0.250000,0,0);}
.m1e_c00265{transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);}
.m4e_c00265{transform:matrix(0.282028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282028,0.000000,0.000000,0.250000,0,0);}
.m3c_c00265{transform:matrix(0.282254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282254,0.000000,0.000000,0.250000,0,0);}
.mc0_c00265{transform:matrix(0.282428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282428,0.000000,0.000000,0.250000,0,0);}
.m32_c00265{transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);}
.m11_c00265{transform:matrix(0.282929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282929,0.000000,0.000000,0.250000,0,0);}
.maf_c00265{transform:matrix(0.282986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282986,0.000000,0.000000,0.250000,0,0);}
.m4_c00265{transform:matrix(0.283405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283405,0.000000,0.000000,0.250000,0,0);}
.mb9_c00265{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m27_c00265{transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);}
.m8a_c00265{transform:matrix(0.284009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284009,0.000000,0.000000,0.250000,0,0);}
.m76_c00265{transform:matrix(0.284261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284261,0.000000,0.000000,0.250000,0,0);}
.m80_c00265{transform:matrix(0.284755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284755,0.000000,0.000000,0.250000,0,0);}
.m6a_c00265{transform:matrix(0.285088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285088,0.000000,0.000000,0.250000,0,0);}
.m87_c00265{transform:matrix(0.286141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286141,0.000000,0.000000,0.250000,0,0);}
.mae_c00265{transform:matrix(0.286238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286238,0.000000,0.000000,0.250000,0,0);}
.mb3_c00265{transform:matrix(0.286577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286577,0.000000,0.000000,0.250000,0,0);}
.mbe_c00265{transform:matrix(0.286896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286896,0.000000,0.000000,0.250000,0,0);}
.m9d_c00265{transform:matrix(0.287081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287081,0.000000,0.000000,0.250000,0,0);}
.m9a_c00265{transform:matrix(0.287295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287295,0.000000,0.000000,0.250000,0,0);}
.m51_c00265{transform:matrix(0.287765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287765,0.000000,0.000000,0.250000,0,0);}
.m17_c00265{transform:matrix(0.288897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288897,0.000000,0.000000,0.250000,0,0);}
.m61_c00265{transform:matrix(0.289278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289278,0.000000,0.000000,0.250000,0,0);}
.mba_c00265{transform:matrix(0.290170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290170,0.000000,0.000000,0.250000,0,0);}
.m42_c00265{transform:matrix(0.290378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290378,0.000000,0.000000,0.250000,0,0);}
.m7c_c00265{transform:matrix(0.291850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291850,0.000000,0.000000,0.250000,0,0);}
.m89_c00265{transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);}
.m26_c00265{transform:matrix(0.292392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292392,0.000000,0.000000,0.250000,0,0);}
.m55_c00265{transform:matrix(0.292551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292551,0.000000,0.000000,0.250000,0,0);}
.m59_c00265{transform:matrix(0.292561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292561,0.000000,0.000000,0.250000,0,0);}
.mc5_c00265{transform:matrix(0.292564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292564,0.000000,0.000000,0.250000,0,0);}
.m52_c00265{transform:matrix(0.293180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293180,0.000000,0.000000,0.250000,0,0);}
.m4f_c00265{transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);}
.ma9_c00265{transform:matrix(0.293905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293905,0.000000,0.000000,0.250000,0,0);}
.m18_c00265{transform:matrix(0.294435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294435,0.000000,0.000000,0.250000,0,0);}
.m86_c00265{transform:matrix(0.294792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294792,0.000000,0.000000,0.250000,0,0);}
.mac_c00265{transform:matrix(0.295013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295013,0.000000,0.000000,0.250000,0,0);}
.ma3_c00265{transform:matrix(0.295236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295236,0.000000,0.000000,0.250000,0,0);}
.m23_c00265{transform:matrix(0.295240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295240,0.000000,0.000000,0.250000,0,0);}
.m0_c00265{transform:matrix(0.295444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295444,0.000000,0.000000,0.250000,0,0);}
.m46_c00265{transform:matrix(0.295843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295843,0.000000,0.000000,0.250000,0,0);}
.m4c_c00265{transform:matrix(0.295991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295991,0.000000,0.000000,0.250000,0,0);}
.m28_c00265{transform:matrix(0.296280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296280,0.000000,0.000000,0.250000,0,0);}
.m39_c00265{transform:matrix(0.296607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296607,0.000000,0.000000,0.250000,0,0);}
.ma4_c00265{transform:matrix(0.296634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296634,0.000000,0.000000,0.250000,0,0);}
.mb4_c00265{transform:matrix(0.296744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296744,0.000000,0.000000,0.250000,0,0);}
.m9_c00265{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m69_c00265{transform:matrix(0.297455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297455,0.000000,0.000000,0.250000,0,0);}
.m47_c00265{transform:matrix(0.297919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297919,0.000000,0.000000,0.250000,0,0);}
.m68_c00265{transform:matrix(0.299218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299218,0.000000,0.000000,0.250000,0,0);}
.m43_c00265{transform:matrix(0.299263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299263,0.000000,0.000000,0.250000,0,0);}
.m5_c00265{transform:matrix(0.299861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299861,0.000000,0.000000,0.250000,0,0);}
.m7d_c00265{transform:matrix(0.300181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300181,0.000000,0.000000,0.250000,0,0);}
.m2c_c00265{transform:matrix(0.300400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300400,0.000000,0.000000,0.250000,0,0);}
.m2e_c00265{transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);}
.m63_c00265{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.mb1_c00265{transform:matrix(0.304119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304119,0.000000,0.000000,0.250000,0,0);}
.m1d_c00265{transform:matrix(0.305345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305345,0.000000,0.000000,0.250000,0,0);}
.m3d_c00265{transform:matrix(0.305824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305824,0.000000,0.000000,0.250000,0,0);}
.mab_c00265{transform:matrix(0.307032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307032,0.000000,0.000000,0.250000,0,0);}
.m4a_c00265{transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);}
.ma7_c00265{transform:matrix(0.307832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307832,0.000000,0.000000,0.250000,0,0);}
.m72_c00265{transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);}
.m75_c00265{transform:matrix(0.308088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308088,0.000000,0.000000,0.250000,0,0);}
.m1b_c00265{transform:matrix(0.308491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308491,0.000000,0.000000,0.250000,0,0);}
.m56_c00265{transform:matrix(0.308564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308564,0.000000,0.000000,0.250000,0,0);}
.m1f_c00265{transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);}
.m84_c00265{transform:matrix(0.309318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309318,0.000000,0.000000,0.250000,0,0);}
.m3e_c00265{transform:matrix(0.309349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309349,0.000000,0.000000,0.250000,0,0);}
.m6d_c00265{transform:matrix(0.309459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309459,0.000000,0.000000,0.250000,0,0);}
.ma2_c00265{transform:matrix(0.311202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311202,0.000000,0.000000,0.250000,0,0);}
.m5f_c00265{transform:matrix(0.311614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311614,0.000000,0.000000,0.250000,0,0);}
.m2b_c00265{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.m9c_c00265{transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);}
.mb6_c00265{transform:matrix(0.313682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313682,0.000000,0.000000,0.250000,0,0);}
.m60_c00265{transform:matrix(0.313920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313920,0.000000,0.000000,0.250000,0,0);}
.m7e_c00265{transform:matrix(0.314146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314146,0.000000,0.000000,0.250000,0,0);}
.ma0_c00265{transform:matrix(0.315051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315051,0.000000,0.000000,0.250000,0,0);}
.m31_c00265{transform:matrix(0.315627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315627,0.000000,0.000000,0.250000,0,0);}
.m88_c00265{transform:matrix(0.315917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315917,0.000000,0.000000,0.250000,0,0);}
.m3f_c00265{transform:matrix(0.316451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316451,0.000000,0.000000,0.250000,0,0);}
.m6b_c00265{transform:matrix(0.316676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316676,0.000000,0.000000,0.250000,0,0);}
.m22_c00265{transform:matrix(0.319455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319455,0.000000,0.000000,0.250000,0,0);}
.m99_c00265{transform:matrix(0.320066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320066,0.000000,0.000000,0.250000,0,0);}
.m62_c00265{transform:matrix(0.320525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320525,0.000000,0.000000,0.250000,0,0);}
.me_c00265{transform:matrix(0.321948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321948,0.000000,0.000000,0.250000,0,0);}
.mb8_c00265{transform:matrix(0.321997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321997,0.000000,0.000000,0.250000,0,0);}
.mc2_c00265{transform:matrix(0.323256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323256,0.000000,0.000000,0.250000,0,0);}
.mbd_c00265{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.mbb_c00265{transform:matrix(0.324732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324732,0.000000,0.000000,0.250000,0,0);}
.m50_c00265{transform:matrix(0.325676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325676,0.000000,0.000000,0.250000,0,0);}
.m9e_c00265{transform:matrix(0.325767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325767,0.000000,0.000000,0.250000,0,0);}
.m21_c00265{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m38_c00265{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.m3a_c00265{transform:matrix(0.327666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327666,0.000000,0.000000,0.250000,0,0);}
.mc_c00265{transform:matrix(0.327723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327723,0.000000,0.000000,0.250000,0,0);}
.mb5_c00265{transform:matrix(0.329405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329405,0.000000,0.000000,0.250000,0,0);}
.m65_c00265{transform:matrix(0.329438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329438,0.000000,0.000000,0.250000,0,0);}
.m67_c00265{transform:matrix(0.329713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329713,0.000000,0.000000,0.250000,0,0);}
.ma_c00265{transform:matrix(0.330230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330230,0.000000,0.000000,0.250000,0,0);}
.m64_c00265{transform:matrix(0.331693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331693,0.000000,0.000000,0.250000,0,0);}
.m12_c00265{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m94_c00265{transform:matrix(0.333638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333638,0.000000,0.000000,0.250000,0,0);}
.m20_c00265{transform:matrix(0.334113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334113,0.000000,0.000000,0.250000,0,0);}
.m7a_c00265{transform:matrix(0.337354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337354,0.000000,0.000000,0.250000,0,0);}
.m5b_c00265{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m13_c00265{transform:matrix(0.340207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340207,0.000000,0.000000,0.250000,0,0);}
.m34_c00265{transform:matrix(0.340822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340822,0.000000,0.000000,0.250000,0,0);}
.mb0_c00265{transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);}
.m2d_c00265{transform:matrix(0.341749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341749,0.000000,0.000000,0.250000,0,0);}
.m5d_c00265{transform:matrix(0.342407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342407,0.000000,0.000000,0.250000,0,0);}
.m33_c00265{transform:matrix(0.342576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342576,0.000000,0.000000,0.250000,0,0);}
.m25_c00265{transform:matrix(0.343069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343069,0.000000,0.000000,0.250000,0,0);}
.mad_c00265{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.mb_c00265{transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);}
.m8c_c00265{transform:matrix(0.344036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344036,0.000000,0.000000,0.250000,0,0);}
.m2f_c00265{transform:matrix(0.345693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345693,0.000000,0.000000,0.250000,0,0);}
.m79_c00265{transform:matrix(0.347756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347756,0.000000,0.000000,0.250000,0,0);}
.m35_c00265{transform:matrix(0.348181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348181,0.000000,0.000000,0.250000,0,0);}
.m9f_c00265{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m96_c00265{transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);}
.m19_c00265{transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);}
.m7_c00265{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m77_c00265{transform:matrix(0.355750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355750,0.000000,0.000000,0.250000,0,0);}
.m24_c00265{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m6f_c00265{transform:matrix(0.368542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368542,0.000000,0.000000,0.250000,0,0);}
.m48_c00265{transform:matrix(0.407787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407787,0.000000,0.000000,0.250000,0,0);}
.m4b_c00265{transform:matrix(0.409186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409186,0.000000,0.000000,0.250000,0,0);}
.m58_c00265{transform:matrix(0.409469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409469,0.000000,0.000000,0.250000,0,0);}
.v0_c00265{vertical-align:0.000000px;}
.ls4_c00265{letter-spacing:-2.744280px;}
.ls5_c00265{letter-spacing:0.000000px;}
.lsd_c00265{letter-spacing:0.705672px;}
.ls6_c00265{letter-spacing:0.909533px;}
.lsc_c00265{letter-spacing:1.246687px;}
.ls9_c00265{letter-spacing:1.301573px;}
.ls0_c00265{letter-spacing:1.685772px;}
.ls7_c00265{letter-spacing:3.112798px;}
.ls8_c00265{letter-spacing:3.544200px;}
.lsf_c00265{letter-spacing:3.559723px;}
.lsa_c00265{letter-spacing:3.603610px;}
.lsb_c00265{letter-spacing:3.752110px;}
.ls2_c00265{letter-spacing:3.791700px;}
.ls3_c00265{letter-spacing:3.920400px;}
.lse_c00265{letter-spacing:4.197610px;}
.ls1_c00265{letter-spacing:5.802588px;}
.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;}
}
.ws4_c00265{word-spacing:-23.161723px;}
.ws0_c00265{word-spacing:-19.602000px;}
.ws5_c00265{word-spacing:0.000000px;}
.ws2_c00265{word-spacing:1.253736px;}
.ws1_c00265{word-spacing:2.038608px;}
.ws3_c00265{word-spacing:5.096520px;}
._b_c00265{margin-left:-13.172544px;}
._7_c00265{margin-left:-11.761200px;}
._a_c00265{width:2.837974px;}
._6_c00265{width:6.978312px;}
._3_c00265{width:9.173736px;}
._0_c00265{width:11.761200px;}
._1_c00265{width:21.797424px;}
._5_c00265{width:26.854740px;}
._4_c00265{width:28.775340px;}
._2_c00265{width:34.029072px;}
._8_c00265{width:35.536248px;}
._9_c00265{width:37.479024px;}
.fc0_c00265{color:transparent;}
.fs2_c00265{font-size:20.790000px;}
.fs3_c00265{font-size:70.884000px;}
.fs4_c00265{font-size:72.072198px;}
.fs5_c00265{font-size:75.042198px;}
.fs0_c00265{font-size:75.834000px;}
.fs1_c00265{font-size:78.408000px;}
.fs6_c00265{font-size:83.952198px;}
.y0_c00265{bottom:0.000000px;}
.y1c_c00265{bottom:38.754585px;}
.y1_c00265{bottom:76.500000px;}
.y1b_c00265{bottom:147.812985px;}
.y1a_c00265{bottom:178.111935px;}
.y19_c00265{bottom:210.900735px;}
.y18_c00265{bottom:243.328185px;}
.y16_c00265{bottom:308.189025px;}
.y17_c00265{bottom:308.192985px;}
.y15_c00265{bottom:340.630335px;}
.y14_c00265{bottom:373.770585px;}
.y13_c00265{bottom:405.495135px;}
.y12_c00265{bottom:437.214735px;}
.y11_c00265{bottom:469.290735px;}
.y10_c00265{bottom:502.074585px;}
.yf_c00265{bottom:534.506985px;}
.ye_c00265{bottom:566.582985px;}
.yd_c00265{bottom:599.020335px;}
.yc_c00265{bottom:631.091385px;}
.yb_c00265{bottom:664.241535px;}
.ya_c00265{bottom:687.402585px;}
.y9_c00265{bottom:728.037135px;}
.y8_c00265{bottom:760.825935px;}
.y7_c00265{bottom:793.614735px;}
.y6_c00265{bottom:826.754985px;}
.y5_c00265{bottom:860.261535px;}
.y4_c00265{bottom:893.758185px;}
.y3_c00265{bottom:926.546985px;}
.y2_c00265{bottom:1075.878585px;}
.h4_c00265{height:21.683320px;}
.h5_c00265{height:69.568770px;}
.h6_c00265{height:70.699729px;}
.h2_c00265{height:74.426924px;}
.h7_c00265{height:75.628465px;}
.h3_c00265{height:76.953164px;}
.h8_c00265{height:84.608075px;}
.h1_c00265{height:1110.000000px;}
.h0_c00265{height:1263.000000px;}
.w1_c00265{width:763.500000px;}
.w0_c00265{width:892.500000px;}
.x0_c00265{left:0.000000px;}
.x1_c00265{left:64.500000px;}
.x32_c00265{left:72.167100px;}
.x10_c00265{left:73.468950px;}
.x44_c00265{left:94.461900px;}
.x67_c00265{left:95.506350px;}
.x55_c00265{left:104.673750px;}
.x1e_c00265{left:105.871650px;}
.x3a_c00265{left:117.207150px;}
.x4_c00265{left:126.696300px;}
.x11_c00265{left:127.963500px;}
.x1f_c00265{left:138.536700px;}
.x56_c00265{left:140.586000px;}
.x12_c00265{left:149.644500px;}
.x3c_c00265{left:159.841500px;}
.x5d_c00265{left:161.376000px;}
.x33_c00265{left:163.499550px;}
.x2c_c00265{left:171.320550px;}
.x45_c00265{left:173.345100px;}
.x34_c00265{left:182.809500px;}
.x6a_c00265{left:183.873750px;}
.x5a_c00265{left:192.981750px;}
.x5_c00265{left:194.263800px;}
.x27_c00265{left:204.604350px;}
.x28_c00265{left:214.058850px;}
.x3d_c00265{left:215.217150px;}
.x57_c00265{left:226.839750px;}
.x2d_c00265{left:228.587100px;}
.x35_c00265{left:237.551550px;}
.x20_c00265{left:247.204050px;}
.x6_c00265{left:248.213850px;}
.x13_c00265{left:249.832500px;}
.x4a_c00265{left:260.509650px;}
.x3b_c00265{left:267.098100px;}
.x3e_c00265{left:270.399750px;}
.x4e_c00265{left:271.602600px;}
.x14_c00265{left:282.532200px;}
.x51_c00265{left:292.793550px;}
.x46_c00265{left:294.036000px;}
.x7_c00265{left:303.480600px;}
.x47_c00265{left:304.594350px;}
.x15_c00265{left:314.949750px;}
.x3f_c00265{left:316.117950px;}
.x68_c00265{left:318.513750px;}
.x16_c00265{left:326.646600px;}
.x21_c00265{left:337.501950px;}
.x6c_c00265{left:338.873100px;}
.x2e_c00265{left:346.639650px;}
.x4b_c00265{left:347.684100px;}
.x40_c00265{left:348.852300px;}
.x22_c00265{left:359.044350px;}
.x8_c00265{left:370.592700px;}
.x36_c00265{left:380.091750px;}
.x41_c00265{left:381.156000px;}
.x29_c00265{left:391.872750px;}
.x23_c00265{left:393.065700px;}
.x2f_c00265{left:400.777800px;}
.x17_c00265{left:404.094300px;}
.x63_c00265{left:414.840750px;}
.x5e_c00265{left:425.013000px;}
.x4c_c00265{left:426.245550px;}
.x69_c00265{left:428.200800px;}
.x18_c00265{left:435.794100px;}
.x58_c00265{left:437.635500px;}
.x9_c00265{left:447.614700px;}
.x6d_c00265{left:448.644300px;}
.x24_c00265{left:458.380950px;}
.x2a_c00265{left:469.038300px;}
.x59_c00265{left:470.647050px;}
.x19_c00265{left:478.819500px;}
.x48_c00265{left:480.086700px;}
.xa_c00265{left:481.126200px;}
.x61_c00265{left:482.596350px;}
.x25_c00265{left:490.209450px;}
.x37_c00265{left:491.362800px;}
.x2b_c00265{left:502.173600px;}
.x64_c00265{left:503.213100px;}
.x30_c00265{left:511.652850px;}
.x52_c00265{left:513.588300px;}
.x38_c00265{left:524.443650px;}
.x53_c00265{left:535.675200px;}
.x1a_c00265{left:546.020700px;}
.x5f_c00265{left:555.445500px;}
.xb_c00265{left:557.653200px;}
.x31_c00265{left:558.831300px;}
.x42_c00265{left:568.478850px;}
.x6e_c00265{left:579.042150px;}
.x1b_c00265{left:580.136100px;}
.xc_c00265{left:590.402400px;}
.x43_c00265{left:601.218150px;}
.x1c_c00265{left:611.766600px;}
.x65_c00265{left:612.984300px;}
.x5b_c00265{left:615.058350px;}
.x26_c00265{left:622.082400px;}
.xd_c00265{left:623.537700px;}
.xe_c00265{left:633.472350px;}
.x49_c00265{left:645.436500px;}
.x2_c00265{left:655.727550px;}
.x5c_c00265{left:657.192750px;}
.xf_c00265{left:667.147200px;}
.x6b_c00265{left:668.275800px;}
.x3_c00265{left:677.893650px;}
.x54_c00265{left:681.685350px;}
.x4f_c00265{left:689.630100px;}
.x1d_c00265{left:699.272700px;}
.x39_c00265{left:700.653750px;}
.x4d_c00265{left:711.316050px;}
.x60_c00265{left:712.459500px;}
.x66_c00265{left:714.493950px;}
.x50_c00265{left:722.409000px;}
.x62_c00265{left:725.349300px;}
@media print{
.v0_c00265{vertical-align:0.000000pt;}
.ls4_c00265{letter-spacing:-2.439360pt;}
.ls5_c00265{letter-spacing:0.000000pt;}
.lsd_c00265{letter-spacing:0.627264pt;}
.ls6_c00265{letter-spacing:0.808474pt;}
.lsc_c00265{letter-spacing:1.108166pt;}
.ls9_c00265{letter-spacing:1.156954pt;}
.ls0_c00265{letter-spacing:1.498464pt;}
.ls7_c00265{letter-spacing:2.766931pt;}
.ls8_c00265{letter-spacing:3.150400pt;}
.lsf_c00265{letter-spacing:3.164198pt;}
.lsa_c00265{letter-spacing:3.203209pt;}
.lsb_c00265{letter-spacing:3.335209pt;}
.ls2_c00265{letter-spacing:3.370400pt;}
.ls3_c00265{letter-spacing:3.484800pt;}
.lse_c00265{letter-spacing:3.731209pt;}
.ls1_c00265{letter-spacing:5.157856pt;}
.ws4_c00265{word-spacing:-20.588198pt;}
.ws0_c00265{word-spacing:-17.424000pt;}
.ws5_c00265{word-spacing:0.000000pt;}
.ws2_c00265{word-spacing:1.114432pt;}
.ws1_c00265{word-spacing:1.812096pt;}
.ws3_c00265{word-spacing:4.530240pt;}
._b_c00265{margin-left:-11.708928pt;}
._7_c00265{margin-left:-10.454400pt;}
._a_c00265{width:2.522643pt;}
._6_c00265{width:6.202944pt;}
._3_c00265{width:8.154432pt;}
._0_c00265{width:10.454400pt;}
._1_c00265{width:19.375488pt;}
._5_c00265{width:23.870880pt;}
._4_c00265{width:25.578080pt;}
._2_c00265{width:30.248064pt;}
._8_c00265{width:31.587776pt;}
._9_c00265{width:33.314688pt;}
.fs2_c00265{font-size:18.480000pt;}
.fs3_c00265{font-size:63.008000pt;}
.fs4_c00265{font-size:64.064176pt;}
.fs5_c00265{font-size:66.704176pt;}
.fs0_c00265{font-size:67.408000pt;}
.fs1_c00265{font-size:69.696000pt;}
.fs6_c00265{font-size:74.624176pt;}
.y0_c00265{bottom:0.000000pt;}
.y1c_c00265{bottom:34.448520pt;}
.y1_c00265{bottom:68.000000pt;}
.y1b_c00265{bottom:131.389320pt;}
.y1a_c00265{bottom:158.321720pt;}
.y19_c00265{bottom:187.467320pt;}
.y18_c00265{bottom:216.291720pt;}
.y16_c00265{bottom:273.945800pt;}
.y17_c00265{bottom:273.949320pt;}
.y15_c00265{bottom:302.782520pt;}
.y14_c00265{bottom:332.240520pt;}
.y13_c00265{bottom:360.440120pt;}
.y12_c00265{bottom:388.635320pt;}
.y11_c00265{bottom:417.147320pt;}
.y10_c00265{bottom:446.288520pt;}
.yf_c00265{bottom:475.117320pt;}
.ye_c00265{bottom:503.629320pt;}
.yd_c00265{bottom:532.462520pt;}
.yc_c00265{bottom:560.970120pt;}
.yb_c00265{bottom:590.436920pt;}
.ya_c00265{bottom:611.024520pt;}
.y9_c00265{bottom:647.144120pt;}
.y8_c00265{bottom:676.289720pt;}
.y7_c00265{bottom:705.435320pt;}
.y6_c00265{bottom:734.893320pt;}
.y5_c00265{bottom:764.676920pt;}
.y4_c00265{bottom:794.451720pt;}
.y3_c00265{bottom:823.597320pt;}
.y2_c00265{bottom:956.336520pt;}
.h4_c00265{height:19.274063pt;}
.h5_c00265{height:61.838906pt;}
.h6_c00265{height:62.844204pt;}
.h2_c00265{height:66.157266pt;}
.h7_c00265{height:67.225302pt;}
.h3_c00265{height:68.402813pt;}
.h8_c00265{height:75.207177pt;}
.h1_c00265{height:986.666667pt;}
.h0_c00265{height:1122.666667pt;}
.w1_c00265{width:678.666667pt;}
.w0_c00265{width:793.333333pt;}
.x0_c00265{left:0.000000pt;}
.x1_c00265{left:57.333333pt;}
.x32_c00265{left:64.148533pt;}
.x10_c00265{left:65.305733pt;}
.x44_c00265{left:83.966133pt;}
.x67_c00265{left:84.894533pt;}
.x55_c00265{left:93.043333pt;}
.x1e_c00265{left:94.108133pt;}
.x3a_c00265{left:104.184133pt;}
.x4_c00265{left:112.618933pt;}
.x11_c00265{left:113.745333pt;}
.x1f_c00265{left:123.143733pt;}
.x56_c00265{left:124.965333pt;}
.x12_c00265{left:133.017333pt;}
.x3c_c00265{left:142.081333pt;}
.x5d_c00265{left:143.445333pt;}
.x33_c00265{left:145.332933pt;}
.x2c_c00265{left:152.284933pt;}
.x45_c00265{left:154.084533pt;}
.x34_c00265{left:162.497333pt;}
.x6a_c00265{left:163.443333pt;}
.x5a_c00265{left:171.539333pt;}
.x5_c00265{left:172.678933pt;}
.x27_c00265{left:181.870533pt;}
.x28_c00265{left:190.274533pt;}
.x3d_c00265{left:191.304133pt;}
.x57_c00265{left:201.635333pt;}
.x2d_c00265{left:203.188533pt;}
.x35_c00265{left:211.156933pt;}
.x20_c00265{left:219.736933pt;}
.x6_c00265{left:220.634533pt;}
.x13_c00265{left:222.073333pt;}
.x4a_c00265{left:231.564133pt;}
.x3b_c00265{left:237.420533pt;}
.x3e_c00265{left:240.355333pt;}
.x4e_c00265{left:241.424533pt;}
.x14_c00265{left:251.139733pt;}
.x51_c00265{left:260.260933pt;}
.x46_c00265{left:261.365333pt;}
.x7_c00265{left:269.760533pt;}
.x47_c00265{left:270.750533pt;}
.x15_c00265{left:279.955333pt;}
.x3f_c00265{left:280.993733pt;}
.x68_c00265{left:283.123333pt;}
.x16_c00265{left:290.352533pt;}
.x21_c00265{left:300.001733pt;}
.x6c_c00265{left:301.220533pt;}
.x2e_c00265{left:308.124133pt;}
.x4b_c00265{left:309.052533pt;}
.x40_c00265{left:310.090933pt;}
.x22_c00265{left:319.150533pt;}
.x8_c00265{left:329.415733pt;}
.x36_c00265{left:337.859333pt;}
.x41_c00265{left:338.805333pt;}
.x29_c00265{left:348.331333pt;}
.x23_c00265{left:349.391733pt;}
.x2f_c00265{left:356.246933pt;}
.x17_c00265{left:359.194933pt;}
.x63_c00265{left:368.747333pt;}
.x5e_c00265{left:377.789333pt;}
.x4c_c00265{left:378.884933pt;}
.x69_c00265{left:380.622933pt;}
.x18_c00265{left:387.372533pt;}
.x58_c00265{left:389.009333pt;}
.x9_c00265{left:397.879733pt;}
.x6d_c00265{left:398.794933pt;}
.x24_c00265{left:407.449733pt;}
.x2a_c00265{left:416.922933pt;}
.x59_c00265{left:418.352933pt;}
.x19_c00265{left:425.617333pt;}
.x48_c00265{left:426.743733pt;}
.xa_c00265{left:427.667733pt;}
.x61_c00265{left:428.974533pt;}
.x25_c00265{left:435.741733pt;}
.x37_c00265{left:436.766933pt;}
.x2b_c00265{left:446.376533pt;}
.x64_c00265{left:447.300533pt;}
.x30_c00265{left:454.802533pt;}
.x52_c00265{left:456.522933pt;}
.x38_c00265{left:466.172133pt;}
.x53_c00265{left:476.155733pt;}
.x1a_c00265{left:485.351733pt;}
.x5f_c00265{left:493.729333pt;}
.xb_c00265{left:495.691733pt;}
.x31_c00265{left:496.738933pt;}
.x42_c00265{left:505.314533pt;}
.x6e_c00265{left:514.704133pt;}
.x1b_c00265{left:515.676533pt;}
.xc_c00265{left:524.802133pt;}
.x43_c00265{left:534.416133pt;}
.x1c_c00265{left:543.792533pt;}
.x65_c00265{left:544.874933pt;}
.x5b_c00265{left:546.718533pt;}
.x26_c00265{left:552.962133pt;}
.xd_c00265{left:554.255733pt;}
.xe_c00265{left:563.086533pt;}
.x49_c00265{left:573.721333pt;}
.x2_c00265{left:582.868933pt;}
.x5c_c00265{left:584.171333pt;}
.xf_c00265{left:593.019733pt;}
.x6b_c00265{left:594.022933pt;}
.x3_c00265{left:602.572133pt;}
.x54_c00265{left:605.942533pt;}
.x4f_c00265{left:613.004533pt;}
.x1d_c00265{left:621.575733pt;}
.x39_c00265{left:622.803333pt;}
.x4d_c00265{left:632.280933pt;}
.x60_c00265{left:633.297333pt;}
.x66_c00265{left:635.105733pt;}
.x50_c00265{left:642.141333pt;}
.x62_c00265{left:644.754933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1455314a889ea7337dc8bf0a.woff2')format("woff");}.ff1_c00266{font-family:ff1_c00266;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00266;src:url('chunks/assets/font_1ff81ac4e54295c1bb3fac26.woff2')format("woff");}.ff2_c00266{font-family:ff2_c00266;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00266;src:url('chunks/assets/font_da46b646faf0512d0e17abe7.woff2')format("woff");}.ff3_c00266{font-family:ff3_c00266;line-height:0.666000;font-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_c00266{transform:matrix(0.202872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202872,0.000000,0.000000,0.250000,0,0);}
.m20_c00266{transform:matrix(0.210227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210227,0.000000,0.000000,0.250000,0,0);}
.m35_c00266{transform:matrix(0.228445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228445,0.000000,0.000000,0.250000,0,0);}
.m9b_c00266{transform:matrix(0.238687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238687,0.000000,0.000000,0.250000,0,0);}
.m1f_c00266{transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);}
.m0_c00266{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00266{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.m12_c00266{transform:matrix(0.255191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255191,0.000000,0.000000,0.250000,0,0);}
.m15_c00266{transform:matrix(0.255451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255451,0.000000,0.000000,0.250000,0,0);}
.maa_c00266{transform:matrix(0.255538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255538,0.000000,0.000000,0.250000,0,0);}
.mae_c00266{transform:matrix(0.256424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256424,0.000000,0.000000,0.250000,0,0);}
.m8c_c00266{transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);}
.m3b_c00266{transform:matrix(0.259157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259157,0.000000,0.000000,0.250000,0,0);}
.m73_c00266{transform:matrix(0.260147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260147,0.000000,0.000000,0.250000,0,0);}
.m4a_c00266{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m8e_c00266{transform:matrix(0.261222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261222,0.000000,0.000000,0.250000,0,0);}
.m7d_c00266{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.m5f_c00266{transform:matrix(0.263174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263174,0.000000,0.000000,0.250000,0,0);}
.m4_c00266{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m1b_c00266{transform:matrix(0.263309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263309,0.000000,0.000000,0.250000,0,0);}
.m6b_c00266{transform:matrix(0.263699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263699,0.000000,0.000000,0.250000,0,0);}
.m55_c00266{transform:matrix(0.263881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263881,0.000000,0.000000,0.250000,0,0);}
.m5_c00266{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m2_c00266{transform:matrix(0.265034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265034,0.000000,0.000000,0.250000,0,0);}
.m1_c00266{transform:matrix(0.265392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265392,0.000000,0.000000,0.250000,0,0);}
.m38_c00266{transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);}
.m58_c00266{transform:matrix(0.265816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265816,0.000000,0.000000,0.250000,0,0);}
.m31_c00266{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m89_c00266{transform:matrix(0.267205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267205,0.000000,0.000000,0.250000,0,0);}
.mc_c00266{transform:matrix(0.267743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267743,0.000000,0.000000,0.250000,0,0);}
.ma8_c00266{transform:matrix(0.267795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267795,0.000000,0.000000,0.250000,0,0);}
.m52_c00266{transform:matrix(0.267828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267828,0.000000,0.000000,0.250000,0,0);}
.m7_c00266{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m43_c00266{transform:matrix(0.268115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268115,0.000000,0.000000,0.250000,0,0);}
.m53_c00266{transform:matrix(0.268886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268886,0.000000,0.000000,0.250000,0,0);}
.m57_c00266{transform:matrix(0.269234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269234,0.000000,0.000000,0.250000,0,0);}
.m4f_c00266{transform:matrix(0.269251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269251,0.000000,0.000000,0.250000,0,0);}
.m3e_c00266{transform:matrix(0.269571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269571,0.000000,0.000000,0.250000,0,0);}
.m56_c00266{transform:matrix(0.270784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270784,0.000000,0.000000,0.250000,0,0);}
.m46_c00266{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m81_c00266{transform:matrix(0.271150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271150,0.000000,0.000000,0.250000,0,0);}
.m78_c00266{transform:matrix(0.272020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272020,0.000000,0.000000,0.250000,0,0);}
.m1a_c00266{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m49_c00266{transform:matrix(0.272588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272588,0.000000,0.000000,0.250000,0,0);}
.m66_c00266{transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);}
.m82_c00266{transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);}
.m47_c00266{transform:matrix(0.274535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274535,0.000000,0.000000,0.250000,0,0);}
.m6e_c00266{transform:matrix(0.274558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274558,0.000000,0.000000,0.250000,0,0);}
.m7a_c00266{transform:matrix(0.274650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274650,0.000000,0.000000,0.250000,0,0);}
.m9a_c00266{transform:matrix(0.275477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275477,0.000000,0.000000,0.250000,0,0);}
.m61_c00266{transform:matrix(0.275608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275608,0.000000,0.000000,0.250000,0,0);}
.m64_c00266{transform:matrix(0.276488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276488,0.000000,0.000000,0.250000,0,0);}
.m72_c00266{transform:matrix(0.276604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276604,0.000000,0.000000,0.250000,0,0);}
.m8f_c00266{transform:matrix(0.277166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277166,0.000000,0.000000,0.250000,0,0);}
.m2a_c00266{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m5a_c00266{transform:matrix(0.277487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277487,0.000000,0.000000,0.250000,0,0);}
.m54_c00266{transform:matrix(0.278029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278029,0.000000,0.000000,0.250000,0,0);}
.m7f_c00266{transform:matrix(0.278406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278406,0.000000,0.000000,0.250000,0,0);}
.m2f_c00266{transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);}
.m97_c00266{transform:matrix(0.278581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278581,0.000000,0.000000,0.250000,0,0);}
.ma1_c00266{transform:matrix(0.278703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278703,0.000000,0.000000,0.250000,0,0);}
.m76_c00266{transform:matrix(0.279482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279482,0.000000,0.000000,0.250000,0,0);}
.m4d_c00266{transform:matrix(0.279484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279484,0.000000,0.000000,0.250000,0,0);}
.m62_c00266{transform:matrix(0.279794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279794,0.000000,0.000000,0.250000,0,0);}
.m59_c00266{transform:matrix(0.279969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279969,0.000000,0.000000,0.250000,0,0);}
.m6_c00266{transform:matrix(0.280048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280048,0.000000,0.000000,0.250000,0,0);}
.m4b_c00266{transform:matrix(0.280329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280329,0.000000,0.000000,0.250000,0,0);}
.m99_c00266{transform:matrix(0.280366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280366,0.000000,0.000000,0.250000,0,0);}
.m3a_c00266{transform:matrix(0.282165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282165,0.000000,0.000000,0.250000,0,0);}
.m41_c00266{transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);}
.m95_c00266{transform:matrix(0.283088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283088,0.000000,0.000000,0.250000,0,0);}
.m39_c00266{transform:matrix(0.283289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283289,0.000000,0.000000,0.250000,0,0);}
.m88_c00266{transform:matrix(0.283294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283294,0.000000,0.000000,0.250000,0,0);}
.m32_c00266{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.mac_c00266{transform:matrix(0.284116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284116,0.000000,0.000000,0.250000,0,0);}
.m1c_c00266{transform:matrix(0.284504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284504,0.000000,0.000000,0.250000,0,0);}
.m70_c00266{transform:matrix(0.285030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285030,0.000000,0.000000,0.250000,0,0);}
.ma4_c00266{transform:matrix(0.285520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285520,0.000000,0.000000,0.250000,0,0);}
.m21_c00266{transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);}
.m90_c00266{transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);}
.mab_c00266{transform:matrix(0.286006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286006,0.000000,0.000000,0.250000,0,0);}
.m17_c00266{transform:matrix(0.286109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286109,0.000000,0.000000,0.250000,0,0);}
.m10_c00266{transform:matrix(0.286532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286532,0.000000,0.000000,0.250000,0,0);}
.m94_c00266{transform:matrix(0.287229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287229,0.000000,0.000000,0.250000,0,0);}
.m11_c00266{transform:matrix(0.287772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287772,0.000000,0.000000,0.250000,0,0);}
.m6a_c00266{transform:matrix(0.288623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288623,0.000000,0.000000,0.250000,0,0);}
.m51_c00266{transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);}
.m29_c00266{transform:matrix(0.289871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289871,0.000000,0.000000,0.250000,0,0);}
.m25_c00266{transform:matrix(0.290141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290141,0.000000,0.000000,0.250000,0,0);}
.m8b_c00266{transform:matrix(0.290226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290226,0.000000,0.000000,0.250000,0,0);}
.m71_c00266{transform:matrix(0.290405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290405,0.000000,0.000000,0.250000,0,0);}
.m9c_c00266{transform:matrix(0.291532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291532,0.000000,0.000000,0.250000,0,0);}
.ma0_c00266{transform:matrix(0.291905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291905,0.000000,0.000000,0.250000,0,0);}
.ma9_c00266{transform:matrix(0.292193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292193,0.000000,0.000000,0.250000,0,0);}
.m34_c00266{transform:matrix(0.292392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292392,0.000000,0.000000,0.250000,0,0);}
.ma3_c00266{transform:matrix(0.292983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292983,0.000000,0.000000,0.250000,0,0);}
.m18_c00266{transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);}
.m9f_c00266{transform:matrix(0.294819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294819,0.000000,0.000000,0.250000,0,0);}
.m22_c00266{transform:matrix(0.295491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295491,0.000000,0.000000,0.250000,0,0);}
.m98_c00266{transform:matrix(0.295700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295700,0.000000,0.000000,0.250000,0,0);}
.m69_c00266{transform:matrix(0.295843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295843,0.000000,0.000000,0.250000,0,0);}
.ma2_c00266{transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);}
.m1d_c00266{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m48_c00266{transform:matrix(0.298650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298650,0.000000,0.000000,0.250000,0,0);}
.m36_c00266{transform:matrix(0.298710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298710,0.000000,0.000000,0.250000,0,0);}
.m8a_c00266{transform:matrix(0.299025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299025,0.000000,0.000000,0.250000,0,0);}
.m5e_c00266{transform:matrix(0.299542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299542,0.000000,0.000000,0.250000,0,0);}
.m79_c00266{transform:matrix(0.299896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299896,0.000000,0.000000,0.250000,0,0);}
.m4c_c00266{transform:matrix(0.300360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300360,0.000000,0.000000,0.250000,0,0);}
.m42_c00266{transform:matrix(0.302300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302300,0.000000,0.000000,0.250000,0,0);}
.m37_c00266{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m80_c00266{transform:matrix(0.302453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302453,0.000000,0.000000,0.250000,0,0);}
.m3_c00266{transform:matrix(0.302504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302504,0.000000,0.000000,0.250000,0,0);}
.m2c_c00266{transform:matrix(0.302594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302594,0.000000,0.000000,0.250000,0,0);}
.m5b_c00266{transform:matrix(0.302857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302857,0.000000,0.000000,0.250000,0,0);}
.mad_c00266{transform:matrix(0.303685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303685,0.000000,0.000000,0.250000,0,0);}
.m7c_c00266{transform:matrix(0.303788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303788,0.000000,0.000000,0.250000,0,0);}
.m28_c00266{transform:matrix(0.303980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303980,0.000000,0.000000,0.250000,0,0);}
.m77_c00266{transform:matrix(0.304404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304404,0.000000,0.000000,0.250000,0,0);}
.me_c00266{transform:matrix(0.304737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304737,0.000000,0.000000,0.250000,0,0);}
.m86_c00266{transform:matrix(0.305577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305577,0.000000,0.000000,0.250000,0,0);}
.m40_c00266{transform:matrix(0.305715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305715,0.000000,0.000000,0.250000,0,0);}
.m24_c00266{transform:matrix(0.305944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305944,0.000000,0.000000,0.250000,0,0);}
.m1e_c00266{transform:matrix(0.306004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306004,0.000000,0.000000,0.250000,0,0);}
.m3c_c00266{transform:matrix(0.307052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307052,0.000000,0.000000,0.250000,0,0);}
.m9_c00266{transform:matrix(0.307112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307112,0.000000,0.000000,0.250000,0,0);}
.m6f_c00266{transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);}
.m67_c00266{transform:matrix(0.308922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308922,0.000000,0.000000,0.250000,0,0);}
.ma7_c00266{transform:matrix(0.309060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309060,0.000000,0.000000,0.250000,0,0);}
.m5c_c00266{transform:matrix(0.309497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309497,0.000000,0.000000,0.250000,0,0);}
.m91_c00266{transform:matrix(0.311480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311480,0.000000,0.000000,0.250000,0,0);}
.m7e_c00266{transform:matrix(0.312047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312047,0.000000,0.000000,0.250000,0,0);}
.m45_c00266{transform:matrix(0.312932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312932,0.000000,0.000000,0.250000,0,0);}
.m27_c00266{transform:matrix(0.314931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314931,0.000000,0.000000,0.250000,0,0);}
.m44_c00266{transform:matrix(0.315189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315189,0.000000,0.000000,0.250000,0,0);}
.m6d_c00266{transform:matrix(0.315232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315232,0.000000,0.000000,0.250000,0,0);}
.mf_c00266{transform:matrix(0.315550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315550,0.000000,0.000000,0.250000,0,0);}
.m26_c00266{transform:matrix(0.315917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315917,0.000000,0.000000,0.250000,0,0);}
.ma_c00266{transform:matrix(0.316283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316283,0.000000,0.000000,0.250000,0,0);}
.m23_c00266{transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);}
.m2e_c00266{transform:matrix(0.317235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317235,0.000000,0.000000,0.250000,0,0);}
.m14_c00266{transform:matrix(0.317487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317487,0.000000,0.000000,0.250000,0,0);}
.m92_c00266{transform:matrix(0.318859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318859,0.000000,0.000000,0.250000,0,0);}
.m19_c00266{transform:matrix(0.320922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320922,0.000000,0.000000,0.250000,0,0);}
.m68_c00266{transform:matrix(0.321048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321048,0.000000,0.000000,0.250000,0,0);}
.m30_c00266{transform:matrix(0.322488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322488,0.000000,0.000000,0.250000,0,0);}
.m7b_c00266{transform:matrix(0.324684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324684,0.000000,0.000000,0.250000,0,0);}
.mb_c00266{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m5d_c00266{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.m75_c00266{transform:matrix(0.331261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331261,0.000000,0.000000,0.250000,0,0);}
.m9e_c00266{transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);}
.m50_c00266{transform:matrix(0.331699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331699,0.000000,0.000000,0.250000,0,0);}
.m63_c00266{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m2b_c00266{transform:matrix(0.334985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334985,0.000000,0.000000,0.250000,0,0);}
.m84_c00266{transform:matrix(0.335561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335561,0.000000,0.000000,0.250000,0,0);}
.m83_c00266{transform:matrix(0.335744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335744,0.000000,0.000000,0.250000,0,0);}
.m3f_c00266{transform:matrix(0.336307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336307,0.000000,0.000000,0.250000,0,0);}
.m8d_c00266{transform:matrix(0.337295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337295,0.000000,0.000000,0.250000,0,0);}
.m85_c00266{transform:matrix(0.338773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338773,0.000000,0.000000,0.250000,0,0);}
.ma6_c00266{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m2d_c00266{transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);}
.m65_c00266{transform:matrix(0.341914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341914,0.000000,0.000000,0.250000,0,0);}
.m9d_c00266{transform:matrix(0.342408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342408,0.000000,0.000000,0.250000,0,0);}
.m3d_c00266{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.m16_c00266{transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);}
.ma5_c00266{transform:matrix(0.346526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346526,0.000000,0.000000,0.250000,0,0);}
.m93_c00266{transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);}
.m8_c00266{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m60_c00266{transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);}
.m33_c00266{transform:matrix(0.350956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350956,0.000000,0.000000,0.250000,0,0);}
.m87_c00266{transform:matrix(0.352464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352464,0.000000,0.000000,0.250000,0,0);}
.md_c00266{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m96_c00266{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m4e_c00266{transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);}
.m13_c00266{transform:matrix(0.401846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401846,0.000000,0.000000,0.250000,0,0);}
.v1_c00266{vertical-align:-18.532800px;}
.v0_c00266{vertical-align:0.000000px;}
.v2_c00266{vertical-align:2.831400px;}
.lsa_c00266{letter-spacing:-2.952180px;}
.ls4_c00266{letter-spacing:-2.744280px;}
.ls6_c00266{letter-spacing:-0.846806px;}
.ls9_c00266{letter-spacing:-0.533174px;}
.ls1_c00266{letter-spacing:0.000000px;}
.ls0_c00266{letter-spacing:1.685772px;}
.ls8_c00266{letter-spacing:2.924618px;}
.ls7_c00266{letter-spacing:3.112798px;}
.lsb_c00266{letter-spacing:3.293136px;}
.ls3_c00266{letter-spacing:3.920400px;}
.ls2_c00266{letter-spacing:4.078810px;}
.ls5_c00266{letter-spacing:51.321798px;}
.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:-19.602000px;}
.ws1_c00266{word-spacing:0.000000px;}
._2_c00266{margin-left:-11.760804px;}
._1_c00266{width:5.488560px;}
._9_c00266{width:7.135128px;}
._4_c00266{width:8.546472px;}
._5_c00266{width:9.644184px;}
._8_c00266{width:17.484588px;}
._0_c00266{width:20.856528px;}
._3_c00266{width:22.267872px;}
._a_c00266{width:25.757028px;}
._7_c00266{width:30.422304px;}
._6_c00266{width:35.358048px;}
._b_c00266{width:62.719954px;}
._c_c00266{width:248.905800px;}
.fc0_c00266{color:transparent;}
.fs6_c00266{font-size:22.176000px;}
.fsb_c00266{font-size:22.374000px;}
.fsa_c00266{font-size:27.720000px;}
.fs9_c00266{font-size:34.056198px;}
.fs2_c00266{font-size:39.204000px;}
.fs1_c00266{font-size:44.748000px;}
.fs5_c00266{font-size:51.321798px;}
.fs0_c00266{font-size:56.628000px;}
.fs4_c00266{font-size:78.408000px;}
.fs7_c00266{font-size:79.002198px;}
.fs3_c00266{font-size:81.576198px;}
.fs8_c00266{font-size:84.348000px;}
.y0_c00266{bottom:0.000000px;}
.y4_c00266{bottom:42.679935px;}
.y1f_c00266{bottom:49.451535px;}
.y1_c00266{bottom:76.500000px;}
.y1e_c00266{bottom:87.942735px;}
.y1d_c00266{bottom:145.323135px;}
.y3_c00266{bottom:160.291935px;}
.y1c_c00266{bottom:174.899385px;}
.y1b_c00266{bottom:211.608585px;}
.y1a_c00266{bottom:244.045935px;}
.y19_c00266{bottom:276.829785px;}
.y18_c00266{bottom:309.262185px;}
.y17_c00266{bottom:341.338185px;}
.y16_c00266{bottom:373.419135px;}
.y15_c00266{bottom:405.133785px;}
.y14_c00266{bottom:471.429135px;}
.y13_c00266{bottom:504.569385px;}
.y12_c00266{bottom:536.650335px;}
.y11_c00266{bottom:570.146985px;}
.y10_c00266{bottom:602.579385px;}
.yf_c00266{bottom:635.724585px;}
.ye_c00266{bottom:692.397135px;}
.yd_c00266{bottom:699.520185px;}
.yc_c00266{bottom:729.462735px;}
.y2_c00266{bottom:747.282735px;}
.yb_c00266{bottom:761.533785px;}
.ya_c00266{bottom:794.322585px;}
.y9_c00266{bottom:826.403535px;}
.y8_c00266{bottom:858.835935px;}
.y7_c00266{bottom:891.981135px;}
.y6_c00266{bottom:925.121385px;}
.y5_c00266{bottom:1074.452985px;}
.h8_c00266{height:23.128875px;}
.hc_c00266{height:25.960275px;}
.h7_c00266{height:34.180317px;}
.hb_c00266{height:35.519550px;}
.h4_c00266{height:38.476582px;}
.h3_c00266{height:43.917715px;}
.h2_c00266{height:59.061234px;}
.h6_c00266{height:76.953164px;}
.h9_c00266{height:77.536337px;}
.h5_c00266{height:80.062577px;}
.ha_c00266{height:82.782949px;}
.h1_c00266{height:1110.000000px;}
.h0_c00266{height:1263.000000px;}
.w1_c00266{width:763.500000px;}
.w0_c00266{width:892.500000px;}
.x0_c00266{left:0.000000px;}
.x4_c00266{left:19.311000px;}
.x2_c00266{left:28.384350px;}
.x3_c00266{left:59.203050px;}
.x1_c00266{left:64.500000px;}
.x1b_c00266{left:66.454800px;}
.x24_c00266{left:67.603200px;}
.x6_c00266{left:68.796150px;}
.x56_c00266{left:88.922850px;}
.x12_c00266{left:90.467250px;}
.x25_c00266{left:99.684150px;}
.x58_c00266{left:100.797900px;}
.x2d_c00266{left:110.861250px;}
.x3f_c00266{left:120.984000px;}
.x13_c00266{left:123.305550px;}
.x1c_c00266{left:132.042300px;}
.x37_c00266{left:143.739150px;}
.x40_c00266{left:154.282650px;}
.x7_c00266{left:155.406300px;}
.x2e_c00266{left:165.266700px;}
.x5d_c00266{left:166.697250px;}
.x8_c00266{left:176.666550px;}
.x46_c00266{left:179.938500px;}
.x52_c00266{left:187.833750px;}
.x26_c00266{left:199.609800px;}
.x5e_c00266{left:200.634450px;}
.x14_c00266{left:209.579100px;}
.x4a_c00266{left:220.503750px;}
.x53_c00266{left:221.686800px;}
.x2f_c00266{left:231.839250px;}
.x9_c00266{left:242.729250px;}
.x27_c00266{left:254.337000px;}
.x3e_c00266{left:264.232050px;}
.x3c_c00266{left:265.875450px;}
.xa_c00266{left:275.874450px;}
.x4c_c00266{left:277.587150px;}
.x47_c00266{left:287.427750px;}
.x38_c00266{left:298.560300px;}
.x1d_c00266{left:309.994800px;}
.xb_c00266{left:320.454150px;}
.x15_c00266{left:331.037250px;}
.x64_c00266{left:332.160900px;}
.x1e_c00266{left:342.169800px;}
.x59_c00266{left:343.867650px;}
.x4d_c00266{left:351.985650px;}
.xc_c00266{left:353.549850px;}
.x54_c00266{left:363.355800px;}
.x32_c00266{left:364.504200px;}
.x30_c00266{left:375.626850px;}
.x28_c00266{left:385.997100px;}
.x33_c00266{left:397.392000px;}
.x4e_c00266{left:398.461200px;}
.x1f_c00266{left:407.970150px;}
.x4f_c00266{left:409.059150px;}
.x29_c00266{left:419.736300px;}
.x16_c00266{left:430.190700px;}
.x50_c00266{left:431.556900px;}
.x5b_c00266{left:440.372850px;}
.x39_c00266{left:441.595500px;}
.x20_c00266{left:452.678550px;}
.x17_c00266{left:462.717150px;}
.x43_c00266{left:464.009100px;}
.x5c_c00266{left:475.305000px;}
.x3d_c00266{left:476.413800px;}
.x21_c00266{left:484.512000px;}
.x2a_c00266{left:486.016800px;}
.x44_c00266{left:495.936600px;}
.x41_c00266{left:497.342400px;}
.x66_c00266{left:505.509900px;}
.xd_c00266{left:506.816700px;}
.x34_c00266{left:518.464050px;}
.x62_c00266{left:519.622350px;}
.x65_c00266{left:529.804500px;}
.x22_c00266{left:531.200400px;}
.xe_c00266{left:540.640050px;}
.x23_c00266{left:551.173650px;}
.x63_c00266{left:552.351750px;}
.x18_c00266{left:561.934950px;}
.x48_c00266{left:563.113050px;}
.xf_c00266{left:572.919000px;}
.x3a_c00266{left:574.201050px;}
.x2b_c00266{left:584.749500px;}
.x55_c00266{left:595.005900px;}
.x35_c00266{left:596.248350px;}
.x57_c00266{left:598.357050px;}
.x51_c00266{left:605.336550px;}
.x5f_c00266{left:606.613650px;}
.x42_c00266{left:617.305650px;}
.x4b_c00266{left:618.369900px;}
.x10_c00266{left:627.992700px;}
.x2c_c00266{left:629.017350px;}
.x11_c00266{left:639.031200px;}
.x19_c00266{left:650.099400px;}
.x5_c00266{left:652.529850px;}
.x3b_c00266{left:661.474500px;}
.x45_c00266{left:662.489250px;}
.x36_c00266{left:672.517950px;}
.x60_c00266{left:682.323900px;}
.x31_c00266{left:683.368350px;}
.x1a_c00266{left:694.213800px;}
.x49_c00266{left:695.654250px;}
.x5a_c00266{left:705.420600px;}
.x61_c00266{left:740.763600px;}
@media print{
.v1_c00266{vertical-align:-16.473600pt;}
.v0_c00266{vertical-align:0.000000pt;}
.v2_c00266{vertical-align:2.516800pt;}
.lsa_c00266{letter-spacing:-2.624160pt;}
.ls4_c00266{letter-spacing:-2.439360pt;}
.ls6_c00266{letter-spacing:-0.752717pt;}
.ls9_c00266{letter-spacing:-0.473933pt;}
.ls1_c00266{letter-spacing:0.000000pt;}
.ls0_c00266{letter-spacing:1.498464pt;}
.ls8_c00266{letter-spacing:2.599661pt;}
.ls7_c00266{letter-spacing:2.766931pt;}
.lsb_c00266{letter-spacing:2.927232pt;}
.ls3_c00266{letter-spacing:3.484800pt;}
.ls2_c00266{letter-spacing:3.625609pt;}
.ls5_c00266{letter-spacing:45.619376pt;}
.ws0_c00266{word-spacing:-17.424000pt;}
.ws1_c00266{word-spacing:0.000000pt;}
._2_c00266{margin-left:-10.454048pt;}
._1_c00266{width:4.878720pt;}
._9_c00266{width:6.342336pt;}
._4_c00266{width:7.596864pt;}
._5_c00266{width:8.572608pt;}
._8_c00266{width:15.541856pt;}
._0_c00266{width:18.539136pt;}
._3_c00266{width:19.793664pt;}
._a_c00266{width:22.895136pt;}
._7_c00266{width:27.042048pt;}
._6_c00266{width:31.429376pt;}
._b_c00266{width:55.751070pt;}
._c_c00266{width:221.249600pt;}
.fs6_c00266{font-size:19.712000pt;}
.fsb_c00266{font-size:19.888000pt;}
.fsa_c00266{font-size:24.640000pt;}
.fs9_c00266{font-size:30.272176pt;}
.fs2_c00266{font-size:34.848000pt;}
.fs1_c00266{font-size:39.776000pt;}
.fs5_c00266{font-size:45.619376pt;}
.fs0_c00266{font-size:50.336000pt;}
.fs4_c00266{font-size:69.696000pt;}
.fs7_c00266{font-size:70.224176pt;}
.fs3_c00266{font-size:72.512176pt;}
.fs8_c00266{font-size:74.976000pt;}
.y0_c00266{bottom:0.000000pt;}
.y4_c00266{bottom:37.937720pt;}
.y1f_c00266{bottom:43.956920pt;}
.y1_c00266{bottom:68.000000pt;}
.y1e_c00266{bottom:78.171320pt;}
.y1d_c00266{bottom:129.176120pt;}
.y3_c00266{bottom:142.481720pt;}
.y1c_c00266{bottom:155.466120pt;}
.y1b_c00266{bottom:188.096520pt;}
.y1a_c00266{bottom:216.929720pt;}
.y19_c00266{bottom:246.070920pt;}
.y18_c00266{bottom:274.899720pt;}
.y17_c00266{bottom:303.411720pt;}
.y16_c00266{bottom:331.928120pt;}
.y15_c00266{bottom:360.118920pt;}
.y14_c00266{bottom:419.048120pt;}
.y13_c00266{bottom:448.506120pt;}
.y12_c00266{bottom:477.022520pt;}
.y11_c00266{bottom:506.797320pt;}
.y10_c00266{bottom:535.626120pt;}
.yf_c00266{bottom:565.088520pt;}
.ye_c00266{bottom:615.464120pt;}
.yd_c00266{bottom:621.795720pt;}
.yc_c00266{bottom:648.411320pt;}
.y2_c00266{bottom:664.251320pt;}
.yb_c00266{bottom:676.918920pt;}
.ya_c00266{bottom:706.064520pt;}
.y9_c00266{bottom:734.580920pt;}
.y8_c00266{bottom:763.409720pt;}
.y7_c00266{bottom:792.872120pt;}
.y6_c00266{bottom:822.330120pt;}
.y5_c00266{bottom:955.069320pt;}
.h8_c00266{height:20.559000pt;}
.hc_c00266{height:23.075800pt;}
.h7_c00266{height:30.382504pt;}
.hb_c00266{height:31.572934pt;}
.h4_c00266{height:34.201406pt;}
.h3_c00266{height:39.037969pt;}
.h2_c00266{height:52.498875pt;}
.h6_c00266{height:68.402813pt;}
.h9_c00266{height:68.921188pt;}
.h5_c00266{height:71.166735pt;}
.ha_c00266{height:73.584844pt;}
.h1_c00266{height:986.666667pt;}
.h0_c00266{height:1122.666667pt;}
.w1_c00266{width:678.666667pt;}
.w0_c00266{width:793.333333pt;}
.x0_c00266{left:0.000000pt;}
.x4_c00266{left:17.165333pt;}
.x2_c00266{left:25.230533pt;}
.x3_c00266{left:52.624933pt;}
.x1_c00266{left:57.333333pt;}
.x1b_c00266{left:59.070933pt;}
.x24_c00266{left:60.091733pt;}
.x6_c00266{left:61.152133pt;}
.x56_c00266{left:79.042533pt;}
.x12_c00266{left:80.415333pt;}
.x25_c00266{left:88.608133pt;}
.x58_c00266{left:89.598133pt;}
.x2d_c00266{left:98.543333pt;}
.x3f_c00266{left:107.541333pt;}
.x13_c00266{left:109.604933pt;}
.x1c_c00266{left:117.370933pt;}
.x37_c00266{left:127.768133pt;}
.x40_c00266{left:137.140133pt;}
.x7_c00266{left:138.138933pt;}
.x2e_c00266{left:146.903733pt;}
.x5d_c00266{left:148.175333pt;}
.x8_c00266{left:157.036933pt;}
.x46_c00266{left:159.945333pt;}
.x52_c00266{left:166.963333pt;}
.x26_c00266{left:177.430933pt;}
.x5e_c00266{left:178.341733pt;}
.x14_c00266{left:186.292533pt;}
.x4a_c00266{left:196.003333pt;}
.x53_c00266{left:197.054933pt;}
.x2f_c00266{left:206.079333pt;}
.x9_c00266{left:215.759333pt;}
.x27_c00266{left:226.077333pt;}
.x3e_c00266{left:234.872933pt;}
.x3c_c00266{left:236.333733pt;}
.xa_c00266{left:245.221733pt;}
.x4c_c00266{left:246.744133pt;}
.x47_c00266{left:255.491333pt;}
.x38_c00266{left:265.386933pt;}
.x1d_c00266{left:275.550933pt;}
.xb_c00266{left:284.848133pt;}
.x15_c00266{left:294.255333pt;}
.x64_c00266{left:295.254133pt;}
.x1e_c00266{left:304.150933pt;}
.x59_c00266{left:305.660133pt;}
.x4d_c00266{left:312.876133pt;}
.xc_c00266{left:314.266533pt;}
.x54_c00266{left:322.982933pt;}
.x32_c00266{left:324.003733pt;}
.x30_c00266{left:333.890533pt;}
.x28_c00266{left:343.108533pt;}
.x33_c00266{left:353.237333pt;}
.x4e_c00266{left:354.187733pt;}
.x1f_c00266{left:362.640133pt;}
.x4f_c00266{left:363.608133pt;}
.x29_c00266{left:373.098933pt;}
.x16_c00266{left:382.391733pt;}
.x50_c00266{left:383.606133pt;}
.x5b_c00266{left:391.442533pt;}
.x39_c00266{left:392.529333pt;}
.x20_c00266{left:402.380933pt;}
.x17_c00266{left:411.304133pt;}
.x43_c00266{left:412.452533pt;}
.x5c_c00266{left:422.493333pt;}
.x3d_c00266{left:423.478933pt;}
.x21_c00266{left:430.677333pt;}
.x2a_c00266{left:432.014933pt;}
.x44_c00266{left:440.832533pt;}
.x41_c00266{left:442.082133pt;}
.x66_c00266{left:449.342133pt;}
.xd_c00266{left:450.503733pt;}
.x34_c00266{left:460.856933pt;}
.x62_c00266{left:461.886533pt;}
.x65_c00266{left:470.937333pt;}
.x22_c00266{left:472.178133pt;}
.xe_c00266{left:480.568933pt;}
.x23_c00266{left:489.932133pt;}
.x63_c00266{left:490.979333pt;}
.x18_c00266{left:499.497733pt;}
.x48_c00266{left:500.544933pt;}
.xf_c00266{left:509.261333pt;}
.x3a_c00266{left:510.400933pt;}
.x2b_c00266{left:519.777333pt;}
.x55_c00266{left:528.894133pt;}
.x35_c00266{left:529.998533pt;}
.x57_c00266{left:531.872933pt;}
.x51_c00266{left:538.076933pt;}
.x5f_c00266{left:539.212133pt;}
.x42_c00266{left:548.716133pt;}
.x4b_c00266{left:549.662133pt;}
.x10_c00266{left:558.215733pt;}
.x2c_c00266{left:559.126533pt;}
.x11_c00266{left:568.027733pt;}
.x19_c00266{left:577.866133pt;}
.x5_c00266{left:580.026533pt;}
.x3b_c00266{left:587.977333pt;}
.x45_c00266{left:588.879333pt;}
.x36_c00266{left:597.793733pt;}
.x60_c00266{left:606.510133pt;}
.x31_c00266{left:607.438533pt;}
.x1a_c00266{left:617.078933pt;}
.x49_c00266{left:618.359333pt;}
.x5a_c00266{left:627.040533pt;}
.x61_c00266{left:658.456533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_14834abe676f6a6052401209.woff2')format("woff");}.ff1_c00267{font-family:ff1_c00267;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00267;src:url('chunks/assets/font_1455314a889ea7337dc8bf0a.woff2')format("woff");}.ff2_c00267{font-family:ff2_c00267;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00267;src:url('chunks/assets/font_4b7b2ebcdb31ea637e071d61.woff2')format("woff");}.ff3_c00267{font-family:ff3_c00267;line-height:0.666000;font-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_c00267{transform:matrix(0.084375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084375,0.000000,0.000000,0.250000,0,0);}
.m78_c00267{transform:matrix(0.105678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105678,0.000000,0.000000,0.250000,0,0);}
.m91_c00267{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m93_c00267{transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);}
.m74_c00267{transform:matrix(0.180508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180508,0.000000,0.000000,0.250000,0,0);}
.m5a_c00267{transform:matrix(0.207770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207770,0.000000,0.000000,0.250000,0,0);}
.m1f_c00267{transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);}
.m2_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);}
.m44_c00267{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.mac_c00267{transform:matrix(0.252064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252064,0.000000,0.000000,0.250000,0,0);}
.m4c_c00267{transform:matrix(0.252251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252251,0.000000,0.000000,0.250000,0,0);}
.m84_c00267{transform:matrix(0.254170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254170,0.000000,0.000000,0.250000,0,0);}
.ma3_c00267{transform:matrix(0.254914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254914,0.000000,0.000000,0.250000,0,0);}
.m68_c00267{transform:matrix(0.255387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255387,0.000000,0.000000,0.250000,0,0);}
.ma5_c00267{transform:matrix(0.256823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256823,0.000000,0.000000,0.250000,0,0);}
.m1c_c00267{transform:matrix(0.256956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256956,0.000000,0.000000,0.250000,0,0);}
.m4e_c00267{transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);}
.m8_c00267{transform:matrix(0.257794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257794,0.000000,0.000000,0.250000,0,0);}
.m9e_c00267{transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);}
.m6e_c00267{transform:matrix(0.258596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258596,0.000000,0.000000,0.250000,0,0);}
.m86_c00267{transform:matrix(0.259072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259072,0.000000,0.000000,0.250000,0,0);}
.m38_c00267{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m67_c00267{transform:matrix(0.261222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261222,0.000000,0.000000,0.250000,0,0);}
.ma0_c00267{transform:matrix(0.262297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262297,0.000000,0.000000,0.250000,0,0);}
.m27_c00267{transform:matrix(0.262890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262890,0.000000,0.000000,0.250000,0,0);}
.m0_c00267{transform:matrix(0.263161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263161,0.000000,0.000000,0.250000,0,0);}
.m34_c00267{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m1e_c00267{transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);}
.m42_c00267{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m2e_c00267{transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);}
.m9f_c00267{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m56_c00267{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.m1b_c00267{transform:matrix(0.267159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267159,0.000000,0.000000,0.250000,0,0);}
.mb_c00267{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m65_c00267{transform:matrix(0.268130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268130,0.000000,0.000000,0.250000,0,0);}
.m6c_c00267{transform:matrix(0.268694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268694,0.000000,0.000000,0.250000,0,0);}
.m16_c00267{transform:matrix(0.268731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268731,0.000000,0.000000,0.250000,0,0);}
.m83_c00267{transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);}
.m77_c00267{transform:matrix(0.269095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269095,0.000000,0.000000,0.250000,0,0);}
.m52_c00267{transform:matrix(0.270266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270266,0.000000,0.000000,0.250000,0,0);}
.m90_c00267{transform:matrix(0.270362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270362,0.000000,0.000000,0.250000,0,0);}
.m19_c00267{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m49_c00267{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m3c_c00267{transform:matrix(0.275788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275788,0.000000,0.000000,0.250000,0,0);}
.me_c00267{transform:matrix(0.276082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276082,0.000000,0.000000,0.250000,0,0);}
.maa_c00267{transform:matrix(0.276429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276429,0.000000,0.000000,0.250000,0,0);}
.m14_c00267{transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);}
.m32_c00267{transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);}
.m87_c00267{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m82_c00267{transform:matrix(0.277352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277352,0.000000,0.000000,0.250000,0,0);}
.m1a_c00267{transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);}
.m89_c00267{transform:matrix(0.278681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278681,0.000000,0.000000,0.250000,0,0);}
.m97_c00267{transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);}
.ma1_c00267{transform:matrix(0.279482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279482,0.000000,0.000000,0.250000,0,0);}
.m36_c00267{transform:matrix(0.279964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279964,0.000000,0.000000,0.250000,0,0);}
.m20_c00267{transform:matrix(0.280329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280329,0.000000,0.000000,0.250000,0,0);}
.mb2_c00267{transform:matrix(0.281018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281018,0.000000,0.000000,0.250000,0,0);}
.m30_c00267{transform:matrix(0.281417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281417,0.000000,0.000000,0.250000,0,0);}
.ma4_c00267{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.m98_c00267{transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);}
.m8c_c00267{transform:matrix(0.281832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281832,0.000000,0.000000,0.250000,0,0);}
.m3d_c00267{transform:matrix(0.282114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282114,0.000000,0.000000,0.250000,0,0);}
.m7f_c00267{transform:matrix(0.282165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282165,0.000000,0.000000,0.250000,0,0);}
.m29_c00267{transform:matrix(0.284537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284537,0.000000,0.000000,0.250000,0,0);}
.m54_c00267{transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);}
.m8b_c00267{transform:matrix(0.285994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285994,0.000000,0.000000,0.250000,0,0);}
.m1d_c00267{transform:matrix(0.286384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286384,0.000000,0.000000,0.250000,0,0);}
.mae_c00267{transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);}
.m70_c00267{transform:matrix(0.287440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287440,0.000000,0.000000,0.250000,0,0);}
.m3b_c00267{transform:matrix(0.287533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287533,0.000000,0.000000,0.250000,0,0);}
.m3f_c00267{transform:matrix(0.287636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287636,0.000000,0.000000,0.250000,0,0);}
.m8a_c00267{transform:matrix(0.287833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287833,0.000000,0.000000,0.250000,0,0);}
.m48_c00267{transform:matrix(0.287967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287967,0.000000,0.000000,0.250000,0,0);}
.maf_c00267{transform:matrix(0.288121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288121,0.000000,0.000000,0.250000,0,0);}
.m7_c00267{transform:matrix(0.288174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288174,0.000000,0.000000,0.250000,0,0);}
.m8d_c00267{transform:matrix(0.288481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288481,0.000000,0.000000,0.250000,0,0);}
.m4f_c00267{transform:matrix(0.289026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289026,0.000000,0.000000,0.250000,0,0);}
.m7a_c00267{transform:matrix(0.289064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289064,0.000000,0.000000,0.250000,0,0);}
.m7e_c00267{transform:matrix(0.289520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289520,0.000000,0.000000,0.250000,0,0);}
.m37_c00267{transform:matrix(0.289650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289650,0.000000,0.000000,0.250000,0,0);}
.m9a_c00267{transform:matrix(0.290314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290314,0.000000,0.000000,0.250000,0,0);}
.m2d_c00267{transform:matrix(0.290940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290940,0.000000,0.000000,0.250000,0,0);}
.m64_c00267{transform:matrix(0.290973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290973,0.000000,0.000000,0.250000,0,0);}
.ma6_c00267{transform:matrix(0.291262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291262,0.000000,0.000000,0.250000,0,0);}
.m3a_c00267{transform:matrix(0.291645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291645,0.000000,0.000000,0.250000,0,0);}
.m51_c00267{transform:matrix(0.291730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291730,0.000000,0.000000,0.250000,0,0);}
.m69_c00267{transform:matrix(0.291946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291946,0.000000,0.000000,0.250000,0,0);}
.m26_c00267{transform:matrix(0.292385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292385,0.000000,0.000000,0.250000,0,0);}
.m53_c00267{transform:matrix(0.292614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292614,0.000000,0.000000,0.250000,0,0);}
.m4_c00267{transform:matrix(0.292989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292989,0.000000,0.000000,0.250000,0,0);}
.m79_c00267{transform:matrix(0.292995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292995,0.000000,0.000000,0.250000,0,0);}
.m5b_c00267{transform:matrix(0.293350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293350,0.000000,0.000000,0.250000,0,0);}
.m47_c00267{transform:matrix(0.293573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293573,0.000000,0.000000,0.250000,0,0);}
.mb1_c00267{transform:matrix(0.293607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293607,0.000000,0.000000,0.250000,0,0);}
.ma9_c00267{transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);}
.m9b_c00267{transform:matrix(0.293987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293987,0.000000,0.000000,0.250000,0,0);}
.m45_c00267{transform:matrix(0.294116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294116,0.000000,0.000000,0.250000,0,0);}
.m57_c00267{transform:matrix(0.294168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294168,0.000000,0.000000,0.250000,0,0);}
.m9d_c00267{transform:matrix(0.294199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294199,0.000000,0.000000,0.250000,0,0);}
.m95_c00267{transform:matrix(0.296323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296323,0.000000,0.000000,0.250000,0,0);}
.m5d_c00267{transform:matrix(0.296607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296607,0.000000,0.000000,0.250000,0,0);}
.m2a_c00267{transform:matrix(0.296811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296811,0.000000,0.000000,0.250000,0,0);}
.m12_c00267{transform:matrix(0.296814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296814,0.000000,0.000000,0.250000,0,0);}
.mb3_c00267{transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);}
.m46_c00267{transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);}
.m40_c00267{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m75_c00267{transform:matrix(0.297306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297306,0.000000,0.000000,0.250000,0,0);}
.m3_c00267{transform:matrix(0.297631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297631,0.000000,0.000000,0.250000,0,0);}
.m11_c00267{transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);}
.m24_c00267{transform:matrix(0.299174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299174,0.000000,0.000000,0.250000,0,0);}
.m61_c00267{transform:matrix(0.299862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299862,0.000000,0.000000,0.250000,0,0);}
.ma2_c00267{transform:matrix(0.300667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300667,0.000000,0.000000,0.250000,0,0);}
.md_c00267{transform:matrix(0.300926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300926,0.000000,0.000000,0.250000,0,0);}
.m9_c00267{transform:matrix(0.301203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301203,0.000000,0.000000,0.250000,0,0);}
.m63_c00267{transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);}
.m7d_c00267{transform:matrix(0.302057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302057,0.000000,0.000000,0.250000,0,0);}
.m76_c00267{transform:matrix(0.302203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302203,0.000000,0.000000,0.250000,0,0);}
.m58_c00267{transform:matrix(0.302388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302388,0.000000,0.000000,0.250000,0,0);}
.mf_c00267{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m85_c00267{transform:matrix(0.302931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302931,0.000000,0.000000,0.250000,0,0);}
.ma_c00267{transform:matrix(0.304213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304213,0.000000,0.000000,0.250000,0,0);}
.m28_c00267{transform:matrix(0.304237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304237,0.000000,0.000000,0.250000,0,0);}
.m88_c00267{transform:matrix(0.305355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305355,0.000000,0.000000,0.250000,0,0);}
.m6d_c00267{transform:matrix(0.305608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305608,0.000000,0.000000,0.250000,0,0);}
.m23_c00267{transform:matrix(0.305912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305912,0.000000,0.000000,0.250000,0,0);}
.m8e_c00267{transform:matrix(0.306620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306620,0.000000,0.000000,0.250000,0,0);}
.m5_c00267{transform:matrix(0.307034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307034,0.000000,0.000000,0.250000,0,0);}
.ma7_c00267{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m60_c00267{transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);}
.m41_c00267{transform:matrix(0.309429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309429,0.000000,0.000000,0.250000,0,0);}
.ma8_c00267{transform:matrix(0.310202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310202,0.000000,0.000000,0.250000,0,0);}
.m81_c00267{transform:matrix(0.310626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310626,0.000000,0.000000,0.250000,0,0);}
.m13_c00267{transform:matrix(0.311442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311442,0.000000,0.000000,0.250000,0,0);}
.mb0_c00267{transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);}
.m3e_c00267{transform:matrix(0.312149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312149,0.000000,0.000000,0.250000,0,0);}
.m18_c00267{transform:matrix(0.312229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312229,0.000000,0.000000,0.250000,0,0);}
.m99_c00267{transform:matrix(0.313415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313415,0.000000,0.000000,0.250000,0,0);}
.m96_c00267{transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);}
.m15_c00267{transform:matrix(0.314011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314011,0.000000,0.000000,0.250000,0,0);}
.m33_c00267{transform:matrix(0.314585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314585,0.000000,0.000000,0.250000,0,0);}
.m8f_c00267{transform:matrix(0.314792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314792,0.000000,0.000000,0.250000,0,0);}
.m50_c00267{transform:matrix(0.315917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315917,0.000000,0.000000,0.250000,0,0);}
.m2c_c00267{transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);}
.m9c_c00267{transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);}
.m4b_c00267{transform:matrix(0.317796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317796,0.000000,0.000000,0.250000,0,0);}
.m73_c00267{transform:matrix(0.319694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319694,0.000000,0.000000,0.250000,0,0);}
.m31_c00267{transform:matrix(0.320544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320544,0.000000,0.000000,0.250000,0,0);}
.m62_c00267{transform:matrix(0.321948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321948,0.000000,0.000000,0.250000,0,0);}
.m4a_c00267{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.mab_c00267{transform:matrix(0.324031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324031,0.000000,0.000000,0.250000,0,0);}
.m43_c00267{transform:matrix(0.325893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325893,0.000000,0.000000,0.250000,0,0);}
.m66_c00267{transform:matrix(0.326063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326063,0.000000,0.000000,0.250000,0,0);}
.m39_c00267{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m35_c00267{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.m59_c00267{transform:matrix(0.327657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327657,0.000000,0.000000,0.250000,0,0);}
.m2b_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);}
.m7b_c00267{transform:matrix(0.329713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329713,0.000000,0.000000,0.250000,0,0);}
.m1_c00267{transform:matrix(0.332410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332410,0.000000,0.000000,0.250000,0,0);}
.m17_c00267{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m80_c00267{transform:matrix(0.333376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333376,0.000000,0.000000,0.250000,0,0);}
.m94_c00267{transform:matrix(0.336989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336989,0.000000,0.000000,0.250000,0,0);}
.m4d_c00267{transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);}
.m5e_c00267{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m6f_c00267{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.mad_c00267{transform:matrix(0.346571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346571,0.000000,0.000000,0.250000,0,0);}
.m7c_c00267{transform:matrix(0.347184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347184,0.000000,0.000000,0.250000,0,0);}
.m6_c00267{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m5f_c00267{transform:matrix(0.350956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350956,0.000000,0.000000,0.250000,0,0);}
.m71_c00267{transform:matrix(0.350964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350964,0.000000,0.000000,0.250000,0,0);}
.m6b_c00267{transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);}
.m2f_c00267{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m5c_c00267{transform:matrix(0.355345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355345,0.000000,0.000000,0.250000,0,0);}
.m10_c00267{transform:matrix(0.358842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358842,0.000000,0.000000,0.250000,0,0);}
.mc_c00267{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m22_c00267{transform:matrix(0.361938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361938,0.000000,0.000000,0.250000,0,0);}
.m6a_c00267{transform:matrix(0.362012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362012,0.000000,0.000000,0.250000,0,0);}
.m25_c00267{transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);}
.m21_c00267{transform:matrix(0.372527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372527,0.000000,0.000000,0.250000,0,0);}
.m72_c00267{transform:matrix(0.402409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402409,0.000000,0.000000,0.250000,0,0);}
.m55_c00267{transform:matrix(0.439188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439188,0.000000,0.000000,0.250000,0,0);}
.v0_c00267{vertical-align:0.000000px;}
.lsb_c00267{letter-spacing:-2.744280px;}
.ls8_c00267{letter-spacing:-2.375762px;}
.ls15_c00267{letter-spacing:-1.897474px;}
.lsc_c00267{letter-spacing:-1.058508px;}
.lsa_c00267{letter-spacing:-0.972259px;}
.lsf_c00267{letter-spacing:-0.729194px;}
.ls9_c00267{letter-spacing:0.000000px;}
.lsd_c00267{letter-spacing:0.392040px;}
.ls0_c00267{letter-spacing:0.705672px;}
.ls5_c00267{letter-spacing:1.042826px;}
.ls3_c00267{letter-spacing:1.301573px;}
.lse_c00267{letter-spacing:1.685772px;}
.ls10_c00267{letter-spacing:2.532578px;}
.ls2_c00267{letter-spacing:3.112798px;}
.ls12_c00267{letter-spacing:3.489156px;}
.ls14_c00267{letter-spacing:3.544200px;}
.ls7_c00267{letter-spacing:3.920400px;}
.ls6_c00267{letter-spacing:4.078810px;}
.ls13_c00267{letter-spacing:4.514400px;}
.ls1_c00267{letter-spacing:7.213536px;}
.ls4_c00267{letter-spacing:7.919208px;}
.ls11_c00267{letter-spacing:52.747398px;}
.ls16_c00267{letter-spacing:57.024198px;}
.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;}
}
.ws1_c00267{word-spacing:-20.903573px;}
.ws3_c00267{word-spacing:-20.644826px;}
.ws2_c00267{word-spacing:-19.602000px;}
.ws0_c00267{word-spacing:-18.872806px;}
.ws4_c00267{word-spacing:0.000000px;}
._4_c00267{width:2.981088px;}
._c_c00267{width:4.375166px;}
._3_c00267{width:5.832763px;}
._9_c00267{width:10.035828px;}
._6_c00267{width:12.310056px;}
._7_c00267{width:20.855736px;}
._5_c00267{width:25.945207px;}
._0_c00267{width:27.364392px;}
._2_c00267{width:29.701109px;}
._1_c00267{width:31.499424px;}
._b_c00267{width:35.048376px;}
._8_c00267{width:36.852948px;}
._d_c00267{width:42.496740px;}
._a_c00267{width:43.516836px;}
.fc0_c00267{color:transparent;}
.fs3_c00267{font-size:22.176000px;}
.fs4_c00267{font-size:52.747398px;}
.fs7_c00267{font-size:57.024198px;}
.fs6_c00267{font-size:70.884000px;}
.fs8_c00267{font-size:74.844000px;}
.fs1_c00267{font-size:78.408000px;}
.fs2_c00267{font-size:78.804000px;}
.fs0_c00267{font-size:81.576198px;}
.fs5_c00267{font-size:90.288000px;}
.fs9_c00267{font-size:125.136198px;}
.y0_c00267{bottom:0.000000px;}
.y1d_c00267{bottom:16.306335px;}
.y1_c00267{bottom:76.500000px;}
.y1c_c00267{bottom:118.593135px;}
.y1b_c00267{bottom:148.525785px;}
.y1a_c00267{bottom:178.824735px;}
.y19_c00267{bottom:214.821135px;}
.y18_c00267{bottom:247.253535px;}
.y17_c00267{bottom:279.324585px;}
.y16_c00267{bottom:312.113385px;}
.y15_c00267{bottom:344.194335px;}
.y14_c00267{bottom:375.908985px;}
.y13_c00267{bottom:407.984985px;}
.y12_c00267{bottom:439.704585px;}
.y11_c00267{bottom:472.141935px;}
.y10_c00267{bottom:472.147281px;}
.yf_c00267{bottom:537.363135px;}
.ye_c00267{bottom:569.434185px;}
.yd_c00267{bottom:602.227935px;}
.yc_c00267{bottom:635.016735px;}
.yb_c00267{bottom:666.736335px;}
.ya_c00267{bottom:690.966585px;}
.y9_c00267{bottom:698.812335px;}
.y8_c00267{bottom:731.239785px;}
.y7_c00267{bottom:764.028585px;}
.y6_c00267{bottom:796.460985px;}
.y5_c00267{bottom:860.617935px;}
.y4_c00267{bottom:892.688985px;}
.y3_c00267{bottom:924.769935px;}
.y2_c00267{bottom:1076.947785px;}
.h5_c00267{height:23.128875px;}
.h6_c00267{height:35.129767px;}
.h9_c00267{height:37.978116px;}
.h8_c00267{height:69.568770px;}
.ha_c00267{height:73.455293px;}
.h3_c00267{height:76.953164px;}
.h4_c00267{height:77.341816px;}
.h2_c00267{height:80.062577px;}
.h7_c00267{height:88.612734px;}
.hb_c00267{height:130.513144px;}
.h1_c00267{height:1110.000000px;}
.h0_c00267{height:1263.000000px;}
.w1_c00267{width:763.500000px;}
.w0_c00267{width:892.500000px;}
.x0_c00267{left:0.000000px;}
.x1_c00267{left:64.500000px;}
.x3_c00267{left:66.553785px;}
.x3d_c00267{left:68.053635px;}
.x57_c00267{left:69.439635px;}
.x39_c00267{left:89.115885px;}
.xd_c00267{left:100.169235px;}
.x15_c00267{left:109.633635px;}
.x2b_c00267{left:110.856285px;}
.x65_c00267{left:112.262085px;}
.x60_c00267{left:113.331285px;}
.x18_c00267{left:121.355235px;}
.x40_c00267{left:122.427999px;}
.x2e_c00267{left:132.413535px;}
.x44_c00267{left:134.348985px;}
.x20_c00267{left:143.927235px;}
.x58_c00267{left:146.060685px;}
.x3e_c00267{left:154.188585px;}
.x16_c00267{left:155.257785px;}
.x66_c00267{left:156.277485px;}
.x45_c00267{left:166.410135px;}
.x59_c00267{left:177.314985px;}
.x61_c00267{left:178.844535px;}
.x4_c00267{left:188.561385px;}
.x19_c00267{left:199.877085px;}
.x24_c00267{left:209.390985px;}
.x5e_c00267{left:211.326435px;}
.x68_c00267{left:213.643035px;}
.x34_c00267{left:220.800735px;}
.x41_c00267{left:222.681735px;}
.x2f_c00267{left:223.780635px;}
.xe_c00267{left:232.354035px;}
.x46_c00267{left:233.408385px;}
.x51_c00267{left:235.883385px;}
.x5_c00267{left:242.244135px;}
.x25_c00267{left:243.763785px;}
.x35_c00267{left:253.228185px;}
.x42_c00267{left:255.000285px;}
.x17_c00267{left:256.059585px;}
.x2d_c00267{left:263.162835px;}
.x3a_c00267{left:265.533885px;}
.x67_c00267{left:266.929785px;}
.x62_c00267{left:267.984135px;}
.x30_c00267{left:275.320035px;}
.x21_c00267{left:276.582285px;}
.x4b_c00267{left:277.661385px;}
.x36_c00267{left:287.858385px;}
.x1a_c00267{left:299.367135px;}
.x52_c00267{left:310.757085px;}
.x26_c00267{left:321.320385px;}
.xf_c00267{left:331.111485px;}
.x43_c00267{left:332.180685px;}
.x31_c00267{left:342.318285px;}
.x4e_c00267{left:343.392435px;}
.x6_c00267{left:363.776535px;}
.x3f_c00267{left:364.944735px;}
.x5a_c00267{left:366.360435px;}
.x10_c00267{left:397.337535px;}
.x27_c00267{left:398.406735px;}
.x5b_c00267{left:399.456135px;}
.x22_c00267{left:408.762135px;}
.x63_c00267{left:409.826385px;}
.x32_c00267{left:420.176835px;}
.x47_c00267{left:432.329085px;}
.x23_c00267{left:441.917235px;}
.x7_c00267{left:443.986335px;}
.x28_c00267{left:453.366585px;}
.x8_c00267{left:464.345685px;}
.x11_c00267{left:474.201135px;}
.x64_c00267{left:475.329735px;}
.x3b_c00267{left:485.789085px;}
.x53_c00267{left:497.753235px;}
.x1b_c00267{left:506.970135px;}
.x37_c00267{left:508.568985px;}
.x12_c00267{left:519.152085px;}
.x5c_c00267{left:520.651935px;}
.x9_c00267{left:529.591635px;}
.x13_c00267{left:540.833085px;}
.x49_c00267{left:542.090385px;}
.x1c_c00267{left:551.713185px;}
.x54_c00267{left:553.787235px;}
.xa_c00267{left:562.781385px;}
.x48_c00267{left:563.806035px;}
.x5d_c00267{left:573.988185px;}
.x4c_c00267{left:575.215785px;}
.x14_c00267{left:584.031735px;}
.x38_c00267{left:585.590985px;}
.x33_c00267{left:596.223585px;}
.x55_c00267{left:597.673935px;}
.x29_c00267{left:607.316535px;}
.x4a_c00267{left:618.013485px;}
.x5f_c00267{left:619.087635px;}
.x1d_c00267{left:627.443235px;}
.x56_c00267{left:629.452935px;}
.xb_c00267{left:639.407385px;}
.x3c_c00267{left:640.798335px;}
.x50_c00267{left:642.144735px;}
.x2_c00267{left:650.039985px;}
.x2a_c00267{left:651.119085px;}
.x1e_c00267{left:660.949785px;}
.x2c_c00267{left:662.845635px;}
.xc_c00267{left:683.412885px;}
.x4f_c00267{left:684.962235px;}
.x69_c00267{left:689.060835px;}
.x1f_c00267{left:694.778085px;}
.x4d_c00267{left:705.118635px;}
@media print{
.v0_c00267{vertical-align:0.000000pt;}
.lsb_c00267{letter-spacing:-2.439360pt;}
.ls8_c00267{letter-spacing:-2.111789pt;}
.ls15_c00267{letter-spacing:-1.686643pt;}
.lsc_c00267{letter-spacing:-0.940896pt;}
.lsa_c00267{letter-spacing:-0.864230pt;}
.lsf_c00267{letter-spacing:-0.648173pt;}
.ls9_c00267{letter-spacing:0.000000pt;}
.lsd_c00267{letter-spacing:0.348480pt;}
.ls0_c00267{letter-spacing:0.627264pt;}
.ls5_c00267{letter-spacing:0.926957pt;}
.ls3_c00267{letter-spacing:1.156954pt;}
.lse_c00267{letter-spacing:1.498464pt;}
.ls10_c00267{letter-spacing:2.251181pt;}
.ls2_c00267{letter-spacing:2.766931pt;}
.ls12_c00267{letter-spacing:3.101472pt;}
.ls14_c00267{letter-spacing:3.150400pt;}
.ls7_c00267{letter-spacing:3.484800pt;}
.ls6_c00267{letter-spacing:3.625609pt;}
.ls13_c00267{letter-spacing:4.012800pt;}
.ls1_c00267{letter-spacing:6.412032pt;}
.ls4_c00267{letter-spacing:7.039296pt;}
.ls11_c00267{letter-spacing:46.886576pt;}
.ls16_c00267{letter-spacing:50.688176pt;}
.ws1_c00267{word-spacing:-18.580954pt;}
.ws3_c00267{word-spacing:-18.350957pt;}
.ws2_c00267{word-spacing:-17.424000pt;}
.ws0_c00267{word-spacing:-16.775827pt;}
.ws4_c00267{word-spacing:0.000000pt;}
._4_c00267{width:2.649856pt;}
._c_c00267{width:3.889037pt;}
._3_c00267{width:5.184678pt;}
._9_c00267{width:8.920736pt;}
._6_c00267{width:10.942272pt;}
._7_c00267{width:18.538432pt;}
._5_c00267{width:23.062406pt;}
._0_c00267{width:24.323904pt;}
._2_c00267{width:26.400986pt;}
._1_c00267{width:27.999488pt;}
._b_c00267{width:31.154112pt;}
._8_c00267{width:32.758176pt;}
._d_c00267{width:37.774880pt;}
._a_c00267{width:38.681632pt;}
.fs3_c00267{font-size:19.712000pt;}
.fs4_c00267{font-size:46.886576pt;}
.fs7_c00267{font-size:50.688176pt;}
.fs6_c00267{font-size:63.008000pt;}
.fs8_c00267{font-size:66.528000pt;}
.fs1_c00267{font-size:69.696000pt;}
.fs2_c00267{font-size:70.048000pt;}
.fs0_c00267{font-size:72.512176pt;}
.fs5_c00267{font-size:80.256000pt;}
.fs9_c00267{font-size:111.232176pt;}
.y0_c00267{bottom:0.000000pt;}
.y1d_c00267{bottom:14.494520pt;}
.y1_c00267{bottom:68.000000pt;}
.y1c_c00267{bottom:105.416120pt;}
.y1b_c00267{bottom:132.022920pt;}
.y1a_c00267{bottom:158.955320pt;}
.y19_c00267{bottom:190.952120pt;}
.y18_c00267{bottom:219.780920pt;}
.y17_c00267{bottom:248.288520pt;}
.y16_c00267{bottom:277.434120pt;}
.y15_c00267{bottom:305.950520pt;}
.y14_c00267{bottom:334.141320pt;}
.y13_c00267{bottom:362.653320pt;}
.y12_c00267{bottom:390.848520pt;}
.y11_c00267{bottom:419.681720pt;}
.y10_c00267{bottom:419.686472pt;}
.yf_c00267{bottom:477.656120pt;}
.ye_c00267{bottom:506.163720pt;}
.yd_c00267{bottom:535.313720pt;}
.yc_c00267{bottom:564.459320pt;}
.yb_c00267{bottom:592.654520pt;}
.ya_c00267{bottom:614.192520pt;}
.y9_c00267{bottom:621.166520pt;}
.y8_c00267{bottom:649.990920pt;}
.y7_c00267{bottom:679.136520pt;}
.y6_c00267{bottom:707.965320pt;}
.y5_c00267{bottom:764.993720pt;}
.y4_c00267{bottom:793.501320pt;}
.y3_c00267{bottom:822.017720pt;}
.y2_c00267{bottom:957.286920pt;}
.h5_c00267{height:20.559000pt;}
.h6_c00267{height:31.226460pt;}
.h9_c00267{height:33.758325pt;}
.h8_c00267{height:61.838906pt;}
.ha_c00267{height:65.293594pt;}
.h3_c00267{height:68.402813pt;}
.h4_c00267{height:68.748281pt;}
.h2_c00267{height:71.166735pt;}
.h7_c00267{height:78.766875pt;}
.hb_c00267{height:116.011684pt;}
.h1_c00267{height:986.666667pt;}
.h0_c00267{height:1122.666667pt;}
.w1_c00267{width:678.666667pt;}
.w0_c00267{width:793.333333pt;}
.x0_c00267{left:0.000000pt;}
.x1_c00267{left:57.333333pt;}
.x3_c00267{left:59.158920pt;}
.x3d_c00267{left:60.492120pt;}
.x57_c00267{left:61.724120pt;}
.x39_c00267{left:79.214120pt;}
.xd_c00267{left:89.039320pt;}
.x15_c00267{left:97.452120pt;}
.x2b_c00267{left:98.538920pt;}
.x65_c00267{left:99.788520pt;}
.x60_c00267{left:100.738920pt;}
.x18_c00267{left:107.871320pt;}
.x40_c00267{left:108.824888pt;}
.x2e_c00267{left:117.700920pt;}
.x44_c00267{left:119.421320pt;}
.x20_c00267{left:127.935320pt;}
.x58_c00267{left:129.831720pt;}
.x3e_c00267{left:137.056520pt;}
.x16_c00267{left:138.006920pt;}
.x66_c00267{left:138.913320pt;}
.x45_c00267{left:147.920120pt;}
.x59_c00267{left:157.613320pt;}
.x61_c00267{left:158.972920pt;}
.x4_c00267{left:167.610120pt;}
.x19_c00267{left:177.668520pt;}
.x24_c00267{left:186.125320pt;}
.x5e_c00267{left:187.845720pt;}
.x68_c00267{left:189.904920pt;}
.x34_c00267{left:196.267320pt;}
.x41_c00267{left:197.939320pt;}
.x2f_c00267{left:198.916120pt;}
.xe_c00267{left:206.536920pt;}
.x46_c00267{left:207.474120pt;}
.x51_c00267{left:209.674120pt;}
.x5_c00267{left:215.328120pt;}
.x25_c00267{left:216.678920pt;}
.x35_c00267{left:225.091720pt;}
.x42_c00267{left:226.666920pt;}
.x17_c00267{left:227.608520pt;}
.x2d_c00267{left:233.922520pt;}
.x3a_c00267{left:236.030120pt;}
.x67_c00267{left:237.270920pt;}
.x62_c00267{left:238.208120pt;}
.x30_c00267{left:244.728920pt;}
.x21_c00267{left:245.850920pt;}
.x4b_c00267{left:246.810120pt;}
.x36_c00267{left:255.874120pt;}
.x1a_c00267{left:266.104120pt;}
.x52_c00267{left:276.228520pt;}
.x26_c00267{left:285.618120pt;}
.xf_c00267{left:294.321320pt;}
.x43_c00267{left:295.271720pt;}
.x31_c00267{left:304.282920pt;}
.x4e_c00267{left:305.237720pt;}
.x6_c00267{left:323.356920pt;}
.x3f_c00267{left:324.395320pt;}
.x5a_c00267{left:325.653720pt;}
.x10_c00267{left:353.188920pt;}
.x27_c00267{left:354.139320pt;}
.x5b_c00267{left:355.072120pt;}
.x22_c00267{left:363.344120pt;}
.x63_c00267{left:364.290120pt;}
.x32_c00267{left:373.490520pt;}
.x47_c00267{left:384.292520pt;}
.x23_c00267{left:392.815320pt;}
.x7_c00267{left:394.654520pt;}
.x28_c00267{left:402.992520pt;}
.x8_c00267{left:412.751720pt;}
.x11_c00267{left:421.512120pt;}
.x64_c00267{left:422.515320pt;}
.x3b_c00267{left:431.812520pt;}
.x53_c00267{left:442.447320pt;}
.x1b_c00267{left:450.640120pt;}
.x37_c00267{left:452.061320pt;}
.x12_c00267{left:461.468520pt;}
.x5c_c00267{left:462.801720pt;}
.x9_c00267{left:470.748120pt;}
.x13_c00267{left:480.740520pt;}
.x49_c00267{left:481.858120pt;}
.x1c_c00267{left:490.411720pt;}
.x54_c00267{left:492.255320pt;}
.xa_c00267{left:500.250120pt;}
.x48_c00267{left:501.160920pt;}
.x5d_c00267{left:510.211720pt;}
.x4c_c00267{left:511.302920pt;}
.x14_c00267{left:519.139320pt;}
.x38_c00267{left:520.525320pt;}
.x33_c00267{left:529.976520pt;}
.x55_c00267{left:531.265720pt;}
.x29_c00267{left:539.836920pt;}
.x4a_c00267{left:549.345320pt;}
.x5f_c00267{left:550.300120pt;}
.x1d_c00267{left:557.727320pt;}
.x56_c00267{left:559.513720pt;}
.xb_c00267{left:568.362120pt;}
.x3c_c00267{left:569.598520pt;}
.x50_c00267{left:570.795320pt;}
.x2_c00267{left:577.813320pt;}
.x2a_c00267{left:578.772520pt;}
.x1e_c00267{left:587.510920pt;}
.x2c_c00267{left:589.196120pt;}
.xc_c00267{left:607.478120pt;}
.x4f_c00267{left:608.855320pt;}
.x69_c00267{left:612.498520pt;}
.x1f_c00267{left:617.580520pt;}
.x4d_c00267{left:626.772120pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_39e18c11e25a9630487e9bec.woff2')format("woff");}.ff1_c00268{font-family:ff1_c00268;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00268;src:url('chunks/assets/font_a7497b6de5f804c79f71876e.woff2')format("woff");}.ff2_c00268{font-family:ff2_c00268;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00268;src:url('chunks/assets/font_3fb6eddf19784becad6eb129.woff2')format("woff");}.ff3_c00268{font-family:ff3_c00268;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m97_c00268{transform:matrix(0.154762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154762,0.000000,0.000000,0.250000,0,0);}
.m98_c00268{transform:matrix(0.184524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184524,0.000000,0.000000,0.250000,0,0);}
.m8d_c00268{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m35_c00268{transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);}
.m56_c00268{transform:matrix(0.203007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203007,0.000000,0.000000,0.250000,0,0);}
.m8c_c00268{transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);}
.m59_c00268{transform:matrix(0.227167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227167,0.000000,0.000000,0.250000,0,0);}
.m40_c00268{transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);}
.m88_c00268{transform:matrix(0.245842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245842,0.000000,0.000000,0.250000,0,0);}
.m1_c00268{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00268{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.m15_c00268{transform:matrix(0.252202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252202,0.000000,0.000000,0.250000,0,0);}
.m8e_c00268{transform:matrix(0.252778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252778,0.000000,0.000000,0.250000,0,0);}
.ma2_c00268{transform:matrix(0.253645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253645,0.000000,0.000000,0.250000,0,0);}
.m2d_c00268{transform:matrix(0.254597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254597,0.000000,0.000000,0.250000,0,0);}
.m31_c00268{transform:matrix(0.255172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255172,0.000000,0.000000,0.250000,0,0);}
.m9b_c00268{transform:matrix(0.256268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256268,0.000000,0.000000,0.250000,0,0);}
.mac_c00268{transform:matrix(0.256334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256334,0.000000,0.000000,0.250000,0,0);}
.m67_c00268{transform:matrix(0.257226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257226,0.000000,0.000000,0.250000,0,0);}
.m3_c00268{transform:matrix(0.257751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257751,0.000000,0.000000,0.250000,0,0);}
.mc_c00268{transform:matrix(0.257944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257944,0.000000,0.000000,0.250000,0,0);}
.m2_c00268{transform:matrix(0.258675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258675,0.000000,0.000000,0.250000,0,0);}
.m9c_c00268{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m2c_c00268{transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);}
.m79_c00268{transform:matrix(0.260016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260016,0.000000,0.000000,0.250000,0,0);}
.m77_c00268{transform:matrix(0.260136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260136,0.000000,0.000000,0.250000,0,0);}
.m80_c00268{transform:matrix(0.260152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260152,0.000000,0.000000,0.250000,0,0);}
.m24_c00268{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m9_c00268{transform:matrix(0.261271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261271,0.000000,0.000000,0.250000,0,0);}
.mf_c00268{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.m7f_c00268{transform:matrix(0.262135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262135,0.000000,0.000000,0.250000,0,0);}
.m57_c00268{transform:matrix(0.262649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262649,0.000000,0.000000,0.250000,0,0);}
.m4f_c00268{transform:matrix(0.262708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262708,0.000000,0.000000,0.250000,0,0);}
.mb_c00268{transform:matrix(0.262939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262939,0.000000,0.000000,0.250000,0,0);}
.ma4_c00268{transform:matrix(0.263196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263196,0.000000,0.000000,0.250000,0,0);}
.m1d_c00268{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m53_c00268{transform:matrix(0.263891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263891,0.000000,0.000000,0.250000,0,0);}
.m13_c00268{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m10_c00268{transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);}
.m20_c00268{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.mb2_c00268{transform:matrix(0.266381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266381,0.000000,0.000000,0.250000,0,0);}
.m73_c00268{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.m95_c00268{transform:matrix(0.267126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267126,0.000000,0.000000,0.250000,0,0);}
.m5c_c00268{transform:matrix(0.267847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267847,0.000000,0.000000,0.250000,0,0);}
.m48_c00268{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m54_c00268{transform:matrix(0.268484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268484,0.000000,0.000000,0.250000,0,0);}
.m2e_c00268{transform:matrix(0.268624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268624,0.000000,0.000000,0.250000,0,0);}
.m37_c00268{transform:matrix(0.268793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268793,0.000000,0.000000,0.250000,0,0);}
.m8b_c00268{transform:matrix(0.269549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269549,0.000000,0.000000,0.250000,0,0);}
.m92_c00268{transform:matrix(0.270236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270236,0.000000,0.000000,0.250000,0,0);}
.m36_c00268{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m18_c00268{transform:matrix(0.270973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270973,0.000000,0.000000,0.250000,0,0);}
.m2a_c00268{transform:matrix(0.271480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271480,0.000000,0.000000,0.250000,0,0);}
.m75_c00268{transform:matrix(0.272184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272184,0.000000,0.000000,0.250000,0,0);}
.m84_c00268{transform:matrix(0.272609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272609,0.000000,0.000000,0.250000,0,0);}
.m78_c00268{transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);}
.m6_c00268{transform:matrix(0.272926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272926,0.000000,0.000000,0.250000,0,0);}
.m3e_c00268{transform:matrix(0.272943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272943,0.000000,0.000000,0.250000,0,0);}
.ma9_c00268{transform:matrix(0.273113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273113,0.000000,0.000000,0.250000,0,0);}
.m63_c00268{transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);}
.m23_c00268{transform:matrix(0.274659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274659,0.000000,0.000000,0.250000,0,0);}
.m8a_c00268{transform:matrix(0.274708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274708,0.000000,0.000000,0.250000,0,0);}
.m50_c00268{transform:matrix(0.276376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276376,0.000000,0.000000,0.250000,0,0);}
.m86_c00268{transform:matrix(0.276414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276414,0.000000,0.000000,0.250000,0,0);}
.md_c00268{transform:matrix(0.276607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276607,0.000000,0.000000,0.250000,0,0);}
.m4c_c00268{transform:matrix(0.276637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276637,0.000000,0.000000,0.250000,0,0);}
.maa_c00268{transform:matrix(0.277164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277164,0.000000,0.000000,0.250000,0,0);}
.m3b_c00268{transform:matrix(0.277168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277168,0.000000,0.000000,0.250000,0,0);}
.m47_c00268{transform:matrix(0.277903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277903,0.000000,0.000000,0.250000,0,0);}
.mb0_c00268{transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);}
.ma_c00268{transform:matrix(0.280024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280024,0.000000,0.000000,0.250000,0,0);}
.m89_c00268{transform:matrix(0.281357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281357,0.000000,0.000000,0.250000,0,0);}
.m5d_c00268{transform:matrix(0.281467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281467,0.000000,0.000000,0.250000,0,0);}
.ma3_c00268{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.m43_c00268{transform:matrix(0.281640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281640,0.000000,0.000000,0.250000,0,0);}
.m3d_c00268{transform:matrix(0.281783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281783,0.000000,0.000000,0.250000,0,0);}
.m52_c00268{transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);}
.m7_c00268{transform:matrix(0.282901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282901,0.000000,0.000000,0.250000,0,0);}
.m9f_c00268{transform:matrix(0.283070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283070,0.000000,0.000000,0.250000,0,0);}
.m7b_c00268{transform:matrix(0.283223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283223,0.000000,0.000000,0.250000,0,0);}
.m7c_c00268{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m94_c00268{transform:matrix(0.283787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283787,0.000000,0.000000,0.250000,0,0);}
.m49_c00268{transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);}
.m14_c00268{transform:matrix(0.284009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284009,0.000000,0.000000,0.250000,0,0);}
.m4_c00268{transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);}
.ma0_c00268{transform:matrix(0.285317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285317,0.000000,0.000000,0.250000,0,0);}
.m38_c00268{transform:matrix(0.285371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285371,0.000000,0.000000,0.250000,0,0);}
.m0_c00268{transform:matrix(0.285745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285745,0.000000,0.000000,0.250000,0,0);}
.m1b_c00268{transform:matrix(0.285749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285749,0.000000,0.000000,0.250000,0,0);}
.m39_c00268{transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);}
.m5b_c00268{transform:matrix(0.286050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286050,0.000000,0.000000,0.250000,0,0);}
.m1c_c00268{transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);}
.m29_c00268{transform:matrix(0.287284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287284,0.000000,0.000000,0.250000,0,0);}
.m12_c00268{transform:matrix(0.287294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287294,0.000000,0.000000,0.250000,0,0);}
.m90_c00268{transform:matrix(0.288153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288153,0.000000,0.000000,0.250000,0,0);}
.m3a_c00268{transform:matrix(0.288566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288566,0.000000,0.000000,0.250000,0,0);}
.maf_c00268{transform:matrix(0.288764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288764,0.000000,0.000000,0.250000,0,0);}
.m22_c00268{transform:matrix(0.288777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288777,0.000000,0.000000,0.250000,0,0);}
.m5e_c00268{transform:matrix(0.288974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288974,0.000000,0.000000,0.250000,0,0);}
.m21_c00268{transform:matrix(0.289026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289026,0.000000,0.000000,0.250000,0,0);}
.m11_c00268{transform:matrix(0.289443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289443,0.000000,0.000000,0.250000,0,0);}
.m9e_c00268{transform:matrix(0.289652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289652,0.000000,0.000000,0.250000,0,0);}
.ma7_c00268{transform:matrix(0.290639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290639,0.000000,0.000000,0.250000,0,0);}
.m3c_c00268{transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);}
.m81_c00268{transform:matrix(0.292643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292643,0.000000,0.000000,0.250000,0,0);}
.m42_c00268{transform:matrix(0.292691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292691,0.000000,0.000000,0.250000,0,0);}
.m6b_c00268{transform:matrix(0.293040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293040,0.000000,0.000000,0.250000,0,0);}
.m5a_c00268{transform:matrix(0.293385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293385,0.000000,0.000000,0.250000,0,0);}
.m8_c00268{transform:matrix(0.293522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293522,0.000000,0.000000,0.250000,0,0);}
.m4d_c00268{transform:matrix(0.293934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293934,0.000000,0.000000,0.250000,0,0);}
.m1a_c00268{transform:matrix(0.294670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294670,0.000000,0.000000,0.250000,0,0);}
.m1f_c00268{transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);}
.m34_c00268{transform:matrix(0.295385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295385,0.000000,0.000000,0.250000,0,0);}
.ma6_c00268{transform:matrix(0.295830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295830,0.000000,0.000000,0.250000,0,0);}
.ma1_c00268{transform:matrix(0.296729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296729,0.000000,0.000000,0.250000,0,0);}
.m4b_c00268{transform:matrix(0.296963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296963,0.000000,0.000000,0.250000,0,0);}
.m60_c00268{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.mab_c00268{transform:matrix(0.297370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297370,0.000000,0.000000,0.250000,0,0);}
.m99_c00268{transform:matrix(0.297375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297375,0.000000,0.000000,0.250000,0,0);}
.m8f_c00268{transform:matrix(0.299319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299319,0.000000,0.000000,0.250000,0,0);}
.ma8_c00268{transform:matrix(0.299321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299321,0.000000,0.000000,0.250000,0,0);}
.m65_c00268{transform:matrix(0.299883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299883,0.000000,0.000000,0.250000,0,0);}
.m87_c00268{transform:matrix(0.301479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301479,0.000000,0.000000,0.250000,0,0);}
.m55_c00268{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m3f_c00268{transform:matrix(0.303158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303158,0.000000,0.000000,0.250000,0,0);}
.m6e_c00268{transform:matrix(0.304878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304878,0.000000,0.000000,0.250000,0,0);}
.m93_c00268{transform:matrix(0.304946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304946,0.000000,0.000000,0.250000,0,0);}
.m2f_c00268{transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);}
.ma5_c00268{transform:matrix(0.305914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305914,0.000000,0.000000,0.250000,0,0);}
.m85_c00268{transform:matrix(0.306784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306784,0.000000,0.000000,0.250000,0,0);}
.m58_c00268{transform:matrix(0.307114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307114,0.000000,0.000000,0.250000,0,0);}
.m5f_c00268{transform:matrix(0.308170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308170,0.000000,0.000000,0.250000,0,0);}
.m41_c00268{transform:matrix(0.308280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308280,0.000000,0.000000,0.250000,0,0);}
.m2b_c00268{transform:matrix(0.308319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308319,0.000000,0.000000,0.250000,0,0);}
.m71_c00268{transform:matrix(0.309027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309027,0.000000,0.000000,0.250000,0,0);}
.m6f_c00268{transform:matrix(0.312127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312127,0.000000,0.000000,0.250000,0,0);}
.m25_c00268{transform:matrix(0.314029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314029,0.000000,0.000000,0.250000,0,0);}
.m32_c00268{transform:matrix(0.314545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314545,0.000000,0.000000,0.250000,0,0);}
.m9a_c00268{transform:matrix(0.315150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315150,0.000000,0.000000,0.250000,0,0);}
.m82_c00268{transform:matrix(0.315806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315806,0.000000,0.000000,0.250000,0,0);}
.mae_c00268{transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);}
.m76_c00268{transform:matrix(0.317599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317599,0.000000,0.000000,0.250000,0,0);}
.m30_c00268{transform:matrix(0.319389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319389,0.000000,0.000000,0.250000,0,0);}
.m1e_c00268{transform:matrix(0.319886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319886,0.000000,0.000000,0.250000,0,0);}
.m19_c00268{transform:matrix(0.320662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320662,0.000000,0.000000,0.250000,0,0);}
.m44_c00268{transform:matrix(0.320893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320893,0.000000,0.000000,0.250000,0,0);}
.m5_c00268{transform:matrix(0.322448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322448,0.000000,0.000000,0.250000,0,0);}
.m9d_c00268{transform:matrix(0.322527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322527,0.000000,0.000000,0.250000,0,0);}
.me_c00268{transform:matrix(0.322852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322852,0.000000,0.000000,0.250000,0,0);}
.m6c_c00268{transform:matrix(0.323501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323501,0.000000,0.000000,0.250000,0,0);}
.m27_c00268{transform:matrix(0.323503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323503,0.000000,0.000000,0.250000,0,0);}
.m74_c00268{transform:matrix(0.324151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324151,0.000000,0.000000,0.250000,0,0);}
.m4a_c00268{transform:matrix(0.324926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324926,0.000000,0.000000,0.250000,0,0);}
.m62_c00268{transform:matrix(0.325417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325417,0.000000,0.000000,0.250000,0,0);}
.m28_c00268{transform:matrix(0.327350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327350,0.000000,0.000000,0.250000,0,0);}
.m83_c00268{transform:matrix(0.328886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328886,0.000000,0.000000,0.250000,0,0);}
.mb1_c00268{transform:matrix(0.329124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329124,0.000000,0.000000,0.250000,0,0);}
.m46_c00268{transform:matrix(0.329189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329189,0.000000,0.000000,0.250000,0,0);}
.m70_c00268{transform:matrix(0.329886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329886,0.000000,0.000000,0.250000,0,0);}
.m4e_c00268{transform:matrix(0.331235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331235,0.000000,0.000000,0.250000,0,0);}
.m68_c00268{transform:matrix(0.332811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332811,0.000000,0.000000,0.250000,0,0);}
.m26_c00268{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.mb3_c00268{transform:matrix(0.334765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334765,0.000000,0.000000,0.250000,0,0);}
.m72_c00268{transform:matrix(0.337672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337672,0.000000,0.000000,0.250000,0,0);}
.m6a_c00268{transform:matrix(0.337681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337681,0.000000,0.000000,0.250000,0,0);}
.m51_c00268{transform:matrix(0.338338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338338,0.000000,0.000000,0.250000,0,0);}
.m7e_c00268{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m7d_c00268{transform:matrix(0.340015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340015,0.000000,0.000000,0.250000,0,0);}
.m69_c00268{transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);}
.m61_c00268{transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);}
.mad_c00268{transform:matrix(0.347013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347013,0.000000,0.000000,0.250000,0,0);}
.m64_c00268{transform:matrix(0.348797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348797,0.000000,0.000000,0.250000,0,0);}
.m91_c00268{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m16_c00268{transform:matrix(0.355222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355222,0.000000,0.000000,0.250000,0,0);}
.m33_c00268{transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);}
.m45_c00268{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m66_c00268{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m96_c00268{transform:matrix(0.362885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362885,0.000000,0.000000,0.250000,0,0);}
.m7a_c00268{transform:matrix(0.381498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381498,0.000000,0.000000,0.250000,0,0);}
.m17_c00268{transform:matrix(0.415523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415523,0.000000,0.000000,0.250000,0,0);}
.v0_c00268{vertical-align:0.000000px;}
.lsb_c00268{letter-spacing:-2.744280px;}
.ls6_c00268{letter-spacing:-1.677931px;}
.ls14_c00268{letter-spacing:-0.666468px;}
.ls15_c00268{letter-spacing:-0.392040px;}
.ls4_c00268{letter-spacing:0.000000px;}
.ls5_c00268{letter-spacing:0.462607px;}
.ls8_c00268{letter-spacing:0.940896px;}
.ls1_c00268{letter-spacing:1.246687px;}
.ls13_c00268{letter-spacing:1.591682px;}
.lsf_c00268{letter-spacing:2.179742px;}
.ls9_c00268{letter-spacing:2.226787px;}
.ls7_c00268{letter-spacing:3.112798px;}
.lsd_c00268{letter-spacing:3.191206px;}
.lse_c00268{letter-spacing:3.276900px;}
.ls3_c00268{letter-spacing:3.355862px;}
.ls12_c00268{letter-spacing:3.551882px;}
.ls10_c00268{letter-spacing:3.623400px;}
.ls0_c00268{letter-spacing:3.661654px;}
.ls2_c00268{letter-spacing:3.920400px;}
.lsa_c00268{letter-spacing:51.321798px;}
.lsc_c00268{letter-spacing:54.172998px;}
.ls11_c00268{letter-spacing:59.875398px;}
.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;}
}
.ws3_c00268{word-spacing:-23.263654px;}
.ws4_c00268{word-spacing:-22.793206px;}
.ws1_c00268{word-spacing:-19.602000px;}
.ws5_c00268{word-spacing:0.000000px;}
.ws2_c00268{word-spacing:0.628056px;}
.ws0_c00268{word-spacing:2.352636px;}
._14_c00268{margin-left:-11.683584px;}
._17_c00268{margin-left:-6.743088px;}
._13_c00268{width:1.457597px;}
._10_c00268{width:3.167287px;}
._16_c00268{width:4.940100px;}
._1_c00268{width:6.194232px;}
._d_c00268{width:7.762392px;}
._8_c00268{width:10.036224px;}
._2_c00268{width:11.761200px;}
._15_c00268{width:14.035032px;}
._6_c00268{width:15.524784px;}
._f_c00268{width:17.563392px;}
._7_c00268{width:20.855736px;}
._11_c00268{width:22.111848px;}
._3_c00268{width:23.208768px;}
._18_c00268{width:25.090956px;}
._e_c00268{width:26.109864px;}
._c_c00268{width:28.148472px;}
._b_c00268{width:29.480616px;}
._5_c00268{width:31.285188px;}
._0_c00268{width:32.382504px;}
._4_c00268{width:34.031448px;}
._a_c00268{width:35.990064px;}
._9_c00268{width:39.752856px;}
._12_c00268{width:41.008176px;}
.fc0_c00268{color:transparent;}
.fs7_c00268{font-size:22.176000px;}
.fs6_c00268{font-size:27.720000px;}
.fs1_c00268{font-size:51.321798px;}
.fs2_c00268{font-size:54.172998px;}
.fs5_c00268{font-size:59.875398px;}
.fs3_c00268{font-size:65.538000px;}
.fs4_c00268{font-size:72.468000px;}
.fs0_c00268{font-size:78.408000px;}
.y0_c00268{bottom:0.000000px;}
.y19_c00268{bottom:48.377385px;}
.y1_c00268{bottom:76.500000px;}
.y18_c00268{bottom:161.004735px;}
.y17_c00268{bottom:173.473785px;}
.y16_c00268{bottom:209.113785px;}
.y15_c00268{bottom:241.907535px;}
.y14_c00268{bottom:274.339935px;}
.y13_c00268{bottom:306.410985px;}
.y12_c00268{bottom:339.199785px;}
.y11_c00268{bottom:371.632185px;}
.y10_c00268{bottom:468.216585px;}
.yf_c00268{bottom:501.718185px;}
.ye_c00268{bottom:534.506985px;}
.yd_c00268{bottom:568.013535px;}
.yc_c00268{bottom:600.445935px;}
.yb_c00268{bottom:632.516985px;}
.ya_c00268{bottom:664.597935px;}
.y9_c00268{bottom:728.749935px;}
.y8_c00268{bottom:761.182335px;}
.y7_c00268{bottom:793.614735px;}
.y6_c00268{bottom:826.403535px;}
.y5_c00268{bottom:858.835935px;}
.y4_c00268{bottom:891.624735px;}
.y3_c00268{bottom:925.121385px;}
.y2_c00268{bottom:1078.016985px;}
.h9_c00268{height:23.128875px;}
.h8_c00268{height:28.911094px;}
.h3_c00268{height:34.180317px;}
.h4_c00268{height:36.079217px;}
.h7_c00268{height:39.877015px;}
.h5_c00268{height:68.354086px;}
.h6_c00268{height:71.123379px;}
.h2_c00268{height:76.953164px;}
.h1_c00268{height:1110.000000px;}
.h0_c00268{height:1263.000000px;}
.w1_c00268{width:763.500000px;}
.w0_c00268{width:892.500000px;}
.x0_c00268{left:0.000000px;}
.x4b_c00268{left:59.381250px;}
.x14_c00268{left:60.410850px;}
.x4_c00268{left:62.296800px;}
.x1_c00268{left:64.500000px;}
.x3d_c00268{left:82.621500px;}
.x5_c00268{left:93.194700px;}
.x15_c00268{left:94.417350px;}
.x2d_c00268{left:105.074700px;}
.x3f_c00268{left:114.940050px;}
.x2e_c00268{left:116.202300px;}
.x4f_c00268{left:125.701350px;}
.x61_c00268{left:126.770550px;}
.x40_c00268{left:136.749750px;}
.x2f_c00268{left:137.937750px;}
.x54_c00268{left:147.367500px;}
.x27_c00268{left:148.867350px;}
.x57_c00268{left:149.916750px;}
.x1f_c00268{left:160.153350px;}
.x5b_c00268{left:162.073950px;}
.x41_c00268{left:170.375100px;}
.x16_c00268{left:171.780900px;}
.x6_c00268{left:181.141350px;}
.x20_c00268{left:182.839200px;}
.x21_c00268{left:192.645150px;}
.x3e_c00268{left:203.525250px;}
.x17_c00268{left:204.579600px;}
.x7_c00268{left:213.737100px;}
.x30_c00268{left:214.920150px;}
.x34_c00268{left:224.359800px;}
.x22_c00268{left:226.324950px;}
.x8_c00268{left:236.660550px;}
.x42_c00268{left:246.134850px;}
.x18_c00268{left:248.421750px;}
.x47_c00268{left:259.460250px;}
.x9_c00268{left:269.800800px;}
.x62_c00268{left:271.206600px;}
.x35_c00268{left:279.636450px;}
.x19_c00268{left:281.091750px;}
.x43_c00268{left:292.100550px;}
.x28_c00268{left:302.411400px;}
.x58_c00268{left:303.995400px;}
.x65_c00268{left:311.964900px;}
.x36_c00268{left:313.875600px;}
.x4c_c00268{left:324.146850px;}
.x23_c00268{left:325.399200px;}
.x55_c00268{left:335.878350px;}
.x5c_c00268{left:337.120800px;}
.xa_c00268{left:347.159400px;}
.x1a_c00268{left:357.717750px;}
.x52_c00268{left:368.701800px;}
.x1b_c00268{left:369.919500px;}
.x48_c00268{left:380.997600px;}
.x29_c00268{left:390.595650px;}
.x59_c00268{left:392.055900px;}
.x37_c00268{left:401.124300px;}
.x50_c00268{left:402.173700px;}
.xb_c00268{left:412.895400px;}
.x5d_c00268{left:414.162600px;}
.x31_c00268{left:424.102200px;}
.x5e_c00268{left:433.556700px;}
.xc_c00268{left:434.823900px;}
.x5f_c00268{left:436.566300px;}
.x63_c00268{left:437.927550px;}
.x4d_c00268{left:445.738650px;}
.x44_c00268{left:446.931600px;}
.xd_c00268{left:466.721700px;}
.x32_c00268{left:467.845350px;}
.x24_c00268{left:478.987800px;}
.xe_c00268{left:490.501500px;}
.x56_c00268{left:492.837900px;}
.x38_c00268{left:500.723250px;}
.x2a_c00268{left:502.104300px;}
.x1c_c00268{left:511.811250px;}
.x45_c00268{left:512.885400px;}
.xf_c00268{left:521.943900px;}
.x39_c00268{left:523.008150px;}
.x64_c00268{left:524.245650px;}
.x2b_c00268{left:533.917950px;}
.x5a_c00268{left:535.630650px;}
.x25_c00268{left:545.698950px;}
.x1d_c00268{left:556.747350px;}
.x60_c00268{left:566.182050px;}
.x10_c00268{left:567.582900px;}
.x11_c00268{left:577.913550px;}
.x1e_c00268{left:588.249150px;}
.x49_c00268{left:589.778700px;}
.x4e_c00268{left:599.762850px;}
.x3a_c00268{left:600.896400px;}
.x33_c00268{left:611.256750px;}
.x2c_c00268{left:621.810150px;}
.x26_c00268{left:633.313950px;}
.x46_c00268{left:643.129800px;}
.x2_c00268{left:644.322750px;}
.x3b_c00268{left:653.816850px;}
.x12_c00268{left:655.435500px;}
.x3_c00268{left:666.439350px;}
.x3c_c00268{left:676.636350px;}
.x4a_c00268{left:679.042050px;}
.x13_c00268{left:688.560900px;}
.x51_c00268{left:698.886600px;}
.x53_c00268{left:710.019150px;}
@media print{
.v0_c00268{vertical-align:0.000000pt;}
.lsb_c00268{letter-spacing:-2.439360pt;}
.ls6_c00268{letter-spacing:-1.491494pt;}
.ls14_c00268{letter-spacing:-0.592416pt;}
.ls15_c00268{letter-spacing:-0.348480pt;}
.ls4_c00268{letter-spacing:0.000000pt;}
.ls5_c00268{letter-spacing:0.411206pt;}
.ls8_c00268{letter-spacing:0.836352pt;}
.ls1_c00268{letter-spacing:1.108166pt;}
.ls13_c00268{letter-spacing:1.414829pt;}
.lsf_c00268{letter-spacing:1.937549pt;}
.ls9_c00268{letter-spacing:1.979366pt;}
.ls7_c00268{letter-spacing:2.766931pt;}
.lsd_c00268{letter-spacing:2.836627pt;}
.lse_c00268{letter-spacing:2.912800pt;}
.ls3_c00268{letter-spacing:2.982989pt;}
.ls12_c00268{letter-spacing:3.157229pt;}
.ls10_c00268{letter-spacing:3.220800pt;}
.ls0_c00268{letter-spacing:3.254803pt;}
.ls2_c00268{letter-spacing:3.484800pt;}
.lsa_c00268{letter-spacing:45.619376pt;}
.lsc_c00268{letter-spacing:48.153776pt;}
.ls11_c00268{letter-spacing:53.222576pt;}
.ws3_c00268{word-spacing:-20.678803pt;}
.ws4_c00268{word-spacing:-20.260627pt;}
.ws1_c00268{word-spacing:-17.424000pt;}
.ws5_c00268{word-spacing:0.000000pt;}
.ws2_c00268{word-spacing:0.558272pt;}
.ws0_c00268{word-spacing:2.091232pt;}
._14_c00268{margin-left:-10.385408pt;}
._17_c00268{margin-left:-5.993856pt;}
._13_c00268{width:1.295642pt;}
._10_c00268{width:2.815366pt;}
._16_c00268{width:4.391200pt;}
._1_c00268{width:5.505984pt;}
._d_c00268{width:6.899904pt;}
._8_c00268{width:8.921088pt;}
._2_c00268{width:10.454400pt;}
._15_c00268{width:12.475584pt;}
._6_c00268{width:13.799808pt;}
._f_c00268{width:15.611904pt;}
._7_c00268{width:18.538432pt;}
._11_c00268{width:19.654976pt;}
._3_c00268{width:20.630016pt;}
._18_c00268{width:22.303072pt;}
._e_c00268{width:23.208768pt;}
._c_c00268{width:25.020864pt;}
._b_c00268{width:26.204992pt;}
._5_c00268{width:27.809056pt;}
._0_c00268{width:28.784448pt;}
._4_c00268{width:30.250176pt;}
._a_c00268{width:31.991168pt;}
._9_c00268{width:35.335872pt;}
._12_c00268{width:36.451712pt;}
.fs7_c00268{font-size:19.712000pt;}
.fs6_c00268{font-size:24.640000pt;}
.fs1_c00268{font-size:45.619376pt;}
.fs2_c00268{font-size:48.153776pt;}
.fs5_c00268{font-size:53.222576pt;}
.fs3_c00268{font-size:58.256000pt;}
.fs4_c00268{font-size:64.416000pt;}
.fs0_c00268{font-size:69.696000pt;}
.y0_c00268{bottom:0.000000pt;}
.y19_c00268{bottom:43.002120pt;}
.y1_c00268{bottom:68.000000pt;}
.y18_c00268{bottom:143.115320pt;}
.y17_c00268{bottom:154.198920pt;}
.y16_c00268{bottom:185.878920pt;}
.y15_c00268{bottom:215.028920pt;}
.y14_c00268{bottom:243.857720pt;}
.y13_c00268{bottom:272.365320pt;}
.y12_c00268{bottom:301.510920pt;}
.y11_c00268{bottom:330.339720pt;}
.y10_c00268{bottom:416.192520pt;}
.yf_c00268{bottom:445.971720pt;}
.ye_c00268{bottom:475.117320pt;}
.yd_c00268{bottom:504.900920pt;}
.yc_c00268{bottom:533.729720pt;}
.yb_c00268{bottom:562.237320pt;}
.ya_c00268{bottom:590.753720pt;}
.y9_c00268{bottom:647.777720pt;}
.y8_c00268{bottom:676.606520pt;}
.y7_c00268{bottom:705.435320pt;}
.y6_c00268{bottom:734.580920pt;}
.y5_c00268{bottom:763.409720pt;}
.y4_c00268{bottom:792.555320pt;}
.y3_c00268{bottom:822.330120pt;}
.y2_c00268{bottom:958.237320pt;}
.h9_c00268{height:20.559000pt;}
.h8_c00268{height:25.698750pt;}
.h3_c00268{height:30.382504pt;}
.h4_c00268{height:32.070415pt;}
.h7_c00268{height:35.446236pt;}
.h5_c00268{height:60.759188pt;}
.h6_c00268{height:63.220781pt;}
.h2_c00268{height:68.402813pt;}
.h1_c00268{height:986.666667pt;}
.h0_c00268{height:1122.666667pt;}
.w1_c00268{width:678.666667pt;}
.w0_c00268{width:793.333333pt;}
.x0_c00268{left:0.000000pt;}
.x4b_c00268{left:52.783333pt;}
.x14_c00268{left:53.698533pt;}
.x4_c00268{left:55.374933pt;}
.x1_c00268{left:57.333333pt;}
.x3d_c00268{left:73.441333pt;}
.x5_c00268{left:82.839733pt;}
.x15_c00268{left:83.926533pt;}
.x2d_c00268{left:93.399733pt;}
.x3f_c00268{left:102.168933pt;}
.x2e_c00268{left:103.290933pt;}
.x4f_c00268{left:111.734533pt;}
.x61_c00268{left:112.684933pt;}
.x40_c00268{left:121.555333pt;}
.x2f_c00268{left:122.611333pt;}
.x54_c00268{left:130.993333pt;}
.x27_c00268{left:132.326533pt;}
.x57_c00268{left:133.259333pt;}
.x1f_c00268{left:142.358533pt;}
.x5b_c00268{left:144.065733pt;}
.x41_c00268{left:151.444533pt;}
.x16_c00268{left:152.694133pt;}
.x6_c00268{left:161.014533pt;}
.x20_c00268{left:162.523733pt;}
.x21_c00268{left:171.240133pt;}
.x3e_c00268{left:180.911333pt;}
.x17_c00268{left:181.848533pt;}
.x7_c00268{left:189.988533pt;}
.x30_c00268{left:191.040133pt;}
.x34_c00268{left:199.430933pt;}
.x22_c00268{left:201.177733pt;}
.x8_c00268{left:210.364933pt;}
.x42_c00268{left:218.786533pt;}
.x18_c00268{left:220.819333pt;}
.x47_c00268{left:230.631333pt;}
.x9_c00268{left:239.822933pt;}
.x62_c00268{left:241.072533pt;}
.x35_c00268{left:248.565733pt;}
.x19_c00268{left:249.859333pt;}
.x43_c00268{left:259.644933pt;}
.x28_c00268{left:268.810133pt;}
.x58_c00268{left:270.218133pt;}
.x65_c00268{left:277.302133pt;}
.x36_c00268{left:279.000533pt;}
.x4c_c00268{left:288.130533pt;}
.x23_c00268{left:289.243733pt;}
.x55_c00268{left:298.558533pt;}
.x5c_c00268{left:299.662933pt;}
.xa_c00268{left:308.586133pt;}
.x1a_c00268{left:317.971333pt;}
.x52_c00268{left:327.734933pt;}
.x1b_c00268{left:328.817333pt;}
.x48_c00268{left:338.664533pt;}
.x29_c00268{left:347.196133pt;}
.x59_c00268{left:348.494133pt;}
.x37_c00268{left:356.554933pt;}
.x50_c00268{left:357.487733pt;}
.xb_c00268{left:367.018133pt;}
.x5d_c00268{left:368.144533pt;}
.x31_c00268{left:376.979733pt;}
.x5e_c00268{left:385.383733pt;}
.xc_c00268{left:386.510133pt;}
.x5f_c00268{left:388.058933pt;}
.x63_c00268{left:389.268933pt;}
.x4d_c00268{left:396.212133pt;}
.x44_c00268{left:397.272533pt;}
.xd_c00268{left:414.863733pt;}
.x32_c00268{left:415.862533pt;}
.x24_c00268{left:425.766933pt;}
.xe_c00268{left:436.001333pt;}
.x56_c00268{left:438.078133pt;}
.x38_c00268{left:445.087333pt;}
.x2a_c00268{left:446.314933pt;}
.x1c_c00268{left:454.943333pt;}
.x45_c00268{left:455.898133pt;}
.xf_c00268{left:463.950133pt;}
.x39_c00268{left:464.896133pt;}
.x64_c00268{left:465.996133pt;}
.x2b_c00268{left:474.593733pt;}
.x5a_c00268{left:476.116133pt;}
.x25_c00268{left:485.065733pt;}
.x1d_c00268{left:494.886533pt;}
.x60_c00268{left:503.272933pt;}
.x10_c00268{left:504.518133pt;}
.x11_c00268{left:513.700933pt;}
.x1e_c00268{left:522.888133pt;}
.x49_c00268{left:524.247733pt;}
.x4e_c00268{left:533.122533pt;}
.x3a_c00268{left:534.130133pt;}
.x33_c00268{left:543.339333pt;}
.x2c_c00268{left:552.720133pt;}
.x26_c00268{left:562.945733pt;}
.x46_c00268{left:571.670933pt;}
.x2_c00268{left:572.731333pt;}
.x3b_c00268{left:581.170533pt;}
.x12_c00268{left:582.609333pt;}
.x3_c00268{left:592.390533pt;}
.x3c_c00268{left:601.454533pt;}
.x4a_c00268{left:603.592933pt;}
.x13_c00268{left:612.054133pt;}
.x51_c00268{left:621.232533pt;}
.x53_c00268{left:631.128133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b3cc36f3a0dddf0ea7ef0543.woff2')format("woff");}.ff1_c00269{font-family:ff1_c00269;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00269;src:url('chunks/assets/font_d7a8bec137d6d37444efa2c9.woff2')format("woff");}.ff2_c00269{font-family:ff2_c00269;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3_c00269{transform:matrix(0.212031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212031,0.000000,0.000000,0.250000,0,0);}
.m55_c00269{transform:matrix(0.218883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218883,0.000000,0.000000,0.250000,0,0);}
.m3b_c00269{transform:matrix(0.232106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232106,0.000000,0.000000,0.250000,0,0);}
.m56_c00269{transform:matrix(0.232376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232376,0.000000,0.000000,0.250000,0,0);}
.m3d_c00269{transform:matrix(0.234006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234006,0.000000,0.000000,0.250000,0,0);}
.m71_c00269{transform:matrix(0.234209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234209,0.000000,0.000000,0.250000,0,0);}
.m1a_c00269{transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);}
.m3f_c00269{transform:matrix(0.236775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236775,0.000000,0.000000,0.250000,0,0);}
.m3a_c00269{transform:matrix(0.247402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247402,0.000000,0.000000,0.250000,0,0);}
.m4_c00269{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00269{transform:matrix(0.252247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252247,0.000000,0.000000,0.250000,0,0);}
.m38_c00269{transform:matrix(0.252843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252843,0.000000,0.000000,0.250000,0,0);}
.m68_c00269{transform:matrix(0.254830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254830,0.000000,0.000000,0.250000,0,0);}
.m3e_c00269{transform:matrix(0.255510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255510,0.000000,0.000000,0.250000,0,0);}
.m2b_c00269{transform:matrix(0.256251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256251,0.000000,0.000000,0.250000,0,0);}
.m16_c00269{transform:matrix(0.258139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258139,0.000000,0.000000,0.250000,0,0);}
.m4d_c00269{transform:matrix(0.258384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258384,0.000000,0.000000,0.250000,0,0);}
.m47_c00269{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m8_c00269{transform:matrix(0.259072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259072,0.000000,0.000000,0.250000,0,0);}
.m81_c00269{transform:matrix(0.259554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259554,0.000000,0.000000,0.250000,0,0);}
.m1e_c00269{transform:matrix(0.260458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260458,0.000000,0.000000,0.250000,0,0);}
.mf_c00269{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.m6e_c00269{transform:matrix(0.261792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261792,0.000000,0.000000,0.250000,0,0);}
.m30_c00269{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m5_c00269{transform:matrix(0.263305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263305,0.000000,0.000000,0.250000,0,0);}
.m66_c00269{transform:matrix(0.263824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263824,0.000000,0.000000,0.250000,0,0);}
.m10_c00269{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m49_c00269{transform:matrix(0.264128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264128,0.000000,0.000000,0.250000,0,0);}
.m44_c00269{transform:matrix(0.265075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265075,0.000000,0.000000,0.250000,0,0);}
.m45_c00269{transform:matrix(0.266177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266177,0.000000,0.000000,0.250000,0,0);}
.m53_c00269{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m7a_c00269{transform:matrix(0.267471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267471,0.000000,0.000000,0.250000,0,0);}
.m7_c00269{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m57_c00269{transform:matrix(0.267951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267951,0.000000,0.000000,0.250000,0,0);}
.m36_c00269{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.md_c00269{transform:matrix(0.268994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268994,0.000000,0.000000,0.250000,0,0);}
.m48_c00269{transform:matrix(0.270015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270015,0.000000,0.000000,0.250000,0,0);}
.m6c_c00269{transform:matrix(0.270180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270180,0.000000,0.000000,0.250000,0,0);}
.m4e_c00269{transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);}
.m35_c00269{transform:matrix(0.273970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273970,0.000000,0.000000,0.250000,0,0);}
.m25_c00269{transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);}
.m2_c00269{transform:matrix(0.274935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274935,0.000000,0.000000,0.250000,0,0);}
.m5e_c00269{transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);}
.m4c_c00269{transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);}
.m43_c00269{transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);}
.m2f_c00269{transform:matrix(0.279531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279531,0.000000,0.000000,0.250000,0,0);}
.m4f_c00269{transform:matrix(0.279856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279856,0.000000,0.000000,0.250000,0,0);}
.m5c_c00269{transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);}
.m1_c00269{transform:matrix(0.280356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280356,0.000000,0.000000,0.250000,0,0);}
.m23_c00269{transform:matrix(0.280899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280899,0.000000,0.000000,0.250000,0,0);}
.m4b_c00269{transform:matrix(0.281160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281160,0.000000,0.000000,0.250000,0,0);}
.m1f_c00269{transform:matrix(0.281452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281452,0.000000,0.000000,0.250000,0,0);}
.m24_c00269{transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);}
.m17_c00269{transform:matrix(0.282254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282254,0.000000,0.000000,0.250000,0,0);}
.m21_c00269{transform:matrix(0.282568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282568,0.000000,0.000000,0.250000,0,0);}
.m12_c00269{transform:matrix(0.285234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285234,0.000000,0.000000,0.250000,0,0);}
.m70_c00269{transform:matrix(0.286141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286141,0.000000,0.000000,0.250000,0,0);}
.m50_c00269{transform:matrix(0.286496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286496,0.000000,0.000000,0.250000,0,0);}
.m78_c00269{transform:matrix(0.286810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286810,0.000000,0.000000,0.250000,0,0);}
.m28_c00269{transform:matrix(0.286845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286845,0.000000,0.000000,0.250000,0,0);}
.m58_c00269{transform:matrix(0.288516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288516,0.000000,0.000000,0.250000,0,0);}
.m32_c00269{transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);}
.m62_c00269{transform:matrix(0.290884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290884,0.000000,0.000000,0.250000,0,0);}
.m0_c00269{transform:matrix(0.290924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290924,0.000000,0.000000,0.250000,0,0);}
.m63_c00269{transform:matrix(0.291209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291209,0.000000,0.000000,0.250000,0,0);}
.m65_c00269{transform:matrix(0.291723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291723,0.000000,0.000000,0.250000,0,0);}
.m5f_c00269{transform:matrix(0.292586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292586,0.000000,0.000000,0.250000,0,0);}
.m6_c00269{transform:matrix(0.293851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293851,0.000000,0.000000,0.250000,0,0);}
.m72_c00269{transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);}
.m76_c00269{transform:matrix(0.295088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295088,0.000000,0.000000,0.250000,0,0);}
.m77_c00269{transform:matrix(0.295215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295215,0.000000,0.000000,0.250000,0,0);}
.m1c_c00269{transform:matrix(0.297018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297018,0.000000,0.000000,0.250000,0,0);}
.m9_c00269{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m3c_c00269{transform:matrix(0.297108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297108,0.000000,0.000000,0.250000,0,0);}
.m1b_c00269{transform:matrix(0.297232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297232,0.000000,0.000000,0.250000,0,0);}
.m7f_c00269{transform:matrix(0.297357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297357,0.000000,0.000000,0.250000,0,0);}
.m60_c00269{transform:matrix(0.298045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298045,0.000000,0.000000,0.250000,0,0);}
.m80_c00269{transform:matrix(0.298951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298951,0.000000,0.000000,0.250000,0,0);}
.m6d_c00269{transform:matrix(0.300551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300551,0.000000,0.000000,0.250000,0,0);}
.m1d_c00269{transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);}
.m33_c00269{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m5d_c00269{transform:matrix(0.302633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302633,0.000000,0.000000,0.250000,0,0);}
.m7e_c00269{transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);}
.m13_c00269{transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);}
.mb_c00269{transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);}
.m5a_c00269{transform:matrix(0.306987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306987,0.000000,0.000000,0.250000,0,0);}
.m14_c00269{transform:matrix(0.306992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306992,0.000000,0.000000,0.250000,0,0);}
.m69_c00269{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m2e_c00269{transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);}
.m18_c00269{transform:matrix(0.310974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310974,0.000000,0.000000,0.250000,0,0);}
.m2d_c00269{transform:matrix(0.311211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311211,0.000000,0.000000,0.250000,0,0);}
.m67_c00269{transform:matrix(0.311244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311244,0.000000,0.000000,0.250000,0,0);}
.m39_c00269{transform:matrix(0.311278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311278,0.000000,0.000000,0.250000,0,0);}
.m29_c00269{transform:matrix(0.311499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311499,0.000000,0.000000,0.250000,0,0);}
.m6f_c00269{transform:matrix(0.311760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311760,0.000000,0.000000,0.250000,0,0);}
.m75_c00269{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.m15_c00269{transform:matrix(0.312595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312595,0.000000,0.000000,0.250000,0,0);}
.m2c_c00269{transform:matrix(0.312751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312751,0.000000,0.000000,0.250000,0,0);}
.ma_c00269{transform:matrix(0.313699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313699,0.000000,0.000000,0.250000,0,0);}
.m26_c00269{transform:matrix(0.314588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314588,0.000000,0.000000,0.250000,0,0);}
.m41_c00269{transform:matrix(0.315604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315604,0.000000,0.000000,0.250000,0,0);}
.m4a_c00269{transform:matrix(0.317844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317844,0.000000,0.000000,0.250000,0,0);}
.m27_c00269{transform:matrix(0.318778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318778,0.000000,0.000000,0.250000,0,0);}
.m7c_c00269{transform:matrix(0.320790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320790,0.000000,0.000000,0.250000,0,0);}
.m52_c00269{transform:matrix(0.323017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323017,0.000000,0.000000,0.250000,0,0);}
.m11_c00269{transform:matrix(0.323312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323312,0.000000,0.000000,0.250000,0,0);}
.me_c00269{transform:matrix(0.323316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323316,0.000000,0.000000,0.250000,0,0);}
.m40_c00269{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.m74_c00269{transform:matrix(0.324327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324327,0.000000,0.000000,0.250000,0,0);}
.m2a_c00269{transform:matrix(0.324566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324566,0.000000,0.000000,0.250000,0,0);}
.m79_c00269{transform:matrix(0.326215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326215,0.000000,0.000000,0.250000,0,0);}
.mc_c00269{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m6b_c00269{transform:matrix(0.327374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327374,0.000000,0.000000,0.250000,0,0);}
.m34_c00269{transform:matrix(0.328769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328769,0.000000,0.000000,0.250000,0,0);}
.m7d_c00269{transform:matrix(0.331490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331490,0.000000,0.000000,0.250000,0,0);}
.m37_c00269{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m64_c00269{transform:matrix(0.334766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334766,0.000000,0.000000,0.250000,0,0);}
.m51_c00269{transform:matrix(0.336348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336348,0.000000,0.000000,0.250000,0,0);}
.m61_c00269{transform:matrix(0.337181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337181,0.000000,0.000000,0.250000,0,0);}
.m7b_c00269{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m20_c00269{transform:matrix(0.341026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341026,0.000000,0.000000,0.250000,0,0);}
.m73_c00269{transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);}
.m46_c00269{transform:matrix(0.343069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343069,0.000000,0.000000,0.250000,0,0);}
.m59_c00269{transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);}
.m54_c00269{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m6a_c00269{transform:matrix(0.350956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350956,0.000000,0.000000,0.250000,0,0);}
.m31_c00269{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m42_c00269{transform:matrix(0.365181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365181,0.000000,0.000000,0.250000,0,0);}
.m19_c00269{transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);}
.m22_c00269{transform:matrix(0.374714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374714,0.000000,0.000000,0.250000,0,0);}
.v1_c00269{vertical-align:-29.937600px;}
.v0_c00269{vertical-align:0.000000px;}
.ls8_c00269{letter-spacing:-3.007627px;}
.ls2_c00269{letter-spacing:-2.744280px;}
.ls6_c00269{letter-spacing:-2.474017px;}
.ls4_c00269{letter-spacing:-2.375762px;}
.ls3_c00269{letter-spacing:0.000000px;}
.ls5_c00269{letter-spacing:2.258150px;}
.ls7_c00269{letter-spacing:3.534310px;}
.ls0_c00269{letter-spacing:3.752110px;}
.ls1_c00269{letter-spacing:3.920400px;}
.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:-19.602000px;}
.ws1_c00269{word-spacing:0.000000px;}
._2_c00269{margin-left:-16.187270px;}
._b_c00269{margin-left:-14.584284px;}
._7_c00269{width:5.488560px;}
._1_c00269{width:7.135128px;}
._0_c00269{width:9.487368px;}
._3_c00269{width:10.506672px;}
._5_c00269{width:20.855736px;}
._a_c00269{width:23.130360px;}
._8_c00269{width:28.854540px;}
._9_c00269{width:31.833648px;}
._6_c00269{width:33.481008px;}
._4_c00269{width:37.243800px;}
._c_c00269{width:248.627808px;}
.fc0_c00269{color:transparent;}
.fs6_c00269{font-size:27.720000px;}
.fs7_c00269{font-size:28.314000px;}
.fs5_c00269{font-size:33.264000px;}
.fs8_c00269{font-size:39.204000px;}
.fs2_c00269{font-size:70.686198px;}
.fs0_c00269{font-size:75.042198px;}
.fs1_c00269{font-size:78.408000px;}
.fs3_c00269{font-size:82.368000px;}
.fs4_c00269{font-size:85.932198px;}
.y0_c00269{bottom:0.000000px;}
.y15_c00269{bottom:45.882585px;}
.y1_c00269{bottom:76.500000px;}
.y14_c00269{bottom:141.046335px;}
.y13_c00269{bottom:170.627535px;}
.y16_c00269{bottom:192.719385px;}
.y12_c00269{bottom:207.336735px;}
.y11_c00269{bottom:241.907535px;}
.y10_c00269{bottom:274.339935px;}
.yf_c00269{bottom:306.059535px;}
.ye_c00269{bottom:338.848335px;}
.yd_c00269{bottom:356.306985px;}
.yc_c00269{bottom:372.349935px;}
.yb_c00269{bottom:436.496985px;}
.ya_c00269{bottom:630.378585px;}
.y9_c00269{bottom:694.530585px;}
.y8_c00269{bottom:726.962985px;}
.y7_c00269{bottom:792.901935px;}
.y6_c00269{bottom:823.547385px;}
.y5_c00269{bottom:855.979785px;}
.y4_c00269{bottom:888.768585px;}
.y3_c00269{bottom:922.626585px;}
.y2_c00269{bottom:1075.527135px;}
.h7_c00269{height:34.693313px;}
.h8_c00269{height:38.476582px;}
.h4_c00269{height:69.374638px;}
.h2_c00269{height:73.649813px;}
.h3_c00269{height:76.953164px;}
.h5_c00269{height:80.839688px;}
.h6_c00269{height:84.337753px;}
.h1_c00269{height:1110.000000px;}
.h0_c00269{height:1263.000000px;}
.w1_c00269{width:763.500000px;}
.w0_c00269{width:892.500000px;}
.x0_c00269{left:0.000000px;}
.x1_c00269{left:64.500000px;}
.x23_c00269{left:68.241735px;}
.x10_c00269{left:70.914735px;}
.x46_c00269{left:99.961335px;}
.x5a_c00269{left:101.268135px;}
.x5c_c00269{left:111.895785px;}
.x3d_c00269{left:122.374935px;}
.x2d_c00269{left:123.404535px;}
.x3_c00269{left:126.255735px;}
.x33_c00269{left:145.644885px;}
.x5d_c00269{left:155.921085px;}
.x24_c00269{left:157.366485px;}
.x1a_c00269{left:158.980185px;}
.x4_c00269{left:160.009785px;}
.x34_c00269{left:178.735635px;}
.x11_c00269{left:180.636435px;}
.x53_c00269{left:188.041635px;}
.x3e_c00269{left:199.391985px;}
.x25_c00269{left:201.381885px;}
.x47_c00269{left:211.009635px;}
.x26_c00269{left:212.063985px;}
.x2e_c00269{left:222.409485px;}
.x5_c00269{left:224.221185px;}
.x2f_c00269{left:231.834285px;}
.x4e_c00269{left:233.423235px;}
.x5e_c00269{left:244.862685px;}
.x6_c00269{left:246.298185px;}
.x67_c00269{left:256.539735px;}
.x48_c00269{left:257.955435px;}
.x35_c00269{left:263.900385px;}
.x4f_c00269{left:265.712085px;}
.x7_c00269{left:267.904935px;}
.x54_c00269{left:277.295085px;}
.x30_c00269{left:289.056285px;}
.x8_c00269{left:290.293785px;}
.x5f_c00269{left:299.193885px;}
.x1b_c00269{left:300.416535px;}
.x12_c00269{left:301.866885px;}
.x45_c00269{left:304.188435px;}
.x49_c00269{left:310.440285px;}
.x55_c00269{left:311.479785px;}
.x64_c00269{left:320.266035px;}
.x31_c00269{left:322.874685px;}
.x1c_c00269{left:332.700435px;}
.x9_c00269{left:333.962685px;}
.x50_c00269{left:335.338785px;}
.x3f_c00269{left:344.308185px;}
.x60_c00269{left:353.411235px;}
.x1d_c00269{left:355.158585px;}
.xa_c00269{left:366.395085px;}
.x5b_c00269{left:376.245585px;}
.x27_c00269{left:377.319735px;}
.x40_c00269{left:387.779085px;}
.x36_c00269{left:388.843335px;}
.x69_c00269{left:396.768285px;}
.x28_c00269{left:398.317635px;}
.xb_c00269{left:399.698685px;}
.x3a_c00269{left:408.519585px;}
.x65_c00269{left:410.103585px;}
.x13_c00269{left:411.172785px;}
.x56_c00269{left:420.701535px;}
.x41_c00269{left:430.750035px;}
.x4a_c00269{left:431.972685px;}
.x37_c00269{left:433.319085px;}
.x29_c00269{left:442.813185px;}
.x14_c00269{left:444.431835px;}
.x3b_c00269{left:453.737835px;}
.x1e_c00269{left:465.350535px;}
.x38_c00269{left:466.533585px;}
.x61_c00269{left:475.626735px;}
.x3c_c00269{left:485.912835px;}
.x15_c00269{left:487.580985px;}
.x57_c00269{left:497.515635px;}
.xc_c00269{left:498.847185px;}
.x32_c00269{left:508.242285px;}
.x2a_c00269{left:519.439185px;}
.x16_c00269{left:520.538085px;}
.x58_c00269{left:530.284635px;}
.xd_c00269{left:531.972585px;}
.x42_c00269{left:541.778535px;}
.x17_c00269{left:543.164535px;}
.x4b_c00269{left:552.614085px;}
.x39_c00269{left:553.712985px;}
.x1f_c00269{left:564.909885px;}
.x43_c00269{left:575.151435px;}
.x18_c00269{left:586.526535px;}
.x4c_c00269{left:597.233385px;}
.x62_c00269{left:606.772035px;}
.x19_c00269{left:608.910435px;}
.x51_c00269{left:618.721335px;}
.x68_c00269{left:628.195635px;}
.x59_c00269{left:629.403435px;}
.x20_c00269{left:630.472635px;}
.xe_c00269{left:641.055735px;}
.x2b_c00269{left:651.871485px;}
.x2_c00269{left:653.242635px;}
.x4d_c00269{left:663.266385px;}
.x21_c00269{left:664.335585px;}
.x52_c00269{left:672.389235px;}
.x22_c00269{left:675.329535px;}
.x44_c00269{left:685.175085px;}
.xf_c00269{left:686.368035px;}
.x66_c00269{left:695.678985px;}
.x63_c00269{left:706.727385px;}
.x2c_c00269{left:708.103485px;}
.x6a_c00269{left:747.480735px;}
@media print{
.v1_c00269{vertical-align:-26.611200pt;}
.v0_c00269{vertical-align:0.000000pt;}
.ls8_c00269{letter-spacing:-2.673446pt;}
.ls2_c00269{letter-spacing:-2.439360pt;}
.ls6_c00269{letter-spacing:-2.199126pt;}
.ls4_c00269{letter-spacing:-2.111789pt;}
.ls3_c00269{letter-spacing:0.000000pt;}
.ls5_c00269{letter-spacing:2.007245pt;}
.ls7_c00269{letter-spacing:3.141609pt;}
.ls0_c00269{letter-spacing:3.335209pt;}
.ls1_c00269{letter-spacing:3.484800pt;}
.ws0_c00269{word-spacing:-17.424000pt;}
.ws1_c00269{word-spacing:0.000000pt;}
._2_c00269{margin-left:-14.388684pt;}
._b_c00269{margin-left:-12.963808pt;}
._7_c00269{width:4.878720pt;}
._1_c00269{width:6.342336pt;}
._0_c00269{width:8.433216pt;}
._3_c00269{width:9.339264pt;}
._5_c00269{width:18.538432pt;}
._a_c00269{width:20.560320pt;}
._8_c00269{width:25.648480pt;}
._9_c00269{width:28.296576pt;}
._6_c00269{width:29.760896pt;}
._4_c00269{width:33.105600pt;}
._c_c00269{width:221.002496pt;}
.fs6_c00269{font-size:24.640000pt;}
.fs7_c00269{font-size:25.168000pt;}
.fs5_c00269{font-size:29.568000pt;}
.fs8_c00269{font-size:34.848000pt;}
.fs2_c00269{font-size:62.832176pt;}
.fs0_c00269{font-size:66.704176pt;}
.fs1_c00269{font-size:69.696000pt;}
.fs3_c00269{font-size:73.216000pt;}
.fs4_c00269{font-size:76.384176pt;}
.y0_c00269{bottom:0.000000pt;}
.y15_c00269{bottom:40.784520pt;}
.y1_c00269{bottom:68.000000pt;}
.y14_c00269{bottom:125.374520pt;}
.y13_c00269{bottom:151.668920pt;}
.y16_c00269{bottom:171.306120pt;}
.y12_c00269{bottom:184.299320pt;}
.y11_c00269{bottom:215.028920pt;}
.y10_c00269{bottom:243.857720pt;}
.yf_c00269{bottom:272.052920pt;}
.ye_c00269{bottom:301.198520pt;}
.yd_c00269{bottom:316.717320pt;}
.yc_c00269{bottom:330.977720pt;}
.yb_c00269{bottom:387.997320pt;}
.ya_c00269{bottom:560.336520pt;}
.y9_c00269{bottom:617.360520pt;}
.y8_c00269{bottom:646.189320pt;}
.y7_c00269{bottom:704.801720pt;}
.y6_c00269{bottom:732.042120pt;}
.y5_c00269{bottom:760.870920pt;}
.y4_c00269{bottom:790.016520pt;}
.y3_c00269{bottom:820.112520pt;}
.y2_c00269{bottom:956.024120pt;}
.h7_c00269{height:30.838500pt;}
.h8_c00269{height:34.201406pt;}
.h4_c00269{height:61.666345pt;}
.h2_c00269{height:65.466501pt;}
.h3_c00269{height:68.402813pt;}
.h5_c00269{height:71.857500pt;}
.h6_c00269{height:74.966891pt;}
.h1_c00269{height:986.666667pt;}
.h0_c00269{height:1122.666667pt;}
.w1_c00269{width:678.666667pt;}
.w0_c00269{width:793.333333pt;}
.x0_c00269{left:0.000000pt;}
.x1_c00269{left:57.333333pt;}
.x23_c00269{left:60.659320pt;}
.x10_c00269{left:63.035320pt;}
.x46_c00269{left:88.854520pt;}
.x5a_c00269{left:90.016120pt;}
.x5c_c00269{left:99.462920pt;}
.x3d_c00269{left:108.777720pt;}
.x2d_c00269{left:109.692920pt;}
.x3_c00269{left:112.227320pt;}
.x33_c00269{left:129.462120pt;}
.x5d_c00269{left:138.596520pt;}
.x24_c00269{left:139.881320pt;}
.x1a_c00269{left:141.315720pt;}
.x4_c00269{left:142.230920pt;}
.x34_c00269{left:158.876120pt;}
.x11_c00269{left:160.565720pt;}
.x53_c00269{left:167.148120pt;}
.x3e_c00269{left:177.237320pt;}
.x25_c00269{left:179.006120pt;}
.x47_c00269{left:187.564120pt;}
.x26_c00269{left:188.501320pt;}
.x2e_c00269{left:197.697320pt;}
.x5_c00269{left:199.307720pt;}
.x2f_c00269{left:206.074920pt;}
.x4e_c00269{left:207.487320pt;}
.x5e_c00269{left:217.655720pt;}
.x6_c00269{left:218.931720pt;}
.x67_c00269{left:228.035320pt;}
.x48_c00269{left:229.293720pt;}
.x35_c00269{left:234.578120pt;}
.x4f_c00269{left:236.188520pt;}
.x7_c00269{left:238.137720pt;}
.x54_c00269{left:246.484520pt;}
.x30_c00269{left:256.938920pt;}
.x8_c00269{left:258.038920pt;}
.x5f_c00269{left:265.950120pt;}
.x1b_c00269{left:267.036920pt;}
.x12_c00269{left:268.326120pt;}
.x45_c00269{left:270.389720pt;}
.x49_c00269{left:275.946920pt;}
.x55_c00269{left:276.870920pt;}
.x64_c00269{left:284.680920pt;}
.x31_c00269{left:286.999720pt;}
.x1c_c00269{left:295.733720pt;}
.x9_c00269{left:296.855720pt;}
.x50_c00269{left:298.078920pt;}
.x3f_c00269{left:306.051720pt;}
.x60_c00269{left:314.143320pt;}
.x1d_c00269{left:315.696520pt;}
.xa_c00269{left:325.684520pt;}
.x5b_c00269{left:334.440520pt;}
.x27_c00269{left:335.395320pt;}
.x40_c00269{left:344.692520pt;}
.x36_c00269{left:345.638520pt;}
.x69_c00269{left:352.682920pt;}
.x28_c00269{left:354.060120pt;}
.xb_c00269{left:355.287720pt;}
.x3a_c00269{left:363.128520pt;}
.x65_c00269{left:364.536520pt;}
.x13_c00269{left:365.486920pt;}
.x56_c00269{left:373.956920pt;}
.x41_c00269{left:382.888920pt;}
.x4a_c00269{left:383.975720pt;}
.x37_c00269{left:385.172520pt;}
.x29_c00269{left:393.611720pt;}
.x14_c00269{left:395.050520pt;}
.x3b_c00269{left:403.322520pt;}
.x1e_c00269{left:413.644920pt;}
.x38_c00269{left:414.696520pt;}
.x61_c00269{left:422.779320pt;}
.x3c_c00269{left:431.922520pt;}
.x15_c00269{left:433.405320pt;}
.x57_c00269{left:442.236120pt;}
.xc_c00269{left:443.419720pt;}
.x32_c00269{left:451.770920pt;}
.x2a_c00269{left:461.723720pt;}
.x16_c00269{left:462.700520pt;}
.x58_c00269{left:471.364120pt;}
.xd_c00269{left:472.864520pt;}
.x42_c00269{left:481.580920pt;}
.x17_c00269{left:482.812920pt;}
.x4b_c00269{left:491.212520pt;}
.x39_c00269{left:492.189320pt;}
.x1f_c00269{left:502.142120pt;}
.x43_c00269{left:511.245720pt;}
.x18_c00269{left:521.356920pt;}
.x4c_c00269{left:530.874120pt;}
.x62_c00269{left:539.352920pt;}
.x19_c00269{left:541.253720pt;}
.x51_c00269{left:549.974520pt;}
.x68_c00269{left:558.396120pt;}
.x59_c00269{left:559.469720pt;}
.x20_c00269{left:560.420120pt;}
.xe_c00269{left:569.827320pt;}
.x2b_c00269{left:579.441320pt;}
.x2_c00269{left:580.660120pt;}
.x4d_c00269{left:589.570120pt;}
.x21_c00269{left:590.520520pt;}
.x52_c00269{left:597.679320pt;}
.x22_c00269{left:600.292920pt;}
.x44_c00269{left:609.044520pt;}
.xf_c00269{left:610.104920pt;}
.x66_c00269{left:618.381320pt;}
.x63_c00269{left:628.202120pt;}
.x2c_c00269{left:629.425320pt;}
.x6a_c00269{left:664.427320pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b2fd3742644a23dad0f62f6f.woff2')format("woff");}.ff1_c00270{font-family:ff1_c00270;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00270;src:url('chunks/assets/font_e8991c8273e4ae557c514e86.woff2')format("woff");}.ff2_c00270{font-family:ff2_c00270;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00270;src:url('chunks/assets/font_2b75f1d52500952c5a0f80f6.woff2')format("woff");}.ff3_c00270{font-family:ff3_c00270;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00270;src:url('chunks/assets/font_ba0532001bfe3d05a81cb56f.woff2')format("woff");}.ff4_c00270{font-family:ff4_c00270;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m9f_c00270{transform:matrix(0.169941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169941,0.000000,0.000000,0.250000,0,0);}
.md_c00270{transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);}
.me_c00270{transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);}
.m1d_c00270{transform:matrix(0.204861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204861,0.000000,0.000000,0.250000,0,0);}
.ma7_c00270{transform:matrix(0.211111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211111,0.000000,0.000000,0.250000,0,0);}
.mc_c00270{transform:matrix(0.212244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212244,0.000000,0.000000,0.250000,0,0);}
.ma_c00270{transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);}
.m35_c00270{transform:matrix(0.238729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238729,0.000000,0.000000,0.250000,0,0);}
.m95_c00270{transform:matrix(0.242534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242534,0.000000,0.000000,0.250000,0,0);}
.m2f_c00270{transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);}
.m3_c00270{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00270{transform:matrix(0.250051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250051,0.000000,0.000000,0.250000,0,0);}
.m56_c00270{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.m61_c00270{transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);}
.m63_c00270{transform:matrix(0.252371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252371,0.000000,0.000000,0.250000,0,0);}
.ma9_c00270{transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);}
.m85_c00270{transform:matrix(0.254597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254597,0.000000,0.000000,0.250000,0,0);}
.m15_c00270{transform:matrix(0.257794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257794,0.000000,0.000000,0.250000,0,0);}
.m21_c00270{transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258371,0.000000,0.000000,0.250000,0,0);}
.m8f_c00270{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m9d_c00270{transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);}
.m1a_c00270{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m50_c00270{transform:matrix(0.261792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261792,0.000000,0.000000,0.250000,0,0);}
.m81_c00270{transform:matrix(0.261836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261836,0.000000,0.000000,0.250000,0,0);}
.m2c_c00270{transform:matrix(0.262034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262034,0.000000,0.000000,0.250000,0,0);}
.m2a_c00270{transform:matrix(0.262167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262167,0.000000,0.000000,0.250000,0,0);}
.m2_c00270{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m78_c00270{transform:matrix(0.263353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263353,0.000000,0.000000,0.250000,0,0);}
.m8d_c00270{transform:matrix(0.264886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264886,0.000000,0.000000,0.250000,0,0);}
.m26_c00270{transform:matrix(0.265318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265318,0.000000,0.000000,0.250000,0,0);}
.m36_c00270{transform:matrix(0.265637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265637,0.000000,0.000000,0.250000,0,0);}
.m51_c00270{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m98_c00270{transform:matrix(0.267205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267205,0.000000,0.000000,0.250000,0,0);}
.m7_c00270{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m68_c00270{transform:matrix(0.270008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270008,0.000000,0.000000,0.250000,0,0);}
.m46_c00270{transform:matrix(0.270329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270329,0.000000,0.000000,0.250000,0,0);}
.m32_c00270{transform:matrix(0.270599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270599,0.000000,0.000000,0.250000,0,0);}
.m1c_c00270{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00270{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m62_c00270{transform:matrix(0.272725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272725,0.000000,0.000000,0.250000,0,0);}
.m22_c00270{transform:matrix(0.272733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272733,0.000000,0.000000,0.250000,0,0);}
.m96_c00270{transform:matrix(0.272943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272943,0.000000,0.000000,0.250000,0,0);}
.m11_c00270{transform:matrix(0.273109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273109,0.000000,0.000000,0.250000,0,0);}
.m54_c00270{transform:matrix(0.273564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273564,0.000000,0.000000,0.250000,0,0);}
.m0_c00270{transform:matrix(0.273795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273795,0.000000,0.000000,0.250000,0,0);}
.m72_c00270{transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);}
.m92_c00270{transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);}
.m84_c00270{transform:matrix(0.274935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274935,0.000000,0.000000,0.250000,0,0);}
.m7f_c00270{transform:matrix(0.275879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275879,0.000000,0.000000,0.250000,0,0);}
.m1e_c00270{transform:matrix(0.276021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276021,0.000000,0.000000,0.250000,0,0);}
.m89_c00270{transform:matrix(0.277084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277084,0.000000,0.000000,0.250000,0,0);}
.m30_c00270{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m44_c00270{transform:matrix(0.278154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278154,0.000000,0.000000,0.250000,0,0);}
.m5d_c00270{transform:matrix(0.278302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278302,0.000000,0.000000,0.250000,0,0);}
.m9_c00270{transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);}
.m74_c00270{transform:matrix(0.278725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278725,0.000000,0.000000,0.250000,0,0);}
.m91_c00270{transform:matrix(0.278730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278730,0.000000,0.000000,0.250000,0,0);}
.m10_c00270{transform:matrix(0.278971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278971,0.000000,0.000000,0.250000,0,0);}
.m7a_c00270{transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);}
.m8b_c00270{transform:matrix(0.279426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279426,0.000000,0.000000,0.250000,0,0);}
.m77_c00270{transform:matrix(0.279663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279663,0.000000,0.000000,0.250000,0,0);}
.m64_c00270{transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);}
.m6_c00270{transform:matrix(0.280016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280016,0.000000,0.000000,0.250000,0,0);}
.m16_c00270{transform:matrix(0.280910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280910,0.000000,0.000000,0.250000,0,0);}
.m88_c00270{transform:matrix(0.280919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280919,0.000000,0.000000,0.250000,0,0);}
.ma8_c00270{transform:matrix(0.281184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281184,0.000000,0.000000,0.250000,0,0);}
.ma6_c00270{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.m31_c00270{transform:matrix(0.281734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281734,0.000000,0.000000,0.250000,0,0);}
.m4_c00270{transform:matrix(0.282161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282161,0.000000,0.000000,0.250000,0,0);}
.m6d_c00270{transform:matrix(0.283330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283330,0.000000,0.000000,0.250000,0,0);}
.m83_c00270{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m71_c00270{transform:matrix(0.285147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285147,0.000000,0.000000,0.250000,0,0);}
.m7b_c00270{transform:matrix(0.286238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286238,0.000000,0.000000,0.250000,0,0);}
.m59_c00270{transform:matrix(0.286518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286518,0.000000,0.000000,0.250000,0,0);}
.m8_c00270{transform:matrix(0.286598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286598,0.000000,0.000000,0.250000,0,0);}
.m4d_c00270{transform:matrix(0.286677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286677,0.000000,0.000000,0.250000,0,0);}
.m5e_c00270{transform:matrix(0.286857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286857,0.000000,0.000000,0.250000,0,0);}
.m87_c00270{transform:matrix(0.287284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287284,0.000000,0.000000,0.250000,0,0);}
.m9b_c00270{transform:matrix(0.287867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287867,0.000000,0.000000,0.250000,0,0);}
.m49_c00270{transform:matrix(0.288372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288372,0.000000,0.000000,0.250000,0,0);}
.m4a_c00270{transform:matrix(0.288571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288571,0.000000,0.000000,0.250000,0,0);}
.m76_c00270{transform:matrix(0.288774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288774,0.000000,0.000000,0.250000,0,0);}
.m8e_c00270{transform:matrix(0.288963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288963,0.000000,0.000000,0.250000,0,0);}
.m55_c00270{transform:matrix(0.290107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290107,0.000000,0.000000,0.250000,0,0);}
.m3e_c00270{transform:matrix(0.290222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290222,0.000000,0.000000,0.250000,0,0);}
.m9e_c00270{transform:matrix(0.290342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290342,0.000000,0.000000,0.250000,0,0);}
.m93_c00270{transform:matrix(0.290972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290972,0.000000,0.000000,0.250000,0,0);}
.ma1_c00270{transform:matrix(0.291209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291209,0.000000,0.000000,0.250000,0,0);}
.m3a_c00270{transform:matrix(0.291407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291407,0.000000,0.000000,0.250000,0,0);}
.m57_c00270{transform:matrix(0.291905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291905,0.000000,0.000000,0.250000,0,0);}
.m8a_c00270{transform:matrix(0.291958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291958,0.000000,0.000000,0.250000,0,0);}
.mb_c00270{transform:matrix(0.292612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292612,0.000000,0.000000,0.250000,0,0);}
.m41_c00270{transform:matrix(0.292713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292713,0.000000,0.000000,0.250000,0,0);}
.m82_c00270{transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);}
.m86_c00270{transform:matrix(0.294443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294443,0.000000,0.000000,0.250000,0,0);}
.m66_c00270{transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);}
.m7d_c00270{transform:matrix(0.295064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295064,0.000000,0.000000,0.250000,0,0);}
.m73_c00270{transform:matrix(0.295220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295220,0.000000,0.000000,0.250000,0,0);}
.m1_c00270{transform:matrix(0.296141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296141,0.000000,0.000000,0.250000,0,0);}
.m45_c00270{transform:matrix(0.296672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296672,0.000000,0.000000,0.250000,0,0);}
.m23_c00270{transform:matrix(0.297306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297306,0.000000,0.000000,0.250000,0,0);}
.m43_c00270{transform:matrix(0.299044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299044,0.000000,0.000000,0.250000,0,0);}
.m5b_c00270{transform:matrix(0.299520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299520,0.000000,0.000000,0.250000,0,0);}
.m4f_c00270{transform:matrix(0.300938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300938,0.000000,0.000000,0.250000,0,0);}
.m38_c00270{transform:matrix(0.301637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301637,0.000000,0.000000,0.250000,0,0);}
.m60_c00270{transform:matrix(0.301659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301659,0.000000,0.000000,0.250000,0,0);}
.m5_c00270{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m5f_c00270{transform:matrix(0.303100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303100,0.000000,0.000000,0.250000,0,0);}
.m8c_c00270{transform:matrix(0.303446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303446,0.000000,0.000000,0.250000,0,0);}
.m90_c00270{transform:matrix(0.304554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304554,0.000000,0.000000,0.250000,0,0);}
.m4e_c00270{transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);}
.m3c_c00270{transform:matrix(0.305829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305829,0.000000,0.000000,0.250000,0,0);}
.m2b_c00270{transform:matrix(0.306161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306161,0.000000,0.000000,0.250000,0,0);}
.m80_c00270{transform:matrix(0.307149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307149,0.000000,0.000000,0.250000,0,0);}
.m5c_c00270{transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);}
.m94_c00270{transform:matrix(0.308518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308518,0.000000,0.000000,0.250000,0,0);}
.ma5_c00270{transform:matrix(0.308602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308602,0.000000,0.000000,0.250000,0,0);}
.m7e_c00270{transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);}
.m4c_c00270{transform:matrix(0.310577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310577,0.000000,0.000000,0.250000,0,0);}
.m37_c00270{transform:matrix(0.310877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310877,0.000000,0.000000,0.250000,0,0);}
.m27_c00270{transform:matrix(0.311241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311241,0.000000,0.000000,0.250000,0,0);}
.m3d_c00270{transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);}
.m9c_c00270{transform:matrix(0.312442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312442,0.000000,0.000000,0.250000,0,0);}
.m6e_c00270{transform:matrix(0.312794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312794,0.000000,0.000000,0.250000,0,0);}
.m9a_c00270{transform:matrix(0.314528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314528,0.000000,0.000000,0.250000,0,0);}
.m53_c00270{transform:matrix(0.315516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315516,0.000000,0.000000,0.250000,0,0);}
.m18_c00270{transform:matrix(0.317069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317069,0.000000,0.000000,0.250000,0,0);}
.m19_c00270{transform:matrix(0.317553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317553,0.000000,0.000000,0.250000,0,0);}
.mab_c00270{transform:matrix(0.318957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318957,0.000000,0.000000,0.250000,0,0);}
.m12_c00270{transform:matrix(0.319540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319540,0.000000,0.000000,0.250000,0,0);}
.m34_c00270{transform:matrix(0.320441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320441,0.000000,0.000000,0.250000,0,0);}
.m7c_c00270{transform:matrix(0.321048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321048,0.000000,0.000000,0.250000,0,0);}
.m40_c00270{transform:matrix(0.321497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321497,0.000000,0.000000,0.250000,0,0);}
.m39_c00270{transform:matrix(0.321802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321802,0.000000,0.000000,0.250000,0,0);}
.m1b_c00270{transform:matrix(0.322595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322595,0.000000,0.000000,0.250000,0,0);}
.m3b_c00270{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.m67_c00270{transform:matrix(0.324586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324586,0.000000,0.000000,0.250000,0,0);}
.m6f_c00270{transform:matrix(0.325097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325097,0.000000,0.000000,0.250000,0,0);}
.m17_c00270{transform:matrix(0.325172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325172,0.000000,0.000000,0.250000,0,0);}
.m24_c00270{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.m42_c00270{transform:matrix(0.328711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328711,0.000000,0.000000,0.250000,0,0);}
.m6a_c00270{transform:matrix(0.329539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329539,0.000000,0.000000,0.250000,0,0);}
.ma3_c00270{transform:matrix(0.330203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330203,0.000000,0.000000,0.250000,0,0);}
.m14_c00270{transform:matrix(0.332720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332720,0.000000,0.000000,0.250000,0,0);}
.m58_c00270{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m33_c00270{transform:matrix(0.333358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333358,0.000000,0.000000,0.250000,0,0);}
.m25_c00270{transform:matrix(0.334121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334121,0.000000,0.000000,0.250000,0,0);}
.m20_c00270{transform:matrix(0.335721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335721,0.000000,0.000000,0.250000,0,0);}
.ma0_c00270{transform:matrix(0.336403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336403,0.000000,0.000000,0.250000,0,0);}
.m97_c00270{transform:matrix(0.338749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338749,0.000000,0.000000,0.250000,0,0);}
.m75_c00270{transform:matrix(0.338860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338860,0.000000,0.000000,0.250000,0,0);}
.m65_c00270{transform:matrix(0.339224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339224,0.000000,0.000000,0.250000,0,0);}
.ma4_c00270{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m70_c00270{transform:matrix(0.339285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339285,0.000000,0.000000,0.250000,0,0);}
.m4b_c00270{transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);}
.m13_c00270{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.m3f_c00270{transform:matrix(0.343814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343814,0.000000,0.000000,0.250000,0,0);}
.m29_c00270{transform:matrix(0.347013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347013,0.000000,0.000000,0.250000,0,0);}
.mf_c00270{transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);}
.m99_c00270{transform:matrix(0.347629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347629,0.000000,0.000000,0.250000,0,0);}
.m1f_c00270{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m79_c00270{transform:matrix(0.350956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350956,0.000000,0.000000,0.250000,0,0);}
.m2e_c00270{transform:matrix(0.354899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354899,0.000000,0.000000,0.250000,0,0);}
.m48_c00270{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m47_c00270{transform:matrix(0.358842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358842,0.000000,0.000000,0.250000,0,0);}
.m28_c00270{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);}
.m2d_c00270{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.maa_c00270{transform:matrix(0.361926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361926,0.000000,0.000000,0.250000,0,0);}
.ma2_c00270{transform:matrix(0.365181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365181,0.000000,0.000000,0.250000,0,0);}
.m69_c00270{transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);}
.m52_c00270{transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);}
.m5a_c00270{transform:matrix(0.383069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383069,0.000000,0.000000,0.250000,0,0);}
.v0_c00270{vertical-align:0.000000px;}
.ls5_c00270{letter-spacing:-2.744280px;}
.lsc_c00270{letter-spacing:-2.375762px;}
.lsf_c00270{letter-spacing:-2.359526px;}
.lsa_c00270{letter-spacing:-1.772021px;}
.lsb_c00270{letter-spacing:-1.654409px;}
.ls4_c00270{letter-spacing:0.000000px;}
.ls11_c00270{letter-spacing:0.290110px;}
.ls9_c00270{letter-spacing:3.112798px;}
.ls7_c00270{letter-spacing:3.183365px;}
.ls10_c00270{letter-spacing:3.583642px;}
.ls1_c00270{letter-spacing:3.661654px;}
.lse_c00270{letter-spacing:3.722400px;}
.ls3_c00270{letter-spacing:3.920400px;}
.ls2_c00270{letter-spacing:7.840008px;}
.ls0_c00270{letter-spacing:8.703288px;}
.ls6_c00270{letter-spacing:49.896198px;}
.ls8_c00270{letter-spacing:51.321798px;}
.lsd_c00270{letter-spacing:59.875398px;}
.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;}
}
.ws7_c00270{word-spacing:-25.759642px;}
.ws2_c00270{word-spacing:-22.714798px;}
.ws6_c00270{word-spacing:-22.176000px;}
.ws5_c00270{word-spacing:-19.816474px;}
.ws0_c00270{word-spacing:-19.602000px;}
.ws9_c00270{word-spacing:-18.216000px;}
.ws4_c00270{word-spacing:-0.626472px;}
.ws1_c00270{word-spacing:-0.156816px;}
.wsa_c00270{word-spacing:0.000000px;}
.ws8_c00270{word-spacing:2.665872px;}
.ws3_c00270{word-spacing:3.606768px;}
._b_c00270{margin-left:-11.682792px;}
._12_c00270{margin-left:-4.800787px;}
._6_c00270{width:4.076820px;}
._1_c00270{width:5.488560px;}
._5_c00270{width:7.135920px;}
._2_c00270{width:8.624088px;}
._0_c00270{width:10.506672px;}
._a_c00270{width:12.623688px;}
._7_c00270{width:14.003669px;}
._c_c00270{width:15.838416px;}
._13_c00270{width:16.873085px;}
._e_c00270{width:21.798216px;}
._10_c00270{width:23.679216px;}
._9_c00270{width:25.771918px;}
._d_c00270{width:28.774152px;}
._4_c00270{width:30.343896px;}
._8_c00270{width:34.577928px;}
._14_c00270{width:35.910468px;}
._11_c00270{width:40.675536px;}
._3_c00270{width:43.439616px;}
._f_c00270{width:50.180328px;}
.fc0_c00270{color:transparent;}
.fs3_c00270{font-size:15.444198px;}
.fs5_c00270{font-size:21.384000px;}
.fsa_c00270{font-size:39.600000px;}
.fs4_c00270{font-size:44.352000px;}
.fs1_c00270{font-size:49.896198px;}
.fs2_c00270{font-size:51.321798px;}
.fs6_c00270{font-size:59.875398px;}
.fs9_c00270{font-size:72.864000px;}
.fs7_c00270{font-size:74.448000px;}
.fs0_c00270{font-size:78.408000px;}
.fs8_c00270{font-size:88.704000px;}
.y0_c00270{bottom:0.000000px;}
.y1_c00270{bottom:76.500000px;}
.y1d_c00270{bottom:102.193785px;}
.y1c_c00270{bottom:133.561935px;}
.y1b_c00270{bottom:162.781785px;}
.y1a_c00270{bottom:199.134585px;}
.y19_c00270{bottom:234.061785px;}
.y17_c00270{bottom:266.848803px;}
.y18_c00270{bottom:266.850585px;}
.y16_c00270{bottom:299.995785px;}
.y15_c00270{bottom:364.509135px;}
.y14_c00270{bottom:397.297935px;}
.y13_c00270{bottom:429.730335px;}
.y12_c00270{bottom:457.524585px;}
.y11_c00270{bottom:463.231935px;}
.y1e_c00270{bottom:522.037935px;}
.y10_c00270{bottom:527.735385px;}
.yf_c00270{bottom:560.524185px;}
.ye_c00270{bottom:592.956585px;}
.yd_c00270{bottom:625.745385px;}
.yc_c00270{bottom:658.895535px;}
.yb_c00270{bottom:673.507935px;}
.ya_c00270{bottom:692.035785px;}
.y9_c00270{bottom:724.473135px;}
.y8_c00270{bottom:738.016335px;}
.y7_c00270{bottom:757.261935px;}
.y6_c00270{bottom:822.126735px;}
.y5_c00270{bottom:854.197785px;}
.y4_c00270{bottom:886.635135px;}
.y3_c00270{bottom:919.418985px;}
.y2_c00270{bottom:1074.809385px;}
.h5_c00270{height:16.107816px;}
.h7_c00270{height:20.987227px;}
.h3_c00270{height:33.230868px;}
.h4_c00270{height:34.180317px;}
.h8_c00270{height:39.877015px;}
.h6_c00270{height:46.257750px;}
.hb_c00270{height:71.512031px;}
.h9_c00270{height:75.029625px;}
.h2_c00270{height:76.953164px;}
.ha_c00270{height:87.058125px;}
.h1_c00270{height:1110.000000px;}
.h0_c00270{height:1263.000000px;}
.w1_c00270{width:763.500000px;}
.w0_c00270{width:892.500000px;}
.x0_c00270{left:0.000000px;}
.x1_c00270{left:64.500000px;}
.x3a_c00270{left:66.306285px;}
.x3_c00270{left:67.692285px;}
.x5f_c00270{left:69.484185px;}
.x30_c00270{left:87.987285px;}
.x3e_c00270{left:98.689185px;}
.x64_c00270{left:100.144485px;}
.x31_c00270{left:109.074285px;}
.x1c_c00270{left:110.499885px;}
.x27_c00270{left:120.211785px;}
.x4d_c00270{left:121.523535px;}
.x32_c00270{left:131.849235px;}
.x4_c00270{left:132.958035px;}
.x53_c00270{left:142.570935px;}
.x13_c00270{left:144.209385px;}
.x14_c00270{left:154.906335px;}
.x49_c00270{left:164.667735px;}
.x5_c00270{left:166.019085px;}
.x4e_c00270{left:175.661685px;}
.x15_c00270{left:177.037785px;}
.x54_c00270{left:196.907085px;}
.x6_c00270{left:197.971335px;}
.x58_c00270{left:199.213785px;}
.x3b_c00270{left:208.742535px;}
.x16_c00270{left:209.935485px;}
.x28_c00270{left:219.558285px;}
.x23_c00270{left:231.710535px;}
.x1d_c00270{left:242.348085px;}
.x24_c00270{left:253.228185px;}
.x17_c00270{left:264.385485px;}
.x3c_c00270{left:275.498235px;}
.x4f_c00270{left:277.601985px;}
.x3f_c00270{left:285.724935px;}
.x7_c00270{left:286.779285px;}
.x33_c00270{left:289.036485px;}
.x65_c00270{left:296.392185px;}
.x25_c00270{left:297.609885px;}
.x18_c00270{left:299.025585px;}
.x1e_c00270{left:308.960235px;}
.x8_c00270{left:319.939335px;}
.x9_c00270{left:331.279785px;}
.x4a_c00270{left:341.605485px;}
.x62_c00270{left:346.609935px;}
.x40_c00270{left:351.931185px;}
.x5b_c00270{left:353.520135px;}
.x26_c00270{left:362.633085px;}
.x63_c00270{left:363.830985px;}
.x34_c00270{left:373.879485px;}
.x47_c00270{left:374.923935px;}
.xa_c00270{left:385.516935px;}
.x50_c00270{left:396.288135px;}
.x4b_c00270{left:406.475235px;}
.x1f_c00270{left:407.915685px;}
.xb_c00270{left:418.785885px;}
.x5c_c00270{left:420.978735px;}
.x51_c00270{left:429.359085px;}
.x41_c00270{left:440.803485px;}
.x29_c00270{left:443.332935px;}
.x2c_c00270{left:451.530135px;}
.xc_c00270{left:452.624085px;}
.x20_c00270{left:463.306185px;}
.x42_c00270{left:464.588235px;}
.x57_c00270{left:473.191335px;}
.x4c_c00270{left:478.868985px;}
.x19_c00270{left:484.719885px;}
.x55_c00270{left:495.416835px;}
.x21_c00270{left:496.426635px;}
.x43_c00270{left:497.857185px;}
.x5d_c00270{left:505.594035px;}
.x2a_c00270{left:507.113685px;}
.xd_c00270{left:517.865085px;}
.x35_c00270{left:528.522435px;}
.x52_c00270{left:539.620335px;}
.x3d_c00270{left:540.649935px;}
.x2d_c00270{left:551.020185px;}
.x36_c00270{left:560.855835px;}
.x5e_c00270{left:561.989385px;}
.x60_c00270{left:572.270535px;}
.xe_c00270{left:573.354585px;}
.x22_c00270{left:583.804035px;}
.x2b_c00270{left:594.263385px;}
.x2e_c00270{left:603.960435px;}
.xf_c00270{left:604.990035px;}
.x1a_c00270{left:606.222585px;}
.x39_c00270{left:611.989335px;}
.x56_c00270{left:616.186935px;}
.x37_c00270{left:617.290785px;}
.x10_c00270{left:627.616485px;}
.x1b_c00270{left:638.867835px;}
.x2_c00270{left:649.683585px;}
.x38_c00270{left:651.916035px;}
.x48_c00270{left:660.009285px;}
.x59_c00270{left:661.811085px;}
.x61_c00270{left:663.711885px;}
.x44_c00270{left:670.627035px;}
.x11_c00270{left:672.008085px;}
.x2f_c00270{left:681.630885px;}
.x12_c00270{left:693.926685px;}
.x46_c00270{left:703.856385px;}
.x5a_c00270{left:705.687885px;}
.x45_c00270{left:715.280985px;}
.x66_c00270{left:745.594785px;}
@media print{
.v0_c00270{vertical-align:0.000000pt;}
.ls5_c00270{letter-spacing:-2.439360pt;}
.lsc_c00270{letter-spacing:-2.111789pt;}
.lsf_c00270{letter-spacing:-2.097357pt;}
.lsa_c00270{letter-spacing:-1.575130pt;}
.lsb_c00270{letter-spacing:-1.470586pt;}
.ls4_c00270{letter-spacing:0.000000pt;}
.ls11_c00270{letter-spacing:0.257875pt;}
.ls9_c00270{letter-spacing:2.766931pt;}
.ls7_c00270{letter-spacing:2.829658pt;}
.ls10_c00270{letter-spacing:3.185459pt;}
.ls1_c00270{letter-spacing:3.254803pt;}
.lse_c00270{letter-spacing:3.308800pt;}
.ls3_c00270{letter-spacing:3.484800pt;}
.ls2_c00270{letter-spacing:6.968896pt;}
.ls0_c00270{letter-spacing:7.736256pt;}
.ls6_c00270{letter-spacing:44.352176pt;}
.ls8_c00270{letter-spacing:45.619376pt;}
.lsd_c00270{letter-spacing:53.222576pt;}
.ws7_c00270{word-spacing:-22.897459pt;}
.ws2_c00270{word-spacing:-20.190931pt;}
.ws6_c00270{word-spacing:-19.712000pt;}
.ws5_c00270{word-spacing:-17.614643pt;}
.ws0_c00270{word-spacing:-17.424000pt;}
.ws9_c00270{word-spacing:-16.192000pt;}
.ws4_c00270{word-spacing:-0.556864pt;}
.ws1_c00270{word-spacing:-0.139392pt;}
.wsa_c00270{word-spacing:0.000000pt;}
.ws8_c00270{word-spacing:2.369664pt;}
.ws3_c00270{word-spacing:3.206016pt;}
._b_c00270{margin-left:-10.384704pt;}
._12_c00270{margin-left:-4.267366pt;}
._6_c00270{width:3.623840pt;}
._1_c00270{width:4.878720pt;}
._5_c00270{width:6.343040pt;}
._2_c00270{width:7.665856pt;}
._0_c00270{width:9.339264pt;}
._a_c00270{width:11.221056pt;}
._7_c00270{width:12.447706pt;}
._c_c00270{width:14.078592pt;}
._13_c00270{width:14.998298pt;}
._e_c00270{width:19.376192pt;}
._10_c00270{width:21.048192pt;}
._9_c00270{width:22.908371pt;}
._d_c00270{width:25.577024pt;}
._4_c00270{width:26.972352pt;}
._8_c00270{width:30.735936pt;}
._14_c00270{width:31.920416pt;}
._11_c00270{width:36.156032pt;}
._3_c00270{width:38.612992pt;}
._f_c00270{width:44.604736pt;}
.fs3_c00270{font-size:13.728176pt;}
.fs5_c00270{font-size:19.008000pt;}
.fsa_c00270{font-size:35.200000pt;}
.fs4_c00270{font-size:39.424000pt;}
.fs1_c00270{font-size:44.352176pt;}
.fs2_c00270{font-size:45.619376pt;}
.fs6_c00270{font-size:53.222576pt;}
.fs9_c00270{font-size:64.768000pt;}
.fs7_c00270{font-size:66.176000pt;}
.fs0_c00270{font-size:69.696000pt;}
.fs8_c00270{font-size:78.848000pt;}
.y0_c00270{bottom:0.000000pt;}
.y1_c00270{bottom:68.000000pt;}
.y1d_c00270{bottom:90.838920pt;}
.y1c_c00270{bottom:118.721720pt;}
.y1b_c00270{bottom:144.694920pt;}
.y1a_c00270{bottom:177.008520pt;}
.y19_c00270{bottom:208.054920pt;}
.y17_c00270{bottom:237.198936pt;}
.y18_c00270{bottom:237.200520pt;}
.y16_c00270{bottom:266.662920pt;}
.y15_c00270{bottom:324.008120pt;}
.y14_c00270{bottom:353.153720pt;}
.y13_c00270{bottom:381.982520pt;}
.y12_c00270{bottom:406.688520pt;}
.y11_c00270{bottom:411.761720pt;}
.y1e_c00270{bottom:464.033720pt;}
.y10_c00270{bottom:469.098120pt;}
.yf_c00270{bottom:498.243720pt;}
.ye_c00270{bottom:527.072520pt;}
.yd_c00270{bottom:556.218120pt;}
.yc_c00270{bottom:585.684920pt;}
.yb_c00270{bottom:598.673720pt;}
.ya_c00270{bottom:615.142920pt;}
.y9_c00270{bottom:643.976120pt;}
.y8_c00270{bottom:656.014520pt;}
.y7_c00270{bottom:673.121720pt;}
.y6_c00270{bottom:730.779320pt;}
.y5_c00270{bottom:759.286920pt;}
.y4_c00270{bottom:788.120120pt;}
.y3_c00270{bottom:817.261320pt;}
.y2_c00270{bottom:955.386120pt;}
.h5_c00270{height:14.318059pt;}
.h7_c00270{height:18.655313pt;}
.h3_c00270{height:29.538549pt;}
.h4_c00270{height:30.382504pt;}
.h8_c00270{height:35.446236pt;}
.h6_c00270{height:41.118000pt;}
.hb_c00270{height:63.566250pt;}
.h9_c00270{height:66.693000pt;}
.h2_c00270{height:68.402813pt;}
.ha_c00270{height:77.385000pt;}
.h1_c00270{height:986.666667pt;}
.h0_c00270{height:1122.666667pt;}
.w1_c00270{width:678.666667pt;}
.w0_c00270{width:793.333333pt;}
.x0_c00270{left:0.000000pt;}
.x1_c00270{left:57.333333pt;}
.x3a_c00270{left:58.938920pt;}
.x3_c00270{left:60.170920pt;}
.x5f_c00270{left:61.763720pt;}
.x30_c00270{left:78.210920pt;}
.x3e_c00270{left:87.723720pt;}
.x64_c00270{left:89.017320pt;}
.x31_c00270{left:96.954920pt;}
.x1c_c00270{left:98.222120pt;}
.x27_c00270{left:106.854920pt;}
.x4d_c00270{left:108.020920pt;}
.x32_c00270{left:117.199320pt;}
.x4_c00270{left:118.184920pt;}
.x53_c00270{left:126.729720pt;}
.x13_c00270{left:128.186120pt;}
.x14_c00270{left:137.694520pt;}
.x49_c00270{left:146.371320pt;}
.x5_c00270{left:147.572520pt;}
.x4e_c00270{left:156.143720pt;}
.x15_c00270{left:157.366920pt;}
.x54_c00270{left:175.028520pt;}
.x6_c00270{left:175.974520pt;}
.x58_c00270{left:177.078920pt;}
.x3b_c00270{left:185.548920pt;}
.x16_c00270{left:186.609320pt;}
.x28_c00270{left:195.162920pt;}
.x23_c00270{left:205.964920pt;}
.x1d_c00270{left:215.420520pt;}
.x24_c00270{left:225.091720pt;}
.x17_c00270{left:235.009320pt;}
.x3c_c00270{left:244.887320pt;}
.x4f_c00270{left:246.757320pt;}
.x3f_c00270{left:253.977720pt;}
.x7_c00270{left:254.914920pt;}
.x33_c00270{left:256.921320pt;}
.x65_c00270{left:263.459720pt;}
.x25_c00270{left:264.542120pt;}
.x18_c00270{left:265.800520pt;}
.x1e_c00270{left:274.631320pt;}
.x8_c00270{left:284.390520pt;}
.x9_c00270{left:294.470920pt;}
.x4a_c00270{left:303.649320pt;}
.x62_c00270{left:308.097720pt;}
.x40_c00270{left:312.827720pt;}
.x5b_c00270{left:314.240120pt;}
.x26_c00270{left:322.340520pt;}
.x63_c00270{left:323.405320pt;}
.x34_c00270{left:332.337320pt;}
.x47_c00270{left:333.265720pt;}
.xa_c00270{left:342.681720pt;}
.x50_c00270{left:352.256120pt;}
.x4b_c00270{left:361.311320pt;}
.x1f_c00270{left:362.591720pt;}
.xb_c00270{left:372.254120pt;}
.x5c_c00270{left:374.203320pt;}
.x51_c00270{left:381.652520pt;}
.x41_c00270{left:391.825320pt;}
.x29_c00270{left:394.073720pt;}
.x2c_c00270{left:401.360120pt;}
.xc_c00270{left:402.332520pt;}
.x20_c00270{left:411.827720pt;}
.x42_c00270{left:412.967320pt;}
.x57_c00270{left:420.614520pt;}
.x4c_c00270{left:425.661320pt;}
.x19_c00270{left:430.862120pt;}
.x55_c00270{left:440.370520pt;}
.x21_c00270{left:441.268120pt;}
.x43_c00270{left:442.539720pt;}
.x5d_c00270{left:449.416920pt;}
.x2a_c00270{left:450.767720pt;}
.xd_c00270{left:460.324520pt;}
.x35_c00270{left:469.797720pt;}
.x52_c00270{left:479.662520pt;}
.x3d_c00270{left:480.577720pt;}
.x2d_c00270{left:489.795720pt;}
.x36_c00270{left:498.538520pt;}
.x5e_c00270{left:499.546120pt;}
.x60_c00270{left:508.684920pt;}
.xe_c00270{left:509.648520pt;}
.x22_c00270{left:518.936920pt;}
.x2b_c00270{left:528.234120pt;}
.x2e_c00270{left:536.853720pt;}
.xf_c00270{left:537.768920pt;}
.x1a_c00270{left:538.864520pt;}
.x39_c00270{left:543.990520pt;}
.x56_c00270{left:547.721720pt;}
.x37_c00270{left:548.702920pt;}
.x10_c00270{left:557.881320pt;}
.x1b_c00270{left:567.882520pt;}
.x2_c00270{left:577.496520pt;}
.x38_c00270{left:579.480920pt;}
.x48_c00270{left:586.674920pt;}
.x59_c00270{left:588.276520pt;}
.x61_c00270{left:589.966120pt;}
.x44_c00270{left:596.112920pt;}
.x11_c00270{left:597.340520pt;}
.x2f_c00270{left:605.894120pt;}
.x12_c00270{left:616.823720pt;}
.x46_c00270{left:625.650120pt;}
.x5a_c00270{left:627.278120pt;}
.x45_c00270{left:635.805320pt;}
.x66_c00270{left:662.750920pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_292889770c0340dd49c3d299.woff2')format("woff");}.ff1_c00271{font-family:ff1_c00271;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00271;src:url('chunks/assets/font_443b0426ead01e960f5aa518.woff2')format("woff");}.ff2_c00271{font-family:ff2_c00271;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00271;src:url('chunks/assets/font_08ac00928c318806443c34ce.woff2')format("woff");}.ff3_c00271{font-family:ff3_c00271;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m32_c00271{transform:matrix(0.053572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053572,0.000000,0.000000,0.250000,0,0);}
.m31_c00271{transform:matrix(0.089285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089285,0.000000,0.000000,0.250000,0,0);}
.m8f_c00271{transform:matrix(0.152777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152777,0.000000,0.000000,0.250000,0,0);}
.m33_c00271{transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);}
.m9d_c00271{transform:matrix(0.168918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168918,0.000000,0.000000,0.250000,0,0);}
.md_c00271{transform:matrix(0.171429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171429,0.000000,0.000000,0.250000,0,0);}
.m50_c00271{transform:matrix(0.172794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172794,0.000000,0.000000,0.250000,0,0);}
.ma_c00271{transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);}
.m9c_c00271{transform:matrix(0.189188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189188,0.000000,0.000000,0.250000,0,0);}
.m3_c00271{transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);}
.m9e_c00271{transform:matrix(0.193694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193694,0.000000,0.000000,0.250000,0,0);}
.mc_c00271{transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);}
.m38_c00271{transform:matrix(0.208566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208566,0.000000,0.000000,0.250000,0,0);}
.m4_c00271{transform:matrix(0.211428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211428,0.000000,0.000000,0.250000,0,0);}
.mb_c00271{transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);}
.m2_c00271{transform:matrix(0.215476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215476,0.000000,0.000000,0.250000,0,0);}
.m90_c00271{transform:matrix(0.228009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228009,0.000000,0.000000,0.250000,0,0);}
.m96_c00271{transform:matrix(0.230429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230429,0.000000,0.000000,0.250000,0,0);}
.m5f_c00271{transform:matrix(0.238424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238424,0.000000,0.000000,0.250000,0,0);}
.m86_c00271{transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);}
.m8b_c00271{transform:matrix(0.247349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247349,0.000000,0.000000,0.250000,0,0);}
.m78_c00271{transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);}
.m5_c00271{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00271{transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);}
.m30_c00271{transform:matrix(0.254597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254597,0.000000,0.000000,0.250000,0,0);}
.m9a_c00271{transform:matrix(0.254602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254602,0.000000,0.000000,0.250000,0,0);}
.m5e_c00271{transform:matrix(0.255443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255443,0.000000,0.000000,0.250000,0,0);}
.m54_c00271{transform:matrix(0.256334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256334,0.000000,0.000000,0.250000,0,0);}
.mab_c00271{transform:matrix(0.257934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257934,0.000000,0.000000,0.250000,0,0);}
.m3e_c00271{transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);}
.ma7_c00271{transform:matrix(0.258289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258289,0.000000,0.000000,0.250000,0,0);}
.maf_c00271{transform:matrix(0.258374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258374,0.000000,0.000000,0.250000,0,0);}
.m3a_c00271{transform:matrix(0.258756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258756,0.000000,0.000000,0.250000,0,0);}
.m17_c00271{transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);}
.mae_c00271{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00271{transform:matrix(0.259258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259258,0.000000,0.000000,0.250000,0,0);}
.m66_c00271{transform:matrix(0.259988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259988,0.000000,0.000000,0.250000,0,0);}
.m3d_c00271{transform:matrix(0.260218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260218,0.000000,0.000000,0.250000,0,0);}
.m12_c00271{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.mf_c00271{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.m5d_c00271{transform:matrix(0.261624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261624,0.000000,0.000000,0.250000,0,0);}
.m47_c00271{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m21_c00271{transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);}
.m2b_c00271{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m1e_c00271{transform:matrix(0.264878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264878,0.000000,0.000000,0.250000,0,0);}
.m73_c00271{transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);}
.m1c_c00271{transform:matrix(0.265972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265972,0.000000,0.000000,0.250000,0,0);}
.m14_c00271{transform:matrix(0.265986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265986,0.000000,0.000000,0.250000,0,0);}
.m93_c00271{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m83_c00271{transform:matrix(0.267641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267641,0.000000,0.000000,0.250000,0,0);}
.m1a_c00271{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m65_c00271{transform:matrix(0.268624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268624,0.000000,0.000000,0.250000,0,0);}
.m3f_c00271{transform:matrix(0.268739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268739,0.000000,0.000000,0.250000,0,0);}
.m6b_c00271{transform:matrix(0.269233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269233,0.000000,0.000000,0.250000,0,0);}
.m0_c00271{transform:matrix(0.270647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270647,0.000000,0.000000,0.250000,0,0);}
.m7a_c00271{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m4b_c00271{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m7_c00271{transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);}
.mb3_c00271{transform:matrix(0.274237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274237,0.000000,0.000000,0.250000,0,0);}
.m41_c00271{transform:matrix(0.274670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274670,0.000000,0.000000,0.250000,0,0);}
.m1_c00271{transform:matrix(0.275345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275345,0.000000,0.000000,0.250000,0,0);}
.m2a_c00271{transform:matrix(0.275570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275570,0.000000,0.000000,0.250000,0,0);}
.m98_c00271{transform:matrix(0.275620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275620,0.000000,0.000000,0.250000,0,0);}
.m60_c00271{transform:matrix(0.275879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275879,0.000000,0.000000,0.250000,0,0);}
.m79_c00271{transform:matrix(0.276489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276489,0.000000,0.000000,0.250000,0,0);}
.m2c_c00271{transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);}
.m8_c00271{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m52_c00271{transform:matrix(0.277247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277247,0.000000,0.000000,0.250000,0,0);}
.m7d_c00271{transform:matrix(0.277275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277275,0.000000,0.000000,0.250000,0,0);}
.m19_c00271{transform:matrix(0.278315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278315,0.000000,0.000000,0.250000,0,0);}
.m37_c00271{transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);}
.m53_c00271{transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);}
.mb1_c00271{transform:matrix(0.280307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280307,0.000000,0.000000,0.250000,0,0);}
.maa_c00271{transform:matrix(0.280356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280356,0.000000,0.000000,0.250000,0,0);}
.ma5_c00271{transform:matrix(0.281069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281069,0.000000,0.000000,0.250000,0,0);}
.m2e_c00271{transform:matrix(0.281190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281190,0.000000,0.000000,0.250000,0,0);}
.m2f_c00271{transform:matrix(0.281452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281452,0.000000,0.000000,0.250000,0,0);}
.m6d_c00271{transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);}
.mb5_c00271{transform:matrix(0.282326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282326,0.000000,0.000000,0.250000,0,0);}
.m4e_c00271{transform:matrix(0.282986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282986,0.000000,0.000000,0.250000,0,0);}
.m15_c00271{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m8e_c00271{transform:matrix(0.283561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283561,0.000000,0.000000,0.250000,0,0);}
.m51_c00271{transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);}
.m89_c00271{transform:matrix(0.284591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284591,0.000000,0.000000,0.250000,0,0);}
.m3b_c00271{transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);}
.m6e_c00271{transform:matrix(0.285694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285694,0.000000,0.000000,0.250000,0,0);}
.m87_c00271{transform:matrix(0.286141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286141,0.000000,0.000000,0.250000,0,0);}
.m76_c00271{transform:matrix(0.286319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286319,0.000000,0.000000,0.250000,0,0);}
.m82_c00271{transform:matrix(0.286764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286764,0.000000,0.000000,0.250000,0,0);}
.m61_c00271{transform:matrix(0.287092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287092,0.000000,0.000000,0.250000,0,0);}
.m36_c00271{transform:matrix(0.288083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288083,0.000000,0.000000,0.250000,0,0);}
.m40_c00271{transform:matrix(0.288974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288974,0.000000,0.000000,0.250000,0,0);}
.m69_c00271{transform:matrix(0.289366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289366,0.000000,0.000000,0.250000,0,0);}
.mb7_c00271{transform:matrix(0.289520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289520,0.000000,0.000000,0.250000,0,0);}
.m2d_c00271{transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);}
.m45_c00271{transform:matrix(0.290660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290660,0.000000,0.000000,0.250000,0,0);}
.ma4_c00271{transform:matrix(0.290756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290756,0.000000,0.000000,0.250000,0,0);}
.m80_c00271{transform:matrix(0.290936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290936,0.000000,0.000000,0.250000,0,0);}
.m4d_c00271{transform:matrix(0.291645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291645,0.000000,0.000000,0.250000,0,0);}
.m42_c00271{transform:matrix(0.291872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291872,0.000000,0.000000,0.250000,0,0);}
.m70_c00271{transform:matrix(0.293544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293544,0.000000,0.000000,0.250000,0,0);}
.m84_c00271{transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);}
.m25_c00271{transform:matrix(0.293947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293947,0.000000,0.000000,0.250000,0,0);}
.m6_c00271{transform:matrix(0.294083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294083,0.000000,0.000000,0.250000,0,0);}
.m5c_c00271{transform:matrix(0.294713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294713,0.000000,0.000000,0.250000,0,0);}
.m28_c00271{transform:matrix(0.296056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296056,0.000000,0.000000,0.250000,0,0);}
.m10_c00271{transform:matrix(0.297030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297030,0.000000,0.000000,0.250000,0,0);}
.m1d_c00271{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m81_c00271{transform:matrix(0.297467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297467,0.000000,0.000000,0.250000,0,0);}
.m57_c00271{transform:matrix(0.298565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298565,0.000000,0.000000,0.250000,0,0);}
.m20_c00271{transform:matrix(0.299794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299794,0.000000,0.000000,0.250000,0,0);}
.m6a_c00271{transform:matrix(0.299883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299883,0.000000,0.000000,0.250000,0,0);}
.m88_c00271{transform:matrix(0.300199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300199,0.000000,0.000000,0.250000,0,0);}
.m7f_c00271{transform:matrix(0.300360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300360,0.000000,0.000000,0.250000,0,0);}
.m74_c00271{transform:matrix(0.301074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301074,0.000000,0.000000,0.250000,0,0);}
.m7c_c00271{transform:matrix(0.301222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301222,0.000000,0.000000,0.250000,0,0);}
.m55_c00271{transform:matrix(0.301228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301228,0.000000,0.000000,0.250000,0,0);}
.m64_c00271{transform:matrix(0.301409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301409,0.000000,0.000000,0.250000,0,0);}
.m43_c00271{transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);}
.m13_c00271{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m7e_c00271{transform:matrix(0.302721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302721,0.000000,0.000000,0.250000,0,0);}
.m72_c00271{transform:matrix(0.302847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302847,0.000000,0.000000,0.250000,0,0);}
.ma2_c00271{transform:matrix(0.304119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304119,0.000000,0.000000,0.250000,0,0);}
.m9_c00271{transform:matrix(0.304460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304460,0.000000,0.000000,0.250000,0,0);}
.m35_c00271{transform:matrix(0.304616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304616,0.000000,0.000000,0.250000,0,0);}
.m39_c00271{transform:matrix(0.304946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304946,0.000000,0.000000,0.250000,0,0);}
.m95_c00271{transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);}
.m34_c00271{transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);}
.m63_c00271{transform:matrix(0.305475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305475,0.000000,0.000000,0.250000,0,0);}
.m94_c00271{transform:matrix(0.305499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305499,0.000000,0.000000,0.250000,0,0);}
.m9f_c00271{transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);}
.m1b_c00271{transform:matrix(0.305669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305669,0.000000,0.000000,0.250000,0,0);}
.mb4_c00271{transform:matrix(0.305713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305713,0.000000,0.000000,0.250000,0,0);}
.m22_c00271{transform:matrix(0.307034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307034,0.000000,0.000000,0.250000,0,0);}
.m97_c00271{transform:matrix(0.307360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307360,0.000000,0.000000,0.250000,0,0);}
.m4f_c00271{transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);}
.m56_c00271{transform:matrix(0.308464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308464,0.000000,0.000000,0.250000,0,0);}
.m11_c00271{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m8c_c00271{transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);}
.m16_c00271{transform:matrix(0.312163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312163,0.000000,0.000000,0.250000,0,0);}
.me_c00271{transform:matrix(0.312766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312766,0.000000,0.000000,0.250000,0,0);}
.m71_c00271{transform:matrix(0.313415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313415,0.000000,0.000000,0.250000,0,0);}
.m18_c00271{transform:matrix(0.313434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313434,0.000000,0.000000,0.250000,0,0);}
.m91_c00271{transform:matrix(0.313595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313595,0.000000,0.000000,0.250000,0,0);}
.m99_c00271{transform:matrix(0.313839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313839,0.000000,0.000000,0.250000,0,0);}
.m24_c00271{transform:matrix(0.314050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314050,0.000000,0.000000,0.250000,0,0);}
.m44_c00271{transform:matrix(0.314054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314054,0.000000,0.000000,0.250000,0,0);}
.m5a_c00271{transform:matrix(0.314146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314146,0.000000,0.000000,0.250000,0,0);}
.m49_c00271{transform:matrix(0.314792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314792,0.000000,0.000000,0.250000,0,0);}
.m4a_c00271{transform:matrix(0.315048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315048,0.000000,0.000000,0.250000,0,0);}
.ma1_c00271{transform:matrix(0.315917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315917,0.000000,0.000000,0.250000,0,0);}
.m26_c00271{transform:matrix(0.316026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316026,0.000000,0.000000,0.250000,0,0);}
.m6c_c00271{transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);}
.ma0_c00271{transform:matrix(0.317429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317429,0.000000,0.000000,0.250000,0,0);}
.mb2_c00271{transform:matrix(0.319096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319096,0.000000,0.000000,0.250000,0,0);}
.mad_c00271{transform:matrix(0.321083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321083,0.000000,0.000000,0.250000,0,0);}
.m8a_c00271{transform:matrix(0.321328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321328,0.000000,0.000000,0.250000,0,0);}
.ma9_c00271{transform:matrix(0.322461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322461,0.000000,0.000000,0.250000,0,0);}
.ma8_c00271{transform:matrix(0.323503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323503,0.000000,0.000000,0.250000,0,0);}
.m67_c00271{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.m46_c00271{transform:matrix(0.323720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323720,0.000000,0.000000,0.250000,0,0);}
.m68_c00271{transform:matrix(0.324934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324934,0.000000,0.000000,0.250000,0,0);}
.m4c_c00271{transform:matrix(0.325213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325213,0.000000,0.000000,0.250000,0,0);}
.mac_c00271{transform:matrix(0.326100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326100,0.000000,0.000000,0.250000,0,0);}
.m23_c00271{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m3c_c00271{transform:matrix(0.327729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327729,0.000000,0.000000,0.250000,0,0);}
.m62_c00271{transform:matrix(0.331265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331265,0.000000,0.000000,0.250000,0,0);}
.m5b_c00271{transform:matrix(0.331590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331590,0.000000,0.000000,0.250000,0,0);}
.m27_c00271{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m58_c00271{transform:matrix(0.334657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334657,0.000000,0.000000,0.250000,0,0);}
.m48_c00271{transform:matrix(0.337511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337511,0.000000,0.000000,0.250000,0,0);}
.m29_c00271{transform:matrix(0.337672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337672,0.000000,0.000000,0.250000,0,0);}
.m77_c00271{transform:matrix(0.337886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337886,0.000000,0.000000,0.250000,0,0);}
.m75_c00271{transform:matrix(0.338749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338749,0.000000,0.000000,0.250000,0,0);}
.m8d_c00271{transform:matrix(0.340822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340822,0.000000,0.000000,0.250000,0,0);}
.m1f_c00271{transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);}
.m7b_c00271{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m92_c00271{transform:matrix(0.355222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355222,0.000000,0.000000,0.250000,0,0);}
.m6f_c00271{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m85_c00271{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.ma6_c00271{transform:matrix(0.372071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372071,0.000000,0.000000,0.250000,0,0);}
.ma3_c00271{transform:matrix(0.377237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377237,0.000000,0.000000,0.250000,0,0);}
.m59_c00271{transform:matrix(0.385852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385852,0.000000,0.000000,0.250000,0,0);}
.mb0_c00271{transform:matrix(0.414699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414699,0.000000,0.000000,0.250000,0,0);}
.v0_c00271{vertical-align:0.000000px;}
.lsa_c00271{letter-spacing:-2.744280px;}
.lsd_c00271{letter-spacing:-1.897474px;}
.ls7_c00271{letter-spacing:-1.772021px;}
.ls12_c00271{letter-spacing:-0.250906px;}
.ls6_c00271{letter-spacing:0.000000px;}
.ls0_c00271{letter-spacing:1.960200px;}
.ls9_c00271{letter-spacing:2.132698px;}
.ls1_c00271{letter-spacing:2.642350px;}
.lsb_c00271{letter-spacing:3.112798px;}
.lse_c00271{letter-spacing:3.167683px;}
.lsf_c00271{letter-spacing:3.276900px;}
.ls2_c00271{letter-spacing:3.348022px;}
.ls4_c00271{letter-spacing:3.762000px;}
.lsc_c00271{letter-spacing:3.779266px;}
.ls8_c00271{letter-spacing:3.920400px;}
.ls3_c00271{letter-spacing:3.999610px;}
.ls5_c00271{letter-spacing:49.896198px;}
.ls10_c00271{letter-spacing:51.321798px;}
.ls11_c00271{letter-spacing:52.747398px;}
.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;}
}
.ws6_c00271{word-spacing:-22.950022px;}
.ws3_c00271{word-spacing:-22.769683px;}
.ws2_c00271{word-spacing:-21.562200px;}
.ws0_c00271{word-spacing:-19.602000px;}
.ws5_c00271{word-spacing:-2.195424px;}
.ws1_c00271{word-spacing:-1.489752px;}
.ws7_c00271{word-spacing:0.000000px;}
.ws4_c00271{word-spacing:3.763584px;}
._9_c00271{margin-left:-11.604384px;}
._6_c00271{margin-left:-3.919608px;}
._13_c00271{margin-left:-1.654013px;}
._a_c00271{width:2.288722px;}
._7_c00271{width:4.704480px;}
._4_c00271{width:6.507468px;}
._2_c00271{width:7.761600px;}
._3_c00271{width:9.488160px;}
._f_c00271{width:11.760408px;}
._11_c00271{width:12.858912px;}
._1_c00271{width:15.367968px;}
._8_c00271{width:18.767074px;}
._e_c00271{width:20.856528px;}
._b_c00271{width:23.679216px;}
._10_c00271{width:28.932948px;}
._d_c00271{width:31.206384px;}
._c_c00271{width:35.832456px;}
._5_c00271{width:37.479420px;}
._0_c00271{width:42.104700px;}
._12_c00271{width:46.103904px;}
.fc0_c00271{color:transparent;}
.fs2_c00271{font-size:49.896198px;}
.fs5_c00271{font-size:51.321798px;}
.fs7_c00271{font-size:52.747398px;}
.fs4_c00271{font-size:65.538000px;}
.fs1_c00271{font-size:75.240000px;}
.fs6_c00271{font-size:77.616198px;}
.fs3_c00271{font-size:78.408000px;}
.fs0_c00271{font-size:79.992198px;}
.fs8_c00271{font-size:91.872198px;}
.y0_c00271{bottom:0.000000px;}
.y1_c00271{bottom:76.500000px;}
.y1a_c00271{bottom:133.918335px;}
.y19_c00271{bottom:154.228185px;}
.y18_c00271{bottom:164.925135px;}
.y17_c00271{bottom:231.215535px;}
.y16_c00271{bottom:263.291535px;}
.y15_c00271{bottom:295.367535px;}
.y14_c00271{bottom:304.277535px;}
.y13_c00271{bottom:327.794985px;}
.y12_c00271{bottom:362.009385px;}
.y11_c00271{bottom:395.515935px;}
.y10_c00271{bottom:462.519135px;}
.yf_c00271{bottom:495.302985px;}
.ye_c00271{bottom:527.022585px;}
.yd_c00271{bottom:559.454985px;}
.yc_c00271{bottom:592.243785px;}
.yb_c00271{bottom:656.757135px;}
.ya_c00271{bottom:690.615135px;}
.y9_c00271{bottom:723.042585px;}
.y8_c00271{bottom:757.256985px;}
.y7_c00271{bottom:790.045785px;}
.y6_c00271{bottom:822.121785px;}
.y5_c00271{bottom:854.910585px;}
.y4_c00271{bottom:887.699385px;}
.y3_c00271{bottom:920.488185px;}
.y2_c00271{bottom:1074.809385px;}
.h4_c00271{height:33.230868px;}
.h7_c00271{height:34.180317px;}
.h9_c00271{height:35.129767px;}
.h6_c00271{height:68.354086px;}
.h3_c00271{height:73.843945px;}
.h8_c00271{height:76.176054px;}
.h5_c00271{height:76.953164px;}
.h2_c00271{height:78.507968px;}
.ha_c00271{height:95.819832px;}
.h1_c00271{height:1110.000000px;}
.h0_c00271{height:1263.000000px;}
.w1_c00271{width:763.500000px;}
.w0_c00271{width:892.500000px;}
.x0_c00271{left:0.000000px;}
.x1_c00271{left:64.500000px;}
.x3a_c00271{left:67.172550px;}
.x3_c00271{left:68.291250px;}
.x2e_c00271{left:78.280350px;}
.x23_c00271{left:79.824750px;}
.x5f_c00271{left:89.343600px;}
.x2f_c00271{left:91.467150px;}
.x62_c00271{left:100.476150px;}
.x4_c00271{left:101.802750px;}
.x44_c00271{left:111.034500px;}
.x30_c00271{left:112.276950px;}
.x46_c00271{left:121.013700px;}
.x51_c00271{left:122.053200px;}
.x12_c00271{left:134.339100px;}
.x24_c00271{left:144.595500px;}
.x64_c00271{left:154.495500px;}
.x31_c00271{left:156.089400px;}
.x5_c00271{left:166.667550px;}
.x6_c00271{left:177.354600px;}
.x37_c00271{left:178.567350px;}
.x45_c00271{left:188.685150px;}
.x68_c00271{left:199.055400px;}
.x56_c00271{left:200.283000px;}
.x47_c00271{left:210.648300px;}
.x5b_c00271{left:213.331200px;}
.x13_c00271{left:221.310600px;}
.x32_c00271{left:222.369900px;}
.x3e_c00271{left:232.740150px;}
.x65_c00271{left:234.096450px;}
.x7_c00271{left:242.174850px;}
.x1b_c00271{left:243.377700px;}
.x63_c00271{left:253.574700px;}
.x25_c00271{left:254.663700px;}
.x57_c00271{left:257.628750px;}
.x3f_c00271{left:262.603500px;}
.x14_c00271{left:265.895250px;}
.x4c_c00271{left:266.929800px;}
.x40_c00271{left:275.359650px;}
.x1c_c00271{left:277.166400px;}
.x5a_c00271{left:278.344500px;}
.x8_c00271{left:287.962350px;}
.x58_c00271{left:289.016700px;}
.x48_c00271{left:300.094800px;}
.x15_c00271{left:309.945300px;}
.x49_c00271{left:321.622350px;}
.x33_c00271{left:332.195550px;}
.x34_c00271{left:341.650050px;}
.x16_c00271{left:343.580550px;}
.x26_c00271{left:353.440950px;}
.x1d_c00271{left:354.624000px;}
.x27_c00271{left:364.746750px;}
.x55_c00271{left:366.013950px;}
.x1e_c00271{left:376.285200px;}
.x4d_c00271{left:387.407850px;}
.x41_c00271{left:396.535650px;}
.x9_c00271{left:398.441400px;}
.x60_c00271{left:399.520500px;}
.x1f_c00271{left:408.806700px;}
.x17_c00271{left:420.097650px;}
.xa_c00271{left:429.680850px;}
.x4e_c00271{left:431.571750px;}
.x42_c00271{left:441.041100px;}
.x20_c00271{left:442.313250px;}
.x4a_c00271{left:443.347800px;}
.x18_c00271{left:453.351750px;}
.x52_c00271{left:454.361550px;}
.xb_c00271{left:463.830900px;}
.x59_c00271{left:465.330750px;}
.x4b_c00271{left:475.809900px;}
.x3b_c00271{left:486.779100px;}
.x28_c00271{left:497.471100px;}
.x35_c00271{left:507.915600px;}
.x21_c00271{left:518.924400px;}
.xc_c00271{left:529.834200px;}
.x66_c00271{left:531.056850px;}
.xd_c00271{left:540.887550px;}
.x5c_c00271{left:542.313150px;}
.x38_c00271{left:552.435900px;}
.x19_c00271{left:554.010000px;}
.x29_c00271{left:563.004150px;}
.x3c_c00271{left:564.132750px;}
.xe_c00271{left:574.027800px;}
.x5d_c00271{left:575.101950px;}
.x39_c00271{left:585.576150px;}
.xf_c00271{left:596.124600px;}
.x4f_c00271{left:597.218550px;}
.x2a_c00271{left:606.979950px;}
.x53_c00271{left:608.316450px;}
.x5e_c00271{left:616.790850px;}
.x10_c00271{left:617.835300px;}
.x43_c00271{left:619.023300px;}
.x2b_c00271{left:629.304450px;}
.x11_c00271{left:640.070700px;}
.x2_c00271{left:650.391450px;}
.x22_c00271{left:651.470550px;}
.x1a_c00271{left:661.870500px;}
.x61_c00271{left:663.261450px;}
.x3d_c00271{left:673.587150px;}
.x36_c00271{left:675.289950px;}
.x2c_c00271{left:684.298950px;}
.x50_c00271{left:685.363200px;}
.x54_c00271{left:695.129550px;}
.x67_c00271{left:704.965200px;}
.x2d_c00271{left:706.054200px;}
@media print{
.v0_c00271{vertical-align:0.000000pt;}
.lsa_c00271{letter-spacing:-2.439360pt;}
.lsd_c00271{letter-spacing:-1.686643pt;}
.ls7_c00271{letter-spacing:-1.575130pt;}
.ls12_c00271{letter-spacing:-0.223027pt;}
.ls6_c00271{letter-spacing:0.000000pt;}
.ls0_c00271{letter-spacing:1.742400pt;}
.ls9_c00271{letter-spacing:1.895731pt;}
.ls1_c00271{letter-spacing:2.348755pt;}
.lsb_c00271{letter-spacing:2.766931pt;}
.lse_c00271{letter-spacing:2.815718pt;}
.lsf_c00271{letter-spacing:2.912800pt;}
.ls2_c00271{letter-spacing:2.976019pt;}
.ls4_c00271{letter-spacing:3.344000pt;}
.lsc_c00271{letter-spacing:3.359347pt;}
.ls8_c00271{letter-spacing:3.484800pt;}
.ls3_c00271{letter-spacing:3.555209pt;}
.ls5_c00271{letter-spacing:44.352176pt;}
.ls10_c00271{letter-spacing:45.619376pt;}
.ls11_c00271{letter-spacing:46.886576pt;}
.ws6_c00271{word-spacing:-20.400019pt;}
.ws3_c00271{word-spacing:-20.239718pt;}
.ws2_c00271{word-spacing:-19.166400pt;}
.ws0_c00271{word-spacing:-17.424000pt;}
.ws5_c00271{word-spacing:-1.951488pt;}
.ws1_c00271{word-spacing:-1.324224pt;}
.ws7_c00271{word-spacing:0.000000pt;}
.ws4_c00271{word-spacing:3.345408pt;}
._9_c00271{margin-left:-10.315008pt;}
._6_c00271{margin-left:-3.484096pt;}
._13_c00271{margin-left:-1.470234pt;}
._a_c00271{width:2.034419pt;}
._7_c00271{width:4.181760pt;}
._4_c00271{width:5.784416pt;}
._2_c00271{width:6.899200pt;}
._3_c00271{width:8.433920pt;}
._f_c00271{width:10.453696pt;}
._11_c00271{width:11.430144pt;}
._1_c00271{width:13.660416pt;}
._8_c00271{width:16.681843pt;}
._e_c00271{width:18.539136pt;}
._b_c00271{width:21.048192pt;}
._10_c00271{width:25.718176pt;}
._d_c00271{width:27.739008pt;}
._c_c00271{width:31.851072pt;}
._5_c00271{width:33.315040pt;}
._0_c00271{width:37.426400pt;}
._12_c00271{width:40.981248pt;}
.fs2_c00271{font-size:44.352176pt;}
.fs5_c00271{font-size:45.619376pt;}
.fs7_c00271{font-size:46.886576pt;}
.fs4_c00271{font-size:58.256000pt;}
.fs1_c00271{font-size:66.880000pt;}
.fs6_c00271{font-size:68.992176pt;}
.fs3_c00271{font-size:69.696000pt;}
.fs0_c00271{font-size:71.104176pt;}
.fs8_c00271{font-size:81.664176pt;}
.y0_c00271{bottom:0.000000pt;}
.y1_c00271{bottom:68.000000pt;}
.y1a_c00271{bottom:119.038520pt;}
.y19_c00271{bottom:137.091720pt;}
.y18_c00271{bottom:146.600120pt;}
.y17_c00271{bottom:205.524920pt;}
.y16_c00271{bottom:234.036920pt;}
.y15_c00271{bottom:262.548920pt;}
.y14_c00271{bottom:270.468920pt;}
.y13_c00271{bottom:291.373320pt;}
.y12_c00271{bottom:321.786120pt;}
.y11_c00271{bottom:351.569720pt;}
.y10_c00271{bottom:411.128120pt;}
.yf_c00271{bottom:440.269320pt;}
.ye_c00271{bottom:468.464520pt;}
.yd_c00271{bottom:497.293320pt;}
.yc_c00271{bottom:526.438920pt;}
.yb_c00271{bottom:583.784120pt;}
.ya_c00271{bottom:613.880120pt;}
.y9_c00271{bottom:642.704520pt;}
.y8_c00271{bottom:673.117320pt;}
.y7_c00271{bottom:702.262920pt;}
.y6_c00271{bottom:730.774920pt;}
.y5_c00271{bottom:759.920520pt;}
.y4_c00271{bottom:789.066120pt;}
.y3_c00271{bottom:818.211720pt;}
.y2_c00271{bottom:955.386120pt;}
.h4_c00271{height:29.538549pt;}
.h7_c00271{height:30.382504pt;}
.h9_c00271{height:31.226460pt;}
.h6_c00271{height:60.759188pt;}
.h3_c00271{height:65.639063pt;}
.h8_c00271{height:67.712048pt;}
.h5_c00271{height:68.402813pt;}
.h2_c00271{height:69.784860pt;}
.ha_c00271{height:85.173184pt;}
.h1_c00271{height:986.666667pt;}
.h0_c00271{height:1122.666667pt;}
.w1_c00271{width:678.666667pt;}
.w0_c00271{width:793.333333pt;}
.x0_c00271{left:0.000000pt;}
.x1_c00271{left:57.333333pt;}
.x3a_c00271{left:59.708933pt;}
.x3_c00271{left:60.703333pt;}
.x2e_c00271{left:69.582533pt;}
.x23_c00271{left:70.955333pt;}
.x5f_c00271{left:79.416533pt;}
.x2f_c00271{left:81.304133pt;}
.x62_c00271{left:89.312133pt;}
.x4_c00271{left:90.491333pt;}
.x44_c00271{left:98.697333pt;}
.x30_c00271{left:99.801733pt;}
.x46_c00271{left:107.567733pt;}
.x51_c00271{left:108.491733pt;}
.x12_c00271{left:119.412533pt;}
.x24_c00271{left:128.529333pt;}
.x64_c00271{left:137.329333pt;}
.x31_c00271{left:138.746133pt;}
.x5_c00271{left:148.148933pt;}
.x6_c00271{left:157.648533pt;}
.x37_c00271{left:158.726533pt;}
.x45_c00271{left:167.720133pt;}
.x68_c00271{left:176.938133pt;}
.x56_c00271{left:178.029333pt;}
.x47_c00271{left:187.242933pt;}
.x5b_c00271{left:189.627733pt;}
.x13_c00271{left:196.720533pt;}
.x32_c00271{left:197.662133pt;}
.x3e_c00271{left:206.880133pt;}
.x65_c00271{left:208.085733pt;}
.x7_c00271{left:215.266533pt;}
.x1b_c00271{left:216.335733pt;}
.x63_c00271{left:225.399733pt;}
.x25_c00271{left:226.367733pt;}
.x57_c00271{left:229.003333pt;}
.x3f_c00271{left:233.425333pt;}
.x14_c00271{left:236.351333pt;}
.x4c_c00271{left:237.270933pt;}
.x40_c00271{left:244.764133pt;}
.x1c_c00271{left:246.370133pt;}
.x5a_c00271{left:247.417333pt;}
.x8_c00271{left:255.966533pt;}
.x58_c00271{left:256.903733pt;}
.x48_c00271{left:266.750933pt;}
.x15_c00271{left:275.506933pt;}
.x49_c00271{left:285.886533pt;}
.x33_c00271{left:295.284933pt;}
.x34_c00271{left:303.688933pt;}
.x16_c00271{left:305.404933pt;}
.x26_c00271{left:314.169733pt;}
.x1d_c00271{left:315.221333pt;}
.x27_c00271{left:324.219333pt;}
.x55_c00271{left:325.345733pt;}
.x1e_c00271{left:334.475733pt;}
.x4d_c00271{left:344.362533pt;}
.x41_c00271{left:352.476133pt;}
.x9_c00271{left:354.170133pt;}
.x60_c00271{left:355.129333pt;}
.x1f_c00271{left:363.383733pt;}
.x17_c00271{left:373.420133pt;}
.xa_c00271{left:381.938533pt;}
.x4e_c00271{left:383.619333pt;}
.x42_c00271{left:392.036533pt;}
.x20_c00271{left:393.167333pt;}
.x4a_c00271{left:394.086933pt;}
.x18_c00271{left:402.979333pt;}
.x52_c00271{left:403.876933pt;}
.xb_c00271{left:412.294133pt;}
.x59_c00271{left:413.627333pt;}
.x4b_c00271{left:422.942133pt;}
.x3b_c00271{left:432.692533pt;}
.x28_c00271{left:442.196533pt;}
.x35_c00271{left:451.480533pt;}
.x21_c00271{left:461.266133pt;}
.xc_c00271{left:470.963733pt;}
.x66_c00271{left:472.050533pt;}
.xd_c00271{left:480.788933pt;}
.x5c_c00271{left:482.056133pt;}
.x38_c00271{left:491.054133pt;}
.x19_c00271{left:492.453333pt;}
.x29_c00271{left:500.448133pt;}
.x3c_c00271{left:501.451333pt;}
.xe_c00271{left:510.246933pt;}
.x5d_c00271{left:511.201733pt;}
.x39_c00271{left:520.512133pt;}
.xf_c00271{left:529.888533pt;}
.x4f_c00271{left:530.860933pt;}
.x2a_c00271{left:539.537733pt;}
.x53_c00271{left:540.725733pt;}
.x5e_c00271{left:548.258533pt;}
.x10_c00271{left:549.186933pt;}
.x43_c00271{left:550.242933pt;}
.x2b_c00271{left:559.381733pt;}
.x11_c00271{left:568.951733pt;}
.x2_c00271{left:578.125733pt;}
.x22_c00271{left:579.084933pt;}
.x1a_c00271{left:588.329333pt;}
.x61_c00271{left:589.565733pt;}
.x3d_c00271{left:598.744133pt;}
.x36_c00271{left:600.257733pt;}
.x2c_c00271{left:608.265733pt;}
.x50_c00271{left:609.211733pt;}
.x54_c00271{left:617.892933pt;}
.x67_c00271{left:626.635733pt;}
.x2d_c00271{left:627.603733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_dab6f99c1c23d78e885f60e5.woff2')format("woff");}.ff1_c00272{font-family:ff1_c00272;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00272;src:url('chunks/assets/font_4456bfa6fc39cad5579a60f9.woff2')format("woff");}.ff2_c00272{font-family:ff2_c00272;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00272;src:url('chunks/assets/font_9ff45475e3b9f50a7a5cdf5f.woff2')format("woff");}.ff3_c00272{font-family:ff3_c00272;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00272;src:url('chunks/assets/font_37ec864e75f3808631bc9720.woff2')format("woff");}.ff4_c00272{font-family:ff4_c00272;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m69_c00272{transform:matrix(0.189703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189703,0.000000,0.000000,0.250000,0,0);}
.m2f_c00272{transform:matrix(0.216830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216830,0.000000,0.000000,0.250000,0,0);}
.m50_c00272{transform:matrix(0.234209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234209,0.000000,0.000000,0.250000,0,0);}
.m12_c00272{transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);}
.m2_c00272{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00272{transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);}
.ma2_c00272{transform:matrix(0.250339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250339,0.000000,0.000000,0.250000,0,0);}
.m28_c00272{transform:matrix(0.253237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253237,0.000000,0.000000,0.250000,0,0);}
.m8a_c00272{transform:matrix(0.253545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253545,0.000000,0.000000,0.250000,0,0);}
.m24_c00272{transform:matrix(0.254701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254701,0.000000,0.000000,0.250000,0,0);}
.m9a_c00272{transform:matrix(0.257987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257987,0.000000,0.000000,0.250000,0,0);}
.m7d_c00272{transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);}
.m9c_c00272{transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);}
.m1d_c00272{transform:matrix(0.259230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259230,0.000000,0.000000,0.250000,0,0);}
.m7c_c00272{transform:matrix(0.260756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260756,0.000000,0.000000,0.250000,0,0);}
.m5c_c00272{transform:matrix(0.261121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261121,0.000000,0.000000,0.250000,0,0);}
.m2d_c00272{transform:matrix(0.261305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261305,0.000000,0.000000,0.250000,0,0);}
.m8_c00272{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.mac_c00272{transform:matrix(0.262107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262107,0.000000,0.000000,0.250000,0,0);}
.m96_c00272{transform:matrix(0.262931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262931,0.000000,0.000000,0.250000,0,0);}
.m3f_c00272{transform:matrix(0.262979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262979,0.000000,0.000000,0.250000,0,0);}
.m44_c00272{transform:matrix(0.263120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263120,0.000000,0.000000,0.250000,0,0);}
.mc_c00272{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m5a_c00272{transform:matrix(0.263720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263720,0.000000,0.000000,0.250000,0,0);}
.m79_c00272{transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);}
.m5f_c00272{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m25_c00272{transform:matrix(0.264109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264109,0.000000,0.000000,0.250000,0,0);}
.m4c_c00272{transform:matrix(0.264696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264696,0.000000,0.000000,0.250000,0,0);}
.m63_c00272{transform:matrix(0.265696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265696,0.000000,0.000000,0.250000,0,0);}
.m89_c00272{transform:matrix(0.266097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266097,0.000000,0.000000,0.250000,0,0);}
.m39_c00272{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m6_c00272{transform:matrix(0.266467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266467,0.000000,0.000000,0.250000,0,0);}
.m9d_c00272{transform:matrix(0.267040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267040,0.000000,0.000000,0.250000,0,0);}
.m15_c00272{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.maf_c00272{transform:matrix(0.269011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269011,0.000000,0.000000,0.250000,0,0);}
.m84_c00272{transform:matrix(0.269032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269032,0.000000,0.000000,0.250000,0,0);}
.m4a_c00272{transform:matrix(0.271578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271578,0.000000,0.000000,0.250000,0,0);}
.m5e_c00272{transform:matrix(0.272437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272437,0.000000,0.000000,0.250000,0,0);}
.m8c_c00272{transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);}
.m59_c00272{transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);}
.m88_c00272{transform:matrix(0.274659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274659,0.000000,0.000000,0.250000,0,0);}
.m2c_c00272{transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);}
.ma0_c00272{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.md_c00272{transform:matrix(0.276607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276607,0.000000,0.000000,0.250000,0,0);}
.ma3_c00272{transform:matrix(0.277767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277767,0.000000,0.000000,0.250000,0,0);}
.m87_c00272{transform:matrix(0.278174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278174,0.000000,0.000000,0.250000,0,0);}
.m31_c00272{transform:matrix(0.278331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278331,0.000000,0.000000,0.250000,0,0);}
.m23_c00272{transform:matrix(0.278681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278681,0.000000,0.000000,0.250000,0,0);}
.m26_c00272{transform:matrix(0.279196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279196,0.000000,0.000000,0.250000,0,0);}
.m72_c00272{transform:matrix(0.279350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279350,0.000000,0.000000,0.250000,0,0);}
.m10_c00272{transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);}
.m61_c00272{transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);}
.m11_c00272{transform:matrix(0.279482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279482,0.000000,0.000000,0.250000,0,0);}
.m51_c00272{transform:matrix(0.279864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279864,0.000000,0.000000,0.250000,0,0);}
.m17_c00272{transform:matrix(0.279939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279939,0.000000,0.000000,0.250000,0,0);}
.m4b_c00272{transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);}
.m22_c00272{transform:matrix(0.280434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280434,0.000000,0.000000,0.250000,0,0);}
.m1_c00272{transform:matrix(0.280832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280832,0.000000,0.000000,0.250000,0,0);}
.m16_c00272{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.mf_c00272{transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);}
.m62_c00272{transform:matrix(0.282140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282140,0.000000,0.000000,0.250000,0,0);}
.m6b_c00272{transform:matrix(0.282230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282230,0.000000,0.000000,0.250000,0,0);}
.ma8_c00272{transform:matrix(0.283223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283223,0.000000,0.000000,0.250000,0,0);}
.ma7_c00272{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m9e_c00272{transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);}
.m13_c00272{transform:matrix(0.284092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284092,0.000000,0.000000,0.250000,0,0);}
.m73_c00272{transform:matrix(0.284607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284607,0.000000,0.000000,0.250000,0,0);}
.m1c_c00272{transform:matrix(0.284752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284752,0.000000,0.000000,0.250000,0,0);}
.m70_c00272{transform:matrix(0.284938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284938,0.000000,0.000000,0.250000,0,0);}
.m7_c00272{transform:matrix(0.284989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284989,0.000000,0.000000,0.250000,0,0);}
.m67_c00272{transform:matrix(0.285047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285047,0.000000,0.000000,0.250000,0,0);}
.m78_c00272{transform:matrix(0.285061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285061,0.000000,0.000000,0.250000,0,0);}
.m66_c00272{transform:matrix(0.285386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285386,0.000000,0.000000,0.250000,0,0);}
.maa_c00272{transform:matrix(0.285608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285608,0.000000,0.000000,0.250000,0,0);}
.m56_c00272{transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);}
.m35_c00272{transform:matrix(0.285694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285694,0.000000,0.000000,0.250000,0,0);}
.m8f_c00272{transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);}
.m41_c00272{transform:matrix(0.285890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285890,0.000000,0.000000,0.250000,0,0);}
.ma6_c00272{transform:matrix(0.286950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286950,0.000000,0.000000,0.250000,0,0);}
.m75_c00272{transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);}
.mad_c00272{transform:matrix(0.287688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287688,0.000000,0.000000,0.250000,0,0);}
.m8e_c00272{transform:matrix(0.288778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288778,0.000000,0.000000,0.250000,0,0);}
.m9b_c00272{transform:matrix(0.289054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289054,0.000000,0.000000,0.250000,0,0);}
.m8b_c00272{transform:matrix(0.289100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289100,0.000000,0.000000,0.250000,0,0);}
.m4f_c00272{transform:matrix(0.289281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289281,0.000000,0.000000,0.250000,0,0);}
.m85_c00272{transform:matrix(0.289582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289582,0.000000,0.000000,0.250000,0,0);}
.m54_c00272{transform:matrix(0.290312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290312,0.000000,0.000000,0.250000,0,0);}
.m20_c00272{transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);}
.m7e_c00272{transform:matrix(0.290818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290818,0.000000,0.000000,0.250000,0,0);}
.m21_c00272{transform:matrix(0.291164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291164,0.000000,0.000000,0.250000,0,0);}
.m0_c00272{transform:matrix(0.291578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291578,0.000000,0.000000,0.250000,0,0);}
.m27_c00272{transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);}
.m80_c00272{transform:matrix(0.292277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292277,0.000000,0.000000,0.250000,0,0);}
.m68_c00272{transform:matrix(0.293647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293647,0.000000,0.000000,0.250000,0,0);}
.m65_c00272{transform:matrix(0.294300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294300,0.000000,0.000000,0.250000,0,0);}
.m30_c00272{transform:matrix(0.294408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294408,0.000000,0.000000,0.250000,0,0);}
.m60_c00272{transform:matrix(0.294614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294614,0.000000,0.000000,0.250000,0,0);}
.m74_c00272{transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);}
.m34_c00272{transform:matrix(0.295636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295636,0.000000,0.000000,0.250000,0,0);}
.m98_c00272{transform:matrix(0.295938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295938,0.000000,0.000000,0.250000,0,0);}
.m7f_c00272{transform:matrix(0.296089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296089,0.000000,0.000000,0.250000,0,0);}
.m5_c00272{transform:matrix(0.296443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296443,0.000000,0.000000,0.250000,0,0);}
.m48_c00272{transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);}
.m9f_c00272{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m71_c00272{transform:matrix(0.297439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297439,0.000000,0.000000,0.250000,0,0);}
.m1a_c00272{transform:matrix(0.298777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298777,0.000000,0.000000,0.250000,0,0);}
.m92_c00272{transform:matrix(0.298797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298797,0.000000,0.000000,0.250000,0,0);}
.m2a_c00272{transform:matrix(0.299049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299049,0.000000,0.000000,0.250000,0,0);}
.mb0_c00272{transform:matrix(0.299938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299938,0.000000,0.000000,0.250000,0,0);}
.m3e_c00272{transform:matrix(0.300246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300246,0.000000,0.000000,0.250000,0,0);}
.m52_c00272{transform:matrix(0.300319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300319,0.000000,0.000000,0.250000,0,0);}
.m53_c00272{transform:matrix(0.300523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300523,0.000000,0.000000,0.250000,0,0);}
.m38_c00272{transform:matrix(0.300741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300741,0.000000,0.000000,0.250000,0,0);}
.m29_c00272{transform:matrix(0.300854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300854,0.000000,0.000000,0.250000,0,0);}
.mab_c00272{transform:matrix(0.301037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301037,0.000000,0.000000,0.250000,0,0);}
.m37_c00272{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m36_c00272{transform:matrix(0.303158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303158,0.000000,0.000000,0.250000,0,0);}
.m83_c00272{transform:matrix(0.303915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303915,0.000000,0.000000,0.250000,0,0);}
.ma4_c00272{transform:matrix(0.304481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304481,0.000000,0.000000,0.250000,0,0);}
.m14_c00272{transform:matrix(0.305036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305036,0.000000,0.000000,0.250000,0,0);}
.m18_c00272{transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);}
.m95_c00272{transform:matrix(0.305624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305624,0.000000,0.000000,0.250000,0,0);}
.mae_c00272{transform:matrix(0.305914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305914,0.000000,0.000000,0.250000,0,0);}
.m77_c00272{transform:matrix(0.306531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306531,0.000000,0.000000,0.250000,0,0);}
.m32_c00272{transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);}
.m3d_c00272{transform:matrix(0.308148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308148,0.000000,0.000000,0.250000,0,0);}
.m6e_c00272{transform:matrix(0.308421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308421,0.000000,0.000000,0.250000,0,0);}
.m6f_c00272{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m91_c00272{transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);}
.m6d_c00272{transform:matrix(0.308789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308789,0.000000,0.000000,0.250000,0,0);}
.m46_c00272{transform:matrix(0.308860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308860,0.000000,0.000000,0.250000,0,0);}
.m2e_c00272{transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);}
.m93_c00272{transform:matrix(0.311181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311181,0.000000,0.000000,0.250000,0,0);}
.m2b_c00272{transform:matrix(0.311771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311771,0.000000,0.000000,0.250000,0,0);}
.m47_c00272{transform:matrix(0.312688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312688,0.000000,0.000000,0.250000,0,0);}
.m55_c00272{transform:matrix(0.313020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313020,0.000000,0.000000,0.250000,0,0);}
.m1b_c00272{transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);}
.m82_c00272{transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);}
.m6c_c00272{transform:matrix(0.314334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314334,0.000000,0.000000,0.250000,0,0);}
.ma1_c00272{transform:matrix(0.314876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314876,0.000000,0.000000,0.250000,0,0);}
.m3c_c00272{transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);}
.m81_c00272{transform:matrix(0.316480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316480,0.000000,0.000000,0.250000,0,0);}
.m6a_c00272{transform:matrix(0.317707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317707,0.000000,0.000000,0.250000,0,0);}
.m57_c00272{transform:matrix(0.318696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318696,0.000000,0.000000,0.250000,0,0);}
.mb_c00272{transform:matrix(0.319290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319290,0.000000,0.000000,0.250000,0,0);}
.m8d_c00272{transform:matrix(0.321773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321773,0.000000,0.000000,0.250000,0,0);}
.m86_c00272{transform:matrix(0.323701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323701,0.000000,0.000000,0.250000,0,0);}
.m33_c00272{transform:matrix(0.324427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324427,0.000000,0.000000,0.250000,0,0);}
.m19_c00272{transform:matrix(0.325525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325525,0.000000,0.000000,0.250000,0,0);}
.m45_c00272{transform:matrix(0.326099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326099,0.000000,0.000000,0.250000,0,0);}
.m3_c00272{transform:matrix(0.328786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328786,0.000000,0.000000,0.250000,0,0);}
.m1e_c00272{transform:matrix(0.329390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329390,0.000000,0.000000,0.250000,0,0);}
.m7b_c00272{transform:matrix(0.329539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329539,0.000000,0.000000,0.250000,0,0);}
.m4d_c00272{transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);}
.m76_c00272{transform:matrix(0.331496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331496,0.000000,0.000000,0.250000,0,0);}
.m7a_c00272{transform:matrix(0.331794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331794,0.000000,0.000000,0.250000,0,0);}
.ma5_c00272{transform:matrix(0.332552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332552,0.000000,0.000000,0.250000,0,0);}
.m4_c00272{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m94_c00272{transform:matrix(0.335394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335394,0.000000,0.000000,0.250000,0,0);}
.m3a_c00272{transform:matrix(0.335482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335482,0.000000,0.000000,0.250000,0,0);}
.m4e_c00272{transform:matrix(0.337209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337209,0.000000,0.000000,0.250000,0,0);}
.m3b_c00272{transform:matrix(0.337910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337910,0.000000,0.000000,0.250000,0,0);}
.ma_c00272{transform:matrix(0.340015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340015,0.000000,0.000000,0.250000,0,0);}
.m58_c00272{transform:matrix(0.342184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342184,0.000000,0.000000,0.250000,0,0);}
.m64_c00272{transform:matrix(0.342688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342688,0.000000,0.000000,0.250000,0,0);}
.m5b_c00272{transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);}
.m97_c00272{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.ma9_c00272{transform:matrix(0.349720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349720,0.000000,0.000000,0.250000,0,0);}
.m90_c00272{transform:matrix(0.350956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350956,0.000000,0.000000,0.250000,0,0);}
.m9_c00272{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m43_c00272{transform:matrix(0.359212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359212,0.000000,0.000000,0.250000,0,0);}
.m42_c00272{transform:matrix(0.360514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360514,0.000000,0.000000,0.250000,0,0);}
.m40_c00272{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.me_c00272{transform:matrix(0.365181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365181,0.000000,0.000000,0.250000,0,0);}
.m99_c00272{transform:matrix(0.367117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367117,0.000000,0.000000,0.250000,0,0);}
.m5d_c00272{transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);}
.m49_c00272{transform:matrix(0.400876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400876,0.000000,0.000000,0.250000,0,0);}
.v0_c00272{vertical-align:0.000000px;}
.ls6_c00272{letter-spacing:-2.744280px;}
.ls11_c00272{letter-spacing:-2.375762px;}
.lsf_c00272{letter-spacing:-1.544638px;}
.lsd_c00272{letter-spacing:-0.180338px;}
.ls5_c00272{letter-spacing:0.000000px;}
.ls7_c00272{letter-spacing:0.070567px;}
.lsc_c00272{letter-spacing:0.258746px;}
.ls0_c00272{letter-spacing:1.685772px;}
.ls9_c00272{letter-spacing:1.960200px;}
.ls8_c00272{letter-spacing:2.132698px;}
.ls2_c00272{letter-spacing:2.211264px;}
.ls10_c00272{letter-spacing:3.112798px;}
.lsb_c00272{letter-spacing:3.167683px;}
.ls13_c00272{letter-spacing:3.366000px;}
.lse_c00272{letter-spacing:3.465000px;}
.lsa_c00272{letter-spacing:3.544200px;}
.ls3_c00272{letter-spacing:3.712500px;}
.ls4_c00272{letter-spacing:3.920400px;}
.ls12_c00272{letter-spacing:4.296610px;}
.ls1_c00272{letter-spacing:9.173340px;}
.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;}
}
.ws1_c00272{word-spacing:-22.769683px;}
.ws0_c00272{word-spacing:-19.602000px;}
.ws3_c00272{word-spacing:-18.057362px;}
.ws2_c00272{word-spacing:-2.039004px;}
.ws4_c00272{word-spacing:0.000000px;}
._c_c00272{margin-left:-14.584284px;}
._7_c00272{margin-left:-11.605176px;}
._f_c00272{margin-left:-6.820308px;}
._b_c00272{margin-left:-4.077216px;}
._5_c00272{width:4.547664px;}
._3_c00272{width:5.802588px;}
._0_c00272{width:7.135128px;}
._1_c00272{width:9.330552px;}
._d_c00272{width:10.740708px;}
._8_c00272{width:11.918016px;}
._4_c00272{width:12.936528px;}
._10_c00272{width:15.680808px;}
._6_c00272{width:28.893744px;}
._a_c00272{width:33.087384px;}
._9_c00272{width:35.048376px;}
._2_c00272{width:38.263104px;}
._e_c00272{width:43.280820px;}
.fc0_c00272{color:transparent;}
.fs5_c00272{font-size:27.720000px;}
.fs8_c00272{font-size:60.192000px;}
.fs7_c00272{font-size:67.320000px;}
.fs3_c00272{font-size:69.300000px;}
.fs2_c00272{font-size:70.884000px;}
.fs0_c00272{font-size:74.250000px;}
.fs1_c00272{font-size:78.408000px;}
.fs6_c00272{font-size:85.932198px;}
.fs4_c00272{font-size:91.872198px;}
.fs9_c00272{font-size:93.456198px;}
.y0_c00272{bottom:0.000000px;}
.y1_c00272{bottom:76.500000px;}
.y19_c00272{bottom:142.471935px;}
.y18_c00272{bottom:237.987135px;}
.y17_c00272{bottom:270.414585px;}
.y16_c00272{bottom:304.277535px;}
.y15_c00272{bottom:318.533535px;}
.y14_c00272{bottom:337.779135px;}
.y13_c00272{bottom:369.855135px;}
.y12_c00272{bottom:401.926185px;}
.y11_c00272{bottom:434.363535px;}
.y10_c00272{bottom:466.795935px;}
.yf_c00272{bottom:484.254585px;}
.ye_c00272{bottom:531.655785px;}
.yd_c00272{bottom:564.805935px;}
.yc_c00272{bottom:597.238335px;}
.yb_c00272{bottom:630.027135px;}
.ya_c00272{bottom:662.459535px;}
.y1a_c00272{bottom:682.061535px;}
.y9_c00272{bottom:725.893785px;}
.y8_c00272{bottom:757.974735px;}
.y7_c00272{bottom:790.763535px;}
.y6_c00272{bottom:823.195935px;}
.y5_c00272{bottom:855.628335px;}
.y4_c00272{bottom:887.699385px;}
.y3_c00272{bottom:920.131785px;}
.y2_c00272{bottom:1079.798985px;}
.h7_c00272{height:28.911094px;}
.h4_c00272{height:69.568770px;}
.h9_c00272{height:70.212656px;}
.h5_c00272{height:72.277734px;}
.h2_c00272{height:72.872314px;}
.h3_c00272{height:76.953164px;}
.h8_c00272{height:86.603543px;}
.h6_c00272{height:90.167538px;}
.ha_c00272{height:97.471894px;}
.h1_c00272{height:1110.000000px;}
.h0_c00272{height:1263.000000px;}
.w1_c00272{width:763.500000px;}
.w0_c00272{width:892.500000px;}
.x0_c00272{left:0.000000px;}
.x1_c00272{left:64.500000px;}
.x3f_c00272{left:68.801100px;}
.x3_c00272{left:70.459350px;}
.x49_c00272{left:79.879200px;}
.x56_c00272{left:89.625750px;}
.x40_c00272{left:90.660300px;}
.x4a_c00272{left:101.104800px;}
.xe_c00272{left:103.020450px;}
.x41_c00272{left:112.281900px;}
.x1b_c00272{left:113.707500px;}
.x1c_c00272{left:123.533250px;}
.x2c_c00272{left:124.750950px;}
.x57_c00272{left:126.117150px;}
.x61_c00272{left:135.769650px;}
.xf_c00272{left:136.908150px;}
.x42_c00272{left:146.060700px;}
.x10_c00272{left:147.902100px;}
.x33_c00272{left:157.005150px;}
.x4_c00272{left:158.079300px;}
.x43_c00272{left:167.523900px;}
.x51_c00272{left:178.884150px;}
.x5_c00272{left:180.517650px;}
.x6b_c00272{left:183.304500px;}
.x37_c00272{left:189.437550px;}
.x2d_c00272{left:191.397750px;}
.x44_c00272{left:199.802850px;}
.x59_c00272{left:201.431400px;}
.x11_c00272{left:202.960950px;}
.x52_c00272{left:210.806700px;}
.x1d_c00272{left:212.237250px;}
.x6d_c00272{left:213.459900px;}
.x12_c00272{left:224.523150px;}
.x67_c00272{left:234.046950px;}
.x38_c00272{left:244.862700px;}
.x13_c00272{left:249.035550px;}
.x34_c00272{left:267.122850px;}
.x74_c00272{left:268.340550px;}
.x6c_c00272{left:277.141650px;}
.x14_c00272{left:278.923650px;}
.x6_c00272{left:280.779900px;}
.x39_c00272{left:289.373100px;}
.x62_c00272{left:300.807600px;}
.x35_c00272{left:311.658000px;}
.x7_c00272{left:313.271700px;}
.x63_c00272{left:323.250900px;}
.x45_c00272{left:333.621150px;}
.x2e_c00272{left:335.026950px;}
.x1e_c00272{left:344.827950px;}
.x28_c00272{left:346.080300px;}
.x3a_c00272{left:355.505100px;}
.x15_c00272{left:357.495000px;}
.x6e_c00272{left:358.806750px;}
.x1f_c00272{left:366.979200px;}
.x24_c00272{left:377.290050px;}
.x6f_c00272{left:378.497850px;}
.x2f_c00272{left:389.432400px;}
.x5a_c00272{left:399.990750px;}
.x4b_c00272{left:411.256950px;}
.x8_c00272{left:412.370700px;}
.x3b_c00272{left:421.082700px;}
.x36_c00272{left:422.681550px;}
.x20_c00272{left:432.532050px;}
.x30_c00272{left:434.096250px;}
.x53_c00272{left:444.402150px;}
.x4c_c00272{left:454.425900px;}
.x5c_c00272{left:455.826750px;}
.x25_c00272{left:465.989100px;}
.x21_c00272{left:467.612700px;}
.x70_c00272{left:477.235500px;}
.x9_c00272{left:478.542300px;}
.x54_c00272{left:487.214700px;}
.x16_c00272{left:488.516550px;}
.x58_c00272{left:494.986200px;}
.x5d_c00272{left:500.015400px;}
.x46_c00272{left:509.667900px;}
.x26_c00272{left:511.440000px;}
.x4d_c00272{left:520.889550px;}
.x29_c00272{left:522.052800px;}
.x71_c00272{left:531.730050px;}
.x5e_c00272{left:533.170500px;}
.x47_c00272{left:543.159600px;}
.x64_c00272{left:544.228800px;}
.x3c_c00272{left:554.203050px;}
.x31_c00272{left:555.613800px;}
.x4e_c00272{left:565.593000px;}
.x48_c00272{left:575.403900px;}
.x17_c00272{left:577.027500px;}
.xa_c00272{left:578.433300px;}
.x72_c00272{left:586.100850px;}
.x22_c00272{left:587.952150px;}
.x3d_c00272{left:597.693750px;}
.x23_c00272{left:599.287650px;}
.x18_c00272{left:608.237250px;}
.x5f_c00272{left:609.469800px;}
.xb_c00272{left:610.489500px;}
.x65_c00272{left:611.850750px;}
.x69_c00272{left:618.929250px;}
.x2a_c00272{left:620.859750px;}
.x3e_c00272{left:631.007250px;}
.x55_c00272{left:641.001300px;}
.x19_c00272{left:642.951600px;}
.xc_c00272{left:644.020800px;}
.x66_c00272{left:652.024950px;}
.x5b_c00272{left:653.217900px;}
.x2_c00272{left:654.311850px;}
.x4f_c00272{left:663.672300px;}
.xd_c00272{left:666.063150px;}
.x68_c00272{left:673.770300px;}
.x27_c00272{left:675.210750px;}
.x60_c00272{left:676.968000px;}
.x6a_c00272{left:686.041350px;}
.x1a_c00272{left:687.165000px;}
.x2b_c00272{left:697.817400px;}
.x32_c00272{left:698.906400px;}
.x50_c00272{left:707.083800px;}
.x73_c00272{left:708.539100px;}
.x75_c00272{left:749.594400px;}
@media print{
.v0_c00272{vertical-align:0.000000pt;}
.ls6_c00272{letter-spacing:-2.439360pt;}
.ls11_c00272{letter-spacing:-2.111789pt;}
.lsf_c00272{letter-spacing:-1.373011pt;}
.lsd_c00272{letter-spacing:-0.160301pt;}
.ls5_c00272{letter-spacing:0.000000pt;}
.ls7_c00272{letter-spacing:0.062726pt;}
.lsc_c00272{letter-spacing:0.229997pt;}
.ls0_c00272{letter-spacing:1.498464pt;}
.ls9_c00272{letter-spacing:1.742400pt;}
.ls8_c00272{letter-spacing:1.895731pt;}
.ls2_c00272{letter-spacing:1.965568pt;}
.ls10_c00272{letter-spacing:2.766931pt;}
.lsb_c00272{letter-spacing:2.815718pt;}
.ls13_c00272{letter-spacing:2.992000pt;}
.lse_c00272{letter-spacing:3.080000pt;}
.lsa_c00272{letter-spacing:3.150400pt;}
.ls3_c00272{letter-spacing:3.300000pt;}
.ls4_c00272{letter-spacing:3.484800pt;}
.ls12_c00272{letter-spacing:3.819209pt;}
.ls1_c00272{letter-spacing:8.154080pt;}
.ws1_c00272{word-spacing:-20.239718pt;}
.ws0_c00272{word-spacing:-17.424000pt;}
.ws3_c00272{word-spacing:-16.050989pt;}
.ws2_c00272{word-spacing:-1.812448pt;}
.ws4_c00272{word-spacing:0.000000pt;}
._c_c00272{margin-left:-12.963808pt;}
._7_c00272{margin-left:-10.315712pt;}
._f_c00272{margin-left:-6.062496pt;}
._b_c00272{margin-left:-3.624192pt;}
._5_c00272{width:4.042368pt;}
._3_c00272{width:5.157856pt;}
._0_c00272{width:6.342336pt;}
._1_c00272{width:8.293824pt;}
._d_c00272{width:9.547296pt;}
._8_c00272{width:10.593792pt;}
._4_c00272{width:11.499136pt;}
._10_c00272{width:13.938496pt;}
._6_c00272{width:25.683328pt;}
._a_c00272{width:29.411008pt;}
._9_c00272{width:31.154112pt;}
._2_c00272{width:34.011648pt;}
._e_c00272{width:38.471840pt;}
.fs5_c00272{font-size:24.640000pt;}
.fs8_c00272{font-size:53.504000pt;}
.fs7_c00272{font-size:59.840000pt;}
.fs3_c00272{font-size:61.600000pt;}
.fs2_c00272{font-size:63.008000pt;}
.fs0_c00272{font-size:66.000000pt;}
.fs1_c00272{font-size:69.696000pt;}
.fs6_c00272{font-size:76.384176pt;}
.fs4_c00272{font-size:81.664176pt;}
.fs9_c00272{font-size:83.072176pt;}
.y0_c00272{bottom:0.000000pt;}
.y1_c00272{bottom:68.000000pt;}
.y19_c00272{bottom:126.641720pt;}
.y18_c00272{bottom:211.544120pt;}
.y17_c00272{bottom:240.368520pt;}
.y16_c00272{bottom:270.468920pt;}
.y15_c00272{bottom:283.140920pt;}
.y14_c00272{bottom:300.248120pt;}
.y13_c00272{bottom:328.760120pt;}
.y12_c00272{bottom:357.267720pt;}
.y11_c00272{bottom:386.100920pt;}
.y10_c00272{bottom:414.929720pt;}
.yf_c00272{bottom:430.448520pt;}
.ye_c00272{bottom:472.582920pt;}
.yd_c00272{bottom:502.049720pt;}
.yc_c00272{bottom:530.878520pt;}
.yb_c00272{bottom:560.024120pt;}
.ya_c00272{bottom:588.852920pt;}
.y1a_c00272{bottom:606.276920pt;}
.y9_c00272{bottom:645.238920pt;}
.y8_c00272{bottom:673.755320pt;}
.y7_c00272{bottom:702.900920pt;}
.y6_c00272{bottom:731.729720pt;}
.y5_c00272{bottom:760.558520pt;}
.y4_c00272{bottom:789.066120pt;}
.y3_c00272{bottom:817.894920pt;}
.y2_c00272{bottom:959.821320pt;}
.h7_c00272{height:25.698750pt;}
.h4_c00272{height:61.838906pt;}
.h9_c00272{height:62.411250pt;}
.h5_c00272{height:64.246875pt;}
.h2_c00272{height:64.775391pt;}
.h3_c00272{height:68.402813pt;}
.h8_c00272{height:76.980927pt;}
.h6_c00272{height:80.148923pt;}
.ha_c00272{height:86.641684pt;}
.h1_c00272{height:986.666667pt;}
.h0_c00272{height:1122.666667pt;}
.w1_c00272{width:678.666667pt;}
.w0_c00272{width:793.333333pt;}
.x0_c00272{left:0.000000pt;}
.x1_c00272{left:57.333333pt;}
.x3f_c00272{left:61.156533pt;}
.x3_c00272{left:62.630533pt;}
.x49_c00272{left:71.003733pt;}
.x56_c00272{left:79.667333pt;}
.x40_c00272{left:80.586933pt;}
.x4a_c00272{left:89.870933pt;}
.xe_c00272{left:91.573733pt;}
.x41_c00272{left:99.806133pt;}
.x1b_c00272{left:101.073333pt;}
.x1c_c00272{left:109.807333pt;}
.x2c_c00272{left:110.889733pt;}
.x57_c00272{left:112.104133pt;}
.x61_c00272{left:120.684133pt;}
.xf_c00272{left:121.696133pt;}
.x42_c00272{left:129.831733pt;}
.x10_c00272{left:131.468533pt;}
.x33_c00272{left:139.560133pt;}
.x4_c00272{left:140.514933pt;}
.x43_c00272{left:148.910133pt;}
.x51_c00272{left:159.008133pt;}
.x5_c00272{left:160.460133pt;}
.x6b_c00272{left:162.937333pt;}
.x37_c00272{left:168.388933pt;}
.x2d_c00272{left:170.131333pt;}
.x44_c00272{left:177.602533pt;}
.x59_c00272{left:179.050133pt;}
.x11_c00272{left:180.409733pt;}
.x52_c00272{left:187.383733pt;}
.x1d_c00272{left:188.655333pt;}
.x6d_c00272{left:189.742133pt;}
.x12_c00272{left:199.576133pt;}
.x67_c00272{left:208.041733pt;}
.x38_c00272{left:217.655733pt;}
.x13_c00272{left:221.364933pt;}
.x34_c00272{left:237.442533pt;}
.x74_c00272{left:238.524933pt;}
.x6c_c00272{left:246.348133pt;}
.x14_c00272{left:247.932133pt;}
.x6_c00272{left:249.582133pt;}
.x39_c00272{left:257.220533pt;}
.x62_c00272{left:267.384533pt;}
.x35_c00272{left:277.029333pt;}
.x7_c00272{left:278.463733pt;}
.x63_c00272{left:287.334133pt;}
.x45_c00272{left:296.552133pt;}
.x2e_c00272{left:297.801733pt;}
.x1e_c00272{left:306.513733pt;}
.x28_c00272{left:307.626933pt;}
.x3a_c00272{left:316.004533pt;}
.x15_c00272{left:317.773333pt;}
.x6e_c00272{left:318.939333pt;}
.x1f_c00272{left:326.203733pt;}
.x24_c00272{left:335.368933pt;}
.x6f_c00272{left:336.442533pt;}
.x2f_c00272{left:346.162133pt;}
.x5a_c00272{left:355.547333pt;}
.x4b_c00272{left:365.561733pt;}
.x8_c00272{left:366.551733pt;}
.x3b_c00272{left:374.295733pt;}
.x36_c00272{left:375.716933pt;}
.x20_c00272{left:384.472933pt;}
.x30_c00272{left:385.863333pt;}
.x53_c00272{left:395.024133pt;}
.x4c_c00272{left:403.934133pt;}
.x5c_c00272{left:405.179333pt;}
.x25_c00272{left:414.212533pt;}
.x21_c00272{left:415.655733pt;}
.x70_c00272{left:424.209333pt;}
.x9_c00272{left:425.370933pt;}
.x54_c00272{left:433.079733pt;}
.x16_c00272{left:434.236933pt;}
.x58_c00272{left:439.987733pt;}
.x5d_c00272{left:444.458133pt;}
.x46_c00272{left:453.038133pt;}
.x26_c00272{left:454.613333pt;}
.x4d_c00272{left:463.012933pt;}
.x29_c00272{left:464.046933pt;}
.x71_c00272{left:472.648933pt;}
.x5e_c00272{left:473.929333pt;}
.x47_c00272{left:482.808533pt;}
.x64_c00272{left:483.758933pt;}
.x3c_c00272{left:492.624933pt;}
.x31_c00272{left:493.878933pt;}
.x4e_c00272{left:502.749333pt;}
.x48_c00272{left:511.470133pt;}
.x17_c00272{left:512.913333pt;}
.xa_c00272{left:514.162933pt;}
.x72_c00272{left:520.978533pt;}
.x22_c00272{left:522.624133pt;}
.x3d_c00272{left:531.283333pt;}
.x23_c00272{left:532.700133pt;}
.x18_c00272{left:540.655333pt;}
.x5f_c00272{left:541.750933pt;}
.xb_c00272{left:542.657333pt;}
.x65_c00272{left:543.867333pt;}
.x69_c00272{left:550.159333pt;}
.x2a_c00272{left:551.875333pt;}
.x3e_c00272{left:560.895333pt;}
.x55_c00272{left:569.778933pt;}
.x19_c00272{left:571.512533pt;}
.xc_c00272{left:572.462933pt;}
.x66_c00272{left:579.577733pt;}
.x5b_c00272{left:580.638133pt;}
.x2_c00272{left:581.610533pt;}
.x4f_c00272{left:589.930933pt;}
.xd_c00272{left:592.056133pt;}
.x68_c00272{left:598.906933pt;}
.x27_c00272{left:600.187333pt;}
.x60_c00272{left:601.749333pt;}
.x6a_c00272{left:609.814533pt;}
.x1a_c00272{left:610.813333pt;}
.x2b_c00272{left:620.282133pt;}
.x32_c00272{left:621.250133pt;}
.x50_c00272{left:628.518933pt;}
.x73_c00272{left:629.812533pt;}
.x75_c00272{left:666.306133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ab08e270475babc4061af60a.woff2')format("woff");}.ff1_c00273{font-family:ff1_c00273;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00273;src:url('chunks/assets/font_5189b66ec40e9a8638c35e34.woff2')format("woff");}.ff2_c00273{font-family:ff2_c00273;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00273;src:url('chunks/assets/font_402b4c8a71fee70f34b20924.woff2')format("woff");}.ff3_c00273{font-family:ff3_c00273;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00273;src:url('chunks/assets/font_013b09fbcaa74fee975d3df8.woff2')format("woff");}.ff4_c00273{font-family:ff4_c00273;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m25_c00273{transform:matrix(0.118055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118055,0.000000,0.000000,0.250000,0,0);}
.m27_c00273{transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);}
.m24_c00273{transform:matrix(0.197917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197917,0.000000,0.000000,0.250000,0,0);}
.m26_c00273{transform:matrix(0.204167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204167,0.000000,0.000000,0.250000,0,0);}
.m52_c00273{transform:matrix(0.223809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223809,0.000000,0.000000,0.250000,0,0);}
.m3b_c00273{transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);}
.m7c_c00273{transform:matrix(0.247349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247349,0.000000,0.000000,0.250000,0,0);}
.m2_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);}
.m64_c00273{transform:matrix(0.251231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251231,0.000000,0.000000,0.250000,0,0);}
.m37_c00273{transform:matrix(0.251694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251694,0.000000,0.000000,0.250000,0,0);}
.m45_c00273{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.m96_c00273{transform:matrix(0.254300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254300,0.000000,0.000000,0.250000,0,0);}
.mab_c00273{transform:matrix(0.254434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254434,0.000000,0.000000,0.250000,0,0);}
.mb7_c00273{transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);}
.mb9_c00273{transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);}
.m87_c00273{transform:matrix(0.257106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257106,0.000000,0.000000,0.250000,0,0);}
.m4b_c00273{transform:matrix(0.259028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259028,0.000000,0.000000,0.250000,0,0);}
.m89_c00273{transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);}
.ma6_c00273{transform:matrix(0.259662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259662,0.000000,0.000000,0.250000,0,0);}
.m7d_c00273{transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);}
.me_c00273{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.ma7_c00273{transform:matrix(0.261222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261222,0.000000,0.000000,0.250000,0,0);}
.mbb_c00273{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.m15_c00273{transform:matrix(0.262649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262649,0.000000,0.000000,0.250000,0,0);}
.m3_c00273{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.mc2_c00273{transform:matrix(0.263460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263460,0.000000,0.000000,0.250000,0,0);}
.m28_c00273{transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);}
.m3a_c00273{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m95_c00273{transform:matrix(0.265972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265972,0.000000,0.000000,0.250000,0,0);}
.m49_c00273{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m8b_c00273{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.m1b_c00273{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.mca_c00273{transform:matrix(0.267925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267925,0.000000,0.000000,0.250000,0,0);}
.mb8_c00273{transform:matrix(0.270459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270459,0.000000,0.000000,0.250000,0,0);}
.mb6_c00273{transform:matrix(0.270836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270836,0.000000,0.000000,0.250000,0,0);}
.m76_c00273{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m5a_c00273{transform:matrix(0.271467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271467,0.000000,0.000000,0.250000,0,0);}
.m3c_c00273{transform:matrix(0.271706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271706,0.000000,0.000000,0.250000,0,0);}
.m32_c00273{transform:matrix(0.272153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272153,0.000000,0.000000,0.250000,0,0);}
.m5_c00273{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m3d_c00273{transform:matrix(0.272570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272570,0.000000,0.000000,0.250000,0,0);}
.mb4_c00273{transform:matrix(0.272943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272943,0.000000,0.000000,0.250000,0,0);}
.m21_c00273{transform:matrix(0.273113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273113,0.000000,0.000000,0.250000,0,0);}
.m2a_c00273{transform:matrix(0.273582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273582,0.000000,0.000000,0.250000,0,0);}
.m9d_c00273{transform:matrix(0.274360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274360,0.000000,0.000000,0.250000,0,0);}
.mc1_c00273{transform:matrix(0.275170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275170,0.000000,0.000000,0.250000,0,0);}
.m82_c00273{transform:matrix(0.275573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275573,0.000000,0.000000,0.250000,0,0);}
.m3e_c00273{transform:matrix(0.275733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275733,0.000000,0.000000,0.250000,0,0);}
.m1c_c00273{transform:matrix(0.276607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276607,0.000000,0.000000,0.250000,0,0);}
.m4e_c00273{transform:matrix(0.276671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276671,0.000000,0.000000,0.250000,0,0);}
.m7e_c00273{transform:matrix(0.277016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277016,0.000000,0.000000,0.250000,0,0);}
.m17_c00273{transform:matrix(0.277164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277164,0.000000,0.000000,0.250000,0,0);}
.m40_c00273{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m99_c00273{transform:matrix(0.277352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277352,0.000000,0.000000,0.250000,0,0);}
.m46_c00273{transform:matrix(0.277360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277360,0.000000,0.000000,0.250000,0,0);}
.m19_c00273{transform:matrix(0.277623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277623,0.000000,0.000000,0.250000,0,0);}
.m4d_c00273{transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);}
.m1a_c00273{transform:matrix(0.277895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277895,0.000000,0.000000,0.250000,0,0);}
.m31_c00273{transform:matrix(0.277905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277905,0.000000,0.000000,0.250000,0,0);}
.m18_c00273{transform:matrix(0.278093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278093,0.000000,0.000000,0.250000,0,0);}
.m74_c00273{transform:matrix(0.278148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278148,0.000000,0.000000,0.250000,0,0);}
.m61_c00273{transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);}
.ma5_c00273{transform:matrix(0.279732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279732,0.000000,0.000000,0.250000,0,0);}
.m22_c00273{transform:matrix(0.279864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279864,0.000000,0.000000,0.250000,0,0);}
.m93_c00273{transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);}
.m2d_c00273{transform:matrix(0.280107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280107,0.000000,0.000000,0.250000,0,0);}
.ma8_c00273{transform:matrix(0.281349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281349,0.000000,0.000000,0.250000,0,0);}
.mc6_c00273{transform:matrix(0.281499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281499,0.000000,0.000000,0.250000,0,0);}
.m75_c00273{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.mb2_c00273{transform:matrix(0.281726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281726,0.000000,0.000000,0.250000,0,0);}
.m54_c00273{transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);}
.m42_c00273{transform:matrix(0.281840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281840,0.000000,0.000000,0.250000,0,0);}
.m68_c00273{transform:matrix(0.281854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281854,0.000000,0.000000,0.250000,0,0);}
.m9_c00273{transform:matrix(0.281895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281895,0.000000,0.000000,0.250000,0,0);}
.m9a_c00273{transform:matrix(0.281943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281943,0.000000,0.000000,0.250000,0,0);}
.m20_c00273{transform:matrix(0.282003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282003,0.000000,0.000000,0.250000,0,0);}
.m9b_c00273{transform:matrix(0.282230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282230,0.000000,0.000000,0.250000,0,0);}
.ma2_c00273{transform:matrix(0.282254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282254,0.000000,0.000000,0.250000,0,0);}
.m6a_c00273{transform:matrix(0.282634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282634,0.000000,0.000000,0.250000,0,0);}
.mcc_c00273{transform:matrix(0.282669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282669,0.000000,0.000000,0.250000,0,0);}
.m5d_c00273{transform:matrix(0.283223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283223,0.000000,0.000000,0.250000,0,0);}
.m30_c00273{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m2c_c00273{transform:matrix(0.283852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283852,0.000000,0.000000,0.250000,0,0);}
.m10_c00273{transform:matrix(0.283939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283939,0.000000,0.000000,0.250000,0,0);}
.m59_c00273{transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);}
.ma0_c00273{transform:matrix(0.284041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284041,0.000000,0.000000,0.250000,0,0);}
.m1e_c00273{transform:matrix(0.284301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284301,0.000000,0.000000,0.250000,0,0);}
.mc7_c00273{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m35_c00273{transform:matrix(0.284520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284520,0.000000,0.000000,0.250000,0,0);}
.m73_c00273{transform:matrix(0.285589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285589,0.000000,0.000000,0.250000,0,0);}
.m8c_c00273{transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);}
.m6f_c00273{transform:matrix(0.285753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285753,0.000000,0.000000,0.250000,0,0);}
.ma_c00273{transform:matrix(0.286402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286402,0.000000,0.000000,0.250000,0,0);}
.m51_c00273{transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);}
.m47_c00273{transform:matrix(0.287254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287254,0.000000,0.000000,0.250000,0,0);}
.m33_c00273{transform:matrix(0.287575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287575,0.000000,0.000000,0.250000,0,0);}
.m56_c00273{transform:matrix(0.288005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288005,0.000000,0.000000,0.250000,0,0);}
.m79_c00273{transform:matrix(0.288254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288254,0.000000,0.000000,0.250000,0,0);}
.m50_c00273{transform:matrix(0.291185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291185,0.000000,0.000000,0.250000,0,0);}
.m6c_c00273{transform:matrix(0.291650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291650,0.000000,0.000000,0.250000,0,0);}
.mc_c00273{transform:matrix(0.291699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291699,0.000000,0.000000,0.250000,0,0);}
.m83_c00273{transform:matrix(0.291850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291850,0.000000,0.000000,0.250000,0,0);}
.m1d_c00273{transform:matrix(0.291857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291857,0.000000,0.000000,0.250000,0,0);}
.m92_c00273{transform:matrix(0.291966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291966,0.000000,0.000000,0.250000,0,0);}
.m53_c00273{transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);}
.m5b_c00273{transform:matrix(0.292340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292340,0.000000,0.000000,0.250000,0,0);}
.mc4_c00273{transform:matrix(0.293104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293104,0.000000,0.000000,0.250000,0,0);}
.m58_c00273{transform:matrix(0.293394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293394,0.000000,0.000000,0.250000,0,0);}
.m84_c00273{transform:matrix(0.293864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293864,0.000000,0.000000,0.250000,0,0);}
.m9f_c00273{transform:matrix(0.294614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294614,0.000000,0.000000,0.250000,0,0);}
.m6e_c00273{transform:matrix(0.294670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294670,0.000000,0.000000,0.250000,0,0);}
.m0_c00273{transform:matrix(0.294813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294813,0.000000,0.000000,0.250000,0,0);}
.m7f_c00273{transform:matrix(0.295015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295015,0.000000,0.000000,0.250000,0,0);}
.m98_c00273{transform:matrix(0.295076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295076,0.000000,0.000000,0.250000,0,0);}
.mbf_c00273{transform:matrix(0.295098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295098,0.000000,0.000000,0.250000,0,0);}
.m66_c00273{transform:matrix(0.296146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296146,0.000000,0.000000,0.250000,0,0);}
.m90_c00273{transform:matrix(0.296280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296280,0.000000,0.000000,0.250000,0,0);}
.mc8_c00273{transform:matrix(0.296313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296313,0.000000,0.000000,0.250000,0,0);}
.m16_c00273{transform:matrix(0.296777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296777,0.000000,0.000000,0.250000,0,0);}
.mc3_c00273{transform:matrix(0.297049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297049,0.000000,0.000000,0.250000,0,0);}
.mac_c00273{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m5e_c00273{transform:matrix(0.297107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297107,0.000000,0.000000,0.250000,0,0);}
.m44_c00273{transform:matrix(0.298170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298170,0.000000,0.000000,0.250000,0,0);}
.m39_c00273{transform:matrix(0.298665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298665,0.000000,0.000000,0.250000,0,0);}
.m41_c00273{transform:matrix(0.298737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298737,0.000000,0.000000,0.250000,0,0);}
.m62_c00273{transform:matrix(0.298886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298886,0.000000,0.000000,0.250000,0,0);}
.m43_c00273{transform:matrix(0.299124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299124,0.000000,0.000000,0.250000,0,0);}
.mb5_c00273{transform:matrix(0.299163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299163,0.000000,0.000000,0.250000,0,0);}
.mc0_c00273{transform:matrix(0.299719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299719,0.000000,0.000000,0.250000,0,0);}
.m57_c00273{transform:matrix(0.299809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299809,0.000000,0.000000,0.250000,0,0);}
.m8f_c00273{transform:matrix(0.299961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299961,0.000000,0.000000,0.250000,0,0);}
.m48_c00273{transform:matrix(0.301631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301631,0.000000,0.000000,0.250000,0,0);}
.mbc_c00273{transform:matrix(0.301943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301943,0.000000,0.000000,0.250000,0,0);}
.maf_c00273{transform:matrix(0.302181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302181,0.000000,0.000000,0.250000,0,0);}
.mbd_c00273{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m65_c00273{transform:matrix(0.302732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302732,0.000000,0.000000,0.250000,0,0);}
.m78_c00273{transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);}
.m4a_c00273{transform:matrix(0.303100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303100,0.000000,0.000000,0.250000,0,0);}
.maa_c00273{transform:matrix(0.303142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303142,0.000000,0.000000,0.250000,0,0);}
.m60_c00273{transform:matrix(0.303198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303198,0.000000,0.000000,0.250000,0,0);}
.m4_c00273{transform:matrix(0.303649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303649,0.000000,0.000000,0.250000,0,0);}
.m34_c00273{transform:matrix(0.304150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304150,0.000000,0.000000,0.250000,0,0);}
.m71_c00273{transform:matrix(0.304209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304209,0.000000,0.000000,0.250000,0,0);}
.m70_c00273{transform:matrix(0.304542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304542,0.000000,0.000000,0.250000,0,0);}
.m36_c00273{transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);}
.m8e_c00273{transform:matrix(0.305441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305441,0.000000,0.000000,0.250000,0,0);}
.m67_c00273{transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);}
.m8d_c00273{transform:matrix(0.306784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306784,0.000000,0.000000,0.250000,0,0);}
.mf_c00273{transform:matrix(0.306854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306854,0.000000,0.000000,0.250000,0,0);}
.ma4_c00273{transform:matrix(0.307066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307066,0.000000,0.000000,0.250000,0,0);}
.m2f_c00273{transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);}
.m1f_c00273{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m38_c00273{transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);}
.m13_c00273{transform:matrix(0.309184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309184,0.000000,0.000000,0.250000,0,0);}
.mcb_c00273{transform:matrix(0.309309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309309,0.000000,0.000000,0.250000,0,0);}
.mb1_c00273{transform:matrix(0.310770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310770,0.000000,0.000000,0.250000,0,0);}
.md_c00273{transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);}
.m86_c00273{transform:matrix(0.311867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311867,0.000000,0.000000,0.250000,0,0);}
.m80_c00273{transform:matrix(0.311932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311932,0.000000,0.000000,0.250000,0,0);}
.m88_c00273{transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);}
.m2b_c00273{transform:matrix(0.312047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312047,0.000000,0.000000,0.250000,0,0);}
.mc9_c00273{transform:matrix(0.312163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312163,0.000000,0.000000,0.250000,0,0);}
.mad_c00273{transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);}
.ma3_c00273{transform:matrix(0.315717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315717,0.000000,0.000000,0.250000,0,0);}
.ma1_c00273{transform:matrix(0.317925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317925,0.000000,0.000000,0.250000,0,0);}
.m94_c00273{transform:matrix(0.318092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318092,0.000000,0.000000,0.250000,0,0);}
.mcd_c00273{transform:matrix(0.318157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318157,0.000000,0.000000,0.250000,0,0);}
.mb3_c00273{transform:matrix(0.320303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320303,0.000000,0.000000,0.250000,0,0);}
.m7a_c00273{transform:matrix(0.322569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322569,0.000000,0.000000,0.250000,0,0);}
.mbe_c00273{transform:matrix(0.323201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323201,0.000000,0.000000,0.250000,0,0);}
.m2e_c00273{transform:matrix(0.323503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323503,0.000000,0.000000,0.250000,0,0);}
.m4f_c00273{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.m91_c00273{transform:matrix(0.324456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324456,0.000000,0.000000,0.250000,0,0);}
.m6b_c00273{transform:matrix(0.324980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324980,0.000000,0.000000,0.250000,0,0);}
.m6d_c00273{transform:matrix(0.326099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326099,0.000000,0.000000,0.250000,0,0);}
.m5c_c00273{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m5f_c00273{transform:matrix(0.328108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328108,0.000000,0.000000,0.250000,0,0);}
.m3f_c00273{transform:matrix(0.330177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330177,0.000000,0.000000,0.250000,0,0);}
.m29_c00273{transform:matrix(0.331731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331731,0.000000,0.000000,0.250000,0,0);}
.m8_c00273{transform:matrix(0.332426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332426,0.000000,0.000000,0.250000,0,0);}
.m55_c00273{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m8a_c00273{transform:matrix(0.334657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334657,0.000000,0.000000,0.250000,0,0);}
.m7_c00273{transform:matrix(0.337527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337527,0.000000,0.000000,0.250000,0,0);}
.m85_c00273{transform:matrix(0.339419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339419,0.000000,0.000000,0.250000,0,0);}
.m12_c00273{transform:matrix(0.340015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340015,0.000000,0.000000,0.250000,0,0);}
.mb_c00273{transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);}
.m14_c00273{transform:matrix(0.341749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341749,0.000000,0.000000,0.250000,0,0);}
.m1_c00273{transform:matrix(0.346244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346244,0.000000,0.000000,0.250000,0,0);}
.m9e_c00273{transform:matrix(0.346277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346277,0.000000,0.000000,0.250000,0,0);}
.mae_c00273{transform:matrix(0.350730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350730,0.000000,0.000000,0.250000,0,0);}
.m6_c00273{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m23_c00273{transform:matrix(0.357520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357520,0.000000,0.000000,0.250000,0,0);}
.m4c_c00273{transform:matrix(0.360227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360227,0.000000,0.000000,0.250000,0,0);}
.m11_c00273{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m9c_c00273{transform:matrix(0.361926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361926,0.000000,0.000000,0.250000,0,0);}
.m7b_c00273{transform:matrix(0.369566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369566,0.000000,0.000000,0.250000,0,0);}
.ma9_c00273{transform:matrix(0.372071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372071,0.000000,0.000000,0.250000,0,0);}
.mc5_c00273{transform:matrix(0.383224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383224,0.000000,0.000000,0.250000,0,0);}
.mb0_c00273{transform:matrix(0.394115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394115,0.000000,0.000000,0.250000,0,0);}
.m81_c00273{transform:matrix(0.403407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403407,0.000000,0.000000,0.250000,0,0);}
.m77_c00273{transform:matrix(0.409186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409186,0.000000,0.000000,0.250000,0,0);}
.mba_c00273{transform:matrix(0.415468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415468,0.000000,0.000000,0.250000,0,0);}
.m72_c00273{transform:matrix(0.416528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416528,0.000000,0.000000,0.250000,0,0);}
.m69_c00273{transform:matrix(0.423778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423778,0.000000,0.000000,0.250000,0,0);}
.m97_c00273{transform:matrix(0.432348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432348,0.000000,0.000000,0.250000,0,0);}
.m63_c00273{transform:matrix(0.440068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440068,0.000000,0.000000,0.250000,0,0);}
.v0_c00273{vertical-align:0.000000px;}
.lsf_c00273{letter-spacing:-2.744280px;}
.lsa_c00273{letter-spacing:-2.399285px;}
.ls13_c00273{letter-spacing:-0.964418px;}
.ls18_c00273{letter-spacing:-0.329314px;}
.ls8_c00273{letter-spacing:0.000000px;}
.ls1_c00273{letter-spacing:0.407722px;}
.lse_c00273{letter-spacing:0.705672px;}
.ls15_c00273{letter-spacing:2.138400px;}
.ls10_c00273{letter-spacing:2.258150px;}
.ls12_c00273{letter-spacing:2.286900px;}
.ls5_c00273{letter-spacing:2.349864px;}
.ls9_c00273{letter-spacing:2.407126px;}
.ls16_c00273{letter-spacing:2.579623px;}
.ls4_c00273{letter-spacing:2.610986px;}
.ls0_c00273{letter-spacing:3.112798px;}
.ls14_c00273{letter-spacing:3.128479px;}
.lsd_c00273{letter-spacing:3.191206px;}
.lsb_c00273{letter-spacing:3.276900px;}
.ls11_c00273{letter-spacing:3.559723px;}
.ls17_c00273{letter-spacing:3.693017px;}
.ls6_c00273{letter-spacing:3.702610px;}
.ls19_c00273{letter-spacing:3.722400px;}
.ls2_c00273{letter-spacing:3.779266px;}
.ls7_c00273{letter-spacing:3.920400px;}
.ls1a_c00273{letter-spacing:4.059000px;}
.ls3_c00273{letter-spacing:7.997616px;}
.lsc_c00273{letter-spacing:51.321798px;}
.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;}
}
.ws2_c00273{word-spacing:-23.381266px;}
.ws0_c00273{word-spacing:-22.793206px;}
.ws3_c00273{word-spacing:-22.181623px;}
.ws1_c00273{word-spacing:-19.602000px;}
.ws4_c00273{word-spacing:0.000000px;}
._5_c00273{margin-left:-13.124707px;}
._b_c00273{margin-left:-10.397693px;}
._d_c00273{margin-left:-6.610824px;}
._12_c00273{width:1.567368px;}
._14_c00273{width:4.720954px;}
._8_c00273{width:5.723784px;}
._2_c00273{width:7.284499px;}
._9_c00273{width:8.624880px;}
._c_c00273{width:9.957816px;}
._a_c00273{width:11.034738px;}
._10_c00273{width:13.329360px;}
._6_c00273{width:16.700112px;}
._16_c00273{width:18.819108px;}
._1_c00273{width:20.856528px;}
._e_c00273{width:23.679216px;}
._f_c00273{width:25.090560px;}
._15_c00273{width:26.336930px;}
._0_c00273{width:29.167776px;}
._13_c00273{width:31.127976px;}
._4_c00273{width:33.125400px;}
._3_c00273{width:37.009368px;}
._7_c00273{width:40.850568px;}
._17_c00273{width:42.026688px;}
._11_c00273{width:45.320220px;}
.fc0_c00273{color:transparent;}
.fs5_c00273{font-size:22.572000px;}
.fsd_c00273{font-size:28.314000px;}
.fsf_c00273{font-size:39.600000px;}
.fs6_c00273{font-size:42.768000px;}
.fs4_c00273{font-size:45.738000px;}
.fs3_c00273{font-size:51.321798px;}
.fse_c00273{font-size:60.192000px;}
.fs2_c00273{font-size:65.538000px;}
.fs8_c00273{font-size:72.864000px;}
.fs0_c00273{font-size:74.052198px;}
.fs9_c00273{font-size:74.448000px;}
.fs1_c00273{font-size:78.408000px;}
.fsc_c00273{font-size:81.180000px;}
.fsa_c00273{font-size:81.774000px;}
.fsb_c00273{font-size:86.328000px;}
.fs7_c00273{font-size:91.872198px;}
.y0_c00273{bottom:0.000000px;}
.y1_c00273{bottom:76.500000px;}
.y1e_c00273{bottom:136.051785px;}
.y1d_c00273{bottom:200.560185px;}
.y1c_c00273{bottom:235.492335px;}
.y1b_c00273{bottom:267.924735px;}
.y1a_c00273{bottom:302.851935px;}
.y19_c00273{bottom:336.353535px;}
.y18_c00273{bottom:347.753385px;}
.y17_c00273{bottom:369.498735px;}
.y16_c00273{bottom:401.926185px;}
.y15_c00273{bottom:434.363535px;}
.y13_c00273{bottom:468.216585px;}
.y14_c00273{bottom:474.280335px;}
.y12_c00273{bottom:501.010335px;}
.y10_c00273{bottom:533.428875px;}
.y11_c00273{bottom:533.437785px;}
.yf_c00273{bottom:565.870185px;}
.ye_c00273{bottom:601.510185px;}
.yd_c00273{bottom:633.947535px;}
.yc_c00273{bottom:692.040735px;}
.y20_c00273{bottom:698.812335px;}
.yb_c00273{bottom:699.876585px;}
.ya_c00273{bottom:732.308985px;}
.y9_c00273{bottom:765.454185px;}
.y7_c00273{bottom:797.526225px;}
.y8_c00273{bottom:797.530185px;}
.y6_c00273{bottom:829.967535px;}
.y5_c00273{bottom:862.399935px;}
.y4_c00273{bottom:894.832335px;}
.y3_c00273{bottom:927.259785px;}
.y1f_c00273{bottom:1024.913385px;}
.y2_c00273{bottom:1078.729785px;}
.h7_c00273{height:23.541891px;}
.h10_c00273{height:29.530617px;}
.h5_c00273{height:34.180317px;}
.h8_c00273{height:41.974453px;}
.h6_c00273{height:44.889346px;}
.h11_c00273{height:62.778375px;}
.h4_c00273{height:68.354086px;}
.ha_c00273{height:71.512031px;}
.h2_c00273{height:72.678183px;}
.hb_c00273{height:73.066641px;}
.hd_c00273{height:75.029625px;}
.h3_c00273{height:76.953164px;}
.hf_c00273{height:79.673730px;}
.hc_c00273{height:80.256709px;}
.he_c00273{height:87.002438px;}
.h9_c00273{height:90.167538px;}
.h1_c00273{height:1110.000000px;}
.h0_c00273{height:1263.000000px;}
.w1_c00273{width:763.500000px;}
.w0_c00273{width:892.500000px;}
.x0_c00273{left:0.000000px;}
.x1_c00273{left:64.500000px;}
.x4e_c00273{left:65.830491px;}
.x21_c00273{left:66.895335px;}
.x3_c00273{left:68.682285px;}
.x32_c00273{left:88.408035px;}
.x51_c00273{left:98.753535px;}
.x4_c00273{left:101.233485px;}
.x4a_c00273{left:109.787085px;}
.x12_c00273{left:111.960135px;}
.x44_c00273{left:120.221685px;}
.x33_c00273{left:121.543335px;}
.x5_c00273{left:122.622435px;}
.x57_c00273{left:132.245235px;}
.x6b_c00273{left:133.299585px;}
.x13_c00273{left:143.437185px;}
.x22_c00273{left:146.748735px;}
.x5b_c00273{left:153.624285px;}
.x6_c00273{left:155.361735px;}
.x4f_c00273{left:164.187585px;}
.x34_c00273{left:165.360735px;}
.x70_c00273{left:166.424985px;}
.x60_c00273{left:167.776335px;}
.x52_c00273{left:175.240935px;}
.x23_c00273{left:176.414085px;}
.x58_c00273{left:178.854435px;}
.x19_c00273{left:187.002135px;}
.x24_c00273{left:198.520785px;}
.x67_c00273{left:201.277935px;}
.x1a_c00273{left:209.390985px;}
.x3c_c00273{left:219.013785px;}
.x2d_c00273{left:220.157235px;}
.x42_c00273{left:222.835185px;}
.x25_c00273{left:230.378985px;}
.x2e_c00273{left:242.353035px;}
.x63_c00273{left:243.357885px;}
.x35_c00273{left:252.708435px;}
.x2f_c00273{left:264.385485px;}
.x30_c00273{left:275.508135px;}
.x5c_c00273{left:276.562485px;}
.x1b_c00273{left:279.190935px;}
.x45_c00273{left:286.016985px;}
.x4b_c00273{left:287.610885px;}
.x7_c00273{left:297.248535px;}
.x6c_c00273{left:298.976085px;}
.x14_c00273{left:309.519585px;}
.x1c_c00273{left:319.167135px;}
.x36_c00273{left:329.854185px;}
.x8_c00273{left:331.071885px;}
.x43_c00273{left:332.685585px;}
.x15_c00273{left:341.402535px;}
.x6d_c00273{left:343.214235px;}
.x26_c00273{left:353.059785px;}
.x3d_c00273{left:354.886335px;}
.x9_c00273{left:362.633085px;}
.x16_c00273{left:373.325085px;}
.x37_c00273{left:374.404185px;}
.x59_c00273{left:376.879185px;}
.x27_c00273{left:386.561385px;}
.x3e_c00273{left:396.337635px;}
.x53_c00273{left:397.733535px;}
.x68_c00273{left:399.480885px;}
.xa_c00273{left:407.683035px;}
.x5d_c00273{left:408.776985px;}
.x50_c00273{left:419.369985px;}
.x54_c00273{left:430.116435px;}
.xb_c00273{left:441.239085px;}
.x1d_c00273{left:452.267685px;}
.x38_c00273{left:453.505185px;}
.x28_c00273{left:463.345785px;}
.xc_c00273{left:473.483385px;}
.x1e_c00273{left:483.447735px;}
.x46_c00273{left:485.051535px;}
.x55_c00273{left:495.288135px;}
.x71_c00273{left:498.188835px;}
.x3f_c00273{left:505.920735px;}
.x69_c00273{left:507.984885px;}
.x29_c00273{left:517.498785px;}
.x47_c00273{left:518.558085px;}
.xd_c00273{left:528.076935px;}
.x4c_c00273{left:529.908435px;}
.x39_c00273{left:538.704585px;}
.x17_c00273{left:540.268785px;}
.x40_c00273{left:550.277685px;}
.x48_c00273{left:551.643885px;}
.xe_c00273{left:560.440035px;}
.x4d_c00273{left:561.578535px;}
.x5e_c00273{left:563.127885px;}
.x1f_c00273{left:572.394285px;}
.x6e_c00273{left:575.661285px;}
.x66_c00273{left:578.383785px;}
.x49_c00273{left:582.962535px;}
.x20_c00273{left:584.492085px;}
.x2a_c00273{left:595.352385px;}
.x3a_c00273{left:605.841435px;}
.x61_c00273{left:607.826385px;}
.x5f_c00273{left:617.275935px;}
.xf_c00273{left:627.205635px;}
.x72_c00273{left:628.428285px;}
.x2b_c00273{left:637.853085px;}
.x31_c00273{left:639.387585px;}
.x2_c00273{left:648.253035px;}
.x56_c00273{left:649.540035px;}
.x10_c00273{left:660.390435px;}
.x64_c00273{left:662.142735px;}
.x3b_c00273{left:669.894435px;}
.x41_c00273{left:671.443785px;}
.x6a_c00273{left:672.770385px;}
.x62_c00273{left:674.220735px;}
.x6f_c00273{left:679.873635px;}
.x18_c00273{left:682.338735px;}
.x5a_c00273{left:683.586135px;}
.x11_c00273{left:693.179235px;}
.x65_c00273{left:694.253385px;}
.x73_c00273{left:696.213585px;}
.x2c_c00273{left:704.618685px;}
.x74_c00273{left:705.979935px;}
.x76_c00273{left:746.386785px;}
.x75_c00273{left:748.490535px;}
@media print{
.v0_c00273{vertical-align:0.000000pt;}
.lsf_c00273{letter-spacing:-2.439360pt;}
.lsa_c00273{letter-spacing:-2.132698pt;}
.ls13_c00273{letter-spacing:-0.857261pt;}
.ls18_c00273{letter-spacing:-0.292723pt;}
.ls8_c00273{letter-spacing:0.000000pt;}
.ls1_c00273{letter-spacing:0.362419pt;}
.lse_c00273{letter-spacing:0.627264pt;}
.ls15_c00273{letter-spacing:1.900800pt;}
.ls10_c00273{letter-spacing:2.007245pt;}
.ls12_c00273{letter-spacing:2.032800pt;}
.ls5_c00273{letter-spacing:2.088768pt;}
.ls9_c00273{letter-spacing:2.139667pt;}
.ls16_c00273{letter-spacing:2.292998pt;}
.ls4_c00273{letter-spacing:2.320877pt;}
.ls0_c00273{letter-spacing:2.766931pt;}
.ls14_c00273{letter-spacing:2.780870pt;}
.lsd_c00273{letter-spacing:2.836627pt;}
.lsb_c00273{letter-spacing:2.912800pt;}
.ls11_c00273{letter-spacing:3.164198pt;}
.ls17_c00273{letter-spacing:3.282682pt;}
.ls6_c00273{letter-spacing:3.291209pt;}
.ls19_c00273{letter-spacing:3.308800pt;}
.ls2_c00273{letter-spacing:3.359347pt;}
.ls7_c00273{letter-spacing:3.484800pt;}
.ls1a_c00273{letter-spacing:3.608000pt;}
.ls3_c00273{letter-spacing:7.108992pt;}
.lsc_c00273{letter-spacing:45.619376pt;}
.ws2_c00273{word-spacing:-20.783347pt;}
.ws0_c00273{word-spacing:-20.260627pt;}
.ws3_c00273{word-spacing:-19.716998pt;}
.ws1_c00273{word-spacing:-17.424000pt;}
.ws4_c00273{word-spacing:0.000000pt;}
._5_c00273{margin-left:-11.666406pt;}
._b_c00273{margin-left:-9.242394pt;}
._d_c00273{margin-left:-5.876288pt;}
._12_c00273{width:1.393216pt;}
._14_c00273{width:4.196403pt;}
._8_c00273{width:5.087808pt;}
._2_c00273{width:6.475110pt;}
._9_c00273{width:7.666560pt;}
._c_c00273{width:8.851392pt;}
._a_c00273{width:9.808656pt;}
._10_c00273{width:11.848320pt;}
._6_c00273{width:14.844544pt;}
._16_c00273{width:16.728096pt;}
._1_c00273{width:18.539136pt;}
._e_c00273{width:21.048192pt;}
._f_c00273{width:22.302720pt;}
._15_c00273{width:23.410605pt;}
._0_c00273{width:25.926912pt;}
._13_c00273{width:27.669312pt;}
._4_c00273{width:29.444800pt;}
._3_c00273{width:32.897216pt;}
._7_c00273{width:36.311616pt;}
._17_c00273{width:37.357056pt;}
._11_c00273{width:40.284640pt;}
.fs5_c00273{font-size:20.064000pt;}
.fsd_c00273{font-size:25.168000pt;}
.fsf_c00273{font-size:35.200000pt;}
.fs6_c00273{font-size:38.016000pt;}
.fs4_c00273{font-size:40.656000pt;}
.fs3_c00273{font-size:45.619376pt;}
.fse_c00273{font-size:53.504000pt;}
.fs2_c00273{font-size:58.256000pt;}
.fs8_c00273{font-size:64.768000pt;}
.fs0_c00273{font-size:65.824176pt;}
.fs9_c00273{font-size:66.176000pt;}
.fs1_c00273{font-size:69.696000pt;}
.fsc_c00273{font-size:72.160000pt;}
.fsa_c00273{font-size:72.688000pt;}
.fsb_c00273{font-size:76.736000pt;}
.fs7_c00273{font-size:81.664176pt;}
.y0_c00273{bottom:0.000000pt;}
.y1_c00273{bottom:68.000000pt;}
.y1e_c00273{bottom:120.934920pt;}
.y1d_c00273{bottom:178.275720pt;}
.y1c_c00273{bottom:209.326520pt;}
.y1b_c00273{bottom:238.155320pt;}
.y1a_c00273{bottom:269.201720pt;}
.y19_c00273{bottom:298.980920pt;}
.y18_c00273{bottom:309.114120pt;}
.y17_c00273{bottom:328.443320pt;}
.y16_c00273{bottom:357.267720pt;}
.y15_c00273{bottom:386.100920pt;}
.y13_c00273{bottom:416.192520pt;}
.y14_c00273{bottom:421.582520pt;}
.y12_c00273{bottom:445.342520pt;}
.y10_c00273{bottom:474.159000pt;}
.y11_c00273{bottom:474.166920pt;}
.yf_c00273{bottom:502.995720pt;}
.ye_c00273{bottom:534.675720pt;}
.yd_c00273{bottom:563.508920pt;}
.yc_c00273{bottom:615.147320pt;}
.y20_c00273{bottom:621.166520pt;}
.yb_c00273{bottom:622.112520pt;}
.ya_c00273{bottom:650.941320pt;}
.y9_c00273{bottom:680.403720pt;}
.y7_c00273{bottom:708.912200pt;}
.y8_c00273{bottom:708.915720pt;}
.y6_c00273{bottom:737.748920pt;}
.y5_c00273{bottom:766.577720pt;}
.y4_c00273{bottom:795.406520pt;}
.y3_c00273{bottom:824.230920pt;}
.y1f_c00273{bottom:911.034120pt;}
.y2_c00273{bottom:958.870920pt;}
.h7_c00273{height:20.926125pt;}
.h10_c00273{height:26.249438pt;}
.h5_c00273{height:30.382504pt;}
.h8_c00273{height:37.310625pt;}
.h6_c00273{height:39.901641pt;}
.h11_c00273{height:55.803000pt;}
.h4_c00273{height:60.759188pt;}
.ha_c00273{height:63.566250pt;}
.h2_c00273{height:64.602829pt;}
.hb_c00273{height:64.948125pt;}
.hd_c00273{height:66.693000pt;}
.h3_c00273{height:68.402813pt;}
.hf_c00273{height:70.821094pt;}
.hc_c00273{height:71.339297pt;}
.he_c00273{height:77.335500pt;}
.h9_c00273{height:80.148923pt;}
.h1_c00273{height:986.666667pt;}
.h0_c00273{height:1122.666667pt;}
.w1_c00273{width:678.666667pt;}
.w0_c00273{width:793.333333pt;}
.x0_c00273{left:0.000000pt;}
.x1_c00273{left:57.333333pt;}
.x4e_c00273{left:58.515992pt;}
.x21_c00273{left:59.462520pt;}
.x3_c00273{left:61.050920pt;}
.x32_c00273{left:78.584920pt;}
.x51_c00273{left:87.780920pt;}
.x4_c00273{left:89.985320pt;}
.x4a_c00273{left:97.588520pt;}
.x12_c00273{left:99.520120pt;}
.x44_c00273{left:106.863720pt;}
.x33_c00273{left:108.038520pt;}
.x5_c00273{left:108.997720pt;}
.x57_c00273{left:117.551320pt;}
.x6b_c00273{left:118.488520pt;}
.x13_c00273{left:127.499720pt;}
.x22_c00273{left:130.443320pt;}
.x5b_c00273{left:136.554920pt;}
.x6_c00273{left:138.099320pt;}
.x4f_c00273{left:145.944520pt;}
.x34_c00273{left:146.987320pt;}
.x70_c00273{left:147.933320pt;}
.x60_c00273{left:149.134520pt;}
.x52_c00273{left:155.769720pt;}
.x23_c00273{left:156.812520pt;}
.x58_c00273{left:158.981720pt;}
.x19_c00273{left:166.224120pt;}
.x24_c00273{left:176.462920pt;}
.x67_c00273{left:178.913720pt;}
.x1a_c00273{left:186.125320pt;}
.x3c_c00273{left:194.678920pt;}
.x2d_c00273{left:195.695320pt;}
.x42_c00273{left:198.075720pt;}
.x25_c00273{left:204.781320pt;}
.x2e_c00273{left:215.424920pt;}
.x63_c00273{left:216.318120pt;}
.x35_c00273{left:224.629720pt;}
.x2f_c00273{left:235.009320pt;}
.x30_c00273{left:244.896120pt;}
.x5c_c00273{left:245.833320pt;}
.x1b_c00273{left:248.169720pt;}
.x45_c00273{left:254.237320pt;}
.x4b_c00273{left:255.654120pt;}
.x7_c00273{left:264.220920pt;}
.x6c_c00273{left:265.756520pt;}
.x14_c00273{left:275.128520pt;}
.x1c_c00273{left:283.704120pt;}
.x36_c00273{left:293.203720pt;}
.x8_c00273{left:294.286120pt;}
.x43_c00273{left:295.720520pt;}
.x15_c00273{left:303.468920pt;}
.x6d_c00273{left:305.079320pt;}
.x26_c00273{left:313.830920pt;}
.x3d_c00273{left:315.454520pt;}
.x9_c00273{left:322.340520pt;}
.x16_c00273{left:331.844520pt;}
.x37_c00273{left:332.803720pt;}
.x59_c00273{left:335.003720pt;}
.x27_c00273{left:343.610120pt;}
.x3e_c00273{left:352.300120pt;}
.x53_c00273{left:353.540920pt;}
.x68_c00273{left:355.094120pt;}
.xa_c00273{left:362.384920pt;}
.x5d_c00273{left:363.357320pt;}
.x50_c00273{left:372.773320pt;}
.x54_c00273{left:382.325720pt;}
.xb_c00273{left:392.212520pt;}
.x1d_c00273{left:402.015720pt;}
.x38_c00273{left:403.115720pt;}
.x28_c00273{left:411.862920pt;}
.xc_c00273{left:420.874120pt;}
.x1e_c00273{left:429.731320pt;}
.x46_c00273{left:431.156920pt;}
.x55_c00273{left:440.256120pt;}
.x71_c00273{left:442.834520pt;}
.x3f_c00273{left:449.707320pt;}
.x69_c00273{left:451.542120pt;}
.x29_c00273{left:459.998920pt;}
.x47_c00273{left:460.940520pt;}
.xd_c00273{left:469.401720pt;}
.x4c_c00273{left:471.029720pt;}
.x39_c00273{left:478.848520pt;}
.x17_c00273{left:480.238920pt;}
.x40_c00273{left:489.135720pt;}
.x48_c00273{left:490.350120pt;}
.xe_c00273{left:498.168920pt;}
.x4d_c00273{left:499.180920pt;}
.x5e_c00273{left:500.558120pt;}
.x1f_c00273{left:508.794920pt;}
.x6e_c00273{left:511.698920pt;}
.x66_c00273{left:514.118920pt;}
.x49_c00273{left:518.188920pt;}
.x20_c00273{left:519.548520pt;}
.x2a_c00273{left:529.202120pt;}
.x3a_c00273{left:538.525720pt;}
.x61_c00273{left:540.290120pt;}
.x5f_c00273{left:548.689720pt;}
.xf_c00273{left:557.516120pt;}
.x72_c00273{left:558.602920pt;}
.x2b_c00273{left:566.980520pt;}
.x31_c00273{left:568.344520pt;}
.x2_c00273{left:576.224920pt;}
.x56_c00273{left:577.368920pt;}
.x10_c00273{left:587.013720pt;}
.x64_c00273{left:588.571320pt;}
.x3b_c00273{left:595.461720pt;}
.x41_c00273{left:596.838920pt;}
.x6a_c00273{left:598.018120pt;}
.x62_c00273{left:599.307320pt;}
.x6f_c00273{left:604.332120pt;}
.x18_c00273{left:606.523320pt;}
.x5a_c00273{left:607.632120pt;}
.x11_c00273{left:616.159320pt;}
.x65_c00273{left:617.114120pt;}
.x73_c00273{left:618.856520pt;}
.x2c_c00273{left:626.327720pt;}
.x74_c00273{left:627.537720pt;}
.x76_c00273{left:663.454920pt;}
.x75_c00273{left:665.324920pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_aeb14c2d916d845f6ebbfaa7.woff2')format("woff");}.ff1_c00274{font-family:ff1_c00274;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00274;src:url('chunks/assets/font_960481dafb4458059b0dae5b.woff2')format("woff");}.ff2_c00274{font-family:ff2_c00274;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00274;src:url('chunks/assets/font_544d5b04ec3c3aa106c9d260.woff2')format("woff");}.ff3_c00274{font-family:ff3_c00274;line-height:0.666000;font-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_c00274{transform:matrix(0.202803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202803,0.000000,0.000000,0.250000,0,0);}
.m70_c00274{transform:matrix(0.227167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227167,0.000000,0.000000,0.250000,0,0);}
.m34_c00274{transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);}
.m21_c00274{transform:matrix(0.241511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241511,0.000000,0.000000,0.250000,0,0);}
.mc9_c00274{transform:matrix(0.245605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245605,0.000000,0.000000,0.250000,0,0);}
.m1c_c00274{transform:matrix(0.247349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247349,0.000000,0.000000,0.250000,0,0);}
.m7_c00274{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.mae_c00274{transform:matrix(0.250165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250165,0.000000,0.000000,0.250000,0,0);}
.m2_c00274{transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);}
.m94_c00274{transform:matrix(0.255131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255131,0.000000,0.000000,0.250000,0,0);}
.m7f_c00274{transform:matrix(0.255696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255696,0.000000,0.000000,0.250000,0,0);}
.m3a_c00274{transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);}
.m6f_c00274{transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);}
.m97_c00274{transform:matrix(0.258321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258321,0.000000,0.000000,0.250000,0,0);}
.m6_c00274{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m5_c00274{transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);}
.m69_c00274{transform:matrix(0.259665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259665,0.000000,0.000000,0.250000,0,0);}
.m31_c00274{transform:matrix(0.259791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259791,0.000000,0.000000,0.250000,0,0);}
.m9d_c00274{transform:matrix(0.260442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260442,0.000000,0.000000,0.250000,0,0);}
.m43_c00274{transform:matrix(0.261340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261340,0.000000,0.000000,0.250000,0,0);}
.m10_c00274{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.m35_c00274{transform:matrix(0.263120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263120,0.000000,0.000000,0.250000,0,0);}
.mc_c00274{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m12_c00274{transform:matrix(0.263395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263395,0.000000,0.000000,0.250000,0,0);}
.m5b_c00274{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m6e_c00274{transform:matrix(0.264056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264056,0.000000,0.000000,0.250000,0,0);}
.m77_c00274{transform:matrix(0.265357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265357,0.000000,0.000000,0.250000,0,0);}
.m2b_c00274{transform:matrix(0.265372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265372,0.000000,0.000000,0.250000,0,0);}
.m17_c00274{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.ma1_c00274{transform:matrix(0.266660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266660,0.000000,0.000000,0.250000,0,0);}
.mac_c00274{transform:matrix(0.266682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266682,0.000000,0.000000,0.250000,0,0);}
.m14_c00274{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m8e_c00274{transform:matrix(0.268484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268484,0.000000,0.000000,0.250000,0,0);}
.m41_c00274{transform:matrix(0.268624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268624,0.000000,0.000000,0.250000,0,0);}
.m23_c00274{transform:matrix(0.268710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268710,0.000000,0.000000,0.250000,0,0);}
.mb3_c00274{transform:matrix(0.269042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269042,0.000000,0.000000,0.250000,0,0);}
.mab_c00274{transform:matrix(0.269301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269301,0.000000,0.000000,0.250000,0,0);}
.mb1_c00274{transform:matrix(0.269871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269871,0.000000,0.000000,0.250000,0,0);}
.me_c00274{transform:matrix(0.270362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270362,0.000000,0.000000,0.250000,0,0);}
.m85_c00274{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m19_c00274{transform:matrix(0.270977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270977,0.000000,0.000000,0.250000,0,0);}
.m25_c00274{transform:matrix(0.271467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271467,0.000000,0.000000,0.250000,0,0);}
.m0_c00274{transform:matrix(0.271475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271475,0.000000,0.000000,0.250000,0,0);}
.ma5_c00274{transform:matrix(0.272038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272038,0.000000,0.000000,0.250000,0,0);}
.m88_c00274{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m98_c00274{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.maa_c00274{transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);}
.m49_c00274{transform:matrix(0.273897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273897,0.000000,0.000000,0.250000,0,0);}
.m1a_c00274{transform:matrix(0.274278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274278,0.000000,0.000000,0.250000,0,0);}
.m71_c00274{transform:matrix(0.274659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274659,0.000000,0.000000,0.250000,0,0);}
.m67_c00274{transform:matrix(0.274708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274708,0.000000,0.000000,0.250000,0,0);}
.m18_c00274{transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);}
.m82_c00274{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m7d_c00274{transform:matrix(0.275573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275573,0.000000,0.000000,0.250000,0,0);}
.m68_c00274{transform:matrix(0.276607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276607,0.000000,0.000000,0.250000,0,0);}
.m3f_c00274{transform:matrix(0.276764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276764,0.000000,0.000000,0.250000,0,0);}
.m64_c00274{transform:matrix(0.276801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276801,0.000000,0.000000,0.250000,0,0);}
.m39_c00274{transform:matrix(0.277092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277092,0.000000,0.000000,0.250000,0,0);}
.m93_c00274{transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);}
.m54_c00274{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m9c_c00274{transform:matrix(0.278057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278057,0.000000,0.000000,0.250000,0,0);}
.m15_c00274{transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);}
.ma2_c00274{transform:matrix(0.278667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278667,0.000000,0.000000,0.250000,0,0);}
.m99_c00274{transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);}
.m5e_c00274{transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);}
.m46_c00274{transform:matrix(0.280064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280064,0.000000,0.000000,0.250000,0,0);}
.m6a_c00274{transform:matrix(0.281383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281383,0.000000,0.000000,0.250000,0,0);}
.m2c_c00274{transform:matrix(0.281452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281452,0.000000,0.000000,0.250000,0,0);}
.m8b_c00274{transform:matrix(0.281783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281783,0.000000,0.000000,0.250000,0,0);}
.m61_c00274{transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);}
.mc1_c00274{transform:matrix(0.282543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282543,0.000000,0.000000,0.250000,0,0);}
.mb9_c00274{transform:matrix(0.282968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282968,0.000000,0.000000,0.250000,0,0);}
.m40_c00274{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m4c_c00274{transform:matrix(0.283636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283636,0.000000,0.000000,0.250000,0,0);}
.m7c_c00274{transform:matrix(0.284403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284403,0.000000,0.000000,0.250000,0,0);}
.m1d_c00274{transform:matrix(0.284593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284593,0.000000,0.000000,0.250000,0,0);}
.ma0_c00274{transform:matrix(0.284669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284669,0.000000,0.000000,0.250000,0,0);}
.m1_c00274{transform:matrix(0.285134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285134,0.000000,0.000000,0.250000,0,0);}
.m16_c00274{transform:matrix(0.285890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285890,0.000000,0.000000,0.250000,0,0);}
.m6c_c00274{transform:matrix(0.286953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286953,0.000000,0.000000,0.250000,0,0);}
.m28_c00274{transform:matrix(0.286970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286970,0.000000,0.000000,0.250000,0,0);}
.m65_c00274{transform:matrix(0.287422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287422,0.000000,0.000000,0.250000,0,0);}
.m33_c00274{transform:matrix(0.287619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287619,0.000000,0.000000,0.250000,0,0);}
.m45_c00274{transform:matrix(0.287958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287958,0.000000,0.000000,0.250000,0,0);}
.m3c_c00274{transform:matrix(0.288974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288974,0.000000,0.000000,0.250000,0,0);}
.mc6_c00274{transform:matrix(0.289109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289109,0.000000,0.000000,0.250000,0,0);}
.mbf_c00274{transform:matrix(0.289768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289768,0.000000,0.000000,0.250000,0,0);}
.m42_c00274{transform:matrix(0.289806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289806,0.000000,0.000000,0.250000,0,0);}
.m78_c00274{transform:matrix(0.290630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290630,0.000000,0.000000,0.250000,0,0);}
.m4f_c00274{transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);}
.m27_c00274{transform:matrix(0.292336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292336,0.000000,0.000000,0.250000,0,0);}
.mb4_c00274{transform:matrix(0.292670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292670,0.000000,0.000000,0.250000,0,0);}
.m8a_c00274{transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);}
.m3_c00274{transform:matrix(0.293761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293761,0.000000,0.000000,0.250000,0,0);}
.m3e_c00274{transform:matrix(0.294443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294443,0.000000,0.000000,0.250000,0,0);}
.mb6_c00274{transform:matrix(0.294997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294997,0.000000,0.000000,0.250000,0,0);}
.m4b_c00274{transform:matrix(0.295297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295297,0.000000,0.000000,0.250000,0,0);}
.m81_c00274{transform:matrix(0.295347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295347,0.000000,0.000000,0.250000,0,0);}
.m5a_c00274{transform:matrix(0.295716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295716,0.000000,0.000000,0.250000,0,0);}
.m48_c00274{transform:matrix(0.295724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295724,0.000000,0.000000,0.250000,0,0);}
.m3b_c00274{transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);}
.m83_c00274{transform:matrix(0.297073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297073,0.000000,0.000000,0.250000,0,0);}
.m57_c00274{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m90_c00274{transform:matrix(0.297273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297273,0.000000,0.000000,0.250000,0,0);}
.mc2_c00274{transform:matrix(0.298054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298054,0.000000,0.000000,0.250000,0,0);}
.m75_c00274{transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);}
.m1b_c00274{transform:matrix(0.298565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298565,0.000000,0.000000,0.250000,0,0);}
.mc8_c00274{transform:matrix(0.298710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298710,0.000000,0.000000,0.250000,0,0);}
.m30_c00274{transform:matrix(0.298799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298799,0.000000,0.000000,0.250000,0,0);}
.mc7_c00274{transform:matrix(0.298886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298886,0.000000,0.000000,0.250000,0,0);}
.mba_c00274{transform:matrix(0.299369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299369,0.000000,0.000000,0.250000,0,0);}
.mc0_c00274{transform:matrix(0.299373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299373,0.000000,0.000000,0.250000,0,0);}
.m79_c00274{transform:matrix(0.299687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299687,0.000000,0.000000,0.250000,0,0);}
.ma6_c00274{transform:matrix(0.300614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300614,0.000000,0.000000,0.250000,0,0);}
.m29_c00274{transform:matrix(0.301233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301233,0.000000,0.000000,0.250000,0,0);}
.m13_c00274{transform:matrix(0.301595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301595,0.000000,0.000000,0.250000,0,0);}
.m38_c00274{transform:matrix(0.302057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302057,0.000000,0.000000,0.250000,0,0);}
.ma9_c00274{transform:matrix(0.303446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303446,0.000000,0.000000,0.250000,0,0);}
.mb7_c00274{transform:matrix(0.304295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304295,0.000000,0.000000,0.250000,0,0);}
.ma7_c00274{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);}
.mb2_c00274{transform:matrix(0.304612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304612,0.000000,0.000000,0.250000,0,0);}
.m2e_c00274{transform:matrix(0.304857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304857,0.000000,0.000000,0.250000,0,0);}
.m84_c00274{transform:matrix(0.305527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305527,0.000000,0.000000,0.250000,0,0);}
.m60_c00274{transform:matrix(0.305643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305643,0.000000,0.000000,0.250000,0,0);}
.m7e_c00274{transform:matrix(0.306025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306025,0.000000,0.000000,0.250000,0,0);}
.m24_c00274{transform:matrix(0.306313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306313,0.000000,0.000000,0.250000,0,0);}
.ma_c00274{transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);}
.m9b_c00274{transform:matrix(0.308150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308150,0.000000,0.000000,0.250000,0,0);}
.m80_c00274{transform:matrix(0.308306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308306,0.000000,0.000000,0.250000,0,0);}
.m56_c00274{transform:matrix(0.308330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308330,0.000000,0.000000,0.250000,0,0);}
.m8d_c00274{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m66_c00274{transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);}
.m58_c00274{transform:matrix(0.309093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309093,0.000000,0.000000,0.250000,0,0);}
.mc3_c00274{transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);}
.m51_c00274{transform:matrix(0.309126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309126,0.000000,0.000000,0.250000,0,0);}
.m74_c00274{transform:matrix(0.310441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310441,0.000000,0.000000,0.250000,0,0);}
.m55_c00274{transform:matrix(0.310528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310528,0.000000,0.000000,0.250000,0,0);}
.mc4_c00274{transform:matrix(0.311120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311120,0.000000,0.000000,0.250000,0,0);}
.m52_c00274{transform:matrix(0.311479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311479,0.000000,0.000000,0.250000,0,0);}
.m6d_c00274{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.m92_c00274{transform:matrix(0.312854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312854,0.000000,0.000000,0.250000,0,0);}
.m2f_c00274{transform:matrix(0.312946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312946,0.000000,0.000000,0.250000,0,0);}
.ma3_c00274{transform:matrix(0.313023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313023,0.000000,0.000000,0.250000,0,0);}
.mc5_c00274{transform:matrix(0.313213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313213,0.000000,0.000000,0.250000,0,0);}
.m1f_c00274{transform:matrix(0.313732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313732,0.000000,0.000000,0.250000,0,0);}
.ma4_c00274{transform:matrix(0.313839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313839,0.000000,0.000000,0.250000,0,0);}
.mbe_c00274{transform:matrix(0.313843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313843,0.000000,0.000000,0.250000,0,0);}
.m9a_c00274{transform:matrix(0.314182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314182,0.000000,0.000000,0.250000,0,0);}
.m47_c00274{transform:matrix(0.314186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314186,0.000000,0.000000,0.250000,0,0);}
.m8_c00274{transform:matrix(0.314426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314426,0.000000,0.000000,0.250000,0,0);}
.m63_c00274{transform:matrix(0.315862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315862,0.000000,0.000000,0.250000,0,0);}
.maf_c00274{transform:matrix(0.315948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315948,0.000000,0.000000,0.250000,0,0);}
.mbd_c00274{transform:matrix(0.317237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317237,0.000000,0.000000,0.250000,0,0);}
.m11_c00274{transform:matrix(0.321107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321107,0.000000,0.000000,0.250000,0,0);}
.m2d_c00274{transform:matrix(0.321236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321236,0.000000,0.000000,0.250000,0,0);}
.m95_c00274{transform:matrix(0.322773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322773,0.000000,0.000000,0.250000,0,0);}
.m3d_c00274{transform:matrix(0.322864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322864,0.000000,0.000000,0.250000,0,0);}
.m50_c00274{transform:matrix(0.322941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322941,0.000000,0.000000,0.250000,0,0);}
.m72_c00274{transform:matrix(0.323157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323157,0.000000,0.000000,0.250000,0,0);}
.m9_c00274{transform:matrix(0.323333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323333,0.000000,0.000000,0.250000,0,0);}
.m37_c00274{transform:matrix(0.323665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323665,0.000000,0.000000,0.250000,0,0);}
.m5c_c00274{transform:matrix(0.325136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325136,0.000000,0.000000,0.250000,0,0);}
.m5d_c00274{transform:matrix(0.325602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325602,0.000000,0.000000,0.250000,0,0);}
.m91_c00274{transform:matrix(0.326313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326313,0.000000,0.000000,0.250000,0,0);}
.m2a_c00274{transform:matrix(0.326607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326607,0.000000,0.000000,0.250000,0,0);}
.m4d_c00274{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m7a_c00274{transform:matrix(0.327297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327297,0.000000,0.000000,0.250000,0,0);}
.mb8_c00274{transform:matrix(0.328108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328108,0.000000,0.000000,0.250000,0,0);}
.m89_c00274{transform:matrix(0.329317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329317,0.000000,0.000000,0.250000,0,0);}
.mca_c00274{transform:matrix(0.330354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330354,0.000000,0.000000,0.250000,0,0);}
.md_c00274{transform:matrix(0.331567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331567,0.000000,0.000000,0.250000,0,0);}
.mad_c00274{transform:matrix(0.332788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332788,0.000000,0.000000,0.250000,0,0);}
.m86_c00274{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m32_c00274{transform:matrix(0.334985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334985,0.000000,0.000000,0.250000,0,0);}
.mb5_c00274{transform:matrix(0.335394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335394,0.000000,0.000000,0.250000,0,0);}
.m87_c00274{transform:matrix(0.337384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337384,0.000000,0.000000,0.250000,0,0);}
.m9e_c00274{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m5f_c00274{transform:matrix(0.340081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340081,0.000000,0.000000,0.250000,0,0);}
.m8f_c00274{transform:matrix(0.340687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340687,0.000000,0.000000,0.250000,0,0);}
.m9f_c00274{transform:matrix(0.342513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342513,0.000000,0.000000,0.250000,0,0);}
.m4_c00274{transform:matrix(0.345811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345811,0.000000,0.000000,0.250000,0,0);}
.m8c_c00274{transform:matrix(0.347013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347013,0.000000,0.000000,0.250000,0,0);}
.m7b_c00274{transform:matrix(0.347756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347756,0.000000,0.000000,0.250000,0,0);}
.m22_c00274{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m26_c00274{transform:matrix(0.350446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350446,0.000000,0.000000,0.250000,0,0);}
.mb_c00274{transform:matrix(0.350600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350600,0.000000,0.000000,0.250000,0,0);}
.m53_c00274{transform:matrix(0.351688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351688,0.000000,0.000000,0.250000,0,0);}
.m20_c00274{transform:matrix(0.351984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351984,0.000000,0.000000,0.250000,0,0);}
.m36_c00274{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m44_c00274{transform:matrix(0.357416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357416,0.000000,0.000000,0.250000,0,0);}
.m76_c00274{transform:matrix(0.358090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358090,0.000000,0.000000,0.250000,0,0);}
.m96_c00274{transform:matrix(0.359212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359212,0.000000,0.000000,0.250000,0,0);}
.mf_c00274{transform:matrix(0.360196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360196,0.000000,0.000000,0.250000,0,0);}
.m59_c00274{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);}
.mb0_c00274{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.mbb_c00274{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);}
.m62_c00274{transform:matrix(0.365181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365181,0.000000,0.000000,0.250000,0,0);}
.ma8_c00274{transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);}
.m1e_c00274{transform:matrix(0.386902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386902,0.000000,0.000000,0.250000,0,0);}
.mbc_c00274{transform:matrix(0.407787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407787,0.000000,0.000000,0.250000,0,0);}
.m4e_c00274{transform:matrix(0.414699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414699,0.000000,0.000000,0.250000,0,0);}
.m4a_c00274{transform:matrix(0.440744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440744,0.000000,0.000000,0.250000,0,0);}
.m6b_c00274{transform:matrix(0.812480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.812480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.812480,0.000000,0.000000,0.250000,0,0);}
.v0_c00274{vertical-align:0.000000px;}
.ls7_c00274{letter-spacing:-2.869027px;}
.ls6_c00274{letter-spacing:-2.744280px;}
.lsf_c00274{letter-spacing:-1.897474px;}
.lsb_c00274{letter-spacing:-1.685772px;}
.ls5_c00274{letter-spacing:-0.337154px;}
.ls8_c00274{letter-spacing:-0.258746px;}
.ls4_c00274{letter-spacing:0.000000px;}
.ls11_c00274{letter-spacing:0.108346px;}
.lsa_c00274{letter-spacing:0.141134px;}
.ls12_c00274{letter-spacing:0.308406px;}
.ls0_c00274{letter-spacing:1.395662px;}
.lse_c00274{letter-spacing:1.819066px;}
.ls2_c00274{letter-spacing:2.062130px;}
.lsd_c00274{letter-spacing:3.112798px;}
.ls9_c00274{letter-spacing:3.801610px;}
.ls3_c00274{letter-spacing:3.920400px;}
.ls10_c00274{letter-spacing:4.554000px;}
.lsc_c00274{letter-spacing:5.702598px;}
.ls1_c00274{letter-spacing:7.213536px;}
.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;}
}
.ws3_c00274{word-spacing:-22.714798px;}
.ws5_c00274{word-spacing:-21.664130px;}
.ws4_c00274{word-spacing:-21.421066px;}
.ws0_c00274{word-spacing:-20.997662px;}
.ws1_c00274{word-spacing:-19.602000px;}
.ws6_c00274{word-spacing:0.000000px;}
.ws2_c00274{word-spacing:3.999996px;}
._9_c00274{margin-left:-13.016124px;}
._5_c00274{margin-left:-11.056320px;}
._b_c00274{margin-left:-4.078008px;}
._2_c00274{width:3.199046px;}
._3_c00274{width:5.254128px;}
._8_c00274{width:6.899904px;}
._12_c00274{width:8.389260px;}
._1_c00274{width:10.035828px;}
._6_c00274{width:11.368368px;}
._10_c00274{width:20.856528px;}
._e_c00274{width:22.111056px;}
._a_c00274{width:23.679216px;}
._7_c00274{width:26.031456px;}
._13_c00274{width:32.147280px;}
._11_c00274{width:33.950664px;}
._c_c00274{width:35.520408px;}
._f_c00274{width:38.745432px;}
._0_c00274{width:43.281216px;}
._d_c00274{width:45.397836px;}
._4_c00274{width:46.876896px;}
.fc0_c00274{color:transparent;}
.fs5_c00274{font-size:5.702598px;}
.fs6_c00274{font-size:66.330000px;}
.fs9_c00274{font-size:70.092198px;}
.fs2_c00274{font-size:73.656198px;}
.fs4_c00274{font-size:76.032198px;}
.fs3_c00274{font-size:77.220000px;}
.fs0_c00274{font-size:78.408000px;}
.fs1_c00274{font-size:81.972198px;}
.fs8_c00274{font-size:90.288000px;}
.fs7_c00274{font-size:91.080000px;}
.y0_c00274{bottom:0.000000px;}
.y1_c00274{bottom:76.500000px;}
.y1a_c00274{bottom:124.295535px;}
.y19_c00274{bottom:155.653785px;}
.y18_c00274{bottom:189.160335px;}
.y17_c00274{bottom:224.087535px;}
.y16_c00274{bottom:288.595935px;}
.y15_c00274{bottom:321.023385px;}
.y14_c00274{bottom:353.460735px;}
.y13_c00274{bottom:386.957385px;}
.y12_c00274{bottom:420.107535px;}
.y11_c00274{bottom:455.747535px;}
.y10_c00274{bottom:520.255935px;}
.yf_c00274{bottom:552.326985px;}
.ye_c00274{bottom:582.269535px;}
.yd_c00274{bottom:585.477135px;}
.yc_c00274{bottom:617.909535px;}
.yb_c00274{bottom:649.629135px;}
.ya_c00274{bottom:682.061535px;}
.y9_c00274{bottom:714.493935px;}
.y8_c00274{bottom:749.064735px;}
.y7_c00274{bottom:782.561385px;}
.y6_c00274{bottom:817.844985px;}
.y5_c00274{bottom:853.128585px;}
.y4_c00274{bottom:888.417135px;}
.y3_c00274{bottom:922.987935px;}
.y2_c00274{bottom:1076.234985px;}
.h7_c00274{height:3.797930px;}
.h8_c00274{height:69.180117px;}
.hb_c00274{height:73.103972px;}
.h6_c00274{height:74.621444px;}
.h5_c00274{height:75.787207px;}
.h4_c00274{height:76.821113px;}
.h2_c00274{height:76.953164px;}
.h3_c00274{height:80.451229px;}
.ha_c00274{height:88.612734px;}
.h9_c00274{height:89.390039px;}
.h1_c00274{height:1110.000000px;}
.h0_c00274{height:1263.000000px;}
.w1_c00274{width:763.500000px;}
.w0_c00274{width:892.500000px;}
.x0_c00274{left:0.000000px;}
.x1_c00274{left:64.500000px;}
.x63_c00274{left:71.810685px;}
.x39_c00274{left:73.795635px;}
.x13_c00274{left:75.018285px;}
.x3_c00274{left:76.255785px;}
.x51_c00274{left:95.140035px;}
.x45_c00274{left:105.317235px;}
.x3a_c00274{left:106.822035px;}
.x2d_c00274{left:117.632835px;}
.x52_c00274{left:127.072485px;}
.x35_c00274{left:128.681235px;}
.x14_c00274{left:130.794885px;}
.x3b_c00274{left:140.427585px;}
.x57_c00274{left:149.936535px;}
.x3c_c00274{left:151.386885px;}
.x28_c00274{left:161.341335px;}
.x4_c00274{left:162.900585px;}
.x6b_c00274{left:164.212335px;}
.x3d_c00274{left:172.850085px;}
.x6a_c00274{left:182.656035px;}
.x1f_c00274{left:183.730185px;}
.x5_c00274{left:194.932035px;}
.x46_c00274{left:206.371485px;}
.x3e_c00274{left:216.885285px;}
.x20_c00274{left:227.275335px;}
.x21_c00274{left:238.749435px;}
.x36_c00274{left:248.956335px;}
.x6_c00274{left:250.337385px;}
.x4a_c00274{left:260.861085px;}
.x22_c00274{left:271.963935px;}
.x15_c00274{left:282.081735px;}
.x37_c00274{left:283.225185px;}
.x42_c00274{left:294.659685px;}
.x58_c00274{left:304.762635px;}
.x7_c00274{left:305.802135px;}
.x61_c00274{left:308.227635px;}
.x16_c00274{left:314.920035px;}
.x2e_c00274{left:316.865385px;}
.x23_c00274{left:327.205935px;}
.x43_c00274{left:328.542435px;}
.x3f_c00274{left:329.908635px;}
.x47_c00274{left:336.660435px;}
.x8_c00274{left:338.605785px;}
.x4c_c00274{left:349.787835px;}
.x65_c00274{left:359.974935px;}
.x9_c00274{left:361.083735px;}
.x48_c00274{left:369.751185px;}
.x2f_c00274{left:371.661885px;}
.x17_c00274{left:382.076685px;}
.x29_c00274{left:393.402285px;}
.xa_c00274{left:394.486335px;}
.x24_c00274{left:404.262585px;}
.x2a_c00274{left:405.544635px;}
.x64_c00274{left:413.954685px;}
.x18_c00274{left:415.825785px;}
.x59_c00274{left:424.691235px;}
.xb_c00274{left:426.760335px;}
.x30_c00274{left:428.067135px;}
.x25_c00274{left:437.640435px;}
.x19_c00274{left:447.827535px;}
.x5a_c00274{left:459.420435px;}
.x53_c00274{left:469.562985px;}
.xc_c00274{left:470.815335px;}
.x4d_c00274{left:481.294485px;}
.x4b_c00274{left:491.852835px;}
.x31_c00274{left:502.346835px;}
.xd_c00274{left:503.381385px;}
.x66_c00274{left:513.464535px;}
.x26_c00274{left:515.310885px;}
.x40_c00274{left:517.087935px;}
.x5b_c00274{left:526.007835px;}
.x32_c00274{left:535.843485px;}
.x1a_c00274{left:537.447285px;}
.x4e_c00274{left:547.480935px;}
.x38_c00274{left:558.286785px;}
.x62_c00274{left:559.499535px;}
.xe_c00274{left:569.548035px;}
.x1b_c00274{left:570.602385px;}
.x67_c00274{left:580.235085px;}
.x33_c00274{left:581.640885px;}
.x41_c00274{left:591.733935px;}
.x44_c00274{left:592.803135px;}
.x5c_c00274{left:594.010935px;}
.x50_c00274{left:595.768185px;}
.xf_c00274{left:602.668485px;}
.x1c_c00274{left:612.157635px;}
.x34_c00274{left:613.697085px;}
.x54_c00274{left:621.805185px;}
.x27_c00274{left:624.077235px;}
.x49_c00274{left:625.131585px;}
.x68_c00274{left:633.858435px;}
.x5d_c00274{left:634.902885px;}
.x10_c00274{left:636.165135px;}
.x55_c00274{left:645.337485px;}
.x1d_c00274{left:646.342335px;}
.x2_c00274{left:657.524385px;}
.x6c_c00274{left:666.686835px;}
.x11_c00274{left:668.582685px;}
.x4f_c00274{left:677.735235px;}
.x5e_c00274{left:678.834135px;}
.x1e_c00274{left:680.007285px;}
.x2b_c00274{left:689.813235px;}
.x69_c00274{left:691.367535px;}
.x6d_c00274{left:701.371485px;}
.x12_c00274{left:712.459485px;}
.x5f_c00274{left:714.033585px;}
.x2c_c00274{left:722.963385px;}
.x56_c00274{left:730.071585px;}
.x60_c00274{left:735.501735px;}
@media print{
.v0_c00274{vertical-align:0.000000pt;}
.ls7_c00274{letter-spacing:-2.550246pt;}
.ls6_c00274{letter-spacing:-2.439360pt;}
.lsf_c00274{letter-spacing:-1.686643pt;}
.lsb_c00274{letter-spacing:-1.498464pt;}
.ls5_c00274{letter-spacing:-0.299693pt;}
.ls8_c00274{letter-spacing:-0.229997pt;}
.ls4_c00274{letter-spacing:0.000000pt;}
.ls11_c00274{letter-spacing:0.096307pt;}
.lsa_c00274{letter-spacing:0.125453pt;}
.ls12_c00274{letter-spacing:0.274138pt;}
.ls0_c00274{letter-spacing:1.240589pt;}
.lse_c00274{letter-spacing:1.616947pt;}
.ls2_c00274{letter-spacing:1.833005pt;}
.lsd_c00274{letter-spacing:2.766931pt;}
.ls9_c00274{letter-spacing:3.379209pt;}
.ls3_c00274{letter-spacing:3.484800pt;}
.ls10_c00274{letter-spacing:4.048000pt;}
.lsc_c00274{letter-spacing:5.068976pt;}
.ls1_c00274{letter-spacing:6.412032pt;}
.ws3_c00274{word-spacing:-20.190931pt;}
.ws5_c00274{word-spacing:-19.257005pt;}
.ws4_c00274{word-spacing:-19.040947pt;}
.ws0_c00274{word-spacing:-18.664589pt;}
.ws1_c00274{word-spacing:-17.424000pt;}
.ws6_c00274{word-spacing:0.000000pt;}
.ws2_c00274{word-spacing:3.555552pt;}
._9_c00274{margin-left:-11.569888pt;}
._5_c00274{margin-left:-9.827840pt;}
._b_c00274{margin-left:-3.624896pt;}
._2_c00274{width:2.843597pt;}
._3_c00274{width:4.670336pt;}
._8_c00274{width:6.133248pt;}
._12_c00274{width:7.457120pt;}
._1_c00274{width:8.920736pt;}
._6_c00274{width:10.105216pt;}
._10_c00274{width:18.539136pt;}
._e_c00274{width:19.654272pt;}
._a_c00274{width:21.048192pt;}
._7_c00274{width:23.139072pt;}
._13_c00274{width:28.575360pt;}
._11_c00274{width:30.178368pt;}
._c_c00274{width:31.573696pt;}
._f_c00274{width:34.440384pt;}
._0_c00274{width:38.472192pt;}
._d_c00274{width:40.353632pt;}
._4_c00274{width:41.668352pt;}
.fs5_c00274{font-size:5.068976pt;}
.fs6_c00274{font-size:58.960000pt;}
.fs9_c00274{font-size:62.304176pt;}
.fs2_c00274{font-size:65.472176pt;}
.fs4_c00274{font-size:67.584176pt;}
.fs3_c00274{font-size:68.640000pt;}
.fs0_c00274{font-size:69.696000pt;}
.fs1_c00274{font-size:72.864176pt;}
.fs8_c00274{font-size:80.256000pt;}
.fs7_c00274{font-size:80.960000pt;}
.y0_c00274{bottom:0.000000pt;}
.y1_c00274{bottom:68.000000pt;}
.y1a_c00274{bottom:110.484920pt;}
.y19_c00274{bottom:138.358920pt;}
.y18_c00274{bottom:168.142520pt;}
.y17_c00274{bottom:199.188920pt;}
.y16_c00274{bottom:256.529720pt;}
.y15_c00274{bottom:285.354120pt;}
.y14_c00274{bottom:314.187320pt;}
.y13_c00274{bottom:343.962120pt;}
.y12_c00274{bottom:373.428920pt;}
.y11_c00274{bottom:405.108920pt;}
.y10_c00274{bottom:462.449720pt;}
.yf_c00274{bottom:490.957320pt;}
.ye_c00274{bottom:517.572920pt;}
.yd_c00274{bottom:520.424120pt;}
.yc_c00274{bottom:549.252920pt;}
.yb_c00274{bottom:577.448120pt;}
.ya_c00274{bottom:606.276920pt;}
.y9_c00274{bottom:635.105720pt;}
.y8_c00274{bottom:665.835320pt;}
.y7_c00274{bottom:695.610120pt;}
.y6_c00274{bottom:726.973320pt;}
.y5_c00274{bottom:758.336520pt;}
.y4_c00274{bottom:789.704120pt;}
.y3_c00274{bottom:820.433720pt;}
.y2_c00274{bottom:956.653320pt;}
.h7_c00274{height:3.375938pt;}
.h8_c00274{height:61.493438pt;}
.hb_c00274{height:64.981309pt;}
.h6_c00274{height:66.330173pt;}
.h5_c00274{height:67.366406pt;}
.h4_c00274{height:68.285434pt;}
.h2_c00274{height:68.402813pt;}
.h3_c00274{height:71.512204pt;}
.ha_c00274{height:78.766875pt;}
.h9_c00274{height:79.457813pt;}
.h1_c00274{height:986.666667pt;}
.h0_c00274{height:1122.666667pt;}
.w1_c00274{width:678.666667pt;}
.w0_c00274{width:793.333333pt;}
.x0_c00274{left:0.000000pt;}
.x1_c00274{left:57.333333pt;}
.x63_c00274{left:63.831720pt;}
.x39_c00274{left:65.596120pt;}
.x13_c00274{left:66.682920pt;}
.x3_c00274{left:67.782920pt;}
.x51_c00274{left:84.568920pt;}
.x45_c00274{left:93.615320pt;}
.x3a_c00274{left:94.952920pt;}
.x2d_c00274{left:104.562520pt;}
.x52_c00274{left:112.953320pt;}
.x35_c00274{left:114.383320pt;}
.x14_c00274{left:116.262120pt;}
.x3b_c00274{left:124.824520pt;}
.x57_c00274{left:133.276920pt;}
.x3c_c00274{left:134.566120pt;}
.x28_c00274{left:143.414520pt;}
.x4_c00274{left:144.800520pt;}
.x6b_c00274{left:145.966520pt;}
.x3d_c00274{left:153.644520pt;}
.x6a_c00274{left:162.360920pt;}
.x1f_c00274{left:163.315720pt;}
.x5_c00274{left:173.272920pt;}
.x46_c00274{left:183.441320pt;}
.x3e_c00274{left:192.786920pt;}
.x20_c00274{left:202.022520pt;}
.x21_c00274{left:212.221720pt;}
.x36_c00274{left:221.294520pt;}
.x6_c00274{left:222.522120pt;}
.x4a_c00274{left:231.876520pt;}
.x22_c00274{left:241.745720pt;}
.x15_c00274{left:250.739320pt;}
.x37_c00274{left:251.755720pt;}
.x42_c00274{left:261.919720pt;}
.x58_c00274{left:270.900120pt;}
.x7_c00274{left:271.824120pt;}
.x61_c00274{left:273.980120pt;}
.x16_c00274{left:279.928920pt;}
.x2e_c00274{left:281.658120pt;}
.x23_c00274{left:290.849720pt;}
.x43_c00274{left:292.037720pt;}
.x3f_c00274{left:293.252120pt;}
.x47_c00274{left:299.253720pt;}
.x8_c00274{left:300.982920pt;}
.x4c_c00274{left:310.922520pt;}
.x65_c00274{left:319.977720pt;}
.x9_c00274{left:320.963320pt;}
.x48_c00274{left:328.667720pt;}
.x2f_c00274{left:330.366120pt;}
.x17_c00274{left:339.623720pt;}
.x29_c00274{left:349.690920pt;}
.xa_c00274{left:350.654520pt;}
.x24_c00274{left:359.344520pt;}
.x2a_c00274{left:360.484120pt;}
.x64_c00274{left:367.959720pt;}
.x18_c00274{left:369.622920pt;}
.x59_c00274{left:377.503320pt;}
.xb_c00274{left:379.342520pt;}
.x30_c00274{left:380.504120pt;}
.x25_c00274{left:389.013720pt;}
.x19_c00274{left:398.068920pt;}
.x5a_c00274{left:408.373720pt;}
.x53_c00274{left:417.389320pt;}
.xc_c00274{left:418.502520pt;}
.x4d_c00274{left:427.817320pt;}
.x4b_c00274{left:437.202520pt;}
.x31_c00274{left:446.530520pt;}
.xd_c00274{left:447.450120pt;}
.x66_c00274{left:456.412920pt;}
.x26_c00274{left:458.054120pt;}
.x40_c00274{left:459.633720pt;}
.x5b_c00274{left:467.562520pt;}
.x32_c00274{left:476.305320pt;}
.x1a_c00274{left:477.730920pt;}
.x4e_c00274{left:486.649720pt;}
.x38_c00274{left:496.254920pt;}
.x62_c00274{left:497.332920pt;}
.xe_c00274{left:506.264920pt;}
.x1b_c00274{left:507.202120pt;}
.x67_c00274{left:515.764520pt;}
.x33_c00274{left:517.014120pt;}
.x41_c00274{left:525.985720pt;}
.x44_c00274{left:526.936120pt;}
.x5c_c00274{left:528.009720pt;}
.x50_c00274{left:529.571720pt;}
.xf_c00274{left:535.705320pt;}
.x1c_c00274{left:544.140120pt;}
.x34_c00274{left:545.508520pt;}
.x54_c00274{left:552.715720pt;}
.x27_c00274{left:554.735320pt;}
.x49_c00274{left:555.672520pt;}
.x68_c00274{left:563.429720pt;}
.x5d_c00274{left:564.358120pt;}
.x10_c00274{left:565.480120pt;}
.x55_c00274{left:573.633320pt;}
.x1d_c00274{left:574.526520pt;}
.x2_c00274{left:584.466120pt;}
.x6c_c00274{left:592.610520pt;}
.x11_c00274{left:594.295720pt;}
.x4f_c00274{left:602.431320pt;}
.x5e_c00274{left:603.408120pt;}
.x1e_c00274{left:604.450920pt;}
.x2b_c00274{left:613.167320pt;}
.x69_c00274{left:614.548920pt;}
.x6d_c00274{left:623.441320pt;}
.x12_c00274{left:633.297320pt;}
.x5f_c00274{left:634.696520pt;}
.x2c_c00274{left:642.634120pt;}
.x56_c00274{left:648.952520pt;}
.x60_c00274{left:653.779320pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_30cd1ccec82942872c955b55.woff2')format("woff");}.ff1_c00275{font-family:ff1_c00275;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00275;src:url('chunks/assets/font_94b0f2aa8fcb340223082c39.woff2')format("woff");}.ff2_c00275{font-family:ff2_c00275;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00275;src:url('chunks/assets/font_7a856b93c4401b0ea9fade3d.woff2')format("woff");}.ff3_c00275{font-family:ff3_c00275;line-height:0.666000;font-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_c00275{transform:matrix(0.211177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211177,0.000000,0.000000,0.250000,0,0);}
.m73_c00275{transform:matrix(0.213194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213194,0.000000,0.000000,0.250000,0,0);}
.m97_c00275{transform:matrix(0.222093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222093,0.000000,0.000000,0.250000,0,0);}
.m15_c00275{transform:matrix(0.227526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227526,0.000000,0.000000,0.250000,0,0);}
.mb_c00275{transform:matrix(0.230773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230773,0.000000,0.000000,0.250000,0,0);}
.m57_c00275{transform:matrix(0.235069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235069,0.000000,0.000000,0.250000,0,0);}
.m3_c00275{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m27_c00275{transform:matrix(0.251922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251922,0.000000,0.000000,0.250000,0,0);}
.m2_c00275{transform:matrix(0.253697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253697,0.000000,0.000000,0.250000,0,0);}
.m4_c00275{transform:matrix(0.256340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256340,0.000000,0.000000,0.250000,0,0);}
.m33_c00275{transform:matrix(0.256600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256600,0.000000,0.000000,0.250000,0,0);}
.m6a_c00275{transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);}
.m6d_c00275{transform:matrix(0.258620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258620,0.000000,0.000000,0.250000,0,0);}
.m24_c00275{transform:matrix(0.259072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259072,0.000000,0.000000,0.250000,0,0);}
.m5d_c00275{transform:matrix(0.260052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260052,0.000000,0.000000,0.250000,0,0);}
.m51_c00275{transform:matrix(0.260147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260147,0.000000,0.000000,0.250000,0,0);}
.m80_c00275{transform:matrix(0.260171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260171,0.000000,0.000000,0.250000,0,0);}
.m14_c00275{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.ma7_c00275{transform:matrix(0.261222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261222,0.000000,0.000000,0.250000,0,0);}
.ma2_c00275{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.m2e_c00275{transform:matrix(0.262297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262297,0.000000,0.000000,0.250000,0,0);}
.m30_c00275{transform:matrix(0.262649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262649,0.000000,0.000000,0.250000,0,0);}
.ma_c00275{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m7a_c00275{transform:matrix(0.263649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263649,0.000000,0.000000,0.250000,0,0);}
.m7b_c00275{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m5_c00275{transform:matrix(0.265887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265887,0.000000,0.000000,0.250000,0,0);}
.m7_c00275{transform:matrix(0.265920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265920,0.000000,0.000000,0.250000,0,0);}
.m99_c00275{transform:matrix(0.266097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266097,0.000000,0.000000,0.250000,0,0);}
.m6_c00275{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m65_c00275{transform:matrix(0.266434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266434,0.000000,0.000000,0.250000,0,0);}
.m1b_c00275{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.m23_c00275{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m5a_c00275{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.m98_c00275{transform:matrix(0.269162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269162,0.000000,0.000000,0.250000,0,0);}
.ma3_c00275{transform:matrix(0.269269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269269,0.000000,0.000000,0.250000,0,0);}
.m3b_c00275{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m7e_c00275{transform:matrix(0.270977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270977,0.000000,0.000000,0.250000,0,0);}
.m7f_c00275{transform:matrix(0.271175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271175,0.000000,0.000000,0.250000,0,0);}
.m1_c00275{transform:matrix(0.271301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271301,0.000000,0.000000,0.250000,0,0);}
.m20_c00275{transform:matrix(0.271514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271514,0.000000,0.000000,0.250000,0,0);}
.ma6_c00275{transform:matrix(0.271718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271718,0.000000,0.000000,0.250000,0,0);}
.ma0_c00275{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m1e_c00275{transform:matrix(0.272578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272578,0.000000,0.000000,0.250000,0,0);}
.m4f_c00275{transform:matrix(0.273683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273683,0.000000,0.000000,0.250000,0,0);}
.m10_c00275{transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);}
.m63_c00275{transform:matrix(0.275828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275828,0.000000,0.000000,0.250000,0,0);}
.m0_c00275{transform:matrix(0.276116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276116,0.000000,0.000000,0.250000,0,0);}
.m85_c00275{transform:matrix(0.276488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276488,0.000000,0.000000,0.250000,0,0);}
.m45_c00275{transform:matrix(0.276732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276732,0.000000,0.000000,0.250000,0,0);}
.m9c_c00275{transform:matrix(0.276794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276794,0.000000,0.000000,0.250000,0,0);}
.m76_c00275{transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);}
.m62_c00275{transform:matrix(0.277586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277586,0.000000,0.000000,0.250000,0,0);}
.m87_c00275{transform:matrix(0.277736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277736,0.000000,0.000000,0.250000,0,0);}
.m56_c00275{transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);}
.m3c_c00275{transform:matrix(0.278681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278681,0.000000,0.000000,0.250000,0,0);}
.m9e_c00275{transform:matrix(0.278730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278730,0.000000,0.000000,0.250000,0,0);}
.m89_c00275{transform:matrix(0.279231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279231,0.000000,0.000000,0.250000,0,0);}
.me_c00275{transform:matrix(0.279420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279420,0.000000,0.000000,0.250000,0,0);}
.m64_c00275{transform:matrix(0.279663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279663,0.000000,0.000000,0.250000,0,0);}
.m83_c00275{transform:matrix(0.279843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279843,0.000000,0.000000,0.250000,0,0);}
.m8d_c00275{transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);}
.m95_c00275{transform:matrix(0.280064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280064,0.000000,0.000000,0.250000,0,0);}
.ma5_c00275{transform:matrix(0.280263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280263,0.000000,0.000000,0.250000,0,0);}
.m81_c00275{transform:matrix(0.281309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281309,0.000000,0.000000,0.250000,0,0);}
.m5f_c00275{transform:matrix(0.281622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281622,0.000000,0.000000,0.250000,0,0);}
.m2d_c00275{transform:matrix(0.281748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281748,0.000000,0.000000,0.250000,0,0);}
.m11_c00275{transform:matrix(0.281783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281783,0.000000,0.000000,0.250000,0,0);}
.m90_c00275{transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);}
.m46_c00275{transform:matrix(0.281910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281910,0.000000,0.000000,0.250000,0,0);}
.m79_c00275{transform:matrix(0.282334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282334,0.000000,0.000000,0.250000,0,0);}
.m31_c00275{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m71_c00275{transform:matrix(0.283689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283689,0.000000,0.000000,0.250000,0,0);}
.m18_c00275{transform:matrix(0.283691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283691,0.000000,0.000000,0.250000,0,0);}
.m94_c00275{transform:matrix(0.284403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284403,0.000000,0.000000,0.250000,0,0);}
.ma4_c00275{transform:matrix(0.285047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285047,0.000000,0.000000,0.250000,0,0);}
.m22_c00275{transform:matrix(0.285223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285223,0.000000,0.000000,0.250000,0,0);}
.m77_c00275{transform:matrix(0.285422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285422,0.000000,0.000000,0.250000,0,0);}
.m25_c00275{transform:matrix(0.285787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285787,0.000000,0.000000,0.250000,0,0);}
.m3f_c00275{transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);}
.m70_c00275{transform:matrix(0.287210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287210,0.000000,0.000000,0.250000,0,0);}
.m84_c00275{transform:matrix(0.287254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287254,0.000000,0.000000,0.250000,0,0);}
.m19_c00275{transform:matrix(0.287553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287553,0.000000,0.000000,0.250000,0,0);}
.m43_c00275{transform:matrix(0.287958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287958,0.000000,0.000000,0.250000,0,0);}
.m38_c00275{transform:matrix(0.288557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288557,0.000000,0.000000,0.250000,0,0);}
.m4d_c00275{transform:matrix(0.289112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289112,0.000000,0.000000,0.250000,0,0);}
.m9d_c00275{transform:matrix(0.289122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289122,0.000000,0.000000,0.250000,0,0);}
.m78_c00275{transform:matrix(0.289464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289464,0.000000,0.000000,0.250000,0,0);}
.m88_c00275{transform:matrix(0.289520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289520,0.000000,0.000000,0.250000,0,0);}
.ma8_c00275{transform:matrix(0.289806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289806,0.000000,0.000000,0.250000,0,0);}
.m4a_c00275{transform:matrix(0.290983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290983,0.000000,0.000000,0.250000,0,0);}
.m5e_c00275{transform:matrix(0.291422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291422,0.000000,0.000000,0.250000,0,0);}
.m3a_c00275{transform:matrix(0.291645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291645,0.000000,0.000000,0.250000,0,0);}
.m66_c00275{transform:matrix(0.292503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292503,0.000000,0.000000,0.250000,0,0);}
.m44_c00275{transform:matrix(0.293433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293433,0.000000,0.000000,0.250000,0,0);}
.m37_c00275{transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);}
.m41_c00275{transform:matrix(0.295114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295114,0.000000,0.000000,0.250000,0,0);}
.md_c00275{transform:matrix(0.295297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295297,0.000000,0.000000,0.250000,0,0);}
.m13_c00275{transform:matrix(0.295825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295825,0.000000,0.000000,0.250000,0,0);}
.m8b_c00275{transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);}
.m75_c00275{transform:matrix(0.297631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297631,0.000000,0.000000,0.250000,0,0);}
.m32_c00275{transform:matrix(0.297675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297675,0.000000,0.000000,0.250000,0,0);}
.m4c_c00275{transform:matrix(0.299508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299508,0.000000,0.000000,0.250000,0,0);}
.m54_c00275{transform:matrix(0.299860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299860,0.000000,0.000000,0.250000,0,0);}
.m12_c00275{transform:matrix(0.300600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300600,0.000000,0.000000,0.250000,0,0);}
.m60_c00275{transform:matrix(0.301582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301582,0.000000,0.000000,0.250000,0,0);}
.m2b_c00275{transform:matrix(0.301982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301982,0.000000,0.000000,0.250000,0,0);}
.m2c_c00275{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m39_c00275{transform:matrix(0.302504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302504,0.000000,0.000000,0.250000,0,0);}
.ma1_c00275{transform:matrix(0.302718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302718,0.000000,0.000000,0.250000,0,0);}
.m1a_c00275{transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);}
.m50_c00275{transform:matrix(0.303969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303969,0.000000,0.000000,0.250000,0,0);}
.m9a_c00275{transform:matrix(0.305657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305657,0.000000,0.000000,0.250000,0,0);}
.m48_c00275{transform:matrix(0.306552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306552,0.000000,0.000000,0.250000,0,0);}
.m82_c00275{transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);}
.m4b_c00275{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m29_c00275{transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);}
.mf_c00275{transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);}
.m4e_c00275{transform:matrix(0.308936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308936,0.000000,0.000000,0.250000,0,0);}
.m59_c00275{transform:matrix(0.308942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308942,0.000000,0.000000,0.250000,0,0);}
.m35_c00275{transform:matrix(0.309175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309175,0.000000,0.000000,0.250000,0,0);}
.m9b_c00275{transform:matrix(0.309321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309321,0.000000,0.000000,0.250000,0,0);}
.m92_c00275{transform:matrix(0.310242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310242,0.000000,0.000000,0.250000,0,0);}
.m61_c00275{transform:matrix(0.310446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310446,0.000000,0.000000,0.250000,0,0);}
.m34_c00275{transform:matrix(0.310465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310465,0.000000,0.000000,0.250000,0,0);}
.m28_c00275{transform:matrix(0.311043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311043,0.000000,0.000000,0.250000,0,0);}
.m40_c00275{transform:matrix(0.312339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312339,0.000000,0.000000,0.250000,0,0);}
.m52_c00275{transform:matrix(0.312345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312345,0.000000,0.000000,0.250000,0,0);}
.m6e_c00275{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.m8a_c00275{transform:matrix(0.312657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312657,0.000000,0.000000,0.250000,0,0);}
.m67_c00275{transform:matrix(0.313280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313280,0.000000,0.000000,0.250000,0,0);}
.m96_c00275{transform:matrix(0.314091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314091,0.000000,0.000000,0.250000,0,0);}
.m9f_c00275{transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);}
.m91_c00275{transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);}
.m47_c00275{transform:matrix(0.317085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317085,0.000000,0.000000,0.250000,0,0);}
.m9_c00275{transform:matrix(0.317438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317438,0.000000,0.000000,0.250000,0,0);}
.m68_c00275{transform:matrix(0.317796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317796,0.000000,0.000000,0.250000,0,0);}
.m8f_c00275{transform:matrix(0.318474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318474,0.000000,0.000000,0.250000,0,0);}
.m55_c00275{transform:matrix(0.318735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318735,0.000000,0.000000,0.250000,0,0);}
.m3d_c00275{transform:matrix(0.318831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318831,0.000000,0.000000,0.250000,0,0);}
.m5b_c00275{transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);}
.m6f_c00275{transform:matrix(0.319530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319530,0.000000,0.000000,0.250000,0,0);}
.m2f_c00275{transform:matrix(0.319585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319585,0.000000,0.000000,0.250000,0,0);}
.m86_c00275{transform:matrix(0.319782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319782,0.000000,0.000000,0.250000,0,0);}
.m5c_c00275{transform:matrix(0.319820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319820,0.000000,0.000000,0.250000,0,0);}
.m72_c00275{transform:matrix(0.324420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324420,0.000000,0.000000,0.250000,0,0);}
.m8e_c00275{transform:matrix(0.324794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324794,0.000000,0.000000,0.250000,0,0);}
.m8c_c00275{transform:matrix(0.326313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326313,0.000000,0.000000,0.250000,0,0);}
.m36_c00275{transform:matrix(0.326686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326686,0.000000,0.000000,0.250000,0,0);}
.m6c_c00275{transform:matrix(0.327175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327175,0.000000,0.000000,0.250000,0,0);}
.m74_c00275{transform:matrix(0.327340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327340,0.000000,0.000000,0.250000,0,0);}
.m21_c00275{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.m1d_c00275{transform:matrix(0.331699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331699,0.000000,0.000000,0.250000,0,0);}
.m1c_c00275{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m7d_c00275{transform:matrix(0.333511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333511,0.000000,0.000000,0.250000,0,0);}
.m1f_c00275{transform:matrix(0.334985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334985,0.000000,0.000000,0.250000,0,0);}
.m58_c00275{transform:matrix(0.336475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336475,0.000000,0.000000,0.250000,0,0);}
.m49_c00275{transform:matrix(0.336819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336819,0.000000,0.000000,0.250000,0,0);}
.m2a_c00275{transform:matrix(0.337511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337511,0.000000,0.000000,0.250000,0,0);}
.m3e_c00275{transform:matrix(0.339116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339116,0.000000,0.000000,0.250000,0,0);}
.m7c_c00275{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m42_c00275{transform:matrix(0.342926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342926,0.000000,0.000000,0.250000,0,0);}
.m17_c00275{transform:matrix(0.343025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343025,0.000000,0.000000,0.250000,0,0);}
.m6b_c00275{transform:matrix(0.355213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355213,0.000000,0.000000,0.250000,0,0);}
.m8_c00275{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m93_c00275{transform:matrix(0.357416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357416,0.000000,0.000000,0.250000,0,0);}
.m26_c00275{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);}
.m69_c00275{transform:matrix(0.378961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378961,0.000000,0.000000,0.250000,0,0);}
.mc_c00275{transform:matrix(0.381065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381065,0.000000,0.000000,0.250000,0,0);}
.m53_c00275{transform:matrix(0.396936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396936,0.000000,0.000000,0.250000,0,0);}
.v1_c00275{vertical-align:-8.573400px;}
.v0_c00275{vertical-align:0.000000px;}
.ls3_c00275{letter-spacing:-2.744280px;}
.ls5_c00275{letter-spacing:-1.701454px;}
.ls2_c00275{letter-spacing:0.000000px;}
.ls10_c00275{letter-spacing:0.156816px;}
.ls11_c00275{letter-spacing:0.533174px;}
.lsd_c00275{letter-spacing:0.588060px;}
.lsa_c00275{letter-spacing:0.705672px;}
.lse_c00275{letter-spacing:1.152598px;}
.lsb_c00275{letter-spacing:1.466230px;}
.ls7_c00275{letter-spacing:1.685772px;}
.ls4_c00275{letter-spacing:3.112798px;}
.ls8_c00275{letter-spacing:3.457793px;}
.ls9_c00275{letter-spacing:3.559723px;}
.ls6_c00275{letter-spacing:3.653813px;}
.ls0_c00275{letter-spacing:3.755743px;}
.ls1_c00275{letter-spacing:3.920400px;}
.lsf_c00275{letter-spacing:4.237200px;}
.lsc_c00275{letter-spacing:51.321798px;}
.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;}
}
.ws2_c00275{word-spacing:-23.357743px;}
.ws1_c00275{word-spacing:-23.161723px;}
.ws0_c00275{word-spacing:-19.602000px;}
.ws3_c00275{word-spacing:0.000000px;}
._8_c00275{width:2.141330px;}
._3_c00275{width:5.409360px;}
._2_c00275{width:7.683984px;}
._1_c00275{width:9.252144px;}
._4_c00275{width:11.070814px;}
._5_c00275{width:20.856528px;}
._0_c00275{width:23.679216px;}
._7_c00275{width:36.694548px;}
._6_c00275{width:2350.656000px;}
.fc0_c00275{color:transparent;}
.fs1_c00275{font-size:35.442000px;}
.fs2_c00275{font-size:51.321798px;}
.fs3_c00275{font-size:76.032198px;}
.fs0_c00275{font-size:78.408000px;}
.fs4_c00275{font-size:84.744000px;}
.y0_c00275{bottom:0.000000px;}
.y1_c00275{bottom:76.500000px;}
.y1a_c00275{bottom:125.721135px;}
.y19_c00275{bottom:156.722985px;}
.y18_c00275{bottom:192.006585px;}
.y17_c00275{bottom:257.232735px;}
.y16_c00275{bottom:290.377935px;}
.y14_c00275{bottom:323.509275px;}
.y15_c00275{bottom:323.518185px;}
.y13_c00275{bottom:355.950585px;}
.y12_c00275{bottom:389.100735px;}
.y11_c00275{bottom:422.240985px;}
.y10_c00275{bottom:454.678335px;}
.yf_c00275{bottom:486.749385px;}
.ye_c00275{bottom:550.193535px;}
.yd_c00275{bottom:583.690185px;}
.yc_c00275{bottom:616.478985px;}
.yb_c00275{bottom:649.272735px;}
.ya_c00275{bottom:682.061535px;}
.y9_c00275{bottom:715.558185px;}
.y8_c00275{bottom:749.064735px;}
.y7_c00275{bottom:780.779385px;}
.y6_c00275{bottom:813.216735px;}
.y5_c00275{bottom:846.000585px;}
.y4_c00275{bottom:878.789385px;}
.y3_c00275{bottom:911.226735px;}
.y2_c00275{bottom:1076.239935px;}
.h3_c00275{height:34.180317px;}
.h4_c00275{height:74.621444px;}
.h2_c00275{height:76.953164px;}
.h5_c00275{height:83.171602px;}
.h1_c00275{height:1110.000000px;}
.h0_c00275{height:1263.000000px;}
.w1_c00275{width:763.500000px;}
.w0_c00275{width:892.500000px;}
.x0_c00275{left:0.000000px;}
.x1_c00275{left:64.500000px;}
.x3b_c00275{left:67.890300px;}
.x32_c00275{left:68.939700px;}
.xf_c00275{left:70.023750px;}
.x1e_c00275{left:71.662200px;}
.x3_c00275{left:73.028400px;}
.x10_c00275{left:92.679900px;}
.x5b_c00275{left:101.238450px;}
.x11_c00275{left:102.995700px;}
.x47_c00275{left:112.252200px;}
.x28_c00275{left:113.331300px;}
.x4_c00275{left:114.578700px;}
.x50_c00275{left:122.360100px;}
.x33_c00275{left:124.176750px;}
.x3c_c00275{left:134.913300px;}
.x1f_c00275{left:136.497300px;}
.x48_c00275{left:146.308200px;}
.x62_c00275{left:148.570350px;}
.x34_c00275{left:156.708150px;}
.x12_c00275{left:158.242650px;}
.x20_c00275{left:168.627750px;}
.x51_c00275{left:179.280150px;}
.x49_c00275{left:189.496950px;}
.x21_c00275{left:201.718500px;}
.x5_c00275{left:212.073900px;}
.x63_c00275{left:222.508500px;}
.x52_c00275{left:223.790550px;}
.x6_c00275{left:234.527100px;}
.x35_c00275{left:245.080500px;}
.x29_c00275{left:255.911100px;}
.x5c_c00275{left:266.484300px;}
.x13_c00275{left:267.667350px;}
.x36_c00275{left:278.705850px;}
.x5d_c00275{left:280.369050px;}
.x2a_c00275{left:289.214700px;}
.x3d_c00275{left:300.268050px;}
.x55_c00275{left:301.510500px;}
.x53_c00275{left:311.078850px;}
.x14_c00275{left:312.549000px;}
.x43_c00275{left:322.775700px;}
.x58_c00275{left:332.383650px;}
.x15_c00275{left:333.482550px;}
.x4a_c00275{left:334.640850px;}
.x7_c00275{left:344.446800px;}
.x22_c00275{left:355.346700px;}
.x16_c00275{left:356.386200px;}
.x37_c00275{left:365.484300px;}
.x45_c00275{left:377.403900px;}
.x60_c00275{left:378.448350px;}
.x23_c00275{left:388.011750px;}
.x2b_c00275{left:389.541300px;}
.x5e_c00275{left:399.862050px;}
.x17_c00275{left:409.672950px;}
.x8_c00275{left:411.638100px;}
.x3e_c00275{left:420.716400px;}
.x2c_c00275{left:421.914300px;}
.x2d_c00275{left:431.462850px;}
.x4b_c00275{left:432.908250px;}
.x56_c00275{left:443.377500px;}
.x9_c00275{left:444.441750px;}
.x2e_c00275{left:464.251650px;}
.x38_c00275{left:466.474200px;}
.x57_c00275{left:476.715750px;}
.x18_c00275{left:487.185000px;}
.x24_c00275{left:488.561100px;}
.x19_c00275{left:498.624450px;}
.x2f_c00275{left:508.405650px;}
.x4c_c00275{left:509.915400px;}
.x5f_c00275{left:519.087750px;}
.x25_c00275{left:520.696500px;}
.xa_c00275{left:531.725100px;}
.x61_c00275{left:541.194450px;}
.x1a_c00275{left:542.634900px;}
.x30_c00275{left:552.599250px;}
.x3f_c00275{left:562.974450px;}
.xb_c00275{left:564.830700px;}
.x59_c00275{left:574.022850px;}
.x1b_c00275{left:575.963250px;}
.x39_c00275{left:587.363100px;}
.x44_c00275{left:589.382700px;}
.x40_c00275{left:597.164100px;}
.x26_c00275{left:598.401600px;}
.x5a_c00275{left:607.484850px;}
.x1c_c00275{left:608.781750px;}
.xc_c00275{left:619.795500px;}
.x4d_c00275{left:622.171500px;}
.x1d_c00275{left:624.057450px;}
.x41_c00275{left:629.225250px;}
.x3a_c00275{left:630.730050px;}
.xd_c00275{left:641.540850px;}
.x2_c00275{left:652.886250px;}
.x64_c00275{left:655.009800px;}
.x4e_c00275{left:663.048600px;}
.x31_c00275{left:664.439550px;}
.x54_c00275{left:666.078000px;}
.xe_c00275{left:674.502900px;}
.x27_c00275{left:685.863150px;}
.x42_c00275{left:697.109550px;}
.x4f_c00275{left:707.346150px;}
.x46_c00275{left:718.488600px;}
@media print{
.v1_c00275{vertical-align:-7.620800pt;}
.v0_c00275{vertical-align:0.000000pt;}
.ls3_c00275{letter-spacing:-2.439360pt;}
.ls5_c00275{letter-spacing:-1.512403pt;}
.ls2_c00275{letter-spacing:0.000000pt;}
.ls10_c00275{letter-spacing:0.139392pt;}
.ls11_c00275{letter-spacing:0.473933pt;}
.lsd_c00275{letter-spacing:0.522720pt;}
.lsa_c00275{letter-spacing:0.627264pt;}
.lse_c00275{letter-spacing:1.024531pt;}
.lsb_c00275{letter-spacing:1.303315pt;}
.ls7_c00275{letter-spacing:1.498464pt;}
.ls4_c00275{letter-spacing:2.766931pt;}
.ls8_c00275{letter-spacing:3.073594pt;}
.ls9_c00275{letter-spacing:3.164198pt;}
.ls6_c00275{letter-spacing:3.247834pt;}
.ls0_c00275{letter-spacing:3.338438pt;}
.ls1_c00275{letter-spacing:3.484800pt;}
.lsf_c00275{letter-spacing:3.766400pt;}
.lsc_c00275{letter-spacing:45.619376pt;}
.ws2_c00275{word-spacing:-20.762438pt;}
.ws1_c00275{word-spacing:-20.588198pt;}
.ws0_c00275{word-spacing:-17.424000pt;}
.ws3_c00275{word-spacing:0.000000pt;}
._8_c00275{width:1.903405pt;}
._3_c00275{width:4.808320pt;}
._2_c00275{width:6.830208pt;}
._1_c00275{width:8.224128pt;}
._4_c00275{width:9.840723pt;}
._5_c00275{width:18.539136pt;}
._0_c00275{width:21.048192pt;}
._7_c00275{width:32.617376pt;}
._6_c00275{width:2089.472000pt;}
.fs1_c00275{font-size:31.504000pt;}
.fs2_c00275{font-size:45.619376pt;}
.fs3_c00275{font-size:67.584176pt;}
.fs0_c00275{font-size:69.696000pt;}
.fs4_c00275{font-size:75.328000pt;}
.y0_c00275{bottom:0.000000pt;}
.y1_c00275{bottom:68.000000pt;}
.y1a_c00275{bottom:111.752120pt;}
.y19_c00275{bottom:139.309320pt;}
.y18_c00275{bottom:170.672520pt;}
.y17_c00275{bottom:228.651320pt;}
.y16_c00275{bottom:258.113720pt;}
.y14_c00275{bottom:287.563800pt;}
.y15_c00275{bottom:287.571720pt;}
.y13_c00275{bottom:316.400520pt;}
.y12_c00275{bottom:345.867320pt;}
.y11_c00275{bottom:375.325320pt;}
.y10_c00275{bottom:404.158520pt;}
.yf_c00275{bottom:432.666120pt;}
.ye_c00275{bottom:489.060920pt;}
.yd_c00275{bottom:518.835720pt;}
.yc_c00275{bottom:547.981320pt;}
.yb_c00275{bottom:577.131320pt;}
.ya_c00275{bottom:606.276920pt;}
.y9_c00275{bottom:636.051720pt;}
.y8_c00275{bottom:665.835320pt;}
.y7_c00275{bottom:694.026120pt;}
.y6_c00275{bottom:722.859320pt;}
.y5_c00275{bottom:752.000520pt;}
.y4_c00275{bottom:781.146120pt;}
.y3_c00275{bottom:809.979320pt;}
.y2_c00275{bottom:956.657720pt;}
.h3_c00275{height:30.382504pt;}
.h4_c00275{height:66.330173pt;}
.h2_c00275{height:68.402813pt;}
.h5_c00275{height:73.930313pt;}
.h1_c00275{height:986.666667pt;}
.h0_c00275{height:1122.666667pt;}
.w1_c00275{width:678.666667pt;}
.w0_c00275{width:793.333333pt;}
.x0_c00275{left:0.000000pt;}
.x1_c00275{left:57.333333pt;}
.x3b_c00275{left:60.346933pt;}
.x32_c00275{left:61.279733pt;}
.xf_c00275{left:62.243333pt;}
.x1e_c00275{left:63.699733pt;}
.x3_c00275{left:64.914133pt;}
.x10_c00275{left:82.382133pt;}
.x5b_c00275{left:89.989733pt;}
.x11_c00275{left:91.551733pt;}
.x47_c00275{left:99.779733pt;}
.x28_c00275{left:100.738933pt;}
.x4_c00275{left:101.847733pt;}
.x50_c00275{left:108.764533pt;}
.x33_c00275{left:110.379333pt;}
.x3c_c00275{left:119.922933pt;}
.x1f_c00275{left:121.330933pt;}
.x48_c00275{left:130.051733pt;}
.x62_c00275{left:132.062533pt;}
.x34_c00275{left:139.296133pt;}
.x12_c00275{left:140.660133pt;}
.x20_c00275{left:149.891333pt;}
.x51_c00275{left:159.360133pt;}
.x49_c00275{left:168.441733pt;}
.x21_c00275{left:179.305333pt;}
.x5_c00275{left:188.510133pt;}
.x63_c00275{left:197.785333pt;}
.x52_c00275{left:198.924933pt;}
.x6_c00275{left:208.468533pt;}
.x35_c00275{left:217.849333pt;}
.x29_c00275{left:227.476533pt;}
.x5c_c00275{left:236.874933pt;}
.x13_c00275{left:237.926533pt;}
.x36_c00275{left:247.738533pt;}
.x5d_c00275{left:249.216933pt;}
.x2a_c00275{left:257.079733pt;}
.x3d_c00275{left:266.904933pt;}
.x55_c00275{left:268.009333pt;}
.x53_c00275{left:276.514533pt;}
.x14_c00275{left:277.821333pt;}
.x43_c00275{left:286.911733pt;}
.x58_c00275{left:295.452133pt;}
.x15_c00275{left:296.428933pt;}
.x4a_c00275{left:297.458533pt;}
.x7_c00275{left:306.174933pt;}
.x22_c00275{left:315.863733pt;}
.x16_c00275{left:316.787733pt;}
.x37_c00275{left:324.874933pt;}
.x45_c00275{left:335.470133pt;}
.x60_c00275{left:336.398533pt;}
.x23_c00275{left:344.899333pt;}
.x2b_c00275{left:346.258933pt;}
.x5e_c00275{left:355.432933pt;}
.x17_c00275{left:364.153733pt;}
.x8_c00275{left:365.900533pt;}
.x3e_c00275{left:373.970133pt;}
.x2c_c00275{left:375.034933pt;}
.x2d_c00275{left:383.522533pt;}
.x4b_c00275{left:384.807333pt;}
.x56_c00275{left:394.113333pt;}
.x9_c00275{left:395.059333pt;}
.x2e_c00275{left:412.668133pt;}
.x38_c00275{left:414.643733pt;}
.x57_c00275{left:423.747333pt;}
.x18_c00275{left:433.053333pt;}
.x24_c00275{left:434.276533pt;}
.x19_c00275{left:443.221733pt;}
.x2f_c00275{left:451.916133pt;}
.x4c_c00275{left:453.258133pt;}
.x5f_c00275{left:461.411333pt;}
.x25_c00275{left:462.841333pt;}
.xa_c00275{left:472.644533pt;}
.x61_c00275{left:481.061733pt;}
.x1a_c00275{left:482.342133pt;}
.x30_c00275{left:491.199333pt;}
.x3f_c00275{left:500.421733pt;}
.xb_c00275{left:502.071733pt;}
.x59_c00275{left:510.242533pt;}
.x1b_c00275{left:511.967333pt;}
.x39_c00275{left:522.100533pt;}
.x44_c00275{left:523.895733pt;}
.x40_c00275{left:530.812533pt;}
.x26_c00275{left:531.912533pt;}
.x5a_c00275{left:539.986533pt;}
.x1c_c00275{left:541.139333pt;}
.xc_c00275{left:550.929333pt;}
.x4d_c00275{left:553.041333pt;}
.x1d_c00275{left:554.717733pt;}
.x41_c00275{left:559.311333pt;}
.x3a_c00275{left:560.648933pt;}
.xd_c00275{left:570.258533pt;}
.x2_c00275{left:580.343333pt;}
.x64_c00275{left:582.230933pt;}
.x4e_c00275{left:589.376533pt;}
.x31_c00275{left:590.612933pt;}
.x54_c00275{left:592.069333pt;}
.xe_c00275{left:599.558133pt;}
.x27_c00275{left:609.656133pt;}
.x42_c00275{left:619.652933pt;}
.x4f_c00275{left:628.752133pt;}
.x46_c00275{left:638.656533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8346adee42ffa909cd30215d.woff2')format("woff");}.ff1_c00276{font-family:ff1_c00276;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00276;src:url('chunks/assets/font_a1d5d6369440a16796684945.woff2')format("woff");}.ff2_c00276{font-family:ff2_c00276;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00276;src:url('chunks/assets/font_2e8aba3dd16b8628291e66b6.woff2')format("woff");}.ff3_c00276{font-family:ff3_c00276;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m16_c00276{transform:matrix(0.183314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183314,0.000000,0.000000,0.250000,0,0);}
.m80_c00276{transform:matrix(0.196729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196729,0.000000,0.000000,0.250000,0,0);}
.m53_c00276{transform:matrix(0.210605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210605,0.000000,0.000000,0.250000,0,0);}
.m40_c00276{transform:matrix(0.233482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233482,0.000000,0.000000,0.250000,0,0);}
.m82_c00276{transform:matrix(0.242568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242568,0.000000,0.000000,0.250000,0,0);}
.m0_c00276{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m78_c00276{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.md_c00276{transform:matrix(0.252989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252989,0.000000,0.000000,0.250000,0,0);}
.m8b_c00276{transform:matrix(0.253467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253467,0.000000,0.000000,0.250000,0,0);}
.m19_c00276{transform:matrix(0.256576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256576,0.000000,0.000000,0.250000,0,0);}
.m4e_c00276{transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);}
.m4f_c00276{transform:matrix(0.259072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259072,0.000000,0.000000,0.250000,0,0);}
.m89_c00276{transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);}
.m9a_c00276{transform:matrix(0.259641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259641,0.000000,0.000000,0.250000,0,0);}
.m14_c00276{transform:matrix(0.260757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260757,0.000000,0.000000,0.250000,0,0);}
.m41_c00276{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m1c_c00276{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.m60_c00276{transform:matrix(0.261587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261587,0.000000,0.000000,0.250000,0,0);}
.m43_c00276{transform:matrix(0.261792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261792,0.000000,0.000000,0.250000,0,0);}
.m6a_c00276{transform:matrix(0.262150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262150,0.000000,0.000000,0.250000,0,0);}
.m92_c00276{transform:matrix(0.262549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262549,0.000000,0.000000,0.250000,0,0);}
.m3d_c00276{transform:matrix(0.262979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262979,0.000000,0.000000,0.250000,0,0);}
.me_c00276{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m91_c00276{transform:matrix(0.263395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263395,0.000000,0.000000,0.250000,0,0);}
.m24_c00276{transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);}
.m65_c00276{transform:matrix(0.264886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264886,0.000000,0.000000,0.250000,0,0);}
.m6c_c00276{transform:matrix(0.265972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265972,0.000000,0.000000,0.250000,0,0);}
.m3_c00276{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m1d_c00276{transform:matrix(0.266295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266295,0.000000,0.000000,0.250000,0,0);}
.m2c_c00276{transform:matrix(0.266312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266312,0.000000,0.000000,0.250000,0,0);}
.m8_c00276{transform:matrix(0.266509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266509,0.000000,0.000000,0.250000,0,0);}
.m2e_c00276{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.m2a_c00276{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m6f_c00276{transform:matrix(0.269233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269233,0.000000,0.000000,0.250000,0,0);}
.m34_c00276{transform:matrix(0.269911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269911,0.000000,0.000000,0.250000,0,0);}
.m48_c00276{transform:matrix(0.270015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270015,0.000000,0.000000,0.250000,0,0);}
.m7b_c00276{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m99_c00276{transform:matrix(0.271124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271124,0.000000,0.000000,0.250000,0,0);}
.m84_c00276{transform:matrix(0.271451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271451,0.000000,0.000000,0.250000,0,0);}
.m70_c00276{transform:matrix(0.271467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271467,0.000000,0.000000,0.250000,0,0);}
.m5d_c00276{transform:matrix(0.271634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271634,0.000000,0.000000,0.250000,0,0);}
.m59_c00276{transform:matrix(0.272548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272548,0.000000,0.000000,0.250000,0,0);}
.m54_c00276{transform:matrix(0.274240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274240,0.000000,0.000000,0.250000,0,0);}
.m9c_c00276{transform:matrix(0.274853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274853,0.000000,0.000000,0.250000,0,0);}
.m6e_c00276{transform:matrix(0.274952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274952,0.000000,0.000000,0.250000,0,0);}
.ma0_c00276{transform:matrix(0.275438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275438,0.000000,0.000000,0.250000,0,0);}
.m2_c00276{transform:matrix(0.276319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276319,0.000000,0.000000,0.250000,0,0);}
.m11_c00276{transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);}
.m4c_c00276{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m9e_c00276{transform:matrix(0.278038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278038,0.000000,0.000000,0.250000,0,0);}
.m86_c00276{transform:matrix(0.278106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278106,0.000000,0.000000,0.250000,0,0);}
.m13_c00276{transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);}
.m1a_c00276{transform:matrix(0.279663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279663,0.000000,0.000000,0.250000,0,0);}
.m7c_c00276{transform:matrix(0.279677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279677,0.000000,0.000000,0.250000,0,0);}
.m55_c00276{transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);}
.m22_c00276{transform:matrix(0.280356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280356,0.000000,0.000000,0.250000,0,0);}
.m1_c00276{transform:matrix(0.280756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280756,0.000000,0.000000,0.250000,0,0);}
.m49_c00276{transform:matrix(0.281417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281417,0.000000,0.000000,0.250000,0,0);}
.m9b_c00276{transform:matrix(0.281756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281756,0.000000,0.000000,0.250000,0,0);}
.m6d_c00276{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m1e_c00276{transform:matrix(0.283641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283641,0.000000,0.000000,0.250000,0,0);}
.m51_c00276{transform:matrix(0.284715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284715,0.000000,0.000000,0.250000,0,0);}
.m5_c00276{transform:matrix(0.285011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285011,0.000000,0.000000,0.250000,0,0);}
.m50_c00276{transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);}
.m85_c00276{transform:matrix(0.286069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286069,0.000000,0.000000,0.250000,0,0);}
.m28_c00276{transform:matrix(0.286402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286402,0.000000,0.000000,0.250000,0,0);}
.m25_c00276{transform:matrix(0.286698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286698,0.000000,0.000000,0.250000,0,0);}
.m2b_c00276{transform:matrix(0.287440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287440,0.000000,0.000000,0.250000,0,0);}
.m5b_c00276{transform:matrix(0.288323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288323,0.000000,0.000000,0.250000,0,0);}
.m3e_c00276{transform:matrix(0.288441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288441,0.000000,0.000000,0.250000,0,0);}
.m94_c00276{transform:matrix(0.289222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289222,0.000000,0.000000,0.250000,0,0);}
.m21_c00276{transform:matrix(0.289260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289260,0.000000,0.000000,0.250000,0,0);}
.m38_c00276{transform:matrix(0.290576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290576,0.000000,0.000000,0.250000,0,0);}
.m67_c00276{transform:matrix(0.290680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290680,0.000000,0.000000,0.250000,0,0);}
.m8f_c00276{transform:matrix(0.291725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291725,0.000000,0.000000,0.250000,0,0);}
.m97_c00276{transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);}
.m57_c00276{transform:matrix(0.292392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292392,0.000000,0.000000,0.250000,0,0);}
.m27_c00276{transform:matrix(0.292424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292424,0.000000,0.000000,0.250000,0,0);}
.m7a_c00276{transform:matrix(0.292527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292527,0.000000,0.000000,0.250000,0,0);}
.m72_c00276{transform:matrix(0.293146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293146,0.000000,0.000000,0.250000,0,0);}
.m68_c00276{transform:matrix(0.293626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293626,0.000000,0.000000,0.250000,0,0);}
.m4a_c00276{transform:matrix(0.294572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294572,0.000000,0.000000,0.250000,0,0);}
.m26_c00276{transform:matrix(0.295150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295150,0.000000,0.000000,0.250000,0,0);}
.mb_c00276{transform:matrix(0.296187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296187,0.000000,0.000000,0.250000,0,0);}
.m90_c00276{transform:matrix(0.296444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296444,0.000000,0.000000,0.250000,0,0);}
.m74_c00276{transform:matrix(0.296510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296510,0.000000,0.000000,0.250000,0,0);}
.m64_c00276{transform:matrix(0.296991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296991,0.000000,0.000000,0.250000,0,0);}
.m31_c00276{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m37_c00276{transform:matrix(0.297357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297357,0.000000,0.000000,0.250000,0,0);}
.m18_c00276{transform:matrix(0.298177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298177,0.000000,0.000000,0.250000,0,0);}
.m4d_c00276{transform:matrix(0.299270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299270,0.000000,0.000000,0.250000,0,0);}
.m56_c00276{transform:matrix(0.299520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299520,0.000000,0.000000,0.250000,0,0);}
.m88_c00276{transform:matrix(0.300422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300422,0.000000,0.000000,0.250000,0,0);}
.m47_c00276{transform:matrix(0.301078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301078,0.000000,0.000000,0.250000,0,0);}
.m7_c00276{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m8e_c00276{transform:matrix(0.302597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302597,0.000000,0.000000,0.250000,0,0);}
.m93_c00276{transform:matrix(0.302598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302598,0.000000,0.000000,0.250000,0,0);}
.m33_c00276{transform:matrix(0.303707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303707,0.000000,0.000000,0.250000,0,0);}
.m32_c00276{transform:matrix(0.304689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304689,0.000000,0.000000,0.250000,0,0);}
.m9_c00276{transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);}
.ma_c00276{transform:matrix(0.306846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306846,0.000000,0.000000,0.250000,0,0);}
.m8c_c00276{transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);}
.m3b_c00276{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m1f_c00276{transform:matrix(0.309291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309291,0.000000,0.000000,0.250000,0,0);}
.m6b_c00276{transform:matrix(0.309908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309908,0.000000,0.000000,0.250000,0,0);}
.m8d_c00276{transform:matrix(0.311822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311822,0.000000,0.000000,0.250000,0,0);}
.m5a_c00276{transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);}
.m58_c00276{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.m79_c00276{transform:matrix(0.312613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312613,0.000000,0.000000,0.250000,0,0);}
.m7e_c00276{transform:matrix(0.312862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312862,0.000000,0.000000,0.250000,0,0);}
.m42_c00276{transform:matrix(0.313619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313619,0.000000,0.000000,0.250000,0,0);}
.m5c_c00276{transform:matrix(0.313733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313733,0.000000,0.000000,0.250000,0,0);}
.m46_c00276{transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);}
.m39_c00276{transform:matrix(0.314133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314133,0.000000,0.000000,0.250000,0,0);}
.m77_c00276{transform:matrix(0.314318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314318,0.000000,0.000000,0.250000,0,0);}
.m61_c00276{transform:matrix(0.314880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314880,0.000000,0.000000,0.250000,0,0);}
.m30_c00276{transform:matrix(0.315480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315480,0.000000,0.000000,0.250000,0,0);}
.m4b_c00276{transform:matrix(0.315578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315578,0.000000,0.000000,0.250000,0,0);}
.m3f_c00276{transform:matrix(0.316046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316046,0.000000,0.000000,0.250000,0,0);}
.mf_c00276{transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);}
.m5e_c00276{transform:matrix(0.317031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317031,0.000000,0.000000,0.250000,0,0);}
.m10_c00276{transform:matrix(0.317523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317523,0.000000,0.000000,0.250000,0,0);}
.m71_c00276{transform:matrix(0.317996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317996,0.000000,0.000000,0.250000,0,0);}
.m96_c00276{transform:matrix(0.318018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318018,0.000000,0.000000,0.250000,0,0);}
.m63_c00276{transform:matrix(0.318088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318088,0.000000,0.000000,0.250000,0,0);}
.m3a_c00276{transform:matrix(0.319402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319402,0.000000,0.000000,0.250000,0,0);}
.m66_c00276{transform:matrix(0.319503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319503,0.000000,0.000000,0.250000,0,0);}
.m2f_c00276{transform:matrix(0.320064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320064,0.000000,0.000000,0.250000,0,0);}
.m8a_c00276{transform:matrix(0.321107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321107,0.000000,0.000000,0.250000,0,0);}
.m15_c00276{transform:matrix(0.321362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321362,0.000000,0.000000,0.250000,0,0);}
.mc_c00276{transform:matrix(0.321562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321562,0.000000,0.000000,0.250000,0,0);}
.m73_c00276{transform:matrix(0.322247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322247,0.000000,0.000000,0.250000,0,0);}
.m12_c00276{transform:matrix(0.322555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322555,0.000000,0.000000,0.250000,0,0);}
.m44_c00276{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.m7f_c00276{transform:matrix(0.323720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323720,0.000000,0.000000,0.250000,0,0);}
.m76_c00276{transform:matrix(0.323763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323763,0.000000,0.000000,0.250000,0,0);}
.m9f_c00276{transform:matrix(0.324420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324420,0.000000,0.000000,0.250000,0,0);}
.m62_c00276{transform:matrix(0.325583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325583,0.000000,0.000000,0.250000,0,0);}
.m6_c00276{transform:matrix(0.326260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326260,0.000000,0.000000,0.250000,0,0);}
.m98_c00276{transform:matrix(0.326341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326341,0.000000,0.000000,0.250000,0,0);}
.m17_c00276{transform:matrix(0.327239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327239,0.000000,0.000000,0.250000,0,0);}
.m52_c00276{transform:matrix(0.329309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329309,0.000000,0.000000,0.250000,0,0);}
.m23_c00276{transform:matrix(0.329581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329581,0.000000,0.000000,0.250000,0,0);}
.m2d_c00276{transform:matrix(0.329713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329713,0.000000,0.000000,0.250000,0,0);}
.m3c_c00276{transform:matrix(0.331874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331874,0.000000,0.000000,0.250000,0,0);}
.m1b_c00276{transform:matrix(0.332725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332725,0.000000,0.000000,0.250000,0,0);}
.m20_c00276{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m45_c00276{transform:matrix(0.334121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334121,0.000000,0.000000,0.250000,0,0);}
.m35_c00276{transform:matrix(0.337181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337181,0.000000,0.000000,0.250000,0,0);}
.m69_c00276{transform:matrix(0.338328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338328,0.000000,0.000000,0.250000,0,0);}
.m7d_c00276{transform:matrix(0.339040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339040,0.000000,0.000000,0.250000,0,0);}
.m36_c00276{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m5f_c00276{transform:matrix(0.345765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345765,0.000000,0.000000,0.250000,0,0);}
.m29_c00276{transform:matrix(0.347013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347013,0.000000,0.000000,0.250000,0,0);}
.m9d_c00276{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m4_c00276{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m87_c00276{transform:matrix(0.355345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355345,0.000000,0.000000,0.250000,0,0);}
.m75_c00276{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m95_c00276{transform:matrix(0.367117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367117,0.000000,0.000000,0.250000,0,0);}
.m83_c00276{transform:matrix(0.374714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374714,0.000000,0.000000,0.250000,0,0);}
.m81_c00276{transform:matrix(0.407787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407787,0.000000,0.000000,0.250000,0,0);}
.v1_c00276{vertical-align:-19.978200px;}
.v0_c00276{vertical-align:0.000000px;}
.ls5_c00276{letter-spacing:-2.744280px;}
.lsa_c00276{letter-spacing:-2.485534px;}
.ls4_c00276{letter-spacing:-2.375762px;}
.lse_c00276{letter-spacing:-0.987941px;}
.ls10_c00276{letter-spacing:-0.972259px;}
.lsb_c00276{letter-spacing:-0.250906px;}
.lsc_c00276{letter-spacing:-0.125453px;}
.ls2_c00276{letter-spacing:0.000000px;}
.ls13_c00276{letter-spacing:1.089871px;}
.ls11_c00276{letter-spacing:1.944518px;}
.ls0_c00276{letter-spacing:2.030767px;}
.lsf_c00276{letter-spacing:2.132698px;}
.ls1_c00276{letter-spacing:2.634509px;}
.ls12_c00276{letter-spacing:2.689394px;}
.ls9_c00276{letter-spacing:3.112798px;}
.lsd_c00276{letter-spacing:3.276900px;}
.ls8_c00276{letter-spacing:3.355862px;}
.ls6_c00276{letter-spacing:3.544200px;}
.ls7_c00276{letter-spacing:3.677335px;}
.ls3_c00276{letter-spacing:3.920400px;}
.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;}
}
.ws2_c00276{word-spacing:-22.236509px;}
.ws5_c00276{word-spacing:-21.734698px;}
.ws0_c00276{word-spacing:-21.632767px;}
.ws1_c00276{word-spacing:-19.602000px;}
.ws4_c00276{word-spacing:-19.351094px;}
.ws6_c00276{word-spacing:-18.629741px;}
.ws3_c00276{word-spacing:-17.116466px;}
.ws7_c00276{word-spacing:0.000000px;}
._4_c00276{margin-left:-13.172544px;}
._9_c00276{margin-left:-3.529152px;}
._6_c00276{width:1.285495px;}
._0_c00276{width:4.884818px;}
._1_c00276{width:6.351840px;}
._f_c00276{width:7.425238px;}
._5_c00276{width:8.703288px;}
._b_c00276{width:9.957420px;}
._8_c00276{width:10.977120px;}
._7_c00276{width:21.797424px;}
._d_c00276{width:23.208768px;}
._2_c00276{width:25.246980px;}
._c_c00276{width:29.010960px;}
._a_c00276{width:30.685486px;}
._3_c00276{width:32.696928px;}
._e_c00276{width:35.437248px;}
._10_c00276{width:308.384208px;}
.fc0_c00276{color:transparent;}
.fs7_c00276{font-size:22.572000px;}
.fs2_c00276{font-size:27.720000px;}
.fs0_c00276{font-size:28.314000px;}
.fs6_c00276{font-size:33.264000px;}
.fs5_c00276{font-size:65.538000px;}
.fs3_c00276{font-size:66.330000px;}
.fs4_c00276{font-size:70.884000px;}
.fs1_c00276{font-size:78.408000px;}
.y0_c00276{bottom:0.000000px;}
.y1_c00276{bottom:76.500000px;}
.y1b_c00276{bottom:86.517135px;}
.y1a_c00276{bottom:136.056735px;}
.y19_c00276{bottom:166.707135px;}
.y18_c00276{bottom:232.997535px;}
.y17_c00276{bottom:265.429935px;}
.y16_c00276{bottom:297.505935px;}
.y15_c00276{bottom:329.581935px;}
.y14_c00276{bottom:361.652985px;}
.y13_c00276{bottom:395.867385px;}
.y12_c00276{bottom:460.024335px;}
.y11_c00276{bottom:492.100335px;}
.y10_c00276{bottom:524.171385px;}
.yf_c00276{bottom:556.252335px;}
.ye_c00276{bottom:589.041135px;}
.yd_c00276{bottom:621.112185px;}
.yc_c00276{bottom:654.618735px;}
.yb_c00276{bottom:719.483535px;}
.ya_c00276{bottom:752.628735px;}
.y9_c00276{bottom:783.635535px;}
.y8_c00276{bottom:816.067935px;}
.y7_c00276{bottom:848.495385px;}
.y6_c00276{bottom:880.927785px;}
.y5_c00276{bottom:913.716585px;}
.y4_c00276{bottom:1029.546585px;}
.y2_c00276{bottom:1040.951385px;}
.y3_c00276{bottom:1066.968585px;}
.h4_c00276{height:28.911094px;}
.h2_c00276{height:29.530617px;}
.h7_c00276{height:34.693313px;}
.h6_c00276{height:68.354086px;}
.h5_c00276{height:69.568770px;}
.h3_c00276{height:76.953164px;}
.h1_c00276{height:1110.000000px;}
.h0_c00276{height:1263.000000px;}
.w1_c00276{width:763.500000px;}
.w0_c00276{width:892.500000px;}
.x0_c00276{left:0.000000px;}
.x2_c00276{left:61.351335px;}
.x1_c00276{left:64.500000px;}
.x46_c00276{left:69.677235px;}
.x2d_c00276{left:71.097885px;}
.x33_c00276{left:72.855135px;}
.x1a_c00276{left:74.127285px;}
.x5_c00276{left:75.364785px;}
.x6c_c00276{left:104.040135px;}
.x60_c00276{left:113.197635px;}
.x6e_c00276{left:114.781635px;}
.x34_c00276{left:126.003285px;}
.x6_c00276{left:131.507685px;}
.x4e_c00276{left:137.185335px;}
.x11_c00276{left:140.878035px;}
.x35_c00276{left:148.109985px;}
.x47_c00276{left:158.613885px;}
.x3e_c00276{left:159.643485px;}
.x1b_c00276{left:162.153135px;}
.x7_c00276{left:163.207485px;}
.x54_c00276{left:168.439635px;}
.x65_c00276{left:170.587935px;}
.x73_c00276{left:180.091935px;}
.x79_c00276{left:181.299735px;}
.x7b_c00276{left:182.834235px;}
.x12_c00276{left:183.923235px;}
.x36_c00276{left:191.759085px;}
.x7e_c00276{left:193.620285px;}
.x8_c00276{left:194.842935px;}
.x4f_c00276{left:201.941235px;}
.x1c_c00276{left:204.361785px;}
.x55_c00276{left:213.732135px;}
.x6f_c00276{left:215.256735px;}
.x13_c00276{left:217.355535px;}
.x23_c00276{left:227.206035px;}
.x50_c00276{left:235.046835px;}
.x37_c00276{left:236.937735px;}
.x70_c00276{left:247.699035px;}
.x7a_c00276{left:249.644385px;}
.x48_c00276{left:258.564285px;}
.x76_c00276{left:261.153135px;}
.x38_c00276{left:268.974135px;}
.x2e_c00276{left:270.691785px;}
.x14_c00276{left:272.651985px;}
.x68_c00276{left:280.027485px;}
.x9_c00276{left:282.878685px;}
.x1d_c00276{left:284.215185px;}
.x74_c00276{left:291.070935px;}
.x66_c00276{left:292.150035px;}
.x15_c00276{left:293.471685px;}
.x5c_c00276{left:302.208435px;}
.x1e_c00276{left:303.767685px;}
.x2f_c00276{left:304.940835px;}
.x49_c00276{left:313.835985px;}
.x24_c00276{left:315.796185px;}
.x67_c00276{left:324.572535px;}
.x7c_c00276{left:326.399085px;}
.x25_c00276{left:337.477185px;}
.x71_c00276{left:343.125135px;}
.x5d_c00276{left:346.312935px;}
.x4a_c00276{left:357.648435px;}
.x1f_c00276{left:359.177985px;}
.x3f_c00276{left:369.246285px;}
.xa_c00276{left:371.750985px;}
.x51_c00276{left:379.225485px;}
.x16_c00276{left:380.497635px;}
.x26_c00276{left:382.383585px;}
.x40_c00276{left:390.927285px;}
.x75_c00276{left:393.377535px;}
.x61_c00276{left:401.554935px;}
.x30_c00276{left:404.044785px;}
.x69_c00276{left:412.182585px;}
.x52_c00276{left:413.410185px;}
.x41_c00276{left:422.869635px;}
.x77_c00276{left:423.919035px;}
.x27_c00276{left:425.433735px;}
.xb_c00276{left:426.488085px;}
.x5e_c00276{left:435.175335px;}
.x28_c00276{left:437.130585px;}
.x62_c00276{left:446.228685px;}
.xc_c00276{left:459.415485px;}
.x4b_c00276{left:467.617635px;}
.x39_c00276{left:468.691785px;}
.x3a_c00276{left:478.963035px;}
.x20_c00276{left:481.126185px;}
.x56_c00276{left:489.986685px;}
.x29_c00276{left:491.491485px;}
.x42_c00276{left:500.762835px;}
.x31_c00276{left:502.856685px;}
.x63_c00276{left:511.682535px;}
.x2a_c00276{left:513.464535px;}
.x17_c00276{left:514.622835px;}
.x57_c00276{left:523.082385px;}
.x6a_c00276{left:533.546685px;}
.xd_c00276{left:536.368185px;}
.x5f_c00276{left:544.114935px;}
.x3b_c00276{left:545.580135px;}
.x53_c00276{left:551.262735px;}
.x58_c00276{left:555.158385px;}
.x7d_c00276{left:556.638435px;}
.x6d_c00276{left:566.855235px;}
.x18_c00276{left:569.498535px;}
.x3c_c00276{left:578.086785px;}
.xe_c00276{left:580.111335px;}
.x64_c00276{left:588.303585px;}
.x21_c00276{left:590.709285px;}
.x4_c00276{left:591.738885px;}
.x59_c00276{left:599.837085px;}
.xf_c00276{left:602.643735px;}
.x4c_c00276{left:609.994485px;}
.x6b_c00276{left:611.212185px;}
.x19_c00276{left:613.162485px;}
.x5a_c00276{left:619.998435px;}
.x78_c00276{left:621.023085px;}
.x43_c00276{left:632.799135px;}
.x4d_c00276{left:643.901985px;}
.x2b_c00276{left:645.624585px;}
.x44_c00276{left:654.188085px;}
.x3_c00276{left:657.514485px;}
.x3d_c00276{left:665.384985px;}
.x10_c00276{left:670.686435px;}
.x45_c00276{left:676.779885px;}
.x72_c00276{left:698.916285px;}
.x32_c00276{left:700.312185px;}
.x22_c00276{left:701.331885px;}
.x5b_c00276{left:709.934985px;}
.x2c_c00276{left:714.137535px;}
@media print{
.v1_c00276{vertical-align:-17.758400pt;}
.v0_c00276{vertical-align:0.000000pt;}
.ls5_c00276{letter-spacing:-2.439360pt;}
.lsa_c00276{letter-spacing:-2.209363pt;}
.ls4_c00276{letter-spacing:-2.111789pt;}
.lse_c00276{letter-spacing:-0.878170pt;}
.ls10_c00276{letter-spacing:-0.864230pt;}
.lsb_c00276{letter-spacing:-0.223027pt;}
.lsc_c00276{letter-spacing:-0.111514pt;}
.ls2_c00276{letter-spacing:0.000000pt;}
.ls13_c00276{letter-spacing:0.968774pt;}
.ls11_c00276{letter-spacing:1.728461pt;}
.ls0_c00276{letter-spacing:1.805126pt;}
.lsf_c00276{letter-spacing:1.895731pt;}
.ls1_c00276{letter-spacing:2.341786pt;}
.ls12_c00276{letter-spacing:2.390573pt;}
.ls9_c00276{letter-spacing:2.766931pt;}
.lsd_c00276{letter-spacing:2.912800pt;}
.ls8_c00276{letter-spacing:2.982989pt;}
.ls6_c00276{letter-spacing:3.150400pt;}
.ls7_c00276{letter-spacing:3.268742pt;}
.ls3_c00276{letter-spacing:3.484800pt;}
.ws2_c00276{word-spacing:-19.765786pt;}
.ws5_c00276{word-spacing:-19.319731pt;}
.ws0_c00276{word-spacing:-19.229126pt;}
.ws1_c00276{word-spacing:-17.424000pt;}
.ws4_c00276{word-spacing:-17.200973pt;}
.ws6_c00276{word-spacing:-16.559770pt;}
.ws3_c00276{word-spacing:-15.214637pt;}
.ws7_c00276{word-spacing:0.000000pt;}
._4_c00276{margin-left:-11.708928pt;}
._9_c00276{margin-left:-3.137024pt;}
._6_c00276{width:1.142662pt;}
._0_c00276{width:4.342061pt;}
._1_c00276{width:5.646080pt;}
._f_c00276{width:6.600211pt;}
._5_c00276{width:7.736256pt;}
._b_c00276{width:8.851040pt;}
._8_c00276{width:9.757440pt;}
._7_c00276{width:19.375488pt;}
._d_c00276{width:20.630016pt;}
._2_c00276{width:22.441760pt;}
._c_c00276{width:25.787520pt;}
._a_c00276{width:27.275987pt;}
._3_c00276{width:29.063936pt;}
._e_c00276{width:31.499776pt;}
._10_c00276{width:274.119296pt;}
.fs7_c00276{font-size:20.064000pt;}
.fs2_c00276{font-size:24.640000pt;}
.fs0_c00276{font-size:25.168000pt;}
.fs6_c00276{font-size:29.568000pt;}
.fs5_c00276{font-size:58.256000pt;}
.fs3_c00276{font-size:58.960000pt;}
.fs4_c00276{font-size:63.008000pt;}
.fs1_c00276{font-size:69.696000pt;}
.y0_c00276{bottom:0.000000pt;}
.y1_c00276{bottom:68.000000pt;}
.y1b_c00276{bottom:76.904120pt;}
.y1a_c00276{bottom:120.939320pt;}
.y19_c00276{bottom:148.184120pt;}
.y18_c00276{bottom:207.108920pt;}
.y17_c00276{bottom:235.937720pt;}
.y16_c00276{bottom:264.449720pt;}
.y15_c00276{bottom:292.961720pt;}
.y14_c00276{bottom:321.469320pt;}
.y13_c00276{bottom:351.882120pt;}
.y12_c00276{bottom:408.910520pt;}
.y11_c00276{bottom:437.422520pt;}
.y10_c00276{bottom:465.930120pt;}
.yf_c00276{bottom:494.446520pt;}
.ye_c00276{bottom:523.592120pt;}
.yd_c00276{bottom:552.099720pt;}
.yc_c00276{bottom:581.883320pt;}
.yb_c00276{bottom:639.540920pt;}
.ya_c00276{bottom:669.003320pt;}
.y9_c00276{bottom:696.564920pt;}
.y8_c00276{bottom:725.393720pt;}
.y7_c00276{bottom:754.218120pt;}
.y6_c00276{bottom:783.046920pt;}
.y5_c00276{bottom:812.192520pt;}
.y4_c00276{bottom:915.152520pt;}
.y2_c00276{bottom:925.290120pt;}
.y3_c00276{bottom:948.416520pt;}
.h4_c00276{height:25.698750pt;}
.h2_c00276{height:26.249438pt;}
.h7_c00276{height:30.838500pt;}
.h6_c00276{height:60.759188pt;}
.h5_c00276{height:61.838906pt;}
.h3_c00276{height:68.402813pt;}
.h1_c00276{height:986.666667pt;}
.h0_c00276{height:1122.666667pt;}
.w1_c00276{width:678.666667pt;}
.w0_c00276{width:793.333333pt;}
.x0_c00276{left:0.000000pt;}
.x2_c00276{left:54.534520pt;}
.x1_c00276{left:57.333333pt;}
.x46_c00276{left:61.935320pt;}
.x2d_c00276{left:63.198120pt;}
.x33_c00276{left:64.760120pt;}
.x1a_c00276{left:65.890920pt;}
.x5_c00276{left:66.990920pt;}
.x6c_c00276{left:92.480120pt;}
.x60_c00276{left:100.620120pt;}
.x6e_c00276{left:102.028120pt;}
.x34_c00276{left:112.002920pt;}
.x6_c00276{left:116.895720pt;}
.x4e_c00276{left:121.942520pt;}
.x11_c00276{left:125.224920pt;}
.x35_c00276{left:131.653320pt;}
.x47_c00276{left:140.990120pt;}
.x3e_c00276{left:141.905320pt;}
.x1b_c00276{left:144.136120pt;}
.x7_c00276{left:145.073320pt;}
.x54_c00276{left:149.724120pt;}
.x65_c00276{left:151.633720pt;}
.x73_c00276{left:160.081720pt;}
.x79_c00276{left:161.155320pt;}
.x7b_c00276{left:162.519320pt;}
.x12_c00276{left:163.487320pt;}
.x36_c00276{left:170.452520pt;}
.x7e_c00276{left:172.106920pt;}
.x8_c00276{left:173.193720pt;}
.x4f_c00276{left:179.503320pt;}
.x1c_c00276{left:181.654920pt;}
.x55_c00276{left:189.984120pt;}
.x6f_c00276{left:191.339320pt;}
.x13_c00276{left:193.204920pt;}
.x23_c00276{left:201.960920pt;}
.x50_c00276{left:208.930520pt;}
.x37_c00276{left:210.611320pt;}
.x70_c00276{left:220.176920pt;}
.x7a_c00276{left:221.906120pt;}
.x48_c00276{left:229.834920pt;}
.x76_c00276{left:232.136120pt;}
.x38_c00276{left:239.088120pt;}
.x2e_c00276{left:240.614920pt;}
.x14_c00276{left:242.357320pt;}
.x68_c00276{left:248.913320pt;}
.x9_c00276{left:251.447720pt;}
.x1d_c00276{left:252.635720pt;}
.x74_c00276{left:258.729720pt;}
.x66_c00276{left:259.688920pt;}
.x15_c00276{left:260.863720pt;}
.x5c_c00276{left:268.629720pt;}
.x1e_c00276{left:270.015720pt;}
.x2f_c00276{left:271.058520pt;}
.x49_c00276{left:278.965320pt;}
.x24_c00276{left:280.707720pt;}
.x67_c00276{left:288.508920pt;}
.x7c_c00276{left:290.132520pt;}
.x25_c00276{left:299.979720pt;}
.x71_c00276{left:305.000120pt;}
.x5d_c00276{left:307.833720pt;}
.x4a_c00276{left:317.909720pt;}
.x1f_c00276{left:319.269320pt;}
.x3f_c00276{left:328.218920pt;}
.xa_c00276{left:330.445320pt;}
.x51_c00276{left:337.089320pt;}
.x16_c00276{left:338.220120pt;}
.x26_c00276{left:339.896520pt;}
.x40_c00276{left:347.490920pt;}
.x75_c00276{left:349.668920pt;}
.x61_c00276{left:356.937720pt;}
.x30_c00276{left:359.150920pt;}
.x69_c00276{left:366.384520pt;}
.x52_c00276{left:367.475720pt;}
.x41_c00276{left:375.884120pt;}
.x77_c00276{left:376.816920pt;}
.x27_c00276{left:378.163320pt;}
.xb_c00276{left:379.100520pt;}
.x5e_c00276{left:386.822520pt;}
.x28_c00276{left:388.560520pt;}
.x62_c00276{left:396.647720pt;}
.xc_c00276{left:408.369320pt;}
.x4b_c00276{left:415.660120pt;}
.x39_c00276{left:416.614920pt;}
.x3a_c00276{left:425.744920pt;}
.x20_c00276{left:427.667720pt;}
.x56_c00276{left:435.543720pt;}
.x29_c00276{left:436.881320pt;}
.x42_c00276{left:445.122520pt;}
.x31_c00276{left:446.983720pt;}
.x63_c00276{left:454.828920pt;}
.x2a_c00276{left:456.412920pt;}
.x17_c00276{left:457.442520pt;}
.x57_c00276{left:464.962120pt;}
.x6a_c00276{left:474.263720pt;}
.xd_c00276{left:476.771720pt;}
.x5f_c00276{left:483.657720pt;}
.x3b_c00276{left:484.960120pt;}
.x53_c00276{left:490.011320pt;}
.x58_c00276{left:493.474120pt;}
.x7d_c00276{left:494.789720pt;}
.x6d_c00276{left:503.871320pt;}
.x18_c00276{left:506.220920pt;}
.x3c_c00276{left:513.854920pt;}
.xe_c00276{left:515.654520pt;}
.x64_c00276{left:522.936520pt;}
.x21_c00276{left:525.074920pt;}
.x4_c00276{left:525.990120pt;}
.x59_c00276{left:533.188520pt;}
.xf_c00276{left:535.683320pt;}
.x4c_c00276{left:542.217320pt;}
.x6b_c00276{left:543.299720pt;}
.x19_c00276{left:545.033320pt;}
.x5a_c00276{left:551.109720pt;}
.x78_c00276{left:552.020520pt;}
.x43_c00276{left:562.488120pt;}
.x4d_c00276{left:572.357320pt;}
.x2b_c00276{left:573.888520pt;}
.x44_c00276{left:581.500520pt;}
.x3_c00276{left:584.457320pt;}
.x3d_c00276{left:591.453320pt;}
.x10_c00276{left:596.165720pt;}
.x45_c00276{left:601.582120pt;}
.x72_c00276{left:621.258920pt;}
.x32_c00276{left:622.499720pt;}
.x22_c00276{left:623.406120pt;}
.x5b_c00276{left:631.053320pt;}
.x2c_c00276{left:634.788920pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_71dd9c8a6f714c474d319c92.woff2')format("woff");}.ff1_c00277{font-family:ff1_c00277;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00277;src:url('chunks/assets/font_4dc14d0d7a35dff846e2075c.woff2')format("woff");}.ff2_c00277{font-family:ff2_c00277;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00277;src:url('chunks/assets/font_2fac64036b4de4901aa7bad0.woff2')format("woff");}.ff3_c00277{font-family:ff3_c00277;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00277;src:url('chunks/assets/font_b2e4779d4efad4c62dbcca23.woff2')format("woff");}.ff4_c00277{font-family:ff4_c00277;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00277;src:url('chunks/assets/font_0185530bb47339ed2816c54e.woff2')format("woff");}.ff5_c00277{font-family:ff5_c00277;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m14_c00277{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);}
.m79_c00277{transform:matrix(0.170732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170732,0.000000,0.000000,0.250000,0,0);}
.m12_c00277{transform:matrix(0.173610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173610,0.000000,0.000000,0.250000,0,0);}
.m13_c00277{transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);}
.mae_c00277{transform:matrix(0.220377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220377,0.000000,0.000000,0.250000,0,0);}
.m9d_c00277{transform:matrix(0.232008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232008,0.000000,0.000000,0.250000,0,0);}
.m1_c00277{transform:matrix(0.240374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240374,0.000000,0.000000,0.250000,0,0);}
.m69_c00277{transform:matrix(0.247349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247349,0.000000,0.000000,0.250000,0,0);}
.m0_c00277{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00277{transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);}
.m97_c00277{transform:matrix(0.255030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255030,0.000000,0.000000,0.250000,0,0);}
.m4a_c00277{transform:matrix(0.257794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257794,0.000000,0.000000,0.250000,0,0);}
.m8b_c00277{transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);}
.m7f_c00277{transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);}
.m75_c00277{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m28_c00277{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.m66_c00277{transform:matrix(0.262649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262649,0.000000,0.000000,0.250000,0,0);}
.m45_c00277{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m87_c00277{transform:matrix(0.263563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263563,0.000000,0.000000,0.250000,0,0);}
.m63_c00277{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m95_c00277{transform:matrix(0.264751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264751,0.000000,0.000000,0.250000,0,0);}
.m4f_c00277{transform:matrix(0.264790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264790,0.000000,0.000000,0.250000,0,0);}
.m1f_c00277{transform:matrix(0.265372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265372,0.000000,0.000000,0.250000,0,0);}
.m4e_c00277{transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);}
.ma_c00277{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m47_c00277{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.m19_c00277{transform:matrix(0.267205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267205,0.000000,0.000000,0.250000,0,0);}
.ma5_c00277{transform:matrix(0.267339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267339,0.000000,0.000000,0.250000,0,0);}
.md_c00277{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m1b_c00277{transform:matrix(0.268266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268266,0.000000,0.000000,0.250000,0,0);}
.m27_c00277{transform:matrix(0.268484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268484,0.000000,0.000000,0.250000,0,0);}
.m7b_c00277{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.m78_c00277{transform:matrix(0.268783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268783,0.000000,0.000000,0.250000,0,0);}
.ma3_c00277{transform:matrix(0.269234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269234,0.000000,0.000000,0.250000,0,0);}
.m17_c00277{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m42_c00277{transform:matrix(0.271440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271440,0.000000,0.000000,0.250000,0,0);}
.m10_c00277{transform:matrix(0.272023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272023,0.000000,0.000000,0.250000,0,0);}
.m2e_c00277{transform:matrix(0.272105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272105,0.000000,0.000000,0.250000,0,0);}
.m50_c00277{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m74_c00277{transform:matrix(0.273292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273292,0.000000,0.000000,0.250000,0,0);}
.m37_c00277{transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);}
.m39_c00277{transform:matrix(0.274132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274132,0.000000,0.000000,0.250000,0,0);}
.m94_c00277{transform:matrix(0.274554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274554,0.000000,0.000000,0.250000,0,0);}
.m6b_c00277{transform:matrix(0.274650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274650,0.000000,0.000000,0.250000,0,0);}
.m5a_c00277{transform:matrix(0.275486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275486,0.000000,0.000000,0.250000,0,0);}
.m3d_c00277{transform:matrix(0.276166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276166,0.000000,0.000000,0.250000,0,0);}
.m8_c00277{transform:matrix(0.276607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276607,0.000000,0.000000,0.250000,0,0);}
.m44_c00277{transform:matrix(0.276655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276655,0.000000,0.000000,0.250000,0,0);}
.m4_c00277{transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);}
.mb_c00277{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m90_c00277{transform:matrix(0.277360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277360,0.000000,0.000000,0.250000,0,0);}
.ma8_c00277{transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);}
.m59_c00277{transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);}
.m76_c00277{transform:matrix(0.278997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278997,0.000000,0.000000,0.250000,0,0);}
.m64_c00277{transform:matrix(0.279302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279302,0.000000,0.000000,0.250000,0,0);}
.m9a_c00277{transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);}
.m52_c00277{transform:matrix(0.280100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280100,0.000000,0.000000,0.250000,0,0);}
.m8e_c00277{transform:matrix(0.280764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280764,0.000000,0.000000,0.250000,0,0);}
.m48_c00277{transform:matrix(0.281405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281405,0.000000,0.000000,0.250000,0,0);}
.m25_c00277{transform:matrix(0.281453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281453,0.000000,0.000000,0.250000,0,0);}
.m36_c00277{transform:matrix(0.281782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281782,0.000000,0.000000,0.250000,0,0);}
.m70_c00277{transform:matrix(0.281783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281783,0.000000,0.000000,0.250000,0,0);}
.m65_c00277{transform:matrix(0.283943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283943,0.000000,0.000000,0.250000,0,0);}
.m29_c00277{transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);}
.ma6_c00277{transform:matrix(0.285507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285507,0.000000,0.000000,0.250000,0,0);}
.m34_c00277{transform:matrix(0.285890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285890,0.000000,0.000000,0.250000,0,0);}
.maf_c00277{transform:matrix(0.286047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286047,0.000000,0.000000,0.250000,0,0);}
.m2b_c00277{transform:matrix(0.286270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286270,0.000000,0.000000,0.250000,0,0);}
.m61_c00277{transform:matrix(0.286949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286949,0.000000,0.000000,0.250000,0,0);}
.mac_c00277{transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);}
.m8a_c00277{transform:matrix(0.287265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287265,0.000000,0.000000,0.250000,0,0);}
.mb0_c00277{transform:matrix(0.287521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287521,0.000000,0.000000,0.250000,0,0);}
.m85_c00277{transform:matrix(0.287715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287715,0.000000,0.000000,0.250000,0,0);}
.m6c_c00277{transform:matrix(0.287899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287899,0.000000,0.000000,0.250000,0,0);}
.m2f_c00277{transform:matrix(0.288557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288557,0.000000,0.000000,0.250000,0,0);}
.ma4_c00277{transform:matrix(0.288778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288778,0.000000,0.000000,0.250000,0,0);}
.m67_c00277{transform:matrix(0.289177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289177,0.000000,0.000000,0.250000,0,0);}
.m54_c00277{transform:matrix(0.289935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289935,0.000000,0.000000,0.250000,0,0);}
.m6e_c00277{transform:matrix(0.289941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289941,0.000000,0.000000,0.250000,0,0);}
.mb2_c00277{transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290564,0.000000,0.000000,0.250000,0,0);}
.m4c_c00277{transform:matrix(0.290935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290935,0.000000,0.000000,0.250000,0,0);}
.m46_c00277{transform:matrix(0.291575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291575,0.000000,0.000000,0.250000,0,0);}
.m2a_c00277{transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);}
.m68_c00277{transform:matrix(0.292127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292127,0.000000,0.000000,0.250000,0,0);}
.m83_c00277{transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);}
.m5c_c00277{transform:matrix(0.293146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293146,0.000000,0.000000,0.250000,0,0);}
.mc_c00277{transform:matrix(0.294033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294033,0.000000,0.000000,0.250000,0,0);}
.ma2_c00277{transform:matrix(0.294407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294407,0.000000,0.000000,0.250000,0,0);}
.m72_c00277{transform:matrix(0.294713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294713,0.000000,0.000000,0.250000,0,0);}
.m15_c00277{transform:matrix(0.294797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294797,0.000000,0.000000,0.250000,0,0);}
.mb1_c00277{transform:matrix(0.295516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295516,0.000000,0.000000,0.250000,0,0);}
.m3e_c00277{transform:matrix(0.295728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295728,0.000000,0.000000,0.250000,0,0);}
.m6a_c00277{transform:matrix(0.296935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296935,0.000000,0.000000,0.250000,0,0);}
.m35_c00277{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m7c_c00277{transform:matrix(0.297722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297722,0.000000,0.000000,0.250000,0,0);}
.m2_c00277{transform:matrix(0.298037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298037,0.000000,0.000000,0.250000,0,0);}
.m62_c00277{transform:matrix(0.298303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298303,0.000000,0.000000,0.250000,0,0);}
.m9c_c00277{transform:matrix(0.298349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298349,0.000000,0.000000,0.250000,0,0);}
.m7e_c00277{transform:matrix(0.299372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299372,0.000000,0.000000,0.250000,0,0);}
.m3c_c00277{transform:matrix(0.299482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299482,0.000000,0.000000,0.250000,0,0);}
.m24_c00277{transform:matrix(0.299564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299564,0.000000,0.000000,0.250000,0,0);}
.m82_c00277{transform:matrix(0.299868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299868,0.000000,0.000000,0.250000,0,0);}
.m20_c00277{transform:matrix(0.300614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300614,0.000000,0.000000,0.250000,0,0);}
.m1a_c00277{transform:matrix(0.302359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302359,0.000000,0.000000,0.250000,0,0);}
.m23_c00277{transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);}
.m57_c00277{transform:matrix(0.303450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303450,0.000000,0.000000,0.250000,0,0);}
.m5f_c00277{transform:matrix(0.303715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303715,0.000000,0.000000,0.250000,0,0);}
.m3_c00277{transform:matrix(0.304765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304765,0.000000,0.000000,0.250000,0,0);}
.m7a_c00277{transform:matrix(0.304800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304800,0.000000,0.000000,0.250000,0,0);}
.ma0_c00277{transform:matrix(0.304831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304831,0.000000,0.000000,0.250000,0,0);}
.m93_c00277{transform:matrix(0.304953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304953,0.000000,0.000000,0.250000,0,0);}
.m26_c00277{transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);}
.m43_c00277{transform:matrix(0.306206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306206,0.000000,0.000000,0.250000,0,0);}
.m7d_c00277{transform:matrix(0.306703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306703,0.000000,0.000000,0.250000,0,0);}
.ma9_c00277{transform:matrix(0.306734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306734,0.000000,0.000000,0.250000,0,0);}
.m55_c00277{transform:matrix(0.307034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307034,0.000000,0.000000,0.250000,0,0);}
.m88_c00277{transform:matrix(0.308167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308167,0.000000,0.000000,0.250000,0,0);}
.m1d_c00277{transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);}
.m4d_c00277{transform:matrix(0.308742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308742,0.000000,0.000000,0.250000,0,0);}
.ma1_c00277{transform:matrix(0.308759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308759,0.000000,0.000000,0.250000,0,0);}
.m4b_c00277{transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);}
.m3b_c00277{transform:matrix(0.309027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309027,0.000000,0.000000,0.250000,0,0);}
.m84_c00277{transform:matrix(0.309336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309336,0.000000,0.000000,0.250000,0,0);}
.m30_c00277{transform:matrix(0.309861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309861,0.000000,0.000000,0.250000,0,0);}
.m1c_c00277{transform:matrix(0.310079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310079,0.000000,0.000000,0.250000,0,0);}
.m5_c00277{transform:matrix(0.310854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310854,0.000000,0.000000,0.250000,0,0);}
.m53_c00277{transform:matrix(0.311017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311017,0.000000,0.000000,0.250000,0,0);}
.mb4_c00277{transform:matrix(0.312139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312139,0.000000,0.000000,0.250000,0,0);}
.m86_c00277{transform:matrix(0.312751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312751,0.000000,0.000000,0.250000,0,0);}
.mf_c00277{transform:matrix(0.312862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312862,0.000000,0.000000,0.250000,0,0);}
.m58_c00277{transform:matrix(0.313155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313155,0.000000,0.000000,0.250000,0,0);}
.m9_c00277{transform:matrix(0.313301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313301,0.000000,0.000000,0.250000,0,0);}
.m21_c00277{transform:matrix(0.313500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00277{transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);}
.m56_c00277{transform:matrix(0.315454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315454,0.000000,0.000000,0.250000,0,0);}
.m9f_c00277{transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);}
.mab_c00277{transform:matrix(0.316831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316831,0.000000,0.000000,0.250000,0,0);}
.m89_c00277{transform:matrix(0.317042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317042,0.000000,0.000000,0.250000,0,0);}
.m3f_c00277{transform:matrix(0.319290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319290,0.000000,0.000000,0.250000,0,0);}
.m18_c00277{transform:matrix(0.319430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319430,0.000000,0.000000,0.250000,0,0);}
.m8f_c00277{transform:matrix(0.319448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319448,0.000000,0.000000,0.250000,0,0);}
.m6_c00277{transform:matrix(0.322729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322729,0.000000,0.000000,0.250000,0,0);}
.m22_c00277{transform:matrix(0.323587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323587,0.000000,0.000000,0.250000,0,0);}
.m2c_c00277{transform:matrix(0.323720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323720,0.000000,0.000000,0.250000,0,0);}
.mad_c00277{transform:matrix(0.325174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325174,0.000000,0.000000,0.250000,0,0);}
.m5b_c00277{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m32_c00277{transform:matrix(0.327374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327374,0.000000,0.000000,0.250000,0,0);}
.maa_c00277{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.m8c_c00277{transform:matrix(0.328886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328886,0.000000,0.000000,0.250000,0,0);}
.m77_c00277{transform:matrix(0.329405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329405,0.000000,0.000000,0.250000,0,0);}
.m98_c00277{transform:matrix(0.330950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330950,0.000000,0.000000,0.250000,0,0);}
.m73_c00277{transform:matrix(0.331265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331265,0.000000,0.000000,0.250000,0,0);}
.ma7_c00277{transform:matrix(0.331482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331482,0.000000,0.000000,0.250000,0,0);}
.m11_c00277{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m9e_c00277{transform:matrix(0.334105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334105,0.000000,0.000000,0.250000,0,0);}
.m51_c00277{transform:matrix(0.334121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334121,0.000000,0.000000,0.250000,0,0);}
.mb3_c00277{transform:matrix(0.334307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334307,0.000000,0.000000,0.250000,0,0);}
.m80_c00277{transform:matrix(0.334728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334728,0.000000,0.000000,0.250000,0,0);}
.m81_c00277{transform:matrix(0.335078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335078,0.000000,0.000000,0.250000,0,0);}
.m6d_c00277{transform:matrix(0.335263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335263,0.000000,0.000000,0.250000,0,0);}
.m92_c00277{transform:matrix(0.335458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335458,0.000000,0.000000,0.250000,0,0);}
.m96_c00277{transform:matrix(0.336349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336349,0.000000,0.000000,0.250000,0,0);}
.m5d_c00277{transform:matrix(0.337061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337061,0.000000,0.000000,0.250000,0,0);}
.m1e_c00277{transform:matrix(0.339126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339126,0.000000,0.000000,0.250000,0,0);}
.m99_c00277{transform:matrix(0.340172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340172,0.000000,0.000000,0.250000,0,0);}
.m6f_c00277{transform:matrix(0.343889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343889,0.000000,0.000000,0.250000,0,0);}
.m8d_c00277{transform:matrix(0.345326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345326,0.000000,0.000000,0.250000,0,0);}
.m91_c00277{transform:matrix(0.347013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347013,0.000000,0.000000,0.250000,0,0);}
.m31_c00277{transform:matrix(0.350956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350956,0.000000,0.000000,0.250000,0,0);}
.m71_c00277{transform:matrix(0.353574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353574,0.000000,0.000000,0.250000,0,0);}
.m60_c00277{transform:matrix(0.353732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353732,0.000000,0.000000,0.250000,0,0);}
.m5e_c00277{transform:matrix(0.354899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354899,0.000000,0.000000,0.250000,0,0);}
.m7_c00277{transform:matrix(0.354932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354932,0.000000,0.000000,0.250000,0,0);}
.m40_c00277{transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);}
.me_c00277{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m3a_c00277{transform:matrix(0.356787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356787,0.000000,0.000000,0.250000,0,0);}
.m2d_c00277{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m16_c00277{transform:matrix(0.363573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363573,0.000000,0.000000,0.250000,0,0);}
.m38_c00277{transform:matrix(0.369771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369771,0.000000,0.000000,0.250000,0,0);}
.m41_c00277{transform:matrix(0.414699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414699,0.000000,0.000000,0.250000,0,0);}
.m49_c00277{transform:matrix(0.424628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424628,0.000000,0.000000,0.250000,0,0);}
.v0_c00277{vertical-align:0.000000px;}
.ls5_c00277{letter-spacing:-2.979900px;}
.ls10_c00277{letter-spacing:-2.744280px;}
.lse_c00277{letter-spacing:-2.485534px;}
.ls15_c00277{letter-spacing:-2.480940px;}
.lsd_c00277{letter-spacing:-2.407126px;}
.lsa_c00277{letter-spacing:-2.069971px;}
.ls9_c00277{letter-spacing:-0.721354px;}
.ls4_c00277{letter-spacing:0.000000px;}
.ls0_c00277{letter-spacing:0.588060px;}
.ls3_c00277{letter-spacing:1.701454px;}
.lsf_c00277{letter-spacing:1.968041px;}
.ls2_c00277{letter-spacing:2.414966px;}
.lsb_c00277{letter-spacing:3.191206px;}
.ls12_c00277{letter-spacing:3.504610px;}
.ls16_c00277{letter-spacing:3.544200px;}
.ls13_c00277{letter-spacing:3.643200px;}
.ls7_c00277{letter-spacing:3.653813px;}
.lsc_c00277{letter-spacing:3.682810px;}
.ls6_c00277{letter-spacing:3.920400px;}
.ls11_c00277{letter-spacing:4.435200px;}
.ls1_c00277{letter-spacing:10.898712px;}
.ls8_c00277{letter-spacing:51.321798px;}
.ls14_c00277{letter-spacing:58.449798px;}
.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;}
}
.ws2_c00277{word-spacing:-23.255813px;}
.ws3_c00277{word-spacing:-22.793206px;}
.ws1_c00277{word-spacing:-19.602000px;}
.ws6_c00277{word-spacing:-17.116466px;}
.ws0_c00277{word-spacing:-3.490740px;}
.ws5_c00277{word-spacing:-1.488960px;}
.ws8_c00277{word-spacing:0.000000px;}
.ws4_c00277{word-spacing:3.763584px;}
.ws7_c00277{word-spacing:4.077216px;}
._10_c00277{margin-left:-13.470890px;}
._b_c00277{margin-left:-11.681604px;}
._18_c00277{margin-left:-5.144832px;}
._a_c00277{width:1.457597px;}
._11_c00277{width:5.019300px;}
._2_c00277{width:6.273828px;}
._0_c00277{width:7.761600px;}
._e_c00277{width:9.095328px;}
._3_c00277{width:10.585080px;}
._17_c00277{width:11.918808px;}
._14_c00277{width:13.015728px;}
._c_c00277{width:14.775948px;}
._7_c00277{width:17.484588px;}
._12_c00277{width:20.856528px;}
._d_c00277{width:22.267872px;}
._9_c00277{width:23.600808px;}
._5_c00277{width:25.090956px;}
._8_c00277{width:26.407814px;}
._4_c00277{width:28.618920px;}
._13_c00277{width:31.285188px;}
._1_c00277{width:35.362008px;}
._6_c00277{width:38.890368px;}
._f_c00277{width:40.066488px;}
._15_c00277{width:43.520400px;}
._16_c00277{width:51.827688px;}
.fc0_c00277{color:transparent;}
.fsa_c00277{font-size:21.582000px;}
.fs9_c00277{font-size:22.572000px;}
.fsb_c00277{font-size:26.928000px;}
.fsc_c00277{font-size:30.888000px;}
.fsd_c00277{font-size:34.650000px;}
.fs2_c00277{font-size:51.321798px;}
.fs7_c00277{font-size:58.449798px;}
.fs5_c00277{font-size:70.092198px;}
.fs8_c00277{font-size:70.884000px;}
.fs6_c00277{font-size:72.864000px;}
.fs3_c00277{font-size:73.656198px;}
.fs1_c00277{font-size:78.408000px;}
.fs0_c00277{font-size:85.140000px;}
.fs4_c00277{font-size:88.704000px;}
.y0_c00277{bottom:0.000000px;}
.y1f_c00277{bottom:26.641935px;}
.y1e_c00277{bottom:39.110985px;}
.y1d_c00277{bottom:41.962185px;}
.y1c_c00277{bottom:52.654185px;}
.y1_c00277{bottom:76.500000px;}
.y1a_c00277{bottom:140.333535px;}
.y19_c00277{bottom:169.914735px;}
.y18_c00277{bottom:203.059935px;}
.y17_c00277{bottom:235.487385px;}
.y16_c00277{bottom:267.924735px;}
.y15_c00277{bottom:299.644335px;}
.y14_c00277{bottom:333.145935px;}
.y13_c00277{bottom:365.573385px;}
.y12_c00277{bottom:398.367135px;}
.y11_c00277{bottom:461.801385px;}
.y10_c00277{bottom:494.951535px;}
.yf_c00277{bottom:527.027535px;}
.y1b_c00277{bottom:545.198985px;}
.ye_c00277{bottom:559.811385px;}
.yd_c00277{bottom:592.600185px;}
.yc_c00277{bottom:625.388985px;}
.yb_c00277{bottom:657.821385px;}
.ya_c00277{bottom:690.258735px;}
.y9_c00277{bottom:755.123535px;}
.y8_c00277{bottom:755.125515px;}
.y7_c00277{bottom:787.194585px;}
.y6_c00277{bottom:819.275535px;}
.y5_c00277{bottom:853.489935px;}
.y4_c00277{bottom:886.986585px;}
.y3_c00277{bottom:920.844585px;}
.y2_c00277{bottom:1071.958185px;}
.hc_c00277{height:23.541891px;}
.hd_c00277{height:28.085063px;}
.he_c00277{height:32.215219px;}
.h4_c00277{height:34.180317px;}
.h10_c00277{height:36.138867px;}
.h9_c00277{height:38.927565px;}
.ha_c00277{height:71.437781px;}
.hb_c00277{height:71.512031px;}
.h5_c00277{height:72.289530px;}
.h7_c00277{height:73.103972px;}
.h8_c00277{height:75.994875px;}
.hf_c00277{height:76.821113px;}
.h3_c00277{height:76.953164px;}
.h2_c00277{height:83.560254px;}
.h6_c00277{height:87.014813px;}
.h1_c00277{height:1110.000000px;}
.h0_c00277{height:1263.000000px;}
.w1_c00277{width:763.500000px;}
.w0_c00277{width:892.500000px;}
.x0_c00277{left:0.000000px;}
.x50_c00277{left:59.410935px;}
.x1e_c00277{left:60.415785px;}
.x33_c00277{left:61.549335px;}
.x4_c00277{left:62.702685px;}
.x1_c00277{left:64.500000px;}
.x71_c00277{left:82.938285px;}
.x10_c00277{left:92.526435px;}
.x2c_c00277{left:94.095585px;}
.x67_c00277{left:103.891635px;}
.x44_c00277{left:113.910435px;}
.x2d_c00277{left:115.850835px;}
.x1f_c00277{left:125.315235px;}
.x5_c00277{left:126.414135px;}
.x11_c00277{left:127.587285px;}
.x45_c00277{left:137.942685px;}
.x51_c00277{left:139.422735px;}
.x12_c00277{left:148.867335px;}
.x60_c00277{left:158.495085px;}
.x46_c00277{left:159.554385px;}
.x13_c00277{left:160.707735px;}
.x5e_c00277{left:172.330335px;}
.x3a_c00277{left:181.562085px;}
.x20_c00277{left:192.828285px;}
.x6c_c00277{left:193.852935px;}
.x3d_c00277{left:203.876685px;}
.x5f_c00277{left:205.911135px;}
.x14_c00277{left:214.568685px;}
.x6_c00277{left:224.750835px;}
.x3e_c00277{left:226.201185px;}
.x59_c00277{left:236.467485px;}
.x21_c00277{left:237.709935px;}
.x15_c00277{left:248.030685px;}
.x3f_c00277{left:257.683185px;}
.x47_c00277{left:258.762285px;}
.x22_c00277{left:268.944435px;}
.x7_c00277{left:270.830385px;}
.x16_c00277{left:280.997685px;}
.x3b_c00277{left:282.205485px;}
.x48_c00277{left:292.070835px;}
.x23_c00277{left:302.832135px;}
.x24_c00277{left:314.524035px;}
.x34_c00277{left:317.107935px;}
.x68_c00277{left:324.186435px;}
.x52_c00277{left:325.443735px;}
.x49_c00277{left:334.878435px;}
.x2e_c00277{left:336.813885px;}
.x63_c00277{left:346.179285px;}
.x3c_c00277{left:347.862285px;}
.x57_c00277{left:357.717735px;}
.x2f_c00277{left:358.831485px;}
.x17_c00277{left:368.340435px;}
.x40_c00277{left:369.934335px;}
.x8_c00277{left:379.458135px;}
.x69_c00277{left:380.547135px;}
.x9_c00277{left:391.298535px;}
.x41_c00277{left:401.965785px;}
.x4c_c00277{left:413.429985px;}
.x25_c00277{left:424.418985px;}
.x26_c00277{left:435.893085px;}
.x53_c00277{left:437.467185px;}
.x6d_c00277{left:446.228685px;}
.x18_c00277{left:447.278085px;}
.x35_c00277{left:449.332335px;}
.x42_c00277{left:457.088985px;}
.x58_c00277{left:458.346285px;}
.x65_c00277{left:467.102835px;}
.x27_c00277{left:468.300735px;}
.x64_c00277{left:469.374885px;}
.x19_c00277{left:480.066885px;}
.xa_c00277{left:490.437135px;}
.x54_c00277{left:491.481585px;}
.x6e_c00277{left:500.203485px;}
.x36_c00277{left:501.470685px;}
.x66_c00277{left:511.266735px;}
.x43_c00277{left:512.494335px;}
.x6a_c00277{left:514.246635px;}
.x4d_c00277{left:523.245735px;}
.x28_c00277{left:524.280285px;}
.x5a_c00277{left:525.418785px;}
.x61_c00277{left:533.908035px;}
.x4a_c00277{left:534.982185px;}
.xb_c00277{left:545.946435px;}
.x6b_c00277{left:547.485885px;}
.x29_c00277{left:556.712685px;}
.x55_c00277{left:567.409635px;}
.x5b_c00277{left:571.201335px;}
.x4e_c00277{left:578.453085px;}
.x37_c00277{left:579.522285px;}
.xc_c00277{left:588.278835px;}
.x1a_c00277{left:589.516335px;}
.x30_c00277{left:600.426135px;}
.x5c_c00277{left:609.662835px;}
.xd_c00277{left:611.578485px;}
.x38_c00277{left:612.647685px;}
.x70_c00277{left:620.676585px;}
.x2a_c00277{left:622.686285px;}
.x1b_c00277{left:633.972285px;}
.xe_c00277{left:636.085935px;}
.x2_c00277{left:643.981185px;}
.x39_c00277{left:653.500035px;}
.x4f_c00277{left:655.079085px;}
.xf_c00277{left:656.083935px;}
.x6f_c00277{left:664.904835px;}
.x3_c00277{left:666.464085px;}
.x1c_c00277{left:675.963135px;}
.x5d_c00277{left:677.824335px;}
.x62_c00277{left:679.566735px;}
.x4b_c00277{left:687.001635px;}
.x2b_c00277{left:688.258935px;}
.x1d_c00277{left:689.506335px;}
.x31_c00277{left:699.277635px;}
.x32_c00277{left:709.098435px;}
.x56_c00277{left:721.339785px;}
.x72_c00277{left:762.068385px;}
.x73_c00277{left:763.444485px;}
@media print{
.v0_c00277{vertical-align:0.000000pt;}
.ls5_c00277{letter-spacing:-2.648800pt;}
.ls10_c00277{letter-spacing:-2.439360pt;}
.lse_c00277{letter-spacing:-2.209363pt;}
.ls15_c00277{letter-spacing:-2.205280pt;}
.lsd_c00277{letter-spacing:-2.139667pt;}
.lsa_c00277{letter-spacing:-1.839974pt;}
.ls9_c00277{letter-spacing:-0.641203pt;}
.ls4_c00277{letter-spacing:0.000000pt;}
.ls0_c00277{letter-spacing:0.522720pt;}
.ls3_c00277{letter-spacing:1.512403pt;}
.lsf_c00277{letter-spacing:1.749370pt;}
.ls2_c00277{letter-spacing:2.146637pt;}
.lsb_c00277{letter-spacing:2.836627pt;}
.ls12_c00277{letter-spacing:3.115209pt;}
.ls16_c00277{letter-spacing:3.150400pt;}
.ls13_c00277{letter-spacing:3.238400pt;}
.ls7_c00277{letter-spacing:3.247834pt;}
.lsc_c00277{letter-spacing:3.273609pt;}
.ls6_c00277{letter-spacing:3.484800pt;}
.ls11_c00277{letter-spacing:3.942400pt;}
.ls1_c00277{letter-spacing:9.687744pt;}
.ls8_c00277{letter-spacing:45.619376pt;}
.ls14_c00277{letter-spacing:51.955376pt;}
.ws2_c00277{word-spacing:-20.671834pt;}
.ws3_c00277{word-spacing:-20.260627pt;}
.ws1_c00277{word-spacing:-17.424000pt;}
.ws6_c00277{word-spacing:-15.214637pt;}
.ws0_c00277{word-spacing:-3.102880pt;}
.ws5_c00277{word-spacing:-1.323520pt;}
.ws8_c00277{word-spacing:0.000000pt;}
.ws4_c00277{word-spacing:3.345408pt;}
.ws7_c00277{word-spacing:3.624192pt;}
._10_c00277{margin-left:-11.974125pt;}
._b_c00277{margin-left:-10.383648pt;}
._18_c00277{margin-left:-4.573184pt;}
._a_c00277{width:1.295642pt;}
._11_c00277{width:4.461600pt;}
._2_c00277{width:5.576736pt;}
._0_c00277{width:6.899200pt;}
._e_c00277{width:8.084736pt;}
._3_c00277{width:9.408960pt;}
._17_c00277{width:10.594496pt;}
._14_c00277{width:11.569536pt;}
._c_c00277{width:13.134176pt;}
._7_c00277{width:15.541856pt;}
._12_c00277{width:18.539136pt;}
._d_c00277{width:19.793664pt;}
._9_c00277{width:20.978496pt;}
._5_c00277{width:22.303072pt;}
._8_c00277{width:23.473613pt;}
._4_c00277{width:25.439040pt;}
._13_c00277{width:27.809056pt;}
._1_c00277{width:31.432896pt;}
._6_c00277{width:34.569216pt;}
._f_c00277{width:35.614656pt;}
._15_c00277{width:38.684800pt;}
._16_c00277{width:46.069056pt;}
.fsa_c00277{font-size:19.184000pt;}
.fs9_c00277{font-size:20.064000pt;}
.fsb_c00277{font-size:23.936000pt;}
.fsc_c00277{font-size:27.456000pt;}
.fsd_c00277{font-size:30.800000pt;}
.fs2_c00277{font-size:45.619376pt;}
.fs7_c00277{font-size:51.955376pt;}
.fs5_c00277{font-size:62.304176pt;}
.fs8_c00277{font-size:63.008000pt;}
.fs6_c00277{font-size:64.768000pt;}
.fs3_c00277{font-size:65.472176pt;}
.fs1_c00277{font-size:69.696000pt;}
.fs0_c00277{font-size:75.680000pt;}
.fs4_c00277{font-size:78.848000pt;}
.y0_c00277{bottom:0.000000pt;}
.y1f_c00277{bottom:23.681720pt;}
.y1e_c00277{bottom:34.765320pt;}
.y1d_c00277{bottom:37.299720pt;}
.y1c_c00277{bottom:46.803720pt;}
.y1_c00277{bottom:68.000000pt;}
.y1a_c00277{bottom:124.740920pt;}
.y19_c00277{bottom:151.035320pt;}
.y18_c00277{bottom:180.497720pt;}
.y17_c00277{bottom:209.322120pt;}
.y16_c00277{bottom:238.155320pt;}
.y15_c00277{bottom:266.350520pt;}
.y14_c00277{bottom:296.129720pt;}
.y13_c00277{bottom:324.954120pt;}
.y12_c00277{bottom:354.104120pt;}
.y11_c00277{bottom:410.490120pt;}
.y10_c00277{bottom:439.956920pt;}
.yf_c00277{bottom:468.468920pt;}
.y1b_c00277{bottom:484.621320pt;}
.ye_c00277{bottom:497.610120pt;}
.yd_c00277{bottom:526.755720pt;}
.yc_c00277{bottom:555.901320pt;}
.yb_c00277{bottom:584.730120pt;}
.ya_c00277{bottom:613.563320pt;}
.y9_c00277{bottom:671.220920pt;}
.y8_c00277{bottom:671.222680pt;}
.y7_c00277{bottom:699.728520pt;}
.y6_c00277{bottom:728.244920pt;}
.y5_c00277{bottom:758.657720pt;}
.y4_c00277{bottom:788.432520pt;}
.y3_c00277{bottom:818.528520pt;}
.y2_c00277{bottom:952.851720pt;}
.hc_c00277{height:20.926125pt;}
.hd_c00277{height:24.964500pt;}
.he_c00277{height:28.635750pt;}
.h4_c00277{height:30.382504pt;}
.h10_c00277{height:32.123438pt;}
.h9_c00277{height:34.602280pt;}
.ha_c00277{height:63.500250pt;}
.hb_c00277{height:63.566250pt;}
.h5_c00277{height:64.257360pt;}
.h7_c00277{height:64.981309pt;}
.h8_c00277{height:67.551000pt;}
.hf_c00277{height:68.285434pt;}
.h3_c00277{height:68.402813pt;}
.h2_c00277{height:74.275781pt;}
.h6_c00277{height:77.346500pt;}
.h1_c00277{height:986.666667pt;}
.h0_c00277{height:1122.666667pt;}
.w1_c00277{width:678.666667pt;}
.w0_c00277{width:793.333333pt;}
.x0_c00277{left:0.000000pt;}
.x50_c00277{left:52.809720pt;}
.x1e_c00277{left:53.702920pt;}
.x33_c00277{left:54.710520pt;}
.x4_c00277{left:55.735720pt;}
.x1_c00277{left:57.333333pt;}
.x71_c00277{left:73.722920pt;}
.x10_c00277{left:82.245720pt;}
.x2c_c00277{left:83.640520pt;}
.x67_c00277{left:92.348120pt;}
.x44_c00277{left:101.253720pt;}
.x2d_c00277{left:102.978520pt;}
.x1f_c00277{left:111.391320pt;}
.x5_c00277{left:112.368120pt;}
.x11_c00277{left:113.410920pt;}
.x45_c00277{left:122.615720pt;}
.x51_c00277{left:123.931320pt;}
.x12_c00277{left:132.326520pt;}
.x60_c00277{left:140.884520pt;}
.x46_c00277{left:141.826120pt;}
.x13_c00277{left:142.851320pt;}
.x5e_c00277{left:153.182520pt;}
.x3a_c00277{left:161.388520pt;}
.x20_c00277{left:171.402920pt;}
.x6c_c00277{left:172.313720pt;}
.x3d_c00277{left:181.223720pt;}
.x5f_c00277{left:183.032120pt;}
.x14_c00277{left:190.727720pt;}
.x6_c00277{left:199.778520pt;}
.x3e_c00277{left:201.067720pt;}
.x59_c00277{left:210.193320pt;}
.x21_c00277{left:211.297720pt;}
.x15_c00277{left:220.471720pt;}
.x3f_c00277{left:229.051720pt;}
.x47_c00277{left:230.010920pt;}
.x22_c00277{left:239.061720pt;}
.x7_c00277{left:240.738120pt;}
.x16_c00277{left:249.775720pt;}
.x3b_c00277{left:250.849320pt;}
.x48_c00277{left:259.618520pt;}
.x23_c00277{left:269.184120pt;}
.x24_c00277{left:279.576920pt;}
.x34_c00277{left:281.873720pt;}
.x68_c00277{left:288.165720pt;}
.x52_c00277{left:289.283320pt;}
.x49_c00277{left:297.669720pt;}
.x2e_c00277{left:299.390120pt;}
.x63_c00277{left:307.714920pt;}
.x3c_c00277{left:309.210920pt;}
.x57_c00277{left:317.971320pt;}
.x2f_c00277{left:318.961320pt;}
.x17_c00277{left:327.413720pt;}
.x40_c00277{left:328.830520pt;}
.x8_c00277{left:337.296120pt;}
.x69_c00277{left:338.264120pt;}
.x9_c00277{left:347.820920pt;}
.x41_c00277{left:357.302920pt;}
.x4c_c00277{left:367.493320pt;}
.x25_c00277{left:377.261320pt;}
.x26_c00277{left:387.460520pt;}
.x53_c00277{left:388.859720pt;}
.x6d_c00277{left:396.647720pt;}
.x18_c00277{left:397.580520pt;}
.x35_c00277{left:399.406520pt;}
.x42_c00277{left:406.301320pt;}
.x58_c00277{left:407.418920pt;}
.x65_c00277{left:415.202520pt;}
.x27_c00277{left:416.267320pt;}
.x64_c00277{left:417.222120pt;}
.x19_c00277{left:426.726120pt;}
.xa_c00277{left:435.944120pt;}
.x54_c00277{left:436.872520pt;}
.x6e_c00277{left:444.625320pt;}
.x36_c00277{left:445.751720pt;}
.x66_c00277{left:454.459320pt;}
.x43_c00277{left:455.550520pt;}
.x6a_c00277{left:457.108120pt;}
.x4d_c00277{left:465.107320pt;}
.x28_c00277{left:466.026920pt;}
.x5a_c00277{left:467.038920pt;}
.x61_c00277{left:474.584920pt;}
.x4a_c00277{left:475.539720pt;}
.xb_c00277{left:485.285720pt;}
.x6b_c00277{left:486.654120pt;}
.x29_c00277{left:494.855720pt;}
.x55_c00277{left:504.364120pt;}
.x5b_c00277{left:507.734520pt;}
.x4e_c00277{left:514.180520pt;}
.x37_c00277{left:515.130920pt;}
.xc_c00277{left:522.914520pt;}
.x1a_c00277{left:524.014520pt;}
.x30_c00277{left:533.712120pt;}
.x5c_c00277{left:541.922520pt;}
.xd_c00277{left:543.625320pt;}
.x38_c00277{left:544.575720pt;}
.x70_c00277{left:551.712520pt;}
.x2a_c00277{left:553.498920pt;}
.x1b_c00277{left:563.530920pt;}
.xe_c00277{left:565.409720pt;}
.x2_c00277{left:572.427720pt;}
.x39_c00277{left:580.888920pt;}
.x4f_c00277{left:582.292520pt;}
.xf_c00277{left:583.185720pt;}
.x6f_c00277{left:591.026520pt;}
.x3_c00277{left:592.412520pt;}
.x1c_c00277{left:600.856120pt;}
.x5d_c00277{left:602.510520pt;}
.x62_c00277{left:604.059320pt;}
.x4b_c00277{left:610.668120pt;}
.x2b_c00277{left:611.785720pt;}
.x1d_c00277{left:612.894520pt;}
.x31_c00277{left:621.580120pt;}
.x32_c00277{left:630.309720pt;}
.x56_c00277{left:641.190920pt;}
.x72_c00277{left:677.394120pt;}
.x73_c00277{left:678.617320pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a1f4d9e5317853153d8c91f5.woff2')format("woff");}.ff1_c00278{font-family:ff1_c00278;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00278;src:url('chunks/assets/font_b4b1fd0848ebd3328979330f.woff2')format("woff");}.ff2_c00278{font-family:ff2_c00278;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00278;src:url('chunks/assets/font_3c85ffe069f99ff25c637684.woff2')format("woff");}.ff3_c00278{font-family:ff3_c00278;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00278;src:url('chunks/assets/font_6d0b1e3f73d13f1ed902ae29.woff2')format("woff");}.ff4_c00278{font-family:ff4_c00278;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3d_c00278{transform:matrix(0.171429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171429,0.000000,0.000000,0.250000,0,0);}
.m88_c00278{transform:matrix(0.180465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180465,0.000000,0.000000,0.250000,0,0);}
.m3b_c00278{transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);}
.m3a_c00278{transform:matrix(0.203572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203572,0.000000,0.000000,0.250000,0,0);}
.m7f_c00278{transform:matrix(0.206273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206273,0.000000,0.000000,0.250000,0,0);}
.m62_c00278{transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);}
.m71_c00278{transform:matrix(0.209491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209491,0.000000,0.000000,0.250000,0,0);}
.m3c_c00278{transform:matrix(0.215713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215713,0.000000,0.000000,0.250000,0,0);}
.m78_c00278{transform:matrix(0.216704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216704,0.000000,0.000000,0.250000,0,0);}
.m52_c00278{transform:matrix(0.217087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217087,0.000000,0.000000,0.250000,0,0);}
.m4a_c00278{transform:matrix(0.218264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218264,0.000000,0.000000,0.250000,0,0);}
.m6d_c00278{transform:matrix(0.236997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236997,0.000000,0.000000,0.250000,0,0);}
.m34_c00278{transform:matrix(0.238424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238424,0.000000,0.000000,0.250000,0,0);}
.m0_c00278{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m61_c00278{transform:matrix(0.251626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251626,0.000000,0.000000,0.250000,0,0);}
.m7a_c00278{transform:matrix(0.253545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253545,0.000000,0.000000,0.250000,0,0);}
.m93_c00278{transform:matrix(0.253667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253667,0.000000,0.000000,0.250000,0,0);}
.m46_c00278{transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);}
.m36_c00278{transform:matrix(0.256878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256878,0.000000,0.000000,0.250000,0,0);}
.m5c_c00278{transform:matrix(0.257043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257043,0.000000,0.000000,0.250000,0,0);}
.m14_c00278{transform:matrix(0.257970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257970,0.000000,0.000000,0.250000,0,0);}
.m53_c00278{transform:matrix(0.258248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258248,0.000000,0.000000,0.250000,0,0);}
.m5e_c00278{transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);}
.mc_c00278{transform:matrix(0.259613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259613,0.000000,0.000000,0.250000,0,0);}
.m63_c00278{transform:matrix(0.260016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260016,0.000000,0.000000,0.250000,0,0);}
.m10_c00278{transform:matrix(0.260147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260147,0.000000,0.000000,0.250000,0,0);}
.m54_c00278{transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);}
.m11_c00278{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m1e_c00278{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.m90_c00278{transform:matrix(0.261624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261624,0.000000,0.000000,0.250000,0,0);}
.m2_c00278{transform:matrix(0.262979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262979,0.000000,0.000000,0.250000,0,0);}
.m3e_c00278{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m26_c00278{transform:matrix(0.265371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265371,0.000000,0.000000,0.250000,0,0);}
.m5b_c00278{transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);}
.m16_c00278{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m4c_c00278{transform:matrix(0.267472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267472,0.000000,0.000000,0.250000,0,0);}
.m25_c00278{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m51_c00278{transform:matrix(0.268375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268375,0.000000,0.000000,0.250000,0,0);}
.m29_c00278{transform:matrix(0.269115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269115,0.000000,0.000000,0.250000,0,0);}
.m83_c00278{transform:matrix(0.270433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270433,0.000000,0.000000,0.250000,0,0);}
.m42_c00278{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m2d_c00278{transform:matrix(0.271852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271852,0.000000,0.000000,0.250000,0,0);}
.m1_c00278{transform:matrix(0.273795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273795,0.000000,0.000000,0.250000,0,0);}
.m70_c00278{transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);}
.m74_c00278{transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);}
.m87_c00278{transform:matrix(0.275168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275168,0.000000,0.000000,0.250000,0,0);}
.m32_c00278{transform:matrix(0.275294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275294,0.000000,0.000000,0.250000,0,0);}
.m17_c00278{transform:matrix(0.276535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276535,0.000000,0.000000,0.250000,0,0);}
.m2b_c00278{transform:matrix(0.276754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276754,0.000000,0.000000,0.250000,0,0);}
.md_c00278{transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);}
.m39_c00278{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m76_c00278{transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);}
.m22_c00278{transform:matrix(0.277902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277902,0.000000,0.000000,0.250000,0,0);}
.m23_c00278{transform:matrix(0.279147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279147,0.000000,0.000000,0.250000,0,0);}
.m86_c00278{transform:matrix(0.280117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280117,0.000000,0.000000,0.250000,0,0);}
.me_c00278{transform:matrix(0.281783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281783,0.000000,0.000000,0.250000,0,0);}
.m27_c00278{transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);}
.m24_c00278{transform:matrix(0.283164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283164,0.000000,0.000000,0.250000,0,0);}
.m18_c00278{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m7d_c00278{transform:matrix(0.283746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283746,0.000000,0.000000,0.250000,0,0);}
.m58_c00278{transform:matrix(0.284895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284895,0.000000,0.000000,0.250000,0,0);}
.m8d_c00278{transform:matrix(0.285628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285628,0.000000,0.000000,0.250000,0,0);}
.m77_c00278{transform:matrix(0.285688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285688,0.000000,0.000000,0.250000,0,0);}
.mb_c00278{transform:matrix(0.285694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285694,0.000000,0.000000,0.250000,0,0);}
.m2e_c00278{transform:matrix(0.286667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286667,0.000000,0.000000,0.250000,0,0);}
.m44_c00278{transform:matrix(0.286684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286684,0.000000,0.000000,0.250000,0,0);}
.m47_c00278{transform:matrix(0.287098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287098,0.000000,0.000000,0.250000,0,0);}
.m66_c00278{transform:matrix(0.287440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287440,0.000000,0.000000,0.250000,0,0);}
.m6b_c00278{transform:matrix(0.287518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287518,0.000000,0.000000,0.250000,0,0);}
.m9_c00278{transform:matrix(0.287521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287521,0.000000,0.000000,0.250000,0,0);}
.m50_c00278{transform:matrix(0.287677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287677,0.000000,0.000000,0.250000,0,0);}
.m7c_c00278{transform:matrix(0.287721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287721,0.000000,0.000000,0.250000,0,0);}
.m43_c00278{transform:matrix(0.287771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287771,0.000000,0.000000,0.250000,0,0);}
.m68_c00278{transform:matrix(0.288186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288186,0.000000,0.000000,0.250000,0,0);}
.m64_c00278{transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);}
.m6a_c00278{transform:matrix(0.289026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289026,0.000000,0.000000,0.250000,0,0);}
.m5f_c00278{transform:matrix(0.289140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289140,0.000000,0.000000,0.250000,0,0);}
.m6_c00278{transform:matrix(0.289935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289935,0.000000,0.000000,0.250000,0,0);}
.m4b_c00278{transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);}
.m4e_c00278{transform:matrix(0.291856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291856,0.000000,0.000000,0.250000,0,0);}
.m8f_c00278{transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);}
.m5d_c00278{transform:matrix(0.295330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295330,0.000000,0.000000,0.250000,0,0);}
.m60_c00278{transform:matrix(0.295592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295592,0.000000,0.000000,0.250000,0,0);}
.m1f_c00278{transform:matrix(0.296009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296009,0.000000,0.000000,0.250000,0,0);}
.m57_c00278{transform:matrix(0.296933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296933,0.000000,0.000000,0.250000,0,0);}
.m59_c00278{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m89_c00278{transform:matrix(0.298858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298858,0.000000,0.000000,0.250000,0,0);}
.m19_c00278{transform:matrix(0.299316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299316,0.000000,0.000000,0.250000,0,0);}
.m20_c00278{transform:matrix(0.299763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299763,0.000000,0.000000,0.250000,0,0);}
.m81_c00278{transform:matrix(0.300623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300623,0.000000,0.000000,0.250000,0,0);}
.m8b_c00278{transform:matrix(0.300721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300721,0.000000,0.000000,0.250000,0,0);}
.m1c_c00278{transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);}
.m2c_c00278{transform:matrix(0.302938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302938,0.000000,0.000000,0.250000,0,0);}
.m8c_c00278{transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);}
.ma_c00278{transform:matrix(0.303158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303158,0.000000,0.000000,0.250000,0,0);}
.m84_c00278{transform:matrix(0.303481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303481,0.000000,0.000000,0.250000,0,0);}
.m38_c00278{transform:matrix(0.303979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303979,0.000000,0.000000,0.250000,0,0);}
.m7b_c00278{transform:matrix(0.307999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307999,0.000000,0.000000,0.250000,0,0);}
.m5a_c00278{transform:matrix(0.308268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308268,0.000000,0.000000,0.250000,0,0);}
.m2f_c00278{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m40_c00278{transform:matrix(0.310035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310035,0.000000,0.000000,0.250000,0,0);}
.m92_c00278{transform:matrix(0.310216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310216,0.000000,0.000000,0.250000,0,0);}
.m6f_c00278{transform:matrix(0.310694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310694,0.000000,0.000000,0.250000,0,0);}
.m35_c00278{transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);}
.m91_c00278{transform:matrix(0.313230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313230,0.000000,0.000000,0.250000,0,0);}
.m3_c00278{transform:matrix(0.317237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317237,0.000000,0.000000,0.250000,0,0);}
.m8a_c00278{transform:matrix(0.318235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318235,0.000000,0.000000,0.250000,0,0);}
.m6e_c00278{transform:matrix(0.319290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319290,0.000000,0.000000,0.250000,0,0);}
.m48_c00278{transform:matrix(0.320966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320966,0.000000,0.000000,0.250000,0,0);}
.m1d_c00278{transform:matrix(0.321083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321083,0.000000,0.000000,0.250000,0,0);}
.m56_c00278{transform:matrix(0.322530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322530,0.000000,0.000000,0.250000,0,0);}
.m79_c00278{transform:matrix(0.322941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322941,0.000000,0.000000,0.250000,0,0);}
.m31_c00278{transform:matrix(0.323312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323312,0.000000,0.000000,0.250000,0,0);}
.m3f_c00278{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.m15_c00278{transform:matrix(0.324031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324031,0.000000,0.000000,0.250000,0,0);}
.m4_c00278{transform:matrix(0.325172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325172,0.000000,0.000000,0.250000,0,0);}
.m75_c00278{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m45_c00278{transform:matrix(0.327281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327281,0.000000,0.000000,0.250000,0,0);}
.m4d_c00278{transform:matrix(0.328108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328108,0.000000,0.000000,0.250000,0,0);}
.m28_c00278{transform:matrix(0.328177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328177,0.000000,0.000000,0.250000,0,0);}
.m13_c00278{transform:matrix(0.328429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328429,0.000000,0.000000,0.250000,0,0);}
.m7_c00278{transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);}
.m69_c00278{transform:matrix(0.330837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330837,0.000000,0.000000,0.250000,0,0);}
.m7e_c00278{transform:matrix(0.331443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331443,0.000000,0.000000,0.250000,0,0);}
.m85_c00278{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m8_c00278{transform:matrix(0.333638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333638,0.000000,0.000000,0.250000,0,0);}
.m37_c00278{transform:matrix(0.334276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334276,0.000000,0.000000,0.250000,0,0);}
.m41_c00278{transform:matrix(0.335804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335804,0.000000,0.000000,0.250000,0,0);}
.m82_c00278{transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);}
.m49_c00278{transform:matrix(0.337289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337289,0.000000,0.000000,0.250000,0,0);}
.m1a_c00278{transform:matrix(0.342184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342184,0.000000,0.000000,0.250000,0,0);}
.m5_c00278{transform:matrix(0.342407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342407,0.000000,0.000000,0.250000,0,0);}
.m65_c00278{transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);}
.m67_c00278{transform:matrix(0.344838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344838,0.000000,0.000000,0.250000,0,0);}
.mf_c00278{transform:matrix(0.347013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347013,0.000000,0.000000,0.250000,0,0);}
.m55_c00278{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m1b_c00278{transform:matrix(0.350903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350903,0.000000,0.000000,0.250000,0,0);}
.m72_c00278{transform:matrix(0.351275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351275,0.000000,0.000000,0.250000,0,0);}
.m73_c00278{transform:matrix(0.352028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352028,0.000000,0.000000,0.250000,0,0);}
.m4f_c00278{transform:matrix(0.352184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352184,0.000000,0.000000,0.250000,0,0);}
.m21_c00278{transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);}
.m2a_c00278{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m12_c00278{transform:matrix(0.355345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355345,0.000000,0.000000,0.250000,0,0);}
.m80_c00278{transform:matrix(0.365600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365600,0.000000,0.000000,0.250000,0,0);}
.m30_c00278{transform:matrix(0.365709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365709,0.000000,0.000000,0.250000,0,0);}
.m8e_c00278{transform:matrix(0.416693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416693,0.000000,0.000000,0.250000,0,0);}
.m6c_c00278{transform:matrix(0.430633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430633,0.000000,0.000000,0.250000,0,0);}
.m33_c00278{transform:matrix(0.432348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432348,0.000000,0.000000,0.250000,0,0);}
.v0_c00278{vertical-align:0.000000px;}
.lsf_c00278{letter-spacing:-3.146227px;}
.lsb_c00278{letter-spacing:-2.744280px;}
.lse_c00278{letter-spacing:-0.476429px;}
.ls5_c00278{letter-spacing:0.000000px;}
.ls2_c00278{letter-spacing:0.205287px;}
.ls15_c00278{letter-spacing:0.548856px;}
.ls8_c00278{letter-spacing:0.611582px;}
.ls4_c00278{letter-spacing:1.539652px;}
.lsa_c00278{letter-spacing:1.685772px;}
.ls13_c00278{letter-spacing:2.642350px;}
.ls0_c00278{letter-spacing:3.136320px;}
.ls1_c00278{letter-spacing:3.175524px;}
.ls12_c00278{letter-spacing:3.191206px;}
.ls3_c00278{letter-spacing:3.402907px;}
.ls7_c00278{letter-spacing:3.544200px;}
.lsd_c00278{letter-spacing:3.583810px;}
.ls9_c00278{letter-spacing:3.653813px;}
.ls6_c00278{letter-spacing:3.920400px;}
.ls14_c00278{letter-spacing:4.276810px;}
.ls10_c00278{letter-spacing:4.494610px;}
.lsc_c00278{letter-spacing:49.896198px;}
.ls11_c00278{letter-spacing:51.321798px;}
.sc__c00278{text-shadow:none;}
.sc0_c00278{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00278{-webkit-text-stroke:0px transparent;}
.sc0_c00278{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00278{word-spacing:-23.255813px;}
.ws5_c00278{word-spacing:-23.004907px;}
.ws6_c00278{word-spacing:-22.923701px;}
.ws4_c00278{word-spacing:-22.793206px;}
.ws1_c00278{word-spacing:-22.738320px;}
.ws3_c00278{word-spacing:-21.589336px;}
.ws2_c00278{word-spacing:-19.602000px;}
.ws7_c00278{word-spacing:0.000000px;}
._a_c00278{margin-left:-12.620520px;}
._17_c00278{margin-left:-5.213846px;}
._d_c00278{margin-left:-1.254528px;}
._14_c00278{width:1.160438px;}
._10_c00278{width:2.869733px;}
._4_c00278{width:5.394074px;}
._2_c00278{width:7.135128px;}
._0_c00278{width:9.173736px;}
._9_c00278{width:10.506672px;}
._13_c00278{width:14.348664px;}
._6_c00278{width:20.856528px;}
._11_c00278{width:22.909392px;}
._e_c00278{width:25.057166px;}
._5_c00278{width:26.424288px;}
._b_c00278{width:28.432800px;}
._3_c00278{width:29.859984px;}
._16_c00278{width:31.206384px;}
._12_c00278{width:32.459328px;}
._1_c00278{width:33.965712px;}
._7_c00278{width:35.048376px;}
._8_c00278{width:36.497736px;}
._15_c00278{width:38.184696px;}
._f_c00278{width:41.085792px;}
._c_c00278{width:45.006192px;}
.fc0_c00278{color:transparent;}
.fs0_c00278{font-size:22.176000px;}
.fs6_c00278{font-size:22.374000px;}
.fsf_c00278{font-size:39.600000px;}
.fs5_c00278{font-size:49.896198px;}
.fsd_c00278{font-size:51.321798px;}
.fse_c00278{font-size:53.856198px;}
.fs4_c00278{font-size:66.330000px;}
.fsa_c00278{font-size:68.112198px;}
.fs2_c00278{font-size:70.884000px;}
.fs7_c00278{font-size:71.676198px;}
.fs3_c00278{font-size:74.844000px;}
.fs1_c00278{font-size:78.408000px;}
.fs9_c00278{font-size:78.804000px;}
.fs8_c00278{font-size:79.200000px;}
.fsc_c00278{font-size:85.536198px;}
.fsb_c00278{font-size:89.892198px;}
.y0_c00278{bottom:0.000000px;}
.y1_c00278{bottom:76.500000px;}
.y1a_c00278{bottom:89.011935px;}
.y19_c00278{bottom:136.764585px;}
.y18_c00278{bottom:167.063535px;}
.y17_c00278{bottom:201.272985px;}
.y15_c00278{bottom:233.704989px;}
.y16_c00278{bottom:233.705385px;}
.y14_c00278{bottom:266.499135px;}
.y13_c00278{bottom:300.000735px;}
.y12_c00278{bottom:364.509135px;}
.y11_c00278{bottom:364.509531px;}
.y10_c00278{bottom:398.362185px;}
.yf_c00278{bottom:430.794585px;}
.y2_c00278{bottom:435.076335px;}
.ye_c00278{bottom:462.870585px;}
.yd_c00278{bottom:559.103535px;}
.yc_c00278{bottom:691.322985px;}
.yb_c00278{bottom:720.909135px;}
.ya_c00278{bottom:753.341535px;}
.y9_c00278{bottom:785.412585px;}
.y8_c00278{bottom:817.493535px;}
.y7_c00278{bottom:849.569535px;}
.y6_c00278{bottom:865.963935px;}
.y5_c00278{bottom:881.996985px;}
.y4_c00278{bottom:917.280585px;}
.y3_c00278{bottom:1078.729785px;}
.h7_c00278{height:21.958857px;}
.h2_c00278{height:23.128875px;}
.h6_c00278{height:33.230868px;}
.hd_c00278{height:34.180317px;}
.he_c00278{height:56.170332px;}
.h5_c00278{height:69.180117px;}
.h4_c00278{height:69.568770px;}
.h8_c00278{height:72.236168px;}
.h3_c00278{height:76.953164px;}
.ha_c00278{height:77.341816px;}
.h9_c00278{height:77.730469px;}
.hc_c00278{height:83.949101px;}
.hb_c00278{height:88.224276px;}
.h1_c00278{height:1110.000000px;}
.h0_c00278{height:1263.000000px;}
.w1_c00278{width:763.500000px;}
.w0_c00278{width:892.500000px;}
.x0_c00278{left:0.000000px;}
.x2_c00278{left:10.118850px;}
.x1_c00278{left:64.500000px;}
.x11_c00278{left:69.296100px;}
.x12_c00278{left:90.912750px;}
.x5a_c00278{left:92.244300px;}
.x4c_c00278{left:101.030550px;}
.x13_c00278{left:102.287850px;}
.x48_c00278{left:112.648200px;}
.x5b_c00278{left:114.380700px;}
.x4_c00278{left:123.424350px;}
.x14_c00278{left:135.126150px;}
.x3e_c00278{left:145.209300px;}
.x21_c00278{left:151.609650px;}
.x5_c00278{left:157.480350px;}
.x29_c00278{left:168.207000px;}
.x15_c00278{left:179.626650px;}
.x6_c00278{left:189.977100px;}
.x31_c00278{left:190.991850px;}
.x51_c00278{left:200.070150px;}
.x22_c00278{left:201.624450px;}
.x7_c00278{left:212.054100px;}
.x16_c00278{left:222.760950px;}
.x5f_c00278{left:224.201400px;}
.x23_c00278{left:233.957850px;}
.x3f_c00278{left:243.996450px;}
.x43_c00278{left:245.451750px;}
.x60_c00278{left:246.991200px;}
.x17_c00278{left:255.430950px;}
.x66_c00278{left:256.980300px;}
.x41_c00278{left:263.157900px;}
.x56_c00278{left:267.429750px;}
.x8_c00278{left:278.022750px;}
.x2a_c00278{left:290.110650px;}
.x52_c00278{left:292.194600px;}
.x34_c00278{left:299.193900px;}
.x32_c00278{left:300.466050px;}
.x61_c00278{left:301.698600px;}
.x24_c00278{left:311.509500px;}
.x67_c00278{left:313.593450px;}
.x18_c00278{left:322.572750px;}
.x35_c00278{left:333.616200px;}
.x33_c00278{left:335.997150px;}
.x9_c00278{left:344.625000px;}
.x19_c00278{left:355.148700px;}
.x44_c00278{left:356.406000px;}
.x53_c00278{left:365.528850px;}
.x25_c00278{left:366.924750px;}
.xa_c00278{left:377.087100px;}
.x4d_c00278{left:378.106800px;}
.x49_c00278{left:381.061950px;}
.x42_c00278{left:387.571200px;}
.xb_c00278{left:389.536350px;}
.x45_c00278{left:397.961250px;}
.x2b_c00278{left:399.550200px;}
.x62_c00278{left:401.050050px;}
.x4a_c00278{left:410.410500px;}
.x59_c00278{left:412.296450px;}
.x2c_c00278{left:421.280700px;}
.x63_c00278{left:425.503050px;}
.x36_c00278{left:432.685500px;}
.x57_c00278{left:435.789150px;}
.xc_c00278{left:442.837950px;}
.x26_c00278{left:444.248700px;}
.x1a_c00278{left:446.124750px;}
.x2d_c00278{left:454.599150px;}
.x5c_c00278{left:455.861400px;}
.x1b_c00278{left:465.835650px;}
.x64_c00278{left:469.434300px;}
.x27_c00278{left:477.235500px;}
.x4e_c00278{left:479.626350px;}
.x37_c00278{left:487.571100px;}
.x4b_c00278{left:488.927400px;}
.x2e_c00278{left:498.951150px;}
.x38_c00278{left:508.445250px;}
.x1c_c00278{left:509.826300px;}
.x58_c00278{left:511.063800px;}
.x46_c00278{left:520.948950px;}
.xd_c00278{left:531.744900px;}
.x1d_c00278{left:542.634900px;}
.x39_c00278{left:544.090200px;}
.x47_c00278{left:552.282450px;}
.xe_c00278{left:553.688250px;}
.x1e_c00278{left:575.552400px;}
.x28_c00278{left:577.007700px;}
.x3a_c00278{left:587.214600px;}
.x40_c00278{left:589.036200px;}
.x3b_c00278{left:596.481000px;}
.xf_c00278{left:597.698700px;}
.x1f_c00278{left:609.801450px;}
.x2f_c00278{left:619.795500px;}
.x54_c00278{left:621.141900px;}
.x68_c00278{left:623.062500px;}
.x20_c00278{left:631.546800px;}
.x3c_c00278{left:640.674600px;}
.x10_c00278{left:641.773500px;}
.x69_c00278{left:643.471350px;}
.x3_c00278{left:652.534800px;}
.x5d_c00278{left:653.688150px;}
.x4f_c00278{left:675.032550px;}
.x65_c00278{left:676.408650px;}
.x30_c00278{left:685.373100px;}
.x3d_c00278{left:696.990750px;}
.x50_c00278{left:699.168750px;}
.x55_c00278{left:709.232100px;}
.x5e_c00278{left:719.201400px;}
.x6a_c00278{left:748.653900px;}
@media print{
.v0_c00278{vertical-align:0.000000pt;}
.lsf_c00278{letter-spacing:-2.796646pt;}
.lsb_c00278{letter-spacing:-2.439360pt;}
.lse_c00278{letter-spacing:-0.423492pt;}
.ls5_c00278{letter-spacing:0.000000pt;}
.ls2_c00278{letter-spacing:0.182477pt;}
.ls15_c00278{letter-spacing:0.487872pt;}
.ls8_c00278{letter-spacing:0.543629pt;}
.ls4_c00278{letter-spacing:1.368579pt;}
.lsa_c00278{letter-spacing:1.498464pt;}
.ls13_c00278{letter-spacing:2.348755pt;}
.ls0_c00278{letter-spacing:2.787840pt;}
.ls1_c00278{letter-spacing:2.822688pt;}
.ls12_c00278{letter-spacing:2.836627pt;}
.ls3_c00278{letter-spacing:3.024806pt;}
.ls7_c00278{letter-spacing:3.150400pt;}
.lsd_c00278{letter-spacing:3.185609pt;}
.ls9_c00278{letter-spacing:3.247834pt;}
.ls6_c00278{letter-spacing:3.484800pt;}
.ls14_c00278{letter-spacing:3.801609pt;}
.ls10_c00278{letter-spacing:3.995209pt;}
.lsc_c00278{letter-spacing:44.352176pt;}
.ls11_c00278{letter-spacing:45.619376pt;}
.ws0_c00278{word-spacing:-20.671834pt;}
.ws5_c00278{word-spacing:-20.448806pt;}
.ws6_c00278{word-spacing:-20.376623pt;}
.ws4_c00278{word-spacing:-20.260627pt;}
.ws1_c00278{word-spacing:-20.211840pt;}
.ws3_c00278{word-spacing:-19.190521pt;}
.ws2_c00278{word-spacing:-17.424000pt;}
.ws7_c00278{word-spacing:0.000000pt;}
._a_c00278{margin-left:-11.218240pt;}
._17_c00278{margin-left:-4.634530pt;}
._d_c00278{margin-left:-1.115136pt;}
._14_c00278{width:1.031501pt;}
._10_c00278{width:2.550874pt;}
._4_c00278{width:4.794733pt;}
._2_c00278{width:6.342336pt;}
._0_c00278{width:8.154432pt;}
._9_c00278{width:9.339264pt;}
._13_c00278{width:12.754368pt;}
._6_c00278{width:18.539136pt;}
._11_c00278{width:20.363904pt;}
._e_c00278{width:22.273036pt;}
._5_c00278{width:23.488256pt;}
._b_c00278{width:25.273600pt;}
._3_c00278{width:26.542208pt;}
._16_c00278{width:27.739008pt;}
._12_c00278{width:28.852736pt;}
._1_c00278{width:30.191744pt;}
._7_c00278{width:31.154112pt;}
._8_c00278{width:32.442432pt;}
._15_c00278{width:33.941952pt;}
._f_c00278{width:36.520704pt;}
._c_c00278{width:40.005504pt;}
.fs0_c00278{font-size:19.712000pt;}
.fs6_c00278{font-size:19.888000pt;}
.fsf_c00278{font-size:35.200000pt;}
.fs5_c00278{font-size:44.352176pt;}
.fsd_c00278{font-size:45.619376pt;}
.fse_c00278{font-size:47.872176pt;}
.fs4_c00278{font-size:58.960000pt;}
.fsa_c00278{font-size:60.544176pt;}
.fs2_c00278{font-size:63.008000pt;}
.fs7_c00278{font-size:63.712176pt;}
.fs3_c00278{font-size:66.528000pt;}
.fs1_c00278{font-size:69.696000pt;}
.fs9_c00278{font-size:70.048000pt;}
.fs8_c00278{font-size:70.400000pt;}
.fsc_c00278{font-size:76.032176pt;}
.fsb_c00278{font-size:79.904176pt;}
.y0_c00278{bottom:0.000000pt;}
.y1_c00278{bottom:68.000000pt;}
.y1a_c00278{bottom:79.121720pt;}
.y19_c00278{bottom:121.568520pt;}
.y18_c00278{bottom:148.500920pt;}
.y17_c00278{bottom:178.909320pt;}
.y15_c00278{bottom:207.737768pt;}
.y16_c00278{bottom:207.738120pt;}
.y14_c00278{bottom:236.888120pt;}
.y13_c00278{bottom:266.667320pt;}
.y12_c00278{bottom:324.008120pt;}
.y11_c00278{bottom:324.008472pt;}
.y10_c00278{bottom:354.099720pt;}
.yf_c00278{bottom:382.928520pt;}
.y2_c00278{bottom:386.734520pt;}
.ye_c00278{bottom:411.440520pt;}
.yd_c00278{bottom:496.980920pt;}
.yc_c00278{bottom:614.509320pt;}
.yb_c00278{bottom:640.808120pt;}
.ya_c00278{bottom:669.636920pt;}
.y9_c00278{bottom:698.144520pt;}
.y8_c00278{bottom:726.660920pt;}
.y7_c00278{bottom:755.172920pt;}
.y6_c00278{bottom:769.745720pt;}
.y5_c00278{bottom:783.997320pt;}
.y4_c00278{bottom:815.360520pt;}
.y3_c00278{bottom:958.870920pt;}
.h7_c00278{height:19.518984pt;}
.h2_c00278{height:20.559000pt;}
.h6_c00278{height:29.538549pt;}
.hd_c00278{height:30.382504pt;}
.he_c00278{height:49.929184pt;}
.h5_c00278{height:61.493438pt;}
.h4_c00278{height:61.838906pt;}
.h8_c00278{height:64.209927pt;}
.h3_c00278{height:68.402813pt;}
.ha_c00278{height:68.748281pt;}
.h9_c00278{height:69.093750pt;}
.hc_c00278{height:74.621423pt;}
.hb_c00278{height:78.421579pt;}
.h1_c00278{height:986.666667pt;}
.h0_c00278{height:1122.666667pt;}
.w1_c00278{width:678.666667pt;}
.w0_c00278{width:793.333333pt;}
.x0_c00278{left:0.000000pt;}
.x2_c00278{left:8.994533pt;}
.x1_c00278{left:57.333333pt;}
.x11_c00278{left:61.596533pt;}
.x12_c00278{left:80.811333pt;}
.x5a_c00278{left:81.994933pt;}
.x4c_c00278{left:89.804933pt;}
.x13_c00278{left:90.922533pt;}
.x48_c00278{left:100.131733pt;}
.x5b_c00278{left:101.671733pt;}
.x4_c00278{left:109.710533pt;}
.x14_c00278{left:120.112133pt;}
.x3e_c00278{left:129.074933pt;}
.x21_c00278{left:134.764133pt;}
.x5_c00278{left:139.982533pt;}
.x29_c00278{left:149.517333pt;}
.x15_c00278{left:159.668133pt;}
.x6_c00278{left:168.868533pt;}
.x31_c00278{left:169.770533pt;}
.x51_c00278{left:177.840133pt;}
.x22_c00278{left:179.221733pt;}
.x7_c00278{left:188.492533pt;}
.x16_c00278{left:198.009733pt;}
.x5f_c00278{left:199.290133pt;}
.x23_c00278{left:207.962533pt;}
.x3f_c00278{left:216.885733pt;}
.x43_c00278{left:218.179333pt;}
.x60_c00278{left:219.547733pt;}
.x17_c00278{left:227.049733pt;}
.x66_c00278{left:228.426933pt;}
.x41_c00278{left:233.918133pt;}
.x56_c00278{left:237.715333pt;}
.x8_c00278{left:247.131333pt;}
.x2a_c00278{left:257.876133pt;}
.x52_c00278{left:259.728533pt;}
.x34_c00278{left:265.950133pt;}
.x32_c00278{left:267.080933pt;}
.x61_c00278{left:268.176533pt;}
.x24_c00278{left:276.897333pt;}
.x67_c00278{left:278.749733pt;}
.x18_c00278{left:286.731333pt;}
.x35_c00278{left:296.547733pt;}
.x33_c00278{left:298.664133pt;}
.x9_c00278{left:306.333333pt;}
.x19_c00278{left:315.687733pt;}
.x44_c00278{left:316.805333pt;}
.x53_c00278{left:324.914533pt;}
.x25_c00278{left:326.155333pt;}
.xa_c00278{left:335.188533pt;}
.x4d_c00278{left:336.094933pt;}
.x49_c00278{left:338.721733pt;}
.x42_c00278{left:344.507733pt;}
.xb_c00278{left:346.254533pt;}
.x45_c00278{left:353.743333pt;}
.x2b_c00278{left:355.155733pt;}
.x62_c00278{left:356.488933pt;}
.x4a_c00278{left:364.809333pt;}
.x59_c00278{left:366.485733pt;}
.x2c_c00278{left:374.471733pt;}
.x63_c00278{left:378.224933pt;}
.x36_c00278{left:384.609333pt;}
.x57_c00278{left:387.368133pt;}
.xc_c00278{left:393.633733pt;}
.x26_c00278{left:394.887733pt;}
.x1a_c00278{left:396.555333pt;}
.x2d_c00278{left:404.088133pt;}
.x5c_c00278{left:405.210133pt;}
.x1b_c00278{left:414.076133pt;}
.x64_c00278{left:417.274933pt;}
.x27_c00278{left:424.209333pt;}
.x4e_c00278{left:426.334533pt;}
.x37_c00278{left:433.396533pt;}
.x4b_c00278{left:434.602133pt;}
.x2e_c00278{left:443.512133pt;}
.x38_c00278{left:451.951333pt;}
.x1c_c00278{left:453.178933pt;}
.x58_c00278{left:454.278933pt;}
.x46_c00278{left:463.065733pt;}
.xd_c00278{left:472.662133pt;}
.x1d_c00278{left:482.342133pt;}
.x39_c00278{left:483.635733pt;}
.x47_c00278{left:490.917733pt;}
.xe_c00278{left:492.167333pt;}
.x1e_c00278{left:511.602133pt;}
.x28_c00278{left:512.895733pt;}
.x3a_c00278{left:521.968533pt;}
.x40_c00278{left:523.587733pt;}
.x3b_c00278{left:530.205333pt;}
.xf_c00278{left:531.287733pt;}
.x1f_c00278{left:542.045733pt;}
.x2f_c00278{left:550.929333pt;}
.x54_c00278{left:552.126133pt;}
.x68_c00278{left:553.833333pt;}
.x20_c00278{left:561.374933pt;}
.x3c_c00278{left:569.488533pt;}
.x10_c00278{left:570.465333pt;}
.x69_c00278{left:571.974533pt;}
.x3_c00278{left:580.030933pt;}
.x5d_c00278{left:581.056133pt;}
.x4f_c00278{left:600.028933pt;}
.x65_c00278{left:601.252133pt;}
.x30_c00278{left:609.220533pt;}
.x3d_c00278{left:619.547333pt;}
.x50_c00278{left:621.483333pt;}
.x55_c00278{left:630.428533pt;}
.x5e_c00278{left:639.290133pt;}
.x6a_c00278{left:665.470133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9d99d4b4d858f036cf908e4e.woff2')format("woff");}.ff1_c00279{font-family:ff1_c00279;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00279;src:url('chunks/assets/font_b9c109855e60455b33048b3f.woff2')format("woff");}.ff2_c00279{font-family:ff2_c00279;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00279;src:url('chunks/assets/font_bb73ada474d9ba7093594d40.woff2')format("woff");}.ff3_c00279{font-family:ff3_c00279;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00279;src:url('chunks/assets/font_d7a8bec137d6d37444efa2c9.woff2')format("woff");}.ff4_c00279{font-family:ff4_c00279;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m13_c00279{transform:matrix(0.024391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024391,0.000000,0.000000,0.250000,0,0);}
.m15_c00279{transform:matrix(0.079269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.079269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.079269,0.000000,0.000000,0.250000,0,0);}
.m2e_c00279{transform:matrix(0.163148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163148,0.000000,0.000000,0.250000,0,0);}
.m12_c00279{transform:matrix(0.167683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167683,0.000000,0.000000,0.250000,0,0);}
.m14_c00279{transform:matrix(0.182926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182926,0.000000,0.000000,0.250000,0,0);}
.m43_c00279{transform:matrix(0.209559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209559,0.000000,0.000000,0.250000,0,0);}
.m42_c00279{transform:matrix(0.219363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219363,0.000000,0.000000,0.250000,0,0);}
.ma0_c00279{transform:matrix(0.220377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220377,0.000000,0.000000,0.250000,0,0);}
.m44_c00279{transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);}
.m8e_c00279{transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);}
.m35_c00279{transform:matrix(0.242568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242568,0.000000,0.000000,0.250000,0,0);}
.m57_c00279{transform:matrix(0.247349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247349,0.000000,0.000000,0.250000,0,0);}
.m66_c00279{transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);}
.m1_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);}
.m9b_c00279{transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);}
.m76_c00279{transform:matrix(0.250919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250919,0.000000,0.000000,0.250000,0,0);}
.m67_c00279{transform:matrix(0.256364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256364,0.000000,0.000000,0.250000,0,0);}
.m1b_c00279{transform:matrix(0.257360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257360,0.000000,0.000000,0.250000,0,0);}
.mb2_c00279{transform:matrix(0.257653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257653,0.000000,0.000000,0.250000,0,0);}
.m70_c00279{transform:matrix(0.257747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257747,0.000000,0.000000,0.250000,0,0);}
.m6c_c00279{transform:matrix(0.258894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258894,0.000000,0.000000,0.250000,0,0);}
.me_c00279{transform:matrix(0.259028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259028,0.000000,0.000000,0.250000,0,0);}
.m77_c00279{transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);}
.m5e_c00279{transform:matrix(0.259258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259258,0.000000,0.000000,0.250000,0,0);}
.m1e_c00279{transform:matrix(0.259723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259723,0.000000,0.000000,0.250000,0,0);}
.m80_c00279{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m68_c00279{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.m6f_c00279{transform:matrix(0.262939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262939,0.000000,0.000000,0.250000,0,0);}
.m3c_c00279{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m8d_c00279{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m2f_c00279{transform:matrix(0.265028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265028,0.000000,0.000000,0.250000,0,0);}
.m3e_c00279{transform:matrix(0.265602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265602,0.000000,0.000000,0.250000,0,0);}
.m55_c00279{transform:matrix(0.266174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266174,0.000000,0.000000,0.250000,0,0);}
.ma_c00279{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m24_c00279{transform:matrix(0.267809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267809,0.000000,0.000000,0.250000,0,0);}
.m6_c00279{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.mb0_c00279{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.mab_c00279{transform:matrix(0.269402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269402,0.000000,0.000000,0.250000,0,0);}
.m9e_c00279{transform:matrix(0.269642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269642,0.000000,0.000000,0.250000,0,0);}
.m2b_c00279{transform:matrix(0.270418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270418,0.000000,0.000000,0.250000,0,0);}
.m20_c00279{transform:matrix(0.270745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270745,0.000000,0.000000,0.250000,0,0);}
.m7e_c00279{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m2c_c00279{transform:matrix(0.270919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270919,0.000000,0.000000,0.250000,0,0);}
.m73_c00279{transform:matrix(0.271388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271388,0.000000,0.000000,0.250000,0,0);}
.m93_c00279{transform:matrix(0.271677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271677,0.000000,0.000000,0.250000,0,0);}
.m49_c00279{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.maf_c00279{transform:matrix(0.272653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272653,0.000000,0.000000,0.250000,0,0);}
.m58_c00279{transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);}
.m10_c00279{transform:matrix(0.273493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273493,0.000000,0.000000,0.250000,0,0);}
.m60_c00279{transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);}
.ma8_c00279{transform:matrix(0.277748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277748,0.000000,0.000000,0.250000,0,0);}
.m5b_c00279{transform:matrix(0.277767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277767,0.000000,0.000000,0.250000,0,0);}
.m91_c00279{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00279{transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);}
.m45_c00279{transform:matrix(0.278710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278710,0.000000,0.000000,0.250000,0,0);}
.m9_c00279{transform:matrix(0.278727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278727,0.000000,0.000000,0.250000,0,0);}
.m4_c00279{transform:matrix(0.278982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278982,0.000000,0.000000,0.250000,0,0);}
.mc_c00279{transform:matrix(0.279369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279369,0.000000,0.000000,0.250000,0,0);}
.md_c00279{transform:matrix(0.279388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279388,0.000000,0.000000,0.250000,0,0);}
.m3a_c00279{transform:matrix(0.280178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280178,0.000000,0.000000,0.250000,0,0);}
.m33_c00279{transform:matrix(0.280691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280691,0.000000,0.000000,0.250000,0,0);}
.m8a_c00279{transform:matrix(0.281196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281196,0.000000,0.000000,0.250000,0,0);}
.m31_c00279{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.m71_c00279{transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);}
.m74_c00279{transform:matrix(0.282371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282371,0.000000,0.000000,0.250000,0,0);}
.m4b_c00279{transform:matrix(0.282730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282730,0.000000,0.000000,0.250000,0,0);}
.m63_c00279{transform:matrix(0.283445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283445,0.000000,0.000000,0.250000,0,0);}
.m1a_c00279{transform:matrix(0.283509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283509,0.000000,0.000000,0.250000,0,0);}
.m3d_c00279{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.ma1_c00279{transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);}
.m0_c00279{transform:matrix(0.284390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284390,0.000000,0.000000,0.250000,0,0);}
.ma6_c00279{transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);}
.m34_c00279{transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);}
.ma9_c00279{transform:matrix(0.286383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286383,0.000000,0.000000,0.250000,0,0);}
.m5c_c00279{transform:matrix(0.286456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286456,0.000000,0.000000,0.250000,0,0);}
.m84_c00279{transform:matrix(0.286659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286659,0.000000,0.000000,0.250000,0,0);}
.m65_c00279{transform:matrix(0.288623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288623,0.000000,0.000000,0.250000,0,0);}
.m7c_c00279{transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);}
.m9c_c00279{transform:matrix(0.289652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289652,0.000000,0.000000,0.250000,0,0);}
.m6e_c00279{transform:matrix(0.289751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289751,0.000000,0.000000,0.250000,0,0);}
.m39_c00279{transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);}
.m37_c00279{transform:matrix(0.290836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290836,0.000000,0.000000,0.250000,0,0);}
.m6d_c00279{transform:matrix(0.291828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291828,0.000000,0.000000,0.250000,0,0);}
.m8f_c00279{transform:matrix(0.292511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292511,0.000000,0.000000,0.250000,0,0);}
.m8c_c00279{transform:matrix(0.293394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293394,0.000000,0.000000,0.250000,0,0);}
.m94_c00279{transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);}
.m59_c00279{transform:matrix(0.293758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293758,0.000000,0.000000,0.250000,0,0);}
.m17_c00279{transform:matrix(0.293864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293864,0.000000,0.000000,0.250000,0,0);}
.m28_c00279{transform:matrix(0.294550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294550,0.000000,0.000000,0.250000,0,0);}
.m96_c00279{transform:matrix(0.294970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294970,0.000000,0.000000,0.250000,0,0);}
.m50_c00279{transform:matrix(0.295719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295719,0.000000,0.000000,0.250000,0,0);}
.maa_c00279{transform:matrix(0.295739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295739,0.000000,0.000000,0.250000,0,0);}
.m40_c00279{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.mae_c00279{transform:matrix(0.297556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297556,0.000000,0.000000,0.250000,0,0);}
.m8b_c00279{transform:matrix(0.297984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297984,0.000000,0.000000,0.250000,0,0);}
.m2_c00279{transform:matrix(0.298017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298017,0.000000,0.000000,0.250000,0,0);}
.m82_c00279{transform:matrix(0.298439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298439,0.000000,0.000000,0.250000,0,0);}
.m83_c00279{transform:matrix(0.299263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299263,0.000000,0.000000,0.250000,0,0);}
.m53_c00279{transform:matrix(0.299550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299550,0.000000,0.000000,0.250000,0,0);}
.m4e_c00279{transform:matrix(0.299883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299883,0.000000,0.000000,0.250000,0,0);}
.m16_c00279{transform:matrix(0.300187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300187,0.000000,0.000000,0.250000,0,0);}
.m4a_c00279{transform:matrix(0.302129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302129,0.000000,0.000000,0.250000,0,0);}
.mad_c00279{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m46_c00279{transform:matrix(0.302703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302703,0.000000,0.000000,0.250000,0,0);}
.m56_c00279{transform:matrix(0.303527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303527,0.000000,0.000000,0.250000,0,0);}
.m26_c00279{transform:matrix(0.303562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303562,0.000000,0.000000,0.250000,0,0);}
.m97_c00279{transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);}
.m64_c00279{transform:matrix(0.305639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305639,0.000000,0.000000,0.250000,0,0);}
.m52_c00279{transform:matrix(0.305713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305713,0.000000,0.000000,0.250000,0,0);}
.m86_c00279{transform:matrix(0.305817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305817,0.000000,0.000000,0.250000,0,0);}
.m95_c00279{transform:matrix(0.305924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305924,0.000000,0.000000,0.250000,0,0);}
.m81_c00279{transform:matrix(0.306147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306147,0.000000,0.000000,0.250000,0,0);}
.m98_c00279{transform:matrix(0.306280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306280,0.000000,0.000000,0.250000,0,0);}
.m90_c00279{transform:matrix(0.307826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307826,0.000000,0.000000,0.250000,0,0);}
.m54_c00279{transform:matrix(0.308174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308174,0.000000,0.000000,0.250000,0,0);}
.m32_c00279{transform:matrix(0.308413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308413,0.000000,0.000000,0.250000,0,0);}
.m27_c00279{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m1d_c00279{transform:matrix(0.308702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308702,0.000000,0.000000,0.250000,0,0);}
.m7_c00279{transform:matrix(0.309926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309926,0.000000,0.000000,0.250000,0,0);}
.m75_c00279{transform:matrix(0.310366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310366,0.000000,0.000000,0.250000,0,0);}
.m9a_c00279{transform:matrix(0.311312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311312,0.000000,0.000000,0.250000,0,0);}
.m5_c00279{transform:matrix(0.311699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311699,0.000000,0.000000,0.250000,0,0);}
.mb_c00279{transform:matrix(0.311988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311988,0.000000,0.000000,0.250000,0,0);}
.ma7_c00279{transform:matrix(0.312047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312047,0.000000,0.000000,0.250000,0,0);}
.m8_c00279{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.m22_c00279{transform:matrix(0.312889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312889,0.000000,0.000000,0.250000,0,0);}
.m18_c00279{transform:matrix(0.313219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313219,0.000000,0.000000,0.250000,0,0);}
.m69_c00279{transform:matrix(0.313583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313583,0.000000,0.000000,0.250000,0,0);}
.m47_c00279{transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);}
.m41_c00279{transform:matrix(0.315211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315211,0.000000,0.000000,0.250000,0,0);}
.m6b_c00279{transform:matrix(0.316101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316101,0.000000,0.000000,0.250000,0,0);}
.m51_c00279{transform:matrix(0.316169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316169,0.000000,0.000000,0.250000,0,0);}
.mac_c00279{transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);}
.m36_c00279{transform:matrix(0.317033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317033,0.000000,0.000000,0.250000,0,0);}
.m38_c00279{transform:matrix(0.317369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317369,0.000000,0.000000,0.250000,0,0);}
.m9f_c00279{transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);}
.m87_c00279{transform:matrix(0.318958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318958,0.000000,0.000000,0.250000,0,0);}
.m7a_c00279{transform:matrix(0.320098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320098,0.000000,0.000000,0.250000,0,0);}
.m3f_c00279{transform:matrix(0.321107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321107,0.000000,0.000000,0.250000,0,0);}
.m5d_c00279{transform:matrix(0.321213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321213,0.000000,0.000000,0.250000,0,0);}
.m29_c00279{transform:matrix(0.321229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321229,0.000000,0.000000,0.250000,0,0);}
.m79_c00279{transform:matrix(0.322522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322522,0.000000,0.000000,0.250000,0,0);}
.m7b_c00279{transform:matrix(0.323033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323033,0.000000,0.000000,0.250000,0,0);}
.m3b_c00279{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.m85_c00279{transform:matrix(0.324371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324371,0.000000,0.000000,0.250000,0,0);}
.m7d_c00279{transform:matrix(0.324910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324910,0.000000,0.000000,0.250000,0,0);}
.mf_c00279{transform:matrix(0.325179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325179,0.000000,0.000000,0.250000,0,0);}
.m48_c00279{transform:matrix(0.325463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325463,0.000000,0.000000,0.250000,0,0);}
.m88_c00279{transform:matrix(0.325819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325819,0.000000,0.000000,0.250000,0,0);}
.m1f_c00279{transform:matrix(0.326049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326049,0.000000,0.000000,0.250000,0,0);}
.m30_c00279{transform:matrix(0.326313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326313,0.000000,0.000000,0.250000,0,0);}
.m5a_c00279{transform:matrix(0.326851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326851,0.000000,0.000000,0.250000,0,0);}
.m4f_c00279{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m61_c00279{transform:matrix(0.327174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327174,0.000000,0.000000,0.250000,0,0);}
.m5f_c00279{transform:matrix(0.327763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327763,0.000000,0.000000,0.250000,0,0);}
.ma5_c00279{transform:matrix(0.328711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328711,0.000000,0.000000,0.250000,0,0);}
.m2d_c00279{transform:matrix(0.332648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332648,0.000000,0.000000,0.250000,0,0);}
.m23_c00279{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m9d_c00279{transform:matrix(0.334551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334551,0.000000,0.000000,0.250000,0,0);}
.m62_c00279{transform:matrix(0.334649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334649,0.000000,0.000000,0.250000,0,0);}
.m99_c00279{transform:matrix(0.335721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335721,0.000000,0.000000,0.250000,0,0);}
.m78_c00279{transform:matrix(0.336403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336403,0.000000,0.000000,0.250000,0,0);}
.m89_c00279{transform:matrix(0.337823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337823,0.000000,0.000000,0.250000,0,0);}
.m4d_c00279{transform:matrix(0.338655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338655,0.000000,0.000000,0.250000,0,0);}
.m72_c00279{transform:matrix(0.342092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342092,0.000000,0.000000,0.250000,0,0);}
.m21_c00279{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.mb1_c00279{transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);}
.m25_c00279{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.ma3_c00279{transform:matrix(0.352727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352727,0.000000,0.000000,0.250000,0,0);}
.m92_c00279{transform:matrix(0.354708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354708,0.000000,0.000000,0.250000,0,0);}
.ma2_c00279{transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);}
.m6a_c00279{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m3_c00279{transform:matrix(0.355345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355345,0.000000,0.000000,0.250000,0,0);}
.m2a_c00279{transform:matrix(0.359212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359212,0.000000,0.000000,0.250000,0,0);}
.m7f_c00279{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m19_c00279{transform:matrix(0.364274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364274,0.000000,0.000000,0.250000,0,0);}
.m11_c00279{transform:matrix(0.368636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368636,0.000000,0.000000,0.250000,0,0);}
.ma4_c00279{transform:matrix(0.378961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378961,0.000000,0.000000,0.250000,0,0);}
.m1c_c00279{transform:matrix(0.385852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385852,0.000000,0.000000,0.250000,0,0);}
.v0_c00279{vertical-align:0.000000px;}
.lsa_c00279{letter-spacing:-2.744280px;}
.ls11_c00279{letter-spacing:-2.569882px;}
.ls6_c00279{letter-spacing:-1.434866px;}
.lsb_c00279{letter-spacing:-1.058508px;}
.lsf_c00279{letter-spacing:-0.274428px;}
.ls5_c00279{letter-spacing:0.000000px;}
.ls10_c00279{letter-spacing:1.246687px;}
.ls8_c00279{letter-spacing:2.286900px;}
.ls3_c00279{letter-spacing:2.422807px;}
.ls12_c00279{letter-spacing:2.454170px;}
.ls2_c00279{letter-spacing:2.626668px;}
.ls7_c00279{letter-spacing:3.112798px;}
.lsd_c00279{letter-spacing:3.167683px;}
.lse_c00279{letter-spacing:3.191206px;}
.ls0_c00279{letter-spacing:3.622450px;}
.ls4_c00279{letter-spacing:3.920400px;}
.ls1_c00279{letter-spacing:8.703288px;}
.lsc_c00279{letter-spacing:48.470598px;}
.ls9_c00279{letter-spacing:58.449798px;}
.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;}
}
.ws1_c00279{word-spacing:-23.224450px;}
.ws2_c00279{word-spacing:-22.793206px;}
.ws0_c00279{word-spacing:-19.602000px;}
.ws3_c00279{word-spacing:0.000000px;}
._3_c00279{margin-left:-13.172544px;}
._9_c00279{margin-left:-11.683584px;}
._8_c00279{width:1.459577px;}
._2_c00279{width:7.683984px;}
._b_c00279{width:9.095328px;}
._6_c00279{width:10.977120px;}
._d_c00279{width:12.545280px;}
._1_c00279{width:20.856528px;}
._a_c00279{width:22.267872px;}
._7_c00279{width:29.794248px;}
._0_c00279{width:31.511938px;}
._4_c00279{width:35.048376px;}
._e_c00279{width:36.281045px;}
._c_c00279{width:41.477832px;}
._5_c00279{width:44.496936px;}
.fc0_c00279{color:transparent;}
.fs6_c00279{font-size:22.176000px;}
.fs1_c00279{font-size:45.738000px;}
.fs3_c00279{font-size:48.470598px;}
.fs2_c00279{font-size:58.449798px;}
.fs0_c00279{font-size:78.408000px;}
.fs4_c00279{font-size:78.804000px;}
.fs5_c00279{font-size:82.368000px;}
.y0_c00279{bottom:0.000000px;}
.y1a_c00279{bottom:67.979385px;}
.y1_c00279{bottom:76.500000px;}
.y19_c00279{bottom:129.280185px;}
.y18_c00279{bottom:159.579135px;}
.y17_c00279{bottom:194.149935px;}
.y16_c00279{bottom:291.447135px;}
.y15_c00279{bottom:324.230985px;}
.y14_c00279{bottom:324.234153px;}
.y13_c00279{bottom:357.381135px;}
.y12_c00279{bottom:390.526335px;}
.y11_c00279{bottom:423.315135px;}
.y10_c00279{bottom:458.242335px;}
.yf_c00279{bottom:491.382585px;}
.ye_c00279{bottom:524.527785px;}
.yd_c00279{bottom:557.316585px;}
.yc_c00279{bottom:591.887385px;}
.yb_c00279{bottom:656.044335px;}
.ya_c00279{bottom:688.833135px;}
.y9_c00279{bottom:720.904185px;}
.y8_c00279{bottom:752.985135px;}
.y7_c00279{bottom:786.125385px;}
.y6_c00279{bottom:818.914185px;}
.y4_c00279{bottom:884.491785px;}
.y5_c00279{bottom:889.486335px;}
.y3_c00279{bottom:917.641935px;}
.y2_c00279{bottom:1080.868185px;}
.h9_c00279{height:23.128875px;}
.h6_c00279{height:32.281418px;}
.h5_c00279{height:38.927565px;}
.h4_c00279{height:44.889346px;}
.h2_c00279{height:76.953164px;}
.h7_c00279{height:77.341816px;}
.h3_c00279{height:79.020563px;}
.h8_c00279{height:80.839688px;}
.h1_c00279{height:1110.000000px;}
.h0_c00279{height:1263.000000px;}
.w1_c00279{width:763.500000px;}
.w0_c00279{width:892.500000px;}
.x0_c00279{left:0.000000px;}
.x1_c00279{left:64.500000px;}
.x23_c00279{left:68.088285px;}
.xe_c00279{left:69.850485px;}
.x3_c00279{left:71.983935px;}
.x4_c00279{left:82.289835px;}
.x34_c00279{left:89.843535px;}
.x35_c00279{left:99.654435px;}
.xf_c00279{left:101.624535px;}
.x61_c00279{left:111.415635px;}
.x5_c00279{left:115.628085px;}
.x2c_c00279{left:122.003685px;}
.x1a_c00279{left:123.399585px;}
.x6_c00279{left:134.537085px;}
.x36_c00279{left:145.758735px;}
.x5b_c00279{left:156.351735px;}
.x4b_c00279{left:157.490235px;}
.x7_c00279{left:167.865435px;}
.x1b_c00279{left:178.735635px;}
.x3c_c00279{left:179.854335px;}
.x10_c00279{left:189.962235px;}
.x51_c00279{left:200.847285px;}
.x2d_c00279{left:211.311585px;}
.x62_c00279{left:212.430285px;}
.x37_c00279{left:223.468785px;}
.x46_c00279{left:234.299385px;}
.x38_c00279{left:244.288485px;}
.x63_c00279{left:246.204135px;}
.x8_c00279{left:255.079485px;}
.x24_c00279{left:256.544685px;}
.x3d_c00279{left:264.677535px;}
.x11_c00279{left:266.603085px;}
.x2e_c00279{left:276.676335px;}
.x47_c00279{left:278.398935px;}
.x2f_c00279{left:287.477235px;}
.x25_c00279{left:288.491985px;}
.x43_c00279{left:290.407635px;}
.x12_c00279{left:299.916585px;}
.x64_c00279{left:300.970935px;}
.x3e_c00279{left:310.242285px;}
.x3f_c00279{left:311.732235px;}
.x44_c00279{left:322.508385px;}
.x39_c00279{left:332.769735px;}
.x4c_c00279{left:334.328985px;}
.x26_c00279{left:344.120085px;}
.x48_c00279{left:345.352635px;}
.x5c_c00279{left:355.703085px;}
.x27_c00279{left:366.004035px;}
.x30_c00279{left:376.923735px;}
.x9_c00279{left:387.779085px;}
.x28_c00279{left:399.540285px;}
.x4d_c00279{left:409.682835px;}
.x13_c00279{left:411.118335px;}
.x31_c00279{left:419.701635px;}
.xa_c00279{left:420.939135px;}
.x49_c00279{left:422.627085px;}
.x66_c00279{left:432.685485px;}
.x14_c00279{left:435.076335px;}
.x4e_c00279{left:443.733885px;}
.x40_c00279{left:444.783285px;}
.x29_c00279{left:454.396185px;}
.x4f_c00279{left:456.985035px;}
.x45_c00279{left:465.350535px;}
.x67_c00279{left:466.523685px;}
.x55_c00279{left:475.616835px;}
.x65_c00279{left:476.676135px;}
.x41_c00279{left:477.874035px;}
.x1c_c00279{left:487.571085px;}
.xb_c00279{left:498.916485px;}
.x42_c00279{left:508.405635px;}
.x1d_c00279{left:510.014385px;}
.x54_c00279{left:512.058735px;}
.x52_c00279{left:520.691535px;}
.x1e_c00279{left:531.051885px;}
.x15_c00279{left:542.728935px;}
.x58_c00279{left:544.892085px;}
.x32_c00279{left:553.148685px;}
.x68_c00279{left:554.212935px;}
.x1f_c00279{left:564.766335px;}
.x4a_c00279{left:576.210735px;}
.xc_c00279{left:586.283985px;}
.x2a_c00279{left:587.293785px;}
.x16_c00279{left:597.198735px;}
.x5f_c00279{left:598.421385px;}
.x20_c00279{left:608.395635px;}
.x17_c00279{left:617.152185px;}
.x18_c00279{left:619.295535px;}
.xd_c00279{left:629.853885px;}
.x56_c00279{left:631.175535px;}
.x19_c00279{left:632.477385px;}
.x60_c00279{left:639.956835px;}
.x5d_c00279{left:641.055735px;}
.x50_c00279{left:642.258585px;}
.x21_c00279{left:643.926735px;}
.x2_c00279{left:651.812085px;}
.x5e_c00279{left:652.910985px;}
.x69_c00279{left:653.995035px;}
.x22_c00279{left:663.825735px;}
.x2b_c00279{left:674.126685px;}
.x59_c00279{left:675.304785px;}
.x3a_c00279{left:685.551285px;}
.x57_c00279{left:686.724435px;}
.x33_c00279{left:696.659085px;}
.x3b_c00279{left:708.469785px;}
.x53_c00279{left:709.756785px;}
.x5a_c00279{left:718.488585px;}
.x6a_c00279{left:749.648835px;}
@media print{
.v0_c00279{vertical-align:0.000000pt;}
.lsa_c00279{letter-spacing:-2.439360pt;}
.ls11_c00279{letter-spacing:-2.284339pt;}
.ls6_c00279{letter-spacing:-1.275437pt;}
.lsb_c00279{letter-spacing:-0.940896pt;}
.lsf_c00279{letter-spacing:-0.243936pt;}
.ls5_c00279{letter-spacing:0.000000pt;}
.ls10_c00279{letter-spacing:1.108166pt;}
.ls8_c00279{letter-spacing:2.032800pt;}
.ls3_c00279{letter-spacing:2.153606pt;}
.ls12_c00279{letter-spacing:2.181485pt;}
.ls2_c00279{letter-spacing:2.334816pt;}
.ls7_c00279{letter-spacing:2.766931pt;}
.lsd_c00279{letter-spacing:2.815718pt;}
.lse_c00279{letter-spacing:2.836627pt;}
.ls0_c00279{letter-spacing:3.219955pt;}
.ls4_c00279{letter-spacing:3.484800pt;}
.ls1_c00279{letter-spacing:7.736256pt;}
.lsc_c00279{letter-spacing:43.084976pt;}
.ls9_c00279{letter-spacing:51.955376pt;}
.ws1_c00279{word-spacing:-20.643955pt;}
.ws2_c00279{word-spacing:-20.260627pt;}
.ws0_c00279{word-spacing:-17.424000pt;}
.ws3_c00279{word-spacing:0.000000pt;}
._3_c00279{margin-left:-11.708928pt;}
._9_c00279{margin-left:-10.385408pt;}
._8_c00279{width:1.297402pt;}
._2_c00279{width:6.830208pt;}
._b_c00279{width:8.084736pt;}
._6_c00279{width:9.757440pt;}
._d_c00279{width:11.151360pt;}
._1_c00279{width:18.539136pt;}
._a_c00279{width:19.793664pt;}
._7_c00279{width:26.483776pt;}
._0_c00279{width:28.010611pt;}
._4_c00279{width:31.154112pt;}
._e_c00279{width:32.249818pt;}
._c_c00279{width:36.869184pt;}
._5_c00279{width:39.552832pt;}
.fs6_c00279{font-size:19.712000pt;}
.fs1_c00279{font-size:40.656000pt;}
.fs3_c00279{font-size:43.084976pt;}
.fs2_c00279{font-size:51.955376pt;}
.fs0_c00279{font-size:69.696000pt;}
.fs4_c00279{font-size:70.048000pt;}
.fs5_c00279{font-size:73.216000pt;}
.y0_c00279{bottom:0.000000pt;}
.y1a_c00279{bottom:60.426120pt;}
.y1_c00279{bottom:68.000000pt;}
.y19_c00279{bottom:114.915720pt;}
.y18_c00279{bottom:141.848120pt;}
.y17_c00279{bottom:172.577720pt;}
.y16_c00279{bottom:259.064120pt;}
.y15_c00279{bottom:288.205320pt;}
.y14_c00279{bottom:288.208136pt;}
.y13_c00279{bottom:317.672120pt;}
.y12_c00279{bottom:347.134520pt;}
.y11_c00279{bottom:376.280120pt;}
.y10_c00279{bottom:407.326520pt;}
.yf_c00279{bottom:436.784520pt;}
.ye_c00279{bottom:466.246920pt;}
.yd_c00279{bottom:495.392520pt;}
.yc_c00279{bottom:526.122120pt;}
.yb_c00279{bottom:583.150520pt;}
.ya_c00279{bottom:612.296120pt;}
.y9_c00279{bottom:640.803720pt;}
.y8_c00279{bottom:669.320120pt;}
.y7_c00279{bottom:698.778120pt;}
.y6_c00279{bottom:727.923720pt;}
.y4_c00279{bottom:786.214920pt;}
.y5_c00279{bottom:790.654520pt;}
.y3_c00279{bottom:815.681720pt;}
.y2_c00279{bottom:960.771720pt;}
.h9_c00279{height:20.559000pt;}
.h6_c00279{height:28.694594pt;}
.h5_c00279{height:34.602280pt;}
.h4_c00279{height:39.901641pt;}
.h2_c00279{height:68.402813pt;}
.h7_c00279{height:68.748281pt;}
.h3_c00279{height:70.240500pt;}
.h8_c00279{height:71.857500pt;}
.h1_c00279{height:986.666667pt;}
.h0_c00279{height:1122.666667pt;}
.w1_c00279{width:678.666667pt;}
.w0_c00279{width:793.333333pt;}
.x0_c00279{left:0.000000pt;}
.x1_c00279{left:57.333333pt;}
.x23_c00279{left:60.522920pt;}
.xe_c00279{left:62.089320pt;}
.x3_c00279{left:63.985720pt;}
.x4_c00279{left:73.146520pt;}
.x34_c00279{left:79.860920pt;}
.x35_c00279{left:88.581720pt;}
.xf_c00279{left:90.332920pt;}
.x61_c00279{left:99.036120pt;}
.x5_c00279{left:102.780520pt;}
.x2c_c00279{left:108.447720pt;}
.x1a_c00279{left:109.688520pt;}
.x6_c00279{left:119.588520pt;}
.x36_c00279{left:129.563320pt;}
.x5b_c00279{left:138.979320pt;}
.x4b_c00279{left:139.991320pt;}
.x7_c00279{left:149.213720pt;}
.x1b_c00279{left:158.876120pt;}
.x3c_c00279{left:159.870520pt;}
.x10_c00279{left:168.855320pt;}
.x51_c00279{left:178.530920pt;}
.x2d_c00279{left:187.832520pt;}
.x62_c00279{left:188.826920pt;}
.x37_c00279{left:198.638920pt;}
.x46_c00279{left:208.266120pt;}
.x38_c00279{left:217.145320pt;}
.x63_c00279{left:218.848120pt;}
.x8_c00279{left:226.737320pt;}
.x24_c00279{left:228.039720pt;}
.x3d_c00279{left:235.268920pt;}
.x11_c00279{left:236.980520pt;}
.x2e_c00279{left:245.934520pt;}
.x47_c00279{left:247.465720pt;}
.x2f_c00279{left:255.535320pt;}
.x25_c00279{left:256.437320pt;}
.x43_c00279{left:258.140120pt;}
.x12_c00279{left:266.592520pt;}
.x64_c00279{left:267.529720pt;}
.x3e_c00279{left:275.770920pt;}
.x3f_c00279{left:277.095320pt;}
.x44_c00279{left:286.674120pt;}
.x39_c00279{left:295.795320pt;}
.x4c_c00279{left:297.181320pt;}
.x26_c00279{left:305.884520pt;}
.x48_c00279{left:306.980120pt;}
.x5c_c00279{left:316.180520pt;}
.x27_c00279{left:325.336920pt;}
.x30_c00279{left:335.043320pt;}
.x9_c00279{left:344.692520pt;}
.x28_c00279{left:355.146920pt;}
.x4d_c00279{left:364.162520pt;}
.x13_c00279{left:365.438520pt;}
.x31_c00279{left:373.068120pt;}
.xa_c00279{left:374.168120pt;}
.x49_c00279{left:375.668520pt;}
.x66_c00279{left:384.609320pt;}
.x14_c00279{left:386.734520pt;}
.x4e_c00279{left:394.430120pt;}
.x40_c00279{left:395.362920pt;}
.x29_c00279{left:403.907720pt;}
.x4f_c00279{left:406.208920pt;}
.x45_c00279{left:413.644920pt;}
.x67_c00279{left:414.687720pt;}
.x55_c00279{left:422.770520pt;}
.x65_c00279{left:423.712120pt;}
.x41_c00279{left:424.776920pt;}
.x1c_c00279{left:433.396520pt;}
.xb_c00279{left:443.481320pt;}
.x42_c00279{left:451.916120pt;}
.x1d_c00279{left:453.346120pt;}
.x54_c00279{left:455.163320pt;}
.x52_c00279{left:462.836920pt;}
.x1e_c00279{left:472.046120pt;}
.x15_c00279{left:482.425720pt;}
.x58_c00279{left:484.348520pt;}
.x32_c00279{left:491.687720pt;}
.x68_c00279{left:492.633720pt;}
.x1f_c00279{left:502.014520pt;}
.x4a_c00279{left:512.187320pt;}
.xc_c00279{left:521.141320pt;}
.x2a_c00279{left:522.038920pt;}
.x16_c00279{left:530.843320pt;}
.x5f_c00279{left:531.930120pt;}
.x20_c00279{left:540.796120pt;}
.x17_c00279{left:548.579720pt;}
.x18_c00279{left:550.484920pt;}
.xd_c00279{left:559.870120pt;}
.x56_c00279{left:561.044920pt;}
.x19_c00279{left:562.202120pt;}
.x60_c00279{left:568.850520pt;}
.x5d_c00279{left:569.827320pt;}
.x50_c00279{left:570.896520pt;}
.x21_c00279{left:572.379320pt;}
.x2_c00279{left:579.388520pt;}
.x5e_c00279{left:580.365320pt;}
.x69_c00279{left:581.328920pt;}
.x22_c00279{left:590.067320pt;}
.x2b_c00279{left:599.223720pt;}
.x59_c00279{left:600.270920pt;}
.x3a_c00279{left:609.378920pt;}
.x57_c00279{left:610.421720pt;}
.x33_c00279{left:619.252520pt;}
.x3b_c00279{left:629.750920pt;}
.x53_c00279{left:630.894920pt;}
.x5a_c00279{left:638.656520pt;}
.x6a_c00279{left:666.354520pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_31d9d9156dc7085234a3c680.woff2')format("woff");}.ff1_c00280{font-family:ff1_c00280;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00280;src:url('chunks/assets/font_078af2013f8c78477750e22a.woff2')format("woff");}.ff2_c00280{font-family:ff2_c00280;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00280;src:url('chunks/assets/font_9d47ff453e19d7177eff3f63.woff2')format("woff");}.ff3_c00280{font-family:ff3_c00280;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00280;src:url('chunks/assets/font_5bb26109aa19ce50ede550af.woff2')format("woff");}.ff4_c00280{font-family:ff4_c00280;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m49_c00280{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);}
.m9f_c00280{transform:matrix(0.148809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148809,0.000000,0.000000,0.250000,0,0);}
.m4e_c00280{transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);}
.m5_c00280{transform:matrix(0.169974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169974,0.000000,0.000000,0.250000,0,0);}
.m9e_c00280{transform:matrix(0.170635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170635,0.000000,0.000000,0.250000,0,0);}
.m4d_c00280{transform:matrix(0.174999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174999,0.000000,0.000000,0.250000,0,0);}
.m4c_c00280{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m7_c00280{transform:matrix(0.181973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181973,0.000000,0.000000,0.250000,0,0);}
.m4a_c00280{transform:matrix(0.183334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183334,0.000000,0.000000,0.250000,0,0);}
.m6_c00280{transform:matrix(0.190476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190476,0.000000,0.000000,0.250000,0,0);}
.m4b_c00280{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m16_c00280{transform:matrix(0.203704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203704,0.000000,0.000000,0.250000,0,0);}
.m4f_c00280{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m8_c00280{transform:matrix(0.224622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224622,0.000000,0.000000,0.250000,0,0);}
.mb_c00280{transform:matrix(0.234828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234828,0.000000,0.000000,0.250000,0,0);}
.mc_c00280{transform:matrix(0.249256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249256,0.000000,0.000000,0.250000,0,0);}
.m3_c00280{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00280{transform:matrix(0.253729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253729,0.000000,0.000000,0.250000,0,0);}
.m34_c00280{transform:matrix(0.256602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256602,0.000000,0.000000,0.250000,0,0);}
.m4_c00280{transform:matrix(0.258334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258334,0.000000,0.000000,0.250000,0,0);}
.m6f_c00280{transform:matrix(0.260235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260235,0.000000,0.000000,0.250000,0,0);}
.m9_c00280{transform:matrix(0.260545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260545,0.000000,0.000000,0.250000,0,0);}
.m29_c00280{transform:matrix(0.260579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260579,0.000000,0.000000,0.250000,0,0);}
.m79_c00280{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m55_c00280{transform:matrix(0.261624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261624,0.000000,0.000000,0.250000,0,0);}
.m50_c00280{transform:matrix(0.261735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261735,0.000000,0.000000,0.250000,0,0);}
.m62_c00280{transform:matrix(0.261951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261951,0.000000,0.000000,0.250000,0,0);}
.m10_c00280{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m82_c00280{transform:matrix(0.263649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263649,0.000000,0.000000,0.250000,0,0);}
.m5c_c00280{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m1d_c00280{transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);}
.m52_c00280{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m45_c00280{transform:matrix(0.267199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267199,0.000000,0.000000,0.250000,0,0);}
.m74_c00280{transform:matrix(0.267205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267205,0.000000,0.000000,0.250000,0,0);}
.m6d_c00280{transform:matrix(0.267213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267213,0.000000,0.000000,0.250000,0,0);}
.m25_c00280{transform:matrix(0.267364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267364,0.000000,0.000000,0.250000,0,0);}
.m13_c00280{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m36_c00280{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.m8a_c00280{transform:matrix(0.268624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268624,0.000000,0.000000,0.250000,0,0);}
.ma_c00280{transform:matrix(0.270692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270692,0.000000,0.000000,0.250000,0,0);}
.m8e_c00280{transform:matrix(0.270725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270725,0.000000,0.000000,0.250000,0,0);}
.m1a_c00280{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m40_c00280{transform:matrix(0.272482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272482,0.000000,0.000000,0.250000,0,0);}
.m20_c00280{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m94_c00280{transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);}
.m9d_c00280{transform:matrix(0.272943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272943,0.000000,0.000000,0.250000,0,0);}
.m6a_c00280{transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);}
.m43_c00280{transform:matrix(0.274164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274164,0.000000,0.000000,0.250000,0,0);}
.m85_c00280{transform:matrix(0.274541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274541,0.000000,0.000000,0.250000,0,0);}
.m61_c00280{transform:matrix(0.276376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276376,0.000000,0.000000,0.250000,0,0);}
.m3f_c00280{transform:matrix(0.276489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276489,0.000000,0.000000,0.250000,0,0);}
.m93_c00280{transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);}
.m2a_c00280{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m2e_c00280{transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);}
.m8c_c00280{transform:matrix(0.278174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278174,0.000000,0.000000,0.250000,0,0);}
.m91_c00280{transform:matrix(0.278331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278331,0.000000,0.000000,0.250000,0,0);}
.m48_c00280{transform:matrix(0.278480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278480,0.000000,0.000000,0.250000,0,0);}
.m9c_c00280{transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);}
.md_c00280{transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);}
.m44_c00280{transform:matrix(0.280163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280163,0.000000,0.000000,0.250000,0,0);}
.m83_c00280{transform:matrix(0.280655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280655,0.000000,0.000000,0.250000,0,0);}
.m75_c00280{transform:matrix(0.280885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280885,0.000000,0.000000,0.250000,0,0);}
.m33_c00280{transform:matrix(0.281463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281463,0.000000,0.000000,0.250000,0,0);}
.m12_c00280{transform:matrix(0.281624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281624,0.000000,0.000000,0.250000,0,0);}
.m87_c00280{transform:matrix(0.281783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281783,0.000000,0.000000,0.250000,0,0);}
.m22_c00280{transform:matrix(0.281944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281944,0.000000,0.000000,0.250000,0,0);}
.m76_c00280{transform:matrix(0.283223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283223,0.000000,0.000000,0.250000,0,0);}
.m70_c00280{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m5a_c00280{transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);}
.m2d_c00280{transform:matrix(0.284092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284092,0.000000,0.000000,0.250000,0,0);}
.m92_c00280{transform:matrix(0.284504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284504,0.000000,0.000000,0.250000,0,0);}
.m1b_c00280{transform:matrix(0.285004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285004,0.000000,0.000000,0.250000,0,0);}
.m23_c00280{transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);}
.m65_c00280{transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);}
.m3a_c00280{transform:matrix(0.286202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286202,0.000000,0.000000,0.250000,0,0);}
.m6b_c00280{transform:matrix(0.286308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286308,0.000000,0.000000,0.250000,0,0);}
.m7f_c00280{transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);}
.m99_c00280{transform:matrix(0.287437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287437,0.000000,0.000000,0.250000,0,0);}
.m8f_c00280{transform:matrix(0.287478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287478,0.000000,0.000000,0.250000,0,0);}
.m69_c00280{transform:matrix(0.287729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287729,0.000000,0.000000,0.250000,0,0);}
.m46_c00280{transform:matrix(0.287765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287765,0.000000,0.000000,0.250000,0,0);}
.m2f_c00280{transform:matrix(0.288153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288153,0.000000,0.000000,0.250000,0,0);}
.m2b_c00280{transform:matrix(0.288371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288371,0.000000,0.000000,0.250000,0,0);}
.me_c00280{transform:matrix(0.289026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289026,0.000000,0.000000,0.250000,0,0);}
.m5e_c00280{transform:matrix(0.289686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289686,0.000000,0.000000,0.250000,0,0);}
.m47_c00280{transform:matrix(0.289951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289951,0.000000,0.000000,0.250000,0,0);}
.m98_c00280{transform:matrix(0.290584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290584,0.000000,0.000000,0.250000,0,0);}
.m42_c00280{transform:matrix(0.290973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290973,0.000000,0.000000,0.250000,0,0);}
.m39_c00280{transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);}
.m67_c00280{transform:matrix(0.291905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291905,0.000000,0.000000,0.250000,0,0);}
.m27_c00280{transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);}
.m95_c00280{transform:matrix(0.292866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292866,0.000000,0.000000,0.250000,0,0);}
.m19_c00280{transform:matrix(0.293617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293617,0.000000,0.000000,0.250000,0,0);}
.m53_c00280{transform:matrix(0.295460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295460,0.000000,0.000000,0.250000,0,0);}
.m5f_c00280{transform:matrix(0.295679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295679,0.000000,0.000000,0.250000,0,0);}
.m71_c00280{transform:matrix(0.297073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297073,0.000000,0.000000,0.250000,0,0);}
.m84_c00280{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m2_c00280{transform:matrix(0.297631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297631,0.000000,0.000000,0.250000,0,0);}
.m63_c00280{transform:matrix(0.298565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298565,0.000000,0.000000,0.250000,0,0);}
.m51_c00280{transform:matrix(0.298908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298908,0.000000,0.000000,0.250000,0,0);}
.m5d_c00280{transform:matrix(0.299238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299238,0.000000,0.000000,0.250000,0,0);}
.m89_c00280{transform:matrix(0.299372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299372,0.000000,0.000000,0.250000,0,0);}
.m97_c00280{transform:matrix(0.300337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300337,0.000000,0.000000,0.250000,0,0);}
.m3e_c00280{transform:matrix(0.300516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300516,0.000000,0.000000,0.250000,0,0);}
.m81_c00280{transform:matrix(0.301409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301409,0.000000,0.000000,0.250000,0,0);}
.m9a_c00280{transform:matrix(0.301455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301455,0.000000,0.000000,0.250000,0,0);}
.m8b_c00280{transform:matrix(0.302118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302118,0.000000,0.000000,0.250000,0,0);}
.m3b_c00280{transform:matrix(0.302204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302204,0.000000,0.000000,0.250000,0,0);}
.m54_c00280{transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);}
.m57_c00280{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m15_c00280{transform:matrix(0.302542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302542,0.000000,0.000000,0.250000,0,0);}
.m17_c00280{transform:matrix(0.302665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302665,0.000000,0.000000,0.250000,0,0);}
.m41_c00280{transform:matrix(0.302713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302713,0.000000,0.000000,0.250000,0,0);}
.m1f_c00280{transform:matrix(0.303356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303356,0.000000,0.000000,0.250000,0,0);}
.m38_c00280{transform:matrix(0.303459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303459,0.000000,0.000000,0.250000,0,0);}
.m0_c00280{transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);}
.m78_c00280{transform:matrix(0.305499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305499,0.000000,0.000000,0.250000,0,0);}
.m31_c00280{transform:matrix(0.305713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305713,0.000000,0.000000,0.250000,0,0);}
.m1c_c00280{transform:matrix(0.306304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306304,0.000000,0.000000,0.250000,0,0);}
.m21_c00280{transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);}
.m7d_c00280{transform:matrix(0.308482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308482,0.000000,0.000000,0.250000,0,0);}
.m3c_c00280{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m37_c00280{transform:matrix(0.308789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308789,0.000000,0.000000,0.250000,0,0);}
.m6e_c00280{transform:matrix(0.308836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308836,0.000000,0.000000,0.250000,0,0);}
.m2c_c00280{transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);}
.m90_c00280{transform:matrix(0.308958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308958,0.000000,0.000000,0.250000,0,0);}
.m28_c00280{transform:matrix(0.309093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309093,0.000000,0.000000,0.250000,0,0);}
.m86_c00280{transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);}
.m73_c00280{transform:matrix(0.309357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309357,0.000000,0.000000,0.250000,0,0);}
.m1_c00280{transform:matrix(0.309561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309561,0.000000,0.000000,0.250000,0,0);}
.m9b_c00280{transform:matrix(0.310694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310694,0.000000,0.000000,0.250000,0,0);}
.m72_c00280{transform:matrix(0.312393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312393,0.000000,0.000000,0.250000,0,0);}
.m60_c00280{transform:matrix(0.312483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312483,0.000000,0.000000,0.250000,0,0);}
.m14_c00280{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.m26_c00280{transform:matrix(0.313105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313105,0.000000,0.000000,0.250000,0,0);}
.m1e_c00280{transform:matrix(0.314162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314162,0.000000,0.000000,0.250000,0,0);}
.m66_c00280{transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);}
.m58_c00280{transform:matrix(0.316839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316839,0.000000,0.000000,0.250000,0,0);}
.m32_c00280{transform:matrix(0.319143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319143,0.000000,0.000000,0.250000,0,0);}
.m35_c00280{transform:matrix(0.319876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319876,0.000000,0.000000,0.250000,0,0);}
.m30_c00280{transform:matrix(0.322125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322125,0.000000,0.000000,0.250000,0,0);}
.m7c_c00280{transform:matrix(0.322530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322530,0.000000,0.000000,0.250000,0,0);}
.m64_c00280{transform:matrix(0.326078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326078,0.000000,0.000000,0.250000,0,0);}
.m7a_c00280{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m88_c00280{transform:matrix(0.327295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327295,0.000000,0.000000,0.250000,0,0);}
.m3d_c00280{transform:matrix(0.330374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330374,0.000000,0.000000,0.250000,0,0);}
.m56_c00280{transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);}
.m77_c00280{transform:matrix(0.338338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338338,0.000000,0.000000,0.250000,0,0);}
.m59_c00280{transform:matrix(0.338655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338655,0.000000,0.000000,0.250000,0,0);}
.m7e_c00280{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m24_c00280{transform:matrix(0.339556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339556,0.000000,0.000000,0.250000,0,0);}
.mf_c00280{transform:matrix(0.347013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347013,0.000000,0.000000,0.250000,0,0);}
.m5b_c00280{transform:matrix(0.348765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348765,0.000000,0.000000,0.250000,0,0);}
.m6c_c00280{transform:matrix(0.349429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349429,0.000000,0.000000,0.250000,0,0);}
.m80_c00280{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m11_c00280{transform:matrix(0.358652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358652,0.000000,0.000000,0.250000,0,0);}
.m8d_c00280{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);}
.m96_c00280{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m68_c00280{transform:matrix(0.407787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407787,0.000000,0.000000,0.250000,0,0);}
.m18_c00280{transform:matrix(0.414699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414699,0.000000,0.000000,0.250000,0,0);}
.v0_c00280{vertical-align:0.000000px;}
.lsb_c00280{letter-spacing:-3.014550px;}
.ls9_c00280{letter-spacing:-2.314627px;}
.ls6_c00280{letter-spacing:-2.065140px;}
.ls13_c00280{letter-spacing:-1.897474px;}
.lse_c00280{letter-spacing:-1.685772px;}
.ls4_c00280{letter-spacing:-1.230059px;}
.lsa_c00280{letter-spacing:-0.515831px;}
.ls8_c00280{letter-spacing:-0.264529px;}
.ls2_c00280{letter-spacing:0.000000px;}
.ls14_c00280{letter-spacing:0.580219px;}
.ls12_c00280{letter-spacing:0.987941px;}
.lsc_c00280{letter-spacing:1.082030px;}
.ls0_c00280{letter-spacing:1.152598px;}
.lsf_c00280{letter-spacing:2.783484px;}
.ls11_c00280{letter-spacing:3.112798px;}
.ls7_c00280{letter-spacing:3.306610px;}
.ls1_c00280{letter-spacing:3.920400px;}
.ls3_c00280{letter-spacing:42.768000px;}
.lsd_c00280{letter-spacing:51.321798px;}
.ls10_c00280{letter-spacing:57.024198px;}
.ls5_c00280{letter-spacing:59.875398px;}
.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:-19.602000px;}
.ws1_c00280{word-spacing:0.000000px;}
._2_c00280{width:4.390056px;}
._1_c00280{width:6.899904px;}
._6_c00280{width:9.096120px;}
._4_c00280{width:20.855736px;}
._0_c00280{width:24.438812px;}
._5_c00280{width:26.650800px;}
._3_c00280{width:30.261607px;}
._7_c00280{width:34.969968px;}
.fc0_c00280{color:transparent;}
.fs1_c00280{font-size:42.768000px;}
.fs7_c00280{font-size:51.321798px;}
.fs9_c00280{font-size:57.024198px;}
.fs5_c00280{font-size:59.004000px;}
.fs4_c00280{font-size:59.875398px;}
.fsa_c00280{font-size:60.192000px;}
.fs3_c00280{font-size:66.132198px;}
.fs2_c00280{font-size:66.528000px;}
.fs0_c00280{font-size:78.408000px;}
.fs8_c00280{font-size:78.804000px;}
.fs6_c00280{font-size:86.130000px;}
.y0_c00280{bottom:0.000000px;}
.y1_c00280{bottom:76.500000px;}
.y19_c00280{bottom:96.139935px;}
.y18_c00280{bottom:127.854585px;}
.y17_c00280{bottom:159.579135px;}
.y16_c00280{bottom:196.644735px;}
.y15_c00280{bottom:230.146335px;}
.y14_c00280{bottom:293.941935px;}
.y13_c00280{bottom:327.438585px;}
.y12_c00280{bottom:359.514585px;}
.y11_c00280{bottom:370.567935px;}
.y10_c00280{bottom:392.664735px;}
.yf_c00280{bottom:424.384335px;}
.ye_c00280{bottom:457.524585px;}
.yd_c00280{bottom:491.738985px;}
.yc_c00280{bottom:524.889135px;}
.yb_c00280{bottom:557.677935px;}
.ya_c00280{bottom:591.179535px;}
.y9_c00280{bottom:625.032585px;}
.y8_c00280{bottom:657.464985px;}
.y6_c00280{bottom:721.260585px;}
.y5_c00280{bottom:774.369135px;}
.y4_c00280{bottom:786.130335px;}
.y3_c00280{bottom:797.535135px;}
.y2_c00280{bottom:917.636985px;}
.y7_c00280{bottom:1075.522185px;}
.h3_c00280{height:28.483488px;}
.h9_c00280{height:34.180317px;}
.hb_c00280{height:37.978116px;}
.h6_c00280{height:39.877015px;}
.h7_c00280{height:57.909199px;}
.hd_c00280{height:62.778375px;}
.h5_c00280{height:68.973816px;}
.h4_c00280{height:69.386625px;}
.h2_c00280{height:76.953164px;}
.ha_c00280{height:77.341816px;}
.hc_c00280{height:79.020563px;}
.h8_c00280{height:84.531885px;}
.h1_c00280{height:1110.000000px;}
.h0_c00280{height:1263.000000px;}
.w1_c00280{width:763.500000px;}
.w0_c00280{width:892.500000px;}
.x0_c00280{left:0.000000px;}
.x1_c00280{left:64.500000px;}
.x3f_c00280{left:69.325785px;}
.x1e_c00280{left:70.434585px;}
.x67_c00280{left:71.528535px;}
.x2_c00280{left:72.716535px;}
.x28_c00280{left:102.178935px;}
.x4f_c00280{left:103.619385px;}
.x1f_c00280{left:114.281685px;}
.x3_c00280{left:116.058735px;}
.x14_c00280{left:124.844985px;}
.x65_c00280{left:126.874485px;}
.x30_c00280{left:136.517085px;}
.x50_c00280{left:146.298285px;}
.x36_c00280{left:147.570435px;}
.x15_c00280{left:156.678435px;}
.x40_c00280{left:158.257485px;}
.x61_c00280{left:159.980085px;}
.x4c_c00280{left:169.310835px;}
.x57_c00280{left:170.721585px;}
.x56_c00280{left:172.053135px;}
.x20_c00280{left:180.111735px;}
.x41_c00280{left:192.090735px;}
.x16_c00280{left:201.970935px;}
.x21_c00280{left:212.930235px;}
.x47_c00280{left:214.905285px;}
.x37_c00280{left:224.547885px;}
.x8_c00280{left:235.418085px;}
.x4_c00280{left:236.541735px;}
.xc_c00280{left:247.218885px;}
.x51_c00280{left:257.569335px;}
.x4d_c00280{left:258.732585px;}
.x52_c00280{left:268.518735px;}
.x5a_c00280{left:272.201535px;}
.x29_c00280{left:279.784935px;}
.x22_c00280{left:280.834335px;}
.x17_c00280{left:290.358135px;}
.x5b_c00280{left:292.595535px;}
.xd_c00280{left:302.817285px;}
.x18_c00280{left:313.093485px;}
.xe_c00280{left:317.964285px;}
.x9_c00280{left:323.478585px;}
.x5c_c00280{left:325.681335px;}
.x48_c00280{left:335.744685px;}
.x31_c00280{left:346.431735px;}
.x62_c00280{left:347.832585px;}
.x5_c00280{left:350.060085px;}
.x19_c00280{left:357.133635px;}
.x5d_c00280{left:358.920585px;}
.x6_c00280{left:361.261935px;}
.x53_c00280{left:368.414685px;}
.x42_c00280{left:370.256085px;}
.x49_c00280{left:379.938285px;}
.x38_c00280{left:389.080935px;}
.x1a_c00280{left:390.239235px;}
.x4a_c00280{left:401.678685px;}
.x23_c00280{left:412.014285px;}
.x5e_c00280{left:413.776485px;}
.xa_c00280{left:423.275535px;}
.x32_c00280{left:434.086335px;}
.xb_c00280{left:435.393135px;}
.xf_c00280{left:445.347585px;}
.x33_c00280{left:456.544485px;}
.x4e_c00280{left:467.132535px;}
.x3b_c00280{left:477.760185px;}
.x2a_c00280{left:479.349135px;}
.x10_c00280{left:489.570885px;}
.x43_c00280{left:505.960335px;}
.x58_c00280{left:511.093485px;}
.x11_c00280{left:512.860635px;}
.x39_c00280{left:522.146835px;}
.x5f_c00280{left:523.181385px;}
.x7_c00280{left:530.096535px;}
.x1b_c00280{left:533.190285px;}
.x63_c00280{left:534.581235px;}
.x68_c00280{left:536.011785px;}
.x54_c00280{left:543.887235px;}
.x3c_c00280{left:545.278185px;}
.x34_c00280{left:547.060185px;}
.x44_c00280{left:554.069385px;}
.x1c_c00280{left:566.325585px;}
.x2b_c00280{left:577.032435px;}
.x60_c00280{left:578.359035px;}
.x24_c00280{left:588.783735px;}
.x3a_c00280{left:600.153885px;}
.x1d_c00280{left:609.692535px;}
.x2c_c00280{left:610.845885px;}
.x55_c00280{left:619.250985px;}
.x25_c00280{left:621.235935px;}
.x59_c00280{left:622.572435px;}
.x26_c00280{left:631.046835px;}
.x3d_c00280{left:632.086335px;}
.x64_c00280{left:633.239685px;}
.x45_c00280{left:642.105135px;}
.x69_c00280{left:643.322835px;}
.x12_c00280{left:645.050385px;}
.x2d_c00280{left:653.618835px;}
.x13_c00280{left:656.935335px;}
.x35_c00280{left:664.429635px;}
.x66_c00280{left:665.592885px;}
.x6a_c00280{left:677.383785px;}
.x2e_c00280{left:687.318435px;}
.x27_c00280{left:698.381685px;}
.x3e_c00280{left:709.608285px;}
.x2f_c00280{left:719.914185px;}
.x46_c00280{left:729.705285px;}
.x4b_c00280{left:733.635585px;}
@media print{
.v0_c00280{vertical-align:0.000000pt;}
.lsb_c00280{letter-spacing:-2.679600pt;}
.ls9_c00280{letter-spacing:-2.057446pt;}
.ls6_c00280{letter-spacing:-1.835680pt;}
.ls13_c00280{letter-spacing:-1.686643pt;}
.lse_c00280{letter-spacing:-1.498464pt;}
.ls4_c00280{letter-spacing:-1.093386pt;}
.lsa_c00280{letter-spacing:-0.458517pt;}
.ls8_c00280{letter-spacing:-0.235137pt;}
.ls2_c00280{letter-spacing:0.000000pt;}
.ls14_c00280{letter-spacing:0.515750pt;}
.ls12_c00280{letter-spacing:0.878170pt;}
.lsc_c00280{letter-spacing:0.961805pt;}
.ls0_c00280{letter-spacing:1.024531pt;}
.lsf_c00280{letter-spacing:2.474208pt;}
.ls11_c00280{letter-spacing:2.766931pt;}
.ls7_c00280{letter-spacing:2.939209pt;}
.ls1_c00280{letter-spacing:3.484800pt;}
.ls3_c00280{letter-spacing:38.016000pt;}
.lsd_c00280{letter-spacing:45.619376pt;}
.ls10_c00280{letter-spacing:50.688176pt;}
.ls5_c00280{letter-spacing:53.222576pt;}
.ws0_c00280{word-spacing:-17.424000pt;}
.ws1_c00280{word-spacing:0.000000pt;}
._2_c00280{width:3.902272pt;}
._1_c00280{width:6.133248pt;}
._6_c00280{width:8.085440pt;}
._4_c00280{width:18.538432pt;}
._0_c00280{width:21.723389pt;}
._5_c00280{width:23.689600pt;}
._3_c00280{width:26.899206pt;}
._7_c00280{width:31.084416pt;}
.fs1_c00280{font-size:38.016000pt;}
.fs7_c00280{font-size:45.619376pt;}
.fs9_c00280{font-size:50.688176pt;}
.fs5_c00280{font-size:52.448000pt;}
.fs4_c00280{font-size:53.222576pt;}
.fsa_c00280{font-size:53.504000pt;}
.fs3_c00280{font-size:58.784176pt;}
.fs2_c00280{font-size:59.136000pt;}
.fs0_c00280{font-size:69.696000pt;}
.fs8_c00280{font-size:70.048000pt;}
.fs6_c00280{font-size:76.560000pt;}
.y0_c00280{bottom:0.000000pt;}
.y1_c00280{bottom:68.000000pt;}
.y19_c00280{bottom:85.457720pt;}
.y18_c00280{bottom:113.648520pt;}
.y17_c00280{bottom:141.848120pt;}
.y16_c00280{bottom:174.795320pt;}
.y15_c00280{bottom:204.574520pt;}
.y14_c00280{bottom:261.281720pt;}
.y13_c00280{bottom:291.056520pt;}
.y12_c00280{bottom:319.568520pt;}
.y11_c00280{bottom:329.393720pt;}
.y10_c00280{bottom:349.035320pt;}
.yf_c00280{bottom:377.230520pt;}
.ye_c00280{bottom:406.688520pt;}
.yd_c00280{bottom:437.101320pt;}
.yc_c00280{bottom:466.568120pt;}
.yb_c00280{bottom:495.713720pt;}
.ya_c00280{bottom:525.492920pt;}
.y9_c00280{bottom:555.584520pt;}
.y8_c00280{bottom:584.413320pt;}
.y6_c00280{bottom:641.120520pt;}
.y5_c00280{bottom:688.328120pt;}
.y4_c00280{bottom:698.782520pt;}
.y3_c00280{bottom:708.920120pt;}
.y2_c00280{bottom:815.677320pt;}
.y7_c00280{bottom:956.019720pt;}
.h3_c00280{height:25.318656pt;}
.h9_c00280{height:30.382504pt;}
.hb_c00280{height:33.758325pt;}
.h6_c00280{height:35.446236pt;}
.h7_c00280{height:51.474844pt;}
.hd_c00280{height:55.803000pt;}
.h5_c00280{height:61.310059pt;}
.h4_c00280{height:61.677000pt;}
.h2_c00280{height:68.402813pt;}
.ha_c00280{height:68.748281pt;}
.hc_c00280{height:70.240500pt;}
.h8_c00280{height:75.139453pt;}
.h1_c00280{height:986.666667pt;}
.h0_c00280{height:1122.666667pt;}
.w1_c00280{width:678.666667pt;}
.w0_c00280{width:793.333333pt;}
.x0_c00280{left:0.000000pt;}
.x1_c00280{left:57.333333pt;}
.x3f_c00280{left:61.622920pt;}
.x1e_c00280{left:62.608520pt;}
.x67_c00280{left:63.580920pt;}
.x2_c00280{left:64.636920pt;}
.x28_c00280{left:90.825720pt;}
.x4f_c00280{left:92.106120pt;}
.x1f_c00280{left:101.583720pt;}
.x3_c00280{left:103.163320pt;}
.x14_c00280{left:110.973320pt;}
.x65_c00280{left:112.777320pt;}
.x30_c00280{left:121.348520pt;}
.x50_c00280{left:130.042920pt;}
.x36_c00280{left:131.173720pt;}
.x15_c00280{left:139.269720pt;}
.x40_c00280{left:140.673320pt;}
.x61_c00280{left:142.204520pt;}
.x4c_c00280{left:150.498520pt;}
.x57_c00280{left:151.752520pt;}
.x56_c00280{left:152.936120pt;}
.x20_c00280{left:160.099320pt;}
.x41_c00280{left:170.747320pt;}
.x16_c00280{left:179.529720pt;}
.x21_c00280{left:189.271320pt;}
.x47_c00280{left:191.026920pt;}
.x37_c00280{left:199.598120pt;}
.x8_c00280{left:209.260520pt;}
.x4_c00280{left:210.259320pt;}
.xc_c00280{left:219.750120pt;}
.x51_c00280{left:228.950520pt;}
.x4d_c00280{left:229.984520pt;}
.x52_c00280{left:238.683320pt;}
.x5a_c00280{left:241.956920pt;}
.x29_c00280{left:248.697720pt;}
.x22_c00280{left:249.630520pt;}
.x17_c00280{left:258.096120pt;}
.x5b_c00280{left:260.084920pt;}
.xd_c00280{left:269.170920pt;}
.x18_c00280{left:278.305320pt;}
.xe_c00280{left:282.634920pt;}
.x9_c00280{left:287.536520pt;}
.x5c_c00280{left:289.494520pt;}
.x48_c00280{left:298.439720pt;}
.x31_c00280{left:307.939320pt;}
.x62_c00280{left:309.184520pt;}
.x5_c00280{left:311.164520pt;}
.x19_c00280{left:317.452120pt;}
.x5d_c00280{left:319.040520pt;}
.x6_c00280{left:321.121720pt;}
.x53_c00280{left:327.479720pt;}
.x42_c00280{left:329.116520pt;}
.x49_c00280{left:337.722920pt;}
.x38_c00280{left:345.849720pt;}
.x1a_c00280{left:346.879320pt;}
.x4a_c00280{left:357.047720pt;}
.x23_c00280{left:366.234920pt;}
.x5e_c00280{left:367.801320pt;}
.xa_c00280{left:376.244920pt;}
.x32_c00280{left:385.854520pt;}
.xb_c00280{left:387.016120pt;}
.xf_c00280{left:395.864520pt;}
.x33_c00280{left:405.817320pt;}
.x4e_c00280{left:415.228920pt;}
.x3b_c00280{left:424.675720pt;}
.x2a_c00280{left:426.088120pt;}
.x10_c00280{left:435.174120pt;}
.x43_c00280{left:449.742520pt;}
.x58_c00280{left:454.305320pt;}
.x11_c00280{left:455.876120pt;}
.x39_c00280{left:464.130520pt;}
.x5f_c00280{left:465.050120pt;}
.x7_c00280{left:471.196920pt;}
.x1b_c00280{left:473.946920pt;}
.x63_c00280{left:475.183320pt;}
.x68_c00280{left:476.454920pt;}
.x54_c00280{left:483.455320pt;}
.x3c_c00280{left:484.691720pt;}
.x34_c00280{left:486.275720pt;}
.x44_c00280{left:492.506120pt;}
.x1c_c00280{left:503.400520pt;}
.x2b_c00280{left:512.917720pt;}
.x60_c00280{left:514.096920pt;}
.x24_c00280{left:523.363320pt;}
.x3a_c00280{left:533.470120pt;}
.x1d_c00280{left:541.948920pt;}
.x2c_c00280{left:542.974120pt;}
.x55_c00280{left:550.445320pt;}
.x25_c00280{left:552.209720pt;}
.x59_c00280{left:553.397720pt;}
.x26_c00280{left:560.930520pt;}
.x3d_c00280{left:561.854520pt;}
.x64_c00280{left:562.879720pt;}
.x45_c00280{left:570.760120pt;}
.x69_c00280{left:571.842520pt;}
.x12_c00280{left:573.378120pt;}
.x2d_c00280{left:580.994520pt;}
.x13_c00280{left:583.942520pt;}
.x35_c00280{left:590.604120pt;}
.x66_c00280{left:591.638120pt;}
.x6a_c00280{left:602.118920pt;}
.x2e_c00280{left:610.949720pt;}
.x27_c00280{left:620.783720pt;}
.x3e_c00280{left:630.762920pt;}
.x2f_c00280{left:639.923720pt;}
.x46_c00280{left:648.626920pt;}
.x4b_c00280{left:652.120520pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1e91aca0db479429d5892a2c.woff2')format("woff");}.ff1_c00281{font-family:ff1_c00281;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00281;src:url('chunks/assets/font_4749430ee420a53d7b7e336b.woff2')format("woff");}.ff2_c00281{font-family:ff2_c00281;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00281;src:url('chunks/assets/font_1455314a889ea7337dc8bf0a.woff2')format("woff");}.ff3_c00281{font-family:ff3_c00281;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m35_c00281{transform:matrix(0.114583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114583,0.000000,0.000000,0.250000,0,0);}
.m3d_c00281{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m37_c00281{transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);}
.m36_c00281{transform:matrix(0.204861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204861,0.000000,0.000000,0.250000,0,0);}
.m88_c00281{transform:matrix(0.211806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211806,0.000000,0.000000,0.250000,0,0);}
.m14_c00281{transform:matrix(0.216704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216704,0.000000,0.000000,0.250000,0,0);}
.m34_c00281{transform:matrix(0.224568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224568,0.000000,0.000000,0.250000,0,0);}
.m3c_c00281{transform:matrix(0.229166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229166,0.000000,0.000000,0.250000,0,0);}
.m4e_c00281{transform:matrix(0.229548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229548,0.000000,0.000000,0.250000,0,0);}
.m7_c00281{transform:matrix(0.246419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246419,0.000000,0.000000,0.250000,0,0);}
.m1_c00281{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m50_c00281{transform:matrix(0.250258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250258,0.000000,0.000000,0.250000,0,0);}
.m1d_c00281{transform:matrix(0.250712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250712,0.000000,0.000000,0.250000,0,0);}
.m64_c00281{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.m53_c00281{transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);}
.m8b_c00281{transform:matrix(0.253513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253513,0.000000,0.000000,0.250000,0,0);}
.m98_c00281{transform:matrix(0.253545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253545,0.000000,0.000000,0.250000,0,0);}
.m66_c00281{transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);}
.md_c00281{transform:matrix(0.254850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254850,0.000000,0.000000,0.250000,0,0);}
.m3e_c00281{transform:matrix(0.257043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257043,0.000000,0.000000,0.250000,0,0);}
.m59_c00281{transform:matrix(0.257917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257917,0.000000,0.000000,0.250000,0,0);}
.m7a_c00281{transform:matrix(0.258139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258139,0.000000,0.000000,0.250000,0,0);}
.m9a_c00281{transform:matrix(0.258620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258620,0.000000,0.000000,0.250000,0,0);}
.m9_c00281{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m6f_c00281{transform:matrix(0.258914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258914,0.000000,0.000000,0.250000,0,0);}
.m9e_c00281{transform:matrix(0.260444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260444,0.000000,0.000000,0.250000,0,0);}
.m38_c00281{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m5_c00281{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m84_c00281{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.ma2_c00281{transform:matrix(0.264608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264608,0.000000,0.000000,0.250000,0,0);}
.m29_c00281{transform:matrix(0.264796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264796,0.000000,0.000000,0.250000,0,0);}
.m7b_c00281{transform:matrix(0.265042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265042,0.000000,0.000000,0.250000,0,0);}
.m9c_c00281{transform:matrix(0.265597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265597,0.000000,0.000000,0.250000,0,0);}
.m2_c00281{transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);}
.m25_c00281{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m3b_c00281{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.m1e_c00281{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m5b_c00281{transform:matrix(0.268088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268088,0.000000,0.000000,0.250000,0,0);}
.m0_c00281{transform:matrix(0.268154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268154,0.000000,0.000000,0.250000,0,0);}
.m90_c00281{transform:matrix(0.269151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269151,0.000000,0.000000,0.250000,0,0);}
.m5e_c00281{transform:matrix(0.270614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270614,0.000000,0.000000,0.250000,0,0);}
.m75_c00281{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m2d_c00281{transform:matrix(0.271138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271138,0.000000,0.000000,0.250000,0,0);}
.m94_c00281{transform:matrix(0.271467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271467,0.000000,0.000000,0.250000,0,0);}
.m4_c00281{transform:matrix(0.272078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272078,0.000000,0.000000,0.250000,0,0);}
.m83_c00281{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m18_c00281{transform:matrix(0.272544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272544,0.000000,0.000000,0.250000,0,0);}
.mc_c00281{transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);}
.m99_c00281{transform:matrix(0.274278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274278,0.000000,0.000000,0.250000,0,0);}
.m1b_c00281{transform:matrix(0.275438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275438,0.000000,0.000000,0.250000,0,0);}
.m82_c00281{transform:matrix(0.275836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275836,0.000000,0.000000,0.250000,0,0);}
.m12_c00281{transform:matrix(0.277164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277164,0.000000,0.000000,0.250000,0,0);}
.m78_c00281{transform:matrix(0.277902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277902,0.000000,0.000000,0.250000,0,0);}
.m86_c00281{transform:matrix(0.278681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278681,0.000000,0.000000,0.250000,0,0);}
.m21_c00281{transform:matrix(0.279273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279273,0.000000,0.000000,0.250000,0,0);}
.m23_c00281{transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);}
.m33_c00281{transform:matrix(0.280061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280061,0.000000,0.000000,0.250000,0,0);}
.m8e_c00281{transform:matrix(0.280084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280084,0.000000,0.000000,0.250000,0,0);}
.m61_c00281{transform:matrix(0.280181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280181,0.000000,0.000000,0.250000,0,0);}
.m2c_c00281{transform:matrix(0.280356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280356,0.000000,0.000000,0.250000,0,0);}
.m8d_c00281{transform:matrix(0.280761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280761,0.000000,0.000000,0.250000,0,0);}
.m26_c00281{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.m52_c00281{transform:matrix(0.281783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281783,0.000000,0.000000,0.250000,0,0);}
.m3f_c00281{transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);}
.m57_c00281{transform:matrix(0.283229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283229,0.000000,0.000000,0.250000,0,0);}
.m10_c00281{transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);}
.m20_c00281{transform:matrix(0.284338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284338,0.000000,0.000000,0.250000,0,0);}
.m6e_c00281{transform:matrix(0.285273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285273,0.000000,0.000000,0.250000,0,0);}
.me_c00281{transform:matrix(0.285507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285507,0.000000,0.000000,0.250000,0,0);}
.m9d_c00281{transform:matrix(0.285577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285577,0.000000,0.000000,0.250000,0,0);}
.m70_c00281{transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);}
.m1c_c00281{transform:matrix(0.286141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286141,0.000000,0.000000,0.250000,0,0);}
.m93_c00281{transform:matrix(0.286350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286350,0.000000,0.000000,0.250000,0,0);}
.m42_c00281{transform:matrix(0.287807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287807,0.000000,0.000000,0.250000,0,0);}
.m4d_c00281{transform:matrix(0.288608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288608,0.000000,0.000000,0.250000,0,0);}
.m97_c00281{transform:matrix(0.288835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288835,0.000000,0.000000,0.250000,0,0);}
.m69_c00281{transform:matrix(0.289438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289438,0.000000,0.000000,0.250000,0,0);}
.m72_c00281{transform:matrix(0.289512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289512,0.000000,0.000000,0.250000,0,0);}
.m54_c00281{transform:matrix(0.289775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289775,0.000000,0.000000,0.250000,0,0);}
.m96_c00281{transform:matrix(0.290314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290314,0.000000,0.000000,0.250000,0,0);}
.m65_c00281{transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);}
.m7e_c00281{transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);}
.ma_c00281{transform:matrix(0.293383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293383,0.000000,0.000000,0.250000,0,0);}
.mb_c00281{transform:matrix(0.293982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293982,0.000000,0.000000,0.250000,0,0);}
.ma1_c00281{transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);}
.ma0_c00281{transform:matrix(0.295172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295172,0.000000,0.000000,0.250000,0,0);}
.m63_c00281{transform:matrix(0.295190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295190,0.000000,0.000000,0.250000,0,0);}
.m2b_c00281{transform:matrix(0.295991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295991,0.000000,0.000000,0.250000,0,0);}
.m19_c00281{transform:matrix(0.296280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296280,0.000000,0.000000,0.250000,0,0);}
.m55_c00281{transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);}
.m81_c00281{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m62_c00281{transform:matrix(0.297295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297295,0.000000,0.000000,0.250000,0,0);}
.m6d_c00281{transform:matrix(0.300001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300001,0.000000,0.000000,0.250000,0,0);}
.m40_c00281{transform:matrix(0.300614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300614,0.000000,0.000000,0.250000,0,0);}
.m7d_c00281{transform:matrix(0.300895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300895,0.000000,0.000000,0.250000,0,0);}
.m47_c00281{transform:matrix(0.301666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301666,0.000000,0.000000,0.250000,0,0);}
.m22_c00281{transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);}
.m49_c00281{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m91_c00281{transform:matrix(0.303614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303614,0.000000,0.000000,0.250000,0,0);}
.m27_c00281{transform:matrix(0.303753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303753,0.000000,0.000000,0.250000,0,0);}
.m48_c00281{transform:matrix(0.304629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304629,0.000000,0.000000,0.250000,0,0);}
.m7c_c00281{transform:matrix(0.304857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304857,0.000000,0.000000,0.250000,0,0);}
.m92_c00281{transform:matrix(0.304946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304946,0.000000,0.000000,0.250000,0,0);}
.m17_c00281{transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);}
.m56_c00281{transform:matrix(0.305409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305409,0.000000,0.000000,0.250000,0,0);}
.m3a_c00281{transform:matrix(0.307694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307694,0.000000,0.000000,0.250000,0,0);}
.m51_c00281{transform:matrix(0.308564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308564,0.000000,0.000000,0.250000,0,0);}
.m30_c00281{transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);}
.m58_c00281{transform:matrix(0.310415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310415,0.000000,0.000000,0.250000,0,0);}
.m76_c00281{transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);}
.m44_c00281{transform:matrix(0.311255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311255,0.000000,0.000000,0.250000,0,0);}
.m67_c00281{transform:matrix(0.311442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311442,0.000000,0.000000,0.250000,0,0);}
.m9f_c00281{transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);}
.m9b_c00281{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.m39_c00281{transform:matrix(0.313302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313302,0.000000,0.000000,0.250000,0,0);}
.m8_c00281{transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);}
.m4b_c00281{transform:matrix(0.313921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313921,0.000000,0.000000,0.250000,0,0);}
.m8f_c00281{transform:matrix(0.314188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314188,0.000000,0.000000,0.250000,0,0);}
.m2f_c00281{transform:matrix(0.314788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314788,0.000000,0.000000,0.250000,0,0);}
.m77_c00281{transform:matrix(0.317290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317290,0.000000,0.000000,0.250000,0,0);}
.m16_c00281{transform:matrix(0.317553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317553,0.000000,0.000000,0.250000,0,0);}
.m1a_c00281{transform:matrix(0.319130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319130,0.000000,0.000000,0.250000,0,0);}
.m68_c00281{transform:matrix(0.319176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319176,0.000000,0.000000,0.250000,0,0);}
.m45_c00281{transform:matrix(0.321047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321047,0.000000,0.000000,0.250000,0,0);}
.m41_c00281{transform:matrix(0.321107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321107,0.000000,0.000000,0.250000,0,0);}
.m8a_c00281{transform:matrix(0.321130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321130,0.000000,0.000000,0.250000,0,0);}
.m11_c00281{transform:matrix(0.321991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321991,0.000000,0.000000,0.250000,0,0);}
.m6a_c00281{transform:matrix(0.321992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321992,0.000000,0.000000,0.250000,0,0);}
.m80_c00281{transform:matrix(0.322941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322941,0.000000,0.000000,0.250000,0,0);}
.m6b_c00281{transform:matrix(0.323962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323962,0.000000,0.000000,0.250000,0,0);}
.m43_c00281{transform:matrix(0.325417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325417,0.000000,0.000000,0.250000,0,0);}
.m8c_c00281{transform:matrix(0.326627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326627,0.000000,0.000000,0.250000,0,0);}
.m5c_c00281{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m5d_c00281{transform:matrix(0.330255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330255,0.000000,0.000000,0.250000,0,0);}
.m13_c00281{transform:matrix(0.330299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330299,0.000000,0.000000,0.250000,0,0);}
.m46_c00281{transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);}
.m71_c00281{transform:matrix(0.331265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331265,0.000000,0.000000,0.250000,0,0);}
.m7f_c00281{transform:matrix(0.332220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332220,0.000000,0.000000,0.250000,0,0);}
.m24_c00281{transform:matrix(0.333065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333065,0.000000,0.000000,0.250000,0,0);}
.m31_c00281{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m87_c00281{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);}
.m28_c00281{transform:matrix(0.334658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334658,0.000000,0.000000,0.250000,0,0);}
.mf_c00281{transform:matrix(0.335004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335004,0.000000,0.000000,0.250000,0,0);}
.m5a_c00281{transform:matrix(0.337014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337014,0.000000,0.000000,0.250000,0,0);}
.m85_c00281{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m60_c00281{transform:matrix(0.342513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342513,0.000000,0.000000,0.250000,0,0);}
.m3_c00281{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.m4c_c00281{transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);}
.m95_c00281{transform:matrix(0.347013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347013,0.000000,0.000000,0.250000,0,0);}
.m15_c00281{transform:matrix(0.350588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350588,0.000000,0.000000,0.250000,0,0);}
.m6c_c00281{transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);}
.m74_c00281{transform:matrix(0.355222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355222,0.000000,0.000000,0.250000,0,0);}
.m89_c00281{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m79_c00281{transform:matrix(0.357165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357165,0.000000,0.000000,0.250000,0,0);}
.m1f_c00281{transform:matrix(0.358842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358842,0.000000,0.000000,0.250000,0,0);}
.m2e_c00281{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m5f_c00281{transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);}
.m2a_c00281{transform:matrix(0.368363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368363,0.000000,0.000000,0.250000,0,0);}
.m32_c00281{transform:matrix(0.378961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378961,0.000000,0.000000,0.250000,0,0);}
.m73_c00281{transform:matrix(0.381065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381065,0.000000,0.000000,0.250000,0,0);}
.m6_c00281{transform:matrix(0.385211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385211,0.000000,0.000000,0.250000,0,0);}
.m4f_c00281{transform:matrix(0.385852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385852,0.000000,0.000000,0.250000,0,0);}
.m4a_c00281{transform:matrix(0.414699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414699,0.000000,0.000000,0.250000,0,0);}
.v1_c00281{vertical-align:-1.425600px;}
.v0_c00281{vertical-align:0.000000px;}
.ls5_c00281{letter-spacing:-2.744280px;}
.lsa_c00281{letter-spacing:-2.430648px;}
.lsb_c00281{letter-spacing:-0.250906px;}
.ls3_c00281{letter-spacing:0.000000px;}
.ls0_c00281{letter-spacing:1.019304px;}
.ls9_c00281{letter-spacing:1.246687px;}
.ls1_c00281{letter-spacing:2.579623px;}
.lsc_c00281{letter-spacing:2.736439px;}
.ls6_c00281{letter-spacing:3.191206px;}
.ls8_c00281{letter-spacing:3.677335px;}
.ls4_c00281{letter-spacing:3.920400px;}
.ls2_c00281{letter-spacing:4.197610px;}
.ls7_c00281{letter-spacing:51.321798px;}
.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:-22.338439px;}
.ws2_c00281{word-spacing:-22.181623px;}
.ws1_c00281{word-spacing:-20.621304px;}
.ws0_c00281{word-spacing:-19.602000px;}
.ws4_c00281{word-spacing:0.000000px;}
._d_c00281{margin-left:-13.172544px;}
._2_c00281{margin-left:-11.761200px;}
._11_c00281{margin-left:-3.355862px;}
._5_c00281{width:4.311648px;}
._3_c00281{width:6.507864px;}
._6_c00281{width:8.624880px;}
._7_c00281{width:10.507068px;}
._c_c00281{width:12.780504px;}
._e_c00281{width:15.446376px;}
._a_c00281{width:17.407368px;}
._12_c00281{width:20.856528px;}
._1_c00281{width:22.267872px;}
._f_c00281{width:29.166984px;}
._9_c00281{width:30.422304px;}
._4_c00281{width:31.833648px;}
._b_c00281{width:35.047584px;}
._0_c00281{width:37.635840px;}
._8_c00281{width:41.948280px;}
._10_c00281{width:45.633060px;}
._13_c00281{width:2460.901608px;}
.fc0_c00281{color:transparent;}
.fs5_c00281{font-size:22.572000px;}
.fs4_c00281{font-size:28.314000px;}
.fs3_c00281{font-size:33.264000px;}
.fs2_c00281{font-size:51.321798px;}
.fs1_c00281{font-size:78.408000px;}
.fs0_c00281{font-size:83.952198px;}
.y0_c00281{bottom:0.000000px;}
.y1_c00281{bottom:76.500000px;}
.y17_c00281{bottom:166.707135px;}
.y16_c00281{bottom:257.589135px;}
.y15_c00281{bottom:257.598045px;}
.y14_c00281{bottom:291.803535px;}
.y13_c00281{bottom:324.587385px;}
.y12_c00281{bottom:357.737535px;}
.y11_c00281{bottom:422.245935px;}
.y10_c00281{bottom:454.673385px;}
.yf_c00281{bottom:486.754335px;}
.ye_c00281{bottom:518.825385px;}
.yd_c00281{bottom:551.614185px;}
.yc_c00281{bottom:584.764335px;}
.yb_c00281{bottom:617.904585px;}
.ya_c00281{bottom:651.049785px;}
.y9_c00281{bottom:683.843535px;}
.y8_c00281{bottom:718.057935px;}
.y7_c00281{bottom:750.846735px;}
.y6_c00281{bottom:783.635535px;}
.y5_c00281{bottom:816.424335px;}
.y4_c00281{bottom:881.284185px;}
.y3_c00281{bottom:918.349785px;}
.y18_c00281{bottom:931.897935px;}
.y2_c00281{bottom:1080.155385px;}
.h6_c00281{height:23.541891px;}
.h4_c00281{height:34.180317px;}
.h5_c00281{height:34.693313px;}
.h3_c00281{height:76.953164px;}
.h2_c00281{height:82.394491px;}
.h1_c00281{height:1110.000000px;}
.h0_c00281{height:1263.000000px;}
.w1_c00281{width:763.500000px;}
.w0_c00281{width:892.500000px;}
.x0_c00281{left:0.000000px;}
.x1_c00281{left:64.500000px;}
.x3e_c00281{left:66.469635px;}
.x16_c00281{left:68.093235px;}
.x4_c00281{left:69.152535px;}
.x5f_c00281{left:89.818785px;}
.x17_c00281{left:100.307835px;}
.x61_c00281{left:106.658685px;}
.x5_c00281{left:112.608585px;}
.x22_c00281{left:123.053085px;}
.x32_c00281{left:133.274835px;}
.x2a_c00281{left:134.358885px;}
.x5c_c00281{left:143.803485px;}
.x6_c00281{left:145.238985px;}
.x23_c00281{left:154.856835px;}
.x60_c00281{left:158.316885px;}
.x2b_c00281{left:165.232035px;}
.x57_c00281{left:176.592285px;}
.x24_c00281{left:178.032735px;}
.x53_c00281{left:179.591985px;}
.x18_c00281{left:187.328835px;}
.x4a_c00281{left:188.922735px;}
.x4b_c00281{left:198.377235px;}
.x2c_c00281{left:199.956285px;}
.x54_c00281{left:211.014585px;}
.x7_c00281{left:221.345235px;}
.x2d_c00281{left:232.319385px;}
.x48_c00281{left:243.199485px;}
.x58_c00281{left:244.427085px;}
.x8_c00281{left:253.530135px;}
.x33_c00281{left:255.495285px;}
.x45_c00281{left:259.385985px;}
.x2e_c00281{left:265.533885px;}
.x55_c00281{left:266.563485px;}
.x9_c00281{left:267.598035px;}
.x46_c00281{left:277.275285px;}
.x59_c00281{left:288.709785px;}
.xa_c00281{left:297.773235px;}
.x25_c00281{left:299.035485px;}
.x19_c00281{left:309.603735px;}
.x47_c00281{left:311.098635px;}
.xb_c00281{left:321.147135px;}
.xc_c00281{left:331.987635px;}
.x49_c00281{left:333.190485px;}
.x56_c00281{left:343.862685px;}
.x34_c00281{left:353.386485px;}
.x26_c00281{left:354.435885px;}
.xd_c00281{left:364.979385px;}
.x4c_c00281{left:375.894135px;}
.x1a_c00281{left:386.165385px;}
.x27_c00281{left:387.699885px;}
.xe_c00281{left:397.510785px;}
.x5a_c00281{left:398.802735px;}
.xf_c00281{left:409.143285px;}
.x4f_c00281{left:418.988835px;}
.x2f_c00281{left:420.246135px;}
.x3f_c00281{left:422.602335px;}
.x35_c00281{left:431.621235px;}
.x40_c00281{left:443.357685px;}
.x50_c00281{left:453.955635px;}
.x36_c00281{left:465.127785px;}
.x1b_c00281{left:475.488135px;}
.x37_c00281{left:486.298935px;}
.x10_c00281{left:497.159235px;}
.x1c_c00281{left:508.544235px;}
.x41_c00281{left:518.934285px;}
.x4d_c00281{left:519.993585px;}
.x28_c00281{left:529.725285px;}
.x5d_c00281{left:540.996435px;}
.x38_c00281{left:542.422035px;}
.x42_c00281{left:550.856835px;}
.x11_c00281{left:552.079485px;}
.x4e_c00281{left:564.137685px;}
.x12_c00281{left:572.953635px;}
.x30_c00281{left:574.606935px;}
.x39_c00281{left:585.600885px;}
.x1d_c00281{left:596.243385px;}
.x13_c00281{left:606.781935px;}
.x5e_c00281{left:607.994685px;}
.x43_c00281{left:618.345135px;}
.x51_c00281{left:619.943985px;}
.x29_c00281{left:629.418285px;}
.x1e_c00281{left:639.273735px;}
.x3a_c00281{left:640.823085px;}
.x2_c00281{left:650.381535px;}
.x5b_c00281{left:651.495285px;}
.x3b_c00281{left:660.994335px;}
.x1f_c00281{left:662.018985px;}
.x14_c00281{left:672.418935px;}
.x3c_c00281{left:673.819785px;}
.x44_c00281{left:675.289935px;}
.x15_c00281{left:682.368435px;}
.x3_c00281{left:684.620685px;}
.x52_c00281{left:694.456335px;}
.x31_c00281{left:695.718585px;}
.x20_c00281{left:707.113485px;}
.x3d_c00281{left:716.944185px;}
.x21_c00281{left:719.305335px;}
.x62_c00281{left:760.286385px;}
@media print{
.v1_c00281{vertical-align:-1.267200pt;}
.v0_c00281{vertical-align:0.000000pt;}
.ls5_c00281{letter-spacing:-2.439360pt;}
.lsa_c00281{letter-spacing:-2.160576pt;}
.lsb_c00281{letter-spacing:-0.223027pt;}
.ls3_c00281{letter-spacing:0.000000pt;}
.ls0_c00281{letter-spacing:0.906048pt;}
.ls9_c00281{letter-spacing:1.108166pt;}
.ls1_c00281{letter-spacing:2.292998pt;}
.lsc_c00281{letter-spacing:2.432390pt;}
.ls6_c00281{letter-spacing:2.836627pt;}
.ls8_c00281{letter-spacing:3.268742pt;}
.ls4_c00281{letter-spacing:3.484800pt;}
.ls2_c00281{letter-spacing:3.731209pt;}
.ls7_c00281{letter-spacing:45.619376pt;}
.ws3_c00281{word-spacing:-19.856390pt;}
.ws2_c00281{word-spacing:-19.716998pt;}
.ws1_c00281{word-spacing:-18.330048pt;}
.ws0_c00281{word-spacing:-17.424000pt;}
.ws4_c00281{word-spacing:0.000000pt;}
._d_c00281{margin-left:-11.708928pt;}
._2_c00281{margin-left:-10.454400pt;}
._11_c00281{margin-left:-2.982989pt;}
._5_c00281{width:3.832576pt;}
._3_c00281{width:5.784768pt;}
._6_c00281{width:7.666560pt;}
._7_c00281{width:9.339616pt;}
._c_c00281{width:11.360448pt;}
._e_c00281{width:13.730112pt;}
._a_c00281{width:15.473216pt;}
._12_c00281{width:18.539136pt;}
._1_c00281{width:19.793664pt;}
._f_c00281{width:25.926208pt;}
._9_c00281{width:27.042048pt;}
._4_c00281{width:28.296576pt;}
._b_c00281{width:31.153408pt;}
._0_c00281{width:33.454080pt;}
._8_c00281{width:37.287360pt;}
._10_c00281{width:40.562720pt;}
._13_c00281{width:2187.468096pt;}
.fs5_c00281{font-size:20.064000pt;}
.fs4_c00281{font-size:25.168000pt;}
.fs3_c00281{font-size:29.568000pt;}
.fs2_c00281{font-size:45.619376pt;}
.fs1_c00281{font-size:69.696000pt;}
.fs0_c00281{font-size:74.624176pt;}
.y0_c00281{bottom:0.000000pt;}
.y1_c00281{bottom:68.000000pt;}
.y17_c00281{bottom:148.184120pt;}
.y16_c00281{bottom:228.968120pt;}
.y15_c00281{bottom:228.976040pt;}
.y14_c00281{bottom:259.380920pt;}
.y13_c00281{bottom:288.522120pt;}
.y12_c00281{bottom:317.988920pt;}
.y11_c00281{bottom:375.329720pt;}
.y10_c00281{bottom:404.154120pt;}
.yf_c00281{bottom:432.670520pt;}
.ye_c00281{bottom:461.178120pt;}
.yd_c00281{bottom:490.323720pt;}
.yc_c00281{bottom:519.790520pt;}
.yb_c00281{bottom:549.248520pt;}
.ya_c00281{bottom:578.710920pt;}
.y9_c00281{bottom:607.860920pt;}
.y8_c00281{bottom:638.273720pt;}
.y7_c00281{bottom:667.419320pt;}
.y6_c00281{bottom:696.564920pt;}
.y5_c00281{bottom:725.710520pt;}
.y4_c00281{bottom:783.363720pt;}
.y3_c00281{bottom:816.310920pt;}
.y18_c00281{bottom:828.353720pt;}
.y2_c00281{bottom:960.138120pt;}
.h6_c00281{height:20.926125pt;}
.h4_c00281{height:30.382504pt;}
.h5_c00281{height:30.838500pt;}
.h3_c00281{height:68.402813pt;}
.h2_c00281{height:73.239548pt;}
.h1_c00281{height:986.666667pt;}
.h0_c00281{height:1122.666667pt;}
.w1_c00281{width:678.666667pt;}
.w0_c00281{width:793.333333pt;}
.x0_c00281{left:0.000000pt;}
.x1_c00281{left:57.333333pt;}
.x3e_c00281{left:59.084120pt;}
.x16_c00281{left:60.527320pt;}
.x4_c00281{left:61.468920pt;}
.x5f_c00281{left:79.838920pt;}
.x17_c00281{left:89.162520pt;}
.x61_c00281{left:94.807720pt;}
.x5_c00281{left:100.096520pt;}
.x22_c00281{left:109.380520pt;}
.x32_c00281{left:118.466520pt;}
.x2a_c00281{left:119.430120pt;}
.x5c_c00281{left:127.825320pt;}
.x6_c00281{left:129.101320pt;}
.x23_c00281{left:137.650520pt;}
.x60_c00281{left:140.726120pt;}
.x2b_c00281{left:146.872920pt;}
.x57_c00281{left:156.970920pt;}
.x24_c00281{left:158.251320pt;}
.x53_c00281{left:159.637320pt;}
.x18_c00281{left:166.514520pt;}
.x4a_c00281{left:167.931320pt;}
.x4b_c00281{left:176.335320pt;}
.x2c_c00281{left:177.738920pt;}
.x54_c00281{left:187.568520pt;}
.x7_c00281{left:196.751320pt;}
.x2d_c00281{left:206.506120pt;}
.x48_c00281{left:216.177320pt;}
.x58_c00281{left:217.268520pt;}
.x8_c00281{left:225.360120pt;}
.x33_c00281{left:227.106920pt;}
.x45_c00281{left:230.565320pt;}
.x2e_c00281{left:236.030120pt;}
.x55_c00281{left:236.945320pt;}
.x9_c00281{left:237.864920pt;}
.x46_c00281{left:246.466920pt;}
.x59_c00281{left:256.630920pt;}
.xa_c00281{left:264.687320pt;}
.x25_c00281{left:265.809320pt;}
.x19_c00281{left:275.203320pt;}
.x47_c00281{left:276.532120pt;}
.xb_c00281{left:285.464120pt;}
.xc_c00281{left:295.100120pt;}
.x49_c00281{left:296.169320pt;}
.x56_c00281{left:305.655720pt;}
.x34_c00281{left:314.121320pt;}
.x26_c00281{left:315.054120pt;}
.xd_c00281{left:324.426120pt;}
.x4c_c00281{left:334.128120pt;}
.x1a_c00281{left:343.258120pt;}
.x27_c00281{left:344.622120pt;}
.xe_c00281{left:353.342920pt;}
.x5a_c00281{left:354.491320pt;}
.xf_c00281{left:363.682920pt;}
.x4f_c00281{left:372.434520pt;}
.x2f_c00281{left:373.552120pt;}
.x3f_c00281{left:375.646520pt;}
.x35_c00281{left:383.663320pt;}
.x40_c00281{left:394.095720pt;}
.x50_c00281{left:403.516120pt;}
.x36_c00281{left:413.446920pt;}
.x1b_c00281{left:422.656120pt;}
.x37_c00281{left:432.265720pt;}
.x10_c00281{left:441.919320pt;}
.x1c_c00281{left:452.039320pt;}
.x41_c00281{left:461.274920pt;}
.x4d_c00281{left:462.216520pt;}
.x28_c00281{left:470.866920pt;}
.x5d_c00281{left:480.885720pt;}
.x38_c00281{left:482.152920pt;}
.x42_c00281{left:489.650520pt;}
.x11_c00281{left:490.737320pt;}
.x4e_c00281{left:501.455720pt;}
.x12_c00281{left:509.292120pt;}
.x30_c00281{left:510.761720pt;}
.x39_c00281{left:520.534120pt;}
.x1d_c00281{left:529.994120pt;}
.x13_c00281{left:539.361720pt;}
.x5e_c00281{left:540.439720pt;}
.x43_c00281{left:549.640120pt;}
.x51_c00281{left:551.061320pt;}
.x29_c00281{left:559.482920pt;}
.x1e_c00281{left:568.243320pt;}
.x3a_c00281{left:569.620520pt;}
.x2_c00281{left:578.116920pt;}
.x5b_c00281{left:579.106920pt;}
.x3b_c00281{left:587.550520pt;}
.x1f_c00281{left:588.461320pt;}
.x14_c00281{left:597.705720pt;}
.x3c_c00281{left:598.950920pt;}
.x44_c00281{left:600.257720pt;}
.x15_c00281{left:606.549720pt;}
.x3_c00281{left:608.551720pt;}
.x52_c00281{left:617.294520pt;}
.x31_c00281{left:618.416520pt;}
.x20_c00281{left:628.545320pt;}
.x3d_c00281{left:637.283720pt;}
.x21_c00281{left:639.382520pt;}
.x62_c00281{left:675.810120pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6b028ad8f861c4b02970ccd7.woff2')format("woff");}.ff1_c00282{font-family:ff1_c00282;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00282;src:url('chunks/assets/font_0693004639f171fc3c8879f6.woff2')format("woff");}.ff2_c00282{font-family:ff2_c00282;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00282;src:url('chunks/assets/font_ecd400409cb54d5585192a83.woff2')format("woff");}.ff3_c00282{font-family:ff3_c00282;line-height:0.666000;font-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_c00282{transform:matrix(0.026316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026316,0.000000,0.000000,0.250000,0,0);}
.m8e_c00282{transform:matrix(0.050439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050439,0.000000,0.000000,0.250000,0,0);}
.m84_c00282{transform:matrix(0.066667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066667,0.000000,0.000000,0.250000,0,0);}
.m88_c00282{transform:matrix(0.078869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078869,0.000000,0.000000,0.250000,0,0);}
.m86_c00282{transform:matrix(0.099074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099074,0.000000,0.000000,0.250000,0,0);}
.m83_c00282{transform:matrix(0.102778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102778,0.000000,0.000000,0.250000,0,0);}
.m91_c00282{transform:matrix(0.105264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105264,0.000000,0.000000,0.250000,0,0);}
.m94_c00282{transform:matrix(0.114035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114035,0.000000,0.000000,0.250000,0,0);}
.m90_c00282{transform:matrix(0.114523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114523,0.000000,0.000000,0.250000,0,0);}
.m8d_c00282{transform:matrix(0.115789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115789,0.000000,0.000000,0.250000,0,0);}
.m93_c00282{transform:matrix(0.116228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116228,0.000000,0.000000,0.250000,0,0);}
.m8a_c00282{transform:matrix(0.120834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120834,0.000000,0.000000,0.250000,0,0);}
.m89_c00282{transform:matrix(0.125833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125833,0.000000,0.000000,0.250000,0,0);}
.m87_c00282{transform:matrix(0.127976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127976,0.000000,0.000000,0.250000,0,0);}
.m85_c00282{transform:matrix(0.129166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129166,0.000000,0.000000,0.250000,0,0);}
.m8f_c00282{transform:matrix(0.129386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129386,0.000000,0.000000,0.250000,0,0);}
.m96_c00282{transform:matrix(0.130117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130117,0.000000,0.000000,0.250000,0,0);}
.m95_c00282{transform:matrix(0.131579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131579,0.000000,0.000000,0.250000,0,0);}
.m82_c00282{transform:matrix(0.143136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143136,0.000000,0.000000,0.250000,0,0);}
.m97_c00282{transform:matrix(0.155406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155406,0.000000,0.000000,0.250000,0,0);}
.m5b_c00282{transform:matrix(0.199410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199410,0.000000,0.000000,0.250000,0,0);}
.m2b_c00282{transform:matrix(0.209460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209460,0.000000,0.000000,0.250000,0,0);}
.m34_c00282{transform:matrix(0.221494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221494,0.000000,0.000000,0.250000,0,0);}
.m81_c00282{transform:matrix(0.221857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221857,0.000000,0.000000,0.250000,0,0);}
.m8c_c00282{transform:matrix(0.231314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231314,0.000000,0.000000,0.250000,0,0);}
.m8b_c00282{transform:matrix(0.233807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233807,0.000000,0.000000,0.250000,0,0);}
.m20_c00282{transform:matrix(0.236189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236189,0.000000,0.000000,0.250000,0,0);}
.m80_c00282{transform:matrix(0.237221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237221,0.000000,0.000000,0.250000,0,0);}
.m46_c00282{transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);}
.m7e_c00282{transform:matrix(0.249980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249980,0.000000,0.000000,0.250000,0,0);}
.m0_c00282{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00282{transform:matrix(0.250052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250052,0.000000,0.000000,0.250000,0,0);}
.m2c_c00282{transform:matrix(0.256514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256514,0.000000,0.000000,0.250000,0,0);}
.m1e_c00282{transform:matrix(0.256719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256719,0.000000,0.000000,0.250000,0,0);}
.m28_c00282{transform:matrix(0.257042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257042,0.000000,0.000000,0.250000,0,0);}
.m17_c00282{transform:matrix(0.257456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257456,0.000000,0.000000,0.250000,0,0);}
.mb_c00282{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m50_c00282{transform:matrix(0.259055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259055,0.000000,0.000000,0.250000,0,0);}
.m33_c00282{transform:matrix(0.259662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259662,0.000000,0.000000,0.250000,0,0);}
.m1_c00282{transform:matrix(0.260129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260129,0.000000,0.000000,0.250000,0,0);}
.m7b_c00282{transform:matrix(0.260591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260591,0.000000,0.000000,0.250000,0,0);}
.m53_c00282{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m42_c00282{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m24_c00282{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m22_c00282{transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);}
.m8_c00282{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m44_c00282{transform:matrix(0.266684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266684,0.000000,0.000000,0.250000,0,0);}
.m4_c00282{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m2_c00282{transform:matrix(0.268107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268107,0.000000,0.000000,0.250000,0,0);}
.m6a_c00282{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.m16_c00282{transform:matrix(0.268799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268799,0.000000,0.000000,0.250000,0,0);}
.m19_c00282{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m2d_c00282{transform:matrix(0.271467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271467,0.000000,0.000000,0.250000,0,0);}
.m6c_c00282{transform:matrix(0.272544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272544,0.000000,0.000000,0.250000,0,0);}
.m6f_c00282{transform:matrix(0.272747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272747,0.000000,0.000000,0.250000,0,0);}
.m4e_c00282{transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);}
.m49_c00282{transform:matrix(0.273113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273113,0.000000,0.000000,0.250000,0,0);}
.mc_c00282{transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);}
.m1a_c00282{transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);}
.m69_c00282{transform:matrix(0.275491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275491,0.000000,0.000000,0.250000,0,0);}
.m7a_c00282{transform:matrix(0.275620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275620,0.000000,0.000000,0.250000,0,0);}
.m62_c00282{transform:matrix(0.275896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275896,0.000000,0.000000,0.250000,0,0);}
.m66_c00282{transform:matrix(0.277601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277601,0.000000,0.000000,0.250000,0,0);}
.m48_c00282{transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);}
.m65_c00282{transform:matrix(0.279677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279677,0.000000,0.000000,0.250000,0,0);}
.m3c_c00282{transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);}
.m3_c00282{transform:matrix(0.283147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283147,0.000000,0.000000,0.250000,0,0);}
.m1f_c00282{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m12_c00282{transform:matrix(0.285030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285030,0.000000,0.000000,0.250000,0,0);}
.m5_c00282{transform:matrix(0.285725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285725,0.000000,0.000000,0.250000,0,0);}
.m14_c00282{transform:matrix(0.286350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286350,0.000000,0.000000,0.250000,0,0);}
.m30_c00282{transform:matrix(0.286383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286383,0.000000,0.000000,0.250000,0,0);}
.m38_c00282{transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);}
.m60_c00282{transform:matrix(0.287807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287807,0.000000,0.000000,0.250000,0,0);}
.m3a_c00282{transform:matrix(0.287877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287877,0.000000,0.000000,0.250000,0,0);}
.m67_c00282{transform:matrix(0.288834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288834,0.000000,0.000000,0.250000,0,0);}
.m36_c00282{transform:matrix(0.289520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289520,0.000000,0.000000,0.250000,0,0);}
.m71_c00282{transform:matrix(0.291008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291008,0.000000,0.000000,0.250000,0,0);}
.m41_c00282{transform:matrix(0.291179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291179,0.000000,0.000000,0.250000,0,0);}
.m5a_c00282{transform:matrix(0.291606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291606,0.000000,0.000000,0.250000,0,0);}
.me_c00282{transform:matrix(0.291905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291905,0.000000,0.000000,0.250000,0,0);}
.m4d_c00282{transform:matrix(0.292392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292392,0.000000,0.000000,0.250000,0,0);}
.m3d_c00282{transform:matrix(0.292948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292948,0.000000,0.000000,0.250000,0,0);}
.m5e_c00282{transform:matrix(0.293564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293564,0.000000,0.000000,0.250000,0,0);}
.m5d_c00282{transform:matrix(0.293651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293651,0.000000,0.000000,0.250000,0,0);}
.m74_c00282{transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);}
.m52_c00282{transform:matrix(0.293765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293765,0.000000,0.000000,0.250000,0,0);}
.m47_c00282{transform:matrix(0.294323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294323,0.000000,0.000000,0.250000,0,0);}
.m4f_c00282{transform:matrix(0.295202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295202,0.000000,0.000000,0.250000,0,0);}
.m37_c00282{transform:matrix(0.296196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296196,0.000000,0.000000,0.250000,0,0);}
.m79_c00282{transform:matrix(0.297237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297237,0.000000,0.000000,0.250000,0,0);}
.m77_c00282{transform:matrix(0.297631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297631,0.000000,0.000000,0.250000,0,0);}
.m29_c00282{transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);}
.m25_c00282{transform:matrix(0.299451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299451,0.000000,0.000000,0.250000,0,0);}
.m59_c00282{transform:matrix(0.300247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300247,0.000000,0.000000,0.250000,0,0);}
.m4c_c00282{transform:matrix(0.300944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300944,0.000000,0.000000,0.250000,0,0);}
.m39_c00282{transform:matrix(0.301814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301814,0.000000,0.000000,0.250000,0,0);}
.m78_c00282{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m1c_c00282{transform:matrix(0.305946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305946,0.000000,0.000000,0.250000,0,0);}
.mf_c00282{transform:matrix(0.307600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307600,0.000000,0.000000,0.250000,0,0);}
.m31_c00282{transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);}
.m2a_c00282{transform:matrix(0.307850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307850,0.000000,0.000000,0.250000,0,0);}
.m27_c00282{transform:matrix(0.308448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308448,0.000000,0.000000,0.250000,0,0);}
.m7d_c00282{transform:matrix(0.308860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308860,0.000000,0.000000,0.250000,0,0);}
.m64_c00282{transform:matrix(0.309019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309019,0.000000,0.000000,0.250000,0,0);}
.ma_c00282{transform:matrix(0.309091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309091,0.000000,0.000000,0.250000,0,0);}
.m54_c00282{transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);}
.m3e_c00282{transform:matrix(0.309198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309198,0.000000,0.000000,0.250000,0,0);}
.m58_c00282{transform:matrix(0.309566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309566,0.000000,0.000000,0.250000,0,0);}
.m51_c00282{transform:matrix(0.310694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310694,0.000000,0.000000,0.250000,0,0);}
.m56_c00282{transform:matrix(0.311569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311569,0.000000,0.000000,0.250000,0,0);}
.m6_c00282{transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);}
.m76_c00282{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.m73_c00282{transform:matrix(0.313089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313089,0.000000,0.000000,0.250000,0,0);}
.m4a_c00282{transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);}
.m15_c00282{transform:matrix(0.313839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313839,0.000000,0.000000,0.250000,0,0);}
.m7_c00282{transform:matrix(0.313844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313844,0.000000,0.000000,0.250000,0,0);}
.m7f_c00282{transform:matrix(0.314444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314444,0.000000,0.000000,0.250000,0,0);}
.m68_c00282{transform:matrix(0.314869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314869,0.000000,0.000000,0.250000,0,0);}
.m2e_c00282{transform:matrix(0.315917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315917,0.000000,0.000000,0.250000,0,0);}
.md_c00282{transform:matrix(0.316333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316333,0.000000,0.000000,0.250000,0,0);}
.m57_c00282{transform:matrix(0.317301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317301,0.000000,0.000000,0.250000,0,0);}
.m6b_c00282{transform:matrix(0.318235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318235,0.000000,0.000000,0.250000,0,0);}
.m72_c00282{transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);}
.m7c_c00282{transform:matrix(0.318980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318980,0.000000,0.000000,0.250000,0,0);}
.m61_c00282{transform:matrix(0.319500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00282{transform:matrix(0.320919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320919,0.000000,0.000000,0.250000,0,0);}
.m3b_c00282{transform:matrix(0.321236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321236,0.000000,0.000000,0.250000,0,0);}
.m63_c00282{transform:matrix(0.322569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322569,0.000000,0.000000,0.250000,0,0);}
.m43_c00282{transform:matrix(0.323996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323996,0.000000,0.000000,0.250000,0,0);}
.m40_c00282{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m5f_c00282{transform:matrix(0.327297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327297,0.000000,0.000000,0.250000,0,0);}
.m3f_c00282{transform:matrix(0.330299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330299,0.000000,0.000000,0.250000,0,0);}
.m1b_c00282{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m75_c00282{transform:matrix(0.334121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334121,0.000000,0.000000,0.250000,0,0);}
.m23_c00282{transform:matrix(0.335667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335667,0.000000,0.000000,0.250000,0,0);}
.m32_c00282{transform:matrix(0.335691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335691,0.000000,0.000000,0.250000,0,0);}
.m9_c00282{transform:matrix(0.337511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337511,0.000000,0.000000,0.250000,0,0);}
.m21_c00282{transform:matrix(0.337938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337938,0.000000,0.000000,0.250000,0,0);}
.m55_c00282{transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);}
.m45_c00282{transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);}
.m11_c00282{transform:matrix(0.347013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347013,0.000000,0.000000,0.250000,0,0);}
.m10_c00282{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m70_c00282{transform:matrix(0.350956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350956,0.000000,0.000000,0.250000,0,0);}
.m2f_c00282{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m18_c00282{transform:matrix(0.358016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358016,0.000000,0.000000,0.250000,0,0);}
.m1d_c00282{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);}
.m13_c00282{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m26_c00282{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);}
.m35_c00282{transform:matrix(0.385852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385852,0.000000,0.000000,0.250000,0,0);}
.m6d_c00282{transform:matrix(0.396487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396487,0.000000,0.000000,0.250000,0,0);}
.m5c_c00282{transform:matrix(0.414699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414699,0.000000,0.000000,0.250000,0,0);}
.v0_c00282{vertical-align:0.000000px;}
.ls11_c00282{letter-spacing:-3.257100px;}
.ls9_c00282{letter-spacing:-2.744280px;}
.lse_c00282{letter-spacing:-2.642350px;}
.ls10_c00282{letter-spacing:-2.474017px;}
.ls6_c00282{letter-spacing:0.000000px;}
.lsd_c00282{letter-spacing:0.227383px;}
.lsf_c00282{letter-spacing:0.402020px;}
.ls4_c00282{letter-spacing:1.490148px;}
.ls3_c00282{letter-spacing:2.132698px;}
.lsc_c00282{letter-spacing:2.509056px;}
.ls1_c00282{letter-spacing:2.579623px;}
.ls7_c00282{letter-spacing:3.682810px;}
.lsb_c00282{letter-spacing:3.821400px;}
.ls8_c00282{letter-spacing:3.920400px;}
.ls2_c00282{letter-spacing:6.586272px;}
.ls0_c00282{letter-spacing:19.523592px;}
.lsa_c00282{letter-spacing:52.747398px;}
.ls13_c00282{letter-spacing:81.259398px;}
.ls12_c00282{letter-spacing:85.536198px;}
.ls5_c00282{letter-spacing:100.250566px;}
.sc__c00282{text-shadow:none;}
.sc0_c00282{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00282{-webkit-text-stroke:0px transparent;}
.sc0_c00282{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00282{word-spacing:-19.602000px;}
.ws3_c00282{word-spacing:-17.671550px;}
.ws2_c00282{word-spacing:-1.638727px;}
.ws1_c00282{word-spacing:-1.489752px;}
.ws4_c00282{word-spacing:0.000000px;}
._e_c00282{margin-left:-15.367968px;}
._5_c00282{margin-left:-4.626072px;}
._d_c00282{width:3.534377px;}
._b_c00282{width:5.096520px;}
._0_c00282{width:6.743088px;}
._4_c00282{width:8.546472px;}
._2_c00282{width:10.036224px;}
._c_c00282{width:17.406576px;}
._9_c00282{width:20.855736px;}
._7_c00282{width:22.267872px;}
._6_c00282{width:28.250402px;}
._8_c00282{width:29.669587px;}
._3_c00282{width:36.036000px;}
._a_c00282{width:41.758200px;}
._1_c00282{width:44.927784px;}
.fc0_c00282{color:transparent;}
.fsd_c00282{font-size:28.314000px;}
.fs0_c00282{font-size:44.352000px;}
.fs4_c00282{font-size:52.747398px;}
.fse_c00282{font-size:53.856198px;}
.fsb_c00282{font-size:63.558000px;}
.fs9_c00282{font-size:70.686198px;}
.fs6_c00282{font-size:72.864000px;}
.fs3_c00282{font-size:73.260000px;}
.fs1_c00282{font-size:73.656198px;}
.fs5_c00282{font-size:76.428000px;}
.fs2_c00282{font-size:78.408000px;}
.fsc_c00282{font-size:81.259398px;}
.fs8_c00282{font-size:85.536198px;}
.fsa_c00282{font-size:93.060000px;}
.fs7_c00282{font-size:107.712198px;}
.y0_c00282{bottom:0.000000px;}
.y1_c00282{bottom:76.500000px;}
.y1a_c00282{bottom:123.226335px;}
.y19_c00282{bottom:137.125935px;}
.y18_c00282{bottom:199.139535px;}
.y17_c00282{bottom:263.999385px;}
.y16_c00282{bottom:302.139135px;}
.y15_c00282{bottom:328.869135px;}
.y14_c00282{bottom:395.159535px;}
.y13_c00282{bottom:428.304735px;}
.y12_c00282{bottom:462.870585px;}
.y11_c00282{bottom:514.904985px;}
.y10_c00282{bottom:526.666185px;}
.yf_c00282{bottom:559.454985px;}
.y1b_c00282{bottom:565.513785px;}
.ye_c00282{bottom:592.243785px;}
.yd_c00282{bottom:624.676185px;}
.yc_c00282{bottom:657.113535px;}
.yb_c00282{bottom:689.545935px;}
.ya_c00282{bottom:723.403935px;}
.y2_c00282{bottom:762.251535px;}
.y9_c00282{bottom:787.555935px;}
.y8_c00282{bottom:819.270585px;}
.y7_c00282{bottom:852.415785px;}
.y5_c00282{bottom:885.913425px;}
.y6_c00282{bottom:885.917385px;}
.y4_c00282{bottom:918.354735px;}
.y3_c00282{bottom:1080.155385px;}
.h6_c00282{height:35.129767px;}
.h2_c00282{height:46.257750px;}
.he_c00282{height:54.118759px;}
.hf_c00282{height:56.170332px;}
.hd_c00282{height:56.967108px;}
.hc_c00282{height:66.289008px;}
.ha_c00282{height:69.374638px;}
.h5_c00282{height:71.900684px;}
.h3_c00282{height:72.289530px;}
.h7_c00282{height:75.009902px;}
.h4_c00282{height:76.953164px;}
.h9_c00282{height:83.949101px;}
.hb_c00282{height:91.333301px;}
.h8_c00282{height:105.713632px;}
.h1_c00282{height:1110.000000px;}
.h0_c00282{height:1263.000000px;}
.w1_c00282{width:763.500000px;}
.w0_c00282{width:892.500000px;}
.x0_c00282{left:0.000000px;}
.x2_c00282{left:8.960535px;}
.x1_c00282{left:64.500000px;}
.x6d_c00282{left:65.751885px;}
.x47_c00282{left:66.895335px;}
.x32_c00282{left:68.949585px;}
.x11_c00282{left:70.407261px;}
.x75_c00282{left:88.917885px;}
.x12_c00282{left:104.094585px;}
.x33_c00282{left:113.722335px;}
.x38_c00282{left:121.285935px;}
.x5_c00282{left:124.859835px;}
.x48_c00282{left:133.309485px;}
.x13_c00282{left:136.769535px;}
.x71_c00282{left:143.798535px;}
.x56_c00282{left:154.213335px;}
.x39_c00282{left:155.307285px;}
.x1f_c00282{left:157.425885px;}
.x64_c00282{left:165.123135px;}
.x14_c00282{left:169.597935px;}
.x5e_c00282{left:177.854535px;}
.x6_c00282{left:180.344385px;}
.x7c_c00282{left:181.636335px;}
.x49_c00282{left:188.165385px;}
.x34_c00282{left:189.496935px;}
.x57_c00282{left:199.377135px;}
.x2a_c00282{left:201.624435px;}
.x6a_c00282{left:210.168135px;}
.x7_c00282{left:222.612435px;}
.x20_c00282{left:226.636785px;}
.x5f_c00282{left:232.032285px;}
.x58_c00282{left:233.081685px;}
.x2b_c00282{left:234.180585px;}
.x70_c00282{left:240.110685px;}
.x3a_c00282{left:242.605485px;}
.x35_c00282{left:245.431935px;}
.x6e_c00282{left:254.292435px;}
.x2c_c00282{left:257.019885px;}
.x59_c00282{left:264.271635px;}
.x6b_c00282{left:277.047585px;}
.x8_c00282{left:278.720685px;}
.x15_c00282{left:281.111535px;}
.x4a_c00282{left:287.868285px;}
.x60_c00282{left:290.407635px;}
.x7d_c00282{left:293.545935px;}
.x65_c00282{left:299.674035px;}
.x3b_c00282{left:309.385935px;}
.x9_c00282{left:312.192585px;}
.x66_c00282{left:330.918435px;}
.x4b_c00282{left:332.487585px;}
.x16_c00282{left:334.551735px;}
.x3c_c00282{left:342.833085px;}
.x21_c00282{left:348.297885px;}
.x4c_c00282{left:353.539935px;}
.x36_c00282{left:354.841785px;}
.x61_c00282{left:364.613085px;}
.x22_c00282{left:367.112835px;}
.x3d_c00282{left:375.646635px;}
.x4d_c00282{left:386.338635px;}
.x76_c00282{left:387.373185px;}
.x17_c00282{left:388.798785px;}
.x62_c00282{left:397.406835px;}
.x6f_c00282{left:398.466135px;}
.x2d_c00282{left:400.253085px;}
.x3e_c00282{left:408.450285px;}
.xa_c00282{left:410.910435px;}
.x7b_c00282{left:417.612735px;}
.x80_c00282{left:419.894685px;}
.x23_c00282{left:421.993485px;}
.x3f_c00282{left:430.403535px;}
.x24_c00282{left:433.200285px;}
.x37_c00282{left:434.714985px;}
.x7a_c00282{left:437.412735px;}
.x4e_c00282{left:441.595485px;}
.x63_c00282{left:442.961685px;}
.x4f_c00282{left:451.802385px;}
.x72_c00282{left:454.000185px;}
.xb_c00282{left:455.104035px;}
.x40_c00282{left:464.028885px;}
.x81_c00282{left:470.320335px;}
.x67_c00282{left:475.106985px;}
.x25_c00282{left:477.923535px;}
.x5a_c00282{left:485.437635px;}
.x18_c00282{left:488.293785px;}
.x5b_c00282{left:494.902035px;}
.x68_c00282{left:496.842435px;}
.x2e_c00282{left:498.109635px;}
.x50_c00282{left:507.049335px;}
.x73_c00282{left:508.559085px;}
.x26_c00282{left:509.989635px;}
.x19_c00282{left:511.073685px;}
.x77_c00282{left:518.830335px;}
.x51_c00282{left:529.789635px;}
.x41_c00282{left:541.031085px;}
.x1a_c00282{left:543.134835px;}
.x7e_c00282{left:551.218185px;}
.x27_c00282{left:552.995235px;}
.x52_c00282{left:563.766435px;}
.x2f_c00282{left:564.914835px;}
.x1b_c00282{left:576.680985px;}
.x69_c00282{left:584.868285px;}
.xc_c00282{left:588.056085px;}
.x53_c00282{left:595.921635px;}
.x1c_c00282{left:598.569885px;}
.x7f_c00282{left:606.465135px;}
.x30_c00282{left:608.266935px;}
.x42_c00282{left:617.424435px;}
.x28_c00282{left:619.671735px;}
.xd_c00282{left:620.854785px;}
.x5c_c00282{left:627.992685px;}
.x6c_c00282{left:629.398485px;}
.x29_c00282{left:631.363635px;}
.x43_c00282{left:639.412335px;}
.xe_c00282{left:641.669535px;}
.x44_c00282{left:650.599335px;}
.x3_c00282{left:652.925835px;}
.x54_c00282{left:661.499235px;}
.x1d_c00282{left:663.246585px;}
.x4_c00282{left:664.790985px;}
.x45_c00282{left:672.220935px;}
.x78_c00282{left:673.537635px;}
.xf_c00282{left:674.651385px;}
.x74_c00282{left:683.051535px;}
.x31_c00282{left:685.684935px;}
.x55_c00282{left:694.882035px;}
.x1e_c00282{left:696.733335px;}
.x46_c00282{left:704.786985px;}
.x10_c00282{left:718.488585px;}
.x5d_c00282{left:726.562035px;}
.x79_c00282{left:738.446985px;}
.x82_c00282{left:751.341735px;}
@media print{
.v0_c00282{vertical-align:0.000000pt;}
.ls11_c00282{letter-spacing:-2.895200pt;}
.ls9_c00282{letter-spacing:-2.439360pt;}
.lse_c00282{letter-spacing:-2.348755pt;}
.ls10_c00282{letter-spacing:-2.199126pt;}
.ls6_c00282{letter-spacing:0.000000pt;}
.lsd_c00282{letter-spacing:0.202118pt;}
.lsf_c00282{letter-spacing:0.357351pt;}
.ls4_c00282{letter-spacing:1.324576pt;}
.ls3_c00282{letter-spacing:1.895731pt;}
.lsc_c00282{letter-spacing:2.230272pt;}
.ls1_c00282{letter-spacing:2.292998pt;}
.ls7_c00282{letter-spacing:3.273609pt;}
.lsb_c00282{letter-spacing:3.396800pt;}
.ls8_c00282{letter-spacing:3.484800pt;}
.ls2_c00282{letter-spacing:5.854464pt;}
.ls0_c00282{letter-spacing:17.354304pt;}
.lsa_c00282{letter-spacing:46.886576pt;}
.ls13_c00282{letter-spacing:72.230576pt;}
.ls12_c00282{letter-spacing:76.032176pt;}
.ls5_c00282{letter-spacing:89.111614pt;}
.ws0_c00282{word-spacing:-17.424000pt;}
.ws3_c00282{word-spacing:-15.708044pt;}
.ws2_c00282{word-spacing:-1.456646pt;}
.ws1_c00282{word-spacing:-1.324224pt;}
.ws4_c00282{word-spacing:0.000000pt;}
._e_c00282{margin-left:-13.660416pt;}
._5_c00282{margin-left:-4.112064pt;}
._d_c00282{width:3.141668pt;}
._b_c00282{width:4.530240pt;}
._0_c00282{width:5.993856pt;}
._4_c00282{width:7.596864pt;}
._2_c00282{width:8.921088pt;}
._c_c00282{width:15.472512pt;}
._9_c00282{width:18.538432pt;}
._7_c00282{width:19.793664pt;}
._6_c00282{width:25.111469pt;}
._8_c00282{width:26.372966pt;}
._3_c00282{width:32.032000pt;}
._a_c00282{width:37.118400pt;}
._1_c00282{width:39.935808pt;}
.fsd_c00282{font-size:25.168000pt;}
.fs0_c00282{font-size:39.424000pt;}
.fs4_c00282{font-size:46.886576pt;}
.fse_c00282{font-size:47.872176pt;}
.fsb_c00282{font-size:56.496000pt;}
.fs9_c00282{font-size:62.832176pt;}
.fs6_c00282{font-size:64.768000pt;}
.fs3_c00282{font-size:65.120000pt;}
.fs1_c00282{font-size:65.472176pt;}
.fs5_c00282{font-size:67.936000pt;}
.fs2_c00282{font-size:69.696000pt;}
.fsc_c00282{font-size:72.230576pt;}
.fs8_c00282{font-size:76.032176pt;}
.fsa_c00282{font-size:82.720000pt;}
.fs7_c00282{font-size:95.744176pt;}
.y0_c00282{bottom:0.000000pt;}
.y1_c00282{bottom:68.000000pt;}
.y1a_c00282{bottom:109.534520pt;}
.y19_c00282{bottom:121.889720pt;}
.y18_c00282{bottom:177.012920pt;}
.y17_c00282{bottom:234.666120pt;}
.y16_c00282{bottom:268.568120pt;}
.y15_c00282{bottom:292.328120pt;}
.y14_c00282{bottom:351.252920pt;}
.y13_c00282{bottom:380.715320pt;}
.y12_c00282{bottom:411.440520pt;}
.y11_c00282{bottom:457.693320pt;}
.y10_c00282{bottom:468.147720pt;}
.yf_c00282{bottom:497.293320pt;}
.y1b_c00282{bottom:502.678920pt;}
.ye_c00282{bottom:526.438920pt;}
.yd_c00282{bottom:555.267720pt;}
.yc_c00282{bottom:584.100920pt;}
.yb_c00282{bottom:612.929720pt;}
.ya_c00282{bottom:643.025720pt;}
.y2_c00282{bottom:677.556920pt;}
.y9_c00282{bottom:700.049720pt;}
.y8_c00282{bottom:728.240520pt;}
.y7_c00282{bottom:757.702920pt;}
.y5_c00282{bottom:787.478600pt;}
.y6_c00282{bottom:787.482120pt;}
.y4_c00282{bottom:816.315320pt;}
.y3_c00282{bottom:960.138120pt;}
.h6_c00282{height:31.226460pt;}
.h2_c00282{height:41.118000pt;}
.he_c00282{height:48.105564pt;}
.hf_c00282{height:49.929184pt;}
.hd_c00282{height:50.637429pt;}
.hc_c00282{height:58.923563pt;}
.ha_c00282{height:61.666345pt;}
.h5_c00282{height:63.911719pt;}
.h3_c00282{height:64.257360pt;}
.h7_c00282{height:66.675469pt;}
.h4_c00282{height:68.402813pt;}
.h9_c00282{height:74.621423pt;}
.hb_c00282{height:81.185156pt;}
.h8_c00282{height:93.967673pt;}
.h1_c00282{height:986.666667pt;}
.h0_c00282{height:1122.666667pt;}
.w1_c00282{width:678.666667pt;}
.w0_c00282{width:793.333333pt;}
.x0_c00282{left:0.000000pt;}
.x2_c00282{left:7.964920pt;}
.x1_c00282{left:57.333333pt;}
.x6d_c00282{left:58.446120pt;}
.x47_c00282{left:59.462520pt;}
.x32_c00282{left:61.288520pt;}
.x11_c00282{left:62.584232pt;}
.x75_c00282{left:79.038120pt;}
.x12_c00282{left:92.528520pt;}
.x33_c00282{left:101.086520pt;}
.x38_c00282{left:107.809720pt;}
.x5_c00282{left:110.986520pt;}
.x48_c00282{left:118.497320pt;}
.x13_c00282{left:121.572920pt;}
.x71_c00282{left:127.820920pt;}
.x56_c00282{left:137.078520pt;}
.x39_c00282{left:138.050920pt;}
.x1f_c00282{left:139.934120pt;}
.x64_c00282{left:146.776120pt;}
.x14_c00282{left:150.753720pt;}
.x5e_c00282{left:158.092920pt;}
.x6_c00282{left:160.306120pt;}
.x7c_c00282{left:161.454520pt;}
.x49_c00282{left:167.258120pt;}
.x34_c00282{left:168.441720pt;}
.x57_c00282{left:177.224120pt;}
.x2a_c00282{left:179.221720pt;}
.x6a_c00282{left:186.816120pt;}
.x7_c00282{left:197.877720pt;}
.x20_c00282{left:201.454920pt;}
.x5f_c00282{left:206.250920pt;}
.x58_c00282{left:207.183720pt;}
.x2b_c00282{left:208.160520pt;}
.x70_c00282{left:213.431720pt;}
.x3a_c00282{left:215.649320pt;}
.x35_c00282{left:218.161720pt;}
.x6e_c00282{left:226.037720pt;}
.x2c_c00282{left:228.462120pt;}
.x59_c00282{left:234.908120pt;}
.x6b_c00282{left:246.264520pt;}
.x8_c00282{left:247.751720pt;}
.x15_c00282{left:249.876920pt;}
.x4a_c00282{left:255.882920pt;}
.x60_c00282{left:258.140120pt;}
.x7d_c00282{left:260.929720pt;}
.x65_c00282{left:266.376920pt;}
.x3b_c00282{left:275.009720pt;}
.x9_c00282{left:277.504520pt;}
.x66_c00282{left:294.149720pt;}
.x4b_c00282{left:295.544520pt;}
.x16_c00282{left:297.379320pt;}
.x3c_c00282{left:304.740520pt;}
.x21_c00282{left:309.598120pt;}
.x4c_c00282{left:314.257720pt;}
.x36_c00282{left:315.414920pt;}
.x61_c00282{left:324.100520pt;}
.x22_c00282{left:326.322520pt;}
.x3d_c00282{left:333.908120pt;}
.x4d_c00282{left:343.412120pt;}
.x76_c00282{left:344.331720pt;}
.x17_c00282{left:345.598920pt;}
.x62_c00282{left:353.250520pt;}
.x6f_c00282{left:354.192120pt;}
.x2d_c00282{left:355.780520pt;}
.x3e_c00282{left:363.066920pt;}
.xa_c00282{left:365.253720pt;}
.x7b_c00282{left:371.211320pt;}
.x80_c00282{left:373.239720pt;}
.x23_c00282{left:375.105320pt;}
.x3f_c00282{left:382.580920pt;}
.x24_c00282{left:385.066920pt;}
.x37_c00282{left:386.413320pt;}
.x7a_c00282{left:388.811320pt;}
.x4e_c00282{left:392.529320pt;}
.x63_c00282{left:393.743720pt;}
.x4f_c00282{left:401.602120pt;}
.x72_c00282{left:403.555720pt;}
.xb_c00282{left:404.536920pt;}
.x40_c00282{left:412.470120pt;}
.x81_c00282{left:418.062520pt;}
.x67_c00282{left:422.317320pt;}
.x25_c00282{left:424.820920pt;}
.x5a_c00282{left:431.500120pt;}
.x18_c00282{left:434.038920pt;}
.x5b_c00282{left:439.912920pt;}
.x68_c00282{left:441.637720pt;}
.x2e_c00282{left:442.764120pt;}
.x50_c00282{left:450.710520pt;}
.x73_c00282{left:452.052520pt;}
.x26_c00282{left:453.324120pt;}
.x19_c00282{left:454.287720pt;}
.x77_c00282{left:461.182520pt;}
.x51_c00282{left:470.924120pt;}
.x41_c00282{left:480.916520pt;}
.x1a_c00282{left:482.786520pt;}
.x7e_c00282{left:489.971720pt;}
.x27_c00282{left:491.551320pt;}
.x52_c00282{left:501.125720pt;}
.x2f_c00282{left:502.146520pt;}
.x1b_c00282{left:512.605320pt;}
.x69_c00282{left:519.882920pt;}
.xc_c00282{left:522.716520pt;}
.x53_c00282{left:529.708120pt;}
.x1c_c00282{left:532.062120pt;}
.x7f_c00282{left:539.080120pt;}
.x30_c00282{left:540.681720pt;}
.x42_c00282{left:548.821720pt;}
.x28_c00282{left:550.819320pt;}
.xd_c00282{left:551.870920pt;}
.x5c_c00282{left:558.215720pt;}
.x6c_c00282{left:559.465320pt;}
.x29_c00282{left:561.212120pt;}
.x43_c00282{left:568.366520pt;}
.xe_c00282{left:570.372920pt;}
.x44_c00282{left:578.310520pt;}
.x3_c00282{left:580.378520pt;}
.x54_c00282{left:587.999320pt;}
.x1d_c00282{left:589.552520pt;}
.x4_c00282{left:590.925320pt;}
.x45_c00282{left:597.529720pt;}
.x78_c00282{left:598.700120pt;}
.xf_c00282{left:599.690120pt;}
.x74_c00282{left:607.156920pt;}
.x31_c00282{left:609.497720pt;}
.x55_c00282{left:617.672920pt;}
.x1e_c00282{left:619.318520pt;}
.x46_c00282{left:626.477320pt;}
.x10_c00282{left:638.656520pt;}
.x5d_c00282{left:645.832920pt;}
.x79_c00282{left:656.397320pt;}
.x82_c00282{left:667.859320pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_84d0a3b60766ec4ea6dcec54.woff2')format("woff");}.ff1_c00283{font-family:ff1_c00283;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00283;src:url('chunks/assets/font_273596c382b2f3f561b9bc01.woff2')format("woff");}.ff2_c00283{font-family:ff2_c00283;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00283;src:url('chunks/assets/font_a5ee5f26387579652f09bcfe.woff2')format("woff");}.ff3_c00283{font-family:ff3_c00283;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00283;src:url('chunks/assets/font_5d800a6b6f8f1a87b64f39bc.woff2')format("woff");}.ff4_c00283{font-family:ff4_c00283;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m9d_c00283{transform:matrix(0.154140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154140,0.000000,0.000000,0.250000,0,0);}
.m11_c00283{transform:matrix(0.155406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155406,0.000000,0.000000,0.250000,0,0);}
.m12_c00283{transform:matrix(0.189188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189188,0.000000,0.000000,0.250000,0,0);}
.m13_c00283{transform:matrix(0.200772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200772,0.000000,0.000000,0.250000,0,0);}
.m2f_c00283{transform:matrix(0.215640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215640,0.000000,0.000000,0.250000,0,0);}
.m91_c00283{transform:matrix(0.236189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236189,0.000000,0.000000,0.250000,0,0);}
.m0_c00283{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m72_c00283{transform:matrix(0.250919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250919,0.000000,0.000000,0.250000,0,0);}
.m2c_c00283{transform:matrix(0.252784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252784,0.000000,0.000000,0.250000,0,0);}
.m98_c00283{transform:matrix(0.253667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253667,0.000000,0.000000,0.250000,0,0);}
.m7e_c00283{transform:matrix(0.255030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255030,0.000000,0.000000,0.250000,0,0);}
.m23_c00283{transform:matrix(0.255439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255439,0.000000,0.000000,0.250000,0,0);}
.mbc_c00283{transform:matrix(0.255468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255468,0.000000,0.000000,0.250000,0,0);}
.ma8_c00283{transform:matrix(0.256938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256938,0.000000,0.000000,0.250000,0,0);}
.m49_c00283{transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);}
.m43_c00283{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.maa_c00283{transform:matrix(0.259004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259004,0.000000,0.000000,0.250000,0,0);}
.ma3_c00283{transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);}
.m40_c00283{transform:matrix(0.259580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259580,0.000000,0.000000,0.250000,0,0);}
.m7_c00283{transform:matrix(0.259988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259988,0.000000,0.000000,0.250000,0,0);}
.m5b_c00283{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m2_c00283{transform:matrix(0.261370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261370,0.000000,0.000000,0.250000,0,0);}
.m85_c00283{transform:matrix(0.262708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262708,0.000000,0.000000,0.250000,0,0);}
.m17_c00283{transform:matrix(0.262779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262779,0.000000,0.000000,0.250000,0,0);}
.me_c00283{transform:matrix(0.262831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262831,0.000000,0.000000,0.250000,0,0);}
.m15_c00283{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m4f_c00283{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m25_c00283{transform:matrix(0.264128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264128,0.000000,0.000000,0.250000,0,0);}
.m58_c00283{transform:matrix(0.265155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265155,0.000000,0.000000,0.250000,0,0);}
.m62_c00283{transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);}
.m4_c00283{transform:matrix(0.265756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265756,0.000000,0.000000,0.250000,0,0);}
.m8b_c00283{transform:matrix(0.266021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266021,0.000000,0.000000,0.250000,0,0);}
.ma_c00283{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.mb1_c00283{transform:matrix(0.266660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266660,0.000000,0.000000,0.250000,0,0);}
.m27_c00283{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m6_c00283{transform:matrix(0.267943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267943,0.000000,0.000000,0.250000,0,0);}
.m9e_c00283{transform:matrix(0.268152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268152,0.000000,0.000000,0.250000,0,0);}
.m60_c00283{transform:matrix(0.268375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268375,0.000000,0.000000,0.250000,0,0);}
.m29_c00283{transform:matrix(0.268919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268919,0.000000,0.000000,0.250000,0,0);}
.m28_c00283{transform:matrix(0.269647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269647,0.000000,0.000000,0.250000,0,0);}
.mb3_c00283{transform:matrix(0.269676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269676,0.000000,0.000000,0.250000,0,0);}
.m67_c00283{transform:matrix(0.269684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269684,0.000000,0.000000,0.250000,0,0);}
.m44_c00283{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m6b_c00283{transform:matrix(0.270932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270932,0.000000,0.000000,0.250000,0,0);}
.m1a_c00283{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.mb6_c00283{transform:matrix(0.272782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272782,0.000000,0.000000,0.250000,0,0);}
.m38_c00283{transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);}
.m53_c00283{transform:matrix(0.274878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274878,0.000000,0.000000,0.250000,0,0);}
.md_c00283{transform:matrix(0.275570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275570,0.000000,0.000000,0.250000,0,0);}
.m7d_c00283{transform:matrix(0.276487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276487,0.000000,0.000000,0.250000,0,0);}
.mb8_c00283{transform:matrix(0.276572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276572,0.000000,0.000000,0.250000,0,0);}
.ma6_c00283{transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);}
.m35_c00283{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m4a_c00283{transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);}
.m5c_c00283{transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);}
.m4e_c00283{transform:matrix(0.279674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279674,0.000000,0.000000,0.250000,0,0);}
.m32_c00283{transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);}
.m9a_c00283{transform:matrix(0.280293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280293,0.000000,0.000000,0.250000,0,0);}
.m4b_c00283{transform:matrix(0.280719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280719,0.000000,0.000000,0.250000,0,0);}
.mf_c00283{transform:matrix(0.280841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280841,0.000000,0.000000,0.250000,0,0);}
.m39_c00283{transform:matrix(0.280977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280977,0.000000,0.000000,0.250000,0,0);}
.m3_c00283{transform:matrix(0.281033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281033,0.000000,0.000000,0.250000,0,0);}
.ma2_c00283{transform:matrix(0.281715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281715,0.000000,0.000000,0.250000,0,0);}
.m18_c00283{transform:matrix(0.281783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281783,0.000000,0.000000,0.250000,0,0);}
.m1f_c00283{transform:matrix(0.281833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281833,0.000000,0.000000,0.250000,0,0);}
.m2e_c00283{transform:matrix(0.281895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281895,0.000000,0.000000,0.250000,0,0);}
.m8a_c00283{transform:matrix(0.282585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282585,0.000000,0.000000,0.250000,0,0);}
.m5a_c00283{transform:matrix(0.282641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282641,0.000000,0.000000,0.250000,0,0);}
.m79_c00283{transform:matrix(0.282963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282963,0.000000,0.000000,0.250000,0,0);}
.m3e_c00283{transform:matrix(0.283330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283330,0.000000,0.000000,0.250000,0,0);}
.m51_c00283{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m97_c00283{transform:matrix(0.283914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283914,0.000000,0.000000,0.250000,0,0);}
.m33_c00283{transform:matrix(0.283919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283919,0.000000,0.000000,0.250000,0,0);}
.m73_c00283{transform:matrix(0.284383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284383,0.000000,0.000000,0.250000,0,0);}
.m88_c00283{transform:matrix(0.284997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284997,0.000000,0.000000,0.250000,0,0);}
.m9b_c00283{transform:matrix(0.285189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285189,0.000000,0.000000,0.250000,0,0);}
.m76_c00283{transform:matrix(0.285213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285213,0.000000,0.000000,0.250000,0,0);}
.m75_c00283{transform:matrix(0.285278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285278,0.000000,0.000000,0.250000,0,0);}
.mb_c00283{transform:matrix(0.285305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285305,0.000000,0.000000,0.250000,0,0);}
.mb4_c00283{transform:matrix(0.285970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285970,0.000000,0.000000,0.250000,0,0);}
.m7b_c00283{transform:matrix(0.286141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286141,0.000000,0.000000,0.250000,0,0);}
.m69_c00283{transform:matrix(0.286857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286857,0.000000,0.000000,0.250000,0,0);}
.mac_c00283{transform:matrix(0.287634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287634,0.000000,0.000000,0.250000,0,0);}
.m1c_c00283{transform:matrix(0.287874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287874,0.000000,0.000000,0.250000,0,0);}
.m93_c00283{transform:matrix(0.288571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288571,0.000000,0.000000,0.250000,0,0);}
.m37_c00283{transform:matrix(0.288576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288576,0.000000,0.000000,0.250000,0,0);}
.ma7_c00283{transform:matrix(0.289073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289073,0.000000,0.000000,0.250000,0,0);}
.m4c_c00283{transform:matrix(0.289458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289458,0.000000,0.000000,0.250000,0,0);}
.m66_c00283{transform:matrix(0.289520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289520,0.000000,0.000000,0.250000,0,0);}
.m90_c00283{transform:matrix(0.289601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289601,0.000000,0.000000,0.250000,0,0);}
.mab_c00283{transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);}
.mae_c00283{transform:matrix(0.290813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290813,0.000000,0.000000,0.250000,0,0);}
.m70_c00283{transform:matrix(0.291403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291403,0.000000,0.000000,0.250000,0,0);}
.m16_c00283{transform:matrix(0.291465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291465,0.000000,0.000000,0.250000,0,0);}
.m41_c00283{transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);}
.m26_c00283{transform:matrix(0.292941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292941,0.000000,0.000000,0.250000,0,0);}
.m83_c00283{transform:matrix(0.293090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293090,0.000000,0.000000,0.250000,0,0);}
.m80_c00283{transform:matrix(0.293217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293217,0.000000,0.000000,0.250000,0,0);}
.m95_c00283{transform:matrix(0.293235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293235,0.000000,0.000000,0.250000,0,0);}
.m57_c00283{transform:matrix(0.293243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293243,0.000000,0.000000,0.250000,0,0);}
.m5d_c00283{transform:matrix(0.293406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293406,0.000000,0.000000,0.250000,0,0);}
.mc_c00283{transform:matrix(0.293643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293643,0.000000,0.000000,0.250000,0,0);}
.m48_c00283{transform:matrix(0.294443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294443,0.000000,0.000000,0.250000,0,0);}
.m89_c00283{transform:matrix(0.295991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295991,0.000000,0.000000,0.250000,0,0);}
.m5e_c00283{transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);}
.m99_c00283{transform:matrix(0.297035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297035,0.000000,0.000000,0.250000,0,0);}
.m74_c00283{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.ma9_c00283{transform:matrix(0.297160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297160,0.000000,0.000000,0.250000,0,0);}
.m31_c00283{transform:matrix(0.297306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297306,0.000000,0.000000,0.250000,0,0);}
.mb2_c00283{transform:matrix(0.297583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297583,0.000000,0.000000,0.250000,0,0);}
.m6f_c00283{transform:matrix(0.297646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297646,0.000000,0.000000,0.250000,0,0);}
.m8e_c00283{transform:matrix(0.297911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297911,0.000000,0.000000,0.250000,0,0);}
.m20_c00283{transform:matrix(0.298835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298835,0.000000,0.000000,0.250000,0,0);}
.m3f_c00283{transform:matrix(0.299508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299508,0.000000,0.000000,0.250000,0,0);}
.m7a_c00283{transform:matrix(0.299699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299699,0.000000,0.000000,0.250000,0,0);}
.maf_c00283{transform:matrix(0.300354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300354,0.000000,0.000000,0.250000,0,0);}
.m61_c00283{transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);}
.m7f_c00283{transform:matrix(0.300661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300661,0.000000,0.000000,0.250000,0,0);}
.m3b_c00283{transform:matrix(0.300792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300792,0.000000,0.000000,0.250000,0,0);}
.m87_c00283{transform:matrix(0.301242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301242,0.000000,0.000000,0.250000,0,0);}
.m9_c00283{transform:matrix(0.301780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301780,0.000000,0.000000,0.250000,0,0);}
.m6d_c00283{transform:matrix(0.302129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302129,0.000000,0.000000,0.250000,0,0);}
.m65_c00283{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m82_c00283{transform:matrix(0.302710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302710,0.000000,0.000000,0.250000,0,0);}
.m1_c00283{transform:matrix(0.303291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303291,0.000000,0.000000,0.250000,0,0);}
.m5_c00283{transform:matrix(0.303446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303446,0.000000,0.000000,0.250000,0,0);}
.m94_c00283{transform:matrix(0.304703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304703,0.000000,0.000000,0.250000,0,0);}
.m34_c00283{transform:matrix(0.304737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304737,0.000000,0.000000,0.250000,0,0);}
.m22_c00283{transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);}
.m8d_c00283{transform:matrix(0.306726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306726,0.000000,0.000000,0.250000,0,0);}
.m59_c00283{transform:matrix(0.306882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306882,0.000000,0.000000,0.250000,0,0);}
.ma5_c00283{transform:matrix(0.307222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307222,0.000000,0.000000,0.250000,0,0);}
.mb5_c00283{transform:matrix(0.307919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307919,0.000000,0.000000,0.250000,0,0);}
.m52_c00283{transform:matrix(0.308448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308448,0.000000,0.000000,0.250000,0,0);}
.m63_c00283{transform:matrix(0.308513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308513,0.000000,0.000000,0.250000,0,0);}
.m54_c00283{transform:matrix(0.308579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308579,0.000000,0.000000,0.250000,0,0);}
.m71_c00283{transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);}
.m78_c00283{transform:matrix(0.309847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309847,0.000000,0.000000,0.250000,0,0);}
.m1d_c00283{transform:matrix(0.309943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309943,0.000000,0.000000,0.250000,0,0);}
.mad_c00283{transform:matrix(0.310109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310109,0.000000,0.000000,0.250000,0,0);}
.m47_c00283{transform:matrix(0.313157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313157,0.000000,0.000000,0.250000,0,0);}
.m81_c00283{transform:matrix(0.313434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313434,0.000000,0.000000,0.250000,0,0);}
.m19_c00283{transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);}
.m1b_c00283{transform:matrix(0.314152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314152,0.000000,0.000000,0.250000,0,0);}
.m86_c00283{transform:matrix(0.315862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315862,0.000000,0.000000,0.250000,0,0);}
.m6a_c00283{transform:matrix(0.315917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315917,0.000000,0.000000,0.250000,0,0);}
.ma1_c00283{transform:matrix(0.315939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315939,0.000000,0.000000,0.250000,0,0);}
.m92_c00283{transform:matrix(0.316688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316688,0.000000,0.000000,0.250000,0,0);}
.m3a_c00283{transform:matrix(0.317024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317024,0.000000,0.000000,0.250000,0,0);}
.m5f_c00283{transform:matrix(0.317996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317996,0.000000,0.000000,0.250000,0,0);}
.mb0_c00283{transform:matrix(0.318354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318354,0.000000,0.000000,0.250000,0,0);}
.m21_c00283{transform:matrix(0.319290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319290,0.000000,0.000000,0.250000,0,0);}
.m46_c00283{transform:matrix(0.319429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319429,0.000000,0.000000,0.250000,0,0);}
.m6e_c00283{transform:matrix(0.320145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320145,0.000000,0.000000,0.250000,0,0);}
.m8c_c00283{transform:matrix(0.321048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321048,0.000000,0.000000,0.250000,0,0);}
.m50_c00283{transform:matrix(0.321083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321083,0.000000,0.000000,0.250000,0,0);}
.mb7_c00283{transform:matrix(0.321234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321234,0.000000,0.000000,0.250000,0,0);}
.m2b_c00283{transform:matrix(0.322456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322456,0.000000,0.000000,0.250000,0,0);}
.m3d_c00283{transform:matrix(0.324105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324105,0.000000,0.000000,0.250000,0,0);}
.m7c_c00283{transform:matrix(0.325136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325136,0.000000,0.000000,0.250000,0,0);}
.m10_c00283{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.ma4_c00283{transform:matrix(0.328902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328902,0.000000,0.000000,0.250000,0,0);}
.m1e_c00283{transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);}
.m68_c00283{transform:matrix(0.331416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331416,0.000000,0.000000,0.250000,0,0);}
.m9f_c00283{transform:matrix(0.331693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331693,0.000000,0.000000,0.250000,0,0);}
.mb9_c00283{transform:matrix(0.332292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332292,0.000000,0.000000,0.250000,0,0);}
.m42_c00283{transform:matrix(0.332648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332648,0.000000,0.000000,0.250000,0,0);}
.m4d_c00283{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m36_c00283{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);}
.m64_c00283{transform:matrix(0.336509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336509,0.000000,0.000000,0.250000,0,0);}
.m8_c00283{transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);}
.ma0_c00283{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m14_c00283{transform:matrix(0.339434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339434,0.000000,0.000000,0.250000,0,0);}
.mba_c00283{transform:matrix(0.343110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343110,0.000000,0.000000,0.250000,0,0);}
.m9c_c00283{transform:matrix(0.344179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344179,0.000000,0.000000,0.250000,0,0);}
.m84_c00283{transform:matrix(0.346006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346006,0.000000,0.000000,0.250000,0,0);}
.m6c_c00283{transform:matrix(0.347328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347328,0.000000,0.000000,0.250000,0,0);}
.m45_c00283{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m3c_c00283{transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353362,0.000000,0.000000,0.250000,0,0);}
.m96_c00283{transform:matrix(0.355316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355316,0.000000,0.000000,0.250000,0,0);}
.m77_c00283{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m24_c00283{transform:matrix(0.355530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355530,0.000000,0.000000,0.250000,0,0);}
.m2d_c00283{transform:matrix(0.358291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358291,0.000000,0.000000,0.250000,0,0);}
.m8f_c00283{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m2a_c00283{transform:matrix(0.361367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361367,0.000000,0.000000,0.250000,0,0);}
.m30_c00283{transform:matrix(0.363573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363573,0.000000,0.000000,0.250000,0,0);}
.m55_c00283{transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);}
.mbb_c00283{transform:matrix(0.395497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395497,0.000000,0.000000,0.250000,0,0);}
.m56_c00283{transform:matrix(0.407787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407787,0.000000,0.000000,0.250000,0,0);}
.v0_c00283{vertical-align:0.000000px;}
.ls7_c00283{letter-spacing:-2.744280px;}
.ls9_c00283{letter-spacing:-2.038608px;}
.ls6_c00283{letter-spacing:-1.685772px;}
.ls5_c00283{letter-spacing:-0.635105px;}
.ls1_c00283{letter-spacing:0.000000px;}
.lsb_c00283{letter-spacing:3.026549px;}
.ls8_c00283{letter-spacing:3.112798px;}
.lsa_c00283{letter-spacing:3.191206px;}
.ls2_c00283{letter-spacing:3.762000px;}
.lsc_c00283{letter-spacing:3.801610px;}
.ls0_c00283{letter-spacing:3.919608px;}
.ls3_c00283{letter-spacing:3.920400px;}
.ls4_c00283{letter-spacing:52.747398px;}
.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;}
}
.ws1_c00283{word-spacing:-22.628549px;}
.ws0_c00283{word-spacing:-19.602000px;}
.ws2_c00283{word-spacing:0.000000px;}
._10_c00283{margin-left:-14.584284px;}
._8_c00283{margin-left:-13.250160px;}
._12_c00283{margin-left:-8.703288px;}
._d_c00283{margin-left:-7.291944px;}
._a_c00283{width:1.568160px;}
._2_c00283{width:4.077216px;}
._3_c00283{width:6.508260px;}
._4_c00283{width:7.606368px;}
._5_c00283{width:9.173340px;}
._11_c00283{width:10.507068px;}
._e_c00283{width:12.388464px;}
._b_c00283{width:14.271048px;}
._1_c00283{width:21.797424px;}
._6_c00283{width:30.422304px;}
._f_c00283{width:35.241624px;}
._7_c00283{width:36.851760px;}
._c_c00283{width:38.889972px;}
._13_c00283{width:42.888780px;}
._9_c00283{width:108.445788px;}
._0_c00283{width:2657.529754px;}
.fc0_c00283{color:transparent;}
.fs0_c00283{font-size:22.176000px;}
.fs14_c00283{font-size:27.720000px;}
.fs15_c00283{font-size:33.660000px;}
.fsa_c00283{font-size:37.224000px;}
.fsb_c00283{font-size:38.610000px;}
.fsc_c00283{font-size:45.144000px;}
.fs9_c00283{font-size:46.332000px;}
.fsd_c00283{font-size:48.114000px;}
.fs12_c00283{font-size:50.292000px;}
.fs6_c00283{font-size:50.688000px;}
.fs7_c00283{font-size:51.876198px;}
.fs3_c00283{font-size:52.747398px;}
.fs5_c00283{font-size:53.856198px;}
.fse_c00283{font-size:74.844000px;}
.fs1_c00283{font-size:75.240000px;}
.fs13_c00283{font-size:76.032198px;}
.fs2_c00283{font-size:78.408000px;}
.fs8_c00283{font-size:78.804000px;}
.fs10_c00283{font-size:79.002198px;}
.fs4_c00283{font-size:82.566198px;}
.fsf_c00283{font-size:93.852198px;}
.fs11_c00283{font-size:97.812198px;}
.y0_c00283{bottom:0.000000px;}
.y25_c00283{bottom:37.685385px;}
.y1_c00283{bottom:76.500000px;}
.y24_c00283{bottom:81.883935px;}
.y23_c00283{bottom:141.402735px;}
.y22_c00283{bottom:171.696735px;}
.y21_c00283{bottom:204.841935px;}
.y20_c00283{bottom:238.343535px;}
.y1f_c00283{bottom:253.663785px;}
.y1e_c00283{bottom:271.132335px;}
.y1d_c00283{bottom:303.208335px;}
.y1c_c00283{bottom:367.716735px;}
.y1b_c00283{bottom:399.792735px;}
.y1a_c00283{bottom:431.512335px;}
.y19_c00283{bottom:464.301135px;}
.y18_c00283{bottom:482.472585px;}
.y17_c00283{bottom:499.228335px;}
.y16_c00283{bottom:532.373535px;}
.y11_c00283{bottom:597.233385px;}
.y15_c00283{bottom:604.361385px;}
.y10_c00283{bottom:629.314335px;}
.y14_c00283{bottom:660.321135px;}
.yf_c00283{bottom:661.746735px;}
.y13_c00283{bottom:684.194985px;}
.yd_c00283{bottom:694.170225px;}
.ye_c00283{bottom:694.179135px;}
.y12_c00283{bottom:698.455935px;}
.yc_c00283{bottom:726.611535px;}
.yb_c00283{bottom:758.682585px;}
.ya_c00283{bottom:792.545535px;}
.y9_c00283{bottom:824.977935px;}
.y8_c00283{bottom:857.410335px;}
.y7_c00283{bottom:874.512585px;}
.y5_c00283{bottom:889.124985px;}
.y6_c00283{bottom:891.624735px;}
.y4_c00283{bottom:922.631535px;}
.y2_c00283{bottom:1001.034585px;}
.y3_c00283{bottom:1074.814335px;}
.h2_c00283{height:23.128875px;}
.h15_c00283{height:28.911094px;}
.h16_c00283{height:33.035449px;}
.h5_c00283{height:35.129767px;}
.hb_c00283{height:38.823469px;}
.hc_c00283{height:40.269023px;}
.hd_c00283{height:47.083781px;}
.ha_c00283{height:48.322828px;}
.h13_c00283{height:49.358848px;}
.he_c00283{height:50.181398px;}
.h8_c00283{height:54.105253px;}
.h7_c00283{height:56.170332px;}
.hf_c00283{height:73.455293px;}
.h3_c00283{height:73.843945px;}
.h14_c00283{height:76.626200px;}
.h4_c00283{height:76.953164px;}
.h9_c00283{height:77.341816px;}
.h11_c00283{height:82.396824px;}
.h6_c00283{height:86.113964px;}
.h12_c00283{height:95.997323px;}
.h10_c00283{height:97.884910px;}
.h1_c00283{height:1110.000000px;}
.h0_c00283{height:1263.000000px;}
.w1_c00283{width:763.500000px;}
.w0_c00283{width:892.500000px;}
.x0_c00283{left:0.000000px;}
.x2_c00283{left:47.540835px;}
.x1_c00283{left:64.500000px;}
.x14_c00283{left:69.672285px;}
.x26_c00283{left:71.587935px;}
.x6e_c00283{left:73.082835px;}
.x25_c00283{left:92.521485px;}
.x39_c00283{left:101.080035px;}
.x57_c00283{left:102.535335px;}
.x45_c00283{left:103.703535px;}
.x2e_c00283{left:113.583735px;}
.x51_c00283{left:123.785685px;}
.x5_c00283{left:125.122185px;}
.x4b_c00283{left:135.259785px;}
.x27_c00283{left:136.482435px;}
.x4f_c00283{left:146.016135px;}
.x15_c00283{left:147.565485px;}
.x6a_c00283{left:156.985335px;}
.x16_c00283{left:158.247585px;}
.x3a_c00283{left:168.949485px;}
.x6_c00283{left:179.814735px;}
.x71_c00283{left:182.091735px;}
.x2f_c00283{left:190.689885px;}
.x28_c00283{left:201.738285px;}
.x17_c00283{left:203.089635px;}
.x5c_c00283{left:204.916185px;}
.x58_c00283{left:214.152885px;}
.x30_c00283{left:223.582635px;}
.x64_c00283{left:225.181485px;}
.x3e_c00283{left:234.799335px;}
.x18_c00283{left:235.809135px;}
.x19_c00283{left:246.139785px;}
.x1a_c00283{left:256.480335px;}
.x7_c00283{left:257.658435px;}
.x5d_c00283{left:258.717735px;}
.x52_c00283{left:259.727535px;}
.x3b_c00283{left:266.806035px;}
.x3f_c00283{left:268.563285px;}
.x59_c00283{left:278.517735px;}
.x53_c00283{left:280.067085px;}
.x40_c00283{left:291.145185px;}
.x6f_c00283{left:302.599485px;}
.x31_c00283{left:312.098535px;}
.x8_c00283{left:313.192485px;}
.x65_c00283{left:323.983485px;}
.x9_c00283{left:325.998135px;}
.xa_c00283{left:335.036835px;}
.x70_c00283{left:336.096135px;}
.x76_c00283{left:337.982085px;}
.x1b_c00283{left:345.501135px;}
.x63_c00283{left:346.768335px;}
.x47_c00283{left:356.554485px;}
.xb_c00283{left:367.464285px;}
.xc_c00283{left:378.844335px;}
.x4c_c00283{left:380.344185px;}
.x1c_c00283{left:389.566035px;}
.x41_c00283{left:392.347935px;}
.xd_c00283{left:401.243085px;}
.x54_c00283{left:403.000335px;}
.x32_c00283{left:411.657885px;}
.x72_c00283{left:420.716385px;}
.x1d_c00283{left:422.092485px;}
.xe_c00283{left:423.721035px;}
.x50_c00283{left:434.462535px;}
.x3c_c00283{left:444.624885px;}
.x61_c00283{left:445.842585px;}
.x33_c00283{left:455.851485px;}
.x3d_c00283{left:465.677235px;}
.x34_c00283{left:466.706835px;}
.x66_c00283{left:467.924535px;}
.x29_c00283{left:477.468135px;}
.x6b_c00283{left:478.562085px;}
.x48_c00283{left:488.075985px;}
.x5e_c00283{left:489.570885px;}
.x55_c00283{left:498.713535px;}
.xf_c00283{left:500.738085px;}
.x5a_c00283{left:509.870835px;}
.x62_c00283{left:511.108335px;}
.x1e_c00283{left:521.607285px;}
.x74_c00283{left:524.527785px;}
.x2a_c00283{left:532.482435px;}
.x10_c00283{left:533.507085px;}
.x1f_c00283{left:542.971485px;}
.x46_c00283{left:544.486185px;}
.x42_c00283{left:554.396085px;}
.x35_c00283{left:566.345385px;}
.x75_c00283{left:568.265985px;}
.x20_c00283{left:576.671085px;}
.x67_c00283{left:578.017485px;}
.x36_c00283{left:588.590685px;}
.x49_c00283{left:598.644135px;}
.x56_c00283{left:599.817285px;}
.x37_c00283{left:610.529085px;}
.x2b_c00283{left:620.028135px;}
.x11_c00283{left:621.181485px;}
.x4d_c00283{left:631.556685px;}
.x5f_c00283{left:632.908035px;}
.x21_c00283{left:641.768535px;}
.x43_c00283{left:643.194135px;}
.x68_c00283{left:646.347285px;}
.x3_c00283{left:652.871385px;}
.x69_c00283{left:654.024735px;}
.x5b_c00283{left:655.049385px;}
.x22_c00283{left:664.360335px;}
.x4a_c00283{left:665.751285px;}
.x60_c00283{left:666.865035px;}
.x4_c00283{left:675.601785px;}
.x73_c00283{left:678.853935px;}
.x12_c00283{left:686.442285px;}
.x2c_c00283{left:697.262985px;}
.x6c_c00283{left:698.832135px;}
.x38_c00283{left:703.400985px;}
.x23_c00283{left:708.177735px;}
.x4e_c00283{left:709.573635px;}
.x13_c00283{left:719.404335px;}
.x6d_c00283{left:728.858835px;}
.x44_c00283{left:734.170185px;}
.x2d_c00283{left:741.476385px;}
.x77_c00283{left:759.934935px;}
.x24_c00283{left:762.959385px;}
@media print{
.v0_c00283{vertical-align:0.000000pt;}
.ls7_c00283{letter-spacing:-2.439360pt;}
.ls9_c00283{letter-spacing:-1.812096pt;}
.ls6_c00283{letter-spacing:-1.498464pt;}
.ls5_c00283{letter-spacing:-0.564538pt;}
.ls1_c00283{letter-spacing:0.000000pt;}
.lsb_c00283{letter-spacing:2.690266pt;}
.ls8_c00283{letter-spacing:2.766931pt;}
.lsa_c00283{letter-spacing:2.836627pt;}
.ls2_c00283{letter-spacing:3.344000pt;}
.lsc_c00283{letter-spacing:3.379209pt;}
.ls0_c00283{letter-spacing:3.484096pt;}
.ls3_c00283{letter-spacing:3.484800pt;}
.ls4_c00283{letter-spacing:46.886576pt;}
.ws1_c00283{word-spacing:-20.114266pt;}
.ws0_c00283{word-spacing:-17.424000pt;}
.ws2_c00283{word-spacing:0.000000pt;}
._10_c00283{margin-left:-12.963808pt;}
._8_c00283{margin-left:-11.777920pt;}
._12_c00283{margin-left:-7.736256pt;}
._d_c00283{margin-left:-6.481728pt;}
._a_c00283{width:1.393920pt;}
._2_c00283{width:3.624192pt;}
._3_c00283{width:5.785120pt;}
._4_c00283{width:6.761216pt;}
._5_c00283{width:8.154080pt;}
._11_c00283{width:9.339616pt;}
._e_c00283{width:11.011968pt;}
._b_c00283{width:12.685376pt;}
._1_c00283{width:19.375488pt;}
._6_c00283{width:27.042048pt;}
._f_c00283{width:31.325888pt;}
._7_c00283{width:32.757120pt;}
._c_c00283{width:34.568864pt;}
._13_c00283{width:38.123360pt;}
._9_c00283{width:96.396256pt;}
._0_c00283{width:2362.248670pt;}
.fs0_c00283{font-size:19.712000pt;}
.fs14_c00283{font-size:24.640000pt;}
.fs15_c00283{font-size:29.920000pt;}
.fsa_c00283{font-size:33.088000pt;}
.fsb_c00283{font-size:34.320000pt;}
.fsc_c00283{font-size:40.128000pt;}
.fs9_c00283{font-size:41.184000pt;}
.fsd_c00283{font-size:42.768000pt;}
.fs12_c00283{font-size:44.704000pt;}
.fs6_c00283{font-size:45.056000pt;}
.fs7_c00283{font-size:46.112176pt;}
.fs3_c00283{font-size:46.886576pt;}
.fs5_c00283{font-size:47.872176pt;}
.fse_c00283{font-size:66.528000pt;}
.fs1_c00283{font-size:66.880000pt;}
.fs13_c00283{font-size:67.584176pt;}
.fs2_c00283{font-size:69.696000pt;}
.fs8_c00283{font-size:70.048000pt;}
.fs10_c00283{font-size:70.224176pt;}
.fs4_c00283{font-size:73.392176pt;}
.fsf_c00283{font-size:83.424176pt;}
.fs11_c00283{font-size:86.944176pt;}
.y0_c00283{bottom:0.000000pt;}
.y25_c00283{bottom:33.498120pt;}
.y1_c00283{bottom:68.000000pt;}
.y24_c00283{bottom:72.785720pt;}
.y23_c00283{bottom:125.691320pt;}
.y22_c00283{bottom:152.619320pt;}
.y21_c00283{bottom:182.081720pt;}
.y20_c00283{bottom:211.860920pt;}
.y1f_c00283{bottom:225.478920pt;}
.y1e_c00283{bottom:241.006520pt;}
.y1d_c00283{bottom:269.518520pt;}
.y1c_c00283{bottom:326.859320pt;}
.y1b_c00283{bottom:355.371320pt;}
.y1a_c00283{bottom:383.566520pt;}
.y19_c00283{bottom:412.712120pt;}
.y18_c00283{bottom:428.864520pt;}
.y17_c00283{bottom:443.758520pt;}
.y16_c00283{bottom:473.220920pt;}
.y11_c00283{bottom:530.874120pt;}
.y15_c00283{bottom:537.210120pt;}
.y10_c00283{bottom:559.390520pt;}
.y14_c00283{bottom:586.952120pt;}
.yf_c00283{bottom:588.219320pt;}
.y13_c00283{bottom:608.173320pt;}
.yd_c00283{bottom:617.040200pt;}
.ye_c00283{bottom:617.048120pt;}
.y12_c00283{bottom:620.849720pt;}
.yc_c00283{bottom:645.876920pt;}
.yb_c00283{bottom:674.384520pt;}
.ya_c00283{bottom:704.484920pt;}
.y9_c00283{bottom:733.313720pt;}
.y8_c00283{bottom:762.142520pt;}
.y7_c00283{bottom:777.344520pt;}
.y5_c00283{bottom:790.333320pt;}
.y6_c00283{bottom:792.555320pt;}
.y4_c00283{bottom:820.116920pt;}
.y2_c00283{bottom:889.808520pt;}
.y3_c00283{bottom:955.390520pt;}
.h2_c00283{height:20.559000pt;}
.h15_c00283{height:25.698750pt;}
.h16_c00283{height:29.364844pt;}
.h5_c00283{height:31.226460pt;}
.hb_c00283{height:34.509750pt;}
.hc_c00283{height:35.794688pt;}
.hd_c00283{height:41.852250pt;}
.ha_c00283{height:42.953625pt;}
.h13_c00283{height:43.874531pt;}
.he_c00283{height:44.605688pt;}
.h8_c00283{height:48.093559pt;}
.h7_c00283{height:49.929184pt;}
.hf_c00283{height:65.293594pt;}
.h3_c00283{height:65.639063pt;}
.h14_c00283{height:68.112177pt;}
.h4_c00283{height:68.402813pt;}
.h9_c00283{height:68.748281pt;}
.h11_c00283{height:73.241621pt;}
.h6_c00283{height:76.545746pt;}
.h12_c00283{height:85.330954pt;}
.h10_c00283{height:87.008809pt;}
.h1_c00283{height:986.666667pt;}
.h0_c00283{height:1122.666667pt;}
.w1_c00283{width:678.666667pt;}
.w0_c00283{width:793.333333pt;}
.x0_c00283{left:0.000000pt;}
.x2_c00283{left:42.258520pt;}
.x1_c00283{left:57.333333pt;}
.x14_c00283{left:61.930920pt;}
.x26_c00283{left:63.633720pt;}
.x6e_c00283{left:64.962520pt;}
.x25_c00283{left:82.241320pt;}
.x39_c00283{left:89.848920pt;}
.x57_c00283{left:91.142520pt;}
.x45_c00283{left:92.180920pt;}
.x2e_c00283{left:100.963320pt;}
.x51_c00283{left:110.031720pt;}
.x5_c00283{left:111.219720pt;}
.x4b_c00283{left:120.230920pt;}
.x27_c00283{left:121.317720pt;}
.x4f_c00283{left:129.792120pt;}
.x15_c00283{left:131.169320pt;}
.x6a_c00283{left:139.542520pt;}
.x16_c00283{left:140.664520pt;}
.x3a_c00283{left:150.177320pt;}
.x6_c00283{left:159.835320pt;}
.x71_c00283{left:161.859320pt;}
.x2f_c00283{left:169.502120pt;}
.x28_c00283{left:179.322920pt;}
.x17_c00283{left:180.524120pt;}
.x5c_c00283{left:182.147720pt;}
.x58_c00283{left:190.358120pt;}
.x30_c00283{left:198.740120pt;}
.x64_c00283{left:200.161320pt;}
.x3e_c00283{left:208.710520pt;}
.x18_c00283{left:209.608120pt;}
.x19_c00283{left:218.790920pt;}
.x1a_c00283{left:227.982520pt;}
.x7_c00283{left:229.029720pt;}
.x5d_c00283{left:229.971320pt;}
.x52_c00283{left:230.868920pt;}
.x3b_c00283{left:237.160920pt;}
.x3f_c00283{left:238.722920pt;}
.x59_c00283{left:247.571320pt;}
.x53_c00283{left:248.948520pt;}
.x40_c00283{left:258.795720pt;}
.x6f_c00283{left:268.977320pt;}
.x31_c00283{left:277.420920pt;}
.x8_c00283{left:278.393320pt;}
.x65_c00283{left:287.985320pt;}
.x9_c00283{left:289.776120pt;}
.xa_c00283{left:297.810520pt;}
.x70_c00283{left:298.752120pt;}
.x76_c00283{left:300.428520pt;}
.x1b_c00283{left:307.112120pt;}
.x63_c00283{left:308.238520pt;}
.x47_c00283{left:316.937320pt;}
.xb_c00283{left:326.634920pt;}
.xc_c00283{left:336.750520pt;}
.x4c_c00283{left:338.083720pt;}
.x1c_c00283{left:346.280920pt;}
.x41_c00283{left:348.753720pt;}
.xd_c00283{left:356.660520pt;}
.x54_c00283{left:358.222520pt;}
.x32_c00283{left:365.918120pt;}
.x72_c00283{left:373.970120pt;}
.x1d_c00283{left:375.193320pt;}
.xe_c00283{left:376.640920pt;}
.x50_c00283{left:386.188920pt;}
.x3c_c00283{left:395.222120pt;}
.x61_c00283{left:396.304520pt;}
.x33_c00283{left:405.201320pt;}
.x3d_c00283{left:413.935320pt;}
.x34_c00283{left:414.850520pt;}
.x66_c00283{left:415.932920pt;}
.x29_c00283{left:424.416120pt;}
.x6b_c00283{left:425.388520pt;}
.x48_c00283{left:433.845320pt;}
.x5e_c00283{left:435.174120pt;}
.x55_c00283{left:443.300920pt;}
.xf_c00283{left:445.100520pt;}
.x5a_c00283{left:453.218520pt;}
.x62_c00283{left:454.318520pt;}
.x1e_c00283{left:463.650920pt;}
.x74_c00283{left:466.246920pt;}
.x2a_c00283{left:473.317720pt;}
.x10_c00283{left:474.228520pt;}
.x1f_c00283{left:482.641320pt;}
.x46_c00283{left:483.987720pt;}
.x42_c00283{left:492.796520pt;}
.x35_c00283{left:503.418120pt;}
.x75_c00283{left:505.125320pt;}
.x20_c00283{left:512.596520pt;}
.x67_c00283{left:513.793320pt;}
.x36_c00283{left:523.191720pt;}
.x49_c00283{left:532.128120pt;}
.x56_c00283{left:533.170920pt;}
.x37_c00283{left:542.692520pt;}
.x2b_c00283{left:551.136120pt;}
.x11_c00283{left:552.161320pt;}
.x4d_c00283{left:561.383720pt;}
.x5f_c00283{left:562.584920pt;}
.x21_c00283{left:570.460920pt;}
.x43_c00283{left:571.728120pt;}
.x68_c00283{left:574.530920pt;}
.x3_c00283{left:580.330120pt;}
.x69_c00283{left:581.355320pt;}
.x5b_c00283{left:582.266120pt;}
.x22_c00283{left:590.542520pt;}
.x4a_c00283{left:591.778920pt;}
.x60_c00283{left:592.768920pt;}
.x4_c00283{left:600.534920pt;}
.x73_c00283{left:603.425720pt;}
.x12_c00283{left:610.170920pt;}
.x2c_c00283{left:619.789320pt;}
.x6c_c00283{left:621.184120pt;}
.x38_c00283{left:625.245320pt;}
.x23_c00283{left:629.491320pt;}
.x4e_c00283{left:630.732120pt;}
.x13_c00283{left:639.470520pt;}
.x6d_c00283{left:647.874520pt;}
.x44_c00283{left:652.595720pt;}
.x2d_c00283{left:659.090120pt;}
.x77_c00283{left:675.497720pt;}
.x24_c00283{left:678.186120pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1455314a889ea7337dc8bf0a.woff2')format("woff");}.ff1_c00284{font-family:ff1_c00284;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00284;src:url('chunks/assets/font_c2fc94ba6de32bada30fa415.woff2')format("woff");}.ff2_c00284{font-family:ff2_c00284;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m32_c00284{transform:matrix(0.177732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177732,0.000000,0.000000,0.250000,0,0);}
.m50_c00284{transform:matrix(0.237929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237929,0.000000,0.000000,0.250000,0,0);}
.m85_c00284{transform:matrix(0.240737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240737,0.000000,0.000000,0.250000,0,0);}
.mc0_c00284{transform:matrix(0.244466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244466,0.000000,0.000000,0.250000,0,0);}
.m55_c00284{transform:matrix(0.244940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244940,0.000000,0.000000,0.250000,0,0);}
.m0_c00284{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m76_c00284{transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);}
.m1_c00284{transform:matrix(0.251380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251380,0.000000,0.000000,0.250000,0,0);}
.m98_c00284{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.m8b_c00284{transform:matrix(0.257003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257003,0.000000,0.000000,0.250000,0,0);}
.ma0_c00284{transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);}
.m8d_c00284{transform:matrix(0.258476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258476,0.000000,0.000000,0.250000,0,0);}
.m9f_c00284{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m1a_c00284{transform:matrix(0.259978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259978,0.000000,0.000000,0.250000,0,0);}
.m26_c00284{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m7a_c00284{transform:matrix(0.261021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261021,0.000000,0.000000,0.250000,0,0);}
.m49_c00284{transform:matrix(0.261057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261057,0.000000,0.000000,0.250000,0,0);}
.m38_c00284{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.m69_c00284{transform:matrix(0.262632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262632,0.000000,0.000000,0.250000,0,0);}
.m1e_c00284{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.ma4_c00284{transform:matrix(0.263305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263305,0.000000,0.000000,0.250000,0,0);}
.m59_c00284{transform:matrix(0.263649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263649,0.000000,0.000000,0.250000,0,0);}
.m5c_c00284{transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);}
.m4c_c00284{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m97_c00284{transform:matrix(0.263947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263947,0.000000,0.000000,0.250000,0,0);}
.m9c_c00284{transform:matrix(0.264073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264073,0.000000,0.000000,0.250000,0,0);}
.m2d_c00284{transform:matrix(0.264839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264839,0.000000,0.000000,0.250000,0,0);}
.md_c00284{transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);}
.m3_c00284{transform:matrix(0.266042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266042,0.000000,0.000000,0.250000,0,0);}
.m4e_c00284{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m96_c00284{transform:matrix(0.266256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266256,0.000000,0.000000,0.250000,0,0);}
.m70_c00284{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.ma8_c00284{transform:matrix(0.267205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267205,0.000000,0.000000,0.250000,0,0);}
.me_c00284{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.maa_c00284{transform:matrix(0.268440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268440,0.000000,0.000000,0.250000,0,0);}
.m6b_c00284{transform:matrix(0.269230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269230,0.000000,0.000000,0.250000,0,0);}
.mc7_c00284{transform:matrix(0.269646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269646,0.000000,0.000000,0.250000,0,0);}
.m73_c00284{transform:matrix(0.269647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269647,0.000000,0.000000,0.250000,0,0);}
.m15_c00284{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m80_c00284{transform:matrix(0.270919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270919,0.000000,0.000000,0.250000,0,0);}
.m2_c00284{transform:matrix(0.271169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271169,0.000000,0.000000,0.250000,0,0);}
.m2a_c00284{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m56_c00284{transform:matrix(0.272825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272825,0.000000,0.000000,0.250000,0,0);}
.m7c_c00284{transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);}
.m2c_c00284{transform:matrix(0.272967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272967,0.000000,0.000000,0.250000,0,0);}
.m4f_c00284{transform:matrix(0.273807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273807,0.000000,0.000000,0.250000,0,0);}
.mb3_c00284{transform:matrix(0.274109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274109,0.000000,0.000000,0.250000,0,0);}
.m22_c00284{transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);}
.mbc_c00284{transform:matrix(0.274192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274192,0.000000,0.000000,0.250000,0,0);}
.m9b_c00284{transform:matrix(0.274361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274361,0.000000,0.000000,0.250000,0,0);}
.m95_c00284{transform:matrix(0.275573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275573,0.000000,0.000000,0.250000,0,0);}
.m77_c00284{transform:matrix(0.275620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275620,0.000000,0.000000,0.250000,0,0);}
.m30_c00284{transform:matrix(0.275819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275819,0.000000,0.000000,0.250000,0,0);}
.m61_c00284{transform:matrix(0.275836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275836,0.000000,0.000000,0.250000,0,0);}
.m89_c00284{transform:matrix(0.276488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276488,0.000000,0.000000,0.250000,0,0);}
.m8_c00284{transform:matrix(0.276607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276607,0.000000,0.000000,0.250000,0,0);}
.m10_c00284{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.mbf_c00284{transform:matrix(0.277586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277586,0.000000,0.000000,0.250000,0,0);}
.m13_c00284{transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);}
.m28_c00284{transform:matrix(0.278023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278023,0.000000,0.000000,0.250000,0,0);}
.m7f_c00284{transform:matrix(0.278331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278331,0.000000,0.000000,0.250000,0,0);}
.m62_c00284{transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);}
.m75_c00284{transform:matrix(0.279864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279864,0.000000,0.000000,0.250000,0,0);}
.mac_c00284{transform:matrix(0.279941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279941,0.000000,0.000000,0.250000,0,0);}
.m41_c00284{transform:matrix(0.279948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279948,0.000000,0.000000,0.250000,0,0);}
.mb2_c00284{transform:matrix(0.280107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280107,0.000000,0.000000,0.250000,0,0);}
.m99_c00284{transform:matrix(0.280329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280329,0.000000,0.000000,0.250000,0,0);}
.mc_c00284{transform:matrix(0.280356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280356,0.000000,0.000000,0.250000,0,0);}
.ma1_c00284{transform:matrix(0.280574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280574,0.000000,0.000000,0.250000,0,0);}
.mbb_c00284{transform:matrix(0.281190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281190,0.000000,0.000000,0.250000,0,0);}
.m23_c00284{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.m5f_c00284{transform:matrix(0.281783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281783,0.000000,0.000000,0.250000,0,0);}
.mba_c00284{transform:matrix(0.281840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281840,0.000000,0.000000,0.250000,0,0);}
.mc3_c00284{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);}
.m65_c00284{transform:matrix(0.282254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282254,0.000000,0.000000,0.250000,0,0);}
.m4_c00284{transform:matrix(0.282558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282558,0.000000,0.000000,0.250000,0,0);}
.m88_c00284{transform:matrix(0.282564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282564,0.000000,0.000000,0.250000,0,0);}
.m74_c00284{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m9a_c00284{transform:matrix(0.283914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283914,0.000000,0.000000,0.250000,0,0);}
.mbe_c00284{transform:matrix(0.284403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284403,0.000000,0.000000,0.250000,0,0);}
.m82_c00284{transform:matrix(0.285311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285311,0.000000,0.000000,0.250000,0,0);}
.m7e_c00284{transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);}
.m8f_c00284{transform:matrix(0.285777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285777,0.000000,0.000000,0.250000,0,0);}
.m20_c00284{transform:matrix(0.286110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286110,0.000000,0.000000,0.250000,0,0);}
.mb8_c00284{transform:matrix(0.287035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287035,0.000000,0.000000,0.250000,0,0);}
.m58_c00284{transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);}
.mae_c00284{transform:matrix(0.287402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287402,0.000000,0.000000,0.250000,0,0);}
.m2f_c00284{transform:matrix(0.287553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287553,0.000000,0.000000,0.250000,0,0);}
.m14_c00284{transform:matrix(0.288153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288153,0.000000,0.000000,0.250000,0,0);}
.m6a_c00284{transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);}
.m44_c00284{transform:matrix(0.288966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288966,0.000000,0.000000,0.250000,0,0);}
.m53_c00284{transform:matrix(0.289318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289318,0.000000,0.000000,0.250000,0,0);}
.mc4_c00284{transform:matrix(0.289520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289520,0.000000,0.000000,0.250000,0,0);}
.m11_c00284{transform:matrix(0.289989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289989,0.000000,0.000000,0.250000,0,0);}
.m6e_c00284{transform:matrix(0.290312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290312,0.000000,0.000000,0.250000,0,0);}
.mb7_c00284{transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);}
.m3b_c00284{transform:matrix(0.290577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290577,0.000000,0.000000,0.250000,0,0);}
.m24_c00284{transform:matrix(0.290935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290935,0.000000,0.000000,0.250000,0,0);}
.m1b_c00284{transform:matrix(0.291013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291013,0.000000,0.000000,0.250000,0,0);}
.m68_c00284{transform:matrix(0.291645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291645,0.000000,0.000000,0.250000,0,0);}
.m16_c00284{transform:matrix(0.291781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291781,0.000000,0.000000,0.250000,0,0);}
.mb0_c00284{transform:matrix(0.291889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291889,0.000000,0.000000,0.250000,0,0);}
.m87_c00284{transform:matrix(0.292608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292608,0.000000,0.000000,0.250000,0,0);}
.m7b_c00284{transform:matrix(0.292983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292983,0.000000,0.000000,0.250000,0,0);}
.m9_c00284{transform:matrix(0.293741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293741,0.000000,0.000000,0.250000,0,0);}
.m4a_c00284{transform:matrix(0.293791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293791,0.000000,0.000000,0.250000,0,0);}
.mad_c00284{transform:matrix(0.294220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294220,0.000000,0.000000,0.250000,0,0);}
.m9e_c00284{transform:matrix(0.294323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294323,0.000000,0.000000,0.250000,0,0);}
.m5e_c00284{transform:matrix(0.294367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294367,0.000000,0.000000,0.250000,0,0);}
.m86_c00284{transform:matrix(0.294473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294473,0.000000,0.000000,0.250000,0,0);}
.m71_c00284{transform:matrix(0.294614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294614,0.000000,0.000000,0.250000,0,0);}
.ma2_c00284{transform:matrix(0.295073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295073,0.000000,0.000000,0.250000,0,0);}
.m64_c00284{transform:matrix(0.296446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296446,0.000000,0.000000,0.250000,0,0);}
.m33_c00284{transform:matrix(0.296568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296568,0.000000,0.000000,0.250000,0,0);}
.mc1_c00284{transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);}
.maf_c00284{transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);}
.m27_c00284{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m3e_c00284{transform:matrix(0.297107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297107,0.000000,0.000000,0.250000,0,0);}
.m6c_c00284{transform:matrix(0.297306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297306,0.000000,0.000000,0.250000,0,0);}
.m66_c00284{transform:matrix(0.297354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297354,0.000000,0.000000,0.250000,0,0);}
.m3d_c00284{transform:matrix(0.298549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298549,0.000000,0.000000,0.250000,0,0);}
.m83_c00284{transform:matrix(0.298608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298608,0.000000,0.000000,0.250000,0,0);}
.m8c_c00284{transform:matrix(0.299262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299262,0.000000,0.000000,0.250000,0,0);}
.m18_c00284{transform:matrix(0.299275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299275,0.000000,0.000000,0.250000,0,0);}
.ma7_c00284{transform:matrix(0.299867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299867,0.000000,0.000000,0.250000,0,0);}
.ma_c00284{transform:matrix(0.300360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300360,0.000000,0.000000,0.250000,0,0);}
.m67_c00284{transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);}
.m43_c00284{transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);}
.m3a_c00284{transform:matrix(0.301655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301655,0.000000,0.000000,0.250000,0,0);}
.m90_c00284{transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);}
.m19_c00284{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m12_c00284{transform:matrix(0.303509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303509,0.000000,0.000000,0.250000,0,0);}
.mc5_c00284{transform:matrix(0.304896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304896,0.000000,0.000000,0.250000,0,0);}
.mb_c00284{transform:matrix(0.305004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305004,0.000000,0.000000,0.250000,0,0);}
.ma3_c00284{transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);}
.m39_c00284{transform:matrix(0.305908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305908,0.000000,0.000000,0.250000,0,0);}
.m54_c00284{transform:matrix(0.306266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306266,0.000000,0.000000,0.250000,0,0);}
.mc8_c00284{transform:matrix(0.306436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306436,0.000000,0.000000,0.250000,0,0);}
.m47_c00284{transform:matrix(0.307034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307034,0.000000,0.000000,0.250000,0,0);}
.m45_c00284{transform:matrix(0.307943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307943,0.000000,0.000000,0.250000,0,0);}
.mb1_c00284{transform:matrix(0.308167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308167,0.000000,0.000000,0.250000,0,0);}
.m81_c00284{transform:matrix(0.308564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308564,0.000000,0.000000,0.250000,0,0);}
.ma9_c00284{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m29_c00284{transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);}
.m7_c00284{transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);}
.m91_c00284{transform:matrix(0.309374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309374,0.000000,0.000000,0.250000,0,0);}
.m6d_c00284{transform:matrix(0.310732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310732,0.000000,0.000000,0.250000,0,0);}
.mc6_c00284{transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310899,0.000000,0.000000,0.250000,0,0);}
.m51_c00284{transform:matrix(0.311260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311260,0.000000,0.000000,0.250000,0,0);}
.m40_c00284{transform:matrix(0.312169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312169,0.000000,0.000000,0.250000,0,0);}
.m17_c00284{transform:matrix(0.312595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312595,0.000000,0.000000,0.250000,0,0);}
.m72_c00284{transform:matrix(0.312819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312819,0.000000,0.000000,0.250000,0,0);}
.m92_c00284{transform:matrix(0.313023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313023,0.000000,0.000000,0.250000,0,0);}
.m25_c00284{transform:matrix(0.313583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313583,0.000000,0.000000,0.250000,0,0);}
.m2b_c00284{transform:matrix(0.315389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315389,0.000000,0.000000,0.250000,0,0);}
.m3c_c00284{transform:matrix(0.315648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315648,0.000000,0.000000,0.250000,0,0);}
.m3f_c00284{transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);}
.m48_c00284{transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);}
.m78_c00284{transform:matrix(0.317996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317996,0.000000,0.000000,0.250000,0,0);}
.m36_c00284{transform:matrix(0.319290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319290,0.000000,0.000000,0.250000,0,0);}
.mb5_c00284{transform:matrix(0.319389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319389,0.000000,0.000000,0.250000,0,0);}
.m5b_c00284{transform:matrix(0.319629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319629,0.000000,0.000000,0.250000,0,0);}
.m4b_c00284{transform:matrix(0.322125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322125,0.000000,0.000000,0.250000,0,0);}
.m35_c00284{transform:matrix(0.323074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323074,0.000000,0.000000,0.250000,0,0);}
.m6f_c00284{transform:matrix(0.323316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323316,0.000000,0.000000,0.250000,0,0);}
.m42_c00284{transform:matrix(0.323405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323405,0.000000,0.000000,0.250000,0,0);}
.m57_c00284{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.m31_c00284{transform:matrix(0.326099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326099,0.000000,0.000000,0.250000,0,0);}
.mc9_c00284{transform:matrix(0.326904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326904,0.000000,0.000000,0.250000,0,0);}
.m5a_c00284{transform:matrix(0.327297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327297,0.000000,0.000000,0.250000,0,0);}
.m46_c00284{transform:matrix(0.327729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327729,0.000000,0.000000,0.250000,0,0);}
.mab_c00284{transform:matrix(0.330230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330230,0.000000,0.000000,0.250000,0,0);}
.m8a_c00284{transform:matrix(0.330374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330374,0.000000,0.000000,0.250000,0,0);}
.mca_c00284{transform:matrix(0.331040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331040,0.000000,0.000000,0.250000,0,0);}
.m5d_c00284{transform:matrix(0.331490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331490,0.000000,0.000000,0.250000,0,0);}
.m5_c00284{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m93_c00284{transform:matrix(0.333235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333235,0.000000,0.000000,0.250000,0,0);}
.m60_c00284{transform:matrix(0.336841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336841,0.000000,0.000000,0.250000,0,0);}
.m1c_c00284{transform:matrix(0.337161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337161,0.000000,0.000000,0.250000,0,0);}
.m6_c00284{transform:matrix(0.338451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338451,0.000000,0.000000,0.250000,0,0);}
.m4d_c00284{transform:matrix(0.338962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338962,0.000000,0.000000,0.250000,0,0);}
.m9d_c00284{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m1d_c00284{transform:matrix(0.339963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339963,0.000000,0.000000,0.250000,0,0);}
.m79_c00284{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.ma6_c00284{transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);}
.m1f_c00284{transform:matrix(0.343578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343578,0.000000,0.000000,0.250000,0,0);}
.m37_c00284{transform:matrix(0.348293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348293,0.000000,0.000000,0.250000,0,0);}
.mb4_c00284{transform:matrix(0.348761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348761,0.000000,0.000000,0.250000,0,0);}
.mb9_c00284{transform:matrix(0.348765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348765,0.000000,0.000000,0.250000,0,0);}
.mbd_c00284{transform:matrix(0.352586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352586,0.000000,0.000000,0.250000,0,0);}
.m52_c00284{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m84_c00284{transform:matrix(0.359071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359071,0.000000,0.000000,0.250000,0,0);}
.m2e_c00284{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m8e_c00284{transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);}
.ma5_c00284{transform:matrix(0.368363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368363,0.000000,0.000000,0.250000,0,0);}
.mb6_c00284{transform:matrix(0.373079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373079,0.000000,0.000000,0.250000,0,0);}
.m34_c00284{transform:matrix(0.378961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378961,0.000000,0.000000,0.250000,0,0);}
.m94_c00284{transform:matrix(0.381943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381943,0.000000,0.000000,0.250000,0,0);}
.m7d_c00284{transform:matrix(0.392386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392386,0.000000,0.000000,0.250000,0,0);}
.mf_c00284{transform:matrix(0.394170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394170,0.000000,0.000000,0.250000,0,0);}
.m21_c00284{transform:matrix(0.396487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396487,0.000000,0.000000,0.250000,0,0);}
.mc2_c00284{transform:matrix(0.407787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407787,0.000000,0.000000,0.250000,0,0);}
.m63_c00284{transform:matrix(0.423078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423078,0.000000,0.000000,0.250000,0,0);}
.v0_c00284{vertical-align:0.000000px;}
.ls8_c00284{letter-spacing:-2.744280px;}
.lsa_c00284{letter-spacing:-0.893851px;}
.ls5_c00284{letter-spacing:0.000000px;}
.lsd_c00284{letter-spacing:1.254528px;}
.ls0_c00284{letter-spacing:1.819066px;}
.ls13_c00284{letter-spacing:1.873951px;}
.lse_c00284{letter-spacing:2.744280px;}
.ls11_c00284{letter-spacing:2.916778px;}
.ls10_c00284{letter-spacing:3.120638px;}
.ls3_c00284{letter-spacing:3.355862px;}
.ls9_c00284{letter-spacing:3.387226px;}
.lsf_c00284{letter-spacing:3.524400px;}
.lsb_c00284{letter-spacing:3.724380px;}
.lsc_c00284{letter-spacing:3.889037px;}
.ls12_c00284{letter-spacing:3.912559px;}
.ls7_c00284{letter-spacing:3.920400px;}
.ls6_c00284{letter-spacing:4.197610px;}
.ls2_c00284{letter-spacing:8.311248px;}
.ls1_c00284{letter-spacing:9.722592px;}
.ls4_c00284{letter-spacing:12.545280px;}
.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:-19.602000px;}
.ws1_c00284{word-spacing:-18.708149px;}
.ws2_c00284{word-spacing:0.000000px;}
._16_c00284{margin-left:-17.406972px;}
._f_c00284{margin-left:-11.525580px;}
._b_c00284{margin-left:-5.645376px;}
._12_c00284{width:1.301573px;}
._c_c00284{width:3.607560px;}
._0_c00284{width:5.174928px;}
._d_c00284{width:6.351840px;}
._1_c00284{width:9.173736px;}
._14_c00284{width:10.482912px;}
._2_c00284{width:11.760408px;}
._9_c00284{width:15.681600px;}
._3_c00284{width:21.798216px;}
._7_c00284{width:22.894740px;}
._13_c00284{width:24.541704px;}
._4_c00284{width:26.187480px;}
._6_c00284{width:27.990468px;}
._e_c00284{width:29.505960px;}
._a_c00284{width:30.610800px;}
._8_c00284{width:32.539320px;}
._15_c00284{width:34.480512px;}
._11_c00284{width:37.065600px;}
._10_c00284{width:38.907000px;}
._5_c00284{width:44.144496px;}
.fc0_c00284{color:transparent;}
.fs0_c00284{font-size:22.176000px;}
.fs5_c00284{font-size:27.720000px;}
.fs2_c00284{font-size:38.808000px;}
.fs9_c00284{font-size:39.204000px;}
.fs3_c00284{font-size:50.688000px;}
.fsa_c00284{font-size:70.488000px;}
.fs8_c00284{font-size:71.280000px;}
.fs7_c00284{font-size:72.864000px;}
.fs4_c00284{font-size:78.408000px;}
.fs6_c00284{font-size:78.804000px;}
.fs1_c00284{font-size:83.952198px;}
.y0_c00284{bottom:0.000000px;}
.y2_c00284{bottom:18.801135px;}
.y1_c00284{bottom:76.500000px;}
.y1e_c00284{bottom:136.056735px;}
.y1d_c00284{bottom:165.632985px;}
.y1c_c00284{bottom:198.426735px;}
.y1b_c00284{bottom:231.571935px;}
.y1a_c00284{bottom:249.748335px;}
.y19_c00284{bottom:264.360735px;}
.y18_c00284{bottom:297.500985px;}
.y17_c00284{bottom:329.576985px;}
.y16_c00284{bottom:362.722185px;}
.y15_c00284{bottom:396.936585px;}
.y14_c00284{bottom:430.086735px;}
.y13_c00284{bottom:493.882335px;}
.y12_c00284{bottom:527.022585px;}
.y11_c00284{bottom:559.103535px;}
.y10_c00284{bottom:591.892335px;}
.yf_c00284{bottom:623.963385px;}
.ye_c00284{bottom:656.039385px;}
.yd_c00284{bottom:688.120335px;}
.yc_c00284{bottom:720.191385px;}
.yb_c00284{bottom:752.623785px;}
.ya_c00284{bottom:786.130335px;}
.y9_c00284{bottom:801.450585px;}
.y8_c00284{bottom:819.270585px;}
.y7_c00284{bottom:883.422585px;}
.y6_c00284{bottom:915.859935px;}
.y5_c00284{bottom:1027.408185px;}
.y4_c00284{bottom:1058.419935px;}
.y3_c00284{bottom:1075.165785px;}
.h2_c00284{height:23.128875px;}
.h7_c00284{height:28.911094px;}
.h9_c00284{height:38.476582px;}
.h4_c00284{height:40.475531px;}
.h5_c00284{height:52.866000px;}
.ha_c00284{height:69.180117px;}
.h6_c00284{height:76.953164px;}
.h8_c00284{height:77.341816px;}
.h3_c00284{height:82.394491px;}
.h1_c00284{height:1110.000000px;}
.h0_c00284{height:1263.000000px;}
.w1_c00284{width:763.500000px;}
.w0_c00284{width:892.500000px;}
.x0_c00284{left:0.000000px;}
.x1_c00284{left:64.500000px;}
.x11_c00284{left:70.102950px;}
.x5_c00284{left:71.172150px;}
.x6c_c00284{left:72.271050px;}
.x60_c00284{left:74.117400px;}
.x61_c00284{left:84.670800px;}
.x24_c00284{left:92.061150px;}
.x3b_c00284{left:103.238250px;}
.x70_c00284{left:104.787600px;}
.x6_c00284{left:114.202500px;}
.x62_c00284{left:118.419900px;}
.x12_c00284{left:125.899350px;}
.x5c_c00284{left:128.112000px;}
.x46_c00284{left:136.274550px;}
.x69_c00284{left:137.601150px;}
.x35_c00284{left:147.877350px;}
.x4_c00284{left:153.163950px;}
.x3e_c00284{left:158.490150px;}
.x13_c00284{left:159.678150px;}
.x2c_c00284{left:169.662300px;}
.x47_c00284{left:170.731500px;}
.x25_c00284{left:181.245300px;}
.x14_c00284{left:192.130350px;}
.x3c_c00284{left:193.521300px;}
.x71_c00284{left:202.297650px;}
.x26_c00284{left:203.381700px;}
.x2d_c00284{left:215.251800px;}
.x7_c00284{left:225.003300px;}
.x52_c00284{left:226.315050px;}
.x3d_c00284{left:235.086450px;}
.x27_c00284{left:236.314050px;}
.x5d_c00284{left:237.675300px;}
.x2e_c00284{left:245.778450px;}
.x58_c00284{left:246.882300px;}
.x15_c00284{left:257.450550px;}
.x48_c00284{left:259.113750px;}
.x41_c00284{left:269.459250px;}
.x16_c00284{left:271.147200px;}
.x2f_c00284{left:280.022550px;}
.x4d_c00284{left:281.215500px;}
.x53_c00284{left:292.234200px;}
.x17_c00284{left:301.376850px;}
.x28_c00284{left:302.599500px;}
.x6a_c00284{left:303.940950px;}
.x72_c00284{left:306.034800px;}
.x42_c00284{left:314.222100px;}
.x8_c00284{left:324.339900px;}
.x4e_c00284{left:325.735800px;}
.x18_c00284{left:335.759550px;}
.x5e_c00284{left:337.091100px;}
.x6d_c00284{left:346.248600px;}
.x9_c00284{left:347.426700px;}
.x54_c00284{left:348.515700px;}
.x63_c00284{left:358.564200px;}
.x30_c00284{left:360.044250px;}
.x36_c00284{left:368.281050px;}
.x5f_c00284{left:369.582900px;}
.xa_c00284{left:380.284800px;}
.x31_c00284{left:390.635250px;}
.xb_c00284{left:400.812450px;}
.x19_c00284{left:402.035100px;}
.x1a_c00284{left:412.539000px;}
.x66_c00284{left:416.182200px;}
.x43_c00284{left:425.181300px;}
.x1b_c00284{left:435.155550px;}
.x67_c00284{left:436.893000px;}
.x4f_c00284{left:437.927550px;}
.x49_c00284{left:446.887050px;}
.x37_c00284{left:455.698050px;}
.x1c_c00284{left:457.257300px;}
.x64_c00284{left:458.331450px;}
.x3_c00284{left:464.459550px;}
.x32_c00284{left:467.058300px;}
.x4a_c00284{left:468.978900px;}
.x1d_c00284{left:490.343100px;}
.x55_c00284{left:491.417250px;}
.x29_c00284{left:500.658900px;}
.xc_c00284{left:501.767700px;}
.x65_c00284{left:511.682550px;}
.x6f_c00284{left:513.231900px;}
.x3f_c00284{left:522.854700px;}
.x59_c00284{left:523.923900px;}
.x68_c00284{left:525.141600px;}
.x4b_c00284{left:533.660550px;}
.x1e_c00284{left:534.947550px;}
.x50_c00284{left:544.827750px;}
.x38_c00284{left:545.971200px;}
.x73_c00284{left:555.044550px;}
.x40_c00284{left:556.673100px;}
.xd_c00284{left:567.082950px;}
.x1f_c00284{left:568.127400px;}
.x20_c00284{left:576.874050px;}
.xe_c00284{left:578.433300px;}
.x5a_c00284{left:587.922450px;}
.x33_c00284{left:589.140150px;}
.x2a_c00284{left:600.584550px;}
.xf_c00284{left:610.831050px;}
.x56_c00284{left:612.291300px;}
.x21_c00284{left:621.943800px;}
.x44_c00284{left:623.349600px;}
.x23_c00284{left:632.724900px;}
.x45_c00284{left:644.035650px;}
.x57_c00284{left:645.090000px;}
.x2_c00284{left:654.321750px;}
.x6e_c00284{left:655.782000px;}
.x2b_c00284{left:665.904750px;}
.x39_c00284{left:676.497750px;}
.x6b_c00284{left:677.502600px;}
.x34_c00284{left:686.600700px;}
.x51_c00284{left:688.555950px;}
.x10_c00284{left:698.530200px;}
.x22_c00284{left:709.623150px;}
.x3a_c00284{left:719.077650px;}
.x4c_c00284{left:720.983400px;}
.x5b_c00284{left:732.388200px;}
@media print{
.v0_c00284{vertical-align:0.000000pt;}
.ls8_c00284{letter-spacing:-2.439360pt;}
.lsa_c00284{letter-spacing:-0.794534pt;}
.ls5_c00284{letter-spacing:0.000000pt;}
.lsd_c00284{letter-spacing:1.115136pt;}
.ls0_c00284{letter-spacing:1.616947pt;}
.ls13_c00284{letter-spacing:1.665734pt;}
.lse_c00284{letter-spacing:2.439360pt;}
.ls11_c00284{letter-spacing:2.592691pt;}
.ls10_c00284{letter-spacing:2.773901pt;}
.ls3_c00284{letter-spacing:2.982989pt;}
.ls9_c00284{letter-spacing:3.010867pt;}
.lsf_c00284{letter-spacing:3.132800pt;}
.lsb_c00284{letter-spacing:3.310560pt;}
.lsc_c00284{letter-spacing:3.456922pt;}
.ls12_c00284{letter-spacing:3.477830pt;}
.ls7_c00284{letter-spacing:3.484800pt;}
.ls6_c00284{letter-spacing:3.731209pt;}
.ls2_c00284{letter-spacing:7.387776pt;}
.ls1_c00284{letter-spacing:8.642304pt;}
.ls4_c00284{letter-spacing:11.151360pt;}
.ws0_c00284{word-spacing:-17.424000pt;}
.ws1_c00284{word-spacing:-16.629466pt;}
.ws2_c00284{word-spacing:0.000000pt;}
._16_c00284{margin-left:-15.472864pt;}
._f_c00284{margin-left:-10.244960pt;}
._b_c00284{margin-left:-5.018112pt;}
._12_c00284{width:1.156954pt;}
._c_c00284{width:3.206720pt;}
._0_c00284{width:4.599936pt;}
._d_c00284{width:5.646080pt;}
._1_c00284{width:8.154432pt;}
._14_c00284{width:9.318144pt;}
._2_c00284{width:10.453696pt;}
._9_c00284{width:13.939200pt;}
._3_c00284{width:19.376192pt;}
._7_c00284{width:20.350880pt;}
._13_c00284{width:21.814848pt;}
._4_c00284{width:23.277760pt;}
._6_c00284{width:24.880416pt;}
._e_c00284{width:26.227520pt;}
._a_c00284{width:27.209600pt;}
._8_c00284{width:28.923840pt;}
._15_c00284{width:30.649344pt;}
._11_c00284{width:32.947200pt;}
._10_c00284{width:34.584000pt;}
._5_c00284{width:39.239552pt;}
.fs0_c00284{font-size:19.712000pt;}
.fs5_c00284{font-size:24.640000pt;}
.fs2_c00284{font-size:34.496000pt;}
.fs9_c00284{font-size:34.848000pt;}
.fs3_c00284{font-size:45.056000pt;}
.fsa_c00284{font-size:62.656000pt;}
.fs8_c00284{font-size:63.360000pt;}
.fs7_c00284{font-size:64.768000pt;}
.fs4_c00284{font-size:69.696000pt;}
.fs6_c00284{font-size:70.048000pt;}
.fs1_c00284{font-size:74.624176pt;}
.y0_c00284{bottom:0.000000pt;}
.y2_c00284{bottom:16.712120pt;}
.y1_c00284{bottom:68.000000pt;}
.y1e_c00284{bottom:120.939320pt;}
.y1d_c00284{bottom:147.229320pt;}
.y1c_c00284{bottom:176.379320pt;}
.y1b_c00284{bottom:205.841720pt;}
.y1a_c00284{bottom:221.998520pt;}
.y19_c00284{bottom:234.987320pt;}
.y18_c00284{bottom:264.445320pt;}
.y17_c00284{bottom:292.957320pt;}
.y16_c00284{bottom:322.419720pt;}
.y15_c00284{bottom:352.832520pt;}
.y14_c00284{bottom:382.299320pt;}
.y13_c00284{bottom:439.006520pt;}
.y12_c00284{bottom:468.464520pt;}
.y11_c00284{bottom:496.980920pt;}
.y10_c00284{bottom:526.126520pt;}
.yf_c00284{bottom:554.634120pt;}
.ye_c00284{bottom:583.146120pt;}
.yd_c00284{bottom:611.662520pt;}
.yc_c00284{bottom:640.170120pt;}
.yb_c00284{bottom:668.998920pt;}
.ya_c00284{bottom:698.782520pt;}
.y9_c00284{bottom:712.400520pt;}
.y8_c00284{bottom:728.240520pt;}
.y7_c00284{bottom:785.264520pt;}
.y6_c00284{bottom:814.097720pt;}
.y5_c00284{bottom:913.251720pt;}
.y4_c00284{bottom:940.817720pt;}
.y3_c00284{bottom:955.702920pt;}
.h2_c00284{height:20.559000pt;}
.h7_c00284{height:25.698750pt;}
.h9_c00284{height:34.201406pt;}
.h4_c00284{height:35.978250pt;}
.h5_c00284{height:46.992000pt;}
.ha_c00284{height:61.493438pt;}
.h6_c00284{height:68.402813pt;}
.h8_c00284{height:68.748281pt;}
.h3_c00284{height:73.239548pt;}
.h1_c00284{height:986.666667pt;}
.h0_c00284{height:1122.666667pt;}
.w1_c00284{width:678.666667pt;}
.w0_c00284{width:793.333333pt;}
.x0_c00284{left:0.000000pt;}
.x1_c00284{left:57.333333pt;}
.x11_c00284{left:62.313733pt;}
.x5_c00284{left:63.264133pt;}
.x6c_c00284{left:64.240933pt;}
.x60_c00284{left:65.882133pt;}
.x61_c00284{left:75.262933pt;}
.x24_c00284{left:81.832133pt;}
.x3b_c00284{left:91.767333pt;}
.x70_c00284{left:93.144533pt;}
.x6_c00284{left:101.513333pt;}
.x62_c00284{left:105.262133pt;}
.x12_c00284{left:111.910533pt;}
.x5c_c00284{left:113.877333pt;}
.x46_c00284{left:121.132933pt;}
.x69_c00284{left:122.312133pt;}
.x35_c00284{left:131.446533pt;}
.x4_c00284{left:136.145733pt;}
.x3e_c00284{left:140.880133pt;}
.x13_c00284{left:141.936133pt;}
.x2c_c00284{left:150.810933pt;}
.x47_c00284{left:151.761333pt;}
.x25_c00284{left:161.106933pt;}
.x14_c00284{left:170.782533pt;}
.x3c_c00284{left:172.018933pt;}
.x71_c00284{left:179.820133pt;}
.x26_c00284{left:180.783733pt;}
.x2d_c00284{left:191.334933pt;}
.x7_c00284{left:200.002933pt;}
.x52_c00284{left:201.168933pt;}
.x3d_c00284{left:208.965733pt;}
.x27_c00284{left:210.056933pt;}
.x5d_c00284{left:211.266933pt;}
.x2e_c00284{left:218.469733pt;}
.x58_c00284{left:219.450933pt;}
.x15_c00284{left:228.844933pt;}
.x48_c00284{left:230.323333pt;}
.x41_c00284{left:239.519333pt;}
.x16_c00284{left:241.019733pt;}
.x2f_c00284{left:248.908933pt;}
.x4d_c00284{left:249.969333pt;}
.x53_c00284{left:259.763733pt;}
.x17_c00284{left:267.890533pt;}
.x28_c00284{left:268.977333pt;}
.x6a_c00284{left:270.169733pt;}
.x72_c00284{left:272.030933pt;}
.x42_c00284{left:279.308533pt;}
.x8_c00284{left:288.302133pt;}
.x4e_c00284{left:289.542933pt;}
.x18_c00284{left:298.452933pt;}
.x5e_c00284{left:299.636533pt;}
.x6d_c00284{left:307.776533pt;}
.x9_c00284{left:308.823733pt;}
.x54_c00284{left:309.791733pt;}
.x63_c00284{left:318.723733pt;}
.x30_c00284{left:320.039333pt;}
.x36_c00284{left:327.360933pt;}
.x5f_c00284{left:328.518133pt;}
.xa_c00284{left:338.030933pt;}
.x31_c00284{left:347.231333pt;}
.xb_c00284{left:356.277733pt;}
.x19_c00284{left:357.364533pt;}
.x1a_c00284{left:366.701333pt;}
.x66_c00284{left:369.939733pt;}
.x43_c00284{left:377.938933pt;}
.x1b_c00284{left:386.804933pt;}
.x67_c00284{left:388.349333pt;}
.x4f_c00284{left:389.268933pt;}
.x49_c00284{left:397.232933pt;}
.x37_c00284{left:405.064933pt;}
.x1c_c00284{left:406.450933pt;}
.x64_c00284{left:407.405733pt;}
.x3_c00284{left:412.852933pt;}
.x32_c00284{left:415.162933pt;}
.x4a_c00284{left:416.870133pt;}
.x1d_c00284{left:435.860533pt;}
.x55_c00284{left:436.815333pt;}
.x29_c00284{left:445.030133pt;}
.xc_c00284{left:446.015733pt;}
.x65_c00284{left:454.828933pt;}
.x6f_c00284{left:456.206133pt;}
.x3f_c00284{left:464.759733pt;}
.x59_c00284{left:465.710133pt;}
.x68_c00284{left:466.792533pt;}
.x4b_c00284{left:474.364933pt;}
.x1e_c00284{left:475.508933pt;}
.x50_c00284{left:484.291333pt;}
.x38_c00284{left:485.307733pt;}
.x73_c00284{left:493.372933pt;}
.x40_c00284{left:494.820533pt;}
.xd_c00284{left:504.073733pt;}
.x1f_c00284{left:505.002133pt;}
.x20_c00284{left:512.776933pt;}
.xe_c00284{left:514.162933pt;}
.x5a_c00284{left:522.597733pt;}
.x33_c00284{left:523.680133pt;}
.x2a_c00284{left:533.852933pt;}
.xf_c00284{left:542.960933pt;}
.x56_c00284{left:544.258933pt;}
.x21_c00284{left:552.838933pt;}
.x44_c00284{left:554.088533pt;}
.x23_c00284{left:562.422133pt;}
.x45_c00284{left:572.476133pt;}
.x57_c00284{left:573.413333pt;}
.x2_c00284{left:581.619333pt;}
.x6e_c00284{left:582.917333pt;}
.x2b_c00284{left:591.915333pt;}
.x39_c00284{left:601.331333pt;}
.x6b_c00284{left:602.224533pt;}
.x34_c00284{left:610.311733pt;}
.x51_c00284{left:612.049733pt;}
.x10_c00284{left:620.915733pt;}
.x22_c00284{left:630.776133pt;}
.x3a_c00284{left:639.180133pt;}
.x4c_c00284{left:640.874133pt;}
.x5b_c00284{left:651.011733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2ce695c3b2cf3a788cacec18.woff2')format("woff");}.ff1_c00285{font-family:ff1_c00285;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00285;src:url('chunks/assets/font_b0fc3eee0de430cbc3c9a7b1.woff2')format("woff");}.ff2_c00285{font-family:ff2_c00285;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00285;src:url('chunks/assets/font_53e26d58e12558667e4fb51c.woff2')format("woff");}.ff3_c00285{font-family:ff3_c00285;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m65_c00285{transform:matrix(0.092858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092858,0.000000,0.000000,0.250000,0,0);}
.m7_c00285{transform:matrix(0.096428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096428,0.000000,0.000000,0.250000,0,0);}
.m7e_c00285{transform:matrix(0.096465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096465,0.000000,0.000000,0.250000,0,0);}
.m99_c00285{transform:matrix(0.129134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129134,0.000000,0.000000,0.250000,0,0);}
.m3a_c00285{transform:matrix(0.139895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139895,0.000000,0.000000,0.250000,0,0);}
.m3d_c00285{transform:matrix(0.152280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152280,0.000000,0.000000,0.250000,0,0);}
.mac_c00285{transform:matrix(0.155406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155406,0.000000,0.000000,0.250000,0,0);}
.m9_c00285{transform:matrix(0.157142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157142,0.000000,0.000000,0.250000,0,0);}
.m64_c00285{transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);}
.mc_c00285{transform:matrix(0.189093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189093,0.000000,0.000000,0.250000,0,0);}
.mad_c00285{transform:matrix(0.189188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189188,0.000000,0.000000,0.250000,0,0);}
.m63_c00285{transform:matrix(0.189285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189285,0.000000,0.000000,0.250000,0,0);}
.m51_c00285{transform:matrix(0.198530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198530,0.000000,0.000000,0.250000,0,0);}
.m79_c00285{transform:matrix(0.201513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201513,0.000000,0.000000,0.250000,0,0);}
.m1c_c00285{transform:matrix(0.201718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201718,0.000000,0.000000,0.250000,0,0);}
.m3_c00285{transform:matrix(0.203755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203755,0.000000,0.000000,0.250000,0,0);}
.m56_c00285{transform:matrix(0.204861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204861,0.000000,0.000000,0.250000,0,0);}
.m6_c00285{transform:matrix(0.208929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208929,0.000000,0.000000,0.250000,0,0);}
.mab_c00285{transform:matrix(0.209460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209460,0.000000,0.000000,0.250000,0,0);}
.m8_c00285{transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);}
.m62_c00285{transform:matrix(0.215476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215476,0.000000,0.000000,0.250000,0,0);}
.m3f_c00285{transform:matrix(0.218264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218264,0.000000,0.000000,0.250000,0,0);}
.m16_c00285{transform:matrix(0.220292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220292,0.000000,0.000000,0.250000,0,0);}
.mb8_c00285{transform:matrix(0.220377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220377,0.000000,0.000000,0.250000,0,0);}
.m50_c00285{transform:matrix(0.226890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226890,0.000000,0.000000,0.250000,0,0);}
.m45_c00285{transform:matrix(0.227167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227167,0.000000,0.000000,0.250000,0,0);}
.m9f_c00285{transform:matrix(0.237926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237926,0.000000,0.000000,0.250000,0,0);}
.m18_c00285{transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);}
.m0_c00285{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00285{transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);}
.m29_c00285{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.m5c_c00285{transform:matrix(0.253545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253545,0.000000,0.000000,0.250000,0,0);}
.m68_c00285{transform:matrix(0.254208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254208,0.000000,0.000000,0.250000,0,0);}
.maa_c00285{transform:matrix(0.254680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254680,0.000000,0.000000,0.250000,0,0);}
.m3b_c00285{transform:matrix(0.255468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255468,0.000000,0.000000,0.250000,0,0);}
.mb_c00285{transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);}
.m2c_c00285{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m9d_c00285{transform:matrix(0.259057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259057,0.000000,0.000000,0.250000,0,0);}
.m58_c00285{transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);}
.mc1_c00285{transform:matrix(0.260152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260152,0.000000,0.000000,0.250000,0,0);}
.ma0_c00285{transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);}
.m28_c00285{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.mf_c00285{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.m60_c00285{transform:matrix(0.262649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262649,0.000000,0.000000,0.250000,0,0);}
.m4d_c00285{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m1f_c00285{transform:matrix(0.264056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264056,0.000000,0.000000,0.250000,0,0);}
.m55_c00285{transform:matrix(0.264650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264650,0.000000,0.000000,0.250000,0,0);}
.m82_c00285{transform:matrix(0.265371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265371,0.000000,0.000000,0.250000,0,0);}
.m32_c00285{transform:matrix(0.266097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266097,0.000000,0.000000,0.250000,0,0);}
.m2e_c00285{transform:matrix(0.266174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266174,0.000000,0.000000,0.250000,0,0);}
.m33_c00285{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.ma8_c00285{transform:matrix(0.267878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267878,0.000000,0.000000,0.250000,0,0);}
.m6b_c00285{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.mba_c00285{transform:matrix(0.268257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268257,0.000000,0.000000,0.250000,0,0);}
.mb7_c00285{transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);}
.ma_c00285{transform:matrix(0.269269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269269,0.000000,0.000000,0.250000,0,0);}
.mb2_c00285{transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);}
.ma5_c00285{transform:matrix(0.270287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270287,0.000000,0.000000,0.250000,0,0);}
.m38_c00285{transform:matrix(0.270329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270329,0.000000,0.000000,0.250000,0,0);}
.m6e_c00285{transform:matrix(0.272153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272153,0.000000,0.000000,0.250000,0,0);}
.m52_c00285{transform:matrix(0.272467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272467,0.000000,0.000000,0.250000,0,0);}
.m71_c00285{transform:matrix(0.273351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273351,0.000000,0.000000,0.250000,0,0);}
.m4e_c00285{transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);}
.m76_c00285{transform:matrix(0.274278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274278,0.000000,0.000000,0.250000,0,0);}
.mb5_c00285{transform:matrix(0.274321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274321,0.000000,0.000000,0.250000,0,0);}
.m92_c00285{transform:matrix(0.274708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274708,0.000000,0.000000,0.250000,0,0);}
.m10_c00285{transform:matrix(0.275537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275537,0.000000,0.000000,0.250000,0,0);}
.m23_c00285{transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);}
.ma9_c00285{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.ma4_c00285{transform:matrix(0.277905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277905,0.000000,0.000000,0.250000,0,0);}
.maf_c00285{transform:matrix(0.278227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278227,0.000000,0.000000,0.250000,0,0);}
.m1_c00285{transform:matrix(0.278445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278445,0.000000,0.000000,0.250000,0,0);}
.m47_c00285{transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);}
.me_c00285{transform:matrix(0.279629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279629,0.000000,0.000000,0.250000,0,0);}
.m94_c00285{transform:matrix(0.279677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279677,0.000000,0.000000,0.250000,0,0);}
.m5a_c00285{transform:matrix(0.279780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279780,0.000000,0.000000,0.250000,0,0);}
.m1e_c00285{transform:matrix(0.280329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280329,0.000000,0.000000,0.250000,0,0);}
.m3e_c00285{transform:matrix(0.280710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280710,0.000000,0.000000,0.250000,0,0);}
.mbb_c00285{transform:matrix(0.280996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280996,0.000000,0.000000,0.250000,0,0);}
.m48_c00285{transform:matrix(0.281018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281018,0.000000,0.000000,0.250000,0,0);}
.m25_c00285{transform:matrix(0.282165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282165,0.000000,0.000000,0.250000,0,0);}
.ma2_c00285{transform:matrix(0.282265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282265,0.000000,0.000000,0.250000,0,0);}
.m2b_c00285{transform:matrix(0.282501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282501,0.000000,0.000000,0.250000,0,0);}
.m1a_c00285{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m8f_c00285{transform:matrix(0.283617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283617,0.000000,0.000000,0.250000,0,0);}
.mb0_c00285{transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);}
.m73_c00285{transform:matrix(0.284924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284924,0.000000,0.000000,0.250000,0,0);}
.m5_c00285{transform:matrix(0.285098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285098,0.000000,0.000000,0.250000,0,0);}
.m43_c00285{transform:matrix(0.285189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285189,0.000000,0.000000,0.250000,0,0);}
.mb4_c00285{transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);}
.mc0_c00285{transform:matrix(0.285791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285791,0.000000,0.000000,0.250000,0,0);}
.m8b_c00285{transform:matrix(0.285882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285882,0.000000,0.000000,0.250000,0,0);}
.m2_c00285{transform:matrix(0.286021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286021,0.000000,0.000000,0.250000,0,0);}
.m7d_c00285{transform:matrix(0.286234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286234,0.000000,0.000000,0.250000,0,0);}
.m86_c00285{transform:matrix(0.286872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286872,0.000000,0.000000,0.250000,0,0);}
.m21_c00285{transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);}
.m97_c00285{transform:matrix(0.287735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287735,0.000000,0.000000,0.250000,0,0);}
.m91_c00285{transform:matrix(0.287763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287763,0.000000,0.000000,0.250000,0,0);}
.m88_c00285{transform:matrix(0.287874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287874,0.000000,0.000000,0.250000,0,0);}
.m61_c00285{transform:matrix(0.289100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289100,0.000000,0.000000,0.250000,0,0);}
.m7b_c00285{transform:matrix(0.289320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289320,0.000000,0.000000,0.250000,0,0);}
.m26_c00285{transform:matrix(0.289520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289520,0.000000,0.000000,0.250000,0,0);}
.m2a_c00285{transform:matrix(0.290045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290045,0.000000,0.000000,0.250000,0,0);}
.md_c00285{transform:matrix(0.290465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290465,0.000000,0.000000,0.250000,0,0);}
.m57_c00285{transform:matrix(0.291326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291326,0.000000,0.000000,0.250000,0,0);}
.m6f_c00285{transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);}
.m74_c00285{transform:matrix(0.291905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291905,0.000000,0.000000,0.250000,0,0);}
.m8c_c00285{transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);}
.mc2_c00285{transform:matrix(0.292643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292643,0.000000,0.000000,0.250000,0,0);}
.m89_c00285{transform:matrix(0.292661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292661,0.000000,0.000000,0.250000,0,0);}
.m5f_c00285{transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);}
.m3c_c00285{transform:matrix(0.295324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295324,0.000000,0.000000,0.250000,0,0);}
.m5d_c00285{transform:matrix(0.295385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295385,0.000000,0.000000,0.250000,0,0);}
.mb3_c00285{transform:matrix(0.295631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295631,0.000000,0.000000,0.250000,0,0);}
.m40_c00285{transform:matrix(0.296179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296179,0.000000,0.000000,0.250000,0,0);}
.ma3_c00285{transform:matrix(0.296195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296195,0.000000,0.000000,0.250000,0,0);}
.m24_c00285{transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);}
.m44_c00285{transform:matrix(0.296383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296383,0.000000,0.000000,0.250000,0,0);}
.m14_c00285{transform:matrix(0.296504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296504,0.000000,0.000000,0.250000,0,0);}
.m2f_c00285{transform:matrix(0.296872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296872,0.000000,0.000000,0.250000,0,0);}
.m6a_c00285{transform:matrix(0.297173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297173,0.000000,0.000000,0.250000,0,0);}
.m7c_c00285{transform:matrix(0.297370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297370,0.000000,0.000000,0.250000,0,0);}
.m66_c00285{transform:matrix(0.297432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297432,0.000000,0.000000,0.250000,0,0);}
.m7f_c00285{transform:matrix(0.297717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297717,0.000000,0.000000,0.250000,0,0);}
.ma6_c00285{transform:matrix(0.298105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298105,0.000000,0.000000,0.250000,0,0);}
.m1b_c00285{transform:matrix(0.298340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298340,0.000000,0.000000,0.250000,0,0);}
.m6d_c00285{transform:matrix(0.299713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299713,0.000000,0.000000,0.250000,0,0);}
.m77_c00285{transform:matrix(0.300360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300360,0.000000,0.000000,0.250000,0,0);}
.m36_c00285{transform:matrix(0.301023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301023,0.000000,0.000000,0.250000,0,0);}
.m90_c00285{transform:matrix(0.301666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301666,0.000000,0.000000,0.250000,0,0);}
.m93_c00285{transform:matrix(0.302013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302013,0.000000,0.000000,0.250000,0,0);}
.m8a_c00285{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m13_c00285{transform:matrix(0.303298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303298,0.000000,0.000000,0.250000,0,0);}
.m9e_c00285{transform:matrix(0.303446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303446,0.000000,0.000000,0.250000,0,0);}
.m27_c00285{transform:matrix(0.304108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304108,0.000000,0.000000,0.250000,0,0);}
.m53_c00285{transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);}
.m8d_c00285{transform:matrix(0.307179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307179,0.000000,0.000000,0.250000,0,0);}
.m6c_c00285{transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);}
.m46_c00285{transform:matrix(0.309027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309027,0.000000,0.000000,0.250000,0,0);}
.m69_c00285{transform:matrix(0.309545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309545,0.000000,0.000000,0.250000,0,0);}
.m11_c00285{transform:matrix(0.309830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309830,0.000000,0.000000,0.250000,0,0);}
.mbd_c00285{transform:matrix(0.310477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310477,0.000000,0.000000,0.250000,0,0);}
.m87_c00285{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.mc5_c00285{transform:matrix(0.313389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313389,0.000000,0.000000,0.250000,0,0);}
.m2d_c00285{transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);}
.mc4_c00285{transform:matrix(0.313921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313921,0.000000,0.000000,0.250000,0,0);}
.m81_c00285{transform:matrix(0.314313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314313,0.000000,0.000000,0.250000,0,0);}
.m80_c00285{transform:matrix(0.316214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316214,0.000000,0.000000,0.250000,0,0);}
.mae_c00285{transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);}
.m41_c00285{transform:matrix(0.317707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317707,0.000000,0.000000,0.250000,0,0);}
.ma7_c00285{transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);}
.m4c_c00285{transform:matrix(0.319477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319477,0.000000,0.000000,0.250000,0,0);}
.m5b_c00285{transform:matrix(0.321109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321109,0.000000,0.000000,0.250000,0,0);}
.m4_c00285{transform:matrix(0.321371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321371,0.000000,0.000000,0.250000,0,0);}
.m49_c00285{transform:matrix(0.322488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322488,0.000000,0.000000,0.250000,0,0);}
.m12_c00285{transform:matrix(0.322646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322646,0.000000,0.000000,0.250000,0,0);}
.mb6_c00285{transform:matrix(0.322773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322773,0.000000,0.000000,0.250000,0,0);}
.m54_c00285{transform:matrix(0.322941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322941,0.000000,0.000000,0.250000,0,0);}
.m85_c00285{transform:matrix(0.323357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323357,0.000000,0.000000,0.250000,0,0);}
.m20_c00285{transform:matrix(0.323503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323503,0.000000,0.000000,0.250000,0,0);}
.m72_c00285{transform:matrix(0.323720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323720,0.000000,0.000000,0.250000,0,0);}
.m78_c00285{transform:matrix(0.325487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325487,0.000000,0.000000,0.250000,0,0);}
.m9b_c00285{transform:matrix(0.325899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325899,0.000000,0.000000,0.250000,0,0);}
.m31_c00285{transform:matrix(0.326049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326049,0.000000,0.000000,0.250000,0,0);}
.m42_c00285{transform:matrix(0.326681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326681,0.000000,0.000000,0.250000,0,0);}
.m4f_c00285{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m4b_c00285{transform:matrix(0.328074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328074,0.000000,0.000000,0.250000,0,0);}
.mb9_c00285{transform:matrix(0.328705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328705,0.000000,0.000000,0.250000,0,0);}
.m30_c00285{transform:matrix(0.330299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330299,0.000000,0.000000,0.250000,0,0);}
.m8e_c00285{transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);}
.mbc_c00285{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m98_c00285{transform:matrix(0.333316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333316,0.000000,0.000000,0.250000,0,0);}
.m19_c00285{transform:matrix(0.334358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334358,0.000000,0.000000,0.250000,0,0);}
.mb1_c00285{transform:matrix(0.335078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335078,0.000000,0.000000,0.250000,0,0);}
.mbf_c00285{transform:matrix(0.335883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335883,0.000000,0.000000,0.250000,0,0);}
.m96_c00285{transform:matrix(0.336485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336485,0.000000,0.000000,0.250000,0,0);}
.mbe_c00285{transform:matrix(0.337090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337090,0.000000,0.000000,0.250000,0,0);}
.m39_c00285{transform:matrix(0.337660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337660,0.000000,0.000000,0.250000,0,0);}
.m83_c00285{transform:matrix(0.337771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337771,0.000000,0.000000,0.250000,0,0);}
.ma1_c00285{transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);}
.m22_c00285{transform:matrix(0.343060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343060,0.000000,0.000000,0.250000,0,0);}
.m5e_c00285{transform:matrix(0.343069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343069,0.000000,0.000000,0.250000,0,0);}
.m1d_c00285{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.mc3_c00285{transform:matrix(0.344194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344194,0.000000,0.000000,0.250000,0,0);}
.m35_c00285{transform:matrix(0.344526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344526,0.000000,0.000000,0.250000,0,0);}
.m4a_c00285{transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);}
.m70_c00285{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m9c_c00285{transform:matrix(0.350956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350956,0.000000,0.000000,0.250000,0,0);}
.m95_c00285{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m34_c00285{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);}
.m15_c00285{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m75_c00285{transform:matrix(0.361597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361597,0.000000,0.000000,0.250000,0,0);}
.m7a_c00285{transform:matrix(0.363237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363237,0.000000,0.000000,0.250000,0,0);}
.m67_c00285{transform:matrix(0.370888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370888,0.000000,0.000000,0.250000,0,0);}
.m84_c00285{transform:matrix(0.386579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386579,0.000000,0.000000,0.250000,0,0);}
.m59_c00285{transform:matrix(0.397003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397003,0.000000,0.000000,0.250000,0,0);}
.m17_c00285{transform:matrix(0.415523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415523,0.000000,0.000000,0.250000,0,0);}
.m37_c00285{transform:matrix(0.457726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457726,0.000000,0.000000,0.250000,0,0);}
.v0_c00285{vertical-align:0.000000px;}
.lsa_c00285{letter-spacing:-2.744280px;}
.ls17_c00285{letter-spacing:-2.320877px;}
.ls12_c00285{letter-spacing:-2.286900px;}
.lsd_c00285{letter-spacing:-0.981842px;}
.ls14_c00285{letter-spacing:-0.556697px;}
.ls19_c00285{letter-spacing:-0.478289px;}
.ls7_c00285{letter-spacing:0.000000px;}
.lsf_c00285{letter-spacing:0.070567px;}
.ls6_c00285{letter-spacing:0.533174px;}
.ls3_c00285{letter-spacing:0.705672px;}
.ls1f_c00285{letter-spacing:1.458389px;}
.ls10_c00285{letter-spacing:1.544400px;}
.ls1a_c00285{letter-spacing:1.685772px;}
.ls1c_c00285{letter-spacing:1.764180px;}
.ls0_c00285{letter-spacing:2.344399px;}
.ls4_c00285{letter-spacing:2.352240px;}
.lse_c00285{letter-spacing:2.485534px;}
.lsc_c00285{letter-spacing:2.504700px;}
.ls5_c00285{letter-spacing:3.261773px;}
.ls11_c00285{letter-spacing:3.267000px;}
.ls15_c00285{letter-spacing:3.269614px;}
.ls1d_c00285{letter-spacing:3.410748px;}
.ls1_c00285{letter-spacing:3.520519px;}
.ls1e_c00285{letter-spacing:3.603610px;}
.ls8_c00285{letter-spacing:3.801610px;}
.ls9_c00285{letter-spacing:3.920400px;}
.ls13_c00285{letter-spacing:4.009500px;}
.ls2_c00285{letter-spacing:20.855736px;}
.ls16_c00285{letter-spacing:48.470598px;}
.lsb_c00285{letter-spacing:49.896198px;}
.ls18_c00285{letter-spacing:51.321798px;}
.ls1b_c00285{letter-spacing:52.747398px;}
.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;}
}
.ws6_c00285{word-spacing:-22.863773px;}
.ws3_c00285{word-spacing:-22.087534px;}
.ws4_c00285{word-spacing:-19.602000px;}
.ws5_c00285{word-spacing:-19.045303px;}
.ws0_c00285{word-spacing:-14.867899px;}
.ws1_c00285{word-spacing:-11.541658px;}
.ws2_c00285{word-spacing:-7.762392px;}
.ws7_c00285{word-spacing:0.000000px;}
._11_c00285{margin-left:-10.976724px;}
._f_c00285{margin-left:-2.201126px;}
._a_c00285{width:3.043181px;}
._0_c00285{width:4.365900px;}
._2_c00285{width:5.451019px;}
._4_c00285{width:6.554909px;}
._6_c00285{width:7.683984px;}
._9_c00285{width:9.095328px;}
._1_c00285{width:10.977120px;}
._7_c00285{width:12.388464px;}
._d_c00285{width:17.171352px;}
._c_c00285{width:20.856528px;}
._5_c00285{width:22.111848px;}
._13_c00285{width:23.679216px;}
._8_c00285{width:26.031456px;}
._10_c00285{width:30.779100px;}
._b_c00285{width:32.461704px;}
._3_c00285{width:33.972048px;}
._12_c00285{width:35.082749px;}
._e_c00285{width:37.086984px;}
.fc0_c00285{color:transparent;}
.fs1_c00285{font-size:29.898000px;}
.fs6_c00285{font-size:30.888000px;}
.fse_c00285{font-size:44.748000px;}
.fs8_c00285{font-size:48.470598px;}
.fs3_c00285{font-size:49.896198px;}
.fs4_c00285{font-size:50.094000px;}
.fs9_c00285{font-size:51.321798px;}
.fsc_c00285{font-size:52.747398px;}
.fs5_c00285{font-size:65.340000px;}
.fsb_c00285{font-size:70.884000px;}
.fsd_c00285{font-size:72.072198px;}
.fs0_c00285{font-size:76.032198px;}
.fsa_c00285{font-size:77.220000px;}
.fs2_c00285{font-size:78.408000px;}
.fs7_c00285{font-size:80.190000px;}
.y0_c00285{bottom:0.000000px;}
.y1_c00285{bottom:76.500000px;}
.y1e_c00285{bottom:170.271135px;}
.y1d_c00285{bottom:189.160335px;}
.y1c_c00285{bottom:203.772735px;}
.y1b_c00285{bottom:237.274335px;}
.y1a_c00285{bottom:270.063135px;}
.y19_c00285{bottom:302.490585px;}
.y18_c00285{bottom:334.927935px;}
.y17_c00285{bottom:399.074985px;}
.y16_c00285{bottom:431.155935px;}
.y15_c00285{bottom:463.231935px;}
.y14_c00285{bottom:496.020735px;}
.y13_c00285{bottom:527.740335px;}
.y12_c00285{bottom:560.880585px;}
.y11_c00285{bottom:594.387135px;}
.y10_c00285{bottom:626.458185px;}
.yf_c00285{bottom:658.539135px;}
.ye_c00285{bottom:690.971535px;}
.yd_c00285{bottom:754.767135px;}
.yb_c00285{bottom:787.199535px;}
.ya_c00285{bottom:787.205475px;}
.yc_c00285{bottom:792.189135px;}
.y9_c00285{bottom:819.626985px;}
.y8_c00285{bottom:852.059385px;}
.y7_c00285{bottom:884.848185px;}
.y6_c00285{bottom:910.152585px;}
.y5_c00285{bottom:917.636985px;}
.y4_c00285{bottom:918.354735px;}
.y3_c00285{bottom:1070.888985px;}
.y2_c00285{bottom:1073.740185px;}
.h3_c00285{height:29.343252px;}
.h9_c00285{height:32.215219px;}
.hb_c00285{height:32.281418px;}
.h5_c00285{height:33.230868px;}
.hc_c00285{height:34.180317px;}
.hd_c00285{height:35.129767px;}
.hf_c00285{height:43.917715px;}
.h6_c00285{height:49.164521px;}
.h8_c00285{height:68.147578px;}
.h2_c00285{height:74.621444px;}
.he_c00285{height:75.169050px;}
.h4_c00285{height:76.953164px;}
.ha_c00285{height:78.702100px;}
.h7_c00285{height:79.299207px;}
.h1_c00285{height:1110.000000px;}
.h0_c00285{height:1263.000000px;}
.w1_c00285{width:763.500000px;}
.w0_c00285{width:892.500000px;}
.x0_c00285{left:0.000000px;}
.x1_c00285{left:64.500000px;}
.x1b_c00285{left:68.806035px;}
.x5_c00285{left:70.518735px;}
.x65_c00285{left:71.983935px;}
.x1c_c00285{left:81.507735px;}
.x1d_c00285{left:92.437335px;}
.x5b_c00285{left:101.743335px;}
.x4e_c00285{left:103.406535px;}
.x3d_c00285{left:105.094485px;}
.x1e_c00285{left:113.158035px;}
.x53_c00285{left:114.776685px;}
.x3e_c00285{left:125.176635px;}
.x33_c00285{left:136.175535px;}
.x49_c00285{left:147.179385px;}
.x13_c00285{left:148.614885px;}
.x6_c00285{left:158.297085px;}
.x66_c00285{left:168.404985px;}
.x34_c00285{left:169.662285px;}
.x7_c00285{left:181.017585px;}
.x64_c00285{left:182.789685px;}
.x2b_c00285{left:190.922535px;}
.x1f_c00285{left:192.115485px;}
.x4a_c00285{left:201.228435px;}
.x3f_c00285{left:203.163885px;}
.x35_c00285{left:214.048935px;}
.x4f_c00285{left:224.552835px;}
.x5f_c00285{left:225.953685px;}
.x20_c00285{left:235.838835px;}
.x2c_c00285{left:245.743785px;}
.x67_c00285{left:247.713885px;}
.x36_c00285{left:257.341635px;}
.x4b_c00285{left:258.386085px;}
.x40_c00285{left:262.474785px;}
.x68_c00285{left:267.830685px;}
.x8_c00285{left:269.434485px;}
.x2d_c00285{left:280.111635px;}
.x14_c00285{left:290.224485px;}
.x62_c00285{left:291.877785px;}
.x54_c00285{left:302.455935px;}
.x6a_c00285{left:303.648885px;}
.x6c_c00285{left:307.257435px;}
.x56_c00285{left:313.103385px;}
.x37_c00285{left:314.340885px;}
.x47_c00285{left:324.320085px;}
.x21_c00285{left:325.592235px;}
.x22_c00285{left:333.784485px;}
.x60_c00285{left:335.744685px;}
.x9_c00285{left:347.357385px;}
.x2e_c00285{left:357.841485px;}
.x6b_c00285{left:366.731685px;}
.x23_c00285{left:368.177085px;}
.x50_c00285{left:379.225485px;}
.x59_c00285{left:380.274885px;}
.xa_c00285{left:390.130335px;}
.xb_c00285{left:401.178735px;}
.x4c_c00285{left:403.713135px;}
.x5a_c00285{left:412.360785px;}
.x15_c00285{left:413.380485px;}
.x24_c00285{left:422.518185px;}
.x4d_c00285{left:424.339785px;}
.x41_c00285{left:434.417985px;}
.x2f_c00285{left:444.619935px;}
.xc_c00285{left:446.080185px;}
.x5c_c00285{left:447.906735px;}
.x25_c00285{left:455.668335px;}
.xd_c00285{left:467.256285px;}
.x42_c00285{left:478.304685px;}
.x16_c00285{left:479.363985px;}
.x17_c00285{left:489.551085px;}
.x57_c00285{left:497.753235px;}
.xe_c00285{left:500.193585px;}
.x51_c00285{left:511.464735px;}
.x18_c00285{left:522.498285px;}
.x26_c00285{left:533.487285px;}
.x55_c00285{left:543.016035px;}
.x43_c00285{left:544.872285px;}
.x27_c00285{left:555.683085px;}
.x19_c00285{left:565.716735px;}
.x38_c00285{left:567.701685px;}
.x63_c00285{left:576.473085px;}
.xf_c00285{left:577.750185px;}
.x61_c00285{left:588.437235px;}
.x39_c00285{left:590.877585px;}
.x44_c00285{left:596.832435px;}
.x28_c00285{left:599.257935px;}
.x48_c00285{left:600.475635px;}
.x30_c00285{left:610.538985px;}
.x5d_c00285{left:611.543835px;}
.x10_c00285{left:620.691435px;}
.x3a_c00285{left:621.735885px;}
.x45_c00285{left:632.081385px;}
.x31_c00285{left:642.412035px;}
.x12_c00285{left:653.683185px;}
.x2_c00285{left:654.702885px;}
.x3_c00285{left:666.201735px;}
.x3b_c00285{left:667.528335px;}
.x11_c00285{left:676.562085px;}
.x69_c00285{left:686.244285px;}
.x1a_c00285{left:687.466935px;}
.x4_c00285{left:689.342985px;}
.x29_c00285{left:698.554935px;}
.x52_c00285{left:700.020135px;}
.x46_c00285{left:708.712335px;}
.x32_c00285{left:709.885485px;}
.x3c_c00285{left:711.642735px;}
.x2a_c00285{left:720.933885px;}
.x58_c00285{left:731.318985px;}
.x5e_c00285{left:742.367385px;}
@media print{
.v0_c00285{vertical-align:0.000000pt;}
.lsa_c00285{letter-spacing:-2.439360pt;}
.ls17_c00285{letter-spacing:-2.063002pt;}
.ls12_c00285{letter-spacing:-2.032800pt;}
.lsd_c00285{letter-spacing:-0.872749pt;}
.ls14_c00285{letter-spacing:-0.494842pt;}
.ls19_c00285{letter-spacing:-0.425146pt;}
.ls7_c00285{letter-spacing:0.000000pt;}
.lsf_c00285{letter-spacing:0.062726pt;}
.ls6_c00285{letter-spacing:0.473933pt;}
.ls3_c00285{letter-spacing:0.627264pt;}
.ls1f_c00285{letter-spacing:1.296346pt;}
.ls10_c00285{letter-spacing:1.372800pt;}
.ls1a_c00285{letter-spacing:1.498464pt;}
.ls1c_c00285{letter-spacing:1.568160pt;}
.ls0_c00285{letter-spacing:2.083910pt;}
.ls4_c00285{letter-spacing:2.090880pt;}
.lse_c00285{letter-spacing:2.209363pt;}
.lsc_c00285{letter-spacing:2.226400pt;}
.ls5_c00285{letter-spacing:2.899354pt;}
.ls11_c00285{letter-spacing:2.904000pt;}
.ls15_c00285{letter-spacing:2.906323pt;}
.ls1d_c00285{letter-spacing:3.031776pt;}
.ls1_c00285{letter-spacing:3.129350pt;}
.ls1e_c00285{letter-spacing:3.203209pt;}
.ls8_c00285{letter-spacing:3.379209pt;}
.ls9_c00285{letter-spacing:3.484800pt;}
.ls13_c00285{letter-spacing:3.564000pt;}
.ls2_c00285{letter-spacing:18.538432pt;}
.ls16_c00285{letter-spacing:43.084976pt;}
.lsb_c00285{letter-spacing:44.352176pt;}
.ls18_c00285{letter-spacing:45.619376pt;}
.ls1b_c00285{letter-spacing:46.886576pt;}
.ws6_c00285{word-spacing:-20.323354pt;}
.ws3_c00285{word-spacing:-19.633363pt;}
.ws4_c00285{word-spacing:-17.424000pt;}
.ws5_c00285{word-spacing:-16.929158pt;}
.ws0_c00285{word-spacing:-13.215910pt;}
.ws1_c00285{word-spacing:-10.259251pt;}
.ws2_c00285{word-spacing:-6.899904pt;}
.ws7_c00285{word-spacing:0.000000pt;}
._11_c00285{margin-left:-9.757088pt;}
._f_c00285{margin-left:-1.956557pt;}
._a_c00285{width:2.705050pt;}
._0_c00285{width:3.880800pt;}
._2_c00285{width:4.845350pt;}
._4_c00285{width:5.826586pt;}
._6_c00285{width:6.830208pt;}
._9_c00285{width:8.084736pt;}
._1_c00285{width:9.757440pt;}
._7_c00285{width:11.011968pt;}
._d_c00285{width:15.263424pt;}
._c_c00285{width:18.539136pt;}
._5_c00285{width:19.654976pt;}
._13_c00285{width:21.048192pt;}
._8_c00285{width:23.139072pt;}
._10_c00285{width:27.359200pt;}
._b_c00285{width:28.854848pt;}
._3_c00285{width:30.197376pt;}
._12_c00285{width:31.184666pt;}
._e_c00285{width:32.966208pt;}
.fs1_c00285{font-size:26.576000pt;}
.fs6_c00285{font-size:27.456000pt;}
.fse_c00285{font-size:39.776000pt;}
.fs8_c00285{font-size:43.084976pt;}
.fs3_c00285{font-size:44.352176pt;}
.fs4_c00285{font-size:44.528000pt;}
.fs9_c00285{font-size:45.619376pt;}
.fsc_c00285{font-size:46.886576pt;}
.fs5_c00285{font-size:58.080000pt;}
.fsb_c00285{font-size:63.008000pt;}
.fsd_c00285{font-size:64.064176pt;}
.fs0_c00285{font-size:67.584176pt;}
.fsa_c00285{font-size:68.640000pt;}
.fs2_c00285{font-size:69.696000pt;}
.fs7_c00285{font-size:71.280000pt;}
.y0_c00285{bottom:0.000000pt;}
.y1_c00285{bottom:68.000000pt;}
.y1e_c00285{bottom:151.352120pt;}
.y1d_c00285{bottom:168.142520pt;}
.y1c_c00285{bottom:181.131320pt;}
.y1b_c00285{bottom:210.910520pt;}
.y1a_c00285{bottom:240.056120pt;}
.y19_c00285{bottom:268.880520pt;}
.y18_c00285{bottom:297.713720pt;}
.y17_c00285{bottom:354.733320pt;}
.y16_c00285{bottom:383.249720pt;}
.y15_c00285{bottom:411.761720pt;}
.y14_c00285{bottom:440.907320pt;}
.y13_c00285{bottom:469.102520pt;}
.y12_c00285{bottom:498.560520pt;}
.y11_c00285{bottom:528.344120pt;}
.y10_c00285{bottom:556.851720pt;}
.yf_c00285{bottom:585.368120pt;}
.ye_c00285{bottom:614.196920pt;}
.yd_c00285{bottom:670.904120pt;}
.yb_c00285{bottom:699.732920pt;}
.ya_c00285{bottom:699.738200pt;}
.yc_c00285{bottom:704.168120pt;}
.y9_c00285{bottom:728.557320pt;}
.y8_c00285{bottom:757.386120pt;}
.y7_c00285{bottom:786.531720pt;}
.y6_c00285{bottom:809.024520pt;}
.y5_c00285{bottom:815.677320pt;}
.y4_c00285{bottom:816.315320pt;}
.y3_c00285{bottom:951.901320pt;}
.y2_c00285{bottom:954.435720pt;}
.h3_c00285{height:26.082891pt;}
.h9_c00285{height:28.635750pt;}
.hb_c00285{height:28.694594pt;}
.h5_c00285{height:29.538549pt;}
.hc_c00285{height:30.382504pt;}
.hd_c00285{height:31.226460pt;}
.hf_c00285{height:39.037969pt;}
.h6_c00285{height:43.701797pt;}
.h8_c00285{height:60.575625pt;}
.h2_c00285{height:66.330173pt;}
.he_c00285{height:66.816934pt;}
.h4_c00285{height:68.402813pt;}
.ha_c00285{height:69.957422pt;}
.h7_c00285{height:70.488184pt;}
.h1_c00285{height:986.666667pt;}
.h0_c00285{height:1122.666667pt;}
.w1_c00285{width:678.666667pt;}
.w0_c00285{width:793.333333pt;}
.x0_c00285{left:0.000000pt;}
.x1_c00285{left:57.333333pt;}
.x1b_c00285{left:61.160920pt;}
.x5_c00285{left:62.683320pt;}
.x65_c00285{left:63.985720pt;}
.x1c_c00285{left:72.451320pt;}
.x1d_c00285{left:82.166520pt;}
.x5b_c00285{left:90.438520pt;}
.x4e_c00285{left:91.916920pt;}
.x3d_c00285{left:93.417320pt;}
.x1e_c00285{left:100.584920pt;}
.x53_c00285{left:102.023720pt;}
.x3e_c00285{left:111.268120pt;}
.x33_c00285{left:121.044920pt;}
.x49_c00285{left:130.826120pt;}
.x13_c00285{left:132.102120pt;}
.x6_c00285{left:140.708520pt;}
.x66_c00285{left:149.693320pt;}
.x34_c00285{left:150.810920pt;}
.x7_c00285{left:160.904520pt;}
.x64_c00285{left:162.479720pt;}
.x2b_c00285{left:169.708920pt;}
.x1f_c00285{left:170.769320pt;}
.x4a_c00285{left:178.869720pt;}
.x3f_c00285{left:180.590120pt;}
.x35_c00285{left:190.265720pt;}
.x4f_c00285{left:199.602520pt;}
.x5f_c00285{left:200.847720pt;}
.x20_c00285{left:209.634520pt;}
.x2c_c00285{left:218.438920pt;}
.x67_c00285{left:220.190120pt;}
.x36_c00285{left:228.748120pt;}
.x4b_c00285{left:229.676520pt;}
.x40_c00285{left:233.310920pt;}
.x68_c00285{left:238.071720pt;}
.x8_c00285{left:239.497320pt;}
.x2d_c00285{left:248.988120pt;}
.x14_c00285{left:257.977320pt;}
.x62_c00285{left:259.446920pt;}
.x54_c00285{left:268.849720pt;}
.x6a_c00285{left:269.910120pt;}
.x6c_c00285{left:273.117720pt;}
.x56_c00285{left:278.314120pt;}
.x37_c00285{left:279.414120pt;}
.x47_c00285{left:288.284520pt;}
.x21_c00285{left:289.415320pt;}
.x22_c00285{left:296.697320pt;}
.x60_c00285{left:298.439720pt;}
.x9_c00285{left:308.762120pt;}
.x2e_c00285{left:318.081320pt;}
.x6b_c00285{left:325.983720pt;}
.x23_c00285{left:327.268520pt;}
.x50_c00285{left:337.089320pt;}
.x59_c00285{left:338.022120pt;}
.xa_c00285{left:346.782520pt;}
.xb_c00285{left:356.603320pt;}
.x4c_c00285{left:358.856120pt;}
.x5a_c00285{left:366.542920pt;}
.x15_c00285{left:367.449320pt;}
.x24_c00285{left:375.571720pt;}
.x4d_c00285{left:377.190920pt;}
.x41_c00285{left:386.149320pt;}
.x2f_c00285{left:395.217720pt;}
.xc_c00285{left:396.515720pt;}
.x5c_c00285{left:398.139320pt;}
.x25_c00285{left:405.038520pt;}
.xd_c00285{left:415.338920pt;}
.x42_c00285{left:425.159720pt;}
.x16_c00285{left:426.101320pt;}
.x17_c00285{left:435.156520pt;}
.x57_c00285{left:442.447320pt;}
.xe_c00285{left:444.616520pt;}
.x51_c00285{left:454.635320pt;}
.x18_c00285{left:464.442920pt;}
.x26_c00285{left:474.210920pt;}
.x55_c00285{left:482.680920pt;}
.x43_c00285{left:484.330920pt;}
.x27_c00285{left:493.940520pt;}
.x19_c00285{left:502.859320pt;}
.x38_c00285{left:504.623720pt;}
.x63_c00285{left:512.420520pt;}
.xf_c00285{left:513.555720pt;}
.x61_c00285{left:523.055320pt;}
.x39_c00285{left:525.224520pt;}
.x44_c00285{left:530.517720pt;}
.x28_c00285{left:532.673720pt;}
.x48_c00285{left:533.756120pt;}
.x30_c00285{left:542.701320pt;}
.x5d_c00285{left:543.594520pt;}
.x10_c00285{left:551.725720pt;}
.x3a_c00285{left:552.654120pt;}
.x45_c00285{left:561.850120pt;}
.x31_c00285{left:571.032920pt;}
.x12_c00285{left:581.051720pt;}
.x2_c00285{left:581.958120pt;}
.x3_c00285{left:592.179320pt;}
.x3b_c00285{left:593.358520pt;}
.x11_c00285{left:601.388520pt;}
.x69_c00285{left:609.994920pt;}
.x1a_c00285{left:611.081720pt;}
.x4_c00285{left:612.749320pt;}
.x29_c00285{left:620.937720pt;}
.x52_c00285{left:622.240120pt;}
.x46_c00285{left:629.966520pt;}
.x32_c00285{left:631.009320pt;}
.x3c_c00285{left:632.571320pt;}
.x2a_c00285{left:640.830120pt;}
.x58_c00285{left:650.061320pt;}
.x5e_c00285{left:659.882120pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_982bb11d94c1248664c394e3.woff2')format("woff");}.ff1_c00286{font-family:ff1_c00286;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00286;src:url('chunks/assets/font_09e009039460a825d57f43a7.woff2')format("woff");}.ff2_c00286{font-family:ff2_c00286;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00286;src:url('chunks/assets/font_859ed3d0b04a01c5cd8f1fd2.woff2')format("woff");}.ff3_c00286{font-family:ff3_c00286;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00286;src:url('chunks/assets/font_3385b762dc16b0c0aec9f3e1.woff2')format("woff");}.ff4_c00286{font-family:ff4_c00286;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00286;src:url('chunks/assets/font_88f25dedbbff01ce39d76e86.woff2')format("woff");}.ff5_c00286{font-family:ff5_c00286;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00286{transform:matrix(0.062501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062501,0.000000,0.000000,0.250000,0,0);}
.m0_c00286{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.me_c00286{transform:matrix(0.107955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107955,0.000000,0.000000,0.250000,0,0);}
.m3_c00286{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);}
.m6_c00286{transform:matrix(0.140625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140625,0.000000,0.000000,0.250000,0,0);}
.m31_c00286{transform:matrix(0.152439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152439,0.000000,0.000000,0.250000,0,0);}
.m15_c00286{transform:matrix(0.156249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156249,0.000000,0.000000,0.250000,0,0);}
.m13_c00286{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m11_c00286{transform:matrix(0.178125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178125,0.000000,0.000000,0.250000,0,0);}
.m14_c00286{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m30_c00286{transform:matrix(0.182926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182926,0.000000,0.000000,0.250000,0,0);}
.m2_c00286{transform:matrix(0.186111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186111,0.000000,0.000000,0.250000,0,0);}
.m10_c00286{transform:matrix(0.187499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187499,0.000000,0.000000,0.250000,0,0);}
.m32_c00286{transform:matrix(0.189025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189025,0.000000,0.000000,0.250000,0,0);}
.mf_c00286{transform:matrix(0.190178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190178,0.000000,0.000000,0.250000,0,0);}
.m12_c00286{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00286{transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);}
.m19_c00286{transform:matrix(0.212499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212499,0.000000,0.000000,0.250000,0,0);}
.m4_c00286{transform:matrix(0.212687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212687,0.000000,0.000000,0.250000,0,0);}
.m16_c00286{transform:matrix(0.217809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217809,0.000000,0.000000,0.250000,0,0);}
.m4b_c00286{transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);}
.m8_c00286{transform:matrix(0.239462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239462,0.000000,0.000000,0.250000,0,0);}
.m17_c00286{transform:matrix(0.249565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249565,0.000000,0.000000,0.250000,0,0);}
.m5_c00286{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m62_c00286{transform:matrix(0.250711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250711,0.000000,0.000000,0.250000,0,0);}
.mc_c00286{transform:matrix(0.251949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251949,0.000000,0.000000,0.250000,0,0);}
.m9_c00286{transform:matrix(0.253282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253282,0.000000,0.000000,0.250000,0,0);}
.m60_c00286{transform:matrix(0.253545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253545,0.000000,0.000000,0.250000,0,0);}
.m58_c00286{transform:matrix(0.255251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255251,0.000000,0.000000,0.250000,0,0);}
.m80_c00286{transform:matrix(0.255627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255627,0.000000,0.000000,0.250000,0,0);}
.m37_c00286{transform:matrix(0.256600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256600,0.000000,0.000000,0.250000,0,0);}
.m20_c00286{transform:matrix(0.258294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258294,0.000000,0.000000,0.250000,0,0);}
.m1b_c00286{transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);}
.m4e_c00286{transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);}
.m7e_c00286{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m41_c00286{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.m1e_c00286{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m55_c00286{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m1f_c00286{transform:matrix(0.264128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264128,0.000000,0.000000,0.250000,0,0);}
.m3e_c00286{transform:matrix(0.264534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264534,0.000000,0.000000,0.250000,0,0);}
.m3c_c00286{transform:matrix(0.264886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264886,0.000000,0.000000,0.250000,0,0);}
.m59_c00286{transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);}
.m2d_c00286{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.md_c00286{transform:matrix(0.266279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266279,0.000000,0.000000,0.250000,0,0);}
.m73_c00286{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.m3d_c00286{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m6e_c00286{transform:matrix(0.268334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268334,0.000000,0.000000,0.250000,0,0);}
.m27_c00286{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.m2e_c00286{transform:matrix(0.268905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268905,0.000000,0.000000,0.250000,0,0);}
.m3f_c00286{transform:matrix(0.269276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269276,0.000000,0.000000,0.250000,0,0);}
.m70_c00286{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m50_c00286{transform:matrix(0.271612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271612,0.000000,0.000000,0.250000,0,0);}
.m5a_c00286{transform:matrix(0.272056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272056,0.000000,0.000000,0.250000,0,0);}
.m18_c00286{transform:matrix(0.272460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272460,0.000000,0.000000,0.250000,0,0);}
.m91_c00286{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m26_c00286{transform:matrix(0.272796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272796,0.000000,0.000000,0.250000,0,0);}
.m22_c00286{transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);}
.m4a_c00286{transform:matrix(0.273706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273706,0.000000,0.000000,0.250000,0,0);}
.m8d_c00286{transform:matrix(0.274497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274497,0.000000,0.000000,0.250000,0,0);}
.m2a_c00286{transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);}
.m61_c00286{transform:matrix(0.275733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275733,0.000000,0.000000,0.250000,0,0);}
.m6a_c00286{transform:matrix(0.276068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276068,0.000000,0.000000,0.250000,0,0);}
.m90_c00286{transform:matrix(0.277204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277204,0.000000,0.000000,0.250000,0,0);}
.m6d_c00286{transform:matrix(0.277249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277249,0.000000,0.000000,0.250000,0,0);}
.m7c_c00286{transform:matrix(0.277352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277352,0.000000,0.000000,0.250000,0,0);}
.m2b_c00286{transform:matrix(0.277360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277360,0.000000,0.000000,0.250000,0,0);}
.m45_c00286{transform:matrix(0.277972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277972,0.000000,0.000000,0.250000,0,0);}
.m97_c00286{transform:matrix(0.278681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278681,0.000000,0.000000,0.250000,0,0);}
.m7a_c00286{transform:matrix(0.280446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280446,0.000000,0.000000,0.250000,0,0);}
.m94_c00286{transform:matrix(0.280893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280893,0.000000,0.000000,0.250000,0,0);}
.m64_c00286{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.m67_c00286{transform:matrix(0.282371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282371,0.000000,0.000000,0.250000,0,0);}
.m77_c00286{transform:matrix(0.282731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282731,0.000000,0.000000,0.250000,0,0);}
.m23_c00286{transform:matrix(0.283165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283165,0.000000,0.000000,0.250000,0,0);}
.m47_c00286{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m5b_c00286{transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);}
.m46_c00286{transform:matrix(0.285694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285694,0.000000,0.000000,0.250000,0,0);}
.m69_c00286{transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);}
.m44_c00286{transform:matrix(0.285955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285955,0.000000,0.000000,0.250000,0,0);}
.m72_c00286{transform:matrix(0.287569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287569,0.000000,0.000000,0.250000,0,0);}
.m66_c00286{transform:matrix(0.288227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288227,0.000000,0.000000,0.250000,0,0);}
.m52_c00286{transform:matrix(0.289491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289491,0.000000,0.000000,0.250000,0,0);}
.m36_c00286{transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);}
.m49_c00286{transform:matrix(0.291525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291525,0.000000,0.000000,0.250000,0,0);}
.m75_c00286{transform:matrix(0.291665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291665,0.000000,0.000000,0.250000,0,0);}
.m96_c00286{transform:matrix(0.292127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292127,0.000000,0.000000,0.250000,0,0);}
.m89_c00286{transform:matrix(0.293146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293146,0.000000,0.000000,0.250000,0,0);}
.m40_c00286{transform:matrix(0.293403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293403,0.000000,0.000000,0.250000,0,0);}
.m82_c00286{transform:matrix(0.294066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294066,0.000000,0.000000,0.250000,0,0);}
.m79_c00286{transform:matrix(0.294568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294568,0.000000,0.000000,0.250000,0,0);}
.m8b_c00286{transform:matrix(0.294653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294653,0.000000,0.000000,0.250000,0,0);}
.m71_c00286{transform:matrix(0.295136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295136,0.000000,0.000000,0.250000,0,0);}
.m84_c00286{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m8e_c00286{transform:matrix(0.299449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299449,0.000000,0.000000,0.250000,0,0);}
.m65_c00286{transform:matrix(0.299511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299511,0.000000,0.000000,0.250000,0,0);}
.m29_c00286{transform:matrix(0.299948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299948,0.000000,0.000000,0.250000,0,0);}
.m3b_c00286{transform:matrix(0.300070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300070,0.000000,0.000000,0.250000,0,0);}
.m57_c00286{transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);}
.m21_c00286{transform:matrix(0.301409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301409,0.000000,0.000000,0.250000,0,0);}
.m5d_c00286{transform:matrix(0.301851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301851,0.000000,0.000000,0.250000,0,0);}
.m1a_c00286{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m1d_c00286{transform:matrix(0.302521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302521,0.000000,0.000000,0.250000,0,0);}
.m39_c00286{transform:matrix(0.303475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303475,0.000000,0.000000,0.250000,0,0);}
.m85_c00286{transform:matrix(0.305038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305038,0.000000,0.000000,0.250000,0,0);}
.m51_c00286{transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);}
.m4d_c00286{transform:matrix(0.305914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305914,0.000000,0.000000,0.250000,0,0);}
.m63_c00286{transform:matrix(0.307871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307871,0.000000,0.000000,0.250000,0,0);}
.m7f_c00286{transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);}
.m6c_c00286{transform:matrix(0.309056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309056,0.000000,0.000000,0.250000,0,0);}
.m88_c00286{transform:matrix(0.309840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309840,0.000000,0.000000,0.250000,0,0);}
.m34_c00286{transform:matrix(0.310525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310525,0.000000,0.000000,0.250000,0,0);}
.m7b_c00286{transform:matrix(0.310761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310761,0.000000,0.000000,0.250000,0,0);}
.m5e_c00286{transform:matrix(0.311744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311744,0.000000,0.000000,0.250000,0,0);}
.m54_c00286{transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);}
.m78_c00286{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.ma_c00286{transform:matrix(0.312719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312719,0.000000,0.000000,0.250000,0,0);}
.m5c_c00286{transform:matrix(0.312802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312802,0.000000,0.000000,0.250000,0,0);}
.m6b_c00286{transform:matrix(0.314289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314289,0.000000,0.000000,0.250000,0,0);}
.m68_c00286{transform:matrix(0.314546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314546,0.000000,0.000000,0.250000,0,0);}
.m3a_c00286{transform:matrix(0.314704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314704,0.000000,0.000000,0.250000,0,0);}
.m7d_c00286{transform:matrix(0.315706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315706,0.000000,0.000000,0.250000,0,0);}
.m28_c00286{transform:matrix(0.317438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317438,0.000000,0.000000,0.250000,0,0);}
.m4f_c00286{transform:matrix(0.319500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319500,0.000000,0.000000,0.250000,0,0);}
.m35_c00286{transform:matrix(0.319876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319876,0.000000,0.000000,0.250000,0,0);}
.m24_c00286{transform:matrix(0.320057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320057,0.000000,0.000000,0.250000,0,0);}
.m42_c00286{transform:matrix(0.320945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320945,0.000000,0.000000,0.250000,0,0);}
.m2c_c00286{transform:matrix(0.321236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321236,0.000000,0.000000,0.250000,0,0);}
.m2f_c00286{transform:matrix(0.323501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323501,0.000000,0.000000,0.250000,0,0);}
.m56_c00286{transform:matrix(0.324254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324254,0.000000,0.000000,0.250000,0,0);}
.m93_c00286{transform:matrix(0.324455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324455,0.000000,0.000000,0.250000,0,0);}
.m83_c00286{transform:matrix(0.326100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326100,0.000000,0.000000,0.250000,0,0);}
.m8c_c00286{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m86_c00286{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.m74_c00286{transform:matrix(0.329381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329381,0.000000,0.000000,0.250000,0,0);}
.m33_c00286{transform:matrix(0.329713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329713,0.000000,0.000000,0.250000,0,0);}
.m92_c00286{transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);}
.m1c_c00286{transform:matrix(0.334026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334026,0.000000,0.000000,0.250000,0,0);}
.mb_c00286{transform:matrix(0.334760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334760,0.000000,0.000000,0.250000,0,0);}
.m5f_c00286{transform:matrix(0.335394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335394,0.000000,0.000000,0.250000,0,0);}
.m6f_c00286{transform:matrix(0.335804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335804,0.000000,0.000000,0.250000,0,0);}
.m38_c00286{transform:matrix(0.336403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336403,0.000000,0.000000,0.250000,0,0);}
.m8a_c00286{transform:matrix(0.337641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337641,0.000000,0.000000,0.250000,0,0);}
.m48_c00286{transform:matrix(0.338265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338265,0.000000,0.000000,0.250000,0,0);}
.m25_c00286{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m81_c00286{transform:matrix(0.340130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340130,0.000000,0.000000,0.250000,0,0);}
.m87_c00286{transform:matrix(0.342039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342039,0.000000,0.000000,0.250000,0,0);}
.m53_c00286{transform:matrix(0.345590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345590,0.000000,0.000000,0.250000,0,0);}
.m95_c00286{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m8f_c00286{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m43_c00286{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m76_c00286{transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);}
.m7_c00286{transform:matrix(0.392549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392549,0.000000,0.000000,0.250000,0,0);}
.v1_c00286{vertical-align:-8.533800px;}
.v2_c00286{vertical-align:-2.871000px;}
.v0_c00286{vertical-align:0.000000px;}
.ls10_c00286{letter-spacing:-2.375762px;}
.ls3_c00286{letter-spacing:-2.300767px;}
.ls4_c00286{letter-spacing:-0.545610px;}
.ls1_c00286{letter-spacing:0.000000px;}
.lsf_c00286{letter-spacing:1.246687px;}
.ls9_c00286{letter-spacing:2.241598px;}
.ls6_c00286{letter-spacing:3.286810px;}
.lsc_c00286{letter-spacing:3.920400px;}
.lse_c00286{letter-spacing:4.177810px;}
.lsa_c00286{letter-spacing:4.187700px;}
.ls0_c00286{letter-spacing:21.065616px;}
.ls2_c00286{letter-spacing:42.768000px;}
.lsb_c00286{letter-spacing:49.896198px;}
.ls8_c00286{letter-spacing:57.024198px;}
.lsd_c00286{letter-spacing:58.449798px;}
.ls7_c00286{letter-spacing:62.726400px;}
.ls5_c00286{letter-spacing:91.238598px;}
.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:-19.602000px;}
.ws2_c00286{word-spacing:0.000000px;}
.ws1_c00286{word-spacing:2.037816px;}
._4_c00286{width:4.856940px;}
._8_c00286{width:7.214328px;}
._a_c00286{width:9.487368px;}
._b_c00286{width:10.585080px;}
._5_c00286{width:22.267872px;}
._6_c00286{width:23.679216px;}
._0_c00286{width:26.769600px;}
._3_c00286{width:32.608730px;}
._7_c00286{width:34.029468px;}
._9_c00286{width:41.946696px;}
._1_c00286{width:554.385348px;}
._2_c00286{width:560.194272px;}
.fc0_c00286{color:transparent;}
.fs12_c00286{font-size:20.394000px;}
.fs6_c00286{font-size:22.176000px;}
.fsc_c00286{font-size:22.374000px;}
.fsd_c00286{font-size:38.808000px;}
.fs0_c00286{font-size:42.768000px;}
.fs7_c00286{font-size:49.104000px;}
.fse_c00286{font-size:49.896198px;}
.fs9_c00286{font-size:57.024198px;}
.fs10_c00286{font-size:58.449798px;}
.fs3_c00286{font-size:61.578000px;}
.fs8_c00286{font-size:62.726400px;}
.fs1_c00286{font-size:65.736198px;}
.fsa_c00286{font-size:67.518000px;}
.fs2_c00286{font-size:73.260000px;}
.fs4_c00286{font-size:76.428000px;}
.fsf_c00286{font-size:78.408000px;}
.fs11_c00286{font-size:78.804000px;}
.fs13_c00286{font-size:83.556198px;}
.fsb_c00286{font-size:83.754000px;}
.fs5_c00286{font-size:91.238598px;}
.y0_c00286{bottom:0.000000px;}
.y1_c00286{bottom:76.500000px;}
.y1a_c00286{bottom:168.489135px;}
.y19_c00286{bottom:201.990735px;}
.y18_c00286{bottom:234.418185px;}
.y17_c00286{bottom:267.563385px;}
.y16_c00286{bottom:364.509135px;}
.y15_c00286{bottom:379.477935px;}
.y14_c00286{bottom:396.941535px;}
.y13_c00286{bottom:429.368985px;}
.y12_c00286{bottom:462.870585px;}
.y11_c00286{bottom:495.307935px;}
.y10_c00286{bottom:527.740335px;}
.yf_c00286{bottom:559.454985px;}
.ye_c00286{bottom:593.317935px;}
.yd_c00286{bottom:625.750335px;}
.yc_c00286{bottom:658.182735px;}
.y8_c00286{bottom:724.829535px;}
.yb_c00286{bottom:789.337935px;}
.y7_c00286{bottom:790.050735px;}
.y6_c00286{bottom:826.754985px;}
.y5_c00286{bottom:827.472735px;}
.y4_c00286{bottom:854.202735px;}
.y3_c00286{bottom:890.550585px;}
.y2_c00286{bottom:920.849535px;}
.ya_c00286{bottom:980.006985px;}
.y9_c00286{bottom:1073.740185px;}
.h11_c00286{height:20.015596px;}
.hb_c00286{height:21.958857px;}
.h2_c00286{height:28.483488px;}
.hd_c00286{height:33.230868px;}
.h8_c00286{height:37.978116px;}
.hf_c00286{height:38.927565px;}
.hc_c00286{height:40.475531px;}
.h7_c00286{height:41.775782px;}
.h6_c00286{height:48.342938px;}
.h5_c00286{height:60.764906px;}
.h3_c00286{height:64.516483px;}
.h9_c00286{height:70.419164px;}
.h4_c00286{height:76.407891px;}
.he_c00286{height:76.953164px;}
.h10_c00286{height:77.341816px;}
.ha_c00286{height:82.199971px;}
.h12_c00286{height:84.208981px;}
.h1_c00286{height:1110.000000px;}
.h0_c00286{height:1263.000000px;}
.w1_c00286{width:763.500000px;}
.w0_c00286{width:892.500000px;}
.x0_c00286{left:0.000000px;}
.x1_c00286{left:64.500000px;}
.x2a_c00286{left:72.919485px;}
.x40_c00286{left:94.263885px;}
.x46_c00286{left:116.078535px;}
.x4f_c00286{left:117.568485px;}
.x1f_c00286{left:127.458585px;}
.x3a_c00286{left:138.333735px;}
.x2b_c00286{left:149.976135px;}
.x33_c00286{left:159.920685px;}
.x3b_c00286{left:171.379935px;}
.x60_c00286{left:172.508535px;}
.x8_c00286{left:182.527335px;}
.x5b_c00286{left:183.730185px;}
.x58_c00286{left:186.927885px;}
.x41_c00286{left:194.140035px;}
.x47_c00286{left:205.341885px;}
.x20_c00286{left:215.989335px;}
.x59_c00286{left:217.048635px;}
.x3c_c00286{left:227.042685px;}
.x5c_c00286{left:228.750435px;}
.x21_c00286{left:237.165435px;}
.x34_c00286{left:238.660335px;}
.x4a_c00286{left:249.065235px;}
.x48_c00286{left:251.530335px;}
.x2c_c00286{left:260.539335px;}
.x35_c00286{left:271.092735px;}
.x36_c00286{left:281.071935px;}
.x42_c00286{left:282.264885px;}
.x2d_c00286{left:293.333085px;}
.x9_c00286{left:300.668985px;}
.x50_c00286{left:305.420985px;}
.x22_c00286{left:315.820935px;}
.x43_c00286{left:327.210885px;}
.xa_c00286{left:332.443035px;}
.x51_c00286{left:337.858335px;}
.x61_c00286{left:339.293835px;}
.x2_c00286{left:347.718735px;}
.x19_c00286{left:349.322535px;}
.x3_c00286{left:352.708335px;}
.x4_c00286{left:359.479935px;}
.x2e_c00286{left:370.671885px;}
.x7_c00286{left:381.923235px;}
.x5_c00286{left:384.422985px;}
.xb_c00286{left:392.496435px;}
.x12_c00286{left:395.387235px;}
.x6_c00286{left:397.119735px;}
.x55_c00286{left:404.539785px;}
.x1a_c00286{left:414.197235px;}
.x5d_c00286{left:416.236635px;}
.x37_c00286{left:425.720835px;}
.x14_c00286{left:426.834585px;}
.x52_c00286{left:428.304735px;}
.xc_c00286{left:429.725385px;}
.x53_c00286{left:449.060085px;}
.x23_c00286{left:458.707635px;}
.x56_c00286{left:460.103535px;}
.x38_c00286{left:469.270935px;}
.xd_c00286{left:470.602485px;}
.x54_c00286{left:479.220435px;}
.x62_c00286{left:481.477635px;}
.x24_c00286{left:491.496435px;}
.x3d_c00286{left:492.897285px;}
.xe_c00286{left:500.183685px;}
.x4b_c00286{left:503.539785px;}
.x2f_c00286{left:505.717785px;}
.xf_c00286{left:512.647785px;}
.x15_c00286{left:514.513935px;}
.x30_c00286{left:523.414035px;}
.x3e_c00286{left:524.983185px;}
.x5e_c00286{left:526.042485px;}
.x10_c00286{left:534.086235px;}
.x25_c00286{left:535.145535px;}
.x4c_c00286{left:536.387985px;}
.x11_c00286{left:546.124635px;}
.x13_c00286{left:552.287385px;}
.x16_c00286{left:557.281935px;}
.x5a_c00286{left:559.192635px;}
.x17_c00286{left:569.038185px;}
.x18_c00286{left:580.294485px;}
.x26_c00286{left:591.204285px;}
.x44_c00286{left:592.783335px;}
.x5f_c00286{left:602.346735px;}
.x27_c00286{left:613.350585px;}
.x45_c00286{left:624.408885px;}
.x31_c00286{left:634.764285px;}
.x4d_c00286{left:635.823585px;}
.x3f_c00286{left:645.411735px;}
.x1d_c00286{left:647.713485px;}
.x1e_c00286{left:652.995135px;}
.x1b_c00286{left:655.722585px;}
.x32_c00286{left:657.554085px;}
.x28_c00286{left:667.805535px;}
.x1c_c00286{left:678.433185px;}
.x29_c00286{left:689.991435px;}
.x57_c00286{left:700.965585px;}
.x49_c00286{left:702.104085px;}
.x39_c00286{left:703.598985px;}
.x4e_c00286{left:712.073385px;}
.x63_c00286{left:725.349285px;}
@media print{
.v1_c00286{vertical-align:-7.585600pt;}
.v2_c00286{vertical-align:-2.552000pt;}
.v0_c00286{vertical-align:0.000000pt;}
.ls10_c00286{letter-spacing:-2.111789pt;}
.ls3_c00286{letter-spacing:-2.045126pt;}
.ls4_c00286{letter-spacing:-0.484987pt;}
.ls1_c00286{letter-spacing:0.000000pt;}
.lsf_c00286{letter-spacing:1.108166pt;}
.ls9_c00286{letter-spacing:1.992531pt;}
.ls6_c00286{letter-spacing:2.921609pt;}
.lsc_c00286{letter-spacing:3.484800pt;}
.lse_c00286{letter-spacing:3.713609pt;}
.lsa_c00286{letter-spacing:3.722400pt;}
.ls0_c00286{letter-spacing:18.724992pt;}
.ls2_c00286{letter-spacing:38.016000pt;}
.lsb_c00286{letter-spacing:44.352176pt;}
.ls8_c00286{letter-spacing:50.688176pt;}
.lsd_c00286{letter-spacing:51.955376pt;}
.ls7_c00286{letter-spacing:55.756800pt;}
.ls5_c00286{letter-spacing:81.100976pt;}
.ws0_c00286{word-spacing:-17.424000pt;}
.ws2_c00286{word-spacing:0.000000pt;}
.ws1_c00286{word-spacing:1.811392pt;}
._4_c00286{width:4.317280pt;}
._8_c00286{width:6.412736pt;}
._a_c00286{width:8.433216pt;}
._b_c00286{width:9.408960pt;}
._5_c00286{width:19.793664pt;}
._6_c00286{width:21.048192pt;}
._0_c00286{width:23.795200pt;}
._3_c00286{width:28.985538pt;}
._7_c00286{width:30.248416pt;}
._9_c00286{width:37.285952pt;}
._1_c00286{width:492.786976pt;}
._2_c00286{width:497.950464pt;}
.fs12_c00286{font-size:18.128000pt;}
.fs6_c00286{font-size:19.712000pt;}
.fsc_c00286{font-size:19.888000pt;}
.fsd_c00286{font-size:34.496000pt;}
.fs0_c00286{font-size:38.016000pt;}
.fs7_c00286{font-size:43.648000pt;}
.fse_c00286{font-size:44.352176pt;}
.fs9_c00286{font-size:50.688176pt;}
.fs10_c00286{font-size:51.955376pt;}
.fs3_c00286{font-size:54.736000pt;}
.fs8_c00286{font-size:55.756800pt;}
.fs1_c00286{font-size:58.432176pt;}
.fsa_c00286{font-size:60.016000pt;}
.fs2_c00286{font-size:65.120000pt;}
.fs4_c00286{font-size:67.936000pt;}
.fsf_c00286{font-size:69.696000pt;}
.fs11_c00286{font-size:70.048000pt;}
.fs13_c00286{font-size:74.272176pt;}
.fsb_c00286{font-size:74.448000pt;}
.fs5_c00286{font-size:81.100976pt;}
.y0_c00286{bottom:0.000000pt;}
.y1_c00286{bottom:68.000000pt;}
.y1a_c00286{bottom:149.768120pt;}
.y19_c00286{bottom:179.547320pt;}
.y18_c00286{bottom:208.371720pt;}
.y17_c00286{bottom:237.834120pt;}
.y16_c00286{bottom:324.008120pt;}
.y15_c00286{bottom:337.313720pt;}
.y14_c00286{bottom:352.836920pt;}
.y13_c00286{bottom:381.661320pt;}
.y12_c00286{bottom:411.440520pt;}
.y11_c00286{bottom:440.273720pt;}
.y10_c00286{bottom:469.102520pt;}
.yf_c00286{bottom:497.293320pt;}
.ye_c00286{bottom:527.393720pt;}
.yd_c00286{bottom:556.222520pt;}
.yc_c00286{bottom:585.051320pt;}
.y8_c00286{bottom:644.292920pt;}
.yb_c00286{bottom:701.633720pt;}
.y7_c00286{bottom:702.267320pt;}
.y6_c00286{bottom:734.893320pt;}
.y5_c00286{bottom:735.531320pt;}
.y4_c00286{bottom:759.291320pt;}
.y3_c00286{bottom:791.600520pt;}
.y2_c00286{bottom:818.532920pt;}
.ya_c00286{bottom:871.117320pt;}
.y9_c00286{bottom:954.435720pt;}
.h11_c00286{height:17.791641pt;}
.hb_c00286{height:19.518984pt;}
.h2_c00286{height:25.318656pt;}
.hd_c00286{height:29.538549pt;}
.h8_c00286{height:33.758325pt;}
.hf_c00286{height:34.602280pt;}
.hc_c00286{height:35.978250pt;}
.h7_c00286{height:37.134029pt;}
.h6_c00286{height:42.971500pt;}
.h5_c00286{height:54.013250pt;}
.h3_c00286{height:57.347985pt;}
.h9_c00286{height:62.594813pt;}
.h4_c00286{height:67.918125pt;}
.he_c00286{height:68.402813pt;}
.h10_c00286{height:68.748281pt;}
.ha_c00286{height:73.066641pt;}
.h12_c00286{height:74.852427pt;}
.h1_c00286{height:986.666667pt;}
.h0_c00286{height:1122.666667pt;}
.w1_c00286{width:678.666667pt;}
.w0_c00286{width:793.333333pt;}
.x0_c00286{left:0.000000pt;}
.x1_c00286{left:57.333333pt;}
.x2a_c00286{left:64.817320pt;}
.x40_c00286{left:83.790120pt;}
.x46_c00286{left:103.180920pt;}
.x4f_c00286{left:104.505320pt;}
.x1f_c00286{left:113.296520pt;}
.x3a_c00286{left:122.963320pt;}
.x2b_c00286{left:133.312120pt;}
.x33_c00286{left:142.151720pt;}
.x3b_c00286{left:152.337720pt;}
.x60_c00286{left:153.340920pt;}
.x8_c00286{left:162.246520pt;}
.x5b_c00286{left:163.315720pt;}
.x58_c00286{left:166.158120pt;}
.x41_c00286{left:172.568920pt;}
.x47_c00286{left:182.526120pt;}
.x20_c00286{left:191.990520pt;}
.x59_c00286{left:192.932120pt;}
.x3c_c00286{left:201.815720pt;}
.x5c_c00286{left:203.333720pt;}
.x21_c00286{left:210.813720pt;}
.x34_c00286{left:212.142520pt;}
.x4a_c00286{left:221.391320pt;}
.x48_c00286{left:223.582520pt;}
.x2c_c00286{left:231.590520pt;}
.x35_c00286{left:240.971320pt;}
.x36_c00286{left:249.841720pt;}
.x42_c00286{left:250.902120pt;}
.x2d_c00286{left:260.740520pt;}
.x9_c00286{left:267.261320pt;}
.x50_c00286{left:271.485320pt;}
.x22_c00286{left:280.729720pt;}
.x43_c00286{left:290.854120pt;}
.xa_c00286{left:295.504920pt;}
.x51_c00286{left:300.318520pt;}
.x61_c00286{left:301.594520pt;}
.x2_c00286{left:309.083320pt;}
.x19_c00286{left:310.508920pt;}
.x3_c00286{left:313.518520pt;}
.x4_c00286{left:319.537720pt;}
.x2e_c00286{left:329.486120pt;}
.x7_c00286{left:339.487320pt;}
.x5_c00286{left:341.709320pt;}
.xb_c00286{left:348.885720pt;}
.x12_c00286{left:351.455320pt;}
.x6_c00286{left:352.995320pt;}
.x55_c00286{left:359.590920pt;}
.x1a_c00286{left:368.175320pt;}
.x5d_c00286{left:369.988120pt;}
.x37_c00286{left:378.418520pt;}
.x14_c00286{left:379.408520pt;}
.x52_c00286{left:380.715320pt;}
.xc_c00286{left:381.978120pt;}
.x53_c00286{left:399.164520pt;}
.x23_c00286{left:407.740120pt;}
.x56_c00286{left:408.980920pt;}
.x38_c00286{left:417.129720pt;}
.xd_c00286{left:418.313320pt;}
.x54_c00286{left:425.973720pt;}
.x62_c00286{left:427.980120pt;}
.x24_c00286{left:436.885720pt;}
.x3d_c00286{left:438.130920pt;}
.xe_c00286{left:444.607720pt;}
.x4b_c00286{left:447.590920pt;}
.x2f_c00286{left:449.526920pt;}
.xf_c00286{left:455.686920pt;}
.x15_c00286{left:457.345720pt;}
.x30_c00286{left:465.256920pt;}
.x3e_c00286{left:466.651720pt;}
.x5e_c00286{left:467.593320pt;}
.x10_c00286{left:474.743320pt;}
.x25_c00286{left:475.684920pt;}
.x4c_c00286{left:476.789320pt;}
.x11_c00286{left:485.444120pt;}
.x13_c00286{left:490.922120pt;}
.x16_c00286{left:495.361720pt;}
.x5a_c00286{left:497.060120pt;}
.x17_c00286{left:505.811720pt;}
.x18_c00286{left:515.817320pt;}
.x26_c00286{left:525.514920pt;}
.x44_c00286{left:526.918520pt;}
.x5f_c00286{left:535.419320pt;}
.x27_c00286{left:545.200520pt;}
.x45_c00286{left:555.030120pt;}
.x31_c00286{left:564.234920pt;}
.x4d_c00286{left:565.176520pt;}
.x3f_c00286{left:573.699320pt;}
.x1d_c00286{left:575.745320pt;}
.x1e_c00286{left:580.440120pt;}
.x1b_c00286{left:582.864520pt;}
.x32_c00286{left:584.492520pt;}
.x28_c00286{left:593.604920pt;}
.x1c_c00286{left:603.051720pt;}
.x29_c00286{left:613.325720pt;}
.x57_c00286{left:623.080520pt;}
.x49_c00286{left:624.092520pt;}
.x39_c00286{left:625.421320pt;}
.x4e_c00286{left:632.954120pt;}
.x63_c00286{left:644.754920pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ea9bbf26e3e93c7dab66ef27.woff2')format("woff");}.ff1_c00287{font-family:ff1_c00287;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00287;src:url('chunks/assets/font_d8fe71d5857e7d45a08067b1.woff2')format("woff");}.ff2_c00287{font-family:ff2_c00287;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00287;src:url('chunks/assets/font_e2c6017692ffc3adc7644f53.woff2')format("woff");}.ff3_c00287{font-family:ff3_c00287;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00287;src:url('chunks/assets/font_2bc8039cf293f0b5e47c0d03.woff2')format("woff");}.ff4_c00287{font-family:ff4_c00287;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1a_c00287{transform:matrix(0.114865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114865,0.000000,0.000000,0.250000,0,0);}
.md_c00287{transform:matrix(0.132353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132353,0.000000,0.000000,0.250000,0,0);}
.m15_c00287{transform:matrix(0.132493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132493,0.000000,0.000000,0.250000,0,0);}
.m4b_c00287{transform:matrix(0.145011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145011,0.000000,0.000000,0.250000,0,0);}
.m1e_c00287{transform:matrix(0.146093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146093,0.000000,0.000000,0.250000,0,0);}
.m33_c00287{transform:matrix(0.148648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148648,0.000000,0.000000,0.250000,0,0);}
.m5_c00287{transform:matrix(0.151516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151516,0.000000,0.000000,0.250000,0,0);}
.m12_c00287{transform:matrix(0.171429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171429,0.000000,0.000000,0.250000,0,0);}
.m13_c00287{transform:matrix(0.180952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180952,0.000000,0.000000,0.250000,0,0);}
.m4_c00287{transform:matrix(0.182757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182757,0.000000,0.000000,0.250000,0,0);}
.m41_c00287{transform:matrix(0.194459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194459,0.000000,0.000000,0.250000,0,0);}
.m1f_c00287{transform:matrix(0.198191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198191,0.000000,0.000000,0.250000,0,0);}
.m11_c00287{transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);}
.m32_c00287{transform:matrix(0.200451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200451,0.000000,0.000000,0.250000,0,0);}
.m16_c00287{transform:matrix(0.204544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204544,0.000000,0.000000,0.250000,0,0);}
.m1c_c00287{transform:matrix(0.205032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205032,0.000000,0.000000,0.250000,0,0);}
.m18_c00287{transform:matrix(0.211796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211796,0.000000,0.000000,0.250000,0,0);}
.m8a_c00287{transform:matrix(0.213889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213889,0.000000,0.000000,0.250000,0,0);}
.m1d_c00287{transform:matrix(0.214075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214075,0.000000,0.000000,0.250000,0,0);}
.m20_c00287{transform:matrix(0.221615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221615,0.000000,0.000000,0.250000,0,0);}
.m19_c00287{transform:matrix(0.223735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223735,0.000000,0.000000,0.250000,0,0);}
.me_c00287{transform:matrix(0.230234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230234,0.000000,0.000000,0.250000,0,0);}
.m5c_c00287{transform:matrix(0.232318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232318,0.000000,0.000000,0.250000,0,0);}
.m1_c00287{transform:matrix(0.232638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232638,0.000000,0.000000,0.250000,0,0);}
.m2_c00287{transform:matrix(0.233617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233617,0.000000,0.000000,0.250000,0,0);}
.m5e_c00287{transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);}
.m10_c00287{transform:matrix(0.236162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236162,0.000000,0.000000,0.250000,0,0);}
.m80_c00287{transform:matrix(0.236967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236967,0.000000,0.000000,0.250000,0,0);}
.m53_c00287{transform:matrix(0.237310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237310,0.000000,0.000000,0.250000,0,0);}
.m3_c00287{transform:matrix(0.241557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241557,0.000000,0.000000,0.250000,0,0);}
.ma_c00287{transform:matrix(0.242932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242932,0.000000,0.000000,0.250000,0,0);}
.mf_c00287{transform:matrix(0.243581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243581,0.000000,0.000000,0.250000,0,0);}
.m34_c00287{transform:matrix(0.245946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245946,0.000000,0.000000,0.250000,0,0);}
.m49_c00287{transform:matrix(0.248210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248210,0.000000,0.000000,0.250000,0,0);}
.m9_c00287{transform:matrix(0.248339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248339,0.000000,0.000000,0.250000,0,0);}
.m0_c00287{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m60_c00287{transform:matrix(0.250712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250712,0.000000,0.000000,0.250000,0,0);}
.ma1_c00287{transform:matrix(0.252090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252090,0.000000,0.000000,0.250000,0,0);}
.m22_c00287{transform:matrix(0.252468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252468,0.000000,0.000000,0.250000,0,0);}
.m88_c00287{transform:matrix(0.253545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253545,0.000000,0.000000,0.250000,0,0);}
.m6c_c00287{transform:matrix(0.253667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253667,0.000000,0.000000,0.250000,0,0);}
.m94_c00287{transform:matrix(0.256057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256057,0.000000,0.000000,0.250000,0,0);}
.m54_c00287{transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);}
.m58_c00287{transform:matrix(0.256893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256893,0.000000,0.000000,0.250000,0,0);}
.m63_c00287{transform:matrix(0.258854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258854,0.000000,0.000000,0.250000,0,0);}
.m7f_c00287{transform:matrix(0.260756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260756,0.000000,0.000000,0.250000,0,0);}
.ma4_c00287{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m42_c00287{transform:matrix(0.261405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261405,0.000000,0.000000,0.250000,0,0);}
.m74_c00287{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.m81_c00287{transform:matrix(0.263165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263165,0.000000,0.000000,0.250000,0,0);}
.m70_c00287{transform:matrix(0.263203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263203,0.000000,0.000000,0.250000,0,0);}
.m27_c00287{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m99_c00287{transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);}
.m83_c00287{transform:matrix(0.264094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264094,0.000000,0.000000,0.250000,0,0);}
.m2e_c00287{transform:matrix(0.264128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264128,0.000000,0.000000,0.250000,0,0);}
.m91_c00287{transform:matrix(0.264292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264292,0.000000,0.000000,0.250000,0,0);}
.m6d_c00287{transform:matrix(0.264534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264534,0.000000,0.000000,0.250000,0,0);}
.m4f_c00287{transform:matrix(0.266178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266178,0.000000,0.000000,0.250000,0,0);}
.m71_c00287{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m30_c00287{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m93_c00287{transform:matrix(0.268624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268624,0.000000,0.000000,0.250000,0,0);}
.m7e_c00287{transform:matrix(0.268717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268717,0.000000,0.000000,0.250000,0,0);}
.m65_c00287{transform:matrix(0.269301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269301,0.000000,0.000000,0.250000,0,0);}
.ma5_c00287{transform:matrix(0.269647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269647,0.000000,0.000000,0.250000,0,0);}
.m69_c00287{transform:matrix(0.270571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270571,0.000000,0.000000,0.250000,0,0);}
.m3d_c00287{transform:matrix(0.271197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271197,0.000000,0.000000,0.250000,0,0);}
.m3f_c00287{transform:matrix(0.271388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271388,0.000000,0.000000,0.250000,0,0);}
.ma2_c00287{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m4c_c00287{transform:matrix(0.272643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272643,0.000000,0.000000,0.250000,0,0);}
.m24_c00287{transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);}
.m84_c00287{transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);}
.m28_c00287{transform:matrix(0.274156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274156,0.000000,0.000000,0.250000,0,0);}
.m39_c00287{transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);}
.m7a_c00287{transform:matrix(0.275391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275391,0.000000,0.000000,0.250000,0,0);}
.m2d_c00287{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m9d_c00287{transform:matrix(0.276199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276199,0.000000,0.000000,0.250000,0,0);}
.m7d_c00287{transform:matrix(0.276983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276983,0.000000,0.000000,0.250000,0,0);}
.m47_c00287{transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);}
.m3b_c00287{transform:matrix(0.278106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278106,0.000000,0.000000,0.250000,0,0);}
.m9c_c00287{transform:matrix(0.278825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278825,0.000000,0.000000,0.250000,0,0);}
.m59_c00287{transform:matrix(0.279088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279088,0.000000,0.000000,0.250000,0,0);}
.m67_c00287{transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);}
.m8_c00287{transform:matrix(0.282558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282558,0.000000,0.000000,0.250000,0,0);}
.m8c_c00287{transform:matrix(0.282754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282754,0.000000,0.000000,0.250000,0,0);}
.m29_c00287{transform:matrix(0.283029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283029,0.000000,0.000000,0.250000,0,0);}
.m9b_c00287{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m73_c00287{transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);}
.m96_c00287{transform:matrix(0.284390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284390,0.000000,0.000000,0.250000,0,0);}
.m17_c00287{transform:matrix(0.284820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284820,0.000000,0.000000,0.250000,0,0);}
.m52_c00287{transform:matrix(0.284841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284841,0.000000,0.000000,0.250000,0,0);}
.m79_c00287{transform:matrix(0.284930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284930,0.000000,0.000000,0.250000,0,0);}
.m3c_c00287{transform:matrix(0.286340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286340,0.000000,0.000000,0.250000,0,0);}
.m31_c00287{transform:matrix(0.286878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286878,0.000000,0.000000,0.250000,0,0);}
.m43_c00287{transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);}
.m2f_c00287{transform:matrix(0.287765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287765,0.000000,0.000000,0.250000,0,0);}
.m48_c00287{transform:matrix(0.288153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288153,0.000000,0.000000,0.250000,0,0);}
.m6a_c00287{transform:matrix(0.288455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288455,0.000000,0.000000,0.250000,0,0);}
.m21_c00287{transform:matrix(0.291415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291415,0.000000,0.000000,0.250000,0,0);}
.m57_c00287{transform:matrix(0.291525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291525,0.000000,0.000000,0.250000,0,0);}
.m92_c00287{transform:matrix(0.291645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291645,0.000000,0.000000,0.250000,0,0);}
.m86_c00287{transform:matrix(0.291699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291699,0.000000,0.000000,0.250000,0,0);}
.m55_c00287{transform:matrix(0.293491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293491,0.000000,0.000000,0.250000,0,0);}
.m7c_c00287{transform:matrix(0.293580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293580,0.000000,0.000000,0.250000,0,0);}
.mb_c00287{transform:matrix(0.294543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294543,0.000000,0.000000,0.250000,0,0);}
.m72_c00287{transform:matrix(0.294915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294915,0.000000,0.000000,0.250000,0,0);}
.m68_c00287{transform:matrix(0.295485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295485,0.000000,0.000000,0.250000,0,0);}
.m9e_c00287{transform:matrix(0.295669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295669,0.000000,0.000000,0.250000,0,0);}
.m5f_c00287{transform:matrix(0.295676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295676,0.000000,0.000000,0.250000,0,0);}
.m6e_c00287{transform:matrix(0.296254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296254,0.000000,0.000000,0.250000,0,0);}
.m64_c00287{transform:matrix(0.296991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296991,0.000000,0.000000,0.250000,0,0);}
.m3a_c00287{transform:matrix(0.298711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298711,0.000000,0.000000,0.250000,0,0);}
.ma7_c00287{transform:matrix(0.299448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299448,0.000000,0.000000,0.250000,0,0);}
.m66_c00287{transform:matrix(0.299459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299459,0.000000,0.000000,0.250000,0,0);}
.m14_c00287{transform:matrix(0.299710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299710,0.000000,0.000000,0.250000,0,0);}
.m6f_c00287{transform:matrix(0.300012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300012,0.000000,0.000000,0.250000,0,0);}
.m87_c00287{transform:matrix(0.300661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300661,0.000000,0.000000,0.250000,0,0);}
.m9f_c00287{transform:matrix(0.300768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300768,0.000000,0.000000,0.250000,0,0);}
.m1b_c00287{transform:matrix(0.300834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300834,0.000000,0.000000,0.250000,0,0);}
.m4e_c00287{transform:matrix(0.301222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301222,0.000000,0.000000,0.250000,0,0);}
.ma6_c00287{transform:matrix(0.302046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302046,0.000000,0.000000,0.250000,0,0);}
.m38_c00287{transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);}
.m98_c00287{transform:matrix(0.304424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304424,0.000000,0.000000,0.250000,0,0);}
.m8b_c00287{transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);}
.m9a_c00287{transform:matrix(0.305131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305131,0.000000,0.000000,0.250000,0,0);}
.m51_c00287{transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);}
.m45_c00287{transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);}
.m85_c00287{transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);}
.m35_c00287{transform:matrix(0.308685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308685,0.000000,0.000000,0.250000,0,0);}
.m37_c00287{transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);}
.m23_c00287{transform:matrix(0.311094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311094,0.000000,0.000000,0.250000,0,0);}
.m44_c00287{transform:matrix(0.311211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311211,0.000000,0.000000,0.250000,0,0);}
.m97_c00287{transform:matrix(0.311635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311635,0.000000,0.000000,0.250000,0,0);}
.m5a_c00287{transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);}
.m8d_c00287{transform:matrix(0.313705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313705,0.000000,0.000000,0.250000,0,0);}
.m62_c00287{transform:matrix(0.314050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314050,0.000000,0.000000,0.250000,0,0);}
.ma3_c00287{transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);}
.m90_c00287{transform:matrix(0.318022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318022,0.000000,0.000000,0.250000,0,0);}
.m61_c00287{transform:matrix(0.318696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318696,0.000000,0.000000,0.250000,0,0);}
.m77_c00287{transform:matrix(0.320074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320074,0.000000,0.000000,0.250000,0,0);}
.m40_c00287{transform:matrix(0.320939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320939,0.000000,0.000000,0.250000,0,0);}
.m36_c00287{transform:matrix(0.322425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322425,0.000000,0.000000,0.250000,0,0);}
.m4d_c00287{transform:matrix(0.322485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322485,0.000000,0.000000,0.250000,0,0);}
.m95_c00287{transform:matrix(0.322550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322550,0.000000,0.000000,0.250000,0,0);}
.m76_c00287{transform:matrix(0.322881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322881,0.000000,0.000000,0.250000,0,0);}
.m46_c00287{transform:matrix(0.323146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323146,0.000000,0.000000,0.250000,0,0);}
.m2c_c00287{transform:matrix(0.323416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323416,0.000000,0.000000,0.250000,0,0);}
.m8f_c00287{transform:matrix(0.325687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325687,0.000000,0.000000,0.250000,0,0);}
.m25_c00287{transform:matrix(0.326126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326126,0.000000,0.000000,0.250000,0,0);}
.m6b_c00287{transform:matrix(0.326989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326989,0.000000,0.000000,0.250000,0,0);}
.m82_c00287{transform:matrix(0.329405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329405,0.000000,0.000000,0.250000,0,0);}
.ma0_c00287{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m7b_c00287{transform:matrix(0.335394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335394,0.000000,0.000000,0.250000,0,0);}
.m56_c00287{transform:matrix(0.336226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336226,0.000000,0.000000,0.250000,0,0);}
.m50_c00287{transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);}
.m5b_c00287{transform:matrix(0.337661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337661,0.000000,0.000000,0.250000,0,0);}
.m2a_c00287{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m5d_c00287{transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);}
.m2b_c00287{transform:matrix(0.347013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347013,0.000000,0.000000,0.250000,0,0);}
.m89_c00287{transform:matrix(0.348761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348761,0.000000,0.000000,0.250000,0,0);}
.m6_c00287{transform:matrix(0.349997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349997,0.000000,0.000000,0.250000,0,0);}
.m26_c00287{transform:matrix(0.355222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355222,0.000000,0.000000,0.250000,0,0);}
.m78_c00287{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m3e_c00287{transform:matrix(0.358291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358291,0.000000,0.000000,0.250000,0,0);}
.m75_c00287{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m8e_c00287{transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);}
.m4a_c00287{transform:matrix(0.378961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378961,0.000000,0.000000,0.250000,0,0);}
.mc_c00287{transform:matrix(0.511083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511083,0.000000,0.000000,0.250000,0,0);}
.m7_c00287{transform:matrix(0.649989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.649989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.649989,0.000000,0.000000,0.250000,0,0);}
.v3_c00287{vertical-align:-82.684800px;}
.v1_c00287{vertical-align:-14.228280px;}
.v0_c00287{vertical-align:0.000000px;}
.v2_c00287{vertical-align:22.809600px;}
.lsb_c00287{letter-spacing:-2.993767px;}
.ls12_c00287{letter-spacing:-2.744280px;}
.ls17_c00287{letter-spacing:-2.633400px;}
.ls8_c00287{letter-spacing:-2.587946px;}
.ls19_c00287{letter-spacing:-2.501215px;}
.lsa_c00287{letter-spacing:-2.494800px;}
.ls1_c00287{letter-spacing:-2.453227px;}
.ls2_c00287{letter-spacing:-2.383927px;}
.lsf_c00287{letter-spacing:-1.801369px;}
.ls1a_c00287{letter-spacing:-1.685772px;}
.ls13_c00287{letter-spacing:-0.462609px;}
.lse_c00287{letter-spacing:-0.301832px;}
.ls16_c00287{letter-spacing:-0.180338px;}
.ls0_c00287{letter-spacing:0.000000px;}
.ls11_c00287{letter-spacing:2.249960px;}
.lsc_c00287{letter-spacing:2.628846px;}
.ls5_c00287{letter-spacing:2.791810px;}
.ls18_c00287{letter-spacing:3.010867px;}
.ls15_c00287{letter-spacing:3.112798px;}
.ls6_c00287{letter-spacing:3.504610px;}
.ls14_c00287{letter-spacing:3.920400px;}
.lsd_c00287{letter-spacing:4.078810px;}
.ls4_c00287{letter-spacing:7.128198px;}
.ls3_c00287{letter-spacing:47.044800px;}
.ls7_c00287{letter-spacing:48.470598px;}
.ls9_c00287{letter-spacing:49.896198px;}
.ls1b_c00287{letter-spacing:51.321798px;}
.ls10_c00287{letter-spacing:52.747398px;}
.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:-19.602000px;}
.ws0_c00287{word-spacing:-17.523050px;}
.ws3_c00287{word-spacing:0.000000px;}
.ws2_c00287{word-spacing:0.628056px;}
._0_c00287{margin-left:-12.826814px;}
._3_c00287{margin-left:-5.747687px;}
._1_c00287{width:5.755354px;}
._a_c00287{width:7.761600px;}
._9_c00287{width:9.408960px;}
._7_c00287{width:11.918808px;}
._6_c00287{width:20.855736px;}
._f_c00287{width:22.267476px;}
._b_c00287{width:23.997204px;}
._5_c00287{width:25.245000px;}
._c_c00287{width:26.686836px;}
._e_c00287{width:31.044420px;}
._4_c00287{width:34.421112px;}
._d_c00287{width:36.079560px;}
._8_c00287{width:38.613168px;}
._2_c00287{width:51.627708px;}
.fc0_c00287{color:transparent;}
.fs3_c00287{font-size:7.128198px;}
.fs23_c00287{font-size:20.790000px;}
.fs9_c00287{font-size:21.186000px;}
.fs1e_c00287{font-size:22.176000px;}
.fsa_c00287{font-size:22.374000px;}
.fs22_c00287{font-size:26.928000px;}
.fs1f_c00287{font-size:28.908000px;}
.fs24_c00287{font-size:30.888000px;}
.fs10_c00287{font-size:34.056198px;}
.fs1b_c00287{font-size:38.808000px;}
.fs20_c00287{font-size:39.600000px;}
.fs21_c00287{font-size:44.352000px;}
.fs25_c00287{font-size:45.144000px;}
.fs2_c00287{font-size:47.044800px;}
.fs5_c00287{font-size:48.470598px;}
.fsb_c00287{font-size:49.896198px;}
.fs1c_c00287{font-size:50.688000px;}
.fs19_c00287{font-size:51.321798px;}
.fs13_c00287{font-size:52.747398px;}
.fs4_c00287{font-size:55.836198px;}
.fs11_c00287{font-size:66.528000px;}
.fs1_c00287{font-size:68.112198px;}
.fs0_c00287{font-size:70.092198px;}
.fse_c00287{font-size:70.290000px;}
.fs16_c00287{font-size:70.884000px;}
.fsc_c00287{font-size:71.280000px;}
.fs1d_c00287{font-size:71.676198px;}
.fs7_c00287{font-size:72.864000px;}
.fs1a_c00287{font-size:74.844000px;}
.fs18_c00287{font-size:75.240000px;}
.fs14_c00287{font-size:75.438000px;}
.fs6_c00287{font-size:77.022198px;}
.fs15_c00287{font-size:78.408000px;}
.fs12_c00287{font-size:78.804000px;}
.fs17_c00287{font-size:80.784000px;}
.fsf_c00287{font-size:81.576198px;}
.fsd_c00287{font-size:85.536198px;}
.fs8_c00287{font-size:91.872198px;}
.fs26_c00287{font-size:139.590198px;}
.y0_c00287{bottom:0.000000px;}
.y2d_c00287{bottom:32.339385px;}
.y3b_c00287{bottom:36.972585px;}
.y3a_c00287{bottom:75.468735px;}
.y1_c00287{bottom:76.500000px;}
.y39_c00287{bottom:81.883935px;}
.y38_c00287{bottom:92.214585px;}
.y37_c00287{bottom:99.703935px;}
.y2c_c00287{bottom:143.184735px;}
.y2b_c00287{bottom:175.973535px;}
.y36_c00287{bottom:195.219135px;}
.y35_c00287{bottom:197.352585px;}
.y2a_c00287{bottom:208.762335px;}
.y29_c00287{bottom:241.546185px;}
.y28_c00287{bottom:273.983535px;}
.y27_c00287{bottom:306.054585px;}
.y26_c00287{bottom:370.562985px;}
.y25_c00287{bottom:402.638985px;}
.y34_c00287{bottom:410.123385px;}
.y33_c00287{bottom:421.533135px;}
.y32_c00287{bottom:424.022985px;}
.y31_c00287{bottom:432.225135px;}
.y24_c00287{bottom:434.363535px;}
.y30_c00287{bottom:443.986335px;}
.y23_c00287{bottom:469.642185px;}
.y22_c00287{bottom:502.074585px;}
.y2f_c00287{bottom:531.299385px;}
.y21_c00287{bottom:535.932585px;}
.y2e_c00287{bottom:537.357690px;}
.y20_c00287{bottom:568.721385px;}
.y1f_c00287{bottom:602.579385px;}
.y11_c00287{bottom:667.092735px;}
.y1e_c00287{bottom:668.518335px;}
.y10_c00287{bottom:689.902335px;}
.y1d_c00287{bottom:696.673935px;}
.y1c_c00287{bottom:731.244735px;}
.yf_c00287{bottom:731.596185px;}
.y1b_c00287{bottom:776.146185px;}
.ye_c00287{bottom:791.471385px;}
.y1a_c00287{bottom:795.391785px;}
.yd_c00287{bottom:796.109535px;}
.yc_c00287{bottom:822.478185px;}
.yb_c00287{bottom:823.903785px;}
.y19_c00287{bottom:833.531535px;}
.y13_c00287{bottom:845.292735px;}
.ya_c00287{bottom:847.782585px;}
.y9_c00287{bottom:859.192335px;}
.y8_c00287{bottom:860.261535px;}
.y7_c00287{bottom:860.612985px;}
.y12_c00287{bottom:867.028185px;}
.y6_c00287{bottom:868.815135px;}
.y5_c00287{bottom:873.448335px;}
.y17_c00287{bottom:889.842735px;}
.y3_c00287{bottom:894.475935px;}
.y18_c00287{bottom:896.252985px;}
.y4_c00287{bottom:900.886185px;}
.y16_c00287{bottom:924.413535px;}
.y2_c00287{bottom:924.764985px;}
.y15_c00287{bottom:937.951785px;}
.y14_c00287{bottom:1074.452985px;}
.h5_c00287{height:4.747380px;}
.h23_c00287{height:21.683320px;}
.hb_c00287{height:21.958857px;}
.ha_c00287{height:22.096336px;}
.h1e_c00287{height:23.128875px;}
.h22_c00287{height:28.085063px;}
.h1f_c00287{height:30.150141px;}
.h4_c00287{height:31.331837px;}
.h25_c00287{height:32.215219px;}
.h7_c00287{height:32.281418px;}
.hc_c00287{height:33.230868px;}
.h19_c00287{height:34.180317px;}
.h13_c00287{height:35.129767px;}
.h24_c00287{height:35.519550px;}
.h1b_c00287{height:40.475531px;}
.h20_c00287{height:41.301563px;}
.h21_c00287{height:46.257750px;}
.h26_c00287{height:47.083781px;}
.h1c_c00287{height:52.866000px;}
.h6_c00287{height:58.235410px;}
.h2_c00287{height:68.791659px;}
.h11_c00287{height:69.386625px;}
.hd_c00287{height:69.957422px;}
.h3_c00287{height:71.038894px;}
.hf_c00287{height:73.310273px;}
.h1a_c00287{height:73.455293px;}
.h18_c00287{height:73.843945px;}
.h16_c00287{height:73.929797px;}
.h1d_c00287{height:74.756035px;}
.h15_c00287{height:76.953164px;}
.h14_c00287{height:78.679477px;}
.h10_c00287{height:80.062577px;}
.h12_c00287{height:82.190109px;}
.h17_c00287{height:84.255188px;}
.he_c00287{height:89.211582px;}
.h9_c00287{height:90.167538px;}
.h8_c00287{height:98.804475px;}
.h27_c00287{height:145.588214px;}
.h1_c00287{height:1110.000000px;}
.h0_c00287{height:1263.000000px;}
.w1_c00287{width:763.500000px;}
.w0_c00287{width:892.500000px;}
.x0_c00287{left:0.000000px;}
.x36_c00287{left:59.336700px;}
.x6d_c00287{left:60.905850px;}
.x1_c00287{left:64.500000px;}
.x5e_c00287{left:80.438550px;}
.x37_c00287{left:91.551300px;}
.x57_c00287{left:92.670000px;}
.x64_c00287{left:94.763850px;}
.x52_c00287{left:102.985800px;}
.x2b_c00287{left:113.776800px;}
.xd_c00287{left:125.716200px;}
.x38_c00287{left:136.487400px;}
.x47_c00287{left:138.472350px;}
.x5c_c00287{left:146.847750px;}
.x8_c00287{left:148.134750px;}
.x9_c00287{left:151.337400px;}
.x69_c00287{left:158.039700px;}
.x39_c00287{left:168.954450px;}
.x2c_c00287{left:170.008800px;}
.x2d_c00287{left:180.275100px;}
.x48_c00287{left:191.373000px;}
.x6c_c00287{left:193.813350px;}
.xe_c00287{left:202.456050px;}
.x3a_c00287{left:212.598600px;}
.x65_c00287{left:213.821250px;}
.x49_c00287{left:224.844900px;}
.x12_c00287{left:229.468200px;}
.xf_c00287{left:234.294450px;}
.x5f_c00287{left:236.289300px;}
.x53_c00287{left:246.209100px;}
.x10_c00287{left:248.233650px;}
.x17_c00287{left:254.960700px;}
.x2e_c00287{left:257.688150px;}
.x40_c00287{left:267.850500px;}
.x60_c00287{left:269.073150px;}
.x66_c00287{left:278.166300px;}
.x58_c00287{left:280.492800px;}
.xa_c00287{left:290.387850px;}
.x41_c00287{left:300.268050px;}
.x3b_c00287{left:301.530300px;}
.x4a_c00287{left:313.212300px;}
.x42_c00287{left:323.805300px;}
.xb_c00287{left:333.096450px;}
.x3c_c00287{left:335.368500px;}
.x2_c00287{left:345.134850px;}
.x13_c00287{left:346.456500px;}
.x61_c00287{left:355.193250px;}
.x14_c00287{left:356.589150px;}
.x3_c00287{left:367.593000px;}
.x6a_c00287{left:370.567950px;}
.x18_c00287{left:373.023150px;}
.x7_c00287{left:375.522900px;}
.x11_c00287{left:376.928700px;}
.x15_c00287{left:378.978000px;}
.x4_c00287{left:380.755050px;}
.x43_c00287{left:389.080950px;}
.x5_c00287{left:390.382800px;}
.x4b_c00287{left:400.946100px;}
.x6_c00287{left:410.400600px;}
.x16_c00287{left:411.682650px;}
.x6b_c00287{left:413.073600px;}
.x2f_c00287{left:422.706300px;}
.x67_c00287{left:423.750750px;}
.xc_c00287{left:426.196050px;}
.x30_c00287{left:433.883400px;}
.x19_c00287{left:443.813100px;}
.x1a_c00287{left:447.842400px;}
.x44_c00287{left:455.851500px;}
.x1b_c00287{left:457.821600px;}
.x31_c00287{left:466.899900px;}
.x1c_c00287{left:469.112550px;}
.x1d_c00287{left:470.716350px;}
.x59_c00287{left:477.057300px;}
.x45_c00287{left:487.774050px;}
.x32_c00287{left:489.001650px;}
.x4c_c00287{left:491.818200px;}
.x68_c00287{left:499.693650px;}
.x25_c00287{left:508.801650px;}
.x3d_c00287{left:510.949950px;}
.x21_c00287{left:521.919150px;}
.x54_c00287{left:531.254850px;}
.x27_c00287{left:533.007150px;}
.x62_c00287{left:543.407100px;}
.x20_c00287{left:544.595100px;}
.x4d_c00287{left:554.608950px;}
.x3e_c00287{left:555.851400px;}
.x23_c00287{left:556.989900px;}
.x29_c00287{left:558.301650px;}
.x28_c00287{left:566.612700px;}
.x24_c00287{left:571.894350px;}
.x2a_c00287{left:575.032650px;}
.x33_c00287{left:576.542400px;}
.x22_c00287{left:577.864050px;}
.x26_c00287{left:581.650800px;}
.x5a_c00287{left:588.387750px;}
.x4e_c00287{left:595.995900px;}
.x46_c00287{left:599.158950px;}
.x5d_c00287{left:600.183600px;}
.x6e_c00287{left:602.029950px;}
.x63_c00287{left:610.187550px;}
.x4f_c00287{left:620.255850px;}
.x5b_c00287{left:632.611050px;}
.x50_c00287{left:641.026050px;}
.x1e_c00287{left:642.887250px;}
.x55_c00287{left:653.806950px;}
.x1f_c00287{left:665.612700px;}
.x56_c00287{left:675.784950px;}
.x34_c00287{left:687.169950px;}
.x35_c00287{left:698.832150px;}
.x3f_c00287{left:708.865800px;}
.x51_c00287{left:710.826000px;}
.x6f_c00287{left:761.695665px;}
@media print{
.v3_c00287{vertical-align:-73.497600pt;}
.v1_c00287{vertical-align:-12.647360pt;}
.v0_c00287{vertical-align:0.000000pt;}
.v2_c00287{vertical-align:20.275200pt;}
.lsb_c00287{letter-spacing:-2.661126pt;}
.ls12_c00287{letter-spacing:-2.439360pt;}
.ls17_c00287{letter-spacing:-2.340800pt;}
.ls8_c00287{letter-spacing:-2.300396pt;}
.ls19_c00287{letter-spacing:-2.223302pt;}
.lsa_c00287{letter-spacing:-2.217600pt;}
.ls1_c00287{letter-spacing:-2.180646pt;}
.ls2_c00287{letter-spacing:-2.119046pt;}
.lsf_c00287{letter-spacing:-1.601217pt;}
.ls1a_c00287{letter-spacing:-1.498464pt;}
.ls13_c00287{letter-spacing:-0.411208pt;}
.lse_c00287{letter-spacing:-0.268295pt;}
.ls16_c00287{letter-spacing:-0.160301pt;}
.ls0_c00287{letter-spacing:0.000000pt;}
.ls11_c00287{letter-spacing:1.999964pt;}
.lsc_c00287{letter-spacing:2.336752pt;}
.ls5_c00287{letter-spacing:2.481609pt;}
.ls18_c00287{letter-spacing:2.676326pt;}
.ls15_c00287{letter-spacing:2.766931pt;}
.ls6_c00287{letter-spacing:3.115209pt;}
.ls14_c00287{letter-spacing:3.484800pt;}
.lsd_c00287{letter-spacing:3.625609pt;}
.ls4_c00287{letter-spacing:6.336176pt;}
.ls3_c00287{letter-spacing:41.817600pt;}
.ls7_c00287{letter-spacing:43.084976pt;}
.ls9_c00287{letter-spacing:44.352176pt;}
.ls1b_c00287{letter-spacing:45.619376pt;}
.ls10_c00287{letter-spacing:46.886576pt;}
.ws1_c00287{word-spacing:-17.424000pt;}
.ws0_c00287{word-spacing:-15.576044pt;}
.ws3_c00287{word-spacing:0.000000pt;}
.ws2_c00287{word-spacing:0.558272pt;}
._0_c00287{margin-left:-11.401612pt;}
._3_c00287{margin-left:-5.109055pt;}
._1_c00287{width:5.115870pt;}
._a_c00287{width:6.899200pt;}
._9_c00287{width:8.363520pt;}
._7_c00287{width:10.594496pt;}
._6_c00287{width:18.538432pt;}
._f_c00287{width:19.793312pt;}
._b_c00287{width:21.330848pt;}
._5_c00287{width:22.440000pt;}
._c_c00287{width:23.721632pt;}
._e_c00287{width:27.595040pt;}
._4_c00287{width:30.596544pt;}
._d_c00287{width:32.070720pt;}
._8_c00287{width:34.322816pt;}
._2_c00287{width:45.891296pt;}
.fs3_c00287{font-size:6.336176pt;}
.fs23_c00287{font-size:18.480000pt;}
.fs9_c00287{font-size:18.832000pt;}
.fs1e_c00287{font-size:19.712000pt;}
.fsa_c00287{font-size:19.888000pt;}
.fs22_c00287{font-size:23.936000pt;}
.fs1f_c00287{font-size:25.696000pt;}
.fs24_c00287{font-size:27.456000pt;}
.fs10_c00287{font-size:30.272176pt;}
.fs1b_c00287{font-size:34.496000pt;}
.fs20_c00287{font-size:35.200000pt;}
.fs21_c00287{font-size:39.424000pt;}
.fs25_c00287{font-size:40.128000pt;}
.fs2_c00287{font-size:41.817600pt;}
.fs5_c00287{font-size:43.084976pt;}
.fsb_c00287{font-size:44.352176pt;}
.fs1c_c00287{font-size:45.056000pt;}
.fs19_c00287{font-size:45.619376pt;}
.fs13_c00287{font-size:46.886576pt;}
.fs4_c00287{font-size:49.632176pt;}
.fs11_c00287{font-size:59.136000pt;}
.fs1_c00287{font-size:60.544176pt;}
.fs0_c00287{font-size:62.304176pt;}
.fse_c00287{font-size:62.480000pt;}
.fs16_c00287{font-size:63.008000pt;}
.fsc_c00287{font-size:63.360000pt;}
.fs1d_c00287{font-size:63.712176pt;}
.fs7_c00287{font-size:64.768000pt;}
.fs1a_c00287{font-size:66.528000pt;}
.fs18_c00287{font-size:66.880000pt;}
.fs14_c00287{font-size:67.056000pt;}
.fs6_c00287{font-size:68.464176pt;}
.fs15_c00287{font-size:69.696000pt;}
.fs12_c00287{font-size:70.048000pt;}
.fs17_c00287{font-size:71.808000pt;}
.fsf_c00287{font-size:72.512176pt;}
.fsd_c00287{font-size:76.032176pt;}
.fs8_c00287{font-size:81.664176pt;}
.fs26_c00287{font-size:124.080176pt;}
.y0_c00287{bottom:0.000000pt;}
.y2d_c00287{bottom:28.746120pt;}
.y3b_c00287{bottom:32.864520pt;}
.y3a_c00287{bottom:67.083320pt;}
.y1_c00287{bottom:68.000000pt;}
.y39_c00287{bottom:72.785720pt;}
.y38_c00287{bottom:81.968520pt;}
.y37_c00287{bottom:88.625720pt;}
.y2c_c00287{bottom:127.275320pt;}
.y2b_c00287{bottom:156.420920pt;}
.y36_c00287{bottom:173.528120pt;}
.y35_c00287{bottom:175.424520pt;}
.y2a_c00287{bottom:185.566520pt;}
.y29_c00287{bottom:214.707720pt;}
.y28_c00287{bottom:243.540920pt;}
.y27_c00287{bottom:272.048520pt;}
.y26_c00287{bottom:329.389320pt;}
.y25_c00287{bottom:357.901320pt;}
.y34_c00287{bottom:364.554120pt;}
.y33_c00287{bottom:374.696120pt;}
.y32_c00287{bottom:376.909320pt;}
.y31_c00287{bottom:384.200120pt;}
.y24_c00287{bottom:386.100920pt;}
.y30_c00287{bottom:394.654520pt;}
.y23_c00287{bottom:417.459720pt;}
.y22_c00287{bottom:446.288520pt;}
.y2f_c00287{bottom:472.266120pt;}
.y21_c00287{bottom:476.384520pt;}
.y2e_c00287{bottom:477.651280pt;}
.y20_c00287{bottom:505.530120pt;}
.y1f_c00287{bottom:535.626120pt;}
.y11_c00287{bottom:592.971320pt;}
.y1e_c00287{bottom:594.238520pt;}
.y10_c00287{bottom:613.246520pt;}
.y1d_c00287{bottom:619.265720pt;}
.y1c_c00287{bottom:649.995320pt;}
.yf_c00287{bottom:650.307720pt;}
.y1b_c00287{bottom:689.907720pt;}
.ye_c00287{bottom:703.530120pt;}
.y1a_c00287{bottom:707.014920pt;}
.yd_c00287{bottom:707.652920pt;}
.yc_c00287{bottom:731.091720pt;}
.yb_c00287{bottom:732.358920pt;}
.y19_c00287{bottom:740.916920pt;}
.y13_c00287{bottom:751.371320pt;}
.ya_c00287{bottom:753.584520pt;}
.y9_c00287{bottom:763.726520pt;}
.y8_c00287{bottom:764.676920pt;}
.y7_c00287{bottom:764.989320pt;}
.y12_c00287{bottom:770.691720pt;}
.y6_c00287{bottom:772.280120pt;}
.y5_c00287{bottom:776.398520pt;}
.y17_c00287{bottom:790.971320pt;}
.y3_c00287{bottom:795.089720pt;}
.y18_c00287{bottom:796.669320pt;}
.y4_c00287{bottom:800.787720pt;}
.y16_c00287{bottom:821.700920pt;}
.y2_c00287{bottom:822.013320pt;}
.y15_c00287{bottom:833.734920pt;}
.y14_c00287{bottom:955.069320pt;}
.h5_c00287{height:4.219893pt;}
.h23_c00287{height:19.274063pt;}
.hb_c00287{height:19.518984pt;}
.ha_c00287{height:19.641188pt;}
.h1e_c00287{height:20.559000pt;}
.h22_c00287{height:24.964500pt;}
.h1f_c00287{height:26.800125pt;}
.h4_c00287{height:27.850522pt;}
.h25_c00287{height:28.635750pt;}
.h7_c00287{height:28.694594pt;}
.hc_c00287{height:29.538549pt;}
.h19_c00287{height:30.382504pt;}
.h13_c00287{height:31.226460pt;}
.h24_c00287{height:31.572934pt;}
.h1b_c00287{height:35.978250pt;}
.h20_c00287{height:36.712500pt;}
.h21_c00287{height:41.118000pt;}
.h26_c00287{height:41.852250pt;}
.h1c_c00287{height:46.992000pt;}
.h6_c00287{height:51.764809pt;}
.h2_c00287{height:61.148141pt;}
.h11_c00287{height:61.677000pt;}
.hd_c00287{height:62.184375pt;}
.h3_c00287{height:63.145684pt;}
.hf_c00287{height:65.164688pt;}
.h1a_c00287{height:65.293594pt;}
.h18_c00287{height:65.639063pt;}
.h16_c00287{height:65.715375pt;}
.h1d_c00287{height:66.449809pt;}
.h15_c00287{height:68.402813pt;}
.h14_c00287{height:69.937313pt;}
.h10_c00287{height:71.166735pt;}
.h12_c00287{height:73.057875pt;}
.h17_c00287{height:74.893500pt;}
.he_c00287{height:79.299184pt;}
.h9_c00287{height:80.148923pt;}
.h8_c00287{height:87.826200pt;}
.h27_c00287{height:129.411746pt;}
.h1_c00287{height:986.666667pt;}
.h0_c00287{height:1122.666667pt;}
.w1_c00287{width:678.666667pt;}
.w0_c00287{width:793.333333pt;}
.x0_c00287{left:0.000000pt;}
.x36_c00287{left:52.743733pt;}
.x6d_c00287{left:54.138533pt;}
.x1_c00287{left:57.333333pt;}
.x5e_c00287{left:71.500933pt;}
.x37_c00287{left:81.378933pt;}
.x57_c00287{left:82.373333pt;}
.x64_c00287{left:84.234533pt;}
.x52_c00287{left:91.542933pt;}
.x2b_c00287{left:101.134933pt;}
.xd_c00287{left:111.747733pt;}
.x38_c00287{left:121.322133pt;}
.x47_c00287{left:123.086533pt;}
.x5c_c00287{left:130.531333pt;}
.x8_c00287{left:131.675333pt;}
.x9_c00287{left:134.522133pt;}
.x69_c00287{left:140.479733pt;}
.x39_c00287{left:150.181733pt;}
.x2c_c00287{left:151.118933pt;}
.x2d_c00287{left:160.244533pt;}
.x48_c00287{left:170.109333pt;}
.x6c_c00287{left:172.278533pt;}
.xe_c00287{left:179.960933pt;}
.x3a_c00287{left:188.976533pt;}
.x65_c00287{left:190.063333pt;}
.x49_c00287{left:199.862133pt;}
.x12_c00287{left:203.971733pt;}
.xf_c00287{left:208.261733pt;}
.x5f_c00287{left:210.034933pt;}
.x53_c00287{left:218.852533pt;}
.x10_c00287{left:220.652133pt;}
.x17_c00287{left:226.631733pt;}
.x2e_c00287{left:229.056133pt;}
.x40_c00287{left:238.089333pt;}
.x60_c00287{left:239.176133pt;}
.x66_c00287{left:247.258933pt;}
.x58_c00287{left:249.326933pt;}
.xa_c00287{left:258.122533pt;}
.x41_c00287{left:266.904933pt;}
.x3b_c00287{left:268.026933pt;}
.x4a_c00287{left:278.410933pt;}
.x42_c00287{left:287.826933pt;}
.xb_c00287{left:296.085733pt;}
.x3c_c00287{left:298.105333pt;}
.x2_c00287{left:306.786533pt;}
.x13_c00287{left:307.961333pt;}
.x61_c00287{left:315.727333pt;}
.x14_c00287{left:316.968133pt;}
.x3_c00287{left:326.749333pt;}
.x6a_c00287{left:329.393733pt;}
.x18_c00287{left:331.576133pt;}
.x7_c00287{left:333.798133pt;}
.x11_c00287{left:335.047733pt;}
.x15_c00287{left:336.869333pt;}
.x4_c00287{left:338.448933pt;}
.x43_c00287{left:345.849733pt;}
.x5_c00287{left:347.006933pt;}
.x4b_c00287{left:356.396533pt;}
.x6_c00287{left:364.800533pt;}
.x16_c00287{left:365.940133pt;}
.x6b_c00287{left:367.176533pt;}
.x2f_c00287{left:375.738933pt;}
.x67_c00287{left:376.667333pt;}
.xc_c00287{left:378.840933pt;}
.x30_c00287{left:385.674133pt;}
.x19_c00287{left:394.500533pt;}
.x1a_c00287{left:398.082133pt;}
.x44_c00287{left:405.201333pt;}
.x1b_c00287{left:406.952533pt;}
.x31_c00287{left:415.022133pt;}
.x1c_c00287{left:416.988933pt;}
.x1d_c00287{left:418.414533pt;}
.x59_c00287{left:424.050933pt;}
.x45_c00287{left:433.576933pt;}
.x32_c00287{left:434.668133pt;}
.x4c_c00287{left:437.171733pt;}
.x68_c00287{left:444.172133pt;}
.x25_c00287{left:452.268133pt;}
.x3d_c00287{left:454.177733pt;}
.x21_c00287{left:463.928133pt;}
.x54_c00287{left:472.226533pt;}
.x27_c00287{left:473.784133pt;}
.x62_c00287{left:483.028533pt;}
.x20_c00287{left:484.084533pt;}
.x4d_c00287{left:492.985733pt;}
.x3e_c00287{left:494.090133pt;}
.x23_c00287{left:495.102133pt;}
.x29_c00287{left:496.268133pt;}
.x28_c00287{left:503.655733pt;}
.x24_c00287{left:508.350533pt;}
.x2a_c00287{left:511.140133pt;}
.x33_c00287{left:512.482133pt;}
.x22_c00287{left:513.656933pt;}
.x26_c00287{left:517.022933pt;}
.x5a_c00287{left:523.011333pt;}
.x4e_c00287{left:529.774133pt;}
.x46_c00287{left:532.585733pt;}
.x5d_c00287{left:533.496533pt;}
.x6e_c00287{left:535.137733pt;}
.x63_c00287{left:542.388933pt;}
.x4f_c00287{left:551.338533pt;}
.x5b_c00287{left:562.320933pt;}
.x50_c00287{left:569.800933pt;}
.x1e_c00287{left:571.455333pt;}
.x55_c00287{left:581.161733pt;}
.x1f_c00287{left:591.655733pt;}
.x56_c00287{left:600.697733pt;}
.x34_c00287{left:610.817733pt;}
.x35_c00287{left:621.184133pt;}
.x3f_c00287{left:630.102933pt;}
.x51_c00287{left:631.845333pt;}
.x6f_c00287{left:677.062813pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c7fe3587c22005019fa2ec04.woff2')format("woff");}.ff1_c00288{font-family:ff1_c00288;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00288;src:url('chunks/assets/font_07724b1077d554e028ceab78.woff2')format("woff");}.ff2_c00288{font-family:ff2_c00288;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00288;src:url('chunks/assets/font_e28a252e9d7eb214443b317b.woff2')format("woff");}.ff3_c00288{font-family:ff3_c00288;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00288;src:url('chunks/assets/font_fa180a2e60a59cfc14714869.woff2')format("woff");}.ff4_c00288{font-family:ff4_c00288;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.md_c00288{transform:matrix(0.142442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142442,0.000000,0.000000,0.250000,0,0);}
.m5_c00288{transform:matrix(0.144241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144241,0.000000,0.000000,0.250000,0,0);}
.mb_c00288{transform:matrix(0.155039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155039,0.000000,0.000000,0.250000,0,0);}
.mc_c00288{transform:matrix(0.162790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162790,0.000000,0.000000,0.250000,0,0);}
.m4_c00288{transform:matrix(0.197975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197975,0.000000,0.000000,0.250000,0,0);}
.m3e_c00288{transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);}
.m84_c00288{transform:matrix(0.245974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245974,0.000000,0.000000,0.250000,0,0);}
.m0_c00288{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m45_c00288{transform:matrix(0.250443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250443,0.000000,0.000000,0.250000,0,0);}
.m4c_c00288{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.m5b_c00288{transform:matrix(0.251961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251961,0.000000,0.000000,0.250000,0,0);}
.me_c00288{transform:matrix(0.255691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255691,0.000000,0.000000,0.250000,0,0);}
.m2_c00288{transform:matrix(0.256680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256680,0.000000,0.000000,0.250000,0,0);}
.ma3_c00288{transform:matrix(0.256900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256900,0.000000,0.000000,0.250000,0,0);}
.m92_c00288{transform:matrix(0.257794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257794,0.000000,0.000000,0.250000,0,0);}
.m54_c00288{transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);}
.m23_c00288{transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);}
.m1f_c00288{transform:matrix(0.261057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261057,0.000000,0.000000,0.250000,0,0);}
.m4f_c00288{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.m56_c00288{transform:matrix(0.262241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262241,0.000000,0.000000,0.250000,0,0);}
.m5d_c00288{transform:matrix(0.262807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262807,0.000000,0.000000,0.250000,0,0);}
.m2f_c00288{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m48_c00288{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m79_c00288{transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);}
.m3a_c00288{transform:matrix(0.266178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266178,0.000000,0.000000,0.250000,0,0);}
.m1c_c00288{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m9d_c00288{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.m8a_c00288{transform:matrix(0.267199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267199,0.000000,0.000000,0.250000,0,0);}
.m1d_c00288{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m69_c00288{transform:matrix(0.267925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267925,0.000000,0.000000,0.250000,0,0);}
.m36_c00288{transform:matrix(0.268484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268484,0.000000,0.000000,0.250000,0,0);}
.m24_c00288{transform:matrix(0.269646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269646,0.000000,0.000000,0.250000,0,0);}
.m95_c00288{transform:matrix(0.270278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270278,0.000000,0.000000,0.250000,0,0);}
.m63_c00288{transform:matrix(0.270405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270405,0.000000,0.000000,0.250000,0,0);}
.m19_c00288{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m18_c00288{transform:matrix(0.271258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271258,0.000000,0.000000,0.250000,0,0);}
.m89_c00288{transform:matrix(0.271388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271388,0.000000,0.000000,0.250000,0,0);}
.m80_c00288{transform:matrix(0.271952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271952,0.000000,0.000000,0.250000,0,0);}
.m66_c00288{transform:matrix(0.272153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272153,0.000000,0.000000,0.250000,0,0);}
.m33_c00288{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.maa_c00288{transform:matrix(0.272581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272581,0.000000,0.000000,0.250000,0,0);}
.m6b_c00288{transform:matrix(0.272862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272862,0.000000,0.000000,0.250000,0,0);}
.m8d_c00288{transform:matrix(0.273001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273001,0.000000,0.000000,0.250000,0,0);}
.m20_c00288{transform:matrix(0.273592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273592,0.000000,0.000000,0.250000,0,0);}
.m22_c00288{transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);}
.m9b_c00288{transform:matrix(0.274278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274278,0.000000,0.000000,0.250000,0,0);}
.m13_c00288{transform:matrix(0.274637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274637,0.000000,0.000000,0.250000,0,0);}
.m8_c00288{transform:matrix(0.274647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274647,0.000000,0.000000,0.250000,0,0);}
.m29_c00288{transform:matrix(0.274708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274708,0.000000,0.000000,0.250000,0,0);}
.m76_c00288{transform:matrix(0.275433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275433,0.000000,0.000000,0.250000,0,0);}
.m53_c00288{transform:matrix(0.275771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275771,0.000000,0.000000,0.250000,0,0);}
.m74_c00288{transform:matrix(0.276319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276319,0.000000,0.000000,0.250000,0,0);}
.ma8_c00288{transform:matrix(0.276488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276488,0.000000,0.000000,0.250000,0,0);}
.m2a_c00288{transform:matrix(0.276511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276511,0.000000,0.000000,0.250000,0,0);}
.m72_c00288{transform:matrix(0.276607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276607,0.000000,0.000000,0.250000,0,0);}
.m83_c00288{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m6f_c00288{transform:matrix(0.277352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277352,0.000000,0.000000,0.250000,0,0);}
.m65_c00288{transform:matrix(0.277367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277367,0.000000,0.000000,0.250000,0,0);}
.m35_c00288{transform:matrix(0.277708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277708,0.000000,0.000000,0.250000,0,0);}
.m70_c00288{transform:matrix(0.277747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277747,0.000000,0.000000,0.250000,0,0);}
.ma2_c00288{transform:matrix(0.278106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278106,0.000000,0.000000,0.250000,0,0);}
.m49_c00288{transform:matrix(0.278431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278431,0.000000,0.000000,0.250000,0,0);}
.m85_c00288{transform:matrix(0.278510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278510,0.000000,0.000000,0.250000,0,0);}
.m51_c00288{transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);}
.m71_c00288{transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);}
.m58_c00288{transform:matrix(0.279975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279975,0.000000,0.000000,0.250000,0,0);}
.m9f_c00288{transform:matrix(0.280684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280684,0.000000,0.000000,0.250000,0,0);}
.m7a_c00288{transform:matrix(0.281216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281216,0.000000,0.000000,0.250000,0,0);}
.m3c_c00288{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.m61_c00288{transform:matrix(0.281605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281605,0.000000,0.000000,0.250000,0,0);}
.m8e_c00288{transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);}
.m44_c00288{transform:matrix(0.281891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281891,0.000000,0.000000,0.250000,0,0);}
.m1_c00288{transform:matrix(0.282254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282254,0.000000,0.000000,0.250000,0,0);}
.m11_c00288{transform:matrix(0.282422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282422,0.000000,0.000000,0.250000,0,0);}
.m3f_c00288{transform:matrix(0.283582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283582,0.000000,0.000000,0.250000,0,0);}
.m8f_c00288{transform:matrix(0.284181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284181,0.000000,0.000000,0.250000,0,0);}
.m7d_c00288{transform:matrix(0.284681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284681,0.000000,0.000000,0.250000,0,0);}
.m81_c00288{transform:matrix(0.285480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285480,0.000000,0.000000,0.250000,0,0);}
.m86_c00288{transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);}
.m6_c00288{transform:matrix(0.285787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285787,0.000000,0.000000,0.250000,0,0);}
.m6c_c00288{transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);}
.ma7_c00288{transform:matrix(0.286827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286827,0.000000,0.000000,0.250000,0,0);}
.m9_c00288{transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);}
.ma6_c00288{transform:matrix(0.287129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287129,0.000000,0.000000,0.250000,0,0);}
.m9c_c00288{transform:matrix(0.287254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287254,0.000000,0.000000,0.250000,0,0);}
.m15_c00288{transform:matrix(0.287521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287521,0.000000,0.000000,0.250000,0,0);}
.m26_c00288{transform:matrix(0.288557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288557,0.000000,0.000000,0.250000,0,0);}
.mac_c00288{transform:matrix(0.288899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288899,0.000000,0.000000,0.250000,0,0);}
.m78_c00288{transform:matrix(0.289424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289424,0.000000,0.000000,0.250000,0,0);}
.m73_c00288{transform:matrix(0.289516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289516,0.000000,0.000000,0.250000,0,0);}
.m46_c00288{transform:matrix(0.289652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289652,0.000000,0.000000,0.250000,0,0);}
.m27_c00288{transform:matrix(0.289713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289713,0.000000,0.000000,0.250000,0,0);}
.m6e_c00288{transform:matrix(0.289868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289868,0.000000,0.000000,0.250000,0,0);}
.m4b_c00288{transform:matrix(0.289896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289896,0.000000,0.000000,0.250000,0,0);}
.m4d_c00288{transform:matrix(0.294443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294443,0.000000,0.000000,0.250000,0,0);}
.mae_c00288{transform:matrix(0.295174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295174,0.000000,0.000000,0.250000,0,0);}
.m8c_c00288{transform:matrix(0.295862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295862,0.000000,0.000000,0.250000,0,0);}
.m4e_c00288{transform:matrix(0.296547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296547,0.000000,0.000000,0.250000,0,0);}
.m1b_c00288{transform:matrix(0.296778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296778,0.000000,0.000000,0.250000,0,0);}
.m39_c00288{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m87_c00288{transform:matrix(0.297203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297203,0.000000,0.000000,0.250000,0,0);}
.m96_c00288{transform:matrix(0.297290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297290,0.000000,0.000000,0.250000,0,0);}
.m21_c00288{transform:matrix(0.297336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297336,0.000000,0.000000,0.250000,0,0);}
.m97_c00288{transform:matrix(0.297811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297811,0.000000,0.000000,0.250000,0,0);}
.mb0_c00288{transform:matrix(0.298003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298003,0.000000,0.000000,0.250000,0,0);}
.m7_c00288{transform:matrix(0.298085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298085,0.000000,0.000000,0.250000,0,0);}
.m5e_c00288{transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298144,0.000000,0.000000,0.250000,0,0);}
.m94_c00288{transform:matrix(0.298150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298150,0.000000,0.000000,0.250000,0,0);}
.m32_c00288{transform:matrix(0.298987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298987,0.000000,0.000000,0.250000,0,0);}
.m4a_c00288{transform:matrix(0.300064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300064,0.000000,0.000000,0.250000,0,0);}
.ma_c00288{transform:matrix(0.300323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300323,0.000000,0.000000,0.250000,0,0);}
.mf_c00288{transform:matrix(0.300661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300661,0.000000,0.000000,0.250000,0,0);}
.m3b_c00288{transform:matrix(0.300674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300674,0.000000,0.000000,0.250000,0,0);}
.m90_c00288{transform:matrix(0.300944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300944,0.000000,0.000000,0.250000,0,0);}
.m67_c00288{transform:matrix(0.301074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301074,0.000000,0.000000,0.250000,0,0);}
.m14_c00288{transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);}
.mb1_c00288{transform:matrix(0.302857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302857,0.000000,0.000000,0.250000,0,0);}
.ma9_c00288{transform:matrix(0.303100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303100,0.000000,0.000000,0.250000,0,0);}
.m7c_c00288{transform:matrix(0.303542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303542,0.000000,0.000000,0.250000,0,0);}
.m62_c00288{transform:matrix(0.304980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304980,0.000000,0.000000,0.250000,0,0);}
.m93_c00288{transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);}
.m28_c00288{transform:matrix(0.305132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305132,0.000000,0.000000,0.250000,0,0);}
.m3_c00288{transform:matrix(0.305577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305577,0.000000,0.000000,0.250000,0,0);}
.m8b_c00288{transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);}
.mb3_c00288{transform:matrix(0.306410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306410,0.000000,0.000000,0.250000,0,0);}
.m5c_c00288{transform:matrix(0.306840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306840,0.000000,0.000000,0.250000,0,0);}
.m34_c00288{transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);}
.ma5_c00288{transform:matrix(0.308448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308448,0.000000,0.000000,0.250000,0,0);}
.m7f_c00288{transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);}
.m1e_c00288{transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);}
.m52_c00288{transform:matrix(0.309374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309374,0.000000,0.000000,0.250000,0,0);}
.m16_c00288{transform:matrix(0.309540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309540,0.000000,0.000000,0.250000,0,0);}
.m57_c00288{transform:matrix(0.310270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310270,0.000000,0.000000,0.250000,0,0);}
.m50_c00288{transform:matrix(0.310673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310673,0.000000,0.000000,0.250000,0,0);}
.m75_c00288{transform:matrix(0.312047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312047,0.000000,0.000000,0.250000,0,0);}
.m64_c00288{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.m37_c00288{transform:matrix(0.312653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312653,0.000000,0.000000,0.250000,0,0);}
.m43_c00288{transform:matrix(0.312825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312825,0.000000,0.000000,0.250000,0,0);}
.m98_c00288{transform:matrix(0.314242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314242,0.000000,0.000000,0.250000,0,0);}
.m1a_c00288{transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);}
.mb2_c00288{transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);}
.m5a_c00288{transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);}
.m40_c00288{transform:matrix(0.316333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316333,0.000000,0.000000,0.250000,0,0);}
.m77_c00288{transform:matrix(0.317996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317996,0.000000,0.000000,0.250000,0,0);}
.m9e_c00288{transform:matrix(0.318403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318403,0.000000,0.000000,0.250000,0,0);}
.m7b_c00288{transform:matrix(0.318957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318957,0.000000,0.000000,0.250000,0,0);}
.m6a_c00288{transform:matrix(0.319048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319048,0.000000,0.000000,0.250000,0,0);}
.m5f_c00288{transform:matrix(0.319290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319290,0.000000,0.000000,0.250000,0,0);}
.m42_c00288{transform:matrix(0.319299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319299,0.000000,0.000000,0.250000,0,0);}
.m59_c00288{transform:matrix(0.320090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320090,0.000000,0.000000,0.250000,0,0);}
.m88_c00288{transform:matrix(0.320617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320617,0.000000,0.000000,0.250000,0,0);}
.m68_c00288{transform:matrix(0.320733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320733,0.000000,0.000000,0.250000,0,0);}
.m99_c00288{transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);}
.m2e_c00288{transform:matrix(0.322389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322389,0.000000,0.000000,0.250000,0,0);}
.m10_c00288{transform:matrix(0.323414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323414,0.000000,0.000000,0.250000,0,0);}
.m41_c00288{transform:matrix(0.323587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323587,0.000000,0.000000,0.250000,0,0);}
.m17_c00288{transform:matrix(0.324420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324420,0.000000,0.000000,0.250000,0,0);}
.m2b_c00288{transform:matrix(0.326137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326137,0.000000,0.000000,0.250000,0,0);}
.m2d_c00288{transform:matrix(0.326313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326313,0.000000,0.000000,0.250000,0,0);}
.m2c_c00288{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m25_c00288{transform:matrix(0.327297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327297,0.000000,0.000000,0.250000,0,0);}
.maf_c00288{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.m30_c00288{transform:matrix(0.331342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331342,0.000000,0.000000,0.250000,0,0);}
.m55_c00288{transform:matrix(0.332220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332220,0.000000,0.000000,0.250000,0,0);}
.m12_c00288{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.ma1_c00288{transform:matrix(0.333340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333340,0.000000,0.000000,0.250000,0,0);}
.m38_c00288{transform:matrix(0.335559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335559,0.000000,0.000000,0.250000,0,0);}
.m82_c00288{transform:matrix(0.336348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336348,0.000000,0.000000,0.250000,0,0);}
.ma0_c00288{transform:matrix(0.336540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336540,0.000000,0.000000,0.250000,0,0);}
.m3d_c00288{transform:matrix(0.338222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338222,0.000000,0.000000,0.250000,0,0);}
.m31_c00288{transform:matrix(0.342985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342985,0.000000,0.000000,0.250000,0,0);}
.m9a_c00288{transform:matrix(0.343686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343686,0.000000,0.000000,0.250000,0,0);}
.mab_c00288{transform:matrix(0.345198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345198,0.000000,0.000000,0.250000,0,0);}
.m7e_c00288{transform:matrix(0.350956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350956,0.000000,0.000000,0.250000,0,0);}
.m47_c00288{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m6d_c00288{transform:matrix(0.355345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355345,0.000000,0.000000,0.250000,0,0);}
.mad_c00288{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m60_c00288{transform:matrix(0.364198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364198,0.000000,0.000000,0.250000,0,0);}
.ma4_c00288{transform:matrix(0.370080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370080,0.000000,0.000000,0.250000,0,0);}
.m91_c00288{transform:matrix(0.370364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370364,0.000000,0.000000,0.250000,0,0);}
.v0_c00288{vertical-align:0.000000px;}
.v1_c00288{vertical-align:1.425600px;}
.lsf_c00288{letter-spacing:-2.744280px;}
.ls8_c00288{letter-spacing:-2.709630px;}
.lsd_c00288{letter-spacing:-2.642350px;}
.ls7_c00288{letter-spacing:-2.224530px;}
.lsb_c00288{letter-spacing:-1.729415px;}
.ls16_c00288{letter-spacing:-0.274428px;}
.ls5_c00288{letter-spacing:0.000000px;}
.ls4_c00288{letter-spacing:0.227383px;}
.ls1_c00288{letter-spacing:1.215245px;}
.ls9_c00288{letter-spacing:1.599523px;}
.ls2_c00288{letter-spacing:2.054290px;}
.ls17_c00288{letter-spacing:2.744280px;}
.ls12_c00288{letter-spacing:2.752121px;}
.ls14_c00288{letter-spacing:3.112798px;}
.lse_c00288{letter-spacing:3.191206px;}
.ls13_c00288{letter-spacing:3.206887px;}
.ls0_c00288{letter-spacing:3.449952px;}
.ls6_c00288{letter-spacing:3.920400px;}
.ls15_c00288{letter-spacing:3.940200px;}
.lsa_c00288{letter-spacing:4.078810px;}
.ls10_c00288{letter-spacing:4.435200px;}
.ls3_c00288{letter-spacing:10.976328px;}
.ls11_c00288{letter-spacing:24.235398px;}
.lsc_c00288{letter-spacing:61.300998px;}
.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;}
}
.ws3_c00288{word-spacing:-23.051952px;}
.ws4_c00288{word-spacing:-22.793206px;}
.ws0_c00288{word-spacing:-21.201523px;}
.ws5_c00288{word-spacing:-19.829383px;}
.ws2_c00288{word-spacing:-19.602000px;}
.ws1_c00288{word-spacing:-16.959650px;}
.ws6_c00288{word-spacing:0.000000px;}
._8_c00288{margin-left:-11.683584px;}
._f_c00288{margin-left:-7.057116px;}
._11_c00288{margin-left:-5.265533px;}
._a_c00288{width:1.458389px;}
._7_c00288{width:2.932459px;}
._0_c00288{width:4.626072px;}
._9_c00288{width:6.351048px;}
._13_c00288{width:7.683984px;}
._d_c00288{width:9.173736px;}
._c_c00288{width:10.585080px;}
._17_c00288{width:14.035032px;}
._19_c00288{width:15.367968px;}
._15_c00288{width:16.857720px;}
._e_c00288{width:23.679216px;}
._14_c00288{width:25.796232px;}
._2_c00288{width:27.355644px;}
._18_c00288{width:28.932948px;}
._b_c00288{width:31.206384px;}
._3_c00288{width:33.787957px;}
._1_c00288{width:36.291816px;}
._16_c00288{width:37.868688px;}
._12_c00288{width:39.877200px;}
._6_c00288{width:74.675888px;}
._4_c00288{width:102.405930px;}
._5_c00288{width:121.345724px;}
._10_c00288{width:294.426990px;}
.fc0_c00288{color:transparent;}
.fsd_c00288{font-size:24.235398px;}
.fs0_c00288{font-size:44.748000px;}
.fs8_c00288{font-size:55.440000px;}
.fs9_c00288{font-size:61.300998px;}
.fs3_c00288{font-size:63.558000px;}
.fs2_c00288{font-size:64.548000px;}
.fsa_c00288{font-size:65.538000px;}
.fs10_c00288{font-size:70.092198px;}
.fs4_c00288{font-size:70.686198px;}
.fsb_c00288{font-size:70.884000px;}
.fse_c00288{font-size:71.280000px;}
.fs5_c00288{font-size:75.636198px;}
.fs6_c00288{font-size:77.418000px;}
.fs1_c00288{font-size:78.408000px;}
.fsf_c00288{font-size:78.804000px;}
.fs7_c00288{font-size:81.576198px;}
.fsc_c00288{font-size:88.704000px;}
.y0_c00288{bottom:0.000000px;}
.y1_c00288{bottom:76.500000px;}
.y20_c00288{bottom:138.551535px;}
.y1f_c00288{bottom:169.558335px;}
.y1e_c00288{bottom:203.416335px;}
.y1d_c00288{bottom:236.205135px;}
.y1c_c00288{bottom:268.276185px;}
.y1b_c00288{bottom:301.064985px;}
.y1a_c00288{bottom:333.145935px;}
.y19_c00288{bottom:365.221935px;}
.y18_c00288{bottom:397.654335px;}
.y17_c00288{bottom:429.730335px;}
.y16_c00288{bottom:462.157785px;}
.y15_c00288{bottom:494.595135px;}
.y14_c00288{bottom:527.735385px;}
.y13_c00288{bottom:591.174585px;}
.y12_c00288{bottom:624.681135px;}
.y11_c00288{bottom:651.767535px;}
.yf_c00288{bottom:656.752185px;}
.y10_c00288{bottom:657.108585px;}
.ye_c00288{bottom:689.184585px;}
.yd_c00288{bottom:721.973385px;}
.yc_c00288{bottom:756.187785px;}
.yb_c00288{bottom:788.976585px;}
.ya_c00288{bottom:853.489935px;}
.y5_c00288{bottom:883.427535px;}
.y9_c00288{bottom:885.204585px;}
.y4_c00288{bottom:888.055785px;}
.y3_c00288{bottom:917.285535px;}
.y8_c00288{bottom:917.641935px;}
.y2_c00288{bottom:924.769935px;}
.y7_c00288{bottom:1023.487785px;}
.y6_c00288{bottom:1076.947785px;}
.hc_c00288{height:16.140775px;}
.h9_c00288{height:40.826465px;}
.h2_c00288{height:43.917715px;}
.h8_c00288{height:57.822188px;}
.h4_c00288{height:64.054547px;}
.hd_c00288{height:69.957422px;}
.ha_c00288{height:70.994370px;}
.hf_c00288{height:73.103972px;}
.h5_c00288{height:74.232792px;}
.h3_c00288{height:76.953164px;}
.he_c00288{height:77.341816px;}
.h6_c00288{height:78.022828px;}
.h7_c00288{height:80.062577px;}
.hb_c00288{height:87.058125px;}
.h1_c00288{height:1110.000000px;}
.h0_c00288{height:1263.000000px;}
.w1_c00288{width:763.500000px;}
.w0_c00288{width:892.500000px;}
.x0_c00288{left:0.000000px;}
.x1_c00288{left:64.500000px;}
.x9_c00288{left:65.796435px;}
.x65_c00288{left:67.014135px;}
.x6a_c00288{left:68.033835px;}
.x3_c00288{left:69.043635px;}
.x7_c00288{left:80.166285px;}
.xa_c00288{left:85.888485px;}
.x59_c00288{left:87.601185px;}
.x2f_c00288{left:98.397135px;}
.x67_c00288{left:99.793035px;}
.x8_c00288{left:101.233485px;}
.x56_c00288{left:109.430685px;}
.x61_c00288{left:110.470185px;}
.x4_c00288{left:112.999635px;}
.x1f_c00288{left:119.781135px;}
.x5e_c00288{left:131.463135px;}
.x1d_c00288{left:132.517485px;}
.x29_c00288{left:142.937235px;}
.x5_c00288{left:144.932085px;}
.x30_c00288{left:153.787635px;}
.x1e_c00288{left:164.642985px;}
.x2_c00288{left:170.399835px;}
.x52_c00288{left:176.389335px;}
.xb_c00288{left:185.546835px;}
.x20_c00288{left:187.457535px;}
.x66_c00288{left:188.531685px;}
.x45_c00288{left:196.600185px;}
.x6_c00288{left:198.540585px;}
.x3b_c00288{left:209.579085px;}
.xc_c00288{left:220.587885px;}
.x3c_c00288{left:231.616485px;}
.x57_c00288{left:240.788835px;}
.x2a_c00288{left:251.480835px;}
.x10_c00288{left:253.094535px;}
.x5f_c00288{left:254.475585px;}
.x53_c00288{left:256.203135px;}
.x11_c00288{left:264.078585px;}
.x5a_c00288{left:265.870485px;}
.x21_c00288{left:275.829885px;}
.x31_c00288{left:285.299235px;}
.x17_c00288{left:286.368435px;}
.x12_c00288{left:297.773235px;}
.x32_c00288{left:308.579085px;}
.x33_c00288{left:319.127535px;}
.x46_c00288{left:320.696685px;}
.x6b_c00288{left:322.349985px;}
.x18_c00288{left:329.482935px;}
.x54_c00288{left:330.562035px;}
.x4d_c00288{left:341.798535px;}
.x60_c00288{left:342.842985px;}
.x47_c00288{left:352.371735px;}
.x3d_c00288{left:354.643785px;}
.x4e_c00288{left:362.974635px;}
.x62_c00288{left:364.533885px;}
.x22_c00288{left:374.958585px;}
.x2b_c00288{left:384.719985px;}
.x34_c00288{left:385.863435px;}
.x3e_c00288{left:396.689085px;}
.x3f_c00288{left:418.429485px;}
.x63_c00288{left:420.171885px;}
.x13_c00288{left:421.493535px;}
.x19_c00288{left:430.467885px;}
.x48_c00288{left:441.110385px;}
.x40_c00288{left:452.579535px;}
.x43_c00288{left:454.361535px;}
.x1a_c00288{left:462.142935px;}
.x23_c00288{left:463.613085px;}
.x4f_c00288{left:473.537835px;}
.x5b_c00288{left:476.418735px;}
.x50_c00288{left:485.427735px;}
.x24_c00288{left:495.411885px;}
.x49_c00288{left:496.817685px;}
.x68_c00288{left:506.950335px;}
.x35_c00288{left:517.147335px;}
.x64_c00288{left:518.548185px;}
.x4a_c00288{left:524.532735px;}
.x44_c00288{left:527.656185px;}
.x25_c00288{left:528.908535px;}
.x5c_c00288{left:529.938135px;}
.x2c_c00288{left:539.585685px;}
.x14_c00288{left:544.807935px;}
.x36_c00288{left:551.005335px;}
.x15_c00288{left:556.920585px;}
.x4b_c00288{left:561.484485px;}
.x26_c00288{left:572.755635px;}
.x41_c00288{left:574.166385px;}
.x1b_c00288{left:583.774335px;}
.x37_c00288{left:594.367335px;}
.x69_c00288{left:595.565235px;}
.xf_c00288{left:596.619585px;}
.x2d_c00288{left:606.173085px;}
.x27_c00288{left:616.607685px;}
.x1c_c00288{left:626.374035px;}
.x2e_c00288{left:627.591735px;}
.x38_c00288{left:639.026235px;}
.x55_c00288{left:649.252935px;}
.xd_c00288{left:650.381535px;}
.x16_c00288{left:659.449935px;}
.x4c_c00288{left:661.028985px;}
.x51_c00288{left:671.290335px;}
.xe_c00288{left:672.740685px;}
.x5d_c00288{left:682.393185px;}
.x28_c00288{left:693.570285px;}
.x42_c00288{left:704.984985px;}
.x58_c00288{left:706.009635px;}
.x39_c00288{left:715.667085px;}
.x3a_c00288{left:726.898635px;}
@media print{
.v0_c00288{vertical-align:0.000000pt;}
.v1_c00288{vertical-align:1.267200pt;}
.lsf_c00288{letter-spacing:-2.439360pt;}
.ls8_c00288{letter-spacing:-2.408560pt;}
.lsd_c00288{letter-spacing:-2.348755pt;}
.ls7_c00288{letter-spacing:-1.977360pt;}
.lsb_c00288{letter-spacing:-1.537258pt;}
.ls16_c00288{letter-spacing:-0.243936pt;}
.ls5_c00288{letter-spacing:0.000000pt;}
.ls4_c00288{letter-spacing:0.202118pt;}
.ls1_c00288{letter-spacing:1.080218pt;}
.ls9_c00288{letter-spacing:1.421798pt;}
.ls2_c00288{letter-spacing:1.826035pt;}
.ls17_c00288{letter-spacing:2.439360pt;}
.ls12_c00288{letter-spacing:2.446330pt;}
.ls14_c00288{letter-spacing:2.766931pt;}
.lse_c00288{letter-spacing:2.836627pt;}
.ls13_c00288{letter-spacing:2.850566pt;}
.ls0_c00288{letter-spacing:3.066624pt;}
.ls6_c00288{letter-spacing:3.484800pt;}
.ls15_c00288{letter-spacing:3.502400pt;}
.lsa_c00288{letter-spacing:3.625609pt;}
.ls10_c00288{letter-spacing:3.942400pt;}
.ls3_c00288{letter-spacing:9.756736pt;}
.ls11_c00288{letter-spacing:21.542576pt;}
.lsc_c00288{letter-spacing:54.489776pt;}
.ws3_c00288{word-spacing:-20.490624pt;}
.ws4_c00288{word-spacing:-20.260627pt;}
.ws0_c00288{word-spacing:-18.845798pt;}
.ws5_c00288{word-spacing:-17.626118pt;}
.ws2_c00288{word-spacing:-17.424000pt;}
.ws1_c00288{word-spacing:-15.075245pt;}
.ws6_c00288{word-spacing:0.000000pt;}
._8_c00288{margin-left:-10.385408pt;}
._f_c00288{margin-left:-6.272992pt;}
._11_c00288{margin-left:-4.680474pt;}
._a_c00288{width:1.296346pt;}
._7_c00288{width:2.606630pt;}
._0_c00288{width:4.112064pt;}
._9_c00288{width:5.645376pt;}
._13_c00288{width:6.830208pt;}
._d_c00288{width:8.154432pt;}
._c_c00288{width:9.408960pt;}
._17_c00288{width:12.475584pt;}
._19_c00288{width:13.660416pt;}
._15_c00288{width:14.984640pt;}
._e_c00288{width:21.048192pt;}
._14_c00288{width:22.929984pt;}
._2_c00288{width:24.316128pt;}
._18_c00288{width:25.718176pt;}
._b_c00288{width:27.739008pt;}
._3_c00288{width:30.033740pt;}
._1_c00288{width:32.259392pt;}
._16_c00288{width:33.661056pt;}
._12_c00288{width:35.446400pt;}
._6_c00288{width:66.378567pt;}
._4_c00288{width:91.027493pt;}
._5_c00288{width:107.862866pt;}
._10_c00288{width:261.712880pt;}
.fsd_c00288{font-size:21.542576pt;}
.fs0_c00288{font-size:39.776000pt;}
.fs8_c00288{font-size:49.280000pt;}
.fs9_c00288{font-size:54.489776pt;}
.fs3_c00288{font-size:56.496000pt;}
.fs2_c00288{font-size:57.376000pt;}
.fsa_c00288{font-size:58.256000pt;}
.fs10_c00288{font-size:62.304176pt;}
.fs4_c00288{font-size:62.832176pt;}
.fsb_c00288{font-size:63.008000pt;}
.fse_c00288{font-size:63.360000pt;}
.fs5_c00288{font-size:67.232176pt;}
.fs6_c00288{font-size:68.816000pt;}
.fs1_c00288{font-size:69.696000pt;}
.fsf_c00288{font-size:70.048000pt;}
.fs7_c00288{font-size:72.512176pt;}
.fsc_c00288{font-size:78.848000pt;}
.y0_c00288{bottom:0.000000pt;}
.y1_c00288{bottom:68.000000pt;}
.y20_c00288{bottom:123.156920pt;}
.y1f_c00288{bottom:150.718520pt;}
.y1e_c00288{bottom:180.814520pt;}
.y1d_c00288{bottom:209.960120pt;}
.y1c_c00288{bottom:238.467720pt;}
.y1b_c00288{bottom:267.613320pt;}
.y1a_c00288{bottom:296.129720pt;}
.y19_c00288{bottom:324.641720pt;}
.y18_c00288{bottom:353.470520pt;}
.y17_c00288{bottom:381.982520pt;}
.y16_c00288{bottom:410.806920pt;}
.y15_c00288{bottom:439.640120pt;}
.y14_c00288{bottom:469.098120pt;}
.y13_c00288{bottom:525.488520pt;}
.y12_c00288{bottom:555.272120pt;}
.y11_c00288{bottom:579.348920pt;}
.yf_c00288{bottom:583.779720pt;}
.y10_c00288{bottom:584.096520pt;}
.ye_c00288{bottom:612.608520pt;}
.yd_c00288{bottom:641.754120pt;}
.yc_c00288{bottom:672.166920pt;}
.yb_c00288{bottom:701.312520pt;}
.ya_c00288{bottom:758.657720pt;}
.y5_c00288{bottom:785.268920pt;}
.y9_c00288{bottom:786.848520pt;}
.y4_c00288{bottom:789.382920pt;}
.y3_c00288{bottom:815.364920pt;}
.y8_c00288{bottom:815.681720pt;}
.y2_c00288{bottom:822.017720pt;}
.y7_c00288{bottom:909.766920pt;}
.y6_c00288{bottom:957.286920pt;}
.hc_c00288{height:14.347356pt;}
.h9_c00288{height:36.290191pt;}
.h2_c00288{height:39.037969pt;}
.h8_c00288{height:51.397500pt;}
.h4_c00288{height:56.937375pt;}
.hd_c00288{height:62.184375pt;}
.ha_c00288{height:63.106106pt;}
.hf_c00288{height:64.981309pt;}
.h5_c00288{height:65.984704pt;}
.h3_c00288{height:68.402813pt;}
.he_c00288{height:68.748281pt;}
.h6_c00288{height:69.353625pt;}
.h7_c00288{height:71.166735pt;}
.hb_c00288{height:77.385000pt;}
.h1_c00288{height:986.666667pt;}
.h0_c00288{height:1122.666667pt;}
.w1_c00288{width:678.666667pt;}
.w0_c00288{width:793.333333pt;}
.x0_c00288{left:0.000000pt;}
.x1_c00288{left:57.333333pt;}
.x9_c00288{left:58.485720pt;}
.x65_c00288{left:59.568120pt;}
.x6a_c00288{left:60.474520pt;}
.x3_c00288{left:61.372120pt;}
.x7_c00288{left:71.258920pt;}
.xa_c00288{left:76.345320pt;}
.x59_c00288{left:77.867720pt;}
.x2f_c00288{left:87.464120pt;}
.x67_c00288{left:88.704920pt;}
.x8_c00288{left:89.985320pt;}
.x56_c00288{left:97.271720pt;}
.x61_c00288{left:98.195720pt;}
.x4_c00288{left:100.444120pt;}
.x1f_c00288{left:106.472120pt;}
.x5e_c00288{left:116.856120pt;}
.x1d_c00288{left:117.793320pt;}
.x29_c00288{left:127.055320pt;}
.x5_c00288{left:128.828520pt;}
.x30_c00288{left:136.700120pt;}
.x1e_c00288{left:146.349320pt;}
.x2_c00288{left:151.466520pt;}
.x52_c00288{left:156.790520pt;}
.xb_c00288{left:164.930520pt;}
.x20_c00288{left:166.628920pt;}
.x66_c00288{left:167.583720pt;}
.x45_c00288{left:174.755720pt;}
.x6_c00288{left:176.480520pt;}
.x3b_c00288{left:186.292520pt;}
.xc_c00288{left:196.078120pt;}
.x3c_c00288{left:205.881320pt;}
.x57_c00288{left:214.034520pt;}
.x2a_c00288{left:223.538520pt;}
.x10_c00288{left:224.972920pt;}
.x5f_c00288{left:226.200520pt;}
.x53_c00288{left:227.736120pt;}
.x11_c00288{left:234.736520pt;}
.x5a_c00288{left:236.329320pt;}
.x21_c00288{left:245.182120pt;}
.x31_c00288{left:253.599320pt;}
.x17_c00288{left:254.549720pt;}
.x12_c00288{left:264.687320pt;}
.x32_c00288{left:274.292520pt;}
.x33_c00288{left:283.668920pt;}
.x46_c00288{left:285.063720pt;}
.x6b_c00288{left:286.533320pt;}
.x18_c00288{left:292.873720pt;}
.x54_c00288{left:293.832920pt;}
.x4d_c00288{left:303.820920pt;}
.x60_c00288{left:304.749320pt;}
.x47_c00288{left:313.219320pt;}
.x3d_c00288{left:315.238920pt;}
.x4e_c00288{left:322.644120pt;}
.x62_c00288{left:324.030120pt;}
.x22_c00288{left:333.296520pt;}
.x2b_c00288{left:341.973320pt;}
.x34_c00288{left:342.989720pt;}
.x3e_c00288{left:352.612520pt;}
.x3f_c00288{left:371.937320pt;}
.x63_c00288{left:373.486120pt;}
.x13_c00288{left:374.660920pt;}
.x19_c00288{left:382.638120pt;}
.x48_c00288{left:392.098120pt;}
.x40_c00288{left:402.292920pt;}
.x43_c00288{left:403.876920pt;}
.x1a_c00288{left:410.793720pt;}
.x23_c00288{left:412.100520pt;}
.x4f_c00288{left:420.922520pt;}
.x5b_c00288{left:423.483320pt;}
.x50_c00288{left:431.491320pt;}
.x24_c00288{left:440.366120pt;}
.x49_c00288{left:441.615720pt;}
.x68_c00288{left:450.622520pt;}
.x35_c00288{left:459.686520pt;}
.x64_c00288{left:460.931720pt;}
.x4a_c00288{left:466.251320pt;}
.x44_c00288{left:469.027720pt;}
.x25_c00288{left:470.140920pt;}
.x5c_c00288{left:471.056120pt;}
.x2c_c00288{left:479.631720pt;}
.x14_c00288{left:484.273720pt;}
.x36_c00288{left:489.782520pt;}
.x15_c00288{left:495.040520pt;}
.x4b_c00288{left:499.097320pt;}
.x26_c00288{left:509.116120pt;}
.x41_c00288{left:510.370120pt;}
.x1b_c00288{left:518.910520pt;}
.x37_c00288{left:528.326520pt;}
.x69_c00288{left:529.391320pt;}
.xf_c00288{left:530.328520pt;}
.x2d_c00288{left:538.820520pt;}
.x27_c00288{left:548.095720pt;}
.x1c_c00288{left:556.776920pt;}
.x2e_c00288{left:557.859320pt;}
.x38_c00288{left:568.023320pt;}
.x55_c00288{left:577.113720pt;}
.xd_c00288{left:578.116920pt;}
.x16_c00288{left:586.177720pt;}
.x4c_c00288{left:587.581320pt;}
.x51_c00288{left:596.702520pt;}
.xe_c00288{left:597.991720pt;}
.x5d_c00288{left:606.571720pt;}
.x28_c00288{left:616.506920pt;}
.x42_c00288{left:626.653320pt;}
.x58_c00288{left:627.564120pt;}
.x39_c00288{left:636.148520pt;}
.x3a_c00288{left:646.132120pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_797162aefb3e4bcf05602a66.woff2')format("woff");}.ff1_c00289{font-family:ff1_c00289;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00289;src:url('chunks/assets/font_a68806377dda3896ee41b6db.woff2')format("woff");}.ff2_c00289{font-family:ff2_c00289;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00289;src:url('chunks/assets/font_d55be1ff8d4a959248050f21.woff2')format("woff");}.ff3_c00289{font-family:ff3_c00289;line-height:0.666000;font-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_c00289{transform:matrix(0.090278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090278,0.000000,0.000000,0.250000,0,0);}
.m97_c00289{transform:matrix(0.122034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122034,0.000000,0.000000,0.250000,0,0);}
.m8e_c00289{transform:matrix(0.141203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141203,0.000000,0.000000,0.250000,0,0);}
.m6_c00289{transform:matrix(0.141324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141324,0.000000,0.000000,0.250000,0,0);}
.m90_c00289{transform:matrix(0.151042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151042,0.000000,0.000000,0.250000,0,0);}
.m71_c00289{transform:matrix(0.159723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159723,0.000000,0.000000,0.250000,0,0);}
.m57_c00289{transform:matrix(0.171429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171429,0.000000,0.000000,0.250000,0,0);}
.m56_c00289{transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);}
.m8a_c00289{transform:matrix(0.183593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183593,0.000000,0.000000,0.250000,0,0);}
.m24_c00289{transform:matrix(0.184568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184568,0.000000,0.000000,0.250000,0,0);}
.m55_c00289{transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);}
.m58_c00289{transform:matrix(0.189285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189285,0.000000,0.000000,0.250000,0,0);}
.m8d_c00289{transform:matrix(0.196759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196759,0.000000,0.000000,0.250000,0,0);}
.m8_c00289{transform:matrix(0.197150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197150,0.000000,0.000000,0.250000,0,0);}
.m70_c00289{transform:matrix(0.197917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197917,0.000000,0.000000,0.250000,0,0);}
.m6a_c00289{transform:matrix(0.198198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198198,0.000000,0.000000,0.250000,0,0);}
.m8f_c00289{transform:matrix(0.199074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199074,0.000000,0.000000,0.250000,0,0);}
.m6b_c00289{transform:matrix(0.218448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218448,0.000000,0.000000,0.250000,0,0);}
.mb_c00289{transform:matrix(0.219955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219955,0.000000,0.000000,0.250000,0,0);}
.m87_c00289{transform:matrix(0.222545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222545,0.000000,0.000000,0.250000,0,0);}
.m75_c00289{transform:matrix(0.227016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227016,0.000000,0.000000,0.250000,0,0);}
.md_c00289{transform:matrix(0.232318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232318,0.000000,0.000000,0.250000,0,0);}
.m73_c00289{transform:matrix(0.249996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249996,0.000000,0.000000,0.250000,0,0);}
.m1_c00289{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m62_c00289{transform:matrix(0.251642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251642,0.000000,0.000000,0.250000,0,0);}
.m1b_c00289{transform:matrix(0.252814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252814,0.000000,0.000000,0.250000,0,0);}
.m9a_c00289{transform:matrix(0.253441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253441,0.000000,0.000000,0.250000,0,0);}
.md2_c00289{transform:matrix(0.253545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253545,0.000000,0.000000,0.250000,0,0);}
.m33_c00289{transform:matrix(0.253645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253645,0.000000,0.000000,0.250000,0,0);}
.mb8_c00289{transform:matrix(0.254597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254597,0.000000,0.000000,0.250000,0,0);}
.m17_c00289{transform:matrix(0.255381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255381,0.000000,0.000000,0.250000,0,0);}
.m88_c00289{transform:matrix(0.256057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256057,0.000000,0.000000,0.250000,0,0);}
.m44_c00289{transform:matrix(0.256744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256744,0.000000,0.000000,0.250000,0,0);}
.m74_c00289{transform:matrix(0.257043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257043,0.000000,0.000000,0.250000,0,0);}
.m2d_c00289{transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);}
.m4d_c00289{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m3c_c00289{transform:matrix(0.259554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259554,0.000000,0.000000,0.250000,0,0);}
.m3d_c00289{transform:matrix(0.259903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259903,0.000000,0.000000,0.250000,0,0);}
.mc9_c00289{transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);}
.m93_c00289{transform:matrix(0.261191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261191,0.000000,0.000000,0.250000,0,0);}
.m3_c00289{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.m4b_c00289{transform:matrix(0.261987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261987,0.000000,0.000000,0.250000,0,0);}
.m95_c00289{transform:matrix(0.262979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262979,0.000000,0.000000,0.250000,0,0);}
.m16_c00289{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m63_c00289{transform:matrix(0.263720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263720,0.000000,0.000000,0.250000,0,0);}
.m43_c00289{transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);}
.mb4_c00289{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m54_c00289{transform:matrix(0.264391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264391,0.000000,0.000000,0.250000,0,0);}
.mc1_c00289{transform:matrix(0.264886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264886,0.000000,0.000000,0.250000,0,0);}
.m7c_c00289{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.mba_c00289{transform:matrix(0.266261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266261,0.000000,0.000000,0.250000,0,0);}
.m32_c00289{transform:matrix(0.266434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266434,0.000000,0.000000,0.250000,0,0);}
.m89_c00289{transform:matrix(0.266682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266682,0.000000,0.000000,0.250000,0,0);}
.mbd_c00289{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.m9d_c00289{transform:matrix(0.267524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267524,0.000000,0.000000,0.250000,0,0);}
.m46_c00289{transform:matrix(0.267577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267577,0.000000,0.000000,0.250000,0,0);}
.m2c_c00289{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m9b_c00289{transform:matrix(0.268375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268375,0.000000,0.000000,0.250000,0,0);}
.m92_c00289{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.m5_c00289{transform:matrix(0.269647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269647,0.000000,0.000000,0.250000,0,0);}
.ma8_c00289{transform:matrix(0.271388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271388,0.000000,0.000000,0.250000,0,0);}
.m20_c00289{transform:matrix(0.271419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271419,0.000000,0.000000,0.250000,0,0);}
.m5b_c00289{transform:matrix(0.271551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271551,0.000000,0.000000,0.250000,0,0);}
.m0_c00289{transform:matrix(0.271817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271817,0.000000,0.000000,0.250000,0,0);}
.mb7_c00289{transform:matrix(0.272038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272038,0.000000,0.000000,0.250000,0,0);}
.m52_c00289{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.mc_c00289{transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);}
.mab_c00289{transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);}
.m78_c00289{transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);}
.md1_c00289{transform:matrix(0.275570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275570,0.000000,0.000000,0.250000,0,0);}
.m49_c00289{transform:matrix(0.276488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276488,0.000000,0.000000,0.250000,0,0);}
.m1a_c00289{transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);}
.m7e_c00289{transform:matrix(0.277118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277118,0.000000,0.000000,0.250000,0,0);}
.m22_c00289{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m76_c00289{transform:matrix(0.277604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277604,0.000000,0.000000,0.250000,0,0);}
.maf_c00289{transform:matrix(0.277866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277866,0.000000,0.000000,0.250000,0,0);}
.m5e_c00289{transform:matrix(0.278057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278057,0.000000,0.000000,0.250000,0,0);}
.m7b_c00289{transform:matrix(0.278106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278106,0.000000,0.000000,0.250000,0,0);}
.m6d_c00289{transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);}
.m25_c00289{transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);}
.mc7_c00289{transform:matrix(0.279994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279994,0.000000,0.000000,0.250000,0,0);}
.mb5_c00289{transform:matrix(0.280769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280769,0.000000,0.000000,0.250000,0,0);}
.m84_c00289{transform:matrix(0.281213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281213,0.000000,0.000000,0.250000,0,0);}
.m2a_c00289{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.ma4_c00289{transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);}
.m1d_c00289{transform:matrix(0.281854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281854,0.000000,0.000000,0.250000,0,0);}
.mb6_c00289{transform:matrix(0.282790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282790,0.000000,0.000000,0.250000,0,0);}
.mce_c00289{transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);}
.mae_c00289{transform:matrix(0.282934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282934,0.000000,0.000000,0.250000,0,0);}
.mc4_c00289{transform:matrix(0.282965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282965,0.000000,0.000000,0.250000,0,0);}
.m2_c00289{transform:matrix(0.283104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283104,0.000000,0.000000,0.250000,0,0);}
.m42_c00289{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.me_c00289{transform:matrix(0.283914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283914,0.000000,0.000000,0.250000,0,0);}
.m40_c00289{transform:matrix(0.284095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284095,0.000000,0.000000,0.250000,0,0);}
.mac_c00289{transform:matrix(0.285189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285189,0.000000,0.000000,0.250000,0,0);}
.mb1_c00289{transform:matrix(0.285480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285480,0.000000,0.000000,0.250000,0,0);}
.m3e_c00289{transform:matrix(0.285787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285787,0.000000,0.000000,0.250000,0,0);}
.m9c_c00289{transform:matrix(0.285971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285971,0.000000,0.000000,0.250000,0,0);}
.ma6_c00289{transform:matrix(0.286208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286208,0.000000,0.000000,0.250000,0,0);}
.m1e_c00289{transform:matrix(0.286350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286350,0.000000,0.000000,0.250000,0,0);}
.m11_c00289{transform:matrix(0.286402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286402,0.000000,0.000000,0.250000,0,0);}
.m48_c00289{transform:matrix(0.286659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286659,0.000000,0.000000,0.250000,0,0);}
.m7f_c00289{transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);}
.mcc_c00289{transform:matrix(0.288699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288699,0.000000,0.000000,0.250000,0,0);}
.mbc_c00289{transform:matrix(0.288722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288722,0.000000,0.000000,0.250000,0,0);}
.m21_c00289{transform:matrix(0.289328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289328,0.000000,0.000000,0.250000,0,0);}
.m68_c00289{transform:matrix(0.289371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289371,0.000000,0.000000,0.250000,0,0);}
.m7_c00289{transform:matrix(0.289826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289826,0.000000,0.000000,0.250000,0,0);}
.m30_c00289{transform:matrix(0.290679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290679,0.000000,0.000000,0.250000,0,0);}
.md0_c00289{transform:matrix(0.290823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290823,0.000000,0.000000,0.250000,0,0);}
.m4c_c00289{transform:matrix(0.291185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291185,0.000000,0.000000,0.250000,0,0);}
.m91_c00289{transform:matrix(0.291190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291190,0.000000,0.000000,0.250000,0,0);}
.m5c_c00289{transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);}
.mca_c00289{transform:matrix(0.292174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292174,0.000000,0.000000,0.250000,0,0);}
.m59_c00289{transform:matrix(0.292793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292793,0.000000,0.000000,0.250000,0,0);}
.m6c_c00289{transform:matrix(0.292912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292912,0.000000,0.000000,0.250000,0,0);}
.m28_c00289{transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);}
.m29_c00289{transform:matrix(0.293681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293681,0.000000,0.000000,0.250000,0,0);}
.mc5_c00289{transform:matrix(0.293864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293864,0.000000,0.000000,0.250000,0,0);}
.md3_c00289{transform:matrix(0.293937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293937,0.000000,0.000000,0.250000,0,0);}
.m83_c00289{transform:matrix(0.294187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294187,0.000000,0.000000,0.250000,0,0);}
.mc8_c00289{transform:matrix(0.294945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294945,0.000000,0.000000,0.250000,0,0);}
.mc0_c00289{transform:matrix(0.295567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295567,0.000000,0.000000,0.250000,0,0);}
.ma3_c00289{transform:matrix(0.295886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295886,0.000000,0.000000,0.250000,0,0);}
.m4a_c00289{transform:matrix(0.295950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295950,0.000000,0.000000,0.250000,0,0);}
.m6f_c00289{transform:matrix(0.296446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296446,0.000000,0.000000,0.250000,0,0);}
.m39_c00289{transform:matrix(0.296840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296840,0.000000,0.000000,0.250000,0,0);}
.m35_c00289{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m51_c00289{transform:matrix(0.297355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297355,0.000000,0.000000,0.250000,0,0);}
.mc6_c00289{transform:matrix(0.297823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297823,0.000000,0.000000,0.250000,0,0);}
.m3b_c00289{transform:matrix(0.297890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297890,0.000000,0.000000,0.250000,0,0);}
.m1c_c00289{transform:matrix(0.298766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298766,0.000000,0.000000,0.250000,0,0);}
.m50_c00289{transform:matrix(0.298798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298798,0.000000,0.000000,0.250000,0,0);}
.m47_c00289{transform:matrix(0.299263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299263,0.000000,0.000000,0.250000,0,0);}
.m72_c00289{transform:matrix(0.300293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300293,0.000000,0.000000,0.250000,0,0);}
.m2e_c00289{transform:matrix(0.301078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301078,0.000000,0.000000,0.250000,0,0);}
.m61_c00289{transform:matrix(0.301222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301222,0.000000,0.000000,0.250000,0,0);}
.mc3_c00289{transform:matrix(0.301409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301409,0.000000,0.000000,0.250000,0,0);}
.mb2_c00289{transform:matrix(0.301800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301800,0.000000,0.000000,0.250000,0,0);}
.m98_c00289{transform:matrix(0.301805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301805,0.000000,0.000000,0.250000,0,0);}
.m7a_c00289{transform:matrix(0.301847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301847,0.000000,0.000000,0.250000,0,0);}
.ma0_c00289{transform:matrix(0.301913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301913,0.000000,0.000000,0.250000,0,0);}
.m82_c00289{transform:matrix(0.302333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302333,0.000000,0.000000,0.250000,0,0);}
.md4_c00289{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.mb0_c00289{transform:matrix(0.302775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302775,0.000000,0.000000,0.250000,0,0);}
.m10_c00289{transform:matrix(0.302869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302869,0.000000,0.000000,0.250000,0,0);}
.m86_c00289{transform:matrix(0.303446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303446,0.000000,0.000000,0.250000,0,0);}
.m27_c00289{transform:matrix(0.304481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304481,0.000000,0.000000,0.250000,0,0);}
.mf_c00289{transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);}
.m37_c00289{transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);}
.m13_c00289{transform:matrix(0.307943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307943,0.000000,0.000000,0.250000,0,0);}
.mb3_c00289{transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);}
.mbe_c00289{transform:matrix(0.308208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308208,0.000000,0.000000,0.250000,0,0);}
.m77_c00289{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m94_c00289{transform:matrix(0.308916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308916,0.000000,0.000000,0.250000,0,0);}
.m15_c00289{transform:matrix(0.308962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308962,0.000000,0.000000,0.250000,0,0);}
.m6e_c00289{transform:matrix(0.309864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309864,0.000000,0.000000,0.250000,0,0);}
.m23_c00289{transform:matrix(0.310249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310249,0.000000,0.000000,0.250000,0,0);}
.m96_c00289{transform:matrix(0.310732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310732,0.000000,0.000000,0.250000,0,0);}
.m67_c00289{transform:matrix(0.310875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310875,0.000000,0.000000,0.250000,0,0);}
.md5_c00289{transform:matrix(0.311589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311589,0.000000,0.000000,0.250000,0,0);}
.m53_c00289{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.ma1_c00289{transform:matrix(0.312622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312622,0.000000,0.000000,0.250000,0,0);}
.m38_c00289{transform:matrix(0.313389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313389,0.000000,0.000000,0.250000,0,0);}
.m9_c00289{transform:matrix(0.313504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313504,0.000000,0.000000,0.250000,0,0);}
.mc2_c00289{transform:matrix(0.315717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315717,0.000000,0.000000,0.250000,0,0);}
.mb9_c00289{transform:matrix(0.316782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316782,0.000000,0.000000,0.250000,0,0);}
.m36_c00289{transform:matrix(0.317247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317247,0.000000,0.000000,0.250000,0,0);}
.m65_c00289{transform:matrix(0.317925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317925,0.000000,0.000000,0.250000,0,0);}
.m85_c00289{transform:matrix(0.317996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317996,0.000000,0.000000,0.250000,0,0);}
.mcb_c00289{transform:matrix(0.318494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318494,0.000000,0.000000,0.250000,0,0);}
.m2f_c00289{transform:matrix(0.319212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319212,0.000000,0.000000,0.250000,0,0);}
.ma7_c00289{transform:matrix(0.319530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319530,0.000000,0.000000,0.250000,0,0);}
.m66_c00289{transform:matrix(0.320195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320195,0.000000,0.000000,0.250000,0,0);}
.m7d_c00289{transform:matrix(0.320922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320922,0.000000,0.000000,0.250000,0,0);}
.m5f_c00289{transform:matrix(0.321107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321107,0.000000,0.000000,0.250000,0,0);}
.m64_c00289{transform:matrix(0.321236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321236,0.000000,0.000000,0.250000,0,0);}
.m14_c00289{transform:matrix(0.321349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321349,0.000000,0.000000,0.250000,0,0);}
.mbb_c00289{transform:matrix(0.321472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321472,0.000000,0.000000,0.250000,0,0);}
.m41_c00289{transform:matrix(0.321666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321666,0.000000,0.000000,0.250000,0,0);}
.m81_c00289{transform:matrix(0.321847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321847,0.000000,0.000000,0.250000,0,0);}
.ma9_c00289{transform:matrix(0.323503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323503,0.000000,0.000000,0.250000,0,0);}
.m2b_c00289{transform:matrix(0.325526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325526,0.000000,0.000000,0.250000,0,0);}
.m8b_c00289{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.ma_c00289{transform:matrix(0.327800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327800,0.000000,0.000000,0.250000,0,0);}
.m69_c00289{transform:matrix(0.328715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328715,0.000000,0.000000,0.250000,0,0);}
.m31_c00289{transform:matrix(0.329080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329080,0.000000,0.000000,0.250000,0,0);}
.m12_c00289{transform:matrix(0.330299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330299,0.000000,0.000000,0.250000,0,0);}
.m3a_c00289{transform:matrix(0.331239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331239,0.000000,0.000000,0.250000,0,0);}
.m60_c00289{transform:matrix(0.331768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331768,0.000000,0.000000,0.250000,0,0);}
.m45_c00289{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m19_c00289{transform:matrix(0.334276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334276,0.000000,0.000000,0.250000,0,0);}
.mcd_c00289{transform:matrix(0.334985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334985,0.000000,0.000000,0.250000,0,0);}
.m26_c00289{transform:matrix(0.335804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335804,0.000000,0.000000,0.250000,0,0);}
.m3f_c00289{transform:matrix(0.336338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336338,0.000000,0.000000,0.250000,0,0);}
.m4e_c00289{transform:matrix(0.336458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336458,0.000000,0.000000,0.250000,0,0);}
.mbf_c00289{transform:matrix(0.337268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337268,0.000000,0.000000,0.250000,0,0);}
.mcf_c00289{transform:matrix(0.338222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338222,0.000000,0.000000,0.250000,0,0);}
.ma5_c00289{transform:matrix(0.338789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338789,0.000000,0.000000,0.250000,0,0);}
.m9f_c00289{transform:matrix(0.340943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340943,0.000000,0.000000,0.250000,0,0);}
.m80_c00289{transform:matrix(0.341105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341105,0.000000,0.000000,0.250000,0,0);}
.m4f_c00289{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m18_c00289{transform:matrix(0.351315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351315,0.000000,0.000000,0.250000,0,0);}
.m4_c00289{transform:matrix(0.354899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354899,0.000000,0.000000,0.250000,0,0);}
.m79_c00289{transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);}
.ma2_c00289{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.mad_c00289{transform:matrix(0.358842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358842,0.000000,0.000000,0.250000,0,0);}
.maa_c00289{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);}
.m1f_c00289{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m5d_c00289{transform:matrix(0.365549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365549,0.000000,0.000000,0.250000,0,0);}
.m99_c00289{transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);}
.m5a_c00289{transform:matrix(0.378961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378961,0.000000,0.000000,0.250000,0,0);}
.m34_c00289{transform:matrix(0.402409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402409,0.000000,0.000000,0.250000,0,0);}
.m9e_c00289{transform:matrix(0.416907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416907,0.000000,0.000000,0.250000,0,0);}
.v0_c00289{vertical-align:0.000000px;}
.ls5_c00289{letter-spacing:-2.744280px;}
.ls8_c00289{letter-spacing:-2.375762px;}
.ls4_c00289{letter-spacing:-1.638727px;}
.ls1_c00289{letter-spacing:-1.175331px;}
.lsa_c00289{letter-spacing:-0.125453px;}
.ls3_c00289{letter-spacing:0.000000px;}
.lsb_c00289{letter-spacing:0.642946px;}
.ls11_c00289{letter-spacing:1.246687px;}
.ls9_c00289{letter-spacing:2.862770px;}
.ls7_c00289{letter-spacing:3.159842px;}
.ls10_c00289{letter-spacing:3.544200px;}
.ls6_c00289{letter-spacing:3.564000px;}
.lsf_c00289{letter-spacing:3.801610px;}
.ls2_c00289{letter-spacing:3.920400px;}
.ls0_c00289{letter-spacing:4.197610px;}
.lsc_c00289{letter-spacing:49.896198px;}
.lse_c00289{letter-spacing:51.321798px;}
.lsd_c00289{letter-spacing:52.747398px;}
.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;}
}
.ws1_c00289{word-spacing:-22.761842px;}
.ws2_c00289{word-spacing:-20.988050px;}
.ws0_c00289{word-spacing:-19.602000px;}
.ws3_c00289{word-spacing:0.000000px;}
._d_c00289{margin-left:-12.592745px;}
._a_c00289{margin-left:-9.252936px;}
._17_c00289{margin-left:-6.115824px;}
._7_c00289{width:3.638131px;}
._16_c00289{width:4.939704px;}
._19_c00289{width:6.271848px;}
._2_c00289{width:7.919208px;}
._4_c00289{width:9.173736px;}
._6_c00289{width:10.978308px;}
._12_c00289{width:12.310056px;}
._f_c00289{width:14.271048px;}
._1b_c00289{width:15.446376px;}
._11_c00289{width:17.484984px;}
._e_c00289{width:20.856528px;}
._9_c00289{width:22.267872px;}
._0_c00289{width:23.679216px;}
._c_c00289{width:24.776928px;}
._18_c00289{width:25.874640px;}
._14_c00289{width:26.972352px;}
._15_c00289{width:29.480616px;}
._8_c00289{width:31.284792px;}
._1_c00289{width:32.590008px;}
._10_c00289{width:34.859088px;}
._13_c00289{width:35.989272px;}
._1a_c00289{width:37.358640px;}
._5_c00289{width:41.399028px;}
._b_c00289{width:42.675336px;}
._3_c00289{width:43.884958px;}
.fc0_c00289{color:transparent;}
.fs9_c00289{font-size:22.572000px;}
.fsa_c00289{font-size:33.264000px;}
.fs5_c00289{font-size:49.896198px;}
.fs7_c00289{font-size:51.321798px;}
.fs6_c00289{font-size:52.747398px;}
.fs4_c00289{font-size:64.548000px;}
.fs8_c00289{font-size:70.884000px;}
.fs2_c00289{font-size:71.280000px;}
.fs3_c00289{font-size:76.032198px;}
.fs1_c00289{font-size:78.408000px;}
.fs0_c00289{font-size:83.952198px;}
.y0_c00289{bottom:0.000000px;}
.y1_c00289{bottom:76.500000px;}
.y1b_c00289{bottom:84.735135px;}
.y1a_c00289{bottom:144.248985px;}
.y19_c00289{bottom:175.255785px;}
.y17_c00289{bottom:240.838335px;}
.y16_c00289{bottom:273.622185px;}
.y15_c00289{bottom:305.703135px;}
.y18_c00289{bottom:327.443535px;}
.y14_c00289{bottom:338.130585px;}
.y13_c00289{bottom:369.855135px;}
.y12_c00289{bottom:402.287535px;}
.y11_c00289{bottom:434.363535px;}
.y10_c00289{bottom:468.221535px;}
.yf_c00289{bottom:501.361785px;}
.ye_c00289{bottom:534.155535px;}
.yd_c00289{bottom:566.587935px;}
.yc_c00289{bottom:598.658985px;}
.yb_c00289{bottom:630.739935px;}
.ya_c00289{bottom:694.535535px;}
.y9_c00289{bottom:726.606585px;}
.y8_c00289{bottom:759.038985px;}
.y7_c00289{bottom:791.476335px;}
.y6_c00289{bottom:823.908735px;}
.y5_c00289{bottom:855.979785px;}
.y4_c00289{bottom:888.768585px;}
.y3_c00289{bottom:920.844585px;}
.y2_c00289{bottom:1073.745135px;}
.hb_c00289{height:23.541891px;}
.h5_c00289{height:33.230868px;}
.h8_c00289{height:34.180317px;}
.hc_c00289{height:34.693313px;}
.h6_c00289{height:35.129767px;}
.h7_c00289{height:67.321547px;}
.ha_c00289{height:69.568770px;}
.h4_c00289{height:69.957422px;}
.h9_c00289{height:74.621444px;}
.h3_c00289{height:76.953164px;}
.h2_c00289{height:82.394491px;}
.h1_c00289{height:1110.000000px;}
.h0_c00289{height:1263.000000px;}
.w1_c00289{width:763.500000px;}
.w0_c00289{width:892.500000px;}
.x0_c00289{left:0.000000px;}
.x11_c00289{left:61.484985px;}
.x5c_c00289{left:62.668035px;}
.x1_c00289{left:64.500000px;}
.x52_c00289{left:73.048185px;}
.x56_c00289{left:83.428335px;}
.x4f_c00289{left:92.526435px;}
.x26_c00289{left:93.976785px;}
.x32_c00289{left:105.030135px;}
.x12_c00289{left:106.831935px;}
.x4c_c00289{left:115.652835px;}
.x4_c00289{left:117.429885px;}
.x46_c00289{left:127.884285px;}
.x1f_c00289{left:137.432835px;}
.x13_c00289{left:139.026735px;}
.x57_c00289{left:149.382135px;}
.x6f_c00289{left:150.713685px;}
.x3c_c00289{left:159.777135px;}
.x14_c00289{left:161.479935px;}
.x47_c00289{left:171.800685px;}
.x5_c00289{left:173.206485px;}
.x20_c00289{left:181.586835px;}
.x33_c00289{left:183.047085px;}
.x48_c00289{left:193.892535px;}
.x6_c00289{left:204.980535px;}
.x27_c00289{left:215.702235px;}
.x28_c00289{left:225.463635px;}
.x5f_c00289{left:226.790235px;}
.x5d_c00289{left:237.195135px;}
.x41_c00289{left:238.734585px;}
.x15_c00289{left:248.302935px;}
.x69_c00289{left:249.382035px;}
.x49_c00289{left:257.841585px;}
.x29_c00289{left:258.935535px;}
.x7_c00289{left:260.346285px;}
.x71_c00289{left:270.602685px;}
.x50_c00289{left:272.236185px;}
.x2a_c00289{left:281.730285px;}
.x6a_c00289{left:282.967785px;}
.x21_c00289{left:284.343885px;}
.x4a_c00289{left:293.694435px;}
.x8_c00289{left:303.480585px;}
.x2b_c00289{left:314.593335px;}
.x60_c00289{left:316.142685px;}
.x16_c00289{left:326.641635px;}
.x64_c00289{left:329.621535px;}
.x34_c00289{left:337.536585px;}
.x63_c00289{left:339.457185px;}
.x61_c00289{left:348.560235px;}
.x17_c00289{left:358.727535px;}
.x6d_c00289{left:359.940285px;}
.x70_c00289{left:362.727135px;}
.x9_c00289{left:369.706635px;}
.x6b_c00289{left:370.850085px;}
.x2c_c00289{left:380.527335px;}
.x18_c00289{left:382.037085px;}
.x53_c00289{left:391.575735px;}
.x22_c00289{left:392.907285px;}
.x42_c00289{left:402.980535px;}
.x23_c00289{left:414.548685px;}
.x51_c00289{left:415.598085px;}
.x2d_c00289{left:424.285335px;}
.x19_c00289{left:426.200985px;}
.x62_c00289{left:427.948335px;}
.x3d_c00289{left:436.056435px;}
.x65_c00289{left:437.655285px;}
.x35_c00289{left:448.020585px;}
.x43_c00289{left:450.045135px;}
.xa_c00289{left:458.702685px;}
.x1a_c00289{left:469.394685px;}
.x66_c00289{left:470.627235px;}
.xb_c00289{left:478.992735px;}
.x36_c00289{left:480.378735px;}
.xc_c00289{left:491.115285px;}
.x37_c00289{left:502.183485px;}
.x67_c00289{left:503.534835px;}
.x5a_c00289{left:513.910035px;}
.x2e_c00289{left:523.057635px;}
.x24_c00289{left:524.235735px;}
.x38_c00289{left:525.344535px;}
.x1b_c00289{left:535.897935px;}
.x44_c00289{left:547.367085px;}
.x2f_c00289{left:556.504785px;}
.x25_c00289{left:557.682885px;}
.x5e_c00289{left:558.791685px;}
.x54_c00289{left:567.251235px;}
.x6e_c00289{left:568.355085px;}
.x39_c00289{left:569.533185px;}
.x45_c00289{left:578.616435px;}
.x4d_c00289{left:580.447935px;}
.xd_c00289{left:590.342985px;}
.x3a_c00289{left:601.906185px;}
.xe_c00289{left:606.757185px;}
.xf_c00289{left:611.088435px;}
.x30_c00289{left:612.419985px;}
.x4b_c00289{left:622.810035px;}
.x58_c00289{left:624.082185px;}
.x1c_c00289{left:634.056435px;}
.x2_c00289{left:645.030585px;}
.x68_c00289{left:647.847135px;}
.x10_c00289{left:656.489835px;}
.x1d_c00289{left:666.201735px;}
.x3_c00289{left:667.379835px;}
.x3b_c00289{left:677.769885px;}
.x1e_c00289{left:687.714435px;}
.x3e_c00289{left:689.050935px;}
.x55_c00289{left:690.332985px;}
.x5b_c00289{left:699.119235px;}
.x31_c00289{left:700.376535px;}
.x3f_c00289{left:710.524035px;}
.x4e_c00289{left:713.424735px;}
.x59_c00289{left:722.408985px;}
.x40_c00289{left:733.457385px;}
.x6c_c00289{left:745.673985px;}
@media print{
.v0_c00289{vertical-align:0.000000pt;}
.ls5_c00289{letter-spacing:-2.439360pt;}
.ls8_c00289{letter-spacing:-2.111789pt;}
.ls4_c00289{letter-spacing:-1.456646pt;}
.ls1_c00289{letter-spacing:-1.044738pt;}
.lsa_c00289{letter-spacing:-0.111514pt;}
.ls3_c00289{letter-spacing:0.000000pt;}
.lsb_c00289{letter-spacing:0.571507pt;}
.ls11_c00289{letter-spacing:1.108166pt;}
.ls9_c00289{letter-spacing:2.544684pt;}
.ls7_c00289{letter-spacing:2.808749pt;}
.ls10_c00289{letter-spacing:3.150400pt;}
.ls6_c00289{letter-spacing:3.168000pt;}
.lsf_c00289{letter-spacing:3.379209pt;}
.ls2_c00289{letter-spacing:3.484800pt;}
.ls0_c00289{letter-spacing:3.731209pt;}
.lsc_c00289{letter-spacing:44.352176pt;}
.lse_c00289{letter-spacing:45.619376pt;}
.lsd_c00289{letter-spacing:46.886576pt;}
.ws1_c00289{word-spacing:-20.232749pt;}
.ws2_c00289{word-spacing:-18.656044pt;}
.ws0_c00289{word-spacing:-17.424000pt;}
.ws3_c00289{word-spacing:0.000000pt;}
._d_c00289{margin-left:-11.193551pt;}
._a_c00289{margin-left:-8.224832pt;}
._17_c00289{margin-left:-5.436288pt;}
._7_c00289{width:3.233894pt;}
._16_c00289{width:4.390848pt;}
._19_c00289{width:5.574976pt;}
._2_c00289{width:7.039296pt;}
._4_c00289{width:8.154432pt;}
._6_c00289{width:9.758496pt;}
._12_c00289{width:10.942272pt;}
._f_c00289{width:12.685376pt;}
._1b_c00289{width:13.730112pt;}
._11_c00289{width:15.542208pt;}
._e_c00289{width:18.539136pt;}
._9_c00289{width:19.793664pt;}
._0_c00289{width:21.048192pt;}
._c_c00289{width:22.023936pt;}
._18_c00289{width:22.999680pt;}
._14_c00289{width:23.975424pt;}
._15_c00289{width:26.204992pt;}
._8_c00289{width:27.808704pt;}
._1_c00289{width:28.968896pt;}
._10_c00289{width:30.985856pt;}
._13_c00289{width:31.990464pt;}
._1a_c00289{width:33.207680pt;}
._5_c00289{width:36.799136pt;}
._b_c00289{width:37.933632pt;}
._3_c00289{width:39.008851pt;}
.fs9_c00289{font-size:20.064000pt;}
.fsa_c00289{font-size:29.568000pt;}
.fs5_c00289{font-size:44.352176pt;}
.fs7_c00289{font-size:45.619376pt;}
.fs6_c00289{font-size:46.886576pt;}
.fs4_c00289{font-size:57.376000pt;}
.fs8_c00289{font-size:63.008000pt;}
.fs2_c00289{font-size:63.360000pt;}
.fs3_c00289{font-size:67.584176pt;}
.fs1_c00289{font-size:69.696000pt;}
.fs0_c00289{font-size:74.624176pt;}
.y0_c00289{bottom:0.000000pt;}
.y1_c00289{bottom:68.000000pt;}
.y1b_c00289{bottom:75.320120pt;}
.y1a_c00289{bottom:128.221320pt;}
.y19_c00289{bottom:155.782920pt;}
.y17_c00289{bottom:214.078520pt;}
.y16_c00289{bottom:243.219720pt;}
.y15_c00289{bottom:271.736120pt;}
.y18_c00289{bottom:291.060920pt;}
.y14_c00289{bottom:300.560520pt;}
.y13_c00289{bottom:328.760120pt;}
.y12_c00289{bottom:357.588920pt;}
.y11_c00289{bottom:386.100920pt;}
.y10_c00289{bottom:416.196920pt;}
.yf_c00289{bottom:445.654920pt;}
.ye_c00289{bottom:474.804920pt;}
.yd_c00289{bottom:503.633720pt;}
.yc_c00289{bottom:532.141320pt;}
.yb_c00289{bottom:560.657720pt;}
.ya_c00289{bottom:617.364920pt;}
.y9_c00289{bottom:645.872520pt;}
.y8_c00289{bottom:674.701320pt;}
.y7_c00289{bottom:703.534520pt;}
.y6_c00289{bottom:732.363320pt;}
.y5_c00289{bottom:760.870920pt;}
.y4_c00289{bottom:790.016520pt;}
.y3_c00289{bottom:818.528520pt;}
.y2_c00289{bottom:954.440120pt;}
.hb_c00289{height:20.926125pt;}
.h5_c00289{height:29.538549pt;}
.h8_c00289{height:30.382504pt;}
.hc_c00289{height:30.838500pt;}
.h6_c00289{height:31.226460pt;}
.h7_c00289{height:59.841375pt;}
.ha_c00289{height:61.838906pt;}
.h4_c00289{height:62.184375pt;}
.h9_c00289{height:66.330173pt;}
.h3_c00289{height:68.402813pt;}
.h2_c00289{height:73.239548pt;}
.h1_c00289{height:986.666667pt;}
.h0_c00289{height:1122.666667pt;}
.w1_c00289{width:678.666667pt;}
.w0_c00289{width:793.333333pt;}
.x0_c00289{left:0.000000pt;}
.x11_c00289{left:54.653320pt;}
.x5c_c00289{left:55.704920pt;}
.x1_c00289{left:57.333333pt;}
.x52_c00289{left:64.931720pt;}
.x56_c00289{left:74.158520pt;}
.x4f_c00289{left:82.245720pt;}
.x26_c00289{left:83.534920pt;}
.x32_c00289{left:93.360120pt;}
.x12_c00289{left:94.961720pt;}
.x4c_c00289{left:102.802520pt;}
.x4_c00289{left:104.382120pt;}
.x46_c00289{left:113.674920pt;}
.x1f_c00289{left:122.162520pt;}
.x13_c00289{left:123.579320pt;}
.x57_c00289{left:132.784120pt;}
.x6f_c00289{left:133.967720pt;}
.x3c_c00289{left:142.024120pt;}
.x14_c00289{left:143.537720pt;}
.x47_c00289{left:152.711720pt;}
.x5_c00289{left:153.961320pt;}
.x20_c00289{left:161.410520pt;}
.x33_c00289{left:162.708520pt;}
.x48_c00289{left:172.348920pt;}
.x6_c00289{left:182.204920pt;}
.x27_c00289{left:191.735320pt;}
.x28_c00289{left:200.412120pt;}
.x5f_c00289{left:201.591320pt;}
.x5d_c00289{left:210.840120pt;}
.x41_c00289{left:212.208520pt;}
.x15_c00289{left:220.713720pt;}
.x69_c00289{left:221.672920pt;}
.x49_c00289{left:229.192520pt;}
.x29_c00289{left:230.164920pt;}
.x7_c00289{left:231.418920pt;}
.x71_c00289{left:240.535720pt;}
.x50_c00289{left:241.987720pt;}
.x2a_c00289{left:250.426920pt;}
.x6a_c00289{left:251.526920pt;}
.x21_c00289{left:252.750120pt;}
.x4a_c00289{left:261.061720pt;}
.x8_c00289{left:269.760520pt;}
.x2b_c00289{left:279.638520pt;}
.x60_c00289{left:281.015720pt;}
.x16_c00289{left:290.348120pt;}
.x64_c00289{left:292.996920pt;}
.x34_c00289{left:300.032520pt;}
.x63_c00289{left:301.739720pt;}
.x61_c00289{left:309.831320pt;}
.x17_c00289{left:318.868920pt;}
.x6d_c00289{left:319.946920pt;}
.x70_c00289{left:322.424120pt;}
.x9_c00289{left:328.628120pt;}
.x6b_c00289{left:329.644520pt;}
.x2c_c00289{left:338.246520pt;}
.x18_c00289{left:339.588520pt;}
.x53_c00289{left:348.067320pt;}
.x22_c00289{left:349.250920pt;}
.x42_c00289{left:358.204920pt;}
.x23_c00289{left:368.487720pt;}
.x51_c00289{left:369.420520pt;}
.x2d_c00289{left:377.142520pt;}
.x19_c00289{left:378.845320pt;}
.x62_c00289{left:380.398520pt;}
.x3d_c00289{left:387.605720pt;}
.x65_c00289{left:389.026920pt;}
.x35_c00289{left:398.240520pt;}
.x43_c00289{left:400.040120pt;}
.xa_c00289{left:407.735720pt;}
.x1a_c00289{left:417.239720pt;}
.x66_c00289{left:418.335320pt;}
.xb_c00289{left:425.771320pt;}
.x36_c00289{left:427.003320pt;}
.xc_c00289{left:436.546920pt;}
.x37_c00289{left:446.385320pt;}
.x67_c00289{left:447.586520pt;}
.x5a_c00289{left:456.808920pt;}
.x2e_c00289{left:464.940120pt;}
.x24_c00289{left:465.987320pt;}
.x38_c00289{left:466.972920pt;}
.x1b_c00289{left:476.353720pt;}
.x44_c00289{left:486.548520pt;}
.x2f_c00289{left:494.670920pt;}
.x25_c00289{left:495.718120pt;}
.x5e_c00289{left:496.703720pt;}
.x54_c00289{left:504.223320pt;}
.x6e_c00289{left:505.204520pt;}
.x39_c00289{left:506.251720pt;}
.x45_c00289{left:514.325720pt;}
.x4d_c00289{left:515.953720pt;}
.xd_c00289{left:524.749320pt;}
.x3a_c00289{left:535.027720pt;}
.xe_c00289{left:539.339720pt;}
.xf_c00289{left:543.189720pt;}
.x30_c00289{left:544.373320pt;}
.x4b_c00289{left:553.608920pt;}
.x58_c00289{left:554.739720pt;}
.x1c_c00289{left:563.605720pt;}
.x2_c00289{left:573.360520pt;}
.x68_c00289{left:575.864120pt;}
.x10_c00289{left:583.546520pt;}
.x1d_c00289{left:592.179320pt;}
.x3_c00289{left:593.226520pt;}
.x3b_c00289{left:602.462120pt;}
.x1e_c00289{left:611.301720pt;}
.x3e_c00289{left:612.489720pt;}
.x55_c00289{left:613.629320pt;}
.x5b_c00289{left:621.439320pt;}
.x31_c00289{left:622.556920pt;}
.x3f_c00289{left:631.576920pt;}
.x4e_c00289{left:634.155320pt;}
.x59_c00289{left:642.141320pt;}
.x40_c00289{left:651.962120pt;}
.x6c_c00289{left:662.821320pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_208be6ccadf5790ec9f8cb3a.woff2')format("woff");}.ff1_c00290{font-family:ff1_c00290;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00290;src:url('chunks/assets/font_b3e3a86f1f3608ddbb6b5bfb.woff2')format("woff");}.ff2_c00290{font-family:ff2_c00290;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00290;src:url('chunks/assets/font_71fcb489e3316ae85892b3db.woff2')format("woff");}.ff3_c00290{font-family:ff3_c00290;line-height:0.666000;font-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_c00290{transform:matrix(0.101760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101760,0.000000,0.000000,0.250000,0,0);}
.m27_c00290{transform:matrix(0.102305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102305,0.000000,0.000000,0.250000,0,0);}
.m31_c00290{transform:matrix(0.103221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103221,0.000000,0.000000,0.250000,0,0);}
.mf_c00290{transform:matrix(0.134567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134567,0.000000,0.000000,0.250000,0,0);}
.m92_c00290{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m93_c00290{transform:matrix(0.157142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157142,0.000000,0.000000,0.250000,0,0);}
.m91_c00290{transform:matrix(0.171429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171429,0.000000,0.000000,0.250000,0,0);}
.m68_c00290{transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);}
.m1d_c00290{transform:matrix(0.200447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200447,0.000000,0.000000,0.250000,0,0);}
.m66_c00290{transform:matrix(0.202777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202777,0.000000,0.000000,0.250000,0,0);}
.mab_c00290{transform:matrix(0.205555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205555,0.000000,0.000000,0.250000,0,0);}
.m38_c00290{transform:matrix(0.218719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218719,0.000000,0.000000,0.250000,0,0);}
.m8e_c00290{transform:matrix(0.219688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219688,0.000000,0.000000,0.250000,0,0);}
.m67_c00290{transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);}
.maa_c00290{transform:matrix(0.226814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226814,0.000000,0.000000,0.250000,0,0);}
.m97_c00290{transform:matrix(0.234118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234118,0.000000,0.000000,0.250000,0,0);}
.m8c_c00290{transform:matrix(0.248383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248383,0.000000,0.000000,0.250000,0,0);}
.m1_c00290{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00290{transform:matrix(0.250527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250527,0.000000,0.000000,0.250000,0,0);}
.m45_c00290{transform:matrix(0.250788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250788,0.000000,0.000000,0.250000,0,0);}
.m32_c00290{transform:matrix(0.252028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252028,0.000000,0.000000,0.250000,0,0);}
.mbe_c00290{transform:matrix(0.253479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253479,0.000000,0.000000,0.250000,0,0);}
.m2f_c00290{transform:matrix(0.257779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257779,0.000000,0.000000,0.250000,0,0);}
.m5d_c00290{transform:matrix(0.257850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257850,0.000000,0.000000,0.250000,0,0);}
.ma7_c00290{transform:matrix(0.259320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259320,0.000000,0.000000,0.250000,0,0);}
.m1b_c00290{transform:matrix(0.259745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259745,0.000000,0.000000,0.250000,0,0);}
.m82_c00290{transform:matrix(0.260086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260086,0.000000,0.000000,0.250000,0,0);}
.m95_c00290{transform:matrix(0.262004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262004,0.000000,0.000000,0.250000,0,0);}
.m2_c00290{transform:matrix(0.266057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266057,0.000000,0.000000,0.250000,0,0);}
.m99_c00290{transform:matrix(0.266393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266393,0.000000,0.000000,0.250000,0,0);}
.mb7_c00290{transform:matrix(0.266768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266768,0.000000,0.000000,0.250000,0,0);}
.m34_c00290{transform:matrix(0.266995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266995,0.000000,0.000000,0.250000,0,0);}
.m49_c00290{transform:matrix(0.267182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267182,0.000000,0.000000,0.250000,0,0);}
.m1a_c00290{transform:matrix(0.267326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267326,0.000000,0.000000,0.250000,0,0);}
.m79_c00290{transform:matrix(0.268611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268611,0.000000,0.000000,0.250000,0,0);}
.m98_c00290{transform:matrix(0.269115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269115,0.000000,0.000000,0.250000,0,0);}
.mc_c00290{transform:matrix(0.269715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269715,0.000000,0.000000,0.250000,0,0);}
.m9e_c00290{transform:matrix(0.269799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269799,0.000000,0.000000,0.250000,0,0);}
.m42_c00290{transform:matrix(0.270621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270621,0.000000,0.000000,0.250000,0,0);}
.m16_c00290{transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);}
.m5a_c00290{transform:matrix(0.272100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272100,0.000000,0.000000,0.250000,0,0);}
.ma0_c00290{transform:matrix(0.272173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272173,0.000000,0.000000,0.250000,0,0);}
.m5_c00290{transform:matrix(0.272990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272990,0.000000,0.000000,0.250000,0,0);}
.m4a_c00290{transform:matrix(0.274532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274532,0.000000,0.000000,0.250000,0,0);}
.m52_c00290{transform:matrix(0.275317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275317,0.000000,0.000000,0.250000,0,0);}
.m1c_c00290{transform:matrix(0.276042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276042,0.000000,0.000000,0.250000,0,0);}
.m20_c00290{transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);}
.m70_c00290{transform:matrix(0.276874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276874,0.000000,0.000000,0.250000,0,0);}
.m4d_c00290{transform:matrix(0.277012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277012,0.000000,0.000000,0.250000,0,0);}
.m13_c00290{transform:matrix(0.277254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277254,0.000000,0.000000,0.250000,0,0);}
.mbb_c00290{transform:matrix(0.277658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277658,0.000000,0.000000,0.250000,0,0);}
.m87_c00290{transform:matrix(0.278072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278072,0.000000,0.000000,0.250000,0,0);}
.ma_c00290{transform:matrix(0.280036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280036,0.000000,0.000000,0.250000,0,0);}
.mb5_c00290{transform:matrix(0.280683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280683,0.000000,0.000000,0.250000,0,0);}
.m2a_c00290{transform:matrix(0.281471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281471,0.000000,0.000000,0.250000,0,0);}
.m0_c00290{transform:matrix(0.282182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282182,0.000000,0.000000,0.250000,0,0);}
.m2d_c00290{transform:matrix(0.283137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283137,0.000000,0.000000,0.250000,0,0);}
.m6_c00290{transform:matrix(0.283635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283635,0.000000,0.000000,0.250000,0,0);}
.m96_c00290{transform:matrix(0.284177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284177,0.000000,0.000000,0.250000,0,0);}
.m57_c00290{transform:matrix(0.285674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285674,0.000000,0.000000,0.250000,0,0);}
.m3b_c00290{transform:matrix(0.285877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285877,0.000000,0.000000,0.250000,0,0);}
.m63_c00290{transform:matrix(0.286325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286325,0.000000,0.000000,0.250000,0,0);}
.m89_c00290{transform:matrix(0.286840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286840,0.000000,0.000000,0.250000,0,0);}
.me_c00290{transform:matrix(0.287556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287556,0.000000,0.000000,0.250000,0,0);}
.m25_c00290{transform:matrix(0.288127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288127,0.000000,0.000000,0.250000,0,0);}
.mbf_c00290{transform:matrix(0.288215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288215,0.000000,0.000000,0.250000,0,0);}
.mb_c00290{transform:matrix(0.288216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288216,0.000000,0.000000,0.250000,0,0);}
.m3_c00290{transform:matrix(0.288689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288689,0.000000,0.000000,0.250000,0,0);}
.mb0_c00290{transform:matrix(0.288980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288980,0.000000,0.000000,0.250000,0,0);}
.ma3_c00290{transform:matrix(0.289210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289210,0.000000,0.000000,0.250000,0,0);}
.mb3_c00290{transform:matrix(0.289685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289685,0.000000,0.000000,0.250000,0,0);}
.m23_c00290{transform:matrix(0.290079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290079,0.000000,0.000000,0.250000,0,0);}
.mc6_c00290{transform:matrix(0.290214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290214,0.000000,0.000000,0.250000,0,0);}
.ma8_c00290{transform:matrix(0.290262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290262,0.000000,0.000000,0.250000,0,0);}
.md_c00290{transform:matrix(0.290344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290344,0.000000,0.000000,0.250000,0,0);}
.m64_c00290{transform:matrix(0.290586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290586,0.000000,0.000000,0.250000,0,0);}
.mb8_c00290{transform:matrix(0.291073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291073,0.000000,0.000000,0.250000,0,0);}
.m73_c00290{transform:matrix(0.292639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292639,0.000000,0.000000,0.250000,0,0);}
.mb6_c00290{transform:matrix(0.293278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293278,0.000000,0.000000,0.250000,0,0);}
.m7f_c00290{transform:matrix(0.293291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293291,0.000000,0.000000,0.250000,0,0);}
.m43_c00290{transform:matrix(0.293308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293308,0.000000,0.000000,0.250000,0,0);}
.mc3_c00290{transform:matrix(0.293844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293844,0.000000,0.000000,0.250000,0,0);}
.m2e_c00290{transform:matrix(0.294189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294189,0.000000,0.000000,0.250000,0,0);}
.m6d_c00290{transform:matrix(0.294502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294502,0.000000,0.000000,0.250000,0,0);}
.m2c_c00290{transform:matrix(0.295152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295152,0.000000,0.000000,0.250000,0,0);}
.m4b_c00290{transform:matrix(0.296073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296073,0.000000,0.000000,0.250000,0,0);}
.mc5_c00290{transform:matrix(0.296440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296440,0.000000,0.000000,0.250000,0,0);}
.ma4_c00290{transform:matrix(0.296698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296698,0.000000,0.000000,0.250000,0,0);}
.m35_c00290{transform:matrix(0.296871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296871,0.000000,0.000000,0.250000,0,0);}
.m7a_c00290{transform:matrix(0.297993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297993,0.000000,0.000000,0.250000,0,0);}
.m86_c00290{transform:matrix(0.299228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299228,0.000000,0.000000,0.250000,0,0);}
.m83_c00290{transform:matrix(0.299553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299553,0.000000,0.000000,0.250000,0,0);}
.m5f_c00290{transform:matrix(0.300308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300308,0.000000,0.000000,0.250000,0,0);}
.m9b_c00290{transform:matrix(0.300343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300343,0.000000,0.000000,0.250000,0,0);}
.ma2_c00290{transform:matrix(0.300362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300362,0.000000,0.000000,0.250000,0,0);}
.m41_c00290{transform:matrix(0.300607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300607,0.000000,0.000000,0.250000,0,0);}
.m8f_c00290{transform:matrix(0.300634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300634,0.000000,0.000000,0.250000,0,0);}
.mbd_c00290{transform:matrix(0.300728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300728,0.000000,0.000000,0.250000,0,0);}
.m26_c00290{transform:matrix(0.300918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300918,0.000000,0.000000,0.250000,0,0);}
.m50_c00290{transform:matrix(0.300949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300949,0.000000,0.000000,0.250000,0,0);}
.m18_c00290{transform:matrix(0.301239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301239,0.000000,0.000000,0.250000,0,0);}
.m6b_c00290{transform:matrix(0.301529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301529,0.000000,0.000000,0.250000,0,0);}
.maf_c00290{transform:matrix(0.301909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301909,0.000000,0.000000,0.250000,0,0);}
.m90_c00290{transform:matrix(0.302827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302827,0.000000,0.000000,0.250000,0,0);}
.m30_c00290{transform:matrix(0.303100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303100,0.000000,0.000000,0.250000,0,0);}
.m29_c00290{transform:matrix(0.303643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303643,0.000000,0.000000,0.250000,0,0);}
.m76_c00290{transform:matrix(0.303773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303773,0.000000,0.000000,0.250000,0,0);}
.ma9_c00290{transform:matrix(0.303995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303995,0.000000,0.000000,0.250000,0,0);}
.m3d_c00290{transform:matrix(0.304062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304062,0.000000,0.000000,0.250000,0,0);}
.m51_c00290{transform:matrix(0.304204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304204,0.000000,0.000000,0.250000,0,0);}
.m65_c00290{transform:matrix(0.305536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305536,0.000000,0.000000,0.250000,0,0);}
.m5c_c00290{transform:matrix(0.305759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305759,0.000000,0.000000,0.250000,0,0);}
.m12_c00290{transform:matrix(0.306051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306051,0.000000,0.000000,0.250000,0,0);}
.m7d_c00290{transform:matrix(0.306390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306390,0.000000,0.000000,0.250000,0,0);}
.m59_c00290{transform:matrix(0.306502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306502,0.000000,0.000000,0.250000,0,0);}
.m8b_c00290{transform:matrix(0.307400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307400,0.000000,0.000000,0.250000,0,0);}
.mbc_c00290{transform:matrix(0.307729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307729,0.000000,0.000000,0.250000,0,0);}
.m37_c00290{transform:matrix(0.309180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309180,0.000000,0.000000,0.250000,0,0);}
.m7e_c00290{transform:matrix(0.309428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309428,0.000000,0.000000,0.250000,0,0);}
.m39_c00290{transform:matrix(0.309536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309536,0.000000,0.000000,0.250000,0,0);}
.m9_c00290{transform:matrix(0.309561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309561,0.000000,0.000000,0.250000,0,0);}
.mad_c00290{transform:matrix(0.309745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309745,0.000000,0.000000,0.250000,0,0);}
.m7c_c00290{transform:matrix(0.309913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309913,0.000000,0.000000,0.250000,0,0);}
.m19_c00290{transform:matrix(0.311553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311553,0.000000,0.000000,0.250000,0,0);}
.m6c_c00290{transform:matrix(0.311825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311825,0.000000,0.000000,0.250000,0,0);}
.m7b_c00290{transform:matrix(0.312162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312162,0.000000,0.000000,0.250000,0,0);}
.m3e_c00290{transform:matrix(0.312188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312188,0.000000,0.000000,0.250000,0,0);}
.m1e_c00290{transform:matrix(0.312896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312896,0.000000,0.000000,0.250000,0,0);}
.mb2_c00290{transform:matrix(0.312993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312993,0.000000,0.000000,0.250000,0,0);}
.m3a_c00290{transform:matrix(0.313280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313280,0.000000,0.000000,0.250000,0,0);}
.mc0_c00290{transform:matrix(0.314135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314135,0.000000,0.000000,0.250000,0,0);}
.m4_c00290{transform:matrix(0.316628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316628,0.000000,0.000000,0.250000,0,0);}
.m28_c00290{transform:matrix(0.316672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316672,0.000000,0.000000,0.250000,0,0);}
.mb1_c00290{transform:matrix(0.316883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316883,0.000000,0.000000,0.250000,0,0);}
.ma6_c00290{transform:matrix(0.317280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317280,0.000000,0.000000,0.250000,0,0);}
.mb4_c00290{transform:matrix(0.317333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317333,0.000000,0.000000,0.250000,0,0);}
.m24_c00290{transform:matrix(0.317599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317599,0.000000,0.000000,0.250000,0,0);}
.m55_c00290{transform:matrix(0.318245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318245,0.000000,0.000000,0.250000,0,0);}
.m17_c00290{transform:matrix(0.318438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318438,0.000000,0.000000,0.250000,0,0);}
.mba_c00290{transform:matrix(0.318558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318558,0.000000,0.000000,0.250000,0,0);}
.mc1_c00290{transform:matrix(0.318592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318592,0.000000,0.000000,0.250000,0,0);}
.m58_c00290{transform:matrix(0.318683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318683,0.000000,0.000000,0.250000,0,0);}
.m4f_c00290{transform:matrix(0.320904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320904,0.000000,0.000000,0.250000,0,0);}
.m46_c00290{transform:matrix(0.320939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320939,0.000000,0.000000,0.250000,0,0);}
.m7_c00290{transform:matrix(0.323208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323208,0.000000,0.000000,0.250000,0,0);}
.m8d_c00290{transform:matrix(0.323228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323228,0.000000,0.000000,0.250000,0,0);}
.m5b_c00290{transform:matrix(0.323374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323374,0.000000,0.000000,0.250000,0,0);}
.m6f_c00290{transform:matrix(0.323501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323501,0.000000,0.000000,0.250000,0,0);}
.m48_c00290{transform:matrix(0.325439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325439,0.000000,0.000000,0.250000,0,0);}
.ma5_c00290{transform:matrix(0.325582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325582,0.000000,0.000000,0.250000,0,0);}
.m9f_c00290{transform:matrix(0.326566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326566,0.000000,0.000000,0.250000,0,0);}
.m78_c00290{transform:matrix(0.327161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327161,0.000000,0.000000,0.250000,0,0);}
.mc2_c00290{transform:matrix(0.328141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328141,0.000000,0.000000,0.250000,0,0);}
.m72_c00290{transform:matrix(0.328558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328558,0.000000,0.000000,0.250000,0,0);}
.m69_c00290{transform:matrix(0.328801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328801,0.000000,0.000000,0.250000,0,0);}
.m47_c00290{transform:matrix(0.328947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328947,0.000000,0.000000,0.250000,0,0);}
.mac_c00290{transform:matrix(0.329369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329369,0.000000,0.000000,0.250000,0,0);}
.m22_c00290{transform:matrix(0.330066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330066,0.000000,0.000000,0.250000,0,0);}
.m53_c00290{transform:matrix(0.331274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331274,0.000000,0.000000,0.250000,0,0);}
.m71_c00290{transform:matrix(0.331520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331520,0.000000,0.000000,0.250000,0,0);}
.m62_c00290{transform:matrix(0.332872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332872,0.000000,0.000000,0.250000,0,0);}
.ma1_c00290{transform:matrix(0.333512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333512,0.000000,0.000000,0.250000,0,0);}
.m81_c00290{transform:matrix(0.335776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335776,0.000000,0.000000,0.250000,0,0);}
.m84_c00290{transform:matrix(0.336456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336456,0.000000,0.000000,0.250000,0,0);}
.m85_c00290{transform:matrix(0.336521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336521,0.000000,0.000000,0.250000,0,0);}
.m74_c00290{transform:matrix(0.337089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337089,0.000000,0.000000,0.250000,0,0);}
.m4e_c00290{transform:matrix(0.337388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337388,0.000000,0.000000,0.250000,0,0);}
.m14_c00290{transform:matrix(0.338162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338162,0.000000,0.000000,0.250000,0,0);}
.mb9_c00290{transform:matrix(0.339626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339626,0.000000,0.000000,0.250000,0,0);}
.m3f_c00290{transform:matrix(0.340944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340944,0.000000,0.000000,0.250000,0,0);}
.m80_c00290{transform:matrix(0.341077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341077,0.000000,0.000000,0.250000,0,0);}
.m2b_c00290{transform:matrix(0.341571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341571,0.000000,0.000000,0.250000,0,0);}
.m8_c00290{transform:matrix(0.341616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341616,0.000000,0.000000,0.250000,0,0);}
.m9a_c00290{transform:matrix(0.341848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341848,0.000000,0.000000,0.250000,0,0);}
.m11_c00290{transform:matrix(0.342125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342125,0.000000,0.000000,0.250000,0,0);}
.mae_c00290{transform:matrix(0.342311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342311,0.000000,0.000000,0.250000,0,0);}
.m56_c00290{transform:matrix(0.342826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342826,0.000000,0.000000,0.250000,0,0);}
.m1f_c00290{transform:matrix(0.343057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343057,0.000000,0.000000,0.250000,0,0);}
.m54_c00290{transform:matrix(0.343636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343636,0.000000,0.000000,0.250000,0,0);}
.m61_c00290{transform:matrix(0.344048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344048,0.000000,0.000000,0.250000,0,0);}
.m9c_c00290{transform:matrix(0.344932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344932,0.000000,0.000000,0.250000,0,0);}
.m6a_c00290{transform:matrix(0.345260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345260,0.000000,0.000000,0.250000,0,0);}
.m21_c00290{transform:matrix(0.347807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347807,0.000000,0.000000,0.250000,0,0);}
.m10_c00290{transform:matrix(0.348058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348058,0.000000,0.000000,0.250000,0,0);}
.m9d_c00290{transform:matrix(0.350792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350792,0.000000,0.000000,0.250000,0,0);}
.m33_c00290{transform:matrix(0.352598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352598,0.000000,0.000000,0.250000,0,0);}
.m3c_c00290{transform:matrix(0.357030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357030,0.000000,0.000000,0.250000,0,0);}
.m75_c00290{transform:matrix(0.361922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361922,0.000000,0.000000,0.250000,0,0);}
.m5e_c00290{transform:matrix(0.365989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365989,0.000000,0.000000,0.250000,0,0);}
.m60_c00290{transform:matrix(0.366428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366428,0.000000,0.000000,0.250000,0,0);}
.m15_c00290{transform:matrix(0.369487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369487,0.000000,0.000000,0.250000,0,0);}
.m8a_c00290{transform:matrix(0.370362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370362,0.000000,0.000000,0.250000,0,0);}
.m40_c00290{transform:matrix(0.376173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376173,0.000000,0.000000,0.250000,0,0);}
.m94_c00290{transform:matrix(0.376592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376592,0.000000,0.000000,0.250000,0,0);}
.m6e_c00290{transform:matrix(0.379873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379873,0.000000,0.000000,0.250000,0,0);}
.m44_c00290{transform:matrix(0.385073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385073,0.000000,0.000000,0.250000,0,0);}
.m88_c00290{transform:matrix(0.394212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394212,0.000000,0.000000,0.250000,0,0);}
.m4c_c00290{transform:matrix(0.417221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417221,0.000000,0.000000,0.250000,0,0);}
.mc4_c00290{transform:matrix(0.583320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583320,0.000000,0.000000,0.250000,0,0);}
.v0_c00290{vertical-align:0.000000px;}
.ls6_c00290{letter-spacing:-2.661127px;}
.ls8_c00290{letter-spacing:-1.110070px;}
.ls7_c00290{letter-spacing:-0.631067px;}
.lsb_c00290{letter-spacing:-0.159668px;}
.lsc_c00290{letter-spacing:-0.129255px;}
.ls5_c00290{letter-spacing:0.000000px;}
.ls3_c00290{letter-spacing:0.373171px;}
.ls9_c00290{letter-spacing:1.623600px;}
.ls1_c00290{letter-spacing:3.056494px;}
.lse_c00290{letter-spacing:3.643200px;}
.ls4_c00290{letter-spacing:3.801610px;}
.ls2_c00290{letter-spacing:3.969900px;}
.lsf_c00290{letter-spacing:4.435200px;}
.ls10_c00290{letter-spacing:8.553798px;}
.ls0_c00290{letter-spacing:11.937134px;}
.lsd_c00290{letter-spacing:49.896198px;}
.lsa_c00290{letter-spacing:51.321798px;}
.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;}
}
.ws1_c00290{word-spacing:-19.008050px;}
.ws5_c00290{word-spacing:-18.878795px;}
.ws3_c00290{word-spacing:-2.204449px;}
.ws0_c00290{word-spacing:-2.204251px;}
.ws4_c00290{word-spacing:-0.836071px;}
.ws6_c00290{word-spacing:0.000000px;}
.ws2_c00290{word-spacing:3.421523px;}
._18_c00290{margin-left:-16.879216px;}
._19_c00290{margin-left:-15.130126px;}
._1c_c00290{margin-left:-13.609871px;}
._c_c00290{margin-left:-11.328724px;}
._f_c00290{margin-left:-6.766122px;}
._11_c00290{margin-left:-5.702450px;}
._13_c00290{margin-left:-1.216633px;}
._d_c00290{width:4.713885px;}
._10_c00290{width:5.801499px;}
._5_c00290{width:7.299171px;}
._4_c00290{width:8.971688px;}
._0_c00290{width:10.340451px;}
._1b_c00290{width:11.975098px;}
._2_c00290{width:13.001384px;}
._17_c00290{width:17.791433px;}
._b_c00290{width:21.517199px;}
._8_c00290{width:23.494042px;}
._1a_c00290{width:25.318601px;}
._15_c00290{width:29.760039px;}
._7_c00290{width:31.705405px;}
._a_c00290{width:33.416177px;}
._6_c00290{width:36.319981px;}
._9_c00290{width:38.548285px;}
._3_c00290{width:40.145165px;}
._1d_c00290{width:42.098050px;}
._16_c00290{width:44.174873px;}
._e_c00290{width:46.985098px;}
._1_c00290{width:52.767000px;}
._12_c00290{width:58.074984px;}
._14_c00290{width:1016.413200px;}
.fc0_c00290{color:transparent;}
.fsb_c00290{font-size:8.553798px;}
.fs4_c00290{font-size:32.472000px;}
.fs8_c00290{font-size:49.896198px;}
.fs7_c00290{font-size:51.321798px;}
.fs2_c00290{font-size:69.300000px;}
.fs9_c00290{font-size:72.864000px;}
.fs1_c00290{font-size:76.032198px;}
.fs0_c00290{font-size:79.398000px;}
.fsa_c00290{font-size:88.704000px;}
.fs5_c00290{font-size:95.040000px;}
.fs6_c00290{font-size:96.624000px;}
.fs3_c00290{font-size:99.000000px;}
.y0_c00290{bottom:0.000000px;}
.y1_c00290{bottom:76.500000px;}
.y1e_c00290{bottom:142.471935px;}
.y21_c00290{bottom:143.536185px;}
.y20_c00290{bottom:170.266185px;}
.y1d_c00290{bottom:173.122335px;}
.y1c_c00290{bottom:173.131691px;}
.y1f_c00290{bottom:173.835135px;}
.y1b_c00290{bottom:239.412735px;}
.y1a_c00290{bottom:271.845135px;}
.y19_c00290{bottom:304.277535px;}
.y18_c00290{bottom:336.353535px;}
.y17_c00290{bottom:368.424585px;}
.y16_c00290{bottom:400.500585px;}
.y15_c00290{bottom:433.289385px;}
.y14_c00290{bottom:466.434585px;}
.y13_c00290{bottom:466.443990px;}
.y12_c00290{bottom:498.510585px;}
.y11_c00290{bottom:562.662585px;}
.y10_c00290{bottom:594.387135px;}
.yf_c00290{bottom:626.458185px;}
.ye_c00290{bottom:631.452735px;}
.yd_c00290{bottom:659.608335px;}
.yc_c00290{bottom:691.679385px;}
.ya_c00290{bottom:724.111785px;}
.yb_c00290{bottom:729.819135px;}
.y9_c00290{bottom:756.549135px;}
.y8_c00290{bottom:756.558540px;}
.y7_c00290{bottom:788.625135px;}
.y6_c00290{bottom:820.696185px;}
.y5_c00290{bottom:852.777135px;}
.y4_c00290{bottom:886.991535px;}
.y3_c00290{bottom:919.423935px;}
.y2_c00290{bottom:1074.809385px;}
.hb_c00290{height:5.696829px;}
.h8_c00290{height:33.230868px;}
.h5_c00290{height:33.867281px;}
.h7_c00290{height:34.180317px;}
.h9_c00290{height:71.512031px;}
.h3_c00290{height:74.621444px;}
.h2_c00290{height:77.924795px;}
.ha_c00290{height:87.058125px;}
.h6_c00290{height:94.831172px;}
.h4_c00290{height:97.163086px;}
.h1_c00290{height:1110.000000px;}
.h0_c00290{height:1263.000000px;}
.w1_c00290{width:763.500000px;}
.w0_c00290{width:892.500000px;}
.x0_c00290{left:0.000000px;}
.x1_c00290{left:64.500000px;}
.x4_c00290{left:80.928600px;}
.x11_c00290{left:82.324500px;}
.x3a_c00290{left:91.902750px;}
.x3b_c00290{left:96.639900px;}
.x40_c00290{left:101.436450px;}
.x58_c00290{left:102.664050px;}
.x4f_c00290{left:112.811550px;}
.x12_c00290{left:113.999550px;}
.x69_c00290{left:115.019250px;}
.x5_c00290{left:125.359800px;}
.x13_c00290{left:134.581650px;}
.x61_c00290{left:135.621150px;}
.x49_c00290{left:136.804200px;}
.x33_c00290{left:147.436800px;}
.x50_c00290{left:157.906050px;}
.x67_c00290{left:159.202950px;}
.x6_c00290{left:168.969300px;}
.x14_c00290{left:170.003850px;}
.x20_c00290{left:179.082150px;}
.x51_c00290{left:180.987900px;}
.x62_c00290{left:185.096400px;}
.x4a_c00290{left:191.363100px;}
.x7_c00290{left:203.104500px;}
.x29_c00290{left:212.603550px;}
.x41_c00290{left:213.831150px;}
.x59_c00290{left:225.136950px;}
.x6a_c00290{left:226.849650px;}
.x5a_c00290{left:234.754800px;}
.x5c_c00290{left:236.229900px;}
.x6c_c00290{left:239.095950px;}
.x55_c00290{left:241.120500px;}
.x57_c00290{left:245.075550px;}
.x2a_c00290{left:246.263550px;}
.x3c_c00290{left:247.293150px;}
.x34_c00290{left:256.114050px;}
.x21_c00290{left:257.623800px;}
.x8_c00290{left:268.197000px;}
.x15_c00290{left:279.339450px;}
.x52_c00290{left:280.502700px;}
.x35_c00290{left:291.011550px;}
.x5b_c00290{left:293.239050px;}
.x2b_c00290{left:300.985800px;}
.x42_c00290{left:302.703450px;}
.x9_c00290{left:310.905600px;}
.x36_c00290{left:313.281600px;}
.x16_c00290{left:324.285450px;}
.x17_c00290{left:334.809150px;}
.xa_c00290{left:344.758650px;}
.x37_c00290{left:346.213950px;}
.x4b_c00290{left:356.782200px;}
.x6d_c00290{left:357.811800px;}
.x5e_c00290{left:366.919800px;}
.x18_c00290{left:367.979100px;}
.x5d_c00290{left:378.032550px;}
.x22_c00290{left:389.778900px;}
.x6b_c00290{left:399.000750px;}
.xb_c00290{left:401.257950px;}
.x43_c00290{left:411.677700px;}
.x4c_c00290{left:422.632050px;}
.xc_c00290{left:433.403250px;}
.x5f_c00290{left:434.744700px;}
.x23_c00290{left:444.466500px;}
.x24_c00290{left:455.846550px;}
.x44_c00290{left:467.924550px;}
.x68_c00290{left:469.399650px;}
.x19_c00290{left:477.953250px;}
.x25_c00290{left:487.744350px;}
.xd_c00290{left:488.803650px;}
.x1a_c00290{left:500.045100px;}
.x3d_c00290{left:507.692850px;}
.x2c_c00290{left:510.346050px;}
.x60_c00290{left:511.405350px;}
.x26_c00290{left:520.533150px;}
.x45_c00290{left:522.132000px;}
.x4d_c00290{left:532.442850px;}
.x1b_c00290{left:533.521950px;}
.xe_c00290{left:544.199100px;}
.x1c_c00290{left:555.232650px;}
.x38_c00290{left:565.083150px;}
.x56_c00290{left:566.211750px;}
.x2d_c00290{left:576.666150px;}
.xf_c00290{left:587.541300px;}
.x53_c00290{left:598.218450px;}
.x3e_c00290{left:599.495550px;}
.x2e_c00290{left:609.435150px;}
.x27_c00290{left:610.915200px;}
.x63_c00290{left:612.637800px;}
.x2f_c00290{left:618.929250px;}
.x10_c00290{left:620.028150px;}
.x1d_c00290{left:621.221100px;}
.x65_c00290{left:623.057550px;}
.x3f_c00290{left:629.977650px;}
.x28_c00290{left:631.220100px;}
.x46_c00290{left:632.413050px;}
.x54_c00290{left:642.931800px;}
.x47_c00290{left:644.466300px;}
.x39_c00290{left:652.074450px;}
.x30_c00290{left:653.529750px;}
.x64_c00290{left:656.197800px;}
.x2_c00290{left:663.568350px;}
.x66_c00290{left:664.865250px;}
.x1e_c00290{left:675.908700px;}
.x3_c00290{left:685.937400px;}
.x31_c00290{left:687.155100px;}
.x1f_c00290{left:697.852050px;}
.x32_c00290{left:708.162900px;}
.x48_c00290{left:719.567700px;}
.x4e_c00290{left:730.259700px;}
@media print{
.v0_c00290{vertical-align:0.000000pt;}
.ls6_c00290{letter-spacing:-2.365446pt;}
.ls8_c00290{letter-spacing:-0.986729pt;}
.ls7_c00290{letter-spacing:-0.560949pt;}
.lsb_c00290{letter-spacing:-0.141927pt;}
.lsc_c00290{letter-spacing:-0.114893pt;}
.ls5_c00290{letter-spacing:0.000000pt;}
.ls3_c00290{letter-spacing:0.331707pt;}
.ls9_c00290{letter-spacing:1.443200pt;}
.ls1_c00290{letter-spacing:2.716884pt;}
.lse_c00290{letter-spacing:3.238400pt;}
.ls4_c00290{letter-spacing:3.379209pt;}
.ls2_c00290{letter-spacing:3.528800pt;}
.lsf_c00290{letter-spacing:3.942400pt;}
.ls10_c00290{letter-spacing:7.603376pt;}
.ls0_c00290{letter-spacing:10.610786pt;}
.lsd_c00290{letter-spacing:44.352176pt;}
.lsa_c00290{letter-spacing:45.619376pt;}
.ws1_c00290{word-spacing:-16.896044pt;}
.ws5_c00290{word-spacing:-16.781151pt;}
.ws3_c00290{word-spacing:-1.959511pt;}
.ws0_c00290{word-spacing:-1.959335pt;}
.ws4_c00290{word-spacing:-0.743175pt;}
.ws6_c00290{word-spacing:0.000000pt;}
.ws2_c00290{word-spacing:3.041353pt;}
._18_c00290{margin-left:-15.003747pt;}
._19_c00290{margin-left:-13.449001pt;}
._1c_c00290{margin-left:-12.097663pt;}
._c_c00290{margin-left:-10.069977pt;}
._f_c00290{margin-left:-6.014331pt;}
._11_c00290{margin-left:-5.068844pt;}
._13_c00290{margin-left:-1.081452pt;}
._d_c00290{width:4.190120pt;}
._10_c00290{width:5.156888pt;}
._5_c00290{width:6.488152pt;}
._4_c00290{width:7.974834pt;}
._0_c00290{width:9.191512pt;}
._1b_c00290{width:10.644531pt;}
._2_c00290{width:11.556786pt;}
._17_c00290{width:15.814607pt;}
._b_c00290{width:19.126399pt;}
._8_c00290{width:20.883593pt;}
._1a_c00290{width:22.505423pt;}
._15_c00290{width:26.453368pt;}
._7_c00290{width:28.182582pt;}
._a_c00290{width:29.703268pt;}
._6_c00290{width:32.284428pt;}
._9_c00290{width:34.265142pt;}
._3_c00290{width:35.684592pt;}
._1d_c00290{width:37.420489pt;}
._16_c00290{width:39.266553pt;}
._e_c00290{width:41.764531pt;}
._1_c00290{width:46.904000pt;}
._12_c00290{width:51.622208pt;}
._14_c00290{width:903.478400pt;}
.fsb_c00290{font-size:7.603376pt;}
.fs4_c00290{font-size:28.864000pt;}
.fs8_c00290{font-size:44.352176pt;}
.fs7_c00290{font-size:45.619376pt;}
.fs2_c00290{font-size:61.600000pt;}
.fs9_c00290{font-size:64.768000pt;}
.fs1_c00290{font-size:67.584176pt;}
.fs0_c00290{font-size:70.576000pt;}
.fsa_c00290{font-size:78.848000pt;}
.fs5_c00290{font-size:84.480000pt;}
.fs6_c00290{font-size:85.888000pt;}
.fs3_c00290{font-size:88.000000pt;}
.y0_c00290{bottom:0.000000pt;}
.y1_c00290{bottom:68.000000pt;}
.y1e_c00290{bottom:126.641720pt;}
.y21_c00290{bottom:127.587720pt;}
.y20_c00290{bottom:151.347720pt;}
.y1d_c00290{bottom:153.886520pt;}
.y1c_c00290{bottom:153.894836pt;}
.y1f_c00290{bottom:154.520120pt;}
.y1b_c00290{bottom:212.811320pt;}
.y1a_c00290{bottom:241.640120pt;}
.y19_c00290{bottom:270.468920pt;}
.y18_c00290{bottom:298.980920pt;}
.y17_c00290{bottom:327.488520pt;}
.y16_c00290{bottom:356.000520pt;}
.y15_c00290{bottom:385.146120pt;}
.y14_c00290{bottom:414.608520pt;}
.y13_c00290{bottom:414.616880pt;}
.y12_c00290{bottom:443.120520pt;}
.y11_c00290{bottom:500.144520pt;}
.y10_c00290{bottom:528.344120pt;}
.yf_c00290{bottom:556.851720pt;}
.ye_c00290{bottom:561.291320pt;}
.yd_c00290{bottom:586.318520pt;}
.yc_c00290{bottom:614.826120pt;}
.ya_c00290{bottom:643.654920pt;}
.yb_c00290{bottom:648.728120pt;}
.y9_c00290{bottom:672.488120pt;}
.y8_c00290{bottom:672.496480pt;}
.y7_c00290{bottom:701.000120pt;}
.y6_c00290{bottom:729.507720pt;}
.y5_c00290{bottom:758.024120pt;}
.y4_c00290{bottom:788.436920pt;}
.y3_c00290{bottom:817.265720pt;}
.y2_c00290{bottom:955.386120pt;}
.hb_c00290{height:5.063848pt;}
.h8_c00290{height:29.538549pt;}
.h5_c00290{height:30.104250pt;}
.h7_c00290{height:30.382504pt;}
.h9_c00290{height:63.566250pt;}
.h3_c00290{height:66.330173pt;}
.h2_c00290{height:69.266484pt;}
.ha_c00290{height:77.385000pt;}
.h6_c00290{height:84.294375pt;}
.h4_c00290{height:86.367188pt;}
.h1_c00290{height:986.666667pt;}
.h0_c00290{height:1122.666667pt;}
.w1_c00290{width:678.666667pt;}
.w0_c00290{width:793.333333pt;}
.x0_c00290{left:0.000000pt;}
.x1_c00290{left:57.333333pt;}
.x4_c00290{left:71.936533pt;}
.x11_c00290{left:73.177333pt;}
.x3a_c00290{left:81.691333pt;}
.x3b_c00290{left:85.902133pt;}
.x40_c00290{left:90.165733pt;}
.x58_c00290{left:91.256933pt;}
.x4f_c00290{left:100.276933pt;}
.x12_c00290{left:101.332933pt;}
.x69_c00290{left:102.239333pt;}
.x5_c00290{left:111.430933pt;}
.x13_c00290{left:119.628133pt;}
.x61_c00290{left:120.552133pt;}
.x49_c00290{left:121.603733pt;}
.x33_c00290{left:131.054933pt;}
.x50_c00290{left:140.360933pt;}
.x67_c00290{left:141.513733pt;}
.x6_c00290{left:150.194933pt;}
.x14_c00290{left:151.114533pt;}
.x20_c00290{left:159.184133pt;}
.x51_c00290{left:160.878133pt;}
.x62_c00290{left:164.530133pt;}
.x4a_c00290{left:170.100533pt;}
.x7_c00290{left:180.537333pt;}
.x29_c00290{left:188.980933pt;}
.x41_c00290{left:190.072133pt;}
.x59_c00290{left:200.121733pt;}
.x6a_c00290{left:201.644133pt;}
.x5a_c00290{left:208.670933pt;}
.x5c_c00290{left:209.982133pt;}
.x6c_c00290{left:212.529733pt;}
.x55_c00290{left:214.329333pt;}
.x57_c00290{left:217.844933pt;}
.x2a_c00290{left:218.900933pt;}
.x3c_c00290{left:219.816133pt;}
.x34_c00290{left:227.656933pt;}
.x21_c00290{left:228.998933pt;}
.x8_c00290{left:238.397333pt;}
.x15_c00290{left:248.301733pt;}
.x52_c00290{left:249.335733pt;}
.x35_c00290{left:258.676933pt;}
.x5b_c00290{left:260.656933pt;}
.x2b_c00290{left:267.542933pt;}
.x42_c00290{left:269.069733pt;}
.x9_c00290{left:276.360533pt;}
.x36_c00290{left:278.472533pt;}
.x16_c00290{left:288.253733pt;}
.x17_c00290{left:297.608133pt;}
.xa_c00290{left:306.452133pt;}
.x37_c00290{left:307.745733pt;}
.x4b_c00290{left:317.139733pt;}
.x6d_c00290{left:318.054933pt;}
.x5e_c00290{left:326.150933pt;}
.x18_c00290{left:327.092533pt;}
.x5d_c00290{left:336.028933pt;}
.x22_c00290{left:346.470133pt;}
.x6b_c00290{left:354.667333pt;}
.xb_c00290{left:356.673733pt;}
.x43_c00290{left:365.935733pt;}
.x4c_c00290{left:375.672933pt;}
.xc_c00290{left:385.247333pt;}
.x5f_c00290{left:386.439733pt;}
.x23_c00290{left:395.081333pt;}
.x24_c00290{left:405.196933pt;}
.x44_c00290{left:415.932933pt;}
.x68_c00290{left:417.244133pt;}
.x19_c00290{left:424.847333pt;}
.x25_c00290{left:433.550533pt;}
.xd_c00290{left:434.492133pt;}
.x1a_c00290{left:444.484533pt;}
.x3d_c00290{left:451.282533pt;}
.x2c_c00290{left:453.640933pt;}
.x60_c00290{left:454.582533pt;}
.x26_c00290{left:462.696133pt;}
.x45_c00290{left:464.117333pt;}
.x4d_c00290{left:473.282533pt;}
.x1b_c00290{left:474.241733pt;}
.xe_c00290{left:483.732533pt;}
.x1c_c00290{left:493.540133pt;}
.x38_c00290{left:502.296133pt;}
.x56_c00290{left:503.299333pt;}
.x2d_c00290{left:512.592133pt;}
.xf_c00290{left:522.258933pt;}
.x53_c00290{left:531.749733pt;}
.x3e_c00290{left:532.884933pt;}
.x2e_c00290{left:541.720133pt;}
.x27_c00290{left:543.035733pt;}
.x63_c00290{left:544.566933pt;}
.x2f_c00290{left:550.159333pt;}
.x10_c00290{left:551.136133pt;}
.x1d_c00290{left:552.196533pt;}
.x65_c00290{left:553.828933pt;}
.x3f_c00290{left:559.980133pt;}
.x28_c00290{left:561.084533pt;}
.x46_c00290{left:562.144933pt;}
.x54_c00290{left:571.494933pt;}
.x47_c00290{left:572.858933pt;}
.x39_c00290{left:579.621733pt;}
.x30_c00290{left:580.915333pt;}
.x64_c00290{left:583.286933pt;}
.x2_c00290{left:589.838533pt;}
.x66_c00290{left:590.991333pt;}
.x1e_c00290{left:600.807733pt;}
.x3_c00290{left:609.722133pt;}
.x31_c00290{left:610.804533pt;}
.x1f_c00290{left:620.312933pt;}
.x32_c00290{left:629.478133pt;}
.x48_c00290{left:639.615733pt;}
.x4e_c00290{left:649.119733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_33dc7fbcbe3eb6c517169d43.woff2')format("woff");}.ff1_c00291{font-family:ff1_c00291;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00291;src:url('chunks/assets/font_85dd8a83cea5288cf2a86b08.woff2')format("woff");}.ff2_c00291{font-family:ff2_c00291;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00291;src:url('chunks/assets/font_19bf5c32dc31a1473dfdd645.woff2')format("woff");}.ff3_c00291{font-family:ff3_c00291;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00291;src:url('chunks/assets/font_cff7c5d07fd78c9b22b19b8b.woff2')format("woff");}.ff4_c00291{font-family:ff4_c00291;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00291;src:url('chunks/assets/font_8fe941b78defda8669a1167f.woff2')format("woff");}.ff5_c00291{font-family:ff5_c00291;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00291;src:url('chunks/assets/font_d7a8bec137d6d37444efa2c9.woff2')format("woff");}.ff6_c00291{font-family:ff6_c00291;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m35_c00291{transform:matrix(0.076390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076390,0.000000,0.000000,0.250000,0,0);}
.m36_c00291{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);}
.m92_c00291{transform:matrix(0.095229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095229,0.000000,0.000000,0.250000,0,0);}
.m34_c00291{transform:matrix(0.173610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173610,0.000000,0.000000,0.250000,0,0);}
.m86_c00291{transform:matrix(0.175347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175347,0.000000,0.000000,0.250000,0,0);}
.m95_c00291{transform:matrix(0.202350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202350,0.000000,0.000000,0.250000,0,0);}
.m87_c00291{transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);}
.ma8_c00291{transform:matrix(0.223025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223025,0.000000,0.000000,0.250000,0,0);}
.ma3_c00291{transform:matrix(0.249499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249499,0.000000,0.000000,0.250000,0,0);}
.m2_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);}
.m8e_c00291{transform:matrix(0.250137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250137,0.000000,0.000000,0.250000,0,0);}
.m8c_c00291{transform:matrix(0.251797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251797,0.000000,0.000000,0.250000,0,0);}
.m24_c00291{transform:matrix(0.252349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252349,0.000000,0.000000,0.250000,0,0);}
.m63_c00291{transform:matrix(0.254683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254683,0.000000,0.000000,0.250000,0,0);}
.m64_c00291{transform:matrix(0.255147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255147,0.000000,0.000000,0.250000,0,0);}
.m5c_c00291{transform:matrix(0.255208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255208,0.000000,0.000000,0.250000,0,0);}
.m9d_c00291{transform:matrix(0.256293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256293,0.000000,0.000000,0.250000,0,0);}
.m2b_c00291{transform:matrix(0.256863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256863,0.000000,0.000000,0.250000,0,0);}
.mac_c00291{transform:matrix(0.257181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257181,0.000000,0.000000,0.250000,0,0);}
.m46_c00291{transform:matrix(0.258596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258596,0.000000,0.000000,0.250000,0,0);}
.m10_c00291{transform:matrix(0.262979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262979,0.000000,0.000000,0.250000,0,0);}
.md_c00291{transform:matrix(0.263038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263038,0.000000,0.000000,0.250000,0,0);}
.m5f_c00291{transform:matrix(0.263107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263107,0.000000,0.000000,0.250000,0,0);}
.m9f_c00291{transform:matrix(0.264212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264212,0.000000,0.000000,0.250000,0,0);}
.m17_c00291{transform:matrix(0.266075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266075,0.000000,0.000000,0.250000,0,0);}
.m1_c00291{transform:matrix(0.266288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266288,0.000000,0.000000,0.250000,0,0);}
.ma0_c00291{transform:matrix(0.266632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266632,0.000000,0.000000,0.250000,0,0);}
.m94_c00291{transform:matrix(0.267914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267914,0.000000,0.000000,0.250000,0,0);}
.m8b_c00291{transform:matrix(0.268206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268206,0.000000,0.000000,0.250000,0,0);}
.m9b_c00291{transform:matrix(0.268952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268952,0.000000,0.000000,0.250000,0,0);}
.m67_c00291{transform:matrix(0.270153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270153,0.000000,0.000000,0.250000,0,0);}
.me_c00291{transform:matrix(0.270827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270827,0.000000,0.000000,0.250000,0,0);}
.m6d_c00291{transform:matrix(0.271113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271113,0.000000,0.000000,0.250000,0,0);}
.m7e_c00291{transform:matrix(0.271467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271467,0.000000,0.000000,0.250000,0,0);}
.m6e_c00291{transform:matrix(0.271497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271497,0.000000,0.000000,0.250000,0,0);}
.m70_c00291{transform:matrix(0.271831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271831,0.000000,0.000000,0.250000,0,0);}
.m5e_c00291{transform:matrix(0.271903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271903,0.000000,0.000000,0.250000,0,0);}
.m60_c00291{transform:matrix(0.272346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272346,0.000000,0.000000,0.250000,0,0);}
.m40_c00291{transform:matrix(0.273290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273290,0.000000,0.000000,0.250000,0,0);}
.m5_c00291{transform:matrix(0.273819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273819,0.000000,0.000000,0.250000,0,0);}
.m12_c00291{transform:matrix(0.274839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274839,0.000000,0.000000,0.250000,0,0);}
.m1f_c00291{transform:matrix(0.275579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275579,0.000000,0.000000,0.250000,0,0);}
.m29_c00291{transform:matrix(0.276155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276155,0.000000,0.000000,0.250000,0,0);}
.m66_c00291{transform:matrix(0.276535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276535,0.000000,0.000000,0.250000,0,0);}
.ma4_c00291{transform:matrix(0.277351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277351,0.000000,0.000000,0.250000,0,0);}
.m56_c00291{transform:matrix(0.278009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278009,0.000000,0.000000,0.250000,0,0);}
.m76_c00291{transform:matrix(0.279142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279142,0.000000,0.000000,0.250000,0,0);}
.m52_c00291{transform:matrix(0.279271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279271,0.000000,0.000000,0.250000,0,0);}
.m37_c00291{transform:matrix(0.279427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279427,0.000000,0.000000,0.250000,0,0);}
.m74_c00291{transform:matrix(0.280331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280331,0.000000,0.000000,0.250000,0,0);}
.m26_c00291{transform:matrix(0.280680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280680,0.000000,0.000000,0.250000,0,0);}
.m99_c00291{transform:matrix(0.281416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281416,0.000000,0.000000,0.250000,0,0);}
.m47_c00291{transform:matrix(0.281902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281902,0.000000,0.000000,0.250000,0,0);}
.m5a_c00291{transform:matrix(0.281918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281918,0.000000,0.000000,0.250000,0,0);}
.m97_c00291{transform:matrix(0.281958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281958,0.000000,0.000000,0.250000,0,0);}
.m1a_c00291{transform:matrix(0.283611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283611,0.000000,0.000000,0.250000,0,0);}
.m42_c00291{transform:matrix(0.284273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284273,0.000000,0.000000,0.250000,0,0);}
.m5b_c00291{transform:matrix(0.284510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284510,0.000000,0.000000,0.250000,0,0);}
.m81_c00291{transform:matrix(0.284933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284933,0.000000,0.000000,0.250000,0,0);}
.ma6_c00291{transform:matrix(0.285678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285678,0.000000,0.000000,0.250000,0,0);}
.m31_c00291{transform:matrix(0.285842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285842,0.000000,0.000000,0.250000,0,0);}
.m21_c00291{transform:matrix(0.286008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286008,0.000000,0.000000,0.250000,0,0);}
.m1b_c00291{transform:matrix(0.286997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286997,0.000000,0.000000,0.250000,0,0);}
.m3e_c00291{transform:matrix(0.287379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287379,0.000000,0.000000,0.250000,0,0);}
.m89_c00291{transform:matrix(0.287380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287380,0.000000,0.000000,0.250000,0,0);}
.mb1_c00291{transform:matrix(0.287964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287964,0.000000,0.000000,0.250000,0,0);}
.m19_c00291{transform:matrix(0.288168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288168,0.000000,0.000000,0.250000,0,0);}
.m14_c00291{transform:matrix(0.289011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289011,0.000000,0.000000,0.250000,0,0);}
.m6a_c00291{transform:matrix(0.289878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289878,0.000000,0.000000,0.250000,0,0);}
.m71_c00291{transform:matrix(0.290401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290401,0.000000,0.000000,0.250000,0,0);}
.mb3_c00291{transform:matrix(0.293362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293362,0.000000,0.000000,0.250000,0,0);}
.m59_c00291{transform:matrix(0.294178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294178,0.000000,0.000000,0.250000,0,0);}
.m4a_c00291{transform:matrix(0.294585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294585,0.000000,0.000000,0.250000,0,0);}
.m85_c00291{transform:matrix(0.294725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294725,0.000000,0.000000,0.250000,0,0);}
.m2f_c00291{transform:matrix(0.295246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295246,0.000000,0.000000,0.250000,0,0);}
.ma_c00291{transform:matrix(0.295258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295258,0.000000,0.000000,0.250000,0,0);}
.m41_c00291{transform:matrix(0.295653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295653,0.000000,0.000000,0.250000,0,0);}
.m54_c00291{transform:matrix(0.295785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295785,0.000000,0.000000,0.250000,0,0);}
.m9e_c00291{transform:matrix(0.296058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296058,0.000000,0.000000,0.250000,0,0);}
.m6_c00291{transform:matrix(0.296163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296163,0.000000,0.000000,0.250000,0,0);}
.m82_c00291{transform:matrix(0.296530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296530,0.000000,0.000000,0.250000,0,0);}
.m61_c00291{transform:matrix(0.296947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296947,0.000000,0.000000,0.250000,0,0);}
.mc0_c00291{transform:matrix(0.297023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297023,0.000000,0.000000,0.250000,0,0);}
.m2e_c00291{transform:matrix(0.297734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297734,0.000000,0.000000,0.250000,0,0);}
.m57_c00291{transform:matrix(0.297945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297945,0.000000,0.000000,0.250000,0,0);}
.m98_c00291{transform:matrix(0.298445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298445,0.000000,0.000000,0.250000,0,0);}
.mab_c00291{transform:matrix(0.298733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298733,0.000000,0.000000,0.250000,0,0);}
.m78_c00291{transform:matrix(0.298927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298927,0.000000,0.000000,0.250000,0,0);}
.m22_c00291{transform:matrix(0.299287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299287,0.000000,0.000000,0.250000,0,0);}
.m15_c00291{transform:matrix(0.300138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300138,0.000000,0.000000,0.250000,0,0);}
.maa_c00291{transform:matrix(0.300614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300614,0.000000,0.000000,0.250000,0,0);}
.m33_c00291{transform:matrix(0.300707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300707,0.000000,0.000000,0.250000,0,0);}
.m65_c00291{transform:matrix(0.300746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300746,0.000000,0.000000,0.250000,0,0);}
.m9a_c00291{transform:matrix(0.301005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301005,0.000000,0.000000,0.250000,0,0);}
.m27_c00291{transform:matrix(0.301203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301203,0.000000,0.000000,0.250000,0,0);}
.m58_c00291{transform:matrix(0.301646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301646,0.000000,0.000000,0.250000,0,0);}
.m83_c00291{transform:matrix(0.302208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302208,0.000000,0.000000,0.250000,0,0);}
.m7c_c00291{transform:matrix(0.302383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302383,0.000000,0.000000,0.250000,0,0);}
.mc1_c00291{transform:matrix(0.302468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302468,0.000000,0.000000,0.250000,0,0);}
.m7a_c00291{transform:matrix(0.302908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302908,0.000000,0.000000,0.250000,0,0);}
.m7b_c00291{transform:matrix(0.303020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303020,0.000000,0.000000,0.250000,0,0);}
.m72_c00291{transform:matrix(0.303094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303094,0.000000,0.000000,0.250000,0,0);}
.ma5_c00291{transform:matrix(0.305159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305159,0.000000,0.000000,0.250000,0,0);}
.m49_c00291{transform:matrix(0.305595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305595,0.000000,0.000000,0.250000,0,0);}
.m6c_c00291{transform:matrix(0.305768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305768,0.000000,0.000000,0.250000,0,0);}
.m2c_c00291{transform:matrix(0.306271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306271,0.000000,0.000000,0.250000,0,0);}
.m3_c00291{transform:matrix(0.306929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306929,0.000000,0.000000,0.250000,0,0);}
.m28_c00291{transform:matrix(0.307307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307307,0.000000,0.000000,0.250000,0,0);}
.mb2_c00291{transform:matrix(0.307373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307373,0.000000,0.000000,0.250000,0,0);}
.m7f_c00291{transform:matrix(0.308311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308311,0.000000,0.000000,0.250000,0,0);}
.m6b_c00291{transform:matrix(0.308319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308319,0.000000,0.000000,0.250000,0,0);}
.m2d_c00291{transform:matrix(0.309251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309251,0.000000,0.000000,0.250000,0,0);}
.maf_c00291{transform:matrix(0.309362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309362,0.000000,0.000000,0.250000,0,0);}
.m79_c00291{transform:matrix(0.309432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309432,0.000000,0.000000,0.250000,0,0);}
.m50_c00291{transform:matrix(0.309955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309955,0.000000,0.000000,0.250000,0,0);}
.m3b_c00291{transform:matrix(0.310306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310306,0.000000,0.000000,0.250000,0,0);}
.m23_c00291{transform:matrix(0.311052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311052,0.000000,0.000000,0.250000,0,0);}
.m39_c00291{transform:matrix(0.311251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311251,0.000000,0.000000,0.250000,0,0);}
.m88_c00291{transform:matrix(0.311622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311622,0.000000,0.000000,0.250000,0,0);}
.mb8_c00291{transform:matrix(0.312470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312470,0.000000,0.000000,0.250000,0,0);}
.m18_c00291{transform:matrix(0.312601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312601,0.000000,0.000000,0.250000,0,0);}
.m7_c00291{transform:matrix(0.313210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313210,0.000000,0.000000,0.250000,0,0);}
.m8a_c00291{transform:matrix(0.313850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313850,0.000000,0.000000,0.250000,0,0);}
.m73_c00291{transform:matrix(0.314362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314362,0.000000,0.000000,0.250000,0,0);}
.mb6_c00291{transform:matrix(0.314562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314562,0.000000,0.000000,0.250000,0,0);}
.mbc_c00291{transform:matrix(0.314837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314837,0.000000,0.000000,0.250000,0,0);}
.ma1_c00291{transform:matrix(0.315792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315792,0.000000,0.000000,0.250000,0,0);}
.ma7_c00291{transform:matrix(0.315831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315831,0.000000,0.000000,0.250000,0,0);}
.m45_c00291{transform:matrix(0.316082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316082,0.000000,0.000000,0.250000,0,0);}
.m7d_c00291{transform:matrix(0.316775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316775,0.000000,0.000000,0.250000,0,0);}
.mb7_c00291{transform:matrix(0.317220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317220,0.000000,0.000000,0.250000,0,0);}
.m84_c00291{transform:matrix(0.317261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317261,0.000000,0.000000,0.250000,0,0);}
.m4b_c00291{transform:matrix(0.317395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317395,0.000000,0.000000,0.250000,0,0);}
.m11_c00291{transform:matrix(0.317490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317490,0.000000,0.000000,0.250000,0,0);}
.m43_c00291{transform:matrix(0.317893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317893,0.000000,0.000000,0.250000,0,0);}
.m1e_c00291{transform:matrix(0.318591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318591,0.000000,0.000000,0.250000,0,0);}
.m16_c00291{transform:matrix(0.318708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318708,0.000000,0.000000,0.250000,0,0);}
.ma9_c00291{transform:matrix(0.319135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319135,0.000000,0.000000,0.250000,0,0);}
.m1d_c00291{transform:matrix(0.320264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320264,0.000000,0.000000,0.250000,0,0);}
.m0_c00291{transform:matrix(0.320552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320552,0.000000,0.000000,0.250000,0,0);}
.m3a_c00291{transform:matrix(0.321007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321007,0.000000,0.000000,0.250000,0,0);}
.mb0_c00291{transform:matrix(0.321826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321826,0.000000,0.000000,0.250000,0,0);}
.m4d_c00291{transform:matrix(0.322216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322216,0.000000,0.000000,0.250000,0,0);}
.m13_c00291{transform:matrix(0.322389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322389,0.000000,0.000000,0.250000,0,0);}
.m3f_c00291{transform:matrix(0.322580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322580,0.000000,0.000000,0.250000,0,0);}
.m20_c00291{transform:matrix(0.322721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322721,0.000000,0.000000,0.250000,0,0);}
.m6f_c00291{transform:matrix(0.322750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322750,0.000000,0.000000,0.250000,0,0);}
.m68_c00291{transform:matrix(0.324390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324390,0.000000,0.000000,0.250000,0,0);}
.mb4_c00291{transform:matrix(0.324926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324926,0.000000,0.000000,0.250000,0,0);}
.m90_c00291{transform:matrix(0.325168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325168,0.000000,0.000000,0.250000,0,0);}
.m77_c00291{transform:matrix(0.325343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325343,0.000000,0.000000,0.250000,0,0);}
.m44_c00291{transform:matrix(0.326884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326884,0.000000,0.000000,0.250000,0,0);}
.m4e_c00291{transform:matrix(0.326955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326955,0.000000,0.000000,0.250000,0,0);}
.m5d_c00291{transform:matrix(0.327170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327170,0.000000,0.000000,0.250000,0,0);}
.m80_c00291{transform:matrix(0.328094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328094,0.000000,0.000000,0.250000,0,0);}
.m4c_c00291{transform:matrix(0.328213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328213,0.000000,0.000000,0.250000,0,0);}
.m51_c00291{transform:matrix(0.328244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328244,0.000000,0.000000,0.250000,0,0);}
.m8_c00291{transform:matrix(0.328412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328412,0.000000,0.000000,0.250000,0,0);}
.m69_c00291{transform:matrix(0.330414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330414,0.000000,0.000000,0.250000,0,0);}
.m30_c00291{transform:matrix(0.330688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330688,0.000000,0.000000,0.250000,0,0);}
.m4_c00291{transform:matrix(0.330966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330966,0.000000,0.000000,0.250000,0,0);}
.m8f_c00291{transform:matrix(0.332784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332784,0.000000,0.000000,0.250000,0,0);}
.m3c_c00291{transform:matrix(0.332903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332903,0.000000,0.000000,0.250000,0,0);}
.m55_c00291{transform:matrix(0.333321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333321,0.000000,0.000000,0.250000,0,0);}
.m93_c00291{transform:matrix(0.333952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333952,0.000000,0.000000,0.250000,0,0);}
.m9_c00291{transform:matrix(0.336513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336513,0.000000,0.000000,0.250000,0,0);}
.m62_c00291{transform:matrix(0.336648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336648,0.000000,0.000000,0.250000,0,0);}
.m53_c00291{transform:matrix(0.337194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337194,0.000000,0.000000,0.250000,0,0);}
.m8d_c00291{transform:matrix(0.337482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337482,0.000000,0.000000,0.250000,0,0);}
.mb_c00291{transform:matrix(0.340292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340292,0.000000,0.000000,0.250000,0,0);}
.mba_c00291{transform:matrix(0.340685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340685,0.000000,0.000000,0.250000,0,0);}
.m3d_c00291{transform:matrix(0.340729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340729,0.000000,0.000000,0.250000,0,0);}
.ma2_c00291{transform:matrix(0.341106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341106,0.000000,0.000000,0.250000,0,0);}
.mb9_c00291{transform:matrix(0.341170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341170,0.000000,0.000000,0.250000,0,0);}
.mb5_c00291{transform:matrix(0.341213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341213,0.000000,0.000000,0.250000,0,0);}
.m25_c00291{transform:matrix(0.341712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341712,0.000000,0.000000,0.250000,0,0);}
.mf_c00291{transform:matrix(0.342864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342864,0.000000,0.000000,0.250000,0,0);}
.m2a_c00291{transform:matrix(0.348428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348428,0.000000,0.000000,0.250000,0,0);}
.m4f_c00291{transform:matrix(0.351137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351137,0.000000,0.000000,0.250000,0,0);}
.mbd_c00291{transform:matrix(0.352099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352099,0.000000,0.000000,0.250000,0,0);}
.mbf_c00291{transform:matrix(0.356115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356115,0.000000,0.000000,0.250000,0,0);}
.m75_c00291{transform:matrix(0.356927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356927,0.000000,0.000000,0.250000,0,0);}
.mbe_c00291{transform:matrix(0.357513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357513,0.000000,0.000000,0.250000,0,0);}
.m48_c00291{transform:matrix(0.360983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360983,0.000000,0.000000,0.250000,0,0);}
.m38_c00291{transform:matrix(0.365477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365477,0.000000,0.000000,0.250000,0,0);}
.m96_c00291{transform:matrix(0.365892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365892,0.000000,0.000000,0.250000,0,0);}
.mad_c00291{transform:matrix(0.369095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369095,0.000000,0.000000,0.250000,0,0);}
.mae_c00291{transform:matrix(0.371030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371030,0.000000,0.000000,0.250000,0,0);}
.m1c_c00291{transform:matrix(0.371671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371671,0.000000,0.000000,0.250000,0,0);}
.mbb_c00291{transform:matrix(0.377866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377866,0.000000,0.000000,0.250000,0,0);}
.m9c_c00291{transform:matrix(0.382702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382702,0.000000,0.000000,0.250000,0,0);}
.m32_c00291{transform:matrix(0.390602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390602,0.000000,0.000000,0.250000,0,0);}
.m91_c00291{transform:matrix(0.419438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419438,0.000000,0.000000,0.250000,0,0);}
.mc_c00291{transform:matrix(0.468742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468742,0.000000,0.000000,0.250000,0,0);}
.v0_c00291{vertical-align:0.000000px;}
.lsb_c00291{letter-spacing:-2.668050px;}
.ls6_c00291{letter-spacing:-1.250172px;}
.ls2_c00291{letter-spacing:0.000000px;}
.lsc_c00291{letter-spacing:2.995839px;}
.ls0_c00291{letter-spacing:3.072069px;}
.lsd_c00291{letter-spacing:3.271732px;}
.ls9_c00291{letter-spacing:3.437973px;}
.ls1_c00291{letter-spacing:3.494700px;}
.ls5_c00291{letter-spacing:3.544200px;}
.lse_c00291{letter-spacing:3.735270px;}
.ls3_c00291{letter-spacing:3.811500px;}
.lsa_c00291{letter-spacing:3.880810px;}
.ls8_c00291{letter-spacing:4.029310px;}
.ls4_c00291{letter-spacing:11.404998px;}
.ls7_c00291{letter-spacing:51.321798px;}
.sc__c00291{text-shadow:none;}
.sc0_c00291{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00291{-webkit-text-stroke:0px transparent;}
.sc0_c00291{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00291{word-spacing:-19.057500px;}
.ws2_c00291{word-spacing:0.000000px;}
.ws1_c00291{word-spacing:4.878720px;}
._7_c00291{margin-left:-9.909900px;}
._4_c00291{margin-left:-7.012170px;}
._5_c00291{width:4.573800px;}
._1_c00291{width:6.708240px;}
._9_c00291{width:8.613990px;}
._2_c00291{width:10.062360px;}
._8_c00291{width:11.968110px;}
._10_c00291{width:15.855840px;}
._0_c00291{width:21.420630px;}
._d_c00291{width:22.945230px;}
._6_c00291{width:25.690500px;}
._e_c00291{width:27.675450px;}
._b_c00291{width:29.882160px;}
._3_c00291{width:31.876020px;}
._f_c00291{width:33.007590px;}
._13_c00291{width:34.372800px;}
._11_c00291{width:35.445960px;}
._c_c00291{width:38.134800px;}
._14_c00291{width:39.976200px;}
._a_c00291{width:42.401700px;}
._12_c00291{width:47.567520px;}
.fc0_c00291{color:transparent;}
.fs3_c00291{font-size:11.404998px;}
.fs6_c00291{font-size:27.324000px;}
.fsd_c00291{font-size:27.720000px;}
.fsa_c00291{font-size:31.680000px;}
.fs7_c00291{font-size:51.321798px;}
.fs0_c00291{font-size:69.894000px;}
.fs4_c00291{font-size:70.884000px;}
.fsb_c00291{font-size:71.280000px;}
.fsc_c00291{font-size:73.854000px;}
.fs2_c00291{font-size:76.230000px;}
.fs9_c00291{font-size:77.616198px;}
.fs5_c00291{font-size:79.200000px;}
.fs8_c00291{font-size:80.586198px;}
.fs1_c00291{font-size:91.872198px;}
.y0_c00291{bottom:0.000000px;}
.y22_c00291{bottom:72.973935px;}
.y1_c00291{bottom:76.500000px;}
.y21_c00291{bottom:129.992985px;}
.y20_c00291{bottom:160.648335px;}
.y1e_c00291{bottom:196.999650px;}
.y1f_c00291{bottom:197.001135px;}
.y1d_c00291{bottom:230.502735px;}
.y1c_c00291{bottom:230.504963px;}
.y1b_c00291{bottom:262.578735px;}
.y1a_c00291{bottom:327.087135px;}
.y18_c00291{bottom:359.514585px;}
.y19_c00291{bottom:362.727135px;}
.y17_c00291{bottom:391.590585px;}
.y16_c00291{bottom:424.022985px;}
.y15_c00291{bottom:456.460335px;}
.y14_c00291{bottom:488.531385px;}
.y13_c00291{bottom:521.676585px;}
.y12_c00291{bottom:554.465385px;}
.y10_c00291{bottom:589.034700px;}
.y11_c00291{bottom:589.041135px;}
.yf_c00291{bottom:622.537785px;}
.yd_c00291{bottom:656.752185px;}
.ye_c00291{bottom:657.113535px;}
.yc_c00291{bottom:753.697935px;}
.yb_c00291{bottom:785.417535px;}
.ya_c00291{bottom:810.004185px;}
.y9_c00291{bottom:817.493535px;}
.y7_c00291{bottom:852.054930px;}
.y8_c00291{bottom:852.064335px;}
.y6_c00291{bottom:884.853135px;}
.y5_c00291{bottom:913.008735px;}
.y4_c00291{bottom:916.924185px;}
.y3_c00291{bottom:1063.760985px;}
.y2_c00291{bottom:1071.245385px;}
.h5_c00291{height:7.595729px;}
.h8_c00291{height:28.498078px;}
.he_c00291{height:28.911094px;}
.hc_c00291{height:31.092188px;}
.h9_c00291{height:34.180317px;}
.h2_c00291{height:68.597139px;}
.h6_c00291{height:69.568770px;}
.hd_c00291{height:72.447601px;}
.h4_c00291{height:74.815576px;}
.h7_c00291{height:77.730469px;}
.hb_c00291{height:78.222575px;}
.ha_c00291{height:81.215778px;}
.h3_c00291{height:90.167538px;}
.h1_c00291{height:1110.000000px;}
.h0_c00291{height:1263.000000px;}
.w1_c00291{width:763.500000px;}
.w0_c00291{width:892.500000px;}
.x0_c00291{left:0.000000px;}
.x1_c00291{left:64.500000px;}
.x10_c00291{left:85.413285px;}
.x5_c00291{left:86.947785px;}
.x5f_c00291{left:97.120035px;}
.x2b_c00291{left:107.435835px;}
.x38_c00291{left:119.711835px;}
.x11_c00291{left:130.106835px;}
.x21_c00291{left:140.967135px;}
.x56_c00291{left:152.748135px;}
.x12_c00291{left:163.643085px;}
.x22_c00291{left:173.750985px;}
.x2c_c00291{left:184.477635px;}
.x43_c00291{left:185.932935px;}
.x13_c00291{left:196.728885px;}
.x47_c00291{left:206.534835px;}
.x6_c00291{left:207.836685px;}
.x2d_c00291{left:218.365335px;}
.x3e_c00291{left:229.349385px;}
.x50_c00291{left:239.665185px;}
.x7_c00291{left:240.892785px;}
.x34_c00291{left:251.604585px;}
.x48_c00291{left:263.370735px;}
.x23_c00291{left:264.722085px;}
.x3f_c00291{left:274.092435px;}
.x4d_c00291{left:276.483285px;}
.x24_c00291{left:284.734935px;}
.x14_c00291{left:295.921935px;}
.x5c_c00291{left:306.752535px;}
.x8_c00291{left:307.925685px;}
.x25_c00291{left:317.375235px;}
.x15_c00291{left:328.755285px;}
.x45_c00291{left:329.968035px;}
.x9_c00291{left:340.031385px;}
.x51_c00291{left:342.417285px;}
.x57_c00291{left:345.654585px;}
.x58_c00291{left:347.763285px;}
.x16_c00291{left:351.089685px;}
.x17_c00291{left:362.118285px;}
.x39_c00291{left:364.157685px;}
.x64_c00291{left:366.494085px;}
.x40_c00291{left:373.493385px;}
.x2e_c00291{left:383.863635px;}
.x35_c00291{left:394.545735px;}
.x18_c00291{left:395.555535px;}
.x52_c00291{left:397.614735px;}
.x53_c00291{left:404.386335px;}
.x2f_c00291{left:406.351485px;}
.x4e_c00291{left:417.008835px;}
.x26_c00291{left:428.354235px;}
.x60_c00291{left:430.804485px;}
.x54_c00291{left:438.259185px;}
.x19_c00291{left:439.744185px;}
.x30_c00291{left:450.282735px;}
.x61_c00291{left:460.722285px;}
.x1a_c00291{left:461.885535px;}
.x46_c00291{left:463.593285px;}
.x36_c00291{left:471.023235px;}
.xa_c00291{left:472.904235px;}
.x44_c00291{left:483.165585px;}
.x49_c00291{left:484.363485px;}
.x3b_c00291{left:493.120035px;}
.x31_c00291{left:494.699085px;}
.x27_c00291{left:505.396035px;}
.x3a_c00291{left:514.504035px;}
.x41_c00291{left:516.310785px;}
.x28_c00291{left:527.131485px;}
.x3c_c00291{left:536.917635px;}
.x62_c00291{left:538.541235px;}
.xb_c00291{left:548.362035px;}
.x42_c00291{left:549.931185px;}
.x59_c00291{left:559.435185px;}
.x1b_c00291{left:560.509335px;}
.xc_c00291{left:571.132035px;}
.x32_c00291{left:582.036885px;}
.x4a_c00291{left:593.070435px;}
.x1c_c00291{left:594.134685px;}
.x1d_c00291{left:603.549585px;}
.xd_c00291{left:604.752435px;}
.x33_c00291{left:614.929635px;}
.x1e_c00291{left:625.864185px;}
.x4b_c00291{left:626.903685px;}
.xe_c00291{left:636.531435px;}
.x5a_c00291{left:637.585785px;}
.x1f_c00291{left:647.762985px;}
.x37_c00291{left:653.148585px;}
.x4f_c00291{left:657.064035px;}
.x29_c00291{left:658.454985px;}
.x5b_c00291{left:659.667735px;}
.x2_c00291{left:669.627135px;}
.xf_c00291{left:680.903235px;}
.x55_c00291{left:689.852835px;}
.x3_c00291{left:692.015985px;}
.x20_c00291{left:694.184085px;}
.x4c_c00291{left:701.044785px;}
.x4_c00291{left:703.480185px;}
.x63_c00291{left:705.232485px;}
.x5d_c00291{left:712.622835px;}
.x2a_c00291{left:714.459285px;}
.x3d_c00291{left:724.557285px;}
.x5e_c00291{left:735.605685px;}
@media print{
.v0_c00291{vertical-align:0.000000pt;}
.lsb_c00291{letter-spacing:-2.371600pt;}
.ls6_c00291{letter-spacing:-1.111264pt;}
.ls2_c00291{letter-spacing:0.000000pt;}
.lsc_c00291{letter-spacing:2.662968pt;}
.ls0_c00291{letter-spacing:2.730728pt;}
.lsd_c00291{letter-spacing:2.908206pt;}
.ls9_c00291{letter-spacing:3.055976pt;}
.ls1_c00291{letter-spacing:3.106400pt;}
.ls5_c00291{letter-spacing:3.150400pt;}
.lse_c00291{letter-spacing:3.320240pt;}
.ls3_c00291{letter-spacing:3.388000pt;}
.lsa_c00291{letter-spacing:3.449609pt;}
.ls8_c00291{letter-spacing:3.581609pt;}
.ls4_c00291{letter-spacing:10.137776pt;}
.ls7_c00291{letter-spacing:45.619376pt;}
.ws0_c00291{word-spacing:-16.940000pt;}
.ws2_c00291{word-spacing:0.000000pt;}
.ws1_c00291{word-spacing:4.336640pt;}
._7_c00291{margin-left:-8.808800pt;}
._4_c00291{margin-left:-6.233040pt;}
._5_c00291{width:4.065600pt;}
._1_c00291{width:5.962880pt;}
._9_c00291{width:7.656880pt;}
._2_c00291{width:8.944320pt;}
._8_c00291{width:10.638320pt;}
._10_c00291{width:14.094080pt;}
._0_c00291{width:19.040560pt;}
._d_c00291{width:20.395760pt;}
._6_c00291{width:22.836000pt;}
._e_c00291{width:24.600400pt;}
._b_c00291{width:26.561920pt;}
._3_c00291{width:28.334240pt;}
._f_c00291{width:29.340080pt;}
._13_c00291{width:30.553600pt;}
._11_c00291{width:31.507520pt;}
._c_c00291{width:33.897600pt;}
._14_c00291{width:35.534400pt;}
._a_c00291{width:37.690400pt;}
._12_c00291{width:42.282240pt;}
.fs3_c00291{font-size:10.137776pt;}
.fs6_c00291{font-size:24.288000pt;}
.fsd_c00291{font-size:24.640000pt;}
.fsa_c00291{font-size:28.160000pt;}
.fs7_c00291{font-size:45.619376pt;}
.fs0_c00291{font-size:62.128000pt;}
.fs4_c00291{font-size:63.008000pt;}
.fsb_c00291{font-size:63.360000pt;}
.fsc_c00291{font-size:65.648000pt;}
.fs2_c00291{font-size:67.760000pt;}
.fs9_c00291{font-size:68.992176pt;}
.fs5_c00291{font-size:70.400000pt;}
.fs8_c00291{font-size:71.632176pt;}
.fs1_c00291{font-size:81.664176pt;}
.y0_c00291{bottom:0.000000pt;}
.y22_c00291{bottom:64.865720pt;}
.y1_c00291{bottom:68.000000pt;}
.y21_c00291{bottom:115.549320pt;}
.y20_c00291{bottom:142.798520pt;}
.y1e_c00291{bottom:175.110800pt;}
.y1f_c00291{bottom:175.112120pt;}
.y1d_c00291{bottom:204.891320pt;}
.y1c_c00291{bottom:204.893300pt;}
.y1b_c00291{bottom:233.403320pt;}
.y1a_c00291{bottom:290.744120pt;}
.y18_c00291{bottom:319.568520pt;}
.y19_c00291{bottom:322.424120pt;}
.y17_c00291{bottom:348.080520pt;}
.y16_c00291{bottom:376.909320pt;}
.y15_c00291{bottom:405.742520pt;}
.y14_c00291{bottom:434.250120pt;}
.y13_c00291{bottom:463.712520pt;}
.y12_c00291{bottom:492.858120pt;}
.y10_c00291{bottom:523.586400pt;}
.y11_c00291{bottom:523.592120pt;}
.yf_c00291{bottom:553.366920pt;}
.yd_c00291{bottom:583.779720pt;}
.ye_c00291{bottom:584.100920pt;}
.yc_c00291{bottom:669.953720pt;}
.yb_c00291{bottom:698.148920pt;}
.ya_c00291{bottom:720.003720pt;}
.y9_c00291{bottom:726.660920pt;}
.y7_c00291{bottom:757.382160pt;}
.y8_c00291{bottom:757.390520pt;}
.y6_c00291{bottom:786.536120pt;}
.y5_c00291{bottom:811.563320pt;}
.y4_c00291{bottom:815.043720pt;}
.y3_c00291{bottom:945.565320pt;}
.y2_c00291{bottom:952.218120pt;}
.h5_c00291{height:6.751759pt;}
.h8_c00291{height:25.331625pt;}
.he_c00291{height:25.698750pt;}
.hc_c00291{height:27.637500pt;}
.h9_c00291{height:30.382504pt;}
.h2_c00291{height:60.975234pt;}
.h6_c00291{height:61.838906pt;}
.hd_c00291{height:64.397867pt;}
.h4_c00291{height:66.502734pt;}
.h7_c00291{height:69.093750pt;}
.hb_c00291{height:69.531177pt;}
.ha_c00291{height:72.191802pt;}
.h3_c00291{height:80.148923pt;}
.h1_c00291{height:986.666667pt;}
.h0_c00291{height:1122.666667pt;}
.w1_c00291{width:678.666667pt;}
.w0_c00291{width:793.333333pt;}
.x0_c00291{left:0.000000pt;}
.x1_c00291{left:57.333333pt;}
.x10_c00291{left:75.922920pt;}
.x5_c00291{left:77.286920pt;}
.x5f_c00291{left:86.328920pt;}
.x2b_c00291{left:95.498520pt;}
.x38_c00291{left:106.410520pt;}
.x11_c00291{left:115.650520pt;}
.x21_c00291{left:125.304120pt;}
.x56_c00291{left:135.776120pt;}
.x12_c00291{left:145.460520pt;}
.x22_c00291{left:154.445320pt;}
.x2c_c00291{left:163.980120pt;}
.x43_c00291{left:165.273720pt;}
.x13_c00291{left:174.870120pt;}
.x47_c00291{left:183.586520pt;}
.x6_c00291{left:184.743720pt;}
.x2d_c00291{left:194.102520pt;}
.x3e_c00291{left:203.866120pt;}
.x50_c00291{left:213.035720pt;}
.x7_c00291{left:214.126920pt;}
.x34_c00291{left:223.648520pt;}
.x48_c00291{left:234.107320pt;}
.x23_c00291{left:235.308520pt;}
.x3f_c00291{left:243.637720pt;}
.x4d_c00291{left:245.762920pt;}
.x24_c00291{left:253.097720pt;}
.x14_c00291{left:263.041720pt;}
.x5c_c00291{left:272.668920pt;}
.x8_c00291{left:273.711720pt;}
.x25_c00291{left:282.111320pt;}
.x15_c00291{left:292.226920pt;}
.x45_c00291{left:293.304920pt;}
.x9_c00291{left:302.250120pt;}
.x51_c00291{left:304.370920pt;}
.x57_c00291{left:307.248520pt;}
.x58_c00291{left:309.122920pt;}
.x16_c00291{left:312.079720pt;}
.x17_c00291{left:321.882920pt;}
.x39_c00291{left:323.695720pt;}
.x64_c00291{left:325.772520pt;}
.x40_c00291{left:331.994120pt;}
.x2e_c00291{left:341.212120pt;}
.x35_c00291{left:350.707320pt;}
.x18_c00291{left:351.604920pt;}
.x52_c00291{left:353.435320pt;}
.x53_c00291{left:359.454520pt;}
.x2f_c00291{left:361.201320pt;}
.x4e_c00291{left:370.674520pt;}
.x26_c00291{left:380.759320pt;}
.x60_c00291{left:382.937320pt;}
.x54_c00291{left:389.563720pt;}
.x19_c00291{left:390.883720pt;}
.x30_c00291{left:400.251320pt;}
.x61_c00291{left:409.530920pt;}
.x1a_c00291{left:410.564920pt;}
.x46_c00291{left:412.082920pt;}
.x36_c00291{left:418.687320pt;}
.xa_c00291{left:420.359320pt;}
.x44_c00291{left:429.480520pt;}
.x49_c00291{left:430.545320pt;}
.x3b_c00291{left:438.328920pt;}
.x31_c00291{left:439.732520pt;}
.x27_c00291{left:449.240920pt;}
.x3a_c00291{left:457.336920pt;}
.x41_c00291{left:458.942920pt;}
.x28_c00291{left:468.561320pt;}
.x3c_c00291{left:477.260120pt;}
.x62_c00291{left:478.703320pt;}
.xb_c00291{left:487.432920pt;}
.x42_c00291{left:488.827720pt;}
.x59_c00291{left:497.275720pt;}
.x1b_c00291{left:498.230520pt;}
.xc_c00291{left:507.672920pt;}
.x32_c00291{left:517.366120pt;}
.x4a_c00291{left:527.173720pt;}
.x1c_c00291{left:528.119720pt;}
.x1d_c00291{left:536.488520pt;}
.xd_c00291{left:537.557720pt;}
.x33_c00291{left:546.604120pt;}
.x1e_c00291{left:556.323720pt;}
.x4b_c00291{left:557.247720pt;}
.xe_c00291{left:565.805720pt;}
.x5a_c00291{left:566.742920pt;}
.x1f_c00291{left:575.789320pt;}
.x37_c00291{left:580.576520pt;}
.x4f_c00291{left:584.056920pt;}
.x29_c00291{left:585.293320pt;}
.x5b_c00291{left:586.371320pt;}
.x2_c00291{left:595.224120pt;}
.xf_c00291{left:605.247320pt;}
.x55_c00291{left:613.202520pt;}
.x3_c00291{left:615.125320pt;}
.x20_c00291{left:617.052520pt;}
.x4c_c00291{left:623.150920pt;}
.x4_c00291{left:625.315720pt;}
.x63_c00291{left:626.873320pt;}
.x5d_c00291{left:633.442520pt;}
.x2a_c00291{left:635.074920pt;}
.x3d_c00291{left:644.050920pt;}
.x5e_c00291{left:653.871720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_adf6038fd336a7ced9beccfc.woff2')format("woff");}.ff1_c00292{font-family:ff1_c00292;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00292;src:url('chunks/assets/font_0ae96121dbdc78cc4cbee951.woff2')format("woff");}.ff2_c00292{font-family:ff2_c00292;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00292;src:url('chunks/assets/font_b6221bd75e7c32ed40017aed.woff2')format("woff");}.ff3_c00292{font-family:ff3_c00292;line-height:0.666000;font-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_c00292{transform:matrix(0.073132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073132,0.000000,0.000000,0.250000,0,0);}
.m80_c00292{transform:matrix(0.120853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120853,0.000000,0.000000,0.250000,0,0);}
.m2_c00292{transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);}
.mab_c00292{transform:matrix(0.125324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125324,0.000000,0.000000,0.250000,0,0);}
.m15_c00292{transform:matrix(0.129636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129636,0.000000,0.000000,0.250000,0,0);}
.m8f_c00292{transform:matrix(0.136711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136711,0.000000,0.000000,0.250000,0,0);}
.mb2_c00292{transform:matrix(0.149221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149221,0.000000,0.000000,0.250000,0,0);}
.m78_c00292{transform:matrix(0.166982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166982,0.000000,0.000000,0.250000,0,0);}
.mde_c00292{transform:matrix(0.169448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169448,0.000000,0.000000,0.250000,0,0);}
.m81_c00292{transform:matrix(0.174511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174511,0.000000,0.000000,0.250000,0,0);}
.mf_c00292{transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);}
.m39_c00292{transform:matrix(0.186038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186038,0.000000,0.000000,0.250000,0,0);}
.m53_c00292{transform:matrix(0.192983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192983,0.000000,0.000000,0.250000,0,0);}
.m10_c00292{transform:matrix(0.209524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209524,0.000000,0.000000,0.250000,0,0);}
.m76_c00292{transform:matrix(0.231932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231932,0.000000,0.000000,0.250000,0,0);}
.m8_c00292{transform:matrix(0.242624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242624,0.000000,0.000000,0.250000,0,0);}
.m98_c00292{transform:matrix(0.247251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247251,0.000000,0.000000,0.250000,0,0);}
.m23_c00292{transform:matrix(0.248791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248791,0.000000,0.000000,0.250000,0,0);}
.m0_c00292{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00292{transform:matrix(0.253999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253999,0.000000,0.000000,0.250000,0,0);}
.m97_c00292{transform:matrix(0.260341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260341,0.000000,0.000000,0.250000,0,0);}
.m11_c00292{transform:matrix(0.261041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261041,0.000000,0.000000,0.250000,0,0);}
.m75_c00292{transform:matrix(0.265008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265008,0.000000,0.000000,0.250000,0,0);}
.md7_c00292{transform:matrix(0.265392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265392,0.000000,0.000000,0.250000,0,0);}
.m24_c00292{transform:matrix(0.267533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267533,0.000000,0.000000,0.250000,0,0);}
.m9c_c00292{transform:matrix(0.270610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270610,0.000000,0.000000,0.250000,0,0);}
.m3f_c00292{transform:matrix(0.270910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270910,0.000000,0.000000,0.250000,0,0);}
.m9e_c00292{transform:matrix(0.272488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272488,0.000000,0.000000,0.250000,0,0);}
.m1a_c00292{transform:matrix(0.274532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274532,0.000000,0.000000,0.250000,0,0);}
.m6a_c00292{transform:matrix(0.274779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274779,0.000000,0.000000,0.250000,0,0);}
.m8d_c00292{transform:matrix(0.274923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274923,0.000000,0.000000,0.250000,0,0);}
.ma6_c00292{transform:matrix(0.276527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276527,0.000000,0.000000,0.250000,0,0);}
.m57_c00292{transform:matrix(0.276675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276675,0.000000,0.000000,0.250000,0,0);}
.m7b_c00292{transform:matrix(0.277352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277352,0.000000,0.000000,0.250000,0,0);}
.mc1_c00292{transform:matrix(0.279622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279622,0.000000,0.000000,0.250000,0,0);}
.m42_c00292{transform:matrix(0.279922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279922,0.000000,0.000000,0.250000,0,0);}
.m30_c00292{transform:matrix(0.280008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280008,0.000000,0.000000,0.250000,0,0);}
.mda_c00292{transform:matrix(0.282472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282472,0.000000,0.000000,0.250000,0,0);}
.mb_c00292{transform:matrix(0.283607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283607,0.000000,0.000000,0.250000,0,0);}
.m60_c00292{transform:matrix(0.284300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284300,0.000000,0.000000,0.250000,0,0);}
.m41_c00292{transform:matrix(0.284796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284796,0.000000,0.000000,0.250000,0,0);}
.m9b_c00292{transform:matrix(0.284819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284819,0.000000,0.000000,0.250000,0,0);}
.m3_c00292{transform:matrix(0.284920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284920,0.000000,0.000000,0.250000,0,0);}
.mae_c00292{transform:matrix(0.285008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285008,0.000000,0.000000,0.250000,0,0);}
.m70_c00292{transform:matrix(0.285646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285646,0.000000,0.000000,0.250000,0,0);}
.m6d_c00292{transform:matrix(0.286090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286090,0.000000,0.000000,0.250000,0,0);}
.m47_c00292{transform:matrix(0.286751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286751,0.000000,0.000000,0.250000,0,0);}
.m59_c00292{transform:matrix(0.287130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287130,0.000000,0.000000,0.250000,0,0);}
.m93_c00292{transform:matrix(0.287351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287351,0.000000,0.000000,0.250000,0,0);}
.m6_c00292{transform:matrix(0.287495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287495,0.000000,0.000000,0.250000,0,0);}
.m49_c00292{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00292{transform:matrix(0.287638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287638,0.000000,0.000000,0.250000,0,0);}
.m5f_c00292{transform:matrix(0.287676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287676,0.000000,0.000000,0.250000,0,0);}
.m1d_c00292{transform:matrix(0.288878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288878,0.000000,0.000000,0.250000,0,0);}
.m27_c00292{transform:matrix(0.289918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289918,0.000000,0.000000,0.250000,0,0);}
.m1_c00292{transform:matrix(0.290159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290159,0.000000,0.000000,0.250000,0,0);}
.m66_c00292{transform:matrix(0.290910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290910,0.000000,0.000000,0.250000,0,0);}
.m5b_c00292{transform:matrix(0.290956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290956,0.000000,0.000000,0.250000,0,0);}
.mb5_c00292{transform:matrix(0.291318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291318,0.000000,0.000000,0.250000,0,0);}
.m1b_c00292{transform:matrix(0.291695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291695,0.000000,0.000000,0.250000,0,0);}
.m9d_c00292{transform:matrix(0.292859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292859,0.000000,0.000000,0.250000,0,0);}
.mcb_c00292{transform:matrix(0.293357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293357,0.000000,0.000000,0.250000,0,0);}
.mac_c00292{transform:matrix(0.293362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293362,0.000000,0.000000,0.250000,0,0);}
.mcd_c00292{transform:matrix(0.294917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294917,0.000000,0.000000,0.250000,0,0);}
.m72_c00292{transform:matrix(0.295053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295053,0.000000,0.000000,0.250000,0,0);}
.mdb_c00292{transform:matrix(0.295528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295528,0.000000,0.000000,0.250000,0,0);}
.m13_c00292{transform:matrix(0.295588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295588,0.000000,0.000000,0.250000,0,0);}
.m4f_c00292{transform:matrix(0.297191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297191,0.000000,0.000000,0.250000,0,0);}
.md2_c00292{transform:matrix(0.298796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298796,0.000000,0.000000,0.250000,0,0);}
.m90_c00292{transform:matrix(0.299030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299030,0.000000,0.000000,0.250000,0,0);}
.m82_c00292{transform:matrix(0.299649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299649,0.000000,0.000000,0.250000,0,0);}
.ma4_c00292{transform:matrix(0.299745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299745,0.000000,0.000000,0.250000,0,0);}
.m3c_c00292{transform:matrix(0.299968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299968,0.000000,0.000000,0.250000,0,0);}
.m99_c00292{transform:matrix(0.300028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300028,0.000000,0.000000,0.250000,0,0);}
.m7e_c00292{transform:matrix(0.300149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300149,0.000000,0.000000,0.250000,0,0);}
.m56_c00292{transform:matrix(0.300370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300370,0.000000,0.000000,0.250000,0,0);}
.m17_c00292{transform:matrix(0.300514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300514,0.000000,0.000000,0.250000,0,0);}
.m64_c00292{transform:matrix(0.301331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301331,0.000000,0.000000,0.250000,0,0);}
.m7a_c00292{transform:matrix(0.301630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301630,0.000000,0.000000,0.250000,0,0);}
.md6_c00292{transform:matrix(0.301999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301999,0.000000,0.000000,0.250000,0,0);}
.mba_c00292{transform:matrix(0.302214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302214,0.000000,0.000000,0.250000,0,0);}
.m46_c00292{transform:matrix(0.302645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302645,0.000000,0.000000,0.250000,0,0);}
.m67_c00292{transform:matrix(0.303145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303145,0.000000,0.000000,0.250000,0,0);}
.m95_c00292{transform:matrix(0.303472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303472,0.000000,0.000000,0.250000,0,0);}
.m1f_c00292{transform:matrix(0.304039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304039,0.000000,0.000000,0.250000,0,0);}
.m4a_c00292{transform:matrix(0.304085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304085,0.000000,0.000000,0.250000,0,0);}
.mb8_c00292{transform:matrix(0.304245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304245,0.000000,0.000000,0.250000,0,0);}
.md9_c00292{transform:matrix(0.304630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304630,0.000000,0.000000,0.250000,0,0);}
.m1e_c00292{transform:matrix(0.304896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304896,0.000000,0.000000,0.250000,0,0);}
.mb4_c00292{transform:matrix(0.305728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305728,0.000000,0.000000,0.250000,0,0);}
.mc4_c00292{transform:matrix(0.306035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306035,0.000000,0.000000,0.250000,0,0);}
.m5d_c00292{transform:matrix(0.306614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306614,0.000000,0.000000,0.250000,0,0);}
.ma5_c00292{transform:matrix(0.306774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306774,0.000000,0.000000,0.250000,0,0);}
.mc5_c00292{transform:matrix(0.307726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307726,0.000000,0.000000,0.250000,0,0);}
.m33_c00292{transform:matrix(0.307739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307739,0.000000,0.000000,0.250000,0,0);}
.m40_c00292{transform:matrix(0.307892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307892,0.000000,0.000000,0.250000,0,0);}
.ma3_c00292{transform:matrix(0.308193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308193,0.000000,0.000000,0.250000,0,0);}
.ma0_c00292{transform:matrix(0.309185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309185,0.000000,0.000000,0.250000,0,0);}
.md3_c00292{transform:matrix(0.309815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309815,0.000000,0.000000,0.250000,0,0);}
.m2a_c00292{transform:matrix(0.309864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309864,0.000000,0.000000,0.250000,0,0);}
.m36_c00292{transform:matrix(0.310888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310888,0.000000,0.000000,0.250000,0,0);}
.m84_c00292{transform:matrix(0.311274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311274,0.000000,0.000000,0.250000,0,0);}
.mb6_c00292{transform:matrix(0.311512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311512,0.000000,0.000000,0.250000,0,0);}
.md4_c00292{transform:matrix(0.311884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311884,0.000000,0.000000,0.250000,0,0);}
.m3e_c00292{transform:matrix(0.311922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311922,0.000000,0.000000,0.250000,0,0);}
.m51_c00292{transform:matrix(0.312197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312197,0.000000,0.000000,0.250000,0,0);}
.m9a_c00292{transform:matrix(0.312659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312659,0.000000,0.000000,0.250000,0,0);}
.md_c00292{transform:matrix(0.312801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312801,0.000000,0.000000,0.250000,0,0);}
.m3a_c00292{transform:matrix(0.313051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313051,0.000000,0.000000,0.250000,0,0);}
.mbe_c00292{transform:matrix(0.313864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313864,0.000000,0.000000,0.250000,0,0);}
.m85_c00292{transform:matrix(0.313964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313964,0.000000,0.000000,0.250000,0,0);}
.m4d_c00292{transform:matrix(0.314304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314304,0.000000,0.000000,0.250000,0,0);}
.m21_c00292{transform:matrix(0.314893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314893,0.000000,0.000000,0.250000,0,0);}
.m5a_c00292{transform:matrix(0.315094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315094,0.000000,0.000000,0.250000,0,0);}
.m7f_c00292{transform:matrix(0.315166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315166,0.000000,0.000000,0.250000,0,0);}
.mce_c00292{transform:matrix(0.315568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315568,0.000000,0.000000,0.250000,0,0);}
.md0_c00292{transform:matrix(0.315811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315811,0.000000,0.000000,0.250000,0,0);}
.m37_c00292{transform:matrix(0.316439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316439,0.000000,0.000000,0.250000,0,0);}
.m28_c00292{transform:matrix(0.316470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316470,0.000000,0.000000,0.250000,0,0);}
.m25_c00292{transform:matrix(0.317984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317984,0.000000,0.000000,0.250000,0,0);}
.m3b_c00292{transform:matrix(0.318198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318198,0.000000,0.000000,0.250000,0,0);}
.m52_c00292{transform:matrix(0.319878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319878,0.000000,0.000000,0.250000,0,0);}
.m43_c00292{transform:matrix(0.319880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319880,0.000000,0.000000,0.250000,0,0);}
.m38_c00292{transform:matrix(0.320828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320828,0.000000,0.000000,0.250000,0,0);}
.m6e_c00292{transform:matrix(0.321782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321782,0.000000,0.000000,0.250000,0,0);}
.m4_c00292{transform:matrix(0.322445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322445,0.000000,0.000000,0.250000,0,0);}
.mc9_c00292{transform:matrix(0.322543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322543,0.000000,0.000000,0.250000,0,0);}
.m96_c00292{transform:matrix(0.323184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323184,0.000000,0.000000,0.250000,0,0);}
.mc2_c00292{transform:matrix(0.323203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323203,0.000000,0.000000,0.250000,0,0);}
.m29_c00292{transform:matrix(0.323662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323662,0.000000,0.000000,0.250000,0,0);}
.m71_c00292{transform:matrix(0.323850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323850,0.000000,0.000000,0.250000,0,0);}
.m32_c00292{transform:matrix(0.324224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324224,0.000000,0.000000,0.250000,0,0);}
.maa_c00292{transform:matrix(0.324326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324326,0.000000,0.000000,0.250000,0,0);}
.m6f_c00292{transform:matrix(0.324611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324611,0.000000,0.000000,0.250000,0,0);}
.m48_c00292{transform:matrix(0.324768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324768,0.000000,0.000000,0.250000,0,0);}
.m31_c00292{transform:matrix(0.325138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325138,0.000000,0.000000,0.250000,0,0);}
.m89_c00292{transform:matrix(0.326218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326218,0.000000,0.000000,0.250000,0,0);}
.mcf_c00292{transform:matrix(0.326274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326274,0.000000,0.000000,0.250000,0,0);}
.mc7_c00292{transform:matrix(0.327978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327978,0.000000,0.000000,0.250000,0,0);}
.mc_c00292{transform:matrix(0.329539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329539,0.000000,0.000000,0.250000,0,0);}
.m62_c00292{transform:matrix(0.329568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329568,0.000000,0.000000,0.250000,0,0);}
.m7c_c00292{transform:matrix(0.329943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329943,0.000000,0.000000,0.250000,0,0);}
.m45_c00292{transform:matrix(0.329984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329984,0.000000,0.000000,0.250000,0,0);}
.m5c_c00292{transform:matrix(0.330262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330262,0.000000,0.000000,0.250000,0,0);}
.m4c_c00292{transform:matrix(0.330430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330430,0.000000,0.000000,0.250000,0,0);}
.m86_c00292{transform:matrix(0.330612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330612,0.000000,0.000000,0.250000,0,0);}
.mb0_c00292{transform:matrix(0.332495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332495,0.000000,0.000000,0.250000,0,0);}
.mc8_c00292{transform:matrix(0.332527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332527,0.000000,0.000000,0.250000,0,0);}
.md8_c00292{transform:matrix(0.332720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332720,0.000000,0.000000,0.250000,0,0);}
.m68_c00292{transform:matrix(0.332746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332746,0.000000,0.000000,0.250000,0,0);}
.m8b_c00292{transform:matrix(0.333007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333007,0.000000,0.000000,0.250000,0,0);}
.m54_c00292{transform:matrix(0.333404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333404,0.000000,0.000000,0.250000,0,0);}
.mc3_c00292{transform:matrix(0.333706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333706,0.000000,0.000000,0.250000,0,0);}
.mb1_c00292{transform:matrix(0.334287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334287,0.000000,0.000000,0.250000,0,0);}
.m65_c00292{transform:matrix(0.334290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334290,0.000000,0.000000,0.250000,0,0);}
.m50_c00292{transform:matrix(0.334502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334502,0.000000,0.000000,0.250000,0,0);}
.m63_c00292{transform:matrix(0.335519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335519,0.000000,0.000000,0.250000,0,0);}
.m79_c00292{transform:matrix(0.336260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336260,0.000000,0.000000,0.250000,0,0);}
.m6b_c00292{transform:matrix(0.336717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336717,0.000000,0.000000,0.250000,0,0);}
.mca_c00292{transform:matrix(0.336854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336854,0.000000,0.000000,0.250000,0,0);}
.mbc_c00292{transform:matrix(0.337504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337504,0.000000,0.000000,0.250000,0,0);}
.mb7_c00292{transform:matrix(0.339305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339305,0.000000,0.000000,0.250000,0,0);}
.m26_c00292{transform:matrix(0.341370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341370,0.000000,0.000000,0.250000,0,0);}
.ma9_c00292{transform:matrix(0.342728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342728,0.000000,0.000000,0.250000,0,0);}
.m87_c00292{transform:matrix(0.342946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342946,0.000000,0.000000,0.250000,0,0);}
.m77_c00292{transform:matrix(0.343518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343518,0.000000,0.000000,0.250000,0,0);}
.m8c_c00292{transform:matrix(0.343809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343809,0.000000,0.000000,0.250000,0,0);}
.mbf_c00292{transform:matrix(0.343936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343936,0.000000,0.000000,0.250000,0,0);}
.m55_c00292{transform:matrix(0.344134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344134,0.000000,0.000000,0.250000,0,0);}
.mc6_c00292{transform:matrix(0.345319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345319,0.000000,0.000000,0.250000,0,0);}
.m7_c00292{transform:matrix(0.346399,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346399,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346399,0.000000,0.000000,0.250000,0,0);}
.m9_c00292{transform:matrix(0.346727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346727,0.000000,0.000000,0.250000,0,0);}
.ma8_c00292{transform:matrix(0.347107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347107,0.000000,0.000000,0.250000,0,0);}
.m88_c00292{transform:matrix(0.349331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349331,0.000000,0.000000,0.250000,0,0);}
.m8a_c00292{transform:matrix(0.350155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350155,0.000000,0.000000,0.250000,0,0);}
.m19_c00292{transform:matrix(0.350474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350474,0.000000,0.000000,0.250000,0,0);}
.mb9_c00292{transform:matrix(0.351254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351254,0.000000,0.000000,0.250000,0,0);}
.m18_c00292{transform:matrix(0.351941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351941,0.000000,0.000000,0.250000,0,0);}
.m7d_c00292{transform:matrix(0.352528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352528,0.000000,0.000000,0.250000,0,0);}
.mdd_c00292{transform:matrix(0.353125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353125,0.000000,0.000000,0.250000,0,0);}
.m2b_c00292{transform:matrix(0.353265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353265,0.000000,0.000000,0.250000,0,0);}
.m58_c00292{transform:matrix(0.353568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353568,0.000000,0.000000,0.250000,0,0);}
.m22_c00292{transform:matrix(0.354864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354864,0.000000,0.000000,0.250000,0,0);}
.mcc_c00292{transform:matrix(0.354866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354866,0.000000,0.000000,0.250000,0,0);}
.m83_c00292{transform:matrix(0.355966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355966,0.000000,0.000000,0.250000,0,0);}
.m74_c00292{transform:matrix(0.356639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356639,0.000000,0.000000,0.250000,0,0);}
.mbb_c00292{transform:matrix(0.357372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357372,0.000000,0.000000,0.250000,0,0);}
.m5_c00292{transform:matrix(0.357545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357545,0.000000,0.000000,0.250000,0,0);}
.m4b_c00292{transform:matrix(0.357546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357546,0.000000,0.000000,0.250000,0,0);}
.m2e_c00292{transform:matrix(0.357918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357918,0.000000,0.000000,0.250000,0,0);}
.mb3_c00292{transform:matrix(0.359139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359139,0.000000,0.000000,0.250000,0,0);}
.m73_c00292{transform:matrix(0.359203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359203,0.000000,0.000000,0.250000,0,0);}
.m2f_c00292{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);}
.m91_c00292{transform:matrix(0.360957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360957,0.000000,0.000000,0.250000,0,0);}
.md5_c00292{transform:matrix(0.362468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362468,0.000000,0.000000,0.250000,0,0);}
.md1_c00292{transform:matrix(0.363124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363124,0.000000,0.000000,0.250000,0,0);}
.m20_c00292{transform:matrix(0.363712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363712,0.000000,0.000000,0.250000,0,0);}
.m5e_c00292{transform:matrix(0.365372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365372,0.000000,0.000000,0.250000,0,0);}
.me_c00292{transform:matrix(0.367402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367402,0.000000,0.000000,0.250000,0,0);}
.m35_c00292{transform:matrix(0.367752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367752,0.000000,0.000000,0.250000,0,0);}
.m34_c00292{transform:matrix(0.368054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368054,0.000000,0.000000,0.250000,0,0);}
.ma_c00292{transform:matrix(0.368745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368745,0.000000,0.000000,0.250000,0,0);}
.mdc_c00292{transform:matrix(0.369608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369608,0.000000,0.000000,0.250000,0,0);}
.maf_c00292{transform:matrix(0.371339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371339,0.000000,0.000000,0.250000,0,0);}
.m94_c00292{transform:matrix(0.372040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372040,0.000000,0.000000,0.250000,0,0);}
.m61_c00292{transform:matrix(0.373273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373273,0.000000,0.000000,0.250000,0,0);}
.m8e_c00292{transform:matrix(0.373903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373903,0.000000,0.000000,0.250000,0,0);}
.m92_c00292{transform:matrix(0.375211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375211,0.000000,0.000000,0.250000,0,0);}
.m2d_c00292{transform:matrix(0.375618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375618,0.000000,0.000000,0.250000,0,0);}
.ma2_c00292{transform:matrix(0.375822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375822,0.000000,0.000000,0.250000,0,0);}
.ma7_c00292{transform:matrix(0.380159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380159,0.000000,0.000000,0.250000,0,0);}
.m1c_c00292{transform:matrix(0.380241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380241,0.000000,0.000000,0.250000,0,0);}
.m44_c00292{transform:matrix(0.380294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380294,0.000000,0.000000,0.250000,0,0);}
.m4e_c00292{transform:matrix(0.386739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386739,0.000000,0.000000,0.250000,0,0);}
.m3d_c00292{transform:matrix(0.393185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393185,0.000000,0.000000,0.250000,0,0);}
.m14_c00292{transform:matrix(0.401045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401045,0.000000,0.000000,0.250000,0,0);}
.mc0_c00292{transform:matrix(0.404767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404767,0.000000,0.000000,0.250000,0,0);}
.m9f_c00292{transform:matrix(0.405591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405591,0.000000,0.000000,0.250000,0,0);}
.m6c_c00292{transform:matrix(0.408513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408513,0.000000,0.000000,0.250000,0,0);}
.m69_c00292{transform:matrix(0.421414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421414,0.000000,0.000000,0.250000,0,0);}
.ma1_c00292{transform:matrix(0.430152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430152,0.000000,0.000000,0.250000,0,0);}
.m12_c00292{transform:matrix(0.444722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444722,0.000000,0.000000,0.250000,0,0);}
.m16_c00292{transform:matrix(0.460894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460894,0.000000,0.000000,0.250000,0,0);}
.v2_c00292{vertical-align:-4.257000px;}
.v0_c00292{vertical-align:0.000000px;}
.v3_c00292{vertical-align:5.702400px;}
.v1_c00292{vertical-align:11.404800px;}
.v4_c00292{vertical-align:12.830400px;}
.ls12_c00292{letter-spacing:-3.492727px;}
.ls7_c00292{letter-spacing:-2.564100px;}
.ls10_c00292{letter-spacing:-2.329668px;}
.lsd_c00292{letter-spacing:-2.087910px;}
.lsb_c00292{letter-spacing:-1.311354px;}
.ls3_c00292{letter-spacing:0.000000px;}
.ls2_c00292{letter-spacing:0.051282px;}
.ls11_c00292{letter-spacing:1.346400px;}
.lse_c00292{letter-spacing:1.643400px;}
.lsa_c00292{letter-spacing:1.875456px;}
.ls9_c00292{letter-spacing:2.527470px;}
.ls0_c00292{letter-spacing:3.120876px;}
.lsf_c00292{letter-spacing:3.643200px;}
.ls6_c00292{letter-spacing:3.663000px;}
.ls4_c00292{letter-spacing:3.762000px;}
.ls1_c00292{letter-spacing:6.593400px;}
.ls5_c00292{letter-spacing:31.363200px;}
.ls8_c00292{letter-spacing:49.896198px;}
.lsc_c00292{letter-spacing:54.172998px;}
.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:-18.366282px;}
.ws0_c00292{word-spacing:-18.315000px;}
.ws2_c00292{word-spacing:0.000000px;}
._3_c00292{margin-left:-7.985340px;}
._4_c00292{margin-left:-6.446880px;}
._1_c00292{width:1.098900px;}
._12_c00292{width:3.809520px;}
._9_c00292{width:6.666660px;}
._10_c00292{width:8.512812px;}
._6_c00292{width:10.183140px;}
._2_c00292{width:11.721600px;}
._8_c00292{width:14.143140px;}
._14_c00292{width:15.164820px;}
._5_c00292{width:23.615460px;}
._11_c00292{width:27.912060px;}
._16_c00292{width:30.329640px;}
._f_c00292{width:32.907600px;}
._b_c00292{width:34.505460px;}
._a_c00292{width:35.677620px;}
._13_c00292{width:37.544760px;}
._c_c00292{width:41.558220px;}
._7_c00292{width:43.124400px;}
._15_c00292{width:44.684640px;}
._18_c00292{width:223.260840px;}
._d_c00292{width:346.879368px;}
._17_c00292{width:440.577324px;}
._e_c00292{width:798.134040px;}
._0_c00292{width:1150.043400px;}
.fc0_c00292{color:transparent;}
.fs7_c00292{font-size:22.176000px;}
.fsc_c00292{font-size:22.572000px;}
.fs12_c00292{font-size:26.928000px;}
.fs0_c00292{font-size:27.720000px;}
.fs11_c00292{font-size:28.314000px;}
.fs6_c00292{font-size:31.363200px;}
.fs10_c00292{font-size:32.868000px;}
.fs1_c00292{font-size:33.264000px;}
.fs2_c00292{font-size:33.660000px;}
.fs13_c00292{font-size:34.056198px;}
.fs3_c00292{font-size:34.848000px;}
.fsa_c00292{font-size:36.432000px;}
.fs4_c00292{font-size:39.204000px;}
.fs14_c00292{font-size:44.352000px;}
.fs9_c00292{font-size:49.896198px;}
.fse_c00292{font-size:54.172998px;}
.fs15_c00292{font-size:60.192000px;}
.fsd_c00292{font-size:66.528000px;}
.fsf_c00292{font-size:72.864000px;}
.fs8_c00292{font-size:73.260000px;}
.fs5_c00292{font-size:75.240000px;}
.fsb_c00292{font-size:79.596198px;}
.fs16_c00292{font-size:99.792198px;}
.y27_c00292{bottom:-0.800865px;}
.y0_c00292{bottom:0.000000px;}
.y26_c00292{bottom:23.077935px;}
.y35_c00292{bottom:46.595385px;}
.y34_c00292{bottom:59.782185px;}
.y1_c00292{bottom:76.500000px;}
.y33_c00292{bottom:85.804335px;}
.y37_c00292{bottom:90.437535px;}
.y32_c00292{bottom:91.506735px;}
.y36_c00292{bottom:92.927385px;}
.y31_c00292{bottom:97.565535px;}
.y30_c00292{bottom:118.593135px;}
.y6_c00292{bottom:133.913385px;}
.y2f_c00292{bottom:149.243535px;}
.y2e_c00292{bottom:181.675935px;}
.y2d_c00292{bottom:215.885385px;}
.y2c_c00292{bottom:242.615385px;}
.y2b_c00292{bottom:249.391935px;}
.y2a_c00292{bottom:263.999385px;}
.y29_c00292{bottom:281.819385px;}
.y28_c00292{bottom:313.900335px;}
.y24_c00292{bottom:378.047385px;}
.y25_c00292{bottom:383.393385px;}
.y22_c00292{bottom:410.484735px;}
.y21_c00292{bottom:442.912185px;}
.y20_c00292{bottom:476.057385px;}
.y1f_c00292{bottom:509.920335px;}
.y1e_c00292{bottom:541.634985px;}
.y1d_c00292{bottom:573.359535px;}
.y1c_c00292{bottom:605.786985px;}
.y1b_c00292{bottom:641.426985px;}
.y1a_c00292{bottom:670.656735px;}
.y5_c00292{bottom:673.151535px;}
.y19_c00292{bottom:687.046185px;}
.y18_c00292{bottom:703.796985px;}
.y17_c00292{bottom:736.229385px;}
.y16_c00292{bottom:770.087385px;}
.y15_c00292{bottom:788.620185px;}
.y14_c00292{bottom:802.168335px;}
.y4_c00292{bottom:806.801535px;}
.y13_c00292{bottom:820.344735px;}
.y12_c00292{bottom:836.739135px;}
.y11_c00292{bottom:852.777135px;}
.y3_c00292{bottom:860.261535px;}
.y10_c00292{bottom:868.810185px;}
.yf_c00292{bottom:903.029535px;}
.y2_c00292{bottom:927.616185px;}
.ye_c00292{bottom:956.128185px;}
.yd_c00292{bottom:962.904735px;}
.yc_c00292{bottom:982.150335px;}
.yb_c00292{bottom:994.267935px;}
.ya_c00292{bottom:1059.840585px;}
.y9_c00292{bottom:1068.750585px;}
.y8_c00292{bottom:1071.245385px;}
.y23_c00292{bottom:1074.452985px;}
.y7_c00292{bottom:1086.570585px;}
.h8_c00292{height:20.887891px;}
.h9_c00292{height:23.128875px;}
.h14_c00292{height:28.085063px;}
.h2_c00292{height:28.911094px;}
.h13_c00292{height:29.530617px;}
.h4_c00292{height:33.035449px;}
.hb_c00292{height:33.230868px;}
.h5_c00292{height:34.201406px;}
.h11_c00292{height:34.280297px;}
.h3_c00292{height:34.693313px;}
.h15_c00292{height:35.519550px;}
.hc_c00292{height:35.756016px;}
.hf_c00292{height:36.079217px;}
.h6_c00292{height:38.476582px;}
.h17_c00292{height:42.361017px;}
.h16_c00292{height:46.257750px;}
.h18_c00292{height:62.778375px;}
.he_c00292{height:69.386625px;}
.h10_c00292{height:71.512031px;}
.ha_c00292{height:71.900684px;}
.h7_c00292{height:73.843945px;}
.h12_c00292{height:76.407891px;}
.hd_c00292{height:78.119315px;}
.h19_c00292{height:97.940585px;}
.h1_c00292{height:1110.000000px;}
.h0_c00292{height:1263.000000px;}
.w1_c00292{width:763.500000px;}
.w0_c00292{width:892.500000px;}
.x0_c00292{left:0.000000px;}
.x5_c00292{left:1.872135px;}
.x2_c00292{left:20.429685px;}
.x3_c00292{left:33.240285px;}
.x6_c00292{left:37.536885px;}
.x4_c00292{left:47.516085px;}
.x1_c00292{left:64.500000px;}
.x6a_c00292{left:78.245685px;}
.x6c_c00292{left:83.868885px;}
.x4c_c00292{left:88.917885px;}
.x1e_c00292{left:90.348435px;}
.x43_c00292{left:91.590885px;}
.xe_c00292{left:92.660085px;}
.x65_c00292{left:112.168035px;}
.x1f_c00292{left:113.464935px;}
.x44_c00292{left:122.251185px;}
.x37_c00292{left:123.825285px;}
.xf_c00292{left:125.438985px;}
.x20_c00292{left:134.537085px;}
.x66_c00292{left:144.946935px;}
.x3e_c00292{left:145.956735px;}
.x2e_c00292{left:156.782385px;}
.x79_c00292{left:158.227785px;}
.x21_c00292{left:167.702085px;}
.x8_c00292{left:171.493785px;}
.x10_c00292{left:179.299935px;}
.x4b_c00292{left:182.205585px;}
.x11_c00292{left:190.516635px;}
.x62_c00292{left:200.842335px;}
.x5d_c00292{left:202.371885px;}
.x22_c00292{left:212.405535px;}
.x23_c00292{left:219.736485px;}
.x24_c00292{left:223.236135px;}
.x56_c00292{left:224.508285px;}
.x12_c00292{left:234.878535px;}
.x25_c00292{left:245.016135px;}
.x52_c00292{left:246.228885px;}
.xd_c00292{left:252.446085px;}
.x5e_c00292{left:256.079385px;}
.x2f_c00292{left:257.331735px;}
.x45_c00292{left:268.350435px;}
.xc_c00292{left:273.092535px;}
.x57_c00292{left:277.854435px;}
.x13_c00292{left:279.418635px;}
.x4d_c00292{left:290.100735px;}
.x30_c00292{left:301.911435px;}
.x5f_c00292{left:309.321585px;}
.x38_c00292{left:312.959835px;}
.xa_c00292{left:323.676585px;}
.x67_c00292{left:334.126035px;}
.x46_c00292{left:335.353635px;}
.x51_c00292{left:338.694885px;}
.x14_c00292{left:340.892685px;}
.x4e_c00292{left:345.931785px;}
.x15_c00292{left:357.262335px;}
.x64_c00292{left:366.954435px;}
.x39_c00292{left:368.038485px;}
.x6d_c00292{left:378.883935px;}
.x31_c00292{left:380.250135px;}
.x47_c00292{left:390.531285px;}
.x3a_c00292{left:400.064985px;}
.x16_c00292{left:401.124285px;}
.x48_c00292{left:412.355835px;}
.x6b_c00292{left:414.573435px;}
.x7d_c00292{left:419.216535px;}
.x5a_c00292{left:423.755685px;}
.x3b_c00292{left:433.898235px;}
.x26_c00292{left:445.332735px;}
.x32_c00292{left:456.579135px;}
.x78_c00292{left:459.717435px;}
.x33_c00292{left:467.043435px;}
.x4f_c00292{left:468.612585px;}
.x53_c00292{left:475.275285px;}
.x17_c00292{left:478.651185px;}
.x71_c00292{left:490.392585px;}
.x54_c00292{left:501.084585px;}
.x27_c00292{left:509.489685px;}
.x3f_c00292{left:512.830935px;}
.x50_c00292{left:523.166535px;}
.x28_c00292{left:533.898135px;}
.x58_c00292{left:535.294035px;}
.x55_c00292{left:546.000885px;}
.xb_c00292{left:554.698035px;}
.x18_c00292{left:557.029485px;}
.x7c_c00292{left:558.593685px;}
.x29_c00292{left:568.478835px;}
.x49_c00292{left:577.190835px;}
.x5b_c00292{left:579.165885px;}
.x60_c00292{left:581.324085px;}
.x2a_c00292{left:589.630185px;}
.x7b_c00292{left:595.560285px;}
.x72_c00292{left:596.748285px;}
.x19_c00292{left:600.515235px;}
.x70_c00292{left:601.950735px;}
.x34_c00292{left:603.222885px;}
.x40_c00292{left:611.632935px;}
.x5c_c00292{left:613.038735px;}
.x36_c00292{left:620.201385px;}
.x2b_c00292{left:623.691135px;}
.x1a_c00292{left:633.724785px;}
.x3c_c00292{left:644.877135px;}
.x3d_c00292{left:654.955335px;}
.x59_c00292{left:656.470035px;}
.x41_c00292{left:666.271035px;}
.x1b_c00292{left:667.523385px;}
.x68_c00292{left:677.170935px;}
.x35_c00292{left:678.601485px;}
.x9_c00292{left:679.972635px;}
.x6e_c00292{left:682.239735px;}
.x2c_c00292{left:689.050935px;}
.x63_c00292{left:691.248735px;}
.x2d_c00292{left:695.807685px;}
.x7_c00292{left:697.970835px;}
.x73_c00292{left:699.094485px;}
.x1c_c00292{left:700.198335px;}
.x74_c00292{left:701.341785px;}
.x42_c00292{left:710.197335px;}
.x1d_c00292{left:711.959535px;}
.x75_c00292{left:725.106735px;}
.x4a_c00292{left:732.729735px;}
.x61_c00292{left:733.833585px;}
.x6f_c00292{left:745.060185px;}
.x76_c00292{left:746.797635px;}
.x7a_c00292{left:752.500035px;}
.x69_c00292{left:755.351235px;}
.x77_c00292{left:758.113335px;}
@media print{
.v2_c00292{vertical-align:-3.784000pt;}
.v0_c00292{vertical-align:0.000000pt;}
.v3_c00292{vertical-align:5.068800pt;}
.v1_c00292{vertical-align:10.137600pt;}
.v4_c00292{vertical-align:11.404800pt;}
.ls12_c00292{letter-spacing:-3.104646pt;}
.ls7_c00292{letter-spacing:-2.279200pt;}
.ls10_c00292{letter-spacing:-2.070816pt;}
.lsd_c00292{letter-spacing:-1.855920pt;}
.lsb_c00292{letter-spacing:-1.165648pt;}
.ls3_c00292{letter-spacing:0.000000pt;}
.ls2_c00292{letter-spacing:0.045584pt;}
.ls11_c00292{letter-spacing:1.196800pt;}
.lse_c00292{letter-spacing:1.460800pt;}
.lsa_c00292{letter-spacing:1.667072pt;}
.ls9_c00292{letter-spacing:2.246640pt;}
.ls0_c00292{letter-spacing:2.774112pt;}
.lsf_c00292{letter-spacing:3.238400pt;}
.ls6_c00292{letter-spacing:3.256000pt;}
.ls4_c00292{letter-spacing:3.344000pt;}
.ls1_c00292{letter-spacing:5.860800pt;}
.ls5_c00292{letter-spacing:27.878400pt;}
.ls8_c00292{letter-spacing:44.352176pt;}
.lsc_c00292{letter-spacing:48.153776pt;}
.ws1_c00292{word-spacing:-16.325584pt;}
.ws0_c00292{word-spacing:-16.280000pt;}
.ws2_c00292{word-spacing:0.000000pt;}
._3_c00292{margin-left:-7.098080pt;}
._4_c00292{margin-left:-5.730560pt;}
._1_c00292{width:0.976800pt;}
._12_c00292{width:3.386240pt;}
._9_c00292{width:5.925920pt;}
._10_c00292{width:7.566944pt;}
._6_c00292{width:9.051680pt;}
._2_c00292{width:10.419200pt;}
._8_c00292{width:12.571680pt;}
._14_c00292{width:13.479840pt;}
._5_c00292{width:20.991520pt;}
._11_c00292{width:24.810720pt;}
._16_c00292{width:26.959680pt;}
._f_c00292{width:29.251200pt;}
._b_c00292{width:30.671520pt;}
._a_c00292{width:31.713440pt;}
._13_c00292{width:33.373120pt;}
._c_c00292{width:36.940640pt;}
._7_c00292{width:38.332800pt;}
._15_c00292{width:39.719680pt;}
._18_c00292{width:198.454080pt;}
._d_c00292{width:308.337216pt;}
._17_c00292{width:391.624288pt;}
._e_c00292{width:709.452480pt;}
._0_c00292{width:1022.260800pt;}
.fs7_c00292{font-size:19.712000pt;}
.fsc_c00292{font-size:20.064000pt;}
.fs12_c00292{font-size:23.936000pt;}
.fs0_c00292{font-size:24.640000pt;}
.fs11_c00292{font-size:25.168000pt;}
.fs6_c00292{font-size:27.878400pt;}
.fs10_c00292{font-size:29.216000pt;}
.fs1_c00292{font-size:29.568000pt;}
.fs2_c00292{font-size:29.920000pt;}
.fs13_c00292{font-size:30.272176pt;}
.fs3_c00292{font-size:30.976000pt;}
.fsa_c00292{font-size:32.384000pt;}
.fs4_c00292{font-size:34.848000pt;}
.fs14_c00292{font-size:39.424000pt;}
.fs9_c00292{font-size:44.352176pt;}
.fse_c00292{font-size:48.153776pt;}
.fs15_c00292{font-size:53.504000pt;}
.fsd_c00292{font-size:59.136000pt;}
.fsf_c00292{font-size:64.768000pt;}
.fs8_c00292{font-size:65.120000pt;}
.fs5_c00292{font-size:66.880000pt;}
.fsb_c00292{font-size:70.752176pt;}
.fs16_c00292{font-size:88.704176pt;}
.y27_c00292{bottom:-0.711880pt;}
.y0_c00292{bottom:0.000000pt;}
.y26_c00292{bottom:20.513720pt;}
.y35_c00292{bottom:41.418120pt;}
.y34_c00292{bottom:53.139720pt;}
.y1_c00292{bottom:68.000000pt;}
.y33_c00292{bottom:76.270520pt;}
.y37_c00292{bottom:80.388920pt;}
.y32_c00292{bottom:81.339320pt;}
.y36_c00292{bottom:82.602120pt;}
.y31_c00292{bottom:86.724920pt;}
.y30_c00292{bottom:105.416120pt;}
.y6_c00292{bottom:119.034120pt;}
.y2f_c00292{bottom:132.660920pt;}
.y2e_c00292{bottom:161.489720pt;}
.y2d_c00292{bottom:191.898120pt;}
.y2c_c00292{bottom:215.658120pt;}
.y2b_c00292{bottom:221.681720pt;}
.y2a_c00292{bottom:234.666120pt;}
.y29_c00292{bottom:250.506120pt;}
.y28_c00292{bottom:279.022520pt;}
.y24_c00292{bottom:336.042120pt;}
.y25_c00292{bottom:340.794120pt;}
.y22_c00292{bottom:364.875320pt;}
.y21_c00292{bottom:393.699720pt;}
.y20_c00292{bottom:423.162120pt;}
.y1f_c00292{bottom:453.262520pt;}
.y1e_c00292{bottom:481.453320pt;}
.y1d_c00292{bottom:509.652920pt;}
.y1c_c00292{bottom:538.477320pt;}
.y1b_c00292{bottom:570.157320pt;}
.y1a_c00292{bottom:596.139320pt;}
.y5_c00292{bottom:598.356920pt;}
.y19_c00292{bottom:610.707720pt;}
.y18_c00292{bottom:625.597320pt;}
.y17_c00292{bottom:654.426120pt;}
.y16_c00292{bottom:684.522120pt;}
.y15_c00292{bottom:700.995720pt;}
.y14_c00292{bottom:713.038520pt;}
.y4_c00292{bottom:717.156920pt;}
.y13_c00292{bottom:729.195320pt;}
.y12_c00292{bottom:743.768120pt;}
.y11_c00292{bottom:758.024120pt;}
.y3_c00292{bottom:764.676920pt;}
.y10_c00292{bottom:772.275720pt;}
.yf_c00292{bottom:802.692920pt;}
.y2_c00292{bottom:824.547720pt;}
.ye_c00292{bottom:849.891720pt;}
.yd_c00292{bottom:855.915320pt;}
.yc_c00292{bottom:873.022520pt;}
.yb_c00292{bottom:883.793720pt;}
.ya_c00292{bottom:942.080520pt;}
.y9_c00292{bottom:950.000520pt;}
.y8_c00292{bottom:952.218120pt;}
.y23_c00292{bottom:955.069320pt;}
.y7_c00292{bottom:965.840520pt;}
.h8_c00292{height:18.567014pt;}
.h9_c00292{height:20.559000pt;}
.h14_c00292{height:24.964500pt;}
.h2_c00292{height:25.698750pt;}
.h13_c00292{height:26.249438pt;}
.h4_c00292{height:29.364844pt;}
.hb_c00292{height:29.538549pt;}
.h5_c00292{height:30.401250pt;}
.h11_c00292{height:30.471375pt;}
.h3_c00292{height:30.838500pt;}
.h15_c00292{height:31.572934pt;}
.hc_c00292{height:31.783125pt;}
.hf_c00292{height:32.070415pt;}
.h6_c00292{height:34.201406pt;}
.h17_c00292{height:37.654238pt;}
.h16_c00292{height:41.118000pt;}
.h18_c00292{height:55.803000pt;}
.he_c00292{height:61.677000pt;}
.h10_c00292{height:63.566250pt;}
.ha_c00292{height:63.911719pt;}
.h7_c00292{height:65.639063pt;}
.h12_c00292{height:67.918125pt;}
.hd_c00292{height:69.439391pt;}
.h19_c00292{height:87.058298pt;}
.h1_c00292{height:986.666667pt;}
.h0_c00292{height:1122.666667pt;}
.w1_c00292{width:678.666667pt;}
.w0_c00292{width:793.333333pt;}
.x0_c00292{left:0.000000pt;}
.x5_c00292{left:1.664120pt;}
.x2_c00292{left:18.159720pt;}
.x3_c00292{left:29.546920pt;}
.x6_c00292{left:33.366120pt;}
.x4_c00292{left:42.236520pt;}
.x1_c00292{left:57.333333pt;}
.x6a_c00292{left:69.551720pt;}
.x6c_c00292{left:74.550120pt;}
.x4c_c00292{left:79.038120pt;}
.x1e_c00292{left:80.309720pt;}
.x43_c00292{left:81.414120pt;}
.xe_c00292{left:82.364520pt;}
.x65_c00292{left:99.704920pt;}
.x1f_c00292{left:100.857720pt;}
.x44_c00292{left:108.667720pt;}
.x37_c00292{left:110.066920pt;}
.xf_c00292{left:111.501320pt;}
.x20_c00292{left:119.588520pt;}
.x66_c00292{left:128.841720pt;}
.x3e_c00292{left:129.739320pt;}
.x2e_c00292{left:139.362120pt;}
.x79_c00292{left:140.646920pt;}
.x21_c00292{left:149.068520pt;}
.x8_c00292{left:152.438920pt;}
.x10_c00292{left:159.377720pt;}
.x4b_c00292{left:161.960520pt;}
.x11_c00292{left:169.348120pt;}
.x62_c00292{left:178.526520pt;}
.x5d_c00292{left:179.886120pt;}
.x22_c00292{left:188.804920pt;}
.x23_c00292{left:195.321320pt;}
.x24_c00292{left:198.432120pt;}
.x56_c00292{left:199.562920pt;}
.x12_c00292{left:208.780920pt;}
.x25_c00292{left:217.792120pt;}
.x52_c00292{left:218.870120pt;}
.xd_c00292{left:224.396520pt;}
.x5e_c00292{left:227.626120pt;}
.x2f_c00292{left:228.739320pt;}
.x45_c00292{left:238.533720pt;}
.xc_c00292{left:242.748920pt;}
.x57_c00292{left:246.981720pt;}
.x13_c00292{left:248.372120pt;}
.x4d_c00292{left:257.867320pt;}
.x30_c00292{left:268.365720pt;}
.x5f_c00292{left:274.952520pt;}
.x38_c00292{left:278.186520pt;}
.xa_c00292{left:287.712520pt;}
.x67_c00292{left:297.000920pt;}
.x46_c00292{left:298.092120pt;}
.x51_c00292{left:301.062120pt;}
.x14_c00292{left:303.015720pt;}
.x4e_c00292{left:307.494920pt;}
.x15_c00292{left:317.566520pt;}
.x64_c00292{left:326.181720pt;}
.x39_c00292{left:327.145320pt;}
.x6d_c00292{left:336.785720pt;}
.x31_c00292{left:338.000120pt;}
.x47_c00292{left:347.138920pt;}
.x3a_c00292{left:355.613320pt;}
.x16_c00292{left:356.554920pt;}
.x48_c00292{left:366.538520pt;}
.x6b_c00292{left:368.509720pt;}
.x7d_c00292{left:372.636920pt;}
.x5a_c00292{left:376.671720pt;}
.x3b_c00292{left:385.687320pt;}
.x26_c00292{left:395.851320pt;}
.x32_c00292{left:405.848120pt;}
.x78_c00292{left:408.637720pt;}
.x33_c00292{left:415.149720pt;}
.x4f_c00292{left:416.544520pt;}
.x53_c00292{left:422.466920pt;}
.x17_c00292{left:425.467720pt;}
.x71_c00292{left:435.904520pt;}
.x54_c00292{left:445.408520pt;}
.x27_c00292{left:452.879720pt;}
.x3f_c00292{left:455.849720pt;}
.x50_c00292{left:465.036920pt;}
.x28_c00292{left:474.576120pt;}
.x58_c00292{left:475.816920pt;}
.x55_c00292{left:485.334120pt;}
.xb_c00292{left:493.064920pt;}
.x18_c00292{left:495.137320pt;}
.x7c_c00292{left:496.527720pt;}
.x29_c00292{left:505.314520pt;}
.x49_c00292{left:513.058520pt;}
.x5b_c00292{left:514.814120pt;}
.x60_c00292{left:516.732520pt;}
.x2a_c00292{left:524.115720pt;}
.x7b_c00292{left:529.386920pt;}
.x72_c00292{left:530.442920pt;}
.x19_c00292{left:533.791320pt;}
.x70_c00292{left:535.067320pt;}
.x34_c00292{left:536.198120pt;}
.x40_c00292{left:543.673720pt;}
.x5c_c00292{left:544.923320pt;}
.x36_c00292{left:551.290120pt;}
.x2b_c00292{left:554.392120pt;}
.x1a_c00292{left:563.310920pt;}
.x3c_c00292{left:573.224120pt;}
.x3d_c00292{left:582.182520pt;}
.x59_c00292{left:583.528920pt;}
.x41_c00292{left:592.240920pt;}
.x1b_c00292{left:593.354120pt;}
.x68_c00292{left:601.929720pt;}
.x35_c00292{left:603.201320pt;}
.x9_c00292{left:604.420120pt;}
.x6e_c00292{left:606.435320pt;}
.x2c_c00292{left:612.489720pt;}
.x63_c00292{left:614.443320pt;}
.x2d_c00292{left:618.495720pt;}
.x7_c00292{left:620.418520pt;}
.x73_c00292{left:621.417320pt;}
.x1c_c00292{left:622.398520pt;}
.x74_c00292{left:623.414920pt;}
.x42_c00292{left:631.286520pt;}
.x1d_c00292{left:632.852920pt;}
.x75_c00292{left:644.539320pt;}
.x4a_c00292{left:651.315320pt;}
.x61_c00292{left:652.296520pt;}
.x6f_c00292{left:662.275720pt;}
.x76_c00292{left:663.820120pt;}
.x7a_c00292{left:668.888920pt;}
.x69_c00292{left:671.423320pt;}
.x77_c00292{left:673.878520pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8ceb0e579883412c007fd6a3.woff2')format("woff");}.ff1_c00293{font-family:ff1_c00293;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00293;src:url('chunks/assets/font_647287d42911811a16479c2e.woff2')format("woff");}.ff2_c00293{font-family:ff2_c00293;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00293;src:url('chunks/assets/font_673844524e6f2420879299fc.woff2')format("woff");}.ff3_c00293{font-family:ff3_c00293;line-height:0.666000;font-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_c00293{transform:matrix(0.078572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078572,0.000000,0.000000,0.250000,0,0);}
.mc2_c00293{transform:matrix(0.085714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085714,0.000000,0.000000,0.250000,0,0);}
.md8_c00293{transform:matrix(0.108484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108484,0.000000,0.000000,0.250000,0,0);}
.md9_c00293{transform:matrix(0.111637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111637,0.000000,0.000000,0.250000,0,0);}
.m41_c00293{transform:matrix(0.115316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115316,0.000000,0.000000,0.250000,0,0);}
.mbf_c00293{transform:matrix(0.121429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121429,0.000000,0.000000,0.250000,0,0);}
.m71_c00293{transform:matrix(0.130203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130203,0.000000,0.000000,0.250000,0,0);}
.mc8_c00293{transform:matrix(0.140218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140218,0.000000,0.000000,0.250000,0,0);}
.m51_c00293{transform:matrix(0.202864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202864,0.000000,0.000000,0.250000,0,0);}
.m3c_c00293{transform:matrix(0.210070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210070,0.000000,0.000000,0.250000,0,0);}
.mb6_c00293{transform:matrix(0.214782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214782,0.000000,0.000000,0.250000,0,0);}
.mc1_c00293{transform:matrix(0.217346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217346,0.000000,0.000000,0.250000,0,0);}
.maf_c00293{transform:matrix(0.231838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231838,0.000000,0.000000,0.250000,0,0);}
.md3_c00293{transform:matrix(0.244013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244013,0.000000,0.000000,0.250000,0,0);}
.ma0_c00293{transform:matrix(0.245726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245726,0.000000,0.000000,0.250000,0,0);}
.m1_c00293{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00293{transform:matrix(0.250856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250856,0.000000,0.000000,0.250000,0,0);}
.md1_c00293{transform:matrix(0.251120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251120,0.000000,0.000000,0.250000,0,0);}
.mf_c00293{transform:matrix(0.252029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252029,0.000000,0.000000,0.250000,0,0);}
.m5e_c00293{transform:matrix(0.253885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253885,0.000000,0.000000,0.250000,0,0);}
.m70_c00293{transform:matrix(0.253956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253956,0.000000,0.000000,0.250000,0,0);}
.m36_c00293{transform:matrix(0.254087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254087,0.000000,0.000000,0.250000,0,0);}
.m9c_c00293{transform:matrix(0.254108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254108,0.000000,0.000000,0.250000,0,0);}
.m46_c00293{transform:matrix(0.254279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254279,0.000000,0.000000,0.250000,0,0);}
.m6d_c00293{transform:matrix(0.255335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255335,0.000000,0.000000,0.250000,0,0);}
.m3a_c00293{transform:matrix(0.257438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257438,0.000000,0.000000,0.250000,0,0);}
.mb5_c00293{transform:matrix(0.258816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258816,0.000000,0.000000,0.250000,0,0);}
.md5_c00293{transform:matrix(0.258909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258909,0.000000,0.000000,0.250000,0,0);}
.mc3_c00293{transform:matrix(0.260949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260949,0.000000,0.000000,0.250000,0,0);}
.m3_c00293{transform:matrix(0.261193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261193,0.000000,0.000000,0.250000,0,0);}
.m21_c00293{transform:matrix(0.263609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263609,0.000000,0.000000,0.250000,0,0);}
.m8e_c00293{transform:matrix(0.264295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264295,0.000000,0.000000,0.250000,0,0);}
.m87_c00293{transform:matrix(0.264472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264472,0.000000,0.000000,0.250000,0,0);}
.m18_c00293{transform:matrix(0.264679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264679,0.000000,0.000000,0.250000,0,0);}
.m7e_c00293{transform:matrix(0.265386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265386,0.000000,0.000000,0.250000,0,0);}
.m47_c00293{transform:matrix(0.267721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267721,0.000000,0.000000,0.250000,0,0);}
.m9a_c00293{transform:matrix(0.267820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267820,0.000000,0.000000,0.250000,0,0);}
.m27_c00293{transform:matrix(0.268319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268319,0.000000,0.000000,0.250000,0,0);}
.m79_c00293{transform:matrix(0.268570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268570,0.000000,0.000000,0.250000,0,0);}
.m6a_c00293{transform:matrix(0.268761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268761,0.000000,0.000000,0.250000,0,0);}
.mac_c00293{transform:matrix(0.269453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269453,0.000000,0.000000,0.250000,0,0);}
.m4c_c00293{transform:matrix(0.270126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270126,0.000000,0.000000,0.250000,0,0);}
.m25_c00293{transform:matrix(0.270388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270388,0.000000,0.000000,0.250000,0,0);}
.m8_c00293{transform:matrix(0.270691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270691,0.000000,0.000000,0.250000,0,0);}
.m6_c00293{transform:matrix(0.270764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270764,0.000000,0.000000,0.250000,0,0);}
.m84_c00293{transform:matrix(0.270971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270971,0.000000,0.000000,0.250000,0,0);}
.m44_c00293{transform:matrix(0.271183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271183,0.000000,0.000000,0.250000,0,0);}
.md_c00293{transform:matrix(0.272247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272247,0.000000,0.000000,0.250000,0,0);}
.m4_c00293{transform:matrix(0.273110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273110,0.000000,0.000000,0.250000,0,0);}
.m86_c00293{transform:matrix(0.273243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273243,0.000000,0.000000,0.250000,0,0);}
.m17_c00293{transform:matrix(0.273282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273282,0.000000,0.000000,0.250000,0,0);}
.ma_c00293{transform:matrix(0.274122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274122,0.000000,0.000000,0.250000,0,0);}
.m45_c00293{transform:matrix(0.274127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274127,0.000000,0.000000,0.250000,0,0);}
.m1c_c00293{transform:matrix(0.274605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274605,0.000000,0.000000,0.250000,0,0);}
.m2b_c00293{transform:matrix(0.274865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274865,0.000000,0.000000,0.250000,0,0);}
.m91_c00293{transform:matrix(0.275061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275061,0.000000,0.000000,0.250000,0,0);}
.m1f_c00293{transform:matrix(0.275440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275440,0.000000,0.000000,0.250000,0,0);}
.m9b_c00293{transform:matrix(0.275578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275578,0.000000,0.000000,0.250000,0,0);}
.m7b_c00293{transform:matrix(0.275583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275583,0.000000,0.000000,0.250000,0,0);}
.m58_c00293{transform:matrix(0.276358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276358,0.000000,0.000000,0.250000,0,0);}
.m4f_c00293{transform:matrix(0.276889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276889,0.000000,0.000000,0.250000,0,0);}
.m8c_c00293{transform:matrix(0.277179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277179,0.000000,0.000000,0.250000,0,0);}
.m93_c00293{transform:matrix(0.277289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277289,0.000000,0.000000,0.250000,0,0);}
.m24_c00293{transform:matrix(0.277901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277901,0.000000,0.000000,0.250000,0,0);}
.m1e_c00293{transform:matrix(0.277997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277997,0.000000,0.000000,0.250000,0,0);}
.m55_c00293{transform:matrix(0.278896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278896,0.000000,0.000000,0.250000,0,0);}
.m30_c00293{transform:matrix(0.279604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279604,0.000000,0.000000,0.250000,0,0);}
.mcf_c00293{transform:matrix(0.279869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279869,0.000000,0.000000,0.250000,0,0);}
.mb8_c00293{transform:matrix(0.279953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279953,0.000000,0.000000,0.250000,0,0);}
.mc9_c00293{transform:matrix(0.281172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281172,0.000000,0.000000,0.250000,0,0);}
.mba_c00293{transform:matrix(0.281227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281227,0.000000,0.000000,0.250000,0,0);}
.m35_c00293{transform:matrix(0.283709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283709,0.000000,0.000000,0.250000,0,0);}
.m33_c00293{transform:matrix(0.284122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284122,0.000000,0.000000,0.250000,0,0);}
.m53_c00293{transform:matrix(0.284195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284195,0.000000,0.000000,0.250000,0,0);}
.m4d_c00293{transform:matrix(0.284396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284396,0.000000,0.000000,0.250000,0,0);}
.m34_c00293{transform:matrix(0.284517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284517,0.000000,0.000000,0.250000,0,0);}
.m2e_c00293{transform:matrix(0.285104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285104,0.000000,0.000000,0.250000,0,0);}
.mad_c00293{transform:matrix(0.285683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285683,0.000000,0.000000,0.250000,0,0);}
.m37_c00293{transform:matrix(0.285790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285790,0.000000,0.000000,0.250000,0,0);}
.mb1_c00293{transform:matrix(0.286194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286194,0.000000,0.000000,0.250000,0,0);}
.m8d_c00293{transform:matrix(0.286635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286635,0.000000,0.000000,0.250000,0,0);}
.mcb_c00293{transform:matrix(0.287455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287455,0.000000,0.000000,0.250000,0,0);}
.m64_c00293{transform:matrix(0.288324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288324,0.000000,0.000000,0.250000,0,0);}
.m2a_c00293{transform:matrix(0.289127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289127,0.000000,0.000000,0.250000,0,0);}
.mc5_c00293{transform:matrix(0.289162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289162,0.000000,0.000000,0.250000,0,0);}
.m29_c00293{transform:matrix(0.289437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289437,0.000000,0.000000,0.250000,0,0);}
.m1b_c00293{transform:matrix(0.289566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289566,0.000000,0.000000,0.250000,0,0);}
.m6b_c00293{transform:matrix(0.290670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290670,0.000000,0.000000,0.250000,0,0);}
.m9f_c00293{transform:matrix(0.291227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291227,0.000000,0.000000,0.250000,0,0);}
.mb3_c00293{transform:matrix(0.291334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291334,0.000000,0.000000,0.250000,0,0);}
.m38_c00293{transform:matrix(0.291452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291452,0.000000,0.000000,0.250000,0,0);}
.m98_c00293{transform:matrix(0.292002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292002,0.000000,0.000000,0.250000,0,0);}
.ma7_c00293{transform:matrix(0.292665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292665,0.000000,0.000000,0.250000,0,0);}
.m8a_c00293{transform:matrix(0.293095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293095,0.000000,0.000000,0.250000,0,0);}
.m5b_c00293{transform:matrix(0.293440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293440,0.000000,0.000000,0.250000,0,0);}
.m22_c00293{transform:matrix(0.294085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294085,0.000000,0.000000,0.250000,0,0);}
.m1d_c00293{transform:matrix(0.294687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294687,0.000000,0.000000,0.250000,0,0);}
.mbd_c00293{transform:matrix(0.295181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295181,0.000000,0.000000,0.250000,0,0);}
.m66_c00293{transform:matrix(0.295226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295226,0.000000,0.000000,0.250000,0,0);}
.m85_c00293{transform:matrix(0.295248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295248,0.000000,0.000000,0.250000,0,0);}
.mbc_c00293{transform:matrix(0.295361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295361,0.000000,0.000000,0.250000,0,0);}
.m7d_c00293{transform:matrix(0.296619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296619,0.000000,0.000000,0.250000,0,0);}
.m72_c00293{transform:matrix(0.296695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296695,0.000000,0.000000,0.250000,0,0);}
.m63_c00293{transform:matrix(0.296963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296963,0.000000,0.000000,0.250000,0,0);}
.m74_c00293{transform:matrix(0.297066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297066,0.000000,0.000000,0.250000,0,0);}
.mbb_c00293{transform:matrix(0.297334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297334,0.000000,0.000000,0.250000,0,0);}
.m92_c00293{transform:matrix(0.297416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297416,0.000000,0.000000,0.250000,0,0);}
.m9e_c00293{transform:matrix(0.297658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297658,0.000000,0.000000,0.250000,0,0);}
.ma8_c00293{transform:matrix(0.297834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297834,0.000000,0.000000,0.250000,0,0);}
.m4a_c00293{transform:matrix(0.298512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298512,0.000000,0.000000,0.250000,0,0);}
.m49_c00293{transform:matrix(0.299201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299201,0.000000,0.000000,0.250000,0,0);}
.m7_c00293{transform:matrix(0.299360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299360,0.000000,0.000000,0.250000,0,0);}
.m60_c00293{transform:matrix(0.299967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299967,0.000000,0.000000,0.250000,0,0);}
.m73_c00293{transform:matrix(0.300854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300854,0.000000,0.000000,0.250000,0,0);}
.m0_c00293{transform:matrix(0.300944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300944,0.000000,0.000000,0.250000,0,0);}
.md6_c00293{transform:matrix(0.301100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301100,0.000000,0.000000,0.250000,0,0);}
.m13_c00293{transform:matrix(0.301276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301276,0.000000,0.000000,0.250000,0,0);}
.md2_c00293{transform:matrix(0.301514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301514,0.000000,0.000000,0.250000,0,0);}
.ma3_c00293{transform:matrix(0.302152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302152,0.000000,0.000000,0.250000,0,0);}
.m5c_c00293{transform:matrix(0.302891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302891,0.000000,0.000000,0.250000,0,0);}
.m8f_c00293{transform:matrix(0.303558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303558,0.000000,0.000000,0.250000,0,0);}
.m77_c00293{transform:matrix(0.303680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303680,0.000000,0.000000,0.250000,0,0);}
.mb_c00293{transform:matrix(0.303873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303873,0.000000,0.000000,0.250000,0,0);}
.m2_c00293{transform:matrix(0.304617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304617,0.000000,0.000000,0.250000,0,0);}
.m48_c00293{transform:matrix(0.304803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304803,0.000000,0.000000,0.250000,0,0);}
.m81_c00293{transform:matrix(0.305008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305008,0.000000,0.000000,0.250000,0,0);}
.me_c00293{transform:matrix(0.305461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305461,0.000000,0.000000,0.250000,0,0);}
.m4b_c00293{transform:matrix(0.305802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305802,0.000000,0.000000,0.250000,0,0);}
.m8b_c00293{transform:matrix(0.306129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306129,0.000000,0.000000,0.250000,0,0);}
.ma2_c00293{transform:matrix(0.306205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306205,0.000000,0.000000,0.250000,0,0);}
.m50_c00293{transform:matrix(0.306300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306300,0.000000,0.000000,0.250000,0,0);}
.m95_c00293{transform:matrix(0.306591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306591,0.000000,0.000000,0.250000,0,0);}
.mbe_c00293{transform:matrix(0.306712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306712,0.000000,0.000000,0.250000,0,0);}
.md0_c00293{transform:matrix(0.307576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307576,0.000000,0.000000,0.250000,0,0);}
.m14_c00293{transform:matrix(0.307933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307933,0.000000,0.000000,0.250000,0,0);}
.m16_c00293{transform:matrix(0.308141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308141,0.000000,0.000000,0.250000,0,0);}
.m3b_c00293{transform:matrix(0.308334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308334,0.000000,0.000000,0.250000,0,0);}
.ma6_c00293{transform:matrix(0.308850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308850,0.000000,0.000000,0.250000,0,0);}
.mcd_c00293{transform:matrix(0.309566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309566,0.000000,0.000000,0.250000,0,0);}
.md4_c00293{transform:matrix(0.309949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309949,0.000000,0.000000,0.250000,0,0);}
.m39_c00293{transform:matrix(0.310555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310555,0.000000,0.000000,0.250000,0,0);}
.m40_c00293{transform:matrix(0.310952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310952,0.000000,0.000000,0.250000,0,0);}
.m94_c00293{transform:matrix(0.311829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311829,0.000000,0.000000,0.250000,0,0);}
.m83_c00293{transform:matrix(0.312090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312090,0.000000,0.000000,0.250000,0,0);}
.m67_c00293{transform:matrix(0.313180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313180,0.000000,0.000000,0.250000,0,0);}
.m54_c00293{transform:matrix(0.313414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313414,0.000000,0.000000,0.250000,0,0);}
.m5d_c00293{transform:matrix(0.313547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313547,0.000000,0.000000,0.250000,0,0);}
.ma4_c00293{transform:matrix(0.313608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313608,0.000000,0.000000,0.250000,0,0);}
.md7_c00293{transform:matrix(0.314852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314852,0.000000,0.000000,0.250000,0,0);}
.m96_c00293{transform:matrix(0.314988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314988,0.000000,0.000000,0.250000,0,0);}
.m7c_c00293{transform:matrix(0.315584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315584,0.000000,0.000000,0.250000,0,0);}
.m76_c00293{transform:matrix(0.315955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315955,0.000000,0.000000,0.250000,0,0);}
.ma5_c00293{transform:matrix(0.316266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316266,0.000000,0.000000,0.250000,0,0);}
.m89_c00293{transform:matrix(0.316563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316563,0.000000,0.000000,0.250000,0,0);}
.m2f_c00293{transform:matrix(0.316667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316667,0.000000,0.000000,0.250000,0,0);}
.mb4_c00293{transform:matrix(0.316744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316744,0.000000,0.000000,0.250000,0,0);}
.m69_c00293{transform:matrix(0.316908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316908,0.000000,0.000000,0.250000,0,0);}
.m3e_c00293{transform:matrix(0.317101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317101,0.000000,0.000000,0.250000,0,0);}
.m61_c00293{transform:matrix(0.318133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318133,0.000000,0.000000,0.250000,0,0);}
.mcc_c00293{transform:matrix(0.318279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318279,0.000000,0.000000,0.250000,0,0);}
.mce_c00293{transform:matrix(0.318782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318782,0.000000,0.000000,0.250000,0,0);}
.m12_c00293{transform:matrix(0.320788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320788,0.000000,0.000000,0.250000,0,0);}
.mc4_c00293{transform:matrix(0.321914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321914,0.000000,0.000000,0.250000,0,0);}
.m19_c00293{transform:matrix(0.324192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324192,0.000000,0.000000,0.250000,0,0);}
.m2c_c00293{transform:matrix(0.324326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324326,0.000000,0.000000,0.250000,0,0);}
.ma9_c00293{transform:matrix(0.324987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324987,0.000000,0.000000,0.250000,0,0);}
.mb9_c00293{transform:matrix(0.325039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325039,0.000000,0.000000,0.250000,0,0);}
.m99_c00293{transform:matrix(0.325591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325591,0.000000,0.000000,0.250000,0,0);}
.m3f_c00293{transform:matrix(0.326903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326903,0.000000,0.000000,0.250000,0,0);}
.m3d_c00293{transform:matrix(0.327053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327053,0.000000,0.000000,0.250000,0,0);}
.m7a_c00293{transform:matrix(0.327562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327562,0.000000,0.000000,0.250000,0,0);}
.m6c_c00293{transform:matrix(0.328768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328768,0.000000,0.000000,0.250000,0,0);}
.m5a_c00293{transform:matrix(0.328927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328927,0.000000,0.000000,0.250000,0,0);}
.m31_c00293{transform:matrix(0.329236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329236,0.000000,0.000000,0.250000,0,0);}
.m7f_c00293{transform:matrix(0.329365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329365,0.000000,0.000000,0.250000,0,0);}
.maa_c00293{transform:matrix(0.329535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329535,0.000000,0.000000,0.250000,0,0);}
.m15_c00293{transform:matrix(0.329558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329558,0.000000,0.000000,0.250000,0,0);}
.m42_c00293{transform:matrix(0.329612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329612,0.000000,0.000000,0.250000,0,0);}
.m9_c00293{transform:matrix(0.329884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329884,0.000000,0.000000,0.250000,0,0);}
.ma1_c00293{transform:matrix(0.330535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330535,0.000000,0.000000,0.250000,0,0);}
.mc_c00293{transform:matrix(0.330797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330797,0.000000,0.000000,0.250000,0,0);}
.m11_c00293{transform:matrix(0.330843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330843,0.000000,0.000000,0.250000,0,0);}
.m57_c00293{transform:matrix(0.331042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331042,0.000000,0.000000,0.250000,0,0);}
.m78_c00293{transform:matrix(0.331073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331073,0.000000,0.000000,0.250000,0,0);}
.mca_c00293{transform:matrix(0.333360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333360,0.000000,0.000000,0.250000,0,0);}
.m26_c00293{transform:matrix(0.334526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334526,0.000000,0.000000,0.250000,0,0);}
.mb7_c00293{transform:matrix(0.335343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335343,0.000000,0.000000,0.250000,0,0);}
.m32_c00293{transform:matrix(0.335641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335641,0.000000,0.000000,0.250000,0,0);}
.m6e_c00293{transform:matrix(0.335776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335776,0.000000,0.000000,0.250000,0,0);}
.m28_c00293{transform:matrix(0.335946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335946,0.000000,0.000000,0.250000,0,0);}
.mab_c00293{transform:matrix(0.337606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337606,0.000000,0.000000,0.250000,0,0);}
.m20_c00293{transform:matrix(0.337915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337915,0.000000,0.000000,0.250000,0,0);}
.mb0_c00293{transform:matrix(0.338145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338145,0.000000,0.000000,0.250000,0,0);}
.m68_c00293{transform:matrix(0.338255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338255,0.000000,0.000000,0.250000,0,0);}
.m59_c00293{transform:matrix(0.339310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339310,0.000000,0.000000,0.250000,0,0);}
.m9d_c00293{transform:matrix(0.340266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340266,0.000000,0.000000,0.250000,0,0);}
.m5_c00293{transform:matrix(0.341856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341856,0.000000,0.000000,0.250000,0,0);}
.mc7_c00293{transform:matrix(0.342936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342936,0.000000,0.000000,0.250000,0,0);}
.m62_c00293{transform:matrix(0.343126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343126,0.000000,0.000000,0.250000,0,0);}
.mc6_c00293{transform:matrix(0.345995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345995,0.000000,0.000000,0.250000,0,0);}
.m75_c00293{transform:matrix(0.348072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348072,0.000000,0.000000,0.250000,0,0);}
.m90_c00293{transform:matrix(0.348212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348212,0.000000,0.000000,0.250000,0,0);}
.m4e_c00293{transform:matrix(0.348752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348752,0.000000,0.000000,0.250000,0,0);}
.m6f_c00293{transform:matrix(0.351049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351049,0.000000,0.000000,0.250000,0,0);}
.m65_c00293{transform:matrix(0.352173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352173,0.000000,0.000000,0.250000,0,0);}
.m88_c00293{transform:matrix(0.352330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352330,0.000000,0.000000,0.250000,0,0);}
.m82_c00293{transform:matrix(0.354889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354889,0.000000,0.000000,0.250000,0,0);}
.m80_c00293{transform:matrix(0.356003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356003,0.000000,0.000000,0.250000,0,0);}
.m23_c00293{transform:matrix(0.358405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358405,0.000000,0.000000,0.250000,0,0);}
.m52_c00293{transform:matrix(0.359109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359109,0.000000,0.000000,0.250000,0,0);}
.mae_c00293{transform:matrix(0.362257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362257,0.000000,0.000000,0.250000,0,0);}
.mb2_c00293{transform:matrix(0.364530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364530,0.000000,0.000000,0.250000,0,0);}
.m10_c00293{transform:matrix(0.371314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371314,0.000000,0.000000,0.250000,0,0);}
.m43_c00293{transform:matrix(0.375889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375889,0.000000,0.000000,0.250000,0,0);}
.m56_c00293{transform:matrix(0.382703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382703,0.000000,0.000000,0.250000,0,0);}
.m97_c00293{transform:matrix(0.395848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395848,0.000000,0.000000,0.250000,0,0);}
.m5f_c00293{transform:matrix(0.412834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412834,0.000000,0.000000,0.250000,0,0);}
.m1a_c00293{transform:matrix(0.425442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425442,0.000000,0.000000,0.250000,0,0);}
.v0_c00293{vertical-align:0.000000px;}
.ls8_c00293{letter-spacing:-2.674980px;}
.ls11_c00293{letter-spacing:-2.356200px;}
.ls9_c00293{letter-spacing:-2.208769px;}
.lse_c00293{letter-spacing:-1.872486px;}
.ls10_c00293{letter-spacing:-1.663200px;}
.ls6_c00293{letter-spacing:-0.771923px;}
.lsc_c00293{letter-spacing:-0.259855px;}
.ls3_c00293{letter-spacing:0.000000px;}
.ls5_c00293{letter-spacing:0.022928px;}
.lsa_c00293{letter-spacing:1.413918px;}
.lsd_c00293{letter-spacing:2.835479px;}
.lsb_c00293{letter-spacing:2.843122px;}
.ls1_c00293{letter-spacing:3.416332px;}
.ls2_c00293{letter-spacing:3.722400px;}
.ls4_c00293{letter-spacing:3.821400px;}
.ls0_c00293{letter-spacing:5.197104px;}
.lsf_c00293{letter-spacing:49.896198px;}
.ls7_c00293{letter-spacing:51.321798px;}
.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:-19.107000px;}
.ws4_c00293{word-spacing:0.000000px;}
.ws2_c00293{word-spacing:0.840708px;}
.ws1_c00293{word-spacing:1.834272px;}
.ws3_c00293{word-spacing:5.120676px;}
._13_c00293{margin-left:-7.184232px;}
._a_c00293{margin-left:-3.592116px;}
._5_c00293{width:2.063556px;}
._0_c00293{width:3.797640px;}
._3_c00293{width:5.427180px;}
._4_c00293{width:7.566768px;}
._b_c00293{width:8.712000px;}
._8_c00293{width:10.394208px;}
._7_c00293{width:11.846340px;}
._9_c00293{width:13.450932px;}
._10_c00293{width:21.399840px;}
._6_c00293{width:22.928400px;}
._1_c00293{width:24.227676px;}
._12_c00293{width:25.957800px;}
._d_c00293{width:27.383400px;}
._f_c00293{width:29.042640px;}
._c_c00293{width:30.313800px;}
._2_c00293{width:31.716828px;}
._e_c00293{width:33.934824px;}
._11_c00293{width:37.679004px;}
.fc0_c00293{color:transparent;}
.fs7_c00293{font-size:22.176000px;}
.fsc_c00293{font-size:22.572000px;}
.fs2_c00293{font-size:27.720000px;}
.fs8_c00293{font-size:28.908000px;}
.fs12_c00293{font-size:33.264000px;}
.fs6_c00293{font-size:33.660000px;}
.fs9_c00293{font-size:36.828000px;}
.fs10_c00293{font-size:39.204000px;}
.fsa_c00293{font-size:44.352000px;}
.fsb_c00293{font-size:44.748000px;}
.fsd_c00293{font-size:47.520000px;}
.fs5_c00293{font-size:49.896198px;}
.fs3_c00293{font-size:51.321798px;}
.fse_c00293{font-size:53.856198px;}
.fsf_c00293{font-size:57.816198px;}
.fs4_c00293{font-size:64.548000px;}
.fs11_c00293{font-size:67.320000px;}
.fs13_c00293{font-size:71.280000px;}
.fs0_c00293{font-size:74.448000px;}
.fs1_c00293{font-size:76.428000px;}
.y0_c00293{bottom:0.000000px;}
.y1_c00293{bottom:76.500000px;}
.y1b_c00293{bottom:127.854585px;}
.y1a_c00293{bottom:158.509935px;}
.y2a_c00293{bottom:163.138185px;}
.y29_c00293{bottom:189.511785px;}
.y19_c00293{bottom:190.224585px;}
.y28_c00293{bottom:197.708985px;}
.y18_c00293{bottom:224.795385px;}
.y27_c00293{bottom:249.392331px;}
.y17_c00293{bottom:257.940585px;}
.y16_c00293{bottom:291.085785px;}
.y15_c00293{bottom:326.017935px;}
.y14_c00293{bottom:326.025756px;}
.y26_c00293{bottom:349.891785px;}
.y13_c00293{bottom:358.450335px;}
.y12_c00293{bottom:392.664735px;}
.y25_c00293{bottom:405.851535px;}
.y24_c00293{bottom:417.256335px;}
.y23_c00293{bottom:426.166335px;}
.y22_c00293{bottom:440.417385px;}
.y21_c00293{bottom:441.847935px;}
.y20_c00293{bottom:448.975935px;}
.y11_c00293{bottom:457.885935px;}
.y1f_c00293{bottom:458.237385px;}
.y10_c00293{bottom:490.313385px;}
.yf_c00293{bottom:522.037935px;}
.ye_c00293{bottom:556.965135px;}
.y1e_c00293{bottom:559.459935px;}
.y1d_c00293{bottom:564.444585px;}
.yd_c00293{bottom:589.748985px;}
.yc_c00293{bottom:623.963385px;}
.yb_c00293{bottom:658.534185px;}
.ya_c00293{bottom:690.615135px;}
.y9_c00293{bottom:723.047535px;}
.y8_c00293{bottom:755.836335px;}
.y7_c00293{bottom:787.550985px;}
.y6_c00293{bottom:820.339785px;}
.y5_c00293{bottom:852.064335px;}
.y4_c00293{bottom:885.560985px;}
.y3_c00293{bottom:917.993385px;}
.y1c_c00293{bottom:977.155785px;}
.y2_c00293{bottom:1074.809385px;}
.h8_c00293{height:23.128875px;}
.hd_c00293{height:23.541891px;}
.h4_c00293{height:28.911094px;}
.h9_c00293{height:30.150141px;}
.h7_c00293{height:33.035449px;}
.h6_c00293{height:33.230868px;}
.h5_c00293{height:34.180317px;}
.h13_c00293{height:34.693313px;}
.ha_c00293{height:36.144668px;}
.h11_c00293{height:38.476582px;}
.hc_c00293{height:43.917715px;}
.hb_c00293{height:46.257750px;}
.he_c00293{height:46.638281px;}
.hf_c00293{height:56.170332px;}
.h10_c00293{height:60.300488px;}
.h12_c00293{height:70.212656px;}
.h2_c00293{height:73.066641px;}
.h14_c00293{height:74.342813px;}
.h3_c00293{height:75.009902px;}
.h1_c00293{height:1110.000000px;}
.h0_c00293{height:1263.000000px;}
.w1_c00293{width:763.500000px;}
.w0_c00293{width:892.500000px;}
.x0_c00293{left:0.000000px;}
.x1_c00293{left:64.500000px;}
.x50_c00293{left:77.879385px;}
.x34_c00293{left:79.146585px;}
.x4_c00293{left:80.210835px;}
.x58_c00293{left:90.001935px;}
.x1f_c00293{left:101.876985px;}
.x55_c00293{left:111.574035px;}
.x13_c00293{left:112.861035px;}
.x35_c00293{left:122.756085px;}
.x63_c00293{left:124.399485px;}
.x53_c00293{left:133.185735px;}
.x20_c00293{left:134.388585px;}
.x36_c00293{left:145.065735px;}
.x51_c00293{left:154.856835px;}
.x5_c00293{left:156.470535px;}
.x64_c00293{left:163.459935px;}
.x37_c00293{left:166.603185px;}
.x3e_c00293{left:167.830785px;}
.x5e_c00293{left:176.943735px;}
.x21_c00293{left:178.235685px;}
.x61_c00293{left:179.255385px;}
.x6_c00293{left:180.611685px;}
.x22_c00293{left:188.041635px;}
.x38_c00293{left:189.269235px;}
.x4d_c00293{left:190.308735px;}
.x7_c00293{left:201.362085px;}
.x2c_c00293{left:211.950135px;}
.x44_c00293{left:222.409485px;}
.x52_c00293{left:225.196335px;}
.x8_c00293{left:234.091485px;}
.x23_c00293{left:244.511235px;}
.x5f_c00293{left:245.555685px;}
.x65_c00293{left:247.926735px;}
.x14_c00293{left:255.292335px;}
.x9_c00293{left:266.251635px;}
.x2d_c00293{left:267.315885px;}
.x24_c00293{left:278.012835px;}
.x56_c00293{left:287.477235px;}
.x15_c00293{left:288.625635px;}
.x2e_c00293{left:299.926485px;}
.x68_c00293{left:302.079735px;}
.xa_c00293{left:311.385735px;}
.x54_c00293{left:321.528285px;}
.x39_c00293{left:322.914285px;}
.x3f_c00293{left:333.536985px;}
.xb_c00293{left:343.931985px;}
.x59_c00293{left:345.011085px;}
.x25_c00293{left:355.232835px;}
.xc_c00293{left:365.117985px;}
.x2f_c00293{left:366.731685px;}
.x16_c00293{left:377.077185px;}
.x48_c00293{left:388.140435px;}
.x3a_c00293{left:398.342385px;}
.x26_c00293{left:399.535335px;}
.x45_c00293{left:410.103585px;}
.x40_c00293{left:421.087635px;}
.x66_c00293{left:432.150885px;}
.x30_c00293{left:442.837935px;}
.x3d_c00293{left:445.258485px;}
.xd_c00293{left:453.713085px;}
.x49_c00293{left:455.059485px;}
.x17_c00293{left:465.637635px;}
.x46_c00293{left:476.616735px;}
.x4a_c00293{left:487.021635px;}
.x62_c00293{left:489.254085px;}
.xe_c00293{left:497.847285px;}
.x18_c00293{left:508.831335px;}
.x41_c00293{left:510.024285px;}
.x4e_c00293{left:519.652035px;}
.x5a_c00293{left:528.007635px;}
.x31_c00293{left:530.695485px;}
.x42_c00293{left:542.070585px;}
.x5b_c00293{left:551.926035px;}
.xf_c00293{left:553.153635px;}
.x19_c00293{left:554.217885px;}
.x10_c00293{left:564.395085px;}
.x27_c00293{left:575.062335px;}
.x4b_c00293{left:584.714835px;}
.x1a_c00293{left:585.932535px;}
.x67_c00293{left:596.119635px;}
.x11_c00293{left:597.381885px;}
.x28_c00293{left:607.687785px;}
.x3b_c00293{left:608.756985px;}
.x5c_c00293{left:617.503635px;}
.x1b_c00293{left:618.701535px;}
.x32_c00293{left:619.795485px;}
.x33_c00293{left:629.645985px;}
.x43_c00293{left:639.654885px;}
.x12_c00293{left:640.813185px;}
.x29_c00293{left:652.024935px;}
.x2_c00293{left:663.211935px;}
.x60_c00293{left:672.745635px;}
.x4f_c00293{left:673.799985px;}
.x3c_c00293{left:676.002735px;}
.x47_c00293{left:683.794035px;}
.x3_c00293{left:685.719585px;}
.x1c_c00293{left:688.922235px;}
.x2a_c00293{left:695.619585px;}
.x1d_c00293{left:696.728385px;}
.x4c_c00293{left:706.880835px;}
.x57_c00293{left:708.182685px;}
.x1e_c00293{left:718.132185px;}
.x2b_c00293{left:728.834085px;}
.x5d_c00293{left:740.090385px;}
.x69_c00293{left:760.291335px;}
.x6a_c00293{left:761.766435px;}
@media print{
.v0_c00293{vertical-align:0.000000pt;}
.ls8_c00293{letter-spacing:-2.377760pt;}
.ls11_c00293{letter-spacing:-2.094400pt;}
.ls9_c00293{letter-spacing:-1.963350pt;}
.lse_c00293{letter-spacing:-1.664432pt;}
.ls10_c00293{letter-spacing:-1.478400pt;}
.ls6_c00293{letter-spacing:-0.686154pt;}
.lsc_c00293{letter-spacing:-0.230982pt;}
.ls3_c00293{letter-spacing:0.000000pt;}
.ls5_c00293{letter-spacing:0.020381pt;}
.lsa_c00293{letter-spacing:1.256816pt;}
.lsd_c00293{letter-spacing:2.520426pt;}
.lsb_c00293{letter-spacing:2.527219pt;}
.ls1_c00293{letter-spacing:3.036739pt;}
.ls2_c00293{letter-spacing:3.308800pt;}
.ls4_c00293{letter-spacing:3.396800pt;}
.ls0_c00293{letter-spacing:4.619648pt;}
.lsf_c00293{letter-spacing:44.352176pt;}
.ls7_c00293{letter-spacing:45.619376pt;}
.ws0_c00293{word-spacing:-16.984000pt;}
.ws4_c00293{word-spacing:0.000000pt;}
.ws2_c00293{word-spacing:0.747296pt;}
.ws1_c00293{word-spacing:1.630464pt;}
.ws3_c00293{word-spacing:4.551712pt;}
._13_c00293{margin-left:-6.385984pt;}
._a_c00293{margin-left:-3.192992pt;}
._5_c00293{width:1.834272pt;}
._0_c00293{width:3.375680pt;}
._3_c00293{width:4.824160pt;}
._4_c00293{width:6.726016pt;}
._b_c00293{width:7.744000pt;}
._8_c00293{width:9.239296pt;}
._7_c00293{width:10.530080pt;}
._9_c00293{width:11.956384pt;}
._10_c00293{width:19.022080pt;}
._6_c00293{width:20.380800pt;}
._1_c00293{width:21.535712pt;}
._12_c00293{width:23.073600pt;}
._d_c00293{width:24.340800pt;}
._f_c00293{width:25.815680pt;}
._c_c00293{width:26.945600pt;}
._2_c00293{width:28.192736pt;}
._e_c00293{width:30.164288pt;}
._11_c00293{width:33.492448pt;}
.fs7_c00293{font-size:19.712000pt;}
.fsc_c00293{font-size:20.064000pt;}
.fs2_c00293{font-size:24.640000pt;}
.fs8_c00293{font-size:25.696000pt;}
.fs12_c00293{font-size:29.568000pt;}
.fs6_c00293{font-size:29.920000pt;}
.fs9_c00293{font-size:32.736000pt;}
.fs10_c00293{font-size:34.848000pt;}
.fsa_c00293{font-size:39.424000pt;}
.fsb_c00293{font-size:39.776000pt;}
.fsd_c00293{font-size:42.240000pt;}
.fs5_c00293{font-size:44.352176pt;}
.fs3_c00293{font-size:45.619376pt;}
.fse_c00293{font-size:47.872176pt;}
.fsf_c00293{font-size:51.392176pt;}
.fs4_c00293{font-size:57.376000pt;}
.fs11_c00293{font-size:59.840000pt;}
.fs13_c00293{font-size:63.360000pt;}
.fs0_c00293{font-size:66.176000pt;}
.fs1_c00293{font-size:67.936000pt;}
.y0_c00293{bottom:0.000000pt;}
.y1_c00293{bottom:68.000000pt;}
.y1b_c00293{bottom:113.648520pt;}
.y1a_c00293{bottom:140.897720pt;}
.y2a_c00293{bottom:145.011720pt;}
.y29_c00293{bottom:168.454920pt;}
.y19_c00293{bottom:169.088520pt;}
.y28_c00293{bottom:175.741320pt;}
.y18_c00293{bottom:199.818120pt;}
.y27_c00293{bottom:221.682072pt;}
.y17_c00293{bottom:229.280520pt;}
.y16_c00293{bottom:258.742920pt;}
.y15_c00293{bottom:289.793720pt;}
.y14_c00293{bottom:289.800672pt;}
.y26_c00293{bottom:311.014920pt;}
.y13_c00293{bottom:318.622520pt;}
.y12_c00293{bottom:349.035320pt;}
.y25_c00293{bottom:360.756920pt;}
.y24_c00293{bottom:370.894520pt;}
.y23_c00293{bottom:378.814520pt;}
.y22_c00293{bottom:391.482120pt;}
.y21_c00293{bottom:392.753720pt;}
.y20_c00293{bottom:399.089720pt;}
.y11_c00293{bottom:407.009720pt;}
.y1f_c00293{bottom:407.322120pt;}
.y10_c00293{bottom:435.834120pt;}
.yf_c00293{bottom:464.033720pt;}
.ye_c00293{bottom:495.080120pt;}
.y1e_c00293{bottom:497.297720pt;}
.y1d_c00293{bottom:501.728520pt;}
.yd_c00293{bottom:524.221320pt;}
.yc_c00293{bottom:554.634120pt;}
.yb_c00293{bottom:585.363720pt;}
.ya_c00293{bottom:613.880120pt;}
.y9_c00293{bottom:642.708920pt;}
.y8_c00293{bottom:671.854520pt;}
.y7_c00293{bottom:700.045320pt;}
.y6_c00293{bottom:729.190920pt;}
.y5_c00293{bottom:757.390520pt;}
.y4_c00293{bottom:787.165320pt;}
.y3_c00293{bottom:815.994120pt;}
.y1c_c00293{bottom:868.582920pt;}
.y2_c00293{bottom:955.386120pt;}
.h8_c00293{height:20.559000pt;}
.hd_c00293{height:20.926125pt;}
.h4_c00293{height:25.698750pt;}
.h9_c00293{height:26.800125pt;}
.h7_c00293{height:29.364844pt;}
.h6_c00293{height:29.538549pt;}
.h5_c00293{height:30.382504pt;}
.h13_c00293{height:30.838500pt;}
.ha_c00293{height:32.128594pt;}
.h11_c00293{height:34.201406pt;}
.hc_c00293{height:39.037969pt;}
.hb_c00293{height:41.118000pt;}
.he_c00293{height:41.456250pt;}
.hf_c00293{height:49.929184pt;}
.h10_c00293{height:53.600434pt;}
.h12_c00293{height:62.411250pt;}
.h2_c00293{height:64.948125pt;}
.h14_c00293{height:66.082500pt;}
.h3_c00293{height:66.675469pt;}
.h1_c00293{height:986.666667pt;}
.h0_c00293{height:1122.666667pt;}
.w1_c00293{width:678.666667pt;}
.w0_c00293{width:793.333333pt;}
.x0_c00293{left:0.000000pt;}
.x1_c00293{left:57.333333pt;}
.x50_c00293{left:69.226120pt;}
.x34_c00293{left:70.352520pt;}
.x4_c00293{left:71.298520pt;}
.x58_c00293{left:80.001720pt;}
.x1f_c00293{left:90.557320pt;}
.x55_c00293{left:99.176920pt;}
.x13_c00293{left:100.320920pt;}
.x35_c00293{left:109.116520pt;}
.x63_c00293{left:110.577320pt;}
.x53_c00293{left:118.387320pt;}
.x20_c00293{left:119.456520pt;}
.x36_c00293{left:128.947320pt;}
.x51_c00293{left:137.650520pt;}
.x5_c00293{left:139.084920pt;}
.x64_c00293{left:145.297720pt;}
.x37_c00293{left:148.091720pt;}
.x3e_c00293{left:149.182920pt;}
.x5e_c00293{left:157.283320pt;}
.x21_c00293{left:158.431720pt;}
.x61_c00293{left:159.338120pt;}
.x6_c00293{left:160.543720pt;}
.x22_c00293{left:167.148120pt;}
.x38_c00293{left:168.239320pt;}
.x4d_c00293{left:169.163320pt;}
.x7_c00293{left:178.988520pt;}
.x2c_c00293{left:188.400120pt;}
.x44_c00293{left:197.697320pt;}
.x52_c00293{left:200.174520pt;}
.x8_c00293{left:208.081320pt;}
.x23_c00293{left:217.343320pt;}
.x5f_c00293{left:218.271720pt;}
.x65_c00293{left:220.379320pt;}
.x14_c00293{left:226.926520pt;}
.x9_c00293{left:236.668120pt;}
.x2d_c00293{left:237.614120pt;}
.x24_c00293{left:247.122520pt;}
.x56_c00293{left:255.535320pt;}
.x15_c00293{left:256.556120pt;}
.x2e_c00293{left:266.601320pt;}
.x68_c00293{left:268.515320pt;}
.xa_c00293{left:276.787320pt;}
.x54_c00293{left:285.802920pt;}
.x39_c00293{left:287.034920pt;}
.x3f_c00293{left:296.477320pt;}
.xb_c00293{left:305.717320pt;}
.x59_c00293{left:306.676520pt;}
.x25_c00293{left:315.762520pt;}
.xc_c00293{left:324.549320pt;}
.x2f_c00293{left:325.983720pt;}
.x16_c00293{left:335.179720pt;}
.x48_c00293{left:345.013720pt;}
.x3a_c00293{left:354.082120pt;}
.x26_c00293{left:355.142520pt;}
.x45_c00293{left:364.536520pt;}
.x40_c00293{left:374.300120pt;}
.x66_c00293{left:384.134120pt;}
.x30_c00293{left:393.633720pt;}
.x3d_c00293{left:395.785320pt;}
.xd_c00293{left:403.300520pt;}
.x49_c00293{left:404.497320pt;}
.x17_c00293{left:413.900120pt;}
.x46_c00293{left:423.659320pt;}
.x4a_c00293{left:432.908120pt;}
.x62_c00293{left:434.892520pt;}
.xe_c00293{left:442.530920pt;}
.x18_c00293{left:452.294520pt;}
.x41_c00293{left:453.354920pt;}
.x4e_c00293{left:461.912920pt;}
.x5a_c00293{left:469.340120pt;}
.x31_c00293{left:471.729320pt;}
.x42_c00293{left:481.840520pt;}
.x5b_c00293{left:490.600920pt;}
.xf_c00293{left:491.692120pt;}
.x19_c00293{left:492.638120pt;}
.x10_c00293{left:501.684520pt;}
.x27_c00293{left:511.166520pt;}
.x4b_c00293{left:519.746520pt;}
.x1a_c00293{left:520.828920pt;}
.x67_c00293{left:529.884120pt;}
.x11_c00293{left:531.006120pt;}
.x28_c00293{left:540.166920pt;}
.x3b_c00293{left:541.117320pt;}
.x5c_c00293{left:548.892120pt;}
.x1b_c00293{left:549.956920pt;}
.x32_c00293{left:550.929320pt;}
.x33_c00293{left:559.685320pt;}
.x43_c00293{left:568.582120pt;}
.x12_c00293{left:569.611720pt;}
.x29_c00293{left:579.577720pt;}
.x2_c00293{left:589.521720pt;}
.x60_c00293{left:597.996120pt;}
.x4f_c00293{left:598.933320pt;}
.x3c_c00293{left:600.891320pt;}
.x47_c00293{left:607.816920pt;}
.x3_c00293{left:609.528520pt;}
.x1c_c00293{left:612.375320pt;}
.x2a_c00293{left:618.328520pt;}
.x1d_c00293{left:619.314120pt;}
.x4c_c00293{left:628.338520pt;}
.x57_c00293{left:629.495720pt;}
.x1e_c00293{left:638.339720pt;}
.x2b_c00293{left:647.852520pt;}
.x5d_c00293{left:657.858120pt;}
.x69_c00293{left:675.814520pt;}
.x6a_c00293{left:677.125720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7ca4b2b861dc794af3c008da.woff2')format("woff");}.ff1_c00294{font-family:ff1_c00294;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00294;src:url('chunks/assets/font_9eec2609fc19d86c7d4ac3b9.woff2')format("woff");}.ff2_c00294{font-family:ff2_c00294;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00294;src:url('chunks/assets/font_acf8e1e5257754a9aaf67c92.woff2')format("woff");}.ff3_c00294{font-family:ff3_c00294;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00294;src:url('chunks/assets/font_daff831fe92273e6993f0d3b.woff2')format("woff");}.ff4_c00294{font-family:ff4_c00294;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mb5_c00294{transform:matrix(0.028572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.028572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.028572,0.000000,0.000000,0.250000,0,0);}
.m21_c00294{transform:matrix(0.039474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.039474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.039474,0.000000,0.000000,0.250000,0,0);}
.m78_c00294{transform:matrix(0.044118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.044118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.044118,0.000000,0.000000,0.250000,0,0);}
.m90_c00294{transform:matrix(0.050001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050001,0.000000,0.000000,0.250000,0,0);}
.ma_c00294{transform:matrix(0.062501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062501,0.000000,0.000000,0.250000,0,0);}
.m23_c00294{transform:matrix(0.072369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072369,0.000000,0.000000,0.250000,0,0);}
.m7b_c00294{transform:matrix(0.084744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084744,0.000000,0.000000,0.250000,0,0);}
.mc4_c00294{transform:matrix(0.111030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111030,0.000000,0.000000,0.250000,0,0);}
.m20_c00294{transform:matrix(0.118421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118421,0.000000,0.000000,0.250000,0,0);}
.mba_c00294{transform:matrix(0.138080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138080,0.000000,0.000000,0.250000,0,0);}
.m5a_c00294{transform:matrix(0.138456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138456,0.000000,0.000000,0.250000,0,0);}
.m76_c00294{transform:matrix(0.143383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143383,0.000000,0.000000,0.250000,0,0);}
.md6_c00294{transform:matrix(0.146022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146022,0.000000,0.000000,0.250000,0,0);}
.m77_c00294{transform:matrix(0.147059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147059,0.000000,0.000000,0.250000,0,0);}
.m9d_c00294{transform:matrix(0.147660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147660,0.000000,0.000000,0.250000,0,0);}
.m89_c00294{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m7_c00294{transform:matrix(0.151042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151042,0.000000,0.000000,0.250000,0,0);}
.m8_c00294{transform:matrix(0.152777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152777,0.000000,0.000000,0.250000,0,0);}
.m96_c00294{transform:matrix(0.155980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155980,0.000000,0.000000,0.250000,0,0);}
.m7a_c00294{transform:matrix(0.156522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156522,0.000000,0.000000,0.250000,0,0);}
.m87_c00294{transform:matrix(0.157142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157142,0.000000,0.000000,0.250000,0,0);}
.m75_c00294{transform:matrix(0.161764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161764,0.000000,0.000000,0.250000,0,0);}
.m8b_c00294{transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);}
.m40_c00294{transform:matrix(0.169118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169118,0.000000,0.000000,0.250000,0,0);}
.m86_c00294{transform:matrix(0.171429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171429,0.000000,0.000000,0.250000,0,0);}
.m9e_c00294{transform:matrix(0.171811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171811,0.000000,0.000000,0.250000,0,0);}
.m57_c00294{transform:matrix(0.176877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176877,0.000000,0.000000,0.250000,0,0);}
.mb4_c00294{transform:matrix(0.179969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179969,0.000000,0.000000,0.250000,0,0);}
.m6_c00294{transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);}
.m49_c00294{transform:matrix(0.181424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181424,0.000000,0.000000,0.250000,0,0);}
.m79_c00294{transform:matrix(0.183823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183823,0.000000,0.000000,0.250000,0,0);}
.m9_c00294{transform:matrix(0.185185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185185,0.000000,0.000000,0.250000,0,0);}
.m88_c00294{transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);}
.m8a_c00294{transform:matrix(0.189285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189285,0.000000,0.000000,0.250000,0,0);}
.m3f_c00294{transform:matrix(0.191177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191177,0.000000,0.000000,0.250000,0,0);}
.m7d_c00294{transform:matrix(0.194492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194492,0.000000,0.000000,0.250000,0,0);}
.m22_c00294{transform:matrix(0.197368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197368,0.000000,0.000000,0.250000,0,0);}
.m8c_c00294{transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);}
.mcc_c00294{transform:matrix(0.201437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201437,0.000000,0.000000,0.250000,0,0);}
.m42_c00294{transform:matrix(0.202206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202206,0.000000,0.000000,0.250000,0,0);}
.m7c_c00294{transform:matrix(0.205382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205382,0.000000,0.000000,0.250000,0,0);}
.m8f_c00294{transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);}
.m66_c00294{transform:matrix(0.207544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207544,0.000000,0.000000,0.250000,0,0);}
.md7_c00294{transform:matrix(0.210063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210063,0.000000,0.000000,0.250000,0,0);}
.m63_c00294{transform:matrix(0.211352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211352,0.000000,0.000000,0.250000,0,0);}
.m52_c00294{transform:matrix(0.214561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214561,0.000000,0.000000,0.250000,0,0);}
.m8e_c00294{transform:matrix(0.214930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214930,0.000000,0.000000,0.250000,0,0);}
.mb1_c00294{transform:matrix(0.218169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218169,0.000000,0.000000,0.250000,0,0);}
.mb6_c00294{transform:matrix(0.219469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219469,0.000000,0.000000,0.250000,0,0);}
.m8d_c00294{transform:matrix(0.220047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220047,0.000000,0.000000,0.250000,0,0);}
.mbc_c00294{transform:matrix(0.220519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220519,0.000000,0.000000,0.250000,0,0);}
.m3e_c00294{transform:matrix(0.220587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220587,0.000000,0.000000,0.250000,0,0);}
.m54_c00294{transform:matrix(0.228112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228112,0.000000,0.000000,0.250000,0,0);}
.m41_c00294{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);}
.m70_c00294{transform:matrix(0.236418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236418,0.000000,0.000000,0.250000,0,0);}
.m7f_c00294{transform:matrix(0.243092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243092,0.000000,0.000000,0.250000,0,0);}
.m7e_c00294{transform:matrix(0.247222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247222,0.000000,0.000000,0.250000,0,0);}
.m72_c00294{transform:matrix(0.248913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248913,0.000000,0.000000,0.250000,0,0);}
.m0_c00294{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00294{transform:matrix(0.250666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250666,0.000000,0.000000,0.250000,0,0);}
.m16_c00294{transform:matrix(0.254279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254279,0.000000,0.000000,0.250000,0,0);}
.me1_c00294{transform:matrix(0.254624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254624,0.000000,0.000000,0.250000,0,0);}
.mc2_c00294{transform:matrix(0.257721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257721,0.000000,0.000000,0.250000,0,0);}
.m5e_c00294{transform:matrix(0.263003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263003,0.000000,0.000000,0.250000,0,0);}
.m5b_c00294{transform:matrix(0.264758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264758,0.000000,0.000000,0.250000,0,0);}
.mdc_c00294{transform:matrix(0.265354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265354,0.000000,0.000000,0.250000,0,0);}
.m1f_c00294{transform:matrix(0.266499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266499,0.000000,0.000000,0.250000,0,0);}
.m4a_c00294{transform:matrix(0.268714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268714,0.000000,0.000000,0.250000,0,0);}
.m80_c00294{transform:matrix(0.271932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271932,0.000000,0.000000,0.250000,0,0);}
.m5f_c00294{transform:matrix(0.273302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273302,0.000000,0.000000,0.250000,0,0);}
.m33_c00294{transform:matrix(0.275837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275837,0.000000,0.000000,0.250000,0,0);}
.mbd_c00294{transform:matrix(0.276949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276949,0.000000,0.000000,0.250000,0,0);}
.m1_c00294{transform:matrix(0.277726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277726,0.000000,0.000000,0.250000,0,0);}
.m9c_c00294{transform:matrix(0.278407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278407,0.000000,0.000000,0.250000,0,0);}
.mb_c00294{transform:matrix(0.278472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278472,0.000000,0.000000,0.250000,0,0);}
.mda_c00294{transform:matrix(0.278559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278559,0.000000,0.000000,0.250000,0,0);}
.m30_c00294{transform:matrix(0.279997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279997,0.000000,0.000000,0.250000,0,0);}
.md1_c00294{transform:matrix(0.281831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281831,0.000000,0.000000,0.250000,0,0);}
.mcd_c00294{transform:matrix(0.282334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282334,0.000000,0.000000,0.250000,0,0);}
.m94_c00294{transform:matrix(0.283358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283358,0.000000,0.000000,0.250000,0,0);}
.md0_c00294{transform:matrix(0.283414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283414,0.000000,0.000000,0.250000,0,0);}
.m9f_c00294{transform:matrix(0.283815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283815,0.000000,0.000000,0.250000,0,0);}
.mc5_c00294{transform:matrix(0.284257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284257,0.000000,0.000000,0.250000,0,0);}
.ma0_c00294{transform:matrix(0.284486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284486,0.000000,0.000000,0.250000,0,0);}
.m17_c00294{transform:matrix(0.287434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287434,0.000000,0.000000,0.250000,0,0);}
.mb9_c00294{transform:matrix(0.288236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288236,0.000000,0.000000,0.250000,0,0);}
.m4_c00294{transform:matrix(0.288753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288753,0.000000,0.000000,0.250000,0,0);}
.m56_c00294{transform:matrix(0.291019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291019,0.000000,0.000000,0.250000,0,0);}
.m6b_c00294{transform:matrix(0.291548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291548,0.000000,0.000000,0.250000,0,0);}
.m1b_c00294{transform:matrix(0.291628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291628,0.000000,0.000000,0.250000,0,0);}
.m97_c00294{transform:matrix(0.291664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291664,0.000000,0.000000,0.250000,0,0);}
.m4c_c00294{transform:matrix(0.291881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291881,0.000000,0.000000,0.250000,0,0);}
.m11_c00294{transform:matrix(0.291998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291998,0.000000,0.000000,0.250000,0,0);}
.mbb_c00294{transform:matrix(0.292879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292879,0.000000,0.000000,0.250000,0,0);}
.maf_c00294{transform:matrix(0.293147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293147,0.000000,0.000000,0.250000,0,0);}
.m65_c00294{transform:matrix(0.293350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293350,0.000000,0.000000,0.250000,0,0);}
.m4b_c00294{transform:matrix(0.294511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294511,0.000000,0.000000,0.250000,0,0);}
.mb0_c00294{transform:matrix(0.294965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294965,0.000000,0.000000,0.250000,0,0);}
.me0_c00294{transform:matrix(0.295796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295796,0.000000,0.000000,0.250000,0,0);}
.m62_c00294{transform:matrix(0.296216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296216,0.000000,0.000000,0.250000,0,0);}
.m60_c00294{transform:matrix(0.296707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296707,0.000000,0.000000,0.250000,0,0);}
.m19_c00294{transform:matrix(0.296828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296828,0.000000,0.000000,0.250000,0,0);}
.m35_c00294{transform:matrix(0.296916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296916,0.000000,0.000000,0.250000,0,0);}
.m38_c00294{transform:matrix(0.298543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298543,0.000000,0.000000,0.250000,0,0);}
.m2c_c00294{transform:matrix(0.298837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298837,0.000000,0.000000,0.250000,0,0);}
.m3a_c00294{transform:matrix(0.299489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299489,0.000000,0.000000,0.250000,0,0);}
.mbf_c00294{transform:matrix(0.299582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299582,0.000000,0.000000,0.250000,0,0);}
.m47_c00294{transform:matrix(0.299677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299677,0.000000,0.000000,0.250000,0,0);}
.m95_c00294{transform:matrix(0.300346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300346,0.000000,0.000000,0.250000,0,0);}
.ma1_c00294{transform:matrix(0.301990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301990,0.000000,0.000000,0.250000,0,0);}
.md5_c00294{transform:matrix(0.302044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302044,0.000000,0.000000,0.250000,0,0);}
.m9a_c00294{transform:matrix(0.302120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302120,0.000000,0.000000,0.250000,0,0);}
.m13_c00294{transform:matrix(0.302459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302459,0.000000,0.000000,0.250000,0,0);}
.mf_c00294{transform:matrix(0.302522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302522,0.000000,0.000000,0.250000,0,0);}
.m55_c00294{transform:matrix(0.304115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304115,0.000000,0.000000,0.250000,0,0);}
.m26_c00294{transform:matrix(0.304743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304743,0.000000,0.000000,0.250000,0,0);}
.m31_c00294{transform:matrix(0.307059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307059,0.000000,0.000000,0.250000,0,0);}
.m2d_c00294{transform:matrix(0.307682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307682,0.000000,0.000000,0.250000,0,0);}
.m44_c00294{transform:matrix(0.308390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308390,0.000000,0.000000,0.250000,0,0);}
.m2f_c00294{transform:matrix(0.308829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308829,0.000000,0.000000,0.250000,0,0);}
.ma9_c00294{transform:matrix(0.309824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309824,0.000000,0.000000,0.250000,0,0);}
.m48_c00294{transform:matrix(0.311182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311182,0.000000,0.000000,0.250000,0,0);}
.m6d_c00294{transform:matrix(0.311780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311780,0.000000,0.000000,0.250000,0,0);}
.m39_c00294{transform:matrix(0.312030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312030,0.000000,0.000000,0.250000,0,0);}
.mc3_c00294{transform:matrix(0.312443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312443,0.000000,0.000000,0.250000,0,0);}
.mc1_c00294{transform:matrix(0.312831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312831,0.000000,0.000000,0.250000,0,0);}
.m18_c00294{transform:matrix(0.313161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313161,0.000000,0.000000,0.250000,0,0);}
.md4_c00294{transform:matrix(0.314225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314225,0.000000,0.000000,0.250000,0,0);}
.mc7_c00294{transform:matrix(0.314321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314321,0.000000,0.000000,0.250000,0,0);}
.m1d_c00294{transform:matrix(0.315302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315302,0.000000,0.000000,0.250000,0,0);}
.mdf_c00294{transform:matrix(0.317053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317053,0.000000,0.000000,0.250000,0,0);}
.m45_c00294{transform:matrix(0.317214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317214,0.000000,0.000000,0.250000,0,0);}
.mb8_c00294{transform:matrix(0.319330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319330,0.000000,0.000000,0.250000,0,0);}
.mc0_c00294{transform:matrix(0.320137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320137,0.000000,0.000000,0.250000,0,0);}
.mc_c00294{transform:matrix(0.320402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320402,0.000000,0.000000,0.250000,0,0);}
.m24_c00294{transform:matrix(0.320717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320717,0.000000,0.000000,0.250000,0,0);}
.m28_c00294{transform:matrix(0.321851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321851,0.000000,0.000000,0.250000,0,0);}
.m46_c00294{transform:matrix(0.322307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322307,0.000000,0.000000,0.250000,0,0);}
.ma6_c00294{transform:matrix(0.322565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322565,0.000000,0.000000,0.250000,0,0);}
.m12_c00294{transform:matrix(0.322822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322822,0.000000,0.000000,0.250000,0,0);}
.m43_c00294{transform:matrix(0.322925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322925,0.000000,0.000000,0.250000,0,0);}
.m4d_c00294{transform:matrix(0.322938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322938,0.000000,0.000000,0.250000,0,0);}
.m99_c00294{transform:matrix(0.323389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323389,0.000000,0.000000,0.250000,0,0);}
.m74_c00294{transform:matrix(0.325608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325608,0.000000,0.000000,0.250000,0,0);}
.m3d_c00294{transform:matrix(0.327582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327582,0.000000,0.000000,0.250000,0,0);}
.ma4_c00294{transform:matrix(0.327609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327609,0.000000,0.000000,0.250000,0,0);}
.m71_c00294{transform:matrix(0.327938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327938,0.000000,0.000000,0.250000,0,0);}
.m81_c00294{transform:matrix(0.328275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328275,0.000000,0.000000,0.250000,0,0);}
.m91_c00294{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);}
.m50_c00294{transform:matrix(0.328796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328796,0.000000,0.000000,0.250000,0,0);}
.m85_c00294{transform:matrix(0.328940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328940,0.000000,0.000000,0.250000,0,0);}
.m10_c00294{transform:matrix(0.329444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329444,0.000000,0.000000,0.250000,0,0);}
.mac_c00294{transform:matrix(0.330433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330433,0.000000,0.000000,0.250000,0,0);}
.m73_c00294{transform:matrix(0.330611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330611,0.000000,0.000000,0.250000,0,0);}
.m32_c00294{transform:matrix(0.331304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331304,0.000000,0.000000,0.250000,0,0);}
.m58_c00294{transform:matrix(0.333873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333873,0.000000,0.000000,0.250000,0,0);}
.mbe_c00294{transform:matrix(0.334224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334224,0.000000,0.000000,0.250000,0,0);}
.mb7_c00294{transform:matrix(0.334243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334243,0.000000,0.000000,0.250000,0,0);}
.m25_c00294{transform:matrix(0.334245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334245,0.000000,0.000000,0.250000,0,0);}
.m37_c00294{transform:matrix(0.337047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337047,0.000000,0.000000,0.250000,0,0);}
.mb2_c00294{transform:matrix(0.338494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338494,0.000000,0.000000,0.250000,0,0);}
.m34_c00294{transform:matrix(0.340551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340551,0.000000,0.000000,0.250000,0,0);}
.m9b_c00294{transform:matrix(0.341052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341052,0.000000,0.000000,0.250000,0,0);}
.m98_c00294{transform:matrix(0.341446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341446,0.000000,0.000000,0.250000,0,0);}
.m3c_c00294{transform:matrix(0.341539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341539,0.000000,0.000000,0.250000,0,0);}
.md_c00294{transform:matrix(0.341763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341763,0.000000,0.000000,0.250000,0,0);}
.m27_c00294{transform:matrix(0.341836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341836,0.000000,0.000000,0.250000,0,0);}
.mca_c00294{transform:matrix(0.342495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342495,0.000000,0.000000,0.250000,0,0);}
.m6a_c00294{transform:matrix(0.343249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343249,0.000000,0.000000,0.250000,0,0);}
.m53_c00294{transform:matrix(0.343832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343832,0.000000,0.000000,0.250000,0,0);}
.m1a_c00294{transform:matrix(0.345131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345131,0.000000,0.000000,0.250000,0,0);}
.m36_c00294{transform:matrix(0.345199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345199,0.000000,0.000000,0.250000,0,0);}
.m67_c00294{transform:matrix(0.345397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345397,0.000000,0.000000,0.250000,0,0);}
.m82_c00294{transform:matrix(0.345647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345647,0.000000,0.000000,0.250000,0,0);}
.mc9_c00294{transform:matrix(0.346124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346124,0.000000,0.000000,0.250000,0,0);}
.m93_c00294{transform:matrix(0.346226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346226,0.000000,0.000000,0.250000,0,0);}
.mae_c00294{transform:matrix(0.346254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346254,0.000000,0.000000,0.250000,0,0);}
.ma7_c00294{transform:matrix(0.346814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346814,0.000000,0.000000,0.250000,0,0);}
.mde_c00294{transform:matrix(0.347150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347150,0.000000,0.000000,0.250000,0,0);}
.m29_c00294{transform:matrix(0.348971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348971,0.000000,0.000000,0.250000,0,0);}
.m15_c00294{transform:matrix(0.349760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349760,0.000000,0.000000,0.250000,0,0);}
.m83_c00294{transform:matrix(0.349858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349858,0.000000,0.000000,0.250000,0,0);}
.me2_c00294{transform:matrix(0.350574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350574,0.000000,0.000000,0.250000,0,0);}
.m6f_c00294{transform:matrix(0.351052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351052,0.000000,0.000000,0.250000,0,0);}
.mcb_c00294{transform:matrix(0.351879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351879,0.000000,0.000000,0.250000,0,0);}
.md2_c00294{transform:matrix(0.354428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354428,0.000000,0.000000,0.250000,0,0);}
.md9_c00294{transform:matrix(0.354601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354601,0.000000,0.000000,0.250000,0,0);}
.me3_c00294{transform:matrix(0.357039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357039,0.000000,0.000000,0.250000,0,0);}
.m92_c00294{transform:matrix(0.359020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359020,0.000000,0.000000,0.250000,0,0);}
.m6e_c00294{transform:matrix(0.359088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359088,0.000000,0.000000,0.250000,0,0);}
.mdd_c00294{transform:matrix(0.359311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359311,0.000000,0.000000,0.250000,0,0);}
.m61_c00294{transform:matrix(0.361390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361390,0.000000,0.000000,0.250000,0,0);}
.mce_c00294{transform:matrix(0.361658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361658,0.000000,0.000000,0.250000,0,0);}
.m84_c00294{transform:matrix(0.367865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367865,0.000000,0.000000,0.250000,0,0);}
.m3b_c00294{transform:matrix(0.368059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368059,0.000000,0.000000,0.250000,0,0);}
.mdb_c00294{transform:matrix(0.368833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368833,0.000000,0.000000,0.250000,0,0);}
.m69_c00294{transform:matrix(0.373038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373038,0.000000,0.000000,0.250000,0,0);}
.md8_c00294{transform:matrix(0.373424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373424,0.000000,0.000000,0.250000,0,0);}
.m3_c00294{transform:matrix(0.374412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374412,0.000000,0.000000,0.250000,0,0);}
.m68_c00294{transform:matrix(0.374875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374875,0.000000,0.000000,0.250000,0,0);}
.m2b_c00294{transform:matrix(0.376489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376489,0.000000,0.000000,0.250000,0,0);}
.m4e_c00294{transform:matrix(0.378859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378859,0.000000,0.000000,0.250000,0,0);}
.m5_c00294{transform:matrix(0.379414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379414,0.000000,0.000000,0.250000,0,0);}
.ma8_c00294{transform:matrix(0.379531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379531,0.000000,0.000000,0.250000,0,0);}
.m64_c00294{transform:matrix(0.379699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379699,0.000000,0.000000,0.250000,0,0);}
.maa_c00294{transform:matrix(0.380147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380147,0.000000,0.000000,0.250000,0,0);}
.m1e_c00294{transform:matrix(0.385791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385791,0.000000,0.000000,0.250000,0,0);}
.m51_c00294{transform:matrix(0.386251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386251,0.000000,0.000000,0.250000,0,0);}
.mad_c00294{transform:matrix(0.386638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386638,0.000000,0.000000,0.250000,0,0);}
.m4f_c00294{transform:matrix(0.386874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386874,0.000000,0.000000,0.250000,0,0);}
.mc8_c00294{transform:matrix(0.386892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386892,0.000000,0.000000,0.250000,0,0);}
.m14_c00294{transform:matrix(0.390203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390203,0.000000,0.000000,0.250000,0,0);}
.m1c_c00294{transform:matrix(0.390581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390581,0.000000,0.000000,0.250000,0,0);}
.m2a_c00294{transform:matrix(0.390742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390742,0.000000,0.000000,0.250000,0,0);}
.m59_c00294{transform:matrix(0.395183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395183,0.000000,0.000000,0.250000,0,0);}
.ma3_c00294{transform:matrix(0.399623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399623,0.000000,0.000000,0.250000,0,0);}
.md3_c00294{transform:matrix(0.401809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401809,0.000000,0.000000,0.250000,0,0);}
.me_c00294{transform:matrix(0.403415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403415,0.000000,0.000000,0.250000,0,0);}
.m6c_c00294{transform:matrix(0.404112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404112,0.000000,0.000000,0.250000,0,0);}
.m5c_c00294{transform:matrix(0.406417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406417,0.000000,0.000000,0.250000,0,0);}
.ma5_c00294{transform:matrix(0.407262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407262,0.000000,0.000000,0.250000,0,0);}
.mab_c00294{transform:matrix(0.408351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408351,0.000000,0.000000,0.250000,0,0);}
.mc6_c00294{transform:matrix(0.418579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418579,0.000000,0.000000,0.250000,0,0);}
.ma2_c00294{transform:matrix(0.421552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421552,0.000000,0.000000,0.250000,0,0);}
.mcf_c00294{transform:matrix(0.452709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452709,0.000000,0.000000,0.250000,0,0);}
.m2_c00294{transform:matrix(0.466535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466535,0.000000,0.000000,0.250000,0,0);}
.m2e_c00294{transform:matrix(0.467607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467607,0.000000,0.000000,0.250000,0,0);}
.m5d_c00294{transform:matrix(0.469019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469019,0.000000,0.000000,0.250000,0,0);}
.v0_c00294{vertical-align:0.000000px;}
.ls11_c00294{letter-spacing:-2.550240px;}
.lsc_c00294{letter-spacing:-2.439367px;}
.lsf_c00294{letter-spacing:-2.390850px;}
.lsa_c00294{letter-spacing:-2.028159px;}
.ls5_c00294{letter-spacing:0.000000px;}
.lsd_c00294{letter-spacing:0.076666px;}
.ls4_c00294{letter-spacing:0.761666px;}
.ls10_c00294{letter-spacing:0.808476px;}
.ls9_c00294{letter-spacing:0.815446px;}
.ls2_c00294{letter-spacing:1.108170px;}
.ls12_c00294{letter-spacing:1.819071px;}
.ls1_c00294{letter-spacing:1.920442px;}
.ls0_c00294{letter-spacing:2.941180px;}
.ls6_c00294{letter-spacing:3.484810px;}
.ls3_c00294{letter-spacing:7.757244px;}
.lsb_c00294{letter-spacing:48.470598px;}
.lse_c00294{letter-spacing:49.896198px;}
.ls7_c00294{letter-spacing:51.321798px;}
.ls8_c00294{letter-spacing:54.172998px;}
.sc__c00294{text-shadow:none;}
.sc0_c00294{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00294{-webkit-text-stroke:0px transparent;}
.sc0_c00294{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00294{word-spacing:-20.365229px;}
.ws3_c00294{word-spacing:-18.239495px;}
.ws1_c00294{word-spacing:-17.424050px;}
.ws4_c00294{word-spacing:-15.395890px;}
.ws7_c00294{word-spacing:-3.902729px;}
.ws9_c00294{word-spacing:-3.555821px;}
.ws5_c00294{word-spacing:-2.996867px;}
.wsd_c00294{word-spacing:-2.857465px;}
.wsc_c00294{word-spacing:-2.787779px;}
.wsb_c00294{word-spacing:-1.951438px;}
.ws2_c00294{word-spacing:-1.533262px;}
.wsa_c00294{word-spacing:-1.184969px;}
.ws11_c00294{word-spacing:0.000000px;}
.ws8_c00294{word-spacing:0.697053px;}
.wse_c00294{word-spacing:3.762687px;}
.ws6_c00294{word-spacing:4.530135px;}
.wsf_c00294{word-spacing:5.436381px;}
.ws10_c00294{word-spacing:7.805837px;}
._27_c00294{margin-left:-24.295574px;}
._1e_c00294{margin-left:-14.914889px;}
._26_c00294{margin-left:-13.659712px;}
._24_c00294{margin-left:-9.756610px;}
._14_c00294{margin-left:-8.224073px;}
._19_c00294{margin-left:-5.394748px;}
._1d_c00294{margin-left:-3.345265px;}
._23_c00294{margin-left:-2.090836px;}
._8_c00294{width:2.299847px;}
._21_c00294{width:4.530130px;}
._0_c00294{width:5.742980px;}
._15_c00294{width:7.318179px;}
._13_c00294{width:8.921198px;}
._d_c00294{width:10.802781px;}
._17_c00294{width:12.376320px;}
._4_c00294{width:13.521123px;}
._7_c00294{width:14.775662px;}
._2_c00294{width:16.239278px;}
._1a_c00294{width:17.537157px;}
._1f_c00294{width:18.539235px;}
._b_c00294{width:19.654206px;}
._11_c00294{width:20.699646px;}
._5_c00294{width:21.983885px;}
._28_c00294{width:23.208317px;}
._a_c00294{width:24.254351px;}
._e_c00294{width:26.484436px;}
._22_c00294{width:27.599550px;}
._18_c00294{width:28.644990px;}
._c_c00294{width:32.060617px;}
._1b_c00294{width:33.740404px;}
._6_c00294{width:35.979224px;}
._9_c00294{width:37.565611px;}
._10_c00294{width:38.612239px;}
._1_c00294{width:40.018039px;}
._1c_c00294{width:41.259509px;}
._16_c00294{width:42.863101px;}
._f_c00294{width:44.272861px;}
._25_c00294{width:47.602153px;}
._3_c00294{width:48.647901px;}
._12_c00294{width:50.599983px;}
._20_c00294{width:76.805258px;}
.fc0_c00294{color:transparent;}
.fs0_c00294{font-size:22.176000px;}
.fsa_c00294{font-size:39.600000px;}
.fs9_c00294{font-size:44.352000px;}
.fsc_c00294{font-size:46.728000px;}
.fs6_c00294{font-size:48.470598px;}
.fs8_c00294{font-size:49.896198px;}
.fs7_c00294{font-size:51.084000px;}
.fs2_c00294{font-size:51.321798px;}
.fs4_c00294{font-size:54.172998px;}
.fs3_c00294{font-size:68.112198px;}
.fsb_c00294{font-size:68.310000px;}
.fs1_c00294{font-size:69.696198px;}
.fsd_c00294{font-size:72.864000px;}
.fs5_c00294{font-size:78.408000px;}
.y0_c00294{bottom:0.000000px;}
.y1_c00294{bottom:76.500000px;}
.y1d_c00294{bottom:160.291935px;}
.y1c_c00294{bottom:192.362985px;}
.y1b_c00294{bottom:224.800335px;}
.y1a_c00294{bottom:257.227785px;}
.y19_c00294{bottom:352.030185px;}
.y18_c00294{bottom:384.106185px;}
.y17_c00294{bottom:415.830735px;}
.y16_c00294{bottom:447.901785px;}
.y15_c00294{bottom:469.647135px;}
.y14_c00294{bottom:479.621385px;}
.y13_c00294{bottom:479.624652px;}
.y12_c00294{bottom:511.702335px;}
.y11_c00294{bottom:543.773385px;}
.y10_c00294{bottom:575.497935px;}
.yf_c00294{bottom:606.861135px;}
.ye_c00294{bottom:638.932185px;}
.yd_c00294{bottom:671.720985px;}
.yc_c00294{bottom:690.258735px;}
.y2_c00294{bottom:730.883385px;}
.yb_c00294{bottom:734.808735px;}
.ya_c00294{bottom:766.879785px;}
.y9_c00294{bottom:798.960735px;}
.y8_c00294{bottom:832.818735px;}
.y7_c00294{bottom:864.181935px;}
.y6_c00294{bottom:896.257935px;}
.y4_c00294{bottom:928.323540px;}
.y5_c00294{bottom:928.328985px;}
.y3_c00294{bottom:1079.442585px;}
.h2_c00294{height:23.128875px;}
.h7_c00294{height:32.281418px;}
.h8_c00294{height:33.230868px;}
.h4_c00294{height:34.180317px;}
.h5_c00294{height:36.079217px;}
.h9_c00294{height:41.301563px;}
.ha_c00294{height:67.042529px;}
.h3_c00294{height:68.403007px;}
.hb_c00294{height:71.512031px;}
.h6_c00294{height:76.914879px;}
.h1_c00294{height:1110.000000px;}
.h0_c00294{height:1263.000000px;}
.w1_c00294{width:763.500000px;}
.w0_c00294{width:892.500000px;}
.x0_c00294{left:0.000000px;}
.x2_c00294{left:2.278035px;}
.x1_c00294{left:64.500000px;}
.x62_c00294{left:86.101137px;}
.x6_c00294{left:87.152369px;}
.x16_c00294{left:88.457535px;}
.x60_c00294{left:98.402085px;}
.x2e_c00294{left:106.079535px;}
.x24_c00294{left:108.564435px;}
.x57_c00294{left:110.321685px;}
.x6d_c00294{left:117.127935px;}
.x58_c00294{left:120.488985px;}
.x2f_c00294{left:122.830335px;}
.x63_c00294{left:129.933585px;}
.x7_c00294{left:131.284935px;}
.x43_c00294{left:141.006735px;}
.x30_c00294{left:142.640235px;}
.x8_c00294{left:152.936235px;}
.x64_c00294{left:154.153935px;}
.x74_c00294{left:155.336985px;}
.x4d_c00294{left:163.093635px;}
.x17_c00294{left:164.128185px;}
.x70_c00294{left:165.939885px;}
.x44_c00294{left:174.146985px;}
.x56_c00294{left:175.438935px;}
.x45_c00294{left:186.269535px;}
.x59_c00294{left:197.872335px;}
.x41_c00294{left:199.882035px;}
.x9_c00294{left:208.415835px;}
.x46_c00294{left:219.236535px;}
.x6e_c00294{left:229.349385px;}
.x18_c00294{left:230.631435px;}
.xa_c00294{left:241.323435px;}
.x54_c00294{left:252.094635px;}
.x71_c00294{left:254.327085px;}
.x42_c00294{left:263.162835px;}
.x6f_c00294{left:265.019085px;}
.x37_c00294{left:275.151735px;}
.x19_c00294{left:286.016985px;}
.x47_c00294{left:296.575335px;}
.x3d_c00294{left:307.767285px;}
.x31_c00294{left:319.172085px;}
.x25_c00294{left:329.438385px;}
.x73_c00294{left:331.878735px;}
.xb_c00294{left:340.907535px;}
.x5a_c00294{left:343.813185px;}
.x26_c00294{left:350.916435px;}
.x1a_c00294{left:352.861785px;}
.x48_c00294{left:363.558735px;}
.x68_c00294{left:370.280835px;}
.x27_c00294{left:374.235885px;}
.x72_c00294{left:384.239835px;}
.xc_c00294{left:385.338735px;}
.x3e_c00294{left:395.590185px;}
.x5b_c00294{left:406.188135px;}
.x49_c00294{left:407.336535px;}
.x28_c00294{left:409.450185px;}
.x1b_c00294{left:417.592935px;}
.x4e_c00294{left:428.374035px;}
.x32_c00294{left:429.453135px;}
.x55_c00294{left:439.224435px;}
.x38_c00294{left:440.407485px;}
.x29_c00294{left:450.856935px;}
.x61_c00294{left:453.643785px;}
.x65_c00294{left:454.995135px;}
.x6a_c00294{left:457.519635px;}
.x33_c00294{left:461.548935px;}
.x1c_c00294{left:472.983435px;}
.x39_c00294{left:474.042735px;}
.x1d_c00294{left:484.536735px;}
.x5c_c00294{left:487.071135px;}
.x34_c00294{left:493.441785px;}
.x3a_c00294{left:494.931735px;}
.x4a_c00294{left:505.569285px;}
.x1e_c00294{left:507.148335px;}
.xd_c00294{left:517.127535px;}
.x5d_c00294{left:520.567785px;}
.x4f_c00294{left:522.666585px;}
.x3b_c00294{left:527.859135px;}
.x1f_c00294{left:538.570935px;}
.x66_c00294{left:540.748935px;}
.x2a_c00294{left:549.371835px;}
.xe_c00294{left:550.861785px;}
.x50_c00294{left:560.959785px;}
.xf_c00294{left:572.250735px;}
.x5e_c00294{left:578.537235px;}
.x20_c00294{left:583.021935px;}
.x51_c00294{left:593.090235px;}
.x3f_c00294{left:594.114885px;}
.x75_c00294{left:604.589085px;}
.x10_c00294{left:605.747385px;}
.x3c_c00294{left:615.929535px;}
.x11_c00294{left:617.152185px;}
.x52_c00294{left:620.533035px;}
.x4b_c00294{left:626.354235px;}
.x40_c00294{left:627.458085px;}
.x21_c00294{left:629.705385px;}
.x5f_c00294{left:632.729835px;}
.x35_c00294{left:637.689735px;}
.x2b_c00294{left:640.347885px;}
.x12_c00294{left:644.238585px;}
.x4c_c00294{left:649.173735px;}
.x13_c00294{left:659.177685px;}
.x3_c00294{left:661.494285px;}
.x36_c00294{left:671.527935px;}
.x4_c00294{left:672.626835px;}
.x2c_c00294{left:682.120935px;}
.x6b_c00294{left:692.075385px;}
.x14_c00294{left:693.525735px;}
.x5_c00294{left:695.094885px;}
.x67_c00294{left:703.009935px;}
.x15_c00294{left:704.247435px;}
.x69_c00294{left:714.419685px;}
.x22_c00294{left:715.667085px;}
.x2d_c00294{left:717.736185px;}
.x76_c00294{left:725.289885px;}
.x23_c00294{left:726.383835px;}
.x53_c00294{left:737.051085px;}
.x6c_c00294{left:739.476585px;}
@media print{
.v0_c00294{vertical-align:0.000000pt;}
.ls11_c00294{letter-spacing:-2.266880pt;}
.lsc_c00294{letter-spacing:-2.168326pt;}
.lsf_c00294{letter-spacing:-2.125200pt;}
.lsa_c00294{letter-spacing:-1.802808pt;}
.ls5_c00294{letter-spacing:0.000000pt;}
.lsd_c00294{letter-spacing:0.068147pt;}
.ls4_c00294{letter-spacing:0.677037pt;}
.ls10_c00294{letter-spacing:0.718645pt;}
.ls9_c00294{letter-spacing:0.724840pt;}
.ls2_c00294{letter-spacing:0.985040pt;}
.ls12_c00294{letter-spacing:1.616952pt;}
.ls1_c00294{letter-spacing:1.707059pt;}
.ls0_c00294{letter-spacing:2.614382pt;}
.ls6_c00294{letter-spacing:3.097609pt;}
.ls3_c00294{letter-spacing:6.895328pt;}
.lsb_c00294{letter-spacing:43.084976pt;}
.lse_c00294{letter-spacing:44.352176pt;}
.ls7_c00294{letter-spacing:45.619376pt;}
.ls8_c00294{letter-spacing:48.153776pt;}
.ws0_c00294{word-spacing:-18.102426pt;}
.ws3_c00294{word-spacing:-16.212884pt;}
.ws1_c00294{word-spacing:-15.488044pt;}
.ws4_c00294{word-spacing:-13.685236pt;}
.ws7_c00294{word-spacing:-3.469092pt;}
.ws9_c00294{word-spacing:-3.160730pt;}
.ws5_c00294{word-spacing:-2.663882pt;}
.wsd_c00294{word-spacing:-2.539968pt;}
.wsc_c00294{word-spacing:-2.478026pt;}
.wsb_c00294{word-spacing:-1.734612pt;}
.ws2_c00294{word-spacing:-1.362900pt;}
.wsa_c00294{word-spacing:-1.053306pt;}
.ws11_c00294{word-spacing:0.000000pt;}
.ws8_c00294{word-spacing:0.619603pt;}
.wse_c00294{word-spacing:3.344611pt;}
.ws6_c00294{word-spacing:4.026787pt;}
.wsf_c00294{word-spacing:4.832339pt;}
.ws10_c00294{word-spacing:6.938521pt;}
._27_c00294{margin-left:-21.596065pt;}
._1e_c00294{margin-left:-13.257679pt;}
._26_c00294{margin-left:-12.141966pt;}
._24_c00294{margin-left:-8.672542pt;}
._14_c00294{margin-left:-7.310287pt;}
._19_c00294{margin-left:-4.795331pt;}
._1d_c00294{margin-left:-2.973569pt;}
._23_c00294{margin-left:-1.858521pt;}
._8_c00294{width:2.044308pt;}
._21_c00294{width:4.026782pt;}
._0_c00294{width:5.104871pt;}
._15_c00294{width:6.505048pt;}
._13_c00294{width:7.929954pt;}
._d_c00294{width:9.602472pt;}
._17_c00294{width:11.001173pt;}
._4_c00294{width:12.018776pt;}
._7_c00294{width:13.133922pt;}
._2_c00294{width:14.434914pt;}
._1a_c00294{width:15.588584pt;}
._1f_c00294{width:16.479320pt;}
._b_c00294{width:17.470405pt;}
._11_c00294{width:18.399685pt;}
._5_c00294{width:19.541231pt;}
._28_c00294{width:20.629615pt;}
._a_c00294{width:21.559423pt;}
._e_c00294{width:23.541721pt;}
._22_c00294{width:24.532933pt;}
._18_c00294{width:25.462213pt;}
._c_c00294{width:28.498326pt;}
._1b_c00294{width:29.991471pt;}
._6_c00294{width:31.981532pt;}
._9_c00294{width:33.391654pt;}
._10_c00294{width:34.321990pt;}
._1_c00294{width:35.571590pt;}
._1c_c00294{width:36.675120pt;}
._16_c00294{width:38.100534pt;}
._f_c00294{width:39.353654pt;}
._25_c00294{width:42.313025pt;}
._3_c00294{width:43.242579pt;}
._12_c00294{width:44.977763pt;}
._20_c00294{width:68.271340pt;}
.fs0_c00294{font-size:19.712000pt;}
.fsa_c00294{font-size:35.200000pt;}
.fs9_c00294{font-size:39.424000pt;}
.fsc_c00294{font-size:41.536000pt;}
.fs6_c00294{font-size:43.084976pt;}
.fs8_c00294{font-size:44.352176pt;}
.fs7_c00294{font-size:45.408000pt;}
.fs2_c00294{font-size:45.619376pt;}
.fs4_c00294{font-size:48.153776pt;}
.fs3_c00294{font-size:60.544176pt;}
.fsb_c00294{font-size:60.720000pt;}
.fs1_c00294{font-size:61.952176pt;}
.fsd_c00294{font-size:64.768000pt;}
.fs5_c00294{font-size:69.696000pt;}
.y0_c00294{bottom:0.000000pt;}
.y1_c00294{bottom:68.000000pt;}
.y1d_c00294{bottom:142.481720pt;}
.y1c_c00294{bottom:170.989320pt;}
.y1b_c00294{bottom:199.822520pt;}
.y1a_c00294{bottom:228.646920pt;}
.y19_c00294{bottom:312.915720pt;}
.y18_c00294{bottom:341.427720pt;}
.y17_c00294{bottom:369.627320pt;}
.y16_c00294{bottom:398.134920pt;}
.y15_c00294{bottom:417.464120pt;}
.y14_c00294{bottom:426.330120pt;}
.y13_c00294{bottom:426.333024pt;}
.y12_c00294{bottom:454.846520pt;}
.y11_c00294{bottom:483.354120pt;}
.y10_c00294{bottom:511.553720pt;}
.yf_c00294{bottom:539.432120pt;}
.ye_c00294{bottom:567.939720pt;}
.yd_c00294{bottom:597.085320pt;}
.yc_c00294{bottom:613.563320pt;}
.y2_c00294{bottom:649.674120pt;}
.yb_c00294{bottom:653.163320pt;}
.ya_c00294{bottom:681.670920pt;}
.y9_c00294{bottom:710.187320pt;}
.y8_c00294{bottom:740.283320pt;}
.y7_c00294{bottom:768.161720pt;}
.y6_c00294{bottom:796.673720pt;}
.y4_c00294{bottom:825.176480pt;}
.y5_c00294{bottom:825.181320pt;}
.y3_c00294{bottom:959.504520pt;}
.h2_c00294{height:20.559000pt;}
.h7_c00294{height:28.694594pt;}
.h8_c00294{height:29.538549pt;}
.h4_c00294{height:30.382504pt;}
.h5_c00294{height:32.070415pt;}
.h9_c00294{height:36.712500pt;}
.ha_c00294{height:59.593359pt;}
.h3_c00294{height:60.802673pt;}
.hb_c00294{height:63.566250pt;}
.h6_c00294{height:68.368781pt;}
.h1_c00294{height:986.666667pt;}
.h0_c00294{height:1122.666667pt;}
.w1_c00294{width:678.666667pt;}
.w0_c00294{width:793.333333pt;}
.x0_c00294{left:0.000000pt;}
.x2_c00294{left:2.024920pt;}
.x1_c00294{left:57.333333pt;}
.x62_c00294{left:76.534344pt;}
.x6_c00294{left:77.468772pt;}
.x16_c00294{left:78.628920pt;}
.x60_c00294{left:87.468520pt;}
.x2e_c00294{left:94.292920pt;}
.x24_c00294{left:96.501720pt;}
.x57_c00294{left:98.063720pt;}
.x6d_c00294{left:104.113720pt;}
.x58_c00294{left:107.101320pt;}
.x2f_c00294{left:109.182520pt;}
.x63_c00294{left:115.496520pt;}
.x7_c00294{left:116.697720pt;}
.x43_c00294{left:125.339320pt;}
.x30_c00294{left:126.791320pt;}
.x8_c00294{left:135.943320pt;}
.x64_c00294{left:137.025720pt;}
.x74_c00294{left:138.077320pt;}
.x4d_c00294{left:144.972120pt;}
.x17_c00294{left:145.891720pt;}
.x70_c00294{left:147.502120pt;}
.x44_c00294{left:154.797320pt;}
.x56_c00294{left:155.945720pt;}
.x45_c00294{left:165.572920pt;}
.x59_c00294{left:175.886520pt;}
.x41_c00294{left:177.672920pt;}
.x9_c00294{left:185.258520pt;}
.x46_c00294{left:194.876920pt;}
.x6e_c00294{left:203.866120pt;}
.x18_c00294{left:205.005720pt;}
.xa_c00294{left:214.509720pt;}
.x54_c00294{left:224.084120pt;}
.x71_c00294{left:226.068520pt;}
.x42_c00294{left:233.922520pt;}
.x6f_c00294{left:235.572520pt;}
.x37_c00294{left:244.579320pt;}
.x19_c00294{left:254.237320pt;}
.x47_c00294{left:263.622520pt;}
.x3d_c00294{left:273.570920pt;}
.x31_c00294{left:283.708520pt;}
.x25_c00294{left:292.834120pt;}
.x73_c00294{left:295.003320pt;}
.xb_c00294{left:303.028920pt;}
.x5a_c00294{left:305.611720pt;}
.x26_c00294{left:311.925720pt;}
.x1a_c00294{left:313.654920pt;}
.x48_c00294{left:323.163320pt;}
.x68_c00294{left:329.138520pt;}
.x27_c00294{left:332.654120pt;}
.x72_c00294{left:341.546520pt;}
.xc_c00294{left:342.523320pt;}
.x3e_c00294{left:351.635720pt;}
.x5b_c00294{left:361.056120pt;}
.x49_c00294{left:362.076920pt;}
.x28_c00294{left:363.955720pt;}
.x1b_c00294{left:371.193720pt;}
.x4e_c00294{left:380.776920pt;}
.x32_c00294{left:381.736120pt;}
.x55_c00294{left:390.421720pt;}
.x38_c00294{left:391.473320pt;}
.x29_c00294{left:400.761720pt;}
.x61_c00294{left:403.238920pt;}
.x65_c00294{left:404.440120pt;}
.x6a_c00294{left:406.684120pt;}
.x33_c00294{left:410.265720pt;}
.x1c_c00294{left:420.429720pt;}
.x39_c00294{left:421.371320pt;}
.x1d_c00294{left:430.699320pt;}
.x5c_c00294{left:432.952120pt;}
.x34_c00294{left:438.614920pt;}
.x3a_c00294{left:439.939320pt;}
.x4a_c00294{left:449.394920pt;}
.x1e_c00294{left:450.798520pt;}
.xd_c00294{left:459.668920pt;}
.x5d_c00294{left:462.726920pt;}
.x4f_c00294{left:464.592520pt;}
.x3b_c00294{left:469.208120pt;}
.x1f_c00294{left:478.729720pt;}
.x66_c00294{left:480.665720pt;}
.x2a_c00294{left:488.330520pt;}
.xe_c00294{left:489.654920pt;}
.x50_c00294{left:498.630920pt;}
.xf_c00294{left:508.667320pt;}
.x5e_c00294{left:514.255320pt;}
.x20_c00294{left:518.241720pt;}
.x51_c00294{left:527.191320pt;}
.x3f_c00294{left:528.102120pt;}
.x75_c00294{left:537.412520pt;}
.x10_c00294{left:538.442120pt;}
.x3c_c00294{left:547.492920pt;}
.x11_c00294{left:548.579720pt;}
.x52_c00294{left:551.584920pt;}
.x4b_c00294{left:556.759320pt;}
.x40_c00294{left:557.740520pt;}
.x21_c00294{left:559.738120pt;}
.x5f_c00294{left:562.426520pt;}
.x35_c00294{left:566.835320pt;}
.x2b_c00294{left:569.198120pt;}
.x12_c00294{left:572.656520pt;}
.x4c_c00294{left:577.043320pt;}
.x13_c00294{left:585.935720pt;}
.x3_c00294{left:587.994920pt;}
.x36_c00294{left:596.913720pt;}
.x4_c00294{left:597.890520pt;}
.x2c_c00294{left:606.329720pt;}
.x6b_c00294{left:615.178120pt;}
.x14_c00294{left:616.467320pt;}
.x5_c00294{left:617.862120pt;}
.x67_c00294{left:624.897720pt;}
.x15_c00294{left:625.997720pt;}
.x69_c00294{left:635.039720pt;}
.x22_c00294{left:636.148520pt;}
.x2d_c00294{left:637.987720pt;}
.x76_c00294{left:644.702120pt;}
.x23_c00294{left:645.674520pt;}
.x53_c00294{left:655.156520pt;}
.x6c_c00294{left:657.312520pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_98a3047a422a5e26872b5d99.woff2')format("woff");}.ff1_c00295{font-family:ff1_c00295;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00295;src:url('chunks/assets/font_1c4fa5a6ccf3b74319d84865.woff2')format("woff");}.ff2_c00295{font-family:ff2_c00295;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00295;src:url('chunks/assets/font_d54697c50f6536b0e45adff4.woff2')format("woff");}.ff3_c00295{font-family:ff3_c00295;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00295;src:url('chunks/assets/font_253c6a440ddce8b47b654ec8.woff2')format("woff");}.ff4_c00295{font-family:ff4_c00295;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mb6_c00295{transform:matrix(0.043751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043751,0.000000,0.000000,0.250000,0,0);}
.m5e_c00295{transform:matrix(0.097432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097432,0.000000,0.000000,0.250000,0,0);}
.m18_c00295{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.mac_c00295{transform:matrix(0.105419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105419,0.000000,0.000000,0.250000,0,0);}
.m2_c00295{transform:matrix(0.117555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117555,0.000000,0.000000,0.250000,0,0);}
.m68_c00295{transform:matrix(0.135505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135505,0.000000,0.000000,0.250000,0,0);}
.m3_c00295{transform:matrix(0.136578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136578,0.000000,0.000000,0.250000,0,0);}
.m3d_c00295{transform:matrix(0.159723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159723,0.000000,0.000000,0.250000,0,0);}
.mb5_c00295{transform:matrix(0.163889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163889,0.000000,0.000000,0.250000,0,0);}
.m19_c00295{transform:matrix(0.171429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171429,0.000000,0.000000,0.250000,0,0);}
.m9_c00295{transform:matrix(0.177982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177982,0.000000,0.000000,0.250000,0,0);}
.m3c_c00295{transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);}
.mb2_c00295{transform:matrix(0.185582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185582,0.000000,0.000000,0.250000,0,0);}
.mb7_c00295{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m17_c00295{transform:matrix(0.204629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204629,0.000000,0.000000,0.250000,0,0);}
.mdb_c00295{transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);}
.m3b_c00295{transform:matrix(0.207176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207176,0.000000,0.000000,0.250000,0,0);}
.mcc_c00295{transform:matrix(0.210317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210317,0.000000,0.000000,0.250000,0,0);}
.mdc_c00295{transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);}
.m6c_c00295{transform:matrix(0.216349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216349,0.000000,0.000000,0.250000,0,0);}
.m1a_c00295{transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);}
.mb4_c00295{transform:matrix(0.227484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227484,0.000000,0.000000,0.250000,0,0);}
.mbf_c00295{transform:matrix(0.232431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232431,0.000000,0.000000,0.250000,0,0);}
.md8_c00295{transform:matrix(0.233658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233658,0.000000,0.000000,0.250000,0,0);}
.m4b_c00295{transform:matrix(0.237618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237618,0.000000,0.000000,0.250000,0,0);}
.ma7_c00295{transform:matrix(0.238033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238033,0.000000,0.000000,0.250000,0,0);}
.m42_c00295{transform:matrix(0.241578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241578,0.000000,0.000000,0.250000,0,0);}
.m0_c00295{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m36_c00295{transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);}
.m7d_c00295{transform:matrix(0.251508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251508,0.000000,0.000000,0.250000,0,0);}
.m9e_c00295{transform:matrix(0.253009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253009,0.000000,0.000000,0.250000,0,0);}
.m60_c00295{transform:matrix(0.254380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254380,0.000000,0.000000,0.250000,0,0);}
.me_c00295{transform:matrix(0.254544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254544,0.000000,0.000000,0.250000,0,0);}
.ma8_c00295{transform:matrix(0.254604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254604,0.000000,0.000000,0.250000,0,0);}
.m43_c00295{transform:matrix(0.254683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254683,0.000000,0.000000,0.250000,0,0);}
.m3e_c00295{transform:matrix(0.255999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255999,0.000000,0.000000,0.250000,0,0);}
.m9c_c00295{transform:matrix(0.256147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256147,0.000000,0.000000,0.250000,0,0);}
.me4_c00295{transform:matrix(0.257110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257110,0.000000,0.000000,0.250000,0,0);}
.mda_c00295{transform:matrix(0.257874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257874,0.000000,0.000000,0.250000,0,0);}
.md_c00295{transform:matrix(0.258346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258346,0.000000,0.000000,0.250000,0,0);}
.m65_c00295{transform:matrix(0.258484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258484,0.000000,0.000000,0.250000,0,0);}
.ma9_c00295{transform:matrix(0.259071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259071,0.000000,0.000000,0.250000,0,0);}
.m82_c00295{transform:matrix(0.259414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259414,0.000000,0.000000,0.250000,0,0);}
.m4f_c00295{transform:matrix(0.259580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259580,0.000000,0.000000,0.250000,0,0);}
.m2f_c00295{transform:matrix(0.259785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259785,0.000000,0.000000,0.250000,0,0);}
.m2e_c00295{transform:matrix(0.260490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260490,0.000000,0.000000,0.250000,0,0);}
.mdf_c00295{transform:matrix(0.260892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260892,0.000000,0.000000,0.250000,0,0);}
.m8d_c00295{transform:matrix(0.264212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264212,0.000000,0.000000,0.250000,0,0);}
.m9a_c00295{transform:matrix(0.264517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264517,0.000000,0.000000,0.250000,0,0);}
.m10_c00295{transform:matrix(0.264657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264657,0.000000,0.000000,0.250000,0,0);}
.ma1_c00295{transform:matrix(0.265701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265701,0.000000,0.000000,0.250000,0,0);}
.m6f_c00295{transform:matrix(0.266075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266075,0.000000,0.000000,0.250000,0,0);}
.m9b_c00295{transform:matrix(0.266356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266356,0.000000,0.000000,0.250000,0,0);}
.m57_c00295{transform:matrix(0.266440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266440,0.000000,0.000000,0.250000,0,0);}
.m4d_c00295{transform:matrix(0.266632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266632,0.000000,0.000000,0.250000,0,0);}
.m86_c00295{transform:matrix(0.267900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267900,0.000000,0.000000,0.250000,0,0);}
.m41_c00295{transform:matrix(0.268416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268416,0.000000,0.000000,0.250000,0,0);}
.m23_c00295{transform:matrix(0.269016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269016,0.000000,0.000000,0.250000,0,0);}
.m78_c00295{transform:matrix(0.269061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269061,0.000000,0.000000,0.250000,0,0);}
.mc2_c00295{transform:matrix(0.269387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269387,0.000000,0.000000,0.250000,0,0);}
.mc6_c00295{transform:matrix(0.270153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270153,0.000000,0.000000,0.250000,0,0);}
.m24_c00295{transform:matrix(0.270452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270452,0.000000,0.000000,0.250000,0,0);}
.m1d_c00295{transform:matrix(0.270827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270827,0.000000,0.000000,0.250000,0,0);}
.m90_c00295{transform:matrix(0.270956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270956,0.000000,0.000000,0.250000,0,0);}
.m70_c00295{transform:matrix(0.271394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271394,0.000000,0.000000,0.250000,0,0);}
.md7_c00295{transform:matrix(0.272304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272304,0.000000,0.000000,0.250000,0,0);}
.ma0_c00295{transform:matrix(0.272997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272997,0.000000,0.000000,0.250000,0,0);}
.m99_c00295{transform:matrix(0.273774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273774,0.000000,0.000000,0.250000,0,0);}
.m84_c00295{transform:matrix(0.273819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273819,0.000000,0.000000,0.250000,0,0);}
.m97_c00295{transform:matrix(0.274094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274094,0.000000,0.000000,0.250000,0,0);}
.m50_c00295{transform:matrix(0.274834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274834,0.000000,0.000000,0.250000,0,0);}
.m48_c00295{transform:matrix(0.275158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275158,0.000000,0.000000,0.250000,0,0);}
.me1_c00295{transform:matrix(0.275579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275579,0.000000,0.000000,0.250000,0,0);}
.m8b_c00295{transform:matrix(0.275636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275636,0.000000,0.000000,0.250000,0,0);}
.m95_c00295{transform:matrix(0.276294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276294,0.000000,0.000000,0.250000,0,0);}
.m26_c00295{transform:matrix(0.276535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276535,0.000000,0.000000,0.250000,0,0);}
.mc_c00295{transform:matrix(0.277625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277625,0.000000,0.000000,0.250000,0,0);}
.mb8_c00295{transform:matrix(0.277957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277957,0.000000,0.000000,0.250000,0,0);}
.md9_c00295{transform:matrix(0.278884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278884,0.000000,0.000000,0.250000,0,0);}
.m5b_c00295{transform:matrix(0.278945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278945,0.000000,0.000000,0.250000,0,0);}
.m2b_c00295{transform:matrix(0.279759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279759,0.000000,0.000000,0.250000,0,0);}
.m77_c00295{transform:matrix(0.279764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279764,0.000000,0.000000,0.250000,0,0);}
.m79_c00295{transform:matrix(0.279816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279816,0.000000,0.000000,0.250000,0,0);}
.m7c_c00295{transform:matrix(0.280330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280330,0.000000,0.000000,0.250000,0,0);}
.m7a_c00295{transform:matrix(0.280540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280540,0.000000,0.000000,0.250000,0,0);}
.m40_c00295{transform:matrix(0.280680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280680,0.000000,0.000000,0.250000,0,0);}
.m5d_c00295{transform:matrix(0.280741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280741,0.000000,0.000000,0.250000,0,0);}
.m31_c00295{transform:matrix(0.280889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280889,0.000000,0.000000,0.250000,0,0);}
.m5a_c00295{transform:matrix(0.281958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281958,0.000000,0.000000,0.250000,0,0);}
.m45_c00295{transform:matrix(0.282883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282883,0.000000,0.000000,0.250000,0,0);}
.m1_c00295{transform:matrix(0.283008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283008,0.000000,0.000000,0.250000,0,0);}
.m54_c00295{transform:matrix(0.283447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283447,0.000000,0.000000,0.250000,0,0);}
.mb9_c00295{transform:matrix(0.284060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284060,0.000000,0.000000,0.250000,0,0);}
.m28_c00295{transform:matrix(0.284510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284510,0.000000,0.000000,0.250000,0,0);}
.m13_c00295{transform:matrix(0.284933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284933,0.000000,0.000000,0.250000,0,0);}
.m7e_c00295{transform:matrix(0.285135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285135,0.000000,0.000000,0.250000,0,0);}
.m8f_c00295{transform:matrix(0.285536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285536,0.000000,0.000000,0.250000,0,0);}
.m7f_c00295{transform:matrix(0.285678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285678,0.000000,0.000000,0.250000,0,0);}
.m69_c00295{transform:matrix(0.285758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285758,0.000000,0.000000,0.250000,0,0);}
.m11_c00295{transform:matrix(0.285821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285821,0.000000,0.000000,0.250000,0,0);}
.m1c_c00295{transform:matrix(0.285844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285844,0.000000,0.000000,0.250000,0,0);}
.m61_c00295{transform:matrix(0.286175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286175,0.000000,0.000000,0.250000,0,0);}
.mae_c00295{transform:matrix(0.286494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286494,0.000000,0.000000,0.250000,0,0);}
.m25_c00295{transform:matrix(0.286532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286532,0.000000,0.000000,0.250000,0,0);}
.m56_c00295{transform:matrix(0.288247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288247,0.000000,0.000000,0.250000,0,0);}
.m6e_c00295{transform:matrix(0.288338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288338,0.000000,0.000000,0.250000,0,0);}
.m9d_c00295{transform:matrix(0.289144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289144,0.000000,0.000000,0.250000,0,0);}
.ma_c00295{transform:matrix(0.289399,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289399,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289399,0.000000,0.000000,0.250000,0,0);}
.m73_c00295{transform:matrix(0.289572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289572,0.000000,0.000000,0.250000,0,0);}
.mc3_c00295{transform:matrix(0.289783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289783,0.000000,0.000000,0.250000,0,0);}
.m94_c00295{transform:matrix(0.289878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289878,0.000000,0.000000,0.250000,0,0);}
.mc7_c00295{transform:matrix(0.290189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290189,0.000000,0.000000,0.250000,0,0);}
.m74_c00295{transform:matrix(0.290318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290318,0.000000,0.000000,0.250000,0,0);}
.m47_c00295{transform:matrix(0.291254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291254,0.000000,0.000000,0.250000,0,0);}
.m93_c00295{transform:matrix(0.292025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292025,0.000000,0.000000,0.250000,0,0);}
.m6d_c00295{transform:matrix(0.292090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292090,0.000000,0.000000,0.250000,0,0);}
.mcf_c00295{transform:matrix(0.292272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292272,0.000000,0.000000,0.250000,0,0);}
.mb1_c00295{transform:matrix(0.292349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292349,0.000000,0.000000,0.250000,0,0);}
.md5_c00295{transform:matrix(0.292468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292468,0.000000,0.000000,0.250000,0,0);}
.m6_c00295{transform:matrix(0.293072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293072,0.000000,0.000000,0.250000,0,0);}
.mb3_c00295{transform:matrix(0.293738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293738,0.000000,0.000000,0.250000,0,0);}
.m32_c00295{transform:matrix(0.294681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294681,0.000000,0.000000,0.250000,0,0);}
.m33_c00295{transform:matrix(0.295005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295005,0.000000,0.000000,0.250000,0,0);}
.mc5_c00295{transform:matrix(0.295246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295246,0.000000,0.000000,0.250000,0,0);}
.m39_c00295{transform:matrix(0.295785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295785,0.000000,0.000000,0.250000,0,0);}
.me2_c00295{transform:matrix(0.296716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296716,0.000000,0.000000,0.250000,0,0);}
.mba_c00295{transform:matrix(0.297638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297638,0.000000,0.000000,0.250000,0,0);}
.m64_c00295{transform:matrix(0.297792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297792,0.000000,0.000000,0.250000,0,0);}
.m4_c00295{transform:matrix(0.297951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297951,0.000000,0.000000,0.250000,0,0);}
.mbc_c00295{transform:matrix(0.298163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298163,0.000000,0.000000,0.250000,0,0);}
.m8a_c00295{transform:matrix(0.298478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298478,0.000000,0.000000,0.250000,0,0);}
.m59_c00295{transform:matrix(0.298897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298897,0.000000,0.000000,0.250000,0,0);}
.m34_c00295{transform:matrix(0.299123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299123,0.000000,0.000000,0.250000,0,0);}
.m5_c00295{transform:matrix(0.299139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299139,0.000000,0.000000,0.250000,0,0);}
.mf_c00295{transform:matrix(0.300138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300138,0.000000,0.000000,0.250000,0,0);}
.m2a_c00295{transform:matrix(0.300746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300746,0.000000,0.000000,0.250000,0,0);}
.md6_c00295{transform:matrix(0.302111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302111,0.000000,0.000000,0.250000,0,0);}
.m37_c00295{transform:matrix(0.302468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302468,0.000000,0.000000,0.250000,0,0);}
.m15_c00295{transform:matrix(0.303273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303273,0.000000,0.000000,0.250000,0,0);}
.maf_c00295{transform:matrix(0.303520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303520,0.000000,0.000000,0.250000,0,0);}
.m75_c00295{transform:matrix(0.305149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305149,0.000000,0.000000,0.250000,0,0);}
.m8c_c00295{transform:matrix(0.305595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305595,0.000000,0.000000,0.250000,0,0);}
.mb0_c00295{transform:matrix(0.307205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307205,0.000000,0.000000,0.250000,0,0);}
.m53_c00295{transform:matrix(0.308010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308010,0.000000,0.000000,0.250000,0,0);}
.m6b_c00295{transform:matrix(0.308942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308942,0.000000,0.000000,0.250000,0,0);}
.mc0_c00295{transform:matrix(0.309109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309109,0.000000,0.000000,0.250000,0,0);}
.m22_c00295{transform:matrix(0.309203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309203,0.000000,0.000000,0.250000,0,0);}
.m80_c00295{transform:matrix(0.309500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309500,0.000000,0.000000,0.250000,0,0);}
.mde_c00295{transform:matrix(0.310794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310794,0.000000,0.000000,0.250000,0,0);}
.m89_c00295{transform:matrix(0.310961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310961,0.000000,0.000000,0.250000,0,0);}
.m44_c00295{transform:matrix(0.310987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310987,0.000000,0.000000,0.250000,0,0);}
.mcd_c00295{transform:matrix(0.311701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311701,0.000000,0.000000,0.250000,0,0);}
.m6a_c00295{transform:matrix(0.311760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311760,0.000000,0.000000,0.250000,0,0);}
.m55_c00295{transform:matrix(0.311844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311844,0.000000,0.000000,0.250000,0,0);}
.m98_c00295{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);}
.mab_c00295{transform:matrix(0.312181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312181,0.000000,0.000000,0.250000,0,0);}
.md1_c00295{transform:matrix(0.312851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312851,0.000000,0.000000,0.250000,0,0);}
.m67_c00295{transform:matrix(0.312867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312867,0.000000,0.000000,0.250000,0,0);}
.md3_c00295{transform:matrix(0.314356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314356,0.000000,0.000000,0.250000,0,0);}
.m5c_c00295{transform:matrix(0.314362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314362,0.000000,0.000000,0.250000,0,0);}
.maa_c00295{transform:matrix(0.315331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315331,0.000000,0.000000,0.250000,0,0);}
.m8e_c00295{transform:matrix(0.315888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315888,0.000000,0.000000,0.250000,0,0);}
.m14_c00295{transform:matrix(0.316563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316563,0.000000,0.000000,0.250000,0,0);}
.m21_c00295{transform:matrix(0.317088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317088,0.000000,0.000000,0.250000,0,0);}
.mce_c00295{transform:matrix(0.317395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317395,0.000000,0.000000,0.250000,0,0);}
.mb_c00295{transform:matrix(0.317856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317856,0.000000,0.000000,0.250000,0,0);}
.md0_c00295{transform:matrix(0.319782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319782,0.000000,0.000000,0.250000,0,0);}
.me3_c00295{transform:matrix(0.320902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320902,0.000000,0.000000,0.250000,0,0);}
.m27_c00295{transform:matrix(0.322894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322894,0.000000,0.000000,0.250000,0,0);}
.m20_c00295{transform:matrix(0.323532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323532,0.000000,0.000000,0.250000,0,0);}
.m4e_c00295{transform:matrix(0.324486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324486,0.000000,0.000000,0.250000,0,0);}
.m92_c00295{transform:matrix(0.326496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326496,0.000000,0.000000,0.250000,0,0);}
.m7_c00295{transform:matrix(0.327879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327879,0.000000,0.000000,0.250000,0,0);}
.mbb_c00295{transform:matrix(0.328629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328629,0.000000,0.000000,0.250000,0,0);}
.m58_c00295{transform:matrix(0.328703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328703,0.000000,0.000000,0.250000,0,0);}
.m62_c00295{transform:matrix(0.328829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328829,0.000000,0.000000,0.250000,0,0);}
.md4_c00295{transform:matrix(0.329209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329209,0.000000,0.000000,0.250000,0,0);}
.m9f_c00295{transform:matrix(0.329975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329975,0.000000,0.000000,0.250000,0,0);}
.ma5_c00295{transform:matrix(0.330281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330281,0.000000,0.000000,0.250000,0,0);}
.m7b_c00295{transform:matrix(0.331098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331098,0.000000,0.000000,0.250000,0,0);}
.mdd_c00295{transform:matrix(0.331864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331864,0.000000,0.000000,0.250000,0,0);}
.m38_c00295{transform:matrix(0.332745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332745,0.000000,0.000000,0.250000,0,0);}
.m3f_c00295{transform:matrix(0.335269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335269,0.000000,0.000000,0.250000,0,0);}
.m63_c00295{transform:matrix(0.335894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335894,0.000000,0.000000,0.250000,0,0);}
.m1f_c00295{transform:matrix(0.336094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336094,0.000000,0.000000,0.250000,0,0);}
.mbe_c00295{transform:matrix(0.336513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336513,0.000000,0.000000,0.250000,0,0);}
.m66_c00295{transform:matrix(0.336648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336648,0.000000,0.000000,0.250000,0,0);}
.m16_c00295{transform:matrix(0.338308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338308,0.000000,0.000000,0.250000,0,0);}
.m1e_c00295{transform:matrix(0.340192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340192,0.000000,0.000000,0.250000,0,0);}
.m3a_c00295{transform:matrix(0.341064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341064,0.000000,0.000000,0.250000,0,0);}
.m91_c00295{transform:matrix(0.341106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341106,0.000000,0.000000,0.250000,0,0);}
.m5f_c00295{transform:matrix(0.341209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341209,0.000000,0.000000,0.250000,0,0);}
.m71_c00295{transform:matrix(0.342197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342197,0.000000,0.000000,0.250000,0,0);}
.m81_c00295{transform:matrix(0.342744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342744,0.000000,0.000000,0.250000,0,0);}
.m12_c00295{transform:matrix(0.344258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344258,0.000000,0.000000,0.250000,0,0);}
.m29_c00295{transform:matrix(0.344759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344759,0.000000,0.000000,0.250000,0,0);}
.mbd_c00295{transform:matrix(0.347321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347321,0.000000,0.000000,0.250000,0,0);}
.m30_c00295{transform:matrix(0.348874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348874,0.000000,0.000000,0.250000,0,0);}
.mc9_c00295{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);}
.me5_c00295{transform:matrix(0.349340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349340,0.000000,0.000000,0.250000,0,0);}
.mad_c00295{transform:matrix(0.350049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350049,0.000000,0.000000,0.250000,0,0);}
.m2c_c00295{transform:matrix(0.352724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352724,0.000000,0.000000,0.250000,0,0);}
.m76_c00295{transform:matrix(0.353088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353088,0.000000,0.000000,0.250000,0,0);}
.m49_c00295{transform:matrix(0.353714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353714,0.000000,0.000000,0.250000,0,0);}
.m8_c00295{transform:matrix(0.354354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354354,0.000000,0.000000,0.250000,0,0);}
.m4a_c00295{transform:matrix(0.356927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356927,0.000000,0.000000,0.250000,0,0);}
.mcb_c00295{transform:matrix(0.357701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357701,0.000000,0.000000,0.250000,0,0);}
.mc8_c00295{transform:matrix(0.358730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358730,0.000000,0.000000,0.250000,0,0);}
.mc1_c00295{transform:matrix(0.359336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359336,0.000000,0.000000,0.250000,0,0);}
.m51_c00295{transform:matrix(0.361584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361584,0.000000,0.000000,0.250000,0,0);}
.m52_c00295{transform:matrix(0.362660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362660,0.000000,0.000000,0.250000,0,0);}
.ma4_c00295{transform:matrix(0.365498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365498,0.000000,0.000000,0.250000,0,0);}
.ma2_c00295{transform:matrix(0.369510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369510,0.000000,0.000000,0.250000,0,0);}
.m46_c00295{transform:matrix(0.370188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370188,0.000000,0.000000,0.250000,0,0);}
.m2d_c00295{transform:matrix(0.370519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370519,0.000000,0.000000,0.250000,0,0);}
.m96_c00295{transform:matrix(0.372002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372002,0.000000,0.000000,0.250000,0,0);}
.m87_c00295{transform:matrix(0.374767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374767,0.000000,0.000000,0.250000,0,0);}
.ma3_c00295{transform:matrix(0.376176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376176,0.000000,0.000000,0.250000,0,0);}
.md2_c00295{transform:matrix(0.376875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376875,0.000000,0.000000,0.250000,0,0);}
.mca_c00295{transform:matrix(0.387012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387012,0.000000,0.000000,0.250000,0,0);}
.m35_c00295{transform:matrix(0.389789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389789,0.000000,0.000000,0.250000,0,0);}
.m88_c00295{transform:matrix(0.395547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395547,0.000000,0.000000,0.250000,0,0);}
.mc4_c00295{transform:matrix(0.402760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402760,0.000000,0.000000,0.250000,0,0);}
.me0_c00295{transform:matrix(0.405617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405617,0.000000,0.000000,0.250000,0,0);}
.m72_c00295{transform:matrix(0.412936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412936,0.000000,0.000000,0.250000,0,0);}
.m1b_c00295{transform:matrix(0.413327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413327,0.000000,0.000000,0.250000,0,0);}
.m83_c00295{transform:matrix(0.421168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421168,0.000000,0.000000,0.250000,0,0);}
.m85_c00295{transform:matrix(0.428819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428819,0.000000,0.000000,0.250000,0,0);}
.ma6_c00295{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);}
.m4c_c00295{transform:matrix(0.452642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452642,0.000000,0.000000,0.250000,0,0);}
.v0_c00295{vertical-align:0.000000px;}
.ls10_c00295{letter-spacing:-2.668050px;}
.ls22_c00295{letter-spacing:-2.550240px;}
.ls19_c00295{letter-spacing:-2.469852px;}
.ls14_c00295{letter-spacing:-2.424114px;}
.lsc_c00295{letter-spacing:-2.256408px;}
.ls9_c00295{letter-spacing:-1.940400px;}
.ls1b_c00295{letter-spacing:-1.730421px;}
.lsa_c00295{letter-spacing:-1.392930px;}
.ls24_c00295{letter-spacing:-1.295910px;}
.lsd_c00295{letter-spacing:-1.275120px;}
.ls20_c00295{letter-spacing:-0.487872px;}
.ls1c_c00295{letter-spacing:-0.274428px;}
.ls7_c00295{letter-spacing:0.000000px;}
.ls17_c00295{letter-spacing:0.617463px;}
.ls2_c00295{letter-spacing:0.777546px;}
.ls1e_c00295{letter-spacing:0.815661px;}
.lse_c00295{letter-spacing:1.524600px;}
.ls8_c00295{letter-spacing:1.564200px;}
.ls6_c00295{letter-spacing:1.707552px;}
.ls12_c00295{letter-spacing:1.751116px;}
.ls16_c00295{letter-spacing:1.928619px;}
.ls1f_c00295{letter-spacing:2.241162px;}
.ls4_c00295{letter-spacing:2.424114px;}
.ls1_c00295{letter-spacing:2.431737px;}
.ls3_c00295{letter-spacing:2.866248px;}
.ls18_c00295{letter-spacing:3.232152px;}
.ls1d_c00295{letter-spacing:3.524400px;}
.ls21_c00295{letter-spacing:3.544695px;}
.ls1a_c00295{letter-spacing:3.567564px;}
.lsf_c00295{letter-spacing:3.643200px;}
.lsb_c00295{letter-spacing:3.811500px;}
.ls13_c00295{letter-spacing:3.979810px;}
.ls0_c00295{letter-spacing:6.250860px;}
.ls5_c00295{letter-spacing:11.053350px;}
.ls11_c00295{letter-spacing:49.896198px;}
.ls15_c00295{letter-spacing:51.321798px;}
.ls23_c00295{letter-spacing:57.024198px;}
.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;}
}
.ws5_c00295{word-spacing:-22.289652px;}
.ws2_c00295{word-spacing:-21.650166px;}
.ws3_c00295{word-spacing:-20.986119px;}
.wsb_c00295{word-spacing:-20.765052px;}
.ws4_c00295{word-spacing:-19.835046px;}
.ws0_c00295{word-spacing:-19.057500px;}
.wsd_c00295{word-spacing:-17.761590px;}
.ws1_c00295{word-spacing:-2.744280px;}
.wsa_c00295{word-spacing:-1.524600px;}
.ws8_c00295{word-spacing:-0.914760px;}
.wse_c00295{word-spacing:0.000000px;}
.ws6_c00295{word-spacing:0.837540px;}
.wsc_c00295{word-spacing:1.067220px;}
.ws7_c00295{word-spacing:1.905750px;}
.ws9_c00295{word-spacing:2.286900px;}
._2_c00295{margin-left:-11.434500px;}
._19_c00295{margin-left:-7.240860px;}
._17_c00295{margin-left:-5.793480px;}
._1d_c00295{margin-left:-4.599949px;}
._1b_c00295{margin-left:-1.295910px;}
._4_c00295{width:2.516580px;}
._5_c00295{width:3.963960px;}
._d_c00295{width:6.022170px;}
._6_c00295{width:7.089390px;}
._3_c00295{width:8.232840px;}
._1f_c00295{width:9.246600px;}
._7_c00295{width:10.443510px;}
._1_c00295{width:11.739420px;}
._15_c00295{width:15.017310px;}
._1c_c00295{width:17.075520px;}
._1e_c00295{width:18.550100px;}
._a_c00295{width:21.420630px;}
._e_c00295{width:23.783760px;}
._18_c00295{width:25.079670px;}
._0_c00295{width:27.365580px;}
._11_c00295{width:28.997100px;}
._14_c00295{width:30.949380px;}
._12_c00295{width:32.115699px;}
._10_c00295{width:33.523380px;}
._1a_c00295{width:35.441010px;}
._13_c00295{width:36.971550px;}
._b_c00295{width:38.391210px;}
._9_c00295{width:39.976101px;}
._c_c00295{width:42.296760px;}
._8_c00295{width:46.648800px;}
._16_c00295{width:47.812050px;}
._f_c00295{width:49.237650px;}
._20_c00295{width:51.760170px;}
.fc0_c00295{color:transparent;}
.fs4_c00295{font-size:22.572000px;}
.fs0_c00295{font-size:31.284000px;}
.fs6_c00295{font-size:36.432000px;}
.fs2_c00295{font-size:39.798000px;}
.fs8_c00295{font-size:49.896198px;}
.fsb_c00295{font-size:51.321798px;}
.fs1_c00295{font-size:55.440000px;}
.fse_c00295{font-size:57.024198px;}
.fs3_c00295{font-size:60.192000px;}
.fsa_c00295{font-size:66.330000px;}
.fsd_c00295{font-size:69.696198px;}
.fsc_c00295{font-size:70.488000px;}
.fs7_c00295{font-size:72.864000px;}
.fs5_c00295{font-size:76.230000px;}
.fs9_c00295{font-size:79.596198px;}
.y0_c00295{bottom:0.000000px;}
.y1_c00295{bottom:76.500000px;}
.y1f_c00295{bottom:135.700335px;}
.y1e_c00295{bottom:166.345785px;}
.y1d_c00295{bottom:201.985785px;}
.y1c_c00295{bottom:236.556585px;}
.y1b_c00295{bottom:269.706735px;}
.y1a_c00295{bottom:301.782735px;}
.y19_c00295{bottom:334.215135px;}
.y18_c00295{bottom:366.642585px;}
.y17_c00295{bottom:398.723535px;}
.y16_c00295{bottom:398.726505px;}
.y15_c00295{bottom:430.438185px;}
.y14_c00295{bottom:494.233785px;}
.y13_c00295{bottom:528.096735px;}
.y12_c00295{bottom:561.954735px;}
.y11_c00295{bottom:596.169135px;}
.y10_c00295{bottom:629.309385px;}
.yf_c00295{bottom:662.098185px;}
.ye_c00295{bottom:694.179135px;}
.yd_c00295{bottom:726.611535px;}
.yc_c00295{bottom:726.619455px;}
.yb_c00295{bottom:758.331135px;}
.ya_c00295{bottom:790.407135px;}
.y9_c00295{bottom:823.195935px;}
.y8_c00295{bottom:855.266985px;}
.y7_c00295{bottom:888.055785px;}
.y6_c00295{bottom:921.205935px;}
.y5_c00295{bottom:1051.286985px;}
.y4_c00295{bottom:1071.601785px;}
.y3_c00295{bottom:1077.304185px;}
.y2_c00295{bottom:1086.926985px;}
.h7_c00295{height:23.541891px;}
.h2_c00295{height:30.688260px;}
.h3_c00295{height:30.703535px;}
.hb_c00295{height:33.230868px;}
.hd_c00295{height:34.180317px;}
.h10_c00295{height:37.978116px;}
.h9_c00295{height:37.997438px;}
.h5_c00295{height:39.059561px;}
.h4_c00295{height:54.411328px;}
.h6_c00295{height:62.778375px;}
.hf_c00295{height:68.403007px;}
.ha_c00295{height:71.512031px;}
.he_c00295{height:73.516781px;}
.h8_c00295{height:74.815576px;}
.hc_c00295{height:78.119315px;}
.h1_c00295{height:1110.000000px;}
.h0_c00295{height:1263.000000px;}
.w1_c00295{width:763.500000px;}
.w0_c00295{width:892.500000px;}
.x0_c00295{left:0.000000px;}
.x1_c00295{left:64.500000px;}
.x59_c00295{left:89.640600px;}
.x4b_c00295{left:90.661290px;}
.x24_c00295{left:92.199750px;}
.x9_c00295{left:93.684750px;}
.x74_c00295{left:100.723650px;}
.x50_c00295{left:102.312600px;}
.x3b_c00295{left:104.040150px;}
.x6a_c00295{left:112.880850px;}
.x6d_c00295{left:122.424450px;}
.x5d_c00295{left:123.696600px;}
.x17_c00295{left:125.340000px;}
.x4c_c00295{left:135.027150px;}
.x25_c00295{left:136.338900px;}
.x67_c00295{left:145.397400px;}
.xa_c00295{left:146.922000px;}
.x3c_c00295{left:157.193250px;}
.x26_c00295{left:168.241650px;}
.x3d_c00295{left:179.106900px;}
.x32_c00295{left:182.373900px;}
.x44_c00295{left:189.110850px;}
.x51_c00295{left:190.303800px;}
.x18_c00295{left:191.402700px;}
.x78_c00295{left:200.119650px;}
.x19_c00295{left:201.985800px;}
.x3e_c00295{left:211.524450px;}
.x66_c00295{left:212.791650px;}
.x72_c00295{left:223.300500px;}
.x27_c00295{left:224.547900px;}
.xb_c00295{left:234.640950px;}
.x6e_c00295{left:244.377600px;}
.xc_c00295{left:245.917050px;}
.x33_c00295{left:255.787350px;}
.x28_c00295{left:256.925850px;}
.x52_c00295{left:258.633600px;}
.x4d_c00295{left:266.410050px;}
.x3f_c00295{left:267.612900px;}
.x1a_c00295{left:278.384100px;}
.x34_c00295{left:280.309650px;}
.x45_c00295{left:290.135400px;}
.x4e_c00295{left:299.208750px;}
.x40_c00295{left:300.466050px;}
.x1b_c00295{left:310.643250px;}
.x46_c00295{left:312.153000px;}
.x4f_c00295{left:322.458900px;}
.xd_c00295{left:323.632050px;}
.x29_c00295{left:325.310100px;}
.x53_c00295{left:333.482550px;}
.x35_c00295{left:334.992300px;}
.x2a_c00295{left:344.466600px;}
.x79_c00295{left:345.714000px;}
.xe_c00295{left:356.014950px;}
.x6b_c00295{left:365.791200px;}
.x5e_c00295{left:367.038600px;}
.x36_c00295{left:368.677050px;}
.x2b_c00295{left:378.087000px;}
.x1c_c00295{left:388.843350px;}
.xf_c00295{left:399.000750px;}
.x1d_c00295{left:410.410500px;}
.x37_c00295{left:411.994500px;}
.x10_c00295{left:421.795500px;}
.x68_c00295{left:431.779650px;}
.x1e_c00295{left:433.373550px;}
.x8_c00295{left:440.239200px;}
.x2c_c00295{left:444.095250px;}
.x5f_c00295{left:453.559650px;}
.x41_c00295{left:454.802100px;}
.x11_c00295{left:456.207900px;}
.x12_c00295{left:466.147500px;}
.x5a_c00295{left:476.527650px;}
.x47_c00295{left:477.591900px;}
.x1f_c00295{left:487.704750px;}
.x2d_c00295{left:488.976900px;}
.x69_c00295{left:497.713650px;}
.x56_c00295{left:499.688700px;}
.x54_c00295{left:509.643150px;}
.x2e_c00295{left:519.805500px;}
.x13_c00295{left:521.057850px;}
.x64_c00295{left:531.581550px;}
.x60_c00295{left:534.591150px;}
.x38_c00295{left:542.253750px;}
.x61_c00295{left:544.778250px;}
.x65_c00295{left:552.282450px;}
.x48_c00295{left:553.881300px;}
.x75_c00295{left:563.296200px;}
.x2f_c00295{left:565.157400px;}
.x20_c00295{left:575.765250px;}
.x62_c00295{left:578.893650px;}
.x7a_c00295{left:585.388050px;}
.x14_c00295{left:586.818600px;}
.x39_c00295{left:588.075900px;}
.x76_c00295{left:596.446350px;}
.x57_c00295{left:597.985800px;}
.x30_c00295{left:599.099550px;}
.x49_c00295{left:609.143100px;}
.x6f_c00295{left:610.766700px;}
.x15_c00295{left:619.805400px;}
.x21_c00295{left:630.700350px;}
.x70_c00295{left:632.432850px;}
.x4a_c00295{left:640.639950px;}
.x22_c00295{left:642.100200px;}
.x42_c00295{left:653.153550px;}
.x5_c00295{left:663.315900px;}
.x5b_c00295{left:672.745650px;}
.x73_c00295{left:673.824750px;}
.x2_c00295{left:675.200850px;}
.x3_c00295{left:682.041750px;}
.x55_c00295{left:685.378050px;}
.x6c_c00295{left:686.452200px;}
.x3a_c00295{left:687.942150px;}
.x58_c00295{left:695.159250px;}
.x16_c00295{left:696.792750px;}
.x7_c00295{left:697.916400px;}
.x6_c00295{left:700.792350px;}
.x4_c00295{left:702.208050px;}
.x5c_c00295{left:706.207650px;}
.x31_c00295{left:707.831250px;}
.x23_c00295{left:718.805400px;}
.x71_c00295{left:720.463650px;}
.x77_c00295{left:728.710350px;}
.x43_c00295{left:729.739950px;}
.x63_c00295{left:740.238900px;}
@media print{
.v0_c00295{vertical-align:0.000000pt;}
.ls10_c00295{letter-spacing:-2.371600pt;}
.ls22_c00295{letter-spacing:-2.266880pt;}
.ls19_c00295{letter-spacing:-2.195424pt;}
.ls14_c00295{letter-spacing:-2.154768pt;}
.lsc_c00295{letter-spacing:-2.005696pt;}
.ls9_c00295{letter-spacing:-1.724800pt;}
.ls1b_c00295{letter-spacing:-1.538152pt;}
.lsa_c00295{letter-spacing:-1.238160pt;}
.ls24_c00295{letter-spacing:-1.151920pt;}
.lsd_c00295{letter-spacing:-1.133440pt;}
.ls20_c00295{letter-spacing:-0.433664pt;}
.ls1c_c00295{letter-spacing:-0.243936pt;}
.ls7_c00295{letter-spacing:0.000000pt;}
.ls17_c00295{letter-spacing:0.548856pt;}
.ls2_c00295{letter-spacing:0.691152pt;}
.ls1e_c00295{letter-spacing:0.725032pt;}
.lse_c00295{letter-spacing:1.355200pt;}
.ls8_c00295{letter-spacing:1.390400pt;}
.ls6_c00295{letter-spacing:1.517824pt;}
.ls12_c00295{letter-spacing:1.556548pt;}
.ls16_c00295{letter-spacing:1.714328pt;}
.ls1f_c00295{letter-spacing:1.992144pt;}
.ls4_c00295{letter-spacing:2.154768pt;}
.ls1_c00295{letter-spacing:2.161544pt;}
.ls3_c00295{letter-spacing:2.547776pt;}
.ls18_c00295{letter-spacing:2.873024pt;}
.ls1d_c00295{letter-spacing:3.132800pt;}
.ls21_c00295{letter-spacing:3.150840pt;}
.ls1a_c00295{letter-spacing:3.171168pt;}
.lsf_c00295{letter-spacing:3.238400pt;}
.lsb_c00295{letter-spacing:3.388000pt;}
.ls13_c00295{letter-spacing:3.537609pt;}
.ls0_c00295{letter-spacing:5.556320pt;}
.ls5_c00295{letter-spacing:9.825200pt;}
.ls11_c00295{letter-spacing:44.352176pt;}
.ls15_c00295{letter-spacing:45.619376pt;}
.ls23_c00295{letter-spacing:50.688176pt;}
.ws5_c00295{word-spacing:-19.813024pt;}
.ws2_c00295{word-spacing:-19.244592pt;}
.ws3_c00295{word-spacing:-18.654328pt;}
.wsb_c00295{word-spacing:-18.457824pt;}
.ws4_c00295{word-spacing:-17.631152pt;}
.ws0_c00295{word-spacing:-16.940000pt;}
.wsd_c00295{word-spacing:-15.788080pt;}
.ws1_c00295{word-spacing:-2.439360pt;}
.wsa_c00295{word-spacing:-1.355200pt;}
.ws8_c00295{word-spacing:-0.813120pt;}
.wse_c00295{word-spacing:0.000000pt;}
.ws6_c00295{word-spacing:0.744480pt;}
.wsc_c00295{word-spacing:0.948640pt;}
.ws7_c00295{word-spacing:1.694000pt;}
.ws9_c00295{word-spacing:2.032800pt;}
._2_c00295{margin-left:-10.164000pt;}
._19_c00295{margin-left:-6.436320pt;}
._17_c00295{margin-left:-5.149760pt;}
._1d_c00295{margin-left:-4.088844pt;}
._1b_c00295{margin-left:-1.151920pt;}
._4_c00295{width:2.236960pt;}
._5_c00295{width:3.523520pt;}
._d_c00295{width:5.353040pt;}
._6_c00295{width:6.301680pt;}
._3_c00295{width:7.318080pt;}
._1f_c00295{width:8.219200pt;}
._7_c00295{width:9.283120pt;}
._1_c00295{width:10.435040pt;}
._15_c00295{width:13.348720pt;}
._1c_c00295{width:15.178240pt;}
._1e_c00295{width:16.488977pt;}
._a_c00295{width:19.040560pt;}
._e_c00295{width:21.141120pt;}
._18_c00295{width:22.293040pt;}
._0_c00295{width:24.324960pt;}
._11_c00295{width:25.775200pt;}
._14_c00295{width:27.510560pt;}
._12_c00295{width:28.547288pt;}
._10_c00295{width:29.798560pt;}
._1a_c00295{width:31.503120pt;}
._13_c00295{width:32.863600pt;}
._b_c00295{width:34.125520pt;}
._9_c00295{width:35.534312pt;}
._c_c00295{width:37.597120pt;}
._8_c00295{width:41.465600pt;}
._16_c00295{width:42.499600pt;}
._f_c00295{width:43.766800pt;}
._20_c00295{width:46.009040pt;}
.fs4_c00295{font-size:20.064000pt;}
.fs0_c00295{font-size:27.808000pt;}
.fs6_c00295{font-size:32.384000pt;}
.fs2_c00295{font-size:35.376000pt;}
.fs8_c00295{font-size:44.352176pt;}
.fsb_c00295{font-size:45.619376pt;}
.fs1_c00295{font-size:49.280000pt;}
.fse_c00295{font-size:50.688176pt;}
.fs3_c00295{font-size:53.504000pt;}
.fsa_c00295{font-size:58.960000pt;}
.fsd_c00295{font-size:61.952176pt;}
.fsc_c00295{font-size:62.656000pt;}
.fs7_c00295{font-size:64.768000pt;}
.fs5_c00295{font-size:67.760000pt;}
.fs9_c00295{font-size:70.752176pt;}
.y0_c00295{bottom:0.000000pt;}
.y1_c00295{bottom:68.000000pt;}
.y1f_c00295{bottom:120.622520pt;}
.y1e_c00295{bottom:147.862920pt;}
.y1d_c00295{bottom:179.542920pt;}
.y1c_c00295{bottom:210.272520pt;}
.y1b_c00295{bottom:239.739320pt;}
.y1a_c00295{bottom:268.251320pt;}
.y19_c00295{bottom:297.080120pt;}
.y18_c00295{bottom:325.904520pt;}
.y17_c00295{bottom:354.420920pt;}
.y16_c00295{bottom:354.423560pt;}
.y15_c00295{bottom:382.611720pt;}
.y14_c00295{bottom:439.318920pt;}
.y13_c00295{bottom:469.419320pt;}
.y12_c00295{bottom:499.515320pt;}
.y11_c00295{bottom:529.928120pt;}
.y10_c00295{bottom:559.386120pt;}
.yf_c00295{bottom:588.531720pt;}
.ye_c00295{bottom:617.048120pt;}
.yd_c00295{bottom:645.876920pt;}
.yc_c00295{bottom:645.883960pt;}
.yb_c00295{bottom:674.072120pt;}
.ya_c00295{bottom:702.584120pt;}
.y9_c00295{bottom:731.729720pt;}
.y8_c00295{bottom:760.237320pt;}
.y7_c00295{bottom:789.382920pt;}
.y6_c00295{bottom:818.849720pt;}
.y5_c00295{bottom:934.477320pt;}
.y4_c00295{bottom:952.534920pt;}
.y3_c00295{bottom:957.603720pt;}
.y2_c00295{bottom:966.157320pt;}
.h7_c00295{height:20.926125pt;}
.h2_c00295{height:27.278453pt;}
.h3_c00295{height:27.292031pt;}
.hb_c00295{height:29.538549pt;}
.hd_c00295{height:30.382504pt;}
.h10_c00295{height:33.758325pt;}
.h9_c00295{height:33.775500pt;}
.h5_c00295{height:34.719609pt;}
.h4_c00295{height:48.365625pt;}
.h6_c00295{height:55.803000pt;}
.hf_c00295{height:60.802673pt;}
.ha_c00295{height:63.566250pt;}
.he_c00295{height:65.348250pt;}
.h8_c00295{height:66.502734pt;}
.hc_c00295{height:69.439391pt;}
.h1_c00295{height:986.666667pt;}
.h0_c00295{height:1122.666667pt;}
.w1_c00295{width:678.666667pt;}
.w0_c00295{width:793.333333pt;}
.x0_c00295{left:0.000000pt;}
.x1_c00295{left:57.333333pt;}
.x59_c00295{left:79.680533pt;}
.x4b_c00295{left:80.587813pt;}
.x24_c00295{left:81.955333pt;}
.x9_c00295{left:83.275333pt;}
.x74_c00295{left:89.532133pt;}
.x50_c00295{left:90.944533pt;}
.x3b_c00295{left:92.480133pt;}
.x6a_c00295{left:100.338533pt;}
.x6d_c00295{left:108.821733pt;}
.x5d_c00295{left:109.952533pt;}
.x17_c00295{left:111.413333pt;}
.x4c_c00295{left:120.024133pt;}
.x25_c00295{left:121.190133pt;}
.x67_c00295{left:129.242133pt;}
.xa_c00295{left:130.597333pt;}
.x3c_c00295{left:139.727333pt;}
.x26_c00295{left:149.548133pt;}
.x3d_c00295{left:159.206133pt;}
.x32_c00295{left:162.110133pt;}
.x44_c00295{left:168.098533pt;}
.x51_c00295{left:169.158933pt;}
.x18_c00295{left:170.135733pt;}
.x78_c00295{left:177.884133pt;}
.x19_c00295{left:179.542933pt;}
.x3e_c00295{left:188.021733pt;}
.x66_c00295{left:189.148133pt;}
.x72_c00295{left:198.489333pt;}
.x27_c00295{left:199.598133pt;}
.xb_c00295{left:208.569733pt;}
.x6e_c00295{left:217.224533pt;}
.xc_c00295{left:218.592933pt;}
.x33_c00295{left:227.366533pt;}
.x28_c00295{left:228.378533pt;}
.x52_c00295{left:229.896533pt;}
.x4d_c00295{left:236.808933pt;}
.x3f_c00295{left:237.878133pt;}
.x1a_c00295{left:247.452533pt;}
.x34_c00295{left:249.164133pt;}
.x45_c00295{left:257.898133pt;}
.x4e_c00295{left:265.963333pt;}
.x40_c00295{left:267.080933pt;}
.x1b_c00295{left:276.127333pt;}
.x46_c00295{left:277.469333pt;}
.x4f_c00295{left:286.630133pt;}
.xd_c00295{left:287.672933pt;}
.x29_c00295{left:289.164533pt;}
.x53_c00295{left:296.428933pt;}
.x35_c00295{left:297.770933pt;}
.x2a_c00295{left:306.192533pt;}
.x79_c00295{left:307.301333pt;}
.xe_c00295{left:316.457733pt;}
.x6b_c00295{left:325.147733pt;}
.x5e_c00295{left:326.256533pt;}
.x36_c00295{left:327.712933pt;}
.x2b_c00295{left:336.077333pt;}
.x1c_c00295{left:345.638533pt;}
.xf_c00295{left:354.667333pt;}
.x1d_c00295{left:364.809333pt;}
.x37_c00295{left:366.217333pt;}
.x10_c00295{left:374.929333pt;}
.x68_c00295{left:383.804133pt;}
.x1e_c00295{left:385.220933pt;}
.x8_c00295{left:391.323733pt;}
.x2c_c00295{left:394.751333pt;}
.x5f_c00295{left:403.164133pt;}
.x41_c00295{left:404.268533pt;}
.x11_c00295{left:405.518133pt;}
.x12_c00295{left:414.353333pt;}
.x5a_c00295{left:423.580133pt;}
.x47_c00295{left:424.526133pt;}
.x1f_c00295{left:433.515333pt;}
.x2d_c00295{left:434.646133pt;}
.x69_c00295{left:442.412133pt;}
.x56_c00295{left:444.167733pt;}
.x54_c00295{left:453.016133pt;}
.x2e_c00295{left:462.049333pt;}
.x13_c00295{left:463.162533pt;}
.x64_c00295{left:472.516933pt;}
.x60_c00295{left:475.192133pt;}
.x38_c00295{left:482.003333pt;}
.x61_c00295{left:484.247333pt;}
.x65_c00295{left:490.917733pt;}
.x48_c00295{left:492.338933pt;}
.x75_c00295{left:500.707733pt;}
.x2f_c00295{left:502.362133pt;}
.x20_c00295{left:511.791333pt;}
.x62_c00295{left:514.572133pt;}
.x7a_c00295{left:520.344933pt;}
.x14_c00295{left:521.616533pt;}
.x39_c00295{left:522.734133pt;}
.x76_c00295{left:530.174533pt;}
.x57_c00295{left:531.542933pt;}
.x30_c00295{left:532.532933pt;}
.x49_c00295{left:541.460533pt;}
.x6f_c00295{left:542.903733pt;}
.x15_c00295{left:550.938133pt;}
.x21_c00295{left:560.622533pt;}
.x70_c00295{left:562.162533pt;}
.x4a_c00295{left:569.457733pt;}
.x22_c00295{left:570.755733pt;}
.x42_c00295{left:580.580933pt;}
.x5_c00295{left:589.614133pt;}
.x5b_c00295{left:597.996133pt;}
.x73_c00295{left:598.955333pt;}
.x2_c00295{left:600.178533pt;}
.x3_c00295{left:606.259333pt;}
.x55_c00295{left:609.224933pt;}
.x6c_c00295{left:610.179733pt;}
.x3a_c00295{left:611.504133pt;}
.x58_c00295{left:617.919333pt;}
.x16_c00295{left:619.371333pt;}
.x7_c00295{left:620.370133pt;}
.x6_c00295{left:622.926533pt;}
.x4_c00295{left:624.184933pt;}
.x5c_c00295{left:627.740133pt;}
.x31_c00295{left:629.183333pt;}
.x23_c00295{left:638.938133pt;}
.x71_c00295{left:640.412133pt;}
.x77_c00295{left:647.742533pt;}
.x43_c00295{left:648.657733pt;}
.x63_c00295{left:657.990133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_869b45dc6456b3daa2f07184.woff2')format("woff");}.ff1_c00296{font-family:ff1_c00296;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00296;src:url('chunks/assets/font_5f9066da7ea3478712f2021d.woff2')format("woff");}.ff2_c00296{font-family:ff2_c00296;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00296;src:url('chunks/assets/font_2642d3809e39e15e1a642349.woff2')format("woff");}.ff3_c00296{font-family:ff3_c00296;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00296;src:url('chunks/assets/font_a726da6b956ebc34f6b19312.woff2')format("woff");}.ff4_c00296{font-family:ff4_c00296;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00296;src:url('chunks/assets/font_72226a38bfff7d5757465a1e.woff2')format("woff");}.ff5_c00296{font-family:ff5_c00296;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3c_c00296{transform:matrix(0.028717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.028717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.028717,0.000000,0.000000,0.250000,0,0);}
.m70_c00296{transform:matrix(0.039287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.039287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.039287,0.000000,0.000000,0.250000,0,0);}
.m6f_c00296{transform:matrix(0.053572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053572,0.000000,0.000000,0.250000,0,0);}
.m3b_c00296{transform:matrix(0.067568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.067568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.067568,0.000000,0.000000,0.250000,0,0);}
.m33_c00296{transform:matrix(0.078947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078947,0.000000,0.000000,0.250000,0,0);}
.m3e_c00296{transform:matrix(0.094594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094594,0.000000,0.000000,0.250000,0,0);}
.m8f_c00296{transform:matrix(0.107694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107694,0.000000,0.000000,0.250000,0,0);}
.m4e_c00296{transform:matrix(0.125681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125681,0.000000,0.000000,0.250000,0,0);}
.m48_c00296{transform:matrix(0.131102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131102,0.000000,0.000000,0.250000,0,0);}
.m91_c00296{transform:matrix(0.135562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135562,0.000000,0.000000,0.250000,0,0);}
.m4c_c00296{transform:matrix(0.139465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139465,0.000000,0.000000,0.250000,0,0);}
.mae_c00296{transform:matrix(0.171429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171429,0.000000,0.000000,0.250000,0,0);}
.m5b_c00296{transform:matrix(0.171913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171913,0.000000,0.000000,0.250000,0,0);}
.m76_c00296{transform:matrix(0.175666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175666,0.000000,0.000000,0.250000,0,0);}
.m6c_c00296{transform:matrix(0.182629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182629,0.000000,0.000000,0.250000,0,0);}
.m10_c00296{transform:matrix(0.183821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183821,0.000000,0.000000,0.250000,0,0);}
.me_c00296{transform:matrix(0.189755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189755,0.000000,0.000000,0.250000,0,0);}
.m32_c00296{transform:matrix(0.190790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190790,0.000000,0.000000,0.250000,0,0);}
.m4a_c00296{transform:matrix(0.195330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195330,0.000000,0.000000,0.250000,0,0);}
.m3d_c00296{transform:matrix(0.202702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202702,0.000000,0.000000,0.250000,0,0);}
.maf_c00296{transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);}
.ma6_c00296{transform:matrix(0.222895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222895,0.000000,0.000000,0.250000,0,0);}
.m6e_c00296{transform:matrix(0.224999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224999,0.000000,0.000000,0.250000,0,0);}
.m78_c00296{transform:matrix(0.228701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228701,0.000000,0.000000,0.250000,0,0);}
.ma2_c00296{transform:matrix(0.228740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228740,0.000000,0.000000,0.250000,0,0);}
.ma_c00296{transform:matrix(0.247088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247088,0.000000,0.000000,0.250000,0,0);}
.m1_c00296{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00296{transform:matrix(0.251506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251506,0.000000,0.000000,0.250000,0,0);}
.m7b_c00296{transform:matrix(0.252684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252684,0.000000,0.000000,0.250000,0,0);}
.m37_c00296{transform:matrix(0.254604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254604,0.000000,0.000000,0.250000,0,0);}
.mb8_c00296{transform:matrix(0.255004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255004,0.000000,0.000000,0.250000,0,0);}
.m2e_c00296{transform:matrix(0.257238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257238,0.000000,0.000000,0.250000,0,0);}
.m5f_c00296{transform:matrix(0.257823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257823,0.000000,0.000000,0.250000,0,0);}
.mb5_c00296{transform:matrix(0.257927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257927,0.000000,0.000000,0.250000,0,0);}
.m50_c00296{transform:matrix(0.258832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258832,0.000000,0.000000,0.250000,0,0);}
.m68_c00296{transform:matrix(0.259320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259320,0.000000,0.000000,0.250000,0,0);}
.m11_c00296{transform:matrix(0.261871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261871,0.000000,0.000000,0.250000,0,0);}
.m5a_c00296{transform:matrix(0.263531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263531,0.000000,0.000000,0.250000,0,0);}
.m59_c00296{transform:matrix(0.263662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263662,0.000000,0.000000,0.250000,0,0);}
.m0_c00296{transform:matrix(0.264944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264944,0.000000,0.000000,0.250000,0,0);}
.m73_c00296{transform:matrix(0.265366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265366,0.000000,0.000000,0.250000,0,0);}
.m67_c00296{transform:matrix(0.265767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265767,0.000000,0.000000,0.250000,0,0);}
.m65_c00296{transform:matrix(0.267031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267031,0.000000,0.000000,0.250000,0,0);}
.m66_c00296{transform:matrix(0.267166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267166,0.000000,0.000000,0.250000,0,0);}
.m61_c00296{transform:matrix(0.268416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268416,0.000000,0.000000,0.250000,0,0);}
.m64_c00296{transform:matrix(0.268556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268556,0.000000,0.000000,0.250000,0,0);}
.m53_c00296{transform:matrix(0.269016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269016,0.000000,0.000000,0.250000,0,0);}
.ma8_c00296{transform:matrix(0.269526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269526,0.000000,0.000000,0.250000,0,0);}
.mf_c00296{transform:matrix(0.270779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270779,0.000000,0.000000,0.250000,0,0);}
.m1e_c00296{transform:matrix(0.270827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270827,0.000000,0.000000,0.250000,0,0);}
.m99_c00296{transform:matrix(0.271394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271394,0.000000,0.000000,0.250000,0,0);}
.m98_c00296{transform:matrix(0.271456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271456,0.000000,0.000000,0.250000,0,0);}
.m34_c00296{transform:matrix(0.273819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273819,0.000000,0.000000,0.250000,0,0);}
.m51_c00296{transform:matrix(0.274302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274302,0.000000,0.000000,0.250000,0,0);}
.m75_c00296{transform:matrix(0.274734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274734,0.000000,0.000000,0.250000,0,0);}
.m63_c00296{transform:matrix(0.275312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275312,0.000000,0.000000,0.250000,0,0);}
.m5_c00296{transform:matrix(0.275579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275579,0.000000,0.000000,0.250000,0,0);}
.m7f_c00296{transform:matrix(0.276155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276155,0.000000,0.000000,0.250000,0,0);}
.m9_c00296{transform:matrix(0.276267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276267,0.000000,0.000000,0.250000,0,0);}
.m26_c00296{transform:matrix(0.278623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278623,0.000000,0.000000,0.250000,0,0);}
.m83_c00296{transform:matrix(0.279271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279271,0.000000,0.000000,0.250000,0,0);}
.m7a_c00296{transform:matrix(0.279475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279475,0.000000,0.000000,0.250000,0,0);}
.m6b_c00296{transform:matrix(0.279684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279684,0.000000,0.000000,0.250000,0,0);}
.m8_c00296{transform:matrix(0.280399,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280399,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280399,0.000000,0.000000,0.250000,0,0);}
.m7e_c00296{transform:matrix(0.281057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281057,0.000000,0.000000,0.250000,0,0);}
.ma5_c00296{transform:matrix(0.281416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281416,0.000000,0.000000,0.250000,0,0);}
.m3a_c00296{transform:matrix(0.283717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283717,0.000000,0.000000,0.250000,0,0);}
.m7_c00296{transform:matrix(0.283803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283803,0.000000,0.000000,0.250000,0,0);}
.mc0_c00296{transform:matrix(0.284933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284933,0.000000,0.000000,0.250000,0,0);}
.mb_c00296{transform:matrix(0.285135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285135,0.000000,0.000000,0.250000,0,0);}
.m56_c00296{transform:matrix(0.285285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285285,0.000000,0.000000,0.250000,0,0);}
.m8a_c00296{transform:matrix(0.285592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285592,0.000000,0.000000,0.250000,0,0);}
.m47_c00296{transform:matrix(0.286018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286018,0.000000,0.000000,0.250000,0,0);}
.maa_c00296{transform:matrix(0.287140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287140,0.000000,0.000000,0.250000,0,0);}
.m55_c00296{transform:matrix(0.287379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287379,0.000000,0.000000,0.250000,0,0);}
.m1a_c00296{transform:matrix(0.287555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287555,0.000000,0.000000,0.250000,0,0);}
.m60_c00296{transform:matrix(0.288151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288151,0.000000,0.000000,0.250000,0,0);}
.m8b_c00296{transform:matrix(0.288168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288168,0.000000,0.000000,0.250000,0,0);}
.m14_c00296{transform:matrix(0.289591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289591,0.000000,0.000000,0.250000,0,0);}
.m3f_c00296{transform:matrix(0.289698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289698,0.000000,0.000000,0.250000,0,0);}
.mc_c00296{transform:matrix(0.290875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290875,0.000000,0.000000,0.250000,0,0);}
.mb4_c00296{transform:matrix(0.291649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291649,0.000000,0.000000,0.250000,0,0);}
.m95_c00296{transform:matrix(0.291910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291910,0.000000,0.000000,0.250000,0,0);}
.m8e_c00296{transform:matrix(0.294204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294204,0.000000,0.000000,0.250000,0,0);}
.m46_c00296{transform:matrix(0.294566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294566,0.000000,0.000000,0.250000,0,0);}
.m92_c00296{transform:matrix(0.295227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295227,0.000000,0.000000,0.250000,0,0);}
.mbb_c00296{transform:matrix(0.295246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295246,0.000000,0.000000,0.250000,0,0);}
.mbc_c00296{transform:matrix(0.296101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296101,0.000000,0.000000,0.250000,0,0);}
.m9a_c00296{transform:matrix(0.296992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296992,0.000000,0.000000,0.250000,0,0);}
.mb9_c00296{transform:matrix(0.297151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297151,0.000000,0.000000,0.250000,0,0);}
.m9d_c00296{transform:matrix(0.298680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298680,0.000000,0.000000,0.250000,0,0);}
.m13_c00296{transform:matrix(0.298775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298775,0.000000,0.000000,0.250000,0,0);}
.m2b_c00296{transform:matrix(0.298879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298879,0.000000,0.000000,0.250000,0,0);}
.m87_c00296{transform:matrix(0.299505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299505,0.000000,0.000000,0.250000,0,0);}
.m62_c00296{transform:matrix(0.300138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300138,0.000000,0.000000,0.250000,0,0);}
.m2a_c00296{transform:matrix(0.300163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300163,0.000000,0.000000,0.250000,0,0);}
.m89_c00296{transform:matrix(0.301267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301267,0.000000,0.000000,0.250000,0,0);}
.mba_c00296{transform:matrix(0.301794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301794,0.000000,0.000000,0.250000,0,0);}
.m1b_c00296{transform:matrix(0.302058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302058,0.000000,0.000000,0.250000,0,0);}
.mbd_c00296{transform:matrix(0.302286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302286,0.000000,0.000000,0.250000,0,0);}
.m23_c00296{transform:matrix(0.302735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302735,0.000000,0.000000,0.250000,0,0);}
.m7d_c00296{transform:matrix(0.302796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302796,0.000000,0.000000,0.250000,0,0);}
.mad_c00296{transform:matrix(0.303594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303594,0.000000,0.000000,0.250000,0,0);}
.m96_c00296{transform:matrix(0.304914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304914,0.000000,0.000000,0.250000,0,0);}
.ma7_c00296{transform:matrix(0.305054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305054,0.000000,0.000000,0.250000,0,0);}
.m54_c00296{transform:matrix(0.305561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305561,0.000000,0.000000,0.250000,0,0);}
.m38_c00296{transform:matrix(0.305595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305595,0.000000,0.000000,0.250000,0,0);}
.mc1_c00296{transform:matrix(0.305710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305710,0.000000,0.000000,0.250000,0,0);}
.m1f_c00296{transform:matrix(0.305930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305930,0.000000,0.000000,0.250000,0,0);}
.m9f_c00296{transform:matrix(0.306208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306208,0.000000,0.000000,0.250000,0,0);}
.mb3_c00296{transform:matrix(0.306375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306375,0.000000,0.000000,0.250000,0,0);}
.mac_c00296{transform:matrix(0.306671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306671,0.000000,0.000000,0.250000,0,0);}
.m57_c00296{transform:matrix(0.307095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307095,0.000000,0.000000,0.250000,0,0);}
.m90_c00296{transform:matrix(0.307812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307812,0.000000,0.000000,0.250000,0,0);}
.m24_c00296{transform:matrix(0.308649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308649,0.000000,0.000000,0.250000,0,0);}
.mb2_c00296{transform:matrix(0.309471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309471,0.000000,0.000000,0.250000,0,0);}
.m27_c00296{transform:matrix(0.309517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309517,0.000000,0.000000,0.250000,0,0);}
.m71_c00296{transform:matrix(0.309705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309705,0.000000,0.000000,0.250000,0,0);}
.mb1_c00296{transform:matrix(0.310036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310036,0.000000,0.000000,0.250000,0,0);}
.m44_c00296{transform:matrix(0.310610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310610,0.000000,0.000000,0.250000,0,0);}
.m28_c00296{transform:matrix(0.310925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310925,0.000000,0.000000,0.250000,0,0);}
.m9e_c00296{transform:matrix(0.311016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311016,0.000000,0.000000,0.250000,0,0);}
.m36_c00296{transform:matrix(0.311362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311362,0.000000,0.000000,0.250000,0,0);}
.m4f_c00296{transform:matrix(0.311579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311579,0.000000,0.000000,0.250000,0,0);}
.m2f_c00296{transform:matrix(0.311632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311632,0.000000,0.000000,0.250000,0,0);}
.mbe_c00296{transform:matrix(0.313158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313158,0.000000,0.000000,0.250000,0,0);}
.m94_c00296{transform:matrix(0.313829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313829,0.000000,0.000000,0.250000,0,0);}
.m12_c00296{transform:matrix(0.314648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314648,0.000000,0.000000,0.250000,0,0);}
.m72_c00296{transform:matrix(0.316775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316775,0.000000,0.000000,0.250000,0,0);}
.m88_c00296{transform:matrix(0.317284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317284,0.000000,0.000000,0.250000,0,0);}
.ma0_c00296{transform:matrix(0.319905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319905,0.000000,0.000000,0.250000,0,0);}
.m15_c00296{transform:matrix(0.320668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320668,0.000000,0.000000,0.250000,0,0);}
.m39_c00296{transform:matrix(0.321108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321108,0.000000,0.000000,0.250000,0,0);}
.m40_c00296{transform:matrix(0.321554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321554,0.000000,0.000000,0.250000,0,0);}
.m9c_c00296{transform:matrix(0.321636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321636,0.000000,0.000000,0.250000,0,0);}
.m4d_c00296{transform:matrix(0.322573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322573,0.000000,0.000000,0.250000,0,0);}
.m2d_c00296{transform:matrix(0.323607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323607,0.000000,0.000000,0.250000,0,0);}
.m52_c00296{transform:matrix(0.324180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324180,0.000000,0.000000,0.250000,0,0);}
.m49_c00296{transform:matrix(0.324345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324345,0.000000,0.000000,0.250000,0,0);}
.m8d_c00296{transform:matrix(0.324677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324677,0.000000,0.000000,0.250000,0,0);}
.mbf_c00296{transform:matrix(0.325883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325883,0.000000,0.000000,0.250000,0,0);}
.m84_c00296{transform:matrix(0.325933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325933,0.000000,0.000000,0.250000,0,0);}
.m5d_c00296{transform:matrix(0.326225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326225,0.000000,0.000000,0.250000,0,0);}
.ma4_c00296{transform:matrix(0.327086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327086,0.000000,0.000000,0.250000,0,0);}
.m31_c00296{transform:matrix(0.329510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329510,0.000000,0.000000,0.250000,0,0);}
.m77_c00296{transform:matrix(0.330134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330134,0.000000,0.000000,0.250000,0,0);}
.m41_c00296{transform:matrix(0.330281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330281,0.000000,0.000000,0.250000,0,0);}
.m97_c00296{transform:matrix(0.330508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330508,0.000000,0.000000,0.250000,0,0);}
.mb7_c00296{transform:matrix(0.331661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331661,0.000000,0.000000,0.250000,0,0);}
.m8c_c00296{transform:matrix(0.332067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332067,0.000000,0.000000,0.250000,0,0);}
.m6d_c00296{transform:matrix(0.332745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332745,0.000000,0.000000,0.250000,0,0);}
.m93_c00296{transform:matrix(0.333859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333859,0.000000,0.000000,0.250000,0,0);}
.m16_c00296{transform:matrix(0.334164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334164,0.000000,0.000000,0.250000,0,0);}
.ma1_c00296{transform:matrix(0.334193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334193,0.000000,0.000000,0.250000,0,0);}
.m1c_c00296{transform:matrix(0.334862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334862,0.000000,0.000000,0.250000,0,0);}
.m58_c00296{transform:matrix(0.335189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335189,0.000000,0.000000,0.250000,0,0);}
.m5c_c00296{transform:matrix(0.335379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335379,0.000000,0.000000,0.250000,0,0);}
.m4_c00296{transform:matrix(0.336244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336244,0.000000,0.000000,0.250000,0,0);}
.m35_c00296{transform:matrix(0.336305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336305,0.000000,0.000000,0.250000,0,0);}
.m30_c00296{transform:matrix(0.336513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336513,0.000000,0.000000,0.250000,0,0);}
.m43_c00296{transform:matrix(0.336728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336728,0.000000,0.000000,0.250000,0,0);}
.m21_c00296{transform:matrix(0.338482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338482,0.000000,0.000000,0.250000,0,0);}
.m2c_c00296{transform:matrix(0.338810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338810,0.000000,0.000000,0.250000,0,0);}
.md_c00296{transform:matrix(0.339307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339307,0.000000,0.000000,0.250000,0,0);}
.m74_c00296{transform:matrix(0.339620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339620,0.000000,0.000000,0.250000,0,0);}
.m18_c00296{transform:matrix(0.342744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342744,0.000000,0.000000,0.250000,0,0);}
.m3_c00296{transform:matrix(0.342882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342882,0.000000,0.000000,0.250000,0,0);}
.m19_c00296{transform:matrix(0.346458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346458,0.000000,0.000000,0.250000,0,0);}
.mab_c00296{transform:matrix(0.346669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346669,0.000000,0.000000,0.250000,0,0);}
.ma3_c00296{transform:matrix(0.346894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346894,0.000000,0.000000,0.250000,0,0);}
.mb0_c00296{transform:matrix(0.347155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347155,0.000000,0.000000,0.250000,0,0);}
.m45_c00296{transform:matrix(0.347889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347889,0.000000,0.000000,0.250000,0,0);}
.m4b_c00296{transform:matrix(0.348428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348428,0.000000,0.000000,0.250000,0,0);}
.mb6_c00296{transform:matrix(0.348976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348976,0.000000,0.000000,0.250000,0,0);}
.ma9_c00296{transform:matrix(0.349954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349954,0.000000,0.000000,0.250000,0,0);}
.m80_c00296{transform:matrix(0.352299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352299,0.000000,0.000000,0.250000,0,0);}
.m29_c00296{transform:matrix(0.353088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353088,0.000000,0.000000,0.250000,0,0);}
.m2_c00296{transform:matrix(0.354262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354262,0.000000,0.000000,0.250000,0,0);}
.m7c_c00296{transform:matrix(0.359282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359282,0.000000,0.000000,0.250000,0,0);}
.m42_c00296{transform:matrix(0.360983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360983,0.000000,0.000000,0.250000,0,0);}
.m25_c00296{transform:matrix(0.365426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365426,0.000000,0.000000,0.250000,0,0);}
.m22_c00296{transform:matrix(0.365477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365477,0.000000,0.000000,0.250000,0,0);}
.m6_c00296{transform:matrix(0.367628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367628,0.000000,0.000000,0.250000,0,0);}
.m69_c00296{transform:matrix(0.369510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369510,0.000000,0.000000,0.250000,0,0);}
.m82_c00296{transform:matrix(0.371516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371516,0.000000,0.000000,0.250000,0,0);}
.m79_c00296{transform:matrix(0.371671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371671,0.000000,0.000000,0.250000,0,0);}
.m5e_c00296{transform:matrix(0.372661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372661,0.000000,0.000000,0.250000,0,0);}
.m20_c00296{transform:matrix(0.380834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380834,0.000000,0.000000,0.250000,0,0);}
.m6a_c00296{transform:matrix(0.383853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383853,0.000000,0.000000,0.250000,0,0);}
.m9b_c00296{transform:matrix(0.390602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390602,0.000000,0.000000,0.250000,0,0);}
.m85_c00296{transform:matrix(0.407816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407816,0.000000,0.000000,0.250000,0,0);}
.m81_c00296{transform:matrix(0.412329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412329,0.000000,0.000000,0.250000,0,0);}
.m1d_c00296{transform:matrix(0.433656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433656,0.000000,0.000000,0.250000,0,0);}
.m86_c00296{transform:matrix(0.493821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493821,0.000000,0.000000,0.250000,0,0);}
.v0_c00296{vertical-align:0.000000px;}
.ls7_c00296{letter-spacing:-2.668050px;}
.lsb_c00296{letter-spacing:-1.143450px;}
.ls9_c00296{letter-spacing:-0.777546px;}
.ls4_c00296{letter-spacing:0.000000px;}
.ls8_c00296{letter-spacing:1.745667px;}
.ls2_c00296{letter-spacing:2.211264px;}
.ls1_c00296{letter-spacing:2.566674px;}
.ls6_c00296{letter-spacing:2.704482px;}
.lse_c00296{letter-spacing:3.300759px;}
.lsd_c00296{letter-spacing:3.532756px;}
.ls5_c00296{letter-spacing:3.811500px;}
.ls3_c00296{letter-spacing:4.306500px;}
.lsc_c00296{letter-spacing:49.896198px;}
.ls0_c00296{letter-spacing:52.747398px;}
.lsa_c00296{letter-spacing:54.172998px;}
.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;}
}
.ws3_c00296{word-spacing:-100.220056px;}
.ws0_c00296{word-spacing:-24.236982px;}
.ws7_c00296{word-spacing:-24.099174px;}
.ws1_c00296{word-spacing:-20.803167px;}
.ws2_c00296{word-spacing:-19.057500px;}
.ws9_c00296{word-spacing:0.000000px;}
.ws5_c00296{word-spacing:1.372140px;}
.ws8_c00296{word-spacing:3.354120px;}
.ws6_c00296{word-spacing:5.183640px;}
.ws4_c00296{word-spacing:7.623000px;}
._15_c00296{margin-left:-16.846830px;}
._19_c00296{margin-left:-3.277890px;}
._c_c00296{margin-left:-1.509354px;}
._9_c00296{width:1.740816px;}
._0_c00296{width:4.565880px;}
._13_c00296{width:6.022170px;}
._1_c00296{width:7.470540px;}
._b_c00296{width:9.072360px;}
._4_c00296{width:10.443510px;}
._7_c00296{width:12.501720px;}
._17_c00296{width:14.452614px;}
._11_c00296{width:15.474690px;}
._12_c00296{width:20.429640px;}
._6_c00296{width:21.573090px;}
._f_c00296{width:22.869000px;}
._3_c00296{width:24.317370px;}
._2_c00296{width:28.476360px;}
._14_c00296{width:29.729700px;}
._18_c00296{width:31.255290px;}
._e_c00296{width:32.625450px;}
._10_c00296{width:34.948980px;}
._d_c00296{width:36.813150px;}
._8_c00296{width:40.312800px;}
._a_c00296{width:42.154200px;}
._16_c00296{width:44.193600px;}
._5_c00296{width:46.632960px;}
.fc0_c00296{color:transparent;}
.fs4_c00296{font-size:32.670000px;}
.fs5_c00296{font-size:39.006198px;}
.fs6_c00296{font-size:49.896198px;}
.fs3_c00296{font-size:52.747398px;}
.fs2_c00296{font-size:54.172998px;}
.fs9_c00296{font-size:60.192000px;}
.fs7_c00296{font-size:76.032198px;}
.fs1_c00296{font-size:76.230000px;}
.fs8_c00296{font-size:77.814000px;}
.fs0_c00296{font-size:86.130000px;}
.fsa_c00296{font-size:93.456198px;}
.y0_c00296{bottom:0.000000px;}
.y1_c00296{bottom:76.500000px;}
.y19_c00296{bottom:121.444335px;}
.y18_c00296{bottom:181.314585px;}
.y17_c00296{bottom:217.667385px;}
.y16_c00296{bottom:251.530335px;}
.y15_c00296{bottom:283.957785px;}
.y14_c00296{bottom:309.974985px;}
.y13_c00296{bottom:317.464335px;}
.y12_c00296{bottom:350.604585px;}
.y11_c00296{bottom:383.393385px;}
.y10_c00296{bottom:415.474335px;}
.yf_c00296{bottom:448.263135px;}
.ye_c00296{bottom:479.977785px;}
.yd_c00296{bottom:512.053785px;}
.yc_c00296{bottom:544.842585px;}
.yb_c00296{bottom:577.631385px;}
.ya_c00296{bottom:610.425135px;}
.y9_c00296{bottom:642.852585px;}
.y8_c00296{bottom:676.710585px;}
.y7_c00296{bottom:778.645935px;}
.y6_c00296{bottom:810.716985px;}
.y5_c00296{bottom:844.574985px;}
.y4_c00296{bottom:877.007385px;}
.y1a_c00296{bottom:894.827385px;}
.y3_c00296{bottom:909.796185px;}
.y2_c00296{bottom:1074.096585px;}
.h6_c00296{height:32.063818px;}
.h8_c00296{height:33.230868px;}
.h5_c00296{height:35.129767px;}
.h4_c00296{height:36.079217px;}
.h7_c00296{height:40.682246px;}
.h9_c00296{height:74.621444px;}
.h3_c00296{height:74.815576px;}
.ha_c00296{height:76.332190px;}
.hb_c00296{height:79.299207px;}
.h2_c00296{height:84.531885px;}
.hc_c00296{height:97.471894px;}
.h1_c00296{height:1110.000000px;}
.h0_c00296{height:1263.000000px;}
.w1_c00296{width:763.500000px;}
.w0_c00296{width:892.500000px;}
.x0_c00296{left:0.000000px;}
.x1_c00296{left:64.500000px;}
.x5b_c00296{left:80.062335px;}
.x4_c00296{left:81.512685px;}
.x68_c00296{left:101.080035px;}
.x12_c00296{left:103.376835px;}
.x5c_c00296{left:108.574335px;}
.x3e_c00296{left:113.167935px;}
.x21_c00296{left:114.440085px;}
.x13_c00296{left:125.458785px;}
.x33_c00296{left:135.502335px;}
.x5_c00296{left:136.893285px;}
.x58_c00296{left:147.565485px;}
.x61_c00296{left:149.654385px;}
.x4b_c00296{left:157.906035px;}
.x22_c00296{left:160.039485px;}
.x47_c00296{left:168.469335px;}
.x3f_c00296{left:179.517735px;}
.x23_c00296{left:181.047285px;}
.x6e_c00296{left:191.085885px;}
.x14_c00296{left:192.303585px;}
.x69_c00296{left:201.198735px;}
.x55_c00296{left:202.797585px;}
.x6_c00296{left:203.817285px;}
.x51_c00296{left:213.123285px;}
.x2b_c00296{left:214.251885px;}
.x6a_c00296{left:223.706385px;}
.x7_c00296{left:225.265635px;}
.x8_c00296{left:236.116035px;}
.x34_c00296{left:246.451635px;}
.x2c_c00296{left:257.628735px;}
.x40_c00296{left:268.404885px;}
.x9_c00296{left:269.459235px;}
.x4c_c00296{left:270.642285px;}
.x62_c00296{left:279.171135px;}
.x15_c00296{left:280.195785px;}
.x35_c00296{left:290.486835px;}
.x16_c00296{left:291.907485px;}
.x59_c00296{left:300.619485px;}
.xa_c00296{left:302.243085px;}
.x36_c00296{left:312.449985px;}
.x24_c00296{left:313.598385px;}
.x65_c00296{left:323.557785px;}
.xb_c00296{left:324.735885px;}
.x41_c00296{left:335.002185px;}
.x2d_c00296{left:345.214035px;}
.x17_c00296{left:346.926735px;}
.x5d_c00296{left:356.935635px;}
.x42_c00296{left:367.677135px;}
.x18_c00296{left:369.246285px;}
.x43_c00296{left:371.236185px;}
.x25_c00296{left:378.982935px;}
.x66_c00296{left:389.566035px;}
.x19_c00296{left:390.625335px;}
.x72_c00296{left:399.386835px;}
.x26_c00296{left:400.970835px;}
.xc_c00296{left:403.683435px;}
.x1a_c00296{left:411.504435px;}
.x37_c00296{left:422.196435px;}
.x71_c00296{left:425.102085px;}
.x2e_c00296{left:434.472435px;}
.x52_c00296{left:443.892285px;}
.xd_c00296{left:445.322835px;}
.x6b_c00296{left:454.628835px;}
.x63_c00296{left:456.539535px;}
.x2f_c00296{left:467.132535px;}
.x1b_c00296{left:478.537335px;}
.x27_c00296{left:480.477735px;}
.x44_c00296{left:489.001635px;}
.x6c_c00296{left:499.198635px;}
.xe_c00296{left:500.277735px;}
.x6f_c00296{left:503.638785px;}
.x28_c00296{left:511.573635px;}
.x38_c00296{left:513.796185px;}
.x1c_c00296{left:521.275635px;}
.x64_c00296{left:531.254835px;}
.x53_c00296{left:532.838835px;}
.x39_c00296{left:534.239685px;}
.xf_c00296{left:535.492035px;}
.x73_c00296{left:543.174435px;}
.x1d_c00296{left:544.243635px;}
.x5e_c00296{left:553.792185px;}
.x67_c00296{left:554.806935px;}
.x30_c00296{left:555.816735px;}
.x5f_c00296{left:560.826135px;}
.x6d_c00296{left:565.073235px;}
.x1e_c00296{left:566.573085px;}
.x31_c00296{left:577.710585px;}
.x4d_c00296{left:579.344085px;}
.x48_c00296{left:588.476835px;}
.x10_c00296{left:591.689385px;}
.x54_c00296{left:598.584735px;}
.x29_c00296{left:599.797485px;}
.x4e_c00296{left:609.459885px;}
.x32_c00296{left:611.217135px;}
.x60_c00296{left:620.156835px;}
.x11_c00296{left:622.102185px;}
.x1f_c00296{left:623.973285px;}
.x3a_c00296{left:631.427985px;}
.x2a_c00296{left:632.937735px;}
.x5a_c00296{left:634.036635px;}
.x56_c00296{left:641.966535px;}
.x3b_c00296{left:643.317885px;}
.x75_c00296{left:652.430835px;}
.x49_c00296{left:654.029685px;}
.x2_c00296{left:655.366185px;}
.x4f_c00296{left:665.063235px;}
.x3c_c00296{left:667.454085px;}
.x74_c00296{left:675.745335px;}
.x45_c00296{left:676.799685px;}
.x3_c00296{left:677.844135px;}
.x70_c00296{left:685.541385px;}
.x3d_c00296{left:686.620485px;}
.x50_c00296{left:687.848085px;}
.x57_c00296{left:697.891635px;}
.x20_c00296{left:706.920435px;}
.x4a_c00296{left:709.212285px;}
.x46_c00296{left:710.251785px;}
.x76_c00296{left:742.822785px;}
@media print{
.v0_c00296{vertical-align:0.000000pt;}
.ls7_c00296{letter-spacing:-2.371600pt;}
.lsb_c00296{letter-spacing:-1.016400pt;}
.ls9_c00296{letter-spacing:-0.691152pt;}
.ls4_c00296{letter-spacing:0.000000pt;}
.ls8_c00296{letter-spacing:1.551704pt;}
.ls2_c00296{letter-spacing:1.965568pt;}
.ls1_c00296{letter-spacing:2.281488pt;}
.ls6_c00296{letter-spacing:2.403984pt;}
.lse_c00296{letter-spacing:2.934008pt;}
.lsd_c00296{letter-spacing:3.140227pt;}
.ls5_c00296{letter-spacing:3.388000pt;}
.ls3_c00296{letter-spacing:3.828000pt;}
.lsc_c00296{letter-spacing:44.352176pt;}
.ls0_c00296{letter-spacing:46.886576pt;}
.lsa_c00296{letter-spacing:48.153776pt;}
.ws3_c00296{word-spacing:-89.084494pt;}
.ws0_c00296{word-spacing:-21.543984pt;}
.ws7_c00296{word-spacing:-21.421488pt;}
.ws1_c00296{word-spacing:-18.491704pt;}
.ws2_c00296{word-spacing:-16.940000pt;}
.ws9_c00296{word-spacing:0.000000pt;}
.ws5_c00296{word-spacing:1.219680pt;}
.ws8_c00296{word-spacing:2.981440pt;}
.ws6_c00296{word-spacing:4.607680pt;}
.ws4_c00296{word-spacing:6.776000pt;}
._15_c00296{margin-left:-14.974960pt;}
._19_c00296{margin-left:-2.913680pt;}
._c_c00296{margin-left:-1.341648pt;}
._9_c00296{width:1.547392pt;}
._0_c00296{width:4.058560pt;}
._13_c00296{width:5.353040pt;}
._1_c00296{width:6.640480pt;}
._b_c00296{width:8.064320pt;}
._4_c00296{width:9.283120pt;}
._7_c00296{width:11.112640pt;}
._17_c00296{width:12.846768pt;}
._11_c00296{width:13.755280pt;}
._12_c00296{width:18.159680pt;}
._6_c00296{width:19.176080pt;}
._f_c00296{width:20.328000pt;}
._3_c00296{width:21.615440pt;}
._2_c00296{width:25.312320pt;}
._14_c00296{width:26.426400pt;}
._18_c00296{width:27.782480pt;}
._e_c00296{width:29.000400pt;}
._10_c00296{width:31.065760pt;}
._d_c00296{width:32.722800pt;}
._8_c00296{width:35.833600pt;}
._a_c00296{width:37.470400pt;}
._16_c00296{width:39.283200pt;}
._5_c00296{width:41.451520pt;}
.fs4_c00296{font-size:29.040000pt;}
.fs5_c00296{font-size:34.672176pt;}
.fs6_c00296{font-size:44.352176pt;}
.fs3_c00296{font-size:46.886576pt;}
.fs2_c00296{font-size:48.153776pt;}
.fs9_c00296{font-size:53.504000pt;}
.fs7_c00296{font-size:67.584176pt;}
.fs1_c00296{font-size:67.760000pt;}
.fs8_c00296{font-size:69.168000pt;}
.fs0_c00296{font-size:76.560000pt;}
.fsa_c00296{font-size:83.072176pt;}
.y0_c00296{bottom:0.000000pt;}
.y1_c00296{bottom:68.000000pt;}
.y19_c00296{bottom:107.950520pt;}
.y18_c00296{bottom:161.168520pt;}
.y17_c00296{bottom:193.482120pt;}
.y16_c00296{bottom:223.582520pt;}
.y15_c00296{bottom:252.406920pt;}
.y14_c00296{bottom:275.533320pt;}
.y13_c00296{bottom:282.190520pt;}
.y12_c00296{bottom:311.648520pt;}
.y11_c00296{bottom:340.794120pt;}
.y10_c00296{bottom:369.310520pt;}
.yf_c00296{bottom:398.456120pt;}
.ye_c00296{bottom:426.646920pt;}
.yd_c00296{bottom:455.158920pt;}
.yc_c00296{bottom:484.304520pt;}
.yb_c00296{bottom:513.450120pt;}
.ya_c00296{bottom:542.600120pt;}
.y9_c00296{bottom:571.424520pt;}
.y8_c00296{bottom:601.520520pt;}
.y7_c00296{bottom:692.129720pt;}
.y6_c00296{bottom:720.637320pt;}
.y5_c00296{bottom:750.733320pt;}
.y4_c00296{bottom:779.562120pt;}
.y1a_c00296{bottom:795.402120pt;}
.y3_c00296{bottom:808.707720pt;}
.y2_c00296{bottom:954.752520pt;}
.h6_c00296{height:28.501172pt;}
.h8_c00296{height:29.538549pt;}
.h5_c00296{height:31.226460pt;}
.h4_c00296{height:32.070415pt;}
.h7_c00296{height:36.161996pt;}
.h9_c00296{height:66.330173pt;}
.h3_c00296{height:66.502734pt;}
.ha_c00296{height:67.850836pt;}
.hb_c00296{height:70.488184pt;}
.h2_c00296{height:75.139453pt;}
.hc_c00296{height:86.641684pt;}
.h1_c00296{height:986.666667pt;}
.h0_c00296{height:1122.666667pt;}
.w1_c00296{width:678.666667pt;}
.w0_c00296{width:793.333333pt;}
.x0_c00296{left:0.000000pt;}
.x1_c00296{left:57.333333pt;}
.x5b_c00296{left:71.166520pt;}
.x4_c00296{left:72.455720pt;}
.x68_c00296{left:89.848920pt;}
.x12_c00296{left:91.890520pt;}
.x5c_c00296{left:96.510520pt;}
.x3e_c00296{left:100.593720pt;}
.x21_c00296{left:101.724520pt;}
.x13_c00296{left:111.518920pt;}
.x33_c00296{left:120.446520pt;}
.x5_c00296{left:121.682920pt;}
.x58_c00296{left:131.169320pt;}
.x61_c00296{left:133.026120pt;}
.x4b_c00296{left:140.360920pt;}
.x22_c00296{left:142.257320pt;}
.x47_c00296{left:149.750520pt;}
.x3f_c00296{left:159.571320pt;}
.x23_c00296{left:160.930920pt;}
.x6e_c00296{left:169.854120pt;}
.x14_c00296{left:170.936520pt;}
.x69_c00296{left:178.843320pt;}
.x55_c00296{left:180.264520pt;}
.x6_c00296{left:181.170920pt;}
.x51_c00296{left:189.442920pt;}
.x2b_c00296{left:190.446120pt;}
.x6a_c00296{left:198.850120pt;}
.x7_c00296{left:200.236120pt;}
.x8_c00296{left:209.880920pt;}
.x34_c00296{left:219.068120pt;}
.x2c_c00296{left:229.003320pt;}
.x40_c00296{left:238.582120pt;}
.x9_c00296{left:239.519320pt;}
.x4c_c00296{left:240.570920pt;}
.x62_c00296{left:248.152120pt;}
.x15_c00296{left:249.062920pt;}
.x35_c00296{left:258.210520pt;}
.x16_c00296{left:259.473320pt;}
.x59_c00296{left:267.217320pt;}
.xa_c00296{left:268.660520pt;}
.x36_c00296{left:277.733320pt;}
.x24_c00296{left:278.754120pt;}
.x65_c00296{left:287.606920pt;}
.xb_c00296{left:288.654120pt;}
.x41_c00296{left:297.779720pt;}
.x2d_c00296{left:306.856920pt;}
.x17_c00296{left:308.379320pt;}
.x5d_c00296{left:317.276120pt;}
.x42_c00296{left:326.824120pt;}
.x18_c00296{left:328.218920pt;}
.x43_c00296{left:329.987720pt;}
.x25_c00296{left:336.873720pt;}
.x66_c00296{left:346.280920pt;}
.x19_c00296{left:347.222520pt;}
.x72_c00296{left:355.010520pt;}
.x26_c00296{left:356.418520pt;}
.xc_c00296{left:358.829720pt;}
.x1a_c00296{left:365.781720pt;}
.x37_c00296{left:375.285720pt;}
.x71_c00296{left:377.868520pt;}
.x2e_c00296{left:386.197720pt;}
.x52_c00296{left:394.570920pt;}
.xd_c00296{left:395.842520pt;}
.x6b_c00296{left:404.114520pt;}
.x63_c00296{left:405.812920pt;}
.x2f_c00296{left:415.228920pt;}
.x1b_c00296{left:425.366520pt;}
.x27_c00296{left:427.091320pt;}
.x44_c00296{left:434.668120pt;}
.x6c_c00296{left:443.732120pt;}
.xe_c00296{left:444.691320pt;}
.x6f_c00296{left:447.678920pt;}
.x28_c00296{left:454.732120pt;}
.x38_c00296{left:456.707720pt;}
.x1c_c00296{left:463.356120pt;}
.x64_c00296{left:472.226520pt;}
.x53_c00296{left:473.634520pt;}
.x39_c00296{left:474.879720pt;}
.xf_c00296{left:475.992920pt;}
.x73_c00296{left:482.821720pt;}
.x1d_c00296{left:483.772120pt;}
.x5e_c00296{left:492.259720pt;}
.x67_c00296{left:493.161720pt;}
.x30_c00296{left:494.059320pt;}
.x5f_c00296{left:498.512120pt;}
.x6d_c00296{left:502.287320pt;}
.x1e_c00296{left:503.620520pt;}
.x31_c00296{left:513.520520pt;}
.x4d_c00296{left:514.972520pt;}
.x48_c00296{left:523.090520pt;}
.x10_c00296{left:525.946120pt;}
.x54_c00296{left:532.075320pt;}
.x29_c00296{left:533.153320pt;}
.x4e_c00296{left:541.742120pt;}
.x32_c00296{left:543.304120pt;}
.x60_c00296{left:551.250520pt;}
.x11_c00296{left:552.979720pt;}
.x1f_c00296{left:554.642920pt;}
.x3a_c00296{left:561.269320pt;}
.x2a_c00296{left:562.611320pt;}
.x5a_c00296{left:563.588120pt;}
.x56_c00296{left:570.636920pt;}
.x3b_c00296{left:571.838120pt;}
.x75_c00296{left:579.938520pt;}
.x49_c00296{left:581.359720pt;}
.x2_c00296{left:582.547720pt;}
.x4f_c00296{left:591.167320pt;}
.x3c_c00296{left:593.292520pt;}
.x74_c00296{left:600.662520pt;}
.x45_c00296{left:601.599720pt;}
.x3_c00296{left:602.528120pt;}
.x70_c00296{left:609.370120pt;}
.x3d_c00296{left:610.329320pt;}
.x50_c00296{left:611.420520pt;}
.x57_c00296{left:620.348120pt;}
.x20_c00296{left:628.373720pt;}
.x4a_c00296{left:630.410920pt;}
.x46_c00296{left:631.334920pt;}
.x76_c00296{left:660.286920pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9865c79e6ff7c9c64b53b1bf.woff2')format("woff");}.ff1_c00297{font-family:ff1_c00297;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00297;src:url('chunks/assets/font_a6fb76a5017ecf3293473ba6.woff2')format("woff");}.ff2_c00297{font-family:ff2_c00297;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00297;src:url('chunks/assets/font_972e97a30e74e97ce1fb6018.woff2')format("woff");}.ff3_c00297{font-family:ff3_c00297;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00297;src:url('chunks/assets/font_5e1d79a9d24813023b96d769.woff2')format("woff");}.ff4_c00297{font-family:ff4_c00297;line-height:0.666000;font-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_c00297{transform:matrix(0.074325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.074325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.074325,0.000000,0.000000,0.250000,0,0);}
.mcc_c00297{transform:matrix(0.126368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126368,0.000000,0.000000,0.250000,0,0);}
.m96_c00297{transform:matrix(0.152799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152799,0.000000,0.000000,0.250000,0,0);}
.m2a_c00297{transform:matrix(0.165036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165036,0.000000,0.000000,0.250000,0,0);}
.mca_c00297{transform:matrix(0.182051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182051,0.000000,0.000000,0.250000,0,0);}
.m65_c00297{transform:matrix(0.185666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185666,0.000000,0.000000,0.250000,0,0);}
.mbc_c00297{transform:matrix(0.195946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195946,0.000000,0.000000,0.250000,0,0);}
.mcd_c00297{transform:matrix(0.197782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197782,0.000000,0.000000,0.250000,0,0);}
.ma3_c00297{transform:matrix(0.200129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200129,0.000000,0.000000,0.250000,0,0);}
.m16_c00297{transform:matrix(0.204947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204947,0.000000,0.000000,0.250000,0,0);}
.m70_c00297{transform:matrix(0.205081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205081,0.000000,0.000000,0.250000,0,0);}
.md2_c00297{transform:matrix(0.209088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209088,0.000000,0.000000,0.250000,0,0);}
.mbe_c00297{transform:matrix(0.216216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216216,0.000000,0.000000,0.250000,0,0);}
.mcb_c00297{transform:matrix(0.217183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217183,0.000000,0.000000,0.250000,0,0);}
.mb2_c00297{transform:matrix(0.232753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232753,0.000000,0.000000,0.250000,0,0);}
.m1d_c00297{transform:matrix(0.237054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237054,0.000000,0.000000,0.250000,0,0);}
.m1_c00297{transform:matrix(0.246792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246792,0.000000,0.000000,0.250000,0,0);}
.m98_c00297{transform:matrix(0.248077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248077,0.000000,0.000000,0.250000,0,0);}
.m20_c00297{transform:matrix(0.248376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248376,0.000000,0.000000,0.250000,0,0);}
.mb3_c00297{transform:matrix(0.249464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249464,0.000000,0.000000,0.250000,0,0);}
.m0_c00297{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00297{transform:matrix(0.250137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250137,0.000000,0.000000,0.250000,0,0);}
.mad_c00297{transform:matrix(0.250720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250720,0.000000,0.000000,0.250000,0,0);}
.m2f_c00297{transform:matrix(0.253480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253480,0.000000,0.000000,0.250000,0,0);}
.m7c_c00297{transform:matrix(0.254604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254604,0.000000,0.000000,0.250000,0,0);}
.mb_c00297{transform:matrix(0.254683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254683,0.000000,0.000000,0.250000,0,0);}
.m35_c00297{transform:matrix(0.255955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255955,0.000000,0.000000,0.250000,0,0);}
.m9c_c00297{transform:matrix(0.257024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257024,0.000000,0.000000,0.250000,0,0);}
.m27_c00297{transform:matrix(0.259284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259284,0.000000,0.000000,0.250000,0,0);}
.m81_c00297{transform:matrix(0.259408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259408,0.000000,0.000000,0.250000,0,0);}
.m59_c00297{transform:matrix(0.259580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259580,0.000000,0.000000,0.250000,0,0);}
.m33_c00297{transform:matrix(0.260340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260340,0.000000,0.000000,0.250000,0,0);}
.m9e_c00297{transform:matrix(0.261871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261871,0.000000,0.000000,0.250000,0,0);}
.m87_c00297{transform:matrix(0.262979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262979,0.000000,0.000000,0.250000,0,0);}
.ma4_c00297{transform:matrix(0.263373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263373,0.000000,0.000000,0.250000,0,0);}
.ma2_c00297{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m7e_c00297{transform:matrix(0.264346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264346,0.000000,0.000000,0.250000,0,0);}
.m69_c00297{transform:matrix(0.265286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265286,0.000000,0.000000,0.250000,0,0);}
.mce_c00297{transform:matrix(0.265427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265427,0.000000,0.000000,0.250000,0,0);}
.m26_c00297{transform:matrix(0.266075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266075,0.000000,0.000000,0.250000,0,0);}
.m7a_c00297{transform:matrix(0.266099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266099,0.000000,0.000000,0.250000,0,0);}
.md3_c00297{transform:matrix(0.267914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267914,0.000000,0.000000,0.250000,0,0);}
.m1e_c00297{transform:matrix(0.268329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268329,0.000000,0.000000,0.250000,0,0);}
.mc0_c00297{transform:matrix(0.268416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268416,0.000000,0.000000,0.250000,0,0);}
.m57_c00297{transform:matrix(0.269016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269016,0.000000,0.000000,0.250000,0,0);}
.m84_c00297{transform:matrix(0.270214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270214,0.000000,0.000000,0.250000,0,0);}
.m64_c00297{transform:matrix(0.270794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270794,0.000000,0.000000,0.250000,0,0);}
.m8_c00297{transform:matrix(0.270827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270827,0.000000,0.000000,0.250000,0,0);}
.m90_c00297{transform:matrix(0.273287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273287,0.000000,0.000000,0.250000,0,0);}
.m17_c00297{transform:matrix(0.273819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273819,0.000000,0.000000,0.250000,0,0);}
.m50_c00297{transform:matrix(0.274118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274118,0.000000,0.000000,0.250000,0,0);}
.mb0_c00297{transform:matrix(0.275235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275235,0.000000,0.000000,0.250000,0,0);}
.m2c_c00297{transform:matrix(0.275579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275579,0.000000,0.000000,0.250000,0,0);}
.mc_c00297{transform:matrix(0.275636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275636,0.000000,0.000000,0.250000,0,0);}
.m66_c00297{transform:matrix(0.275747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275747,0.000000,0.000000,0.250000,0,0);}
.m45_c00297{transform:matrix(0.275770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275770,0.000000,0.000000,0.250000,0,0);}
.m14_c00297{transform:matrix(0.278171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278171,0.000000,0.000000,0.250000,0,0);}
.mb1_c00297{transform:matrix(0.278560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278560,0.000000,0.000000,0.250000,0,0);}
.mb7_c00297{transform:matrix(0.278623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278623,0.000000,0.000000,0.250000,0,0);}
.md8_c00297{transform:matrix(0.279020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279020,0.000000,0.000000,0.250000,0,0);}
.m6b_c00297{transform:matrix(0.280582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280582,0.000000,0.000000,0.250000,0,0);}
.m85_c00297{transform:matrix(0.280582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280582,0.000000,0.000000,0.250000,0,0);}
.ma1_c00297{transform:matrix(0.281416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281416,0.000000,0.000000,0.250000,0,0);}
.m63_c00297{transform:matrix(0.283531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283531,0.000000,0.000000,0.250000,0,0);}
.m7_c00297{transform:matrix(0.284192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284192,0.000000,0.000000,0.250000,0,0);}
.mc4_c00297{transform:matrix(0.284751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284751,0.000000,0.000000,0.250000,0,0);}
.m53_c00297{transform:matrix(0.284960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284960,0.000000,0.000000,0.250000,0,0);}
.m58_c00297{transform:matrix(0.285135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285135,0.000000,0.000000,0.250000,0,0);}
.m5b_c00297{transform:matrix(0.285285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285285,0.000000,0.000000,0.250000,0,0);}
.m99_c00297{transform:matrix(0.285497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285497,0.000000,0.000000,0.250000,0,0);}
.mb9_c00297{transform:matrix(0.285544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285544,0.000000,0.000000,0.250000,0,0);}
.m95_c00297{transform:matrix(0.285865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285865,0.000000,0.000000,0.250000,0,0);}
.m9_c00297{transform:matrix(0.286052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286052,0.000000,0.000000,0.250000,0,0);}
.m74_c00297{transform:matrix(0.286494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286494,0.000000,0.000000,0.250000,0,0);}
.m51_c00297{transform:matrix(0.286532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286532,0.000000,0.000000,0.250000,0,0);}
.mab_c00297{transform:matrix(0.286796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286796,0.000000,0.000000,0.250000,0,0);}
.mbb_c00297{transform:matrix(0.286829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286829,0.000000,0.000000,0.250000,0,0);}
.m6a_c00297{transform:matrix(0.287380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287380,0.000000,0.000000,0.250000,0,0);}
.m25_c00297{transform:matrix(0.287562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287562,0.000000,0.000000,0.250000,0,0);}
.m9d_c00297{transform:matrix(0.287638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287638,0.000000,0.000000,0.250000,0,0);}
.m86_c00297{transform:matrix(0.287860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287860,0.000000,0.000000,0.250000,0,0);}
.m30_c00297{transform:matrix(0.287896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287896,0.000000,0.000000,0.250000,0,0);}
.m38_c00297{transform:matrix(0.287975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287975,0.000000,0.000000,0.250000,0,0);}
.m36_c00297{transform:matrix(0.288097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288097,0.000000,0.000000,0.250000,0,0);}
.m1b_c00297{transform:matrix(0.289032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289032,0.000000,0.000000,0.250000,0,0);}
.m54_c00297{transform:matrix(0.289073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289073,0.000000,0.000000,0.250000,0,0);}
.m44_c00297{transform:matrix(0.289591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289591,0.000000,0.000000,0.250000,0,0);}
.md7_c00297{transform:matrix(0.289655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289655,0.000000,0.000000,0.250000,0,0);}
.m19_c00297{transform:matrix(0.289878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289878,0.000000,0.000000,0.250000,0,0);}
.m7b_c00297{transform:matrix(0.290025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290025,0.000000,0.000000,0.250000,0,0);}
.m7d_c00297{transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00297{transform:matrix(0.291662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291662,0.000000,0.000000,0.250000,0,0);}
.m71_c00297{transform:matrix(0.291708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291708,0.000000,0.000000,0.250000,0,0);}
.m5_c00297{transform:matrix(0.292044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292044,0.000000,0.000000,0.250000,0,0);}
.m48_c00297{transform:matrix(0.292090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292090,0.000000,0.000000,0.250000,0,0);}
.m6c_c00297{transform:matrix(0.292380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292380,0.000000,0.000000,0.250000,0,0);}
.m6d_c00297{transform:matrix(0.293132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293132,0.000000,0.000000,0.250000,0,0);}
.m13_c00297{transform:matrix(0.293164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293164,0.000000,0.000000,0.250000,0,0);}
.m11_c00297{transform:matrix(0.293774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293774,0.000000,0.000000,0.250000,0,0);}
.m8a_c00297{transform:matrix(0.293856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293856,0.000000,0.000000,0.250000,0,0);}
.ma9_c00297{transform:matrix(0.294203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294203,0.000000,0.000000,0.250000,0,0);}
.m56_c00297{transform:matrix(0.294350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294350,0.000000,0.000000,0.250000,0,0);}
.mbf_c00297{transform:matrix(0.295246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295246,0.000000,0.000000,0.250000,0,0);}
.m8e_c00297{transform:matrix(0.295310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295310,0.000000,0.000000,0.250000,0,0);}
.m62_c00297{transform:matrix(0.296466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296466,0.000000,0.000000,0.250000,0,0);}
.m2b_c00297{transform:matrix(0.297611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297611,0.000000,0.000000,0.250000,0,0);}
.m12_c00297{transform:matrix(0.297638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297638,0.000000,0.000000,0.250000,0,0);}
.m75_c00297{transform:matrix(0.298075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298075,0.000000,0.000000,0.250000,0,0);}
.mc9_c00297{transform:matrix(0.298735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298735,0.000000,0.000000,0.250000,0,0);}
.m4c_c00297{transform:matrix(0.298832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298832,0.000000,0.000000,0.250000,0,0);}
.ma8_c00297{transform:matrix(0.299030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299030,0.000000,0.000000,0.250000,0,0);}
.m83_c00297{transform:matrix(0.299121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299121,0.000000,0.000000,0.250000,0,0);}
.md5_c00297{transform:matrix(0.299123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299123,0.000000,0.000000,0.250000,0,0);}
.m4a_c00297{transform:matrix(0.299247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299247,0.000000,0.000000,0.250000,0,0);}
.mc3_c00297{transform:matrix(0.299336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299336,0.000000,0.000000,0.250000,0,0);}
.m3c_c00297{transform:matrix(0.299534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299534,0.000000,0.000000,0.250000,0,0);}
.m52_c00297{transform:matrix(0.299622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299622,0.000000,0.000000,0.250000,0,0);}
.m61_c00297{transform:matrix(0.299719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299719,0.000000,0.000000,0.250000,0,0);}
.m9b_c00297{transform:matrix(0.300206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300206,0.000000,0.000000,0.250000,0,0);}
.m89_c00297{transform:matrix(0.300614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300614,0.000000,0.000000,0.250000,0,0);}
.mb6_c00297{transform:matrix(0.301301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301301,0.000000,0.000000,0.250000,0,0);}
.m93_c00297{transform:matrix(0.301444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301444,0.000000,0.000000,0.250000,0,0);}
.m10_c00297{transform:matrix(0.302058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302058,0.000000,0.000000,0.250000,0,0);}
.m5f_c00297{transform:matrix(0.302111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302111,0.000000,0.000000,0.250000,0,0);}
.m32_c00297{transform:matrix(0.302486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302486,0.000000,0.000000,0.250000,0,0);}
.m46_c00297{transform:matrix(0.303273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303273,0.000000,0.000000,0.250000,0,0);}
.m94_c00297{transform:matrix(0.303426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303426,0.000000,0.000000,0.250000,0,0);}
.mae_c00297{transform:matrix(0.304142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304142,0.000000,0.000000,0.250000,0,0);}
.m5c_c00297{transform:matrix(0.304515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304515,0.000000,0.000000,0.250000,0,0);}
.m80_c00297{transform:matrix(0.304906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304906,0.000000,0.000000,0.250000,0,0);}
.m68_c00297{transform:matrix(0.305814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305814,0.000000,0.000000,0.250000,0,0);}
.m43_c00297{transform:matrix(0.305966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305966,0.000000,0.000000,0.250000,0,0);}
.m39_c00297{transform:matrix(0.307388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307388,0.000000,0.000000,0.250000,0,0);}
.m2d_c00297{transform:matrix(0.307417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307417,0.000000,0.000000,0.250000,0,0);}
.m2_c00297{transform:matrix(0.308332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308332,0.000000,0.000000,0.250000,0,0);}
.mb4_c00297{transform:matrix(0.308942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308942,0.000000,0.000000,0.250000,0,0);}
.ma0_c00297{transform:matrix(0.310021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310021,0.000000,0.000000,0.250000,0,0);}
.m8c_c00297{transform:matrix(0.310138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310138,0.000000,0.000000,0.250000,0,0);}
.m1a_c00297{transform:matrix(0.310262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310262,0.000000,0.000000,0.250000,0,0);}
.mc6_c00297{transform:matrix(0.310471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310471,0.000000,0.000000,0.250000,0,0);}
.md_c00297{transform:matrix(0.310482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310482,0.000000,0.000000,0.250000,0,0);}
.m4e_c00297{transform:matrix(0.310570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310570,0.000000,0.000000,0.250000,0,0);}
.m4f_c00297{transform:matrix(0.311016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311016,0.000000,0.000000,0.250000,0,0);}
.m76_c00297{transform:matrix(0.311820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311820,0.000000,0.000000,0.250000,0,0);}
.mf_c00297{transform:matrix(0.312322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312322,0.000000,0.000000,0.250000,0,0);}
.m42_c00297{transform:matrix(0.312345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312345,0.000000,0.000000,0.250000,0,0);}
.m5a_c00297{transform:matrix(0.312639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312639,0.000000,0.000000,0.250000,0,0);}
.m24_c00297{transform:matrix(0.312949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312949,0.000000,0.000000,0.250000,0,0);}
.ma6_c00297{transform:matrix(0.313002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313002,0.000000,0.000000,0.250000,0,0);}
.m73_c00297{transform:matrix(0.313039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313039,0.000000,0.000000,0.250000,0,0);}
.m6f_c00297{transform:matrix(0.313142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313142,0.000000,0.000000,0.250000,0,0);}
.m40_c00297{transform:matrix(0.313158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313158,0.000000,0.000000,0.250000,0,0);}
.m34_c00297{transform:matrix(0.313255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313255,0.000000,0.000000,0.250000,0,0);}
.md1_c00297{transform:matrix(0.313829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313829,0.000000,0.000000,0.250000,0,0);}
.m22_c00297{transform:matrix(0.313994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313994,0.000000,0.000000,0.250000,0,0);}
.md4_c00297{transform:matrix(0.314175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314175,0.000000,0.000000,0.250000,0,0);}
.m91_c00297{transform:matrix(0.314362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314362,0.000000,0.000000,0.250000,0,0);}
.m79_c00297{transform:matrix(0.314897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314897,0.000000,0.000000,0.250000,0,0);}
.m21_c00297{transform:matrix(0.315281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315281,0.000000,0.000000,0.250000,0,0);}
.m3a_c00297{transform:matrix(0.315549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315549,0.000000,0.000000,0.250000,0,0);}
.m37_c00297{transform:matrix(0.316556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316556,0.000000,0.000000,0.250000,0,0);}
.m41_c00297{transform:matrix(0.316775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316775,0.000000,0.000000,0.250000,0,0);}
.m23_c00297{transform:matrix(0.317395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317395,0.000000,0.000000,0.250000,0,0);}
.m28_c00297{transform:matrix(0.318145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318145,0.000000,0.000000,0.250000,0,0);}
.m6e_c00297{transform:matrix(0.319782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319782,0.000000,0.000000,0.250000,0,0);}
.mb5_c00297{transform:matrix(0.319871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319871,0.000000,0.000000,0.250000,0,0);}
.mc7_c00297{transform:matrix(0.320961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320961,0.000000,0.000000,0.250000,0,0);}
.m97_c00297{transform:matrix(0.321182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321182,0.000000,0.000000,0.250000,0,0);}
.m47_c00297{transform:matrix(0.321597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321597,0.000000,0.000000,0.250000,0,0);}
.ma7_c00297{transform:matrix(0.321621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321621,0.000000,0.000000,0.250000,0,0);}
.mcf_c00297{transform:matrix(0.321710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321710,0.000000,0.000000,0.250000,0,0);}
.m77_c00297{transform:matrix(0.322369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322369,0.000000,0.000000,0.250000,0,0);}
.m88_c00297{transform:matrix(0.322389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322389,0.000000,0.000000,0.250000,0,0);}
.mba_c00297{transform:matrix(0.322721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322721,0.000000,0.000000,0.250000,0,0);}
.m18_c00297{transform:matrix(0.324180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324180,0.000000,0.000000,0.250000,0,0);}
.m8f_c00297{transform:matrix(0.324403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324403,0.000000,0.000000,0.250000,0,0);}
.m92_c00297{transform:matrix(0.324528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324528,0.000000,0.000000,0.250000,0,0);}
.m9a_c00297{transform:matrix(0.324554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324554,0.000000,0.000000,0.250000,0,0);}
.m15_c00297{transform:matrix(0.324755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324755,0.000000,0.000000,0.250000,0,0);}
.me_c00297{transform:matrix(0.325287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325287,0.000000,0.000000,0.250000,0,0);}
.m7f_c00297{transform:matrix(0.325736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325736,0.000000,0.000000,0.250000,0,0);}
.md6_c00297{transform:matrix(0.327071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327071,0.000000,0.000000,0.250000,0,0);}
.m1c_c00297{transform:matrix(0.328514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328514,0.000000,0.000000,0.250000,0,0);}
.m4b_c00297{transform:matrix(0.328629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328629,0.000000,0.000000,0.250000,0,0);}
.mac_c00297{transform:matrix(0.328756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328756,0.000000,0.000000,0.250000,0,0);}
.m49_c00297{transform:matrix(0.330281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330281,0.000000,0.000000,0.250000,0,0);}
.m3b_c00297{transform:matrix(0.331126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331126,0.000000,0.000000,0.250000,0,0);}
.m4d_c00297{transform:matrix(0.335444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335444,0.000000,0.000000,0.250000,0,0);}
.m78_c00297{transform:matrix(0.335448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335448,0.000000,0.000000,0.250000,0,0);}
.m1f_c00297{transform:matrix(0.336513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336513,0.000000,0.000000,0.250000,0,0);}
.mc8_c00297{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);}
.m3d_c00297{transform:matrix(0.338482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338482,0.000000,0.000000,0.250000,0,0);}
.m5e_c00297{transform:matrix(0.338653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338653,0.000000,0.000000,0.250000,0,0);}
.m4_c00297{transform:matrix(0.338994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338994,0.000000,0.000000,0.250000,0,0);}
.m2e_c00297{transform:matrix(0.340913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340913,0.000000,0.000000,0.250000,0,0);}
.m3_c00297{transform:matrix(0.342385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342385,0.000000,0.000000,0.250000,0,0);}
.m31_c00297{transform:matrix(0.342744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342744,0.000000,0.000000,0.250000,0,0);}
.mb8_c00297{transform:matrix(0.346014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346014,0.000000,0.000000,0.250000,0,0);}
.m67_c00297{transform:matrix(0.347365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347365,0.000000,0.000000,0.250000,0,0);}
.m82_c00297{transform:matrix(0.348428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348428,0.000000,0.000000,0.250000,0,0);}
.m3f_c00297{transform:matrix(0.349926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349926,0.000000,0.000000,0.250000,0,0);}
.md0_c00297{transform:matrix(0.349968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349968,0.000000,0.000000,0.250000,0,0);}
.m8d_c00297{transform:matrix(0.353088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353088,0.000000,0.000000,0.250000,0,0);}
.m8b_c00297{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);}
.m60_c00297{transform:matrix(0.359336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359336,0.000000,0.000000,0.250000,0,0);}
.m3e_c00297{transform:matrix(0.360327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360327,0.000000,0.000000,0.250000,0,0);}
.m6_c00297{transform:matrix(0.365426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365426,0.000000,0.000000,0.250000,0,0);}
.ma_c00297{transform:matrix(0.367369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367369,0.000000,0.000000,0.250000,0,0);}
.m5d_c00297{transform:matrix(0.369009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369009,0.000000,0.000000,0.250000,0,0);}
.mc5_c00297{transform:matrix(0.371671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371671,0.000000,0.000000,0.250000,0,0);}
.maf_c00297{transform:matrix(0.373238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373238,0.000000,0.000000,0.250000,0,0);}
.m55_c00297{transform:matrix(0.373258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373258,0.000000,0.000000,0.250000,0,0);}
.ma5_c00297{transform:matrix(0.375615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375615,0.000000,0.000000,0.250000,0,0);}
.mc2_c00297{transform:matrix(0.384773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384773,0.000000,0.000000,0.250000,0,0);}
.m72_c00297{transform:matrix(0.406797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406797,0.000000,0.000000,0.250000,0,0);}
.maa_c00297{transform:matrix(0.426547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426547,0.000000,0.000000,0.250000,0,0);}
.m29_c00297{transform:matrix(0.452642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452642,0.000000,0.000000,0.250000,0,0);}
.v1_c00297{vertical-align:-39.897000px;}
.v0_c00297{vertical-align:0.000000px;}
.ls7_c00297{letter-spacing:-2.938327px;}
.ls9_c00297{letter-spacing:-2.668050px;}
.ls14_c00297{letter-spacing:-2.408868px;}
.lsa_c00297{letter-spacing:-1.097712px;}
.lsf_c00297{letter-spacing:-0.525987px;}
.lsd_c00297{letter-spacing:-0.243936px;}
.ls6_c00297{letter-spacing:0.000000px;}
.ls12_c00297{letter-spacing:0.099099px;}
.ls2_c00297{letter-spacing:0.815661px;}
.ls3_c00297{letter-spacing:1.006236px;}
.ls17_c00297{letter-spacing:1.189188px;}
.lse_c00297{letter-spacing:1.570338px;}
.ls5_c00297{letter-spacing:2.119194px;}
.ls16_c00297{letter-spacing:2.692810px;}
.ls1_c00297{letter-spacing:2.866248px;}
.ls10_c00297{letter-spacing:3.155922px;}
.ls13_c00297{letter-spacing:3.544200px;}
.lsb_c00297{letter-spacing:3.603610px;}
.lsc_c00297{letter-spacing:3.623400px;}
.ls11_c00297{letter-spacing:3.682810px;}
.ls8_c00297{letter-spacing:3.811500px;}
.ls0_c00297{letter-spacing:10.443510px;}
.ls4_c00297{letter-spacing:23.859990px;}
.ls15_c00297{letter-spacing:52.747398px;}
.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;}
}
.ws1_c00297{word-spacing:-19.057500px;}
.ws0_c00297{word-spacing:-17.959788px;}
.ws9_c00297{word-spacing:0.000000px;}
.ws2_c00297{word-spacing:0.991980px;}
.ws4_c00297{word-spacing:1.905750px;}
.ws8_c00297{word-spacing:2.286900px;}
.ws5_c00297{word-spacing:3.811500px;}
.ws6_c00297{word-spacing:4.878720px;}
.ws3_c00297{word-spacing:5.260860px;}
.ws7_c00297{word-spacing:7.623000px;}
._c_c00297{margin-left:-11.891880px;}
._19_c00297{margin-left:-9.909900px;}
._2_c00297{margin-left:-1.304820px;}
._d_c00297{width:6.098400px;}
._0_c00297{width:7.623000px;}
._3_c00297{width:8.969301px;}
._9_c00297{width:10.290060px;}
._1_c00297{width:12.426480px;}
._16_c00297{width:15.017310px;}
._15_c00297{width:16.133139px;}
._7_c00297{width:17.532900px;}
._5_c00297{width:21.420630px;}
._11_c00297{width:22.869000px;}
._4_c00297{width:24.012450px;}
._12_c00297{width:25.155900px;}
._b_c00297{width:26.680500px;}
._14_c00297{width:28.552392px;}
._e_c00297{width:29.729700px;}
._17_c00297{width:31.329540px;}
._8_c00297{width:32.926410px;}
._10_c00297{width:34.760880px;}
._6_c00297{width:36.283500px;}
._13_c00297{width:37.877400px;}
._18_c00297{width:39.105000px;}
._f_c00297{width:45.356850px;}
._a_c00297{width:48.176370px;}
._1a_c00297{width:114.809310px;}
.fc0_c00297{color:transparent;}
.fs10_c00297{font-size:22.572000px;}
.fsd_c00297{font-size:24.156000px;}
.fs7_c00297{font-size:28.314000px;}
.fsb_c00297{font-size:31.878000px;}
.fsf_c00297{font-size:33.264000px;}
.fse_c00297{font-size:34.056198px;}
.fsa_c00297{font-size:50.094000px;}
.fs8_c00297{font-size:52.747398px;}
.fs9_c00297{font-size:53.856198px;}
.fsc_c00297{font-size:56.628000px;}
.fs2_c00297{font-size:64.152198px;}
.fs6_c00297{font-size:70.884000px;}
.fs3_c00297{font-size:72.072198px;}
.fs4_c00297{font-size:72.468000px;}
.fs5_c00297{font-size:73.656198px;}
.fs1_c00297{font-size:76.230000px;}
.fs0_c00297{font-size:83.952198px;}
.y0_c00297{bottom:0.000000px;}
.y21_c00297{bottom:60.851385px;}
.y20_c00297{bottom:62.281935px;}
.y1_c00297{bottom:76.500000px;}
.y1f_c00297{bottom:86.873535px;}
.y1e_c00297{bottom:90.437535px;}
.y1d_c00297{bottom:98.991135px;}
.y1c_c00297{bottom:134.269785px;}
.y1b_c00297{bottom:164.920185px;}
.y1a_c00297{bottom:198.065385px;}
.y19_c00297{bottom:264.360735px;}
.y18_c00297{bottom:300.352185px;}
.y17_c00297{bottom:332.789535px;}
.y16_c00297{bottom:365.221935px;}
.y15_c00297{bottom:398.362185px;}
.y14_c00297{bottom:412.261785px;}
.y13_c00297{bottom:430.443135px;}
.y12_c00297{bottom:462.157785px;}
.y11_c00297{bottom:494.590185px;}
.y10_c00297{bottom:494.594145px;}
.yf_c00297{bottom:527.735385px;}
.ye_c00297{bottom:559.816335px;}
.yd_c00297{bottom:592.600185px;}
.yc_c00297{bottom:626.106735px;}
.yb_c00297{bottom:658.895535px;}
.ya_c00297{bottom:691.684335px;}
.y9_c00297{bottom:725.542335px;}
.y8_c00297{bottom:758.331135px;}
.y7_c00297{bottom:790.050735px;}
.y6_c00297{bottom:824.972985px;}
.y5_c00297{bottom:857.405385px;}
.y4_c00297{bottom:890.194185px;}
.y3_c00297{bottom:922.270185px;}
.y2_c00297{bottom:1072.319535px;}
.h10_c00297{height:23.541891px;}
.hd_c00297{height:25.193953px;}
.h8_c00297{height:29.530617px;}
.hf_c00297{height:34.693313px;}
.h9_c00297{height:35.129767px;}
.he_c00297{height:35.519550px;}
.hb_c00297{height:52.246477px;}
.ha_c00297{height:56.170332px;}
.hc_c00297{height:59.061234px;}
.h7_c00297{height:69.568770px;}
.h4_c00297{height:70.734921px;}
.h5_c00297{height:71.123379px;}
.h6_c00297{height:74.231637px;}
.h3_c00297{height:74.815576px;}
.h2_c00297{height:82.394491px;}
.h1_c00297{height:1110.000000px;}
.h0_c00297{height:1263.000000px;}
.w1_c00297{width:763.500000px;}
.w0_c00297{width:892.500000px;}
.x0_c00297{left:0.000000px;}
.x1_c00297{left:64.500000px;}
.x2b_c00297{left:85.923135px;}
.x49_c00297{left:86.932935px;}
.x5_c00297{left:87.972435px;}
.x52_c00297{left:97.649685px;}
.x32_c00297{left:108.178335px;}
.x47_c00297{left:118.216935px;}
.x66_c00297{left:119.736585px;}
.x21_c00297{left:130.557285px;}
.x53_c00297{left:141.160185px;}
.x6_c00297{left:151.792785px;}
.x79_c00297{left:152.861985px;}
.x68_c00297{left:154.144035px;}
.x2c_c00297{left:163.643085px;}
.x4e_c00297{left:173.919285px;}
.x69_c00297{left:175.008285px;}
.x41_c00297{left:184.081635px;}
.x33_c00297{left:185.363685px;}
.x54_c00297{left:186.378435px;}
.x7_c00297{left:196.377435px;}
.x34_c00297{left:197.382285px;}
.x4a_c00297{left:198.788085px;}
.x57_c00297{left:203.233185px;}
.x22_c00297{left:207.445635px;}
.x4b_c00297{left:217.221885px;}
.x23_c00297{left:218.652435px;}
.x62_c00297{left:219.850335px;}
.x35_c00297{left:228.918735px;}
.x5c_c00297{left:230.067135px;}
.x18_c00297{left:240.105735px;}
.x76_c00297{left:241.684785px;}
.x2d_c00297{left:251.639235px;}
.x61_c00297{left:252.688635px;}
.x8_c00297{left:261.266985px;}
.x24_c00297{left:262.331235px;}
.x58_c00297{left:263.375685px;}
.x3a_c00297{left:273.379635px;}
.x2e_c00297{left:274.404285px;}
.x71_c00297{left:275.869485px;}
.x9_c00297{left:284.071635px;}
.x63_c00297{left:285.101235px;}
.xa_c00297{left:295.243785px;}
.x6d_c00297{left:296.545635px;}
.x19_c00297{left:306.524835px;}
.x64_c00297{left:307.574235px;}
.x72_c00297{left:308.935485px;}
.x42_c00297{left:317.929635px;}
.x25_c00297{left:328.428585px;}
.xb_c00297{left:329.685885px;}
.x6e_c00297{left:330.730335px;}
.x59_c00297{left:331.799535px;}
.x5a_c00297{left:340.140285px;}
.x26_c00297{left:350.718435px;}
.x6a_c00297{left:351.777735px;}
.x2f_c00297{left:360.504585px;}
.xc_c00297{left:361.578735px;}
.x55_c00297{left:362.761785px;}
.x1a_c00297{left:373.146885px;}
.x5d_c00297{left:374.201235px;}
.x3b_c00297{left:383.230035px;}
.x7a_c00297{left:384.932835px;}
.x43_c00297{left:392.971635px;}
.x30_c00297{left:394.550685px;}
.x6f_c00297{left:396.703935px;}
.xd_c00297{left:405.772335px;}
.x1b_c00297{left:416.870235px;}
.x65_c00297{left:418.464135px;}
.x27_c00297{left:419.756085px;}
.x1c_c00297{left:424.661535px;}
.xe_c00297{left:427.344435px;}
.x36_c00297{left:428.403735px;}
.x7b_c00297{left:429.433335px;}
.x28_c00297{left:439.739235px;}
.x3c_c00297{left:441.402435px;}
.x73_c00297{left:448.579935px;}
.x56_c00297{left:450.748035px;}
.x70_c00297{left:452.807235px;}
.xf_c00297{left:460.360935px;}
.x3d_c00297{left:461.593485px;}
.x7c_c00297{left:462.692385px;}
.x1d_c00297{left:471.929085px;}
.x74_c00297{left:474.008085px;}
.x37_c00297{left:483.650685px;}
.x5e_c00297{left:493.120035px;}
.x4f_c00297{left:494.699085px;}
.x29_c00297{left:503.955585px;}
.x48_c00297{left:505.747485px;}
.x10_c00297{left:515.375235px;}
.x44_c00297{left:516.414735px;}
.x11_c00297{left:526.379085px;}
.x1e_c00297{left:527.423535px;}
.x5f_c00297{left:528.542235px;}
.x38_c00297{left:537.823485px;}
.x3e_c00297{left:548.807535px;}
.x50_c00297{left:549.921285px;}
.x12_c00297{left:559.568835px;}
.x6c_c00297{left:561.702285px;}
.x2a_c00297{left:571.344885px;}
.x51_c00297{left:580.794435px;}
.x3f_c00297{left:582.729885px;}
.x13_c00297{left:593.075385px;}
.x75_c00297{left:594.847485px;}
.x45_c00297{left:604.430685px;}
.x14_c00297{left:614.984085px;}
.x5b_c00297{left:616.523535px;}
.x15_c00297{left:626.205735px;}
.x60_c00297{left:628.962885px;}
.x31_c00297{left:637.061085px;}
.x6b_c00297{left:638.367885px;}
.x16_c00297{left:647.470935px;}
.x67_c00297{left:648.703485px;}
.x2_c00297{left:658.598535px;}
.x4c_c00297{left:659.692485px;}
.x3_c00297{left:670.127085px;}
.x1f_c00297{left:680.744835px;}
.x77_c00297{left:681.922935px;}
.x4d_c00297{left:690.209235px;}
.x46_c00297{left:691.451685px;}
.x4_c00297{left:692.768385px;}
.x17_c00297{left:701.915985px;}
.x78_c00297{left:703.950435px;}
.x20_c00297{left:713.860335px;}
.x40_c00297{left:714.894885px;}
.x39_c00297{left:724.923585px;}
.x7d_c00297{left:767.201535px;}
@media print{
.v1_c00297{vertical-align:-35.464000pt;}
.v0_c00297{vertical-align:0.000000pt;}
.ls7_c00297{letter-spacing:-2.611846pt;}
.ls9_c00297{letter-spacing:-2.371600pt;}
.ls14_c00297{letter-spacing:-2.141216pt;}
.lsa_c00297{letter-spacing:-0.975744pt;}
.lsf_c00297{letter-spacing:-0.467544pt;}
.lsd_c00297{letter-spacing:-0.216832pt;}
.ls6_c00297{letter-spacing:0.000000pt;}
.ls12_c00297{letter-spacing:0.088088pt;}
.ls2_c00297{letter-spacing:0.725032pt;}
.ls3_c00297{letter-spacing:0.894432pt;}
.ls17_c00297{letter-spacing:1.057056pt;}
.lse_c00297{letter-spacing:1.395856pt;}
.ls5_c00297{letter-spacing:1.883728pt;}
.ls16_c00297{letter-spacing:2.393609pt;}
.ls1_c00297{letter-spacing:2.547776pt;}
.ls10_c00297{letter-spacing:2.805264pt;}
.ls13_c00297{letter-spacing:3.150400pt;}
.lsb_c00297{letter-spacing:3.203209pt;}
.lsc_c00297{letter-spacing:3.220800pt;}
.ls11_c00297{letter-spacing:3.273609pt;}
.ls8_c00297{letter-spacing:3.388000pt;}
.ls0_c00297{letter-spacing:9.283120pt;}
.ls4_c00297{letter-spacing:21.208880pt;}
.ls15_c00297{letter-spacing:46.886576pt;}
.ws1_c00297{word-spacing:-16.940000pt;}
.ws0_c00297{word-spacing:-15.964256pt;}
.ws9_c00297{word-spacing:0.000000pt;}
.ws2_c00297{word-spacing:0.881760pt;}
.ws4_c00297{word-spacing:1.694000pt;}
.ws8_c00297{word-spacing:2.032800pt;}
.ws5_c00297{word-spacing:3.388000pt;}
.ws6_c00297{word-spacing:4.336640pt;}
.ws3_c00297{word-spacing:4.676320pt;}
.ws7_c00297{word-spacing:6.776000pt;}
._c_c00297{margin-left:-10.570560pt;}
._19_c00297{margin-left:-8.808800pt;}
._2_c00297{margin-left:-1.159840pt;}
._d_c00297{width:5.420800pt;}
._0_c00297{width:6.776000pt;}
._3_c00297{width:7.972712pt;}
._9_c00297{width:9.146720pt;}
._1_c00297{width:11.045760pt;}
._16_c00297{width:13.348720pt;}
._15_c00297{width:14.340568pt;}
._7_c00297{width:15.584800pt;}
._5_c00297{width:19.040560pt;}
._11_c00297{width:20.328000pt;}
._4_c00297{width:21.344400pt;}
._12_c00297{width:22.360800pt;}
._b_c00297{width:23.716000pt;}
._14_c00297{width:25.379904pt;}
._e_c00297{width:26.426400pt;}
._17_c00297{width:27.848480pt;}
._8_c00297{width:29.267920pt;}
._10_c00297{width:30.898560pt;}
._6_c00297{width:32.252000pt;}
._13_c00297{width:33.668800pt;}
._18_c00297{width:34.760000pt;}
._f_c00297{width:40.317200pt;}
._a_c00297{width:42.823440pt;}
._1a_c00297{width:102.052720pt;}
.fs10_c00297{font-size:20.064000pt;}
.fsd_c00297{font-size:21.472000pt;}
.fs7_c00297{font-size:25.168000pt;}
.fsb_c00297{font-size:28.336000pt;}
.fsf_c00297{font-size:29.568000pt;}
.fse_c00297{font-size:30.272176pt;}
.fsa_c00297{font-size:44.528000pt;}
.fs8_c00297{font-size:46.886576pt;}
.fs9_c00297{font-size:47.872176pt;}
.fsc_c00297{font-size:50.336000pt;}
.fs2_c00297{font-size:57.024176pt;}
.fs6_c00297{font-size:63.008000pt;}
.fs3_c00297{font-size:64.064176pt;}
.fs4_c00297{font-size:64.416000pt;}
.fs5_c00297{font-size:65.472176pt;}
.fs1_c00297{font-size:67.760000pt;}
.fs0_c00297{font-size:74.624176pt;}
.y0_c00297{bottom:0.000000pt;}
.y21_c00297{bottom:54.090120pt;}
.y20_c00297{bottom:55.361720pt;}
.y1_c00297{bottom:68.000000pt;}
.y1f_c00297{bottom:77.220920pt;}
.y1e_c00297{bottom:80.388920pt;}
.y1d_c00297{bottom:87.992120pt;}
.y1c_c00297{bottom:119.350920pt;}
.y1b_c00297{bottom:146.595720pt;}
.y1a_c00297{bottom:176.058120pt;}
.y19_c00297{bottom:234.987320pt;}
.y18_c00297{bottom:266.979720pt;}
.y17_c00297{bottom:295.812920pt;}
.y16_c00297{bottom:324.641720pt;}
.y15_c00297{bottom:354.099720pt;}
.y14_c00297{bottom:366.454920pt;}
.y13_c00297{bottom:382.616120pt;}
.y12_c00297{bottom:410.806920pt;}
.y11_c00297{bottom:439.635720pt;}
.y10_c00297{bottom:439.639240pt;}
.yf_c00297{bottom:469.098120pt;}
.ye_c00297{bottom:497.614520pt;}
.yd_c00297{bottom:526.755720pt;}
.yc_c00297{bottom:556.539320pt;}
.yb_c00297{bottom:585.684920pt;}
.ya_c00297{bottom:614.830520pt;}
.y9_c00297{bottom:644.926520pt;}
.y8_c00297{bottom:674.072120pt;}
.y7_c00297{bottom:702.267320pt;}
.y6_c00297{bottom:733.309320pt;}
.y5_c00297{bottom:762.138120pt;}
.y4_c00297{bottom:791.283720pt;}
.y3_c00297{bottom:819.795720pt;}
.y2_c00297{bottom:953.172920pt;}
.h10_c00297{height:20.926125pt;}
.hd_c00297{height:22.394625pt;}
.h8_c00297{height:26.249438pt;}
.hf_c00297{height:30.838500pt;}
.h9_c00297{height:31.226460pt;}
.he_c00297{height:31.572934pt;}
.hb_c00297{height:46.441313pt;}
.ha_c00297{height:49.929184pt;}
.hc_c00297{height:52.498875pt;}
.h7_c00297{height:61.838906pt;}
.h4_c00297{height:62.875485pt;}
.h5_c00297{height:63.220781pt;}
.h6_c00297{height:65.983677pt;}
.h3_c00297{height:66.502734pt;}
.h2_c00297{height:73.239548pt;}
.h1_c00297{height:986.666667pt;}
.h0_c00297{height:1122.666667pt;}
.w1_c00297{width:678.666667pt;}
.w0_c00297{width:793.333333pt;}
.x0_c00297{left:0.000000pt;}
.x1_c00297{left:57.333333pt;}
.x2b_c00297{left:76.376120pt;}
.x49_c00297{left:77.273720pt;}
.x5_c00297{left:78.197720pt;}
.x52_c00297{left:86.799720pt;}
.x32_c00297{left:96.158520pt;}
.x47_c00297{left:105.081720pt;}
.x66_c00297{left:106.432520pt;}
.x21_c00297{left:116.050920pt;}
.x53_c00297{left:125.475720pt;}
.x6_c00297{left:134.926920pt;}
.x79_c00297{left:135.877320pt;}
.x68_c00297{left:137.016920pt;}
.x2c_c00297{left:145.460520pt;}
.x4e_c00297{left:154.594920pt;}
.x69_c00297{left:155.562920pt;}
.x41_c00297{left:163.628120pt;}
.x33_c00297{left:164.767720pt;}
.x54_c00297{left:165.669720pt;}
.x7_c00297{left:174.557720pt;}
.x34_c00297{left:175.450920pt;}
.x4a_c00297{left:176.700520pt;}
.x57_c00297{left:180.651720pt;}
.x22_c00297{left:184.396120pt;}
.x4b_c00297{left:193.086120pt;}
.x23_c00297{left:194.357720pt;}
.x62_c00297{left:195.422520pt;}
.x35_c00297{left:203.483320pt;}
.x5c_c00297{left:204.504120pt;}
.x18_c00297{left:213.427320pt;}
.x76_c00297{left:214.830920pt;}
.x2d_c00297{left:223.679320pt;}
.x61_c00297{left:224.612120pt;}
.x8_c00297{left:232.237320pt;}
.x24_c00297{left:233.183320pt;}
.x58_c00297{left:234.111720pt;}
.x3a_c00297{left:243.004120pt;}
.x2e_c00297{left:243.914920pt;}
.x71_c00297{left:245.217320pt;}
.x9_c00297{left:252.508120pt;}
.x63_c00297{left:253.423320pt;}
.xa_c00297{left:262.438920pt;}
.x6d_c00297{left:263.596120pt;}
.x19_c00297{left:272.466520pt;}
.x64_c00297{left:273.399320pt;}
.x72_c00297{left:274.609320pt;}
.x42_c00297{left:282.604120pt;}
.x25_c00297{left:291.936520pt;}
.xb_c00297{left:293.054120pt;}
.x6e_c00297{left:293.982520pt;}
.x59_c00297{left:294.932920pt;}
.x5a_c00297{left:302.346920pt;}
.x26_c00297{left:311.749720pt;}
.x6a_c00297{left:312.691320pt;}
.x2f_c00297{left:320.448520pt;}
.xc_c00297{left:321.403320pt;}
.x55_c00297{left:322.454920pt;}
.x1a_c00297{left:331.686120pt;}
.x5d_c00297{left:332.623320pt;}
.x3b_c00297{left:340.648920pt;}
.x7a_c00297{left:342.162520pt;}
.x43_c00297{left:349.308120pt;}
.x30_c00297{left:350.711720pt;}
.x6f_c00297{left:352.625720pt;}
.xd_c00297{left:360.686520pt;}
.x1b_c00297{left:370.551320pt;}
.x65_c00297{left:371.968120pt;}
.x27_c00297{left:373.116520pt;}
.x1c_c00297{left:377.476920pt;}
.xe_c00297{left:379.861720pt;}
.x36_c00297{left:380.803320pt;}
.x7b_c00297{left:381.718520pt;}
.x28_c00297{left:390.879320pt;}
.x3c_c00297{left:392.357720pt;}
.x73_c00297{left:398.737720pt;}
.x56_c00297{left:400.664920pt;}
.x70_c00297{left:402.495320pt;}
.xf_c00297{left:409.209720pt;}
.x3d_c00297{left:410.305320pt;}
.x7c_c00297{left:411.282120pt;}
.x1d_c00297{left:419.492520pt;}
.x74_c00297{left:421.340520pt;}
.x37_c00297{left:429.911720pt;}
.x5e_c00297{left:438.328920pt;}
.x4f_c00297{left:439.732520pt;}
.x29_c00297{left:447.960520pt;}
.x48_c00297{left:449.553320pt;}
.x10_c00297{left:458.111320pt;}
.x44_c00297{left:459.035320pt;}
.x11_c00297{left:467.892520pt;}
.x1e_c00297{left:468.820920pt;}
.x5f_c00297{left:469.815320pt;}
.x38_c00297{left:478.065320pt;}
.x3e_c00297{left:487.828920pt;}
.x50_c00297{left:488.818920pt;}
.x12_c00297{left:497.394520pt;}
.x6c_c00297{left:499.290920pt;}
.x2a_c00297{left:507.862120pt;}
.x51_c00297{left:516.261720pt;}
.x3f_c00297{left:517.982120pt;}
.x13_c00297{left:527.178120pt;}
.x75_c00297{left:528.753320pt;}
.x45_c00297{left:537.271720pt;}
.x14_c00297{left:546.652520pt;}
.x5b_c00297{left:548.020920pt;}
.x15_c00297{left:556.627320pt;}
.x60_c00297{left:559.078120pt;}
.x31_c00297{left:566.276520pt;}
.x6b_c00297{left:567.438120pt;}
.x16_c00297{left:575.529720pt;}
.x67_c00297{left:576.625320pt;}
.x2_c00297{left:585.420920pt;}
.x4c_c00297{left:586.393320pt;}
.x3_c00297{left:595.668520pt;}
.x1f_c00297{left:605.106520pt;}
.x77_c00297{left:606.153720pt;}
.x4d_c00297{left:613.519320pt;}
.x46_c00297{left:614.623720pt;}
.x4_c00297{left:615.794120pt;}
.x17_c00297{left:623.925320pt;}
.x78_c00297{left:625.733720pt;}
.x20_c00297{left:634.542520pt;}
.x40_c00297{left:635.462120pt;}
.x39_c00297{left:644.376520pt;}
.x7d_c00297{left:681.956920pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ba695dad7944903a398e79f4.woff2')format("woff");}.ff1_c00298{font-family:ff1_c00298;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00298;src:url('chunks/assets/font_cd2c9476bde78ce65086d277.woff2')format("woff");}.ff2_c00298{font-family:ff2_c00298;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00298;src:url('chunks/assets/font_99c4e363d941b70b76c4ddb6.woff2')format("woff");}.ff3_c00298{font-family:ff3_c00298;line-height:0.666000;font-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_c00298{transform:matrix(0.092759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092759,0.000000,0.000000,0.250000,0,0);}
.m7c_c00298{transform:matrix(0.126079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126079,0.000000,0.000000,0.250000,0,0);}
.mba_c00298{transform:matrix(0.146505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146505,0.000000,0.000000,0.250000,0,0);}
.m76_c00298{transform:matrix(0.164904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164904,0.000000,0.000000,0.250000,0,0);}
.m9e_c00298{transform:matrix(0.171491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171491,0.000000,0.000000,0.250000,0,0);}
.m42_c00298{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00298{transform:matrix(0.193572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193572,0.000000,0.000000,0.250000,0,0);}
.m43_c00298{transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);}
.m45_c00298{transform:matrix(0.197917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197917,0.000000,0.000000,0.250000,0,0);}
.m16_c00298{transform:matrix(0.201009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201009,0.000000,0.000000,0.250000,0,0);}
.m46_c00298{transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);}
.m23_c00298{transform:matrix(0.209034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209034,0.000000,0.000000,0.250000,0,0);}
.m57_c00298{transform:matrix(0.218550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218550,0.000000,0.000000,0.250000,0,0);}
.ma3_c00298{transform:matrix(0.219970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219970,0.000000,0.000000,0.250000,0,0);}
.m35_c00298{transform:matrix(0.222318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222318,0.000000,0.000000,0.250000,0,0);}
.m84_c00298{transform:matrix(0.226419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226419,0.000000,0.000000,0.250000,0,0);}
.m15_c00298{transform:matrix(0.226736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226736,0.000000,0.000000,0.250000,0,0);}
.ma9_c00298{transform:matrix(0.234556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234556,0.000000,0.000000,0.250000,0,0);}
.m8b_c00298{transform:matrix(0.236701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236701,0.000000,0.000000,0.250000,0,0);}
.m22_c00298{transform:matrix(0.236902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236902,0.000000,0.000000,0.250000,0,0);}
.m5_c00298{transform:matrix(0.238335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238335,0.000000,0.000000,0.250000,0,0);}
.m4_c00298{transform:matrix(0.240760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240760,0.000000,0.000000,0.250000,0,0);}
.ma4_c00298{transform:matrix(0.240795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240795,0.000000,0.000000,0.250000,0,0);}
.m2a_c00298{transform:matrix(0.240952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240952,0.000000,0.000000,0.250000,0,0);}
.mb3_c00298{transform:matrix(0.243137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243137,0.000000,0.000000,0.250000,0,0);}
.m7e_c00298{transform:matrix(0.248852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248852,0.000000,0.000000,0.250000,0,0);}
.m0_c00298{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00298{transform:matrix(0.253632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253632,0.000000,0.000000,0.250000,0,0);}
.m98_c00298{transform:matrix(0.256634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256634,0.000000,0.000000,0.250000,0,0);}
.m4d_c00298{transform:matrix(0.257420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257420,0.000000,0.000000,0.250000,0,0);}
.m1f_c00298{transform:matrix(0.258271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258271,0.000000,0.000000,0.250000,0,0);}
.m77_c00298{transform:matrix(0.258739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258739,0.000000,0.000000,0.250000,0,0);}
.maa_c00298{transform:matrix(0.258816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258816,0.000000,0.000000,0.250000,0,0);}
.ma1_c00298{transform:matrix(0.258944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258944,0.000000,0.000000,0.250000,0,0);}
.m80_c00298{transform:matrix(0.260114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260114,0.000000,0.000000,0.250000,0,0);}
.m8f_c00298{transform:matrix(0.261193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261193,0.000000,0.000000,0.250000,0,0);}
.md_c00298{transform:matrix(0.261245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261245,0.000000,0.000000,0.250000,0,0);}
.mb5_c00298{transform:matrix(0.261594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261594,0.000000,0.000000,0.250000,0,0);}
.m93_c00298{transform:matrix(0.263862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263862,0.000000,0.000000,0.250000,0,0);}
.m1d_c00298{transform:matrix(0.264472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264472,0.000000,0.000000,0.250000,0,0);}
.m5a_c00298{transform:matrix(0.265386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265386,0.000000,0.000000,0.250000,0,0);}
.m59_c00298{transform:matrix(0.265769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265769,0.000000,0.000000,0.250000,0,0);}
.m67_c00298{transform:matrix(0.267958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267958,0.000000,0.000000,0.250000,0,0);}
.m79_c00298{transform:matrix(0.268233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268233,0.000000,0.000000,0.250000,0,0);}
.m40_c00298{transform:matrix(0.270126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270126,0.000000,0.000000,0.250000,0,0);}
.m6_c00298{transform:matrix(0.270691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270691,0.000000,0.000000,0.250000,0,0);}
.m5c_c00298{transform:matrix(0.270767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270767,0.000000,0.000000,0.250000,0,0);}
.me_c00298{transform:matrix(0.273110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273110,0.000000,0.000000,0.250000,0,0);}
.m31_c00298{transform:matrix(0.274865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274865,0.000000,0.000000,0.250000,0,0);}
.m12_c00298{transform:matrix(0.275026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275026,0.000000,0.000000,0.250000,0,0);}
.m9_c00298{transform:matrix(0.275194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275194,0.000000,0.000000,0.250000,0,0);}
.m1e_c00298{transform:matrix(0.275819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275819,0.000000,0.000000,0.250000,0,0);}
.m70_c00298{transform:matrix(0.275947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275947,0.000000,0.000000,0.250000,0,0);}
.m2f_c00298{transform:matrix(0.277845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277845,0.000000,0.000000,0.250000,0,0);}
.m13_c00298{transform:matrix(0.277901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277901,0.000000,0.000000,0.250000,0,0);}
.m4c_c00298{transform:matrix(0.278079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278079,0.000000,0.000000,0.250000,0,0);}
.m66_c00298{transform:matrix(0.279716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279716,0.000000,0.000000,0.250000,0,0);}
.m75_c00298{transform:matrix(0.280172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280172,0.000000,0.000000,0.250000,0,0);}
.m5d_c00298{transform:matrix(0.280578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280578,0.000000,0.000000,0.250000,0,0);}
.m55_c00298{transform:matrix(0.281470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281470,0.000000,0.000000,0.250000,0,0);}
.mb6_c00298{transform:matrix(0.281995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281995,0.000000,0.000000,0.250000,0,0);}
.m11_c00298{transform:matrix(0.282712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282712,0.000000,0.000000,0.250000,0,0);}
.m63_c00298{transform:matrix(0.283591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283591,0.000000,0.000000,0.250000,0,0);}
.mbd_c00298{transform:matrix(0.283773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283773,0.000000,0.000000,0.250000,0,0);}
.m3f_c00298{transform:matrix(0.284343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284343,0.000000,0.000000,0.250000,0,0);}
.m2e_c00298{transform:matrix(0.285752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285752,0.000000,0.000000,0.250000,0,0);}
.m24_c00298{transform:matrix(0.285790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285790,0.000000,0.000000,0.250000,0,0);}
.mb9_c00298{transform:matrix(0.286043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286043,0.000000,0.000000,0.250000,0,0);}
.m53_c00298{transform:matrix(0.286635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286635,0.000000,0.000000,0.250000,0,0);}
.m6f_c00298{transform:matrix(0.286635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286635,0.000000,0.000000,0.250000,0,0);}
.m96_c00298{transform:matrix(0.287417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287417,0.000000,0.000000,0.250000,0,0);}
.ma7_c00298{transform:matrix(0.288819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288819,0.000000,0.000000,0.250000,0,0);}
.m7b_c00298{transform:matrix(0.289083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289083,0.000000,0.000000,0.250000,0,0);}
.m36_c00298{transform:matrix(0.289348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289348,0.000000,0.000000,0.250000,0,0);}
.m91_c00298{transform:matrix(0.289566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289566,0.000000,0.000000,0.250000,0,0);}
.m49_c00298{transform:matrix(0.289687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289687,0.000000,0.000000,0.250000,0,0);}
.ma2_c00298{transform:matrix(0.290560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290560,0.000000,0.000000,0.250000,0,0);}
.m30_c00298{transform:matrix(0.291288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291288,0.000000,0.000000,0.250000,0,0);}
.m1b_c00298{transform:matrix(0.291939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291939,0.000000,0.000000,0.250000,0,0);}
.m3a_c00298{transform:matrix(0.292318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292318,0.000000,0.000000,0.250000,0,0);}
.ma8_c00298{transform:matrix(0.293297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293297,0.000000,0.000000,0.250000,0,0);}
.mb7_c00298{transform:matrix(0.293370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293370,0.000000,0.000000,0.250000,0,0);}
.m99_c00298{transform:matrix(0.293822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293822,0.000000,0.000000,0.250000,0,0);}
.mbf_c00298{transform:matrix(0.295148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295148,0.000000,0.000000,0.250000,0,0);}
.m8a_c00298{transform:matrix(0.295165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295165,0.000000,0.000000,0.250000,0,0);}
.mbe_c00298{transform:matrix(0.296820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296820,0.000000,0.000000,0.250000,0,0);}
.m8d_c00298{transform:matrix(0.296928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296928,0.000000,0.000000,0.250000,0,0);}
.m54_c00298{transform:matrix(0.297446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297446,0.000000,0.000000,0.250000,0,0);}
.mbb_c00298{transform:matrix(0.298431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298431,0.000000,0.000000,0.250000,0,0);}
.m7d_c00298{transform:matrix(0.298729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298729,0.000000,0.000000,0.250000,0,0);}
.m5e_c00298{transform:matrix(0.298946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298946,0.000000,0.000000,0.250000,0,0);}
.m39_c00298{transform:matrix(0.299160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299160,0.000000,0.000000,0.250000,0,0);}
.m8c_c00298{transform:matrix(0.299490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299490,0.000000,0.000000,0.250000,0,0);}
.m85_c00298{transform:matrix(0.300106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300106,0.000000,0.000000,0.250000,0,0);}
.mbc_c00298{transform:matrix(0.300736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300736,0.000000,0.000000,0.250000,0,0);}
.m38_c00298{transform:matrix(0.301328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301328,0.000000,0.000000,0.250000,0,0);}
.m3d_c00298{transform:matrix(0.301560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301560,0.000000,0.000000,0.250000,0,0);}
.m1_c00298{transform:matrix(0.303605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303605,0.000000,0.000000,0.250000,0,0);}
.m4f_c00298{transform:matrix(0.304803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304803,0.000000,0.000000,0.250000,0,0);}
.m89_c00298{transform:matrix(0.304902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304902,0.000000,0.000000,0.250000,0,0);}
.m56_c00298{transform:matrix(0.304915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304915,0.000000,0.000000,0.250000,0,0);}
.m64_c00298{transform:matrix(0.305074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305074,0.000000,0.000000,0.250000,0,0);}
.m81_c00298{transform:matrix(0.305137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305137,0.000000,0.000000,0.250000,0,0);}
.m3_c00298{transform:matrix(0.306900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306900,0.000000,0.000000,0.250000,0,0);}
.m61_c00298{transform:matrix(0.307016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307016,0.000000,0.000000,0.250000,0,0);}
.m6e_c00298{transform:matrix(0.307608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307608,0.000000,0.000000,0.250000,0,0);}
.m20_c00298{transform:matrix(0.308308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308308,0.000000,0.000000,0.250000,0,0);}
.m17_c00298{transform:matrix(0.308402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308402,0.000000,0.000000,0.250000,0,0);}
.m94_c00298{transform:matrix(0.308874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308874,0.000000,0.000000,0.250000,0,0);}
.m7f_c00298{transform:matrix(0.310210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310210,0.000000,0.000000,0.250000,0,0);}
.m4b_c00298{transform:matrix(0.311627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311627,0.000000,0.000000,0.250000,0,0);}
.m74_c00298{transform:matrix(0.311661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311661,0.000000,0.000000,0.250000,0,0);}
.m50_c00298{transform:matrix(0.311692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311692,0.000000,0.000000,0.250000,0,0);}
.m8e_c00298{transform:matrix(0.313016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313016,0.000000,0.000000,0.250000,0,0);}
.m1c_c00298{transform:matrix(0.313037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313037,0.000000,0.000000,0.250000,0,0);}
.m58_c00298{transform:matrix(0.313547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313547,0.000000,0.000000,0.250000,0,0);}
.maf_c00298{transform:matrix(0.313751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313751,0.000000,0.000000,0.250000,0,0);}
.m87_c00298{transform:matrix(0.315689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315689,0.000000,0.000000,0.250000,0,0);}
.m41_c00298{transform:matrix(0.315955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315955,0.000000,0.000000,0.250000,0,0);}
.m86_c00298{transform:matrix(0.316158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316158,0.000000,0.000000,0.250000,0,0);}
.m3c_c00298{transform:matrix(0.316266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316266,0.000000,0.000000,0.250000,0,0);}
.m18_c00298{transform:matrix(0.317176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317176,0.000000,0.000000,0.250000,0,0);}
.m7_c00298{transform:matrix(0.317633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317633,0.000000,0.000000,0.250000,0,0);}
.m5b_c00298{transform:matrix(0.318308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318308,0.000000,0.000000,0.250000,0,0);}
.m3b_c00298{transform:matrix(0.318744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318744,0.000000,0.000000,0.250000,0,0);}
.m2d_c00298{transform:matrix(0.318820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318820,0.000000,0.000000,0.250000,0,0);}
.mb1_c00298{transform:matrix(0.319242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319242,0.000000,0.000000,0.250000,0,0);}
.m9c_c00298{transform:matrix(0.319277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319277,0.000000,0.000000,0.250000,0,0);}
.m10_c00298{transform:matrix(0.320013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320013,0.000000,0.000000,0.250000,0,0);}
.mad_c00298{transform:matrix(0.321054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321054,0.000000,0.000000,0.250000,0,0);}
.m6c_c00298{transform:matrix(0.321412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321412,0.000000,0.000000,0.250000,0,0);}
.ma6_c00298{transform:matrix(0.321914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321914,0.000000,0.000000,0.250000,0,0);}
.m4a_c00298{transform:matrix(0.322694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322694,0.000000,0.000000,0.250000,0,0);}
.m51_c00298{transform:matrix(0.322734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322734,0.000000,0.000000,0.250000,0,0);}
.m37_c00298{transform:matrix(0.322877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322877,0.000000,0.000000,0.250000,0,0);}
.m26_c00298{transform:matrix(0.323249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323249,0.000000,0.000000,0.250000,0,0);}
.m90_c00298{transform:matrix(0.324357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324357,0.000000,0.000000,0.250000,0,0);}
.m48_c00298{transform:matrix(0.325466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325466,0.000000,0.000000,0.250000,0,0);}
.m73_c00298{transform:matrix(0.325538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325538,0.000000,0.000000,0.250000,0,0);}
.m71_c00298{transform:matrix(0.325827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325827,0.000000,0.000000,0.250000,0,0);}
.m72_c00298{transform:matrix(0.325993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325993,0.000000,0.000000,0.250000,0,0);}
.mc_c00298{transform:matrix(0.326258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326258,0.000000,0.000000,0.250000,0,0);}
.mb4_c00298{transform:matrix(0.327562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327562,0.000000,0.000000,0.250000,0,0);}
.m6d_c00298{transform:matrix(0.329120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329120,0.000000,0.000000,0.250000,0,0);}
.m27_c00298{transform:matrix(0.329278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329278,0.000000,0.000000,0.250000,0,0);}
.mb2_c00298{transform:matrix(0.329558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329558,0.000000,0.000000,0.250000,0,0);}
.m25_c00298{transform:matrix(0.332200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332200,0.000000,0.000000,0.250000,0,0);}
.m6a_c00298{transform:matrix(0.333209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333209,0.000000,0.000000,0.250000,0,0);}
.m83_c00298{transform:matrix(0.334037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334037,0.000000,0.000000,0.250000,0,0);}
.mb8_c00298{transform:matrix(0.335589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335589,0.000000,0.000000,0.250000,0,0);}
.m47_c00298{transform:matrix(0.335641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335641,0.000000,0.000000,0.250000,0,0);}
.m33_c00298{transform:matrix(0.336573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336573,0.000000,0.000000,0.250000,0,0);}
.m34_c00298{transform:matrix(0.338785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338785,0.000000,0.000000,0.250000,0,0);}
.m7a_c00298{transform:matrix(0.338856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338856,0.000000,0.000000,0.250000,0,0);}
.m21_c00298{transform:matrix(0.341840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341840,0.000000,0.000000,0.250000,0,0);}
.m2_c00298{transform:matrix(0.341856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341856,0.000000,0.000000,0.250000,0,0);}
.m2c_c00298{transform:matrix(0.341868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341868,0.000000,0.000000,0.250000,0,0);}
.ma_c00298{transform:matrix(0.342199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342199,0.000000,0.000000,0.250000,0,0);}
.m14_c00298{transform:matrix(0.344959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344959,0.000000,0.000000,0.250000,0,0);}
.m6b_c00298{transform:matrix(0.346151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346151,0.000000,0.000000,0.250000,0,0);}
.mb_c00298{transform:matrix(0.346255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346255,0.000000,0.000000,0.250000,0,0);}
.mab_c00298{transform:matrix(0.346587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346587,0.000000,0.000000,0.250000,0,0);}
.m5f_c00298{transform:matrix(0.347525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347525,0.000000,0.000000,0.250000,0,0);}
.m65_c00298{transform:matrix(0.348012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348012,0.000000,0.000000,0.250000,0,0);}
.m60_c00298{transform:matrix(0.348752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348752,0.000000,0.000000,0.250000,0,0);}
.m95_c00298{transform:matrix(0.351387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351387,0.000000,0.000000,0.250000,0,0);}
.m62_c00298{transform:matrix(0.352330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352330,0.000000,0.000000,0.250000,0,0);}
.m69_c00298{transform:matrix(0.352461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352461,0.000000,0.000000,0.250000,0,0);}
.mac_c00298{transform:matrix(0.352595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352595,0.000000,0.000000,0.250000,0,0);}
.m9b_c00298{transform:matrix(0.358352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358352,0.000000,0.000000,0.250000,0,0);}
.m97_c00298{transform:matrix(0.359828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359828,0.000000,0.000000,0.250000,0,0);}
.m78_c00298{transform:matrix(0.364457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364457,0.000000,0.000000,0.250000,0,0);}
.m28_c00298{transform:matrix(0.364530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364530,0.000000,0.000000,0.250000,0,0);}
.m32_c00298{transform:matrix(0.366117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366117,0.000000,0.000000,0.250000,0,0);}
.m68_c00298{transform:matrix(0.372647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372647,0.000000,0.000000,0.250000,0,0);}
.m92_c00298{transform:matrix(0.378444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378444,0.000000,0.000000,0.250000,0,0);}
.m9d_c00298{transform:matrix(0.379140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379140,0.000000,0.000000,0.250000,0,0);}
.m9a_c00298{transform:matrix(0.381710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381710,0.000000,0.000000,0.250000,0,0);}
.m3e_c00298{transform:matrix(0.382562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382562,0.000000,0.000000,0.250000,0,0);}
.m29_c00298{transform:matrix(0.384297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384297,0.000000,0.000000,0.250000,0,0);}
.m2b_c00298{transform:matrix(0.388779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388779,0.000000,0.000000,0.250000,0,0);}
.ma0_c00298{transform:matrix(0.390937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390937,0.000000,0.000000,0.250000,0,0);}
.m19_c00298{transform:matrix(0.395848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395848,0.000000,0.000000,0.250000,0,0);}
.mf_c00298{transform:matrix(0.405743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405743,0.000000,0.000000,0.250000,0,0);}
.m8_c00298{transform:matrix(0.411867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411867,0.000000,0.000000,0.250000,0,0);}
.mae_c00298{transform:matrix(0.418352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418352,0.000000,0.000000,0.250000,0,0);}
.m88_c00298{transform:matrix(0.419490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419490,0.000000,0.000000,0.250000,0,0);}
.m52_c00298{transform:matrix(0.420431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420431,0.000000,0.000000,0.250000,0,0);}
.m82_c00298{transform:matrix(0.434039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434039,0.000000,0.000000,0.250000,0,0);}
.m1a_c00298{transform:matrix(0.435628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435628,0.000000,0.000000,0.250000,0,0);}
.mb0_c00298{transform:matrix(0.506473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506473,0.000000,0.000000,0.250000,0,0);}
.m44_c00298{transform:matrix(0.541666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541666,0.000000,0.000000,0.250000,0,0);}
.v0_c00298{vertical-align:0.000000px;}
.ls6_c00298{letter-spacing:-2.674980px;}
.ls11_c00298{letter-spacing:-2.048270px;}
.ls8_c00298{letter-spacing:-1.398632px;}
.ls10_c00298{letter-spacing:-0.657281px;}
.lse_c00298{letter-spacing:-0.397426px;}
.ls4_c00298{letter-spacing:0.000000px;}
.ls0_c00298{letter-spacing:0.496782px;}
.lsd_c00298{letter-spacing:1.780772px;}
.ls1_c00298{letter-spacing:1.948914px;}
.ls2_c00298{letter-spacing:1.987128px;}
.ls7_c00298{letter-spacing:2.835479px;}
.ls3_c00298{letter-spacing:3.003620px;}
.lsc_c00298{letter-spacing:3.227400px;}
.ls12_c00298{letter-spacing:3.801610px;}
.ls5_c00298{letter-spacing:3.821400px;}
.ls9_c00298{letter-spacing:4.296610px;}
.lsa_c00298{letter-spacing:4.484700px;}
.lsf_c00298{letter-spacing:49.896198px;}
.lsb_c00298{letter-spacing:51.321798px;}
.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;}
}
.ws7_c00298{word-spacing:-22.423500px;}
.ws5_c00298{word-spacing:-21.055914px;}
.ws3_c00298{word-spacing:-19.603782px;}
.ws2_c00298{word-spacing:-19.107000px;}
.ws9_c00298{word-spacing:-3.974256px;}
.ws1_c00298{word-spacing:-3.973860px;}
.ws8_c00298{word-spacing:-2.904264px;}
.wsb_c00298{word-spacing:0.000000px;}
.ws6_c00298{word-spacing:4.661316px;}
.ws0_c00298{word-spacing:4.814964px;}
.ws4_c00298{word-spacing:7.948512px;}
.wsa_c00298{word-spacing:8.942076px;}
._1b_c00298{margin-left:-14.292036px;}
._2a_c00298{margin-left:-11.706079px;}
._19_c00298{margin-left:-10.632622px;}
._10_c00298{margin-left:-9.246996px;}
._20_c00298{margin-left:-5.808528px;}
._28_c00298{margin-left:-3.970098px;}
._1c_c00298{margin-left:-2.905056px;}
._b_c00298{margin-left:-1.375704px;}
._26_c00298{width:1.069992px;}
._d_c00298{width:3.018114px;}
._29_c00298{width:4.127112px;}
._12_c00298{width:5.273928px;}
._22_c00298{width:6.337386px;}
._0_c00298{width:7.489944px;}
._9_c00298{width:8.712792px;}
._3_c00298{width:10.012068px;}
._16_c00298{width:11.922768px;}
._e_c00298{width:13.298472px;}
._17_c00298{width:15.122052px;}
._27_c00298{width:16.279560px;}
._21_c00298{width:18.037008px;}
._1f_c00298{width:19.918681px;}
._4_c00298{width:21.476268px;}
._14_c00298{width:23.501214px;}
._6_c00298{width:25.221240px;}
._c_c00298{width:26.596944px;}
._1a_c00298{width:28.393398px;}
._a_c00298{width:29.501208px;}
._1_c00298{width:31.505364px;}
._25_c00298{width:32.711184px;}
._13_c00298{width:34.086492px;}
._f_c00298{width:35.386164px;}
._2_c00298{width:37.259046px;}
._1e_c00298{width:39.222216px;}
._15_c00298{width:40.277160px;}
._8_c00298{width:41.347548px;}
._1d_c00298{width:42.646824px;}
._7_c00298{width:43.908084px;}
._18_c00298{width:45.016092px;}
._24_c00298{width:46.649614px;}
._11_c00298{width:48.148452px;}
._5_c00298{width:49.345164px;}
._23_c00298{width:51.436044px;}
.fc0_c00298{color:transparent;}
.fs6_c00298{font-size:22.374000px;}
.fs0_c00298{font-size:38.808000px;}
.fs9_c00298{font-size:49.896198px;}
.fs5_c00298{font-size:51.321798px;}
.fs3_c00298{font-size:64.548000px;}
.fsb_c00298{font-size:66.330000px;}
.fs7_c00298{font-size:66.726198px;}
.fsa_c00298{font-size:76.032198px;}
.fs1_c00298{font-size:76.428000px;}
.fs8_c00298{font-size:77.220000px;}
.fs2_c00298{font-size:85.932198px;}
.fs4_c00298{font-size:89.694000px;}
.y0_c00298{bottom:0.000000px;}
.y1_c00298{bottom:76.500000px;}
.y1b_c00298{bottom:131.062185px;}
.y1a_c00298{bottom:161.004735px;}
.y18_c00298{bottom:193.425948px;}
.y19_c00298{bottom:193.432185px;}
.y17_c00298{bottom:227.646585px;}
.y15_c00298{bottom:260.788320px;}
.y16_c00298{bottom:260.796735px;}
.y14_c00298{bottom:325.656585px;}
.y13_c00298{bottom:359.158185px;}
.y12_c00298{bottom:391.946985px;}
.y11_c00298{bottom:424.740735px;}
.y10_c00298{bottom:457.168185px;}
.yf_c00298{bottom:489.249135px;}
.ye_c00298{bottom:521.320185px;}
.yd_c00298{bottom:554.826735px;}
.yc_c00298{bottom:587.966985px;}
.yb_c00298{bottom:620.047935px;}
.ya_c00298{bottom:689.545935px;}
.y2_c00298{bottom:712.706985px;}
.y9_c00298{bottom:718.057935px;}
.y8_c00298{bottom:750.846735px;}
.y7_c00298{bottom:785.768985px;}
.y6_c00298{bottom:818.201385px;}
.y5_c00298{bottom:851.707935px;}
.y4_c00298{bottom:885.204585px;}
.y3_c00298{bottom:917.993385px;}
.h7_c00298{height:21.958857px;}
.ha_c00298{height:33.230868px;}
.h6_c00298{height:34.180317px;}
.h2_c00298{height:40.475531px;}
.h8_c00298{height:67.321547px;}
.hb_c00298{height:74.621444px;}
.h3_c00298{height:75.009902px;}
.h9_c00298{height:75.787207px;}
.h4_c00298{height:84.337753px;}
.h5_c00298{height:88.029756px;}
.h1_c00298{height:1110.000000px;}
.h0_c00298{height:1263.000000px;}
.w1_c00298{width:763.500000px;}
.w0_c00298{width:892.500000px;}
.x0_c00298{left:0.000000px;}
.x2_c00298{left:51.391950px;}
.x1_c00298{left:64.500000px;}
.x3_c00298{left:78.047700px;}
.x71_c00298{left:79.775250px;}
.x4_c00298{left:88.635750px;}
.x73_c00298{left:89.838600px;}
.x14_c00298{left:99.941550px;}
.x40_c00298{left:109.599000px;}
.x35_c00298{left:111.227550px;}
.x79_c00298{left:112.638300px;}
.x46_c00298{left:121.860150px;}
.x15_c00298{left:132.517500px;}
.x5_c00298{left:133.586700px;}
.x2b_c00298{left:144.288600px;}
.x36_c00298{left:155.411250px;}
.x4e_c00298{left:156.564600px;}
.x24_c00298{left:157.618950px;}
.x6_c00298{left:166.118100px;}
.x59_c00298{left:167.167500px;}
.x47_c00298{left:176.785350px;}
.x68_c00298{left:177.904050px;}
.x61_c00298{left:188.185200px;}
.x37_c00298{left:190.937400px;}
.x7_c00298{left:199.575150px;}
.x4f_c00298{left:201.060150px;}
.x64_c00298{left:202.352100px;}
.x2c_c00298{left:210.663150px;}
.x38_c00298{left:212.237250px;}
.x6b_c00298{left:213.831150px;}
.x16_c00298{left:221.013600px;}
.x5d_c00298{left:222.033300px;}
.x2d_c00298{left:232.784700px;}
.x17_c00298{left:242.174850px;}
.x50_c00298{left:243.635100px;}
.x74_c00298{left:246.902100px;}
.x41_c00298{left:253.945950px;}
.x18_c00298{left:255.178500px;}
.x8_c00298{left:256.430850px;}
.x6e_c00298{left:261.321450px;}
.x5a_c00298{left:266.177400px;}
.x39_c00298{left:267.880200px;}
.x9_c00298{left:276.389250px;}
.x55_c00298{left:277.651500px;}
.x2e_c00298{left:287.615850px;}
.x7a_c00298{left:291.452100px;}
.xa_c00298{left:298.693950px;}
.x48_c00298{left:309.940350px;}
.xb_c00298{left:320.790750px;}
.x3a_c00298{left:322.721250px;}
.x49_c00298{left:325.617000px;}
.x19_c00298{left:331.586700px;}
.x56_c00298{left:333.175650px;}
.x25_c00298{left:342.333150px;}
.x72_c00298{left:344.229000px;}
.x3b_c00298{left:353.495400px;}
.x4a_c00298{left:354.846750px;}
.x1a_c00298{left:364.509150px;}
.x62_c00298{left:365.637750px;}
.x1b_c00298{left:375.013050px;}
.x51_c00298{left:385.809000px;}
.x57_c00298{left:387.076200px;}
.xc_c00298{left:397.392000px;}
.x1c_c00298{left:408.326550px;}
.x52_c00298{left:409.514550px;}
.x75_c00298{left:410.588700px;}
.x76_c00298{left:411.989550px;}
.x5b_c00298{left:413.632950px;}
.x2f_c00298{left:419.850150px;}
.xd_c00298{left:420.864900px;}
.x4b_c00298{left:431.898450px;}
.x69_c00298{left:432.977550px;}
.x7b_c00298{left:442.674600px;}
.x1d_c00298{left:443.897250px;}
.x42_c00298{left:452.822100px;}
.x30_c00298{left:463.514100px;}
.x53_c00298{left:465.098100px;}
.x77_c00298{left:466.350450px;}
.x43_c00298{left:473.824950px;}
.x1e_c00298{left:476.087100px;}
.x4c_c00298{left:486.160350px;}
.xe_c00298{left:497.565150px;}
.x3c_c00298{left:508.202700px;}
.x1f_c00298{left:518.736300px;}
.x4d_c00298{left:529.997550px;}
.x5c_c00298{left:531.032100px;}
.x63_c00298{left:533.853600px;}
.x26_c00298{left:540.110400px;}
.x20_c00298{left:541.719150px;}
.x3d_c00298{left:552.084450px;}
.x31_c00298{left:553.148700px;}
.x5e_c00298{left:554.648550px;}
.x44_c00298{left:562.583400px;}
.x6f_c00298{left:564.409950px;}
.x6c_c00298{left:572.953650px;}
.x21_c00298{left:574.121850px;}
.x6a_c00298{left:576.928500px;}
.xf_c00298{left:585.155400px;}
.x65_c00298{left:587.620500px;}
.x78_c00298{left:595.956300px;}
.x5f_c00298{left:596.971050px;}
.x45_c00298{left:598.668900px;}
.x10_c00298{left:606.970050px;}
.x27_c00298{left:609.360900px;}
.x3e_c00298{left:617.993700px;}
.x11_c00298{left:627.740250px;}
.x22_c00298{left:629.096550px;}
.x32_c00298{left:639.714300px;}
.x54_c00298{left:640.793400px;}
.x12_c00298{left:649.579650px;}
.x28_c00298{left:651.846750px;}
.x60_c00298{left:653.198100px;}
.x66_c00298{left:662.919900px;}
.x67_c00298{left:665.033550px;}
.x33_c00298{left:671.320050px;}
.x23_c00298{left:673.260450px;}
.x70_c00298{left:674.299950px;}
.x29_c00298{left:683.744550px;}
.x3f_c00298{left:686.343300px;}
.x6d_c00298{left:693.570300px;}
.x13_c00298{left:695.713650px;}
.x2a_c00298{left:704.069250px;}
.x58_c00298{left:706.380900px;}
.x34_c00298{left:717.072900px;}
@media print{
.v0_c00298{vertical-align:0.000000pt;}
.ls6_c00298{letter-spacing:-2.377760pt;}
.ls11_c00298{letter-spacing:-1.820685pt;}
.ls8_c00298{letter-spacing:-1.243229pt;}
.ls10_c00298{letter-spacing:-0.584250pt;}
.lse_c00298{letter-spacing:-0.353267pt;}
.ls4_c00298{letter-spacing:0.000000pt;}
.ls0_c00298{letter-spacing:0.441584pt;}
.lsd_c00298{letter-spacing:1.582909pt;}
.ls1_c00298{letter-spacing:1.732368pt;}
.ls2_c00298{letter-spacing:1.766336pt;}
.ls7_c00298{letter-spacing:2.520426pt;}
.ls3_c00298{letter-spacing:2.669885pt;}
.lsc_c00298{letter-spacing:2.868800pt;}
.ls12_c00298{letter-spacing:3.379209pt;}
.ls5_c00298{letter-spacing:3.396800pt;}
.ls9_c00298{letter-spacing:3.819209pt;}
.lsa_c00298{letter-spacing:3.986400pt;}
.lsf_c00298{letter-spacing:44.352176pt;}
.lsb_c00298{letter-spacing:45.619376pt;}
.ws7_c00298{word-spacing:-19.932000pt;}
.ws5_c00298{word-spacing:-18.716368pt;}
.ws3_c00298{word-spacing:-17.425584pt;}
.ws2_c00298{word-spacing:-16.984000pt;}
.ws9_c00298{word-spacing:-3.532672pt;}
.ws1_c00298{word-spacing:-3.532320pt;}
.ws8_c00298{word-spacing:-2.581568pt;}
.wsb_c00298{word-spacing:0.000000pt;}
.ws6_c00298{word-spacing:4.143392pt;}
.ws0_c00298{word-spacing:4.279968pt;}
.ws4_c00298{word-spacing:7.065344pt;}
.wsa_c00298{word-spacing:7.948512pt;}
._1b_c00298{margin-left:-12.704032pt;}
._2a_c00298{margin-left:-10.405404pt;}
._19_c00298{margin-left:-9.451220pt;}
._10_c00298{margin-left:-8.219552pt;}
._20_c00298{margin-left:-5.163136pt;}
._28_c00298{margin-left:-3.528976pt;}
._1c_c00298{margin-left:-2.582272pt;}
._b_c00298{margin-left:-1.222848pt;}
._26_c00298{width:0.951104pt;}
._d_c00298{width:2.682768pt;}
._29_c00298{width:3.668544pt;}
._12_c00298{width:4.687936pt;}
._22_c00298{width:5.633232pt;}
._0_c00298{width:6.657728pt;}
._9_c00298{width:7.744704pt;}
._3_c00298{width:8.899616pt;}
._16_c00298{width:10.598016pt;}
._e_c00298{width:11.820864pt;}
._17_c00298{width:13.441824pt;}
._27_c00298{width:14.470720pt;}
._21_c00298{width:16.032896pt;}
._1f_c00298{width:17.705494pt;}
._4_c00298{width:19.090016pt;}
._14_c00298{width:20.889968pt;}
._6_c00298{width:22.418880pt;}
._c_c00298{width:23.641728pt;}
._1a_c00298{width:25.238576pt;}
._a_c00298{width:26.223296pt;}
._1_c00298{width:28.004768pt;}
._25_c00298{width:29.076608pt;}
._13_c00298{width:30.299104pt;}
._f_c00298{width:31.454368pt;}
._2_c00298{width:33.119152pt;}
._1e_c00298{width:34.864192pt;}
._15_c00298{width:35.801920pt;}
._8_c00298{width:36.753376pt;}
._1d_c00298{width:37.908288pt;}
._7_c00298{width:39.029408pt;}
._18_c00298{width:40.014304pt;}
._24_c00298{width:41.466324pt;}
._11_c00298{width:42.798624pt;}
._5_c00298{width:43.862368pt;}
._23_c00298{width:45.720928pt;}
.fs6_c00298{font-size:19.888000pt;}
.fs0_c00298{font-size:34.496000pt;}
.fs9_c00298{font-size:44.352176pt;}
.fs5_c00298{font-size:45.619376pt;}
.fs3_c00298{font-size:57.376000pt;}
.fsb_c00298{font-size:58.960000pt;}
.fs7_c00298{font-size:59.312176pt;}
.fsa_c00298{font-size:67.584176pt;}
.fs1_c00298{font-size:67.936000pt;}
.fs8_c00298{font-size:68.640000pt;}
.fs2_c00298{font-size:76.384176pt;}
.fs4_c00298{font-size:79.728000pt;}
.y0_c00298{bottom:0.000000pt;}
.y1_c00298{bottom:68.000000pt;}
.y1b_c00298{bottom:116.499720pt;}
.y1a_c00298{bottom:143.115320pt;}
.y18_c00298{bottom:171.934176pt;}
.y19_c00298{bottom:171.939720pt;}
.y17_c00298{bottom:202.352520pt;}
.y15_c00298{bottom:231.811840pt;}
.y16_c00298{bottom:231.819320pt;}
.y14_c00298{bottom:289.472520pt;}
.y13_c00298{bottom:319.251720pt;}
.y12_c00298{bottom:348.397320pt;}
.y11_c00298{bottom:377.547320pt;}
.y10_c00298{bottom:406.371720pt;}
.yf_c00298{bottom:434.888120pt;}
.ye_c00298{bottom:463.395720pt;}
.yd_c00298{bottom:493.179320pt;}
.yc_c00298{bottom:522.637320pt;}
.yb_c00298{bottom:551.153720pt;}
.ya_c00298{bottom:612.929720pt;}
.y2_c00298{bottom:633.517320pt;}
.y9_c00298{bottom:638.273720pt;}
.y8_c00298{bottom:667.419320pt;}
.y7_c00298{bottom:698.461320pt;}
.y6_c00298{bottom:727.290120pt;}
.y5_c00298{bottom:757.073720pt;}
.y4_c00298{bottom:786.848520pt;}
.y3_c00298{bottom:815.994120pt;}
.h7_c00298{height:19.518984pt;}
.ha_c00298{height:29.538549pt;}
.h6_c00298{height:30.382504pt;}
.h2_c00298{height:35.978250pt;}
.h8_c00298{height:59.841375pt;}
.hb_c00298{height:66.330173pt;}
.h3_c00298{height:66.675469pt;}
.h9_c00298{height:67.366406pt;}
.h4_c00298{height:74.966891pt;}
.h5_c00298{height:78.248672pt;}
.h1_c00298{height:986.666667pt;}
.h0_c00298{height:1122.666667pt;}
.w1_c00298{width:678.666667pt;}
.w0_c00298{width:793.333333pt;}
.x0_c00298{left:0.000000pt;}
.x2_c00298{left:45.681733pt;}
.x1_c00298{left:57.333333pt;}
.x3_c00298{left:69.375733pt;}
.x71_c00298{left:70.911333pt;}
.x4_c00298{left:78.787333pt;}
.x73_c00298{left:79.856533pt;}
.x14_c00298{left:88.836933pt;}
.x40_c00298{left:97.421333pt;}
.x35_c00298{left:98.868933pt;}
.x79_c00298{left:100.122933pt;}
.x46_c00298{left:108.320133pt;}
.x15_c00298{left:117.793333pt;}
.x5_c00298{left:118.743733pt;}
.x2b_c00298{left:128.256533pt;}
.x36_c00298{left:138.143333pt;}
.x4e_c00298{left:139.168533pt;}
.x24_c00298{left:140.105733pt;}
.x6_c00298{left:147.660533pt;}
.x59_c00298{left:148.593333pt;}
.x47_c00298{left:157.142533pt;}
.x68_c00298{left:158.136933pt;}
.x61_c00298{left:167.275733pt;}
.x37_c00298{left:169.722133pt;}
.x7_c00298{left:177.400133pt;}
.x4f_c00298{left:178.720133pt;}
.x64_c00298{left:179.868533pt;}
.x2c_c00298{left:187.256133pt;}
.x38_c00298{left:188.655333pt;}
.x6b_c00298{left:190.072133pt;}
.x16_c00298{left:196.456533pt;}
.x5d_c00298{left:197.362933pt;}
.x2d_c00298{left:206.919733pt;}
.x17_c00298{left:215.266533pt;}
.x50_c00298{left:216.564533pt;}
.x74_c00298{left:219.468533pt;}
.x41_c00298{left:225.729733pt;}
.x18_c00298{left:226.825333pt;}
.x8_c00298{left:227.938533pt;}
.x6e_c00298{left:232.285733pt;}
.x5a_c00298{left:236.602133pt;}
.x39_c00298{left:238.115733pt;}
.x9_c00298{left:245.679333pt;}
.x55_c00298{left:246.801333pt;}
.x2e_c00298{left:255.658533pt;}
.x7a_c00298{left:259.068533pt;}
.xa_c00298{left:265.505733pt;}
.x48_c00298{left:275.502533pt;}
.xb_c00298{left:285.147333pt;}
.x3a_c00298{left:286.863333pt;}
.x49_c00298{left:289.437333pt;}
.x19_c00298{left:294.743733pt;}
.x56_c00298{left:296.156133pt;}
.x25_c00298{left:304.296133pt;}
.x72_c00298{left:305.981333pt;}
.x3b_c00298{left:314.218133pt;}
.x4a_c00298{left:315.419333pt;}
.x1a_c00298{left:324.008133pt;}
.x62_c00298{left:325.011333pt;}
.x1b_c00298{left:333.344933pt;}
.x51_c00298{left:342.941333pt;}
.x57_c00298{left:344.067733pt;}
.xc_c00298{left:353.237333pt;}
.x1c_c00298{left:362.956933pt;}
.x52_c00298{left:364.012933pt;}
.x75_c00298{left:364.967733pt;}
.x76_c00298{left:366.212933pt;}
.x5b_c00298{left:367.673733pt;}
.x2f_c00298{left:373.200133pt;}
.xd_c00298{left:374.102133pt;}
.x4b_c00298{left:383.909733pt;}
.x69_c00298{left:384.868933pt;}
.x7b_c00298{left:393.488533pt;}
.x1d_c00298{left:394.575333pt;}
.x42_c00298{left:402.508533pt;}
.x30_c00298{left:412.012533pt;}
.x53_c00298{left:413.420533pt;}
.x77_c00298{left:414.533733pt;}
.x43_c00298{left:421.177733pt;}
.x1e_c00298{left:423.188533pt;}
.x4c_c00298{left:432.142533pt;}
.xe_c00298{left:442.280133pt;}
.x3c_c00298{left:451.735733pt;}
.x1f_c00298{left:461.098933pt;}
.x4d_c00298{left:471.108933pt;}
.x5c_c00298{left:472.028533pt;}
.x63_c00298{left:474.536533pt;}
.x26_c00298{left:480.098133pt;}
.x20_c00298{left:481.528133pt;}
.x3d_c00298{left:490.741733pt;}
.x31_c00298{left:491.687733pt;}
.x5e_c00298{left:493.020933pt;}
.x44_c00298{left:500.074133pt;}
.x6f_c00298{left:501.697733pt;}
.x6c_c00298{left:509.292133pt;}
.x21_c00298{left:510.330533pt;}
.x6a_c00298{left:512.825333pt;}
.xf_c00298{left:520.138133pt;}
.x65_c00298{left:522.329333pt;}
.x78_c00298{left:529.738933pt;}
.x5f_c00298{left:530.640933pt;}
.x45_c00298{left:532.150133pt;}
.x10_c00298{left:539.528933pt;}
.x27_c00298{left:541.654133pt;}
.x3e_c00298{left:549.327733pt;}
.x11_c00298{left:557.991333pt;}
.x22_c00298{left:559.196933pt;}
.x32_c00298{left:568.634933pt;}
.x54_c00298{left:569.594133pt;}
.x12_c00298{left:577.404133pt;}
.x28_c00298{left:579.419333pt;}
.x60_c00298{left:580.620533pt;}
.x66_c00298{left:589.262133pt;}
.x67_c00298{left:591.140933pt;}
.x33_c00298{left:596.728933pt;}
.x23_c00298{left:598.453733pt;}
.x70_c00298{left:599.377733pt;}
.x29_c00298{left:607.772933pt;}
.x3f_c00298{left:610.082933pt;}
.x6d_c00298{left:616.506933pt;}
.x13_c00298{left:618.412133pt;}
.x2a_c00298{left:625.839333pt;}
.x58_c00298{left:627.894133pt;}
.x34_c00298{left:637.398133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_98f11f02654d198d57f6728a.woff2')format("woff");}.ff1_c00299{font-family:ff1_c00299;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00299;src:url('chunks/assets/font_9ce6bdc443982ac7fe6d0fab.woff2')format("woff");}.ff2_c00299{font-family:ff2_c00299;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00299;src:url('chunks/assets/font_e91dccbcbf698ab4dbad1985.woff2')format("woff");}.ff3_c00299{font-family:ff3_c00299;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00299;src:url('chunks/assets/font_84c660a2cf93f090e981d2b6.woff2')format("woff");}.ff4_c00299{font-family:ff4_c00299;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m22_c00299{transform:matrix(0.231227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231227,0.000000,0.000000,0.250000,0,0);}
.m46_c00299{transform:matrix(0.245904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245904,0.000000,0.000000,0.250000,0,0);}
.m7_c00299{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m42_c00299{transform:matrix(0.250440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250440,0.000000,0.000000,0.250000,0,0);}
.m8_c00299{transform:matrix(0.250825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250825,0.000000,0.000000,0.250000,0,0);}
.m21_c00299{transform:matrix(0.251385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251385,0.000000,0.000000,0.250000,0,0);}
.m76_c00299{transform:matrix(0.251792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251792,0.000000,0.000000,0.250000,0,0);}
.m57_c00299{transform:matrix(0.252638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252638,0.000000,0.000000,0.250000,0,0);}
.m71_c00299{transform:matrix(0.252719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252719,0.000000,0.000000,0.250000,0,0);}
.m37_c00299{transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);}
.m74_c00299{transform:matrix(0.253360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253360,0.000000,0.000000,0.250000,0,0);}
.m18_c00299{transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);}
.mc_c00299{transform:matrix(0.253783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253783,0.000000,0.000000,0.250000,0,0);}
.m1a_c00299{transform:matrix(0.254614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254614,0.000000,0.000000,0.250000,0,0);}
.m4d_c00299{transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);}
.m50_c00299{transform:matrix(0.256348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256348,0.000000,0.000000,0.250000,0,0);}
.mb_c00299{transform:matrix(0.256427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256427,0.000000,0.000000,0.250000,0,0);}
.m5a_c00299{transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);}
.m5c_c00299{transform:matrix(0.256886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256886,0.000000,0.000000,0.250000,0,0);}
.m12_c00299{transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);}
.m0_c00299{transform:matrix(0.259486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259486,0.000000,0.000000,0.250000,0,0);}
.m55_c00299{transform:matrix(0.259891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259891,0.000000,0.000000,0.250000,0,0);}
.m67_c00299{transform:matrix(0.262785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262785,0.000000,0.000000,0.250000,0,0);}
.m11_c00299{transform:matrix(0.263765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263765,0.000000,0.000000,0.250000,0,0);}
.m63_c00299{transform:matrix(0.264009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264009,0.000000,0.000000,0.250000,0,0);}
.m17_c00299{transform:matrix(0.264201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264201,0.000000,0.000000,0.250000,0,0);}
.m78_c00299{transform:matrix(0.264852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264852,0.000000,0.000000,0.250000,0,0);}
.m5e_c00299{transform:matrix(0.266010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266010,0.000000,0.000000,0.250000,0,0);}
.m56_c00299{transform:matrix(0.266649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266649,0.000000,0.000000,0.250000,0,0);}
.m54_c00299{transform:matrix(0.267444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267444,0.000000,0.000000,0.250000,0,0);}
.m19_c00299{transform:matrix(0.267791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267791,0.000000,0.000000,0.250000,0,0);}
.m4e_c00299{transform:matrix(0.268062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268062,0.000000,0.000000,0.250000,0,0);}
.m44_c00299{transform:matrix(0.268347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268347,0.000000,0.000000,0.250000,0,0);}
.m51_c00299{transform:matrix(0.268494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268494,0.000000,0.000000,0.250000,0,0);}
.m41_c00299{transform:matrix(0.268928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268928,0.000000,0.000000,0.250000,0,0);}
.m30_c00299{transform:matrix(0.269442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269442,0.000000,0.000000,0.250000,0,0);}
.m27_c00299{transform:matrix(0.269991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269991,0.000000,0.000000,0.250000,0,0);}
.m26_c00299{transform:matrix(0.272182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272182,0.000000,0.000000,0.250000,0,0);}
.m4a_c00299{transform:matrix(0.272207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272207,0.000000,0.000000,0.250000,0,0);}
.m2e_c00299{transform:matrix(0.272610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272610,0.000000,0.000000,0.250000,0,0);}
.m60_c00299{transform:matrix(0.273059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273059,0.000000,0.000000,0.250000,0,0);}
.m2c_c00299{transform:matrix(0.273346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273346,0.000000,0.000000,0.250000,0,0);}
.m75_c00299{transform:matrix(0.273581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273581,0.000000,0.000000,0.250000,0,0);}
.m3a_c00299{transform:matrix(0.273859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273859,0.000000,0.000000,0.250000,0,0);}
.m38_c00299{transform:matrix(0.273945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273945,0.000000,0.000000,0.250000,0,0);}
.m32_c00299{transform:matrix(0.274519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274519,0.000000,0.000000,0.250000,0,0);}
.m53_c00299{transform:matrix(0.274757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274757,0.000000,0.000000,0.250000,0,0);}
.m1d_c00299{transform:matrix(0.276095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276095,0.000000,0.000000,0.250000,0,0);}
.m4c_c00299{transform:matrix(0.276793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276793,0.000000,0.000000,0.250000,0,0);}
.m31_c00299{transform:matrix(0.276833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276833,0.000000,0.000000,0.250000,0,0);}
.m72_c00299{transform:matrix(0.277438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277438,0.000000,0.000000,0.250000,0,0);}
.m43_c00299{transform:matrix(0.278275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278275,0.000000,0.000000,0.250000,0,0);}
.m6e_c00299{transform:matrix(0.279899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279899,0.000000,0.000000,0.250000,0,0);}
.m47_c00299{transform:matrix(0.280187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280187,0.000000,0.000000,0.250000,0,0);}
.m15_c00299{transform:matrix(0.280286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280286,0.000000,0.000000,0.250000,0,0);}
.m45_c00299{transform:matrix(0.280463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280463,0.000000,0.000000,0.250000,0,0);}
.m39_c00299{transform:matrix(0.280468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280468,0.000000,0.000000,0.250000,0,0);}
.m5f_c00299{transform:matrix(0.280572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280572,0.000000,0.000000,0.250000,0,0);}
.m34_c00299{transform:matrix(0.280576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280576,0.000000,0.000000,0.250000,0,0);}
.m23_c00299{transform:matrix(0.281340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281340,0.000000,0.000000,0.250000,0,0);}
.m6_c00299{transform:matrix(0.281851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281851,0.000000,0.000000,0.250000,0,0);}
.m6f_c00299{transform:matrix(0.281988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281988,0.000000,0.000000,0.250000,0,0);}
.m49_c00299{transform:matrix(0.282852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282852,0.000000,0.000000,0.250000,0,0);}
.m2f_c00299{transform:matrix(0.283785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283785,0.000000,0.000000,0.250000,0,0);}
.m29_c00299{transform:matrix(0.284458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284458,0.000000,0.000000,0.250000,0,0);}
.m59_c00299{transform:matrix(0.284525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284525,0.000000,0.000000,0.250000,0,0);}
.mf_c00299{transform:matrix(0.284964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284964,0.000000,0.000000,0.250000,0,0);}
.m16_c00299{transform:matrix(0.285317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285317,0.000000,0.000000,0.250000,0,0);}
.m5d_c00299{transform:matrix(0.285470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285470,0.000000,0.000000,0.250000,0,0);}
.m9_c00299{transform:matrix(0.285567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285567,0.000000,0.000000,0.250000,0,0);}
.m3_c00299{transform:matrix(0.286405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286405,0.000000,0.000000,0.250000,0,0);}
.m28_c00299{transform:matrix(0.286596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286596,0.000000,0.000000,0.250000,0,0);}
.me_c00299{transform:matrix(0.287425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287425,0.000000,0.000000,0.250000,0,0);}
.m4f_c00299{transform:matrix(0.287515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287515,0.000000,0.000000,0.250000,0,0);}
.m3e_c00299{transform:matrix(0.287776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287776,0.000000,0.000000,0.250000,0,0);}
.m66_c00299{transform:matrix(0.288411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288411,0.000000,0.000000,0.250000,0,0);}
.m36_c00299{transform:matrix(0.288490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288490,0.000000,0.000000,0.250000,0,0);}
.m70_c00299{transform:matrix(0.289348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289348,0.000000,0.000000,0.250000,0,0);}
.m13_c00299{transform:matrix(0.289555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289555,0.000000,0.000000,0.250000,0,0);}
.m62_c00299{transform:matrix(0.289781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289781,0.000000,0.000000,0.250000,0,0);}
.m5b_c00299{transform:matrix(0.289877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289877,0.000000,0.000000,0.250000,0,0);}
.m3f_c00299{transform:matrix(0.289929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289929,0.000000,0.000000,0.250000,0,0);}
.m10_c00299{transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);}
.m4b_c00299{transform:matrix(0.290547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290547,0.000000,0.000000,0.250000,0,0);}
.m2b_c00299{transform:matrix(0.290709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290709,0.000000,0.000000,0.250000,0,0);}
.m77_c00299{transform:matrix(0.290721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290721,0.000000,0.000000,0.250000,0,0);}
.m4_c00299{transform:matrix(0.290816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290816,0.000000,0.000000,0.250000,0,0);}
.m58_c00299{transform:matrix(0.292400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292400,0.000000,0.000000,0.250000,0,0);}
.m20_c00299{transform:matrix(0.292559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292559,0.000000,0.000000,0.250000,0,0);}
.m2_c00299{transform:matrix(0.292882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292882,0.000000,0.000000,0.250000,0,0);}
.m14_c00299{transform:matrix(0.294893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294893,0.000000,0.000000,0.250000,0,0);}
.m65_c00299{transform:matrix(0.296594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296594,0.000000,0.000000,0.250000,0,0);}
.m25_c00299{transform:matrix(0.297118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297118,0.000000,0.000000,0.250000,0,0);}
.m6d_c00299{transform:matrix(0.297295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297295,0.000000,0.000000,0.250000,0,0);}
.m24_c00299{transform:matrix(0.297933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297933,0.000000,0.000000,0.250000,0,0);}
.m6a_c00299{transform:matrix(0.298119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298119,0.000000,0.000000,0.250000,0,0);}
.m3b_c00299{transform:matrix(0.298211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298211,0.000000,0.000000,0.250000,0,0);}
.m73_c00299{transform:matrix(0.298516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298516,0.000000,0.000000,0.250000,0,0);}
.m69_c00299{transform:matrix(0.298652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298652,0.000000,0.000000,0.250000,0,0);}
.m3c_c00299{transform:matrix(0.299125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299125,0.000000,0.000000,0.250000,0,0);}
.m6b_c00299{transform:matrix(0.299933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299933,0.000000,0.000000,0.250000,0,0);}
.m61_c00299{transform:matrix(0.302140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302140,0.000000,0.000000,0.250000,0,0);}
.m3d_c00299{transform:matrix(0.303829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303829,0.000000,0.000000,0.250000,0,0);}
.m1_c00299{transform:matrix(0.303858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303858,0.000000,0.000000,0.250000,0,0);}
.m48_c00299{transform:matrix(0.309575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309575,0.000000,0.000000,0.250000,0,0);}
.m1f_c00299{transform:matrix(0.310325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310325,0.000000,0.000000,0.250000,0,0);}
.m33_c00299{transform:matrix(0.310880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310880,0.000000,0.000000,0.250000,0,0);}
.m2a_c00299{transform:matrix(0.311147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311147,0.000000,0.000000,0.250000,0,0);}
.m52_c00299{transform:matrix(0.312248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312248,0.000000,0.000000,0.250000,0,0);}
.m6c_c00299{transform:matrix(0.312561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312561,0.000000,0.000000,0.250000,0,0);}
.m64_c00299{transform:matrix(0.314530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314530,0.000000,0.000000,0.250000,0,0);}
.m35_c00299{transform:matrix(0.314550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314550,0.000000,0.000000,0.250000,0,0);}
.m1b_c00299{transform:matrix(0.319940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319940,0.000000,0.000000,0.250000,0,0);}
.m1c_c00299{transform:matrix(0.320282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320282,0.000000,0.000000,0.250000,0,0);}
.m40_c00299{transform:matrix(0.320391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320391,0.000000,0.000000,0.250000,0,0);}
.ma_c00299{transform:matrix(0.322997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322997,0.000000,0.000000,0.250000,0,0);}
.m1e_c00299{transform:matrix(0.329385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329385,0.000000,0.000000,0.250000,0,0);}
.md_c00299{transform:matrix(0.335220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335220,0.000000,0.000000,0.250000,0,0);}
.m5_c00299{transform:matrix(0.358891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358891,0.000000,0.000000,0.250000,0,0);}
.m2d_c00299{transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);}
.m68_c00299{transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);}
.v0_c00299{vertical-align:0.000000px;}
.lsd_c00299{letter-spacing:-2.855167px;}
.lsc_c00299{letter-spacing:-0.579191px;}
.ls10_c00299{letter-spacing:-0.440511px;}
.ls5_c00299{letter-spacing:0.000000px;}
.lsa_c00299{letter-spacing:0.358974px;}
.ls6_c00299{letter-spacing:1.681416px;}
.ls2_c00299{letter-spacing:3.091738px;}
.ls9_c00299{letter-spacing:3.679087px;}
.lse_c00299{letter-spacing:3.719875px;}
.ls3_c00299{letter-spacing:3.742200px;}
.ls4_c00299{letter-spacing:3.880810px;}
.ls8_c00299{letter-spacing:4.029864px;}
.ls1_c00299{letter-spacing:4.078810px;}
.lsf_c00299{letter-spacing:4.108500px;}
.lsb_c00299{letter-spacing:4.118400px;}
.ls0_c00299{letter-spacing:4.276810px;}
.ls7_c00299{letter-spacing:55.598598px;}
.sc__c00299{text-shadow:none;}
.sc0_c00299{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00299{-webkit-text-stroke:0px transparent;}
.sc0_c00299{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00299{word-spacing:0.000000px;}
.fc0_c00299{color:transparent;}
.fs14_c00299{font-size:22.176000px;}
.fs12_c00299{font-size:27.720000px;}
.fs17_c00299{font-size:28.908000px;}
.fsc_c00299{font-size:39.600000px;}
.fsf_c00299{font-size:44.352000px;}
.fs13_c00299{font-size:44.748000px;}
.fs15_c00299{font-size:48.906198px;}
.fsd_c00299{font-size:49.896198px;}
.fs4_c00299{font-size:52.074000px;}
.fs6_c00299{font-size:55.598598px;}
.fs11_c00299{font-size:62.568000px;}
.fsa_c00299{font-size:66.330000px;}
.fs10_c00299{font-size:68.112198px;}
.fse_c00299{font-size:72.072198px;}
.fs7_c00299{font-size:73.260000px;}
.fs2_c00299{font-size:74.844000px;}
.fs5_c00299{font-size:76.428000px;}
.fs3_c00299{font-size:77.616198px;}
.fs9_c00299{font-size:78.804000px;}
.fs1_c00299{font-size:81.576198px;}
.fsb_c00299{font-size:82.170000px;}
.fs8_c00299{font-size:82.368000px;}
.fs16_c00299{font-size:84.348000px;}
.fs0_c00299{font-size:85.536198px;}
.y0_c00299{bottom:0.000000px;}
.y25_c00299{bottom:1.337535px;}
.y24_c00299{bottom:10.955385px;}
.y23_c00299{bottom:22.365135px;}
.y22_c00299{bottom:56.218185px;}
.y1_c00299{bottom:76.500000px;}
.y17_c00299{bottom:160.291935px;}
.y21_c00299{bottom:205.198335px;}
.y20_c00299{bottom:212.682735px;}
.y1f_c00299{bottom:217.310985px;}
.y16_c00299{bottom:224.438985px;}
.y14_c00299{bottom:255.445785px;}
.y15_c00299{bottom:256.163535px;}
.y1e_c00299{bottom:319.597785px;}
.y1d_c00299{bottom:332.071785px;}
.y1c_c00299{bottom:410.836185px;}
.y13_c00299{bottom:412.623135px;}
.y12_c00299{bottom:443.986335px;}
.y11_c00299{bottom:475.344585px;}
.y10_c00299{bottom:505.999935px;}
.yf_c00299{bottom:537.363135px;}
.ye_c00299{bottom:569.434185px;}
.y1b_c00299{bottom:599.376735px;}
.yd_c00299{bottom:601.158735px;}
.yc_c00299{bottom:632.873385px;}
.y1a_c00299{bottom:633.229785px;}
.y19_c00299{bottom:644.283135px;}
.yb_c00299{bottom:664.597935px;}
.y18_c00299{bottom:684.199935px;}
.ya_c00299{bottom:695.961135px;}
.y9_c00299{bottom:728.032185px;}
.y7_c00299{bottom:757.969785px;}
.y8_c00299{bottom:759.395385px;}
.y6_c00299{bottom:819.631935px;}
.y5_c00299{bottom:851.346585px;}
.y4_c00299{bottom:883.071135px;}
.y3_c00299{bottom:915.142185px;}
.y2_c00299{bottom:1060.553385px;}
.h16_c00299{height:23.128875px;}
.h14_c00299{height:28.911094px;}
.h19_c00299{height:30.150141px;}
.h8_c00299{height:37.028666px;}
.he_c00299{height:41.301563px;}
.h15_c00299{height:43.917715px;}
.h11_c00299{height:46.257750px;}
.h17_c00299{height:51.007636px;}
.hf_c00299{height:52.040175px;}
.h6_c00299{height:54.311555px;}
.h13_c00299{height:65.256469px;}
.hc_c00299{height:69.180117px;}
.h12_c00299{height:71.038894px;}
.h4_c00299{height:73.455293px;}
.h7_c00299{height:75.009902px;}
.h10_c00299{height:75.169050px;}
.h5_c00299{height:76.176054px;}
.h9_c00299{height:76.407891px;}
.hb_c00299{height:77.341816px;}
.h3_c00299{height:80.062577px;}
.hd_c00299{height:80.645361px;}
.ha_c00299{height:80.799469px;}
.h18_c00299{height:82.782949px;}
.h2_c00299{height:83.949101px;}
.h1_c00299{height:1110.000000px;}
.h0_c00299{height:1263.000000px;}
.w1_c00299{width:763.500000px;}
.w0_c00299{width:892.500000px;}
.x0_c00299{left:0.000000px;}
.x46_c00299{left:60.762285px;}
.x1b_c00299{left:61.846335px;}
.xc_c00299{left:63.326385px;}
.x1_c00299{left:64.500000px;}
.x2c_c00299{left:84.076785px;}
.x1c_c00299{left:96.224085px;}
.x47_c00299{left:104.609385px;}
.x3c_c00299{left:106.198335px;}
.xd_c00299{left:107.648685px;}
.x55_c00299{left:115.222185px;}
.x20_c00299{left:117.365535px;}
.x3_c00299{left:119.627685px;}
.x26_c00299{left:128.270385px;}
.x40_c00299{left:149.154435px;}
.x21_c00299{left:150.768135px;}
.x27_c00299{left:162.054135px;}
.x4a_c00299{left:182.205585px;}
.xe_c00299{left:184.225185px;}
.x57_c00299{left:191.140335px;}
.x4f_c00299{left:194.570685px;}
.x16_c00299{left:196.025985px;}
.x3d_c00299{left:205.252785px;}
.x48_c00299{left:215.103285px;}
.x4_c00299{left:217.726785px;}
.x1d_c00299{left:229.101885px;}
.x2d_c00299{left:238.224735px;}
.xf_c00299{left:240.016635px;}
.x53_c00299{left:249.446385px;}
.x22_c00299{left:250.901685px;}
.x33_c00299{left:259.678035px;}
.x1e_c00299{left:261.593685px;}
.x2e_c00299{left:272.285685px;}
.x23_c00299{left:281.779785px;}
.x35_c00299{left:282.967785px;}
.x41_c00299{left:294.748785px;}
.x28_c00299{left:306.039735px;}
.x17_c00299{left:315.632835px;}
.x36_c00299{left:326.280285px;}
.x10_c00299{left:328.933485px;}
.x39_c00299{left:338.551335px;}
.x50_c00299{left:348.159285px;}
.x18_c00299{left:349.995735px;}
.x58_c00299{left:357.584085px;}
.x4b_c00299{left:359.588835px;}
.x54_c00299{left:370.315485px;}
.x2f_c00299{left:371.330235px;}
.x5_c00299{left:372.453885px;}
.x51_c00299{left:380.819385px;}
.x3a_c00299{left:381.878685px;}
.x29_c00299{left:383.487435px;}
.x42_c00299{left:403.307235px;}
.x1f_c00299{left:404.856585px;}
.x11_c00299{left:415.068435px;}
.x3b_c00299{left:437.843385px;}
.x12_c00299{left:450.025335px;}
.x59_c00299{left:457.989885px;}
.x6_c00299{left:460.435185px;}
.x37_c00299{left:480.962835px;}
.x19_c00299{left:482.586435px;}
.x5a_c00299{left:489.100635px;}
.x4c_c00299{left:491.263785px;}
.x7_c00299{left:493.441785px;}
.x43_c00299{left:502.341885px;}
.x2a_c00299{left:504.133785px;}
.x3e_c00299{left:514.103085px;}
.x13_c00299{left:515.370285px;}
.x24_c00299{left:525.196035px;}
.x1a_c00299{left:526.433535px;}
.x34_c00299{left:527.977935px;}
.x30_c00299{left:536.209785px;}
.x4d_c00299{left:547.451235px;}
.x8_c00299{left:549.213435px;}
.x25_c00299{left:559.534185px;}
.x5b_c00299{left:568.350135px;}
.x49_c00299{left:570.156885px;}
.x52_c00299{left:579.344085px;}
.x9_c00299{left:581.309235px;}
.x2b_c00299{left:592.991235px;}
.x44_c00299{left:603.277335px;}
.x31_c00299{left:614.261385px;}
.x38_c00299{left:624.230685px;}
.xa_c00299{left:625.725585px;}
.x56_c00299{left:634.407885px;}
.x2_c00299{left:636.486885px;}
.x14_c00299{left:637.902585px;}
.x32_c00299{left:648.223335px;}
.x4e_c00299{left:656.306685px;}
.x45_c00299{left:657.747135px;}
.xb_c00299{left:659.271735px;}
.x3f_c00299{left:667.993635px;}
.x15_c00299{left:760.063635px;}
.x5c_c00299{left:761.296185px;}
.x5d_c00299{left:762.533685px;}
.x5e_c00299{left:763.548435px;}
@media print{
.v0_c00299{vertical-align:0.000000pt;}
.lsd_c00299{letter-spacing:-2.537926pt;}
.lsc_c00299{letter-spacing:-0.514836pt;}
.ls10_c00299{letter-spacing:-0.391566pt;}
.ls5_c00299{letter-spacing:0.000000pt;}
.lsa_c00299{letter-spacing:0.319088pt;}
.ls6_c00299{letter-spacing:1.494592pt;}
.ls2_c00299{letter-spacing:2.748211pt;}
.ls9_c00299{letter-spacing:3.270299pt;}
.lse_c00299{letter-spacing:3.306555pt;}
.ls3_c00299{letter-spacing:3.326400pt;}
.ls4_c00299{letter-spacing:3.449609pt;}
.ls8_c00299{letter-spacing:3.582101pt;}
.ls1_c00299{letter-spacing:3.625609pt;}
.lsf_c00299{letter-spacing:3.652000pt;}
.lsb_c00299{letter-spacing:3.660800pt;}
.ls0_c00299{letter-spacing:3.801609pt;}
.ls7_c00299{letter-spacing:49.420976pt;}
.ws0_c00299{word-spacing:0.000000pt;}
.fs14_c00299{font-size:19.712000pt;}
.fs12_c00299{font-size:24.640000pt;}
.fs17_c00299{font-size:25.696000pt;}
.fsc_c00299{font-size:35.200000pt;}
.fsf_c00299{font-size:39.424000pt;}
.fs13_c00299{font-size:39.776000pt;}
.fs15_c00299{font-size:43.472176pt;}
.fsd_c00299{font-size:44.352176pt;}
.fs4_c00299{font-size:46.288000pt;}
.fs6_c00299{font-size:49.420976pt;}
.fs11_c00299{font-size:55.616000pt;}
.fsa_c00299{font-size:58.960000pt;}
.fs10_c00299{font-size:60.544176pt;}
.fse_c00299{font-size:64.064176pt;}
.fs7_c00299{font-size:65.120000pt;}
.fs2_c00299{font-size:66.528000pt;}
.fs5_c00299{font-size:67.936000pt;}
.fs3_c00299{font-size:68.992176pt;}
.fs9_c00299{font-size:70.048000pt;}
.fs1_c00299{font-size:72.512176pt;}
.fsb_c00299{font-size:73.040000pt;}
.fs8_c00299{font-size:73.216000pt;}
.fs16_c00299{font-size:74.976000pt;}
.fs0_c00299{font-size:76.032176pt;}
.y0_c00299{bottom:0.000000pt;}
.y25_c00299{bottom:1.188920pt;}
.y24_c00299{bottom:9.738120pt;}
.y23_c00299{bottom:19.880120pt;}
.y22_c00299{bottom:49.971720pt;}
.y1_c00299{bottom:68.000000pt;}
.y17_c00299{bottom:142.481720pt;}
.y21_c00299{bottom:182.398520pt;}
.y20_c00299{bottom:189.051320pt;}
.y1f_c00299{bottom:193.165320pt;}
.y16_c00299{bottom:199.501320pt;}
.y14_c00299{bottom:227.062920pt;}
.y15_c00299{bottom:227.700920pt;}
.y1e_c00299{bottom:284.086920pt;}
.y1d_c00299{bottom:295.174920pt;}
.y1c_c00299{bottom:365.187720pt;}
.y13_c00299{bottom:366.776120pt;}
.y12_c00299{bottom:394.654520pt;}
.y11_c00299{bottom:422.528520pt;}
.y10_c00299{bottom:449.777720pt;}
.yf_c00299{bottom:477.656120pt;}
.ye_c00299{bottom:506.163720pt;}
.y1b_c00299{bottom:532.779320pt;}
.yd_c00299{bottom:534.363320pt;}
.yc_c00299{bottom:562.554120pt;}
.y1a_c00299{bottom:562.870920pt;}
.y19_c00299{bottom:572.696120pt;}
.yb_c00299{bottom:590.753720pt;}
.y18_c00299{bottom:608.177720pt;}
.ya_c00299{bottom:618.632120pt;}
.y9_c00299{bottom:647.139720pt;}
.y7_c00299{bottom:673.750920pt;}
.y8_c00299{bottom:675.018120pt;}
.y6_c00299{bottom:728.561720pt;}
.y5_c00299{bottom:756.752520pt;}
.y4_c00299{bottom:784.952120pt;}
.y3_c00299{bottom:813.459720pt;}
.y2_c00299{bottom:942.714120pt;}
.h16_c00299{height:20.559000pt;}
.h14_c00299{height:25.698750pt;}
.h19_c00299{height:26.800125pt;}
.h8_c00299{height:32.914370pt;}
.he_c00299{height:36.712500pt;}
.h15_c00299{height:39.037969pt;}
.h11_c00299{height:41.118000pt;}
.h17_c00299{height:45.340121pt;}
.hf_c00299{height:46.257934pt;}
.h6_c00299{height:48.276938pt;}
.h13_c00299{height:58.005750pt;}
.hc_c00299{height:61.493438pt;}
.h12_c00299{height:63.145684pt;}
.h4_c00299{height:65.293594pt;}
.h7_c00299{height:66.675469pt;}
.h10_c00299{height:66.816934pt;}
.h5_c00299{height:67.712048pt;}
.h9_c00299{height:67.918125pt;}
.hb_c00299{height:68.748281pt;}
.h3_c00299{height:71.166735pt;}
.hd_c00299{height:71.684766pt;}
.ha_c00299{height:71.821750pt;}
.h18_c00299{height:73.584844pt;}
.h2_c00299{height:74.621423pt;}
.h1_c00299{height:986.666667pt;}
.h0_c00299{height:1122.666667pt;}
.w1_c00299{width:678.666667pt;}
.w0_c00299{width:793.333333pt;}
.x0_c00299{left:0.000000pt;}
.x46_c00299{left:54.010920pt;}
.x1b_c00299{left:54.974520pt;}
.xc_c00299{left:56.290120pt;}
.x1_c00299{left:57.333333pt;}
.x2c_c00299{left:74.734920pt;}
.x1c_c00299{left:85.532520pt;}
.x47_c00299{left:92.986120pt;}
.x3c_c00299{left:94.398520pt;}
.xd_c00299{left:95.687720pt;}
.x55_c00299{left:102.419720pt;}
.x20_c00299{left:104.324920pt;}
.x3_c00299{left:106.335720pt;}
.x26_c00299{left:114.018120pt;}
.x40_c00299{left:132.581720pt;}
.x21_c00299{left:134.016120pt;}
.x27_c00299{left:144.048120pt;}
.x4a_c00299{left:161.960520pt;}
.xe_c00299{left:163.755720pt;}
.x57_c00299{left:169.902520pt;}
.x4f_c00299{left:172.951720pt;}
.x16_c00299{left:174.245320pt;}
.x3d_c00299{left:182.446920pt;}
.x48_c00299{left:191.202920pt;}
.x4_c00299{left:193.534920pt;}
.x1d_c00299{left:203.646120pt;}
.x2d_c00299{left:211.755320pt;}
.xf_c00299{left:213.348120pt;}
.x53_c00299{left:221.730120pt;}
.x22_c00299{left:223.023720pt;}
.x33_c00299{left:230.824920pt;}
.x1e_c00299{left:232.527720pt;}
.x2e_c00299{left:242.031720pt;}
.x23_c00299{left:250.470920pt;}
.x35_c00299{left:251.526920pt;}
.x41_c00299{left:261.998920pt;}
.x28_c00299{left:272.035320pt;}
.x17_c00299{left:280.562520pt;}
.x36_c00299{left:290.026920pt;}
.x10_c00299{left:292.385320pt;}
.x39_c00299{left:300.934520pt;}
.x50_c00299{left:309.474920pt;}
.x18_c00299{left:311.107320pt;}
.x58_c00299{left:317.852520pt;}
.x4b_c00299{left:319.634520pt;}
.x54_c00299{left:329.169320pt;}
.x2f_c00299{left:330.071320pt;}
.x5_c00299{left:331.070120pt;}
.x51_c00299{left:338.506120pt;}
.x3a_c00299{left:339.447720pt;}
.x29_c00299{left:340.877720pt;}
.x42_c00299{left:358.495320pt;}
.x1f_c00299{left:359.872520pt;}
.x11_c00299{left:368.949720pt;}
.x3b_c00299{left:389.194120pt;}
.x12_c00299{left:400.022520pt;}
.x59_c00299{left:407.102120pt;}
.x6_c00299{left:409.275720pt;}
.x37_c00299{left:427.522520pt;}
.x19_c00299{left:428.965720pt;}
.x5a_c00299{left:434.756120pt;}
.x4c_c00299{left:436.678920pt;}
.x7_c00299{left:438.614920pt;}
.x43_c00299{left:446.526120pt;}
.x2a_c00299{left:448.118920pt;}
.x3e_c00299{left:456.980520pt;}
.x13_c00299{left:458.106920pt;}
.x24_c00299{left:466.840920pt;}
.x1a_c00299{left:467.940920pt;}
.x34_c00299{left:469.313720pt;}
.x30_c00299{left:476.630920pt;}
.x4d_c00299{left:486.623320pt;}
.x8_c00299{left:488.189720pt;}
.x25_c00299{left:497.363720pt;}
.x5b_c00299{left:505.200120pt;}
.x49_c00299{left:506.806120pt;}
.x52_c00299{left:514.972520pt;}
.x9_c00299{left:516.719320pt;}
.x2b_c00299{left:527.103320pt;}
.x44_c00299{left:536.246520pt;}
.x31_c00299{left:546.010120pt;}
.x38_c00299{left:554.871720pt;}
.xa_c00299{left:556.200520pt;}
.x56_c00299{left:563.918120pt;}
.x2_c00299{left:565.766120pt;}
.x14_c00299{left:567.024520pt;}
.x32_c00299{left:576.198520pt;}
.x4e_c00299{left:583.383720pt;}
.x45_c00299{left:584.664120pt;}
.xb_c00299{left:586.019320pt;}
.x3f_c00299{left:593.772120pt;}
.x15_c00299{left:675.612120pt;}
.x5c_c00299{left:676.707720pt;}
.x5d_c00299{left:677.807720pt;}
.x5e_c00299{left:678.709720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fa93f18313a1cdf357f0735e.woff2')format("woff");}.ff1_c00300{font-family:ff1_c00300;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00300;src:url('chunks/assets/font_8c535dc354db72dcde6d07c8.woff2')format("woff");}.ff2_c00300{font-family:ff2_c00300;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00300;src:url('chunks/assets/font_75309ebe5465ea3c8d9ecaec.woff2')format("woff");}.ff3_c00300{font-family:ff3_c00300;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mb6_c00300{transform:matrix(0.078947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078947,0.000000,0.000000,0.250000,0,0);}
.mb7_c00300{transform:matrix(0.106067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106067,0.000000,0.000000,0.250000,0,0);}
.mab_c00300{transform:matrix(0.107843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107843,0.000000,0.000000,0.250000,0,0);}
.ma8_c00300{transform:matrix(0.132353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132353,0.000000,0.000000,0.250000,0,0);}
.maa_c00300{transform:matrix(0.158139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158139,0.000000,0.000000,0.250000,0,0);}
.m5b_c00300{transform:matrix(0.184027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184027,0.000000,0.000000,0.250000,0,0);}
.m9f_c00300{transform:matrix(0.185890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185890,0.000000,0.000000,0.250000,0,0);}
.m82_c00300{transform:matrix(0.191441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191441,0.000000,0.000000,0.250000,0,0);}
.m5c_c00300{transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);}
.m84_c00300{transform:matrix(0.195946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195946,0.000000,0.000000,0.250000,0,0);}
.ma_c00300{transform:matrix(0.198468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198468,0.000000,0.000000,0.250000,0,0);}
.m83_c00300{transform:matrix(0.199325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199325,0.000000,0.000000,0.250000,0,0);}
.m5a_c00300{transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);}
.m2e_c00300{transform:matrix(0.227723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227723,0.000000,0.000000,0.250000,0,0);}
.md_c00300{transform:matrix(0.228445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228445,0.000000,0.000000,0.250000,0,0);}
.m34_c00300{transform:matrix(0.229588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229588,0.000000,0.000000,0.250000,0,0);}
.m2_c00300{transform:matrix(0.230978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230978,0.000000,0.000000,0.250000,0,0);}
.m4a_c00300{transform:matrix(0.232318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232318,0.000000,0.000000,0.250000,0,0);}
.mb8_c00300{transform:matrix(0.235529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235529,0.000000,0.000000,0.250000,0,0);}
.m96_c00300{transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);}
.ma3_c00300{transform:matrix(0.241287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241287,0.000000,0.000000,0.250000,0,0);}
.m0_c00300{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00300{transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);}
.mb1_c00300{transform:matrix(0.252936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252936,0.000000,0.000000,0.250000,0,0);}
.mb_c00300{transform:matrix(0.256057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256057,0.000000,0.000000,0.250000,0,0);}
.m18_c00300{transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);}
.m1_c00300{transform:matrix(0.257930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257930,0.000000,0.000000,0.250000,0,0);}
.m6c_c00300{transform:matrix(0.258139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258139,0.000000,0.000000,0.250000,0,0);}
.m56_c00300{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m8a_c00300{transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);}
.m4c_c00300{transform:matrix(0.260850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260850,0.000000,0.000000,0.250000,0,0);}
.m54_c00300{transform:matrix(0.261145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261145,0.000000,0.000000,0.250000,0,0);}
.m52_c00300{transform:matrix(0.261904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261904,0.000000,0.000000,0.250000,0,0);}
.m6d_c00300{transform:matrix(0.262138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262138,0.000000,0.000000,0.250000,0,0);}
.m38_c00300{transform:matrix(0.262525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262525,0.000000,0.000000,0.250000,0,0);}
.ma6_c00300{transform:matrix(0.262908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262908,0.000000,0.000000,0.250000,0,0);}
.m11_c00300{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m3b_c00300{transform:matrix(0.265054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265054,0.000000,0.000000,0.250000,0,0);}
.m46_c00300{transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);}
.m1a_c00300{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.mba_c00300{transform:matrix(0.266338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266338,0.000000,0.000000,0.250000,0,0);}
.m35_c00300{transform:matrix(0.266384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266384,0.000000,0.000000,0.250000,0,0);}
.m7e_c00300{transform:matrix(0.266390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266390,0.000000,0.000000,0.250000,0,0);}
.m77_c00300{transform:matrix(0.267205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267205,0.000000,0.000000,0.250000,0,0);}
.ma9_c00300{transform:matrix(0.267688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267688,0.000000,0.000000,0.250000,0,0);}
.m2a_c00300{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m74_c00300{transform:matrix(0.268334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268334,0.000000,0.000000,0.250000,0,0);}
.m94_c00300{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.m2f_c00300{transform:matrix(0.268833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268833,0.000000,0.000000,0.250000,0,0);}
.mc0_c00300{transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268854,0.000000,0.000000,0.250000,0,0);}
.m7c_c00300{transform:matrix(0.269708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269708,0.000000,0.000000,0.250000,0,0);}
.m43_c00300{transform:matrix(0.270236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270236,0.000000,0.000000,0.250000,0,0);}
.m6_c00300{transform:matrix(0.270362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270362,0.000000,0.000000,0.250000,0,0);}
.m28_c00300{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.mc1_c00300{transform:matrix(0.271027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271027,0.000000,0.000000,0.250000,0,0);}
.m5_c00300{transform:matrix(0.271388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271388,0.000000,0.000000,0.250000,0,0);}
.mbd_c00300{transform:matrix(0.271852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271852,0.000000,0.000000,0.250000,0,0);}
.m2b_c00300{transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);}
.m9_c00300{transform:matrix(0.273113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273113,0.000000,0.000000,0.250000,0,0);}
.m4d_c00300{transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);}
.mac_c00300{transform:matrix(0.274823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274823,0.000000,0.000000,0.250000,0,0);}
.m53_c00300{transform:matrix(0.275566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275566,0.000000,0.000000,0.250000,0,0);}
.m70_c00300{transform:matrix(0.275733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275733,0.000000,0.000000,0.250000,0,0);}
.m4_c00300{transform:matrix(0.275898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275898,0.000000,0.000000,0.250000,0,0);}
.m50_c00300{transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);}
.m9a_c00300{transform:matrix(0.277139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277139,0.000000,0.000000,0.250000,0,0);}
.m3c_c00300{transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);}
.m80_c00300{transform:matrix(0.277164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277164,0.000000,0.000000,0.250000,0,0);}
.m8d_c00300{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m48_c00300{transform:matrix(0.277278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277278,0.000000,0.000000,0.250000,0,0);}
.m88_c00300{transform:matrix(0.277658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277658,0.000000,0.000000,0.250000,0,0);}
.mbb_c00300{transform:matrix(0.278370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278370,0.000000,0.000000,0.250000,0,0);}
.m5e_c00300{transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);}
.m16_c00300{transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);}
.m5d_c00300{transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);}
.m67_c00300{transform:matrix(0.279399,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279399,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279399,0.000000,0.000000,0.250000,0,0);}
.m12_c00300{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.m30_c00300{transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);}
.mb4_c00300{transform:matrix(0.282371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282371,0.000000,0.000000,0.250000,0,0);}
.m1c_c00300{transform:matrix(0.282564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282564,0.000000,0.000000,0.250000,0,0);}
.m13_c00300{transform:matrix(0.284009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284009,0.000000,0.000000,0.250000,0,0);}
.maf_c00300{transform:matrix(0.285162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285162,0.000000,0.000000,0.250000,0,0);}
.m86_c00300{transform:matrix(0.285273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285273,0.000000,0.000000,0.250000,0,0);}
.mbc_c00300{transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);}
.m3f_c00300{transform:matrix(0.286394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286394,0.000000,0.000000,0.250000,0,0);}
.mbe_c00300{transform:matrix(0.286407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286407,0.000000,0.000000,0.250000,0,0);}
.m3e_c00300{transform:matrix(0.286496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286496,0.000000,0.000000,0.250000,0,0);}
.m7f_c00300{transform:matrix(0.287323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287323,0.000000,0.000000,0.250000,0,0);}
.m7b_c00300{transform:matrix(0.287395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287395,0.000000,0.000000,0.250000,0,0);}
.m55_c00300{transform:matrix(0.287586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287586,0.000000,0.000000,0.250000,0,0);}
.m5f_c00300{transform:matrix(0.288100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288100,0.000000,0.000000,0.250000,0,0);}
.mb0_c00300{transform:matrix(0.288109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288109,0.000000,0.000000,0.250000,0,0);}
.ma5_c00300{transform:matrix(0.289239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289239,0.000000,0.000000,0.250000,0,0);}
.m61_c00300{transform:matrix(0.289516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289516,0.000000,0.000000,0.250000,0,0);}
.m64_c00300{transform:matrix(0.289601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289601,0.000000,0.000000,0.250000,0,0);}
.m66_c00300{transform:matrix(0.289896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289896,0.000000,0.000000,0.250000,0,0);}
.mbf_c00300{transform:matrix(0.289951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289951,0.000000,0.000000,0.250000,0,0);}
.mf_c00300{transform:matrix(0.290412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290412,0.000000,0.000000,0.250000,0,0);}
.m24_c00300{transform:matrix(0.290660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290660,0.000000,0.000000,0.250000,0,0);}
.m7d_c00300{transform:matrix(0.290830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290830,0.000000,0.000000,0.250000,0,0);}
.m59_c00300{transform:matrix(0.291077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291077,0.000000,0.000000,0.250000,0,0);}
.m41_c00300{transform:matrix(0.291498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291498,0.000000,0.000000,0.250000,0,0);}
.m20_c00300{transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);}
.m49_c00300{transform:matrix(0.292203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292203,0.000000,0.000000,0.250000,0,0);}
.m91_c00300{transform:matrix(0.292830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292830,0.000000,0.000000,0.250000,0,0);}
.m4b_c00300{transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);}
.m32_c00300{transform:matrix(0.294128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294128,0.000000,0.000000,0.250000,0,0);}
.m36_c00300{transform:matrix(0.294614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294614,0.000000,0.000000,0.250000,0,0);}
.m42_c00300{transform:matrix(0.294970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294970,0.000000,0.000000,0.250000,0,0);}
.m4f_c00300{transform:matrix(0.295136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295136,0.000000,0.000000,0.250000,0,0);}
.mad_c00300{transform:matrix(0.295434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295434,0.000000,0.000000,0.250000,0,0);}
.m79_c00300{transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);}
.m92_c00300{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.mb5_c00300{transform:matrix(0.298710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298710,0.000000,0.000000,0.250000,0,0);}
.m44_c00300{transform:matrix(0.300360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300360,0.000000,0.000000,0.250000,0,0);}
.ma1_c00300{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m99_c00300{transform:matrix(0.302483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302483,0.000000,0.000000,0.250000,0,0);}
.m19_c00300{transform:matrix(0.302712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302712,0.000000,0.000000,0.250000,0,0);}
.m8c_c00300{transform:matrix(0.303236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303236,0.000000,0.000000,0.250000,0,0);}
.m29_c00300{transform:matrix(0.303719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303719,0.000000,0.000000,0.250000,0,0);}
.m37_c00300{transform:matrix(0.303799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303799,0.000000,0.000000,0.250000,0,0);}
.m9c_c00300{transform:matrix(0.304857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304857,0.000000,0.000000,0.250000,0,0);}
.m1b_c00300{transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305271,0.000000,0.000000,0.250000,0,0);}
.ma4_c00300{transform:matrix(0.305914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305914,0.000000,0.000000,0.250000,0,0);}
.m45_c00300{transform:matrix(0.307077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307077,0.000000,0.000000,0.250000,0,0);}
.m8f_c00300{transform:matrix(0.308455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308455,0.000000,0.000000,0.250000,0,0);}
.m1f_c00300{transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);}
.m27_c00300{transform:matrix(0.309460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309460,0.000000,0.000000,0.250000,0,0);}
.m60_c00300{transform:matrix(0.310825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310825,0.000000,0.000000,0.250000,0,0);}
.m87_c00300{transform:matrix(0.310989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310989,0.000000,0.000000,0.250000,0,0);}
.m39_c00300{transform:matrix(0.312958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312958,0.000000,0.000000,0.250000,0,0);}
.m89_c00300{transform:matrix(0.314081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314081,0.000000,0.000000,0.250000,0,0);}
.m51_c00300{transform:matrix(0.314095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314095,0.000000,0.000000,0.250000,0,0);}
.m71_c00300{transform:matrix(0.314545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314545,0.000000,0.000000,0.250000,0,0);}
.m7_c00300{transform:matrix(0.315578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315578,0.000000,0.000000,0.250000,0,0);}
.m69_c00300{transform:matrix(0.315717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315717,0.000000,0.000000,0.250000,0,0);}
.mae_c00300{transform:matrix(0.316468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316468,0.000000,0.000000,0.250000,0,0);}
.m93_c00300{transform:matrix(0.316934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316934,0.000000,0.000000,0.250000,0,0);}
.m40_c00300{transform:matrix(0.317369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317369,0.000000,0.000000,0.250000,0,0);}
.m97_c00300{transform:matrix(0.318567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318567,0.000000,0.000000,0.250000,0,0);}
.m6a_c00300{transform:matrix(0.318754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318754,0.000000,0.000000,0.250000,0,0);}
.m3a_c00300{transform:matrix(0.318852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318852,0.000000,0.000000,0.250000,0,0);}
.mb3_c00300{transform:matrix(0.319389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319389,0.000000,0.000000,0.250000,0,0);}
.m6f_c00300{transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);}
.m76_c00300{transform:matrix(0.320064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320064,0.000000,0.000000,0.250000,0,0);}
.m57_c00300{transform:matrix(0.321234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321234,0.000000,0.000000,0.250000,0,0);}
.m1d_c00300{transform:matrix(0.321236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321236,0.000000,0.000000,0.250000,0,0);}
.m8e_c00300{transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);}
.m90_c00300{transform:matrix(0.321663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321663,0.000000,0.000000,0.250000,0,0);}
.m33_c00300{transform:matrix(0.321867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321867,0.000000,0.000000,0.250000,0,0);}
.m65_c00300{transform:matrix(0.323267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323267,0.000000,0.000000,0.250000,0,0);}
.ma2_c00300{transform:matrix(0.324566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324566,0.000000,0.000000,0.250000,0,0);}
.mb2_c00300{transform:matrix(0.324641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324641,0.000000,0.000000,0.250000,0,0);}
.m26_c00300{transform:matrix(0.324732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324732,0.000000,0.000000,0.250000,0,0);}
.m31_c00300{transform:matrix(0.324784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324784,0.000000,0.000000,0.250000,0,0);}
.m81_c00300{transform:matrix(0.324794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324794,0.000000,0.000000,0.250000,0,0);}
.me_c00300{transform:matrix(0.325136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325136,0.000000,0.000000,0.250000,0,0);}
.m9d_c00300{transform:matrix(0.325936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325936,0.000000,0.000000,0.250000,0,0);}
.m23_c00300{transform:matrix(0.326313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326313,0.000000,0.000000,0.250000,0,0);}
.m85_c00300{transform:matrix(0.326645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326645,0.000000,0.000000,0.250000,0,0);}
.m4e_c00300{transform:matrix(0.327374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327374,0.000000,0.000000,0.250000,0,0);}
.m9b_c00300{transform:matrix(0.327853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327853,0.000000,0.000000,0.250000,0,0);}
.m6e_c00300{transform:matrix(0.328315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328315,0.000000,0.000000,0.250000,0,0);}
.mc_c00300{transform:matrix(0.329131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329131,0.000000,0.000000,0.250000,0,0);}
.m3_c00300{transform:matrix(0.331193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331193,0.000000,0.000000,0.250000,0,0);}
.mb9_c00300{transform:matrix(0.332194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332194,0.000000,0.000000,0.250000,0,0);}
.m58_c00300{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m2d_c00300{transform:matrix(0.335324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335324,0.000000,0.000000,0.250000,0,0);}
.m72_c00300{transform:matrix(0.335666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335666,0.000000,0.000000,0.250000,0,0);}
.m8_c00300{transform:matrix(0.337658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337658,0.000000,0.000000,0.250000,0,0);}
.m1e_c00300{transform:matrix(0.337661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337661,0.000000,0.000000,0.250000,0,0);}
.m47_c00300{transform:matrix(0.338222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338222,0.000000,0.000000,0.250000,0,0);}
.m2c_c00300{transform:matrix(0.338655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338655,0.000000,0.000000,0.250000,0,0);}
.m73_c00300{transform:matrix(0.341542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341542,0.000000,0.000000,0.250000,0,0);}
.m14_c00300{transform:matrix(0.343381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343381,0.000000,0.000000,0.250000,0,0);}
.m7a_c00300{transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);}
.m75_c00300{transform:matrix(0.344580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344580,0.000000,0.000000,0.250000,0,0);}
.m8b_c00300{transform:matrix(0.344583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344583,0.000000,0.000000,0.250000,0,0);}
.ma7_c00300{transform:matrix(0.349378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349378,0.000000,0.000000,0.250000,0,0);}
.ma0_c00300{transform:matrix(0.351819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351819,0.000000,0.000000,0.250000,0,0);}
.m15_c00300{transform:matrix(0.352956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352956,0.000000,0.000000,0.250000,0,0);}
.m98_c00300{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m68_c00300{transform:matrix(0.356149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356149,0.000000,0.000000,0.250000,0,0);}
.m62_c00300{transform:matrix(0.356405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356405,0.000000,0.000000,0.250000,0,0);}
.m3d_c00300{transform:matrix(0.358592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358592,0.000000,0.000000,0.250000,0,0);}
.m95_c00300{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m17_c00300{transform:matrix(0.372071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372071,0.000000,0.000000,0.250000,0,0);}
.m25_c00300{transform:matrix(0.381065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381065,0.000000,0.000000,0.250000,0,0);}
.m63_c00300{transform:matrix(0.399633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399633,0.000000,0.000000,0.250000,0,0);}
.m10_c00300{transform:matrix(0.407787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407787,0.000000,0.000000,0.250000,0,0);}
.m22_c00300{transform:matrix(0.409814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409814,0.000000,0.000000,0.250000,0,0);}
.m9e_c00300{transform:matrix(0.423078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423078,0.000000,0.000000,0.250000,0,0);}
.m21_c00300{transform:matrix(0.424628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424628,0.000000,0.000000,0.250000,0,0);}
.m78_c00300{transform:matrix(0.432348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432348,0.000000,0.000000,0.250000,0,0);}
.v1_c00300{vertical-align:-29.937600px;}
.v0_c00300{vertical-align:0.000000px;}
.ls9_c00300{letter-spacing:-2.744280px;}
.ls14_c00300{letter-spacing:-2.375762px;}
.ls21_c00300{letter-spacing:-2.273040px;}
.ls1b_c00300{letter-spacing:-2.252250px;}
.ls1f_c00300{letter-spacing:-2.224530px;}
.ls1d_c00300{letter-spacing:-2.211106px;}
.ls1a_c00300{letter-spacing:-1.685772px;}
.ls10_c00300{letter-spacing:-1.677931px;}
.lsc_c00300{letter-spacing:-1.513274px;}
.ls16_c00300{letter-spacing:-1.223165px;}
.ls22_c00300{letter-spacing:-1.011780px;}
.ls17_c00300{letter-spacing:-0.878170px;}
.lsd_c00300{letter-spacing:-0.062726px;}
.ls7_c00300{letter-spacing:0.000000px;}
.ls1_c00300{letter-spacing:0.258746px;}
.ls2_c00300{letter-spacing:1.819066px;}
.lsf_c00300{letter-spacing:2.132698px;}
.ls5_c00300{letter-spacing:2.979504px;}
.ls4_c00300{letter-spacing:3.112798px;}
.lse_c00300{letter-spacing:3.167683px;}
.ls1e_c00300{letter-spacing:3.177900px;}
.lsb_c00300{letter-spacing:3.191206px;}
.ls13_c00300{letter-spacing:3.623400px;}
.ls8_c00300{letter-spacing:3.801610px;}
.ls15_c00300{letter-spacing:3.912559px;}
.lsa_c00300{letter-spacing:3.920400px;}
.ls12_c00300{letter-spacing:3.940200px;}
.ls18_c00300{letter-spacing:4.118400px;}
.ls3_c00300{letter-spacing:4.312440px;}
.ls0_c00300{letter-spacing:5.880600px;}
.ls6_c00300{letter-spacing:19.131156px;}
.ls11_c00300{letter-spacing:51.321798px;}
.ls19_c00300{letter-spacing:52.747398px;}
.ls20_c00300{letter-spacing:54.172998px;}
.ls1c_c00300{letter-spacing:72.705798px;}
.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;}
}
.ws1_c00300{word-spacing:-22.793206px;}
.wsa_c00300{word-spacing:-21.421066px;}
.ws6_c00300{word-spacing:-19.860746px;}
.ws0_c00300{word-spacing:-19.602000px;}
.ws3_c00300{word-spacing:-17.924069px;}
.ws4_c00300{word-spacing:-17.226238px;}
.ws2_c00300{word-spacing:-2.979504px;}
.wsc_c00300{word-spacing:0.000000px;}
.ws9_c00300{word-spacing:1.253736px;}
.ws5_c00300{word-spacing:2.038608px;}
.ws8_c00300{word-spacing:2.352240px;}
.wsb_c00300{word-spacing:3.293136px;}
.ws7_c00300{word-spacing:7.841196px;}
._18_c00300{margin-left:-12.074832px;}
._12_c00300{margin-left:-8.939304px;}
._1b_c00300{margin-left:-2.273634px;}
._1a_c00300{margin-left:-1.254528px;}
._13_c00300{width:1.490148px;}
._8_c00300{width:3.057120px;}
._a_c00300{width:4.157208px;}
._1_c00300{width:5.802192px;}
._0_c00300{width:7.291944px;}
._2_c00300{width:9.095328px;}
._4_c00300{width:10.507068px;}
._c_c00300{width:12.153240px;}
._16_c00300{width:13.342349px;}
._e_c00300{width:16.073640px;}
._15_c00300{width:17.484588px;}
._1e_c00300{width:19.609920px;}
._7_c00300{width:21.531629px;}
._9_c00300{width:24.008530px;}
._d_c00300{width:26.031456px;}
._14_c00300{width:27.834840px;}
._19_c00300{width:29.559816px;}
._6_c00300{width:30.971160px;}
._f_c00300{width:32.696928px;}
._11_c00300{width:33.950268px;}
._3_c00300{width:35.005608px;}
._5_c00300{width:37.243008px;}
._10_c00300{width:39.391387px;}
._17_c00300{width:43.359624px;}
._b_c00300{width:45.711468px;}
._1d_c00300{width:49.242600px;}
._1c_c00300{width:68.339700px;}
.fc0_c00300{color:transparent;}
.fsb_c00300{font-size:22.176000px;}
.fs2a_c00300{font-size:22.572000px;}
.fs12_c00300{font-size:23.166000px;}
.fs23_c00300{font-size:28.908000px;}
.fs16_c00300{font-size:30.888000px;}
.fs17_c00300{font-size:32.868000px;}
.fs19_c00300{font-size:33.264000px;}
.fs20_c00300{font-size:33.462000px;}
.fsf_c00300{font-size:33.660000px;}
.fs1f_c00300{font-size:34.650000px;}
.fs10_c00300{font-size:35.046198px;}
.fs13_c00300{font-size:38.808000px;}
.fs15_c00300{font-size:39.600000px;}
.fs29_c00300{font-size:40.392000px;}
.fsd_c00300{font-size:43.164000px;}
.fs1e_c00300{font-size:43.758000px;}
.fs21_c00300{font-size:47.124000px;}
.fs1c_c00300{font-size:49.896198px;}
.fs26_c00300{font-size:50.094000px;}
.fs1d_c00300{font-size:50.292000px;}
.fse_c00300{font-size:50.490000px;}
.fs1a_c00300{font-size:50.688000px;}
.fs3_c00300{font-size:51.321798px;}
.fs7_c00300{font-size:52.747398px;}
.fs24_c00300{font-size:53.856198px;}
.fs11_c00300{font-size:54.172998px;}
.fsc_c00300{font-size:56.628000px;}
.fs18_c00300{font-size:61.578000px;}
.fsa_c00300{font-size:63.558000px;}
.fs8_c00300{font-size:64.350000px;}
.fs22_c00300{font-size:64.944000px;}
.fs2b_c00300{font-size:66.528000px;}
.fs1b_c00300{font-size:69.300000px;}
.fs25_c00300{font-size:72.072198px;}
.fs5_c00300{font-size:72.468000px;}
.fs9_c00300{font-size:72.705798px;}
.fs0_c00300{font-size:76.032198px;}
.fs1_c00300{font-size:78.408000px;}
.fs4_c00300{font-size:78.804000px;}
.fs14_c00300{font-size:79.200000px;}
.fs6_c00300{font-size:82.368000px;}
.fs27_c00300{font-size:88.704000px;}
.fs2c_c00300{font-size:98.208000px;}
.fs2_c00300{font-size:104.544000px;}
.fs28_c00300{font-size:112.662198px;}
.y0_c00300{bottom:0.000000px;}
.y1_c00300{bottom:76.500000px;}
.y43_c00300{bottom:124.651935px;}
.y42_c00300{bottom:150.669135px;}
.y1a_c00300{bottom:156.366585px;}
.y19_c00300{bottom:186.660585px;}
.y41_c00300{bottom:188.803935px;}
.y40_c00300{bottom:189.516735px;}
.y3f_c00300{bottom:199.852335px;}
.y3e_c00300{bottom:202.342185px;}
.y3d_c00300{bottom:211.252185px;}
.y18_c00300{bottom:221.592735px;}
.y3c_c00300{bottom:224.800335px;}
.y3b_c00300{bottom:232.641135px;}
.y3a_c00300{bottom:259.009785px;}
.y39_c00300{bottom:283.606335px;}
.y17_c00300{bottom:285.739785px;}
.y38_c00300{bottom:293.580585px;}
.y37_c00300{bottom:314.608185px;}
.y16_c00300{bottom:318.533535px;}
.y36_c00300{bottom:327.443535px;}
.y35_c00300{bottom:330.651135px;}
.y34_c00300{bottom:334.215135px;}
.y33_c00300{bottom:348.822585px;}
.y15_c00300{bottom:351.322335px;}
.y32_c00300{bottom:351.673785px;}
.y31_c00300{bottom:361.296585px;}
.y30_c00300{bottom:367.355385px;}
.y2f_c00300{bottom:371.632185px;}
.y2e_c00300{bottom:375.552585px;}
.y1b_c00300{bottom:375.913935px;}
.y2d_c00300{bottom:383.398335px;}
.y14_c00300{bottom:386.962335px;}
.y2c_c00300{bottom:393.733935px;}
.y2a_c00300{bottom:405.133785px;}
.y2b_c00300{bottom:405.495135px;}
.y29_c00300{bottom:413.330985px;}
.y13_c00300{bottom:419.389785px;}
.y28_c00300{bottom:422.953785px;}
.y27_c00300{bottom:430.799535px;}
.y26_c00300{bottom:435.432735px;}
.y25_c00300{bottom:442.912185px;}
.y12_c00300{bottom:452.183535px;}
.y11_c00300{bottom:486.036585px;}
.y24_c00300{bottom:500.653935px;}
.y23_c00300{bottom:503.505135px;}
.y10_c00300{bottom:518.468985px;}
.y22_c00300{bottom:544.134735px;}
.yf_c00300{bottom:554.108985px;}
.ye_c00300{bottom:588.684735px;}
.yd_c00300{bottom:622.542735px;}
.yc_c00300{bottom:655.331535px;}
.y21_c00300{bottom:682.061535px;}
.yb_c00300{bottom:687.402585px;}
.y20_c00300{bottom:697.030335px;}
.y1f_c00300{bottom:703.089135px;}
.y1e_c00300{bottom:709.855785px;}
.ya_c00300{bottom:752.623785px;}
.y1d_c00300{bottom:786.130335px;}
.y9_c00300{bottom:788.263785px;}
.y1c_c00300{bottom:796.822335px;}
.y8_c00300{bottom:820.701135px;}
.y7_c00300{bottom:854.202735px;}
.y6_c00300{bottom:874.868985px;}
.y5_c00300{bottom:886.630185px;}
.y4_c00300{bottom:886.991535px;}
.y3_c00300{bottom:920.844585px;}
.y2_c00300{bottom:1073.383785px;}
.hd_c00300{height:23.128875px;}
.h14_c00300{height:24.161414px;}
.h25_c00300{height:30.150141px;}
.h18_c00300{height:32.215219px;}
.h11_c00300{height:33.035449px;}
.h5_c00300{height:34.180317px;}
.h19_c00300{height:34.280297px;}
.h1b_c00300{height:34.693313px;}
.h22_c00300{height:34.899820px;}
.h9_c00300{height:35.129767px;}
.h13_c00300{height:36.079217px;}
.h21_c00300{height:36.138867px;}
.h12_c00300{height:36.552089px;}
.h15_c00300{height:40.475531px;}
.h17_c00300{height:41.301563px;}
.h2b_c00300{height:42.127594px;}
.hf_c00300{height:45.018703px;}
.h20_c00300{height:45.638227px;}
.h23_c00300{height:46.249629px;}
.hb_c00300{height:48.422061px;}
.h1f_c00300{height:49.358848px;}
.h1e_c00300{height:52.040175px;}
.h28_c00300{height:52.246477px;}
.h10_c00300{height:52.659492px;}
.h1c_c00300{height:52.866000px;}
.h26_c00300{height:56.170332px;}
.he_c00300{height:59.061234px;}
.ha_c00300{height:63.156006px;}
.h1a_c00300{height:64.223930px;}
.hc_c00300{height:66.289008px;}
.h24_c00300{height:67.734563px;}
.h2c_c00300{height:69.386625px;}
.h27_c00300{height:70.734921px;}
.h7_c00300{height:71.123379px;}
.h1d_c00300{height:72.277734px;}
.h2_c00300{height:74.621444px;}
.h3_c00300{height:76.953164px;}
.h6_c00300{height:77.341816px;}
.h8_c00300{height:80.839688px;}
.h16_c00300{height:82.603125px;}
.h29_c00300{height:87.058125px;}
.h2d_c00300{height:102.427875px;}
.h4_c00300{height:109.036125px;}
.h2a_c00300{height:117.503152px;}
.h1_c00300{height:1110.000000px;}
.h0_c00300{height:1263.000000px;}
.w1_c00300{width:763.500000px;}
.w0_c00300{width:892.500000px;}
.x0_c00300{left:0.000000px;}
.x1_c00300{left:64.500000px;}
.x4_c00300{left:71.058300px;}
.x3e_c00300{left:92.323500px;}
.x28_c00300{left:103.995600px;}
.x5_c00300{left:105.317250px;}
.x65_c00300{left:114.771750px;}
.x29_c00300{left:124.919250px;}
.x3f_c00300{left:135.259800px;}
.x2a_c00300{left:137.512050px;}
.x5f_c00300{left:147.565500px;}
.x15_c00300{left:149.010900px;}
.x54_c00300{left:158.133750px;}
.x2b_c00300{left:159.326700px;}
.x6_c00300{left:160.386000px;}
.x62_c00300{left:168.083250px;}
.x37_c00300{left:169.662300px;}
.x16_c00300{left:171.429450px;}
.x1e_c00300{left:180.557250px;}
.x66_c00300{left:190.496850px;}
.x7_c00300{left:192.303600px;}
.x4f_c00300{left:202.451100px;}
.x5c_c00300{left:203.510400px;}
.x33_c00300{left:213.346050px;}
.x1f_c00300{left:214.603350px;}
.x60_c00300{left:221.845200px;}
.x4b_c00300{left:224.364750px;}
.x17_c00300{left:228.408900px;}
.x75_c00300{left:234.685500px;}
.x34_c00300{left:235.952700px;}
.x38_c00300{left:237.883200px;}
.x40_c00300{left:247.035750px;}
.x2c_c00300{left:256.826850px;}
.x8_c00300{left:258.143550px;}
.x5d_c00300{left:268.756350px;}
.x9_c00300{left:270.152250px;}
.x20_c00300{left:280.656150px;}
.x2d_c00300{left:290.991750px;}
.x50_c00300{left:302.223300px;}
.xa_c00300{left:303.643950px;}
.x41_c00300{left:313.306350px;}
.x47_c00300{left:323.983500px;}
.x42_c00300{left:325.008150px;}
.x61_c00300{left:334.690350px;}
.xb_c00300{left:335.744700px;}
.x55_c00300{left:345.758550px;}
.x5e_c00300{left:348.867150px;}
.x4c_c00300{left:356.589150px;}
.xc_c00300{left:357.801900px;}
.x43_c00300{left:367.820700px;}
.x21_c00300{left:368.889900px;}
.x59_c00300{left:378.869100px;}
.xd_c00300{left:379.938300px;}
.x69_c00300{left:381.690600px;}
.x6f_c00300{left:389.051250px;}
.x2e_c00300{left:390.095700px;}
.x39_c00300{left:393.090450px;}
.x18_c00300{left:401.683650px;}
.x6a_c00300{left:402.876600px;}
.x68_c00300{left:411.633150px;}
.x2f_c00300{left:412.880550px;}
.x5a_c00300{left:422.938950px;}
.x56_c00300{left:425.809950px;}
.xe_c00300{left:433.601250px;}
.x30_c00300{left:434.823900px;}
.x3a_c00300{left:437.724600px;}
.x35_c00300{left:444.615000px;}
.x31_c00300{left:445.649550px;}
.x51_c00300{left:447.906750px;}
.x19_c00300{left:456.920700px;}
.xf_c00300{left:468.305700px;}
.x6b_c00300{left:470.320350px;}
.x1a_c00300{left:478.477950px;}
.x10_c00300{left:489.709500px;}
.x63_c00300{left:500.050050px;}
.x22_c00300{left:501.109350px;}
.x3b_c00300{left:510.227250px;}
.x32_c00300{left:512.123100px;}
.x44_c00300{left:522.676500px;}
.x64_c00300{left:532.715100px;}
.x1b_c00300{left:533.903100px;}
.x5b_c00300{left:543.694200px;}
.x23_c00300{left:544.951500px;}
.x48_c00300{left:555.163350px;}
.x24_c00300{left:556.341450px;}
.x45_c00300{left:565.469250px;}
.x4d_c00300{left:567.394800px;}
.x6c_c00300{left:569.038200px;}
.x3c_c00300{left:576.487950px;}
.x52_c00300{left:577.562100px;}
.x6d_c00300{left:587.595750px;}
.x46_c00300{left:588.788700px;}
.x11_c00300{left:600.173700px;}
.x57_c00300{left:609.984600px;}
.x25_c00300{left:611.192400px;}
.x53_c00300{left:617.860050px;}
.x12_c00300{left:621.943800px;}
.x49_c00300{left:630.334050px;}
.x1c_c00300{left:632.625900px;}
.x13_c00300{left:643.332750px;}
.x4a_c00300{left:644.357400px;}
.x2_c00300{left:646.505700px;}
.x6e_c00300{left:652.787250px;}
.x3_c00300{left:658.370850px;}
.x67_c00300{left:664.939500px;}
.x26_c00300{left:665.949300px;}
.x58_c00300{left:675.596850px;}
.x14_c00300{left:677.477850px;}
.x3d_c00300{left:687.506550px;}
.x1d_c00300{left:697.807500px;}
.x27_c00300{left:699.549900px;}
.x4e_c00300{left:709.420200px;}
.x36_c00300{left:710.677500px;}
.x70_c00300{left:728.264850px;}
.x74_c00300{left:736.764000px;}
.x72_c00300{left:754.727550px;}
.x71_c00300{left:756.509550px;}
.x73_c00300{left:757.687650px;}
@media print{
.v1_c00300{vertical-align:-26.611200pt;}
.v0_c00300{vertical-align:0.000000pt;}
.ls9_c00300{letter-spacing:-2.439360pt;}
.ls14_c00300{letter-spacing:-2.111789pt;}
.ls21_c00300{letter-spacing:-2.020480pt;}
.ls1b_c00300{letter-spacing:-2.002000pt;}
.ls1f_c00300{letter-spacing:-1.977360pt;}
.ls1d_c00300{letter-spacing:-1.965427pt;}
.ls1a_c00300{letter-spacing:-1.498464pt;}
.ls10_c00300{letter-spacing:-1.491494pt;}
.lsc_c00300{letter-spacing:-1.345133pt;}
.ls16_c00300{letter-spacing:-1.087258pt;}
.ls22_c00300{letter-spacing:-0.899360pt;}
.ls17_c00300{letter-spacing:-0.780595pt;}
.lsd_c00300{letter-spacing:-0.055757pt;}
.ls7_c00300{letter-spacing:0.000000pt;}
.ls1_c00300{letter-spacing:0.229997pt;}
.ls2_c00300{letter-spacing:1.616947pt;}
.lsf_c00300{letter-spacing:1.895731pt;}
.ls5_c00300{letter-spacing:2.648448pt;}
.ls4_c00300{letter-spacing:2.766931pt;}
.lse_c00300{letter-spacing:2.815718pt;}
.ls1e_c00300{letter-spacing:2.824800pt;}
.lsb_c00300{letter-spacing:2.836627pt;}
.ls13_c00300{letter-spacing:3.220800pt;}
.ls8_c00300{letter-spacing:3.379209pt;}
.ls15_c00300{letter-spacing:3.477830pt;}
.lsa_c00300{letter-spacing:3.484800pt;}
.ls12_c00300{letter-spacing:3.502400pt;}
.ls18_c00300{letter-spacing:3.660800pt;}
.ls3_c00300{letter-spacing:3.833280pt;}
.ls0_c00300{letter-spacing:5.227200pt;}
.ls6_c00300{letter-spacing:17.005472pt;}
.ls11_c00300{letter-spacing:45.619376pt;}
.ls19_c00300{letter-spacing:46.886576pt;}
.ls20_c00300{letter-spacing:48.153776pt;}
.ls1c_c00300{letter-spacing:64.627376pt;}
.ws1_c00300{word-spacing:-20.260627pt;}
.wsa_c00300{word-spacing:-19.040947pt;}
.ws6_c00300{word-spacing:-17.653997pt;}
.ws0_c00300{word-spacing:-17.424000pt;}
.ws3_c00300{word-spacing:-15.932506pt;}
.ws4_c00300{word-spacing:-15.312211pt;}
.ws2_c00300{word-spacing:-2.648448pt;}
.wsc_c00300{word-spacing:0.000000pt;}
.ws9_c00300{word-spacing:1.114432pt;}
.ws5_c00300{word-spacing:1.812096pt;}
.ws8_c00300{word-spacing:2.090880pt;}
.wsb_c00300{word-spacing:2.927232pt;}
.ws7_c00300{word-spacing:6.969952pt;}
._18_c00300{margin-left:-10.733184pt;}
._12_c00300{margin-left:-7.946048pt;}
._1b_c00300{margin-left:-2.021008pt;}
._1a_c00300{margin-left:-1.115136pt;}
._13_c00300{width:1.324576pt;}
._8_c00300{width:2.717440pt;}
._a_c00300{width:3.695296pt;}
._1_c00300{width:5.157504pt;}
._0_c00300{width:6.481728pt;}
._2_c00300{width:8.084736pt;}
._4_c00300{width:9.339616pt;}
._c_c00300{width:10.802880pt;}
._16_c00300{width:11.859866pt;}
._e_c00300{width:14.287680pt;}
._15_c00300{width:15.541856pt;}
._1e_c00300{width:17.431040pt;}
._7_c00300{width:19.139226pt;}
._9_c00300{width:21.340915pt;}
._d_c00300{width:23.139072pt;}
._14_c00300{width:24.742080pt;}
._19_c00300{width:26.275392pt;}
._6_c00300{width:27.529920pt;}
._f_c00300{width:29.063936pt;}
._11_c00300{width:30.178016pt;}
._3_c00300{width:31.116096pt;}
._5_c00300{width:33.104896pt;}
._10_c00300{width:35.014566pt;}
._17_c00300{width:38.541888pt;}
._b_c00300{width:40.632416pt;}
._1d_c00300{width:43.771200pt;}
._1c_c00300{width:60.746400pt;}
.fsb_c00300{font-size:19.712000pt;}
.fs2a_c00300{font-size:20.064000pt;}
.fs12_c00300{font-size:20.592000pt;}
.fs23_c00300{font-size:25.696000pt;}
.fs16_c00300{font-size:27.456000pt;}
.fs17_c00300{font-size:29.216000pt;}
.fs19_c00300{font-size:29.568000pt;}
.fs20_c00300{font-size:29.744000pt;}
.fsf_c00300{font-size:29.920000pt;}
.fs1f_c00300{font-size:30.800000pt;}
.fs10_c00300{font-size:31.152176pt;}
.fs13_c00300{font-size:34.496000pt;}
.fs15_c00300{font-size:35.200000pt;}
.fs29_c00300{font-size:35.904000pt;}
.fsd_c00300{font-size:38.368000pt;}
.fs1e_c00300{font-size:38.896000pt;}
.fs21_c00300{font-size:41.888000pt;}
.fs1c_c00300{font-size:44.352176pt;}
.fs26_c00300{font-size:44.528000pt;}
.fs1d_c00300{font-size:44.704000pt;}
.fse_c00300{font-size:44.880000pt;}
.fs1a_c00300{font-size:45.056000pt;}
.fs3_c00300{font-size:45.619376pt;}
.fs7_c00300{font-size:46.886576pt;}
.fs24_c00300{font-size:47.872176pt;}
.fs11_c00300{font-size:48.153776pt;}
.fsc_c00300{font-size:50.336000pt;}
.fs18_c00300{font-size:54.736000pt;}
.fsa_c00300{font-size:56.496000pt;}
.fs8_c00300{font-size:57.200000pt;}
.fs22_c00300{font-size:57.728000pt;}
.fs2b_c00300{font-size:59.136000pt;}
.fs1b_c00300{font-size:61.600000pt;}
.fs25_c00300{font-size:64.064176pt;}
.fs5_c00300{font-size:64.416000pt;}
.fs9_c00300{font-size:64.627376pt;}
.fs0_c00300{font-size:67.584176pt;}
.fs1_c00300{font-size:69.696000pt;}
.fs4_c00300{font-size:70.048000pt;}
.fs14_c00300{font-size:70.400000pt;}
.fs6_c00300{font-size:73.216000pt;}
.fs27_c00300{font-size:78.848000pt;}
.fs2c_c00300{font-size:87.296000pt;}
.fs2_c00300{font-size:92.928000pt;}
.fs28_c00300{font-size:100.144176pt;}
.y0_c00300{bottom:0.000000pt;}
.y1_c00300{bottom:68.000000pt;}
.y43_c00300{bottom:110.801720pt;}
.y42_c00300{bottom:133.928120pt;}
.y1a_c00300{bottom:138.992520pt;}
.y19_c00300{bottom:165.920520pt;}
.y41_c00300{bottom:167.825720pt;}
.y40_c00300{bottom:168.459320pt;}
.y3f_c00300{bottom:177.646520pt;}
.y3e_c00300{bottom:179.859720pt;}
.y3d_c00300{bottom:187.779720pt;}
.y18_c00300{bottom:196.971320pt;}
.y3c_c00300{bottom:199.822520pt;}
.y3b_c00300{bottom:206.792120pt;}
.y3a_c00300{bottom:230.230920pt;}
.y39_c00300{bottom:252.094520pt;}
.y17_c00300{bottom:253.990920pt;}
.y38_c00300{bottom:260.960520pt;}
.y37_c00300{bottom:279.651720pt;}
.y16_c00300{bottom:283.140920pt;}
.y36_c00300{bottom:291.060920pt;}
.y35_c00300{bottom:293.912120pt;}
.y34_c00300{bottom:297.080120pt;}
.y33_c00300{bottom:310.064520pt;}
.y15_c00300{bottom:312.286520pt;}
.y32_c00300{bottom:312.598920pt;}
.y31_c00300{bottom:321.152520pt;}
.y30_c00300{bottom:326.538120pt;}
.y2f_c00300{bottom:330.339720pt;}
.y2e_c00300{bottom:333.824520pt;}
.y1b_c00300{bottom:334.145720pt;}
.y2d_c00300{bottom:340.798520pt;}
.y14_c00300{bottom:343.966520pt;}
.y2c_c00300{bottom:349.985720pt;}
.y2a_c00300{bottom:360.118920pt;}
.y2b_c00300{bottom:360.440120pt;}
.y29_c00300{bottom:367.405320pt;}
.y13_c00300{bottom:372.790920pt;}
.y28_c00300{bottom:375.958920pt;}
.y27_c00300{bottom:382.932920pt;}
.y26_c00300{bottom:387.051320pt;}
.y25_c00300{bottom:393.699720pt;}
.y12_c00300{bottom:401.940920pt;}
.y11_c00300{bottom:432.032520pt;}
.y24_c00300{bottom:445.025720pt;}
.y23_c00300{bottom:447.560120pt;}
.y10_c00300{bottom:460.861320pt;}
.y22_c00300{bottom:483.675320pt;}
.yf_c00300{bottom:492.541320pt;}
.ye_c00300{bottom:523.275320pt;}
.yd_c00300{bottom:553.371320pt;}
.yc_c00300{bottom:582.516920pt;}
.y21_c00300{bottom:606.276920pt;}
.yb_c00300{bottom:611.024520pt;}
.y20_c00300{bottom:619.582520pt;}
.y1f_c00300{bottom:624.968120pt;}
.y1e_c00300{bottom:630.982920pt;}
.ya_c00300{bottom:668.998920pt;}
.y1d_c00300{bottom:698.782520pt;}
.y9_c00300{bottom:700.678920pt;}
.y1c_c00300{bottom:708.286520pt;}
.y8_c00300{bottom:729.512120pt;}
.y7_c00300{bottom:759.291320pt;}
.y6_c00300{bottom:777.661320pt;}
.y5_c00300{bottom:788.115720pt;}
.y4_c00300{bottom:788.436920pt;}
.y3_c00300{bottom:818.528520pt;}
.y2_c00300{bottom:954.118920pt;}
.hd_c00300{height:20.559000pt;}
.h14_c00300{height:21.476813pt;}
.h25_c00300{height:26.800125pt;}
.h18_c00300{height:28.635750pt;}
.h11_c00300{height:29.364844pt;}
.h5_c00300{height:30.382504pt;}
.h19_c00300{height:30.471375pt;}
.h1b_c00300{height:30.838500pt;}
.h22_c00300{height:31.022063pt;}
.h9_c00300{height:31.226460pt;}
.h13_c00300{height:32.070415pt;}
.h21_c00300{height:32.123438pt;}
.h12_c00300{height:32.490746pt;}
.h15_c00300{height:35.978250pt;}
.h17_c00300{height:36.712500pt;}
.h2b_c00300{height:37.446750pt;}
.hf_c00300{height:40.016625pt;}
.h20_c00300{height:40.567313pt;}
.h23_c00300{height:41.110781pt;}
.hb_c00300{height:43.041832pt;}
.h1f_c00300{height:43.874531pt;}
.h1e_c00300{height:46.257934pt;}
.h28_c00300{height:46.441313pt;}
.h10_c00300{height:46.808438pt;}
.h1c_c00300{height:46.992000pt;}
.h26_c00300{height:49.929184pt;}
.he_c00300{height:52.498875pt;}
.ha_c00300{height:56.138672pt;}
.h1a_c00300{height:57.087938pt;}
.hc_c00300{height:58.923563pt;}
.h24_c00300{height:60.208500pt;}
.h2c_c00300{height:61.677000pt;}
.h27_c00300{height:62.875485pt;}
.h7_c00300{height:63.220781pt;}
.h1d_c00300{height:64.246875pt;}
.h2_c00300{height:66.330173pt;}
.h3_c00300{height:68.402813pt;}
.h6_c00300{height:68.748281pt;}
.h8_c00300{height:71.857500pt;}
.h16_c00300{height:73.425000pt;}
.h29_c00300{height:77.385000pt;}
.h2d_c00300{height:91.047000pt;}
.h4_c00300{height:96.921000pt;}
.h2a_c00300{height:104.447246pt;}
.h1_c00300{height:986.666667pt;}
.h0_c00300{height:1122.666667pt;}
.w1_c00300{width:678.666667pt;}
.w0_c00300{width:793.333333pt;}
.x0_c00300{left:0.000000pt;}
.x1_c00300{left:57.333333pt;}
.x4_c00300{left:63.162933pt;}
.x3e_c00300{left:82.065333pt;}
.x28_c00300{left:92.440533pt;}
.x5_c00300{left:93.615333pt;}
.x65_c00300{left:102.019333pt;}
.x29_c00300{left:111.039333pt;}
.x3f_c00300{left:120.230933pt;}
.x2a_c00300{left:122.232933pt;}
.x5f_c00300{left:131.169333pt;}
.x15_c00300{left:132.454133pt;}
.x54_c00300{left:140.563333pt;}
.x2b_c00300{left:141.623733pt;}
.x6_c00300{left:142.565333pt;}
.x62_c00300{left:149.407333pt;}
.x37_c00300{left:150.810933pt;}
.x16_c00300{left:152.381733pt;}
.x1e_c00300{left:160.495333pt;}
.x66_c00300{left:169.330533pt;}
.x7_c00300{left:170.936533pt;}
.x4f_c00300{left:179.956533pt;}
.x5c_c00300{left:180.898133pt;}
.x33_c00300{left:189.640933pt;}
.x1f_c00300{left:190.758533pt;}
.x60_c00300{left:197.195733pt;}
.x4b_c00300{left:199.435333pt;}
.x17_c00300{left:203.030133pt;}
.x75_c00300{left:208.609333pt;}
.x34_c00300{left:209.735733pt;}
.x38_c00300{left:211.451733pt;}
.x40_c00300{left:219.587333pt;}
.x2c_c00300{left:228.290533pt;}
.x8_c00300{left:229.460933pt;}
.x5d_c00300{left:238.894533pt;}
.x9_c00300{left:240.135333pt;}
.x20_c00300{left:249.472133pt;}
.x2d_c00300{left:258.659333pt;}
.x50_c00300{left:268.642933pt;}
.xa_c00300{left:269.905733pt;}
.x41_c00300{left:278.494533pt;}
.x47_c00300{left:287.985333pt;}
.x42_c00300{left:288.896133pt;}
.x61_c00300{left:297.502533pt;}
.xb_c00300{left:298.439733pt;}
.x55_c00300{left:307.340933pt;}
.x5e_c00300{left:310.104133pt;}
.x4c_c00300{left:316.968133pt;}
.xc_c00300{left:318.046133pt;}
.x43_c00300{left:326.951733pt;}
.x21_c00300{left:327.902133pt;}
.x59_c00300{left:336.772533pt;}
.xd_c00300{left:337.722933pt;}
.x69_c00300{left:339.280533pt;}
.x6f_c00300{left:345.823333pt;}
.x2e_c00300{left:346.751733pt;}
.x39_c00300{left:349.413733pt;}
.x18_c00300{left:357.052133pt;}
.x6a_c00300{left:358.112533pt;}
.x68_c00300{left:365.896133pt;}
.x2f_c00300{left:367.004933pt;}
.x5a_c00300{left:375.945733pt;}
.x56_c00300{left:378.497733pt;}
.xe_c00300{left:385.423333pt;}
.x30_c00300{left:386.510133pt;}
.x3a_c00300{left:389.088533pt;}
.x35_c00300{left:395.213333pt;}
.x31_c00300{left:396.132933pt;}
.x51_c00300{left:398.139333pt;}
.x19_c00300{left:406.151733pt;}
.xf_c00300{left:416.271733pt;}
.x6b_c00300{left:418.062533pt;}
.x1a_c00300{left:425.313733pt;}
.x10_c00300{left:435.297333pt;}
.x63_c00300{left:444.488933pt;}
.x22_c00300{left:445.430533pt;}
.x3b_c00300{left:453.535333pt;}
.x32_c00300{left:455.220533pt;}
.x44_c00300{left:464.601333pt;}
.x64_c00300{left:473.524533pt;}
.x1b_c00300{left:474.580533pt;}
.x5b_c00300{left:483.283733pt;}
.x23_c00300{left:484.401333pt;}
.x48_c00300{left:493.478533pt;}
.x24_c00300{left:494.525733pt;}
.x45_c00300{left:502.639333pt;}
.x4d_c00300{left:504.350933pt;}
.x6c_c00300{left:505.811733pt;}
.x3c_c00300{left:512.433733pt;}
.x52_c00300{left:513.388533pt;}
.x6d_c00300{left:522.307333pt;}
.x46_c00300{left:523.367733pt;}
.x11_c00300{left:533.487733pt;}
.x57_c00300{left:542.208533pt;}
.x25_c00300{left:543.282133pt;}
.x53_c00300{left:549.208933pt;}
.x12_c00300{left:552.838933pt;}
.x49_c00300{left:560.296933pt;}
.x1c_c00300{left:562.334133pt;}
.x13_c00300{left:571.851333pt;}
.x4a_c00300{left:572.762133pt;}
.x2_c00300{left:574.671733pt;}
.x6e_c00300{left:580.255333pt;}
.x3_c00300{left:585.218533pt;}
.x67_c00300{left:591.057333pt;}
.x26_c00300{left:591.954933pt;}
.x58_c00300{left:600.530533pt;}
.x14_c00300{left:602.202533pt;}
.x3d_c00300{left:611.116933pt;}
.x1d_c00300{left:620.273333pt;}
.x27_c00300{left:621.822133pt;}
.x4e_c00300{left:630.595733pt;}
.x36_c00300{left:631.713333pt;}
.x70_c00300{left:647.346533pt;}
.x74_c00300{left:654.901333pt;}
.x72_c00300{left:670.868933pt;}
.x71_c00300{left:672.452933pt;}
.x73_c00300{left:673.500133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ce1da45eeece1617c0ef356b.woff2')format("woff");}.ff1_c00301{font-family:ff1_c00301;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00301;src:url('chunks/assets/font_05b02a3ac27cb85bc95e0dbd.woff2')format("woff");}.ff2_c00301{font-family:ff2_c00301;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00301;src:url('chunks/assets/font_4caec64f76df8f0417cc0ddf.woff2')format("woff");}.ff3_c00301{font-family:ff3_c00301;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00301;src:url('chunks/assets/font_890b1825beab3efd5b272f06.woff2')format("woff");}.ff4_c00301{font-family:ff4_c00301;line-height:0.666000;font-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_c00301{transform:matrix(0.099359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099359,0.000000,0.000000,0.250000,0,0);}
.m1_c00301{transform:matrix(0.112452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112452,0.000000,0.000000,0.250000,0,0);}
.mbc_c00301{transform:matrix(0.132479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132479,0.000000,0.000000,0.250000,0,0);}
.m6f_c00301{transform:matrix(0.135714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135714,0.000000,0.000000,0.250000,0,0);}
.m17_c00301{transform:matrix(0.135954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135954,0.000000,0.000000,0.250000,0,0);}
.mbb_c00301{transform:matrix(0.138787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138787,0.000000,0.000000,0.250000,0,0);}
.ma6_c00301{transform:matrix(0.142919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142919,0.000000,0.000000,0.250000,0,0);}
.m57_c00301{transform:matrix(0.144750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144750,0.000000,0.000000,0.250000,0,0);}
.m81_c00301{transform:matrix(0.171491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171491,0.000000,0.000000,0.250000,0,0);}
.m6b_c00301{transform:matrix(0.175244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175244,0.000000,0.000000,0.250000,0,0);}
.mc4_c00301{transform:matrix(0.176095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176095,0.000000,0.000000,0.250000,0,0);}
.mda_c00301{transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);}
.m40_c00301{transform:matrix(0.194618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194618,0.000000,0.000000,0.250000,0,0);}
.md9_c00301{transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);}
.mc2_c00301{transform:matrix(0.197270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197270,0.000000,0.000000,0.250000,0,0);}
.m6e_c00301{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m70_c00301{transform:matrix(0.201785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201785,0.000000,0.000000,0.250000,0,0);}
.m1e_c00301{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);}
.mb6_c00301{transform:matrix(0.224407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224407,0.000000,0.000000,0.250000,0,0);}
.m25_c00301{transform:matrix(0.233052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233052,0.000000,0.000000,0.250000,0,0);}
.m62_c00301{transform:matrix(0.244600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244600,0.000000,0.000000,0.250000,0,0);}
.md1_c00301{transform:matrix(0.245722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245722,0.000000,0.000000,0.250000,0,0);}
.m0_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);}
.m87_c00301{transform:matrix(0.250650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250650,0.000000,0.000000,0.250000,0,0);}
.ma7_c00301{transform:matrix(0.251166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251166,0.000000,0.000000,0.250000,0,0);}
.mdc_c00301{transform:matrix(0.252633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252633,0.000000,0.000000,0.250000,0,0);}
.md8_c00301{transform:matrix(0.252741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252741,0.000000,0.000000,0.250000,0,0);}
.m24_c00301{transform:matrix(0.253944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253944,0.000000,0.000000,0.250000,0,0);}
.m19_c00301{transform:matrix(0.254023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254023,0.000000,0.000000,0.250000,0,0);}
.me0_c00301{transform:matrix(0.256275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256275,0.000000,0.000000,0.250000,0,0);}
.mc1_c00301{transform:matrix(0.257009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257009,0.000000,0.000000,0.250000,0,0);}
.m93_c00301{transform:matrix(0.257321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257321,0.000000,0.000000,0.250000,0,0);}
.mf_c00301{transform:matrix(0.258400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258400,0.000000,0.000000,0.250000,0,0);}
.mb3_c00301{transform:matrix(0.258944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258944,0.000000,0.000000,0.250000,0,0);}
.mc5_c00301{transform:matrix(0.259584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259584,0.000000,0.000000,0.250000,0,0);}
.m73_c00301{transform:matrix(0.259815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259815,0.000000,0.000000,0.250000,0,0);}
.m13_c00301{transform:matrix(0.259965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259965,0.000000,0.000000,0.250000,0,0);}
.me3_c00301{transform:matrix(0.260114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260114,0.000000,0.000000,0.250000,0,0);}
.m82_c00301{transform:matrix(0.262690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262690,0.000000,0.000000,0.250000,0,0);}
.m5d_c00301{transform:matrix(0.265386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265386,0.000000,0.000000,0.250000,0,0);}
.m4e_c00301{transform:matrix(0.265942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265942,0.000000,0.000000,0.250000,0,0);}
.mb4_c00301{transform:matrix(0.267608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267608,0.000000,0.000000,0.250000,0,0);}
.m7_c00301{transform:matrix(0.267721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267721,0.000000,0.000000,0.250000,0,0);}
.me_c00301{transform:matrix(0.267843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267843,0.000000,0.000000,0.250000,0,0);}
.m48_c00301{transform:matrix(0.268319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268319,0.000000,0.000000,0.250000,0,0);}
.m1f_c00301{transform:matrix(0.268402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268402,0.000000,0.000000,0.250000,0,0);}
.m1c_c00301{transform:matrix(0.269898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269898,0.000000,0.000000,0.250000,0,0);}
.m83_c00301{transform:matrix(0.269931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269931,0.000000,0.000000,0.250000,0,0);}
.mc_c00301{transform:matrix(0.270126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270126,0.000000,0.000000,0.250000,0,0);}
.m69_c00301{transform:matrix(0.270318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270318,0.000000,0.000000,0.250000,0,0);}
.mae_c00301{transform:matrix(0.270764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270764,0.000000,0.000000,0.250000,0,0);}
.m5a_c00301{transform:matrix(0.271126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271126,0.000000,0.000000,0.250000,0,0);}
.m89_c00301{transform:matrix(0.272516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272516,0.000000,0.000000,0.250000,0,0);}
.mb2_c00301{transform:matrix(0.272579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272579,0.000000,0.000000,0.250000,0,0);}
.m5f_c00301{transform:matrix(0.272782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272782,0.000000,0.000000,0.250000,0,0);}
.m2f_c00301{transform:matrix(0.273110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273110,0.000000,0.000000,0.250000,0,0);}
.m27_c00301{transform:matrix(0.273349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273349,0.000000,0.000000,0.250000,0,0);}
.md5_c00301{transform:matrix(0.274127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274127,0.000000,0.000000,0.250000,0,0);}
.m4f_c00301{transform:matrix(0.274865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274865,0.000000,0.000000,0.250000,0,0);}
.m74_c00301{transform:matrix(0.275578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275578,0.000000,0.000000,0.250000,0,0);}
.m1b_c00301{transform:matrix(0.275583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275583,0.000000,0.000000,0.250000,0,0);}
.m91_c00301{transform:matrix(0.276501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276501,0.000000,0.000000,0.250000,0,0);}
.mb0_c00301{transform:matrix(0.276663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276663,0.000000,0.000000,0.250000,0,0);}
.mad_c00301{transform:matrix(0.277179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277179,0.000000,0.000000,0.250000,0,0);}
.m7e_c00301{transform:matrix(0.277901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277901,0.000000,0.000000,0.250000,0,0);}
.m56_c00301{transform:matrix(0.277997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277997,0.000000,0.000000,0.250000,0,0);}
.m8_c00301{transform:matrix(0.278162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278162,0.000000,0.000000,0.250000,0,0);}
.m6_c00301{transform:matrix(0.278261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278261,0.000000,0.000000,0.250000,0,0);}
.mce_c00301{transform:matrix(0.278548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278548,0.000000,0.000000,0.250000,0,0);}
.m7d_c00301{transform:matrix(0.279526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279526,0.000000,0.000000,0.250000,0,0);}
.m39_c00301{transform:matrix(0.279604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279604,0.000000,0.000000,0.250000,0,0);}
.m7b_c00301{transform:matrix(0.279775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279775,0.000000,0.000000,0.250000,0,0);}
.m78_c00301{transform:matrix(0.280188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280188,0.000000,0.000000,0.250000,0,0);}
.m28_c00301{transform:matrix(0.281197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281197,0.000000,0.000000,0.250000,0,0);}
.m52_c00301{transform:matrix(0.281468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281468,0.000000,0.000000,0.250000,0,0);}
.m58_c00301{transform:matrix(0.281936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281936,0.000000,0.000000,0.250000,0,0);}
.m36_c00301{transform:matrix(0.282692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282692,0.000000,0.000000,0.250000,0,0);}
.m9b_c00301{transform:matrix(0.283262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283262,0.000000,0.000000,0.250000,0,0);}
.mde_c00301{transform:matrix(0.283817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283817,0.000000,0.000000,0.250000,0,0);}
.mb1_c00301{transform:matrix(0.284396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284396,0.000000,0.000000,0.250000,0,0);}
.m2b_c00301{transform:matrix(0.284608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284608,0.000000,0.000000,0.250000,0,0);}
.m59_c00301{transform:matrix(0.284692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284692,0.000000,0.000000,0.250000,0,0);}
.m8f_c00301{transform:matrix(0.284732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284732,0.000000,0.000000,0.250000,0,0);}
.m46_c00301{transform:matrix(0.284843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284843,0.000000,0.000000,0.250000,0,0);}
.mb8_c00301{transform:matrix(0.284869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284869,0.000000,0.000000,0.250000,0,0);}
.m63_c00301{transform:matrix(0.285209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285209,0.000000,0.000000,0.250000,0,0);}
.m5_c00301{transform:matrix(0.285232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285232,0.000000,0.000000,0.250000,0,0);}
.ma1_c00301{transform:matrix(0.285277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285277,0.000000,0.000000,0.250000,0,0);}
.m32_c00301{transform:matrix(0.285542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285542,0.000000,0.000000,0.250000,0,0);}
.mc6_c00301{transform:matrix(0.285672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285672,0.000000,0.000000,0.250000,0,0);}
.m94_c00301{transform:matrix(0.285752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285752,0.000000,0.000000,0.250000,0,0);}
.md_c00301{transform:matrix(0.285790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285790,0.000000,0.000000,0.250000,0,0);}
.me2_c00301{transform:matrix(0.285812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285812,0.000000,0.000000,0.250000,0,0);}
.mbf_c00301{transform:matrix(0.286635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286635,0.000000,0.000000,0.250000,0,0);}
.m7c_c00301{transform:matrix(0.286923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286923,0.000000,0.000000,0.250000,0,0);}
.m37_c00301{transform:matrix(0.287218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287218,0.000000,0.000000,0.250000,0,0);}
.mba_c00301{transform:matrix(0.287655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287655,0.000000,0.000000,0.250000,0,0);}
.mca_c00301{transform:matrix(0.288395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288395,0.000000,0.000000,0.250000,0,0);}
.m8d_c00301{transform:matrix(0.289127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289127,0.000000,0.000000,0.250000,0,0);}
.m2d_c00301{transform:matrix(0.290893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290893,0.000000,0.000000,0.250000,0,0);}
.m72_c00301{transform:matrix(0.291771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291771,0.000000,0.000000,0.250000,0,0);}
.m79_c00301{transform:matrix(0.292181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292181,0.000000,0.000000,0.250000,0,0);}
.m5b_c00301{transform:matrix(0.292246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292246,0.000000,0.000000,0.250000,0,0);}
.mc3_c00301{transform:matrix(0.292852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292852,0.000000,0.000000,0.250000,0,0);}
.m60_c00301{transform:matrix(0.292874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292874,0.000000,0.000000,0.250000,0,0);}
.m7f_c00301{transform:matrix(0.293284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293284,0.000000,0.000000,0.250000,0,0);}
.m20_c00301{transform:matrix(0.293498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293498,0.000000,0.000000,0.250000,0,0);}
.ma9_c00301{transform:matrix(0.293918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293918,0.000000,0.000000,0.250000,0,0);}
.m8b_c00301{transform:matrix(0.294481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294481,0.000000,0.000000,0.250000,0,0);}
.m54_c00301{transform:matrix(0.294545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294545,0.000000,0.000000,0.250000,0,0);}
.m84_c00301{transform:matrix(0.294617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294617,0.000000,0.000000,0.250000,0,0);}
.m31_c00301{transform:matrix(0.294967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294967,0.000000,0.000000,0.250000,0,0);}
.m5c_c00301{transform:matrix(0.295220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295220,0.000000,0.000000,0.250000,0,0);}
.md2_c00301{transform:matrix(0.295514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295514,0.000000,0.000000,0.250000,0,0);}
.m96_c00301{transform:matrix(0.295832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295832,0.000000,0.000000,0.250000,0,0);}
.m10_c00301{transform:matrix(0.297020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297020,0.000000,0.000000,0.250000,0,0);}
.m3e_c00301{transform:matrix(0.297711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297711,0.000000,0.000000,0.250000,0,0);}
.m4_c00301{transform:matrix(0.298010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298010,0.000000,0.000000,0.250000,0,0);}
.maa_c00301{transform:matrix(0.298347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298347,0.000000,0.000000,0.250000,0,0);}
.m6d_c00301{transform:matrix(0.299059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299059,0.000000,0.000000,0.250000,0,0);}
.m23_c00301{transform:matrix(0.299077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299077,0.000000,0.000000,0.250000,0,0);}
.mcf_c00301{transform:matrix(0.299341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299341,0.000000,0.000000,0.250000,0,0);}
.m11_c00301{transform:matrix(0.299778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299778,0.000000,0.000000,0.250000,0,0);}
.m3d_c00301{transform:matrix(0.299835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299835,0.000000,0.000000,0.250000,0,0);}
.m85_c00301{transform:matrix(0.300194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300194,0.000000,0.000000,0.250000,0,0);}
.m95_c00301{transform:matrix(0.300677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300677,0.000000,0.000000,0.250000,0,0);}
.mcc_c00301{transform:matrix(0.300854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300854,0.000000,0.000000,0.250000,0,0);}
.m9_c00301{transform:matrix(0.301064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301064,0.000000,0.000000,0.250000,0,0);}
.m2_c00301{transform:matrix(0.301180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301180,0.000000,0.000000,0.250000,0,0);}
.me1_c00301{transform:matrix(0.301337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301337,0.000000,0.000000,0.250000,0,0);}
.m4a_c00301{transform:matrix(0.301936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301936,0.000000,0.000000,0.250000,0,0);}
.m98_c00301{transform:matrix(0.302488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302488,0.000000,0.000000,0.250000,0,0);}
.md7_c00301{transform:matrix(0.303339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303339,0.000000,0.000000,0.250000,0,0);}
.m55_c00301{transform:matrix(0.304457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304457,0.000000,0.000000,0.250000,0,0);}
.m35_c00301{transform:matrix(0.305058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305058,0.000000,0.000000,0.250000,0,0);}
.m12_c00301{transform:matrix(0.305548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305548,0.000000,0.000000,0.250000,0,0);}
.m2c_c00301{transform:matrix(0.305959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305959,0.000000,0.000000,0.250000,0,0);}
.m77_c00301{transform:matrix(0.306409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306409,0.000000,0.000000,0.250000,0,0);}
.m99_c00301{transform:matrix(0.306610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306610,0.000000,0.000000,0.250000,0,0);}
.mdb_c00301{transform:matrix(0.307416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307416,0.000000,0.000000,0.250000,0,0);}
.m43_c00301{transform:matrix(0.307434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307434,0.000000,0.000000,0.250000,0,0);}
.m9a_c00301{transform:matrix(0.307968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307968,0.000000,0.000000,0.250000,0,0);}
.m8a_c00301{transform:matrix(0.308988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308988,0.000000,0.000000,0.250000,0,0);}
.m9f_c00301{transform:matrix(0.309849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309849,0.000000,0.000000,0.250000,0,0);}
.mc0_c00301{transform:matrix(0.310181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310181,0.000000,0.000000,0.250000,0,0);}
.m3_c00301{transform:matrix(0.310815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310815,0.000000,0.000000,0.250000,0,0);}
.m41_c00301{transform:matrix(0.311012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311012,0.000000,0.000000,0.250000,0,0);}
.me4_c00301{transform:matrix(0.311155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311155,0.000000,0.000000,0.250000,0,0);}
.md4_c00301{transform:matrix(0.311372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311372,0.000000,0.000000,0.250000,0,0);}
.m29_c00301{transform:matrix(0.311517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311517,0.000000,0.000000,0.250000,0,0);}
.m75_c00301{transform:matrix(0.311812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311812,0.000000,0.000000,0.250000,0,0);}
.m65_c00301{transform:matrix(0.311948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311948,0.000000,0.000000,0.250000,0,0);}
.m9d_c00301{transform:matrix(0.312024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312024,0.000000,0.000000,0.250000,0,0);}
.m5e_c00301{transform:matrix(0.313180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313180,0.000000,0.000000,0.250000,0,0);}
.m26_c00301{transform:matrix(0.315021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315021,0.000000,0.000000,0.250000,0,0);}
.m64_c00301{transform:matrix(0.315202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315202,0.000000,0.000000,0.250000,0,0);}
.m4b_c00301{transform:matrix(0.315822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315822,0.000000,0.000000,0.250000,0,0);}
.md6_c00301{transform:matrix(0.315955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315955,0.000000,0.000000,0.250000,0,0);}
.m44_c00301{transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);}
.m42_c00301{transform:matrix(0.316573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316573,0.000000,0.000000,0.250000,0,0);}
.m49_c00301{transform:matrix(0.316667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316667,0.000000,0.000000,0.250000,0,0);}
.m45_c00301{transform:matrix(0.316908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316908,0.000000,0.000000,0.250000,0,0);}
.m22_c00301{transform:matrix(0.317347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317347,0.000000,0.000000,0.250000,0,0);}
.m53_c00301{transform:matrix(0.317515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317515,0.000000,0.000000,0.250000,0,0);}
.mcb_c00301{transform:matrix(0.318200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318200,0.000000,0.000000,0.250000,0,0);}
.mac_c00301{transform:matrix(0.318744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318744,0.000000,0.000000,0.250000,0,0);}
.mc8_c00301{transform:matrix(0.319419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319419,0.000000,0.000000,0.250000,0,0);}
.m3a_c00301{transform:matrix(0.319510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319510,0.000000,0.000000,0.250000,0,0);}
.m97_c00301{transform:matrix(0.321381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321381,0.000000,0.000000,0.250000,0,0);}
.ma2_c00301{transform:matrix(0.321477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321477,0.000000,0.000000,0.250000,0,0);}
.md0_c00301{transform:matrix(0.322446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322446,0.000000,0.000000,0.250000,0,0);}
.mb5_c00301{transform:matrix(0.323808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323808,0.000000,0.000000,0.250000,0,0);}
.m8e_c00301{transform:matrix(0.323835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323835,0.000000,0.000000,0.250000,0,0);}
.m4d_c00301{transform:matrix(0.324828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324828,0.000000,0.000000,0.250000,0,0);}
.m18_c00301{transform:matrix(0.325036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325036,0.000000,0.000000,0.250000,0,0);}
.ma3_c00301{transform:matrix(0.325143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325143,0.000000,0.000000,0.250000,0,0);}
.m80_c00301{transform:matrix(0.325205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325205,0.000000,0.000000,0.250000,0,0);}
.m76_c00301{transform:matrix(0.325466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325466,0.000000,0.000000,0.250000,0,0);}
.m67_c00301{transform:matrix(0.325521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325521,0.000000,0.000000,0.250000,0,0);}
.mdd_c00301{transform:matrix(0.325591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325591,0.000000,0.000000,0.250000,0,0);}
.m14_c00301{transform:matrix(0.327560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327560,0.000000,0.000000,0.250000,0,0);}
.mc7_c00301{transform:matrix(0.327808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327808,0.000000,0.000000,0.250000,0,0);}
.m88_c00301{transform:matrix(0.328840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328840,0.000000,0.000000,0.250000,0,0);}
.maf_c00301{transform:matrix(0.329122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329122,0.000000,0.000000,0.250000,0,0);}
.m33_c00301{transform:matrix(0.329350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329350,0.000000,0.000000,0.250000,0,0);}
.mcd_c00301{transform:matrix(0.329558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329558,0.000000,0.000000,0.250000,0,0);}
.m30_c00301{transform:matrix(0.331246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331246,0.000000,0.000000,0.250000,0,0);}
.m34_c00301{transform:matrix(0.331795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331795,0.000000,0.000000,0.250000,0,0);}
.m3b_c00301{transform:matrix(0.332355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332355,0.000000,0.000000,0.250000,0,0);}
.m8c_c00301{transform:matrix(0.332401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332401,0.000000,0.000000,0.250000,0,0);}
.mb_c00301{transform:matrix(0.332678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332678,0.000000,0.000000,0.250000,0,0);}
.m4c_c00301{transform:matrix(0.333790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333790,0.000000,0.000000,0.250000,0,0);}
.m47_c00301{transform:matrix(0.335359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335359,0.000000,0.000000,0.250000,0,0);}
.m90_c00301{transform:matrix(0.335641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335641,0.000000,0.000000,0.250000,0,0);}
.m86_c00301{transform:matrix(0.335776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335776,0.000000,0.000000,0.250000,0,0);}
.m51_c00301{transform:matrix(0.336700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336700,0.000000,0.000000,0.250000,0,0);}
.m38_c00301{transform:matrix(0.337332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337332,0.000000,0.000000,0.250000,0,0);}
.m66_c00301{transform:matrix(0.341433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341433,0.000000,0.000000,0.250000,0,0);}
.mdf_c00301{transform:matrix(0.341856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341856,0.000000,0.000000,0.250000,0,0);}
.m92_c00301{transform:matrix(0.341868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341868,0.000000,0.000000,0.250000,0,0);}
.mb7_c00301{transform:matrix(0.342571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342571,0.000000,0.000000,0.250000,0,0);}
.m1a_c00301{transform:matrix(0.343367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343367,0.000000,0.000000,0.250000,0,0);}
.m6a_c00301{transform:matrix(0.344638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344638,0.000000,0.000000,0.250000,0,0);}
.m6c_c00301{transform:matrix(0.345063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345063,0.000000,0.000000,0.250000,0,0);}
.m2e_c00301{transform:matrix(0.346033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346033,0.000000,0.000000,0.250000,0,0);}
.md3_c00301{transform:matrix(0.346409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346409,0.000000,0.000000,0.250000,0,0);}
.m71_c00301{transform:matrix(0.346856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346856,0.000000,0.000000,0.250000,0,0);}
.m3c_c00301{transform:matrix(0.346922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346922,0.000000,0.000000,0.250000,0,0);}
.m2a_c00301{transform:matrix(0.348072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348072,0.000000,0.000000,0.250000,0,0);}
.mb9_c00301{transform:matrix(0.348438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348438,0.000000,0.000000,0.250000,0,0);}
.ma8_c00301{transform:matrix(0.348878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348878,0.000000,0.000000,0.250000,0,0);}
.m21_c00301{transform:matrix(0.352330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352330,0.000000,0.000000,0.250000,0,0);}
.m50_c00301{transform:matrix(0.354542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354542,0.000000,0.000000,0.250000,0,0);}
.m16_c00301{transform:matrix(0.354979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354979,0.000000,0.000000,0.250000,0,0);}
.ma4_c00301{transform:matrix(0.358556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358556,0.000000,0.000000,0.250000,0,0);}
.ma5_c00301{transform:matrix(0.360048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360048,0.000000,0.000000,0.250000,0,0);}
.m3f_c00301{transform:matrix(0.364093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364093,0.000000,0.000000,0.250000,0,0);}
.m9c_c00301{transform:matrix(0.364530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364530,0.000000,0.000000,0.250000,0,0);}
.ma0_c00301{transform:matrix(0.364741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364741,0.000000,0.000000,0.250000,0,0);}
.ma_c00301{transform:matrix(0.370709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370709,0.000000,0.000000,0.250000,0,0);}
.m68_c00301{transform:matrix(0.374609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374609,0.000000,0.000000,0.250000,0,0);}
.mbd_c00301{transform:matrix(0.384422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384422,0.000000,0.000000,0.250000,0,0);}
.m61_c00301{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);}
.m1d_c00301{transform:matrix(0.396026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396026,0.000000,0.000000,0.250000,0,0);}
.m9e_c00301{transform:matrix(0.418352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418352,0.000000,0.000000,0.250000,0,0);}
.m7a_c00301{transform:matrix(0.425442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425442,0.000000,0.000000,0.250000,0,0);}
.mbe_c00301{transform:matrix(0.426288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426288,0.000000,0.000000,0.250000,0,0);}
.m15_c00301{transform:matrix(0.430152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430152,0.000000,0.000000,0.250000,0,0);}
.mc9_c00301{transform:matrix(0.451469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451469,0.000000,0.000000,0.250000,0,0);}
.v0_c00301{vertical-align:0.000000px;}
.lsc_c00301{letter-spacing:-2.674980px;}
.ls7_c00301{letter-spacing:-2.619540px;}
.ls11_c00301{letter-spacing:-1.663200px;}
.ls8_c00301{letter-spacing:0.000000px;}
.lsd_c00301{letter-spacing:0.657281px;}
.ls2_c00301{letter-spacing:1.008850px;}
.ls3_c00301{letter-spacing:1.497989px;}
.lsb_c00301{letter-spacing:1.643400px;}
.ls1_c00301{letter-spacing:2.590909px;}
.lsf_c00301{letter-spacing:3.538616px;}
.ls6_c00301{letter-spacing:3.555090px;}
.ls10_c00301{letter-spacing:3.660901px;}
.ls4_c00301{letter-spacing:3.678057px;}
.ls9_c00301{letter-spacing:3.821400px;}
.lsa_c00301{letter-spacing:3.880810px;}
.lse_c00301{letter-spacing:3.977433px;}
.ls0_c00301{letter-spacing:22.527648px;}
.ls5_c00301{letter-spacing:49.896198px;}
.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;}
}
.wsa_c00301{word-spacing:-87.069434px;}
.ws8_c00301{word-spacing:-22.645616px;}
.ws6_c00301{word-spacing:-20.604989px;}
.ws2_c00301{word-spacing:-20.115850px;}
.ws5_c00301{word-spacing:-19.107000px;}
.ws7_c00301{word-spacing:-6.928367px;}
.ws0_c00301{word-spacing:-6.053098px;}
.ws4_c00301{word-spacing:-2.445696px;}
.ws9_c00301{word-spacing:-1.070784px;}
.ws1_c00301{word-spacing:0.000000px;}
.ws3_c00301{word-spacing:3.362832px;}
._4_c00301{margin-left:-20.669616px;}
._1a_c00301{margin-left:-10.576368px;}
._1b_c00301{margin-left:-8.406288px;}
._10_c00301{margin-left:-4.953326px;}
._18_c00301{margin-left:-2.216412px;}
._19_c00301{margin-left:-1.003068px;}
._6_c00301{width:3.492720px;}
._1_c00301{width:5.148000px;}
._13_c00301{width:7.107804px;}
._b_c00301{width:8.177796px;}
._c_c00301{width:9.553500px;}
._0_c00301{width:11.130768px;}
._f_c00301{width:12.534588px;}
._14_c00301{width:13.909896px;}
._5_c00301{width:15.610320px;}
._7_c00301{width:21.400236px;}
._16_c00301{width:22.985424px;}
._d_c00301{width:24.456168px;}
._9_c00301{width:26.596944px;}
._17_c00301{width:29.729700px;}
._2_c00301{width:31.030560px;}
._3_c00301{width:34.352208px;}
._15_c00301{width:35.386164px;}
._1c_c00301{width:36.478728px;}
._12_c00301{width:38.992041px;}
._11_c00301{width:42.688800px;}
._e_c00301{width:47.104200px;}
._8_c00301{width:59.529096px;}
._a_c00301{width:83.480364px;}
.fc0_c00301{color:transparent;}
.fs1_c00301{font-size:22.572000px;}
.fsc_c00301{font-size:28.314000px;}
.fs6_c00301{font-size:32.868000px;}
.fsa_c00301{font-size:47.520000px;}
.fs7_c00301{font-size:49.896198px;}
.fsb_c00301{font-size:54.846198px;}
.fs8_c00301{font-size:63.360000px;}
.fs5_c00301{font-size:71.280000px;}
.fs0_c00301{font-size:74.844000px;}
.fs3_c00301{font-size:76.428000px;}
.fs4_c00301{font-size:77.616198px;}
.fs9_c00301{font-size:85.536198px;}
.fs2_c00301{font-size:93.456198px;}
.y0_c00301{bottom:0.000000px;}
.y1_c00301{bottom:76.500000px;}
.y20_c00301{bottom:133.918335px;}
.y1f_c00301{bottom:164.212335px;}
.y1e_c00301{bottom:195.570585px;}
.y1c_c00301{bottom:229.782906px;}
.y1d_c00301{bottom:229.789935px;}
.y1b_c00301{bottom:265.073535px;}
.y19_c00301{bottom:297.857682px;}
.y1a_c00301{bottom:297.862335px;}
.y18_c00301{bottom:329.938335px;}
.y17_c00301{bottom:362.722185px;}
.y16_c00301{bottom:395.872335px;}
.y15_c00301{bottom:427.948335px;}
.y14_c00301{bottom:460.732185px;}
.y22_c00301{bottom:466.078185px;}
.y13_c00301{bottom:492.456735px;}
.y12_c00301{bottom:524.889135px;}
.y11_c00301{bottom:557.677935px;}
.y10_c00301{bottom:557.678430px;}
.ye_c00301{bottom:591.526530px;}
.yf_c00301{bottom:591.535935px;}
.yd_c00301{bottom:623.606985px;}
.y21_c00301{bottom:645.703785px;}
.yc_c00301{bottom:656.395785px;}
.yb_c00301{bottom:721.973385px;}
.ya_c00301{bottom:754.049385px;}
.y9_c00301{bottom:787.194585px;}
.y8_c00301{bottom:819.983385px;}
.y6_c00301{bottom:852.415785px;}
.y7_c00301{bottom:858.118185px;}
.y5_c00301{bottom:886.630185px;}
.y4_c00301{bottom:922.631535px;}
.y3_c00301{bottom:1038.812985px;}
.y2_c00301{bottom:1071.958185px;}
.hd_c00301{height:29.530617px;}
.h7_c00301{height:33.230868px;}
.h6_c00301{height:34.280297px;}
.hb_c00301{height:49.561875px;}
.hc_c00301{height:57.202871px;}
.h8_c00301{height:66.082500px;}
.h2_c00301{height:73.455293px;}
.h4_c00301{height:75.009902px;}
.ha_c00301{height:75.038018px;}
.h5_c00301{height:76.176054px;}
.h9_c00301{height:83.949101px;}
.h3_c00301{height:97.471894px;}
.h1_c00301{height:1110.000000px;}
.h0_c00301{height:1263.000000px;}
.w1_c00301{width:763.500000px;}
.w0_c00301{width:892.500000px;}
.x0_c00301{left:0.000000px;}
.x1_c00301{left:64.500000px;}
.x51_c00301{left:81.074130px;}
.x37_c00301{left:82.576950px;}
.xf_c00301{left:83.725350px;}
.x5_c00301{left:84.814350px;}
.x72_c00301{left:94.452000px;}
.x6a_c00301{left:105.114300px;}
.x65_c00301{left:107.193300px;}
.x10_c00301{left:116.365650px;}
.x62_c00301{left:125.275650px;}
.x52_c00301{left:126.775500px;}
.x40_c00301{left:137.551650px;}
.x25_c00301{left:139.011900px;}
.x6d_c00301{left:140.338500px;}
.x4c_c00301{left:148.708950px;}
.x1d_c00301{left:151.070100px;}
.x2d_c00301{left:152.144250px;}
.x4d_c00301{left:158.816850px;}
.x5c_c00301{left:160.371150px;}
.x41_c00301{left:161.628450px;}
.x1e_c00301{left:162.969900px;}
.x76_c00301{left:168.400050px;}
.x58_c00301{left:169.894950px;}
.x26_c00301{left:171.449250px;}
.x47_c00301{left:181.230450px;}
.x27_c00301{left:182.789700px;}
.x5d_c00301{left:191.249250px;}
.x38_c00301{left:192.704550px;}
.x2e_c00301{left:195.486450px;}
.x6_c00301{left:203.748000px;}
.x53_c00301{left:206.628900px;}
.x2f_c00301{left:215.009250px;}
.x28_c00301{left:217.271400px;}
.x5e_c00301{left:225.488400px;}
.x54_c00301{left:227.022900px;}
.x5f_c00301{left:235.442850px;}
.x11_c00301{left:237.383250px;}
.x39_c00301{left:248.085150px;}
.x55_c00301{left:258.990000px;}
.x7_c00301{left:260.499750px;}
.x3a_c00301{left:269.622600px;}
.x30_c00301{left:271.152150px;}
.x57_c00301{left:280.661100px;}
.x12_c00301{left:282.175800px;}
.x42_c00301{left:291.372900px;}
.x48_c00301{left:292.432200px;}
.x73_c00301{left:293.689500px;}
.x43_c00301{left:303.272700px;}
.x31_c00301{left:304.708200px;}
.x13_c00301{left:315.063600px;}
.x1f_c00301{left:316.142700px;}
.x60_c00301{left:325.428900px;}
.x20_c00301{left:326.433750px;}
.x21_c00301{left:336.967350px;}
.x59_c00301{left:346.283250px;}
.x56_c00301{left:348.154350px;}
.x29_c00301{left:358.524600px;}
.x77_c00301{left:359.598750px;}
.x8_c00301{left:361.346100px;}
.x44_c00301{left:369.246300px;}
.x14_c00301{left:379.755150px;}
.x32_c00301{left:381.378750px;}
.x33_c00301{left:390.476850px;}
.x3b_c00301{left:392.382600px;}
.x45_c00301{left:402.168750px;}
.x15_c00301{left:412.895400px;}
.x4e_c00301{left:414.509100px;}
.x3c_c00301{left:423.265650px;}
.x9_c00301{left:425.156550px;}
.x5a_c00301{left:435.061500px;}
.x66_c00301{left:438.288900px;}
.x16_c00301{left:446.461350px;}
.xa_c00301{left:449.332350px;}
.x6b_c00301{left:457.084050px;}
.x34_c00301{left:458.232450px;}
.xb_c00301{left:469.043250px;}
.x2a_c00301{left:480.052050px;}
.x35_c00301{left:489.867900px;}
.x6c_c00301{left:490.951950px;}
.x5b_c00301{left:501.812250px;}
.xc_c00301{left:512.331000px;}
.x22_c00301{left:523.448700px;}
.x6e_c00301{left:524.602050px;}
.x49_c00301{left:533.036850px;}
.x3d_c00301{left:534.254550px;}
.xd_c00301{left:545.540550px;}
.x17_c00301{left:546.847350px;}
.x2b_c00301{left:557.049300px;}
.x74_c00301{left:567.048300px;}
.x3e_c00301{left:568.077900px;}
.x4a_c00301{left:578.403600px;}
.x46_c00301{left:579.858900px;}
.x2c_c00301{left:589.323300px;}
.x36_c00301{left:590.907300px;}
.x3f_c00301{left:600.683550px;}
.xe_c00301{left:611.603250px;}
.x18_c00301{left:622.651650px;}
.x6f_c00301{left:627.631350px;}
.x61_c00301{left:632.987250px;}
.x67_c00301{left:634.719750px;}
.x63_c00301{left:642.808050px;}
.x19_c00301{left:644.748450px;}
.x23_c00301{left:656.039400px;}
.x2_c00301{left:657.559050px;}
.x68_c00301{left:661.900200px;}
.x4b_c00301{left:666.271050px;}
.x1a_c00301{left:677.928300px;}
.x4f_c00301{left:686.957100px;}
.x70_c00301{left:688.620300px;}
.x24_c00301{left:689.659800px;}
.x3_c00301{left:691.595250px;}
.x71_c00301{left:700.307250px;}
.x69_c00301{left:702.024900px;}
.x1b_c00301{left:710.187450px;}
.x64_c00301{left:712.266450px;}
.x50_c00301{left:721.349700px;}
.x75_c00301{left:722.646600px;}
.x1c_c00301{left:732.754500px;}
.x4_c00301{left:738.902400px;}
.x78_c00301{left:761.276400px;}
.x79_c00301{left:762.746550px;}
@media print{
.v0_c00301{vertical-align:0.000000pt;}
.lsc_c00301{letter-spacing:-2.377760pt;}
.ls7_c00301{letter-spacing:-2.328480pt;}
.ls11_c00301{letter-spacing:-1.478400pt;}
.ls8_c00301{letter-spacing:0.000000pt;}
.lsd_c00301{letter-spacing:0.584250pt;}
.ls2_c00301{letter-spacing:0.896755pt;}
.ls3_c00301{letter-spacing:1.331546pt;}
.lsb_c00301{letter-spacing:1.460800pt;}
.ls1_c00301{letter-spacing:2.303030pt;}
.lsf_c00301{letter-spacing:3.145437pt;}
.ls6_c00301{letter-spacing:3.160080pt;}
.ls10_c00301{letter-spacing:3.254134pt;}
.ls4_c00301{letter-spacing:3.269384pt;}
.ls9_c00301{letter-spacing:3.396800pt;}
.lsa_c00301{letter-spacing:3.449609pt;}
.lse_c00301{letter-spacing:3.535496pt;}
.ls0_c00301{letter-spacing:20.024576pt;}
.ls5_c00301{letter-spacing:44.352176pt;}
.wsa_c00301{word-spacing:-77.395052pt;}
.ws8_c00301{word-spacing:-20.129437pt;}
.ws6_c00301{word-spacing:-18.315546pt;}
.ws2_c00301{word-spacing:-17.880755pt;}
.ws5_c00301{word-spacing:-16.984000pt;}
.ws7_c00301{word-spacing:-6.158549pt;}
.ws0_c00301{word-spacing:-5.380531pt;}
.ws4_c00301{word-spacing:-2.173952pt;}
.ws9_c00301{word-spacing:-0.951808pt;}
.ws1_c00301{word-spacing:0.000000pt;}
.ws3_c00301{word-spacing:2.989184pt;}
._4_c00301{margin-left:-18.372992pt;}
._1a_c00301{margin-left:-9.401216pt;}
._1b_c00301{margin-left:-7.472256pt;}
._10_c00301{margin-left:-4.402957pt;}
._18_c00301{margin-left:-1.970144pt;}
._19_c00301{margin-left:-0.891616pt;}
._6_c00301{width:3.104640pt;}
._1_c00301{width:4.576000pt;}
._13_c00301{width:6.318048pt;}
._b_c00301{width:7.269152pt;}
._c_c00301{width:8.492000pt;}
._0_c00301{width:9.894016pt;}
._f_c00301{width:11.141856pt;}
._14_c00301{width:12.364352pt;}
._5_c00301{width:13.875840pt;}
._7_c00301{width:19.022432pt;}
._16_c00301{width:20.431488pt;}
._d_c00301{width:21.738816pt;}
._9_c00301{width:23.641728pt;}
._17_c00301{width:26.426400pt;}
._2_c00301{width:27.582720pt;}
._3_c00301{width:30.535296pt;}
._15_c00301{width:31.454368pt;}
._1c_c00301{width:32.425536pt;}
._12_c00301{width:34.659592pt;}
._11_c00301{width:37.945600pt;}
._e_c00301{width:41.870400pt;}
._8_c00301{width:52.914752pt;}
._a_c00301{width:74.204768pt;}
.fs1_c00301{font-size:20.064000pt;}
.fsc_c00301{font-size:25.168000pt;}
.fs6_c00301{font-size:29.216000pt;}
.fsa_c00301{font-size:42.240000pt;}
.fs7_c00301{font-size:44.352176pt;}
.fsb_c00301{font-size:48.752176pt;}
.fs8_c00301{font-size:56.320000pt;}
.fs5_c00301{font-size:63.360000pt;}
.fs0_c00301{font-size:66.528000pt;}
.fs3_c00301{font-size:67.936000pt;}
.fs4_c00301{font-size:68.992176pt;}
.fs9_c00301{font-size:76.032176pt;}
.fs2_c00301{font-size:83.072176pt;}
.y0_c00301{bottom:0.000000pt;}
.y1_c00301{bottom:68.000000pt;}
.y20_c00301{bottom:119.038520pt;}
.y1f_c00301{bottom:145.966520pt;}
.y1e_c00301{bottom:173.840520pt;}
.y1c_c00301{bottom:204.251472pt;}
.y1d_c00301{bottom:204.257720pt;}
.y1b_c00301{bottom:235.620920pt;}
.y19_c00301{bottom:264.762384pt;}
.y1a_c00301{bottom:264.766520pt;}
.y18_c00301{bottom:293.278520pt;}
.y17_c00301{bottom:322.419720pt;}
.y16_c00301{bottom:351.886520pt;}
.y15_c00301{bottom:380.398520pt;}
.y14_c00301{bottom:409.539720pt;}
.y22_c00301{bottom:414.291720pt;}
.y13_c00301{bottom:437.739320pt;}
.y12_c00301{bottom:466.568120pt;}
.y11_c00301{bottom:495.713720pt;}
.y10_c00301{bottom:495.714160pt;}
.ye_c00301{bottom:525.801360pt;}
.yf_c00301{bottom:525.809720pt;}
.yd_c00301{bottom:554.317320pt;}
.y21_c00301{bottom:573.958920pt;}
.yc_c00301{bottom:583.462920pt;}
.yb_c00301{bottom:641.754120pt;}
.ya_c00301{bottom:670.266120pt;}
.y9_c00301{bottom:699.728520pt;}
.y8_c00301{bottom:728.874120pt;}
.y6_c00301{bottom:757.702920pt;}
.y7_c00301{bottom:762.771720pt;}
.y5_c00301{bottom:788.115720pt;}
.y4_c00301{bottom:820.116920pt;}
.y3_c00301{bottom:923.389320pt;}
.y2_c00301{bottom:952.851720pt;}
.hd_c00301{height:26.249438pt;}
.h7_c00301{height:29.538549pt;}
.h6_c00301{height:30.471375pt;}
.hb_c00301{height:44.055000pt;}
.hc_c00301{height:50.846996pt;}
.h8_c00301{height:58.740000pt;}
.h2_c00301{height:65.293594pt;}
.h4_c00301{height:66.675469pt;}
.ha_c00301{height:66.700461pt;}
.h5_c00301{height:67.712048pt;}
.h9_c00301{height:74.621423pt;}
.h3_c00301{height:86.641684pt;}
.h1_c00301{height:986.666667pt;}
.h0_c00301{height:1122.666667pt;}
.w1_c00301{width:678.666667pt;}
.w0_c00301{width:793.333333pt;}
.x0_c00301{left:0.000000pt;}
.x1_c00301{left:57.333333pt;}
.x51_c00301{left:72.065893pt;}
.x37_c00301{left:73.401733pt;}
.xf_c00301{left:74.422533pt;}
.x5_c00301{left:75.390533pt;}
.x72_c00301{left:83.957333pt;}
.x6a_c00301{left:93.434933pt;}
.x65_c00301{left:95.282933pt;}
.x10_c00301{left:103.436133pt;}
.x62_c00301{left:111.356133pt;}
.x52_c00301{left:112.689333pt;}
.x40_c00301{left:122.268133pt;}
.x25_c00301{left:123.566133pt;}
.x6d_c00301{left:124.745333pt;}
.x4c_c00301{left:132.185733pt;}
.x1d_c00301{left:134.284533pt;}
.x2d_c00301{left:135.239333pt;}
.x4d_c00301{left:141.170533pt;}
.x5c_c00301{left:142.552133pt;}
.x41_c00301{left:143.669733pt;}
.x1e_c00301{left:144.862133pt;}
.x76_c00301{left:149.688933pt;}
.x58_c00301{left:151.017733pt;}
.x26_c00301{left:152.399333pt;}
.x47_c00301{left:161.093733pt;}
.x27_c00301{left:162.479733pt;}
.x5d_c00301{left:169.999333pt;}
.x38_c00301{left:171.292933pt;}
.x2e_c00301{left:173.765733pt;}
.x6_c00301{left:181.109333pt;}
.x53_c00301{left:183.670133pt;}
.x2f_c00301{left:191.119333pt;}
.x28_c00301{left:193.130133pt;}
.x5e_c00301{left:200.434133pt;}
.x54_c00301{left:201.798133pt;}
.x5f_c00301{left:209.282533pt;}
.x11_c00301{left:211.007333pt;}
.x39_c00301{left:220.520133pt;}
.x55_c00301{left:230.213333pt;}
.x7_c00301{left:231.555333pt;}
.x3a_c00301{left:239.664533pt;}
.x30_c00301{left:241.024133pt;}
.x57_c00301{left:249.476533pt;}
.x12_c00301{left:250.822933pt;}
.x42_c00301{left:258.998133pt;}
.x48_c00301{left:259.939733pt;}
.x73_c00301{left:261.057333pt;}
.x43_c00301{left:269.575733pt;}
.x31_c00301{left:270.851733pt;}
.x13_c00301{left:280.056533pt;}
.x1f_c00301{left:281.015733pt;}
.x60_c00301{left:289.270133pt;}
.x20_c00301{left:290.163333pt;}
.x21_c00301{left:299.526533pt;}
.x59_c00301{left:307.807333pt;}
.x56_c00301{left:309.470533pt;}
.x29_c00301{left:318.688533pt;}
.x77_c00301{left:319.643333pt;}
.x8_c00301{left:321.196533pt;}
.x44_c00301{left:328.218933pt;}
.x14_c00301{left:337.560133pt;}
.x32_c00301{left:339.003333pt;}
.x33_c00301{left:347.090533pt;}
.x3b_c00301{left:348.784533pt;}
.x45_c00301{left:357.483333pt;}
.x15_c00301{left:367.018133pt;}
.x4e_c00301{left:368.452533pt;}
.x3c_c00301{left:376.236133pt;}
.x9_c00301{left:377.916933pt;}
.x5a_c00301{left:386.721333pt;}
.x66_c00301{left:389.590133pt;}
.x16_c00301{left:396.854533pt;}
.xa_c00301{left:399.406533pt;}
.x6b_c00301{left:406.296933pt;}
.x34_c00301{left:407.317733pt;}
.xb_c00301{left:416.927333pt;}
.x2a_c00301{left:426.712933pt;}
.x35_c00301{left:435.438133pt;}
.x6c_c00301{left:436.401733pt;}
.x5b_c00301{left:446.055333pt;}
.xc_c00301{left:455.405333pt;}
.x22_c00301{left:465.287733pt;}
.x6e_c00301{left:466.312933pt;}
.x49_c00301{left:473.810533pt;}
.x3d_c00301{left:474.892933pt;}
.xd_c00301{left:484.924933pt;}
.x17_c00301{left:486.086533pt;}
.x2b_c00301{left:495.154933pt;}
.x74_c00301{left:504.042933pt;}
.x3e_c00301{left:504.958133pt;}
.x4a_c00301{left:514.136533pt;}
.x46_c00301{left:515.430133pt;}
.x2c_c00301{left:523.842933pt;}
.x36_c00301{left:525.250933pt;}
.x3f_c00301{left:533.940933pt;}
.xe_c00301{left:543.647333pt;}
.x18_c00301{left:553.468133pt;}
.x6f_c00301{left:557.894533pt;}
.x61_c00301{left:562.655333pt;}
.x67_c00301{left:564.195333pt;}
.x63_c00301{left:571.384933pt;}
.x19_c00301{left:573.109733pt;}
.x23_c00301{left:583.146133pt;}
.x2_c00301{left:584.496933pt;}
.x68_c00301{left:588.355733pt;}
.x4b_c00301{left:592.240933pt;}
.x1a_c00301{left:602.602933pt;}
.x4f_c00301{left:610.628533pt;}
.x70_c00301{left:612.106933pt;}
.x24_c00301{left:613.030933pt;}
.x3_c00301{left:614.751333pt;}
.x71_c00301{left:622.495333pt;}
.x69_c00301{left:624.022133pt;}
.x1b_c00301{left:631.277733pt;}
.x64_c00301{left:633.125733pt;}
.x50_c00301{left:641.199733pt;}
.x75_c00301{left:642.352533pt;}
.x1c_c00301{left:651.337333pt;}
.x4_c00301{left:656.802133pt;}
.x78_c00301{left:676.690133pt;}
.x79_c00301{left:677.996933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f3a7ae905bfd840ee6e227b0.woff2')format("woff");}.ff1_c00302{font-family:ff1_c00302;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00302;src:url('chunks/assets/font_e23ba9afa4c530aa327ebd2e.woff2')format("woff");}.ff2_c00302{font-family:ff2_c00302;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00302;src:url('chunks/assets/font_79908e044273d84e34f2359a.woff2')format("woff");}.ff3_c00302{font-family:ff3_c00302;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00302;src:url('chunks/assets/font_f045f156ee84d9b63a6cb0f6.woff2')format("woff");}.ff4_c00302{font-family:ff4_c00302;line-height:0.666000;font-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_c00302{transform:matrix(0.039287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.039287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.039287,0.000000,0.000000,0.250000,0,0);}
.m84_c00302{transform:matrix(0.087838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087838,0.000000,0.000000,0.250000,0,0);}
.mce_c00302{transform:matrix(0.101647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101647,0.000000,0.000000,0.250000,0,0);}
.m1a_c00302{transform:matrix(0.110415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110415,0.000000,0.000000,0.250000,0,0);}
.m24_c00302{transform:matrix(0.112083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112083,0.000000,0.000000,0.250000,0,0);}
.m3e_c00302{transform:matrix(0.140244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140244,0.000000,0.000000,0.250000,0,0);}
.m3f_c00302{transform:matrix(0.146342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146342,0.000000,0.000000,0.250000,0,0);}
.m82_c00302{transform:matrix(0.148648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148648,0.000000,0.000000,0.250000,0,0);}
.m63_c00302{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m34_c00302{transform:matrix(0.162494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162494,0.000000,0.000000,0.250000,0,0);}
.m81_c00302{transform:matrix(0.168918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168918,0.000000,0.000000,0.250000,0,0);}
.m40_c00302{transform:matrix(0.176830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176830,0.000000,0.000000,0.250000,0,0);}
.ma_c00302{transform:matrix(0.177732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177732,0.000000,0.000000,0.250000,0,0);}
.m22_c00302{transform:matrix(0.180427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180427,0.000000,0.000000,0.250000,0,0);}
.m3d_c00302{transform:matrix(0.182927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182927,0.000000,0.000000,0.250000,0,0);}
.m62_c00302{transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);}
.m80_c00302{transform:matrix(0.205406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205406,0.000000,0.000000,0.250000,0,0);}
.m98_c00302{transform:matrix(0.210605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210605,0.000000,0.000000,0.250000,0,0);}
.m59_c00302{transform:matrix(0.213031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213031,0.000000,0.000000,0.250000,0,0);}
.m83_c00302{transform:matrix(0.216216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216216,0.000000,0.000000,0.250000,0,0);}
.m65_c00302{transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);}
.ma7_c00302{transform:matrix(0.224650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224650,0.000000,0.000000,0.250000,0,0);}
.m88_c00302{transform:matrix(0.236456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236456,0.000000,0.000000,0.250000,0,0);}
.m4f_c00302{transform:matrix(0.246419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246419,0.000000,0.000000,0.250000,0,0);}
.m71_c00302{transform:matrix(0.248451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248451,0.000000,0.000000,0.250000,0,0);}
.m0_c00302{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m43_c00302{transform:matrix(0.250570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250570,0.000000,0.000000,0.250000,0,0);}
.m38_c00302{transform:matrix(0.252169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252169,0.000000,0.000000,0.250000,0,0);}
.mb6_c00302{transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);}
.m1c_c00302{transform:matrix(0.252405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252405,0.000000,0.000000,0.250000,0,0);}
.m10_c00302{transform:matrix(0.253254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253254,0.000000,0.000000,0.250000,0,0);}
.m16_c00302{transform:matrix(0.253602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253602,0.000000,0.000000,0.250000,0,0);}
.m9f_c00302{transform:matrix(0.254158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254158,0.000000,0.000000,0.250000,0,0);}
.m1_c00302{transform:matrix(0.254201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254201,0.000000,0.000000,0.250000,0,0);}
.m73_c00302{transform:matrix(0.256824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256824,0.000000,0.000000,0.250000,0,0);}
.m4d_c00302{transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);}
.mcd_c00302{transform:matrix(0.258120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258120,0.000000,0.000000,0.250000,0,0);}
.m9c_c00302{transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);}
.m99_c00302{transform:matrix(0.259395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259395,0.000000,0.000000,0.250000,0,0);}
.m85_c00302{transform:matrix(0.260113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260113,0.000000,0.000000,0.250000,0,0);}
.m2f_c00302{transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);}
.m46_c00302{transform:matrix(0.260726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260726,0.000000,0.000000,0.250000,0,0);}
.m68_c00302{transform:matrix(0.260842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260842,0.000000,0.000000,0.250000,0,0);}
.m7b_c00302{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m8f_c00302{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.mc3_c00302{transform:matrix(0.261624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261624,0.000000,0.000000,0.250000,0,0);}
.m5_c00302{transform:matrix(0.261987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261987,0.000000,0.000000,0.250000,0,0);}
.mca_c00302{transform:matrix(0.262545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262545,0.000000,0.000000,0.250000,0,0);}
.m8_c00302{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m5a_c00302{transform:matrix(0.263582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263582,0.000000,0.000000,0.250000,0,0);}
.mb8_c00302{transform:matrix(0.263720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263720,0.000000,0.000000,0.250000,0,0);}
.m69_c00302{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m2_c00302{transform:matrix(0.265318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265318,0.000000,0.000000,0.250000,0,0);}
.m39_c00302{transform:matrix(0.266076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266076,0.000000,0.000000,0.250000,0,0);}
.m41_c00302{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m4c_c00302{transform:matrix(0.266616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266616,0.000000,0.000000,0.250000,0,0);}
.mb_c00302{transform:matrix(0.266723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266723,0.000000,0.000000,0.250000,0,0);}
.mb5_c00302{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.m3b_c00302{transform:matrix(0.267590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267590,0.000000,0.000000,0.250000,0,0);}
.m11_c00302{transform:matrix(0.267891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267891,0.000000,0.000000,0.250000,0,0);}
.m6d_c00302{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m12_c00302{transform:matrix(0.268725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268725,0.000000,0.000000,0.250000,0,0);}
.m53_c00302{transform:matrix(0.269574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269574,0.000000,0.000000,0.250000,0,0);}
.m7d_c00302{transform:matrix(0.270773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270773,0.000000,0.000000,0.250000,0,0);}
.mc2_c00302{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m6a_c00302{transform:matrix(0.271124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271124,0.000000,0.000000,0.250000,0,0);}
.m75_c00302{transform:matrix(0.272278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272278,0.000000,0.000000,0.250000,0,0);}
.m70_c00302{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m23_c00302{transform:matrix(0.272844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272844,0.000000,0.000000,0.250000,0,0);}
.m14_c00302{transform:matrix(0.273581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273581,0.000000,0.000000,0.250000,0,0);}
.m1f_c00302{transform:matrix(0.274132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274132,0.000000,0.000000,0.250000,0,0);}
.md_c00302{transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);}
.mbc_c00302{transform:matrix(0.275566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275566,0.000000,0.000000,0.250000,0,0);}
.mb4_c00302{transform:matrix(0.275570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275570,0.000000,0.000000,0.250000,0,0);}
.m9e_c00302{transform:matrix(0.275733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275733,0.000000,0.000000,0.250000,0,0);}
.m60_c00302{transform:matrix(0.276607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276607,0.000000,0.000000,0.250000,0,0);}
.m87_c00302{transform:matrix(0.277164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277164,0.000000,0.000000,0.250000,0,0);}
.mcb_c00302{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.mad_c00302{transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);}
.m8d_c00302{transform:matrix(0.277905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277905,0.000000,0.000000,0.250000,0,0);}
.m47_c00302{transform:matrix(0.279108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279108,0.000000,0.000000,0.250000,0,0);}
.m57_c00302{transform:matrix(0.280164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280164,0.000000,0.000000,0.250000,0,0);}
.mf_c00302{transform:matrix(0.280247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280247,0.000000,0.000000,0.250000,0,0);}
.m31_c00302{transform:matrix(0.281854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281854,0.000000,0.000000,0.250000,0,0);}
.m93_c00302{transform:matrix(0.282128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282128,0.000000,0.000000,0.250000,0,0);}
.m18_c00302{transform:matrix(0.282334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282334,0.000000,0.000000,0.250000,0,0);}
.mc7_c00302{transform:matrix(0.282518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282518,0.000000,0.000000,0.250000,0,0);}
.m51_c00302{transform:matrix(0.282544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282544,0.000000,0.000000,0.250000,0,0);}
.m7_c00302{transform:matrix(0.282608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282608,0.000000,0.000000,0.250000,0,0);}
.m48_c00302{transform:matrix(0.282962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282962,0.000000,0.000000,0.250000,0,0);}
.m55_c00302{transform:matrix(0.283147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283147,0.000000,0.000000,0.250000,0,0);}
.m8b_c00302{transform:matrix(0.283249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283249,0.000000,0.000000,0.250000,0,0);}
.m2a_c00302{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m35_c00302{transform:matrix(0.283840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283840,0.000000,0.000000,0.250000,0,0);}
.m4a_c00302{transform:matrix(0.284537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284537,0.000000,0.000000,0.250000,0,0);}
.mb2_c00302{transform:matrix(0.284903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284903,0.000000,0.000000,0.250000,0,0);}
.m56_c00302{transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);}
.m4_c00302{transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);}
.mbb_c00302{transform:matrix(0.286496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286496,0.000000,0.000000,0.250000,0,0);}
.m3c_c00302{transform:matrix(0.286652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286652,0.000000,0.000000,0.250000,0,0);}
.m1d_c00302{transform:matrix(0.286810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286810,0.000000,0.000000,0.250000,0,0);}
.m5e_c00302{transform:matrix(0.286902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286902,0.000000,0.000000,0.250000,0,0);}
.mae_c00302{transform:matrix(0.288153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288153,0.000000,0.000000,0.250000,0,0);}
.mbf_c00302{transform:matrix(0.288855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288855,0.000000,0.000000,0.250000,0,0);}
.m29_c00302{transform:matrix(0.289686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289686,0.000000,0.000000,0.250000,0,0);}
.m9b_c00302{transform:matrix(0.289768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289768,0.000000,0.000000,0.250000,0,0);}
.m25_c00302{transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);}
.m13_c00302{transform:matrix(0.291395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291395,0.000000,0.000000,0.250000,0,0);}
.m30_c00302{transform:matrix(0.291498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291498,0.000000,0.000000,0.250000,0,0);}
.mc9_c00302{transform:matrix(0.291507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291507,0.000000,0.000000,0.250000,0,0);}
.m4b_c00302{transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);}
.m5d_c00302{transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);}
.m2e_c00302{transform:matrix(0.293062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293062,0.000000,0.000000,0.250000,0,0);}
.m28_c00302{transform:matrix(0.293651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293651,0.000000,0.000000,0.250000,0,0);}
.m54_c00302{transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);}
.m42_c00302{transform:matrix(0.293934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293934,0.000000,0.000000,0.250000,0,0);}
.m37_c00302{transform:matrix(0.294347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294347,0.000000,0.000000,0.250000,0,0);}
.mcc_c00302{transform:matrix(0.294443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294443,0.000000,0.000000,0.250000,0,0);}
.ma0_c00302{transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);}
.m2d_c00302{transform:matrix(0.294997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294997,0.000000,0.000000,0.250000,0,0);}
.m20_c00302{transform:matrix(0.295372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295372,0.000000,0.000000,0.250000,0,0);}
.mc0_c00302{transform:matrix(0.295588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295588,0.000000,0.000000,0.250000,0,0);}
.maf_c00302{transform:matrix(0.295989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295989,0.000000,0.000000,0.250000,0,0);}
.mc4_c00302{transform:matrix(0.296568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296568,0.000000,0.000000,0.250000,0,0);}
.m58_c00302{transform:matrix(0.296777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296777,0.000000,0.000000,0.250000,0,0);}
.ma9_c00302{transform:matrix(0.297218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297218,0.000000,0.000000,0.250000,0,0);}
.m7a_c00302{transform:matrix(0.297275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297275,0.000000,0.000000,0.250000,0,0);}
.ma4_c00302{transform:matrix(0.297320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297320,0.000000,0.000000,0.250000,0,0);}
.mb9_c00302{transform:matrix(0.297388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297388,0.000000,0.000000,0.250000,0,0);}
.m7e_c00302{transform:matrix(0.297443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297443,0.000000,0.000000,0.250000,0,0);}
.m49_c00302{transform:matrix(0.297785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297785,0.000000,0.000000,0.250000,0,0);}
.m36_c00302{transform:matrix(0.298017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298017,0.000000,0.000000,0.250000,0,0);}
.m92_c00302{transform:matrix(0.299400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299400,0.000000,0.000000,0.250000,0,0);}
.m67_c00302{transform:matrix(0.299932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299932,0.000000,0.000000,0.250000,0,0);}
.m89_c00302{transform:matrix(0.300168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300168,0.000000,0.000000,0.250000,0,0);}
.m66_c00302{transform:matrix(0.300338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300338,0.000000,0.000000,0.250000,0,0);}
.m44_c00302{transform:matrix(0.300736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300736,0.000000,0.000000,0.250000,0,0);}
.m3_c00302{transform:matrix(0.302288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302288,0.000000,0.000000,0.250000,0,0);}
.mc5_c00302{transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);}
.mb7_c00302{transform:matrix(0.302468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302468,0.000000,0.000000,0.250000,0,0);}
.m77_c00302{transform:matrix(0.303158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303158,0.000000,0.000000,0.250000,0,0);}
.m9d_c00302{transform:matrix(0.304946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304946,0.000000,0.000000,0.250000,0,0);}
.mb1_c00302{transform:matrix(0.306533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306533,0.000000,0.000000,0.250000,0,0);}
.ma6_c00302{transform:matrix(0.307034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307034,0.000000,0.000000,0.250000,0,0);}
.m6b_c00302{transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);}
.m61_c00302{transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);}
.m50_c00302{transform:matrix(0.310694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310694,0.000000,0.000000,0.250000,0,0);}
.mb3_c00302{transform:matrix(0.310905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310905,0.000000,0.000000,0.250000,0,0);}
.mab_c00302{transform:matrix(0.311730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311730,0.000000,0.000000,0.250000,0,0);}
.m6c_c00302{transform:matrix(0.312013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312013,0.000000,0.000000,0.250000,0,0);}
.m8a_c00302{transform:matrix(0.312046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312046,0.000000,0.000000,0.250000,0,0);}
.m94_c00302{transform:matrix(0.313711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313711,0.000000,0.000000,0.250000,0,0);}
.mac_c00302{transform:matrix(0.315631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315631,0.000000,0.000000,0.250000,0,0);}
.ma2_c00302{transform:matrix(0.316280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316280,0.000000,0.000000,0.250000,0,0);}
.m8e_c00302{transform:matrix(0.316703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316703,0.000000,0.000000,0.250000,0,0);}
.m86_c00302{transform:matrix(0.316737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316737,0.000000,0.000000,0.250000,0,0);}
.maa_c00302{transform:matrix(0.316972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316972,0.000000,0.000000,0.250000,0,0);}
.m5b_c00302{transform:matrix(0.319176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319176,0.000000,0.000000,0.250000,0,0);}
.m8c_c00302{transform:matrix(0.319290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319290,0.000000,0.000000,0.250000,0,0);}
.m19_c00302{transform:matrix(0.319377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319377,0.000000,0.000000,0.250000,0,0);}
.m3a_c00302{transform:matrix(0.319391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319391,0.000000,0.000000,0.250000,0,0);}
.mba_c00302{transform:matrix(0.319653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319653,0.000000,0.000000,0.250000,0,0);}
.m6e_c00302{transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319847,0.000000,0.000000,0.250000,0,0);}
.m76_c00302{transform:matrix(0.320297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320297,0.000000,0.000000,0.250000,0,0);}
.ma3_c00302{transform:matrix(0.320364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320364,0.000000,0.000000,0.250000,0,0);}
.ma1_c00302{transform:matrix(0.322386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322386,0.000000,0.000000,0.250000,0,0);}
.m5c_c00302{transform:matrix(0.322456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322456,0.000000,0.000000,0.250000,0,0);}
.m96_c00302{transform:matrix(0.322773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322773,0.000000,0.000000,0.250000,0,0);}
.m27_c00302{transform:matrix(0.323312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323312,0.000000,0.000000,0.250000,0,0);}
.m6f_c00302{transform:matrix(0.323416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323416,0.000000,0.000000,0.250000,0,0);}
.m9_c00302{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.mbe_c00302{transform:matrix(0.324390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324390,0.000000,0.000000,0.250000,0,0);}
.m78_c00302{transform:matrix(0.324562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324562,0.000000,0.000000,0.250000,0,0);}
.m1e_c00302{transform:matrix(0.324775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324775,0.000000,0.000000,0.250000,0,0);}
.m95_c00302{transform:matrix(0.324794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324794,0.000000,0.000000,0.250000,0,0);}
.m26_c00302{transform:matrix(0.325136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325136,0.000000,0.000000,0.250000,0,0);}
.m7c_c00302{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m90_c00302{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.m15_c00302{transform:matrix(0.327915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327915,0.000000,0.000000,0.250000,0,0);}
.m5f_c00302{transform:matrix(0.328182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328182,0.000000,0.000000,0.250000,0,0);}
.m72_c00302{transform:matrix(0.328972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328972,0.000000,0.000000,0.250000,0,0);}
.m97_c00302{transform:matrix(0.330043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330043,0.000000,0.000000,0.250000,0,0);}
.ma5_c00302{transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330742,0.000000,0.000000,0.250000,0,0);}
.m74_c00302{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m79_c00302{transform:matrix(0.335394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335394,0.000000,0.000000,0.250000,0,0);}
.mc6_c00302{transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);}
.m32_c00302{transform:matrix(0.338322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338322,0.000000,0.000000,0.250000,0,0);}
.mc_c00302{transform:matrix(0.338338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338338,0.000000,0.000000,0.250000,0,0);}
.m4e_c00302{transform:matrix(0.338414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338414,0.000000,0.000000,0.250000,0,0);}
.m2c_c00302{transform:matrix(0.342665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342665,0.000000,0.000000,0.250000,0,0);}
.m1b_c00302{transform:matrix(0.342785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342785,0.000000,0.000000,0.250000,0,0);}
.m45_c00302{transform:matrix(0.342926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342926,0.000000,0.000000,0.250000,0,0);}
.m91_c00302{transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);}
.m2b_c00302{transform:matrix(0.348145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348145,0.000000,0.000000,0.250000,0,0);}
.m6_c00302{transform:matrix(0.352028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352028,0.000000,0.000000,0.250000,0,0);}
.me_c00302{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m33_c00302{transform:matrix(0.364775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364775,0.000000,0.000000,0.250000,0,0);}
.mc8_c00302{transform:matrix(0.370618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370618,0.000000,0.000000,0.250000,0,0);}
.m21_c00302{transform:matrix(0.370958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370958,0.000000,0.000000,0.250000,0,0);}
.mc1_c00302{transform:matrix(0.372071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372071,0.000000,0.000000,0.250000,0,0);}
.mb0_c00302{transform:matrix(0.374714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374714,0.000000,0.000000,0.250000,0,0);}
.m7f_c00302{transform:matrix(0.374949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374949,0.000000,0.000000,0.250000,0,0);}
.mbd_c00302{transform:matrix(0.381065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381065,0.000000,0.000000,0.250000,0,0);}
.ma8_c00302{transform:matrix(0.385852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385852,0.000000,0.000000,0.250000,0,0);}
.m17_c00302{transform:matrix(0.396487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396487,0.000000,0.000000,0.250000,0,0);}
.m9a_c00302{transform:matrix(0.424628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424628,0.000000,0.000000,0.250000,0,0);}
.m52_c00302{transform:matrix(0.430633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430633,0.000000,0.000000,0.250000,0,0);}
.v0_c00302{vertical-align:0.000000px;}
.ls5_c00302{letter-spacing:-2.744280px;}
.ls10_c00302{letter-spacing:-1.794870px;}
.lsc_c00302{letter-spacing:-1.105553px;}
.ls4_c00302{letter-spacing:-0.972259px;}
.ls1_c00302{letter-spacing:0.000000px;}
.lsa_c00302{letter-spacing:1.685772px;}
.ls7_c00302{letter-spacing:2.783484px;}
.ls9_c00302{letter-spacing:2.940300px;}
.ls6_c00302{letter-spacing:3.081434px;}
.lsd_c00302{letter-spacing:3.112798px;}
.ls0_c00302{letter-spacing:3.379385px;}
.lsf_c00302{letter-spacing:3.685176px;}
.ls2_c00302{letter-spacing:3.722400px;}
.ls3_c00302{letter-spacing:3.920400px;}
.lsb_c00302{letter-spacing:49.896198px;}
.lse_c00302{letter-spacing:52.747398px;}
.ls8_c00302{letter-spacing:58.449798px;}
.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;}
}
.ws3_c00302{word-spacing:-22.981385px;}
.ws0_c00302{word-spacing:-19.602000px;}
.ws2_c00302{word-spacing:-1.881792px;}
.ws5_c00302{word-spacing:0.000000px;}
.ws4_c00302{word-spacing:1.254528px;}
.ws1_c00302{word-spacing:2.665872px;}
._19_c00302{margin-left:-11.563279px;}
._11_c00302{margin-left:-5.331744px;}
._b_c00302{margin-left:-3.115332px;}
._d_c00302{width:2.273832px;}
._9_c00302{width:3.921192px;}
._1_c00302{width:5.488560px;}
._18_c00302{width:6.507864px;}
._e_c00302{width:8.076024px;}
._4_c00302{width:9.497664px;}
._10_c00302{width:10.507068px;}
._2_c00302{width:11.918016px;}
._16_c00302{width:13.946328px;}
._12_c00302{width:15.367968px;}
._13_c00302{width:17.484588px;}
._5_c00302{width:19.272132px;}
._7_c00302{width:20.855736px;}
._0_c00302{width:22.267872px;}
._a_c00302{width:24.305688px;}
._c_c00302{width:27.898200px;}
._17_c00302{width:29.010960px;}
._8_c00302{width:30.384288px;}
._3_c00302{width:35.786520px;}
._15_c00302{width:36.852552px;}
._14_c00302{width:38.366460px;}
._f_c00302{width:40.301712px;}
._6_c00302{width:46.082124px;}
.fc0_c00302{color:transparent;}
.fs4_c00302{font-size:22.176000px;}
.fs0_c00302{font-size:27.720000px;}
.fs3_c00302{font-size:47.124000px;}
.fs6_c00302{font-size:49.896198px;}
.fs8_c00302{font-size:51.282000px;}
.fs7_c00302{font-size:52.747398px;}
.fsa_c00302{font-size:56.628000px;}
.fs5_c00302{font-size:58.449798px;}
.fs9_c00302{font-size:63.162000px;}
.fs1_c00302{font-size:74.448000px;}
.fs2_c00302{font-size:78.408000px;}
.y0_c00302{bottom:0.000000px;}
.y1f_c00302{bottom:35.190585px;}
.y1_c00302{bottom:76.500000px;}
.y1e_c00302{bottom:125.721135px;}
.y1d_c00302{bottom:156.366585px;}
.y1c_c00302{bottom:156.375099px;}
.y1b_c00302{bottom:219.454335px;}
.y1a_c00302{bottom:251.530335px;}
.y19_c00302{bottom:286.457535px;}
.y18_c00302{bottom:320.310585px;}
.y17_c00302{bottom:320.313753px;}
.y16_c00302{bottom:353.460735px;}
.y15_c00302{bottom:386.244585px;}
.y14_c00302{bottom:419.394735px;}
.y22_c00302{bottom:482.828985px;}
.y13_c00302{bottom:515.979135px;}
.y12_c00302{bottom:550.901385px;}
.y11_c00302{bottom:583.695135px;}
.y10_c00302{bottom:619.691535px;}
.yf_c00302{bottom:655.331535px;}
.ye_c00302{bottom:686.694735px;}
.yd_c00302{bottom:686.703645px;}
.yc_c00302{bottom:720.909135px;}
.ya_c00302{bottom:755.118585px;}
.y9_c00302{bottom:790.050735px;}
.yb_c00302{bottom:806.083785px;}
.y8_c00302{bottom:822.839535px;}
.y7_c00302{bottom:822.845475px;}
.y6_c00302{bottom:859.187385px;}
.y5_c00302{bottom:922.987935px;}
.y4_c00302{bottom:1015.290585px;}
.y21_c00302{bottom:1065.547935px;}
.y3_c00302{bottom:1074.096585px;}
.y20_c00302{bottom:1083.367935px;}
.y2_c00302{bottom:1102.964985px;}
.h5_c00302{height:23.128875px;}
.h2_c00302{height:28.911094px;}
.h8_c00302{height:33.230868px;}
.h9_c00302{height:35.129767px;}
.h7_c00302{height:38.927565px;}
.ha_c00302{height:53.485523px;}
.hc_c00302{height:59.061234px;}
.hb_c00302{height:61.990049px;}
.h3_c00302{height:73.066641px;}
.h4_c00302{height:76.953164px;}
.h6_c00302{height:79.020563px;}
.h1_c00302{height:1110.000000px;}
.h0_c00302{height:1263.000000px;}
.w1_c00302{width:763.500000px;}
.w0_c00302{width:892.500000px;}
.x0_c00302{left:0.000000px;}
.x1_c00302{left:64.500000px;}
.x1e_c00302{left:84.754143px;}
.x63_c00302{left:85.910661px;}
.x3c_c00302{left:86.952735px;}
.x6_c00302{left:88.002135px;}
.x46_c00302{left:95.545935px;}
.x1f_c00302{left:96.575535px;}
.x3d_c00302{left:97.615035px;}
.x54_c00302{left:106.742835px;}
.x4f_c00302{left:117.905085px;}
.x20_c00302{left:128.146635px;}
.x2_c00302{left:129.844485px;}
.x3e_c00302{left:131.651235px;}
.xf_c00302{left:139.655385px;}
.x7_c00302{left:151.490835px;}
.x47_c00302{left:152.733285px;}
.x21_c00302{left:161.821485px;}
.x61_c00302{left:163.751985px;}
.x22_c00302{left:173.231235px;}
.x3f_c00302{left:182.299635px;}
.x2a_c00302{left:184.244985px;}
.x66_c00302{left:186.309135px;}
.x8_c00302{left:195.555735px;}
.x10_c00302{left:206.371485px;}
.x48_c00302{left:208.747485px;}
.x40_c00302{left:216.152685px;}
.x50_c00302{left:217.419885px;}
.x11_c00302{left:228.116835px;}
.x49_c00302{left:238.650435px;}
.x6c_c00302{left:239.774085px;}
.x2b_c00302{left:249.837435px;}
.x12_c00302{left:261.242235px;}
.x2c_c00302{left:271.612485px;}
.x23_c00302{left:272.988585px;}
.x67_c00302{left:274.696335px;}
.x55_c00302{left:283.631085px;}
.x9_c00302{left:294.436935px;}
.x13_c00302{left:305.163585px;}
.x68_c00302{left:315.598185px;}
.x14_c00302{left:316.855485px;}
.xa_c00302{left:327.007935px;}
.x58_c00302{left:328.136535px;}
.x64_c00302{left:330.294735px;}
.x5e_c00302{left:337.704885px;}
.x37_c00302{left:338.927535px;}
.x65_c00302{left:341.417385px;}
.x2d_c00302{left:349.322535px;}
.x41_c00302{left:358.757235px;}
.x15_c00302{left:360.702585px;}
.x5_c00302{left:363.286485px;}
.x16_c00302{left:370.954035px;}
.x24_c00302{left:372.087585px;}
.x4a_c00302{left:374.290335px;}
.x59_c00302{left:381.210435px;}
.x2e_c00302{left:382.764735px;}
.x6b_c00302{left:384.363585px;}
.x51_c00302{left:393.362685px;}
.x69_c00302{left:402.594435px;}
.xb_c00302{left:404.406135px;}
.x38_c00302{left:415.583235px;}
.x5a_c00302{left:417.969135px;}
.xc_c00302{left:425.790135px;}
.x62_c00302{left:426.893985px;}
.x25_c00302{left:437.249385px;}
.x52_c00302{left:438.709635px;}
.x17_c00302{left:447.500835px;}
.xd_c00302{left:448.758135px;}
.x6d_c00302{left:450.757935px;}
.x4b_c00302{left:460.004535px;}
.xe_c00302{left:470.622285px;}
.x2f_c00302{left:480.616335px;}
.x18_c00302{left:482.234985px;}
.x39_c00302{left:492.204285px;}
.x5c_c00302{left:502.346835px;}
.x26_c00302{left:503.495235px;}
.x5b_c00302{left:505.806885px;}
.x56_c00302{left:509.162985px;}
.x30_c00302{left:514.766385px;}
.x31_c00302{left:524.993085px;}
.x3a_c00302{left:526.200885px;}
.x5d_c00302{left:536.180085px;}
.x4c_c00302{left:537.452235px;}
.x6e_c00302{left:545.867235px;}
.x32_c00302{left:546.966135px;}
.x27_c00302{left:558.133335px;}
.x42_c00302{left:569.038185px;}
.x19_c00302{left:580.546935px;}
.x33_c00302{left:591.625035px;}
.x5f_c00302{left:598.980735px;}
.x53_c00302{left:601.787385px;}
.x1a_c00302{left:613.197135px;}
.x43_c00302{left:614.657385px;}
.x34_c00302{left:624.413835px;}
.x6a_c00302{left:635.130585px;}
.x44_c00302{left:636.170085px;}
.x4d_c00302{left:646.169085px;}
.x28_c00302{left:655.638435px;}
.x3_c00302{left:657.202635px;}
.x60_c00302{left:659.207385px;}
.x1b_c00302{left:667.909485px;}
.x4_c00302{left:670.028085px;}
.x4e_c00302{left:676.626435px;}
.x29_c00302{left:679.299435px;}
.x1c_c00302{left:689.882535px;}
.x35_c00302{left:691.030935px;}
.x57_c00302{left:699.832035px;}
.x45_c00302{left:701.411085px;}
.x1d_c00302{left:712.429785px;}
.x36_c00302{left:723.121785px;}
.x3b_c00302{left:742.520835px;}
.x6f_c00302{left:759.291435px;}
.x70_c00302{left:763.281135px;}
@media print{
.v0_c00302{vertical-align:0.000000pt;}
.ls5_c00302{letter-spacing:-2.439360pt;}
.ls10_c00302{letter-spacing:-1.595440pt;}
.lsc_c00302{letter-spacing:-0.982714pt;}
.ls4_c00302{letter-spacing:-0.864230pt;}
.ls1_c00302{letter-spacing:0.000000pt;}
.lsa_c00302{letter-spacing:1.498464pt;}
.ls7_c00302{letter-spacing:2.474208pt;}
.ls9_c00302{letter-spacing:2.613600pt;}
.ls6_c00302{letter-spacing:2.739053pt;}
.lsd_c00302{letter-spacing:2.766931pt;}
.ls0_c00302{letter-spacing:3.003898pt;}
.lsf_c00302{letter-spacing:3.275712pt;}
.ls2_c00302{letter-spacing:3.308800pt;}
.ls3_c00302{letter-spacing:3.484800pt;}
.lsb_c00302{letter-spacing:44.352176pt;}
.lse_c00302{letter-spacing:46.886576pt;}
.ls8_c00302{letter-spacing:51.955376pt;}
.ws3_c00302{word-spacing:-20.427898pt;}
.ws0_c00302{word-spacing:-17.424000pt;}
.ws2_c00302{word-spacing:-1.672704pt;}
.ws5_c00302{word-spacing:0.000000pt;}
.ws4_c00302{word-spacing:1.115136pt;}
.ws1_c00302{word-spacing:2.369664pt;}
._19_c00302{margin-left:-10.278470pt;}
._11_c00302{margin-left:-4.739328pt;}
._b_c00302{margin-left:-2.769184pt;}
._d_c00302{width:2.021184pt;}
._9_c00302{width:3.485504pt;}
._1_c00302{width:4.878720pt;}
._18_c00302{width:5.784768pt;}
._e_c00302{width:7.178688pt;}
._4_c00302{width:8.442368pt;}
._10_c00302{width:9.339616pt;}
._2_c00302{width:10.593792pt;}
._16_c00302{width:12.396736pt;}
._12_c00302{width:13.660416pt;}
._13_c00302{width:15.541856pt;}
._5_c00302{width:17.130784pt;}
._7_c00302{width:18.538432pt;}
._0_c00302{width:19.793664pt;}
._a_c00302{width:21.605056pt;}
._c_c00302{width:24.798400pt;}
._17_c00302{width:25.787520pt;}
._8_c00302{width:27.008256pt;}
._3_c00302{width:31.810240pt;}
._15_c00302{width:32.757824pt;}
._14_c00302{width:34.103520pt;}
._f_c00302{width:35.823744pt;}
._6_c00302{width:40.961888pt;}
.fs4_c00302{font-size:19.712000pt;}
.fs0_c00302{font-size:24.640000pt;}
.fs3_c00302{font-size:41.888000pt;}
.fs6_c00302{font-size:44.352176pt;}
.fs8_c00302{font-size:45.584000pt;}
.fs7_c00302{font-size:46.886576pt;}
.fsa_c00302{font-size:50.336000pt;}
.fs5_c00302{font-size:51.955376pt;}
.fs9_c00302{font-size:56.144000pt;}
.fs1_c00302{font-size:66.176000pt;}
.fs2_c00302{font-size:69.696000pt;}
.y0_c00302{bottom:0.000000pt;}
.y1f_c00302{bottom:31.280520pt;}
.y1_c00302{bottom:68.000000pt;}
.y1e_c00302{bottom:111.752120pt;}
.y1d_c00302{bottom:138.992520pt;}
.y1c_c00302{bottom:139.000088pt;}
.y1b_c00302{bottom:195.070520pt;}
.y1a_c00302{bottom:223.582520pt;}
.y19_c00302{bottom:254.628920pt;}
.y18_c00302{bottom:284.720520pt;}
.y17_c00302{bottom:284.723336pt;}
.y16_c00302{bottom:314.187320pt;}
.y15_c00302{bottom:343.328520pt;}
.y14_c00302{bottom:372.795320pt;}
.y22_c00302{bottom:429.181320pt;}
.y13_c00302{bottom:458.648120pt;}
.y12_c00302{bottom:489.690120pt;}
.y11_c00302{bottom:518.840120pt;}
.y10_c00302{bottom:550.836920pt;}
.yf_c00302{bottom:582.516920pt;}
.ye_c00302{bottom:610.395320pt;}
.yd_c00302{bottom:610.403240pt;}
.yc_c00302{bottom:640.808120pt;}
.ya_c00302{bottom:671.216520pt;}
.y9_c00302{bottom:702.267320pt;}
.yb_c00302{bottom:716.518920pt;}
.y8_c00302{bottom:731.412920pt;}
.y7_c00302{bottom:731.418200pt;}
.y6_c00302{bottom:763.722120pt;}
.y5_c00302{bottom:820.433720pt;}
.y4_c00302{bottom:902.480520pt;}
.y21_c00302{bottom:947.153720pt;}
.y3_c00302{bottom:954.752520pt;}
.y20_c00302{bottom:962.993720pt;}
.y2_c00302{bottom:980.413320pt;}
.h5_c00302{height:20.559000pt;}
.h2_c00302{height:25.698750pt;}
.h8_c00302{height:29.538549pt;}
.h9_c00302{height:31.226460pt;}
.h7_c00302{height:34.602280pt;}
.ha_c00302{height:47.542688pt;}
.hc_c00302{height:52.498875pt;}
.hb_c00302{height:55.102266pt;}
.h3_c00302{height:64.948125pt;}
.h4_c00302{height:68.402813pt;}
.h6_c00302{height:70.240500pt;}
.h1_c00302{height:986.666667pt;}
.h0_c00302{height:1122.666667pt;}
.w1_c00302{width:678.666667pt;}
.w0_c00302{width:793.333333pt;}
.x0_c00302{left:0.000000pt;}
.x1_c00302{left:57.333333pt;}
.x1e_c00302{left:75.337016pt;}
.x63_c00302{left:76.365032pt;}
.x3c_c00302{left:77.291320pt;}
.x6_c00302{left:78.224120pt;}
.x46_c00302{left:84.929720pt;}
.x1f_c00302{left:85.844920pt;}
.x3d_c00302{left:86.768920pt;}
.x54_c00302{left:94.882520pt;}
.x4f_c00302{left:104.804520pt;}
.x20_c00302{left:113.908120pt;}
.x2_c00302{left:115.417320pt;}
.x3e_c00302{left:117.023320pt;}
.xf_c00302{left:124.138120pt;}
.x7_c00302{left:134.658520pt;}
.x47_c00302{left:135.762920pt;}
.x21_c00302{left:143.841320pt;}
.x61_c00302{left:145.557320pt;}
.x22_c00302{left:153.983320pt;}
.x3f_c00302{left:162.044120pt;}
.x2a_c00302{left:163.773320pt;}
.x66_c00302{left:165.608120pt;}
.x8_c00302{left:173.827320pt;}
.x10_c00302{left:183.441320pt;}
.x48_c00302{left:185.553320pt;}
.x40_c00302{left:192.135720pt;}
.x50_c00302{left:193.262120pt;}
.x11_c00302{left:202.770520pt;}
.x49_c00302{left:212.133720pt;}
.x6c_c00302{left:213.132520pt;}
.x2b_c00302{left:222.077720pt;}
.x12_c00302{left:232.215320pt;}
.x2c_c00302{left:241.433320pt;}
.x23_c00302{left:242.656520pt;}
.x67_c00302{left:244.174520pt;}
.x55_c00302{left:252.116520pt;}
.x9_c00302{left:261.721720pt;}
.x13_c00302{left:271.256520pt;}
.x68_c00302{left:280.531720pt;}
.x14_c00302{left:281.649320pt;}
.xa_c00302{left:290.673720pt;}
.x58_c00302{left:291.676920pt;}
.x64_c00302{left:293.595320pt;}
.x5e_c00302{left:300.182120pt;}
.x37_c00302{left:301.268920pt;}
.x65_c00302{left:303.482120pt;}
.x2d_c00302{left:310.508920pt;}
.x41_c00302{left:318.895320pt;}
.x15_c00302{left:320.624520pt;}
.x5_c00302{left:322.921320pt;}
.x16_c00302{left:329.736920pt;}
.x24_c00302{left:330.744520pt;}
.x4a_c00302{left:332.702520pt;}
.x59_c00302{left:338.853720pt;}
.x2e_c00302{left:340.235320pt;}
.x6b_c00302{left:341.656520pt;}
.x51_c00302{left:349.655720pt;}
.x69_c00302{left:357.861720pt;}
.xb_c00302{left:359.472120pt;}
.x38_c00302{left:369.407320pt;}
.x5a_c00302{left:371.528120pt;}
.xc_c00302{left:378.480120pt;}
.x62_c00302{left:379.461320pt;}
.x25_c00302{left:388.666120pt;}
.x52_c00302{left:389.964120pt;}
.x17_c00302{left:397.778520pt;}
.xd_c00302{left:398.896120pt;}
.x6d_c00302{left:400.673720pt;}
.x4b_c00302{left:408.892920pt;}
.xe_c00302{left:418.330920pt;}
.x2f_c00302{left:427.214520pt;}
.x18_c00302{left:428.653320pt;}
.x39_c00302{left:437.514920pt;}
.x5c_c00302{left:446.530520pt;}
.x26_c00302{left:447.551320pt;}
.x5b_c00302{left:449.606120pt;}
.x56_c00302{left:452.589320pt;}
.x30_c00302{left:457.570120pt;}
.x31_c00302{left:466.660520pt;}
.x3a_c00302{left:467.734120pt;}
.x5d_c00302{left:476.604520pt;}
.x4c_c00302{left:477.735320pt;}
.x6e_c00302{left:485.215320pt;}
.x32_c00302{left:486.192120pt;}
.x27_c00302{left:496.118520pt;}
.x42_c00302{left:505.811720pt;}
.x19_c00302{left:516.041720pt;}
.x33_c00302{left:525.888920pt;}
.x5f_c00302{left:532.427320pt;}
.x53_c00302{left:534.922120pt;}
.x1a_c00302{left:545.064120pt;}
.x43_c00302{left:546.362120pt;}
.x34_c00302{left:555.034520pt;}
.x6a_c00302{left:564.560520pt;}
.x44_c00302{left:565.484520pt;}
.x4d_c00302{left:574.372520pt;}
.x28_c00302{left:582.789720pt;}
.x3_c00302{left:584.180120pt;}
.x60_c00302{left:585.962120pt;}
.x1b_c00302{left:593.697320pt;}
.x4_c00302{left:595.580520pt;}
.x4e_c00302{left:601.445720pt;}
.x29_c00302{left:603.821720pt;}
.x1c_c00302{left:613.228920pt;}
.x35_c00302{left:614.249720pt;}
.x57_c00302{left:622.072920pt;}
.x45_c00302{left:623.476520pt;}
.x1d_c00302{left:633.270920pt;}
.x36_c00302{left:642.774920pt;}
.x3b_c00302{left:660.018520pt;}
.x6f_c00302{left:674.925720pt;}
.x70_c00302{left:678.472120pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_85aa1a94ac4e3184bcaec4f6.woff2')format("woff");}.ff1_c00303{font-family:ff1_c00303;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00303;src:url('chunks/assets/font_d328a6cff488af62d02cba48.woff2')format("woff");}.ff2_c00303{font-family:ff2_c00303;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00303;src:url('chunks/assets/font_881b1045f8523ac49d1ad49d.woff2')format("woff");}.ff3_c00303{font-family:ff3_c00303;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m51_c00303{transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);}
.m62_c00303{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);}
.m79_c00303{transform:matrix(0.088235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088235,0.000000,0.000000,0.250000,0,0);}
.m3f_c00303{transform:matrix(0.115853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115853,0.000000,0.000000,0.250000,0,0);}
.mb2_c00303{transform:matrix(0.122619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122619,0.000000,0.000000,0.250000,0,0);}
.mf7_c00303{transform:matrix(0.125335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125335,0.000000,0.000000,0.250000,0,0);}
.m42_c00303{transform:matrix(0.132622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132622,0.000000,0.000000,0.250000,0,0);}
.m8c_c00303{transform:matrix(0.136815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136815,0.000000,0.000000,0.250000,0,0);}
.mf6_c00303{transform:matrix(0.139382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139382,0.000000,0.000000,0.250000,0,0);}
.mcd_c00303{transform:matrix(0.142643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142643,0.000000,0.000000,0.250000,0,0);}
.mc8_c00303{transform:matrix(0.145984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145984,0.000000,0.000000,0.250000,0,0);}
.me8_c00303{transform:matrix(0.148648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148648,0.000000,0.000000,0.250000,0,0);}
.m32_c00303{transform:matrix(0.152777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152777,0.000000,0.000000,0.250000,0,0);}
.me7_c00303{transform:matrix(0.155406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155406,0.000000,0.000000,0.250000,0,0);}
.m41_c00303{transform:matrix(0.158537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158537,0.000000,0.000000,0.250000,0,0);}
.me6_c00303{transform:matrix(0.162162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162162,0.000000,0.000000,0.250000,0,0);}
.m26_c00303{transform:matrix(0.170891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170891,0.000000,0.000000,0.250000,0,0);}
.m65_c00303{transform:matrix(0.178125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178125,0.000000,0.000000,0.250000,0,0);}
.m63_c00303{transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);}
.m78_c00303{transform:matrix(0.178572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178572,0.000000,0.000000,0.250000,0,0);}
.m3e_c00303{transform:matrix(0.179442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179442,0.000000,0.000000,0.250000,0,0);}
.me9_c00303{transform:matrix(0.182433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182433,0.000000,0.000000,0.250000,0,0);}
.m33_c00303{transform:matrix(0.190972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190972,0.000000,0.000000,0.250000,0,0);}
.m50_c00303{transform:matrix(0.191667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191667,0.000000,0.000000,0.250000,0,0);}
.m7d_c00303{transform:matrix(0.193507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193507,0.000000,0.000000,0.250000,0,0);}
.mb5_c00303{transform:matrix(0.194243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194243,0.000000,0.000000,0.250000,0,0);}
.m1a_c00303{transform:matrix(0.194758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194758,0.000000,0.000000,0.250000,0,0);}
.m40_c00303{transform:matrix(0.195122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195122,0.000000,0.000000,0.250000,0,0);}
.m68_c00303{transform:matrix(0.195833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195833,0.000000,0.000000,0.250000,0,0);}
.me5_c00303{transform:matrix(0.198198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198198,0.000000,0.000000,0.250000,0,0);}
.mc6_c00303{transform:matrix(0.202429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202429,0.000000,0.000000,0.250000,0,0);}
.m1c_c00303{transform:matrix(0.205967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205967,0.000000,0.000000,0.250000,0,0);}
.m31_c00303{transform:matrix(0.206596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206596,0.000000,0.000000,0.250000,0,0);}
.m94_c00303{transform:matrix(0.213998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213998,0.000000,0.000000,0.250000,0,0);}
.m64_c00303{transform:matrix(0.215624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215624,0.000000,0.000000,0.250000,0,0);}
.mf1_c00303{transform:matrix(0.216947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216947,0.000000,0.000000,0.250000,0,0);}
.m8e_c00303{transform:matrix(0.225287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225287,0.000000,0.000000,0.250000,0,0);}
.mf2_c00303{transform:matrix(0.227197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227197,0.000000,0.000000,0.250000,0,0);}
.m93_c00303{transform:matrix(0.230490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230490,0.000000,0.000000,0.250000,0,0);}
.mf4_c00303{transform:matrix(0.232781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232781,0.000000,0.000000,0.250000,0,0);}
.m98_c00303{transform:matrix(0.233192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233192,0.000000,0.000000,0.250000,0,0);}
.m3c_c00303{transform:matrix(0.239303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239303,0.000000,0.000000,0.250000,0,0);}
.md9_c00303{transform:matrix(0.241547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241547,0.000000,0.000000,0.250000,0,0);}
.m8f_c00303{transform:matrix(0.244452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244452,0.000000,0.000000,0.250000,0,0);}
.ma5_c00303{transform:matrix(0.247933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247933,0.000000,0.000000,0.250000,0,0);}
.m76_c00303{transform:matrix(0.248594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248594,0.000000,0.000000,0.250000,0,0);}
.mf3_c00303{transform:matrix(0.249368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249368,0.000000,0.000000,0.250000,0,0);}
.m18_c00303{transform:matrix(0.249588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249588,0.000000,0.000000,0.250000,0,0);}
.m0_c00303{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.mec_c00303{transform:matrix(0.253247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253247,0.000000,0.000000,0.250000,0,0);}
.m57_c00303{transform:matrix(0.255391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255391,0.000000,0.000000,0.250000,0,0);}
.m46_c00303{transform:matrix(0.258260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258260,0.000000,0.000000,0.250000,0,0);}
.m85_c00303{transform:matrix(0.260800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260800,0.000000,0.000000,0.250000,0,0);}
.m15_c00303{transform:matrix(0.260804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260804,0.000000,0.000000,0.250000,0,0);}
.m3a_c00303{transform:matrix(0.261470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261470,0.000000,0.000000,0.250000,0,0);}
.m23_c00303{transform:matrix(0.261692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261692,0.000000,0.000000,0.250000,0,0);}
.m6_c00303{transform:matrix(0.262407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262407,0.000000,0.000000,0.250000,0,0);}
.m48_c00303{transform:matrix(0.262459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262459,0.000000,0.000000,0.250000,0,0);}
.m87_c00303{transform:matrix(0.263126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263126,0.000000,0.000000,0.250000,0,0);}
.md_c00303{transform:matrix(0.263429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263429,0.000000,0.000000,0.250000,0,0);}
.m71_c00303{transform:matrix(0.266131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266131,0.000000,0.000000,0.250000,0,0);}
.m2f_c00303{transform:matrix(0.266448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266448,0.000000,0.000000,0.250000,0,0);}
.m1f_c00303{transform:matrix(0.266643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266643,0.000000,0.000000,0.250000,0,0);}
.m3b_c00303{transform:matrix(0.267951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267951,0.000000,0.000000,0.250000,0,0);}
.m43_c00303{transform:matrix(0.268132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268132,0.000000,0.000000,0.250000,0,0);}
.m28_c00303{transform:matrix(0.270211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270211,0.000000,0.000000,0.250000,0,0);}
.maa_c00303{transform:matrix(0.271398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271398,0.000000,0.000000,0.250000,0,0);}
.mb7_c00303{transform:matrix(0.272837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272837,0.000000,0.000000,0.250000,0,0);}
.m8b_c00303{transform:matrix(0.273396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273396,0.000000,0.000000,0.250000,0,0);}
.m21_c00303{transform:matrix(0.273906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273906,0.000000,0.000000,0.250000,0,0);}
.m3_c00303{transform:matrix(0.273969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273969,0.000000,0.000000,0.250000,0,0);}
.m20_c00303{transform:matrix(0.274107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274107,0.000000,0.000000,0.250000,0,0);}
.meb_c00303{transform:matrix(0.276365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276365,0.000000,0.000000,0.250000,0,0);}
.mb4_c00303{transform:matrix(0.276439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276439,0.000000,0.000000,0.250000,0,0);}
.m91_c00303{transform:matrix(0.277222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277222,0.000000,0.000000,0.250000,0,0);}
.m84_c00303{transform:matrix(0.277625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277625,0.000000,0.000000,0.250000,0,0);}
.mab_c00303{transform:matrix(0.278367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278367,0.000000,0.000000,0.250000,0,0);}
.mc7_c00303{transform:matrix(0.279706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279706,0.000000,0.000000,0.250000,0,0);}
.m10_c00303{transform:matrix(0.280290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280290,0.000000,0.000000,0.250000,0,0);}
.m54_c00303{transform:matrix(0.280367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280367,0.000000,0.000000,0.250000,0,0);}
.m2c_c00303{transform:matrix(0.280816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280816,0.000000,0.000000,0.250000,0,0);}
.mda_c00303{transform:matrix(0.280964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280964,0.000000,0.000000,0.250000,0,0);}
.ma_c00303{transform:matrix(0.281216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281216,0.000000,0.000000,0.250000,0,0);}
.m11_c00303{transform:matrix(0.281443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281443,0.000000,0.000000,0.250000,0,0);}
.mc0_c00303{transform:matrix(0.281832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281832,0.000000,0.000000,0.250000,0,0);}
.m39_c00303{transform:matrix(0.283338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283338,0.000000,0.000000,0.250000,0,0);}
.m53_c00303{transform:matrix(0.284374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284374,0.000000,0.000000,0.250000,0,0);}
.m2d_c00303{transform:matrix(0.284832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284832,0.000000,0.000000,0.250000,0,0);}
.m9e_c00303{transform:matrix(0.285399,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285399,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285399,0.000000,0.000000,0.250000,0,0);}
.m96_c00303{transform:matrix(0.285845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285845,0.000000,0.000000,0.250000,0,0);}
.m29_c00303{transform:matrix(0.286468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286468,0.000000,0.000000,0.250000,0,0);}
.me4_c00303{transform:matrix(0.288183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288183,0.000000,0.000000,0.250000,0,0);}
.m34_c00303{transform:matrix(0.288309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288309,0.000000,0.000000,0.250000,0,0);}
.m9b_c00303{transform:matrix(0.288731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288731,0.000000,0.000000,0.250000,0,0);}
.mf_c00303{transform:matrix(0.289062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289062,0.000000,0.000000,0.250000,0,0);}
.m5b_c00303{transform:matrix(0.289310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289310,0.000000,0.000000,0.250000,0,0);}
.me0_c00303{transform:matrix(0.291832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291832,0.000000,0.000000,0.250000,0,0);}
.m88_c00303{transform:matrix(0.292265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292265,0.000000,0.000000,0.250000,0,0);}
.m60_c00303{transform:matrix(0.293281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293281,0.000000,0.000000,0.250000,0,0);}
.mfc_c00303{transform:matrix(0.293772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293772,0.000000,0.000000,0.250000,0,0);}
.m6e_c00303{transform:matrix(0.294416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294416,0.000000,0.000000,0.250000,0,0);}
.mf8_c00303{transform:matrix(0.295147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295147,0.000000,0.000000,0.250000,0,0);}
.m59_c00303{transform:matrix(0.295726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295726,0.000000,0.000000,0.250000,0,0);}
.m37_c00303{transform:matrix(0.296105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296105,0.000000,0.000000,0.250000,0,0);}
.mcb_c00303{transform:matrix(0.296175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296175,0.000000,0.000000,0.250000,0,0);}
.m7b_c00303{transform:matrix(0.296541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296541,0.000000,0.000000,0.250000,0,0);}
.ma6_c00303{transform:matrix(0.297023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297023,0.000000,0.000000,0.250000,0,0);}
.m7_c00303{transform:matrix(0.297141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297141,0.000000,0.000000,0.250000,0,0);}
.m95_c00303{transform:matrix(0.297543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297543,0.000000,0.000000,0.250000,0,0);}
.mb3_c00303{transform:matrix(0.297653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297653,0.000000,0.000000,0.250000,0,0);}
.mb8_c00303{transform:matrix(0.298251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298251,0.000000,0.000000,0.250000,0,0);}
.md3_c00303{transform:matrix(0.298307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298307,0.000000,0.000000,0.250000,0,0);}
.mdb_c00303{transform:matrix(0.298560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298560,0.000000,0.000000,0.250000,0,0);}
.m99_c00303{transform:matrix(0.299989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299989,0.000000,0.000000,0.250000,0,0);}
.m4_c00303{transform:matrix(0.300655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300655,0.000000,0.000000,0.250000,0,0);}
.m27_c00303{transform:matrix(0.301616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301616,0.000000,0.000000,0.250000,0,0);}
.m80_c00303{transform:matrix(0.301658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301658,0.000000,0.000000,0.250000,0,0);}
.m67_c00303{transform:matrix(0.302217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302217,0.000000,0.000000,0.250000,0,0);}
.m1b_c00303{transform:matrix(0.303269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303269,0.000000,0.000000,0.250000,0,0);}
.m24_c00303{transform:matrix(0.304772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304772,0.000000,0.000000,0.250000,0,0);}
.m13_c00303{transform:matrix(0.305277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305277,0.000000,0.000000,0.250000,0,0);}
.ma4_c00303{transform:matrix(0.305543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305543,0.000000,0.000000,0.250000,0,0);}
.mb6_c00303{transform:matrix(0.305573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305573,0.000000,0.000000,0.250000,0,0);}
.mb0_c00303{transform:matrix(0.305584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305584,0.000000,0.000000,0.250000,0,0);}
.mf0_c00303{transform:matrix(0.305711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305711,0.000000,0.000000,0.250000,0,0);}
.mfd_c00303{transform:matrix(0.305930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305930,0.000000,0.000000,0.250000,0,0);}
.m7a_c00303{transform:matrix(0.306042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306042,0.000000,0.000000,0.250000,0,0);}
.mc3_c00303{transform:matrix(0.306219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306219,0.000000,0.000000,0.250000,0,0);}
.mc9_c00303{transform:matrix(0.306391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306391,0.000000,0.000000,0.250000,0,0);}
.me1_c00303{transform:matrix(0.306889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306889,0.000000,0.000000,0.250000,0,0);}
.m75_c00303{transform:matrix(0.308885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308885,0.000000,0.000000,0.250000,0,0);}
.mde_c00303{transform:matrix(0.308906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308906,0.000000,0.000000,0.250000,0,0);}
.m90_c00303{transform:matrix(0.309779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309779,0.000000,0.000000,0.250000,0,0);}
.mac_c00303{transform:matrix(0.309855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309855,0.000000,0.000000,0.250000,0,0);}
.m97_c00303{transform:matrix(0.310101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310101,0.000000,0.000000,0.250000,0,0);}
.m14_c00303{transform:matrix(0.310147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310147,0.000000,0.000000,0.250000,0,0);}
.ma9_c00303{transform:matrix(0.310159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310159,0.000000,0.000000,0.250000,0,0);}
.m6f_c00303{transform:matrix(0.310968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310968,0.000000,0.000000,0.250000,0,0);}
.m89_c00303{transform:matrix(0.312137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312137,0.000000,0.000000,0.250000,0,0);}
.mfb_c00303{transform:matrix(0.312273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312273,0.000000,0.000000,0.250000,0,0);}
.m3d_c00303{transform:matrix(0.312813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312813,0.000000,0.000000,0.250000,0,0);}
.md6_c00303{transform:matrix(0.313706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313706,0.000000,0.000000,0.250000,0,0);}
.m5c_c00303{transform:matrix(0.313766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313766,0.000000,0.000000,0.250000,0,0);}
.ma7_c00303{transform:matrix(0.314003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314003,0.000000,0.000000,0.250000,0,0);}
.m92_c00303{transform:matrix(0.315275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315275,0.000000,0.000000,0.250000,0,0);}
.m4f_c00303{transform:matrix(0.315526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315526,0.000000,0.000000,0.250000,0,0);}
.m47_c00303{transform:matrix(0.316373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316373,0.000000,0.000000,0.250000,0,0);}
.mcf_c00303{transform:matrix(0.317283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317283,0.000000,0.000000,0.250000,0,0);}
.me2_c00303{transform:matrix(0.318582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318582,0.000000,0.000000,0.250000,0,0);}
.m4d_c00303{transform:matrix(0.319245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319245,0.000000,0.000000,0.250000,0,0);}
.m58_c00303{transform:matrix(0.319358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319358,0.000000,0.000000,0.250000,0,0);}
.mcc_c00303{transform:matrix(0.319514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319514,0.000000,0.000000,0.250000,0,0);}
.m17_c00303{transform:matrix(0.319712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319712,0.000000,0.000000,0.250000,0,0);}
.m7c_c00303{transform:matrix(0.319769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319769,0.000000,0.000000,0.250000,0,0);}
.m7e_c00303{transform:matrix(0.320370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320370,0.000000,0.000000,0.250000,0,0);}
.m5a_c00303{transform:matrix(0.320563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320563,0.000000,0.000000,0.250000,0,0);}
.m7f_c00303{transform:matrix(0.320593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320593,0.000000,0.000000,0.250000,0,0);}
.md5_c00303{transform:matrix(0.320766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320766,0.000000,0.000000,0.250000,0,0);}
.ma3_c00303{transform:matrix(0.321012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321012,0.000000,0.000000,0.250000,0,0);}
.ma2_c00303{transform:matrix(0.321620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321620,0.000000,0.000000,0.250000,0,0);}
.m6d_c00303{transform:matrix(0.322151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322151,0.000000,0.000000,0.250000,0,0);}
.m38_c00303{transform:matrix(0.323766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323766,0.000000,0.000000,0.250000,0,0);}
.me_c00303{transform:matrix(0.324342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324342,0.000000,0.000000,0.250000,0,0);}
.m6b_c00303{transform:matrix(0.325421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325421,0.000000,0.000000,0.250000,0,0);}
.mc2_c00303{transform:matrix(0.325470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325470,0.000000,0.000000,0.250000,0,0);}
.m44_c00303{transform:matrix(0.325709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325709,0.000000,0.000000,0.250000,0,0);}
.m1e_c00303{transform:matrix(0.326438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326438,0.000000,0.000000,0.250000,0,0);}
.m25_c00303{transform:matrix(0.327583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327583,0.000000,0.000000,0.250000,0,0);}
.m9f_c00303{transform:matrix(0.327605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327605,0.000000,0.000000,0.250000,0,0);}
.m6a_c00303{transform:matrix(0.327792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327792,0.000000,0.000000,0.250000,0,0);}
.mef_c00303{transform:matrix(0.328326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328326,0.000000,0.000000,0.250000,0,0);}
.mae_c00303{transform:matrix(0.328689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328689,0.000000,0.000000,0.250000,0,0);}
.m52_c00303{transform:matrix(0.329698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329698,0.000000,0.000000,0.250000,0,0);}
.mdc_c00303{transform:matrix(0.330608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330608,0.000000,0.000000,0.250000,0,0);}
.m45_c00303{transform:matrix(0.331409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331409,0.000000,0.000000,0.250000,0,0);}
.m1_c00303{transform:matrix(0.331529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331529,0.000000,0.000000,0.250000,0,0);}
.mb1_c00303{transform:matrix(0.331736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331736,0.000000,0.000000,0.250000,0,0);}
.m2b_c00303{transform:matrix(0.331766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331766,0.000000,0.000000,0.250000,0,0);}
.mc4_c00303{transform:matrix(0.332057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332057,0.000000,0.000000,0.250000,0,0);}
.m8a_c00303{transform:matrix(0.332156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332156,0.000000,0.000000,0.250000,0,0);}
.mf5_c00303{transform:matrix(0.332591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332591,0.000000,0.000000,0.250000,0,0);}
.m73_c00303{transform:matrix(0.332887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332887,0.000000,0.000000,0.250000,0,0);}
.mbe_c00303{transform:matrix(0.333058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333058,0.000000,0.000000,0.250000,0,0);}
.md0_c00303{transform:matrix(0.333431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333431,0.000000,0.000000,0.250000,0,0);}
.m9_c00303{transform:matrix(0.333733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333733,0.000000,0.000000,0.250000,0,0);}
.mb_c00303{transform:matrix(0.334184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334184,0.000000,0.000000,0.250000,0,0);}
.m30_c00303{transform:matrix(0.334334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334334,0.000000,0.000000,0.250000,0,0);}
.m2e_c00303{transform:matrix(0.334554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334554,0.000000,0.000000,0.250000,0,0);}
.mc_c00303{transform:matrix(0.335470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335470,0.000000,0.000000,0.250000,0,0);}
.m69_c00303{transform:matrix(0.336925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336925,0.000000,0.000000,0.250000,0,0);}
.mbb_c00303{transform:matrix(0.337357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337357,0.000000,0.000000,0.250000,0,0);}
.m5d_c00303{transform:matrix(0.337435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337435,0.000000,0.000000,0.250000,0,0);}
.mba_c00303{transform:matrix(0.337660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337660,0.000000,0.000000,0.250000,0,0);}
.m4b_c00303{transform:matrix(0.338725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338725,0.000000,0.000000,0.250000,0,0);}
.m9a_c00303{transform:matrix(0.338984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338984,0.000000,0.000000,0.250000,0,0);}
.md8_c00303{transform:matrix(0.339589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339589,0.000000,0.000000,0.250000,0,0);}
.md1_c00303{transform:matrix(0.339738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339738,0.000000,0.000000,0.250000,0,0);}
.mce_c00303{transform:matrix(0.339887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339887,0.000000,0.000000,0.250000,0,0);}
.mdd_c00303{transform:matrix(0.340181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340181,0.000000,0.000000,0.250000,0,0);}
.m5e_c00303{transform:matrix(0.340800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340800,0.000000,0.000000,0.250000,0,0);}
.m82_c00303{transform:matrix(0.341089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341089,0.000000,0.000000,0.250000,0,0);}
.maf_c00303{transform:matrix(0.342944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342944,0.000000,0.000000,0.250000,0,0);}
.mbc_c00303{transform:matrix(0.344510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344510,0.000000,0.000000,0.250000,0,0);}
.m2_c00303{transform:matrix(0.344553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344553,0.000000,0.000000,0.250000,0,0);}
.m55_c00303{transform:matrix(0.345340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345340,0.000000,0.000000,0.250000,0,0);}
.ma1_c00303{transform:matrix(0.345514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345514,0.000000,0.000000,0.250000,0,0);}
.m5f_c00303{transform:matrix(0.345678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345678,0.000000,0.000000,0.250000,0,0);}
.m70_c00303{transform:matrix(0.346004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346004,0.000000,0.000000,0.250000,0,0);}
.m8_c00303{transform:matrix(0.346255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346255,0.000000,0.000000,0.250000,0,0);}
.mee_c00303{transform:matrix(0.346702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346702,0.000000,0.000000,0.250000,0,0);}
.m16_c00303{transform:matrix(0.347062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347062,0.000000,0.000000,0.250000,0,0);}
.m81_c00303{transform:matrix(0.347745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347745,0.000000,0.000000,0.250000,0,0);}
.mfa_c00303{transform:matrix(0.349072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349072,0.000000,0.000000,0.250000,0,0);}
.m61_c00303{transform:matrix(0.349950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349950,0.000000,0.000000,0.250000,0,0);}
.m2a_c00303{transform:matrix(0.352058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352058,0.000000,0.000000,0.250000,0,0);}
.mdf_c00303{transform:matrix(0.352378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352378,0.000000,0.000000,0.250000,0,0);}
.m72_c00303{transform:matrix(0.353036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353036,0.000000,0.000000,0.250000,0,0);}
.m86_c00303{transform:matrix(0.354119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354119,0.000000,0.000000,0.250000,0,0);}
.m6c_c00303{transform:matrix(0.355309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355309,0.000000,0.000000,0.250000,0,0);}
.m56_c00303{transform:matrix(0.355865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355865,0.000000,0.000000,0.250000,0,0);}
.ma8_c00303{transform:matrix(0.356115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356115,0.000000,0.000000,0.250000,0,0);}
.mc1_c00303{transform:matrix(0.356438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356438,0.000000,0.000000,0.250000,0,0);}
.m9d_c00303{transform:matrix(0.356794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356794,0.000000,0.000000,0.250000,0,0);}
.m4a_c00303{transform:matrix(0.356820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356820,0.000000,0.000000,0.250000,0,0);}
.m9c_c00303{transform:matrix(0.358577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358577,0.000000,0.000000,0.250000,0,0);}
.ma0_c00303{transform:matrix(0.360582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360582,0.000000,0.000000,0.250000,0,0);}
.md7_c00303{transform:matrix(0.361139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361139,0.000000,0.000000,0.250000,0,0);}
.md2_c00303{transform:matrix(0.363192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363192,0.000000,0.000000,0.250000,0,0);}
.md4_c00303{transform:matrix(0.364082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364082,0.000000,0.000000,0.250000,0,0);}
.m83_c00303{transform:matrix(0.364365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364365,0.000000,0.000000,0.250000,0,0);}
.me3_c00303{transform:matrix(0.364524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364524,0.000000,0.000000,0.250000,0,0);}
.m77_c00303{transform:matrix(0.367752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367752,0.000000,0.000000,0.250000,0,0);}
.m8d_c00303{transform:matrix(0.368220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368220,0.000000,0.000000,0.250000,0,0);}
.m66_c00303{transform:matrix(0.369018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369018,0.000000,0.000000,0.250000,0,0);}
.m4c_c00303{transform:matrix(0.369082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369082,0.000000,0.000000,0.250000,0,0);}
.mad_c00303{transform:matrix(0.369172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369172,0.000000,0.000000,0.250000,0,0);}
.m35_c00303{transform:matrix(0.369399,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369399,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369399,0.000000,0.000000,0.250000,0,0);}
.mca_c00303{transform:matrix(0.370993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370993,0.000000,0.000000,0.250000,0,0);}
.m4e_c00303{transform:matrix(0.374216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374216,0.000000,0.000000,0.250000,0,0);}
.med_c00303{transform:matrix(0.375935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375935,0.000000,0.000000,0.250000,0,0);}
.m36_c00303{transform:matrix(0.377659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377659,0.000000,0.000000,0.250000,0,0);}
.mea_c00303{transform:matrix(0.378330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378330,0.000000,0.000000,0.250000,0,0);}
.m19_c00303{transform:matrix(0.379819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379819,0.000000,0.000000,0.250000,0,0);}
.m1d_c00303{transform:matrix(0.386145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386145,0.000000,0.000000,0.250000,0,0);}
.m22_c00303{transform:matrix(0.389385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389385,0.000000,0.000000,0.250000,0,0);}
.mf9_c00303{transform:matrix(0.391236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391236,0.000000,0.000000,0.250000,0,0);}
.mbd_c00303{transform:matrix(0.397670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397670,0.000000,0.000000,0.250000,0,0);}
.m5_c00303{transform:matrix(0.399183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399183,0.000000,0.000000,0.250000,0,0);}
.m74_c00303{transform:matrix(0.400381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400381,0.000000,0.000000,0.250000,0,0);}
.mbf_c00303{transform:matrix(0.401019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401019,0.000000,0.000000,0.250000,0,0);}
.mb9_c00303{transform:matrix(0.407796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407796,0.000000,0.000000,0.250000,0,0);}
.m49_c00303{transform:matrix(0.432177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432177,0.000000,0.000000,0.250000,0,0);}
.mc5_c00303{transform:matrix(0.455269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455269,0.000000,0.000000,0.250000,0,0);}
.m12_c00303{transform:matrix(0.472221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472221,0.000000,0.000000,0.250000,0,0);}
.v0_c00303{vertical-align:0.000000px;}
.v1_c00303{vertical-align:44.193600px;}
.ls21_c00303{letter-spacing:-3.229380px;}
.lsd_c00303{letter-spacing:-2.550240px;}
.ls1c_c00303{letter-spacing:-2.536380px;}
.ls11_c00303{letter-spacing:-2.314627px;}
.ls22_c00303{letter-spacing:-1.884967px;}
.ls1b_c00303{letter-spacing:-1.879891px;}
.ls14_c00303{letter-spacing:-1.610294px;}
.ls9_c00303{letter-spacing:0.000000px;}
.ls1_c00303{letter-spacing:0.080150px;}
.ls5_c00303{letter-spacing:0.233165px;}
.ls2_c00303{letter-spacing:0.400752px;}
.ls19_c00303{letter-spacing:0.743213px;}
.ls16_c00303{letter-spacing:1.508285px;}
.ls18_c00303{letter-spacing:1.581149px;}
.ls1a_c00303{letter-spacing:2.149488px;}
.ls1d_c00303{letter-spacing:2.164061px;}
.ls8_c00303{letter-spacing:2.427005px;}
.ls1e_c00303{letter-spacing:2.534400px;}
.ls3_c00303{letter-spacing:2.863555px;}
.ls10_c00303{letter-spacing:3.180959px;}
.lsf_c00303{letter-spacing:3.306610px;}
.lse_c00303{letter-spacing:3.385810px;}
.ls17_c00303{letter-spacing:3.621341px;}
.lsa_c00303{letter-spacing:3.643200px;}
.ls1f_c00303{letter-spacing:3.880810px;}
.lsb_c00303{letter-spacing:4.356000px;}
.ls6_c00303{letter-spacing:20.572200px;}
.ls0_c00303{letter-spacing:25.088976px;}
.ls15_c00303{letter-spacing:48.470598px;}
.lsc_c00303{letter-spacing:51.321798px;}
.ls20_c00303{letter-spacing:52.747398px;}
.ls13_c00303{letter-spacing:57.024198px;}
.ls12_c00303{letter-spacing:58.449798px;}
.ls4_c00303{letter-spacing:65.170512px;}
.ls7_c00303{letter-spacing:106.184958px;}
.sc__c00303{text-shadow:none;}
.sc0_c00303{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00303{-webkit-text-stroke:0px transparent;}
.sc0_c00303{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00303{word-spacing:-21.039005px;}
.ws3_c00303{word-spacing:-18.616752px;}
.ws1_c00303{word-spacing:-18.216000px;}
.ws6_c00303{word-spacing:-16.336109px;}
.ws8_c00303{word-spacing:-3.497472px;}
.ws4_c00303{word-spacing:-2.694780px;}
.wsa_c00303{word-spacing:0.000000px;}
.ws7_c00303{word-spacing:3.716460px;}
.ws5_c00303{word-spacing:4.147150px;}
.ws2_c00303{word-spacing:5.173344px;}
.ws9_c00303{word-spacing:5.610528px;}
._21_c00303{margin-left:-29.167776px;}
._d_c00303{margin-left:-25.895074px;}
._28_c00303{margin-left:-19.542699px;}
._25_c00303{margin-left:-13.333320px;}
._16_c00303{margin-left:-10.055232px;}
._c_c00303{margin-left:-8.962272px;}
._12_c00303{margin-left:-7.796448px;}
._8_c00303{margin-left:-5.974452px;}
._24_c00303{margin-left:-4.444704px;}
._13_c00303{margin-left:-2.477376px;}
._1d_c00303{margin-left:-1.107216px;}
._3_c00303{width:2.095949px;}
._0_c00303{width:3.111530px;}
._14_c00303{width:5.391144px;}
._b_c00303{width:6.630624px;}
._1_c00303{width:8.597952px;}
._2_c00303{width:10.492416px;}
._e_c00303{width:11.949696px;}
._f_c00303{width:12.969792px;}
._9_c00303{width:13.989888px;}
._10_c00303{width:16.175808px;}
._1e_c00303{width:17.196300px;}
._22_c00303{width:18.244512px;}
._1f_c00303{width:20.911968px;}
._6_c00303{width:22.369248px;}
._15_c00303{width:23.389344px;}
._4_c00303{width:24.773760px;}
._1a_c00303{width:29.728908px;}
._19_c00303{width:30.893940px;}
._1b_c00303{width:33.036538px;}
._5_c00303{width:36.504864px;}
._11_c00303{width:39.419424px;}
._20_c00303{width:40.710384px;}
._7_c00303{width:42.182712px;}
._17_c00303{width:43.955208px;}
._18_c00303{width:45.394668px;}
._1c_c00303{width:46.650542px;}
._a_c00303{width:53.376048px;}
._23_c00303{width:63.896976px;}
._26_c00303{width:65.392272px;}
._27_c00303{width:101.194632px;}
.fc0_c00303{color:transparent;}
.fs19_c00303{font-size:22.176000px;}
.fs1a_c00303{font-size:28.314000px;}
.fs4_c00303{font-size:33.462000px;}
.fs10_c00303{font-size:38.808000px;}
.fs11_c00303{font-size:44.748000px;}
.fse_c00303{font-size:45.144000px;}
.fs9_c00303{font-size:48.470598px;}
.fs12_c00303{font-size:50.688000px;}
.fs3_c00303{font-size:51.321798px;}
.fs14_c00303{font-size:52.747398px;}
.fs18_c00303{font-size:53.856198px;}
.fs8_c00303{font-size:57.024198px;}
.fs7_c00303{font-size:58.449798px;}
.fsd_c00303{font-size:63.756198px;}
.fs6_c00303{font-size:66.132198px;}
.fs5_c00303{font-size:67.716198px;}
.fsc_c00303{font-size:72.468000px;}
.fs1_c00303{font-size:72.864000px;}
.fs0_c00303{font-size:74.448000px;}
.fsa_c00303{font-size:74.844000px;}
.fs13_c00303{font-size:77.616198px;}
.fsb_c00303{font-size:82.368000px;}
.fs2_c00303{font-size:87.120000px;}
.fs16_c00303{font-size:91.872198px;}
.fs15_c00303{font-size:92.268000px;}
.fsf_c00303{font-size:98.208000px;}
.fs17_c00303{font-size:142.560000px;}
.y0_c00303{bottom:0.000000px;}
.y1_c00303{bottom:76.500000px;}
.y20_c00303{bottom:80.814735px;}
.y1f_c00303{bottom:136.408185px;}
.y1e_c00303{bottom:162.781785px;}
.y1d_c00303{bottom:168.845535px;}
.y1c_c00303{bottom:202.347135px;}
.y1a_c00303{bottom:235.130985px;}
.y1b_c00303{bottom:242.615385px;}
.y19_c00303{bottom:251.168985px;}
.y18_c00303{bottom:267.211935px;}
.y17_c00303{bottom:299.282985px;}
.y16_c00303{bottom:320.310585px;}
.y15_c00303{bottom:331.358985px;}
.y14_c00303{bottom:364.509135px;}
.y13_c00303{bottom:398.362185px;}
.y12_c00303{bottom:431.155935px;}
.y11_c00303{bottom:463.944735px;}
.y10_c00303{bottom:497.797785px;}
.yf_c00303{bottom:561.954735px;}
.ye_c00303{bottom:594.743535px;}
.yd_c00303{bottom:627.175935px;}
.yc_c00303{bottom:659.246985px;}
.y21_c00303{bottom:683.487135px;}
.yb_c00303{bottom:691.322985px;}
.ya_c00303{bottom:724.111785px;}
.y9_c00303{bottom:756.549135px;}
.y8_c00303{bottom:788.981535px;}
.y7_c00303{bottom:823.552335px;}
.y6_c00303{bottom:855.984735px;}
.y5_c00303{bottom:875.230335px;}
.y4_c00303{bottom:888.055785px;}
.y3_c00303{bottom:921.205935px;}
.y2_c00303{bottom:1071.601785px;}
.h19_c00303{height:23.128875px;}
.hb_c00303{height:32.281418px;}
.h5_c00303{height:34.180317px;}
.h6_c00303{height:34.899820px;}
.h14_c00303{height:35.129767px;}
.ha_c00303{height:37.978116px;}
.h9_c00303{height:38.927565px;}
.h11_c00303{height:43.917715px;}
.hf_c00303{height:47.083781px;}
.h12_c00303{height:49.747500px;}
.h17_c00303{height:52.856913px;}
.h7_c00303{height:66.459745px;}
.h8_c00303{height:68.973816px;}
.he_c00303{height:71.123379px;}
.h3_c00303{height:71.512031px;}
.h2_c00303{height:73.066641px;}
.hc_c00303{height:73.455293px;}
.h13_c00303{height:76.176054px;}
.h4_c00303{height:85.503516px;}
.h15_c00303{height:90.555996px;}
.h18_c00303{height:95.819832px;}
.h10_c00303{height:96.385781px;}
.hd_c00303{height:115.705631px;}
.h16_c00303{height:148.685625px;}
.h1_c00303{height:1110.000000px;}
.h0_c00303{height:1263.000000px;}
.w1_c00303{width:763.500000px;}
.w0_c00303{width:892.500000px;}
.x0_c00303{left:0.000000px;}
.x1_c00303{left:64.500000px;}
.x22_c00303{left:91.427550px;}
.x3_c00303{left:92.491800px;}
.x5a_c00303{left:93.625350px;}
.x23_c00303{left:102.990750px;}
.x6f_c00303{left:112.861050px;}
.x14_c00303{left:114.786600px;}
.x70_c00303{left:123.508500px;}
.x24_c00303{left:124.557900px;}
.x49_c00303{left:126.750750px;}
.x62_c00303{left:129.839550px;}
.x43_c00303{left:135.254850px;}
.x4_c00303{left:136.531950px;}
.x4a_c00303{left:145.506300px;}
.x5_c00303{left:146.991300px;}
.x50_c00303{left:149.263350px;}
.x79_c00303{left:156.322050px;}
.x73_c00303{left:157.708050px;}
.x31_c00303{left:169.231650px;}
.x57_c00303{left:170.583000px;}
.x5b_c00303{left:178.804950px;}
.x51_c00303{left:180.329550px;}
.x68_c00303{left:189.110850px;}
.x15_c00303{left:190.947300px;}
.x25_c00303{left:201.436350px;}
.x6_c00303{left:213.494550px;}
.x5c_c00303{left:214.746900px;}
.x44_c00303{left:223.473750px;}
.x4b_c00303{left:224.528100px;}
.x7_c00303{left:234.348900px;}
.x37_c00303{left:245.387400px;}
.x16_c00303{left:246.624900px;}
.x8_c00303{left:255.401250px;}
.x6c_c00303{left:256.846650px;}
.x52_c00303{left:267.306000px;}
.x66_c00303{left:268.395000px;}
.x17_c00303{left:279.091950px;}
.x9_c00303{left:289.284000px;}
.x7d_c00303{left:290.467050px;}
.x18_c00303{left:299.956200px;}
.x6d_c00303{left:301.178850px;}
.x89_c00303{left:302.218350px;}
.x26_c00303{left:303.282600px;}
.xa_c00303{left:311.514450px;}
.x74_c00303{left:314.038950px;}
.x71_c00303{left:321.335250px;}
.x38_c00303{left:322.562850px;}
.x4c_c00303{left:323.795400px;}
.x5d_c00303{left:330.958050px;}
.x19_c00303{left:332.383650px;}
.x58_c00303{left:333.467700px;}
.x53_c00303{left:344.179500px;}
.x78_c00303{left:346.060500px;}
.x39_c00303{left:354.802200px;}
.x27_c00303{left:356.277300px;}
.xb_c00303{left:366.909900px;}
.x67_c00303{left:369.162150px;}
.x5e_c00303{left:376.527750px;}
.x3a_c00303{left:378.359250px;}
.x4d_c00303{left:387.571200px;}
.x54_c00303{left:389.155200px;}
.x21_c00303{left:395.827800px;}
.x3b_c00303{left:398.233500px;}
.xc_c00303{left:399.530400px;}
.x7e_c00303{left:400.555050px;}
.x1a_c00303{left:410.400600px;}
.x63_c00303{left:421.805400px;}
.x72_c00303{left:426.473250px;}
.x45_c00303{left:431.423250px;}
.xd_c00303{left:432.992400px;}
.x32_c00303{left:442.892400px;}
.x28_c00303{left:444.283350px;}
.x33_c00303{left:454.391250px;}
.x64_c00303{left:456.198000px;}
.x3c_c00303{left:459.336300px;}
.x29_c00303{left:464.523900px;}
.x69_c00303{left:466.182150px;}
.x75_c00303{left:467.206800px;}
.x1b_c00303{left:477.101850px;}
.x2a_c00303{left:478.270050px;}
.x5f_c00303{left:484.566450px;}
.x1c_c00303{left:487.536450px;}
.xe_c00303{left:498.673950px;}
.x2b_c00303{left:508.776900px;}
.x3d_c00303{left:510.252000px;}
.x60_c00303{left:519.102600px;}
.x7a_c00303{left:520.676700px;}
.x6e_c00303{left:530.185650px;}
.xf_c00303{left:531.423150px;}
.x3e_c00303{left:534.313950px;}
.x2c_c00303{left:541.971600px;}
.x6a_c00303{left:543.090300px;}
.x10_c00303{left:553.425900px;}
.x84_c00303{left:554.613900px;}
.x34_c00303{left:564.013950px;}
.x3f_c00303{left:565.474200px;}
.x1d_c00303{left:575.116800px;}
.x7b_c00303{left:576.329550px;}
.x11_c00303{left:586.645350px;}
.x65_c00303{left:588.254100px;}
.x8a_c00303{left:589.417350px;}
.x61_c00303{left:596.500800px;}
.x7f_c00303{left:597.906600px;}
.x86_c00303{left:602.623950px;}
.x2d_c00303{left:607.707600px;}
.x1e_c00303{left:608.915400px;}
.x76_c00303{left:612.756600px;}
.x87_c00303{left:617.647200px;}
.x35_c00303{left:618.934200px;}
.x55_c00303{left:624.636600px;}
.x80_c00303{left:631.056750px;}
.x46_c00303{left:632.096250px;}
.x59_c00303{left:634.264350px;}
.x40_c00303{left:640.323150px;}
.x12_c00303{left:641.481450px;}
.x13_c00303{left:652.222950px;}
.x81_c00303{left:653.307000px;}
.x41_c00303{left:661.350750px;}
.x36_c00303{left:662.419950px;}
.x2_c00303{left:663.974250px;}
.x2e_c00303{left:672.711000px;}
.x1f_c00303{left:674.007900px;}
.x4e_c00303{left:683.794050px;}
.x42_c00303{left:685.224600px;}
.x47_c00303{left:687.387750px;}
.x20_c00303{left:695.530500px;}
.x77_c00303{left:697.436250px;}
.x7c_c00303{left:699.683550px;}
.x2f_c00303{left:706.029450px;}
.x6b_c00303{left:707.415450px;}
.x56_c00303{left:710.202300px;}
.x4f_c00303{left:716.899650px;}
.x85_c00303{left:718.008450px;}
.x30_c00303{left:720.671550px;}
.x88_c00303{left:722.364450px;}
.x48_c00303{left:728.967750px;}
.x82_c00303{left:730.492350px;}
.x83_c00303{left:740.827950px;}
.x8b_c00303{left:750.628950px;}
@media print{
.v0_c00303{vertical-align:0.000000pt;}
.v1_c00303{vertical-align:39.283200pt;}
.ls21_c00303{letter-spacing:-2.870560pt;}
.lsd_c00303{letter-spacing:-2.266880pt;}
.ls1c_c00303{letter-spacing:-2.254560pt;}
.ls11_c00303{letter-spacing:-2.057446pt;}
.ls22_c00303{letter-spacing:-1.675526pt;}
.ls1b_c00303{letter-spacing:-1.671014pt;}
.ls14_c00303{letter-spacing:-1.431373pt;}
.ls9_c00303{letter-spacing:0.000000pt;}
.ls1_c00303{letter-spacing:0.071245pt;}
.ls5_c00303{letter-spacing:0.207258pt;}
.ls2_c00303{letter-spacing:0.356224pt;}
.ls19_c00303{letter-spacing:0.660634pt;}
.ls16_c00303{letter-spacing:1.340698pt;}
.ls18_c00303{letter-spacing:1.405466pt;}
.ls1a_c00303{letter-spacing:1.910656pt;}
.ls1d_c00303{letter-spacing:1.923610pt;}
.ls8_c00303{letter-spacing:2.157338pt;}
.ls1e_c00303{letter-spacing:2.252800pt;}
.ls3_c00303{letter-spacing:2.545382pt;}
.ls10_c00303{letter-spacing:2.827519pt;}
.lsf_c00303{letter-spacing:2.939209pt;}
.lse_c00303{letter-spacing:3.009609pt;}
.ls17_c00303{letter-spacing:3.218970pt;}
.lsa_c00303{letter-spacing:3.238400pt;}
.ls1f_c00303{letter-spacing:3.449609pt;}
.lsb_c00303{letter-spacing:3.872000pt;}
.ls6_c00303{letter-spacing:18.286400pt;}
.ls0_c00303{letter-spacing:22.301312pt;}
.ls15_c00303{letter-spacing:43.084976pt;}
.lsc_c00303{letter-spacing:45.619376pt;}
.ls20_c00303{letter-spacing:46.886576pt;}
.ls13_c00303{letter-spacing:50.688176pt;}
.ls12_c00303{letter-spacing:51.955376pt;}
.ls4_c00303{letter-spacing:57.929344pt;}
.ls7_c00303{letter-spacing:94.386629pt;}
.ws0_c00303{word-spacing:-18.701338pt;}
.ws3_c00303{word-spacing:-16.548224pt;}
.ws1_c00303{word-spacing:-16.192000pt;}
.ws6_c00303{word-spacing:-14.520986pt;}
.ws8_c00303{word-spacing:-3.108864pt;}
.ws4_c00303{word-spacing:-2.395360pt;}
.wsa_c00303{word-spacing:0.000000pt;}
.ws7_c00303{word-spacing:3.303520pt;}
.ws5_c00303{word-spacing:3.686355pt;}
.ws2_c00303{word-spacing:4.598528pt;}
.ws9_c00303{word-spacing:4.987136pt;}
._21_c00303{margin-left:-25.926912pt;}
._d_c00303{margin-left:-23.017843pt;}
._28_c00303{margin-left:-17.371288pt;}
._25_c00303{margin-left:-11.851840pt;}
._16_c00303{margin-left:-8.937984pt;}
._c_c00303{margin-left:-7.966464pt;}
._12_c00303{margin-left:-6.930176pt;}
._8_c00303{margin-left:-5.310624pt;}
._24_c00303{margin-left:-3.950848pt;}
._13_c00303{margin-left:-2.202112pt;}
._1d_c00303{margin-left:-0.984192pt;}
._3_c00303{width:1.863066pt;}
._0_c00303{width:2.765805pt;}
._14_c00303{width:4.792128pt;}
._b_c00303{width:5.893888pt;}
._1_c00303{width:7.642624pt;}
._2_c00303{width:9.326592pt;}
._e_c00303{width:10.621952pt;}
._f_c00303{width:11.528704pt;}
._9_c00303{width:12.435456pt;}
._10_c00303{width:14.378496pt;}
._1e_c00303{width:15.285600pt;}
._22_c00303{width:16.217344pt;}
._1f_c00303{width:18.588416pt;}
._6_c00303{width:19.883776pt;}
._15_c00303{width:20.790528pt;}
._4_c00303{width:22.021120pt;}
._1a_c00303{width:26.425696pt;}
._19_c00303{width:27.461280pt;}
._1b_c00303{width:29.365811pt;}
._5_c00303{width:32.448768pt;}
._11_c00303{width:35.039488pt;}
._20_c00303{width:36.187008pt;}
._7_c00303{width:37.495744pt;}
._17_c00303{width:39.071296pt;}
._18_c00303{width:40.350816pt;}
._1c_c00303{width:41.467149pt;}
._a_c00303{width:47.445376pt;}
._23_c00303{width:56.797312pt;}
._26_c00303{width:58.126464pt;}
._27_c00303{width:89.950784pt;}
.fs19_c00303{font-size:19.712000pt;}
.fs1a_c00303{font-size:25.168000pt;}
.fs4_c00303{font-size:29.744000pt;}
.fs10_c00303{font-size:34.496000pt;}
.fs11_c00303{font-size:39.776000pt;}
.fse_c00303{font-size:40.128000pt;}
.fs9_c00303{font-size:43.084976pt;}
.fs12_c00303{font-size:45.056000pt;}
.fs3_c00303{font-size:45.619376pt;}
.fs14_c00303{font-size:46.886576pt;}
.fs18_c00303{font-size:47.872176pt;}
.fs8_c00303{font-size:50.688176pt;}
.fs7_c00303{font-size:51.955376pt;}
.fsd_c00303{font-size:56.672176pt;}
.fs6_c00303{font-size:58.784176pt;}
.fs5_c00303{font-size:60.192176pt;}
.fsc_c00303{font-size:64.416000pt;}
.fs1_c00303{font-size:64.768000pt;}
.fs0_c00303{font-size:66.176000pt;}
.fsa_c00303{font-size:66.528000pt;}
.fs13_c00303{font-size:68.992176pt;}
.fsb_c00303{font-size:73.216000pt;}
.fs2_c00303{font-size:77.440000pt;}
.fs16_c00303{font-size:81.664176pt;}
.fs15_c00303{font-size:82.016000pt;}
.fsf_c00303{font-size:87.296000pt;}
.fs17_c00303{font-size:126.720000pt;}
.y0_c00303{bottom:0.000000pt;}
.y1_c00303{bottom:68.000000pt;}
.y20_c00303{bottom:71.835320pt;}
.y1f_c00303{bottom:121.251720pt;}
.y1e_c00303{bottom:144.694920pt;}
.y1d_c00303{bottom:150.084920pt;}
.y1c_c00303{bottom:179.864120pt;}
.y1a_c00303{bottom:209.005320pt;}
.y1b_c00303{bottom:215.658120pt;}
.y19_c00303{bottom:223.261320pt;}
.y18_c00303{bottom:237.521720pt;}
.y17_c00303{bottom:266.029320pt;}
.y16_c00303{bottom:284.720520pt;}
.y15_c00303{bottom:294.541320pt;}
.y14_c00303{bottom:324.008120pt;}
.y13_c00303{bottom:354.099720pt;}
.y12_c00303{bottom:383.249720pt;}
.y11_c00303{bottom:412.395320pt;}
.y10_c00303{bottom:442.486920pt;}
.yf_c00303{bottom:499.515320pt;}
.ye_c00303{bottom:528.660920pt;}
.yd_c00303{bottom:557.489720pt;}
.yc_c00303{bottom:585.997320pt;}
.y21_c00303{bottom:607.544120pt;}
.yb_c00303{bottom:614.509320pt;}
.ya_c00303{bottom:643.654920pt;}
.y9_c00303{bottom:672.488120pt;}
.y8_c00303{bottom:701.316920pt;}
.y7_c00303{bottom:732.046520pt;}
.y6_c00303{bottom:760.875320pt;}
.y5_c00303{bottom:777.982520pt;}
.y4_c00303{bottom:789.382920pt;}
.y3_c00303{bottom:818.849720pt;}
.y2_c00303{bottom:952.534920pt;}
.h19_c00303{height:20.559000pt;}
.hb_c00303{height:28.694594pt;}
.h5_c00303{height:30.382504pt;}
.h6_c00303{height:31.022063pt;}
.h14_c00303{height:31.226460pt;}
.ha_c00303{height:33.758325pt;}
.h9_c00303{height:34.602280pt;}
.h11_c00303{height:39.037969pt;}
.hf_c00303{height:41.852250pt;}
.h12_c00303{height:44.220000pt;}
.h17_c00303{height:46.983923pt;}
.h7_c00303{height:59.075329pt;}
.h8_c00303{height:61.310059pt;}
.he_c00303{height:63.220781pt;}
.h3_c00303{height:63.566250pt;}
.h2_c00303{height:64.948125pt;}
.hc_c00303{height:65.293594pt;}
.h13_c00303{height:67.712048pt;}
.h4_c00303{height:76.003125pt;}
.h15_c00303{height:80.494219pt;}
.h18_c00303{height:85.173184pt;}
.h10_c00303{height:85.676250pt;}
.hd_c00303{height:102.849450pt;}
.h16_c00303{height:132.165000pt;}
.h1_c00303{height:986.666667pt;}
.h0_c00303{height:1122.666667pt;}
.w1_c00303{width:678.666667pt;}
.w0_c00303{width:793.333333pt;}
.x0_c00303{left:0.000000pt;}
.x1_c00303{left:57.333333pt;}
.x22_c00303{left:81.268933pt;}
.x3_c00303{left:82.214933pt;}
.x5a_c00303{left:83.222533pt;}
.x23_c00303{left:91.547333pt;}
.x6f_c00303{left:100.320933pt;}
.x14_c00303{left:102.032533pt;}
.x70_c00303{left:109.785333pt;}
.x24_c00303{left:110.718133pt;}
.x49_c00303{left:112.667333pt;}
.x62_c00303{left:115.412933pt;}
.x43_c00303{left:120.226533pt;}
.x4_c00303{left:121.361733pt;}
.x4a_c00303{left:129.338933pt;}
.x5_c00303{left:130.658933pt;}
.x50_c00303{left:132.678533pt;}
.x79_c00303{left:138.952933pt;}
.x73_c00303{left:140.184933pt;}
.x31_c00303{left:150.428133pt;}
.x57_c00303{left:151.629333pt;}
.x5b_c00303{left:158.937733pt;}
.x51_c00303{left:160.292933pt;}
.x68_c00303{left:168.098533pt;}
.x15_c00303{left:169.730933pt;}
.x25_c00303{left:179.054533pt;}
.x6_c00303{left:189.772933pt;}
.x5c_c00303{left:190.886133pt;}
.x44_c00303{left:198.643333pt;}
.x4b_c00303{left:199.580533pt;}
.x7_c00303{left:208.310133pt;}
.x37_c00303{left:218.122133pt;}
.x16_c00303{left:219.222133pt;}
.x8_c00303{left:227.023333pt;}
.x6c_c00303{left:228.308133pt;}
.x52_c00303{left:237.605333pt;}
.x66_c00303{left:238.573333pt;}
.x17_c00303{left:248.081733pt;}
.x9_c00303{left:257.141333pt;}
.x7d_c00303{left:258.192933pt;}
.x18_c00303{left:266.627733pt;}
.x6d_c00303{left:267.714533pt;}
.x89_c00303{left:268.638533pt;}
.x26_c00303{left:269.584533pt;}
.xa_c00303{left:276.901733pt;}
.x74_c00303{left:279.145733pt;}
.x71_c00303{left:285.631333pt;}
.x38_c00303{left:286.722533pt;}
.x4c_c00303{left:287.818133pt;}
.x5d_c00303{left:294.184933pt;}
.x19_c00303{left:295.452133pt;}
.x58_c00303{left:296.415733pt;}
.x53_c00303{left:305.937333pt;}
.x78_c00303{left:307.609333pt;}
.x39_c00303{left:315.379733pt;}
.x27_c00303{left:316.690933pt;}
.xb_c00303{left:326.142133pt;}
.x67_c00303{left:328.144133pt;}
.x5e_c00303{left:334.691333pt;}
.x3a_c00303{left:336.319333pt;}
.x4d_c00303{left:344.507733pt;}
.x54_c00303{left:345.915733pt;}
.x21_c00303{left:351.846933pt;}
.x3b_c00303{left:353.985333pt;}
.xc_c00303{left:355.138133pt;}
.x7e_c00303{left:356.048933pt;}
.x1a_c00303{left:364.800533pt;}
.x63_c00303{left:374.938133pt;}
.x72_c00303{left:379.087333pt;}
.x45_c00303{left:383.487333pt;}
.xd_c00303{left:384.882133pt;}
.x32_c00303{left:393.682133pt;}
.x28_c00303{left:394.918533pt;}
.x33_c00303{left:403.903333pt;}
.x64_c00303{left:405.509333pt;}
.x3c_c00303{left:408.298933pt;}
.x29_c00303{left:412.910133pt;}
.x69_c00303{left:414.384133pt;}
.x75_c00303{left:415.294933pt;}
.x1b_c00303{left:424.090533pt;}
.x2a_c00303{left:425.128933pt;}
.x5f_c00303{left:430.725733pt;}
.x1c_c00303{left:433.365733pt;}
.xe_c00303{left:443.265733pt;}
.x2b_c00303{left:452.246133pt;}
.x3d_c00303{left:453.557333pt;}
.x60_c00303{left:461.424533pt;}
.x7a_c00303{left:462.823733pt;}
.x6e_c00303{left:471.276133pt;}
.xf_c00303{left:472.376133pt;}
.x3e_c00303{left:474.945733pt;}
.x2c_c00303{left:481.752533pt;}
.x6a_c00303{left:482.746933pt;}
.x10_c00303{left:491.934133pt;}
.x84_c00303{left:492.990133pt;}
.x34_c00303{left:501.345733pt;}
.x3f_c00303{left:502.643733pt;}
.x1d_c00303{left:511.214933pt;}
.x7b_c00303{left:512.292933pt;}
.x11_c00303{left:521.462533pt;}
.x65_c00303{left:522.892533pt;}
.x8a_c00303{left:523.926533pt;}
.x61_c00303{left:530.222933pt;}
.x7f_c00303{left:531.472533pt;}
.x86_c00303{left:535.665733pt;}
.x2d_c00303{left:540.184533pt;}
.x1e_c00303{left:541.258133pt;}
.x76_c00303{left:544.672533pt;}
.x87_c00303{left:549.019733pt;}
.x35_c00303{left:550.163733pt;}
.x55_c00303{left:555.232533pt;}
.x80_c00303{left:560.939333pt;}
.x46_c00303{left:561.863333pt;}
.x59_c00303{left:563.790533pt;}
.x40_c00303{left:569.176133pt;}
.x12_c00303{left:570.205733pt;}
.x13_c00303{left:579.753733pt;}
.x81_c00303{left:580.717333pt;}
.x41_c00303{left:587.867333pt;}
.x36_c00303{left:588.817733pt;}
.x2_c00303{left:590.199333pt;}
.x2e_c00303{left:597.965333pt;}
.x1f_c00303{left:599.118133pt;}
.x4e_c00303{left:607.816933pt;}
.x42_c00303{left:609.088533pt;}
.x47_c00303{left:611.011333pt;}
.x20_c00303{left:618.249333pt;}
.x77_c00303{left:619.943333pt;}
.x7c_c00303{left:621.940933pt;}
.x2f_c00303{left:627.581733pt;}
.x6b_c00303{left:628.813733pt;}
.x56_c00303{left:631.290933pt;}
.x4f_c00303{left:637.244133pt;}
.x85_c00303{left:638.229733pt;}
.x30_c00303{left:640.596933pt;}
.x88_c00303{left:642.101733pt;}
.x48_c00303{left:647.971333pt;}
.x82_c00303{left:649.326533pt;}
.x83_c00303{left:658.513733pt;}
.x8b_c00303{left:667.225733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_715a3176e841295ea5dfccb2.woff2')format("woff");}.ff1_c00304{font-family:ff1_c00304;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00304;src:url('chunks/assets/font_f873b76745381ff191c806c3.woff2')format("woff");}.ff2_c00304{font-family:ff2_c00304;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00304;src:url('chunks/assets/font_b49b1cea01365aa1c0c1e308.woff2')format("woff");}.ff3_c00304{font-family:ff3_c00304;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00304;src:url('chunks/assets/font_8488c6617201a5856d7612a5.woff2')format("woff");}.ff4_c00304{font-family:ff4_c00304;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00304;src:url('chunks/assets/font_d7a8bec137d6d37444efa2c9.woff2')format("woff");}.ff5_c00304{font-family:ff5_c00304;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m35_c00304{transform:matrix(0.043751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043751,0.000000,0.000000,0.250000,0,0);}
.m52_c00304{transform:matrix(0.107153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107153,0.000000,0.000000,0.250000,0,0);}
.mba_c00304{transform:matrix(0.117188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117188,0.000000,0.000000,0.250000,0,0);}
.m9_c00304{transform:matrix(0.119048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119048,0.000000,0.000000,0.250000,0,0);}
.m33_c00304{transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00304{transform:matrix(0.140912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140912,0.000000,0.000000,0.250000,0,0);}
.m36_c00304{transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00304{transform:matrix(0.153125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153125,0.000000,0.000000,0.250000,0,0);}
.m34_c00304{transform:matrix(0.160938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160938,0.000000,0.000000,0.250000,0,0);}
.ma0_c00304{transform:matrix(0.168493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168493,0.000000,0.000000,0.250000,0,0);}
.mbb_c00304{transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00304{transform:matrix(0.179688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179688,0.000000,0.000000,0.250000,0,0);}
.mbc_c00304{transform:matrix(0.185417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185417,0.000000,0.000000,0.250000,0,0);}
.m68_c00304{transform:matrix(0.208620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208620,0.000000,0.000000,0.250000,0,0);}
.mc_c00304{transform:matrix(0.214690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214690,0.000000,0.000000,0.250000,0,0);}
.mb3_c00304{transform:matrix(0.218471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218471,0.000000,0.000000,0.250000,0,0);}
.m97_c00304{transform:matrix(0.224085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224085,0.000000,0.000000,0.250000,0,0);}
.m75_c00304{transform:matrix(0.232838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232838,0.000000,0.000000,0.250000,0,0);}
.m14_c00304{transform:matrix(0.235109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235109,0.000000,0.000000,0.250000,0,0);}
.m0_c00304{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00304{transform:matrix(0.253636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253636,0.000000,0.000000,0.250000,0,0);}
.m1d_c00304{transform:matrix(0.254597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254597,0.000000,0.000000,0.250000,0,0);}
.m40_c00304{transform:matrix(0.254992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254992,0.000000,0.000000,0.250000,0,0);}
.m95_c00304{transform:matrix(0.255901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255901,0.000000,0.000000,0.250000,0,0);}
.m43_c00304{transform:matrix(0.260383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260383,0.000000,0.000000,0.250000,0,0);}
.m54_c00304{transform:matrix(0.263435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263435,0.000000,0.000000,0.250000,0,0);}
.m13_c00304{transform:matrix(0.263569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263569,0.000000,0.000000,0.250000,0,0);}
.m66_c00304{transform:matrix(0.263690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263690,0.000000,0.000000,0.250000,0,0);}
.mbf_c00304{transform:matrix(0.264150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264150,0.000000,0.000000,0.250000,0,0);}
.m8f_c00304{transform:matrix(0.265288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265288,0.000000,0.000000,0.250000,0,0);}
.m7d_c00304{transform:matrix(0.267032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267032,0.000000,0.000000,0.250000,0,0);}
.m41_c00304{transform:matrix(0.269608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269608,0.000000,0.000000,0.250000,0,0);}
.mf_c00304{transform:matrix(0.270026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270026,0.000000,0.000000,0.250000,0,0);}
.ma2_c00304{transform:matrix(0.270184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270184,0.000000,0.000000,0.250000,0,0);}
.m6c_c00304{transform:matrix(0.271273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271273,0.000000,0.000000,0.250000,0,0);}
.mb6_c00304{transform:matrix(0.271288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271288,0.000000,0.000000,0.250000,0,0);}
.m5d_c00304{transform:matrix(0.273069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273069,0.000000,0.000000,0.250000,0,0);}
.mb4_c00304{transform:matrix(0.273707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273707,0.000000,0.000000,0.250000,0,0);}
.m1_c00304{transform:matrix(0.276588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276588,0.000000,0.000000,0.250000,0,0);}
.maa_c00304{transform:matrix(0.277065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277065,0.000000,0.000000,0.250000,0,0);}
.m85_c00304{transform:matrix(0.277804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277804,0.000000,0.000000,0.250000,0,0);}
.m4a_c00304{transform:matrix(0.278543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278543,0.000000,0.000000,0.250000,0,0);}
.m8b_c00304{transform:matrix(0.279907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279907,0.000000,0.000000,0.250000,0,0);}
.ma9_c00304{transform:matrix(0.280312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280312,0.000000,0.000000,0.250000,0,0);}
.m18_c00304{transform:matrix(0.280655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280655,0.000000,0.000000,0.250000,0,0);}
.m7c_c00304{transform:matrix(0.281242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281242,0.000000,0.000000,0.250000,0,0);}
.m6f_c00304{transform:matrix(0.281421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281421,0.000000,0.000000,0.250000,0,0);}
.ma4_c00304{transform:matrix(0.281692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281692,0.000000,0.000000,0.250000,0,0);}
.m51_c00304{transform:matrix(0.282160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282160,0.000000,0.000000,0.250000,0,0);}
.m4f_c00304{transform:matrix(0.282594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282594,0.000000,0.000000,0.250000,0,0);}
.m6e_c00304{transform:matrix(0.282903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282903,0.000000,0.000000,0.250000,0,0);}
.m56_c00304{transform:matrix(0.283124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283124,0.000000,0.000000,0.250000,0,0);}
.m69_c00304{transform:matrix(0.283756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283756,0.000000,0.000000,0.250000,0,0);}
.m72_c00304{transform:matrix(0.284075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284075,0.000000,0.000000,0.250000,0,0);}
.m2f_c00304{transform:matrix(0.284415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284415,0.000000,0.000000,0.250000,0,0);}
.m71_c00304{transform:matrix(0.285021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285021,0.000000,0.000000,0.250000,0,0);}
.m25_c00304{transform:matrix(0.285667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285667,0.000000,0.000000,0.250000,0,0);}
.m6a_c00304{transform:matrix(0.286212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286212,0.000000,0.000000,0.250000,0,0);}
.m79_c00304{transform:matrix(0.286265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286265,0.000000,0.000000,0.250000,0,0);}
.m77_c00304{transform:matrix(0.286373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286373,0.000000,0.000000,0.250000,0,0);}
.ma5_c00304{transform:matrix(0.287032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287032,0.000000,0.000000,0.250000,0,0);}
.ma6_c00304{transform:matrix(0.287171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287171,0.000000,0.000000,0.250000,0,0);}
.m8c_c00304{transform:matrix(0.287177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287177,0.000000,0.000000,0.250000,0,0);}
.mc1_c00304{transform:matrix(0.287304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287304,0.000000,0.000000,0.250000,0,0);}
.m22_c00304{transform:matrix(0.287845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287845,0.000000,0.000000,0.250000,0,0);}
.m45_c00304{transform:matrix(0.288823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288823,0.000000,0.000000,0.250000,0,0);}
.m1f_c00304{transform:matrix(0.289516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289516,0.000000,0.000000,0.250000,0,0);}
.mc2_c00304{transform:matrix(0.289680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289680,0.000000,0.000000,0.250000,0,0);}
.m9e_c00304{transform:matrix(0.289810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289810,0.000000,0.000000,0.250000,0,0);}
.m31_c00304{transform:matrix(0.290679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290679,0.000000,0.000000,0.250000,0,0);}
.mae_c00304{transform:matrix(0.291230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291230,0.000000,0.000000,0.250000,0,0);}
.m2c_c00304{transform:matrix(0.291433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291433,0.000000,0.000000,0.250000,0,0);}
.m84_c00304{transform:matrix(0.291438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291438,0.000000,0.000000,0.250000,0,0);}
.mb0_c00304{transform:matrix(0.291734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291734,0.000000,0.000000,0.250000,0,0);}
.mb5_c00304{transform:matrix(0.292819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292819,0.000000,0.000000,0.250000,0,0);}
.m5e_c00304{transform:matrix(0.293127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293127,0.000000,0.000000,0.250000,0,0);}
.m38_c00304{transform:matrix(0.293890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293890,0.000000,0.000000,0.250000,0,0);}
.m17_c00304{transform:matrix(0.294884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294884,0.000000,0.000000,0.250000,0,0);}
.m3c_c00304{transform:matrix(0.296342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296342,0.000000,0.000000,0.250000,0,0);}
.m1c_c00304{transform:matrix(0.296819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296819,0.000000,0.000000,0.250000,0,0);}
.mad_c00304{transform:matrix(0.297877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297877,0.000000,0.000000,0.250000,0,0);}
.m7f_c00304{transform:matrix(0.298157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298157,0.000000,0.000000,0.250000,0,0);}
.m37_c00304{transform:matrix(0.298513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298513,0.000000,0.000000,0.250000,0,0);}
.m60_c00304{transform:matrix(0.300546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300546,0.000000,0.000000,0.250000,0,0);}
.m90_c00304{transform:matrix(0.300759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300759,0.000000,0.000000,0.250000,0,0);}
.m26_c00304{transform:matrix(0.301408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301408,0.000000,0.000000,0.250000,0,0);}
.m3f_c00304{transform:matrix(0.301555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301555,0.000000,0.000000,0.250000,0,0);}
.m2b_c00304{transform:matrix(0.302212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302212,0.000000,0.000000,0.250000,0,0);}
.m82_c00304{transform:matrix(0.303126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303126,0.000000,0.000000,0.250000,0,0);}
.m4b_c00304{transform:matrix(0.305072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305072,0.000000,0.000000,0.250000,0,0);}
.m8d_c00304{transform:matrix(0.305459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305459,0.000000,0.000000,0.250000,0,0);}
.m16_c00304{transform:matrix(0.307082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307082,0.000000,0.000000,0.250000,0,0);}
.m2e_c00304{transform:matrix(0.307277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307277,0.000000,0.000000,0.250000,0,0);}
.m10_c00304{transform:matrix(0.307629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307629,0.000000,0.000000,0.250000,0,0);}
.m67_c00304{transform:matrix(0.308130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308130,0.000000,0.000000,0.250000,0,0);}
.m28_c00304{transform:matrix(0.308200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308200,0.000000,0.000000,0.250000,0,0);}
.m61_c00304{transform:matrix(0.310171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310171,0.000000,0.000000,0.250000,0,0);}
.m8a_c00304{transform:matrix(0.311464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311464,0.000000,0.000000,0.250000,0,0);}
.ma7_c00304{transform:matrix(0.311475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311475,0.000000,0.000000,0.250000,0,0);}
.m12_c00304{transform:matrix(0.312360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312360,0.000000,0.000000,0.250000,0,0);}
.m59_c00304{transform:matrix(0.313088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313088,0.000000,0.000000,0.250000,0,0);}
.m57_c00304{transform:matrix(0.313890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313890,0.000000,0.000000,0.250000,0,0);}
.m9b_c00304{transform:matrix(0.314416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314416,0.000000,0.000000,0.250000,0,0);}
.m91_c00304{transform:matrix(0.314669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314669,0.000000,0.000000,0.250000,0,0);}
.m7b_c00304{transform:matrix(0.314875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314875,0.000000,0.000000,0.250000,0,0);}
.m87_c00304{transform:matrix(0.315467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315467,0.000000,0.000000,0.250000,0,0);}
.me_c00304{transform:matrix(0.315916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315916,0.000000,0.000000,0.250000,0,0);}
.m50_c00304{transform:matrix(0.316255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316255,0.000000,0.000000,0.250000,0,0);}
.m53_c00304{transform:matrix(0.316584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316584,0.000000,0.000000,0.250000,0,0);}
.m3e_c00304{transform:matrix(0.316753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316753,0.000000,0.000000,0.250000,0,0);}
.m6_c00304{transform:matrix(0.316880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316880,0.000000,0.000000,0.250000,0,0);}
.m1b_c00304{transform:matrix(0.317302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317302,0.000000,0.000000,0.250000,0,0);}
.m62_c00304{transform:matrix(0.318610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318610,0.000000,0.000000,0.250000,0,0);}
.mb8_c00304{transform:matrix(0.318710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318710,0.000000,0.000000,0.250000,0,0);}
.m76_c00304{transform:matrix(0.319450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319450,0.000000,0.000000,0.250000,0,0);}
.m65_c00304{transform:matrix(0.319613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319613,0.000000,0.000000,0.250000,0,0);}
.mb2_c00304{transform:matrix(0.321127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321127,0.000000,0.000000,0.250000,0,0);}
.m81_c00304{transform:matrix(0.321397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321397,0.000000,0.000000,0.250000,0,0);}
.mac_c00304{transform:matrix(0.321687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321687,0.000000,0.000000,0.250000,0,0);}
.m7_c00304{transform:matrix(0.322340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322340,0.000000,0.000000,0.250000,0,0);}
.m63_c00304{transform:matrix(0.322341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322341,0.000000,0.000000,0.250000,0,0);}
.m6d_c00304{transform:matrix(0.322462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322462,0.000000,0.000000,0.250000,0,0);}
.ma_c00304{transform:matrix(0.324062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324062,0.000000,0.000000,0.250000,0,0);}
.m8_c00304{transform:matrix(0.324460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324460,0.000000,0.000000,0.250000,0,0);}
.m4e_c00304{transform:matrix(0.324958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324958,0.000000,0.000000,0.250000,0,0);}
.m11_c00304{transform:matrix(0.325073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325073,0.000000,0.000000,0.250000,0,0);}
.m93_c00304{transform:matrix(0.326205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326205,0.000000,0.000000,0.250000,0,0);}
.m55_c00304{transform:matrix(0.326211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326211,0.000000,0.000000,0.250000,0,0);}
.m73_c00304{transform:matrix(0.326427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326427,0.000000,0.000000,0.250000,0,0);}
.ma3_c00304{transform:matrix(0.326518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326518,0.000000,0.000000,0.250000,0,0);}
.m83_c00304{transform:matrix(0.327008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327008,0.000000,0.000000,0.250000,0,0);}
.m2d_c00304{transform:matrix(0.328058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328058,0.000000,0.000000,0.250000,0,0);}
.maf_c00304{transform:matrix(0.328336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328336,0.000000,0.000000,0.250000,0,0);}
.m2a_c00304{transform:matrix(0.328490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328490,0.000000,0.000000,0.250000,0,0);}
.m86_c00304{transform:matrix(0.329592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329592,0.000000,0.000000,0.250000,0,0);}
.m89_c00304{transform:matrix(0.329927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329927,0.000000,0.000000,0.250000,0,0);}
.m92_c00304{transform:matrix(0.330223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330223,0.000000,0.000000,0.250000,0,0);}
.m3_c00304{transform:matrix(0.330792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330792,0.000000,0.000000,0.250000,0,0);}
.m5b_c00304{transform:matrix(0.331223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331223,0.000000,0.000000,0.250000,0,0);}
.m44_c00304{transform:matrix(0.331446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331446,0.000000,0.000000,0.250000,0,0);}
.m15_c00304{transform:matrix(0.331587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331587,0.000000,0.000000,0.250000,0,0);}
.m2_c00304{transform:matrix(0.331865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331865,0.000000,0.000000,0.250000,0,0);}
.m1e_c00304{transform:matrix(0.334133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334133,0.000000,0.000000,0.250000,0,0);}
.m39_c00304{transform:matrix(0.334631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334631,0.000000,0.000000,0.250000,0,0);}
.m8e_c00304{transform:matrix(0.334886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334886,0.000000,0.000000,0.250000,0,0);}
.m58_c00304{transform:matrix(0.337647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337647,0.000000,0.000000,0.250000,0,0);}
.m74_c00304{transform:matrix(0.338429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338429,0.000000,0.000000,0.250000,0,0);}
.mb_c00304{transform:matrix(0.338562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338562,0.000000,0.000000,0.250000,0,0);}
.ma1_c00304{transform:matrix(0.338675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338675,0.000000,0.000000,0.250000,0,0);}
.mb1_c00304{transform:matrix(0.338875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338875,0.000000,0.000000,0.250000,0,0);}
.m21_c00304{transform:matrix(0.340723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340723,0.000000,0.000000,0.250000,0,0);}
.m78_c00304{transform:matrix(0.341260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341260,0.000000,0.000000,0.250000,0,0);}
.m46_c00304{transform:matrix(0.342749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342749,0.000000,0.000000,0.250000,0,0);}
.m9c_c00304{transform:matrix(0.344795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344795,0.000000,0.000000,0.250000,0,0);}
.m4c_c00304{transform:matrix(0.347203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347203,0.000000,0.000000,0.250000,0,0);}
.m6b_c00304{transform:matrix(0.348797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348797,0.000000,0.000000,0.250000,0,0);}
.m3a_c00304{transform:matrix(0.348849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348849,0.000000,0.000000,0.250000,0,0);}
.md_c00304{transform:matrix(0.349542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349542,0.000000,0.000000,0.250000,0,0);}
.m70_c00304{transform:matrix(0.350723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350723,0.000000,0.000000,0.250000,0,0);}
.m30_c00304{transform:matrix(0.350832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350832,0.000000,0.000000,0.250000,0,0);}
.m5c_c00304{transform:matrix(0.352505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352505,0.000000,0.000000,0.250000,0,0);}
.mb7_c00304{transform:matrix(0.352827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352827,0.000000,0.000000,0.250000,0,0);}
.m9a_c00304{transform:matrix(0.353238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353238,0.000000,0.000000,0.250000,0,0);}
.m20_c00304{transform:matrix(0.354027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354027,0.000000,0.000000,0.250000,0,0);}
.m3b_c00304{transform:matrix(0.354394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354394,0.000000,0.000000,0.250000,0,0);}
.m4_c00304{transform:matrix(0.354951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354951,0.000000,0.000000,0.250000,0,0);}
.m32_c00304{transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);}
.m24_c00304{transform:matrix(0.356409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356409,0.000000,0.000000,0.250000,0,0);}
.m99_c00304{transform:matrix(0.356629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356629,0.000000,0.000000,0.250000,0,0);}
.m88_c00304{transform:matrix(0.357716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357716,0.000000,0.000000,0.250000,0,0);}
.m96_c00304{transform:matrix(0.357873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357873,0.000000,0.000000,0.250000,0,0);}
.m29_c00304{transform:matrix(0.360928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360928,0.000000,0.000000,0.250000,0,0);}
.m5a_c00304{transform:matrix(0.361525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361525,0.000000,0.000000,0.250000,0,0);}
.m5f_c00304{transform:matrix(0.361559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361559,0.000000,0.000000,0.250000,0,0);}
.m49_c00304{transform:matrix(0.363537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363537,0.000000,0.000000,0.250000,0,0);}
.m64_c00304{transform:matrix(0.367576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367576,0.000000,0.000000,0.250000,0,0);}
.m7a_c00304{transform:matrix(0.368951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368951,0.000000,0.000000,0.250000,0,0);}
.m47_c00304{transform:matrix(0.369101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369101,0.000000,0.000000,0.250000,0,0);}
.ma8_c00304{transform:matrix(0.369339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369339,0.000000,0.000000,0.250000,0,0);}
.mab_c00304{transform:matrix(0.372051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372051,0.000000,0.000000,0.250000,0,0);}
.m1a_c00304{transform:matrix(0.376714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376714,0.000000,0.000000,0.250000,0,0);}
.mc0_c00304{transform:matrix(0.377292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377292,0.000000,0.000000,0.250000,0,0);}
.m42_c00304{transform:matrix(0.378969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378969,0.000000,0.000000,0.250000,0,0);}
.m19_c00304{transform:matrix(0.385503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385503,0.000000,0.000000,0.250000,0,0);}
.m5_c00304{transform:matrix(0.387438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387438,0.000000,0.000000,0.250000,0,0);}
.m3d_c00304{transform:matrix(0.387664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387664,0.000000,0.000000,0.250000,0,0);}
.m23_c00304{transform:matrix(0.393224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393224,0.000000,0.000000,0.250000,0,0);}
.m98_c00304{transform:matrix(0.396197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396197,0.000000,0.000000,0.250000,0,0);}
.m80_c00304{transform:matrix(0.396601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396601,0.000000,0.000000,0.250000,0,0);}
.mb9_c00304{transform:matrix(0.398571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398571,0.000000,0.000000,0.250000,0,0);}
.m27_c00304{transform:matrix(0.412604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412604,0.000000,0.000000,0.250000,0,0);}
.m94_c00304{transform:matrix(0.415968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415968,0.000000,0.000000,0.250000,0,0);}
.m48_c00304{transform:matrix(0.430162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430162,0.000000,0.000000,0.250000,0,0);}
.m9d_c00304{transform:matrix(0.459011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459011,0.000000,0.000000,0.250000,0,0);}
.m9f_c00304{transform:matrix(0.469068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469068,0.000000,0.000000,0.250000,0,0);}
.v1_c00304{vertical-align:-17.123040px;}
.v0_c00304{vertical-align:0.000000px;}
.ls6_c00304{letter-spacing:-2.529450px;}
.ls7_c00304{letter-spacing:-0.888921px;}
.ls13_c00304{letter-spacing:-0.620930px;}
.ls2_c00304{letter-spacing:0.000000px;}
.ls9_c00304{letter-spacing:1.647756px;}
.ls8_c00304{letter-spacing:1.712799px;}
.ls0_c00304{letter-spacing:1.760616px;}
.lsf_c00304{letter-spacing:2.160873px;}
.ls11_c00304{letter-spacing:3.118500px;}
.lse_c00304{letter-spacing:3.177900px;}
.ls10_c00304{letter-spacing:3.405610px;}
.lsb_c00304{letter-spacing:3.564000px;}
.ls12_c00304{letter-spacing:3.583810px;}
.ls4_c00304{letter-spacing:3.613500px;}
.ls3_c00304{letter-spacing:3.880810px;}
.lsc_c00304{letter-spacing:3.999610px;}
.lsd_c00304{letter-spacing:4.197610px;}
.ls1_c00304{letter-spacing:26.021160px;}
.ls5_c00304{letter-spacing:29.937798px;}
.lsa_c00304{letter-spacing:57.024198px;}
.sc__c00304{text-shadow:none;}
.sc0_c00304{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00304{-webkit-text-stroke:0px transparent;}
.sc0_c00304{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00304{word-spacing:-18.067500px;}
.ws2_c00304{word-spacing:-17.178579px;}
.ws6_c00304{word-spacing:0.000000px;}
.ws3_c00304{word-spacing:1.375110px;}
.ws5_c00304{word-spacing:3.035340px;}
.ws4_c00304{word-spacing:4.480740px;}
.ws1_c00304{word-spacing:5.492520px;}
._d_c00304{margin-left:-26.523090px;}
._15_c00304{margin-left:-8.672400px;}
._b_c00304{margin-left:-7.227000px;}
._1_c00304{margin-left:-5.492520px;}
._12_c00304{margin-left:-3.685770px;}
._6_c00304{margin-left:-2.456190px;}
._c_c00304{width:3.685770px;}
._4_c00304{width:6.186312px;}
._11_c00304{width:7.805160px;}
._a_c00304{width:8.816940px;}
._3_c00304{width:9.973260px;}
._10_c00304{width:11.707740px;}
._16_c00304{width:16.476570px;}
._5_c00304{width:20.886030px;}
._7_c00304{width:22.548240px;}
._e_c00304{width:23.993640px;}
._18_c00304{width:32.354541px;}
._f_c00304{width:34.608420px;}
._2_c00304{width:37.696032px;}
._9_c00304{width:39.098070px;}
._0_c00304{width:40.326660px;}
._14_c00304{width:42.567030px;}
._13_c00304{width:43.949070px;}
._8_c00304{width:46.325070px;}
._17_c00304{width:375.705000px;}
.fc0_c00304{color:transparent;}
.fs5_c00304{font-size:23.166000px;}
.fs1_c00304{font-size:27.720000px;}
.fs15_c00304{font-size:28.512000px;}
.fs14_c00304{font-size:29.700000px;}
.fs6_c00304{font-size:29.937798px;}
.fs0_c00304{font-size:33.660000px;}
.fsa_c00304{font-size:42.174000px;}
.fs10_c00304{font-size:56.628000px;}
.fs9_c00304{font-size:57.024198px;}
.fsd_c00304{font-size:60.192000px;}
.fs12_c00304{font-size:62.370000px;}
.fs16_c00304{font-size:62.568000px;}
.fse_c00304{font-size:63.558000px;}
.fs4_c00304{font-size:66.528000px;}
.fs11_c00304{font-size:68.112198px;}
.fs8_c00304{font-size:70.884000px;}
.fs7_c00304{font-size:71.280000px;}
.fs13_c00304{font-size:71.676198px;}
.fs3_c00304{font-size:72.270000px;}
.fsf_c00304{font-size:76.032198px;}
.fs2_c00304{font-size:77.616198px;}
.fsb_c00304{font-size:79.992198px;}
.fsc_c00304{font-size:83.952198px;}
.y0_c00304{bottom:0.000000px;}
.y1_c00304{bottom:76.500000px;}
.y26_c00304{bottom:139.259385px;}
.y25_c00304{bottom:161.717535px;}
.y24_c00304{bottom:169.201935px;}
.y23_c00304{bottom:205.911135px;}
.y22_c00304{bottom:239.412735px;}
.y21_c00304{bottom:304.272585px;}
.y20_c00304{bottom:336.353535px;}
.y1f_c00304{bottom:360.945135px;}
.y1e_c00304{bottom:367.716735px;}
.y1c_c00304{bottom:368.429535px;}
.y1d_c00304{bottom:380.190735px;}
.y1b_c00304{bottom:400.500585px;}
.y1a_c00304{bottom:433.289385px;}
.y19_c00304{bottom:465.013935px;}
.y18_c00304{bottom:497.446335px;}
.y17_c00304{bottom:523.463535px;}
.y16_c00304{bottom:530.947935px;}
.y15_c00304{bottom:563.380335px;}
.y14_c00304{bottom:593.669385px;}
.y13_c00304{bottom:621.829935px;}
.y12_c00304{bottom:628.957935px;}
.y11_c00304{bottom:662.098185px;}
.yf_c00304{bottom:694.530585px;}
.y10_c00304{bottom:698.812335px;}
.ye_c00304{bottom:727.319385px;}
.yd_c00304{bottom:759.400335px;}
.yc_c00304{bottom:791.832735px;}
.yb_c00304{bottom:823.552335px;}
.ya_c00304{bottom:856.341135px;}
.y9_c00304{bottom:872.730585px;}
.y8_c00304{bottom:883.422585px;}
.y7_c00304{bottom:895.901535px;}
.y6_c00304{bottom:922.270185px;}
.y5_c00304{bottom:1048.435785px;}
.y4_c00304{bottom:1075.522185px;}
.y3_c00304{bottom:1079.086185px;}
.y2_c00304{bottom:1095.836985px;}
.h8_c00304{height:19.938573px;}
.h7_c00304{height:24.161414px;}
.h3_c00304{height:28.911094px;}
.h16_c00304{height:29.932031px;}
.h2_c00304{height:33.035449px;}
.ha_c00304{height:37.978116px;}
.hc_c00304{height:41.391475px;}
.h12_c00304{height:59.061234px;}
.hf_c00304{height:62.778375px;}
.h14_c00304{height:65.049961px;}
.h17_c00304{height:65.256469px;}
.h10_c00304{height:66.289008px;}
.h13_c00304{height:66.848397px;}
.h6_c00304{height:69.386625px;}
.h9_c00304{height:69.568770px;}
.hb_c00304{height:69.957422px;}
.h5_c00304{height:70.929053px;}
.h15_c00304{height:72.236168px;}
.h4_c00304{height:76.176054px;}
.hd_c00304{height:78.507968px;}
.h11_c00304{height:79.299207px;}
.he_c00304{height:82.394491px;}
.h1_c00304{height:1110.000000px;}
.h0_c00304{height:1263.000000px;}
.w1_c00304{width:775.500000px;}
.w0_c00304{width:892.500000px;}
.x0_c00304{left:0.000000px;}
.x1_c00304{left:58.500000px;}
.x18_c00304{left:102.654735px;}
.x6_c00304{left:104.481285px;}
.x49_c00304{left:108.550185px;}
.x38_c00304{left:116.178135px;}
.x5b_c00304{left:118.390785px;}
.x19_c00304{left:125.766285px;}
.x53_c00304{left:137.007735px;}
.x1a_c00304{left:147.571035px;}
.x48_c00304{left:149.120385px;}
.x39_c00304{left:153.600135px;}
.x6f_c00304{left:156.778035px;}
.x11_c00304{left:158.475885px;}
.x3a_c00304{left:160.015335px;}
.x7_c00304{left:169.657935px;}
.x1b_c00304{left:181.552785px;}
.x1c_c00304{left:192.353685px;}
.x54_c00304{left:193.620885px;}
.x57_c00304{left:203.654535px;}
.x42_c00304{left:206.906685px;}
.x2b_c00304{left:214.212885px;}
.x1d_c00304{left:215.361285px;}
.x33_c00304{left:225.335535px;}
.x4b_c00304{left:226.419585px;}
.x12_c00304{left:236.443335px;}
.x75_c00304{left:238.066935px;}
.x5c_c00304{left:247.288785px;}
.x13_c00304{left:259.530135px;}
.x1e_c00304{left:269.039085px;}
.x67_c00304{left:270.439935px;}
.x8_c00304{left:280.636935px;}
.x55_c00304{left:282.027885px;}
.x6b_c00304{left:284.423685px;}
.x60_c00304{left:290.447835px;}
.x4c_c00304{left:291.541785px;}
.x1f_c00304{left:292.754535px;}
.x59_c00304{left:303.080235px;}
.x3b_c00304{left:304.119735px;}
.x76_c00304{left:305.421585px;}
.x20_c00304{left:312.866385px;}
.x34_c00304{left:314.831535px;}
.x70_c00304{left:324.662235px;}
.x9_c00304{left:326.167035px;}
.x14_c00304{left:336.265035px;}
.x4d_c00304{left:337.601535px;}
.x21_c00304{left:347.140185px;}
.xa_c00304{left:357.411435px;}
.x22_c00304{left:358.643985px;}
.x3c_c00304{left:367.910385px;}
.x15_c00304{left:370.103235px;}
.x77_c00304{left:371.355585px;}
.x61_c00304{left:372.494085px;}
.xb_c00304{left:380.186385px;}
.x28_c00304{left:390.200235px;}
.x23_c00304{left:391.764435px;}
.x4e_c00304{left:402.520785px;}
.x68_c00304{left:405.317535px;}
.x5d_c00304{left:412.336635px;}
.x35_c00304{left:413.371185px;}
.xc_c00304{left:424.939335px;}
.x78_c00304{left:427.691535px;}
.x62_c00304{left:434.740335px;}
.x29_c00304{left:436.027335px;}
.x43_c00304{left:438.071685px;}
.x71_c00304{left:445.481835px;}
.x3d_c00304{left:446.714385px;}
.x16_c00304{left:449.189385px;}
.x5_c00304{left:455.713485px;}
.x2_c00304{left:457.470735px;}
.x44_c00304{left:458.802285px;}
.x2c_c00304{left:468.449835px;}
.x4f_c00304{left:478.825035px;}
.x3e_c00304{left:480.493185px;}
.x50_c00304{left:484.527435px;}
.x2a_c00304{left:490.531785px;}
.x6c_c00304{left:491.932635px;}
.x51_c00304{left:493.219635px;}
.x72_c00304{left:500.684235px;}
.x2d_c00304{left:502.352385px;}
.x52_c00304{left:513.583935px;}
.x45_c00304{left:523.211685px;}
.x24_c00304{left:534.913485px;}
.x3f_c00304{left:537.482535px;}
.x2e_c00304{left:546.466785px;}
.x3_c00304{left:555.861885px;}
.xd_c00304{left:557.059785px;}
.x79_c00304{left:558.945735px;}
.x63_c00304{left:564.380835px;}
.x2f_c00304{left:567.826035px;}
.x69_c00304{left:568.910085px;}
.xe_c00304{left:589.497135px;}
.x73_c00304{left:590.635635px;}
.x5a_c00304{left:591.704835px;}
.x30_c00304{left:601.099935px;}
.x40_c00304{left:611.539485px;}
.x5f_c00304{left:612.618585px;}
.x7a_c00304{left:614.148135px;}
.x46_c00304{left:623.493735px;}
.x25_c00304{left:633.824385px;}
.x56_c00304{left:634.893585px;}
.x41_c00304{left:636.329085px;}
.x6d_c00304{left:641.482035px;}
.x6e_c00304{left:644.308485px;}
.x36_c00304{left:655.911285px;}
.x64_c00304{left:656.960685px;}
.x26_c00304{left:666.563685px;}
.x31_c00304{left:667.697235px;}
.x6a_c00304{left:669.211935px;}
.x4_c00304{left:678.671385px;}
.x17_c00304{left:688.155585px;}
.x37_c00304{left:689.393085px;}
.x74_c00304{left:693.169935px;}
.x27_c00304{left:699.273285px;}
.x47_c00304{left:700.792935px;}
.x58_c00304{left:701.867085px;}
.x4a_c00304{left:704.480685px;}
.xf_c00304{left:708.247635px;}
.x10_c00304{left:709.777185px;}
.x32_c00304{left:711.450285px;}
.x5e_c00304{left:720.573135px;}
.x65_c00304{left:722.563035px;}
.x66_c00304{left:726.473535px;}
@media print{
.v1_c00304{vertical-align:-15.220480pt;}
.v0_c00304{vertical-align:0.000000pt;}
.ls6_c00304{letter-spacing:-2.248400pt;}
.ls7_c00304{letter-spacing:-0.790152pt;}
.ls13_c00304{letter-spacing:-0.551937pt;}
.ls2_c00304{letter-spacing:0.000000pt;}
.ls9_c00304{letter-spacing:1.464672pt;}
.ls8_c00304{letter-spacing:1.522488pt;}
.ls0_c00304{letter-spacing:1.564992pt;}
.lsf_c00304{letter-spacing:1.920776pt;}
.ls11_c00304{letter-spacing:2.772000pt;}
.lse_c00304{letter-spacing:2.824800pt;}
.ls10_c00304{letter-spacing:3.027209pt;}
.lsb_c00304{letter-spacing:3.168000pt;}
.ls12_c00304{letter-spacing:3.185609pt;}
.ls4_c00304{letter-spacing:3.212000pt;}
.ls3_c00304{letter-spacing:3.449609pt;}
.lsc_c00304{letter-spacing:3.555209pt;}
.lsd_c00304{letter-spacing:3.731209pt;}
.ls1_c00304{letter-spacing:23.129920pt;}
.ls5_c00304{letter-spacing:26.611376pt;}
.lsa_c00304{letter-spacing:50.688176pt;}
.ws0_c00304{word-spacing:-16.060000pt;}
.ws2_c00304{word-spacing:-15.269848pt;}
.ws6_c00304{word-spacing:0.000000pt;}
.ws3_c00304{word-spacing:1.222320pt;}
.ws5_c00304{word-spacing:2.698080pt;}
.ws4_c00304{word-spacing:3.982880pt;}
.ws1_c00304{word-spacing:4.882240pt;}
._d_c00304{margin-left:-23.576080pt;}
._15_c00304{margin-left:-7.708800pt;}
._b_c00304{margin-left:-6.424000pt;}
._1_c00304{margin-left:-4.882240pt;}
._12_c00304{margin-left:-3.276240pt;}
._6_c00304{margin-left:-2.183280pt;}
._c_c00304{width:3.276240pt;}
._4_c00304{width:5.498944pt;}
._11_c00304{width:6.937920pt;}
._a_c00304{width:7.837280pt;}
._3_c00304{width:8.865120pt;}
._10_c00304{width:10.406880pt;}
._16_c00304{width:14.645840pt;}
._5_c00304{width:18.565360pt;}
._7_c00304{width:20.042880pt;}
._e_c00304{width:21.327680pt;}
._18_c00304{width:28.759592pt;}
._f_c00304{width:30.763040pt;}
._2_c00304{width:33.507584pt;}
._9_c00304{width:34.753840pt;}
._0_c00304{width:35.845920pt;}
._14_c00304{width:37.837360pt;}
._13_c00304{width:39.065840pt;}
._8_c00304{width:41.177840pt;}
._17_c00304{width:333.960000pt;}
.fs5_c00304{font-size:20.592000pt;}
.fs1_c00304{font-size:24.640000pt;}
.fs15_c00304{font-size:25.344000pt;}
.fs14_c00304{font-size:26.400000pt;}
.fs6_c00304{font-size:26.611376pt;}
.fs0_c00304{font-size:29.920000pt;}
.fsa_c00304{font-size:37.488000pt;}
.fs10_c00304{font-size:50.336000pt;}
.fs9_c00304{font-size:50.688176pt;}
.fsd_c00304{font-size:53.504000pt;}
.fs12_c00304{font-size:55.440000pt;}
.fs16_c00304{font-size:55.616000pt;}
.fse_c00304{font-size:56.496000pt;}
.fs4_c00304{font-size:59.136000pt;}
.fs11_c00304{font-size:60.544176pt;}
.fs8_c00304{font-size:63.008000pt;}
.fs7_c00304{font-size:63.360000pt;}
.fs13_c00304{font-size:63.712176pt;}
.fs3_c00304{font-size:64.240000pt;}
.fsf_c00304{font-size:67.584176pt;}
.fs2_c00304{font-size:68.992176pt;}
.fsb_c00304{font-size:71.104176pt;}
.fsc_c00304{font-size:74.624176pt;}
.y0_c00304{bottom:0.000000pt;}
.y1_c00304{bottom:68.000000pt;}
.y26_c00304{bottom:123.786120pt;}
.y25_c00304{bottom:143.748920pt;}
.y24_c00304{bottom:150.401720pt;}
.y23_c00304{bottom:183.032120pt;}
.y22_c00304{bottom:212.811320pt;}
.y21_c00304{bottom:270.464520pt;}
.y20_c00304{bottom:298.980920pt;}
.y1f_c00304{bottom:320.840120pt;}
.y1e_c00304{bottom:326.859320pt;}
.y1c_c00304{bottom:327.492920pt;}
.y1d_c00304{bottom:337.947320pt;}
.y1b_c00304{bottom:356.000520pt;}
.y1a_c00304{bottom:385.146120pt;}
.y19_c00304{bottom:413.345720pt;}
.y18_c00304{bottom:442.174520pt;}
.y17_c00304{bottom:465.300920pt;}
.y16_c00304{bottom:471.953720pt;}
.y15_c00304{bottom:500.782520pt;}
.y14_c00304{bottom:527.706120pt;}
.y13_c00304{bottom:552.737720pt;}
.y12_c00304{bottom:559.073720pt;}
.y11_c00304{bottom:588.531720pt;}
.yf_c00304{bottom:617.360520pt;}
.y10_c00304{bottom:621.166520pt;}
.ye_c00304{bottom:646.506120pt;}
.yd_c00304{bottom:675.022520pt;}
.yc_c00304{bottom:703.851320pt;}
.yb_c00304{bottom:732.046520pt;}
.ya_c00304{bottom:761.192120pt;}
.y9_c00304{bottom:775.760520pt;}
.y8_c00304{bottom:785.264520pt;}
.y7_c00304{bottom:796.356920pt;}
.y6_c00304{bottom:819.795720pt;}
.y5_c00304{bottom:931.942920pt;}
.y4_c00304{bottom:956.019720pt;}
.y3_c00304{bottom:959.187720pt;}
.y2_c00304{bottom:974.077320pt;}
.h8_c00304{height:17.723176pt;}
.h7_c00304{height:21.476813pt;}
.h3_c00304{height:25.698750pt;}
.h16_c00304{height:26.606250pt;}
.h2_c00304{height:29.364844pt;}
.ha_c00304{height:33.758325pt;}
.hc_c00304{height:36.792422pt;}
.h12_c00304{height:52.498875pt;}
.hf_c00304{height:55.803000pt;}
.h14_c00304{height:57.822188pt;}
.h17_c00304{height:58.005750pt;}
.h10_c00304{height:58.923563pt;}
.h13_c00304{height:59.420798pt;}
.h6_c00304{height:61.677000pt;}
.h9_c00304{height:61.838906pt;}
.hb_c00304{height:62.184375pt;}
.h5_c00304{height:63.048047pt;}
.h15_c00304{height:64.209927pt;}
.h4_c00304{height:67.712048pt;}
.hd_c00304{height:69.784860pt;}
.h11_c00304{height:70.488184pt;}
.he_c00304{height:73.239548pt;}
.h1_c00304{height:986.666667pt;}
.h0_c00304{height:1122.666667pt;}
.w1_c00304{width:689.333333pt;}
.w0_c00304{width:793.333333pt;}
.x0_c00304{left:0.000000pt;}
.x1_c00304{left:52.000000pt;}
.x18_c00304{left:91.248653pt;}
.x6_c00304{left:92.872253pt;}
.x49_c00304{left:96.489053pt;}
.x38_c00304{left:103.269453pt;}
.x5b_c00304{left:105.236253pt;}
.x19_c00304{left:111.792253pt;}
.x53_c00304{left:121.784653pt;}
.x1a_c00304{left:131.174253pt;}
.x48_c00304{left:132.551453pt;}
.x39_c00304{left:136.533453pt;}
.x6f_c00304{left:139.358253pt;}
.x11_c00304{left:140.867453pt;}
.x3a_c00304{left:142.235853pt;}
.x7_c00304{left:150.807053pt;}
.x1b_c00304{left:161.380253pt;}
.x1c_c00304{left:170.981053pt;}
.x54_c00304{left:172.107453pt;}
.x57_c00304{left:181.026253pt;}
.x42_c00304{left:183.917053pt;}
.x2b_c00304{left:190.411453pt;}
.x1d_c00304{left:191.432253pt;}
.x33_c00304{left:200.298253pt;}
.x4b_c00304{left:201.261853pt;}
.x12_c00304{left:210.171853pt;}
.x75_c00304{left:211.615053pt;}
.x5c_c00304{left:219.812253pt;}
.x13_c00304{left:230.693453pt;}
.x1e_c00304{left:239.145853pt;}
.x67_c00304{left:240.391053pt;}
.x8_c00304{left:249.455053pt;}
.x55_c00304{left:250.691453pt;}
.x6b_c00304{left:252.821053pt;}
.x60_c00304{left:258.175853pt;}
.x4c_c00304{left:259.148253pt;}
.x1f_c00304{left:260.226253pt;}
.x59_c00304{left:269.404653pt;}
.x3b_c00304{left:270.328653pt;}
.x76_c00304{left:271.485853pt;}
.x20_c00304{left:278.103453pt;}
.x34_c00304{left:279.850253pt;}
.x70_c00304{left:288.588653pt;}
.x9_c00304{left:289.926253pt;}
.x14_c00304{left:298.902253pt;}
.x4d_c00304{left:300.090253pt;}
.x21_c00304{left:308.569053pt;}
.xa_c00304{left:317.699053pt;}
.x22_c00304{left:318.794653pt;}
.x3c_c00304{left:327.031453pt;}
.x15_c00304{left:328.980653pt;}
.x77_c00304{left:330.093853pt;}
.x61_c00304{left:331.105853pt;}
.xb_c00304{left:337.943453pt;}
.x28_c00304{left:346.844653pt;}
.x23_c00304{left:348.235053pt;}
.x4e_c00304{left:357.796253pt;}
.x68_c00304{left:360.282253pt;}
.x5d_c00304{left:366.521453pt;}
.x35_c00304{left:367.441053pt;}
.xc_c00304{left:377.723853pt;}
.x78_c00304{left:380.170253pt;}
.x62_c00304{left:386.435853pt;}
.x29_c00304{left:387.579853pt;}
.x43_c00304{left:389.397053pt;}
.x71_c00304{left:395.983853pt;}
.x3d_c00304{left:397.079453pt;}
.x16_c00304{left:399.279453pt;}
.x5_c00304{left:405.078653pt;}
.x2_c00304{left:406.640653pt;}
.x44_c00304{left:407.824253pt;}
.x2c_c00304{left:416.399853pt;}
.x4f_c00304{left:425.622253pt;}
.x3e_c00304{left:427.105053pt;}
.x50_c00304{left:430.691053pt;}
.x2a_c00304{left:436.028253pt;}
.x6c_c00304{left:437.273453pt;}
.x51_c00304{left:438.417453pt;}
.x72_c00304{left:445.052653pt;}
.x2d_c00304{left:446.535453pt;}
.x52_c00304{left:456.519053pt;}
.x45_c00304{left:465.077053pt;}
.x24_c00304{left:475.478653pt;}
.x3f_c00304{left:477.762253pt;}
.x2e_c00304{left:485.748253pt;}
.x3_c00304{left:494.099453pt;}
.xd_c00304{left:495.164253pt;}
.x79_c00304{left:496.840653pt;}
.x63_c00304{left:501.671853pt;}
.x2f_c00304{left:504.734253pt;}
.x69_c00304{left:505.697853pt;}
.xe_c00304{left:523.997453pt;}
.x73_c00304{left:525.009453pt;}
.x5a_c00304{left:525.959853pt;}
.x30_c00304{left:534.311053pt;}
.x40_c00304{left:543.590653pt;}
.x5f_c00304{left:544.549853pt;}
.x7a_c00304{left:545.909453pt;}
.x46_c00304{left:554.216653pt;}
.x25_c00304{left:563.399453pt;}
.x56_c00304{left:564.349853pt;}
.x41_c00304{left:565.625853pt;}
.x6d_c00304{left:570.206253pt;}
.x6e_c00304{left:572.718653pt;}
.x36_c00304{left:583.032253pt;}
.x64_c00304{left:583.965053pt;}
.x26_c00304{left:592.501053pt;}
.x31_c00304{left:593.508653pt;}
.x6a_c00304{left:594.855053pt;}
.x4_c00304{left:603.263453pt;}
.x17_c00304{left:611.693853pt;}
.x37_c00304{left:612.793853pt;}
.x74_c00304{left:616.151053pt;}
.x27_c00304{left:621.576253pt;}
.x47_c00304{left:622.927053pt;}
.x58_c00304{left:623.881853pt;}
.x4a_c00304{left:626.205053pt;}
.xf_c00304{left:629.553453pt;}
.x10_c00304{left:630.913053pt;}
.x32_c00304{left:632.400253pt;}
.x5e_c00304{left:640.509453pt;}
.x65_c00304{left:642.278253pt;}
.x66_c00304{left:645.754253pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_adeb5272581c565dc54e0b39.woff2')format("woff");}.ff1_c00305{font-family:ff1_c00305;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00305;src:url('chunks/assets/font_bf73ad59fde01d4b588c5f54.woff2')format("woff");}.ff2_c00305{font-family:ff2_c00305;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00305;src:url('chunks/assets/font_a71c1899f6a98e282d0c6139.woff2')format("woff");}.ff3_c00305{font-family:ff3_c00305;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00305;src:url('chunks/assets/font_c50192f8949a9a6979142885.woff2')format("woff");}.ff4_c00305{font-family:ff4_c00305;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00305;src:url('chunks/assets/font_0e7d3e4b10f25986a0f32685.woff2')format("woff");}.ff5_c00305{font-family:ff5_c00305;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00305;src:url('chunks/assets/font_95d0746c4afe4f32e6b02202.woff2')format("woff");}.ff6_c00305{font-family:ff6_c00305;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mac_c00305{transform:matrix(0.034723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.034723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.034723,0.000000,0.000000,0.250000,0,0);}
.m41_c00305{transform:matrix(0.058824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.058824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.058824,0.000000,0.000000,0.250000,0,0);}
.m3f_c00305{transform:matrix(0.073530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073530,0.000000,0.000000,0.250000,0,0);}
.mab_c00305{transform:matrix(0.084490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084490,0.000000,0.000000,0.250000,0,0);}
.m4d_c00305{transform:matrix(0.086408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086408,0.000000,0.000000,0.250000,0,0);}
.m8b_c00305{transform:matrix(0.110831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110831,0.000000,0.000000,0.250000,0,0);}
.mad_c00305{transform:matrix(0.112556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112556,0.000000,0.000000,0.250000,0,0);}
.m40_c00305{transform:matrix(0.117648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117648,0.000000,0.000000,0.250000,0,0);}
.md1_c00305{transform:matrix(0.118962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118962,0.000000,0.000000,0.250000,0,0);}
.m27_c00305{transform:matrix(0.126126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126126,0.000000,0.000000,0.250000,0,0);}
.m31_c00305{transform:matrix(0.129757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129757,0.000000,0.000000,0.250000,0,0);}
.maa_c00305{transform:matrix(0.142361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142361,0.000000,0.000000,0.250000,0,0);}
.md3_c00305{transform:matrix(0.145834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145834,0.000000,0.000000,0.250000,0,0);}
.ma9_c00305{transform:matrix(0.152777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152777,0.000000,0.000000,0.250000,0,0);}
.m9e_c00305{transform:matrix(0.155195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155195,0.000000,0.000000,0.250000,0,0);}
.mdb_c00305{transform:matrix(0.162119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162119,0.000000,0.000000,0.250000,0,0);}
.mc_c00305{transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);}
.m5f_c00305{transform:matrix(0.172868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172868,0.000000,0.000000,0.250000,0,0);}
.m73_c00305{transform:matrix(0.176276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176276,0.000000,0.000000,0.250000,0,0);}
.md_c00305{transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);}
.m64_c00305{transform:matrix(0.183954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183954,0.000000,0.000000,0.250000,0,0);}
.me_c00305{transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);}
.mc9_c00305{transform:matrix(0.194243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194243,0.000000,0.000000,0.250000,0,0);}
.m5a_c00305{transform:matrix(0.194819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194819,0.000000,0.000000,0.250000,0,0);}
.m47_c00305{transform:matrix(0.197173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197173,0.000000,0.000000,0.250000,0,0);}
.m93_c00305{transform:matrix(0.206919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206919,0.000000,0.000000,0.250000,0,0);}
.ma8_c00305{transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);}
.m36_c00305{transform:matrix(0.214582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214582,0.000000,0.000000,0.250000,0,0);}
.m6f_c00305{transform:matrix(0.221826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221826,0.000000,0.000000,0.250000,0,0);}
.m35_c00305{transform:matrix(0.230845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230845,0.000000,0.000000,0.250000,0,0);}
.mb5_c00305{transform:matrix(0.235177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235177,0.000000,0.000000,0.250000,0,0);}
.mec_c00305{transform:matrix(0.237145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237145,0.000000,0.000000,0.250000,0,0);}
.m2d_c00305{transform:matrix(0.239211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239211,0.000000,0.000000,0.250000,0,0);}
.mb_c00305{transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);}
.m1_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);}
.m5c_c00305{transform:matrix(0.251569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251569,0.000000,0.000000,0.250000,0,0);}
.m1f_c00305{transform:matrix(0.254916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254916,0.000000,0.000000,0.250000,0,0);}
.m6b_c00305{transform:matrix(0.255647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255647,0.000000,0.000000,0.250000,0,0);}
.m9c_c00305{transform:matrix(0.256363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256363,0.000000,0.000000,0.250000,0,0);}
.m99_c00305{transform:matrix(0.257586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257586,0.000000,0.000000,0.250000,0,0);}
.m3b_c00305{transform:matrix(0.261611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261611,0.000000,0.000000,0.250000,0,0);}
.m26_c00305{transform:matrix(0.261692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261692,0.000000,0.000000,0.250000,0,0);}
.m2b_c00305{transform:matrix(0.264006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264006,0.000000,0.000000,0.250000,0,0);}
.m2a_c00305{transform:matrix(0.266350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266350,0.000000,0.000000,0.250000,0,0);}
.mb1_c00305{transform:matrix(0.266365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266365,0.000000,0.000000,0.250000,0,0);}
.m15_c00305{transform:matrix(0.267346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267346,0.000000,0.000000,0.250000,0,0);}
.m0_c00305{transform:matrix(0.268372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268372,0.000000,0.000000,0.250000,0,0);}
.me6_c00305{transform:matrix(0.268425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268425,0.000000,0.000000,0.250000,0,0);}
.med_c00305{transform:matrix(0.269578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269578,0.000000,0.000000,0.250000,0,0);}
.m9f_c00305{transform:matrix(0.270004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270004,0.000000,0.000000,0.250000,0,0);}
.mc7_c00305{transform:matrix(0.271476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271476,0.000000,0.000000,0.250000,0,0);}
.mbc_c00305{transform:matrix(0.271526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271526,0.000000,0.000000,0.250000,0,0);}
.m6e_c00305{transform:matrix(0.273855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273855,0.000000,0.000000,0.250000,0,0);}
.m87_c00305{transform:matrix(0.273952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273952,0.000000,0.000000,0.250000,0,0);}
.m22_c00305{transform:matrix(0.274196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274196,0.000000,0.000000,0.250000,0,0);}
.m78_c00305{transform:matrix(0.275539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275539,0.000000,0.000000,0.250000,0,0);}
.m3d_c00305{transform:matrix(0.276236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276236,0.000000,0.000000,0.250000,0,0);}
.m30_c00305{transform:matrix(0.276417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276417,0.000000,0.000000,0.250000,0,0);}
.m23_c00305{transform:matrix(0.277295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277295,0.000000,0.000000,0.250000,0,0);}
.me9_c00305{transform:matrix(0.277625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277625,0.000000,0.000000,0.250000,0,0);}
.m8a_c00305{transform:matrix(0.278367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278367,0.000000,0.000000,0.250000,0,0);}
.m7c_c00305{transform:matrix(0.278746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278746,0.000000,0.000000,0.250000,0,0);}
.m8c_c00305{transform:matrix(0.278768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278768,0.000000,0.000000,0.250000,0,0);}
.m52_c00305{transform:matrix(0.278776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278776,0.000000,0.000000,0.250000,0,0);}
.mdc_c00305{transform:matrix(0.278804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278804,0.000000,0.000000,0.250000,0,0);}
.m89_c00305{transform:matrix(0.278950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278950,0.000000,0.000000,0.250000,0,0);}
.ma5_c00305{transform:matrix(0.279485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279485,0.000000,0.000000,0.250000,0,0);}
.m8_c00305{transform:matrix(0.280973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280973,0.000000,0.000000,0.250000,0,0);}
.ma6_c00305{transform:matrix(0.281443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281443,0.000000,0.000000,0.250000,0,0);}
.m21_c00305{transform:matrix(0.281649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281649,0.000000,0.000000,0.250000,0,0);}
.m5_c00305{transform:matrix(0.283338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283338,0.000000,0.000000,0.250000,0,0);}
.mbe_c00305{transform:matrix(0.283339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283339,0.000000,0.000000,0.250000,0,0);}
.m9b_c00305{transform:matrix(0.283597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283597,0.000000,0.000000,0.250000,0,0);}
.md7_c00305{transform:matrix(0.283637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283637,0.000000,0.000000,0.250000,0,0);}
.m24_c00305{transform:matrix(0.283829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283829,0.000000,0.000000,0.250000,0,0);}
.m18_c00305{transform:matrix(0.284007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284007,0.000000,0.000000,0.250000,0,0);}
.md8_c00305{transform:matrix(0.284039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284039,0.000000,0.000000,0.250000,0,0);}
.m59_c00305{transform:matrix(0.284225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284225,0.000000,0.000000,0.250000,0,0);}
.m46_c00305{transform:matrix(0.286468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286468,0.000000,0.000000,0.250000,0,0);}
.m8e_c00305{transform:matrix(0.287156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287156,0.000000,0.000000,0.250000,0,0);}
.m9_c00305{transform:matrix(0.287467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287467,0.000000,0.000000,0.250000,0,0);}
.mc5_c00305{transform:matrix(0.287902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287902,0.000000,0.000000,0.250000,0,0);}
.m25_c00305{transform:matrix(0.288038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288038,0.000000,0.000000,0.250000,0,0);}
.mcd_c00305{transform:matrix(0.288115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288115,0.000000,0.000000,0.250000,0,0);}
.m13_c00305{transform:matrix(0.288255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288255,0.000000,0.000000,0.250000,0,0);}
.m16_c00305{transform:matrix(0.288309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288309,0.000000,0.000000,0.250000,0,0);}
.mb0_c00305{transform:matrix(0.289310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289310,0.000000,0.000000,0.250000,0,0);}
.m6d_c00305{transform:matrix(0.290933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290933,0.000000,0.000000,0.250000,0,0);}
.mea_c00305{transform:matrix(0.291135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291135,0.000000,0.000000,0.250000,0,0);}
.m14_c00305{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);}
.m29_c00305{transform:matrix(0.292037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292037,0.000000,0.000000,0.250000,0,0);}
.m92_c00305{transform:matrix(0.292257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292257,0.000000,0.000000,0.250000,0,0);}
.mc2_c00305{transform:matrix(0.292367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292367,0.000000,0.000000,0.250000,0,0);}
.m4e_c00305{transform:matrix(0.293280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293280,0.000000,0.000000,0.250000,0,0);}
.m7e_c00305{transform:matrix(0.293646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293646,0.000000,0.000000,0.250000,0,0);}
.m56_c00305{transform:matrix(0.293687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293687,0.000000,0.000000,0.250000,0,0);}
.m69_c00305{transform:matrix(0.294298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294298,0.000000,0.000000,0.250000,0,0);}
.m50_c00305{transform:matrix(0.294416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294416,0.000000,0.000000,0.250000,0,0);}
.m19_c00305{transform:matrix(0.294925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294925,0.000000,0.000000,0.250000,0,0);}
.m54_c00305{transform:matrix(0.295120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295120,0.000000,0.000000,0.250000,0,0);}
.m32_c00305{transform:matrix(0.295726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295726,0.000000,0.000000,0.250000,0,0);}
.m71_c00305{transform:matrix(0.296363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296363,0.000000,0.000000,0.250000,0,0);}
.m4b_c00305{transform:matrix(0.296378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296378,0.000000,0.000000,0.250000,0,0);}
.m3_c00305{transform:matrix(0.296408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296408,0.000000,0.000000,0.250000,0,0);}
.m12_c00305{transform:matrix(0.296541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296541,0.000000,0.000000,0.250000,0,0);}
.m58_c00305{transform:matrix(0.297653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297653,0.000000,0.000000,0.250000,0,0);}
.m6_c00305{transform:matrix(0.297978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297978,0.000000,0.000000,0.250000,0,0);}
.m2e_c00305{transform:matrix(0.298096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298096,0.000000,0.000000,0.250000,0,0);}
.me3_c00305{transform:matrix(0.298217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298217,0.000000,0.000000,0.250000,0,0);}
.m9d_c00305{transform:matrix(0.298307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298307,0.000000,0.000000,0.250000,0,0);}
.m3e_c00305{transform:matrix(0.298861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298861,0.000000,0.000000,0.250000,0,0);}
.m55_c00305{transform:matrix(0.299096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299096,0.000000,0.000000,0.250000,0,0);}
.m75_c00305{transform:matrix(0.299231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299231,0.000000,0.000000,0.250000,0,0);}
.m8f_c00305{transform:matrix(0.299768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299768,0.000000,0.000000,0.250000,0,0);}
.m5b_c00305{transform:matrix(0.300251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300251,0.000000,0.000000,0.250000,0,0);}
.ma7_c00305{transform:matrix(0.300431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300431,0.000000,0.000000,0.250000,0,0);}
.m51_c00305{transform:matrix(0.300917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300917,0.000000,0.000000,0.250000,0,0);}
.m11_c00305{transform:matrix(0.302217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302217,0.000000,0.000000,0.250000,0,0);}
.m44_c00305{transform:matrix(0.302404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302404,0.000000,0.000000,0.250000,0,0);}
.m3a_c00305{transform:matrix(0.302883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302883,0.000000,0.000000,0.250000,0,0);}
.mda_c00305{transform:matrix(0.302956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302956,0.000000,0.000000,0.250000,0,0);}
.m68_c00305{transform:matrix(0.303269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303269,0.000000,0.000000,0.250000,0,0);}
.m7a_c00305{transform:matrix(0.303454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303454,0.000000,0.000000,0.250000,0,0);}
.m2f_c00305{transform:matrix(0.303594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303594,0.000000,0.000000,0.250000,0,0);}
.md4_c00305{transform:matrix(0.303616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303616,0.000000,0.000000,0.250000,0,0);}
.m91_c00305{transform:matrix(0.304390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304390,0.000000,0.000000,0.250000,0,0);}
.m74_c00305{transform:matrix(0.304885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304885,0.000000,0.000000,0.250000,0,0);}
.m76_c00305{transform:matrix(0.304970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304970,0.000000,0.000000,0.250000,0,0);}
.mb9_c00305{transform:matrix(0.305450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305450,0.000000,0.000000,0.250000,0,0);}
.m38_c00305{transform:matrix(0.306779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306779,0.000000,0.000000,0.250000,0,0);}
.mb8_c00305{transform:matrix(0.306906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306906,0.000000,0.000000,0.250000,0,0);}
.me5_c00305{transform:matrix(0.307630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307630,0.000000,0.000000,0.250000,0,0);}
.m61_c00305{transform:matrix(0.308173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308173,0.000000,0.000000,0.250000,0,0);}
.me7_c00305{transform:matrix(0.308730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308730,0.000000,0.000000,0.250000,0,0);}
.m70_c00305{transform:matrix(0.308817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308817,0.000000,0.000000,0.250000,0,0);}
.m3c_c00305{transform:matrix(0.309143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309143,0.000000,0.000000,0.250000,0,0);}
.mca_c00305{transform:matrix(0.309738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309738,0.000000,0.000000,0.250000,0,0);}
.mc8_c00305{transform:matrix(0.309779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309779,0.000000,0.000000,0.250000,0,0);}
.m66_c00305{transform:matrix(0.311002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311002,0.000000,0.000000,0.250000,0,0);}
.md6_c00305{transform:matrix(0.311064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311064,0.000000,0.000000,0.250000,0,0);}
.m96_c00305{transform:matrix(0.311289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311289,0.000000,0.000000,0.250000,0,0);}
.m7b_c00305{transform:matrix(0.311630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311630,0.000000,0.000000,0.250000,0,0);}
.mc6_c00305{transform:matrix(0.312213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312213,0.000000,0.000000,0.250000,0,0);}
.me1_c00305{transform:matrix(0.313422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313422,0.000000,0.000000,0.250000,0,0);}
.ma1_c00305{transform:matrix(0.313942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313942,0.000000,0.000000,0.250000,0,0);}
.m79_c00305{transform:matrix(0.314092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314092,0.000000,0.000000,0.250000,0,0);}
.m45_c00305{transform:matrix(0.314115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314115,0.000000,0.000000,0.250000,0,0);}
.mdd_c00305{transform:matrix(0.314136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314136,0.000000,0.000000,0.250000,0,0);}
.m37_c00305{transform:matrix(0.314450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314450,0.000000,0.000000,0.250000,0,0);}
.m80_c00305{transform:matrix(0.315298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315298,0.000000,0.000000,0.250000,0,0);}
.m17_c00305{transform:matrix(0.318991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318991,0.000000,0.000000,0.250000,0,0);}
.m1b_c00305{transform:matrix(0.319409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319409,0.000000,0.000000,0.250000,0,0);}
.maf_c00305{transform:matrix(0.319452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319452,0.000000,0.000000,0.250000,0,0);}
.m62_c00305{transform:matrix(0.319712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319712,0.000000,0.000000,0.250000,0,0);}
.mce_c00305{transform:matrix(0.319893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319893,0.000000,0.000000,0.250000,0,0);}
.m7d_c00305{transform:matrix(0.320001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320001,0.000000,0.000000,0.250000,0,0);}
.m9a_c00305{transform:matrix(0.320203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320203,0.000000,0.000000,0.250000,0,0);}
.m42_c00305{transform:matrix(0.320293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320293,0.000000,0.000000,0.250000,0,0);}
.m2c_c00305{transform:matrix(0.320332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320332,0.000000,0.000000,0.250000,0,0);}
.ma4_c00305{transform:matrix(0.320864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320864,0.000000,0.000000,0.250000,0,0);}
.mb6_c00305{transform:matrix(0.321086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321086,0.000000,0.000000,0.250000,0,0);}
.m65_c00305{transform:matrix(0.321190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321190,0.000000,0.000000,0.250000,0,0);}
.m1c_c00305{transform:matrix(0.321482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321482,0.000000,0.000000,0.250000,0,0);}
.m4f_c00305{transform:matrix(0.322151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322151,0.000000,0.000000,0.250000,0,0);}
.mbb_c00305{transform:matrix(0.322504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322504,0.000000,0.000000,0.250000,0,0);}
.m94_c00305{transform:matrix(0.322793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322793,0.000000,0.000000,0.250000,0,0);}
.m84_c00305{transform:matrix(0.323459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323459,0.000000,0.000000,0.250000,0,0);}
.m88_c00305{transform:matrix(0.324247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324247,0.000000,0.000000,0.250000,0,0);}
.mde_c00305{transform:matrix(0.324584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324584,0.000000,0.000000,0.250000,0,0);}
.me0_c00305{transform:matrix(0.324588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324588,0.000000,0.000000,0.250000,0,0);}
.mb3_c00305{transform:matrix(0.324822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324822,0.000000,0.000000,0.250000,0,0);}
.mef_c00305{transform:matrix(0.324938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324938,0.000000,0.000000,0.250000,0,0);}
.m95_c00305{transform:matrix(0.325384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325384,0.000000,0.000000,0.250000,0,0);}
.me2_c00305{transform:matrix(0.325421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325421,0.000000,0.000000,0.250000,0,0);}
.mc0_c00305{transform:matrix(0.326225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326225,0.000000,0.000000,0.250000,0,0);}
.m28_c00305{transform:matrix(0.326480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326480,0.000000,0.000000,0.250000,0,0);}
.mcf_c00305{transform:matrix(0.326905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326905,0.000000,0.000000,0.250000,0,0);}
.meb_c00305{transform:matrix(0.327097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327097,0.000000,0.000000,0.250000,0,0);}
.m20_c00305{transform:matrix(0.327348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327348,0.000000,0.000000,0.250000,0,0);}
.m98_c00305{transform:matrix(0.328326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328326,0.000000,0.000000,0.250000,0,0);}
.md2_c00305{transform:matrix(0.328536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328536,0.000000,0.000000,0.250000,0,0);}
.mbd_c00305{transform:matrix(0.328744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328744,0.000000,0.000000,0.250000,0,0);}
.mc1_c00305{transform:matrix(0.328974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328974,0.000000,0.000000,0.250000,0,0);}
.m57_c00305{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);}
.m43_c00305{transform:matrix(0.331409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331409,0.000000,0.000000,0.250000,0,0);}
.m5e_c00305{transform:matrix(0.331736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331736,0.000000,0.000000,0.250000,0,0);}
.ma0_c00305{transform:matrix(0.332057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332057,0.000000,0.000000,0.250000,0,0);}
.m60_c00305{transform:matrix(0.332156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332156,0.000000,0.000000,0.250000,0,0);}
.mcc_c00305{transform:matrix(0.332633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332633,0.000000,0.000000,0.250000,0,0);}
.m83_c00305{transform:matrix(0.333207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333207,0.000000,0.000000,0.250000,0,0);}
.md5_c00305{transform:matrix(0.333414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333414,0.000000,0.000000,0.250000,0,0);}
.m2_c00305{transform:matrix(0.333548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333548,0.000000,0.000000,0.250000,0,0);}
.mf_c00305{transform:matrix(0.333709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333709,0.000000,0.000000,0.250000,0,0);}
.mbf_c00305{transform:matrix(0.333797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333797,0.000000,0.000000,0.250000,0,0);}
.m1d_c00305{transform:matrix(0.334092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334092,0.000000,0.000000,0.250000,0,0);}
.mb4_c00305{transform:matrix(0.337810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337810,0.000000,0.000000,0.250000,0,0);}
.ma_c00305{transform:matrix(0.339589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339589,0.000000,0.000000,0.250000,0,0);}
.m39_c00305{transform:matrix(0.341386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341386,0.000000,0.000000,0.250000,0,0);}
.ma3_c00305{transform:matrix(0.342115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342115,0.000000,0.000000,0.250000,0,0);}
.mba_c00305{transform:matrix(0.342231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342231,0.000000,0.000000,0.250000,0,0);}
.ma2_c00305{transform:matrix(0.343250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343250,0.000000,0.000000,0.250000,0,0);}
.m72_c00305{transform:matrix(0.344008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344008,0.000000,0.000000,0.250000,0,0);}
.m6a_c00305{transform:matrix(0.344183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344183,0.000000,0.000000,0.250000,0,0);}
.m7f_c00305{transform:matrix(0.344512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344512,0.000000,0.000000,0.250000,0,0);}
.m4a_c00305{transform:matrix(0.345359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345359,0.000000,0.000000,0.250000,0,0);}
.mc4_c00305{transform:matrix(0.346709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346709,0.000000,0.000000,0.250000,0,0);}
.m86_c00305{transform:matrix(0.348117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348117,0.000000,0.000000,0.250000,0,0);}
.m53_c00305{transform:matrix(0.349052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349052,0.000000,0.000000,0.250000,0,0);}
.m1a_c00305{transform:matrix(0.349135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349135,0.000000,0.000000,0.250000,0,0);}
.m1e_c00305{transform:matrix(0.349507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349507,0.000000,0.000000,0.250000,0,0);}
.m81_c00305{transform:matrix(0.349875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349875,0.000000,0.000000,0.250000,0,0);}
.mb2_c00305{transform:matrix(0.350376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350376,0.000000,0.000000,0.250000,0,0);}
.m7_c00305{transform:matrix(0.351753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351753,0.000000,0.000000,0.250000,0,0);}
.m49_c00305{transform:matrix(0.352058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352058,0.000000,0.000000,0.250000,0,0);}
.m90_c00305{transform:matrix(0.353127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353127,0.000000,0.000000,0.250000,0,0);}
.me4_c00305{transform:matrix(0.356438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356438,0.000000,0.000000,0.250000,0,0);}
.mdf_c00305{transform:matrix(0.356820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356820,0.000000,0.000000,0.250000,0,0);}
.m4c_c00305{transform:matrix(0.358134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358134,0.000000,0.000000,0.250000,0,0);}
.m5d_c00305{transform:matrix(0.358577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358577,0.000000,0.000000,0.250000,0,0);}
.m6c_c00305{transform:matrix(0.359708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359708,0.000000,0.000000,0.250000,0,0);}
.mcb_c00305{transform:matrix(0.360617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360617,0.000000,0.000000,0.250000,0,0);}
.m77_c00305{transform:matrix(0.360709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360709,0.000000,0.000000,0.250000,0,0);}
.mee_c00305{transform:matrix(0.364224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364224,0.000000,0.000000,0.250000,0,0);}
.mae_c00305{transform:matrix(0.365392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365392,0.000000,0.000000,0.250000,0,0);}
.md9_c00305{transform:matrix(0.367050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367050,0.000000,0.000000,0.250000,0,0);}
.me8_c00305{transform:matrix(0.369399,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369399,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369399,0.000000,0.000000,0.250000,0,0);}
.m8d_c00305{transform:matrix(0.375630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375630,0.000000,0.000000,0.250000,0,0);}
.m82_c00305{transform:matrix(0.380886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380886,0.000000,0.000000,0.250000,0,0);}
.m48_c00305{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);}
.m33_c00305{transform:matrix(0.382360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382360,0.000000,0.000000,0.250000,0,0);}
.m67_c00305{transform:matrix(0.385552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385552,0.000000,0.000000,0.250000,0,0);}
.mb7_c00305{transform:matrix(0.397906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397906,0.000000,0.000000,0.250000,0,0);}
.m10_c00305{transform:matrix(0.408565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408565,0.000000,0.000000,0.250000,0,0);}
.mc3_c00305{transform:matrix(0.410059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410059,0.000000,0.000000,0.250000,0,0);}
.m34_c00305{transform:matrix(0.431377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431377,0.000000,0.000000,0.250000,0,0);}
.md0_c00305{transform:matrix(0.438815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438815,0.000000,0.000000,0.250000,0,0);}
.m85_c00305{transform:matrix(0.440996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440996,0.000000,0.000000,0.250000,0,0);}
.m4_c00305{transform:matrix(0.447139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447139,0.000000,0.000000,0.250000,0,0);}
.m63_c00305{transform:matrix(0.456936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456936,0.000000,0.000000,0.250000,0,0);}
.m97_c00305{transform:matrix(0.474279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474279,0.000000,0.000000,0.250000,0,0);}
.v0_c00305{vertical-align:0.000000px;}
.v1_c00305{vertical-align:17.087400px;}
.lsb_c00305{letter-spacing:-2.550240px;}
.ls11_c00305{letter-spacing:-2.506522px;}
.ls10_c00305{letter-spacing:-2.494800px;}
.ls18_c00305{letter-spacing:-2.370067px;}
.ls1a_c00305{letter-spacing:-1.843459px;}
.ls13_c00305{letter-spacing:-1.107533px;}
.lsa_c00305{letter-spacing:-1.041955px;}
.lse_c00305{letter-spacing:-0.451757px;}
.lsf_c00305{letter-spacing:-0.306029px;}
.ls5_c00305{letter-spacing:0.000000px;}
.ls2_c00305{letter-spacing:0.474014px;}
.ls3_c00305{letter-spacing:0.772358px;}
.ls8_c00305{letter-spacing:1.194970px;}
.lsc_c00305{letter-spacing:1.216829px;}
.ls1c_c00305{letter-spacing:1.398989px;}
.ls16_c00305{letter-spacing:2.395810px;}
.ls12_c00305{letter-spacing:2.445310px;}
.ls19_c00305{letter-spacing:2.776118px;}
.ls14_c00305{letter-spacing:3.128400px;}
.ls15_c00305{letter-spacing:3.177900px;}
.ls1b_c00305{letter-spacing:3.614054px;}
.ls6_c00305{letter-spacing:3.643200px;}
.ls4_c00305{letter-spacing:3.999610px;}
.ls0_c00305{letter-spacing:8.743680px;}
.ls1_c00305{letter-spacing:9.982368px;}
.lsd_c00305{letter-spacing:48.470598px;}
.ls7_c00305{letter-spacing:49.896198px;}
.ls17_c00305{letter-spacing:51.321798px;}
.ls9_c00305{letter-spacing:52.747398px;}
.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;}
}
.ws1_c00305{word-spacing:-18.216000px;}
.ws3_c00305{word-spacing:-17.108467px;}
.ws2_c00305{word-spacing:-15.709478px;}
.ws4_c00305{word-spacing:-12.948063px;}
.ws5_c00305{word-spacing:0.000000px;}
.ws0_c00305{word-spacing:4.153248px;}
._8_c00305{margin-left:-34.537140px;}
._7_c00305{margin-left:-4.736160px;}
._b_c00305{margin-left:-1.601424px;}
._4_c00305{width:1.880208px;}
._11_c00305{width:4.065864px;}
._d_c00305{width:6.157008px;}
._10_c00305{width:7.869312px;}
._9_c00305{width:9.909504px;}
._0_c00305{width:12.896928px;}
._6_c00305{width:15.374304px;}
._1_c00305{width:19.964736px;}
._e_c00305{width:22.587048px;}
._5_c00305{width:24.772968px;}
._f_c00305{width:26.230644px;}
._a_c00305{width:30.292416px;}
._12_c00305{width:33.405451px;}
._3_c00305{width:36.135000px;}
._c_c00305{width:38.451600px;}
._13_c00305{width:39.492288px;}
._2_c00305{width:43.033320px;}
._14_c00305{width:516.126600px;}
.fc0_c00305{color:transparent;}
.fs5_c00305{font-size:22.176000px;}
.fs16_c00305{font-size:25.146000px;}
.fs17_c00305{font-size:26.928000px;}
.fs14_c00305{font-size:32.670000px;}
.fs13_c00305{font-size:36.828000px;}
.fs18_c00305{font-size:38.610000px;}
.fs1_c00305{font-size:39.204000px;}
.fs10_c00305{font-size:47.916198px;}
.fsb_c00305{font-size:48.114000px;}
.fs7_c00305{font-size:48.470598px;}
.fsd_c00305{font-size:48.906198px;}
.fs4_c00305{font-size:49.896198px;}
.fs11_c00305{font-size:51.321798px;}
.fs6_c00305{font-size:52.747398px;}
.fse_c00305{font-size:62.568000px;}
.fsf_c00305{font-size:63.558000px;}
.fs12_c00305{font-size:67.716198px;}
.fs19_c00305{font-size:68.112198px;}
.fs3_c00305{font-size:70.884000px;}
.fsc_c00305{font-size:71.280000px;}
.fs2_c00305{font-size:72.864000px;}
.fs15_c00305{font-size:74.448000px;}
.fs9_c00305{font-size:74.844000px;}
.fsa_c00305{font-size:76.824000px;}
.fs1a_c00305{font-size:77.616198px;}
.fs0_c00305{font-size:79.992198px;}
.fs8_c00305{font-size:126.720000px;}
.y0_c00305{bottom:0.000000px;}
.y24_c00305{bottom:69.409935px;}
.y1_c00305{bottom:76.500000px;}
.y1f_c00305{bottom:154.584585px;}
.y1e_c00305{bottom:159.222735px;}
.y1d_c00305{bottom:191.298735px;}
.y1c_c00305{bottom:225.864585px;}
.y1b_c00305{bottom:257.940585px;}
.y1a_c00305{bottom:291.090735px;}
.y19_c00305{bottom:325.661535px;}
.y18_c00305{bottom:358.801785px;}
.y17_c00305{bottom:381.967785px;}
.y15_c00305{bottom:390.526335px;}
.y16_c00305{bottom:392.303385px;}
.y14_c00305{bottom:424.022985px;}
.y13_c00305{bottom:456.460335px;}
.y12_c00305{bottom:488.536335px;}
.y11_c00305{bottom:520.963785px;}
.y10_c00305{bottom:553.396185px;}
.yf_c00305{bottom:585.477135px;}
.ye_c00305{bottom:619.335135px;}
.yd_c00305{bottom:651.406185px;}
.yc_c00305{bottom:684.912735px;}
.yb_c00305{bottom:718.409385px;}
.y23_c00305{bottom:739.436985px;}
.ya_c00305{bottom:753.341535px;}
.y9_c00305{bottom:786.481785px;}
.y7_c00305{bottom:827.472735px;}
.y6_c00305{bottom:856.692585px;}
.y8_c00305{bottom:889.481385px;}
.y5_c00305{bottom:889.842735px;}
.y4_c00305{bottom:922.631535px;}
.y22_c00305{bottom:952.920585px;}
.y21_c00305{bottom:980.724735px;}
.y20_c00305{bottom:1018.141785px;}
.y3_c00305{bottom:1019.210985px;}
.y2_c00305{bottom:1070.176185px;}
.h6_c00305{height:23.128875px;}
.h17_c00305{height:28.085063px;}
.h8_c00305{height:32.281418px;}
.h5_c00305{height:33.230868px;}
.h15_c00305{height:34.073789px;}
.h12_c00305{height:34.180317px;}
.h7_c00305{height:35.129767px;}
.h14_c00305{height:36.144668px;}
.h3_c00305{height:38.476582px;}
.h18_c00305{height:40.269023px;}
.h10_c00305{height:47.027128px;}
.hd_c00305{height:47.998759px;}
.h11_c00305{height:48.970390px;}
.he_c00305{height:65.256469px;}
.hf_c00305{height:66.289008px;}
.h13_c00305{height:66.459745px;}
.hc_c00305{height:69.957422px;}
.h19_c00305{height:71.038894px;}
.h4_c00305{height:71.512031px;}
.h16_c00305{height:73.030289px;}
.ha_c00305{height:73.455293px;}
.hb_c00305{height:77.424188px;}
.h2_c00305{height:78.507968px;}
.h1a_c00305{height:80.951269px;}
.h9_c00305{height:124.368750px;}
.h1_c00305{height:1110.000000px;}
.h0_c00305{height:1263.000000px;}
.w1_c00305{width:781.500000px;}
.w0_c00305{width:892.500000px;}
.x0_c00305{left:0.000000px;}
.x1_c00305{left:55.500000px;}
.x22_c00305{left:90.299835px;}
.x4_c00305{left:92.151135px;}
.x4d_c00305{left:101.838285px;}
.x39_c00305{left:112.223385px;}
.x32_c00305{left:123.053985px;}
.x5e_c00305{left:124.286535px;}
.x3a_c00305{left:134.681535px;}
.x23_c00305{left:135.701235px;}
.x29_c00305{left:145.789335px;}
.x3b_c00305{left:155.976435px;}
.x67_c00305{left:157.070385px;}
.x5_c00305{left:158.189085px;}
.x49_c00305{left:167.816835px;}
.x2a_c00305{left:178.479135px;}
.x17_c00305{left:182.389635px;}
.x56_c00305{left:184.711185px;}
.x18_c00305{left:190.012635px;}
.x33_c00305{left:200.323485px;}
.x6d_c00305{left:201.981735px;}
.x24_c00305{left:211.797585px;}
.x3c_c00305{left:221.846085px;}
.x6_c00305{left:222.855885px;}
.x7_c00305{left:233.483535px;}
.x64_c00305{left:237.859335px;}
.x27_c00305{left:242.759835px;}
.x3d_c00305{left:244.403235px;}
.x34_c00305{left:245.497185px;}
.x8_c00305{left:254.560635px;}
.x51_c00305{left:255.981285px;}
.x19_c00305{left:266.391135px;}
.x4a_c00305{left:269.326485px;}
.x46_c00305{left:277.612785px;}
.x3e_c00305{left:288.898785px;}
.x35_c00305{left:300.016485px;}
.x1a_c00305{left:301.976685px;}
.x2b_c00305{left:310.713435px;}
.x6f_c00305{left:312.114285px;}
.x1b_c00305{left:322.053885px;}
.x5b_c00305{left:331.894485px;}
.x4e_c00305{left:332.968635px;}
.x25_c00305{left:343.997235px;}
.x9_c00305{left:354.550635px;}
.x57_c00305{left:355.921785px;}
.x1c_c00305{left:357.669135px;}
.x4f_c00305{left:365.019885px;}
.x2c_c00305{left:366.143535px;}
.x1d_c00305{left:377.330535px;}
.xa_c00305{left:387.740385px;}
.x3f_c00305{left:397.115685px;}
.x5f_c00305{left:399.026385px;}
.x1e_c00305{left:409.446135px;}
.x52_c00305{left:420.138135px;}
.xb_c00305{left:421.336035px;}
.x68_c00305{left:422.731935px;}
.x2d_c00305{left:431.542935px;}
.x26_c00305{left:433.577385px;}
.x70_c00305{left:439.388685px;}
.xc_c00305{left:442.234935px;}
.x4b_c00305{left:445.343535px;}
.xd_c00305{left:452.758635px;}
.x40_c00305{left:464.316885px;}
.x53_c00305{left:466.633485px;}
.x60_c00305{left:476.023635px;}
.xe_c00305{left:486.047385px;}
.x1f_c00305{left:497.105685px;}
.x61_c00305{left:500.229135px;}
.x58_c00305{left:508.025385px;}
.x36_c00305{left:517.979835px;}
.xf_c00305{left:519.608385px;}
.x20_c00305{left:530.478585px;}
.x4c_c00305{left:540.462735px;}
.x69_c00305{left:541.670535px;}
.x65_c00305{left:543.982185px;}
.x2e_c00305{left:551.991285px;}
.x37_c00305{left:562.856535px;}
.x5c_c00305{left:564.475185px;}
.x6a_c00305{left:566.564085px;}
.x50_c00305{left:573.202035px;}
.x10_c00305{left:574.706835px;}
.x2f_c00305{left:584.884035px;}
.x6e_c00305{left:586.190835px;}
.x59_c00305{left:588.329235px;}
.x47_c00305{left:591.215085px;}
.x3_c00305{left:594.095985px;}
.x54_c00305{left:596.872935px;}
.x55_c00305{left:607.010535px;}
.x62_c00305{left:608.282685px;}
.x41_c00305{left:609.549885px;}
.x11_c00305{left:618.242085px;}
.x21_c00305{left:628.622235px;}
.x42_c00305{left:629.894385px;}
.x43_c00305{left:633.463335px;}
.x12_c00305{left:640.393335px;}
.x6b_c00305{left:650.189385px;}
.x44_c00305{left:651.214035px;}
.x30_c00305{left:661.584285px;}
.x48_c00305{left:662.628735px;}
.x2_c00305{left:664.564185px;}
.x13_c00305{left:668.746935px;}
.x28_c00305{left:672.949485px;}
.x38_c00305{left:682.636635px;}
.x45_c00305{left:683.681085px;}
.x63_c00305{left:685.507635px;}
.x31_c00305{left:695.476935px;}
.x66_c00305{left:700.496235px;}
.x5a_c00305{left:704.377035px;}
.x5d_c00305{left:705.500685px;}
.x14_c00305{left:706.525335px;}
.x15_c00305{left:717.568785px;}
.x16_c00305{left:727.904385px;}
.x6c_c00305{left:747.644985px;}
.x71_c00305{left:771.909885px;}
.x72_c00305{left:774.152235px;}
@media print{
.v0_c00305{vertical-align:0.000000pt;}
.v1_c00305{vertical-align:15.188800pt;}
.lsb_c00305{letter-spacing:-2.266880pt;}
.ls11_c00305{letter-spacing:-2.228019pt;}
.ls10_c00305{letter-spacing:-2.217600pt;}
.ls18_c00305{letter-spacing:-2.106726pt;}
.ls1a_c00305{letter-spacing:-1.638630pt;}
.ls13_c00305{letter-spacing:-0.984474pt;}
.lsa_c00305{letter-spacing:-0.926182pt;}
.lse_c00305{letter-spacing:-0.401562pt;}
.lsf_c00305{letter-spacing:-0.272026pt;}
.ls5_c00305{letter-spacing:0.000000pt;}
.ls2_c00305{letter-spacing:0.421346pt;}
.ls3_c00305{letter-spacing:0.686541pt;}
.ls8_c00305{letter-spacing:1.062195pt;}
.lsc_c00305{letter-spacing:1.081626pt;}
.ls1c_c00305{letter-spacing:1.243546pt;}
.ls16_c00305{letter-spacing:2.129609pt;}
.ls12_c00305{letter-spacing:2.173609pt;}
.ls19_c00305{letter-spacing:2.467661pt;}
.ls14_c00305{letter-spacing:2.780800pt;}
.ls15_c00305{letter-spacing:2.824800pt;}
.ls1b_c00305{letter-spacing:3.212493pt;}
.ls6_c00305{letter-spacing:3.238400pt;}
.ls4_c00305{letter-spacing:3.555209pt;}
.ls0_c00305{letter-spacing:7.772160pt;}
.ls1_c00305{letter-spacing:8.873216pt;}
.lsd_c00305{letter-spacing:43.084976pt;}
.ls7_c00305{letter-spacing:44.352176pt;}
.ls17_c00305{letter-spacing:45.619376pt;}
.ls9_c00305{letter-spacing:46.886576pt;}
.ws1_c00305{word-spacing:-16.192000pt;}
.ws3_c00305{word-spacing:-15.207526pt;}
.ws2_c00305{word-spacing:-13.963981pt;}
.ws4_c00305{word-spacing:-11.509390pt;}
.ws5_c00305{word-spacing:0.000000pt;}
.ws0_c00305{word-spacing:3.691776pt;}
._8_c00305{margin-left:-30.699680pt;}
._7_c00305{margin-left:-4.209920pt;}
._b_c00305{margin-left:-1.423488pt;}
._4_c00305{width:1.671296pt;}
._11_c00305{width:3.614101pt;}
._d_c00305{width:5.472896pt;}
._10_c00305{width:6.994944pt;}
._9_c00305{width:8.808448pt;}
._0_c00305{width:11.463936pt;}
._6_c00305{width:13.666048pt;}
._1_c00305{width:17.746432pt;}
._e_c00305{width:20.077376pt;}
._5_c00305{width:22.020416pt;}
._f_c00305{width:23.316128pt;}
._a_c00305{width:26.926592pt;}
._12_c00305{width:29.693734pt;}
._3_c00305{width:32.120000pt;}
._c_c00305{width:34.179200pt;}
._13_c00305{width:35.104256pt;}
._2_c00305{width:38.251840pt;}
._14_c00305{width:458.779200pt;}
.fs5_c00305{font-size:19.712000pt;}
.fs16_c00305{font-size:22.352000pt;}
.fs17_c00305{font-size:23.936000pt;}
.fs14_c00305{font-size:29.040000pt;}
.fs13_c00305{font-size:32.736000pt;}
.fs18_c00305{font-size:34.320000pt;}
.fs1_c00305{font-size:34.848000pt;}
.fs10_c00305{font-size:42.592176pt;}
.fsb_c00305{font-size:42.768000pt;}
.fs7_c00305{font-size:43.084976pt;}
.fsd_c00305{font-size:43.472176pt;}
.fs4_c00305{font-size:44.352176pt;}
.fs11_c00305{font-size:45.619376pt;}
.fs6_c00305{font-size:46.886576pt;}
.fse_c00305{font-size:55.616000pt;}
.fsf_c00305{font-size:56.496000pt;}
.fs12_c00305{font-size:60.192176pt;}
.fs19_c00305{font-size:60.544176pt;}
.fs3_c00305{font-size:63.008000pt;}
.fsc_c00305{font-size:63.360000pt;}
.fs2_c00305{font-size:64.768000pt;}
.fs15_c00305{font-size:66.176000pt;}
.fs9_c00305{font-size:66.528000pt;}
.fsa_c00305{font-size:68.288000pt;}
.fs1a_c00305{font-size:68.992176pt;}
.fs0_c00305{font-size:71.104176pt;}
.fs8_c00305{font-size:112.640000pt;}
.y0_c00305{bottom:0.000000pt;}
.y24_c00305{bottom:61.697720pt;}
.y1_c00305{bottom:68.000000pt;}
.y1f_c00305{bottom:137.408520pt;}
.y1e_c00305{bottom:141.531320pt;}
.y1d_c00305{bottom:170.043320pt;}
.y1c_c00305{bottom:200.768520pt;}
.y1b_c00305{bottom:229.280520pt;}
.y1a_c00305{bottom:258.747320pt;}
.y19_c00305{bottom:289.476920pt;}
.y18_c00305{bottom:318.934920pt;}
.y17_c00305{bottom:339.526920pt;}
.y15_c00305{bottom:347.134520pt;}
.y16_c00305{bottom:348.714120pt;}
.y14_c00305{bottom:376.909320pt;}
.y13_c00305{bottom:405.742520pt;}
.y12_c00305{bottom:434.254520pt;}
.y11_c00305{bottom:463.078920pt;}
.y10_c00305{bottom:491.907720pt;}
.yf_c00305{bottom:520.424120pt;}
.ye_c00305{bottom:550.520120pt;}
.yd_c00305{bottom:579.027720pt;}
.yc_c00305{bottom:608.811320pt;}
.yb_c00305{bottom:638.586120pt;}
.y23_c00305{bottom:657.277320pt;}
.ya_c00305{bottom:669.636920pt;}
.y9_c00305{bottom:699.094920pt;}
.y7_c00305{bottom:735.531320pt;}
.y6_c00305{bottom:761.504520pt;}
.y8_c00305{bottom:790.650120pt;}
.y5_c00305{bottom:790.971320pt;}
.y4_c00305{bottom:820.116920pt;}
.y22_c00305{bottom:847.040520pt;}
.y21_c00305{bottom:871.755320pt;}
.y20_c00305{bottom:905.014920pt;}
.y3_c00305{bottom:905.965320pt;}
.y2_c00305{bottom:951.267720pt;}
.h6_c00305{height:20.559000pt;}
.h17_c00305{height:24.964500pt;}
.h8_c00305{height:28.694594pt;}
.h5_c00305{height:29.538549pt;}
.h15_c00305{height:30.287813pt;}
.h12_c00305{height:30.382504pt;}
.h7_c00305{height:31.226460pt;}
.h14_c00305{height:32.128594pt;}
.h3_c00305{height:34.201406pt;}
.h18_c00305{height:35.794688pt;}
.h10_c00305{height:41.801891pt;}
.hd_c00305{height:42.665563pt;}
.h11_c00305{height:43.529235pt;}
.he_c00305{height:58.005750pt;}
.hf_c00305{height:58.923563pt;}
.h13_c00305{height:59.075329pt;}
.hc_c00305{height:62.184375pt;}
.h19_c00305{height:63.145684pt;}
.h4_c00305{height:63.566250pt;}
.h16_c00305{height:64.915813pt;}
.ha_c00305{height:65.293594pt;}
.hb_c00305{height:68.821500pt;}
.h2_c00305{height:69.784860pt;}
.h1a_c00305{height:71.956684pt;}
.h9_c00305{height:110.550000pt;}
.h1_c00305{height:986.666667pt;}
.h0_c00305{height:1122.666667pt;}
.w1_c00305{width:694.666667pt;}
.w0_c00305{width:793.333333pt;}
.x0_c00305{left:0.000000pt;}
.x1_c00305{left:49.333333pt;}
.x22_c00305{left:80.266520pt;}
.x4_c00305{left:81.912120pt;}
.x4d_c00305{left:90.522920pt;}
.x39_c00305{left:99.754120pt;}
.x32_c00305{left:109.381320pt;}
.x5e_c00305{left:110.476920pt;}
.x3a_c00305{left:119.716920pt;}
.x23_c00305{left:120.623320pt;}
.x29_c00305{left:129.590520pt;}
.x3b_c00305{left:138.645720pt;}
.x67_c00305{left:139.618120pt;}
.x5_c00305{left:140.612520pt;}
.x49_c00305{left:149.170520pt;}
.x2a_c00305{left:158.648120pt;}
.x17_c00305{left:162.124120pt;}
.x56_c00305{left:164.187720pt;}
.x18_c00305{left:168.900120pt;}
.x33_c00305{left:178.065320pt;}
.x6d_c00305{left:179.539320pt;}
.x24_c00305{left:188.264520pt;}
.x3c_c00305{left:197.196520pt;}
.x6_c00305{left:198.094120pt;}
.x7_c00305{left:207.540920pt;}
.x64_c00305{left:211.430520pt;}
.x27_c00305{left:215.786520pt;}
.x3d_c00305{left:217.247320pt;}
.x34_c00305{left:218.219720pt;}
.x8_c00305{left:226.276120pt;}
.x51_c00305{left:227.538920pt;}
.x19_c00305{left:236.792120pt;}
.x4a_c00305{left:239.401320pt;}
.x46_c00305{left:246.766920pt;}
.x3e_c00305{left:256.798920pt;}
.x35_c00305{left:266.681320pt;}
.x1a_c00305{left:268.423720pt;}
.x2b_c00305{left:276.189720pt;}
.x6f_c00305{left:277.434920pt;}
.x1b_c00305{left:286.270120pt;}
.x5b_c00305{left:295.017320pt;}
.x4e_c00305{left:295.972120pt;}
.x25_c00305{left:305.775320pt;}
.x9_c00305{left:315.156120pt;}
.x57_c00305{left:316.374920pt;}
.x1c_c00305{left:317.928120pt;}
.x4f_c00305{left:324.462120pt;}
.x2c_c00305{left:325.460920pt;}
.x1d_c00305{left:335.404920pt;}
.xa_c00305{left:344.658120pt;}
.x3f_c00305{left:352.991720pt;}
.x5f_c00305{left:354.690120pt;}
.x1e_c00305{left:363.952120pt;}
.x52_c00305{left:373.456120pt;}
.xb_c00305{left:374.520920pt;}
.x68_c00305{left:375.761720pt;}
.x2d_c00305{left:383.593720pt;}
.x26_c00305{left:385.402120pt;}
.x70_c00305{left:390.567720pt;}
.xc_c00305{left:393.097720pt;}
.x4b_c00305{left:395.860920pt;}
.xd_c00305{left:402.452120pt;}
.x40_c00305{left:412.726120pt;}
.x53_c00305{left:414.785320pt;}
.x60_c00305{left:423.132120pt;}
.xe_c00305{left:432.042120pt;}
.x1f_c00305{left:441.871720pt;}
.x61_c00305{left:444.648120pt;}
.x58_c00305{left:451.578120pt;}
.x36_c00305{left:460.426520pt;}
.xf_c00305{left:461.874120pt;}
.x20_c00305{left:471.536520pt;}
.x4c_c00305{left:480.411320pt;}
.x69_c00305{left:481.484920pt;}
.x65_c00305{left:483.539720pt;}
.x2e_c00305{left:490.658920pt;}
.x37_c00305{left:500.316920pt;}
.x5c_c00305{left:501.755720pt;}
.x6a_c00305{left:503.612520pt;}
.x50_c00305{left:509.512920pt;}
.x10_c00305{left:510.850520pt;}
.x2f_c00305{left:519.896920pt;}
.x6e_c00305{left:521.058520pt;}
.x59_c00305{left:522.959320pt;}
.x47_c00305{left:525.524520pt;}
.x3_c00305{left:528.085320pt;}
.x54_c00305{left:530.553720pt;}
.x55_c00305{left:539.564920pt;}
.x62_c00305{left:540.695720pt;}
.x41_c00305{left:541.822120pt;}
.x11_c00305{left:549.548520pt;}
.x21_c00305{left:558.775320pt;}
.x42_c00305{left:559.906120pt;}
.x43_c00305{left:563.078520pt;}
.x12_c00305{left:569.238520pt;}
.x6b_c00305{left:577.946120pt;}
.x44_c00305{left:578.856920pt;}
.x30_c00305{left:588.074920pt;}
.x48_c00305{left:589.003320pt;}
.x2_c00305{left:590.723720pt;}
.x13_c00305{left:594.441720pt;}
.x28_c00305{left:598.177320pt;}
.x38_c00305{left:606.788120pt;}
.x45_c00305{left:607.716520pt;}
.x63_c00305{left:609.340120pt;}
.x31_c00305{left:618.201720pt;}
.x66_c00305{left:622.663320pt;}
.x5a_c00305{left:626.112920pt;}
.x5d_c00305{left:627.111720pt;}
.x14_c00305{left:628.022520pt;}
.x15_c00305{left:637.838920pt;}
.x16_c00305{left:647.026120pt;}
.x6c_c00305{left:664.573320pt;}
.x71_c00305{left:686.142120pt;}
.x72_c00305{left:688.135320pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a57590f30169825e5ebb7a57.woff2')format("woff");}.ff1_c00306{font-family:ff1_c00306;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00306;src:url('chunks/assets/font_59e067259c6745164357bf5a.woff2')format("woff");}.ff2_c00306{font-family:ff2_c00306;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00306;src:url('chunks/assets/font_168afbfb8c660cf8367f42dc.woff2')format("woff");}.ff3_c00306{font-family:ff3_c00306;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m24_c00306{transform:matrix(0.114309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114309,0.000000,0.000000,0.250000,0,0);}
.m99_c00306{transform:matrix(0.188405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188405,0.000000,0.000000,0.250000,0,0);}
.m11_c00306{transform:matrix(0.208689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208689,0.000000,0.000000,0.250000,0,0);}
.m55_c00306{transform:matrix(0.209086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209086,0.000000,0.000000,0.250000,0,0);}
.m4e_c00306{transform:matrix(0.216704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216704,0.000000,0.000000,0.250000,0,0);}
.ma2_c00306{transform:matrix(0.226047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226047,0.000000,0.000000,0.250000,0,0);}
.m2d_c00306{transform:matrix(0.231798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231798,0.000000,0.000000,0.250000,0,0);}
.m88_c00306{transform:matrix(0.232318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232318,0.000000,0.000000,0.250000,0,0);}
.m25_c00306{transform:matrix(0.245362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245362,0.000000,0.000000,0.250000,0,0);}
.m71_c00306{transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);}
.m0_c00306{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m98_c00306{transform:matrix(0.250508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250508,0.000000,0.000000,0.250000,0,0);}
.m4d_c00306{transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);}
.m1d_c00306{transform:matrix(0.252369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252369,0.000000,0.000000,0.250000,0,0);}
.m5c_c00306{transform:matrix(0.252461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252461,0.000000,0.000000,0.250000,0,0);}
.m95_c00306{transform:matrix(0.255363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255363,0.000000,0.000000,0.250000,0,0);}
.m6f_c00306{transform:matrix(0.257003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257003,0.000000,0.000000,0.250000,0,0);}
.ma9_c00306{transform:matrix(0.258507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258507,0.000000,0.000000,0.250000,0,0);}
.m2e_c00306{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m59_c00306{transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);}
.m7_c00306{transform:matrix(0.260270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260270,0.000000,0.000000,0.250000,0,0);}
.m5e_c00306{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m97_c00306{transform:matrix(0.261836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261836,0.000000,0.000000,0.250000,0,0);}
.m13_c00306{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m31_c00306{transform:matrix(0.263381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263381,0.000000,0.000000,0.250000,0,0);}
.m7b_c00306{transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);}
.m46_c00306{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m84_c00306{transform:matrix(0.266625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266625,0.000000,0.000000,0.250000,0,0);}
.ma0_c00306{transform:matrix(0.267255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267255,0.000000,0.000000,0.250000,0,0);}
.m2c_c00306{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m28_c00306{transform:matrix(0.268484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268484,0.000000,0.000000,0.250000,0,0);}
.m9d_c00306{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.m39_c00306{transform:matrix(0.268624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268624,0.000000,0.000000,0.250000,0,0);}
.m65_c00306{transform:matrix(0.269646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269646,0.000000,0.000000,0.250000,0,0);}
.mf_c00306{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m7f_c00306{transform:matrix(0.271169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271169,0.000000,0.000000,0.250000,0,0);}
.ma1_c00306{transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);}
.maa_c00306{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m6d_c00306{transform:matrix(0.273113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273113,0.000000,0.000000,0.250000,0,0);}
.m8f_c00306{transform:matrix(0.273448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273448,0.000000,0.000000,0.250000,0,0);}
.ma4_c00306{transform:matrix(0.273493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273493,0.000000,0.000000,0.250000,0,0);}
.ma7_c00306{transform:matrix(0.274585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274585,0.000000,0.000000,0.250000,0,0);}
.m86_c00306{transform:matrix(0.275544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275544,0.000000,0.000000,0.250000,0,0);}
.m4c_c00306{transform:matrix(0.276026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276026,0.000000,0.000000,0.250000,0,0);}
.m9e_c00306{transform:matrix(0.276786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276786,0.000000,0.000000,0.250000,0,0);}
.m6b_c00306{transform:matrix(0.277168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277168,0.000000,0.000000,0.250000,0,0);}
.m23_c00306{transform:matrix(0.277406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277406,0.000000,0.000000,0.250000,0,0);}
.m1c_c00306{transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);}
.m63_c00306{transform:matrix(0.278002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278002,0.000000,0.000000,0.250000,0,0);}
.m6_c00306{transform:matrix(0.278275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278275,0.000000,0.000000,0.250000,0,0);}
.m79_c00306{transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);}
.m54_c00306{transform:matrix(0.278673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278673,0.000000,0.000000,0.250000,0,0);}
.m1f_c00306{transform:matrix(0.278808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278808,0.000000,0.000000,0.250000,0,0);}
.ma3_c00306{transform:matrix(0.279948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279948,0.000000,0.000000,0.250000,0,0);}
.ma_c00306{transform:matrix(0.280848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280848,0.000000,0.000000,0.250000,0,0);}
.mc_c00306{transform:matrix(0.282467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282467,0.000000,0.000000,0.250000,0,0);}
.m5_c00306{transform:matrix(0.282468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282468,0.000000,0.000000,0.250000,0,0);}
.m2f_c00306{transform:matrix(0.282643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282643,0.000000,0.000000,0.250000,0,0);}
.m77_c00306{transform:matrix(0.283070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283070,0.000000,0.000000,0.250000,0,0);}
.m3e_c00306{transform:matrix(0.283330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283330,0.000000,0.000000,0.250000,0,0);}
.m72_c00306{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m1e_c00306{transform:matrix(0.284752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284752,0.000000,0.000000,0.250000,0,0);}
.m81_c00306{transform:matrix(0.284807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284807,0.000000,0.000000,0.250000,0,0);}
.m27_c00306{transform:matrix(0.285047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285047,0.000000,0.000000,0.250000,0,0);}
.m3f_c00306{transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);}
.mab_c00306{transform:matrix(0.285638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285638,0.000000,0.000000,0.250000,0,0);}
.ma5_c00306{transform:matrix(0.285749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285749,0.000000,0.000000,0.250000,0,0);}
.m83_c00306{transform:matrix(0.285890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285890,0.000000,0.000000,0.250000,0,0);}
.m92_c00306{transform:matrix(0.286241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286241,0.000000,0.000000,0.250000,0,0);}
.m4a_c00306{transform:matrix(0.286764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286764,0.000000,0.000000,0.250000,0,0);}
.m9c_c00306{transform:matrix(0.286828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286828,0.000000,0.000000,0.250000,0,0);}
.m35_c00306{transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);}
.m75_c00306{transform:matrix(0.287440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287440,0.000000,0.000000,0.250000,0,0);}
.m9f_c00306{transform:matrix(0.287794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287794,0.000000,0.000000,0.250000,0,0);}
.m3d_c00306{transform:matrix(0.288484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288484,0.000000,0.000000,0.250000,0,0);}
.m18_c00306{transform:matrix(0.288485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288485,0.000000,0.000000,0.250000,0,0);}
.m62_c00306{transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);}
.m33_c00306{transform:matrix(0.288712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288712,0.000000,0.000000,0.250000,0,0);}
.m9a_c00306{transform:matrix(0.289100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289100,0.000000,0.000000,0.250000,0,0);}
.m68_c00306{transform:matrix(0.289530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289530,0.000000,0.000000,0.250000,0,0);}
.m70_c00306{transform:matrix(0.289578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289578,0.000000,0.000000,0.250000,0,0);}
.ma8_c00306{transform:matrix(0.290239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290239,0.000000,0.000000,0.250000,0,0);}
.m3a_c00306{transform:matrix(0.291091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291091,0.000000,0.000000,0.250000,0,0);}
.m20_c00306{transform:matrix(0.291242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291242,0.000000,0.000000,0.250000,0,0);}
.m42_c00306{transform:matrix(0.291326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291326,0.000000,0.000000,0.250000,0,0);}
.m47_c00306{transform:matrix(0.291647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291647,0.000000,0.000000,0.250000,0,0);}
.m32_c00306{transform:matrix(0.291687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291687,0.000000,0.000000,0.250000,0,0);}
.m52_c00306{transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);}
.m41_c00306{transform:matrix(0.292165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292165,0.000000,0.000000,0.250000,0,0);}
.m8e_c00306{transform:matrix(0.292247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292247,0.000000,0.000000,0.250000,0,0);}
.m1_c00306{transform:matrix(0.294689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294689,0.000000,0.000000,0.250000,0,0);}
.m78_c00306{transform:matrix(0.295013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295013,0.000000,0.000000,0.250000,0,0);}
.m49_c00306{transform:matrix(0.295220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295220,0.000000,0.000000,0.250000,0,0);}
.m56_c00306{transform:matrix(0.296568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296568,0.000000,0.000000,0.250000,0,0);}
.m76_c00306{transform:matrix(0.296877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296877,0.000000,0.000000,0.250000,0,0);}
.m17_c00306{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m10_c00306{transform:matrix(0.297189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297189,0.000000,0.000000,0.250000,0,0);}
.m37_c00306{transform:matrix(0.297251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297251,0.000000,0.000000,0.250000,0,0);}
.m14_c00306{transform:matrix(0.297355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297355,0.000000,0.000000,0.250000,0,0);}
.m8d_c00306{transform:matrix(0.297998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297998,0.000000,0.000000,0.250000,0,0);}
.m69_c00306{transform:matrix(0.299102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299102,0.000000,0.000000,0.250000,0,0);}
.m4f_c00306{transform:matrix(0.299574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299574,0.000000,0.000000,0.250000,0,0);}
.m7e_c00306{transform:matrix(0.300360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300360,0.000000,0.000000,0.250000,0,0);}
.m15_c00306{transform:matrix(0.300569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300569,0.000000,0.000000,0.250000,0,0);}
.m3b_c00306{transform:matrix(0.301169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301169,0.000000,0.000000,0.250000,0,0);}
.m87_c00306{transform:matrix(0.301891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301891,0.000000,0.000000,0.250000,0,0);}
.m67_c00306{transform:matrix(0.302227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302227,0.000000,0.000000,0.250000,0,0);}
.m93_c00306{transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);}
.m50_c00306{transform:matrix(0.303969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303969,0.000000,0.000000,0.250000,0,0);}
.m5f_c00306{transform:matrix(0.304233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304233,0.000000,0.000000,0.250000,0,0);}
.m3_c00306{transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);}
.m61_c00306{transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);}
.m96_c00306{transform:matrix(0.306386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306386,0.000000,0.000000,0.250000,0,0);}
.m9b_c00306{transform:matrix(0.306496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306496,0.000000,0.000000,0.250000,0,0);}
.m60_c00306{transform:matrix(0.306531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306531,0.000000,0.000000,0.250000,0,0);}
.m7a_c00306{transform:matrix(0.307438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307438,0.000000,0.000000,0.250000,0,0);}
.me_c00306{transform:matrix(0.307847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307847,0.000000,0.000000,0.250000,0,0);}
.m73_c00306{transform:matrix(0.308097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308097,0.000000,0.000000,0.250000,0,0);}
.m8a_c00306{transform:matrix(0.308196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308196,0.000000,0.000000,0.250000,0,0);}
.m19_c00306{transform:matrix(0.308566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308566,0.000000,0.000000,0.250000,0,0);}
.m58_c00306{transform:matrix(0.308989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308989,0.000000,0.000000,0.250000,0,0);}
.m1b_c00306{transform:matrix(0.309227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309227,0.000000,0.000000,0.250000,0,0);}
.m80_c00306{transform:matrix(0.310261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310261,0.000000,0.000000,0.250000,0,0);}
.m64_c00306{transform:matrix(0.310470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310470,0.000000,0.000000,0.250000,0,0);}
.m22_c00306{transform:matrix(0.312347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312347,0.000000,0.000000,0.250000,0,0);}
.m26_c00306{transform:matrix(0.312440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312440,0.000000,0.000000,0.250000,0,0);}
.m38_c00306{transform:matrix(0.312639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312639,0.000000,0.000000,0.250000,0,0);}
.m7c_c00306{transform:matrix(0.313434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313434,0.000000,0.000000,0.250000,0,0);}
.m5a_c00306{transform:matrix(0.313924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313924,0.000000,0.000000,0.250000,0,0);}
.m2a_c00306{transform:matrix(0.314120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314120,0.000000,0.000000,0.250000,0,0);}
.m4b_c00306{transform:matrix(0.318852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318852,0.000000,0.000000,0.250000,0,0);}
.m36_c00306{transform:matrix(0.320536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320536,0.000000,0.000000,0.250000,0,0);}
.m34_c00306{transform:matrix(0.321329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321329,0.000000,0.000000,0.250000,0,0);}
.m7d_c00306{transform:matrix(0.321993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321993,0.000000,0.000000,0.250000,0,0);}
.m8_c00306{transform:matrix(0.322213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322213,0.000000,0.000000,0.250000,0,0);}
.mb_c00306{transform:matrix(0.322405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322405,0.000000,0.000000,0.250000,0,0);}
.m43_c00306{transform:matrix(0.323362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323362,0.000000,0.000000,0.250000,0,0);}
.m16_c00306{transform:matrix(0.323503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323503,0.000000,0.000000,0.250000,0,0);}
.m40_c00306{transform:matrix(0.325872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325872,0.000000,0.000000,0.250000,0,0);}
.md_c00306{transform:matrix(0.327297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327297,0.000000,0.000000,0.250000,0,0);}
.m29_c00306{transform:matrix(0.328751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328751,0.000000,0.000000,0.250000,0,0);}
.m2b_c00306{transform:matrix(0.328813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328813,0.000000,0.000000,0.250000,0,0);}
.m66_c00306{transform:matrix(0.329131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329131,0.000000,0.000000,0.250000,0,0);}
.m45_c00306{transform:matrix(0.329405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329405,0.000000,0.000000,0.250000,0,0);}
.m12_c00306{transform:matrix(0.330778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330778,0.000000,0.000000,0.250000,0,0);}
.m48_c00306{transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);}
.m30_c00306{transform:matrix(0.331563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331563,0.000000,0.000000,0.250000,0,0);}
.m21_c00306{transform:matrix(0.334825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334825,0.000000,0.000000,0.250000,0,0);}
.m3c_c00306{transform:matrix(0.335394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335394,0.000000,0.000000,0.250000,0,0);}
.m91_c00306{transform:matrix(0.335804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335804,0.000000,0.000000,0.250000,0,0);}
.m4_c00306{transform:matrix(0.335862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335862,0.000000,0.000000,0.250000,0,0);}
.m51_c00306{transform:matrix(0.336348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336348,0.000000,0.000000,0.250000,0,0);}
.m44_c00306{transform:matrix(0.337019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337019,0.000000,0.000000,0.250000,0,0);}
.m6c_c00306{transform:matrix(0.337661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337661,0.000000,0.000000,0.250000,0,0);}
.m5b_c00306{transform:matrix(0.337909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337909,0.000000,0.000000,0.250000,0,0);}
.m53_c00306{transform:matrix(0.338372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338372,0.000000,0.000000,0.250000,0,0);}
.m90_c00306{transform:matrix(0.339419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339419,0.000000,0.000000,0.250000,0,0);}
.m5d_c00306{transform:matrix(0.343174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343174,0.000000,0.000000,0.250000,0,0);}
.m85_c00306{transform:matrix(0.346239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346239,0.000000,0.000000,0.250000,0,0);}
.m9_c00306{transform:matrix(0.347410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347410,0.000000,0.000000,0.250000,0,0);}
.m8c_c00306{transform:matrix(0.347629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347629,0.000000,0.000000,0.250000,0,0);}
.m94_c00306{transform:matrix(0.349027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349027,0.000000,0.000000,0.250000,0,0);}
.m6e_c00306{transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);}
.m2_c00306{transform:matrix(0.353151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353151,0.000000,0.000000,0.250000,0,0);}
.m82_c00306{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m57_c00306{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m1a_c00306{transform:matrix(0.361640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361640,0.000000,0.000000,0.250000,0,0);}
.m74_c00306{transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);}
.mac_c00306{transform:matrix(0.367381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367381,0.000000,0.000000,0.250000,0,0);}
.ma6_c00306{transform:matrix(0.377735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377735,0.000000,0.000000,0.250000,0,0);}
.m6a_c00306{transform:matrix(0.408896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408896,0.000000,0.000000,0.250000,0,0);}
.m89_c00306{transform:matrix(0.422325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422325,0.000000,0.000000,0.250000,0,0);}
.m8b_c00306{transform:matrix(0.439959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439959,0.000000,0.000000,0.250000,0,0);}
.v1_c00306{vertical-align:-78.408000px;}
.v2_c00306{vertical-align:-7.147008px;}
.v0_c00306{vertical-align:0.000000px;}
.ls9_c00306{letter-spacing:-2.744280px;}
.lsf_c00306{letter-spacing:-2.367922px;}
.ls8_c00306{letter-spacing:-2.148300px;}
.lsc_c00306{letter-spacing:-1.701454px;}
.lsd_c00306{letter-spacing:-0.964418px;}
.ls2_c00306{letter-spacing:-0.831127px;}
.ls3_c00306{letter-spacing:0.000000px;}
.ls11_c00306{letter-spacing:0.533174px;}
.lsb_c00306{letter-spacing:0.933055px;}
.ls12_c00306{letter-spacing:1.082030px;}
.lsa_c00306{letter-spacing:1.599523px;}
.ls7_c00306{letter-spacing:3.069000px;}
.ls13_c00306{letter-spacing:3.112798px;}
.ls6_c00306{letter-spacing:3.455110px;}
.lse_c00306{letter-spacing:3.559723px;}
.ls5_c00306{letter-spacing:3.623400px;}
.ls10_c00306{letter-spacing:3.643200px;}
.ls4_c00306{letter-spacing:3.920400px;}
.ls0_c00306{letter-spacing:20.484618px;}
.ls1_c00306{letter-spacing:41.486104px;}
.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;}
}
.ws6_c00306{word-spacing:-23.161723px;}
.ws2_c00306{word-spacing:-19.602000px;}
.ws5_c00306{word-spacing:-17.900546px;}
.ws1_c00306{word-spacing:-17.275550px;}
.ws7_c00306{word-spacing:-17.234078px;}
.ws8_c00306{word-spacing:0.000000px;}
.ws3_c00306{word-spacing:2.665476px;}
.ws4_c00306{word-spacing:3.763584px;}
.ws0_c00306{word-spacing:7.325499px;}
._2_c00306{margin-left:-23.914440px;}
._12_c00306{margin-left:-11.839608px;}
._a_c00306{margin-left:-9.957816px;}
._1_c00306{margin-left:-7.605972px;}
._5_c00306{margin-left:-4.837239px;}
._11_c00306{margin-left:-1.803384px;}
._6_c00306{width:2.979504px;}
._10_c00306{width:5.505034px;}
._9_c00306{width:6.507864px;}
._8_c00306{width:8.624880px;}
._14_c00306{width:10.036224px;}
._f_c00306{width:11.856478px;}
._c_c00306{width:14.748545px;}
._15_c00306{width:20.856528px;}
._13_c00306{width:22.393325px;}
._4_c00306{width:23.679216px;}
._e_c00306{width:27.834048px;}
._3_c00306{width:29.010960px;}
._b_c00306{width:30.108672px;}
._7_c00306{width:31.833648px;}
._d_c00306{width:34.656336px;}
._0_c00306{width:42.780672px;}
.fc0_c00306{color:transparent;}
.fs1_c00306{font-size:22.176000px;}
.fs9_c00306{font-size:33.264000px;}
.fs7_c00306{font-size:39.600000px;}
.fsb_c00306{font-size:55.836198px;}
.fs6_c00306{font-size:61.380000px;}
.fs5_c00306{font-size:69.102198px;}
.fs8_c00306{font-size:70.884000px;}
.fs4_c00306{font-size:72.468000px;}
.fsa_c00306{font-size:72.864000px;}
.fs2_c00306{font-size:76.824000px;}
.fs3_c00306{font-size:78.408000px;}
.fs0_c00306{font-size:83.952198px;}
.fsc_c00306{font-size:91.872198px;}
.y0_c00306{bottom:0.000000px;}
.y1_c00306{bottom:76.500000px;}
.y18_c00306{bottom:133.197021px;}
.y19_c00306{bottom:133.205535px;}
.y1a_c00306{bottom:134.987535px;}
.y17_c00306{bottom:164.207385px;}
.y16_c00306{bottom:196.644735px;}
.y15_c00306{bottom:230.146335px;}
.y14_c00306{bottom:262.930185px;}
.y13_c00306{bottom:327.438585px;}
.y12_c00306{bottom:361.301535px;}
.y11_c00306{bottom:378.047385px;}
.y10_c00306{bottom:394.090335px;}
.yf_c00306{bottom:426.517785px;}
.ye_c00306{bottom:461.444985px;}
.yd_c00306{bottom:493.525935px;}
.yc_c00306{bottom:558.747135px;}
.yb_c00306{bottom:591.179535px;}
.ya_c00306{bottom:623.250585px;}
.y9_c00306{bottom:655.687935px;}
.y8_c00306{bottom:687.763935px;}
.y7_c00306{bottom:720.191385px;}
.y6_c00306{bottom:733.378185px;}
.y5_c00306{bottom:751.915935px;}
.y1b_c00306{bottom:758.326185px;}
.y4_c00306{bottom:848.143935px;}
.y3_c00306{bottom:1052.712585px;}
.y2_c00306{bottom:1077.304185px;}
.h3_c00306{height:23.128875px;}
.ha_c00306{height:34.693313px;}
.h8_c00306{height:41.301563px;}
.hc_c00306{height:58.235410px;}
.h7_c00306{height:60.241113px;}
.h9_c00306{height:69.568770px;}
.h6_c00306{height:69.642059px;}
.h5_c00306{height:71.123379px;}
.hb_c00306{height:73.433250px;}
.h4_c00306{height:76.953164px;}
.h2_c00306{height:82.394491px;}
.hd_c00306{height:95.819832px;}
.h1_c00306{height:1110.000000px;}
.h0_c00306{height:1263.000000px;}
.w1_c00306{width:781.500000px;}
.w0_c00306{width:892.500000px;}
.x0_c00306{left:0.000000px;}
.x1_c00306{left:55.500000px;}
.x2d_c00306{left:100.155285px;}
.x20_c00306{left:102.160035px;}
.x6d_c00306{left:111.114585px;}
.x49_c00306{left:121.692735px;}
.x1f_c00306{left:122.826285px;}
.x63_c00306{left:132.864885px;}
.x2e_c00306{left:133.884585px;}
.x38_c00306{left:141.566985px;}
.x4a_c00306{left:144.071685px;}
.x5e_c00306{left:153.214335px;}
.x45_c00306{left:154.412235px;}
.x12_c00306{left:155.822985px;}
.x4_c00306{left:157.921785px;}
.x65_c00306{left:165.658635px;}
.x21_c00306{left:166.757535px;}
.x58_c00306{left:176.221935px;}
.x22_c00306{left:177.355485px;}
.x13_c00306{left:189.156285px;}
.x54_c00306{left:197.888085px;}
.x39_c00306{left:199.521585px;}
.x14_c00306{left:201.323385px;}
.x23_c00306{left:210.787785px;}
.x5f_c00306{left:220.865985px;}
.x5_c00306{left:221.895585px;}
.x2f_c00306{left:226.702035px;}
.x51_c00306{left:232.305435px;}
.x6_c00306{left:234.730935px;}
.x15_c00306{left:242.749935px;}
.x24_c00306{left:244.041885px;}
.x42_c00306{left:254.342835px;}
.x16_c00306{left:255.441735px;}
.x60_c00306{left:264.094335px;}
.x66_c00306{left:265.445685px;}
.x7_c00306{left:266.529735px;}
.x46_c00306{left:275.271435px;}
.x3e_c00306{left:277.107885px;}
.x30_c00306{left:287.349435px;}
.x8_c00306{left:288.581985px;}
.x55_c00306{left:298.363185px;}
.x59_c00306{left:308.738385px;}
.x17_c00306{left:310.708485px;}
.x18_c00306{left:321.702435px;}
.x9_c00306{left:332.171685px;}
.x25_c00306{left:333.508185px;}
.x64_c00306{left:342.304335px;}
.x19_c00306{left:344.150685px;}
.x47_c00306{left:345.937635px;}
.x4b_c00306{left:354.852585px;}
.x31_c00306{left:356.976135px;}
.x5a_c00306{left:365.900985px;}
.x52_c00306{left:376.068285px;}
.x3f_c00306{left:387.121635px;}
.xa_c00306{left:398.536335px;}
.x3a_c00306{left:401.545935px;}
.x4c_c00306{left:410.124285px;}
.x67_c00306{left:420.474735px;}
.x1a_c00306{left:431.577585px;}
.x1b_c00306{left:440.497485px;}
.x53_c00306{left:441.739935px;}
.x26_c00306{left:442.893285px;}
.x6e_c00306{left:452.654685px;}
.x32_c00306{left:453.758535px;}
.x1c_c00306{left:463.450635px;}
.x3b_c00306{left:465.044535px;}
.xb_c00306{left:476.256285px;}
.x61_c00306{left:486.042435px;}
.x27_c00306{left:487.126485px;}
.x4d_c00306{left:497.457135px;}
.x43_c00306{left:498.541185px;}
.x69_c00306{left:500.263785px;}
.x48_c00306{left:507.609585px;}
.x28_c00306{left:509.644035px;}
.x3c_c00306{left:520.276635px;}
.x56_c00306{left:529.770735px;}
.xc_c00306{left:530.919135px;}
.x5d_c00306{left:540.388485px;}
.x29_c00306{left:541.987335px;}
.x33_c00306{left:552.877335px;}
.x4e_c00306{left:562.133835px;}
.x6a_c00306{left:563.217885px;}
.x2a_c00306{left:564.475185px;}
.x3d_c00306{left:575.157285px;}
.x68_c00306{left:584.542485px;}
.x2b_c00306{left:586.205685px;}
.xd_c00306{left:597.610485px;}
.x34_c00306{left:608.465835px;}
.x1d_c00306{left:619.741935px;}
.xe_c00306{left:621.132885px;}
.x2c_c00306{left:629.379585px;}
.x35_c00306{left:630.399285px;}
.x4f_c00306{left:640.185435px;}
.x1e_c00306{left:641.259585px;}
.xf_c00306{left:642.264435px;}
.x36_c00306{left:652.684185px;}
.x40_c00306{left:654.570135px;}
.x10_c00306{left:663.628635px;}
.x2_c00306{left:674.191935px;}
.x62_c00306{left:684.878985px;}
.x50_c00306{left:686.344185px;}
.x5b_c00306{left:695.501685px;}
.x3_c00306{left:696.813435px;}
.x6b_c00306{left:706.079835px;}
.x11_c00306{left:708.040035px;}
.x37_c00306{left:718.430085px;}
.x41_c00306{left:728.518185px;}
.x57_c00306{left:729.785385px;}
.x5c_c00306{left:740.853585px;}
.x44_c00306{left:742.388085px;}
.x6c_c00306{left:753.862185px;}
.x6f_c00306{left:770.810985px;}
@media print{
.v1_c00306{vertical-align:-69.696000pt;}
.v2_c00306{vertical-align:-6.352896pt;}
.v0_c00306{vertical-align:0.000000pt;}
.ls9_c00306{letter-spacing:-2.439360pt;}
.lsf_c00306{letter-spacing:-2.104819pt;}
.ls8_c00306{letter-spacing:-1.909600pt;}
.lsc_c00306{letter-spacing:-1.512403pt;}
.lsd_c00306{letter-spacing:-0.857261pt;}
.ls2_c00306{letter-spacing:-0.738779pt;}
.ls3_c00306{letter-spacing:0.000000pt;}
.ls11_c00306{letter-spacing:0.473933pt;}
.lsb_c00306{letter-spacing:0.829382pt;}
.ls12_c00306{letter-spacing:0.961805pt;}
.lsa_c00306{letter-spacing:1.421798pt;}
.ls7_c00306{letter-spacing:2.728000pt;}
.ls13_c00306{letter-spacing:2.766931pt;}
.ls6_c00306{letter-spacing:3.071209pt;}
.lse_c00306{letter-spacing:3.164198pt;}
.ls5_c00306{letter-spacing:3.220800pt;}
.ls10_c00306{letter-spacing:3.238400pt;}
.ls4_c00306{letter-spacing:3.484800pt;}
.ls0_c00306{letter-spacing:18.208549pt;}
.ls1_c00306{letter-spacing:36.876537pt;}
.ws6_c00306{word-spacing:-20.588198pt;}
.ws2_c00306{word-spacing:-17.424000pt;}
.ws5_c00306{word-spacing:-15.911597pt;}
.ws1_c00306{word-spacing:-15.356044pt;}
.ws7_c00306{word-spacing:-15.319181pt;}
.ws8_c00306{word-spacing:0.000000pt;}
.ws3_c00306{word-spacing:2.369312pt;}
.ws4_c00306{word-spacing:3.345408pt;}
.ws0_c00306{word-spacing:6.511555pt;}
._2_c00306{margin-left:-21.257280pt;}
._12_c00306{margin-left:-10.524096pt;}
._a_c00306{margin-left:-8.851392pt;}
._1_c00306{margin-left:-6.760864pt;}
._5_c00306{margin-left:-4.299768pt;}
._11_c00306{margin-left:-1.603008pt;}
._6_c00306{width:2.648448pt;}
._10_c00306{width:4.893363pt;}
._9_c00306{width:5.784768pt;}
._8_c00306{width:7.666560pt;}
._14_c00306{width:8.921088pt;}
._f_c00306{width:10.539091pt;}
._c_c00306{width:13.109818pt;}
._15_c00306{width:18.539136pt;}
._13_c00306{width:19.905178pt;}
._4_c00306{width:21.048192pt;}
._e_c00306{width:24.741376pt;}
._3_c00306{width:25.787520pt;}
._b_c00306{width:26.763264pt;}
._7_c00306{width:28.296576pt;}
._d_c00306{width:30.805632pt;}
._0_c00306{width:38.027264pt;}
.fs1_c00306{font-size:19.712000pt;}
.fs9_c00306{font-size:29.568000pt;}
.fs7_c00306{font-size:35.200000pt;}
.fsb_c00306{font-size:49.632176pt;}
.fs6_c00306{font-size:54.560000pt;}
.fs5_c00306{font-size:61.424176pt;}
.fs8_c00306{font-size:63.008000pt;}
.fs4_c00306{font-size:64.416000pt;}
.fsa_c00306{font-size:64.768000pt;}
.fs2_c00306{font-size:68.288000pt;}
.fs3_c00306{font-size:69.696000pt;}
.fs0_c00306{font-size:74.624176pt;}
.fsc_c00306{font-size:81.664176pt;}
.y0_c00306{bottom:0.000000pt;}
.y1_c00306{bottom:68.000000pt;}
.y18_c00306{bottom:118.397352pt;}
.y19_c00306{bottom:118.404920pt;}
.y1a_c00306{bottom:119.988920pt;}
.y17_c00306{bottom:145.962120pt;}
.y16_c00306{bottom:174.795320pt;}
.y15_c00306{bottom:204.574520pt;}
.y14_c00306{bottom:233.715720pt;}
.y13_c00306{bottom:291.056520pt;}
.y12_c00306{bottom:321.156920pt;}
.y11_c00306{bottom:336.042120pt;}
.y10_c00306{bottom:350.302520pt;}
.yf_c00306{bottom:379.126920pt;}
.ye_c00306{bottom:410.173320pt;}
.yd_c00306{bottom:438.689720pt;}
.yc_c00306{bottom:496.664120pt;}
.yb_c00306{bottom:525.492920pt;}
.ya_c00306{bottom:554.000520pt;}
.y9_c00306{bottom:582.833720pt;}
.y8_c00306{bottom:611.345720pt;}
.y7_c00306{bottom:640.170120pt;}
.y6_c00306{bottom:651.891720pt;}
.y5_c00306{bottom:668.369720pt;}
.y1b_c00306{bottom:674.067720pt;}
.y4_c00306{bottom:753.905720pt;}
.y3_c00306{bottom:935.744520pt;}
.y2_c00306{bottom:957.603720pt;}
.h3_c00306{height:20.559000pt;}
.ha_c00306{height:30.838500pt;}
.h8_c00306{height:36.712500pt;}
.hc_c00306{height:51.764809pt;}
.h7_c00306{height:53.547656pt;}
.h9_c00306{height:61.838906pt;}
.h6_c00306{height:61.904052pt;}
.h5_c00306{height:63.220781pt;}
.hb_c00306{height:65.274000pt;}
.h4_c00306{height:68.402813pt;}
.h2_c00306{height:73.239548pt;}
.hd_c00306{height:85.173184pt;}
.h1_c00306{height:986.666667pt;}
.h0_c00306{height:1122.666667pt;}
.w1_c00306{width:694.666667pt;}
.w0_c00306{width:793.333333pt;}
.x0_c00306{left:0.000000pt;}
.x1_c00306{left:49.333333pt;}
.x2d_c00306{left:89.026920pt;}
.x20_c00306{left:90.808920pt;}
.x6d_c00306{left:98.768520pt;}
.x49_c00306{left:108.171320pt;}
.x1f_c00306{left:109.178920pt;}
.x63_c00306{left:118.102120pt;}
.x2e_c00306{left:119.008520pt;}
.x38_c00306{left:125.837320pt;}
.x4a_c00306{left:128.063720pt;}
.x5e_c00306{left:136.190520pt;}
.x45_c00306{left:137.255320pt;}
.x12_c00306{left:138.509320pt;}
.x4_c00306{left:140.374920pt;}
.x65_c00306{left:147.252120pt;}
.x21_c00306{left:148.228920pt;}
.x58_c00306{left:156.641720pt;}
.x22_c00306{left:157.649320pt;}
.x13_c00306{left:168.138920pt;}
.x54_c00306{left:175.900520pt;}
.x39_c00306{left:177.352520pt;}
.x14_c00306{left:178.954120pt;}
.x23_c00306{left:187.366920pt;}
.x5f_c00306{left:196.325320pt;}
.x5_c00306{left:197.240520pt;}
.x2f_c00306{left:201.512920pt;}
.x51_c00306{left:206.493720pt;}
.x6_c00306{left:208.649720pt;}
.x15_c00306{left:215.777720pt;}
.x24_c00306{left:216.926120pt;}
.x42_c00306{left:226.082520pt;}
.x16_c00306{left:227.059320pt;}
.x60_c00306{left:234.750520pt;}
.x66_c00306{left:235.951720pt;}
.x7_c00306{left:236.915320pt;}
.x46_c00306{left:244.685720pt;}
.x3e_c00306{left:246.318120pt;}
.x30_c00306{left:255.421720pt;}
.x8_c00306{left:256.517320pt;}
.x55_c00306{left:265.211720pt;}
.x59_c00306{left:274.434120pt;}
.x17_c00306{left:276.185320pt;}
.x18_c00306{left:285.957720pt;}
.x9_c00306{left:295.263720pt;}
.x25_c00306{left:296.451720pt;}
.x64_c00306{left:304.270520pt;}
.x19_c00306{left:305.911720pt;}
.x47_c00306{left:307.500120pt;}
.x4b_c00306{left:315.424520pt;}
.x31_c00306{left:317.312120pt;}
.x5a_c00306{left:325.245320pt;}
.x52_c00306{left:334.282920pt;}
.x3f_c00306{left:344.108120pt;}
.xa_c00306{left:354.254520pt;}
.x3a_c00306{left:356.929720pt;}
.x4c_c00306{left:364.554920pt;}
.x67_c00306{left:373.755320pt;}
.x1a_c00306{left:383.624520pt;}
.x1b_c00306{left:391.553320pt;}
.x53_c00306{left:392.657720pt;}
.x26_c00306{left:393.682920pt;}
.x6e_c00306{left:402.359720pt;}
.x32_c00306{left:403.340920pt;}
.x1c_c00306{left:411.956120pt;}
.x3b_c00306{left:413.372920pt;}
.xb_c00306{left:423.338920pt;}
.x61_c00306{left:432.037720pt;}
.x27_c00306{left:433.001320pt;}
.x4d_c00306{left:442.184120pt;}
.x43_c00306{left:443.147720pt;}
.x69_c00306{left:444.678920pt;}
.x48_c00306{left:451.208520pt;}
.x28_c00306{left:453.016920pt;}
.x3c_c00306{left:462.468120pt;}
.x56_c00306{left:470.907320pt;}
.xc_c00306{left:471.928120pt;}
.x5d_c00306{left:480.345320pt;}
.x29_c00306{left:481.766520pt;}
.x33_c00306{left:491.446520pt;}
.x4e_c00306{left:499.674520pt;}
.x6a_c00306{left:500.638120pt;}
.x2a_c00306{left:501.755720pt;}
.x3d_c00306{left:511.250920pt;}
.x68_c00306{left:519.593320pt;}
.x2b_c00306{left:521.071720pt;}
.xd_c00306{left:531.209320pt;}
.x34_c00306{left:540.858520pt;}
.x1d_c00306{left:550.881720pt;}
.xe_c00306{left:552.118120pt;}
.x2c_c00306{left:559.448520pt;}
.x35_c00306{left:560.354920pt;}
.x4f_c00306{left:569.053720pt;}
.x1e_c00306{left:570.008520pt;}
.xf_c00306{left:570.901720pt;}
.x36_c00306{left:580.163720pt;}
.x40_c00306{left:581.840120pt;}
.x10_c00306{left:589.892120pt;}
.x2_c00306{left:599.281720pt;}
.x62_c00306{left:608.781320pt;}
.x50_c00306{left:610.083720pt;}
.x5b_c00306{left:618.223720pt;}
.x3_c00306{left:619.389720pt;}
.x6b_c00306{left:627.626520pt;}
.x11_c00306{left:629.368920pt;}
.x37_c00306{left:638.604520pt;}
.x41_c00306{left:647.571720pt;}
.x57_c00306{left:648.698120pt;}
.x5c_c00306{left:658.536520pt;}
.x44_c00306{left:659.900520pt;}
.x6c_c00306{left:670.099720pt;}
.x6f_c00306{left:685.165320pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_19f397045d14cb25dabb71a6.woff2')format("woff");}.ff1_c00307{font-family:ff1_c00307;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00307;src:url('chunks/assets/font_083fb9c96b2e766ff6f0fec4.woff2')format("woff");}.ff2_c00307{font-family:ff2_c00307;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00307;src:url('chunks/assets/font_7e57debba9b021c5a124efb2.woff2')format("woff");}.ff3_c00307{font-family:ff3_c00307;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00307;src:url('chunks/assets/font_4d05e15d181bd7a3e48dd05b.woff2')format("woff");}.ff4_c00307{font-family:ff4_c00307;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3f_c00307{transform:matrix(0.064103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064103,0.000000,0.000000,0.250000,0,0);}
.m4_c00307{transform:matrix(0.075001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075001,0.000000,0.000000,0.250000,0,0);}
.m3c_c00307{transform:matrix(0.076923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076923,0.000000,0.000000,0.250000,0,0);}
.md5_c00307{transform:matrix(0.083334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083334,0.000000,0.000000,0.250000,0,0);}
.m77_c00307{transform:matrix(0.109563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109563,0.000000,0.000000,0.250000,0,0);}
.m20_c00307{transform:matrix(0.113862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113862,0.000000,0.000000,0.250000,0,0);}
.m5b_c00307{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m2_c00307{transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);}
.m96_c00307{transform:matrix(0.127455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127455,0.000000,0.000000,0.250000,0,0);}
.m81_c00307{transform:matrix(0.130882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130882,0.000000,0.000000,0.250000,0,0);}
.m1f_c00307{transform:matrix(0.134972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134972,0.000000,0.000000,0.250000,0,0);}
.m8f_c00307{transform:matrix(0.145665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145665,0.000000,0.000000,0.250000,0,0);}
.mb9_c00307{transform:matrix(0.147371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147371,0.000000,0.000000,0.250000,0,0);}
.md6_c00307{transform:matrix(0.150640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150640,0.000000,0.000000,0.250000,0,0);}
.m3d_c00307{transform:matrix(0.160256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160256,0.000000,0.000000,0.250000,0,0);}
.m5_c00307{transform:matrix(0.160715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160715,0.000000,0.000000,0.250000,0,0);}
.m3_c00307{transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);}
.m93_c00307{transform:matrix(0.172760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172760,0.000000,0.000000,0.250000,0,0);}
.me2_c00307{transform:matrix(0.174581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174581,0.000000,0.000000,0.250000,0,0);}
.m3e_c00307{transform:matrix(0.179487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179487,0.000000,0.000000,0.250000,0,0);}
.m4b_c00307{transform:matrix(0.179757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179757,0.000000,0.000000,0.250000,0,0);}
.ma6_c00307{transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);}
.m5e_c00307{transform:matrix(0.181519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181519,0.000000,0.000000,0.250000,0,0);}
.m8d_c00307{transform:matrix(0.189878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189878,0.000000,0.000000,0.250000,0,0);}
.m50_c00307{transform:matrix(0.191063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191063,0.000000,0.000000,0.250000,0,0);}
.md2_c00307{transform:matrix(0.194935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194935,0.000000,0.000000,0.250000,0,0);}
.m85_c00307{transform:matrix(0.196918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196918,0.000000,0.000000,0.250000,0,0);}
.m6_c00307{transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);}
.m59_c00307{transform:matrix(0.201346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201346,0.000000,0.000000,0.250000,0,0);}
.me5_c00307{transform:matrix(0.203107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203107,0.000000,0.000000,0.250000,0,0);}
.m3b_c00307{transform:matrix(0.204211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204211,0.000000,0.000000,0.250000,0,0);}
.m83_c00307{transform:matrix(0.205578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205578,0.000000,0.000000,0.250000,0,0);}
.ma7_c00307{transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);}
.mb6_c00307{transform:matrix(0.208709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208709,0.000000,0.000000,0.250000,0,0);}
.m91_c00307{transform:matrix(0.209769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209769,0.000000,0.000000,0.250000,0,0);}
.meb_c00307{transform:matrix(0.210746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210746,0.000000,0.000000,0.250000,0,0);}
.mc5_c00307{transform:matrix(0.217538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217538,0.000000,0.000000,0.250000,0,0);}
.mf0_c00307{transform:matrix(0.218636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218636,0.000000,0.000000,0.250000,0,0);}
.me3_c00307{transform:matrix(0.224555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224555,0.000000,0.000000,0.250000,0,0);}
.m84_c00307{transform:matrix(0.228208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228208,0.000000,0.000000,0.250000,0,0);}
.mc6_c00307{transform:matrix(0.236157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236157,0.000000,0.000000,0.250000,0,0);}
.m6e_c00307{transform:matrix(0.236404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236404,0.000000,0.000000,0.250000,0,0);}
.m5d_c00307{transform:matrix(0.236995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236995,0.000000,0.000000,0.250000,0,0);}
.m4c_c00307{transform:matrix(0.240565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240565,0.000000,0.000000,0.250000,0,0);}
.m89_c00307{transform:matrix(0.244418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244418,0.000000,0.000000,0.250000,0,0);}
.m79_c00307{transform:matrix(0.246966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246966,0.000000,0.000000,0.250000,0,0);}
.m0_c00307{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m63_c00307{transform:matrix(0.250345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250345,0.000000,0.000000,0.250000,0,0);}
.m1_c00307{transform:matrix(0.251903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251903,0.000000,0.000000,0.250000,0,0);}
.m4d_c00307{transform:matrix(0.255517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255517,0.000000,0.000000,0.250000,0,0);}
.mb4_c00307{transform:matrix(0.259844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259844,0.000000,0.000000,0.250000,0,0);}
.m57_c00307{transform:matrix(0.259894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259894,0.000000,0.000000,0.250000,0,0);}
.m51_c00307{transform:matrix(0.259925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259925,0.000000,0.000000,0.250000,0,0);}
.mac_c00307{transform:matrix(0.262453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262453,0.000000,0.000000,0.250000,0,0);}
.m38_c00307{transform:matrix(0.263679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263679,0.000000,0.000000,0.250000,0,0);}
.mc_c00307{transform:matrix(0.263796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263796,0.000000,0.000000,0.250000,0,0);}
.m69_c00307{transform:matrix(0.265872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265872,0.000000,0.000000,0.250000,0,0);}
.m35_c00307{transform:matrix(0.269379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269379,0.000000,0.000000,0.250000,0,0);}
.mec_c00307{transform:matrix(0.269659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269659,0.000000,0.000000,0.250000,0,0);}
.m7e_c00307{transform:matrix(0.270034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270034,0.000000,0.000000,0.250000,0,0);}
.mf_c00307{transform:matrix(0.270118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270118,0.000000,0.000000,0.250000,0,0);}
.me1_c00307{transform:matrix(0.270386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270386,0.000000,0.000000,0.250000,0,0);}
.m7c_c00307{transform:matrix(0.270604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270604,0.000000,0.000000,0.250000,0,0);}
.m9_c00307{transform:matrix(0.271047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271047,0.000000,0.000000,0.250000,0,0);}
.mce_c00307{transform:matrix(0.272328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272328,0.000000,0.000000,0.250000,0,0);}
.m53_c00307{transform:matrix(0.272414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272414,0.000000,0.000000,0.250000,0,0);}
.mdd_c00307{transform:matrix(0.272692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272692,0.000000,0.000000,0.250000,0,0);}
.mb8_c00307{transform:matrix(0.273643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273643,0.000000,0.000000,0.250000,0,0);}
.m75_c00307{transform:matrix(0.274772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274772,0.000000,0.000000,0.250000,0,0);}
.m87_c00307{transform:matrix(0.275056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275056,0.000000,0.000000,0.250000,0,0);}
.m8a_c00307{transform:matrix(0.275059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275059,0.000000,0.000000,0.250000,0,0);}
.m4a_c00307{transform:matrix(0.275115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275115,0.000000,0.000000,0.250000,0,0);}
.m55_c00307{transform:matrix(0.276704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276704,0.000000,0.000000,0.250000,0,0);}
.m60_c00307{transform:matrix(0.278239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278239,0.000000,0.000000,0.250000,0,0);}
.mbc_c00307{transform:matrix(0.280225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280225,0.000000,0.000000,0.250000,0,0);}
.mab_c00307{transform:matrix(0.281859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281859,0.000000,0.000000,0.250000,0,0);}
.md9_c00307{transform:matrix(0.282201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282201,0.000000,0.000000,0.250000,0,0);}
.mcc_c00307{transform:matrix(0.282528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282528,0.000000,0.000000,0.250000,0,0);}
.m54_c00307{transform:matrix(0.282921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282921,0.000000,0.000000,0.250000,0,0);}
.m5c_c00307{transform:matrix(0.283008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283008,0.000000,0.000000,0.250000,0,0);}
.m15_c00307{transform:matrix(0.284151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284151,0.000000,0.000000,0.250000,0,0);}
.m7_c00307{transform:matrix(0.285082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285082,0.000000,0.000000,0.250000,0,0);}
.m17_c00307{transform:matrix(0.285320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285320,0.000000,0.000000,0.250000,0,0);}
.mcb_c00307{transform:matrix(0.286098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286098,0.000000,0.000000,0.250000,0,0);}
.m30_c00307{transform:matrix(0.286928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286928,0.000000,0.000000,0.250000,0,0);}
.m8_c00307{transform:matrix(0.287241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287241,0.000000,0.000000,0.250000,0,0);}
.m78_c00307{transform:matrix(0.287617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287617,0.000000,0.000000,0.250000,0,0);}
.mae_c00307{transform:matrix(0.289594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289594,0.000000,0.000000,0.250000,0,0);}
.m56_c00307{transform:matrix(0.290152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290152,0.000000,0.000000,0.250000,0,0);}
.m21_c00307{transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);}
.m41_c00307{transform:matrix(0.291490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291490,0.000000,0.000000,0.250000,0,0);}
.m6f_c00307{transform:matrix(0.291496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291496,0.000000,0.000000,0.250000,0,0);}
.m94_c00307{transform:matrix(0.292082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292082,0.000000,0.000000,0.250000,0,0);}
.m33_c00307{transform:matrix(0.292280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292280,0.000000,0.000000,0.250000,0,0);}
.m32_c00307{transform:matrix(0.292639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292639,0.000000,0.000000,0.250000,0,0);}
.mc3_c00307{transform:matrix(0.292892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292892,0.000000,0.000000,0.250000,0,0);}
.mb0_c00307{transform:matrix(0.293039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293039,0.000000,0.000000,0.250000,0,0);}
.me_c00307{transform:matrix(0.293295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293295,0.000000,0.000000,0.250000,0,0);}
.m7f_c00307{transform:matrix(0.293798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293798,0.000000,0.000000,0.250000,0,0);}
.m8e_c00307{transform:matrix(0.294192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294192,0.000000,0.000000,0.250000,0,0);}
.m4e_c00307{transform:matrix(0.295787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295787,0.000000,0.000000,0.250000,0,0);}
.mcf_c00307{transform:matrix(0.296197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296197,0.000000,0.000000,0.250000,0,0);}
.m10_c00307{transform:matrix(0.296294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296294,0.000000,0.000000,0.250000,0,0);}
.m8b_c00307{transform:matrix(0.296413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296413,0.000000,0.000000,0.250000,0,0);}
.m99_c00307{transform:matrix(0.296769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296769,0.000000,0.000000,0.250000,0,0);}
.m71_c00307{transform:matrix(0.297321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297321,0.000000,0.000000,0.250000,0,0);}
.m45_c00307{transform:matrix(0.297502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297502,0.000000,0.000000,0.250000,0,0);}
.m39_c00307{transform:matrix(0.297616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297616,0.000000,0.000000,0.250000,0,0);}
.mb7_c00307{transform:matrix(0.297657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297657,0.000000,0.000000,0.250000,0,0);}
.m9c_c00307{transform:matrix(0.298471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298471,0.000000,0.000000,0.250000,0,0);}
.m34_c00307{transform:matrix(0.299046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299046,0.000000,0.000000,0.250000,0,0);}
.m65_c00307{transform:matrix(0.299548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299548,0.000000,0.000000,0.250000,0,0);}
.m25_c00307{transform:matrix(0.299800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299800,0.000000,0.000000,0.250000,0,0);}
.m73_c00307{transform:matrix(0.300625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300625,0.000000,0.000000,0.250000,0,0);}
.md3_c00307{transform:matrix(0.300750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300750,0.000000,0.000000,0.250000,0,0);}
.maa_c00307{transform:matrix(0.301059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301059,0.000000,0.000000,0.250000,0,0);}
.me6_c00307{transform:matrix(0.301424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301424,0.000000,0.000000,0.250000,0,0);}
.m2e_c00307{transform:matrix(0.301753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301753,0.000000,0.000000,0.250000,0,0);}
.med_c00307{transform:matrix(0.302082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302082,0.000000,0.000000,0.250000,0,0);}
.mb1_c00307{transform:matrix(0.302416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302416,0.000000,0.000000,0.250000,0,0);}
.m2f_c00307{transform:matrix(0.302800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302800,0.000000,0.000000,0.250000,0,0);}
.m46_c00307{transform:matrix(0.303169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303169,0.000000,0.000000,0.250000,0,0);}
.m22_c00307{transform:matrix(0.303897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303897,0.000000,0.000000,0.250000,0,0);}
.m1d_c00307{transform:matrix(0.304796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304796,0.000000,0.000000,0.250000,0,0);}
.ma1_c00307{transform:matrix(0.304797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304797,0.000000,0.000000,0.250000,0,0);}
.m6c_c00307{transform:matrix(0.305071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305071,0.000000,0.000000,0.250000,0,0);}
.me0_c00307{transform:matrix(0.305163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305163,0.000000,0.000000,0.250000,0,0);}
.m66_c00307{transform:matrix(0.305306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305306,0.000000,0.000000,0.250000,0,0);}
.m74_c00307{transform:matrix(0.305428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305428,0.000000,0.000000,0.250000,0,0);}
.m9f_c00307{transform:matrix(0.305564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305564,0.000000,0.000000,0.250000,0,0);}
.m44_c00307{transform:matrix(0.306753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306753,0.000000,0.000000,0.250000,0,0);}
.m72_c00307{transform:matrix(0.307446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307446,0.000000,0.000000,0.250000,0,0);}
.m42_c00307{transform:matrix(0.307913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307913,0.000000,0.000000,0.250000,0,0);}
.mc0_c00307{transform:matrix(0.308906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308906,0.000000,0.000000,0.250000,0,0);}
.m24_c00307{transform:matrix(0.308970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308970,0.000000,0.000000,0.250000,0,0);}
.m88_c00307{transform:matrix(0.309793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309793,0.000000,0.000000,0.250000,0,0);}
.m9b_c00307{transform:matrix(0.310368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310368,0.000000,0.000000,0.250000,0,0);}
.m67_c00307{transform:matrix(0.310565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310565,0.000000,0.000000,0.250000,0,0);}
.mb3_c00307{transform:matrix(0.310826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310826,0.000000,0.000000,0.250000,0,0);}
.m6d_c00307{transform:matrix(0.311005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311005,0.000000,0.000000,0.250000,0,0);}
.mee_c00307{transform:matrix(0.311380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311380,0.000000,0.000000,0.250000,0,0);}
.m2c_c00307{transform:matrix(0.311579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311579,0.000000,0.000000,0.250000,0,0);}
.ma9_c00307{transform:matrix(0.311744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311744,0.000000,0.000000,0.250000,0,0);}
.m27_c00307{transform:matrix(0.312439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312439,0.000000,0.000000,0.250000,0,0);}
.m62_c00307{transform:matrix(0.312541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312541,0.000000,0.000000,0.250000,0,0);}
.m47_c00307{transform:matrix(0.312585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312585,0.000000,0.000000,0.250000,0,0);}
.ma4_c00307{transform:matrix(0.312700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312700,0.000000,0.000000,0.250000,0,0);}
.m8c_c00307{transform:matrix(0.312958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312958,0.000000,0.000000,0.250000,0,0);}
.mb_c00307{transform:matrix(0.313140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313140,0.000000,0.000000,0.250000,0,0);}
.ma_c00307{transform:matrix(0.313932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313932,0.000000,0.000000,0.250000,0,0);}
.m36_c00307{transform:matrix(0.313997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313997,0.000000,0.000000,0.250000,0,0);}
.m86_c00307{transform:matrix(0.315577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315577,0.000000,0.000000,0.250000,0,0);}
.mc7_c00307{transform:matrix(0.317243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317243,0.000000,0.000000,0.250000,0,0);}
.mc9_c00307{transform:matrix(0.317478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317478,0.000000,0.000000,0.250000,0,0);}
.m64_c00307{transform:matrix(0.318213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318213,0.000000,0.000000,0.250000,0,0);}
.m6b_c00307{transform:matrix(0.318328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318328,0.000000,0.000000,0.250000,0,0);}
.mda_c00307{transform:matrix(0.318561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318561,0.000000,0.000000,0.250000,0,0);}
.m3a_c00307{transform:matrix(0.319581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319581,0.000000,0.000000,0.250000,0,0);}
.mc1_c00307{transform:matrix(0.320799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320799,0.000000,0.000000,0.250000,0,0);}
.m28_c00307{transform:matrix(0.321815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321815,0.000000,0.000000,0.250000,0,0);}
.m11_c00307{transform:matrix(0.322169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322169,0.000000,0.000000,0.250000,0,0);}
.mf1_c00307{transform:matrix(0.322354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322354,0.000000,0.000000,0.250000,0,0);}
.mbb_c00307{transform:matrix(0.322840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322840,0.000000,0.000000,0.250000,0,0);}
.m92_c00307{transform:matrix(0.323568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323568,0.000000,0.000000,0.250000,0,0);}
.m14_c00307{transform:matrix(0.324116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324116,0.000000,0.000000,0.250000,0,0);}
.mcd_c00307{transform:matrix(0.324705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324705,0.000000,0.000000,0.250000,0,0);}
.m98_c00307{transform:matrix(0.324739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324739,0.000000,0.000000,0.250000,0,0);}
.mba_c00307{transform:matrix(0.326340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326340,0.000000,0.000000,0.250000,0,0);}
.m49_c00307{transform:matrix(0.326402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326402,0.000000,0.000000,0.250000,0,0);}
.m2d_c00307{transform:matrix(0.326878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326878,0.000000,0.000000,0.250000,0,0);}
.m95_c00307{transform:matrix(0.327205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327205,0.000000,0.000000,0.250000,0,0);}
.m2a_c00307{transform:matrix(0.327665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327665,0.000000,0.000000,0.250000,0,0);}
.ma8_c00307{transform:matrix(0.327836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327836,0.000000,0.000000,0.250000,0,0);}
.m7b_c00307{transform:matrix(0.327914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327914,0.000000,0.000000,0.250000,0,0);}
.m5a_c00307{transform:matrix(0.329066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329066,0.000000,0.000000,0.250000,0,0);}
.md8_c00307{transform:matrix(0.329904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329904,0.000000,0.000000,0.250000,0,0);}
.m7a_c00307{transform:matrix(0.331101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331101,0.000000,0.000000,0.250000,0,0);}
.m5f_c00307{transform:matrix(0.331696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331696,0.000000,0.000000,0.250000,0,0);}
.m37_c00307{transform:matrix(0.332118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332118,0.000000,0.000000,0.250000,0,0);}
.md7_c00307{transform:matrix(0.335637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335637,0.000000,0.000000,0.250000,0,0);}
.m6a_c00307{transform:matrix(0.336348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336348,0.000000,0.000000,0.250000,0,0);}
.mca_c00307{transform:matrix(0.336731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336731,0.000000,0.000000,0.250000,0,0);}
.m29_c00307{transform:matrix(0.336926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336926,0.000000,0.000000,0.250000,0,0);}
.m48_c00307{transform:matrix(0.336988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336988,0.000000,0.000000,0.250000,0,0);}
.md_c00307{transform:matrix(0.337121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337121,0.000000,0.000000,0.250000,0,0);}
.mea_c00307{transform:matrix(0.337215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337215,0.000000,0.000000,0.250000,0,0);}
.mbf_c00307{transform:matrix(0.337225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337225,0.000000,0.000000,0.250000,0,0);}
.ma5_c00307{transform:matrix(0.337718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337718,0.000000,0.000000,0.250000,0,0);}
.m31_c00307{transform:matrix(0.338171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338171,0.000000,0.000000,0.250000,0,0);}
.m13_c00307{transform:matrix(0.339163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339163,0.000000,0.000000,0.250000,0,0);}
.m61_c00307{transform:matrix(0.339607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339607,0.000000,0.000000,0.250000,0,0);}
.mc2_c00307{transform:matrix(0.339676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339676,0.000000,0.000000,0.250000,0,0);}
.m68_c00307{transform:matrix(0.340742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340742,0.000000,0.000000,0.250000,0,0);}
.ma2_c00307{transform:matrix(0.342458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342458,0.000000,0.000000,0.250000,0,0);}
.ma3_c00307{transform:matrix(0.344548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344548,0.000000,0.000000,0.250000,0,0);}
.m43_c00307{transform:matrix(0.344911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344911,0.000000,0.000000,0.250000,0,0);}
.m97_c00307{transform:matrix(0.345718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345718,0.000000,0.000000,0.250000,0,0);}
.mdf_c00307{transform:matrix(0.347882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347882,0.000000,0.000000,0.250000,0,0);}
.m26_c00307{transform:matrix(0.349813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349813,0.000000,0.000000,0.250000,0,0);}
.mb5_c00307{transform:matrix(0.350298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350298,0.000000,0.000000,0.250000,0,0);}
.m7d_c00307{transform:matrix(0.350344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350344,0.000000,0.000000,0.250000,0,0);}
.mad_c00307{transform:matrix(0.351123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351123,0.000000,0.000000,0.250000,0,0);}
.me4_c00307{transform:matrix(0.352304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352304,0.000000,0.000000,0.250000,0,0);}
.m16_c00307{transform:matrix(0.352399,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352399,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352399,0.000000,0.000000,0.250000,0,0);}
.m18_c00307{transform:matrix(0.353079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353079,0.000000,0.000000,0.250000,0,0);}
.m1a_c00307{transform:matrix(0.353413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353413,0.000000,0.000000,0.250000,0,0);}
.m12_c00307{transform:matrix(0.354020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354020,0.000000,0.000000,0.250000,0,0);}
.mc4_c00307{transform:matrix(0.354234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354234,0.000000,0.000000,0.250000,0,0);}
.m80_c00307{transform:matrix(0.354321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354321,0.000000,0.000000,0.250000,0,0);}
.m1e_c00307{transform:matrix(0.356050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356050,0.000000,0.000000,0.250000,0,0);}
.m19_c00307{transform:matrix(0.357051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357051,0.000000,0.000000,0.250000,0,0);}
.mef_c00307{transform:matrix(0.357899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357899,0.000000,0.000000,0.250000,0,0);}
.m9e_c00307{transform:matrix(0.358479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358479,0.000000,0.000000,0.250000,0,0);}
.mc8_c00307{transform:matrix(0.358594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358594,0.000000,0.000000,0.250000,0,0);}
.m2b_c00307{transform:matrix(0.358997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358997,0.000000,0.000000,0.250000,0,0);}
.ma0_c00307{transform:matrix(0.360809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360809,0.000000,0.000000,0.250000,0,0);}
.me7_c00307{transform:matrix(0.361994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361994,0.000000,0.000000,0.250000,0,0);}
.m9a_c00307{transform:matrix(0.364439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364439,0.000000,0.000000,0.250000,0,0);}
.m4f_c00307{transform:matrix(0.367080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367080,0.000000,0.000000,0.250000,0,0);}
.m9d_c00307{transform:matrix(0.368194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368194,0.000000,0.000000,0.250000,0,0);}
.m76_c00307{transform:matrix(0.369663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369663,0.000000,0.000000,0.250000,0,0);}
.maf_c00307{transform:matrix(0.369847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369847,0.000000,0.000000,0.250000,0,0);}
.m70_c00307{transform:matrix(0.373019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373019,0.000000,0.000000,0.250000,0,0);}
.m90_c00307{transform:matrix(0.373292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373292,0.000000,0.000000,0.250000,0,0);}
.me9_c00307{transform:matrix(0.376999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376999,0.000000,0.000000,0.250000,0,0);}
.mdb_c00307{transform:matrix(0.380471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380471,0.000000,0.000000,0.250000,0,0);}
.mbd_c00307{transform:matrix(0.387627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387627,0.000000,0.000000,0.250000,0,0);}
.mde_c00307{transform:matrix(0.387704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387704,0.000000,0.000000,0.250000,0,0);}
.mb2_c00307{transform:matrix(0.398787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398787,0.000000,0.000000,0.250000,0,0);}
.md4_c00307{transform:matrix(0.400685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400685,0.000000,0.000000,0.250000,0,0);}
.m52_c00307{transform:matrix(0.409265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409265,0.000000,0.000000,0.250000,0,0);}
.me8_c00307{transform:matrix(0.416660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416660,0.000000,0.000000,0.250000,0,0);}
.mdc_c00307{transform:matrix(0.420929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420929,0.000000,0.000000,0.250000,0,0);}
.m58_c00307{transform:matrix(0.423705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423705,0.000000,0.000000,0.250000,0,0);}
.m1c_c00307{transform:matrix(0.428446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428446,0.000000,0.000000,0.250000,0,0);}
.m40_c00307{transform:matrix(0.434143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434143,0.000000,0.000000,0.250000,0,0);}
.m82_c00307{transform:matrix(0.446069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446069,0.000000,0.000000,0.250000,0,0);}
.mbe_c00307{transform:matrix(0.454808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454808,0.000000,0.000000,0.250000,0,0);}
.m1b_c00307{transform:matrix(0.460264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460264,0.000000,0.000000,0.250000,0,0);}
.m23_c00307{transform:matrix(0.471652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471652,0.000000,0.000000,0.250000,0,0);}
.md1_c00307{transform:matrix(0.539571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539571,0.000000,0.000000,0.250000,0,0);}
.md0_c00307{transform:matrix(0.624986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.624986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.624986,0.000000,0.000000,0.250000,0,0);}
.v3_c00307{vertical-align:-2.851200px;}
.v0_c00307{vertical-align:0.000000px;}
.v2_c00307{vertical-align:2.871000px;}
.v1_c00307{vertical-align:21.403800px;}
.lsa_c00307{letter-spacing:-2.515590px;}
.ls1b_c00307{letter-spacing:-2.494800px;}
.ls12_c00307{letter-spacing:-2.386217px;}
.ls1c_c00307{letter-spacing:-2.314627px;}
.ls19_c00307{letter-spacing:-2.300767px;}
.ls23_c00307{letter-spacing:-2.217600px;}
.ls13_c00307{letter-spacing:-2.044350px;}
.lse_c00307{letter-spacing:-2.001483px;}
.ls25_c00307{letter-spacing:-1.614690px;}
.ls21_c00307{letter-spacing:-1.288980px;}
.ls14_c00307{letter-spacing:-0.990990px;}
.ls10_c00307{letter-spacing:-0.609840px;}
.lsf_c00307{letter-spacing:-0.566181px;}
.ls16_c00307{letter-spacing:-0.524680px;}
.ls4_c00307{letter-spacing:0.000000px;}
.ls1_c00307{letter-spacing:0.984674px;}
.ls15_c00307{letter-spacing:1.415700px;}
.ls3_c00307{letter-spacing:1.609978px;}
.ls1d_c00307{letter-spacing:1.722600px;}
.ls20_c00307{letter-spacing:2.069100px;}
.ls22_c00307{letter-spacing:2.285593px;}
.ls9_c00307{letter-spacing:2.306700px;}
.ls17_c00307{letter-spacing:2.379029px;}
.ls0_c00307{letter-spacing:2.458091px;}
.ls1e_c00307{letter-spacing:2.609026px;}
.ls1a_c00307{letter-spacing:2.673713px;}
.lsd_c00307{letter-spacing:2.900700px;}
.lsb_c00307{letter-spacing:3.435310px;}
.ls8_c00307{letter-spacing:3.593700px;}
.ls5_c00307{letter-spacing:3.801610px;}
.ls2_c00307{letter-spacing:4.874166px;}
.ls1f_c00307{letter-spacing:8.553798px;}
.ls24_c00307{letter-spacing:12.830598px;}
.ls6_c00307{letter-spacing:31.363200px;}
.ls18_c00307{letter-spacing:48.470598px;}
.ls7_c00307{letter-spacing:49.896198px;}
.ls11_c00307{letter-spacing:51.321798px;}
.lsc_c00307{letter-spacing:55.598598px;}
.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;}
}
.ws11_c00307{word-spacing:-20.577526px;}
.ws5_c00307{word-spacing:-20.426591px;}
.ws14_c00307{word-spacing:-19.578478px;}
.ws0_c00307{word-spacing:-17.968500px;}
.wsb_c00307{word-spacing:-17.721000px;}
.wsa_c00307{word-spacing:-2.802096px;}
.wsc_c00307{word-spacing:-2.515590px;}
.ws15_c00307{word-spacing:0.000000px;}
.ws10_c00307{word-spacing:1.007028px;}
.wsf_c00307{word-spacing:3.809322px;}
.ws4_c00307{word-spacing:3.881196px;}
.ws9_c00307{word-spacing:4.095828px;}
.ws3_c00307{word-spacing:4.528458px;}
.ws6_c00307{word-spacing:4.671810px;}
.ws2_c00307{word-spacing:5.893668px;}
.ws1_c00307{word-spacing:5.894658px;}
.ws13_c00307{word-spacing:6.253038px;}
.wsd_c00307{word-spacing:7.188588px;}
.wse_c00307{word-spacing:7.546770px;}
.ws8_c00307{word-spacing:8.912376px;}
.ws7_c00307{word-spacing:8.913168px;}
.ws12_c00307{word-spacing:10.349856px;}
._14_c00307{margin-left:-15.515280px;}
._15_c00307{margin-left:-12.467862px;}
._13_c00307{margin-left:-7.505784px;}
._26_c00307{margin-left:-6.469452px;}
._29_c00307{margin-left:-5.031972px;}
._22_c00307{margin-left:-3.370493px;}
._28_c00307{margin-left:-2.204255px;}
._c_c00307{width:1.365606px;}
._1_c00307{width:3.234330px;}
._11_c00307{width:4.959306px;}
._e_c00307{width:6.181164px;}
._9_c00307{width:7.258284px;}
._8_c00307{width:9.199872px;}
._5_c00307{width:10.996722px;}
._6_c00307{width:12.218382px;}
._4_c00307{width:13.799808px;}
._25_c00307{width:14.806044px;}
._1b_c00307{width:16.027902px;}
._2_c00307{width:19.909098px;}
._0_c00307{width:21.849696px;}
._1c_c00307{width:23.108184px;}
._16_c00307{width:24.221340px;}
._17_c00307{width:25.515270px;}
._18_c00307{width:27.182747px;}
._20_c00307{width:29.454955px;}
._21_c00307{width:31.552686px;}
._3_c00307{width:32.558922px;}
._a_c00307{width:34.495956px;}
._b_c00307{width:36.080946px;}
._d_c00307{width:37.086984px;}
._12_c00307{width:38.782062px;}
._24_c00307{width:39.932244px;}
._7_c00307{width:41.331114px;}
._27_c00307{width:42.875514px;}
._10_c00307{width:44.691905px;}
._19_c00307{width:45.711864px;}
._f_c00307{width:47.883528px;}
._23_c00307{width:48.987774px;}
._1d_c00307{width:60.132402px;}
._1e_c00307{width:69.348510px;}
._1a_c00307{width:137.445165px;}
._1f_c00307{width:157.567608px;}
.fc0_c00307{color:transparent;}
.fs1c_c00307{font-size:8.553798px;}
.fs21_c00307{font-size:12.830598px;}
.fsf_c00307{font-size:17.424000px;}
.fse_c00307{font-size:18.810000px;}
.fs1_c00307{font-size:22.572000px;}
.fs15_c00307{font-size:28.314000px;}
.fs4_c00307{font-size:30.888000px;}
.fs5_c00307{font-size:31.363200px;}
.fs0_c00307{font-size:33.264000px;}
.fs1b_c00307{font-size:34.452000px;}
.fs12_c00307{font-size:34.650000px;}
.fs1e_c00307{font-size:36.828000px;}
.fs1d_c00307{font-size:41.382000px;}
.fs6_c00307{font-size:44.352000px;}
.fs9_c00307{font-size:46.134000px;}
.fs17_c00307{font-size:48.470598px;}
.fs8_c00307{font-size:49.896198px;}
.fs11_c00307{font-size:51.321798px;}
.fsb_c00307{font-size:55.598598px;}
.fsd_c00307{font-size:58.014000px;}
.fs13_c00307{font-size:58.410000px;}
.fs20_c00307{font-size:63.360000px;}
.fs18_c00307{font-size:65.736198px;}
.fs1a_c00307{font-size:66.132198px;}
.fs3_c00307{font-size:67.320000px;}
.fsa_c00307{font-size:68.706198px;}
.fs1f_c00307{font-size:69.696198px;}
.fs10_c00307{font-size:70.884000px;}
.fs19_c00307{font-size:71.280000px;}
.fs7_c00307{font-size:71.874000px;}
.fs16_c00307{font-size:72.864000px;}
.fs14_c00307{font-size:74.448000px;}
.fs2_c00307{font-size:76.032198px;}
.fsc_c00307{font-size:83.556198px;}
.y0_c00307{bottom:0.000000px;}
.y1_c00307{bottom:76.500000px;}
.y30_c00307{bottom:136.056735px;}
.y2f_c00307{bottom:162.786735px;}
.y2e_c00307{bottom:166.345785px;}
.y2d_c00307{bottom:167.058585px;}
.y2c_c00307{bottom:201.272985px;}
.y2b_c00307{bottom:201.274223px;}
.y29_c00307{bottom:230.502735px;}
.y27_c00307{bottom:233.710335px;}
.y28_c00307{bottom:234.066735px;}
.y2a_c00307{bottom:238.699935px;}
.y26_c00307{bottom:266.850585px;}
.y25_c00307{bottom:300.000735px;}
.y24_c00307{bottom:332.428185px;}
.y23_c00307{bottom:332.436501px;}
.y22_c00307{bottom:365.929785px;}
.y21_c00307{bottom:398.723535px;}
.y20_c00307{bottom:431.512335px;}
.y1f_c00307{bottom:431.512583px;}
.y1e_c00307{bottom:463.226985px;}
.y1d_c00307{bottom:496.372185px;}
.y1c_c00307{bottom:528.804585px;}
.y1b_c00307{bottom:554.470335px;}
.y1a_c00307{bottom:561.236985px;}
.y19_c00307{bottom:593.669385px;}
.y18_c00307{bottom:622.181385px;}
.y16_c00307{bottom:626.458185px;}
.y17_c00307{bottom:627.883785px;}
.y15_c00307{bottom:658.890585px;}
.y14_c00307{bottom:687.758985px;}
.y10_c00307{bottom:690.965595px;}
.y11_c00307{bottom:690.971535px;}
.y13_c00307{bottom:691.327935px;}
.y12_c00307{bottom:699.881535px;}
.yf_c00307{bottom:723.398985px;}
.ye_c00307{bottom:723.760335px;}
.y2_c00307{bottom:726.967935px;}
.yd_c00307{bottom:756.900585px;}
.yc_c00307{bottom:821.770335px;}
.yb_c00307{bottom:855.266985px;}
.ya_c00307{bottom:887.699385px;}
.y9_c00307{bottom:921.562335px;}
.y8_c00307{bottom:963.261135px;}
.y7_c00307{bottom:975.022335px;}
.y6_c00307{bottom:986.065785px;}
.y5_c00307{bottom:998.544735px;}
.y3_c00307{bottom:1014.934185px;}
.y4_c00307{bottom:1072.670985px;}
.h1e_c00307{height:5.696829px;}
.h23_c00307{height:8.545178px;}
.h11_c00307{height:18.172688px;}
.h10_c00307{height:19.618242px;}
.h7_c00307{height:20.887891px;}
.h3_c00307{height:23.541891px;}
.h17_c00307{height:29.530617px;}
.h6_c00307{height:32.215219px;}
.h19_c00307{height:32.281418px;}
.ha_c00307{height:33.230868px;}
.h13_c00307{height:34.180317px;}
.h2_c00307{height:34.693313px;}
.h1d_c00307{height:35.932359px;}
.h20_c00307{height:36.144668px;}
.hd_c00307{height:37.028666px;}
.h1f_c00307{height:40.614170px;}
.h8_c00307{height:46.257750px;}
.hb_c00307{height:48.116320px;}
.hf_c00307{height:60.506789px;}
.h15_c00307{height:60.919805px;}
.h1a_c00307{height:64.516483px;}
.h1c_c00307{height:64.905136px;}
.h5_c00307{height:66.070898px;}
.h22_c00307{height:66.082500px;}
.hc_c00307{height:67.431376px;}
.h12_c00307{height:69.568770px;}
.h1b_c00307{height:69.957422px;}
.h9_c00307{height:70.540400px;}
.h18_c00307{height:71.512031px;}
.h14_c00307{height:72.439770px;}
.h16_c00307{height:73.066641px;}
.h21_c00307{height:73.143675px;}
.h4_c00307{height:74.621444px;}
.he_c00307{height:87.146503px;}
.h1_c00307{height:1110.000000px;}
.h0_c00307{height:1263.000000px;}
.w1_c00307{width:781.500000px;}
.w0_c00307{width:892.500000px;}
.x0_c00307{left:0.000000px;}
.x2_c00307{left:48.833685px;}
.x1_c00307{left:55.500000px;}
.x4c_c00307{left:93.111435px;}
.x9_c00307{left:94.363785px;}
.x1a_c00307{left:95.749785px;}
.x85_c00307{left:97.210035px;}
.x2a_c00307{left:104.199435px;}
.x3d_c00307{left:106.105185px;}
.x8a_c00307{left:113.366835px;}
.x61_c00307{left:114.856785px;}
.x46_c00307{left:116.356635px;}
.x69_c00307{left:118.886085px;}
.x33_c00307{left:127.028835px;}
.x86_c00307{left:128.053485px;}
.x3e_c00307{left:129.127635px;}
.x6a_c00307{left:136.607085px;}
.x64_c00307{left:137.621835px;}
.x1b_c00307{left:138.869235px;}
.x60_c00307{left:142.121385px;}
.x73_c00307{left:148.006935px;}
.x39_c00307{left:149.363235px;}
.x8b_c00307{left:156.461535px;}
.x34_c00307{left:160.243335px;}
.x76_c00307{left:161.307585px;}
.x1c_c00307{left:170.489835px;}
.x65_c00307{left:171.618435px;}
.x62_c00307{left:173.954835px;}
.x8c_c00307{left:177.766335px;}
.x51_c00307{left:181.181835px;}
.x3f_c00307{left:182.810385px;}
.x8d_c00307{left:188.349435px;}
.x66_c00307{left:193.032135px;}
.x35_c00307{left:194.046885px;}
.xa_c00307{left:195.091335px;}
.x74_c00307{left:198.962235px;}
.x3_c00307{left:201.362985px;}
.x47_c00307{left:204.461685px;}
.xb_c00307{left:205.783335px;}
.xc_c00307{left:215.762535px;}
.x1d_c00307{left:217.341585px;}
.x57_c00307{left:226.063485px;}
.x2b_c00307{left:227.078235px;}
.x87_c00307{left:229.865085px;}
.x88_c00307{left:235.973385px;}
.x36_c00307{left:237.161385px;}
.x7b_c00307{left:240.418485px;}
.x40_c00307{left:248.863185px;}
.xd_c00307{left:249.976935px;}
.x48_c00307{left:251.466885px;}
.x71_c00307{left:258.827535px;}
.x58_c00307{left:260.154135px;}
.x89_c00307{left:261.178785px;}
.x3a_c00307{left:269.752185px;}
.x7c_c00307{left:271.489635px;}
.x52_c00307{left:280.978785px;}
.x1e_c00307{left:282.067785px;}
.xe_c00307{left:283.285485px;}
.x1f_c00307{left:293.962635px;}
.xf_c00307{left:304.679385px;}
.x4d_c00307{left:315.544635px;}
.x20_c00307{left:316.777185px;}
.x4e_c00307{left:325.523835px;}
.x2c_c00307{left:326.652435px;}
.x77_c00307{left:327.795885px;}
.x67_c00307{left:336.889035px;}
.x21_c00307{left:338.156235px;}
.x2d_c00307{left:348.353235px;}
.x7f_c00307{left:349.565985px;}
.x49_c00307{left:351.085635px;}
.x2e_c00307{left:360.059985px;}
.x7e_c00307{left:362.876535px;}
.x10_c00307{left:370.945035px;}
.x78_c00307{left:380.716335px;}
.x2f_c00307{left:382.290435px;}
.x22_c00307{left:393.022035px;}
.x37_c00307{left:395.487135px;}
.x11_c00307{left:404.481285px;}
.x41_c00307{left:413.871435px;}
.x38_c00307{left:415.470285px;}
.x80_c00307{left:416.871135px;}
.x6b_c00307{left:425.498985px;}
.x12_c00307{left:426.592935px;}
.x6c_c00307{left:435.295035px;}
.x59_c00307{left:436.393935px;}
.x81_c00307{left:438.928335px;}
.x13_c00307{left:447.734385px;}
.x5d_c00307{left:448.957035px;}
.x7d_c00307{left:450.951885px;}
.x6f_c00307{left:459.644085px;}
.x23_c00307{left:460.733085px;}
.x53_c00307{left:470.029185px;}
.x82_c00307{left:473.083335px;}
.x68_c00307{left:480.176685px;}
.x3b_c00307{left:481.221135px;}
.x8e_c00307{left:491.566635px;}
.x24_c00307{left:492.814035px;}
.x63_c00307{left:501.941835px;}
.x14_c00307{left:503.491185px;}
.x30_c00307{left:513.346635px;}
.x5e_c00307{left:514.980135px;}
.x83_c00307{left:516.277035px;}
.x4a_c00307{left:525.667185px;}
.x15_c00307{left:527.582835px;}
.x25_c00307{left:536.968035px;}
.x16_c00307{left:547.570935px;}
.x26_c00307{left:558.540135px;}
.x5f_c00307{left:569.613285px;}
.x8f_c00307{left:571.776435px;}
.x17_c00307{left:580.374585px;}
.x42_c00307{left:583.562385px;}
.x31_c00307{left:591.898185px;}
.x27_c00307{left:602.872335px;}
.x4b_c00307{left:606.604635px;}
.x43_c00307{left:613.940535px;}
.x84_c00307{left:623.498985px;}
.x18_c00307{left:624.508785px;}
.x4f_c00307{left:625.756185px;}
.x6d_c00307{left:627.018435px;}
.x5a_c00307{left:635.735385px;}
.x28_c00307{left:637.180785px;}
.x55_c00307{left:640.497285px;}
.x32_c00307{left:646.313535px;}
.x19_c00307{left:648.194535px;}
.x54_c00307{left:655.723485px;}
.x79_c00307{left:657.287685px;}
.x50_c00307{left:658.936035px;}
.x56_c00307{left:660.435885px;}
.x5b_c00307{left:668.524185px;}
.x4_c00307{left:669.583485px;}
.x70_c00307{left:680.240835px;}
.x5_c00307{left:682.052535px;}
.x44_c00307{left:690.987285px;}
.x29_c00307{left:692.076285px;}
.x6_c00307{left:701.614935px;}
.x7_c00307{left:703.456335px;}
.x6e_c00307{left:704.807685px;}
.x8_c00307{left:705.990735px;}
.x72_c00307{left:712.717785px;}
.x5c_c00307{left:713.747385px;}
.x3c_c00307{left:714.811635px;}
.x7a_c00307{left:724.122585px;}
.x45_c00307{left:725.567985px;}
.x75_c00307{left:734.844285px;}
@media print{
.v3_c00307{vertical-align:-2.534400pt;}
.v0_c00307{vertical-align:0.000000pt;}
.v2_c00307{vertical-align:2.552000pt;}
.v1_c00307{vertical-align:19.025600pt;}
.lsa_c00307{letter-spacing:-2.236080pt;}
.ls1b_c00307{letter-spacing:-2.217600pt;}
.ls12_c00307{letter-spacing:-2.121082pt;}
.ls1c_c00307{letter-spacing:-2.057446pt;}
.ls19_c00307{letter-spacing:-2.045126pt;}
.ls23_c00307{letter-spacing:-1.971200pt;}
.ls13_c00307{letter-spacing:-1.817200pt;}
.lse_c00307{letter-spacing:-1.779096pt;}
.ls25_c00307{letter-spacing:-1.435280pt;}
.ls21_c00307{letter-spacing:-1.145760pt;}
.ls14_c00307{letter-spacing:-0.880880pt;}
.ls10_c00307{letter-spacing:-0.542080pt;}
.lsf_c00307{letter-spacing:-0.503272pt;}
.ls16_c00307{letter-spacing:-0.466382pt;}
.ls4_c00307{letter-spacing:0.000000pt;}
.ls1_c00307{letter-spacing:0.875266pt;}
.ls15_c00307{letter-spacing:1.258400pt;}
.ls3_c00307{letter-spacing:1.431091pt;}
.ls1d_c00307{letter-spacing:1.531200pt;}
.ls20_c00307{letter-spacing:1.839200pt;}
.ls22_c00307{letter-spacing:2.031638pt;}
.ls9_c00307{letter-spacing:2.050400pt;}
.ls17_c00307{letter-spacing:2.114693pt;}
.ls0_c00307{letter-spacing:2.184970pt;}
.ls1e_c00307{letter-spacing:2.319134pt;}
.ls1a_c00307{letter-spacing:2.376634pt;}
.lsd_c00307{letter-spacing:2.578400pt;}
.lsb_c00307{letter-spacing:3.053609pt;}
.ls8_c00307{letter-spacing:3.194400pt;}
.ls5_c00307{letter-spacing:3.379209pt;}
.ls2_c00307{letter-spacing:4.332592pt;}
.ls1f_c00307{letter-spacing:7.603376pt;}
.ls24_c00307{letter-spacing:11.404976pt;}
.ls6_c00307{letter-spacing:27.878400pt;}
.ls18_c00307{letter-spacing:43.084976pt;}
.ls7_c00307{letter-spacing:44.352176pt;}
.ls11_c00307{letter-spacing:45.619376pt;}
.lsc_c00307{letter-spacing:49.420976pt;}
.ws11_c00307{word-spacing:-18.291134pt;}
.ws5_c00307{word-spacing:-18.156970pt;}
.ws14_c00307{word-spacing:-17.403091pt;}
.ws0_c00307{word-spacing:-15.972000pt;}
.wsb_c00307{word-spacing:-15.752000pt;}
.wsa_c00307{word-spacing:-2.490752pt;}
.wsc_c00307{word-spacing:-2.236080pt;}
.ws15_c00307{word-spacing:0.000000pt;}
.ws10_c00307{word-spacing:0.895136pt;}
.wsf_c00307{word-spacing:3.386064pt;}
.ws4_c00307{word-spacing:3.449952pt;}
.ws9_c00307{word-spacing:3.640736pt;}
.ws3_c00307{word-spacing:4.025296pt;}
.ws6_c00307{word-spacing:4.152720pt;}
.ws2_c00307{word-spacing:5.238816pt;}
.ws1_c00307{word-spacing:5.239696pt;}
.ws13_c00307{word-spacing:5.558256pt;}
.wsd_c00307{word-spacing:6.389856pt;}
.wse_c00307{word-spacing:6.708240pt;}
.ws8_c00307{word-spacing:7.922112pt;}
.ws7_c00307{word-spacing:7.922816pt;}
.ws12_c00307{word-spacing:9.199872pt;}
._14_c00307{margin-left:-13.791360pt;}
._15_c00307{margin-left:-11.082544pt;}
._13_c00307{margin-left:-6.671808pt;}
._26_c00307{margin-left:-5.750624pt;}
._29_c00307{margin-left:-4.472864pt;}
._22_c00307{margin-left:-2.995994pt;}
._28_c00307{margin-left:-1.959338pt;}
._c_c00307{width:1.213872pt;}
._1_c00307{width:2.874960pt;}
._11_c00307{width:4.408272pt;}
._e_c00307{width:5.494368pt;}
._9_c00307{width:6.451808pt;}
._8_c00307{width:8.177664pt;}
._5_c00307{width:9.774864pt;}
._6_c00307{width:10.860784pt;}
._4_c00307{width:12.266496pt;}
._25_c00307{width:13.160928pt;}
._1b_c00307{width:14.247024pt;}
._2_c00307{width:17.696976pt;}
._0_c00307{width:19.421952pt;}
._1c_c00307{width:20.540608pt;}
._16_c00307{width:21.530080pt;}
._17_c00307{width:22.680240pt;}
._18_c00307{width:24.162442pt;}
._20_c00307{width:26.182182pt;}
._21_c00307{width:28.046832pt;}
._3_c00307{width:28.941264pt;}
._a_c00307{width:30.663072pt;}
._b_c00307{width:32.071952pt;}
._d_c00307{width:32.966208pt;}
._12_c00307{width:34.472944pt;}
._24_c00307{width:35.495328pt;}
._7_c00307{width:36.738768pt;}
._27_c00307{width:38.111568pt;}
._10_c00307{width:39.726138pt;}
._19_c00307{width:40.632768pt;}
._f_c00307{width:42.563136pt;}
._23_c00307{width:43.544688pt;}
._1d_c00307{width:53.451024pt;}
._1e_c00307{width:61.643120pt;}
._1a_c00307{width:122.173480pt;}
._1f_c00307{width:140.060096pt;}
.fs1c_c00307{font-size:7.603376pt;}
.fs21_c00307{font-size:11.404976pt;}
.fsf_c00307{font-size:15.488000pt;}
.fse_c00307{font-size:16.720000pt;}
.fs1_c00307{font-size:20.064000pt;}
.fs15_c00307{font-size:25.168000pt;}
.fs4_c00307{font-size:27.456000pt;}
.fs5_c00307{font-size:27.878400pt;}
.fs0_c00307{font-size:29.568000pt;}
.fs1b_c00307{font-size:30.624000pt;}
.fs12_c00307{font-size:30.800000pt;}
.fs1e_c00307{font-size:32.736000pt;}
.fs1d_c00307{font-size:36.784000pt;}
.fs6_c00307{font-size:39.424000pt;}
.fs9_c00307{font-size:41.008000pt;}
.fs17_c00307{font-size:43.084976pt;}
.fs8_c00307{font-size:44.352176pt;}
.fs11_c00307{font-size:45.619376pt;}
.fsb_c00307{font-size:49.420976pt;}
.fsd_c00307{font-size:51.568000pt;}
.fs13_c00307{font-size:51.920000pt;}
.fs20_c00307{font-size:56.320000pt;}
.fs18_c00307{font-size:58.432176pt;}
.fs1a_c00307{font-size:58.784176pt;}
.fs3_c00307{font-size:59.840000pt;}
.fsa_c00307{font-size:61.072176pt;}
.fs1f_c00307{font-size:61.952176pt;}
.fs10_c00307{font-size:63.008000pt;}
.fs19_c00307{font-size:63.360000pt;}
.fs7_c00307{font-size:63.888000pt;}
.fs16_c00307{font-size:64.768000pt;}
.fs14_c00307{font-size:66.176000pt;}
.fs2_c00307{font-size:67.584176pt;}
.fsc_c00307{font-size:74.272176pt;}
.y0_c00307{bottom:0.000000pt;}
.y1_c00307{bottom:68.000000pt;}
.y30_c00307{bottom:120.939320pt;}
.y2f_c00307{bottom:144.699320pt;}
.y2e_c00307{bottom:147.862920pt;}
.y2d_c00307{bottom:148.496520pt;}
.y2c_c00307{bottom:178.909320pt;}
.y2b_c00307{bottom:178.910420pt;}
.y29_c00307{bottom:204.891320pt;}
.y27_c00307{bottom:207.742520pt;}
.y28_c00307{bottom:208.059320pt;}
.y2a_c00307{bottom:212.177720pt;}
.y26_c00307{bottom:237.200520pt;}
.y25_c00307{bottom:266.667320pt;}
.y24_c00307{bottom:295.491720pt;}
.y23_c00307{bottom:295.499112pt;}
.y22_c00307{bottom:325.270920pt;}
.y21_c00307{bottom:354.420920pt;}
.y20_c00307{bottom:383.566520pt;}
.y1f_c00307{bottom:383.566740pt;}
.y1e_c00307{bottom:411.757320pt;}
.y1d_c00307{bottom:441.219720pt;}
.y1c_c00307{bottom:470.048520pt;}
.y1b_c00307{bottom:492.862520pt;}
.y1a_c00307{bottom:498.877320pt;}
.y19_c00307{bottom:527.706120pt;}
.y18_c00307{bottom:553.050120pt;}
.y16_c00307{bottom:556.851720pt;}
.y17_c00307{bottom:558.118920pt;}
.y15_c00307{bottom:585.680520pt;}
.y14_c00307{bottom:611.341320pt;}
.y10_c00307{bottom:614.191640pt;}
.y11_c00307{bottom:614.196920pt;}
.y13_c00307{bottom:614.513720pt;}
.y12_c00307{bottom:622.116920pt;}
.yf_c00307{bottom:643.021320pt;}
.ye_c00307{bottom:643.342520pt;}
.y2_c00307{bottom:646.193720pt;}
.yd_c00307{bottom:672.800520pt;}
.yc_c00307{bottom:730.462520pt;}
.yb_c00307{bottom:760.237320pt;}
.ya_c00307{bottom:789.066120pt;}
.y9_c00307{bottom:819.166520pt;}
.y8_c00307{bottom:856.232120pt;}
.y7_c00307{bottom:866.686520pt;}
.y6_c00307{bottom:876.502920pt;}
.y5_c00307{bottom:887.595320pt;}
.y3_c00307{bottom:902.163720pt;}
.y4_c00307{bottom:953.485320pt;}
.h1e_c00307{height:5.063848pt;}
.h23_c00307{height:7.595714pt;}
.h11_c00307{height:16.153500pt;}
.h10_c00307{height:17.438437pt;}
.h7_c00307{height:18.567014pt;}
.h3_c00307{height:20.926125pt;}
.h17_c00307{height:26.249438pt;}
.h6_c00307{height:28.635750pt;}
.h19_c00307{height:28.694594pt;}
.ha_c00307{height:29.538549pt;}
.h13_c00307{height:30.382504pt;}
.h2_c00307{height:30.838500pt;}
.h1d_c00307{height:31.939875pt;}
.h20_c00307{height:32.128594pt;}
.hd_c00307{height:32.914370pt;}
.h1f_c00307{height:36.101484pt;}
.h8_c00307{height:41.118000pt;}
.hb_c00307{height:42.770063pt;}
.hf_c00307{height:53.783813pt;}
.h15_c00307{height:54.150938pt;}
.h1a_c00307{height:57.347985pt;}
.h1c_c00307{height:57.693454pt;}
.h5_c00307{height:58.729688pt;}
.h22_c00307{height:58.740000pt;}
.hc_c00307{height:59.939001pt;}
.h12_c00307{height:61.838906pt;}
.h1b_c00307{height:62.184375pt;}
.h9_c00307{height:62.702578pt;}
.h18_c00307{height:63.566250pt;}
.h14_c00307{height:64.390906pt;}
.h16_c00307{height:64.948125pt;}
.h21_c00307{height:65.016600pt;}
.h4_c00307{height:66.330173pt;}
.he_c00307{height:77.463559pt;}
.h1_c00307{height:986.666667pt;}
.h0_c00307{height:1122.666667pt;}
.w1_c00307{width:694.666667pt;}
.w0_c00307{width:793.333333pt;}
.x0_c00307{left:0.000000pt;}
.x2_c00307{left:43.407720pt;}
.x1_c00307{left:49.333333pt;}
.x4c_c00307{left:82.765720pt;}
.x9_c00307{left:83.878920pt;}
.x1a_c00307{left:85.110920pt;}
.x85_c00307{left:86.408920pt;}
.x2a_c00307{left:92.621720pt;}
.x3d_c00307{left:94.315720pt;}
.x8a_c00307{left:100.770520pt;}
.x61_c00307{left:102.094920pt;}
.x46_c00307{left:103.428120pt;}
.x69_c00307{left:105.676520pt;}
.x33_c00307{left:112.914520pt;}
.x86_c00307{left:113.825320pt;}
.x3e_c00307{left:114.780120pt;}
.x6a_c00307{left:121.428520pt;}
.x64_c00307{left:122.330520pt;}
.x1b_c00307{left:123.439320pt;}
.x60_c00307{left:126.330120pt;}
.x73_c00307{left:131.561720pt;}
.x39_c00307{left:132.767320pt;}
.x8b_c00307{left:139.076920pt;}
.x34_c00307{left:142.438520pt;}
.x76_c00307{left:143.384520pt;}
.x1c_c00307{left:151.546520pt;}
.x65_c00307{left:152.549720pt;}
.x62_c00307{left:154.626520pt;}
.x8c_c00307{left:158.014520pt;}
.x51_c00307{left:161.050520pt;}
.x3f_c00307{left:162.498120pt;}
.x8d_c00307{left:167.421720pt;}
.x66_c00307{left:171.584120pt;}
.x35_c00307{left:172.486120pt;}
.xa_c00307{left:173.414520pt;}
.x74_c00307{left:176.855320pt;}
.x3_c00307{left:178.989320pt;}
.x47_c00307{left:181.743720pt;}
.xb_c00307{left:182.918520pt;}
.xc_c00307{left:191.788920pt;}
.x1d_c00307{left:193.192520pt;}
.x57_c00307{left:200.945320pt;}
.x2b_c00307{left:201.847320pt;}
.x87_c00307{left:204.324520pt;}
.x88_c00307{left:209.754120pt;}
.x36_c00307{left:210.810120pt;}
.x7b_c00307{left:213.705320pt;}
.x40_c00307{left:221.211720pt;}
.xd_c00307{left:222.201720pt;}
.x48_c00307{left:223.526120pt;}
.x71_c00307{left:230.068920pt;}
.x58_c00307{left:231.248120pt;}
.x89_c00307{left:232.158920pt;}
.x3a_c00307{left:239.779720pt;}
.x7c_c00307{left:241.324120pt;}
.x52_c00307{left:249.758920pt;}
.x1e_c00307{left:250.726920pt;}
.xe_c00307{left:251.809320pt;}
.x1f_c00307{left:261.300120pt;}
.xf_c00307{left:270.826120pt;}
.x4d_c00307{left:280.484120pt;}
.x20_c00307{left:281.579720pt;}
.x4e_c00307{left:289.354520pt;}
.x2c_c00307{left:290.357720pt;}
.x77_c00307{left:291.374120pt;}
.x67_c00307{left:299.456920pt;}
.x21_c00307{left:300.583320pt;}
.x2d_c00307{left:309.647320pt;}
.x7f_c00307{left:310.725320pt;}
.x49_c00307{left:312.076120pt;}
.x2e_c00307{left:320.053320pt;}
.x7e_c00307{left:322.556920pt;}
.x10_c00307{left:329.728920pt;}
.x78_c00307{left:338.414520pt;}
.x2f_c00307{left:339.813720pt;}
.x22_c00307{left:349.352920pt;}
.x37_c00307{left:351.544120pt;}
.x11_c00307{left:359.538920pt;}
.x41_c00307{left:367.885720pt;}
.x38_c00307{left:369.306920pt;}
.x80_c00307{left:370.552120pt;}
.x6b_c00307{left:378.221320pt;}
.x12_c00307{left:379.193720pt;}
.x6c_c00307{left:386.928920pt;}
.x59_c00307{left:387.905720pt;}
.x81_c00307{left:390.158520pt;}
.x13_c00307{left:397.986120pt;}
.x5d_c00307{left:399.072920pt;}
.x7d_c00307{left:400.846120pt;}
.x6f_c00307{left:408.572520pt;}
.x23_c00307{left:409.540520pt;}
.x53_c00307{left:417.803720pt;}
.x82_c00307{left:420.518520pt;}
.x68_c00307{left:426.823720pt;}
.x3b_c00307{left:427.752120pt;}
.x8e_c00307{left:436.948120pt;}
.x24_c00307{left:438.056920pt;}
.x63_c00307{left:446.170520pt;}
.x14_c00307{left:447.547720pt;}
.x30_c00307{left:456.308120pt;}
.x5e_c00307{left:457.760120pt;}
.x83_c00307{left:458.912920pt;}
.x4a_c00307{left:467.259720pt;}
.x15_c00307{left:468.962520pt;}
.x25_c00307{left:477.304920pt;}
.x16_c00307{left:486.729720pt;}
.x26_c00307{left:496.480120pt;}
.x5f_c00307{left:506.322920pt;}
.x8f_c00307{left:508.245720pt;}
.x17_c00307{left:515.888520pt;}
.x42_c00307{left:518.722120pt;}
.x31_c00307{left:526.131720pt;}
.x27_c00307{left:535.886520pt;}
.x4b_c00307{left:539.204120pt;}
.x43_c00307{left:545.724920pt;}
.x84_c00307{left:554.221320pt;}
.x18_c00307{left:555.118920pt;}
.x4f_c00307{left:556.227720pt;}
.x6d_c00307{left:557.349720pt;}
.x5a_c00307{left:565.098120pt;}
.x28_c00307{left:566.382920pt;}
.x55_c00307{left:569.330920pt;}
.x32_c00307{left:574.500920pt;}
.x19_c00307{left:576.172920pt;}
.x54_c00307{left:582.865320pt;}
.x79_c00307{left:584.255720pt;}
.x50_c00307{left:585.720920pt;}
.x56_c00307{left:587.054120pt;}
.x5b_c00307{left:594.243720pt;}
.x4_c00307{left:595.185320pt;}
.x70_c00307{left:604.658520pt;}
.x5_c00307{left:606.268920pt;}
.x44_c00307{left:614.210920pt;}
.x29_c00307{left:615.178920pt;}
.x6_c00307{left:623.657720pt;}
.x7_c00307{left:625.294520pt;}
.x6e_c00307{left:626.495720pt;}
.x8_c00307{left:627.547320pt;}
.x72_c00307{left:633.526920pt;}
.x5c_c00307{left:634.442120pt;}
.x3c_c00307{left:635.388120pt;}
.x7a_c00307{left:643.664520pt;}
.x45_c00307{left:644.949320pt;}
.x75_c00307{left:653.194920pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c8542ebf04fe9751acd458e2.woff2')format("woff");}.ff1_c00308{font-family:ff1_c00308;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00308;src:url('chunks/assets/font_c63edda8275ccfbdfd82342a.woff2')format("woff");}.ff2_c00308{font-family:ff2_c00308;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00308;src:url('chunks/assets/font_9cf95dff1b32a20c216f8325.woff2')format("woff");}.ff3_c00308{font-family:ff3_c00308;line-height:0.666000;font-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_c00308{transform:matrix(0.044118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.044118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.044118,0.000000,0.000000,0.250000,0,0);}
.md6_c00308{transform:matrix(0.069854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.069854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.069854,0.000000,0.000000,0.250000,0,0);}
.m4e_c00308{transform:matrix(0.078572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078572,0.000000,0.000000,0.250000,0,0);}
.md5_c00308{transform:matrix(0.088235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088235,0.000000,0.000000,0.250000,0,0);}
.mc2_c00308{transform:matrix(0.109780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109780,0.000000,0.000000,0.250000,0,0);}
.m46_c00308{transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);}
.md7_c00308{transform:matrix(0.132352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132352,0.000000,0.000000,0.250000,0,0);}
.m91_c00308{transform:matrix(0.142848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142848,0.000000,0.000000,0.250000,0,0);}
.m88_c00308{transform:matrix(0.143480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143480,0.000000,0.000000,0.250000,0,0);}
.md8_c00308{transform:matrix(0.161764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161764,0.000000,0.000000,0.250000,0,0);}
.m4d_c00308{transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);}
.m4_c00308{transform:matrix(0.165951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165951,0.000000,0.000000,0.250000,0,0);}
.m61_c00308{transform:matrix(0.177551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177551,0.000000,0.000000,0.250000,0,0);}
.ma1_c00308{transform:matrix(0.180983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180983,0.000000,0.000000,0.250000,0,0);}
.mb9_c00308{transform:matrix(0.195161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195161,0.000000,0.000000,0.250000,0,0);}
.m76_c00308{transform:matrix(0.199668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199668,0.000000,0.000000,0.250000,0,0);}
.md3_c00308{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);}
.mb1_c00308{transform:matrix(0.206527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206527,0.000000,0.000000,0.250000,0,0);}
.m7d_c00308{transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);}
.m12_c00308{transform:matrix(0.217611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217611,0.000000,0.000000,0.250000,0,0);}
.mbd_c00308{transform:matrix(0.220597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220597,0.000000,0.000000,0.250000,0,0);}
.m97_c00308{transform:matrix(0.227312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227312,0.000000,0.000000,0.250000,0,0);}
.m4b_c00308{transform:matrix(0.228887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228887,0.000000,0.000000,0.250000,0,0);}
.mb0_c00308{transform:matrix(0.236205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236205,0.000000,0.000000,0.250000,0,0);}
.md1_c00308{transform:matrix(0.237554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237554,0.000000,0.000000,0.250000,0,0);}
.mb8_c00308{transform:matrix(0.243767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243767,0.000000,0.000000,0.250000,0,0);}
.m0_c00308{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00308{transform:matrix(0.250019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250019,0.000000,0.000000,0.250000,0,0);}
.m63_c00308{transform:matrix(0.250154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250154,0.000000,0.000000,0.250000,0,0);}
.m25_c00308{transform:matrix(0.251963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251963,0.000000,0.000000,0.250000,0,0);}
.m15_c00308{transform:matrix(0.253813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253813,0.000000,0.000000,0.250000,0,0);}
.m87_c00308{transform:matrix(0.254579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254579,0.000000,0.000000,0.250000,0,0);}
.m3c_c00308{transform:matrix(0.257552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257552,0.000000,0.000000,0.250000,0,0);}
.mc3_c00308{transform:matrix(0.258446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258446,0.000000,0.000000,0.250000,0,0);}
.m1_c00308{transform:matrix(0.266098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266098,0.000000,0.000000,0.250000,0,0);}
.m8b_c00308{transform:matrix(0.268759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268759,0.000000,0.000000,0.250000,0,0);}
.ma5_c00308{transform:matrix(0.269858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269858,0.000000,0.000000,0.250000,0,0);}
.m83_c00308{transform:matrix(0.271367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271367,0.000000,0.000000,0.250000,0,0);}
.m5c_c00308{transform:matrix(0.273304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273304,0.000000,0.000000,0.250000,0,0);}
.m92_c00308{transform:matrix(0.273490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273490,0.000000,0.000000,0.250000,0,0);}
.m86_c00308{transform:matrix(0.273806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273806,0.000000,0.000000,0.250000,0,0);}
.m72_c00308{transform:matrix(0.275622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275622,0.000000,0.000000,0.250000,0,0);}
.m8d_c00308{transform:matrix(0.282072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282072,0.000000,0.000000,0.250000,0,0);}
.mcc_c00308{transform:matrix(0.283236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283236,0.000000,0.000000,0.250000,0,0);}
.m2d_c00308{transform:matrix(0.284138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284138,0.000000,0.000000,0.250000,0,0);}
.m51_c00308{transform:matrix(0.284824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284824,0.000000,0.000000,0.250000,0,0);}
.m1f_c00308{transform:matrix(0.286142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286142,0.000000,0.000000,0.250000,0,0);}
.m3f_c00308{transform:matrix(0.287557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287557,0.000000,0.000000,0.250000,0,0);}
.m1b_c00308{transform:matrix(0.288216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288216,0.000000,0.000000,0.250000,0,0);}
.m35_c00308{transform:matrix(0.288548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288548,0.000000,0.000000,0.250000,0,0);}
.m4a_c00308{transform:matrix(0.288645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288645,0.000000,0.000000,0.250000,0,0);}
.ma3_c00308{transform:matrix(0.289304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289304,0.000000,0.000000,0.250000,0,0);}
.m9_c00308{transform:matrix(0.291252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291252,0.000000,0.000000,0.250000,0,0);}
.m2b_c00308{transform:matrix(0.291713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291713,0.000000,0.000000,0.250000,0,0);}
.m58_c00308{transform:matrix(0.291862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291862,0.000000,0.000000,0.250000,0,0);}
.maa_c00308{transform:matrix(0.291941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291941,0.000000,0.000000,0.250000,0,0);}
.mce_c00308{transform:matrix(0.293682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293682,0.000000,0.000000,0.250000,0,0);}
.m20_c00308{transform:matrix(0.294235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294235,0.000000,0.000000,0.250000,0,0);}
.m96_c00308{transform:matrix(0.294470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294470,0.000000,0.000000,0.250000,0,0);}
.m7_c00308{transform:matrix(0.294633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294633,0.000000,0.000000,0.250000,0,0);}
.m19_c00308{transform:matrix(0.294660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294660,0.000000,0.000000,0.250000,0,0);}
.mf_c00308{transform:matrix(0.295385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295385,0.000000,0.000000,0.250000,0,0);}
.m26_c00308{transform:matrix(0.295462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295462,0.000000,0.000000,0.250000,0,0);}
.m5d_c00308{transform:matrix(0.296362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296362,0.000000,0.000000,0.250000,0,0);}
.m2a_c00308{transform:matrix(0.297391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297391,0.000000,0.000000,0.250000,0,0);}
.m5a_c00308{transform:matrix(0.299636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299636,0.000000,0.000000,0.250000,0,0);}
.m7f_c00308{transform:matrix(0.300467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300467,0.000000,0.000000,0.250000,0,0);}
.ma9_c00308{transform:matrix(0.300985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300985,0.000000,0.000000,0.250000,0,0);}
.m3a_c00308{transform:matrix(0.301472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301472,0.000000,0.000000,0.250000,0,0);}
.m94_c00308{transform:matrix(0.301683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301683,0.000000,0.000000,0.250000,0,0);}
.m99_c00308{transform:matrix(0.301895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301895,0.000000,0.000000,0.250000,0,0);}
.m67_c00308{transform:matrix(0.301914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301914,0.000000,0.000000,0.250000,0,0);}
.m9b_c00308{transform:matrix(0.302103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302103,0.000000,0.000000,0.250000,0,0);}
.m16_c00308{transform:matrix(0.302357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302357,0.000000,0.000000,0.250000,0,0);}
.m10_c00308{transform:matrix(0.302695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302695,0.000000,0.000000,0.250000,0,0);}
.mb5_c00308{transform:matrix(0.303987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303987,0.000000,0.000000,0.250000,0,0);}
.m8f_c00308{transform:matrix(0.304014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304014,0.000000,0.000000,0.250000,0,0);}
.mbf_c00308{transform:matrix(0.304412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304412,0.000000,0.000000,0.250000,0,0);}
.m21_c00308{transform:matrix(0.304597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304597,0.000000,0.000000,0.250000,0,0);}
.mae_c00308{transform:matrix(0.304821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304821,0.000000,0.000000,0.250000,0,0);}
.m75_c00308{transform:matrix(0.304876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304876,0.000000,0.000000,0.250000,0,0);}
.m84_c00308{transform:matrix(0.305029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305029,0.000000,0.000000,0.250000,0,0);}
.mc_c00308{transform:matrix(0.305967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305967,0.000000,0.000000,0.250000,0,0);}
.ma4_c00308{transform:matrix(0.306100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306100,0.000000,0.000000,0.250000,0,0);}
.m29_c00308{transform:matrix(0.306588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306588,0.000000,0.000000,0.250000,0,0);}
.mbb_c00308{transform:matrix(0.306640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306640,0.000000,0.000000,0.250000,0,0);}
.m85_c00308{transform:matrix(0.307214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307214,0.000000,0.000000,0.250000,0,0);}
.m31_c00308{transform:matrix(0.307360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307360,0.000000,0.000000,0.250000,0,0);}
.m37_c00308{transform:matrix(0.311147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311147,0.000000,0.000000,0.250000,0,0);}
.m6a_c00308{transform:matrix(0.311328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311328,0.000000,0.000000,0.250000,0,0);}
.m55_c00308{transform:matrix(0.311432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311432,0.000000,0.000000,0.250000,0,0);}
.ma_c00308{transform:matrix(0.311740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311740,0.000000,0.000000,0.250000,0,0);}
.mc7_c00308{transform:matrix(0.312789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312789,0.000000,0.000000,0.250000,0,0);}
.mc9_c00308{transform:matrix(0.312892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312892,0.000000,0.000000,0.250000,0,0);}
.m98_c00308{transform:matrix(0.312942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312942,0.000000,0.000000,0.250000,0,0);}
.m5f_c00308{transform:matrix(0.313893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313893,0.000000,0.000000,0.250000,0,0);}
.ma7_c00308{transform:matrix(0.314883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314883,0.000000,0.000000,0.250000,0,0);}
.m3e_c00308{transform:matrix(0.315303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315303,0.000000,0.000000,0.250000,0,0);}
.m9e_c00308{transform:matrix(0.315307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315307,0.000000,0.000000,0.250000,0,0);}
.m7c_c00308{transform:matrix(0.315892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315892,0.000000,0.000000,0.250000,0,0);}
.m14_c00308{transform:matrix(0.315976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315976,0.000000,0.000000,0.250000,0,0);}
.m48_c00308{transform:matrix(0.316513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316513,0.000000,0.000000,0.250000,0,0);}
.m74_c00308{transform:matrix(0.316661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316661,0.000000,0.000000,0.250000,0,0);}
.mb_c00308{transform:matrix(0.316781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316781,0.000000,0.000000,0.250000,0,0);}
.m89_c00308{transform:matrix(0.316808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316808,0.000000,0.000000,0.250000,0,0);}
.m8a_c00308{transform:matrix(0.316874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316874,0.000000,0.000000,0.250000,0,0);}
.m71_c00308{transform:matrix(0.317471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317471,0.000000,0.000000,0.250000,0,0);}
.m9d_c00308{transform:matrix(0.317513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317513,0.000000,0.000000,0.250000,0,0);}
.mb2_c00308{transform:matrix(0.318316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318316,0.000000,0.000000,0.250000,0,0);}
.m59_c00308{transform:matrix(0.318624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318624,0.000000,0.000000,0.250000,0,0);}
.m3d_c00308{transform:matrix(0.319624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319624,0.000000,0.000000,0.250000,0,0);}
.m42_c00308{transform:matrix(0.320189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320189,0.000000,0.000000,0.250000,0,0);}
.m82_c00308{transform:matrix(0.320728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320728,0.000000,0.000000,0.250000,0,0);}
.m68_c00308{transform:matrix(0.321714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321714,0.000000,0.000000,0.250000,0,0);}
.mb6_c00308{transform:matrix(0.322774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322774,0.000000,0.000000,0.250000,0,0);}
.m50_c00308{transform:matrix(0.322841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322841,0.000000,0.000000,0.250000,0,0);}
.m23_c00308{transform:matrix(0.323536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323536,0.000000,0.000000,0.250000,0,0);}
.m32_c00308{transform:matrix(0.324896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324896,0.000000,0.000000,0.250000,0,0);}
.me_c00308{transform:matrix(0.325121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325121,0.000000,0.000000,0.250000,0,0);}
.mbc_c00308{transform:matrix(0.326354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326354,0.000000,0.000000,0.250000,0,0);}
.m11_c00308{transform:matrix(0.326490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326490,0.000000,0.000000,0.250000,0,0);}
.m6f_c00308{transform:matrix(0.327110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327110,0.000000,0.000000,0.250000,0,0);}
.mb4_c00308{transform:matrix(0.327177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327177,0.000000,0.000000,0.250000,0,0);}
.m73_c00308{transform:matrix(0.328642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328642,0.000000,0.000000,0.250000,0,0);}
.m64_c00308{transform:matrix(0.328644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328644,0.000000,0.000000,0.250000,0,0);}
.m1c_c00308{transform:matrix(0.328745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328745,0.000000,0.000000,0.250000,0,0);}
.m7b_c00308{transform:matrix(0.329223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329223,0.000000,0.000000,0.250000,0,0);}
.m1d_c00308{transform:matrix(0.329277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329277,0.000000,0.000000,0.250000,0,0);}
.m27_c00308{transform:matrix(0.329791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329791,0.000000,0.000000,0.250000,0,0);}
.m40_c00308{transform:matrix(0.330601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330601,0.000000,0.000000,0.250000,0,0);}
.m2e_c00308{transform:matrix(0.330953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330953,0.000000,0.000000,0.250000,0,0);}
.m69_c00308{transform:matrix(0.331027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331027,0.000000,0.000000,0.250000,0,0);}
.m52_c00308{transform:matrix(0.331029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331029,0.000000,0.000000,0.250000,0,0);}
.mad_c00308{transform:matrix(0.331473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331473,0.000000,0.000000,0.250000,0,0);}
.mc5_c00308{transform:matrix(0.332242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332242,0.000000,0.000000,0.250000,0,0);}
.m8_c00308{transform:matrix(0.332508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332508,0.000000,0.000000,0.250000,0,0);}
.m9a_c00308{transform:matrix(0.333006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333006,0.000000,0.000000,0.250000,0,0);}
.m2f_c00308{transform:matrix(0.334473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334473,0.000000,0.000000,0.250000,0,0);}
.m7e_c00308{transform:matrix(0.334511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334511,0.000000,0.000000,0.250000,0,0);}
.m2_c00308{transform:matrix(0.334628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334628,0.000000,0.000000,0.250000,0,0);}
.m57_c00308{transform:matrix(0.334788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334788,0.000000,0.000000,0.250000,0,0);}
.m81_c00308{transform:matrix(0.334844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334844,0.000000,0.000000,0.250000,0,0);}
.m70_c00308{transform:matrix(0.335129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335129,0.000000,0.000000,0.250000,0,0);}
.m77_c00308{transform:matrix(0.335996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335996,0.000000,0.000000,0.250000,0,0);}
.m43_c00308{transform:matrix(0.336346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336346,0.000000,0.000000,0.250000,0,0);}
.m8c_c00308{transform:matrix(0.336469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336469,0.000000,0.000000,0.250000,0,0);}
.m6d_c00308{transform:matrix(0.336696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336696,0.000000,0.000000,0.250000,0,0);}
.m9f_c00308{transform:matrix(0.336756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336756,0.000000,0.000000,0.250000,0,0);}
.m47_c00308{transform:matrix(0.337036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337036,0.000000,0.000000,0.250000,0,0);}
.m36_c00308{transform:matrix(0.337497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337497,0.000000,0.000000,0.250000,0,0);}
.md2_c00308{transform:matrix(0.337675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337675,0.000000,0.000000,0.250000,0,0);}
.m3b_c00308{transform:matrix(0.339083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339083,0.000000,0.000000,0.250000,0,0);}
.mb7_c00308{transform:matrix(0.339905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339905,0.000000,0.000000,0.250000,0,0);}
.m2c_c00308{transform:matrix(0.340457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340457,0.000000,0.000000,0.250000,0,0);}
.ma2_c00308{transform:matrix(0.341002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341002,0.000000,0.000000,0.250000,0,0);}
.mac_c00308{transform:matrix(0.341233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341233,0.000000,0.000000,0.250000,0,0);}
.m6e_c00308{transform:matrix(0.341235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341235,0.000000,0.000000,0.250000,0,0);}
.md_c00308{transform:matrix(0.341332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341332,0.000000,0.000000,0.250000,0,0);}
.m6_c00308{transform:matrix(0.341694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341694,0.000000,0.000000,0.250000,0,0);}
.mda_c00308{transform:matrix(0.341941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341941,0.000000,0.000000,0.250000,0,0);}
.m1a_c00308{transform:matrix(0.342455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342455,0.000000,0.000000,0.250000,0,0);}
.mc6_c00308{transform:matrix(0.343121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343121,0.000000,0.000000,0.250000,0,0);}
.m56_c00308{transform:matrix(0.343899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343899,0.000000,0.000000,0.250000,0,0);}
.mb3_c00308{transform:matrix(0.345168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345168,0.000000,0.000000,0.250000,0,0);}
.m53_c00308{transform:matrix(0.345810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345810,0.000000,0.000000,0.250000,0,0);}
.mc4_c00308{transform:matrix(0.346188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346188,0.000000,0.000000,0.250000,0,0);}
.ma6_c00308{transform:matrix(0.346703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346703,0.000000,0.000000,0.250000,0,0);}
.m5_c00308{transform:matrix(0.346754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346754,0.000000,0.000000,0.250000,0,0);}
.m3_c00308{transform:matrix(0.349228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349228,0.000000,0.000000,0.250000,0,0);}
.m93_c00308{transform:matrix(0.349734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349734,0.000000,0.000000,0.250000,0,0);}
.mcb_c00308{transform:matrix(0.349969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349969,0.000000,0.000000,0.250000,0,0);}
.mcf_c00308{transform:matrix(0.350125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350125,0.000000,0.000000,0.250000,0,0);}
.m6b_c00308{transform:matrix(0.351019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351019,0.000000,0.000000,0.250000,0,0);}
.m54_c00308{transform:matrix(0.351671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351671,0.000000,0.000000,0.250000,0,0);}
.m7a_c00308{transform:matrix(0.352932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352932,0.000000,0.000000,0.250000,0,0);}
.m22_c00308{transform:matrix(0.354559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354559,0.000000,0.000000,0.250000,0,0);}
.m39_c00308{transform:matrix(0.354986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354986,0.000000,0.000000,0.250000,0,0);}
.m9c_c00308{transform:matrix(0.355332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355332,0.000000,0.000000,0.250000,0,0);}
.maf_c00308{transform:matrix(0.355800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355800,0.000000,0.000000,0.250000,0,0);}
.m49_c00308{transform:matrix(0.356009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356009,0.000000,0.000000,0.250000,0,0);}
.m1e_c00308{transform:matrix(0.356071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356071,0.000000,0.000000,0.250000,0,0);}
.m30_c00308{transform:matrix(0.356808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356808,0.000000,0.000000,0.250000,0,0);}
.m5e_c00308{transform:matrix(0.357626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357626,0.000000,0.000000,0.250000,0,0);}
.m60_c00308{transform:matrix(0.358583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358583,0.000000,0.000000,0.250000,0,0);}
.m66_c00308{transform:matrix(0.359253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359253,0.000000,0.000000,0.250000,0,0);}
.m8e_c00308{transform:matrix(0.359492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359492,0.000000,0.000000,0.250000,0,0);}
.m24_c00308{transform:matrix(0.359648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359648,0.000000,0.000000,0.250000,0,0);}
.md9_c00308{transform:matrix(0.359726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359726,0.000000,0.000000,0.250000,0,0);}
.m13_c00308{transform:matrix(0.360163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360163,0.000000,0.000000,0.250000,0,0);}
.m4f_c00308{transform:matrix(0.361892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361892,0.000000,0.000000,0.250000,0,0);}
.m44_c00308{transform:matrix(0.364559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364559,0.000000,0.000000,0.250000,0,0);}
.md0_c00308{transform:matrix(0.365848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365848,0.000000,0.000000,0.250000,0,0);}
.m33_c00308{transform:matrix(0.366394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366394,0.000000,0.000000,0.250000,0,0);}
.m62_c00308{transform:matrix(0.366760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366760,0.000000,0.000000,0.250000,0,0);}
.mc8_c00308{transform:matrix(0.367144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367144,0.000000,0.000000,0.250000,0,0);}
.m5b_c00308{transform:matrix(0.368594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368594,0.000000,0.000000,0.250000,0,0);}
.m65_c00308{transform:matrix(0.369586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369586,0.000000,0.000000,0.250000,0,0);}
.ma0_c00308{transform:matrix(0.371835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371835,0.000000,0.000000,0.250000,0,0);}
.m41_c00308{transform:matrix(0.374072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374072,0.000000,0.000000,0.250000,0,0);}
.m4c_c00308{transform:matrix(0.376912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376912,0.000000,0.000000,0.250000,0,0);}
.m38_c00308{transform:matrix(0.379717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379717,0.000000,0.000000,0.250000,0,0);}
.m95_c00308{transform:matrix(0.384182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384182,0.000000,0.000000,0.250000,0,0);}
.m80_c00308{transform:matrix(0.385117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385117,0.000000,0.000000,0.250000,0,0);}
.m17_c00308{transform:matrix(0.385785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385785,0.000000,0.000000,0.250000,0,0);}
.m6c_c00308{transform:matrix(0.386436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386436,0.000000,0.000000,0.250000,0,0);}
.m78_c00308{transform:matrix(0.392927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392927,0.000000,0.000000,0.250000,0,0);}
.mab_c00308{transform:matrix(0.393041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393041,0.000000,0.000000,0.250000,0,0);}
.m18_c00308{transform:matrix(0.393274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393274,0.000000,0.000000,0.250000,0,0);}
.m79_c00308{transform:matrix(0.399536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399536,0.000000,0.000000,0.250000,0,0);}
.m34_c00308{transform:matrix(0.399544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399544,0.000000,0.000000,0.250000,0,0);}
.m28_c00308{transform:matrix(0.399703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399703,0.000000,0.000000,0.250000,0,0);}
.m90_c00308{transform:matrix(0.410443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410443,0.000000,0.000000,0.250000,0,0);}
.mba_c00308{transform:matrix(0.411565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411565,0.000000,0.000000,0.250000,0,0);}
.mca_c00308{transform:matrix(0.415311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415311,0.000000,0.000000,0.250000,0,0);}
.m45_c00308{transform:matrix(0.416660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416660,0.000000,0.000000,0.250000,0,0);}
.mcd_c00308{transform:matrix(0.444441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444441,0.000000,0.000000,0.250000,0,0);}
.mbe_c00308{transform:matrix(0.460210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460210,0.000000,0.000000,0.250000,0,0);}
.ma8_c00308{transform:matrix(0.469700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469700,0.000000,0.000000,0.250000,0,0);}
.mc0_c00308{transform:matrix(0.928558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.928558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.928558,0.000000,0.000000,0.250000,0,0);}
.v0_c00308{vertical-align:0.000000px;}
.lsa_c00308{letter-spacing:-2.480940px;}
.lsd_c00308{letter-spacing:-2.091078px;}
.ls16_c00308{letter-spacing:-1.757923px;}
.ls12_c00308{letter-spacing:-0.864785px;}
.ls7_c00308{letter-spacing:0.000000px;}
.ls1_c00308{letter-spacing:0.070884px;}
.ls3_c00308{letter-spacing:0.503276px;}
.ls13_c00308{letter-spacing:0.800989px;}
.ls0_c00308{letter-spacing:1.290089px;}
.ls14_c00308{letter-spacing:2.366100px;}
.lsb_c00308{letter-spacing:2.663100px;}
.lsc_c00308{letter-spacing:2.880900px;}
.ls5_c00308{letter-spacing:3.005482px;}
.ls15_c00308{letter-spacing:3.189780px;}
.ls10_c00308{letter-spacing:3.207610px;}
.ls9_c00308{letter-spacing:3.544200px;}
.ls8_c00308{letter-spacing:3.999610px;}
.ls17_c00308{letter-spacing:9.979398px;}
.ls4_c00308{letter-spacing:12.404700px;}
.lse_c00308{letter-spacing:12.830598px;}
.ls2_c00308{letter-spacing:20.698128px;}
.lsf_c00308{letter-spacing:29.937798px;}
.ls18_c00308{letter-spacing:48.470598px;}
.ls11_c00308{letter-spacing:49.896198px;}
.ls6_c00308{letter-spacing:70.524108px;}
.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;}
}
.ws8_c00308{word-spacing:-20.726482px;}
.ws2_c00308{word-spacing:-19.011089px;}
.ws5_c00308{word-spacing:-18.521989px;}
.ws7_c00308{word-spacing:-18.224276px;}
.ws4_c00308{word-spacing:-17.791884px;}
.ws0_c00308{word-spacing:-17.721000px;}
.ws3_c00308{word-spacing:-2.552220px;}
.ws9_c00308{word-spacing:0.000000px;}
.ws6_c00308{word-spacing:3.827736px;}
.ws1_c00308{word-spacing:4.890996px;}
._f_c00308{margin-left:-8.718732px;}
._5_c00308{margin-left:-7.159284px;}
._17_c00308{margin-left:-5.741604px;}
._12_c00308{margin-left:-4.394808px;}
._18_c00308{margin-left:-3.232706px;}
._d_c00308{width:2.197008px;}
._16_c00308{width:4.111272px;}
._9_c00308{width:6.237792px;}
._4_c00308{width:7.868124px;}
._7_c00308{width:9.852876px;}
._14_c00308{width:11.909304px;}
._b_c00308{width:13.255308px;}
._6_c00308{width:15.027408px;}
._10_c00308{width:16.232436px;}
._a_c00308{width:21.478248px;}
._11_c00308{width:22.895532px;}
._2_c00308{width:24.384096px;}
._8_c00308{width:25.801776px;}
._13_c00308{width:30.040639px;}
._e_c00308{width:34.085304px;}
._3_c00308{width:35.476056px;}
._1_c00308{width:36.504072px;}
._0_c00308{width:38.844432px;}
._1a_c00308{width:39.874428px;}
._c_c00308{width:43.510896px;}
._19_c00308{width:50.980248px;}
._15_c00308{width:53.197848px;}
.fc0_c00308{color:transparent;}
.fse_c00308{font-size:9.979398px;}
.fs6_c00308{font-size:12.830598px;}
.fsd_c00308{font-size:16.038000px;}
.fs0_c00308{font-size:22.176000px;}
.fs7_c00308{font-size:25.146000px;}
.fsb_c00308{font-size:27.720000px;}
.fs8_c00308{font-size:29.937798px;}
.fsf_c00308{font-size:33.660000px;}
.fsc_c00308{font-size:47.322000px;}
.fs10_c00308{font-size:48.470598px;}
.fsa_c00308{font-size:49.896198px;}
.fs3_c00308{font-size:53.262000px;}
.fs4_c00308{font-size:57.618000px;}
.fs5_c00308{font-size:62.568000px;}
.fs9_c00308{font-size:64.152198px;}
.fs2_c00308{font-size:70.884000px;}
.fs1_c00308{font-size:79.992198px;}
.y0_c00308{bottom:0.000000px;}
.y1_c00308{bottom:76.500000px;}
.y22_c00308{bottom:125.716185px;}
.y20_c00308{bottom:148.887135px;}
.y21_c00308{bottom:152.802585px;}
.y1f_c00308{bottom:156.371535px;}
.y1e_c00308{bottom:184.170735px;}
.y1d_c00308{bottom:187.729785px;}
.y1c_c00308{bottom:223.726185px;}
.y1b_c00308{bottom:255.802185px;}
.y1a_c00308{bottom:290.729385px;}
.y19_c00308{bottom:323.161785px;}
.y18_c00308{bottom:355.599135px;}
.y16_c00308{bottom:389.100735px;}
.y17_c00308{bottom:389.452185px;}
.y15_c00308{bottom:415.830735px;}
.y14_c00308{bottom:453.247785px;}
.y13_c00308{bottom:486.036585px;}
.y12_c00308{bottom:518.825385px;}
.y11_c00308{bottom:551.614185px;}
.y10_c00308{bottom:585.828585px;}
.yf_c00308{bottom:618.260985px;}
.ye_c00308{bottom:650.693385px;}
.yd_c00308{bottom:664.954335px;}
.yc_c00308{bottom:677.423385px;}
.yb_c00308{bottom:682.774335px;}
.ya_c00308{bottom:683.482185px;}
.y9_c00308{bottom:747.277785px;}
.y8_c00308{bottom:779.710185px;}
.y7_c00308{bottom:812.147535px;}
.y6_c00308{bottom:845.644185px;}
.y5_c00308{bottom:879.150735px;}
.y4_c00308{bottom:913.716585px;}
.y3_c00308{bottom:1071.601785px;}
.y2_c00308{bottom:1092.272985px;}
.hf_c00308{height:6.646279px;}
.h7_c00308{height:8.545178px;}
.he_c00308{height:15.740420px;}
.h9_c00308{height:19.938573px;}
.h2_c00308{height:23.128875px;}
.h8_c00308{height:26.226492px;}
.hc_c00308{height:28.911094px;}
.h11_c00308{height:32.281418px;}
.h10_c00308{height:33.035449px;}
.hb_c00308{height:33.230868px;}
.hd_c00308{height:49.355367px;}
.h5_c00308{height:52.273740px;}
.h6_c00308{height:56.548916px;}
.ha_c00308{height:62.961874px;}
.h4_c00308{height:69.568770px;}
.h3_c00308{height:78.507968px;}
.h1_c00308{height:1110.000000px;}
.h0_c00308{height:1263.000000px;}
.w1_c00308{width:781.500000px;}
.w0_c00308{width:892.500000px;}
.x0_c00308{left:0.000000px;}
.x1_c00308{left:55.500000px;}
.x2c_c00308{left:93.106485px;}
.x4_c00308{left:94.195485px;}
.x5e_c00308{left:95.432985px;}
.x74_c00308{left:97.214985px;}
.x4a_c00308{left:105.045885px;}
.x65_c00308{left:116.490285px;}
.x14_c00308{left:127.132785px;}
.x70_c00308{left:128.315835px;}
.x33_c00308{left:138.621735px;}
.x6d_c00308{left:144.749835px;}
.x57_c00308{left:148.353435px;}
.x1c_c00308{left:149.670135px;}
.x67_c00308{left:152.565885px;}
.x4d_c00308{left:159.931485px;}
.x1d_c00308{left:161.743185px;}
.x15_c00308{left:171.123435px;}
.x75_c00308{left:172.479735px;}
.x5_c00308{left:181.538235px;}
.x68_c00308{left:182.736135px;}
.x59_c00308{left:193.106385px;}
.x1e_c00308{left:194.195385px;}
.x47_c00308{left:202.922235px;}
.x3a_c00308{left:204.857685px;}
.x6_c00308{left:205.862535px;}
.x25_c00308{left:215.915985px;}
.x5f_c00308{left:216.955485px;}
.x55_c00308{left:225.340785px;}
.x34_c00308{left:227.296035px;}
.x43_c00308{left:231.973785px;}
.x3b_c00308{left:236.750535px;}
.x7_c00308{left:238.770135px;}
.x8_c00308{left:248.556285px;}
.x26_c00308{left:249.744285px;}
.x4e_c00308{left:259.733385px;}
.x2d_c00308{left:261.154035px;}
.x9_c00308{left:264.074535px;}
.x60_c00308{left:266.569335px;}
.x50_c00308{left:271.177785px;}
.x44_c00308{left:280.929285px;}
.x1f_c00308{left:282.364785px;}
.x6e_c00308{left:292.378635px;}
.xa_c00308{left:293.566635px;}
.x58_c00308{left:303.328035px;}
.x20_c00308{left:304.615035px;}
.x2e_c00308{left:315.049635px;}
.x64_c00308{left:316.425735px;}
.x61_c00308{left:325.167435px;}
.x4f_c00308{left:326.365335px;}
.x5a_c00308{left:327.385035px;}
.x16_c00308{left:337.789935px;}
.x6f_c00308{left:338.839335px;}
.x3c_c00308{left:347.264235px;}
.x69_c00308{left:348.813585px;}
.x27_c00308{left:358.624485px;}
.x2f_c00308{left:359.891685px;}
.x35_c00308{left:370.553985px;}
.x21_c00308{left:371.593485px;}
.x30_c00308{left:381.938985px;}
.x48_c00308{left:392.314185px;}
.x51_c00308{left:393.764535px;}
.x36_c00308{left:402.808185px;}
.xb_c00308{left:404.080335px;}
.x52_c00308{left:414.648585px;}
.x17_c00308{left:425.830635px;}
.x71_c00308{left:426.855285px;}
.x3d_c00308{left:436.388985px;}
.x66_c00308{left:438.250185px;}
.x76_c00308{left:440.645985px;}
.x77_c00308{left:445.284135px;}
.xc_c00308{left:448.264035px;}
.x22_c00308{left:449.362935px;}
.x18_c00308{left:458.951085px;}
.x72_c00308{left:470.152935px;}
.x5b_c00308{left:471.949785px;}
.x54_c00308{left:473.152635px;}
.x37_c00308{left:479.805435px;}
.x31_c00308{left:481.755735px;}
.x6a_c00308{left:491.527035px;}
.xd_c00308{left:493.155585px;}
.x3e_c00308{left:503.397135px;}
.x45_c00308{left:513.297135px;}
.x38_c00308{left:514.579185px;}
.x28_c00308{left:525.602835px;}
.x56_c00308{left:527.231385px;}
.x5c_c00308{left:536.329485px;}
.xe_c00308{left:548.075835px;}
.x6b_c00308{left:557.183835px;}
.x32_c00308{left:558.713385px;}
.x29_c00308{left:569.108385px;}
.x3f_c00308{left:570.133035px;}
.x39_c00308{left:572.241735px;}
.x62_c00308{left:579.463785px;}
.xf_c00308{left:581.626935px;}
.x4b_c00308{left:591.556635px;}
.x10_c00308{left:592.596135px;}
.x23_c00308{left:601.377435px;}
.x19_c00308{left:603.367335px;}
.x1a_c00308{left:614.049435px;}
.x41_c00308{left:617.776785px;}
.x2a_c00308{left:624.498885px;}
.x11_c00308{left:625.751235px;}
.x49_c00308{left:635.750235px;}
.x1b_c00308{left:637.096635px;}
.x6c_c00308{left:645.214635px;}
.x24_c00308{left:646.590735px;}
.x5d_c00308{left:657.594585px;}
.x12_c00308{left:658.891485px;}
.x2_c00308{left:660.104235px;}
.x3_c00308{left:668.840985px;}
.x40_c00308{left:679.889385px;}
.x53_c00308{left:690.576435px;}
.x13_c00308{left:691.705035px;}
.x73_c00308{left:695.471985px;}
.x42_c00308{left:701.713935px;}
.x46_c00308{left:712.247535px;}
.x63_c00308{left:714.098835px;}
.x2b_c00308{left:724.800735px;}
.x4c_c00308{left:736.264935px;}
@media print{
.v0_c00308{vertical-align:0.000000pt;}
.lsa_c00308{letter-spacing:-2.205280pt;}
.lsd_c00308{letter-spacing:-1.858736pt;}
.ls16_c00308{letter-spacing:-1.562598pt;}
.ls12_c00308{letter-spacing:-0.768698pt;}
.ls7_c00308{letter-spacing:0.000000pt;}
.ls1_c00308{letter-spacing:0.063008pt;}
.ls3_c00308{letter-spacing:0.447357pt;}
.ls13_c00308{letter-spacing:0.711990pt;}
.ls0_c00308{letter-spacing:1.146746pt;}
.ls14_c00308{letter-spacing:2.103200pt;}
.lsb_c00308{letter-spacing:2.367200pt;}
.lsc_c00308{letter-spacing:2.560800pt;}
.ls5_c00308{letter-spacing:2.671539pt;}
.ls15_c00308{letter-spacing:2.835360pt;}
.ls10_c00308{letter-spacing:2.851209pt;}
.ls9_c00308{letter-spacing:3.150400pt;}
.ls8_c00308{letter-spacing:3.555209pt;}
.ls17_c00308{letter-spacing:8.870576pt;}
.ls4_c00308{letter-spacing:11.026400pt;}
.lse_c00308{letter-spacing:11.404976pt;}
.ls2_c00308{letter-spacing:18.398336pt;}
.lsf_c00308{letter-spacing:26.611376pt;}
.ls18_c00308{letter-spacing:43.084976pt;}
.ls11_c00308{letter-spacing:44.352176pt;}
.ls6_c00308{letter-spacing:62.688096pt;}
.ws8_c00308{word-spacing:-18.423539pt;}
.ws2_c00308{word-spacing:-16.898746pt;}
.ws5_c00308{word-spacing:-16.463990pt;}
.ws7_c00308{word-spacing:-16.199357pt;}
.ws4_c00308{word-spacing:-15.815008pt;}
.ws0_c00308{word-spacing:-15.752000pt;}
.ws3_c00308{word-spacing:-2.268640pt;}
.ws9_c00308{word-spacing:0.000000pt;}
.ws6_c00308{word-spacing:3.402432pt;}
.ws1_c00308{word-spacing:4.347552pt;}
._f_c00308{margin-left:-7.749984pt;}
._5_c00308{margin-left:-6.363808pt;}
._17_c00308{margin-left:-5.103648pt;}
._12_c00308{margin-left:-3.906496pt;}
._18_c00308{margin-left:-2.873517pt;}
._d_c00308{width:1.952896pt;}
._16_c00308{width:3.654464pt;}
._9_c00308{width:5.544704pt;}
._4_c00308{width:6.993888pt;}
._7_c00308{width:8.758112pt;}
._14_c00308{width:10.586048pt;}
._b_c00308{width:11.782496pt;}
._6_c00308{width:13.357696pt;}
._10_c00308{width:14.428832pt;}
._a_c00308{width:19.091776pt;}
._11_c00308{width:20.351584pt;}
._2_c00308{width:21.674752pt;}
._8_c00308{width:22.934912pt;}
._13_c00308{width:26.702790pt;}
._e_c00308{width:30.298048pt;}
._3_c00308{width:31.534272pt;}
._1_c00308{width:32.448064pt;}
._0_c00308{width:34.528384pt;}
._1a_c00308{width:35.443936pt;}
._c_c00308{width:38.676352pt;}
._19_c00308{width:45.315776pt;}
._15_c00308{width:47.286976pt;}
.fse_c00308{font-size:8.870576pt;}
.fs6_c00308{font-size:11.404976pt;}
.fsd_c00308{font-size:14.256000pt;}
.fs0_c00308{font-size:19.712000pt;}
.fs7_c00308{font-size:22.352000pt;}
.fsb_c00308{font-size:24.640000pt;}
.fs8_c00308{font-size:26.611376pt;}
.fsf_c00308{font-size:29.920000pt;}
.fsc_c00308{font-size:42.064000pt;}
.fs10_c00308{font-size:43.084976pt;}
.fsa_c00308{font-size:44.352176pt;}
.fs3_c00308{font-size:47.344000pt;}
.fs4_c00308{font-size:51.216000pt;}
.fs5_c00308{font-size:55.616000pt;}
.fs9_c00308{font-size:57.024176pt;}
.fs2_c00308{font-size:63.008000pt;}
.fs1_c00308{font-size:71.104176pt;}
.y0_c00308{bottom:0.000000pt;}
.y1_c00308{bottom:68.000000pt;}
.y22_c00308{bottom:111.747720pt;}
.y20_c00308{bottom:132.344120pt;}
.y21_c00308{bottom:135.824520pt;}
.y1f_c00308{bottom:138.996920pt;}
.y1e_c00308{bottom:163.707320pt;}
.y1d_c00308{bottom:166.870920pt;}
.y1c_c00308{bottom:198.867720pt;}
.y1b_c00308{bottom:227.379720pt;}
.y1a_c00308{bottom:258.426120pt;}
.y19_c00308{bottom:287.254920pt;}
.y18_c00308{bottom:316.088120pt;}
.y16_c00308{bottom:345.867320pt;}
.y17_c00308{bottom:346.179720pt;}
.y15_c00308{bottom:369.627320pt;}
.y14_c00308{bottom:402.886920pt;}
.y13_c00308{bottom:432.032520pt;}
.y12_c00308{bottom:461.178120pt;}
.y11_c00308{bottom:490.323720pt;}
.y10_c00308{bottom:520.736520pt;}
.yf_c00308{bottom:549.565320pt;}
.ye_c00308{bottom:578.394120pt;}
.yd_c00308{bottom:591.070520pt;}
.yc_c00308{bottom:602.154120pt;}
.yb_c00308{bottom:606.910520pt;}
.ya_c00308{bottom:607.539720pt;}
.y9_c00308{bottom:664.246920pt;}
.y8_c00308{bottom:693.075720pt;}
.y7_c00308{bottom:721.908920pt;}
.y6_c00308{bottom:751.683720pt;}
.y5_c00308{bottom:781.467320pt;}
.y4_c00308{bottom:812.192520pt;}
.y3_c00308{bottom:952.534920pt;}
.y2_c00308{bottom:970.909320pt;}
.hf_c00308{height:5.907804pt;}
.h7_c00308{height:7.595714pt;}
.he_c00308{height:13.991484pt;}
.h9_c00308{height:17.723176pt;}
.h2_c00308{height:20.559000pt;}
.h8_c00308{height:23.312438pt;}
.hc_c00308{height:25.698750pt;}
.h11_c00308{height:28.694594pt;}
.h10_c00308{height:29.364844pt;}
.hb_c00308{height:29.538549pt;}
.hd_c00308{height:43.871438pt;}
.h5_c00308{height:46.465547pt;}
.h6_c00308{height:50.265703pt;}
.ha_c00308{height:55.966110pt;}
.h4_c00308{height:61.838906pt;}
.h3_c00308{height:69.784860pt;}
.h1_c00308{height:986.666667pt;}
.h0_c00308{height:1122.666667pt;}
.w1_c00308{width:694.666667pt;}
.w0_c00308{width:793.333333pt;}
.x0_c00308{left:0.000000pt;}
.x1_c00308{left:49.333333pt;}
.x2c_c00308{left:82.761320pt;}
.x4_c00308{left:83.729320pt;}
.x5e_c00308{left:84.829320pt;}
.x74_c00308{left:86.413320pt;}
.x4a_c00308{left:93.374120pt;}
.x65_c00308{left:103.546920pt;}
.x14_c00308{left:113.006920pt;}
.x70_c00308{left:114.058520pt;}
.x33_c00308{left:123.219320pt;}
.x6d_c00308{left:128.666520pt;}
.x57_c00308{left:131.869720pt;}
.x1c_c00308{left:133.040120pt;}
.x67_c00308{left:135.614120pt;}
.x4d_c00308{left:142.161320pt;}
.x1d_c00308{left:143.771720pt;}
.x15_c00308{left:152.109720pt;}
.x75_c00308{left:153.315320pt;}
.x5_c00308{left:161.367320pt;}
.x68_c00308{left:162.432120pt;}
.x59_c00308{left:171.650120pt;}
.x1e_c00308{left:172.618120pt;}
.x47_c00308{left:180.375320pt;}
.x3a_c00308{left:182.095720pt;}
.x6_c00308{left:182.988920pt;}
.x25_c00308{left:191.925320pt;}
.x5f_c00308{left:192.849320pt;}
.x55_c00308{left:200.302920pt;}
.x34_c00308{left:202.040920pt;}
.x43_c00308{left:206.198920pt;}
.x3b_c00308{left:210.444920pt;}
.x7_c00308{left:212.240120pt;}
.x8_c00308{left:220.938920pt;}
.x26_c00308{left:221.994920pt;}
.x4e_c00308{left:230.874120pt;}
.x2d_c00308{left:232.136920pt;}
.x9_c00308{left:234.732920pt;}
.x60_c00308{left:236.950520pt;}
.x50_c00308{left:241.046920pt;}
.x44_c00308{left:249.714920pt;}
.x1f_c00308{left:250.990920pt;}
.x6e_c00308{left:259.892120pt;}
.xa_c00308{left:260.948120pt;}
.x58_c00308{left:269.624920pt;}
.x20_c00308{left:270.768920pt;}
.x2e_c00308{left:280.044120pt;}
.x64_c00308{left:281.267320pt;}
.x61_c00308{left:289.037720pt;}
.x4f_c00308{left:290.102520pt;}
.x5a_c00308{left:291.008920pt;}
.x16_c00308{left:300.257720pt;}
.x6f_c00308{left:301.190520pt;}
.x3c_c00308{left:308.679320pt;}
.x69_c00308{left:310.056520pt;}
.x27_c00308{left:318.777320pt;}
.x2f_c00308{left:319.903720pt;}
.x35_c00308{left:329.381320pt;}
.x21_c00308{left:330.305320pt;}
.x30_c00308{left:339.501320pt;}
.x48_c00308{left:348.723720pt;}
.x51_c00308{left:350.012920pt;}
.x36_c00308{left:358.051720pt;}
.xb_c00308{left:359.182520pt;}
.x52_c00308{left:368.576520pt;}
.x17_c00308{left:378.516120pt;}
.x71_c00308{left:379.426920pt;}
.x3d_c00308{left:387.901320pt;}
.x66_c00308{left:389.555720pt;}
.x76_c00308{left:391.685320pt;}
.x77_c00308{left:395.808120pt;}
.xc_c00308{left:398.456920pt;}
.x22_c00308{left:399.433720pt;}
.x18_c00308{left:407.956520pt;}
.x72_c00308{left:417.913720pt;}
.x5b_c00308{left:419.510920pt;}
.x54_c00308{left:420.580120pt;}
.x37_c00308{left:426.493720pt;}
.x31_c00308{left:428.227320pt;}
.x6a_c00308{left:436.912920pt;}
.xd_c00308{left:438.360520pt;}
.x3e_c00308{left:447.464120pt;}
.x45_c00308{left:456.264120pt;}
.x38_c00308{left:457.403720pt;}
.x28_c00308{left:467.202520pt;}
.x56_c00308{left:468.650120pt;}
.x5c_c00308{left:476.737320pt;}
.xe_c00308{left:487.178520pt;}
.x6b_c00308{left:495.274520pt;}
.x32_c00308{left:496.634120pt;}
.x29_c00308{left:505.874120pt;}
.x3f_c00308{left:506.784920pt;}
.x39_c00308{left:508.659320pt;}
.x62_c00308{left:515.078920pt;}
.xf_c00308{left:517.001720pt;}
.x4b_c00308{left:525.828120pt;}
.x10_c00308{left:526.752120pt;}
.x23_c00308{left:534.557720pt;}
.x19_c00308{left:536.326520pt;}
.x1a_c00308{left:545.821720pt;}
.x41_c00308{left:549.134920pt;}
.x2a_c00308{left:555.110120pt;}
.x11_c00308{left:556.223320pt;}
.x49_c00308{left:565.111320pt;}
.x1b_c00308{left:566.308120pt;}
.x6c_c00308{left:573.524120pt;}
.x24_c00308{left:574.747320pt;}
.x5d_c00308{left:584.528520pt;}
.x12_c00308{left:585.681320pt;}
.x2_c00308{left:586.759320pt;}
.x3_c00308{left:594.525320pt;}
.x40_c00308{left:604.346120pt;}
.x53_c00308{left:613.845720pt;}
.x13_c00308{left:614.848920pt;}
.x73_c00308{left:618.197320pt;}
.x42_c00308{left:623.745720pt;}
.x46_c00308{left:633.108920pt;}
.x63_c00308{left:634.754520pt;}
.x2b_c00308{left:644.267320pt;}
.x4c_c00308{left:654.457720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d4031c7a1eda65beb381fc6a.woff2')format("woff");}.ff1_c00309{font-family:ff1_c00309;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00309;src:url('chunks/assets/font_47488c1ff1b5c7c414372e1b.woff2')format("woff");}.ff2_c00309{font-family:ff2_c00309;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00309;src:url('chunks/assets/font_5c8e13de559559592beef57d.woff2')format("woff");}.ff3_c00309{font-family:ff3_c00309;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00309;src:url('chunks/assets/font_401c6e05529d0e4162385257.woff2')format("woff");}.ff4_c00309{font-family:ff4_c00309;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00309;src:url('chunks/assets/font_57fc59bfeafd5336614d8c79.woff2')format("woff");}.ff5_c00309{font-family:ff5_c00309;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m65_c00309{transform:matrix(0.050001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050001,0.000000,0.000000,0.250000,0,0);}
.m30_c00309{transform:matrix(0.054879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054879,0.000000,0.000000,0.250000,0,0);}
.mab_c00309{transform:matrix(0.076390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076390,0.000000,0.000000,0.250000,0,0);}
.ma9_c00309{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);}
.m8e_c00309{transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);}
.m8_c00309{transform:matrix(0.146511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146511,0.000000,0.000000,0.250000,0,0);}
.m13_c00309{transform:matrix(0.147559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147559,0.000000,0.000000,0.250000,0,0);}
.m2f_c00309{transform:matrix(0.152439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152439,0.000000,0.000000,0.250000,0,0);}
.m10_c00309{transform:matrix(0.152779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152779,0.000000,0.000000,0.250000,0,0);}
.m3a_c00309{transform:matrix(0.153572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153572,0.000000,0.000000,0.250000,0,0);}
.m83_c00309{transform:matrix(0.157142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157142,0.000000,0.000000,0.250000,0,0);}
.m6e_c00309{transform:matrix(0.157670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157670,0.000000,0.000000,0.250000,0,0);}
.m32_c00309{transform:matrix(0.165707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165707,0.000000,0.000000,0.250000,0,0);}
.m12_c00309{transform:matrix(0.168770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168770,0.000000,0.000000,0.250000,0,0);}
.mb0_c00309{transform:matrix(0.173610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173610,0.000000,0.000000,0.250000,0,0);}
.m15_c00309{transform:matrix(0.176316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176316,0.000000,0.000000,0.250000,0,0);}
.maa_c00309{transform:matrix(0.177084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177084,0.000000,0.000000,0.250000,0,0);}
.m3b_c00309{transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);}
.mc3_c00309{transform:matrix(0.187196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187196,0.000000,0.000000,0.250000,0,0);}
.m66_c00309{transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);}
.m19_c00309{transform:matrix(0.193749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193749,0.000000,0.000000,0.250000,0,0);}
.m1a_c00309{transform:matrix(0.193956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193956,0.000000,0.000000,0.250000,0,0);}
.ma8_c00309{transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);}
.m5_c00309{transform:matrix(0.197284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197284,0.000000,0.000000,0.250000,0,0);}
.mb3_c00309{transform:matrix(0.199270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199270,0.000000,0.000000,0.250000,0,0);}
.m63_c00309{transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);}
.ma7_c00309{transform:matrix(0.204861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204861,0.000000,0.000000,0.250000,0,0);}
.m64_c00309{transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);}
.ma6_c00309{transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);}
.m70_c00309{transform:matrix(0.210348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210348,0.000000,0.000000,0.250000,0,0);}
.m1c_c00309{transform:matrix(0.212190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212190,0.000000,0.000000,0.250000,0,0);}
.m41_c00309{transform:matrix(0.212499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212499,0.000000,0.000000,0.250000,0,0);}
.m16_c00309{transform:matrix(0.219768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219768,0.000000,0.000000,0.250000,0,0);}
.m6f_c00309{transform:matrix(0.221850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221850,0.000000,0.000000,0.250000,0,0);}
.mcd_c00309{transform:matrix(0.222619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222619,0.000000,0.000000,0.250000,0,0);}
.m89_c00309{transform:matrix(0.231239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231239,0.000000,0.000000,0.250000,0,0);}
.m76_c00309{transform:matrix(0.236808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236808,0.000000,0.000000,0.250000,0,0);}
.m26_c00309{transform:matrix(0.236880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236880,0.000000,0.000000,0.250000,0,0);}
.m67_c00309{transform:matrix(0.237747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237747,0.000000,0.000000,0.250000,0,0);}
.m1_c00309{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00309{transform:matrix(0.245717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245717,0.000000,0.000000,0.250000,0,0);}
.mc4_c00309{transform:matrix(0.246218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246218,0.000000,0.000000,0.250000,0,0);}
.mc0_c00309{transform:matrix(0.248955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248955,0.000000,0.000000,0.250000,0,0);}
.m0_c00309{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m43_c00309{transform:matrix(0.250430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250430,0.000000,0.000000,0.250000,0,0);}
.mcc_c00309{transform:matrix(0.255714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255714,0.000000,0.000000,0.250000,0,0);}
.m68_c00309{transform:matrix(0.256091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256091,0.000000,0.000000,0.250000,0,0);}
.m3c_c00309{transform:matrix(0.257074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257074,0.000000,0.000000,0.250000,0,0);}
.m20_c00309{transform:matrix(0.261326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261326,0.000000,0.000000,0.250000,0,0);}
.ma2_c00309{transform:matrix(0.262405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262405,0.000000,0.000000,0.250000,0,0);}
.m37_c00309{transform:matrix(0.263044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263044,0.000000,0.000000,0.250000,0,0);}
.m38_c00309{transform:matrix(0.267091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267091,0.000000,0.000000,0.250000,0,0);}
.mb_c00309{transform:matrix(0.268862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268862,0.000000,0.000000,0.250000,0,0);}
.m75_c00309{transform:matrix(0.269195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269195,0.000000,0.000000,0.250000,0,0);}
.m34_c00309{transform:matrix(0.270627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270627,0.000000,0.000000,0.250000,0,0);}
.m31_c00309{transform:matrix(0.271526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271526,0.000000,0.000000,0.250000,0,0);}
.m21_c00309{transform:matrix(0.271777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271777,0.000000,0.000000,0.250000,0,0);}
.mc5_c00309{transform:matrix(0.272312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272312,0.000000,0.000000,0.250000,0,0);}
.m53_c00309{transform:matrix(0.272562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272562,0.000000,0.000000,0.250000,0,0);}
.m4_c00309{transform:matrix(0.273069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273069,0.000000,0.000000,0.250000,0,0);}
.mb7_c00309{transform:matrix(0.273747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273747,0.000000,0.000000,0.250000,0,0);}
.m1d_c00309{transform:matrix(0.276625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276625,0.000000,0.000000,0.250000,0,0);}
.m8a_c00309{transform:matrix(0.278330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278330,0.000000,0.000000,0.250000,0,0);}
.m14_c00309{transform:matrix(0.278377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278377,0.000000,0.000000,0.250000,0,0);}
.m2b_c00309{transform:matrix(0.278381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278381,0.000000,0.000000,0.250000,0,0);}
.mb8_c00309{transform:matrix(0.279125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279125,0.000000,0.000000,0.250000,0,0);}
.m2_c00309{transform:matrix(0.279527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279527,0.000000,0.000000,0.250000,0,0);}
.m88_c00309{transform:matrix(0.280140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280140,0.000000,0.000000,0.250000,0,0);}
.m17_c00309{transform:matrix(0.281646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281646,0.000000,0.000000,0.250000,0,0);}
.m5e_c00309{transform:matrix(0.282209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282209,0.000000,0.000000,0.250000,0,0);}
.m84_c00309{transform:matrix(0.282530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282530,0.000000,0.000000,0.250000,0,0);}
.mc6_c00309{transform:matrix(0.283377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283377,0.000000,0.000000,0.250000,0,0);}
.m7_c00309{transform:matrix(0.284110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284110,0.000000,0.000000,0.250000,0,0);}
.m2a_c00309{transform:matrix(0.284939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284939,0.000000,0.000000,0.250000,0,0);}
.mc1_c00309{transform:matrix(0.285098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285098,0.000000,0.000000,0.250000,0,0);}
.m5b_c00309{transform:matrix(0.285605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285605,0.000000,0.000000,0.250000,0,0);}
.m22_c00309{transform:matrix(0.285817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285817,0.000000,0.000000,0.250000,0,0);}
.m27_c00309{transform:matrix(0.287249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287249,0.000000,0.000000,0.250000,0,0);}
.m86_c00309{transform:matrix(0.287433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287433,0.000000,0.000000,0.250000,0,0);}
.m9d_c00309{transform:matrix(0.289094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289094,0.000000,0.000000,0.250000,0,0);}
.m57_c00309{transform:matrix(0.289095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289095,0.000000,0.000000,0.250000,0,0);}
.maf_c00309{transform:matrix(0.289454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289454,0.000000,0.000000,0.250000,0,0);}
.m90_c00309{transform:matrix(0.289517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289517,0.000000,0.000000,0.250000,0,0);}
.m49_c00309{transform:matrix(0.289844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289844,0.000000,0.000000,0.250000,0,0);}
.m1e_c00309{transform:matrix(0.289849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289849,0.000000,0.000000,0.250000,0,0);}
.m25_c00309{transform:matrix(0.290097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290097,0.000000,0.000000,0.250000,0,0);}
.m81_c00309{transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);}
.m18_c00309{transform:matrix(0.292832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292832,0.000000,0.000000,0.250000,0,0);}
.mc8_c00309{transform:matrix(0.293333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293333,0.000000,0.000000,0.250000,0,0);}
.mbb_c00309{transform:matrix(0.294078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294078,0.000000,0.000000,0.250000,0,0);}
.m97_c00309{transform:matrix(0.294445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294445,0.000000,0.000000,0.250000,0,0);}
.m9c_c00309{transform:matrix(0.295724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295724,0.000000,0.000000,0.250000,0,0);}
.m7a_c00309{transform:matrix(0.295746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295746,0.000000,0.000000,0.250000,0,0);}
.mbd_c00309{transform:matrix(0.295786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295786,0.000000,0.000000,0.250000,0,0);}
.m3d_c00309{transform:matrix(0.296422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296422,0.000000,0.000000,0.250000,0,0);}
.m1b_c00309{transform:matrix(0.298432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298432,0.000000,0.000000,0.250000,0,0);}
.m73_c00309{transform:matrix(0.298439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298439,0.000000,0.000000,0.250000,0,0);}
.mb5_c00309{transform:matrix(0.299119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299119,0.000000,0.000000,0.250000,0,0);}
.mb9_c00309{transform:matrix(0.299179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299179,0.000000,0.000000,0.250000,0,0);}
.md_c00309{transform:matrix(0.299246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299246,0.000000,0.000000,0.250000,0,0);}
.m8f_c00309{transform:matrix(0.299267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299267,0.000000,0.000000,0.250000,0,0);}
.m9a_c00309{transform:matrix(0.299992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299992,0.000000,0.000000,0.250000,0,0);}
.m7c_c00309{transform:matrix(0.300479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300479,0.000000,0.000000,0.250000,0,0);}
.ma_c00309{transform:matrix(0.301383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301383,0.000000,0.000000,0.250000,0,0);}
.mca_c00309{transform:matrix(0.302150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302150,0.000000,0.000000,0.250000,0,0);}
.mbc_c00309{transform:matrix(0.303793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303793,0.000000,0.000000,0.250000,0,0);}
.m51_c00309{transform:matrix(0.304397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304397,0.000000,0.000000,0.250000,0,0);}
.m6_c00309{transform:matrix(0.305414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305414,0.000000,0.000000,0.250000,0,0);}
.mc7_c00309{transform:matrix(0.306415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306415,0.000000,0.000000,0.250000,0,0);}
.m56_c00309{transform:matrix(0.308467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308467,0.000000,0.000000,0.250000,0,0);}
.m4f_c00309{transform:matrix(0.309033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309033,0.000000,0.000000,0.250000,0,0);}
.me_c00309{transform:matrix(0.309048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309048,0.000000,0.000000,0.250000,0,0);}
.mc_c00309{transform:matrix(0.309146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309146,0.000000,0.000000,0.250000,0,0);}
.m24_c00309{transform:matrix(0.309310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309310,0.000000,0.000000,0.250000,0,0);}
.m3_c00309{transform:matrix(0.309726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309726,0.000000,0.000000,0.250000,0,0);}
.m7e_c00309{transform:matrix(0.310202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310202,0.000000,0.000000,0.250000,0,0);}
.mbf_c00309{transform:matrix(0.311263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311263,0.000000,0.000000,0.250000,0,0);}
.m74_c00309{transform:matrix(0.311307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311307,0.000000,0.000000,0.250000,0,0);}
.mb1_c00309{transform:matrix(0.312299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312299,0.000000,0.000000,0.250000,0,0);}
.ma1_c00309{transform:matrix(0.313030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313030,0.000000,0.000000,0.250000,0,0);}
.mb6_c00309{transform:matrix(0.313408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313408,0.000000,0.000000,0.250000,0,0);}
.m60_c00309{transform:matrix(0.313524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313524,0.000000,0.000000,0.250000,0,0);}
.md2_c00309{transform:matrix(0.314080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314080,0.000000,0.000000,0.250000,0,0);}
.mce_c00309{transform:matrix(0.314449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314449,0.000000,0.000000,0.250000,0,0);}
.m4c_c00309{transform:matrix(0.314748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314748,0.000000,0.000000,0.250000,0,0);}
.m2d_c00309{transform:matrix(0.314857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314857,0.000000,0.000000,0.250000,0,0);}
.m3e_c00309{transform:matrix(0.314923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314923,0.000000,0.000000,0.250000,0,0);}
.m94_c00309{transform:matrix(0.314970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314970,0.000000,0.000000,0.250000,0,0);}
.m23_c00309{transform:matrix(0.316854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316854,0.000000,0.000000,0.250000,0,0);}
.m6b_c00309{transform:matrix(0.316855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316855,0.000000,0.000000,0.250000,0,0);}
.m58_c00309{transform:matrix(0.317070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317070,0.000000,0.000000,0.250000,0,0);}
.mac_c00309{transform:matrix(0.318191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318191,0.000000,0.000000,0.250000,0,0);}
.m45_c00309{transform:matrix(0.318411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318411,0.000000,0.000000,0.250000,0,0);}
.m72_c00309{transform:matrix(0.320438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320438,0.000000,0.000000,0.250000,0,0);}
.m44_c00309{transform:matrix(0.320582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320582,0.000000,0.000000,0.250000,0,0);}
.m47_c00309{transform:matrix(0.320725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320725,0.000000,0.000000,0.250000,0,0);}
.m80_c00309{transform:matrix(0.322015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322015,0.000000,0.000000,0.250000,0,0);}
.m50_c00309{transform:matrix(0.322909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322909,0.000000,0.000000,0.250000,0,0);}
.m4d_c00309{transform:matrix(0.324093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324093,0.000000,0.000000,0.250000,0,0);}
.m4a_c00309{transform:matrix(0.324723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324723,0.000000,0.000000,0.250000,0,0);}
.mad_c00309{transform:matrix(0.326307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326307,0.000000,0.000000,0.250000,0,0);}
.m2c_c00309{transform:matrix(0.326384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326384,0.000000,0.000000,0.250000,0,0);}
.m7d_c00309{transform:matrix(0.326976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326976,0.000000,0.000000,0.250000,0,0);}
.m55_c00309{transform:matrix(0.327113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327113,0.000000,0.000000,0.250000,0,0);}
.m35_c00309{transform:matrix(0.327455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327455,0.000000,0.000000,0.250000,0,0);}
.m77_c00309{transform:matrix(0.327491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327491,0.000000,0.000000,0.250000,0,0);}
.mbe_c00309{transform:matrix(0.327682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327682,0.000000,0.000000,0.250000,0,0);}
.m92_c00309{transform:matrix(0.328150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328150,0.000000,0.000000,0.250000,0,0);}
.ma5_c00309{transform:matrix(0.328618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328618,0.000000,0.000000,0.250000,0,0);}
.m9_c00309{transform:matrix(0.329220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329220,0.000000,0.000000,0.250000,0,0);}
.m2e_c00309{transform:matrix(0.329224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329224,0.000000,0.000000,0.250000,0,0);}
.mb4_c00309{transform:matrix(0.329522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329522,0.000000,0.000000,0.250000,0,0);}
.m29_c00309{transform:matrix(0.330304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330304,0.000000,0.000000,0.250000,0,0);}
.m4e_c00309{transform:matrix(0.330473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330473,0.000000,0.000000,0.250000,0,0);}
.m9b_c00309{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);}
.m61_c00309{transform:matrix(0.332688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332688,0.000000,0.000000,0.250000,0,0);}
.m79_c00309{transform:matrix(0.332961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332961,0.000000,0.000000,0.250000,0,0);}
.ma4_c00309{transform:matrix(0.333549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333549,0.000000,0.000000,0.250000,0,0);}
.m9e_c00309{transform:matrix(0.333730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333730,0.000000,0.000000,0.250000,0,0);}
.m5a_c00309{transform:matrix(0.334406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334406,0.000000,0.000000,0.250000,0,0);}
.m69_c00309{transform:matrix(0.335244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335244,0.000000,0.000000,0.250000,0,0);}
.m8b_c00309{transform:matrix(0.335326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335326,0.000000,0.000000,0.250000,0,0);}
.m8c_c00309{transform:matrix(0.335849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335849,0.000000,0.000000,0.250000,0,0);}
.m96_c00309{transform:matrix(0.336792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336792,0.000000,0.000000,0.250000,0,0);}
.m28_c00309{transform:matrix(0.337235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337235,0.000000,0.000000,0.250000,0,0);}
.mcf_c00309{transform:matrix(0.338361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338361,0.000000,0.000000,0.250000,0,0);}
.mcb_c00309{transform:matrix(0.339942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339942,0.000000,0.000000,0.250000,0,0);}
.m62_c00309{transform:matrix(0.340108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340108,0.000000,0.000000,0.250000,0,0);}
.m93_c00309{transform:matrix(0.343092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343092,0.000000,0.000000,0.250000,0,0);}
.m87_c00309{transform:matrix(0.343827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343827,0.000000,0.000000,0.250000,0,0);}
.m78_c00309{transform:matrix(0.345210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345210,0.000000,0.000000,0.250000,0,0);}
.m5d_c00309{transform:matrix(0.345506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345506,0.000000,0.000000,0.250000,0,0);}
.m98_c00309{transform:matrix(0.345606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345606,0.000000,0.000000,0.250000,0,0);}
.m54_c00309{transform:matrix(0.346000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346000,0.000000,0.000000,0.250000,0,0);}
.mba_c00309{transform:matrix(0.346565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346565,0.000000,0.000000,0.250000,0,0);}
.m1f_c00309{transform:matrix(0.346619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346619,0.000000,0.000000,0.250000,0,0);}
.m46_c00309{transform:matrix(0.346660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346660,0.000000,0.000000,0.250000,0,0);}
.m40_c00309{transform:matrix(0.348146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348146,0.000000,0.000000,0.250000,0,0);}
.m8d_c00309{transform:matrix(0.348881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348881,0.000000,0.000000,0.250000,0,0);}
.m7f_c00309{transform:matrix(0.348971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348971,0.000000,0.000000,0.250000,0,0);}
.m71_c00309{transform:matrix(0.349415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349415,0.000000,0.000000,0.250000,0,0);}
.m48_c00309{transform:matrix(0.350725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350725,0.000000,0.000000,0.250000,0,0);}
.m59_c00309{transform:matrix(0.351130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351130,0.000000,0.000000,0.250000,0,0);}
.m6a_c00309{transform:matrix(0.351853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351853,0.000000,0.000000,0.250000,0,0);}
.m4b_c00309{transform:matrix(0.352644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352644,0.000000,0.000000,0.250000,0,0);}
.m52_c00309{transform:matrix(0.353016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353016,0.000000,0.000000,0.250000,0,0);}
.m42_c00309{transform:matrix(0.354510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354510,0.000000,0.000000,0.250000,0,0);}
.m5c_c00309{transform:matrix(0.357765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357765,0.000000,0.000000,0.250000,0,0);}
.m6c_c00309{transform:matrix(0.357836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357836,0.000000,0.000000,0.250000,0,0);}
.ma3_c00309{transform:matrix(0.358894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358894,0.000000,0.000000,0.250000,0,0);}
.m82_c00309{transform:matrix(0.359985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359985,0.000000,0.000000,0.250000,0,0);}
.mc2_c00309{transform:matrix(0.360331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360331,0.000000,0.000000,0.250000,0,0);}
.md0_c00309{transform:matrix(0.361895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361895,0.000000,0.000000,0.250000,0,0);}
.ma0_c00309{transform:matrix(0.365804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365804,0.000000,0.000000,0.250000,0,0);}
.m91_c00309{transform:matrix(0.366091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366091,0.000000,0.000000,0.250000,0,0);}
.m11_c00309{transform:matrix(0.366600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366600,0.000000,0.000000,0.250000,0,0);}
.m99_c00309{transform:matrix(0.366637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366637,0.000000,0.000000,0.250000,0,0);}
.mae_c00309{transform:matrix(0.369896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369896,0.000000,0.000000,0.250000,0,0);}
.m5f_c00309{transform:matrix(0.370404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370404,0.000000,0.000000,0.250000,0,0);}
.m7b_c00309{transform:matrix(0.376319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376319,0.000000,0.000000,0.250000,0,0);}
.m95_c00309{transform:matrix(0.378687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378687,0.000000,0.000000,0.250000,0,0);}
.m39_c00309{transform:matrix(0.379084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379084,0.000000,0.000000,0.250000,0,0);}
.mb2_c00309{transform:matrix(0.380679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380679,0.000000,0.000000,0.250000,0,0);}
.mf_c00309{transform:matrix(0.383401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383401,0.000000,0.000000,0.250000,0,0);}
.mc9_c00309{transform:matrix(0.383661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383661,0.000000,0.000000,0.250000,0,0);}
.m33_c00309{transform:matrix(0.386977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386977,0.000000,0.000000,0.250000,0,0);}
.md1_c00309{transform:matrix(0.389899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389899,0.000000,0.000000,0.250000,0,0);}
.md3_c00309{transform:matrix(0.396126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396126,0.000000,0.000000,0.250000,0,0);}
.m85_c00309{transform:matrix(0.401352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401352,0.000000,0.000000,0.250000,0,0);}
.m36_c00309{transform:matrix(0.402896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402896,0.000000,0.000000,0.250000,0,0);}
.m3f_c00309{transform:matrix(0.404322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404322,0.000000,0.000000,0.250000,0,0);}
.m6d_c00309{transform:matrix(0.434206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434206,0.000000,0.000000,0.250000,0,0);}
.v0_c00309{vertical-align:0.000000px;}
.ls5_c00309{letter-spacing:-3.069990px;}
.ls1d_c00309{letter-spacing:-2.577967px;}
.ls8_c00309{letter-spacing:-2.543317px;}
.ls16_c00309{letter-spacing:-2.508667px;}
.ls9_c00309{letter-spacing:-2.349277px;}
.lsd_c00309{letter-spacing:-2.248785px;}
.ls19_c00309{letter-spacing:-1.600830px;}
.lse_c00309{letter-spacing:-1.373391px;}
.lsc_c00309{letter-spacing:-0.942480px;}
.ls1a_c00309{letter-spacing:-0.606177px;}
.ls4_c00309{letter-spacing:0.000000px;}
.ls17_c00309{letter-spacing:0.029066px;}
.ls3_c00309{letter-spacing:0.277042px;}
.ls14_c00309{letter-spacing:0.290507px;}
.ls13_c00309{letter-spacing:0.565451px;}
.lsb_c00309{letter-spacing:1.059300px;}
.ls1_c00309{letter-spacing:1.130976px;}
.ls10_c00309{letter-spacing:1.358858px;}
.ls1e_c00309{letter-spacing:1.453478px;}
.ls18_c00309{letter-spacing:2.286900px;}
.ls11_c00309{letter-spacing:2.593810px;}
.ls7_c00309{letter-spacing:3.177900px;}
.ls15_c00309{letter-spacing:3.564000px;}
.ls6_c00309{letter-spacing:3.633310px;}
.ls2_c00309{letter-spacing:11.918016px;}
.ls0_c00309{letter-spacing:23.326380px;}
.lsa_c00309{letter-spacing:25.660998px;}
.ls1b_c00309{letter-spacing:31.363200px;}
.ls12_c00309{letter-spacing:49.896198px;}
.ls1c_c00309{letter-spacing:51.321798px;}
.lsf_c00309{letter-spacing:58.449798px;}
.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;}
}
.ws3_c00309{word-spacing:-19.625760px;}
.ws0_c00309{word-spacing:-18.166550px;}
.ws1_c00309{word-spacing:-16.793158px;}
.ws2_c00309{word-spacing:-13.534500px;}
.ws5_c00309{word-spacing:0.000000px;}
.ws4_c00309{word-spacing:5.450033px;}
._1c_c00309{margin-left:-14.107599px;}
._d_c00309{margin-left:-5.231523px;}
._7_c00309{margin-left:-3.575149px;}
._f_c00309{margin-left:-2.319113px;}
._9_c00309{width:2.811763px;}
._16_c00309{width:6.903380px;}
._6_c00309{width:8.066025px;}
._0_c00309{width:9.228692px;}
._a_c00309{width:10.246808px;}
._12_c00309{width:13.515986px;}
._1_c00309{width:15.477946px;}
._b_c00309{width:22.453937px;}
._5_c00309{width:23.834591px;}
._c_c00309{width:24.997060px;}
._19_c00309{width:27.685889px;}
._8_c00309{width:29.673215px;}
._1b_c00309{width:31.244875px;}
._3_c00309{width:32.772487px;}
._1a_c00309{width:35.097774px;}
._11_c00309{width:36.551059px;}
._e_c00309{width:37.584360px;}
._18_c00309{width:39.401665px;}
._17_c00309{width:42.247519px;}
._2_c00309{width:47.683047px;}
._4_c00309{width:50.534247px;}
._10_c00309{width:53.103012px;}
._15_c00309{width:60.922334px;}
._13_c00309{width:71.390088px;}
._14_c00309{width:116.741324px;}
.fc0_c00309{color:transparent;}
.fs8_c00309{font-size:21.186000px;}
.fs0_c00309{font-size:22.176000px;}
.fs1a_c00309{font-size:23.166000px;}
.fs7_c00309{font-size:25.660998px;}
.fs9_c00309{font-size:26.928000px;}
.fs2_c00309{font-size:27.720000px;}
.fs16_c00309{font-size:29.304000px;}
.fs1b_c00309{font-size:31.363200px;}
.fs19_c00309{font-size:37.818000px;}
.fs18_c00309{font-size:38.610000px;}
.fsc_c00309{font-size:39.600000px;}
.fs15_c00309{font-size:45.738000px;}
.fs1e_c00309{font-size:49.104000px;}
.fsf_c00309{font-size:49.896198px;}
.fs1c_c00309{font-size:51.321798px;}
.fse_c00309{font-size:51.876198px;}
.fs20_c00309{font-size:52.272000px;}
.fs17_c00309{font-size:56.628000px;}
.fsd_c00309{font-size:58.449798px;}
.fs6_c00309{font-size:58.806198px;}
.fs1f_c00309{font-size:60.192000px;}
.fs4_c00309{font-size:63.558000px;}
.fs21_c00309{font-size:66.330000px;}
.fs13_c00309{font-size:66.528000px;}
.fs5_c00309{font-size:67.122198px;}
.fsa_c00309{font-size:70.884000px;}
.fs12_c00309{font-size:71.280000px;}
.fs14_c00309{font-size:71.676198px;}
.fs3_c00309{font-size:72.666198px;}
.fs10_c00309{font-size:73.260000px;}
.fs1d_c00309{font-size:73.656198px;}
.fsb_c00309{font-size:76.230000px;}
.fs11_c00309{font-size:81.774000px;}
.fs1_c00309{font-size:87.714000px;}
.y0_c00309{bottom:0.000000px;}
.y1_c00309{bottom:76.500000px;}
.y28_c00309{bottom:97.565535px;}
.y2_c00309{bottom:124.651935px;}
.y27_c00309{bottom:137.833785px;}
.y26_c00309{bottom:168.132735px;}
.y25_c00309{bottom:195.931935px;}
.y22_c00309{bottom:201.990735px;}
.y23_c00309{bottom:202.698585px;}
.y24_c00309{bottom:203.059935px;}
.y21_c00309{bottom:236.556585px;}
.y20_c00309{bottom:271.488735px;}
.y1f_c00309{bottom:305.341785px;}
.y1e_c00309{bottom:337.779135px;}
.y1d_c00309{bottom:376.621785px;}
.y1c_c00309{bottom:387.318735px;}
.y1a_c00309{bottom:402.638985px;}
.y1b_c00309{bottom:403.351785px;}
.y19_c00309{bottom:404.064585px;}
.y18_c00309{bottom:434.358585px;}
.y17_c00309{bottom:466.434585px;}
.y16_c00309{bottom:498.510585px;}
.y15_c00309{bottom:532.017135px;}
.y13_c00309{bottom:563.731785px;}
.y14_c00309{bottom:564.449535px;}
.y12_c00309{bottom:630.734985px;}
.y11_c00309{bottom:663.167385px;}
.y10_c00309{bottom:696.673935px;}
.yf_c00309{bottom:729.819135px;}
.ye_c00309{bottom:762.251535px;}
.yd_c00309{bottom:777.220335px;}
.yc_c00309{bottom:795.040335px;}
.y9_c00309{bottom:827.829135px;}
.yb_c00309{bottom:828.898335px;}
.ya_c00309{bottom:838.164735px;}
.y8_c00309{bottom:863.112735px;}
.y7_c00309{bottom:927.616185px;}
.y6_c00309{bottom:945.791595px;}
.y5_c00309{bottom:994.980735px;}
.y4_c00309{bottom:1035.961785px;}
.y3_c00309{bottom:1079.086185px;}
.h9_c00309{height:17.090225px;}
.h19_c00309{height:20.887891px;}
.ha_c00309{height:21.134276px;}
.hb_c00309{height:22.096336px;}
.h2_c00309{height:23.128875px;}
.h18_c00309{height:24.161414px;}
.hc_c00309{height:28.085063px;}
.h4_c00309{height:28.911094px;}
.h11_c00309{height:33.230868px;}
.h1a_c00309{height:34.180317px;}
.h17_c00309{height:37.116299px;}
.hf_c00309{height:38.927565px;}
.he_c00309{height:41.301563px;}
.h16_c00309{height:47.703305px;}
.h10_c00309{height:50.913651px;}
.h1c_c00309{height:51.213938px;}
.h8_c00309{height:57.715067px;}
.h1d_c00309{height:62.778375px;}
.h7_c00309{height:65.876767px;}
.h6_c00309{height:66.289008px;}
.h14_c00309{height:69.957422px;}
.h15_c00309{height:70.346269px;}
.h5_c00309{height:71.317899px;}
.h12_c00309{height:71.900684px;}
.h1b_c00309{height:72.289530px;}
.hd_c00309{height:74.778354px;}
.h13_c00309{height:80.256709px;}
.h3_c00309{height:86.086494px;}
.h1_c00309{height:1110.000000px;}
.h0_c00309{height:1263.000000px;}
.w1_c00309{width:781.500000px;}
.w0_c00309{width:892.500000px;}
.x0_c00309{left:0.000000px;}
.x1_c00309{left:55.500000px;}
.x2_c00309{left:60.995835px;}
.x8_c00309{left:97.754535px;}
.x4d_c00309{left:99.333585px;}
.x6e_c00309{left:100.392885px;}
.x7c_c00309{left:101.580885px;}
.x5b_c00309{left:109.629585px;}
.x2d_c00309{left:119.544435px;}
.x2e_c00309{left:130.236435px;}
.x9_c00309{left:131.805585px;}
.x79_c00309{left:133.048035px;}
.x3a_c00309{left:140.646285px;}
.x3b_c00309{left:142.180785px;}
.x61_c00309{left:143.566785px;}
.xa_c00309{left:152.793585px;}
.x52_c00309{left:163.005435px;}
.x42_c00309{left:164.435985px;}
.x47_c00309{left:165.663585px;}
.x21_c00309{left:175.355685px;}
.xb_c00309{left:177.241635px;}
.xc_c00309{left:185.894235px;}
.x69_c00309{left:187.052535px;}
.xd_c00309{left:197.135685px;}
.x56_c00309{left:199.006785px;}
.xe_c00309{left:208.723635px;}
.x48_c00309{left:209.827485px;}
.x43_c00309{left:212.198535px;}
.x2f_c00309{left:218.930535px;}
.x5_c00309{left:219.950235px;}
.xf_c00309{left:230.860035px;}
.x6f_c00309{left:231.958935px;}
.x22_c00309{left:241.606485px;}
.x63_c00309{left:242.967735px;}
.x1c_c00309{left:245.343735px;}
.x5c_c00309{left:251.773785px;}
.x30_c00309{left:252.917235px;}
.x57_c00309{left:254.253735px;}
.x31_c00309{left:263.663685px;}
.x71_c00309{left:265.386285px;}
.x23_c00309{left:274.885335px;}
.x53_c00309{left:276.934635px;}
.x3c_c00309{left:285.631785px;}
.x6a_c00309{left:287.483085px;}
.x44_c00309{left:295.734735px;}
.x10_c00309{left:297.170235px;}
.x4e_c00309{left:298.531485px;}
.x64_c00309{left:308.575035px;}
.x3d_c00309{left:315.866385px;}
.x24_c00309{left:319.667985px;}
.x11_c00309{left:329.350185px;}
.x25_c00309{left:331.364835px;}
.x12_c00309{left:333.725985px;}
.x54_c00309{left:342.334035px;}
.x13_c00309{left:343.353735px;}
.x3e_c00309{left:344.937735px;}
.x49_c00309{left:353.125035px;}
.x7a_c00309{left:354.199185px;}
.x14_c00309{left:363.425985px;}
.x1d_c00309{left:367.851285px;}
.x26_c00309{left:374.573385px;}
.x65_c00309{left:375.954435px;}
.x1e_c00309{left:377.711685px;}
.x7d_c00309{left:385.399035px;}
.x32_c00309{left:386.582085px;}
.x77_c00309{left:397.670085px;}
.x15_c00309{left:406.698885px;}
.x62_c00309{left:408.733335px;}
.x1f_c00309{left:410.945985px;}
.x5d_c00309{left:418.494735px;}
.x33_c00309{left:419.742135px;}
.x4f_c00309{left:429.924285px;}
.x7b_c00309{left:431.171685px;}
.x66_c00309{left:433.225935px;}
.x16_c00309{left:441.309285px;}
.x7e_c00309{left:442.388385px;}
.x27_c00309{left:451.828035px;}
.x34_c00309{left:452.936835px;}
.x35_c00309{left:463.282335px;}
.x58_c00309{left:474.117885px;}
.x72_c00309{left:475.573185px;}
.x28_c00309{left:485.715735px;}
.x73_c00309{left:487.334385px;}
.x59_c00309{left:496.912635px;}
.x74_c00309{left:498.026385px;}
.x7f_c00309{left:499.308435px;}
.x6_c00309{left:502.907085px;}
.x36_c00309{left:508.134285px;}
.x17_c00309{left:518.148135px;}
.x75_c00309{left:521.553735px;}
.x67_c00309{left:525.389985px;}
.x80_c00309{left:530.537985px;}
.x3f_c00309{left:539.007435px;}
.x18_c00309{left:541.309185px;}
.x76_c00309{left:552.313035px;}
.x19_c00309{left:562.653585px;}
.x29_c00309{left:574.390035px;}
.x7_c00309{left:575.609715px;}
.x45_c00309{left:583.923735px;}
.x37_c00309{left:585.438435px;}
.x4a_c00309{left:592.997085px;}
.x2a_c00309{left:595.873035px;}
.x20_c00309{left:599.496435px;}
.x40_c00309{left:606.728385px;}
.x4b_c00309{left:617.702535px;}
.x50_c00309{left:618.920235px;}
.x2b_c00309{left:628.062885px;}
.x6d_c00309{left:629.488485px;}
.x41_c00309{left:631.874385px;}
.x5e_c00309{left:639.116235px;}
.x46_c00309{left:640.744785px;}
.x68_c00309{left:643.145535px;}
.x51_c00309{left:650.233935px;}
.x5f_c00309{left:651.798135px;}
.x1a_c00309{left:661.277385px;}
.x5a_c00309{left:662.455485px;}
.x3_c00309{left:672.400035px;}
.x78_c00309{left:673.889985px;}
.x55_c00309{left:684.181035px;}
.x4_c00309{left:685.235385px;}
.x70_c00309{left:694.719585px;}
.x38_c00309{left:695.966985px;}
.x4c_c00309{left:706.663935px;}
.x6b_c00309{left:708.564735px;}
.x6c_c00309{left:709.925985px;}
.x1b_c00309{left:717.321285px;}
.x39_c00309{left:728.755785px;}
.x2c_c00309{left:739.804185px;}
.x60_c00309{left:750.852585px;}
@media print{
.v0_c00309{vertical-align:0.000000pt;}
.ls5_c00309{letter-spacing:-2.728880pt;}
.ls1d_c00309{letter-spacing:-2.291526pt;}
.ls8_c00309{letter-spacing:-2.260726pt;}
.ls16_c00309{letter-spacing:-2.229926pt;}
.ls9_c00309{letter-spacing:-2.088246pt;}
.lsd_c00309{letter-spacing:-1.998920pt;}
.ls19_c00309{letter-spacing:-1.422960pt;}
.lse_c00309{letter-spacing:-1.220792pt;}
.lsc_c00309{letter-spacing:-0.837760pt;}
.ls1a_c00309{letter-spacing:-0.538824pt;}
.ls4_c00309{letter-spacing:0.000000pt;}
.ls17_c00309{letter-spacing:0.025837pt;}
.ls3_c00309{letter-spacing:0.246259pt;}
.ls14_c00309{letter-spacing:0.258228pt;}
.ls13_c00309{letter-spacing:0.502623pt;}
.lsb_c00309{letter-spacing:0.941600pt;}
.ls1_c00309{letter-spacing:1.005312pt;}
.ls10_c00309{letter-spacing:1.207874pt;}
.ls1e_c00309{letter-spacing:1.291981pt;}
.ls18_c00309{letter-spacing:2.032800pt;}
.ls11_c00309{letter-spacing:2.305609pt;}
.ls7_c00309{letter-spacing:2.824800pt;}
.ls15_c00309{letter-spacing:3.168000pt;}
.ls6_c00309{letter-spacing:3.229609pt;}
.ls2_c00309{letter-spacing:10.593792pt;}
.ls0_c00309{letter-spacing:20.734560pt;}
.lsa_c00309{letter-spacing:22.809776pt;}
.ls1b_c00309{letter-spacing:27.878400pt;}
.ls12_c00309{letter-spacing:44.352176pt;}
.ls1c_c00309{letter-spacing:45.619376pt;}
.lsf_c00309{letter-spacing:51.955376pt;}
.ws3_c00309{word-spacing:-17.445120pt;}
.ws0_c00309{word-spacing:-16.148044pt;}
.ws1_c00309{word-spacing:-14.927252pt;}
.ws2_c00309{word-spacing:-12.030667pt;}
.ws5_c00309{word-spacing:0.000000pt;}
.ws4_c00309{word-spacing:4.844473pt;}
._1c_c00309{margin-left:-12.540088pt;}
._d_c00309{margin-left:-4.650243pt;}
._7_c00309{margin-left:-3.177910pt;}
._f_c00309{margin-left:-2.061434pt;}
._9_c00309{width:2.499345pt;}
._16_c00309{width:6.136338pt;}
._6_c00309{width:7.169800pt;}
._0_c00309{width:8.203282pt;}
._a_c00309{width:9.108274pt;}
._12_c00309{width:12.014210pt;}
._1_c00309{width:13.758174pt;}
._b_c00309{width:19.959055pt;}
._5_c00309{width:21.186303pt;}
._c_c00309{width:22.219609pt;}
._19_c00309{width:24.609679pt;}
._8_c00309{width:26.376191pt;}
._1b_c00309{width:27.773222pt;}
._3_c00309{width:29.131100pt;}
._1a_c00309{width:31.198021pt;}
._11_c00309{width:32.489830pt;}
._e_c00309{width:33.408320pt;}
._18_c00309{width:35.023702pt;}
._17_c00309{width:37.553350pt;}
._2_c00309{width:42.384931pt;}
._4_c00309{width:44.919331pt;}
._10_c00309{width:47.202678pt;}
._15_c00309{width:54.153186pt;}
._13_c00309{width:63.457856pt;}
._14_c00309{width:103.770066pt;}
.fs8_c00309{font-size:18.832000pt;}
.fs0_c00309{font-size:19.712000pt;}
.fs1a_c00309{font-size:20.592000pt;}
.fs7_c00309{font-size:22.809776pt;}
.fs9_c00309{font-size:23.936000pt;}
.fs2_c00309{font-size:24.640000pt;}
.fs16_c00309{font-size:26.048000pt;}
.fs1b_c00309{font-size:27.878400pt;}
.fs19_c00309{font-size:33.616000pt;}
.fs18_c00309{font-size:34.320000pt;}
.fsc_c00309{font-size:35.200000pt;}
.fs15_c00309{font-size:40.656000pt;}
.fs1e_c00309{font-size:43.648000pt;}
.fsf_c00309{font-size:44.352176pt;}
.fs1c_c00309{font-size:45.619376pt;}
.fse_c00309{font-size:46.112176pt;}
.fs20_c00309{font-size:46.464000pt;}
.fs17_c00309{font-size:50.336000pt;}
.fsd_c00309{font-size:51.955376pt;}
.fs6_c00309{font-size:52.272176pt;}
.fs1f_c00309{font-size:53.504000pt;}
.fs4_c00309{font-size:56.496000pt;}
.fs21_c00309{font-size:58.960000pt;}
.fs13_c00309{font-size:59.136000pt;}
.fs5_c00309{font-size:59.664176pt;}
.fsa_c00309{font-size:63.008000pt;}
.fs12_c00309{font-size:63.360000pt;}
.fs14_c00309{font-size:63.712176pt;}
.fs3_c00309{font-size:64.592176pt;}
.fs10_c00309{font-size:65.120000pt;}
.fs1d_c00309{font-size:65.472176pt;}
.fsb_c00309{font-size:67.760000pt;}
.fs11_c00309{font-size:72.688000pt;}
.fs1_c00309{font-size:77.968000pt;}
.y0_c00309{bottom:0.000000pt;}
.y1_c00309{bottom:68.000000pt;}
.y28_c00309{bottom:86.724920pt;}
.y2_c00309{bottom:110.801720pt;}
.y27_c00309{bottom:122.518920pt;}
.y26_c00309{bottom:149.451320pt;}
.y25_c00309{bottom:174.161720pt;}
.y22_c00309{bottom:179.547320pt;}
.y23_c00309{bottom:180.176520pt;}
.y24_c00309{bottom:180.497720pt;}
.y21_c00309{bottom:210.272520pt;}
.y20_c00309{bottom:241.323320pt;}
.y1f_c00309{bottom:271.414920pt;}
.y1e_c00309{bottom:300.248120pt;}
.y1d_c00309{bottom:334.774920pt;}
.y1c_c00309{bottom:344.283320pt;}
.y1a_c00309{bottom:357.901320pt;}
.y1b_c00309{bottom:358.534920pt;}
.y19_c00309{bottom:359.168520pt;}
.y18_c00309{bottom:386.096520pt;}
.y17_c00309{bottom:414.608520pt;}
.y16_c00309{bottom:443.120520pt;}
.y15_c00309{bottom:472.904120pt;}
.y13_c00309{bottom:501.094920pt;}
.y14_c00309{bottom:501.732920pt;}
.y12_c00309{bottom:560.653320pt;}
.y11_c00309{bottom:589.482120pt;}
.y10_c00309{bottom:619.265720pt;}
.yf_c00309{bottom:648.728120pt;}
.ye_c00309{bottom:677.556920pt;}
.yd_c00309{bottom:690.862520pt;}
.yc_c00309{bottom:706.702520pt;}
.y9_c00309{bottom:735.848120pt;}
.yb_c00309{bottom:736.798520pt;}
.ya_c00309{bottom:745.035320pt;}
.y8_c00309{bottom:767.211320pt;}
.y7_c00309{bottom:824.547720pt;}
.y6_c00309{bottom:840.703640pt;}
.y5_c00309{bottom:884.427320pt;}
.y4_c00309{bottom:920.854920pt;}
.y3_c00309{bottom:959.187720pt;}
.h9_c00309{height:15.191311pt;}
.h19_c00309{height:18.567014pt;}
.ha_c00309{height:18.786023pt;}
.hb_c00309{height:19.641188pt;}
.h2_c00309{height:20.559000pt;}
.h18_c00309{height:21.476813pt;}
.hc_c00309{height:24.964500pt;}
.h4_c00309{height:25.698750pt;}
.h11_c00309{height:29.538549pt;}
.h1a_c00309{height:30.382504pt;}
.h17_c00309{height:32.992266pt;}
.hf_c00309{height:34.602280pt;}
.he_c00309{height:36.712500pt;}
.h16_c00309{height:42.402938pt;}
.h10_c00309{height:45.256579pt;}
.h1c_c00309{height:45.523500pt;}
.h8_c00309{height:51.302282pt;}
.h1d_c00309{height:55.803000pt;}
.h7_c00309{height:58.557126pt;}
.h6_c00309{height:58.923563pt;}
.h14_c00309{height:62.184375pt;}
.h15_c00309{height:62.530016pt;}
.h5_c00309{height:63.393688pt;}
.h12_c00309{height:63.911719pt;}
.h1b_c00309{height:64.257360pt;}
.hd_c00309{height:66.469648pt;}
.h13_c00309{height:71.339297pt;}
.h3_c00309{height:76.521328pt;}
.h1_c00309{height:986.666667pt;}
.h0_c00309{height:1122.666667pt;}
.w1_c00309{width:694.666667pt;}
.w0_c00309{width:793.333333pt;}
.x0_c00309{left:0.000000pt;}
.x1_c00309{left:49.333333pt;}
.x2_c00309{left:54.218520pt;}
.x8_c00309{left:86.892920pt;}
.x4d_c00309{left:88.296520pt;}
.x6e_c00309{left:89.238120pt;}
.x7c_c00309{left:90.294120pt;}
.x5b_c00309{left:97.448520pt;}
.x2d_c00309{left:106.261720pt;}
.x2e_c00309{left:115.765720pt;}
.x9_c00309{left:117.160520pt;}
.x79_c00309{left:118.264920pt;}
.x3a_c00309{left:125.018920pt;}
.x3b_c00309{left:126.382920pt;}
.x61_c00309{left:127.614920pt;}
.xa_c00309{left:135.816520pt;}
.x52_c00309{left:144.893720pt;}
.x42_c00309{left:146.165320pt;}
.x47_c00309{left:147.256520pt;}
.x21_c00309{left:155.871720pt;}
.xb_c00309{left:157.548120pt;}
.xc_c00309{left:165.239320pt;}
.x69_c00309{left:166.268920pt;}
.xd_c00309{left:175.231720pt;}
.x56_c00309{left:176.894920pt;}
.xe_c00309{left:185.532120pt;}
.x48_c00309{left:186.513320pt;}
.x43_c00309{left:188.620920pt;}
.x2f_c00309{left:194.604920pt;}
.x5_c00309{left:195.511320pt;}
.xf_c00309{left:205.208920pt;}
.x6f_c00309{left:206.185720pt;}
.x22_c00309{left:214.761320pt;}
.x63_c00309{left:215.971320pt;}
.x1c_c00309{left:218.083320pt;}
.x5c_c00309{left:223.798920pt;}
.x30_c00309{left:224.815320pt;}
.x57_c00309{left:226.003320pt;}
.x31_c00309{left:234.367720pt;}
.x71_c00309{left:235.898920pt;}
.x23_c00309{left:244.342520pt;}
.x53_c00309{left:246.164120pt;}
.x3c_c00309{left:253.894920pt;}
.x6a_c00309{left:255.540520pt;}
.x44_c00309{left:262.875320pt;}
.x10_c00309{left:264.151320pt;}
.x4e_c00309{left:265.361320pt;}
.x64_c00309{left:274.288920pt;}
.x3d_c00309{left:280.770120pt;}
.x24_c00309{left:284.149320pt;}
.x11_c00309{left:292.755720pt;}
.x25_c00309{left:294.546520pt;}
.x12_c00309{left:296.645320pt;}
.x54_c00309{left:304.296920pt;}
.x13_c00309{left:305.203320pt;}
.x3e_c00309{left:306.611320pt;}
.x49_c00309{left:313.888920pt;}
.x7a_c00309{left:314.843720pt;}
.x14_c00309{left:323.045320pt;}
.x1d_c00309{left:326.978920pt;}
.x26_c00309{left:332.954120pt;}
.x65_c00309{left:334.181720pt;}
.x1e_c00309{left:335.743720pt;}
.x7d_c00309{left:342.576920pt;}
.x32_c00309{left:343.628520pt;}
.x77_c00309{left:353.484520pt;}
.x15_c00309{left:361.510120pt;}
.x62_c00309{left:363.318520pt;}
.x1f_c00309{left:365.285320pt;}
.x5d_c00309{left:371.995320pt;}
.x33_c00309{left:373.104120pt;}
.x4f_c00309{left:382.154920pt;}
.x7b_c00309{left:383.263720pt;}
.x66_c00309{left:385.089720pt;}
.x16_c00309{left:392.274920pt;}
.x7e_c00309{left:393.234120pt;}
.x27_c00309{left:401.624920pt;}
.x34_c00309{left:402.610520pt;}
.x35_c00309{left:411.806520pt;}
.x58_c00309{left:421.438120pt;}
.x72_c00309{left:422.731720pt;}
.x28_c00309{left:431.747320pt;}
.x73_c00309{left:433.186120pt;}
.x59_c00309{left:441.700120pt;}
.x74_c00309{left:442.690120pt;}
.x7f_c00309{left:443.829720pt;}
.x6_c00309{left:447.028520pt;}
.x36_c00309{left:451.674920pt;}
.x17_c00309{left:460.576120pt;}
.x75_c00309{left:463.603320pt;}
.x67_c00309{left:467.013320pt;}
.x80_c00309{left:471.589320pt;}
.x3f_c00309{left:479.117720pt;}
.x18_c00309{left:481.163720pt;}
.x76_c00309{left:490.944920pt;}
.x19_c00309{left:500.136520pt;}
.x29_c00309{left:510.568920pt;}
.x7_c00309{left:511.653080pt;}
.x45_c00309{left:519.043320pt;}
.x37_c00309{left:520.389720pt;}
.x4a_c00309{left:527.108520pt;}
.x2a_c00309{left:529.664920pt;}
.x20_c00309{left:532.885720pt;}
.x40_c00309{left:539.314120pt;}
.x4b_c00309{left:549.068920pt;}
.x50_c00309{left:550.151320pt;}
.x2b_c00309{left:558.278120pt;}
.x6d_c00309{left:559.545320pt;}
.x41_c00309{left:561.666120pt;}
.x5e_c00309{left:568.103320pt;}
.x46_c00309{left:569.550920pt;}
.x68_c00309{left:571.684920pt;}
.x51_c00309{left:577.985720pt;}
.x5f_c00309{left:579.376120pt;}
.x1a_c00309{left:587.802120pt;}
.x5a_c00309{left:588.849320pt;}
.x3_c00309{left:597.688920pt;}
.x78_c00309{left:599.013320pt;}
.x55_c00309{left:608.160920pt;}
.x4_c00309{left:609.098120pt;}
.x70_c00309{left:617.528520pt;}
.x38_c00309{left:618.637320pt;}
.x4c_c00309{left:628.145720pt;}
.x6b_c00309{left:629.835320pt;}
.x6c_c00309{left:631.045320pt;}
.x1b_c00309{left:637.618920pt;}
.x39_c00309{left:647.782920pt;}
.x2c_c00309{left:657.603720pt;}
.x60_c00309{left:667.424520pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b2b3250b5621914ee477f260.woff2')format("woff");}.ff1_c00310{font-family:ff1_c00310;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00310;src:url('chunks/assets/font_d3ee8cb3a86704ce998bd4ec.woff2')format("woff");}.ff2_c00310{font-family:ff2_c00310;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00310;src:url('chunks/assets/font_154bbe26af66bd8e437efb6b.woff2')format("woff");}.ff3_c00310{font-family:ff3_c00310;line-height:0.666000;font-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_c00310{transform:matrix(0.058824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.058824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.058824,0.000000,0.000000,0.250000,0,0);}
.md0_c00310{transform:matrix(0.060715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060715,0.000000,0.000000,0.250000,0,0);}
.m6_c00310{transform:matrix(0.095589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095589,0.000000,0.000000,0.250000,0,0);}
.m4_c00310{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);}
.mcb_c00310{transform:matrix(0.103433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103433,0.000000,0.000000,0.250000,0,0);}
.m26_c00310{transform:matrix(0.143730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143730,0.000000,0.000000,0.250000,0,0);}
.m9a_c00310{transform:matrix(0.162912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162912,0.000000,0.000000,0.250000,0,0);}
.mcf_c00310{transform:matrix(0.171429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171429,0.000000,0.000000,0.250000,0,0);}
.m7_c00310{transform:matrix(0.171569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171569,0.000000,0.000000,0.250000,0,0);}
.m1e_c00310{transform:matrix(0.183560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183560,0.000000,0.000000,0.250000,0,0);}
.md4_c00310{transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);}
.md1_c00310{transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);}
.mba_c00310{transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);}
.mb9_c00310{transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);}
.md9_c00310{transform:matrix(0.208302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208302,0.000000,0.000000,0.250000,0,0);}
.m3_c00310{transform:matrix(0.211397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211397,0.000000,0.000000,0.250000,0,0);}
.md3_c00310{transform:matrix(0.211905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211905,0.000000,0.000000,0.250000,0,0);}
.mbb_c00310{transform:matrix(0.212499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212499,0.000000,0.000000,0.250000,0,0);}
.m38_c00310{transform:matrix(0.215537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215537,0.000000,0.000000,0.250000,0,0);}
.m8e_c00310{transform:matrix(0.223518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223518,0.000000,0.000000,0.250000,0,0);}
.m86_c00310{transform:matrix(0.228056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228056,0.000000,0.000000,0.250000,0,0);}
.m52_c00310{transform:matrix(0.230878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230878,0.000000,0.000000,0.250000,0,0);}
.mf_c00310{transform:matrix(0.239483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239483,0.000000,0.000000,0.250000,0,0);}
.m19_c00310{transform:matrix(0.243713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243713,0.000000,0.000000,0.250000,0,0);}
.m40_c00310{transform:matrix(0.244378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244378,0.000000,0.000000,0.250000,0,0);}
.m0_c00310{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m96_c00310{transform:matrix(0.252467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252467,0.000000,0.000000,0.250000,0,0);}
.mb0_c00310{transform:matrix(0.254330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254330,0.000000,0.000000,0.250000,0,0);}
.m1d_c00310{transform:matrix(0.256683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256683,0.000000,0.000000,0.250000,0,0);}
.m44_c00310{transform:matrix(0.258008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258008,0.000000,0.000000,0.250000,0,0);}
.mc4_c00310{transform:matrix(0.258596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258596,0.000000,0.000000,0.250000,0,0);}
.m79_c00310{transform:matrix(0.260146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260146,0.000000,0.000000,0.250000,0,0);}
.m5f_c00310{transform:matrix(0.260864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260864,0.000000,0.000000,0.250000,0,0);}
.m97_c00310{transform:matrix(0.261105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261105,0.000000,0.000000,0.250000,0,0);}
.md5_c00310{transform:matrix(0.263425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263425,0.000000,0.000000,0.250000,0,0);}
.m30_c00310{transform:matrix(0.263927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263927,0.000000,0.000000,0.250000,0,0);}
.m5a_c00310{transform:matrix(0.266286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266286,0.000000,0.000000,0.250000,0,0);}
.m15_c00310{transform:matrix(0.266550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266550,0.000000,0.000000,0.250000,0,0);}
.m88_c00310{transform:matrix(0.266620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266620,0.000000,0.000000,0.250000,0,0);}
.m8b_c00310{transform:matrix(0.267241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267241,0.000000,0.000000,0.250000,0,0);}
.m4f_c00310{transform:matrix(0.267515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267515,0.000000,0.000000,0.250000,0,0);}
.m60_c00310{transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);}
.mc9_c00310{transform:matrix(0.268332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268332,0.000000,0.000000,0.250000,0,0);}
.m59_c00310{transform:matrix(0.269227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269227,0.000000,0.000000,0.250000,0,0);}
.m24_c00310{transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);}
.mb3_c00310{transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);}
.m2f_c00310{transform:matrix(0.271211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271211,0.000000,0.000000,0.250000,0,0);}
.m67_c00310{transform:matrix(0.272274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272274,0.000000,0.000000,0.250000,0,0);}
.m8d_c00310{transform:matrix(0.272476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272476,0.000000,0.000000,0.250000,0,0);}
.m3b_c00310{transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);}
.m76_c00310{transform:matrix(0.273525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273525,0.000000,0.000000,0.250000,0,0);}
.m7e_c00310{transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);}
.maa_c00310{transform:matrix(0.273650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273650,0.000000,0.000000,0.250000,0,0);}
.m57_c00310{transform:matrix(0.273751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273751,0.000000,0.000000,0.250000,0,0);}
.m83_c00310{transform:matrix(0.275181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275181,0.000000,0.000000,0.250000,0,0);}
.m4c_c00310{transform:matrix(0.275368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275368,0.000000,0.000000,0.250000,0,0);}
.ma5_c00310{transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);}
.m9_c00310{transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);}
.m18_c00310{transform:matrix(0.277800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277800,0.000000,0.000000,0.250000,0,0);}
.m2e_c00310{transform:matrix(0.277940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277940,0.000000,0.000000,0.250000,0,0);}
.ma4_c00310{transform:matrix(0.278287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278287,0.000000,0.000000,0.250000,0,0);}
.mc8_c00310{transform:matrix(0.278393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278393,0.000000,0.000000,0.250000,0,0);}
.mdd_c00310{transform:matrix(0.279658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279658,0.000000,0.000000,0.250000,0,0);}
.m27_c00310{transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);}
.md7_c00310{transform:matrix(0.281269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281269,0.000000,0.000000,0.250000,0,0);}
.m8_c00310{transform:matrix(0.281387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281387,0.000000,0.000000,0.250000,0,0);}
.m4a_c00310{transform:matrix(0.282308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282308,0.000000,0.000000,0.250000,0,0);}
.m47_c00310{transform:matrix(0.282926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282926,0.000000,0.000000,0.250000,0,0);}
.m4d_c00310{transform:matrix(0.282945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282945,0.000000,0.000000,0.250000,0,0);}
.m7a_c00310{transform:matrix(0.284115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284115,0.000000,0.000000,0.250000,0,0);}
.m1_c00310{transform:matrix(0.284715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284715,0.000000,0.000000,0.250000,0,0);}
.m9b_c00310{transform:matrix(0.284775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284775,0.000000,0.000000,0.250000,0,0);}
.m11_c00310{transform:matrix(0.285720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285720,0.000000,0.000000,0.250000,0,0);}
.m64_c00310{transform:matrix(0.286302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286302,0.000000,0.000000,0.250000,0,0);}
.m3d_c00310{transform:matrix(0.286396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286396,0.000000,0.000000,0.250000,0,0);}
.mb_c00310{transform:matrix(0.286691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286691,0.000000,0.000000,0.250000,0,0);}
.m46_c00310{transform:matrix(0.287170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287170,0.000000,0.000000,0.250000,0,0);}
.ma_c00310{transform:matrix(0.287374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287374,0.000000,0.000000,0.250000,0,0);}
.m74_c00310{transform:matrix(0.287921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287921,0.000000,0.000000,0.250000,0,0);}
.md2_c00310{transform:matrix(0.288662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288662,0.000000,0.000000,0.250000,0,0);}
.m5b_c00310{transform:matrix(0.288695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288695,0.000000,0.000000,0.250000,0,0);}
.mbc_c00310{transform:matrix(0.289190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289190,0.000000,0.000000,0.250000,0,0);}
.ma7_c00310{transform:matrix(0.289557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289557,0.000000,0.000000,0.250000,0,0);}
.m58_c00310{transform:matrix(0.289635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289635,0.000000,0.000000,0.250000,0,0);}
.m70_c00310{transform:matrix(0.289636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289636,0.000000,0.000000,0.250000,0,0);}
.m9d_c00310{transform:matrix(0.290510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290510,0.000000,0.000000,0.250000,0,0);}
.mad_c00310{transform:matrix(0.291140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291140,0.000000,0.000000,0.250000,0,0);}
.m53_c00310{transform:matrix(0.291414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291414,0.000000,0.000000,0.250000,0,0);}
.m31_c00310{transform:matrix(0.292109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292109,0.000000,0.000000,0.250000,0,0);}
.m7f_c00310{transform:matrix(0.292113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292113,0.000000,0.000000,0.250000,0,0);}
.m6d_c00310{transform:matrix(0.292154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292154,0.000000,0.000000,0.250000,0,0);}
.m22_c00310{transform:matrix(0.292919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292919,0.000000,0.000000,0.250000,0,0);}
.mb7_c00310{transform:matrix(0.292994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292994,0.000000,0.000000,0.250000,0,0);}
.m17_c00310{transform:matrix(0.293938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293938,0.000000,0.000000,0.250000,0,0);}
.m14_c00310{transform:matrix(0.294174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294174,0.000000,0.000000,0.250000,0,0);}
.m6f_c00310{transform:matrix(0.294624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294624,0.000000,0.000000,0.250000,0,0);}
.m1f_c00310{transform:matrix(0.294848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294848,0.000000,0.000000,0.250000,0,0);}
.mb6_c00310{transform:matrix(0.295025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295025,0.000000,0.000000,0.250000,0,0);}
.mca_c00310{transform:matrix(0.295476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295476,0.000000,0.000000,0.250000,0,0);}
.mc3_c00310{transform:matrix(0.295493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295493,0.000000,0.000000,0.250000,0,0);}
.m78_c00310{transform:matrix(0.296080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296080,0.000000,0.000000,0.250000,0,0);}
.mbe_c00310{transform:matrix(0.296088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296088,0.000000,0.000000,0.250000,0,0);}
.ma9_c00310{transform:matrix(0.296134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296134,0.000000,0.000000,0.250000,0,0);}
.m34_c00310{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.me_c00310{transform:matrix(0.297191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297191,0.000000,0.000000,0.250000,0,0);}
.m85_c00310{transform:matrix(0.297564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297564,0.000000,0.000000,0.250000,0,0);}
.md6_c00310{transform:matrix(0.298580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298580,0.000000,0.000000,0.250000,0,0);}
.mc5_c00310{transform:matrix(0.298999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298999,0.000000,0.000000,0.250000,0,0);}
.m2_c00310{transform:matrix(0.299083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299083,0.000000,0.000000,0.250000,0,0);}
.m1b_c00310{transform:matrix(0.299975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299975,0.000000,0.000000,0.250000,0,0);}
.mcd_c00310{transform:matrix(0.301307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301307,0.000000,0.000000,0.250000,0,0);}
.m6a_c00310{transform:matrix(0.301463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301463,0.000000,0.000000,0.250000,0,0);}
.mda_c00310{transform:matrix(0.301802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301802,0.000000,0.000000,0.250000,0,0);}
.ma6_c00310{transform:matrix(0.302333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302333,0.000000,0.000000,0.250000,0,0);}
.m72_c00310{transform:matrix(0.302389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302389,0.000000,0.000000,0.250000,0,0);}
.m8c_c00310{transform:matrix(0.302495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302495,0.000000,0.000000,0.250000,0,0);}
.m9f_c00310{transform:matrix(0.302974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302974,0.000000,0.000000,0.250000,0,0);}
.mbd_c00310{transform:matrix(0.304336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304336,0.000000,0.000000,0.250000,0,0);}
.ma1_c00310{transform:matrix(0.305233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305233,0.000000,0.000000,0.250000,0,0);}
.m92_c00310{transform:matrix(0.305474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305474,0.000000,0.000000,0.250000,0,0);}
.m91_c00310{transform:matrix(0.307751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307751,0.000000,0.000000,0.250000,0,0);}
.m63_c00310{transform:matrix(0.307994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307994,0.000000,0.000000,0.250000,0,0);}
.m41_c00310{transform:matrix(0.307995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307995,0.000000,0.000000,0.250000,0,0);}
.m89_c00310{transform:matrix(0.308169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308169,0.000000,0.000000,0.250000,0,0);}
.m48_c00310{transform:matrix(0.308849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308849,0.000000,0.000000,0.250000,0,0);}
.mac_c00310{transform:matrix(0.309364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309364,0.000000,0.000000,0.250000,0,0);}
.m13_c00310{transform:matrix(0.310116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310116,0.000000,0.000000,0.250000,0,0);}
.m9e_c00310{transform:matrix(0.311367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311367,0.000000,0.000000,0.250000,0,0);}
.m81_c00310{transform:matrix(0.311529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311529,0.000000,0.000000,0.250000,0,0);}
.m66_c00310{transform:matrix(0.311534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311534,0.000000,0.000000,0.250000,0,0);}
.maf_c00310{transform:matrix(0.311562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311562,0.000000,0.000000,0.250000,0,0);}
.mc2_c00310{transform:matrix(0.312804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312804,0.000000,0.000000,0.250000,0,0);}
.m62_c00310{transform:matrix(0.313806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313806,0.000000,0.000000,0.250000,0,0);}
.m29_c00310{transform:matrix(0.314268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314268,0.000000,0.000000,0.250000,0,0);}
.m10_c00310{transform:matrix(0.314631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314631,0.000000,0.000000,0.250000,0,0);}
.m49_c00310{transform:matrix(0.315093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315093,0.000000,0.000000,0.250000,0,0);}
.mb5_c00310{transform:matrix(0.315447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315447,0.000000,0.000000,0.250000,0,0);}
.m6e_c00310{transform:matrix(0.315598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315598,0.000000,0.000000,0.250000,0,0);}
.m37_c00310{transform:matrix(0.315600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315600,0.000000,0.000000,0.250000,0,0);}
.m7d_c00310{transform:matrix(0.315905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315905,0.000000,0.000000,0.250000,0,0);}
.m73_c00310{transform:matrix(0.315919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315919,0.000000,0.000000,0.250000,0,0);}
.mdb_c00310{transform:matrix(0.316292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316292,0.000000,0.000000,0.250000,0,0);}
.mbf_c00310{transform:matrix(0.316670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316670,0.000000,0.000000,0.250000,0,0);}
.m35_c00310{transform:matrix(0.316830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316830,0.000000,0.000000,0.250000,0,0);}
.m61_c00310{transform:matrix(0.318502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318502,0.000000,0.000000,0.250000,0,0);}
.m90_c00310{transform:matrix(0.318592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318592,0.000000,0.000000,0.250000,0,0);}
.m65_c00310{transform:matrix(0.318647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318647,0.000000,0.000000,0.250000,0,0);}
.m16_c00310{transform:matrix(0.319262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319262,0.000000,0.000000,0.250000,0,0);}
.m4e_c00310{transform:matrix(0.319378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319378,0.000000,0.000000,0.250000,0,0);}
.m4b_c00310{transform:matrix(0.319485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319485,0.000000,0.000000,0.250000,0,0);}
.mc0_c00310{transform:matrix(0.319677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319677,0.000000,0.000000,0.250000,0,0);}
.m6c_c00310{transform:matrix(0.319775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319775,0.000000,0.000000,0.250000,0,0);}
.m69_c00310{transform:matrix(0.319887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319887,0.000000,0.000000,0.250000,0,0);}
.m7b_c00310{transform:matrix(0.319921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319921,0.000000,0.000000,0.250000,0,0);}
.mc_c00310{transform:matrix(0.319982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319982,0.000000,0.000000,0.250000,0,0);}
.m5c_c00310{transform:matrix(0.320352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320352,0.000000,0.000000,0.250000,0,0);}
.m55_c00310{transform:matrix(0.320442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320442,0.000000,0.000000,0.250000,0,0);}
.m82_c00310{transform:matrix(0.320451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320451,0.000000,0.000000,0.250000,0,0);}
.m39_c00310{transform:matrix(0.321215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321215,0.000000,0.000000,0.250000,0,0);}
.ma2_c00310{transform:matrix(0.321515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321515,0.000000,0.000000,0.250000,0,0);}
.m77_c00310{transform:matrix(0.322292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322292,0.000000,0.000000,0.250000,0,0);}
.m33_c00310{transform:matrix(0.323993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323993,0.000000,0.000000,0.250000,0,0);}
.m42_c00310{transform:matrix(0.324213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324213,0.000000,0.000000,0.250000,0,0);}
.m3f_c00310{transform:matrix(0.325284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325284,0.000000,0.000000,0.250000,0,0);}
.m5e_c00310{transform:matrix(0.325559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325559,0.000000,0.000000,0.250000,0,0);}
.m2d_c00310{transform:matrix(0.325696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325696,0.000000,0.000000,0.250000,0,0);}
.m7c_c00310{transform:matrix(0.332217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332217,0.000000,0.000000,0.250000,0,0);}
.m45_c00310{transform:matrix(0.332283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332283,0.000000,0.000000,0.250000,0,0);}
.mb1_c00310{transform:matrix(0.332682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332682,0.000000,0.000000,0.250000,0,0);}
.m2c_c00310{transform:matrix(0.333101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333101,0.000000,0.000000,0.250000,0,0);}
.m68_c00310{transform:matrix(0.333185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333185,0.000000,0.000000,0.250000,0,0);}
.mb8_c00310{transform:matrix(0.333273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333273,0.000000,0.000000,0.250000,0,0);}
.mae_c00310{transform:matrix(0.333504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333504,0.000000,0.000000,0.250000,0,0);}
.m21_c00310{transform:matrix(0.333629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333629,0.000000,0.000000,0.250000,0,0);}
.m1c_c00310{transform:matrix(0.334509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334509,0.000000,0.000000,0.250000,0,0);}
.m20_c00310{transform:matrix(0.334979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334979,0.000000,0.000000,0.250000,0,0);}
.m56_c00310{transform:matrix(0.335104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335104,0.000000,0.000000,0.250000,0,0);}
.m94_c00310{transform:matrix(0.336686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336686,0.000000,0.000000,0.250000,0,0);}
.m99_c00310{transform:matrix(0.336787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336787,0.000000,0.000000,0.250000,0,0);}
.m3c_c00310{transform:matrix(0.337051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337051,0.000000,0.000000,0.250000,0,0);}
.m2b_c00310{transform:matrix(0.337453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337453,0.000000,0.000000,0.250000,0,0);}
.m3e_c00310{transform:matrix(0.338050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338050,0.000000,0.000000,0.250000,0,0);}
.ma0_c00310{transform:matrix(0.338531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338531,0.000000,0.000000,0.250000,0,0);}
.md_c00310{transform:matrix(0.339155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339155,0.000000,0.000000,0.250000,0,0);}
.ma8_c00310{transform:matrix(0.339291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339291,0.000000,0.000000,0.250000,0,0);}
.md8_c00310{transform:matrix(0.339463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339463,0.000000,0.000000,0.250000,0,0);}
.m80_c00310{transform:matrix(0.339968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339968,0.000000,0.000000,0.250000,0,0);}
.m8f_c00310{transform:matrix(0.340875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340875,0.000000,0.000000,0.250000,0,0);}
.m2a_c00310{transform:matrix(0.341508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341508,0.000000,0.000000,0.250000,0,0);}
.m84_c00310{transform:matrix(0.341976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341976,0.000000,0.000000,0.250000,0,0);}
.m71_c00310{transform:matrix(0.343373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343373,0.000000,0.000000,0.250000,0,0);}
.m87_c00310{transform:matrix(0.343828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343828,0.000000,0.000000,0.250000,0,0);}
.m23_c00310{transform:matrix(0.343903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343903,0.000000,0.000000,0.250000,0,0);}
.m12_c00310{transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);}
.mc7_c00310{transform:matrix(0.346267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346267,0.000000,0.000000,0.250000,0,0);}
.mce_c00310{transform:matrix(0.346811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346811,0.000000,0.000000,0.250000,0,0);}
.mcc_c00310{transform:matrix(0.347858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347858,0.000000,0.000000,0.250000,0,0);}
.m32_c00310{transform:matrix(0.348110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348110,0.000000,0.000000,0.250000,0,0);}
.m51_c00310{transform:matrix(0.348750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348750,0.000000,0.000000,0.250000,0,0);}
.m95_c00310{transform:matrix(0.349300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349300,0.000000,0.000000,0.250000,0,0);}
.m43_c00310{transform:matrix(0.349364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349364,0.000000,0.000000,0.250000,0,0);}
.m98_c00310{transform:matrix(0.352000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352000,0.000000,0.000000,0.250000,0,0);}
.m54_c00310{transform:matrix(0.355023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355023,0.000000,0.000000,0.250000,0,0);}
.m36_c00310{transform:matrix(0.355860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355860,0.000000,0.000000,0.250000,0,0);}
.mb2_c00310{transform:matrix(0.359729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359729,0.000000,0.000000,0.250000,0,0);}
.mdc_c00310{transform:matrix(0.360191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360191,0.000000,0.000000,0.250000,0,0);}
.m93_c00310{transform:matrix(0.361546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361546,0.000000,0.000000,0.250000,0,0);}
.m9c_c00310{transform:matrix(0.363817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363817,0.000000,0.000000,0.250000,0,0);}
.m3a_c00310{transform:matrix(0.364806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364806,0.000000,0.000000,0.250000,0,0);}
.m28_c00310{transform:matrix(0.368367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368367,0.000000,0.000000,0.250000,0,0);}
.mc1_c00310{transform:matrix(0.374589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374589,0.000000,0.000000,0.250000,0,0);}
.m75_c00310{transform:matrix(0.374610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374610,0.000000,0.000000,0.250000,0,0);}
.m1a_c00310{transform:matrix(0.380559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380559,0.000000,0.000000,0.250000,0,0);}
.mab_c00310{transform:matrix(0.380571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380571,0.000000,0.000000,0.250000,0,0);}
.mde_c00310{transform:matrix(0.387076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387076,0.000000,0.000000,0.250000,0,0);}
.mb4_c00310{transform:matrix(0.408801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408801,0.000000,0.000000,0.250000,0,0);}
.m5d_c00310{transform:matrix(0.411017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411017,0.000000,0.000000,0.250000,0,0);}
.mc6_c00310{transform:matrix(0.415566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415566,0.000000,0.000000,0.250000,0,0);}
.m50_c00310{transform:matrix(0.419405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419405,0.000000,0.000000,0.250000,0,0);}
.ma3_c00310{transform:matrix(0.432185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432185,0.000000,0.000000,0.250000,0,0);}
.m6b_c00310{transform:matrix(0.438583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438583,0.000000,0.000000,0.250000,0,0);}
.m8a_c00310{transform:matrix(0.440189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440189,0.000000,0.000000,0.250000,0,0);}
.m25_c00310{transform:matrix(0.456195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456195,0.000000,0.000000,0.250000,0,0);}
.v1_c00310{vertical-align:-82.684800px;}
.v2_c00310{vertical-align:-32.788800px;}
.v3_c00310{vertical-align:-31.363200px;}
.v0_c00310{vertical-align:0.000000px;}
.lsa_c00310{letter-spacing:-2.647267px;}
.ls7_c00310{letter-spacing:-2.594322px;}
.ls13_c00310{letter-spacing:-1.913596px;}
.ls15_c00310{letter-spacing:-0.726108px;}
.ls4_c00310{letter-spacing:-0.662369px;}
.lsc_c00310{letter-spacing:-0.453817px;}
.ls9_c00310{letter-spacing:-0.272290px;}
.lsf_c00310{letter-spacing:-0.037818px;}
.ls10_c00310{letter-spacing:-0.015127px;}
.ls3_c00310{letter-spacing:0.000000px;}
.ls17_c00310{letter-spacing:0.726108px;}
.ls12_c00310{letter-spacing:0.945452px;}
.lse_c00310{letter-spacing:1.623600px;}
.lsd_c00310{letter-spacing:2.435486px;}
.ls1b_c00310{letter-spacing:2.475000px;}
.lsb_c00310{letter-spacing:2.583900px;}
.ls14_c00310{letter-spacing:2.632140px;}
.ls19_c00310{letter-spacing:2.896866px;}
.ls2_c00310{letter-spacing:2.957375px;}
.ls11_c00310{letter-spacing:3.049200px;}
.ls8_c00310{letter-spacing:3.267484px;}
.ls16_c00310{letter-spacing:3.449011px;}
.ls1a_c00310{letter-spacing:3.544200px;}
.ls5_c00310{letter-spacing:3.781810px;}
.ls1_c00310{letter-spacing:8.395706px;}
.ls0_c00310{letter-spacing:22.651398px;}
.ls6_c00310{letter-spacing:48.470598px;}
.ls18_c00310{letter-spacing:49.896198px;}
.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;}
}
.ws1_c00310{word-spacing:-22.176533px;}
.ws4_c00310{word-spacing:-21.866425px;}
.ws7_c00310{word-spacing:-21.805916px;}
.ws6_c00310{word-spacing:-19.635157px;}
.ws0_c00310{word-spacing:-18.909050px;}
.ws3_c00310{word-spacing:-18.893922px;}
.ws8_c00310{word-spacing:0.000000px;}
.ws2_c00310{word-spacing:3.705257px;}
.ws5_c00310{word-spacing:6.958605px;}
._f_c00310{margin-left:-22.236874px;}
._10_c00310{margin-left:-14.446542px;}
._1b_c00310{margin-left:-10.286149px;}
._6_c00310{margin-left:-3.706219px;}
._4_c00310{margin-left:-2.269003px;}
._13_c00310{width:3.403521px;}
._7_c00310{width:4.886102px;}
._9_c00310{width:6.504608px;}
._e_c00310{width:8.546769px;}
._18_c00310{width:9.654381px;}
._d_c00310{width:10.740224px;}
._b_c00310{width:12.026421px;}
._c_c00310{width:13.690039px;}
._16_c00310{width:19.937936px;}
._12_c00310{width:22.388399px;}
._17_c00310{width:24.506009px;}
._19_c00310{width:28.968522px;}
._11_c00310{width:30.827010px;}
._1c_c00310{width:33.128629px;}
._1a_c00310{width:34.551000px;}
._5_c00310{width:35.942370px;}
._14_c00310{width:37.996469px;}
._15_c00310{width:39.752856px;}
._a_c00310{width:43.677497px;}
._8_c00310{width:45.242901px;}
._2_c00310{width:109.375200px;}
._3_c00310{width:187.631136px;}
._1_c00310{width:1401.219072px;}
._0_c00310{width:2508.200640px;}
.fc0_c00310{color:transparent;}
.fs2_c00310{font-size:22.176000px;}
.fs0_c00310{font-size:27.720000px;}
.fsd_c00310{font-size:32.472000px;}
.fs13_c00310{font-size:32.670000px;}
.fs4_c00310{font-size:39.600000px;}
.fs5_c00310{font-size:45.144000px;}
.fs8_c00310{font-size:48.470598px;}
.fs12_c00310{font-size:49.500000px;}
.fsf_c00310{font-size:49.896198px;}
.fs3_c00310{font-size:50.292000px;}
.fsa_c00310{font-size:51.678000px;}
.fs6_c00310{font-size:57.618000px;}
.fs10_c00310{font-size:60.984000px;}
.fs9_c00310{font-size:63.360000px;}
.fsc_c00310{font-size:64.548000px;}
.fs11_c00310{font-size:70.884000px;}
.fs7_c00310{font-size:75.636198px;}
.fsb_c00310{font-size:78.012198px;}
.fs1_c00310{font-size:81.774000px;}
.fse_c00310{font-size:106.920000px;}
.y0_c00310{bottom:0.000000px;}
.y1_c00310{bottom:76.500000px;}
.y1e_c00310{bottom:137.120985px;}
.y1d_c00310{bottom:167.771385px;}
.y1c_c00310{bottom:202.347135px;}
.y1b_c00310{bottom:235.487385px;}
.y1a_c00310{bottom:267.563385px;}
.y19_c00310{bottom:365.221935px;}
.y18_c00310{bottom:399.079935px;}
.y17_c00310{bottom:431.507385px;}
.y16_c00310{bottom:463.944735px;}
.y15_c00310{bottom:496.020735px;}
.y14_c00310{bottom:528.453135px;}
.y13_c00310{bottom:560.167785px;}
.y12_c00310{bottom:592.600185px;}
.y11_c00310{bottom:625.388985px;}
.y10_c00310{bottom:657.821385px;}
.yf_c00310{bottom:667.805535px;}
.yd_c00310{bottom:690.966585px;}
.ye_c00310{bottom:695.599785px;}
.yc_c00310{bottom:723.047535px;}
.yb_c00310{bottom:731.601135px;}
.ya_c00310{bottom:756.544185px;}
.y9_c00310{bottom:788.268735px;}
.y8_c00310{bottom:796.460985px;}
.y7_c00310{bottom:821.765385px;}
.y6_c00310{bottom:856.341135px;}
.y5_c00310{bottom:924.052185px;}
.y4_c00310{bottom:928.685385px;}
.y3_c00310{bottom:1024.556985px;}
.y2_c00310{bottom:1097.975385px;}
.h3_c00310{height:23.128875px;}
.h2_c00310{height:28.911094px;}
.h6_c00310{height:32.281418px;}
.h10_c00310{height:33.230868px;}
.ha_c00310{height:33.867281px;}
.h12_c00310{height:34.073789px;}
.h11_c00310{height:48.581543px;}
.h8_c00310{height:50.719131px;}
.hc_c00310{height:52.040175px;}
.h4_c00310{height:60.093773px;}
.he_c00310{height:63.604406px;}
.h7_c00310{height:66.082500px;}
.hd_c00310{height:67.321547px;}
.hf_c00310{height:69.568770px;}
.h5_c00310{height:74.232792px;}
.h9_c00310{height:76.564706px;}
.hb_c00310{height:104.936133px;}
.h1_c00310{height:1110.000000px;}
.h0_c00310{height:1263.000000px;}
.w1_c00310{width:781.500000px;}
.w0_c00310{width:892.500000px;}
.x0_c00310{left:0.000000px;}
.x2_c00310{left:28.895085px;}
.x1_c00310{left:55.500000px;}
.x25_c00310{left:60.906735px;}
.x46_c00310{left:61.951185px;}
.x18_c00310{left:84.889485px;}
.x5_c00310{left:86.889285px;}
.x6_c00310{left:97.120935px;}
.x4_c00310{left:101.432385px;}
.x51_c00310{left:106.006185px;}
.x26_c00310{left:107.144685px;}
.x71_c00310{left:108.639585px;}
.x52_c00310{left:117.881235px;}
.x19_c00310{left:118.891035px;}
.x6f_c00310{left:121.366035px;}
.x63_c00310{left:126.256635px;}
.x7_c00310{left:129.474135px;}
.x58_c00310{left:139.091985px;}
.x8_c00310{left:140.319585px;}
.x1a_c00310{left:150.561135px;}
.x37_c00310{left:151.674885px;}
.x40_c00310{left:161.738235px;}
.x53_c00310{left:162.792585px;}
.x27_c00310{left:173.014335px;}
.xa_c00310{left:174.058785px;}
.x9_c00310{left:175.439835px;}
.x2f_c00310{left:184.191435px;}
.x65_c00310{left:185.235885px;}
.x67_c00310{left:186.354585px;}
.x41_c00310{left:193.972635px;}
.x28_c00310{left:195.566535px;}
.x54_c00310{left:205.060635px;}
.x1b_c00310{left:207.288135px;}
.xb_c00310{left:217.539585px;}
.x60_c00310{left:218.707785px;}
.x5c_c00310{left:219.727485px;}
.xc_c00310{left:229.305735px;}
.x1c_c00310{left:238.879035px;}
.xd_c00310{left:240.354135px;}
.xe_c00310{left:246.051585px;}
.x47_c00310{left:249.917535px;}
.x30_c00310{left:251.546085px;}
.x1d_c00310{left:261.693585px;}
.x31_c00310{left:272.662785px;}
.x32_c00310{left:281.290635px;}
.xf_c00310{left:283.993335px;}
.x72_c00310{left:287.908785px;}
.x33_c00310{left:295.714935px;}
.x29_c00310{left:297.244485px;}
.x3_c00310{left:302.991435px;}
.x48_c00310{left:305.595135px;}
.x59_c00310{left:307.426635px;}
.x1e_c00310{left:317.376135px;}
.x34_c00310{left:328.330485px;}
.x38_c00310{left:339.596685px;}
.x55_c00310{left:340.631235px;}
.x4c_c00310{left:348.739335px;}
.x10_c00310{left:351.313335px;}
.x35_c00310{left:361.099485px;}
.x56_c00310{left:372.405285px;}
.x42_c00310{left:374.311035px;}
.x74_c00310{left:378.464085px;}
.x36_c00310{left:383.072535px;}
.x1f_c00310{left:384.404085px;}
.x5a_c00310{left:393.239835px;}
.x5d_c00310{left:394.472385px;}
.x68_c00310{left:395.536635px;}
.x2a_c00310{left:404.619885px;}
.x57_c00310{left:406.198935px;}
.x70_c00310{left:408.297735px;}
.x69_c00310{left:415.994985px;}
.x20_c00310{left:417.242385px;}
.x11_c00310{left:419.316435px;}
.x2b_c00310{left:427.949235px;}
.x43_c00310{left:437.750235px;}
.x4d_c00310{left:438.982785px;}
.x6a_c00310{left:440.081685px;}
.x6b_c00310{left:450.219285px;}
.x39_c00310{left:455.179185px;}
.x64_c00310{left:460.718235px;}
.x4e_c00310{left:461.831985px;}
.x12_c00310{left:472.157685px;}
.x49_c00310{left:482.720985px;}
.x13_c00310{left:494.071335px;}
.x6c_c00310{left:495.303885px;}
.x2c_c00310{left:504.946485px;}
.x5b_c00310{left:506.030535px;}
.x4a_c00310{left:515.638485px;}
.x73_c00310{left:520.123185px;}
.x6d_c00310{left:526.087935px;}
.x21_c00310{left:527.211585px;}
.x2d_c00310{left:537.873885px;}
.x5e_c00310{left:539.160885px;}
.x14_c00310{left:548.273835px;}
.x44_c00310{left:549.838035px;}
.x3a_c00310{left:559.282635px;}
.x4b_c00310{left:560.544885px;}
.x3b_c00310{left:571.563585px;}
.x15_c00310{left:581.735835px;}
.x66_c00310{left:584.067285px;}
.x3c_c00310{left:593.343585px;}
.x6e_c00310{left:594.759285px;}
.x3d_c00310{left:604.708785px;}
.x5f_c00310{left:613.099035px;}
.x45_c00310{left:615.801735px;}
.x3e_c00310{left:626.770935px;}
.x16_c00310{left:637.903485px;}
.x22_c00310{left:648.570735px;}
.x4f_c00310{left:660.970485px;}
.x23_c00310{left:670.964535px;}
.x2e_c00310{left:680.889285px;}
.x61_c00310{left:682.052535px;}
.x24_c00310{left:693.011835px;}
.x50_c00310{left:704.332485px;}
.x17_c00310{left:714.846285px;}
.x62_c00310{left:716.573835px;}
.x3f_c00310{left:726.637185px;}
@media print{
.v1_c00310{vertical-align:-73.497600pt;}
.v2_c00310{vertical-align:-29.145600pt;}
.v3_c00310{vertical-align:-27.878400pt;}
.v0_c00310{vertical-align:0.000000pt;}
.lsa_c00310{letter-spacing:-2.353126pt;}
.ls7_c00310{letter-spacing:-2.306064pt;}
.ls13_c00310{letter-spacing:-1.700974pt;}
.ls15_c00310{letter-spacing:-0.645429pt;}
.ls4_c00310{letter-spacing:-0.588773pt;}
.lsc_c00310{letter-spacing:-0.403393pt;}
.ls9_c00310{letter-spacing:-0.242036pt;}
.lsf_c00310{letter-spacing:-0.033616pt;}
.ls10_c00310{letter-spacing:-0.013446pt;}
.ls3_c00310{letter-spacing:0.000000pt;}
.ls17_c00310{letter-spacing:0.645429pt;}
.ls12_c00310{letter-spacing:0.840402pt;}
.lse_c00310{letter-spacing:1.443200pt;}
.lsd_c00310{letter-spacing:2.164876pt;}
.ls1b_c00310{letter-spacing:2.200000pt;}
.lsb_c00310{letter-spacing:2.296800pt;}
.ls14_c00310{letter-spacing:2.339680pt;}
.ls19_c00310{letter-spacing:2.574992pt;}
.ls2_c00310{letter-spacing:2.628778pt;}
.ls11_c00310{letter-spacing:2.710400pt;}
.ls8_c00310{letter-spacing:2.904430pt;}
.ls16_c00310{letter-spacing:3.065787pt;}
.ls1a_c00310{letter-spacing:3.150400pt;}
.ls5_c00310{letter-spacing:3.361609pt;}
.ls1_c00310{letter-spacing:7.462850pt;}
.ls0_c00310{letter-spacing:20.134576pt;}
.ls6_c00310{letter-spacing:43.084976pt;}
.ls18_c00310{letter-spacing:44.352176pt;}
.ws1_c00310{word-spacing:-19.712474pt;}
.ws4_c00310{word-spacing:-19.436822pt;}
.ws7_c00310{word-spacing:-19.383036pt;}
.ws6_c00310{word-spacing:-17.453473pt;}
.ws0_c00310{word-spacing:-16.808044pt;}
.ws3_c00310{word-spacing:-16.794598pt;}
.ws8_c00310{word-spacing:0.000000pt;}
.ws2_c00310{word-spacing:3.293561pt;}
.ws5_c00310{word-spacing:6.185427pt;}
._f_c00310{margin-left:-19.766110pt;}
._10_c00310{margin-left:-12.841371pt;}
._1b_c00310{margin-left:-9.143244pt;}
._6_c00310{margin-left:-3.294417pt;}
._4_c00310{margin-left:-2.016892pt;}
._13_c00310{width:3.025352pt;}
._7_c00310{width:4.343201pt;}
._9_c00310{width:5.781874pt;}
._e_c00310{width:7.597128pt;}
._18_c00310{width:8.581672pt;}
._d_c00310{width:9.546866pt;}
._b_c00310{width:10.690152pt;}
._c_c00310{width:12.168924pt;}
._16_c00310{width:17.722609pt;}
._12_c00310{width:19.900799pt;}
._17_c00310{width:21.783119pt;}
._19_c00310{width:25.749797pt;}
._11_c00310{width:27.401787pt;}
._1c_c00310{width:29.447670pt;}
._1a_c00310{width:30.712000pt;}
._5_c00310{width:31.948773pt;}
._14_c00310{width:33.774640pt;}
._15_c00310{width:35.335872pt;}
._a_c00310{width:38.824441pt;}
._8_c00310{width:40.215912pt;}
._2_c00310{width:97.222400pt;}
._3_c00310{width:166.783232pt;}
._1_c00310{width:1245.528064pt;}
._0_c00310{width:2229.511680pt;}
.fs2_c00310{font-size:19.712000pt;}
.fs0_c00310{font-size:24.640000pt;}
.fsd_c00310{font-size:28.864000pt;}
.fs13_c00310{font-size:29.040000pt;}
.fs4_c00310{font-size:35.200000pt;}
.fs5_c00310{font-size:40.128000pt;}
.fs8_c00310{font-size:43.084976pt;}
.fs12_c00310{font-size:44.000000pt;}
.fsf_c00310{font-size:44.352176pt;}
.fs3_c00310{font-size:44.704000pt;}
.fsa_c00310{font-size:45.936000pt;}
.fs6_c00310{font-size:51.216000pt;}
.fs10_c00310{font-size:54.208000pt;}
.fs9_c00310{font-size:56.320000pt;}
.fsc_c00310{font-size:57.376000pt;}
.fs11_c00310{font-size:63.008000pt;}
.fs7_c00310{font-size:67.232176pt;}
.fsb_c00310{font-size:69.344176pt;}
.fs1_c00310{font-size:72.688000pt;}
.fse_c00310{font-size:95.040000pt;}
.y0_c00310{bottom:0.000000pt;}
.y1_c00310{bottom:68.000000pt;}
.y1e_c00310{bottom:121.885320pt;}
.y1d_c00310{bottom:149.130120pt;}
.y1c_c00310{bottom:179.864120pt;}
.y1b_c00310{bottom:209.322120pt;}
.y1a_c00310{bottom:237.834120pt;}
.y19_c00310{bottom:324.641720pt;}
.y18_c00310{bottom:354.737720pt;}
.y17_c00310{bottom:383.562120pt;}
.y16_c00310{bottom:412.395320pt;}
.y15_c00310{bottom:440.907320pt;}
.y14_c00310{bottom:469.736120pt;}
.y13_c00310{bottom:497.926920pt;}
.y12_c00310{bottom:526.755720pt;}
.y11_c00310{bottom:555.901320pt;}
.y10_c00310{bottom:584.730120pt;}
.yf_c00310{bottom:593.604920pt;}
.yd_c00310{bottom:614.192520pt;}
.ye_c00310{bottom:618.310920pt;}
.yc_c00310{bottom:642.708920pt;}
.yb_c00310{bottom:650.312120pt;}
.ya_c00310{bottom:672.483720pt;}
.y9_c00310{bottom:700.683320pt;}
.y8_c00310{bottom:707.965320pt;}
.y7_c00310{bottom:730.458120pt;}
.y6_c00310{bottom:761.192120pt;}
.y5_c00310{bottom:821.379720pt;}
.y4_c00310{bottom:825.498120pt;}
.y3_c00310{bottom:910.717320pt;}
.y2_c00310{bottom:975.978120pt;}
.h3_c00310{height:20.559000pt;}
.h2_c00310{height:25.698750pt;}
.h6_c00310{height:28.694594pt;}
.h10_c00310{height:29.538549pt;}
.ha_c00310{height:30.104250pt;}
.h12_c00310{height:30.287813pt;}
.h11_c00310{height:43.183594pt;}
.h8_c00310{height:45.083672pt;}
.hc_c00310{height:46.257934pt;}
.h4_c00310{height:53.416688pt;}
.he_c00310{height:56.537250pt;}
.h7_c00310{height:58.740000pt;}
.hd_c00310{height:59.841375pt;}
.hf_c00310{height:61.838906pt;}
.h5_c00310{height:65.984704pt;}
.h9_c00310{height:68.057516pt;}
.hb_c00310{height:93.276563pt;}
.h1_c00310{height:986.666667pt;}
.h0_c00310{height:1122.666667pt;}
.w1_c00310{width:694.666667pt;}
.w0_c00310{width:793.333333pt;}
.x0_c00310{left:0.000000pt;}
.x2_c00310{left:25.684520pt;}
.x1_c00310{left:49.333333pt;}
.x25_c00310{left:54.139320pt;}
.x46_c00310{left:55.067720pt;}
.x18_c00310{left:75.457320pt;}
.x5_c00310{left:77.234920pt;}
.x6_c00310{left:86.329720pt;}
.x4_c00310{left:90.162120pt;}
.x51_c00310{left:94.227720pt;}
.x26_c00310{left:95.239720pt;}
.x71_c00310{left:96.568520pt;}
.x52_c00310{left:104.783320pt;}
.x19_c00310{left:105.680920pt;}
.x6f_c00310{left:107.880920pt;}
.x63_c00310{left:112.228120pt;}
.x7_c00310{left:115.088120pt;}
.x58_c00310{left:123.637320pt;}
.x8_c00310{left:124.728520pt;}
.x1a_c00310{left:133.832120pt;}
.x37_c00310{left:134.822120pt;}
.x40_c00310{left:143.767320pt;}
.x53_c00310{left:144.704520pt;}
.x27_c00310{left:153.790520pt;}
.xa_c00310{left:154.718920pt;}
.x9_c00310{left:155.946520pt;}
.x2f_c00310{left:163.725720pt;}
.x65_c00310{left:164.654120pt;}
.x67_c00310{left:165.648520pt;}
.x41_c00310{left:172.420120pt;}
.x28_c00310{left:173.836920pt;}
.x54_c00310{left:182.276120pt;}
.x1b_c00310{left:184.256120pt;}
.xb_c00310{left:193.368520pt;}
.x60_c00310{left:194.406920pt;}
.x5c_c00310{left:195.313320pt;}
.xc_c00310{left:203.827320pt;}
.x1c_c00310{left:212.336920pt;}
.xd_c00310{left:213.648120pt;}
.xe_c00310{left:218.712520pt;}
.x47_c00310{left:222.148920pt;}
.x30_c00310{left:223.596520pt;}
.x1d_c00310{left:232.616520pt;}
.x31_c00310{left:242.366920pt;}
.x32_c00310{left:250.036120pt;}
.xf_c00310{left:252.438520pt;}
.x72_c00310{left:255.918920pt;}
.x33_c00310{left:262.857720pt;}
.x29_c00310{left:264.217320pt;}
.x3_c00310{left:269.325720pt;}
.x48_c00310{left:271.640120pt;}
.x59_c00310{left:273.268120pt;}
.x1e_c00310{left:282.112120pt;}
.x34_c00310{left:291.849320pt;}
.x38_c00310{left:301.863720pt;}
.x55_c00310{left:302.783320pt;}
.x4c_c00310{left:309.990520pt;}
.x10_c00310{left:312.278520pt;}
.x35_c00310{left:320.977320pt;}
.x56_c00310{left:331.026920pt;}
.x42_c00310{left:332.720920pt;}
.x74_c00310{left:336.412520pt;}
.x36_c00310{left:340.508920pt;}
.x1f_c00310{left:341.692520pt;}
.x5a_c00310{left:349.546520pt;}
.x5d_c00310{left:350.642120pt;}
.x68_c00310{left:351.588120pt;}
.x2a_c00310{left:359.662120pt;}
.x57_c00310{left:361.065720pt;}
.x70_c00310{left:362.931320pt;}
.x69_c00310{left:369.773320pt;}
.x20_c00310{left:370.882120pt;}
.x11_c00310{left:372.725720pt;}
.x2b_c00310{left:380.399320pt;}
.x43_c00310{left:389.111320pt;}
.x4d_c00310{left:390.206920pt;}
.x6a_c00310{left:391.183720pt;}
.x6b_c00310{left:400.194920pt;}
.x39_c00310{left:404.603720pt;}
.x64_c00310{left:409.527320pt;}
.x4e_c00310{left:410.517320pt;}
.x12_c00310{left:419.695720pt;}
.x49_c00310{left:429.085320pt;}
.x13_c00310{left:439.174520pt;}
.x6c_c00310{left:440.270120pt;}
.x2c_c00310{left:448.841320pt;}
.x5b_c00310{left:449.804920pt;}
.x4a_c00310{left:458.345320pt;}
.x73_c00310{left:462.331720pt;}
.x6d_c00310{left:467.633720pt;}
.x21_c00310{left:468.632520pt;}
.x2d_c00310{left:478.110120pt;}
.x5e_c00310{left:479.254120pt;}
.x14_c00310{left:487.354520pt;}
.x44_c00310{left:488.744920pt;}
.x3a_c00310{left:497.140120pt;}
.x4b_c00310{left:498.262120pt;}
.x3b_c00310{left:508.056520pt;}
.x15_c00310{left:517.098520pt;}
.x66_c00310{left:519.170920pt;}
.x3c_c00310{left:527.416520pt;}
.x6e_c00310{left:528.674920pt;}
.x3d_c00310{left:537.518920pt;}
.x5f_c00310{left:544.976920pt;}
.x45_c00310{left:547.379320pt;}
.x3e_c00310{left:557.129720pt;}
.x16_c00310{left:567.025320pt;}
.x22_c00310{left:576.507320pt;}
.x4f_c00310{left:587.529320pt;}
.x23_c00310{left:596.412920pt;}
.x2e_c00310{left:605.234920pt;}
.x61_c00310{left:606.268920pt;}
.x24_c00310{left:616.010520pt;}
.x50_c00310{left:626.073320pt;}
.x17_c00310{left:635.418920pt;}
.x62_c00310{left:636.954520pt;}
.x3f_c00310{left:645.899720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_774d3689259be345594a6a7a.woff2')format("woff");}.ff1_c00311{font-family:ff1_c00311;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00311;src:url('chunks/assets/font_0a97cf78e4be1f1aa9f65c2d.woff2')format("woff");}.ff2_c00311{font-family:ff2_c00311;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00311;src:url('chunks/assets/font_732a93550b3eaa3ff5677a08.woff2')format("woff");}.ff3_c00311{font-family:ff3_c00311;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00311;src:url('chunks/assets/font_68d4406922f81b38c457bda5.woff2')format("woff");}.ff4_c00311{font-family:ff4_c00311;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3e_c00311{transform:matrix(0.079269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.079269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.079269,0.000000,0.000000,0.250000,0,0);}
.m84_c00311{transform:matrix(0.108318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108318,0.000000,0.000000,0.250000,0,0);}
.ma6_c00311{transform:matrix(0.119586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119586,0.000000,0.000000,0.250000,0,0);}
.m1_c00311{transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);}
.m42_c00311{transform:matrix(0.134146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134146,0.000000,0.000000,0.250000,0,0);}
.mc1_c00311{transform:matrix(0.137196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137196,0.000000,0.000000,0.250000,0,0);}
.m43_c00311{transform:matrix(0.143292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143292,0.000000,0.000000,0.250000,0,0);}
.mce_c00311{transform:matrix(0.155674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155674,0.000000,0.000000,0.250000,0,0);}
.m7e_c00311{transform:matrix(0.156868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156868,0.000000,0.000000,0.250000,0,0);}
.m40_c00311{transform:matrix(0.158537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158537,0.000000,0.000000,0.250000,0,0);}
.md5_c00311{transform:matrix(0.173077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173077,0.000000,0.000000,0.250000,0,0);}
.m9b_c00311{transform:matrix(0.177361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177361,0.000000,0.000000,0.250000,0,0);}
.m3f_c00311{transform:matrix(0.178048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178048,0.000000,0.000000,0.250000,0,0);}
.mb4_c00311{transform:matrix(0.179290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179290,0.000000,0.000000,0.250000,0,0);}
.m41_c00311{transform:matrix(0.182926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182926,0.000000,0.000000,0.250000,0,0);}
.mc2_c00311{transform:matrix(0.184960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184960,0.000000,0.000000,0.250000,0,0);}
.md9_c00311{transform:matrix(0.190171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190171,0.000000,0.000000,0.250000,0,0);}
.m70_c00311{transform:matrix(0.192969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192969,0.000000,0.000000,0.250000,0,0);}
.md4_c00311{transform:matrix(0.195513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195513,0.000000,0.000000,0.250000,0,0);}
.ma5_c00311{transform:matrix(0.213438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213438,0.000000,0.000000,0.250000,0,0);}
.mb5_c00311{transform:matrix(0.214168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214168,0.000000,0.000000,0.250000,0,0);}
.m5b_c00311{transform:matrix(0.229064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229064,0.000000,0.000000,0.250000,0,0);}
.mc6_c00311{transform:matrix(0.231045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231045,0.000000,0.000000,0.250000,0,0);}
.mcc_c00311{transform:matrix(0.235197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235197,0.000000,0.000000,0.250000,0,0);}
.m5d_c00311{transform:matrix(0.236801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236801,0.000000,0.000000,0.250000,0,0);}
.m82_c00311{transform:matrix(0.243764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243764,0.000000,0.000000,0.250000,0,0);}
.m0_c00311{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00311{transform:matrix(0.252612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252612,0.000000,0.000000,0.250000,0,0);}
.mb9_c00311{transform:matrix(0.254645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254645,0.000000,0.000000,0.250000,0,0);}
.m97_c00311{transform:matrix(0.255329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255329,0.000000,0.000000,0.250000,0,0);}
.mc0_c00311{transform:matrix(0.259397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259397,0.000000,0.000000,0.250000,0,0);}
.mb6_c00311{transform:matrix(0.259512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259512,0.000000,0.000000,0.250000,0,0);}
.m86_c00311{transform:matrix(0.263164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263164,0.000000,0.000000,0.250000,0,0);}
.m80_c00311{transform:matrix(0.267482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267482,0.000000,0.000000,0.250000,0,0);}
.m2e_c00311{transform:matrix(0.268555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268555,0.000000,0.000000,0.250000,0,0);}
.m3_c00311{transform:matrix(0.268638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268638,0.000000,0.000000,0.250000,0,0);}
.m18_c00311{transform:matrix(0.268709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268709,0.000000,0.000000,0.250000,0,0);}
.mad_c00311{transform:matrix(0.269713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269713,0.000000,0.000000,0.250000,0,0);}
.mbb_c00311{transform:matrix(0.271198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271198,0.000000,0.000000,0.250000,0,0);}
.m20_c00311{transform:matrix(0.272719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272719,0.000000,0.000000,0.250000,0,0);}
.m22_c00311{transform:matrix(0.273625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273625,0.000000,0.000000,0.250000,0,0);}
.mb0_c00311{transform:matrix(0.274762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274762,0.000000,0.000000,0.250000,0,0);}
.md7_c00311{transform:matrix(0.275540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275540,0.000000,0.000000,0.250000,0,0);}
.mc9_c00311{transform:matrix(0.275643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275643,0.000000,0.000000,0.250000,0,0);}
.m91_c00311{transform:matrix(0.275703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275703,0.000000,0.000000,0.250000,0,0);}
.m63_c00311{transform:matrix(0.277978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277978,0.000000,0.000000,0.250000,0,0);}
.m45_c00311{transform:matrix(0.278757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278757,0.000000,0.000000,0.250000,0,0);}
.mb_c00311{transform:matrix(0.279822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279822,0.000000,0.000000,0.250000,0,0);}
.m8d_c00311{transform:matrix(0.279907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279907,0.000000,0.000000,0.250000,0,0);}
.m9e_c00311{transform:matrix(0.280655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280655,0.000000,0.000000,0.250000,0,0);}
.m2a_c00311{transform:matrix(0.281060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281060,0.000000,0.000000,0.250000,0,0);}
.m95_c00311{transform:matrix(0.281242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281242,0.000000,0.000000,0.250000,0,0);}
.m59_c00311{transform:matrix(0.281752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281752,0.000000,0.000000,0.250000,0,0);}
.m1f_c00311{transform:matrix(0.282906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282906,0.000000,0.000000,0.250000,0,0);}
.m55_c00311{transform:matrix(0.283124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283124,0.000000,0.000000,0.250000,0,0);}
.m29_c00311{transform:matrix(0.283723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283723,0.000000,0.000000,0.250000,0,0);}
.m10_c00311{transform:matrix(0.283844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283844,0.000000,0.000000,0.250000,0,0);}
.m4b_c00311{transform:matrix(0.284141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284141,0.000000,0.000000,0.250000,0,0);}
.m74_c00311{transform:matrix(0.285167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285167,0.000000,0.000000,0.250000,0,0);}
.m15_c00311{transform:matrix(0.285667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285667,0.000000,0.000000,0.250000,0,0);}
.m5a_c00311{transform:matrix(0.285886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285886,0.000000,0.000000,0.250000,0,0);}
.m4c_c00311{transform:matrix(0.286265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286265,0.000000,0.000000,0.250000,0,0);}
.m7c_c00311{transform:matrix(0.286332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286332,0.000000,0.000000,0.250000,0,0);}
.md2_c00311{transform:matrix(0.287244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287244,0.000000,0.000000,0.250000,0,0);}
.m6f_c00311{transform:matrix(0.287911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287911,0.000000,0.000000,0.250000,0,0);}
.m58_c00311{transform:matrix(0.288823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288823,0.000000,0.000000,0.250000,0,0);}
.m9a_c00311{transform:matrix(0.289721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289721,0.000000,0.000000,0.250000,0,0);}
.m34_c00311{transform:matrix(0.289899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289899,0.000000,0.000000,0.250000,0,0);}
.mb8_c00311{transform:matrix(0.290679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290679,0.000000,0.000000,0.250000,0,0);}
.m8b_c00311{transform:matrix(0.291360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291360,0.000000,0.000000,0.250000,0,0);}
.m3b_c00311{transform:matrix(0.291949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291949,0.000000,0.000000,0.250000,0,0);}
.m65_c00311{transform:matrix(0.292547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292547,0.000000,0.000000,0.250000,0,0);}
.m9d_c00311{transform:matrix(0.292612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292612,0.000000,0.000000,0.250000,0,0);}
.m8c_c00311{transform:matrix(0.292741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292741,0.000000,0.000000,0.250000,0,0);}
.m47_c00311{transform:matrix(0.293039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293039,0.000000,0.000000,0.250000,0,0);}
.mc_c00311{transform:matrix(0.293890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293890,0.000000,0.000000,0.250000,0,0);}
.m19_c00311{transform:matrix(0.294574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294574,0.000000,0.000000,0.250000,0,0);}
.m38_c00311{transform:matrix(0.294671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294671,0.000000,0.000000,0.250000,0,0);}
.m1a_c00311{transform:matrix(0.295690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295690,0.000000,0.000000,0.250000,0,0);}
.ma2_c00311{transform:matrix(0.295692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295692,0.000000,0.000000,0.250000,0,0);}
.md6_c00311{transform:matrix(0.296060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296060,0.000000,0.000000,0.250000,0,0);}
.m61_c00311{transform:matrix(0.297034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297034,0.000000,0.000000,0.250000,0,0);}
.m4_c00311{transform:matrix(0.297408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297408,0.000000,0.000000,0.250000,0,0);}
.m68_c00311{transform:matrix(0.297573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297573,0.000000,0.000000,0.250000,0,0);}
.m13_c00311{transform:matrix(0.298532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298532,0.000000,0.000000,0.250000,0,0);}
.m44_c00311{transform:matrix(0.298978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298978,0.000000,0.000000,0.250000,0,0);}
.m51_c00311{transform:matrix(0.299055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299055,0.000000,0.000000,0.250000,0,0);}
.mcf_c00311{transform:matrix(0.299354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299354,0.000000,0.000000,0.250000,0,0);}
.m72_c00311{transform:matrix(0.299971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299971,0.000000,0.000000,0.250000,0,0);}
.m9_c00311{transform:matrix(0.300099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300099,0.000000,0.000000,0.250000,0,0);}
.m7a_c00311{transform:matrix(0.300702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300702,0.000000,0.000000,0.250000,0,0);}
.m77_c00311{transform:matrix(0.300759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300759,0.000000,0.000000,0.250000,0,0);}
.m60_c00311{transform:matrix(0.301408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301408,0.000000,0.000000,0.250000,0,0);}
.md_c00311{transform:matrix(0.301508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301508,0.000000,0.000000,0.250000,0,0);}
.m73_c00311{transform:matrix(0.302232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302232,0.000000,0.000000,0.250000,0,0);}
.m87_c00311{transform:matrix(0.302255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302255,0.000000,0.000000,0.250000,0,0);}
.m1d_c00311{transform:matrix(0.303127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303127,0.000000,0.000000,0.250000,0,0);}
.m98_c00311{transform:matrix(0.303633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303633,0.000000,0.000000,0.250000,0,0);}
.mda_c00311{transform:matrix(0.303747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303747,0.000000,0.000000,0.250000,0,0);}
.m50_c00311{transform:matrix(0.304631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304631,0.000000,0.000000,0.250000,0,0);}
.mb7_c00311{transform:matrix(0.304971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304971,0.000000,0.000000,0.250000,0,0);}
.m7b_c00311{transform:matrix(0.305072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305072,0.000000,0.000000,0.250000,0,0);}
.mbe_c00311{transform:matrix(0.305459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305459,0.000000,0.000000,0.250000,0,0);}
.mba_c00311{transform:matrix(0.305508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305508,0.000000,0.000000,0.250000,0,0);}
.m6d_c00311{transform:matrix(0.306914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306914,0.000000,0.000000,0.250000,0,0);}
.m2_c00311{transform:matrix(0.307215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307215,0.000000,0.000000,0.250000,0,0);}
.m3c_c00311{transform:matrix(0.307277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307277,0.000000,0.000000,0.250000,0,0);}
.m39_c00311{transform:matrix(0.307629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307629,0.000000,0.000000,0.250000,0,0);}
.mac_c00311{transform:matrix(0.308095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308095,0.000000,0.000000,0.250000,0,0);}
.m78_c00311{transform:matrix(0.308435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308435,0.000000,0.000000,0.250000,0,0);}
.maa_c00311{transform:matrix(0.308945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308945,0.000000,0.000000,0.250000,0,0);}
.mc5_c00311{transform:matrix(0.309395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309395,0.000000,0.000000,0.250000,0,0);}
.m57_c00311{transform:matrix(0.310551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310551,0.000000,0.000000,0.250000,0,0);}
.m11_c00311{transform:matrix(0.310727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310727,0.000000,0.000000,0.250000,0,0);}
.mb2_c00311{transform:matrix(0.310828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310828,0.000000,0.000000,0.250000,0,0);}
.mbd_c00311{transform:matrix(0.311505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311505,0.000000,0.000000,0.250000,0,0);}
.m6b_c00311{transform:matrix(0.311684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311684,0.000000,0.000000,0.250000,0,0);}
.m53_c00311{transform:matrix(0.311863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311863,0.000000,0.000000,0.250000,0,0);}
.md8_c00311{transform:matrix(0.311872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311872,0.000000,0.000000,0.250000,0,0);}
.m81_c00311{transform:matrix(0.312470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312470,0.000000,0.000000,0.250000,0,0);}
.m2f_c00311{transform:matrix(0.312597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312597,0.000000,0.000000,0.250000,0,0);}
.mb3_c00311{transform:matrix(0.313947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313947,0.000000,0.000000,0.250000,0,0);}
.ma3_c00311{transform:matrix(0.314352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314352,0.000000,0.000000,0.250000,0,0);}
.m71_c00311{transform:matrix(0.314514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314514,0.000000,0.000000,0.250000,0,0);}
.m27_c00311{transform:matrix(0.314676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314676,0.000000,0.000000,0.250000,0,0);}
.m24_c00311{transform:matrix(0.314871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314871,0.000000,0.000000,0.250000,0,0);}
.ma4_c00311{transform:matrix(0.315147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315147,0.000000,0.000000,0.250000,0,0);}
.m5e_c00311{transform:matrix(0.316584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316584,0.000000,0.000000,0.250000,0,0);}
.ma9_c00311{transform:matrix(0.317086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317086,0.000000,0.000000,0.250000,0,0);}
.m67_c00311{transform:matrix(0.317225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317225,0.000000,0.000000,0.250000,0,0);}
.md3_c00311{transform:matrix(0.318920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318920,0.000000,0.000000,0.250000,0,0);}
.m69_c00311{transform:matrix(0.321443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321443,0.000000,0.000000,0.250000,0,0);}
.m89_c00311{transform:matrix(0.321493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321493,0.000000,0.000000,0.250000,0,0);}
.m37_c00311{transform:matrix(0.322304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322304,0.000000,0.000000,0.250000,0,0);}
.m56_c00311{transform:matrix(0.322340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322340,0.000000,0.000000,0.250000,0,0);}
.m12_c00311{transform:matrix(0.322459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322459,0.000000,0.000000,0.250000,0,0);}
.mc8_c00311{transform:matrix(0.322926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322926,0.000000,0.000000,0.250000,0,0);}
.m46_c00311{transform:matrix(0.325686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325686,0.000000,0.000000,0.250000,0,0);}
.m7_c00311{transform:matrix(0.325870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325870,0.000000,0.000000,0.250000,0,0);}
.mcb_c00311{transform:matrix(0.327606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327606,0.000000,0.000000,0.250000,0,0);}
.m6_c00311{transform:matrix(0.328423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328423,0.000000,0.000000,0.250000,0,0);}
.m99_c00311{transform:matrix(0.328697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328697,0.000000,0.000000,0.250000,0,0);}
.m75_c00311{transform:matrix(0.328906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328906,0.000000,0.000000,0.250000,0,0);}
.ma7_c00311{transform:matrix(0.329208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329208,0.000000,0.000000,0.250000,0,0);}
.m21_c00311{transform:matrix(0.329542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329542,0.000000,0.000000,0.250000,0,0);}
.mf_c00311{transform:matrix(0.330197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330197,0.000000,0.000000,0.250000,0,0);}
.m1e_c00311{transform:matrix(0.331025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331025,0.000000,0.000000,0.250000,0,0);}
.m3a_c00311{transform:matrix(0.331047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331047,0.000000,0.000000,0.250000,0,0);}
.m25_c00311{transform:matrix(0.331587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331587,0.000000,0.000000,0.250000,0,0);}
.m6a_c00311{transform:matrix(0.333797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333797,0.000000,0.000000,0.250000,0,0);}
.ma1_c00311{transform:matrix(0.334133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334133,0.000000,0.000000,0.250000,0,0);}
.m14_c00311{transform:matrix(0.334564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334564,0.000000,0.000000,0.250000,0,0);}
.m79_c00311{transform:matrix(0.335232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335232,0.000000,0.000000,0.250000,0,0);}
.maf_c00311{transform:matrix(0.335273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335273,0.000000,0.000000,0.250000,0,0);}
.md1_c00311{transform:matrix(0.335377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335377,0.000000,0.000000,0.250000,0,0);}
.mdd_c00311{transform:matrix(0.336414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336414,0.000000,0.000000,0.250000,0,0);}
.m94_c00311{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);}
.m88_c00311{transform:matrix(0.336931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336931,0.000000,0.000000,0.250000,0,0);}
.mdc_c00311{transform:matrix(0.337304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337304,0.000000,0.000000,0.250000,0,0);}
.m9c_c00311{transform:matrix(0.337911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337911,0.000000,0.000000,0.250000,0,0);}
.m54_c00311{transform:matrix(0.338415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338415,0.000000,0.000000,0.250000,0,0);}
.m49_c00311{transform:matrix(0.338875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338875,0.000000,0.000000,0.250000,0,0);}
.m6e_c00311{transform:matrix(0.339084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339084,0.000000,0.000000,0.250000,0,0);}
.mc3_c00311{transform:matrix(0.340034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340034,0.000000,0.000000,0.250000,0,0);}
.m8a_c00311{transform:matrix(0.340208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340208,0.000000,0.000000,0.250000,0,0);}
.mae_c00311{transform:matrix(0.340582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340582,0.000000,0.000000,0.250000,0,0);}
.m35_c00311{transform:matrix(0.340937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340937,0.000000,0.000000,0.250000,0,0);}
.m5f_c00311{transform:matrix(0.341260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341260,0.000000,0.000000,0.250000,0,0);}
.mc7_c00311{transform:matrix(0.341960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341960,0.000000,0.000000,0.250000,0,0);}
.mbc_c00311{transform:matrix(0.342722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342722,0.000000,0.000000,0.250000,0,0);}
.mca_c00311{transform:matrix(0.342730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342730,0.000000,0.000000,0.250000,0,0);}
.ma0_c00311{transform:matrix(0.344927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344927,0.000000,0.000000,0.250000,0,0);}
.mc4_c00311{transform:matrix(0.345712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345712,0.000000,0.000000,0.250000,0,0);}
.m48_c00311{transform:matrix(0.345917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345917,0.000000,0.000000,0.250000,0,0);}
.m30_c00311{transform:matrix(0.346408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346408,0.000000,0.000000,0.250000,0,0);}
.m7d_c00311{transform:matrix(0.346679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346679,0.000000,0.000000,0.250000,0,0);}
.m5_c00311{transform:matrix(0.346847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346847,0.000000,0.000000,0.250000,0,0);}
.m33_c00311{transform:matrix(0.348178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348178,0.000000,0.000000,0.250000,0,0);}
.m85_c00311{transform:matrix(0.348379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348379,0.000000,0.000000,0.250000,0,0);}
.mdb_c00311{transform:matrix(0.348519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348519,0.000000,0.000000,0.250000,0,0);}
.md0_c00311{transform:matrix(0.350771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350771,0.000000,0.000000,0.250000,0,0);}
.mbf_c00311{transform:matrix(0.351115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351115,0.000000,0.000000,0.250000,0,0);}
.m17_c00311{transform:matrix(0.352080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352080,0.000000,0.000000,0.250000,0,0);}
.mab_c00311{transform:matrix(0.352616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352616,0.000000,0.000000,0.250000,0,0);}
.me_c00311{transform:matrix(0.352751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352751,0.000000,0.000000,0.250000,0,0);}
.m2c_c00311{transform:matrix(0.353255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353255,0.000000,0.000000,0.250000,0,0);}
.m7f_c00311{transform:matrix(0.353271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353271,0.000000,0.000000,0.250000,0,0);}
.m76_c00311{transform:matrix(0.354182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354182,0.000000,0.000000,0.250000,0,0);}
.m52_c00311{transform:matrix(0.354951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354951,0.000000,0.000000,0.250000,0,0);}
.m23_c00311{transform:matrix(0.356673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356673,0.000000,0.000000,0.250000,0,0);}
.m83_c00311{transform:matrix(0.358352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358352,0.000000,0.000000,0.250000,0,0);}
.m4a_c00311{transform:matrix(0.358965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358965,0.000000,0.000000,0.250000,0,0);}
.m8e_c00311{transform:matrix(0.360171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360171,0.000000,0.000000,0.250000,0,0);}
.m1b_c00311{transform:matrix(0.361525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361525,0.000000,0.000000,0.250000,0,0);}
.m2d_c00311{transform:matrix(0.362490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362490,0.000000,0.000000,0.250000,0,0);}
.mcd_c00311{transform:matrix(0.363980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363980,0.000000,0.000000,0.250000,0,0);}
.m6c_c00311{transform:matrix(0.364725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364725,0.000000,0.000000,0.250000,0,0);}
.m62_c00311{transform:matrix(0.364974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364974,0.000000,0.000000,0.250000,0,0);}
.m93_c00311{transform:matrix(0.365090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365090,0.000000,0.000000,0.250000,0,0);}
.m96_c00311{transform:matrix(0.366177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366177,0.000000,0.000000,0.250000,0,0);}
.m4d_c00311{transform:matrix(0.367520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367520,0.000000,0.000000,0.250000,0,0);}
.m64_c00311{transform:matrix(0.368395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368395,0.000000,0.000000,0.250000,0,0);}
.m36_c00311{transform:matrix(0.369522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369522,0.000000,0.000000,0.250000,0,0);}
.m16_c00311{transform:matrix(0.372435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372435,0.000000,0.000000,0.250000,0,0);}
.m90_c00311{transform:matrix(0.372601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372601,0.000000,0.000000,0.250000,0,0);}
.m92_c00311{transform:matrix(0.373079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373079,0.000000,0.000000,0.250000,0,0);}
.m31_c00311{transform:matrix(0.373901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373901,0.000000,0.000000,0.250000,0,0);}
.m1c_c00311{transform:matrix(0.374666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374666,0.000000,0.000000,0.250000,0,0);}
.m4e_c00311{transform:matrix(0.378969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378969,0.000000,0.000000,0.250000,0,0);}
.m3d_c00311{transform:matrix(0.379160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379160,0.000000,0.000000,0.250000,0,0);}
.mb1_c00311{transform:matrix(0.383049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383049,0.000000,0.000000,0.250000,0,0);}
.m9f_c00311{transform:matrix(0.385852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385852,0.000000,0.000000,0.250000,0,0);}
.m2b_c00311{transform:matrix(0.387401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387401,0.000000,0.000000,0.250000,0,0);}
.m32_c00311{transform:matrix(0.392665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392665,0.000000,0.000000,0.250000,0,0);}
.m5c_c00311{transform:matrix(0.403415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403415,0.000000,0.000000,0.250000,0,0);}
.ma8_c00311{transform:matrix(0.403672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403672,0.000000,0.000000,0.250000,0,0);}
.m4f_c00311{transform:matrix(0.407382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407382,0.000000,0.000000,0.250000,0,0);}
.m8_c00311{transform:matrix(0.421383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421383,0.000000,0.000000,0.250000,0,0);}
.m66_c00311{transform:matrix(0.451663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451663,0.000000,0.000000,0.250000,0,0);}
.ma_c00311{transform:matrix(0.459011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459011,0.000000,0.000000,0.250000,0,0);}
.m28_c00311{transform:matrix(0.467208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467208,0.000000,0.000000,0.250000,0,0);}
.m26_c00311{transform:matrix(0.469068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469068,0.000000,0.000000,0.250000,0,0);}
.v0_c00311{vertical-align:0.000000px;}
.v1_c00311{vertical-align:1.425600px;}
.lsa_c00311{letter-spacing:-2.529450px;}
.ls10_c00311{letter-spacing:-2.356002px;}
.ls12_c00311{letter-spacing:-2.321550px;}
.ls6_c00311{letter-spacing:-2.312640px;}
.ls3_c00311{letter-spacing:-2.308685px;}
.ls16_c00311{letter-spacing:-2.245327px;}
.ls13_c00311{letter-spacing:-2.162167px;}
.ls17_c00311{letter-spacing:-2.153646px;}
.ls7_c00311{letter-spacing:-0.888921px;}
.lsb_c00311{letter-spacing:-0.679338px;}
.ls2_c00311{letter-spacing:0.000000px;}
.lsf_c00311{letter-spacing:0.028908px;}
.ls0_c00311{letter-spacing:0.260172px;}
.ls14_c00311{letter-spacing:1.821600px;}
.lsc_c00311{letter-spacing:2.493315px;}
.ls11_c00311{letter-spacing:2.717352px;}
.ls15_c00311{letter-spacing:3.207610px;}
.lsd_c00311{letter-spacing:3.216015px;}
.lse_c00311{letter-spacing:3.524400px;}
.ls5_c00311{letter-spacing:3.613500px;}
.ls9_c00311{letter-spacing:4.237200px;}
.ls1_c00311{letter-spacing:22.550220px;}
.ls4_c00311{letter-spacing:29.937798px;}
.ls18_c00311{letter-spacing:55.598598px;}
.ls8_c00311{letter-spacing:58.449798px;}
.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;}
}
.wsc_c00311{word-spacing:-18.327672px;}
.ws1_c00311{word-spacing:-18.067500px;}
.wsd_c00311{word-spacing:-15.913854px;}
.ws4_c00311{word-spacing:-3.758040px;}
.ws6_c00311{word-spacing:-2.529450px;}
.ws2_c00311{word-spacing:-1.589940px;}
.ws0_c00311{word-spacing:-0.503431px;}
.wse_c00311{word-spacing:0.000000px;}
.ws8_c00311{word-spacing:2.745270px;}
.ws3_c00311{word-spacing:3.035340px;}
.wsb_c00311{word-spacing:4.263930px;}
.ws9_c00311{word-spacing:5.926140px;}
.ws7_c00311{word-spacing:7.371540px;}
.wsa_c00311{word-spacing:8.743680px;}
.ws5_c00311{word-spacing:9.684180px;}
._12_c00311{margin-left:-11.563200px;}
._1_c00311{margin-left:-5.420250px;}
._1b_c00311{margin-left:-3.107610px;}
._0_c00311{margin-left:-1.930599px;}
._1a_c00311{width:2.241360px;}
._19_c00311{width:4.480740px;}
._17_c00311{width:6.070680px;}
._8_c00311{width:8.672400px;}
._4_c00311{width:10.406880px;}
._3_c00311{width:12.213630px;}
._f_c00311{width:13.732290px;}
._a_c00311{width:15.972660px;}
._d_c00311{width:20.308860px;}
._16_c00311{width:21.536460px;}
._7_c00311{width:22.548240px;}
._13_c00311{width:24.143130px;}
._15_c00311{width:25.434090px;}
._2_c00311{width:27.751680px;}
._14_c00311{width:29.197080px;}
._e_c00311{width:31.292910px;}
._9_c00311{width:33.736230px;}
._6_c00311{width:35.556840px;}
._10_c00311{width:36.857700px;}
._b_c00311{width:38.374380px;}
._c_c00311{width:39.821760px;}
._5_c00311{width:41.193900px;}
._18_c00311{width:43.070940px;}
._11_c00311{width:44.452980px;}
.fc0_c00311{color:transparent;}
.fs12_c00311{font-size:22.176000px;}
.fs2_c00311{font-size:25.146000px;}
.fs3_c00311{font-size:29.937798px;}
.fsd_c00311{font-size:36.432000px;}
.fs4_c00311{font-size:39.204000px;}
.fs11_c00311{font-size:55.598598px;}
.fs7_c00311{font-size:58.449798px;}
.fsc_c00311{font-size:61.776198px;}
.fs10_c00311{font-size:64.152198px;}
.fsf_c00311{font-size:64.548000px;}
.fs1_c00311{font-size:66.330000px;}
.fsb_c00311{font-size:70.488000px;}
.fs6_c00311{font-size:70.884000px;}
.fs5_c00311{font-size:72.270000px;}
.fse_c00311{font-size:76.032198px;}
.fs9_c00311{font-size:77.022198px;}
.fs0_c00311{font-size:83.952198px;}
.fs8_c00311{font-size:84.744000px;}
.fsa_c00311{font-size:90.288000px;}
.y0_c00311{bottom:0.000000px;}
.y24_c00311{bottom:51.941385px;}
.y1_c00311{bottom:76.500000px;}
.y23_c00311{bottom:136.764585px;}
.y22_c00311{bottom:168.489135px;}
.y21_c00311{bottom:204.485535px;}
.y20_c00311{bottom:236.556585px;}
.y1e_c00311{bottom:236.912985px;}
.y1f_c00311{bottom:242.976735px;}
.y1d_c00311{bottom:269.350335px;}
.y1c_c00311{bottom:302.139135px;}
.y1b_c00311{bottom:334.922985px;}
.y1a_c00311{bottom:399.431385px;}
.y19_c00311{bottom:432.581535px;}
.y17_c00311{bottom:465.002055px;}
.y18_c00311{bottom:465.008985px;}
.y16_c00311{bottom:497.089935px;}
.y15_c00311{bottom:529.160985px;}
.y14_c00311{bottom:529.162470px;}
.y13_c00311{bottom:561.593385px;}
.y12_c00311{bottom:594.030735px;}
.y11_c00311{bottom:626.814585px;}
.y10_c00311{bottom:659.603385px;}
.yf_c00311{bottom:673.864335px;}
.ye_c00311{bottom:709.504335px;}
.yd_c00311{bottom:723.755385px;}
.yc_c00311{bottom:756.187785px;}
.yb_c00311{bottom:788.268735px;}
.ya_c00311{bottom:820.701135px;}
.y9_c00311{bottom:854.915535px;}
.y8_c00311{bottom:887.347935px;}
.y7_c00311{bottom:921.562335px;}
.y6_c00311{bottom:967.537935px;}
.y5_c00311{bottom:978.581385px;}
.y4_c00311{bottom:988.921935px;}
.y3_c00311{bottom:1001.752335px;}
.y2_c00311{bottom:1074.452985px;}
.h5_c00311{height:19.938573px;}
.h11_c00311{height:23.128875px;}
.h4_c00311{height:26.226492px;}
.hd_c00311{height:35.756016px;}
.h10_c00311{height:37.028666px;}
.h6_c00311{height:38.476582px;}
.h8_c00311{height:38.927565px;}
.hc_c00311{height:64.430644px;}
.hf_c00311{height:66.908738px;}
.h3_c00311{height:69.180117px;}
.h7_c00311{height:70.929053px;}
.he_c00311{height:74.621444px;}
.ha_c00311{height:80.331746px;}
.h2_c00311{height:82.394491px;}
.h9_c00311{height:85.406063px;}
.hb_c00311{height:94.167563px;}
.h1_c00311{height:1110.000000px;}
.h0_c00311{height:1263.000000px;}
.w1_c00311{width:781.500000px;}
.w0_c00311{width:892.500000px;}
.x0_c00311{left:0.000000px;}
.x1_c00311{left:55.500000px;}
.x36_c00311{left:89.923635px;}
.x37_c00311{left:100.932435px;}
.x6_c00311{left:102.199635px;}
.x66_c00311{left:103.635135px;}
.x40_c00311{left:105.273585px;}
.x41_c00311{left:113.475735px;}
.x6d_c00311{left:115.411185px;}
.x1d_c00311{left:123.118335px;}
.x55_c00311{left:124.642935px;}
.x7_c00311{left:134.661735px;}
.x72_c00311{left:136.785285px;}
.x60_c00311{left:145.210185px;}
.x1e_c00311{left:146.378385px;}
.x48_c00311{left:156.124935px;}
.x8_c00311{left:157.466385px;}
.x61_c00311{left:161.069985px;}
.x30_c00311{left:168.118785px;}
.x6e_c00311{left:169.232535px;}
.x9_c00311{left:177.934635px;}
.x1f_c00311{left:179.018685px;}
.x31_c00311{left:189.903735px;}
.x2b_c00311{left:190.923435px;}
.x20_c00311{left:200.457135px;}
.x42_c00311{left:201.862935px;}
.x3d_c00311{left:212.005485px;}
.x51_c00311{left:213.010335px;}
.x2c_c00311{left:223.717185px;}
.x43_c00311{left:233.958735px;}
.x6a_c00311{left:235.201185px;}
.xa_c00311{left:246.526785px;}
.x74_c00311{left:249.234435px;}
.x62_c00311{left:250.521435px;}
.x38_c00311{left:255.273435px;}
.x21_c00311{left:256.867335px;}
.xb_c00311{left:267.722685px;}
.x44_c00311{left:269.549235px;}
.x4c_c00311{left:277.409835px;}
.x75_c00311{left:280.270935px;}
.xc_c00311{left:289.710585px;}
.x45_c00311{left:290.720385px;}
.x6c_c00311{left:295.818885px;}
.x5c_c00311{left:298.061235px;}
.x32_c00311{left:299.863035px;}
.xd_c00311{left:301.085685px;}
.x63_c00311{left:302.164785px;}
.x52_c00311{left:311.698485px;}
.x22_c00311{left:323.187435px;}
.x67_c00311{left:330.869835px;}
.xe_c00311{left:332.968635px;}
.x33_c00311{left:333.988335px;}
.x6b_c00311{left:335.636685px;}
.xf_c00311{left:345.605985px;}
.x56_c00311{left:347.828535px;}
.x23_c00311{left:357.010785px;}
.x73_c00311{left:358.119585px;}
.x10_c00311{left:367.390935px;}
.x11_c00311{left:378.365085px;}
.x5d_c00311{left:380.473785px;}
.x47_c00311{left:382.706235px;}
.x24_c00311{left:389.487735px;}
.x25_c00311{left:398.942235px;}
.x58_c00311{left:400.526235px;}
.x53_c00311{left:411.025185px;}
.x12_c00311{left:412.292385px;}
.x26_c00311{left:422.647785px;}
.x68_c00311{left:433.181385px;}
.x3e_c00311{left:434.369385px;}
.x34_c00311{left:444.175335px;}
.x39_c00311{left:445.694985px;}
.x49_c00311{left:455.416785px;}
.x13_c00311{left:456.456285px;}
.x27_c00311{left:467.138385px;}
.x14_c00311{left:477.973935px;}
.x6f_c00311{left:481.161735px;}
.x4d_c00311{left:489.591585px;}
.x15_c00311{left:499.407435px;}
.x5e_c00311{left:501.362685px;}
.x2d_c00311{left:511.331985px;}
.x59_c00311{left:521.187435px;}
.x35_c00311{left:522.424935px;}
.x57_c00311{left:525.182085px;}
.x16_c00311{left:532.755585px;}
.x4e_c00311{left:533.839635px;}
.x3f_c00311{left:544.150485px;}
.x76_c00311{left:545.204835px;}
.x17_c00311{left:556.277985px;}
.x2e_c00311{left:566.960085px;}
.x4a_c00311{left:577.978785px;}
.x4f_c00311{left:579.057885px;}
.x28_c00311{left:588.160935px;}
.x70_c00311{left:589.329135px;}
.x3a_c00311{left:598.828185px;}
.x69_c00311{left:600.407235px;}
.x2f_c00311{left:610.812135px;}
.x18_c00311{left:611.841735px;}
.x29_c00311{left:621.845685px;}
.x19_c00311{left:633.235635px;}
.x3b_c00311{left:643.972185px;}
.x5f_c00311{left:644.981985px;}
.x1a_c00311{left:655.292835px;}
.x1b_c00311{left:666.024435px;}
.x5a_c00311{left:667.049085px;}
.x71_c00311{left:668.474685px;}
.x54_c00311{left:677.087685px;}
.x2_c00311{left:678.468735px;}
.x2a_c00311{left:687.774735px;}
.x1c_c00311{left:688.863735px;}
.x3c_c00311{left:699.555735px;}
.x64_c00311{left:702.312885px;}
.x3_c00311{left:708.396435px;}
.x4_c00311{left:709.911135px;}
.x5_c00311{left:712.420785px;}
.x46_c00311{left:714.420585px;}
.x77_c00311{left:718.910235px;}
.x4b_c00311{left:721.226835px;}
.x65_c00311{left:722.687085px;}
.x50_c00311{left:733.319685px;}
.x5b_c00311{left:743.764185px;}
@media print{
.v0_c00311{vertical-align:0.000000pt;}
.v1_c00311{vertical-align:1.267200pt;}
.lsa_c00311{letter-spacing:-2.248400pt;}
.ls10_c00311{letter-spacing:-2.094224pt;}
.ls12_c00311{letter-spacing:-2.063600pt;}
.ls6_c00311{letter-spacing:-2.055680pt;}
.ls3_c00311{letter-spacing:-2.052165pt;}
.ls16_c00311{letter-spacing:-1.995846pt;}
.ls13_c00311{letter-spacing:-1.921926pt;}
.ls17_c00311{letter-spacing:-1.914352pt;}
.ls7_c00311{letter-spacing:-0.790152pt;}
.lsb_c00311{letter-spacing:-0.603856pt;}
.ls2_c00311{letter-spacing:0.000000pt;}
.lsf_c00311{letter-spacing:0.025696pt;}
.ls0_c00311{letter-spacing:0.231264pt;}
.ls14_c00311{letter-spacing:1.619200pt;}
.lsc_c00311{letter-spacing:2.216280pt;}
.ls11_c00311{letter-spacing:2.415424pt;}
.ls15_c00311{letter-spacing:2.851209pt;}
.lsd_c00311{letter-spacing:2.858680pt;}
.lse_c00311{letter-spacing:3.132800pt;}
.ls5_c00311{letter-spacing:3.212000pt;}
.ls9_c00311{letter-spacing:3.766400pt;}
.ls1_c00311{letter-spacing:20.044640pt;}
.ls4_c00311{letter-spacing:26.611376pt;}
.ls18_c00311{letter-spacing:49.420976pt;}
.ls8_c00311{letter-spacing:51.955376pt;}
.wsc_c00311{word-spacing:-16.291264pt;}
.ws1_c00311{word-spacing:-16.060000pt;}
.wsd_c00311{word-spacing:-14.145648pt;}
.ws4_c00311{word-spacing:-3.340480pt;}
.ws6_c00311{word-spacing:-2.248400pt;}
.ws2_c00311{word-spacing:-1.413280pt;}
.ws0_c00311{word-spacing:-0.447495pt;}
.wse_c00311{word-spacing:0.000000pt;}
.ws8_c00311{word-spacing:2.440240pt;}
.ws3_c00311{word-spacing:2.698080pt;}
.wsb_c00311{word-spacing:3.790160pt;}
.ws9_c00311{word-spacing:5.267680pt;}
.ws7_c00311{word-spacing:6.552480pt;}
.wsa_c00311{word-spacing:7.772160pt;}
.ws5_c00311{word-spacing:8.608160pt;}
._12_c00311{margin-left:-10.278400pt;}
._1_c00311{margin-left:-4.818000pt;}
._1b_c00311{margin-left:-2.762320pt;}
._0_c00311{margin-left:-1.716088pt;}
._1a_c00311{width:1.992320pt;}
._19_c00311{width:3.982880pt;}
._17_c00311{width:5.396160pt;}
._8_c00311{width:7.708800pt;}
._4_c00311{width:9.250560pt;}
._3_c00311{width:10.856560pt;}
._f_c00311{width:12.206480pt;}
._a_c00311{width:14.197920pt;}
._d_c00311{width:18.052320pt;}
._16_c00311{width:19.143520pt;}
._7_c00311{width:20.042880pt;}
._13_c00311{width:21.460560pt;}
._15_c00311{width:22.608080pt;}
._2_c00311{width:24.668160pt;}
._14_c00311{width:25.952960pt;}
._e_c00311{width:27.815920pt;}
._9_c00311{width:29.987760pt;}
._6_c00311{width:31.606080pt;}
._10_c00311{width:32.762400pt;}
._b_c00311{width:34.110560pt;}
._c_c00311{width:35.397120pt;}
._5_c00311{width:36.616800pt;}
._18_c00311{width:38.285280pt;}
._11_c00311{width:39.513760pt;}
.fs12_c00311{font-size:19.712000pt;}
.fs2_c00311{font-size:22.352000pt;}
.fs3_c00311{font-size:26.611376pt;}
.fsd_c00311{font-size:32.384000pt;}
.fs4_c00311{font-size:34.848000pt;}
.fs11_c00311{font-size:49.420976pt;}
.fs7_c00311{font-size:51.955376pt;}
.fsc_c00311{font-size:54.912176pt;}
.fs10_c00311{font-size:57.024176pt;}
.fsf_c00311{font-size:57.376000pt;}
.fs1_c00311{font-size:58.960000pt;}
.fsb_c00311{font-size:62.656000pt;}
.fs6_c00311{font-size:63.008000pt;}
.fs5_c00311{font-size:64.240000pt;}
.fse_c00311{font-size:67.584176pt;}
.fs9_c00311{font-size:68.464176pt;}
.fs0_c00311{font-size:74.624176pt;}
.fs8_c00311{font-size:75.328000pt;}
.fsa_c00311{font-size:80.256000pt;}
.y0_c00311{bottom:0.000000pt;}
.y24_c00311{bottom:46.170120pt;}
.y1_c00311{bottom:68.000000pt;}
.y23_c00311{bottom:121.568520pt;}
.y22_c00311{bottom:149.768120pt;}
.y21_c00311{bottom:181.764920pt;}
.y20_c00311{bottom:210.272520pt;}
.y1e_c00311{bottom:210.589320pt;}
.y1f_c00311{bottom:215.979320pt;}
.y1d_c00311{bottom:239.422520pt;}
.y1c_c00311{bottom:268.568120pt;}
.y1b_c00311{bottom:297.709320pt;}
.y1a_c00311{bottom:355.050120pt;}
.y19_c00311{bottom:384.516920pt;}
.y17_c00311{bottom:413.335160pt;}
.y18_c00311{bottom:413.341320pt;}
.y16_c00311{bottom:441.857720pt;}
.y15_c00311{bottom:470.365320pt;}
.y14_c00311{bottom:470.366640pt;}
.y13_c00311{bottom:499.194120pt;}
.y12_c00311{bottom:528.027320pt;}
.y11_c00311{bottom:557.168520pt;}
.y10_c00311{bottom:586.314120pt;}
.yf_c00311{bottom:598.990520pt;}
.ye_c00311{bottom:630.670520pt;}
.yd_c00311{bottom:643.338120pt;}
.yc_c00311{bottom:672.166920pt;}
.yb_c00311{bottom:700.683320pt;}
.ya_c00311{bottom:729.512120pt;}
.y9_c00311{bottom:759.924920pt;}
.y8_c00311{bottom:788.753720pt;}
.y7_c00311{bottom:819.166520pt;}
.y6_c00311{bottom:860.033720pt;}
.y5_c00311{bottom:869.850120pt;}
.y4_c00311{bottom:879.041720pt;}
.y3_c00311{bottom:890.446520pt;}
.y2_c00311{bottom:955.069320pt;}
.h5_c00311{height:17.723176pt;}
.h11_c00311{height:20.559000pt;}
.h4_c00311{height:23.312438pt;}
.hd_c00311{height:31.783125pt;}
.h10_c00311{height:32.914370pt;}
.h6_c00311{height:34.201406pt;}
.h8_c00311{height:34.602280pt;}
.hc_c00311{height:57.271684pt;}
.hf_c00311{height:59.474434pt;}
.h3_c00311{height:61.493438pt;}
.h7_c00311{height:63.048047pt;}
.he_c00311{height:66.330173pt;}
.ha_c00311{height:71.405996pt;}
.h2_c00311{height:73.239548pt;}
.h9_c00311{height:75.916500pt;}
.hb_c00311{height:83.704500pt;}
.h1_c00311{height:986.666667pt;}
.h0_c00311{height:1122.666667pt;}
.w1_c00311{width:694.666667pt;}
.w0_c00311{width:793.333333pt;}
.x0_c00311{left:0.000000pt;}
.x1_c00311{left:49.333333pt;}
.x36_c00311{left:79.932120pt;}
.x37_c00311{left:89.717720pt;}
.x6_c00311{left:90.844120pt;}
.x66_c00311{left:92.120120pt;}
.x40_c00311{left:93.576520pt;}
.x41_c00311{left:100.867320pt;}
.x6d_c00311{left:102.587720pt;}
.x1d_c00311{left:109.438520pt;}
.x55_c00311{left:110.793720pt;}
.x7_c00311{left:119.699320pt;}
.x72_c00311{left:121.586920pt;}
.x60_c00311{left:129.075720pt;}
.x1e_c00311{left:130.114120pt;}
.x48_c00311{left:138.777720pt;}
.x8_c00311{left:139.970120pt;}
.x61_c00311{left:143.173320pt;}
.x30_c00311{left:149.438920pt;}
.x6e_c00311{left:150.428920pt;}
.x9_c00311{left:158.164120pt;}
.x1f_c00311{left:159.127720pt;}
.x31_c00311{left:168.803320pt;}
.x2b_c00311{left:169.709720pt;}
.x20_c00311{left:178.184120pt;}
.x42_c00311{left:179.433720pt;}
.x3d_c00311{left:188.449320pt;}
.x51_c00311{left:189.342520pt;}
.x2c_c00311{left:198.859720pt;}
.x43_c00311{left:207.963320pt;}
.x6a_c00311{left:209.067720pt;}
.xa_c00311{left:219.134920pt;}
.x74_c00311{left:221.541720pt;}
.x62_c00311{left:222.685720pt;}
.x38_c00311{left:226.909720pt;}
.x21_c00311{left:228.326520pt;}
.xb_c00311{left:237.975720pt;}
.x44_c00311{left:239.599320pt;}
.x4c_c00311{left:246.586520pt;}
.x75_c00311{left:249.129720pt;}
.xc_c00311{left:257.520520pt;}
.x45_c00311{left:258.418120pt;}
.x6c_c00311{left:262.950120pt;}
.x5c_c00311{left:264.943320pt;}
.x32_c00311{left:266.544920pt;}
.xd_c00311{left:267.631720pt;}
.x63_c00311{left:268.590920pt;}
.x52_c00311{left:277.065320pt;}
.x22_c00311{left:287.277720pt;}
.x67_c00311{left:294.106520pt;}
.xe_c00311{left:295.972120pt;}
.x33_c00311{left:296.878520pt;}
.x6b_c00311{left:298.343720pt;}
.xf_c00311{left:307.205320pt;}
.x56_c00311{left:309.180920pt;}
.x23_c00311{left:317.342920pt;}
.x73_c00311{left:318.328520pt;}
.x10_c00311{left:326.569720pt;}
.x11_c00311{left:336.324520pt;}
.x5d_c00311{left:338.198920pt;}
.x47_c00311{left:340.183320pt;}
.x24_c00311{left:346.211320pt;}
.x25_c00311{left:354.615320pt;}
.x58_c00311{left:356.023320pt;}
.x53_c00311{left:365.355720pt;}
.x12_c00311{left:366.482120pt;}
.x26_c00311{left:375.686920pt;}
.x68_c00311{left:385.050120pt;}
.x3e_c00311{left:386.106120pt;}
.x34_c00311{left:394.822520pt;}
.x39_c00311{left:396.173320pt;}
.x49_c00311{left:404.814920pt;}
.x13_c00311{left:405.738920pt;}
.x27_c00311{left:415.234120pt;}
.x14_c00311{left:424.865720pt;}
.x6f_c00311{left:427.699320pt;}
.x4d_c00311{left:435.192520pt;}
.x15_c00311{left:443.917720pt;}
.x5e_c00311{left:445.655720pt;}
.x2d_c00311{left:454.517320pt;}
.x59_c00311{left:463.277720pt;}
.x35_c00311{left:464.377720pt;}
.x57_c00311{left:466.828520pt;}
.x16_c00311{left:473.560520pt;}
.x4e_c00311{left:474.524120pt;}
.x3f_c00311{left:483.689320pt;}
.x76_c00311{left:484.626520pt;}
.x17_c00311{left:494.469320pt;}
.x2e_c00311{left:503.964520pt;}
.x4a_c00311{left:513.758920pt;}
.x4f_c00311{left:514.718120pt;}
.x28_c00311{left:522.809720pt;}
.x70_c00311{left:523.848120pt;}
.x3a_c00311{left:532.291720pt;}
.x69_c00311{left:533.695320pt;}
.x2f_c00311{left:542.944120pt;}
.x18_c00311{left:543.859320pt;}
.x29_c00311{left:552.751720pt;}
.x19_c00311{left:562.876120pt;}
.x3b_c00311{left:572.419720pt;}
.x5f_c00311{left:573.317320pt;}
.x1a_c00311{left:582.482520pt;}
.x1b_c00311{left:592.021720pt;}
.x5a_c00311{left:592.932520pt;}
.x71_c00311{left:594.199720pt;}
.x54_c00311{left:601.855720pt;}
.x2_c00311{left:603.083320pt;}
.x2a_c00311{left:611.355320pt;}
.x1c_c00311{left:612.323320pt;}
.x3c_c00311{left:621.827320pt;}
.x64_c00311{left:624.278120pt;}
.x3_c00311{left:629.685720pt;}
.x4_c00311{left:631.032120pt;}
.x5_c00311{left:633.262920pt;}
.x46_c00311{left:635.040520pt;}
.x77_c00311{left:639.031320pt;}
.x4b_c00311{left:641.090520pt;}
.x65_c00311{left:642.388520pt;}
.x50_c00311{left:651.839720pt;}
.x5b_c00311{left:661.123720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e3c0144f87b8ea3d31453789.woff2')format("woff");}.ff1_c00312{font-family:ff1_c00312;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00312;src:url('chunks/assets/font_e4fccc9664abbfa0d0859a02.woff2')format("woff");}.ff2_c00312{font-family:ff2_c00312;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00312;src:url('chunks/assets/font_4d9f900d9d67d38662173aac.woff2')format("woff");}.ff3_c00312{font-family:ff3_c00312;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00312;src:url('chunks/assets/font_bc1550243d856802addaa074.woff2')format("woff");}.ff4_c00312{font-family:ff4_c00312;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mc_c00312{transform:matrix(0.091241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091241,0.000000,0.000000,0.250000,0,0);}
.m69_c00312{transform:matrix(0.114286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114286,0.000000,0.000000,0.250000,0,0);}
.md1_c00312{transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);}
.m76_c00312{transform:matrix(0.147222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147222,0.000000,0.000000,0.250000,0,0);}
.ma7_c00312{transform:matrix(0.155088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155088,0.000000,0.000000,0.250000,0,0);}
.m75_c00312{transform:matrix(0.157461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157461,0.000000,0.000000,0.250000,0,0);}
.m6a_c00312{transform:matrix(0.160715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160715,0.000000,0.000000,0.250000,0,0);}
.mc1_c00312{transform:matrix(0.163271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163271,0.000000,0.000000,0.250000,0,0);}
.m6_c00312{transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);}
.m6e_c00312{transform:matrix(0.170281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170281,0.000000,0.000000,0.250000,0,0);}
.m4a_c00312{transform:matrix(0.171880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171880,0.000000,0.000000,0.250000,0,0);}
.m59_c00312{transform:matrix(0.173610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173610,0.000000,0.000000,0.250000,0,0);}
.m5c_c00312{transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);}
.m12_c00312{transform:matrix(0.183203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183203,0.000000,0.000000,0.250000,0,0);}
.m73_c00312{transform:matrix(0.183695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183695,0.000000,0.000000,0.250000,0,0);}
.m30_c00312{transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);}
.m58_c00312{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m51_c00312{transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);}
.mc0_c00312{transform:matrix(0.195124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195124,0.000000,0.000000,0.250000,0,0);}
.m5_c00312{transform:matrix(0.197618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197618,0.000000,0.000000,0.250000,0,0);}
.m3b_c00312{transform:matrix(0.197799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197799,0.000000,0.000000,0.250000,0,0);}
.m8_c00312{transform:matrix(0.202876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202876,0.000000,0.000000,0.250000,0,0);}
.m7_c00312{transform:matrix(0.203572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203572,0.000000,0.000000,0.250000,0,0);}
.mbb_c00312{transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);}
.m5d_c00312{transform:matrix(0.211806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211806,0.000000,0.000000,0.250000,0,0);}
.m52_c00312{transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);}
.m5a_c00312{transform:matrix(0.215277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215277,0.000000,0.000000,0.250000,0,0);}
.m31_c00312{transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);}
.m74_c00312{transform:matrix(0.219745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219745,0.000000,0.000000,0.250000,0,0);}
.m22_c00312{transform:matrix(0.220621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220621,0.000000,0.000000,0.250000,0,0);}
.mc2_c00312{transform:matrix(0.222147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222147,0.000000,0.000000,0.250000,0,0);}
.m72_c00312{transform:matrix(0.231051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231051,0.000000,0.000000,0.250000,0,0);}
.m7e_c00312{transform:matrix(0.233359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233359,0.000000,0.000000,0.250000,0,0);}
.m9e_c00312{transform:matrix(0.239774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239774,0.000000,0.000000,0.250000,0,0);}
.ma2_c00312{transform:matrix(0.240245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240245,0.000000,0.000000,0.250000,0,0);}
.m71_c00312{transform:matrix(0.244585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244585,0.000000,0.000000,0.250000,0,0);}
.ma0_c00312{transform:matrix(0.245906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245906,0.000000,0.000000,0.250000,0,0);}
.m4f_c00312{transform:matrix(0.248826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248826,0.000000,0.000000,0.250000,0,0);}
.m9b_c00312{transform:matrix(0.249429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249429,0.000000,0.000000,0.250000,0,0);}
.mc8_c00312{transform:matrix(0.249751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249751,0.000000,0.000000,0.250000,0,0);}
.mbe_c00312{transform:matrix(0.249781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249781,0.000000,0.000000,0.250000,0,0);}
.m1_c00312{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m70_c00312{transform:matrix(0.250527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250527,0.000000,0.000000,0.250000,0,0);}
.mcd_c00312{transform:matrix(0.250788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250788,0.000000,0.000000,0.250000,0,0);}
.m8b_c00312{transform:matrix(0.252452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252452,0.000000,0.000000,0.250000,0,0);}
.m15_c00312{transform:matrix(0.252851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252851,0.000000,0.000000,0.250000,0,0);}
.m62_c00312{transform:matrix(0.252927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252927,0.000000,0.000000,0.250000,0,0);}
.m2e_c00312{transform:matrix(0.253155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253155,0.000000,0.000000,0.250000,0,0);}
.m18_c00312{transform:matrix(0.255266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255266,0.000000,0.000000,0.250000,0,0);}
.mb7_c00312{transform:matrix(0.255346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255346,0.000000,0.000000,0.250000,0,0);}
.m64_c00312{transform:matrix(0.257779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257779,0.000000,0.000000,0.250000,0,0);}
.m8f_c00312{transform:matrix(0.258348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258348,0.000000,0.000000,0.250000,0,0);}
.mce_c00312{transform:matrix(0.258348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258348,0.000000,0.000000,0.250000,0,0);}
.mc5_c00312{transform:matrix(0.258499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258499,0.000000,0.000000,0.250000,0,0);}
.m3a_c00312{transform:matrix(0.259551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259551,0.000000,0.000000,0.250000,0,0);}
.m61_c00312{transform:matrix(0.260163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260163,0.000000,0.000000,0.250000,0,0);}
.mb0_c00312{transform:matrix(0.263206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263206,0.000000,0.000000,0.250000,0,0);}
.m20_c00312{transform:matrix(0.264613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264613,0.000000,0.000000,0.250000,0,0);}
.m37_c00312{transform:matrix(0.266768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266768,0.000000,0.000000,0.250000,0,0);}
.m1a_c00312{transform:matrix(0.267326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267326,0.000000,0.000000,0.250000,0,0);}
.m8e_c00312{transform:matrix(0.267359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267359,0.000000,0.000000,0.250000,0,0);}
.m60_c00312{transform:matrix(0.267562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267562,0.000000,0.000000,0.250000,0,0);}
.mb5_c00312{transform:matrix(0.268010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268010,0.000000,0.000000,0.250000,0,0);}
.mb9_c00312{transform:matrix(0.268502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268502,0.000000,0.000000,0.250000,0,0);}
.m55_c00312{transform:matrix(0.269115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269115,0.000000,0.000000,0.250000,0,0);}
.m4d_c00312{transform:matrix(0.269715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269715,0.000000,0.000000,0.250000,0,0);}
.m2f_c00312{transform:matrix(0.269799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269799,0.000000,0.000000,0.250000,0,0);}
.md_c00312{transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);}
.maa_c00312{transform:matrix(0.271818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271818,0.000000,0.000000,0.250000,0,0);}
.m3f_c00312{transform:matrix(0.273163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273163,0.000000,0.000000,0.250000,0,0);}
.m23_c00312{transform:matrix(0.273756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273756,0.000000,0.000000,0.250000,0,0);}
.m33_c00312{transform:matrix(0.273956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273956,0.000000,0.000000,0.250000,0,0);}
.m36_c00312{transform:matrix(0.274030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274030,0.000000,0.000000,0.250000,0,0);}
.m44_c00312{transform:matrix(0.274532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274532,0.000000,0.000000,0.250000,0,0);}
.mbf_c00312{transform:matrix(0.274554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274554,0.000000,0.000000,0.250000,0,0);}
.mcc_c00312{transform:matrix(0.274831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274831,0.000000,0.000000,0.250000,0,0);}
.m40_c00312{transform:matrix(0.275016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275016,0.000000,0.000000,0.250000,0,0);}
.m7f_c00312{transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);}
.mab_c00312{transform:matrix(0.276297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276297,0.000000,0.000000,0.250000,0,0);}
.ma8_c00312{transform:matrix(0.277885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277885,0.000000,0.000000,0.250000,0,0);}
.m19_c00312{transform:matrix(0.278680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278680,0.000000,0.000000,0.250000,0,0);}
.m3e_c00312{transform:matrix(0.278810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278810,0.000000,0.000000,0.250000,0,0);}
.m49_c00312{transform:matrix(0.281059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281059,0.000000,0.000000,0.250000,0,0);}
.m2a_c00312{transform:matrix(0.281238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281238,0.000000,0.000000,0.250000,0,0);}
.m2d_c00312{transform:matrix(0.281410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281410,0.000000,0.000000,0.250000,0,0);}
.mca_c00312{transform:matrix(0.281471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281471,0.000000,0.000000,0.250000,0,0);}
.mba_c00312{transform:matrix(0.281978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281978,0.000000,0.000000,0.250000,0,0);}
.m10_c00312{transform:matrix(0.282691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282691,0.000000,0.000000,0.250000,0,0);}
.ma4_c00312{transform:matrix(0.284527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284527,0.000000,0.000000,0.250000,0,0);}
.m4b_c00312{transform:matrix(0.285674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285674,0.000000,0.000000,0.250000,0,0);}
.m7a_c00312{transform:matrix(0.285823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285823,0.000000,0.000000,0.250000,0,0);}
.m4e_c00312{transform:matrix(0.285877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285877,0.000000,0.000000,0.250000,0,0);}
.m34_c00312{transform:matrix(0.286027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286027,0.000000,0.000000,0.250000,0,0);}
.m29_c00312{transform:matrix(0.287277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287277,0.000000,0.000000,0.250000,0,0);}
.m0_c00312{transform:matrix(0.290159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290159,0.000000,0.000000,0.250000,0,0);}
.m7b_c00312{transform:matrix(0.290376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290376,0.000000,0.000000,0.250000,0,0);}
.m95_c00312{transform:matrix(0.290588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290588,0.000000,0.000000,0.250000,0,0);}
.m90_c00312{transform:matrix(0.290632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290632,0.000000,0.000000,0.250000,0,0);}
.m47_c00312{transform:matrix(0.290869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290869,0.000000,0.000000,0.250000,0,0);}
.m54_c00312{transform:matrix(0.290913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290913,0.000000,0.000000,0.250000,0,0);}
.ma9_c00312{transform:matrix(0.292850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292850,0.000000,0.000000,0.250000,0,0);}
.m67_c00312{transform:matrix(0.293129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293129,0.000000,0.000000,0.250000,0,0);}
.m9d_c00312{transform:matrix(0.293228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293228,0.000000,0.000000,0.250000,0,0);}
.m78_c00312{transform:matrix(0.293797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293797,0.000000,0.000000,0.250000,0,0);}
.m45_c00312{transform:matrix(0.293927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293927,0.000000,0.000000,0.250000,0,0);}
.m1d_c00312{transform:matrix(0.294394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294394,0.000000,0.000000,0.250000,0,0);}
.m46_c00312{transform:matrix(0.294422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294422,0.000000,0.000000,0.250000,0,0);}
.m99_c00312{transform:matrix(0.294581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294581,0.000000,0.000000,0.250000,0,0);}
.m4c_c00312{transform:matrix(0.294637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294637,0.000000,0.000000,0.250000,0,0);}
.m6c_c00312{transform:matrix(0.295238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295238,0.000000,0.000000,0.250000,0,0);}
.m38_c00312{transform:matrix(0.296014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296014,0.000000,0.000000,0.250000,0,0);}
.m91_c00312{transform:matrix(0.296641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296641,0.000000,0.000000,0.250000,0,0);}
.ma6_c00312{transform:matrix(0.297573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297573,0.000000,0.000000,0.250000,0,0);}
.me_c00312{transform:matrix(0.297691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297691,0.000000,0.000000,0.250000,0,0);}
.mb3_c00312{transform:matrix(0.298134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298134,0.000000,0.000000,0.250000,0,0);}
.m68_c00312{transform:matrix(0.298877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298877,0.000000,0.000000,0.250000,0,0);}
.m9c_c00312{transform:matrix(0.299900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299900,0.000000,0.000000,0.250000,0,0);}
.m6b_c00312{transform:matrix(0.299931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299931,0.000000,0.000000,0.250000,0,0);}
.m80_c00312{transform:matrix(0.300364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300364,0.000000,0.000000,0.250000,0,0);}
.mb1_c00312{transform:matrix(0.300918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300918,0.000000,0.000000,0.250000,0,0);}
.maf_c00312{transform:matrix(0.301316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301316,0.000000,0.000000,0.250000,0,0);}
.m25_c00312{transform:matrix(0.303845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303845,0.000000,0.000000,0.250000,0,0);}
.mf_c00312{transform:matrix(0.304062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304062,0.000000,0.000000,0.250000,0,0);}
.m92_c00312{transform:matrix(0.304104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304104,0.000000,0.000000,0.250000,0,0);}
.mae_c00312{transform:matrix(0.304292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304292,0.000000,0.000000,0.250000,0,0);}
.mac_c00312{transform:matrix(0.304652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304652,0.000000,0.000000,0.250000,0,0);}
.m98_c00312{transform:matrix(0.305944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305944,0.000000,0.000000,0.250000,0,0);}
.mc3_c00312{transform:matrix(0.306391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306391,0.000000,0.000000,0.250000,0,0);}
.m13_c00312{transform:matrix(0.306778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306778,0.000000,0.000000,0.250000,0,0);}
.m3_c00312{transform:matrix(0.306831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306831,0.000000,0.000000,0.250000,0,0);}
.ma3_c00312{transform:matrix(0.307732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307732,0.000000,0.000000,0.250000,0,0);}
.m53_c00312{transform:matrix(0.308536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308536,0.000000,0.000000,0.250000,0,0);}
.m79_c00312{transform:matrix(0.308559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308559,0.000000,0.000000,0.250000,0,0);}
.m2_c00312{transform:matrix(0.308570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308570,0.000000,0.000000,0.250000,0,0);}
.m8d_c00312{transform:matrix(0.309499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309499,0.000000,0.000000,0.250000,0,0);}
.m1b_c00312{transform:matrix(0.309745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309745,0.000000,0.000000,0.250000,0,0);}
.mad_c00312{transform:matrix(0.309891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309891,0.000000,0.000000,0.250000,0,0);}
.mcf_c00312{transform:matrix(0.310191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310191,0.000000,0.000000,0.250000,0,0);}
.m9a_c00312{transform:matrix(0.311744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311744,0.000000,0.000000,0.250000,0,0);}
.mb_c00312{transform:matrix(0.311825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311825,0.000000,0.000000,0.250000,0,0);}
.m42_c00312{transform:matrix(0.311861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311861,0.000000,0.000000,0.250000,0,0);}
.m83_c00312{transform:matrix(0.312522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312522,0.000000,0.000000,0.250000,0,0);}
.m1c_c00312{transform:matrix(0.312695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312695,0.000000,0.000000,0.250000,0,0);}
.mc7_c00312{transform:matrix(0.312808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312808,0.000000,0.000000,0.250000,0,0);}
.mb8_c00312{transform:matrix(0.313797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313797,0.000000,0.000000,0.250000,0,0);}
.mbc_c00312{transform:matrix(0.314935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314935,0.000000,0.000000,0.250000,0,0);}
.m35_c00312{transform:matrix(0.315180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315180,0.000000,0.000000,0.250000,0,0);}
.m14_c00312{transform:matrix(0.315483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315483,0.000000,0.000000,0.250000,0,0);}
.m48_c00312{transform:matrix(0.316330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316330,0.000000,0.000000,0.250000,0,0);}
.m2b_c00312{transform:matrix(0.317491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317491,0.000000,0.000000,0.250000,0,0);}
.ma5_c00312{transform:matrix(0.317599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317599,0.000000,0.000000,0.250000,0,0);}
.mc6_c00312{transform:matrix(0.317953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317953,0.000000,0.000000,0.250000,0,0);}
.mbd_c00312{transform:matrix(0.317974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317974,0.000000,0.000000,0.250000,0,0);}
.ma1_c00312{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);}
.m9f_c00312{transform:matrix(0.318924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318924,0.000000,0.000000,0.250000,0,0);}
.m50_c00312{transform:matrix(0.320403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320403,0.000000,0.000000,0.250000,0,0);}
.m1e_c00312{transform:matrix(0.320614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320614,0.000000,0.000000,0.250000,0,0);}
.m3d_c00312{transform:matrix(0.320776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320776,0.000000,0.000000,0.250000,0,0);}
.m89_c00312{transform:matrix(0.321034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321034,0.000000,0.000000,0.250000,0,0);}
.m93_c00312{transform:matrix(0.323208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323208,0.000000,0.000000,0.250000,0,0);}
.m1f_c00312{transform:matrix(0.323863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323863,0.000000,0.000000,0.250000,0,0);}
.m17_c00312{transform:matrix(0.323963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323963,0.000000,0.000000,0.250000,0,0);}
.m97_c00312{transform:matrix(0.323992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323992,0.000000,0.000000,0.250000,0,0);}
.md0_c00312{transform:matrix(0.324251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324251,0.000000,0.000000,0.250000,0,0);}
.m7c_c00312{transform:matrix(0.324558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324558,0.000000,0.000000,0.250000,0,0);}
.ma_c00312{transform:matrix(0.324653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324653,0.000000,0.000000,0.250000,0,0);}
.m81_c00312{transform:matrix(0.325521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325521,0.000000,0.000000,0.250000,0,0);}
.m86_c00312{transform:matrix(0.325582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325582,0.000000,0.000000,0.250000,0,0);}
.m57_c00312{transform:matrix(0.325743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325743,0.000000,0.000000,0.250000,0,0);}
.mb4_c00312{transform:matrix(0.328682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328682,0.000000,0.000000,0.250000,0,0);}
.m11_c00312{transform:matrix(0.330682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330682,0.000000,0.000000,0.250000,0,0);}
.m2c_c00312{transform:matrix(0.330946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330946,0.000000,0.000000,0.250000,0,0);}
.m65_c00312{transform:matrix(0.330950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330950,0.000000,0.000000,0.250000,0,0);}
.m21_c00312{transform:matrix(0.331274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331274,0.000000,0.000000,0.250000,0,0);}
.m26_c00312{transform:matrix(0.333314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333314,0.000000,0.000000,0.250000,0,0);}
.m8c_c00312{transform:matrix(0.334943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334943,0.000000,0.000000,0.250000,0,0);}
.m5b_c00312{transform:matrix(0.337388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337388,0.000000,0.000000,0.250000,0,0);}
.m41_c00312{transform:matrix(0.337524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337524,0.000000,0.000000,0.250000,0,0);}
.mcb_c00312{transform:matrix(0.337690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337690,0.000000,0.000000,0.250000,0,0);}
.mb6_c00312{transform:matrix(0.338345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338345,0.000000,0.000000,0.250000,0,0);}
.m63_c00312{transform:matrix(0.342215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342215,0.000000,0.000000,0.250000,0,0);}
.m7d_c00312{transform:matrix(0.343344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343344,0.000000,0.000000,0.250000,0,0);}
.m66_c00312{transform:matrix(0.343636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343636,0.000000,0.000000,0.250000,0,0);}
.m8a_c00312{transform:matrix(0.345227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345227,0.000000,0.000000,0.250000,0,0);}
.m85_c00312{transform:matrix(0.347368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347368,0.000000,0.000000,0.250000,0,0);}
.m5f_c00312{transform:matrix(0.348233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348233,0.000000,0.000000,0.250000,0,0);}
.m9_c00312{transform:matrix(0.350439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350439,0.000000,0.000000,0.250000,0,0);}
.m6f_c00312{transform:matrix(0.352618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352618,0.000000,0.000000,0.250000,0,0);}
.m43_c00312{transform:matrix(0.352924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352924,0.000000,0.000000,0.250000,0,0);}
.m96_c00312{transform:matrix(0.357856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357856,0.000000,0.000000,0.250000,0,0);}
.m56_c00312{transform:matrix(0.360217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360217,0.000000,0.000000,0.250000,0,0);}
.m87_c00312{transform:matrix(0.360271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360271,0.000000,0.000000,0.250000,0,0);}
.m84_c00312{transform:matrix(0.372638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372638,0.000000,0.000000,0.250000,0,0);}
.m16_c00312{transform:matrix(0.372659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372659,0.000000,0.000000,0.250000,0,0);}
.m32_c00312{transform:matrix(0.373235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373235,0.000000,0.000000,0.250000,0,0);}
.m28_c00312{transform:matrix(0.376592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376592,0.000000,0.000000,0.250000,0,0);}
.m4_c00312{transform:matrix(0.376805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376805,0.000000,0.000000,0.250000,0,0);}
.m39_c00312{transform:matrix(0.387169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387169,0.000000,0.000000,0.250000,0,0);}
.m94_c00312{transform:matrix(0.390803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390803,0.000000,0.000000,0.250000,0,0);}
.mc9_c00312{transform:matrix(0.397908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397908,0.000000,0.000000,0.250000,0,0);}
.mc4_c00312{transform:matrix(0.398087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398087,0.000000,0.000000,0.250000,0,0);}
.m27_c00312{transform:matrix(0.400532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400532,0.000000,0.000000,0.250000,0,0);}
.mb2_c00312{transform:matrix(0.405014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405014,0.000000,0.000000,0.250000,0,0);}
.m6d_c00312{transform:matrix(0.412120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412120,0.000000,0.000000,0.250000,0,0);}
.m5e_c00312{transform:matrix(0.428507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428507,0.000000,0.000000,0.250000,0,0);}
.m24_c00312{transform:matrix(0.429934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429934,0.000000,0.000000,0.250000,0,0);}
.m88_c00312{transform:matrix(0.437896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437896,0.000000,0.000000,0.250000,0,0);}
.m3c_c00312{transform:matrix(0.440645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440645,0.000000,0.000000,0.250000,0,0);}
.m77_c00312{transform:matrix(0.445858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445858,0.000000,0.000000,0.250000,0,0);}
.m82_c00312{transform:matrix(0.571422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571422,0.000000,0.000000,0.250000,0,0);}
.v2_c00312{vertical-align:-22.789800px;}
.v1_c00312{vertical-align:-1.405800px;}
.v0_c00312{vertical-align:0.000000px;}
.ls8_c00312{letter-spacing:-2.661127px;}
.ls16_c00312{letter-spacing:-2.418577px;}
.lsf_c00312{letter-spacing:-2.356200px;}
.ls9_c00312{letter-spacing:-2.328480px;}
.ls17_c00312{letter-spacing:-2.023567px;}
.ls19_c00312{letter-spacing:-1.779153px;}
.ls14_c00312{letter-spacing:-1.621620px;}
.ls11_c00312{letter-spacing:-1.573866px;}
.lsc_c00312{letter-spacing:-1.143450px;}
.ls7_c00312{letter-spacing:-1.064451px;}
.ls4_c00312{letter-spacing:0.000000px;}
.ls1a_c00312{letter-spacing:0.030413px;}
.ls0_c00312{letter-spacing:0.357351px;}
.ls18_c00312{letter-spacing:0.771012px;}
.ls15_c00312{letter-spacing:2.237400px;}
.ls13_c00312{letter-spacing:2.316600px;}
.ls12_c00312{letter-spacing:2.336400px;}
.ls1_c00312{letter-spacing:2.387411px;}
.lsb_c00312{letter-spacing:2.673000px;}
.ls2_c00312{letter-spacing:2.721953px;}
.ls10_c00312{letter-spacing:3.366000px;}
.lse_c00312{letter-spacing:3.445200px;}
.ls3_c00312{letter-spacing:3.762000px;}
.ls5_c00312{letter-spacing:3.801610px;}
.lsd_c00312{letter-spacing:9.979398px;}
.ls1b_c00312{letter-spacing:31.363200px;}
.ls6_c00312{letter-spacing:49.896198px;}
.lsa_c00312{letter-spacing:51.321798px;}
.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;}
}
.ws2_c00312{word-spacing:-19.365401px;}
.ws1_c00312{word-spacing:-19.008050px;}
.ws0_c00312{word-spacing:-17.943599px;}
.ws7_c00312{word-spacing:-17.434183px;}
.ws9_c00312{word-spacing:-17.228896px;}
.ws6_c00312{word-spacing:-1.292671px;}
.wsa_c00312{word-spacing:0.000000px;}
.ws8_c00312{word-spacing:3.436884px;}
.ws4_c00312{word-spacing:5.322135px;}
.ws3_c00312{word-spacing:6.690909px;}
.ws5_c00312{word-spacing:7.755159px;}
._12_c00312{margin-left:-17.767507px;}
._16_c00312{margin-left:-6.918868px;}
._17_c00312{margin-left:-4.029619px;}
._2_c00312{margin-left:-1.900723px;}
._1a_c00312{width:1.672781px;}
._18_c00312{width:4.181463px;}
._c_c00312{width:5.854761px;}
._b_c00312{width:7.603278px;}
._4_c00312{width:9.009608px;}
._9_c00312{width:10.339461px;}
._11_c00312{width:11.784861px;}
._1b_c00312{width:13.609651px;}
._13_c00312{width:15.358761px;}
._6_c00312{width:17.183342px;}
._d_c00312{width:20.452949px;}
._5_c00312{width:22.429572px;}
._0_c00312{width:24.330383px;}
._1d_c00312{width:26.079235px;}
._14_c00312{width:27.760255px;}
._3_c00312{width:29.652530px;}
._a_c00312{width:31.401298px;}
._e_c00312{width:32.769655px;}
._1c_c00312{width:34.518379px;}
._1_c00312{width:35.583069px;}
._8_c00312{width:37.103875px;}
._7_c00312{width:39.497139px;}
._f_c00312{width:41.133213px;}
._15_c00312{width:42.154756px;}
._10_c00312{width:45.315165px;}
._1e_c00312{width:46.983816px;}
._19_c00312{width:48.510000px;}
._20_c00312{width:179.522640px;}
._1f_c00312{width:183.189600px;}
.fc0_c00312{color:transparent;}
.fsb_c00312{font-size:9.979398px;}
.fs1_c00312{font-size:27.720000px;}
.fs1a_c00312{font-size:31.363200px;}
.fsa_c00312{font-size:32.670000px;}
.fs1c_c00312{font-size:33.264000px;}
.fsf_c00312{font-size:34.650000px;}
.fs19_c00312{font-size:37.818000px;}
.fs18_c00312{font-size:38.808000px;}
.fsd_c00312{font-size:39.204000px;}
.fs5_c00312{font-size:39.600000px;}
.fs16_c00312{font-size:43.560000px;}
.fs1b_c00312{font-size:44.352000px;}
.fs14_c00312{font-size:44.748000px;}
.fs12_c00312{font-size:46.332000px;}
.fs10_c00312{font-size:46.728000px;}
.fs3_c00312{font-size:49.896198px;}
.fs8_c00312{font-size:51.321798px;}
.fs9_c00312{font-size:53.460000px;}
.fs17_c00312{font-size:57.816198px;}
.fs7_c00312{font-size:64.548000px;}
.fs13_c00312{font-size:64.944000px;}
.fs6_c00312{font-size:66.528000px;}
.fse_c00312{font-size:67.320000px;}
.fsc_c00312{font-size:68.904000px;}
.fs15_c00312{font-size:69.102198px;}
.fs4_c00312{font-size:70.884000px;}
.fs11_c00312{font-size:72.864000px;}
.fs0_c00312{font-size:75.240000px;}
.fs2_c00312{font-size:76.032198px;}
.y0_c00312{bottom:0.000000px;}
.y26_c00312{bottom:15.232185px;}
.y2a_c00312{bottom:57.287385px;}
.y29_c00312{bottom:69.048585px;}
.y1_c00312{bottom:76.500000px;}
.y28_c00312{bottom:79.389135px;}
.y27_c00312{bottom:96.139935px;}
.y23_c00312{bottom:108.257535px;}
.y25_c00312{bottom:139.615785px;}
.y21_c00312{bottom:169.914735px;}
.y24_c00312{bottom:169.919636px;}
.y22_c00312{bottom:170.983935px;}
.y20_c00312{bottom:206.267535px;}
.y1f_c00312{bottom:239.769135px;}
.y1e_c00312{bottom:240.120585px;}
.y1d_c00312{bottom:253.663785px;}
.y1c_c00312{bottom:272.557935px;}
.y1b_c00312{bottom:305.698185px;}
.y1a_c00312{bottom:305.698284px;}
.y19_c00312{bottom:338.848335px;}
.y17_c00312{bottom:403.708185px;}
.y18_c00312{bottom:407.989935px;}
.y16_c00312{bottom:436.496985px;}
.y15_c00312{bottom:465.365385px;}
.y13_c00312{bottom:468.577935px;}
.y14_c00312{bottom:468.929385px;}
.y12_c00312{bottom:501.366735px;}
.y11_c00312{bottom:501.376140px;}
.y10_c00312{bottom:533.442735px;}
.yf_c00312{bottom:597.233385px;}
.ye_c00312{bottom:630.739935px;}
.yd_c00312{bottom:630.744390px;}
.yc_c00312{bottom:664.597935px;}
.yb_c00312{bottom:698.094585px;}
.ya_c00312{bottom:730.883385px;}
.y9_c00312{bottom:764.033535px;}
.y8_c00312{bottom:779.353785px;}
.y7_c00312{bottom:796.465935px;}
.y6_c00312{bottom:828.536985px;}
.y5_c00312{bottom:860.969385px;}
.y4_c00312{bottom:925.482735px;}
.y3_c00312{bottom:956.845935px;}
.y2_c00312{bottom:1080.155385px;}
.hd_c00312{height:6.646279px;}
.h1c_c00312{height:20.887891px;}
.h3_c00312{height:28.911094px;}
.hc_c00312{height:32.063818px;}
.h5_c00312{height:33.230868px;}
.ha_c00312{height:34.180317px;}
.h11_c00312{height:36.138867px;}
.h1b_c00312{height:37.116299px;}
.hf_c00312{height:38.476582px;}
.h1a_c00312{height:40.475531px;}
.h7_c00312{height:41.301563px;}
.h19_c00312{height:42.751758px;}
.h16_c00312{height:43.917715px;}
.h1d_c00312{height:46.257750px;}
.h14_c00312{height:48.322828px;}
.h12_c00312{height:48.735844px;}
.hb_c00312{height:52.468066px;}
.h18_c00312{height:56.743437px;}
.h8_c00312{height:65.293594px;}
.h10_c00312{height:66.038027px;}
.h9_c00312{height:67.321547px;}
.he_c00312{height:67.625508px;}
.h17_c00312{height:67.820028px;}
.h6_c00312{height:69.568770px;}
.h15_c00312{height:71.512031px;}
.h13_c00312{height:73.215644px;}
.h2_c00312{height:73.843945px;}
.h4_c00312{height:74.621444px;}
.h1_c00312{height:1110.000000px;}
.h0_c00312{height:1263.000000px;}
.w1_c00312{width:781.500000px;}
.w0_c00312{width:892.500000px;}
.x0_c00312{left:0.000000px;}
.x1_c00312{left:55.500000px;}
.x1e_c00312{left:94.537035px;}
.x4_c00312{left:95.725035px;}
.x55_c00312{left:96.738647px;}
.x45_c00312{left:98.407935px;}
.x2c_c00312{left:106.852635px;}
.x56_c00312{left:107.897085px;}
.x71_c00312{left:109.322685px;}
.x11_c00312{left:117.539685px;}
.x76_c00312{left:119.217735px;}
.x1f_c00312{left:128.236635px;}
.x38_c00312{left:129.597885px;}
.x4a_c00312{left:138.057435px;}
.x5_c00312{left:139.319685px;}
.x2b_c00312{left:140.646285px;}
.x79_c00312{left:142.844085px;}
.x57_c00312{left:144.838935px;}
.x7_c00312{left:150.066135px;}
.x61_c00312{left:151.734285px;}
.x12_c00312{left:161.866935px;}
.x77_c00312{left:162.955935px;}
.x78_c00312{left:167.544585px;}
.x13_c00312{left:170.682885px;}
.x20_c00312{left:172.430235px;}
.x4b_c00312{left:173.499435px;}
.x21_c00312{left:182.929185px;}
.x6_c00312{left:184.156785px;}
.x8_c00312{left:195.195285px;}
.x65_c00312{left:196.289235px;}
.x41_c00312{left:205.877385px;}
.x2d_c00312{left:206.966385px;}
.x14_c00312{left:216.980235px;}
.x51_c00312{left:218.400885px;}
.x22_c00312{left:228.201885px;}
.x75_c00312{left:229.449285px;}
.x69_c00312{left:236.067435px;}
.x2e_c00312{left:239.052285px;}
.x46_c00312{left:240.141285px;}
.x15_c00312{left:250.140285px;}
.x9_c00312{left:251.758935px;}
.x39_c00312{left:260.302635px;}
.x4e_c00312{left:262.163835px;}
.x23_c00312{left:270.994635px;}
.x47_c00312{left:272.910285px;}
.xa_c00312{left:284.191335px;}
.xb_c00312{left:295.234785px;}
.x4f_c00312{left:304.506135px;}
.x2f_c00312{left:305.634735px;}
.x7d_c00312{left:306.718785px;}
.x3a_c00312{left:312.307335px;}
.x24_c00312{left:317.093985px;}
.xc_c00312{left:328.350285px;}
.x70_c00312{left:335.626785px;}
.x25_c00312{left:339.225435px;}
.x6b_c00312{left:340.259985px;}
.x30_c00312{left:349.917435px;}
.x16_c00312{left:361.648935px;}
.x48_c00312{left:372.014235px;}
.x31_c00312{left:382.156785px;}
.x3b_c00312{left:383.419035px;}
.x58_c00312{left:394.467435px;}
.x72_c00312{left:395.600985px;}
.x49_c00312{left:404.788185px;}
.x17_c00312{left:405.837585px;}
.x3c_c00312{left:414.990135px;}
.x26_c00312{left:416.173185px;}
.x3_c00312{left:423.786285px;}
.x32_c00312{left:427.627485px;}
.xd_c00312{left:437.987835px;}
.x6c_c00312{left:438.992685px;}
.x18_c00312{left:449.694585px;}
.x59_c00312{left:450.788535px;}
.x66_c00312{left:451.857735px;}
.x7a_c00312{left:455.822685px;}
.xe_c00312{left:459.842085px;}
.x68_c00312{left:460.911285px;}
.x4c_c00312{left:471.652785px;}
.x27_c00312{left:482.503185px;}
.x52_c00312{left:483.839685px;}
.x33_c00312{left:493.838685px;}
.x19_c00312{left:504.644535px;}
.x50_c00312{left:506.891835px;}
.x1a_c00312{left:516.707685px;}
.x7b_c00312{left:518.395635px;}
.x34_c00312{left:527.048235px;}
.xf_c00312{left:537.740235px;}
.x62_c00312{left:540.873585px;}
.x1b_c00312{left:548.387685px;}
.x5d_c00312{left:549.852885px;}
.x3d_c00312{left:558.965835px;}
.x28_c00312{left:560.153835px;}
.x73_c00312{left:561.213135px;}
.x1c_c00312{left:572.306085px;}
.x3e_c00312{left:581.909085px;}
.x5a_c00312{left:583.017885px;}
.x29_c00312{left:592.997085px;}
.x5b_c00312{left:595.076085px;}
.x42_c00312{left:604.382085px;}
.x6d_c00312{left:612.341685px;}
.x35_c00312{left:615.583935px;}
.x3f_c00312{left:625.637385px;}
.x63_c00312{left:627.211485px;}
.x40_c00312{left:637.141185px;}
.x36_c00312{left:638.240085px;}
.x1d_c00312{left:648.575685px;}
.x64_c00312{left:650.001285px;}
.x10_c00312{left:658.346985px;}
.x2a_c00312{left:659.579535px;}
.x6e_c00312{left:660.673485px;}
.x53_c00312{left:662.128785px;}
.x2_c00312{left:670.618035px;}
.x5e_c00312{left:671.741685px;}
.x43_c00312{left:681.013035px;}
.x37_c00312{left:692.660385px;}
.x54_c00312{left:693.838485px;}
.x6f_c00312{left:702.595035px;}
.x44_c00312{left:703.679085px;}
.x67_c00312{left:704.936385px;}
.x7e_c00312{left:709.277535px;}
.x7f_c00312{left:710.628885px;}
.x5f_c00312{left:714.380985px;}
.x7c_c00312{left:715.865985px;}
.x6a_c00312{left:726.241185px;}
.x5c_c00312{left:727.656885px;}
.x4d_c00312{left:736.943085px;}
.x74_c00312{left:738.705285px;}
.x60_c00312{left:748.347885px;}
@media print{
.v2_c00312{vertical-align:-20.257600pt;}
.v1_c00312{vertical-align:-1.249600pt;}
.v0_c00312{vertical-align:0.000000pt;}
.ls8_c00312{letter-spacing:-2.365446pt;}
.ls16_c00312{letter-spacing:-2.149846pt;}
.lsf_c00312{letter-spacing:-2.094400pt;}
.ls9_c00312{letter-spacing:-2.069760pt;}
.ls17_c00312{letter-spacing:-1.798726pt;}
.ls19_c00312{letter-spacing:-1.581470pt;}
.ls14_c00312{letter-spacing:-1.441440pt;}
.ls11_c00312{letter-spacing:-1.398992pt;}
.lsc_c00312{letter-spacing:-1.016400pt;}
.ls7_c00312{letter-spacing:-0.946178pt;}
.ls4_c00312{letter-spacing:0.000000pt;}
.ls1a_c00312{letter-spacing:0.027034pt;}
.ls0_c00312{letter-spacing:0.317646pt;}
.ls18_c00312{letter-spacing:0.685344pt;}
.ls15_c00312{letter-spacing:1.988800pt;}
.ls13_c00312{letter-spacing:2.059200pt;}
.ls12_c00312{letter-spacing:2.076800pt;}
.ls1_c00312{letter-spacing:2.122143pt;}
.lsb_c00312{letter-spacing:2.376000pt;}
.ls2_c00312{letter-spacing:2.419514pt;}
.ls10_c00312{letter-spacing:2.992000pt;}
.lse_c00312{letter-spacing:3.062400pt;}
.ls3_c00312{letter-spacing:3.344000pt;}
.ls5_c00312{letter-spacing:3.379209pt;}
.lsd_c00312{letter-spacing:8.870576pt;}
.ls1b_c00312{letter-spacing:27.878400pt;}
.ls6_c00312{letter-spacing:44.352176pt;}
.lsa_c00312{letter-spacing:45.619376pt;}
.ws2_c00312{word-spacing:-17.213690pt;}
.ws1_c00312{word-spacing:-16.896044pt;}
.ws0_c00312{word-spacing:-15.949866pt;}
.ws7_c00312{word-spacing:-15.497052pt;}
.ws9_c00312{word-spacing:-15.314574pt;}
.ws6_c00312{word-spacing:-1.149040pt;}
.wsa_c00312{word-spacing:0.000000pt;}
.ws8_c00312{word-spacing:3.055008pt;}
.ws4_c00312{word-spacing:4.730787pt;}
.ws3_c00312{word-spacing:5.947475pt;}
.ws5_c00312{word-spacing:6.893475pt;}
._12_c00312{margin-left:-15.793340pt;}
._16_c00312{margin-left:-6.150105pt;}
._17_c00312{margin-left:-3.581884pt;}
._2_c00312{margin-left:-1.689532pt;}
._1a_c00312{width:1.486916pt;}
._18_c00312{width:3.716856pt;}
._c_c00312{width:5.204232pt;}
._b_c00312{width:6.758469pt;}
._4_c00312{width:8.008540pt;}
._9_c00312{width:9.190632pt;}
._11_c00312{width:10.475432pt;}
._1b_c00312{width:12.097468pt;}
._13_c00312{width:13.652232pt;}
._6_c00312{width:15.274082pt;}
._d_c00312{width:18.180399pt;}
._5_c00312{width:19.937397pt;}
._0_c00312{width:21.627007pt;}
._1d_c00312{width:23.181542pt;}
._14_c00312{width:24.675782pt;}
._3_c00312{width:26.357804pt;}
._a_c00312{width:27.912265pt;}
._e_c00312{width:29.128582pt;}
._1c_c00312{width:30.683004pt;}
._1_c00312{width:31.629394pt;}
._8_c00312{width:32.981222pt;}
._7_c00312{width:35.108568pt;}
._f_c00312{width:36.562856pt;}
._15_c00312{width:37.470894pt;}
._10_c00312{width:40.280147pt;}
._1e_c00312{width:41.763392pt;}
._19_c00312{width:43.120000pt;}
._20_c00312{width:159.575680pt;}
._1f_c00312{width:162.835200pt;}
.fsb_c00312{font-size:8.870576pt;}
.fs1_c00312{font-size:24.640000pt;}
.fs1a_c00312{font-size:27.878400pt;}
.fsa_c00312{font-size:29.040000pt;}
.fs1c_c00312{font-size:29.568000pt;}
.fsf_c00312{font-size:30.800000pt;}
.fs19_c00312{font-size:33.616000pt;}
.fs18_c00312{font-size:34.496000pt;}
.fsd_c00312{font-size:34.848000pt;}
.fs5_c00312{font-size:35.200000pt;}
.fs16_c00312{font-size:38.720000pt;}
.fs1b_c00312{font-size:39.424000pt;}
.fs14_c00312{font-size:39.776000pt;}
.fs12_c00312{font-size:41.184000pt;}
.fs10_c00312{font-size:41.536000pt;}
.fs3_c00312{font-size:44.352176pt;}
.fs8_c00312{font-size:45.619376pt;}
.fs9_c00312{font-size:47.520000pt;}
.fs17_c00312{font-size:51.392176pt;}
.fs7_c00312{font-size:57.376000pt;}
.fs13_c00312{font-size:57.728000pt;}
.fs6_c00312{font-size:59.136000pt;}
.fse_c00312{font-size:59.840000pt;}
.fsc_c00312{font-size:61.248000pt;}
.fs15_c00312{font-size:61.424176pt;}
.fs4_c00312{font-size:63.008000pt;}
.fs11_c00312{font-size:64.768000pt;}
.fs0_c00312{font-size:66.880000pt;}
.fs2_c00312{font-size:67.584176pt;}
.y0_c00312{bottom:0.000000pt;}
.y26_c00312{bottom:13.539720pt;}
.y2a_c00312{bottom:50.922120pt;}
.y29_c00312{bottom:61.376520pt;}
.y1_c00312{bottom:68.000000pt;}
.y28_c00312{bottom:70.568120pt;}
.y27_c00312{bottom:85.457720pt;}
.y23_c00312{bottom:96.228920pt;}
.y25_c00312{bottom:124.102920pt;}
.y21_c00312{bottom:151.035320pt;}
.y24_c00312{bottom:151.039676pt;}
.y22_c00312{bottom:151.985720pt;}
.y20_c00312{bottom:183.348920pt;}
.y1f_c00312{bottom:213.128120pt;}
.y1e_c00312{bottom:213.440520pt;}
.y1d_c00312{bottom:225.478920pt;}
.y1c_c00312{bottom:242.273720pt;}
.y1b_c00312{bottom:271.731720pt;}
.y1a_c00312{bottom:271.731808pt;}
.y19_c00312{bottom:301.198520pt;}
.y17_c00312{bottom:358.851720pt;}
.y18_c00312{bottom:362.657720pt;}
.y16_c00312{bottom:387.997320pt;}
.y15_c00312{bottom:413.658120pt;}
.y13_c00312{bottom:416.513720pt;}
.y14_c00312{bottom:416.826120pt;}
.y12_c00312{bottom:445.659320pt;}
.y11_c00312{bottom:445.667680pt;}
.y10_c00312{bottom:474.171320pt;}
.yf_c00312{bottom:530.874120pt;}
.ye_c00312{bottom:560.657720pt;}
.yd_c00312{bottom:560.661680pt;}
.yc_c00312{bottom:590.753720pt;}
.yb_c00312{bottom:620.528520pt;}
.ya_c00312{bottom:649.674120pt;}
.y9_c00312{bottom:679.140920pt;}
.y8_c00312{bottom:692.758920pt;}
.y7_c00312{bottom:707.969720pt;}
.y6_c00312{bottom:736.477320pt;}
.y5_c00312{bottom:765.306120pt;}
.y4_c00312{bottom:822.651320pt;}
.y3_c00312{bottom:850.529720pt;}
.y2_c00312{bottom:960.138120pt;}
.hd_c00312{height:5.907804pt;}
.h1c_c00312{height:18.567014pt;}
.h3_c00312{height:25.698750pt;}
.hc_c00312{height:28.501172pt;}
.h5_c00312{height:29.538549pt;}
.ha_c00312{height:30.382504pt;}
.h11_c00312{height:32.123438pt;}
.h1b_c00312{height:32.992266pt;}
.hf_c00312{height:34.201406pt;}
.h1a_c00312{height:35.978250pt;}
.h7_c00312{height:36.712500pt;}
.h19_c00312{height:38.001563pt;}
.h16_c00312{height:39.037969pt;}
.h1d_c00312{height:41.118000pt;}
.h14_c00312{height:42.953625pt;}
.h12_c00312{height:43.320750pt;}
.hb_c00312{height:46.638281pt;}
.h18_c00312{height:50.438610pt;}
.h8_c00312{height:58.038750pt;}
.h10_c00312{height:58.700469pt;}
.h9_c00312{height:59.841375pt;}
.he_c00312{height:60.111562pt;}
.h17_c00312{height:60.284470pt;}
.h6_c00312{height:61.838906pt;}
.h15_c00312{height:63.566250pt;}
.h13_c00312{height:65.080573pt;}
.h2_c00312{height:65.639063pt;}
.h4_c00312{height:66.330173pt;}
.h1_c00312{height:986.666667pt;}
.h0_c00312{height:1122.666667pt;}
.w1_c00312{width:694.666667pt;}
.w0_c00312{width:793.333333pt;}
.x0_c00312{left:0.000000pt;}
.x1_c00312{left:49.333333pt;}
.x1e_c00312{left:84.032920pt;}
.x4_c00312{left:85.088920pt;}
.x55_c00312{left:85.989908pt;}
.x45_c00312{left:87.473720pt;}
.x2c_c00312{left:94.980120pt;}
.x56_c00312{left:95.908520pt;}
.x71_c00312{left:97.175720pt;}
.x11_c00312{left:104.479720pt;}
.x76_c00312{left:105.971320pt;}
.x1f_c00312{left:113.988120pt;}
.x38_c00312{left:115.198120pt;}
.x4a_c00312{left:122.717720pt;}
.x5_c00312{left:123.839720pt;}
.x2b_c00312{left:125.018920pt;}
.x79_c00312{left:126.972520pt;}
.x57_c00312{left:128.745720pt;}
.x7_c00312{left:133.392120pt;}
.x61_c00312{left:134.874920pt;}
.x12_c00312{left:143.881720pt;}
.x77_c00312{left:144.849720pt;}
.x78_c00312{left:148.928520pt;}
.x13_c00312{left:151.718120pt;}
.x20_c00312{left:153.271320pt;}
.x4b_c00312{left:154.221720pt;}
.x21_c00312{left:162.603720pt;}
.x6_c00312{left:163.694920pt;}
.x8_c00312{left:173.506920pt;}
.x65_c00312{left:174.479320pt;}
.x41_c00312{left:183.002120pt;}
.x2d_c00312{left:183.970120pt;}
.x14_c00312{left:192.871320pt;}
.x51_c00312{left:194.134120pt;}
.x22_c00312{left:202.846120pt;}
.x75_c00312{left:203.954920pt;}
.x69_c00312{left:209.837720pt;}
.x2e_c00312{left:212.490920pt;}
.x46_c00312{left:213.458920pt;}
.x15_c00312{left:222.346920pt;}
.x9_c00312{left:223.785720pt;}
.x39_c00312{left:231.380120pt;}
.x4e_c00312{left:233.034520pt;}
.x23_c00312{left:240.884120pt;}
.x47_c00312{left:242.586920pt;}
.xa_c00312{left:252.614520pt;}
.xb_c00312{left:262.430920pt;}
.x4f_c00312{left:270.672120pt;}
.x2f_c00312{left:271.675320pt;}
.x7d_c00312{left:272.638920pt;}
.x3a_c00312{left:277.606520pt;}
.x24_c00312{left:281.861320pt;}
.xc_c00312{left:291.866920pt;}
.x70_c00312{left:298.334920pt;}
.x25_c00312{left:301.533720pt;}
.x6b_c00312{left:302.453320pt;}
.x30_c00312{left:311.037720pt;}
.x16_c00312{left:321.465720pt;}
.x48_c00312{left:330.679320pt;}
.x31_c00312{left:339.694920pt;}
.x3b_c00312{left:340.816920pt;}
.x58_c00312{left:350.637720pt;}
.x72_c00312{left:351.645320pt;}
.x49_c00312{left:359.811720pt;}
.x17_c00312{left:360.744520pt;}
.x3c_c00312{left:368.880120pt;}
.x26_c00312{left:369.931720pt;}
.x3_c00312{left:376.698920pt;}
.x32_c00312{left:380.113320pt;}
.xd_c00312{left:389.322520pt;}
.x6c_c00312{left:390.215720pt;}
.x18_c00312{left:399.728520pt;}
.x59_c00312{left:400.700920pt;}
.x66_c00312{left:401.651320pt;}
.x7a_c00312{left:405.175720pt;}
.xe_c00312{left:408.748520pt;}
.x68_c00312{left:409.698920pt;}
.x4c_c00312{left:419.246920pt;}
.x27_c00312{left:428.891720pt;}
.x52_c00312{left:430.079720pt;}
.x33_c00312{left:438.967720pt;}
.x19_c00312{left:448.572920pt;}
.x50_c00312{left:450.570520pt;}
.x1a_c00312{left:459.295720pt;}
.x7b_c00312{left:460.796120pt;}
.x34_c00312{left:468.487320pt;}
.xf_c00312{left:477.991320pt;}
.x62_c00312{left:480.776520pt;}
.x1b_c00312{left:487.455720pt;}
.x5d_c00312{left:488.758120pt;}
.x3d_c00312{left:496.858520pt;}
.x28_c00312{left:497.914520pt;}
.x73_c00312{left:498.856120pt;}
.x1c_c00312{left:508.716520pt;}
.x3e_c00312{left:517.252520pt;}
.x5a_c00312{left:518.238120pt;}
.x29_c00312{left:527.108520pt;}
.x5b_c00312{left:528.956520pt;}
.x42_c00312{left:537.228520pt;}
.x6d_c00312{left:544.303720pt;}
.x35_c00312{left:547.185720pt;}
.x3f_c00312{left:556.122120pt;}
.x63_c00312{left:557.521320pt;}
.x40_c00312{left:566.347720pt;}
.x36_c00312{left:567.324520pt;}
.x1d_c00312{left:576.511720pt;}
.x64_c00312{left:577.778920pt;}
.x10_c00312{left:585.197320pt;}
.x2a_c00312{left:586.292920pt;}
.x6e_c00312{left:587.265320pt;}
.x53_c00312{left:588.558920pt;}
.x2_c00312{left:596.104920pt;}
.x5e_c00312{left:597.103720pt;}
.x43_c00312{left:605.344920pt;}
.x37_c00312{left:615.698120pt;}
.x54_c00312{left:616.745320pt;}
.x6f_c00312{left:624.528920pt;}
.x44_c00312{left:625.492520pt;}
.x67_c00312{left:626.610120pt;}
.x7e_c00312{left:630.468920pt;}
.x7f_c00312{left:631.670120pt;}
.x5f_c00312{left:635.005320pt;}
.x7c_c00312{left:636.325320pt;}
.x6a_c00312{left:645.547720pt;}
.x5c_c00312{left:646.806120pt;}
.x4d_c00312{left:655.060520pt;}
.x74_c00312{left:656.626920pt;}
.x60_c00312{left:665.198120pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fa75aecb239a4269333028de.woff2')format("woff");}.ff1_c00313{font-family:ff1_c00313;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00313;src:url('chunks/assets/font_75942fd7260e6d2175bcbbff.woff2')format("woff");}.ff2_c00313{font-family:ff2_c00313;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00313;src:url('chunks/assets/font_22f17cd2aeba3975646e3d3e.woff2')format("woff");}.ff3_c00313{font-family:ff3_c00313;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00313;src:url('chunks/assets/font_066095aa7ea17529a8cbb3ff.woff2')format("woff");}.ff4_c00313{font-family:ff4_c00313;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00313;src:url('chunks/assets/font_91cd84eadf52bb48dc8f0c77.woff2')format("woff");}.ff5_c00313{font-family:ff5_c00313;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00313;src:url('chunks/assets/font_1aa5e61793a322bea7ca2b39.woff2')format("woff");}.ff6_c00313{font-family:ff6_c00313;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m14_c00313{transform:matrix(0.026787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026787,0.000000,0.000000,0.250000,0,0);}
.m94_c00313{transform:matrix(0.069446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.069446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.069446,0.000000,0.000000,0.250000,0,0);}
.m3c_c00313{transform:matrix(0.081428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081428,0.000000,0.000000,0.250000,0,0);}
.m93_c00313{transform:matrix(0.083335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083335,0.000000,0.000000,0.250000,0,0);}
.m1e_c00313{transform:matrix(0.088528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088528,0.000000,0.000000,0.250000,0,0);}
.m98_c00313{transform:matrix(0.096154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096154,0.000000,0.000000,0.250000,0,0);}
.m95_c00313{transform:matrix(0.097223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097223,0.000000,0.000000,0.250000,0,0);}
.m3e_c00313{transform:matrix(0.103572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103572,0.000000,0.000000,0.250000,0,0);}
.m8c_c00313{transform:matrix(0.105265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105265,0.000000,0.000000,0.250000,0,0);}
.m27_c00313{transform:matrix(0.119836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119836,0.000000,0.000000,0.250000,0,0);}
.m8d_c00313{transform:matrix(0.120689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120689,0.000000,0.000000,0.250000,0,0);}
.m8e_c00313{transform:matrix(0.120967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120967,0.000000,0.000000,0.250000,0,0);}
.m9e_c00313{transform:matrix(0.123666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123666,0.000000,0.000000,0.250000,0,0);}
.ma3_c00313{transform:matrix(0.135480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135480,0.000000,0.000000,0.250000,0,0);}
.m22_c00313{transform:matrix(0.137911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137911,0.000000,0.000000,0.250000,0,0);}
.m86_c00313{transform:matrix(0.140625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140625,0.000000,0.000000,0.250000,0,0);}
.m97_c00313{transform:matrix(0.144032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144032,0.000000,0.000000,0.250000,0,0);}
.m91_c00313{transform:matrix(0.144846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144846,0.000000,0.000000,0.250000,0,0);}
.m25_c00313{transform:matrix(0.149617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149617,0.000000,0.000000,0.250000,0,0);}
.m99_c00313{transform:matrix(0.160232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160232,0.000000,0.000000,0.250000,0,0);}
.m92_c00313{transform:matrix(0.166155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166155,0.000000,0.000000,0.250000,0,0);}
.m16_c00313{transform:matrix(0.168585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168585,0.000000,0.000000,0.250000,0,0);}
.m40_c00313{transform:matrix(0.171429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171429,0.000000,0.000000,0.250000,0,0);}
.m2e_c00313{transform:matrix(0.172627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172627,0.000000,0.000000,0.250000,0,0);}
.m9d_c00313{transform:matrix(0.174283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174283,0.000000,0.000000,0.250000,0,0);}
.md_c00313{transform:matrix(0.178815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178815,0.000000,0.000000,0.250000,0,0);}
.m13_c00313{transform:matrix(0.180952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180952,0.000000,0.000000,0.250000,0,0);}
.m8a_c00313{transform:matrix(0.182171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182171,0.000000,0.000000,0.250000,0,0);}
.m4b_c00313{transform:matrix(0.190163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190163,0.000000,0.000000,0.250000,0,0);}
.m12_c00313{transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);}
.m15_c00313{transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);}
.m42_c00313{transform:matrix(0.200932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200932,0.000000,0.000000,0.250000,0,0);}
.ma1_c00313{transform:matrix(0.206251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206251,0.000000,0.000000,0.250000,0,0);}
.maa_c00313{transform:matrix(0.208468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208468,0.000000,0.000000,0.250000,0,0);}
.m46_c00313{transform:matrix(0.209639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209639,0.000000,0.000000,0.250000,0,0);}
.m9f_c00313{transform:matrix(0.213198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213198,0.000000,0.000000,0.250000,0,0);}
.m88_c00313{transform:matrix(0.213748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213748,0.000000,0.000000,0.250000,0,0);}
.ma9_c00313{transform:matrix(0.213813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213813,0.000000,0.000000,0.250000,0,0);}
.m3b_c00313{transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);}
.m3d_c00313{transform:matrix(0.217143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217143,0.000000,0.000000,0.250000,0,0);}
.m84_c00313{transform:matrix(0.219643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219643,0.000000,0.000000,0.250000,0,0);}
.m20_c00313{transform:matrix(0.219688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219688,0.000000,0.000000,0.250000,0,0);}
.m3f_c00313{transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);}
.m96_c00313{transform:matrix(0.225363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225363,0.000000,0.000000,0.250000,0,0);}
.ma4_c00313{transform:matrix(0.226473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226473,0.000000,0.000000,0.250000,0,0);}
.m58_c00313{transform:matrix(0.227641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227641,0.000000,0.000000,0.250000,0,0);}
.m89_c00313{transform:matrix(0.231196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231196,0.000000,0.000000,0.250000,0,0);}
.m9a_c00313{transform:matrix(0.231542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231542,0.000000,0.000000,0.250000,0,0);}
.mf_c00313{transform:matrix(0.236400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236400,0.000000,0.000000,0.250000,0,0);}
.ma6_c00313{transform:matrix(0.237113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237113,0.000000,0.000000,0.250000,0,0);}
.m77_c00313{transform:matrix(0.239576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239576,0.000000,0.000000,0.250000,0,0);}
.m29_c00313{transform:matrix(0.239845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239845,0.000000,0.000000,0.250000,0,0);}
.m85_c00313{transform:matrix(0.241412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241412,0.000000,0.000000,0.250000,0,0);}
.m87_c00313{transform:matrix(0.243178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243178,0.000000,0.000000,0.250000,0,0);}
.m8f_c00313{transform:matrix(0.245723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245723,0.000000,0.000000,0.250000,0,0);}
.ma8_c00313{transform:matrix(0.248078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248078,0.000000,0.000000,0.250000,0,0);}
.m0_c00313{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00313{transform:matrix(0.250400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250400,0.000000,0.000000,0.250000,0,0);}
.mc_c00313{transform:matrix(0.254050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254050,0.000000,0.000000,0.250000,0,0);}
.m1a_c00313{transform:matrix(0.255266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255266,0.000000,0.000000,0.250000,0,0);}
.m1f_c00313{transform:matrix(0.255346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255346,0.000000,0.000000,0.250000,0,0);}
.m90_c00313{transform:matrix(0.258992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258992,0.000000,0.000000,0.250000,0,0);}
.m6e_c00313{transform:matrix(0.260046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260046,0.000000,0.000000,0.250000,0,0);}
.m80_c00313{transform:matrix(0.262004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262004,0.000000,0.000000,0.250000,0,0);}
.mb_c00313{transform:matrix(0.263470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263470,0.000000,0.000000,0.250000,0,0);}
.m59_c00313{transform:matrix(0.265824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265824,0.000000,0.000000,0.250000,0,0);}
.m5_c00313{transform:matrix(0.266161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266161,0.000000,0.000000,0.250000,0,0);}
.m6a_c00313{transform:matrix(0.266768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266768,0.000000,0.000000,0.250000,0,0);}
.ma2_c00313{transform:matrix(0.267628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267628,0.000000,0.000000,0.250000,0,0);}
.m71_c00313{transform:matrix(0.267639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267639,0.000000,0.000000,0.250000,0,0);}
.m83_c00313{transform:matrix(0.268526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268526,0.000000,0.000000,0.250000,0,0);}
.m10_c00313{transform:matrix(0.268611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268611,0.000000,0.000000,0.250000,0,0);}
.m73_c00313{transform:matrix(0.270088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270088,0.000000,0.000000,0.250000,0,0);}
.m31_c00313{transform:matrix(0.270856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270856,0.000000,0.000000,0.250000,0,0);}
.m21_c00313{transform:matrix(0.271421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271421,0.000000,0.000000,0.250000,0,0);}
.m43_c00313{transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);}
.m18_c00313{transform:matrix(0.272100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272100,0.000000,0.000000,0.250000,0,0);}
.m4d_c00313{transform:matrix(0.272738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272738,0.000000,0.000000,0.250000,0,0);}
.m7d_c00313{transform:matrix(0.273604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273604,0.000000,0.000000,0.250000,0,0);}
.m7a_c00313{transform:matrix(0.274532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274532,0.000000,0.000000,0.250000,0,0);}
.m2_c00313{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m1_c00313{transform:matrix(0.278646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278646,0.000000,0.000000,0.250000,0,0);}
.m4a_c00313{transform:matrix(0.278661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278661,0.000000,0.000000,0.250000,0,0);}
.m70_c00313{transform:matrix(0.281049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281049,0.000000,0.000000,0.250000,0,0);}
.m23_c00313{transform:matrix(0.281060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281060,0.000000,0.000000,0.250000,0,0);}
.m53_c00313{transform:matrix(0.282691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282691,0.000000,0.000000,0.250000,0,0);}
.m63_c00313{transform:matrix(0.283619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283619,0.000000,0.000000,0.250000,0,0);}
.m6_c00313{transform:matrix(0.284210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284210,0.000000,0.000000,0.250000,0,0);}
.m5e_c00313{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m68_c00313{transform:matrix(0.285674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285674,0.000000,0.000000,0.250000,0,0);}
.m5b_c00313{transform:matrix(0.285824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285824,0.000000,0.000000,0.250000,0,0);}
.m45_c00313{transform:matrix(0.286200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286200,0.000000,0.000000,0.250000,0,0);}
.m24_c00313{transform:matrix(0.286762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286762,0.000000,0.000000,0.250000,0,0);}
.m1c_c00313{transform:matrix(0.287277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287277,0.000000,0.000000,0.250000,0,0);}
.m6f_c00313{transform:matrix(0.287684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287684,0.000000,0.000000,0.250000,0,0);}
.m55_c00313{transform:matrix(0.287715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287715,0.000000,0.000000,0.250000,0,0);}
.m17_c00313{transform:matrix(0.288127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288127,0.000000,0.000000,0.250000,0,0);}
.m34_c00313{transform:matrix(0.290344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290344,0.000000,0.000000,0.250000,0,0);}
.m9_c00313{transform:matrix(0.293996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293996,0.000000,0.000000,0.250000,0,0);}
.m1d_c00313{transform:matrix(0.295332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295332,0.000000,0.000000,0.250000,0,0);}
.m11_c00313{transform:matrix(0.295379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295379,0.000000,0.000000,0.250000,0,0);}
.m50_c00313{transform:matrix(0.296014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296014,0.000000,0.000000,0.250000,0,0);}
.m26_c00313{transform:matrix(0.296708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296708,0.000000,0.000000,0.250000,0,0);}
.m74_c00313{transform:matrix(0.296960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296960,0.000000,0.000000,0.250000,0,0);}
.m7f_c00313{transform:matrix(0.297522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297522,0.000000,0.000000,0.250000,0,0);}
.m5d_c00313{transform:matrix(0.297525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297525,0.000000,0.000000,0.250000,0,0);}
.m54_c00313{transform:matrix(0.298665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298665,0.000000,0.000000,0.250000,0,0);}
.m32_c00313{transform:matrix(0.300597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300597,0.000000,0.000000,0.250000,0,0);}
.m3_c00313{transform:matrix(0.300918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300918,0.000000,0.000000,0.250000,0,0);}
.m61_c00313{transform:matrix(0.301396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301396,0.000000,0.000000,0.250000,0,0);}
.m35_c00313{transform:matrix(0.301566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301566,0.000000,0.000000,0.250000,0,0);}
.m39_c00313{transform:matrix(0.302827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302827,0.000000,0.000000,0.250000,0,0);}
.m2d_c00313{transform:matrix(0.303486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303486,0.000000,0.000000,0.250000,0,0);}
.m69_c00313{transform:matrix(0.304887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304887,0.000000,0.000000,0.250000,0,0);}
.m78_c00313{transform:matrix(0.305096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305096,0.000000,0.000000,0.250000,0,0);}
.ma5_c00313{transform:matrix(0.305634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305634,0.000000,0.000000,0.250000,0,0);}
.m67_c00313{transform:matrix(0.307707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307707,0.000000,0.000000,0.250000,0,0);}
.mab_c00313{transform:matrix(0.308380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308380,0.000000,0.000000,0.250000,0,0);}
.m82_c00313{transform:matrix(0.309564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309564,0.000000,0.000000,0.250000,0,0);}
.m2b_c00313{transform:matrix(0.311825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311825,0.000000,0.000000,0.250000,0,0);}
.m51_c00313{transform:matrix(0.312420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312420,0.000000,0.000000,0.250000,0,0);}
.m1b_c00313{transform:matrix(0.312993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312993,0.000000,0.000000,0.250000,0,0);}
.m2c_c00313{transform:matrix(0.313245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313245,0.000000,0.000000,0.250000,0,0);}
.mac_c00313{transform:matrix(0.315791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315791,0.000000,0.000000,0.250000,0,0);}
.m4_c00313{transform:matrix(0.317725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317725,0.000000,0.000000,0.250000,0,0);}
.m47_c00313{transform:matrix(0.318221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318221,0.000000,0.000000,0.250000,0,0);}
.m75_c00313{transform:matrix(0.318624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318624,0.000000,0.000000,0.250000,0,0);}
.m38_c00313{transform:matrix(0.319768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319768,0.000000,0.000000,0.250000,0,0);}
.m9c_c00313{transform:matrix(0.320129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320129,0.000000,0.000000,0.250000,0,0);}
.me_c00313{transform:matrix(0.320839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320839,0.000000,0.000000,0.250000,0,0);}
.m3a_c00313{transform:matrix(0.321944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321944,0.000000,0.000000,0.250000,0,0);}
.m4c_c00313{transform:matrix(0.322018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322018,0.000000,0.000000,0.250000,0,0);}
.m36_c00313{transform:matrix(0.323590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323590,0.000000,0.000000,0.250000,0,0);}
.m64_c00313{transform:matrix(0.326679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326679,0.000000,0.000000,0.250000,0,0);}
.m6c_c00313{transform:matrix(0.328928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328928,0.000000,0.000000,0.250000,0,0);}
.m66_c00313{transform:matrix(0.329536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329536,0.000000,0.000000,0.250000,0,0);}
.m4e_c00313{transform:matrix(0.329842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329842,0.000000,0.000000,0.250000,0,0);}
.m65_c00313{transform:matrix(0.331517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331517,0.000000,0.000000,0.250000,0,0);}
.m7e_c00313{transform:matrix(0.331725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331725,0.000000,0.000000,0.250000,0,0);}
.m2f_c00313{transform:matrix(0.333769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333769,0.000000,0.000000,0.250000,0,0);}
.m79_c00313{transform:matrix(0.334507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334507,0.000000,0.000000,0.250000,0,0);}
.m76_c00313{transform:matrix(0.334707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334707,0.000000,0.000000,0.250000,0,0);}
.m52_c00313{transform:matrix(0.334928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334928,0.000000,0.000000,0.250000,0,0);}
.m19_c00313{transform:matrix(0.336267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336267,0.000000,0.000000,0.250000,0,0);}
.m72_c00313{transform:matrix(0.336509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336509,0.000000,0.000000,0.250000,0,0);}
.m7_c00313{transform:matrix(0.336596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336596,0.000000,0.000000,0.250000,0,0);}
.m33_c00313{transform:matrix(0.337882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337882,0.000000,0.000000,0.250000,0,0);}
.m5a_c00313{transform:matrix(0.339024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339024,0.000000,0.000000,0.250000,0,0);}
.m81_c00313{transform:matrix(0.339698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339698,0.000000,0.000000,0.250000,0,0);}
.m5f_c00313{transform:matrix(0.340317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340317,0.000000,0.000000,0.250000,0,0);}
.m57_c00313{transform:matrix(0.340388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340388,0.000000,0.000000,0.250000,0,0);}
.m5c_c00313{transform:matrix(0.341447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341447,0.000000,0.000000,0.250000,0,0);}
.m30_c00313{transform:matrix(0.344561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344561,0.000000,0.000000,0.250000,0,0);}
.m60_c00313{transform:matrix(0.346047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346047,0.000000,0.000000,0.250000,0,0);}
.m48_c00313{transform:matrix(0.346091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346091,0.000000,0.000000,0.250000,0,0);}
.m56_c00313{transform:matrix(0.354006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354006,0.000000,0.000000,0.250000,0,0);}
.m6b_c00313{transform:matrix(0.355433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355433,0.000000,0.000000,0.250000,0,0);}
.m2a_c00313{transform:matrix(0.355524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355524,0.000000,0.000000,0.250000,0,0);}
.m49_c00313{transform:matrix(0.358608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358608,0.000000,0.000000,0.250000,0,0);}
.m7b_c00313{transform:matrix(0.360217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360217,0.000000,0.000000,0.250000,0,0);}
.m44_c00313{transform:matrix(0.360976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360976,0.000000,0.000000,0.250000,0,0);}
.m62_c00313{transform:matrix(0.366355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366355,0.000000,0.000000,0.250000,0,0);}
.m8b_c00313{transform:matrix(0.368421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368421,0.000000,0.000000,0.250000,0,0);}
.ma_c00313{transform:matrix(0.370713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370713,0.000000,0.000000,0.250000,0,0);}
.ma0_c00313{transform:matrix(0.371242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371242,0.000000,0.000000,0.250000,0,0);}
.m4f_c00313{transform:matrix(0.383698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383698,0.000000,0.000000,0.250000,0,0);}
.m8_c00313{transform:matrix(0.387385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387385,0.000000,0.000000,0.250000,0,0);}
.m9b_c00313{transform:matrix(0.392449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392449,0.000000,0.000000,0.250000,0,0);}
.m7c_c00313{transform:matrix(0.397908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397908,0.000000,0.000000,0.250000,0,0);}
.m37_c00313{transform:matrix(0.400532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400532,0.000000,0.000000,0.250000,0,0);}
.m41_c00313{transform:matrix(0.416915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416915,0.000000,0.000000,0.250000,0,0);}
.m28_c00313{transform:matrix(0.437896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437896,0.000000,0.000000,0.250000,0,0);}
.ma7_c00313{transform:matrix(0.557271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557271,0.000000,0.000000,0.250000,0,0);}
.v5_c00313{vertical-align:-37.085400px;}
.v2_c00313{vertical-align:-15.661800px;}
.v1_c00313{vertical-align:-11.369160px;}
.v6_c00313{vertical-align:-4.247100px;}
.v0_c00313{vertical-align:0.000000px;}
.v4_c00313{vertical-align:11.404800px;}
.v7_c00313{vertical-align:17.127000px;}
.v3_c00313{vertical-align:45.599400px;}
.ls21_c00313{letter-spacing:-2.674980px;}
.lsb_c00313{letter-spacing:-2.661127px;}
.ls29_c00313{letter-spacing:-2.349277px;}
.ls13_c00313{letter-spacing:-2.252250px;}
.ls27_c00313{letter-spacing:-2.079000px;}
.ls1d_c00313{letter-spacing:-2.002770px;}
.lse_c00313{letter-spacing:-1.801963px;}
.ls26_c00313{letter-spacing:-1.559250px;}
.ls20_c00313{letter-spacing:-1.441440px;}
.ls1e_c00313{letter-spacing:-1.427580px;}
.ls1c_c00313{letter-spacing:-1.422135px;}
.ls15_c00313{letter-spacing:-1.399867px;}
.ls2d_c00313{letter-spacing:-1.129590px;}
.ls23_c00313{letter-spacing:-1.101870px;}
.ls16_c00313{letter-spacing:-1.025640px;}
.ls2b_c00313{letter-spacing:-0.824670px;}
.lsf_c00313{letter-spacing:-0.790735px;}
.ls1a_c00313{letter-spacing:-0.283140px;}
.ls2c_c00313{letter-spacing:-0.009425px;}
.ls8_c00313{letter-spacing:0.000000px;}
.ls5_c00313{letter-spacing:0.455482px;}
.ls2a_c00313{letter-spacing:1.178100px;}
.ls6_c00313{letter-spacing:1.563705px;}
.ls2e_c00313{letter-spacing:1.890900px;}
.ls0_c00313{letter-spacing:2.082247px;}
.ls25_c00313{letter-spacing:2.227500px;}
.ls28_c00313{letter-spacing:2.245815px;}
.lsa_c00313{letter-spacing:2.415600px;}
.lsd_c00313{letter-spacing:2.509063px;}
.ls10_c00313{letter-spacing:2.514600px;}
.ls12_c00313{letter-spacing:2.541825px;}
.ls2_c00313{letter-spacing:3.153150px;}
.ls1b_c00313{letter-spacing:3.217500px;}
.ls24_c00313{letter-spacing:3.276900px;}
.ls11_c00313{letter-spacing:3.405610px;}
.ls9_c00313{letter-spacing:3.801610px;}
.ls4_c00313{letter-spacing:10.969943px;}
.ls1_c00313{letter-spacing:22.640310px;}
.ls1f_c00313{letter-spacing:25.660998px;}
.ls17_c00313{letter-spacing:27.086400px;}
.ls3_c00313{letter-spacing:29.331364px;}
.ls18_c00313{letter-spacing:41.342598px;}
.ls19_c00313{letter-spacing:44.193798px;}
.ls14_c00313{letter-spacing:45.619398px;}
.lsc_c00313{letter-spacing:49.896198px;}
.ls7_c00313{letter-spacing:51.321798px;}
.ls22_c00313{letter-spacing:55.598598px;}
.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;}
}
.ws7_c00313{word-spacing:-19.240650px;}
.ws1_c00313{word-spacing:-19.008050px;}
.ws4_c00313{word-spacing:-18.629325px;}
.ws3_c00313{word-spacing:-17.206086px;}
.ws6_c00313{word-spacing:-15.804360px;}
.ws0_c00313{word-spacing:-15.512983px;}
.ws9_c00313{word-spacing:0.000000px;}
.ws2_c00313{word-spacing:2.508951px;}
.ws8_c00313{word-spacing:5.276700px;}
.ws5_c00313{word-spacing:7.014150px;}
._0_c00313{margin-left:-10.340297px;}
._18_c00313{margin-left:-7.528950px;}
._d_c00313{margin-left:-5.398404px;}
._16_c00313{margin-left:-3.410550px;}
._b_c00313{margin-left:-2.174264px;}
._a_c00313{margin-left:-1.064536px;}
._17_c00313{width:2.895750px;}
._1c_c00313{width:5.083650px;}
._e_c00313{width:6.234723px;}
._11_c00313{width:7.527080px;}
._5_c00313{width:8.818821px;}
._2_c00313{width:9.884259px;}
._f_c00313{width:11.784861px;}
._15_c00313{width:13.609849px;}
._6_c00313{width:16.271783px;}
._1b_c00313{width:17.520032px;}
._8_c00313{width:21.517001px;}
._c_c00313{width:22.667320px;}
._13_c00313{width:24.483415px;}
._12_c00313{width:26.991409px;}
._3_c00313{width:29.937451px;}
._1_c00313{width:34.888255px;}
._7_c00313{width:37.147633px;}
._9_c00313{width:39.917059px;}
._14_c00313{width:43.490417px;}
._4_c00313{width:47.685428px;}
._19_c00313{width:68.198267px;}
._1a_c00313{width:86.169600px;}
._1d_c00313{width:154.182600px;}
._1e_c00313{width:204.227100px;}
._10_c00313{width:1509.304896px;}
.fc0_c00313{color:transparent;}
.fsb_c00313{font-size:18.216000px;}
.fs2_c00313{font-size:22.176000px;}
.fs29_c00313{font-size:23.562000px;}
.fs1b_c00313{font-size:25.660998px;}
.fs10_c00313{font-size:27.086400px;}
.fs1_c00313{font-size:27.720000px;}
.fs2d_c00313{font-size:28.314000px;}
.fsf_c00313{font-size:29.304000px;}
.fs22_c00313{font-size:31.482000px;}
.fs11_c00313{font-size:31.680000px;}
.fs23_c00313{font-size:32.076198px;}
.fs2a_c00313{font-size:32.274000px;}
.fs7_c00313{font-size:32.670000px;}
.fs2c_c00313{font-size:33.660000px;}
.fs2b_c00313{font-size:37.818000px;}
.fs6_c00313{font-size:39.600000px;}
.fse_c00313{font-size:39.996198px;}
.fs1a_c00313{font-size:40.788000px;}
.fs1c_c00313{font-size:41.184000px;}
.fs12_c00313{font-size:41.342598px;}
.fs21_c00313{font-size:41.778000px;}
.fs17_c00313{font-size:42.966198px;}
.fs20_c00313{font-size:43.164000px;}
.fs14_c00313{font-size:44.193798px;}
.fs24_c00313{font-size:44.550000px;}
.fsd_c00313{font-size:45.619398px;}
.fs4_c00313{font-size:48.312000px;}
.fs5_c00313{font-size:49.896198px;}
.fs9_c00313{font-size:50.292000px;}
.fs19_c00313{font-size:50.688000px;}
.fs0_c00313{font-size:51.321798px;}
.fs1d_c00313{font-size:53.856198px;}
.fs25_c00313{font-size:55.044000px;}
.fs1f_c00313{font-size:55.598598px;}
.fs18_c00313{font-size:57.222000px;}
.fs13_c00313{font-size:57.816198px;}
.fs16_c00313{font-size:59.400000px;}
.fs27_c00313{font-size:63.360000px;}
.fsc_c00313{font-size:64.350000px;}
.fs15_c00313{font-size:65.538000px;}
.fs26_c00313{font-size:67.122198px;}
.fsa_c00313{font-size:68.112198px;}
.fs8_c00313{font-size:70.884000px;}
.fs3_c00313{font-size:76.032198px;}
.fs1e_c00313{font-size:76.428000px;}
.fs28_c00313{font-size:86.328000px;}
.y0_c00313{bottom:0.000000px;}
.y31_c00313{bottom:54.792585px;}
.y1_c00313{bottom:76.500000px;}
.y30_c00313{bottom:130.710735px;}
.y2f_c00313{bottom:153.163935px;}
.y2e_c00313{bottom:189.160335px;}
.y2c_c00313{bottom:190.580985px;}
.y2d_c00313{bottom:194.862735px;}
.y2b_c00313{bottom:210.900735px;}
.y2a_c00313{bottom:214.464735px;}
.y29_c00313{bottom:222.305535px;}
.y28_c00313{bottom:244.040985px;}
.y27_c00313{bottom:247.609935px;}
.y26_c00313{bottom:261.153135px;}
.y25_c00313{bottom:267.563385px;}
.y23_c00313{bottom:275.760585px;}
.y22_c00313{bottom:281.467935px;}
.y24_c00313{bottom:283.244985px;}
.y21_c00313{bottom:291.447135px;}
.y1f_c00313{bottom:301.777785px;}
.y1d_c00313{bottom:308.197935px;}
.y1c_c00313{bottom:309.267135px;}
.y20_c00313{bottom:310.336335px;}
.y1e_c00313{bottom:319.246335px;}
.y1a_c00313{bottom:344.907135px;}
.y18_c00313{bottom:347.753385px;}
.y1b_c00313{bottom:350.604585px;}
.y19_c00313{bottom:352.030185px;}
.y15_c00313{bottom:368.424585px;}
.y14_c00313{bottom:374.131935px;}
.y17_c00313{bottom:375.908985px;}
.y16_c00313{bottom:378.760185px;}
.y13_c00313{bottom:503.148735px;}
.y3_c00313{bottom:524.532735px;}
.y12_c00313{bottom:535.576185px;}
.y11_c00313{bottom:600.445935px;}
.y10_c00313{bottom:633.586185px;}
.yf_c00313{bottom:665.667135px;}
.ye_c00313{bottom:698.455935px;}
.yd_c00313{bottom:728.037135px;}
.yc_c00313{bottom:731.244735px;}
.yb_c00313{bottom:795.391785px;}
.ya_c00313{bottom:827.829135px;}
.y8_c00313{bottom:859.905135px;}
.y9_c00313{bottom:862.751385px;}
.y7_c00313{bottom:874.156185px;}
.y6_c00313{bottom:892.693935px;}
.y5_c00313{bottom:926.546985px;}
.y4_c00313{bottom:1088.352585px;}
.y2_c00313{bottom:1093.342185px;}
.h1b_c00313{height:17.090225px;}
.hc_c00313{height:17.878008px;}
.h11_c00313{height:18.039542px;}
.h2b_c00313{height:23.124814px;}
.h4_c00313{height:23.128875px;}
.h2a_c00313{height:23.746078px;}
.h13_c00313{height:27.534170px;}
.h3_c00313{height:28.911094px;}
.h15_c00313{height:29.433069px;}
.h2f_c00313{height:29.530617px;}
.he_c00313{height:30.382519px;}
.h10_c00313{height:30.563156px;}
.h22_c00313{height:30.882489px;}
.h23_c00313{height:31.481034px;}
.h9_c00313{height:32.063818px;}
.h2e_c00313{height:33.035449px;}
.h12_c00313{height:33.041250px;}
.h7_c00313{height:33.230868px;}
.h2c_c00313{height:33.660773px;}
.h2_c00313{height:34.180317px;}
.h1f_c00313{height:37.028666px;}
.h2d_c00313{height:38.113453px;}
.h1a_c00313{height:40.031191px;}
.h1c_c00313{height:40.419844px;}
.h8_c00313{height:41.301563px;}
.hf_c00313{height:41.714785px;}
.h21_c00313{height:43.573148px;}
.h24_c00313{height:43.723389px;}
.h20_c00313{height:45.018703px;}
.ha_c00313{height:49.358848px;}
.h6_c00313{height:50.387906px;}
.h19_c00313{height:52.866000px;}
.h18_c00313{height:56.160264px;}
.h1d_c00313{height:56.170332px;}
.h26_c00313{height:57.409172px;}
.h25_c00313{height:58.297852px;}
.h14_c00313{height:60.300488px;}
.h28_c00313{height:62.184375px;}
.hd_c00313{height:63.156006px;}
.hb_c00313{height:66.848397px;}
.h16_c00313{height:68.354086px;}
.h27_c00313{height:70.006355px;}
.h5_c00313{height:74.621444px;}
.h1e_c00313{height:79.712016px;}
.h17_c00313{height:103.897252px;}
.h29_c00313{height:107.164406px;}
.h1_c00313{height:1110.000000px;}
.h0_c00313{height:1263.000000px;}
.w1_c00313{width:781.500000px;}
.w0_c00313{width:892.500000px;}
.x2_c00313{left:-2.715615px;}
.x0_c00313{left:0.000000px;}
.x3_c00313{left:23.306535px;}
.x5_c00313{left:31.746285px;}
.x1_c00313{left:55.500000px;}
.x40_c00313{left:84.557835px;}
.x14_c00313{left:96.319035px;}
.x59_c00313{left:97.388235px;}
.x55_c00313{left:108.298035px;}
.x15_c00313{left:130.087935px;}
.x4_c00313{left:137.705985px;}
.x41_c00313{left:140.869035px;}
.x49_c00313{left:150.853185px;}
.x7_c00313{left:152.041185px;}
.x29_c00313{left:153.179685px;}
.x42_c00313{left:162.807435px;}
.x16_c00313{left:164.228085px;}
.x4a_c00313{left:172.811385px;}
.x43_c00313{left:174.147885px;}
.x8_c00313{left:185.488335px;}
.x71_c00313{left:187.201035px;}
.x7d_c00313{left:196.021935px;}
.x72_c00313{left:202.442085px;}
.x37_c00313{left:207.139635px;}
.x28_c00313{left:210.500685px;}
.x9_c00313{left:218.920635px;}
.x74_c00313{left:222.737085px;}
.x44_c00313{left:228.543435px;}
.x4b_c00313{left:240.146235px;}
.x17_c00313{left:251.867835px;}
.x2a_c00313{left:258.446385px;}
.x50_c00313{left:262.401435px;}
.x38_c00313{left:263.663685px;}
.x75_c00313{left:265.143735px;}
.x73_c00313{left:266.509935px;}
.x5d_c00313{left:273.157785px;}
.x2b_c00313{left:274.365585px;}
.x39_c00313{left:285.032835px;}
.x2c_c00313{left:294.838785px;}
.x18_c00313{left:296.398035px;}
.x4c_c00313{left:305.565435px;}
.xa_c00313{left:307.149435px;}
.x19_c00313{left:318.554235px;}
.x2d_c00313{left:328.701735px;}
.x3a_c00313{left:329.968935px;}
.x64_c00313{left:336.933585px;}
.x1a_c00313{left:340.309485px;}
.x78_c00313{left:346.170285px;}
.x65_c00313{left:348.407685px;}
.xb_c00313{left:351.154935px;}
.x1b_c00313{left:352.367685px;}
.x45_c00313{left:361.901385px;}
.x68_c00313{left:363.133935px;}
.x2e_c00313{left:373.474485px;}
.x79_c00313{left:374.548635px;}
.xc_c00313{left:376.790985px;}
.x2f_c00313{left:384.245685px;}
.x30_c00313{left:388.680885px;}
.x1c_c00313{left:395.180235px;}
.x46_c00313{left:406.080135px;}
.xd_c00313{left:407.228535px;}
.x4d_c00313{left:412.153785px;}
.x31_c00313{left:417.148335px;}
.x51_c00313{left:418.311585px;}
.x5e_c00313{left:420.385635px;}
.x1d_c00313{left:428.171985px;}
.x70_c00313{left:437.369085px;}
.x1e_c00313{left:438.507585px;}
.xe_c00313{left:439.675785px;}
.x5f_c00313{left:441.131085px;}
.x3b_c00313{left:450.941985px;}
.x5a_c00313{left:461.827035px;}
.x5c_c00313{left:462.851685px;}
.x1f_c00313{left:465.237585px;}
.x20_c00313{left:472.721985px;}
.x32_c00313{left:484.359435px;}
.x69_c00313{left:488.403585px;}
.x66_c00313{left:490.903335px;}
.xf_c00313{left:495.343485px;}
.x67_c00313{left:501.268635px;}
.x21_c00313{left:505.713735px;}
.x6a_c00313{left:509.079735px;}
.x6b_c00313{left:511.213185px;}
.x22_c00313{left:515.841435px;}
.x47_c00313{left:517.628385px;}
.x33_c00313{left:527.899635px;}
.x6c_c00313{left:534.052485px;}
.x3c_c00313{left:539.165835px;}
.x52_c00313{left:548.986635px;}
.x23_c00313{left:550.605285px;}
.x34_c00313{left:561.366585px;}
.x35_c00313{left:572.573385px;}
.x48_c00313{left:573.919785px;}
.x24_c00313{left:584.057385px;}
.x4e_c00313{left:586.042335px;}
.x6_c00313{left:594.170235px;}
.x10_c00313{left:595.788885px;}
.x25_c00313{left:605.584935px;}
.x53_c00313{left:616.504635px;}
.x56_c00313{left:617.895585px;}
.x76_c00313{left:620.741835px;}
.x6e_c00313{left:622.766385px;}
.x7c_c00313{left:625.474035px;}
.x11_c00313{left:627.726285px;}
.x7a_c00313{left:631.993185px;}
.x6d_c00313{left:635.656185px;}
.x5b_c00313{left:637.680735px;}
.x12_c00313{left:638.725185px;}
.x61_c00313{left:640.348785px;}
.x7b_c00313{left:641.888235px;}
.x63_c00313{left:645.036435px;}
.x62_c00313{left:648.179685px;}
.x6f_c00313{left:655.352235px;}
.x26_c00313{left:660.158685px;}
.x57_c00313{left:661.698135px;}
.x77_c00313{left:667.831185px;}
.x3d_c00313{left:670.519035px;}
.x60_c00313{left:672.266385px;}
.x13_c00313{left:683.879085px;}
.x27_c00313{left:694.481985px;}
.x4f_c00313{left:704.906685px;}
.x3e_c00313{left:705.931335px;}
.x58_c00313{left:716.247135px;}
.x7f_c00313{left:720.692235px;}
.x36_c00313{left:727.696485px;}
.x7e_c00313{left:734.146335px;}
.x54_c00313{left:738.368685px;}
.x3f_c00313{left:760.821885px;}
@media print{
.v5_c00313{vertical-align:-32.964800pt;}
.v2_c00313{vertical-align:-13.921600pt;}
.v1_c00313{vertical-align:-10.105920pt;}
.v6_c00313{vertical-align:-3.775200pt;}
.v0_c00313{vertical-align:0.000000pt;}
.v4_c00313{vertical-align:10.137600pt;}
.v7_c00313{vertical-align:15.224000pt;}
.v3_c00313{vertical-align:40.532800pt;}
.ls21_c00313{letter-spacing:-2.377760pt;}
.lsb_c00313{letter-spacing:-2.365446pt;}
.ls29_c00313{letter-spacing:-2.088246pt;}
.ls13_c00313{letter-spacing:-2.002000pt;}
.ls27_c00313{letter-spacing:-1.848000pt;}
.ls1d_c00313{letter-spacing:-1.780240pt;}
.lse_c00313{letter-spacing:-1.601745pt;}
.ls26_c00313{letter-spacing:-1.386000pt;}
.ls20_c00313{letter-spacing:-1.281280pt;}
.ls1e_c00313{letter-spacing:-1.268960pt;}
.ls1c_c00313{letter-spacing:-1.264120pt;}
.ls15_c00313{letter-spacing:-1.244326pt;}
.ls2d_c00313{letter-spacing:-1.004080pt;}
.ls23_c00313{letter-spacing:-0.979440pt;}
.ls16_c00313{letter-spacing:-0.911680pt;}
.ls2b_c00313{letter-spacing:-0.733040pt;}
.lsf_c00313{letter-spacing:-0.702875pt;}
.ls1a_c00313{letter-spacing:-0.251680pt;}
.ls2c_c00313{letter-spacing:-0.008378pt;}
.ls8_c00313{letter-spacing:0.000000pt;}
.ls5_c00313{letter-spacing:0.404873pt;}
.ls2a_c00313{letter-spacing:1.047200pt;}
.ls6_c00313{letter-spacing:1.389960pt;}
.ls2e_c00313{letter-spacing:1.680800pt;}
.ls0_c00313{letter-spacing:1.850886pt;}
.ls25_c00313{letter-spacing:1.980000pt;}
.ls28_c00313{letter-spacing:1.996280pt;}
.lsa_c00313{letter-spacing:2.147200pt;}
.lsd_c00313{letter-spacing:2.230278pt;}
.ls10_c00313{letter-spacing:2.235200pt;}
.ls12_c00313{letter-spacing:2.259400pt;}
.ls2_c00313{letter-spacing:2.802800pt;}
.ls1b_c00313{letter-spacing:2.860000pt;}
.ls24_c00313{letter-spacing:2.912800pt;}
.ls11_c00313{letter-spacing:3.027209pt;}
.ls9_c00313{letter-spacing:3.379209pt;}
.ls4_c00313{letter-spacing:9.751060pt;}
.ls1_c00313{letter-spacing:20.124720pt;}
.ls1f_c00313{letter-spacing:22.809776pt;}
.ls17_c00313{letter-spacing:24.076800pt;}
.ls3_c00313{letter-spacing:26.072324pt;}
.ls18_c00313{letter-spacing:36.748976pt;}
.ls19_c00313{letter-spacing:39.283376pt;}
.ls14_c00313{letter-spacing:40.550576pt;}
.lsc_c00313{letter-spacing:44.352176pt;}
.ls7_c00313{letter-spacing:45.619376pt;}
.ls22_c00313{letter-spacing:49.420976pt;}
.ws7_c00313{word-spacing:-17.102800pt;}
.ws1_c00313{word-spacing:-16.896044pt;}
.ws4_c00313{word-spacing:-16.559400pt;}
.ws3_c00313{word-spacing:-15.294299pt;}
.ws6_c00313{word-spacing:-14.048320pt;}
.ws0_c00313{word-spacing:-13.789318pt;}
.ws9_c00313{word-spacing:0.000000pt;}
.ws2_c00313{word-spacing:2.230179pt;}
.ws8_c00313{word-spacing:4.690400pt;}
.ws5_c00313{word-spacing:6.234800pt;}
._0_c00313{margin-left:-9.191375pt;}
._18_c00313{margin-left:-6.692400pt;}
._d_c00313{margin-left:-4.798581pt;}
._16_c00313{margin-left:-3.031600pt;}
._b_c00313{margin-left:-1.932679pt;}
._a_c00313{margin-left:-0.946254pt;}
._17_c00313{width:2.574000pt;}
._1c_c00313{width:4.518800pt;}
._e_c00313{width:5.541976pt;}
._11_c00313{width:6.690738pt;}
._5_c00313{width:7.838952pt;}
._2_c00313{width:8.786008pt;}
._f_c00313{width:10.475432pt;}
._15_c00313{width:12.097644pt;}
._6_c00313{width:14.463807pt;}
._1b_c00313{width:15.573362pt;}
._8_c00313{width:19.126223pt;}
._c_c00313{width:20.148729pt;}
._13_c00313{width:21.763036pt;}
._12_c00313{width:23.992364pt;}
._3_c00313{width:26.611068pt;}
._1_c00313{width:31.011782pt;}
._7_c00313{width:33.020118pt;}
._9_c00313{width:35.481830pt;}
._14_c00313{width:38.658149pt;}
._4_c00313{width:42.387047pt;}
._19_c00313{width:60.620682pt;}
._1a_c00313{width:76.595200pt;}
._1d_c00313{width:137.051200pt;}
._1e_c00313{width:181.535200pt;}
._10_c00313{width:1341.604352pt;}
.fsb_c00313{font-size:16.192000pt;}
.fs2_c00313{font-size:19.712000pt;}
.fs29_c00313{font-size:20.944000pt;}
.fs1b_c00313{font-size:22.809776pt;}
.fs10_c00313{font-size:24.076800pt;}
.fs1_c00313{font-size:24.640000pt;}
.fs2d_c00313{font-size:25.168000pt;}
.fsf_c00313{font-size:26.048000pt;}
.fs22_c00313{font-size:27.984000pt;}
.fs11_c00313{font-size:28.160000pt;}
.fs23_c00313{font-size:28.512176pt;}
.fs2a_c00313{font-size:28.688000pt;}
.fs7_c00313{font-size:29.040000pt;}
.fs2c_c00313{font-size:29.920000pt;}
.fs2b_c00313{font-size:33.616000pt;}
.fs6_c00313{font-size:35.200000pt;}
.fse_c00313{font-size:35.552176pt;}
.fs1a_c00313{font-size:36.256000pt;}
.fs1c_c00313{font-size:36.608000pt;}
.fs12_c00313{font-size:36.748976pt;}
.fs21_c00313{font-size:37.136000pt;}
.fs17_c00313{font-size:38.192176pt;}
.fs20_c00313{font-size:38.368000pt;}
.fs14_c00313{font-size:39.283376pt;}
.fs24_c00313{font-size:39.600000pt;}
.fsd_c00313{font-size:40.550576pt;}
.fs4_c00313{font-size:42.944000pt;}
.fs5_c00313{font-size:44.352176pt;}
.fs9_c00313{font-size:44.704000pt;}
.fs19_c00313{font-size:45.056000pt;}
.fs0_c00313{font-size:45.619376pt;}
.fs1d_c00313{font-size:47.872176pt;}
.fs25_c00313{font-size:48.928000pt;}
.fs1f_c00313{font-size:49.420976pt;}
.fs18_c00313{font-size:50.864000pt;}
.fs13_c00313{font-size:51.392176pt;}
.fs16_c00313{font-size:52.800000pt;}
.fs27_c00313{font-size:56.320000pt;}
.fsc_c00313{font-size:57.200000pt;}
.fs15_c00313{font-size:58.256000pt;}
.fs26_c00313{font-size:59.664176pt;}
.fsa_c00313{font-size:60.544176pt;}
.fs8_c00313{font-size:63.008000pt;}
.fs3_c00313{font-size:67.584176pt;}
.fs1e_c00313{font-size:67.936000pt;}
.fs28_c00313{font-size:76.736000pt;}
.y0_c00313{bottom:0.000000pt;}
.y31_c00313{bottom:48.704520pt;}
.y1_c00313{bottom:68.000000pt;}
.y30_c00313{bottom:116.187320pt;}
.y2f_c00313{bottom:136.145720pt;}
.y2e_c00313{bottom:168.142520pt;}
.y2c_c00313{bottom:169.405320pt;}
.y2d_c00313{bottom:173.211320pt;}
.y2b_c00313{bottom:187.467320pt;}
.y2a_c00313{bottom:190.635320pt;}
.y29_c00313{bottom:197.604920pt;}
.y28_c00313{bottom:216.925320pt;}
.y27_c00313{bottom:220.097720pt;}
.y26_c00313{bottom:232.136120pt;}
.y25_c00313{bottom:237.834120pt;}
.y23_c00313{bottom:245.120520pt;}
.y22_c00313{bottom:250.193720pt;}
.y24_c00313{bottom:251.773320pt;}
.y21_c00313{bottom:259.064120pt;}
.y1f_c00313{bottom:268.246920pt;}
.y1d_c00313{bottom:273.953720pt;}
.y1c_c00313{bottom:274.904120pt;}
.y20_c00313{bottom:275.854520pt;}
.y1e_c00313{bottom:283.774520pt;}
.y1a_c00313{bottom:306.584120pt;}
.y18_c00313{bottom:309.114120pt;}
.y1b_c00313{bottom:311.648520pt;}
.y19_c00313{bottom:312.915720pt;}
.y15_c00313{bottom:327.488520pt;}
.y14_c00313{bottom:332.561720pt;}
.y17_c00313{bottom:334.141320pt;}
.y16_c00313{bottom:336.675720pt;}
.y13_c00313{bottom:447.243320pt;}
.y3_c00313{bottom:466.251320pt;}
.y12_c00313{bottom:476.067720pt;}
.y11_c00313{bottom:533.729720pt;}
.y10_c00313{bottom:563.187720pt;}
.yf_c00313{bottom:591.704120pt;}
.ye_c00313{bottom:620.849720pt;}
.yd_c00313{bottom:647.144120pt;}
.yc_c00313{bottom:649.995320pt;}
.yb_c00313{bottom:707.014920pt;}
.ya_c00313{bottom:735.848120pt;}
.y8_c00313{bottom:764.360120pt;}
.y9_c00313{bottom:766.890120pt;}
.y7_c00313{bottom:777.027720pt;}
.y6_c00313{bottom:793.505720pt;}
.y5_c00313{bottom:823.597320pt;}
.y4_c00313{bottom:967.424520pt;}
.y2_c00313{bottom:971.859720pt;}
.h1b_c00313{height:15.191311pt;}
.hc_c00313{height:15.891563pt;}
.h11_c00313{height:16.035149pt;}
.h2b_c00313{height:20.555391pt;}
.h4_c00313{height:20.559000pt;}
.h2a_c00313{height:21.107625pt;}
.h13_c00313{height:24.474818pt;}
.h3_c00313{height:25.698750pt;}
.h15_c00313{height:26.162728pt;}
.h2f_c00313{height:26.249438pt;}
.he_c00313{height:27.006684pt;}
.h10_c00313{height:27.167250pt;}
.h22_c00313{height:27.451102pt;}
.h23_c00313{height:27.983141pt;}
.h9_c00313{height:28.501172pt;}
.h2e_c00313{height:29.364844pt;}
.h12_c00313{height:29.370000pt;}
.h7_c00313{height:29.538549pt;}
.h2c_c00313{height:29.920688pt;}
.h2_c00313{height:30.382504pt;}
.h1f_c00313{height:32.914370pt;}
.h2d_c00313{height:33.878625pt;}
.h1a_c00313{height:35.583281pt;}
.h1c_c00313{height:35.928750pt;}
.h8_c00313{height:36.712500pt;}
.hf_c00313{height:37.079809pt;}
.h21_c00313{height:38.731688pt;}
.h24_c00313{height:38.865234pt;}
.h20_c00313{height:40.016625pt;}
.ha_c00313{height:43.874531pt;}
.h6_c00313{height:44.789250pt;}
.h19_c00313{height:46.992000pt;}
.h18_c00313{height:49.920234pt;}
.h1d_c00313{height:49.929184pt;}
.h26_c00313{height:51.030375pt;}
.h25_c00313{height:51.820313pt;}
.h14_c00313{height:53.600434pt;}
.h28_c00313{height:55.275000pt;}
.hd_c00313{height:56.138672pt;}
.hb_c00313{height:59.420798pt;}
.h16_c00313{height:60.759188pt;}
.h27_c00313{height:62.227871pt;}
.h5_c00313{height:66.330173pt;}
.h1e_c00313{height:70.855125pt;}
.h17_c00313{height:92.353113pt;}
.h29_c00313{height:95.257250pt;}
.h1_c00313{height:986.666667pt;}
.h0_c00313{height:1122.666667pt;}
.w1_c00313{width:694.666667pt;}
.w0_c00313{width:793.333333pt;}
.x2_c00313{left:-2.413880pt;}
.x0_c00313{left:0.000000pt;}
.x3_c00313{left:20.716920pt;}
.x5_c00313{left:28.218920pt;}
.x1_c00313{left:49.333333pt;}
.x40_c00313{left:75.162520pt;}
.x14_c00313{left:85.616920pt;}
.x59_c00313{left:86.567320pt;}
.x55_c00313{left:96.264920pt;}
.x15_c00313{left:115.633720pt;}
.x4_c00313{left:122.405320pt;}
.x41_c00313{left:125.216920pt;}
.x49_c00313{left:134.091720pt;}
.x7_c00313{left:135.147720pt;}
.x29_c00313{left:136.159720pt;}
.x42_c00313{left:144.717720pt;}
.x16_c00313{left:145.980520pt;}
.x4a_c00313{left:153.610120pt;}
.x43_c00313{left:154.798120pt;}
.x8_c00313{left:164.878520pt;}
.x71_c00313{left:166.400920pt;}
.x7d_c00313{left:174.241720pt;}
.x72_c00313{left:179.948520pt;}
.x37_c00313{left:184.124120pt;}
.x28_c00313{left:187.111720pt;}
.x9_c00313{left:194.596120pt;}
.x74_c00313{left:197.988520pt;}
.x44_c00313{left:203.149720pt;}
.x4b_c00313{left:213.463320pt;}
.x17_c00313{left:223.882520pt;}
.x2a_c00313{left:229.730120pt;}
.x50_c00313{left:233.245720pt;}
.x38_c00313{left:234.367720pt;}
.x75_c00313{left:235.683320pt;}
.x73_c00313{left:236.897720pt;}
.x5d_c00313{left:242.806920pt;}
.x2b_c00313{left:243.880520pt;}
.x39_c00313{left:253.362520pt;}
.x2c_c00313{left:262.078920pt;}
.x18_c00313{left:263.464920pt;}
.x4c_c00313{left:271.613720pt;}
.xa_c00313{left:273.021720pt;}
.x19_c00313{left:283.159320pt;}
.x2d_c00313{left:292.179320pt;}
.x3a_c00313{left:293.305720pt;}
.x64_c00313{left:299.496520pt;}
.x1a_c00313{left:302.497320pt;}
.x78_c00313{left:307.706920pt;}
.x65_c00313{left:309.695720pt;}
.xb_c00313{left:312.137720pt;}
.x1b_c00313{left:313.215720pt;}
.x45_c00313{left:321.690120pt;}
.x68_c00313{left:322.785720pt;}
.x2e_c00313{left:331.977320pt;}
.x79_c00313{left:332.932120pt;}
.xc_c00313{left:334.925320pt;}
.x2f_c00313{left:341.551720pt;}
.x30_c00313{left:345.494120pt;}
.x1c_c00313{left:351.271320pt;}
.x46_c00313{left:360.960120pt;}
.xd_c00313{left:361.980920pt;}
.x4d_c00313{left:366.358920pt;}
.x31_c00313{left:370.798520pt;}
.x51_c00313{left:371.832520pt;}
.x5e_c00313{left:373.676120pt;}
.x1d_c00313{left:380.597320pt;}
.x70_c00313{left:388.772520pt;}
.x1e_c00313{left:389.784520pt;}
.xe_c00313{left:390.822920pt;}
.x5f_c00313{left:392.116520pt;}
.x3b_c00313{left:400.837320pt;}
.x5a_c00313{left:410.512920pt;}
.x5c_c00313{left:411.423720pt;}
.x1f_c00313{left:413.544520pt;}
.x20_c00313{left:420.197320pt;}
.x32_c00313{left:430.541720pt;}
.x69_c00313{left:434.136520pt;}
.x66_c00313{left:436.358520pt;}
.xf_c00313{left:440.305320pt;}
.x67_c00313{left:445.572120pt;}
.x21_c00313{left:449.523320pt;}
.x6a_c00313{left:452.515320pt;}
.x6b_c00313{left:454.411720pt;}
.x22_c00313{left:458.525720pt;}
.x47_c00313{left:460.114120pt;}
.x33_c00313{left:469.244120pt;}
.x6c_c00313{left:474.713320pt;}
.x3c_c00313{left:479.258520pt;}
.x52_c00313{left:487.988120pt;}
.x23_c00313{left:489.426920pt;}
.x34_c00313{left:498.992520pt;}
.x35_c00313{left:508.954120pt;}
.x48_c00313{left:510.150920pt;}
.x24_c00313{left:519.162120pt;}
.x4e_c00313{left:520.926520pt;}
.x6_c00313{left:528.151320pt;}
.x10_c00313{left:529.590120pt;}
.x25_c00313{left:538.297720pt;}
.x53_c00313{left:548.004120pt;}
.x56_c00313{left:549.240520pt;}
.x76_c00313{left:551.770520pt;}
.x6e_c00313{left:553.570120pt;}
.x7c_c00313{left:555.976920pt;}
.x11_c00313{left:557.978920pt;}
.x7a_c00313{left:561.771720pt;}
.x6d_c00313{left:565.027720pt;}
.x5b_c00313{left:566.827320pt;}
.x12_c00313{left:567.755720pt;}
.x61_c00313{left:569.198920pt;}
.x7b_c00313{left:570.567320pt;}
.x63_c00313{left:573.365720pt;}
.x62_c00313{left:576.159720pt;}
.x6f_c00313{left:582.535320pt;}
.x26_c00313{left:586.807720pt;}
.x57_c00313{left:588.176120pt;}
.x77_c00313{left:593.627720pt;}
.x3d_c00313{left:596.016920pt;}
.x60_c00313{left:597.570120pt;}
.x13_c00313{left:607.892520pt;}
.x27_c00313{left:617.317320pt;}
.x4f_c00313{left:626.583720pt;}
.x3e_c00313{left:627.494520pt;}
.x58_c00313{left:636.664120pt;}
.x7f_c00313{left:640.615320pt;}
.x36_c00313{left:646.841320pt;}
.x7e_c00313{left:652.574520pt;}
.x54_c00313{left:656.327720pt;}
.x3f_c00313{left:676.286120pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f54e1a24ba68298bf84fe385.woff2')format("woff");}.ff1_c00314{font-family:ff1_c00314;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00314;src:url('chunks/assets/font_cacf39d70b4d7d7f5d865b5a.woff2')format("woff");}.ff2_c00314{font-family:ff2_c00314;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00314;src:url('chunks/assets/font_cee0171a84670dd1de34d645.woff2')format("woff");}.ff3_c00314{font-family:ff3_c00314;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00314;src:url('chunks/assets/font_a6485df39d6d9e029c333376.woff2')format("woff");}.ff4_c00314{font-family:ff4_c00314;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00314;src:url('chunks/assets/font_c0f1d06b76f0e476de235b5d.woff2')format("woff");}.ff5_c00314{font-family:ff5_c00314;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00314;src:url('chunks/assets/font_4e6c7dcb97965daa798fa22e.woff2')format("woff");}.ff6_c00314{font-family:ff6_c00314;line-height:0.666000;font-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_c00314{transform:matrix(0.056291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056291,0.000000,0.000000,0.250000,0,0);}
.m9e_c00314{transform:matrix(0.065790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065790,0.000000,0.000000,0.250000,0,0);}
.m74_c00314{transform:matrix(0.113487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113487,0.000000,0.000000,0.250000,0,0);}
.mb6_c00314{transform:matrix(0.113636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113636,0.000000,0.000000,0.250000,0,0);}
.mc3_c00314{transform:matrix(0.120244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120244,0.000000,0.000000,0.250000,0,0);}
.m1a_c00314{transform:matrix(0.125115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125115,0.000000,0.000000,0.250000,0,0);}
.m53_c00314{transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);}
.m6_c00314{transform:matrix(0.147158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147158,0.000000,0.000000,0.250000,0,0);}
.m20_c00314{transform:matrix(0.151259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151259,0.000000,0.000000,0.250000,0,0);}
.mb8_c00314{transform:matrix(0.153942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153942,0.000000,0.000000,0.250000,0,0);}
.m35_c00314{transform:matrix(0.164438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164438,0.000000,0.000000,0.250000,0,0);}
.mb_c00314{transform:matrix(0.165307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165307,0.000000,0.000000,0.250000,0,0);}
.m9d_c00314{transform:matrix(0.171992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171992,0.000000,0.000000,0.250000,0,0);}
.m37_c00314{transform:matrix(0.179387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179387,0.000000,0.000000,0.250000,0,0);}
.mca_c00314{transform:matrix(0.186441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186441,0.000000,0.000000,0.250000,0,0);}
.mbe_c00314{transform:matrix(0.186946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186946,0.000000,0.000000,0.250000,0,0);}
.me_c00314{transform:matrix(0.192866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192866,0.000000,0.000000,0.250000,0,0);}
.m51_c00314{transform:matrix(0.194336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194336,0.000000,0.000000,0.250000,0,0);}
.m69_c00314{transform:matrix(0.194424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194424,0.000000,0.000000,0.250000,0,0);}
.mb5_c00314{transform:matrix(0.194445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194445,0.000000,0.000000,0.250000,0,0);}
.m8f_c00314{transform:matrix(0.200010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200010,0.000000,0.000000,0.250000,0,0);}
.m33_c00314{transform:matrix(0.204775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204775,0.000000,0.000000,0.250000,0,0);}
.mb7_c00314{transform:matrix(0.212121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212121,0.000000,0.000000,0.250000,0,0);}
.m75_c00314{transform:matrix(0.212616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212616,0.000000,0.000000,0.250000,0,0);}
.m45_c00314{transform:matrix(0.218138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218138,0.000000,0.000000,0.250000,0,0);}
.ma1_c00314{transform:matrix(0.220477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220477,0.000000,0.000000,0.250000,0,0);}
.m98_c00314{transform:matrix(0.223868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223868,0.000000,0.000000,0.250000,0,0);}
.m5c_c00314{transform:matrix(0.228516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228516,0.000000,0.000000,0.250000,0,0);}
.m9_c00314{transform:matrix(0.229021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229021,0.000000,0.000000,0.250000,0,0);}
.m5d_c00314{transform:matrix(0.230469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230469,0.000000,0.000000,0.250000,0,0);}
.m23_c00314{transform:matrix(0.236899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236899,0.000000,0.000000,0.250000,0,0);}
.m5b_c00314{transform:matrix(0.236979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236979,0.000000,0.000000,0.250000,0,0);}
.m25_c00314{transform:matrix(0.244153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244153,0.000000,0.000000,0.250000,0,0);}
.m0_c00314{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m89_c00314{transform:matrix(0.251036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251036,0.000000,0.000000,0.250000,0,0);}
.m28_c00314{transform:matrix(0.255568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255568,0.000000,0.000000,0.250000,0,0);}
.mcc_c00314{transform:matrix(0.259218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259218,0.000000,0.000000,0.250000,0,0);}
.ma9_c00314{transform:matrix(0.259236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259236,0.000000,0.000000,0.250000,0,0);}
.mb4_c00314{transform:matrix(0.260026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260026,0.000000,0.000000,0.250000,0,0);}
.mb2_c00314{transform:matrix(0.261017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261017,0.000000,0.000000,0.250000,0,0);}
.m3b_c00314{transform:matrix(0.263499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263499,0.000000,0.000000,0.250000,0,0);}
.m2_c00314{transform:matrix(0.266029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266029,0.000000,0.000000,0.250000,0,0);}
.m40_c00314{transform:matrix(0.266381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266381,0.000000,0.000000,0.250000,0,0);}
.mc_c00314{transform:matrix(0.267485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267485,0.000000,0.000000,0.250000,0,0);}
.m6d_c00314{transform:matrix(0.267487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267487,0.000000,0.000000,0.250000,0,0);}
.m7_c00314{transform:matrix(0.267505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267505,0.000000,0.000000,0.250000,0,0);}
.m42_c00314{transform:matrix(0.269141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269141,0.000000,0.000000,0.250000,0,0);}
.m8_c00314{transform:matrix(0.270864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270864,0.000000,0.000000,0.250000,0,0);}
.m61_c00314{transform:matrix(0.273264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273264,0.000000,0.000000,0.250000,0,0);}
.ma5_c00314{transform:matrix(0.275004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275004,0.000000,0.000000,0.250000,0,0);}
.m46_c00314{transform:matrix(0.275530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275530,0.000000,0.000000,0.250000,0,0);}
.m5_c00314{transform:matrix(0.275733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275733,0.000000,0.000000,0.250000,0,0);}
.mc4_c00314{transform:matrix(0.277039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277039,0.000000,0.000000,0.250000,0,0);}
.m1c_c00314{transform:matrix(0.278345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278345,0.000000,0.000000,0.250000,0,0);}
.ma2_c00314{transform:matrix(0.279107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279107,0.000000,0.000000,0.250000,0,0);}
.ma4_c00314{transform:matrix(0.279461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279461,0.000000,0.000000,0.250000,0,0);}
.m73_c00314{transform:matrix(0.280972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280972,0.000000,0.000000,0.250000,0,0);}
.m41_c00314{transform:matrix(0.281055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281055,0.000000,0.000000,0.250000,0,0);}
.m32_c00314{transform:matrix(0.281496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281496,0.000000,0.000000,0.250000,0,0);}
.m7a_c00314{transform:matrix(0.282226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282226,0.000000,0.000000,0.250000,0,0);}
.m13_c00314{transform:matrix(0.282980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282980,0.000000,0.000000,0.250000,0,0);}
.mc7_c00314{transform:matrix(0.283901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283901,0.000000,0.000000,0.250000,0,0);}
.m1e_c00314{transform:matrix(0.284052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284052,0.000000,0.000000,0.250000,0,0);}
.m39_c00314{transform:matrix(0.284668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284668,0.000000,0.000000,0.250000,0,0);}
.m4a_c00314{transform:matrix(0.285470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285470,0.000000,0.000000,0.250000,0,0);}
.m7c_c00314{transform:matrix(0.285957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285957,0.000000,0.000000,0.250000,0,0);}
.m1f_c00314{transform:matrix(0.286311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286311,0.000000,0.000000,0.250000,0,0);}
.m80_c00314{transform:matrix(0.286593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286593,0.000000,0.000000,0.250000,0,0);}
.m76_c00314{transform:matrix(0.287317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287317,0.000000,0.000000,0.250000,0,0);}
.m6f_c00314{transform:matrix(0.287492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287492,0.000000,0.000000,0.250000,0,0);}
.m10_c00314{transform:matrix(0.288034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288034,0.000000,0.000000,0.250000,0,0);}
.m67_c00314{transform:matrix(0.288714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288714,0.000000,0.000000,0.250000,0,0);}
.md6_c00314{transform:matrix(0.289462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289462,0.000000,0.000000,0.250000,0,0);}
.m2e_c00314{transform:matrix(0.289849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289849,0.000000,0.000000,0.250000,0,0);}
.m84_c00314{transform:matrix(0.290296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290296,0.000000,0.000000,0.250000,0,0);}
.mac_c00314{transform:matrix(0.291182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291182,0.000000,0.000000,0.250000,0,0);}
.m65_c00314{transform:matrix(0.291216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291216,0.000000,0.000000,0.250000,0,0);}
.ma8_c00314{transform:matrix(0.291705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291705,0.000000,0.000000,0.250000,0,0);}
.m2b_c00314{transform:matrix(0.292295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292295,0.000000,0.000000,0.250000,0,0);}
.m83_c00314{transform:matrix(0.292300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292300,0.000000,0.000000,0.250000,0,0);}
.m9f_c00314{transform:matrix(0.292310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292310,0.000000,0.000000,0.250000,0,0);}
.m18_c00314{transform:matrix(0.292617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292617,0.000000,0.000000,0.250000,0,0);}
.m19_c00314{transform:matrix(0.293087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293087,0.000000,0.000000,0.250000,0,0);}
.m1_c00314{transform:matrix(0.293095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293095,0.000000,0.000000,0.250000,0,0);}
.m3_c00314{transform:matrix(0.294104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294104,0.000000,0.000000,0.250000,0,0);}
.m4c_c00314{transform:matrix(0.294795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294795,0.000000,0.000000,0.250000,0,0);}
.m7e_c00314{transform:matrix(0.294971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294971,0.000000,0.000000,0.250000,0,0);}
.m4e_c00314{transform:matrix(0.295144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295144,0.000000,0.000000,0.250000,0,0);}
.m5a_c00314{transform:matrix(0.295617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295617,0.000000,0.000000,0.250000,0,0);}
.m5e_c00314{transform:matrix(0.296324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296324,0.000000,0.000000,0.250000,0,0);}
.m7d_c00314{transform:matrix(0.296607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296607,0.000000,0.000000,0.250000,0,0);}
.mcb_c00314{transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);}
.m3e_c00314{transform:matrix(0.297084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297084,0.000000,0.000000,0.250000,0,0);}
.md1_c00314{transform:matrix(0.299295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299295,0.000000,0.000000,0.250000,0,0);}
.m50_c00314{transform:matrix(0.299483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299483,0.000000,0.000000,0.250000,0,0);}
.m9a_c00314{transform:matrix(0.299764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299764,0.000000,0.000000,0.250000,0,0);}
.m49_c00314{transform:matrix(0.299871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299871,0.000000,0.000000,0.250000,0,0);}
.m29_c00314{transform:matrix(0.301052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301052,0.000000,0.000000,0.250000,0,0);}
.m8b_c00314{transform:matrix(0.301658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301658,0.000000,0.000000,0.250000,0,0);}
.mc0_c00314{transform:matrix(0.302532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302532,0.000000,0.000000,0.250000,0,0);}
.m52_c00314{transform:matrix(0.302670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302670,0.000000,0.000000,0.250000,0,0);}
.md2_c00314{transform:matrix(0.303193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303193,0.000000,0.000000,0.250000,0,0);}
.mc1_c00314{transform:matrix(0.303195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303195,0.000000,0.000000,0.250000,0,0);}
.m2c_c00314{transform:matrix(0.303828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303828,0.000000,0.000000,0.250000,0,0);}
.m8e_c00314{transform:matrix(0.304033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304033,0.000000,0.000000,0.250000,0,0);}
.m60_c00314{transform:matrix(0.304362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304362,0.000000,0.000000,0.250000,0,0);}
.mbc_c00314{transform:matrix(0.304515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304515,0.000000,0.000000,0.250000,0,0);}
.mc6_c00314{transform:matrix(0.304696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304696,0.000000,0.000000,0.250000,0,0);}
.m22_c00314{transform:matrix(0.304736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304736,0.000000,0.000000,0.250000,0,0);}
.m8c_c00314{transform:matrix(0.305545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305545,0.000000,0.000000,0.250000,0,0);}
.m72_c00314{transform:matrix(0.305638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305638,0.000000,0.000000,0.250000,0,0);}
.m87_c00314{transform:matrix(0.305911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305911,0.000000,0.000000,0.250000,0,0);}
.m8d_c00314{transform:matrix(0.307282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307282,0.000000,0.000000,0.250000,0,0);}
.mc8_c00314{transform:matrix(0.307908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307908,0.000000,0.000000,0.250000,0,0);}
.m62_c00314{transform:matrix(0.309755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309755,0.000000,0.000000,0.250000,0,0);}
.m77_c00314{transform:matrix(0.309823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309823,0.000000,0.000000,0.250000,0,0);}
.ma7_c00314{transform:matrix(0.309938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309938,0.000000,0.000000,0.250000,0,0);}
.m17_c00314{transform:matrix(0.310175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310175,0.000000,0.000000,0.250000,0,0);}
.m34_c00314{transform:matrix(0.310281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310281,0.000000,0.000000,0.250000,0,0);}
.m2f_c00314{transform:matrix(0.310405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310405,0.000000,0.000000,0.250000,0,0);}
.m1d_c00314{transform:matrix(0.310648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310648,0.000000,0.000000,0.250000,0,0);}
.m2a_c00314{transform:matrix(0.311132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311132,0.000000,0.000000,0.250000,0,0);}
.m64_c00314{transform:matrix(0.311260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311260,0.000000,0.000000,0.250000,0,0);}
.m38_c00314{transform:matrix(0.312577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312577,0.000000,0.000000,0.250000,0,0);}
.mab_c00314{transform:matrix(0.313036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313036,0.000000,0.000000,0.250000,0,0);}
.m31_c00314{transform:matrix(0.313150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313150,0.000000,0.000000,0.250000,0,0);}
.m93_c00314{transform:matrix(0.313280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313280,0.000000,0.000000,0.250000,0,0);}
.ma3_c00314{transform:matrix(0.313801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313801,0.000000,0.000000,0.250000,0,0);}
.mcf_c00314{transform:matrix(0.314004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314004,0.000000,0.000000,0.250000,0,0);}
.mcd_c00314{transform:matrix(0.314784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314784,0.000000,0.000000,0.250000,0,0);}
.mb1_c00314{transform:matrix(0.315808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315808,0.000000,0.000000,0.250000,0,0);}
.m86_c00314{transform:matrix(0.316185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316185,0.000000,0.000000,0.250000,0,0);}
.md9_c00314{transform:matrix(0.317393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317393,0.000000,0.000000,0.250000,0,0);}
.maf_c00314{transform:matrix(0.319096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319096,0.000000,0.000000,0.250000,0,0);}
.m90_c00314{transform:matrix(0.319167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319167,0.000000,0.000000,0.250000,0,0);}
.m7b_c00314{transform:matrix(0.319207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319207,0.000000,0.000000,0.250000,0,0);}
.m5f_c00314{transform:matrix(0.319361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319361,0.000000,0.000000,0.250000,0,0);}
.m15_c00314{transform:matrix(0.319713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319713,0.000000,0.000000,0.250000,0,0);}
.m56_c00314{transform:matrix(0.320358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320358,0.000000,0.000000,0.250000,0,0);}
.m81_c00314{transform:matrix(0.320940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320940,0.000000,0.000000,0.250000,0,0);}
.mce_c00314{transform:matrix(0.321706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321706,0.000000,0.000000,0.250000,0,0);}
.m71_c00314{transform:matrix(0.322268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322268,0.000000,0.000000,0.250000,0,0);}
.ma6_c00314{transform:matrix(0.323128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323128,0.000000,0.000000,0.250000,0,0);}
.m27_c00314{transform:matrix(0.323757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323757,0.000000,0.000000,0.250000,0,0);}
.mb0_c00314{transform:matrix(0.324742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324742,0.000000,0.000000,0.250000,0,0);}
.m96_c00314{transform:matrix(0.324754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324754,0.000000,0.000000,0.250000,0,0);}
.m68_c00314{transform:matrix(0.325010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325010,0.000000,0.000000,0.250000,0,0);}
.m70_c00314{transform:matrix(0.325601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325601,0.000000,0.000000,0.250000,0,0);}
.m3a_c00314{transform:matrix(0.326328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326328,0.000000,0.000000,0.250000,0,0);}
.m36_c00314{transform:matrix(0.327755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327755,0.000000,0.000000,0.250000,0,0);}
.mc9_c00314{transform:matrix(0.328420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328420,0.000000,0.000000,0.250000,0,0);}
.m4f_c00314{transform:matrix(0.328570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328570,0.000000,0.000000,0.250000,0,0);}
.m3c_c00314{transform:matrix(0.329743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329743,0.000000,0.000000,0.250000,0,0);}
.md4_c00314{transform:matrix(0.330487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330487,0.000000,0.000000,0.250000,0,0);}
.mbf_c00314{transform:matrix(0.330776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330776,0.000000,0.000000,0.250000,0,0);}
.mbd_c00314{transform:matrix(0.331631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331631,0.000000,0.000000,0.250000,0,0);}
.m14_c00314{transform:matrix(0.332322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332322,0.000000,0.000000,0.250000,0,0);}
.mae_c00314{transform:matrix(0.332744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332744,0.000000,0.000000,0.250000,0,0);}
.m8a_c00314{transform:matrix(0.333767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333767,0.000000,0.000000,0.250000,0,0);}
.m16_c00314{transform:matrix(0.333942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333942,0.000000,0.000000,0.250000,0,0);}
.md7_c00314{transform:matrix(0.334192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334192,0.000000,0.000000,0.250000,0,0);}
.m99_c00314{transform:matrix(0.334334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334334,0.000000,0.000000,0.250000,0,0);}
.m85_c00314{transform:matrix(0.335266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335266,0.000000,0.000000,0.250000,0,0);}
.mc2_c00314{transform:matrix(0.336826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336826,0.000000,0.000000,0.250000,0,0);}
.m66_c00314{transform:matrix(0.336901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336901,0.000000,0.000000,0.250000,0,0);}
.mb9_c00314{transform:matrix(0.336947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336947,0.000000,0.000000,0.250000,0,0);}
.m63_c00314{transform:matrix(0.337090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337090,0.000000,0.000000,0.250000,0,0);}
.m57_c00314{transform:matrix(0.337211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337211,0.000000,0.000000,0.250000,0,0);}
.m43_c00314{transform:matrix(0.337918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337918,0.000000,0.000000,0.250000,0,0);}
.m79_c00314{transform:matrix(0.338403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338403,0.000000,0.000000,0.250000,0,0);}
.md3_c00314{transform:matrix(0.338738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338738,0.000000,0.000000,0.250000,0,0);}
.m48_c00314{transform:matrix(0.339411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339411,0.000000,0.000000,0.250000,0,0);}
.m3f_c00314{transform:matrix(0.341893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341893,0.000000,0.000000,0.250000,0,0);}
.m24_c00314{transform:matrix(0.344157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344157,0.000000,0.000000,0.250000,0,0);}
.mba_c00314{transform:matrix(0.344932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344932,0.000000,0.000000,0.250000,0,0);}
.maa_c00314{transform:matrix(0.345369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345369,0.000000,0.000000,0.250000,0,0);}
.m54_c00314{transform:matrix(0.346043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346043,0.000000,0.000000,0.250000,0,0);}
.m58_c00314{transform:matrix(0.346587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346587,0.000000,0.000000,0.250000,0,0);}
.m88_c00314{transform:matrix(0.346989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346989,0.000000,0.000000,0.250000,0,0);}
.m94_c00314{transform:matrix(0.350009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350009,0.000000,0.000000,0.250000,0,0);}
.m9b_c00314{transform:matrix(0.350135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350135,0.000000,0.000000,0.250000,0,0);}
.m12_c00314{transform:matrix(0.350628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350628,0.000000,0.000000,0.250000,0,0);}
.m95_c00314{transform:matrix(0.351063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351063,0.000000,0.000000,0.250000,0,0);}
.mc5_c00314{transform:matrix(0.353538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353538,0.000000,0.000000,0.250000,0,0);}
.m6a_c00314{transform:matrix(0.353727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353727,0.000000,0.000000,0.250000,0,0);}
.m11_c00314{transform:matrix(0.354053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354053,0.000000,0.000000,0.250000,0,0);}
.m7f_c00314{transform:matrix(0.357180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357180,0.000000,0.000000,0.250000,0,0);}
.m4_c00314{transform:matrix(0.357651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357651,0.000000,0.000000,0.250000,0,0);}
.m4d_c00314{transform:matrix(0.357892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357892,0.000000,0.000000,0.250000,0,0);}
.m9c_c00314{transform:matrix(0.360597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360597,0.000000,0.000000,0.250000,0,0);}
.m47_c00314{transform:matrix(0.360831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360831,0.000000,0.000000,0.250000,0,0);}
.m59_c00314{transform:matrix(0.361272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361272,0.000000,0.000000,0.250000,0,0);}
.mbb_c00314{transform:matrix(0.364277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364277,0.000000,0.000000,0.250000,0,0);}
.m6c_c00314{transform:matrix(0.364520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364520,0.000000,0.000000,0.250000,0,0);}
.m1b_c00314{transform:matrix(0.365721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365721,0.000000,0.000000,0.250000,0,0);}
.m91_c00314{transform:matrix(0.368114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368114,0.000000,0.000000,0.250000,0,0);}
.ma0_c00314{transform:matrix(0.369099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369099,0.000000,0.000000,0.250000,0,0);}
.m82_c00314{transform:matrix(0.370449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370449,0.000000,0.000000,0.250000,0,0);}
.m30_c00314{transform:matrix(0.373048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373048,0.000000,0.000000,0.250000,0,0);}
.m44_c00314{transform:matrix(0.374322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374322,0.000000,0.000000,0.250000,0,0);}
.md5_c00314{transform:matrix(0.375520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375520,0.000000,0.000000,0.250000,0,0);}
.mad_c00314{transform:matrix(0.376827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376827,0.000000,0.000000,0.250000,0,0);}
.m92_c00314{transform:matrix(0.379998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379998,0.000000,0.000000,0.250000,0,0);}
.ma_c00314{transform:matrix(0.381517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381517,0.000000,0.000000,0.250000,0,0);}
.m78_c00314{transform:matrix(0.381521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381521,0.000000,0.000000,0.250000,0,0);}
.mf_c00314{transform:matrix(0.382165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382165,0.000000,0.000000,0.250000,0,0);}
.m26_c00314{transform:matrix(0.383917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383917,0.000000,0.000000,0.250000,0,0);}
.m55_c00314{transform:matrix(0.389149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389149,0.000000,0.000000,0.250000,0,0);}
.md8_c00314{transform:matrix(0.395285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395285,0.000000,0.000000,0.250000,0,0);}
.md0_c00314{transform:matrix(0.401873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401873,0.000000,0.000000,0.250000,0,0);}
.m6e_c00314{transform:matrix(0.407016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407016,0.000000,0.000000,0.250000,0,0);}
.m97_c00314{transform:matrix(0.407946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407946,0.000000,0.000000,0.250000,0,0);}
.m6b_c00314{transform:matrix(0.409972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409972,0.000000,0.000000,0.250000,0,0);}
.m4b_c00314{transform:matrix(0.422091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422091,0.000000,0.000000,0.250000,0,0);}
.m3d_c00314{transform:matrix(0.438526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438526,0.000000,0.000000,0.250000,0,0);}
.md_c00314{transform:matrix(0.446086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446086,0.000000,0.000000,0.250000,0,0);}
.m2d_c00314{transform:matrix(0.454549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454549,0.000000,0.000000,0.250000,0,0);}
.m21_c00314{transform:matrix(0.455405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455405,0.000000,0.000000,0.250000,0,0);}
.v1_c00314{vertical-align:-7.124040px;}
.v0_c00314{vertical-align:0.000000px;}
.ls5_c00314{letter-spacing:-2.508667px;}
.lse_c00314{letter-spacing:-1.060808px;}
.lsc_c00314{letter-spacing:-0.164855px;}
.ls1_c00314{letter-spacing:0.000000px;}
.ls4_c00314{letter-spacing:0.379884px;}
.lsd_c00314{letter-spacing:0.917455px;}
.ls12_c00314{letter-spacing:1.612714px;}
.ls0_c00314{letter-spacing:1.734564px;}
.ls6_c00314{letter-spacing:2.257200px;}
.lsb_c00314{letter-spacing:2.515835px;}
.ls7_c00314{letter-spacing:3.227400px;}
.lsa_c00314{letter-spacing:3.465000px;}
.ls10_c00314{letter-spacing:3.564000px;}
.ls3_c00314{letter-spacing:3.583810px;}
.ls2_c00314{letter-spacing:3.613500px;}
.ls13_c00314{letter-spacing:3.643200px;}
.ls8_c00314{letter-spacing:29.937798px;}
.ls9_c00314{letter-spacing:45.619398px;}
.ls11_c00314{letter-spacing:47.044800px;}
.lsf_c00314{letter-spacing:54.172998px;}
.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;}
}
.ws2_c00314{word-spacing:-17.919050px;}
.ws0_c00314{word-spacing:-4.013785px;}
.ws3_c00314{word-spacing:-1.146943px;}
.ws4_c00314{word-spacing:0.000000px;}
.ws1_c00314{word-spacing:5.590623px;}
._0_c00314{margin-left:-12.543245px;}
._c_c00314{margin-left:-10.894059px;}
._12_c00314{margin-left:-6.308265px;}
._17_c00314{margin-left:-5.120365px;}
._d_c00314{margin-left:-3.881592px;}
._e_c00314{margin-left:-2.222495px;}
._15_c00314{width:2.938793px;}
._14_c00314{width:4.013719px;}
._b_c00314{width:5.734157px;}
._7_c00314{width:9.891981px;}
._8_c00314{width:12.472328px;}
._16_c00314{width:13.475198px;}
._1_c00314{width:14.693481px;}
._2_c00314{width:19.926090px;}
._3_c00314{width:21.932768px;}
._a_c00314{width:24.154955px;}
._5_c00314{width:25.588277px;}
._13_c00314{width:26.592137px;}
._6_c00314{width:31.218919px;}
._10_c00314{width:33.598023px;}
._11_c00314{width:36.339832px;}
._18_c00314{width:37.851919px;}
._f_c00314{width:39.437909px;}
._4_c00314{width:43.104501px;}
._19_c00314{width:45.887897px;}
._9_c00314{width:49.647207px;}
._1a_c00314{width:297.657360px;}
.fc0_c00314{color:transparent;}
.fs0_c00314{font-size:22.176000px;}
.fs12_c00314{font-size:27.720000px;}
.fs9_c00314{font-size:29.937798px;}
.fs5_c00314{font-size:32.472000px;}
.fs8_c00314{font-size:32.868000px;}
.fs3_c00314{font-size:45.144000px;}
.fsa_c00314{font-size:45.619398px;}
.fs10_c00314{font-size:47.044800px;}
.fse_c00314{font-size:54.172998px;}
.fsc_c00314{font-size:64.152198px;}
.fs4_c00314{font-size:64.548000px;}
.fs7_c00314{font-size:66.528000px;}
.fsb_c00314{font-size:69.300000px;}
.fsf_c00314{font-size:71.280000px;}
.fs2_c00314{font-size:71.676198px;}
.fs1_c00314{font-size:72.270000px;}
.fs11_c00314{font-size:72.864000px;}
.fs6_c00314{font-size:74.448000px;}
.fsd_c00314{font-size:74.844000px;}
.y0_c00314{bottom:0.000000px;}
.y26_c00314{bottom:24.726735px;}
.y25_c00314{bottom:55.728585px;}
.y1_c00314{bottom:72.000000px;}
.y24_c00314{bottom:177.265935px;}
.y23_c00314{bottom:211.480335px;}
.y22_c00314{bottom:241.056585px;}
.y21_c00314{bottom:273.845385px;}
.y20_c00314{bottom:305.213535px;}
.y1f_c00314{bottom:305.217495px;}
.y1a_c00314{bottom:338.348637px;}
.y1d_c00314{bottom:339.059556px;}
.y1e_c00314{bottom:339.066585px;}
.y1c_c00314{bottom:372.568185px;}
.y1b_c00314{bottom:389.323935px;}
.y2_c00314{bottom:408.920985px;}
.y19_c00314{bottom:439.214985px;}
.y18_c00314{bottom:472.003785px;}
.y17_c00314{bottom:504.436185px;}
.y16_c00314{bottom:536.868585px;}
.y15_c00314{bottom:569.300985px;}
.y14_c00314{bottom:600.312735px;}
.y13_c00314{bottom:602.807535px;}
.y12_c00314{bottom:634.878585px;}
.y11_c00314{bottom:654.124185px;}
.y10_c00314{bottom:661.969935px;}
.yf_c00314{bottom:672.305535px;}
.ye_c00314{bottom:685.130985px;}
.yd_c00314{bottom:698.674185px;}
.yc_c00314{bottom:732.180735px;}
.yb_c00314{bottom:760.336335px;}
.ya_c00314{bottom:765.320985px;}
.y8_c00314{bottom:798.823575px;}
.y9_c00314{bottom:798.827535px;}
.y7_c00314{bottom:830.898585px;}
.y6_c00314{bottom:863.330985px;}
.y5_c00314{bottom:896.119785px;}
.y4_c00314{bottom:929.626335px;}
.y3_c00314{bottom:1082.873385px;}
.hb_c00314{height:19.938573px;}
.h2_c00314{height:23.128875px;}
.h14_c00314{height:28.911094px;}
.hc_c00314{height:30.382519px;}
.h12_c00314{height:31.331837px;}
.h7_c00314{height:33.867281px;}
.ha_c00314{height:34.280297px;}
.h10_c00314{height:36.079217px;}
.h5_c00314{height:47.083781px;}
.he_c00314{height:66.908738px;}
.h6_c00314{height:67.321547px;}
.h9_c00314{height:69.386625px;}
.hd_c00314{height:69.841406px;}
.h11_c00314{height:69.957422px;}
.h4_c00314{height:70.346269px;}
.h13_c00314{height:71.512031px;}
.h3_c00314{height:72.834609px;}
.h8_c00314{height:73.066641px;}
.hf_c00314{height:78.059953px;}
.h1_c00314{height:1119.000000px;}
.h0_c00314{height:1263.000000px;}
.w1_c00314{width:796.500000px;}
.w0_c00314{width:892.500000px;}
.x0_c00314{left:0.000000px;}
.x1_c00314{left:48.000000px;}
.x2_c00314{left:65.822835px;}
.x4b_c00314{left:115.288185px;}
.x4_c00314{left:116.327685px;}
.x6f_c00314{left:117.390054px;}
.x36_c00314{left:127.079085px;}
.x3e_c00314{left:137.711685px;}
.x3f_c00314{left:147.829485px;}
.x25_c00314{left:149.398635px;}
.x5_c00314{left:159.610485px;}
.x26_c00314{left:170.861835px;}
.x18_c00314{left:181.697385px;}
.x2e_c00314{left:193.112085px;}
.x6_c00314{left:194.334735px;}
.x47_c00314{left:204.135735px;}
.x4f_c00314{left:205.343535px;}
.x19_c00314{left:214.996035px;}
.x65_c00314{left:216.070185px;}
.x7_c00314{left:226.955235px;}
.x27_c00314{left:237.761085px;}
.x58_c00314{left:238.889685px;}
.x48_c00314{left:247.997685px;}
.x5a_c00314{left:249.923235px;}
.x1a_c00314{left:252.452685px;}
.x2f_c00314{left:259.555935px;}
.x37_c00314{left:270.341985px;}
.x40_c00314{left:271.356735px;}
.x5b_c00314{left:273.401085px;}
.x73_c00314{left:275.366235px;}
.x38_c00314{left:278.831235px;}
.x1b_c00314{left:282.028935px;}
.x53_c00314{left:292.582335px;}
.x30_c00314{left:303.442635px;}
.x49_c00314{left:304.482135px;}
.x70_c00314{left:307.085835px;}
.x8_c00314{left:314.847435px;}
.x80_c00314{left:315.862185px;}
.x1c_c00314{left:325.331535px;}
.x50_c00314{left:327.306585px;}
.x74_c00314{left:332.642685px;}
.x9_c00314{left:342.770385px;}
.x41_c00314{left:347.517435px;}
.x28_c00314{left:348.779685px;}
.xa_c00314{left:359.550885px;}
.x66_c00314{left:369.223185px;}
.x1d_c00314{left:371.119035px;}
.xb_c00314{left:381.613035px;}
.x7d_c00314{left:383.048535px;}
.x75_c00314{left:387.384735px;}
.x5c_c00314{left:388.429185px;}
.xc_c00314{left:392.691135px;}
.x42_c00314{left:403.214835px;}
.x54_c00314{left:404.254335px;}
.x7e_c00314{left:408.303435px;}
.x7f_c00314{left:412.466385px;}
.x5d_c00314{left:415.683885px;}
.x62_c00314{left:425.663085px;}
.x43_c00314{left:434.993835px;}
.x1e_c00314{left:436.355085px;}
.x51_c00314{left:437.399535px;}
.x76_c00314{left:441.636735px;}
.x29_c00314{left:447.814335px;}
.x71_c00314{left:449.096385px;}
.x31_c00314{left:457.585635px;}
.x5e_c00314{left:458.679585px;}
.x2a_c00314{left:466.837185px;}
.x1f_c00314{left:469.307235px;}
.x5f_c00314{left:470.381385px;}
.x20_c00314{left:481.444635px;}
.x21_c00314{left:485.741235px;}
.xd_c00314{left:492.676185px;}
.x39_c00314{left:503.882985px;}
.xe_c00314{left:513.862185px;}
.x2b_c00314{left:515.089785px;}
.x77_c00314{left:524.890785px;}
.x59_c00314{left:526.088685px;}
.x68_c00314{left:535.582785px;}
.xf_c00314{left:536.825235px;}
.x81_c00314{left:538.305285px;}
.x79_c00314{left:545.334285px;}
.x3a_c00314{left:547.576635px;}
.x6c_c00314{left:550.615935px;}
.x22_c00314{left:558.263685px;}
.x6d_c00314{left:559.619985px;}
.x4a_c00314{left:568.544835px;}
.x10_c00314{left:569.787285px;}
.x11_c00314{left:580.360485px;}
.x69_c00314{left:581.716785px;}
.x32_c00314{left:582.756285px;}
.x55_c00314{left:588.542835px;}
.x57_c00314{left:590.933685px;}
.x6e_c00314{left:592.824585px;}
.x46_c00314{left:601.081185px;}
.x33_c00314{left:602.432535px;}
.x6a_c00314{left:603.872985px;}
.x3b_c00314{left:613.159185px;}
.x12_c00314{left:616.327185px;}
.x23_c00314{left:623.623485px;}
.x13_c00314{left:624.653085px;}
.x3c_c00314{left:635.161935px;}
.x6b_c00314{left:636.245985px;}
.x14_c00314{left:646.749885px;}
.x78_c00314{left:647.997285px;}
.x15_c00314{left:657.808185px;}
.x60_c00314{left:659.085285px;}
.x67_c00314{left:665.351985px;}
.x44_c00314{left:667.822035px;}
.x72_c00314{left:669.410985px;}
.x2c_c00314{left:680.132685px;}
.x82_c00314{left:687.003285px;}
.x16_c00314{left:690.473235px;}
.x3_c00314{left:691.948335px;}
.x45_c00314{left:701.155335px;}
.x63_c00314{left:702.194835px;}
.x7a_c00314{left:704.199585px;}
.x2d_c00314{left:711.297885px;}
.x34_c00314{left:712.535385px;}
.x56_c00314{left:714.000585px;}
.x4c_c00314{left:715.361835px;}
.x4d_c00314{left:716.886435px;}
.x4e_c00314{left:719.623785px;}
.x17_c00314{left:723.955035px;}
.x7b_c00314{left:725.118285px;}
.x24_c00314{left:733.082835px;}
.x3d_c00314{left:735.038085px;}
.x61_c00314{left:746.413185px;}
.x35_c00314{left:756.035985px;}
.x52_c00314{left:757.451685px;}
.x64_c00314{left:768.509985px;}
.x7c_c00314{left:771.192885px;}
@media print{
.v1_c00314{vertical-align:-6.332480pt;}
.v0_c00314{vertical-align:0.000000pt;}
.ls5_c00314{letter-spacing:-2.229926pt;}
.lse_c00314{letter-spacing:-0.942940pt;}
.lsc_c00314{letter-spacing:-0.146538pt;}
.ls1_c00314{letter-spacing:0.000000pt;}
.ls4_c00314{letter-spacing:0.337675pt;}
.lsd_c00314{letter-spacing:0.815516pt;}
.ls12_c00314{letter-spacing:1.433524pt;}
.ls0_c00314{letter-spacing:1.541835pt;}
.ls6_c00314{letter-spacing:2.006400pt;}
.lsb_c00314{letter-spacing:2.236297pt;}
.ls7_c00314{letter-spacing:2.868800pt;}
.lsa_c00314{letter-spacing:3.080000pt;}
.ls10_c00314{letter-spacing:3.168000pt;}
.ls3_c00314{letter-spacing:3.185609pt;}
.ls2_c00314{letter-spacing:3.212000pt;}
.ls13_c00314{letter-spacing:3.238400pt;}
.ls8_c00314{letter-spacing:26.611376pt;}
.ls9_c00314{letter-spacing:40.550576pt;}
.ls11_c00314{letter-spacing:41.817600pt;}
.lsf_c00314{letter-spacing:48.153776pt;}
.ws2_c00314{word-spacing:-15.928044pt;}
.ws0_c00314{word-spacing:-3.567808pt;}
.ws3_c00314{word-spacing:-1.019504pt;}
.ws4_c00314{word-spacing:0.000000pt;}
.ws1_c00314{word-spacing:4.969443pt;}
._0_c00314{margin-left:-11.149551pt;}
._c_c00314{margin-left:-9.683608pt;}
._12_c00314{margin-left:-5.607347pt;}
._17_c00314{margin-left:-4.551436pt;}
._d_c00314{margin-left:-3.450304pt;}
._e_c00314{margin-left:-1.975551pt;}
._15_c00314{width:2.612260pt;}
._14_c00314{width:3.567750pt;}
._b_c00314{width:5.097028pt;}
._7_c00314{width:8.792872pt;}
._8_c00314{width:11.086514pt;}
._16_c00314{width:11.977954pt;}
._1_c00314{width:13.060872pt;}
._2_c00314{width:17.712080pt;}
._3_c00314{width:19.495794pt;}
._a_c00314{width:21.471071pt;}
._5_c00314{width:22.745135pt;}
._13_c00314{width:23.637455pt;}
._6_c00314{width:27.750150pt;}
._10_c00314{width:29.864909pt;}
._11_c00314{width:32.302073pt;}
._18_c00314{width:33.646150pt;}
._f_c00314{width:35.055920pt;}
._4_c00314{width:38.315112pt;}
._19_c00314{width:40.789241pt;}
._9_c00314{width:44.130851pt;}
._1a_c00314{width:264.584320pt;}
.fs0_c00314{font-size:19.712000pt;}
.fs12_c00314{font-size:24.640000pt;}
.fs9_c00314{font-size:26.611376pt;}
.fs5_c00314{font-size:28.864000pt;}
.fs8_c00314{font-size:29.216000pt;}
.fs3_c00314{font-size:40.128000pt;}
.fsa_c00314{font-size:40.550576pt;}
.fs10_c00314{font-size:41.817600pt;}
.fse_c00314{font-size:48.153776pt;}
.fsc_c00314{font-size:57.024176pt;}
.fs4_c00314{font-size:57.376000pt;}
.fs7_c00314{font-size:59.136000pt;}
.fsb_c00314{font-size:61.600000pt;}
.fsf_c00314{font-size:63.360000pt;}
.fs2_c00314{font-size:63.712176pt;}
.fs1_c00314{font-size:64.240000pt;}
.fs11_c00314{font-size:64.768000pt;}
.fs6_c00314{font-size:66.176000pt;}
.fsd_c00314{font-size:66.528000pt;}
.y0_c00314{bottom:0.000000pt;}
.y26_c00314{bottom:21.979320pt;}
.y25_c00314{bottom:49.536520pt;}
.y1_c00314{bottom:64.000000pt;}
.y24_c00314{bottom:157.569720pt;}
.y23_c00314{bottom:187.982520pt;}
.y22_c00314{bottom:214.272520pt;}
.y21_c00314{bottom:243.418120pt;}
.y20_c00314{bottom:271.300920pt;}
.y1f_c00314{bottom:271.304440pt;}
.y1a_c00314{bottom:300.754344pt;}
.y1d_c00314{bottom:301.386272pt;}
.y1e_c00314{bottom:301.392520pt;}
.y1c_c00314{bottom:331.171720pt;}
.y1b_c00314{bottom:346.065720pt;}
.y2_c00314{bottom:363.485320pt;}
.y19_c00314{bottom:390.413320pt;}
.y18_c00314{bottom:419.558920pt;}
.y17_c00314{bottom:448.387720pt;}
.y16_c00314{bottom:477.216520pt;}
.y15_c00314{bottom:506.045320pt;}
.y14_c00314{bottom:533.611320pt;}
.y13_c00314{bottom:535.828920pt;}
.y12_c00314{bottom:564.336520pt;}
.y11_c00314{bottom:581.443720pt;}
.y10_c00314{bottom:588.417720pt;}
.yf_c00314{bottom:597.604920pt;}
.ye_c00314{bottom:609.005320pt;}
.yd_c00314{bottom:621.043720pt;}
.yc_c00314{bottom:650.827320pt;}
.yb_c00314{bottom:675.854520pt;}
.ya_c00314{bottom:680.285320pt;}
.y8_c00314{bottom:710.065400pt;}
.y9_c00314{bottom:710.068920pt;}
.y7_c00314{bottom:738.576520pt;}
.y6_c00314{bottom:767.405320pt;}
.y5_c00314{bottom:796.550920pt;}
.y4_c00314{bottom:826.334520pt;}
.y3_c00314{bottom:962.554120pt;}
.hb_c00314{height:17.723176pt;}
.h2_c00314{height:20.559000pt;}
.h14_c00314{height:25.698750pt;}
.hc_c00314{height:27.006684pt;}
.h12_c00314{height:27.850522pt;}
.h7_c00314{height:30.104250pt;}
.ha_c00314{height:30.471375pt;}
.h10_c00314{height:32.070415pt;}
.h5_c00314{height:41.852250pt;}
.he_c00314{height:59.474434pt;}
.h6_c00314{height:59.841375pt;}
.h9_c00314{height:61.677000pt;}
.hd_c00314{height:62.081250pt;}
.h11_c00314{height:62.184375pt;}
.h4_c00314{height:62.530016pt;}
.h13_c00314{height:63.566250pt;}
.h3_c00314{height:64.741875pt;}
.h8_c00314{height:64.948125pt;}
.hf_c00314{height:69.386625pt;}
.h1_c00314{height:994.666667pt;}
.h0_c00314{height:1122.666667pt;}
.w1_c00314{width:708.000000pt;}
.w0_c00314{width:793.333333pt;}
.x0_c00314{left:0.000000pt;}
.x1_c00314{left:42.666667pt;}
.x2_c00314{left:58.509187pt;}
.x4b_c00314{left:102.478387pt;}
.x4_c00314{left:103.402387pt;}
.x6f_c00314{left:104.346715pt;}
.x36_c00314{left:112.959187pt;}
.x3e_c00314{left:122.410387pt;}
.x3f_c00314{left:131.403987pt;}
.x25_c00314{left:132.798787pt;}
.x5_c00314{left:141.875987pt;}
.x26_c00314{left:151.877187pt;}
.x18_c00314{left:161.508787pt;}
.x2e_c00314{left:171.655187pt;}
.x6_c00314{left:172.741987pt;}
.x47_c00314{left:181.453987pt;}
.x4f_c00314{left:182.527587pt;}
.x19_c00314{left:191.107587pt;}
.x65_c00314{left:192.062387pt;}
.x7_c00314{left:201.737987pt;}
.x27_c00314{left:211.343187pt;}
.x58_c00314{left:212.346387pt;}
.x48_c00314{left:220.442387pt;}
.x5a_c00314{left:222.153987pt;}
.x1a_c00314{left:224.402387pt;}
.x2f_c00314{left:230.716387pt;}
.x37_c00314{left:240.303987pt;}
.x40_c00314{left:241.205987pt;}
.x5b_c00314{left:243.023187pt;}
.x73_c00314{left:244.769987pt;}
.x38_c00314{left:247.849987pt;}
.x1b_c00314{left:250.692387pt;}
.x53_c00314{left:260.073187pt;}
.x30_c00314{left:269.726787pt;}
.x49_c00314{left:270.650787pt;}
.x70_c00314{left:272.965187pt;}
.x8_c00314{left:279.864387pt;}
.x80_c00314{left:280.766387pt;}
.x1c_c00314{left:289.183587pt;}
.x50_c00314{left:290.939187pt;}
.x74_c00314{left:295.682387pt;}
.x9_c00314{left:304.684787pt;}
.x41_c00314{left:308.904387pt;}
.x28_c00314{left:310.026387pt;}
.xa_c00314{left:319.600787pt;}
.x66_c00314{left:328.198387pt;}
.x1d_c00314{left:329.883587pt;}
.xb_c00314{left:339.211587pt;}
.x7d_c00314{left:340.487587pt;}
.x75_c00314{left:344.341987pt;}
.x5c_c00314{left:345.270387pt;}
.xc_c00314{left:349.058787pt;}
.x42_c00314{left:358.413187pt;}
.x54_c00314{left:359.337187pt;}
.x7e_c00314{left:362.936387pt;}
.x7f_c00314{left:366.636787pt;}
.x5d_c00314{left:369.496787pt;}
.x62_c00314{left:378.367187pt;}
.x43_c00314{left:386.661187pt;}
.x1e_c00314{left:387.871187pt;}
.x51_c00314{left:388.799587pt;}
.x76_c00314{left:392.565987pt;}
.x29_c00314{left:398.057187pt;}
.x71_c00314{left:399.196787pt;}
.x31_c00314{left:406.742787pt;}
.x5e_c00314{left:407.715187pt;}
.x2a_c00314{left:414.966387pt;}
.x1f_c00314{left:417.161987pt;}
.x5f_c00314{left:418.116787pt;}
.x20_c00314{left:427.950787pt;}
.x21_c00314{left:431.769987pt;}
.xd_c00314{left:437.934387pt;}
.x39_c00314{left:447.895987pt;}
.xe_c00314{left:456.766387pt;}
.x2b_c00314{left:457.857587pt;}
.x77_c00314{left:466.569587pt;}
.x59_c00314{left:467.634387pt;}
.x68_c00314{left:476.073587pt;}
.xf_c00314{left:477.177987pt;}
.x81_c00314{left:478.493587pt;}
.x79_c00314{left:484.741587pt;}
.x3a_c00314{left:486.734787pt;}
.x6c_c00314{left:489.436387pt;}
.x22_c00314{left:496.234387pt;}
.x6d_c00314{left:497.439987pt;}
.x4a_c00314{left:505.373187pt;}
.x10_c00314{left:506.477587pt;}
.x11_c00314{left:515.875987pt;}
.x69_c00314{left:517.081587pt;}
.x32_c00314{left:518.005587pt;}
.x55_c00314{left:523.149187pt;}
.x57_c00314{left:525.274387pt;}
.x6e_c00314{left:526.955187pt;}
.x46_c00314{left:534.294387pt;}
.x33_c00314{left:535.495587pt;}
.x6a_c00314{left:536.775987pt;}
.x3b_c00314{left:545.030387pt;}
.x12_c00314{left:547.846387pt;}
.x23_c00314{left:554.331987pt;}
.x13_c00314{left:555.247187pt;}
.x3c_c00314{left:564.588387pt;}
.x6b_c00314{left:565.551987pt;}
.x14_c00314{left:574.888787pt;}
.x78_c00314{left:575.997587pt;}
.x15_c00314{left:584.718387pt;}
.x60_c00314{left:585.853587pt;}
.x67_c00314{left:591.423987pt;}
.x44_c00314{left:593.619587pt;}
.x72_c00314{left:595.031987pt;}
.x2c_c00314{left:604.562387pt;}
.x82_c00314{left:610.669587pt;}
.x16_c00314{left:613.753987pt;}
.x3_c00314{left:615.065187pt;}
.x45_c00314{left:623.249187pt;}
.x63_c00314{left:624.173187pt;}
.x7a_c00314{left:625.955187pt;}
.x2d_c00314{left:632.264787pt;}
.x34_c00314{left:633.364787pt;}
.x56_c00314{left:634.667187pt;}
.x4c_c00314{left:635.877187pt;}
.x4d_c00314{left:637.232387pt;}
.x4e_c00314{left:639.665587pt;}
.x17_c00314{left:643.515587pt;}
.x7b_c00314{left:644.549587pt;}
.x24_c00314{left:651.629187pt;}
.x3d_c00314{left:653.367187pt;}
.x61_c00314{left:663.478387pt;}
.x35_c00314{left:672.031987pt;}
.x52_c00314{left:673.290387pt;}
.x64_c00314{left:683.119987pt;}
.x7c_c00314{left:685.504787pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6c8f407c1fe478a957568d74.woff2')format("woff");}.ff1_c00315{font-family:ff1_c00315;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00315;src:url('chunks/assets/font_096b4d66dc0829eba26f0717.woff2')format("woff");}.ff2_c00315{font-family:ff2_c00315;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00315;src:url('chunks/assets/font_640b0a657e1e8f0357e69be0.woff2')format("woff");}.ff3_c00315{font-family:ff3_c00315;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00315;src:url('chunks/assets/font_615719d006e7e8883bb1739e.woff2')format("woff");}.ff4_c00315{font-family:ff4_c00315;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00315;src:url('chunks/assets/font_382fc9c91639edd7c065da4e.woff2')format("woff");}.ff5_c00315{font-family:ff5_c00315;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00315;src:url('chunks/assets/font_08cb79062079c858a4e5948b.woff2')format("woff");}.ff6_c00315{font-family:ff6_c00315;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m63_c00315{transform:matrix(0.017242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017242,0.000000,0.000000,0.250000,0,0);}
.m58_c00315{transform:matrix(0.035716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.035716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.035716,0.000000,0.000000,0.250000,0,0);}
.m5b_c00315{transform:matrix(0.049108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.049108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.049108,0.000000,0.000000,0.250000,0,0);}
.m83_c00315{transform:matrix(0.084144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084144,0.000000,0.000000,0.250000,0,0);}
.m64_c00315{transform:matrix(0.086208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086208,0.000000,0.000000,0.250000,0,0);}
.m5d_c00315{transform:matrix(0.105985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105985,0.000000,0.000000,0.250000,0,0);}
.m4_c00315{transform:matrix(0.110294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110294,0.000000,0.000000,0.250000,0,0);}
.m78_c00315{transform:matrix(0.111843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111843,0.000000,0.000000,0.250000,0,0);}
.m18_c00315{transform:matrix(0.112707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112707,0.000000,0.000000,0.250000,0,0);}
.m5c_c00315{transform:matrix(0.116073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116073,0.000000,0.000000,0.250000,0,0);}
.m77_c00315{transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);}
.m56_c00315{transform:matrix(0.141723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141723,0.000000,0.000000,0.250000,0,0);}
.m71_c00315{transform:matrix(0.146303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146303,0.000000,0.000000,0.250000,0,0);}
.m3b_c00315{transform:matrix(0.148648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148648,0.000000,0.000000,0.250000,0,0);}
.m79_c00315{transform:matrix(0.149123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149123,0.000000,0.000000,0.250000,0,0);}
.m67_c00315{transform:matrix(0.149557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149557,0.000000,0.000000,0.250000,0,0);}
.m61_c00315{transform:matrix(0.155173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155173,0.000000,0.000000,0.250000,0,0);}
.m34_c00315{transform:matrix(0.155406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155406,0.000000,0.000000,0.250000,0,0);}
.m50_c00315{transform:matrix(0.157790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157790,0.000000,0.000000,0.250000,0,0);}
.ma7_c00315{transform:matrix(0.159723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159723,0.000000,0.000000,0.250000,0,0);}
.m40_c00315{transform:matrix(0.160942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160942,0.000000,0.000000,0.250000,0,0);}
.m8_c00315{transform:matrix(0.161764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161764,0.000000,0.000000,0.250000,0,0);}
.m6_c00315{transform:matrix(0.169118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169118,0.000000,0.000000,0.250000,0,0);}
.m5a_c00315{transform:matrix(0.169643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169643,0.000000,0.000000,0.250000,0,0);}
.m7a_c00315{transform:matrix(0.171053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171053,0.000000,0.000000,0.250000,0,0);}
.m5f_c00315{transform:matrix(0.174090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174090,0.000000,0.000000,0.250000,0,0);}
.m68_c00315{transform:matrix(0.174284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174284,0.000000,0.000000,0.250000,0,0);}
.m57_c00315{transform:matrix(0.174785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174785,0.000000,0.000000,0.250000,0,0);}
.ma6_c00315{transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);}
.m6d_c00315{transform:matrix(0.187261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187261,0.000000,0.000000,0.250000,0,0);}
.ma5_c00315{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m35_c00315{transform:matrix(0.189188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189188,0.000000,0.000000,0.250000,0,0);}
.m3a_c00315{transform:matrix(0.189189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189189,0.000000,0.000000,0.250000,0,0);}
.m7_c00315{transform:matrix(0.191177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191177,0.000000,0.000000,0.250000,0,0);}
.m6c_c00315{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m39_c00315{transform:matrix(0.192568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192568,0.000000,0.000000,0.250000,0,0);}
.m70_c00315{transform:matrix(0.193943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193943,0.000000,0.000000,0.250000,0,0);}
.ma4_c00315{transform:matrix(0.194445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194445,0.000000,0.000000,0.250000,0,0);}
.m59_c00315{transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);}
.ma3_c00315{transform:matrix(0.196759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196759,0.000000,0.000000,0.250000,0,0);}
.m66_c00315{transform:matrix(0.197200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197200,0.000000,0.000000,0.250000,0,0);}
.m2a_c00315{transform:matrix(0.200010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200010,0.000000,0.000000,0.250000,0,0);}
.m74_c00315{transform:matrix(0.204936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204936,0.000000,0.000000,0.250000,0,0);}
.m5e_c00315{transform:matrix(0.205358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205358,0.000000,0.000000,0.250000,0,0);}
.m36_c00315{transform:matrix(0.206081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206081,0.000000,0.000000,0.250000,0,0);}
.m3c_c00315{transform:matrix(0.209460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209460,0.000000,0.000000,0.250000,0,0);}
.m6f_c00315{transform:matrix(0.210945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210945,0.000000,0.000000,0.250000,0,0);}
.m27_c00315{transform:matrix(0.214531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214531,0.000000,0.000000,0.250000,0,0);}
.m62_c00315{transform:matrix(0.214721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214721,0.000000,0.000000,0.250000,0,0);}
.m11_c00315{transform:matrix(0.215206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215206,0.000000,0.000000,0.250000,0,0);}
.m53_c00315{transform:matrix(0.216646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216646,0.000000,0.000000,0.250000,0,0);}
.m84_c00315{transform:matrix(0.218345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218345,0.000000,0.000000,0.250000,0,0);}
.me_c00315{transform:matrix(0.219325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219325,0.000000,0.000000,0.250000,0,0);}
.m54_c00315{transform:matrix(0.222314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222314,0.000000,0.000000,0.250000,0,0);}
.m29_c00315{transform:matrix(0.225387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225387,0.000000,0.000000,0.250000,0,0);}
.m37_c00315{transform:matrix(0.231982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231982,0.000000,0.000000,0.250000,0,0);}
.m6e_c00315{transform:matrix(0.233352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233352,0.000000,0.000000,0.250000,0,0);}
.m41_c00315{transform:matrix(0.237057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237057,0.000000,0.000000,0.250000,0,0);}
.m52_c00315{transform:matrix(0.237844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237844,0.000000,0.000000,0.250000,0,0);}
.m93_c00315{transform:matrix(0.241515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241515,0.000000,0.000000,0.250000,0,0);}
.m60_c00315{transform:matrix(0.246581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246581,0.000000,0.000000,0.250000,0,0);}
.m19_c00315{transform:matrix(0.246767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246767,0.000000,0.000000,0.250000,0,0);}
.m0_c00315{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2_c00315{transform:matrix(0.251878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251878,0.000000,0.000000,0.250000,0,0);}
.m51_c00315{transform:matrix(0.252364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252364,0.000000,0.000000,0.250000,0,0);}
.m1f_c00315{transform:matrix(0.252971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252971,0.000000,0.000000,0.250000,0,0);}
.m6a_c00315{transform:matrix(0.254817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254817,0.000000,0.000000,0.250000,0,0);}
.m1_c00315{transform:matrix(0.255584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255584,0.000000,0.000000,0.250000,0,0);}
.m10_c00315{transform:matrix(0.255959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255959,0.000000,0.000000,0.250000,0,0);}
.m9a_c00315{transform:matrix(0.259623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259623,0.000000,0.000000,0.250000,0,0);}
.m9_c00315{transform:matrix(0.262026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262026,0.000000,0.000000,0.250000,0,0);}
.m21_c00315{transform:matrix(0.265671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265671,0.000000,0.000000,0.250000,0,0);}
.m26_c00315{transform:matrix(0.265753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265753,0.000000,0.000000,0.250000,0,0);}
.m45_c00315{transform:matrix(0.266029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266029,0.000000,0.000000,0.250000,0,0);}
.mf_c00315{transform:matrix(0.268381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268381,0.000000,0.000000,0.250000,0,0);}
.m38_c00315{transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);}
.ma0_c00315{transform:matrix(0.271133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271133,0.000000,0.000000,0.250000,0,0);}
.m3d_c00315{transform:matrix(0.272576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272576,0.000000,0.000000,0.250000,0,0);}
.m76_c00315{transform:matrix(0.273693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273693,0.000000,0.000000,0.250000,0,0);}
.m97_c00315{transform:matrix(0.274485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274485,0.000000,0.000000,0.250000,0,0);}
.m43_c00315{transform:matrix(0.275889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275889,0.000000,0.000000,0.250000,0,0);}
.mc_c00315{transform:matrix(0.276072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276072,0.000000,0.000000,0.250000,0,0);}
.m55_c00315{transform:matrix(0.278058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278058,0.000000,0.000000,0.250000,0,0);}
.m16_c00315{transform:matrix(0.282005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282005,0.000000,0.000000,0.250000,0,0);}
.m3e_c00315{transform:matrix(0.282980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282980,0.000000,0.000000,0.250000,0,0);}
.m92_c00315{transform:matrix(0.284373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284373,0.000000,0.000000,0.250000,0,0);}
.m8f_c00315{transform:matrix(0.284935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284935,0.000000,0.000000,0.250000,0,0);}
.m7f_c00315{transform:matrix(0.286103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286103,0.000000,0.000000,0.250000,0,0);}
.m1c_c00315{transform:matrix(0.286107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286107,0.000000,0.000000,0.250000,0,0);}
.m65_c00315{transform:matrix(0.287060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287060,0.000000,0.000000,0.250000,0,0);}
.m30_c00315{transform:matrix(0.288034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288034,0.000000,0.000000,0.250000,0,0);}
.m87_c00315{transform:matrix(0.290296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290296,0.000000,0.000000,0.250000,0,0);}
.m7d_c00315{transform:matrix(0.290582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290582,0.000000,0.000000,0.250000,0,0);}
.m4d_c00315{transform:matrix(0.291216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291216,0.000000,0.000000,0.250000,0,0);}
.m48_c00315{transform:matrix(0.293087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293087,0.000000,0.000000,0.250000,0,0);}
.m4b_c00315{transform:matrix(0.293088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293088,0.000000,0.000000,0.250000,0,0);}
.m9f_c00315{transform:matrix(0.294795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294795,0.000000,0.000000,0.250000,0,0);}
.m8e_c00315{transform:matrix(0.295755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295755,0.000000,0.000000,0.250000,0,0);}
.m24_c00315{transform:matrix(0.298140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298140,0.000000,0.000000,0.250000,0,0);}
.m17_c00315{transform:matrix(0.298141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298141,0.000000,0.000000,0.250000,0,0);}
.m33_c00315{transform:matrix(0.299310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299310,0.000000,0.000000,0.250000,0,0);}
.m25_c00315{transform:matrix(0.299871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299871,0.000000,0.000000,0.250000,0,0);}
.ma1_c00315{transform:matrix(0.300949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300949,0.000000,0.000000,0.250000,0,0);}
.m82_c00315{transform:matrix(0.302585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302585,0.000000,0.000000,0.250000,0,0);}
.m2e_c00315{transform:matrix(0.303251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303251,0.000000,0.000000,0.250000,0,0);}
.m13_c00315{transform:matrix(0.305638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305638,0.000000,0.000000,0.250000,0,0);}
.md_c00315{transform:matrix(0.308295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308295,0.000000,0.000000,0.250000,0,0);}
.m31_c00315{transform:matrix(0.308364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308364,0.000000,0.000000,0.250000,0,0);}
.m81_c00315{transform:matrix(0.312928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312928,0.000000,0.000000,0.250000,0,0);}
.mb_c00315{transform:matrix(0.313403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313403,0.000000,0.000000,0.250000,0,0);}
.m32_c00315{transform:matrix(0.313655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313655,0.000000,0.000000,0.250000,0,0);}
.m73_c00315{transform:matrix(0.315510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315510,0.000000,0.000000,0.250000,0,0);}
.mab_c00315{transform:matrix(0.315627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315627,0.000000,0.000000,0.250000,0,0);}
.m7e_c00315{transform:matrix(0.315658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315658,0.000000,0.000000,0.250000,0,0);}
.m5_c00315{transform:matrix(0.316176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316176,0.000000,0.000000,0.250000,0,0);}
.m96_c00315{transform:matrix(0.323791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323791,0.000000,0.000000,0.250000,0,0);}
.m86_c00315{transform:matrix(0.323880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323880,0.000000,0.000000,0.250000,0,0);}
.m12_c00315{transform:matrix(0.323953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323953,0.000000,0.000000,0.250000,0,0);}
.m4a_c00315{transform:matrix(0.324650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324650,0.000000,0.000000,0.250000,0,0);}
.m9b_c00315{transform:matrix(0.324964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324964,0.000000,0.000000,0.250000,0,0);}
.m47_c00315{transform:matrix(0.325229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325229,0.000000,0.000000,0.250000,0,0);}
.mac_c00315{transform:matrix(0.330776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330776,0.000000,0.000000,0.250000,0,0);}
.m90_c00315{transform:matrix(0.330814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330814,0.000000,0.000000,0.250000,0,0);}
.m42_c00315{transform:matrix(0.331143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331143,0.000000,0.000000,0.250000,0,0);}
.m95_c00315{transform:matrix(0.331359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331359,0.000000,0.000000,0.250000,0,0);}
.m4f_c00315{transform:matrix(0.331631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331631,0.000000,0.000000,0.250000,0,0);}
.m1e_c00315{transform:matrix(0.331978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331978,0.000000,0.000000,0.250000,0,0);}
.m3_c00315{transform:matrix(0.332014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332014,0.000000,0.000000,0.250000,0,0);}
.m69_c00315{transform:matrix(0.333323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333323,0.000000,0.000000,0.250000,0,0);}
.m1b_c00315{transform:matrix(0.334334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334334,0.000000,0.000000,0.250000,0,0);}
.m89_c00315{transform:matrix(0.335597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335597,0.000000,0.000000,0.250000,0,0);}
.ma9_c00315{transform:matrix(0.335992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335992,0.000000,0.000000,0.250000,0,0);}
.m7c_c00315{transform:matrix(0.336340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336340,0.000000,0.000000,0.250000,0,0);}
.m44_c00315{transform:matrix(0.336634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336634,0.000000,0.000000,0.250000,0,0);}
.m49_c00315{transform:matrix(0.337661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337661,0.000000,0.000000,0.250000,0,0);}
.ma2_c00315{transform:matrix(0.339875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339875,0.000000,0.000000,0.250000,0,0);}
.m2d_c00315{transform:matrix(0.340692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340692,0.000000,0.000000,0.250000,0,0);}
.m99_c00315{transform:matrix(0.342851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342851,0.000000,0.000000,0.250000,0,0);}
.m4c_c00315{transform:matrix(0.343035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343035,0.000000,0.000000,0.250000,0,0);}
.ma8_c00315{transform:matrix(0.343226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343226,0.000000,0.000000,0.250000,0,0);}
.m8b_c00315{transform:matrix(0.343255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343255,0.000000,0.000000,0.250000,0,0);}
.m7b_c00315{transform:matrix(0.346793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346793,0.000000,0.000000,0.250000,0,0);}
.m9e_c00315{transform:matrix(0.348639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348639,0.000000,0.000000,0.250000,0,0);}
.m8a_c00315{transform:matrix(0.348846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348846,0.000000,0.000000,0.250000,0,0);}
.m9d_c00315{transform:matrix(0.351088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351088,0.000000,0.000000,0.250000,0,0);}
.m88_c00315{transform:matrix(0.351220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351220,0.000000,0.000000,0.250000,0,0);}
.m9c_c00315{transform:matrix(0.351265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351265,0.000000,0.000000,0.250000,0,0);}
.m2c_c00315{transform:matrix(0.352824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352824,0.000000,0.000000,0.250000,0,0);}
.m6b_c00315{transform:matrix(0.355501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355501,0.000000,0.000000,0.250000,0,0);}
.m1d_c00315{transform:matrix(0.356400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356400,0.000000,0.000000,0.250000,0,0);}
.m8c_c00315{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);}
.m14_c00315{transform:matrix(0.357768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357768,0.000000,0.000000,0.250000,0,0);}
.m1a_c00315{transform:matrix(0.357892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357892,0.000000,0.000000,0.250000,0,0);}
.m20_c00315{transform:matrix(0.361014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361014,0.000000,0.000000,0.250000,0,0);}
.m80_c00315{transform:matrix(0.361150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361150,0.000000,0.000000,0.250000,0,0);}
.maa_c00315{transform:matrix(0.361805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361805,0.000000,0.000000,0.250000,0,0);}
.m22_c00315{transform:matrix(0.362636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362636,0.000000,0.000000,0.250000,0,0);}
.m2f_c00315{transform:matrix(0.368568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368568,0.000000,0.000000,0.250000,0,0);}
.m3f_c00315{transform:matrix(0.369210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369210,0.000000,0.000000,0.250000,0,0);}
.m2b_c00315{transform:matrix(0.374322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374322,0.000000,0.000000,0.250000,0,0);}
.m91_c00315{transform:matrix(0.381521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381521,0.000000,0.000000,0.250000,0,0);}
.m4e_c00315{transform:matrix(0.388697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388697,0.000000,0.000000,0.250000,0,0);}
.m46_c00315{transform:matrix(0.390710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390710,0.000000,0.000000,0.250000,0,0);}
.m85_c00315{transform:matrix(0.395190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395190,0.000000,0.000000,0.250000,0,0);}
.m23_c00315{transform:matrix(0.395558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395558,0.000000,0.000000,0.250000,0,0);}
.m8d_c00315{transform:matrix(0.396012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396012,0.000000,0.000000,0.250000,0,0);}
.ma_c00315{transform:matrix(0.447926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447926,0.000000,0.000000,0.250000,0,0);}
.m94_c00315{transform:matrix(0.448304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448304,0.000000,0.000000,0.250000,0,0);}
.m28_c00315{transform:matrix(0.452240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452240,0.000000,0.000000,0.250000,0,0);}
.m15_c00315{transform:matrix(0.456063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456063,0.000000,0.000000,0.250000,0,0);}
.m98_c00315{transform:matrix(0.461208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461208,0.000000,0.000000,0.250000,0,0);}
.m72_c00315{transform:matrix(0.543416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543416,0.000000,0.000000,0.250000,0,0);}
.m75_c00315{transform:matrix(0.720639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720639,0.000000,0.000000,0.250000,0,0);}
.v3_c00315{vertical-align:-44.193600px;}
.v0_c00315{vertical-align:0.000000px;}
.v1_c00315{vertical-align:7.110180px;}
.v2_c00315{vertical-align:15.681600px;}
.lsd_c00315{letter-spacing:-2.785867px;}
.ls16_c00315{letter-spacing:-2.536380px;}
.ls7_c00315{letter-spacing:-2.508667px;}
.ls1d_c00315{letter-spacing:-2.494800px;}
.ls14_c00315{letter-spacing:-2.453227px;}
.ls1e_c00315{letter-spacing:-2.356200px;}
.ls17_c00315{letter-spacing:-2.293830px;}
.lsb_c00315{letter-spacing:-2.245327px;}
.ls12_c00315{letter-spacing:-2.231467px;}
.ls11_c00315{letter-spacing:-1.829520px;}
.ls1c_c00315{letter-spacing:-1.716660px;}
.ls22_c00315{letter-spacing:-1.607767px;}
.lsf_c00315{letter-spacing:-1.275120px;}
.ls1b_c00315{letter-spacing:-1.191967px;}
.ls8_c00315{letter-spacing:-1.118149px;}
.ls18_c00315{letter-spacing:-0.928620px;}
.ls3_c00315{letter-spacing:0.000000px;}
.ls23_c00315{letter-spacing:0.614434px;}
.ls20_c00315{letter-spacing:1.029600px;}
.lsa_c00315{letter-spacing:1.261501px;}
.ls1f_c00315{letter-spacing:1.302286px;}
.ls19_c00315{letter-spacing:1.326600px;}
.ls1a_c00315{letter-spacing:1.702810px;}
.lse_c00315{letter-spacing:2.118600px;}
.ls2_c00315{letter-spacing:2.229480px;}
.ls28_c00315{letter-spacing:2.233744px;}
.ls26_c00315{letter-spacing:2.277000px;}
.ls21_c00315{letter-spacing:2.296810px;}
.ls0_c00315{letter-spacing:3.132250px;}
.lsc_c00315{letter-spacing:3.207610px;}
.ls5_c00315{letter-spacing:3.583810px;}
.ls15_c00315{letter-spacing:3.623400px;}
.ls27_c00315{letter-spacing:3.762000px;}
.ls4_c00315{letter-spacing:4.306500px;}
.ls1_c00315{letter-spacing:4.444022px;}
.ls24_c00315{letter-spacing:31.363200px;}
.ls10_c00315{letter-spacing:39.916800px;}
.ls13_c00315{letter-spacing:41.342598px;}
.ls6_c00315{letter-spacing:48.470598px;}
.ls29_c00315{letter-spacing:51.321798px;}
.ls9_c00315{letter-spacing:52.747398px;}
.ls25_c00315{letter-spacing:54.172998px;}
.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:-21.051299px;}
.ws1_c00315{word-spacing:-17.919050px;}
.ws7_c00315{word-spacing:-17.820000px;}
.ws2_c00315{word-spacing:-4.013795px;}
.ws8_c00315{word-spacing:-3.583531px;}
.ws6_c00315{word-spacing:-2.938468px;}
.ws5_c00315{word-spacing:-1.290295px;}
.wsd_c00315{word-spacing:0.000000px;}
.wsc_c00315{word-spacing:1.146679px;}
.ws4_c00315{word-spacing:3.225503px;}
.ws3_c00315{word-spacing:3.744123px;}
.wsb_c00315{word-spacing:4.301237px;}
.ws9_c00315{word-spacing:4.586357px;}
.wsa_c00315{word-spacing:4.945539px;}
._24_c00315{margin-left:-19.938143px;}
._1a_c00315{margin-left:-18.090991px;}
._1e_c00315{margin-left:-12.030480px;}
._20_c00315{margin-left:-8.960138px;}
._c_c00315{margin-left:-7.884316px;}
._12_c00315{margin-left:-6.594742px;}
._1c_c00315{margin-left:-4.333214px;}
._1f_c00315{margin-left:-2.724480px;}
._1b_c00315{margin-left:-1.026575px;}
._6_c00315{width:1.784833px;}
._0_c00315{width:3.368871px;}
._b_c00315{width:4.443824px;}
._7_c00315{width:7.310468px;}
._19_c00315{width:8.313921px;}
._3_c00315{width:9.676370px;}
._15_c00315{width:11.468259px;}
._f_c00315{width:12.471734px;}
._5_c00315{width:14.406788px;}
._11_c00315{width:16.333466px;}
._1d_c00315{width:17.738820px;}
._1_c00315{width:18.994041px;}
._9_c00315{width:21.145146px;}
._10_c00315{width:22.864589px;}
._e_c00315{width:24.370357px;}
._13_c00315{width:26.305026px;}
._a_c00315{width:28.383839px;}
._21_c00315{width:31.505760px;}
._25_c00315{width:32.842507px;}
._8_c00315{width:34.835972px;}
._d_c00315{width:36.850445px;}
._2_c00315{width:38.615209px;}
._14_c00315{width:39.750315px;}
._18_c00315{width:41.497109px;}
._22_c00315{width:43.642645px;}
._4_c00315{width:47.572365px;}
._17_c00315{width:51.965193px;}
._16_c00315{width:54.552674px;}
._23_c00315{width:331.350228px;}
.fc0_c00315{color:transparent;}
.fs1d_c00315{font-size:20.592000px;}
.fs8_c00315{font-size:22.176000px;}
.fs7_c00315{font-size:22.572000px;}
.fs17_c00315{font-size:26.532000px;}
.fs0_c00315{font-size:27.720000px;}
.fs25_c00315{font-size:31.363200px;}
.fs22_c00315{font-size:32.274000px;}
.fs26_c00315{font-size:32.670000px;}
.fs18_c00315{font-size:34.056198px;}
.fs1c_c00315{font-size:34.452000px;}
.fs24_c00315{font-size:34.650000px;}
.fse_c00315{font-size:36.432000px;}
.fs1_c00315{font-size:38.808000px;}
.fsf_c00315{font-size:39.916800px;}
.fs12_c00315{font-size:41.342598px;}
.fsd_c00315{font-size:42.372000px;}
.fs28_c00315{font-size:45.540000px;}
.fs1e_c00315{font-size:45.936198px;}
.fs4_c00315{font-size:48.470598px;}
.fs2c_c00315{font-size:51.321798px;}
.fs10_c00315{font-size:52.272000px;}
.fs6_c00315{font-size:52.747398px;}
.fsb_c00315{font-size:53.658000px;}
.fs21_c00315{font-size:53.856198px;}
.fs27_c00315{font-size:54.172998px;}
.fs20_c00315{font-size:55.836198px;}
.fs19_c00315{font-size:57.222000px;}
.fsa_c00315{font-size:61.380000px;}
.fs1b_c00315{font-size:63.360000px;}
.fs11_c00315{font-size:63.756198px;}
.fs9_c00315{font-size:64.152198px;}
.fs2e_c00315{font-size:64.350000px;}
.fs2b_c00315{font-size:64.746198px;}
.fs16_c00315{font-size:65.538000px;}
.fs1a_c00315{font-size:67.320000px;}
.fs13_c00315{font-size:67.716198px;}
.fs23_c00315{font-size:68.112198px;}
.fs14_c00315{font-size:70.092198px;}
.fs2a_c00315{font-size:70.884000px;}
.fs5_c00315{font-size:71.280000px;}
.fs3_c00315{font-size:71.676198px;}
.fs15_c00315{font-size:72.468000px;}
.fs29_c00315{font-size:75.240000px;}
.fs2d_c00315{font-size:76.032198px;}
.fsc_c00315{font-size:79.596198px;}
.fs1f_c00315{font-size:85.338000px;}
.fs2_c00315{font-size:86.130000px;}
.y0_c00315{bottom:0.000000px;}
.y2a_c00315{bottom:40.937985px;}
.y29_c00315{bottom:58.052115px;}
.y1_c00315{bottom:72.000000px;}
.y2_c00315{bottom:87.631335px;}
.y28_c00315{bottom:127.899585px;}
.y27_c00315{bottom:142.873335px;}
.y26_c00315{bottom:166.039335px;}
.y25_c00315{bottom:173.880135px;}
.y24_c00315{bottom:174.592935px;}
.y23_c00315{bottom:212.014935px;}
.y22_c00315{bottom:245.516535px;}
.y21_c00315{bottom:279.018135px;}
.y20_c00315{bottom:312.158385px;}
.y1f_c00315{bottom:325.706535px;}
.y1e_c00315{bottom:337.462785px;}
.y1d_c00315{bottom:347.798385px;}
.y1b_c00315{bottom:377.379585px;}
.y1c_c00315{bottom:379.166535px;}
.y1a_c00315{bottom:411.593985px;}
.y17_c00315{bottom:432.626535px;}
.y18_c00315{bottom:441.892935px;}
.y16_c00315{bottom:443.669985px;}
.y19_c00315{bottom:444.031335px;}
.y10_c00315{bottom:538.115985px;}
.y13_c00315{bottom:571.266135px;}
.y12_c00315{bottom:608.331735px;}
.yf_c00315{bottom:614.746935px;}
.y14_c00315{bottom:635.418135px;}
.y11_c00315{bottom:635.769585px;}
.y15_c00315{bottom:641.120535px;}
.ye_c00315{bottom:699.921585px;}
.yd_c00315{bottom:717.741585px;}
.yc_c00315{bottom:732.353985px;}
.yb_c00315{bottom:759.440385px;}
.ya_c00315{bottom:796.505985px;}
.y9_c00315{bottom:829.294785px;}
.y8_c00315{bottom:853.891335px;}
.y7_c00315{bottom:861.727185px;}
.y6_c00315{bottom:894.159585px;}
.y5_c00315{bottom:926.948385px;}
.y4_c00315{bottom:1081.982385px;}
.y3_c00315{bottom:1115.127585px;}
.h23_c00315{height:20.887891px;}
.h1e_c00315{height:21.476813px;}
.ha_c00315{height:23.128875px;}
.h9_c00315{height:23.541891px;}
.h19_c00315{height:26.039707px;}
.h10_c00315{height:26.584589px;}
.h18_c00315{height:26.739281px;}
.h13_c00315{height:27.534170px;}
.h2_c00315{height:28.911094px;}
.h6_c00315{height:32.281418px;}
.h24_c00315{height:34.073789px;}
.h28_c00315{height:34.180317px;}
.h8_c00315{height:35.129767px;}
.h1a_c00315{height:35.519550px;}
.h25_c00315{height:36.079217px;}
.h22_c00315{height:36.138867px;}
.hf_c00315{height:37.997438px;}
.h3_c00315{height:40.475531px;}
.he_c00315{height:44.192672px;}
.h1f_c00315{height:45.083866px;}
.h26_c00315{height:47.496797px;}
.h11_c00315{height:54.518063px;}
.h1b_c00315{height:56.160264px;}
.h21_c00315{height:58.235410px;}
.hc_c00315{height:60.241113px;}
.h12_c00315{height:62.573222px;}
.hb_c00315{height:62.961874px;}
.h17_c00315{height:68.354086px;}
.h1c_c00315{height:69.922617px;}
.h1d_c00315{height:70.212656px;}
.h5_c00315{height:70.346269px;}
.h16_c00315{height:71.123379px;}
.h15_c00315{height:73.103972px;}
.h14_c00315{height:73.569925px;}
.h27_c00315{height:73.843945px;}
.h7_c00315{height:74.342813px;}
.hd_c00315{height:78.119315px;}
.h29_c00315{height:79.299207px;}
.h20_c00315{height:83.754580px;}
.h4_c00315{height:84.531885px;}
.h1_c00315{height:1119.000000px;}
.h0_c00315{height:1263.000000px;}
.w1_c00315{width:796.500000px;}
.w0_c00315{width:892.500000px;}
.x0_c00315{left:0.000000px;}
.x1_c00315{left:48.000000px;}
.x2_c00315{left:67.758285px;}
.x31_c00315{left:101.388585px;}
.x29_c00315{left:102.923085px;}
.x19_c00315{left:105.071385px;}
.x44_c00315{left:119.436285px;}
.x3a_c00315{left:134.122935px;}
.x1a_c00315{left:135.400035px;}
.x4a_c00315{left:144.097185px;}
.x82_c00315{left:145.730685px;}
.x5_c00315{left:156.571185px;}
.x70_c00315{left:161.956785px;}
.x4b_c00315{left:167.411685px;}
.x85_c00315{left:168.475935px;}
.x3b_c00315{left:179.068935px;}
.x51_c00315{left:181.831035px;}
.x6_c00315{left:189.934185px;}
.x52_c00315{left:196.062285px;}
.x3c_c00315{left:199.022385px;}
.x4c_c00315{left:200.344035px;}
.x89_c00315{left:203.799135px;}
.x71_c00315{left:210.268785px;}
.x45_c00315{left:211.659735px;}
.x32_c00315{left:213.110085px;}
.x72_c00315{left:215.768235px;}
.x3d_c00315{left:222.906135px;}
.x53_c00315{left:232.449735px;}
.x1b_c00315{left:234.499035px;}
.x79_c00315{left:238.800585px;}
.x33_c00315{left:243.512985px;}
.x1c_c00315{left:245.290035px;}
.x2a_c00315{left:247.433385px;}
.x57_c00315{left:255.358335px;}
.x56_c00315{left:256.937385px;}
.x6a_c00315{left:258.694635px;}
.x3e_c00315{left:262.105185px;}
.x7a_c00315{left:265.946385px;}
.x34_c00315{left:267.263085px;}
.x3f_c00315{left:278.148135px;}
.x2b_c00315{left:281.192385px;}
.x49_c00315{left:284.419785px;}
.x3_c00315{left:287.968935px;}
.x54_c00315{left:289.384635px;}
.x35_c00315{left:300.274635px;}
.x40_c00315{left:301.314135px;}
.x55_c00315{left:310.837935px;}
.x2c_c00315{left:311.842785px;}
.x60_c00315{left:314.520735px;}
.x83_c00315{left:321.802185px;}
.x1d_c00315{left:322.861485px;}
.x7b_c00315{left:325.034535px;}
.x7_c00315{left:333.701985px;}
.x86_c00315{left:342.963435px;}
.x41_c00315{left:344.958285px;}
.x1e_c00315{left:345.973035px;}
.x61_c00315{left:351.205185px;}
.x7c_c00315{left:354.383085px;}
.x8_c00315{left:356.372985px;}
.x73_c00315{left:365.936385px;}
.x2d_c00315{left:367.213485px;}
.x1f_c00315{left:369.807285px;}
.x9_c00315{left:377.935185px;}
.xa_c00315{left:383.281185px;}
.x20_c00315{left:389.117235px;}
.x46_c00315{left:398.566785px;}
.xb_c00315{left:401.462535px;}
.x5b_c00315{left:403.600935px;}
.x58_c00315{left:404.798835px;}
.x5c_c00315{left:406.452135px;}
.x4d_c00315{left:410.392335px;}
.xc_c00315{left:411.436785px;}
.x5d_c00315{left:413.575185px;}
.x6b_c00315{left:419.688435px;}
.x47_c00315{left:421.920885px;}
.xd_c00315{left:423.559335px;}
.x5e_c00315{left:426.766935px;}
.x59_c00315{left:432.974235px;}
.x2e_c00315{left:434.394885px;}
.x6d_c00315{left:437.538135px;}
.x5f_c00315{left:443.007885px;}
.xe_c00315{left:444.908685px;}
.x5a_c00315{left:446.596635px;}
.xf_c00315{left:456.491685px;}
.x36_c00315{left:465.248235px;}
.x21_c00315{left:477.885585px;}
.x6e_c00315{left:482.771235px;}
.x37_c00315{left:488.943885px;}
.x4e_c00315{left:490.414035px;}
.x74_c00315{left:499.205235px;}
.x10_c00315{left:500.254635px;}
.x84_c00315{left:509.179485px;}
.x22_c00315{left:512.099985px;}
.x80_c00315{left:520.663485px;}
.x11_c00315{left:522.306885px;}
.x75_c00315{left:528.687435px;}
.x8a_c00315{left:531.701985px;}
.x42_c00315{left:533.325585px;}
.x81_c00315{left:541.161435px;}
.x2f_c00315{left:542.587035px;}
.x6c_c00315{left:545.314485px;}
.x23_c00315{left:554.377935px;}
.x12_c00315{left:555.937185px;}
.x65_c00315{left:564.317535px;}
.x48_c00315{left:565.371885px;}
.x66_c00315{left:570.633735px;}
.x62_c00315{left:575.088735px;}
.x67_c00315{left:576.405435px;}
.x24_c00315{left:577.489485px;}
.x68_c00315{left:586.448985px;}
.x25_c00315{left:588.488385px;}
.x43_c00315{left:590.329785px;}
.x69_c00315{left:592.938435px;}
.x4f_c00315{left:597.804285px;}
.x13_c00315{left:599.774385px;}
.x76_c00315{left:608.679435px;}
.x26_c00315{left:610.510935px;}
.x38_c00315{left:611.530635px;}
.x63_c00315{left:619.653585px;}
.x14_c00315{left:621.480135px;}
.x7d_c00315{left:630.929685px;}
.x50_c00315{left:631.979085px;}
.x64_c00315{left:633.122535px;}
.x87_c00315{left:642.388935px;}
.x77_c00315{left:653.046285px;}
.x15_c00315{left:654.095685px;}
.x27_c00315{left:655.645035px;}
.x7e_c00315{left:663.921435px;}
.x78_c00315{left:675.301485px;}
.x16_c00315{left:676.796385px;}
.x4_c00315{left:678.113085px;}
.x8c_c00315{left:683.285835px;}
.x28_c00315{left:687.458685px;}
.x17_c00315{left:688.513035px;}
.x7f_c00315{left:697.729935px;}
.x30_c00315{left:708.273435px;}
.x18_c00315{left:710.070285px;}
.x8b_c00315{left:712.841295px;}
.x6f_c00315{left:717.059685px;}
.x39_c00315{left:720.574185px;}
.x88_c00315{left:730.196985px;}
@media print{
.v3_c00315{vertical-align:-39.283200pt;}
.v0_c00315{vertical-align:0.000000pt;}
.v1_c00315{vertical-align:6.320160pt;}
.v2_c00315{vertical-align:13.939200pt;}
.lsd_c00315{letter-spacing:-2.476326pt;}
.ls16_c00315{letter-spacing:-2.254560pt;}
.ls7_c00315{letter-spacing:-2.229926pt;}
.ls1d_c00315{letter-spacing:-2.217600pt;}
.ls14_c00315{letter-spacing:-2.180646pt;}
.ls1e_c00315{letter-spacing:-2.094400pt;}
.ls17_c00315{letter-spacing:-2.038960pt;}
.lsb_c00315{letter-spacing:-1.995846pt;}
.ls12_c00315{letter-spacing:-1.983526pt;}
.ls11_c00315{letter-spacing:-1.626240pt;}
.ls1c_c00315{letter-spacing:-1.525920pt;}
.ls22_c00315{letter-spacing:-1.429126pt;}
.lsf_c00315{letter-spacing:-1.133440pt;}
.ls1b_c00315{letter-spacing:-1.059526pt;}
.ls8_c00315{letter-spacing:-0.993910pt;}
.ls18_c00315{letter-spacing:-0.825440pt;}
.ls3_c00315{letter-spacing:0.000000pt;}
.ls23_c00315{letter-spacing:0.546163pt;}
.ls20_c00315{letter-spacing:0.915200pt;}
.lsa_c00315{letter-spacing:1.121334pt;}
.ls1f_c00315{letter-spacing:1.157587pt;}
.ls19_c00315{letter-spacing:1.179200pt;}
.ls1a_c00315{letter-spacing:1.513609pt;}
.lse_c00315{letter-spacing:1.883200pt;}
.ls2_c00315{letter-spacing:1.981760pt;}
.ls28_c00315{letter-spacing:1.985550pt;}
.ls26_c00315{letter-spacing:2.024000pt;}
.ls21_c00315{letter-spacing:2.041609pt;}
.ls0_c00315{letter-spacing:2.784222pt;}
.lsc_c00315{letter-spacing:2.851209pt;}
.ls5_c00315{letter-spacing:3.185609pt;}
.ls15_c00315{letter-spacing:3.220800pt;}
.ls27_c00315{letter-spacing:3.344000pt;}
.ls4_c00315{letter-spacing:3.828000pt;}
.ls1_c00315{letter-spacing:3.950242pt;}
.ls24_c00315{letter-spacing:27.878400pt;}
.ls10_c00315{letter-spacing:35.481600pt;}
.ls13_c00315{letter-spacing:36.748976pt;}
.ls6_c00315{letter-spacing:43.084976pt;}
.ls29_c00315{letter-spacing:45.619376pt;}
.ls9_c00315{letter-spacing:46.886576pt;}
.ls25_c00315{letter-spacing:48.153776pt;}
.ws0_c00315{word-spacing:-18.712266pt;}
.ws1_c00315{word-spacing:-15.928044pt;}
.ws7_c00315{word-spacing:-15.840000pt;}
.ws2_c00315{word-spacing:-3.567818pt;}
.ws8_c00315{word-spacing:-3.185360pt;}
.ws6_c00315{word-spacing:-2.611972pt;}
.ws5_c00315{word-spacing:-1.146928pt;}
.wsd_c00315{word-spacing:0.000000pt;}
.wsc_c00315{word-spacing:1.019270pt;}
.ws4_c00315{word-spacing:2.867113pt;}
.ws3_c00315{word-spacing:3.328110pt;}
.wsb_c00315{word-spacing:3.823321pt;}
.ws9_c00315{word-spacing:4.076761pt;}
.wsa_c00315{word-spacing:4.396035pt;}
._24_c00315{margin-left:-17.722794pt;}
._1a_c00315{margin-left:-16.080880pt;}
._1e_c00315{margin-left:-10.693760pt;}
._20_c00315{margin-left:-7.964567pt;}
._c_c00315{margin-left:-7.008281pt;}
._12_c00315{margin-left:-5.861993pt;}
._1c_c00315{margin-left:-3.851745pt;}
._1f_c00315{margin-left:-2.421760pt;}
._1b_c00315{margin-left:-0.912511pt;}
._6_c00315{width:1.586518pt;}
._0_c00315{width:2.994552pt;}
._b_c00315{width:3.950066pt;}
._7_c00315{width:6.498194pt;}
._19_c00315{width:7.390152pt;}
._3_c00315{width:8.601218pt;}
._15_c00315{width:10.194008pt;}
._f_c00315{width:11.085986pt;}
._5_c00315{width:12.806034pt;}
._11_c00315{width:14.518636pt;}
._1d_c00315{width:15.767840pt;}
._1_c00315{width:16.883592pt;}
._9_c00315{width:18.795685pt;}
._10_c00315{width:20.324079pt;}
._e_c00315{width:21.662540pt;}
._13_c00315{width:23.382245pt;}
._a_c00315{width:25.230079pt;}
._21_c00315{width:28.005120pt;}
._25_c00315{width:29.193340pt;}
._8_c00315{width:30.965308pt;}
._d_c00315{width:32.755952pt;}
._2_c00315{width:34.324630pt;}
._14_c00315{width:35.333613pt;}
._18_c00315{width:36.886320pt;}
._22_c00315{width:38.793462pt;}
._4_c00315{width:42.286547pt;}
._17_c00315{width:46.191283pt;}
._16_c00315{width:48.491265pt;}
._23_c00315{width:294.533536pt;}
.fs1d_c00315{font-size:18.304000pt;}
.fs8_c00315{font-size:19.712000pt;}
.fs7_c00315{font-size:20.064000pt;}
.fs17_c00315{font-size:23.584000pt;}
.fs0_c00315{font-size:24.640000pt;}
.fs25_c00315{font-size:27.878400pt;}
.fs22_c00315{font-size:28.688000pt;}
.fs26_c00315{font-size:29.040000pt;}
.fs18_c00315{font-size:30.272176pt;}
.fs1c_c00315{font-size:30.624000pt;}
.fs24_c00315{font-size:30.800000pt;}
.fse_c00315{font-size:32.384000pt;}
.fs1_c00315{font-size:34.496000pt;}
.fsf_c00315{font-size:35.481600pt;}
.fs12_c00315{font-size:36.748976pt;}
.fsd_c00315{font-size:37.664000pt;}
.fs28_c00315{font-size:40.480000pt;}
.fs1e_c00315{font-size:40.832176pt;}
.fs4_c00315{font-size:43.084976pt;}
.fs2c_c00315{font-size:45.619376pt;}
.fs10_c00315{font-size:46.464000pt;}
.fs6_c00315{font-size:46.886576pt;}
.fsb_c00315{font-size:47.696000pt;}
.fs21_c00315{font-size:47.872176pt;}
.fs27_c00315{font-size:48.153776pt;}
.fs20_c00315{font-size:49.632176pt;}
.fs19_c00315{font-size:50.864000pt;}
.fsa_c00315{font-size:54.560000pt;}
.fs1b_c00315{font-size:56.320000pt;}
.fs11_c00315{font-size:56.672176pt;}
.fs9_c00315{font-size:57.024176pt;}
.fs2e_c00315{font-size:57.200000pt;}
.fs2b_c00315{font-size:57.552176pt;}
.fs16_c00315{font-size:58.256000pt;}
.fs1a_c00315{font-size:59.840000pt;}
.fs13_c00315{font-size:60.192176pt;}
.fs23_c00315{font-size:60.544176pt;}
.fs14_c00315{font-size:62.304176pt;}
.fs2a_c00315{font-size:63.008000pt;}
.fs5_c00315{font-size:63.360000pt;}
.fs3_c00315{font-size:63.712176pt;}
.fs15_c00315{font-size:64.416000pt;}
.fs29_c00315{font-size:66.880000pt;}
.fs2d_c00315{font-size:67.584176pt;}
.fsc_c00315{font-size:70.752176pt;}
.fs1f_c00315{font-size:75.856000pt;}
.fs2_c00315{font-size:76.560000pt;}
.y0_c00315{bottom:0.000000pt;}
.y2a_c00315{bottom:36.389320pt;}
.y29_c00315{bottom:51.601880pt;}
.y1_c00315{bottom:64.000000pt;}
.y2_c00315{bottom:77.894520pt;}
.y28_c00315{bottom:113.688520pt;}
.y27_c00315{bottom:126.998520pt;}
.y26_c00315{bottom:147.590520pt;}
.y25_c00315{bottom:154.560120pt;}
.y24_c00315{bottom:155.193720pt;}
.y23_c00315{bottom:188.457720pt;}
.y22_c00315{bottom:218.236920pt;}
.y21_c00315{bottom:248.016120pt;}
.y20_c00315{bottom:277.474120pt;}
.y1f_c00315{bottom:289.516920pt;}
.y1e_c00315{bottom:299.966920pt;}
.y1d_c00315{bottom:309.154120pt;}
.y1b_c00315{bottom:335.448520pt;}
.y1c_c00315{bottom:337.036920pt;}
.y1a_c00315{bottom:365.861320pt;}
.y17_c00315{bottom:384.556920pt;}
.y18_c00315{bottom:392.793720pt;}
.y16_c00315{bottom:394.373320pt;}
.y19_c00315{bottom:394.694520pt;}
.y10_c00315{bottom:478.325320pt;}
.y13_c00315{bottom:507.792120pt;}
.y12_c00315{bottom:540.739320pt;}
.yf_c00315{bottom:546.441720pt;}
.y14_c00315{bottom:564.816120pt;}
.y11_c00315{bottom:565.128520pt;}
.y15_c00315{bottom:569.884920pt;}
.ye_c00315{bottom:622.152520pt;}
.yd_c00315{bottom:637.992520pt;}
.yc_c00315{bottom:650.981320pt;}
.yb_c00315{bottom:675.058120pt;}
.ya_c00315{bottom:708.005320pt;}
.y9_c00315{bottom:737.150920pt;}
.y8_c00315{bottom:759.014520pt;}
.y7_c00315{bottom:765.979720pt;}
.y6_c00315{bottom:794.808520pt;}
.y5_c00315{bottom:823.954120pt;}
.y4_c00315{bottom:961.762120pt;}
.y3_c00315{bottom:991.224520pt;}
.h23_c00315{height:18.567014pt;}
.h1e_c00315{height:19.090500pt;}
.ha_c00315{height:20.559000pt;}
.h9_c00315{height:20.926125pt;}
.h19_c00315{height:23.146406pt;}
.h10_c00315{height:23.630746pt;}
.h18_c00315{height:23.768250pt;}
.h13_c00315{height:24.474818pt;}
.h2_c00315{height:25.698750pt;}
.h6_c00315{height:28.694594pt;}
.h24_c00315{height:30.287813pt;}
.h28_c00315{height:30.382504pt;}
.h8_c00315{height:31.226460pt;}
.h1a_c00315{height:31.572934pt;}
.h25_c00315{height:32.070415pt;}
.h22_c00315{height:32.123438pt;}
.hf_c00315{height:33.775500pt;}
.h3_c00315{height:35.978250pt;}
.he_c00315{height:39.282375pt;}
.h1f_c00315{height:40.074548pt;}
.h26_c00315{height:42.219375pt;}
.h11_c00315{height:48.460500pt;}
.h1b_c00315{height:49.920234pt;}
.h21_c00315{height:51.764809pt;}
.hc_c00315{height:53.547656pt;}
.h12_c00315{height:55.620641pt;}
.hb_c00315{height:55.966110pt;}
.h17_c00315{height:60.759188pt;}
.h1c_c00315{height:62.153438pt;}
.h1d_c00315{height:62.411250pt;}
.h5_c00315{height:62.530016pt;}
.h16_c00315{height:63.220781pt;}
.h15_c00315{height:64.981309pt;}
.h14_c00315{height:65.395489pt;}
.h27_c00315{height:65.639063pt;}
.h7_c00315{height:66.082500pt;}
.hd_c00315{height:69.439391pt;}
.h29_c00315{height:70.488184pt;}
.h20_c00315{height:74.448516pt;}
.h4_c00315{height:75.139453pt;}
.h1_c00315{height:994.666667pt;}
.h0_c00315{height:1122.666667pt;}
.w1_c00315{width:708.000000pt;}
.w0_c00315{width:793.333333pt;}
.x0_c00315{left:0.000000pt;}
.x1_c00315{left:42.666667pt;}
.x2_c00315{left:60.229587pt;}
.x31_c00315{left:90.123187pt;}
.x29_c00315{left:91.487187pt;}
.x19_c00315{left:93.396787pt;}
.x44_c00315{left:106.165587pt;}
.x3a_c00315{left:119.220387pt;}
.x1a_c00315{left:120.355587pt;}
.x4a_c00315{left:128.086387pt;}
.x82_c00315{left:129.538387pt;}
.x5_c00315{left:139.174387pt;}
.x70_c00315{left:143.961587pt;}
.x4b_c00315{left:148.810387pt;}
.x85_c00315{left:149.756387pt;}
.x3b_c00315{left:159.172387pt;}
.x51_c00315{left:161.627587pt;}
.x6_c00315{left:168.830387pt;}
.x52_c00315{left:174.277587pt;}
.x3c_c00315{left:176.908787pt;}
.x4c_c00315{left:178.083587pt;}
.x89_c00315{left:181.154787pt;}
.x71_c00315{left:186.905587pt;}
.x45_c00315{left:188.141987pt;}
.x32_c00315{left:189.431187pt;}
.x72_c00315{left:191.793987pt;}
.x3d_c00315{left:198.138787pt;}
.x53_c00315{left:206.621987pt;}
.x1b_c00315{left:208.443587pt;}
.x79_c00315{left:212.267187pt;}
.x33_c00315{left:216.455987pt;}
.x1c_c00315{left:218.035587pt;}
.x2a_c00315{left:219.940787pt;}
.x57_c00315{left:226.985187pt;}
.x56_c00315{left:228.388787pt;}
.x6a_c00315{left:229.950787pt;}
.x3e_c00315{left:232.982387pt;}
.x7a_c00315{left:236.396787pt;}
.x34_c00315{left:237.567187pt;}
.x3f_c00315{left:247.242787pt;}
.x2b_c00315{left:249.948787pt;}
.x49_c00315{left:252.817587pt;}
.x3_c00315{left:255.972387pt;}
.x54_c00315{left:257.230787pt;}
.x35_c00315{left:266.910787pt;}
.x40_c00315{left:267.834787pt;}
.x55_c00315{left:276.300387pt;}
.x2c_c00315{left:277.193587pt;}
.x60_c00315{left:279.573987pt;}
.x83_c00315{left:286.046387pt;}
.x1d_c00315{left:286.987987pt;}
.x7b_c00315{left:288.919587pt;}
.x7_c00315{left:296.623987pt;}
.x86_c00315{left:304.856387pt;}
.x41_c00315{left:306.629587pt;}
.x1e_c00315{left:307.531587pt;}
.x61_c00315{left:312.182387pt;}
.x7c_c00315{left:315.007187pt;}
.x8_c00315{left:316.775987pt;}
.x73_c00315{left:325.276787pt;}
.x2d_c00315{left:326.411987pt;}
.x1f_c00315{left:328.717587pt;}
.x9_c00315{left:335.942387pt;}
.xa_c00315{left:340.694387pt;}
.x20_c00315{left:345.881987pt;}
.x46_c00315{left:354.281587pt;}
.xb_c00315{left:356.855587pt;}
.x5b_c00315{left:358.756387pt;}
.x58_c00315{left:359.821187pt;}
.x5c_c00315{left:361.290787pt;}
.x4d_c00315{left:364.793187pt;}
.xc_c00315{left:365.721587pt;}
.x5d_c00315{left:367.622387pt;}
.x6b_c00315{left:373.056387pt;}
.x47_c00315{left:375.040787pt;}
.xd_c00315{left:376.497187pt;}
.x5e_c00315{left:379.348387pt;}
.x59_c00315{left:384.865987pt;}
.x2e_c00315{left:386.128787pt;}
.x6d_c00315{left:388.922787pt;}
.x5f_c00315{left:393.784787pt;}
.xe_c00315{left:395.474387pt;}
.x5a_c00315{left:396.974787pt;}
.xf_c00315{left:405.770387pt;}
.x36_c00315{left:413.553987pt;}
.x21_c00315{left:424.787187pt;}
.x6e_c00315{left:429.129987pt;}
.x37_c00315{left:434.616787pt;}
.x4e_c00315{left:435.923587pt;}
.x74_c00315{left:443.737987pt;}
.x10_c00315{left:444.670787pt;}
.x84_c00315{left:452.603987pt;}
.x22_c00315{left:455.199987pt;}
.x80_c00315{left:462.811987pt;}
.x11_c00315{left:464.272787pt;}
.x75_c00315{left:469.944387pt;}
.x8a_c00315{left:472.623987pt;}
.x42_c00315{left:474.067187pt;}
.x81_c00315{left:481.032387pt;}
.x2f_c00315{left:482.299587pt;}
.x6c_c00315{left:484.723987pt;}
.x23_c00315{left:492.780387pt;}
.x12_c00315{left:494.166387pt;}
.x65_c00315{left:501.615587pt;}
.x48_c00315{left:502.552787pt;}
.x66_c00315{left:507.229987pt;}
.x62_c00315{left:511.189987pt;}
.x67_c00315{left:512.360387pt;}
.x24_c00315{left:513.323987pt;}
.x68_c00315{left:521.287987pt;}
.x25_c00315{left:523.100787pt;}
.x43_c00315{left:524.737587pt;}
.x69_c00315{left:527.056387pt;}
.x4f_c00315{left:531.381587pt;}
.x13_c00315{left:533.132787pt;}
.x76_c00315{left:541.048387pt;}
.x26_c00315{left:542.676387pt;}
.x38_c00315{left:543.582787pt;}
.x63_c00315{left:550.803187pt;}
.x14_c00315{left:552.426787pt;}
.x7d_c00315{left:560.826387pt;}
.x50_c00315{left:561.759187pt;}
.x64_c00315{left:562.775587pt;}
.x87_c00315{left:571.012387pt;}
.x77_c00315{left:580.485587pt;}
.x15_c00315{left:581.418387pt;}
.x27_c00315{left:582.795587pt;}
.x7e_c00315{left:590.152387pt;}
.x78_c00315{left:600.267987pt;}
.x16_c00315{left:601.596787pt;}
.x4_c00315{left:602.767187pt;}
.x8c_c00315{left:607.365187pt;}
.x28_c00315{left:611.074387pt;}
.x17_c00315{left:612.011587pt;}
.x7f_c00315{left:620.204387pt;}
.x30_c00315{left:629.576387pt;}
.x18_c00315{left:631.173587pt;}
.x8b_c00315{left:633.636707pt;}
.x6f_c00315{left:637.386387pt;}
.x39_c00315{left:640.510387pt;}
.x88_c00315{left:649.063987pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c390cfbb60078f606d5e2cfe.woff2')format("woff");}.ff1_c00316{font-family:ff1_c00316;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00316;src:url('chunks/assets/font_3a5aee0ecdf709123d253395.woff2')format("woff");}.ff2_c00316{font-family:ff2_c00316;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00316;src:url('chunks/assets/font_4c76eccfcc991d4c2fe4eec5.woff2')format("woff");}.ff3_c00316{font-family:ff3_c00316;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00316;src:url('chunks/assets/font_41ec1a8c53c4b83380e2d0d7.woff2')format("woff");}.ff4_c00316{font-family:ff4_c00316;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00316;src:url('chunks/assets/font_702b84aa5164a282565edeed.woff2')format("woff");}.ff5_c00316{font-family:ff5_c00316;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m85_c00316{transform:matrix(0.053573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053573,0.000000,0.000000,0.250000,0,0);}
.m9e_c00316{transform:matrix(0.054763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054763,0.000000,0.000000,0.250000,0,0);}
.m65_c00316{transform:matrix(0.057144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.057144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.057144,0.000000,0.000000,0.250000,0,0);}
.ma7_c00316{transform:matrix(0.078864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078864,0.000000,0.000000,0.250000,0,0);}
.ma2_c00316{transform:matrix(0.080357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080357,0.000000,0.000000,0.250000,0,0);}
.m7a_c00316{transform:matrix(0.095052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095052,0.000000,0.000000,0.250000,0,0);}
.m9c_c00316{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m35_c00316{transform:matrix(0.100130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100130,0.000000,0.000000,0.250000,0,0);}
.mb9_c00316{transform:matrix(0.105423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105423,0.000000,0.000000,0.250000,0,0);}
.m17_c00316{transform:matrix(0.107471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107471,0.000000,0.000000,0.250000,0,0);}
.mbb_c00316{transform:matrix(0.120615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120615,0.000000,0.000000,0.250000,0,0);}
.m4b_c00316{transform:matrix(0.135417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135417,0.000000,0.000000,0.250000,0,0);}
.m37_c00316{transform:matrix(0.139705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139705,0.000000,0.000000,0.250000,0,0);}
.mab_c00316{transform:matrix(0.141270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141270,0.000000,0.000000,0.250000,0,0);}
.m66_c00316{transform:matrix(0.142858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142858,0.000000,0.000000,0.250000,0,0);}
.m57_c00316{transform:matrix(0.159346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159346,0.000000,0.000000,0.250000,0,0);}
.mce_c00316{transform:matrix(0.161110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161110,0.000000,0.000000,0.250000,0,0);}
.mc8_c00316{transform:matrix(0.161388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161388,0.000000,0.000000,0.250000,0,0);}
.m9b_c00316{transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);}
.ma1_c00316{transform:matrix(0.171429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171429,0.000000,0.000000,0.250000,0,0);}
.mba_c00316{transform:matrix(0.180921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180921,0.000000,0.000000,0.250000,0,0);}
.m38_c00316{transform:matrix(0.183823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183823,0.000000,0.000000,0.250000,0,0);}
.m9d_c00316{transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);}
.m8a_c00316{transform:matrix(0.186123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186123,0.000000,0.000000,0.250000,0,0);}
.m8d_c00316{transform:matrix(0.186645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186645,0.000000,0.000000,0.250000,0,0);}
.m3e_c00316{transform:matrix(0.187926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187926,0.000000,0.000000,0.250000,0,0);}
.m36_c00316{transform:matrix(0.192372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192372,0.000000,0.000000,0.250000,0,0);}
.m9f_c00316{transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);}
.m7c_c00316{transform:matrix(0.192866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192866,0.000000,0.000000,0.250000,0,0);}
.m82_c00316{transform:matrix(0.192985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192985,0.000000,0.000000,0.250000,0,0);}
.m8e_c00316{transform:matrix(0.195956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195956,0.000000,0.000000,0.250000,0,0);}
.m84_c00316{transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);}
.m64_c00316{transform:matrix(0.199787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199787,0.000000,0.000000,0.250000,0,0);}
.ma4_c00316{transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);}
.m98_c00316{transform:matrix(0.200010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200010,0.000000,0.000000,0.250000,0,0);}
.m86_c00316{transform:matrix(0.200894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200894,0.000000,0.000000,0.250000,0,0);}
.m3b_c00316{transform:matrix(0.201902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201902,0.000000,0.000000,0.250000,0,0);}
.mbc_c00316{transform:matrix(0.202067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202067,0.000000,0.000000,0.250000,0,0);}
.ma3_c00316{transform:matrix(0.204762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204762,0.000000,0.000000,0.250000,0,0);}
.mbe_c00316{transform:matrix(0.208477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208477,0.000000,0.000000,0.250000,0,0);}
.m13_c00316{transform:matrix(0.210348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210348,0.000000,0.000000,0.250000,0,0);}
.ma8_c00316{transform:matrix(0.213249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213249,0.000000,0.000000,0.250000,0,0);}
.ma5_c00316{transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);}
.m50_c00316{transform:matrix(0.215206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215206,0.000000,0.000000,0.250000,0,0);}
.m40_c00316{transform:matrix(0.223999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223999,0.000000,0.000000,0.250000,0,0);}
.m14_c00316{transform:matrix(0.224181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224181,0.000000,0.000000,0.250000,0,0);}
.m4d_c00316{transform:matrix(0.226563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226563,0.000000,0.000000,0.250000,0,0);}
.m4c_c00316{transform:matrix(0.230469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230469,0.000000,0.000000,0.250000,0,0);}
.m49_c00316{transform:matrix(0.234374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234374,0.000000,0.000000,0.250000,0,0);}
.m30_c00316{transform:matrix(0.239852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239852,0.000000,0.000000,0.250000,0,0);}
.m4a_c00316{transform:matrix(0.242188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242188,0.000000,0.000000,0.250000,0,0);}
.m8c_c00316{transform:matrix(0.242287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242287,0.000000,0.000000,0.250000,0,0);}
.m95_c00316{transform:matrix(0.243231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243231,0.000000,0.000000,0.250000,0,0);}
.mca_c00316{transform:matrix(0.244680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244680,0.000000,0.000000,0.250000,0,0);}
.m90_c00316{transform:matrix(0.248383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248383,0.000000,0.000000,0.250000,0,0);}
.m39_c00316{transform:matrix(0.248902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248902,0.000000,0.000000,0.250000,0,0);}
.m0_c00316{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m83_c00316{transform:matrix(0.250001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250001,0.000000,0.000000,0.250000,0,0);}
.mb4_c00316{transform:matrix(0.250472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250472,0.000000,0.000000,0.250000,0,0);}
.m6c_c00316{transform:matrix(0.252599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252599,0.000000,0.000000,0.250000,0,0);}
.m10_c00316{transform:matrix(0.255123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255123,0.000000,0.000000,0.250000,0,0);}
.md6_c00316{transform:matrix(0.255637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255637,0.000000,0.000000,0.250000,0,0);}
.m6b_c00316{transform:matrix(0.256742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256742,0.000000,0.000000,0.250000,0,0);}
.mb6_c00316{transform:matrix(0.259211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259211,0.000000,0.000000,0.250000,0,0);}
.m88_c00316{transform:matrix(0.259621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259621,0.000000,0.000000,0.250000,0,0);}
.mdb_c00316{transform:matrix(0.260846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260846,0.000000,0.000000,0.250000,0,0);}
.m87_c00316{transform:matrix(0.263447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263447,0.000000,0.000000,0.250000,0,0);}
.ma0_c00316{transform:matrix(0.263697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263697,0.000000,0.000000,0.250000,0,0);}
.mcc_c00316{transform:matrix(0.267746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267746,0.000000,0.000000,0.250000,0,0);}
.md_c00316{transform:matrix(0.268944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268944,0.000000,0.000000,0.250000,0,0);}
.m7f_c00316{transform:matrix(0.270049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270049,0.000000,0.000000,0.250000,0,0);}
.m54_c00316{transform:matrix(0.270780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270780,0.000000,0.000000,0.250000,0,0);}
.md8_c00316{transform:matrix(0.272157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272157,0.000000,0.000000,0.250000,0,0);}
.m5b_c00316{transform:matrix(0.272262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272262,0.000000,0.000000,0.250000,0,0);}
.m9_c00316{transform:matrix(0.273520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273520,0.000000,0.000000,0.250000,0,0);}
.m8b_c00316{transform:matrix(0.275789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275789,0.000000,0.000000,0.250000,0,0);}
.m77_c00316{transform:matrix(0.278079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278079,0.000000,0.000000,0.250000,0,0);}
.m1b_c00316{transform:matrix(0.281085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281085,0.000000,0.000000,0.250000,0,0);}
.m44_c00316{transform:matrix(0.281184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281184,0.000000,0.000000,0.250000,0,0);}
.m16_c00316{transform:matrix(0.281965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281965,0.000000,0.000000,0.250000,0,0);}
.m1a_c00316{transform:matrix(0.282898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282898,0.000000,0.000000,0.250000,0,0);}
.m1f_c00316{transform:matrix(0.282980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282980,0.000000,0.000000,0.250000,0,0);}
.maa_c00316{transform:matrix(0.282981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282981,0.000000,0.000000,0.250000,0,0);}
.md1_c00316{transform:matrix(0.283362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283362,0.000000,0.000000,0.250000,0,0);}
.m2a_c00316{transform:matrix(0.283572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283572,0.000000,0.000000,0.250000,0,0);}
.m89_c00316{transform:matrix(0.283589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283589,0.000000,0.000000,0.250000,0,0);}
.m24_c00316{transform:matrix(0.283607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283607,0.000000,0.000000,0.250000,0,0);}
.m58_c00316{transform:matrix(0.284935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284935,0.000000,0.000000,0.250000,0,0);}
.m70_c00316{transform:matrix(0.285407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285407,0.000000,0.000000,0.250000,0,0);}
.m99_c00316{transform:matrix(0.285470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285470,0.000000,0.000000,0.250000,0,0);}
.m73_c00316{transform:matrix(0.286103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286103,0.000000,0.000000,0.250000,0,0);}
.m46_c00316{transform:matrix(0.286107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286107,0.000000,0.000000,0.250000,0,0);}
.me_c00316{transform:matrix(0.286195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286195,0.000000,0.000000,0.250000,0,0);}
.m81_c00316{transform:matrix(0.286458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286458,0.000000,0.000000,0.250000,0,0);}
.m5e_c00316{transform:matrix(0.287317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287317,0.000000,0.000000,0.250000,0,0);}
.mc2_c00316{transform:matrix(0.287916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287916,0.000000,0.000000,0.250000,0,0);}
.m28_c00316{transform:matrix(0.288034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288034,0.000000,0.000000,0.250000,0,0);}
.m71_c00316{transform:matrix(0.288601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288601,0.000000,0.000000,0.250000,0,0);}
.m5_c00316{transform:matrix(0.288714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288714,0.000000,0.000000,0.250000,0,0);}
.m5a_c00316{transform:matrix(0.290582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290582,0.000000,0.000000,0.250000,0,0);}
.m2e_c00316{transform:matrix(0.291216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291216,0.000000,0.000000,0.250000,0,0);}
.m60_c00316{transform:matrix(0.291729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291729,0.000000,0.000000,0.250000,0,0);}
.m47_c00316{transform:matrix(0.291825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291825,0.000000,0.000000,0.250000,0,0);}
.m67_c00316{transform:matrix(0.292234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292234,0.000000,0.000000,0.250000,0,0);}
.mc7_c00316{transform:matrix(0.293087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293087,0.000000,0.000000,0.250000,0,0);}
.mc5_c00316{transform:matrix(0.293847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293847,0.000000,0.000000,0.250000,0,0);}
.m5f_c00316{transform:matrix(0.295097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295097,0.000000,0.000000,0.250000,0,0);}
.m92_c00316{transform:matrix(0.295617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295617,0.000000,0.000000,0.250000,0,0);}
.m1c_c00316{transform:matrix(0.295832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295832,0.000000,0.000000,0.250000,0,0);}
.m59_c00316{transform:matrix(0.296324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296324,0.000000,0.000000,0.250000,0,0);}
.mc6_c00316{transform:matrix(0.296876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296876,0.000000,0.000000,0.250000,0,0);}
.ma_c00316{transform:matrix(0.296963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296963,0.000000,0.000000,0.250000,0,0);}
.m43_c00316{transform:matrix(0.297507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297507,0.000000,0.000000,0.250000,0,0);}
.m56_c00316{transform:matrix(0.298010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298010,0.000000,0.000000,0.250000,0,0);}
.mbf_c00316{transform:matrix(0.299622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299622,0.000000,0.000000,0.250000,0,0);}
.m19_c00316{transform:matrix(0.299871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299871,0.000000,0.000000,0.250000,0,0);}
.ma6_c00316{transform:matrix(0.302762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302762,0.000000,0.000000,0.250000,0,0);}
.m75_c00316{transform:matrix(0.303336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303336,0.000000,0.000000,0.250000,0,0);}
.mbd_c00316{transform:matrix(0.303417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303417,0.000000,0.000000,0.250000,0,0);}
.m52_c00316{transform:matrix(0.304065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304065,0.000000,0.000000,0.250000,0,0);}
.m3a_c00316{transform:matrix(0.304454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304454,0.000000,0.000000,0.250000,0,0);}
.m41_c00316{transform:matrix(0.304736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304736,0.000000,0.000000,0.250000,0,0);}
.mde_c00316{transform:matrix(0.304871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304871,0.000000,0.000000,0.250000,0,0);}
.md4_c00316{transform:matrix(0.305638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305638,0.000000,0.000000,0.250000,0,0);}
.mad_c00316{transform:matrix(0.306260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306260,0.000000,0.000000,0.250000,0,0);}
.m1e_c00316{transform:matrix(0.307213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307213,0.000000,0.000000,0.250000,0,0);}
.m97_c00316{transform:matrix(0.307272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307272,0.000000,0.000000,0.250000,0,0);}
.m62_c00316{transform:matrix(0.308295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308295,0.000000,0.000000,0.250000,0,0);}
.md0_c00316{transform:matrix(0.309269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309269,0.000000,0.000000,0.250000,0,0);}
.m1_c00316{transform:matrix(0.310891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310891,0.000000,0.000000,0.250000,0,0);}
.m69_c00316{transform:matrix(0.311405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311405,0.000000,0.000000,0.250000,0,0);}
.m7e_c00316{transform:matrix(0.312335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312335,0.000000,0.000000,0.250000,0,0);}
.mc9_c00316{transform:matrix(0.313015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313015,0.000000,0.000000,0.250000,0,0);}
.m42_c00316{transform:matrix(0.313280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313280,0.000000,0.000000,0.250000,0,0);}
.mdd_c00316{transform:matrix(0.313582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313582,0.000000,0.000000,0.250000,0,0);}
.m94_c00316{transform:matrix(0.313683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313683,0.000000,0.000000,0.250000,0,0);}
.m45_c00316{transform:matrix(0.314453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314453,0.000000,0.000000,0.250000,0,0);}
.m2f_c00316{transform:matrix(0.317757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317757,0.000000,0.000000,0.250000,0,0);}
.m18_c00316{transform:matrix(0.318623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318623,0.000000,0.000000,0.250000,0,0);}
.mb2_c00316{transform:matrix(0.318910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318910,0.000000,0.000000,0.250000,0,0);}
.m2c_c00316{transform:matrix(0.319207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319207,0.000000,0.000000,0.250000,0,0);}
.m6_c00316{transform:matrix(0.319946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319946,0.000000,0.000000,0.250000,0,0);}
.mf_c00316{transform:matrix(0.320141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320141,0.000000,0.000000,0.250000,0,0);}
.m4_c00316{transform:matrix(0.320468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320468,0.000000,0.000000,0.250000,0,0);}
.m26_c00316{transform:matrix(0.321253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321253,0.000000,0.000000,0.250000,0,0);}
.m3_c00316{transform:matrix(0.321709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321709,0.000000,0.000000,0.250000,0,0);}
.m79_c00316{transform:matrix(0.322214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322214,0.000000,0.000000,0.250000,0,0);}
.mb8_c00316{transform:matrix(0.322716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322716,0.000000,0.000000,0.250000,0,0);}
.m7d_c00316{transform:matrix(0.322816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322816,0.000000,0.000000,0.250000,0,0);}
.m4f_c00316{transform:matrix(0.323446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323446,0.000000,0.000000,0.250000,0,0);}
.mc1_c00316{transform:matrix(0.323608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323608,0.000000,0.000000,0.250000,0,0);}
.m76_c00316{transform:matrix(0.323723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323723,0.000000,0.000000,0.250000,0,0);}
.m33_c00316{transform:matrix(0.323731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323731,0.000000,0.000000,0.250000,0,0);}
.mc4_c00316{transform:matrix(0.323737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323737,0.000000,0.000000,0.250000,0,0);}
.ma9_c00316{transform:matrix(0.323829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323829,0.000000,0.000000,0.250000,0,0);}
.mac_c00316{transform:matrix(0.324157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324157,0.000000,0.000000,0.250000,0,0);}
.m8_c00316{transform:matrix(0.324543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324543,0.000000,0.000000,0.250000,0,0);}
.m51_c00316{transform:matrix(0.325010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325010,0.000000,0.000000,0.250000,0,0);}
.maf_c00316{transform:matrix(0.325069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325069,0.000000,0.000000,0.250000,0,0);}
.mc0_c00316{transform:matrix(0.325601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325601,0.000000,0.000000,0.250000,0,0);}
.m21_c00316{transform:matrix(0.326146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326146,0.000000,0.000000,0.250000,0,0);}
.m2d_c00316{transform:matrix(0.327499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327499,0.000000,0.000000,0.250000,0,0);}
.m72_c00316{transform:matrix(0.329040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329040,0.000000,0.000000,0.250000,0,0);}
.m55_c00316{transform:matrix(0.329096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329096,0.000000,0.000000,0.250000,0,0);}
.m23_c00316{transform:matrix(0.329141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329141,0.000000,0.000000,0.250000,0,0);}
.m7_c00316{transform:matrix(0.330552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330552,0.000000,0.000000,0.250000,0,0);}
.m68_c00316{transform:matrix(0.330814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330814,0.000000,0.000000,0.250000,0,0);}
.mcd_c00316{transform:matrix(0.331631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331631,0.000000,0.000000,0.250000,0,0);}
.m2_c00316{transform:matrix(0.332322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332322,0.000000,0.000000,0.250000,0,0);}
.m3d_c00316{transform:matrix(0.332981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332981,0.000000,0.000000,0.250000,0,0);}
.m11_c00316{transform:matrix(0.333489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333489,0.000000,0.000000,0.250000,0,0);}
.m48_c00316{transform:matrix(0.333755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333755,0.000000,0.000000,0.250000,0,0);}
.m53_c00316{transform:matrix(0.334344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334344,0.000000,0.000000,0.250000,0,0);}
.m20_c00316{transform:matrix(0.335958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335958,0.000000,0.000000,0.250000,0,0);}
.mcb_c00316{transform:matrix(0.337661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337661,0.000000,0.000000,0.250000,0,0);}
.m8f_c00316{transform:matrix(0.337918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337918,0.000000,0.000000,0.250000,0,0);}
.m63_c00316{transform:matrix(0.339581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339581,0.000000,0.000000,0.250000,0,0);}
.m27_c00316{transform:matrix(0.340099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340099,0.000000,0.000000,0.250000,0,0);}
.m6a_c00316{transform:matrix(0.341893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341893,0.000000,0.000000,0.250000,0,0);}
.m5d_c00316{transform:matrix(0.344262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344262,0.000000,0.000000,0.250000,0,0);}
.m4e_c00316{transform:matrix(0.345369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345369,0.000000,0.000000,0.250000,0,0);}
.m9a_c00316{transform:matrix(0.347398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347398,0.000000,0.000000,0.250000,0,0);}
.mdc_c00316{transform:matrix(0.347496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347496,0.000000,0.000000,0.250000,0,0);}
.m91_c00316{transform:matrix(0.348587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348587,0.000000,0.000000,0.250000,0,0);}
.m34_c00316{transform:matrix(0.349586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349586,0.000000,0.000000,0.250000,0,0);}
.mc_c00316{transform:matrix(0.352811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352811,0.000000,0.000000,0.250000,0,0);}
.md5_c00316{transform:matrix(0.353206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353206,0.000000,0.000000,0.250000,0,0);}
.m6e_c00316{transform:matrix(0.353780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353780,0.000000,0.000000,0.250000,0,0);}
.m96_c00316{transform:matrix(0.354951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354951,0.000000,0.000000,0.250000,0,0);}
.mb7_c00316{transform:matrix(0.356647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356647,0.000000,0.000000,0.250000,0,0);}
.mb_c00316{transform:matrix(0.357892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357892,0.000000,0.000000,0.250000,0,0);}
.m31_c00316{transform:matrix(0.358121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358121,0.000000,0.000000,0.250000,0,0);}
.m1d_c00316{transform:matrix(0.361641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361641,0.000000,0.000000,0.250000,0,0);}
.mb3_c00316{transform:matrix(0.363196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363196,0.000000,0.000000,0.250000,0,0);}
.m78_c00316{transform:matrix(0.363955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363955,0.000000,0.000000,0.250000,0,0);}
.m22_c00316{transform:matrix(0.364520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364520,0.000000,0.000000,0.250000,0,0);}
.m61_c00316{transform:matrix(0.364667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364667,0.000000,0.000000,0.250000,0,0);}
.mb5_c00316{transform:matrix(0.365389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365389,0.000000,0.000000,0.250000,0,0);}
.mc3_c00316{transform:matrix(0.365501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365501,0.000000,0.000000,0.250000,0,0);}
.mb1_c00316{transform:matrix(0.368933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368933,0.000000,0.000000,0.250000,0,0);}
.m3c_c00316{transform:matrix(0.369210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369210,0.000000,0.000000,0.250000,0,0);}
.m74_c00316{transform:matrix(0.369850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369850,0.000000,0.000000,0.250000,0,0);}
.m2b_c00316{transform:matrix(0.370565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370565,0.000000,0.000000,0.250000,0,0);}
.mda_c00316{transform:matrix(0.371147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371147,0.000000,0.000000,0.250000,0,0);}
.md9_c00316{transform:matrix(0.371498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371498,0.000000,0.000000,0.250000,0,0);}
.mae_c00316{transform:matrix(0.374054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374054,0.000000,0.000000,0.250000,0,0);}
.m6f_c00316{transform:matrix(0.375687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375687,0.000000,0.000000,0.250000,0,0);}
.mcf_c00316{transform:matrix(0.379098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379098,0.000000,0.000000,0.250000,0,0);}
.m29_c00316{transform:matrix(0.382109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382109,0.000000,0.000000,0.250000,0,0);}
.m93_c00316{transform:matrix(0.382165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382165,0.000000,0.000000,0.250000,0,0);}
.md2_c00316{transform:matrix(0.384266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384266,0.000000,0.000000,0.250000,0,0);}
.md7_c00316{transform:matrix(0.385904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385904,0.000000,0.000000,0.250000,0,0);}
.mb0_c00316{transform:matrix(0.386055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386055,0.000000,0.000000,0.250000,0,0);}
.m5c_c00316{transform:matrix(0.386222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386222,0.000000,0.000000,0.250000,0,0);}
.m7b_c00316{transform:matrix(0.387596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387596,0.000000,0.000000,0.250000,0,0);}
.m6d_c00316{transform:matrix(0.387903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387903,0.000000,0.000000,0.250000,0,0);}
.m12_c00316{transform:matrix(0.388584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388584,0.000000,0.000000,0.250000,0,0);}
.m32_c00316{transform:matrix(0.392344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392344,0.000000,0.000000,0.250000,0,0);}
.m25_c00316{transform:matrix(0.392902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392902,0.000000,0.000000,0.250000,0,0);}
.m3f_c00316{transform:matrix(0.399479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399479,0.000000,0.000000,0.250000,0,0);}
.md3_c00316{transform:matrix(0.432245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432245,0.000000,0.000000,0.250000,0,0);}
.m15_c00316{transform:matrix(0.464508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464508,0.000000,0.000000,0.250000,0,0);}
.m80_c00316{transform:matrix(0.489174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489174,0.000000,0.000000,0.250000,0,0);}
.v3_c00316{vertical-align:-11.404800px;}
.v4_c00316{vertical-align:-9.959400px;}
.v0_c00316{vertical-align:0.000000px;}
.v1_c00316{vertical-align:5.702400px;}
.v2_c00316{vertical-align:11.404800px;}
.ls6_c00316{letter-spacing:-2.508667px;}
.lsa_c00316{letter-spacing:-2.383927px;}
.lsd_c00316{letter-spacing:-2.279977px;}
.ls18_c00316{letter-spacing:-1.850317px;}
.ls19_c00316{letter-spacing:-1.433524px;}
.ls15_c00316{letter-spacing:-1.233540px;}
.ls1a_c00316{letter-spacing:-0.774103px;}
.ls1e_c00316{letter-spacing:-0.652253px;}
.ls1c_c00316{letter-spacing:-0.129017px;}
.ls3_c00316{letter-spacing:0.000000px;}
.ls0_c00316{letter-spacing:0.050173px;}
.lsf_c00316{letter-spacing:0.587745px;}
.ls2_c00316{letter-spacing:0.938958px;}
.ls11_c00316{letter-spacing:0.960461px;}
.ls7_c00316{letter-spacing:1.096646px;}
.ls12_c00316{letter-spacing:1.217700px;}
.ls8_c00316{letter-spacing:1.261501px;}
.ls13_c00316{letter-spacing:1.663200px;}
.ls17_c00316{letter-spacing:2.484900px;}
.ls1d_c00316{letter-spacing:3.177900px;}
.ls1_c00316{letter-spacing:3.490631px;}
.ls9_c00316{letter-spacing:3.562307px;}
.ls5_c00316{letter-spacing:3.583810px;}
.ls10_c00316{letter-spacing:3.801610px;}
.ls4_c00316{letter-spacing:4.370256px;}
.ls14_c00316{letter-spacing:22.809798px;}
.ls16_c00316{letter-spacing:39.916800px;}
.lsc_c00316{letter-spacing:45.619398px;}
.lsb_c00316{letter-spacing:48.470598px;}
.lse_c00316{letter-spacing:49.896198px;}
.ls1b_c00316{letter-spacing:54.172998px;}
.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;}
}
.ws3_c00316{word-spacing:-21.409680px;}
.ws1_c00316{word-spacing:-19.180551px;}
.ws7_c00316{word-spacing:-18.858008px;}
.ws2_c00316{word-spacing:-17.919050px;}
.ws9_c00316{word-spacing:-17.790032px;}
.wsa_c00316{word-spacing:-17.266796px;}
.ws6_c00316{word-spacing:-17.144947px;}
.ws4_c00316{word-spacing:-7.177500px;}
.ws8_c00316{word-spacing:-6.138000px;}
.wsb_c00316{word-spacing:0.000000px;}
.ws0_c00316{word-spacing:10.464987px;}
.ws5_c00316{word-spacing:13.422059px;}
._22_c00316{margin-left:-10.894653px;}
._11_c00316{margin-left:-8.422011px;}
._19_c00316{margin-left:-4.731155px;}
._f_c00316{margin-left:-2.678544px;}
._1a_c00316{margin-left:-1.482679px;}
._8_c00316{width:1.992542px;}
._23_c00316{width:5.088947px;}
._20_c00316{width:6.708980px;}
._1b_c00316{width:7.740953px;}
._5_c00316{width:9.175221px;}
._4_c00316{width:11.611028px;}
._a_c00316{width:13.476188px;}
._b_c00316{width:14.621992px;}
._1c_c00316{width:16.055314px;}
._2_c00316{width:19.854197px;}
._d_c00316{width:21.287288px;}
._21_c00316{width:22.721237px;}
._1e_c00316{width:24.154955px;}
._7_c00316{width:25.445090px;}
._10_c00316{width:29.982992px;}
._3_c00316{width:31.852951px;}
._6_c00316{width:35.224052px;}
._1f_c00316{width:37.152781px;}
._1_c00316{width:38.762719px;}
._1d_c00316{width:40.210109px;}
._c_c00316{width:41.572349px;}
._9_c00316{width:43.865811px;}
._12_c00316{width:48.524537px;}
._18_c00316{width:52.073901px;}
._24_c00316{width:53.470466px;}
._e_c00316{width:65.297166px;}
._17_c00316{width:70.322670px;}
._16_c00316{width:76.606200px;}
._15_c00316{width:112.107600px;}
._13_c00316{width:125.244009px;}
._14_c00316{width:425.917800px;}
._0_c00316{width:2310.494472px;}
.fc0_c00316{color:transparent;}
.fs0_c00316{font-size:22.176000px;}
.fs11_c00316{font-size:22.809798px;}
.fsf_c00316{font-size:24.354000px;}
.fs18_c00316{font-size:24.552000px;}
.fs1a_c00316{font-size:27.720000px;}
.fs1b_c00316{font-size:28.314000px;}
.fs16_c00316{font-size:28.710000px;}
.fs10_c00316{font-size:33.264000px;}
.fs12_c00316{font-size:35.244000px;}
.fs1c_c00316{font-size:39.204000px;}
.fs13_c00316{font-size:39.916800px;}
.fs7_c00316{font-size:45.619398px;}
.fs6_c00316{font-size:48.470598px;}
.fs14_c00316{font-size:49.698000px;}
.fsb_c00316{font-size:49.896198px;}
.fs15_c00316{font-size:52.866198px;}
.fs17_c00316{font-size:54.172998px;}
.fs19_c00316{font-size:63.558000px;}
.fs9_c00316{font-size:65.142198px;}
.fs5_c00316{font-size:68.112198px;}
.fs3_c00316{font-size:68.706198px;}
.fse_c00316{font-size:69.696198px;}
.fs8_c00316{font-size:70.488000px;}
.fsa_c00316{font-size:70.884000px;}
.fs2_c00316{font-size:71.676198px;}
.fs4_c00316{font-size:72.864000px;}
.fsc_c00316{font-size:74.052198px;}
.fsd_c00316{font-size:76.032198px;}
.fs1_c00316{font-size:88.110000px;}
.fs1d_c00316{font-size:115.236198px;}
.y0_c00316{bottom:0.000000px;}
.y1e_c00316{bottom:15.237135px;}
.y1d_c00316{bottom:63.707535px;}
.y1c_c00316{bottom:66.558735px;}
.y1_c00316{bottom:76.500000px;}
.y1b_c00316{bottom:86.157765px;}
.y1a_c00316{bottom:164.563785px;}
.y19_c00316{bottom:209.470185px;}
.y17_c00316{bottom:242.263935px;}
.y18_c00316{bottom:244.753785px;}
.y16_c00316{bottom:306.772335px;}
.y15_c00316{bottom:339.912585px;}
.y14_c00316{bottom:373.062735px;}
.y13_c00316{bottom:405.133785px;}
.y12_c00316{bottom:438.283935px;}
.y11_c00316{bottom:472.498335px;}
.y10_c00316{bottom:504.930735px;}
.yf_c00316{bottom:511.702335px;}
.ye_c00316{bottom:537.714585px;}
.y1f_c00316{bottom:573.354585px;}
.yd_c00316{bottom:601.871535px;}
.yc_c00316{bottom:633.942585px;}
.yb_c00316{bottom:666.023535px;}
.y9_c00316{bottom:698.811345px;}
.ya_c00316{bottom:698.812335px;}
.y8_c00316{bottom:731.244735px;}
.y7_c00316{bottom:763.315785px;}
.y6_c00316{bottom:795.396735px;}
.y5_c00316{bottom:828.185535px;}
.y4_c00316{bottom:861.325785px;}
.y3_c00316{bottom:925.121385px;}
.y2_c00316{bottom:1075.165785px;}
.y20_c00316{bottom:1087.639785px;}
.h12_c00316{height:15.191325px;}
.h10_c00316{height:23.902119px;}
.h14_c00316{height:26.584589px;}
.h1a_c00316{height:28.911094px;}
.h1c_c00316{height:29.530617px;}
.h8_c00316{height:30.382519px;}
.h7_c00316{height:32.281418px;}
.h11_c00316{height:32.630555px;}
.hc_c00316{height:33.230868px;}
.h13_c00316{height:34.590059px;}
.h1b_c00316{height:34.693313px;}
.h17_c00316{height:36.079217px;}
.h1d_c00316{height:38.476582px;}
.h15_c00316{height:48.775869px;}
.h16_c00316{height:51.885282px;}
.h18_c00316{height:60.386869px;}
.ha_c00316{height:63.933505px;}
.h19_c00316{height:66.289008px;}
.h6_c00316{height:66.848397px;}
.h4_c00316{height:67.431376px;}
.hf_c00316{height:68.403007px;}
.h9_c00316{height:69.180117px;}
.hb_c00316{height:69.568770px;}
.h3_c00316{height:70.346269px;}
.h5_c00316{height:71.512031px;}
.hd_c00316{height:72.678183px;}
.he_c00316{height:74.621444px;}
.h2_c00316{height:92.177546px;}
.h1e_c00316{height:120.187753px;}
.h1_c00316{height:1110.000000px;}
.h0_c00316{height:1263.000000px;}
.w1_c00316{width:781.500000px;}
.w0_c00316{width:892.500000px;}
.x0_c00316{left:0.000000px;}
.x1_c00316{left:55.500000px;}
.x2_c00316{left:87.369435px;}
.x28_c00316{left:93.670785px;}
.x3_c00316{left:94.720185px;}
.x5a_c00316{left:96.710085px;}
.x61_c00316{left:103.130235px;}
.x3c_c00316{left:104.699385px;}
.x4_c00316{left:107.184285px;}
.x67_c00316{left:109.555335px;}
.x68_c00316{left:114.901335px;}
.x1b_c00316{left:126.494235px;}
.x5f_c00316{left:133.790535px;}
.x62_c00316{left:136.250685px;}
.x60_c00316{left:137.705985px;}
.x3d_c00316{left:147.175335px;}
.x10_c00316{left:148.284135px;}
.x3e_c00316{left:151.754085px;}
.x33_c00316{left:159.471135px;}
.x3f_c00316{left:161.579835px;}
.x1c_c00316{left:169.702785px;}
.x47_c00316{left:171.336285px;}
.x5_c00316{left:172.435185px;}
.x4d_c00316{left:180.855135px;}
.x6_c00316{left:181.859985px;}
.x73_c00316{left:189.364185px;}
.x1d_c00316{left:192.650985px;}
.x55_c00316{left:201.853035px;}
.x40_c00316{left:204.001335px;}
.x63_c00316{left:212.351985px;}
.x5b_c00316{left:213.846885px;}
.x7_c00316{left:215.495235px;}
.x41_c00316{left:225.291285px;}
.x29_c00316{left:226.518885px;}
.x50_c00316{left:236.780235px;}
.x8_c00316{left:237.968235px;}
.x48_c00316{left:247.541535px;}
.x69_c00316{left:248.907735px;}
.x1e_c00316{left:250.793685px;}
.x2a_c00316{left:258.188985px;}
.x9_c00316{left:270.088785px;}
.x49_c00316{left:271.157985px;}
.x1f_c00316{left:272.583585px;}
.x6a_c00316{left:274.212135px;}
.x20_c00316{left:281.013435px;}
.x76_c00316{left:287.893935px;}
.x4a_c00316{left:292.032135px;}
.x21_c00316{left:302.491485px;}
.x74_c00316{left:304.629885px;}
.x6f_c00316{left:306.327735px;}
.x34_c00316{left:315.321885px;}
.xa_c00316{left:325.325835px;}
.x22_c00316{left:326.360385px;}
.x5c_c00316{left:328.785885px;}
.x4b_c00316{left:336.933585px;}
.x79_c00316{left:338.151285px;}
.x35_c00316{left:346.511835px;}
.x11_c00316{left:348.412635px;}
.x51_c00316{left:350.481735px;}
.x23_c00316{left:357.911685px;}
.x6e_c00316{left:359.050185px;}
.x5d_c00316{left:362.515185px;}
.xb_c00316{left:370.558935px;}
.x54_c00316{left:372.964635px;}
.x12_c00316{left:380.904435px;}
.x36_c00316{left:392.650785px;}
.x5e_c00316{left:395.200035px;}
.x75_c00316{left:399.095685px;}
.x42_c00316{left:403.337835px;}
.x64_c00316{left:413.044785px;}
.x2b_c00316{left:414.084285px;}
.x37_c00316{left:415.678185px;}
.x2c_c00316{left:424.885185px;}
.x71_c00316{left:426.157335px;}
.x4e_c00316{left:436.849335px;}
.x13_c00316{left:447.011685px;}
.x77_c00316{left:456.629535px;}
.x43_c00316{left:457.772985px;}
.x14_c00316{left:458.965935px;}
.x24_c00316{left:470.024235px;}
.x56_c00316{left:479.770785px;}
.x44_c00316{left:480.864735px;}
.x7a_c00316{left:482.097285px;}
.x52_c00316{left:483.126885px;}
.x57_c00316{left:485.547435px;}
.x65_c00316{left:490.809285px;}
.x25_c00316{left:491.932935px;}
.x2d_c00316{left:501.535935px;}
.xc_c00316{left:503.184285px;}
.x15_c00316{left:513.519885px;}
.x7b_c00316{left:514.891035px;}
.x45_c00316{left:524.563335px;}
.x78_c00316{left:525.583035px;}
.x26_c00316{left:534.691035px;}
.x16_c00316{left:536.309685px;}
.x6b_c00316{left:537.923385px;}
.x58_c00316{left:546.764085px;}
.xd_c00316{left:558.361935px;}
.x4f_c00316{left:567.821385px;}
.x38_c00316{left:569.044035px;}
.x39_c00316{left:579.567735px;}
.x4c_c00316{left:580.805235px;}
.x2e_c00316{left:590.868585px;}
.x6c_c00316{left:596.249235px;}
.x6d_c00316{left:599.278635px;}
.x70_c00316{left:600.986385px;}
.xe_c00316{left:602.580285px;}
.xf_c00316{left:612.391185px;}
.x17_c00316{left:613.608885px;}
.x59_c00316{left:616.148235px;}
.x3a_c00316{left:624.360285px;}
.x2f_c00316{left:635.037435px;}
.x27_c00316{left:646.323435px;}
.x46_c00316{left:657.639135px;}
.x7c_c00316{left:658.653885px;}
.x30_c00316{left:668.499435px;}
.x7d_c00316{left:671.481315px;}
.x3b_c00316{left:678.889485px;}
.x53_c00316{left:680.295285px;}
.x18_c00316{left:689.368635px;}
.x31_c00316{left:701.317935px;}
.x72_c00316{left:702.387135px;}
.x7f_c00316{left:703.560285px;}
.x19_c00316{left:712.420785px;}
.x66_c00316{left:713.727585px;}
.x80_c00316{left:718.464735px;}
.x32_c00316{left:723.053385px;}
.x7e_c00316{left:726.350085px;}
.x1a_c00316{left:733.923585px;}
.x81_c00316{left:746.635185px;}
.x82_c00316{left:773.078085px;}
@media print{
.v3_c00316{vertical-align:-10.137600pt;}
.v4_c00316{vertical-align:-8.852800pt;}
.v0_c00316{vertical-align:0.000000pt;}
.v1_c00316{vertical-align:5.068800pt;}
.v2_c00316{vertical-align:10.137600pt;}
.ls6_c00316{letter-spacing:-2.229926pt;}
.lsa_c00316{letter-spacing:-2.119046pt;}
.lsd_c00316{letter-spacing:-2.026646pt;}
.ls18_c00316{letter-spacing:-1.644726pt;}
.ls19_c00316{letter-spacing:-1.274244pt;}
.ls15_c00316{letter-spacing:-1.096480pt;}
.ls1a_c00316{letter-spacing:-0.688092pt;}
.ls1e_c00316{letter-spacing:-0.579781pt;}
.ls1c_c00316{letter-spacing:-0.114682pt;}
.ls3_c00316{letter-spacing:0.000000pt;}
.ls0_c00316{letter-spacing:0.044599pt;}
.lsf_c00316{letter-spacing:0.522440pt;}
.ls2_c00316{letter-spacing:0.834630pt;}
.ls11_c00316{letter-spacing:0.853743pt;}
.ls7_c00316{letter-spacing:0.974796pt;}
.ls12_c00316{letter-spacing:1.082400pt;}
.ls8_c00316{letter-spacing:1.121334pt;}
.ls13_c00316{letter-spacing:1.478400pt;}
.ls17_c00316{letter-spacing:2.208800pt;}
.ls1d_c00316{letter-spacing:2.824800pt;}
.ls1_c00316{letter-spacing:3.102783pt;}
.ls9_c00316{letter-spacing:3.166495pt;}
.ls5_c00316{letter-spacing:3.185609pt;}
.ls10_c00316{letter-spacing:3.379209pt;}
.ls4_c00316{letter-spacing:3.884672pt;}
.ls14_c00316{letter-spacing:20.275376pt;}
.ls16_c00316{letter-spacing:35.481600pt;}
.lsc_c00316{letter-spacing:40.550576pt;}
.lsb_c00316{letter-spacing:43.084976pt;}
.lse_c00316{letter-spacing:44.352176pt;}
.ls1b_c00316{letter-spacing:48.153776pt;}
.ws3_c00316{word-spacing:-19.030827pt;}
.ws1_c00316{word-spacing:-17.049378pt;}
.ws7_c00316{word-spacing:-16.762674pt;}
.ws2_c00316{word-spacing:-15.928044pt;}
.ws9_c00316{word-spacing:-15.813362pt;}
.wsa_c00316{word-spacing:-15.348263pt;}
.ws6_c00316{word-spacing:-15.239952pt;}
.ws4_c00316{word-spacing:-6.380000pt;}
.ws8_c00316{word-spacing:-5.456000pt;}
.wsb_c00316{word-spacing:0.000000pt;}
.ws0_c00316{word-spacing:9.302211pt;}
.ws5_c00316{word-spacing:11.930719pt;}
._22_c00316{margin-left:-9.684136pt;}
._11_c00316{margin-left:-7.486232pt;}
._19_c00316{margin-left:-4.205471pt;}
._f_c00316{margin-left:-2.380928pt;}
._1a_c00316{margin-left:-1.317937pt;}
._8_c00316{width:1.771148pt;}
._23_c00316{width:4.523508pt;}
._20_c00316{width:5.963538pt;}
._1b_c00316{width:6.880847pt;}
._5_c00316{width:8.155752pt;}
._4_c00316{width:10.320914pt;}
._a_c00316{width:11.978834pt;}
._b_c00316{width:12.997326pt;}
._1c_c00316{width:14.271390pt;}
._2_c00316{width:17.648175pt;}
._d_c00316{width:18.922034pt;}
._21_c00316{width:20.196655pt;}
._1e_c00316{width:21.471071pt;}
._7_c00316{width:22.617858pt;}
._10_c00316{width:26.651548pt;}
._3_c00316{width:28.313734pt;}
._6_c00316{width:31.310268pt;}
._1f_c00316{width:33.024694pt;}
._1_c00316{width:34.455750pt;}
._1d_c00316{width:35.742320pt;}
._c_c00316{width:36.953200pt;}
._9_c00316{width:38.991832pt;}
._12_c00316{width:43.132921pt;}
._18_c00316{width:46.287912pt;}
._24_c00316{width:47.529304pt;}
._e_c00316{width:58.041925pt;}
._17_c00316{width:62.509040pt;}
._16_c00316{width:68.094400pt;}
._15_c00316{width:99.651200pt;}
._13_c00316{width:111.328008pt;}
._14_c00316{width:378.593600pt;}
._0_c00316{width:2053.772864pt;}
.fs0_c00316{font-size:19.712000pt;}
.fs11_c00316{font-size:20.275376pt;}
.fsf_c00316{font-size:21.648000pt;}
.fs18_c00316{font-size:21.824000pt;}
.fs1a_c00316{font-size:24.640000pt;}
.fs1b_c00316{font-size:25.168000pt;}
.fs16_c00316{font-size:25.520000pt;}
.fs10_c00316{font-size:29.568000pt;}
.fs12_c00316{font-size:31.328000pt;}
.fs1c_c00316{font-size:34.848000pt;}
.fs13_c00316{font-size:35.481600pt;}
.fs7_c00316{font-size:40.550576pt;}
.fs6_c00316{font-size:43.084976pt;}
.fs14_c00316{font-size:44.176000pt;}
.fsb_c00316{font-size:44.352176pt;}
.fs15_c00316{font-size:46.992176pt;}
.fs17_c00316{font-size:48.153776pt;}
.fs19_c00316{font-size:56.496000pt;}
.fs9_c00316{font-size:57.904176pt;}
.fs5_c00316{font-size:60.544176pt;}
.fs3_c00316{font-size:61.072176pt;}
.fse_c00316{font-size:61.952176pt;}
.fs8_c00316{font-size:62.656000pt;}
.fsa_c00316{font-size:63.008000pt;}
.fs2_c00316{font-size:63.712176pt;}
.fs4_c00316{font-size:64.768000pt;}
.fsc_c00316{font-size:65.824176pt;}
.fsd_c00316{font-size:67.584176pt;}
.fs1_c00316{font-size:78.320000pt;}
.fs1d_c00316{font-size:102.432176pt;}
.y0_c00316{bottom:0.000000pt;}
.y1e_c00316{bottom:13.544120pt;}
.y1d_c00316{bottom:56.628920pt;}
.y1c_c00316{bottom:59.163320pt;}
.y1_c00316{bottom:68.000000pt;}
.y1b_c00316{bottom:76.584680pt;}
.y1a_c00316{bottom:146.278920pt;}
.y19_c00316{bottom:186.195720pt;}
.y17_c00316{bottom:215.345720pt;}
.y18_c00316{bottom:217.558920pt;}
.y16_c00316{bottom:272.686520pt;}
.y15_c00316{bottom:302.144520pt;}
.y14_c00316{bottom:331.611320pt;}
.y13_c00316{bottom:360.118920pt;}
.y12_c00316{bottom:389.585720pt;}
.y11_c00316{bottom:419.998520pt;}
.y10_c00316{bottom:448.827320pt;}
.yf_c00316{bottom:454.846520pt;}
.ye_c00316{bottom:477.968520pt;}
.y1f_c00316{bottom:509.648520pt;}
.yd_c00316{bottom:534.996920pt;}
.yc_c00316{bottom:563.504520pt;}
.yb_c00316{bottom:592.020920pt;}
.y9_c00316{bottom:621.165640pt;}
.ya_c00316{bottom:621.166520pt;}
.y8_c00316{bottom:649.995320pt;}
.y7_c00316{bottom:678.502920pt;}
.y6_c00316{bottom:707.019320pt;}
.y5_c00316{bottom:736.164920pt;}
.y4_c00316{bottom:765.622920pt;}
.y3_c00316{bottom:822.330120pt;}
.y2_c00316{bottom:955.702920pt;}
.y20_c00316{bottom:966.790920pt;}
.h12_c00316{height:13.503400pt;}
.h10_c00316{height:21.246328pt;}
.h14_c00316{height:23.630746pt;}
.h1a_c00316{height:25.698750pt;}
.h1c_c00316{height:26.249438pt;}
.h8_c00316{height:27.006684pt;}
.h7_c00316{height:28.694594pt;}
.h11_c00316{height:29.004938pt;}
.hc_c00316{height:29.538549pt;}
.h13_c00316{height:30.746719pt;}
.h1b_c00316{height:30.838500pt;}
.h17_c00316{height:32.070415pt;}
.h1d_c00316{height:34.201406pt;}
.h15_c00316{height:43.356328pt;}
.h16_c00316{height:46.120251pt;}
.h18_c00316{height:53.677216pt;}
.ha_c00316{height:56.829782pt;}
.h19_c00316{height:58.923563pt;}
.h6_c00316{height:59.420798pt;}
.h4_c00316{height:59.939001pt;}
.hf_c00316{height:60.802673pt;}
.h9_c00316{height:61.493438pt;}
.hb_c00316{height:61.838906pt;}
.h3_c00316{height:62.530016pt;}
.h5_c00316{height:63.566250pt;}
.hd_c00316{height:64.602829pt;}
.he_c00316{height:66.330173pt;}
.h2_c00316{height:81.935597pt;}
.h1e_c00316{height:106.833559pt;}
.h1_c00316{height:986.666667pt;}
.h0_c00316{height:1122.666667pt;}
.w1_c00316{width:694.666667pt;}
.w0_c00316{width:793.333333pt;}
.x0_c00316{left:0.000000pt;}
.x1_c00316{left:49.333333pt;}
.x2_c00316{left:77.661720pt;}
.x28_c00316{left:83.262920pt;}
.x3_c00316{left:84.195720pt;}
.x5a_c00316{left:85.964520pt;}
.x61_c00316{left:91.671320pt;}
.x3c_c00316{left:93.066120pt;}
.x4_c00316{left:95.274920pt;}
.x67_c00316{left:97.382520pt;}
.x68_c00316{left:102.134520pt;}
.x1b_c00316{left:112.439320pt;}
.x5f_c00316{left:118.924920pt;}
.x62_c00316{left:121.111720pt;}
.x60_c00316{left:122.405320pt;}
.x3d_c00316{left:130.822520pt;}
.x10_c00316{left:131.808120pt;}
.x3e_c00316{left:134.892520pt;}
.x33_c00316{left:141.752120pt;}
.x3f_c00316{left:143.626520pt;}
.x1c_c00316{left:150.846920pt;}
.x47_c00316{left:152.298920pt;}
.x5_c00316{left:153.275720pt;}
.x4d_c00316{left:160.760120pt;}
.x6_c00316{left:161.653320pt;}
.x73_c00316{left:168.323720pt;}
.x1d_c00316{left:171.245320pt;}
.x55_c00316{left:179.424920pt;}
.x40_c00316{left:181.334520pt;}
.x63_c00316{left:188.757320pt;}
.x5b_c00316{left:190.086120pt;}
.x7_c00316{left:191.551320pt;}
.x41_c00316{left:200.258920pt;}
.x29_c00316{left:201.350120pt;}
.x50_c00316{left:210.471320pt;}
.x8_c00316{left:211.527320pt;}
.x48_c00316{left:220.036920pt;}
.x69_c00316{left:221.251320pt;}
.x1e_c00316{left:222.927720pt;}
.x2a_c00316{left:229.501320pt;}
.x9_c00316{left:240.078920pt;}
.x49_c00316{left:241.029320pt;}
.x1f_c00316{left:242.296520pt;}
.x6a_c00316{left:243.744120pt;}
.x20_c00316{left:249.789720pt;}
.x76_c00316{left:255.905720pt;}
.x4a_c00316{left:259.584120pt;}
.x21_c00316{left:268.881320pt;}
.x74_c00316{left:270.782120pt;}
.x6f_c00316{left:272.291320pt;}
.x34_c00316{left:280.286120pt;}
.xa_c00316{left:289.178520pt;}
.x22_c00316{left:290.098120pt;}
.x5c_c00316{left:292.254120pt;}
.x4b_c00316{left:299.496520pt;}
.x79_c00316{left:300.578920pt;}
.x35_c00316{left:308.010520pt;}
.x11_c00316{left:309.700120pt;}
.x51_c00316{left:311.539320pt;}
.x23_c00316{left:318.143720pt;}
.x6e_c00316{left:319.155720pt;}
.x5d_c00316{left:322.235720pt;}
.xb_c00316{left:329.385720pt;}
.x54_c00316{left:331.524120pt;}
.x12_c00316{left:338.581720pt;}
.x36_c00316{left:349.022920pt;}
.x5e_c00316{left:351.288920pt;}
.x75_c00316{left:354.751720pt;}
.x42_c00316{left:358.522520pt;}
.x64_c00316{left:367.150920pt;}
.x2b_c00316{left:368.074920pt;}
.x37_c00316{left:369.491720pt;}
.x2c_c00316{left:377.675720pt;}
.x71_c00316{left:378.806520pt;}
.x4e_c00316{left:388.310520pt;}
.x13_c00316{left:397.343720pt;}
.x77_c00316{left:405.892920pt;}
.x43_c00316{left:406.909320pt;}
.x14_c00316{left:407.969720pt;}
.x24_c00316{left:417.799320pt;}
.x56_c00316{left:426.462920pt;}
.x44_c00316{left:427.435320pt;}
.x7a_c00316{left:428.530920pt;}
.x52_c00316{left:429.446120pt;}
.x57_c00316{left:431.597720pt;}
.x65_c00316{left:436.274920pt;}
.x25_c00316{left:437.273720pt;}
.x2d_c00316{left:445.809720pt;}
.xc_c00316{left:447.274920pt;}
.x15_c00316{left:456.462120pt;}
.x7b_c00316{left:457.680920pt;}
.x45_c00316{left:466.278520pt;}
.x78_c00316{left:467.184920pt;}
.x26_c00316{left:475.280920pt;}
.x16_c00316{left:476.719720pt;}
.x6b_c00316{left:478.154120pt;}
.x58_c00316{left:486.012520pt;}
.xd_c00316{left:496.321720pt;}
.x4f_c00316{left:504.730120pt;}
.x38_c00316{left:505.816920pt;}
.x39_c00316{left:515.171320pt;}
.x4c_c00316{left:516.271320pt;}
.x2e_c00316{left:525.216520pt;}
.x6c_c00316{left:529.999320pt;}
.x6d_c00316{left:532.692120pt;}
.x70_c00316{left:534.210120pt;}
.xe_c00316{left:535.626920pt;}
.xf_c00316{left:544.347720pt;}
.x17_c00316{left:545.430120pt;}
.x59_c00316{left:547.687320pt;}
.x3a_c00316{left:554.986920pt;}
.x2f_c00316{left:564.477720pt;}
.x27_c00316{left:574.509720pt;}
.x46_c00316{left:584.568120pt;}
.x7c_c00316{left:585.470120pt;}
.x30_c00316{left:594.221720pt;}
.x7d_c00316{left:596.872280pt;}
.x3b_c00316{left:603.457320pt;}
.x53_c00316{left:604.706920pt;}
.x18_c00316{left:612.772120pt;}
.x31_c00316{left:623.393720pt;}
.x72_c00316{left:624.344120pt;}
.x7f_c00316{left:625.386920pt;}
.x19_c00316{left:633.262920pt;}
.x66_c00316{left:634.424520pt;}
.x80_c00316{left:638.635320pt;}
.x32_c00316{left:642.714120pt;}
.x7e_c00316{left:645.644520pt;}
.x1a_c00316{left:652.376520pt;}
.x81_c00316{left:663.675720pt;}
.x82_c00316{left:687.180520pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c5624c6c4fca0ce6a5aa5e19.woff2')format("woff");}.ff1_c00317{font-family:ff1_c00317;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00317;src:url('chunks/assets/font_59910d7716227f7e938e6db8.woff2')format("woff");}.ff2_c00317{font-family:ff2_c00317;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00317;src:url('chunks/assets/font_967f91b04c66f459a5a26433.woff2')format("woff");}.ff3_c00317{font-family:ff3_c00317;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00317;src:url('chunks/assets/font_9d362c25d66b089c8182a9e6.woff2')format("woff");}.ff4_c00317{font-family:ff4_c00317;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00317;src:url('chunks/assets/font_806988807eaba546138248f6.woff2')format("woff");}.ff5_c00317{font-family:ff5_c00317;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00317;src:url('chunks/assets/font_6a5089b8f296c48fdd3b12c5.woff2')format("woff");}.ff6_c00317{font-family:ff6_c00317;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00317;src:url('chunks/assets/font_3e5fb90f90bb8fac49b82d5a.woff2')format("woff");}.ff7_c00317{font-family:ff7_c00317;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m33_c00317{transform:matrix(0.012296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012296,0.000000,0.000000,0.250000,0,0);}
.m71_c00317{transform:matrix(0.032052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032052,0.000000,0.000000,0.250000,0,0);}
.m2b_c00317{transform:matrix(0.032787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032787,0.000000,0.000000,0.250000,0,0);}
.m29_c00317{transform:matrix(0.040642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040642,0.000000,0.000000,0.250000,0,0);}
.m2f_c00317{transform:matrix(0.045082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045082,0.000000,0.000000,0.250000,0,0);}
.m26_c00317{transform:matrix(0.049180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.049180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.049180,0.000000,0.000000,0.250000,0,0);}
.m11_c00317{transform:matrix(0.049480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.049480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.049480,0.000000,0.000000,0.250000,0,0);}
.m30_c00317{transform:matrix(0.049863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.049863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.049863,0.000000,0.000000,0.250000,0,0);}
.m70_c00317{transform:matrix(0.051283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.051283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.051283,0.000000,0.000000,0.250000,0,0);}
.me_c00317{transform:matrix(0.056777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056777,0.000000,0.000000,0.250000,0,0);}
.m2e_c00317{transform:matrix(0.065574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065574,0.000000,0.000000,0.250000,0,0);}
.m31_c00317{transform:matrix(0.069673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.069673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.069673,0.000000,0.000000,0.250000,0,0);}
.m12_c00317{transform:matrix(0.070313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070313,0.000000,0.000000,0.250000,0,0);}
.m5a_c00317{transform:matrix(0.082393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.082393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.082393,0.000000,0.000000,0.250000,0,0);}
.m2d_c00317{transform:matrix(0.084016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084016,0.000000,0.000000,0.250000,0,0);}
.m7b_c00317{transform:matrix(0.084581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084581,0.000000,0.000000,0.250000,0,0);}
.m20_c00317{transform:matrix(0.084700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084700,0.000000,0.000000,0.250000,0,0);}
.m14_c00317{transform:matrix(0.085938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085938,0.000000,0.000000,0.250000,0,0);}
.m27_c00317{transform:matrix(0.088115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088115,0.000000,0.000000,0.250000,0,0);}
.m49_c00317{transform:matrix(0.089743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089743,0.000000,0.000000,0.250000,0,0);}
.m21_c00317{transform:matrix(0.094263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094263,0.000000,0.000000,0.250000,0,0);}
.m2c_c00317{transform:matrix(0.095629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095629,0.000000,0.000000,0.250000,0,0);}
.m50_c00317{transform:matrix(0.102565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102565,0.000000,0.000000,0.250000,0,0);}
.md_c00317{transform:matrix(0.108975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108975,0.000000,0.000000,0.250000,0,0);}
.m13_c00317{transform:matrix(0.109375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109375,0.000000,0.000000,0.250000,0,0);}
.mb5_c00317{transform:matrix(0.112192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112192,0.000000,0.000000,0.250000,0,0);}
.m44_c00317{transform:matrix(0.114584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114584,0.000000,0.000000,0.250000,0,0);}
.m22_c00317{transform:matrix(0.114754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114754,0.000000,0.000000,0.250000,0,0);}
.m1d_c00317{transform:matrix(0.121622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121622,0.000000,0.000000,0.250000,0,0);}
.m39_c00317{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m8_c00317{transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);}
.mf_c00317{transform:matrix(0.127031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127031,0.000000,0.000000,0.250000,0,0);}
.ma5_c00317{transform:matrix(0.127588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127588,0.000000,0.000000,0.250000,0,0);}
.m18_c00317{transform:matrix(0.131516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131516,0.000000,0.000000,0.250000,0,0);}
.m1e_c00317{transform:matrix(0.133696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133696,0.000000,0.000000,0.250000,0,0);}
.m51_c00317{transform:matrix(0.134616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134616,0.000000,0.000000,0.250000,0,0);}
.m80_c00317{transform:matrix(0.135303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135303,0.000000,0.000000,0.250000,0,0);}
.m25_c00317{transform:matrix(0.136494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136494,0.000000,0.000000,0.250000,0,0);}
.m23_c00317{transform:matrix(0.140078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140078,0.000000,0.000000,0.250000,0,0);}
.mc_c00317{transform:matrix(0.141025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141025,0.000000,0.000000,0.250000,0,0);}
.m89_c00317{transform:matrix(0.144388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144388,0.000000,0.000000,0.250000,0,0);}
.m34_c00317{transform:matrix(0.146242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146242,0.000000,0.000000,0.250000,0,0);}
.m4c_c00317{transform:matrix(0.147435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147435,0.000000,0.000000,0.250000,0,0);}
.m48_c00317{transform:matrix(0.147436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147436,0.000000,0.000000,0.250000,0,0);}
.m47_c00317{transform:matrix(0.149573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149573,0.000000,0.000000,0.250000,0,0);}
.m3d_c00317{transform:matrix(0.151042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151042,0.000000,0.000000,0.250000,0,0);}
.m40_c00317{transform:matrix(0.153394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153394,0.000000,0.000000,0.250000,0,0);}
.m53_c00317{transform:matrix(0.153846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153846,0.000000,0.000000,0.250000,0,0);}
.m10_c00317{transform:matrix(0.153974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153974,0.000000,0.000000,0.250000,0,0);}
.m72_c00317{transform:matrix(0.158119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158119,0.000000,0.000000,0.250000,0,0);}
.m1_c00317{transform:matrix(0.162917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162917,0.000000,0.000000,0.250000,0,0);}
.m43_c00317{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);}
.ma8_c00317{transform:matrix(0.171407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171407,0.000000,0.000000,0.250000,0,0);}
.m35_c00317{transform:matrix(0.177807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177807,0.000000,0.000000,0.250000,0,0);}
.m52_c00317{transform:matrix(0.179487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179487,0.000000,0.000000,0.250000,0,0);}
.m5b_c00317{transform:matrix(0.180577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180577,0.000000,0.000000,0.250000,0,0);}
.m1a_c00317{transform:matrix(0.185610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185610,0.000000,0.000000,0.250000,0,0);}
.mad_c00317{transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);}
.m3a_c00317{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00317{transform:matrix(0.191754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191754,0.000000,0.000000,0.250000,0,0);}
.m64_c00317{transform:matrix(0.193278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193278,0.000000,0.000000,0.250000,0,0);}
.m99_c00317{transform:matrix(0.193282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193282,0.000000,0.000000,0.250000,0,0);}
.maf_c00317{transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);}
.m4a_c00317{transform:matrix(0.201547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201547,0.000000,0.000000,0.250000,0,0);}
.m17_c00317{transform:matrix(0.203359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203359,0.000000,0.000000,0.250000,0,0);}
.m32_c00317{transform:matrix(0.204918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204918,0.000000,0.000000,0.250000,0,0);}
.m45_c00317{transform:matrix(0.208668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208668,0.000000,0.000000,0.250000,0,0);}
.m7_c00317{transform:matrix(0.215118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215118,0.000000,0.000000,0.250000,0,0);}
.m19_c00317{transform:matrix(0.216219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216219,0.000000,0.000000,0.250000,0,0);}
.mae_c00317{transform:matrix(0.217143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217143,0.000000,0.000000,0.250000,0,0);}
.m1f_c00317{transform:matrix(0.218011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218011,0.000000,0.000000,0.250000,0,0);}
.m65_c00317{transform:matrix(0.218406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218406,0.000000,0.000000,0.250000,0,0);}
.m9_c00317{transform:matrix(0.219293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219293,0.000000,0.000000,0.250000,0,0);}
.m3_c00317{transform:matrix(0.219851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219851,0.000000,0.000000,0.250000,0,0);}
.m38_c00317{transform:matrix(0.221621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221621,0.000000,0.000000,0.250000,0,0);}
.m36_c00317{transform:matrix(0.223530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223530,0.000000,0.000000,0.250000,0,0);}
.m2_c00317{transform:matrix(0.225726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225726,0.000000,0.000000,0.250000,0,0);}
.m28_c00317{transform:matrix(0.226221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226221,0.000000,0.000000,0.250000,0,0);}
.m3b_c00317{transform:matrix(0.226774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226774,0.000000,0.000000,0.250000,0,0);}
.ma_c00317{transform:matrix(0.226880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226880,0.000000,0.000000,0.250000,0,0);}
.m42_c00317{transform:matrix(0.229165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229165,0.000000,0.000000,0.250000,0,0);}
.m5_c00317{transform:matrix(0.235042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235042,0.000000,0.000000,0.250000,0,0);}
.m37_c00317{transform:matrix(0.236719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236719,0.000000,0.000000,0.250000,0,0);}
.m75_c00317{transform:matrix(0.238964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238964,0.000000,0.000000,0.250000,0,0);}
.ma0_c00317{transform:matrix(0.244958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244958,0.000000,0.000000,0.250000,0,0);}
.m24_c00317{transform:matrix(0.247772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247772,0.000000,0.000000,0.250000,0,0);}
.m0_c00317{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m59_c00317{transform:matrix(0.252971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252971,0.000000,0.000000,0.250000,0,0);}
.mab_c00317{transform:matrix(0.256736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256736,0.000000,0.000000,0.250000,0,0);}
.mb4_c00317{transform:matrix(0.257932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257932,0.000000,0.000000,0.250000,0,0);}
.m8a_c00317{transform:matrix(0.260916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260916,0.000000,0.000000,0.250000,0,0);}
.m54_c00317{transform:matrix(0.264497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264497,0.000000,0.000000,0.250000,0,0);}
.m58_c00317{transform:matrix(0.265232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265232,0.000000,0.000000,0.250000,0,0);}
.m5f_c00317{transform:matrix(0.266029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266029,0.000000,0.000000,0.250000,0,0);}
.m67_c00317{transform:matrix(0.267913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267913,0.000000,0.000000,0.250000,0,0);}
.m46_c00317{transform:matrix(0.269312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269312,0.000000,0.000000,0.250000,0,0);}
.ma6_c00317{transform:matrix(0.270622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270622,0.000000,0.000000,0.250000,0,0);}
.m6a_c00317{transform:matrix(0.271902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271902,0.000000,0.000000,0.250000,0,0);}
.m8c_c00317{transform:matrix(0.272919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272919,0.000000,0.000000,0.250000,0,0);}
.m91_c00317{transform:matrix(0.274380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274380,0.000000,0.000000,0.250000,0,0);}
.m1b_c00317{transform:matrix(0.274466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274466,0.000000,0.000000,0.250000,0,0);}
.m93_c00317{transform:matrix(0.278034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278034,0.000000,0.000000,0.250000,0,0);}
.m85_c00317{transform:matrix(0.278509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278509,0.000000,0.000000,0.250000,0,0);}
.ma3_c00317{transform:matrix(0.278764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278764,0.000000,0.000000,0.250000,0,0);}
.m96_c00317{transform:matrix(0.282005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282005,0.000000,0.000000,0.250000,0,0);}
.m55_c00317{transform:matrix(0.282879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282879,0.000000,0.000000,0.250000,0,0);}
.m77_c00317{transform:matrix(0.284313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284313,0.000000,0.000000,0.250000,0,0);}
.mb3_c00317{transform:matrix(0.284755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284755,0.000000,0.000000,0.250000,0,0);}
.mb0_c00317{transform:matrix(0.284845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284845,0.000000,0.000000,0.250000,0,0);}
.m87_c00317{transform:matrix(0.285470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285470,0.000000,0.000000,0.250000,0,0);}
.maa_c00317{transform:matrix(0.286107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286107,0.000000,0.000000,0.250000,0,0);}
.m5c_c00317{transform:matrix(0.286195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286195,0.000000,0.000000,0.250000,0,0);}
.m66_c00317{transform:matrix(0.286335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286335,0.000000,0.000000,0.250000,0,0);}
.m69_c00317{transform:matrix(0.287317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287317,0.000000,0.000000,0.250000,0,0);}
.m83_c00317{transform:matrix(0.288034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288034,0.000000,0.000000,0.250000,0,0);}
.m9a_c00317{transform:matrix(0.288637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288637,0.000000,0.000000,0.250000,0,0);}
.mb8_c00317{transform:matrix(0.288935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288935,0.000000,0.000000,0.250000,0,0);}
.mb2_c00317{transform:matrix(0.290582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290582,0.000000,0.000000,0.250000,0,0);}
.m88_c00317{transform:matrix(0.290763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290763,0.000000,0.000000,0.250000,0,0);}
.m41_c00317{transform:matrix(0.290924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290924,0.000000,0.000000,0.250000,0,0);}
.m61_c00317{transform:matrix(0.291216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291216,0.000000,0.000000,0.250000,0,0);}
.m7f_c00317{transform:matrix(0.293087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293087,0.000000,0.000000,0.250000,0,0);}
.m86_c00317{transform:matrix(0.294104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294104,0.000000,0.000000,0.250000,0,0);}
.m95_c00317{transform:matrix(0.295815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295815,0.000000,0.000000,0.250000,0,0);}
.m9c_c00317{transform:matrix(0.296324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296324,0.000000,0.000000,0.250000,0,0);}
.m1c_c00317{transform:matrix(0.297702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297702,0.000000,0.000000,0.250000,0,0);}
.m73_c00317{transform:matrix(0.298140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298140,0.000000,0.000000,0.250000,0,0);}
.m68_c00317{transform:matrix(0.298435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298435,0.000000,0.000000,0.250000,0,0);}
.m4f_c00317{transform:matrix(0.298512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298512,0.000000,0.000000,0.250000,0,0);}
.m6c_c00317{transform:matrix(0.298577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298577,0.000000,0.000000,0.250000,0,0);}
.m5e_c00317{transform:matrix(0.299871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299871,0.000000,0.000000,0.250000,0,0);}
.m7d_c00317{transform:matrix(0.302790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302790,0.000000,0.000000,0.250000,0,0);}
.m62_c00317{transform:matrix(0.304226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304226,0.000000,0.000000,0.250000,0,0);}
.m9d_c00317{transform:matrix(0.304736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304736,0.000000,0.000000,0.250000,0,0);}
.m94_c00317{transform:matrix(0.306189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306189,0.000000,0.000000,0.250000,0,0);}
.m8d_c00317{transform:matrix(0.306687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306687,0.000000,0.000000,0.250000,0,0);}
.m15_c00317{transform:matrix(0.307502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307502,0.000000,0.000000,0.250000,0,0);}
.m74_c00317{transform:matrix(0.307886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307886,0.000000,0.000000,0.250000,0,0);}
.m81_c00317{transform:matrix(0.309463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309463,0.000000,0.000000,0.250000,0,0);}
.m3e_c00317{transform:matrix(0.312382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312382,0.000000,0.000000,0.250000,0,0);}
.m4e_c00317{transform:matrix(0.312640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312640,0.000000,0.000000,0.250000,0,0);}
.ma7_c00317{transform:matrix(0.314004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314004,0.000000,0.000000,0.250000,0,0);}
.m7c_c00317{transform:matrix(0.314559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314559,0.000000,0.000000,0.250000,0,0);}
.m57_c00317{transform:matrix(0.314695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314695,0.000000,0.000000,0.250000,0,0);}
.m7e_c00317{transform:matrix(0.315687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315687,0.000000,0.000000,0.250000,0,0);}
.ma9_c00317{transform:matrix(0.319853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319853,0.000000,0.000000,0.250000,0,0);}
.m3c_c00317{transform:matrix(0.320100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320100,0.000000,0.000000,0.250000,0,0);}
.m79_c00317{transform:matrix(0.320612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320612,0.000000,0.000000,0.250000,0,0);}
.m5d_c00317{transform:matrix(0.321190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321190,0.000000,0.000000,0.250000,0,0);}
.m16_c00317{transform:matrix(0.321675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321675,0.000000,0.000000,0.250000,0,0);}
.mb6_c00317{transform:matrix(0.323774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323774,0.000000,0.000000,0.250000,0,0);}
.m98_c00317{transform:matrix(0.323777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323777,0.000000,0.000000,0.250000,0,0);}
.m7a_c00317{transform:matrix(0.325010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325010,0.000000,0.000000,0.250000,0,0);}
.m97_c00317{transform:matrix(0.325012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325012,0.000000,0.000000,0.250000,0,0);}
.m63_c00317{transform:matrix(0.325299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325299,0.000000,0.000000,0.250000,0,0);}
.ma2_c00317{transform:matrix(0.330782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330782,0.000000,0.000000,0.250000,0,0);}
.m82_c00317{transform:matrix(0.331143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331143,0.000000,0.000000,0.250000,0,0);}
.m8f_c00317{transform:matrix(0.335335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335335,0.000000,0.000000,0.250000,0,0);}
.mac_c00317{transform:matrix(0.336616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336616,0.000000,0.000000,0.250000,0,0);}
.m4_c00317{transform:matrix(0.339300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339300,0.000000,0.000000,0.250000,0,0);}
.m84_c00317{transform:matrix(0.341941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341941,0.000000,0.000000,0.250000,0,0);}
.m6b_c00317{transform:matrix(0.344087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344087,0.000000,0.000000,0.250000,0,0);}
.mb1_c00317{transform:matrix(0.349386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349386,0.000000,0.000000,0.250000,0,0);}
.m6d_c00317{transform:matrix(0.350846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350846,0.000000,0.000000,0.250000,0,0);}
.m2a_c00317{transform:matrix(0.355008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355008,0.000000,0.000000,0.250000,0,0);}
.m9e_c00317{transform:matrix(0.355212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355212,0.000000,0.000000,0.250000,0,0);}
.m8e_c00317{transform:matrix(0.355673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355673,0.000000,0.000000,0.250000,0,0);}
.m92_c00317{transform:matrix(0.356182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356182,0.000000,0.000000,0.250000,0,0);}
.m6_c00317{transform:matrix(0.359545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359545,0.000000,0.000000,0.250000,0,0);}
.m4d_c00317{transform:matrix(0.361805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361805,0.000000,0.000000,0.250000,0,0);}
.m8b_c00317{transform:matrix(0.362778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362778,0.000000,0.000000,0.250000,0,0);}
.m60_c00317{transform:matrix(0.365826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365826,0.000000,0.000000,0.250000,0,0);}
.m9b_c00317{transform:matrix(0.374682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374682,0.000000,0.000000,0.250000,0,0);}
.mb7_c00317{transform:matrix(0.375817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375817,0.000000,0.000000,0.250000,0,0);}
.m9f_c00317{transform:matrix(0.389162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389162,0.000000,0.000000,0.250000,0,0);}
.m90_c00317{transform:matrix(0.390710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390710,0.000000,0.000000,0.250000,0,0);}
.m6f_c00317{transform:matrix(0.402354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402354,0.000000,0.000000,0.250000,0,0);}
.m76_c00317{transform:matrix(0.402388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402388,0.000000,0.000000,0.250000,0,0);}
.m78_c00317{transform:matrix(0.405907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405907,0.000000,0.000000,0.250000,0,0);}
.m6e_c00317{transform:matrix(0.409574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409574,0.000000,0.000000,0.250000,0,0);}
.mb_c00317{transform:matrix(0.426792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426792,0.000000,0.000000,0.250000,0,0);}
.m56_c00317{transform:matrix(0.438020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438020,0.000000,0.000000,0.250000,0,0);}
.ma1_c00317{transform:matrix(0.444441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444441,0.000000,0.000000,0.250000,0,0);}
.ma4_c00317{transform:matrix(0.453647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453647,0.000000,0.000000,0.250000,0,0);}
.m4b_c00317{transform:matrix(0.473680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473680,0.000000,0.000000,0.250000,0,0);}
.v2_c00317{vertical-align:-27.106200px;}
.v0_c00317{vertical-align:0.000000px;}
.v1_c00317{vertical-align:19.938600px;}
.lsb_c00317{letter-spacing:-2.564100px;}
.ls2f_c00317{letter-spacing:-2.508667px;}
.ls20_c00317{letter-spacing:-2.432430px;}
.ls24_c00317{letter-spacing:-2.397780px;}
.ls23_c00317{letter-spacing:-2.328480px;}
.ls2d_c00317{letter-spacing:-2.314627px;}
.ls22_c00317{letter-spacing:-2.259180px;}
.ls1b_c00317{letter-spacing:-2.245327px;}
.ls18_c00317{letter-spacing:-2.224530px;}
.ls25_c00317{letter-spacing:-2.092867px;}
.ls1f_c00317{letter-spacing:-2.023567px;}
.lsf_c00317{letter-spacing:-2.002770px;}
.ls16_c00317{letter-spacing:-1.926540px;}
.lsc_c00317{letter-spacing:-1.878030px;}
.ls2b_c00317{letter-spacing:-1.746367px;}
.ls2a_c00317{letter-spacing:-1.718640px;}
.ls36_c00317{letter-spacing:-1.533871px;}
.ls19_c00317{letter-spacing:-1.510740px;}
.ls11_c00317{letter-spacing:-1.441440px;}
.ls17_c00317{letter-spacing:-1.418319px;}
.ls35_c00317{letter-spacing:-1.390518px;}
.ls34_c00317{letter-spacing:-1.386000px;}
.ls5_c00317{letter-spacing:-1.382125px;}
.ls4_c00317{letter-spacing:-1.316700px;}
.ls3d_c00317{letter-spacing:-1.297339px;}
.ls6_c00317{letter-spacing:-1.282050px;}
.ls8_c00317{letter-spacing:-0.997920px;}
.ls3a_c00317{letter-spacing:-0.665280px;}
.ls15_c00317{letter-spacing:-0.594594px;}
.ls38_c00317{letter-spacing:-0.279537px;}
.ls1a_c00317{letter-spacing:-0.271933px;}
.ls3_c00317{letter-spacing:0.000000px;}
.ls9_c00317{letter-spacing:0.453342px;}
.ls1_c00317{letter-spacing:0.513931px;}
.ls13_c00317{letter-spacing:1.257300px;}
.ls32_c00317{letter-spacing:1.404853px;}
.ls2c_c00317{letter-spacing:1.683000px;}
.ls33_c00317{letter-spacing:1.763234px;}
.ls7_c00317{letter-spacing:1.831500px;}
.ls10_c00317{letter-spacing:2.122936px;}
.ls14_c00317{letter-spacing:2.148310px;}
.ls37_c00317{letter-spacing:2.237400px;}
.ls39_c00317{letter-spacing:2.415488px;}
.ls29_c00317{letter-spacing:2.455200px;}
.lsd_c00317{letter-spacing:2.682900px;}
.ls1c_c00317{letter-spacing:3.078900px;}
.ls2_c00317{letter-spacing:3.132250px;}
.ls31_c00317{letter-spacing:3.306610px;}
.ls1d_c00317{letter-spacing:3.425400px;}
.ls30_c00317{letter-spacing:3.524400px;}
.ls2e_c00317{letter-spacing:3.583810px;}
.ls0_c00317{letter-spacing:8.625925px;}
.ls3b_c00317{letter-spacing:12.830598px;}
.lsa_c00317{letter-spacing:31.363200px;}
.ls28_c00317{letter-spacing:34.214598px;}
.ls26_c00317{letter-spacing:42.768000px;}
.ls12_c00317{letter-spacing:45.619398px;}
.ls3c_c00317{letter-spacing:49.896198px;}
.ls1e_c00317{letter-spacing:52.747398px;}
.lse_c00317{letter-spacing:55.598598px;}
.ls21_c00317{letter-spacing:86.961798px;}
.ls27_c00317{letter-spacing:91.238598px;}
.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;}
}
.ws1_c00317{word-spacing:-17.919050px;}
.ws4_c00317{word-spacing:-16.621710px;}
.ws0_c00317{word-spacing:-0.503431px;}
.ws5_c00317{word-spacing:0.000000px;}
.ws2_c00317{word-spacing:1.721307px;}
.ws3_c00317{word-spacing:6.020867px;}
._0_c00317{margin-left:-193.565592px;}
._c_c00317{margin-left:-24.256771px;}
._7_c00317{margin-left:-15.404499px;}
._18_c00317{margin-left:-13.905210px;}
._17_c00317{margin-left:-7.955690px;}
._6_c00317{margin-left:-6.444949px;}
._4_c00317{margin-left:-2.603799px;}
._a_c00317{margin-left:-1.369368px;}
._1_c00317{width:4.408358px;}
._e_c00317{width:7.693479px;}
._16_c00317{width:8.743581px;}
._3_c00317{width:10.442212px;}
._2_c00317{width:11.893145px;}
._b_c00317{width:15.508047px;}
._5_c00317{width:22.156200px;}
._d_c00317{width:24.354000px;}
._11_c00317{width:26.387009px;}
._14_c00317{width:28.383839px;}
._12_c00317{width:30.709652px;}
._13_c00317{width:33.719251px;}
._9_c00317{width:36.287801px;}
._15_c00317{width:38.633471px;}
._8_c00317{width:39.778200px;}
._19_c00317{width:41.571981px;}
._f_c00317{width:48.238239px;}
._10_c00317{width:49.671551px;}
.fc0_c00317{color:transparent;}
.fs36_c00317{font-size:12.830598px;}
.fs35_c00317{font-size:19.008000px;}
.fs28_c00317{font-size:22.572000px;}
.fsc_c00317{font-size:25.146000px;}
.fs2_c00317{font-size:27.720000px;}
.fs1_c00317{font-size:28.314000px;}
.fs8_c00317{font-size:28.512000px;}
.fsd_c00317{font-size:31.363200px;}
.fs0_c00317{font-size:33.264000px;}
.fs2e_c00317{font-size:33.660000px;}
.fs2c_c00317{font-size:34.214598px;}
.fs7_c00317{font-size:36.630000px;}
.fs3_c00317{font-size:37.620000px;}
.fs17_c00317{font-size:38.610000px;}
.fse_c00317{font-size:39.600000px;}
.fs14_c00317{font-size:41.184000px;}
.fs2a_c00317{font-size:42.768000px;}
.fs16_c00317{font-size:42.966198px;}
.fs1c_c00317{font-size:43.164000px;}
.fs34_c00317{font-size:44.748000px;}
.fs1f_c00317{font-size:45.144000px;}
.fs15_c00317{font-size:45.619398px;}
.fs9_c00317{font-size:47.718000px;}
.fs1a_c00317{font-size:47.916198px;}
.fs2d_c00317{font-size:49.104000px;}
.fs4_c00317{font-size:49.896198px;}
.fs27_c00317{font-size:50.688000px;}
.fs21_c00317{font-size:52.747398px;}
.fs11_c00317{font-size:53.658000px;}
.fs18_c00317{font-size:55.044000px;}
.fs12_c00317{font-size:55.598598px;}
.fs5_c00317{font-size:55.836198px;}
.fs20_c00317{font-size:56.628000px;}
.fs13_c00317{font-size:57.222000px;}
.fs22_c00317{font-size:57.816198px;}
.fs29_c00317{font-size:59.796198px;}
.fs31_c00317{font-size:60.588000px;}
.fs1e_c00317{font-size:61.578000px;}
.fs33_c00317{font-size:62.568000px;}
.fs1b_c00317{font-size:63.558000px;}
.fs1d_c00317{font-size:64.152198px;}
.fs26_c00317{font-size:64.548000px;}
.fs2f_c00317{font-size:66.132198px;}
.fsb_c00317{font-size:66.528000px;}
.fs6_c00317{font-size:67.716198px;}
.fs19_c00317{font-size:68.508000px;}
.fs10_c00317{font-size:69.300000px;}
.fs24_c00317{font-size:69.498000px;}
.fs32_c00317{font-size:70.488000px;}
.fs30_c00317{font-size:71.676198px;}
.fsf_c00317{font-size:73.260000px;}
.fsa_c00317{font-size:83.952198px;}
.fs25_c00317{font-size:86.961798px;}
.fs2b_c00317{font-size:91.238598px;}
.fs23_c00317{font-size:95.436198px;}
.y0_c00317{bottom:0.000000px;}
.y2a_c00317{bottom:46.238985px;}
.y29_c00317{bottom:64.776735px;}
.y1_c00317{bottom:76.500000px;}
.y28_c00317{bottom:144.253935px;}
.y27_c00317{bottom:173.117385px;}
.y26_c00317{bottom:206.267535px;}
.y25_c00317{bottom:210.187935px;}
.y24_c00317{bottom:244.397385px;}
.y23_c00317{bottom:274.334985px;}
.y22_c00317{bottom:306.415935px;}
.y21_c00317{bottom:340.268985px;}
.y20_c00317{bottom:371.988585px;}
.y1f_c00317{bottom:431.507385px;}
.y1e_c00317{bottom:436.853385px;}
.y1d_c00317{bottom:468.934335px;}
.y17_c00317{bottom:534.868335px;}
.y1b_c00317{bottom:598.302585px;}
.y1a_c00317{bottom:603.648585px;}
.y1c_c00317{bottom:634.660335px;}
.y2_c00317{bottom:658.182735px;}
.y16_c00317{bottom:662.098185px;}
.y19_c00317{bottom:666.731385px;}
.y18_c00317{bottom:697.738185px;}
.y15_c00317{bottom:727.319385px;}
.y13_c00317{bottom:749.064735px;}
.y3_c00317{bottom:753.341535px;}
.y14_c00317{bottom:763.677135px;}
.y12_c00317{bottom:791.832735px;}
.y10_c00317{bottom:792.189135px;}
.y11_c00317{bottom:797.173785px;}
.yf_c00317{bottom:802.524735px;}
.y9_c00317{bottom:814.285935px;}
.y8_c00317{bottom:892.693935px;}
.ye_c00317{bottom:903.385935px;}
.yd_c00317{bottom:910.870335px;}
.y7_c00317{bottom:915.498585px;}
.yc_c00317{bottom:921.557385px;}
.y6_c00317{bottom:921.913785px;}
.y5_c00317{bottom:926.190585px;}
.yb_c00317{bottom:934.392735px;}
.y4_c00317{bottom:1034.179785px;}
.ya_c00317{bottom:1075.522185px;}
.h37_c00317{height:8.545178px;}
.h36_c00317{height:19.156500px;}
.he_c00317{height:20.887891px;}
.h2c_c00317{height:22.786922px;}
.h28_c00317{height:23.541891px;}
.hd_c00317{height:26.226492px;}
.h2a_c00317{height:28.483488px;}
.h9_c00317{height:28.734750px;}
.h3_c00317{height:28.911094px;}
.h4_c00317{height:29.530617px;}
.h17_c00317{height:30.382519px;}
.h2f_c00317{height:33.019014px;}
.h38_c00317{height:33.230868px;}
.h2_c00317{height:34.693313px;}
.h20_c00317{height:35.129767px;}
.h16_c00317{height:35.950342px;}
.h6_c00317{height:36.903604px;}
.h8_c00317{height:36.916172px;}
.h5_c00317{height:36.921973px;}
.h13_c00317{height:37.028666px;}
.h15_c00317{height:40.419844px;}
.hf_c00317{height:41.301563px;}
.h18_c00317{height:42.168974px;}
.h1c_c00317{height:43.501219px;}
.h35_c00317{height:46.670766px;}
.h2d_c00317{height:48.192891px;}
.ha_c00317{height:49.768383px;}
.h2e_c00317{height:52.040175px;}
.h12_c00317{height:52.662393px;}
.h14_c00317{height:56.160264px;}
.h19_c00317{height:57.409172px;}
.h24_c00317{height:57.916557px;}
.h25_c00317{height:58.267887px;}
.h29_c00317{height:58.686698px;}
.h1f_c00317{height:59.061234px;}
.h32_c00317{height:59.463809px;}
.h21_c00317{height:60.300488px;}
.h2b_c00317{height:60.764906px;}
.h1d_c00317{height:62.961874px;}
.h1e_c00317{height:64.223930px;}
.h26_c00317{height:65.052281px;}
.h34_c00317{height:65.256469px;}
.h27_c00317{height:65.293594px;}
.h1b_c00317{height:66.289008px;}
.h7_c00317{height:66.459745px;}
.h1a_c00317{height:67.236855px;}
.h23_c00317{height:68.208486px;}
.h30_c00317{height:68.973816px;}
.hc_c00317{height:69.386625px;}
.h31_c00317{height:70.346269px;}
.h11_c00317{height:72.600993px;}
.h33_c00317{height:73.516781px;}
.h10_c00317{height:73.832344px;}
.hb_c00317{height:82.394491px;}
.h22_c00317{height:93.665409px;}
.h1_c00317{height:1110.000000px;}
.h0_c00317{height:1263.000000px;}
.w1_c00317{width:781.500000px;}
.w0_c00317{width:892.500000px;}
.x0_c00317{left:0.000000px;}
.x2_c00317{left:53.823285px;}
.x1_c00317{left:55.500000px;}
.x60_c00317{left:93.779685px;}
.x8d_c00317{left:95.056785px;}
.x91_c00317{left:96.422985px;}
.x6c_c00317{left:105.174585px;}
.x3_c00317{left:109.797885px;}
.x61_c00317{left:114.475635px;}
.x75_c00317{left:118.465335px;}
.x76_c00317{left:121.672935px;}
.x6d_c00317{left:125.791335px;}
.x77_c00317{left:136.280385px;}
.x8e_c00317{left:137.507985px;}
.x2f_c00317{left:145.195335px;}
.x53_c00317{left:146.982285px;}
.x6e_c00317{left:158.174235px;}
.x54_c00317{left:161.857035px;}
.x62_c00317{left:169.603785px;}
.x31_c00317{left:181.280835px;}
.x43_c00317{left:187.463385px;}
.x32_c00317{left:191.388735px;}
.x78_c00317{left:202.357935px;}
.x33_c00317{left:213.267735px;}
.x8f_c00317{left:214.500285px;}
.x6f_c00317{left:225.202185px;}
.x79_c00317{left:235.250685px;}
.x34_c00317{left:236.790135px;}
.x35_c00317{left:246.412935px;}
.x4_c00317{left:256.213935px;}
.x36_c00317{left:257.456385px;}
.x70_c00317{left:259.025535px;}
.x55_c00317{left:264.940785px;}
.x37_c00317{left:267.960285px;}
.x87_c00317{left:269.014635px;}
.x16_c00317{left:270.237285px;}
.x63_c00317{left:271.781685px;}
.x7a_c00317{left:281.147085px;}
.x56_c00317{left:291.670785px;}
.x57_c00317{left:302.367735px;}
.x8b_c00317{left:305.867385px;}
.x38_c00317{left:310.812435px;}
.x64_c00317{left:313.381485px;}
.x88_c00317{left:314.579385px;}
.x82_c00317{left:315.886185px;}
.x5_c00317{left:323.420085px;}
.x58_c00317{left:324.657585px;}
.x6_c00317{left:327.281085px;}
.x9_c00317{left:328.647285px;}
.x39_c00317{left:331.236135px;}
.xa_c00317{left:334.631835px;}
.x21_c00317{left:335.715885px;}
.x7_c00317{left:338.631435px;}
.xb_c00317{left:341.814285px;}
.x8_c00317{left:342.918135px;}
.x59_c00317{left:347.110785px;}
.xc_c00317{left:351.783585px;}
.x65_c00317{left:357.629535px;}
.xd_c00317{left:358.713585px;}
.xf_c00317{left:362.485485px;}
.x10_c00317{left:364.544685px;}
.x22_c00317{left:368.653185px;}
.x92_c00317{left:371.395485px;}
.xe_c00317{left:374.593185px;}
.x23_c00317{left:379.850085px;}
.x17_c00317{left:385.136685px;}
.x89_c00317{left:390.967785px;}
.x24_c00317{left:401.694435px;}
.x71_c00317{left:403.025985px;}
.x25_c00317{left:412.262685px;}
.x93_c00317{left:414.084285px;}
.x26_c00317{left:425.885085px;}
.x72_c00317{left:435.106935px;}
.x66_c00317{left:437.141385px;}
.x18_c00317{left:442.784385px;}
.x5a_c00317{left:446.477085px;}
.x47_c00317{left:456.327585px;}
.x83_c00317{left:457.505685px;}
.x94_c00317{left:464.391135px;}
.x5b_c00317{left:467.371035px;}
.x19_c00317{left:469.153035px;}
.x27_c00317{left:479.097585px;}
.x3a_c00317{left:480.567735px;}
.x1a_c00317{left:490.190535px;}
.x8c_c00317{left:494.467335px;}
.x44_c00317{left:500.248935px;}
.x4b_c00317{left:501.268635px;}
.x7e_c00317{left:502.426935px;}
.x3b_c00317{left:505.154385px;}
.x1b_c00317{left:510.505335px;}
.x67_c00317{left:512.564535px;}
.x3c_c00317{left:519.415335px;}
.x48_c00317{left:523.122885px;}
.x49_c00317{left:526.761135px;}
.x3d_c00317{left:529.389585px;}
.x11_c00317{left:533.849535px;}
.x8a_c00317{left:535.215735px;}
.x28_c00317{left:537.779835px;}
.x4c_c00317{left:545.353335px;}
.x45_c00317{left:547.927335px;}
.x29_c00317{left:549.516285px;}
.x4a_c00317{left:550.768635px;}
.x90_c00317{left:554.654385px;}
.x3e_c00317{left:555.763185px;}
.x68_c00317{left:557.317485px;}
.x3f_c00317{left:562.896135px;}
.x7b_c00317{left:567.608535px;}
.x1c_c00317{left:569.242035px;}
.x40_c00317{left:575.013735px;}
.x41_c00317{left:578.874735px;}
.x73_c00317{left:581.562585px;}
.x7c_c00317{left:585.304785px;}
.x5c_c00317{left:590.333985px;}
.x1d_c00317{left:591.962535px;}
.x2a_c00317{left:599.818185px;}
.x42_c00317{left:601.852635px;}
.x95_c00317{left:603.035685px;}
.x4f_c00317{left:604.134585px;}
.x1e_c00317{left:606.277935px;}
.x4d_c00317{left:607.946085px;}
.x7f_c00317{left:610.965585px;}
.x2b_c00317{left:613.118835px;}
.x50_c00317{left:614.930535px;}
.x4e_c00317{left:616.539285px;}
.x51_c00317{left:623.122785px;}
.x30_c00317{left:628.825185px;}
.x2c_c00317{left:634.190985px;}
.x2d_c00317{left:639.814185px;}
.x46_c00317{left:641.724885px;}
.x86_c00317{left:643.298985px;}
.x1f_c00317{left:644.788935px;}
.x7d_c00317{left:646.090785px;}
.x5d_c00317{left:648.446985px;}
.x20_c00317{left:651.263535px;}
.x2e_c00317{left:656.267985px;}
.x80_c00317{left:658.282635px;}
.x81_c00317{left:664.445385px;}
.x69_c00317{left:666.623385px;}
.x12_c00317{left:668.133135px;}
.x84_c00317{left:679.191435px;}
.x74_c00317{left:688.210335px;}
.x6a_c00317{left:689.729985px;}
.x5e_c00317{left:700.095285px;}
.x52_c00317{left:702.713835px;}
.x13_c00317{left:704.119635px;}
.x14_c00317{left:705.634335px;}
.x15_c00317{left:708.416235px;}
.x6b_c00317{left:722.696985px;}
.x5f_c00317{left:747.773685px;}
.x85_c00317{left:769.226985px;}
@media print{
.v2_c00317{vertical-align:-24.094400pt;}
.v0_c00317{vertical-align:0.000000pt;}
.v1_c00317{vertical-align:17.723200pt;}
.lsb_c00317{letter-spacing:-2.279200pt;}
.ls2f_c00317{letter-spacing:-2.229926pt;}
.ls20_c00317{letter-spacing:-2.162160pt;}
.ls24_c00317{letter-spacing:-2.131360pt;}
.ls23_c00317{letter-spacing:-2.069760pt;}
.ls2d_c00317{letter-spacing:-2.057446pt;}
.ls22_c00317{letter-spacing:-2.008160pt;}
.ls1b_c00317{letter-spacing:-1.995846pt;}
.ls18_c00317{letter-spacing:-1.977360pt;}
.ls25_c00317{letter-spacing:-1.860326pt;}
.ls1f_c00317{letter-spacing:-1.798726pt;}
.lsf_c00317{letter-spacing:-1.780240pt;}
.ls16_c00317{letter-spacing:-1.712480pt;}
.lsc_c00317{letter-spacing:-1.669360pt;}
.ls2b_c00317{letter-spacing:-1.552326pt;}
.ls2a_c00317{letter-spacing:-1.527680pt;}
.ls36_c00317{letter-spacing:-1.363441pt;}
.ls19_c00317{letter-spacing:-1.342880pt;}
.ls11_c00317{letter-spacing:-1.281280pt;}
.ls17_c00317{letter-spacing:-1.260728pt;}
.ls35_c00317{letter-spacing:-1.236016pt;}
.ls34_c00317{letter-spacing:-1.232000pt;}
.ls5_c00317{letter-spacing:-1.228555pt;}
.ls4_c00317{letter-spacing:-1.170400pt;}
.ls3d_c00317{letter-spacing:-1.153190pt;}
.ls6_c00317{letter-spacing:-1.139600pt;}
.ls8_c00317{letter-spacing:-0.887040pt;}
.ls3a_c00317{letter-spacing:-0.591360pt;}
.ls15_c00317{letter-spacing:-0.528528pt;}
.ls38_c00317{letter-spacing:-0.248477pt;}
.ls1a_c00317{letter-spacing:-0.241718pt;}
.ls3_c00317{letter-spacing:0.000000pt;}
.ls9_c00317{letter-spacing:0.402971pt;}
.ls1_c00317{letter-spacing:0.456827pt;}
.ls13_c00317{letter-spacing:1.117600pt;}
.ls32_c00317{letter-spacing:1.248759pt;}
.ls2c_c00317{letter-spacing:1.496000pt;}
.ls33_c00317{letter-spacing:1.567320pt;}
.ls7_c00317{letter-spacing:1.628000pt;}
.ls10_c00317{letter-spacing:1.887054pt;}
.ls14_c00317{letter-spacing:1.909609pt;}
.ls37_c00317{letter-spacing:1.988800pt;}
.ls39_c00317{letter-spacing:2.147100pt;}
.ls29_c00317{letter-spacing:2.182400pt;}
.lsd_c00317{letter-spacing:2.384800pt;}
.ls1c_c00317{letter-spacing:2.736800pt;}
.ls2_c00317{letter-spacing:2.784222pt;}
.ls31_c00317{letter-spacing:2.939209pt;}
.ls1d_c00317{letter-spacing:3.044800pt;}
.ls30_c00317{letter-spacing:3.132800pt;}
.ls2e_c00317{letter-spacing:3.185609pt;}
.ls0_c00317{letter-spacing:7.667489pt;}
.ls3b_c00317{letter-spacing:11.404976pt;}
.lsa_c00317{letter-spacing:27.878400pt;}
.ls28_c00317{letter-spacing:30.412976pt;}
.ls26_c00317{letter-spacing:38.016000pt;}
.ls12_c00317{letter-spacing:40.550576pt;}
.ls3c_c00317{letter-spacing:44.352176pt;}
.ls1e_c00317{letter-spacing:46.886576pt;}
.lse_c00317{letter-spacing:49.420976pt;}
.ls21_c00317{letter-spacing:77.299376pt;}
.ls27_c00317{letter-spacing:81.100976pt;}
.ws1_c00317{word-spacing:-15.928044pt;}
.ws4_c00317{word-spacing:-14.774854pt;}
.ws0_c00317{word-spacing:-0.447495pt;}
.ws5_c00317{word-spacing:0.000000pt;}
.ws2_c00317{word-spacing:1.530051pt;}
.ws3_c00317{word-spacing:5.351881pt;}
._0_c00317{margin-left:-172.058304pt;}
._c_c00317{margin-left:-21.561574pt;}
._7_c00317{margin-left:-13.692888pt;}
._18_c00317{margin-left:-12.360187pt;}
._17_c00317{margin-left:-7.071724pt;}
._6_c00317{margin-left:-5.728844pt;}
._4_c00317{margin-left:-2.314488pt;}
._a_c00317{margin-left:-1.217216pt;}
._1_c00317{width:3.918540pt;}
._e_c00317{width:6.838648pt;}
._16_c00317{width:7.772072pt;}
._3_c00317{width:9.281966pt;}
._2_c00317{width:10.571684pt;}
._b_c00317{width:13.784931pt;}
._5_c00317{width:19.694400pt;}
._d_c00317{width:21.648000pt;}
._11_c00317{width:23.455119pt;}
._14_c00317{width:25.230079pt;}
._12_c00317{width:27.297468pt;}
._13_c00317{width:29.972668pt;}
._9_c00317{width:32.255823pt;}
._15_c00317{width:34.340863pt;}
._8_c00317{width:35.358400pt;}
._19_c00317{width:36.952872pt;}
._f_c00317{width:42.878435pt;}
._10_c00317{width:44.152489pt;}
.fs36_c00317{font-size:11.404976pt;}
.fs35_c00317{font-size:16.896000pt;}
.fs28_c00317{font-size:20.064000pt;}
.fsc_c00317{font-size:22.352000pt;}
.fs2_c00317{font-size:24.640000pt;}
.fs1_c00317{font-size:25.168000pt;}
.fs8_c00317{font-size:25.344000pt;}
.fsd_c00317{font-size:27.878400pt;}
.fs0_c00317{font-size:29.568000pt;}
.fs2e_c00317{font-size:29.920000pt;}
.fs2c_c00317{font-size:30.412976pt;}
.fs7_c00317{font-size:32.560000pt;}
.fs3_c00317{font-size:33.440000pt;}
.fs17_c00317{font-size:34.320000pt;}
.fse_c00317{font-size:35.200000pt;}
.fs14_c00317{font-size:36.608000pt;}
.fs2a_c00317{font-size:38.016000pt;}
.fs16_c00317{font-size:38.192176pt;}
.fs1c_c00317{font-size:38.368000pt;}
.fs34_c00317{font-size:39.776000pt;}
.fs1f_c00317{font-size:40.128000pt;}
.fs15_c00317{font-size:40.550576pt;}
.fs9_c00317{font-size:42.416000pt;}
.fs1a_c00317{font-size:42.592176pt;}
.fs2d_c00317{font-size:43.648000pt;}
.fs4_c00317{font-size:44.352176pt;}
.fs27_c00317{font-size:45.056000pt;}
.fs21_c00317{font-size:46.886576pt;}
.fs11_c00317{font-size:47.696000pt;}
.fs18_c00317{font-size:48.928000pt;}
.fs12_c00317{font-size:49.420976pt;}
.fs5_c00317{font-size:49.632176pt;}
.fs20_c00317{font-size:50.336000pt;}
.fs13_c00317{font-size:50.864000pt;}
.fs22_c00317{font-size:51.392176pt;}
.fs29_c00317{font-size:53.152176pt;}
.fs31_c00317{font-size:53.856000pt;}
.fs1e_c00317{font-size:54.736000pt;}
.fs33_c00317{font-size:55.616000pt;}
.fs1b_c00317{font-size:56.496000pt;}
.fs1d_c00317{font-size:57.024176pt;}
.fs26_c00317{font-size:57.376000pt;}
.fs2f_c00317{font-size:58.784176pt;}
.fsb_c00317{font-size:59.136000pt;}
.fs6_c00317{font-size:60.192176pt;}
.fs19_c00317{font-size:60.896000pt;}
.fs10_c00317{font-size:61.600000pt;}
.fs24_c00317{font-size:61.776000pt;}
.fs32_c00317{font-size:62.656000pt;}
.fs30_c00317{font-size:63.712176pt;}
.fsf_c00317{font-size:65.120000pt;}
.fsa_c00317{font-size:74.624176pt;}
.fs25_c00317{font-size:77.299376pt;}
.fs2b_c00317{font-size:81.100976pt;}
.fs23_c00317{font-size:84.832176pt;}
.y0_c00317{bottom:0.000000pt;}
.y2a_c00317{bottom:41.101320pt;}
.y29_c00317{bottom:57.579320pt;}
.y1_c00317{bottom:68.000000pt;}
.y28_c00317{bottom:128.225720pt;}
.y27_c00317{bottom:153.882120pt;}
.y26_c00317{bottom:183.348920pt;}
.y25_c00317{bottom:186.833720pt;}
.y24_c00317{bottom:217.242120pt;}
.y23_c00317{bottom:243.853320pt;}
.y22_c00317{bottom:272.369720pt;}
.y21_c00317{bottom:302.461320pt;}
.y20_c00317{bottom:330.656520pt;}
.y1f_c00317{bottom:383.562120pt;}
.y1e_c00317{bottom:388.314120pt;}
.y1d_c00317{bottom:416.830520pt;}
.y17_c00317{bottom:475.438520pt;}
.y1b_c00317{bottom:531.824520pt;}
.y1a_c00317{bottom:536.576520pt;}
.y1c_c00317{bottom:564.142520pt;}
.y2_c00317{bottom:585.051320pt;}
.y16_c00317{bottom:588.531720pt;}
.y19_c00317{bottom:592.650120pt;}
.y18_c00317{bottom:620.211720pt;}
.y15_c00317{bottom:646.506120pt;}
.y13_c00317{bottom:665.835320pt;}
.y3_c00317{bottom:669.636920pt;}
.y14_c00317{bottom:678.824120pt;}
.y12_c00317{bottom:703.851320pt;}
.y10_c00317{bottom:704.168120pt;}
.y11_c00317{bottom:708.598920pt;}
.yf_c00317{bottom:713.355320pt;}
.y9_c00317{bottom:723.809720pt;}
.y8_c00317{bottom:793.505720pt;}
.ye_c00317{bottom:803.009720pt;}
.yd_c00317{bottom:809.662520pt;}
.y7_c00317{bottom:813.776520pt;}
.yc_c00317{bottom:819.162120pt;}
.y6_c00317{bottom:819.478920pt;}
.y5_c00317{bottom:823.280520pt;}
.yb_c00317{bottom:830.571320pt;}
.y4_c00317{bottom:919.270920pt;}
.ya_c00317{bottom:956.019720pt;}
.h37_c00317{height:7.595714pt;}
.h36_c00317{height:17.028000pt;}
.he_c00317{height:18.567014pt;}
.h2c_c00317{height:20.255042pt;}
.h28_c00317{height:20.926125pt;}
.hd_c00317{height:23.312438pt;}
.h2a_c00317{height:25.318656pt;}
.h9_c00317{height:25.542000pt;}
.h3_c00317{height:25.698750pt;}
.h4_c00317{height:26.249438pt;}
.h17_c00317{height:27.006684pt;}
.h2f_c00317{height:29.350234pt;}
.h38_c00317{height:29.538549pt;}
.h2_c00317{height:30.838500pt;}
.h20_c00317{height:31.226460pt;}
.h16_c00317{height:31.955859pt;}
.h6_c00317{height:32.803203pt;}
.h8_c00317{height:32.814375pt;}
.h5_c00317{height:32.819531pt;}
.h13_c00317{height:32.914370pt;}
.h15_c00317{height:35.928750pt;}
.hf_c00317{height:36.712500pt;}
.h18_c00317{height:37.483532pt;}
.h1c_c00317{height:38.667750pt;}
.h35_c00317{height:41.485125pt;}
.h2d_c00317{height:42.838125pt;}
.ha_c00317{height:44.238563pt;}
.h2e_c00317{height:46.257934pt;}
.h12_c00317{height:46.811016pt;}
.h14_c00317{height:49.920234pt;}
.h19_c00317{height:51.030375pt;}
.h24_c00317{height:51.481384pt;}
.h25_c00317{height:51.793677pt;}
.h29_c00317{height:52.165954pt;}
.h1f_c00317{height:52.498875pt;}
.h32_c00317{height:52.856719pt;}
.h21_c00317{height:53.600434pt;}
.h2b_c00317{height:54.013250pt;}
.h1d_c00317{height:55.966110pt;}
.h1e_c00317{height:57.087938pt;}
.h26_c00317{height:57.824250pt;}
.h34_c00317{height:58.005750pt;}
.h27_c00317{height:58.038750pt;}
.h1b_c00317{height:58.923563pt;}
.h7_c00317{height:59.075329pt;}
.h1a_c00317{height:59.766094pt;}
.h23_c00317{height:60.629766pt;}
.h30_c00317{height:61.310059pt;}
.hc_c00317{height:61.677000pt;}
.h31_c00317{height:62.530016pt;}
.h11_c00317{height:64.534216pt;}
.h33_c00317{height:65.348250pt;}
.h10_c00317{height:65.628750pt;}
.hb_c00317{height:73.239548pt;}
.h22_c00317{height:83.258141pt;}
.h1_c00317{height:986.666667pt;}
.h0_c00317{height:1122.666667pt;}
.w1_c00317{width:694.666667pt;}
.w0_c00317{width:793.333333pt;}
.x0_c00317{left:0.000000pt;}
.x2_c00317{left:47.842920pt;}
.x1_c00317{left:49.333333pt;}
.x60_c00317{left:83.359720pt;}
.x8d_c00317{left:84.494920pt;}
.x91_c00317{left:85.709320pt;}
.x6c_c00317{left:93.488520pt;}
.x3_c00317{left:97.598120pt;}
.x61_c00317{left:101.756120pt;}
.x75_c00317{left:105.302520pt;}
.x76_c00317{left:108.153720pt;}
.x6d_c00317{left:111.814520pt;}
.x77_c00317{left:121.138120pt;}
.x8e_c00317{left:122.229320pt;}
.x2f_c00317{left:129.062520pt;}
.x53_c00317{left:130.650920pt;}
.x6e_c00317{left:140.599320pt;}
.x54_c00317{left:143.872920pt;}
.x62_c00317{left:150.758920pt;}
.x31_c00317{left:161.138520pt;}
.x43_c00317{left:166.634120pt;}
.x32_c00317{left:170.123320pt;}
.x78_c00317{left:179.873720pt;}
.x33_c00317{left:189.571320pt;}
.x8f_c00317{left:190.666920pt;}
.x6f_c00317{left:200.179720pt;}
.x79_c00317{left:209.111720pt;}
.x34_c00317{left:210.480120pt;}
.x35_c00317{left:219.033720pt;}
.x4_c00317{left:227.745720pt;}
.x36_c00317{left:228.850120pt;}
.x70_c00317{left:230.244920pt;}
.x55_c00317{left:235.502920pt;}
.x37_c00317{left:238.186920pt;}
.x87_c00317{left:239.124120pt;}
.x16_c00317{left:240.210920pt;}
.x63_c00317{left:241.583720pt;}
.x7a_c00317{left:249.908520pt;}
.x56_c00317{left:259.262920pt;}
.x57_c00317{left:268.771320pt;}
.x8b_c00317{left:271.882120pt;}
.x38_c00317{left:276.277720pt;}
.x64_c00317{left:278.561320pt;}
.x88_c00317{left:279.626120pt;}
.x82_c00317{left:280.787720pt;}
.x5_c00317{left:287.484520pt;}
.x58_c00317{left:288.584520pt;}
.x6_c00317{left:290.916520pt;}
.x9_c00317{left:292.130920pt;}
.x39_c00317{left:294.432120pt;}
.xa_c00317{left:297.450520pt;}
.x21_c00317{left:298.414120pt;}
.x7_c00317{left:301.005720pt;}
.xb_c00317{left:303.834920pt;}
.x8_c00317{left:304.816120pt;}
.x59_c00317{left:308.542920pt;}
.xc_c00317{left:312.696520pt;}
.x65_c00317{left:317.892920pt;}
.xd_c00317{left:318.856520pt;}
.xf_c00317{left:322.209320pt;}
.x10_c00317{left:324.039720pt;}
.x22_c00317{left:327.691720pt;}
.x92_c00317{left:330.129320pt;}
.xe_c00317{left:332.971720pt;}
.x23_c00317{left:337.644520pt;}
.x17_c00317{left:342.343720pt;}
.x89_c00317{left:347.526920pt;}
.x24_c00317{left:357.061720pt;}
.x71_c00317{left:358.245320pt;}
.x25_c00317{left:366.455720pt;}
.x93_c00317{left:368.074920pt;}
.x26_c00317{left:378.564520pt;}
.x72_c00317{left:386.761720pt;}
.x66_c00317{left:388.570120pt;}
.x18_c00317{left:393.586120pt;}
.x5a_c00317{left:396.868520pt;}
.x47_c00317{left:405.624520pt;}
.x83_c00317{left:406.671720pt;}
.x94_c00317{left:412.792120pt;}
.x5b_c00317{left:415.440920pt;}
.x19_c00317{left:417.024920pt;}
.x27_c00317{left:425.864520pt;}
.x3a_c00317{left:427.171320pt;}
.x1a_c00317{left:435.724920pt;}
.x8c_c00317{left:439.526520pt;}
.x44_c00317{left:444.665720pt;}
.x4b_c00317{left:445.572120pt;}
.x7e_c00317{left:446.601720pt;}
.x3b_c00317{left:449.026120pt;}
.x1b_c00317{left:453.782520pt;}
.x67_c00317{left:455.612920pt;}
.x3c_c00317{left:461.702520pt;}
.x48_c00317{left:464.998120pt;}
.x49_c00317{left:468.232120pt;}
.x3d_c00317{left:470.568520pt;}
.x11_c00317{left:474.532920pt;}
.x8a_c00317{left:475.747320pt;}
.x28_c00317{left:478.026520pt;}
.x4c_c00317{left:484.758520pt;}
.x45_c00317{left:487.046520pt;}
.x29_c00317{left:488.458920pt;}
.x4a_c00317{left:489.572120pt;}
.x90_c00317{left:493.026120pt;}
.x3e_c00317{left:494.011720pt;}
.x68_c00317{left:495.393320pt;}
.x3f_c00317{left:500.352120pt;}
.x7b_c00317{left:504.540920pt;}
.x1c_c00317{left:505.992920pt;}
.x40_c00317{left:511.123320pt;}
.x41_c00317{left:514.555320pt;}
.x73_c00317{left:516.944520pt;}
.x7c_c00317{left:520.270920pt;}
.x5c_c00317{left:524.741320pt;}
.x1d_c00317{left:526.188920pt;}
.x2a_c00317{left:533.171720pt;}
.x42_c00317{left:534.980120pt;}
.x95_c00317{left:536.031720pt;}
.x4f_c00317{left:537.008520pt;}
.x1e_c00317{left:538.913720pt;}
.x4d_c00317{left:540.396520pt;}
.x7f_c00317{left:543.080520pt;}
.x2b_c00317{left:544.994520pt;}
.x50_c00317{left:546.604920pt;}
.x4e_c00317{left:548.034920pt;}
.x51_c00317{left:553.886920pt;}
.x30_c00317{left:558.955720pt;}
.x2c_c00317{left:563.725320pt;}
.x2d_c00317{left:568.723720pt;}
.x46_c00317{left:570.422120pt;}
.x86_c00317{left:571.821320pt;}
.x1f_c00317{left:573.145720pt;}
.x7d_c00317{left:574.302920pt;}
.x5d_c00317{left:576.397320pt;}
.x20_c00317{left:578.900920pt;}
.x2e_c00317{left:583.349320pt;}
.x80_c00317{left:585.140120pt;}
.x81_c00317{left:590.618120pt;}
.x69_c00317{left:592.554120pt;}
.x12_c00317{left:593.896120pt;}
.x84_c00317{left:603.725720pt;}
.x74_c00317{left:611.742520pt;}
.x6a_c00317{left:613.093320pt;}
.x5e_c00317{left:622.306920pt;}
.x52_c00317{left:624.634520pt;}
.x13_c00317{left:625.884120pt;}
.x14_c00317{left:627.230520pt;}
.x15_c00317{left:629.703320pt;}
.x6b_c00317{left:642.397320pt;}
.x5f_c00317{left:664.687720pt;}
.x85_c00317{left:683.757320pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_854f698e2fdf1d5ba11253a1.woff2')format("woff");}.ff1_c00318{font-family:ff1_c00318;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00318;src:url('chunks/assets/font_62422f593cb595cbacdeec68.woff2')format("woff");}.ff2_c00318{font-family:ff2_c00318;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00318;src:url('chunks/assets/font_8664eaa7ac0bfcd44184ecf4.woff2')format("woff");}.ff3_c00318{font-family:ff3_c00318;line-height:0.666000;font-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_c00318{transform:matrix(0.021605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021605,0.000000,0.000000,0.250000,0,0);}
.m46_c00318{transform:matrix(0.050926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050926,0.000000,0.000000,0.250000,0,0);}
.m3e_c00318{transform:matrix(0.080730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080730,0.000000,0.000000,0.250000,0,0);}
.m49_c00318{transform:matrix(0.101852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101852,0.000000,0.000000,0.250000,0,0);}
.m45_c00318{transform:matrix(0.106482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106482,0.000000,0.000000,0.250000,0,0);}
.m47_c00318{transform:matrix(0.112655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112655,0.000000,0.000000,0.250000,0,0);}
.m8e_c00318{transform:matrix(0.113700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113700,0.000000,0.000000,0.250000,0,0);}
.m1a_c00318{transform:matrix(0.134616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134616,0.000000,0.000000,0.250000,0,0);}
.mcf_c00318{transform:matrix(0.140533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140533,0.000000,0.000000,0.250000,0,0);}
.m77_c00318{transform:matrix(0.143003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143003,0.000000,0.000000,0.250000,0,0);}
.m3d_c00318{transform:matrix(0.145833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145833,0.000000,0.000000,0.250000,0,0);}
.mb8_c00318{transform:matrix(0.145834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145834,0.000000,0.000000,0.250000,0,0);}
.m8d_c00318{transform:matrix(0.149462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149462,0.000000,0.000000,0.250000,0,0);}
.m3c_c00318{transform:matrix(0.152778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152778,0.000000,0.000000,0.250000,0,0);}
.mb6_c00318{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00318{transform:matrix(0.171502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171502,0.000000,0.000000,0.250000,0,0);}
.mc_c00318{transform:matrix(0.179674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179674,0.000000,0.000000,0.250000,0,0);}
.mcc_c00318{transform:matrix(0.183578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183578,0.000000,0.000000,0.250000,0,0);}
.mb7_c00318{transform:matrix(0.204861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204861,0.000000,0.000000,0.250000,0,0);}
.m38_c00318{transform:matrix(0.208713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208713,0.000000,0.000000,0.250000,0,0);}
.m1b_c00318{transform:matrix(0.215973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215973,0.000000,0.000000,0.250000,0,0);}
.m30_c00318{transform:matrix(0.216402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216402,0.000000,0.000000,0.250000,0,0);}
.m3b_c00318{transform:matrix(0.222190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222190,0.000000,0.000000,0.250000,0,0);}
.m93_c00318{transform:matrix(0.224330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224330,0.000000,0.000000,0.250000,0,0);}
.m58_c00318{transform:matrix(0.225598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225598,0.000000,0.000000,0.250000,0,0);}
.ma3_c00318{transform:matrix(0.229479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229479,0.000000,0.000000,0.250000,0,0);}
.m59_c00318{transform:matrix(0.233367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233367,0.000000,0.000000,0.250000,0,0);}
.m3f_c00318{transform:matrix(0.233710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233710,0.000000,0.000000,0.250000,0,0);}
.m18_c00318{transform:matrix(0.235653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235653,0.000000,0.000000,0.250000,0,0);}
.m8c_c00318{transform:matrix(0.239871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239871,0.000000,0.000000,0.250000,0,0);}
.m19_c00318{transform:matrix(0.243838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243838,0.000000,0.000000,0.250000,0,0);}
.ma4_c00318{transform:matrix(0.247031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247031,0.000000,0.000000,0.250000,0,0);}
.m2d_c00318{transform:matrix(0.249265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249265,0.000000,0.000000,0.250000,0,0);}
.m0_c00318{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m87_c00318{transform:matrix(0.255206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255206,0.000000,0.000000,0.250000,0,0);}
.m94_c00318{transform:matrix(0.257048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257048,0.000000,0.000000,0.250000,0,0);}
.m7d_c00318{transform:matrix(0.257278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257278,0.000000,0.000000,0.250000,0,0);}
.m4b_c00318{transform:matrix(0.258875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258875,0.000000,0.000000,0.250000,0,0);}
.ma8_c00318{transform:matrix(0.260581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260581,0.000000,0.000000,0.250000,0,0);}
.m22_c00318{transform:matrix(0.260677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260677,0.000000,0.000000,0.250000,0,0);}
.mba_c00318{transform:matrix(0.262069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262069,0.000000,0.000000,0.250000,0,0);}
.mf_c00318{transform:matrix(0.262711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262711,0.000000,0.000000,0.250000,0,0);}
.m5b_c00318{transform:matrix(0.262731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262731,0.000000,0.000000,0.250000,0,0);}
.m12_c00318{transform:matrix(0.267147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267147,0.000000,0.000000,0.250000,0,0);}
.m73_c00318{transform:matrix(0.268974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268974,0.000000,0.000000,0.250000,0,0);}
.m5a_c00318{transform:matrix(0.271276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271276,0.000000,0.000000,0.250000,0,0);}
.m55_c00318{transform:matrix(0.272876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272876,0.000000,0.000000,0.250000,0,0);}
.m61_c00318{transform:matrix(0.274268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274268,0.000000,0.000000,0.250000,0,0);}
.m2a_c00318{transform:matrix(0.274965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274965,0.000000,0.000000,0.250000,0,0);}
.m6a_c00318{transform:matrix(0.275040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275040,0.000000,0.000000,0.250000,0,0);}
.mae_c00318{transform:matrix(0.277062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277062,0.000000,0.000000,0.250000,0,0);}
.m7a_c00318{transform:matrix(0.279660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279660,0.000000,0.000000,0.250000,0,0);}
.m6d_c00318{transform:matrix(0.281662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281662,0.000000,0.000000,0.250000,0,0);}
.mc8_c00318{transform:matrix(0.283028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283028,0.000000,0.000000,0.250000,0,0);}
.mbc_c00318{transform:matrix(0.283601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283601,0.000000,0.000000,0.250000,0,0);}
.mb4_c00318{transform:matrix(0.283794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283794,0.000000,0.000000,0.250000,0,0);}
.mbb_c00318{transform:matrix(0.283953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283953,0.000000,0.000000,0.250000,0,0);}
.m84_c00318{transform:matrix(0.284553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284553,0.000000,0.000000,0.250000,0,0);}
.mc1_c00318{transform:matrix(0.285149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285149,0.000000,0.000000,0.250000,0,0);}
.m64_c00318{transform:matrix(0.287056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287056,0.000000,0.000000,0.250000,0,0);}
.m1f_c00318{transform:matrix(0.287697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287697,0.000000,0.000000,0.250000,0,0);}
.m50_c00318{transform:matrix(0.287967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287967,0.000000,0.000000,0.250000,0,0);}
.m4_c00318{transform:matrix(0.288607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288607,0.000000,0.000000,0.250000,0,0);}
.m9b_c00318{transform:matrix(0.288758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288758,0.000000,0.000000,0.250000,0,0);}
.m97_c00318{transform:matrix(0.288914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288914,0.000000,0.000000,0.250000,0,0);}
.m5_c00318{transform:matrix(0.289635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289635,0.000000,0.000000,0.250000,0,0);}
.m6e_c00318{transform:matrix(0.291071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291071,0.000000,0.000000,0.250000,0,0);}
.m2c_c00318{transform:matrix(0.291166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291166,0.000000,0.000000,0.250000,0,0);}
.m15_c00318{transform:matrix(0.291206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291206,0.000000,0.000000,0.250000,0,0);}
.mb3_c00318{transform:matrix(0.292197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292197,0.000000,0.000000,0.250000,0,0);}
.m33_c00318{transform:matrix(0.292835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292835,0.000000,0.000000,0.250000,0,0);}
.m1_c00318{transform:matrix(0.293141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293141,0.000000,0.000000,0.250000,0,0);}
.m62_c00318{transform:matrix(0.294716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294716,0.000000,0.000000,0.250000,0,0);}
.m8b_c00318{transform:matrix(0.294733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294733,0.000000,0.000000,0.250000,0,0);}
.m88_c00318{transform:matrix(0.295407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295407,0.000000,0.000000,0.250000,0,0);}
.m25_c00318{transform:matrix(0.295481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295481,0.000000,0.000000,0.250000,0,0);}
.m8_c00318{transform:matrix(0.295486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295486,0.000000,0.000000,0.250000,0,0);}
.m3_c00318{transform:matrix(0.295739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295739,0.000000,0.000000,0.250000,0,0);}
.m6c_c00318{transform:matrix(0.297399,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297399,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297399,0.000000,0.000000,0.250000,0,0);}
.m5f_c00318{transform:matrix(0.297972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297972,0.000000,0.000000,0.250000,0,0);}
.m7b_c00318{transform:matrix(0.298071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298071,0.000000,0.000000,0.250000,0,0);}
.ma_c00318{transform:matrix(0.298526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298526,0.000000,0.000000,0.250000,0,0);}
.m82_c00318{transform:matrix(0.299038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299038,0.000000,0.000000,0.250000,0,0);}
.m86_c00318{transform:matrix(0.299797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299797,0.000000,0.000000,0.250000,0,0);}
.m66_c00318{transform:matrix(0.299981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299981,0.000000,0.000000,0.250000,0,0);}
.m9a_c00318{transform:matrix(0.300958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300958,0.000000,0.000000,0.250000,0,0);}
.mc6_c00318{transform:matrix(0.301111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301111,0.000000,0.000000,0.250000,0,0);}
.m65_c00318{transform:matrix(0.301538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301538,0.000000,0.000000,0.250000,0,0);}
.mc3_c00318{transform:matrix(0.302298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302298,0.000000,0.000000,0.250000,0,0);}
.mbf_c00318{transform:matrix(0.302672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302672,0.000000,0.000000,0.250000,0,0);}
.md_c00318{transform:matrix(0.303099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303099,0.000000,0.000000,0.250000,0,0);}
.m1d_c00318{transform:matrix(0.303715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303715,0.000000,0.000000,0.250000,0,0);}
.m67_c00318{transform:matrix(0.303735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303735,0.000000,0.000000,0.250000,0,0);}
.m32_c00318{transform:matrix(0.304267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304267,0.000000,0.000000,0.250000,0,0);}
.m51_c00318{transform:matrix(0.304936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304936,0.000000,0.000000,0.250000,0,0);}
.m35_c00318{transform:matrix(0.305269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305269,0.000000,0.000000,0.250000,0,0);}
.mcb_c00318{transform:matrix(0.305842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305842,0.000000,0.000000,0.250000,0,0);}
.m85_c00318{transform:matrix(0.306430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306430,0.000000,0.000000,0.250000,0,0);}
.m91_c00318{transform:matrix(0.307336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307336,0.000000,0.000000,0.250000,0,0);}
.m7_c00318{transform:matrix(0.308265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308265,0.000000,0.000000,0.250000,0,0);}
.m89_c00318{transform:matrix(0.308619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308619,0.000000,0.000000,0.250000,0,0);}
.m98_c00318{transform:matrix(0.308999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308999,0.000000,0.000000,0.250000,0,0);}
.m17_c00318{transform:matrix(0.310149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310149,0.000000,0.000000,0.250000,0,0);}
.m9c_c00318{transform:matrix(0.311036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311036,0.000000,0.000000,0.250000,0,0);}
.m11_c00318{transform:matrix(0.311308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311308,0.000000,0.000000,0.250000,0,0);}
.m29_c00318{transform:matrix(0.313802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313802,0.000000,0.000000,0.250000,0,0);}
.m21_c00318{transform:matrix(0.314183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314183,0.000000,0.000000,0.250000,0,0);}
.m9d_c00318{transform:matrix(0.314697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314697,0.000000,0.000000,0.250000,0,0);}
.m80_c00318{transform:matrix(0.315355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315355,0.000000,0.000000,0.250000,0,0);}
.m36_c00318{transform:matrix(0.315753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315753,0.000000,0.000000,0.250000,0,0);}
.mac_c00318{transform:matrix(0.315831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315831,0.000000,0.000000,0.250000,0,0);}
.m78_c00318{transform:matrix(0.315957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315957,0.000000,0.000000,0.250000,0,0);}
.mc2_c00318{transform:matrix(0.316274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316274,0.000000,0.000000,0.250000,0,0);}
.m5e_c00318{transform:matrix(0.317273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317273,0.000000,0.000000,0.250000,0,0);}
.m83_c00318{transform:matrix(0.317871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317871,0.000000,0.000000,0.250000,0,0);}
.m90_c00318{transform:matrix(0.317903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317903,0.000000,0.000000,0.250000,0,0);}
.m68_c00318{transform:matrix(0.318218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318218,0.000000,0.000000,0.250000,0,0);}
.m5d_c00318{transform:matrix(0.318472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318472,0.000000,0.000000,0.250000,0,0);}
.m95_c00318{transform:matrix(0.319101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319101,0.000000,0.000000,0.250000,0,0);}
.m1c_c00318{transform:matrix(0.319618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319618,0.000000,0.000000,0.250000,0,0);}
.maf_c00318{transform:matrix(0.320227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320227,0.000000,0.000000,0.250000,0,0);}
.m2b_c00318{transform:matrix(0.320447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320447,0.000000,0.000000,0.250000,0,0);}
.m6f_c00318{transform:matrix(0.320981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320981,0.000000,0.000000,0.250000,0,0);}
.ma6_c00318{transform:matrix(0.322953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322953,0.000000,0.000000,0.250000,0,0);}
.m7c_c00318{transform:matrix(0.323758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323758,0.000000,0.000000,0.250000,0,0);}
.mb9_c00318{transform:matrix(0.324029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324029,0.000000,0.000000,0.250000,0,0);}
.mc4_c00318{transform:matrix(0.324334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324334,0.000000,0.000000,0.250000,0,0);}
.m9f_c00318{transform:matrix(0.324685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324685,0.000000,0.000000,0.250000,0,0);}
.m81_c00318{transform:matrix(0.324709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324709,0.000000,0.000000,0.250000,0,0);}
.m54_c00318{transform:matrix(0.325285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325285,0.000000,0.000000,0.250000,0,0);}
.m16_c00318{transform:matrix(0.325492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325492,0.000000,0.000000,0.250000,0,0);}
.ma1_c00318{transform:matrix(0.326455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326455,0.000000,0.000000,0.250000,0,0);}
.m5c_c00318{transform:matrix(0.326817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326817,0.000000,0.000000,0.250000,0,0);}
.m70_c00318{transform:matrix(0.327175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327175,0.000000,0.000000,0.250000,0,0);}
.maa_c00318{transform:matrix(0.327192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327192,0.000000,0.000000,0.250000,0,0);}
.m24_c00318{transform:matrix(0.327958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327958,0.000000,0.000000,0.250000,0,0);}
.m43_c00318{transform:matrix(0.328539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328539,0.000000,0.000000,0.250000,0,0);}
.m3a_c00318{transform:matrix(0.331609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331609,0.000000,0.000000,0.250000,0,0);}
.m28_c00318{transform:matrix(0.331920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331920,0.000000,0.000000,0.250000,0,0);}
.m44_c00318{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);}
.m20_c00318{transform:matrix(0.332615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332615,0.000000,0.000000,0.250000,0,0);}
.mce_c00318{transform:matrix(0.333574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333574,0.000000,0.000000,0.250000,0,0);}
.m42_c00318{transform:matrix(0.333823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333823,0.000000,0.000000,0.250000,0,0);}
.m76_c00318{transform:matrix(0.333860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333860,0.000000,0.000000,0.250000,0,0);}
.m99_c00318{transform:matrix(0.334169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334169,0.000000,0.000000,0.250000,0,0);}
.m79_c00318{transform:matrix(0.335914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335914,0.000000,0.000000,0.250000,0,0);}
.mb2_c00318{transform:matrix(0.336729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336729,0.000000,0.000000,0.250000,0,0);}
.mcd_c00318{transform:matrix(0.337483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337483,0.000000,0.000000,0.250000,0,0);}
.mb_c00318{transform:matrix(0.339025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339025,0.000000,0.000000,0.250000,0,0);}
.m96_c00318{transform:matrix(0.339108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339108,0.000000,0.000000,0.250000,0,0);}
.m27_c00318{transform:matrix(0.339214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339214,0.000000,0.000000,0.250000,0,0);}
.mb5_c00318{transform:matrix(0.339436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339436,0.000000,0.000000,0.250000,0,0);}
.ma0_c00318{transform:matrix(0.339538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339538,0.000000,0.000000,0.250000,0,0);}
.ma7_c00318{transform:matrix(0.340192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340192,0.000000,0.000000,0.250000,0,0);}
.mc7_c00318{transform:matrix(0.340460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340460,0.000000,0.000000,0.250000,0,0);}
.m2e_c00318{transform:matrix(0.341989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341989,0.000000,0.000000,0.250000,0,0);}
.m6b_c00318{transform:matrix(0.342162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342162,0.000000,0.000000,0.250000,0,0);}
.m9e_c00318{transform:matrix(0.343230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343230,0.000000,0.000000,0.250000,0,0);}
.mb0_c00318{transform:matrix(0.343292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343292,0.000000,0.000000,0.250000,0,0);}
.m2_c00318{transform:matrix(0.345338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345338,0.000000,0.000000,0.250000,0,0);}
.mbd_c00318{transform:matrix(0.346038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346038,0.000000,0.000000,0.250000,0,0);}
.m23_c00318{transform:matrix(0.347288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347288,0.000000,0.000000,0.250000,0,0);}
.m63_c00318{transform:matrix(0.347936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347936,0.000000,0.000000,0.250000,0,0);}
.m34_c00318{transform:matrix(0.348972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348972,0.000000,0.000000,0.250000,0,0);}
.m8a_c00318{transform:matrix(0.349331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349331,0.000000,0.000000,0.250000,0,0);}
.mad_c00318{transform:matrix(0.349717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349717,0.000000,0.000000,0.250000,0,0);}
.m53_c00318{transform:matrix(0.350576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350576,0.000000,0.000000,0.250000,0,0);}
.m37_c00318{transform:matrix(0.351038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351038,0.000000,0.000000,0.250000,0,0);}
.m72_c00318{transform:matrix(0.351529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351529,0.000000,0.000000,0.250000,0,0);}
.m4c_c00318{transform:matrix(0.353360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353360,0.000000,0.000000,0.250000,0,0);}
.m6_c00318{transform:matrix(0.353747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353747,0.000000,0.000000,0.250000,0,0);}
.m4d_c00318{transform:matrix(0.354786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354786,0.000000,0.000000,0.250000,0,0);}
.m8f_c00318{transform:matrix(0.356358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356358,0.000000,0.000000,0.250000,0,0);}
.m14_c00318{transform:matrix(0.356591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356591,0.000000,0.000000,0.250000,0,0);}
.m74_c00318{transform:matrix(0.357834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357834,0.000000,0.000000,0.250000,0,0);}
.m69_c00318{transform:matrix(0.359029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359029,0.000000,0.000000,0.250000,0,0);}
.mbe_c00318{transform:matrix(0.359563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359563,0.000000,0.000000,0.250000,0,0);}
.m7e_c00318{transform:matrix(0.362345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362345,0.000000,0.000000,0.250000,0,0);}
.m9_c00318{transform:matrix(0.363816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363816,0.000000,0.000000,0.250000,0,0);}
.m57_c00318{transform:matrix(0.365954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365954,0.000000,0.000000,0.250000,0,0);}
.m52_c00318{transform:matrix(0.366436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366436,0.000000,0.000000,0.250000,0,0);}
.m60_c00318{transform:matrix(0.366546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366546,0.000000,0.000000,0.250000,0,0);}
.mc5_c00318{transform:matrix(0.367129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367129,0.000000,0.000000,0.250000,0,0);}
.mab_c00318{transform:matrix(0.371262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371262,0.000000,0.000000,0.250000,0,0);}
.m75_c00318{transform:matrix(0.371427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371427,0.000000,0.000000,0.250000,0,0);}
.m10_c00318{transform:matrix(0.373210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373210,0.000000,0.000000,0.250000,0,0);}
.ma9_c00318{transform:matrix(0.373512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373512,0.000000,0.000000,0.250000,0,0);}
.mca_c00318{transform:matrix(0.375924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375924,0.000000,0.000000,0.250000,0,0);}
.m92_c00318{transform:matrix(0.376403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376403,0.000000,0.000000,0.250000,0,0);}
.m4a_c00318{transform:matrix(0.377608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377608,0.000000,0.000000,0.250000,0,0);}
.mc0_c00318{transform:matrix(0.378060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378060,0.000000,0.000000,0.250000,0,0);}
.ma2_c00318{transform:matrix(0.379542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379542,0.000000,0.000000,0.250000,0,0);}
.m13_c00318{transform:matrix(0.383642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383642,0.000000,0.000000,0.250000,0,0);}
.mb1_c00318{transform:matrix(0.384233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384233,0.000000,0.000000,0.250000,0,0);}
.m26_c00318{transform:matrix(0.390858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390858,0.000000,0.000000,0.250000,0,0);}
.m56_c00318{transform:matrix(0.390880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390880,0.000000,0.000000,0.250000,0,0);}
.mc9_c00318{transform:matrix(0.393410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393410,0.000000,0.000000,0.250000,0,0);}
.m1e_c00318{transform:matrix(0.401265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401265,0.000000,0.000000,0.250000,0,0);}
.ma5_c00318{transform:matrix(0.409018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409018,0.000000,0.000000,0.250000,0,0);}
.m31_c00318{transform:matrix(0.409278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409278,0.000000,0.000000,0.250000,0,0);}
.m4f_c00318{transform:matrix(0.409434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409434,0.000000,0.000000,0.250000,0,0);}
.m4e_c00318{transform:matrix(0.411317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411317,0.000000,0.000000,0.250000,0,0);}
.me_c00318{transform:matrix(0.424581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424581,0.000000,0.000000,0.250000,0,0);}
.m40_c00318{transform:matrix(0.442650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442650,0.000000,0.000000,0.250000,0,0);}
.m39_c00318{transform:matrix(0.448566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448566,0.000000,0.000000,0.250000,0,0);}
.m7f_c00318{transform:matrix(0.456169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456169,0.000000,0.000000,0.250000,0,0);}
.m71_c00318{transform:matrix(0.465386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465386,0.000000,0.000000,0.250000,0,0);}
.m41_c00318{transform:matrix(0.470023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470023,0.000000,0.000000,0.250000,0,0);}
.v0_c00318{vertical-align:0.000000px;}
.ls9_c00318{letter-spacing:-2.605680px;}
.lsc_c00318{letter-spacing:-2.494800px;}
.ls11_c00318{letter-spacing:-2.059992px;}
.ls8_c00318{letter-spacing:-2.009700px;}
.ls18_c00318{letter-spacing:-1.947330px;}
.ls13_c00318{letter-spacing:-1.853280px;}
.ls7_c00318{letter-spacing:-1.718640px;}
.lsf_c00318{letter-spacing:-1.682208px;}
.ls10_c00318{letter-spacing:-1.559250px;}
.ls19_c00318{letter-spacing:-0.593050px;}
.ls3_c00318{letter-spacing:0.000000px;}
.ls16_c00318{letter-spacing:0.142560px;}
.ls12_c00318{letter-spacing:0.313632px;}
.ls15_c00318{letter-spacing:1.311552px;}
.ls0_c00318{letter-spacing:1.803384px;}
.ls6_c00318{letter-spacing:2.376000px;}
.ls2_c00318{letter-spacing:3.029400px;}
.lsb_c00318{letter-spacing:3.278880px;}
.ls5_c00318{letter-spacing:3.564000px;}
.ls4_c00318{letter-spacing:3.692700px;}
.ls14_c00318{letter-spacing:3.702610px;}
.lsa_c00318{letter-spacing:3.722400px;}
.ls1_c00318{letter-spacing:21.384000px;}
.ls17_c00318{letter-spacing:51.321798px;}
.lsd_c00318{letter-spacing:68.428998px;}
.lse_c00318{letter-spacing:76.982598px;}
.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;}
}
.ws2_c00318{word-spacing:-21.098880px;}
.ws4_c00318{word-spacing:-20.849400px;}
.ws5_c00318{word-spacing:-17.820000px;}
.ws6_c00318{word-spacing:-15.966720px;}
.ws0_c00318{word-spacing:-11.880000px;}
.ws3_c00318{word-spacing:-5.809320px;}
.wsa_c00318{word-spacing:0.000000px;}
.ws7_c00318{word-spacing:6.415200px;}
.ws1_c00318{word-spacing:7.698240px;}
.ws8_c00318{word-spacing:7.840800px;}
.ws9_c00318{word-spacing:10.692000px;}
._16_c00318{margin-left:-11.618640px;}
._10_c00318{margin-left:-8.981280px;}
._a_c00318{margin-left:-7.876440px;}
._3_c00318{margin-left:-5.916240px;}
._15_c00318{margin-left:-4.704480px;}
._13_c00318{margin-left:-3.207600px;}
._b_c00318{margin-left:-1.199880px;}
._17_c00318{width:6.494400px;}
._1_c00318{width:7.935840px;}
._c_c00318{width:9.935640px;}
._14_c00318{width:11.590920px;}
._4_c00318{width:12.759120px;}
._9_c00318{width:15.986520px;}
._12_c00318{width:19.958400px;}
._11_c00318{width:21.384000px;}
._1a_c00318{width:22.809600px;}
._2_c00318{width:24.235200px;}
._19_c00318{width:25.874640px;}
._d_c00318{width:27.086400px;}
._8_c00318{width:31.434480px;}
._7_c00318{width:33.462000px;}
._5_c00318{width:34.784640px;}
._0_c00318{width:37.125000px;}
._6_c00318{width:39.552480px;}
._1c_c00318{width:41.698800px;}
._f_c00318{width:43.156080px;}
._1b_c00318{width:44.550000px;}
._18_c00318{width:47.828880px;}
._e_c00318{width:52.916688px;}
.fc0_c00318{color:transparent;}
.fs0_c00318{font-size:22.176000px;}
.fs8_c00318{font-size:27.720000px;}
.fs13_c00318{font-size:30.888000px;}
.fsd_c00318{font-size:44.550000px;}
.fs3_c00318{font-size:47.520000px;}
.fs5_c00318{font-size:49.104000px;}
.fs11_c00318{font-size:51.321798px;}
.fs4_c00318{font-size:53.856198px;}
.fs12_c00318{font-size:55.638000px;}
.fs6_c00318{font-size:57.420000px;}
.fse_c00318{font-size:68.112198px;}
.fsa_c00318{font-size:68.428998px;}
.fs9_c00318{font-size:68.904000px;}
.fsb_c00318{font-size:70.884000px;}
.fs10_c00318{font-size:71.082198px;}
.fs2_c00318{font-size:71.280000px;}
.fs1_c00318{font-size:73.854000px;}
.fsf_c00318{font-size:74.052198px;}
.fs7_c00318{font-size:74.448000px;}
.fsc_c00318{font-size:76.982598px;}
.y0_c00318{bottom:0.000000px;}
.y1_c00318{bottom:76.500000px;}
.y1d_c00318{bottom:133.205535px;}
.y1b_c00318{bottom:142.115535px;}
.y1c_c00318{bottom:158.153535px;}
.y1a_c00318{bottom:168.845535px;}
.y19_c00318{bottom:266.499135px;}
.y18_c00318{bottom:300.000735px;}
.y17_c00318{bottom:333.145935px;}
.y16_c00318{bottom:365.221935px;}
.y15_c00318{bottom:399.074985px;}
.y14_c00318{bottom:431.155935px;}
.y13_c00318{bottom:463.944735px;}
.y12_c00318{bottom:496.372185px;}
.y11_c00318{bottom:529.522335px;}
.y10_c00318{bottom:592.956585px;}
.yf_c00318{bottom:626.106735px;}
.y2_c00318{bottom:634.298985px;}
.ye_c00318{bottom:659.251935px;}
.yd_c00318{bottom:691.322985px;}
.yc_c00318{bottom:725.180985px;}
.yb_c00318{bottom:759.038985px;}
.ya_c00318{bottom:795.035385px;}
.y9_c00318{bottom:823.190985px;}
.y8_c00318{bottom:857.766735px;}
.y7_c00318{bottom:891.263385px;}
.y6_c00318{bottom:919.418985px;}
.y5_c00318{bottom:924.052185px;}
.y4_c00318{bottom:960.409935px;}
.y3_c00318{bottom:1081.229535px;}
.h2_c00318{height:23.128875px;}
.ha_c00318{height:28.911094px;}
.h15_c00318{height:30.314883px;}
.h13_c00318{height:34.180317px;}
.hc_c00318{height:45.573713px;}
.hf_c00318{height:46.464258px;}
.h5_c00318{height:46.638281px;}
.h7_c00318{height:48.192891px;}
.he_c00318{height:51.270410px;}
.h6_c00318{height:56.170332px;}
.h14_c00318{height:58.028695px;}
.h8_c00318{height:59.887266px;}
.h10_c00318{height:66.848397px;}
.hb_c00318{height:67.625508px;}
.hd_c00318{height:69.568770px;}
.h12_c00318{height:69.763290px;}
.h4_c00318{height:69.957422px;}
.h3_c00318{height:72.483662px;}
.h11_c00318{height:72.678183px;}
.h9_c00318{height:73.066641px;}
.h1_c00318{height:1110.000000px;}
.h0_c00318{height:1263.000000px;}
.w1_c00318{width:781.500000px;}
.w0_c00318{width:892.500000px;}
.x0_c00318{left:0.000000px;}
.x2_c00318{left:29.989035px;}
.x1_c00318{left:55.500000px;}
.x5_c00318{left:96.393285px;}
.x5a_c00318{left:97.774335px;}
.x23_c00318{left:99.714735px;}
.x24_c00318{left:110.352285px;}
.x25_c00318{left:113.446035px;}
.x49_c00318{left:118.940535px;}
.x31_c00318{left:129.231585px;}
.x62_c00318{left:130.825485px;}
.x5b_c00318{left:131.983785px;}
.x6_c00318{left:141.750135px;}
.x26_c00318{left:142.893585px;}
.x63_c00318{left:147.209985px;}
.x27_c00318{left:151.061085px;}
.x4f_c00318{left:152.130285px;}
.x82_c00318{left:153.704385px;}
.x19_c00318{left:163.431135px;}
.x7f_c00318{left:164.480535px;}
.x7_c00318{left:165.574485px;}
.x4_c00318{left:169.341435px;}
.x6e_c00318{left:174.920085px;}
.x8_c00318{left:185.240835px;}
.x83_c00318{left:187.037685px;}
.x69_c00318{left:195.061635px;}
.x1a_c00318{left:196.125885px;}
.x84_c00318{left:199.917585px;}
.x4a_c00318{left:206.852535px;}
.x34_c00318{left:208.020735px;}
.x6a_c00318{left:211.208535px;}
.x28_c00318{left:215.564535px;}
.x1b_c00318{left:219.098835px;}
.x77_c00318{left:220.133385px;}
.x50_c00318{left:230.117535px;}
.x4b_c00318{left:232.151985px;}
.x4c_c00318{left:241.774785px;}
.x29_c00318{left:251.506485px;}
.x73_c00318{left:252.644985px;}
.x9_c00318{left:262.599435px;}
.x51_c00318{left:273.662685px;}
.x6f_c00318{left:276.499035px;}
.x3d_c00318{left:284.453685px;}
.x1c_c00318{left:285.760485px;}
.xa_c00318{left:295.660485px;}
.x70_c00318{left:296.759385px;}
.x1d_c00318{left:307.555335px;}
.x7b_c00318{left:308.782935px;}
.x1e_c00318{left:318.361185px;}
.x32_c00318{left:328.919535px;}
.x5c_c00318{left:330.008535px;}
.x6b_c00318{left:331.033185px;}
.x1f_c00318{left:340.601535px;}
.x74_c00318{left:341.690535px;}
.x56_c00318{left:351.338085px;}
.x2a_c00318{left:352.387485px;}
.x35_c00318{left:362.416185px;}
.x78_c00318{left:363.505185px;}
.x3e_c00318{left:372.529035px;}
.xb_c00318{left:373.613085px;}
.x2b_c00318{left:384.483285px;}
.x75_c00318{left:387.968085px;}
.x20_c00318{left:395.165385px;}
.x5d_c00318{left:397.704735px;}
.x79_c00318{left:399.016485px;}
.xc_c00318{left:406.570185px;}
.x5e_c00318{left:418.291785px;}
.x3f_c00318{left:427.429485px;}
.x2c_c00318{left:428.662035px;}
.x52_c00318{left:429.755985px;}
.x36_c00318{left:440.591535px;}
.x7c_c00318{left:442.838835px;}
.xd_c00318{left:450.793485px;}
.x7a_c00318{left:452.179485px;}
.x66_c00318{left:453.456585px;}
.x14_c00318{left:459.223335px;}
.x37_c00318{left:462.208185px;}
.x40_c00318{left:464.594085px;}
.xe_c00318{left:472.875435px;}
.x76_c00318{left:473.969385px;}
.x38_c00318{left:484.072335px;}
.x41_c00318{left:486.982935px;}
.x6c_c00318{left:496.209735px;}
.x39_c00318{left:506.352285px;}
.xf_c00318{left:507.451185px;}
.x33_c00318{left:510.035085px;}
.x10_c00318{left:517.677885px;}
.x80_c00318{left:518.821335px;}
.x15_c00318{left:529.023285px;}
.x16_c00318{left:531.701235px;}
.x11_c00318{left:539.497485px;}
.x67_c00318{left:549.649935px;}
.x4d_c00318{left:551.189385px;}
.x57_c00318{left:561.128985px;}
.x12_c00318{left:562.312035px;}
.x3a_c00318{left:571.553685px;}
.x64_c00318{left:573.682185px;}
.x2d_c00318{left:582.448635px;}
.x42_c00318{left:583.567335px;}
.x13_c00318{left:585.680985px;}
.x53_c00318{left:591.482385px;}
.x68_c00318{left:594.214785px;}
.x43_c00318{left:595.328535px;}
.x3b_c00318{left:604.619685px;}
.x17_c00318{left:605.971035px;}
.x4e_c00318{left:616.192785px;}
.x2e_c00318{left:617.504535px;}
.x54_c00318{left:623.073285px;}
.x21_c00318{left:627.597585px;}
.x5f_c00318{left:628.637085px;}
.x44_c00318{left:629.889435px;}
.x45_c00318{left:638.047035px;}
.x2f_c00318{left:648.808335px;}
.x58_c00318{left:650.694285px;}
.x22_c00318{left:660.292335px;}
.x65_c00318{left:661.519935px;}
.x18_c00318{left:670.519035px;}
.x60_c00318{left:672.266385px;}
.x3_c00318{left:673.469235px;}
.x46_c00318{left:682.705935px;}
.x7d_c00318{left:683.809785px;}
.x3c_c00318{left:693.001935px;}
.x61_c00318{left:694.937385px;}
.x81_c00318{left:696.877785px;}
.x85_c00318{left:700.377435px;}
.x30_c00318{left:705.238335px;}
.x6d_c00318{left:706.644135px;}
.x88_c00318{left:709.935885px;}
.x55_c00318{left:715.034385px;}
.x47_c00318{left:716.177835px;}
.x71_c00318{left:717.261885px;}
.x48_c00318{left:729.884385px;}
.x72_c00318{left:739.096335px;}
.x7e_c00318{left:740.507085px;}
.x59_c00318{left:749.788335px;}
.x86_c00318{left:762.287085px;}
.x87_c00318{left:771.286185px;}
@media print{
.v0_c00318{vertical-align:0.000000pt;}
.ls9_c00318{letter-spacing:-2.316160pt;}
.lsc_c00318{letter-spacing:-2.217600pt;}
.ls11_c00318{letter-spacing:-1.831104pt;}
.ls8_c00318{letter-spacing:-1.786400pt;}
.ls18_c00318{letter-spacing:-1.730960pt;}
.ls13_c00318{letter-spacing:-1.647360pt;}
.ls7_c00318{letter-spacing:-1.527680pt;}
.lsf_c00318{letter-spacing:-1.495296pt;}
.ls10_c00318{letter-spacing:-1.386000pt;}
.ls19_c00318{letter-spacing:-0.527155pt;}
.ls3_c00318{letter-spacing:0.000000pt;}
.ls16_c00318{letter-spacing:0.126720pt;}
.ls12_c00318{letter-spacing:0.278784pt;}
.ls15_c00318{letter-spacing:1.165824pt;}
.ls0_c00318{letter-spacing:1.603008pt;}
.ls6_c00318{letter-spacing:2.112000pt;}
.ls2_c00318{letter-spacing:2.692800pt;}
.lsb_c00318{letter-spacing:2.914560pt;}
.ls5_c00318{letter-spacing:3.168000pt;}
.ls4_c00318{letter-spacing:3.282400pt;}
.ls14_c00318{letter-spacing:3.291209pt;}
.lsa_c00318{letter-spacing:3.308800pt;}
.ls1_c00318{letter-spacing:19.008000pt;}
.ls17_c00318{letter-spacing:45.619376pt;}
.lsd_c00318{letter-spacing:60.825776pt;}
.lse_c00318{letter-spacing:68.428976pt;}
.ws2_c00318{word-spacing:-18.754560pt;}
.ws4_c00318{word-spacing:-18.532800pt;}
.ws5_c00318{word-spacing:-15.840000pt;}
.ws6_c00318{word-spacing:-14.192640pt;}
.ws0_c00318{word-spacing:-10.560000pt;}
.ws3_c00318{word-spacing:-5.163840pt;}
.wsa_c00318{word-spacing:0.000000pt;}
.ws7_c00318{word-spacing:5.702400pt;}
.ws1_c00318{word-spacing:6.842880pt;}
.ws8_c00318{word-spacing:6.969600pt;}
.ws9_c00318{word-spacing:9.504000pt;}
._16_c00318{margin-left:-10.327680pt;}
._10_c00318{margin-left:-7.983360pt;}
._a_c00318{margin-left:-7.001280pt;}
._3_c00318{margin-left:-5.258880pt;}
._15_c00318{margin-left:-4.181760pt;}
._13_c00318{margin-left:-2.851200pt;}
._b_c00318{margin-left:-1.066560pt;}
._17_c00318{width:5.772800pt;}
._1_c00318{width:7.054080pt;}
._c_c00318{width:8.831680pt;}
._14_c00318{width:10.303040pt;}
._4_c00318{width:11.341440pt;}
._9_c00318{width:14.210240pt;}
._12_c00318{width:17.740800pt;}
._11_c00318{width:19.008000pt;}
._1a_c00318{width:20.275200pt;}
._2_c00318{width:21.542400pt;}
._19_c00318{width:22.999680pt;}
._d_c00318{width:24.076800pt;}
._8_c00318{width:27.941760pt;}
._7_c00318{width:29.744000pt;}
._5_c00318{width:30.919680pt;}
._0_c00318{width:33.000000pt;}
._6_c00318{width:35.157760pt;}
._1c_c00318{width:37.065600pt;}
._f_c00318{width:38.360960pt;}
._1b_c00318{width:39.600000pt;}
._18_c00318{width:42.514560pt;}
._e_c00318{width:47.037056pt;}
.fs0_c00318{font-size:19.712000pt;}
.fs8_c00318{font-size:24.640000pt;}
.fs13_c00318{font-size:27.456000pt;}
.fsd_c00318{font-size:39.600000pt;}
.fs3_c00318{font-size:42.240000pt;}
.fs5_c00318{font-size:43.648000pt;}
.fs11_c00318{font-size:45.619376pt;}
.fs4_c00318{font-size:47.872176pt;}
.fs12_c00318{font-size:49.456000pt;}
.fs6_c00318{font-size:51.040000pt;}
.fse_c00318{font-size:60.544176pt;}
.fsa_c00318{font-size:60.825776pt;}
.fs9_c00318{font-size:61.248000pt;}
.fsb_c00318{font-size:63.008000pt;}
.fs10_c00318{font-size:63.184176pt;}
.fs2_c00318{font-size:63.360000pt;}
.fs1_c00318{font-size:65.648000pt;}
.fsf_c00318{font-size:65.824176pt;}
.fs7_c00318{font-size:66.176000pt;}
.fsc_c00318{font-size:68.428976pt;}
.y0_c00318{bottom:0.000000pt;}
.y1_c00318{bottom:68.000000pt;}
.y1d_c00318{bottom:118.404920pt;}
.y1b_c00318{bottom:126.324920pt;}
.y1c_c00318{bottom:140.580920pt;}
.y1a_c00318{bottom:150.084920pt;}
.y19_c00318{bottom:236.888120pt;}
.y18_c00318{bottom:266.667320pt;}
.y17_c00318{bottom:296.129720pt;}
.y16_c00318{bottom:324.641720pt;}
.y15_c00318{bottom:354.733320pt;}
.y14_c00318{bottom:383.249720pt;}
.y13_c00318{bottom:412.395320pt;}
.y12_c00318{bottom:441.219720pt;}
.y11_c00318{bottom:470.686520pt;}
.y10_c00318{bottom:527.072520pt;}
.yf_c00318{bottom:556.539320pt;}
.y2_c00318{bottom:563.821320pt;}
.ye_c00318{bottom:586.001720pt;}
.yd_c00318{bottom:614.509320pt;}
.yc_c00318{bottom:644.605320pt;}
.yb_c00318{bottom:674.701320pt;}
.ya_c00318{bottom:706.698120pt;}
.y9_c00318{bottom:731.725320pt;}
.y8_c00318{bottom:762.459320pt;}
.y7_c00318{bottom:792.234120pt;}
.y6_c00318{bottom:817.261320pt;}
.y5_c00318{bottom:821.379720pt;}
.y4_c00318{bottom:853.697720pt;}
.y3_c00318{bottom:961.092920pt;}
.h2_c00318{height:20.559000pt;}
.ha_c00318{height:25.698750pt;}
.h15_c00318{height:26.946563pt;}
.h13_c00318{height:30.382504pt;}
.hc_c00318{height:40.509967pt;}
.hf_c00318{height:41.301563pt;}
.h5_c00318{height:41.456250pt;}
.h7_c00318{height:42.838125pt;}
.he_c00318{height:45.573698pt;}
.h6_c00318{height:49.929184pt;}
.h14_c00318{height:51.581063pt;}
.h8_c00318{height:53.233125pt;}
.h10_c00318{height:59.420798pt;}
.hb_c00318{height:60.111562pt;}
.hd_c00318{height:61.838906pt;}
.h12_c00318{height:62.011813pt;}
.h4_c00318{height:62.184375pt;}
.h3_c00318{height:64.429922pt;}
.h11_c00318{height:64.602829pt;}
.h9_c00318{height:64.948125pt;}
.h1_c00318{height:986.666667pt;}
.h0_c00318{height:1122.666667pt;}
.w1_c00318{width:694.666667pt;}
.w0_c00318{width:793.333333pt;}
.x0_c00318{left:0.000000pt;}
.x2_c00318{left:26.656920pt;}
.x1_c00318{left:49.333333pt;}
.x5_c00318{left:85.682920pt;}
.x5a_c00318{left:86.910520pt;}
.x23_c00318{left:88.635320pt;}
.x24_c00318{left:98.090920pt;}
.x25_c00318{left:100.840920pt;}
.x49_c00318{left:105.724920pt;}
.x31_c00318{left:114.872520pt;}
.x62_c00318{left:116.289320pt;}
.x5b_c00318{left:117.318920pt;}
.x6_c00318{left:126.000120pt;}
.x26_c00318{left:127.016520pt;}
.x63_c00318{left:130.853320pt;}
.x27_c00318{left:134.276520pt;}
.x4f_c00318{left:135.226920pt;}
.x82_c00318{left:136.626120pt;}
.x19_c00318{left:145.272120pt;}
.x7f_c00318{left:146.204920pt;}
.x7_c00318{left:147.177320pt;}
.x4_c00318{left:150.525720pt;}
.x6e_c00318{left:155.484520pt;}
.x8_c00318{left:164.658520pt;}
.x83_c00318{left:166.255720pt;}
.x69_c00318{left:173.388120pt;}
.x1a_c00318{left:174.334120pt;}
.x84_c00318{left:177.704520pt;}
.x4a_c00318{left:183.868920pt;}
.x34_c00318{left:184.907320pt;}
.x6a_c00318{left:187.740920pt;}
.x28_c00318{left:191.612920pt;}
.x1b_c00318{left:194.754520pt;}
.x77_c00318{left:195.674120pt;}
.x50_c00318{left:204.548920pt;}
.x4b_c00318{left:206.357320pt;}
.x4c_c00318{left:214.910920pt;}
.x29_c00318{left:223.561320pt;}
.x73_c00318{left:224.573320pt;}
.x9_c00318{left:233.421720pt;}
.x51_c00318{left:243.255720pt;}
.x6f_c00318{left:245.776920pt;}
.x3d_c00318{left:252.847720pt;}
.x1c_c00318{left:254.009320pt;}
.xa_c00318{left:262.809320pt;}
.x70_c00318{left:263.786120pt;}
.x1d_c00318{left:273.382520pt;}
.x7b_c00318{left:274.473720pt;}
.x1e_c00318{left:282.987720pt;}
.x32_c00318{left:292.372920pt;}
.x5c_c00318{left:293.340920pt;}
.x6b_c00318{left:294.251720pt;}
.x1f_c00318{left:302.756920pt;}
.x74_c00318{left:303.724920pt;}
.x56_c00318{left:312.300520pt;}
.x2a_c00318{left:313.233320pt;}
.x35_c00318{left:322.147720pt;}
.x78_c00318{left:323.115720pt;}
.x3e_c00318{left:331.136920pt;}
.xb_c00318{left:332.100520pt;}
.x2b_c00318{left:341.762920pt;}
.x75_c00318{left:344.860520pt;}
.x20_c00318{left:351.258120pt;}
.x5d_c00318{left:353.515320pt;}
.x79_c00318{left:354.681320pt;}
.xc_c00318{left:361.395720pt;}
.x5e_c00318{left:371.814920pt;}
.x3f_c00318{left:379.937320pt;}
.x2c_c00318{left:381.032920pt;}
.x52_c00318{left:382.005320pt;}
.x36_c00318{left:391.636920pt;}
.x7c_c00318{left:393.634520pt;}
.xd_c00318{left:400.705320pt;}
.x7a_c00318{left:401.937320pt;}
.x66_c00318{left:403.072520pt;}
.x14_c00318{left:408.198520pt;}
.x37_c00318{left:410.851720pt;}
.x40_c00318{left:412.972520pt;}
.xe_c00318{left:420.333720pt;}
.x76_c00318{left:421.306120pt;}
.x38_c00318{left:430.286520pt;}
.x41_c00318{left:432.873720pt;}
.x6c_c00318{left:441.075320pt;}
.x39_c00318{left:450.090920pt;}
.xf_c00318{left:451.067720pt;}
.x33_c00318{left:453.364520pt;}
.x10_c00318{left:460.158120pt;}
.x80_c00318{left:461.174520pt;}
.x15_c00318{left:470.242920pt;}
.x16_c00318{left:472.623320pt;}
.x11_c00318{left:479.553320pt;}
.x67_c00318{left:488.577720pt;}
.x4d_c00318{left:489.946120pt;}
.x57_c00318{left:498.781320pt;}
.x12_c00318{left:499.832920pt;}
.x3a_c00318{left:508.047720pt;}
.x64_c00318{left:509.939720pt;}
.x2d_c00318{left:517.732120pt;}
.x42_c00318{left:518.726520pt;}
.x13_c00318{left:520.605320pt;}
.x53_c00318{left:525.762120pt;}
.x68_c00318{left:528.190920pt;}
.x43_c00318{left:529.180920pt;}
.x3b_c00318{left:537.439720pt;}
.x17_c00318{left:538.640920pt;}
.x4e_c00318{left:547.726920pt;}
.x2e_c00318{left:548.892920pt;}
.x54_c00318{left:553.842920pt;}
.x21_c00318{left:557.864520pt;}
.x5f_c00318{left:558.788520pt;}
.x44_c00318{left:559.901720pt;}
.x45_c00318{left:567.152920pt;}
.x2f_c00318{left:576.718520pt;}
.x58_c00318{left:578.394920pt;}
.x22_c00318{left:586.926520pt;}
.x65_c00318{left:588.017720pt;}
.x18_c00318{left:596.016920pt;}
.x60_c00318{left:597.570120pt;}
.x3_c00318{left:598.639320pt;}
.x46_c00318{left:606.849720pt;}
.x7d_c00318{left:607.830920pt;}
.x3c_c00318{left:616.001720pt;}
.x61_c00318{left:617.722120pt;}
.x81_c00318{left:619.446920pt;}
.x85_c00318{left:622.557720pt;}
.x30_c00318{left:626.878520pt;}
.x6d_c00318{left:628.128120pt;}
.x88_c00318{left:631.054120pt;}
.x55_c00318{left:635.586120pt;}
.x47_c00318{left:636.602520pt;}
.x71_c00318{left:637.566120pt;}
.x48_c00318{left:648.786120pt;}
.x72_c00318{left:656.974520pt;}
.x7e_c00318{left:658.228520pt;}
.x59_c00318{left:666.478520pt;}
.x86_c00318{left:677.588520pt;}
.x87_c00318{left:685.587720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0ca9847b8222d9e21c43a03b.woff2')format("woff");}.ff1_c00319{font-family:ff1_c00319;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00319;src:url('chunks/assets/font_5ab488a03775cabcd8a0c4b1.woff2')format("woff");}.ff2_c00319{font-family:ff2_c00319;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00319;src:url('chunks/assets/font_225db6d0225fd8e8d2c02726.woff2')format("woff");}.ff3_c00319{font-family:ff3_c00319;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00319;src:url('chunks/assets/font_b7bf50b72c565efbaf3c775f.woff2')format("woff");}.ff4_c00319{font-family:ff4_c00319;line-height:0.666000;font-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_c00319{transform:matrix(0.014707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.014707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.014707,0.000000,0.000000,0.250000,0,0);}
.m93_c00319{transform:matrix(0.031373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.031373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.031373,0.000000,0.000000,0.250000,0,0);}
.m95_c00319{transform:matrix(0.061274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.061274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.061274,0.000000,0.000000,0.250000,0,0);}
.m81_c00319{transform:matrix(0.067533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.067533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.067533,0.000000,0.000000,0.250000,0,0);}
.m86_c00319{transform:matrix(0.068627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.068627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.068627,0.000000,0.000000,0.250000,0,0);}
.m7c_c00319{transform:matrix(0.072917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072917,0.000000,0.000000,0.250000,0,0);}
.m94_c00319{transform:matrix(0.073529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073529,0.000000,0.000000,0.250000,0,0);}
.m88_c00319{transform:matrix(0.075981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075981,0.000000,0.000000,0.250000,0,0);}
.m83_c00319{transform:matrix(0.081633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081633,0.000000,0.000000,0.250000,0,0);}
.m8a_c00319{transform:matrix(0.105169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105169,0.000000,0.000000,0.250000,0,0);}
.m8b_c00319{transform:matrix(0.112745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112745,0.000000,0.000000,0.250000,0,0);}
.m87_c00319{transform:matrix(0.113726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113726,0.000000,0.000000,0.250000,0,0);}
.m6d_c00319{transform:matrix(0.127408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127408,0.000000,0.000000,0.250000,0,0);}
.m85_c00319{transform:matrix(0.142157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142157,0.000000,0.000000,0.250000,0,0);}
.m8c_c00319{transform:matrix(0.147058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147058,0.000000,0.000000,0.250000,0,0);}
.m3a_c00319{transform:matrix(0.153574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153574,0.000000,0.000000,0.250000,0,0);}
.m84_c00319{transform:matrix(0.155229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155229,0.000000,0.000000,0.250000,0,0);}
.m7b_c00319{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);}
.m97_c00319{transform:matrix(0.170683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170683,0.000000,0.000000,0.250000,0,0);}
.m2e_c00319{transform:matrix(0.178975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178975,0.000000,0.000000,0.250000,0,0);}
.m17_c00319{transform:matrix(0.179375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179375,0.000000,0.000000,0.250000,0,0);}
.m92_c00319{transform:matrix(0.192517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192517,0.000000,0.000000,0.250000,0,0);}
.m1f_c00319{transform:matrix(0.196803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196803,0.000000,0.000000,0.250000,0,0);}
.m2a_c00319{transform:matrix(0.196918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196918,0.000000,0.000000,0.250000,0,0);}
.m90_c00319{transform:matrix(0.199678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199678,0.000000,0.000000,0.250000,0,0);}
.m7d_c00319{transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);}
.m6a_c00319{transform:matrix(0.204211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204211,0.000000,0.000000,0.250000,0,0);}
.m12_c00319{transform:matrix(0.209769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209769,0.000000,0.000000,0.250000,0,0);}
.m7f_c00319{transform:matrix(0.216489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216489,0.000000,0.000000,0.250000,0,0);}
.m16_c00319{transform:matrix(0.216760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216760,0.000000,0.000000,0.250000,0,0);}
.m96_c00319{transform:matrix(0.219487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219487,0.000000,0.000000,0.250000,0,0);}
.m8e_c00319{transform:matrix(0.232965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232965,0.000000,0.000000,0.250000,0,0);}
.m80_c00319{transform:matrix(0.236913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236913,0.000000,0.000000,0.250000,0,0);}
.m82_c00319{transform:matrix(0.241711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241711,0.000000,0.000000,0.250000,0,0);}
.m1_c00319{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m91_c00319{transform:matrix(0.250259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250259,0.000000,0.000000,0.250000,0,0);}
.m1b_c00319{transform:matrix(0.255999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255999,0.000000,0.000000,0.250000,0,0);}
.m8f_c00319{transform:matrix(0.262484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262484,0.000000,0.000000,0.250000,0,0);}
.m0_c00319{transform:matrix(0.264446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264446,0.000000,0.000000,0.250000,0,0);}
.m7e_c00319{transform:matrix(0.265941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265941,0.000000,0.000000,0.250000,0,0);}
.m5c_c00319{transform:matrix(0.267080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267080,0.000000,0.000000,0.250000,0,0);}
.m10_c00319{transform:matrix(0.269311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269311,0.000000,0.000000,0.250000,0,0);}
.m44_c00319{transform:matrix(0.270034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270034,0.000000,0.000000,0.250000,0,0);}
.m22_c00319{transform:matrix(0.270386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270386,0.000000,0.000000,0.250000,0,0);}
.m72_c00319{transform:matrix(0.271622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271622,0.000000,0.000000,0.250000,0,0);}
.mb_c00319{transform:matrix(0.272958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272958,0.000000,0.000000,0.250000,0,0);}
.m1c_c00319{transform:matrix(0.276595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276595,0.000000,0.000000,0.250000,0,0);}
.m47_c00319{transform:matrix(0.277798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277798,0.000000,0.000000,0.250000,0,0);}
.ma_c00319{transform:matrix(0.279148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279148,0.000000,0.000000,0.250000,0,0);}
.m37_c00319{transform:matrix(0.279735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279735,0.000000,0.000000,0.250000,0,0);}
.m66_c00319{transform:matrix(0.279956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279956,0.000000,0.000000,0.250000,0,0);}
.m48_c00319{transform:matrix(0.281107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281107,0.000000,0.000000,0.250000,0,0);}
.m38_c00319{transform:matrix(0.282201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282201,0.000000,0.000000,0.250000,0,0);}
.m18_c00319{transform:matrix(0.282608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282608,0.000000,0.000000,0.250000,0,0);}
.m7a_c00319{transform:matrix(0.284151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284151,0.000000,0.000000,0.250000,0,0);}
.m15_c00319{transform:matrix(0.285320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285320,0.000000,0.000000,0.250000,0,0);}
.m43_c00319{transform:matrix(0.286150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286150,0.000000,0.000000,0.250000,0,0);}
.m6e_c00319{transform:matrix(0.286244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286244,0.000000,0.000000,0.250000,0,0);}
.m4_c00319{transform:matrix(0.286738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286738,0.000000,0.000000,0.250000,0,0);}
.m6_c00319{transform:matrix(0.287241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287241,0.000000,0.000000,0.250000,0,0);}
.m74_c00319{transform:matrix(0.287919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287919,0.000000,0.000000,0.250000,0,0);}
.m6b_c00319{transform:matrix(0.288341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288341,0.000000,0.000000,0.250000,0,0);}
.m2b_c00319{transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);}
.m8d_c00319{transform:matrix(0.290646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290646,0.000000,0.000000,0.250000,0,0);}
.m5e_c00319{transform:matrix(0.290846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290846,0.000000,0.000000,0.250000,0,0);}
.m7_c00319{transform:matrix(0.291490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291490,0.000000,0.000000,0.250000,0,0);}
.m79_c00319{transform:matrix(0.293044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293044,0.000000,0.000000,0.250000,0,0);}
.m69_c00319{transform:matrix(0.294945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294945,0.000000,0.000000,0.250000,0,0);}
.mf_c00319{transform:matrix(0.296197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296197,0.000000,0.000000,0.250000,0,0);}
.m1d_c00319{transform:matrix(0.296675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296675,0.000000,0.000000,0.250000,0,0);}
.m24_c00319{transform:matrix(0.297657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297657,0.000000,0.000000,0.250000,0,0);}
.m4e_c00319{transform:matrix(0.298356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298356,0.000000,0.000000,0.250000,0,0);}
.m14_c00319{transform:matrix(0.299046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299046,0.000000,0.000000,0.250000,0,0);}
.m58_c00319{transform:matrix(0.299800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299800,0.000000,0.000000,0.250000,0,0);}
.m30_c00319{transform:matrix(0.301753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301753,0.000000,0.000000,0.250000,0,0);}
.m76_c00319{transform:matrix(0.302360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302360,0.000000,0.000000,0.250000,0,0);}
.m13_c00319{transform:matrix(0.302416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302416,0.000000,0.000000,0.250000,0,0);}
.m2_c00319{transform:matrix(0.303019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303019,0.000000,0.000000,0.250000,0,0);}
.m5b_c00319{transform:matrix(0.303165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303165,0.000000,0.000000,0.250000,0,0);}
.m62_c00319{transform:matrix(0.304889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304889,0.000000,0.000000,0.250000,0,0);}
.m4b_c00319{transform:matrix(0.306081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306081,0.000000,0.000000,0.250000,0,0);}
.m52_c00319{transform:matrix(0.306744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306744,0.000000,0.000000,0.250000,0,0);}
.m32_c00319{transform:matrix(0.306759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306759,0.000000,0.000000,0.250000,0,0);}
.m3d_c00319{transform:matrix(0.307446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307446,0.000000,0.000000,0.250000,0,0);}
.m57_c00319{transform:matrix(0.309324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309324,0.000000,0.000000,0.250000,0,0);}
.m64_c00319{transform:matrix(0.309793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309793,0.000000,0.000000,0.250000,0,0);}
.m39_c00319{transform:matrix(0.311627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311627,0.000000,0.000000,0.250000,0,0);}
.m5d_c00319{transform:matrix(0.313140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313140,0.000000,0.000000,0.250000,0,0);}
.m56_c00319{transform:matrix(0.313454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313454,0.000000,0.000000,0.250000,0,0);}
.m27_c00319{transform:matrix(0.314275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314275,0.000000,0.000000,0.250000,0,0);}
.m70_c00319{transform:matrix(0.315166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315166,0.000000,0.000000,0.250000,0,0);}
.m5_c00319{transform:matrix(0.315233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315233,0.000000,0.000000,0.250000,0,0);}
.m2f_c00319{transform:matrix(0.315928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315928,0.000000,0.000000,0.250000,0,0);}
.m9_c00319{transform:matrix(0.316518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316518,0.000000,0.000000,0.250000,0,0);}
.mc_c00319{transform:matrix(0.316564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316564,0.000000,0.000000,0.250000,0,0);}
.m50_c00319{transform:matrix(0.317811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317811,0.000000,0.000000,0.250000,0,0);}
.m75_c00319{transform:matrix(0.318220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318220,0.000000,0.000000,0.250000,0,0);}
.m33_c00319{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);}
.m36_c00319{transform:matrix(0.320365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320365,0.000000,0.000000,0.250000,0,0);}
.m35_c00319{transform:matrix(0.322238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322238,0.000000,0.000000,0.250000,0,0);}
.m40_c00319{transform:matrix(0.326050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326050,0.000000,0.000000,0.250000,0,0);}
.m63_c00319{transform:matrix(0.328517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328517,0.000000,0.000000,0.250000,0,0);}
.m51_c00319{transform:matrix(0.328807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328807,0.000000,0.000000,0.250000,0,0);}
.m71_c00319{transform:matrix(0.328810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328810,0.000000,0.000000,0.250000,0,0);}
.m21_c00319{transform:matrix(0.330232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330232,0.000000,0.000000,0.250000,0,0);}
.m4c_c00319{transform:matrix(0.332703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332703,0.000000,0.000000,0.250000,0,0);}
.m34_c00319{transform:matrix(0.336048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336048,0.000000,0.000000,0.250000,0,0);}
.m78_c00319{transform:matrix(0.337916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337916,0.000000,0.000000,0.250000,0,0);}
.m1e_c00319{transform:matrix(0.340414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340414,0.000000,0.000000,0.250000,0,0);}
.m25_c00319{transform:matrix(0.340943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340943,0.000000,0.000000,0.250000,0,0);}
.m60_c00319{transform:matrix(0.340952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340952,0.000000,0.000000,0.250000,0,0);}
.md_c00319{transform:matrix(0.341783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341783,0.000000,0.000000,0.250000,0,0);}
.m68_c00319{transform:matrix(0.342103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342103,0.000000,0.000000,0.250000,0,0);}
.m41_c00319{transform:matrix(0.343140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343140,0.000000,0.000000,0.250000,0,0);}
.m6c_c00319{transform:matrix(0.344418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344418,0.000000,0.000000,0.250000,0,0);}
.m1a_c00319{transform:matrix(0.344844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344844,0.000000,0.000000,0.250000,0,0);}
.m5f_c00319{transform:matrix(0.344930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344930,0.000000,0.000000,0.250000,0,0);}
.m61_c00319{transform:matrix(0.345692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345692,0.000000,0.000000,0.250000,0,0);}
.m3b_c00319{transform:matrix(0.349304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349304,0.000000,0.000000,0.250000,0,0);}
.m3e_c00319{transform:matrix(0.349415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349415,0.000000,0.000000,0.250000,0,0);}
.m23_c00319{transform:matrix(0.349676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349676,0.000000,0.000000,0.250000,0,0);}
.m3_c00319{transform:matrix(0.350324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350324,0.000000,0.000000,0.250000,0,0);}
.m59_c00319{transform:matrix(0.352727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352727,0.000000,0.000000,0.250000,0,0);}
.me_c00319{transform:matrix(0.353084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353084,0.000000,0.000000,0.250000,0,0);}
.m19_c00319{transform:matrix(0.353801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353801,0.000000,0.000000,0.250000,0,0);}
.m4a_c00319{transform:matrix(0.354427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354427,0.000000,0.000000,0.250000,0,0);}
.m20_c00319{transform:matrix(0.354771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354771,0.000000,0.000000,0.250000,0,0);}
.m4f_c00319{transform:matrix(0.356907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356907,0.000000,0.000000,0.250000,0,0);}
.m55_c00319{transform:matrix(0.362559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362559,0.000000,0.000000,0.250000,0,0);}
.m73_c00319{transform:matrix(0.363041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363041,0.000000,0.000000,0.250000,0,0);}
.m6f_c00319{transform:matrix(0.363517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363517,0.000000,0.000000,0.250000,0,0);}
.m28_c00319{transform:matrix(0.363663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363663,0.000000,0.000000,0.250000,0,0);}
.m65_c00319{transform:matrix(0.363831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363831,0.000000,0.000000,0.250000,0,0);}
.m26_c00319{transform:matrix(0.364085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364085,0.000000,0.000000,0.250000,0,0);}
.m5a_c00319{transform:matrix(0.364495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364495,0.000000,0.000000,0.250000,0,0);}
.m54_c00319{transform:matrix(0.367008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367008,0.000000,0.000000,0.250000,0,0);}
.m53_c00319{transform:matrix(0.367736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367736,0.000000,0.000000,0.250000,0,0);}
.m42_c00319{transform:matrix(0.368477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368477,0.000000,0.000000,0.250000,0,0);}
.m2c_c00319{transform:matrix(0.374487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374487,0.000000,0.000000,0.250000,0,0);}
.m49_c00319{transform:matrix(0.378840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378840,0.000000,0.000000,0.250000,0,0);}
.m3f_c00319{transform:matrix(0.381275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381275,0.000000,0.000000,0.250000,0,0);}
.m29_c00319{transform:matrix(0.382293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382293,0.000000,0.000000,0.250000,0,0);}
.m31_c00319{transform:matrix(0.387627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387627,0.000000,0.000000,0.250000,0,0);}
.m4d_c00319{transform:matrix(0.387649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387649,0.000000,0.000000,0.250000,0,0);}
.m11_c00319{transform:matrix(0.390863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390863,0.000000,0.000000,0.250000,0,0);}
.m3c_c00319{transform:matrix(0.395654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395654,0.000000,0.000000,0.250000,0,0);}
.m77_c00319{transform:matrix(0.398379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398379,0.000000,0.000000,0.250000,0,0);}
.m46_c00319{transform:matrix(0.408844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408844,0.000000,0.000000,0.250000,0,0);}
.m45_c00319{transform:matrix(0.446385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446385,0.000000,0.000000,0.250000,0,0);}
.m67_c00319{transform:matrix(0.446694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446694,0.000000,0.000000,0.250000,0,0);}
.m8_c00319{transform:matrix(0.455298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455298,0.000000,0.000000,0.250000,0,0);}
.m2d_c00319{transform:matrix(0.471652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471652,0.000000,0.000000,0.250000,0,0);}
.v0_c00319{vertical-align:0.000000px;}
.ls8_c00319{letter-spacing:-2.515590px;}
.ls16_c00319{letter-spacing:-2.453227px;}
.lsf_c00319{letter-spacing:-2.376990px;}
.ls18_c00319{letter-spacing:-2.252250px;}
.ls1b_c00319{letter-spacing:-2.099790px;}
.lsc_c00319{letter-spacing:-1.832787px;}
.ls6_c00319{letter-spacing:-1.358419px;}
.ls9_c00319{letter-spacing:-1.205820px;}
.ls1a_c00319{letter-spacing:-1.134164px;}
.ls14_c00319{letter-spacing:-1.113790px;}
.ls19_c00319{letter-spacing:-0.468607px;}
.ls4_c00319{letter-spacing:0.000000px;}
.ls7_c00319{letter-spacing:0.444076px;}
.ls1c_c00319{letter-spacing:1.426194px;}
.lsd_c00319{letter-spacing:1.538104px;}
.lsa_c00319{letter-spacing:1.722600px;}
.lsb_c00319{letter-spacing:2.414966px;}
.ls13_c00319{letter-spacing:3.395700px;}
.ls15_c00319{letter-spacing:3.435310px;}
.ls17_c00319{letter-spacing:3.504610px;}
.ls5_c00319{letter-spacing:3.593700px;}
.ls3_c00319{letter-spacing:4.039200px;}
.ls1_c00319{letter-spacing:17.538048px;}
.ls0_c00319{letter-spacing:23.215698px;}
.ls2_c00319{letter-spacing:24.580908px;}
.lse_c00319{letter-spacing:51.321798px;}
.ls11_c00319{letter-spacing:69.854598px;}
.ls12_c00319{letter-spacing:72.705798px;}
.ls10_c00319{letter-spacing:78.408198px;}
.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:-17.968500px;}
.ws4_c00319{word-spacing:-16.978500px;}
.ws2_c00319{word-spacing:-3.162456px;}
.ws5_c00319{word-spacing:0.000000px;}
.ws3_c00319{word-spacing:0.934362px;}
.ws1_c00319{word-spacing:1.412079px;}
._16_c00319{margin-left:-25.962552px;}
._19_c00319{margin-left:-12.266072px;}
._18_c00319{margin-left:-8.761643px;}
._15_c00319{margin-left:-3.872088px;}
._1_c00319{width:2.013264px;}
._10_c00319{width:4.743684px;}
._2_c00319{width:6.755760px;}
._0_c00319{width:9.199872px;}
._e_c00319{width:10.349856px;}
._5_c00319{width:11.715660px;}
._12_c00319{width:12.936924px;}
._6_c00319{width:14.806044px;}
._17_c00319{width:15.981108px;}
._11_c00319{width:18.974736px;}
._8_c00319{width:20.555766px;}
._7_c00319{width:21.849696px;}
._b_c00319{width:24.509034px;}
._13_c00319{width:32.639904px;}
._14_c00319{width:33.780780px;}
._f_c00319{width:35.577630px;}
._4_c00319{width:38.762658px;}
._3_c00319{width:39.890070px;}
._d_c00319{width:41.481000px;}
._c_c00319{width:44.202114px;}
._9_c00319{width:50.033412px;}
._a_c00319{width:649.793232px;}
.fc0_c00319{color:transparent;}
.fs1a_c00319{font-size:22.176000px;}
.fs7_c00319{font-size:26.928000px;}
.fs1_c00319{font-size:27.720000px;}
.fs15_c00319{font-size:33.660000px;}
.fs4_c00319{font-size:34.452000px;}
.fs19_c00319{font-size:44.352000px;}
.fs3_c00319{font-size:49.896198px;}
.fs9_c00319{font-size:51.321798px;}
.fsd_c00319{font-size:57.222000px;}
.fs18_c00319{font-size:59.994000px;}
.fs17_c00319{font-size:61.578000px;}
.fse_c00319{font-size:63.162000px;}
.fs13_c00319{font-size:64.350000px;}
.fs5_c00319{font-size:64.548000px;}
.fs6_c00319{font-size:66.528000px;}
.fs16_c00319{font-size:67.320000px;}
.fsa_c00319{font-size:67.914000px;}
.fs11_c00319{font-size:68.706198px;}
.fsc_c00319{font-size:69.854598px;}
.fs12_c00319{font-size:70.092198px;}
.fs10_c00319{font-size:70.884000px;}
.fs2_c00319{font-size:71.874000px;}
.fsf_c00319{font-size:72.705798px;}
.fsb_c00319{font-size:78.408198px;}
.fs8_c00319{font-size:79.200000px;}
.fs0_c00319{font-size:80.784000px;}
.fs14_c00319{font-size:86.328000px;}
.y0_c00319{bottom:0.000000px;}
.y1_c00319{bottom:76.500000px;}
.y1d_c00319{bottom:177.399135px;}
.y18_c00319{bottom:212.326335px;}
.y1c_c00319{bottom:214.464735px;}
.y1b_c00319{bottom:242.258985px;}
.y17_c00319{bottom:243.328185px;}
.y1a_c00319{bottom:281.819385px;}
.y1f_c00319{bottom:288.234585px;}
.y1e_c00319{bottom:294.293385px;}
.y19_c00319{bottom:306.772335px;}
.y16_c00319{bottom:307.128735px;}
.y15_c00319{bottom:342.055935px;}
.y14_c00319{bottom:371.280735px;}
.y13_c00319{bottom:413.335935px;}
.y12_c00319{bottom:437.214735px;}
.y11_c00319{bottom:501.010335px;}
.y10_c00319{bottom:534.150585px;}
.yf_c00319{bottom:598.302585px;}
.ye_c00319{bottom:631.452735px;}
.yd_c00319{bottom:666.731385px;}
.yc_c00319{bottom:698.812335px;}
.yb_c00319{bottom:730.888335px;}
.ya_c00319{bottom:763.315785px;}
.y9_c00319{bottom:796.109535px;}
.y8_c00319{bottom:813.211785px;}
.y7_c00319{bottom:828.536985px;}
.y6_c00319{bottom:860.612985px;}
.y5_c00319{bottom:893.050335px;}
.y4_c00319{bottom:925.121385px;}
.y3_c00319{bottom:1015.646985px;}
.y2_c00319{bottom:1075.165785px;}
.h18_c00319{height:23.128875px;}
.h3_c00319{height:28.911094px;}
.h13_c00319{height:33.035449px;}
.h5_c00319{height:33.812754px;}
.h8_c00319{height:34.180317px;}
.h17_c00319{height:46.257750px;}
.hb_c00319{height:46.523162px;}
.hd_c00319{height:48.422061px;}
.ha_c00319{height:52.219860px;}
.h16_c00319{height:58.880830px;}
.hc_c00319{height:61.990049px;}
.h15_c00319{height:64.223930px;}
.h11_c00319{height:64.852734px;}
.h9_c00319{height:66.653877px;}
.hf_c00319{height:67.431376px;}
.h10_c00319{height:68.791659px;}
.h6_c00319{height:69.386625px;}
.he_c00319{height:69.568770px;}
.h14_c00319{height:70.212656px;}
.h4_c00319{height:70.540400px;}
.h7_c00319{height:77.730469px;}
.h2_c00319{height:81.415125px;}
.h12_c00319{height:90.037406px;}
.h1_c00319{height:1110.000000px;}
.h0_c00319{height:1263.000000px;}
.w1_c00319{width:781.500000px;}
.w0_c00319{width:892.500000px;}
.x0_c00319{left:0.000000px;}
.x1_c00319{left:55.500000px;}
.x2d_c00319{left:96.393285px;}
.x4_c00319{left:97.472385px;}
.x57_c00319{left:98.987085px;}
.x16_c00319{left:100.021635px;}
.x20_c00319{left:107.961435px;}
.x21_c00319{left:118.994985px;}
.x3a_c00319{left:129.983985px;}
.x3f_c00319{left:141.071985px;}
.x2e_c00319{left:142.101585px;}
.x22_c00319{left:150.531435px;}
.x48_c00319{left:152.036235px;}
.x2f_c00319{left:153.189585px;}
.x3b_c00319{left:162.708435px;}
.x52_c00319{left:164.163735px;}
.x17_c00319{left:173.944935px;}
.x3c_c00319{left:185.557635px;}
.x40_c00319{left:187.319835px;}
.x30_c00319{left:196.333785px;}
.x51_c00319{left:206.129835px;}
.x23_c00319{left:208.391985px;}
.x61_c00319{left:228.592935px;}
.x5_c00319{left:229.820535px;}
.x67_c00319{left:233.008335px;}
.x31_c00319{left:239.591835px;}
.x6_c00319{left:241.165935px;}
.x18_c00319{left:252.278685px;}
.x3d_c00319{left:262.931085px;}
.x24_c00319{left:273.093435px;}
.x7_c00319{left:275.078385px;}
.x62_c00319{left:285.260535px;}
.x41_c00319{left:287.819685px;}
.x3_c00319{left:290.492685px;}
.x8_c00319{left:295.615935px;}
.x53_c00319{left:297.086085px;}
.x25_c00319{left:306.842535px;}
.x68_c00319{left:311.564835px;}
.x50_c00319{left:317.638485px;}
.x42_c00319{left:318.866085px;}
.x69_c00319{left:323.038935px;}
.x9_c00319{left:329.270985px;}
.x54_c00319{left:330.627285px;}
.x6a_c00319{left:333.374535px;}
.x6b_c00319{left:334.443735px;}
.xa_c00319{left:341.675685px;}
.x19_c00319{left:351.219285px;}
.x58_c00319{left:352.456785px;}
.x63_c00319{left:358.678935px;}
.x5f_c00319{left:360.812385px;}
.x26_c00319{left:362.564685px;}
.x5d_c00319{left:373.573485px;}
.x32_c00319{left:374.830785px;}
.x64_c00319{left:377.924535px;}
.xb_c00319{left:385.215885px;}
.x27_c00319{left:395.348535px;}
.x60_c00319{left:398.858085px;}
.xc_c00319{left:406.585035px;}
.x43_c00319{left:417.079035px;}
.x49_c00319{left:418.356135px;}
.x1a_c00319{left:420.400485px;}
.x28_c00319{left:429.755985px;}
.x5e_c00319{left:438.507585px;}
.xd_c00319{left:439.725285px;}
.x33_c00319{left:441.274635px;}
.x44_c00319{left:451.258785px;}
.x4a_c00319{left:462.183435px;}
.x65_c00319{left:463.811985px;}
.x29_c00319{left:474.221835px;}
.x66_c00319{left:480.206385px;}
.xe_c00319{left:483.918885px;}
.x59_c00319{left:484.993035px;}
.x6c_c00319{left:494.328735px;}
.x45_c00319{left:495.655335px;}
.x4b_c00319{left:506.891835px;}
.xf_c00319{left:518.054085px;}
.x34_c00319{left:528.795585px;}
.x39_c00319{left:536.779935px;}
.x1b_c00319{left:539.517285px;}
.x6d_c00319{left:543.289185px;}
.x10_c00319{left:550.590435px;}
.x55_c00319{left:551.605185px;}
.x6f_c00319{left:556.055235px;}
.x6e_c00319{left:557.926335px;}
.x2a_c00319{left:561.777435px;}
.x5a_c00319{left:562.891185px;}
.x46_c00319{left:573.073335px;}
.x11_c00319{left:583.715835px;}
.x35_c00319{left:584.804835px;}
.x47_c00319{left:605.263185px;}
.x12_c00319{left:606.569985px;}
.x4c_c00319{left:616.311585px;}
.x36_c00319{left:617.509485px;}
.x5b_c00319{left:618.608385px;}
.x13_c00319{left:627.553035px;}
.x1c_c00319{left:628.701435px;}
.x37_c00319{left:638.972685px;}
.x38_c00319{left:650.164635px;}
.x2b_c00319{left:651.436785px;}
.x1d_c00319{left:661.787235px;}
.x14_c00319{left:671.212035px;}
.x2_c00319{left:673.578135px;}
.x4d_c00319{left:682.309935px;}
.x1e_c00319{left:683.661285px;}
.x15_c00319{left:692.972235px;}
.x5c_c00319{left:697.506435px;}
.x1f_c00319{left:704.906685px;}
.x3e_c00319{left:714.668085px;}
.x2c_c00319{left:716.316435px;}
.x4f_c00319{left:727.939035px;}
.x4e_c00319{left:738.022185px;}
.x70_c00319{left:750.540735px;}
.x56_c00319{left:763.970085px;}
@media print{
.v0_c00319{vertical-align:0.000000pt;}
.ls8_c00319{letter-spacing:-2.236080pt;}
.ls16_c00319{letter-spacing:-2.180646pt;}
.lsf_c00319{letter-spacing:-2.112880pt;}
.ls18_c00319{letter-spacing:-2.002000pt;}
.ls1b_c00319{letter-spacing:-1.866480pt;}
.lsc_c00319{letter-spacing:-1.629144pt;}
.ls6_c00319{letter-spacing:-1.207483pt;}
.ls9_c00319{letter-spacing:-1.071840pt;}
.ls1a_c00319{letter-spacing:-1.008146pt;}
.ls14_c00319{letter-spacing:-0.990035pt;}
.ls19_c00319{letter-spacing:-0.416539pt;}
.ls4_c00319{letter-spacing:0.000000pt;}
.ls7_c00319{letter-spacing:0.394734pt;}
.ls1c_c00319{letter-spacing:1.267728pt;}
.lsd_c00319{letter-spacing:1.367203pt;}
.lsa_c00319{letter-spacing:1.531200pt;}
.lsb_c00319{letter-spacing:2.146637pt;}
.ls13_c00319{letter-spacing:3.018400pt;}
.ls15_c00319{letter-spacing:3.053609pt;}
.ls17_c00319{letter-spacing:3.115209pt;}
.ls5_c00319{letter-spacing:3.194400pt;}
.ls3_c00319{letter-spacing:3.590400pt;}
.ls1_c00319{letter-spacing:15.589376pt;}
.ls0_c00319{letter-spacing:20.636176pt;}
.ls2_c00319{letter-spacing:21.849696pt;}
.lse_c00319{letter-spacing:45.619376pt;}
.ls11_c00319{letter-spacing:62.092976pt;}
.ls12_c00319{letter-spacing:64.627376pt;}
.ls10_c00319{letter-spacing:69.696176pt;}
.ws0_c00319{word-spacing:-15.972000pt;}
.ws4_c00319{word-spacing:-15.092000pt;}
.ws2_c00319{word-spacing:-2.811072pt;}
.ws5_c00319{word-spacing:0.000000pt;}
.ws3_c00319{word-spacing:0.830544pt;}
.ws1_c00319{word-spacing:1.255181pt;}
._16_c00319{margin-left:-23.077824pt;}
._19_c00319{margin-left:-10.903176pt;}
._18_c00319{margin-left:-7.788127pt;}
._15_c00319{margin-left:-3.441856pt;}
._1_c00319{width:1.789568pt;}
._10_c00319{width:4.216608pt;}
._2_c00319{width:6.005120pt;}
._0_c00319{width:8.177664pt;}
._e_c00319{width:9.199872pt;}
._5_c00319{width:10.413920pt;}
._12_c00319{width:11.499488pt;}
._6_c00319{width:13.160928pt;}
._17_c00319{width:14.205429pt;}
._11_c00319{width:16.866432pt;}
._8_c00319{width:18.271792pt;}
._7_c00319{width:19.421952pt;}
._b_c00319{width:21.785808pt;}
._13_c00319{width:29.013248pt;}
._14_c00319{width:30.027360pt;}
._f_c00319{width:31.624560pt;}
._4_c00319{width:34.455696pt;}
._3_c00319{width:35.457840pt;}
._d_c00319{width:36.872000pt;}
._c_c00319{width:39.290768pt;}
._9_c00319{width:44.474144pt;}
._a_c00319{width:577.593984pt;}
.fs1a_c00319{font-size:19.712000pt;}
.fs7_c00319{font-size:23.936000pt;}
.fs1_c00319{font-size:24.640000pt;}
.fs15_c00319{font-size:29.920000pt;}
.fs4_c00319{font-size:30.624000pt;}
.fs19_c00319{font-size:39.424000pt;}
.fs3_c00319{font-size:44.352176pt;}
.fs9_c00319{font-size:45.619376pt;}
.fsd_c00319{font-size:50.864000pt;}
.fs18_c00319{font-size:53.328000pt;}
.fs17_c00319{font-size:54.736000pt;}
.fse_c00319{font-size:56.144000pt;}
.fs13_c00319{font-size:57.200000pt;}
.fs5_c00319{font-size:57.376000pt;}
.fs6_c00319{font-size:59.136000pt;}
.fs16_c00319{font-size:59.840000pt;}
.fsa_c00319{font-size:60.368000pt;}
.fs11_c00319{font-size:61.072176pt;}
.fsc_c00319{font-size:62.092976pt;}
.fs12_c00319{font-size:62.304176pt;}
.fs10_c00319{font-size:63.008000pt;}
.fs2_c00319{font-size:63.888000pt;}
.fsf_c00319{font-size:64.627376pt;}
.fsb_c00319{font-size:69.696176pt;}
.fs8_c00319{font-size:70.400000pt;}
.fs0_c00319{font-size:71.808000pt;}
.fs14_c00319{font-size:76.736000pt;}
.y0_c00319{bottom:0.000000pt;}
.y1_c00319{bottom:68.000000pt;}
.y1d_c00319{bottom:157.688120pt;}
.y18_c00319{bottom:188.734520pt;}
.y1c_c00319{bottom:190.635320pt;}
.y1b_c00319{bottom:215.341320pt;}
.y17_c00319{bottom:216.291720pt;}
.y1a_c00319{bottom:250.506120pt;}
.y1f_c00319{bottom:256.208520pt;}
.y1e_c00319{bottom:261.594120pt;}
.y19_c00319{bottom:272.686520pt;}
.y16_c00319{bottom:273.003320pt;}
.y15_c00319{bottom:304.049720pt;}
.y14_c00319{bottom:330.027320pt;}
.y13_c00319{bottom:367.409720pt;}
.y12_c00319{bottom:388.635320pt;}
.y11_c00319{bottom:445.342520pt;}
.y10_c00319{bottom:474.800520pt;}
.yf_c00319{bottom:531.824520pt;}
.ye_c00319{bottom:561.291320pt;}
.yd_c00319{bottom:592.650120pt;}
.yc_c00319{bottom:621.166520pt;}
.yb_c00319{bottom:649.678520pt;}
.ya_c00319{bottom:678.502920pt;}
.y9_c00319{bottom:707.652920pt;}
.y8_c00319{bottom:722.854920pt;}
.y7_c00319{bottom:736.477320pt;}
.y6_c00319{bottom:764.989320pt;}
.y5_c00319{bottom:793.822520pt;}
.y4_c00319{bottom:822.330120pt;}
.y3_c00319{bottom:902.797320pt;}
.y2_c00319{bottom:955.702920pt;}
.h18_c00319{height:20.559000pt;}
.h3_c00319{height:25.698750pt;}
.h13_c00319{height:29.364844pt;}
.h5_c00319{height:30.055781pt;}
.h8_c00319{height:30.382504pt;}
.h17_c00319{height:41.118000pt;}
.hb_c00319{height:41.353922pt;}
.hd_c00319{height:43.041832pt;}
.ha_c00319{height:46.417653pt;}
.h16_c00319{height:52.338516pt;}
.hc_c00319{height:55.102266pt;}
.h15_c00319{height:57.087938pt;}
.h11_c00319{height:57.646875pt;}
.h9_c00319{height:59.247891pt;}
.hf_c00319{height:59.939001pt;}
.h10_c00319{height:61.148141pt;}
.h6_c00319{height:61.677000pt;}
.he_c00319{height:61.838906pt;}
.h14_c00319{height:62.411250pt;}
.h4_c00319{height:62.702578pt;}
.h7_c00319{height:69.093750pt;}
.h2_c00319{height:72.369000pt;}
.h12_c00319{height:80.033250pt;}
.h1_c00319{height:986.666667pt;}
.h0_c00319{height:1122.666667pt;}
.w1_c00319{width:694.666667pt;}
.w0_c00319{width:793.333333pt;}
.x0_c00319{left:0.000000pt;}
.x1_c00319{left:49.333333pt;}
.x2d_c00319{left:85.682920pt;}
.x4_c00319{left:86.642120pt;}
.x57_c00319{left:87.988520pt;}
.x16_c00319{left:88.908120pt;}
.x20_c00319{left:95.965720pt;}
.x21_c00319{left:105.773320pt;}
.x3a_c00319{left:115.541320pt;}
.x3f_c00319{left:125.397320pt;}
.x2e_c00319{left:126.312520pt;}
.x22_c00319{left:133.805720pt;}
.x48_c00319{left:135.143320pt;}
.x2f_c00319{left:136.168520pt;}
.x3b_c00319{left:144.629720pt;}
.x52_c00319{left:145.923320pt;}
.x17_c00319{left:154.617720pt;}
.x3c_c00319{left:164.940120pt;}
.x40_c00319{left:166.506520pt;}
.x30_c00319{left:174.518920pt;}
.x51_c00319{left:183.226520pt;}
.x23_c00319{left:185.237320pt;}
.x61_c00319{left:203.193720pt;}
.x5_c00319{left:204.284920pt;}
.x67_c00319{left:207.118520pt;}
.x31_c00319{left:212.970520pt;}
.x6_c00319{left:214.369720pt;}
.x18_c00319{left:224.247720pt;}
.x3d_c00319{left:233.716520pt;}
.x24_c00319{left:242.749720pt;}
.x7_c00319{left:244.514120pt;}
.x62_c00319{left:253.564920pt;}
.x41_c00319{left:255.839720pt;}
.x3_c00319{left:258.215720pt;}
.x8_c00319{left:262.769720pt;}
.x53_c00319{left:264.076520pt;}
.x25_c00319{left:272.748920pt;}
.x68_c00319{left:276.946520pt;}
.x50_c00319{left:282.345320pt;}
.x42_c00319{left:283.436520pt;}
.x69_c00319{left:287.145720pt;}
.x9_c00319{left:292.685320pt;}
.x54_c00319{left:293.890920pt;}
.x6a_c00319{left:296.332920pt;}
.x6b_c00319{left:297.283320pt;}
.xa_c00319{left:303.711720pt;}
.x19_c00319{left:312.194920pt;}
.x58_c00319{left:313.294920pt;}
.x63_c00319{left:318.825720pt;}
.x5f_c00319{left:320.722120pt;}
.x26_c00319{left:322.279720pt;}
.x5d_c00319{left:332.065320pt;}
.x32_c00319{left:333.182920pt;}
.x64_c00319{left:335.932920pt;}
.xb_c00319{left:342.414120pt;}
.x27_c00319{left:351.420920pt;}
.x60_c00319{left:354.540520pt;}
.xc_c00319{left:361.408920pt;}
.x43_c00319{left:370.736920pt;}
.x49_c00319{left:371.872120pt;}
.x1a_c00319{left:373.689320pt;}
.x28_c00319{left:382.005320pt;}
.x5e_c00319{left:389.784520pt;}
.xd_c00319{left:390.866920pt;}
.x33_c00319{left:392.244120pt;}
.x44_c00319{left:401.118920pt;}
.x4a_c00319{left:410.829720pt;}
.x65_c00319{left:412.277320pt;}
.x29_c00319{left:421.530520pt;}
.x66_c00319{left:426.850120pt;}
.xe_c00319{left:430.150120pt;}
.x59_c00319{left:431.104920pt;}
.x6c_c00319{left:439.403320pt;}
.x45_c00319{left:440.582520pt;}
.x4b_c00319{left:450.570520pt;}
.xf_c00319{left:460.492520pt;}
.x34_c00319{left:470.040520pt;}
.x39_c00319{left:477.137720pt;}
.x1b_c00319{left:479.570920pt;}
.x6d_c00319{left:482.923720pt;}
.x10_c00319{left:489.413720pt;}
.x55_c00319{left:490.315720pt;}
.x6f_c00319{left:494.271320pt;}
.x6e_c00319{left:495.934520pt;}
.x2a_c00319{left:499.357720pt;}
.x5a_c00319{left:500.347720pt;}
.x46_c00319{left:509.398520pt;}
.x11_c00319{left:518.858520pt;}
.x35_c00319{left:519.826520pt;}
.x47_c00319{left:538.011720pt;}
.x12_c00319{left:539.173320pt;}
.x4c_c00319{left:547.832520pt;}
.x36_c00319{left:548.897320pt;}
.x5b_c00319{left:549.874120pt;}
.x13_c00319{left:557.824920pt;}
.x1c_c00319{left:558.845720pt;}
.x37_c00319{left:567.975720pt;}
.x38_c00319{left:577.924120pt;}
.x2b_c00319{left:579.054920pt;}
.x1d_c00319{left:588.255320pt;}
.x14_c00319{left:596.632920pt;}
.x2_c00319{left:598.736120pt;}
.x4d_c00319{left:606.497720pt;}
.x1e_c00319{left:607.698920pt;}
.x15_c00319{left:615.975320pt;}
.x5c_c00319{left:620.005720pt;}
.x1f_c00319{left:626.583720pt;}
.x3e_c00319{left:635.260520pt;}
.x2c_c00319{left:636.725720pt;}
.x4f_c00319{left:647.056920pt;}
.x4e_c00319{left:656.019720pt;}
.x70_c00319{left:667.147320pt;}
.x56_c00319{left:679.084520pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_340e30a0f0fbaf5d87f24fdd.woff2')format("woff");}.ff1_c00320{font-family:ff1_c00320;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00320;src:url('chunks/assets/font_d73b6118dbc05fa6c7aa7f18.woff2')format("woff");}.ff2_c00320{font-family:ff2_c00320;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00320;src:url('chunks/assets/font_86cde6dbf437e1cc83b847ed.woff2')format("woff");}.ff3_c00320{font-family:ff3_c00320;line-height:0.666000;font-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_c00320{transform:matrix(0.022060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.022060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.022060,0.000000,0.000000,0.250000,0,0);}
.m72_c00320{transform:matrix(0.059211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.059211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.059211,0.000000,0.000000,0.250000,0,0);}
.m57_c00320{transform:matrix(0.066177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066177,0.000000,0.000000,0.250000,0,0);}
.m1a_c00320{transform:matrix(0.066666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066666,0.000000,0.000000,0.250000,0,0);}
.m69_c00320{transform:matrix(0.072369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072369,0.000000,0.000000,0.250000,0,0);}
.mc5_c00320{transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00320{transform:matrix(0.098684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098684,0.000000,0.000000,0.250000,0,0);}
.m8c_c00320{transform:matrix(0.105541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105541,0.000000,0.000000,0.250000,0,0);}
.m1b_c00320{transform:matrix(0.114286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114286,0.000000,0.000000,0.250000,0,0);}
.mb0_c00320{transform:matrix(0.115452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115452,0.000000,0.000000,0.250000,0,0);}
.m58_c00320{transform:matrix(0.121323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121323,0.000000,0.000000,0.250000,0,0);}
.mac_c00320{transform:matrix(0.130415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130415,0.000000,0.000000,0.250000,0,0);}
.md1_c00320{transform:matrix(0.144508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144508,0.000000,0.000000,0.250000,0,0);}
.m39_c00320{transform:matrix(0.144638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144638,0.000000,0.000000,0.250000,0,0);}
.m88_c00320{transform:matrix(0.145238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145238,0.000000,0.000000,0.250000,0,0);}
.m71_c00320{transform:matrix(0.151316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151316,0.000000,0.000000,0.250000,0,0);}
.ma8_c00320{transform:matrix(0.159092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159092,0.000000,0.000000,0.250000,0,0);}
.m61_c00320{transform:matrix(0.161764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161764,0.000000,0.000000,0.250000,0,0);}
.m1c_c00320{transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);}
.mc2_c00320{transform:matrix(0.165654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165654,0.000000,0.000000,0.250000,0,0);}
.mab_c00320{transform:matrix(0.166041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166041,0.000000,0.000000,0.250000,0,0);}
.maa_c00320{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);}
.m54_c00320{transform:matrix(0.168213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168213,0.000000,0.000000,0.250000,0,0);}
.mc4_c00320{transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);}
.m56_c00320{transform:matrix(0.188236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188236,0.000000,0.000000,0.250000,0,0);}
.m6f_c00320{transform:matrix(0.189349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189349,0.000000,0.000000,0.250000,0,0);}
.m73_c00320{transform:matrix(0.190790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190790,0.000000,0.000000,0.250000,0,0);}
.m89_c00320{transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);}
.m6b_c00320{transform:matrix(0.194079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194079,0.000000,0.000000,0.250000,0,0);}
.m4a_c00320{transform:matrix(0.194407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194407,0.000000,0.000000,0.250000,0,0);}
.ma7_c00320{transform:matrix(0.197036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197036,0.000000,0.000000,0.250000,0,0);}
.ma6_c00320{transform:matrix(0.197728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197728,0.000000,0.000000,0.250000,0,0);}
.m48_c00320{transform:matrix(0.199340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199340,0.000000,0.000000,0.250000,0,0);}
.m8e_c00320{transform:matrix(0.203572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203572,0.000000,0.000000,0.250000,0,0);}
.m55_c00320{transform:matrix(0.205883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205883,0.000000,0.000000,0.250000,0,0);}
.mc6_c00320{transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);}
.mc0_c00320{transform:matrix(0.210592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210592,0.000000,0.000000,0.250000,0,0);}
.me_c00320{transform:matrix(0.211624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211624,0.000000,0.000000,0.250000,0,0);}
.ma9_c00320{transform:matrix(0.212121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212121,0.000000,0.000000,0.250000,0,0);}
.m8d_c00320{transform:matrix(0.213095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213095,0.000000,0.000000,0.250000,0,0);}
.m9d_c00320{transform:matrix(0.215244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215244,0.000000,0.000000,0.250000,0,0);}
.m19_c00320{transform:matrix(0.215713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215713,0.000000,0.000000,0.250000,0,0);}
.m47_c00320{transform:matrix(0.218800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218800,0.000000,0.000000,0.250000,0,0);}
.m62_c00320{transform:matrix(0.221814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221814,0.000000,0.000000,0.250000,0,0);}
.m22_c00320{transform:matrix(0.227928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227928,0.000000,0.000000,0.250000,0,0);}
.m3c_c00320{transform:matrix(0.235138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235138,0.000000,0.000000,0.250000,0,0);}
.m35_c00320{transform:matrix(0.245992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245992,0.000000,0.000000,0.250000,0,0);}
.m0_c00320{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00320{transform:matrix(0.253182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253182,0.000000,0.000000,0.250000,0,0);}
.m1_c00320{transform:matrix(0.253547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253547,0.000000,0.000000,0.250000,0,0);}
.mb2_c00320{transform:matrix(0.260321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260321,0.000000,0.000000,0.250000,0,0);}
.mba_c00320{transform:matrix(0.261672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261672,0.000000,0.000000,0.250000,0,0);}
.m82_c00320{transform:matrix(0.262524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262524,0.000000,0.000000,0.250000,0,0);}
.m70_c00320{transform:matrix(0.265763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265763,0.000000,0.000000,0.250000,0,0);}
.m46_c00320{transform:matrix(0.269002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269002,0.000000,0.000000,0.250000,0,0);}
.m97_c00320{transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);}
.mbd_c00320{transform:matrix(0.273806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273806,0.000000,0.000000,0.250000,0,0);}
.m79_c00320{transform:matrix(0.273840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273840,0.000000,0.000000,0.250000,0,0);}
.m8a_c00320{transform:matrix(0.273891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273891,0.000000,0.000000,0.250000,0,0);}
.m38_c00320{transform:matrix(0.275306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275306,0.000000,0.000000,0.250000,0,0);}
.m7d_c00320{transform:matrix(0.275622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275622,0.000000,0.000000,0.250000,0,0);}
.m32_c00320{transform:matrix(0.277477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277477,0.000000,0.000000,0.250000,0,0);}
.m43_c00320{transform:matrix(0.278052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278052,0.000000,0.000000,0.250000,0,0);}
.m99_c00320{transform:matrix(0.279079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279079,0.000000,0.000000,0.250000,0,0);}
.mbe_c00320{transform:matrix(0.280337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280337,0.000000,0.000000,0.250000,0,0);}
.mae_c00320{transform:matrix(0.281262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281262,0.000000,0.000000,0.250000,0,0);}
.m1f_c00320{transform:matrix(0.283236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283236,0.000000,0.000000,0.250000,0,0);}
.m29_c00320{transform:matrix(0.283451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283451,0.000000,0.000000,0.250000,0,0);}
.maf_c00320{transform:matrix(0.285352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285352,0.000000,0.000000,0.250000,0,0);}
.m66_c00320{transform:matrix(0.285435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285435,0.000000,0.000000,0.250000,0,0);}
.m63_c00320{transform:matrix(0.286142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286142,0.000000,0.000000,0.250000,0,0);}
.mb8_c00320{transform:matrix(0.286742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286742,0.000000,0.000000,0.250000,0,0);}
.m80_c00320{transform:matrix(0.288119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288119,0.000000,0.000000,0.250000,0,0);}
.m3e_c00320{transform:matrix(0.288660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288660,0.000000,0.000000,0.250000,0,0);}
.m2d_c00320{transform:matrix(0.288821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288821,0.000000,0.000000,0.250000,0,0);}
.m2c_c00320{transform:matrix(0.289394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289394,0.000000,0.000000,0.250000,0,0);}
.m76_c00320{transform:matrix(0.290563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290563,0.000000,0.000000,0.250000,0,0);}
.m11_c00320{transform:matrix(0.291252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291252,0.000000,0.000000,0.250000,0,0);}
.md0_c00320{transform:matrix(0.292297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292297,0.000000,0.000000,0.250000,0,0);}
.m92_c00320{transform:matrix(0.293003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293003,0.000000,0.000000,0.250000,0,0);}
.m4c_c00320{transform:matrix(0.293691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293691,0.000000,0.000000,0.250000,0,0);}
.mb6_c00320{transform:matrix(0.293830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293830,0.000000,0.000000,0.250000,0,0);}
.m5d_c00320{transform:matrix(0.294427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294427,0.000000,0.000000,0.250000,0,0);}
.m33_c00320{transform:matrix(0.294470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294470,0.000000,0.000000,0.250000,0,0);}
.m30_c00320{transform:matrix(0.294834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294834,0.000000,0.000000,0.250000,0,0);}
.mb9_c00320{transform:matrix(0.294904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294904,0.000000,0.000000,0.250000,0,0);}
.m4_c00320{transform:matrix(0.296362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296362,0.000000,0.000000,0.250000,0,0);}
.m60_c00320{transform:matrix(0.297131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297131,0.000000,0.000000,0.250000,0,0);}
.m87_c00320{transform:matrix(0.297391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297391,0.000000,0.000000,0.250000,0,0);}
.m28_c00320{transform:matrix(0.297393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297393,0.000000,0.000000,0.250000,0,0);}
.m81_c00320{transform:matrix(0.298267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298267,0.000000,0.000000,0.250000,0,0);}
.m12_c00320{transform:matrix(0.299060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299060,0.000000,0.000000,0.250000,0,0);}
.m17_c00320{transform:matrix(0.299636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299636,0.000000,0.000000,0.250000,0,0);}
.m52_c00320{transform:matrix(0.299835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299835,0.000000,0.000000,0.250000,0,0);}
.m6c_c00320{transform:matrix(0.299918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299918,0.000000,0.000000,0.250000,0,0);}
.m90_c00320{transform:matrix(0.300429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300429,0.000000,0.000000,0.250000,0,0);}
.mc3_c00320{transform:matrix(0.301472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301472,0.000000,0.000000,0.250000,0,0);}
.mcc_c00320{transform:matrix(0.301814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301814,0.000000,0.000000,0.250000,0,0);}
.m83_c00320{transform:matrix(0.301848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301848,0.000000,0.000000,0.250000,0,0);}
.m23_c00320{transform:matrix(0.302607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302607,0.000000,0.000000,0.250000,0,0);}
.m1e_c00320{transform:matrix(0.302640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302640,0.000000,0.000000,0.250000,0,0);}
.m68_c00320{transform:matrix(0.303223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303223,0.000000,0.000000,0.250000,0,0);}
.m95_c00320{transform:matrix(0.304412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304412,0.000000,0.000000,0.250000,0,0);}
.ma4_c00320{transform:matrix(0.306640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306640,0.000000,0.000000,0.250000,0,0);}
.m77_c00320{transform:matrix(0.306801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306801,0.000000,0.000000,0.250000,0,0);}
.m3a_c00320{transform:matrix(0.308142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308142,0.000000,0.000000,0.250000,0,0);}
.m2e_c00320{transform:matrix(0.308786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308786,0.000000,0.000000,0.250000,0,0);}
.m2a_c00320{transform:matrix(0.308983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308983,0.000000,0.000000,0.250000,0,0);}
.m36_c00320{transform:matrix(0.309141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309141,0.000000,0.000000,0.250000,0,0);}
.m14_c00320{transform:matrix(0.309242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309242,0.000000,0.000000,0.250000,0,0);}
.mb_c00320{transform:matrix(0.309570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309570,0.000000,0.000000,0.250000,0,0);}
.mb4_c00320{transform:matrix(0.309839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309839,0.000000,0.000000,0.250000,0,0);}
.mc9_c00320{transform:matrix(0.310847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310847,0.000000,0.000000,0.250000,0,0);}
.m8b_c00320{transform:matrix(0.310852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310852,0.000000,0.000000,0.250000,0,0);}
.ma1_c00320{transform:matrix(0.310902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310902,0.000000,0.000000,0.250000,0,0);}
.m18_c00320{transform:matrix(0.311432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311432,0.000000,0.000000,0.250000,0,0);}
.m6_c00320{transform:matrix(0.312622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312622,0.000000,0.000000,0.250000,0,0);}
.m5b_c00320{transform:matrix(0.313286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313286,0.000000,0.000000,0.250000,0,0);}
.mbf_c00320{transform:matrix(0.313513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313513,0.000000,0.000000,0.250000,0,0);}
.m64_c00320{transform:matrix(0.313645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313645,0.000000,0.000000,0.250000,0,0);}
.mcf_c00320{transform:matrix(0.314119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314119,0.000000,0.000000,0.250000,0,0);}
.mce_c00320{transform:matrix(0.316801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316801,0.000000,0.000000,0.250000,0,0);}
.m4f_c00320{transform:matrix(0.316802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316802,0.000000,0.000000,0.250000,0,0);}
.m2b_c00320{transform:matrix(0.317744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317744,0.000000,0.000000,0.250000,0,0);}
.m84_c00320{transform:matrix(0.319100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319100,0.000000,0.000000,0.250000,0,0);}
.m42_c00320{transform:matrix(0.319787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319787,0.000000,0.000000,0.250000,0,0);}
.m24_c00320{transform:matrix(0.320047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320047,0.000000,0.000000,0.250000,0,0);}
.mbb_c00320{transform:matrix(0.321508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321508,0.000000,0.000000,0.250000,0,0);}
.mc1_c00320{transform:matrix(0.321674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321674,0.000000,0.000000,0.250000,0,0);}
.m15_c00320{transform:matrix(0.321924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321924,0.000000,0.000000,0.250000,0,0);}
.m2f_c00320{transform:matrix(0.322774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322774,0.000000,0.000000,0.250000,0,0);}
.m9c_c00320{transform:matrix(0.322934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322934,0.000000,0.000000,0.250000,0,0);}
.m9e_c00320{transform:matrix(0.323673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323673,0.000000,0.000000,0.250000,0,0);}
.m9f_c00320{transform:matrix(0.324252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324252,0.000000,0.000000,0.250000,0,0);}
.m65_c00320{transform:matrix(0.326436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326436,0.000000,0.000000,0.250000,0,0);}
.m4e_c00320{transform:matrix(0.327568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327568,0.000000,0.000000,0.250000,0,0);}
.m26_c00320{transform:matrix(0.327728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327728,0.000000,0.000000,0.250000,0,0);}
.m20_c00320{transform:matrix(0.328642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328642,0.000000,0.000000,0.250000,0,0);}
.m10_c00320{transform:matrix(0.328864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328864,0.000000,0.000000,0.250000,0,0);}
.m7b_c00320{transform:matrix(0.329318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329318,0.000000,0.000000,0.250000,0,0);}
.m6e_c00320{transform:matrix(0.329621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329621,0.000000,0.000000,0.250000,0,0);}
.m5f_c00320{transform:matrix(0.330851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330851,0.000000,0.000000,0.250000,0,0);}
.mad_c00320{transform:matrix(0.330907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330907,0.000000,0.000000,0.250000,0,0);}
.m1d_c00320{transform:matrix(0.331149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331149,0.000000,0.000000,0.250000,0,0);}
.mb7_c00320{transform:matrix(0.331549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331549,0.000000,0.000000,0.250000,0,0);}
.m7f_c00320{transform:matrix(0.333402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333402,0.000000,0.000000,0.250000,0,0);}
.mb1_c00320{transform:matrix(0.334473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334473,0.000000,0.000000,0.250000,0,0);}
.m93_c00320{transform:matrix(0.334557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334557,0.000000,0.000000,0.250000,0,0);}
.mc7_c00320{transform:matrix(0.337497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337497,0.000000,0.000000,0.250000,0,0);}
.m45_c00320{transform:matrix(0.338071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338071,0.000000,0.000000,0.250000,0,0);}
.m37_c00320{transform:matrix(0.338267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338267,0.000000,0.000000,0.250000,0,0);}
.m7e_c00320{transform:matrix(0.340161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340161,0.000000,0.000000,0.250000,0,0);}
.m85_c00320{transform:matrix(0.340328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340328,0.000000,0.000000,0.250000,0,0);}
.mcb_c00320{transform:matrix(0.340330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340330,0.000000,0.000000,0.250000,0,0);}
.mc_c00320{transform:matrix(0.340603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340603,0.000000,0.000000,0.250000,0,0);}
.m9_c00320{transform:matrix(0.340666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340666,0.000000,0.000000,0.250000,0,0);}
.m7_c00320{transform:matrix(0.341123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341123,0.000000,0.000000,0.250000,0,0);}
.m25_c00320{transform:matrix(0.341332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341332,0.000000,0.000000,0.250000,0,0);}
.m67_c00320{transform:matrix(0.341434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341434,0.000000,0.000000,0.250000,0,0);}
.mf_c00320{transform:matrix(0.341687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341687,0.000000,0.000000,0.250000,0,0);}
.m4d_c00320{transform:matrix(0.343319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343319,0.000000,0.000000,0.250000,0,0);}
.mbc_c00320{transform:matrix(0.344032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344032,0.000000,0.000000,0.250000,0,0);}
.m7c_c00320{transform:matrix(0.345501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345501,0.000000,0.000000,0.250000,0,0);}
.md4_c00320{transform:matrix(0.345657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345657,0.000000,0.000000,0.250000,0,0);}
.mca_c00320{transform:matrix(0.347247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347247,0.000000,0.000000,0.250000,0,0);}
.m34_c00320{transform:matrix(0.347531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347531,0.000000,0.000000,0.250000,0,0);}
.m31_c00320{transform:matrix(0.348866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348866,0.000000,0.000000,0.250000,0,0);}
.m3_c00320{transform:matrix(0.349170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349170,0.000000,0.000000,0.250000,0,0);}
.m91_c00320{transform:matrix(0.349330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349330,0.000000,0.000000,0.250000,0,0);}
.ma0_c00320{transform:matrix(0.349779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349779,0.000000,0.000000,0.250000,0,0);}
.mb5_c00320{transform:matrix(0.350904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350904,0.000000,0.000000,0.250000,0,0);}
.m5a_c00320{transform:matrix(0.350910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350910,0.000000,0.000000,0.250000,0,0);}
.m49_c00320{transform:matrix(0.354986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354986,0.000000,0.000000,0.250000,0,0);}
.ma2_c00320{transform:matrix(0.355194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355194,0.000000,0.000000,0.250000,0,0);}
.ma5_c00320{transform:matrix(0.355557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355557,0.000000,0.000000,0.250000,0,0);}
.m86_c00320{transform:matrix(0.355918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355918,0.000000,0.000000,0.250000,0,0);}
.md2_c00320{transform:matrix(0.356605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356605,0.000000,0.000000,0.250000,0,0);}
.m4b_c00320{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);}
.m74_c00320{transform:matrix(0.359182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359182,0.000000,0.000000,0.250000,0,0);}
.m5c_c00320{transform:matrix(0.359201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359201,0.000000,0.000000,0.250000,0,0);}
.m40_c00320{transform:matrix(0.359270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359270,0.000000,0.000000,0.250000,0,0);}
.mb3_c00320{transform:matrix(0.360137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360137,0.000000,0.000000,0.250000,0,0);}
.m8_c00320{transform:matrix(0.364010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364010,0.000000,0.000000,0.250000,0,0);}
.m75_c00320{transform:matrix(0.364806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364806,0.000000,0.000000,0.250000,0,0);}
.m5_c00320{transform:matrix(0.365848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365848,0.000000,0.000000,0.250000,0,0);}
.m27_c00320{transform:matrix(0.368594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368594,0.000000,0.000000,0.250000,0,0);}
.m6d_c00320{transform:matrix(0.371179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371179,0.000000,0.000000,0.250000,0,0);}
.m98_c00320{transform:matrix(0.374409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374409,0.000000,0.000000,0.250000,0,0);}
.m3f_c00320{transform:matrix(0.376165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376165,0.000000,0.000000,0.250000,0,0);}
.m8f_c00320{transform:matrix(0.377358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377358,0.000000,0.000000,0.250000,0,0);}
.m50_c00320{transform:matrix(0.379717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379717,0.000000,0.000000,0.250000,0,0);}
.m3b_c00320{transform:matrix(0.379774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379774,0.000000,0.000000,0.250000,0,0);}
.m3d_c00320{transform:matrix(0.380768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380768,0.000000,0.000000,0.250000,0,0);}
.md3_c00320{transform:matrix(0.383301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383301,0.000000,0.000000,0.250000,0,0);}
.m44_c00320{transform:matrix(0.383786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383786,0.000000,0.000000,0.250000,0,0);}
.m2_c00320{transform:matrix(0.386379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386379,0.000000,0.000000,0.250000,0,0);}
.m16_c00320{transform:matrix(0.386925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386925,0.000000,0.000000,0.250000,0,0);}
.mcd_c00320{transform:matrix(0.395076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395076,0.000000,0.000000,0.250000,0,0);}
.m96_c00320{transform:matrix(0.399607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399607,0.000000,0.000000,0.250000,0,0);}
.m94_c00320{transform:matrix(0.399703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399703,0.000000,0.000000,0.250000,0,0);}
.ma_c00320{transform:matrix(0.401589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401589,0.000000,0.000000,0.250000,0,0);}
.m41_c00320{transform:matrix(0.403943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403943,0.000000,0.000000,0.250000,0,0);}
.m13_c00320{transform:matrix(0.408145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408145,0.000000,0.000000,0.250000,0,0);}
.m53_c00320{transform:matrix(0.414488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414488,0.000000,0.000000,0.250000,0,0);}
.m78_c00320{transform:matrix(0.426808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426808,0.000000,0.000000,0.250000,0,0);}
.m21_c00320{transform:matrix(0.429622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429622,0.000000,0.000000,0.250000,0,0);}
.m9b_c00320{transform:matrix(0.444249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444249,0.000000,0.000000,0.250000,0,0);}
.m7a_c00320{transform:matrix(0.452932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452932,0.000000,0.000000,0.250000,0,0);}
.md_c00320{transform:matrix(0.458717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458717,0.000000,0.000000,0.250000,0,0);}
.m51_c00320{transform:matrix(0.467986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467986,0.000000,0.000000,0.250000,0,0);}
.mc8_c00320{transform:matrix(0.469700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469700,0.000000,0.000000,0.250000,0,0);}
.m5e_c00320{transform:matrix(0.478240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478240,0.000000,0.000000,0.250000,0,0);}
.m9a_c00320{transform:matrix(0.491631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491631,0.000000,0.000000,0.250000,0,0);}
.v0_c00320{vertical-align:0.000000px;}
.lsa_c00320{letter-spacing:-2.993767px;}
.ls6_c00320{letter-spacing:-2.480940px;}
.ls19_c00320{letter-spacing:-2.439367px;}
.ls10_c00320{letter-spacing:-2.418577px;}
.ls15_c00320{letter-spacing:-2.383927px;}
.lsb_c00320{letter-spacing:-2.252250px;}
.ls12_c00320{letter-spacing:-1.487257px;}
.ls16_c00320{letter-spacing:-1.261735px;}
.ls9_c00320{letter-spacing:-1.233382px;}
.ls7_c00320{letter-spacing:-0.588337px;}
.ls3_c00320{letter-spacing:0.000000px;}
.lse_c00320{letter-spacing:1.623600px;}
.ls17_c00320{letter-spacing:1.772100px;}
.ls13_c00320{letter-spacing:2.316600px;}
.ls1_c00320{letter-spacing:3.444962px;}
.ls5_c00320{letter-spacing:3.544200px;}
.lsf_c00320{letter-spacing:3.643200px;}
.ls11_c00320{letter-spacing:3.801610px;}
.ls18_c00320{letter-spacing:3.940200px;}
.ls4_c00320{letter-spacing:4.197610px;}
.ls0_c00320{letter-spacing:7.584588px;}
.ls14_c00320{letter-spacing:47.044800px;}
.lsc_c00320{letter-spacing:48.470598px;}
.ls8_c00320{letter-spacing:49.896198px;}
.ls1a_c00320{letter-spacing:51.321798px;}
.lsd_c00320{letter-spacing:54.172998px;}
.ls2_c00320{letter-spacing:55.484595px;}
.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;}
}
.ws2_c00320{word-spacing:-21.854518px;}
.ws4_c00320{word-spacing:-21.165962px;}
.ws0_c00320{word-spacing:-17.721000px;}
.ws1_c00320{word-spacing:-17.132663px;}
.ws5_c00320{word-spacing:-11.393039px;}
.ws9_c00320{word-spacing:-3.544596px;}
.ws3_c00320{word-spacing:-2.126916px;}
.wsa_c00320{word-spacing:0.000000px;}
.ws6_c00320{word-spacing:2.622708px;}
.ws8_c00320{word-spacing:3.685968px;}
.ws7_c00320{word-spacing:5.174532px;}
._1e_c00320{margin-left:-9.994644px;}
._1_c00320{margin-left:-7.159284px;}
._1d_c00320{margin-left:-5.812488px;}
._14_c00320{margin-left:-4.323132px;}
._7_c00320{margin-left:-2.977128px;}
._1c_c00320{margin-left:-1.920600px;}
._1a_c00320{width:5.217062px;}
._c_c00320{width:6.585124px;}
._8_c00320{width:8.435196px;}
._10_c00320{width:9.640224px;}
._4_c00320{width:10.774368px;}
._d_c00320{width:12.191256px;}
._5_c00320{width:13.326192px;}
._17_c00320{width:14.814360px;}
._3_c00320{width:16.445088px;}
._6_c00320{width:19.989288px;}
._15_c00320{width:21.547944px;}
._b_c00320{width:22.895928px;}
._9_c00320{width:24.025716px;}
._12_c00320{width:25.802568px;}
._13_c00320{width:32.677524px;}
._0_c00320{width:33.907104px;}
._a_c00320{width:36.504864px;}
._16_c00320{width:38.282508px;}
._f_c00320{width:39.340224px;}
._11_c00320{width:40.686624px;}
._18_c00320{width:42.597720px;}
._e_c00320{width:45.011340px;}
._2_c00320{width:46.925208px;}
._19_c00320{width:50.713740px;}
._1b_c00320{width:58.231404px;}
.fc0_c00320{color:transparent;}
.fs1_c00320{font-size:22.176000px;}
.fs0_c00320{font-size:27.720000px;}
.fs9_c00320{font-size:32.472000px;}
.fs18_c00320{font-size:44.748000px;}
.fs10_c00320{font-size:46.332000px;}
.fs13_c00320{font-size:47.044800px;}
.fs7_c00320{font-size:48.470598px;}
.fs4_c00320{font-size:49.896198px;}
.fsb_c00320{font-size:50.688000px;}
.fs17_c00320{font-size:51.321798px;}
.fs19_c00320{font-size:53.262000px;}
.fs8_c00320{font-size:54.172998px;}
.fse_c00320{font-size:60.588000px;}
.fs11_c00320{font-size:64.152198px;}
.fs6_c00320{font-size:64.350000px;}
.fs12_c00320{font-size:64.944000px;}
.fs14_c00320{font-size:68.112198px;}
.fsd_c00320{font-size:69.102198px;}
.fs16_c00320{font-size:69.696198px;}
.fs3_c00320{font-size:70.884000px;}
.fsa_c00320{font-size:72.864000px;}
.fsc_c00320{font-size:73.260000px;}
.fsf_c00320{font-size:76.032198px;}
.fs15_c00320{font-size:78.804000px;}
.fs2_c00320{font-size:83.952198px;}
.fs5_c00320{font-size:85.536198px;}
.y0_c00320{bottom:0.000000px;}
.y1_c00320{bottom:72.000000px;}
.y22_c00320{bottom:176.553135px;}
.y21_c00320{bottom:227.161935px;}
.y20_c00320{bottom:262.801935px;}
.y1f_c00320{bottom:283.116735px;}
.y1e_c00320{bottom:314.836335px;}
.y1d_c00320{bottom:347.625135px;}
.y1c_c00320{bottom:373.642335px;}
.y1b_c00320{bottom:378.631935px;}
.y1a_c00320{bottom:380.052585px;}
.y19_c00320{bottom:412.484985px;}
.y18_c00320{bottom:457.396335px;}
.y17_c00320{bottom:476.641935px;}
.y16_c00320{bottom:509.430735px;}
.y15_c00320{bottom:530.809785px;}
.y14_c00320{bottom:542.927385px;}
.y13_c00320{bottom:558.965385px;}
.y12_c00320{bottom:575.359785px;}
.y11_c00320{bottom:592.471935px;}
.yf_c00320{bottom:608.509935px;}
.y10_c00320{bottom:613.499535px;}
.ye_c00320{bottom:640.580985px;}
.yd_c00320{bottom:673.013385px;}
.yc_c00320{bottom:704.732985px;}
.yb_c00320{bottom:736.813935px;}
.ya_c00320{bottom:736.818885px;}
.y9_c00320{bottom:769.602735px;}
.y8_c00320{bottom:802.386585px;}
.y7_c00320{bottom:838.026585px;}
.y6_c00320{bottom:871.533135px;}
.y5_c00320{bottom:907.173135px;}
.y3_c00320{bottom:1093.565385px;}
.y4_c00320{bottom:1094.634585px;}
.y2_c00320{bottom:1109.959785px;}
.h3_c00320{height:23.128875px;}
.h2_c00320{height:28.911094px;}
.h14_c00320{height:31.331837px;}
.h9_c00320{height:32.281418px;}
.h6_c00320{height:33.230868px;}
.hb_c00320{height:33.867281px;}
.h18_c00320{height:34.180317px;}
.ha_c00320{height:36.079217px;}
.h19_c00320{height:43.917715px;}
.h12_c00320{height:48.322828px;}
.h1a_c00320{height:52.273740px;}
.hd_c00320{height:52.866000px;}
.h13_c00320{height:62.961874px;}
.h8_c00320{height:63.156006px;}
.h10_c00320{height:63.191391px;}
.h15_c00320{height:66.848397px;}
.hf_c00320{height:67.820028px;}
.h17_c00320{height:68.403007px;}
.h5_c00320{height:69.568770px;}
.hc_c00320{height:71.512031px;}
.he_c00320{height:71.900684px;}
.h11_c00320{height:74.621444px;}
.h16_c00320{height:77.341816px;}
.h4_c00320{height:82.394491px;}
.h7_c00320{height:89.211582px;}
.h1_c00320{height:1119.000000px;}
.h0_c00320{height:1263.000000px;}
.w1_c00320{width:778.500000px;}
.w0_c00320{width:892.500000px;}
.x0_c00320{left:0.000000px;}
.x1_c00320{left:57.000000px;}
.x72_c00320{left:62.233185px;}
.x15_c00320{left:101.417385px;}
.x5_c00320{left:102.996435px;}
.x4d_c00320{left:106.451535px;}
.x34_c00320{left:113.158785px;}
.x3a_c00320{left:125.306085px;}
.x16_c00320{left:135.577335px;}
.x6_c00320{left:136.735635px;}
.x6f_c00320{left:138.240435px;}
.x4e_c00320{left:145.967385px;}
.x3b_c00320{left:147.115785px;}
.x17_c00320{left:157.961235px;}
.x73_c00320{left:161.668785px;}
.x74_c00320{left:163.114185px;}
.x18_c00320{left:169.143285px;}
.x24_c00320{left:170.242185px;}
.x75_c00320{left:174.469485px;}
.x55_c00320{left:179.662035px;}
.x35_c00320{left:180.741135px;}
.x42_c00320{left:191.066835px;}
.x59_c00320{left:194.101185px;}
.x5c_c00320{left:200.857935px;}
.x7_c00320{left:202.842885px;}
.x2c_c00320{left:213.544785px;}
.x76_c00320{left:221.558835px;}
.x19_c00320{left:224.088285px;}
.x5e_c00320{left:226.597935px;}
.x25_c00320{left:235.824735px;}
.x3c_c00320{left:237.225585px;}
.x26_c00320{left:247.229535px;}
.x8_c00320{left:257.352285px;}
.x43_c00320{left:267.866085px;}
.x27_c00320{left:269.440185px;}
.x9_c00320{left:279.859935px;}
.x56_c00320{left:287.849235px;}
.x61_c00320{left:289.274835px;}
.x1a_c00320{left:291.056835px;}
.x2d_c00320{left:299.565885px;}
.x1b_c00320{left:302.585385px;}
.x66_c00320{left:312.044835px;}
.x44_c00320{left:313.678335px;}
.x28_c00320{left:324.607935px;}
.x5f_c00320{left:334.181235px;}
.x62_c00320{left:335.359335px;}
.x5a_c00320{left:345.551385px;}
.xa_c00320{left:346.788885px;}
.x1c_c00320{left:357.505635px;}
.x3d_c00320{left:359.921235px;}
.x2_c00320{left:366.509685px;}
.xb_c00320{left:368.039235px;}
.x29_c00320{left:369.133185px;}
.x3e_c00320{left:379.117335px;}
.x36_c00320{left:380.681535px;}
.x5d_c00320{left:390.165735px;}
.x1d_c00320{left:391.690335px;}
.x63_c00320{left:394.789035px;}
.x37_c00320{left:402.392235px;}
.xc_c00320{left:412.257585px;}
.x6c_c00320{left:414.712785px;}
.x3_c00320{left:417.856035px;}
.x1e_c00320{left:424.102935px;}
.x60_c00320{left:428.439135px;}
.x45_c00320{left:433.260435px;}
.x2a_c00320{left:435.007785px;}
.x79_c00320{left:436.388835px;}
.x6d_c00320{left:440.487435px;}
.x49_c00320{left:443.962335px;}
.x67_c00320{left:445.709685px;}
.x4f_c00320{left:446.813535px;}
.x50_c00320{left:450.372585px;}
.x3f_c00320{left:456.956085px;}
.x2e_c00320{left:462.638685px;}
.x46_c00320{left:467.360985px;}
.xd_c00320{left:468.994485px;}
.x77_c00320{left:472.999035px;}
.x6e_c00320{left:478.622235px;}
.x2f_c00320{left:479.745885px;}
.x1f_c00320{left:490.611135px;}
.x4a_c00320{left:496.348185px;}
.x30_c00320{left:501.119985px;}
.x4b_c00320{left:508.822185px;}
.xe_c00320{left:512.569335px;}
.x20_c00320{left:524.315685px;}
.xf_c00320{left:534.567135px;}
.x47_c00320{left:545.645235px;}
.x38_c00320{left:556.683735px;}
.x68_c00320{left:566.271885px;}
.x10_c00320{left:567.771735px;}
.x51_c00320{left:570.261585px;}
.x64_c00320{left:571.825785px;}
.x65_c00320{left:573.459285px;}
.x21_c00320{left:578.265735px;}
.x2b_c00320{left:579.849735px;}
.x31_c00320{left:589.314135px;}
.x11_c00320{left:601.238685px;}
.x70_c00320{left:610.391235px;}
.x4c_c00320{left:612.138585px;}
.x48_c00320{left:623.196885px;}
.x22_c00320{left:634.393785px;}
.x12_c00320{left:644.214585px;}
.x40_c00320{left:646.555935px;}
.x69_c00320{left:655.827285px;}
.x13_c00320{left:656.866785px;}
.x57_c00320{left:658.940835px;}
.x32_c00320{left:667.801335px;}
.x52_c00320{left:669.528885px;}
.x78_c00320{left:672.964185px;}
.x4_c00320{left:677.498385px;}
.x71_c00320{left:678.612135px;}
.x14_c00320{left:688.833885px;}
.x33_c00320{left:699.456585px;}
.x6a_c00320{left:701.431635px;}
.x54_c00320{left:709.876335px;}
.x53_c00320{left:712.098885px;}
.x58_c00320{left:713.455185px;}
.x5b_c00320{left:716.816235px;}
.x39_c00320{left:722.449335px;}
.x23_c00320{left:723.498735px;}
.x6b_c00320{left:727.567635px;}
.x41_c00320{left:734.027385px;}
@media print{
.v0_c00320{vertical-align:0.000000pt;}
.lsa_c00320{letter-spacing:-2.661126pt;}
.ls6_c00320{letter-spacing:-2.205280pt;}
.ls19_c00320{letter-spacing:-2.168326pt;}
.ls10_c00320{letter-spacing:-2.149846pt;}
.ls15_c00320{letter-spacing:-2.119046pt;}
.lsb_c00320{letter-spacing:-2.002000pt;}
.ls12_c00320{letter-spacing:-1.322006pt;}
.ls16_c00320{letter-spacing:-1.121542pt;}
.ls9_c00320{letter-spacing:-1.096339pt;}
.ls7_c00320{letter-spacing:-0.522966pt;}
.ls3_c00320{letter-spacing:0.000000pt;}
.lse_c00320{letter-spacing:1.443200pt;}
.ls17_c00320{letter-spacing:1.575200pt;}
.ls13_c00320{letter-spacing:2.059200pt;}
.ls1_c00320{letter-spacing:3.062189pt;}
.ls5_c00320{letter-spacing:3.150400pt;}
.lsf_c00320{letter-spacing:3.238400pt;}
.ls11_c00320{letter-spacing:3.379209pt;}
.ls18_c00320{letter-spacing:3.502400pt;}
.ls4_c00320{letter-spacing:3.731209pt;}
.ls0_c00320{letter-spacing:6.741856pt;}
.ls14_c00320{letter-spacing:41.817600pt;}
.lsc_c00320{letter-spacing:43.084976pt;}
.ls8_c00320{letter-spacing:44.352176pt;}
.ls1a_c00320{letter-spacing:45.619376pt;}
.lsd_c00320{letter-spacing:48.153776pt;}
.ls2_c00320{letter-spacing:49.319640pt;}
.ws2_c00320{word-spacing:-19.426238pt;}
.ws4_c00320{word-spacing:-18.814189pt;}
.ws0_c00320{word-spacing:-15.752000pt;}
.ws1_c00320{word-spacing:-15.229034pt;}
.ws5_c00320{word-spacing:-10.127146pt;}
.ws9_c00320{word-spacing:-3.150752pt;}
.ws3_c00320{word-spacing:-1.890592pt;}
.wsa_c00320{word-spacing:0.000000pt;}
.ws6_c00320{word-spacing:2.331296pt;}
.ws8_c00320{word-spacing:3.276416pt;}
.ws7_c00320{word-spacing:4.599584pt;}
._1e_c00320{margin-left:-8.884128pt;}
._1_c00320{margin-left:-6.363808pt;}
._1d_c00320{margin-left:-5.166656pt;}
._14_c00320{margin-left:-3.842784pt;}
._7_c00320{margin-left:-2.646336pt;}
._1c_c00320{margin-left:-1.707200pt;}
._1a_c00320{width:4.637389pt;}
._c_c00320{width:5.853443pt;}
._8_c00320{width:7.497952pt;}
._10_c00320{width:8.569088pt;}
._4_c00320{width:9.577216pt;}
._d_c00320{width:10.836672pt;}
._5_c00320{width:11.845504pt;}
._17_c00320{width:13.168320pt;}
._3_c00320{width:14.617856pt;}
._6_c00320{width:17.768256pt;}
._15_c00320{width:19.153728pt;}
._b_c00320{width:20.351936pt;}
._9_c00320{width:21.356192pt;}
._12_c00320{width:22.935616pt;}
._13_c00320{width:29.046688pt;}
._0_c00320{width:30.139648pt;}
._a_c00320{width:32.448768pt;}
._16_c00320{width:34.028896pt;}
._f_c00320{width:34.969088pt;}
._11_c00320{width:36.165888pt;}
._18_c00320{width:37.864640pt;}
._e_c00320{width:40.010080pt;}
._2_c00320{width:41.711296pt;}
._19_c00320{width:45.078880pt;}
._1b_c00320{width:51.761248pt;}
.fs1_c00320{font-size:19.712000pt;}
.fs0_c00320{font-size:24.640000pt;}
.fs9_c00320{font-size:28.864000pt;}
.fs18_c00320{font-size:39.776000pt;}
.fs10_c00320{font-size:41.184000pt;}
.fs13_c00320{font-size:41.817600pt;}
.fs7_c00320{font-size:43.084976pt;}
.fs4_c00320{font-size:44.352176pt;}
.fsb_c00320{font-size:45.056000pt;}
.fs17_c00320{font-size:45.619376pt;}
.fs19_c00320{font-size:47.344000pt;}
.fs8_c00320{font-size:48.153776pt;}
.fse_c00320{font-size:53.856000pt;}
.fs11_c00320{font-size:57.024176pt;}
.fs6_c00320{font-size:57.200000pt;}
.fs12_c00320{font-size:57.728000pt;}
.fs14_c00320{font-size:60.544176pt;}
.fsd_c00320{font-size:61.424176pt;}
.fs16_c00320{font-size:61.952176pt;}
.fs3_c00320{font-size:63.008000pt;}
.fsa_c00320{font-size:64.768000pt;}
.fsc_c00320{font-size:65.120000pt;}
.fsf_c00320{font-size:67.584176pt;}
.fs15_c00320{font-size:70.048000pt;}
.fs2_c00320{font-size:74.624176pt;}
.fs5_c00320{font-size:76.032176pt;}
.y0_c00320{bottom:0.000000pt;}
.y1_c00320{bottom:64.000000pt;}
.y22_c00320{bottom:156.936120pt;}
.y21_c00320{bottom:201.921720pt;}
.y20_c00320{bottom:233.601720pt;}
.y1f_c00320{bottom:251.659320pt;}
.y1e_c00320{bottom:279.854520pt;}
.y1d_c00320{bottom:309.000120pt;}
.y1c_c00320{bottom:332.126520pt;}
.y1b_c00320{bottom:336.561720pt;}
.y1a_c00320{bottom:337.824520pt;}
.y19_c00320{bottom:366.653320pt;}
.y18_c00320{bottom:406.574520pt;}
.y17_c00320{bottom:423.681720pt;}
.y16_c00320{bottom:452.827320pt;}
.y15_c00320{bottom:471.830920pt;}
.y14_c00320{bottom:482.602120pt;}
.y13_c00320{bottom:496.858120pt;}
.y12_c00320{bottom:511.430920pt;}
.y11_c00320{bottom:526.641720pt;}
.yf_c00320{bottom:540.897720pt;}
.y10_c00320{bottom:545.332920pt;}
.ye_c00320{bottom:569.405320pt;}
.yd_c00320{bottom:598.234120pt;}
.yc_c00320{bottom:626.429320pt;}
.yb_c00320{bottom:654.945720pt;}
.ya_c00320{bottom:654.950120pt;}
.y9_c00320{bottom:684.091320pt;}
.y8_c00320{bottom:713.232520pt;}
.y7_c00320{bottom:744.912520pt;}
.y6_c00320{bottom:774.696120pt;}
.y5_c00320{bottom:806.376120pt;}
.y3_c00320{bottom:972.058120pt;}
.y4_c00320{bottom:973.008520pt;}
.y2_c00320{bottom:986.630920pt;}
.h3_c00320{height:20.559000pt;}
.h2_c00320{height:25.698750pt;}
.h14_c00320{height:27.850522pt;}
.h9_c00320{height:28.694594pt;}
.h6_c00320{height:29.538549pt;}
.hb_c00320{height:30.104250pt;}
.h18_c00320{height:30.382504pt;}
.ha_c00320{height:32.070415pt;}
.h19_c00320{height:39.037969pt;}
.h12_c00320{height:42.953625pt;}
.h1a_c00320{height:46.465547pt;}
.hd_c00320{height:46.992000pt;}
.h13_c00320{height:55.966110pt;}
.h8_c00320{height:56.138672pt;}
.h10_c00320{height:56.170125pt;}
.h15_c00320{height:59.420798pt;}
.hf_c00320{height:60.284470pt;}
.h17_c00320{height:60.802673pt;}
.h5_c00320{height:61.838906pt;}
.hc_c00320{height:63.566250pt;}
.he_c00320{height:63.911719pt;}
.h11_c00320{height:66.330173pt;}
.h16_c00320{height:68.748281pt;}
.h4_c00320{height:73.239548pt;}
.h7_c00320{height:79.299184pt;}
.h1_c00320{height:994.666667pt;}
.h0_c00320{height:1122.666667pt;}
.w1_c00320{width:692.000000pt;}
.w0_c00320{width:793.333333pt;}
.x0_c00320{left:0.000000pt;}
.x1_c00320{left:50.666667pt;}
.x72_c00320{left:55.318387pt;}
.x15_c00320{left:90.148787pt;}
.x5_c00320{left:91.552387pt;}
.x4d_c00320{left:94.623587pt;}
.x34_c00320{left:100.585587pt;}
.x3a_c00320{left:111.383187pt;}
.x16_c00320{left:120.513187pt;}
.x6_c00320{left:121.542787pt;}
.x6f_c00320{left:122.880387pt;}
.x4e_c00320{left:129.748787pt;}
.x3b_c00320{left:130.769587pt;}
.x17_c00320{left:140.409987pt;}
.x73_c00320{left:143.705587pt;}
.x74_c00320{left:144.990387pt;}
.x18_c00320{left:150.349587pt;}
.x24_c00320{left:151.326387pt;}
.x75_c00320{left:155.083987pt;}
.x55_c00320{left:159.699587pt;}
.x35_c00320{left:160.658787pt;}
.x42_c00320{left:169.837187pt;}
.x59_c00320{left:172.534387pt;}
.x5c_c00320{left:178.540387pt;}
.x7_c00320{left:180.304787pt;}
.x2c_c00320{left:189.817587pt;}
.x76_c00320{left:196.941187pt;}
.x19_c00320{left:199.189587pt;}
.x5e_c00320{left:201.420387pt;}
.x25_c00320{left:209.621987pt;}
.x3c_c00320{left:210.867187pt;}
.x26_c00320{left:219.759587pt;}
.x8_c00320{left:228.757587pt;}
.x43_c00320{left:238.103187pt;}
.x27_c00320{left:239.502387pt;}
.x9_c00320{left:248.764387pt;}
.x56_c00320{left:255.865987pt;}
.x61_c00320{left:257.133187pt;}
.x1a_c00320{left:258.717187pt;}
.x2d_c00320{left:266.280787pt;}
.x1b_c00320{left:268.964787pt;}
.x66_c00320{left:277.373187pt;}
.x44_c00320{left:278.825187pt;}
.x28_c00320{left:288.540387pt;}
.x5f_c00320{left:297.049987pt;}
.x62_c00320{left:298.097187pt;}
.x5a_c00320{left:307.156787pt;}
.xa_c00320{left:308.256787pt;}
.x1c_c00320{left:317.782787pt;}
.x3d_c00320{left:319.929987pt;}
.x2_c00320{left:325.786387pt;}
.xb_c00320{left:327.145987pt;}
.x29_c00320{left:328.118387pt;}
.x3e_c00320{left:336.993187pt;}
.x36_c00320{left:338.383587pt;}
.x5d_c00320{left:346.813987pt;}
.x1d_c00320{left:348.169187pt;}
.x63_c00320{left:350.923587pt;}
.x37_c00320{left:357.681987pt;}
.xc_c00320{left:366.451187pt;}
.x6c_c00320{left:368.633587pt;}
.x3_c00320{left:371.427587pt;}
.x1e_c00320{left:376.980387pt;}
.x60_c00320{left:380.834787pt;}
.x45_c00320{left:385.120387pt;}
.x2a_c00320{left:386.673587pt;}
.x79_c00320{left:387.901187pt;}
.x6d_c00320{left:391.544387pt;}
.x49_c00320{left:394.633187pt;}
.x67_c00320{left:396.186387pt;}
.x4f_c00320{left:397.167587pt;}
.x50_c00320{left:400.331187pt;}
.x3f_c00320{left:406.183187pt;}
.x2e_c00320{left:411.234387pt;}
.x46_c00320{left:415.431987pt;}
.xd_c00320{left:416.883987pt;}
.x77_c00320{left:420.443587pt;}
.x6e_c00320{left:425.441987pt;}
.x2f_c00320{left:426.440787pt;}
.x1f_c00320{left:436.098787pt;}
.x4a_c00320{left:441.198387pt;}
.x30_c00320{left:445.439987pt;}
.x4b_c00320{left:452.286387pt;}
.xe_c00320{left:455.617187pt;}
.x20_c00320{left:466.058387pt;}
.xf_c00320{left:475.170787pt;}
.x47_c00320{left:485.017987pt;}
.x38_c00320{left:494.829987pt;}
.x68_c00320{left:503.352787pt;}
.x10_c00320{left:504.685987pt;}
.x51_c00320{left:506.899187pt;}
.x64_c00320{left:508.289587pt;}
.x65_c00320{left:509.741587pt;}
.x21_c00320{left:514.013987pt;}
.x2b_c00320{left:515.421987pt;}
.x31_c00320{left:523.834787pt;}
.x11_c00320{left:534.434387pt;}
.x70_c00320{left:542.569987pt;}
.x4c_c00320{left:544.123187pt;}
.x48_c00320{left:553.952787pt;}
.x22_c00320{left:563.905587pt;}
.x12_c00320{left:572.635187pt;}
.x40_c00320{left:574.716387pt;}
.x69_c00320{left:582.957587pt;}
.x13_c00320{left:583.881587pt;}
.x57_c00320{left:585.725187pt;}
.x32_c00320{left:593.601187pt;}
.x52_c00320{left:595.136787pt;}
.x78_c00320{left:598.190387pt;}
.x4_c00320{left:602.220787pt;}
.x71_c00320{left:603.210787pt;}
.x14_c00320{left:612.296787pt;}
.x33_c00320{left:621.739187pt;}
.x6a_c00320{left:623.494787pt;}
.x54_c00320{left:631.001187pt;}
.x53_c00320{left:632.976787pt;}
.x58_c00320{left:634.182387pt;}
.x5b_c00320{left:637.169987pt;}
.x39_c00320{left:642.177187pt;}
.x23_c00320{left:643.109987pt;}
.x6b_c00320{left:646.726787pt;}
.x41_c00320{left:652.468787pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_30e5f4f1cce7189303336741.woff2')format("woff");}.ff1_c00321{font-family:ff1_c00321;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00321;src:url('chunks/assets/font_fe780b22e8cb695f6c141bd4.woff2')format("woff");}.ff2_c00321{font-family:ff2_c00321;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00321;src:url('chunks/assets/font_b17d2bcbf4fdf4ccd440c115.woff2')format("woff");}.ff3_c00321{font-family:ff3_c00321;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00321;src:url('chunks/assets/font_b5501007ed800bf416a9fd75.woff2')format("woff");}.ff4_c00321{font-family:ff4_c00321;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00321;src:url('chunks/assets/font_ac9c4796d30a0541c2147305.woff2')format("woff");}.ff5_c00321{font-family:ff5_c00321;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00321;src:url('chunks/assets/font_74ad954610cd71192a67f879.woff2')format("woff");}.ff6_c00321{font-family:ff6_c00321;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00321;src:url('chunks/assets/font_2e9911d4032751c5cfd5da2d.woff2')format("woff");}.ff7_c00321{font-family:ff7_c00321;line-height:1.435059;font-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_c00321{transform:matrix(0.035716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.035716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.035716,0.000000,0.000000,0.250000,0,0);}
.m25_c00321{transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00321{transform:matrix(0.062501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062501,0.000000,0.000000,0.250000,0,0);}
.m13_c00321{transform:matrix(0.072728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072728,0.000000,0.000000,0.250000,0,0);}
.m12_c00321{transform:matrix(0.077273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077273,0.000000,0.000000,0.250000,0,0);}
.m5_c00321{transform:matrix(0.089743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089743,0.000000,0.000000,0.250000,0,0);}
.m1b_c00321{transform:matrix(0.096939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096939,0.000000,0.000000,0.250000,0,0);}
.m3b_c00321{transform:matrix(0.097222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097222,0.000000,0.000000,0.250000,0,0);}
.m1e_c00321{transform:matrix(0.099374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099374,0.000000,0.000000,0.250000,0,0);}
.m9e_c00321{transform:matrix(0.103125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103125,0.000000,0.000000,0.250000,0,0);}
.m20_c00321{transform:matrix(0.105538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105538,0.000000,0.000000,0.250000,0,0);}
.m22_c00321{transform:matrix(0.114286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114286,0.000000,0.000000,0.250000,0,0);}
.m2_c00321{transform:matrix(0.115947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115947,0.000000,0.000000,0.250000,0,0);}
.mb_c00321{transform:matrix(0.133929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133929,0.000000,0.000000,0.250000,0,0);}
.m2a_c00321{transform:matrix(0.140637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140637,0.000000,0.000000,0.250000,0,0);}
.m1_c00321{transform:matrix(0.141273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141273,0.000000,0.000000,0.250000,0,0);}
.ma6_c00321{transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00321{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00321{transform:matrix(0.151563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151563,0.000000,0.000000,0.250000,0,0);}
.m5b_c00321{transform:matrix(0.154491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154491,0.000000,0.000000,0.250000,0,0);}
.m4f_c00321{transform:matrix(0.162560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162560,0.000000,0.000000,0.250000,0,0);}
.ma5_c00321{transform:matrix(0.174999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174999,0.000000,0.000000,0.250000,0,0);}
.ma2_c00321{transform:matrix(0.179167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179167,0.000000,0.000000,0.250000,0,0);}
.m3a_c00321{transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);}
.ma7_c00321{transform:matrix(0.184375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184375,0.000000,0.000000,0.250000,0,0);}
.ma1_c00321{transform:matrix(0.189584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189584,0.000000,0.000000,0.250000,0,0);}
.m50_c00321{transform:matrix(0.192025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192025,0.000000,0.000000,0.250000,0,0);}
.m30_c00321{transform:matrix(0.204460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204460,0.000000,0.000000,0.250000,0,0);}
.m3c_c00321{transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);}
.m3_c00321{transform:matrix(0.214287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214287,0.000000,0.000000,0.250000,0,0);}
.mf_c00321{transform:matrix(0.215743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215743,0.000000,0.000000,0.250000,0,0);}
.m1c_c00321{transform:matrix(0.218598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218598,0.000000,0.000000,0.250000,0,0);}
.m4d_c00321{transform:matrix(0.220905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220905,0.000000,0.000000,0.250000,0,0);}
.m14_c00321{transform:matrix(0.222079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222079,0.000000,0.000000,0.250000,0,0);}
.mc_c00321{transform:matrix(0.223214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223214,0.000000,0.000000,0.250000,0,0);}
.m7d_c00321{transform:matrix(0.224113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224113,0.000000,0.000000,0.250000,0,0);}
.m1d_c00321{transform:matrix(0.225241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225241,0.000000,0.000000,0.250000,0,0);}
.md_c00321{transform:matrix(0.228067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228067,0.000000,0.000000,0.250000,0,0);}
.m4e_c00321{transform:matrix(0.228198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228198,0.000000,0.000000,0.250000,0,0);}
.m8a_c00321{transform:matrix(0.229864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229864,0.000000,0.000000,0.250000,0,0);}
.m9_c00321{transform:matrix(0.229892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229892,0.000000,0.000000,0.250000,0,0);}
.m9f_c00321{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m6_c00321{transform:matrix(0.231955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231955,0.000000,0.000000,0.250000,0,0);}
.m45_c00321{transform:matrix(0.233610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233610,0.000000,0.000000,0.250000,0,0);}
.m23_c00321{transform:matrix(0.238314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238314,0.000000,0.000000,0.250000,0,0);}
.m15_c00321{transform:matrix(0.242275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242275,0.000000,0.000000,0.250000,0,0);}
.m84_c00321{transform:matrix(0.243908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243908,0.000000,0.000000,0.250000,0,0);}
.m4_c00321{transform:matrix(0.245763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245763,0.000000,0.000000,0.250000,0,0);}
.m10_c00321{transform:matrix(0.247071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247071,0.000000,0.000000,0.250000,0,0);}
.m6e_c00321{transform:matrix(0.247574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247574,0.000000,0.000000,0.250000,0,0);}
.m26_c00321{transform:matrix(0.247669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247669,0.000000,0.000000,0.250000,0,0);}
.m0_c00321{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m21_c00321{transform:matrix(0.250225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250225,0.000000,0.000000,0.250000,0,0);}
.m96_c00321{transform:matrix(0.250430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250430,0.000000,0.000000,0.250000,0,0);}
.m4c_c00321{transform:matrix(0.250466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250466,0.000000,0.000000,0.250000,0,0);}
.m16_c00321{transform:matrix(0.250615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250615,0.000000,0.000000,0.250000,0,0);}
.m52_c00321{transform:matrix(0.250847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250847,0.000000,0.000000,0.250000,0,0);}
.m32_c00321{transform:matrix(0.251012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251012,0.000000,0.000000,0.250000,0,0);}
.m4b_c00321{transform:matrix(0.251235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251235,0.000000,0.000000,0.250000,0,0);}
.m7_c00321{transform:matrix(0.255242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255242,0.000000,0.000000,0.250000,0,0);}
.m27_c00321{transform:matrix(0.255992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255992,0.000000,0.000000,0.250000,0,0);}
.m55_c00321{transform:matrix(0.258963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258963,0.000000,0.000000,0.250000,0,0);}
.m18_c00321{transform:matrix(0.259173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259173,0.000000,0.000000,0.250000,0,0);}
.m63_c00321{transform:matrix(0.262405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262405,0.000000,0.000000,0.250000,0,0);}
.m6a_c00321{transform:matrix(0.263791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263791,0.000000,0.000000,0.250000,0,0);}
.m11_c00321{transform:matrix(0.264273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264273,0.000000,0.000000,0.250000,0,0);}
.m1a_c00321{transform:matrix(0.265043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265043,0.000000,0.000000,0.250000,0,0);}
.m46_c00321{transform:matrix(0.267174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267174,0.000000,0.000000,0.250000,0,0);}
.m67_c00321{transform:matrix(0.267247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267247,0.000000,0.000000,0.250000,0,0);}
.m24_c00321{transform:matrix(0.267968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267968,0.000000,0.000000,0.250000,0,0);}
.m99_c00321{transform:matrix(0.268862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268862,0.000000,0.000000,0.250000,0,0);}
.m5a_c00321{transform:matrix(0.269981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269981,0.000000,0.000000,0.250000,0,0);}
.m43_c00321{transform:matrix(0.271777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271777,0.000000,0.000000,0.250000,0,0);}
.m3d_c00321{transform:matrix(0.271809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271809,0.000000,0.000000,0.250000,0,0);}
.m5f_c00321{transform:matrix(0.272130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272130,0.000000,0.000000,0.250000,0,0);}
.m38_c00321{transform:matrix(0.272215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272215,0.000000,0.000000,0.250000,0,0);}
.m53_c00321{transform:matrix(0.273925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273925,0.000000,0.000000,0.250000,0,0);}
.m19_c00321{transform:matrix(0.277790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277790,0.000000,0.000000,0.250000,0,0);}
.m8_c00321{transform:matrix(0.277850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277850,0.000000,0.000000,0.250000,0,0);}
.m9d_c00321{transform:matrix(0.278296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278296,0.000000,0.000000,0.250000,0,0);}
.m8e_c00321{transform:matrix(0.278381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278381,0.000000,0.000000,0.250000,0,0);}
.m2e_c00321{transform:matrix(0.279709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279709,0.000000,0.000000,0.250000,0,0);}
.m48_c00321{transform:matrix(0.281580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281580,0.000000,0.000000,0.250000,0,0);}
.mab_c00321{transform:matrix(0.282296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282296,0.000000,0.000000,0.250000,0,0);}
.m87_c00321{transform:matrix(0.284110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284110,0.000000,0.000000,0.250000,0,0);}
.m80_c00321{transform:matrix(0.284781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284781,0.000000,0.000000,0.250000,0,0);}
.m33_c00321{transform:matrix(0.285162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285162,0.000000,0.000000,0.250000,0,0);}
.m36_c00321{transform:matrix(0.285518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285518,0.000000,0.000000,0.250000,0,0);}
.ma9_c00321{transform:matrix(0.286695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286695,0.000000,0.000000,0.250000,0,0);}
.m57_c00321{transform:matrix(0.287249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287249,0.000000,0.000000,0.250000,0,0);}
.m7a_c00321{transform:matrix(0.288318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288318,0.000000,0.000000,0.250000,0,0);}
.m7b_c00321{transform:matrix(0.289300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289300,0.000000,0.000000,0.250000,0,0);}
.maa_c00321{transform:matrix(0.292751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292751,0.000000,0.000000,0.250000,0,0);}
.m58_c00321{transform:matrix(0.292917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292917,0.000000,0.000000,0.250000,0,0);}
.m56_c00321{transform:matrix(0.293487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293487,0.000000,0.000000,0.250000,0,0);}
.m90_c00321{transform:matrix(0.294259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294259,0.000000,0.000000,0.250000,0,0);}
.m93_c00321{transform:matrix(0.294509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294509,0.000000,0.000000,0.250000,0,0);}
.m62_c00321{transform:matrix(0.296531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296531,0.000000,0.000000,0.250000,0,0);}
.m7e_c00321{transform:matrix(0.298403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298403,0.000000,0.000000,0.250000,0,0);}
.m88_c00321{transform:matrix(0.299119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299119,0.000000,0.000000,0.250000,0,0);}
.m97_c00321{transform:matrix(0.299815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299815,0.000000,0.000000,0.250000,0,0);}
.m66_c00321{transform:matrix(0.300584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300584,0.000000,0.000000,0.250000,0,0);}
.m2c_c00321{transform:matrix(0.301383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301383,0.000000,0.000000,0.250000,0,0);}
.m92_c00321{transform:matrix(0.301473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301473,0.000000,0.000000,0.250000,0,0);}
.m2f_c00321{transform:matrix(0.301672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301672,0.000000,0.000000,0.250000,0,0);}
.m8d_c00321{transform:matrix(0.301977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301977,0.000000,0.000000,0.250000,0,0);}
.m39_c00321{transform:matrix(0.303793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303793,0.000000,0.000000,0.250000,0,0);}
.m98_c00321{transform:matrix(0.305471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305471,0.000000,0.000000,0.250000,0,0);}
.m17_c00321{transform:matrix(0.305713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305713,0.000000,0.000000,0.250000,0,0);}
.m4a_c00321{transform:matrix(0.305952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305952,0.000000,0.000000,0.250000,0,0);}
.m86_c00321{transform:matrix(0.306937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306937,0.000000,0.000000,0.250000,0,0);}
.m47_c00321{transform:matrix(0.309148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309148,0.000000,0.000000,0.250000,0,0);}
.m65_c00321{transform:matrix(0.309951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309951,0.000000,0.000000,0.250000,0,0);}
.m51_c00321{transform:matrix(0.310721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310721,0.000000,0.000000,0.250000,0,0);}
.m9b_c00321{transform:matrix(0.311319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311319,0.000000,0.000000,0.250000,0,0);}
.m6b_c00321{transform:matrix(0.311944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311944,0.000000,0.000000,0.250000,0,0);}
.m94_c00321{transform:matrix(0.313141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313141,0.000000,0.000000,0.250000,0,0);}
.m59_c00321{transform:matrix(0.315611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315611,0.000000,0.000000,0.250000,0,0);}
.m41_c00321{transform:matrix(0.316666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316666,0.000000,0.000000,0.250000,0,0);}
.m79_c00321{transform:matrix(0.316747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316747,0.000000,0.000000,0.250000,0,0);}
.m68_c00321{transform:matrix(0.316928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316928,0.000000,0.000000,0.250000,0,0);}
.m61_c00321{transform:matrix(0.317735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317735,0.000000,0.000000,0.250000,0,0);}
.m6f_c00321{transform:matrix(0.318456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318456,0.000000,0.000000,0.250000,0,0);}
.m3e_c00321{transform:matrix(0.318496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318496,0.000000,0.000000,0.250000,0,0);}
.m9a_c00321{transform:matrix(0.319671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319671,0.000000,0.000000,0.250000,0,0);}
.m5e_c00321{transform:matrix(0.319859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319859,0.000000,0.000000,0.250000,0,0);}
.m75_c00321{transform:matrix(0.320731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320731,0.000000,0.000000,0.250000,0,0);}
.m35_c00321{transform:matrix(0.321491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321491,0.000000,0.000000,0.250000,0,0);}
.m34_c00321{transform:matrix(0.325225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325225,0.000000,0.000000,0.250000,0,0);}
.m74_c00321{transform:matrix(0.326307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326307,0.000000,0.000000,0.250000,0,0);}
.m6c_c00321{transform:matrix(0.326976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326976,0.000000,0.000000,0.250000,0,0);}
.m8c_c00321{transform:matrix(0.327011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327011,0.000000,0.000000,0.250000,0,0);}
.m49_c00321{transform:matrix(0.327404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327404,0.000000,0.000000,0.250000,0,0);}
.m95_c00321{transform:matrix(0.328120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328120,0.000000,0.000000,0.250000,0,0);}
.m83_c00321{transform:matrix(0.328429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328429,0.000000,0.000000,0.250000,0,0);}
.m2b_c00321{transform:matrix(0.329220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329220,0.000000,0.000000,0.250000,0,0);}
.m8f_c00321{transform:matrix(0.330126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330126,0.000000,0.000000,0.250000,0,0);}
.m3f_c00321{transform:matrix(0.330856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330856,0.000000,0.000000,0.250000,0,0);}
.m91_c00321{transform:matrix(0.332311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332311,0.000000,0.000000,0.250000,0,0);}
.m82_c00321{transform:matrix(0.332639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332639,0.000000,0.000000,0.250000,0,0);}
.m31_c00321{transform:matrix(0.333314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333314,0.000000,0.000000,0.250000,0,0);}
.m76_c00321{transform:matrix(0.333350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333350,0.000000,0.000000,0.250000,0,0);}
.m78_c00321{transform:matrix(0.334056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334056,0.000000,0.000000,0.250000,0,0);}
.m42_c00321{transform:matrix(0.335214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335214,0.000000,0.000000,0.250000,0,0);}
.m40_c00321{transform:matrix(0.335413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335413,0.000000,0.000000,0.250000,0,0);}
.mac_c00321{transform:matrix(0.336361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336361,0.000000,0.000000,0.250000,0,0);}
.m8b_c00321{transform:matrix(0.338552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338552,0.000000,0.000000,0.250000,0,0);}
.m64_c00321{transform:matrix(0.341125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341125,0.000000,0.000000,0.250000,0,0);}
.m7f_c00321{transform:matrix(0.343122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343122,0.000000,0.000000,0.250000,0,0);}
.m44_c00321{transform:matrix(0.344160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344160,0.000000,0.000000,0.250000,0,0);}
.m89_c00321{transform:matrix(0.344398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344398,0.000000,0.000000,0.250000,0,0);}
.m7c_c00321{transform:matrix(0.345661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345661,0.000000,0.000000,0.250000,0,0);}
.m81_c00321{transform:matrix(0.346947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346947,0.000000,0.000000,0.250000,0,0);}
.m5d_c00321{transform:matrix(0.348500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348500,0.000000,0.000000,0.250000,0,0);}
.m72_c00321{transform:matrix(0.349717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349717,0.000000,0.000000,0.250000,0,0);}
.m85_c00321{transform:matrix(0.350827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350827,0.000000,0.000000,0.250000,0,0);}
.m69_c00321{transform:matrix(0.351672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351672,0.000000,0.000000,0.250000,0,0);}
.m28_c00321{transform:matrix(0.352250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352250,0.000000,0.000000,0.250000,0,0);}
.m73_c00321{transform:matrix(0.353016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353016,0.000000,0.000000,0.250000,0,0);}
.m70_c00321{transform:matrix(0.355246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355246,0.000000,0.000000,0.250000,0,0);}
.m60_c00321{transform:matrix(0.365516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365516,0.000000,0.000000,0.250000,0,0);}
.ma3_c00321{transform:matrix(0.368750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368750,0.000000,0.000000,0.250000,0,0);}
.m71_c00321{transform:matrix(0.370404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370404,0.000000,0.000000,0.250000,0,0);}
.m9c_c00321{transform:matrix(0.372314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372314,0.000000,0.000000,0.250000,0,0);}
.m54_c00321{transform:matrix(0.374432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374432,0.000000,0.000000,0.250000,0,0);}
.m5c_c00321{transform:matrix(0.374821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374821,0.000000,0.000000,0.250000,0,0);}
.m6d_c00321{transform:matrix(0.386287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386287,0.000000,0.000000,0.250000,0,0);}
.m77_c00321{transform:matrix(0.388883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388883,0.000000,0.000000,0.250000,0,0);}
.m2d_c00321{transform:matrix(0.390169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390169,0.000000,0.000000,0.250000,0,0);}
.m37_c00321{transform:matrix(0.390366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390366,0.000000,0.000000,0.250000,0,0);}
.m29_c00321{transform:matrix(0.395089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395089,0.000000,0.000000,0.250000,0,0);}
.m1f_c00321{transform:matrix(0.403669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403669,0.000000,0.000000,0.250000,0,0);}
.me_c00321{transform:matrix(0.428819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428819,0.000000,0.000000,0.250000,0,0);}
.v2_c00321{vertical-align:-22.789800px;}
.v1_c00321{vertical-align:-7.163640px;}
.v0_c00321{vertical-align:0.000000px;}
.ls30_c00321{letter-spacing:-2.744280px;}
.ls27_c00321{letter-spacing:-2.543317px;}
.ls2a_c00321{letter-spacing:-2.494800px;}
.ls18_c00321{letter-spacing:-2.432430px;}
.ls8_c00321{letter-spacing:-2.404717px;}
.ls1a_c00321{letter-spacing:-2.356200px;}
.ls26_c00321{letter-spacing:-2.349277px;}
.ls19_c00321{letter-spacing:-2.282148px;}
.ls6_c00321{letter-spacing:-2.176020px;}
.ls1b_c00321{letter-spacing:-2.113848px;}
.lsa_c00321{letter-spacing:-2.072070px;}
.ls2b_c00321{letter-spacing:-1.864170px;}
.ls2f_c00321{letter-spacing:-1.722189px;}
.ls2d_c00321{letter-spacing:-1.483020px;}
.ls5_c00321{letter-spacing:-1.477183px;}
.ls1d_c00321{letter-spacing:-1.469167px;}
.lsc_c00321{letter-spacing:-1.392930px;}
.ls25_c00321{letter-spacing:-1.024593px;}
.ls24_c00321{letter-spacing:-0.966460px;}
.lse_c00321{letter-spacing:-0.755370px;}
.ls16_c00321{letter-spacing:-0.615899px;}
.ls29_c00321{letter-spacing:-0.479597px;}
.ls7_c00321{letter-spacing:-0.099475px;}
.ls4_c00321{letter-spacing:0.000000px;}
.ls2c_c00321{letter-spacing:0.631343px;}
.ls0_c00321{letter-spacing:0.829382px;}
.ls10_c00321{letter-spacing:0.960300px;}
.lsf_c00321{letter-spacing:1.079100px;}
.ls1f_c00321{letter-spacing:1.113040px;}
.ls34_c00321{letter-spacing:1.823922px;}
.ls1e_c00321{letter-spacing:2.098810px;}
.ls31_c00321{letter-spacing:2.318052px;}
.ls21_c00321{letter-spacing:2.382817px;}
.lsb_c00321{letter-spacing:2.960100px;}
.ls1c_c00321{letter-spacing:3.009600px;}
.ls33_c00321{letter-spacing:3.022914px;}
.ls22_c00321{letter-spacing:3.276900px;}
.ls14_c00321{letter-spacing:3.366000px;}
.ls12_c00321{letter-spacing:3.435310px;}
.ls15_c00321{letter-spacing:3.474900px;}
.ls23_c00321{letter-spacing:3.633310px;}
.ls2e_c00321{letter-spacing:3.880810px;}
.ls32_c00321{letter-spacing:12.830598px;}
.ls2_c00321{letter-spacing:13.297988px;}
.ls1_c00321{letter-spacing:24.061686px;}
.ls3_c00321{letter-spacing:28.121885px;}
.lsd_c00321{letter-spacing:39.916800px;}
.ls13_c00321{letter-spacing:49.896198px;}
.ls28_c00321{letter-spacing:51.321798px;}
.ls9_c00321{letter-spacing:55.598598px;}
.ls35_c00321{letter-spacing:57.024198px;}
.ls17_c00321{letter-spacing:69.854598px;}
.ls11_c00321{letter-spacing:78.408198px;}
.ls20_c00321{letter-spacing:79.833600px;}
.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;}
}
.ws7_c00321{word-spacing:-18.166550px;}
.ws6_c00321{word-spacing:-17.686953px;}
.ws1_c00321{word-spacing:-16.830000px;}
.ws2_c00321{word-spacing:-14.716152px;}
.ws0_c00321{word-spacing:-11.063844px;}
.ws5_c00321{word-spacing:-2.361736px;}
.ws8_c00321{word-spacing:0.000000px;}
.ws4_c00321{word-spacing:12.858120px;}
.ws3_c00321{word-spacing:54.946865px;}
._10_c00321{margin-left:-10.101322px;}
._4_c00321{margin-left:-7.674480px;}
._1_c00321{margin-left:-3.598056px;}
._13_c00321{margin-left:-1.225026px;}
._19_c00321{width:1.525887px;}
._3_c00321{width:3.345487px;}
._0_c00321{width:5.952197px;}
._11_c00321{width:7.848643px;}
._6_c00321{width:9.127063px;}
._5_c00321{width:11.255904px;}
._18_c00321{width:12.716649px;}
._a_c00321{width:14.024626px;}
._1c_c00321{width:15.841133px;}
._1b_c00321{width:19.656015px;}
._2_c00321{width:21.740301px;}
._c_c00321{width:24.851717px;}
._d_c00321{width:27.569311px;}
._14_c00321{width:29.363796px;}
._b_c00321{width:32.996551px;}
._16_c00321{width:34.889648px;}
._e_c00321{width:37.503181px;}
._1a_c00321{width:39.065720px;}
._f_c00321{width:40.117792px;}
._15_c00321{width:41.540301px;}
._17_c00321{width:44.115792px;}
._7_c00321{width:47.404011px;}
._8_c00321{width:100.339272px;}
._9_c00321{width:101.954160px;}
._12_c00321{width:110.179080px;}
.fc0_c00321{color:transparent;}
.fs26_c00321{font-size:12.830598px;}
.fsa_c00321{font-size:19.206000px;}
.fs9_c00321{font-size:21.582000px;}
.fs0_c00321{font-size:27.720000px;}
.fsc_c00321{font-size:34.056198px;}
.fs18_c00321{font-size:39.600000px;}
.fs7_c00321{font-size:39.798000px;}
.fs8_c00321{font-size:39.916800px;}
.fs12_c00321{font-size:40.788000px;}
.fs17_c00321{font-size:41.976198px;}
.fs23_c00321{font-size:42.372000px;}
.fsd_c00321{font-size:49.896198px;}
.fs16_c00321{font-size:50.688000px;}
.fs1e_c00321{font-size:51.321798px;}
.fs22_c00321{font-size:53.262000px;}
.fs3_c00321{font-size:55.598598px;}
.fs4_c00321{font-size:55.836198px;}
.fs27_c00321{font-size:57.024198px;}
.fs6_c00321{font-size:59.202000px;}
.fsf_c00321{font-size:59.796198px;}
.fs14_c00321{font-size:60.192000px;}
.fs5_c00321{font-size:60.984000px;}
.fs2_c00321{font-size:62.172000px;}
.fs20_c00321{font-size:62.370000px;}
.fs28_c00321{font-size:64.548000px;}
.fs10_c00321{font-size:65.340000px;}
.fs1b_c00321{font-size:65.538000px;}
.fs1d_c00321{font-size:67.122198px;}
.fse_c00321{font-size:67.320000px;}
.fs15_c00321{font-size:68.112198px;}
.fs1_c00321{font-size:68.706198px;}
.fs11_c00321{font-size:69.498000px;}
.fs13_c00321{font-size:69.854598px;}
.fs1f_c00321{font-size:70.884000px;}
.fs21_c00321{font-size:71.280000px;}
.fs1c_c00321{font-size:72.666198px;}
.fs1a_c00321{font-size:77.616198px;}
.fs24_c00321{font-size:78.408000px;}
.fsb_c00321{font-size:78.408198px;}
.fs19_c00321{font-size:79.833600px;}
.fs25_c00321{font-size:91.872198px;}
.y0_c00321{bottom:0.000000px;}
.y1_c00321{bottom:76.500000px;}
.y29_c00321{bottom:141.041385px;}
.y28_c00321{bottom:162.786735px;}
.y27_c00321{bottom:172.404585px;}
.y26_c00321{bottom:209.470185px;}
.y25_c00321{bottom:242.620335px;}
.y24_c00321{bottom:275.409135px;}
.y23_c00321{bottom:305.341785px;}
.y22_c00321{bottom:308.910735px;}
.y21_c00321{bottom:341.343135px;}
.y20_c00321{bottom:366.286185px;}
.y1f_c00321{bottom:375.196185px;}
.y1e_c00321{bottom:390.521385px;}
.y1c_c00321{bottom:407.989935px;}
.y1d_c00321{bottom:408.341385px;}
.y1a_c00321{bottom:408.697785px;}
.y1b_c00321{bottom:412.623135px;}
.y19_c00321{bottom:430.081785px;}
.y18_c00321{bottom:440.417385px;}
.y17_c00321{bottom:460.737135px;}
.y16_c00321{bottom:473.918985px;}
.y15_c00321{bottom:506.707785px;}
.y14_c00321{bottom:539.140185px;}
.y12_c00321{bottom:580.838985px;}
.y11_c00321{bottom:605.074185px;}
.y2_c00321{bottom:637.506585px;}
.y10_c00321{bottom:669.938985px;}
.yf_c00321{bottom:704.509785px;}
.ye_c00321{bottom:732.665385px;}
.yc_c00321{bottom:734.090985px;}
.yd_c00321{bottom:738.011385px;}
.yb_c00321{bottom:768.666735px;}
.ya_c00321{bottom:797.886585px;}
.y9_c00321{bottom:848.138985px;}
.y7_c00321{bottom:860.256585px;}
.y6_c00321{bottom:862.043535px;}
.y8_c00321{bottom:862.399935px;}
.y5_c00321{bottom:865.607535px;}
.y4_c00321{bottom:898.747785px;}
.y3_c00321{bottom:927.259785px;}
.y13_c00321{bottom:1074.809385px;}
.h26_c00321{height:8.545178px;}
.hc_c00321{height:19.993746px;}
.hb_c00321{height:21.750609px;}
.ha_c00321{height:26.584589px;}
.h2_c00321{height:28.911094px;}
.hf_c00321{height:33.230868px;}
.h1f_c00321{height:34.180317px;}
.he_c00321{height:35.519550px;}
.h5_c00321{height:37.028666px;}
.h27_c00321{height:37.978116px;}
.h17_c00321{height:41.197343px;}
.h1a_c00321{height:41.301563px;}
.h9_c00321{height:41.508070px;}
.h23_c00321{height:44.192672px;}
.h13_c00321{height:46.523162px;}
.hd_c00321{height:52.219860px;}
.h19_c00321{height:53.169178px;}
.h22_c00321{height:55.550602px;}
.h6_c00321{height:58.235410px;}
.h15_c00321{height:59.075156px;}
.h8_c00321{height:61.745836px;}
.h18_c00321{height:62.365566px;}
.h7_c00321{height:63.604406px;}
.h11_c00321{height:64.127637px;}
.h4_c00321{height:64.843453px;}
.h10_c00321{height:66.070898px;}
.h28_c00321{height:67.321547px;}
.h3_c00321{height:67.431376px;}
.h12_c00321{height:68.208486px;}
.h1c_c00321{height:68.354086px;}
.h16_c00321{height:68.644325px;}
.h20_c00321{height:69.568770px;}
.h21_c00321{height:69.957422px;}
.h1e_c00321{height:70.006355px;}
.h14_c00321{height:70.040953px;}
.h1d_c00321{height:71.317899px;}
.h1b_c00321{height:76.176054px;}
.h24_c00321{height:76.953164px;}
.h25_c00321{height:95.819832px;}
.h1_c00321{height:1110.000000px;}
.h0_c00321{height:1263.000000px;}
.w1_c00321{width:763.500000px;}
.w0_c00321{width:892.500000px;}
.x0_c00321{left:0.000000px;}
.x1_c00321{left:64.500000px;}
.x42_c00321{left:94.308435px;}
.x3b_c00321{left:95.753835px;}
.x67_c00321{left:97.327935px;}
.x78_c00321{left:98.357535px;}
.x53_c00321{left:107.663535px;}
.x49_c00321{left:118.548585px;}
.x43_c00321{left:129.240585px;}
.x44_c00321{left:139.937535px;}
.x7c_c00321{left:143.857935px;}
.x32_c00321{left:151.654185px;}
.x7d_c00321{left:154.901385px;}
.x51_c00321{left:162.578835px;}
.x7e_c00321{left:168.093135px;}
.x52_c00321{left:173.434185px;}
.x54_c00321{left:175.354785px;}
.x2_c00321{left:176.889285px;}
.x33_c00321{left:184.373685px;}
.x68_c00321{left:196.313085px;}
.x45_c00321{left:206.777385px;}
.x34_c00321{left:216.499185px;}
.x4a_c00321{left:217.914885px;}
.x6e_c00321{left:219.162285px;}
.x74_c00321{left:220.973985px;}
.x69_c00321{left:229.151385px;}
.x35_c00321{left:239.902785px;}
.x3c_c00321{left:247.540635px;}
.x5b_c00321{left:250.936335px;}
.x7f_c00321{left:252.916335px;}
.x7b_c00321{left:259.930485px;}
.x3_c00321{left:261.380835px;}
.xa_c00321{left:262.836135px;}
.x13_c00321{left:272.092635px;}
.x28_c00321{left:273.622185px;}
.xf_c00321{left:275.136885px;}
.x14_c00321{left:278.215785px;}
.x4b_c00321{left:283.165785px;}
.x55_c00321{left:284.403285px;}
.x80_c00321{left:285.705135px;}
.x29_c00321{left:287.115885px;}
.x20_c00321{left:289.011735px;}
.x1f_c00321{left:293.956785px;}
.x63_c00321{left:295.362585px;}
.xb_c00321{left:304.718085px;}
.x56_c00321{left:306.138735px;}
.x46_c00321{left:307.242585px;}
.x36_c00321{left:316.548585px;}
.x2a_c00321{left:318.092985px;}
.xc_c00321{left:320.226435px;}
.xd_c00321{left:321.478785px;}
.x10_c00321{left:323.483535px;}
.x15_c00321{left:324.488385px;}
.x4_c00321{left:325.577385px;}
.x6f_c00321{left:327.354435px;}
.x16_c00321{left:329.111685px;}
.x11_c00321{left:332.032185px;}
.xe_c00321{left:334.616085px;}
.x5c_c00321{left:340.095735px;}
.x6d_c00321{left:344.154735px;}
.x4c_c00321{left:350.530335px;}
.x12_c00321{left:351.639135px;}
.x57_c00321{left:353.460735px;}
.x5_c00321{left:355.816935px;}
.x21_c00321{left:357.336585px;}
.x37_c00321{left:360.638235px;}
.x2e_c00321{left:362.415285px;}
.x17_c00321{left:370.528335px;}
.x18_c00321{left:374.443785px;}
.x2f_c00321{left:375.517935px;}
.x64_c00321{left:384.546735px;}
.x22_c00321{left:390.481785px;}
.x19_c00321{left:393.486435px;}
.x30_c00321{left:394.560585px;}
.x23_c00321{left:404.970435px;}
.x6_c00321{left:406.717785px;}
.x81_c00321{left:409.019535px;}
.x2b_c00321{left:413.137935px;}
.x24_c00321{left:417.053385px;}
.x7_c00321{left:427.616685px;}
.x8_c00321{left:432.541935px;}
.x2d_c00321{left:434.378385px;}
.x58_c00321{left:437.838435px;}
.x25_c00321{left:439.466985px;}
.x9_c00321{left:445.090185px;}
.x6a_c00321{left:449.970885px;}
.x70_c00321{left:451.584585px;}
.x26_c00321{left:453.782385px;}
.x27_c00321{left:460.895535px;}
.x82_c00321{left:463.519035px;}
.x2c_c00321{left:472.775535px;}
.x60_c00321{left:482.814135px;}
.x59_c00321{left:484.031835px;}
.x1b_c00321{left:490.273785px;}
.x79_c00321{left:494.713935px;}
.x3d_c00321{left:506.074185px;}
.x76_c00321{left:515.573235px;}
.x47_c00321{left:516.607785px;}
.x7a_c00321{left:517.874985px;}
.x71_c00321{left:527.834385px;}
.x61_c00321{left:538.561035px;}
.x38_c00321{left:548.693685px;}
.x3e_c00321{left:561.212235px;}
.x62_c00321{left:570.458835px;}
.x1c_c00321{left:571.805235px;}
.x1a_c00321{left:574.889085px;}
.x39_c00321{left:581.863635px;}
.x75_c00321{left:582.868485px;}
.x6b_c00321{left:592.516035px;}
.x3f_c00321{left:593.956485px;}
.x65_c00321{left:604.346535px;}
.x1d_c00321{left:605.623635px;}
.x1e_c00321{left:615.637485px;}
.x4d_c00321{left:626.374035px;}
.x5d_c00321{left:638.496585px;}
.x72_c00321{left:641.006235px;}
.x48_c00321{left:648.475785px;}
.x3a_c00321{left:649.728135px;}
.x77_c00321{left:661.118085px;}
.x66_c00321{left:662.350635px;}
.x31_c00321{left:672.161535px;}
.x5f_c00321{left:681.799185px;}
.x40_c00321{left:683.244585px;}
.x4e_c00321{left:692.308035px;}
.x5e_c00321{left:693.347535px;}
.x73_c00321{left:694.570185px;}
.x41_c00321{left:703.712835px;}
.x5a_c00321{left:705.668085px;}
.x6c_c00321{left:715.340385px;}
.x4f_c00321{left:726.789735px;}
.x50_c00321{left:738.110385px;}
@media print{
.v2_c00321{vertical-align:-20.257600pt;}
.v1_c00321{vertical-align:-6.367680pt;}
.v0_c00321{vertical-align:0.000000pt;}
.ls30_c00321{letter-spacing:-2.439360pt;}
.ls27_c00321{letter-spacing:-2.260726pt;}
.ls2a_c00321{letter-spacing:-2.217600pt;}
.ls18_c00321{letter-spacing:-2.162160pt;}
.ls8_c00321{letter-spacing:-2.137526pt;}
.ls1a_c00321{letter-spacing:-2.094400pt;}
.ls26_c00321{letter-spacing:-2.088246pt;}
.ls19_c00321{letter-spacing:-2.028576pt;}
.ls6_c00321{letter-spacing:-1.934240pt;}
.ls1b_c00321{letter-spacing:-1.878976pt;}
.lsa_c00321{letter-spacing:-1.841840pt;}
.ls2b_c00321{letter-spacing:-1.657040pt;}
.ls2f_c00321{letter-spacing:-1.530835pt;}
.ls2d_c00321{letter-spacing:-1.318240pt;}
.ls5_c00321{letter-spacing:-1.313052pt;}
.ls1d_c00321{letter-spacing:-1.305926pt;}
.lsc_c00321{letter-spacing:-1.238160pt;}
.ls25_c00321{letter-spacing:-0.910750pt;}
.ls24_c00321{letter-spacing:-0.859076pt;}
.lse_c00321{letter-spacing:-0.671440pt;}
.ls16_c00321{letter-spacing:-0.547466pt;}
.ls29_c00321{letter-spacing:-0.426308pt;}
.ls7_c00321{letter-spacing:-0.088422pt;}
.ls4_c00321{letter-spacing:0.000000pt;}
.ls2c_c00321{letter-spacing:0.561194pt;}
.ls0_c00321{letter-spacing:0.737229pt;}
.ls10_c00321{letter-spacing:0.853600pt;}
.lsf_c00321{letter-spacing:0.959200pt;}
.ls1f_c00321{letter-spacing:0.989369pt;}
.ls34_c00321{letter-spacing:1.621264pt;}
.ls1e_c00321{letter-spacing:1.865609pt;}
.ls31_c00321{letter-spacing:2.060490pt;}
.ls21_c00321{letter-spacing:2.118060pt;}
.lsb_c00321{letter-spacing:2.631200pt;}
.ls1c_c00321{letter-spacing:2.675200pt;}
.ls33_c00321{letter-spacing:2.687035pt;}
.ls22_c00321{letter-spacing:2.912800pt;}
.ls14_c00321{letter-spacing:2.992000pt;}
.ls12_c00321{letter-spacing:3.053609pt;}
.ls15_c00321{letter-spacing:3.088800pt;}
.ls23_c00321{letter-spacing:3.229609pt;}
.ls2e_c00321{letter-spacing:3.449609pt;}
.ls32_c00321{letter-spacing:11.404976pt;}
.ls2_c00321{letter-spacing:11.820434pt;}
.ls1_c00321{letter-spacing:21.388165pt;}
.ls3_c00321{letter-spacing:24.997231pt;}
.lsd_c00321{letter-spacing:35.481600pt;}
.ls13_c00321{letter-spacing:44.352176pt;}
.ls28_c00321{letter-spacing:45.619376pt;}
.ls9_c00321{letter-spacing:49.420976pt;}
.ls35_c00321{letter-spacing:50.688176pt;}
.ls17_c00321{letter-spacing:62.092976pt;}
.ls11_c00321{letter-spacing:69.696176pt;}
.ls20_c00321{letter-spacing:70.963200pt;}
.ws7_c00321{word-spacing:-16.148044pt;}
.ws6_c00321{word-spacing:-15.721736pt;}
.ws1_c00321{word-spacing:-14.960000pt;}
.ws2_c00321{word-spacing:-13.081024pt;}
.ws0_c00321{word-spacing:-9.834528pt;}
.ws5_c00321{word-spacing:-2.099321pt;}
.ws8_c00321{word-spacing:0.000000pt;}
.ws4_c00321{word-spacing:11.429440pt;}
.ws3_c00321{word-spacing:48.841657pt;}
._10_c00321{margin-left:-8.978953pt;}
._4_c00321{margin-left:-6.821760pt;}
._1_c00321{margin-left:-3.198272pt;}
._13_c00321{margin-left:-1.088912pt;}
._19_c00321{width:1.356344pt;}
._3_c00321{width:2.973766pt;}
._0_c00321{width:5.290842pt;}
._11_c00321{width:6.976572pt;}
._6_c00321{width:8.112945pt;}
._5_c00321{width:10.005248pt;}
._18_c00321{width:11.303688pt;}
._a_c00321{width:12.466334pt;}
._1c_c00321{width:14.081007pt;}
._1b_c00321{width:17.472013pt;}
._2_c00321{width:19.324712pt;}
._c_c00321{width:22.090415pt;}
._d_c00321{width:24.506054pt;}
._14_c00321{width:26.101152pt;}
._b_c00321{width:29.330268pt;}
._16_c00321{width:31.013020pt;}
._e_c00321{width:33.336161pt;}
._1a_c00321{width:34.725084pt;}
._f_c00321{width:35.660260pt;}
._15_c00321{width:36.924712pt;}
._17_c00321{width:39.214037pt;}
._7_c00321{width:42.136898pt;}
._8_c00321{width:89.190464pt;}
._9_c00321{width:90.625920pt;}
._12_c00321{width:97.936960pt;}
.fs26_c00321{font-size:11.404976pt;}
.fsa_c00321{font-size:17.072000pt;}
.fs9_c00321{font-size:19.184000pt;}
.fs0_c00321{font-size:24.640000pt;}
.fsc_c00321{font-size:30.272176pt;}
.fs18_c00321{font-size:35.200000pt;}
.fs7_c00321{font-size:35.376000pt;}
.fs8_c00321{font-size:35.481600pt;}
.fs12_c00321{font-size:36.256000pt;}
.fs17_c00321{font-size:37.312176pt;}
.fs23_c00321{font-size:37.664000pt;}
.fsd_c00321{font-size:44.352176pt;}
.fs16_c00321{font-size:45.056000pt;}
.fs1e_c00321{font-size:45.619376pt;}
.fs22_c00321{font-size:47.344000pt;}
.fs3_c00321{font-size:49.420976pt;}
.fs4_c00321{font-size:49.632176pt;}
.fs27_c00321{font-size:50.688176pt;}
.fs6_c00321{font-size:52.624000pt;}
.fsf_c00321{font-size:53.152176pt;}
.fs14_c00321{font-size:53.504000pt;}
.fs5_c00321{font-size:54.208000pt;}
.fs2_c00321{font-size:55.264000pt;}
.fs20_c00321{font-size:55.440000pt;}
.fs28_c00321{font-size:57.376000pt;}
.fs10_c00321{font-size:58.080000pt;}
.fs1b_c00321{font-size:58.256000pt;}
.fs1d_c00321{font-size:59.664176pt;}
.fse_c00321{font-size:59.840000pt;}
.fs15_c00321{font-size:60.544176pt;}
.fs1_c00321{font-size:61.072176pt;}
.fs11_c00321{font-size:61.776000pt;}
.fs13_c00321{font-size:62.092976pt;}
.fs1f_c00321{font-size:63.008000pt;}
.fs21_c00321{font-size:63.360000pt;}
.fs1c_c00321{font-size:64.592176pt;}
.fs1a_c00321{font-size:68.992176pt;}
.fs24_c00321{font-size:69.696000pt;}
.fsb_c00321{font-size:69.696176pt;}
.fs19_c00321{font-size:70.963200pt;}
.fs25_c00321{font-size:81.664176pt;}
.y0_c00321{bottom:0.000000pt;}
.y1_c00321{bottom:68.000000pt;}
.y29_c00321{bottom:125.370120pt;}
.y28_c00321{bottom:144.699320pt;}
.y27_c00321{bottom:153.248520pt;}
.y26_c00321{bottom:186.195720pt;}
.y25_c00321{bottom:215.662520pt;}
.y24_c00321{bottom:244.808120pt;}
.y23_c00321{bottom:271.414920pt;}
.y22_c00321{bottom:274.587320pt;}
.y21_c00321{bottom:303.416120pt;}
.y20_c00321{bottom:325.587720pt;}
.y1f_c00321{bottom:333.507720pt;}
.y1e_c00321{bottom:347.130120pt;}
.y1c_c00321{bottom:362.657720pt;}
.y1d_c00321{bottom:362.970120pt;}
.y1a_c00321{bottom:363.286920pt;}
.y1b_c00321{bottom:366.776120pt;}
.y19_c00321{bottom:382.294920pt;}
.y18_c00321{bottom:391.482120pt;}
.y17_c00321{bottom:409.544120pt;}
.y16_c00321{bottom:421.261320pt;}
.y15_c00321{bottom:450.406920pt;}
.y14_c00321{bottom:479.235720pt;}
.y12_c00321{bottom:516.301320pt;}
.y11_c00321{bottom:537.843720pt;}
.y2_c00321{bottom:566.672520pt;}
.y10_c00321{bottom:595.501320pt;}
.yf_c00321{bottom:626.230920pt;}
.ye_c00321{bottom:651.258120pt;}
.yc_c00321{bottom:652.525320pt;}
.yd_c00321{bottom:656.010120pt;}
.yb_c00321{bottom:683.259320pt;}
.ya_c00321{bottom:709.232520pt;}
.y9_c00321{bottom:753.901320pt;}
.y7_c00321{bottom:764.672520pt;}
.y6_c00321{bottom:766.260920pt;}
.y8_c00321{bottom:766.577720pt;}
.y5_c00321{bottom:769.428920pt;}
.y4_c00321{bottom:798.886920pt;}
.y3_c00321{bottom:824.230920pt;}
.y13_c00321{bottom:955.386120pt;}
.h26_c00321{height:7.595714pt;}
.hc_c00321{height:17.772219pt;}
.hb_c00321{height:19.333875pt;}
.ha_c00321{height:23.630746pt;}
.h2_c00321{height:25.698750pt;}
.hf_c00321{height:29.538549pt;}
.h1f_c00321{height:30.382504pt;}
.he_c00321{height:31.572934pt;}
.h5_c00321{height:32.914370pt;}
.h27_c00321{height:33.758325pt;}
.h17_c00321{height:36.619860pt;}
.h1a_c00321{height:36.712500pt;}
.h9_c00321{height:36.896063pt;}
.h23_c00321{height:39.282375pt;}
.h13_c00321{height:41.353922pt;}
.hd_c00321{height:46.417653pt;}
.h19_c00321{height:47.261491pt;}
.h22_c00321{height:49.378312pt;}
.h6_c00321{height:51.764809pt;}
.h15_c00321{height:52.511250pt;}
.h8_c00321{height:54.885188pt;}
.h18_c00321{height:55.436059pt;}
.h7_c00321{height:56.537250pt;}
.h11_c00321{height:57.002344pt;}
.h4_c00321{height:57.638625pt;}
.h10_c00321{height:58.729688pt;}
.h28_c00321{height:59.841375pt;}
.h3_c00321{height:59.939001pt;}
.h12_c00321{height:60.629766pt;}
.h1c_c00321{height:60.759188pt;}
.h16_c00321{height:61.017177pt;}
.h20_c00321{height:61.838906pt;}
.h21_c00321{height:62.184375pt;}
.h1e_c00321{height:62.227871pt;}
.h14_c00321{height:62.258625pt;}
.h1d_c00321{height:63.393688pt;}
.h1b_c00321{height:67.712048pt;}
.h24_c00321{height:68.402813pt;}
.h25_c00321{height:85.173184pt;}
.h1_c00321{height:986.666667pt;}
.h0_c00321{height:1122.666667pt;}
.w1_c00321{width:678.666667pt;}
.w0_c00321{width:793.333333pt;}
.x0_c00321{left:0.000000pt;}
.x1_c00321{left:57.333333pt;}
.x42_c00321{left:83.829720pt;}
.x3b_c00321{left:85.114520pt;}
.x67_c00321{left:86.513720pt;}
.x78_c00321{left:87.428920pt;}
.x53_c00321{left:95.700920pt;}
.x49_c00321{left:105.376520pt;}
.x43_c00321{left:114.880520pt;}
.x44_c00321{left:124.388920pt;}
.x7c_c00321{left:127.873720pt;}
.x32_c00321{left:134.803720pt;}
.x7d_c00321{left:137.690120pt;}
.x51_c00321{left:144.514520pt;}
.x7e_c00321{left:149.416120pt;}
.x52_c00321{left:154.163720pt;}
.x54_c00321{left:155.870920pt;}
.x2_c00321{left:157.234920pt;}
.x33_c00321{left:163.887720pt;}
.x68_c00321{left:174.500520pt;}
.x45_c00321{left:183.802120pt;}
.x34_c00321{left:192.443720pt;}
.x4a_c00321{left:193.702120pt;}
.x6e_c00321{left:194.810920pt;}
.x74_c00321{left:196.421320pt;}
.x69_c00321{left:203.690120pt;}
.x35_c00321{left:213.246920pt;}
.x3c_c00321{left:220.036120pt;}
.x5b_c00321{left:223.054520pt;}
.x7f_c00321{left:224.814520pt;}
.x7b_c00321{left:231.049320pt;}
.x3_c00321{left:232.338520pt;}
.xa_c00321{left:233.632120pt;}
.x13_c00321{left:241.860120pt;}
.x28_c00321{left:243.219720pt;}
.xf_c00321{left:244.566120pt;}
.x14_c00321{left:247.302920pt;}
.x4b_c00321{left:251.702920pt;}
.x55_c00321{left:252.802920pt;}
.x80_c00321{left:253.960120pt;}
.x29_c00321{left:255.214120pt;}
.x20_c00321{left:256.899320pt;}
.x1f_c00321{left:261.294920pt;}
.x63_c00321{left:262.544520pt;}
.xb_c00321{left:270.860520pt;}
.x56_c00321{left:272.123320pt;}
.x46_c00321{left:273.104520pt;}
.x36_c00321{left:281.376520pt;}
.x2a_c00321{left:282.749320pt;}
.xc_c00321{left:284.645720pt;}
.xd_c00321{left:285.758920pt;}
.x10_c00321{left:287.540920pt;}
.x15_c00321{left:288.434120pt;}
.x4_c00321{left:289.402120pt;}
.x6f_c00321{left:290.981720pt;}
.x16_c00321{left:292.543720pt;}
.x11_c00321{left:295.139720pt;}
.xe_c00321{left:297.436520pt;}
.x5c_c00321{left:302.307320pt;}
.x6d_c00321{left:305.915320pt;}
.x4c_c00321{left:311.582520pt;}
.x12_c00321{left:312.568120pt;}
.x57_c00321{left:314.187320pt;}
.x5_c00321{left:316.281720pt;}
.x21_c00321{left:317.632520pt;}
.x37_c00321{left:320.567320pt;}
.x2e_c00321{left:322.146920pt;}
.x17_c00321{left:329.358520pt;}
.x18_c00321{left:332.838920pt;}
.x2f_c00321{left:333.793720pt;}
.x64_c00321{left:341.819320pt;}
.x22_c00321{left:347.094920pt;}
.x19_c00321{left:349.765720pt;}
.x30_c00321{left:350.720520pt;}
.x23_c00321{left:359.973720pt;}
.x6_c00321{left:361.526920pt;}
.x81_c00321{left:363.572920pt;}
.x2b_c00321{left:367.233720pt;}
.x24_c00321{left:370.714120pt;}
.x7_c00321{left:380.103720pt;}
.x8_c00321{left:384.481720pt;}
.x2d_c00321{left:386.114120pt;}
.x58_c00321{left:389.189720pt;}
.x25_c00321{left:390.637320pt;}
.x9_c00321{left:395.635720pt;}
.x6a_c00321{left:399.974120pt;}
.x70_c00321{left:401.408520pt;}
.x26_c00321{left:403.362120pt;}
.x27_c00321{left:409.684920pt;}
.x82_c00321{left:412.016920pt;}
.x2c_c00321{left:420.244920pt;}
.x60_c00321{left:429.168120pt;}
.x59_c00321{left:430.250520pt;}
.x1b_c00321{left:435.798920pt;}
.x79_c00321{left:439.745720pt;}
.x3d_c00321{left:449.843720pt;}
.x76_c00321{left:458.287320pt;}
.x47_c00321{left:459.206920pt;}
.x7a_c00321{left:460.333320pt;}
.x71_c00321{left:469.186120pt;}
.x61_c00321{left:478.720920pt;}
.x38_c00321{left:487.727720pt;}
.x3e_c00321{left:498.855320pt;}
.x62_c00321{left:507.074520pt;}
.x1c_c00321{left:508.271320pt;}
.x1a_c00321{left:511.012520pt;}
.x39_c00321{left:517.212120pt;}
.x75_c00321{left:518.105320pt;}
.x6b_c00321{left:526.680920pt;}
.x3f_c00321{left:527.961320pt;}
.x65_c00321{left:537.196920pt;}
.x1d_c00321{left:538.332120pt;}
.x1e_c00321{left:547.233320pt;}
.x4d_c00321{left:556.776920pt;}
.x5d_c00321{left:567.552520pt;}
.x72_c00321{left:569.783320pt;}
.x48_c00321{left:576.422920pt;}
.x3a_c00321{left:577.536120pt;}
.x77_c00321{left:587.660520pt;}
.x66_c00321{left:588.756120pt;}
.x31_c00321{left:597.476920pt;}
.x5f_c00321{left:606.043720pt;}
.x40_c00321{left:607.328520pt;}
.x4e_c00321{left:615.384920pt;}
.x5e_c00321{left:616.308920pt;}
.x73_c00321{left:617.395720pt;}
.x41_c00321{left:625.522520pt;}
.x5a_c00321{left:627.260520pt;}
.x6c_c00321{left:635.858120pt;}
.x4f_c00321{left:646.035320pt;}
.x50_c00321{left:656.098120pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bff3e380cc73f87e3b73c830.woff2')format("woff");}.ff1_c00322{font-family:ff1_c00322;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00322;src:url('chunks/assets/font_57e4b51324cbc5d7f96361cd.woff2')format("woff");}.ff2_c00322{font-family:ff2_c00322;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00322;src:url('chunks/assets/font_375016a67aa5aad2e8390a78.woff2')format("woff");}.ff3_c00322{font-family:ff3_c00322;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00322;src:url('chunks/assets/font_0bcb09c334842cfb67042045.woff2')format("woff");}.ff4_c00322{font-family:ff4_c00322;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00322;src:url('chunks/assets/font_e09c59fa43a0700aa3fb0310.woff2')format("woff");}.ff5_c00322{font-family:ff5_c00322;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m6e_c00322{transform:matrix(0.017858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017858,0.000000,0.000000,0.250000,0,0);}
.m4c_c00322{transform:matrix(0.032052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032052,0.000000,0.000000,0.250000,0,0);}
.m6d_c00322{transform:matrix(0.062501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062501,0.000000,0.000000,0.250000,0,0);}
.m3b_c00322{transform:matrix(0.063407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.063407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.063407,0.000000,0.000000,0.250000,0,0);}
.m80_c00322{transform:matrix(0.076923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076923,0.000000,0.000000,0.250000,0,0);}
.mf3_c00322{transform:matrix(0.078572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078572,0.000000,0.000000,0.250000,0,0);}
.m16_c00322{transform:matrix(0.094538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094538,0.000000,0.000000,0.250000,0,0);}
.m65_c00322{transform:matrix(0.106301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106301,0.000000,0.000000,0.250000,0,0);}
.m6c_c00322{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);}
.m96_c00322{transform:matrix(0.113446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113446,0.000000,0.000000,0.250000,0,0);}
.m18_c00322{transform:matrix(0.115406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115406,0.000000,0.000000,0.250000,0,0);}
.ma4_c00322{transform:matrix(0.116747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116747,0.000000,0.000000,0.250000,0,0);}
.m19_c00322{transform:matrix(0.119885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119885,0.000000,0.000000,0.250000,0,0);}
.m6f_c00322{transform:matrix(0.120536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120536,0.000000,0.000000,0.250000,0,0);}
.m86_c00322{transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);}
.m14_c00322{transform:matrix(0.136319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136319,0.000000,0.000000,0.250000,0,0);}
.m9_c00322{transform:matrix(0.138393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138393,0.000000,0.000000,0.250000,0,0);}
.mbf_c00322{transform:matrix(0.139119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139119,0.000000,0.000000,0.250000,0,0);}
.m2d_c00322{transform:matrix(0.141748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141748,0.000000,0.000000,0.250000,0,0);}
.m38_c00322{transform:matrix(0.145305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145305,0.000000,0.000000,0.250000,0,0);}
.m5_c00322{transform:matrix(0.147223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147223,0.000000,0.000000,0.250000,0,0);}
.m7e_c00322{transform:matrix(0.147436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147436,0.000000,0.000000,0.250000,0,0);}
.m49_c00322{transform:matrix(0.148511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148511,0.000000,0.000000,0.250000,0,0);}
.m4d_c00322{transform:matrix(0.149573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149573,0.000000,0.000000,0.250000,0,0);}
.mf7_c00322{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m94_c00322{transform:matrix(0.155824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155824,0.000000,0.000000,0.250000,0,0);}
.m3c_c00322{transform:matrix(0.157075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157075,0.000000,0.000000,0.250000,0,0);}
.me9_c00322{transform:matrix(0.160047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160047,0.000000,0.000000,0.250000,0,0);}
.m7d_c00322{transform:matrix(0.162393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162393,0.000000,0.000000,0.250000,0,0);}
.m7f_c00322{transform:matrix(0.163462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163462,0.000000,0.000000,0.250000,0,0);}
.m7a_c00322{transform:matrix(0.164530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164530,0.000000,0.000000,0.250000,0,0);}
.m4b_c00322{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);}
.m26_c00322{transform:matrix(0.176785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176785,0.000000,0.000000,0.250000,0,0);}
.m7b_c00322{transform:matrix(0.183761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183761,0.000000,0.000000,0.250000,0,0);}
.m85_c00322{transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);}
.m27_c00322{transform:matrix(0.189036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189036,0.000000,0.000000,0.250000,0,0);}
.m98_c00322{transform:matrix(0.190617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190617,0.000000,0.000000,0.250000,0,0);}
.m33_c00322{transform:matrix(0.192064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192064,0.000000,0.000000,0.250000,0,0);}
.m29_c00322{transform:matrix(0.196597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196597,0.000000,0.000000,0.250000,0,0);}
.m68_c00322{transform:matrix(0.198334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198334,0.000000,0.000000,0.250000,0,0);}
.mfb_c00322{transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);}
.m3f_c00322{transform:matrix(0.202380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202380,0.000000,0.000000,0.250000,0,0);}
.m9e_c00322{transform:matrix(0.202997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202997,0.000000,0.000000,0.250000,0,0);}
.m11_c00322{transform:matrix(0.203132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203132,0.000000,0.000000,0.250000,0,0);}
.m1d_c00322{transform:matrix(0.203539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203539,0.000000,0.000000,0.250000,0,0);}
.mf9_c00322{transform:matrix(0.203572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203572,0.000000,0.000000,0.250000,0,0);}
.mcb_c00322{transform:matrix(0.204138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204138,0.000000,0.000000,0.250000,0,0);}
.m70_c00322{transform:matrix(0.204366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204366,0.000000,0.000000,0.250000,0,0);}
.mfa_c00322{transform:matrix(0.204762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204762,0.000000,0.000000,0.250000,0,0);}
.m69_c00322{transform:matrix(0.205358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205358,0.000000,0.000000,0.250000,0,0);}
.m82_c00322{transform:matrix(0.206682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206682,0.000000,0.000000,0.250000,0,0);}
.mf8_c00322{transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);}
.mea_c00322{transform:matrix(0.211624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211624,0.000000,0.000000,0.250000,0,0);}
.mf6_c00322{transform:matrix(0.212499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212499,0.000000,0.000000,0.250000,0,0);}
.m3e_c00322{transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);}
.mef_c00322{transform:matrix(0.217611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217611,0.000000,0.000000,0.250000,0,0);}
.m8d_c00322{transform:matrix(0.220514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220514,0.000000,0.000000,0.250000,0,0);}
.m7c_c00322{transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);}
.ma5_c00322{transform:matrix(0.226172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226172,0.000000,0.000000,0.250000,0,0);}
.mbc_c00322{transform:matrix(0.231445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231445,0.000000,0.000000,0.250000,0,0);}
.m6a_c00322{transform:matrix(0.232144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232144,0.000000,0.000000,0.250000,0,0);}
.mf5_c00322{transform:matrix(0.243733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243733,0.000000,0.000000,0.250000,0,0);}
.m8a_c00322{transform:matrix(0.243852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243852,0.000000,0.000000,0.250000,0,0);}
.m58_c00322{transform:matrix(0.249695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249695,0.000000,0.000000,0.250000,0,0);}
.m0_c00322{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m30_c00322{transform:matrix(0.255410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255410,0.000000,0.000000,0.250000,0,0);}
.m60_c00322{transform:matrix(0.256739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256739,0.000000,0.000000,0.250000,0,0);}
.ma3_c00322{transform:matrix(0.257656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257656,0.000000,0.000000,0.250000,0,0);}
.m67_c00322{transform:matrix(0.258204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258204,0.000000,0.000000,0.250000,0,0);}
.m4_c00322{transform:matrix(0.259036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259036,0.000000,0.000000,0.250000,0,0);}
.m64_c00322{transform:matrix(0.260738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260738,0.000000,0.000000,0.250000,0,0);}
.m83_c00322{transform:matrix(0.263091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263091,0.000000,0.000000,0.250000,0,0);}
.m20_c00322{transform:matrix(0.265218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265218,0.000000,0.000000,0.250000,0,0);}
.m13_c00322{transform:matrix(0.265350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265350,0.000000,0.000000,0.250000,0,0);}
.m61_c00322{transform:matrix(0.265686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265686,0.000000,0.000000,0.250000,0,0);}
.m93_c00322{transform:matrix(0.266022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266022,0.000000,0.000000,0.250000,0,0);}
.mc9_c00322{transform:matrix(0.266888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266888,0.000000,0.000000,0.250000,0,0);}
.md3_c00322{transform:matrix(0.267823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267823,0.000000,0.000000,0.250000,0,0);}
.md7_c00322{transform:matrix(0.269002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269002,0.000000,0.000000,0.250000,0,0);}
.m47_c00322{transform:matrix(0.269179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269179,0.000000,0.000000,0.250000,0,0);}
.m2_c00322{transform:matrix(0.270055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270055,0.000000,0.000000,0.250000,0,0);}
.m73_c00322{transform:matrix(0.273483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273483,0.000000,0.000000,0.250000,0,0);}
.m42_c00322{transform:matrix(0.273806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273806,0.000000,0.000000,0.250000,0,0);}
.m53_c00322{transform:matrix(0.273891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273891,0.000000,0.000000,0.250000,0,0);}
.m3_c00322{transform:matrix(0.273977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273977,0.000000,0.000000,0.250000,0,0);}
.m4e_c00322{transform:matrix(0.274283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274283,0.000000,0.000000,0.250000,0,0);}
.m71_c00322{transform:matrix(0.275169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275169,0.000000,0.000000,0.250000,0,0);}
.ma2_c00322{transform:matrix(0.275717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275717,0.000000,0.000000,0.250000,0,0);}
.m87_c00322{transform:matrix(0.276480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276480,0.000000,0.000000,0.250000,0,0);}
.m74_c00322{transform:matrix(0.276663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276663,0.000000,0.000000,0.250000,0,0);}
.mdc_c00322{transform:matrix(0.277084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277084,0.000000,0.000000,0.250000,0,0);}
.me1_c00322{transform:matrix(0.278610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278610,0.000000,0.000000,0.250000,0,0);}
.m95_c00322{transform:matrix(0.278748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278748,0.000000,0.000000,0.250000,0,0);}
.m43_c00322{transform:matrix(0.278972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278972,0.000000,0.000000,0.250000,0,0);}
.mb9_c00322{transform:matrix(0.280108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280108,0.000000,0.000000,0.250000,0,0);}
.m72_c00322{transform:matrix(0.280136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280136,0.000000,0.000000,0.250000,0,0);}
.m88_c00322{transform:matrix(0.282047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282047,0.000000,0.000000,0.250000,0,0);}
.maf_c00322{transform:matrix(0.282668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282668,0.000000,0.000000,0.250000,0,0);}
.m36_c00322{transform:matrix(0.283413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283413,0.000000,0.000000,0.250000,0,0);}
.m37_c00322{transform:matrix(0.284975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284975,0.000000,0.000000,0.250000,0,0);}
.me5_c00322{transform:matrix(0.285380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285380,0.000000,0.000000,0.250000,0,0);}
.md_c00322{transform:matrix(0.286142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286142,0.000000,0.000000,0.250000,0,0);}
.m40_c00322{transform:matrix(0.286742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286742,0.000000,0.000000,0.250000,0,0);}
.m54_c00322{transform:matrix(0.287104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287104,0.000000,0.000000,0.250000,0,0);}
.m46_c00322{transform:matrix(0.288119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288119,0.000000,0.000000,0.250000,0,0);}
.md0_c00322{transform:matrix(0.288660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288660,0.000000,0.000000,0.250000,0,0);}
.ma6_c00322{transform:matrix(0.289244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289244,0.000000,0.000000,0.250000,0,0);}
.mf2_c00322{transform:matrix(0.289304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289304,0.000000,0.000000,0.250000,0,0);}
.mcd_c00322{transform:matrix(0.289575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289575,0.000000,0.000000,0.250000,0,0);}
.m1c_c00322{transform:matrix(0.289981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289981,0.000000,0.000000,0.250000,0,0);}
.maa_c00322{transform:matrix(0.290594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290594,0.000000,0.000000,0.250000,0,0);}
.m9d_c00322{transform:matrix(0.290935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290935,0.000000,0.000000,0.250000,0,0);}
.m34_c00322{transform:matrix(0.291252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291252,0.000000,0.000000,0.250000,0,0);}
.m89_c00322{transform:matrix(0.293189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293189,0.000000,0.000000,0.250000,0,0);}
.me4_c00322{transform:matrix(0.293830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293830,0.000000,0.000000,0.250000,0,0);}
.m59_c00322{transform:matrix(0.293853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293853,0.000000,0.000000,0.250000,0,0);}
.m5d_c00322{transform:matrix(0.294470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294470,0.000000,0.000000,0.250000,0,0);}
.m76_c00322{transform:matrix(0.294660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294660,0.000000,0.000000,0.250000,0,0);}
.m7_c00322{transform:matrix(0.294991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294991,0.000000,0.000000,0.250000,0,0);}
.m15_c00322{transform:matrix(0.295456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295456,0.000000,0.000000,0.250000,0,0);}
.m1f_c00322{transform:matrix(0.295477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295477,0.000000,0.000000,0.250000,0,0);}
.m51_c00322{transform:matrix(0.296362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296362,0.000000,0.000000,0.250000,0,0);}
.ma9_c00322{transform:matrix(0.296718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296718,0.000000,0.000000,0.250000,0,0);}
.mb3_c00322{transform:matrix(0.297131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297131,0.000000,0.000000,0.250000,0,0);}
.mc_c00322{transform:matrix(0.298437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298437,0.000000,0.000000,0.250000,0,0);}
.m44_c00322{transform:matrix(0.299636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299636,0.000000,0.000000,0.250000,0,0);}
.mec_c00322{transform:matrix(0.300047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300047,0.000000,0.000000,0.250000,0,0);}
.m12_c00322{transform:matrix(0.301848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301848,0.000000,0.000000,0.250000,0,0);}
.md1_c00322{transform:matrix(0.301914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301914,0.000000,0.000000,0.250000,0,0);}
.mb8_c00322{transform:matrix(0.302640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302640,0.000000,0.000000,0.250000,0,0);}
.m81_c00322{transform:matrix(0.303037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303037,0.000000,0.000000,0.250000,0,0);}
.ma1_c00322{transform:matrix(0.303223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303223,0.000000,0.000000,0.250000,0,0);}
.mca_c00322{transform:matrix(0.303454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303454,0.000000,0.000000,0.250000,0,0);}
.me2_c00322{transform:matrix(0.303867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303867,0.000000,0.000000,0.250000,0,0);}
.ma_c00322{transform:matrix(0.303987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303987,0.000000,0.000000,0.250000,0,0);}
.m10_c00322{transform:matrix(0.304530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304530,0.000000,0.000000,0.250000,0,0);}
.m21_c00322{transform:matrix(0.304863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304863,0.000000,0.000000,0.250000,0,0);}
.m23_c00322{transform:matrix(0.305001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305001,0.000000,0.000000,0.250000,0,0);}
.mb4_c00322{transform:matrix(0.305077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305077,0.000000,0.000000,0.250000,0,0);}
.m31_c00322{transform:matrix(0.305888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305888,0.000000,0.000000,0.250000,0,0);}
.m90_c00322{transform:matrix(0.305925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305925,0.000000,0.000000,0.250000,0,0);}
.me_c00322{transform:matrix(0.305967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305967,0.000000,0.000000,0.250000,0,0);}
.mc5_c00322{transform:matrix(0.306583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306583,0.000000,0.000000,0.250000,0,0);}
.m8b_c00322{transform:matrix(0.307589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307589,0.000000,0.000000,0.250000,0,0);}
.mc4_c00322{transform:matrix(0.308142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308142,0.000000,0.000000,0.250000,0,0);}
.mce_c00322{transform:matrix(0.308369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308369,0.000000,0.000000,0.250000,0,0);}
.m78_c00322{transform:matrix(0.308859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308859,0.000000,0.000000,0.250000,0,0);}
.m5b_c00322{transform:matrix(0.309053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309053,0.000000,0.000000,0.250000,0,0);}
.m35_c00322{transform:matrix(0.309686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309686,0.000000,0.000000,0.250000,0,0);}
.me8_c00322{transform:matrix(0.310706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310706,0.000000,0.000000,0.250000,0,0);}
.md9_c00322{transform:matrix(0.310954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310954,0.000000,0.000000,0.250000,0,0);}
.mee_c00322{transform:matrix(0.311356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311356,0.000000,0.000000,0.250000,0,0);}
.m28_c00322{transform:matrix(0.313148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313148,0.000000,0.000000,0.250000,0,0);}
.me3_c00322{transform:matrix(0.313968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313968,0.000000,0.000000,0.250000,0,0);}
.m97_c00322{transform:matrix(0.315168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315168,0.000000,0.000000,0.250000,0,0);}
.m39_c00322{transform:matrix(0.315181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315181,0.000000,0.000000,0.250000,0,0);}
.m9a_c00322{transform:matrix(0.315930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315930,0.000000,0.000000,0.250000,0,0);}
.m3d_c00322{transform:matrix(0.316861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316861,0.000000,0.000000,0.250000,0,0);}
.mdf_c00322{transform:matrix(0.317513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317513,0.000000,0.000000,0.250000,0,0);}
.m55_c00322{transform:matrix(0.318432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318432,0.000000,0.000000,0.250000,0,0);}
.m8e_c00322{transform:matrix(0.319516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319516,0.000000,0.000000,0.250000,0,0);}
.mfc_c00322{transform:matrix(0.319787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319787,0.000000,0.000000,0.250000,0,0);}
.m63_c00322{transform:matrix(0.320341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320341,0.000000,0.000000,0.250000,0,0);}
.mab_c00322{transform:matrix(0.320953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320953,0.000000,0.000000,0.250000,0,0);}
.m2b_c00322{transform:matrix(0.321924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321924,0.000000,0.000000,0.250000,0,0);}
.m1e_c00322{transform:matrix(0.322602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322602,0.000000,0.000000,0.250000,0,0);}
.m2c_c00322{transform:matrix(0.322774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322774,0.000000,0.000000,0.250000,0,0);}
.m1a_c00322{transform:matrix(0.323428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323428,0.000000,0.000000,0.250000,0,0);}
.mcc_c00322{transform:matrix(0.324896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324896,0.000000,0.000000,0.250000,0,0);}
.m32_c00322{transform:matrix(0.325953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325953,0.000000,0.000000,0.250000,0,0);}
.m9f_c00322{transform:matrix(0.327919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327919,0.000000,0.000000,0.250000,0,0);}
.m22_c00322{transform:matrix(0.328279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328279,0.000000,0.000000,0.250000,0,0);}
.m1b_c00322{transform:matrix(0.328642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328642,0.000000,0.000000,0.250000,0,0);}
.m41_c00322{transform:matrix(0.328644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328644,0.000000,0.000000,0.250000,0,0);}
.me0_c00322{transform:matrix(0.330103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330103,0.000000,0.000000,0.250000,0,0);}
.md8_c00322{transform:matrix(0.330932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330932,0.000000,0.000000,0.250000,0,0);}
.mda_c00322{transform:matrix(0.331035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331035,0.000000,0.000000,0.250000,0,0);}
.m9b_c00322{transform:matrix(0.331624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331624,0.000000,0.000000,0.250000,0,0);}
.meb_c00322{transform:matrix(0.332217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332217,0.000000,0.000000,0.250000,0,0);}
.m2a_c00322{transform:matrix(0.332242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332242,0.000000,0.000000,0.250000,0,0);}
.mf0_c00322{transform:matrix(0.333105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333105,0.000000,0.000000,0.250000,0,0);}
.m5a_c00322{transform:matrix(0.334473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334473,0.000000,0.000000,0.250000,0,0);}
.m2f_c00322{transform:matrix(0.335272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335272,0.000000,0.000000,0.250000,0,0);}
.mae_c00322{transform:matrix(0.335688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335688,0.000000,0.000000,0.250000,0,0);}
.m75_c00322{transform:matrix(0.336499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336499,0.000000,0.000000,0.250000,0,0);}
.m91_c00322{transform:matrix(0.337356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337356,0.000000,0.000000,0.250000,0,0);}
.m45_c00322{transform:matrix(0.337927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337927,0.000000,0.000000,0.250000,0,0);}
.mb6_c00322{transform:matrix(0.338071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338071,0.000000,0.000000,0.250000,0,0);}
.mc0_c00322{transform:matrix(0.338533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338533,0.000000,0.000000,0.250000,0,0);}
.m56_c00322{transform:matrix(0.338890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338890,0.000000,0.000000,0.250000,0,0);}
.m5f_c00322{transform:matrix(0.340380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340380,0.000000,0.000000,0.250000,0,0);}
.m50_c00322{transform:matrix(0.340596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340596,0.000000,0.000000,0.250000,0,0);}
.m92_c00322{transform:matrix(0.341332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341332,0.000000,0.000000,0.250000,0,0);}
.m8_c00322{transform:matrix(0.341434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341434,0.000000,0.000000,0.250000,0,0);}
.m1_c00322{transform:matrix(0.341525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341525,0.000000,0.000000,0.250000,0,0);}
.mad_c00322{transform:matrix(0.341565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341565,0.000000,0.000000,0.250000,0,0);}
.md5_c00322{transform:matrix(0.341734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341734,0.000000,0.000000,0.250000,0,0);}
.ma8_c00322{transform:matrix(0.341787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341787,0.000000,0.000000,0.250000,0,0);}
.mf4_c00322{transform:matrix(0.341935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341935,0.000000,0.000000,0.250000,0,0);}
.md4_c00322{transform:matrix(0.343654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343654,0.000000,0.000000,0.250000,0,0);}
.m48_c00322{transform:matrix(0.344285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344285,0.000000,0.000000,0.250000,0,0);}
.mc7_c00322{transform:matrix(0.345678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345678,0.000000,0.000000,0.250000,0,0);}
.mb5_c00322{transform:matrix(0.346682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346682,0.000000,0.000000,0.250000,0,0);}
.mb7_c00322{transform:matrix(0.347091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347091,0.000000,0.000000,0.250000,0,0);}
.m52_c00322{transform:matrix(0.347252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347252,0.000000,0.000000,0.250000,0,0);}
.mf_c00322{transform:matrix(0.348274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348274,0.000000,0.000000,0.250000,0,0);}
.mb_c00322{transform:matrix(0.349856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349856,0.000000,0.000000,0.250000,0,0);}
.m6_c00322{transform:matrix(0.352571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352571,0.000000,0.000000,0.250000,0,0);}
.m62_c00322{transform:matrix(0.352681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352681,0.000000,0.000000,0.250000,0,0);}
.mac_c00322{transform:matrix(0.353181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353181,0.000000,0.000000,0.250000,0,0);}
.mb0_c00322{transform:matrix(0.353628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353628,0.000000,0.000000,0.250000,0,0);}
.mb1_c00322{transform:matrix(0.354986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354986,0.000000,0.000000,0.250000,0,0);}
.m77_c00322{transform:matrix(0.355191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355191,0.000000,0.000000,0.250000,0,0);}
.med_c00322{transform:matrix(0.355331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355331,0.000000,0.000000,0.250000,0,0);}
.mba_c00322{transform:matrix(0.355334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355334,0.000000,0.000000,0.250000,0,0);}
.m99_c00322{transform:matrix(0.356154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356154,0.000000,0.000000,0.250000,0,0);}
.mc6_c00322{transform:matrix(0.356885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356885,0.000000,0.000000,0.250000,0,0);}
.m84_c00322{transform:matrix(0.357653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357653,0.000000,0.000000,0.250000,0,0);}
.md6_c00322{transform:matrix(0.358895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358895,0.000000,0.000000,0.250000,0,0);}
.mcf_c00322{transform:matrix(0.359201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359201,0.000000,0.000000,0.250000,0,0);}
.mf1_c00322{transform:matrix(0.363728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363728,0.000000,0.000000,0.250000,0,0);}
.md2_c00322{transform:matrix(0.364622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364622,0.000000,0.000000,0.250000,0,0);}
.m9c_c00322{transform:matrix(0.364673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364673,0.000000,0.000000,0.250000,0,0);}
.mc1_c00322{transform:matrix(0.365848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365848,0.000000,0.000000,0.250000,0,0);}
.mbe_c00322{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);}
.mdd_c00322{transform:matrix(0.373337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373337,0.000000,0.000000,0.250000,0,0);}
.mbd_c00322{transform:matrix(0.374575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374575,0.000000,0.000000,0.250000,0,0);}
.ma0_c00322{transform:matrix(0.374826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374826,0.000000,0.000000,0.250000,0,0);}
.me6_c00322{transform:matrix(0.378654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378654,0.000000,0.000000,0.250000,0,0);}
.m8c_c00322{transform:matrix(0.378869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378869,0.000000,0.000000,0.250000,0,0);}
.mdb_c00322{transform:matrix(0.379829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379829,0.000000,0.000000,0.250000,0,0);}
.m5c_c00322{transform:matrix(0.379886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379886,0.000000,0.000000,0.250000,0,0);}
.mc2_c00322{transform:matrix(0.380017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380017,0.000000,0.000000,0.250000,0,0);}
.m4a_c00322{transform:matrix(0.383846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383846,0.000000,0.000000,0.250000,0,0);}
.mbb_c00322{transform:matrix(0.386379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386379,0.000000,0.000000,0.250000,0,0);}
.mb2_c00322{transform:matrix(0.387571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387571,0.000000,0.000000,0.250000,0,0);}
.m5e_c00322{transform:matrix(0.393041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393041,0.000000,0.000000,0.250000,0,0);}
.m2e_c00322{transform:matrix(0.395076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395076,0.000000,0.000000,0.250000,0,0);}
.m25_c00322{transform:matrix(0.397261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397261,0.000000,0.000000,0.250000,0,0);}
.mc3_c00322{transform:matrix(0.399724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399724,0.000000,0.000000,0.250000,0,0);}
.m4f_c00322{transform:matrix(0.403943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403943,0.000000,0.000000,0.250000,0,0);}
.mc8_c00322{transform:matrix(0.404236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404236,0.000000,0.000000,0.250000,0,0);}
.m57_c00322{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);}
.m24_c00322{transform:matrix(0.419186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419186,0.000000,0.000000,0.250000,0,0);}
.m79_c00322{transform:matrix(0.423624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423624,0.000000,0.000000,0.250000,0,0);}
.m6b_c00322{transform:matrix(0.424108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424108,0.000000,0.000000,0.250000,0,0);}
.m3a_c00322{transform:matrix(0.451072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451072,0.000000,0.000000,0.250000,0,0);}
.mde_c00322{transform:matrix(0.458717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458717,0.000000,0.000000,0.250000,0,0);}
.m17_c00322{transform:matrix(0.467986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467986,0.000000,0.000000,0.250000,0,0);}
.ma7_c00322{transform:matrix(0.478145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478145,0.000000,0.000000,0.250000,0,0);}
.m8f_c00322{transform:matrix(0.478240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478240,0.000000,0.000000,0.250000,0,0);}
.me7_c00322{transform:matrix(0.478973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478973,0.000000,0.000000,0.250000,0,0);}
.m66_c00322{transform:matrix(0.869593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.869593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.869593,0.000000,0.000000,0.250000,0,0);}
.v0_c00322{vertical-align:0.000000px;}
.v1_c00322{vertical-align:17.107200px;}
.ls9_c00322{letter-spacing:-2.480940px;}
.ls1d_c00322{letter-spacing:-2.381702px;}
.ls14_c00322{letter-spacing:-2.321550px;}
.lsc_c00322{letter-spacing:-2.134440px;}
.ls1b_c00322{letter-spacing:-1.843380px;}
.ls17_c00322{letter-spacing:-1.171170px;}
.ls13_c00322{letter-spacing:-0.623779px;}
.ls19_c00322{letter-spacing:-0.513216px;}
.lsa_c00322{letter-spacing:-0.297713px;}
.ls5_c00322{letter-spacing:0.000000px;}
.ls4_c00322{letter-spacing:0.049619px;}
.ls2_c00322{letter-spacing:0.567072px;}
.lsf_c00322{letter-spacing:0.800989px;}
.ls16_c00322{letter-spacing:1.673100px;}
.ls8_c00322{letter-spacing:1.715393px;}
.ls15_c00322{letter-spacing:1.989900px;}
.ls1a_c00322{letter-spacing:2.633400px;}
.lsb_c00322{letter-spacing:3.049200px;}
.ls1c_c00322{letter-spacing:3.128400px;}
.lsd_c00322{letter-spacing:3.227400px;}
.ls3_c00322{letter-spacing:3.345725px;}
.ls12_c00322{letter-spacing:3.494700px;}
.ls7_c00322{letter-spacing:3.544200px;}
.ls10_c00322{letter-spacing:3.564000px;}
.ls6_c00322{letter-spacing:3.583810px;}
.ls0_c00322{letter-spacing:15.463800px;}
.ls1_c00322{letter-spacing:25.898400px;}
.ls18_c00322{letter-spacing:39.916800px;}
.lse_c00322{letter-spacing:49.896198px;}
.ls11_c00322{letter-spacing:55.598598px;}
.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;}
}
.ws5_c00322{word-spacing:-18.521989px;}
.ws1_c00322{word-spacing:-17.721000px;}
.ws9_c00322{word-spacing:-3.898620px;}
.ws4_c00322{word-spacing:-2.190316px;}
.ws3_c00322{word-spacing:0.000000px;}
.ws0_c00322{word-spacing:2.977128px;}
.ws7_c00322{word-spacing:4.394808px;}
.ws2_c00322{word-spacing:7.158888px;}
.ws8_c00322{word-spacing:7.797240px;}
.wsa_c00322{word-spacing:9.427572px;}
.ws6_c00322{word-spacing:45.428328px;}
._4_c00322{margin-left:-33.173712px;}
._19_c00322{margin-left:-11.873070px;}
._6_c00322{margin-left:-8.713901px;}
._16_c00322{margin-left:-7.229772px;}
._b_c00322{margin-left:-5.741604px;}
._7_c00322{margin-left:-2.761704px;}
._11_c00322{width:2.624292px;}
._22_c00322{width:3.756060px;}
._15_c00322{width:4.820112px;}
._10_c00322{width:6.305112px;}
._d_c00322{width:7.912080px;}
._20_c00322{width:9.073152px;}
._8_c00322{width:10.135620px;}
._3_c00322{width:12.121164px;}
._13_c00322{width:14.308272px;}
._26_c00322{width:15.410340px;}
._1c_c00322{width:16.914150px;}
._c_c00322{width:19.350540px;}
._12_c00322{width:22.895928px;}
._5_c00322{width:24.384888px;}
._1f_c00322{width:27.220248px;}
._24_c00322{width:28.353600px;}
._f_c00322{width:29.482200px;}
._1e_c00322{width:32.201928px;}
._2_c00322{width:33.628716px;}
._a_c00322{width:34.889839px;}
._1_c00322{width:36.363492px;}
._9_c00322{width:38.259540px;}
._e_c00322{width:39.560400px;}
._0_c00322{width:40.658904px;}
._21_c00322{width:42.104304px;}
._14_c00322{width:43.171128px;}
._18_c00322{width:47.628504px;}
._25_c00322{width:50.823828px;}
._23_c00322{width:52.268436px;}
._17_c00322{width:68.010514px;}
._1a_c00322{width:117.961470px;}
._1b_c00322{width:218.358360px;}
._1d_c00322{width:371.111400px;}
.fc0_c00322{color:transparent;}
.fs2_c00322{font-size:13.464198px;}
.fsa_c00322{font-size:22.176000px;}
.fs0_c00322{font-size:27.720000px;}
.fs1b_c00322{font-size:28.314000px;}
.fs11_c00322{font-size:33.264000px;}
.fs15_c00322{font-size:33.462000px;}
.fs12_c00322{font-size:34.056198px;}
.fse_c00322{font-size:36.630000px;}
.fs1_c00322{font-size:38.808000px;}
.fs6_c00322{font-size:39.600000px;}
.fs14_c00322{font-size:39.798000px;}
.fs16_c00322{font-size:39.916800px;}
.fs17_c00322{font-size:47.520000px;}
.fsc_c00322{font-size:49.896198px;}
.fs19_c00322{font-size:52.668000px;}
.fsf_c00322{font-size:55.598598px;}
.fs5_c00322{font-size:60.984000px;}
.fs1a_c00322{font-size:62.568000px;}
.fs7_c00322{font-size:64.548000px;}
.fs13_c00322{font-size:66.330000px;}
.fs18_c00322{font-size:69.696198px;}
.fs10_c00322{font-size:69.894000px;}
.fs4_c00322{font-size:70.884000px;}
.fs9_c00322{font-size:71.280000px;}
.fs3_c00322{font-size:71.676198px;}
.fsb_c00322{font-size:73.260000px;}
.fs8_c00322{font-size:74.052198px;}
.fsd_c00322{font-size:76.032198px;}
.y0_c00322{bottom:0.000000px;}
.y1_c00322{bottom:76.500000px;}
.y28_c00322{bottom:94.357935px;}
.y27_c00322{bottom:108.257535px;}
.y26_c00322{bottom:147.461535px;}
.y25_c00322{bottom:177.399135px;}
.y24_c00322{bottom:211.613535px;}
.y23_c00322{bottom:244.402335px;}
.y22_c00322{bottom:276.834735px;}
.y21_c00322{bottom:342.055935px;}
.y20_c00322{bottom:374.131935px;}
.y1f_c00322{bottom:406.559385px;}
.y1e_c00322{bottom:438.640335px;}
.y1d_c00322{bottom:471.067785px;}
.y1c_c00322{bottom:487.462185px;}
.y1b_c00322{bottom:491.026185px;}
.y1a_c00322{bottom:504.212985px;}
.y19_c00322{bottom:537.363135px;}
.y18_c00322{bottom:571.928985px;}
.y16_c00322{bottom:604.009935px;}
.y17_c00322{bottom:610.776585px;}
.y15_c00322{bottom:636.080985px;}
.y14_c00322{bottom:636.442335px;}
.y13_c00322{bottom:646.772985px;}
.y12_c00322{bottom:668.161935px;}
.y11_c00322{bottom:720.904185px;}
.y10_c00322{bottom:732.665385px;}
.yf_c00322{bottom:764.746335px;}
.ye_c00322{bottom:796.109535px;}
.yd_c00322{bottom:796.822335px;}
.ya_c00322{bottom:810.004185px;}
.yc_c00322{bottom:828.893385px;}
.y9_c00322{bottom:829.249785px;}
.yb_c00322{bottom:848.138985px;}
.y8_c00322{bottom:861.682185px;}
.y2_c00322{bottom:870.240735px;}
.y7_c00322{bottom:879.858585px;}
.y6_c00322{bottom:894.470985px;}
.y5_c00322{bottom:926.903385px;}
.y4_c00322{bottom:1081.229535px;}
.y3_c00322{bottom:1109.380185px;}
.hb_c00322{height:23.128875px;}
.h16_c00322{height:26.584589px;}
.h2_c00322{height:28.911094px;}
.h1a_c00322{height:29.530617px;}
.hd_c00322{height:33.230868px;}
.h11_c00322{height:34.693313px;}
.h15_c00322{height:34.899820px;}
.h12_c00322{height:35.519550px;}
.hf_c00322{height:37.028666px;}
.h14_c00322{height:39.059561px;}
.h3_c00322{height:40.475531px;}
.h7_c00322{height:41.301563px;}
.h18_c00322{height:54.931078px;}
.h19_c00322{height:61.376520px;}
.h6_c00322{height:63.604406px;}
.h8_c00322{height:67.321547px;}
.h17_c00322{height:68.403007px;}
.h10_c00322{height:68.563011px;}
.h13_c00322{height:69.180117px;}
.h5_c00322{height:69.568770px;}
.ha_c00322{height:69.957422px;}
.h4_c00322{height:70.346269px;}
.h9_c00322{height:72.678183px;}
.he_c00322{height:74.621444px;}
.hc_c00322{height:76.407891px;}
.h1_c00322{height:1110.000000px;}
.h0_c00322{height:1263.000000px;}
.w1_c00322{width:763.500000px;}
.w0_c00322{width:892.500000px;}
.x0_c00322{left:0.000000px;}
.x2_c00322{left:58.920885px;}
.x1_c00322{left:64.500000px;}
.x3e_c00322{left:103.178835px;}
.x6e_c00322{left:104.455935px;}
.x6_c00322{left:105.663735px;}
.x42_c00322{left:115.286535px;}
.x26_c00322{left:116.850735px;}
.x4d_c00322{left:126.354735px;}
.x43_c00322{left:130.156335px;}
.x89_c00322{left:136.274535px;}
.x44_c00322{left:137.304135px;}
.x7_c00322{left:138.318885px;}
.x5b_c00322{left:147.243735px;}
.x92_c00322{left:148.491135px;}
.x15_c00322{left:149.684085px;}
.x54_c00322{left:158.361435px;}
.x3f_c00322{left:159.989985px;}
.x25_c00322{left:161.786835px;}
.x84_c00322{left:164.727135px;}
.x7a_c00322{left:169.335585px;}
.x2e_c00322{left:170.766135px;}
.x27_c00322{left:171.879885px;}
.x74_c00322{left:180.443385px;}
.x16_c00322{left:182.156085px;}
.x4e_c00322{left:183.829185px;}
.x45_c00322{left:192.234285px;}
.x17_c00322{left:193.852935px;}
.x6f_c00322{left:197.540685px;}
.x4f_c00322{left:202.614435px;}
.x70_c00322{left:212.950035px;}
.x8d_c00322{left:214.365735px;}
.x8_c00322{left:215.657685px;}
.x46_c00322{left:220.805685px;}
.x5c_c00322{left:225.617085px;}
.x55_c00322{left:236.685285px;}
.x47_c00322{left:244.709235px;}
.x69_c00322{left:247.530735px;}
.x28_c00322{left:249.124635px;}
.x7f_c00322{left:250.807635px;}
.x7b_c00322{left:252.708435px;}
.x2f_c00322{left:258.237585px;}
.x5d_c00322{left:268.231635px;}
.x87_c00322{left:269.582985px;}
.x80_c00322{left:272.587635px;}
.x30_c00322{left:277.577235px;}
.x88_c00322{left:279.636435px;}
.x31_c00322{left:281.289735px;}
.x7c_c00322{left:283.279635px;}
.x75_c00322{left:290.684835px;}
.x18_c00322{left:292.357935px;}
.x29_c00322{left:303.089535px;}
.x8e_c00322{left:313.103385px;}
.x5f_c00322{left:314.415135px;}
.x9_c00322{left:315.444735px;}
.x60_c00322{left:321.864885px;}
.x2a_c00322{left:324.503235px;}
.x6a_c00322{left:325.998135px;}
.x50_c00322{left:327.829635px;}
.x61_c00322{left:329.482935px;}
.x32_c00322{left:335.185335px;}
.x19_c00322{left:336.487185px;}
.x51_c00322{left:346.649535px;}
.x8f_c00322{left:347.882085px;}
.x8a_c00322{left:350.282835px;}
.x1a_c00322{left:358.984935px;}
.x52_c00322{left:361.969785px;}
.x48_c00322{left:369.102735px;}
.x1b_c00322{left:370.191735px;}
.x94_c00322{left:371.419335px;}
.xa_c00322{left:380.755035px;}
.x93_c00322{left:381.928185px;}
.x76_c00322{left:390.833235px;}
.xb_c00322{left:392.699385px;}
.x1c_c00322{left:401.881635px;}
.x56_c00322{left:403.421085px;}
.x85_c00322{left:412.954785px;}
.x2b_c00322{left:414.152685px;}
.x7d_c00322{left:423.879435px;}
.x1d_c00322{left:425.220885px;}
.x63_c00322{left:426.839535px;}
.x64_c00322{left:435.388185px;}
.x81_c00322{left:436.620735px;}
.x2c_c00322{left:438.313635px;}
.x65_c00322{left:444.298185px;}
.x1e_c00322{left:446.406885px;}
.x49_c00322{left:447.510735px;}
.xc_c00322{left:457.509735px;}
.x82_c00322{left:470.043135px;}
.x6b_c00322{left:479.586735px;}
.x2d_c00322{left:480.596535px;}
.xd_c00322{left:492.154785px;}
.x73_c00322{left:494.466435px;}
.xe_c00322{left:502.322085px;}
.x90_c00322{left:507.588885px;}
.x72_c00322{left:510.702435px;}
.x5e_c00322{left:512.330985px;}
.x33_c00322{left:513.657585px;}
.x1f_c00322{left:515.706885px;}
.x34_c00322{left:524.963385px;}
.x53_c00322{left:533.269485px;}
.xf_c00322{left:535.437585px;}
.x77_c00322{left:536.704785px;}
.x20_c00322{left:539.318385px;}
.x10_c00322{left:545.510835px;}
.x35_c00322{left:546.753285px;}
.x6c_c00322{left:548.010585px;}
.x62_c00322{left:552.114135px;}
.x83_c00322{left:557.588835px;}
.x36_c00322{left:560.044035px;}
.x78_c00322{left:567.251235px;}
.x21_c00322{left:568.473885px;}
.x8b_c00322{left:569.503485px;}
.x57_c00322{left:578.621385px;}
.x11_c00322{left:579.933135px;}
.x91_c00322{left:581.566635px;}
.x86_c00322{left:590.565735px;}
.x22_c00322{left:591.758685px;}
.x37_c00322{left:601.059735px;}
.x66_c00322{left:602.148735px;}
.x23_c00322{left:607.375935px;}
.x12_c00322{left:611.543835px;}
.x71_c00322{left:612.613035px;}
.x24_c00322{left:613.711935px;}
.x4a_c00322{left:624.775185px;}
.x79_c00322{left:627.235335px;}
.x3c_c00322{left:635.130585px;}
.x58_c00322{left:646.174035px;}
.x4b_c00322{left:647.213535px;}
.x67_c00322{left:656.737335px;}
.x38_c00322{left:657.806535px;}
.x13_c00322{left:668.642085px;}
.x4_c00322{left:679.937985px;}
.x68_c00322{left:681.284385px;}
.x5a_c00322{left:682.521885px;}
.x14_c00322{left:689.105385px;}
.x6d_c00322{left:691.288335px;}
.x8c_c00322{left:700.465635px;}
.x39_c00322{left:701.510085px;}
.x5_c00322{left:702.564435px;}
.x7e_c00322{left:704.668185px;}
.x3a_c00322{left:711.568485px;}
.x3d_c00322{left:712.766385px;}
.x3_c00322{left:715.280985px;}
.x3b_c00322{left:716.325435px;}
.x4c_c00322{left:723.869235px;}
.x59_c00322{left:734.551335px;}
.x40_c00322{left:735.645285px;}
.x41_c00322{left:745.461135px;}
@media print{
.v0_c00322{vertical-align:0.000000pt;}
.v1_c00322{vertical-align:15.206400pt;}
.ls9_c00322{letter-spacing:-2.205280pt;}
.ls1d_c00322{letter-spacing:-2.117069pt;}
.ls14_c00322{letter-spacing:-2.063600pt;}
.lsc_c00322{letter-spacing:-1.897280pt;}
.ls1b_c00322{letter-spacing:-1.638560pt;}
.ls17_c00322{letter-spacing:-1.041040pt;}
.ls13_c00322{letter-spacing:-0.554470pt;}
.ls19_c00322{letter-spacing:-0.456192pt;}
.lsa_c00322{letter-spacing:-0.264634pt;}
.ls5_c00322{letter-spacing:0.000000pt;}
.ls4_c00322{letter-spacing:0.044106pt;}
.ls2_c00322{letter-spacing:0.504064pt;}
.lsf_c00322{letter-spacing:0.711990pt;}
.ls16_c00322{letter-spacing:1.487200pt;}
.ls8_c00322{letter-spacing:1.524794pt;}
.ls15_c00322{letter-spacing:1.768800pt;}
.ls1a_c00322{letter-spacing:2.340800pt;}
.lsb_c00322{letter-spacing:2.710400pt;}
.ls1c_c00322{letter-spacing:2.780800pt;}
.lsd_c00322{letter-spacing:2.868800pt;}
.ls3_c00322{letter-spacing:2.973978pt;}
.ls12_c00322{letter-spacing:3.106400pt;}
.ls7_c00322{letter-spacing:3.150400pt;}
.ls10_c00322{letter-spacing:3.168000pt;}
.ls6_c00322{letter-spacing:3.185609pt;}
.ls0_c00322{letter-spacing:13.745600pt;}
.ls1_c00322{letter-spacing:23.020800pt;}
.ls18_c00322{letter-spacing:35.481600pt;}
.lse_c00322{letter-spacing:44.352176pt;}
.ls11_c00322{letter-spacing:49.420976pt;}
.ws5_c00322{word-spacing:-16.463990pt;}
.ws1_c00322{word-spacing:-15.752000pt;}
.ws9_c00322{word-spacing:-3.465440pt;}
.ws4_c00322{word-spacing:-1.946947pt;}
.ws3_c00322{word-spacing:0.000000pt;}
.ws0_c00322{word-spacing:2.646336pt;}
.ws7_c00322{word-spacing:3.906496pt;}
.ws2_c00322{word-spacing:6.363456pt;}
.ws8_c00322{word-spacing:6.930880pt;}
.wsa_c00322{word-spacing:8.380064pt;}
.ws6_c00322{word-spacing:40.380736pt;}
._4_c00322{margin-left:-29.487744pt;}
._19_c00322{margin-left:-10.553840pt;}
._6_c00322{margin-left:-7.745690pt;}
._16_c00322{margin-left:-6.426464pt;}
._b_c00322{margin-left:-5.103648pt;}
._7_c00322{margin-left:-2.454848pt;}
._11_c00322{width:2.332704pt;}
._22_c00322{width:3.338720pt;}
._15_c00322{width:4.284544pt;}
._10_c00322{width:5.604544pt;}
._d_c00322{width:7.032960pt;}
._20_c00322{width:8.065024pt;}
._8_c00322{width:9.009440pt;}
._3_c00322{width:10.774368pt;}
._13_c00322{width:12.718464pt;}
._26_c00322{width:13.698080pt;}
._1c_c00322{width:15.034800pt;}
._c_c00322{width:17.200480pt;}
._12_c00322{width:20.351936pt;}
._5_c00322{width:21.675456pt;}
._1f_c00322{width:24.195776pt;}
._24_c00322{width:25.203200pt;}
._f_c00322{width:26.206400pt;}
._1e_c00322{width:28.623936pt;}
._2_c00322{width:29.892192pt;}
._a_c00322{width:31.013190pt;}
._1_c00322{width:32.323104pt;}
._9_c00322{width:34.008480pt;}
._e_c00322{width:35.164800pt;}
._0_c00322{width:36.141248pt;}
._21_c00322{width:37.426048pt;}
._14_c00322{width:38.374336pt;}
._18_c00322{width:42.336448pt;}
._25_c00322{width:45.176736pt;}
._23_c00322{width:46.460832pt;}
._17_c00322{width:60.453790pt;}
._1a_c00322{width:104.854640pt;}
._1b_c00322{width:194.096320pt;}
._1d_c00322{width:329.876800pt;}
.fs2_c00322{font-size:11.968176pt;}
.fsa_c00322{font-size:19.712000pt;}
.fs0_c00322{font-size:24.640000pt;}
.fs1b_c00322{font-size:25.168000pt;}
.fs11_c00322{font-size:29.568000pt;}
.fs15_c00322{font-size:29.744000pt;}
.fs12_c00322{font-size:30.272176pt;}
.fse_c00322{font-size:32.560000pt;}
.fs1_c00322{font-size:34.496000pt;}
.fs6_c00322{font-size:35.200000pt;}
.fs14_c00322{font-size:35.376000pt;}
.fs16_c00322{font-size:35.481600pt;}
.fs17_c00322{font-size:42.240000pt;}
.fsc_c00322{font-size:44.352176pt;}
.fs19_c00322{font-size:46.816000pt;}
.fsf_c00322{font-size:49.420976pt;}
.fs5_c00322{font-size:54.208000pt;}
.fs1a_c00322{font-size:55.616000pt;}
.fs7_c00322{font-size:57.376000pt;}
.fs13_c00322{font-size:58.960000pt;}
.fs18_c00322{font-size:61.952176pt;}
.fs10_c00322{font-size:62.128000pt;}
.fs4_c00322{font-size:63.008000pt;}
.fs9_c00322{font-size:63.360000pt;}
.fs3_c00322{font-size:63.712176pt;}
.fsb_c00322{font-size:65.120000pt;}
.fs8_c00322{font-size:65.824176pt;}
.fsd_c00322{font-size:67.584176pt;}
.y0_c00322{bottom:0.000000pt;}
.y1_c00322{bottom:68.000000pt;}
.y28_c00322{bottom:83.873720pt;}
.y27_c00322{bottom:96.228920pt;}
.y26_c00322{bottom:131.076920pt;}
.y25_c00322{bottom:157.688120pt;}
.y24_c00322{bottom:188.100920pt;}
.y23_c00322{bottom:217.246520pt;}
.y22_c00322{bottom:246.075320pt;}
.y21_c00322{bottom:304.049720pt;}
.y20_c00322{bottom:332.561720pt;}
.y1f_c00322{bottom:361.386120pt;}
.y1e_c00322{bottom:389.902520pt;}
.y1d_c00322{bottom:418.726920pt;}
.y1c_c00322{bottom:433.299720pt;}
.y1b_c00322{bottom:436.467720pt;}
.y1a_c00322{bottom:448.189320pt;}
.y19_c00322{bottom:477.656120pt;}
.y18_c00322{bottom:508.381320pt;}
.y16_c00322{bottom:536.897720pt;}
.y17_c00322{bottom:542.912520pt;}
.y15_c00322{bottom:565.405320pt;}
.y14_c00322{bottom:565.726520pt;}
.y13_c00322{bottom:574.909320pt;}
.y12_c00322{bottom:593.921720pt;}
.y11_c00322{bottom:640.803720pt;}
.y10_c00322{bottom:651.258120pt;}
.yf_c00322{bottom:679.774520pt;}
.ye_c00322{bottom:707.652920pt;}
.yd_c00322{bottom:708.286520pt;}
.ya_c00322{bottom:720.003720pt;}
.yc_c00322{bottom:736.794120pt;}
.y9_c00322{bottom:737.110920pt;}
.yb_c00322{bottom:753.901320pt;}
.y8_c00322{bottom:765.939720pt;}
.y2_c00322{bottom:773.547320pt;}
.y7_c00322{bottom:782.096520pt;}
.y6_c00322{bottom:795.085320pt;}
.y5_c00322{bottom:823.914120pt;}
.y4_c00322{bottom:961.092920pt;}
.y3_c00322{bottom:986.115720pt;}
.hb_c00322{height:20.559000pt;}
.h16_c00322{height:23.630746pt;}
.h2_c00322{height:25.698750pt;}
.h1a_c00322{height:26.249438pt;}
.hd_c00322{height:29.538549pt;}
.h11_c00322{height:30.838500pt;}
.h15_c00322{height:31.022063pt;}
.h12_c00322{height:31.572934pt;}
.hf_c00322{height:32.914370pt;}
.h14_c00322{height:34.719609pt;}
.h3_c00322{height:35.978250pt;}
.h7_c00322{height:36.712500pt;}
.h18_c00322{height:48.827625pt;}
.h19_c00322{height:54.556906pt;}
.h6_c00322{height:56.537250pt;}
.h8_c00322{height:59.841375pt;}
.h17_c00322{height:60.802673pt;}
.h10_c00322{height:60.944898pt;}
.h13_c00322{height:61.493438pt;}
.h5_c00322{height:61.838906pt;}
.ha_c00322{height:62.184375pt;}
.h4_c00322{height:62.530016pt;}
.h9_c00322{height:64.602829pt;}
.he_c00322{height:66.330173pt;}
.hc_c00322{height:67.918125pt;}
.h1_c00322{height:986.666667pt;}
.h0_c00322{height:1122.666667pt;}
.w1_c00322{width:678.666667pt;}
.w0_c00322{width:793.333333pt;}
.x0_c00322{left:0.000000pt;}
.x2_c00322{left:52.374120pt;}
.x1_c00322{left:57.333333pt;}
.x3e_c00322{left:91.714520pt;}
.x6e_c00322{left:92.849720pt;}
.x6_c00322{left:93.923320pt;}
.x42_c00322{left:102.476920pt;}
.x26_c00322{left:103.867320pt;}
.x4d_c00322{left:112.315320pt;}
.x43_c00322{left:115.694520pt;}
.x89_c00322{left:121.132920pt;}
.x44_c00322{left:122.048120pt;}
.x7_c00322{left:122.950120pt;}
.x5b_c00322{left:130.883320pt;}
.x92_c00322{left:131.992120pt;}
.x15_c00322{left:133.052520pt;}
.x54_c00322{left:140.765720pt;}
.x3f_c00322{left:142.213320pt;}
.x25_c00322{left:143.810520pt;}
.x84_c00322{left:146.424120pt;}
.x7a_c00322{left:150.520520pt;}
.x2e_c00322{left:151.792120pt;}
.x27_c00322{left:152.782120pt;}
.x74_c00322{left:160.394120pt;}
.x16_c00322{left:161.916520pt;}
.x4e_c00322{left:163.403720pt;}
.x45_c00322{left:170.874920pt;}
.x17_c00322{left:172.313720pt;}
.x6f_c00322{left:175.591720pt;}
.x4f_c00322{left:180.101720pt;}
.x70_c00322{left:189.288920pt;}
.x8d_c00322{left:190.547320pt;}
.x8_c00322{left:191.695720pt;}
.x46_c00322{left:196.271720pt;}
.x5c_c00322{left:200.548520pt;}
.x55_c00322{left:210.386920pt;}
.x47_c00322{left:217.519320pt;}
.x69_c00322{left:220.027320pt;}
.x28_c00322{left:221.444120pt;}
.x7f_c00322{left:222.940120pt;}
.x7b_c00322{left:224.629720pt;}
.x2f_c00322{left:229.544520pt;}
.x5d_c00322{left:238.428120pt;}
.x87_c00322{left:239.629320pt;}
.x80_c00322{left:242.300120pt;}
.x30_c00322{left:246.735320pt;}
.x88_c00322{left:248.565720pt;}
.x31_c00322{left:250.035320pt;}
.x7c_c00322{left:251.804120pt;}
.x75_c00322{left:258.386520pt;}
.x18_c00322{left:259.873720pt;}
.x29_c00322{left:269.412920pt;}
.x8e_c00322{left:278.314120pt;}
.x5f_c00322{left:279.480120pt;}
.x9_c00322{left:280.395320pt;}
.x60_c00322{left:286.102120pt;}
.x2a_c00322{left:288.447320pt;}
.x6a_c00322{left:289.776120pt;}
.x50_c00322{left:291.404120pt;}
.x61_c00322{left:292.873720pt;}
.x32_c00322{left:297.942520pt;}
.x19_c00322{left:299.099720pt;}
.x51_c00322{left:308.132920pt;}
.x8f_c00322{left:309.228520pt;}
.x8a_c00322{left:311.362520pt;}
.x1a_c00322{left:319.097720pt;}
.x52_c00322{left:321.750920pt;}
.x48_c00322{left:328.091320pt;}
.x1b_c00322{left:329.059320pt;}
.x94_c00322{left:330.150520pt;}
.xa_c00322{left:338.448920pt;}
.x93_c00322{left:339.491720pt;}
.x76_c00322{left:347.407320pt;}
.xb_c00322{left:349.066120pt;}
.x1c_c00322{left:357.228120pt;}
.x56_c00322{left:358.596520pt;}
.x85_c00322{left:367.070920pt;}
.x2b_c00322{left:368.135720pt;}
.x7d_c00322{left:376.781720pt;}
.x1d_c00322{left:377.974120pt;}
.x63_c00322{left:379.412920pt;}
.x64_c00322{left:387.011720pt;}
.x81_c00322{left:388.107320pt;}
.x2c_c00322{left:389.612120pt;}
.x65_c00322{left:394.931720pt;}
.x1e_c00322{left:396.806120pt;}
.x49_c00322{left:397.787320pt;}
.xc_c00322{left:406.675320pt;}
.x82_c00322{left:417.816120pt;}
.x6b_c00322{left:426.299320pt;}
.x2d_c00322{left:427.196920pt;}
.xd_c00322{left:437.470920pt;}
.x73_c00322{left:439.525720pt;}
.xe_c00322{left:446.508520pt;}
.x90_c00322{left:451.190120pt;}
.x72_c00322{left:453.957720pt;}
.x5e_c00322{left:455.405320pt;}
.x33_c00322{left:456.584520pt;}
.x1f_c00322{left:458.406120pt;}
.x34_c00322{left:466.634120pt;}
.x53_c00322{left:474.017320pt;}
.xf_c00322{left:475.944520pt;}
.x77_c00322{left:477.070920pt;}
.x20_c00322{left:479.394120pt;}
.x10_c00322{left:484.898520pt;}
.x35_c00322{left:486.002920pt;}
.x6c_c00322{left:487.120520pt;}
.x62_c00322{left:490.768120pt;}
.x83_c00322{left:495.634520pt;}
.x36_c00322{left:497.816920pt;}
.x78_c00322{left:504.223320pt;}
.x21_c00322{left:505.310120pt;}
.x8b_c00322{left:506.225320pt;}
.x57_c00322{left:514.330120pt;}
.x11_c00322{left:515.496120pt;}
.x91_c00322{left:516.948120pt;}
.x86_c00322{left:524.947320pt;}
.x22_c00322{left:526.007720pt;}
.x37_c00322{left:534.275320pt;}
.x66_c00322{left:535.243320pt;}
.x23_c00322{left:539.889720pt;}
.x12_c00322{left:543.594520pt;}
.x71_c00322{left:544.544920pt;}
.x24_c00322{left:545.521720pt;}
.x4a_c00322{left:555.355720pt;}
.x79_c00322{left:557.542520pt;}
.x3c_c00322{left:564.560520pt;}
.x58_c00322{left:574.376920pt;}
.x4b_c00322{left:575.300920pt;}
.x67_c00322{left:583.766520pt;}
.x38_c00322{left:584.716920pt;}
.x13_c00322{left:594.348520pt;}
.x4_c00322{left:604.389320pt;}
.x68_c00322{left:605.586120pt;}
.x5a_c00322{left:606.686120pt;}
.x14_c00322{left:612.538120pt;}
.x6d_c00322{left:614.478520pt;}
.x8c_c00322{left:622.636120pt;}
.x39_c00322{left:623.564520pt;}
.x5_c00322{left:624.501720pt;}
.x7e_c00322{left:626.371720pt;}
.x3a_c00322{left:632.505320pt;}
.x3d_c00322{left:633.570120pt;}
.x3_c00322{left:635.805320pt;}
.x3b_c00322{left:636.733720pt;}
.x4c_c00322{left:643.439320pt;}
.x59_c00322{left:652.934520pt;}
.x40_c00322{left:653.906920pt;}
.x41_c00322{left:662.632120pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0bdd78b5cb2f1d12df8a4fc2.woff2')format("woff");}.ff1_c00323{font-family:ff1_c00323;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00323;src:url('chunks/assets/font_a03c063e43f46dff0f746dc8.woff2')format("woff");}.ff2_c00323{font-family:ff2_c00323;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00323;src:url('chunks/assets/font_d9e537dd0fc8e214836a5730.woff2')format("woff");}.ff3_c00323{font-family:ff3_c00323;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00323;src:url('chunks/assets/font_a050a41af3441032fc35a846.woff2')format("woff");}.ff4_c00323{font-family:ff4_c00323;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00323;src:url('chunks/assets/font_16f89a25a877497b9de78a23.woff2')format("woff");}.ff5_c00323{font-family:ff5_c00323;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00323;src:url('chunks/assets/font_e7503df86a7aa6ecc943554a.woff2')format("woff");}.ff6_c00323{font-family:ff6_c00323;line-height:1.372070;font-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_c00323{transform:matrix(0.041668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.041668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.041668,0.000000,0.000000,0.250000,0,0);}
.m5f_c00323{transform:matrix(0.064286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064286,0.000000,0.000000,0.250000,0,0);}
.m70_c00323{transform:matrix(0.078810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078810,0.000000,0.000000,0.250000,0,0);}
.m5d_c00323{transform:matrix(0.081428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081428,0.000000,0.000000,0.250000,0,0);}
.m6d_c00323{transform:matrix(0.083819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083819,0.000000,0.000000,0.250000,0,0);}
.ma_c00323{transform:matrix(0.085337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085337,0.000000,0.000000,0.250000,0,0);}
.m5_c00323{transform:matrix(0.086273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086273,0.000000,0.000000,0.250000,0,0);}
.m18_c00323{transform:matrix(0.091050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091050,0.000000,0.000000,0.250000,0,0);}
.m11_c00323{transform:matrix(0.098215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098215,0.000000,0.000000,0.250000,0,0);}
.mc_c00323{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m4_c00323{transform:matrix(0.116539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116539,0.000000,0.000000,0.250000,0,0);}
.m7d_c00323{transform:matrix(0.121125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121125,0.000000,0.000000,0.250000,0,0);}
.m14_c00323{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);}
.m1f_c00323{transform:matrix(0.126850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126850,0.000000,0.000000,0.250000,0,0);}
.m17_c00323{transform:matrix(0.138890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138890,0.000000,0.000000,0.250000,0,0);}
.m1b_c00323{transform:matrix(0.141014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141014,0.000000,0.000000,0.250000,0,0);}
.m25_c00323{transform:matrix(0.146107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146107,0.000000,0.000000,0.250000,0,0);}
.m23_c00323{transform:matrix(0.147321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147321,0.000000,0.000000,0.250000,0,0);}
.m1e_c00323{transform:matrix(0.152475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152475,0.000000,0.000000,0.250000,0,0);}
.m38_c00323{transform:matrix(0.156603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156603,0.000000,0.000000,0.250000,0,0);}
.m10_c00323{transform:matrix(0.157142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157142,0.000000,0.000000,0.250000,0,0);}
.m4d_c00323{transform:matrix(0.161336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161336,0.000000,0.000000,0.250000,0,0);}
.m5b_c00323{transform:matrix(0.165512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165512,0.000000,0.000000,0.250000,0,0);}
.m22_c00323{transform:matrix(0.165853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165853,0.000000,0.000000,0.250000,0,0);}
.md_c00323{transform:matrix(0.175715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175715,0.000000,0.000000,0.250000,0,0);}
.m4e_c00323{transform:matrix(0.193973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193973,0.000000,0.000000,0.250000,0,0);}
.m15_c00323{transform:matrix(0.202494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202494,0.000000,0.000000,0.250000,0,0);}
.m13_c00323{transform:matrix(0.208555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208555,0.000000,0.000000,0.250000,0,0);}
.m8_c00323{transform:matrix(0.210436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210436,0.000000,0.000000,0.250000,0,0);}
.m31_c00323{transform:matrix(0.213542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213542,0.000000,0.000000,0.250000,0,0);}
.me_c00323{transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);}
.m1c_c00323{transform:matrix(0.218849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218849,0.000000,0.000000,0.250000,0,0);}
.m19_c00323{transform:matrix(0.220474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220474,0.000000,0.000000,0.250000,0,0);}
.m79_c00323{transform:matrix(0.232397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232397,0.000000,0.000000,0.250000,0,0);}
.m26_c00323{transform:matrix(0.232553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232553,0.000000,0.000000,0.250000,0,0);}
.m9_c00323{transform:matrix(0.233508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233508,0.000000,0.000000,0.250000,0,0);}
.m20_c00323{transform:matrix(0.240187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240187,0.000000,0.000000,0.250000,0,0);}
.mb_c00323{transform:matrix(0.240431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240431,0.000000,0.000000,0.250000,0,0);}
.m28_c00323{transform:matrix(0.242978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242978,0.000000,0.000000,0.250000,0,0);}
.m1_c00323{transform:matrix(0.245509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245509,0.000000,0.000000,0.250000,0,0);}
.m12_c00323{transform:matrix(0.246455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246455,0.000000,0.000000,0.250000,0,0);}
.m6e_c00323{transform:matrix(0.247180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247180,0.000000,0.000000,0.250000,0,0);}
.m1d_c00323{transform:matrix(0.248294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248294,0.000000,0.000000,0.250000,0,0);}
.m0_c00323{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m21_c00323{transform:matrix(0.251024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251024,0.000000,0.000000,0.250000,0,0);}
.m4c_c00323{transform:matrix(0.252671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252671,0.000000,0.000000,0.250000,0,0);}
.m66_c00323{transform:matrix(0.255556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255556,0.000000,0.000000,0.250000,0,0);}
.m2a_c00323{transform:matrix(0.255634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255634,0.000000,0.000000,0.250000,0,0);}
.m30_c00323{transform:matrix(0.257455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257455,0.000000,0.000000,0.250000,0,0);}
.m41_c00323{transform:matrix(0.260560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260560,0.000000,0.000000,0.250000,0,0);}
.m48_c00323{transform:matrix(0.260837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260837,0.000000,0.000000,0.250000,0,0);}
.m43_c00323{transform:matrix(0.262277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262277,0.000000,0.000000,0.250000,0,0);}
.m1a_c00323{transform:matrix(0.267347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267347,0.000000,0.000000,0.250000,0,0);}
.m86_c00323{transform:matrix(0.269702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269702,0.000000,0.000000,0.250000,0,0);}
.m3e_c00323{transform:matrix(0.270034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270034,0.000000,0.000000,0.250000,0,0);}
.m2f_c00323{transform:matrix(0.270118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270118,0.000000,0.000000,0.250000,0,0);}
.m6c_c00323{transform:matrix(0.278114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278114,0.000000,0.000000,0.250000,0,0);}
.m69_c00323{transform:matrix(0.280874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280874,0.000000,0.000000,0.250000,0,0);}
.m56_c00323{transform:matrix(0.281229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281229,0.000000,0.000000,0.250000,0,0);}
.m8c_c00323{transform:matrix(0.281606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281606,0.000000,0.000000,0.250000,0,0);}
.m5e_c00323{transform:matrix(0.282143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282143,0.000000,0.000000,0.250000,0,0);}
.m60_c00323{transform:matrix(0.282201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282201,0.000000,0.000000,0.250000,0,0);}
.m7e_c00323{transform:matrix(0.283515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283515,0.000000,0.000000,0.250000,0,0);}
.m78_c00323{transform:matrix(0.283519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283519,0.000000,0.000000,0.250000,0,0);}
.m34_c00323{transform:matrix(0.285213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285213,0.000000,0.000000,0.250000,0,0);}
.m27_c00323{transform:matrix(0.285343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285343,0.000000,0.000000,0.250000,0,0);}
.m6a_c00323{transform:matrix(0.286833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286833,0.000000,0.000000,0.250000,0,0);}
.m54_c00323{transform:matrix(0.287241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287241,0.000000,0.000000,0.250000,0,0);}
.m75_c00323{transform:matrix(0.287488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287488,0.000000,0.000000,0.250000,0,0);}
.m4a_c00323{transform:matrix(0.287660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287660,0.000000,0.000000,0.250000,0,0);}
.m36_c00323{transform:matrix(0.287842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287842,0.000000,0.000000,0.250000,0,0);}
.m2c_c00323{transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);}
.m6f_c00323{transform:matrix(0.292240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292240,0.000000,0.000000,0.250000,0,0);}
.m4b_c00323{transform:matrix(0.292280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292280,0.000000,0.000000,0.250000,0,0);}
.m81_c00323{transform:matrix(0.292963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292963,0.000000,0.000000,0.250000,0,0);}
.m71_c00323{transform:matrix(0.293962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293962,0.000000,0.000000,0.250000,0,0);}
.m87_c00323{transform:matrix(0.295509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295509,0.000000,0.000000,0.250000,0,0);}
.m2b_c00323{transform:matrix(0.298789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298789,0.000000,0.000000,0.250000,0,0);}
.m5a_c00323{transform:matrix(0.299332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299332,0.000000,0.000000,0.250000,0,0);}
.m77_c00323{transform:matrix(0.299655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299655,0.000000,0.000000,0.250000,0,0);}
.m7a_c00323{transform:matrix(0.299800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299800,0.000000,0.000000,0.250000,0,0);}
.m6_c00323{transform:matrix(0.301753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301753,0.000000,0.000000,0.250000,0,0);}
.m46_c00323{transform:matrix(0.303126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303126,0.000000,0.000000,0.250000,0,0);}
.m63_c00323{transform:matrix(0.303908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303908,0.000000,0.000000,0.250000,0,0);}
.m3b_c00323{transform:matrix(0.305481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305481,0.000000,0.000000,0.250000,0,0);}
.m3_c00323{transform:matrix(0.306691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306691,0.000000,0.000000,0.250000,0,0);}
.m68_c00323{transform:matrix(0.308167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308167,0.000000,0.000000,0.250000,0,0);}
.m2_c00323{transform:matrix(0.308908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308908,0.000000,0.000000,0.250000,0,0);}
.m39_c00323{transform:matrix(0.309793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309793,0.000000,0.000000,0.250000,0,0);}
.m89_c00323{transform:matrix(0.309999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309999,0.000000,0.000000,0.250000,0,0);}
.m7f_c00323{transform:matrix(0.314663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314663,0.000000,0.000000,0.250000,0,0);}
.m64_c00323{transform:matrix(0.315244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315244,0.000000,0.000000,0.250000,0,0);}
.m83_c00323{transform:matrix(0.315974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315974,0.000000,0.000000,0.250000,0,0);}
.m82_c00323{transform:matrix(0.316532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316532,0.000000,0.000000,0.250000,0,0);}
.m76_c00323{transform:matrix(0.317017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317017,0.000000,0.000000,0.250000,0,0);}
.m8a_c00323{transform:matrix(0.318246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318246,0.000000,0.000000,0.250000,0,0);}
.m29_c00323{transform:matrix(0.318640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318640,0.000000,0.000000,0.250000,0,0);}
.m4f_c00323{transform:matrix(0.318973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318973,0.000000,0.000000,0.250000,0,0);}
.m8d_c00323{transform:matrix(0.319797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319797,0.000000,0.000000,0.250000,0,0);}
.m3c_c00323{transform:matrix(0.320421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320421,0.000000,0.000000,0.250000,0,0);}
.m35_c00323{transform:matrix(0.324116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324116,0.000000,0.000000,0.250000,0,0);}
.m49_c00323{transform:matrix(0.324705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324705,0.000000,0.000000,0.250000,0,0);}
.m51_c00323{transform:matrix(0.329835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329835,0.000000,0.000000,0.250000,0,0);}
.m85_c00323{transform:matrix(0.330232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330232,0.000000,0.000000,0.250000,0,0);}
.m65_c00323{transform:matrix(0.330300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330300,0.000000,0.000000,0.250000,0,0);}
.m84_c00323{transform:matrix(0.330382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330382,0.000000,0.000000,0.250000,0,0);}
.m80_c00323{transform:matrix(0.332068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332068,0.000000,0.000000,0.250000,0,0);}
.m5c_c00323{transform:matrix(0.332777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332777,0.000000,0.000000,0.250000,0,0);}
.m88_c00323{transform:matrix(0.333734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333734,0.000000,0.000000,0.250000,0,0);}
.m72_c00323{transform:matrix(0.336495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336495,0.000000,0.000000,0.250000,0,0);}
.m6b_c00323{transform:matrix(0.336731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336731,0.000000,0.000000,0.250000,0,0);}
.m55_c00323{transform:matrix(0.337121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337121,0.000000,0.000000,0.250000,0,0);}
.m53_c00323{transform:matrix(0.338268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338268,0.000000,0.000000,0.250000,0,0);}
.m47_c00323{transform:matrix(0.338831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338831,0.000000,0.000000,0.250000,0,0);}
.m24_c00323{transform:matrix(0.341809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341809,0.000000,0.000000,0.250000,0,0);}
.m52_c00323{transform:matrix(0.343827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343827,0.000000,0.000000,0.250000,0,0);}
.m67_c00323{transform:matrix(0.346083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346083,0.000000,0.000000,0.250000,0,0);}
.m62_c00323{transform:matrix(0.346827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346827,0.000000,0.000000,0.250000,0,0);}
.m2d_c00323{transform:matrix(0.350096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350096,0.000000,0.000000,0.250000,0,0);}
.m74_c00323{transform:matrix(0.350653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350653,0.000000,0.000000,0.250000,0,0);}
.m40_c00323{transform:matrix(0.352912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352912,0.000000,0.000000,0.250000,0,0);}
.m44_c00323{transform:matrix(0.359335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359335,0.000000,0.000000,0.250000,0,0);}
.m32_c00323{transform:matrix(0.360326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360326,0.000000,0.000000,0.250000,0,0);}
.m2e_c00323{transform:matrix(0.361667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361667,0.000000,0.000000,0.250000,0,0);}
.m50_c00323{transform:matrix(0.363517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363517,0.000000,0.000000,0.250000,0,0);}
.m37_c00323{transform:matrix(0.364392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364392,0.000000,0.000000,0.250000,0,0);}
.m57_c00323{transform:matrix(0.366306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366306,0.000000,0.000000,0.250000,0,0);}
.m59_c00323{transform:matrix(0.372064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372064,0.000000,0.000000,0.250000,0,0);}
.m33_c00323{transform:matrix(0.372418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372418,0.000000,0.000000,0.250000,0,0);}
.m7b_c00323{transform:matrix(0.373292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373292,0.000000,0.000000,0.250000,0,0);}
.m45_c00323{transform:matrix(0.378559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378559,0.000000,0.000000,0.250000,0,0);}
.m73_c00323{transform:matrix(0.380561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380561,0.000000,0.000000,0.250000,0,0);}
.m7c_c00323{transform:matrix(0.388883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388883,0.000000,0.000000,0.250000,0,0);}
.m3f_c00323{transform:matrix(0.390683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390683,0.000000,0.000000,0.250000,0,0);}
.m3d_c00323{transform:matrix(0.394197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394197,0.000000,0.000000,0.250000,0,0);}
.m8b_c00323{transform:matrix(0.396625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396625,0.000000,0.000000,0.250000,0,0);}
.m42_c00323{transform:matrix(0.399068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399068,0.000000,0.000000,0.250000,0,0);}
.m7_c00323{transform:matrix(0.413329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413329,0.000000,0.000000,0.250000,0,0);}
.m3a_c00323{transform:matrix(0.462043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462043,0.000000,0.000000,0.250000,0,0);}
.m61_c00323{transform:matrix(0.472376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472376,0.000000,0.000000,0.250000,0,0);}
.mf_c00323{transform:matrix(0.548789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548789,0.000000,0.000000,0.250000,0,0);}
.m58_c00323{transform:matrix(0.571422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571422,0.000000,0.000000,0.250000,0,0);}
.v1_c00323{vertical-align:-34.234200px;}
.v2_c00323{vertical-align:-31.363200px;}
.v3_c00323{vertical-align:-11.424600px;}
.v0_c00323{vertical-align:0.000000px;}
.ls10_c00323{letter-spacing:-2.550240px;}
.ls5_c00323{letter-spacing:-2.515590px;}
.lsa_c00323{letter-spacing:-2.480940px;}
.ls12_c00323{letter-spacing:-2.474017px;}
.ls6_c00323{letter-spacing:-2.370067px;}
.ls29_c00323{letter-spacing:-2.328480px;}
.ls14_c00323{letter-spacing:-2.286900px;}
.ls3_c00323{letter-spacing:-2.238390px;}
.ls1e_c00323{letter-spacing:-1.861537px;}
.lsc_c00323{letter-spacing:-1.801800px;}
.lse_c00323{letter-spacing:-1.724743px;}
.ls15_c00323{letter-spacing:-1.697850px;}
.ls13_c00323{letter-spacing:-1.323630px;}
.ls25_c00323{letter-spacing:-0.667775px;}
.ls22_c00323{letter-spacing:-0.539055px;}
.ls2_c00323{letter-spacing:0.000000px;}
.ls1f_c00323{letter-spacing:1.070923px;}
.ls2a_c00323{letter-spacing:1.588415px;}
.ls26_c00323{letter-spacing:2.227500px;}
.ls0_c00323{letter-spacing:2.379029px;}
.ls17_c00323{letter-spacing:2.425500px;}
.ls9_c00323{letter-spacing:3.009600px;}
.ls24_c00323{letter-spacing:3.076207px;}
.ls21_c00323{letter-spacing:3.326400px;}
.ls27_c00323{letter-spacing:3.327766px;}
.ls18_c00323{letter-spacing:3.385810px;}
.ls20_c00323{letter-spacing:3.500264px;}
.ls11_c00323{letter-spacing:3.534310px;}
.ls4_c00323{letter-spacing:3.593700px;}
.ls1b_c00323{letter-spacing:3.781810px;}
.ls19_c00323{letter-spacing:3.801610px;}
.ls1c_c00323{letter-spacing:3.870900px;}
.ls1a_c00323{letter-spacing:4.019400px;}
.ls23_c00323{letter-spacing:9.979398px;}
.ls28_c00323{letter-spacing:12.830598px;}
.ls1_c00323{letter-spacing:22.855932px;}
.lsd_c00323{letter-spacing:25.660998px;}
.ls8_c00323{letter-spacing:49.896198px;}
.ls1d_c00323{letter-spacing:51.321798px;}
.lsb_c00323{letter-spacing:54.172998px;}
.ls7_c00323{letter-spacing:68.428998px;}
.lsf_c00323{letter-spacing:76.982598px;}
.ls16_c00323{letter-spacing:79.833600px;}
.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;}
}
.ws2_c00323{word-spacing:-21.468764px;}
.ws3_c00323{word-spacing:-17.968500px;}
.ws1_c00323{word-spacing:-16.106963px;}
.ws0_c00323{word-spacing:-2.052963px;}
.ws5_c00323{word-spacing:0.000000px;}
.ws4_c00323{word-spacing:1.007028px;}
._d_c00323{margin-left:-21.845884px;}
._f_c00323{margin-left:-7.978212px;}
._16_c00323{margin-left:-6.469452px;}
._15_c00323{margin-left:-2.371842px;}
._c_c00323{width:1.555169px;}
._b_c00323{width:3.737448px;}
._4_c00323{width:6.324912px;}
._19_c00323{width:8.049888px;}
._6_c00323{width:9.702990px;}
._12_c00323{width:12.434400px;}
._18_c00323{width:16.154226px;}
._5_c00323{width:19.693476px;}
._1_c00323{width:21.849696px;}
._2_c00323{width:24.077790px;}
._0_c00323{width:25.515270px;}
._e_c00323{width:26.571818px;}
._11_c00323{width:33.852060px;}
._a_c00323{width:35.334918px;}
._3_c00323{width:37.710882px;}
._13_c00323{width:39.045006px;}
._14_c00323{width:41.793444px;}
._17_c00323{width:46.430604px;}
._9_c00323{width:52.780547px;}
._7_c00323{width:675.390672px;}
._8_c00323{width:1113.058980px;}
._10_c00323{width:1348.795800px;}
.fc0_c00323{color:transparent;}
.fs26_c00323{font-size:9.979398px;}
.fs2a_c00323{font-size:12.830598px;}
.fs0_c00323{font-size:22.176000px;}
.fsb_c00323{font-size:25.146000px;}
.fse_c00323{font-size:25.660998px;}
.fs15_c00323{font-size:26.928000px;}
.fs13_c00323{font-size:27.720000px;}
.fs23_c00323{font-size:28.512000px;}
.fs14_c00323{font-size:33.660000px;}
.fs17_c00323{font-size:37.818000px;}
.fs22_c00323{font-size:39.600000px;}
.fs28_c00323{font-size:43.362000px;}
.fs29_c00323{font-size:44.550000px;}
.fs27_c00323{font-size:46.728000px;}
.fs1a_c00323{font-size:48.510000px;}
.fs8_c00323{font-size:49.896198px;}
.fs21_c00323{font-size:51.321798px;}
.fsd_c00323{font-size:51.480000px;}
.fsc_c00323{font-size:54.172998px;}
.fs19_c00323{font-size:58.212000px;}
.fs18_c00323{font-size:59.796198px;}
.fs9_c00323{font-size:60.192000px;}
.fs2_c00323{font-size:62.568000px;}
.fs1_c00323{font-size:63.954000px;}
.fs25_c00323{font-size:64.548000px;}
.fs16_c00323{font-size:65.340000px;}
.fs24_c00323{font-size:66.528000px;}
.fs1c_c00323{font-size:67.320000px;}
.fs5_c00323{font-size:67.716198px;}
.fs6_c00323{font-size:68.428998px;}
.fsf_c00323{font-size:70.686198px;}
.fsa_c00323{font-size:70.884000px;}
.fs2b_c00323{font-size:71.280000px;}
.fs4_c00323{font-size:71.676198px;}
.fs3_c00323{font-size:71.874000px;}
.fs7_c00323{font-size:72.864000px;}
.fs12_c00323{font-size:73.656198px;}
.fs1f_c00323{font-size:75.636198px;}
.fs1d_c00323{font-size:76.032198px;}
.fs10_c00323{font-size:76.982598px;}
.fs20_c00323{font-size:77.418000px;}
.fs1b_c00323{font-size:79.833600px;}
.fs1e_c00323{font-size:80.388000px;}
.fs11_c00323{font-size:98.406198px;}
.y0_c00323{bottom:0.000000px;}
.y1_c00323{bottom:76.500000px;}
.y2a_c00323{bottom:144.961785px;}
.y29_c00323{bottom:174.547935px;}
.y28_c00323{bottom:235.843785px;}
.y26_c00323{bottom:239.407043px;}
.y27_c00323{bottom:239.412735px;}
.y25_c00323{bottom:271.840185px;}
.y23_c00323{bottom:305.341785px;}
.y24_c00323{bottom:307.480185px;}
.y22_c00323{bottom:332.071785px;}
.y21_c00323{bottom:335.284335px;}
.y1f_c00323{bottom:338.843385px;}
.y20_c00323{bottom:339.204735px;}
.y1e_c00323{bottom:371.988585px;}
.y1d_c00323{bottom:405.138735px;}
.y1c_c00323{bottom:433.650735px;}
.y1a_c00323{bottom:437.927535px;}
.y1b_c00323{bottom:438.278985px;}
.y18_c00323{bottom:451.827135px;}
.yf_c00323{bottom:490.674735px;}
.y19_c00323{bottom:495.664335px;}
.y17_c00323{bottom:511.345935px;}
.y2_c00323{bottom:525.958335px;}
.ye_c00323{bottom:533.799135px;}
.y16_c00323{bottom:535.224735px;}
.y13_c00323{bottom:567.300735px;}
.y10_c00323{bottom:580.843935px;}
.y15_c00323{bottom:624.324735px;}
.yd_c00323{bottom:665.667135px;}
.y12_c00323{bottom:698.099535px;}
.y14_c00323{bottom:702.371385px;}
.y11_c00323{bottom:705.583935px;}
.yc_c00323{bottom:730.526985px;}
.ya_c00323{bottom:764.384985px;}
.yb_c00323{bottom:776.502585px;}
.y9_c00323{bottom:793.614735px;}
.y8_c00323{bottom:798.247935px;}
.y7_c00323{bottom:858.479535px;}
.y6_c00323{bottom:878.437935px;}
.y5_c00323{bottom:922.987935px;}
.y4_c00323{bottom:1013.152185px;}
.y3_c00323{bottom:1082.650185px;}
.h26_c00323{height:6.646279px;}
.h2a_c00323{height:8.545178px;}
.h10_c00323{height:17.090225px;}
.h2_c00323{height:23.128875px;}
.h15_c00323{height:28.911094px;}
.h16_c00323{height:33.035449px;}
.ha_c00323{height:33.230868px;}
.h22_c00323{height:34.180317px;}
.he_c00323{height:36.079217px;}
.h6_c00323{height:36.112069px;}
.h18_c00323{height:39.442992px;}
.h23_c00323{height:41.301563px;}
.h28_c00323{height:42.557432px;}
.h8_c00323{height:45.573713px;}
.h29_c00323{height:46.464258px;}
.h27_c00323{height:48.735844px;}
.h1b_c00323{height:50.594414px;}
.h12_c00323{height:51.270410px;}
.h1c_c00323{height:53.169178px;}
.hf_c00323{height:53.692031px;}
.hb_c00323{height:60.662250px;}
.h1a_c00323{height:60.713297px;}
.h19_c00323{height:62.365566px;}
.h17_c00323{height:64.127637px;}
.h4_c00323{height:65.256469px;}
.h1d_c00323{height:66.070898px;}
.h7_c00323{height:66.459745px;}
.h3_c00323{height:66.702023px;}
.h25_c00323{height:67.321547px;}
.h11_c00323{height:69.374638px;}
.h24_c00323{height:69.386625px;}
.hc_c00323{height:69.568770px;}
.h2b_c00323{height:69.957422px;}
.h5_c00323{height:70.540400px;}
.hd_c00323{height:71.437781px;}
.h9_c00323{height:71.512031px;}
.h13_c00323{height:73.433250px;}
.h20_c00323{height:74.232792px;}
.h21_c00323{height:75.981533px;}
.h1e_c00323{height:76.626200px;}
.h1f_c00323{height:78.896426px;}
.h14_c00323{height:99.174996px;}
.h1_c00323{height:1110.000000px;}
.h0_c00323{height:1263.000000px;}
.w1_c00323{width:763.500000px;}
.w0_c00323{width:892.500000px;}
.x0_c00323{left:0.000000px;}
.x2_c00323{left:58.232835px;}
.x1_c00323{left:64.500000px;}
.x56_c00323{left:96.422085px;}
.x6_c00323{left:97.718985px;}
.x4b_c00323{left:99.768285px;}
.x79_c00323{left:110.514735px;}
.x5b_c00323{left:118.484235px;}
.x7_c00323{left:130.443435px;}
.x5c_c00323{left:140.521635px;}
.x3e_c00323{left:151.203735px;}
.x6a_c00323{left:152.223435px;}
.x17_c00323{left:161.672985px;}
.x8_c00323{left:162.910485px;}
.x26_c00323{left:165.024135px;}
.x6b_c00323{left:166.781385px;}
.x27_c00323{left:172.018485px;}
.x18_c00323{left:173.077785px;}
.x28_c00323{left:178.408935px;}
.x29_c00323{left:180.072135px;}
.x75_c00323{left:185.041935px;}
.x2c_c00323{left:190.076085px;}
.x9_c00323{left:196.025985px;}
.x3f_c00323{left:197.708985px;}
.x2a_c00323{left:206.490285px;}
.x6c_c00323{left:207.777285px;}
.x4c_c00323{left:216.850635px;}
.x19_c00323{left:218.345535px;}
.x62_c00323{left:220.582935px;}
.x5d_c00323{left:229.002885px;}
.x40_c00323{left:230.567085px;}
.x2b_c00323{left:232.121385px;}
.x1a_c00323{left:240.442335px;}
.x10_c00323{left:248.194035px;}
.x6d_c00323{left:251.451135px;}
.x1b_c00323{left:257.306985px;}
.x41_c00323{left:261.306585px;}
.xa_c00323{left:262.737135px;}
.x6e_c00323{left:264.548835px;}
.x2d_c00323{left:268.508835px;}
.x6f_c00323{left:269.993835px;}
.x42_c00323{left:273.344985px;}
.x57_c00323{left:284.799285px;}
.x4d_c00323{left:295.209135px;}
.x4e_c00323{left:301.000635px;}
.x4f_c00323{left:304.940835px;}
.x43_c00323{left:306.896085px;}
.x74_c00323{left:310.653135px;}
.x58_c00323{left:317.018835px;}
.x7a_c00323{left:319.310685px;}
.x1c_c00323{left:324.760635px;}
.x11_c00323{left:328.042485px;}
.x35_c00323{left:329.364135px;}
.x2e_c00323{left:333.680535px;}
.x63_c00323{left:338.447385px;}
.x50_c00323{left:340.427385px;}
.x1d_c00323{left:341.659935px;}
.x72_c00323{left:351.297585px;}
.x21_c00323{left:355.915935px;}
.x12_c00323{left:357.727635px;}
.x30_c00323{left:359.074035px;}
.x2f_c00323{left:360.430335px;}
.xb_c00323{left:361.880685px;}
.xc_c00323{left:367.949385px;}
.x1e_c00323{left:371.567835px;}
.xd_c00323{left:373.196385px;}
.x51_c00323{left:383.972535px;}
.x1f_c00323{left:387.095985px;}
.x64_c00323{left:390.481785px;}
.x13_c00323{left:392.981535px;}
.x44_c00323{left:393.986385px;}
.x7b_c00323{left:395.441685px;}
.xe_c00323{left:406.292085px;}
.x31_c00323{left:410.687685px;}
.x20_c00323{left:417.469185px;}
.x5_c00323{left:419.320485px;}
.x36_c00323{left:420.424335px;}
.x61_c00323{left:422.117235px;}
.xf_c00323{left:428.359185px;}
.x37_c00323{left:436.105935px;}
.x5e_c00323{left:440.110485px;}
.x52_c00323{left:450.837135px;}
.x38_c00323{left:454.054635px;}
.x45_c00323{left:460.648035px;}
.x65_c00323{left:461.821185px;}
.x39_c00323{left:471.557835px;}
.x14_c00323{left:472.983435px;}
.x3a_c00323{left:475.285185px;}
.x73_c00323{left:482.784435px;}
.x15_c00323{left:484.046685px;}
.x76_c00323{left:494.327835px;}
.x32_c00323{left:502.094385px;}
.x23_c00323{left:506.311785px;}
.x33_c00323{left:515.479185px;}
.x66_c00323{left:517.667085px;}
.x7c_c00323{left:526.265235px;}
.x3b_c00323{left:527.953185px;}
.x3c_c00323{left:538.645185px;}
.x67_c00323{left:548.005635px;}
.x46_c00323{left:549.035235px;}
.x34_c00323{left:553.559535px;}
.x24_c00323{left:556.970085px;}
.x77_c00323{left:561.038985px;}
.x59_c00323{left:571.701285px;}
.x47_c00323{left:583.779285px;}
.x5a_c00323{left:584.927685px;}
.x68_c00323{left:594.768285px;}
.x70_c00323{left:606.182985px;}
.x48_c00323{left:615.964185px;}
.x25_c00323{left:627.042285px;}
.x7d_c00323{left:639.407385px;}
.x49_c00323{left:648.871785px;}
.x5f_c00323{left:659.890485px;}
.x53_c00323{left:661.489335px;}
.x60_c00323{left:671.275485px;}
.x3_c00323{left:676.408635px;}
.x54_c00323{left:682.843635px;}
.x69_c00323{left:697.114485px;}
.x22_c00323{left:704.113785px;}
.x3d_c00323{left:705.786885px;}
.x16_c00323{left:708.449985px;}
.x4_c00323{left:709.796385px;}
.x71_c00323{left:717.102585px;}
.x4a_c00323{left:726.997635px;}
.x55_c00323{left:738.417285px;}
.x78_c00323{left:748.634085px;}
@media print{
.v1_c00323{vertical-align:-30.430400pt;}
.v2_c00323{vertical-align:-27.878400pt;}
.v3_c00323{vertical-align:-10.155200pt;}
.v0_c00323{vertical-align:0.000000pt;}
.ls10_c00323{letter-spacing:-2.266880pt;}
.ls5_c00323{letter-spacing:-2.236080pt;}
.lsa_c00323{letter-spacing:-2.205280pt;}
.ls12_c00323{letter-spacing:-2.199126pt;}
.ls6_c00323{letter-spacing:-2.106726pt;}
.ls29_c00323{letter-spacing:-2.069760pt;}
.ls14_c00323{letter-spacing:-2.032800pt;}
.ls3_c00323{letter-spacing:-1.989680pt;}
.ls1e_c00323{letter-spacing:-1.654699pt;}
.lsc_c00323{letter-spacing:-1.601600pt;}
.lse_c00323{letter-spacing:-1.533105pt;}
.ls15_c00323{letter-spacing:-1.509200pt;}
.ls13_c00323{letter-spacing:-1.176560pt;}
.ls25_c00323{letter-spacing:-0.593578pt;}
.ls22_c00323{letter-spacing:-0.479160pt;}
.ls2_c00323{letter-spacing:0.000000pt;}
.ls1f_c00323{letter-spacing:0.951931pt;}
.ls2a_c00323{letter-spacing:1.411925pt;}
.ls26_c00323{letter-spacing:1.980000pt;}
.ls0_c00323{letter-spacing:2.114693pt;}
.ls17_c00323{letter-spacing:2.156000pt;}
.ls9_c00323{letter-spacing:2.675200pt;}
.ls24_c00323{letter-spacing:2.734406pt;}
.ls21_c00323{letter-spacing:2.956800pt;}
.ls27_c00323{letter-spacing:2.958014pt;}
.ls18_c00323{letter-spacing:3.009609pt;}
.ls20_c00323{letter-spacing:3.111346pt;}
.ls11_c00323{letter-spacing:3.141609pt;}
.ls4_c00323{letter-spacing:3.194400pt;}
.ls1b_c00323{letter-spacing:3.361609pt;}
.ls19_c00323{letter-spacing:3.379209pt;}
.ls1c_c00323{letter-spacing:3.440800pt;}
.ls1a_c00323{letter-spacing:3.572800pt;}
.ls23_c00323{letter-spacing:8.870576pt;}
.ls28_c00323{letter-spacing:11.404976pt;}
.ls1_c00323{letter-spacing:20.316384pt;}
.lsd_c00323{letter-spacing:22.809776pt;}
.ls8_c00323{letter-spacing:44.352176pt;}
.ls1d_c00323{letter-spacing:45.619376pt;}
.lsb_c00323{letter-spacing:48.153776pt;}
.ls7_c00323{letter-spacing:60.825776pt;}
.lsf_c00323{letter-spacing:68.428976pt;}
.ls16_c00323{letter-spacing:70.963200pt;}
.ws2_c00323{word-spacing:-19.083346pt;}
.ws3_c00323{word-spacing:-15.972000pt;}
.ws1_c00323{word-spacing:-14.317301pt;}
.ws0_c00323{word-spacing:-1.824856pt;}
.ws5_c00323{word-spacing:0.000000pt;}
.ws4_c00323{word-spacing:0.895136pt;}
._d_c00323{margin-left:-19.418564pt;}
._f_c00323{margin-left:-7.091744pt;}
._16_c00323{margin-left:-5.750624pt;}
._15_c00323{margin-left:-2.108304pt;}
._c_c00323{width:1.382372pt;}
._b_c00323{width:3.322176pt;}
._4_c00323{width:5.622144pt;}
._19_c00323{width:7.155456pt;}
._6_c00323{width:8.624880pt;}
._12_c00323{width:11.052800pt;}
._18_c00323{width:14.359312pt;}
._5_c00323{width:17.505312pt;}
._1_c00323{width:19.421952pt;}
._2_c00323{width:21.402480pt;}
._0_c00323{width:22.680240pt;}
._e_c00323{width:23.619394pt;}
._11_c00323{width:30.090720pt;}
._a_c00323{width:31.408816pt;}
._3_c00323{width:33.520784pt;}
._13_c00323{width:34.706672pt;}
._14_c00323{width:37.149728pt;}
._17_c00323{width:41.271648pt;}
._9_c00323{width:46.916041pt;}
._7_c00323{width:600.347264pt;}
._8_c00323{width:989.385760pt;}
._10_c00323{width:1198.929600pt;}
.fs26_c00323{font-size:8.870576pt;}
.fs2a_c00323{font-size:11.404976pt;}
.fs0_c00323{font-size:19.712000pt;}
.fsb_c00323{font-size:22.352000pt;}
.fse_c00323{font-size:22.809776pt;}
.fs15_c00323{font-size:23.936000pt;}
.fs13_c00323{font-size:24.640000pt;}
.fs23_c00323{font-size:25.344000pt;}
.fs14_c00323{font-size:29.920000pt;}
.fs17_c00323{font-size:33.616000pt;}
.fs22_c00323{font-size:35.200000pt;}
.fs28_c00323{font-size:38.544000pt;}
.fs29_c00323{font-size:39.600000pt;}
.fs27_c00323{font-size:41.536000pt;}
.fs1a_c00323{font-size:43.120000pt;}
.fs8_c00323{font-size:44.352176pt;}
.fs21_c00323{font-size:45.619376pt;}
.fsd_c00323{font-size:45.760000pt;}
.fsc_c00323{font-size:48.153776pt;}
.fs19_c00323{font-size:51.744000pt;}
.fs18_c00323{font-size:53.152176pt;}
.fs9_c00323{font-size:53.504000pt;}
.fs2_c00323{font-size:55.616000pt;}
.fs1_c00323{font-size:56.848000pt;}
.fs25_c00323{font-size:57.376000pt;}
.fs16_c00323{font-size:58.080000pt;}
.fs24_c00323{font-size:59.136000pt;}
.fs1c_c00323{font-size:59.840000pt;}
.fs5_c00323{font-size:60.192176pt;}
.fs6_c00323{font-size:60.825776pt;}
.fsf_c00323{font-size:62.832176pt;}
.fsa_c00323{font-size:63.008000pt;}
.fs2b_c00323{font-size:63.360000pt;}
.fs4_c00323{font-size:63.712176pt;}
.fs3_c00323{font-size:63.888000pt;}
.fs7_c00323{font-size:64.768000pt;}
.fs12_c00323{font-size:65.472176pt;}
.fs1f_c00323{font-size:67.232176pt;}
.fs1d_c00323{font-size:67.584176pt;}
.fs10_c00323{font-size:68.428976pt;}
.fs20_c00323{font-size:68.816000pt;}
.fs1b_c00323{font-size:70.963200pt;}
.fs1e_c00323{font-size:71.456000pt;}
.fs11_c00323{font-size:87.472176pt;}
.y0_c00323{bottom:0.000000pt;}
.y1_c00323{bottom:68.000000pt;}
.y2a_c00323{bottom:128.854920pt;}
.y29_c00323{bottom:155.153720pt;}
.y28_c00323{bottom:209.638920pt;}
.y26_c00323{bottom:212.806260pt;}
.y27_c00323{bottom:212.811320pt;}
.y25_c00323{bottom:241.635720pt;}
.y23_c00323{bottom:271.414920pt;}
.y24_c00323{bottom:273.315720pt;}
.y22_c00323{bottom:295.174920pt;}
.y21_c00323{bottom:298.030520pt;}
.y1f_c00323{bottom:301.194120pt;}
.y20_c00323{bottom:301.515320pt;}
.y1e_c00323{bottom:330.656520pt;}
.y1d_c00323{bottom:360.123320pt;}
.y1c_c00323{bottom:385.467320pt;}
.y1a_c00323{bottom:389.268920pt;}
.y1b_c00323{bottom:389.581320pt;}
.y18_c00323{bottom:401.624120pt;}
.yf_c00323{bottom:436.155320pt;}
.y19_c00323{bottom:440.590520pt;}
.y17_c00323{bottom:454.529720pt;}
.y2_c00323{bottom:467.518520pt;}
.ye_c00323{bottom:474.488120pt;}
.y16_c00323{bottom:475.755320pt;}
.y13_c00323{bottom:504.267320pt;}
.y10_c00323{bottom:516.305720pt;}
.y15_c00323{bottom:554.955320pt;}
.yd_c00323{bottom:591.704120pt;}
.y12_c00323{bottom:620.532920pt;}
.y14_c00323{bottom:624.330120pt;}
.y11_c00323{bottom:627.185720pt;}
.yc_c00323{bottom:649.357320pt;}
.ya_c00323{bottom:679.453320pt;}
.yb_c00323{bottom:690.224520pt;}
.y9_c00323{bottom:705.435320pt;}
.y8_c00323{bottom:709.553720pt;}
.y7_c00323{bottom:763.092920pt;}
.y6_c00323{bottom:780.833720pt;}
.y5_c00323{bottom:820.433720pt;}
.y4_c00323{bottom:900.579720pt;}
.y3_c00323{bottom:962.355720pt;}
.h26_c00323{height:5.907804pt;}
.h2a_c00323{height:7.595714pt;}
.h10_c00323{height:15.191311pt;}
.h2_c00323{height:20.559000pt;}
.h15_c00323{height:25.698750pt;}
.h16_c00323{height:29.364844pt;}
.ha_c00323{height:29.538549pt;}
.h22_c00323{height:30.382504pt;}
.he_c00323{height:32.070415pt;}
.h6_c00323{height:32.099616pt;}
.h18_c00323{height:35.060438pt;}
.h23_c00323{height:36.712500pt;}
.h28_c00323{height:37.828828pt;}
.h8_c00323{height:40.509967pt;}
.h29_c00323{height:41.301563pt;}
.h27_c00323{height:43.320750pt;}
.h1b_c00323{height:44.972813pt;}
.h12_c00323{height:45.573698pt;}
.h1c_c00323{height:47.261491pt;}
.hf_c00323{height:47.726250pt;}
.hb_c00323{height:53.922000pt;}
.h1a_c00323{height:53.967375pt;}
.h19_c00323{height:55.436059pt;}
.h17_c00323{height:57.002344pt;}
.h4_c00323{height:58.005750pt;}
.h1d_c00323{height:58.729688pt;}
.h7_c00323{height:59.075329pt;}
.h3_c00323{height:59.290687pt;}
.h25_c00323{height:59.841375pt;}
.h11_c00323{height:61.666345pt;}
.h24_c00323{height:61.677000pt;}
.hc_c00323{height:61.838906pt;}
.h2b_c00323{height:62.184375pt;}
.h5_c00323{height:62.702578pt;}
.hd_c00323{height:63.500250pt;}
.h9_c00323{height:63.566250pt;}
.h13_c00323{height:65.274000pt;}
.h20_c00323{height:65.984704pt;}
.h21_c00323{height:67.539141pt;}
.h1e_c00323{height:68.112177pt;}
.h1f_c00323{height:70.130156pt;}
.h14_c00323{height:88.155552pt;}
.h1_c00323{height:986.666667pt;}
.h0_c00323{height:1122.666667pt;}
.w1_c00323{width:678.666667pt;}
.w0_c00323{width:793.333333pt;}
.x0_c00323{left:0.000000pt;}
.x2_c00323{left:51.762520pt;}
.x1_c00323{left:57.333333pt;}
.x56_c00323{left:85.708520pt;}
.x6_c00323{left:86.861320pt;}
.x4b_c00323{left:88.682920pt;}
.x79_c00323{left:98.235320pt;}
.x5b_c00323{left:105.319320pt;}
.x7_c00323{left:115.949720pt;}
.x5c_c00323{left:124.908120pt;}
.x3e_c00323{left:134.403320pt;}
.x6a_c00323{left:135.309720pt;}
.x17_c00323{left:143.709320pt;}
.x8_c00323{left:144.809320pt;}
.x26_c00323{left:146.688120pt;}
.x6b_c00323{left:148.250120pt;}
.x27_c00323{left:152.905320pt;}
.x18_c00323{left:153.846920pt;}
.x28_c00323{left:158.585720pt;}
.x29_c00323{left:160.064120pt;}
.x75_c00323{left:164.481720pt;}
.x2c_c00323{left:168.956520pt;}
.x9_c00323{left:174.245320pt;}
.x3f_c00323{left:175.741320pt;}
.x2a_c00323{left:183.546920pt;}
.x6c_c00323{left:184.690920pt;}
.x4c_c00323{left:192.756120pt;}
.x19_c00323{left:194.084920pt;}
.x62_c00323{left:196.073720pt;}
.x5d_c00323{left:203.558120pt;}
.x40_c00323{left:204.948520pt;}
.x2b_c00323{left:206.330120pt;}
.x1a_c00323{left:213.726520pt;}
.x10_c00323{left:220.616920pt;}
.x6d_c00323{left:223.512120pt;}
.x1b_c00323{left:228.717320pt;}
.x41_c00323{left:232.272520pt;}
.xa_c00323{left:233.544120pt;}
.x6e_c00323{left:235.154520pt;}
.x2d_c00323{left:238.674520pt;}
.x6f_c00323{left:239.994520pt;}
.x42_c00323{left:242.973320pt;}
.x57_c00323{left:253.154920pt;}
.x4d_c00323{left:262.408120pt;}
.x4e_c00323{left:267.556120pt;}
.x4f_c00323{left:271.058520pt;}
.x43_c00323{left:272.796520pt;}
.x74_c00323{left:276.136120pt;}
.x58_c00323{left:281.794520pt;}
.x7a_c00323{left:283.831720pt;}
.x1c_c00323{left:288.676120pt;}
.x11_c00323{left:291.593320pt;}
.x35_c00323{left:292.768120pt;}
.x2e_c00323{left:296.604920pt;}
.x63_c00323{left:300.842120pt;}
.x50_c00323{left:302.602120pt;}
.x1d_c00323{left:303.697720pt;}
.x72_c00323{left:312.264520pt;}
.x21_c00323{left:316.369720pt;}
.x12_c00323{left:317.980120pt;}
.x30_c00323{left:319.176920pt;}
.x2f_c00323{left:320.382520pt;}
.xb_c00323{left:321.671720pt;}
.xc_c00323{left:327.066120pt;}
.x1e_c00323{left:330.282520pt;}
.xd_c00323{left:331.730120pt;}
.x51_c00323{left:341.308920pt;}
.x1f_c00323{left:344.085320pt;}
.x64_c00323{left:347.094920pt;}
.x13_c00323{left:349.316920pt;}
.x44_c00323{left:350.210120pt;}
.x7b_c00323{left:351.503720pt;}
.xe_c00323{left:361.148520pt;}
.x31_c00323{left:365.055720pt;}
.x20_c00323{left:371.083720pt;}
.x5_c00323{left:372.729320pt;}
.x36_c00323{left:373.710520pt;}
.x61_c00323{left:375.215320pt;}
.xf_c00323{left:380.763720pt;}
.x37_c00323{left:387.649720pt;}
.x5e_c00323{left:391.209320pt;}
.x52_c00323{left:400.744120pt;}
.x38_c00323{left:403.604120pt;}
.x45_c00323{left:409.464920pt;}
.x65_c00323{left:410.507720pt;}
.x39_c00323{left:419.162520pt;}
.x14_c00323{left:420.429720pt;}
.x3a_c00323{left:422.475720pt;}
.x73_c00323{left:429.141720pt;}
.x15_c00323{left:430.263720pt;}
.x76_c00323{left:439.402520pt;}
.x32_c00323{left:446.306120pt;}
.x23_c00323{left:450.054920pt;}
.x33_c00323{left:458.203720pt;}
.x66_c00323{left:460.148520pt;}
.x7c_c00323{left:467.791320pt;}
.x3b_c00323{left:469.291720pt;}
.x3c_c00323{left:478.795720pt;}
.x67_c00323{left:487.116120pt;}
.x46_c00323{left:488.031320pt;}
.x34_c00323{left:492.052920pt;}
.x24_c00323{left:495.084520pt;}
.x77_c00323{left:498.701320pt;}
.x59_c00323{left:508.178920pt;}
.x47_c00323{left:518.914920pt;}
.x5a_c00323{left:519.935720pt;}
.x68_c00323{left:528.682920pt;}
.x70_c00323{left:538.829320pt;}
.x48_c00323{left:547.523720pt;}
.x25_c00323{left:557.370920pt;}
.x7d_c00323{left:568.362120pt;}
.x49_c00323{left:576.774920pt;}
.x5f_c00323{left:586.569320pt;}
.x53_c00323{left:587.990520pt;}
.x60_c00323{left:596.689320pt;}
.x3_c00323{left:601.252120pt;}
.x54_c00323{left:606.972120pt;}
.x69_c00323{left:619.657320pt;}
.x22_c00323{left:625.878920pt;}
.x3d_c00323{left:627.366120pt;}
.x16_c00323{left:629.733320pt;}
.x4_c00323{left:630.930120pt;}
.x71_c00323{left:637.424520pt;}
.x4a_c00323{left:646.220120pt;}
.x55_c00323{left:656.370920pt;}
.x78_c00323{left:665.452520pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d7fb7b41a09b7cd01a3f51f9.woff2')format("woff");}.ff1_c00324{font-family:ff1_c00324;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00324;src:url('chunks/assets/font_9473467b1decb724e458da81.woff2')format("woff");}.ff2_c00324{font-family:ff2_c00324;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00324;src:url('chunks/assets/font_6e06a07db9cfd9f1f766b458.woff2')format("woff");}.ff3_c00324{font-family:ff3_c00324;line-height:0.666000;font-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_c00324{transform:matrix(0.073530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073530,0.000000,0.000000,0.250000,0,0);}
.mbc_c00324{transform:matrix(0.087838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087838,0.000000,0.000000,0.250000,0,0);}
.m1f_c00324{transform:matrix(0.088260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088260,0.000000,0.000000,0.250000,0,0);}
.mbb_c00324{transform:matrix(0.094594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094594,0.000000,0.000000,0.250000,0,0);}
.m4d_c00324{transform:matrix(0.099166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099166,0.000000,0.000000,0.250000,0,0);}
.md1_c00324{transform:matrix(0.105794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105794,0.000000,0.000000,0.250000,0,0);}
.mbe_c00324{transform:matrix(0.130631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130631,0.000000,0.000000,0.250000,0,0);}
.m81_c00324{transform:matrix(0.137137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137137,0.000000,0.000000,0.250000,0,0);}
.m17_c00324{transform:matrix(0.147686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147686,0.000000,0.000000,0.250000,0,0);}
.mbf_c00324{transform:matrix(0.155406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155406,0.000000,0.000000,0.250000,0,0);}
.m8f_c00324{transform:matrix(0.161764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161764,0.000000,0.000000,0.250000,0,0);}
.ma0_c00324{transform:matrix(0.182810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182810,0.000000,0.000000,0.250000,0,0);}
.mbd_c00324{transform:matrix(0.195946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195946,0.000000,0.000000,0.250000,0,0);}
.m8c_c00324{transform:matrix(0.198530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198530,0.000000,0.000000,0.250000,0,0);}
.m1b_c00324{transform:matrix(0.205107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205107,0.000000,0.000000,0.250000,0,0);}
.m8e_c00324{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);}
.m46_c00324{transform:matrix(0.207648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207648,0.000000,0.000000,0.250000,0,0);}
.m8d_c00324{transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);}
.m21_c00324{transform:matrix(0.220771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220771,0.000000,0.000000,0.250000,0,0);}
.m45_c00324{transform:matrix(0.221991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221991,0.000000,0.000000,0.250000,0,0);}
.m88_c00324{transform:matrix(0.222895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222895,0.000000,0.000000,0.250000,0,0);}
.m27_c00324{transform:matrix(0.223627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223627,0.000000,0.000000,0.250000,0,0);}
.m35_c00324{transform:matrix(0.235623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235623,0.000000,0.000000,0.250000,0,0);}
.mae_c00324{transform:matrix(0.238955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238955,0.000000,0.000000,0.250000,0,0);}
.m6a_c00324{transform:matrix(0.240842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240842,0.000000,0.000000,0.250000,0,0);}
.m5c_c00324{transform:matrix(0.243419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243419,0.000000,0.000000,0.250000,0,0);}
.mb3_c00324{transform:matrix(0.247616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247616,0.000000,0.000000,0.250000,0,0);}
.maa_c00324{transform:matrix(0.249499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249499,0.000000,0.000000,0.250000,0,0);}
.m0_c00324{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00324{transform:matrix(0.254604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254604,0.000000,0.000000,0.250000,0,0);}
.m87_c00324{transform:matrix(0.254683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254683,0.000000,0.000000,0.250000,0,0);}
.m4c_c00324{transform:matrix(0.255410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255410,0.000000,0.000000,0.250000,0,0);}
.m30_c00324{transform:matrix(0.256293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256293,0.000000,0.000000,0.250000,0,0);}
.mad_c00324{transform:matrix(0.256721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256721,0.000000,0.000000,0.250000,0,0);}
.mca_c00324{transform:matrix(0.257110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257110,0.000000,0.000000,0.250000,0,0);}
.m1c_c00324{transform:matrix(0.259408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259408,0.000000,0.000000,0.250000,0,0);}
.m5e_c00324{transform:matrix(0.261192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261192,0.000000,0.000000,0.250000,0,0);}
.m2a_c00324{transform:matrix(0.261956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261956,0.000000,0.000000,0.250000,0,0);}
.m6d_c00324{transform:matrix(0.262111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262111,0.000000,0.000000,0.250000,0,0);}
.m79_c00324{transform:matrix(0.262166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262166,0.000000,0.000000,0.250000,0,0);}
.m1_c00324{transform:matrix(0.263823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263823,0.000000,0.000000,0.250000,0,0);}
.mb5_c00324{transform:matrix(0.264212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264212,0.000000,0.000000,0.250000,0,0);}
.m23_c00324{transform:matrix(0.265159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265159,0.000000,0.000000,0.250000,0,0);}
.m74_c00324{transform:matrix(0.265595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265595,0.000000,0.000000,0.250000,0,0);}
.mf_c00324{transform:matrix(0.268416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268416,0.000000,0.000000,0.250000,0,0);}
.m2d_c00324{transform:matrix(0.269016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269016,0.000000,0.000000,0.250000,0,0);}
.m1a_c00324{transform:matrix(0.269387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269387,0.000000,0.000000,0.250000,0,0);}
.ma7_c00324{transform:matrix(0.270214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270214,0.000000,0.000000,0.250000,0,0);}
.m47_c00324{transform:matrix(0.270827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270827,0.000000,0.000000,0.250000,0,0);}
.m39_c00324{transform:matrix(0.271394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271394,0.000000,0.000000,0.250000,0,0);}
.m72_c00324{transform:matrix(0.272815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272815,0.000000,0.000000,0.250000,0,0);}
.mcf_c00324{transform:matrix(0.272955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272955,0.000000,0.000000,0.250000,0,0);}
.mcd_c00324{transform:matrix(0.273223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273223,0.000000,0.000000,0.250000,0,0);}
.m7e_c00324{transform:matrix(0.273819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273819,0.000000,0.000000,0.250000,0,0);}
.m31_c00324{transform:matrix(0.274946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274946,0.000000,0.000000,0.250000,0,0);}
.m58_c00324{transform:matrix(0.275486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275486,0.000000,0.000000,0.250000,0,0);}
.m13_c00324{transform:matrix(0.275579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275579,0.000000,0.000000,0.250000,0,0);}
.mc3_c00324{transform:matrix(0.275914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275914,0.000000,0.000000,0.250000,0,0);}
.m11_c00324{transform:matrix(0.276230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276230,0.000000,0.000000,0.250000,0,0);}
.m91_c00324{transform:matrix(0.276294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276294,0.000000,0.000000,0.250000,0,0);}
.ma6_c00324{transform:matrix(0.276810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276810,0.000000,0.000000,0.250000,0,0);}
.m34_c00324{transform:matrix(0.277112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277112,0.000000,0.000000,0.250000,0,0);}
.m54_c00324{transform:matrix(0.278623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278623,0.000000,0.000000,0.250000,0,0);}
.ma2_c00324{transform:matrix(0.279345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279345,0.000000,0.000000,0.250000,0,0);}
.m73_c00324{transform:matrix(0.279710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279710,0.000000,0.000000,0.250000,0,0);}
.m24_c00324{transform:matrix(0.280640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280640,0.000000,0.000000,0.250000,0,0);}
.m32_c00324{transform:matrix(0.280741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280741,0.000000,0.000000,0.250000,0,0);}
.m7f_c00324{transform:matrix(0.281057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281057,0.000000,0.000000,0.250000,0,0);}
.m5a_c00324{transform:matrix(0.281723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281723,0.000000,0.000000,0.250000,0,0);}
.m78_c00324{transform:matrix(0.281958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281958,0.000000,0.000000,0.250000,0,0);}
.mb9_c00324{transform:matrix(0.282668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282668,0.000000,0.000000,0.250000,0,0);}
.m8a_c00324{transform:matrix(0.283349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283349,0.000000,0.000000,0.250000,0,0);}
.m41_c00324{transform:matrix(0.283564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283564,0.000000,0.000000,0.250000,0,0);}
.m48_c00324{transform:matrix(0.284510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284510,0.000000,0.000000,0.250000,0,0);}
.m7a_c00324{transform:matrix(0.284807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284807,0.000000,0.000000,0.250000,0,0);}
.m2e_c00324{transform:matrix(0.285135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285135,0.000000,0.000000,0.250000,0,0);}
.m10_c00324{transform:matrix(0.286283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286283,0.000000,0.000000,0.250000,0,0);}
.ma5_c00324{transform:matrix(0.286549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286549,0.000000,0.000000,0.250000,0,0);}
.mc_c00324{transform:matrix(0.286629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286629,0.000000,0.000000,0.250000,0,0);}
.m60_c00324{transform:matrix(0.287293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287293,0.000000,0.000000,0.250000,0,0);}
.m9a_c00324{transform:matrix(0.287458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287458,0.000000,0.000000,0.250000,0,0);}
.m33_c00324{transform:matrix(0.289219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289219,0.000000,0.000000,0.250000,0,0);}
.m5_c00324{transform:matrix(0.289388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289388,0.000000,0.000000,0.250000,0,0);}
.m29_c00324{transform:matrix(0.289591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289591,0.000000,0.000000,0.250000,0,0);}
.mb4_c00324{transform:matrix(0.289622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289622,0.000000,0.000000,0.250000,0,0);}
.m77_c00324{transform:matrix(0.289764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289764,0.000000,0.000000,0.250000,0,0);}
.m95_c00324{transform:matrix(0.289834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289834,0.000000,0.000000,0.250000,0,0);}
.m4a_c00324{transform:matrix(0.289878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289878,0.000000,0.000000,0.250000,0,0);}
.mc2_c00324{transform:matrix(0.290010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290010,0.000000,0.000000,0.250000,0,0);}
.m93_c00324{transform:matrix(0.290690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290690,0.000000,0.000000,0.250000,0,0);}
.m8_c00324{transform:matrix(0.291851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291851,0.000000,0.000000,0.250000,0,0);}
.mce_c00324{transform:matrix(0.291953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291953,0.000000,0.000000,0.250000,0,0);}
.m55_c00324{transform:matrix(0.292419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292419,0.000000,0.000000,0.250000,0,0);}
.mb0_c00324{transform:matrix(0.292697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292697,0.000000,0.000000,0.250000,0,0);}
.m3f_c00324{transform:matrix(0.293952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293952,0.000000,0.000000,0.250000,0,0);}
.m6f_c00324{transform:matrix(0.295069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295069,0.000000,0.000000,0.250000,0,0);}
.m96_c00324{transform:matrix(0.295671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295671,0.000000,0.000000,0.250000,0,0);}
.m40_c00324{transform:matrix(0.295681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295681,0.000000,0.000000,0.250000,0,0);}
.mb1_c00324{transform:matrix(0.296869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296869,0.000000,0.000000,0.250000,0,0);}
.m49_c00324{transform:matrix(0.297875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297875,0.000000,0.000000,0.250000,0,0);}
.m38_c00324{transform:matrix(0.297890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297890,0.000000,0.000000,0.250000,0,0);}
.m94_c00324{transform:matrix(0.298514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298514,0.000000,0.000000,0.250000,0,0);}
.m25_c00324{transform:matrix(0.300132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300132,0.000000,0.000000,0.250000,0,0);}
.m9e_c00324{transform:matrix(0.300138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300138,0.000000,0.000000,0.250000,0,0);}
.mb7_c00324{transform:matrix(0.300469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300469,0.000000,0.000000,0.250000,0,0);}
.m9d_c00324{transform:matrix(0.301197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301197,0.000000,0.000000,0.250000,0,0);}
.m7_c00324{transform:matrix(0.301634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301634,0.000000,0.000000,0.250000,0,0);}
.ma_c00324{transform:matrix(0.302855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302855,0.000000,0.000000,0.250000,0,0);}
.m57_c00324{transform:matrix(0.302929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302929,0.000000,0.000000,0.250000,0,0);}
.m37_c00324{transform:matrix(0.303825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303825,0.000000,0.000000,0.250000,0,0);}
.m1e_c00324{transform:matrix(0.304174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304174,0.000000,0.000000,0.250000,0,0);}
.m6_c00324{transform:matrix(0.304737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304737,0.000000,0.000000,0.250000,0,0);}
.m4e_c00324{transform:matrix(0.305318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305318,0.000000,0.000000,0.250000,0,0);}
.m3c_c00324{transform:matrix(0.305342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305342,0.000000,0.000000,0.250000,0,0);}
.ma3_c00324{transform:matrix(0.305595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305595,0.000000,0.000000,0.250000,0,0);}
.m63_c00324{transform:matrix(0.307625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307625,0.000000,0.000000,0.250000,0,0);}
.m7b_c00324{transform:matrix(0.309329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309329,0.000000,0.000000,0.250000,0,0);}
.m2b_c00324{transform:matrix(0.309542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309542,0.000000,0.000000,0.250000,0,0);}
.m9_c00324{transform:matrix(0.309596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309596,0.000000,0.000000,0.250000,0,0);}
.mc6_c00324{transform:matrix(0.309979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309979,0.000000,0.000000,0.250000,0,0);}
.m53_c00324{transform:matrix(0.310877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310877,0.000000,0.000000,0.250000,0,0);}
.m8b_c00324{transform:matrix(0.311016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311016,0.000000,0.000000,0.250000,0,0);}
.m4b_c00324{transform:matrix(0.311052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311052,0.000000,0.000000,0.250000,0,0);}
.mc7_c00324{transform:matrix(0.311362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311362,0.000000,0.000000,0.250000,0,0);}
.m5f_c00324{transform:matrix(0.312531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312531,0.000000,0.000000,0.250000,0,0);}
.m19_c00324{transform:matrix(0.312818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312818,0.000000,0.000000,0.250000,0,0);}
.m9f_c00324{transform:matrix(0.312976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312976,0.000000,0.000000,0.250000,0,0);}
.m6b_c00324{transform:matrix(0.313562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313562,0.000000,0.000000,0.250000,0,0);}
.m70_c00324{transform:matrix(0.314297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314297,0.000000,0.000000,0.250000,0,0);}
.mb6_c00324{transform:matrix(0.315140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315140,0.000000,0.000000,0.250000,0,0);}
.m2_c00324{transform:matrix(0.315194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315194,0.000000,0.000000,0.250000,0,0);}
.m56_c00324{transform:matrix(0.315655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315655,0.000000,0.000000,0.250000,0,0);}
.me_c00324{transform:matrix(0.315850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315850,0.000000,0.000000,0.250000,0,0);}
.mb_c00324{transform:matrix(0.316398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316398,0.000000,0.000000,0.250000,0,0);}
.m69_c00324{transform:matrix(0.317321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317321,0.000000,0.000000,0.250000,0,0);}
.m16_c00324{transform:matrix(0.317395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317395,0.000000,0.000000,0.250000,0,0);}
.m92_c00324{transform:matrix(0.317731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317731,0.000000,0.000000,0.250000,0,0);}
.mcc_c00324{transform:matrix(0.319306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319306,0.000000,0.000000,0.250000,0,0);}
.m42_c00324{transform:matrix(0.319782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319782,0.000000,0.000000,0.250000,0,0);}
.m66_c00324{transform:matrix(0.320769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320769,0.000000,0.000000,0.250000,0,0);}
.m80_c00324{transform:matrix(0.321826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321826,0.000000,0.000000,0.250000,0,0);}
.mc8_c00324{transform:matrix(0.321966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321966,0.000000,0.000000,0.250000,0,0);}
.m12_c00324{transform:matrix(0.323159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323159,0.000000,0.000000,0.250000,0,0);}
.m52_c00324{transform:matrix(0.324962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324962,0.000000,0.000000,0.250000,0,0);}
.m76_c00324{transform:matrix(0.325132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325132,0.000000,0.000000,0.250000,0,0);}
.m9c_c00324{transform:matrix(0.325989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325989,0.000000,0.000000,0.250000,0,0);}
.m61_c00324{transform:matrix(0.326437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326437,0.000000,0.000000,0.250000,0,0);}
.m82_c00324{transform:matrix(0.326992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326992,0.000000,0.000000,0.250000,0,0);}
.mc4_c00324{transform:matrix(0.327008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327008,0.000000,0.000000,0.250000,0,0);}
.m68_c00324{transform:matrix(0.327051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327051,0.000000,0.000000,0.250000,0,0);}
.m4_c00324{transform:matrix(0.327327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327327,0.000000,0.000000,0.250000,0,0);}
.m6e_c00324{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00324{transform:matrix(0.327753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327753,0.000000,0.000000,0.250000,0,0);}
.mab_c00324{transform:matrix(0.328412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328412,0.000000,0.000000,0.250000,0,0);}
.m3b_c00324{transform:matrix(0.329098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329098,0.000000,0.000000,0.250000,0,0);}
.m84_c00324{transform:matrix(0.329449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329449,0.000000,0.000000,0.250000,0,0);}
.mc5_c00324{transform:matrix(0.329567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329567,0.000000,0.000000,0.250000,0,0);}
.m14_c00324{transform:matrix(0.330091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330091,0.000000,0.000000,0.250000,0,0);}
.m65_c00324{transform:matrix(0.331453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331453,0.000000,0.000000,0.250000,0,0);}
.m99_c00324{transform:matrix(0.332745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332745,0.000000,0.000000,0.250000,0,0);}
.m64_c00324{transform:matrix(0.333803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333803,0.000000,0.000000,0.250000,0,0);}
.m86_c00324{transform:matrix(0.334862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334862,0.000000,0.000000,0.250000,0,0);}
.m59_c00324{transform:matrix(0.335110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335110,0.000000,0.000000,0.250000,0,0);}
.m83_c00324{transform:matrix(0.335583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335583,0.000000,0.000000,0.250000,0,0);}
.m51_c00324{transform:matrix(0.335775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335775,0.000000,0.000000,0.250000,0,0);}
.m44_c00324{transform:matrix(0.335860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335860,0.000000,0.000000,0.250000,0,0);}
.m18_c00324{transform:matrix(0.335995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335995,0.000000,0.000000,0.250000,0,0);}
.m89_c00324{transform:matrix(0.336214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336214,0.000000,0.000000,0.250000,0,0);}
.m5b_c00324{transform:matrix(0.336244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336244,0.000000,0.000000,0.250000,0,0);}
.m3a_c00324{transform:matrix(0.336513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336513,0.000000,0.000000,0.250000,0,0);}
.m71_c00324{transform:matrix(0.336648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336648,0.000000,0.000000,0.250000,0,0);}
.m4f_c00324{transform:matrix(0.336836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336836,0.000000,0.000000,0.250000,0,0);}
.mba_c00324{transform:matrix(0.338682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338682,0.000000,0.000000,0.250000,0,0);}
.m2f_c00324{transform:matrix(0.339448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339448,0.000000,0.000000,0.250000,0,0);}
.ma4_c00324{transform:matrix(0.339593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339593,0.000000,0.000000,0.250000,0,0);}
.m28_c00324{transform:matrix(0.339736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339736,0.000000,0.000000,0.250000,0,0);}
.maf_c00324{transform:matrix(0.341106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341106,0.000000,0.000000,0.250000,0,0);}
.m3d_c00324{transform:matrix(0.342744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342744,0.000000,0.000000,0.250000,0,0);}
.m50_c00324{transform:matrix(0.343667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343667,0.000000,0.000000,0.250000,0,0);}
.mcb_c00324{transform:matrix(0.344219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344219,0.000000,0.000000,0.250000,0,0);}
.m75_c00324{transform:matrix(0.345959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345959,0.000000,0.000000,0.250000,0,0);}
.ma1_c00324{transform:matrix(0.346604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346604,0.000000,0.000000,0.250000,0,0);}
.m97_c00324{transform:matrix(0.346894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346894,0.000000,0.000000,0.250000,0,0);}
.m3_c00324{transform:matrix(0.348976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348976,0.000000,0.000000,0.250000,0,0);}
.m43_c00324{transform:matrix(0.349784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349784,0.000000,0.000000,0.250000,0,0);}
.m15_c00324{transform:matrix(0.351514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351514,0.000000,0.000000,0.250000,0,0);}
.m67_c00324{transform:matrix(0.353245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353245,0.000000,0.000000,0.250000,0,0);}
.m6c_c00324{transform:matrix(0.354162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354162,0.000000,0.000000,0.250000,0,0);}
.m20_c00324{transform:matrix(0.354697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354697,0.000000,0.000000,0.250000,0,0);}
.ma8_c00324{transform:matrix(0.354705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354705,0.000000,0.000000,0.250000,0,0);}
.m7c_c00324{transform:matrix(0.357016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357016,0.000000,0.000000,0.250000,0,0);}
.m62_c00324{transform:matrix(0.357515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357515,0.000000,0.000000,0.250000,0,0);}
.mac_c00324{transform:matrix(0.357677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357677,0.000000,0.000000,0.250000,0,0);}
.mc9_c00324{transform:matrix(0.358011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358011,0.000000,0.000000,0.250000,0,0);}
.m85_c00324{transform:matrix(0.358730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358730,0.000000,0.000000,0.250000,0,0);}
.md_c00324{transform:matrix(0.359282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359282,0.000000,0.000000,0.250000,0,0);}
.m2c_c00324{transform:matrix(0.359356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359356,0.000000,0.000000,0.250000,0,0);}
.mc1_c00324{transform:matrix(0.363048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363048,0.000000,0.000000,0.250000,0,0);}
.m7d_c00324{transform:matrix(0.365498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365498,0.000000,0.000000,0.250000,0,0);}
.m22_c00324{transform:matrix(0.369941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369941,0.000000,0.000000,0.250000,0,0);}
.m98_c00324{transform:matrix(0.371671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371671,0.000000,0.000000,0.250000,0,0);}
.mc0_c00324{transform:matrix(0.372923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372923,0.000000,0.000000,0.250000,0,0);}
.md0_c00324{transform:matrix(0.373426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373426,0.000000,0.000000,0.250000,0,0);}
.m1d_c00324{transform:matrix(0.374106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374106,0.000000,0.000000,0.250000,0,0);}
.m3e_c00324{transform:matrix(0.376264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376264,0.000000,0.000000,0.250000,0,0);}
.mb2_c00324{transform:matrix(0.390602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390602,0.000000,0.000000,0.250000,0,0);}
.m26_c00324{transform:matrix(0.396876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396876,0.000000,0.000000,0.250000,0,0);}
.m5d_c00324{transform:matrix(0.403963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403963,0.000000,0.000000,0.250000,0,0);}
.m36_c00324{transform:matrix(0.413570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413570,0.000000,0.000000,0.250000,0,0);}
.ma9_c00324{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);}
.v4_c00324{vertical-align:-45.639000px;}
.v2_c00324{vertical-align:-29.937600px;}
.v3_c00324{vertical-align:-5.702400px;}
.v0_c00324{vertical-align:0.000000px;}
.v1_c00324{vertical-align:1.445400px;}
.lsf_c00324{letter-spacing:-3.291750px;}
.ls5_c00324{letter-spacing:-2.668050px;}
.ls6_c00324{letter-spacing:-1.524600px;}
.lsb_c00324{letter-spacing:-1.257795px;}
.lsd_c00324{letter-spacing:-0.777546px;}
.ls3_c00324{letter-spacing:0.000000px;}
.ls9_c00324{letter-spacing:0.083853px;}
.lsa_c00324{letter-spacing:1.158696px;}
.ls2_c00324{letter-spacing:2.279277px;}
.ls8_c00324{letter-spacing:2.530836px;}
.ls7_c00324{letter-spacing:2.614689px;}
.ls4_c00324{letter-spacing:3.811500px;}
.ls0_c00324{letter-spacing:10.443510px;}
.lsc_c00324{letter-spacing:48.470598px;}
.lse_c00324{letter-spacing:52.747398px;}
.ls1_c00324{letter-spacing:86.287410px;}
.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:-19.057500px;}
.ws2_c00324{word-spacing:-0.762300px;}
.ws5_c00324{word-spacing:0.000000px;}
.ws1_c00324{word-spacing:2.744280px;}
.ws3_c00324{word-spacing:4.726260px;}
.ws4_c00324{word-spacing:4.802490px;}
._16_c00324{margin-left:-15.534090px;}
._17_c00324{margin-left:-11.434500px;}
._18_c00324{margin-left:-8.690220px;}
._8_c00324{margin-left:-5.563800px;}
._19_c00324{margin-left:-2.896740px;}
._e_c00324{width:1.046430px;}
._b_c00324{width:3.963960px;}
._4_c00324{width:6.250860px;}
._15_c00324{width:7.623000px;}
._2_c00324{width:9.071370px;}
._5_c00324{width:10.442520px;}
._0_c00324{width:11.739420px;}
._a_c00324{width:13.111560px;}
._9_c00324{width:15.489540px;}
._7_c00324{width:17.151750px;}
._1b_c00324{width:21.421620px;}
._3_c00324{width:22.869000px;}
._11_c00324{width:24.242130px;}
._14_c00324{width:26.375580px;}
._1_c00324{width:29.958390px;}
._12_c00324{width:31.312710px;}
._10_c00324{width:33.541200px;}
._c_c00324{width:35.218260px;}
._6_c00324{width:36.895320px;}
._1c_c00324{width:38.339730px;}
._13_c00324{width:41.842350px;}
._1a_c00324{width:46.042920px;}
._f_c00324{width:198.879120px;}
._d_c00324{width:1593.682200px;}
.fc0_c00324{color:transparent;}
.fs2_c00324{font-size:22.176000px;}
.fs5_c00324{font-size:22.374000px;}
.fs0_c00324{font-size:27.720000px;}
.fs1_c00324{font-size:33.660000px;}
.fs7_c00324{font-size:38.808000px;}
.fs4_c00324{font-size:39.600000px;}
.fs6_c00324{font-size:43.560000px;}
.fsa_c00324{font-size:48.470598px;}
.fsb_c00324{font-size:52.747398px;}
.fs8_c00324{font-size:64.548000px;}
.fs9_c00324{font-size:70.884000px;}
.fs3_c00324{font-size:76.230000px;}
.fsc_c00324{font-size:94.050000px;}
.y0_c00324{bottom:0.000000px;}
.y25_c00324{bottom:61.207785px;}
.y1_c00324{bottom:76.500000px;}
.y5_c00324{bottom:110.390985px;}
.y24_c00324{bottom:133.561935px;}
.y23_c00324{bottom:163.494585px;}
.y22_c00324{bottom:198.778185px;}
.y21_c00324{bottom:231.571935px;}
.y20_c00324{bottom:296.080335px;}
.y1f_c00324{bottom:328.869135px;}
.y1e_c00324{bottom:362.722185px;}
.y1d_c00324{bottom:395.154585px;}
.y1c_c00324{bottom:428.304735px;}
.y1b_c00324{bottom:460.732185px;}
.y1a_c00324{bottom:493.525935px;}
.y19_c00324{bottom:526.314735px;}
.y18_c00324{bottom:558.747135px;}
.y17_c00324{bottom:558.751095px;}
.y16_c00324{bottom:591.892335px;}
.y15_c00324{bottom:608.281785px;}
.y14_c00324{bottom:625.393935px;}
.y11_c00324{bottom:658.182735px;}
.y13_c00324{bottom:658.539135px;}
.y12_c00324{bottom:663.885135px;}
.y10_c00324{bottom:679.210335px;}
.y4_c00324{bottom:687.402585px;}
.yf_c00324{bottom:721.260585px;}
.ye_c00324{bottom:730.526985px;}
.yd_c00324{bottom:755.123535px;}
.y3_c00324{bottom:785.056185px;}
.yc_c00324{bottom:787.912335px;}
.yb_c00324{bottom:819.988335px;}
.ya_c00324{bottom:834.239385px;}
.y9_c00324{bottom:854.202735px;}
.y8_c00324{bottom:886.635135px;}
.y7_c00324{bottom:886.642065px;}
.y2_c00324{bottom:895.545135px;}
.y6_c00324{bottom:920.488185px;}
.h7_c00324{height:21.958857px;}
.h4_c00324{height:23.128875px;}
.h2_c00324{height:28.911094px;}
.hc_c00324{height:32.281418px;}
.h3_c00324{height:33.035449px;}
.hd_c00324{height:35.129767px;}
.h9_c00324{height:40.475531px;}
.h6_c00324{height:41.301563px;}
.h8_c00324{height:45.431719px;}
.ha_c00324{height:67.321547px;}
.hb_c00324{height:69.568770px;}
.h5_c00324{height:74.815576px;}
.he_c00324{height:98.091211px;}
.h1_c00324{height:1110.000000px;}
.h0_c00324{height:1263.000000px;}
.w1_c00324{width:763.500000px;}
.w0_c00324{width:892.500000px;}
.x0_c00324{left:0.000000px;}
.x3_c00324{left:30.433650px;}
.x2_c00324{left:61.390950px;}
.x1_c00324{left:64.500000px;}
.x4_c00324{left:90.259350px;}
.x3c_c00324{left:95.704350px;}
.x5_c00324{left:97.332900px;}
.x42_c00324{left:98.461500px;}
.x82_c00324{left:99.609900px;}
.x41_c00324{left:102.020550px;}
.x27_c00324{left:116.855700px;}
.x43_c00324{left:119.340600px;}
.x11_c00324{left:122.676900px;}
.x35_c00324{left:128.522850px;}
.x48_c00324{left:130.116750px;}
.x7d_c00324{left:131.176050px;}
.x28_c00324{left:136.309200px;}
.x29_c00324{left:140.952300px;}
.x36_c00324{left:151.847250px;}
.x72_c00324{left:153.960900px;}
.x6_c00324{left:161.623500px;}
.x53_c00324{left:162.762000px;}
.x1a_c00324{left:163.959900px;}
.x12_c00324{left:173.389650px;}
.x60_c00324{left:174.538050px;}
.x73_c00324{left:176.404200px;}
.x37_c00324{left:183.408450px;}
.x6e_c00324{left:186.126000px;}
.x49_c00324{left:188.091150px;}
.x1b_c00324{left:195.912150px;}
.x2a_c00324{left:198.109950px;}
.x38_c00324{left:207.816900px;}
.x77_c00324{left:209.593950px;}
.x2b_c00324{left:218.617800px;}
.x1c_c00324{left:229.319700px;}
.x64_c00324{left:230.918550px;}
.x4a_c00324{left:241.318500px;}
.x54_c00324{left:242.367900px;}
.x7_c00324{left:251.946150px;}
.x13_c00324{left:263.266800px;}
.x67_c00324{left:265.029000px;}
.x39_c00324{left:274.800300px;}
.x78_c00324{left:276.567450px;}
.x74_c00324{left:288.957300px;}
.x1d_c00324{left:294.907200px;}
.x61_c00324{left:296.357550px;}
.x79_c00324{left:297.966300px;}
.x83_c00324{left:299.035500px;}
.x2c_c00324{left:306.336750px;}
.x4b_c00324{left:307.782150px;}
.x14_c00324{left:317.449500px;}
.x1e_c00324{left:318.454350px;}
.x3a_c00324{left:330.388800px;}
.x68_c00324{left:331.680750px;}
.x6f_c00324{left:340.179900px;}
.x2d_c00324{left:341.402550px;}
.x7e_c00324{left:342.555900px;}
.x69_c00324{left:353.416200px;}
.x1f_c00324{left:362.445000px;}
.x62_c00324{left:364.256700px;}
.x6a_c00324{left:366.603000px;}
.x2e_c00324{left:373.676550px;}
.x4c_c00324{left:374.884350px;}
.x6b_c00324{left:385.417950px;}
.x55_c00324{left:386.858400px;}
.x2f_c00324{left:395.624850px;}
.x7f_c00324{left:397.000950px;}
.x75_c00324{left:398.114700px;}
.x15_c00324{left:405.401100px;}
.x84_c00324{left:408.247350px;}
.x20_c00324{left:416.137650px;}
.x8_c00324{left:417.380100px;}
.x6c_c00324{left:419.429400px;}
.x56_c00324{left:421.008450px;}
.x5a_c00324{left:429.141300px;}
.x85_c00324{left:430.755000px;}
.x30_c00324{left:434.620950px;}
.x3d_c00324{left:439.333350px;}
.x9_c00324{left:440.442150px;}
.x45_c00324{left:442.734000px;}
.x44_c00324{left:444.565500px;}
.x65_c00324{left:451.970700px;}
.x57_c00324{left:463.256700px;}
.x31_c00324{left:471.736050px;}
.xa_c00324{left:472.919100px;}
.x5b_c00324{left:474.250650px;}
.x66_c00324{left:483.814050px;}
.x21_c00324{left:485.041650px;}
.x32_c00324{left:495.416850px;}
.x76_c00324{left:496.495950px;}
.x16_c00324{left:506.425650px;}
.x46_c00324{left:507.529500px;}
.x86_c00324{left:508.559100px;}
.x80_c00324{left:510.355950px;}
.x33_c00324{left:516.597900px;}
.x3e_c00324{left:518.577900px;}
.x7a_c00324{left:519.642150px;}
.x4d_c00324{left:529.982700px;}
.x5c_c00324{left:531.665700px;}
.x87_c00324{left:533.487300px;}
.x17_c00324{left:539.570850px;}
.x5e_c00324{left:549.743100px;}
.x59_c00324{left:551.356800px;}
.xb_c00324{left:553.089300px;}
.x70_c00324{left:562.746750px;}
.x3b_c00324{left:573.478350px;}
.x22_c00324{left:583.838700px;}
.x4e_c00324{left:584.843550px;}
.xc_c00324{left:594.362400px;}
.x3f_c00324{left:595.565250px;}
.xd_c00324{left:605.707800px;}
.x81_c00324{left:607.321500px;}
.x23_c00324{left:616.404750px;}
.x4f_c00324{left:618.295650px;}
.x40_c00324{left:626.770050px;}
.x34_c00324{left:627.963000px;}
.x63_c00324{left:629.754900px;}
.x6d_c00324{left:638.917350px;}
.x47_c00324{left:640.466700px;}
.x7b_c00324{left:644.599950px;}
.x50_c00324{left:649.540050px;}
.x24_c00324{left:651.158700px;}
.xe_c00324{left:660.786450px;}
.x51_c00324{left:662.177400px;}
.x18_c00324{left:672.191250px;}
.x71_c00324{left:673.943550px;}
.xf_c00324{left:682.398150px;}
.x5d_c00324{left:683.843550px;}
.x25_c00324{left:694.986000px;}
.x7c_c00324{left:696.634350px;}
.x5f_c00324{left:706.455150px;}
.x19_c00324{left:707.727300px;}
.x26_c00324{left:716.340300px;}
.x52_c00324{left:727.764900px;}
.x10_c00324{left:738.456900px;}
.x58_c00324{left:750.218100px;}
@media print{
.v4_c00324{vertical-align:-40.568000pt;}
.v2_c00324{vertical-align:-26.611200pt;}
.v3_c00324{vertical-align:-5.068800pt;}
.v0_c00324{vertical-align:0.000000pt;}
.v1_c00324{vertical-align:1.284800pt;}
.lsf_c00324{letter-spacing:-2.926000pt;}
.ls5_c00324{letter-spacing:-2.371600pt;}
.ls6_c00324{letter-spacing:-1.355200pt;}
.lsb_c00324{letter-spacing:-1.118040pt;}
.lsd_c00324{letter-spacing:-0.691152pt;}
.ls3_c00324{letter-spacing:0.000000pt;}
.ls9_c00324{letter-spacing:0.074536pt;}
.lsa_c00324{letter-spacing:1.029952pt;}
.ls2_c00324{letter-spacing:2.026024pt;}
.ls8_c00324{letter-spacing:2.249632pt;}
.ls7_c00324{letter-spacing:2.324168pt;}
.ls4_c00324{letter-spacing:3.388000pt;}
.ls0_c00324{letter-spacing:9.283120pt;}
.lsc_c00324{letter-spacing:43.084976pt;}
.lse_c00324{letter-spacing:46.886576pt;}
.ls1_c00324{letter-spacing:76.699920pt;}
.ws0_c00324{word-spacing:-16.940000pt;}
.ws2_c00324{word-spacing:-0.677600pt;}
.ws5_c00324{word-spacing:0.000000pt;}
.ws1_c00324{word-spacing:2.439360pt;}
.ws3_c00324{word-spacing:4.201120pt;}
.ws4_c00324{word-spacing:4.268880pt;}
._16_c00324{margin-left:-13.808080pt;}
._17_c00324{margin-left:-10.164000pt;}
._18_c00324{margin-left:-7.724640pt;}
._8_c00324{margin-left:-4.945600pt;}
._19_c00324{margin-left:-2.574880pt;}
._e_c00324{width:0.930160pt;}
._b_c00324{width:3.523520pt;}
._4_c00324{width:5.556320pt;}
._15_c00324{width:6.776000pt;}
._2_c00324{width:8.063440pt;}
._5_c00324{width:9.282240pt;}
._0_c00324{width:10.435040pt;}
._a_c00324{width:11.654720pt;}
._9_c00324{width:13.768480pt;}
._7_c00324{width:15.246000pt;}
._1b_c00324{width:19.041440pt;}
._3_c00324{width:20.328000pt;}
._11_c00324{width:21.548560pt;}
._14_c00324{width:23.444960pt;}
._1_c00324{width:26.629680pt;}
._12_c00324{width:27.833520pt;}
._10_c00324{width:29.814400pt;}
._c_c00324{width:31.305120pt;}
._6_c00324{width:32.795840pt;}
._1c_c00324{width:34.079760pt;}
._13_c00324{width:37.193200pt;}
._1a_c00324{width:40.927040pt;}
._f_c00324{width:176.781440pt;}
._d_c00324{width:1416.606400pt;}
.fs2_c00324{font-size:19.712000pt;}
.fs5_c00324{font-size:19.888000pt;}
.fs0_c00324{font-size:24.640000pt;}
.fs1_c00324{font-size:29.920000pt;}
.fs7_c00324{font-size:34.496000pt;}
.fs4_c00324{font-size:35.200000pt;}
.fs6_c00324{font-size:38.720000pt;}
.fsa_c00324{font-size:43.084976pt;}
.fsb_c00324{font-size:46.886576pt;}
.fs8_c00324{font-size:57.376000pt;}
.fs9_c00324{font-size:63.008000pt;}
.fs3_c00324{font-size:67.760000pt;}
.fsc_c00324{font-size:83.600000pt;}
.y0_c00324{bottom:0.000000pt;}
.y25_c00324{bottom:54.406920pt;}
.y1_c00324{bottom:68.000000pt;}
.y5_c00324{bottom:98.125320pt;}
.y24_c00324{bottom:118.721720pt;}
.y23_c00324{bottom:145.328520pt;}
.y22_c00324{bottom:176.691720pt;}
.y21_c00324{bottom:205.841720pt;}
.y20_c00324{bottom:263.182520pt;}
.y1f_c00324{bottom:292.328120pt;}
.y1e_c00324{bottom:322.419720pt;}
.y1d_c00324{bottom:351.248520pt;}
.y1c_c00324{bottom:380.715320pt;}
.y1b_c00324{bottom:409.539720pt;}
.y1a_c00324{bottom:438.689720pt;}
.y19_c00324{bottom:467.835320pt;}
.y18_c00324{bottom:496.664120pt;}
.y17_c00324{bottom:496.667640pt;}
.y16_c00324{bottom:526.126520pt;}
.y15_c00324{bottom:540.694920pt;}
.y14_c00324{bottom:555.905720pt;}
.y11_c00324{bottom:585.051320pt;}
.y13_c00324{bottom:585.368120pt;}
.y12_c00324{bottom:590.120120pt;}
.y10_c00324{bottom:603.742520pt;}
.y4_c00324{bottom:611.024520pt;}
.yf_c00324{bottom:641.120520pt;}
.ye_c00324{bottom:649.357320pt;}
.yd_c00324{bottom:671.220920pt;}
.y3_c00324{bottom:697.827720pt;}
.yc_c00324{bottom:700.366520pt;}
.yb_c00324{bottom:728.878520pt;}
.ya_c00324{bottom:741.546120pt;}
.y9_c00324{bottom:759.291320pt;}
.y8_c00324{bottom:788.120120pt;}
.y7_c00324{bottom:788.126280pt;}
.y2_c00324{bottom:796.040120pt;}
.y6_c00324{bottom:818.211720pt;}
.h7_c00324{height:19.518984pt;}
.h4_c00324{height:20.559000pt;}
.h2_c00324{height:25.698750pt;}
.hc_c00324{height:28.694594pt;}
.h3_c00324{height:29.364844pt;}
.hd_c00324{height:31.226460pt;}
.h9_c00324{height:35.978250pt;}
.h6_c00324{height:36.712500pt;}
.h8_c00324{height:40.383750pt;}
.ha_c00324{height:59.841375pt;}
.hb_c00324{height:61.838906pt;}
.h5_c00324{height:66.502734pt;}
.he_c00324{height:87.192188pt;}
.h1_c00324{height:986.666667pt;}
.h0_c00324{height:1122.666667pt;}
.w1_c00324{width:678.666667pt;}
.w0_c00324{width:793.333333pt;}
.x0_c00324{left:0.000000pt;}
.x3_c00324{left:27.052133pt;}
.x2_c00324{left:54.569733pt;}
.x1_c00324{left:57.333333pt;}
.x4_c00324{left:80.230533pt;}
.x3c_c00324{left:85.070533pt;}
.x5_c00324{left:86.518133pt;}
.x42_c00324{left:87.521333pt;}
.x82_c00324{left:88.542133pt;}
.x41_c00324{left:90.684933pt;}
.x27_c00324{left:103.871733pt;}
.x43_c00324{left:106.080533pt;}
.x11_c00324{left:109.046133pt;}
.x35_c00324{left:114.242533pt;}
.x48_c00324{left:115.659333pt;}
.x7d_c00324{left:116.600933pt;}
.x28_c00324{left:121.163733pt;}
.x29_c00324{left:125.290933pt;}
.x36_c00324{left:134.975333pt;}
.x72_c00324{left:136.854133pt;}
.x6_c00324{left:143.665333pt;}
.x53_c00324{left:144.677333pt;}
.x1a_c00324{left:145.742133pt;}
.x12_c00324{left:154.124133pt;}
.x60_c00324{left:155.144933pt;}
.x73_c00324{left:156.803733pt;}
.x37_c00324{left:163.029733pt;}
.x6e_c00324{left:165.445333pt;}
.x49_c00324{left:167.192133pt;}
.x1b_c00324{left:174.144133pt;}
.x2a_c00324{left:176.097733pt;}
.x38_c00324{left:184.726133pt;}
.x77_c00324{left:186.305733pt;}
.x2b_c00324{left:194.326933pt;}
.x1c_c00324{left:203.839733pt;}
.x64_c00324{left:205.260933pt;}
.x4a_c00324{left:214.505333pt;}
.x54_c00324{left:215.438133pt;}
.x7_c00324{left:223.952133pt;}
.x13_c00324{left:234.014933pt;}
.x67_c00324{left:235.581333pt;}
.x39_c00324{left:244.266933pt;}
.x78_c00324{left:245.837733pt;}
.x74_c00324{left:256.850933pt;}
.x1d_c00324{left:262.139733pt;}
.x61_c00324{left:263.428933pt;}
.x79_c00324{left:264.858933pt;}
.x83_c00324{left:265.809333pt;}
.x2c_c00324{left:272.299333pt;}
.x4b_c00324{left:273.584133pt;}
.x14_c00324{left:282.177333pt;}
.x1e_c00324{left:283.070533pt;}
.x3a_c00324{left:293.678933pt;}
.x68_c00324{left:294.827333pt;}
.x6f_c00324{left:302.382133pt;}
.x2d_c00324{left:303.468933pt;}
.x7e_c00324{left:304.494133pt;}
.x69_c00324{left:314.147733pt;}
.x1f_c00324{left:322.173333pt;}
.x62_c00324{left:323.783733pt;}
.x6a_c00324{left:325.869333pt;}
.x2e_c00324{left:332.156933pt;}
.x4c_c00324{left:333.230533pt;}
.x6b_c00324{left:342.593733pt;}
.x55_c00324{left:343.874133pt;}
.x2f_c00324{left:351.666533pt;}
.x7f_c00324{left:352.889733pt;}
.x75_c00324{left:353.879733pt;}
.x15_c00324{left:360.356533pt;}
.x84_c00324{left:362.886533pt;}
.x20_c00324{left:369.900133pt;}
.x8_c00324{left:371.004533pt;}
.x6c_c00324{left:372.826133pt;}
.x56_c00324{left:374.229733pt;}
.x5a_c00324{left:381.458933pt;}
.x85_c00324{left:382.893333pt;}
.x30_c00324{left:386.329733pt;}
.x3d_c00324{left:390.518533pt;}
.x9_c00324{left:391.504133pt;}
.x45_c00324{left:393.541333pt;}
.x44_c00324{left:395.169333pt;}
.x65_c00324{left:401.751733pt;}
.x57_c00324{left:411.783733pt;}
.x31_c00324{left:419.320933pt;}
.xa_c00324{left:420.372533pt;}
.x5b_c00324{left:421.556133pt;}
.x66_c00324{left:430.056933pt;}
.x21_c00324{left:431.148133pt;}
.x32_c00324{left:440.370533pt;}
.x76_c00324{left:441.329733pt;}
.x16_c00324{left:450.156133pt;}
.x46_c00324{left:451.137333pt;}
.x86_c00324{left:452.052533pt;}
.x80_c00324{left:453.649733pt;}
.x33_c00324{left:459.198133pt;}
.x3e_c00324{left:460.958133pt;}
.x7a_c00324{left:461.904133pt;}
.x4d_c00324{left:471.095733pt;}
.x5c_c00324{left:472.591733pt;}
.x87_c00324{left:474.210933pt;}
.x17_c00324{left:479.618533pt;}
.x5e_c00324{left:488.660533pt;}
.x59_c00324{left:490.094933pt;}
.xb_c00324{left:491.634933pt;}
.x70_c00324{left:500.219333pt;}
.x3b_c00324{left:509.758533pt;}
.x22_c00324{left:518.967733pt;}
.x4e_c00324{left:519.860933pt;}
.xc_c00324{left:528.322133pt;}
.x3f_c00324{left:529.391333pt;}
.xd_c00324{left:538.406933pt;}
.x81_c00324{left:539.841333pt;}
.x23_c00324{left:547.915333pt;}
.x4f_c00324{left:549.596133pt;}
.x40_c00324{left:557.128933pt;}
.x34_c00324{left:558.189333pt;}
.x63_c00324{left:559.782133pt;}
.x6d_c00324{left:567.926533pt;}
.x47_c00324{left:569.303733pt;}
.x7b_c00324{left:572.977733pt;}
.x50_c00324{left:577.368933pt;}
.x24_c00324{left:578.807733pt;}
.xe_c00324{left:587.365733pt;}
.x51_c00324{left:588.602133pt;}
.x18_c00324{left:597.503333pt;}
.x71_c00324{left:599.060933pt;}
.xf_c00324{left:606.576133pt;}
.x5d_c00324{left:607.860933pt;}
.x25_c00324{left:617.765333pt;}
.x7c_c00324{left:619.230533pt;}
.x5f_c00324{left:627.960133pt;}
.x19_c00324{left:629.090933pt;}
.x26_c00324{left:636.746933pt;}
.x52_c00324{left:646.902133pt;}
.x10_c00324{left:656.406133pt;}
.x58_c00324{left:666.860533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3e8967034d08b504cd676e34.woff2')format("woff");}.ff1_c00325{font-family:ff1_c00325;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00325;src:url('chunks/assets/font_527bdd55781ec2d8d20f482b.woff2')format("woff");}.ff2_c00325{font-family:ff2_c00325;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00325;src:url('chunks/assets/font_a48f5bc247055e87707e5158.woff2')format("woff");}.ff3_c00325{font-family:ff3_c00325;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00325;src:url('chunks/assets/font_e92f1ae50ab007cf6dc93179.woff2')format("woff");}.ff4_c00325{font-family:ff4_c00325;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00325;src:url('chunks/assets/font_adef168cc2d10e55fd645ab6.woff2')format("woff");}.ff5_c00325{font-family:ff5_c00325;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00325;src:url('chunks/assets/font_a9581f5b658824404cf8527d.woff2')format("woff");}.ff6_c00325{font-family:ff6_c00325;line-height:1.435059;font-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_c00325{transform:matrix(0.073530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073530,0.000000,0.000000,0.250000,0,0);}
.m8d_c00325{transform:matrix(0.078947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078947,0.000000,0.000000,0.250000,0,0);}
.m2c_c00325{transform:matrix(0.086997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086997,0.000000,0.000000,0.250000,0,0);}
.m22_c00325{transform:matrix(0.099391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099391,0.000000,0.000000,0.250000,0,0);}
.m52_c00325{transform:matrix(0.107348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107348,0.000000,0.000000,0.250000,0,0);}
.m2b_c00325{transform:matrix(0.112051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112051,0.000000,0.000000,0.250000,0,0);}
.m33_c00325{transform:matrix(0.117187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117187,0.000000,0.000000,0.250000,0,0);}
.m2f_c00325{transform:matrix(0.136652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136652,0.000000,0.000000,0.250000,0,0);}
.mb_c00325{transform:matrix(0.139352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139352,0.000000,0.000000,0.250000,0,0);}
.m8e_c00325{transform:matrix(0.141448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141448,0.000000,0.000000,0.250000,0,0);}
.m2a_c00325{transform:matrix(0.145348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145348,0.000000,0.000000,0.250000,0,0);}
.m26_c00325{transform:matrix(0.146466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146466,0.000000,0.000000,0.250000,0,0);}
.m39_c00325{transform:matrix(0.148693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148693,0.000000,0.000000,0.250000,0,0);}
.m62_c00325{transform:matrix(0.148822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148822,0.000000,0.000000,0.250000,0,0);}
.m67_c00325{transform:matrix(0.150338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150338,0.000000,0.000000,0.250000,0,0);}
.m38_c00325{transform:matrix(0.150735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150735,0.000000,0.000000,0.250000,0,0);}
.m8a_c00325{transform:matrix(0.157895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157895,0.000000,0.000000,0.250000,0,0);}
.m30_c00325{transform:matrix(0.164516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164516,0.000000,0.000000,0.250000,0,0);}
.m27_c00325{transform:matrix(0.168160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168160,0.000000,0.000000,0.250000,0,0);}
.m6e_c00325{transform:matrix(0.168767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168767,0.000000,0.000000,0.250000,0,0);}
.m32_c00325{transform:matrix(0.168918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168918,0.000000,0.000000,0.250000,0,0);}
.m5c_c00325{transform:matrix(0.173370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173370,0.000000,0.000000,0.250000,0,0);}
.m89_c00325{transform:matrix(0.174341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174341,0.000000,0.000000,0.250000,0,0);}
.m8b_c00325{transform:matrix(0.177632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177632,0.000000,0.000000,0.250000,0,0);}
.m8c_c00325{transform:matrix(0.180921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180921,0.000000,0.000000,0.250000,0,0);}
.m2d_c00325{transform:matrix(0.181828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181828,0.000000,0.000000,0.250000,0,0);}
.m24_c00325{transform:matrix(0.182050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182050,0.000000,0.000000,0.250000,0,0);}
.m23_c00325{transform:matrix(0.188132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188132,0.000000,0.000000,0.250000,0,0);}
.m31_c00325{transform:matrix(0.189188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189188,0.000000,0.000000,0.250000,0,0);}
.m21_c00325{transform:matrix(0.204277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204277,0.000000,0.000000,0.250000,0,0);}
.m3a_c00325{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);}
.m2e_c00325{transform:matrix(0.209755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209755,0.000000,0.000000,0.250000,0,0);}
.m76_c00325{transform:matrix(0.210648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210648,0.000000,0.000000,0.250000,0,0);}
.m1d_c00325{transform:matrix(0.227345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227345,0.000000,0.000000,0.250000,0,0);}
.m42_c00325{transform:matrix(0.232397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232397,0.000000,0.000000,0.250000,0,0);}
.m28_c00325{transform:matrix(0.235488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235488,0.000000,0.000000,0.250000,0,0);}
.m29_c00325{transform:matrix(0.237219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237219,0.000000,0.000000,0.250000,0,0);}
.m5e_c00325{transform:matrix(0.240411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240411,0.000000,0.000000,0.250000,0,0);}
.m6f_c00325{transform:matrix(0.243787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243787,0.000000,0.000000,0.250000,0,0);}
.m1e_c00325{transform:matrix(0.246735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246735,0.000000,0.000000,0.250000,0,0);}
.m6d_c00325{transform:matrix(0.247122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247122,0.000000,0.000000,0.250000,0,0);}
.m0_c00325{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00325{transform:matrix(0.251273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251273,0.000000,0.000000,0.250000,0,0);}
.m34_c00325{transform:matrix(0.256389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256389,0.000000,0.000000,0.250000,0,0);}
.m68_c00325{transform:matrix(0.257953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257953,0.000000,0.000000,0.250000,0,0);}
.m71_c00325{transform:matrix(0.258683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258683,0.000000,0.000000,0.250000,0,0);}
.m90_c00325{transform:matrix(0.259168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259168,0.000000,0.000000,0.250000,0,0);}
.m4f_c00325{transform:matrix(0.261988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261988,0.000000,0.000000,0.250000,0,0);}
.m20_c00325{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m14_c00325{transform:matrix(0.270118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270118,0.000000,0.000000,0.250000,0,0);}
.m1_c00325{transform:matrix(0.270775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270775,0.000000,0.000000,0.250000,0,0);}
.m44_c00325{transform:matrix(0.272337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272337,0.000000,0.000000,0.250000,0,0);}
.m3f_c00325{transform:matrix(0.275129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275129,0.000000,0.000000,0.250000,0,0);}
.m83_c00325{transform:matrix(0.277508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277508,0.000000,0.000000,0.250000,0,0);}
.m15_c00325{transform:matrix(0.279565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279565,0.000000,0.000000,0.250000,0,0);}
.m5d_c00325{transform:matrix(0.279669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279669,0.000000,0.000000,0.250000,0,0);}
.m37_c00325{transform:matrix(0.279814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279814,0.000000,0.000000,0.250000,0,0);}
.m46_c00325{transform:matrix(0.281929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281929,0.000000,0.000000,0.250000,0,0);}
.m66_c00325{transform:matrix(0.282201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282201,0.000000,0.000000,0.250000,0,0);}
.m85_c00325{transform:matrix(0.282611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282611,0.000000,0.000000,0.250000,0,0);}
.m78_c00325{transform:matrix(0.282826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282826,0.000000,0.000000,0.250000,0,0);}
.m8f_c00325{transform:matrix(0.284684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284684,0.000000,0.000000,0.250000,0,0);}
.m5_c00325{transform:matrix(0.285320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285320,0.000000,0.000000,0.250000,0,0);}
.md_c00325{transform:matrix(0.287241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287241,0.000000,0.000000,0.250000,0,0);}
.m60_c00325{transform:matrix(0.287340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287340,0.000000,0.000000,0.250000,0,0);}
.m96_c00325{transform:matrix(0.287406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287406,0.000000,0.000000,0.250000,0,0);}
.m35_c00325{transform:matrix(0.287720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287720,0.000000,0.000000,0.250000,0,0);}
.m48_c00325{transform:matrix(0.287919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287919,0.000000,0.000000,0.250000,0,0);}
.m3_c00325{transform:matrix(0.288999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288999,0.000000,0.000000,0.250000,0,0);}
.m43_c00325{transform:matrix(0.289782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289782,0.000000,0.000000,0.250000,0,0);}
.m86_c00325{transform:matrix(0.289918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289918,0.000000,0.000000,0.250000,0,0);}
.m4d_c00325{transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);}
.m82_c00325{transform:matrix(0.290438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290438,0.000000,0.000000,0.250000,0,0);}
.m45_c00325{transform:matrix(0.290613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290613,0.000000,0.000000,0.250000,0,0);}
.m9_c00325{transform:matrix(0.292282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292282,0.000000,0.000000,0.250000,0,0);}
.m95_c00325{transform:matrix(0.295106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295106,0.000000,0.000000,0.250000,0,0);}
.m69_c00325{transform:matrix(0.296508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296508,0.000000,0.000000,0.250000,0,0);}
.mf_c00325{transform:matrix(0.297320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297320,0.000000,0.000000,0.250000,0,0);}
.m3e_c00325{transform:matrix(0.297691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297691,0.000000,0.000000,0.250000,0,0);}
.m80_c00325{transform:matrix(0.298471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298471,0.000000,0.000000,0.250000,0,0);}
.m75_c00325{transform:matrix(0.299681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299681,0.000000,0.000000,0.250000,0,0);}
.m8_c00325{transform:matrix(0.302092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302092,0.000000,0.000000,0.250000,0,0);}
.m4a_c00325{transform:matrix(0.303069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303069,0.000000,0.000000,0.250000,0,0);}
.m40_c00325{transform:matrix(0.303143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303143,0.000000,0.000000,0.250000,0,0);}
.m81_c00325{transform:matrix(0.304134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304134,0.000000,0.000000,0.250000,0,0);}
.m87_c00325{transform:matrix(0.304796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304796,0.000000,0.000000,0.250000,0,0);}
.m54_c00325{transform:matrix(0.305306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305306,0.000000,0.000000,0.250000,0,0);}
.m1c_c00325{transform:matrix(0.306372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306372,0.000000,0.000000,0.250000,0,0);}
.m7b_c00325{transform:matrix(0.307446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307446,0.000000,0.000000,0.250000,0,0);}
.m6a_c00325{transform:matrix(0.309919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309919,0.000000,0.000000,0.250000,0,0);}
.m61_c00325{transform:matrix(0.310694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310694,0.000000,0.000000,0.250000,0,0);}
.m97_c00325{transform:matrix(0.311579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311579,0.000000,0.000000,0.250000,0,0);}
.m92_c00325{transform:matrix(0.312541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312541,0.000000,0.000000,0.250000,0,0);}
.m55_c00325{transform:matrix(0.314805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314805,0.000000,0.000000,0.250000,0,0);}
.m47_c00325{transform:matrix(0.315382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315382,0.000000,0.000000,0.250000,0,0);}
.m7e_c00325{transform:matrix(0.315494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315494,0.000000,0.000000,0.250000,0,0);}
.m36_c00325{transform:matrix(0.315928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315928,0.000000,0.000000,0.250000,0,0);}
.m4c_c00325{transform:matrix(0.316023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316023,0.000000,0.000000,0.250000,0,0);}
.m77_c00325{transform:matrix(0.319619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319619,0.000000,0.000000,0.250000,0,0);}
.m73_c00325{transform:matrix(0.320365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320365,0.000000,0.000000,0.250000,0,0);}
.m94_c00325{transform:matrix(0.320453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320453,0.000000,0.000000,0.250000,0,0);}
.ma_c00325{transform:matrix(0.320565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320565,0.000000,0.000000,0.250000,0,0);}
.m17_c00325{transform:matrix(0.321654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321654,0.000000,0.000000,0.250000,0,0);}
.m63_c00325{transform:matrix(0.321660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321660,0.000000,0.000000,0.250000,0,0);}
.m74_c00325{transform:matrix(0.321815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321815,0.000000,0.000000,0.250000,0,0);}
.m72_c00325{transform:matrix(0.322935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322935,0.000000,0.000000,0.250000,0,0);}
.m58_c00325{transform:matrix(0.325184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325184,0.000000,0.000000,0.250000,0,0);}
.m7_c00325{transform:matrix(0.329866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329866,0.000000,0.000000,0.250000,0,0);}
.m59_c00325{transform:matrix(0.330718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330718,0.000000,0.000000,0.250000,0,0);}
.m93_c00325{transform:matrix(0.331101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331101,0.000000,0.000000,0.250000,0,0);}
.m1f_c00325{transform:matrix(0.331531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331531,0.000000,0.000000,0.250000,0,0);}
.m2_c00325{transform:matrix(0.332848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332848,0.000000,0.000000,0.250000,0,0);}
.m25_c00325{transform:matrix(0.335480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335480,0.000000,0.000000,0.250000,0,0);}
.m1b_c00325{transform:matrix(0.335691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335691,0.000000,0.000000,0.250000,0,0);}
.m91_c00325{transform:matrix(0.336305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336305,0.000000,0.000000,0.250000,0,0);}
.m7f_c00325{transform:matrix(0.336988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336988,0.000000,0.000000,0.250000,0,0);}
.m56_c00325{transform:matrix(0.339138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339138,0.000000,0.000000,0.250000,0,0);}
.mc_c00325{transform:matrix(0.342091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342091,0.000000,0.000000,0.250000,0,0);}
.m5f_c00325{transform:matrix(0.342311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342311,0.000000,0.000000,0.250000,0,0);}
.m12_c00325{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.m49_c00325{transform:matrix(0.344061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344061,0.000000,0.000000,0.250000,0,0);}
.m51_c00325{transform:matrix(0.344441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344441,0.000000,0.000000,0.250000,0,0);}
.m65_c00325{transform:matrix(0.347839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347839,0.000000,0.000000,0.250000,0,0);}
.m10_c00325{transform:matrix(0.348316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348316,0.000000,0.000000,0.250000,0,0);}
.me_c00325{transform:matrix(0.350096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350096,0.000000,0.000000,0.250000,0,0);}
.m19_c00325{transform:matrix(0.351105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351105,0.000000,0.000000,0.250000,0,0);}
.m7a_c00325{transform:matrix(0.351604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351604,0.000000,0.000000,0.250000,0,0);}
.m6b_c00325{transform:matrix(0.351853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351853,0.000000,0.000000,0.250000,0,0);}
.m64_c00325{transform:matrix(0.352704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352704,0.000000,0.000000,0.250000,0,0);}
.m7d_c00325{transform:matrix(0.353550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353550,0.000000,0.000000,0.250000,0,0);}
.m6c_c00325{transform:matrix(0.356907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356907,0.000000,0.000000,0.250000,0,0);}
.m88_c00325{transform:matrix(0.357232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357232,0.000000,0.000000,0.250000,0,0);}
.m16_c00325{transform:matrix(0.361780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361780,0.000000,0.000000,0.250000,0,0);}
.m79_c00325{transform:matrix(0.363517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363517,0.000000,0.000000,0.250000,0,0);}
.m4_c00325{transform:matrix(0.364495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364495,0.000000,0.000000,0.250000,0,0);}
.m1a_c00325{transform:matrix(0.366021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366021,0.000000,0.000000,0.250000,0,0);}
.m13_c00325{transform:matrix(0.366332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366332,0.000000,0.000000,0.250000,0,0);}
.m50_c00325{transform:matrix(0.367610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367610,0.000000,0.000000,0.250000,0,0);}
.m98_c00325{transform:matrix(0.367734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367734,0.000000,0.000000,0.250000,0,0);}
.m7c_c00325{transform:matrix(0.369663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369663,0.000000,0.000000,0.250000,0,0);}
.m57_c00325{transform:matrix(0.370425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370425,0.000000,0.000000,0.250000,0,0);}
.m5b_c00325{transform:matrix(0.370890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370890,0.000000,0.000000,0.250000,0,0);}
.m84_c00325{transform:matrix(0.379899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379899,0.000000,0.000000,0.250000,0,0);}
.m41_c00325{transform:matrix(0.382335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382335,0.000000,0.000000,0.250000,0,0);}
.m5a_c00325{transform:matrix(0.384905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384905,0.000000,0.000000,0.250000,0,0);}
.m4e_c00325{transform:matrix(0.387851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387851,0.000000,0.000000,0.250000,0,0);}
.m18_c00325{transform:matrix(0.394197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394197,0.000000,0.000000,0.250000,0,0);}
.m4b_c00325{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);}
.m53_c00325{transform:matrix(0.420929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420929,0.000000,0.000000,0.250000,0,0);}
.m11_c00325{transform:matrix(0.432532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432532,0.000000,0.000000,0.250000,0,0);}
.m70_c00325{transform:matrix(0.438130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438130,0.000000,0.000000,0.250000,0,0);}
.m3d_c00325{transform:matrix(0.444859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444859,0.000000,0.000000,0.250000,0,0);}
.m6_c00325{transform:matrix(0.452399,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452399,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452399,0.000000,0.000000,0.250000,0,0);}
.v3_c00325{vertical-align:-34.194600px;}
.v4_c00325{vertical-align:-2.831400px;}
.v1_c00325{vertical-align:-1.425600px;}
.v0_c00325{vertical-align:0.000000px;}
.v2_c00325{vertical-align:1.405800px;}
.v6_c00325{vertical-align:41.329728px;}
.v5_c00325{vertical-align:47.044800px;}
.lsf_c00325{letter-spacing:-2.591827px;}
.ls4_c00325{letter-spacing:-2.515590px;}
.ls8_c00325{letter-spacing:-2.480940px;}
.ls19_c00325{letter-spacing:-2.439367px;}
.lsc_c00325{letter-spacing:-2.432430px;}
.lse_c00325{letter-spacing:-2.411640px;}
.ls5_c00325{letter-spacing:-2.376990px;}
.lsb_c00325{letter-spacing:-2.231467px;}
.ls1c_c00325{letter-spacing:-2.163407px;}
.ls1f_c00325{letter-spacing:-1.801800px;}
.ls15_c00325{letter-spacing:-1.764180px;}
.ls20_c00325{letter-spacing:-1.509354px;}
.ls3_c00325{letter-spacing:-1.049360px;}
.ls1e_c00325{letter-spacing:-0.495931px;}
.ls1_c00325{letter-spacing:0.000000px;}
.ls18_c00325{letter-spacing:0.433402px;}
.ls21_c00325{letter-spacing:1.020611px;}
.ls0_c00325{letter-spacing:1.186238px;}
.ls23_c00325{letter-spacing:1.851310px;}
.ls1b_c00325{letter-spacing:2.337192px;}
.ls1d_c00325{letter-spacing:2.393404px;}
.ls1a_c00325{letter-spacing:2.574000px;}
.ls9_c00325{letter-spacing:3.049200px;}
.ls16_c00325{letter-spacing:3.227400px;}
.ls14_c00325{letter-spacing:3.267000px;}
.ls26_c00325{letter-spacing:3.286810px;}
.ls6_c00325{letter-spacing:3.395700px;}
.ls25_c00325{letter-spacing:3.465000px;}
.ls13_c00325{letter-spacing:3.534310px;}
.ls7_c00325{letter-spacing:3.544200px;}
.ls24_c00325{letter-spacing:3.554110px;}
.ls27_c00325{letter-spacing:3.564000px;}
.ls2_c00325{letter-spacing:3.593700px;}
.ls11_c00325{letter-spacing:21.384000px;}
.ls12_c00325{letter-spacing:45.619398px;}
.lsa_c00325{letter-spacing:47.044800px;}
.ls17_c00325{letter-spacing:48.470598px;}
.ls22_c00325{letter-spacing:51.321798px;}
.ls10_c00325{letter-spacing:52.747398px;}
.ls28_c00325{letter-spacing:54.172998px;}
.lsd_c00325{letter-spacing:61.300998px;}
.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;}
}
.ws5_c00325{word-spacing:-17.968500px;}
.ws2_c00325{word-spacing:-3.119332px;}
.ws6_c00325{word-spacing:0.000000px;}
.ws0_c00325{word-spacing:5.893668px;}
.ws4_c00325{word-spacing:7.259274px;}
.ws3_c00325{word-spacing:7.690518px;}
.ws1_c00325{word-spacing:50.246658px;}
._12_c00325{margin-left:-24.947329px;}
._11_c00325{margin-left:-13.258124px;}
._13_c00325{margin-left:-9.612959px;}
._1c_c00325{margin-left:-8.049888px;}
._8_c00325{margin-left:-4.742892px;}
._16_c00325{width:4.346892px;}
._24_c00325{width:7.260264px;}
._15_c00325{width:9.036720px;}
._7_c00325{width:10.061964px;}
._5_c00325{width:12.434202px;}
._17_c00325{width:14.821884px;}
._1_c00325{width:19.621602px;}
._1e_c00325{width:21.203820px;}
._0_c00325{width:22.855932px;}
._9_c00325{width:24.077988px;}
._e_c00325{width:25.839000px;}
._f_c00325{width:30.353400px;}
._4_c00325{width:34.313796px;}
._1d_c00325{width:35.577432px;}
._6_c00325{width:37.160442px;}
._21_c00325{width:38.187072px;}
._23_c00325{width:40.683456px;}
._1f_c00325{width:41.974416px;}
._20_c00325{width:44.346060px;}
._22_c00325{width:45.999558px;}
._18_c00325{width:51.409314px;}
._3_c00325{width:53.186760px;}
._10_c00325{width:73.180800px;}
._1b_c00325{width:74.819844px;}
._19_c00325{width:85.377600px;}
._c_c00325{width:146.044651px;}
._1a_c00325{width:181.070851px;}
._a_c00325{width:237.315672px;}
._d_c00325{width:266.987952px;}
._b_c00325{width:290.149992px;}
._14_c00325{width:412.830000px;}
._2_c00325{width:2186.240760px;}
.fc0_c00325{color:transparent;}
.fs17_c00325{font-size:21.384000px;}
.fs0_c00325{font-size:22.176000px;}
.fs2_c00325{font-size:27.720000px;}
.fs21_c00325{font-size:37.026198px;}
.fs19_c00325{font-size:45.619398px;}
.fsb_c00325{font-size:47.044800px;}
.fs1d_c00325{font-size:48.470598px;}
.fs1a_c00325{font-size:50.688000px;}
.fs20_c00325{font-size:51.321798px;}
.fs1f_c00325{font-size:51.480000px;}
.fs15_c00325{font-size:52.747398px;}
.fs27_c00325{font-size:54.172998px;}
.fs24_c00325{font-size:57.816198px;}
.fsa_c00325{font-size:60.984000px;}
.fsf_c00325{font-size:61.300998px;}
.fsd_c00325{font-size:61.578000px;}
.fs16_c00325{font-size:63.558000px;}
.fsc_c00325{font-size:63.756198px;}
.fs1c_c00325{font-size:64.548000px;}
.fs12_c00325{font-size:65.340000px;}
.fs11_c00325{font-size:65.538000px;}
.fs25_c00325{font-size:65.736198px;}
.fs18_c00325{font-size:66.330000px;}
.fs9_c00325{font-size:66.528000px;}
.fs4_c00325{font-size:67.914000px;}
.fs13_c00325{font-size:68.904000px;}
.fs23_c00325{font-size:69.300000px;}
.fse_c00325{font-size:69.498000px;}
.fs1e_c00325{font-size:69.696198px;}
.fs1b_c00325{font-size:70.686198px;}
.fs8_c00325{font-size:70.884000px;}
.fs22_c00325{font-size:71.082198px;}
.fs26_c00325{font-size:71.280000px;}
.fs1_c00325{font-size:71.874000px;}
.fs5_c00325{font-size:73.656198px;}
.fs14_c00325{font-size:74.052198px;}
.fs6_c00325{font-size:77.616198px;}
.fs7_c00325{font-size:78.012198px;}
.fs3_c00325{font-size:81.774000px;}
.fs10_c00325{font-size:85.536198px;}
.y0_c00325{bottom:0.000000px;}
.y1_c00325{bottom:76.500000px;}
.y23_c00325{bottom:136.056735px;}
.y22_c00325{bottom:157.435785px;}
.y21_c00325{bottom:165.276585px;}
.y20_c00325{bottom:200.203785px;}
.y1f_c00325{bottom:235.843785px;}
.y1d_c00325{bottom:269.337713px;}
.y1e_c00325{bottom:269.345385px;}
.y1c_c00325{bottom:303.208335px;}
.y1a_c00325{bottom:338.848335px;}
.y1b_c00325{bottom:348.822585px;}
.y19_c00325{bottom:372.349935px;}
.y18_c00325{bottom:404.782335px;}
.y17_c00325{bottom:469.290735px;}
.y16_c00325{bottom:469.647135px;}
.y15_c00325{bottom:497.797785px;}
.y13_c00325{bottom:504.569385px;}
.y14_c00325{bottom:510.271785px;}
.y12_c00325{bottom:533.086335px;}
.y11_c00325{bottom:534.868335px;}
.y10_c00325{bottom:550.549935px;}
.yf_c00325{bottom:577.279935px;}
.ye_c00325{bottom:600.089535px;}
.yd_c00325{bottom:611.850735px;}
.yc_c00325{bottom:635.373135px;}
.yb_c00325{bottom:663.528735px;}
.ya_c00325{bottom:664.236585px;}
.y9_c00325{bottom:702.727785px;}
.y8_c00325{bottom:728.037135px;}
.y7_c00325{bottom:728.388585px;}
.y6_c00325{bottom:791.827785px;}
.y5_c00325{bottom:826.047135px;}
.y4_c00325{bottom:858.830985px;}
.y3_c00325{bottom:922.275135px;}
.y2_c00325{bottom:996.406335px;}
.h2_c00325{height:23.128875px;}
.h17_c00325{height:28.911094px;}
.h19_c00325{height:30.382519px;}
.ha_c00325{height:31.331837px;}
.h1e_c00325{height:32.281418px;}
.h22_c00325{height:34.180317px;}
.h15_c00325{height:35.129767px;}
.h29_c00325{height:36.079217px;}
.h23_c00325{height:38.617167px;}
.he_c00325{height:40.826465px;}
.h21_c00325{height:50.524805px;}
.h1a_c00325{height:52.866000px;}
.h26_c00325{height:60.187565px;}
.h9_c00325{height:61.460438px;}
.hb_c00325{height:62.573222px;}
.h14_c00325{height:63.604406px;}
.hc_c00325{height:64.223930px;}
.h18_c00325{height:65.099268px;}
.h16_c00325{height:66.289008px;}
.h5_c00325{height:66.653877px;}
.h1d_c00325{height:67.321547px;}
.h11_c00325{height:67.625508px;}
.h6_c00325{height:68.059677px;}
.h1c_c00325{height:68.147578px;}
.hd_c00325{height:68.208486px;}
.h10_c00325{height:68.354086px;}
.h20_c00325{height:68.403007px;}
.h27_c00325{height:68.560800px;}
.h1b_c00325{height:69.374638px;}
.h8_c00325{height:69.568770px;}
.h25_c00325{height:69.841406px;}
.h2a_c00325{height:69.957422px;}
.h3_c00325{height:70.540400px;}
.h12_c00325{height:72.289530px;}
.h13_c00325{height:72.678183px;}
.h24_c00325{height:74.136511px;}
.h28_c00325{height:74.342813px;}
.h4_c00325{height:80.256709px;}
.h7_c00325{height:81.364285px;}
.hf_c00325{height:89.211582px;}
.h1f_c00325{height:108.287335px;}
.h1_c00325{height:1110.000000px;}
.h0_c00325{height:1263.000000px;}
.w1_c00325{width:763.500000px;}
.w0_c00325{width:892.500000px;}
.x0_c00325{left:0.000000px;}
.x1_c00325{left:64.500000px;}
.x2_c00325{left:68.212035px;}
.x3_c00325{left:104.960835px;}
.x53_c00325{left:106.203285px;}
.x5d_c00325{left:107.235459px;}
.x6f_c00325{left:108.668385px;}
.x5e_c00325{left:117.603135px;}
.x11_c00325{left:127.775385px;}
.x63_c00325{left:129.755385px;}
.x25_c00325{left:137.393235px;}
.x4a_c00325{left:139.719735px;}
.x76_c00325{left:141.006735px;}
.x26_c00325{left:148.124835px;}
.x4_c00325{left:149.862285px;}
.x70_c00325{left:150.951285px;}
.x5_c00325{left:160.851285px;}
.x71_c00325{left:162.158085px;}
.x12_c00325{left:171.394785px;}
.x4b_c00325{left:182.601585px;}
.x13_c00325{left:185.051835px;}
.x3f_c00325{left:188.294085px;}
.x44_c00325{left:194.234085px;}
.x41_c00325{left:198.070335px;}
.x77_c00325{left:200.876985px;}
.x14_c00325{left:205.247835px;}
.x4c_c00325{left:207.351585px;}
.x54_c00325{left:216.152685px;}
.x15_c00325{left:227.404035px;}
.x5f_c00325{left:239.145435px;}
.x64_c00325{left:249.287985px;}
.x4d_c00325{left:250.901685px;}
.x16_c00325{left:260.633385px;}
.x65_c00325{left:272.335185px;}
.x55_c00325{left:274.790385px;}
.x6_c00325{left:282.611385px;}
.x17_c00325{left:292.768785px;}
.x60_c00325{left:294.050835px;}
.x2f_c00325{left:297.723735px;}
.x2a_c00325{left:304.574535px;}
.x18_c00325{left:315.786285px;}
.x45_c00325{left:317.424735px;}
.x2b_c00325{left:324.458685px;}
.x7_c00325{left:327.577185px;}
.x19_c00325{left:349.094835px;}
.x66_c00325{left:356.217885px;}
.x34_c00325{left:359.836335px;}
.x3c_c00325{left:360.900585px;}
.x3d_c00325{left:370.528335px;}
.x1a_c00325{left:371.760885px;}
.x27_c00325{left:378.280035px;}
.x1b_c00325{left:382.720185px;}
.x40_c00325{left:392.976585px;}
.x4e_c00325{left:394.867485px;}
.x3a_c00325{left:401.629185px;}
.x78_c00325{left:405.836685px;}
.x56_c00325{left:407.658285px;}
.x30_c00325{left:412.994385px;}
.x1c_c00325{left:415.400085px;}
.x33_c00325{left:416.909835px;}
.x72_c00325{left:418.993785px;}
.x3e_c00325{left:420.107535px;}
.x8_c00325{left:427.037535px;}
.x46_c00325{left:429.690735px;}
.x1d_c00325{left:436.754385px;}
.x35_c00325{left:439.952085px;}
.x28_c00325{left:448.753185px;}
.x79_c00325{left:449.812485px;}
.x6a_c00325{left:450.847035px;}
.x2c_c00325{left:452.713185px;}
.x2d_c00325{left:455.207985px;}
.x36_c00325{left:459.875835px;}
.x1e_c00325{left:470.840085px;}
.x73_c00325{left:472.156785px;}
.x31_c00325{left:476.017785px;}
.x1f_c00325{left:482.027085px;}
.x37_c00325{left:486.749385px;}
.x42_c00325{left:489.763935px;}
.x29_c00325{left:492.803235px;}
.x2e_c00325{left:493.813035px;}
.x6b_c00325{left:496.401885px;}
.x43_c00325{left:503.440785px;}
.x61_c00325{left:504.688185px;}
.x57_c00325{left:507.648285px;}
.x74_c00325{left:511.009335px;}
.x9_c00325{left:515.528685px;}
.x6c_c00325{left:516.716685px;}
.x3b_c00325{left:524.602035px;}
.x75_c00325{left:526.329585px;}
.x32_c00325{left:528.680835px;}
.x38_c00325{left:531.254835px;}
.x39_c00325{left:532.328985px;}
.x47_c00325{left:535.888035px;}
.x62_c00325{left:537.467085px;}
.x7a_c00325{left:538.526385px;}
.x5b_c00325{left:547.124535px;}
.x20_c00325{left:549.238185px;}
.x4f_c00325{left:559.202535px;}
.xa_c00325{left:561.979485px;}
.x21_c00325{left:568.988685px;}
.x48_c00325{left:570.731085px;}
.x58_c00325{left:580.824135px;}
.xb_c00325{left:582.710085px;}
.x50_c00325{left:592.530885px;}
.xc_c00325{left:603.158535px;}
.x51_c00325{left:604.440585px;}
.x5c_c00325{left:615.147435px;}
.xd_c00325{left:626.576985px;}
.x22_c00325{left:637.590735px;}
.x59_c00325{left:639.798435px;}
.xe_c00325{left:648.307485px;}
.x52_c00325{left:659.029185px;}
.x7b_c00325{left:660.306285px;}
.xf_c00325{left:670.349835px;}
.x67_c00325{left:680.546835px;}
.x6d_c00325{left:681.784335px;}
.x23_c00325{left:691.793235px;}
.x10_c00325{left:701.614035px;}
.x49_c00325{left:703.514835px;}
.x6e_c00325{left:714.573135px;}
.x24_c00325{left:725.245335px;}
.x68_c00325{left:735.788835px;}
.x5a_c00325{left:737.011485px;}
.x69_c00325{left:748.124235px;}
@media print{
.v3_c00325{vertical-align:-30.395200pt;}
.v4_c00325{vertical-align:-2.516800pt;}
.v1_c00325{vertical-align:-1.267200pt;}
.v0_c00325{vertical-align:0.000000pt;}
.v2_c00325{vertical-align:1.249600pt;}
.v6_c00325{vertical-align:36.737536pt;}
.v5_c00325{vertical-align:41.817600pt;}
.lsf_c00325{letter-spacing:-2.303846pt;}
.ls4_c00325{letter-spacing:-2.236080pt;}
.ls8_c00325{letter-spacing:-2.205280pt;}
.ls19_c00325{letter-spacing:-2.168326pt;}
.lsc_c00325{letter-spacing:-2.162160pt;}
.lse_c00325{letter-spacing:-2.143680pt;}
.ls5_c00325{letter-spacing:-2.112880pt;}
.lsb_c00325{letter-spacing:-1.983526pt;}
.ls1c_c00325{letter-spacing:-1.923029pt;}
.ls1f_c00325{letter-spacing:-1.601600pt;}
.ls15_c00325{letter-spacing:-1.568160pt;}
.ls20_c00325{letter-spacing:-1.341648pt;}
.ls3_c00325{letter-spacing:-0.932765pt;}
.ls1e_c00325{letter-spacing:-0.440827pt;}
.ls1_c00325{letter-spacing:0.000000pt;}
.ls18_c00325{letter-spacing:0.385246pt;}
.ls21_c00325{letter-spacing:0.907210pt;}
.ls0_c00325{letter-spacing:1.054434pt;}
.ls23_c00325{letter-spacing:1.645609pt;}
.ls1b_c00325{letter-spacing:2.077504pt;}
.ls1d_c00325{letter-spacing:2.127470pt;}
.ls1a_c00325{letter-spacing:2.288000pt;}
.ls9_c00325{letter-spacing:2.710400pt;}
.ls16_c00325{letter-spacing:2.868800pt;}
.ls14_c00325{letter-spacing:2.904000pt;}
.ls26_c00325{letter-spacing:2.921609pt;}
.ls6_c00325{letter-spacing:3.018400pt;}
.ls25_c00325{letter-spacing:3.080000pt;}
.ls13_c00325{letter-spacing:3.141609pt;}
.ls7_c00325{letter-spacing:3.150400pt;}
.ls24_c00325{letter-spacing:3.159209pt;}
.ls27_c00325{letter-spacing:3.168000pt;}
.ls2_c00325{letter-spacing:3.194400pt;}
.ls11_c00325{letter-spacing:19.008000pt;}
.ls12_c00325{letter-spacing:40.550576pt;}
.lsa_c00325{letter-spacing:41.817600pt;}
.ls17_c00325{letter-spacing:43.084976pt;}
.ls22_c00325{letter-spacing:45.619376pt;}
.ls10_c00325{letter-spacing:46.886576pt;}
.ls28_c00325{letter-spacing:48.153776pt;}
.lsd_c00325{letter-spacing:54.489776pt;}
.ws5_c00325{word-spacing:-15.972000pt;}
.ws2_c00325{word-spacing:-2.772739pt;}
.ws6_c00325{word-spacing:0.000000pt;}
.ws0_c00325{word-spacing:5.238816pt;}
.ws4_c00325{word-spacing:6.452688pt;}
.ws3_c00325{word-spacing:6.836016pt;}
.ws1_c00325{word-spacing:44.663696pt;}
._12_c00325{margin-left:-22.175404pt;}
._11_c00325{margin-left:-11.784999pt;}
._13_c00325{margin-left:-8.544853pt;}
._1c_c00325{margin-left:-7.155456pt;}
._8_c00325{margin-left:-4.215904pt;}
._16_c00325{width:3.863904pt;}
._24_c00325{width:6.453568pt;}
._15_c00325{width:8.032640pt;}
._7_c00325{width:8.943968pt;}
._5_c00325{width:11.052624pt;}
._17_c00325{width:13.175008pt;}
._1_c00325{width:17.441424pt;}
._1e_c00325{width:18.847840pt;}
._0_c00325{width:20.316384pt;}
._9_c00325{width:21.402656pt;}
._e_c00325{width:22.968000pt;}
._f_c00325{width:26.980800pt;}
._4_c00325{width:30.501152pt;}
._1d_c00325{width:31.624384pt;}
._6_c00325{width:33.031504pt;}
._21_c00325{width:33.944064pt;}
._23_c00325{width:36.163072pt;}
._1f_c00325{width:37.310592pt;}
._20_c00325{width:39.418720pt;}
._22_c00325{width:40.888496pt;}
._18_c00325{width:45.697168pt;}
._3_c00325{width:47.277120pt;}
._10_c00325{width:65.049600pt;}
._1b_c00325{width:66.506528pt;}
._19_c00325{width:75.891200pt;}
._c_c00325{width:129.817468pt;}
._1a_c00325{width:160.951868pt;}
._a_c00325{width:210.947264pt;}
._d_c00325{width:237.322624pt;}
._b_c00325{width:257.911104pt;}
._14_c00325{width:366.960000pt;}
._2_c00325{width:1943.325120pt;}
.fs17_c00325{font-size:19.008000pt;}
.fs0_c00325{font-size:19.712000pt;}
.fs2_c00325{font-size:24.640000pt;}
.fs21_c00325{font-size:32.912176pt;}
.fs19_c00325{font-size:40.550576pt;}
.fsb_c00325{font-size:41.817600pt;}
.fs1d_c00325{font-size:43.084976pt;}
.fs1a_c00325{font-size:45.056000pt;}
.fs20_c00325{font-size:45.619376pt;}
.fs1f_c00325{font-size:45.760000pt;}
.fs15_c00325{font-size:46.886576pt;}
.fs27_c00325{font-size:48.153776pt;}
.fs24_c00325{font-size:51.392176pt;}
.fsa_c00325{font-size:54.208000pt;}
.fsf_c00325{font-size:54.489776pt;}
.fsd_c00325{font-size:54.736000pt;}
.fs16_c00325{font-size:56.496000pt;}
.fsc_c00325{font-size:56.672176pt;}
.fs1c_c00325{font-size:57.376000pt;}
.fs12_c00325{font-size:58.080000pt;}
.fs11_c00325{font-size:58.256000pt;}
.fs25_c00325{font-size:58.432176pt;}
.fs18_c00325{font-size:58.960000pt;}
.fs9_c00325{font-size:59.136000pt;}
.fs4_c00325{font-size:60.368000pt;}
.fs13_c00325{font-size:61.248000pt;}
.fs23_c00325{font-size:61.600000pt;}
.fse_c00325{font-size:61.776000pt;}
.fs1e_c00325{font-size:61.952176pt;}
.fs1b_c00325{font-size:62.832176pt;}
.fs8_c00325{font-size:63.008000pt;}
.fs22_c00325{font-size:63.184176pt;}
.fs26_c00325{font-size:63.360000pt;}
.fs1_c00325{font-size:63.888000pt;}
.fs5_c00325{font-size:65.472176pt;}
.fs14_c00325{font-size:65.824176pt;}
.fs6_c00325{font-size:68.992176pt;}
.fs7_c00325{font-size:69.344176pt;}
.fs3_c00325{font-size:72.688000pt;}
.fs10_c00325{font-size:76.032176pt;}
.y0_c00325{bottom:0.000000pt;}
.y1_c00325{bottom:68.000000pt;}
.y23_c00325{bottom:120.939320pt;}
.y22_c00325{bottom:139.942920pt;}
.y21_c00325{bottom:146.912520pt;}
.y20_c00325{bottom:177.958920pt;}
.y1f_c00325{bottom:209.638920pt;}
.y1d_c00325{bottom:239.411300pt;}
.y1e_c00325{bottom:239.418120pt;}
.y1c_c00325{bottom:269.518520pt;}
.y1a_c00325{bottom:301.198520pt;}
.y1b_c00325{bottom:310.064520pt;}
.y19_c00325{bottom:330.977720pt;}
.y18_c00325{bottom:359.806520pt;}
.y17_c00325{bottom:417.147320pt;}
.y16_c00325{bottom:417.464120pt;}
.y15_c00325{bottom:442.486920pt;}
.y13_c00325{bottom:448.506120pt;}
.y14_c00325{bottom:453.574920pt;}
.y12_c00325{bottom:473.854520pt;}
.y11_c00325{bottom:475.438520pt;}
.y10_c00325{bottom:489.377720pt;}
.yf_c00325{bottom:513.137720pt;}
.ye_c00325{bottom:533.412920pt;}
.yd_c00325{bottom:543.867320pt;}
.yc_c00325{bottom:564.776120pt;}
.yb_c00325{bottom:589.803320pt;}
.ya_c00325{bottom:590.432520pt;}
.y9_c00325{bottom:624.646920pt;}
.y8_c00325{bottom:647.144120pt;}
.y7_c00325{bottom:647.456520pt;}
.y6_c00325{bottom:703.846920pt;}
.y5_c00325{bottom:734.264120pt;}
.y4_c00325{bottom:763.405320pt;}
.y3_c00325{bottom:819.800120pt;}
.y2_c00325{bottom:885.694520pt;}
.h2_c00325{height:20.559000pt;}
.h17_c00325{height:25.698750pt;}
.h19_c00325{height:27.006684pt;}
.ha_c00325{height:27.850522pt;}
.h1e_c00325{height:28.694594pt;}
.h22_c00325{height:30.382504pt;}
.h15_c00325{height:31.226460pt;}
.h29_c00325{height:32.070415pt;}
.h23_c00325{height:34.326371pt;}
.he_c00325{height:36.290191pt;}
.h21_c00325{height:44.910938pt;}
.h1a_c00325{height:46.992000pt;}
.h26_c00325{height:53.500058pt;}
.h9_c00325{height:54.631500pt;}
.hb_c00325{height:55.620641pt;}
.h14_c00325{height:56.537250pt;}
.hc_c00325{height:57.087938pt;}
.h18_c00325{height:57.866016pt;}
.h16_c00325{height:58.923563pt;}
.h5_c00325{height:59.247891pt;}
.h1d_c00325{height:59.841375pt;}
.h11_c00325{height:60.111562pt;}
.h6_c00325{height:60.497491pt;}
.h1c_c00325{height:60.575625pt;}
.hd_c00325{height:60.629766pt;}
.h10_c00325{height:60.759188pt;}
.h20_c00325{height:60.802673pt;}
.h27_c00325{height:60.942934pt;}
.h1b_c00325{height:61.666345pt;}
.h8_c00325{height:61.838906pt;}
.h25_c00325{height:62.081250pt;}
.h2a_c00325{height:62.184375pt;}
.h3_c00325{height:62.702578pt;}
.h12_c00325{height:64.257360pt;}
.h13_c00325{height:64.602829pt;}
.h24_c00325{height:65.899121pt;}
.h28_c00325{height:66.082500pt;}
.h4_c00325{height:71.339297pt;}
.h7_c00325{height:72.323809pt;}
.hf_c00325{height:79.299184pt;}
.h1f_c00325{height:96.255409pt;}
.h1_c00325{height:986.666667pt;}
.h0_c00325{height:1122.666667pt;}
.w1_c00325{width:678.666667pt;}
.w0_c00325{width:793.333333pt;}
.x0_c00325{left:0.000000pt;}
.x1_c00325{left:57.333333pt;}
.x2_c00325{left:60.632920pt;}
.x3_c00325{left:93.298520pt;}
.x53_c00325{left:94.402920pt;}
.x5d_c00325{left:95.320408pt;}
.x6f_c00325{left:96.594120pt;}
.x5e_c00325{left:104.536120pt;}
.x11_c00325{left:113.578120pt;}
.x63_c00325{left:115.338120pt;}
.x25_c00325{left:122.127320pt;}
.x4a_c00325{left:124.195320pt;}
.x76_c00325{left:125.339320pt;}
.x26_c00325{left:131.666520pt;}
.x4_c00325{left:133.210920pt;}
.x70_c00325{left:134.178920pt;}
.x5_c00325{left:142.978920pt;}
.x71_c00325{left:144.140520pt;}
.x12_c00325{left:152.350920pt;}
.x4b_c00325{left:162.312520pt;}
.x13_c00325{left:164.490520pt;}
.x3f_c00325{left:167.372520pt;}
.x44_c00325{left:172.652520pt;}
.x41_c00325{left:176.062520pt;}
.x77_c00325{left:178.557320pt;}
.x14_c00325{left:182.442520pt;}
.x4c_c00325{left:184.312520pt;}
.x54_c00325{left:192.135720pt;}
.x15_c00325{left:202.136920pt;}
.x5f_c00325{left:212.573720pt;}
.x64_c00325{left:221.589320pt;}
.x4d_c00325{left:223.023720pt;}
.x16_c00325{left:231.674120pt;}
.x65_c00325{left:242.075720pt;}
.x55_c00325{left:244.258120pt;}
.x6_c00325{left:251.210120pt;}
.x17_c00325{left:260.238920pt;}
.x60_c00325{left:261.378520pt;}
.x2f_c00325{left:264.643320pt;}
.x2a_c00325{left:270.732920pt;}
.x18_c00325{left:280.698920pt;}
.x45_c00325{left:282.155320pt;}
.x2b_c00325{left:288.407720pt;}
.x7_c00325{left:291.179720pt;}
.x19_c00325{left:310.306520pt;}
.x66_c00325{left:316.638120pt;}
.x34_c00325{left:319.854520pt;}
.x3c_c00325{left:320.800520pt;}
.x3d_c00325{left:329.358520pt;}
.x1a_c00325{left:330.454120pt;}
.x27_c00325{left:336.248920pt;}
.x1b_c00325{left:340.195720pt;}
.x40_c00325{left:349.312520pt;}
.x4e_c00325{left:350.993320pt;}
.x3a_c00325{left:357.003720pt;}
.x78_c00325{left:360.743720pt;}
.x56_c00325{left:362.362920pt;}
.x30_c00325{left:367.106120pt;}
.x1c_c00325{left:369.244520pt;}
.x33_c00325{left:370.586520pt;}
.x72_c00325{left:372.438920pt;}
.x3e_c00325{left:373.428920pt;}
.x8_c00325{left:379.588920pt;}
.x46_c00325{left:381.947320pt;}
.x1d_c00325{left:388.226120pt;}
.x35_c00325{left:391.068520pt;}
.x28_c00325{left:398.891720pt;}
.x79_c00325{left:399.833320pt;}
.x6a_c00325{left:400.752920pt;}
.x2c_c00325{left:402.411720pt;}
.x2d_c00325{left:404.629320pt;}
.x36_c00325{left:408.778520pt;}
.x1e_c00325{left:418.524520pt;}
.x73_c00325{left:419.694920pt;}
.x31_c00325{left:423.126920pt;}
.x1f_c00325{left:428.468520pt;}
.x37_c00325{left:432.666120pt;}
.x42_c00325{left:435.345720pt;}
.x29_c00325{left:438.047320pt;}
.x2e_c00325{left:438.944920pt;}
.x6b_c00325{left:441.246120pt;}
.x43_c00325{left:447.502920pt;}
.x61_c00325{left:448.611720pt;}
.x57_c00325{left:451.242920pt;}
.x74_c00325{left:454.230520pt;}
.x9_c00325{left:458.247720pt;}
.x6c_c00325{left:459.303720pt;}
.x3b_c00325{left:466.312920pt;}
.x75_c00325{left:467.848520pt;}
.x32_c00325{left:469.938520pt;}
.x38_c00325{left:472.226520pt;}
.x39_c00325{left:473.181320pt;}
.x47_c00325{left:476.344920pt;}
.x62_c00325{left:477.748520pt;}
.x7a_c00325{left:478.690120pt;}
.x5b_c00325{left:486.332920pt;}
.x20_c00325{left:488.211720pt;}
.x4f_c00325{left:497.068920pt;}
.xa_c00325{left:499.537320pt;}
.x21_c00325{left:505.767720pt;}
.x48_c00325{left:507.316520pt;}
.x58_c00325{left:516.288120pt;}
.xb_c00325{left:517.964520pt;}
.x50_c00325{left:526.694120pt;}
.xc_c00325{left:536.140920pt;}
.x51_c00325{left:537.280520pt;}
.x5c_c00325{left:546.797720pt;}
.xd_c00325{left:556.957320pt;}
.x22_c00325{left:566.747320pt;}
.x59_c00325{left:568.709720pt;}
.xe_c00325{left:576.273320pt;}
.x52_c00325{left:585.803720pt;}
.x7b_c00325{left:586.938920pt;}
.xf_c00325{left:595.866520pt;}
.x67_c00325{left:604.930520pt;}
.x6d_c00325{left:606.030520pt;}
.x23_c00325{left:614.927320pt;}
.x10_c00325{left:623.656920pt;}
.x49_c00325{left:625.346520pt;}
.x6e_c00325{left:635.176120pt;}
.x24_c00325{left:644.662520pt;}
.x68_c00325{left:654.034520pt;}
.x5a_c00325{left:655.121320pt;}
.x69_c00325{left:664.999320pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d294b0c630211ac71ee788db.woff2')format("woff");}.ff1_c00326{font-family:ff1_c00326;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00326;src:url('chunks/assets/font_a8d2eca52b86ddd4219f804f.woff2')format("woff");}.ff2_c00326{font-family:ff2_c00326;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00326;src:url('chunks/assets/font_c30edbb33783028c188cf1e1.woff2')format("woff");}.ff3_c00326{font-family:ff3_c00326;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00326;src:url('chunks/assets/font_d33ee670a06fa430b66cb3f1.woff2')format("woff");}.ff4_c00326{font-family:ff4_c00326;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00326;src:url('chunks/assets/font_bad7bb3b309b7256536a2d03.woff2')format("woff");}.ff5_c00326{font-family:ff5_c00326;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00326;src:url('chunks/assets/font_9da9470ef08c82657655159e.woff2')format("woff");}.ff6_c00326{font-family:ff6_c00326;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m68_c00326{transform:matrix(0.071429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071429,0.000000,0.000000,0.250000,0,0);}
.m1a_c00326{transform:matrix(0.085714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085714,0.000000,0.000000,0.250000,0,0);}
.m3a_c00326{transform:matrix(0.107594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107594,0.000000,0.000000,0.250000,0,0);}
.m18_c00326{transform:matrix(0.114286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114286,0.000000,0.000000,0.250000,0,0);}
.m2f_c00326{transform:matrix(0.115575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115575,0.000000,0.000000,0.250000,0,0);}
.m41_c00326{transform:matrix(0.115658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115658,0.000000,0.000000,0.250000,0,0);}
.m6a_c00326{transform:matrix(0.117857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117857,0.000000,0.000000,0.250000,0,0);}
.m69_c00326{transform:matrix(0.121429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121429,0.000000,0.000000,0.250000,0,0);}
.m56_c00326{transform:matrix(0.133425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133425,0.000000,0.000000,0.250000,0,0);}
.m31_c00326{transform:matrix(0.143999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143999,0.000000,0.000000,0.250000,0,0);}
.m9d_c00326{transform:matrix(0.151265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151265,0.000000,0.000000,0.250000,0,0);}
.m55_c00326{transform:matrix(0.152072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152072,0.000000,0.000000,0.250000,0,0);}
.m1b_c00326{transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);}
.m58_c00326{transform:matrix(0.185463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185463,0.000000,0.000000,0.250000,0,0);}
.md1_c00326{transform:matrix(0.191282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191282,0.000000,0.000000,0.250000,0,0);}
.m67_c00326{transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);}
.m5_c00326{transform:matrix(0.197094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197094,0.000000,0.000000,0.250000,0,0);}
.mf_c00326{transform:matrix(0.197525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197525,0.000000,0.000000,0.250000,0,0);}
.mac_c00326{transform:matrix(0.202501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202501,0.000000,0.000000,0.250000,0,0);}
.m6b_c00326{transform:matrix(0.204762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204762,0.000000,0.000000,0.250000,0,0);}
.m75_c00326{transform:matrix(0.208718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208718,0.000000,0.000000,0.250000,0,0);}
.m98_c00326{transform:matrix(0.211100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211100,0.000000,0.000000,0.250000,0,0);}
.m24_c00326{transform:matrix(0.223845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223845,0.000000,0.000000,0.250000,0,0);}
.ma7_c00326{transform:matrix(0.224532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224532,0.000000,0.000000,0.250000,0,0);}
.m84_c00326{transform:matrix(0.229064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229064,0.000000,0.000000,0.250000,0,0);}
.mbe_c00326{transform:matrix(0.237514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237514,0.000000,0.000000,0.250000,0,0);}
.mc5_c00326{transform:matrix(0.239094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239094,0.000000,0.000000,0.250000,0,0);}
.m73_c00326{transform:matrix(0.241238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241238,0.000000,0.000000,0.250000,0,0);}
.m7c_c00326{transform:matrix(0.243927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243927,0.000000,0.000000,0.250000,0,0);}
.m2e_c00326{transform:matrix(0.244592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244592,0.000000,0.000000,0.250000,0,0);}
.m9a_c00326{transform:matrix(0.244749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244749,0.000000,0.000000,0.250000,0,0);}
.mb4_c00326{transform:matrix(0.245529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245529,0.000000,0.000000,0.250000,0,0);}
.m45_c00326{transform:matrix(0.249697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249697,0.000000,0.000000,0.250000,0,0);}
.m0_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);}
.m17_c00326{transform:matrix(0.252766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252766,0.000000,0.000000,0.250000,0,0);}
.m34_c00326{transform:matrix(0.255997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255997,0.000000,0.000000,0.250000,0,0);}
.m2a_c00326{transform:matrix(0.256354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256354,0.000000,0.000000,0.250000,0,0);}
.mb2_c00326{transform:matrix(0.259136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259136,0.000000,0.000000,0.250000,0,0);}
.mbb_c00326{transform:matrix(0.260096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260096,0.000000,0.000000,0.250000,0,0);}
.m2c_c00326{transform:matrix(0.260551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260551,0.000000,0.000000,0.250000,0,0);}
.maf_c00326{transform:matrix(0.261679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261679,0.000000,0.000000,0.250000,0,0);}
.m82_c00326{transform:matrix(0.263488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263488,0.000000,0.000000,0.250000,0,0);}
.mbd_c00326{transform:matrix(0.265326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265326,0.000000,0.000000,0.250000,0,0);}
.mc8_c00326{transform:matrix(0.268555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268555,0.000000,0.000000,0.250000,0,0);}
.m6d_c00326{transform:matrix(0.268638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268638,0.000000,0.000000,0.250000,0,0);}
.mba_c00326{transform:matrix(0.268905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268905,0.000000,0.000000,0.250000,0,0);}
.m5c_c00326{transform:matrix(0.269458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269458,0.000000,0.000000,0.250000,0,0);}
.m39_c00326{transform:matrix(0.270026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270026,0.000000,0.000000,0.250000,0,0);}
.m26_c00326{transform:matrix(0.271166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271166,0.000000,0.000000,0.250000,0,0);}
.m23_c00326{transform:matrix(0.271794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271794,0.000000,0.000000,0.250000,0,0);}
.mb7_c00326{transform:matrix(0.275643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275643,0.000000,0.000000,0.250000,0,0);}
.m9b_c00326{transform:matrix(0.276221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276221,0.000000,0.000000,0.250000,0,0);}
.m46_c00326{transform:matrix(0.276495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276495,0.000000,0.000000,0.250000,0,0);}
.m9c_c00326{transform:matrix(0.277804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277804,0.000000,0.000000,0.250000,0,0);}
.m36_c00326{transform:matrix(0.278279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278279,0.000000,0.000000,0.250000,0,0);}
.mc3_c00326{transform:matrix(0.278736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278736,0.000000,0.000000,0.250000,0,0);}
.m8b_c00326{transform:matrix(0.280655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280655,0.000000,0.000000,0.250000,0,0);}
.md6_c00326{transform:matrix(0.281962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281962,0.000000,0.000000,0.250000,0,0);}
.m72_c00326{transform:matrix(0.282398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282398,0.000000,0.000000,0.250000,0,0);}
.md5_c00326{transform:matrix(0.282522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282522,0.000000,0.000000,0.250000,0,0);}
.m53_c00326{transform:matrix(0.282579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282579,0.000000,0.000000,0.250000,0,0);}
.m13_c00326{transform:matrix(0.282594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282594,0.000000,0.000000,0.250000,0,0);}
.m60_c00326{transform:matrix(0.283756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283756,0.000000,0.000000,0.250000,0,0);}
.m87_c00326{transform:matrix(0.284022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284022,0.000000,0.000000,0.250000,0,0);}
.m7_c00326{transform:matrix(0.284402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284402,0.000000,0.000000,0.250000,0,0);}
.m80_c00326{transform:matrix(0.284836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284836,0.000000,0.000000,0.250000,0,0);}
.maa_c00326{transform:matrix(0.284956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284956,0.000000,0.000000,0.250000,0,0);}
.m7e_c00326{transform:matrix(0.285021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285021,0.000000,0.000000,0.250000,0,0);}
.m6c_c00326{transform:matrix(0.285667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285667,0.000000,0.000000,0.250000,0,0);}
.mc4_c00326{transform:matrix(0.285725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285725,0.000000,0.000000,0.250000,0,0);}
.m37_c00326{transform:matrix(0.286705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286705,0.000000,0.000000,0.250000,0,0);}
.mde_c00326{transform:matrix(0.286924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286924,0.000000,0.000000,0.250000,0,0);}
.m61_c00326{transform:matrix(0.287237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287237,0.000000,0.000000,0.250000,0,0);}
.mce_c00326{transform:matrix(0.287467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287467,0.000000,0.000000,0.250000,0,0);}
.m8_c00326{transform:matrix(0.288823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288823,0.000000,0.000000,0.250000,0,0);}
.m22_c00326{transform:matrix(0.290679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290679,0.000000,0.000000,0.250000,0,0);}
.ma3_c00326{transform:matrix(0.293714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293714,0.000000,0.000000,0.250000,0,0);}
.ma9_c00326{transform:matrix(0.294151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294151,0.000000,0.000000,0.250000,0,0);}
.m3_c00326{transform:matrix(0.294437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294437,0.000000,0.000000,0.250000,0,0);}
.m47_c00326{transform:matrix(0.294940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294940,0.000000,0.000000,0.250000,0,0);}
.mbf_c00326{transform:matrix(0.295163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295163,0.000000,0.000000,0.250000,0,0);}
.ma5_c00326{transform:matrix(0.295690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295690,0.000000,0.000000,0.250000,0,0);}
.m54_c00326{transform:matrix(0.296836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296836,0.000000,0.000000,0.250000,0,0);}
.m9f_c00326{transform:matrix(0.296851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296851,0.000000,0.000000,0.250000,0,0);}
.m1_c00326{transform:matrix(0.297117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297117,0.000000,0.000000,0.250000,0,0);}
.m1e_c00326{transform:matrix(0.297408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297408,0.000000,0.000000,0.250000,0,0);}
.m4b_c00326{transform:matrix(0.299504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299504,0.000000,0.000000,0.250000,0,0);}
.m42_c00326{transform:matrix(0.300099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300099,0.000000,0.000000,0.250000,0,0);}
.m71_c00326{transform:matrix(0.300310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300310,0.000000,0.000000,0.250000,0,0);}
.m8c_c00326{transform:matrix(0.300546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300546,0.000000,0.000000,0.250000,0,0);}
.m3c_c00326{transform:matrix(0.300759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300759,0.000000,0.000000,0.250000,0,0);}
.mb5_c00326{transform:matrix(0.301151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301151,0.000000,0.000000,0.250000,0,0);}
.mc0_c00326{transform:matrix(0.301162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301162,0.000000,0.000000,0.250000,0,0);}
.m66_c00326{transform:matrix(0.301555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301555,0.000000,0.000000,0.250000,0,0);}
.m95_c00326{transform:matrix(0.302232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302232,0.000000,0.000000,0.250000,0,0);}
.mdb_c00326{transform:matrix(0.303095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303095,0.000000,0.000000,0.250000,0,0);}
.mc7_c00326{transform:matrix(0.303126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303126,0.000000,0.000000,0.250000,0,0);}
.m4c_c00326{transform:matrix(0.303152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303152,0.000000,0.000000,0.250000,0,0);}
.m8e_c00326{transform:matrix(0.303743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303743,0.000000,0.000000,0.250000,0,0);}
.m1f_c00326{transform:matrix(0.303953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303953,0.000000,0.000000,0.250000,0,0);}
.m5b_c00326{transform:matrix(0.304049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304049,0.000000,0.000000,0.250000,0,0);}
.mae_c00326{transform:matrix(0.304438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304438,0.000000,0.000000,0.250000,0,0);}
.m7a_c00326{transform:matrix(0.304523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304523,0.000000,0.000000,0.250000,0,0);}
.m92_c00326{transform:matrix(0.305073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305073,0.000000,0.000000,0.250000,0,0);}
.m25_c00326{transform:matrix(0.305459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305459,0.000000,0.000000,0.250000,0,0);}
.m77_c00326{transform:matrix(0.305654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305654,0.000000,0.000000,0.250000,0,0);}
.m4d_c00326{transform:matrix(0.305662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305662,0.000000,0.000000,0.250000,0,0);}
.mb_c00326{transform:matrix(0.305762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305762,0.000000,0.000000,0.250000,0,0);}
.mdc_c00326{transform:matrix(0.305846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305846,0.000000,0.000000,0.250000,0,0);}
.m7d_c00326{transform:matrix(0.306800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306800,0.000000,0.000000,0.250000,0,0);}
.md2_c00326{transform:matrix(0.306813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306813,0.000000,0.000000,0.250000,0,0);}
.m19_c00326{transform:matrix(0.307143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307143,0.000000,0.000000,0.250000,0,0);}
.m99_c00326{transform:matrix(0.307397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307397,0.000000,0.000000,0.250000,0,0);}
.m8a_c00326{transform:matrix(0.307551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307551,0.000000,0.000000,0.250000,0,0);}
.m2b_c00326{transform:matrix(0.307732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307732,0.000000,0.000000,0.250000,0,0);}
.mbc_c00326{transform:matrix(0.308159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308159,0.000000,0.000000,0.250000,0,0);}
.m9_c00326{transform:matrix(0.308493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308493,0.000000,0.000000,0.250000,0,0);}
.m91_c00326{transform:matrix(0.308780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308780,0.000000,0.000000,0.250000,0,0);}
.m40_c00326{transform:matrix(0.309395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309395,0.000000,0.000000,0.250000,0,0);}
.m86_c00326{transform:matrix(0.310016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310016,0.000000,0.000000,0.250000,0,0);}
.m76_c00326{transform:matrix(0.310443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310443,0.000000,0.000000,0.250000,0,0);}
.m4e_c00326{transform:matrix(0.310458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310458,0.000000,0.000000,0.250000,0,0);}
.md_c00326{transform:matrix(0.310588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310588,0.000000,0.000000,0.250000,0,0);}
.m85_c00326{transform:matrix(0.310682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310682,0.000000,0.000000,0.250000,0,0);}
.m51_c00326{transform:matrix(0.310736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310736,0.000000,0.000000,0.250000,0,0);}
.m32_c00326{transform:matrix(0.310828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310828,0.000000,0.000000,0.250000,0,0);}
.m5a_c00326{transform:matrix(0.311424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311424,0.000000,0.000000,0.250000,0,0);}
.m4f_c00326{transform:matrix(0.311618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311618,0.000000,0.000000,0.250000,0,0);}
.m14_c00326{transform:matrix(0.312497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312497,0.000000,0.000000,0.250000,0,0);}
.m38_c00326{transform:matrix(0.312936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312936,0.000000,0.000000,0.250000,0,0);}
.m57_c00326{transform:matrix(0.313892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313892,0.000000,0.000000,0.250000,0,0);}
.m62_c00326{transform:matrix(0.314158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314158,0.000000,0.000000,0.250000,0,0);}
.mab_c00326{transform:matrix(0.314798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314798,0.000000,0.000000,0.250000,0,0);}
.m3e_c00326{transform:matrix(0.314955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314955,0.000000,0.000000,0.250000,0,0);}
.me_c00326{transform:matrix(0.315147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315147,0.000000,0.000000,0.250000,0,0);}
.m21_c00326{transform:matrix(0.315219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315219,0.000000,0.000000,0.250000,0,0);}
.m8f_c00326{transform:matrix(0.315802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315802,0.000000,0.000000,0.250000,0,0);}
.m9e_c00326{transform:matrix(0.315908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315908,0.000000,0.000000,0.250000,0,0);}
.m44_c00326{transform:matrix(0.316099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316099,0.000000,0.000000,0.250000,0,0);}
.m93_c00326{transform:matrix(0.316468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316468,0.000000,0.000000,0.250000,0,0);}
.m78_c00326{transform:matrix(0.316632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316632,0.000000,0.000000,0.250000,0,0);}
.md7_c00326{transform:matrix(0.317225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317225,0.000000,0.000000,0.250000,0,0);}
.m81_c00326{transform:matrix(0.317639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317639,0.000000,0.000000,0.250000,0,0);}
.mcd_c00326{transform:matrix(0.318312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318312,0.000000,0.000000,0.250000,0,0);}
.m20_c00326{transform:matrix(0.319764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319764,0.000000,0.000000,0.250000,0,0);}
.m4a_c00326{transform:matrix(0.319891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319891,0.000000,0.000000,0.250000,0,0);}
.m8d_c00326{transform:matrix(0.320028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320028,0.000000,0.000000,0.250000,0,0);}
.m79_c00326{transform:matrix(0.320217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320217,0.000000,0.000000,0.250000,0,0);}
.md3_c00326{transform:matrix(0.320712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320712,0.000000,0.000000,0.250000,0,0);}
.mcf_c00326{transform:matrix(0.321790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321790,0.000000,0.000000,0.250000,0,0);}
.m70_c00326{transform:matrix(0.321983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321983,0.000000,0.000000,0.250000,0,0);}
.ma2_c00326{transform:matrix(0.322183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322183,0.000000,0.000000,0.250000,0,0);}
.m15_c00326{transform:matrix(0.322340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322340,0.000000,0.000000,0.250000,0,0);}
.m10_c00326{transform:matrix(0.322600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322600,0.000000,0.000000,0.250000,0,0);}
.mcb_c00326{transform:matrix(0.322626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322626,0.000000,0.000000,0.250000,0,0);}
.m6e_c00326{transform:matrix(0.324476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324476,0.000000,0.000000,0.250000,0,0);}
.mda_c00326{transform:matrix(0.325846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325846,0.000000,0.000000,0.250000,0,0);}
.md8_c00326{transform:matrix(0.325870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325870,0.000000,0.000000,0.250000,0,0);}
.m74_c00326{transform:matrix(0.326427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326427,0.000000,0.000000,0.250000,0,0);}
.m3f_c00326{transform:matrix(0.328096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328096,0.000000,0.000000,0.250000,0,0);}
.mdd_c00326{transform:matrix(0.328600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328600,0.000000,0.000000,0.250000,0,0);}
.ma0_c00326{transform:matrix(0.328768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328768,0.000000,0.000000,0.250000,0,0);}
.m83_c00326{transform:matrix(0.328906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328906,0.000000,0.000000,0.250000,0,0);}
.m12_c00326{transform:matrix(0.329292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329292,0.000000,0.000000,0.250000,0,0);}
.mca_c00326{transform:matrix(0.331420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331420,0.000000,0.000000,0.250000,0,0);}
.m6_c00326{transform:matrix(0.331587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331587,0.000000,0.000000,0.250000,0,0);}
.mc9_c00326{transform:matrix(0.332640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332640,0.000000,0.000000,0.250000,0,0);}
.ma1_c00326{transform:matrix(0.332905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332905,0.000000,0.000000,0.250000,0,0);}
.md4_c00326{transform:matrix(0.332907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332907,0.000000,0.000000,0.250000,0,0);}
.mb3_c00326{transform:matrix(0.334133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334133,0.000000,0.000000,0.250000,0,0);}
.m6f_c00326{transform:matrix(0.334505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334505,0.000000,0.000000,0.250000,0,0);}
.ma8_c00326{transform:matrix(0.334786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334786,0.000000,0.000000,0.250000,0,0);}
.ma4_c00326{transform:matrix(0.334886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334886,0.000000,0.000000,0.250000,0,0);}
.m33_c00326{transform:matrix(0.335110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335110,0.000000,0.000000,0.250000,0,0);}
.mc2_c00326{transform:matrix(0.335141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335141,0.000000,0.000000,0.250000,0,0);}
.mc1_c00326{transform:matrix(0.336881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336881,0.000000,0.000000,0.250000,0,0);}
.m94_c00326{transform:matrix(0.338187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338187,0.000000,0.000000,0.250000,0,0);}
.m1c_c00326{transform:matrix(0.338925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338925,0.000000,0.000000,0.250000,0,0);}
.m97_c00326{transform:matrix(0.339832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339832,0.000000,0.000000,0.250000,0,0);}
.m7b_c00326{transform:matrix(0.340586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340586,0.000000,0.000000,0.250000,0,0);}
.m49_c00326{transform:matrix(0.340810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340810,0.000000,0.000000,0.250000,0,0);}
.m88_c00326{transform:matrix(0.341118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341118,0.000000,0.000000,0.250000,0,0);}
.m5d_c00326{transform:matrix(0.342531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342531,0.000000,0.000000,0.250000,0,0);}
.m11_c00326{transform:matrix(0.342986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342986,0.000000,0.000000,0.250000,0,0);}
.md0_c00326{transform:matrix(0.344284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344284,0.000000,0.000000,0.250000,0,0);}
.mb6_c00326{transform:matrix(0.344427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344427,0.000000,0.000000,0.250000,0,0);}
.m28_c00326{transform:matrix(0.344540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344540,0.000000,0.000000,0.250000,0,0);}
.m35_c00326{transform:matrix(0.345763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345763,0.000000,0.000000,0.250000,0,0);}
.mc_c00326{transform:matrix(0.346408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346408,0.000000,0.000000,0.250000,0,0);}
.m64_c00326{transform:matrix(0.348379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348379,0.000000,0.000000,0.250000,0,0);}
.m65_c00326{transform:matrix(0.354797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354797,0.000000,0.000000,0.250000,0,0);}
.m2d_c00326{transform:matrix(0.354951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354951,0.000000,0.000000,0.250000,0,0);}
.m4_c00326{transform:matrix(0.356623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356623,0.000000,0.000000,0.250000,0,0);}
.m96_c00326{transform:matrix(0.357031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357031,0.000000,0.000000,0.250000,0,0);}
.mb9_c00326{transform:matrix(0.359797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359797,0.000000,0.000000,0.250000,0,0);}
.m1d_c00326{transform:matrix(0.361188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361188,0.000000,0.000000,0.250000,0,0);}
.ma6_c00326{transform:matrix(0.361671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361671,0.000000,0.000000,0.250000,0,0);}
.m48_c00326{transform:matrix(0.362422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362422,0.000000,0.000000,0.250000,0,0);}
.m59_c00326{transform:matrix(0.362755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362755,0.000000,0.000000,0.250000,0,0);}
.m29_c00326{transform:matrix(0.363879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363879,0.000000,0.000000,0.250000,0,0);}
.m27_c00326{transform:matrix(0.363945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363945,0.000000,0.000000,0.250000,0,0);}
.mcc_c00326{transform:matrix(0.364708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364708,0.000000,0.000000,0.250000,0,0);}
.m3d_c00326{transform:matrix(0.364819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364819,0.000000,0.000000,0.250000,0,0);}
.mb0_c00326{transform:matrix(0.366339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366339,0.000000,0.000000,0.250000,0,0);}
.m63_c00326{transform:matrix(0.367576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367576,0.000000,0.000000,0.250000,0,0);}
.m52_c00326{transform:matrix(0.368346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368346,0.000000,0.000000,0.250000,0,0);}
.m5f_c00326{transform:matrix(0.370953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370953,0.000000,0.000000,0.250000,0,0);}
.mb8_c00326{transform:matrix(0.378969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378969,0.000000,0.000000,0.250000,0,0);}
.mad_c00326{transform:matrix(0.381462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381462,0.000000,0.000000,0.250000,0,0);}
.m2_c00326{transform:matrix(0.382349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382349,0.000000,0.000000,0.250000,0,0);}
.m90_c00326{transform:matrix(0.385449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385449,0.000000,0.000000,0.250000,0,0);}
.m5e_c00326{transform:matrix(0.385503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385503,0.000000,0.000000,0.250000,0,0);}
.mb1_c00326{transform:matrix(0.385525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385525,0.000000,0.000000,0.250000,0,0);}
.m16_c00326{transform:matrix(0.385764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385764,0.000000,0.000000,0.250000,0,0);}
.m30_c00326{transform:matrix(0.385952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385952,0.000000,0.000000,0.250000,0,0);}
.m43_c00326{transform:matrix(0.408030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408030,0.000000,0.000000,0.250000,0,0);}
.mc6_c00326{transform:matrix(0.411147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411147,0.000000,0.000000,0.250000,0,0);}
.m7f_c00326{transform:matrix(0.418623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418623,0.000000,0.000000,0.250000,0,0);}
.m3b_c00326{transform:matrix(0.421383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421383,0.000000,0.000000,0.250000,0,0);}
.md9_c00326{transform:matrix(0.446588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446588,0.000000,0.000000,0.250000,0,0);}
.m50_c00326{transform:matrix(0.452316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452316,0.000000,0.000000,0.250000,0,0);}
.ma_c00326{transform:matrix(0.459011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459011,0.000000,0.000000,0.250000,0,0);}
.m89_c00326{transform:matrix(0.478177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478177,0.000000,0.000000,0.250000,0,0);}
.v3_c00326{vertical-align:-37.045800px;}
.v0_c00326{vertical-align:0.000000px;}
.v1_c00326{vertical-align:24.215400px;}
.v2_c00326{vertical-align:92.664000px;}
.ls18_c00326{letter-spacing:-3.437280px;}
.ls1e_c00326{letter-spacing:-2.557177px;}
.ls13_c00326{letter-spacing:-2.536380px;}
.lsa_c00326{letter-spacing:-2.529450px;}
.lsb_c00326{letter-spacing:-1.483020px;}
.ls1b_c00326{letter-spacing:-0.831105px;}
.lse_c00326{letter-spacing:-0.679338px;}
.ls14_c00326{letter-spacing:-0.599841px;}
.ls11_c00326{letter-spacing:-0.498663px;}
.lsc_c00326{letter-spacing:-0.463617px;}
.ls1a_c00326{letter-spacing:-0.383031px;}
.ls6_c00326{letter-spacing:0.000000px;}
.ls19_c00326{letter-spacing:0.245718px;}
.ls1_c00326{letter-spacing:0.498663px;}
.ls4_c00326{letter-spacing:0.534600px;}
.ls3_c00326{letter-spacing:1.069596px;}
.lsf_c00326{letter-spacing:1.405800px;}
.ls12_c00326{letter-spacing:1.623600px;}
.ls15_c00326{letter-spacing:1.732500px;}
.ls1c_c00326{letter-spacing:1.929609px;}
.ls5_c00326{letter-spacing:2.818570px;}
.ls8_c00326{letter-spacing:3.167929px;}
.ls2_c00326{letter-spacing:3.179880px;}
.ls1f_c00326{letter-spacing:3.425400px;}
.ls17_c00326{letter-spacing:3.514500px;}
.ls9_c00326{letter-spacing:3.613500px;}
.ls1d_c00326{letter-spacing:3.653110px;}
.ls16_c00326{letter-spacing:3.682810px;}
.lsd_c00326{letter-spacing:3.801610px;}
.ls7_c00326{letter-spacing:3.979810px;}
.ls0_c00326{letter-spacing:11.635470px;}
.ls10_c00326{letter-spacing:49.896198px;}
.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;}
}
.ws1_c00326{word-spacing:-18.067500px;}
.wsa_c00326{word-spacing:-3.974850px;}
.ws6_c00326{word-spacing:-2.096820px;}
.ws5_c00326{word-spacing:-1.662210px;}
.wsb_c00326{word-spacing:0.000000px;}
.ws4_c00326{word-spacing:1.951290px;}
.ws3_c00326{word-spacing:5.926140px;}
.ws9_c00326{word-spacing:7.298280px;}
.ws7_c00326{word-spacing:8.455590px;}
.ws2_c00326{word-spacing:8.816940px;}
.ws8_c00326{word-spacing:11.129580px;}
.ws0_c00326{word-spacing:28.041680px;}
._13_c00326{margin-left:-13.080870px;}
._5_c00326{margin-left:-10.117800px;}
._21_c00326{margin-left:-8.672400px;}
._4_c00326{margin-left:-7.371540px;}
._6_c00326{margin-left:-5.853870px;}
._10_c00326{margin-left:-4.264920px;}
._1f_c00326{margin-left:-3.035340px;}
._a_c00326{margin-left:-2.018610px;}
._1e_c00326{width:3.685770px;}
._8_c00326{width:4.809618px;}
._c_c00326{width:7.082460px;}
._1_c00326{width:9.395100px;}
._16_c00326{width:10.406880px;}
._9_c00326{width:11.635470px;}
._3_c00326{width:13.731300px;}
._1c_c00326{width:15.046614px;}
._f_c00326{width:16.227684px;}
._15_c00326{width:19.512900px;}
._1a_c00326{width:20.958300px;}
._12_c00326{width:23.703570px;}
._18_c00326{width:25.366770px;}
._19_c00326{width:26.812170px;}
._20_c00326{width:29.688120px;}
._d_c00326{width:30.772566px;}
._22_c00326{width:32.160150px;}
._2_c00326{width:34.328250px;}
._11_c00326{width:35.507340px;}
._0_c00326{width:37.797210px;}
._e_c00326{width:40.015800px;}
._17_c00326{width:41.122620px;}
._1b_c00326{width:42.204690px;}
._b_c00326{width:43.376256px;}
._14_c00326{width:48.451590px;}
._7_c00326{width:59.264667px;}
._1d_c00326{width:168.357420px;}
._23_c00326{width:299.871000px;}
.fc0_c00326{color:transparent;}
.fs0_c00326{font-size:22.176000px;}
.fs1b_c00326{font-size:27.720000px;}
.fs8_c00326{font-size:28.116000px;}
.fs12_c00326{font-size:31.680000px;}
.fsa_c00326{font-size:32.472000px;}
.fs1a_c00326{font-size:33.660000px;}
.fsf_c00326{font-size:34.650000px;}
.fs14_c00326{font-size:38.808000px;}
.fs3_c00326{font-size:42.372000px;}
.fs4_c00326{font-size:44.154000px;}
.fs9_c00326{font-size:49.896198px;}
.fs19_c00326{font-size:51.084000px;}
.fs7_c00326{font-size:51.678000px;}
.fs6_c00326{font-size:64.548000px;}
.fs13_c00326{font-size:64.944000px;}
.fs18_c00326{font-size:68.508000px;}
.fs15_c00326{font-size:70.290000px;}
.fse_c00326{font-size:70.884000px;}
.fs2_c00326{font-size:72.270000px;}
.fsb_c00326{font-size:72.468000px;}
.fs17_c00326{font-size:73.062198px;}
.fs10_c00326{font-size:73.656198px;}
.fs5_c00326{font-size:76.032198px;}
.fs11_c00326{font-size:77.616198px;}
.fs1_c00326{font-size:79.596198px;}
.fsd_c00326{font-size:86.328000px;}
.fs16_c00326{font-size:98.208000px;}
.fsc_c00326{font-size:101.772198px;}
.y0_c00326{bottom:0.000000px;}
.y29_c00326{bottom:10.961325px;}
.y3_c00326{bottom:11.666601px;}
.y28_c00326{bottom:45.174735px;}
.y1_c00326{bottom:76.500000px;}
.y27_c00326{bottom:101.842335px;}
.y26_c00326{bottom:131.062185px;}
.y2_c00326{bottom:151.020585px;}
.y25_c00326{bottom:161.361135px;}
.y24_c00326{bottom:195.219135px;}
.y23_c00326{bottom:221.236335px;}
.y22_c00326{bottom:228.002985px;}
.y21_c00326{bottom:260.796735px;}
.y20_c00326{bottom:293.936985px;}
.y1b_c00326{bottom:359.519535px;}
.y1a_c00326{bottom:366.642585px;}
.y1f_c00326{bottom:391.239135px;}
.y1d_c00326{bottom:391.590585px;}
.y19_c00326{bottom:391.946985px;}
.y1e_c00326{bottom:400.149135px;}
.y1c_c00326{bottom:405.846585px;}
.y18_c00326{bottom:424.027935px;}
.y17_c00326{bottom:456.455385px;}
.y16_c00326{bottom:488.536335px;}
.y15_c00326{bottom:521.320185px;}
.y14_c00326{bottom:554.826735px;}
.y13_c00326{bottom:567.657135px;}
.y12_c00326{bottom:587.610585px;}
.y11_c00326{bottom:621.473535px;}
.y10_c00326{bottom:656.039385px;}
.ye_c00326{bottom:688.476735px;}
.yf_c00326{bottom:693.822735px;}
.yd_c00326{bottom:721.260585px;}
.yc_c00326{bottom:724.824585px;}
.ya_c00326{bottom:753.341535px;}
.yb_c00326{bottom:758.682585px;}
.y9_c00326{bottom:786.130335px;}
.y8_c00326{bottom:813.568185px;}
.y7_c00326{bottom:818.562735px;}
.y6_c00326{bottom:883.422585px;}
.y5_c00326{bottom:915.503535px;}
.y4_c00326{bottom:1067.681385px;}
.h2_c00326{height:23.128875px;}
.h7_c00326{height:27.594316px;}
.h19_c00326{height:28.911094px;}
.h8_c00326{height:33.230868px;}
.h9_c00326{height:33.867281px;}
.he_c00326{height:36.138867px;}
.h12_c00326{height:40.475531px;}
.h5_c00326{height:44.192672px;}
.h18_c00326{height:53.279016px;}
.h10_c00326{height:67.321547px;}
.h13_c00326{height:68.985791px;}
.h17_c00326{height:69.043219px;}
.hd_c00326{height:69.568770px;}
.h4_c00326{height:70.929053px;}
.ha_c00326{height:71.123379px;}
.h16_c00326{height:71.706552px;}
.hf_c00326{height:72.289530px;}
.h6_c00326{height:74.621444px;}
.h3_c00326{height:78.119315px;}
.h11_c00326{height:80.951269px;}
.hc_c00326{height:90.037406px;}
.h15_c00326{height:96.385781px;}
.hb_c00326{height:106.145222px;}
.h14_c00326{height:169.485113px;}
.h1_c00326{height:1110.000000px;}
.h0_c00326{height:1263.000000px;}
.w1_c00326{width:763.500000px;}
.w0_c00326{width:892.500000px;}
.x0_c00326{left:0.000000px;}
.x2_c00326{left:60.727650px;}
.x1_c00326{left:64.500000px;}
.x3_c00326{left:75.696450px;}
.x6_c00326{left:90.774150px;}
.x22_c00326{left:92.536350px;}
.x70_c00326{left:93.778800px;}
.x45_c00326{left:101.926500px;}
.x23_c00326{left:107.148750px;}
.x39_c00326{left:112.519500px;}
.x18_c00326{left:123.374850px;}
.x51_c00326{left:126.117150px;}
.x64_c00326{left:127.775400px;}
.x24_c00326{left:134.235150px;}
.x72_c00326{left:137.640750px;}
.x71_c00326{left:141.254250px;}
.x75_c00326{left:143.763900px;}
.x19_c00326{left:144.833100px;}
.x7_c00326{left:146.125050px;}
.x3a_c00326{left:155.574600px;}
.x25_c00326{left:156.812100px;}
.x46_c00326{left:167.028900px;}
.x55_c00326{left:168.776250px;}
.x8_c00326{left:170.820600px;}
.x5e_c00326{left:174.147000px;}
.x4c_c00326{left:178.210950px;}
.x26_c00326{left:188.581200px;}
.x9_c00326{left:190.041450px;}
.x7a_c00326{left:199.065300px;}
.x1b_c00326{left:200.961150px;}
.x3b_c00326{left:211.385850px;}
.x65_c00326{left:212.440200px;}
.x3c_c00326{left:217.622850px;}
.x76_c00326{left:221.459100px;}
.x56_c00326{left:222.711450px;}
.x4d_c00326{left:232.972800px;}
.xa_c00326{left:234.220200px;}
.x47_c00326{left:244.877550px;}
.x66_c00326{left:245.882400px;}
.xb_c00326{left:256.237800px;}
.x4e_c00326{left:266.617950px;}
.x2e_c00326{left:268.182150px;}
.x1a_c00326{left:277.770300px;}
.x69_c00326{left:279.433500px;}
.x5f_c00326{left:287.794050px;}
.xc_c00326{left:288.878100px;}
.x82_c00326{left:293.789490px;}
.x60_c00326{left:298.882050px;}
.x57_c00326{left:300.827400px;}
.x73_c00326{left:306.287250px;}
.x27_c00326{left:311.786700px;}
.x7e_c00326{left:313.568700px;}
.x2f_c00326{left:320.954100px;}
.x1c_c00326{left:322.562850px;}
.x77_c00326{left:332.027250px;}
.x3d_c00326{left:333.621150px;}
.xd_c00326{left:343.813200px;}
.x6a_c00326{left:345.605100px;}
.x48_c00326{left:347.500950px;}
.x38_c00326{left:353.119200px;}
.x1d_c00326{left:354.861600px;}
.x30_c00326{left:356.420850px;}
.xe_c00326{left:367.444500px;}
.x31_c00326{left:370.171950px;}
.x6c_c00326{left:377.829600px;}
.x32_c00326{left:389.531400px;}
.x28_c00326{left:399.000750px;}
.xf_c00326{left:400.139250px;}
.x52_c00326{left:411.291600px;}
.x29_c00326{left:420.894600px;}
.x58_c00326{left:422.686500px;}
.x3e_c00326{left:428.017650px;}
.x10_c00326{left:432.442950px;}
.x7c_c00326{left:435.507000px;}
.x49_c00326{left:444.100200px;}
.x7d_c00326{left:453.376500px;}
.x11_c00326{left:454.812000px;}
.x61_c00326{left:455.995050px;}
.x3f_c00326{left:465.840600px;}
.x53_c00326{left:467.236500px;}
.x2a_c00326{left:476.319750px;}
.x1e_c00326{left:478.265100px;}
.x59_c00326{left:487.744350px;}
.x33_c00326{left:489.278850px;}
.x4a_c00326{left:498.109650px;}
.x12_c00326{left:499.663950px;}
.x6d_c00326{left:511.039050px;}
.x34_c00326{left:520.439100px;}
.x5a_c00326{left:522.508200px;}
.x78_c00326{left:529.096650px;}
.x13_c00326{left:531.571650px;}
.x40_c00326{left:532.705200px;}
.x1f_c00326{left:535.605900px;}
.x54_c00326{left:543.283350px;}
.x2b_c00326{left:554.039700px;}
.x6b_c00326{left:555.108900px;}
.x21_c00326{left:558.568950px;}
.x35_c00326{left:565.385100px;}
.x79_c00326{left:575.398950px;}
.x14_c00326{left:576.478050px;}
.x6f_c00326{left:577.666050px;}
.x5d_c00326{left:578.710500px;}
.x41_c00326{left:580.754850px;}
.x80_c00326{left:586.140450px;}
.x42_c00326{left:587.660100px;}
.x67_c00326{left:589.155000px;}
.x4b_c00326{left:597.500700px;}
.x15_c00326{left:598.713450px;}
.x16_c00326{left:610.157850px;}
.x43_c00326{left:619.642050px;}
.x36_c00326{left:621.542850px;}
.x81_c00326{left:622.829850px;}
.x20_c00326{left:631.363650px;}
.x6e_c00326{left:632.962500px;}
.x2c_c00326{left:643.139700px;}
.x7b_c00326{left:653.524800px;}
.x44_c00326{left:655.089000px;}
.x62_c00326{left:664.152450px;}
.x4f_c00326{left:666.092850px;}
.x7f_c00326{left:674.527650px;}
.x4_c00326{left:676.383900px;}
.x2d_c00326{left:685.576050px;}
.x63_c00326{left:687.328350px;}
.x5b_c00326{left:688.511400px;}
.x5_c00326{left:699.000450px;}
.x17_c00326{left:708.771750px;}
.x74_c00326{left:709.865700px;}
.x37_c00326{left:720.414150px;}
.x5c_c00326{left:721.651650px;}
.x68_c00326{left:731.437800px;}
.x50_c00326{left:742.382250px;}
@media print{
.v3_c00326{vertical-align:-32.929600pt;}
.v0_c00326{vertical-align:0.000000pt;}
.v1_c00326{vertical-align:21.524800pt;}
.v2_c00326{vertical-align:82.368000pt;}
.ls18_c00326{letter-spacing:-3.055360pt;}
.ls1e_c00326{letter-spacing:-2.273046pt;}
.ls13_c00326{letter-spacing:-2.254560pt;}
.lsa_c00326{letter-spacing:-2.248400pt;}
.lsb_c00326{letter-spacing:-1.318240pt;}
.ls1b_c00326{letter-spacing:-0.738760pt;}
.lse_c00326{letter-spacing:-0.603856pt;}
.ls14_c00326{letter-spacing:-0.533192pt;}
.ls11_c00326{letter-spacing:-0.443256pt;}
.lsc_c00326{letter-spacing:-0.412104pt;}
.ls1a_c00326{letter-spacing:-0.340472pt;}
.ls6_c00326{letter-spacing:0.000000pt;}
.ls19_c00326{letter-spacing:0.218416pt;}
.ls1_c00326{letter-spacing:0.443256pt;}
.ls4_c00326{letter-spacing:0.475200pt;}
.ls3_c00326{letter-spacing:0.950752pt;}
.lsf_c00326{letter-spacing:1.249600pt;}
.ls12_c00326{letter-spacing:1.443200pt;}
.ls15_c00326{letter-spacing:1.540000pt;}
.ls1c_c00326{letter-spacing:1.715208pt;}
.ls5_c00326{letter-spacing:2.505395pt;}
.ls8_c00326{letter-spacing:2.815937pt;}
.ls2_c00326{letter-spacing:2.826560pt;}
.ls1f_c00326{letter-spacing:3.044800pt;}
.ls17_c00326{letter-spacing:3.124000pt;}
.ls9_c00326{letter-spacing:3.212000pt;}
.ls1d_c00326{letter-spacing:3.247209pt;}
.ls16_c00326{letter-spacing:3.273609pt;}
.lsd_c00326{letter-spacing:3.379209pt;}
.ls7_c00326{letter-spacing:3.537609pt;}
.ls0_c00326{letter-spacing:10.342640pt;}
.ls10_c00326{letter-spacing:44.352176pt;}
.ws1_c00326{word-spacing:-16.060000pt;}
.wsa_c00326{word-spacing:-3.533200pt;}
.ws6_c00326{word-spacing:-1.863840pt;}
.ws5_c00326{word-spacing:-1.477520pt;}
.wsb_c00326{word-spacing:0.000000pt;}
.ws4_c00326{word-spacing:1.734480pt;}
.ws3_c00326{word-spacing:5.267680pt;}
.ws9_c00326{word-spacing:6.487360pt;}
.ws7_c00326{word-spacing:7.516080pt;}
.ws2_c00326{word-spacing:7.837280pt;}
.ws8_c00326{word-spacing:9.892960pt;}
.ws0_c00326{word-spacing:24.925938pt;}
._13_c00326{margin-left:-11.627440pt;}
._5_c00326{margin-left:-8.993600pt;}
._21_c00326{margin-left:-7.708800pt;}
._4_c00326{margin-left:-6.552480pt;}
._6_c00326{margin-left:-5.203440pt;}
._10_c00326{margin-left:-3.791040pt;}
._1f_c00326{margin-left:-2.698080pt;}
._a_c00326{margin-left:-1.794320pt;}
._1e_c00326{width:3.276240pt;}
._8_c00326{width:4.275216pt;}
._c_c00326{width:6.295520pt;}
._1_c00326{width:8.351200pt;}
._16_c00326{width:9.250560pt;}
._9_c00326{width:10.342640pt;}
._3_c00326{width:12.205600pt;}
._1c_c00326{width:13.374768pt;}
._f_c00326{width:14.424608pt;}
._15_c00326{width:17.344800pt;}
._1a_c00326{width:18.629600pt;}
._12_c00326{width:21.069840pt;}
._18_c00326{width:22.548240pt;}
._19_c00326{width:23.833040pt;}
._20_c00326{width:26.389440pt;}
._d_c00326{width:27.353392pt;}
._22_c00326{width:28.586800pt;}
._2_c00326{width:30.514000pt;}
._11_c00326{width:31.562080pt;}
._0_c00326{width:33.597520pt;}
._e_c00326{width:35.569600pt;}
._17_c00326{width:36.553440pt;}
._1b_c00326{width:37.515280pt;}
._b_c00326{width:38.556672pt;}
._14_c00326{width:43.068080pt;}
._7_c00326{width:52.679704pt;}
._1d_c00326{width:149.651040pt;}
._23_c00326{width:266.552000pt;}
.fs0_c00326{font-size:19.712000pt;}
.fs1b_c00326{font-size:24.640000pt;}
.fs8_c00326{font-size:24.992000pt;}
.fs12_c00326{font-size:28.160000pt;}
.fsa_c00326{font-size:28.864000pt;}
.fs1a_c00326{font-size:29.920000pt;}
.fsf_c00326{font-size:30.800000pt;}
.fs14_c00326{font-size:34.496000pt;}
.fs3_c00326{font-size:37.664000pt;}
.fs4_c00326{font-size:39.248000pt;}
.fs9_c00326{font-size:44.352176pt;}
.fs19_c00326{font-size:45.408000pt;}
.fs7_c00326{font-size:45.936000pt;}
.fs6_c00326{font-size:57.376000pt;}
.fs13_c00326{font-size:57.728000pt;}
.fs18_c00326{font-size:60.896000pt;}
.fs15_c00326{font-size:62.480000pt;}
.fse_c00326{font-size:63.008000pt;}
.fs2_c00326{font-size:64.240000pt;}
.fsb_c00326{font-size:64.416000pt;}
.fs17_c00326{font-size:64.944176pt;}
.fs10_c00326{font-size:65.472176pt;}
.fs5_c00326{font-size:67.584176pt;}
.fs11_c00326{font-size:68.992176pt;}
.fs1_c00326{font-size:70.752176pt;}
.fsd_c00326{font-size:76.736000pt;}
.fs16_c00326{font-size:87.296000pt;}
.fsc_c00326{font-size:90.464176pt;}
.y0_c00326{bottom:0.000000pt;}
.y29_c00326{bottom:9.743400pt;}
.y3_c00326{bottom:10.370312pt;}
.y28_c00326{bottom:40.155320pt;}
.y1_c00326{bottom:68.000000pt;}
.y27_c00326{bottom:90.526520pt;}
.y26_c00326{bottom:116.499720pt;}
.y2_c00326{bottom:134.240520pt;}
.y25_c00326{bottom:143.432120pt;}
.y24_c00326{bottom:173.528120pt;}
.y23_c00326{bottom:196.654520pt;}
.y22_c00326{bottom:202.669320pt;}
.y21_c00326{bottom:231.819320pt;}
.y20_c00326{bottom:261.277320pt;}
.y1b_c00326{bottom:319.572920pt;}
.y1a_c00326{bottom:325.904520pt;}
.y1f_c00326{bottom:347.768120pt;}
.y1d_c00326{bottom:348.080520pt;}
.y19_c00326{bottom:348.397320pt;}
.y1e_c00326{bottom:355.688120pt;}
.y1c_c00326{bottom:360.752520pt;}
.y18_c00326{bottom:376.913720pt;}
.y17_c00326{bottom:405.738120pt;}
.y16_c00326{bottom:434.254520pt;}
.y15_c00326{bottom:463.395720pt;}
.y14_c00326{bottom:493.179320pt;}
.y13_c00326{bottom:504.584120pt;}
.y12_c00326{bottom:522.320520pt;}
.y11_c00326{bottom:552.420920pt;}
.y10_c00326{bottom:583.146120pt;}
.ye_c00326{bottom:611.979320pt;}
.yf_c00326{bottom:616.731320pt;}
.yd_c00326{bottom:641.120520pt;}
.yc_c00326{bottom:644.288520pt;}
.ya_c00326{bottom:669.636920pt;}
.yb_c00326{bottom:674.384520pt;}
.y9_c00326{bottom:698.782520pt;}
.y8_c00326{bottom:723.171720pt;}
.y7_c00326{bottom:727.611320pt;}
.y6_c00326{bottom:785.264520pt;}
.y5_c00326{bottom:813.780920pt;}
.y4_c00326{bottom:949.050120pt;}
.h2_c00326{height:20.559000pt;}
.h7_c00326{height:24.528281pt;}
.h19_c00326{height:25.698750pt;}
.h8_c00326{height:29.538549pt;}
.h9_c00326{height:30.104250pt;}
.he_c00326{height:32.123438pt;}
.h12_c00326{height:35.978250pt;}
.h5_c00326{height:39.282375pt;}
.h18_c00326{height:47.359125pt;}
.h10_c00326{height:59.841375pt;}
.h13_c00326{height:61.320703pt;}
.h17_c00326{height:61.371750pt;}
.hd_c00326{height:61.838906pt;}
.h4_c00326{height:63.048047pt;}
.ha_c00326{height:63.220781pt;}
.h16_c00326{height:63.739157pt;}
.hf_c00326{height:64.257360pt;}
.h6_c00326{height:66.330173pt;}
.h3_c00326{height:69.439391pt;}
.h11_c00326{height:71.956684pt;}
.hc_c00326{height:80.033250pt;}
.h15_c00326{height:85.676250pt;}
.hb_c00326{height:94.351309pt;}
.h14_c00326{height:150.653434pt;}
.h1_c00326{height:986.666667pt;}
.h0_c00326{height:1122.666667pt;}
.w1_c00326{width:678.666667pt;}
.w0_c00326{width:793.333333pt;}
.x0_c00326{left:0.000000pt;}
.x2_c00326{left:53.980133pt;}
.x1_c00326{left:57.333333pt;}
.x3_c00326{left:67.285733pt;}
.x6_c00326{left:80.688133pt;}
.x22_c00326{left:82.254533pt;}
.x70_c00326{left:83.358933pt;}
.x45_c00326{left:90.601333pt;}
.x23_c00326{left:95.243333pt;}
.x39_c00326{left:100.017333pt;}
.x18_c00326{left:109.666533pt;}
.x51_c00326{left:112.104133pt;}
.x64_c00326{left:113.578133pt;}
.x24_c00326{left:119.320133pt;}
.x72_c00326{left:122.347333pt;}
.x71_c00326{left:125.559333pt;}
.x75_c00326{left:127.790133pt;}
.x19_c00326{left:128.740533pt;}
.x7_c00326{left:129.888933pt;}
.x3a_c00326{left:138.288533pt;}
.x25_c00326{left:139.388533pt;}
.x46_c00326{left:148.470133pt;}
.x55_c00326{left:150.023333pt;}
.x8_c00326{left:151.840533pt;}
.x5e_c00326{left:154.797333pt;}
.x4c_c00326{left:158.409733pt;}
.x26_c00326{left:167.627733pt;}
.x9_c00326{left:168.925733pt;}
.x7a_c00326{left:176.946933pt;}
.x1b_c00326{left:178.632133pt;}
.x3b_c00326{left:187.898533pt;}
.x65_c00326{left:188.835733pt;}
.x3c_c00326{left:193.442533pt;}
.x76_c00326{left:196.852533pt;}
.x56_c00326{left:197.965733pt;}
.x4d_c00326{left:207.086933pt;}
.xa_c00326{left:208.195733pt;}
.x47_c00326{left:217.668933pt;}
.x66_c00326{left:218.562133pt;}
.xb_c00326{left:227.766933pt;}
.x4e_c00326{left:236.993733pt;}
.x2e_c00326{left:238.384133pt;}
.x1a_c00326{left:246.906933pt;}
.x69_c00326{left:248.385333pt;}
.x5f_c00326{left:255.816933pt;}
.xc_c00326{left:256.780533pt;}
.x82_c00326{left:261.146213pt;}
.x60_c00326{left:265.672933pt;}
.x57_c00326{left:267.402133pt;}
.x73_c00326{left:272.255333pt;}
.x27_c00326{left:277.143733pt;}
.x7e_c00326{left:278.727733pt;}
.x2f_c00326{left:285.292533pt;}
.x1c_c00326{left:286.722533pt;}
.x77_c00326{left:295.135333pt;}
.x3d_c00326{left:296.552133pt;}
.xd_c00326{left:305.611733pt;}
.x6a_c00326{left:307.204533pt;}
.x48_c00326{left:308.889733pt;}
.x38_c00326{left:313.883733pt;}
.x1d_c00326{left:315.432533pt;}
.x30_c00326{left:316.818533pt;}
.xe_c00326{left:326.617333pt;}
.x31_c00326{left:329.041733pt;}
.x6c_c00326{left:335.848533pt;}
.x32_c00326{left:346.250133pt;}
.x28_c00326{left:354.667333pt;}
.xf_c00326{left:355.679333pt;}
.x52_c00326{left:365.592533pt;}
.x29_c00326{left:374.128533pt;}
.x58_c00326{left:375.721333pt;}
.x3e_c00326{left:380.460133pt;}
.x10_c00326{left:384.393733pt;}
.x7c_c00326{left:387.117333pt;}
.x49_c00326{left:394.755733pt;}
.x7d_c00326{left:403.001333pt;}
.x11_c00326{left:404.277333pt;}
.x61_c00326{left:405.328933pt;}
.x3f_c00326{left:414.080533pt;}
.x53_c00326{left:415.321333pt;}
.x2a_c00326{left:423.395333pt;}
.x1e_c00326{left:425.124533pt;}
.x59_c00326{left:433.550533pt;}
.x33_c00326{left:434.914533pt;}
.x4a_c00326{left:442.764133pt;}
.x12_c00326{left:444.145733pt;}
.x6d_c00326{left:454.256933pt;}
.x34_c00326{left:462.612533pt;}
.x5a_c00326{left:464.451733pt;}
.x78_c00326{left:470.308133pt;}
.x13_c00326{left:472.508133pt;}
.x40_c00326{left:473.515733pt;}
.x1f_c00326{left:476.094133pt;}
.x54_c00326{left:482.918533pt;}
.x2b_c00326{left:492.479733pt;}
.x6b_c00326{left:493.430133pt;}
.x21_c00326{left:496.505733pt;}
.x35_c00326{left:502.564533pt;}
.x79_c00326{left:511.465733pt;}
.x14_c00326{left:512.424933pt;}
.x6f_c00326{left:513.480933pt;}
.x5d_c00326{left:514.409333pt;}
.x41_c00326{left:516.226533pt;}
.x80_c00326{left:521.013733pt;}
.x42_c00326{left:522.364533pt;}
.x67_c00326{left:523.693333pt;}
.x4b_c00326{left:531.111733pt;}
.x15_c00326{left:532.189733pt;}
.x16_c00326{left:542.362533pt;}
.x43_c00326{left:550.792933pt;}
.x36_c00326{left:552.482533pt;}
.x81_c00326{left:553.626533pt;}
.x20_c00326{left:561.212133pt;}
.x6e_c00326{left:562.633333pt;}
.x2c_c00326{left:571.679733pt;}
.x7b_c00326{left:580.910933pt;}
.x44_c00326{left:582.301333pt;}
.x62_c00326{left:590.357733pt;}
.x4f_c00326{left:592.082533pt;}
.x7f_c00326{left:599.580133pt;}
.x4_c00326{left:601.230133pt;}
.x2d_c00326{left:609.400933pt;}
.x63_c00326{left:610.958533pt;}
.x5b_c00326{left:612.010133pt;}
.x5_c00326{left:621.333733pt;}
.x17_c00326{left:630.019333pt;}
.x74_c00326{left:630.991733pt;}
.x37_c00326{left:640.368133pt;}
.x5c_c00326{left:641.468133pt;}
.x68_c00326{left:650.166933pt;}
.x50_c00326{left:659.895333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a6f5405eb281fbc5a65dfced.woff2')format("woff");}.ff1_c00327{font-family:ff1_c00327;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00327;src:url('chunks/assets/font_83401c1a6281e4cc9d376af0.woff2')format("woff");}.ff2_c00327{font-family:ff2_c00327;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00327;src:url('chunks/assets/font_7604124ba433861f88580f9f.woff2')format("woff");}.ff3_c00327{font-family:ff3_c00327;line-height:0.666000;font-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_c00327{transform:matrix(0.019738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.019738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.019738,0.000000,0.000000,0.250000,0,0);}
.m67_c00327{transform:matrix(0.039474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.039474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.039474,0.000000,0.000000,0.250000,0,0);}
.mae_c00327{transform:matrix(0.050001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050001,0.000000,0.000000,0.250000,0,0);}
.m64_c00327{transform:matrix(0.052632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.052632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.052632,0.000000,0.000000,0.250000,0,0);}
.m43_c00327{transform:matrix(0.068751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.068751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.068751,0.000000,0.000000,0.250000,0,0);}
.m44_c00327{transform:matrix(0.081251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081251,0.000000,0.000000,0.250000,0,0);}
.m45_c00327{transform:matrix(0.084375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084375,0.000000,0.000000,0.250000,0,0);}
.m66_c00327{transform:matrix(0.085527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085527,0.000000,0.000000,0.250000,0,0);}
.maf_c00327{transform:matrix(0.085714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085714,0.000000,0.000000,0.250000,0,0);}
.m5e_c00327{transform:matrix(0.107499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107499,0.000000,0.000000,0.250000,0,0);}
.mdb_c00327{transform:matrix(0.117901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117901,0.000000,0.000000,0.250000,0,0);}
.m103_c00327{transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);}
.m80_c00327{transform:matrix(0.134308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134308,0.000000,0.000000,0.250000,0,0);}
.m63_c00327{transform:matrix(0.144736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144736,0.000000,0.000000,0.250000,0,0);}
.mfb_c00327{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m62_c00327{transform:matrix(0.151316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151316,0.000000,0.000000,0.250000,0,0);}
.m2f_c00327{transform:matrix(0.153896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153896,0.000000,0.000000,0.250000,0,0);}
.m65_c00327{transform:matrix(0.157895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157895,0.000000,0.000000,0.250000,0,0);}
.m5d_c00327{transform:matrix(0.159304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159304,0.000000,0.000000,0.250000,0,0);}
.m46_c00327{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);}
.mb0_c00327{transform:matrix(0.169642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169642,0.000000,0.000000,0.250000,0,0);}
.m60_c00327{transform:matrix(0.171053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171053,0.000000,0.000000,0.250000,0,0);}
.m42_c00327{transform:matrix(0.177083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177083,0.000000,0.000000,0.250000,0,0);}
.m5f_c00327{transform:matrix(0.177632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177632,0.000000,0.000000,0.250000,0,0);}
.m102_c00327{transform:matrix(0.184441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184441,0.000000,0.000000,0.250000,0,0);}
.m68_c00327{transform:matrix(0.190790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190790,0.000000,0.000000,0.250000,0,0);}
.mfd_c00327{transform:matrix(0.191667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191667,0.000000,0.000000,0.250000,0,0);}
.mb2_c00327{transform:matrix(0.192834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192834,0.000000,0.000000,0.250000,0,0);}
.md0_c00327{transform:matrix(0.193837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193837,0.000000,0.000000,0.250000,0,0);}
.mbb_c00327{transform:matrix(0.201122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201122,0.000000,0.000000,0.250000,0,0);}
.m100_c00327{transform:matrix(0.203572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203572,0.000000,0.000000,0.250000,0,0);}
.m69_c00327{transform:matrix(0.203948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203948,0.000000,0.000000,0.250000,0,0);}
.m3b_c00327{transform:matrix(0.205281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205281,0.000000,0.000000,0.250000,0,0);}
.mfc_c00327{transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);}
.m9b_c00327{transform:matrix(0.210544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210544,0.000000,0.000000,0.250000,0,0);}
.mfe_c00327{transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);}
.mc1_c00327{transform:matrix(0.217818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217818,0.000000,0.000000,0.250000,0,0);}
.mdc_c00327{transform:matrix(0.226332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226332,0.000000,0.000000,0.250000,0,0);}
.m101_c00327{transform:matrix(0.227068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227068,0.000000,0.000000,0.250000,0,0);}
.mba_c00327{transform:matrix(0.227476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227476,0.000000,0.000000,0.250000,0,0);}
.mbf_c00327{transform:matrix(0.232801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232801,0.000000,0.000000,0.250000,0,0);}
.m55_c00327{transform:matrix(0.234334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234334,0.000000,0.000000,0.250000,0,0);}
.m95_c00327{transform:matrix(0.237394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237394,0.000000,0.000000,0.250000,0,0);}
.m77_c00327{transform:matrix(0.238374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238374,0.000000,0.000000,0.250000,0,0);}
.m1c_c00327{transform:matrix(0.245897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245897,0.000000,0.000000,0.250000,0,0);}
.m1_c00327{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.me1_c00327{transform:matrix(0.258875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258875,0.000000,0.000000,0.250000,0,0);}
.m0_c00327{transform:matrix(0.259671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259671,0.000000,0.000000,0.250000,0,0);}
.m40_c00327{transform:matrix(0.263999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263999,0.000000,0.000000,0.250000,0,0);}
.m17_c00327{transform:matrix(0.265057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265057,0.000000,0.000000,0.250000,0,0);}
.m36_c00327{transform:matrix(0.266067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266067,0.000000,0.000000,0.250000,0,0);}
.m41_c00327{transform:matrix(0.266174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266174,0.000000,0.000000,0.250000,0,0);}
.m72_c00327{transform:matrix(0.266323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266323,0.000000,0.000000,0.250000,0,0);}
.mcf_c00327{transform:matrix(0.267094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267094,0.000000,0.000000,0.250000,0,0);}
.m52_c00327{transform:matrix(0.267508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267508,0.000000,0.000000,0.250000,0,0);}
.md6_c00327{transform:matrix(0.268974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268974,0.000000,0.000000,0.250000,0,0);}
.mc9_c00327{transform:matrix(0.269708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269708,0.000000,0.000000,0.250000,0,0);}
.mbe_c00327{transform:matrix(0.271960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271960,0.000000,0.000000,0.250000,0,0);}
.md9_c00327{transform:matrix(0.272042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272042,0.000000,0.000000,0.250000,0,0);}
.m74_c00327{transform:matrix(0.272285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272285,0.000000,0.000000,0.250000,0,0);}
.m54_c00327{transform:matrix(0.272369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272369,0.000000,0.000000,0.250000,0,0);}
.m8c_c00327{transform:matrix(0.272748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272748,0.000000,0.000000,0.250000,0,0);}
.m6b_c00327{transform:matrix(0.273260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273260,0.000000,0.000000,0.250000,0,0);}
.m86_c00327{transform:matrix(0.274091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274091,0.000000,0.000000,0.250000,0,0);}
.mee_c00327{transform:matrix(0.275386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275386,0.000000,0.000000,0.250000,0,0);}
.m6c_c00327{transform:matrix(0.276557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276557,0.000000,0.000000,0.250000,0,0);}
.m1f_c00327{transform:matrix(0.278900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278900,0.000000,0.000000,0.250000,0,0);}
.ma8_c00327{transform:matrix(0.280057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280057,0.000000,0.000000,0.250000,0,0);}
.mb9_c00327{transform:matrix(0.280843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280843,0.000000,0.000000,0.250000,0,0);}
.mbd_c00327{transform:matrix(0.280917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280917,0.000000,0.000000,0.250000,0,0);}
.m84_c00327{transform:matrix(0.281839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281839,0.000000,0.000000,0.250000,0,0);}
.m99_c00327{transform:matrix(0.282523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282523,0.000000,0.000000,0.250000,0,0);}
.m2a_c00327{transform:matrix(0.282560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282560,0.000000,0.000000,0.250000,0,0);}
.mf0_c00327{transform:matrix(0.283574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283574,0.000000,0.000000,0.250000,0,0);}
.m1b_c00327{transform:matrix(0.284553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284553,0.000000,0.000000,0.250000,0,0);}
.md5_c00327{transform:matrix(0.285066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285066,0.000000,0.000000,0.250000,0,0);}
.m75_c00327{transform:matrix(0.285149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285149,0.000000,0.000000,0.250000,0,0);}
.m58_c00327{transform:matrix(0.287170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287170,0.000000,0.000000,0.250000,0,0);}
.meb_c00327{transform:matrix(0.287183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287183,0.000000,0.000000,0.250000,0,0);}
.m5c_c00327{transform:matrix(0.287217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287217,0.000000,0.000000,0.250000,0,0);}
.ma4_c00327{transform:matrix(0.287697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287697,0.000000,0.000000,0.250000,0,0);}
.md2_c00327{transform:matrix(0.288087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288087,0.000000,0.000000,0.250000,0,0);}
.m85_c00327{transform:matrix(0.288914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288914,0.000000,0.000000,0.250000,0,0);}
.m22_c00327{transform:matrix(0.289440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289440,0.000000,0.000000,0.250000,0,0);}
.m16_c00327{transform:matrix(0.289635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289635,0.000000,0.000000,0.250000,0,0);}
.m2b_c00327{transform:matrix(0.289806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289806,0.000000,0.000000,0.250000,0,0);}
.m15_c00327{transform:matrix(0.290085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290085,0.000000,0.000000,0.250000,0,0);}
.m38_c00327{transform:matrix(0.290241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290241,0.000000,0.000000,0.250000,0,0);}
.m11_c00327{transform:matrix(0.291466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291466,0.000000,0.000000,0.250000,0,0);}
.mcd_c00327{transform:matrix(0.291560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291560,0.000000,0.000000,0.250000,0,0);}
.mf8_c00327{transform:matrix(0.292197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292197,0.000000,0.000000,0.250000,0,0);}
.m10_c00327{transform:matrix(0.292333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292333,0.000000,0.000000,0.250000,0,0);}
.m9f_c00327{transform:matrix(0.292707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292707,0.000000,0.000000,0.250000,0,0);}
.m97_c00327{transform:matrix(0.293600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293600,0.000000,0.000000,0.250000,0,0);}
.mec_c00327{transform:matrix(0.294358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294358,0.000000,0.000000,0.250000,0,0);}
.m13_c00327{transform:matrix(0.294716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294716,0.000000,0.000000,0.250000,0,0);}
.m24_c00327{transform:matrix(0.294926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294926,0.000000,0.000000,0.250000,0,0);}
.mea_c00327{transform:matrix(0.295428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295428,0.000000,0.000000,0.250000,0,0);}
.m4_c00327{transform:matrix(0.295481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295481,0.000000,0.000000,0.250000,0,0);}
.m7f_c00327{transform:matrix(0.295644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295644,0.000000,0.000000,0.250000,0,0);}
.mef_c00327{transform:matrix(0.295739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295739,0.000000,0.000000,0.250000,0,0);}
.ma3_c00327{transform:matrix(0.296004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296004,0.000000,0.000000,0.250000,0,0);}
.m3e_c00327{transform:matrix(0.296597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296597,0.000000,0.000000,0.250000,0,0);}
.mfa_c00327{transform:matrix(0.297260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297260,0.000000,0.000000,0.250000,0,0);}
.m8d_c00327{transform:matrix(0.297387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297387,0.000000,0.000000,0.250000,0,0);}
.mb8_c00327{transform:matrix(0.297972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297972,0.000000,0.000000,0.250000,0,0);}
.me2_c00327{transform:matrix(0.298867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298867,0.000000,0.000000,0.250000,0,0);}
.m3c_c00327{transform:matrix(0.299799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299799,0.000000,0.000000,0.250000,0,0);}
.m8_c00327{transform:matrix(0.300237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300237,0.000000,0.000000,0.250000,0,0);}
.mc3_c00327{transform:matrix(0.300958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300958,0.000000,0.000000,0.250000,0,0);}
.m6e_c00327{transform:matrix(0.301183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301183,0.000000,0.000000,0.250000,0,0);}
.ma5_c00327{transform:matrix(0.301538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301538,0.000000,0.000000,0.250000,0,0);}
.m82_c00327{transform:matrix(0.301706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301706,0.000000,0.000000,0.250000,0,0);}
.m7e_c00327{transform:matrix(0.302178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302178,0.000000,0.000000,0.250000,0,0);}
.m8a_c00327{transform:matrix(0.302253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302253,0.000000,0.000000,0.250000,0,0);}
.m4b_c00327{transform:matrix(0.303628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303628,0.000000,0.000000,0.250000,0,0);}
.mc8_c00327{transform:matrix(0.303951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303951,0.000000,0.000000,0.250000,0,0);}
.m4e_c00327{transform:matrix(0.304267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304267,0.000000,0.000000,0.250000,0,0);}
.md_c00327{transform:matrix(0.304481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304481,0.000000,0.000000,0.250000,0,0);}
.m79_c00327{transform:matrix(0.304936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304936,0.000000,0.000000,0.250000,0,0);}
.m70_c00327{transform:matrix(0.305344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305344,0.000000,0.000000,0.250000,0,0);}
.mb3_c00327{transform:matrix(0.305517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305517,0.000000,0.000000,0.250000,0,0);}
.mf7_c00327{transform:matrix(0.305715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305715,0.000000,0.000000,0.250000,0,0);}
.mb7_c00327{transform:matrix(0.305881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305881,0.000000,0.000000,0.250000,0,0);}
.mb1_c00327{transform:matrix(0.306160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306160,0.000000,0.000000,0.250000,0,0);}
.ma9_c00327{transform:matrix(0.306217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306217,0.000000,0.000000,0.250000,0,0);}
.mb_c00327{transform:matrix(0.306430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306430,0.000000,0.000000,0.250000,0,0);}
.md8_c00327{transform:matrix(0.306566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306566,0.000000,0.000000,0.250000,0,0);}
.m51_c00327{transform:matrix(0.307336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307336,0.000000,0.000000,0.250000,0,0);}
.m94_c00327{transform:matrix(0.307645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307645,0.000000,0.000000,0.250000,0,0);}
.m93_c00327{transform:matrix(0.308161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308161,0.000000,0.000000,0.250000,0,0);}
.mdf_c00327{transform:matrix(0.308487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308487,0.000000,0.000000,0.250000,0,0);}
.m31_c00327{transform:matrix(0.309961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309961,0.000000,0.000000,0.250000,0,0);}
.m12_c00327{transform:matrix(0.310008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310008,0.000000,0.000000,0.250000,0,0);}
.m50_c00327{transform:matrix(0.310064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310064,0.000000,0.000000,0.250000,0,0);}
.m47_c00327{transform:matrix(0.310105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310105,0.000000,0.000000,0.250000,0,0);}
.m3a_c00327{transform:matrix(0.310479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310479,0.000000,0.000000,0.250000,0,0);}
.me8_c00327{transform:matrix(0.310938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310938,0.000000,0.000000,0.250000,0,0);}
.m78_c00327{transform:matrix(0.312257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312257,0.000000,0.000000,0.250000,0,0);}
.m27_c00327{transform:matrix(0.312374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312374,0.000000,0.000000,0.250000,0,0);}
.mc4_c00327{transform:matrix(0.312906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312906,0.000000,0.000000,0.250000,0,0);}
.mf3_c00327{transform:matrix(0.312912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312912,0.000000,0.000000,0.250000,0,0);}
.mc2_c00327{transform:matrix(0.313524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313524,0.000000,0.000000,0.250000,0,0);}
.mf4_c00327{transform:matrix(0.313849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313849,0.000000,0.000000,0.250000,0,0);}
.md3_c00327{transform:matrix(0.314263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314263,0.000000,0.000000,0.250000,0,0);}
.mb4_c00327{transform:matrix(0.314444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314444,0.000000,0.000000,0.250000,0,0);}
.m33_c00327{transform:matrix(0.314720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314720,0.000000,0.000000,0.250000,0,0);}
.m6_c00327{transform:matrix(0.314802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314802,0.000000,0.000000,0.250000,0,0);}
.m25_c00327{transform:matrix(0.315058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315058,0.000000,0.000000,0.250000,0,0);}
.m7a_c00327{transform:matrix(0.315145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315145,0.000000,0.000000,0.250000,0,0);}
.m76_c00327{transform:matrix(0.317210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317210,0.000000,0.000000,0.250000,0,0);}
.mad_c00327{transform:matrix(0.317242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317242,0.000000,0.000000,0.250000,0,0);}
.me_c00327{transform:matrix(0.317306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317306,0.000000,0.000000,0.250000,0,0);}
.m83_c00327{transform:matrix(0.317345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317345,0.000000,0.000000,0.250000,0,0);}
.m89_c00327{transform:matrix(0.317583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317583,0.000000,0.000000,0.250000,0,0);}
.m7b_c00327{transform:matrix(0.319894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319894,0.000000,0.000000,0.250000,0,0);}
.mb6_c00327{transform:matrix(0.320124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320124,0.000000,0.000000,0.250000,0,0);}
.m81_c00327{transform:matrix(0.320685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320685,0.000000,0.000000,0.250000,0,0);}
.m53_c00327{transform:matrix(0.320981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320981,0.000000,0.000000,0.250000,0,0);}
.m34_c00327{transform:matrix(0.321971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321971,0.000000,0.000000,0.250000,0,0);}
.mb5_c00327{transform:matrix(0.323490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323490,0.000000,0.000000,0.250000,0,0);}
.m18_c00327{transform:matrix(0.323921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323921,0.000000,0.000000,0.250000,0,0);}
.m32_c00327{transform:matrix(0.324137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324137,0.000000,0.000000,0.250000,0,0);}
.m1e_c00327{transform:matrix(0.324563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324563,0.000000,0.000000,0.250000,0,0);}
.m87_c00327{transform:matrix(0.326817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326817,0.000000,0.000000,0.250000,0,0);}
.m8e_c00327{transform:matrix(0.327002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327002,0.000000,0.000000,0.250000,0,0);}
.m9_c00327{transform:matrix(0.329228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329228,0.000000,0.000000,0.250000,0,0);}
.m37_c00327{transform:matrix(0.330647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330647,0.000000,0.000000,0.250000,0,0);}
.me9_c00327{transform:matrix(0.331252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331252,0.000000,0.000000,0.250000,0,0);}
.m71_c00327{transform:matrix(0.331808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331808,0.000000,0.000000,0.250000,0,0);}
.mf2_c00327{transform:matrix(0.332250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332250,0.000000,0.000000,0.250000,0,0);}
.mce_c00327{transform:matrix(0.332555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332555,0.000000,0.000000,0.250000,0,0);}
.me7_c00327{transform:matrix(0.332653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332653,0.000000,0.000000,0.250000,0,0);}
.m4d_c00327{transform:matrix(0.333189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333189,0.000000,0.000000,0.250000,0,0);}
.m7d_c00327{transform:matrix(0.333474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333474,0.000000,0.000000,0.250000,0,0);}
.m7_c00327{transform:matrix(0.334531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334531,0.000000,0.000000,0.250000,0,0);}
.m19_c00327{transform:matrix(0.334885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334885,0.000000,0.000000,0.250000,0,0);}
.m8f_c00327{transform:matrix(0.335557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335557,0.000000,0.000000,0.250000,0,0);}
.m59_c00327{transform:matrix(0.336192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336192,0.000000,0.000000,0.250000,0,0);}
.m35_c00327{transform:matrix(0.336505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336505,0.000000,0.000000,0.250000,0,0);}
.m5b_c00327{transform:matrix(0.336652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336652,0.000000,0.000000,0.250000,0,0);}
.m2_c00327{transform:matrix(0.337045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337045,0.000000,0.000000,0.250000,0,0);}
.m4f_c00327{transform:matrix(0.337962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337962,0.000000,0.000000,0.250000,0,0);}
.mc_c00327{transform:matrix(0.339424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339424,0.000000,0.000000,0.250000,0,0);}
.m2e_c00327{transform:matrix(0.339538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339538,0.000000,0.000000,0.250000,0,0);}
.mf_c00327{transform:matrix(0.339796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339796,0.000000,0.000000,0.250000,0,0);}
.mc6_c00327{transform:matrix(0.339930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339930,0.000000,0.000000,0.250000,0,0);}
.mcb_c00327{transform:matrix(0.341989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341989,0.000000,0.000000,0.250000,0,0);}
.m61_c00327{transform:matrix(0.342105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342105,0.000000,0.000000,0.250000,0,0);}
.m29_c00327{transform:matrix(0.342409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342409,0.000000,0.000000,0.250000,0,0);}
.mac_c00327{transform:matrix(0.342535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342535,0.000000,0.000000,0.250000,0,0);}
.m8b_c00327{transform:matrix(0.343033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343033,0.000000,0.000000,0.250000,0,0);}
.m30_c00327{transform:matrix(0.343744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343744,0.000000,0.000000,0.250000,0,0);}
.m20_c00327{transform:matrix(0.344750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00327{transform:matrix(0.345163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345163,0.000000,0.000000,0.250000,0,0);}
.m9a_c00327{transform:matrix(0.345504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345504,0.000000,0.000000,0.250000,0,0);}
.m49_c00327{transform:matrix(0.346928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346928,0.000000,0.000000,0.250000,0,0);}
.mf1_c00327{transform:matrix(0.347135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347135,0.000000,0.000000,0.250000,0,0);}
.m73_c00327{transform:matrix(0.347342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347342,0.000000,0.000000,0.250000,0,0);}
.m57_c00327{transform:matrix(0.347419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347419,0.000000,0.000000,0.250000,0,0);}
.m28_c00327{transform:matrix(0.347791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347791,0.000000,0.000000,0.250000,0,0);}
.m6f_c00327{transform:matrix(0.348337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348337,0.000000,0.000000,0.250000,0,0);}
.me0_c00327{transform:matrix(0.348822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348822,0.000000,0.000000,0.250000,0,0);}
.mf6_c00327{transform:matrix(0.349660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349660,0.000000,0.000000,0.250000,0,0);}
.md1_c00327{transform:matrix(0.350350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350350,0.000000,0.000000,0.250000,0,0);}
.ma2_c00327{transform:matrix(0.350440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350440,0.000000,0.000000,0.250000,0,0);}
.m4c_c00327{transform:matrix(0.350878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350878,0.000000,0.000000,0.250000,0,0);}
.m92_c00327{transform:matrix(0.351219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351219,0.000000,0.000000,0.250000,0,0);}
.m7c_c00327{transform:matrix(0.352571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352571,0.000000,0.000000,0.250000,0,0);}
.me3_c00327{transform:matrix(0.352587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352587,0.000000,0.000000,0.250000,0,0);}
.m2d_c00327{transform:matrix(0.353217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353217,0.000000,0.000000,0.250000,0,0);}
.md7_c00327{transform:matrix(0.353360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353360,0.000000,0.000000,0.250000,0,0);}
.m90_c00327{transform:matrix(0.353622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353622,0.000000,0.000000,0.250000,0,0);}
.ma0_c00327{transform:matrix(0.353694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353694,0.000000,0.000000,0.250000,0,0);}
.m2c_c00327{transform:matrix(0.354773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354773,0.000000,0.000000,0.250000,0,0);}
.ma6_c00327{transform:matrix(0.357650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357650,0.000000,0.000000,0.250000,0,0);}
.m98_c00327{transform:matrix(0.357734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357734,0.000000,0.000000,0.250000,0,0);}
.mff_c00327{transform:matrix(0.359882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359882,0.000000,0.000000,0.250000,0,0);}
.m56_c00327{transform:matrix(0.360725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360725,0.000000,0.000000,0.250000,0,0);}
.m1a_c00327{transform:matrix(0.363146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363146,0.000000,0.000000,0.250000,0,0);}
.m14_c00327{transform:matrix(0.364398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364398,0.000000,0.000000,0.250000,0,0);}
.m1d_c00327{transform:matrix(0.364792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364792,0.000000,0.000000,0.250000,0,0);}
.m5_c00327{transform:matrix(0.366188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366188,0.000000,0.000000,0.250000,0,0);}
.m3f_c00327{transform:matrix(0.366999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366999,0.000000,0.000000,0.250000,0,0);}
.m48_c00327{transform:matrix(0.367231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367231,0.000000,0.000000,0.250000,0,0);}
.m88_c00327{transform:matrix(0.367703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367703,0.000000,0.000000,0.250000,0,0);}
.mf9_c00327{transform:matrix(0.368586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368586,0.000000,0.000000,0.250000,0,0);}
.m5a_c00327{transform:matrix(0.371701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371701,0.000000,0.000000,0.250000,0,0);}
.mab_c00327{transform:matrix(0.372247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372247,0.000000,0.000000,0.250000,0,0);}
.m39_c00327{transform:matrix(0.373003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373003,0.000000,0.000000,0.250000,0,0);}
.m3_c00327{transform:matrix(0.374654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374654,0.000000,0.000000,0.250000,0,0);}
.m9c_c00327{transform:matrix(0.375122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375122,0.000000,0.000000,0.250000,0,0);}
.ma7_c00327{transform:matrix(0.376163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376163,0.000000,0.000000,0.250000,0,0);}
.me4_c00327{transform:matrix(0.376765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376765,0.000000,0.000000,0.250000,0,0);}
.mcc_c00327{transform:matrix(0.377608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377608,0.000000,0.000000,0.250000,0,0);}
.mda_c00327{transform:matrix(0.377719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377719,0.000000,0.000000,0.250000,0,0);}
.ma_c00327{transform:matrix(0.377776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377776,0.000000,0.000000,0.250000,0,0);}
.m91_c00327{transform:matrix(0.377906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377906,0.000000,0.000000,0.250000,0,0);}
.md4_c00327{transform:matrix(0.378873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378873,0.000000,0.000000,0.250000,0,0);}
.maa_c00327{transform:matrix(0.383940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383940,0.000000,0.000000,0.250000,0,0);}
.mc5_c00327{transform:matrix(0.386722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386722,0.000000,0.000000,0.250000,0,0);}
.mc0_c00327{transform:matrix(0.388542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388542,0.000000,0.000000,0.250000,0,0);}
.m9e_c00327{transform:matrix(0.390880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390880,0.000000,0.000000,0.250000,0,0);}
.me5_c00327{transform:matrix(0.391325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391325,0.000000,0.000000,0.250000,0,0);}
.m21_c00327{transform:matrix(0.391433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391433,0.000000,0.000000,0.250000,0,0);}
.mca_c00327{transform:matrix(0.392881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392881,0.000000,0.000000,0.250000,0,0);}
.m3d_c00327{transform:matrix(0.394635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394635,0.000000,0.000000,0.250000,0,0);}
.mdd_c00327{transform:matrix(0.395133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395133,0.000000,0.000000,0.250000,0,0);}
.mde_c00327{transform:matrix(0.395584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395584,0.000000,0.000000,0.250000,0,0);}
.med_c00327{transform:matrix(0.397482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397482,0.000000,0.000000,0.250000,0,0);}
.m26_c00327{transform:matrix(0.402844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402844,0.000000,0.000000,0.250000,0,0);}
.m96_c00327{transform:matrix(0.407087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407087,0.000000,0.000000,0.250000,0,0);}
.ma1_c00327{transform:matrix(0.409278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409278,0.000000,0.000000,0.250000,0,0);}
.mbc_c00327{transform:matrix(0.416858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416858,0.000000,0.000000,0.250000,0,0);}
.m9d_c00327{transform:matrix(0.424437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424437,0.000000,0.000000,0.250000,0,0);}
.m23_c00327{transform:matrix(0.448566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448566,0.000000,0.000000,0.250000,0,0);}
.mc7_c00327{transform:matrix(0.450105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450105,0.000000,0.000000,0.250000,0,0);}
.m6d_c00327{transform:matrix(0.458598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458598,0.000000,0.000000,0.250000,0,0);}
.mf5_c00327{transform:matrix(0.465386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465386,0.000000,0.000000,0.250000,0,0);}
.me6_c00327{transform:matrix(0.467090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467090,0.000000,0.000000,0.250000,0,0);}
.v1_c00327{vertical-align:-22.795740px;}
.v2_c00327{vertical-align:-4.257000px;}
.v0_c00327{vertical-align:0.000000px;}
.ls16_c00327{letter-spacing:-3.060770px;}
.ls8_c00327{letter-spacing:-2.494800px;}
.lsb_c00327{letter-spacing:-1.967328px;}
.lsa_c00327{letter-spacing:-1.917432px;}
.ls14_c00327{letter-spacing:-1.628550px;}
.ls9_c00327{letter-spacing:-1.111968px;}
.ls19_c00327{letter-spacing:-0.997920px;}
.ls5_c00327{letter-spacing:0.000000px;}
.ls15_c00327{letter-spacing:0.313632px;}
.lse_c00327{letter-spacing:0.605880px;}
.ls10_c00327{letter-spacing:0.826848px;}
.ls11_c00327{letter-spacing:0.933768px;}
.ls1a_c00327{letter-spacing:1.204632px;}
.ls17_c00327{letter-spacing:1.375704px;}
.ls1b_c00327{letter-spacing:1.430946px;}
.ls13_c00327{letter-spacing:2.326500px;}
.ls7_c00327{letter-spacing:2.380752px;}
.ls18_c00327{letter-spacing:2.574000px;}
.ls0_c00327{letter-spacing:2.972376px;}
.ls2_c00327{letter-spacing:2.993760px;}
.ls3_c00327{letter-spacing:3.407184px;}
.ls6_c00327{letter-spacing:3.564000px;}
.lsd_c00327{letter-spacing:3.801610px;}
.ls4_c00327{letter-spacing:4.098610px;}
.ls1_c00327{letter-spacing:8.988408px;}
.ls1c_c00327{letter-spacing:31.363200px;}
.ls12_c00327{letter-spacing:49.896198px;}
.lsf_c00327{letter-spacing:54.172998px;}
.lsc_c00327{letter-spacing:57.024198px;}
.sc__c00327{text-shadow:none;}
.sc0_c00327{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00327{-webkit-text-stroke:0px transparent;}
.sc0_c00327{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00327{word-spacing:-20.792376px;}
.ws2_c00327{word-spacing:-20.493050px;}
.ws6_c00327{word-spacing:-19.195704px;}
.ws4_c00327{word-spacing:-18.133632px;}
.ws1_c00327{word-spacing:-17.820000px;}
.ws8_c00327{word-spacing:0.000000px;}
.ws3_c00327{word-spacing:0.784080px;}
.ws7_c00327{word-spacing:6.130080px;}
.ws5_c00327{word-spacing:7.571365px;}
._10_c00327{margin-left:-36.210240px;}
._12_c00327{margin-left:-27.727920px;}
._14_c00327{margin-left:-20.813760px;}
._11_c00327{margin-left:-15.325200px;}
._15_c00327{margin-left:-13.400640px;}
._16_c00327{margin-left:-8.910000px;}
._1d_c00327{margin-left:-7.769520px;}
._13_c00327{margin-left:-6.486480px;}
._0_c00327{margin-left:-5.417280px;}
._17_c00327{margin-left:-2.423520px;}
._1e_c00327{width:1.710720px;}
._22_c00327{width:2.737152px;}
._c_c00327{width:5.060880px;}
._2_c00327{width:6.122160px;}
._6_c00327{width:8.268480px;}
._9_c00327{width:9.979200px;}
._21_c00327{width:10.991376px;}
._5_c00327{width:13.614480px;}
._a_c00327{width:20.671200px;}
._e_c00327{width:22.667040px;}
._1b_c00327{width:24.104520px;}
._3_c00327{width:25.660800px;}
._19_c00327{width:27.514080px;}
._1a_c00327{width:28.801080px;}
._f_c00327{width:30.115800px;}
._d_c00327{width:32.442151px;}
._20_c00327{width:33.481800px;}
._1_c00327{width:34.927200px;}
._4_c00327{width:36.709200px;}
._b_c00327{width:38.087280px;}
._1f_c00327{width:40.087080px;}
._7_c00327{width:41.718600px;}
._18_c00327{width:43.282800px;}
._1c_c00327{width:44.334180px;}
._8_c00327{width:50.652360px;}
.fc0_c00327{color:transparent;}
.fsa_c00327{font-size:22.572000px;}
.fs11_c00327{font-size:26.928000px;}
.fs5_c00327{font-size:30.888000px;}
.fs12_c00327{font-size:31.363200px;}
.fsc_c00327{font-size:46.530000px;}
.fsb_c00327{font-size:49.896198px;}
.fse_c00327{font-size:51.480000px;}
.fs8_c00327{font-size:54.172998px;}
.fs6_c00327{font-size:57.024198px;}
.fsf_c00327{font-size:65.340000px;}
.fs10_c00327{font-size:66.528000px;}
.fs7_c00327{font-size:68.706198px;}
.fs1_c00327{font-size:71.280000px;}
.fs2_c00327{font-size:74.448000px;}
.fs3_c00327{font-size:76.032198px;}
.fs9_c00327{font-size:76.824000px;}
.fs4_c00327{font-size:78.012198px;}
.fs0_c00327{font-size:81.972198px;}
.fsd_c00327{font-size:89.496198px;}
.y0_c00327{bottom:0.000000px;}
.y1_c00327{bottom:76.500000px;}
.y23_c00327{bottom:83.665935px;}
.y22_c00327{bottom:94.001535px;}
.y21_c00327{bottom:107.188335px;}
.y20_c00327{bottom:135.343935px;}
.y1f_c00327{bottom:166.707135px;}
.y1e_c00327{bottom:199.134585px;}
.y1d_c00327{bottom:231.571935px;}
.y1c_c00327{bottom:264.360735px;}
.y1b_c00327{bottom:296.431785px;}
.y1a_c00327{bottom:329.933385px;}
.y19_c00327{bottom:329.938335px;}
.y18_c00327{bottom:362.370735px;}
.y17_c00327{bottom:394.803135px;}
.y16_c00327{bottom:410.836185px;}
.y15_c00327{bottom:427.591935px;}
.y12_c00327{bottom:459.311535px;}
.y14_c00327{bottom:459.662985px;}
.y13_c00327{bottom:460.024335px;}
.y11_c00327{bottom:533.437785px;}
.y10_c00327{bottom:556.252335px;}
.yf_c00327{bottom:589.041135px;}
.ye_c00327{bottom:622.894185px;}
.yd_c00327{bottom:654.262335px;}
.yc_c00327{bottom:655.326585px;}
.yb_c00327{bottom:688.115385px;}
.y9_c00327{bottom:721.621935px;}
.ya_c00327{bottom:727.324335px;}
.y8_c00327{bottom:755.479935px;}
.y7_c00327{bottom:787.194585px;}
.y6_c00327{bottom:820.339785px;}
.y5_c00327{bottom:855.271935px;}
.y4_c00327{bottom:888.773535px;}
.y3_c00327{bottom:922.270185px;}
.y2_c00327{bottom:1073.740185px;}
.h13_c00327{height:20.887891px;}
.hb_c00327{height:23.541891px;}
.h12_c00327{height:28.085063px;}
.h7_c00327{height:32.215219px;}
.hc_c00327{height:33.230868px;}
.h9_c00327{height:36.079217px;}
.h8_c00327{height:37.978116px;}
.hd_c00327{height:48.529336px;}
.hf_c00327{height:53.692031px;}
.h10_c00327{height:64.127637px;}
.h11_c00327{height:69.386625px;}
.h3_c00327{height:69.957422px;}
.h4_c00327{height:73.066641px;}
.h5_c00327{height:74.621444px;}
.ha_c00327{height:75.398555px;}
.h6_c00327{height:76.564706px;}
.h2_c00327{height:80.451229px;}
.he_c00327{height:87.835624px;}
.h1_c00327{height:1110.000000px;}
.h0_c00327{height:1263.000000px;}
.w1_c00327{width:775.500000px;}
.w0_c00327{width:892.500000px;}
.x0_c00327{left:0.000000px;}
.x1_c00327{left:58.500000px;}
.x42_c00327{left:86.191035px;}
.xf_c00327{left:87.943335px;}
.x31_c00327{left:89.220435px;}
.x8a_c00327{left:90.636135px;}
.x3b_c00327{left:99.174885px;}
.x25_c00327{left:109.203585px;}
.x8b_c00327{left:110.851935px;}
.x10_c00327{left:121.558785px;}
.x1a_c00327{left:131.453835px;}
.x8c_c00327{left:133.641735px;}
.x3_c00327{left:142.621035px;}
.x8d_c00327{left:143.977335px;}
.x43_c00327{left:145.165335px;}
.x26_c00327{left:152.912085px;}
.x79_c00327{left:154.075335px;}
.x11_c00327{left:155.109885px;}
.x44_c00327{left:163.950585px;}
.x7f_c00327{left:165.108885px;}
.x83_c00327{left:168.019485px;}
.x62_c00327{left:175.894935px;}
.x8e_c00327{left:177.122535px;}
.x4_c00327{left:186.403785px;}
.x51_c00327{left:187.611585px;}
.x6c_c00327{left:189.452985px;}
.x45_c00327{left:198.501585px;}
.x27_c00327{left:208.654035px;}
.x84_c00327{left:218.811435px;}
.x32_c00327{left:220.375635px;}
.x1b_c00327{left:223.162485px;}
.x75_c00327{left:230.938935px;}
.x12_c00327{left:232.295235px;}
.x46_c00327{left:233.785185px;}
.x76_c00327{left:235.923585px;}
.x8f_c00327{left:236.997735px;}
.x47_c00327{left:239.492535px;}
.x5_c00327{left:242.620935px;}
.x48_c00327{left:252.679335px;}
.x28_c00327{left:264.247485px;}
.x90_c00327{left:265.697835px;}
.x13_c00327{left:275.063235px;}
.x33_c00327{left:278.048085px;}
.x6a_c00327{left:285.987885px;}
.x6_c00327{left:287.388735px;}
.x3c_c00327{left:295.343385px;}
.x3d_c00327{left:297.546135px;}
.x34_c00327{left:298.729185px;}
.x63_c00327{left:307.515435px;}
.x1c_c00327{left:308.757885px;}
.x52_c00327{left:319.459785px;}
.x77_c00327{left:320.533935px;}
.x7_c00327{left:330.780435px;}
.x78_c00327{left:340.769535px;}
.x14_c00327{left:342.274335px;}
.x29_c00327{left:353.090085px;}
.x1d_c00327{left:356.099685px;}
.x81_c00327{left:362.752485px;}
.x6b_c00327{left:364.722585px;}
.x8_c00327{left:375.444285px;}
.x70_c00327{left:376.473885px;}
.x67_c00327{left:377.840085px;}
.x7a_c00327{left:382.384185px;}
.x15_c00327{left:386.814435px;}
.x35_c00327{left:397.169835px;}
.x53_c00327{left:398.689485px;}
.x54_c00327{left:401.609985px;}
.x1e_c00327{left:407.624235px;}
.x2a_c00327{left:410.010135px;}
.x4d_c00327{left:414.272085px;}
.x9_c00327{left:418.345935px;}
.x1f_c00327{left:420.276435px;}
.x86_c00327{left:423.563235px;}
.x36_c00327{left:430.092285px;}
.x6d_c00327{left:431.389185px;}
.x16_c00327{left:441.744585px;}
.x2b_c00327{left:444.199785px;}
.x55_c00327{left:447.986535px;}
.x3e_c00327{left:450.827835px;}
.x20_c00327{left:452.748435px;}
.x2c_c00327{left:454.282935px;}
.x56_c00327{left:457.247985px;}
.x57_c00327{left:462.955335px;}
.x87_c00327{left:464.014635px;}
.x58_c00327{left:466.519335px;}
.x59_c00327{left:475.067985px;}
.x21_c00327{left:485.730285px;}
.x2d_c00327{left:488.848785px;}
.x5a_c00327{left:494.313585px;}
.x64_c00327{left:496.595535px;}
.x37_c00327{left:497.763735px;}
.x91_c00327{left:498.926985px;}
.x5b_c00327{left:503.584935px;}
.xa_c00327{left:508.054785px;}
.x5c_c00327{left:512.851335px;}
.x38_c00327{left:517.831035px;}
.x4e_c00327{left:519.419985px;}
.x5d_c00327{left:522.112785px;}
.x49_c00327{left:529.181385px;}
.x3f_c00327{left:530.344635px;}
.x22_c00327{left:540.200085px;}
.xb_c00327{left:541.462335px;}
.x5e_c00327{left:544.927335px;}
.x5f_c00327{left:549.956535px;}
.x4a_c00327{left:551.872185px;}
.x2e_c00327{left:561.668235px;}
.x4f_c00327{left:563.069085px;}
.x88_c00327{left:572.330535px;}
.x82_c00327{left:573.602685px;}
.x23_c00327{left:574.671885px;}
.x17_c00327{left:576.354885px;}
.x65_c00327{left:584.086785px;}
.x4b_c00327{left:585.151035px;}
.x60_c00327{left:587.027085px;}
.xc_c00327{left:596.055885px;}
.x7b_c00327{left:598.857585px;}
.x40_c00327{left:606.960735px;}
.x71_c00327{left:608.119035px;}
.x68_c00327{left:617.266635px;}
.x18_c00327{left:618.900135px;}
.x39_c00327{left:629.765385px;}
.x7c_c00327{left:631.151385px;}
.x2f_c00327{left:640.100985px;}
.xd_c00327{left:641.288985px;}
.x30_c00327{left:650.411835px;}
.x61_c00327{left:651.550335px;}
.x41_c00327{left:661.772085px;}
.x89_c00327{left:663.049185px;}
.x4c_c00327{left:672.152235px;}
.x2_c00327{left:673.681785px;}
.x3a_c00327{left:674.810385px;}
.x6f_c00327{left:684.784635px;}
.x7d_c00327{left:690.942435px;}
.x19_c00327{left:695.471685px;}
.x66_c00327{left:696.550785px;}
.x72_c00327{left:697.956585px;}
.x7e_c00327{left:705.683535px;}
.x24_c00327{left:706.688385px;}
.x73_c00327{left:708.307035px;}
.x92_c00327{left:709.673235px;}
.x93_c00327{left:711.173085px;}
.x69_c00327{left:717.385335px;}
.x6e_c00327{left:720.696885px;}
.xe_c00327{left:728.968335px;}
.x85_c00327{left:730.943385px;}
.x50_c00327{left:740.689935px;}
.x74_c00327{left:743.318385px;}
.x80_c00327{left:751.065135px;}
@media print{
.v1_c00327{vertical-align:-20.262880pt;}
.v2_c00327{vertical-align:-3.784000pt;}
.v0_c00327{vertical-align:0.000000pt;}
.ls16_c00327{letter-spacing:-2.720684pt;}
.ls8_c00327{letter-spacing:-2.217600pt;}
.lsb_c00327{letter-spacing:-1.748736pt;}
.lsa_c00327{letter-spacing:-1.704384pt;}
.ls14_c00327{letter-spacing:-1.447600pt;}
.ls9_c00327{letter-spacing:-0.988416pt;}
.ls19_c00327{letter-spacing:-0.887040pt;}
.ls5_c00327{letter-spacing:0.000000pt;}
.ls15_c00327{letter-spacing:0.278784pt;}
.lse_c00327{letter-spacing:0.538560pt;}
.ls10_c00327{letter-spacing:0.734976pt;}
.ls11_c00327{letter-spacing:0.830016pt;}
.ls1a_c00327{letter-spacing:1.070784pt;}
.ls17_c00327{letter-spacing:1.222848pt;}
.ls1b_c00327{letter-spacing:1.271952pt;}
.ls13_c00327{letter-spacing:2.068000pt;}
.ls7_c00327{letter-spacing:2.116224pt;}
.ls18_c00327{letter-spacing:2.288000pt;}
.ls0_c00327{letter-spacing:2.642112pt;}
.ls2_c00327{letter-spacing:2.661120pt;}
.ls3_c00327{letter-spacing:3.028608pt;}
.ls6_c00327{letter-spacing:3.168000pt;}
.lsd_c00327{letter-spacing:3.379209pt;}
.ls4_c00327{letter-spacing:3.643209pt;}
.ls1_c00327{letter-spacing:7.989696pt;}
.ls1c_c00327{letter-spacing:27.878400pt;}
.ls12_c00327{letter-spacing:44.352176pt;}
.lsf_c00327{letter-spacing:48.153776pt;}
.lsc_c00327{letter-spacing:50.688176pt;}
.ws0_c00327{word-spacing:-18.482112pt;}
.ws2_c00327{word-spacing:-18.216044pt;}
.ws6_c00327{word-spacing:-17.062848pt;}
.ws4_c00327{word-spacing:-16.118784pt;}
.ws1_c00327{word-spacing:-15.840000pt;}
.ws8_c00327{word-spacing:0.000000pt;}
.ws3_c00327{word-spacing:0.696960pt;}
.ws7_c00327{word-spacing:5.448960pt;}
.ws5_c00327{word-spacing:6.730103pt;}
._10_c00327{margin-left:-32.186880pt;}
._12_c00327{margin-left:-24.647040pt;}
._14_c00327{margin-left:-18.501120pt;}
._11_c00327{margin-left:-13.622400pt;}
._15_c00327{margin-left:-11.911680pt;}
._16_c00327{margin-left:-7.920000pt;}
._1d_c00327{margin-left:-6.906240pt;}
._13_c00327{margin-left:-5.765760pt;}
._0_c00327{margin-left:-4.815360pt;}
._17_c00327{margin-left:-2.154240pt;}
._1e_c00327{width:1.520640pt;}
._22_c00327{width:2.433024pt;}
._c_c00327{width:4.498560pt;}
._2_c00327{width:5.441920pt;}
._6_c00327{width:7.349760pt;}
._9_c00327{width:8.870400pt;}
._21_c00327{width:9.770112pt;}
._5_c00327{width:12.101760pt;}
._a_c00327{width:18.374400pt;}
._e_c00327{width:20.148480pt;}
._1b_c00327{width:21.426240pt;}
._3_c00327{width:22.809600pt;}
._19_c00327{width:24.456960pt;}
._1a_c00327{width:25.600960pt;}
._f_c00327{width:26.769600pt;}
._d_c00327{width:28.837468pt;}
._20_c00327{width:29.761600pt;}
._1_c00327{width:31.046400pt;}
._4_c00327{width:32.630400pt;}
._b_c00327{width:33.855360pt;}
._1f_c00327{width:35.632960pt;}
._7_c00327{width:37.083200pt;}
._18_c00327{width:38.473600pt;}
._1c_c00327{width:39.408160pt;}
._8_c00327{width:45.024320pt;}
.fsa_c00327{font-size:20.064000pt;}
.fs11_c00327{font-size:23.936000pt;}
.fs5_c00327{font-size:27.456000pt;}
.fs12_c00327{font-size:27.878400pt;}
.fsc_c00327{font-size:41.360000pt;}
.fsb_c00327{font-size:44.352176pt;}
.fse_c00327{font-size:45.760000pt;}
.fs8_c00327{font-size:48.153776pt;}
.fs6_c00327{font-size:50.688176pt;}
.fsf_c00327{font-size:58.080000pt;}
.fs10_c00327{font-size:59.136000pt;}
.fs7_c00327{font-size:61.072176pt;}
.fs1_c00327{font-size:63.360000pt;}
.fs2_c00327{font-size:66.176000pt;}
.fs3_c00327{font-size:67.584176pt;}
.fs9_c00327{font-size:68.288000pt;}
.fs4_c00327{font-size:69.344176pt;}
.fs0_c00327{font-size:72.864176pt;}
.fsd_c00327{font-size:79.552176pt;}
.y0_c00327{bottom:0.000000pt;}
.y1_c00327{bottom:68.000000pt;}
.y23_c00327{bottom:74.369720pt;}
.y22_c00327{bottom:83.556920pt;}
.y21_c00327{bottom:95.278520pt;}
.y20_c00327{bottom:120.305720pt;}
.y1f_c00327{bottom:148.184120pt;}
.y1e_c00327{bottom:177.008520pt;}
.y1d_c00327{bottom:205.841720pt;}
.y1c_c00327{bottom:234.987320pt;}
.y1b_c00327{bottom:263.494920pt;}
.y1a_c00327{bottom:293.274120pt;}
.y19_c00327{bottom:293.278520pt;}
.y18_c00327{bottom:322.107320pt;}
.y17_c00327{bottom:350.936120pt;}
.y16_c00327{bottom:365.187720pt;}
.y15_c00327{bottom:380.081720pt;}
.y12_c00327{bottom:408.276920pt;}
.y14_c00327{bottom:408.589320pt;}
.y13_c00327{bottom:408.910520pt;}
.y11_c00327{bottom:474.166920pt;}
.y10_c00327{bottom:494.446520pt;}
.yf_c00327{bottom:523.592120pt;}
.ye_c00327{bottom:553.683720pt;}
.yd_c00327{bottom:581.566520pt;}
.yc_c00327{bottom:582.512520pt;}
.yb_c00327{bottom:611.658120pt;}
.y9_c00327{bottom:641.441720pt;}
.ya_c00327{bottom:646.510520pt;}
.y8_c00327{bottom:671.537720pt;}
.y7_c00327{bottom:699.728520pt;}
.y6_c00327{bottom:729.190920pt;}
.y5_c00327{bottom:760.241720pt;}
.y4_c00327{bottom:790.020920pt;}
.y3_c00327{bottom:819.795720pt;}
.y2_c00327{bottom:954.435720pt;}
.h13_c00327{height:18.567014pt;}
.hb_c00327{height:20.926125pt;}
.h12_c00327{height:24.964500pt;}
.h7_c00327{height:28.635750pt;}
.hc_c00327{height:29.538549pt;}
.h9_c00327{height:32.070415pt;}
.h8_c00327{height:33.758325pt;}
.hd_c00327{height:43.137188pt;}
.hf_c00327{height:47.726250pt;}
.h10_c00327{height:57.002344pt;}
.h11_c00327{height:61.677000pt;}
.h3_c00327{height:62.184375pt;}
.h4_c00327{height:64.948125pt;}
.h5_c00327{height:66.330173pt;}
.ha_c00327{height:67.020938pt;}
.h6_c00327{height:68.057516pt;}
.h2_c00327{height:71.512204pt;}
.he_c00327{height:78.076110pt;}
.h1_c00327{height:986.666667pt;}
.h0_c00327{height:1122.666667pt;}
.w1_c00327{width:689.333333pt;}
.w0_c00327{width:793.333333pt;}
.x0_c00327{left:0.000000pt;}
.x1_c00327{left:52.000000pt;}
.x42_c00327{left:76.614253pt;}
.xf_c00327{left:78.171853pt;}
.x31_c00327{left:79.307053pt;}
.x8a_c00327{left:80.565453pt;}
.x3b_c00327{left:88.155453pt;}
.x25_c00327{left:97.069853pt;}
.x8b_c00327{left:98.535053pt;}
.x10_c00327{left:108.052253pt;}
.x1a_c00327{left:116.847853pt;}
.x8c_c00327{left:118.792653pt;}
.x3_c00327{left:126.774253pt;}
.x8d_c00327{left:127.979853pt;}
.x43_c00327{left:129.035853pt;}
.x26_c00327{left:135.921853pt;}
.x79_c00327{left:136.955853pt;}
.x11_c00327{left:137.875453pt;}
.x44_c00327{left:145.733853pt;}
.x7f_c00327{left:146.763453pt;}
.x83_c00327{left:149.350653pt;}
.x62_c00327{left:156.351053pt;}
.x8e_c00327{left:157.442253pt;}
.x4_c00327{left:165.692253pt;}
.x51_c00327{left:166.765853pt;}
.x6c_c00327{left:168.402653pt;}
.x45_c00327{left:176.445853pt;}
.x27_c00327{left:185.470253pt;}
.x84_c00327{left:194.499053pt;}
.x32_c00327{left:195.889453pt;}
.x1b_c00327{left:198.366653pt;}
.x75_c00327{left:205.279053pt;}
.x12_c00327{left:206.484653pt;}
.x46_c00327{left:207.809053pt;}
.x76_c00327{left:209.709853pt;}
.x8f_c00327{left:210.664653pt;}
.x47_c00327{left:212.882253pt;}
.x5_c00327{left:215.663053pt;}
.x48_c00327{left:224.603853pt;}
.x28_c00327{left:234.886653pt;}
.x90_c00327{left:236.175853pt;}
.x13_c00327{left:244.500653pt;}
.x33_c00327{left:247.153853pt;}
.x6a_c00327{left:254.211453pt;}
.x6_c00327{left:255.456653pt;}
.x3c_c00327{left:262.527453pt;}
.x3d_c00327{left:264.485453pt;}
.x34_c00327{left:265.537053pt;}
.x63_c00327{left:273.347053pt;}
.x1c_c00327{left:274.451453pt;}
.x52_c00327{left:283.964253pt;}
.x77_c00327{left:284.919053pt;}
.x7_c00327{left:294.027053pt;}
.x78_c00327{left:302.906253pt;}
.x14_c00327{left:304.243853pt;}
.x29_c00327{left:313.857853pt;}
.x1d_c00327{left:316.533053pt;}
.x81_c00327{left:322.446653pt;}
.x6b_c00327{left:324.197853pt;}
.x8_c00327{left:333.728253pt;}
.x70_c00327{left:334.643453pt;}
.x67_c00327{left:335.857853pt;}
.x7a_c00327{left:339.897053pt;}
.x15_c00327{left:343.835053pt;}
.x35_c00327{left:353.039853pt;}
.x53_c00327{left:354.390653pt;}
.x54_c00327{left:356.986653pt;}
.x1e_c00327{left:362.332653pt;}
.x2a_c00327{left:364.453453pt;}
.x4d_c00327{left:368.241853pt;}
.x9_c00327{left:371.863053pt;}
.x1f_c00327{left:373.579053pt;}
.x86_c00327{left:376.500653pt;}
.x36_c00327{left:382.304253pt;}
.x6d_c00327{left:383.457053pt;}
.x16_c00327{left:392.661853pt;}
.x2b_c00327{left:394.844253pt;}
.x55_c00327{left:398.210253pt;}
.x3e_c00327{left:400.735853pt;}
.x20_c00327{left:402.443053pt;}
.x2c_c00327{left:403.807053pt;}
.x56_c00327{left:406.442653pt;}
.x57_c00327{left:411.515853pt;}
.x87_c00327{left:412.457453pt;}
.x58_c00327{left:414.683853pt;}
.x59_c00327{left:422.282653pt;}
.x21_c00327{left:431.760253pt;}
.x2d_c00327{left:434.532253pt;}
.x5a_c00327{left:439.389853pt;}
.x64_c00327{left:441.418253pt;}
.x37_c00327{left:442.456653pt;}
.x91_c00327{left:443.490653pt;}
.x5b_c00327{left:447.631053pt;}
.xa_c00327{left:451.604253pt;}
.x5c_c00327{left:455.867853pt;}
.x38_c00327{left:460.294253pt;}
.x4e_c00327{left:461.706653pt;}
.x5d_c00327{left:464.100253pt;}
.x49_c00327{left:470.383453pt;}
.x3f_c00327{left:471.417453pt;}
.x22_c00327{left:480.177853pt;}
.xb_c00327{left:481.299853pt;}
.x5e_c00327{left:484.379853pt;}
.x5f_c00327{left:488.850253pt;}
.x4a_c00327{left:490.553053pt;}
.x2e_c00327{left:499.260653pt;}
.x4f_c00327{left:500.505853pt;}
.x88_c00327{left:508.738253pt;}
.x82_c00327{left:509.869053pt;}
.x23_c00327{left:510.819453pt;}
.x17_c00327{left:512.315453pt;}
.x65_c00327{left:519.188253pt;}
.x4b_c00327{left:520.134253pt;}
.x60_c00327{left:521.801853pt;}
.xc_c00327{left:529.827453pt;}
.x7b_c00327{left:532.317853pt;}
.x40_c00327{left:539.520653pt;}
.x71_c00327{left:540.550253pt;}
.x68_c00327{left:548.681453pt;}
.x18_c00327{left:550.133453pt;}
.x39_c00327{left:559.791453pt;}
.x7c_c00327{left:561.023453pt;}
.x2f_c00327{left:568.978653pt;}
.xd_c00327{left:570.034653pt;}
.x30_c00327{left:578.143853pt;}
.x61_c00327{left:579.155853pt;}
.x41_c00327{left:588.241853pt;}
.x89_c00327{left:589.377053pt;}
.x4c_c00327{left:597.468653pt;}
.x2_c00327{left:598.828253pt;}
.x3a_c00327{left:599.831453pt;}
.x6f_c00327{left:608.697453pt;}
.x7d_c00327{left:614.171053pt;}
.x19_c00327{left:618.197053pt;}
.x66_c00327{left:619.156253pt;}
.x72_c00327{left:620.405853pt;}
.x7e_c00327{left:627.274253pt;}
.x24_c00327{left:628.167453pt;}
.x73_c00327{left:629.606253pt;}
.x92_c00327{left:630.820653pt;}
.x93_c00327{left:632.153853pt;}
.x69_c00327{left:637.675853pt;}
.x6e_c00327{left:640.619453pt;}
.xe_c00327{left:647.971853pt;}
.x85_c00327{left:649.727453pt;}
.x50_c00327{left:658.391053pt;}
.x74_c00327{left:660.727453pt;}
.x80_c00327{left:667.613453pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_da543758f085d200bb6bdbf7.woff2')format("woff");}.ff1_c00328{font-family:ff1_c00328;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00328;src:url('chunks/assets/font_72f5daf80d8f828c6f3742f1.woff2')format("woff");}.ff2_c00328{font-family:ff2_c00328;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00328;src:url('chunks/assets/font_a3e284d697e5c86d13ed8daf.woff2')format("woff");}.ff3_c00328{font-family:ff3_c00328;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00328;src:url('chunks/assets/font_fccd4bfbebfa504ee782e522.woff2')format("woff");}.ff4_c00328{font-family:ff4_c00328;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5a_c00328{transform:matrix(0.020834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020834,0.000000,0.000000,0.250000,0,0);}
.me2_c00328{transform:matrix(0.025642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.025642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.025642,0.000000,0.000000,0.250000,0,0);}
.mdd_c00328{transform:matrix(0.040599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040599,0.000000,0.000000,0.250000,0,0);}
.mdc_c00328{transform:matrix(0.057693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.057693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.057693,0.000000,0.000000,0.250000,0,0);}
.mde_c00328{transform:matrix(0.091346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091346,0.000000,0.000000,0.250000,0,0);}
.m2_c00328{transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);}
.mb1_c00328{transform:matrix(0.128675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128675,0.000000,0.000000,0.250000,0,0);}
.mdf_c00328{transform:matrix(0.147436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147436,0.000000,0.000000,0.250000,0,0);}
.mdb_c00328{transform:matrix(0.164835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164835,0.000000,0.000000,0.250000,0,0);}
.me1_c00328{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);}
.m99_c00328{transform:matrix(0.174999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174999,0.000000,0.000000,0.250000,0,0);}
.mba_c00328{transform:matrix(0.176564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176564,0.000000,0.000000,0.250000,0,0);}
.mc5_c00328{transform:matrix(0.179884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179884,0.000000,0.000000,0.250000,0,0);}
.mda_c00328{transform:matrix(0.184616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184616,0.000000,0.000000,0.250000,0,0);}
.m19_c00328{transform:matrix(0.186018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186018,0.000000,0.000000,0.250000,0,0);}
.m5c_c00328{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00328{transform:matrix(0.188393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188393,0.000000,0.000000,0.250000,0,0);}
.mbc_c00328{transform:matrix(0.190013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190013,0.000000,0.000000,0.250000,0,0);}
.mc8_c00328{transform:matrix(0.201123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201123,0.000000,0.000000,0.250000,0,0);}
.m10_c00328{transform:matrix(0.204762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204762,0.000000,0.000000,0.250000,0,0);}
.m5b_c00328{transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);}
.m6_c00328{transform:matrix(0.209866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209866,0.000000,0.000000,0.250000,0,0);}
.m81_c00328{transform:matrix(0.210617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210617,0.000000,0.000000,0.250000,0,0);}
.m4f_c00328{transform:matrix(0.210931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210931,0.000000,0.000000,0.250000,0,0);}
.mc6_c00328{transform:matrix(0.216479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216479,0.000000,0.000000,0.250000,0,0);}
.mf_c00328{transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);}
.md7_c00328{transform:matrix(0.227666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227666,0.000000,0.000000,0.250000,0,0);}
.m72_c00328{transform:matrix(0.233685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233685,0.000000,0.000000,0.250000,0,0);}
.mb7_c00328{transform:matrix(0.234217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234217,0.000000,0.000000,0.250000,0,0);}
.m44_c00328{transform:matrix(0.237154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237154,0.000000,0.000000,0.250000,0,0);}
.m66_c00328{transform:matrix(0.246346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246346,0.000000,0.000000,0.250000,0,0);}
.m0_c00328{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m85_c00328{transform:matrix(0.251552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251552,0.000000,0.000000,0.250000,0,0);}
.m8a_c00328{transform:matrix(0.255373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255373,0.000000,0.000000,0.250000,0,0);}
.mc4_c00328{transform:matrix(0.257251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257251,0.000000,0.000000,0.250000,0,0);}
.m7a_c00328{transform:matrix(0.257418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257418,0.000000,0.000000,0.250000,0,0);}
.maf_c00328{transform:matrix(0.258565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258565,0.000000,0.000000,0.250000,0,0);}
.m29_c00328{transform:matrix(0.260343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260343,0.000000,0.000000,0.250000,0,0);}
.m9c_c00328{transform:matrix(0.260904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260904,0.000000,0.000000,0.250000,0,0);}
.m89_c00328{transform:matrix(0.262269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262269,0.000000,0.000000,0.250000,0,0);}
.m8f_c00328{transform:matrix(0.263438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263438,0.000000,0.000000,0.250000,0,0);}
.m71_c00328{transform:matrix(0.266490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266490,0.000000,0.000000,0.250000,0,0);}
.m4_c00328{transform:matrix(0.266767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266767,0.000000,0.000000,0.250000,0,0);}
.md4_c00328{transform:matrix(0.268229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268229,0.000000,0.000000,0.250000,0,0);}
.me4_c00328{transform:matrix(0.269260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269260,0.000000,0.000000,0.250000,0,0);}
.m1_c00328{transform:matrix(0.269708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269708,0.000000,0.000000,0.250000,0,0);}
.m25_c00328{transform:matrix(0.271530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271530,0.000000,0.000000,0.250000,0,0);}
.m62_c00328{transform:matrix(0.273017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273017,0.000000,0.000000,0.250000,0,0);}
.m3d_c00328{transform:matrix(0.274807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274807,0.000000,0.000000,0.250000,0,0);}
.m94_c00328{transform:matrix(0.274969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274969,0.000000,0.000000,0.250000,0,0);}
.m48_c00328{transform:matrix(0.276039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276039,0.000000,0.000000,0.250000,0,0);}
.m68_c00328{transform:matrix(0.276654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276654,0.000000,0.000000,0.250000,0,0);}
.m30_c00328{transform:matrix(0.277928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277928,0.000000,0.000000,0.250000,0,0);}
.m64_c00328{transform:matrix(0.278458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278458,0.000000,0.000000,0.250000,0,0);}
.m58_c00328{transform:matrix(0.279627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279627,0.000000,0.000000,0.250000,0,0);}
.m8d_c00328{transform:matrix(0.281963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281963,0.000000,0.000000,0.250000,0,0);}
.m6d_c00328{transform:matrix(0.282643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282643,0.000000,0.000000,0.250000,0,0);}
.m8b_c00328{transform:matrix(0.283000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283000,0.000000,0.000000,0.250000,0,0);}
.m16_c00328{transform:matrix(0.283765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283765,0.000000,0.000000,0.250000,0,0);}
.m7b_c00328{transform:matrix(0.284185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284185,0.000000,0.000000,0.250000,0,0);}
.mc9_c00328{transform:matrix(0.284846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284846,0.000000,0.000000,0.250000,0,0);}
.m79_c00328{transform:matrix(0.285725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285725,0.000000,0.000000,0.250000,0,0);}
.md8_c00328{transform:matrix(0.285785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285785,0.000000,0.000000,0.250000,0,0);}
.m95_c00328{transform:matrix(0.285821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285821,0.000000,0.000000,0.250000,0,0);}
.mcc_c00328{transform:matrix(0.286037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286037,0.000000,0.000000,0.250000,0,0);}
.m98_c00328{transform:matrix(0.286261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286261,0.000000,0.000000,0.250000,0,0);}
.m6e_c00328{transform:matrix(0.286367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286367,0.000000,0.000000,0.250000,0,0);}
.mc_c00328{transform:matrix(0.286900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286900,0.000000,0.000000,0.250000,0,0);}
.m5d_c00328{transform:matrix(0.287035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287035,0.000000,0.000000,0.250000,0,0);}
.m9_c00328{transform:matrix(0.288832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288832,0.000000,0.000000,0.250000,0,0);}
.m5_c00328{transform:matrix(0.289053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289053,0.000000,0.000000,0.250000,0,0);}
.m50_c00328{transform:matrix(0.289066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289066,0.000000,0.000000,0.250000,0,0);}
.mad_c00328{transform:matrix(0.289113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289113,0.000000,0.000000,0.250000,0,0);}
.md2_c00328{transform:matrix(0.289293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289293,0.000000,0.000000,0.250000,0,0);}
.m3e_c00328{transform:matrix(0.289437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289437,0.000000,0.000000,0.250000,0,0);}
.mcd_c00328{transform:matrix(0.289515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289515,0.000000,0.000000,0.250000,0,0);}
.m3a_c00328{transform:matrix(0.289590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289590,0.000000,0.000000,0.250000,0,0);}
.md6_c00328{transform:matrix(0.289676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289676,0.000000,0.000000,0.250000,0,0);}
.m7e_c00328{transform:matrix(0.290420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290420,0.000000,0.000000,0.250000,0,0);}
.m23_c00328{transform:matrix(0.290901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290901,0.000000,0.000000,0.250000,0,0);}
.m90_c00328{transform:matrix(0.291388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291388,0.000000,0.000000,0.250000,0,0);}
.m21_c00328{transform:matrix(0.291454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291454,0.000000,0.000000,0.250000,0,0);}
.mc3_c00328{transform:matrix(0.291588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291588,0.000000,0.000000,0.250000,0,0);}
.m75_c00328{transform:matrix(0.291812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291812,0.000000,0.000000,0.250000,0,0);}
.m20_c00328{transform:matrix(0.292024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292024,0.000000,0.000000,0.250000,0,0);}
.m37_c00328{transform:matrix(0.293107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293107,0.000000,0.000000,0.250000,0,0);}
.m18_c00328{transform:matrix(0.293486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293486,0.000000,0.000000,0.250000,0,0);}
.m33_c00328{transform:matrix(0.293900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293900,0.000000,0.000000,0.250000,0,0);}
.m1c_c00328{transform:matrix(0.294760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294760,0.000000,0.000000,0.250000,0,0);}
.mbe_c00328{transform:matrix(0.294920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294920,0.000000,0.000000,0.250000,0,0);}
.mb0_c00328{transform:matrix(0.295337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295337,0.000000,0.000000,0.250000,0,0);}
.m87_c00328{transform:matrix(0.297146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297146,0.000000,0.000000,0.250000,0,0);}
.m2f_c00328{transform:matrix(0.297411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297411,0.000000,0.000000,0.250000,0,0);}
.mce_c00328{transform:matrix(0.297936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297936,0.000000,0.000000,0.250000,0,0);}
.me6_c00328{transform:matrix(0.298484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298484,0.000000,0.000000,0.250000,0,0);}
.mc0_c00328{transform:matrix(0.300643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300643,0.000000,0.000000,0.250000,0,0);}
.ma3_c00328{transform:matrix(0.300703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300703,0.000000,0.000000,0.250000,0,0);}
.ma6_c00328{transform:matrix(0.301461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301461,0.000000,0.000000,0.250000,0,0);}
.m32_c00328{transform:matrix(0.301501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301501,0.000000,0.000000,0.250000,0,0);}
.m4d_c00328{transform:matrix(0.303425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303425,0.000000,0.000000,0.250000,0,0);}
.m11_c00328{transform:matrix(0.305581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305581,0.000000,0.000000,0.250000,0,0);}
.m82_c00328{transform:matrix(0.306485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306485,0.000000,0.000000,0.250000,0,0);}
.m27_c00328{transform:matrix(0.307232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307232,0.000000,0.000000,0.250000,0,0);}
.ma0_c00328{transform:matrix(0.307250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00328{transform:matrix(0.309150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309150,0.000000,0.000000,0.250000,0,0);}
.m63_c00328{transform:matrix(0.309959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309959,0.000000,0.000000,0.250000,0,0);}
.m15_c00328{transform:matrix(0.310377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310377,0.000000,0.000000,0.250000,0,0);}
.mbf_c00328{transform:matrix(0.311038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311038,0.000000,0.000000,0.250000,0,0);}
.m77_c00328{transform:matrix(0.311911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311911,0.000000,0.000000,0.250000,0,0);}
.me0_c00328{transform:matrix(0.312683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312683,0.000000,0.000000,0.250000,0,0);}
.mbd_c00328{transform:matrix(0.312857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312857,0.000000,0.000000,0.250000,0,0);}
.m49_c00328{transform:matrix(0.313188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313188,0.000000,0.000000,0.250000,0,0);}
.m28_c00328{transform:matrix(0.313494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313494,0.000000,0.000000,0.250000,0,0);}
.mb_c00328{transform:matrix(0.313608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313608,0.000000,0.000000,0.250000,0,0);}
.m7c_c00328{transform:matrix(0.314875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314875,0.000000,0.000000,0.250000,0,0);}
.m86_c00328{transform:matrix(0.315671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315671,0.000000,0.000000,0.250000,0,0);}
.m2a_c00328{transform:matrix(0.316477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316477,0.000000,0.000000,0.250000,0,0);}
.m12_c00328{transform:matrix(0.316784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316784,0.000000,0.000000,0.250000,0,0);}
.m70_c00328{transform:matrix(0.316979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316979,0.000000,0.000000,0.250000,0,0);}
.m9b_c00328{transform:matrix(0.317801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317801,0.000000,0.000000,0.250000,0,0);}
.m8e_c00328{transform:matrix(0.318748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318748,0.000000,0.000000,0.250000,0,0);}
.m4c_c00328{transform:matrix(0.319184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319184,0.000000,0.000000,0.250000,0,0);}
.m52_c00328{transform:matrix(0.319571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319571,0.000000,0.000000,0.250000,0,0);}
.md5_c00328{transform:matrix(0.319850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319850,0.000000,0.000000,0.250000,0,0);}
.m42_c00328{transform:matrix(0.320040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320040,0.000000,0.000000,0.250000,0,0);}
.m3_c00328{transform:matrix(0.320289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320289,0.000000,0.000000,0.250000,0,0);}
.m8_c00328{transform:matrix(0.320307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320307,0.000000,0.000000,0.250000,0,0);}
.ma_c00328{transform:matrix(0.320370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320370,0.000000,0.000000,0.250000,0,0);}
.ma8_c00328{transform:matrix(0.320889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320889,0.000000,0.000000,0.250000,0,0);}
.m6c_c00328{transform:matrix(0.321922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321922,0.000000,0.000000,0.250000,0,0);}
.m26_c00328{transform:matrix(0.322990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322990,0.000000,0.000000,0.250000,0,0);}
.m67_c00328{transform:matrix(0.325321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325321,0.000000,0.000000,0.250000,0,0);}
.m39_c00328{transform:matrix(0.325391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325391,0.000000,0.000000,0.250000,0,0);}
.m97_c00328{transform:matrix(0.325527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325527,0.000000,0.000000,0.250000,0,0);}
.m80_c00328{transform:matrix(0.325551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325551,0.000000,0.000000,0.250000,0,0);}
.m57_c00328{transform:matrix(0.325642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325642,0.000000,0.000000,0.250000,0,0);}
.m73_c00328{transform:matrix(0.325911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325911,0.000000,0.000000,0.250000,0,0);}
.md_c00328{transform:matrix(0.326386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326386,0.000000,0.000000,0.250000,0,0);}
.m6f_c00328{transform:matrix(0.326504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326504,0.000000,0.000000,0.250000,0,0);}
.m35_c00328{transform:matrix(0.327921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327921,0.000000,0.000000,0.250000,0,0);}
.me3_c00328{transform:matrix(0.328118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328118,0.000000,0.000000,0.250000,0,0);}
.mb3_c00328{transform:matrix(0.328749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328749,0.000000,0.000000,0.250000,0,0);}
.m1d_c00328{transform:matrix(0.329321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329321,0.000000,0.000000,0.250000,0,0);}
.m84_c00328{transform:matrix(0.329731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329731,0.000000,0.000000,0.250000,0,0);}
.ma4_c00328{transform:matrix(0.329954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329954,0.000000,0.000000,0.250000,0,0);}
.m36_c00328{transform:matrix(0.331409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331409,0.000000,0.000000,0.250000,0,0);}
.mcf_c00328{transform:matrix(0.331524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331524,0.000000,0.000000,0.250000,0,0);}
.mc7_c00328{transform:matrix(0.331693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331693,0.000000,0.000000,0.250000,0,0);}
.m7f_c00328{transform:matrix(0.332170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332170,0.000000,0.000000,0.250000,0,0);}
.md0_c00328{transform:matrix(0.332551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332551,0.000000,0.000000,0.250000,0,0);}
.m96_c00328{transform:matrix(0.332835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332835,0.000000,0.000000,0.250000,0,0);}
.m69_c00328{transform:matrix(0.332935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332935,0.000000,0.000000,0.250000,0,0);}
.ma9_c00328{transform:matrix(0.333074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333074,0.000000,0.000000,0.250000,0,0);}
.m1a_c00328{transform:matrix(0.333264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333264,0.000000,0.000000,0.250000,0,0);}
.m74_c00328{transform:matrix(0.334177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334177,0.000000,0.000000,0.250000,0,0);}
.m51_c00328{transform:matrix(0.334693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334693,0.000000,0.000000,0.250000,0,0);}
.ma2_c00328{transform:matrix(0.335261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335261,0.000000,0.000000,0.250000,0,0);}
.m43_c00328{transform:matrix(0.336594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336594,0.000000,0.000000,0.250000,0,0);}
.me_c00328{transform:matrix(0.336688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336688,0.000000,0.000000,0.250000,0,0);}
.m8c_c00328{transform:matrix(0.337274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337274,0.000000,0.000000,0.250000,0,0);}
.mb4_c00328{transform:matrix(0.337835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337835,0.000000,0.000000,0.250000,0,0);}
.m76_c00328{transform:matrix(0.338168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338168,0.000000,0.000000,0.250000,0,0);}
.mbb_c00328{transform:matrix(0.338299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338299,0.000000,0.000000,0.250000,0,0);}
.mcb_c00328{transform:matrix(0.338353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338353,0.000000,0.000000,0.250000,0,0);}
.m6a_c00328{transform:matrix(0.338496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338496,0.000000,0.000000,0.250000,0,0);}
.mca_c00328{transform:matrix(0.338652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338652,0.000000,0.000000,0.250000,0,0);}
.m7d_c00328{transform:matrix(0.339278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339278,0.000000,0.000000,0.250000,0,0);}
.m9f_c00328{transform:matrix(0.340864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340864,0.000000,0.000000,0.250000,0,0);}
.m13_c00328{transform:matrix(0.340914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340914,0.000000,0.000000,0.250000,0,0);}
.mc1_c00328{transform:matrix(0.341397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341397,0.000000,0.000000,0.250000,0,0);}
.m60_c00328{transform:matrix(0.341557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341557,0.000000,0.000000,0.250000,0,0);}
.m2b_c00328{transform:matrix(0.342630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342630,0.000000,0.000000,0.250000,0,0);}
.m34_c00328{transform:matrix(0.342841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342841,0.000000,0.000000,0.250000,0,0);}
.m91_c00328{transform:matrix(0.343195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343195,0.000000,0.000000,0.250000,0,0);}
.md9_c00328{transform:matrix(0.343371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343371,0.000000,0.000000,0.250000,0,0);}
.m47_c00328{transform:matrix(0.343452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343452,0.000000,0.000000,0.250000,0,0);}
.m88_c00328{transform:matrix(0.343557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343557,0.000000,0.000000,0.250000,0,0);}
.m53_c00328{transform:matrix(0.343986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343986,0.000000,0.000000,0.250000,0,0);}
.m93_c00328{transform:matrix(0.344591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344591,0.000000,0.000000,0.250000,0,0);}
.m3b_c00328{transform:matrix(0.344964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344964,0.000000,0.000000,0.250000,0,0);}
.m2c_c00328{transform:matrix(0.345042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345042,0.000000,0.000000,0.250000,0,0);}
.m22_c00328{transform:matrix(0.345292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345292,0.000000,0.000000,0.250000,0,0);}
.m4b_c00328{transform:matrix(0.346091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346091,0.000000,0.000000,0.250000,0,0);}
.m1f_c00328{transform:matrix(0.346686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346686,0.000000,0.000000,0.250000,0,0);}
.me5_c00328{transform:matrix(0.346822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346822,0.000000,0.000000,0.250000,0,0);}
.m24_c00328{transform:matrix(0.347493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347493,0.000000,0.000000,0.250000,0,0);}
.m83_c00328{transform:matrix(0.347913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347913,0.000000,0.000000,0.250000,0,0);}
.m92_c00328{transform:matrix(0.348124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348124,0.000000,0.000000,0.250000,0,0);}
.m9d_c00328{transform:matrix(0.349605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349605,0.000000,0.000000,0.250000,0,0);}
.m1b_c00328{transform:matrix(0.351096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351096,0.000000,0.000000,0.250000,0,0);}
.m4a_c00328{transform:matrix(0.352057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352057,0.000000,0.000000,0.250000,0,0);}
.m54_c00328{transform:matrix(0.352643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352643,0.000000,0.000000,0.250000,0,0);}
.m2d_c00328{transform:matrix(0.353069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353069,0.000000,0.000000,0.250000,0,0);}
.ma1_c00328{transform:matrix(0.353331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353331,0.000000,0.000000,0.250000,0,0);}
.m61_c00328{transform:matrix(0.353944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353944,0.000000,0.000000,0.250000,0,0);}
.mae_c00328{transform:matrix(0.356216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356216,0.000000,0.000000,0.250000,0,0);}
.mac_c00328{transform:matrix(0.357170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357170,0.000000,0.000000,0.250000,0,0);}
.m5f_c00328{transform:matrix(0.358598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358598,0.000000,0.000000,0.250000,0,0);}
.m31_c00328{transform:matrix(0.358885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358885,0.000000,0.000000,0.250000,0,0);}
.m2e_c00328{transform:matrix(0.360773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360773,0.000000,0.000000,0.250000,0,0);}
.m9e_c00328{transform:matrix(0.363370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363370,0.000000,0.000000,0.250000,0,0);}
.m56_c00328{transform:matrix(0.364050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364050,0.000000,0.000000,0.250000,0,0);}
.m40_c00328{transform:matrix(0.365093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365093,0.000000,0.000000,0.250000,0,0);}
.m14_c00328{transform:matrix(0.365530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365530,0.000000,0.000000,0.250000,0,0);}
.maa_c00328{transform:matrix(0.365678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365678,0.000000,0.000000,0.250000,0,0);}
.m9a_c00328{transform:matrix(0.369647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369647,0.000000,0.000000,0.250000,0,0);}
.md1_c00328{transform:matrix(0.369956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369956,0.000000,0.000000,0.250000,0,0);}
.mb8_c00328{transform:matrix(0.370234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370234,0.000000,0.000000,0.250000,0,0);}
.m3f_c00328{transform:matrix(0.371592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371592,0.000000,0.000000,0.250000,0,0);}
.m65_c00328{transform:matrix(0.372015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372015,0.000000,0.000000,0.250000,0,0);}
.mc2_c00328{transform:matrix(0.372408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372408,0.000000,0.000000,0.250000,0,0);}
.m4e_c00328{transform:matrix(0.372528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372528,0.000000,0.000000,0.250000,0,0);}
.m55_c00328{transform:matrix(0.375721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375721,0.000000,0.000000,0.250000,0,0);}
.m78_c00328{transform:matrix(0.376561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376561,0.000000,0.000000,0.250000,0,0);}
.ma5_c00328{transform:matrix(0.376562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376562,0.000000,0.000000,0.250000,0,0);}
.m59_c00328{transform:matrix(0.376729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376729,0.000000,0.000000,0.250000,0,0);}
.m7_c00328{transform:matrix(0.378611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378611,0.000000,0.000000,0.250000,0,0);}
.md3_c00328{transform:matrix(0.379096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379096,0.000000,0.000000,0.250000,0,0);}
.m17_c00328{transform:matrix(0.383168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383168,0.000000,0.000000,0.250000,0,0);}
.mb2_c00328{transform:matrix(0.385469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385469,0.000000,0.000000,0.250000,0,0);}
.mab_c00328{transform:matrix(0.385828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385828,0.000000,0.000000,0.250000,0,0);}
.m41_c00328{transform:matrix(0.389775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389775,0.000000,0.000000,0.250000,0,0);}
.m3c_c00328{transform:matrix(0.390229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390229,0.000000,0.000000,0.250000,0,0);}
.mb9_c00328{transform:matrix(0.399061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399061,0.000000,0.000000,0.250000,0,0);}
.m45_c00328{transform:matrix(0.400841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400841,0.000000,0.000000,0.250000,0,0);}
.m38_c00328{transform:matrix(0.409593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409593,0.000000,0.000000,0.250000,0,0);}
.m46_c00328{transform:matrix(0.415703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415703,0.000000,0.000000,0.250000,0,0);}
.m5e_c00328{transform:matrix(0.420208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420208,0.000000,0.000000,0.250000,0,0);}
.ma7_c00328{transform:matrix(0.440557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440557,0.000000,0.000000,0.250000,0,0);}
.mb6_c00328{transform:matrix(0.458029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458029,0.000000,0.000000,0.250000,0,0);}
.mb5_c00328{transform:matrix(0.465796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465796,0.000000,0.000000,0.250000,0,0);}
.v1_c00328{vertical-align:-12.830400px;}
.v0_c00328{vertical-align:0.000000px;}
.ls6_c00328{letter-spacing:-2.501730px;}
.ls10_c00328{letter-spacing:-1.679733px;}
.ls9_c00328{letter-spacing:-1.479595px;}
.ls13_c00328{letter-spacing:-0.378833px;}
.ls2_c00328{letter-spacing:0.000000px;}
.ls8_c00328{letter-spacing:0.078626px;}
.ls1_c00328{letter-spacing:0.277200px;}
.lse_c00328{letter-spacing:1.866110px;}
.ls0_c00328{letter-spacing:2.187227px;}
.lsb_c00328{letter-spacing:2.323035px;}
.lsd_c00328{letter-spacing:2.415600px;}
.lsf_c00328{letter-spacing:3.023519px;}
.ls12_c00328{letter-spacing:3.445240px;}
.ls11_c00328{letter-spacing:3.544200px;}
.ls5_c00328{letter-spacing:3.573900px;}
.ls3_c00328{letter-spacing:3.979810px;}
.ls4_c00328{letter-spacing:31.363200px;}
.ls7_c00328{letter-spacing:49.896198px;}
.lsa_c00328{letter-spacing:51.321798px;}
.ls14_c00328{letter-spacing:55.598598px;}
.lsc_c00328{letter-spacing:57.024198px;}
.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;}
}
.ws4_c00328{word-spacing:-20.056727px;}
.ws3_c00328{word-spacing:-17.948126px;}
.ws0_c00328{word-spacing:-17.869500px;}
.ws5_c00328{word-spacing:-16.189767px;}
.ws7_c00328{word-spacing:0.000000px;}
.ws2_c00328{word-spacing:3.430944px;}
.ws1_c00328{word-spacing:4.860306px;}
.ws6_c00328{word-spacing:14.510034px;}
._18_c00328{margin-left:-6.575976px;}
._1a_c00328{margin-left:-5.575284px;}
._b_c00328{margin-left:-4.503114px;}
._7_c00328{width:1.643994px;}
._0_c00328{width:4.074246px;}
._9_c00328{width:6.218586px;}
._2_c00328{width:7.791102px;}
._3_c00328{width:9.721008px;}
._12_c00328{width:11.007612px;}
._5_c00328{width:12.365694px;}
._f_c00328{width:13.580820px;}
._6_c00328{width:15.653682px;}
._1b_c00328{width:19.085616px;}
._c_c00328{width:20.237580px;}
._d_c00328{width:22.015224px;}
._4_c00328{width:24.231636px;}
._15_c00328{width:25.374492px;}
._1_c00328{width:27.090162px;}
._17_c00328{width:31.093128px;}
._16_c00328{width:34.750584px;}
._13_c00328{width:36.296528px;}
._e_c00328{width:39.407544px;}
._19_c00328{width:41.600196px;}
._8_c00328{width:43.018668px;}
._a_c00328{width:44.959662px;}
._14_c00328{width:46.200726px;}
._10_c00328{width:48.319128px;}
._11_c00328{width:53.394066px;}
.fc0_c00328{color:transparent;}
.fs6_c00328{font-size:21.780000px;}
.fs14_c00328{font-size:22.176000px;}
.fs2_c00328{font-size:25.344000px;}
.fs10_c00328{font-size:29.106000px;}
.fs3_c00328{font-size:31.363200px;}
.fs0_c00328{font-size:33.660000px;}
.fs15_c00328{font-size:38.808000px;}
.fs4_c00328{font-size:39.204000px;}
.fs11_c00328{font-size:47.124000px;}
.fsf_c00328{font-size:48.312000px;}
.fs7_c00328{font-size:49.896198px;}
.fsa_c00328{font-size:50.292000px;}
.fsb_c00328{font-size:51.321798px;}
.fs12_c00328{font-size:55.598598px;}
.fse_c00328{font-size:57.024198px;}
.fs13_c00328{font-size:64.548000px;}
.fsd_c00328{font-size:69.102198px;}
.fs8_c00328{font-size:70.884000px;}
.fs5_c00328{font-size:71.478000px;}
.fs9_c00328{font-size:72.864000px;}
.fsc_c00328{font-size:74.448000px;}
.fs1_c00328{font-size:79.596198px;}
.y0_c00328{bottom:0.000000px;}
.y27_c00328{bottom:52.654185px;}
.y1_c00328{bottom:76.500000px;}
.y26_c00328{bottom:102.198735px;}
.y25_c00328{bottom:137.833785px;}
.y24_c00328{bottom:168.489135px;}
.y23_c00328{bottom:206.267535px;}
.y22_c00328{bottom:239.051385px;}
.y20_c00328{bottom:271.838453px;}
.y21_c00328{bottom:271.840185px;}
.y1f_c00328{bottom:304.628985px;}
.y1e_c00328{bottom:338.130585px;}
.y1d_c00328{bottom:402.287535px;}
.y1c_c00328{bottom:435.071385px;}
.y1b_c00328{bottom:466.434585px;}
.y1a_c00328{bottom:498.871935px;}
.y19_c00328{bottom:530.947935px;}
.y18_c00328{bottom:563.375385px;}
.y17_c00328{bottom:595.451385px;}
.y16_c00328{bottom:595.455840px;}
.y14_c00328{bottom:627.881310px;}
.y15_c00328{bottom:627.888735px;}
.y13_c00328{bottom:661.028985px;}
.y12_c00328{bottom:693.109935px;}
.y2_c00328{bottom:746.569935px;}
.y11_c00328{bottom:752.980185px;}
.y10_c00328{bottom:759.395385px;}
.yf_c00328{bottom:792.901935px;}
.ye_c00328{bottom:825.334335px;}
.yd_c00328{bottom:850.990185px;}
.ya_c00328{bottom:857.404395px;}
.yb_c00328{bottom:857.405385px;}
.yc_c00328{bottom:857.766735px;}
.y9_c00328{bottom:889.837785px;}
.y8_c00328{bottom:900.173385px;}
.y7_c00328{bottom:922.987935px;}
.y6_c00328{bottom:988.565535px;}
.y5_c00328{bottom:999.257535px;}
.y4_c00328{bottom:1009.593135px;}
.y3_c00328{bottom:1075.522185px;}
.h5_c00328{height:20.887891px;}
.h8_c00328{height:22.715859px;}
.h14_c00328{height:23.128875px;}
.h4_c00328{height:24.873750px;}
.h2_c00328{height:33.035449px;}
.h9_c00328{height:33.230868px;}
.hd_c00328{height:34.180317px;}
.h12_c00328{height:37.028666px;}
.h10_c00328{height:37.978116px;}
.h6_c00328{height:38.476582px;}
.h15_c00328{height:40.475531px;}
.h11_c00328{height:47.415586px;}
.hc_c00328{height:49.358848px;}
.h13_c00328{height:67.321547px;}
.hf_c00328{height:67.820028px;}
.ha_c00328{height:69.568770px;}
.h7_c00328{height:70.151748px;}
.hb_c00328{height:71.512031px;}
.he_c00328{height:75.029625px;}
.h3_c00328{height:78.119315px;}
.h1_c00328{height:1110.000000px;}
.h0_c00328{height:1263.000000px;}
.w1_c00328{width:775.500000px;}
.w0_c00328{width:892.500000px;}
.x0_c00328{left:0.000000px;}
.x2_c00328{left:54.738735px;}
.x1_c00328{left:58.500000px;}
.x2b_c00328{left:85.829685px;}
.x20_c00328{left:87.142722px;}
.x18_c00328{left:88.378935px;}
.x7e_c00328{left:89.873835px;}
.x34_c00328{left:98.452185px;}
.x78_c00328{left:99.570885px;}
.x62_c00328{left:110.243085px;}
.x4e_c00328{left:111.396435px;}
.x21_c00328{left:118.905585px;}
.x35_c00328{left:120.296535px;}
.x74_c00328{left:121.311285px;}
.x6_c00328{left:130.671735px;}
.x70_c00328{left:131.978535px;}
.x22_c00328{left:141.987435px;}
.x4f_c00328{left:143.031885px;}
.x19_c00328{left:152.174535px;}
.x48_c00328{left:153.436785px;}
.x82_c00328{left:155.377185px;}
.x7_c00328{left:164.465385px;}
.x1a_c00328{left:175.691985px;}
.x8_c00328{left:185.997885px;}
.x2c_c00328{left:197.254185px;}
.x5a_c00328{left:199.016385px;}
.x6d_c00328{left:207.713535px;}
.x36_c00328{left:208.970835px;}
.x7c_c00328{left:214.722735px;}
.x9_c00328{left:219.548985px;}
.x6c_c00328{left:221.113185px;}
.x83_c00328{left:224.167335px;}
.x40_c00328{left:231.136935px;}
.x79_c00328{left:237.111585px;}
.x41_c00328{left:241.794285px;}
.xa_c00328{left:242.823885px;}
.x88_c00328{left:244.323735px;}
.x37_c00328{left:251.600235px;}
.x23_c00328{left:253.189185px;}
.x84_c00328{left:254.817735px;}
.x49_c00328{left:264.257385px;}
.x71_c00328{left:265.267185px;}
.x1b_c00328{left:274.439535px;}
.x5b_c00328{left:276.662085px;}
.x54_c00328{left:277.691685px;}
.xb_c00328{left:285.433485px;}
.x24_c00328{left:286.666035px;}
.xc_c00328{left:296.704635px;}
.x50_c00328{left:297.749085px;}
.xd_c00328{left:307.584735px;}
.x4a_c00328{left:309.114285px;}
.x25_c00328{left:320.132985px;}
.x38_c00328{left:331.513035px;}
.xe_c00328{left:335.700735px;}
.xf_c00328{left:338.002485px;}
.x2d_c00328{left:341.794185px;}
.x66_c00328{left:353.045535px;}
.x5c_c00328{left:354.391935px;}
.x39_c00328{left:362.440635px;}
.x51_c00328{left:363.999885px;}
.x6a_c00328{left:365.064135px;}
.x7a_c00328{left:374.201835px;}
.x43_c00328{left:375.221535px;}
.x10_c00328{left:385.765035px;}
.x7d_c00328{left:386.849085px;}
.x5d_c00328{left:391.789185px;}
.x44_c00328{left:396.828285px;}
.x2e_c00328{left:397.843035px;}
.x3a_c00328{left:407.500485px;}
.x75_c00328{left:413.727585px;}
.x11_c00328{left:418.870635px;}
.x55_c00328{left:419.959635px;}
.x87_c00328{left:423.305835px;}
.x4b_c00328{left:430.468485px;}
.x3b_c00328{left:441.348585px;}
.x85_c00328{left:449.763585px;}
.x26_c00328{left:452.382135px;}
.x5e_c00328{left:453.485985px;}
.x1c_c00328{left:462.762285px;}
.x86_c00328{left:464.494785px;}
.x45_c00328{left:470.009085px;}
.x56_c00328{left:474.894735px;}
.x7f_c00328{left:476.295585px;}
.x1d_c00328{left:486.185685px;}
.x12_c00328{left:496.263885px;}
.x5f_c00328{left:497.788485px;}
.x72_c00328{left:507.163785px;}
.x4c_c00328{left:508.183485px;}
.x46_c00328{left:515.544135px;}
.x13_c00328{left:518.345835px;}
.x6e_c00328{left:519.979335px;}
.x47_c00328{left:526.904385px;}
.x76_c00328{left:539.893185px;}
.x67_c00328{left:541.467285px;}
.x14_c00328{left:550.946535px;}
.x2f_c00328{left:552.535485px;}
.x60_c00328{left:553.584885px;}
.x42_c00328{left:563.267085px;}
.x73_c00328{left:565.841085px;}
.x63_c00328{left:574.265985px;}
.x3c_c00328{left:583.730385px;}
.x30_c00328{left:585.294585px;}
.x68_c00328{left:592.640385px;}
.x31_c00328{left:594.457035px;}
.x52_c00328{left:597.471585px;}
.x80_c00328{left:600.733635px;}
.x15_c00328{left:606.747885px;}
.x27_c00328{left:607.777485px;}
.x69_c00328{left:610.212885px;}
.x3d_c00328{left:617.731935px;}
.x57_c00328{left:618.820935px;}
.x32_c00328{left:627.919035px;}
.x16_c00328{left:629.874285px;}
.x61_c00328{left:630.978135px;}
.x1e_c00328{left:640.239585px;}
.x64_c00328{left:641.957235px;}
.x2a_c00328{left:644.140185px;}
.x53_c00328{left:650.778135px;}
.x3e_c00328{left:651.985935px;}
.x17_c00328{left:661.781985px;}
.x6b_c00328{left:663.346185px;}
.x3_c00328{left:672.968985px;}
.x58_c00328{left:674.463885px;}
.x6f_c00328{left:683.161035px;}
.x28_c00328{left:684.472785px;}
.x33_c00328{left:695.808285px;}
.x59_c00328{left:696.847785px;}
.x4_c00328{left:706.371585px;}
.x5_c00328{left:709.064385px;}
.x77_c00328{left:715.202385px;}
.x29_c00328{left:717.494235px;}
.x81_c00328{left:718.845585px;}
.x65_c00328{left:721.053285px;}
.x3f_c00328{left:728.567385px;}
.x7b_c00328{left:730.379085px;}
.x4d_c00328{left:740.373135px;}
.x1f_c00328{left:750.708735px;}
@media print{
.v1_c00328{vertical-align:-11.404800pt;}
.v0_c00328{vertical-align:0.000000pt;}
.ls6_c00328{letter-spacing:-2.223760pt;}
.ls10_c00328{letter-spacing:-1.493096pt;}
.ls9_c00328{letter-spacing:-1.315195pt;}
.ls13_c00328{letter-spacing:-0.336741pt;}
.ls2_c00328{letter-spacing:0.000000pt;}
.ls8_c00328{letter-spacing:0.069890pt;}
.ls1_c00328{letter-spacing:0.246400pt;}
.lse_c00328{letter-spacing:1.658765pt;}
.ls0_c00328{letter-spacing:1.944202pt;}
.lsb_c00328{letter-spacing:2.064920pt;}
.lsd_c00328{letter-spacing:2.147200pt;}
.lsf_c00328{letter-spacing:2.687573pt;}
.ls12_c00328{letter-spacing:3.062435pt;}
.ls11_c00328{letter-spacing:3.150400pt;}
.ls5_c00328{letter-spacing:3.176800pt;}
.ls3_c00328{letter-spacing:3.537609pt;}
.ls4_c00328{letter-spacing:27.878400pt;}
.ls7_c00328{letter-spacing:44.352176pt;}
.lsa_c00328{letter-spacing:45.619376pt;}
.ls14_c00328{letter-spacing:49.420976pt;}
.lsc_c00328{letter-spacing:50.688176pt;}
.ws4_c00328{word-spacing:-17.828202pt;}
.ws3_c00328{word-spacing:-15.953890pt;}
.ws0_c00328{word-spacing:-15.884000pt;}
.ws5_c00328{word-spacing:-14.390904pt;}
.ws7_c00328{word-spacing:0.000000pt;}
.ws2_c00328{word-spacing:3.049728pt;}
.ws1_c00328{word-spacing:4.320272pt;}
.ws6_c00328{word-spacing:12.897808pt;}
._18_c00328{margin-left:-5.845312pt;}
._1a_c00328{margin-left:-4.955808pt;}
._b_c00328{margin-left:-4.002768pt;}
._7_c00328{width:1.461328pt;}
._0_c00328{width:3.621552pt;}
._9_c00328{width:5.527632pt;}
._2_c00328{width:6.925424pt;}
._3_c00328{width:8.640896pt;}
._12_c00328{width:9.784544pt;}
._5_c00328{width:10.991728pt;}
._f_c00328{width:12.071840pt;}
._6_c00328{width:13.914384pt;}
._1b_c00328{width:16.964992pt;}
._c_c00328{width:17.988960pt;}
._d_c00328{width:19.569088pt;}
._4_c00328{width:21.539232pt;}
._15_c00328{width:22.555104pt;}
._1_c00328{width:24.080144pt;}
._17_c00328{width:27.638336pt;}
._16_c00328{width:30.889408pt;}
._13_c00328{width:32.263581pt;}
._e_c00328{width:35.028928pt;}
._19_c00328{width:36.977952pt;}
._8_c00328{width:38.238816pt;}
._a_c00328{width:39.964144pt;}
._14_c00328{width:41.067312pt;}
._10_c00328{width:42.950336pt;}
._11_c00328{width:47.461392pt;}
.fs6_c00328{font-size:19.360000pt;}
.fs14_c00328{font-size:19.712000pt;}
.fs2_c00328{font-size:22.528000pt;}
.fs10_c00328{font-size:25.872000pt;}
.fs3_c00328{font-size:27.878400pt;}
.fs0_c00328{font-size:29.920000pt;}
.fs15_c00328{font-size:34.496000pt;}
.fs4_c00328{font-size:34.848000pt;}
.fs11_c00328{font-size:41.888000pt;}
.fsf_c00328{font-size:42.944000pt;}
.fs7_c00328{font-size:44.352176pt;}
.fsa_c00328{font-size:44.704000pt;}
.fsb_c00328{font-size:45.619376pt;}
.fs12_c00328{font-size:49.420976pt;}
.fse_c00328{font-size:50.688176pt;}
.fs13_c00328{font-size:57.376000pt;}
.fsd_c00328{font-size:61.424176pt;}
.fs8_c00328{font-size:63.008000pt;}
.fs5_c00328{font-size:63.536000pt;}
.fs9_c00328{font-size:64.768000pt;}
.fsc_c00328{font-size:66.176000pt;}
.fs1_c00328{font-size:70.752176pt;}
.y0_c00328{bottom:0.000000pt;}
.y27_c00328{bottom:46.803720pt;}
.y1_c00328{bottom:68.000000pt;}
.y26_c00328{bottom:90.843320pt;}
.y25_c00328{bottom:122.518920pt;}
.y24_c00328{bottom:149.768120pt;}
.y23_c00328{bottom:183.348920pt;}
.y22_c00328{bottom:212.490120pt;}
.y20_c00328{bottom:241.634180pt;}
.y21_c00328{bottom:241.635720pt;}
.y1f_c00328{bottom:270.781320pt;}
.y1e_c00328{bottom:300.560520pt;}
.y1d_c00328{bottom:357.588920pt;}
.y1c_c00328{bottom:386.730120pt;}
.y1b_c00328{bottom:414.608520pt;}
.y1a_c00328{bottom:443.441720pt;}
.y19_c00328{bottom:471.953720pt;}
.y18_c00328{bottom:500.778120pt;}
.y17_c00328{bottom:529.290120pt;}
.y16_c00328{bottom:529.294080pt;}
.y14_c00328{bottom:558.116720pt;}
.y15_c00328{bottom:558.123320pt;}
.y13_c00328{bottom:587.581320pt;}
.y12_c00328{bottom:616.097720pt;}
.y2_c00328{bottom:663.617720pt;}
.y11_c00328{bottom:669.315720pt;}
.y10_c00328{bottom:675.018120pt;}
.yf_c00328{bottom:704.801720pt;}
.ye_c00328{bottom:733.630520pt;}
.yd_c00328{bottom:756.435720pt;}
.ya_c00328{bottom:762.137240pt;}
.yb_c00328{bottom:762.138120pt;}
.yc_c00328{bottom:762.459320pt;}
.y9_c00328{bottom:790.966920pt;}
.y8_c00328{bottom:800.154120pt;}
.y7_c00328{bottom:820.433720pt;}
.y6_c00328{bottom:878.724920pt;}
.y5_c00328{bottom:888.228920pt;}
.y4_c00328{bottom:897.416120pt;}
.y3_c00328{bottom:956.019720pt;}
.h5_c00328{height:18.567014pt;}
.h8_c00328{height:20.191875pt;}
.h14_c00328{height:20.559000pt;}
.h4_c00328{height:22.110000pt;}
.h2_c00328{height:29.364844pt;}
.h9_c00328{height:29.538549pt;}
.hd_c00328{height:30.382504pt;}
.h12_c00328{height:32.914370pt;}
.h10_c00328{height:33.758325pt;}
.h6_c00328{height:34.201406pt;}
.h15_c00328{height:35.978250pt;}
.h11_c00328{height:42.147188pt;}
.hc_c00328{height:43.874531pt;}
.h13_c00328{height:59.841375pt;}
.hf_c00328{height:60.284470pt;}
.ha_c00328{height:61.838906pt;}
.h7_c00328{height:62.357109pt;}
.hb_c00328{height:63.566250pt;}
.he_c00328{height:66.693000pt;}
.h3_c00328{height:69.439391pt;}
.h1_c00328{height:986.666667pt;}
.h0_c00328{height:1122.666667pt;}
.w1_c00328{width:689.333333pt;}
.w0_c00328{width:793.333333pt;}
.x0_c00328{left:0.000000pt;}
.x2_c00328{left:48.656653pt;}
.x1_c00328{left:52.000000pt;}
.x2b_c00328{left:76.293053pt;}
.x20_c00328{left:77.460197pt;}
.x18_c00328{left:78.559053pt;}
.x7e_c00328{left:79.887853pt;}
.x34_c00328{left:87.513053pt;}
.x78_c00328{left:88.507453pt;}
.x62_c00328{left:97.993853pt;}
.x4e_c00328{left:99.019053pt;}
.x21_c00328{left:105.693853pt;}
.x35_c00328{left:106.930253pt;}
.x74_c00328{left:107.832253pt;}
.x6_c00328{left:116.152653pt;}
.x70_c00328{left:117.314253pt;}
.x22_c00328{left:126.211053pt;}
.x4f_c00328{left:127.139453pt;}
.x19_c00328{left:135.266253pt;}
.x48_c00328{left:136.388253pt;}
.x82_c00328{left:138.113053pt;}
.x7_c00328{left:146.191453pt;}
.x1a_c00328{left:156.170653pt;}
.x8_c00328{left:165.331453pt;}
.x2c_c00328{left:175.337053pt;}
.x5a_c00328{left:176.903453pt;}
.x6d_c00328{left:184.634253pt;}
.x36_c00328{left:185.751853pt;}
.x7c_c00328{left:190.864653pt;}
.x9_c00328{left:195.154653pt;}
.x6c_c00328{left:196.545053pt;}
.x83_c00328{left:199.259853pt;}
.x40_c00328{left:205.455053pt;}
.x79_c00328{left:210.765853pt;}
.x41_c00328{left:214.928253pt;}
.xa_c00328{left:215.843453pt;}
.x88_c00328{left:217.176653pt;}
.x37_c00328{left:223.644653pt;}
.x23_c00328{left:225.057053pt;}
.x84_c00328{left:226.504653pt;}
.x49_c00328{left:234.895453pt;}
.x71_c00328{left:235.793053pt;}
.x1b_c00328{left:243.946253pt;}
.x5b_c00328{left:245.921853pt;}
.x54_c00328{left:246.837053pt;}
.xb_c00328{left:253.718653pt;}
.x24_c00328{left:254.814253pt;}
.xc_c00328{left:263.737453pt;}
.x50_c00328{left:264.665853pt;}
.xd_c00328{left:273.408653pt;}
.x4a_c00328{left:274.768253pt;}
.x25_c00328{left:284.562653pt;}
.x38_c00328{left:294.678253pt;}
.xe_c00328{left:298.400653pt;}
.xf_c00328{left:300.446653pt;}
.x2d_c00328{left:303.817053pt;}
.x66_c00328{left:313.818253pt;}
.x5c_c00328{left:315.015053pt;}
.x39_c00328{left:322.169453pt;}
.x51_c00328{left:323.555453pt;}
.x6a_c00328{left:324.501453pt;}
.x7a_c00328{left:332.623853pt;}
.x43_c00328{left:333.530253pt;}
.x10_c00328{left:342.902253pt;}
.x7d_c00328{left:343.865853pt;}
.x5d_c00328{left:348.257053pt;}
.x44_c00328{left:352.736253pt;}
.x2e_c00328{left:353.638253pt;}
.x3a_c00328{left:362.222653pt;}
.x75_c00328{left:367.757853pt;}
.x11_c00328{left:372.329453pt;}
.x55_c00328{left:373.297453pt;}
.x87_c00328{left:376.271853pt;}
.x4b_c00328{left:382.638653pt;}
.x3b_c00328{left:392.309853pt;}
.x85_c00328{left:399.789853pt;}
.x26_c00328{left:402.117453pt;}
.x5e_c00328{left:403.098653pt;}
.x1c_c00328{left:411.344253pt;}
.x86_c00328{left:412.884253pt;}
.x45_c00328{left:417.785853pt;}
.x56_c00328{left:422.128653pt;}
.x7f_c00328{left:423.373853pt;}
.x1d_c00328{left:432.165053pt;}
.x12_c00328{left:441.123453pt;}
.x5f_c00328{left:442.478653pt;}
.x72_c00328{left:450.812253pt;}
.x4c_c00328{left:451.718653pt;}
.x46_c00328{left:458.261453pt;}
.x13_c00328{left:460.751853pt;}
.x6e_c00328{left:462.203853pt;}
.x47_c00328{left:468.359453pt;}
.x76_c00328{left:479.905053pt;}
.x67_c00328{left:481.304253pt;}
.x14_c00328{left:489.730253pt;}
.x2f_c00328{left:491.142653pt;}
.x60_c00328{left:492.075453pt;}
.x42_c00328{left:500.681853pt;}
.x73_c00328{left:502.969853pt;}
.x63_c00328{left:510.458653pt;}
.x3c_c00328{left:518.871453pt;}
.x30_c00328{left:520.261853pt;}
.x68_c00328{left:526.791453pt;}
.x31_c00328{left:528.406253pt;}
.x52_c00328{left:531.085853pt;}
.x80_c00328{left:533.985453pt;}
.x15_c00328{left:539.331453pt;}
.x27_c00328{left:540.246653pt;}
.x69_c00328{left:542.411453pt;}
.x3d_c00328{left:549.095053pt;}
.x57_c00328{left:550.063053pt;}
.x32_c00328{left:558.150253pt;}
.x16_c00328{left:559.888253pt;}
.x61_c00328{left:560.869453pt;}
.x1e_c00328{left:569.101853pt;}
.x64_c00328{left:570.628653pt;}
.x2a_c00328{left:572.569053pt;}
.x53_c00328{left:578.469453pt;}
.x3e_c00328{left:579.543053pt;}
.x17_c00328{left:588.250653pt;}
.x6b_c00328{left:589.641053pt;}
.x3_c00328{left:598.194653pt;}
.x58_c00328{left:599.523453pt;}
.x6f_c00328{left:607.254253pt;}
.x28_c00328{left:608.420253pt;}
.x33_c00328{left:618.496253pt;}
.x59_c00328{left:619.420253pt;}
.x4_c00328{left:627.885853pt;}
.x5_c00328{left:630.279453pt;}
.x77_c00328{left:635.735453pt;}
.x29_c00328{left:637.772653pt;}
.x81_c00328{left:638.973853pt;}
.x65_c00328{left:640.936253pt;}
.x3f_c00328{left:647.615453pt;}
.x7b_c00328{left:649.225853pt;}
.x4d_c00328{left:658.109453pt;}
.x1f_c00328{left:667.296653pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_801944a7dec3764b13a5dfaf.woff2')format("woff");}.ff1_c00329{font-family:ff1_c00329;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00329;src:url('chunks/assets/font_1d9bdaa40ea3e122696dcbc5.woff2')format("woff");}.ff2_c00329{font-family:ff2_c00329;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00329;src:url('chunks/assets/font_1b6ee627a7a79e3423eebb77.woff2')format("woff");}.ff3_c00329{font-family:ff3_c00329;line-height:0.666000;font-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_c00329{transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);}
.m5_c00329{transform:matrix(0.193651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193651,0.000000,0.000000,0.250000,0,0);}
.ma_c00329{transform:matrix(0.199109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199109,0.000000,0.000000,0.250000,0,0);}
.m0_c00329{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00329{transform:matrix(0.254056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254056,0.000000,0.000000,0.250000,0,0);}
.m15_c00329{transform:matrix(0.261324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261324,0.000000,0.000000,0.250000,0,0);}
.m6_c00329{transform:matrix(0.262523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262523,0.000000,0.000000,0.250000,0,0);}
.m8_c00329{transform:matrix(0.270827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270827,0.000000,0.000000,0.250000,0,0);}
.me_c00329{transform:matrix(0.273005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273005,0.000000,0.000000,0.250000,0,0);}
.m11_c00329{transform:matrix(0.273819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273819,0.000000,0.000000,0.250000,0,0);}
.m14_c00329{transform:matrix(0.275579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275579,0.000000,0.000000,0.250000,0,0);}
.md_c00329{transform:matrix(0.278623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278623,0.000000,0.000000,0.250000,0,0);}
.mf_c00329{transform:matrix(0.279552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279552,0.000000,0.000000,0.250000,0,0);}
.m1a_c00329{transform:matrix(0.284777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284777,0.000000,0.000000,0.250000,0,0);}
.m7_c00329{transform:matrix(0.291591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291591,0.000000,0.000000,0.250000,0,0);}
.m1b_c00329{transform:matrix(0.292893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292893,0.000000,0.000000,0.250000,0,0);}
.m9_c00329{transform:matrix(0.297260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297260,0.000000,0.000000,0.250000,0,0);}
.m4_c00329{transform:matrix(0.301819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301819,0.000000,0.000000,0.250000,0,0);}
.m12_c00329{transform:matrix(0.302657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302657,0.000000,0.000000,0.250000,0,0);}
.m19_c00329{transform:matrix(0.310712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310712,0.000000,0.000000,0.250000,0,0);}
.m18_c00329{transform:matrix(0.312990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312990,0.000000,0.000000,0.250000,0,0);}
.m2_c00329{transform:matrix(0.319970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319970,0.000000,0.000000,0.250000,0,0);}
.m3_c00329{transform:matrix(0.321510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321510,0.000000,0.000000,0.250000,0,0);}
.m17_c00329{transform:matrix(0.321682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321682,0.000000,0.000000,0.250000,0,0);}
.m13_c00329{transform:matrix(0.323284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323284,0.000000,0.000000,0.250000,0,0);}
.m10_c00329{transform:matrix(0.326203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326203,0.000000,0.000000,0.250000,0,0);}
.m16_c00329{transform:matrix(0.327947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327947,0.000000,0.000000,0.250000,0,0);}
.mb_c00329{transform:matrix(0.356409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356409,0.000000,0.000000,0.250000,0,0);}
.mc_c00329{transform:matrix(0.407418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407418,0.000000,0.000000,0.250000,0,0);}
.v0_c00329{vertical-align:0.000000px;}
.ls6_c00329{letter-spacing:-1.323630px;}
.ls1_c00329{letter-spacing:0.000000px;}
.ls7_c00329{letter-spacing:1.831500px;}
.ls8_c00329{letter-spacing:2.910600px;}
.ls0_c00329{letter-spacing:2.995839px;}
.ls4_c00329{letter-spacing:3.583810px;}
.ls3_c00329{letter-spacing:3.811500px;}
.ls2_c00329{letter-spacing:4.296610px;}
.ls9_c00329{letter-spacing:29.937798px;}
.ls5_c00329{letter-spacing:49.896198px;}
.sc__c00329{text-shadow:none;}
.sc0_c00329{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00329{-webkit-text-stroke:0px transparent;}
.sc0_c00329{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00329{word-spacing:0.000000px;}
._1_c00329{margin-left:-28.128870px;}
._0_c00329{margin-left:-24.317370px;}
._4_c00329{width:7.242840px;}
._2_c00329{width:21.419640px;}
._5_c00329{width:29.579814px;}
._3_c00329{width:38.344680px;}
._6_c00329{width:651.295260px;}
.fc0_c00329{color:transparent;}
.fsb_c00329{font-size:13.860000px;}
.fsa_c00329{font-size:22.176000px;}
.fsd_c00329{font-size:23.166000px;}
.fs8_c00329{font-size:27.720000px;}
.fs0_c00329{font-size:28.314000px;}
.fse_c00329{font-size:29.937798px;}
.fs6_c00329{font-size:32.274000px;}
.fs10_c00329{font-size:33.264000px;}
.fs7_c00329{font-size:36.630000px;}
.fs5_c00329{font-size:37.818000px;}
.fsf_c00329{font-size:39.204000px;}
.fs4_c00329{font-size:49.896198px;}
.fs9_c00329{font-size:58.212000px;}
.fsc_c00329{font-size:66.528000px;}
.fs3_c00329{font-size:71.676198px;}
.fs2_c00329{font-size:76.230000px;}
.fs1_c00329{font-size:85.932198px;}
.y0_c00329{bottom:0.000000px;}
.y1b_c00329{bottom:49.090185px;}
.y1_c00329{bottom:76.500000px;}
.y10_c00329{bottom:207.336735px;}
.yc_c00329{bottom:254.020185px;}
.yb_c00329{bottom:255.094335px;}
.y1a_c00329{bottom:403.000335px;}
.yd_c00329{bottom:408.341385px;}
.y2_c00329{bottom:437.566185px;}
.y14_c00329{bottom:509.208525px;}
.ye_c00329{bottom:533.081385px;}
.y19_c00329{bottom:587.615535px;}
.y13_c00329{bottom:607.217535px;}
.yf_c00329{bottom:643.565385px;}
.y18_c00329{bottom:671.013135px;}
.y17_c00329{bottom:682.056585px;}
.y16_c00329{bottom:694.535535px;}
.y15_c00329{bottom:705.227535px;}
.y11_c00329{bottom:824.977935px;}
.ya_c00329{bottom:825.334335px;}
.y12_c00329{bottom:825.690735px;}
.y9_c00329{bottom:880.927785px;}
.y7_c00329{bottom:891.619785px;}
.y8_c00329{bottom:896.970735px;}
.y6_c00329{bottom:919.067535px;}
.y5_c00329{bottom:924.413535px;}
.y4_c00329{bottom:925.121385px;}
.y3_c00329{bottom:1075.170735px;}
.hd_c00329{height:14.455547px;}
.h10_c00329{height:19.938573px;}
.hc_c00329{height:23.128875px;}
.hf_c00329{height:24.161414px;}
.ha_c00329{height:28.911094px;}
.h2_c00329{height:29.530617px;}
.h8_c00329{height:31.675166px;}
.h6_c00329{height:33.230868px;}
.h12_c00329{height:34.693313px;}
.h9_c00329{height:38.203945px;}
.h11_c00329{height:38.476582px;}
.h7_c00329{height:39.442992px;}
.hb_c00329{height:57.131895px;}
.he_c00329{height:69.386625px;}
.h5_c00329{height:70.346269px;}
.h4_c00329{height:74.815576px;}
.h3_c00329{height:84.337753px;}
.h1_c00329{height:1110.000000px;}
.h0_c00329{height:1263.000000px;}
.w1_c00329{width:775.500000px;}
.w0_c00329{width:892.500000px;}
.x0_c00329{left:0.000000px;}
.x2_c00329{left:54.342735px;}
.x1_c00329{left:58.500000px;}
.x4_c00329{left:96.635535px;}
.xf_c00329{left:98.184885px;}
.x20_c00329{left:99.961935px;}
.x1f_c00329{left:102.189435px;}
.x1b_c00329{left:129.439185px;}
.x5_c00329{left:139.651035px;}
.x21_c00329{left:179.884635px;}
.x1c_c00329{left:183.819885px;}
.x22_c00329{left:185.205885px;}
.x23_c00329{left:196.279035px;}
.x6_c00329{left:200.055885px;}
.x10_c00329{left:207.129435px;}
.x7_c00329{left:217.153185px;}
.x11_c00329{left:229.632135px;}
.x24_c00329{left:238.665885px;}
.x1d_c00329{left:250.639935px;}
.x8_c00329{left:262.653585px;}
.x1e_c00329{left:283.403985px;}
.x12_c00329{left:293.615835px;}
.x25_c00329{left:329.062785px;}
.x29_c00329{left:349.976535px;}
.x13_c00329{left:362.594085px;}
.x14_c00329{left:373.182135px;}
.x2a_c00329{left:405.040335px;}
.x15_c00329{left:417.083685px;}
.x26_c00329{left:448.649835px;}
.x9_c00329{left:460.712985px;}
.x16_c00329{left:462.009885px;}
.xe_c00329{left:464.994735px;}
.x2b_c00329{left:469.546706px;}
.x17_c00329{left:494.501685px;}
.x27_c00329{left:504.238335px;}
.xa_c00329{left:505.906485px;}
.x18_c00329{left:528.275535px;}
.xb_c00329{left:561.089085px;}
.x19_c00329{left:593.749185px;}
.x28_c00329{left:617.939835px;}
.xc_c00329{left:626.691435px;}
.xd_c00329{left:659.999985px;}
.x3_c00329{left:673.320435px;}
.x2d_c00329{left:701.228535px;}
.x2c_c00329{left:704.683635px;}
.x2e_c00329{left:708.707985px;}
.x1a_c00329{left:715.073685px;}
.x2f_c00329{left:733.349085px;}
@media print{
.v0_c00329{vertical-align:0.000000pt;}
.ls6_c00329{letter-spacing:-1.176560pt;}
.ls1_c00329{letter-spacing:0.000000pt;}
.ls7_c00329{letter-spacing:1.628000pt;}
.ls8_c00329{letter-spacing:2.587200pt;}
.ls0_c00329{letter-spacing:2.662968pt;}
.ls4_c00329{letter-spacing:3.185609pt;}
.ls3_c00329{letter-spacing:3.388000pt;}
.ls2_c00329{letter-spacing:3.819209pt;}
.ls9_c00329{letter-spacing:26.611376pt;}
.ls5_c00329{letter-spacing:44.352176pt;}
.ws0_c00329{word-spacing:0.000000pt;}
._1_c00329{margin-left:-25.003440pt;}
._0_c00329{margin-left:-21.615440pt;}
._4_c00329{width:6.438080pt;}
._2_c00329{width:19.039680pt;}
._5_c00329{width:26.293168pt;}
._3_c00329{width:34.084160pt;}
._6_c00329{width:578.929120pt;}
.fsb_c00329{font-size:12.320000pt;}
.fsa_c00329{font-size:19.712000pt;}
.fsd_c00329{font-size:20.592000pt;}
.fs8_c00329{font-size:24.640000pt;}
.fs0_c00329{font-size:25.168000pt;}
.fse_c00329{font-size:26.611376pt;}
.fs6_c00329{font-size:28.688000pt;}
.fs10_c00329{font-size:29.568000pt;}
.fs7_c00329{font-size:32.560000pt;}
.fs5_c00329{font-size:33.616000pt;}
.fsf_c00329{font-size:34.848000pt;}
.fs4_c00329{font-size:44.352176pt;}
.fs9_c00329{font-size:51.744000pt;}
.fsc_c00329{font-size:59.136000pt;}
.fs3_c00329{font-size:63.712176pt;}
.fs2_c00329{font-size:67.760000pt;}
.fs1_c00329{font-size:76.384176pt;}
.y0_c00329{bottom:0.000000pt;}
.y1b_c00329{bottom:43.635720pt;}
.y1_c00329{bottom:68.000000pt;}
.y10_c00329{bottom:184.299320pt;}
.yc_c00329{bottom:225.795720pt;}
.yb_c00329{bottom:226.750520pt;}
.y1a_c00329{bottom:358.222520pt;}
.yd_c00329{bottom:362.970120pt;}
.y2_c00329{bottom:388.947720pt;}
.y14_c00329{bottom:452.629800pt;}
.ye_c00329{bottom:473.850120pt;}
.y19_c00329{bottom:522.324920pt;}
.y13_c00329{bottom:539.748920pt;}
.yf_c00329{bottom:572.058120pt;}
.y18_c00329{bottom:596.456120pt;}
.y17_c00329{bottom:606.272520pt;}
.y16_c00329{bottom:617.364920pt;}
.y15_c00329{bottom:626.868920pt;}
.y11_c00329{bottom:733.313720pt;}
.ya_c00329{bottom:733.630520pt;}
.y12_c00329{bottom:733.947320pt;}
.y9_c00329{bottom:783.046920pt;}
.y7_c00329{bottom:792.550920pt;}
.y8_c00329{bottom:797.307320pt;}
.y6_c00329{bottom:816.948920pt;}
.y5_c00329{bottom:821.700920pt;}
.y4_c00329{bottom:822.330120pt;}
.y3_c00329{bottom:955.707320pt;}
.hd_c00329{height:12.849375pt;}
.h10_c00329{height:17.723176pt;}
.hc_c00329{height:20.559000pt;}
.hf_c00329{height:21.476813pt;}
.ha_c00329{height:25.698750pt;}
.h2_c00329{height:26.249438pt;}
.h8_c00329{height:28.155703pt;}
.h6_c00329{height:29.538549pt;}
.h12_c00329{height:30.838500pt;}
.h9_c00329{height:33.959063pt;}
.h11_c00329{height:34.201406pt;}
.h7_c00329{height:35.060438pt;}
.hb_c00329{height:50.783906pt;}
.he_c00329{height:61.677000pt;}
.h5_c00329{height:62.530016pt;}
.h4_c00329{height:66.502734pt;}
.h3_c00329{height:74.966891pt;}
.h1_c00329{height:986.666667pt;}
.h0_c00329{height:1122.666667pt;}
.w1_c00329{width:689.333333pt;}
.w0_c00329{width:793.333333pt;}
.x0_c00329{left:0.000000pt;}
.x2_c00329{left:48.304653pt;}
.x1_c00329{left:52.000000pt;}
.x4_c00329{left:85.898253pt;}
.xf_c00329{left:87.275453pt;}
.x20_c00329{left:88.855053pt;}
.x1f_c00329{left:90.835053pt;}
.x1b_c00329{left:115.057053pt;}
.x5_c00329{left:124.134253pt;}
.x21_c00329{left:159.897453pt;}
.x1c_c00329{left:163.395453pt;}
.x22_c00329{left:164.627453pt;}
.x23_c00329{left:174.470253pt;}
.x6_c00329{left:177.827453pt;}
.x10_c00329{left:184.115053pt;}
.x7_c00329{left:193.025053pt;}
.x11_c00329{left:204.117453pt;}
.x24_c00329{left:212.147453pt;}
.x1d_c00329{left:222.791053pt;}
.x8_c00329{left:233.469853pt;}
.x1e_c00329{left:251.914653pt;}
.x12_c00329{left:260.991853pt;}
.x25_c00329{left:292.500253pt;}
.x29_c00329{left:311.090253pt;}
.x13_c00329{left:322.305853pt;}
.x14_c00329{left:331.717453pt;}
.x2a_c00329{left:360.035853pt;}
.x15_c00329{left:370.741053pt;}
.x26_c00329{left:398.799853pt;}
.x9_c00329{left:409.522653pt;}
.x16_c00329{left:410.675453pt;}
.xe_c00329{left:413.328653pt;}
.x2b_c00329{left:417.374849pt;}
.x17_c00329{left:439.557053pt;}
.x27_c00329{left:448.211853pt;}
.xa_c00329{left:449.694653pt;}
.x18_c00329{left:469.578253pt;}
.xb_c00329{left:498.745853pt;}
.x19_c00329{left:527.777053pt;}
.x28_c00329{left:549.279853pt;}
.xc_c00329{left:557.059053pt;}
.xd_c00329{left:586.666653pt;}
.x3_c00329{left:598.507053pt;}
.x2d_c00329{left:623.314253pt;}
.x2c_c00329{left:626.385453pt;}
.x2e_c00329{left:629.962653pt;}
.x1a_c00329{left:635.621053pt;}
.x2f_c00329{left:651.865853pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6cf0290bcaa0cc24f4bc805f.woff2')format("woff");}.ff1_c00330{font-family:ff1_c00330;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00330;src:url('chunks/assets/font_dd7558db1e47a146c41336a0.woff2')format("woff");}.ff2_c00330{font-family:ff2_c00330;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00330;src:url('chunks/assets/font_496278dbfb196ba3eef33d6c.woff2')format("woff");}.ff3_c00330{font-family:ff3_c00330;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00330;src:url('chunks/assets/font_f6887f2695644f6f79c2cfc1.woff2')format("woff");}.ff4_c00330{font-family:ff4_c00330;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00330;src:url('chunks/assets/font_b4f855dd5eb05f404694e3ae.woff2')format("woff");}.ff5_c00330{font-family:ff5_c00330;line-height:1.435059;font-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_c00330{transform:matrix(0.119566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119566,0.000000,0.000000,0.250000,0,0);}
.m7_c00330{transform:matrix(0.197424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197424,0.000000,0.000000,0.250000,0,0);}
.m4_c00330{transform:matrix(0.203046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203046,0.000000,0.000000,0.250000,0,0);}
.m6_c00330{transform:matrix(0.204576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204576,0.000000,0.000000,0.250000,0,0);}
.m8_c00330{transform:matrix(0.207198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207198,0.000000,0.000000,0.250000,0,0);}
.mb_c00330{transform:matrix(0.225587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225587,0.000000,0.000000,0.250000,0,0);}
.m5_c00330{transform:matrix(0.226733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226733,0.000000,0.000000,0.250000,0,0);}
.md_c00330{transform:matrix(0.227411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227411,0.000000,0.000000,0.250000,0,0);}
.m3_c00330{transform:matrix(0.228634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228634,0.000000,0.000000,0.250000,0,0);}
.mc_c00330{transform:matrix(0.245728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245728,0.000000,0.000000,0.250000,0,0);}
.me_c00330{transform:matrix(0.247982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247982,0.000000,0.000000,0.250000,0,0);}
.m0_c00330{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.ma_c00330{transform:matrix(0.278855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278855,0.000000,0.000000,0.250000,0,0);}
.m2_c00330{transform:matrix(0.290471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290471,0.000000,0.000000,0.250000,0,0);}
.m9_c00330{transform:matrix(0.387452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387452,0.000000,0.000000,0.250000,0,0);}
.v0_c00330{vertical-align:0.000000px;}
.ls5_c00330{letter-spacing:-2.952180px;}
.ls4_c00330{letter-spacing:-2.612617px;}
.ls7_c00330{letter-spacing:-2.300767px;}
.ls1_c00330{letter-spacing:0.000000px;}
.ls6_c00330{letter-spacing:1.346400px;}
.ls8_c00330{letter-spacing:1.577669px;}
.ls0_c00330{letter-spacing:2.649169px;}
.ls3_c00330{letter-spacing:3.732310px;}
.ls2_c00330{letter-spacing:32.788998px;}
.sc__c00330{text-shadow:none;}
.sc0_c00330{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00330{-webkit-text-stroke:0px transparent;}
.sc0_c00330{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00330{word-spacing:-16.434050px;}
.ws1_c00330{word-spacing:0.000000px;}
._2_c00330{width:5.653384px;}
._3_c00330{width:21.672017px;}
._0_c00330{width:152.375938px;}
._1_c00330{width:180.201780px;}
.fc0_c00330{color:transparent;}
.fs7_c00330{font-size:5.742198px;}
.fs4_c00330{font-size:22.176000px;}
.fs2_c00330{font-size:25.146000px;}
.fs8_c00330{font-size:26.928000px;}
.fs0_c00330{font-size:27.720000px;}
.fs3_c00330{font-size:32.788998px;}
.fsa_c00330{font-size:39.600000px;}
.fsb_c00330{font-size:44.352000px;}
.fs9_c00330{font-size:65.736198px;}
.fs1_c00330{font-size:72.864000px;}
.fs5_c00330{font-size:74.646198px;}
.fs6_c00330{font-size:84.348000px;}
.y0_c00330{bottom:0.000000px;}
.y1_c00330{bottom:73.500000px;}
.yd_c00330{bottom:145.288785px;}
.yc_c00330{bottom:176.300535px;}
.yb_c00330{bottom:240.803985px;}
.ya_c00330{bottom:277.869585px;}
.y9_c00330{bottom:281.438535px;}
.y8_c00330{bottom:310.658385px;}
.y7_c00330{bottom:313.870935px;}
.y6_c00330{bottom:328.126935px;}
.y5_c00330{bottom:423.998535px;}
.y4_c00330{bottom:434.685585px;}
.y3_c00330{bottom:447.520935px;}
.y2_c00330{bottom:1033.081185px;}
.h5_c00330{height:21.837473px;}
.h6_c00330{height:23.128875px;}
.h4_c00330{height:26.226492px;}
.h9_c00330{height:27.138375px;}
.h2_c00330{height:28.911094px;}
.hb_c00330{height:41.301563px;}
.hc_c00330{height:46.257750px;}
.ha_c00330{height:64.516483px;}
.h3_c00330{height:71.512031px;}
.h7_c00330{height:75.229371px;}
.h8_c00330{height:82.782949px;}
.h1_c00330{height:1116.000000px;}
.h0_c00330{height:1263.000000px;}
.w1_c00330{width:784.500000px;}
.w0_c00330{width:892.500000px;}
.x0_c00330{left:0.000000px;}
.x1_c00330{left:54.000000px;}
.x19_c00330{left:61.401885px;}
.x2_c00330{left:235.325085px;}
.x6_c00330{left:261.381885px;}
.x7_c00330{left:328.003935px;}
.x10_c00330{left:329.573085px;}
.x11_c00330{left:351.110535px;}
.x8_c00330{left:361.312485px;}
.x12_c00330{left:372.712335px;}
.xe_c00330{left:404.649735px;}
.x13_c00330{left:416.049585px;}
.x9_c00330{left:439.893735px;}
.x17_c00330{left:445.799085px;}
.xa_c00330{left:462.307335px;}
.xb_c00330{left:473.900235px;}
.xf_c00330{left:485.290185px;}
.x14_c00330{left:529.107585px;}
.xc_c00330{left:550.392585px;}
.x5_c00330{left:560.386635px;}
.x18_c00330{left:566.712735px;}
.xd_c00330{left:583.176435px;}
.x15_c00330{left:592.858635px;}
.x16_c00330{left:605.580135px;}
.x1a_c00330{left:708.268875px;}
.x3_c00330{left:711.643785px;}
.x4_c00330{left:713.193135px;}
@media print{
.v0_c00330{vertical-align:0.000000pt;}
.ls5_c00330{letter-spacing:-2.624160pt;}
.ls4_c00330{letter-spacing:-2.322326pt;}
.ls7_c00330{letter-spacing:-2.045126pt;}
.ls1_c00330{letter-spacing:0.000000pt;}
.ls6_c00330{letter-spacing:1.196800pt;}
.ls8_c00330{letter-spacing:1.402372pt;}
.ls0_c00330{letter-spacing:2.354817pt;}
.ls3_c00330{letter-spacing:3.317609pt;}
.ls2_c00330{letter-spacing:29.145776pt;}
.ws0_c00330{word-spacing:-14.608044pt;}
.ws1_c00330{word-spacing:0.000000pt;}
._2_c00330{width:5.025230pt;}
._3_c00330{width:19.264015pt;}
._0_c00330{width:135.445278pt;}
._1_c00330{width:160.179360pt;}
.fs7_c00330{font-size:5.104176pt;}
.fs4_c00330{font-size:19.712000pt;}
.fs2_c00330{font-size:22.352000pt;}
.fs8_c00330{font-size:23.936000pt;}
.fs0_c00330{font-size:24.640000pt;}
.fs3_c00330{font-size:29.145776pt;}
.fsa_c00330{font-size:35.200000pt;}
.fsb_c00330{font-size:39.424000pt;}
.fs9_c00330{font-size:58.432176pt;}
.fs1_c00330{font-size:64.768000pt;}
.fs5_c00330{font-size:66.352176pt;}
.fs6_c00330{font-size:74.976000pt;}
.y0_c00330{bottom:0.000000pt;}
.y1_c00330{bottom:65.333333pt;}
.yd_c00330{bottom:129.145587pt;}
.yc_c00330{bottom:156.711587pt;}
.yb_c00330{bottom:214.047987pt;}
.ya_c00330{bottom:246.995187pt;}
.y9_c00330{bottom:250.167587pt;}
.y8_c00330{bottom:276.140787pt;}
.y7_c00330{bottom:278.996387pt;}
.y6_c00330{bottom:291.668387pt;}
.y5_c00330{bottom:376.887587pt;}
.y4_c00330{bottom:386.387187pt;}
.y3_c00330{bottom:397.796387pt;}
.y2_c00330{bottom:918.294387pt;}
.h5_c00330{height:19.411087pt;}
.h6_c00330{height:20.559000pt;}
.h4_c00330{height:23.312438pt;}
.h9_c00330{height:24.123000pt;}
.h2_c00330{height:25.698750pt;}
.hb_c00330{height:36.712500pt;}
.hc_c00330{height:41.118000pt;}
.ha_c00330{height:57.347985pt;}
.h3_c00330{height:63.566250pt;}
.h7_c00330{height:66.870552pt;}
.h8_c00330{height:73.584844pt;}
.h1_c00330{height:992.000000pt;}
.h0_c00330{height:1122.666667pt;}
.w1_c00330{width:697.333333pt;}
.w0_c00330{width:793.333333pt;}
.x0_c00330{left:0.000000pt;}
.x1_c00330{left:48.000000pt;}
.x19_c00330{left:54.579453pt;}
.x2_c00330{left:209.177853pt;}
.x6_c00330{left:232.339453pt;}
.x7_c00330{left:291.559053pt;}
.x10_c00330{left:292.953853pt;}
.x11_c00330{left:312.098253pt;}
.x8_c00330{left:321.166653pt;}
.x12_c00330{left:331.299853pt;}
.xe_c00330{left:359.688653pt;}
.x13_c00330{left:369.821853pt;}
.x9_c00330{left:391.016653pt;}
.x17_c00330{left:396.265853pt;}
.xa_c00330{left:410.939853pt;}
.xb_c00330{left:421.244653pt;}
.xf_c00330{left:431.369053pt;}
.x14_c00330{left:470.317853pt;}
.xc_c00330{left:489.237853pt;}
.x5_c00330{left:498.121453pt;}
.x18_c00330{left:503.744653pt;}
.xd_c00330{left:518.379053pt;}
.x15_c00330{left:526.985453pt;}
.x16_c00330{left:538.293453pt;}
.x1a_c00330{left:629.572333pt;}
.x3_c00330{left:632.572253pt;}
.x4_c00330{left:633.949453pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ec38146a5d51f3806df3b0ba.woff2')format("woff");}.ff1_c00331{font-family:ff1_c00331;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00331;src:url('chunks/assets/font_5e7c10ca84cc3f860b97c500.woff2')format("woff");}.ff2_c00331{font-family:ff2_c00331;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00331;src:url('chunks/assets/font_a762193c128eab735197879c.woff2')format("woff");}.ff3_c00331{font-family:ff3_c00331;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00331;src:url('chunks/assets/font_3396df9b73a4ba8e6fa3daf8.woff2')format("woff");}.ff4_c00331{font-family:ff4_c00331;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00331;src:url('chunks/assets/font_7854e6b5ad5b3e516565e0ea.woff2')format("woff");}.ff5_c00331{font-family:ff5_c00331;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m60_c00331{transform:matrix(0.065790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065790,0.000000,0.000000,0.250000,0,0);}
.m34_c00331{transform:matrix(0.070437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070437,0.000000,0.000000,0.250000,0,0);}
.m6b_c00331{transform:matrix(0.070513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070513,0.000000,0.000000,0.250000,0,0);}
.m1e_c00331{transform:matrix(0.092858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092858,0.000000,0.000000,0.250000,0,0);}
.m7c_c00331{transform:matrix(0.099333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099333,0.000000,0.000000,0.250000,0,0);}
.m5e_c00331{transform:matrix(0.105655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105655,0.000000,0.000000,0.250000,0,0);}
.m37_c00331{transform:matrix(0.106904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106904,0.000000,0.000000,0.250000,0,0);}
.m74_c00331{transform:matrix(0.131423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131423,0.000000,0.000000,0.250000,0,0);}
.m6c_c00331{transform:matrix(0.150640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150640,0.000000,0.000000,0.250000,0,0);}
.m59_c00331{transform:matrix(0.152115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152115,0.000000,0.000000,0.250000,0,0);}
.m67_c00331{transform:matrix(0.153976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153976,0.000000,0.000000,0.250000,0,0);}
.m5f_c00331{transform:matrix(0.155264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155264,0.000000,0.000000,0.250000,0,0);}
.m3c_c00331{transform:matrix(0.156122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156122,0.000000,0.000000,0.250000,0,0);}
.m25_c00331{transform:matrix(0.164581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164581,0.000000,0.000000,0.250000,0,0);}
.m65_c00331{transform:matrix(0.174005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174005,0.000000,0.000000,0.250000,0,0);}
.m35_c00331{transform:matrix(0.174855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174855,0.000000,0.000000,0.250000,0,0);}
.m39_c00331{transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);}
.m3b_c00331{transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);}
.m66_c00331{transform:matrix(0.203337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203337,0.000000,0.000000,0.250000,0,0);}
.m3a_c00331{transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);}
.m1d_c00331{transform:matrix(0.212499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212499,0.000000,0.000000,0.250000,0,0);}
.m78_c00331{transform:matrix(0.213033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213033,0.000000,0.000000,0.250000,0,0);}
.m5a_c00331{transform:matrix(0.213187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213187,0.000000,0.000000,0.250000,0,0);}
.m1f_c00331{transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);}
.m49_c00331{transform:matrix(0.222588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222588,0.000000,0.000000,0.250000,0,0);}
.m87_c00331{transform:matrix(0.233006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233006,0.000000,0.000000,0.250000,0,0);}
.m6e_c00331{transform:matrix(0.233441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233441,0.000000,0.000000,0.250000,0,0);}
.m5b_c00331{transform:matrix(0.238068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238068,0.000000,0.000000,0.250000,0,0);}
.m2d_c00331{transform:matrix(0.239475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239475,0.000000,0.000000,0.250000,0,0);}
.m45_c00331{transform:matrix(0.247819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247819,0.000000,0.000000,0.250000,0,0);}
.m0_c00331{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00331{transform:matrix(0.250345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250345,0.000000,0.000000,0.250000,0,0);}
.m4f_c00331{transform:matrix(0.254645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254645,0.000000,0.000000,0.250000,0,0);}
.m88_c00331{transform:matrix(0.254743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254743,0.000000,0.000000,0.250000,0,0);}
.m38_c00331{transform:matrix(0.258529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258529,0.000000,0.000000,0.250000,0,0);}
.m21_c00331{transform:matrix(0.265161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265161,0.000000,0.000000,0.250000,0,0);}
.m79_c00331{transform:matrix(0.267028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267028,0.000000,0.000000,0.250000,0,0);}
.ma_c00331{transform:matrix(0.267085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267085,0.000000,0.000000,0.250000,0,0);}
.m86_c00331{transform:matrix(0.269957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269957,0.000000,0.000000,0.250000,0,0);}
.m71_c00331{transform:matrix(0.273625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273625,0.000000,0.000000,0.250000,0,0);}
.mc_c00331{transform:matrix(0.275129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275129,0.000000,0.000000,0.250000,0,0);}
.m84_c00331{transform:matrix(0.279069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279069,0.000000,0.000000,0.250000,0,0);}
.m48_c00331{transform:matrix(0.279202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279202,0.000000,0.000000,0.250000,0,0);}
.m53_c00331{transform:matrix(0.279959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279959,0.000000,0.000000,0.250000,0,0);}
.m24_c00331{transform:matrix(0.280160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280160,0.000000,0.000000,0.250000,0,0);}
.m76_c00331{transform:matrix(0.280697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280697,0.000000,0.000000,0.250000,0,0);}
.m5_c00331{transform:matrix(0.282030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282030,0.000000,0.000000,0.250000,0,0);}
.m80_c00331{transform:matrix(0.282201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282201,0.000000,0.000000,0.250000,0,0);}
.m42_c00331{transform:matrix(0.284151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284151,0.000000,0.000000,0.250000,0,0);}
.m4b_c00331{transform:matrix(0.285320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285320,0.000000,0.000000,0.250000,0,0);}
.m61_c00331{transform:matrix(0.286526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286526,0.000000,0.000000,0.250000,0,0);}
.m15_c00331{transform:matrix(0.287034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287034,0.000000,0.000000,0.250000,0,0);}
.m2f_c00331{transform:matrix(0.289640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289640,0.000000,0.000000,0.250000,0,0);}
.me_c00331{transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);}
.m31_c00331{transform:matrix(0.292280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292280,0.000000,0.000000,0.250000,0,0);}
.m41_c00331{transform:matrix(0.292282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292282,0.000000,0.000000,0.250000,0,0);}
.m68_c00331{transform:matrix(0.292789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292789,0.000000,0.000000,0.250000,0,0);}
.m9_c00331{transform:matrix(0.293295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293295,0.000000,0.000000,0.250000,0,0);}
.m27_c00331{transform:matrix(0.295043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295043,0.000000,0.000000,0.250000,0,0);}
.m32_c00331{transform:matrix(0.296505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296505,0.000000,0.000000,0.250000,0,0);}
.m52_c00331{transform:matrix(0.296676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296676,0.000000,0.000000,0.250000,0,0);}
.m2b_c00331{transform:matrix(0.297691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297691,0.000000,0.000000,0.250000,0,0);}
.m55_c00331{transform:matrix(0.298987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298987,0.000000,0.000000,0.250000,0,0);}
.m19_c00331{transform:matrix(0.299046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299046,0.000000,0.000000,0.250000,0,0);}
.m72_c00331{transform:matrix(0.299800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299800,0.000000,0.000000,0.250000,0,0);}
.m64_c00331{transform:matrix(0.300625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300625,0.000000,0.000000,0.250000,0,0);}
.m8a_c00331{transform:matrix(0.303699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303699,0.000000,0.000000,0.250000,0,0);}
.m1b_c00331{transform:matrix(0.304106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304106,0.000000,0.000000,0.250000,0,0);}
.m81_c00331{transform:matrix(0.305417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305417,0.000000,0.000000,0.250000,0,0);}
.m12_c00331{transform:matrix(0.305790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305790,0.000000,0.000000,0.250000,0,0);}
.m43_c00331{transform:matrix(0.306668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306668,0.000000,0.000000,0.250000,0,0);}
.m10_c00331{transform:matrix(0.308683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308683,0.000000,0.000000,0.250000,0,0);}
.m7b_c00331{transform:matrix(0.308895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308895,0.000000,0.000000,0.250000,0,0);}
.mf_c00331{transform:matrix(0.309324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309324,0.000000,0.000000,0.250000,0,0);}
.m3d_c00331{transform:matrix(0.310095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310095,0.000000,0.000000,0.250000,0,0);}
.m7f_c00331{transform:matrix(0.312719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312719,0.000000,0.000000,0.250000,0,0);}
.m57_c00331{transform:matrix(0.313590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313590,0.000000,0.000000,0.250000,0,0);}
.m4e_c00331{transform:matrix(0.315303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315303,0.000000,0.000000,0.250000,0,0);}
.m30_c00331{transform:matrix(0.315627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315627,0.000000,0.000000,0.250000,0,0);}
.m73_c00331{transform:matrix(0.318328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318328,0.000000,0.000000,0.250000,0,0);}
.m13_c00331{transform:matrix(0.320306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320306,0.000000,0.000000,0.250000,0,0);}
.m62_c00331{transform:matrix(0.322559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322559,0.000000,0.000000,0.250000,0,0);}
.m83_c00331{transform:matrix(0.323989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323989,0.000000,0.000000,0.250000,0,0);}
.m54_c00331{transform:matrix(0.324235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324235,0.000000,0.000000,0.250000,0,0);}
.m1_c00331{transform:matrix(0.324866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324866,0.000000,0.000000,0.250000,0,0);}
.m3_c00331{transform:matrix(0.325038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325038,0.000000,0.000000,0.250000,0,0);}
.m2_c00331{transform:matrix(0.325229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325229,0.000000,0.000000,0.250000,0,0);}
.m1a_c00331{transform:matrix(0.325509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325509,0.000000,0.000000,0.250000,0,0);}
.m1c_c00331{transform:matrix(0.326224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326224,0.000000,0.000000,0.250000,0,0);}
.m50_c00331{transform:matrix(0.328302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328302,0.000000,0.000000,0.250000,0,0);}
.m29_c00331{transform:matrix(0.329066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329066,0.000000,0.000000,0.250000,0,0);}
.m4_c00331{transform:matrix(0.329866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329866,0.000000,0.000000,0.250000,0,0);}
.m6f_c00331{transform:matrix(0.329998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329998,0.000000,0.000000,0.250000,0,0);}
.m2c_c00331{transform:matrix(0.330718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330718,0.000000,0.000000,0.250000,0,0);}
.m7e_c00331{transform:matrix(0.331025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331025,0.000000,0.000000,0.250000,0,0);}
.m46_c00331{transform:matrix(0.331101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331101,0.000000,0.000000,0.250000,0,0);}
.m77_c00331{transform:matrix(0.331587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331587,0.000000,0.000000,0.250000,0,0);}
.m70_c00331{transform:matrix(0.332018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332018,0.000000,0.000000,0.250000,0,0);}
.m3f_c00331{transform:matrix(0.332118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332118,0.000000,0.000000,0.250000,0,0);}
.m14_c00331{transform:matrix(0.335324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335324,0.000000,0.000000,0.250000,0,0);}
.m33_c00331{transform:matrix(0.335735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335735,0.000000,0.000000,0.250000,0,0);}
.m26_c00331{transform:matrix(0.336631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336631,0.000000,0.000000,0.250000,0,0);}
.m58_c00331{transform:matrix(0.337472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337472,0.000000,0.000000,0.250000,0,0);}
.m6d_c00331{transform:matrix(0.338207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338207,0.000000,0.000000,0.250000,0,0);}
.m7_c00331{transform:matrix(0.338268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338268,0.000000,0.000000,0.250000,0,0);}
.md_c00331{transform:matrix(0.338942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338942,0.000000,0.000000,0.250000,0,0);}
.m8_c00331{transform:matrix(0.339089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339089,0.000000,0.000000,0.250000,0,0);}
.m23_c00331{transform:matrix(0.339705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339705,0.000000,0.000000,0.250000,0,0);}
.m7d_c00331{transform:matrix(0.341237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341237,0.000000,0.000000,0.250000,0,0);}
.m4c_c00331{transform:matrix(0.342083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342083,0.000000,0.000000,0.250000,0,0);}
.m2a_c00331{transform:matrix(0.344198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344198,0.000000,0.000000,0.250000,0,0);}
.m16_c00331{transform:matrix(0.347882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347882,0.000000,0.000000,0.250000,0,0);}
.mb_c00331{transform:matrix(0.353999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353999,0.000000,0.000000,0.250000,0,0);}
.m28_c00331{transform:matrix(0.354100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354100,0.000000,0.000000,0.250000,0,0);}
.m6a_c00331{transform:matrix(0.354771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354771,0.000000,0.000000,0.250000,0,0);}
.m22_c00331{transform:matrix(0.356133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356133,0.000000,0.000000,0.250000,0,0);}
.m56_c00331{transform:matrix(0.356298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356298,0.000000,0.000000,0.250000,0,0);}
.m75_c00331{transform:matrix(0.357351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357351,0.000000,0.000000,0.250000,0,0);}
.m5d_c00331{transform:matrix(0.360809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360809,0.000000,0.000000,0.250000,0,0);}
.m5c_c00331{transform:matrix(0.366067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366067,0.000000,0.000000,0.250000,0,0);}
.m40_c00331{transform:matrix(0.369545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369545,0.000000,0.000000,0.250000,0,0);}
.m85_c00331{transform:matrix(0.370126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370126,0.000000,0.000000,0.250000,0,0);}
.m17_c00331{transform:matrix(0.372418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372418,0.000000,0.000000,0.250000,0,0);}
.m4a_c00331{transform:matrix(0.383049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383049,0.000000,0.000000,0.250000,0,0);}
.m82_c00331{transform:matrix(0.386091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386091,0.000000,0.000000,0.250000,0,0);}
.m51_c00331{transform:matrix(0.387514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387514,0.000000,0.000000,0.250000,0,0);}
.m7a_c00331{transform:matrix(0.389634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389634,0.000000,0.000000,0.250000,0,0);}
.m20_c00331{transform:matrix(0.392160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392160,0.000000,0.000000,0.250000,0,0);}
.m36_c00331{transform:matrix(0.397937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397937,0.000000,0.000000,0.250000,0,0);}
.m63_c00331{transform:matrix(0.403458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403458,0.000000,0.000000,0.250000,0,0);}
.m89_c00331{transform:matrix(0.416660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416660,0.000000,0.000000,0.250000,0,0);}
.m47_c00331{transform:matrix(0.432532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432532,0.000000,0.000000,0.250000,0,0);}
.m2e_c00331{transform:matrix(0.444859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444859,0.000000,0.000000,0.250000,0,0);}
.m69_c00331{transform:matrix(0.453298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453298,0.000000,0.000000,0.250000,0,0);}
.m3e_c00331{transform:matrix(0.460264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460264,0.000000,0.000000,0.250000,0,0);}
.m44_c00331{transform:matrix(0.461540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461540,0.000000,0.000000,0.250000,0,0);}
.m6_c00331{transform:matrix(0.465679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465679,0.000000,0.000000,0.250000,0,0);}
.m18_c00331{transform:matrix(0.468742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468742,0.000000,0.000000,0.250000,0,0);}
.m11_c00331{transform:matrix(0.571422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571422,0.000000,0.000000,0.250000,0,0);}
.v1_c00331{vertical-align:-28.523880px;}
.v0_c00331{vertical-align:0.000000px;}
.lsc_c00331{letter-spacing:-2.515590px;}
.ls15_c00331{letter-spacing:-2.508667px;}
.ls18_c00331{letter-spacing:-2.411640px;}
.ls12_c00331{letter-spacing:-2.328480px;}
.lse_c00331{letter-spacing:-2.224530px;}
.ls9_c00331{letter-spacing:-1.466946px;}
.ls13_c00331{letter-spacing:-0.344995px;}
.lsb_c00331{letter-spacing:-0.122186px;}
.ls3_c00331{letter-spacing:0.000000px;}
.ls1_c00331{letter-spacing:0.388081px;}
.ls10_c00331{letter-spacing:1.821600px;}
.ls19_c00331{letter-spacing:1.940598px;}
.ls17_c00331{letter-spacing:2.659338px;}
.ls2_c00331{letter-spacing:2.968396px;}
.lsf_c00331{letter-spacing:3.177900px;}
.ls4_c00331{letter-spacing:3.484810px;}
.ls11_c00331{letter-spacing:3.564000px;}
.ls5_c00331{letter-spacing:3.593700px;}
.lsa_c00331{letter-spacing:3.663000px;}
.ls1a_c00331{letter-spacing:3.742200px;}
.lsd_c00331{letter-spacing:3.762000px;}
.ls1b_c00331{letter-spacing:3.801610px;}
.ls6_c00331{letter-spacing:9.979398px;}
.ls7_c00331{letter-spacing:11.404998px;}
.ls0_c00331{letter-spacing:11.715660px;}
.ls1c_c00331{letter-spacing:12.830598px;}
.ls8_c00331{letter-spacing:49.896198px;}
.ls14_c00331{letter-spacing:54.172998px;}
.ls16_c00331{letter-spacing:55.598598px;}
.sc__c00331{text-shadow:none;}
.sc0_c00331{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00331{-webkit-text-stroke:0px transparent;}
.sc0_c00331{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00331{word-spacing:-17.968500px;}
.ws1_c00331{word-spacing:-17.820000px;}
.ws2_c00331{word-spacing:-3.162456px;}
.ws4_c00331{word-spacing:-1.437480px;}
.ws5_c00331{word-spacing:0.000000px;}
.ws3_c00331{word-spacing:3.881196px;}
._d_c00331{margin-left:-20.915334px;}
._8_c00331{margin-left:-13.656060px;}
._c_c00331{margin-left:-10.277982px;}
._12_c00331{margin-left:-6.828030px;}
._15_c00331{margin-left:-2.803680px;}
._1_c00331{width:1.940598px;}
._7_c00331{width:3.030786px;}
._10_c00331{width:7.555680px;}
._b_c00331{width:9.487368px;}
._9_c00331{width:10.996722px;}
._2_c00331{width:12.434202px;}
._6_c00331{width:14.374800px;}
._e_c00331{width:21.650112px;}
._11_c00331{width:25.140931px;}
._13_c00331{width:32.127480px;}
._5_c00331{width:37.683360px;}
._3_c00331{width:41.674842px;}
._f_c00331{width:43.081632px;}
._14_c00331{width:44.274384px;}
._a_c00331{width:46.891350px;}
._4_c00331{width:48.324205px;}
._0_c00331{width:1014.718320px;}
.fc0_c00331{color:transparent;}
.fs7_c00331{font-size:9.979398px;}
.fs8_c00331{font-size:11.404998px;}
.fs1f_c00331{font-size:12.830598px;}
.fs0_c00331{font-size:22.176000px;}
.fs2_c00331{font-size:27.720000px;}
.fs4_c00331{font-size:28.314000px;}
.fs1_c00331{font-size:34.056198px;}
.fs13_c00331{font-size:36.432000px;}
.fs20_c00331{font-size:39.204000px;}
.fs3_c00331{font-size:39.600000px;}
.fs12_c00331{font-size:40.392000px;}
.fse_c00331{font-size:44.352000px;}
.fs14_c00331{font-size:45.144000px;}
.fs9_c00331{font-size:49.896198px;}
.fs17_c00331{font-size:54.172998px;}
.fs19_c00331{font-size:55.598598px;}
.fs11_c00331{font-size:60.192000px;}
.fs1d_c00331{font-size:62.370000px;}
.fs10_c00331{font-size:63.558000px;}
.fsc_c00331{font-size:66.132198px;}
.fs1b_c00331{font-size:66.330000px;}
.fs16_c00331{font-size:66.528000px;}
.fs1a_c00331{font-size:68.904000px;}
.fs5_c00331{font-size:69.696198px;}
.fs15_c00331{font-size:71.280000px;}
.fs18_c00331{font-size:71.676198px;}
.fs6_c00331{font-size:71.874000px;}
.fsb_c00331{font-size:73.260000px;}
.fs1c_c00331{font-size:74.844000px;}
.fsf_c00331{font-size:75.240000px;}
.fs1e_c00331{font-size:76.032198px;}
.fsa_c00331{font-size:77.616198px;}
.fsd_c00331{font-size:91.872198px;}
.y0_c00331{bottom:0.000000px;}
.y1_c00331{bottom:76.500000px;}
.y24_c00331{bottom:94.001535px;}
.y23_c00331{bottom:128.215935px;}
.y22_c00331{bottom:176.686335px;}
.y21_c00331{bottom:209.470185px;}
.y1f_c00331{bottom:212.682735px;}
.y20_c00331{bottom:213.039135px;}
.y1e_c00331{bottom:236.200185px;}
.y1d_c00331{bottom:246.892185px;}
.y1c_c00331{bottom:280.042335px;}
.y1b_c00331{bottom:300.352185px;}
.y1a_c00331{bottom:313.182585px;}
.y18_c00331{bottom:345.976335px;}
.y19_c00331{bottom:346.332735px;}
.y17_c00331{bottom:351.322335px;}
.y16_c00331{bottom:378.765135px;}
.y15_c00331{bottom:403.708185px;}
.y14_c00331{bottom:410.841135px;}
.y13_c00331{bottom:443.273535px;}
.y12_c00331{bottom:464.652585px;}
.y11_c00331{bottom:467.503785px;}
.y10_c00331{bottom:475.349535px;}
.yf_c00331{bottom:475.700985px;}
.ye_c00331{bottom:504.569385px;}
.yd_c00331{bottom:508.133385px;}
.yc_c00331{bottom:536.650335px;}
.yb_c00331{bottom:540.209385px;}
.ya_c00331{bottom:540.565785px;}
.y9_c00331{bottom:615.771135px;}
.y8_c00331{bottom:643.570335px;}
.y7_c00331{bottom:707.365935px;}
.y6_c00331{bottom:781.497135px;}
.y5_c00331{bottom:872.022735px;}
.y4_c00331{bottom:909.801135px;}
.y3_c00331{bottom:1026.336510px;}
.y2_c00331{bottom:1066.968585px;}
.h9_c00331{height:6.646279px;}
.ha_c00331{height:7.595729px;}
.h23_c00331{height:8.545178px;}
.h2_c00331{height:23.128875px;}
.h4_c00331{height:28.911094px;}
.h6_c00331{height:29.530617px;}
.hb_c00331{height:33.230868px;}
.h3_c00331{height:35.519550px;}
.h17_c00331{height:35.756016px;}
.h1b_c00331{height:36.079217px;}
.h1d_c00331{height:37.028666px;}
.h24_c00331{height:38.476582px;}
.h5_c00331{height:41.301563px;}
.h16_c00331{height:42.127594px;}
.h10_c00331{height:46.257750px;}
.h18_c00331{height:47.083781px;}
.h15_c00331{height:62.778375px;}
.h21_c00331{height:65.049961px;}
.h1a_c00331{height:65.261109px;}
.h14_c00331{height:66.289008px;}
.h1e_c00331{height:67.625508px;}
.he_c00331{height:68.973816px;}
.h1f_c00331{height:69.180117px;}
.h19_c00331{height:69.957422px;}
.h7_c00331{height:70.240700px;}
.h1c_c00331{height:70.346269px;}
.h8_c00331{height:70.540400px;}
.h12_c00331{height:71.900684px;}
.h20_c00331{height:73.455293px;}
.hd_c00331{height:73.832344px;}
.h13_c00331{height:75.827813px;}
.hc_c00331{height:76.176054px;}
.h22_c00331{height:76.626200px;}
.h11_c00331{height:78.222575px;}
.hf_c00331{height:95.819832px;}
.h1_c00331{height:1110.000000px;}
.h0_c00331{height:1263.000000px;}
.w1_c00331{width:775.500000px;}
.w0_c00331{width:892.500000px;}
.x0_c00331{left:0.000000px;}
.x1_c00331{left:58.500000px;}
.x1e_c00331{left:98.135385px;}
.x47_c00331{left:99.174885px;}
.x4e_c00331{left:101.580585px;}
.x48_c00331{left:109.480785px;}
.x3_c00331{left:112.169427px;}
.x5f_c00331{left:113.213085px;}
.x39_c00331{left:131.394435px;}
.x3a_c00331{left:132.854685px;}
.x3b_c00331{left:134.913885px;}
.x4_c00331{left:143.408085px;}
.xc_c00331{left:152.956635px;}
.x8_c00331{left:154.218885px;}
.x59_c00331{left:157.525485px;}
.x3c_c00331{left:163.960485px;}
.x4f_c00331{left:165.544485px;}
.x34_c00331{left:175.261335px;}
.x5a_c00331{left:182.760585px;}
.x1f_c00331{left:185.631585px;}
.x3d_c00331{left:187.052235px;}
.x3e_c00331{left:190.502385px;}
.x43_c00331{left:197.417535px;}
.xd_c00331{left:208.678785px;}
.x67_c00331{left:218.811435px;}
.xe_c00331{left:220.034085px;}
.x29_c00331{left:230.938935px;}
.x9_c00331{left:232.186335px;}
.x2a_c00331{left:241.274535px;}
.x44_c00331{left:242.853585px;}
.x5_c00331{left:247.932285px;}
.xb_c00331{left:251.496285px;}
.x35_c00331{left:253.154535px;}
.x68_c00331{left:264.544485px;}
.x49_c00331{left:275.295885px;}
.x5b_c00331{left:278.691585px;}
.x60_c00331{left:280.424085px;}
.x2b_c00331{left:285.740385px;}
.x50_c00331{left:287.403585px;}
.x45_c00331{left:296.120535px;}
.x20_c00331{left:298.065885px;}
.x5c_c00331{left:309.500385px;}
.xf_c00331{left:319.380585px;}
.x61_c00331{left:320.514135px;}
.x21_c00331{left:330.839835px;}
.x46_c00331{left:340.210185px;}
.x3f_c00331{left:342.487185px;}
.x51_c00331{left:348.743985px;}
.x52_c00331{left:352.822785px;}
.x10_c00331{left:353.981085px;}
.x36_c00331{left:363.118785px;}
.x69_c00331{left:364.395885px;}
.xa_c00331{left:367.143135px;}
.x11_c00331{left:375.790785px;}
.x62_c00331{left:377.840085px;}
.x12_c00331{left:379.339935px;}
.x5d_c00331{left:380.869485px;}
.x22_c00331{left:386.136285px;}
.x23_c00331{left:396.625335px;}
.x53_c00331{left:400.228935px;}
.x63_c00331{left:408.346935px;}
.x64_c00331{left:417.682635px;}
.x4a_c00331{left:419.588385px;}
.x24_c00331{left:429.943785px;}
.x13_c00331{left:430.998135px;}
.x14_c00331{left:452.278185px;}
.x2c_c00331{left:462.178185px;}
.x54_c00331{left:463.331535px;}
.x15_c00331{left:469.340835px;}
.x66_c00331{left:475.251135px;}
.x16_c00331{left:485.863935px;}
.x4b_c00331{left:495.021435px;}
.x25_c00331{left:496.882635px;}
.x40_c00331{left:507.564735px;}
.x37_c00331{left:518.801235px;}
.x17_c00331{left:529.196235px;}
.x26_c00331{left:530.428785px;}
.x4c_c00331{left:540.630735px;}
.x18_c00331{left:541.853385px;}
.x58_c00331{left:544.838235px;}
.x27_c00331{left:551.357385px;}
.x19_c00331{left:563.242335px;}
.x38_c00331{left:573.414585px;}
.x55_c00331{left:585.007485px;}
.x6a_c00331{left:594.867885px;}
.x2d_c00331{left:596.778585px;}
.x41_c00331{left:607.104285px;}
.x2e_c00331{left:618.489285px;}
.x2_c00331{left:625.028235px;}
.x42_c00331{left:628.701135px;}
.x1a_c00331{left:630.230685px;}
.x5e_c00331{left:639.007035px;}
.x4d_c00331{left:640.041585px;}
.x28_c00331{left:641.264235px;}
.x2f_c00331{left:651.213735px;}
.x6b_c00331{left:659.896035px;}
.x1b_c00331{left:662.925435px;}
.x33_c00331{left:672.696735px;}
.x65_c00331{left:674.112435px;}
.x32_c00331{left:684.413385px;}
.x30_c00331{left:686.338935px;}
.x1c_c00331{left:695.288535px;}
.x6c_c00331{left:701.936385px;}
.x56_c00331{left:705.683535px;}
.x31_c00331{left:717.538785px;}
.x6_c00331{left:726.800235px;}
.x1d_c00331{left:728.963385px;}
.x57_c00331{left:740.016735px;}
.x7_c00331{left:758.945535px;}
@media print{
.v1_c00331{vertical-align:-25.354560pt;}
.v0_c00331{vertical-align:0.000000pt;}
.lsc_c00331{letter-spacing:-2.236080pt;}
.ls15_c00331{letter-spacing:-2.229926pt;}
.ls18_c00331{letter-spacing:-2.143680pt;}
.ls12_c00331{letter-spacing:-2.069760pt;}
.lse_c00331{letter-spacing:-1.977360pt;}
.ls9_c00331{letter-spacing:-1.303952pt;}
.ls13_c00331{letter-spacing:-0.306662pt;}
.lsb_c00331{letter-spacing:-0.108610pt;}
.ls3_c00331{letter-spacing:0.000000pt;}
.ls1_c00331{letter-spacing:0.344961pt;}
.ls10_c00331{letter-spacing:1.619200pt;}
.ls19_c00331{letter-spacing:1.724976pt;}
.ls17_c00331{letter-spacing:2.363856pt;}
.ls2_c00331{letter-spacing:2.638574pt;}
.lsf_c00331{letter-spacing:2.824800pt;}
.ls4_c00331{letter-spacing:3.097609pt;}
.ls11_c00331{letter-spacing:3.168000pt;}
.ls5_c00331{letter-spacing:3.194400pt;}
.lsa_c00331{letter-spacing:3.256000pt;}
.ls1a_c00331{letter-spacing:3.326400pt;}
.lsd_c00331{letter-spacing:3.344000pt;}
.ls1b_c00331{letter-spacing:3.379209pt;}
.ls6_c00331{letter-spacing:8.870576pt;}
.ls7_c00331{letter-spacing:10.137776pt;}
.ls0_c00331{letter-spacing:10.413920pt;}
.ls1c_c00331{letter-spacing:11.404976pt;}
.ls8_c00331{letter-spacing:44.352176pt;}
.ls14_c00331{letter-spacing:48.153776pt;}
.ls16_c00331{letter-spacing:49.420976pt;}
.ws0_c00331{word-spacing:-15.972000pt;}
.ws1_c00331{word-spacing:-15.840000pt;}
.ws2_c00331{word-spacing:-2.811072pt;}
.ws4_c00331{word-spacing:-1.277760pt;}
.ws5_c00331{word-spacing:0.000000pt;}
.ws3_c00331{word-spacing:3.449952pt;}
._d_c00331{margin-left:-18.591408pt;}
._8_c00331{margin-left:-12.138720pt;}
._c_c00331{margin-left:-9.135984pt;}
._12_c00331{margin-left:-6.069360pt;}
._15_c00331{margin-left:-2.492160pt;}
._1_c00331{width:1.724976pt;}
._7_c00331{width:2.694032pt;}
._10_c00331{width:6.716160pt;}
._b_c00331{width:8.433216pt;}
._9_c00331{width:9.774864pt;}
._2_c00331{width:11.052624pt;}
._6_c00331{width:12.777600pt;}
._e_c00331{width:19.244544pt;}
._11_c00331{width:22.347494pt;}
._13_c00331{width:28.557760pt;}
._5_c00331{width:33.496320pt;}
._3_c00331{width:37.044304pt;}
._f_c00331{width:38.294784pt;}
._14_c00331{width:39.355008pt;}
._a_c00331{width:41.681200pt;}
._4_c00331{width:42.954849pt;}
._0_c00331{width:901.971840pt;}
.fs7_c00331{font-size:8.870576pt;}
.fs8_c00331{font-size:10.137776pt;}
.fs1f_c00331{font-size:11.404976pt;}
.fs0_c00331{font-size:19.712000pt;}
.fs2_c00331{font-size:24.640000pt;}
.fs4_c00331{font-size:25.168000pt;}
.fs1_c00331{font-size:30.272176pt;}
.fs13_c00331{font-size:32.384000pt;}
.fs20_c00331{font-size:34.848000pt;}
.fs3_c00331{font-size:35.200000pt;}
.fs12_c00331{font-size:35.904000pt;}
.fse_c00331{font-size:39.424000pt;}
.fs14_c00331{font-size:40.128000pt;}
.fs9_c00331{font-size:44.352176pt;}
.fs17_c00331{font-size:48.153776pt;}
.fs19_c00331{font-size:49.420976pt;}
.fs11_c00331{font-size:53.504000pt;}
.fs1d_c00331{font-size:55.440000pt;}
.fs10_c00331{font-size:56.496000pt;}
.fsc_c00331{font-size:58.784176pt;}
.fs1b_c00331{font-size:58.960000pt;}
.fs16_c00331{font-size:59.136000pt;}
.fs1a_c00331{font-size:61.248000pt;}
.fs5_c00331{font-size:61.952176pt;}
.fs15_c00331{font-size:63.360000pt;}
.fs18_c00331{font-size:63.712176pt;}
.fs6_c00331{font-size:63.888000pt;}
.fsb_c00331{font-size:65.120000pt;}
.fs1c_c00331{font-size:66.528000pt;}
.fsf_c00331{font-size:66.880000pt;}
.fs1e_c00331{font-size:67.584176pt;}
.fsa_c00331{font-size:68.992176pt;}
.fsd_c00331{font-size:81.664176pt;}
.y0_c00331{bottom:0.000000pt;}
.y1_c00331{bottom:68.000000pt;}
.y24_c00331{bottom:83.556920pt;}
.y23_c00331{bottom:113.969720pt;}
.y22_c00331{bottom:157.054520pt;}
.y21_c00331{bottom:186.195720pt;}
.y1f_c00331{bottom:189.051320pt;}
.y20_c00331{bottom:189.368120pt;}
.y1e_c00331{bottom:209.955720pt;}
.y1d_c00331{bottom:219.459720pt;}
.y1c_c00331{bottom:248.926520pt;}
.y1b_c00331{bottom:266.979720pt;}
.y1a_c00331{bottom:278.384520pt;}
.y18_c00331{bottom:307.534520pt;}
.y19_c00331{bottom:307.851320pt;}
.y17_c00331{bottom:312.286520pt;}
.y16_c00331{bottom:336.680120pt;}
.y15_c00331{bottom:358.851720pt;}
.y14_c00331{bottom:365.192120pt;}
.y13_c00331{bottom:394.020920pt;}
.y12_c00331{bottom:413.024520pt;}
.y11_c00331{bottom:415.558920pt;}
.y10_c00331{bottom:422.532920pt;}
.yf_c00331{bottom:422.845320pt;}
.ye_c00331{bottom:448.506120pt;}
.yd_c00331{bottom:451.674120pt;}
.yc_c00331{bottom:477.022520pt;}
.yb_c00331{bottom:480.186120pt;}
.ya_c00331{bottom:480.502920pt;}
.y9_c00331{bottom:547.352120pt;}
.y8_c00331{bottom:572.062520pt;}
.y7_c00331{bottom:628.769720pt;}
.y6_c00331{bottom:694.664120pt;}
.y5_c00331{bottom:775.131320pt;}
.y4_c00331{bottom:808.712120pt;}
.y3_c00331{bottom:912.299120pt;}
.y2_c00331{bottom:948.416520pt;}
.h9_c00331{height:5.907804pt;}
.ha_c00331{height:6.751759pt;}
.h23_c00331{height:7.595714pt;}
.h2_c00331{height:20.559000pt;}
.h4_c00331{height:25.698750pt;}
.h6_c00331{height:26.249438pt;}
.hb_c00331{height:29.538549pt;}
.h3_c00331{height:31.572934pt;}
.h17_c00331{height:31.783125pt;}
.h1b_c00331{height:32.070415pt;}
.h1d_c00331{height:32.914370pt;}
.h24_c00331{height:34.201406pt;}
.h5_c00331{height:36.712500pt;}
.h16_c00331{height:37.446750pt;}
.h10_c00331{height:41.118000pt;}
.h18_c00331{height:41.852250pt;}
.h15_c00331{height:55.803000pt;}
.h21_c00331{height:57.822188pt;}
.h1a_c00331{height:58.009875pt;}
.h14_c00331{height:58.923563pt;}
.h1e_c00331{height:60.111562pt;}
.he_c00331{height:61.310059pt;}
.h1f_c00331{height:61.493438pt;}
.h19_c00331{height:62.184375pt;}
.h7_c00331{height:62.436177pt;}
.h1c_c00331{height:62.530016pt;}
.h8_c00331{height:62.702578pt;}
.h12_c00331{height:63.911719pt;}
.h20_c00331{height:65.293594pt;}
.hd_c00331{height:65.628750pt;}
.h13_c00331{height:67.402500pt;}
.hc_c00331{height:67.712048pt;}
.h22_c00331{height:68.112177pt;}
.h11_c00331{height:69.531177pt;}
.hf_c00331{height:85.173184pt;}
.h1_c00331{height:986.666667pt;}
.h0_c00331{height:1122.666667pt;}
.w1_c00331{width:689.333333pt;}
.w0_c00331{width:793.333333pt;}
.x0_c00331{left:0.000000pt;}
.x1_c00331{left:52.000000pt;}
.x1e_c00331{left:87.231453pt;}
.x47_c00331{left:88.155453pt;}
.x4e_c00331{left:90.293853pt;}
.x48_c00331{left:97.316253pt;}
.x3_c00331{left:99.706157pt;}
.x5f_c00331{left:100.633853pt;}
.x39_c00331{left:116.795053pt;}
.x3a_c00331{left:118.093053pt;}
.x3b_c00331{left:119.923453pt;}
.x4_c00331{left:127.473853pt;}
.xc_c00331{left:135.961453pt;}
.x8_c00331{left:137.083453pt;}
.x59_c00331{left:140.022653pt;}
.x3c_c00331{left:145.742653pt;}
.x4f_c00331{left:147.150653pt;}
.x34_c00331{left:155.787853pt;}
.x5a_c00331{left:162.453853pt;}
.x1f_c00331{left:165.005853pt;}
.x3d_c00331{left:166.268653pt;}
.x3e_c00331{left:169.335453pt;}
.x43_c00331{left:175.482253pt;}
.xd_c00331{left:185.492253pt;}
.x67_c00331{left:194.499053pt;}
.xe_c00331{left:195.585853pt;}
.x29_c00331{left:205.279053pt;}
.x9_c00331{left:206.387853pt;}
.x2a_c00331{left:214.466253pt;}
.x44_c00331{left:215.869853pt;}
.x5_c00331{left:220.384253pt;}
.xb_c00331{left:223.552253pt;}
.x35_c00331{left:225.026253pt;}
.x68_c00331{left:235.150653pt;}
.x49_c00331{left:244.707453pt;}
.x5b_c00331{left:247.725853pt;}
.x60_c00331{left:249.265853pt;}
.x2b_c00331{left:253.991453pt;}
.x50_c00331{left:255.469853pt;}
.x45_c00331{left:263.218253pt;}
.x20_c00331{left:264.947453pt;}
.x5c_c00331{left:275.111453pt;}
.xf_c00331{left:283.893853pt;}
.x61_c00331{left:284.901453pt;}
.x21_c00331{left:294.079853pt;}
.x46_c00331{left:302.409053pt;}
.x3f_c00331{left:304.433053pt;}
.x51_c00331{left:309.994653pt;}
.x52_c00331{left:313.620253pt;}
.x10_c00331{left:314.649853pt;}
.x36_c00331{left:322.772253pt;}
.x69_c00331{left:323.907453pt;}
.xa_c00331{left:326.349453pt;}
.x11_c00331{left:334.036253pt;}
.x62_c00331{left:335.857853pt;}
.x12_c00331{left:337.191053pt;}
.x5d_c00331{left:338.550653pt;}
.x22_c00331{left:343.232253pt;}
.x23_c00331{left:352.555853pt;}
.x53_c00331{left:355.759053pt;}
.x63_c00331{left:362.975053pt;}
.x64_c00331{left:371.273453pt;}
.x4a_c00331{left:372.967453pt;}
.x24_c00331{left:382.172253pt;}
.x13_c00331{left:383.109453pt;}
.x14_c00331{left:402.025053pt;}
.x2c_c00331{left:410.825053pt;}
.x54_c00331{left:411.850253pt;}
.x15_c00331{left:417.191853pt;}
.x66_c00331{left:422.445453pt;}
.x16_c00331{left:431.879053pt;}
.x4b_c00331{left:440.019053pt;}
.x25_c00331{left:441.673453pt;}
.x40_c00331{left:451.168653pt;}
.x37_c00331{left:461.156653pt;}
.x17_c00331{left:470.396653pt;}
.x26_c00331{left:471.492253pt;}
.x4c_c00331{left:480.560653pt;}
.x18_c00331{left:481.647453pt;}
.x58_c00331{left:484.300653pt;}
.x27_c00331{left:490.095453pt;}
.x19_c00331{left:500.659853pt;}
.x38_c00331{left:509.701853pt;}
.x55_c00331{left:520.006653pt;}
.x6a_c00331{left:528.771453pt;}
.x2d_c00331{left:530.469853pt;}
.x41_c00331{left:539.648253pt;}
.x2e_c00331{left:549.768253pt;}
.x2_c00331{left:555.580653pt;}
.x42_c00331{left:558.845453pt;}
.x1a_c00331{left:560.205053pt;}
.x5e_c00331{left:568.006253pt;}
.x4d_c00331{left:568.925853pt;}
.x28_c00331{left:570.012653pt;}
.x2f_c00331{left:578.856653pt;}
.x6b_c00331{left:586.574253pt;}
.x1b_c00331{left:589.267053pt;}
.x33_c00331{left:597.952653pt;}
.x65_c00331{left:599.211053pt;}
.x32_c00331{left:608.367453pt;}
.x30_c00331{left:610.079053pt;}
.x1c_c00331{left:618.034253pt;}
.x6c_c00331{left:623.943453pt;}
.x56_c00331{left:627.274253pt;}
.x31_c00331{left:637.812253pt;}
.x6_c00331{left:646.044653pt;}
.x1d_c00331{left:647.967453pt;}
.x57_c00331{left:657.792653pt;}
.x7_c00331{left:674.618253pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6d1c9b328f7bc3d77638fd18.woff2')format("woff");}.ff1_c00332{font-family:ff1_c00332;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00332;src:url('chunks/assets/font_3a40c66db7ad6d98d5e12baf.woff2')format("woff");}.ff2_c00332{font-family:ff2_c00332;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00332;src:url('chunks/assets/font_f0355a4461483440ff8db310.woff2')format("woff");}.ff3_c00332{font-family:ff3_c00332;line-height:0.666000;font-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_c00332{transform:matrix(0.035715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.035715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.035715,0.000000,0.000000,0.250000,0,0);}
.m6c_c00332{transform:matrix(0.050001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050001,0.000000,0.000000,0.250000,0,0);}
.mb9_c00332{transform:matrix(0.053572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053572,0.000000,0.000000,0.250000,0,0);}
.mf_c00332{transform:matrix(0.068183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.068183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.068183,0.000000,0.000000,0.250000,0,0);}
.m6a_c00332{transform:matrix(0.071429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071429,0.000000,0.000000,0.250000,0,0);}
.m24_c00332{transform:matrix(0.072223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072223,0.000000,0.000000,0.250000,0,0);}
.m42_c00332{transform:matrix(0.080883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080883,0.000000,0.000000,0.250000,0,0);}
.m7e_c00332{transform:matrix(0.086503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086503,0.000000,0.000000,0.250000,0,0);}
.md_c00332{transform:matrix(0.098486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098486,0.000000,0.000000,0.250000,0,0);}
.m1d_c00332{transform:matrix(0.102933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102933,0.000000,0.000000,0.250000,0,0);}
.mba_c00332{transform:matrix(0.103572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103572,0.000000,0.000000,0.250000,0,0);}
.m40_c00332{transform:matrix(0.120739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120739,0.000000,0.000000,0.250000,0,0);}
.m22_c00332{transform:matrix(0.129629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129629,0.000000,0.000000,0.250000,0,0);}
.m72_c00332{transform:matrix(0.134631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134631,0.000000,0.000000,0.250000,0,0);}
.m7d_c00332{transform:matrix(0.135196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135196,0.000000,0.000000,0.250000,0,0);}
.mcc_c00332{transform:matrix(0.141667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141667,0.000000,0.000000,0.250000,0,0);}
.m3_c00332{transform:matrix(0.143736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143736,0.000000,0.000000,0.250000,0,0);}
.m6d_c00332{transform:matrix(0.146362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146362,0.000000,0.000000,0.250000,0,0);}
.m96_c00332{transform:matrix(0.147522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147522,0.000000,0.000000,0.250000,0,0);}
.m90_c00332{transform:matrix(0.151014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151014,0.000000,0.000000,0.250000,0,0);}
.m4_c00332{transform:matrix(0.152518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152518,0.000000,0.000000,0.250000,0,0);}
.m20_c00332{transform:matrix(0.152777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152777,0.000000,0.000000,0.250000,0,0);}
.m10_c00332{transform:matrix(0.155303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155303,0.000000,0.000000,0.250000,0,0);}
.mcd_c00332{transform:matrix(0.156249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156249,0.000000,0.000000,0.250000,0,0);}
.m6b_c00332{transform:matrix(0.157142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157142,0.000000,0.000000,0.250000,0,0);}
.mbb_c00332{transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);}
.mbe_c00332{transform:matrix(0.171806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171806,0.000000,0.000000,0.250000,0,0);}
.mca_c00332{transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);}
.m2b_c00332{transform:matrix(0.171913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171913,0.000000,0.000000,0.250000,0,0);}
.m35_c00332{transform:matrix(0.173262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173262,0.000000,0.000000,0.250000,0,0);}
.m23_c00332{transform:matrix(0.173610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173610,0.000000,0.000000,0.250000,0,0);}
.m62_c00332{transform:matrix(0.176987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176987,0.000000,0.000000,0.250000,0,0);}
.mcb_c00332{transform:matrix(0.178125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178125,0.000000,0.000000,0.250000,0,0);}
.mc2_c00332{transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);}
.m41_c00332{transform:matrix(0.183823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183823,0.000000,0.000000,0.250000,0,0);}
.m21_c00332{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00332{transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);}
.mbf_c00332{transform:matrix(0.192866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192866,0.000000,0.000000,0.250000,0,0);}
.mb_c00332{transform:matrix(0.194767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194767,0.000000,0.000000,0.250000,0,0);}
.ma4_c00332{transform:matrix(0.197461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197461,0.000000,0.000000,0.250000,0,0);}
.m65_c00332{transform:matrix(0.202552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202552,0.000000,0.000000,0.250000,0,0);}
.m69_c00332{transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);}
.m1f_c00332{transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);}
.m5e_c00332{transform:matrix(0.209162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209162,0.000000,0.000000,0.250000,0,0);}
.me_c00332{transform:matrix(0.212121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212121,0.000000,0.000000,0.250000,0,0);}
.m43_c00332{transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);}
.m88_c00332{transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);}
.m7a_c00332{transform:matrix(0.217371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217371,0.000000,0.000000,0.250000,0,0);}
.m19_c00332{transform:matrix(0.221800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221800,0.000000,0.000000,0.250000,0,0);}
.m32_c00332{transform:matrix(0.225003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225003,0.000000,0.000000,0.250000,0,0);}
.mc_c00332{transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);}
.mb7_c00332{transform:matrix(0.228572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228572,0.000000,0.000000,0.250000,0,0);}
.m1_c00332{transform:matrix(0.238719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238719,0.000000,0.000000,0.250000,0,0);}
.m7_c00332{transform:matrix(0.238964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238964,0.000000,0.000000,0.250000,0,0);}
.m12_c00332{transform:matrix(0.239587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239587,0.000000,0.000000,0.250000,0,0);}
.m98_c00332{transform:matrix(0.247603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247603,0.000000,0.000000,0.250000,0,0);}
.m0_c00332{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00332{transform:matrix(0.252395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252395,0.000000,0.000000,0.250000,0,0);}
.md4_c00332{transform:matrix(0.254705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254705,0.000000,0.000000,0.250000,0,0);}
.m3c_c00332{transform:matrix(0.255220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255220,0.000000,0.000000,0.250000,0,0);}
.m55_c00332{transform:matrix(0.260128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260128,0.000000,0.000000,0.250000,0,0);}
.m15_c00332{transform:matrix(0.260642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260642,0.000000,0.000000,0.250000,0,0);}
.m5_c00332{transform:matrix(0.260994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260994,0.000000,0.000000,0.250000,0,0);}
.m28_c00332{transform:matrix(0.263468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263468,0.000000,0.000000,0.250000,0,0);}
.m9d_c00332{transform:matrix(0.264138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264138,0.000000,0.000000,0.250000,0,0);}
.m8a_c00332{transform:matrix(0.264682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264682,0.000000,0.000000,0.250000,0,0);}
.m56_c00332{transform:matrix(0.265753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265753,0.000000,0.000000,0.250000,0,0);}
.m51_c00332{transform:matrix(0.268381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268381,0.000000,0.000000,0.250000,0,0);}
.m29_c00332{transform:matrix(0.268626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268626,0.000000,0.000000,0.250000,0,0);}
.m71_c00332{transform:matrix(0.270780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270780,0.000000,0.000000,0.250000,0,0);}
.ma1_c00332{transform:matrix(0.270864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270864,0.000000,0.000000,0.250000,0,0);}
.m9f_c00332{transform:matrix(0.272263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272263,0.000000,0.000000,0.250000,0,0);}
.ma2_c00332{transform:matrix(0.273959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273959,0.000000,0.000000,0.250000,0,0);}
.m58_c00332{transform:matrix(0.274203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274203,0.000000,0.000000,0.250000,0,0);}
.m4f_c00332{transform:matrix(0.275276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275276,0.000000,0.000000,0.250000,0,0);}
.m7f_c00332{transform:matrix(0.275530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275530,0.000000,0.000000,0.250000,0,0);}
.m39_c00332{transform:matrix(0.280106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280106,0.000000,0.000000,0.250000,0,0);}
.m8b_c00332{transform:matrix(0.280441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280441,0.000000,0.000000,0.250000,0,0);}
.m73_c00332{transform:matrix(0.282715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282715,0.000000,0.000000,0.250000,0,0);}
.m92_c00332{transform:matrix(0.282980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282980,0.000000,0.000000,0.250000,0,0);}
.mad_c00332{transform:matrix(0.283046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283046,0.000000,0.000000,0.250000,0,0);}
.m2_c00332{transform:matrix(0.283388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283388,0.000000,0.000000,0.250000,0,0);}
.m6f_c00332{transform:matrix(0.284653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284653,0.000000,0.000000,0.250000,0,0);}
.m36_c00332{transform:matrix(0.285031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285031,0.000000,0.000000,0.250000,0,0);}
.m48_c00332{transform:matrix(0.286107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286107,0.000000,0.000000,0.250000,0,0);}
.m8c_c00332{transform:matrix(0.286502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286502,0.000000,0.000000,0.250000,0,0);}
.mb2_c00332{transform:matrix(0.287382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287382,0.000000,0.000000,0.250000,0,0);}
.m61_c00332{transform:matrix(0.287625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287625,0.000000,0.000000,0.250000,0,0);}
.m1b_c00332{transform:matrix(0.288034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288034,0.000000,0.000000,0.250000,0,0);}
.m44_c00332{transform:matrix(0.290606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290606,0.000000,0.000000,0.250000,0,0);}
.m2e_c00332{transform:matrix(0.291216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291216,0.000000,0.000000,0.250000,0,0);}
.mb4_c00332{transform:matrix(0.292639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292639,0.000000,0.000000,0.250000,0,0);}
.ma6_c00332{transform:matrix(0.293088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293088,0.000000,0.000000,0.250000,0,0);}
.m2c_c00332{transform:matrix(0.293700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293700,0.000000,0.000000,0.250000,0,0);}
.m37_c00332{transform:matrix(0.294104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294104,0.000000,0.000000,0.250000,0,0);}
.m49_c00332{transform:matrix(0.295271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295271,0.000000,0.000000,0.250000,0,0);}
.m99_c00332{transform:matrix(0.295867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295867,0.000000,0.000000,0.250000,0,0);}
.m14_c00332{transform:matrix(0.296588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296588,0.000000,0.000000,0.250000,0,0);}
.md2_c00332{transform:matrix(0.297113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297113,0.000000,0.000000,0.250000,0,0);}
.m34_c00332{transform:matrix(0.298140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298140,0.000000,0.000000,0.250000,0,0);}
.m91_c00332{transform:matrix(0.298512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298512,0.000000,0.000000,0.250000,0,0);}
.ma7_c00332{transform:matrix(0.298557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298557,0.000000,0.000000,0.250000,0,0);}
.m81_c00332{transform:matrix(0.298764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298764,0.000000,0.000000,0.250000,0,0);}
.m27_c00332{transform:matrix(0.298936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298936,0.000000,0.000000,0.250000,0,0);}
.m85_c00332{transform:matrix(0.299505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299505,0.000000,0.000000,0.250000,0,0);}
.m3b_c00332{transform:matrix(0.300039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300039,0.000000,0.000000,0.250000,0,0);}
.m5f_c00332{transform:matrix(0.302188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302188,0.000000,0.000000,0.250000,0,0);}
.md6_c00332{transform:matrix(0.302298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302298,0.000000,0.000000,0.250000,0,0);}
.mc4_c00332{transform:matrix(0.302395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302395,0.000000,0.000000,0.250000,0,0);}
.m60_c00332{transform:matrix(0.303059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303059,0.000000,0.000000,0.250000,0,0);}
.m74_c00332{transform:matrix(0.303195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303195,0.000000,0.000000,0.250000,0,0);}
.mb6_c00332{transform:matrix(0.303251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303251,0.000000,0.000000,0.250000,0,0);}
.m5b_c00332{transform:matrix(0.304190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304190,0.000000,0.000000,0.250000,0,0);}
.ma8_c00332{transform:matrix(0.304255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304255,0.000000,0.000000,0.250000,0,0);}
.m26_c00332{transform:matrix(0.305637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305637,0.000000,0.000000,0.250000,0,0);}
.m54_c00332{transform:matrix(0.306472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306472,0.000000,0.000000,0.250000,0,0);}
.m2a_c00332{transform:matrix(0.307497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307497,0.000000,0.000000,0.250000,0,0);}
.mce_c00332{transform:matrix(0.307599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307599,0.000000,0.000000,0.250000,0,0);}
.m78_c00332{transform:matrix(0.308295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308295,0.000000,0.000000,0.250000,0,0);}
.m5d_c00332{transform:matrix(0.309434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309434,0.000000,0.000000,0.250000,0,0);}
.m4e_c00332{transform:matrix(0.309823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309823,0.000000,0.000000,0.250000,0,0);}
.m50_c00332{transform:matrix(0.310043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310043,0.000000,0.000000,0.250000,0,0);}
.m70_c00332{transform:matrix(0.310178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310178,0.000000,0.000000,0.250000,0,0);}
.m3a_c00332{transform:matrix(0.310498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310498,0.000000,0.000000,0.250000,0,0);}
.m76_c00332{transform:matrix(0.311552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311552,0.000000,0.000000,0.250000,0,0);}
.mae_c00332{transform:matrix(0.311655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311655,0.000000,0.000000,0.250000,0,0);}
.mac_c00332{transform:matrix(0.311697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311697,0.000000,0.000000,0.250000,0,0);}
.m47_c00332{transform:matrix(0.311863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311863,0.000000,0.000000,0.250000,0,0);}
.m13_c00332{transform:matrix(0.314759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314759,0.000000,0.000000,0.250000,0,0);}
.maa_c00332{transform:matrix(0.314863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314863,0.000000,0.000000,0.250000,0,0);}
.m82_c00332{transform:matrix(0.315456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315456,0.000000,0.000000,0.250000,0,0);}
.m8f_c00332{transform:matrix(0.317188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317188,0.000000,0.000000,0.250000,0,0);}
.m11_c00332{transform:matrix(0.318965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318965,0.000000,0.000000,0.250000,0,0);}
.m4d_c00332{transform:matrix(0.319207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319207,0.000000,0.000000,0.250000,0,0);}
.m8_c00332{transform:matrix(0.319305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319305,0.000000,0.000000,0.250000,0,0);}
.m3e_c00332{transform:matrix(0.319398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319398,0.000000,0.000000,0.250000,0,0);}
.m9_c00332{transform:matrix(0.320461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320461,0.000000,0.000000,0.250000,0,0);}
.m5c_c00332{transform:matrix(0.320576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320576,0.000000,0.000000,0.250000,0,0);}
.m97_c00332{transform:matrix(0.321305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321305,0.000000,0.000000,0.250000,0,0);}
.mc1_c00332{transform:matrix(0.322152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322152,0.000000,0.000000,0.250000,0,0);}
.ma9_c00332{transform:matrix(0.322541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322541,0.000000,0.000000,0.250000,0,0);}
.m9e_c00332{transform:matrix(0.323873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323873,0.000000,0.000000,0.250000,0,0);}
.m3d_c00332{transform:matrix(0.324159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324159,0.000000,0.000000,0.250000,0,0);}
.mb0_c00332{transform:matrix(0.324650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324650,0.000000,0.000000,0.250000,0,0);}
.mc6_c00332{transform:matrix(0.325010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325010,0.000000,0.000000,0.250000,0,0);}
.m87_c00332{transform:matrix(0.325229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325229,0.000000,0.000000,0.250000,0,0);}
.m2f_c00332{transform:matrix(0.325601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325601,0.000000,0.000000,0.250000,0,0);}
.m3f_c00332{transform:matrix(0.327773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327773,0.000000,0.000000,0.250000,0,0);}
.m46_c00332{transform:matrix(0.328545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328545,0.000000,0.000000,0.250000,0,0);}
.m1c_c00332{transform:matrix(0.328570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328570,0.000000,0.000000,0.250000,0,0);}
.m5a_c00332{transform:matrix(0.328848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328848,0.000000,0.000000,0.250000,0,0);}
.mc9_c00332{transform:matrix(0.329727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329727,0.000000,0.000000,0.250000,0,0);}
.m93_c00332{transform:matrix(0.330612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330612,0.000000,0.000000,0.250000,0,0);}
.m79_c00332{transform:matrix(0.330766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330766,0.000000,0.000000,0.250000,0,0);}
.m59_c00332{transform:matrix(0.330776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330776,0.000000,0.000000,0.250000,0,0);}
.m4c_c00332{transform:matrix(0.331041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331041,0.000000,0.000000,0.250000,0,0);}
.m1a_c00332{transform:matrix(0.331143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331143,0.000000,0.000000,0.250000,0,0);}
.m68_c00332{transform:matrix(0.331515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331515,0.000000,0.000000,0.250000,0,0);}
.mcf_c00332{transform:matrix(0.331631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331631,0.000000,0.000000,0.250000,0,0);}
.md0_c00332{transform:matrix(0.332014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332014,0.000000,0.000000,0.250000,0,0);}
.maf_c00332{transform:matrix(0.334328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334328,0.000000,0.000000,0.250000,0,0);}
.m57_c00332{transform:matrix(0.335335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335335,0.000000,0.000000,0.250000,0,0);}
.ma0_c00332{transform:matrix(0.336901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336901,0.000000,0.000000,0.250000,0,0);}
.mc3_c00332{transform:matrix(0.337661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337661,0.000000,0.000000,0.250000,0,0);}
.m75_c00332{transform:matrix(0.338282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338282,0.000000,0.000000,0.250000,0,0);}
.m16_c00332{transform:matrix(0.338658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338658,0.000000,0.000000,0.250000,0,0);}
.m45_c00332{transform:matrix(0.340692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340692,0.000000,0.000000,0.250000,0,0);}
.mc5_c00332{transform:matrix(0.341936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341936,0.000000,0.000000,0.250000,0,0);}
.m30_c00332{transform:matrix(0.343255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343255,0.000000,0.000000,0.250000,0,0);}
.m6e_c00332{transform:matrix(0.345010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345010,0.000000,0.000000,0.250000,0,0);}
.m6_c00332{transform:matrix(0.345217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345217,0.000000,0.000000,0.250000,0,0);}
.md3_c00332{transform:matrix(0.345293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345293,0.000000,0.000000,0.250000,0,0);}
.m80_c00332{transform:matrix(0.345369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345369,0.000000,0.000000,0.250000,0,0);}
.m9b_c00332{transform:matrix(0.345549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345549,0.000000,0.000000,0.250000,0,0);}
.m53_c00332{transform:matrix(0.346717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346717,0.000000,0.000000,0.250000,0,0);}
.m95_c00332{transform:matrix(0.347784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347784,0.000000,0.000000,0.250000,0,0);}
.mab_c00332{transform:matrix(0.348980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348980,0.000000,0.000000,0.250000,0,0);}
.mb5_c00332{transform:matrix(0.349231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349231,0.000000,0.000000,0.250000,0,0);}
.m38_c00332{transform:matrix(0.349277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349277,0.000000,0.000000,0.250000,0,0);}
.m25_c00332{transform:matrix(0.349627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349627,0.000000,0.000000,0.250000,0,0);}
.m17_c00332{transform:matrix(0.350709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350709,0.000000,0.000000,0.250000,0,0);}
.m7b_c00332{transform:matrix(0.351406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351406,0.000000,0.000000,0.250000,0,0);}
.ma5_c00332{transform:matrix(0.352727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352727,0.000000,0.000000,0.250000,0,0);}
.md1_c00332{transform:matrix(0.353798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353798,0.000000,0.000000,0.250000,0,0);}
.m8d_c00332{transform:matrix(0.356420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356420,0.000000,0.000000,0.250000,0,0);}
.m52_c00332{transform:matrix(0.357804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357804,0.000000,0.000000,0.250000,0,0);}
.m9a_c00332{transform:matrix(0.357892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357892,0.000000,0.000000,0.250000,0,0);}
.m33_c00332{transform:matrix(0.358036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358036,0.000000,0.000000,0.250000,0,0);}
.mbd_c00332{transform:matrix(0.358645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358645,0.000000,0.000000,0.250000,0,0);}
.m8e_c00332{transform:matrix(0.360995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360995,0.000000,0.000000,0.250000,0,0);}
.ma_c00332{transform:matrix(0.361967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361967,0.000000,0.000000,0.250000,0,0);}
.m84_c00332{transform:matrix(0.364520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364520,0.000000,0.000000,0.250000,0,0);}
.m94_c00332{transform:matrix(0.364667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364667,0.000000,0.000000,0.250000,0,0);}
.mc7_c00332{transform:matrix(0.366447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366447,0.000000,0.000000,0.250000,0,0);}
.m67_c00332{transform:matrix(0.366518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366518,0.000000,0.000000,0.250000,0,0);}
.m2d_c00332{transform:matrix(0.367077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367077,0.000000,0.000000,0.250000,0,0);}
.m89_c00332{transform:matrix(0.368703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368703,0.000000,0.000000,0.250000,0,0);}
.m63_c00332{transform:matrix(0.375942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375942,0.000000,0.000000,0.250000,0,0);}
.m4a_c00332{transform:matrix(0.377997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377997,0.000000,0.000000,0.250000,0,0);}
.m64_c00332{transform:matrix(0.378187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378187,0.000000,0.000000,0.250000,0,0);}
.m7c_c00332{transform:matrix(0.381550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381550,0.000000,0.000000,0.250000,0,0);}
.mc8_c00332{transform:matrix(0.383665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383665,0.000000,0.000000,0.250000,0,0);}
.m4b_c00332{transform:matrix(0.384266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384266,0.000000,0.000000,0.250000,0,0);}
.m86_c00332{transform:matrix(0.386022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386022,0.000000,0.000000,0.250000,0,0);}
.m18_c00332{transform:matrix(0.388584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388584,0.000000,0.000000,0.250000,0,0);}
.mb3_c00332{transform:matrix(0.389269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389269,0.000000,0.000000,0.250000,0,0);}
.m83_c00332{transform:matrix(0.391036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391036,0.000000,0.000000,0.250000,0,0);}
.mb1_c00332{transform:matrix(0.393444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393444,0.000000,0.000000,0.250000,0,0);}
.m31_c00332{transform:matrix(0.395330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395330,0.000000,0.000000,0.250000,0,0);}
.m9c_c00332{transform:matrix(0.411239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411239,0.000000,0.000000,0.250000,0,0);}
.ma3_c00332{transform:matrix(0.414553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414553,0.000000,0.000000,0.250000,0,0);}
.m66_c00332{transform:matrix(0.422091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422091,0.000000,0.000000,0.250000,0,0);}
.md5_c00332{transform:matrix(0.442577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442577,0.000000,0.000000,0.250000,0,0);}
.mc0_c00332{transform:matrix(0.471095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471095,0.000000,0.000000,0.250000,0,0);}
.m77_c00332{transform:matrix(0.472954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472954,0.000000,0.000000,0.250000,0,0);}
.v0_c00332{vertical-align:0.000000px;}
.v1_c00332{vertical-align:1.445400px;}
.lsa_c00332{letter-spacing:-2.508667px;}
.ls8_c00332{letter-spacing:-2.342340px;}
.lsf_c00332{letter-spacing:-2.176020px;}
.lsd_c00332{letter-spacing:-1.704780px;}
.ls18_c00332{letter-spacing:-1.284466px;}
.ls17_c00332{letter-spacing:-1.053640px;}
.ls14_c00332{letter-spacing:-0.829699px;}
.ls15_c00332{letter-spacing:-0.034096px;}
.ls7_c00332{letter-spacing:0.000000px;}
.ls3_c00332{letter-spacing:0.824276px;}
.ls16_c00332{letter-spacing:1.841400px;}
.ls12_c00332{letter-spacing:2.336400px;}
.ls1_c00332{letter-spacing:2.673522px;}
.ls1a_c00332{letter-spacing:2.938724px;}
.ls10_c00332{letter-spacing:3.108600px;}
.ls6_c00332{letter-spacing:3.304273px;}
.ls1b_c00332{letter-spacing:3.326400px;}
.ls13_c00332{letter-spacing:3.573900px;}
.ls9_c00332{letter-spacing:3.583810px;}
.ls4_c00332{letter-spacing:4.261950px;}
.ls2_c00332{letter-spacing:21.932999px;}
.ls0_c00332{letter-spacing:23.438184px;}
.lsb_c00332{letter-spacing:47.044800px;}
.lse_c00332{letter-spacing:48.470598px;}
.ls11_c00332{letter-spacing:49.896198px;}
.lsc_c00332{letter-spacing:51.321798px;}
.ls19_c00332{letter-spacing:57.024198px;}
.ls5_c00332{letter-spacing:1699.445088px;}
.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;}
}
.ws13_c00332{word-spacing:-21.223322px;}
.ws1_c00332{word-spacing:-20.592572px;}
.ws9_c00332{word-spacing:-18.743326px;}
.ws0_c00332{word-spacing:-17.919050px;}
.ws7_c00332{word-spacing:-17.283816px;}
.ws2_c00332{word-spacing:-4.085471px;}
.wsf_c00332{word-spacing:-4.013785px;}
.wsb_c00332{word-spacing:-3.942131px;}
.wsd_c00332{word-spacing:-3.583729px;}
.ws16_c00332{word-spacing:-2.938865px;}
.wsa_c00332{word-spacing:-1.791817px;}
.ws10_c00332{word-spacing:-1.146745px;}
.ws18_c00332{word-spacing:0.000000px;}
.wsc_c00332{word-spacing:1.146711px;}
.ws14_c00332{word-spacing:3.153629px;}
.wse_c00332{word-spacing:3.368657px;}
.ws3_c00332{word-spacing:4.013751px;}
.ws8_c00332{word-spacing:6.093147px;}
.ws11_c00332{word-spacing:6.235707px;}
.ws5_c00332{word-spacing:6.235905px;}
.ws4_c00332{word-spacing:6.952621px;}
.ws17_c00332{word-spacing:7.239567px;}
.ws6_c00332{word-spacing:7.382721px;}
.ws15_c00332{word-spacing:8.744367px;}
.ws12_c00332{word-spacing:8.887907px;}
._c_c00332{margin-left:-16.354800px;}
._28_c00332{margin-left:-14.023329px;}
._1_c00332{margin-left:-11.898359px;}
._11_c00332{margin-left:-10.823126px;}
._25_c00332{margin-left:-7.525672px;}
._4_c00332{margin-left:-6.450796px;}
._2_c00332{margin-left:-4.228920px;}
._1c_c00332{margin-left:-3.153062px;}
._14_c00332{margin-left:-1.039377px;}
._1b_c00332{width:2.162441px;}
._a_c00332{width:3.367881px;}
._1a_c00332{width:4.874661px;}
._7_c00332{width:5.877344px;}
._18_c00332{width:7.271247px;}
._12_c00332{width:8.282456px;}
._0_c00332{width:9.533018px;}
._22_c00332{width:10.608972px;}
._5_c00332{width:11.611424px;}
._8_c00332{width:13.403511px;}
._21_c00332{width:15.074736px;}
._b_c00332{width:16.127001px;}
._27_c00332{width:17.170302px;}
._1f_c00332{width:19.030460px;}
._6_c00332{width:21.144552px;}
._23_c00332{width:22.363044px;}
._16_c00332{width:23.366288px;}
._1e_c00332{width:24.370577px;}
._15_c00332{width:25.875168px;}
._26_c00332{width:27.196202px;}
._13_c00332{width:28.559052px;}
._1d_c00332{width:31.085851px;}
._3_c00332{width:33.515719px;}
._f_c00332{width:35.224051px;}
._10_c00332{width:36.339980px;}
._20_c00332{width:37.455521px;}
._9_c00332{width:38.633425px;}
._29_c00332{width:40.354050px;}
._17_c00332{width:42.146181px;}
._24_c00332{width:44.203384px;}
._19_c00332{width:45.697735px;}
._e_c00332{width:47.665227px;}
._d_c00332{width:1063.339200px;}
.fc0_c00332{color:transparent;}
.fs0_c00332{font-size:22.176000px;}
.fse_c00332{font-size:24.354000px;}
.fsf_c00332{font-size:32.472000px;}
.fs11_c00332{font-size:36.828000px;}
.fs10_c00332{font-size:37.818000px;}
.fsd_c00332{font-size:38.412000px;}
.fs1_c00332{font-size:39.600000px;}
.fs15_c00332{font-size:40.392000px;}
.fs14_c00332{font-size:45.144000px;}
.fsb_c00332{font-size:46.728000px;}
.fs5_c00332{font-size:47.044800px;}
.fs8_c00332{font-size:48.470598px;}
.fs7_c00332{font-size:48.708000px;}
.fsa_c00332{font-size:49.896198px;}
.fs17_c00332{font-size:50.688000px;}
.fs6_c00332{font-size:51.321798px;}
.fs16_c00332{font-size:57.024198px;}
.fs4_c00332{font-size:58.410000px;}
.fs9_c00332{font-size:62.172000px;}
.fs18_c00332{font-size:66.528000px;}
.fs2_c00332{font-size:66.924000px;}
.fsc_c00332{font-size:71.478000px;}
.fs3_c00332{font-size:71.676198px;}
.fs12_c00332{font-size:72.864000px;}
.fs13_c00332{font-size:76.032198px;}
.y0_c00332{bottom:0.000000px;}
.y28_c00332{bottom:51.065985px;}
.y1_c00332{bottom:69.000000px;}
.y26_c00332{bottom:155.134785px;}
.y27_c00332{bottom:165.475335px;}
.y25_c00332{bottom:187.928535px;}
.y24_c00332{bottom:222.499335px;}
.y23_c00332{bottom:246.378135px;}
.y22_c00332{bottom:253.501185px;}
.y21_c00332{bottom:285.938535px;}
.y20_c00332{bottom:309.817335px;}
.y1f_c00332{bottom:318.365985px;}
.y1e_c00332{bottom:342.601185px;}
.y1d_c00332{bottom:350.446935px;}
.y1b_c00332{bottom:382.522935px;}
.y1c_c00332{bottom:382.874385px;}
.y1a_c00332{bottom:388.581735px;}
.y19_c00332{bottom:409.965735px;}
.y18_c00332{bottom:415.311735px;}
.y17_c00332{bottom:448.095585px;}
.y16_c00332{bottom:512.608935px;}
.y15_c00332{bottom:546.466935px;}
.y14_c00332{bottom:546.474855px;}
.y13_c00332{bottom:579.607185px;}
.y12_c00332{bottom:612.395985px;}
.y11_c00332{bottom:646.610385px;}
.y10_c00332{bottom:662.296935px;}
.yf_c00332{bottom:678.334935px;}
.ye_c00332{bottom:743.194785px;}
.yd_c00332{bottom:775.627185px;}
.yc_c00332{bottom:775.635105px;}
.yb_c00332{bottom:807.351735px;}
.ya_c00332{bottom:833.720385px;}
.y9_c00332{bottom:840.140535px;}
.y8_c00332{bottom:873.285735px;}
.y7_c00332{bottom:905.000385px;}
.y5_c00332{bottom:936.363585px;}
.y6_c00332{bottom:936.724935px;}
.y4_c00332{bottom:937.081335px;}
.y3_c00332{bottom:952.401585px;}
.y2_c00332{bottom:998.025735px;}
.h2_c00332{height:23.128875px;}
.h7_c00332{height:31.331837px;}
.ha_c00332{height:32.281418px;}
.hc_c00332{height:33.230868px;}
.h10_c00332{height:33.867281px;}
.h8_c00332{height:34.180317px;}
.h12_c00332{height:36.144668px;}
.hf_c00332{height:37.699277px;}
.h15_c00332{height:37.978116px;}
.h11_c00332{height:39.442992px;}
.h3_c00332{height:41.301563px;}
.hd_c00332{height:45.860977px;}
.h14_c00332{height:47.083781px;}
.h9_c00332{height:47.804238px;}
.h16_c00332{height:52.866000px;}
.hb_c00332{height:64.843453px;}
.h17_c00332{height:65.293594px;}
.h4_c00332{height:65.682246px;}
.he_c00332{height:70.151748px;}
.h5_c00332{height:70.346269px;}
.h6_c00332{height:71.791669px;}
.h13_c00332{height:79.299207px;}
.h1_c00332{height:1125.000000px;}
.h0_c00332{height:1263.000000px;}
.w1_c00332{width:796.500000px;}
.w0_c00332{width:892.500000px;}
.x0_c00332{left:0.000000px;}
.x1_c00332{left:48.000000px;}
.x3e_c00332{left:102.937935px;}
.x15_c00332{left:104.596185px;}
.x79_c00332{left:105.640635px;}
.x74_c00332{left:108.452235px;}
.x16_c00332{left:113.659635px;}
.x46_c00332{left:114.892185px;}
.x75_c00332{left:116.416785px;}
.x3f_c00332{left:126.618735px;}
.x65_c00332{left:135.939585px;}
.x2a_c00332{left:137.157285px;}
.x89_c00332{left:139.003635px;}
.x5d_c00332{left:146.968185px;}
.x33_c00332{left:148.081935px;}
.x6c_c00332{left:156.793935px;}
.x4_c00332{left:159.541185px;}
.x4d_c00332{left:161.135085px;}
.x53_c00332{left:168.188835px;}
.x5_c00332{left:170.163885px;}
.x66_c00332{left:171.470685px;}
.x5e_c00332{left:179.954985px;}
.x34_c00332{left:181.192485px;}
.x68_c00332{left:185.409885px;}
.x5f_c00332{left:190.295535px;}
.x6_c00332{left:191.681535px;}
.x3d_c00332{left:202.274535px;}
.x35_c00332{left:204.328785px;}
.x36_c00332{left:208.338285px;}
.x4e_c00332{left:213.634785px;}
.x76_c00332{left:217.624485px;}
.x77_c00332{left:222.718035px;}
.x7a_c00332{left:224.524785px;}
.x17_c00332{left:225.777135px;}
.x7_c00332{left:226.999785px;}
.x47_c00332{left:231.533985px;}
.x60_c00332{left:232.702185px;}
.x7b_c00332{left:235.870185px;}
.x8_c00332{left:237.176985px;}
.x5a_c00332{left:240.379635px;}
.x78_c00332{left:244.443585px;}
.x54_c00332{left:246.567135px;}
.x9_c00332{left:247.908585px;}
.x61_c00332{left:257.892735px;}
.x18_c00332{left:259.437135px;}
.x80_c00332{left:266.832435px;}
.x62_c00332{left:268.639185px;}
.x19_c00332{left:269.772735px;}
.xa_c00332{left:270.995385px;}
.x48_c00332{left:278.682735px;}
.x81_c00332{left:280.024185px;}
.x1a_c00332{left:281.177535px;}
.x4f_c00332{left:290.458785px;}
.x11_c00332{left:291.547785px;}
.x71_c00332{left:294.101985px;}
.x69_c00332{left:301.724985px;}
.xb_c00332{left:303.071385px;}
.x37_c00332{left:310.595385px;}
.x2b_c00332{left:313.332735px;}
.x40_c00332{left:314.783085px;}
.x1b_c00332{left:324.301935px;}
.xc_c00332{left:325.475085px;}
.x7c_c00332{left:334.627635px;}
.x50_c00332{left:336.216585px;}
.x1c_c00332{left:342.453585px;}
.xd_c00332{left:347.987685px;}
.x51_c00332{left:357.956985px;}
.x1d_c00332{left:359.328135px;}
.x49_c00332{left:368.921235px;}
.x2c_c00332{left:370.034985px;}
.x6a_c00332{left:380.063685px;}
.x52_c00332{left:390.201285px;}
.x1e_c00332{left:391.834785px;}
.x1f_c00332{left:401.804085px;}
.x6d_c00332{left:402.863385px;}
.x2d_c00332{left:410.100285px;}
.x4a_c00332{left:413.000985px;}
.x20_c00332{left:414.218685px;}
.x41_c00332{left:424.242435px;}
.x2e_c00332{left:434.335485px;}
.x21_c00332{left:438.057885px;}
.x55_c00332{left:445.908585px;}
.x42_c00332{left:447.428235px;}
.x5b_c00332{left:457.412385px;}
.x2f_c00332{left:458.506335px;}
.x30_c00332{left:468.287535px;}
.x6b_c00332{left:469.421085px;}
.x6e_c00332{left:479.613135px;}
.xe_c00332{left:481.281285px;}
.x22_c00332{left:490.018035px;}
.x3_c00332{left:492.250485px;}
.xf_c00332{left:502.249485px;}
.x63_c00332{left:512.075235px;}
.x7d_c00332{left:513.703785px;}
.x82_c00332{left:520.589235px;}
.x10_c00332{left:524.415585px;}
.x43_c00332{left:525.445185px;}
.x86_c00332{left:534.731385px;}
.x23_c00332{left:535.810485px;}
.x8a_c00332{left:537.082635px;}
.x83_c00332{left:544.616535px;}
.x44_c00332{left:546.052035px;}
.x5c_c00332{left:549.487335px;}
.x24_c00332{left:556.630185px;}
.x31_c00332{left:567.896385px;}
.x4b_c00332{left:568.916085px;}
.x87_c00332{left:578.019135px;}
.x56_c00332{left:579.617985px;}
.x72_c00332{left:589.423935px;}
.x25_c00332{left:590.696085px;}
.x4c_c00332{left:600.833685px;}
.x32_c00332{left:602.036535px;}
.x6f_c00332{left:610.837635px;}
.x38_c00332{left:612.792885px;}
.x12_c00332{left:623.633385px;}
.x7e_c00332{left:633.236385px;}
.x57_c00332{left:634.459035px;}
.x39_c00332{left:644.314485px;}
.x26_c00332{left:645.700485px;}
.x8c_c00332{left:652.655235px;}
.x3a_c00332{left:655.709385px;}
.x7f_c00332{left:667.307235px;}
.x13_c00332{left:668.317035px;}
.x3b_c00332{left:675.331185px;}
.x88_c00332{left:676.781535px;}
.x3c_c00332{left:679.009035px;}
.x84_c00332{left:680.043585px;}
.x45_c00332{left:689.428785px;}
.x27_c00332{left:690.488085px;}
.x2_c00332{left:692.017635px;}
.x67_c00332{left:695.527185px;}
.x85_c00332{left:699.546585px;}
.x28_c00332{left:700.576185px;}
.x8b_c00332{left:702.838335px;}
.x58_c00332{left:710.233635px;}
.x14_c00332{left:711.292935px;}
.x64_c00332{left:712.545285px;}
.x59_c00332{left:722.866035px;}
.x73_c00332{left:733.226385px;}
.x29_c00332{left:734.325285px;}
.x70_c00332{left:744.943035px;}
@media print{
.v0_c00332{vertical-align:0.000000pt;}
.v1_c00332{vertical-align:1.284800pt;}
.lsa_c00332{letter-spacing:-2.229926pt;}
.ls8_c00332{letter-spacing:-2.082080pt;}
.lsf_c00332{letter-spacing:-1.934240pt;}
.lsd_c00332{letter-spacing:-1.515360pt;}
.ls18_c00332{letter-spacing:-1.141747pt;}
.ls17_c00332{letter-spacing:-0.936569pt;}
.ls14_c00332{letter-spacing:-0.737510pt;}
.ls15_c00332{letter-spacing:-0.030307pt;}
.ls7_c00332{letter-spacing:0.000000pt;}
.ls3_c00332{letter-spacing:0.732690pt;}
.ls16_c00332{letter-spacing:1.636800pt;}
.ls12_c00332{letter-spacing:2.076800pt;}
.ls1_c00332{letter-spacing:2.376464pt;}
.ls1a_c00332{letter-spacing:2.612199pt;}
.ls10_c00332{letter-spacing:2.763200pt;}
.ls6_c00332{letter-spacing:2.937131pt;}
.ls1b_c00332{letter-spacing:2.956800pt;}
.ls13_c00332{letter-spacing:3.176800pt;}
.ls9_c00332{letter-spacing:3.185609pt;}
.ls4_c00332{letter-spacing:3.788400pt;}
.ls2_c00332{letter-spacing:19.495999pt;}
.ls0_c00332{letter-spacing:20.833941pt;}
.lsb_c00332{letter-spacing:41.817600pt;}
.lse_c00332{letter-spacing:43.084976pt;}
.ls11_c00332{letter-spacing:44.352176pt;}
.lsc_c00332{letter-spacing:45.619376pt;}
.ls19_c00332{letter-spacing:50.688176pt;}
.ls5_c00332{letter-spacing:1510.617856pt;}
.ws13_c00332{word-spacing:-18.865175pt;}
.ws1_c00332{word-spacing:-18.304508pt;}
.ws9_c00332{word-spacing:-16.660734pt;}
.ws0_c00332{word-spacing:-15.928044pt;}
.ws7_c00332{word-spacing:-15.363392pt;}
.ws2_c00332{word-spacing:-3.631530pt;}
.wsf_c00332{word-spacing:-3.567808pt;}
.wsb_c00332{word-spacing:-3.504116pt;}
.wsd_c00332{word-spacing:-3.185536pt;}
.ws16_c00332{word-spacing:-2.612324pt;}
.wsa_c00332{word-spacing:-1.592727pt;}
.ws10_c00332{word-spacing:-1.019328pt;}
.ws18_c00332{word-spacing:0.000000pt;}
.wsc_c00332{word-spacing:1.019299pt;}
.ws14_c00332{word-spacing:2.803225pt;}
.wse_c00332{word-spacing:2.994361pt;}
.ws3_c00332{word-spacing:3.567779pt;}
.ws8_c00332{word-spacing:5.416131pt;}
.ws11_c00332{word-spacing:5.542851pt;}
.ws5_c00332{word-spacing:5.543027pt;}
.ws4_c00332{word-spacing:6.180108pt;}
.ws17_c00332{word-spacing:6.435171pt;}
.ws6_c00332{word-spacing:6.562419pt;}
.ws15_c00332{word-spacing:7.772771pt;}
.ws12_c00332{word-spacing:7.900361pt;}
._c_c00332{margin-left:-14.537600pt;}
._28_c00332{margin-left:-12.465182pt;}
._1_c00332{margin-left:-10.576319pt;}
._11_c00332{margin-left:-9.620556pt;}
._25_c00332{margin-left:-6.689486pt;}
._4_c00332{margin-left:-5.734041pt;}
._2_c00332{margin-left:-3.759040pt;}
._1c_c00332{margin-left:-2.802722pt;}
._14_c00332{margin-left:-0.923891pt;}
._1b_c00332{width:1.922170pt;}
._a_c00332{width:2.993672pt;}
._1a_c00332{width:4.333032pt;}
._7_c00332{width:5.224306pt;}
._18_c00332{width:6.463331pt;}
._12_c00332{width:7.362183pt;}
._0_c00332{width:8.473794pt;}
._22_c00332{width:9.430197pt;}
._5_c00332{width:10.321266pt;}
._8_c00332{width:11.914232pt;}
._21_c00332{width:13.399765pt;}
._b_c00332{width:14.335112pt;}
._27_c00332{width:15.262490pt;}
._1f_c00332{width:16.915965pt;}
._6_c00332{width:18.795157pt;}
._23_c00332{width:19.878261pt;}
._16_c00332{width:20.770034pt;}
._1e_c00332{width:21.662735pt;}
._15_c00332{width:23.000149pt;}
._26_c00332{width:24.174402pt;}
._13_c00332{width:25.385824pt;}
._1d_c00332{width:27.631868pt;}
._3_c00332{width:29.791750pt;}
._f_c00332{width:31.310268pt;}
._10_c00332{width:32.302204pt;}
._20_c00332{width:33.293796pt;}
._9_c00332{width:34.340822pt;}
._29_c00332{width:35.870267pt;}
._17_c00332{width:37.463272pt;}
._24_c00332{width:39.291897pt;}
._19_c00332{width:40.620209pt;}
._e_c00332{width:42.369091pt;}
._d_c00332{width:945.190400pt;}
.fs0_c00332{font-size:19.712000pt;}
.fse_c00332{font-size:21.648000pt;}
.fsf_c00332{font-size:28.864000pt;}
.fs11_c00332{font-size:32.736000pt;}
.fs10_c00332{font-size:33.616000pt;}
.fsd_c00332{font-size:34.144000pt;}
.fs1_c00332{font-size:35.200000pt;}
.fs15_c00332{font-size:35.904000pt;}
.fs14_c00332{font-size:40.128000pt;}
.fsb_c00332{font-size:41.536000pt;}
.fs5_c00332{font-size:41.817600pt;}
.fs8_c00332{font-size:43.084976pt;}
.fs7_c00332{font-size:43.296000pt;}
.fsa_c00332{font-size:44.352176pt;}
.fs17_c00332{font-size:45.056000pt;}
.fs6_c00332{font-size:45.619376pt;}
.fs16_c00332{font-size:50.688176pt;}
.fs4_c00332{font-size:51.920000pt;}
.fs9_c00332{font-size:55.264000pt;}
.fs18_c00332{font-size:59.136000pt;}
.fs2_c00332{font-size:59.488000pt;}
.fsc_c00332{font-size:63.536000pt;}
.fs3_c00332{font-size:63.712176pt;}
.fs12_c00332{font-size:64.768000pt;}
.fs13_c00332{font-size:67.584176pt;}
.y0_c00332{bottom:0.000000pt;}
.y28_c00332{bottom:45.391987pt;}
.y1_c00332{bottom:61.333333pt;}
.y26_c00332{bottom:137.897587pt;}
.y27_c00332{bottom:147.089187pt;}
.y25_c00332{bottom:167.047587pt;}
.y24_c00332{bottom:197.777187pt;}
.y23_c00332{bottom:219.002787pt;}
.y22_c00332{bottom:225.334387pt;}
.y21_c00332{bottom:254.167587pt;}
.y20_c00332{bottom:275.393187pt;}
.y1f_c00332{bottom:282.991987pt;}
.y1e_c00332{bottom:304.534387pt;}
.y1d_c00332{bottom:311.508387pt;}
.y1b_c00332{bottom:340.020387pt;}
.y1c_c00332{bottom:340.332787pt;}
.y1a_c00332{bottom:345.405987pt;}
.y19_c00332{bottom:364.413987pt;}
.y18_c00332{bottom:369.165987pt;}
.y17_c00332{bottom:398.307187pt;}
.y16_c00332{bottom:455.652387pt;}
.y15_c00332{bottom:485.748387pt;}
.y14_c00332{bottom:485.755427pt;}
.y13_c00332{bottom:515.206387pt;}
.y12_c00332{bottom:544.351987pt;}
.y11_c00332{bottom:574.764787pt;}
.y10_c00332{bottom:588.708387pt;}
.yf_c00332{bottom:602.964387pt;}
.ye_c00332{bottom:660.617587pt;}
.yd_c00332{bottom:689.446387pt;}
.yc_c00332{bottom:689.453427pt;}
.yb_c00332{bottom:717.645987pt;}
.ya_c00332{bottom:741.084787pt;}
.y9_c00332{bottom:746.791587pt;}
.y8_c00332{bottom:776.253987pt;}
.y7_c00332{bottom:804.444787pt;}
.y5_c00332{bottom:832.323187pt;}
.y6_c00332{bottom:832.644387pt;}
.y4_c00332{bottom:832.961187pt;}
.y3_c00332{bottom:846.579187pt;}
.y2_c00332{bottom:887.133987pt;}
.h2_c00332{height:20.559000pt;}
.h7_c00332{height:27.850522pt;}
.ha_c00332{height:28.694594pt;}
.hc_c00332{height:29.538549pt;}
.h10_c00332{height:30.104250pt;}
.h8_c00332{height:30.382504pt;}
.h12_c00332{height:32.128594pt;}
.hf_c00332{height:33.510469pt;}
.h15_c00332{height:33.758325pt;}
.h11_c00332{height:35.060438pt;}
.h3_c00332{height:36.712500pt;}
.hd_c00332{height:40.765313pt;}
.h14_c00332{height:41.852250pt;}
.h9_c00332{height:42.492656pt;}
.h16_c00332{height:46.992000pt;}
.hb_c00332{height:57.638625pt;}
.h17_c00332{height:58.038750pt;}
.h4_c00332{height:58.384219pt;}
.he_c00332{height:62.357109pt;}
.h5_c00332{height:62.530016pt;}
.h6_c00332{height:63.814816pt;}
.h13_c00332{height:70.488184pt;}
.h1_c00332{height:1000.000000pt;}
.h0_c00332{height:1122.666667pt;}
.w1_c00332{width:708.000000pt;}
.w0_c00332{width:793.333333pt;}
.x0_c00332{left:0.000000pt;}
.x1_c00332{left:42.666667pt;}
.x3e_c00332{left:91.500387pt;}
.x15_c00332{left:92.974387pt;}
.x79_c00332{left:93.902787pt;}
.x74_c00332{left:96.401987pt;}
.x16_c00332{left:101.030787pt;}
.x46_c00332{left:102.126387pt;}
.x75_c00332{left:103.481587pt;}
.x3f_c00332{left:112.549987pt;}
.x65_c00332{left:120.835187pt;}
.x2a_c00332{left:121.917587pt;}
.x89_c00332{left:123.558787pt;}
.x5d_c00332{left:130.638387pt;}
.x33_c00332{left:131.628387pt;}
.x6c_c00332{left:139.372387pt;}
.x4_c00332{left:141.814387pt;}
.x4d_c00332{left:143.231187pt;}
.x53_c00332{left:149.501187pt;}
.x5_c00332{left:151.256787pt;}
.x66_c00332{left:152.418387pt;}
.x5e_c00332{left:159.959987pt;}
.x34_c00332{left:161.059987pt;}
.x68_c00332{left:164.808787pt;}
.x5f_c00332{left:169.151587pt;}
.x6_c00332{left:170.383587pt;}
.x3d_c00332{left:179.799587pt;}
.x35_c00332{left:181.625587pt;}
.x36_c00332{left:185.189587pt;}
.x4e_c00332{left:189.897587pt;}
.x76_c00332{left:193.443987pt;}
.x77_c00332{left:197.971587pt;}
.x7a_c00332{left:199.577587pt;}
.x17_c00332{left:200.690787pt;}
.x7_c00332{left:201.777587pt;}
.x47_c00332{left:205.807987pt;}
.x60_c00332{left:206.846387pt;}
.x7b_c00332{left:209.662387pt;}
.x8_c00332{left:210.823987pt;}
.x5a_c00332{left:213.670787pt;}
.x78_c00332{left:217.283187pt;}
.x54_c00332{left:219.170787pt;}
.x9_c00332{left:220.363187pt;}
.x61_c00332{left:229.237987pt;}
.x18_c00332{left:230.610787pt;}
.x80_c00332{left:237.184387pt;}
.x62_c00332{left:238.790387pt;}
.x19_c00332{left:239.797987pt;}
.xa_c00332{left:240.884787pt;}
.x48_c00332{left:247.717987pt;}
.x81_c00332{left:248.910387pt;}
.x1a_c00332{left:249.935587pt;}
.x4f_c00332{left:258.185587pt;}
.x11_c00332{left:259.153587pt;}
.x71_c00332{left:261.423987pt;}
.x69_c00332{left:268.199987pt;}
.xb_c00332{left:269.396787pt;}
.x37_c00332{left:276.084787pt;}
.x2b_c00332{left:278.517987pt;}
.x40_c00332{left:279.807187pt;}
.x1b_c00332{left:288.268387pt;}
.xc_c00332{left:289.311187pt;}
.x7c_c00332{left:297.446787pt;}
.x50_c00332{left:298.859187pt;}
.x1c_c00332{left:304.403187pt;}
.xd_c00332{left:309.322387pt;}
.x51_c00332{left:318.183987pt;}
.x1d_c00332{left:319.402787pt;}
.x49_c00332{left:327.929987pt;}
.x2c_c00332{left:328.919987pt;}
.x6a_c00332{left:337.834387pt;}
.x52_c00332{left:346.845587pt;}
.x1e_c00332{left:348.297587pt;}
.x1f_c00332{left:357.159187pt;}
.x6d_c00332{left:358.100787pt;}
.x2d_c00332{left:364.533587pt;}
.x4a_c00332{left:367.111987pt;}
.x20_c00332{left:368.194387pt;}
.x41_c00332{left:377.104387pt;}
.x2e_c00332{left:386.075987pt;}
.x21_c00332{left:389.384787pt;}
.x55_c00332{left:396.363187pt;}
.x42_c00332{left:397.713987pt;}
.x5b_c00332{left:406.588787pt;}
.x2f_c00332{left:407.561187pt;}
.x30_c00332{left:416.255587pt;}
.x6b_c00332{left:417.263187pt;}
.x6e_c00332{left:426.322787pt;}
.xe_c00332{left:427.805587pt;}
.x22_c00332{left:435.571587pt;}
.x3_c00332{left:437.555987pt;}
.xf_c00332{left:446.443987pt;}
.x63_c00332{left:455.177987pt;}
.x7d_c00332{left:456.625587pt;}
.x82_c00332{left:462.745987pt;}
.x10_c00332{left:466.147187pt;}
.x43_c00332{left:467.062387pt;}
.x86_c00332{left:475.316787pt;}
.x23_c00332{left:476.275987pt;}
.x8a_c00332{left:477.406787pt;}
.x83_c00332{left:484.103587pt;}
.x44_c00332{left:485.379587pt;}
.x5c_c00332{left:488.433187pt;}
.x24_c00332{left:494.782387pt;}
.x31_c00332{left:504.796787pt;}
.x4b_c00332{left:505.703187pt;}
.x87_c00332{left:513.794787pt;}
.x56_c00332{left:515.215987pt;}
.x72_c00332{left:523.932387pt;}
.x25_c00332{left:525.063187pt;}
.x4c_c00332{left:534.074387pt;}
.x32_c00332{left:535.143587pt;}
.x6f_c00332{left:542.966787pt;}
.x38_c00332{left:544.704787pt;}
.x12_c00332{left:554.340787pt;}
.x7e_c00332{left:562.876787pt;}
.x57_c00332{left:563.963587pt;}
.x39_c00332{left:572.723987pt;}
.x26_c00332{left:573.955987pt;}
.x8c_c00332{left:580.137987pt;}
.x3a_c00332{left:582.852787pt;}
.x7f_c00332{left:593.161987pt;}
.x13_c00332{left:594.059587pt;}
.x3b_c00332{left:600.294387pt;}
.x88_c00332{left:601.583587pt;}
.x3c_c00332{left:603.563587pt;}
.x84_c00332{left:604.483187pt;}
.x45_c00332{left:612.825587pt;}
.x27_c00332{left:613.767187pt;}
.x2_c00332{left:615.126787pt;}
.x67_c00332{left:618.246387pt;}
.x85_c00332{left:621.819187pt;}
.x28_c00332{left:622.734387pt;}
.x8b_c00332{left:624.745187pt;}
.x58_c00332{left:631.318787pt;}
.x14_c00332{left:632.260387pt;}
.x64_c00332{left:633.373587pt;}
.x59_c00332{left:642.547587pt;}
.x73_c00332{left:651.756787pt;}
.x29_c00332{left:652.733587pt;}
.x70_c00332{left:662.171587pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_13692f7560ba86890af4784f.woff2')format("woff");}.ff1_c00333{font-family:ff1_c00333;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00333;src:url('chunks/assets/font_df688057acc994e7a2240bd3.woff2')format("woff");}.ff2_c00333{font-family:ff2_c00333;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00333;src:url('chunks/assets/font_bf86d1c630e0320ed17e090f.woff2')format("woff");}.ff3_c00333{font-family:ff3_c00333;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00333;src:url('chunks/assets/font_5552edfcb5fef893426ed1a2.woff2')format("woff");}.ff4_c00333{font-family:ff4_c00333;line-height:0.666000;font-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_c00333{transform:matrix(0.019738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.019738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.019738,0.000000,0.000000,0.250000,0,0);}
.mde_c00333{transform:matrix(0.052632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.052632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.052632,0.000000,0.000000,0.250000,0,0);}
.m56_c00333{transform:matrix(0.066666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066666,0.000000,0.000000,0.250000,0,0);}
.m8d_c00333{transform:matrix(0.083660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083660,0.000000,0.000000,0.250000,0,0);}
.m47_c00333{transform:matrix(0.099806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099806,0.000000,0.000000,0.250000,0,0);}
.md3_c00333{transform:matrix(0.123542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123542,0.000000,0.000000,0.250000,0,0);}
.m4a_c00333{transform:matrix(0.132353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132353,0.000000,0.000000,0.250000,0,0);}
.mb7_c00333{transform:matrix(0.132423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132423,0.000000,0.000000,0.250000,0,0);}
.mb6_c00333{transform:matrix(0.143099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143099,0.000000,0.000000,0.250000,0,0);}
.mdc_c00333{transform:matrix(0.144736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144736,0.000000,0.000000,0.250000,0,0);}
.mae_c00333{transform:matrix(0.147436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147436,0.000000,0.000000,0.250000,0,0);}
.m65_c00333{transform:matrix(0.162482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162482,0.000000,0.000000,0.250000,0,0);}
.mc3_c00333{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00333{transform:matrix(0.163416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163416,0.000000,0.000000,0.250000,0,0);}
.m7a_c00333{transform:matrix(0.171526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171526,0.000000,0.000000,0.250000,0,0);}
.m4d_c00333{transform:matrix(0.172069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172069,0.000000,0.000000,0.250000,0,0);}
.mad_c00333{transform:matrix(0.173077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173077,0.000000,0.000000,0.250000,0,0);}
.mc4_c00333{transform:matrix(0.174999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174999,0.000000,0.000000,0.250000,0,0);}
.ma1_c00333{transform:matrix(0.175042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175042,0.000000,0.000000,0.250000,0,0);}
.m57_c00333{transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);}
.m66_c00333{transform:matrix(0.179003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179003,0.000000,0.000000,0.250000,0,0);}
.mc2_c00333{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m96_c00333{transform:matrix(0.192740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192740,0.000000,0.000000,0.250000,0,0);}
.mdf_c00333{transform:matrix(0.192983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192983,0.000000,0.000000,0.250000,0,0);}
.maf_c00333{transform:matrix(0.195513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195513,0.000000,0.000000,0.250000,0,0);}
.mdb_c00333{transform:matrix(0.197368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197368,0.000000,0.000000,0.250000,0,0);}
.m55_c00333{transform:matrix(0.204762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204762,0.000000,0.000000,0.250000,0,0);}
.m61_c00333{transform:matrix(0.207615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207615,0.000000,0.000000,0.250000,0,0);}
.m9c_c00333{transform:matrix(0.208003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208003,0.000000,0.000000,0.250000,0,0);}
.m7c_c00333{transform:matrix(0.213438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213438,0.000000,0.000000,0.250000,0,0);}
.ma2_c00333{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m48_c00333{transform:matrix(0.219184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219184,0.000000,0.000000,0.250000,0,0);}
.m44_c00333{transform:matrix(0.225160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225160,0.000000,0.000000,0.250000,0,0);}
.m46_c00333{transform:matrix(0.227139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227139,0.000000,0.000000,0.250000,0,0);}
.m49_c00333{transform:matrix(0.230110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230110,0.000000,0.000000,0.250000,0,0);}
.m4f_c00333{transform:matrix(0.231124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231124,0.000000,0.000000,0.250000,0,0);}
.md_c00333{transform:matrix(0.235109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235109,0.000000,0.000000,0.250000,0,0);}
.m1_c00333{transform:matrix(0.237941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237941,0.000000,0.000000,0.250000,0,0);}
.med_c00333{transform:matrix(0.245188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245188,0.000000,0.000000,0.250000,0,0);}
.m91_c00333{transform:matrix(0.246461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246461,0.000000,0.000000,0.250000,0,0);}
.m9a_c00333{transform:matrix(0.249753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249753,0.000000,0.000000,0.250000,0,0);}
.m14_c00333{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m0_c00333{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00333{transform:matrix(0.250946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250946,0.000000,0.000000,0.250000,0,0);}
.meb_c00333{transform:matrix(0.251958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251958,0.000000,0.000000,0.250000,0,0);}
.me3_c00333{transform:matrix(0.252795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252795,0.000000,0.000000,0.250000,0,0);}
.mca_c00333{transform:matrix(0.253028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253028,0.000000,0.000000,0.250000,0,0);}
.m3c_c00333{transform:matrix(0.254355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254355,0.000000,0.000000,0.250000,0,0);}
.m70_c00333{transform:matrix(0.255306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255306,0.000000,0.000000,0.250000,0,0);}
.mb1_c00333{transform:matrix(0.257749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257749,0.000000,0.000000,0.250000,0,0);}
.m78_c00333{transform:matrix(0.257832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257832,0.000000,0.000000,0.250000,0,0);}
.ma3_c00333{transform:matrix(0.259751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259751,0.000000,0.000000,0.250000,0,0);}
.mb2_c00333{transform:matrix(0.260674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260674,0.000000,0.000000,0.250000,0,0);}
.m2b_c00333{transform:matrix(0.261209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261209,0.000000,0.000000,0.250000,0,0);}
.m6e_c00333{transform:matrix(0.261296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261296,0.000000,0.000000,0.250000,0,0);}
.md5_c00333{transform:matrix(0.262082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262082,0.000000,0.000000,0.250000,0,0);}
.m59_c00333{transform:matrix(0.262514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262514,0.000000,0.000000,0.250000,0,0);}
.m9f_c00333{transform:matrix(0.262883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262883,0.000000,0.000000,0.250000,0,0);}
.md4_c00333{transform:matrix(0.263245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263245,0.000000,0.000000,0.250000,0,0);}
.m51_c00333{transform:matrix(0.263435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263435,0.000000,0.000000,0.250000,0,0);}
.m10_c00333{transform:matrix(0.263569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263569,0.000000,0.000000,0.250000,0,0);}
.m1f_c00333{transform:matrix(0.263843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263843,0.000000,0.000000,0.250000,0,0);}
.ma4_c00333{transform:matrix(0.265620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265620,0.000000,0.000000,0.250000,0,0);}
.md0_c00333{transform:matrix(0.268555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268555,0.000000,0.000000,0.250000,0,0);}
.m42_c00333{transform:matrix(0.268638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268638,0.000000,0.000000,0.250000,0,0);}
.mec_c00333{transform:matrix(0.270255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270255,0.000000,0.000000,0.250000,0,0);}
.mc5_c00333{transform:matrix(0.271646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271646,0.000000,0.000000,0.250000,0,0);}
.m69_c00333{transform:matrix(0.272126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272126,0.000000,0.000000,0.250000,0,0);}
.me5_c00333{transform:matrix(0.275745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275745,0.000000,0.000000,0.250000,0,0);}
.m3d_c00333{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);}
.mda_c00333{transform:matrix(0.276276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276276,0.000000,0.000000,0.250000,0,0);}
.ma8_c00333{transform:matrix(0.276845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276845,0.000000,0.000000,0.250000,0,0);}
.m2a_c00333{transform:matrix(0.277538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277538,0.000000,0.000000,0.250000,0,0);}
.m5f_c00333{transform:matrix(0.277804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277804,0.000000,0.000000,0.250000,0,0);}
.m15_c00333{transform:matrix(0.277978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277978,0.000000,0.000000,0.250000,0,0);}
.me0_c00333{transform:matrix(0.278480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278480,0.000000,0.000000,0.250000,0,0);}
.mb5_c00333{transform:matrix(0.280315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280315,0.000000,0.000000,0.250000,0,0);}
.m28_c00333{transform:matrix(0.280655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280655,0.000000,0.000000,0.250000,0,0);}
.m23_c00333{transform:matrix(0.281060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281060,0.000000,0.000000,0.250000,0,0);}
.me2_c00333{transform:matrix(0.281194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281194,0.000000,0.000000,0.250000,0,0);}
.m89_c00333{transform:matrix(0.281242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281242,0.000000,0.000000,0.250000,0,0);}
.m86_c00333{transform:matrix(0.282522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282522,0.000000,0.000000,0.250000,0,0);}
.mf0_c00333{transform:matrix(0.282903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282903,0.000000,0.000000,0.250000,0,0);}
.m6d_c00333{transform:matrix(0.283640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283640,0.000000,0.000000,0.250000,0,0);}
.m12_c00333{transform:matrix(0.283723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283723,0.000000,0.000000,0.250000,0,0);}
.m3a_c00333{transform:matrix(0.283756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283756,0.000000,0.000000,0.250000,0,0);}
.mc8_c00333{transform:matrix(0.283844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283844,0.000000,0.000000,0.250000,0,0);}
.ma0_c00333{transform:matrix(0.284956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284956,0.000000,0.000000,0.250000,0,0);}
.mc6_c00333{transform:matrix(0.285020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285020,0.000000,0.000000,0.250000,0,0);}
.m31_c00333{transform:matrix(0.285170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285170,0.000000,0.000000,0.250000,0,0);}
.m93_c00333{transform:matrix(0.285667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285667,0.000000,0.000000,0.250000,0,0);}
.m8b_c00333{transform:matrix(0.286041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286041,0.000000,0.000000,0.250000,0,0);}
.m3b_c00333{transform:matrix(0.287143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287143,0.000000,0.000000,0.250000,0,0);}
.m83_c00333{transform:matrix(0.288195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288195,0.000000,0.000000,0.250000,0,0);}
.m13_c00333{transform:matrix(0.288823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288823,0.000000,0.000000,0.250000,0,0);}
.m3e_c00333{transform:matrix(0.289055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289055,0.000000,0.000000,0.250000,0,0);}
.m50_c00333{transform:matrix(0.289751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289751,0.000000,0.000000,0.250000,0,0);}
.m2_c00333{transform:matrix(0.289810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289810,0.000000,0.000000,0.250000,0,0);}
.m95_c00333{transform:matrix(0.289833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289833,0.000000,0.000000,0.250000,0,0);}
.m5b_c00333{transform:matrix(0.290679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290679,0.000000,0.000000,0.250000,0,0);}
.m2d_c00333{transform:matrix(0.290680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290680,0.000000,0.000000,0.250000,0,0);}
.m19_c00333{transform:matrix(0.291433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291433,0.000000,0.000000,0.250000,0,0);}
.m7e_c00333{transform:matrix(0.292350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292350,0.000000,0.000000,0.250000,0,0);}
.m39_c00333{transform:matrix(0.293188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293188,0.000000,0.000000,0.250000,0,0);}
.m68_c00333{transform:matrix(0.293890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293890,0.000000,0.000000,0.250000,0,0);}
.m4e_c00333{transform:matrix(0.295170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295170,0.000000,0.000000,0.250000,0,0);}
.mc1_c00333{transform:matrix(0.295214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295214,0.000000,0.000000,0.250000,0,0);}
.m7_c00333{transform:matrix(0.295690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295690,0.000000,0.000000,0.250000,0,0);}
.m35_c00333{transform:matrix(0.296060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296060,0.000000,0.000000,0.250000,0,0);}
.mb4_c00333{transform:matrix(0.296124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296124,0.000000,0.000000,0.250000,0,0);}
.m1c_c00333{transform:matrix(0.297285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297285,0.000000,0.000000,0.250000,0,0);}
.m38_c00333{transform:matrix(0.297290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297290,0.000000,0.000000,0.250000,0,0);}
.m9b_c00333{transform:matrix(0.297307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297307,0.000000,0.000000,0.250000,0,0);}
.mbf_c00333{transform:matrix(0.297408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297408,0.000000,0.000000,0.250000,0,0);}
.m92_c00333{transform:matrix(0.297573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297573,0.000000,0.000000,0.250000,0,0);}
.m5a_c00333{transform:matrix(0.298157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298157,0.000000,0.000000,0.250000,0,0);}
.m9e_c00333{transform:matrix(0.298786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298786,0.000000,0.000000,0.250000,0,0);}
.m27_c00333{transform:matrix(0.298971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298971,0.000000,0.000000,0.250000,0,0);}
.m8f_c00333{transform:matrix(0.300099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300099,0.000000,0.000000,0.250000,0,0);}
.mef_c00333{transform:matrix(0.300370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300370,0.000000,0.000000,0.250000,0,0);}
.mce_c00333{transform:matrix(0.300636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300636,0.000000,0.000000,0.250000,0,0);}
.mc7_c00333{transform:matrix(0.300759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300759,0.000000,0.000000,0.250000,0,0);}
.m7f_c00333{transform:matrix(0.300787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300787,0.000000,0.000000,0.250000,0,0);}
.m32_c00333{transform:matrix(0.301408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301408,0.000000,0.000000,0.250000,0,0);}
.m16_c00333{transform:matrix(0.303127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303127,0.000000,0.000000,0.250000,0,0);}
.m82_c00333{transform:matrix(0.303659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303659,0.000000,0.000000,0.250000,0,0);}
.ma6_c00333{transform:matrix(0.305210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305210,0.000000,0.000000,0.250000,0,0);}
.m18_c00333{transform:matrix(0.305715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305715,0.000000,0.000000,0.250000,0,0);}
.m73_c00333{transform:matrix(0.305722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305722,0.000000,0.000000,0.250000,0,0);}
.m4_c00333{transform:matrix(0.305762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305762,0.000000,0.000000,0.250000,0,0);}
.m75_c00333{transform:matrix(0.306994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306994,0.000000,0.000000,0.250000,0,0);}
.m60_c00333{transform:matrix(0.307277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307277,0.000000,0.000000,0.250000,0,0);}
.m26_c00333{transform:matrix(0.307513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307513,0.000000,0.000000,0.250000,0,0);}
.m74_c00333{transform:matrix(0.307629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307629,0.000000,0.000000,0.250000,0,0);}
.mb9_c00333{transform:matrix(0.309501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309501,0.000000,0.000000,0.250000,0,0);}
.m34_c00333{transform:matrix(0.309958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309958,0.000000,0.000000,0.250000,0,0);}
.m77_c00333{transform:matrix(0.310059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310059,0.000000,0.000000,0.250000,0,0);}
.m1b_c00333{transform:matrix(0.311424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311424,0.000000,0.000000,0.250000,0,0);}
.m94_c00333{transform:matrix(0.311872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311872,0.000000,0.000000,0.250000,0,0);}
.m63_c00333{transform:matrix(0.312276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312276,0.000000,0.000000,0.250000,0,0);}
.mbb_c00333{transform:matrix(0.312325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312325,0.000000,0.000000,0.250000,0,0);}
.m2c_c00333{transform:matrix(0.313041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313041,0.000000,0.000000,0.250000,0,0);}
.m4c_c00333{transform:matrix(0.313064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313064,0.000000,0.000000,0.250000,0,0);}
.mb3_c00333{transform:matrix(0.315860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315860,0.000000,0.000000,0.250000,0,0);}
.md9_c00333{transform:matrix(0.316584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316584,0.000000,0.000000,0.250000,0,0);}
.m52_c00333{transform:matrix(0.316644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316644,0.000000,0.000000,0.250000,0,0);}
.mee_c00333{transform:matrix(0.321213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321213,0.000000,0.000000,0.250000,0,0);}
.m8a_c00333{transform:matrix(0.321512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321512,0.000000,0.000000,0.250000,0,0);}
.mac_c00333{transform:matrix(0.322073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322073,0.000000,0.000000,0.250000,0,0);}
.m1e_c00333{transform:matrix(0.322101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322101,0.000000,0.000000,0.250000,0,0);}
.m64_c00333{transform:matrix(0.322340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322340,0.000000,0.000000,0.250000,0,0);}
.me_c00333{transform:matrix(0.322462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322462,0.000000,0.000000,0.250000,0,0);}
.m71_c00333{transform:matrix(0.323003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323003,0.000000,0.000000,0.250000,0,0);}
.ma9_c00333{transform:matrix(0.323095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323095,0.000000,0.000000,0.250000,0,0);}
.mf2_c00333{transform:matrix(0.323424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323424,0.000000,0.000000,0.250000,0,0);}
.mb8_c00333{transform:matrix(0.324038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324038,0.000000,0.000000,0.250000,0,0);}
.m41_c00333{transform:matrix(0.324991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324991,0.000000,0.000000,0.250000,0,0);}
.m36_c00333{transform:matrix(0.326146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326146,0.000000,0.000000,0.250000,0,0);}
.m43_c00333{transform:matrix(0.326725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326725,0.000000,0.000000,0.250000,0,0);}
.m37_c00333{transform:matrix(0.328096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328096,0.000000,0.000000,0.250000,0,0);}
.mba_c00333{transform:matrix(0.328669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328669,0.000000,0.000000,0.250000,0,0);}
.m7b_c00333{transform:matrix(0.329592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329592,0.000000,0.000000,0.250000,0,0);}
.m5c_c00333{transform:matrix(0.331199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331199,0.000000,0.000000,0.250000,0,0);}
.m20_c00333{transform:matrix(0.331587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331587,0.000000,0.000000,0.250000,0,0);}
.m9_c00333{transform:matrix(0.333337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333337,0.000000,0.000000,0.250000,0,0);}
.m1d_c00333{transform:matrix(0.334042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334042,0.000000,0.000000,0.250000,0,0);}
.m58_c00333{transform:matrix(0.334133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334133,0.000000,0.000000,0.250000,0,0);}
.m2e_c00333{transform:matrix(0.334196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334196,0.000000,0.000000,0.250000,0,0);}
.m80_c00333{transform:matrix(0.334462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334462,0.000000,0.000000,0.250000,0,0);}
.m97_c00333{transform:matrix(0.334531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334531,0.000000,0.000000,0.250000,0,0);}
.m5e_c00333{transform:matrix(0.334886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334886,0.000000,0.000000,0.250000,0,0);}
.m22_c00333{transform:matrix(0.335273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335273,0.000000,0.000000,0.250000,0,0);}
.m3f_c00333{transform:matrix(0.337304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337304,0.000000,0.000000,0.250000,0,0);}
.m40_c00333{transform:matrix(0.337347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337347,0.000000,0.000000,0.250000,0,0);}
.m6_c00333{transform:matrix(0.339781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339781,0.000000,0.000000,0.250000,0,0);}
.me7_c00333{transform:matrix(0.340160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340160,0.000000,0.000000,0.250000,0,0);}
.mab_c00333{transform:matrix(0.340583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340583,0.000000,0.000000,0.250000,0,0);}
.m5d_c00333{transform:matrix(0.341131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341131,0.000000,0.000000,0.250000,0,0);}
.m4b_c00333{transform:matrix(0.341260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341260,0.000000,0.000000,0.250000,0,0);}
.mf1_c00333{transform:matrix(0.341508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341508,0.000000,0.000000,0.250000,0,0);}
.me6_c00333{transform:matrix(0.341973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341973,0.000000,0.000000,0.250000,0,0);}
.md2_c00333{transform:matrix(0.342380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342380,0.000000,0.000000,0.250000,0,0);}
.m84_c00333{transform:matrix(0.342882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342882,0.000000,0.000000,0.250000,0,0);}
.m90_c00333{transform:matrix(0.344192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344192,0.000000,0.000000,0.250000,0,0);}
.m85_c00333{transform:matrix(0.344324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344324,0.000000,0.000000,0.250000,0,0);}
.m98_c00333{transform:matrix(0.344927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344927,0.000000,0.000000,0.250000,0,0);}
.m8_c00333{transform:matrix(0.346284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346284,0.000000,0.000000,0.250000,0,0);}
.m3_c00333{transform:matrix(0.346502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346502,0.000000,0.000000,0.250000,0,0);}
.m17_c00333{transform:matrix(0.347102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347102,0.000000,0.000000,0.250000,0,0);}
.m24_c00333{transform:matrix(0.347501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347501,0.000000,0.000000,0.250000,0,0);}
.me8_c00333{transform:matrix(0.348495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348495,0.000000,0.000000,0.250000,0,0);}
.mb_c00333{transform:matrix(0.348519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348519,0.000000,0.000000,0.250000,0,0);}
.ma7_c00333{transform:matrix(0.348849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348849,0.000000,0.000000,0.250000,0,0);}
.m7d_c00333{transform:matrix(0.350428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350428,0.000000,0.000000,0.250000,0,0);}
.me9_c00333{transform:matrix(0.350592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350592,0.000000,0.000000,0.250000,0,0);}
.m30_c00333{transform:matrix(0.350771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350771,0.000000,0.000000,0.250000,0,0);}
.m88_c00333{transform:matrix(0.351790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351790,0.000000,0.000000,0.250000,0,0);}
.m8c_c00333{transform:matrix(0.352827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352827,0.000000,0.000000,0.250000,0,0);}
.mcb_c00333{transform:matrix(0.353210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353210,0.000000,0.000000,0.250000,0,0);}
.m87_c00333{transform:matrix(0.355543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355543,0.000000,0.000000,0.250000,0,0);}
.m9d_c00333{transform:matrix(0.357416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357416,0.000000,0.000000,0.250000,0,0);}
.m45_c00333{transform:matrix(0.357967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357967,0.000000,0.000000,0.250000,0,0);}
.m5_c00333{transform:matrix(0.358832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358832,0.000000,0.000000,0.250000,0,0);}
.m72_c00333{transform:matrix(0.359367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359367,0.000000,0.000000,0.250000,0,0);}
.me4_c00333{transform:matrix(0.359753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359753,0.000000,0.000000,0.250000,0,0);}
.me1_c00333{transform:matrix(0.361077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361077,0.000000,0.000000,0.250000,0,0);}
.ma_c00333{transform:matrix(0.361525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361525,0.000000,0.000000,0.250000,0,0);}
.m25_c00333{transform:matrix(0.362388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362388,0.000000,0.000000,0.250000,0,0);}
.mea_c00333{transform:matrix(0.363589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363589,0.000000,0.000000,0.250000,0,0);}
.m79_c00333{transform:matrix(0.364015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364015,0.000000,0.000000,0.250000,0,0);}
.md1_c00333{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);}
.mf3_c00333{transform:matrix(0.364914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364914,0.000000,0.000000,0.250000,0,0);}
.mb0_c00333{transform:matrix(0.366441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366441,0.000000,0.000000,0.250000,0,0);}
.mc9_c00333{transform:matrix(0.366458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366458,0.000000,0.000000,0.250000,0,0);}
.mbd_c00333{transform:matrix(0.368951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368951,0.000000,0.000000,0.250000,0,0);}
.m6c_c00333{transform:matrix(0.369320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369320,0.000000,0.000000,0.250000,0,0);}
.m6f_c00333{transform:matrix(0.371603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371603,0.000000,0.000000,0.250000,0,0);}
.mc0_c00333{transform:matrix(0.374299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374299,0.000000,0.000000,0.250000,0,0);}
.mf4_c00333{transform:matrix(0.376584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376584,0.000000,0.000000,0.250000,0,0);}
.md7_c00333{transform:matrix(0.378969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378969,0.000000,0.000000,0.250000,0,0);}
.maa_c00333{transform:matrix(0.379484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379484,0.000000,0.000000,0.250000,0,0);}
.md6_c00333{transform:matrix(0.381109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381109,0.000000,0.000000,0.250000,0,0);}
.mcc_c00333{transform:matrix(0.383095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383095,0.000000,0.000000,0.250000,0,0);}
.m29_c00333{transform:matrix(0.385449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385449,0.000000,0.000000,0.250000,0,0);}
.mcd_c00333{transform:matrix(0.385503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385503,0.000000,0.000000,0.250000,0,0);}
.m6b_c00333{transform:matrix(0.389673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389673,0.000000,0.000000,0.250000,0,0);}
.m21_c00333{transform:matrix(0.392058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392058,0.000000,0.000000,0.250000,0,0);}
.m11_c00333{transform:matrix(0.402427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402427,0.000000,0.000000,0.250000,0,0);}
.md8_c00333{transform:matrix(0.403672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403672,0.000000,0.000000,0.250000,0,0);}
.m6a_c00333{transform:matrix(0.406539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406539,0.000000,0.000000,0.250000,0,0);}
.mc_c00333{transform:matrix(0.407860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407860,0.000000,0.000000,0.250000,0,0);}
.m54_c00333{transform:matrix(0.411147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411147,0.000000,0.000000,0.250000,0,0);}
.m53_c00333{transform:matrix(0.418355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418355,0.000000,0.000000,0.250000,0,0);}
.m76_c00333{transform:matrix(0.428927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428927,0.000000,0.000000,0.250000,0,0);}
.mf_c00333{transform:matrix(0.436586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436586,0.000000,0.000000,0.250000,0,0);}
.m8e_c00333{transform:matrix(0.441592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441592,0.000000,0.000000,0.250000,0,0);}
.m2f_c00333{transform:matrix(0.442421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442421,0.000000,0.000000,0.250000,0,0);}
.m99_c00333{transform:matrix(0.443939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443939,0.000000,0.000000,0.250000,0,0);}
.mbe_c00333{transform:matrix(0.449920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449920,0.000000,0.000000,0.250000,0,0);}
.m62_c00333{transform:matrix(0.450814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450814,0.000000,0.000000,0.250000,0,0);}
.m81_c00333{transform:matrix(0.452316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452316,0.000000,0.000000,0.250000,0,0);}
.m1a_c00333{transform:matrix(0.457418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457418,0.000000,0.000000,0.250000,0,0);}
.m33_c00333{transform:matrix(0.460692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460692,0.000000,0.000000,0.250000,0,0);}
.m67_c00333{transform:matrix(0.467208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467208,0.000000,0.000000,0.250000,0,0);}
.mbc_c00333{transform:matrix(0.477444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477444,0.000000,0.000000,0.250000,0,0);}
.v0_c00333{vertical-align:0.000000px;}
.ls4_c00333{letter-spacing:-2.993767px;}
.ls6_c00333{letter-spacing:-2.529450px;}
.ls14_c00333{letter-spacing:-2.262051px;}
.ls8_c00333{letter-spacing:-1.884967px;}
.ls13_c00333{letter-spacing:-0.679338px;}
.ls7_c00333{letter-spacing:-0.455301px;}
.ls9_c00333{letter-spacing:-0.086724px;}
.ls1a_c00333{letter-spacing:-0.021681px;}
.ls11_c00333{letter-spacing:-0.007227px;}
.ls3_c00333{letter-spacing:0.000000px;}
.ls15_c00333{letter-spacing:0.224037px;}
.ls1c_c00333{letter-spacing:0.542025px;}
.ls2_c00333{letter-spacing:1.019007px;}
.ls0_c00333{letter-spacing:1.553805px;}
.lsa_c00333{letter-spacing:1.669437px;}
.ls1_c00333{letter-spacing:2.702898px;}
.lse_c00333{letter-spacing:3.129291px;}
.ls12_c00333{letter-spacing:3.389463px;}
.ls17_c00333{letter-spacing:3.435310px;}
.lsc_c00333{letter-spacing:3.516014px;}
.ls10_c00333{letter-spacing:3.564000px;}
.ls5_c00333{letter-spacing:3.613500px;}
.lsb_c00333{letter-spacing:3.880810px;}
.ls19_c00333{letter-spacing:4.494610px;}
.lsd_c00333{letter-spacing:48.470598px;}
.lsf_c00333{letter-spacing:49.896198px;}
.ls1b_c00333{letter-spacing:54.172998px;}
.ls16_c00333{letter-spacing:55.598598px;}
.ls18_c00333{letter-spacing:57.024198px;}
.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;}
}
.ws8_c00333{word-spacing:-21.456963px;}
.ws6_c00333{word-spacing:-20.770398px;}
.wsa_c00333{word-spacing:-19.736937px;}
.ws7_c00333{word-spacing:-18.067500px;}
.ws1_c00333{word-spacing:-17.612199px;}
.ws9_c00333{word-spacing:-17.388162px;}
.wsb_c00333{word-spacing:-3.974850px;}
.ws3_c00333{word-spacing:-3.468960px;}
.wsd_c00333{word-spacing:-1.662210px;}
.ws0_c00333{word-spacing:-0.216810px;}
.wse_c00333{word-spacing:0.000000px;}
.ws2_c00333{word-spacing:5.638050px;}
.ws4_c00333{word-spacing:6.937920px;}
.wsc_c00333{word-spacing:7.083450px;}
.ws5_c00333{word-spacing:9.684180px;}
._14_c00333{margin-left:-5.419260px;}
._20_c00333{margin-left:-4.356000px;}
._1b_c00333{margin-left:-1.720026px;}
._b_c00333{width:1.084050px;}
._e_c00333{width:4.646070px;}
._d_c00333{width:6.576570px;}
._18_c00333{width:7.733880px;}
._5_c00333{width:9.171063px;}
._15_c00333{width:10.240560px;}
._c_c00333{width:11.614680px;}
._17_c00333{width:13.153140px;}
._9_c00333{width:14.237190px;}
._f_c00333{width:15.827130px;}
._1a_c00333{width:19.766538px;}
._1f_c00333{width:21.102840px;}
._10_c00333{width:22.548240px;}
._6_c00333{width:23.704560px;}
._2_c00333{width:25.366770px;}
._1d_c00333{width:26.529327px;}
._8_c00333{width:30.421215px;}
._13_c00333{width:31.871070px;}
._4_c00333{width:33.244200px;}
._7_c00333{width:34.709400px;}
._1c_c00333{width:36.881460px;}
._19_c00333{width:38.350917px;}
._3_c00333{width:39.748500px;}
._11_c00333{width:41.132520px;}
._1e_c00333{width:42.494760px;}
._0_c00333{width:43.797600px;}
._a_c00333{width:44.807400px;}
._1_c00333{width:47.192310px;}
._12_c00333{width:49.330809px;}
._16_c00333{width:52.063407px;}
.fc0_c00333{color:transparent;}
.fsd_c00333{font-size:22.176000px;}
.fs12_c00333{font-size:22.374000px;}
.fs17_c00333{font-size:25.344000px;}
.fs16_c00333{font-size:27.720000px;}
.fsb_c00333{font-size:36.432000px;}
.fs14_c00333{font-size:37.818000px;}
.fs2_c00333{font-size:38.808000px;}
.fs0_c00333{font-size:45.144000px;}
.fs8_c00333{font-size:48.470598px;}
.fs9_c00333{font-size:49.896198px;}
.fs4_c00333{font-size:53.856198px;}
.fs13_c00333{font-size:54.172998px;}
.fse_c00333{font-size:55.598598px;}
.fs10_c00333{font-size:57.024198px;}
.fsc_c00333{font-size:60.192000px;}
.fsf_c00333{font-size:68.706198px;}
.fs5_c00333{font-size:70.884000px;}
.fsa_c00333{font-size:71.280000px;}
.fs3_c00333{font-size:72.270000px;}
.fs15_c00333{font-size:75.240000px;}
.fs6_c00333{font-size:76.824000px;}
.fs7_c00333{font-size:77.616198px;}
.fs1_c00333{font-size:85.536198px;}
.fs11_c00333{font-size:89.892198px;}
.y0_c00333{bottom:0.000000px;}
.y1_c00333{bottom:76.500000px;}
.y24_c00333{bottom:86.517135px;}
.y23_c00333{bottom:104.337135px;}
.y22_c00333{bottom:114.311385px;}
.y21_c00333{bottom:137.833785px;}
.y20_c00333{bottom:168.132735px;}
.y1f_c00333{bottom:204.841935px;}
.y1e_c00333{bottom:266.499135px;}
.y1d_c00333{bottom:270.063135px;}
.y1c_c00333{bottom:302.490585px;}
.y1b_c00333{bottom:334.210185px;}
.y1a_c00333{bottom:367.711785px;}
.y19_c00333{bottom:399.787785px;}
.y18_c00333{bottom:434.363535px;}
.y17_c00333{bottom:467.508735px;}
.y16_c00333{bottom:488.887785px;}
.y15_c00333{bottom:524.884185px;}
.y14_c00333{bottom:531.660735px;}
.y13_c00333{bottom:564.444585px;}
.y12_c00333{bottom:597.233385px;}
.y11_c00333{bottom:628.957935px;}
.y10_c00333{bottom:641.431935px;}
.yf_c00333{bottom:661.385385px;}
.yd_c00333{bottom:693.457920px;}
.ye_c00333{bottom:693.461385px;}
.yc_c00333{bottom:726.250185px;}
.yb_c00333{bottom:757.969785px;}
.ya_c00333{bottom:772.943535px;}
.y9_c00333{bottom:790.402185px;}
.y8_c00333{bottom:823.552335px;}
.y7_c00333{bottom:855.979785px;}
.y2_c00333{bottom:879.150735px;}
.y6_c00333{bottom:889.837785px;}
.y5_c00333{bottom:923.344335px;}
.y4_c00333{bottom:1058.771385px;}
.y3_c00333{bottom:1074.809385px;}
.h13_c00333{height:21.958857px;}
.he_c00333{height:23.128875px;}
.h18_c00333{height:24.873750px;}
.h17_c00333{height:28.911094px;}
.h9_c00333{height:32.281418px;}
.ha_c00333{height:33.230868px;}
.hc_c00333{height:35.756016px;}
.h14_c00333{height:36.079217px;}
.hf_c00333{height:37.028666px;}
.h11_c00333{height:37.978116px;}
.h15_c00333{height:39.442992px;}
.h4_c00333{height:40.475531px;}
.h2_c00333{height:47.083781px;}
.h6_c00333{height:52.856913px;}
.hd_c00333{height:62.778375px;}
.h10_c00333{height:67.431376px;}
.hb_c00333{height:69.957422px;}
.h5_c00333{height:70.929053px;}
.h7_c00333{height:75.361043px;}
.h8_c00333{height:76.176054px;}
.h16_c00333{height:78.472969px;}
.h3_c00333{height:83.949101px;}
.h12_c00333{height:88.224276px;}
.h1_c00333{height:1110.000000px;}
.h0_c00333{height:1263.000000px;}
.w1_c00333{width:775.500000px;}
.w0_c00333{width:892.500000px;}
.x0_c00333{left:0.000000px;}
.x1_c00333{left:58.500000px;}
.x2_c00333{left:67.069185px;}
.x2b_c00333{left:89.398635px;}
.x6_c00333{left:91.002435px;}
.x6c_c00333{left:92.096385px;}
.x8e_c00333{left:94.229835px;}
.x6d_c00333{left:102.328035px;}
.x7b_c00333{left:106.495935px;}
.x2c_c00333{left:111.856785px;}
.x75_c00333{left:113.059635px;}
.x4c_c00333{left:114.816885px;}
.x37_c00333{left:121.870635px;}
.x5c_c00333{left:122.875485px;}
.x76_c00333{left:124.246635px;}
.x1d_c00333{left:126.152385px;}
.x56_c00333{left:132.919035px;}
.x7_c00333{left:134.300085px;}
.x80_c00333{left:135.423735px;}
.x8_c00333{left:144.323835px;}
.x5d_c00333{left:145.492035px;}
.x85_c00333{left:146.665185px;}
.x45_c00333{left:155.896935px;}
.x1e_c00333{left:157.287885px;}
.x4d_c00333{left:166.004835px;}
.x9_c00333{left:167.618535px;}
.x4e_c00333{left:170.732085px;}
.x3e_c00333{left:178.320435px;}
.x86_c00333{left:179.755935px;}
.x6e_c00333{left:183.171435px;}
.x67_c00333{left:189.784635px;}
.x78_c00333{left:190.789485px;}
.xa_c00333{left:192.155685px;}
.x4f_c00333{left:195.625635px;}
.x1f_c00333{left:200.818185px;}
.x88_c00333{left:209.337135px;}
.x50_c00333{left:210.827085px;}
.x6f_c00333{left:212.138835px;}
.x7c_c00333{left:214.019835px;}
.x38_c00333{left:221.994285px;}
.xb_c00333{left:223.221885px;}
.x2d_c00333{left:233.399085px;}
.x68_c00333{left:234.983085px;}
.x3f_c00333{left:243.729735px;}
.x5e_c00333{left:245.348385px;}
.x81_c00333{left:246.417585px;}
.xc_c00333{left:256.347285px;}
.x70_c00333{left:257.995635px;}
.x87_c00333{left:263.153535px;}
.x2e_c00333{left:265.816635px;}
.x46_c00333{left:266.935335px;}
.x5f_c00333{left:268.157985px;}
.x82_c00333{left:276.904635px;}
.x20_c00333{left:278.820285px;}
.x47_c00333{left:288.784635px;}
.x8f_c00333{left:290.378535px;}
.xd_c00333{left:299.867685px;}
.x83_c00333{left:300.951735px;}
.x39_c00333{left:304.540485px;}
.x21_c00333{left:311.331885px;}
.x22_c00333{left:314.925585px;}
.x48_c00333{left:321.370485px;}
.xe_c00333{left:322.499085px;}
.x79_c00333{left:323.959335px;}
.x23_c00333{left:333.186135px;}
.x69_c00333{left:334.433535px;}
.x2f_c00333{left:344.432535px;}
.x89_c00333{left:345.640335px;}
.x30_c00333{left:354.921585px;}
.x24_c00333{left:356.500635px;}
.x3a_c00333{left:366.885735px;}
.x8a_c00333{left:368.311335px;}
.x94_c00333{left:369.954735px;}
.xf_c00333{left:377.899485px;}
.x31_c00333{left:378.998385px;}
.x57_c00333{left:388.997385px;}
.x10_c00333{left:399.659685px;}
.x84_c00333{left:400.728885px;}
.x11_c00333{left:410.693235px;}
.x95_c00333{left:412.163385px;}
.x25_c00333{left:420.919935px;}
.x60_c00333{left:421.984185px;}
.x71_c00333{left:423.157335px;}
.x12_c00333{left:433.883985px;}
.x13_c00333{left:443.308785px;}
.x3b_c00333{left:444.546285px;}
.x51_c00333{left:454.357185px;}
.x40_c00333{left:455.639235px;}
.x41_c00333{left:465.083835px;}
.x58_c00333{left:466.301535px;}
.x61_c00333{left:467.608335px;}
.x90_c00333{left:469.420035px;}
.x14_c00333{left:477.013335px;}
.x32_c00333{left:478.077585px;}
.x65_c00333{left:487.141035px;}
.x42_c00333{left:488.432985px;}
.x6a_c00333{left:497.496435px;}
.x52_c00333{left:499.535835px;}
.x72_c00333{left:500.857485px;}
.x96_c00333{left:502.936485px;}
.x15_c00333{left:511.133685px;}
.x33_c00333{left:520.286235px;}
.x26_c00333{left:521.370285px;}
.x7d_c00333{left:522.627585px;}
.x53_c00333{left:523.964085px;}
.x91_c00333{left:531.092085px;}
.x43_c00333{left:532.245435px;}
.x62_c00333{left:533.646285px;}
.x66_c00333{left:540.640635px;}
.x16_c00333{left:543.234435px;}
.x49_c00333{left:553.075035px;}
.x34_c00333{left:554.114535px;}
.x77_c00333{left:555.416385px;}
.x27_c00333{left:564.999585px;}
.x17_c00333{left:566.048985px;}
.x54_c00333{left:575.533185px;}
.x3c_c00333{left:577.513185px;}
.x18_c00333{left:587.140935px;}
.x8b_c00333{left:588.601185px;}
.x19_c00333{left:598.832835px;}
.x92_c00333{left:599.902035px;}
.x35_c00333{left:609.950535px;}
.x63_c00333{left:617.959635px;}
.x8c_c00333{left:619.771335px;}
.x28_c00333{left:620.805885px;}
.x7e_c00333{left:622.320585px;}
.x1a_c00333{left:630.775185px;}
.x59_c00333{left:632.032485px;}
.x73_c00333{left:633.052185px;}
.x3d_c00333{left:642.244335px;}
.x6b_c00333{left:643.412535px;}
.x7a_c00333{left:644.516385px;}
.x8d_c00333{left:652.203735px;}
.x64_c00333{left:654.282735px;}
.x3_c00333{left:664.771785px;}
.x97_c00333{left:665.870685px;}
.x29_c00333{left:675.038085px;}
.x55_c00333{left:676.235985px;}
.x4a_c00333{left:678.072435px;}
.x4b_c00333{left:686.432985px;}
.x98_c00333{left:688.016985px;}
.x4_c00333{left:689.021835px;}
.x7f_c00333{left:696.644835px;}
.x1b_c00333{left:697.837785px;}
.x5_c00333{left:699.802935px;}
.x93_c00333{left:701.713635px;}
.x99_c00333{left:706.802235px;}
.x1c_c00333{left:709.301985px;}
.x5a_c00333{left:710.376135px;}
.x9a_c00333{left:717.063585px;}
.x36_c00333{left:720.350385px;}
.x44_c00333{left:721.469085px;}
.x2a_c00333{left:731.101785px;}
.x74_c00333{left:732.482835px;}
.x5b_c00333{left:742.862985px;}
@media print{
.v0_c00333{vertical-align:0.000000pt;}
.ls4_c00333{letter-spacing:-2.661126pt;}
.ls6_c00333{letter-spacing:-2.248400pt;}
.ls14_c00333{letter-spacing:-2.010712pt;}
.ls8_c00333{letter-spacing:-1.675526pt;}
.ls13_c00333{letter-spacing:-0.603856pt;}
.ls7_c00333{letter-spacing:-0.404712pt;}
.ls9_c00333{letter-spacing:-0.077088pt;}
.ls1a_c00333{letter-spacing:-0.019272pt;}
.ls11_c00333{letter-spacing:-0.006424pt;}
.ls3_c00333{letter-spacing:0.000000pt;}
.ls15_c00333{letter-spacing:0.199144pt;}
.ls1c_c00333{letter-spacing:0.481800pt;}
.ls2_c00333{letter-spacing:0.905784pt;}
.ls0_c00333{letter-spacing:1.381160pt;}
.lsa_c00333{letter-spacing:1.483944pt;}
.ls1_c00333{letter-spacing:2.402576pt;}
.lse_c00333{letter-spacing:2.781592pt;}
.ls12_c00333{letter-spacing:3.012856pt;}
.ls17_c00333{letter-spacing:3.053609pt;}
.lsc_c00333{letter-spacing:3.125346pt;}
.ls10_c00333{letter-spacing:3.168000pt;}
.ls5_c00333{letter-spacing:3.212000pt;}
.lsb_c00333{letter-spacing:3.449609pt;}
.ls19_c00333{letter-spacing:3.995209pt;}
.lsd_c00333{letter-spacing:43.084976pt;}
.lsf_c00333{letter-spacing:44.352176pt;}
.ls1b_c00333{letter-spacing:48.153776pt;}
.ls16_c00333{letter-spacing:49.420976pt;}
.ls18_c00333{letter-spacing:50.688176pt;}
.ws8_c00333{word-spacing:-19.072856pt;}
.ws6_c00333{word-spacing:-18.462576pt;}
.wsa_c00333{word-spacing:-17.543944pt;}
.ws7_c00333{word-spacing:-16.060000pt;}
.ws1_c00333{word-spacing:-15.655288pt;}
.ws9_c00333{word-spacing:-15.456144pt;}
.wsb_c00333{word-spacing:-3.533200pt;}
.ws3_c00333{word-spacing:-3.083520pt;}
.wsd_c00333{word-spacing:-1.477520pt;}
.ws0_c00333{word-spacing:-0.192720pt;}
.wse_c00333{word-spacing:0.000000pt;}
.ws2_c00333{word-spacing:5.011600pt;}
.ws4_c00333{word-spacing:6.167040pt;}
.wsc_c00333{word-spacing:6.296400pt;}
.ws5_c00333{word-spacing:8.608160pt;}
._14_c00333{margin-left:-4.817120pt;}
._20_c00333{margin-left:-3.872000pt;}
._1b_c00333{margin-left:-1.528912pt;}
._b_c00333{width:0.963600pt;}
._e_c00333{width:4.129840pt;}
._d_c00333{width:5.845840pt;}
._18_c00333{width:6.874560pt;}
._5_c00333{width:8.152056pt;}
._15_c00333{width:9.102720pt;}
._c_c00333{width:10.324160pt;}
._17_c00333{width:11.691680pt;}
._9_c00333{width:12.655280pt;}
._f_c00333{width:14.068560pt;}
._1a_c00333{width:17.570256pt;}
._1f_c00333{width:18.758080pt;}
._10_c00333{width:20.042880pt;}
._6_c00333{width:21.070720pt;}
._2_c00333{width:22.548240pt;}
._1d_c00333{width:23.581624pt;}
._8_c00333{width:27.041080pt;}
._13_c00333{width:28.329840pt;}
._4_c00333{width:29.550400pt;}
._7_c00333{width:30.852800pt;}
._1c_c00333{width:32.783520pt;}
._19_c00333{width:34.089704pt;}
._3_c00333{width:35.332000pt;}
._11_c00333{width:36.562240pt;}
._1e_c00333{width:37.773120pt;}
._0_c00333{width:38.931200pt;}
._a_c00333{width:39.828800pt;}
._1_c00333{width:41.948720pt;}
._12_c00333{width:43.849608pt;}
._16_c00333{width:46.278584pt;}
.fsd_c00333{font-size:19.712000pt;}
.fs12_c00333{font-size:19.888000pt;}
.fs17_c00333{font-size:22.528000pt;}
.fs16_c00333{font-size:24.640000pt;}
.fsb_c00333{font-size:32.384000pt;}
.fs14_c00333{font-size:33.616000pt;}
.fs2_c00333{font-size:34.496000pt;}
.fs0_c00333{font-size:40.128000pt;}
.fs8_c00333{font-size:43.084976pt;}
.fs9_c00333{font-size:44.352176pt;}
.fs4_c00333{font-size:47.872176pt;}
.fs13_c00333{font-size:48.153776pt;}
.fse_c00333{font-size:49.420976pt;}
.fs10_c00333{font-size:50.688176pt;}
.fsc_c00333{font-size:53.504000pt;}
.fsf_c00333{font-size:61.072176pt;}
.fs5_c00333{font-size:63.008000pt;}
.fsa_c00333{font-size:63.360000pt;}
.fs3_c00333{font-size:64.240000pt;}
.fs15_c00333{font-size:66.880000pt;}
.fs6_c00333{font-size:68.288000pt;}
.fs7_c00333{font-size:68.992176pt;}
.fs1_c00333{font-size:76.032176pt;}
.fs11_c00333{font-size:79.904176pt;}
.y0_c00333{bottom:0.000000pt;}
.y1_c00333{bottom:68.000000pt;}
.y24_c00333{bottom:76.904120pt;}
.y23_c00333{bottom:92.744120pt;}
.y22_c00333{bottom:101.610120pt;}
.y21_c00333{bottom:122.518920pt;}
.y20_c00333{bottom:149.451320pt;}
.y1f_c00333{bottom:182.081720pt;}
.y1e_c00333{bottom:236.888120pt;}
.y1d_c00333{bottom:240.056120pt;}
.y1c_c00333{bottom:268.880520pt;}
.y1b_c00333{bottom:297.075720pt;}
.y1a_c00333{bottom:326.854920pt;}
.y19_c00333{bottom:355.366920pt;}
.y18_c00333{bottom:386.100920pt;}
.y17_c00333{bottom:415.563320pt;}
.y16_c00333{bottom:434.566920pt;}
.y15_c00333{bottom:466.563720pt;}
.y14_c00333{bottom:472.587320pt;}
.y13_c00333{bottom:501.728520pt;}
.y12_c00333{bottom:530.874120pt;}
.y11_c00333{bottom:559.073720pt;}
.y10_c00333{bottom:570.161720pt;}
.yf_c00333{bottom:587.898120pt;}
.yd_c00333{bottom:616.407040pt;}
.ye_c00333{bottom:616.410120pt;}
.yc_c00333{bottom:645.555720pt;}
.yb_c00333{bottom:673.750920pt;}
.ya_c00333{bottom:687.060920pt;}
.y9_c00333{bottom:702.579720pt;}
.y8_c00333{bottom:732.046520pt;}
.y7_c00333{bottom:760.870920pt;}
.y2_c00333{bottom:781.467320pt;}
.y6_c00333{bottom:790.966920pt;}
.y5_c00333{bottom:820.750520pt;}
.y4_c00333{bottom:941.130120pt;}
.y3_c00333{bottom:955.386120pt;}
.h13_c00333{height:19.518984pt;}
.he_c00333{height:20.559000pt;}
.h18_c00333{height:22.110000pt;}
.h17_c00333{height:25.698750pt;}
.h9_c00333{height:28.694594pt;}
.ha_c00333{height:29.538549pt;}
.hc_c00333{height:31.783125pt;}
.h14_c00333{height:32.070415pt;}
.hf_c00333{height:32.914370pt;}
.h11_c00333{height:33.758325pt;}
.h15_c00333{height:35.060438pt;}
.h4_c00333{height:35.978250pt;}
.h2_c00333{height:41.852250pt;}
.h6_c00333{height:46.983923pt;}
.hd_c00333{height:55.803000pt;}
.h10_c00333{height:59.939001pt;}
.hb_c00333{height:62.184375pt;}
.h5_c00333{height:63.048047pt;}
.h7_c00333{height:66.987594pt;}
.h8_c00333{height:67.712048pt;}
.h16_c00333{height:69.753750pt;}
.h3_c00333{height:74.621423pt;}
.h12_c00333{height:78.421579pt;}
.h1_c00333{height:986.666667pt;}
.h0_c00333{height:1122.666667pt;}
.w1_c00333{width:689.333333pt;}
.w0_c00333{width:793.333333pt;}
.x0_c00333{left:0.000000pt;}
.x1_c00333{left:52.000000pt;}
.x2_c00333{left:59.617053pt;}
.x2b_c00333{left:79.465453pt;}
.x6_c00333{left:80.891053pt;}
.x6c_c00333{left:81.863453pt;}
.x8e_c00333{left:83.759853pt;}
.x6d_c00333{left:90.958253pt;}
.x7b_c00333{left:94.663053pt;}
.x2c_c00333{left:99.428253pt;}
.x75_c00333{left:100.497453pt;}
.x4c_c00333{left:102.059453pt;}
.x37_c00333{left:108.329453pt;}
.x5c_c00333{left:109.222653pt;}
.x76_c00333{left:110.441453pt;}
.x1d_c00333{left:112.135453pt;}
.x56_c00333{left:118.150253pt;}
.x7_c00333{left:119.377853pt;}
.x80_c00333{left:120.376653pt;}
.x8_c00333{left:128.287853pt;}
.x5d_c00333{left:129.326253pt;}
.x85_c00333{left:130.369053pt;}
.x45_c00333{left:138.575053pt;}
.x1e_c00333{left:139.811453pt;}
.x4d_c00333{left:147.559853pt;}
.x9_c00333{left:148.994253pt;}
.x4e_c00333{left:151.761853pt;}
.x3e_c00333{left:158.507053pt;}
.x86_c00333{left:159.783053pt;}
.x6e_c00333{left:162.819053pt;}
.x67_c00333{left:168.697453pt;}
.x78_c00333{left:169.590653pt;}
.xa_c00333{left:170.805053pt;}
.x4f_c00333{left:173.889453pt;}
.x1f_c00333{left:178.505053pt;}
.x88_c00333{left:186.077453pt;}
.x50_c00333{left:187.401853pt;}
.x6f_c00333{left:188.567853pt;}
.x7c_c00333{left:190.239853pt;}
.x38_c00333{left:197.328253pt;}
.xb_c00333{left:198.419453pt;}
.x2d_c00333{left:207.465853pt;}
.x68_c00333{left:208.873853pt;}
.x3f_c00333{left:216.648653pt;}
.x5e_c00333{left:218.087453pt;}
.x81_c00333{left:219.037853pt;}
.xc_c00333{left:227.864253pt;}
.x70_c00333{left:229.329453pt;}
.x87_c00333{left:233.914253pt;}
.x2e_c00333{left:236.281453pt;}
.x46_c00333{left:237.275853pt;}
.x5f_c00333{left:238.362653pt;}
.x82_c00333{left:246.137453pt;}
.x20_c00333{left:247.840253pt;}
.x47_c00333{left:256.697453pt;}
.x8f_c00333{left:258.114253pt;}
.xd_c00333{left:266.549053pt;}
.x83_c00333{left:267.512653pt;}
.x39_c00333{left:270.702653pt;}
.x21_c00333{left:276.739453pt;}
.x22_c00333{left:279.933853pt;}
.x48_c00333{left:285.662653pt;}
.xe_c00333{left:286.665853pt;}
.x79_c00333{left:287.963853pt;}
.x23_c00333{left:296.165453pt;}
.x69_c00333{left:297.274253pt;}
.x2f_c00333{left:306.162253pt;}
.x89_c00333{left:307.235853pt;}
.x30_c00333{left:315.485853pt;}
.x24_c00333{left:316.889453pt;}
.x3a_c00333{left:326.120653pt;}
.x8a_c00333{left:327.387853pt;}
.x94_c00333{left:328.848653pt;}
.xf_c00333{left:335.910653pt;}
.x31_c00333{left:336.887453pt;}
.x57_c00333{left:345.775453pt;}
.x10_c00333{left:355.253053pt;}
.x84_c00333{left:356.203453pt;}
.x11_c00333{left:365.060653pt;}
.x95_c00333{left:366.367453pt;}
.x25_c00333{left:374.151053pt;}
.x60_c00333{left:375.097053pt;}
.x71_c00333{left:376.139853pt;}
.x12_c00333{left:385.674653pt;}
.x13_c00333{left:394.052253pt;}
.x3b_c00333{left:395.152253pt;}
.x51_c00333{left:403.873053pt;}
.x40_c00333{left:405.012653pt;}
.x41_c00333{left:413.407853pt;}
.x58_c00333{left:414.490253pt;}
.x61_c00333{left:415.651853pt;}
.x90_c00333{left:417.262253pt;}
.x14_c00333{left:424.011853pt;}
.x32_c00333{left:424.957853pt;}
.x65_c00333{left:433.014253pt;}
.x42_c00333{left:434.162653pt;}
.x6a_c00333{left:442.219053pt;}
.x52_c00333{left:444.031853pt;}
.x72_c00333{left:445.206653pt;}
.x96_c00333{left:447.054653pt;}
.x15_c00333{left:454.341053pt;}
.x33_c00333{left:462.476653pt;}
.x26_c00333{left:463.440253pt;}
.x7d_c00333{left:464.557853pt;}
.x53_c00333{left:465.745853pt;}
.x91_c00333{left:472.081853pt;}
.x43_c00333{left:473.107053pt;}
.x62_c00333{left:474.352253pt;}
.x66_c00333{left:480.569453pt;}
.x16_c00333{left:482.875053pt;}
.x49_c00333{left:491.622253pt;}
.x34_c00333{left:492.546253pt;}
.x77_c00333{left:493.703453pt;}
.x27_c00333{left:502.221853pt;}
.x17_c00333{left:503.154653pt;}
.x54_c00333{left:511.585053pt;}
.x3c_c00333{left:513.345053pt;}
.x18_c00333{left:521.903053pt;}
.x8b_c00333{left:523.201053pt;}
.x19_c00333{left:532.295853pt;}
.x92_c00333{left:533.246253pt;}
.x35_c00333{left:542.178253pt;}
.x63_c00333{left:549.297453pt;}
.x8c_c00333{left:550.907853pt;}
.x28_c00333{left:551.827453pt;}
.x7e_c00333{left:553.173853pt;}
.x1a_c00333{left:560.689053pt;}
.x59_c00333{left:561.806653pt;}
.x73_c00333{left:562.713053pt;}
.x3d_c00333{left:570.883853pt;}
.x6b_c00333{left:571.922253pt;}
.x7a_c00333{left:572.903453pt;}
.x8d_c00333{left:579.736653pt;}
.x64_c00333{left:581.584653pt;}
.x3_c00333{left:590.908253pt;}
.x97_c00333{left:591.885053pt;}
.x29_c00333{left:600.033853pt;}
.x55_c00333{left:601.098653pt;}
.x4a_c00333{left:602.731053pt;}
.x4b_c00333{left:610.162653pt;}
.x98_c00333{left:611.570653pt;}
.x4_c00333{left:612.463853pt;}
.x7f_c00333{left:619.239853pt;}
.x1b_c00333{left:620.300253pt;}
.x5_c00333{left:622.047053pt;}
.x93_c00333{left:623.745453pt;}
.x99_c00333{left:628.268653pt;}
.x1c_c00333{left:630.490653pt;}
.x5a_c00333{left:631.445453pt;}
.x9a_c00333{left:637.389853pt;}
.x36_c00333{left:640.311453pt;}
.x44_c00333{left:641.305853pt;}
.x2a_c00333{left:649.868253pt;}
.x74_c00333{left:651.095853pt;}
.x5b_c00333{left:660.322653pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6dcf57913a7c60f681c62b4c.woff2')format("woff");}.ff1_c00334{font-family:ff1_c00334;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00334;src:url('chunks/assets/font_0d8b9e9b547767c8e8835295.woff2')format("woff");}.ff2_c00334{font-family:ff2_c00334;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00334;src:url('chunks/assets/font_5b2c78668306871241bc5833.woff2')format("woff");}.ff3_c00334{font-family:ff3_c00334;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00334;src:url('chunks/assets/font_5d44984a155b7504c7887f4e.woff2')format("woff");}.ff4_c00334{font-family:ff4_c00334;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m85_c00334{transform:matrix(0.022060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.022060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.022060,0.000000,0.000000,0.250000,0,0);}
.m84_c00334{transform:matrix(0.029413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.029413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.029413,0.000000,0.000000,0.250000,0,0);}
.m44_c00334{transform:matrix(0.046053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.046053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.046053,0.000000,0.000000,0.250000,0,0);}
.m9b_c00334{transform:matrix(0.050001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050001,0.000000,0.000000,0.250000,0,0);}
.m3a_c00334{transform:matrix(0.052632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.052632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.052632,0.000000,0.000000,0.250000,0,0);}
.m8b_c00334{transform:matrix(0.080883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080883,0.000000,0.000000,0.250000,0,0);}
.m3c_c00334{transform:matrix(0.082237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.082237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.082237,0.000000,0.000000,0.250000,0,0);}
.mae_c00334{transform:matrix(0.097499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097499,0.000000,0.000000,0.250000,0,0);}
.m83_c00334{transform:matrix(0.117648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117648,0.000000,0.000000,0.250000,0,0);}
.m82_c00334{transform:matrix(0.125001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125001,0.000000,0.000000,0.250000,0,0);}
.m40_c00334{transform:matrix(0.125049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125049,0.000000,0.000000,0.250000,0,0);}
.mbc_c00334{transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);}
.m73_c00334{transform:matrix(0.134523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134523,0.000000,0.000000,0.250000,0,0);}
.m43_c00334{transform:matrix(0.138158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138158,0.000000,0.000000,0.250000,0,0);}
.m68_c00334{transform:matrix(0.147436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147436,0.000000,0.000000,0.250000,0,0);}
.m3b_c00334{transform:matrix(0.151316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151316,0.000000,0.000000,0.250000,0,0);}
.m47_c00334{transform:matrix(0.153394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153394,0.000000,0.000000,0.250000,0,0);}
.m67_c00334{transform:matrix(0.160256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160256,0.000000,0.000000,0.250000,0,0);}
.ma1_c00334{transform:matrix(0.170998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170998,0.000000,0.000000,0.250000,0,0);}
.mb5_c00334{transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);}
.m9f_c00334{transform:matrix(0.181234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181234,0.000000,0.000000,0.250000,0,0);}
.m6_c00334{transform:matrix(0.182585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182585,0.000000,0.000000,0.250000,0,0);}
.m86_c00334{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00334{transform:matrix(0.189285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189285,0.000000,0.000000,0.250000,0,0);}
.m1f_c00334{transform:matrix(0.191282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191282,0.000000,0.000000,0.250000,0,0);}
.m9d_c00334{transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);}
.m79_c00334{transform:matrix(0.196717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196717,0.000000,0.000000,0.250000,0,0);}
.m42_c00334{transform:matrix(0.196829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196829,0.000000,0.000000,0.250000,0,0);}
.m3f_c00334{transform:matrix(0.197013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197013,0.000000,0.000000,0.250000,0,0);}
.m57_c00334{transform:matrix(0.197414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197414,0.000000,0.000000,0.250000,0,0);}
.m9a_c00334{transform:matrix(0.197618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197618,0.000000,0.000000,0.250000,0,0);}
.m8a_c00334{transform:matrix(0.198530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198530,0.000000,0.000000,0.250000,0,0);}
.m14_c00334{transform:matrix(0.200106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200106,0.000000,0.000000,0.250000,0,0);}
.m46_c00334{transform:matrix(0.201062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201062,0.000000,0.000000,0.250000,0,0);}
.m3e_c00334{transform:matrix(0.205622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205622,0.000000,0.000000,0.250000,0,0);}
.m7b_c00334{transform:matrix(0.205859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205859,0.000000,0.000000,0.250000,0,0);}
.m81_c00334{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);}
.m80_c00334{transform:matrix(0.209559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209559,0.000000,0.000000,0.250000,0,0);}
.m89_c00334{transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);}
.mb4_c00334{transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);}
.m3d_c00334{transform:matrix(0.215567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215567,0.000000,0.000000,0.250000,0,0);}
.mab_c00334{transform:matrix(0.215786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215786,0.000000,0.000000,0.250000,0,0);}
.ma9_c00334{transform:matrix(0.231124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231124,0.000000,0.000000,0.250000,0,0);}
.m48_c00334{transform:matrix(0.235886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235886,0.000000,0.000000,0.250000,0,0);}
.m38_c00334{transform:matrix(0.238179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238179,0.000000,0.000000,0.250000,0,0);}
.m98_c00334{transform:matrix(0.242284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242284,0.000000,0.000000,0.250000,0,0);}
.m2_c00334{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m0_c00334{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m58_c00334{transform:matrix(0.251803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251803,0.000000,0.000000,0.250000,0,0);}
.m6e_c00334{transform:matrix(0.252172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252172,0.000000,0.000000,0.250000,0,0);}
.m4_c00334{transform:matrix(0.252207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252207,0.000000,0.000000,0.250000,0,0);}
.m17_c00334{transform:matrix(0.254137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254137,0.000000,0.000000,0.250000,0,0);}
.m97_c00334{transform:matrix(0.260552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260552,0.000000,0.000000,0.250000,0,0);}
.mb1_c00334{transform:matrix(0.260718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260718,0.000000,0.000000,0.250000,0,0);}
.m1a_c00334{transform:matrix(0.263662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263662,0.000000,0.000000,0.250000,0,0);}
.m91_c00334{transform:matrix(0.265289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265289,0.000000,0.000000,0.250000,0,0);}
.m5e_c00334{transform:matrix(0.266602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266602,0.000000,0.000000,0.250000,0,0);}
.m35_c00334{transform:matrix(0.266749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266749,0.000000,0.000000,0.250000,0,0);}
.m53_c00334{transform:matrix(0.268492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268492,0.000000,0.000000,0.250000,0,0);}
.m54_c00334{transform:matrix(0.268555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268555,0.000000,0.000000,0.250000,0,0);}
.ma4_c00334{transform:matrix(0.268638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268638,0.000000,0.000000,0.250000,0,0);}
.m27_c00334{transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);}
.m32_c00334{transform:matrix(0.273584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273584,0.000000,0.000000,0.250000,0,0);}
.m31_c00334{transform:matrix(0.273757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273757,0.000000,0.000000,0.250000,0,0);}
.m28_c00334{transform:matrix(0.278689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278689,0.000000,0.000000,0.250000,0,0);}
.m2c_c00334{transform:matrix(0.278968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278968,0.000000,0.000000,0.250000,0,0);}
.m88_c00334{transform:matrix(0.279412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279412,0.000000,0.000000,0.250000,0,0);}
.mb3_c00334{transform:matrix(0.280655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280655,0.000000,0.000000,0.250000,0,0);}
.m45_c00334{transform:matrix(0.282895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282895,0.000000,0.000000,0.250000,0,0);}
.m7f_c00334{transform:matrix(0.283124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283124,0.000000,0.000000,0.250000,0,0);}
.m3_c00334{transform:matrix(0.283260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283260,0.000000,0.000000,0.250000,0,0);}
.m62_c00334{transform:matrix(0.283756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283756,0.000000,0.000000,0.250000,0,0);}
.mc_c00334{transform:matrix(0.285667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285667,0.000000,0.000000,0.250000,0,0);}
.mb9_c00334{transform:matrix(0.286342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286342,0.000000,0.000000,0.250000,0,0);}
.mba_c00334{transform:matrix(0.287568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287568,0.000000,0.000000,0.250000,0,0);}
.m5_c00334{transform:matrix(0.288262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288262,0.000000,0.000000,0.250000,0,0);}
.m69_c00334{transform:matrix(0.288785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288785,0.000000,0.000000,0.250000,0,0);}
.m6c_c00334{transform:matrix(0.288823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288823,0.000000,0.000000,0.250000,0,0);}
.m4b_c00334{transform:matrix(0.289062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289062,0.000000,0.000000,0.250000,0,0);}
.m16_c00334{transform:matrix(0.290451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290451,0.000000,0.000000,0.250000,0,0);}
.m2a_c00334{transform:matrix(0.290679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290679,0.000000,0.000000,0.250000,0,0);}
.m55_c00334{transform:matrix(0.291688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291688,0.000000,0.000000,0.250000,0,0);}
.ma7_c00334{transform:matrix(0.292300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292300,0.000000,0.000000,0.250000,0,0);}
.m19_c00334{transform:matrix(0.292773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292773,0.000000,0.000000,0.250000,0,0);}
.m95_c00334{transform:matrix(0.292776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292776,0.000000,0.000000,0.250000,0,0);}
.m5a_c00334{transform:matrix(0.294244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294244,0.000000,0.000000,0.250000,0,0);}
.m36_c00334{transform:matrix(0.294563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294563,0.000000,0.000000,0.250000,0,0);}
.ma5_c00334{transform:matrix(0.294767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294767,0.000000,0.000000,0.250000,0,0);}
.me_c00334{transform:matrix(0.295576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295576,0.000000,0.000000,0.250000,0,0);}
.m74_c00334{transform:matrix(0.295884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295884,0.000000,0.000000,0.250000,0,0);}
.m72_c00334{transform:matrix(0.297408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297408,0.000000,0.000000,0.250000,0,0);}
.m8f_c00334{transform:matrix(0.298157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298157,0.000000,0.000000,0.250000,0,0);}
.m4d_c00334{transform:matrix(0.300759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300759,0.000000,0.000000,0.250000,0,0);}
.m18_c00334{transform:matrix(0.300917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300917,0.000000,0.000000,0.250000,0,0);}
.m6a_c00334{transform:matrix(0.301332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301332,0.000000,0.000000,0.250000,0,0);}
.m33_c00334{transform:matrix(0.301510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301510,0.000000,0.000000,0.250000,0,0);}
.m9e_c00334{transform:matrix(0.303126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303126,0.000000,0.000000,0.250000,0,0);}
.m8e_c00334{transform:matrix(0.303218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303218,0.000000,0.000000,0.250000,0,0);}
.m59_c00334{transform:matrix(0.304473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304473,0.000000,0.000000,0.250000,0,0);}
.m1e_c00334{transform:matrix(0.304703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304703,0.000000,0.000000,0.250000,0,0);}
.maf_c00334{transform:matrix(0.305459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305459,0.000000,0.000000,0.250000,0,0);}
.m5f_c00334{transform:matrix(0.305545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305545,0.000000,0.000000,0.250000,0,0);}
.mb8_c00334{transform:matrix(0.305729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305729,0.000000,0.000000,0.250000,0,0);}
.m65_c00334{transform:matrix(0.306226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306226,0.000000,0.000000,0.250000,0,0);}
.m49_c00334{transform:matrix(0.306984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306984,0.000000,0.000000,0.250000,0,0);}
.m1_c00334{transform:matrix(0.307689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307689,0.000000,0.000000,0.250000,0,0);}
.m64_c00334{transform:matrix(0.308936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308936,0.000000,0.000000,0.250000,0,0);}
.m77_c00334{transform:matrix(0.310069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310069,0.000000,0.000000,0.250000,0,0);}
.m6f_c00334{transform:matrix(0.310142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310142,0.000000,0.000000,0.250000,0,0);}
.m4f_c00334{transform:matrix(0.310606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310606,0.000000,0.000000,0.250000,0,0);}
.m34_c00334{transform:matrix(0.311112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311112,0.000000,0.000000,0.250000,0,0);}
.mb6_c00334{transform:matrix(0.311491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311491,0.000000,0.000000,0.250000,0,0);}
.m2e_c00334{transform:matrix(0.311516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311516,0.000000,0.000000,0.250000,0,0);}
.m23_c00334{transform:matrix(0.311894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311894,0.000000,0.000000,0.250000,0,0);}
.mb_c00334{transform:matrix(0.312325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312325,0.000000,0.000000,0.250000,0,0);}
.ma_c00334{transform:matrix(0.313314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313314,0.000000,0.000000,0.250000,0,0);}
.m99_c00334{transform:matrix(0.313627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313627,0.000000,0.000000,0.250000,0,0);}
.m66_c00334{transform:matrix(0.314197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314197,0.000000,0.000000,0.250000,0,0);}
.mac_c00334{transform:matrix(0.314565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314565,0.000000,0.000000,0.250000,0,0);}
.m29_c00334{transform:matrix(0.314919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314919,0.000000,0.000000,0.250000,0,0);}
.m4a_c00334{transform:matrix(0.316003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316003,0.000000,0.000000,0.250000,0,0);}
.m13_c00334{transform:matrix(0.317952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317952,0.000000,0.000000,0.250000,0,0);}
.m78_c00334{transform:matrix(0.318095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318095,0.000000,0.000000,0.250000,0,0);}
.m60_c00334{transform:matrix(0.319566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319566,0.000000,0.000000,0.250000,0,0);}
.md_c00334{transform:matrix(0.320642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320642,0.000000,0.000000,0.250000,0,0);}
.m94_c00334{transform:matrix(0.320938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320938,0.000000,0.000000,0.250000,0,0);}
.m25_c00334{transform:matrix(0.322340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322340,0.000000,0.000000,0.250000,0,0);}
.m7c_c00334{transform:matrix(0.322557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322557,0.000000,0.000000,0.250000,0,0);}
.m70_c00334{transform:matrix(0.323239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323239,0.000000,0.000000,0.250000,0,0);}
.m39_c00334{transform:matrix(0.323401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323401,0.000000,0.000000,0.250000,0,0);}
.m8_c00334{transform:matrix(0.324686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324686,0.000000,0.000000,0.250000,0,0);}
.m96_c00334{transform:matrix(0.324949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324949,0.000000,0.000000,0.250000,0,0);}
.m24_c00334{transform:matrix(0.326709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326709,0.000000,0.000000,0.250000,0,0);}
.ma6_c00334{transform:matrix(0.327008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327008,0.000000,0.000000,0.250000,0,0);}
.m30_c00334{transform:matrix(0.327595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327595,0.000000,0.000000,0.250000,0,0);}
.m1d_c00334{transform:matrix(0.327890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327890,0.000000,0.000000,0.250000,0,0);}
.m87_c00334{transform:matrix(0.329518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329518,0.000000,0.000000,0.250000,0,0);}
.m7e_c00334{transform:matrix(0.329592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329592,0.000000,0.000000,0.250000,0,0);}
.m5b_c00334{transform:matrix(0.330298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330298,0.000000,0.000000,0.250000,0,0);}
.m8c_c00334{transform:matrix(0.331199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331199,0.000000,0.000000,0.250000,0,0);}
.m41_c00334{transform:matrix(0.331854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331854,0.000000,0.000000,0.250000,0,0);}
.m1b_c00334{transform:matrix(0.335401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335401,0.000000,0.000000,0.250000,0,0);}
.m61_c00334{transform:matrix(0.337581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337581,0.000000,0.000000,0.250000,0,0);}
.maa_c00334{transform:matrix(0.339075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339075,0.000000,0.000000,0.250000,0,0);}
.m63_c00334{transform:matrix(0.339178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339178,0.000000,0.000000,0.250000,0,0);}
.mad_c00334{transform:matrix(0.341527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341527,0.000000,0.000000,0.250000,0,0);}
.m4c_c00334{transform:matrix(0.342531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342531,0.000000,0.000000,0.250000,0,0);}
.ma2_c00334{transform:matrix(0.345267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345267,0.000000,0.000000,0.250000,0,0);}
.m51_c00334{transform:matrix(0.345292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345292,0.000000,0.000000,0.250000,0,0);}
.m90_c00334{transform:matrix(0.345388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345388,0.000000,0.000000,0.250000,0,0);}
.m56_c00334{transform:matrix(0.345712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345712,0.000000,0.000000,0.250000,0,0);}
.m9_c00334{transform:matrix(0.346016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346016,0.000000,0.000000,0.250000,0,0);}
.ma0_c00334{transform:matrix(0.346047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346047,0.000000,0.000000,0.250000,0,0);}
.m2f_c00334{transform:matrix(0.346429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346429,0.000000,0.000000,0.250000,0,0);}
.m8d_c00334{transform:matrix(0.346616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346616,0.000000,0.000000,0.250000,0,0);}
.m15_c00334{transform:matrix(0.348379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348379,0.000000,0.000000,0.250000,0,0);}
.mb2_c00334{transform:matrix(0.348495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348495,0.000000,0.000000,0.250000,0,0);}
.m10_c00334{transform:matrix(0.349199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349199,0.000000,0.000000,0.250000,0,0);}
.m52_c00334{transform:matrix(0.350592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350592,0.000000,0.000000,0.250000,0,0);}
.m7_c00334{transform:matrix(0.351186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351186,0.000000,0.000000,0.250000,0,0);}
.m20_c00334{transform:matrix(0.352379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352379,0.000000,0.000000,0.250000,0,0);}
.m76_c00334{transform:matrix(0.354668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354668,0.000000,0.000000,0.250000,0,0);}
.m21_c00334{transform:matrix(0.354951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354951,0.000000,0.000000,0.250000,0,0);}
.m2b_c00334{transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);}
.mbb_c00334{transform:matrix(0.358899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358899,0.000000,0.000000,0.250000,0,0);}
.m7a_c00334{transform:matrix(0.361284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361284,0.000000,0.000000,0.250000,0,0);}
.m37_c00334{transform:matrix(0.361525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361525,0.000000,0.000000,0.250000,0,0);}
.m6b_c00334{transform:matrix(0.364903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364903,0.000000,0.000000,0.250000,0,0);}
.ma8_c00334{transform:matrix(0.365003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365003,0.000000,0.000000,0.250000,0,0);}
.m5c_c00334{transform:matrix(0.368712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368712,0.000000,0.000000,0.250000,0,0);}
.m71_c00334{transform:matrix(0.369684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369684,0.000000,0.000000,0.250000,0,0);}
.m4e_c00334{transform:matrix(0.369768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369768,0.000000,0.000000,0.250000,0,0);}
.mf_c00334{transform:matrix(0.371339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371339,0.000000,0.000000,0.250000,0,0);}
.m26_c00334{transform:matrix(0.371974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371974,0.000000,0.000000,0.250000,0,0);}
.m93_c00334{transform:matrix(0.372435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372435,0.000000,0.000000,0.250000,0,0);}
.m6d_c00334{transform:matrix(0.373096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373096,0.000000,0.000000,0.250000,0,0);}
.ma3_c00334{transform:matrix(0.375559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375559,0.000000,0.000000,0.250000,0,0);}
.m50_c00334{transform:matrix(0.379025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379025,0.000000,0.000000,0.250000,0,0);}
.m5d_c00334{transform:matrix(0.381927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381927,0.000000,0.000000,0.250000,0,0);}
.m75_c00334{transform:matrix(0.385335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385335,0.000000,0.000000,0.250000,0,0);}
.m1c_c00334{transform:matrix(0.385525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385525,0.000000,0.000000,0.250000,0,0);}
.mb7_c00334{transform:matrix(0.389048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389048,0.000000,0.000000,0.250000,0,0);}
.m2d_c00334{transform:matrix(0.392058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392058,0.000000,0.000000,0.250000,0,0);}
.m22_c00334{transform:matrix(0.392790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392790,0.000000,0.000000,0.250000,0,0);}
.m92_c00334{transform:matrix(0.403672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403672,0.000000,0.000000,0.250000,0,0);}
.m7d_c00334{transform:matrix(0.407354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407354,0.000000,0.000000,0.250000,0,0);}
.m12_c00334{transform:matrix(0.411147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411147,0.000000,0.000000,0.250000,0,0);}
.m11_c00334{transform:matrix(0.418355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418355,0.000000,0.000000,0.250000,0,0);}
.mb0_c00334{transform:matrix(0.419248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419248,0.000000,0.000000,0.250000,0,0);}
.v2_c00334{vertical-align:-8.533800px;}
.v0_c00334{vertical-align:0.000000px;}
.v1_c00334{vertical-align:8.533800px;}
.lsd_c00334{letter-spacing:-3.229380px;}
.ls5_c00334{letter-spacing:-2.737350px;}
.ls7_c00334{letter-spacing:-2.529450px;}
.lsf_c00334{letter-spacing:-1.741707px;}
.lsc_c00334{letter-spacing:-1.115730px;}
.lse_c00334{letter-spacing:-0.443086px;}
.ls15_c00334{letter-spacing:-0.137313px;}
.ls3_c00334{letter-spacing:0.000000px;}
.ls9_c00334{letter-spacing:1.178001px;}
.ls18_c00334{letter-spacing:1.514700px;}
.ls8_c00334{letter-spacing:1.647756px;}
.ls1_c00334{letter-spacing:1.879020px;}
.ls10_c00334{letter-spacing:2.124738px;}
.ls19_c00334{letter-spacing:2.327094px;}
.ls16_c00334{letter-spacing:2.851200px;}
.ls6_c00334{letter-spacing:3.613500px;}
.ls4_c00334{letter-spacing:3.910500px;}
.ls12_c00334{letter-spacing:4.306500px;}
.lsa_c00334{letter-spacing:4.375810px;}
.ls2_c00334{letter-spacing:10.406880px;}
.ls0_c00334{letter-spacing:17.968500px;}
.ls1a_c00334{letter-spacing:29.937798px;}
.ls14_c00334{letter-spacing:48.470598px;}
.ls17_c00334{letter-spacing:49.896198px;}
.lsb_c00334{letter-spacing:54.172998px;}
.ls11_c00334{letter-spacing:55.598598px;}
.ls13_c00334{letter-spacing:59.875398px;}
.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;}
}
.ws2_c00334{word-spacing:-19.946520px;}
.ws0_c00334{word-spacing:-18.067500px;}
.ws3_c00334{word-spacing:-17.930187px;}
.ws4_c00334{word-spacing:0.000000px;}
.ws1_c00334{word-spacing:7.299270px;}
._b_c00334{margin-left:-35.773650px;}
._8_c00334{margin-left:-23.632290px;}
._7_c00334{margin-left:-14.670810px;}
._9_c00334{margin-left:-13.008600px;}
._5_c00334{margin-left:-8.939700px;}
._a_c00334{margin-left:-5.492520px;}
._11_c00334{margin-left:-3.758040px;}
._12_c00334{margin-left:-1.011780px;}
._14_c00334{width:1.228590px;}
._10_c00334{width:2.818530px;}
._c_c00334{width:4.689389px;}
._16_c00334{width:9.250560px;}
._1_c00334{width:10.551420px;}
._4_c00334{width:12.213630px;}
._3_c00334{width:20.886030px;}
._6_c00334{width:22.548240px;}
._e_c00334{width:23.993640px;}
._d_c00334{width:34.255980px;}
._0_c00334{width:35.556840px;}
._13_c00334{width:38.261520px;}
._2_c00334{width:40.307850px;}
._f_c00334{width:42.526440px;}
._15_c00334{width:43.940160px;}
._17_c00334{width:107.381340px;}
.fc0_c00334{color:transparent;}
.fsc_c00334{font-size:21.780000px;}
.fs0_c00334{font-size:22.176000px;}
.fs14_c00334{font-size:29.937798px;}
.fs11_c00334{font-size:30.294000px;}
.fs6_c00334{font-size:31.878000px;}
.fs15_c00334{font-size:33.660000px;}
.fs13_c00334{font-size:34.650000px;}
.fs9_c00334{font-size:44.352000px;}
.fse_c00334{font-size:48.470598px;}
.fs3_c00334{font-size:49.500000px;}
.fs10_c00334{font-size:49.896198px;}
.fs5_c00334{font-size:54.172998px;}
.fsa_c00334{font-size:55.598598px;}
.fsf_c00334{font-size:57.024000px;}
.fsd_c00334{font-size:59.875398px;}
.fs8_c00334{font-size:66.132198px;}
.fs12_c00334{font-size:66.528000px;}
.fs2_c00334{font-size:72.270000px;}
.fs1_c00334{font-size:78.210000px;}
.fsb_c00334{font-size:86.130000px;}
.fs4_c00334{font-size:87.516198px;}
.fs7_c00334{font-size:92.268000px;}
.y0_c00334{bottom:0.000000px;}
.y1f_c00334{bottom:28.780335px;}
.y1e_c00334{bottom:65.489535px;}
.y1_c00334{bottom:76.500000px;}
.y1d_c00334{bottom:77.250735px;}
.y1c_c00334{bottom:89.011935px;}
.y1b_c00334{bottom:100.416735px;}
.y1a_c00334{bottom:142.828335px;}
.y19_c00334{bottom:166.707135px;}
.y18_c00334{bottom:168.489135px;}
.y17_c00334{bottom:173.473785px;}
.y16_c00334{bottom:208.400985px;}
.y15_c00334{bottom:241.194735px;}
.y14_c00334{bottom:275.409135px;}
.y13_c00334{bottom:308.197935px;}
.y12_c00334{bottom:333.145935px;}
.y11_c00334{bottom:340.981785px;}
.y10_c00334{bottom:404.425935px;}
.yf_c00334{bottom:437.214735px;}
.ye_c00334{bottom:469.998585px;}
.yd_c00334{bottom:502.435935px;}
.yc_c00334{bottom:530.947935px;}
.yb_c00334{bottom:598.302585px;}
.ya_c00334{bottom:725.893785px;}
.y9_c00334{bottom:760.108185px;}
.y8_c00334{bottom:795.391785px;}
.y7_c00334{bottom:828.898335px;}
.y6_c00334{bottom:863.112735px;}
.y5_c00334{bottom:896.257935px;}
.y4_c00334{bottom:929.041785px;}
.y2_c00334{bottom:1078.373385px;}
.y3_c00334{bottom:1080.868185px;}
.h14_c00334{height:19.938573px;}
.hc_c00334{height:22.715859px;}
.h2_c00334{height:23.128875px;}
.h11_c00334{height:31.595695px;}
.h7_c00334{height:32.127047px;}
.he_c00334{height:32.281418px;}
.h15_c00334{height:33.035449px;}
.h10_c00334{height:33.230868px;}
.h6_c00334{height:36.079217px;}
.h13_c00334{height:36.138867px;}
.ha_c00334{height:37.028666px;}
.hd_c00334{height:39.877015px;}
.h9_c00334{height:46.257750px;}
.hf_c00334{height:59.474250px;}
.h12_c00334{height:69.386625px;}
.h4_c00334{height:70.929053px;}
.h3_c00334{height:76.758838px;}
.hb_c00334{height:84.531885px;}
.h5_c00334{height:85.892362px;}
.h8_c00334{height:90.555996px;}
.h1_c00334{height:1110.000000px;}
.h0_c00334{height:1263.000000px;}
.w1_c00334{width:775.500000px;}
.w0_c00334{width:892.500000px;}
.x0_c00334{left:0.000000px;}
.x1_c00334{left:58.500000px;}
.x16_c00334{left:91.532085px;}
.x5_c00334{left:93.145785px;}
.x77_c00334{left:94.630785px;}
.x6_c00334{left:103.996185px;}
.x4e_c00334{left:115.059435px;}
.x71_c00334{left:116.143485px;}
.x31_c00334{left:125.899935px;}
.x78_c00334{left:127.340385px;}
.x2_c00334{left:134.621835px;}
.x17_c00334{left:137.651235px;}
.x24_c00334{left:148.056135px;}
.x2c_c00334{left:149.120385px;}
.x18_c00334{left:158.614485px;}
.x56_c00334{left:160.173735px;}
.x4f_c00334{left:162.218085px;}
.x7_c00334{left:170.123235px;}
.x66_c00334{left:171.157785px;}
.x39_c00334{left:172.840785px;}
.x25_c00334{left:180.849885px;}
.x79_c00334{left:182.156685px;}
.x46_c00334{left:184.072335px;}
.x3a_c00334{left:190.700385px;}
.x6f_c00334{left:191.725035px;}
.x5d_c00334{left:193.873335px;}
.x8_c00334{left:203.100135px;}
.x50_c00334{left:214.866285px;}
.x67_c00334{left:216.123585px;}
.x26_c00334{left:226.276035px;}
.x19_c00334{left:236.443335px;}
.x9_c00334{left:237.557085px;}
.xa_c00334{left:247.966935px;}
.x2d_c00334{left:259.109385px;}
.x27_c00334{left:260.683485px;}
.x3b_c00334{left:271.048785px;}
.x5e_c00334{left:275.795835px;}
.x72_c00334{left:277.978785px;}
.xb_c00334{left:281.636835px;}
.x82_c00334{left:288.180735px;}
.x2e_c00334{left:290.804235px;}
.x32_c00334{left:292.002135px;}
.x57_c00334{left:293.432685px;}
.x33_c00334{left:302.694135px;}
.xc_c00334{left:304.094985px;}
.x68_c00334{left:314.485035px;}
.x7d_c00334{left:315.762135px;}
.x58_c00334{left:324.286035px;}
.x70_c00334{left:334.265235px;}
.x1a_c00334{left:336.591735px;}
.x73_c00334{left:346.759035px;}
.xd_c00334{left:348.031185px;}
.x3c_c00334{left:350.540835px;}
.x3d_c00334{left:352.530735px;}
.xe_c00334{left:358.099485px;}
.x5f_c00334{left:359.544885px;}
.x1b_c00334{left:369.395385px;}
.x51_c00334{left:370.464585px;}
.x34_c00334{left:371.776335px;}
.x74_c00334{left:380.161635px;}
.x2f_c00334{left:381.508035px;}
.x52_c00334{left:391.838685px;}
.x69_c00334{left:393.808785px;}
.x3e_c00334{left:396.991635px;}
.x47_c00334{left:403.575135px;}
.x6a_c00334{left:409.490385px;}
.x6b_c00334{left:411.990135px;}
.x28_c00334{left:413.717685px;}
.x3f_c00334{left:414.841335px;}
.x1c_c00334{left:423.691935px;}
.x35_c00334{left:424.973985px;}
.x7a_c00334{left:426.775785px;}
.xf_c00334{left:436.042185px;}
.x7b_c00334{left:437.393535px;}
.x48_c00334{left:448.422135px;}
.x40_c00334{left:454.753185px;}
.x41_c00334{left:458.322135px;}
.x59_c00334{left:461.262435px;}
.x49_c00334{left:468.964635px;}
.x42_c00334{left:476.815335px;}
.x36_c00334{left:478.627035px;}
.x60_c00334{left:479.854635px;}
.x7e_c00334{left:480.894135px;}
.x29_c00334{left:490.903035px;}
.x43_c00334{left:491.922735px;}
.x75_c00334{left:493.046385px;}
.x44_c00334{left:502.169235px;}
.x5a_c00334{left:504.010635px;}
.x10_c00334{left:513.717585px;}
.x2a_c00334{left:523.137435px;}
.x1d_c00334{left:524.894685px;}
.x5b_c00334{left:535.319385px;}
.x4a_c00334{left:536.492535px;}
.x1e_c00334{left:545.961885px;}
.x45_c00334{left:547.575585px;}
.x37_c00334{left:556.817235px;}
.x6c_c00334{left:558.109185px;}
.x53_c00334{left:569.355585px;}
.x1f_c00334{left:580.285185px;}
.x2b_c00334{left:589.492185px;}
.x11_c00334{left:591.056385px;}
.x4b_c00334{left:592.076085px;}
.x12_c00334{left:601.193985px;}
.x54_c00334{left:603.154185px;}
.x20_c00334{left:613.118535px;}
.x61_c00334{left:624.221385px;}
.x4c_c00334{left:635.368785px;}
.x13_c00334{left:645.580635px;}
.x6d_c00334{left:646.852785px;}
.x62_c00334{left:651.114735px;}
.x76_c00334{left:656.426085px;}
.x63_c00334{left:657.990285px;}
.x7f_c00334{left:659.039685px;}
.x6e_c00334{left:660.395985px;}
.x3_c00334{left:668.301135px;}
.x4d_c00334{left:669.741585px;}
.x14_c00334{left:678.240735px;}
.x21_c00334{left:680.686035px;}
.x64_c00334{left:689.888085px;}
.x7c_c00334{left:691.209735px;}
.x4_c00334{left:692.239335px;}
.x22_c00334{left:700.629585px;}
.x65_c00334{left:701.857185px;}
.x80_c00334{left:706.822035px;}
.x38_c00334{left:708.782235px;}
.x81_c00334{left:711.187935px;}
.x30_c00334{left:712.202685px;}
.x55_c00334{left:713.950035px;}
.x15_c00334{left:722.904585px;}
.x5c_c00334{left:734.665785px;}
.x23_c00334{left:745.001385px;}
@media print{
.v2_c00334{vertical-align:-7.585600pt;}
.v0_c00334{vertical-align:0.000000pt;}
.v1_c00334{vertical-align:7.585600pt;}
.lsd_c00334{letter-spacing:-2.870560pt;}
.ls5_c00334{letter-spacing:-2.433200pt;}
.ls7_c00334{letter-spacing:-2.248400pt;}
.lsf_c00334{letter-spacing:-1.548184pt;}
.lsc_c00334{letter-spacing:-0.991760pt;}
.lse_c00334{letter-spacing:-0.393854pt;}
.ls15_c00334{letter-spacing:-0.122056pt;}
.ls3_c00334{letter-spacing:0.000000pt;}
.ls9_c00334{letter-spacing:1.047112pt;}
.ls18_c00334{letter-spacing:1.346400pt;}
.ls8_c00334{letter-spacing:1.464672pt;}
.ls1_c00334{letter-spacing:1.670240pt;}
.ls10_c00334{letter-spacing:1.888656pt;}
.ls19_c00334{letter-spacing:2.068528pt;}
.ls16_c00334{letter-spacing:2.534400pt;}
.ls6_c00334{letter-spacing:3.212000pt;}
.ls4_c00334{letter-spacing:3.476000pt;}
.ls12_c00334{letter-spacing:3.828000pt;}
.lsa_c00334{letter-spacing:3.889609pt;}
.ls2_c00334{letter-spacing:9.250560pt;}
.ls0_c00334{letter-spacing:15.972000pt;}
.ls1a_c00334{letter-spacing:26.611376pt;}
.ls14_c00334{letter-spacing:43.084976pt;}
.ls17_c00334{letter-spacing:44.352176pt;}
.lsb_c00334{letter-spacing:48.153776pt;}
.ls11_c00334{letter-spacing:49.420976pt;}
.ls13_c00334{letter-spacing:53.222576pt;}
.ws2_c00334{word-spacing:-17.730240pt;}
.ws0_c00334{word-spacing:-16.060000pt;}
.ws3_c00334{word-spacing:-15.937944pt;}
.ws4_c00334{word-spacing:0.000000pt;}
.ws1_c00334{word-spacing:6.488240pt;}
._b_c00334{margin-left:-31.798800pt;}
._8_c00334{margin-left:-21.006480pt;}
._7_c00334{margin-left:-13.040720pt;}
._9_c00334{margin-left:-11.563200pt;}
._5_c00334{margin-left:-7.946400pt;}
._a_c00334{margin-left:-4.882240pt;}
._11_c00334{margin-left:-3.340480pt;}
._12_c00334{margin-left:-0.899360pt;}
._14_c00334{width:1.092080pt;}
._10_c00334{width:2.505360pt;}
._c_c00334{width:4.168346pt;}
._16_c00334{width:8.222720pt;}
._1_c00334{width:9.379040pt;}
._4_c00334{width:10.856560pt;}
._3_c00334{width:18.565360pt;}
._6_c00334{width:20.042880pt;}
._e_c00334{width:21.327680pt;}
._d_c00334{width:30.449760pt;}
._0_c00334{width:31.606080pt;}
._13_c00334{width:34.010240pt;}
._2_c00334{width:35.829200pt;}
._f_c00334{width:37.801280pt;}
._15_c00334{width:39.057920pt;}
._17_c00334{width:95.450080pt;}
.fsc_c00334{font-size:19.360000pt;}
.fs0_c00334{font-size:19.712000pt;}
.fs14_c00334{font-size:26.611376pt;}
.fs11_c00334{font-size:26.928000pt;}
.fs6_c00334{font-size:28.336000pt;}
.fs15_c00334{font-size:29.920000pt;}
.fs13_c00334{font-size:30.800000pt;}
.fs9_c00334{font-size:39.424000pt;}
.fse_c00334{font-size:43.084976pt;}
.fs3_c00334{font-size:44.000000pt;}
.fs10_c00334{font-size:44.352176pt;}
.fs5_c00334{font-size:48.153776pt;}
.fsa_c00334{font-size:49.420976pt;}
.fsf_c00334{font-size:50.688000pt;}
.fsd_c00334{font-size:53.222576pt;}
.fs8_c00334{font-size:58.784176pt;}
.fs12_c00334{font-size:59.136000pt;}
.fs2_c00334{font-size:64.240000pt;}
.fs1_c00334{font-size:69.520000pt;}
.fsb_c00334{font-size:76.560000pt;}
.fs4_c00334{font-size:77.792176pt;}
.fs7_c00334{font-size:82.016000pt;}
.y0_c00334{bottom:0.000000pt;}
.y1f_c00334{bottom:25.582520pt;}
.y1e_c00334{bottom:58.212920pt;}
.y1_c00334{bottom:68.000000pt;}
.y1d_c00334{bottom:68.667320pt;}
.y1c_c00334{bottom:79.121720pt;}
.y1b_c00334{bottom:89.259320pt;}
.y1a_c00334{bottom:126.958520pt;}
.y19_c00334{bottom:148.184120pt;}
.y18_c00334{bottom:149.768120pt;}
.y17_c00334{bottom:154.198920pt;}
.y16_c00334{bottom:185.245320pt;}
.y15_c00334{bottom:214.395320pt;}
.y14_c00334{bottom:244.808120pt;}
.y13_c00334{bottom:273.953720pt;}
.y12_c00334{bottom:296.129720pt;}
.y11_c00334{bottom:303.094920pt;}
.y10_c00334{bottom:359.489720pt;}
.yf_c00334{bottom:388.635320pt;}
.ye_c00334{bottom:417.776520pt;}
.yd_c00334{bottom:446.609720pt;}
.yc_c00334{bottom:471.953720pt;}
.yb_c00334{bottom:531.824520pt;}
.ya_c00334{bottom:645.238920pt;}
.y9_c00334{bottom:675.651720pt;}
.y8_c00334{bottom:707.014920pt;}
.y7_c00334{bottom:736.798520pt;}
.y6_c00334{bottom:767.211320pt;}
.y5_c00334{bottom:796.673720pt;}
.y4_c00334{bottom:825.814920pt;}
.y2_c00334{bottom:958.554120pt;}
.y3_c00334{bottom:960.771720pt;}
.h14_c00334{height:17.723176pt;}
.hc_c00334{height:20.191875pt;}
.h2_c00334{height:20.559000pt;}
.h11_c00334{height:28.085063pt;}
.h7_c00334{height:28.557375pt;}
.he_c00334{height:28.694594pt;}
.h15_c00334{height:29.364844pt;}
.h10_c00334{height:29.538549pt;}
.h6_c00334{height:32.070415pt;}
.h13_c00334{height:32.123438pt;}
.ha_c00334{height:32.914370pt;}
.hd_c00334{height:35.446236pt;}
.h9_c00334{height:41.118000pt;}
.hf_c00334{height:52.866000pt;}
.h12_c00334{height:61.677000pt;}
.h4_c00334{height:63.048047pt;}
.h3_c00334{height:68.230078pt;}
.hb_c00334{height:75.139453pt;}
.h5_c00334{height:76.348766pt;}
.h8_c00334{height:80.494219pt;}
.h1_c00334{height:986.666667pt;}
.h0_c00334{height:1122.666667pt;}
.w1_c00334{width:689.333333pt;}
.w0_c00334{width:793.333333pt;}
.x0_c00334{left:0.000000pt;}
.x1_c00334{left:52.000000pt;}
.x16_c00334{left:81.361853pt;}
.x5_c00334{left:82.796253pt;}
.x77_c00334{left:84.116253pt;}
.x6_c00334{left:92.441053pt;}
.x4e_c00334{left:102.275053pt;}
.x71_c00334{left:103.238653pt;}
.x31_c00334{left:111.911053pt;}
.x78_c00334{left:113.191453pt;}
.x2_c00334{left:119.663853pt;}
.x17_c00334{left:122.356653pt;}
.x24_c00334{left:131.605453pt;}
.x2c_c00334{left:132.551453pt;}
.x18_c00334{left:140.990653pt;}
.x56_c00334{left:142.376653pt;}
.x4f_c00334{left:144.193853pt;}
.x7_c00334{left:151.220653pt;}
.x66_c00334{left:152.140253pt;}
.x39_c00334{left:153.636253pt;}
.x25_c00334{left:160.755453pt;}
.x79_c00334{left:161.917053pt;}
.x46_c00334{left:163.619853pt;}
.x3a_c00334{left:169.511453pt;}
.x6f_c00334{left:170.422253pt;}
.x5d_c00334{left:172.331853pt;}
.x8_c00334{left:180.533453pt;}
.x50_c00334{left:190.992253pt;}
.x67_c00334{left:192.109853pt;}
.x26_c00334{left:201.134253pt;}
.x19_c00334{left:210.171853pt;}
.x9_c00334{left:211.161853pt;}
.xa_c00334{left:220.415053pt;}
.x2d_c00334{left:230.319453pt;}
.x27_c00334{left:231.718653pt;}
.x3b_c00334{left:240.932253pt;}
.x5e_c00334{left:245.151853pt;}
.x72_c00334{left:247.092253pt;}
.xb_c00334{left:250.343853pt;}
.x82_c00334{left:256.160653pt;}
.x2e_c00334{left:258.492653pt;}
.x32_c00334{left:259.557453pt;}
.x57_c00334{left:260.829053pt;}
.x33_c00334{left:269.061453pt;}
.xc_c00334{left:270.306653pt;}
.x68_c00334{left:279.542253pt;}
.x7d_c00334{left:280.677453pt;}
.x58_c00334{left:288.254253pt;}
.x70_c00334{left:297.124653pt;}
.x1a_c00334{left:299.192653pt;}
.x73_c00334{left:308.230253pt;}
.xd_c00334{left:309.361053pt;}
.x3c_c00334{left:311.591853pt;}
.x3d_c00334{left:313.360653pt;}
.xe_c00334{left:318.310653pt;}
.x5f_c00334{left:319.595453pt;}
.x1b_c00334{left:328.351453pt;}
.x51_c00334{left:329.301853pt;}
.x34_c00334{left:330.467853pt;}
.x74_c00334{left:337.921453pt;}
.x2f_c00334{left:339.118253pt;}
.x52_c00334{left:348.301053pt;}
.x69_c00334{left:350.052253pt;}
.x3e_c00334{left:352.881453pt;}
.x47_c00334{left:358.733453pt;}
.x6a_c00334{left:363.991453pt;}
.x6b_c00334{left:366.213453pt;}
.x28_c00334{left:367.749053pt;}
.x3f_c00334{left:368.747853pt;}
.x1c_c00334{left:376.615053pt;}
.x35_c00334{left:377.754653pt;}
.x7a_c00334{left:379.356253pt;}
.xf_c00334{left:387.593053pt;}
.x7b_c00334{left:388.794253pt;}
.x48_c00334{left:398.597453pt;}
.x40_c00334{left:404.225053pt;}
.x41_c00334{left:407.397453pt;}
.x59_c00334{left:410.011053pt;}
.x49_c00334{left:416.857453pt;}
.x42_c00334{left:423.835853pt;}
.x36_c00334{left:425.446253pt;}
.x60_c00334{left:426.537453pt;}
.x7e_c00334{left:427.461453pt;}
.x29_c00334{left:436.358253pt;}
.x43_c00334{left:437.264653pt;}
.x75_c00334{left:438.263453pt;}
.x44_c00334{left:446.372653pt;}
.x5a_c00334{left:448.009453pt;}
.x10_c00334{left:456.637853pt;}
.x2a_c00334{left:465.011053pt;}
.x1d_c00334{left:466.573053pt;}
.x5b_c00334{left:475.839453pt;}
.x4a_c00334{left:476.882253pt;}
.x1e_c00334{left:485.299453pt;}
.x45_c00334{left:486.733853pt;}
.x37_c00334{left:494.948653pt;}
.x6c_c00334{left:496.097053pt;}
.x53_c00334{left:506.093853pt;}
.x1f_c00334{left:515.809053pt;}
.x2b_c00334{left:523.993053pt;}
.x11_c00334{left:525.383453pt;}
.x4b_c00334{left:526.289853pt;}
.x12_c00334{left:534.394653pt;}
.x54_c00334{left:536.137053pt;}
.x20_c00334{left:544.994253pt;}
.x61_c00334{left:554.863453pt;}
.x4c_c00334{left:564.772253pt;}
.x13_c00334{left:573.849453pt;}
.x6d_c00334{left:574.980253pt;}
.x62_c00334{left:578.768653pt;}
.x76_c00334{left:583.489853pt;}
.x63_c00334{left:584.880253pt;}
.x7f_c00334{left:585.813053pt;}
.x6e_c00334{left:587.018653pt;}
.x3_c00334{left:594.045453pt;}
.x4d_c00334{left:595.325853pt;}
.x14_c00334{left:602.880653pt;}
.x21_c00334{left:605.054253pt;}
.x64_c00334{left:613.233853pt;}
.x7c_c00334{left:614.408653pt;}
.x4_c00334{left:615.323853pt;}
.x22_c00334{left:622.781853pt;}
.x65_c00334{left:623.873053pt;}
.x80_c00334{left:628.286253pt;}
.x38_c00334{left:630.028653pt;}
.x81_c00334{left:632.167053pt;}
.x30_c00334{left:633.069053pt;}
.x55_c00334{left:634.622253pt;}
.x15_c00334{left:642.581853pt;}
.x5c_c00334{left:653.036253pt;}
.x23_c00334{left:662.223453pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_947bd5ea1d15422ded92653d.woff2')format("woff");}.ff1_c00335{font-family:ff1_c00335;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00335;src:url('chunks/assets/font_aff7c12d1db4e9a7c0ba792f.woff2')format("woff");}.ff2_c00335{font-family:ff2_c00335;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00335;src:url('chunks/assets/font_ba21abde905ed93fb444fa22.woff2')format("woff");}.ff3_c00335{font-family:ff3_c00335;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00335;src:url('chunks/assets/font_846f18db38177a11f8bb00ac.woff2')format("woff");}.ff4_c00335{font-family:ff4_c00335;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00335;src:url('chunks/assets/font_b03aad424ddd3469fe581e67.woff2')format("woff");}.ff5_c00335{font-family:ff5_c00335;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00335;src:url('chunks/assets/font_c2d0afb197609c89519ca5dc.woff2')format("woff");}.ff6_c00335{font-family:ff6_c00335;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00335;src:url('chunks/assets/font_bc89fe32fb8c11c966fc1a22.woff2')format("woff");}.ff7_c00335{font-family:ff7_c00335;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5b_c00335{transform:matrix(0.064286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064286,0.000000,0.000000,0.250000,0,0);}
.mcd_c00335{transform:matrix(0.081726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081726,0.000000,0.000000,0.250000,0,0);}
.ma1_c00335{transform:matrix(0.083334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083334,0.000000,0.000000,0.250000,0,0);}
.m5f_c00335{transform:matrix(0.098215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098215,0.000000,0.000000,0.250000,0,0);}
.m4d_c00335{transform:matrix(0.106250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106250,0.000000,0.000000,0.250000,0,0);}
.m36_c00335{transform:matrix(0.110294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110294,0.000000,0.000000,0.250000,0,0);}
.ma4_c00335{transform:matrix(0.119890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119890,0.000000,0.000000,0.250000,0,0);}
.m8e_c00335{transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00335{transform:matrix(0.139423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139423,0.000000,0.000000,0.250000,0,0);}
.m78_c00335{transform:matrix(0.148329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148329,0.000000,0.000000,0.250000,0,0);}
.m76_c00335{transform:matrix(0.150003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150003,0.000000,0.000000,0.250000,0,0);}
.m7e_c00335{transform:matrix(0.158729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158729,0.000000,0.000000,0.250000,0,0);}
.m37_c00335{transform:matrix(0.165442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165442,0.000000,0.000000,0.250000,0,0);}
.m5a_c00335{transform:matrix(0.171429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171429,0.000000,0.000000,0.250000,0,0);}
.m4f_c00335{transform:matrix(0.174999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174999,0.000000,0.000000,0.250000,0,0);}
.m5c_c00335{transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);}
.m4e_c00335{transform:matrix(0.183334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183334,0.000000,0.000000,0.250000,0,0);}
.m8c_c00335{transform:matrix(0.184986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184986,0.000000,0.000000,0.250000,0,0);}
.md_c00335{transform:matrix(0.187497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187497,0.000000,0.000000,0.250000,0,0);}
.mcc_c00335{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m50_c00335{transform:matrix(0.189063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189063,0.000000,0.000000,0.250000,0,0);}
.m15_c00335{transform:matrix(0.189433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189433,0.000000,0.000000,0.250000,0,0);}
.m62_c00335{transform:matrix(0.191282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191282,0.000000,0.000000,0.250000,0,0);}
.mb8_c00335{transform:matrix(0.192568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192568,0.000000,0.000000,0.250000,0,0);}
.m7a_c00335{transform:matrix(0.198478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198478,0.000000,0.000000,0.250000,0,0);}
.m5d_c00335{transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);}
.maf_c00335{transform:matrix(0.200772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200772,0.000000,0.000000,0.250000,0,0);}
.m42_c00335{transform:matrix(0.207916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207916,0.000000,0.000000,0.250000,0,0);}
.m2d_c00335{transform:matrix(0.209993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209993,0.000000,0.000000,0.250000,0,0);}
.m49_c00335{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m5e_c00335{transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);}
.m80_c00335{transform:matrix(0.230975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230975,0.000000,0.000000,0.250000,0,0);}
.m9e_c00335{transform:matrix(0.232031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232031,0.000000,0.000000,0.250000,0,0);}
.m18_c00335{transform:matrix(0.232578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232578,0.000000,0.000000,0.250000,0,0);}
.ma9_c00335{transform:matrix(0.235486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235486,0.000000,0.000000,0.250000,0,0);}
.m8b_c00335{transform:matrix(0.241417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241417,0.000000,0.000000,0.250000,0,0);}
.ma0_c00335{transform:matrix(0.241586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241586,0.000000,0.000000,0.250000,0,0);}
.m94_c00335{transform:matrix(0.243477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243477,0.000000,0.000000,0.250000,0,0);}
.m3d_c00335{transform:matrix(0.243856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243856,0.000000,0.000000,0.250000,0,0);}
.m82_c00335{transform:matrix(0.246222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246222,0.000000,0.000000,0.250000,0,0);}
.m5_c00335{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00335{transform:matrix(0.253346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253346,0.000000,0.000000,0.250000,0,0);}
.m67_c00335{transform:matrix(0.254053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254053,0.000000,0.000000,0.250000,0,0);}
.m17_c00335{transform:matrix(0.254597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254597,0.000000,0.000000,0.250000,0,0);}
.m96_c00335{transform:matrix(0.255032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255032,0.000000,0.000000,0.250000,0,0);}
.mab_c00335{transform:matrix(0.255669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255669,0.000000,0.000000,0.250000,0,0);}
.m11_c00335{transform:matrix(0.259353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259353,0.000000,0.000000,0.250000,0,0);}
.m6f_c00335{transform:matrix(0.260177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260177,0.000000,0.000000,0.250000,0,0);}
.m7_c00335{transform:matrix(0.263506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263506,0.000000,0.000000,0.250000,0,0);}
.m30_c00335{transform:matrix(0.263654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263654,0.000000,0.000000,0.250000,0,0);}
.m6b_c00335{transform:matrix(0.264245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264245,0.000000,0.000000,0.250000,0,0);}
.md6_c00335{transform:matrix(0.264576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264576,0.000000,0.000000,0.250000,0,0);}
.m4a_c00335{transform:matrix(0.264769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264769,0.000000,0.000000,0.250000,0,0);}
.me_c00335{transform:matrix(0.264791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264791,0.000000,0.000000,0.250000,0,0);}
.m13_c00335{transform:matrix(0.264990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264990,0.000000,0.000000,0.250000,0,0);}
.m31_c00335{transform:matrix(0.266822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266822,0.000000,0.000000,0.250000,0,0);}
.m1c_c00335{transform:matrix(0.269413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269413,0.000000,0.000000,0.250000,0,0);}
.m3_c00335{transform:matrix(0.270716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270716,0.000000,0.000000,0.250000,0,0);}
.m52_c00335{transform:matrix(0.271417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271417,0.000000,0.000000,0.250000,0,0);}
.m23_c00335{transform:matrix(0.273601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273601,0.000000,0.000000,0.250000,0,0);}
.m84_c00335{transform:matrix(0.276631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276631,0.000000,0.000000,0.250000,0,0);}
.m3b_c00335{transform:matrix(0.277558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277558,0.000000,0.000000,0.250000,0,0);}
.m40_c00335{transform:matrix(0.278363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278363,0.000000,0.000000,0.250000,0,0);}
.mb_c00335{transform:matrix(0.278543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278543,0.000000,0.000000,0.250000,0,0);}
.m68_c00335{transform:matrix(0.278775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278775,0.000000,0.000000,0.250000,0,0);}
.ma_c00335{transform:matrix(0.280767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280767,0.000000,0.000000,0.250000,0,0);}
.m86_c00335{transform:matrix(0.281154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281154,0.000000,0.000000,0.250000,0,0);}
.mc8_c00335{transform:matrix(0.281242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281242,0.000000,0.000000,0.250000,0,0);}
.m53_c00335{transform:matrix(0.282371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282371,0.000000,0.000000,0.250000,0,0);}
.ma5_c00335{transform:matrix(0.282942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282942,0.000000,0.000000,0.250000,0,0);}
.m21_c00335{transform:matrix(0.283124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283124,0.000000,0.000000,0.250000,0,0);}
.ma2_c00335{transform:matrix(0.283666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283666,0.000000,0.000000,0.250000,0,0);}
.mdd_c00335{transform:matrix(0.283756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283756,0.000000,0.000000,0.250000,0,0);}
.m97_c00335{transform:matrix(0.283783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283783,0.000000,0.000000,0.250000,0,0);}
.mc3_c00335{transform:matrix(0.284202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284202,0.000000,0.000000,0.250000,0,0);}
.mc6_c00335{transform:matrix(0.284238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284238,0.000000,0.000000,0.250000,0,0);}
.m6e_c00335{transform:matrix(0.285271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285271,0.000000,0.000000,0.250000,0,0);}
.m25_c00335{transform:matrix(0.285558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285558,0.000000,0.000000,0.250000,0,0);}
.m3f_c00335{transform:matrix(0.285667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285667,0.000000,0.000000,0.250000,0,0);}
.m29_c00335{transform:matrix(0.285668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285668,0.000000,0.000000,0.250000,0,0);}
.m2b_c00335{transform:matrix(0.286342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286342,0.000000,0.000000,0.250000,0,0);}
.m1b_c00335{transform:matrix(0.286964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286964,0.000000,0.000000,0.250000,0,0);}
.m4c_c00335{transform:matrix(0.288195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288195,0.000000,0.000000,0.250000,0,0);}
.m2e_c00335{transform:matrix(0.288781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288781,0.000000,0.000000,0.250000,0,0);}
.md5_c00335{transform:matrix(0.288823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288823,0.000000,0.000000,0.250000,0,0);}
.mbf_c00335{transform:matrix(0.289251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289251,0.000000,0.000000,0.250000,0,0);}
.m3e_c00335{transform:matrix(0.290400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290400,0.000000,0.000000,0.250000,0,0);}
.m22_c00335{transform:matrix(0.290679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290679,0.000000,0.000000,0.250000,0,0);}
.mb9_c00335{transform:matrix(0.291016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291016,0.000000,0.000000,0.250000,0,0);}
.m24_c00335{transform:matrix(0.291287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291287,0.000000,0.000000,0.250000,0,0);}
.mcf_c00335{transform:matrix(0.291693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291693,0.000000,0.000000,0.250000,0,0);}
.me0_c00335{transform:matrix(0.291982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291982,0.000000,0.000000,0.250000,0,0);}
.m7d_c00335{transform:matrix(0.294250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00335{transform:matrix(0.294568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294568,0.000000,0.000000,0.250000,0,0);}
.m4_c00335{transform:matrix(0.294942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294942,0.000000,0.000000,0.250000,0,0);}
.md7_c00335{transform:matrix(0.295690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295690,0.000000,0.000000,0.250000,0,0);}
.m2f_c00335{transform:matrix(0.296309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296309,0.000000,0.000000,0.250000,0,0);}
.m58_c00335{transform:matrix(0.296829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296829,0.000000,0.000000,0.250000,0,0);}
.mb5_c00335{transform:matrix(0.297349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297349,0.000000,0.000000,0.250000,0,0);}
.mac_c00335{transform:matrix(0.297744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297744,0.000000,0.000000,0.250000,0,0);}
.m92_c00335{transform:matrix(0.298046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298046,0.000000,0.000000,0.250000,0,0);}
.m79_c00335{transform:matrix(0.298157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298157,0.000000,0.000000,0.250000,0,0);}
.m35_c00335{transform:matrix(0.299094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299094,0.000000,0.000000,0.250000,0,0);}
.m9d_c00335{transform:matrix(0.299971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299971,0.000000,0.000000,0.250000,0,0);}
.m90_c00335{transform:matrix(0.300062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300062,0.000000,0.000000,0.250000,0,0);}
.mb1_c00335{transform:matrix(0.300703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300703,0.000000,0.000000,0.250000,0,0);}
.m74_c00335{transform:matrix(0.300908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300908,0.000000,0.000000,0.250000,0,0);}
.m34_c00335{transform:matrix(0.302192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302192,0.000000,0.000000,0.250000,0,0);}
.mb6_c00335{transform:matrix(0.302455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302455,0.000000,0.000000,0.250000,0,0);}
.m98_c00335{transform:matrix(0.302497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302497,0.000000,0.000000,0.250000,0,0);}
.m10_c00335{transform:matrix(0.302814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302814,0.000000,0.000000,0.250000,0,0);}
.m1e_c00335{transform:matrix(0.303218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303218,0.000000,0.000000,0.250000,0,0);}
.m6c_c00335{transform:matrix(0.303431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303431,0.000000,0.000000,0.250000,0,0);}
.mbc_c00335{transform:matrix(0.303588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303588,0.000000,0.000000,0.250000,0,0);}
.m20_c00335{transform:matrix(0.303715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303715,0.000000,0.000000,0.250000,0,0);}
.ma8_c00335{transform:matrix(0.304151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304151,0.000000,0.000000,0.250000,0,0);}
.m12_c00335{transform:matrix(0.304697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304697,0.000000,0.000000,0.250000,0,0);}
.m28_c00335{transform:matrix(0.304768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304768,0.000000,0.000000,0.250000,0,0);}
.md2_c00335{transform:matrix(0.304775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304775,0.000000,0.000000,0.250000,0,0);}
.m0_c00335{transform:matrix(0.305078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305078,0.000000,0.000000,0.250000,0,0);}
.m1_c00335{transform:matrix(0.305586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305586,0.000000,0.000000,0.250000,0,0);}
.m59_c00335{transform:matrix(0.305762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305762,0.000000,0.000000,0.250000,0,0);}
.m6a_c00335{transform:matrix(0.305955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305955,0.000000,0.000000,0.250000,0,0);}
.m73_c00335{transform:matrix(0.306277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306277,0.000000,0.000000,0.250000,0,0);}
.m9b_c00335{transform:matrix(0.306708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306708,0.000000,0.000000,0.250000,0,0);}
.mb0_c00335{transform:matrix(0.309782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309782,0.000000,0.000000,0.250000,0,0);}
.m81_c00335{transform:matrix(0.309958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309958,0.000000,0.000000,0.250000,0,0);}
.mbb_c00335{transform:matrix(0.310394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310394,0.000000,0.000000,0.250000,0,0);}
.m9c_c00335{transform:matrix(0.310610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310610,0.000000,0.000000,0.250000,0,0);}
.m43_c00335{transform:matrix(0.311005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311005,0.000000,0.000000,0.250000,0,0);}
.m44_c00335{transform:matrix(0.311137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311137,0.000000,0.000000,0.250000,0,0);}
.m70_c00335{transform:matrix(0.311242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311242,0.000000,0.000000,0.250000,0,0);}
.m95_c00335{transform:matrix(0.311424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311424,0.000000,0.000000,0.250000,0,0);}
.m2_c00335{transform:matrix(0.311941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311941,0.000000,0.000000,0.250000,0,0);}
.mda_c00335{transform:matrix(0.312212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312212,0.000000,0.000000,0.250000,0,0);}
.ma3_c00335{transform:matrix(0.313095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313095,0.000000,0.000000,0.250000,0,0);}
.me1_c00335{transform:matrix(0.315147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315147,0.000000,0.000000,0.250000,0,0);}
.m1d_c00335{transform:matrix(0.315329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315329,0.000000,0.000000,0.250000,0,0);}
.m77_c00335{transform:matrix(0.315474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315474,0.000000,0.000000,0.250000,0,0);}
.mad_c00335{transform:matrix(0.316507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316507,0.000000,0.000000,0.250000,0,0);}
.m1f_c00335{transform:matrix(0.317086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317086,0.000000,0.000000,0.250000,0,0);}
.m19_c00335{transform:matrix(0.317333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317333,0.000000,0.000000,0.250000,0,0);}
.mb3_c00335{transform:matrix(0.317464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317464,0.000000,0.000000,0.250000,0,0);}
.mc9_c00335{transform:matrix(0.318879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318879,0.000000,0.000000,0.250000,0,0);}
.m14_c00335{transform:matrix(0.319095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319095,0.000000,0.000000,0.250000,0,0);}
.m2a_c00335{transform:matrix(0.319218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319218,0.000000,0.000000,0.250000,0,0);}
.m63_c00335{transform:matrix(0.320186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320186,0.000000,0.000000,0.250000,0,0);}
.m55_c00335{transform:matrix(0.320473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320473,0.000000,0.000000,0.250000,0,0);}
.m4b_c00335{transform:matrix(0.321959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321959,0.000000,0.000000,0.250000,0,0);}
.mc2_c00335{transform:matrix(0.321983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321983,0.000000,0.000000,0.250000,0,0);}
.mdb_c00335{transform:matrix(0.322061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322061,0.000000,0.000000,0.250000,0,0);}
.m9a_c00335{transform:matrix(0.322340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322340,0.000000,0.000000,0.250000,0,0);}
.mc5_c00335{transform:matrix(0.322809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322809,0.000000,0.000000,0.250000,0,0);}
.m41_c00335{transform:matrix(0.322939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322939,0.000000,0.000000,0.250000,0,0);}
.m6_c00335{transform:matrix(0.322991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322991,0.000000,0.000000,0.250000,0,0);}
.m89_c00335{transform:matrix(0.323213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323213,0.000000,0.000000,0.250000,0,0);}
.m64_c00335{transform:matrix(0.323357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323357,0.000000,0.000000,0.250000,0,0);}
.m61_c00335{transform:matrix(0.323468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323468,0.000000,0.000000,0.250000,0,0);}
.m51_c00335{transform:matrix(0.324290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324290,0.000000,0.000000,0.250000,0,0);}
.md4_c00335{transform:matrix(0.326529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326529,0.000000,0.000000,0.250000,0,0);}
.m26_c00335{transform:matrix(0.326731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326731,0.000000,0.000000,0.250000,0,0);}
.m56_c00335{transform:matrix(0.327263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327263,0.000000,0.000000,0.250000,0,0);}
.mba_c00335{transform:matrix(0.328390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328390,0.000000,0.000000,0.250000,0,0);}
.m27_c00335{transform:matrix(0.328535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328535,0.000000,0.000000,0.250000,0,0);}
.mcb_c00335{transform:matrix(0.328677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328677,0.000000,0.000000,0.250000,0,0);}
.m54_c00335{transform:matrix(0.329286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329286,0.000000,0.000000,0.250000,0,0);}
.m6d_c00335{transform:matrix(0.329796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329796,0.000000,0.000000,0.250000,0,0);}
.mbd_c00335{transform:matrix(0.330227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330227,0.000000,0.000000,0.250000,0,0);}
.m72_c00335{transform:matrix(0.330580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330580,0.000000,0.000000,0.250000,0,0);}
.m9_c00335{transform:matrix(0.331446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331446,0.000000,0.000000,0.250000,0,0);}
.m8d_c00335{transform:matrix(0.331811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331811,0.000000,0.000000,0.250000,0,0);}
.mca_c00335{transform:matrix(0.331906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331906,0.000000,0.000000,0.250000,0,0);}
.m69_c00335{transform:matrix(0.334133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334133,0.000000,0.000000,0.250000,0,0);}
.m60_c00335{transform:matrix(0.334786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334786,0.000000,0.000000,0.250000,0,0);}
.m88_c00335{transform:matrix(0.335789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335789,0.000000,0.000000,0.250000,0,0);}
.mdf_c00335{transform:matrix(0.337123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337123,0.000000,0.000000,0.250000,0,0);}
.mc4_c00335{transform:matrix(0.338429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338429,0.000000,0.000000,0.250000,0,0);}
.mdc_c00335{transform:matrix(0.339241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339241,0.000000,0.000000,0.250000,0,0);}
.m85_c00335{transform:matrix(0.339266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339266,0.000000,0.000000,0.250000,0,0);}
.m3c_c00335{transform:matrix(0.340113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340113,0.000000,0.000000,0.250000,0,0);}
.md8_c00335{transform:matrix(0.340208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340208,0.000000,0.000000,0.250000,0,0);}
.ma6_c00335{transform:matrix(0.341436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341436,0.000000,0.000000,0.250000,0,0);}
.maa_c00335{transform:matrix(0.341510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341510,0.000000,0.000000,0.250000,0,0);}
.md0_c00335{transform:matrix(0.343144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343144,0.000000,0.000000,0.250000,0,0);}
.mc0_c00335{transform:matrix(0.343649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343649,0.000000,0.000000,0.250000,0,0);}
.m38_c00335{transform:matrix(0.344192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344192,0.000000,0.000000,0.250000,0,0);}
.mbe_c00335{transform:matrix(0.348537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348537,0.000000,0.000000,0.250000,0,0);}
.m91_c00335{transform:matrix(0.350049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350049,0.000000,0.000000,0.250000,0,0);}
.m71_c00335{transform:matrix(0.350568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350568,0.000000,0.000000,0.250000,0,0);}
.m3a_c00335{transform:matrix(0.350713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350713,0.000000,0.000000,0.250000,0,0);}
.m46_c00335{transform:matrix(0.351500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351500,0.000000,0.000000,0.250000,0,0);}
.me2_c00335{transform:matrix(0.353133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353133,0.000000,0.000000,0.250000,0,0);}
.me3_c00335{transform:matrix(0.354299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354299,0.000000,0.000000,0.250000,0,0);}
.mc_c00335{transform:matrix(0.354951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354951,0.000000,0.000000,0.250000,0,0);}
.m39_c00335{transform:matrix(0.356819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356819,0.000000,0.000000,0.250000,0,0);}
.m65_c00335{transform:matrix(0.358352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358352,0.000000,0.000000,0.250000,0,0);}
.m48_c00335{transform:matrix(0.358832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358832,0.000000,0.000000,0.250000,0,0);}
.m66_c00335{transform:matrix(0.359727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359727,0.000000,0.000000,0.250000,0,0);}
.m8_c00335{transform:matrix(0.359753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359753,0.000000,0.000000,0.250000,0,0);}
.md3_c00335{transform:matrix(0.359909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359909,0.000000,0.000000,0.250000,0,0);}
.m9f_c00335{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);}
.m8f_c00335{transform:matrix(0.361525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361525,0.000000,0.000000,0.250000,0,0);}
.m83_c00335{transform:matrix(0.361529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361529,0.000000,0.000000,0.250000,0,0);}
.m93_c00335{transform:matrix(0.363879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363879,0.000000,0.000000,0.250000,0,0);}
.mde_c00335{transform:matrix(0.364805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364805,0.000000,0.000000,0.250000,0,0);}
.mb2_c00335{transform:matrix(0.364914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364914,0.000000,0.000000,0.250000,0,0);}
.m87_c00335{transform:matrix(0.365090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365090,0.000000,0.000000,0.250000,0,0);}
.md9_c00335{transform:matrix(0.365231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365231,0.000000,0.000000,0.250000,0,0);}
.mce_c00335{transform:matrix(0.365638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365638,0.000000,0.000000,0.250000,0,0);}
.m47_c00335{transform:matrix(0.367927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367927,0.000000,0.000000,0.250000,0,0);}
.md1_c00335{transform:matrix(0.370377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370377,0.000000,0.000000,0.250000,0,0);}
.ma7_c00335{transform:matrix(0.372004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372004,0.000000,0.000000,0.250000,0,0);}
.mb4_c00335{transform:matrix(0.374399,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374399,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374399,0.000000,0.000000,0.250000,0,0);}
.mb7_c00335{transform:matrix(0.375326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375326,0.000000,0.000000,0.250000,0,0);}
.mc1_c00335{transform:matrix(0.379025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379025,0.000000,0.000000,0.250000,0,0);}
.m32_c00335{transform:matrix(0.380071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380071,0.000000,0.000000,0.250000,0,0);}
.mc7_c00335{transform:matrix(0.387107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387107,0.000000,0.000000,0.250000,0,0);}
.mf_c00335{transform:matrix(0.389048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389048,0.000000,0.000000,0.250000,0,0);}
.mae_c00335{transform:matrix(0.392037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392037,0.000000,0.000000,0.250000,0,0);}
.m99_c00335{transform:matrix(0.392665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392665,0.000000,0.000000,0.250000,0,0);}
.m45_c00335{transform:matrix(0.396197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396197,0.000000,0.000000,0.250000,0,0);}
.m57_c00335{transform:matrix(0.399048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399048,0.000000,0.000000,0.250000,0,0);}
.m16_c00335{transform:matrix(0.411147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411147,0.000000,0.000000,0.250000,0,0);}
.m7f_c00335{transform:matrix(0.412829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412829,0.000000,0.000000,0.250000,0,0);}
.m33_c00335{transform:matrix(0.456805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456805,0.000000,0.000000,0.250000,0,0);}
.m2c_c00335{transform:matrix(0.460692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460692,0.000000,0.000000,0.250000,0,0);}
.m7c_c00335{transform:matrix(0.570213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570213,0.000000,0.000000,0.250000,0,0);}
.m75_c00335{transform:matrix(0.599983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.599983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.599983,0.000000,0.000000,0.250000,0,0);}
.v2_c00335{vertical-align:-21.364200px;}
.v4_c00335{vertical-align:-8.571420px;}
.v0_c00335{vertical-align:0.000000px;}
.v5_c00335{vertical-align:1.440648px;}
.v3_c00335{vertical-align:8.553600px;}
.v1_c00335{vertical-align:14.256000px;}
.ls2c_c00335{letter-spacing:-2.661127px;}
.lsd_c00335{letter-spacing:-2.529450px;}
.ls2e_c00335{letter-spacing:-2.335417px;}
.ls23_c00335{letter-spacing:-2.155230px;}
.ls2f_c00335{letter-spacing:-2.065140px;}
.ls28_c00335{letter-spacing:-1.753290px;}
.ls12_c00335{letter-spacing:-1.741707px;}
.lsb_c00335{letter-spacing:-1.568259px;}
.lsf_c00335{letter-spacing:-1.559250px;}
.ls19_c00335{letter-spacing:-1.066784px;}
.ls37_c00335{letter-spacing:-0.997920px;}
.ls26_c00335{letter-spacing:-0.914760px;}
.ls1f_c00335{letter-spacing:-0.727373px;}
.ls3b_c00335{letter-spacing:-0.542025px;}
.ls33_c00335{letter-spacing:-0.075636px;}
.lsa_c00335{letter-spacing:0.000000px;}
.lsc_c00335{letter-spacing:0.513117px;}
.ls20_c00335{letter-spacing:0.855994px;}
.ls29_c00335{letter-spacing:1.029600px;}
.ls18_c00335{letter-spacing:1.091277px;}
.ls21_c00335{letter-spacing:1.108800px;}
.ls16_c00335{letter-spacing:1.170774px;}
.ls1e_c00335{letter-spacing:1.306800px;}
.ls0_c00335{letter-spacing:1.308087px;}
.ls36_c00335{letter-spacing:1.425600px;}
.ls1d_c00335{letter-spacing:1.564200px;}
.ls35_c00335{letter-spacing:1.653310px;}
.ls31_c00335{letter-spacing:1.732500px;}
.ls34_c00335{letter-spacing:1.831500px;}
.ls38_c00335{letter-spacing:1.835658px;}
.ls25_c00335{letter-spacing:1.890900px;}
.ls10_c00335{letter-spacing:2.045241px;}
.ls14_c00335{letter-spacing:2.258631px;}
.ls27_c00335{letter-spacing:2.465100px;}
.ls24_c00335{letter-spacing:2.574000px;}
.ls3_c00335{letter-spacing:2.863555px;}
.ls32_c00335{letter-spacing:2.950200px;}
.ls1b_c00335{letter-spacing:3.035340px;}
.ls7_c00335{letter-spacing:3.113550px;}
.ls13_c00335{letter-spacing:3.346200px;}
.ls17_c00335{letter-spacing:3.375900px;}
.ls2a_c00335{letter-spacing:3.389463px;}
.ls3a_c00335{letter-spacing:3.484810px;}
.ls5_c00335{letter-spacing:3.512322px;}
.ls8_c00335{letter-spacing:3.613500px;}
.ls2b_c00335{letter-spacing:3.643200px;}
.ls2d_c00335{letter-spacing:3.653110px;}
.lse_c00335{letter-spacing:3.880810px;}
.ls9_c00335{letter-spacing:4.253644px;}
.ls22_c00335{letter-spacing:7.128198px;}
.ls6_c00335{letter-spacing:9.316296px;}
.ls1_c00335{letter-spacing:11.691504px;}
.ls2_c00335{letter-spacing:29.937798px;}
.ls30_c00335{letter-spacing:38.491398px;}
.ls15_c00335{letter-spacing:48.470598px;}
.ls1c_c00335{letter-spacing:49.896198px;}
.ls39_c00335{letter-spacing:52.747398px;}
.ls11_c00335{letter-spacing:55.598598px;}
.ls1a_c00335{letter-spacing:57.024198px;}
.ls4_c00335{letter-spacing:273.822846px;}
.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;}
}
.ws6_c00335{word-spacing:-49.697058px;}
.ws2_c00335{word-spacing:-21.662681px;}
.ws4_c00335{word-spacing:-19.375587px;}
.ws8_c00335{word-spacing:-18.265550px;}
.ws0_c00335{word-spacing:-18.067500px;}
.ws9_c00335{word-spacing:-18.020475px;}
.ws7_c00335{word-spacing:-17.118684px;}
.ws3_c00335{word-spacing:-15.812716px;}
.ws5_c00335{word-spacing:-4.816627px;}
.wsa_c00335{word-spacing:0.000000px;}
.ws1_c00335{word-spacing:4.263930px;}
._b_c00335{margin-left:-19.151550px;}
._11_c00335{margin-left:-6.519744px;}
._2_c00335{margin-left:-4.119390px;}
._d_c00335{margin-left:-1.638252px;}
._10_c00335{width:2.993760px;}
._e_c00335{width:5.951880px;}
._9_c00335{width:7.280369px;}
._f_c00335{width:8.822088px;}
._a_c00335{width:10.623690px;}
._14_c00335{width:12.055329px;}
._0_c00335{width:13.659030px;}
._5_c00335{width:14.669820px;}
._12_c00335{width:16.909596px;}
._17_c00335{width:21.102840px;}
._7_c00335{width:22.548240px;}
._4_c00335{width:23.993640px;}
._3_c00335{width:25.077690px;}
._13_c00335{width:26.812170px;}
._c_c00335{width:33.779790px;}
._15_c00335{width:37.203210px;}
._6_c00335{width:38.375370px;}
._8_c00335{width:44.728200px;}
._1_c00335{width:49.328730px;}
._16_c00335{width:282.688791px;}
._18_c00335{width:883.019808px;}
.fc0_c00335{color:transparent;}
.fs1b_c00335{font-size:7.128198px;}
.fs20_c00335{font-size:19.206000px;}
.fs24_c00335{font-size:20.592000px;}
.fs8_c00335{font-size:22.176000px;}
.fs3_c00335{font-size:23.166000px;}
.fs17_c00335{font-size:26.136000px;}
.fs21_c00335{font-size:27.720000px;}
.fs19_c00335{font-size:27.918000px;}
.fsf_c00335{font-size:28.314000px;}
.fs33_c00335{font-size:28.512000px;}
.fs1c_c00335{font-size:29.937798px;}
.fs16_c00335{font-size:31.284000px;}
.fs32_c00335{font-size:33.066198px;}
.fs35_c00335{font-size:33.264000px;}
.fs39_c00335{font-size:33.660000px;}
.fs5_c00335{font-size:34.056198px;}
.fs2d_c00335{font-size:34.650000px;}
.fs1a_c00335{font-size:35.244000px;}
.fs30_c00335{font-size:36.630000px;}
.fs1f_c00335{font-size:37.818000px;}
.fs2b_c00335{font-size:38.491398px;}
.fs6_c00335{font-size:39.600000px;}
.fs27_c00335{font-size:41.580000px;}
.fs2c_c00335{font-size:42.966198px;}
.fsa_c00335{font-size:44.550000px;}
.fs18_c00335{font-size:45.540000px;}
.fs1d_c00335{font-size:45.936198px;}
.fs13_c00335{font-size:48.312000px;}
.fsd_c00335{font-size:48.470598px;}
.fs22_c00335{font-size:49.302000px;}
.fs15_c00335{font-size:49.896198px;}
.fs23_c00335{font-size:50.094000px;}
.fs38_c00335{font-size:50.688000px;}
.fs1e_c00335{font-size:51.480000px;}
.fs34_c00335{font-size:52.747398px;}
.fsb_c00335{font-size:55.598598px;}
.fs12_c00335{font-size:57.024198px;}
.fs2a_c00335{font-size:59.004000px;}
.fs2f_c00335{font-size:60.984000px;}
.fs14_c00335{font-size:61.578000px;}
.fs31_c00335{font-size:62.370000px;}
.fs2e_c00335{font-size:65.340000px;}
.fs11_c00335{font-size:65.538000px;}
.fs2_c00335{font-size:66.528000px;}
.fs29_c00335{font-size:66.726198px;}
.fsc_c00335{font-size:66.924000px;}
.fs10_c00335{font-size:67.518000px;}
.fs36_c00335{font-size:69.696198px;}
.fs7_c00335{font-size:70.884000px;}
.fs0_c00335{font-size:72.270000px;}
.fs25_c00335{font-size:72.864000px;}
.fs28_c00335{font-size:73.062198px;}
.fs37_c00335{font-size:74.250000px;}
.fs26_c00335{font-size:76.032198px;}
.fse_c00335{font-size:77.022198px;}
.fs9_c00335{font-size:77.616198px;}
.fs4_c00335{font-size:78.408000px;}
.fs1_c00335{font-size:85.932198px;}
.y0_c00335{bottom:0.000000px;}
.y1_c00335{bottom:76.500000px;}
.y37_c00335{bottom:95.070735px;}
.y36_c00335{bottom:138.190185px;}
.y35_c00335{bottom:210.184173px;}
.y34_c00335{bottom:217.310985px;}
.y33_c00335{bottom:233.710335px;}
.y32_c00335{bottom:266.137785px;}
.y31_c00335{bottom:298.570185px;}
.y30_c00335{bottom:331.007535px;}
.y2f_c00335{bottom:364.147785px;}
.y29_c00335{bottom:396.941535px;}
.y2d_c00335{bottom:397.297935px;}
.y2e_c00335{bottom:397.654335px;}
.y2c_c00335{bottom:398.010735px;}
.y2a_c00335{bottom:399.436335px;}
.y2b_c00335{bottom:404.777385px;}
.y28_c00335{bottom:429.368985px;}
.y26_c00335{bottom:461.444985px;}
.y27_c00335{bottom:467.147385px;}
.y25_c00335{bottom:488.536335px;}
.y24_c00335{bottom:492.100335px;}
.y21_c00335{bottom:495.664335px;}
.y22_c00335{bottom:499.936185px;}
.y20_c00335{bottom:503.861535px;}
.y23_c00335{bottom:504.217935px;}
.y1d_c00335{bottom:527.383935px;}
.y1c_c00335{bottom:527.740335px;}
.y1b_c00335{bottom:528.091785px;}
.y1e_c00335{bottom:529.165935px;}
.y1a_c00335{bottom:531.299385px;}
.y1f_c00335{bottom:536.650335px;}
.y19_c00335{bottom:560.172735px;}
.y18_c00335{bottom:576.918585px;}
.y17_c00335{bottom:593.669385px;}
.y16_c00335{bottom:617.191785px;}
.y15_c00335{bottom:627.527385px;}
.y14_c00335{bottom:662.098185px;}
.y13_c00335{bottom:688.828185px;}
.y12_c00335{bottom:695.248335px;}
.y10_c00335{bottom:758.682585px;}
.y11_c00335{bottom:770.443785px;}
.ye_c00335{bottom:791.828775px;}
.yf_c00335{bottom:791.832735px;}
.yd_c00335{bottom:824.621535px;}
.yc_c00335{bottom:857.761785px;}
.yb_c00335{bottom:884.140335px;}
.ya_c00335{bottom:889.842735px;}
.y9_c00335{bottom:903.029535px;}
.y38_c00335{bottom:922.631535px;}
.y2_c00335{bottom:924.764985px;}
.y8_c00335{bottom:958.271535px;}
.y6_c00335{bottom:964.681785px;}
.y7_c00335{bottom:966.825135px;}
.y5_c00335{bottom:976.447935px;}
.y4_c00335{bottom:989.278335px;}
.y3_c00335{bottom:1078.016985px;}
.h1b_c00335{height:4.747380px;}
.h1c_c00335{height:19.938573px;}
.h21_c00335{height:20.031258px;}
.h25_c00335{height:20.209922px;}
.h1a_c00335{height:22.349250px;}
.ha_c00335{height:23.128875px;}
.h5_c00335{height:24.161414px;}
.h2d_c00335{height:25.635271px;}
.h18_c00335{height:27.259031px;}
.h33_c00335{height:27.982969px;}
.h22_c00335{height:28.911094px;}
.h11_c00335{height:29.530617px;}
.hf_c00335{height:32.281418px;}
.h17_c00335{height:32.628234px;}
.h39_c00335{height:33.035449px;}
.h16_c00335{height:33.230868px;}
.h32_c00335{height:34.487011px;}
.h35_c00335{height:34.693313px;}
.h34_c00335{height:35.129767px;}
.h7_c00335{height:35.519550px;}
.h31_c00335{height:35.932456px;}
.h2f_c00335{height:36.138867px;}
.hd_c00335{height:37.028666px;}
.h20_c00335{height:37.116299px;}
.h14_c00335{height:37.978116px;}
.h8_c00335{height:41.301563px;}
.h28_c00335{height:43.366641px;}
.hc_c00335{height:43.723389px;}
.h2e_c00335{height:44.812402px;}
.h30_c00335{height:46.783378px;}
.h15_c00335{height:47.415586px;}
.h19_c00335{height:47.496797px;}
.h1e_c00335{height:47.910019px;}
.h23_c00335{height:48.387217px;}
.h24_c00335{height:49.164521px;}
.h1f_c00335{height:50.524805px;}
.h38_c00335{height:52.866000px;}
.h2c_c00335{height:61.539328px;}
.h1d_c00335{height:64.223930px;}
.h2b_c00335{height:65.455533px;}
.h12_c00335{height:66.265225px;}
.h13_c00335{height:68.354086px;}
.h4_c00335{height:69.386625px;}
.h9_c00335{height:69.568770px;}
.he_c00335{height:69.799641px;}
.h36_c00335{height:70.240700px;}
.h2_c00335{height:70.929053px;}
.h26_c00335{height:71.512031px;}
.h2a_c00335{height:71.706552px;}
.h37_c00335{height:72.872314px;}
.h29_c00335{height:74.584319px;}
.hb_c00335{height:76.176054px;}
.h6_c00335{height:76.953164px;}
.h27_c00335{height:79.299207px;}
.h10_c00335{height:80.331746px;}
.h3_c00335{height:84.337753px;}
.h1_c00335{height:1110.000000px;}
.h0_c00335{height:1263.000000px;}
.w1_c00335{width:775.500000px;}
.w0_c00335{width:892.500000px;}
.x0_c00335{left:0.000000px;}
.x1_c00335{left:58.500000px;}
.x38_c00335{left:99.090735px;}
.x14_c00335{left:100.298535px;}
.x2_c00335{left:101.684535px;}
.x62_c00335{left:112.059735px;}
.x63_c00335{left:113.406135px;}
.x20_c00335{left:122.395335px;}
.x6d_c00335{left:125.330685px;}
.x6e_c00335{left:126.790935px;}
.x6f_c00335{left:129.543135px;}
.x44_c00335{left:132.052785px;}
.x7b_c00335{left:133.478385px;}
.x39_c00335{left:135.037635px;}
.x45_c00335{left:138.136335px;}
.x81_c00335{left:139.997535px;}
.x21_c00335{left:143.571435px;}
.x64_c00335{left:144.596085px;}
.x70_c00335{left:150.630135px;}
.x2a_c00335{left:154.421835px;}
.x3_c00335{left:155.679135px;}
.x65_c00335{left:157.456185px;}
.x3c_c00335{left:160.371735px;}
.x82_c00335{left:161.633985px;}
.x30_c00335{left:165.851385px;}
.x46_c00335{left:166.890885px;}
.x5b_c00335{left:176.929485px;}
.x7c_c00335{left:177.988785px;}
.x78_c00335{left:180.305385px;}
.x22_c00335{left:188.472885px;}
.x3a_c00335{left:191.220135px;}
.x79_c00335{left:192.710085px;}
.x50_c00335{left:198.501585px;}
.x23_c00335{left:199.600485px;}
.x47_c00335{left:210.054885px;}
.x15_c00335{left:211.129035px;}
.x8f_c00335{left:213.346635px;}
.x90_c00335{left:215.960235px;}
.x51_c00335{left:222.385335px;}
.x31_c00335{left:232.027935px;}
.x8b_c00335{left:233.542635px;}
.x57_c00335{left:242.818935px;}
.x48_c00335{left:244.294035px;}
.x24_c00335{left:254.961285px;}
.x16_c00335{left:256.312635px;}
.x4_c00335{left:266.247285px;}
.x83_c00335{left:269.925135px;}
.x71_c00335{left:276.483885px;}
.x5c_c00335{left:277.775835px;}
.x17_c00335{left:287.156085px;}
.x91_c00335{left:288.467835px;}
.x72_c00335{left:289.601385px;}
.x87_c00335{left:294.289035px;}
.x2b_c00335{left:298.442085px;}
.x89_c00335{left:299.491485px;}
.x96_c00335{left:301.273485px;}
.x58_c00335{left:305.070135px;}
.x3d_c00335{left:310.203285px;}
.x84_c00335{left:311.777385px;}
.x32_c00335{left:318.761835px;}
.x49_c00335{left:320.895285px;}
.x85_c00335{left:321.949635px;}
.x5_c00335{left:331.765485px;}
.x86_c00335{left:332.785185px;}
.x3e_c00335{left:342.868335px;}
.x92_c00335{left:344.229585px;}
.x33_c00335{left:351.728835px;}
.x18_c00335{left:354.575085px;}
.x7a_c00335{left:355.743285px;}
.x7d_c00335{left:357.525285px;}
.x2c_c00335{left:365.430435px;}
.x8c_c00335{left:367.237185px;}
.x19_c00335{left:377.201535px;}
.x2d_c00335{left:387.913335px;}
.x8d_c00335{left:388.952835px;}
.x97_c00335{left:389.977485px;}
.x4a_c00335{left:399.669585px;}
.x25_c00335{left:410.024985px;}
.x52_c00335{left:412.935585px;}
.x6_c00335{left:420.207135px;}
.x3f_c00335{left:421.360485px;}
.x88_c00335{left:422.439585px;}
.x1a_c00335{left:431.428785px;}
.x8a_c00335{left:441.917835px;}
.x7e_c00335{left:443.368185px;}
.x34_c00335{left:453.292935px;}
.x73_c00335{left:454.594785px;}
.x3b_c00335{left:457.005435px;}
.x94_c00335{left:465.608535px;}
.x95_c00335{left:473.870085px;}
.x26_c00335{left:475.751085px;}
.x7f_c00335{left:476.884635px;}
.x5d_c00335{left:483.577035px;}
.xc_c00335{left:487.155885px;}
.x93_c00335{left:488.725035px;}
.x35_c00335{left:497.135085px;}
.x27_c00335{left:498.382485px;}
.x2e_c00335{left:500.798085px;}
.x13_c00335{left:506.703435px;}
.x1b_c00335{left:508.732935px;}
.xd_c00335{left:509.757585px;}
.x53_c00335{left:512.202885px;}
.x1c_c00335{left:519.583335px;}
.x5e_c00335{left:520.830735px;}
.x8e_c00335{left:521.914785px;}
.x40_c00335{left:532.215735px;}
.x4b_c00335{left:534.725385px;}
.x36_c00335{left:540.967335px;}
.x4c_c00335{left:542.224635px;}
.x66_c00335{left:543.858135px;}
.x67_c00335{left:550.273335px;}
.x2f_c00335{left:552.847335px;}
.x5f_c00335{left:554.322435px;}
.x69_c00335{left:564.529335px;}
.x74_c00335{left:565.751985px;}
.xe_c00335{left:574.657035px;}
.x28_c00335{left:576.250935px;}
.x1d_c00335{left:577.820085px;}
.x4d_c00335{left:586.749885px;}
.x54_c00335{left:597.476535px;}
.x6a_c00335{left:599.100135px;}
.x4e_c00335{left:608.544735px;}
.x68_c00335{left:612.197835px;}
.x4f_c00335{left:618.335835px;}
.xf_c00335{left:619.692135px;}
.x60_c00335{left:620.993985px;}
.x37_c00335{left:622.523535px;}
.x1e_c00335{left:630.527685px;}
.x29_c00335{left:641.704785px;}
.x75_c00335{left:642.744285px;}
.x77_c00335{left:646.743885px;}
.x5a_c00335{left:648.461535px;}
.x10_c00335{left:652.867035px;}
.x55_c00335{left:654.079785px;}
.x6b_c00335{left:663.598635px;}
.x80_c00335{left:664.836135px;}
.x7_c00335{left:675.107385px;}
.x59_c00335{left:676.339935px;}
.x11_c00335{left:685.363785px;}
.x12_c00335{left:697.258635px;}
.x43_c00335{left:700.852335px;}
.x8_c00335{left:703.970835px;}
.x9_c00335{left:705.500385px;}
.xa_c00335{left:706.876485px;}
.xb_c00335{left:708.267435px;}
.x41_c00335{left:709.638585px;}
.x42_c00335{left:719.667285px;}
.x1f_c00335{left:729.319785px;}
.x56_c00335{left:730.354335px;}
.x6c_c00335{left:731.512635px;}
.x98_c00335{left:733.858935px;}
.x76_c00335{left:742.130385px;}
.x61_c00335{left:752.485785px;}
.x99_c00335{left:765.756735px;}
@media print{
.v2_c00335{vertical-align:-18.990400pt;}
.v4_c00335{vertical-align:-7.619040pt;}
.v0_c00335{vertical-align:0.000000pt;}
.v5_c00335{vertical-align:1.280576pt;}
.v3_c00335{vertical-align:7.603200pt;}
.v1_c00335{vertical-align:12.672000pt;}
.ls2c_c00335{letter-spacing:-2.365446pt;}
.lsd_c00335{letter-spacing:-2.248400pt;}
.ls2e_c00335{letter-spacing:-2.075926pt;}
.ls23_c00335{letter-spacing:-1.915760pt;}
.ls2f_c00335{letter-spacing:-1.835680pt;}
.ls28_c00335{letter-spacing:-1.558480pt;}
.ls12_c00335{letter-spacing:-1.548184pt;}
.lsb_c00335{letter-spacing:-1.394008pt;}
.lsf_c00335{letter-spacing:-1.386000pt;}
.ls19_c00335{letter-spacing:-0.948253pt;}
.ls37_c00335{letter-spacing:-0.887040pt;}
.ls26_c00335{letter-spacing:-0.813120pt;}
.ls1f_c00335{letter-spacing:-0.646554pt;}
.ls3b_c00335{letter-spacing:-0.481800pt;}
.ls33_c00335{letter-spacing:-0.067232pt;}
.lsa_c00335{letter-spacing:0.000000pt;}
.lsc_c00335{letter-spacing:0.456104pt;}
.ls20_c00335{letter-spacing:0.760883pt;}
.ls29_c00335{letter-spacing:0.915200pt;}
.ls18_c00335{letter-spacing:0.970024pt;}
.ls21_c00335{letter-spacing:0.985600pt;}
.ls16_c00335{letter-spacing:1.040688pt;}
.ls1e_c00335{letter-spacing:1.161600pt;}
.ls0_c00335{letter-spacing:1.162744pt;}
.ls36_c00335{letter-spacing:1.267200pt;}
.ls1d_c00335{letter-spacing:1.390400pt;}
.ls35_c00335{letter-spacing:1.469609pt;}
.ls31_c00335{letter-spacing:1.540000pt;}
.ls34_c00335{letter-spacing:1.628000pt;}
.ls38_c00335{letter-spacing:1.631696pt;}
.ls25_c00335{letter-spacing:1.680800pt;}
.ls10_c00335{letter-spacing:1.817992pt;}
.ls14_c00335{letter-spacing:2.007672pt;}
.ls27_c00335{letter-spacing:2.191200pt;}
.ls24_c00335{letter-spacing:2.288000pt;}
.ls3_c00335{letter-spacing:2.545382pt;}
.ls32_c00335{letter-spacing:2.622400pt;}
.ls1b_c00335{letter-spacing:2.698080pt;}
.ls7_c00335{letter-spacing:2.767600pt;}
.ls13_c00335{letter-spacing:2.974400pt;}
.ls17_c00335{letter-spacing:3.000800pt;}
.ls2a_c00335{letter-spacing:3.012856pt;}
.ls3a_c00335{letter-spacing:3.097609pt;}
.ls5_c00335{letter-spacing:3.122064pt;}
.ls8_c00335{letter-spacing:3.212000pt;}
.ls2b_c00335{letter-spacing:3.238400pt;}
.ls2d_c00335{letter-spacing:3.247209pt;}
.lse_c00335{letter-spacing:3.449609pt;}
.ls9_c00335{letter-spacing:3.781017pt;}
.ls22_c00335{letter-spacing:6.336176pt;}
.ls6_c00335{letter-spacing:8.281152pt;}
.ls1_c00335{letter-spacing:10.392448pt;}
.ls2_c00335{letter-spacing:26.611376pt;}
.ls30_c00335{letter-spacing:34.214576pt;}
.ls15_c00335{letter-spacing:43.084976pt;}
.ls1c_c00335{letter-spacing:44.352176pt;}
.ls39_c00335{letter-spacing:46.886576pt;}
.ls11_c00335{letter-spacing:49.420976pt;}
.ls1a_c00335{letter-spacing:50.688176pt;}
.ls4_c00335{letter-spacing:243.398085pt;}
.ws6_c00335{word-spacing:-44.175163pt;}
.ws2_c00335{word-spacing:-19.255716pt;}
.ws4_c00335{word-spacing:-17.222744pt;}
.ws8_c00335{word-spacing:-16.236044pt;}
.ws0_c00335{word-spacing:-16.060000pt;}
.ws9_c00335{word-spacing:-16.018200pt;}
.ws7_c00335{word-spacing:-15.216608pt;}
.ws3_c00335{word-spacing:-14.055747pt;}
.ws5_c00335{word-spacing:-4.281446pt;}
.wsa_c00335{word-spacing:0.000000pt;}
.ws1_c00335{word-spacing:3.790160pt;}
._b_c00335{margin-left:-17.023600pt;}
._11_c00335{margin-left:-5.795328pt;}
._2_c00335{margin-left:-3.661680pt;}
._d_c00335{margin-left:-1.456224pt;}
._10_c00335{width:2.661120pt;}
._e_c00335{width:5.290560pt;}
._9_c00335{width:6.471439pt;}
._f_c00335{width:7.841856pt;}
._a_c00335{width:9.443280pt;}
._14_c00335{width:10.715848pt;}
._0_c00335{width:12.141360pt;}
._5_c00335{width:13.039840pt;}
._12_c00335{width:15.030752pt;}
._17_c00335{width:18.758080pt;}
._7_c00335{width:20.042880pt;}
._4_c00335{width:21.327680pt;}
._3_c00335{width:22.291280pt;}
._13_c00335{width:23.833040pt;}
._c_c00335{width:30.026480pt;}
._15_c00335{width:33.069520pt;}
._6_c00335{width:34.111440pt;}
._8_c00335{width:39.758400pt;}
._1_c00335{width:43.847760pt;}
._16_c00335{width:251.278925pt;}
._18_c00335{width:784.906496pt;}
.fs1b_c00335{font-size:6.336176pt;}
.fs20_c00335{font-size:17.072000pt;}
.fs24_c00335{font-size:18.304000pt;}
.fs8_c00335{font-size:19.712000pt;}
.fs3_c00335{font-size:20.592000pt;}
.fs17_c00335{font-size:23.232000pt;}
.fs21_c00335{font-size:24.640000pt;}
.fs19_c00335{font-size:24.816000pt;}
.fsf_c00335{font-size:25.168000pt;}
.fs33_c00335{font-size:25.344000pt;}
.fs1c_c00335{font-size:26.611376pt;}
.fs16_c00335{font-size:27.808000pt;}
.fs32_c00335{font-size:29.392176pt;}
.fs35_c00335{font-size:29.568000pt;}
.fs39_c00335{font-size:29.920000pt;}
.fs5_c00335{font-size:30.272176pt;}
.fs2d_c00335{font-size:30.800000pt;}
.fs1a_c00335{font-size:31.328000pt;}
.fs30_c00335{font-size:32.560000pt;}
.fs1f_c00335{font-size:33.616000pt;}
.fs2b_c00335{font-size:34.214576pt;}
.fs6_c00335{font-size:35.200000pt;}
.fs27_c00335{font-size:36.960000pt;}
.fs2c_c00335{font-size:38.192176pt;}
.fsa_c00335{font-size:39.600000pt;}
.fs18_c00335{font-size:40.480000pt;}
.fs1d_c00335{font-size:40.832176pt;}
.fs13_c00335{font-size:42.944000pt;}
.fsd_c00335{font-size:43.084976pt;}
.fs22_c00335{font-size:43.824000pt;}
.fs15_c00335{font-size:44.352176pt;}
.fs23_c00335{font-size:44.528000pt;}
.fs38_c00335{font-size:45.056000pt;}
.fs1e_c00335{font-size:45.760000pt;}
.fs34_c00335{font-size:46.886576pt;}
.fsb_c00335{font-size:49.420976pt;}
.fs12_c00335{font-size:50.688176pt;}
.fs2a_c00335{font-size:52.448000pt;}
.fs2f_c00335{font-size:54.208000pt;}
.fs14_c00335{font-size:54.736000pt;}
.fs31_c00335{font-size:55.440000pt;}
.fs2e_c00335{font-size:58.080000pt;}
.fs11_c00335{font-size:58.256000pt;}
.fs2_c00335{font-size:59.136000pt;}
.fs29_c00335{font-size:59.312176pt;}
.fsc_c00335{font-size:59.488000pt;}
.fs10_c00335{font-size:60.016000pt;}
.fs36_c00335{font-size:61.952176pt;}
.fs7_c00335{font-size:63.008000pt;}
.fs0_c00335{font-size:64.240000pt;}
.fs25_c00335{font-size:64.768000pt;}
.fs28_c00335{font-size:64.944176pt;}
.fs37_c00335{font-size:66.000000pt;}
.fs26_c00335{font-size:67.584176pt;}
.fse_c00335{font-size:68.464176pt;}
.fs9_c00335{font-size:68.992176pt;}
.fs4_c00335{font-size:69.696000pt;}
.fs1_c00335{font-size:76.384176pt;}
.y0_c00335{bottom:0.000000pt;}
.y1_c00335{bottom:68.000000pt;}
.y37_c00335{bottom:84.507320pt;}
.y36_c00335{bottom:122.835720pt;}
.y35_c00335{bottom:186.830376pt;}
.y34_c00335{bottom:193.165320pt;}
.y33_c00335{bottom:207.742520pt;}
.y32_c00335{bottom:236.566920pt;}
.y31_c00335{bottom:265.395720pt;}
.y30_c00335{bottom:294.228920pt;}
.y2f_c00335{bottom:323.686920pt;}
.y29_c00335{bottom:352.836920pt;}
.y2d_c00335{bottom:353.153720pt;}
.y2e_c00335{bottom:353.470520pt;}
.y2c_c00335{bottom:353.787320pt;}
.y2a_c00335{bottom:355.054520pt;}
.y2b_c00335{bottom:359.802120pt;}
.y28_c00335{bottom:381.661320pt;}
.y26_c00335{bottom:410.173320pt;}
.y27_c00335{bottom:415.242120pt;}
.y25_c00335{bottom:434.254520pt;}
.y24_c00335{bottom:437.422520pt;}
.y21_c00335{bottom:440.590520pt;}
.y22_c00335{bottom:444.387720pt;}
.y20_c00335{bottom:447.876920pt;}
.y23_c00335{bottom:448.193720pt;}
.y1d_c00335{bottom:468.785720pt;}
.y1c_c00335{bottom:469.102520pt;}
.y1b_c00335{bottom:469.414920pt;}
.y1e_c00335{bottom:470.369720pt;}
.y1a_c00335{bottom:472.266120pt;}
.y1f_c00335{bottom:477.022520pt;}
.y19_c00335{bottom:497.931320pt;}
.y18_c00335{bottom:512.816520pt;}
.y17_c00335{bottom:527.706120pt;}
.y16_c00335{bottom:548.614920pt;}
.y15_c00335{bottom:557.802120pt;}
.y14_c00335{bottom:588.531720pt;}
.y13_c00335{bottom:612.291720pt;}
.y12_c00335{bottom:617.998520pt;}
.y10_c00335{bottom:674.384520pt;}
.y11_c00335{bottom:684.838920pt;}
.ye_c00335{bottom:703.847800pt;}
.yf_c00335{bottom:703.851320pt;}
.yd_c00335{bottom:732.996920pt;}
.yc_c00335{bottom:762.454920pt;}
.yb_c00335{bottom:785.902520pt;}
.ya_c00335{bottom:790.971320pt;}
.y9_c00335{bottom:802.692920pt;}
.y38_c00335{bottom:820.116920pt;}
.y2_c00335{bottom:822.013320pt;}
.y8_c00335{bottom:851.796920pt;}
.y6_c00335{bottom:857.494920pt;}
.y7_c00335{bottom:859.400120pt;}
.y5_c00335{bottom:867.953720pt;}
.y4_c00335{bottom:879.358520pt;}
.y3_c00335{bottom:958.237320pt;}
.h1b_c00335{height:4.219893pt;}
.h1c_c00335{height:17.723176pt;}
.h21_c00335{height:17.805563pt;}
.h25_c00335{height:17.964375pt;}
.h1a_c00335{height:19.866000pt;}
.ha_c00335{height:20.559000pt;}
.h5_c00335{height:21.476813pt;}
.h2d_c00335{height:22.786908pt;}
.h18_c00335{height:24.230250pt;}
.h33_c00335{height:24.873750pt;}
.h22_c00335{height:25.698750pt;}
.h11_c00335{height:26.249438pt;}
.hf_c00335{height:28.694594pt;}
.h17_c00335{height:29.002875pt;}
.h39_c00335{height:29.364844pt;}
.h16_c00335{height:29.538549pt;}
.h32_c00335{height:30.655121pt;}
.h35_c00335{height:30.838500pt;}
.h34_c00335{height:31.226460pt;}
.h7_c00335{height:31.572934pt;}
.h31_c00335{height:31.939961pt;}
.h2f_c00335{height:32.123438pt;}
.hd_c00335{height:32.914370pt;}
.h20_c00335{height:32.992266pt;}
.h14_c00335{height:33.758325pt;}
.h8_c00335{height:36.712500pt;}
.h28_c00335{height:38.548125pt;}
.hc_c00335{height:38.865234pt;}
.h2e_c00335{height:39.833246pt;}
.h30_c00335{height:41.585225pt;}
.h15_c00335{height:42.147188pt;}
.h19_c00335{height:42.219375pt;}
.h1e_c00335{height:42.586684pt;}
.h23_c00335{height:43.010859pt;}
.h24_c00335{height:43.701797pt;}
.h1f_c00335{height:44.910938pt;}
.h38_c00335{height:46.992000pt;}
.h2c_c00335{height:54.701625pt;}
.h1d_c00335{height:57.087938pt;}
.h2b_c00335{height:58.182696pt;}
.h12_c00335{height:58.902422pt;}
.h13_c00335{height:60.759188pt;}
.h4_c00335{height:61.677000pt;}
.h9_c00335{height:61.838906pt;}
.he_c00335{height:62.044125pt;}
.h36_c00335{height:62.436177pt;}
.h2_c00335{height:63.048047pt;}
.h26_c00335{height:63.566250pt;}
.h2a_c00335{height:63.739157pt;}
.h37_c00335{height:64.775391pt;}
.h29_c00335{height:66.297173pt;}
.hb_c00335{height:67.712048pt;}
.h6_c00335{height:68.402813pt;}
.h27_c00335{height:70.488184pt;}
.h10_c00335{height:71.405996pt;}
.h3_c00335{height:74.966891pt;}
.h1_c00335{height:986.666667pt;}
.h0_c00335{height:1122.666667pt;}
.w1_c00335{width:689.333333pt;}
.w0_c00335{width:793.333333pt;}
.x0_c00335{left:0.000000pt;}
.x1_c00335{left:52.000000pt;}
.x38_c00335{left:88.080653pt;}
.x14_c00335{left:89.154253pt;}
.x2_c00335{left:90.386253pt;}
.x62_c00335{left:99.608653pt;}
.x63_c00335{left:100.805453pt;}
.x20_c00335{left:108.795853pt;}
.x6d_c00335{left:111.405053pt;}
.x6e_c00335{left:112.703053pt;}
.x6f_c00335{left:115.149453pt;}
.x44_c00335{left:117.380253pt;}
.x7b_c00335{left:118.647453pt;}
.x39_c00335{left:120.033453pt;}
.x45_c00335{left:122.787853pt;}
.x81_c00335{left:124.442253pt;}
.x21_c00335{left:127.619053pt;}
.x64_c00335{left:128.529853pt;}
.x70_c00335{left:133.893453pt;}
.x2a_c00335{left:137.263853pt;}
.x3_c00335{left:138.381453pt;}
.x65_c00335{left:139.961053pt;}
.x3c_c00335{left:142.552653pt;}
.x82_c00335{left:143.674653pt;}
.x30_c00335{left:147.423453pt;}
.x46_c00335{left:148.347453pt;}
.x5b_c00335{left:157.270653pt;}
.x7c_c00335{left:158.212253pt;}
.x78_c00335{left:160.271453pt;}
.x22_c00335{left:167.531453pt;}
.x3a_c00335{left:169.973453pt;}
.x79_c00335{left:171.297853pt;}
.x50_c00335{left:176.445853pt;}
.x23_c00335{left:177.422653pt;}
.x47_c00335{left:186.715453pt;}
.x15_c00335{left:187.670253pt;}
.x8f_c00335{left:189.641453pt;}
.x90_c00335{left:191.964653pt;}
.x51_c00335{left:197.675853pt;}
.x31_c00335{left:206.247053pt;}
.x8b_c00335{left:207.593453pt;}
.x57_c00335{left:215.839053pt;}
.x48_c00335{left:217.150253pt;}
.x24_c00335{left:226.632253pt;}
.x16_c00335{left:227.833453pt;}
.x4_c00335{left:236.664253pt;}
.x83_c00335{left:239.933453pt;}
.x71_c00335{left:245.763453pt;}
.x5c_c00335{left:246.911853pt;}
.x17_c00335{left:255.249853pt;}
.x91_c00335{left:256.415853pt;}
.x72_c00335{left:257.423453pt;}
.x87_c00335{left:261.590253pt;}
.x2b_c00335{left:265.281853pt;}
.x89_c00335{left:266.214653pt;}
.x96_c00335{left:267.798653pt;}
.x58_c00335{left:271.173453pt;}
.x3d_c00335{left:275.736253pt;}
.x84_c00335{left:277.135453pt;}
.x32_c00335{left:283.343853pt;}
.x49_c00335{left:285.240253pt;}
.x85_c00335{left:286.177453pt;}
.x5_c00335{left:294.902653pt;}
.x86_c00335{left:295.809053pt;}
.x3e_c00335{left:304.771853pt;}
.x92_c00335{left:305.981853pt;}
.x33_c00335{left:312.647853pt;}
.x18_c00335{left:315.177853pt;}
.x7a_c00335{left:316.216253pt;}
.x7d_c00335{left:317.800253pt;}
.x2c_c00335{left:324.827053pt;}
.x8c_c00335{left:326.433053pt;}
.x19_c00335{left:335.290253pt;}
.x2d_c00335{left:344.811853pt;}
.x8d_c00335{left:345.735853pt;}
.x97_c00335{left:346.646653pt;}
.x4a_c00335{left:355.261853pt;}
.x25_c00335{left:364.466653pt;}
.x52_c00335{left:367.053853pt;}
.x6_c00335{left:373.517453pt;}
.x3f_c00335{left:374.542653pt;}
.x88_c00335{left:375.501853pt;}
.x1a_c00335{left:383.492253pt;}
.x8a_c00335{left:392.815853pt;}
.x7e_c00335{left:394.105053pt;}
.x34_c00335{left:402.927053pt;}
.x73_c00335{left:404.084253pt;}
.x3b_c00335{left:406.227053pt;}
.x94_c00335{left:413.874253pt;}
.x95_c00335{left:421.217853pt;}
.x26_c00335{left:422.889853pt;}
.x7f_c00335{left:423.897453pt;}
.x5d_c00335{left:429.846253pt;}
.xc_c00335{left:433.027453pt;}
.x93_c00335{left:434.422253pt;}
.x35_c00335{left:441.897853pt;}
.x27_c00335{left:443.006653pt;}
.x2e_c00335{left:445.153853pt;}
.x13_c00335{left:450.403053pt;}
.x1b_c00335{left:452.207053pt;}
.xd_c00335{left:453.117853pt;}
.x53_c00335{left:455.291453pt;}
.x1c_c00335{left:461.851853pt;}
.x5e_c00335{left:462.960653pt;}
.x8e_c00335{left:463.924253pt;}
.x40_c00335{left:473.080653pt;}
.x4b_c00335{left:475.311453pt;}
.x36_c00335{left:480.859853pt;}
.x4c_c00335{left:481.977453pt;}
.x66_c00335{left:483.429453pt;}
.x67_c00335{left:489.131853pt;}
.x2f_c00335{left:491.419853pt;}
.x5f_c00335{left:492.731053pt;}
.x69_c00335{left:501.803853pt;}
.x74_c00335{left:502.890653pt;}
.xe_c00335{left:510.806253pt;}
.x28_c00335{left:512.223053pt;}
.x1d_c00335{left:513.617853pt;}
.x4d_c00335{left:521.555453pt;}
.x54_c00335{left:531.090253pt;}
.x6a_c00335{left:532.533453pt;}
.x4e_c00335{left:540.928653pt;}
.x68_c00335{left:544.175853pt;}
.x4f_c00335{left:549.631853pt;}
.xf_c00335{left:550.837453pt;}
.x60_c00335{left:551.994653pt;}
.x37_c00335{left:553.354253pt;}
.x1e_c00335{left:560.469053pt;}
.x29_c00335{left:570.404253pt;}
.x75_c00335{left:571.328253pt;}
.x77_c00335{left:574.883453pt;}
.x5a_c00335{left:576.410253pt;}
.x10_c00335{left:580.326253pt;}
.x55_c00335{left:581.404253pt;}
.x6b_c00335{left:589.865453pt;}
.x80_c00335{left:590.965453pt;}
.x7_c00335{left:600.095453pt;}
.x59_c00335{left:601.191053pt;}
.x11_c00335{left:609.212253pt;}
.x12_c00335{left:619.785453pt;}
.x43_c00335{left:622.979853pt;}
.x8_c00335{left:625.751853pt;}
.x9_c00335{left:627.111453pt;}
.xa_c00335{left:628.334653pt;}
.xb_c00335{left:629.571053pt;}
.x41_c00335{left:630.789853pt;}
.x42_c00335{left:639.704253pt;}
.x1f_c00335{left:648.284253pt;}
.x56_c00335{left:649.203853pt;}
.x6c_c00335{left:650.233453pt;}
.x98_c00335{left:652.319053pt;}
.x76_c00335{left:659.671453pt;}
.x61_c00335{left:668.876253pt;}
.x99_c00335{left:680.672653pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f7f76097024165afc8badcac.woff2')format("woff");}.ff1_c00336{font-family:ff1_c00336;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00336;src:url('chunks/assets/font_b396eda067e581f67dac559f.woff2')format("woff");}.ff2_c00336{font-family:ff2_c00336;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00336;src:url('chunks/assets/font_cc4ebc56d597d7ade8c2dae9.woff2')format("woff");}.ff3_c00336{font-family:ff3_c00336;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00336;src:url('chunks/assets/font_919c542b0ebb931ea20ef7b5.woff2')format("woff");}.ff4_c00336{font-family:ff4_c00336;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m6c_c00336{transform:matrix(0.031251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.031251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.031251,0.000000,0.000000,0.250000,0,0);}
.m2a_c00336{transform:matrix(0.048612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048612,0.000000,0.000000,0.250000,0,0);}
.m68_c00336{transform:matrix(0.056819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056819,0.000000,0.000000,0.250000,0,0);}
.m15_c00336{transform:matrix(0.071429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071429,0.000000,0.000000,0.250000,0,0);}
.m2b_c00336{transform:matrix(0.076390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076390,0.000000,0.000000,0.250000,0,0);}
.m14_c00336{transform:matrix(0.092858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092858,0.000000,0.000000,0.250000,0,0);}
.m4d_c00336{transform:matrix(0.115189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115189,0.000000,0.000000,0.250000,0,0);}
.mc4_c00336{transform:matrix(0.116526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116526,0.000000,0.000000,0.250000,0,0);}
.m5_c00336{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);}
.mc5_c00336{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);}
.mc3_c00336{transform:matrix(0.125423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125423,0.000000,0.000000,0.250000,0,0);}
.m69_c00336{transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);}
.m4_c00336{transform:matrix(0.156001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156001,0.000000,0.000000,0.250000,0,0);}
.m1a_c00336{transform:matrix(0.161754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161754,0.000000,0.000000,0.250000,0,0);}
.m6d_c00336{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m51_c00336{transform:matrix(0.162569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162569,0.000000,0.000000,0.250000,0,0);}
.m13_c00336{transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);}
.m6b_c00336{transform:matrix(0.170313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170313,0.000000,0.000000,0.250000,0,0);}
.mef_c00336{transform:matrix(0.174287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174287,0.000000,0.000000,0.250000,0,0);}
.m6e_c00336{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m37_c00336{transform:matrix(0.182822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182822,0.000000,0.000000,0.250000,0,0);}
.m12_c00336{transform:matrix(0.186508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186508,0.000000,0.000000,0.250000,0,0);}
.m18_c00336{transform:matrix(0.186674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186674,0.000000,0.000000,0.250000,0,0);}
.m7d_c00336{transform:matrix(0.190742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190742,0.000000,0.000000,0.250000,0,0);}
.m11_c00336{transform:matrix(0.195237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195237,0.000000,0.000000,0.250000,0,0);}
.m86_c00336{transform:matrix(0.195685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195685,0.000000,0.000000,0.250000,0,0);}
.mcb_c00336{transform:matrix(0.201065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201065,0.000000,0.000000,0.250000,0,0);}
.mea_c00336{transform:matrix(0.204762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204762,0.000000,0.000000,0.250000,0,0);}
.m8c_c00336{transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);}
.m10_c00336{transform:matrix(0.210879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210879,0.000000,0.000000,0.250000,0,0);}
.m2c_c00336{transform:matrix(0.211806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211806,0.000000,0.000000,0.250000,0,0);}
.m42_c00336{transform:matrix(0.213422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213422,0.000000,0.000000,0.250000,0,0);}
.me9_c00336{transform:matrix(0.224999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224999,0.000000,0.000000,0.250000,0,0);}
.m1c_c00336{transform:matrix(0.231932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231932,0.000000,0.000000,0.250000,0,0);}
.m49_c00336{transform:matrix(0.243473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243473,0.000000,0.000000,0.250000,0,0);}
.m1_c00336{transform:matrix(0.247103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247103,0.000000,0.000000,0.250000,0,0);}
.mb_c00336{transform:matrix(0.248642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248642,0.000000,0.000000,0.250000,0,0);}
.m0_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);}
.m87_c00336{transform:matrix(0.251552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251552,0.000000,0.000000,0.250000,0,0);}
.md9_c00336{transform:matrix(0.254010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254010,0.000000,0.000000,0.250000,0,0);}
.m1b_c00336{transform:matrix(0.256257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256257,0.000000,0.000000,0.250000,0,0);}
.m67_c00336{transform:matrix(0.257149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257149,0.000000,0.000000,0.250000,0,0);}
.m55_c00336{transform:matrix(0.259229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259229,0.000000,0.000000,0.250000,0,0);}
.m20_c00336{transform:matrix(0.259927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259927,0.000000,0.000000,0.250000,0,0);}
.mcd_c00336{transform:matrix(0.260278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260278,0.000000,0.000000,0.250000,0,0);}
.m78_c00336{transform:matrix(0.261728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261728,0.000000,0.000000,0.250000,0,0);}
.me5_c00336{transform:matrix(0.262980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262980,0.000000,0.000000,0.250000,0,0);}
.mec_c00336{transform:matrix(0.264926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264926,0.000000,0.000000,0.250000,0,0);}
.md0_c00336{transform:matrix(0.265008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265008,0.000000,0.000000,0.250000,0,0);}
.m31_c00336{transform:matrix(0.266093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266093,0.000000,0.000000,0.250000,0,0);}
.mba_c00336{transform:matrix(0.267533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267533,0.000000,0.000000,0.250000,0,0);}
.m50_c00336{transform:matrix(0.267930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267930,0.000000,0.000000,0.250000,0,0);}
.mdf_c00336{transform:matrix(0.268332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268332,0.000000,0.000000,0.250000,0,0);}
.m6a_c00336{transform:matrix(0.269526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269526,0.000000,0.000000,0.250000,0,0);}
.m32_c00336{transform:matrix(0.269574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269574,0.000000,0.000000,0.250000,0,0);}
.m59_c00336{transform:matrix(0.270008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270008,0.000000,0.000000,0.250000,0,0);}
.m35_c00336{transform:matrix(0.270327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270327,0.000000,0.000000,0.250000,0,0);}
.m2_c00336{transform:matrix(0.272934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272934,0.000000,0.000000,0.250000,0,0);}
.m9d_c00336{transform:matrix(0.273224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273224,0.000000,0.000000,0.250000,0,0);}
.me2_c00336{transform:matrix(0.273443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273443,0.000000,0.000000,0.250000,0,0);}
.mac_c00336{transform:matrix(0.275105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275105,0.000000,0.000000,0.250000,0,0);}
.ma1_c00336{transform:matrix(0.275644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275644,0.000000,0.000000,0.250000,0,0);}
.m7b_c00336{transform:matrix(0.276284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276284,0.000000,0.000000,0.250000,0,0);}
.m25_c00336{transform:matrix(0.276387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276387,0.000000,0.000000,0.250000,0,0);}
.m60_c00336{transform:matrix(0.276862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276862,0.000000,0.000000,0.250000,0,0);}
.md8_c00336{transform:matrix(0.277974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277974,0.000000,0.000000,0.250000,0,0);}
.md7_c00336{transform:matrix(0.278761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278761,0.000000,0.000000,0.250000,0,0);}
.m97_c00336{transform:matrix(0.279298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279298,0.000000,0.000000,0.250000,0,0);}
.mbb_c00336{transform:matrix(0.280008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280008,0.000000,0.000000,0.250000,0,0);}
.me4_c00336{transform:matrix(0.280188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280188,0.000000,0.000000,0.250000,0,0);}
.m38_c00336{transform:matrix(0.280685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280685,0.000000,0.000000,0.250000,0,0);}
.m1e_c00336{transform:matrix(0.281807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281807,0.000000,0.000000,0.250000,0,0);}
.m8a_c00336{transform:matrix(0.282252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282252,0.000000,0.000000,0.250000,0,0);}
.m73_c00336{transform:matrix(0.282397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282397,0.000000,0.000000,0.250000,0,0);}
.me_c00336{transform:matrix(0.282472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282472,0.000000,0.000000,0.250000,0,0);}
.m94_c00336{transform:matrix(0.283500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00336{transform:matrix(0.283517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283517,0.000000,0.000000,0.250000,0,0);}
.m4c_c00336{transform:matrix(0.283533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283533,0.000000,0.000000,0.250000,0,0);}
.m2f_c00336{transform:matrix(0.284920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284920,0.000000,0.000000,0.250000,0,0);}
.mf5_c00336{transform:matrix(0.286173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286173,0.000000,0.000000,0.250000,0,0);}
.mc_c00336{transform:matrix(0.286751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286751,0.000000,0.000000,0.250000,0,0);}
.ma0_c00336{transform:matrix(0.286752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286752,0.000000,0.000000,0.250000,0,0);}
.m3b_c00336{transform:matrix(0.286780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286780,0.000000,0.000000,0.250000,0,0);}
.m3c_c00336{transform:matrix(0.287351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287351,0.000000,0.000000,0.250000,0,0);}
.m7f_c00336{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mde_c00336{transform:matrix(0.287746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287746,0.000000,0.000000,0.250000,0,0);}
.m9_c00336{transform:matrix(0.288032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288032,0.000000,0.000000,0.250000,0,0);}
.m5c_c00336{transform:matrix(0.288145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288145,0.000000,0.000000,0.250000,0,0);}
.m80_c00336{transform:matrix(0.288225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288225,0.000000,0.000000,0.250000,0,0);}
.md1_c00336{transform:matrix(0.289730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289730,0.000000,0.000000,0.250000,0,0);}
.m27_c00336{transform:matrix(0.289918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289918,0.000000,0.000000,0.250000,0,0);}
.m29_c00336{transform:matrix(0.290019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290019,0.000000,0.000000,0.250000,0,0);}
.mb4_c00336{transform:matrix(0.290384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290384,0.000000,0.000000,0.250000,0,0);}
.mb3_c00336{transform:matrix(0.290593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290593,0.000000,0.000000,0.250000,0,0);}
.meb_c00336{transform:matrix(0.290805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290805,0.000000,0.000000,0.250000,0,0);}
.m43_c00336{transform:matrix(0.291695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291695,0.000000,0.000000,0.250000,0,0);}
.md5_c00336{transform:matrix(0.291741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291741,0.000000,0.000000,0.250000,0,0);}
.m95_c00336{transform:matrix(0.291766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291766,0.000000,0.000000,0.250000,0,0);}
.m52_c00336{transform:matrix(0.292305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292305,0.000000,0.000000,0.250000,0,0);}
.m93_c00336{transform:matrix(0.292824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292824,0.000000,0.000000,0.250000,0,0);}
.m24_c00336{transform:matrix(0.293330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293330,0.000000,0.000000,0.250000,0,0);}
.m8f_c00336{transform:matrix(0.293372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293372,0.000000,0.000000,0.250000,0,0);}
.ma7_c00336{transform:matrix(0.293389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293389,0.000000,0.000000,0.250000,0,0);}
.m26_c00336{transform:matrix(0.293561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293561,0.000000,0.000000,0.250000,0,0);}
.mbd_c00336{transform:matrix(0.293570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293570,0.000000,0.000000,0.250000,0,0);}
.mca_c00336{transform:matrix(0.293669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293669,0.000000,0.000000,0.250000,0,0);}
.md2_c00336{transform:matrix(0.294128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294128,0.000000,0.000000,0.250000,0,0);}
.m23_c00336{transform:matrix(0.294134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294134,0.000000,0.000000,0.250000,0,0);}
.mb8_c00336{transform:matrix(0.294167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294167,0.000000,0.000000,0.250000,0,0);}
.m70_c00336{transform:matrix(0.295917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295917,0.000000,0.000000,0.250000,0,0);}
.m61_c00336{transform:matrix(0.296484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296484,0.000000,0.000000,0.250000,0,0);}
.m4a_c00336{transform:matrix(0.297207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297207,0.000000,0.000000,0.250000,0,0);}
.mbc_c00336{transform:matrix(0.297259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297259,0.000000,0.000000,0.250000,0,0);}
.m45_c00336{transform:matrix(0.297430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297430,0.000000,0.000000,0.250000,0,0);}
.m9c_c00336{transform:matrix(0.297433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297433,0.000000,0.000000,0.250000,0,0);}
.m46_c00336{transform:matrix(0.297649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297649,0.000000,0.000000,0.250000,0,0);}
.mc9_c00336{transform:matrix(0.298109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298109,0.000000,0.000000,0.250000,0,0);}
.mcf_c00336{transform:matrix(0.298148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298148,0.000000,0.000000,0.250000,0,0);}
.m30_c00336{transform:matrix(0.298264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298264,0.000000,0.000000,0.250000,0,0);}
.m56_c00336{transform:matrix(0.298478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298478,0.000000,0.000000,0.250000,0,0);}
.m54_c00336{transform:matrix(0.298911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298911,0.000000,0.000000,0.250000,0,0);}
.m16_c00336{transform:matrix(0.299030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299030,0.000000,0.000000,0.250000,0,0);}
.m44_c00336{transform:matrix(0.299639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299639,0.000000,0.000000,0.250000,0,0);}
.md6_c00336{transform:matrix(0.299822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299822,0.000000,0.000000,0.250000,0,0);}
.m99_c00336{transform:matrix(0.300949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300949,0.000000,0.000000,0.250000,0,0);}
.m91_c00336{transform:matrix(0.301331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301331,0.000000,0.000000,0.250000,0,0);}
.m2e_c00336{transform:matrix(0.301630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301630,0.000000,0.000000,0.250000,0,0);}
.mf4_c00336{transform:matrix(0.302074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302074,0.000000,0.000000,0.250000,0,0);}
.m41_c00336{transform:matrix(0.302420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302420,0.000000,0.000000,0.250000,0,0);}
.mbe_c00336{transform:matrix(0.303054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303054,0.000000,0.000000,0.250000,0,0);}
.m6f_c00336{transform:matrix(0.304946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304946,0.000000,0.000000,0.250000,0,0);}
.m9f_c00336{transform:matrix(0.305763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305763,0.000000,0.000000,0.250000,0,0);}
.m1f_c00336{transform:matrix(0.305980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305980,0.000000,0.000000,0.250000,0,0);}
.med_c00336{transform:matrix(0.306199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306199,0.000000,0.000000,0.250000,0,0);}
.m9e_c00336{transform:matrix(0.307031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307031,0.000000,0.000000,0.250000,0,0);}
.mad_c00336{transform:matrix(0.307216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307216,0.000000,0.000000,0.250000,0,0);}
.m5d_c00336{transform:matrix(0.308199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308199,0.000000,0.000000,0.250000,0,0);}
.m1d_c00336{transform:matrix(0.309311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309311,0.000000,0.000000,0.250000,0,0);}
.mce_c00336{transform:matrix(0.310778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310778,0.000000,0.000000,0.250000,0,0);}
.mb1_c00336{transform:matrix(0.313057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313057,0.000000,0.000000,0.250000,0,0);}
.m76_c00336{transform:matrix(0.315727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315727,0.000000,0.000000,0.250000,0,0);}
.me7_c00336{transform:matrix(0.316057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316057,0.000000,0.000000,0.250000,0,0);}
.m89_c00336{transform:matrix(0.316133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316133,0.000000,0.000000,0.250000,0,0);}
.m3d_c00336{transform:matrix(0.316732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316732,0.000000,0.000000,0.250000,0,0);}
.ma9_c00336{transform:matrix(0.317705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317705,0.000000,0.000000,0.250000,0,0);}
.m8d_c00336{transform:matrix(0.317984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317984,0.000000,0.000000,0.250000,0,0);}
.me1_c00336{transform:matrix(0.318034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318034,0.000000,0.000000,0.250000,0,0);}
.m65_c00336{transform:matrix(0.318102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318102,0.000000,0.000000,0.250000,0,0);}
.mcc_c00336{transform:matrix(0.318164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318164,0.000000,0.000000,0.250000,0,0);}
.mb6_c00336{transform:matrix(0.318562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318562,0.000000,0.000000,0.250000,0,0);}
.m19_c00336{transform:matrix(0.318930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318930,0.000000,0.000000,0.250000,0,0);}
.ma3_c00336{transform:matrix(0.319453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319453,0.000000,0.000000,0.250000,0,0);}
.m6_c00336{transform:matrix(0.319509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319509,0.000000,0.000000,0.250000,0,0);}
.m5e_c00336{transform:matrix(0.319690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319690,0.000000,0.000000,0.250000,0,0);}
.ma6_c00336{transform:matrix(0.320457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320457,0.000000,0.000000,0.250000,0,0);}
.maf_c00336{transform:matrix(0.321710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321710,0.000000,0.000000,0.250000,0,0);}
.mdc_c00336{transform:matrix(0.321835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321835,0.000000,0.000000,0.250000,0,0);}
.mc6_c00336{transform:matrix(0.323387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323387,0.000000,0.000000,0.250000,0,0);}
.m83_c00336{transform:matrix(0.323541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323541,0.000000,0.000000,0.250000,0,0);}
.m98_c00336{transform:matrix(0.323662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323662,0.000000,0.000000,0.250000,0,0);}
.m8b_c00336{transform:matrix(0.324461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324461,0.000000,0.000000,0.250000,0,0);}
.m92_c00336{transform:matrix(0.324768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324768,0.000000,0.000000,0.250000,0,0);}
.mae_c00336{transform:matrix(0.325314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325314,0.000000,0.000000,0.250000,0,0);}
.m4f_c00336{transform:matrix(0.325494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325494,0.000000,0.000000,0.250000,0,0);}
.mee_c00336{transform:matrix(0.325834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325834,0.000000,0.000000,0.250000,0,0);}
.mf2_c00336{transform:matrix(0.325873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325873,0.000000,0.000000,0.250000,0,0);}
.mf1_c00336{transform:matrix(0.326551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326551,0.000000,0.000000,0.250000,0,0);}
.m63_c00336{transform:matrix(0.327106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327106,0.000000,0.000000,0.250000,0,0);}
.me0_c00336{transform:matrix(0.327410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327410,0.000000,0.000000,0.250000,0,0);}
.mab_c00336{transform:matrix(0.327507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327507,0.000000,0.000000,0.250000,0,0);}
.m48_c00336{transform:matrix(0.329857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329857,0.000000,0.000000,0.250000,0,0);}
.m9a_c00336{transform:matrix(0.329984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329984,0.000000,0.000000,0.250000,0,0);}
.me3_c00336{transform:matrix(0.330509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330509,0.000000,0.000000,0.250000,0,0);}
.ma2_c00336{transform:matrix(0.331993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331993,0.000000,0.000000,0.250000,0,0);}
.ma8_c00336{transform:matrix(0.332429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332429,0.000000,0.000000,0.250000,0,0);}
.m9b_c00336{transform:matrix(0.333773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333773,0.000000,0.000000,0.250000,0,0);}
.md3_c00336{transform:matrix(0.334296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334296,0.000000,0.000000,0.250000,0,0);}
.md_c00336{transform:matrix(0.335459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335459,0.000000,0.000000,0.250000,0,0);}
.m33_c00336{transform:matrix(0.335666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335666,0.000000,0.000000,0.250000,0,0);}
.m62_c00336{transform:matrix(0.335862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335862,0.000000,0.000000,0.250000,0,0);}
.m66_c00336{transform:matrix(0.335877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335877,0.000000,0.000000,0.250000,0,0);}
.m81_c00336{transform:matrix(0.336028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336028,0.000000,0.000000,0.250000,0,0);}
.mc1_c00336{transform:matrix(0.336260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336260,0.000000,0.000000,0.250000,0,0);}
.mf3_c00336{transform:matrix(0.337322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337322,0.000000,0.000000,0.250000,0,0);}
.m53_c00336{transform:matrix(0.337902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337902,0.000000,0.000000,0.250000,0,0);}
.mda_c00336{transform:matrix(0.339902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339902,0.000000,0.000000,0.250000,0,0);}
.m5f_c00336{transform:matrix(0.341736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341736,0.000000,0.000000,0.250000,0,0);}
.mdd_c00336{transform:matrix(0.341768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341768,0.000000,0.000000,0.250000,0,0);}
.mf0_c00336{transform:matrix(0.341995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341995,0.000000,0.000000,0.250000,0,0);}
.ma_c00336{transform:matrix(0.342159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342159,0.000000,0.000000,0.250000,0,0);}
.m88_c00336{transform:matrix(0.342164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342164,0.000000,0.000000,0.250000,0,0);}
.mdb_c00336{transform:matrix(0.342695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342695,0.000000,0.000000,0.250000,0,0);}
.m39_c00336{transform:matrix(0.342805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342805,0.000000,0.000000,0.250000,0,0);}
.m7_c00336{transform:matrix(0.343001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343001,0.000000,0.000000,0.250000,0,0);}
.m36_c00336{transform:matrix(0.343186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343186,0.000000,0.000000,0.250000,0,0);}
.m47_c00336{transform:matrix(0.343473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343473,0.000000,0.000000,0.250000,0,0);}
.m90_c00336{transform:matrix(0.343785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343785,0.000000,0.000000,0.250000,0,0);}
.m96_c00336{transform:matrix(0.343809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343809,0.000000,0.000000,0.250000,0,0);}
.m74_c00336{transform:matrix(0.345308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345308,0.000000,0.000000,0.250000,0,0);}
.mbf_c00336{transform:matrix(0.346235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346235,0.000000,0.000000,0.250000,0,0);}
.m77_c00336{transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);}
.m82_c00336{transform:matrix(0.346753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346753,0.000000,0.000000,0.250000,0,0);}
.mb7_c00336{transform:matrix(0.347075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347075,0.000000,0.000000,0.250000,0,0);}
.m8e_c00336{transform:matrix(0.347602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347602,0.000000,0.000000,0.250000,0,0);}
.mb2_c00336{transform:matrix(0.348059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348059,0.000000,0.000000,0.250000,0,0);}
.m34_c00336{transform:matrix(0.348961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348961,0.000000,0.000000,0.250000,0,0);}
.me8_c00336{transform:matrix(0.349243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349243,0.000000,0.000000,0.250000,0,0);}
.m3_c00336{transform:matrix(0.349641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349641,0.000000,0.000000,0.250000,0,0);}
.mb9_c00336{transform:matrix(0.350296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350296,0.000000,0.000000,0.250000,0,0);}
.m28_c00336{transform:matrix(0.351853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351853,0.000000,0.000000,0.250000,0,0);}
.m3a_c00336{transform:matrix(0.353034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353034,0.000000,0.000000,0.250000,0,0);}
.m3e_c00336{transform:matrix(0.353983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353983,0.000000,0.000000,0.250000,0,0);}
.m3f_c00336{transform:matrix(0.356639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356639,0.000000,0.000000,0.250000,0,0);}
.m75_c00336{transform:matrix(0.358215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358215,0.000000,0.000000,0.250000,0,0);}
.m84_c00336{transform:matrix(0.359096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359096,0.000000,0.000000,0.250000,0,0);}
.m58_c00336{transform:matrix(0.359876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359876,0.000000,0.000000,0.250000,0,0);}
.mc7_c00336{transform:matrix(0.360655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360655,0.000000,0.000000,0.250000,0,0);}
.m7e_c00336{transform:matrix(0.362240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362240,0.000000,0.000000,0.250000,0,0);}
.m4b_c00336{transform:matrix(0.364393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364393,0.000000,0.000000,0.250000,0,0);}
.m4e_c00336{transform:matrix(0.365407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365407,0.000000,0.000000,0.250000,0,0);}
.ma4_c00336{transform:matrix(0.366230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366230,0.000000,0.000000,0.250000,0,0);}
.m7c_c00336{transform:matrix(0.366582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366582,0.000000,0.000000,0.250000,0,0);}
.m71_c00336{transform:matrix(0.367401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367401,0.000000,0.000000,0.250000,0,0);}
.mc0_c00336{transform:matrix(0.367402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367402,0.000000,0.000000,0.250000,0,0);}
.me6_c00336{transform:matrix(0.367566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367566,0.000000,0.000000,0.250000,0,0);}
.mf_c00336{transform:matrix(0.369070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369070,0.000000,0.000000,0.250000,0,0);}
.mb5_c00336{transform:matrix(0.371397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371397,0.000000,0.000000,0.250000,0,0);}
.mc2_c00336{transform:matrix(0.371778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371778,0.000000,0.000000,0.250000,0,0);}
.ma5_c00336{transform:matrix(0.371968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371968,0.000000,0.000000,0.250000,0,0);}
.m40_c00336{transform:matrix(0.373039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373039,0.000000,0.000000,0.250000,0,0);}
.maa_c00336{transform:matrix(0.373903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373903,0.000000,0.000000,0.250000,0,0);}
.m21_c00336{transform:matrix(0.375959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375959,0.000000,0.000000,0.250000,0,0);}
.m22_c00336{transform:matrix(0.376766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376766,0.000000,0.000000,0.250000,0,0);}
.m57_c00336{transform:matrix(0.380294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380294,0.000000,0.000000,0.250000,0,0);}
.m79_c00336{transform:matrix(0.383854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383854,0.000000,0.000000,0.250000,0,0);}
.m8_c00336{transform:matrix(0.387359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387359,0.000000,0.000000,0.250000,0,0);}
.m85_c00336{transform:matrix(0.391783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391783,0.000000,0.000000,0.250000,0,0);}
.m64_c00336{transform:matrix(0.392357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392357,0.000000,0.000000,0.250000,0,0);}
.m2d_c00336{transform:matrix(0.398217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398217,0.000000,0.000000,0.250000,0,0);}
.m17_c00336{transform:matrix(0.405591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405591,0.000000,0.000000,0.250000,0,0);}
.m7a_c00336{transform:matrix(0.429045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429045,0.000000,0.000000,0.250000,0,0);}
.m72_c00336{transform:matrix(0.436443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436443,0.000000,0.000000,0.250000,0,0);}
.m5b_c00336{transform:matrix(0.438564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438564,0.000000,0.000000,0.250000,0,0);}
.md4_c00336{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);}
.mc8_c00336{transform:matrix(0.454050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454050,0.000000,0.000000,0.250000,0,0);}
.mb0_c00336{transform:matrix(0.470992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470992,0.000000,0.000000,0.250000,0,0);}
.v0_c00336{vertical-align:0.000000px;}
.v1_c00336{vertical-align:1.391940px;}
.ls4_c00336{letter-spacing:-3.007627px;}
.ls8_c00336{letter-spacing:-2.564100px;}
.lse_c00336{letter-spacing:-2.494800px;}
.ls1d_c00336{letter-spacing:-2.293830px;}
.ls19_c00336{letter-spacing:-1.824174px;}
.ls9_c00336{letter-spacing:-1.801800px;}
.lsc_c00336{letter-spacing:-1.772892px;}
.ls13_c00336{letter-spacing:-1.330567px;}
.ls15_c00336{letter-spacing:-0.659340px;}
.ls3_c00336{letter-spacing:0.000000px;}
.ls2_c00336{letter-spacing:1.479852px;}
.ls17_c00336{letter-spacing:1.643400px;}
.ls12_c00336{letter-spacing:1.900810px;}
.ls1b_c00336{letter-spacing:2.190474px;}
.ls14_c00336{letter-spacing:2.937726px;}
.ls1a_c00336{letter-spacing:3.296700px;}
.lsd_c00336{letter-spacing:3.564000px;}
.ls18_c00336{letter-spacing:3.583810px;}
.ls5_c00336{letter-spacing:3.593700px;}
.ls6_c00336{letter-spacing:3.663000px;}
.ls1c_c00336{letter-spacing:3.682810px;}
.ls1_c00336{letter-spacing:6.080580px;}
.ls0_c00336{letter-spacing:23.736240px;}
.ls10_c00336{letter-spacing:29.937798px;}
.lsa_c00336{letter-spacing:49.896198px;}
.lsb_c00336{letter-spacing:51.321798px;}
.ls11_c00336{letter-spacing:57.024198px;}
.lsf_c00336{letter-spacing:62.726400px;}
.ls7_c00336{letter-spacing:71.280000px;}
.ls16_c00336{letter-spacing:84.110598px;}
.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;}
}
.ws5_c00336{word-spacing:-20.505474px;}
.ws0_c00336{word-spacing:-18.315000px;}
.ws4_c00336{word-spacing:-2.271060px;}
.ws6_c00336{word-spacing:0.000000px;}
.ws3_c00336{word-spacing:3.882780px;}
.ws1_c00336{word-spacing:4.908420px;}
.ws2_c00336{word-spacing:6.520140px;}
._16_c00336{margin-left:-7.765560px;}
._e_c00336{margin-left:-6.339960px;}
._0_c00336{margin-left:-4.981680px;}
._1_c00336{width:7.252740px;}
._5_c00336{width:8.644680px;}
._a_c00336{width:10.183140px;}
._c_c00336{width:11.208780px;}
._13_c00336{width:13.186800px;}
._d_c00336{width:15.164820px;}
._15_c00336{width:17.119476px;}
._8_c00336{width:21.245400px;}
._4_c00336{width:22.271040px;}
._3_c00336{width:23.736240px;}
._14_c00336{width:24.835140px;}
._b_c00336{width:29.743560px;}
._f_c00336{width:31.428540px;}
._7_c00336{width:33.703560px;}
._11_c00336{width:36.996300px;}
._10_c00336{width:38.023920px;}
._9_c00336{width:39.351708px;}
._6_c00336{width:40.732560px;}
._12_c00336{width:42.197760px;}
._2_c00336{width:43.443180px;}
.fc0_c00336{color:transparent;}
.fs1_c00336{font-size:22.176000px;}
.fsb_c00336{font-size:28.314000px;}
.fsa_c00336{font-size:29.937798px;}
.fsf_c00336{font-size:32.868000px;}
.fs0_c00336{font-size:34.056198px;}
.fsd_c00336{font-size:38.016198px;}
.fs16_c00336{font-size:45.144000px;}
.fs7_c00336{font-size:49.896198px;}
.fs12_c00336{font-size:50.688000px;}
.fs8_c00336{font-size:51.321798px;}
.fs6_c00336{font-size:51.480000px;}
.fsc_c00336{font-size:57.024198px;}
.fs9_c00336{font-size:62.726400px;}
.fs15_c00336{font-size:65.538000px;}
.fs14_c00336{font-size:69.300000px;}
.fs11_c00336{font-size:70.884000px;}
.fs5_c00336{font-size:71.280000px;}
.fs10_c00336{font-size:71.676198px;}
.fs3_c00336{font-size:71.874000px;}
.fs4_c00336{font-size:73.260000px;}
.fs13_c00336{font-size:73.656198px;}
.fse_c00336{font-size:84.110598px;}
.fs2_c00336{font-size:85.932198px;}
.y0_c00336{bottom:0.000000px;}
.y1_c00336{bottom:76.500000px;}
.y24_c00336{bottom:82.953135px;}
.y22_c00336{bottom:146.035935px;}
.y21_c00336{bottom:208.049535px;}
.y20_c00336{bottom:241.194735px;}
.y1f_c00336{bottom:261.148185px;}
.y1e_c00336{bottom:273.622185px;}
.y1d_c00336{bottom:306.059535px;}
.y1b_c00336{bottom:339.199785px;}
.y1c_c00336{bottom:344.189385px;}
.y1a_c00336{bottom:371.280735px;}
.y19_c00336{bottom:371.287170px;}
.y3_c00336{bottom:400.856985px;}
.y18_c00336{bottom:403.356735px;}
.y17_c00336{bottom:435.789135px;}
.y16_c00336{bottom:468.929385px;}
.y15_c00336{bottom:502.079535px;}
.y14_c00336{bottom:535.224735px;}
.y12_c00336{bottom:568.013535px;}
.y11_c00336{bottom:568.369935px;}
.y13_c00336{bottom:573.715935px;}
.y10_c00336{bottom:603.297135px;}
.yf_c00336{bottom:647.847135px;}
.ye_c00336{bottom:651.411135px;}
.yd_c00336{bottom:666.379935px;}
.yc_c00336{bottom:699.163785px;}
.yb_c00336{bottom:731.601135px;}
.ya_c00336{bottom:763.677135px;}
.y2_c00336{bottom:770.443785px;}
.y9_c00336{bottom:798.599385px;}
.y23_c00336{bottom:823.552335px;}
.y8_c00336{bottom:832.105935px;}
.y7_c00336{bottom:864.894735px;}
.y6_c00336{bottom:898.039935px;}
.y5_c00336{bottom:930.472335px;}
.y4_c00336{bottom:1079.798985px;}
.hd_c00336{height:19.938573px;}
.h3_c00336{height:23.128875px;}
.he_c00336{height:29.530617px;}
.h9_c00336{height:33.230868px;}
.ha_c00336{height:34.180317px;}
.h13_c00336{height:34.280297px;}
.h2_c00336{height:35.519550px;}
.h10_c00336{height:37.310819px;}
.hf_c00336{height:37.978116px;}
.hc_c00336{height:41.775782px;}
.h19_c00336{height:47.083781px;}
.h7_c00336{height:47.472480px;}
.h8_c00336{height:50.524805px;}
.h15_c00336{height:52.866000px;}
.h12_c00336{height:56.017658px;}
.h17_c00336{height:68.014160px;}
.h18_c00336{height:68.354086px;}
.hb_c00336{height:69.957422px;}
.h14_c00336{height:70.346269px;}
.h6_c00336{height:71.900684px;}
.h11_c00336{height:73.292624px;}
.h16_c00336{height:74.231637px;}
.h5_c00336{height:74.962336px;}
.h4_c00336{height:84.337753px;}
.h1_c00336{height:1110.000000px;}
.h0_c00336{height:1263.000000px;}
.w1_c00336{width:775.500000px;}
.w0_c00336{width:892.500000px;}
.x0_c00336{left:0.000000px;}
.x2_c00336{left:35.418885px;}
.x3_c00336{left:56.570235px;}
.x1_c00336{left:58.500000px;}
.x42_c00336{left:94.229835px;}
.x18_c00336{left:95.299035px;}
.x6_c00336{left:98.358135px;}
.x73_c00336{left:105.872235px;}
.x5b_c00336{left:116.336535px;}
.x7_c00336{left:118.118535px;}
.x43_c00336{left:126.464235px;}
.x8_c00336{left:127.874985px;}
.x19_c00336{left:138.938235px;}
.x48_c00336{left:149.105535px;}
.x1a_c00336{left:150.828135px;}
.x83_c00336{left:152.981385px;}
.x57_c00336{left:160.173735px;}
.x50_c00336{left:162.970485px;}
.x69_c00336{left:171.212235px;}
.x2c_c00336{left:172.281435px;}
.x49_c00336{left:181.033035px;}
.x9_c00336{left:182.819985px;}
.x5c_c00336{left:193.115985px;}
.x1b_c00336{left:194.823735px;}
.x84_c00336{left:196.333485px;}
.x2d_c00336{left:204.525735px;}
.x74_c00336{left:206.139435px;}
.x38_c00336{left:208.837185px;}
.x39_c00336{left:214.900935px;}
.x1c_c00336{left:216.871035px;}
.x4a_c00336{left:226.444335px;}
.x7b_c00336{left:227.874885px;}
.x81_c00336{left:228.924285px;}
.x7c_c00336{left:229.998435px;}
.x58_c00336{left:238.136235px;}
.xa_c00336{left:240.205335px;}
.x3a_c00336{left:249.303435px;}
.x1d_c00336{left:250.540935px;}
.x6a_c00336{left:259.084635px;}
.x2e_c00336{left:260.678535px;}
.x82_c00336{left:262.094235px;}
.x5f_c00336{left:266.578935px;}
.x60_c00336{left:271.568535px;}
.x7d_c00336{left:273.672285px;}
.xb_c00336{left:275.206785px;}
.x51_c00336{left:282.062535px;}
.x2f_c00336{left:283.473285px;}
.x85_c00336{left:284.844435px;}
.x4b_c00336{left:293.729685px;}
.x30_c00336{left:304.550385px;}
.x1e_c00336{left:307.208535px;}
.x3b_c00336{left:315.702735px;}
.x31_c00336{left:326.369985px;}
.x6f_c00336{left:327.642135px;}
.xc_c00336{left:337.453035px;}
.x62_c00336{left:338.695485px;}
.x7e_c00336{left:340.328985px;}
.x52_c00336{left:349.100385px;}
.xd_c00336{left:360.084435px;}
.x3c_c00336{left:362.153535px;}
.x44_c00336{left:369.885435px;}
.x32_c00336{left:370.949685px;}
.x63_c00336{left:372.340635px;}
.x6b_c00336{left:379.191435px;}
.x3d_c00336{left:382.889085px;}
.x1f_c00336{left:393.808785px;}
.x33_c00336{left:402.986085px;}
.x20_c00336{left:404.144385px;}
.x75_c00336{left:405.322485px;}
.x3e_c00336{left:414.776985px;}
.x34_c00336{left:416.024385px;}
.x21_c00336{left:418.048935px;}
.x4c_c00336{left:425.112585px;}
.xe_c00336{left:426.211485px;}
.x77_c00336{left:427.790535px;}
.x59_c00336{left:428.805285px;}
.x6c_c00336{left:435.859035px;}
.x22_c00336{left:437.759835px;}
.x70_c00336{left:446.907435px;}
.xf_c00336{left:448.283535px;}
.x64_c00336{left:449.407185px;}
.x23_c00336{left:459.336885px;}
.x3f_c00336{left:468.964635px;}
.x76_c00336{left:470.018985px;}
.x6d_c00336{left:471.657435px;}
.x53_c00336{left:481.255485px;}
.x10_c00336{left:482.319735px;}
.x45_c00336{left:484.076985px;}
.x35_c00336{left:491.101035px;}
.x4d_c00336{left:492.685035px;}
.x71_c00336{left:493.714635px;}
.x24_c00336{left:503.584935px;}
.x4e_c00336{left:515.177835px;}
.x11_c00336{left:525.340185px;}
.x65_c00336{left:526.533135px;}
.x78_c00336{left:535.651035px;}
.x12_c00336{left:536.655885px;}
.x86_c00336{left:538.254735px;}
.x46_c00336{left:547.615185px;}
.x61_c00336{left:548.912085px;}
.x4f_c00336{left:555.817335px;}
.x13_c00336{left:558.628935px;}
.x87_c00336{left:559.668435px;}
.x5a_c00336{left:568.439835px;}
.x25_c00336{left:569.474385px;}
.x72_c00336{left:570.731685px;}
.x14_c00336{left:581.092035px;}
.x26_c00336{left:592.833435px;}
.x36_c00336{left:601.971135px;}
.x40_c00336{left:603.015585px;}
.x66_c00336{left:605.089635px;}
.x54_c00336{left:614.034285px;}
.x79_c00336{left:615.068835px;}
.x27_c00336{left:625.691535px;}
.x55_c00336{left:637.027035px;}
.x15_c00336{left:647.357685px;}
.x6e_c00336{left:648.476385px;}
.x67_c00336{left:657.539835px;}
.x28_c00336{left:658.782285px;}
.x7f_c00336{left:660.108885px;}
.x56_c00336{left:669.612885px;}
.x4_c00336{left:670.830585px;}
.x47_c00336{left:680.275185px;}
.x16_c00336{left:681.507735px;}
.x5_c00336{left:683.304585px;}
.x29_c00336{left:691.566135px;}
.x68_c00336{left:703.287735px;}
.x5d_c00336{left:705.658785px;}
.x5e_c00336{left:706.732935px;}
.x2a_c00336{left:712.390785px;}
.x41_c00336{left:713.672835px;}
.x37_c00336{left:714.692535px;}
.x80_c00336{left:716.751735px;}
.x7a_c00336{left:725.042985px;}
.x17_c00336{left:727.463535px;}
.x2b_c00336{left:735.734985px;}
.x89_c00336{left:757.059585px;}
.x88_c00336{left:768.301035px;}
@media print{
.v0_c00336{vertical-align:0.000000pt;}
.v1_c00336{vertical-align:1.237280pt;}
.ls4_c00336{letter-spacing:-2.673446pt;}
.ls8_c00336{letter-spacing:-2.279200pt;}
.lse_c00336{letter-spacing:-2.217600pt;}
.ls1d_c00336{letter-spacing:-2.038960pt;}
.ls19_c00336{letter-spacing:-1.621488pt;}
.ls9_c00336{letter-spacing:-1.601600pt;}
.lsc_c00336{letter-spacing:-1.575904pt;}
.ls13_c00336{letter-spacing:-1.182726pt;}
.ls15_c00336{letter-spacing:-0.586080pt;}
.ls3_c00336{letter-spacing:0.000000pt;}
.ls2_c00336{letter-spacing:1.315424pt;}
.ls17_c00336{letter-spacing:1.460800pt;}
.ls12_c00336{letter-spacing:1.689609pt;}
.ls1b_c00336{letter-spacing:1.947088pt;}
.ls14_c00336{letter-spacing:2.611312pt;}
.ls1a_c00336{letter-spacing:2.930400pt;}
.lsd_c00336{letter-spacing:3.168000pt;}
.ls18_c00336{letter-spacing:3.185609pt;}
.ls5_c00336{letter-spacing:3.194400pt;}
.ls6_c00336{letter-spacing:3.256000pt;}
.ls1c_c00336{letter-spacing:3.273609pt;}
.ls1_c00336{letter-spacing:5.404960pt;}
.ls0_c00336{letter-spacing:21.098880pt;}
.ls10_c00336{letter-spacing:26.611376pt;}
.lsa_c00336{letter-spacing:44.352176pt;}
.lsb_c00336{letter-spacing:45.619376pt;}
.ls11_c00336{letter-spacing:50.688176pt;}
.lsf_c00336{letter-spacing:55.756800pt;}
.ls7_c00336{letter-spacing:63.360000pt;}
.ls16_c00336{letter-spacing:74.764976pt;}
.ws5_c00336{word-spacing:-18.227088pt;}
.ws0_c00336{word-spacing:-16.280000pt;}
.ws4_c00336{word-spacing:-2.018720pt;}
.ws6_c00336{word-spacing:0.000000pt;}
.ws3_c00336{word-spacing:3.451360pt;}
.ws1_c00336{word-spacing:4.363040pt;}
.ws2_c00336{word-spacing:5.795680pt;}
._16_c00336{margin-left:-6.902720pt;}
._e_c00336{margin-left:-5.635520pt;}
._0_c00336{margin-left:-4.428160pt;}
._1_c00336{width:6.446880pt;}
._5_c00336{width:7.684160pt;}
._a_c00336{width:9.051680pt;}
._c_c00336{width:9.963360pt;}
._13_c00336{width:11.721600pt;}
._d_c00336{width:13.479840pt;}
._15_c00336{width:15.217312pt;}
._8_c00336{width:18.884800pt;}
._4_c00336{width:19.796480pt;}
._3_c00336{width:21.098880pt;}
._14_c00336{width:22.075680pt;}
._b_c00336{width:26.438720pt;}
._f_c00336{width:27.936480pt;}
._7_c00336{width:29.958720pt;}
._11_c00336{width:32.885600pt;}
._10_c00336{width:33.799040pt;}
._9_c00336{width:34.979296pt;}
._6_c00336{width:36.206720pt;}
._12_c00336{width:37.509120pt;}
._2_c00336{width:38.616160pt;}
.fs1_c00336{font-size:19.712000pt;}
.fsb_c00336{font-size:25.168000pt;}
.fsa_c00336{font-size:26.611376pt;}
.fsf_c00336{font-size:29.216000pt;}
.fs0_c00336{font-size:30.272176pt;}
.fsd_c00336{font-size:33.792176pt;}
.fs16_c00336{font-size:40.128000pt;}
.fs7_c00336{font-size:44.352176pt;}
.fs12_c00336{font-size:45.056000pt;}
.fs8_c00336{font-size:45.619376pt;}
.fs6_c00336{font-size:45.760000pt;}
.fsc_c00336{font-size:50.688176pt;}
.fs9_c00336{font-size:55.756800pt;}
.fs15_c00336{font-size:58.256000pt;}
.fs14_c00336{font-size:61.600000pt;}
.fs11_c00336{font-size:63.008000pt;}
.fs5_c00336{font-size:63.360000pt;}
.fs10_c00336{font-size:63.712176pt;}
.fs3_c00336{font-size:63.888000pt;}
.fs4_c00336{font-size:65.120000pt;}
.fs13_c00336{font-size:65.472176pt;}
.fse_c00336{font-size:74.764976pt;}
.fs2_c00336{font-size:76.384176pt;}
.y0_c00336{bottom:0.000000pt;}
.y1_c00336{bottom:68.000000pt;}
.y24_c00336{bottom:73.736120pt;}
.y22_c00336{bottom:129.809720pt;}
.y21_c00336{bottom:184.932920pt;}
.y20_c00336{bottom:214.395320pt;}
.y1f_c00336{bottom:232.131720pt;}
.y1e_c00336{bottom:243.219720pt;}
.y1d_c00336{bottom:272.052920pt;}
.y1b_c00336{bottom:301.510920pt;}
.y1c_c00336{bottom:305.946120pt;}
.y1a_c00336{bottom:330.027320pt;}
.y19_c00336{bottom:330.033040pt;}
.y3_c00336{bottom:356.317320pt;}
.y18_c00336{bottom:358.539320pt;}
.y17_c00336{bottom:387.368120pt;}
.y16_c00336{bottom:416.826120pt;}
.y15_c00336{bottom:446.292920pt;}
.y14_c00336{bottom:475.755320pt;}
.y12_c00336{bottom:504.900920pt;}
.y11_c00336{bottom:505.217720pt;}
.y13_c00336{bottom:509.969720pt;}
.y10_c00336{bottom:536.264120pt;}
.yf_c00336{bottom:575.864120pt;}
.ye_c00336{bottom:579.032120pt;}
.yd_c00336{bottom:592.337720pt;}
.yc_c00336{bottom:621.478920pt;}
.yb_c00336{bottom:650.312120pt;}
.ya_c00336{bottom:678.824120pt;}
.y2_c00336{bottom:684.838920pt;}
.y9_c00336{bottom:709.866120pt;}
.y23_c00336{bottom:732.046520pt;}
.y8_c00336{bottom:739.649720pt;}
.y7_c00336{bottom:768.795320pt;}
.y6_c00336{bottom:798.257720pt;}
.y5_c00336{bottom:827.086520pt;}
.y4_c00336{bottom:959.821320pt;}
.hd_c00336{height:17.723176pt;}
.h3_c00336{height:20.559000pt;}
.he_c00336{height:26.249438pt;}
.h9_c00336{height:29.538549pt;}
.ha_c00336{height:30.382504pt;}
.h13_c00336{height:30.471375pt;}
.h2_c00336{height:31.572934pt;}
.h10_c00336{height:33.165173pt;}
.hf_c00336{height:33.758325pt;}
.hc_c00336{height:37.134029pt;}
.h19_c00336{height:41.852250pt;}
.h7_c00336{height:42.197760pt;}
.h8_c00336{height:44.910938pt;}
.h15_c00336{height:46.992000pt;}
.h12_c00336{height:49.793474pt;}
.h17_c00336{height:60.457031pt;}
.h18_c00336{height:60.759188pt;}
.hb_c00336{height:62.184375pt;}
.h14_c00336{height:62.530016pt;}
.h6_c00336{height:63.911719pt;}
.h11_c00336{height:65.148999pt;}
.h16_c00336{height:65.983677pt;}
.h5_c00336{height:66.633188pt;}
.h4_c00336{height:74.966891pt;}
.h1_c00336{height:986.666667pt;}
.h0_c00336{height:1122.666667pt;}
.w1_c00336{width:689.333333pt;}
.w0_c00336{width:793.333333pt;}
.x0_c00336{left:0.000000pt;}
.x2_c00336{left:31.483453pt;}
.x3_c00336{left:50.284653pt;}
.x1_c00336{left:52.000000pt;}
.x42_c00336{left:83.759853pt;}
.x18_c00336{left:84.710253pt;}
.x6_c00336{left:87.429453pt;}
.x73_c00336{left:94.108653pt;}
.x5b_c00336{left:103.410253pt;}
.x7_c00336{left:104.994253pt;}
.x43_c00336{left:112.412653pt;}
.x8_c00336{left:113.666653pt;}
.x19_c00336{left:123.500653pt;}
.x48_c00336{left:132.538253pt;}
.x1a_c00336{left:134.069453pt;}
.x83_c00336{left:135.983453pt;}
.x57_c00336{left:142.376653pt;}
.x50_c00336{left:144.862653pt;}
.x69_c00336{left:152.188653pt;}
.x2c_c00336{left:153.139053pt;}
.x49_c00336{left:160.918253pt;}
.x9_c00336{left:162.506653pt;}
.x5c_c00336{left:171.658653pt;}
.x1b_c00336{left:173.176653pt;}
.x84_c00336{left:174.518653pt;}
.x2d_c00336{left:181.800653pt;}
.x74_c00336{left:183.235053pt;}
.x38_c00336{left:185.633053pt;}
.x39_c00336{left:191.023053pt;}
.x1c_c00336{left:192.774253pt;}
.x4a_c00336{left:201.283853pt;}
.x7b_c00336{left:202.555453pt;}
.x81_c00336{left:203.488253pt;}
.x7c_c00336{left:204.443053pt;}
.x58_c00336{left:211.676653pt;}
.xa_c00336{left:213.515853pt;}
.x3a_c00336{left:221.603053pt;}
.x1d_c00336{left:222.703053pt;}
.x6a_c00336{left:230.297453pt;}
.x2e_c00336{left:231.714253pt;}
.x82_c00336{left:232.972653pt;}
.x5f_c00336{left:236.959053pt;}
.x60_c00336{left:241.394253pt;}
.x7d_c00336{left:243.264253pt;}
.xb_c00336{left:244.628253pt;}
.x51_c00336{left:250.722253pt;}
.x2f_c00336{left:251.976253pt;}
.x85_c00336{left:253.195053pt;}
.x4b_c00336{left:261.093053pt;}
.x30_c00336{left:270.711453pt;}
.x1e_c00336{left:273.074253pt;}
.x3b_c00336{left:280.624653pt;}
.x31_c00336{left:290.106653pt;}
.x6f_c00336{left:291.237453pt;}
.xc_c00336{left:299.958253pt;}
.x62_c00336{left:301.062653pt;}
.x7e_c00336{left:302.514653pt;}
.x52_c00336{left:310.311453pt;}
.xd_c00336{left:320.075053pt;}
.x3c_c00336{left:321.914253pt;}
.x44_c00336{left:328.787053pt;}
.x32_c00336{left:329.733053pt;}
.x63_c00336{left:330.969453pt;}
.x6b_c00336{left:337.059053pt;}
.x3d_c00336{left:340.345853pt;}
.x1f_c00336{left:350.052253pt;}
.x33_c00336{left:358.209853pt;}
.x20_c00336{left:359.239453pt;}
.x75_c00336{left:360.286653pt;}
.x3e_c00336{left:368.690653pt;}
.x34_c00336{left:369.799453pt;}
.x21_c00336{left:371.599053pt;}
.x4c_c00336{left:377.877853pt;}
.xe_c00336{left:378.854653pt;}
.x77_c00336{left:380.258253pt;}
.x59_c00336{left:381.160253pt;}
.x6c_c00336{left:387.430253pt;}
.x22_c00336{left:389.119853pt;}
.x70_c00336{left:397.251053pt;}
.xf_c00336{left:398.474253pt;}
.x64_c00336{left:399.473053pt;}
.x23_c00336{left:408.299453pt;}
.x3f_c00336{left:416.857453pt;}
.x76_c00336{left:417.794653pt;}
.x6d_c00336{left:419.251053pt;}
.x53_c00336{left:427.782653pt;}
.x10_c00336{left:428.728653pt;}
.x45_c00336{left:430.290653pt;}
.x35_c00336{left:436.534253pt;}
.x4d_c00336{left:437.942253pt;}
.x71_c00336{left:438.857453pt;}
.x24_c00336{left:447.631053pt;}
.x4e_c00336{left:457.935853pt;}
.x11_c00336{left:466.969053pt;}
.x65_c00336{left:468.029453pt;}
.x78_c00336{left:476.134253pt;}
.x12_c00336{left:477.027453pt;}
.x86_c00336{left:478.448653pt;}
.x46_c00336{left:486.769053pt;}
.x61_c00336{left:487.921853pt;}
.x4f_c00336{left:494.059853pt;}
.x13_c00336{left:496.559053pt;}
.x87_c00336{left:497.483053pt;}
.x5a_c00336{left:505.279853pt;}
.x25_c00336{left:506.199453pt;}
.x72_c00336{left:507.317053pt;}
.x14_c00336{left:516.526253pt;}
.x26_c00336{left:526.963053pt;}
.x36_c00336{left:535.085453pt;}
.x40_c00336{left:536.013853pt;}
.x66_c00336{left:537.857453pt;}
.x54_c00336{left:545.808253pt;}
.x79_c00336{left:546.727853pt;}
.x27_c00336{left:556.170253pt;}
.x55_c00336{left:566.246253pt;}
.x15_c00336{left:575.429053pt;}
.x6e_c00336{left:576.423453pt;}
.x67_c00336{left:584.479853pt;}
.x28_c00336{left:585.584253pt;}
.x7f_c00336{left:586.763453pt;}
.x56_c00336{left:595.211453pt;}
.x4_c00336{left:596.293853pt;}
.x47_c00336{left:604.689053pt;}
.x16_c00336{left:605.784653pt;}
.x5_c00336{left:607.381853pt;}
.x29_c00336{left:614.725453pt;}
.x68_c00336{left:625.144653pt;}
.x5d_c00336{left:627.252253pt;}
.x5e_c00336{left:628.207053pt;}
.x2a_c00336{left:633.236253pt;}
.x41_c00336{left:634.375853pt;}
.x37_c00336{left:635.282253pt;}
.x80_c00336{left:637.112653pt;}
.x7a_c00336{left:644.482653pt;}
.x17_c00336{left:646.634253pt;}
.x2b_c00336{left:653.986653pt;}
.x89_c00336{left:672.941853pt;}
.x88_c00336{left:682.934253pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b2620a98ac4dad550564a2dc.woff2')format("woff");}.ff1_c00337{font-family:ff1_c00337;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00337;src:url('chunks/assets/font_d3ed0db326181ee2c96cec44.woff2')format("woff");}.ff2_c00337{font-family:ff2_c00337;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00337;src:url('chunks/assets/font_715ec70e5356d1923b096685.woff2')format("woff");}.ff3_c00337{font-family:ff3_c00337;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4d_c00337{transform:matrix(0.057693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.057693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.057693,0.000000,0.000000,0.250000,0,0);}
.m73_c00337{transform:matrix(0.150320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150320,0.000000,0.000000,0.250000,0,0);}
.m12_c00337{transform:matrix(0.209235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209235,0.000000,0.000000,0.250000,0,0);}
.mb4_c00337{transform:matrix(0.218448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218448,0.000000,0.000000,0.250000,0,0);}
.m6d_c00337{transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);}
.ma3_c00337{transform:matrix(0.233008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233008,0.000000,0.000000,0.250000,0,0);}
.m95_c00337{transform:matrix(0.234209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234209,0.000000,0.000000,0.250000,0,0);}
.m40_c00337{transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);}
.m5c_c00337{transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);}
.m7_c00337{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m28_c00337{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.m6_c00337{transform:matrix(0.253105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253105,0.000000,0.000000,0.250000,0,0);}
.m43_c00337{transform:matrix(0.254597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254597,0.000000,0.000000,0.250000,0,0);}
.m64_c00337{transform:matrix(0.255007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255007,0.000000,0.000000,0.250000,0,0);}
.m3a_c00337{transform:matrix(0.255030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255030,0.000000,0.000000,0.250000,0,0);}
.ma8_c00337{transform:matrix(0.255975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255975,0.000000,0.000000,0.250000,0,0);}
.m1e_c00337{transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);}
.m6b_c00337{transform:matrix(0.258112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258112,0.000000,0.000000,0.250000,0,0);}
.mb6_c00337{transform:matrix(0.258139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258139,0.000000,0.000000,0.250000,0,0);}
.m7d_c00337{transform:matrix(0.258596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258596,0.000000,0.000000,0.250000,0,0);}
.m3c_c00337{transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);}
.m94_c00337{transform:matrix(0.261418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261418,0.000000,0.000000,0.250000,0,0);}
.m68_c00337{transform:matrix(0.261462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261462,0.000000,0.000000,0.250000,0,0);}
.mac_c00337{transform:matrix(0.262979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262979,0.000000,0.000000,0.250000,0,0);}
.m8e_c00337{transform:matrix(0.263083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263083,0.000000,0.000000,0.250000,0,0);}
.m76_c00337{transform:matrix(0.263278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263278,0.000000,0.000000,0.250000,0,0);}
.m1b_c00337{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.mf_c00337{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m66_c00337{transform:matrix(0.264128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264128,0.000000,0.000000,0.250000,0,0);}
.m72_c00337{transform:matrix(0.265230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265230,0.000000,0.000000,0.250000,0,0);}
.m2b_c00337{transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);}
.m15_c00337{transform:matrix(0.265942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265942,0.000000,0.000000,0.250000,0,0);}
.m47_c00337{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.mb9_c00337{transform:matrix(0.267199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267199,0.000000,0.000000,0.250000,0,0);}
.m7a_c00337{transform:matrix(0.267205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267205,0.000000,0.000000,0.250000,0,0);}
.m6a_c00337{transform:matrix(0.267898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267898,0.000000,0.000000,0.250000,0,0);}
.m3_c00337{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m3f_c00337{transform:matrix(0.268421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268421,0.000000,0.000000,0.250000,0,0);}
.m8d_c00337{transform:matrix(0.268624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268624,0.000000,0.000000,0.250000,0,0);}
.m16_c00337{transform:matrix(0.269020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269020,0.000000,0.000000,0.250000,0,0);}
.m4e_c00337{transform:matrix(0.269791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269791,0.000000,0.000000,0.250000,0,0);}
.m9a_c00337{transform:matrix(0.270773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270773,0.000000,0.000000,0.250000,0,0);}
.m2f_c00337{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m5d_c00337{transform:matrix(0.270977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270977,0.000000,0.000000,0.250000,0,0);}
.m48_c00337{transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);}
.m35_c00337{transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274126,0.000000,0.000000,0.250000,0,0);}
.m1f_c00337{transform:matrix(0.274645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274645,0.000000,0.000000,0.250000,0,0);}
.m42_c00337{transform:matrix(0.275193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275193,0.000000,0.000000,0.250000,0,0);}
.ma7_c00337{transform:matrix(0.275621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275621,0.000000,0.000000,0.250000,0,0);}
.m78_c00337{transform:matrix(0.276058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276058,0.000000,0.000000,0.250000,0,0);}
.m20_c00337{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m23_c00337{transform:matrix(0.277285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277285,0.000000,0.000000,0.250000,0,0);}
.m2c_c00337{transform:matrix(0.277448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277448,0.000000,0.000000,0.250000,0,0);}
.m98_c00337{transform:matrix(0.277669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277669,0.000000,0.000000,0.250000,0,0);}
.m97_c00337{transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);}
.m49_c00337{transform:matrix(0.277859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277859,0.000000,0.000000,0.250000,0,0);}
.m2a_c00337{transform:matrix(0.277922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277922,0.000000,0.000000,0.250000,0,0);}
.me_c00337{transform:matrix(0.279350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279350,0.000000,0.000000,0.250000,0,0);}
.m22_c00337{transform:matrix(0.279379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279379,0.000000,0.000000,0.250000,0,0);}
.m90_c00337{transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);}
.m77_c00337{transform:matrix(0.279604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279604,0.000000,0.000000,0.250000,0,0);}
.mb1_c00337{transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);}
.m5e_c00337{transform:matrix(0.280329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280329,0.000000,0.000000,0.250000,0,0);}
.m70_c00337{transform:matrix(0.280459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280459,0.000000,0.000000,0.250000,0,0);}
.m80_c00337{transform:matrix(0.281098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281098,0.000000,0.000000,0.250000,0,0);}
.maa_c00337{transform:matrix(0.281134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281134,0.000000,0.000000,0.250000,0,0);}
.m8_c00337{transform:matrix(0.281178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281178,0.000000,0.000000,0.250000,0,0);}
.m25_c00337{transform:matrix(0.281458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281458,0.000000,0.000000,0.250000,0,0);}
.m57_c00337{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.mb8_c00337{transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);}
.mab_c00337{transform:matrix(0.282148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282148,0.000000,0.000000,0.250000,0,0);}
.m87_c00337{transform:matrix(0.282256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282256,0.000000,0.000000,0.250000,0,0);}
.m33_c00337{transform:matrix(0.282593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282593,0.000000,0.000000,0.250000,0,0);}
.m92_c00337{transform:matrix(0.283223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283223,0.000000,0.000000,0.250000,0,0);}
.m8b_c00337{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m9d_c00337{transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);}
.ma5_c00337{transform:matrix(0.284189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284189,0.000000,0.000000,0.250000,0,0);}
.m5f_c00337{transform:matrix(0.285034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285034,0.000000,0.000000,0.250000,0,0);}
.m4f_c00337{transform:matrix(0.285083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285083,0.000000,0.000000,0.250000,0,0);}
.m18_c00337{transform:matrix(0.285460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285460,0.000000,0.000000,0.250000,0,0);}
.m55_c00337{transform:matrix(0.285764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285764,0.000000,0.000000,0.250000,0,0);}
.m1c_c00337{transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);}
.m93_c00337{transform:matrix(0.286110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286110,0.000000,0.000000,0.250000,0,0);}
.m86_c00337{transform:matrix(0.286133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286133,0.000000,0.000000,0.250000,0,0);}
.m99_c00337{transform:matrix(0.286181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286181,0.000000,0.000000,0.250000,0,0);}
.mb5_c00337{transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);}
.m9e_c00337{transform:matrix(0.287437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287437,0.000000,0.000000,0.250000,0,0);}
.m89_c00337{transform:matrix(0.287899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287899,0.000000,0.000000,0.250000,0,0);}
.m34_c00337{transform:matrix(0.288065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288065,0.000000,0.000000,0.250000,0,0);}
.m27_c00337{transform:matrix(0.288557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288557,0.000000,0.000000,0.250000,0,0);}
.m13_c00337{transform:matrix(0.288628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288628,0.000000,0.000000,0.250000,0,0);}
.m24_c00337{transform:matrix(0.288974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288974,0.000000,0.000000,0.250000,0,0);}
.mb_c00337{transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289003,0.000000,0.000000,0.250000,0,0);}
.m14_c00337{transform:matrix(0.289100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289100,0.000000,0.000000,0.250000,0,0);}
.m1a_c00337{transform:matrix(0.289101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289101,0.000000,0.000000,0.250000,0,0);}
.m52_c00337{transform:matrix(0.289951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289951,0.000000,0.000000,0.250000,0,0);}
.m5_c00337{transform:matrix(0.290472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290472,0.000000,0.000000,0.250000,0,0);}
.ma1_c00337{transform:matrix(0.291151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291151,0.000000,0.000000,0.250000,0,0);}
.m10_c00337{transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);}
.md_c00337{transform:matrix(0.291973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291973,0.000000,0.000000,0.250000,0,0);}
.m88_c00337{transform:matrix(0.292491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292491,0.000000,0.000000,0.250000,0,0);}
.m53_c00337{transform:matrix(0.292793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292793,0.000000,0.000000,0.250000,0,0);}
.m38_c00337{transform:matrix(0.293505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293505,0.000000,0.000000,0.250000,0,0);}
.m82_c00337{transform:matrix(0.294085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294085,0.000000,0.000000,0.250000,0,0);}
.m81_c00337{transform:matrix(0.294116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294116,0.000000,0.000000,0.250000,0,0);}
.m8c_c00337{transform:matrix(0.295299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295299,0.000000,0.000000,0.250000,0,0);}
.m36_c00337{transform:matrix(0.296510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296510,0.000000,0.000000,0.250000,0,0);}
.m56_c00337{transform:matrix(0.296568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296568,0.000000,0.000000,0.250000,0,0);}
.m4c_c00337{transform:matrix(0.296672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296672,0.000000,0.000000,0.250000,0,0);}
.m60_c00337{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m58_c00337{transform:matrix(0.297357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297357,0.000000,0.000000,0.250000,0,0);}
.m11_c00337{transform:matrix(0.298138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298138,0.000000,0.000000,0.250000,0,0);}
.m7c_c00337{transform:matrix(0.298405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298405,0.000000,0.000000,0.250000,0,0);}
.m41_c00337{transform:matrix(0.298942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298942,0.000000,0.000000,0.250000,0,0);}
.m17_c00337{transform:matrix(0.299520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299520,0.000000,0.000000,0.250000,0,0);}
.m1d_c00337{transform:matrix(0.299951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299951,0.000000,0.000000,0.250000,0,0);}
.m3e_c00337{transform:matrix(0.300109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300109,0.000000,0.000000,0.250000,0,0);}
.m79_c00337{transform:matrix(0.301637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301637,0.000000,0.000000,0.250000,0,0);}
.m30_c00337{transform:matrix(0.301814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301814,0.000000,0.000000,0.250000,0,0);}
.m3b_c00337{transform:matrix(0.302306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302306,0.000000,0.000000,0.250000,0,0);}
.m9f_c00337{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m45_c00337{transform:matrix(0.303174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303174,0.000000,0.000000,0.250000,0,0);}
.m2e_c00337{transform:matrix(0.304145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304145,0.000000,0.000000,0.250000,0,0);}
.m84_c00337{transform:matrix(0.304720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304720,0.000000,0.000000,0.250000,0,0);}
.m9b_c00337{transform:matrix(0.304765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304765,0.000000,0.000000,0.250000,0,0);}
.m37_c00337{transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);}
.m4a_c00337{transform:matrix(0.305189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305189,0.000000,0.000000,0.250000,0,0);}
.m44_c00337{transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);}
.ma4_c00337{transform:matrix(0.305679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305679,0.000000,0.000000,0.250000,0,0);}
.m6f_c00337{transform:matrix(0.305713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305713,0.000000,0.000000,0.250000,0,0);}
.m50_c00337{transform:matrix(0.306289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306289,0.000000,0.000000,0.250000,0,0);}
.m9_c00337{transform:matrix(0.306555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306555,0.000000,0.000000,0.250000,0,0);}
.m26_c00337{transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307976,0.000000,0.000000,0.250000,0,0);}
.m32_c00337{transform:matrix(0.308151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308151,0.000000,0.000000,0.250000,0,0);}
.mae_c00337{transform:matrix(0.308934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308934,0.000000,0.000000,0.250000,0,0);}
.mb3_c00337{transform:matrix(0.308942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308942,0.000000,0.000000,0.250000,0,0);}
.m39_c00337{transform:matrix(0.309032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309032,0.000000,0.000000,0.250000,0,0);}
.m75_c00337{transform:matrix(0.309961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309961,0.000000,0.000000,0.250000,0,0);}
.m9c_c00337{transform:matrix(0.310783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310783,0.000000,0.000000,0.250000,0,0);}
.m62_c00337{transform:matrix(0.311265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311265,0.000000,0.000000,0.250000,0,0);}
.m4b_c00337{transform:matrix(0.311369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311369,0.000000,0.000000,0.250000,0,0);}
.m21_c00337{transform:matrix(0.311765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311765,0.000000,0.000000,0.250000,0,0);}
.m65_c00337{transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312540,0.000000,0.000000,0.250000,0,0);}
.m7e_c00337{transform:matrix(0.312751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312751,0.000000,0.000000,0.250000,0,0);}
.m96_c00337{transform:matrix(0.313518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313518,0.000000,0.000000,0.250000,0,0);}
.m31_c00337{transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);}
.m74_c00337{transform:matrix(0.313612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313612,0.000000,0.000000,0.250000,0,0);}
.m61_c00337{transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);}
.m1_c00337{transform:matrix(0.315372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315372,0.000000,0.000000,0.250000,0,0);}
.ma2_c00337{transform:matrix(0.315855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315855,0.000000,0.000000,0.250000,0,0);}
.m2d_c00337{transform:matrix(0.316041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316041,0.000000,0.000000,0.250000,0,0);}
.m69_c00337{transform:matrix(0.317919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317919,0.000000,0.000000,0.250000,0,0);}
.m91_c00337{transform:matrix(0.319290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319290,0.000000,0.000000,0.250000,0,0);}
.ma0_c00337{transform:matrix(0.319294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319294,0.000000,0.000000,0.250000,0,0);}
.m7f_c00337{transform:matrix(0.320121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320121,0.000000,0.000000,0.250000,0,0);}
.m51_c00337{transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);}
.m5a_c00337{transform:matrix(0.323918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323918,0.000000,0.000000,0.250000,0,0);}
.mc_c00337{transform:matrix(0.324420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324420,0.000000,0.000000,0.250000,0,0);}
.m8a_c00337{transform:matrix(0.324926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324926,0.000000,0.000000,0.250000,0,0);}
.ma9_c00337{transform:matrix(0.325489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325489,0.000000,0.000000,0.250000,0,0);}
.ma6_c00337{transform:matrix(0.326049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326049,0.000000,0.000000,0.250000,0,0);}
.m67_c00337{transform:matrix(0.326186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326186,0.000000,0.000000,0.250000,0,0);}
.m63_c00337{transform:matrix(0.326313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326313,0.000000,0.000000,0.250000,0,0);}
.mad_c00337{transform:matrix(0.326944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326944,0.000000,0.000000,0.250000,0,0);}
.m0_c00337{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m59_c00337{transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327463,0.000000,0.000000,0.250000,0,0);}
.m6c_c00337{transform:matrix(0.328654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328654,0.000000,0.000000,0.250000,0,0);}
.m71_c00337{transform:matrix(0.329568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329568,0.000000,0.000000,0.250000,0,0);}
.m85_c00337{transform:matrix(0.331222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331222,0.000000,0.000000,0.250000,0,0);}
.m19_c00337{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m29_c00337{transform:matrix(0.333988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333988,0.000000,0.000000,0.250000,0,0);}
.m6e_c00337{transform:matrix(0.334611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334611,0.000000,0.000000,0.250000,0,0);}
.m83_c00337{transform:matrix(0.335394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335394,0.000000,0.000000,0.250000,0,0);}
.m5b_c00337{transform:matrix(0.335559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335559,0.000000,0.000000,0.250000,0,0);}
.m54_c00337{transform:matrix(0.335604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335604,0.000000,0.000000,0.250000,0,0);}
.m46_c00337{transform:matrix(0.337910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337910,0.000000,0.000000,0.250000,0,0);}
.maf_c00337{transform:matrix(0.339126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339126,0.000000,0.000000,0.250000,0,0);}
.m2_c00337{transform:matrix(0.341315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341315,0.000000,0.000000,0.250000,0,0);}
.mb7_c00337{transform:matrix(0.341662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341662,0.000000,0.000000,0.250000,0,0);}
.mb2_c00337{transform:matrix(0.342926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342926,0.000000,0.000000,0.250000,0,0);}
.mb0_c00337{transform:matrix(0.344673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344673,0.000000,0.000000,0.250000,0,0);}
.m3d_c00337{transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347372,0.000000,0.000000,0.250000,0,0);}
.ma_c00337{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m4_c00337{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m8f_c00337{transform:matrix(0.396487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396487,0.000000,0.000000,0.250000,0,0);}
.m7b_c00337{transform:matrix(0.423078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423078,0.000000,0.000000,0.250000,0,0);}
.v1_c00337{vertical-align:-32.788800px;}
.v0_c00337{vertical-align:0.000000px;}
.ls9_c00337{letter-spacing:-2.744280px;}
.lsa_c00337{letter-spacing:-2.375762px;}
.lsc_c00337{letter-spacing:-1.348618px;}
.ls8_c00337{letter-spacing:0.000000px;}
.ls12_c00337{letter-spacing:0.533174px;}
.ls4_c00337{letter-spacing:0.705672px;}
.ls3_c00337{letter-spacing:0.933055px;}
.lsf_c00337{letter-spacing:1.819066px;}
.lsd_c00337{letter-spacing:1.881792px;}
.ls1_c00337{letter-spacing:2.101334px;}
.lsb_c00337{letter-spacing:2.509056px;}
.ls5_c00337{letter-spacing:3.112798px;}
.ls11_c00337{letter-spacing:3.544200px;}
.ls10_c00337{letter-spacing:3.747902px;}
.ls0_c00337{letter-spacing:3.865514px;}
.ls6_c00337{letter-spacing:3.920400px;}
.ls7_c00337{letter-spacing:4.276810px;}
.ls2_c00337{letter-spacing:7.291944px;}
.lse_c00337{letter-spacing:55.598598px;}
.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:-23.467514px;}
.ws2_c00337{word-spacing:-22.111056px;}
.ws5_c00337{word-spacing:-20.307672px;}
.ws3_c00337{word-spacing:-19.602000px;}
.ws6_c00337{word-spacing:0.000000px;}
.ws1_c00337{word-spacing:1.253736px;}
.ws4_c00337{word-spacing:2.665872px;}
._5_c00337{margin-left:-25.796232px;}
._c_c00337{margin-left:-9.252144px;}
._b_c00337{margin-left:-5.959800px;}
._3_c00337{margin-left:-2.054290px;}
._8_c00337{width:6.978708px;}
._4_c00337{width:8.076024px;}
._e_c00337{width:9.173736px;}
._6_c00337{width:10.585080px;}
._11_c00337{width:11.918016px;}
._f_c00337{width:13.172148px;}
._7_c00337{width:20.856528px;}
._1_c00337{width:22.267872px;}
._12_c00337{width:23.679216px;}
._d_c00337{width:25.960968px;}
._2_c00337{width:29.010960px;}
._13_c00337{width:31.474872px;}
._0_c00337{width:32.696136px;}
._a_c00337{width:34.562088px;}
._9_c00337{width:40.301712px;}
._10_c00337{width:145.404754px;}
.fc0_c00337{color:transparent;}
.fs6_c00337{font-size:22.176000px;}
.fs9_c00337{font-size:27.720000px;}
.fsb_c00337{font-size:33.660000px;}
.fs8_c00337{font-size:34.056198px;}
.fs5_c00337{font-size:38.808000px;}
.fs3_c00337{font-size:39.600000px;}
.fs4_c00337{font-size:50.688000px;}
.fsc_c00337{font-size:53.856198px;}
.fs7_c00337{font-size:55.598598px;}
.fs2_c00337{font-size:66.528000px;}
.fsa_c00337{font-size:70.884000px;}
.fs0_c00337{font-size:78.408000px;}
.fs1_c00337{font-size:85.536198px;}
.y0_c00337{bottom:0.000000px;}
.y1_c00337{bottom:76.500000px;}
.y26_c00337{bottom:96.139935px;}
.y25_c00337{bottom:96.491385px;}
.y24_c00337{bottom:150.669135px;}
.y23_c00337{bottom:180.963135px;}
.y22_c00337{bottom:214.108335px;}
.y20_c00337{bottom:246.170475px;}
.y21_c00337{bottom:246.179385px;}
.y1f_c00337{bottom:278.611785px;}
.y1e_c00337{bottom:311.400585px;}
.y1d_c00337{bottom:344.550735px;}
.y1c_c00337{bottom:407.277135px;}
.y1b_c00337{bottom:408.697785px;}
.y1a_c00337{bottom:441.842985px;}
.y19_c00337{bottom:473.918985px;}
.y18_c00337{bottom:505.999935px;}
.y17_c00337{bottom:526.671135px;}
.y16_c00337{bottom:538.070985px;}
.y15_c00337{bottom:553.039785px;}
.y14_c00337{bottom:570.151935px;}
.y13_c00337{bottom:602.940735px;}
.y12_c00337{bottom:635.373135px;}
.y11_c00337{bottom:651.411135px;}
.y10_c00337{bottom:667.444185px;}
.yf_c00337{bottom:731.957535px;}
.ye_c00337{bottom:764.741385px;}
.yd_c00337{bottom:797.886585px;}
.yb_c00337{bottom:829.602225px;}
.yc_c00337{bottom:829.611135px;}
.ya_c00337{bottom:862.043535px;}
.y9_c00337{bottom:894.832335px;}
.y8_c00337{bottom:922.270185px;}
.y7_c00337{bottom:927.259785px;}
.y2_c00337{bottom:927.621135px;}
.y6_c00337{bottom:941.872185px;}
.y5_c00337{bottom:945.441135px;}
.y4_c00337{bottom:953.281935px;}
.y3_c00337{bottom:1076.947785px;}
.h8_c00337{height:23.128875px;}
.hc_c00337{height:33.035449px;}
.ha_c00337{height:35.519550px;}
.h9_c00337{height:37.028666px;}
.h7_c00337{height:40.475531px;}
.h5_c00337{height:41.301563px;}
.h6_c00337{height:52.866000px;}
.hd_c00337{height:56.170332px;}
.h4_c00337{height:69.386625px;}
.hb_c00337{height:69.568770px;}
.h2_c00337{height:76.953164px;}
.h3_c00337{height:83.949101px;}
.h1_c00337{height:1110.000000px;}
.h0_c00337{height:1263.000000px;}
.w1_c00337{width:775.500000px;}
.w0_c00337{width:892.500000px;}
.x0_c00337{left:0.000000px;}
.x1_c00337{left:58.500000px;}
.x15_c00337{left:93.160635px;}
.x2_c00337{left:94.507035px;}
.x48_c00337{left:96.670185px;}
.x59_c00337{left:125.751435px;}
.x3_c00337{left:126.969135px;}
.x6d_c00337{left:128.082885px;}
.x3b_c00337{left:136.096935px;}
.x16_c00337{left:137.938335px;}
.x33_c00337{left:147.076035px;}
.x5e_c00337{left:148.120485px;}
.x5f_c00337{left:158.168985px;}
.x42_c00337{left:159.416385px;}
.x23_c00337{left:170.133135px;}
.x17_c00337{left:171.177585px;}
.x2d_c00337{left:180.830085px;}
.x1e_c00337{left:192.111135px;}
.x3c_c00337{left:194.417835px;}
.x1f_c00337{left:203.981235px;}
.x5a_c00337{left:207.020535px;}
.xd_c00337{left:214.138635px;}
.x6a_c00337{left:215.287035px;}
.x4d_c00337{left:224.830635px;}
.x4_c00337{left:225.993885px;}
.x55_c00337{left:235.562235px;}
.x24_c00337{left:236.784885px;}
.x4e_c00337{left:237.804585px;}
.x2e_c00337{left:247.788735px;}
.x5b_c00337{left:249.248985px;}
.x2a_c00337{left:258.896535px;}
.x25_c00337{left:268.707435px;}
.x3d_c00337{left:270.296385px;}
.x18_c00337{left:280.077585px;}
.xe_c00337{left:281.691285px;}
.x3e_c00337{left:291.591285px;}
.x19_c00337{left:298.179735px;}
.x26_c00337{left:302.510985px;}
.xf_c00337{left:314.480085px;}
.x43_c00337{left:316.514535px;}
.x4f_c00337{left:323.949435px;}
.x5_c00337{left:325.528485px;}
.x27_c00337{left:336.591735px;}
.x34_c00337{left:337.616385px;}
.x10_c00337{left:347.947035px;}
.x6_c00337{left:358.985535px;}
.x35_c00337{left:370.405185px;}
.x11_c00337{left:380.582385px;}
.x56_c00337{left:381.760485px;}
.x7_c00337{left:392.863335px;}
.x65_c00337{left:402.847485px;}
.x44_c00337{left:403.916685px;}
.x69_c00337{left:413.009835px;}
.x28_c00337{left:414.257235px;}
.x6c_c00337{left:416.351085px;}
.x66_c00337{left:423.741435px;}
.x2b_c00337{left:424.969035px;}
.x1a_c00337{left:425.993685px;}
.x2f_c00337{left:436.017435px;}
.x61_c00337{left:443.496885px;}
.x6e_c00337{left:448.506285px;}
.x12_c00337{left:458.747835px;}
.x30_c00337{left:469.147785px;}
.x62_c00337{left:479.661585px;}
.x3f_c00337{left:481.077285px;}
.x6b_c00337{left:482.121735px;}
.x4c_c00337{left:488.700285px;}
.x67_c00337{left:490.210035px;}
.x36_c00337{left:491.581185px;}
.x49_c00337{left:492.610785px;}
.x31_c00337{left:503.669085px;}
.x1b_c00337{left:512.796885px;}
.x57_c00337{left:514.054185px;}
.x63_c00337{left:525.077835px;}
.x54_c00337{left:530.582235px;}
.x45_c00337{left:532.745385px;}
.x37_c00337{left:535.324335px;}
.x50_c00337{left:536.467785px;}
.x20_c00337{left:546.501435px;}
.x29_c00337{left:557.549835px;}
.x68_c00337{left:558.619035px;}
.x40_c00337{left:568.603185px;}
.x13_c00337{left:578.310135px;}
.xb_c00337{left:580.696035px;}
.x1c_c00337{left:590.709885px;}
.x38_c00337{left:601.743435px;}
.x21_c00337{left:613.182885px;}
.x2c_c00337{left:623.830335px;}
.x51_c00337{left:625.270785px;}
.x5c_c00337{left:627.290385px;}
.x39_c00337{left:634.349085px;}
.x46_c00337{left:636.249885px;}
.x41_c00337{left:646.095435px;}
.x32_c00337{left:655.535085px;}
.x14_c00337{left:657.128985px;}
.x60_c00337{left:658.732785px;}
.x8_c00337{left:668.330835px;}
.x47_c00337{left:670.350435px;}
.x52_c00337{left:679.606935px;}
.x22_c00337{left:690.086085px;}
.x58_c00337{left:699.951435px;}
.x1d_c00337{left:701.188935px;}
.x3a_c00337{left:703.436235px;}
.x9_c00337{left:705.752835px;}
.xa_c00337{left:707.198235px;}
.xc_c00337{left:710.054385px;}
.x53_c00337{left:711.321585px;}
.x4a_c00337{left:724.315335px;}
.x5d_c00337{left:734.675685px;}
.x70_c00337{left:744.194535px;}
.x4b_c00337{left:745.694385px;}
.x6f_c00337{left:754.708335px;}
.x64_c00337{left:772.706535px;}
@media print{
.v1_c00337{vertical-align:-29.145600pt;}
.v0_c00337{vertical-align:0.000000pt;}
.ls9_c00337{letter-spacing:-2.439360pt;}
.lsa_c00337{letter-spacing:-2.111789pt;}
.lsc_c00337{letter-spacing:-1.198771pt;}
.ls8_c00337{letter-spacing:0.000000pt;}
.ls12_c00337{letter-spacing:0.473933pt;}
.ls4_c00337{letter-spacing:0.627264pt;}
.ls3_c00337{letter-spacing:0.829382pt;}
.lsf_c00337{letter-spacing:1.616947pt;}
.lsd_c00337{letter-spacing:1.672704pt;}
.ls1_c00337{letter-spacing:1.867853pt;}
.lsb_c00337{letter-spacing:2.230272pt;}
.ls5_c00337{letter-spacing:2.766931pt;}
.ls11_c00337{letter-spacing:3.150400pt;}
.ls10_c00337{letter-spacing:3.331469pt;}
.ls0_c00337{letter-spacing:3.436013pt;}
.ls6_c00337{letter-spacing:3.484800pt;}
.ls7_c00337{letter-spacing:3.801609pt;}
.ls2_c00337{letter-spacing:6.481728pt;}
.lse_c00337{letter-spacing:49.420976pt;}
.ws0_c00337{word-spacing:-20.860013pt;}
.ws2_c00337{word-spacing:-19.654272pt;}
.ws5_c00337{word-spacing:-18.051264pt;}
.ws3_c00337{word-spacing:-17.424000pt;}
.ws6_c00337{word-spacing:0.000000pt;}
.ws1_c00337{word-spacing:1.114432pt;}
.ws4_c00337{word-spacing:2.369664pt;}
._5_c00337{margin-left:-22.929984pt;}
._c_c00337{margin-left:-8.224128pt;}
._b_c00337{margin-left:-5.297600pt;}
._3_c00337{margin-left:-1.826035pt;}
._8_c00337{width:6.203296pt;}
._4_c00337{width:7.178688pt;}
._e_c00337{width:8.154432pt;}
._6_c00337{width:9.408960pt;}
._11_c00337{width:10.593792pt;}
._f_c00337{width:11.708576pt;}
._7_c00337{width:18.539136pt;}
._1_c00337{width:19.793664pt;}
._12_c00337{width:21.048192pt;}
._d_c00337{width:23.076416pt;}
._2_c00337{width:25.787520pt;}
._13_c00337{width:27.977664pt;}
._0_c00337{width:29.063232pt;}
._a_c00337{width:30.721856pt;}
._9_c00337{width:35.823744pt;}
._10_c00337{width:129.248670pt;}
.fs6_c00337{font-size:19.712000pt;}
.fs9_c00337{font-size:24.640000pt;}
.fsb_c00337{font-size:29.920000pt;}
.fs8_c00337{font-size:30.272176pt;}
.fs5_c00337{font-size:34.496000pt;}
.fs3_c00337{font-size:35.200000pt;}
.fs4_c00337{font-size:45.056000pt;}
.fsc_c00337{font-size:47.872176pt;}
.fs7_c00337{font-size:49.420976pt;}
.fs2_c00337{font-size:59.136000pt;}
.fsa_c00337{font-size:63.008000pt;}
.fs0_c00337{font-size:69.696000pt;}
.fs1_c00337{font-size:76.032176pt;}
.y0_c00337{bottom:0.000000pt;}
.y1_c00337{bottom:68.000000pt;}
.y26_c00337{bottom:85.457720pt;}
.y25_c00337{bottom:85.770120pt;}
.y24_c00337{bottom:133.928120pt;}
.y23_c00337{bottom:160.856120pt;}
.y22_c00337{bottom:190.318520pt;}
.y20_c00337{bottom:218.818200pt;}
.y21_c00337{bottom:218.826120pt;}
.y1f_c00337{bottom:247.654920pt;}
.y1e_c00337{bottom:276.800520pt;}
.y1d_c00337{bottom:306.267320pt;}
.y1c_c00337{bottom:362.024120pt;}
.y1b_c00337{bottom:363.286920pt;}
.y1a_c00337{bottom:392.749320pt;}
.y19_c00337{bottom:421.261320pt;}
.y18_c00337{bottom:449.777720pt;}
.y17_c00337{bottom:468.152120pt;}
.y16_c00337{bottom:478.285320pt;}
.y15_c00337{bottom:491.590920pt;}
.y14_c00337{bottom:506.801720pt;}
.y13_c00337{bottom:535.947320pt;}
.y12_c00337{bottom:564.776120pt;}
.y11_c00337{bottom:579.032120pt;}
.y10_c00337{bottom:593.283720pt;}
.yf_c00337{bottom:650.628920pt;}
.ye_c00337{bottom:679.770120pt;}
.yd_c00337{bottom:709.232520pt;}
.yb_c00337{bottom:737.424200pt;}
.yc_c00337{bottom:737.432120pt;}
.ya_c00337{bottom:766.260920pt;}
.y9_c00337{bottom:795.406520pt;}
.y8_c00337{bottom:819.795720pt;}
.y7_c00337{bottom:824.230920pt;}
.y2_c00337{bottom:824.552120pt;}
.y6_c00337{bottom:837.219720pt;}
.y5_c00337{bottom:840.392120pt;}
.y4_c00337{bottom:847.361720pt;}
.y3_c00337{bottom:957.286920pt;}
.h8_c00337{height:20.559000pt;}
.hc_c00337{height:29.364844pt;}
.ha_c00337{height:31.572934pt;}
.h9_c00337{height:32.914370pt;}
.h7_c00337{height:35.978250pt;}
.h5_c00337{height:36.712500pt;}
.h6_c00337{height:46.992000pt;}
.hd_c00337{height:49.929184pt;}
.h4_c00337{height:61.677000pt;}
.hb_c00337{height:61.838906pt;}
.h2_c00337{height:68.402813pt;}
.h3_c00337{height:74.621423pt;}
.h1_c00337{height:986.666667pt;}
.h0_c00337{height:1122.666667pt;}
.w1_c00337{width:689.333333pt;}
.w0_c00337{width:793.333333pt;}
.x0_c00337{left:0.000000pt;}
.x1_c00337{left:52.000000pt;}
.x15_c00337{left:82.809453pt;}
.x2_c00337{left:84.006253pt;}
.x48_c00337{left:85.929053pt;}
.x59_c00337{left:111.779053pt;}
.x3_c00337{left:112.861453pt;}
.x6d_c00337{left:113.851453pt;}
.x3b_c00337{left:120.975053pt;}
.x16_c00337{left:122.611853pt;}
.x33_c00337{left:130.734253pt;}
.x5e_c00337{left:131.662653pt;}
.x5f_c00337{left:140.594653pt;}
.x42_c00337{left:141.703453pt;}
.x23_c00337{left:151.229453pt;}
.x17_c00337{left:152.157853pt;}
.x2d_c00337{left:160.737853pt;}
.x1e_c00337{left:170.765453pt;}
.x3c_c00337{left:172.815853pt;}
.x1f_c00337{left:181.316653pt;}
.x5a_c00337{left:184.018253pt;}
.xd_c00337{left:190.345453pt;}
.x6a_c00337{left:191.366253pt;}
.x4d_c00337{left:199.849453pt;}
.x4_c00337{left:200.883453pt;}
.x55_c00337{left:209.388653pt;}
.x24_c00337{left:210.475453pt;}
.x4e_c00337{left:211.381853pt;}
.x2e_c00337{left:220.256653pt;}
.x5b_c00337{left:221.554653pt;}
.x2a_c00337{left:230.130253pt;}
.x25_c00337{left:238.851053pt;}
.x3d_c00337{left:240.263453pt;}
.x18_c00337{left:248.957853pt;}
.xe_c00337{left:250.392253pt;}
.x3e_c00337{left:259.192253pt;}
.x19_c00337{left:265.048653pt;}
.x26_c00337{left:268.898653pt;}
.xf_c00337{left:279.537853pt;}
.x43_c00337{left:281.346253pt;}
.x4f_c00337{left:287.955053pt;}
.x5_c00337{left:289.358653pt;}
.x27_c00337{left:299.192653pt;}
.x34_c00337{left:300.103453pt;}
.x10_c00337{left:309.286253pt;}
.x6_c00337{left:319.098253pt;}
.x35_c00337{left:329.249053pt;}
.x11_c00337{left:338.295453pt;}
.x56_c00337{left:339.342653pt;}
.x7_c00337{left:349.211853pt;}
.x65_c00337{left:358.086653pt;}
.x44_c00337{left:359.037053pt;}
.x69_c00337{left:367.119853pt;}
.x28_c00337{left:368.228653pt;}
.x6c_c00337{left:370.089853pt;}
.x66_c00337{left:376.659053pt;}
.x2b_c00337{left:377.750253pt;}
.x1a_c00337{left:378.661053pt;}
.x2f_c00337{left:387.571053pt;}
.x61_c00337{left:394.219453pt;}
.x6e_c00337{left:398.672253pt;}
.x12_c00337{left:407.775853pt;}
.x30_c00337{left:417.020253pt;}
.x62_c00337{left:426.365853pt;}
.x3f_c00337{left:427.624253pt;}
.x6b_c00337{left:428.552653pt;}
.x4c_c00337{left:434.400253pt;}
.x67_c00337{left:435.742253pt;}
.x36_c00337{left:436.961053pt;}
.x49_c00337{left:437.876253pt;}
.x31_c00337{left:447.705853pt;}
.x1b_c00337{left:455.819453pt;}
.x57_c00337{left:456.937053pt;}
.x63_c00337{left:466.735853pt;}
.x54_c00337{left:471.628653pt;}
.x45_c00337{left:473.551453pt;}
.x37_c00337{left:475.843853pt;}
.x50_c00337{left:476.860253pt;}
.x20_c00337{left:485.779053pt;}
.x29_c00337{left:495.599853pt;}
.x68_c00337{left:496.550253pt;}
.x40_c00337{left:505.425053pt;}
.x13_c00337{left:514.053453pt;}
.xb_c00337{left:516.174253pt;}
.x1c_c00337{left:525.075453pt;}
.x38_c00337{left:534.883053pt;}
.x21_c00337{left:545.051453pt;}
.x2c_c00337{left:554.515853pt;}
.x51_c00337{left:555.796253pt;}
.x5c_c00337{left:557.591453pt;}
.x39_c00337{left:563.865853pt;}
.x46_c00337{left:565.555453pt;}
.x41_c00337{left:574.307053pt;}
.x32_c00337{left:582.697853pt;}
.x14_c00337{left:584.114653pt;}
.x60_c00337{left:585.540253pt;}
.x8_c00337{left:594.071853pt;}
.x47_c00337{left:595.867053pt;}
.x52_c00337{left:604.095053pt;}
.x22_c00337{left:613.409853pt;}
.x58_c00337{left:622.179053pt;}
.x1d_c00337{left:623.279053pt;}
.x3a_c00337{left:625.276653pt;}
.x9_c00337{left:627.335853pt;}
.xa_c00337{left:628.620653pt;}
.xc_c00337{left:631.159453pt;}
.x53_c00337{left:632.285853pt;}
.x4a_c00337{left:643.835853pt;}
.x5d_c00337{left:653.045053pt;}
.x70_c00337{left:661.506253pt;}
.x4b_c00337{left:662.839453pt;}
.x6f_c00337{left:670.851853pt;}
.x64_c00337{left:686.850253pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6ab02c407b0775fd0af74cf3.woff2')format("woff");}.ff1_c00338{font-family:ff1_c00338;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00338;src:url('chunks/assets/font_4db0fa50403cfcff00288e8c.woff2')format("woff");}.ff2_c00338{font-family:ff2_c00338;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00338;src:url('chunks/assets/font_0ba57b0712401a4dd724c3b3.woff2')format("woff");}.ff3_c00338{font-family:ff3_c00338;line-height:0.666000;font-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_c00338{transform:matrix(0.040442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040442,0.000000,0.000000,0.250000,0,0);}
.mdb_c00338{transform:matrix(0.073530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073530,0.000000,0.000000,0.250000,0,0);}
.mde_c00338{transform:matrix(0.088235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088235,0.000000,0.000000,0.250000,0,0);}
.m88_c00338{transform:matrix(0.091911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091911,0.000000,0.000000,0.250000,0,0);}
.mdd_c00338{transform:matrix(0.129411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129411,0.000000,0.000000,0.250000,0,0);}
.md8_c00338{transform:matrix(0.134559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134559,0.000000,0.000000,0.250000,0,0);}
.ma0_c00338{transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00338{transform:matrix(0.147059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147059,0.000000,0.000000,0.250000,0,0);}
.ma9_c00338{transform:matrix(0.148334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148334,0.000000,0.000000,0.250000,0,0);}
.m4b_c00338{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mda_c00338{transform:matrix(0.151261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151261,0.000000,0.000000,0.250000,0,0);}
.mc7_c00338{transform:matrix(0.153637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153637,0.000000,0.000000,0.250000,0,0);}
.m4d_c00338{transform:matrix(0.157142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157142,0.000000,0.000000,0.250000,0,0);}
.m4e_c00338{transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);}
.m6a_c00338{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);}
.m41_c00338{transform:matrix(0.168832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168832,0.000000,0.000000,0.250000,0,0);}
.m8d_c00338{transform:matrix(0.169118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169118,0.000000,0.000000,0.250000,0,0);}
.ma3_c00338{transform:matrix(0.174999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174999,0.000000,0.000000,0.250000,0,0);}
.mb1_c00338{transform:matrix(0.175470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175470,0.000000,0.000000,0.250000,0,0);}
.m8c_c00338{transform:matrix(0.176471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176471,0.000000,0.000000,0.250000,0,0);}
.ma1_c00338{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m63_c00338{transform:matrix(0.186071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186071,0.000000,0.000000,0.250000,0,0);}
.m69_c00338{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.md7_c00338{transform:matrix(0.195215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195215,0.000000,0.000000,0.250000,0,0);}
.md9_c00338{transform:matrix(0.198530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198530,0.000000,0.000000,0.250000,0,0);}
.m4a_c00338{transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);}
.m4f_c00338{transform:matrix(0.211905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211905,0.000000,0.000000,0.250000,0,0);}
.m4c_c00338{transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);}
.m15_c00338{transform:matrix(0.218475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218475,0.000000,0.000000,0.250000,0,0);}
.mdc_c00338{transform:matrix(0.223039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223039,0.000000,0.000000,0.250000,0,0);}
.mcb_c00338{transform:matrix(0.224107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224107,0.000000,0.000000,0.250000,0,0);}
.m89_c00338{transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);}
.mc4_c00338{transform:matrix(0.228001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228001,0.000000,0.000000,0.250000,0,0);}
.m84_c00338{transform:matrix(0.232111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232111,0.000000,0.000000,0.250000,0,0);}
.m83_c00338{transform:matrix(0.241461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241461,0.000000,0.000000,0.250000,0,0);}
.ma2_c00338{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.mae_c00338{transform:matrix(0.246880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246880,0.000000,0.000000,0.250000,0,0);}
.m9b_c00338{transform:matrix(0.248852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248852,0.000000,0.000000,0.250000,0,0);}
.m0_c00338{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.mac_c00338{transform:matrix(0.250565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250565,0.000000,0.000000,0.250000,0,0);}
.m38_c00338{transform:matrix(0.250855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250855,0.000000,0.000000,0.250000,0,0);}
.m18_c00338{transform:matrix(0.252163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252163,0.000000,0.000000,0.250000,0,0);}
.mab_c00338{transform:matrix(0.253944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253944,0.000000,0.000000,0.250000,0,0);}
.m5b_c00338{transform:matrix(0.255335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255335,0.000000,0.000000,0.250000,0,0);}
.md1_c00338{transform:matrix(0.255352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255352,0.000000,0.000000,0.250000,0,0);}
.m17_c00338{transform:matrix(0.255668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255668,0.000000,0.000000,0.250000,0,0);}
.maa_c00338{transform:matrix(0.258816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258816,0.000000,0.000000,0.250000,0,0);}
.m8f_c00338{transform:matrix(0.258907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258907,0.000000,0.000000,0.250000,0,0);}
.m2d_c00338{transform:matrix(0.261193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261193,0.000000,0.000000,0.250000,0,0);}
.mb6_c00338{transform:matrix(0.261373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261373,0.000000,0.000000,0.250000,0,0);}
.m44_c00338{transform:matrix(0.261966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261966,0.000000,0.000000,0.250000,0,0);}
.m42_c00338{transform:matrix(0.262501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262501,0.000000,0.000000,0.250000,0,0);}
.ma7_c00338{transform:matrix(0.263609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263609,0.000000,0.000000,0.250000,0,0);}
.mc2_c00338{transform:matrix(0.265386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265386,0.000000,0.000000,0.250000,0,0);}
.mbd_c00338{transform:matrix(0.265942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265942,0.000000,0.000000,0.250000,0,0);}
.m77_c00338{transform:matrix(0.266392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266392,0.000000,0.000000,0.250000,0,0);}
.m65_c00338{transform:matrix(0.267220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267220,0.000000,0.000000,0.250000,0,0);}
.m1d_c00338{transform:matrix(0.267721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267721,0.000000,0.000000,0.250000,0,0);}
.mce_c00338{transform:matrix(0.267827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267827,0.000000,0.000000,0.250000,0,0);}
.m2b_c00338{transform:matrix(0.268319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268319,0.000000,0.000000,0.250000,0,0);}
.mb9_c00338{transform:matrix(0.268775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268775,0.000000,0.000000,0.250000,0,0);}
.m31_c00338{transform:matrix(0.270126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270126,0.000000,0.000000,0.250000,0,0);}
.mb4_c00338{transform:matrix(0.270764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270764,0.000000,0.000000,0.250000,0,0);}
.m8e_c00338{transform:matrix(0.273110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273110,0.000000,0.000000,0.250000,0,0);}
.ma5_c00338{transform:matrix(0.273299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273299,0.000000,0.000000,0.250000,0,0);}
.mcc_c00338{transform:matrix(0.274127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274127,0.000000,0.000000,0.250000,0,0);}
.m72_c00338{transform:matrix(0.274865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274865,0.000000,0.000000,0.250000,0,0);}
.mbe_c00338{transform:matrix(0.275301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275301,0.000000,0.000000,0.250000,0,0);}
.m99_c00338{transform:matrix(0.275509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275509,0.000000,0.000000,0.250000,0,0);}
.m95_c00338{transform:matrix(0.276245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276245,0.000000,0.000000,0.250000,0,0);}
.m5_c00338{transform:matrix(0.277788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277788,0.000000,0.000000,0.250000,0,0);}
.m49_c00338{transform:matrix(0.277901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277901,0.000000,0.000000,0.250000,0,0);}
.m7a_c00338{transform:matrix(0.278639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278639,0.000000,0.000000,0.250000,0,0);}
.mb2_c00338{transform:matrix(0.279152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279152,0.000000,0.000000,0.250000,0,0);}
.mba_c00338{transform:matrix(0.279449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279449,0.000000,0.000000,0.250000,0,0);}
.m22_c00338{transform:matrix(0.279953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279953,0.000000,0.000000,0.250000,0,0);}
.m9e_c00338{transform:matrix(0.280014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280014,0.000000,0.000000,0.250000,0,0);}
.m5d_c00338{transform:matrix(0.280188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280188,0.000000,0.000000,0.250000,0,0);}
.mb7_c00338{transform:matrix(0.280554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280554,0.000000,0.000000,0.250000,0,0);}
.m96_c00338{transform:matrix(0.280687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280687,0.000000,0.000000,0.250000,0,0);}
.md6_c00338{transform:matrix(0.281132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281132,0.000000,0.000000,0.250000,0,0);}
.m9a_c00338{transform:matrix(0.281227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281227,0.000000,0.000000,0.250000,0,0);}
.md_c00338{transform:matrix(0.281234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281234,0.000000,0.000000,0.250000,0,0);}
.m28_c00338{transform:matrix(0.282418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282418,0.000000,0.000000,0.250000,0,0);}
.mb5_c00338{transform:matrix(0.282439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282439,0.000000,0.000000,0.250000,0,0);}
.mc3_c00338{transform:matrix(0.282705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282705,0.000000,0.000000,0.250000,0,0);}
.m29_c00338{transform:matrix(0.283335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283335,0.000000,0.000000,0.250000,0,0);}
.m80_c00338{transform:matrix(0.283920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283920,0.000000,0.000000,0.250000,0,0);}
.m35_c00338{transform:matrix(0.284396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284396,0.000000,0.000000,0.250000,0,0);}
.m7d_c00338{transform:matrix(0.284546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284546,0.000000,0.000000,0.250000,0,0);}
.m23_c00338{transform:matrix(0.285104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285104,0.000000,0.000000,0.250000,0,0);}
.mc0_c00338{transform:matrix(0.285277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285277,0.000000,0.000000,0.250000,0,0);}
.mc6_c00338{transform:matrix(0.285332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285332,0.000000,0.000000,0.250000,0,0);}
.m7e_c00338{transform:matrix(0.285790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285790,0.000000,0.000000,0.250000,0,0);}
.m85_c00338{transform:matrix(0.286635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286635,0.000000,0.000000,0.250000,0,0);}
.m1_c00338{transform:matrix(0.286643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286643,0.000000,0.000000,0.250000,0,0);}
.m6_c00338{transform:matrix(0.287372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287372,0.000000,0.000000,0.250000,0,0);}
.m30_c00338{transform:matrix(0.287770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287770,0.000000,0.000000,0.250000,0,0);}
.m7b_c00338{transform:matrix(0.288841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288841,0.000000,0.000000,0.250000,0,0);}
.m73_c00338{transform:matrix(0.290893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290893,0.000000,0.000000,0.250000,0,0);}
.m7c_c00338{transform:matrix(0.291153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291153,0.000000,0.000000,0.250000,0,0);}
.m57_c00338{transform:matrix(0.291334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291334,0.000000,0.000000,0.250000,0,0);}
.ma6_c00338{transform:matrix(0.291828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291828,0.000000,0.000000,0.250000,0,0);}
.m68_c00338{transform:matrix(0.292448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292448,0.000000,0.000000,0.250000,0,0);}
.m2a_c00338{transform:matrix(0.292519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292519,0.000000,0.000000,0.250000,0,0);}
.m7_c00338{transform:matrix(0.293653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293653,0.000000,0.000000,0.250000,0,0);}
.m76_c00338{transform:matrix(0.294085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294085,0.000000,0.000000,0.250000,0,0);}
.m90_c00338{transform:matrix(0.294278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294278,0.000000,0.000000,0.250000,0,0);}
.m37_c00338{transform:matrix(0.294822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294822,0.000000,0.000000,0.250000,0,0);}
.m1f_c00338{transform:matrix(0.294887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294887,0.000000,0.000000,0.250000,0,0);}
.m97_c00338{transform:matrix(0.295018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295018,0.000000,0.000000,0.250000,0,0);}
.m27_c00338{transform:matrix(0.295190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295190,0.000000,0.000000,0.250000,0,0);}
.m9c_c00338{transform:matrix(0.295287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295287,0.000000,0.000000,0.250000,0,0);}
.m59_c00338{transform:matrix(0.295424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295424,0.000000,0.000000,0.250000,0,0);}
.m71_c00338{transform:matrix(0.296449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296449,0.000000,0.000000,0.250000,0,0);}
.m25_c00338{transform:matrix(0.297218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297218,0.000000,0.000000,0.250000,0,0);}
.mf_c00338{transform:matrix(0.297741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297741,0.000000,0.000000,0.250000,0,0);}
.m74_c00338{transform:matrix(0.298340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298340,0.000000,0.000000,0.250000,0,0);}
.m5a_c00338{transform:matrix(0.298481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298481,0.000000,0.000000,0.250000,0,0);}
.m98_c00338{transform:matrix(0.299201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299201,0.000000,0.000000,0.250000,0,0);}
.m9f_c00338{transform:matrix(0.299974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299974,0.000000,0.000000,0.250000,0,0);}
.m1c_c00338{transform:matrix(0.300913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300913,0.000000,0.000000,0.250000,0,0);}
.m48_c00338{transform:matrix(0.301503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301503,0.000000,0.000000,0.250000,0,0);}
.m43_c00338{transform:matrix(0.301672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301672,0.000000,0.000000,0.250000,0,0);}
.m1a_c00338{transform:matrix(0.301681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301681,0.000000,0.000000,0.250000,0,0);}
.m60_c00338{transform:matrix(0.302488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302488,0.000000,0.000000,0.250000,0,0);}
.m94_c00338{transform:matrix(0.302773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302773,0.000000,0.000000,0.250000,0,0);}
.m79_c00338{transform:matrix(0.303744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303744,0.000000,0.000000,0.250000,0,0);}
.m8_c00338{transform:matrix(0.304803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304803,0.000000,0.000000,0.250000,0,0);}
.m13_c00338{transform:matrix(0.305374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305374,0.000000,0.000000,0.250000,0,0);}
.md2_c00338{transform:matrix(0.305435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305435,0.000000,0.000000,0.250000,0,0);}
.ma_c00338{transform:matrix(0.305868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305868,0.000000,0.000000,0.250000,0,0);}
.m3c_c00338{transform:matrix(0.306300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306300,0.000000,0.000000,0.250000,0,0);}
.mb_c00338{transform:matrix(0.307015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307015,0.000000,0.000000,0.250000,0,0);}
.m62_c00338{transform:matrix(0.308874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308874,0.000000,0.000000,0.250000,0,0);}
.mc8_c00338{transform:matrix(0.308969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308969,0.000000,0.000000,0.250000,0,0);}
.m91_c00338{transform:matrix(0.309567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309567,0.000000,0.000000,0.250000,0,0);}
.m87_c00338{transform:matrix(0.311012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311012,0.000000,0.000000,0.250000,0,0);}
.m58_c00338{transform:matrix(0.311107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311107,0.000000,0.000000,0.250000,0,0);}
.ma8_c00338{transform:matrix(0.311372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311372,0.000000,0.000000,0.250000,0,0);}
.m3_c00338{transform:matrix(0.312609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312609,0.000000,0.000000,0.250000,0,0);}
.m5e_c00338{transform:matrix(0.313486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313486,0.000000,0.000000,0.250000,0,0);}
.m6b_c00338{transform:matrix(0.313775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313775,0.000000,0.000000,0.250000,0,0);}
.m56_c00338{transform:matrix(0.314045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314045,0.000000,0.000000,0.250000,0,0);}
.m47_c00338{transform:matrix(0.315202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315202,0.000000,0.000000,0.250000,0,0);}
.mc1_c00338{transform:matrix(0.315905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315905,0.000000,0.000000,0.250000,0,0);}
.mbf_c00338{transform:matrix(0.315955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315955,0.000000,0.000000,0.250000,0,0);}
.mad_c00338{transform:matrix(0.316266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316266,0.000000,0.000000,0.250000,0,0);}
.md4_c00338{transform:matrix(0.316573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316573,0.000000,0.000000,0.250000,0,0);}
.m36_c00338{transform:matrix(0.316744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316744,0.000000,0.000000,0.250000,0,0);}
.m10_c00338{transform:matrix(0.318953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318953,0.000000,0.000000,0.250000,0,0);}
.m9_c00338{transform:matrix(0.319417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319417,0.000000,0.000000,0.250000,0,0);}
.ma4_c00338{transform:matrix(0.320304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320304,0.000000,0.000000,0.250000,0,0);}
.mb0_c00338{transform:matrix(0.321407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321407,0.000000,0.000000,0.250000,0,0);}
.m3f_c00338{transform:matrix(0.322023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322023,0.000000,0.000000,0.250000,0,0);}
.mcd_c00338{transform:matrix(0.322578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322578,0.000000,0.000000,0.250000,0,0);}
.m6c_c00338{transform:matrix(0.322929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322929,0.000000,0.000000,0.250000,0,0);}
.mc9_c00338{transform:matrix(0.323340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323340,0.000000,0.000000,0.250000,0,0);}
.m26_c00338{transform:matrix(0.323560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323560,0.000000,0.000000,0.250000,0,0);}
.m33_c00338{transform:matrix(0.324056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324056,0.000000,0.000000,0.250000,0,0);}
.m93_c00338{transform:matrix(0.324660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324660,0.000000,0.000000,0.250000,0,0);}
.mca_c00338{transform:matrix(0.325591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325591,0.000000,0.000000,0.250000,0,0);}
.m2e_c00338{transform:matrix(0.325706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325706,0.000000,0.000000,0.250000,0,0);}
.m55_c00338{transform:matrix(0.327707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327707,0.000000,0.000000,0.250000,0,0);}
.m3a_c00338{transform:matrix(0.328784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328784,0.000000,0.000000,0.250000,0,0);}
.m11_c00338{transform:matrix(0.329426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329426,0.000000,0.000000,0.250000,0,0);}
.m64_c00338{transform:matrix(0.330806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330806,0.000000,0.000000,0.250000,0,0);}
.m21_c00338{transform:matrix(0.330882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330882,0.000000,0.000000,0.250000,0,0);}
.m2f_c00338{transform:matrix(0.331307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331307,0.000000,0.000000,0.250000,0,0);}
.m70_c00338{transform:matrix(0.331688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331688,0.000000,0.000000,0.250000,0,0);}
.md5_c00338{transform:matrix(0.332045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332045,0.000000,0.000000,0.250000,0,0);}
.md3_c00338{transform:matrix(0.332469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332469,0.000000,0.000000,0.250000,0,0);}
.m50_c00338{transform:matrix(0.332572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332572,0.000000,0.000000,0.250000,0,0);}
.mc_c00338{transform:matrix(0.333188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333188,0.000000,0.000000,0.250000,0,0);}
.m52_c00338{transform:matrix(0.334260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334260,0.000000,0.000000,0.250000,0,0);}
.m54_c00338{transform:matrix(0.334314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334314,0.000000,0.000000,0.250000,0,0);}
.maf_c00338{transform:matrix(0.334320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334320,0.000000,0.000000,0.250000,0,0);}
.m3b_c00338{transform:matrix(0.335641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335641,0.000000,0.000000,0.250000,0,0);}
.m66_c00338{transform:matrix(0.336128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336128,0.000000,0.000000,0.250000,0,0);}
.m46_c00338{transform:matrix(0.337407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337407,0.000000,0.000000,0.250000,0,0);}
.mc5_c00338{transform:matrix(0.338115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338115,0.000000,0.000000,0.250000,0,0);}
.m34_c00338{transform:matrix(0.338856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338856,0.000000,0.000000,0.250000,0,0);}
.m82_c00338{transform:matrix(0.339044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339044,0.000000,0.000000,0.250000,0,0);}
.m5c_c00338{transform:matrix(0.339218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339218,0.000000,0.000000,0.250000,0,0);}
.m7f_c00338{transform:matrix(0.341051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341051,0.000000,0.000000,0.250000,0,0);}
.m4_c00338{transform:matrix(0.341856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341856,0.000000,0.000000,0.250000,0,0);}
.m81_c00338{transform:matrix(0.343528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343528,0.000000,0.000000,0.250000,0,0);}
.m6d_c00338{transform:matrix(0.343664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343664,0.000000,0.000000,0.250000,0,0);}
.m39_c00338{transform:matrix(0.344211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344211,0.000000,0.000000,0.250000,0,0);}
.m1b_c00338{transform:matrix(0.344299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344299,0.000000,0.000000,0.250000,0,0);}
.m2_c00338{transform:matrix(0.345351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345351,0.000000,0.000000,0.250000,0,0);}
.m9d_c00338{transform:matrix(0.346255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346255,0.000000,0.000000,0.250000,0,0);}
.mcf_c00338{transform:matrix(0.346979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346979,0.000000,0.000000,0.250000,0,0);}
.m3d_c00338{transform:matrix(0.347525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347525,0.000000,0.000000,0.250000,0,0);}
.md0_c00338{transform:matrix(0.347637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347637,0.000000,0.000000,0.250000,0,0);}
.m20_c00338{transform:matrix(0.348072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348072,0.000000,0.000000,0.250000,0,0);}
.m12_c00338{transform:matrix(0.348227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348227,0.000000,0.000000,0.250000,0,0);}
.m14_c00338{transform:matrix(0.349571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349571,0.000000,0.000000,0.250000,0,0);}
.m24_c00338{transform:matrix(0.351387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351387,0.000000,0.000000,0.250000,0,0);}
.m19_c00338{transform:matrix(0.351941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351941,0.000000,0.000000,0.250000,0,0);}
.m32_c00338{transform:matrix(0.352330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352330,0.000000,0.000000,0.250000,0,0);}
.m53_c00338{transform:matrix(0.352595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352595,0.000000,0.000000,0.250000,0,0);}
.m86_c00338{transform:matrix(0.356003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356003,0.000000,0.000000,0.250000,0,0);}
.m6f_c00338{transform:matrix(0.356416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356416,0.000000,0.000000,0.250000,0,0);}
.m78_c00338{transform:matrix(0.357801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357801,0.000000,0.000000,0.250000,0,0);}
.m51_c00338{transform:matrix(0.358405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358405,0.000000,0.000000,0.250000,0,0);}
.m92_c00338{transform:matrix(0.360117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360117,0.000000,0.000000,0.250000,0,0);}
.mb8_c00338{transform:matrix(0.360934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360934,0.000000,0.000000,0.250000,0,0);}
.mbb_c00338{transform:matrix(0.364479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364479,0.000000,0.000000,0.250000,0,0);}
.m6e_c00338{transform:matrix(0.364966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364966,0.000000,0.000000,0.250000,0,0);}
.m5f_c00338{transform:matrix(0.368661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368661,0.000000,0.000000,0.250000,0,0);}
.mbc_c00338{transform:matrix(0.369528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369528,0.000000,0.000000,0.250000,0,0);}
.m45_c00338{transform:matrix(0.372136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372136,0.000000,0.000000,0.250000,0,0);}
.mb3_c00338{transform:matrix(0.376094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376094,0.000000,0.000000,0.250000,0,0);}
.m2c_c00338{transform:matrix(0.377906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377906,0.000000,0.000000,0.250000,0,0);}
.m40_c00338{transform:matrix(0.390724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390724,0.000000,0.000000,0.250000,0,0);}
.me_c00338{transform:matrix(0.390937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390937,0.000000,0.000000,0.250000,0,0);}
.m16_c00338{transform:matrix(0.404100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404100,0.000000,0.000000,0.250000,0,0);}
.m61_c00338{transform:matrix(0.415060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415060,0.000000,0.000000,0.250000,0,0);}
.m3e_c00338{transform:matrix(0.417930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417930,0.000000,0.000000,0.250000,0,0);}
.m1e_c00338{transform:matrix(0.418352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418352,0.000000,0.000000,0.250000,0,0);}
.m67_c00338{transform:matrix(0.425442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425442,0.000000,0.000000,0.250000,0,0);}
.m75_c00338{transform:matrix(0.441790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441790,0.000000,0.000000,0.250000,0,0);}
.v0_c00338{vertical-align:0.000000px;}
.ls9_c00338{letter-spacing:-2.674980px;}
.ls13_c00338{letter-spacing:-2.273040px;}
.ls8_c00338{letter-spacing:-1.459775px;}
.lsb_c00338{letter-spacing:-0.420354px;}
.ls5_c00338{letter-spacing:0.000000px;}
.ls4_c00338{letter-spacing:0.634352px;}
.ls0_c00338{letter-spacing:2.155270px;}
.lsa_c00338{letter-spacing:2.506838px;}
.ls3_c00338{letter-spacing:2.828569px;}
.lsc_c00338{letter-spacing:3.355189px;}
.ls12_c00338{letter-spacing:3.474900px;}
.ls11_c00338{letter-spacing:3.722400px;}
.ls7_c00338{letter-spacing:3.821400px;}
.ls6_c00338{letter-spacing:4.197610px;}
.lsf_c00338{letter-spacing:48.470598px;}
.lsd_c00338{letter-spacing:49.896198px;}
.lse_c00338{letter-spacing:51.321798px;}
.ls10_c00338{letter-spacing:57.024198px;}
.ls2_c00338{letter-spacing:69.243669px;}
.ls1_c00338{letter-spacing:375.062688px;}
.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;}
}
.ws4_c00338{word-spacing:-22.462189px;}
.ws3_c00338{word-spacing:-21.262270px;}
.ws9_c00338{word-spacing:-20.203069px;}
.ws2_c00338{word-spacing:-19.107000px;}
.ws1_c00338{word-spacing:-18.686646px;}
.ws6_c00338{word-spacing:-1.069992px;}
.wsb_c00338{word-spacing:-0.573210px;}
.wsd_c00338{word-spacing:0.000000px;}
.wsa_c00338{word-spacing:0.076428px;}
.ws8_c00338{word-spacing:0.382140px;}
.ws7_c00338{word-spacing:1.757844px;}
.ws0_c00338{word-spacing:3.209976px;}
.ws5_c00338{word-spacing:3.897828px;}
.wsc_c00338{word-spacing:5.428729px;}
._f_c00338{margin-left:-8.712792px;}
._18_c00338{margin-left:-5.189521px;}
._15_c00338{width:2.445696px;}
._e_c00338{width:3.836686px;}
._b_c00338{width:7.413516px;}
._5_c00338{width:8.715960px;}
._0_c00338{width:9.935640px;}
._11_c00338{width:11.387772px;}
._12_c00338{width:12.839904px;}
._17_c00338{width:14.061960px;}
._d_c00338{width:16.741692px;}
._4_c00338{width:21.399840px;}
._1_c00338{width:22.775544px;}
._8_c00338{width:24.227676px;}
._9_c00338{width:25.858008px;}
._16_c00338{width:27.055512px;}
._10_c00338{width:31.004424px;}
._7_c00338{width:33.020816px;}
._13_c00338{width:34.163316px;}
._3_c00338{width:35.459424px;}
._c_c00338{width:37.908288px;}
._14_c00338{width:39.852648px;}
._a_c00338{width:41.573664px;}
._2_c00338{width:43.181820px;}
._6_c00338{width:48.378924px;}
.fc0_c00338{color:transparent;}
.fsd_c00338{font-size:22.374000px;}
.fs0_c00338{font-size:27.720000px;}
.fs3_c00338{font-size:39.600000px;}
.fs9_c00338{font-size:48.470598px;}
.fs5_c00338{font-size:49.896198px;}
.fs6_c00338{font-size:51.321798px;}
.fsb_c00338{font-size:57.024198px;}
.fs8_c00338{font-size:60.192000px;}
.fsf_c00338{font-size:64.944000px;}
.fse_c00338{font-size:69.498000px;}
.fsa_c00338{font-size:70.884000px;}
.fs4_c00338{font-size:72.864000px;}
.fsc_c00338{font-size:74.448000px;}
.fs7_c00338{font-size:76.032198px;}
.fs2_c00338{font-size:76.428000px;}
.fs1_c00338{font-size:83.952198px;}
.y0_c00338{bottom:0.000000px;}
.y25_c00338{bottom:31.982985px;}
.y1_c00338{bottom:76.500000px;}
.y24_c00338{bottom:132.849135px;}
.y23_c00338{bottom:163.850985px;}
.y22_c00338{bottom:196.644735px;}
.y21_c00338{bottom:231.571935px;}
.y20_c00338{bottom:255.807135px;}
.y1e_c00338{bottom:265.073139px;}
.y1f_c00338{bottom:265.073535px;}
.y1d_c00338{bottom:300.000735px;}
.y1c_c00338{bottom:332.433135px;}
.y1b_c00338{bottom:365.934735px;}
.y1a_c00338{bottom:398.367135px;}
.y19_c00338{bottom:409.771935px;}
.y18_c00338{bottom:454.321935px;}
.y17_c00338{bottom:462.157785px;}
.y16_c00338{bottom:488.887785px;}
.y14_c00338{bottom:495.664335px;}
.y15_c00338{bottom:496.020735px;}
.y13_c00338{bottom:528.453135px;}
.y12_c00338{bottom:560.885535px;}
.y11_c00338{bottom:594.382185px;}
.y10_c00338{bottom:626.463135px;}
.yf_c00338{bottom:642.857535px;}
.ye_c00338{bottom:659.251935px;}
.yd_c00338{bottom:723.047535px;}
.yc_c00338{bottom:755.123535px;}
.yb_c00338{bottom:771.874335px;}
.ya_c00338{bottom:787.194585px;}
.y9_c00338{bottom:819.631935px;}
.y8_c00338{bottom:852.420735px;}
.y7_c00338{bottom:884.853135px;}
.y6_c00338{bottom:917.993385px;}
.y5_c00338{bottom:959.692185px;}
.y2_c00338{bottom:990.698985px;}
.y4_c00338{bottom:1068.037785px;}
.y3_c00338{bottom:1106.173575px;}
.he_c00338{height:23.335383px;}
.h2_c00338{height:28.911094px;}
.hb_c00338{height:32.281418px;}
.h7_c00338{height:33.230868px;}
.h8_c00338{height:34.180317px;}
.hc_c00338{height:37.978116px;}
.h5_c00338{height:41.301563px;}
.ha_c00338{height:62.778375px;}
.h10_c00338{height:67.734563px;}
.hf_c00338{height:68.208486px;}
.h6_c00338{height:71.512031px;}
.hd_c00338{height:73.066641px;}
.h4_c00338{height:75.009902px;}
.h9_c00338{height:79.299207px;}
.h3_c00338{height:82.394491px;}
.h1_c00338{height:1110.000000px;}
.h0_c00338{height:1263.000000px;}
.w1_c00338{width:775.500000px;}
.w0_c00338{width:892.500000px;}
.x0_c00338{left:0.000000px;}
.x2_c00338{left:55.832685px;}
.x1_c00338{left:58.500000px;}
.x7_c00338{left:101.867685px;}
.x75_c00338{left:103.313976px;}
.x6a_c00338{left:104.956485px;}
.x46_c00338{left:112.495335px;}
.x51_c00338{left:113.807085px;}
.x2b_c00338{left:122.939835px;}
.x13_c00338{left:124.538685px;}
.x7d_c00338{left:125.899935px;}
.x36_c00338{left:134.319885px;}
.x52_c00338{left:135.923685px;}
.x82_c00338{left:137.349285px;}
.x14_c00338{left:146.432535px;}
.x7e_c00338{left:147.689835px;}
.x49_c00338{left:155.634585px;}
.x2c_c00338{left:157.124535px;}
.x5a_c00338{left:160.213335px;}
.x4d_c00338{left:161.525085px;}
.x47_c00338{left:167.796735px;}
.x8_c00338{left:179.409435px;}
.x61_c00338{left:188.027385px;}
.x3e_c00338{left:189.745035px;}
.x62_c00338{left:191.180535px;}
.x2d_c00338{left:200.659785px;}
.x72_c00338{left:202.570485px;}
.x55_c00338{left:204.228735px;}
.x9_c00338{left:212.505135px;}
.x20_c00338{left:215.222685px;}
.x4e_c00338{left:223.375335px;}
.x5b_c00338{left:233.067435px;}
.x37_c00338{left:235.007835px;}
.x3f_c00338{left:237.116535px;}
.x38_c00338{left:244.472235px;}
.x15_c00338{left:245.491935px;}
.x7f_c00338{left:247.853085px;}
.x21_c00338{left:256.916535px;}
.x2e_c00338{left:259.525185px;}
.x40_c00338{left:266.569035px;}
.x16_c00338{left:268.153035px;}
.x80_c00338{left:269.217285px;}
.x17_c00338{left:279.528135px;}
.x2f_c00338{left:288.967785px;}
.x5c_c00338{left:290.581485px;}
.x22_c00338{left:300.100335px;}
.x73_c00338{left:301.921935px;}
.x18_c00338{left:311.807085px;}
.x56_c00338{left:313.014885px;}
.x79_c00338{left:319.207335px;}
.x41_c00338{left:323.018835px;}
.xa_c00338{left:324.023685px;}
.x48_c00338{left:331.131885px;}
.x19_c00338{left:334.403835px;}
.x76_c00338{left:335.779935px;}
.x85_c00338{left:341.779335px;}
.x5d_c00338{left:346.531335px;}
.xb_c00338{left:356.327385px;}
.x63_c00338{left:357.406485px;}
.x23_c00338{left:367.232235px;}
.x4f_c00338{left:368.583585px;}
.x30_c00338{left:379.305285px;}
.x24_c00338{left:380.518035px;}
.x42_c00338{left:389.858685px;}
.x6b_c00338{left:391.056585px;}
.x39_c00338{left:400.377435px;}
.x1a_c00338{left:401.728785px;}
.x31_c00338{left:404.015685px;}
.x25_c00338{left:411.782235px;}
.x6d_c00338{left:413.202885px;}
.x26_c00338{left:423.157335px;}
.x77_c00338{left:425.256135px;}
.xc_c00338{left:433.492935px;}
.x64_c00338{left:443.709735px;}
.x43_c00338{left:444.729435px;}
.x7a_c00338{left:445.803585px;}
.x3a_c00338{left:455.391735px;}
.x50_c00338{left:456.649035px;}
.x53_c00338{left:457.841985px;}
.xd_c00338{left:467.058885px;}
.x65_c00338{left:471.865335px;}
.x32_c00338{left:477.716235px;}
.x7b_c00338{left:478.780485px;}
.x1b_c00338{left:480.483285px;}
.x3b_c00338{left:487.853835px;}
.x66_c00338{left:490.036785px;}
.x3d_c00338{left:494.783835px;}
.xe_c00338{left:500.149635px;}
.x4a_c00338{left:501.208935px;}
.x1c_c00338{left:511.499985px;}
.x67_c00338{left:512.618685px;}
.x1d_c00338{left:522.038535px;}
.x5e_c00338{left:523.686885px;}
.x33_c00338{left:532.398885px;}
.x4b_c00338{left:533.705685px;}
.x27_c00338{left:543.764085px;}
.x6e_c00338{left:544.887735px;}
.xf_c00338{left:555.277785px;}
.x28_c00338{left:565.747035px;}
.x6f_c00338{left:567.731985px;}
.x29_c00338{left:576.602385px;}
.x68_c00338{left:578.221035px;}
.x70_c00338{left:583.774935px;}
.x10_c00338{left:588.215085px;}
.x81_c00338{left:599.045685px;}
.x11_c00338{left:600.253485px;}
.x57_c00338{left:609.742635px;}
.x4c_c00338{left:611.212785px;}
.x34_c00338{left:621.459285px;}
.x58_c00338{left:623.439285px;}
.x3c_c00338{left:631.166235px;}
.x44_c00338{left:632.750235px;}
.x54_c00338{left:634.383735px;}
.x35_c00338{left:643.798635px;}
.x5f_c00338{left:645.199485px;}
.x2a_c00338{left:655.470735px;}
.x71_c00338{left:657.960585px;}
.x1e_c00338{left:665.920185px;}
.x83_c00338{left:667.311135px;}
.x4_c00338{left:676.141935px;}
.x69_c00338{left:679.037685px;}
.x3_c00338{left:680.960265px;}
.x1f_c00338{left:687.927885px;}
.x59_c00338{left:689.769285px;}
.x5_c00338{left:699.347535px;}
.x6_c00338{left:703.411485px;}
.x45_c00338{left:709.950435px;}
.x6c_c00338{left:711.128535px;}
.x78_c00338{left:712.430385px;}
.x84_c00338{left:722.087835px;}
.x12_c00338{left:732.512535px;}
.x7c_c00338{left:734.992485px;}
.x60_c00338{left:744.659835px;}
.x74_c00338{left:754.614285px;}
@media print{
.v0_c00338{vertical-align:0.000000pt;}
.ls9_c00338{letter-spacing:-2.377760pt;}
.ls13_c00338{letter-spacing:-2.020480pt;}
.ls8_c00338{letter-spacing:-1.297578pt;}
.lsb_c00338{letter-spacing:-0.373648pt;}
.ls5_c00338{letter-spacing:0.000000pt;}
.ls4_c00338{letter-spacing:0.563869pt;}
.ls0_c00338{letter-spacing:1.915795pt;}
.lsa_c00338{letter-spacing:2.228301pt;}
.ls3_c00338{letter-spacing:2.514283pt;}
.lsc_c00338{letter-spacing:2.982390pt;}
.ls12_c00338{letter-spacing:3.088800pt;}
.ls11_c00338{letter-spacing:3.308800pt;}
.ls7_c00338{letter-spacing:3.396800pt;}
.ls6_c00338{letter-spacing:3.731209pt;}
.lsf_c00338{letter-spacing:43.084976pt;}
.lsd_c00338{letter-spacing:44.352176pt;}
.lse_c00338{letter-spacing:45.619376pt;}
.ls10_c00338{letter-spacing:50.688176pt;}
.ls2_c00338{letter-spacing:61.549928pt;}
.ls1_c00338{letter-spacing:333.389056pt;}
.ws4_c00338{word-spacing:-19.966390pt;}
.ws3_c00338{word-spacing:-18.899795pt;}
.ws9_c00338{word-spacing:-17.958283pt;}
.ws2_c00338{word-spacing:-16.984000pt;}
.ws1_c00338{word-spacing:-16.610352pt;}
.ws6_c00338{word-spacing:-0.951104pt;}
.wsb_c00338{word-spacing:-0.509520pt;}
.wsd_c00338{word-spacing:0.000000pt;}
.wsa_c00338{word-spacing:0.067936pt;}
.ws8_c00338{word-spacing:0.339680pt;}
.ws7_c00338{word-spacing:1.562528pt;}
.ws0_c00338{word-spacing:2.853312pt;}
.ws5_c00338{word-spacing:3.464736pt;}
.wsc_c00338{word-spacing:4.825537pt;}
._f_c00338{margin-left:-7.744704pt;}
._18_c00338{margin-left:-4.612907pt;}
._15_c00338{width:2.173952pt;}
._e_c00338{width:3.410387pt;}
._b_c00338{width:6.589792pt;}
._5_c00338{width:7.747520pt;}
._0_c00338{width:8.831680pt;}
._11_c00338{width:10.122464pt;}
._12_c00338{width:11.413248pt;}
._17_c00338{width:12.499520pt;}
._d_c00338{width:14.881504pt;}
._4_c00338{width:19.022080pt;}
._1_c00338{width:20.244928pt;}
._8_c00338{width:21.535712pt;}
._9_c00338{width:22.984896pt;}
._16_c00338{width:24.049344pt;}
._10_c00338{width:27.559488pt;}
._7_c00338{width:29.351837pt;}
._13_c00338{width:30.367392pt;}
._3_c00338{width:31.519488pt;}
._c_c00338{width:33.696256pt;}
._14_c00338{width:35.424576pt;}
._a_c00338{width:36.954368pt;}
._2_c00338{width:38.383840pt;}
._6_c00338{width:43.003488pt;}
.fsd_c00338{font-size:19.888000pt;}
.fs0_c00338{font-size:24.640000pt;}
.fs3_c00338{font-size:35.200000pt;}
.fs9_c00338{font-size:43.084976pt;}
.fs5_c00338{font-size:44.352176pt;}
.fs6_c00338{font-size:45.619376pt;}
.fsb_c00338{font-size:50.688176pt;}
.fs8_c00338{font-size:53.504000pt;}
.fsf_c00338{font-size:57.728000pt;}
.fse_c00338{font-size:61.776000pt;}
.fsa_c00338{font-size:63.008000pt;}
.fs4_c00338{font-size:64.768000pt;}
.fsc_c00338{font-size:66.176000pt;}
.fs7_c00338{font-size:67.584176pt;}
.fs2_c00338{font-size:67.936000pt;}
.fs1_c00338{font-size:74.624176pt;}
.y0_c00338{bottom:0.000000pt;}
.y25_c00338{bottom:28.429320pt;}
.y1_c00338{bottom:68.000000pt;}
.y24_c00338{bottom:118.088120pt;}
.y23_c00338{bottom:145.645320pt;}
.y22_c00338{bottom:174.795320pt;}
.y21_c00338{bottom:205.841720pt;}
.y20_c00338{bottom:227.384120pt;}
.y1e_c00338{bottom:235.620568pt;}
.y1f_c00338{bottom:235.620920pt;}
.y1d_c00338{bottom:266.667320pt;}
.y1c_c00338{bottom:295.496120pt;}
.y1b_c00338{bottom:325.275320pt;}
.y1a_c00338{bottom:354.104120pt;}
.y19_c00338{bottom:364.241720pt;}
.y18_c00338{bottom:403.841720pt;}
.y17_c00338{bottom:410.806920pt;}
.y16_c00338{bottom:434.566920pt;}
.y14_c00338{bottom:440.590520pt;}
.y15_c00338{bottom:440.907320pt;}
.y13_c00338{bottom:469.736120pt;}
.y12_c00338{bottom:498.564920pt;}
.y11_c00338{bottom:528.339720pt;}
.y10_c00338{bottom:556.856120pt;}
.yf_c00338{bottom:571.428920pt;}
.ye_c00338{bottom:586.001720pt;}
.yd_c00338{bottom:642.708920pt;}
.yc_c00338{bottom:671.220920pt;}
.yb_c00338{bottom:686.110520pt;}
.ya_c00338{bottom:699.728520pt;}
.y9_c00338{bottom:728.561720pt;}
.y8_c00338{bottom:757.707320pt;}
.y7_c00338{bottom:786.536120pt;}
.y6_c00338{bottom:815.994120pt;}
.y5_c00338{bottom:853.059720pt;}
.y2_c00338{bottom:880.621320pt;}
.y4_c00338{bottom:949.366920pt;}
.y3_c00338{bottom:983.265400pt;}
.he_c00338{height:20.742563pt;}
.h2_c00338{height:25.698750pt;}
.hb_c00338{height:28.694594pt;}
.h7_c00338{height:29.538549pt;}
.h8_c00338{height:30.382504pt;}
.hc_c00338{height:33.758325pt;}
.h5_c00338{height:36.712500pt;}
.ha_c00338{height:55.803000pt;}
.h10_c00338{height:60.208500pt;}
.hf_c00338{height:60.629766pt;}
.h6_c00338{height:63.566250pt;}
.hd_c00338{height:64.948125pt;}
.h4_c00338{height:66.675469pt;}
.h9_c00338{height:70.488184pt;}
.h3_c00338{height:73.239548pt;}
.h1_c00338{height:986.666667pt;}
.h0_c00338{height:1122.666667pt;}
.w1_c00338{width:689.333333pt;}
.w0_c00338{width:793.333333pt;}
.x0_c00338{left:0.000000pt;}
.x2_c00338{left:49.629053pt;}
.x1_c00338{left:52.000000pt;}
.x7_c00338{left:90.549053pt;}
.x75_c00338{left:91.834645pt;}
.x6a_c00338{left:93.294653pt;}
.x46_c00338{left:99.995853pt;}
.x51_c00338{left:101.161853pt;}
.x2b_c00338{left:109.279853pt;}
.x13_c00338{left:110.701053pt;}
.x7d_c00338{left:111.911053pt;}
.x36_c00338{left:119.395453pt;}
.x52_c00338{left:120.821053pt;}
.x82_c00338{left:122.088253pt;}
.x14_c00338{left:130.162253pt;}
.x7e_c00338{left:131.279853pt;}
.x49_c00338{left:138.341853pt;}
.x2c_c00338{left:139.666253pt;}
.x5a_c00338{left:142.411853pt;}
.x4d_c00338{left:143.577853pt;}
.x47_c00338{left:149.152653pt;}
.x8_c00338{left:159.475053pt;}
.x61_c00338{left:167.135453pt;}
.x3e_c00338{left:168.662253pt;}
.x62_c00338{left:169.938253pt;}
.x2d_c00338{left:178.364253pt;}
.x72_c00338{left:180.062653pt;}
.x55_c00338{left:181.536653pt;}
.x9_c00338{left:188.893453pt;}
.x20_c00338{left:191.309053pt;}
.x4e_c00338{left:198.555853pt;}
.x5b_c00338{left:207.171053pt;}
.x37_c00338{left:208.895853pt;}
.x3f_c00338{left:210.770253pt;}
.x38_c00338{left:217.308653pt;}
.x15_c00338{left:218.215053pt;}
.x7f_c00338{left:220.313853pt;}
.x21_c00338{left:228.370253pt;}
.x2e_c00338{left:230.689053pt;}
.x40_c00338{left:236.950253pt;}
.x16_c00338{left:238.358253pt;}
.x80_c00338{left:239.304253pt;}
.x17_c00338{left:248.469453pt;}
.x2f_c00338{left:256.860253pt;}
.x5c_c00338{left:258.294653pt;}
.x22_c00338{left:266.755853pt;}
.x73_c00338{left:268.375053pt;}
.x18_c00338{left:277.161853pt;}
.x56_c00338{left:278.235453pt;}
.x79_c00338{left:283.739853pt;}
.x41_c00338{left:287.127853pt;}
.xa_c00338{left:288.021053pt;}
.x48_c00338{left:294.339453pt;}
.x19_c00338{left:297.247853pt;}
.x76_c00338{left:298.471053pt;}
.x85_c00338{left:303.803853pt;}
.x5d_c00338{left:308.027853pt;}
.xb_c00338{left:316.735453pt;}
.x63_c00338{left:317.694653pt;}
.x23_c00338{left:326.428653pt;}
.x4f_c00338{left:327.629853pt;}
.x30_c00338{left:337.160253pt;}
.x24_c00338{left:338.238253pt;}
.x42_c00338{left:346.541053pt;}
.x6b_c00338{left:347.605853pt;}
.x39_c00338{left:355.891053pt;}
.x1a_c00338{left:357.092253pt;}
.x31_c00338{left:359.125053pt;}
.x25_c00338{left:366.028653pt;}
.x6d_c00338{left:367.291453pt;}
.x26_c00338{left:376.139853pt;}
.x77_c00338{left:378.005453pt;}
.xc_c00338{left:385.327053pt;}
.x64_c00338{left:394.408653pt;}
.x43_c00338{left:395.315053pt;}
.x7a_c00338{left:396.269853pt;}
.x3a_c00338{left:404.792653pt;}
.x50_c00338{left:405.910253pt;}
.x53_c00338{left:406.970653pt;}
.xd_c00338{left:415.163453pt;}
.x65_c00338{left:419.435853pt;}
.x32_c00338{left:424.636653pt;}
.x7b_c00338{left:425.582653pt;}
.x1b_c00338{left:427.096253pt;}
.x3b_c00338{left:433.647853pt;}
.x66_c00338{left:435.588253pt;}
.x3d_c00338{left:439.807853pt;}
.xe_c00338{left:444.577453pt;}
.x4a_c00338{left:445.519053pt;}
.x1c_c00338{left:454.666653pt;}
.x67_c00338{left:455.661053pt;}
.x1d_c00338{left:464.034253pt;}
.x5e_c00338{left:465.499453pt;}
.x33_c00338{left:473.243453pt;}
.x4b_c00338{left:474.405053pt;}
.x27_c00338{left:483.345853pt;}
.x6e_c00338{left:484.344653pt;}
.xf_c00338{left:493.580253pt;}
.x28_c00338{left:502.886253pt;}
.x6f_c00338{left:504.650653pt;}
.x29_c00338{left:512.535453pt;}
.x68_c00338{left:513.974253pt;}
.x70_c00338{left:518.911053pt;}
.x10_c00338{left:522.857853pt;}
.x81_c00338{left:532.485053pt;}
.x11_c00338{left:533.558653pt;}
.x57_c00338{left:541.993453pt;}
.x4c_c00338{left:543.300253pt;}
.x34_c00338{left:552.408253pt;}
.x58_c00338{left:554.168253pt;}
.x3c_c00338{left:561.036653pt;}
.x44_c00338{left:562.444653pt;}
.x54_c00338{left:563.896653pt;}
.x35_c00338{left:572.265453pt;}
.x5f_c00338{left:573.510653pt;}
.x2a_c00338{left:582.640653pt;}
.x71_c00338{left:584.853853pt;}
.x1e_c00338{left:591.929053pt;}
.x83_c00338{left:593.165453pt;}
.x4_c00338{left:601.015053pt;}
.x69_c00338{left:603.589053pt;}
.x3_c00338{left:605.298013pt;}
.x1f_c00338{left:611.491453pt;}
.x59_c00338{left:613.128253pt;}
.x5_c00338{left:621.642253pt;}
.x6_c00338{left:625.254653pt;}
.x45_c00338{left:631.067053pt;}
.x6c_c00338{left:632.114253pt;}
.x78_c00338{left:633.271453pt;}
.x84_c00338{left:641.855853pt;}
.x12_c00338{left:651.122253pt;}
.x7c_c00338{left:653.326653pt;}
.x60_c00338{left:661.919853pt;}
.x74_c00338{left:670.768253pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b787bfa54bac18efcc2d5a91.woff2')format("woff");}.ff1_c00339{font-family:ff1_c00339;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00339;src:url('chunks/assets/font_c3f900e8b79675d837a0a73d.woff2')format("woff");}.ff2_c00339{font-family:ff2_c00339;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00339;src:url('chunks/assets/font_1c99d9cfbbdbc3efbb0b03f0.woff2')format("woff");}.ff3_c00339{font-family:ff3_c00339;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00339;src:url('chunks/assets/font_bc1852c7d44649e634533c8e.woff2')format("woff");}.ff4_c00339{font-family:ff4_c00339;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m10_c00339{transform:matrix(0.038289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.038289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.038289,0.000000,0.000000,0.250000,0,0);}
.m11_c00339{transform:matrix(0.060812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060812,0.000000,0.000000,0.250000,0,0);}
.m1d_c00339{transform:matrix(0.077400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077400,0.000000,0.000000,0.250000,0,0);}
.m69_c00339{transform:matrix(0.103659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103659,0.000000,0.000000,0.250000,0,0);}
.m6f_c00339{transform:matrix(0.109155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109155,0.000000,0.000000,0.250000,0,0);}
.m5a_c00339{transform:matrix(0.130888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130888,0.000000,0.000000,0.250000,0,0);}
.m67_c00339{transform:matrix(0.154861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154861,0.000000,0.000000,0.250000,0,0);}
.m51_c00339{transform:matrix(0.156244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156244,0.000000,0.000000,0.250000,0,0);}
.m6c_c00339{transform:matrix(0.160096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160096,0.000000,0.000000,0.250000,0,0);}
.m72_c00339{transform:matrix(0.167749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167749,0.000000,0.000000,0.250000,0,0);}
.m4f_c00339{transform:matrix(0.167912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167912,0.000000,0.000000,0.250000,0,0);}
.mf_c00339{transform:matrix(0.175676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175676,0.000000,0.000000,0.250000,0,0);}
.m2d_c00339{transform:matrix(0.194583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194583,0.000000,0.000000,0.250000,0,0);}
.m3e_c00339{transform:matrix(0.197917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197917,0.000000,0.000000,0.250000,0,0);}
.m1a_c00339{transform:matrix(0.203967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203967,0.000000,0.000000,0.250000,0,0);}
.m19_c00339{transform:matrix(0.207207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207207,0.000000,0.000000,0.250000,0,0);}
.m71_c00339{transform:matrix(0.207914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207914,0.000000,0.000000,0.250000,0,0);}
.m4b_c00339{transform:matrix(0.221197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221197,0.000000,0.000000,0.250000,0,0);}
.m6e_c00339{transform:matrix(0.221872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221872,0.000000,0.000000,0.250000,0,0);}
.m3d_c00339{transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);}
.m58_c00339{transform:matrix(0.233572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233572,0.000000,0.000000,0.250000,0,0);}
.m20_c00339{transform:matrix(0.238955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238955,0.000000,0.000000,0.250000,0,0);}
.m1c_c00339{transform:matrix(0.240507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240507,0.000000,0.000000,0.250000,0,0);}
.m4c_c00339{transform:matrix(0.245236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245236,0.000000,0.000000,0.250000,0,0);}
.m0_c00339{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m15_c00339{transform:matrix(0.250676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250676,0.000000,0.000000,0.250000,0,0);}
.m2_c00339{transform:matrix(0.252894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252894,0.000000,0.000000,0.250000,0,0);}
.m6b_c00339{transform:matrix(0.254518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254518,0.000000,0.000000,0.250000,0,0);}
.m64_c00339{transform:matrix(0.255832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255832,0.000000,0.000000,0.250000,0,0);}
.m70_c00339{transform:matrix(0.256383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256383,0.000000,0.000000,0.250000,0,0);}
.m35_c00339{transform:matrix(0.258082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258082,0.000000,0.000000,0.250000,0,0);}
.m6d_c00339{transform:matrix(0.259791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259791,0.000000,0.000000,0.250000,0,0);}
.m53_c00339{transform:matrix(0.261708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261708,0.000000,0.000000,0.250000,0,0);}
.m73_c00339{transform:matrix(0.261765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261765,0.000000,0.000000,0.250000,0,0);}
.m1_c00339{transform:matrix(0.265016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265016,0.000000,0.000000,0.250000,0,0);}
.m23_c00339{transform:matrix(0.265366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265366,0.000000,0.000000,0.250000,0,0);}
.m17_c00339{transform:matrix(0.266345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266345,0.000000,0.000000,0.250000,0,0);}
.m54_c00339{transform:matrix(0.266459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266459,0.000000,0.000000,0.250000,0,0);}
.m27_c00339{transform:matrix(0.266632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266632,0.000000,0.000000,0.250000,0,0);}
.m39_c00339{transform:matrix(0.267086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267086,0.000000,0.000000,0.250000,0,0);}
.m50_c00339{transform:matrix(0.268004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268004,0.000000,0.000000,0.250000,0,0);}
.m14_c00339{transform:matrix(0.269012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269012,0.000000,0.000000,0.250000,0,0);}
.m29_c00339{transform:matrix(0.270827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270827,0.000000,0.000000,0.250000,0,0);}
.m9_c00339{transform:matrix(0.271414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271414,0.000000,0.000000,0.250000,0,0);}
.m63_c00339{transform:matrix(0.272455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272455,0.000000,0.000000,0.250000,0,0);}
.m37_c00339{transform:matrix(0.273188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273188,0.000000,0.000000,0.250000,0,0);}
.m31_c00339{transform:matrix(0.273819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273819,0.000000,0.000000,0.250000,0,0);}
.m12_c00339{transform:matrix(0.274777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274777,0.000000,0.000000,0.250000,0,0);}
.m56_c00339{transform:matrix(0.275377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275377,0.000000,0.000000,0.250000,0,0);}
.m52_c00339{transform:matrix(0.276336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276336,0.000000,0.000000,0.250000,0,0);}
.m42_c00339{transform:matrix(0.276535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276535,0.000000,0.000000,0.250000,0,0);}
.m3c_c00339{transform:matrix(0.278400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278400,0.000000,0.000000,0.250000,0,0);}
.m1b_c00339{transform:matrix(0.278719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278719,0.000000,0.000000,0.250000,0,0);}
.m4_c00339{transform:matrix(0.281964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281964,0.000000,0.000000,0.250000,0,0);}
.m3b_c00339{transform:matrix(0.283756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283756,0.000000,0.000000,0.250000,0,0);}
.m6a_c00339{transform:matrix(0.284213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284213,0.000000,0.000000,0.250000,0,0);}
.m5b_c00339{transform:matrix(0.287379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287379,0.000000,0.000000,0.250000,0,0);}
.m2b_c00339{transform:matrix(0.287426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287426,0.000000,0.000000,0.250000,0,0);}
.m5e_c00339{transform:matrix(0.291001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291001,0.000000,0.000000,0.250000,0,0);}
.m62_c00339{transform:matrix(0.291710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291710,0.000000,0.000000,0.250000,0,0);}
.m4d_c00339{transform:matrix(0.294260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294260,0.000000,0.000000,0.250000,0,0);}
.m21_c00339{transform:matrix(0.295246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295246,0.000000,0.000000,0.250000,0,0);}
.m4a_c00339{transform:matrix(0.295993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295993,0.000000,0.000000,0.250000,0,0);}
.md_c00339{transform:matrix(0.297792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297792,0.000000,0.000000,0.250000,0,0);}
.m7_c00339{transform:matrix(0.299115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299115,0.000000,0.000000,0.250000,0,0);}
.m5c_c00339{transform:matrix(0.300138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300138,0.000000,0.000000,0.250000,0,0);}
.m3f_c00339{transform:matrix(0.301425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301425,0.000000,0.000000,0.250000,0,0);}
.mc_c00339{transform:matrix(0.301827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301827,0.000000,0.000000,0.250000,0,0);}
.m57_c00339{transform:matrix(0.302058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302058,0.000000,0.000000,0.250000,0,0);}
.m61_c00339{transform:matrix(0.302442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302442,0.000000,0.000000,0.250000,0,0);}
.m1e_c00339{transform:matrix(0.303273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303273,0.000000,0.000000,0.250000,0,0);}
.m47_c00339{transform:matrix(0.303759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303759,0.000000,0.000000,0.250000,0,0);}
.m68_c00339{transform:matrix(0.303852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303852,0.000000,0.000000,0.250000,0,0);}
.m2f_c00339{transform:matrix(0.303902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303902,0.000000,0.000000,0.250000,0,0);}
.m46_c00339{transform:matrix(0.304408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304408,0.000000,0.000000,0.250000,0,0);}
.m25_c00339{transform:matrix(0.304745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304745,0.000000,0.000000,0.250000,0,0);}
.ma_c00339{transform:matrix(0.305595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305595,0.000000,0.000000,0.250000,0,0);}
.m44_c00339{transform:matrix(0.305801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305801,0.000000,0.000000,0.250000,0,0);}
.m2a_c00339{transform:matrix(0.307357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307357,0.000000,0.000000,0.250000,0,0);}
.m36_c00339{transform:matrix(0.310116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310116,0.000000,0.000000,0.250000,0,0);}
.m2e_c00339{transform:matrix(0.310164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310164,0.000000,0.000000,0.250000,0,0);}
.m32_c00339{transform:matrix(0.313646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313646,0.000000,0.000000,0.250000,0,0);}
.m1f_c00339{transform:matrix(0.313658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313658,0.000000,0.000000,0.250000,0,0);}
.m4e_c00339{transform:matrix(0.313850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313850,0.000000,0.000000,0.250000,0,0);}
.m28_c00339{transform:matrix(0.314362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314362,0.000000,0.000000,0.250000,0,0);}
.m33_c00339{transform:matrix(0.317088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317088,0.000000,0.000000,0.250000,0,0);}
.m45_c00339{transform:matrix(0.317395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317395,0.000000,0.000000,0.250000,0,0);}
.mb_c00339{transform:matrix(0.317856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317856,0.000000,0.000000,0.250000,0,0);}
.m5d_c00339{transform:matrix(0.317955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317955,0.000000,0.000000,0.250000,0,0);}
.m34_c00339{transform:matrix(0.319717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319717,0.000000,0.000000,0.250000,0,0);}
.m60_c00339{transform:matrix(0.319944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319944,0.000000,0.000000,0.250000,0,0);}
.m5f_c00339{transform:matrix(0.321469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321469,0.000000,0.000000,0.250000,0,0);}
.m66_c00339{transform:matrix(0.323122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323122,0.000000,0.000000,0.250000,0,0);}
.m3a_c00339{transform:matrix(0.324888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324888,0.000000,0.000000,0.250000,0,0);}
.m55_c00339{transform:matrix(0.326508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326508,0.000000,0.000000,0.250000,0,0);}
.m65_c00339{transform:matrix(0.326738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326738,0.000000,0.000000,0.250000,0,0);}
.m13_c00339{transform:matrix(0.330414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330414,0.000000,0.000000,0.250000,0,0);}
.m30_c00339{transform:matrix(0.332745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332745,0.000000,0.000000,0.250000,0,0);}
.m49_c00339{transform:matrix(0.333436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333436,0.000000,0.000000,0.250000,0,0);}
.m43_c00339{transform:matrix(0.333790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333790,0.000000,0.000000,0.250000,0,0);}
.m18_c00339{transform:matrix(0.334426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334426,0.000000,0.000000,0.250000,0,0);}
.m59_c00339{transform:matrix(0.335894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335894,0.000000,0.000000,0.250000,0,0);}
.m24_c00339{transform:matrix(0.336513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336513,0.000000,0.000000,0.250000,0,0);}
.m22_c00339{transform:matrix(0.337564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337564,0.000000,0.000000,0.250000,0,0);}
.m48_c00339{transform:matrix(0.344556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344556,0.000000,0.000000,0.250000,0,0);}
.m2c_c00339{transform:matrix(0.345958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345958,0.000000,0.000000,0.250000,0,0);}
.m6_c00339{transform:matrix(0.346932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346932,0.000000,0.000000,0.250000,0,0);}
.me_c00339{transform:matrix(0.350610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350610,0.000000,0.000000,0.250000,0,0);}
.m5_c00339{transform:matrix(0.365477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365477,0.000000,0.000000,0.250000,0,0);}
.m41_c00339{transform:matrix(0.369095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369095,0.000000,0.000000,0.250000,0,0);}
.m3_c00339{transform:matrix(0.371931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371931,0.000000,0.000000,0.250000,0,0);}
.m26_c00339{transform:matrix(0.378888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378888,0.000000,0.000000,0.250000,0,0);}
.m16_c00339{transform:matrix(0.389789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389789,0.000000,0.000000,0.250000,0,0);}
.m38_c00339{transform:matrix(0.407816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407816,0.000000,0.000000,0.250000,0,0);}
.m40_c00339{transform:matrix(0.437430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437430,0.000000,0.000000,0.250000,0,0);}
.m8_c00339{transform:matrix(0.442937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442937,0.000000,0.000000,0.250000,0,0);}
.v2_c00339{vertical-align:-59.875200px;}
.v1_c00339{vertical-align:-31.363200px;}
.v0_c00339{vertical-align:0.000000px;}
.v3_c00339{vertical-align:2.851200px;}
.ls11_c00339{letter-spacing:-3.104640px;}
.lsb_c00339{letter-spacing:-2.668050px;}
.ls1a_c00339{letter-spacing:-2.550240px;}
.ls18_c00339{letter-spacing:-2.259180px;}
.ls12_c00339{letter-spacing:-2.188177px;}
.lsf_c00339{letter-spacing:-1.524600px;}
.ls9_c00339{letter-spacing:-1.425501px;}
.ls13_c00339{letter-spacing:-1.219957px;}
.ls6_c00339{letter-spacing:0.000000px;}
.ls15_c00339{letter-spacing:1.607245px;}
.ls4_c00339{letter-spacing:1.723432px;}
.ls0_c00339{letter-spacing:1.871793px;}
.ls2_c00339{letter-spacing:2.180178px;}
.ls5_c00339{letter-spacing:2.958129px;}
.lsc_c00339{letter-spacing:3.133053px;}
.ls16_c00339{letter-spacing:3.227400px;}
.ls19_c00339{letter-spacing:3.286810px;}
.lsd_c00339{letter-spacing:3.524400px;}
.ls7_c00339{letter-spacing:3.613500px;}
.ls8_c00339{letter-spacing:3.811500px;}
.ls10_c00339{letter-spacing:4.435200px;}
.ls3_c00339{letter-spacing:7.293924px;}
.ls1_c00339{letter-spacing:12.577950px;}
.ls1c_c00339{letter-spacing:47.044800px;}
.lse_c00339{letter-spacing:51.321798px;}
.lsa_c00339{letter-spacing:52.747398px;}
.ls17_c00339{letter-spacing:58.449798px;}
.ls14_c00339{letter-spacing:64.152198px;}
.ls1b_c00339{letter-spacing:101.217798px;}
.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;}
}
.ws5_c00339{word-spacing:-22.176000px;}
.ws6_c00339{word-spacing:-21.237678px;}
.ws8_c00339{word-spacing:-18.274663px;}
.ws7_c00339{word-spacing:-13.948823px;}
.ws0_c00339{word-spacing:-3.963960px;}
.ws3_c00339{word-spacing:-0.914760px;}
.ws2_c00339{word-spacing:-0.913770px;}
.ws9_c00339{word-spacing:0.000000px;}
.ws4_c00339{word-spacing:2.515590px;}
.ws1_c00339{word-spacing:5.258880px;}
._12_c00339{margin-left:-21.199777px;}
._11_c00339{margin-left:-13.738879px;}
._1_c00339{margin-left:-11.891880px;}
._e_c00339{width:1.082466px;}
._2_c00339{width:3.125430px;}
._6_c00339{width:8.230860px;}
._4_c00339{width:10.291050px;}
._7_c00339{width:12.577950px;}
._a_c00339{width:14.864850px;}
._8_c00339{width:16.694370px;}
._9_c00339{width:21.344400px;}
._3_c00339{width:23.859990px;}
._d_c00339{width:32.626440px;}
._b_c00339{width:34.769790px;}
._c_c00339{width:35.891460px;}
._5_c00339{width:40.401900px;}
._10_c00339{width:67.382251px;}
._13_c00339{width:102.104640px;}
._f_c00339{width:258.924600px;}
._0_c00339{width:1920.078072px;}
.fc0_c00339{color:transparent;}
.fs1_c00339{font-size:22.176000px;}
.fs6_c00339{font-size:25.542000px;}
.fs18_c00339{font-size:27.720000px;}
.fs0_c00339{font-size:33.264000px;}
.fs9_c00339{font-size:34.056198px;}
.fs17_c00339{font-size:38.808000px;}
.fs1a_c00339{font-size:45.144000px;}
.fs15_c00339{font-size:47.044800px;}
.fs8_c00339{font-size:51.321798px;}
.fs4_c00339{font-size:52.747398px;}
.fs5_c00339{font-size:55.440000px;}
.fs10_c00339{font-size:58.449798px;}
.fse_c00339{font-size:63.558000px;}
.fsd_c00339{font-size:64.152198px;}
.fsc_c00339{font-size:64.548000px;}
.fsb_c00339{font-size:65.340000px;}
.fs12_c00339{font-size:65.736198px;}
.fs16_c00339{font-size:69.102198px;}
.fsf_c00339{font-size:69.300000px;}
.fs7_c00339{font-size:70.488000px;}
.fs2_c00339{font-size:72.270000px;}
.fs13_c00339{font-size:72.864000px;}
.fs3_c00339{font-size:76.230000px;}
.fs11_c00339{font-size:79.002198px;}
.fs19_c00339{font-size:84.744000px;}
.fsa_c00339{font-size:88.704000px;}
.fs14_c00339{font-size:101.217798px;}
.y0_c00339{bottom:0.000000px;}
.y1e_c00339{bottom:4.901535px;}
.y1a_c00339{bottom:48.733785px;}
.y12_c00339{bottom:70.479135px;}
.y1_c00339{bottom:76.500000px;}
.y19_c00339{bottom:189.873135px;}
.y1d_c00339{bottom:231.571935px;}
.y1c_c00339{bottom:242.263935px;}
.y18_c00339{bottom:247.966335px;}
.y1b_c00339{bottom:288.239535px;}
.y17_c00339{bottom:303.559785px;}
.y16_c00339{bottom:386.962335px;}
.y15_c00339{bottom:401.931135px;}
.y14_c00339{bottom:411.553935px;}
.y13_c00339{bottom:422.953785px;}
.y11_c00339{bottom:463.939785px;}
.y10_c00339{bottom:495.659385px;}
.yf_c00339{bottom:523.463535px;}
.ye_c00339{bottom:528.804585px;}
.yd_c00339{bottom:561.236985px;}
.yc_c00339{bottom:647.847135px;}
.y2_c00339{bottom:664.597935px;}
.yb_c00339{bottom:769.374585px;}
.ya_c00339{bottom:796.465935px;}
.y9_c00339{bottom:797.891535px;}
.y8_c00339{bottom:830.318985px;}
.y7_c00339{bottom:863.469135px;}
.y6_c00339{bottom:896.609385px;}
.y5_c00339{bottom:929.398185px;}
.y4_c00339{bottom:1079.798985px;}
.y3_c00339{bottom:1087.639785px;}
.hd_c00339{height:23.128875px;}
.h8_c00339{height:26.639508px;}
.h18_c00339{height:31.331837px;}
.ha_c00339{height:34.180317px;}
.h2_c00339{height:34.693313px;}
.h6_c00339{height:35.129767px;}
.hb_c00339{height:35.519550px;}
.h12_c00339{height:38.927565px;}
.h3_c00339{height:39.565853px;}
.h1a_c00339{height:40.475531px;}
.h10_c00339{height:42.725364px;}
.h1c_c00339{height:47.083781px;}
.h7_c00339{height:57.822188px;}
.hf_c00339{height:63.350332px;}
.he_c00339{height:64.127637px;}
.h17_c00339{height:64.516483px;}
.h11_c00339{height:66.289008px;}
.h16_c00339{height:67.411053px;}
.h19_c00339{height:67.820028px;}
.h14_c00339{height:68.560800px;}
.h4_c00339{height:70.929053px;}
.h9_c00339{height:71.038688px;}
.h15_c00339{height:71.512031px;}
.h5_c00339{height:74.815576px;}
.h13_c00339{height:82.396824px;}
.hc_c00339{height:87.058125px;}
.h1b_c00339{height:91.236544px;}
.h1_c00339{height:1110.000000px;}
.h0_c00339{height:1263.000000px;}
.w1_c00339{width:775.500000px;}
.w0_c00339{width:892.500000px;}
.x0_c00339{left:0.000000px;}
.x1_c00339{left:58.500000px;}
.x2_c00339{left:79.691685px;}
.x15_c00339{left:97.585935px;}
.x2b_c00339{left:99.160035px;}
.x4e_c00339{left:100.219335px;}
.x4f_c00339{left:122.434935px;}
.x16_c00339{left:131.503335px;}
.x17_c00339{left:142.195335px;}
.x18_c00339{left:148.610535px;}
.x42_c00339{left:151.105335px;}
.x5_c00339{left:152.412135px;}
.x19_c00339{left:163.896135px;}
.x3e_c00339{left:173.801085px;}
.x1a_c00339{left:175.459335px;}
.x6_c00339{left:186.136485px;}
.x3_c00339{left:188.794635px;}
.x2c_c00339{left:196.838385px;}
.x5d_c00339{left:206.614635px;}
.x1b_c00339{left:208.312485px;}
.x34_c00339{left:219.301485px;}
.x2d_c00339{left:229.463835px;}
.x1c_c00339{left:231.032985px;}
.x7_c00339{left:241.081485px;}
.x1d_c00339{left:252.412035px;}
.x3c_c00339{left:263.559435px;}
.x8_c00339{left:274.226685px;}
.x1e_c00339{left:285.275085px;}
.x43_c00339{left:296.105685px;}
.x9_c00339{left:307.312485px;}
.x62_c00339{left:309.822135px;}
.x35_c00339{left:317.128335px;}
.x1f_c00339{left:318.796485px;}
.x3d_c00339{left:329.379585px;}
.x5e_c00339{left:333.577185px;}
.xa_c00339{left:339.586485px;}
.x2e_c00339{left:340.863585px;}
.x3f_c00339{left:341.903085px;}
.x20_c00339{left:351.416985px;}
.x50_c00339{left:352.609935px;}
.x21_c00339{left:363.103935px;}
.x5f_c00339{left:364.628535px;}
.x40_c00339{left:373.018785px;}
.x44_c00339{left:374.394885px;}
.x63_c00339{left:378.488535px;}
.x65_c00339{left:382.676235px;}
.x22_c00339{left:384.492885px;}
.x2f_c00339{left:386.042235px;}
.x4b_c00339{left:391.007085px;}
.x4c_c00339{left:396.744135px;}
.x45_c00339{left:405.565035px;}
.x60_c00339{left:408.302385px;}
.x30_c00339{left:417.712335px;}
.x64_c00339{left:419.073585px;}
.x36_c00339{left:428.825085px;}
.x23_c00339{left:431.636685px;}
.xb_c00339{left:440.165535px;}
.x41_c00339{left:442.764285px;}
.x37_c00339{left:451.510935px;}
.x24_c00339{left:462.727635px;}
.xc_c00339{left:473.191935px;}
.x61_c00339{left:474.335385px;}
.x46_c00339{left:485.165985px;}
.xd_c00339{left:494.976885px;}
.x38_c00339{left:496.580685px;}
.x51_c00339{left:507.371685px;}
.x31_c00339{left:517.251885px;}
.x57_c00339{left:518.340885px;}
.x39_c00339{left:529.671435px;}
.x25_c00339{left:538.482435px;}
.x47_c00339{left:539.695185px;}
.x52_c00339{left:540.808935px;}
.xe_c00339{left:551.169285px;}
.x26_c00339{left:553.164135px;}
.x3a_c00339{left:559.886235px;}
.x27_c00339{left:561.638535px;}
.xf_c00339{left:573.097785px;}
.x48_c00339{left:584.086785px;}
.x58_c00339{left:585.344085px;}
.x28_c00339{left:593.704635px;}
.x32_c00339{left:594.937185px;}
.x59_c00339{left:595.961835px;}
.x10_c00339{left:604.753035px;}
.x53_c00339{left:609.123885px;}
.x5a_c00339{left:616.197435px;}
.x11_c00339{left:628.280385px;}
.x54_c00339{left:638.294235px;}
.x29_c00339{left:639.690135px;}
.x12_c00339{left:651.287985px;}
.x2a_c00339{left:661.653285px;}
.x4d_c00339{left:671.731485px;}
.x49_c00339{left:673.681785px;}
.x3b_c00339{left:682.868985px;}
.x4_c00339{left:684.754935px;}
.x33_c00339{left:695.085585px;}
.x66_c00339{left:701.941335px;}
.x13_c00339{left:704.549985px;}
.x55_c00339{left:706.817085px;}
.x67_c00339{left:710.727585px;}
.x4a_c00339{left:716.632935px;}
.x14_c00339{left:728.433735px;}
.x5b_c00339{left:738.764385px;}
.x56_c00339{left:761.029485px;}
.x5c_c00339{left:775.023135px;}
@media print{
.v2_c00339{vertical-align:-53.222400pt;}
.v1_c00339{vertical-align:-27.878400pt;}
.v0_c00339{vertical-align:0.000000pt;}
.v3_c00339{vertical-align:2.534400pt;}
.ls11_c00339{letter-spacing:-2.759680pt;}
.lsb_c00339{letter-spacing:-2.371600pt;}
.ls1a_c00339{letter-spacing:-2.266880pt;}
.ls18_c00339{letter-spacing:-2.008160pt;}
.ls12_c00339{letter-spacing:-1.945046pt;}
.lsf_c00339{letter-spacing:-1.355200pt;}
.ls9_c00339{letter-spacing:-1.267112pt;}
.ls13_c00339{letter-spacing:-1.084406pt;}
.ls6_c00339{letter-spacing:0.000000pt;}
.ls15_c00339{letter-spacing:1.428662pt;}
.ls4_c00339{letter-spacing:1.531939pt;}
.ls0_c00339{letter-spacing:1.663816pt;}
.ls2_c00339{letter-spacing:1.937936pt;}
.ls5_c00339{letter-spacing:2.629448pt;}
.lsc_c00339{letter-spacing:2.784936pt;}
.ls16_c00339{letter-spacing:2.868800pt;}
.ls19_c00339{letter-spacing:2.921609pt;}
.lsd_c00339{letter-spacing:3.132800pt;}
.ls7_c00339{letter-spacing:3.212000pt;}
.ls8_c00339{letter-spacing:3.388000pt;}
.ls10_c00339{letter-spacing:3.942400pt;}
.ls3_c00339{letter-spacing:6.483488pt;}
.ls1_c00339{letter-spacing:11.180400pt;}
.ls1c_c00339{letter-spacing:41.817600pt;}
.lse_c00339{letter-spacing:45.619376pt;}
.lsa_c00339{letter-spacing:46.886576pt;}
.ls17_c00339{letter-spacing:51.955376pt;}
.ls14_c00339{letter-spacing:57.024176pt;}
.ls1b_c00339{letter-spacing:89.971376pt;}
.ws5_c00339{word-spacing:-19.712000pt;}
.ws6_c00339{word-spacing:-18.877936pt;}
.ws8_c00339{word-spacing:-16.244145pt;}
.ws7_c00339{word-spacing:-12.398954pt;}
.ws0_c00339{word-spacing:-3.523520pt;}
.ws3_c00339{word-spacing:-0.813120pt;}
.ws2_c00339{word-spacing:-0.812240pt;}
.ws9_c00339{word-spacing:0.000000pt;}
.ws4_c00339{word-spacing:2.236080pt;}
.ws1_c00339{word-spacing:4.674560pt;}
._12_c00339{margin-left:-18.844246pt;}
._11_c00339{margin-left:-12.212337pt;}
._1_c00339{margin-left:-10.570560pt;}
._e_c00339{width:0.962192pt;}
._2_c00339{width:2.778160pt;}
._6_c00339{width:7.316320pt;}
._4_c00339{width:9.147600pt;}
._7_c00339{width:11.180400pt;}
._a_c00339{width:13.213200pt;}
._8_c00339{width:14.839440pt;}
._9_c00339{width:18.972800pt;}
._3_c00339{width:21.208880pt;}
._d_c00339{width:29.001280pt;}
._b_c00339{width:30.906480pt;}
._c_c00339{width:31.903520pt;}
._5_c00339{width:35.912800pt;}
._10_c00339{width:59.895334pt;}
._13_c00339{width:90.759680pt;}
._f_c00339{width:230.155200pt;}
._0_c00339{width:1706.736064pt;}
.fs1_c00339{font-size:19.712000pt;}
.fs6_c00339{font-size:22.704000pt;}
.fs18_c00339{font-size:24.640000pt;}
.fs0_c00339{font-size:29.568000pt;}
.fs9_c00339{font-size:30.272176pt;}
.fs17_c00339{font-size:34.496000pt;}
.fs1a_c00339{font-size:40.128000pt;}
.fs15_c00339{font-size:41.817600pt;}
.fs8_c00339{font-size:45.619376pt;}
.fs4_c00339{font-size:46.886576pt;}
.fs5_c00339{font-size:49.280000pt;}
.fs10_c00339{font-size:51.955376pt;}
.fse_c00339{font-size:56.496000pt;}
.fsd_c00339{font-size:57.024176pt;}
.fsc_c00339{font-size:57.376000pt;}
.fsb_c00339{font-size:58.080000pt;}
.fs12_c00339{font-size:58.432176pt;}
.fs16_c00339{font-size:61.424176pt;}
.fsf_c00339{font-size:61.600000pt;}
.fs7_c00339{font-size:62.656000pt;}
.fs2_c00339{font-size:64.240000pt;}
.fs13_c00339{font-size:64.768000pt;}
.fs3_c00339{font-size:67.760000pt;}
.fs11_c00339{font-size:70.224176pt;}
.fs19_c00339{font-size:75.328000pt;}
.fsa_c00339{font-size:78.848000pt;}
.fs14_c00339{font-size:89.971376pt;}
.y0_c00339{bottom:0.000000pt;}
.y1e_c00339{bottom:4.356920pt;}
.y1a_c00339{bottom:43.318920pt;}
.y12_c00339{bottom:62.648120pt;}
.y1_c00339{bottom:68.000000pt;}
.y19_c00339{bottom:168.776120pt;}
.y1d_c00339{bottom:205.841720pt;}
.y1c_c00339{bottom:215.345720pt;}
.y18_c00339{bottom:220.414520pt;}
.y1b_c00339{bottom:256.212920pt;}
.y17_c00339{bottom:269.830920pt;}
.y16_c00339{bottom:343.966520pt;}
.y15_c00339{bottom:357.272120pt;}
.y14_c00339{bottom:365.825720pt;}
.y13_c00339{bottom:375.958920pt;}
.y11_c00339{bottom:412.390920pt;}
.y10_c00339{bottom:440.586120pt;}
.yf_c00339{bottom:465.300920pt;}
.ye_c00339{bottom:470.048520pt;}
.yd_c00339{bottom:498.877320pt;}
.yc_c00339{bottom:575.864120pt;}
.y2_c00339{bottom:590.753720pt;}
.yb_c00339{bottom:683.888520pt;}
.ya_c00339{bottom:707.969720pt;}
.y9_c00339{bottom:709.236920pt;}
.y8_c00339{bottom:738.061320pt;}
.y7_c00339{bottom:767.528120pt;}
.y6_c00339{bottom:796.986120pt;}
.y5_c00339{bottom:826.131720pt;}
.y4_c00339{bottom:959.821320pt;}
.y3_c00339{bottom:966.790920pt;}
.hd_c00339{height:20.559000pt;}
.h8_c00339{height:23.679563pt;}
.h18_c00339{height:27.850522pt;}
.ha_c00339{height:30.382504pt;}
.h2_c00339{height:30.838500pt;}
.h6_c00339{height:31.226460pt;}
.hb_c00339{height:31.572934pt;}
.h12_c00339{height:34.602280pt;}
.h3_c00339{height:35.169647pt;}
.h1a_c00339{height:35.978250pt;}
.h10_c00339{height:37.978101pt;}
.h1c_c00339{height:41.852250pt;}
.h7_c00339{height:51.397500pt;}
.hf_c00339{height:56.311406pt;}
.he_c00339{height:57.002344pt;}
.h17_c00339{height:57.347985pt;}
.h11_c00339{height:58.923563pt;}
.h16_c00339{height:59.920936pt;}
.h19_c00339{height:60.284470pt;}
.h14_c00339{height:60.942934pt;}
.h4_c00339{height:63.048047pt;}
.h9_c00339{height:63.145500pt;}
.h15_c00339{height:63.566250pt;}
.h5_c00339{height:66.502734pt;}
.h13_c00339{height:73.241621pt;}
.hc_c00339{height:77.385000pt;}
.h1b_c00339{height:81.099150pt;}
.h1_c00339{height:986.666667pt;}
.h0_c00339{height:1122.666667pt;}
.w1_c00339{width:689.333333pt;}
.w0_c00339{width:793.333333pt;}
.x0_c00339{left:0.000000pt;}
.x1_c00339{left:52.000000pt;}
.x2_c00339{left:70.837053pt;}
.x15_c00339{left:86.743053pt;}
.x2b_c00339{left:88.142253pt;}
.x4e_c00339{left:89.083853pt;}
.x4f_c00339{left:108.831053pt;}
.x16_c00339{left:116.891853pt;}
.x17_c00339{left:126.395853pt;}
.x18_c00339{left:132.098253pt;}
.x42_c00339{left:134.315853pt;}
.x5_c00339{left:135.477453pt;}
.x19_c00339{left:145.685453pt;}
.x3e_c00339{left:154.489853pt;}
.x1a_c00339{left:155.963853pt;}
.x6_c00339{left:165.454653pt;}
.x3_c00339{left:167.817453pt;}
.x2c_c00339{left:174.967453pt;}
.x5d_c00339{left:183.657453pt;}
.x1b_c00339{left:185.166653pt;}
.x34_c00339{left:194.934653pt;}
.x2d_c00339{left:203.967853pt;}
.x1c_c00339{left:205.362653pt;}
.x7_c00339{left:214.294653pt;}
.x1d_c00339{left:224.366253pt;}
.x3c_c00339{left:234.275053pt;}
.x8_c00339{left:243.757053pt;}
.x1e_c00339{left:253.577853pt;}
.x43_c00339{left:263.205053pt;}
.x9_c00339{left:273.166653pt;}
.x62_c00339{left:275.397453pt;}
.x35_c00339{left:281.891853pt;}
.x1f_c00339{left:283.374653pt;}
.x3d_c00339{left:292.781853pt;}
.x5e_c00339{left:296.513053pt;}
.xa_c00339{left:301.854653pt;}
.x2e_c00339{left:302.989853pt;}
.x3f_c00339{left:303.913853pt;}
.x20_c00339{left:312.370653pt;}
.x50_c00339{left:313.431053pt;}
.x21_c00339{left:322.759053pt;}
.x5f_c00339{left:324.114253pt;}
.x40_c00339{left:331.572253pt;}
.x44_c00339{left:332.795453pt;}
.x63_c00339{left:336.434253pt;}
.x65_c00339{left:340.156653pt;}
.x22_c00339{left:341.771453pt;}
.x2f_c00339{left:343.148653pt;}
.x4b_c00339{left:347.561853pt;}
.x4c_c00339{left:352.661453pt;}
.x45_c00339{left:360.502253pt;}
.x60_c00339{left:362.935453pt;}
.x30_c00339{left:371.299853pt;}
.x64_c00339{left:372.509853pt;}
.x36_c00339{left:381.177853pt;}
.x23_c00339{left:383.677053pt;}
.xb_c00339{left:391.258253pt;}
.x41_c00339{left:393.568253pt;}
.x37_c00339{left:401.343053pt;}
.x24_c00339{left:411.313453pt;}
.xc_c00339{left:420.615053pt;}
.x61_c00339{left:421.631453pt;}
.x46_c00339{left:431.258653pt;}
.xd_c00339{left:439.979453pt;}
.x38_c00339{left:441.405053pt;}
.x51_c00339{left:450.997053pt;}
.x31_c00339{left:459.779453pt;}
.x57_c00339{left:460.747453pt;}
.x39_c00339{left:470.819053pt;}
.x25_c00339{left:478.651053pt;}
.x47_c00339{left:479.729053pt;}
.x52_c00339{left:480.719053pt;}
.xe_c00339{left:489.928253pt;}
.x26_c00339{left:491.701453pt;}
.x3a_c00339{left:497.676653pt;}
.x27_c00339{left:499.234253pt;}
.xf_c00339{left:509.420253pt;}
.x48_c00339{left:519.188253pt;}
.x58_c00339{left:520.305853pt;}
.x28_c00339{left:527.737453pt;}
.x32_c00339{left:528.833053pt;}
.x59_c00339{left:529.743853pt;}
.x10_c00339{left:537.558253pt;}
.x53_c00339{left:541.443453pt;}
.x5a_c00339{left:547.731053pt;}
.x11_c00339{left:558.471453pt;}
.x54_c00339{left:567.372653pt;}
.x29_c00339{left:568.613453pt;}
.x12_c00339{left:578.922653pt;}
.x2a_c00339{left:588.136253pt;}
.x4d_c00339{left:597.094653pt;}
.x49_c00339{left:598.828253pt;}
.x3b_c00339{left:606.994653pt;}
.x4_c00339{left:608.671053pt;}
.x33_c00339{left:617.853853pt;}
.x66_c00339{left:623.947853pt;}
.x13_c00339{left:626.266653pt;}
.x55_c00339{left:628.281853pt;}
.x67_c00339{left:631.757853pt;}
.x4a_c00339{left:637.007053pt;}
.x14_c00339{left:647.496653pt;}
.x5b_c00339{left:656.679453pt;}
.x56_c00339{left:676.470653pt;}
.x5c_c00339{left:688.909453pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a68806377dda3896ee41b6db.woff2')format("woff");}.ff1_c00340{font-family:ff1_c00340;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00340;src:url('chunks/assets/font_c73bb714b6b976dddd0864da.woff2')format("woff");}.ff2_c00340{font-family:ff2_c00340;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00340;src:url('chunks/assets/font_a33e70d80a0ed07b479c0fc1.woff2')format("woff");}.ff3_c00340{font-family:ff3_c00340;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00340;src:url('chunks/assets/font_45cb7e04550721cf1698d9c4.woff2')format("woff");}.ff4_c00340{font-family:ff4_c00340;line-height:0.666000;font-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_c00340{transform:matrix(0.039217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.039217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.039217,0.000000,0.000000,0.250000,0,0);}
.m98_c00340{transform:matrix(0.073575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073575,0.000000,0.000000,0.250000,0,0);}
.m4d_c00340{transform:matrix(0.095589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095589,0.000000,0.000000,0.250000,0,0);}
.m4_c00340{transform:matrix(0.122015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122015,0.000000,0.000000,0.250000,0,0);}
.m1_c00340{transform:matrix(0.126264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126264,0.000000,0.000000,0.250000,0,0);}
.m8_c00340{transform:matrix(0.144919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144919,0.000000,0.000000,0.250000,0,0);}
.m5b_c00340{transform:matrix(0.150949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150949,0.000000,0.000000,0.250000,0,0);}
.me6_c00340{transform:matrix(0.163653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163653,0.000000,0.000000,0.250000,0,0);}
.m5e_c00340{transform:matrix(0.164723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164723,0.000000,0.000000,0.250000,0,0);}
.md7_c00340{transform:matrix(0.183193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183193,0.000000,0.000000,0.250000,0,0);}
.mf2_c00340{transform:matrix(0.184429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184429,0.000000,0.000000,0.250000,0,0);}
.ma2_c00340{transform:matrix(0.186899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186899,0.000000,0.000000,0.250000,0,0);}
.mbe_c00340{transform:matrix(0.189598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189598,0.000000,0.000000,0.250000,0,0);}
.m59_c00340{transform:matrix(0.197284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197284,0.000000,0.000000,0.250000,0,0);}
.m4f_c00340{transform:matrix(0.198530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198530,0.000000,0.000000,0.250000,0,0);}
.m50_c00340{transform:matrix(0.212009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212009,0.000000,0.000000,0.250000,0,0);}
.m12_c00340{transform:matrix(0.214196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214196,0.000000,0.000000,0.250000,0,0);}
.m11_c00340{transform:matrix(0.218312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218312,0.000000,0.000000,0.250000,0,0);}
.md0_c00340{transform:matrix(0.233963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233963,0.000000,0.000000,0.250000,0,0);}
.ma5_c00340{transform:matrix(0.235933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235933,0.000000,0.000000,0.250000,0,0);}
.mc5_c00340{transform:matrix(0.237790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237790,0.000000,0.000000,0.250000,0,0);}
.mec_c00340{transform:matrix(0.238614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238614,0.000000,0.000000,0.250000,0,0);}
.mb8_c00340{transform:matrix(0.245117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245117,0.000000,0.000000,0.250000,0,0);}
.mf0_c00340{transform:matrix(0.247850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247850,0.000000,0.000000,0.250000,0,0);}
.m0_c00340{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3_c00340{transform:matrix(0.253329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253329,0.000000,0.000000,0.250000,0,0);}
.m5_c00340{transform:matrix(0.256095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256095,0.000000,0.000000,0.250000,0,0);}
.mf3_c00340{transform:matrix(0.259130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259130,0.000000,0.000000,0.250000,0,0);}
.m3e_c00340{transform:matrix(0.262871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262871,0.000000,0.000000,0.250000,0,0);}
.m52_c00340{transform:matrix(0.267091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267091,0.000000,0.000000,0.250000,0,0);}
.me0_c00340{transform:matrix(0.267174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267174,0.000000,0.000000,0.250000,0,0);}
.mb_c00340{transform:matrix(0.267554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267554,0.000000,0.000000,0.250000,0,0);}
.meb_c00340{transform:matrix(0.268052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268052,0.000000,0.000000,0.250000,0,0);}
.mdf_c00340{transform:matrix(0.269726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269726,0.000000,0.000000,0.250000,0,0);}
.m82_c00340{transform:matrix(0.269933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269933,0.000000,0.000000,0.250000,0,0);}
.mba_c00340{transform:matrix(0.272215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272215,0.000000,0.000000,0.250000,0,0);}
.m58_c00340{transform:matrix(0.272524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272524,0.000000,0.000000,0.250000,0,0);}
.m9b_c00340{transform:matrix(0.273580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273580,0.000000,0.000000,0.250000,0,0);}
.mc9_c00340{transform:matrix(0.274140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274140,0.000000,0.000000,0.250000,0,0);}
.me5_c00340{transform:matrix(0.274698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274698,0.000000,0.000000,0.250000,0,0);}
.m75_c00340{transform:matrix(0.277572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277572,0.000000,0.000000,0.250000,0,0);}
.m94_c00340{transform:matrix(0.278381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278381,0.000000,0.000000,0.250000,0,0);}
.mc1_c00340{transform:matrix(0.278936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278936,0.000000,0.000000,0.250000,0,0);}
.me_c00340{transform:matrix(0.279125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279125,0.000000,0.000000,0.250000,0,0);}
.mbf_c00340{transform:matrix(0.279527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279527,0.000000,0.000000,0.250000,0,0);}
.m8d_c00340{transform:matrix(0.279709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279709,0.000000,0.000000,0.250000,0,0);}
.m48_c00340{transform:matrix(0.281053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281053,0.000000,0.000000,0.250000,0,0);}
.m6e_c00340{transform:matrix(0.281148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281148,0.000000,0.000000,0.250000,0,0);}
.m40_c00340{transform:matrix(0.281461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281461,0.000000,0.000000,0.250000,0,0);}
.m51_c00340{transform:matrix(0.281580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281580,0.000000,0.000000,0.250000,0,0);}
.m4a_c00340{transform:matrix(0.282150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282150,0.000000,0.000000,0.250000,0,0);}
.m96_c00340{transform:matrix(0.282858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282858,0.000000,0.000000,0.250000,0,0);}
.m2c_c00340{transform:matrix(0.283870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283870,0.000000,0.000000,0.250000,0,0);}
.m6d_c00340{transform:matrix(0.283911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283911,0.000000,0.000000,0.250000,0,0);}
.m14_c00340{transform:matrix(0.284110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284110,0.000000,0.000000,0.250000,0,0);}
.m45_c00340{transform:matrix(0.284327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284327,0.000000,0.000000,0.250000,0,0);}
.m5f_c00340{transform:matrix(0.284781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284781,0.000000,0.000000,0.250000,0,0);}
.mdd_c00340{transform:matrix(0.286089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286089,0.000000,0.000000,0.250000,0,0);}
.m6c_c00340{transform:matrix(0.286623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286623,0.000000,0.000000,0.250000,0,0);}
.m1e_c00340{transform:matrix(0.287249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287249,0.000000,0.000000,0.250000,0,0);}
.m88_c00340{transform:matrix(0.287780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287780,0.000000,0.000000,0.250000,0,0);}
.m74_c00340{transform:matrix(0.289094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289094,0.000000,0.000000,0.250000,0,0);}
.m47_c00340{transform:matrix(0.289095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289095,0.000000,0.000000,0.250000,0,0);}
.m54_c00340{transform:matrix(0.289473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289473,0.000000,0.000000,0.250000,0,0);}
.m69_c00340{transform:matrix(0.289849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289849,0.000000,0.000000,0.250000,0,0);}
.m80_c00340{transform:matrix(0.290097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290097,0.000000,0.000000,0.250000,0,0);}
.m6a_c00340{transform:matrix(0.290580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290580,0.000000,0.000000,0.250000,0,0);}
.m71_c00340{transform:matrix(0.291906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291906,0.000000,0.000000,0.250000,0,0);}
.m39_c00340{transform:matrix(0.292287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292287,0.000000,0.000000,0.250000,0,0);}
.m4b_c00340{transform:matrix(0.292379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292379,0.000000,0.000000,0.250000,0,0);}
.m35_c00340{transform:matrix(0.292385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292385,0.000000,0.000000,0.250000,0,0);}
.mcf_c00340{transform:matrix(0.293061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293061,0.000000,0.000000,0.250000,0,0);}
.m7e_c00340{transform:matrix(0.293657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293657,0.000000,0.000000,0.250000,0,0);}
.mab_c00340{transform:matrix(0.294078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294078,0.000000,0.000000,0.250000,0,0);}
.m2e_c00340{transform:matrix(0.294080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294080,0.000000,0.000000,0.250000,0,0);}
.m41_c00340{transform:matrix(0.294150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294150,0.000000,0.000000,0.250000,0,0);}
.m62_c00340{transform:matrix(0.294509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294509,0.000000,0.000000,0.250000,0,0);}
.mc6_c00340{transform:matrix(0.294693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294693,0.000000,0.000000,0.250000,0,0);}
.mcb_c00340{transform:matrix(0.295217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295217,0.000000,0.000000,0.250000,0,0);}
.mbd_c00340{transform:matrix(0.295727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295727,0.000000,0.000000,0.250000,0,0);}
.m1b_c00340{transform:matrix(0.295786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295786,0.000000,0.000000,0.250000,0,0);}
.mde_c00340{transform:matrix(0.295925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295925,0.000000,0.000000,0.250000,0,0);}
.m6f_c00340{transform:matrix(0.296010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296010,0.000000,0.000000,0.250000,0,0);}
.m2_c00340{transform:matrix(0.296110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296110,0.000000,0.000000,0.250000,0,0);}
.m43_c00340{transform:matrix(0.296531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296531,0.000000,0.000000,0.250000,0,0);}
.m20_c00340{transform:matrix(0.296583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296583,0.000000,0.000000,0.250000,0,0);}
.mc8_c00340{transform:matrix(0.298463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298463,0.000000,0.000000,0.250000,0,0);}
.m3f_c00340{transform:matrix(0.298907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298907,0.000000,0.000000,0.250000,0,0);}
.m25_c00340{transform:matrix(0.299033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299033,0.000000,0.000000,0.250000,0,0);}
.m90_c00340{transform:matrix(0.299063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299063,0.000000,0.000000,0.250000,0,0);}
.m27_c00340{transform:matrix(0.299064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299064,0.000000,0.000000,0.250000,0,0);}
.mc_c00340{transform:matrix(0.299642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299642,0.000000,0.000000,0.250000,0,0);}
.m2f_c00340{transform:matrix(0.300046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300046,0.000000,0.000000,0.250000,0,0);}
.m72_c00340{transform:matrix(0.300047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300047,0.000000,0.000000,0.250000,0,0);}
.m9a_c00340{transform:matrix(0.300064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300064,0.000000,0.000000,0.250000,0,0);}
.m2b_c00340{transform:matrix(0.300584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300584,0.000000,0.000000,0.250000,0,0);}
.m7f_c00340{transform:matrix(0.301005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301005,0.000000,0.000000,0.250000,0,0);}
.m15_c00340{transform:matrix(0.301473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301473,0.000000,0.000000,0.250000,0,0);}
.me9_c00340{transform:matrix(0.301967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301967,0.000000,0.000000,0.250000,0,0);}
.ma7_c00340{transform:matrix(0.302087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302087,0.000000,0.000000,0.250000,0,0);}
.m61_c00340{transform:matrix(0.302479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302479,0.000000,0.000000,0.250000,0,0);}
.m68_c00340{transform:matrix(0.302547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302547,0.000000,0.000000,0.250000,0,0);}
.mea_c00340{transform:matrix(0.303653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303653,0.000000,0.000000,0.250000,0,0);}
.m7d_c00340{transform:matrix(0.303774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303774,0.000000,0.000000,0.250000,0,0);}
.m18_c00340{transform:matrix(0.303793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303793,0.000000,0.000000,0.250000,0,0);}
.m3b_c00340{transform:matrix(0.304047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304047,0.000000,0.000000,0.250000,0,0);}
.m1a_c00340{transform:matrix(0.304048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304048,0.000000,0.000000,0.250000,0,0);}
.m29_c00340{transform:matrix(0.304095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304095,0.000000,0.000000,0.250000,0,0);}
.m9e_c00340{transform:matrix(0.304619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304619,0.000000,0.000000,0.250000,0,0);}
.maa_c00340{transform:matrix(0.305140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305140,0.000000,0.000000,0.250000,0,0);}
.m9f_c00340{transform:matrix(0.305952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305952,0.000000,0.000000,0.250000,0,0);}
.me2_c00340{transform:matrix(0.306226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306226,0.000000,0.000000,0.250000,0,0);}
.m56_c00340{transform:matrix(0.306415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306415,0.000000,0.000000,0.250000,0,0);}
.m1d_c00340{transform:matrix(0.306450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306450,0.000000,0.000000,0.250000,0,0);}
.m10_c00340{transform:matrix(0.306606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306606,0.000000,0.000000,0.250000,0,0);}
.mb6_c00340{transform:matrix(0.306811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306811,0.000000,0.000000,0.250000,0,0);}
.m76_c00340{transform:matrix(0.308067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308067,0.000000,0.000000,0.250000,0,0);}
.m3d_c00340{transform:matrix(0.308268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308268,0.000000,0.000000,0.250000,0,0);}
.mb1_c00340{transform:matrix(0.309429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309429,0.000000,0.000000,0.250000,0,0);}
.maf_c00340{transform:matrix(0.309522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309522,0.000000,0.000000,0.250000,0,0);}
.me8_c00340{transform:matrix(0.309599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309599,0.000000,0.000000,0.250000,0,0);}
.m3c_c00340{transform:matrix(0.309726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309726,0.000000,0.000000,0.250000,0,0);}
.mdb_c00340{transform:matrix(0.309909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309909,0.000000,0.000000,0.250000,0,0);}
.md9_c00340{transform:matrix(0.309960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309960,0.000000,0.000000,0.250000,0,0);}
.m44_c00340{transform:matrix(0.310171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310171,0.000000,0.000000,0.250000,0,0);}
.m3a_c00340{transform:matrix(0.310573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310573,0.000000,0.000000,0.250000,0,0);}
.ma4_c00340{transform:matrix(0.312207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312207,0.000000,0.000000,0.250000,0,0);}
.ma8_c00340{transform:matrix(0.312702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312702,0.000000,0.000000,0.250000,0,0);}
.ma0_c00340{transform:matrix(0.313394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313394,0.000000,0.000000,0.250000,0,0);}
.m6_c00340{transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);}
.m9_c00340{transform:matrix(0.314983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314983,0.000000,0.000000,0.250000,0,0);}
.md4_c00340{transform:matrix(0.315357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315357,0.000000,0.000000,0.250000,0,0);}
.m33_c00340{transform:matrix(0.316854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316854,0.000000,0.000000,0.250000,0,0);}
.m97_c00340{transform:matrix(0.318496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318496,0.000000,0.000000,0.250000,0,0);}
.mac_c00340{transform:matrix(0.319376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319376,0.000000,0.000000,0.250000,0,0);}
.m8e_c00340{transform:matrix(0.319691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319691,0.000000,0.000000,0.250000,0,0);}
.m9d_c00340{transform:matrix(0.320227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320227,0.000000,0.000000,0.250000,0,0);}
.mee_c00340{transform:matrix(0.320330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320330,0.000000,0.000000,0.250000,0,0);}
.m16_c00340{transform:matrix(0.320582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320582,0.000000,0.000000,0.250000,0,0);}
.m65_c00340{transform:matrix(0.320872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320872,0.000000,0.000000,0.250000,0,0);}
.m63_c00340{transform:matrix(0.320951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320951,0.000000,0.000000,0.250000,0,0);}
.m13_c00340{transform:matrix(0.321124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321124,0.000000,0.000000,0.250000,0,0);}
.med_c00340{transform:matrix(0.321537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321537,0.000000,0.000000,0.250000,0,0);}
.mca_c00340{transform:matrix(0.323028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323028,0.000000,0.000000,0.250000,0,0);}
.m84_c00340{transform:matrix(0.323278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323278,0.000000,0.000000,0.250000,0,0);}
.m31_c00340{transform:matrix(0.323661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323661,0.000000,0.000000,0.250000,0,0);}
.m9c_c00340{transform:matrix(0.323825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323825,0.000000,0.000000,0.250000,0,0);}
.mb0_c00340{transform:matrix(0.323911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323911,0.000000,0.000000,0.250000,0,0);}
.md1_c00340{transform:matrix(0.324269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324269,0.000000,0.000000,0.250000,0,0);}
.m85_c00340{transform:matrix(0.324450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324450,0.000000,0.000000,0.250000,0,0);}
.m93_c00340{transform:matrix(0.324953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324953,0.000000,0.000000,0.250000,0,0);}
.m2a_c00340{transform:matrix(0.325225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325225,0.000000,0.000000,0.250000,0,0);}
.me1_c00340{transform:matrix(0.325342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325342,0.000000,0.000000,0.250000,0,0);}
.mf_c00340{transform:matrix(0.326270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326270,0.000000,0.000000,0.250000,0,0);}
.m60_c00340{transform:matrix(0.326307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326307,0.000000,0.000000,0.250000,0,0);}
.mc4_c00340{transform:matrix(0.326699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326699,0.000000,0.000000,0.250000,0,0);}
.md8_c00340{transform:matrix(0.327173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327173,0.000000,0.000000,0.250000,0,0);}
.m73_c00340{transform:matrix(0.327972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327972,0.000000,0.000000,0.250000,0,0);}
.m17_c00340{transform:matrix(0.328332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328332,0.000000,0.000000,0.250000,0,0);}
.m86_c00340{transform:matrix(0.329079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329079,0.000000,0.000000,0.250000,0,0);}
.m8a_c00340{transform:matrix(0.329086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329086,0.000000,0.000000,0.250000,0,0);}
.m79_c00340{transform:matrix(0.329773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329773,0.000000,0.000000,0.250000,0,0);}
.m26_c00340{transform:matrix(0.329779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329779,0.000000,0.000000,0.250000,0,0);}
.me3_c00340{transform:matrix(0.331341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331341,0.000000,0.000000,0.250000,0,0);}
.mef_c00340{transform:matrix(0.331759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331759,0.000000,0.000000,0.250000,0,0);}
.mcc_c00340{transform:matrix(0.332032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332032,0.000000,0.000000,0.250000,0,0);}
.m67_c00340{transform:matrix(0.332311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332311,0.000000,0.000000,0.250000,0,0);}
.m23_c00340{transform:matrix(0.332681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332681,0.000000,0.000000,0.250000,0,0);}
.mf1_c00340{transform:matrix(0.333265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333265,0.000000,0.000000,0.250000,0,0);}
.m7c_c00340{transform:matrix(0.333314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333314,0.000000,0.000000,0.250000,0,0);}
.m55_c00340{transform:matrix(0.333517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333517,0.000000,0.000000,0.250000,0,0);}
.mbb_c00340{transform:matrix(0.334044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334044,0.000000,0.000000,0.250000,0,0);}
.md_c00340{transform:matrix(0.334095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334095,0.000000,0.000000,0.250000,0,0);}
.m64_c00340{transform:matrix(0.334580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334580,0.000000,0.000000,0.250000,0,0);}
.m19_c00340{transform:matrix(0.334713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334713,0.000000,0.000000,0.250000,0,0);}
.m91_c00340{transform:matrix(0.337235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337235,0.000000,0.000000,0.250000,0,0);}
.m32_c00340{transform:matrix(0.337396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337396,0.000000,0.000000,0.250000,0,0);}
.m6b_c00340{transform:matrix(0.337757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337757,0.000000,0.000000,0.250000,0,0);}
.m53_c00340{transform:matrix(0.337928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337928,0.000000,0.000000,0.250000,0,0);}
.m7a_c00340{transform:matrix(0.338161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338161,0.000000,0.000000,0.250000,0,0);}
.m92_c00340{transform:matrix(0.338655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338655,0.000000,0.000000,0.250000,0,0);}
.mb9_c00340{transform:matrix(0.339400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339400,0.000000,0.000000,0.250000,0,0);}
.m99_c00340{transform:matrix(0.339668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339668,0.000000,0.000000,0.250000,0,0);}
.m87_c00340{transform:matrix(0.339777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339777,0.000000,0.000000,0.250000,0,0);}
.m42_c00340{transform:matrix(0.340079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340079,0.000000,0.000000,0.250000,0,0);}
.m77_c00340{transform:matrix(0.340310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340310,0.000000,0.000000,0.250000,0,0);}
.m95_c00340{transform:matrix(0.340791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340791,0.000000,0.000000,0.250000,0,0);}
.m49_c00340{transform:matrix(0.341073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341073,0.000000,0.000000,0.250000,0,0);}
.ma6_c00340{transform:matrix(0.346454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346454,0.000000,0.000000,0.250000,0,0);}
.me4_c00340{transform:matrix(0.346594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346594,0.000000,0.000000,0.250000,0,0);}
.m24_c00340{transform:matrix(0.347009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347009,0.000000,0.000000,0.250000,0,0);}
.mb2_c00340{transform:matrix(0.347011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347011,0.000000,0.000000,0.250000,0,0);}
.m22_c00340{transform:matrix(0.348255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348255,0.000000,0.000000,0.250000,0,0);}
.m83_c00340{transform:matrix(0.349543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349543,0.000000,0.000000,0.250000,0,0);}
.m1f_c00340{transform:matrix(0.350002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350002,0.000000,0.000000,0.250000,0,0);}
.ma9_c00340{transform:matrix(0.350827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350827,0.000000,0.000000,0.250000,0,0);}
.m28_c00340{transform:matrix(0.353157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353157,0.000000,0.000000,0.250000,0,0);}
.mc7_c00340{transform:matrix(0.353338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353338,0.000000,0.000000,0.250000,0,0);}
.ma1_c00340{transform:matrix(0.355083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355083,0.000000,0.000000,0.250000,0,0);}
.mad_c00340{transform:matrix(0.355119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355119,0.000000,0.000000,0.250000,0,0);}
.m37_c00340{transform:matrix(0.356876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356876,0.000000,0.000000,0.250000,0,0);}
.mb3_c00340{transform:matrix(0.359015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359015,0.000000,0.000000,0.250000,0,0);}
.m21_c00340{transform:matrix(0.359554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359554,0.000000,0.000000,0.250000,0,0);}
.ma_c00340{transform:matrix(0.359718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359718,0.000000,0.000000,0.250000,0,0);}
.m5a_c00340{transform:matrix(0.360521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360521,0.000000,0.000000,0.250000,0,0);}
.mc3_c00340{transform:matrix(0.362076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362076,0.000000,0.000000,0.250000,0,0);}
.me7_c00340{transform:matrix(0.362479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362479,0.000000,0.000000,0.250000,0,0);}
.md5_c00340{transform:matrix(0.363062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363062,0.000000,0.000000,0.250000,0,0);}
.m2d_c00340{transform:matrix(0.363906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363906,0.000000,0.000000,0.250000,0,0);}
.m7_c00340{transform:matrix(0.363966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363966,0.000000,0.000000,0.250000,0,0);}
.m46_c00340{transform:matrix(0.364071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364071,0.000000,0.000000,0.250000,0,0);}
.md2_c00340{transform:matrix(0.364153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364153,0.000000,0.000000,0.250000,0,0);}
.m7b_c00340{transform:matrix(0.364180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364180,0.000000,0.000000,0.250000,0,0);}
.md6_c00340{transform:matrix(0.364595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364595,0.000000,0.000000,0.250000,0,0);}
.m8c_c00340{transform:matrix(0.365200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365200,0.000000,0.000000,0.250000,0,0);}
.m34_c00340{transform:matrix(0.365249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365249,0.000000,0.000000,0.250000,0,0);}
.mb5_c00340{transform:matrix(0.365415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365415,0.000000,0.000000,0.250000,0,0);}
.mb4_c00340{transform:matrix(0.366825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366825,0.000000,0.000000,0.250000,0,0);}
.m38_c00340{transform:matrix(0.367618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367618,0.000000,0.000000,0.250000,0,0);}
.m78_c00340{transform:matrix(0.368753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368753,0.000000,0.000000,0.250000,0,0);}
.mc2_c00340{transform:matrix(0.369368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369368,0.000000,0.000000,0.250000,0,0);}
.mcd_c00340{transform:matrix(0.370404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370404,0.000000,0.000000,0.250000,0,0);}
.m57_c00340{transform:matrix(0.372101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372101,0.000000,0.000000,0.250000,0,0);}
.m1c_c00340{transform:matrix(0.373030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373030,0.000000,0.000000,0.250000,0,0);}
.m4c_c00340{transform:matrix(0.374816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374816,0.000000,0.000000,0.250000,0,0);}
.mda_c00340{transform:matrix(0.376319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376319,0.000000,0.000000,0.250000,0,0);}
.m36_c00340{transform:matrix(0.376323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376323,0.000000,0.000000,0.250000,0,0);}
.m30_c00340{transform:matrix(0.376959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376959,0.000000,0.000000,0.250000,0,0);}
.m66_c00340{transform:matrix(0.383860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383860,0.000000,0.000000,0.250000,0,0);}
.m89_c00340{transform:matrix(0.387196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387196,0.000000,0.000000,0.250000,0,0);}
.m8b_c00340{transform:matrix(0.391938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391938,0.000000,0.000000,0.250000,0,0);}
.ma3_c00340{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);}
.mae_c00340{transform:matrix(0.403994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403994,0.000000,0.000000,0.250000,0,0);}
.m5d_c00340{transform:matrix(0.405133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405133,0.000000,0.000000,0.250000,0,0);}
.m5c_c00340{transform:matrix(0.408906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408906,0.000000,0.000000,0.250000,0,0);}
.md3_c00340{transform:matrix(0.409622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409622,0.000000,0.000000,0.250000,0,0);}
.m81_c00340{transform:matrix(0.423775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423775,0.000000,0.000000,0.250000,0,0);}
.mdc_c00340{transform:matrix(0.432658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432658,0.000000,0.000000,0.250000,0,0);}
.mb7_c00340{transform:matrix(0.448356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448356,0.000000,0.000000,0.250000,0,0);}
.mbc_c00340{transform:matrix(0.450540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450540,0.000000,0.000000,0.250000,0,0);}
.mce_c00340{transform:matrix(0.456508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456508,0.000000,0.000000,0.250000,0,0);}
.m8f_c00340{transform:matrix(0.458180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458180,0.000000,0.000000,0.250000,0,0);}
.m70_c00340{transform:matrix(0.464660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464660,0.000000,0.000000,0.250000,0,0);}
.mc0_c00340{transform:matrix(0.499996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499996,0.000000,0.000000,0.250000,0,0);}
.v0_c00340{vertical-align:0.000000px;}
.ls1_c00340{letter-spacing:-2.806650px;}
.ls5_c00340{letter-spacing:-2.543317px;}
.ls9_c00340{letter-spacing:-1.620456px;}
.ls6_c00340{letter-spacing:-0.792062px;}
.ls3_c00340{letter-spacing:-0.036333px;}
.ls0_c00340{letter-spacing:0.000000px;}
.ls8_c00340{letter-spacing:0.058133px;}
.lsd_c00340{letter-spacing:0.130799px;}
.ls10_c00340{letter-spacing:1.918388px;}
.lse_c00340{letter-spacing:2.775849px;}
.lsc_c00340{letter-spacing:3.524400px;}
.ls4_c00340{letter-spacing:3.633310px;}
.ls7_c00340{letter-spacing:3.801610px;}
.ls2_c00340{letter-spacing:4.009500px;}
.lsf_c00340{letter-spacing:11.404998px;}
.lsa_c00340{letter-spacing:48.470598px;}
.lsb_c00340{letter-spacing:69.854598px;}
.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;}
}
.ws1_c00340{word-spacing:-18.166550px;}
.ws0_c00340{word-spacing:-4.142067px;}
.ws5_c00340{word-spacing:0.000000px;}
.ws4_c00340{word-spacing:1.162739px;}
.ws3_c00340{word-spacing:2.326187px;}
.ws2_c00340{word-spacing:6.830697px;}
._12_c00340{margin-left:-3.778731px;}
._c_c00340{width:6.902588px;}
._7_c00340{width:8.793488px;}
._3_c00340{width:10.608741px;}
._0_c00340{width:12.062061px;}
._5_c00340{width:14.533112px;}
._13_c00340{width:15.841496px;}
._2_c00340{width:19.328496px;}
._f_c00340{width:21.509246px;}
._4_c00340{width:23.398595px;}
._6_c00340{width:25.796749px;}
._e_c00340{width:29.377111px;}
._a_c00340{width:31.264459px;}
._15_c00340{width:32.274259px;}
._9_c00340{width:33.719659px;}
._14_c00340{width:34.848259px;}
._8_c00340{width:35.896074px;}
._1_c00340{width:37.379699px;}
._10_c00340{width:39.094127px;}
._d_c00340{width:41.565023px;}
._11_c00340{width:51.332595px;}
._b_c00340{width:61.185031px;}
.fc0_c00340{color:transparent;}
.fs9_c00340{font-size:11.404998px;}
.fs0_c00340{font-size:22.176000px;}
.fsa_c00340{font-size:22.572000px;}
.fsb_c00340{font-size:39.600000px;}
.fs5_c00340{font-size:48.470598px;}
.fs8_c00340{font-size:64.548000px;}
.fs6_c00340{font-size:69.854598px;}
.fs7_c00340{font-size:70.488000px;}
.fs3_c00340{font-size:70.884000px;}
.fs2_c00340{font-size:72.666198px;}
.fs4_c00340{font-size:76.032198px;}
.fs1_c00340{font-size:80.190000px;}
.y0_c00340{bottom:0.000000px;}
.y1_c00340{bottom:76.500000px;}
.y1e_c00340{bottom:134.631135px;}
.y1d_c00340{bottom:145.323135px;}
.y1c_c00340{bottom:175.260735px;}
.y1b_c00340{bottom:210.900735px;}
.y1a_c00340{bottom:243.684585px;}
.y19_c00340{bottom:257.940585px;}
.y18_c00340{bottom:276.473385px;}
.y17_c00340{bottom:337.779135px;}
.y16_c00340{bottom:341.343135px;}
.y15_c00340{bottom:373.770585px;}
.y14_c00340{bottom:405.851535px;}
.y13_c00340{bottom:438.640335px;}
.y12_c00340{bottom:470.711385px;}
.y11_c00340{bottom:505.643535px;}
.y10_c00340{bottom:537.363135px;}
.yf_c00340{bottom:570.503385px;}
.ye_c00340{bottom:602.584335px;}
.yd_c00340{bottom:635.373135px;}
.yc_c00340{bottom:667.444185px;}
.y2_c00340{bottom:669.231135px;}
.ya_c00340{bottom:699.874605px;}
.yb_c00340{bottom:699.876585px;}
.y9_c00340{bottom:732.665385px;}
.y8_c00340{bottom:796.822335px;}
.y7_c00340{bottom:829.611135px;}
.y6_c00340{bottom:864.181935px;}
.y5_c00340{bottom:897.322185px;}
.y4_c00340{bottom:929.754585px;}
.y3_c00340{bottom:1079.798985px;}
.hc_c00340{height:7.595729px;}
.h2_c00340{height:23.128875px;}
.hd_c00340{height:23.541891px;}
.h7_c00340{height:32.281418px;}
.he_c00340{height:41.301563px;}
.h8_c00340{height:46.523162px;}
.hb_c00340{height:67.321547px;}
.h9_c00340{height:69.180117px;}
.h5_c00340{height:69.568770px;}
.h4_c00340{height:71.317899px;}
.ha_c00340{height:73.233903px;}
.h6_c00340{height:76.626200px;}
.h3_c00340{height:78.702100px;}
.h1_c00340{height:1110.000000px;}
.h0_c00340{height:1263.000000px;}
.w1_c00340{width:775.500000px;}
.w0_c00340{width:892.500000px;}
.x0_c00340{left:0.000000px;}
.x2_c00340{left:46.947435px;}
.x1_c00340{left:58.500000px;}
.x24_c00340{left:95.497035px;}
.x15_c00340{left:97.442385px;}
.x76_c00340{left:98.957085px;}
.x46_c00340{left:107.575035px;}
.x77_c00340{left:109.673835px;}
.x25_c00340{left:119.544135px;}
.x60_c00340{left:129.201585px;}
.x16_c00340{left:130.577685px;}
.x78_c00340{left:131.612235px;}
.x64_c00340{left:132.631935px;}
.x26_c00340{left:140.373735px;}
.x5_c00340{left:151.075635px;}
.x17_c00340{left:152.620035px;}
.x7e_c00340{left:153.753585px;}
.x4c_c00340{left:162.455685px;}
.x82_c00340{left:164.445585px;}
.x2e_c00340{left:173.216985px;}
.x37_c00340{left:174.370335px;}
.x79_c00340{left:175.493985px;}
.x59_c00340{left:184.507935px;}
.x6_c00340{left:185.824635px;}
.x3e_c00340{left:194.219835px;}
.x27_c00340{left:195.813735px;}
.x70_c00340{left:196.892835px;}
.x38_c00340{left:207.149235px;}
.x7a_c00340{left:208.277835px;}
.x7_c00340{left:210.035085px;}
.x8_c00340{left:217.029435px;}
.x7f_c00340{left:218.054085px;}
.x18_c00340{left:219.355935px;}
.x4d_c00340{left:222.504135px;}
.x83_c00340{left:224.370285px;}
.x69_c00340{left:228.077835px;}
.x4e_c00340{left:230.023185px;}
.x19_c00340{left:232.557585px;}
.x6e_c00340{left:233.785185px;}
.x7b_c00340{left:237.230385px;}
.x3f_c00340{left:240.675585px;}
.x1a_c00340{left:250.397385px;}
.x9_c00340{left:251.768535px;}
.x1b_c00340{left:257.456085px;}
.x28_c00340{left:262.386285px;}
.x80_c00340{left:264.950385px;}
.xa_c00340{left:273.726735px;}
.x4f_c00340{left:283.280235px;}
.x39_c00340{left:284.344485px;}
.x6c_c00340{left:294.675135px;}
.x40_c00340{left:295.858185px;}
.x2f_c00340{left:306.159135px;}
.xb_c00340{left:307.649085px;}
.x65_c00340{left:313.935585px;}
.x3a_c00340{left:317.148135px;}
.x71_c00340{left:318.618285px;}
.x29_c00340{left:319.652835px;}
.x30_c00340{left:328.899435px;}
.x1c_c00340{left:339.789435px;}
.x84_c00340{left:341.512035px;}
.x3b_c00340{left:350.862585px;}
.x55_c00340{left:351.867435px;}
.x85_c00340{left:353.278185px;}
.x47_c00340{left:355.673985px;}
.x6f_c00340{left:358.030185px;}
.x31_c00340{left:362.212935px;}
.x6a_c00340{left:363.287085px;}
.xc_c00340{left:373.464285px;}
.x86_c00340{left:375.077985px;}
.x1d_c00340{left:383.111835px;}
.x5a_c00340{left:384.334485px;}
.x72_c00340{left:385.769985px;}
.x50_c00340{left:388.111335px;}
.xd_c00340{left:395.486835px;}
.x7c_c00340{left:396.699585px;}
.xe_c00340{left:405.208635px;}
.x56_c00340{left:406.733235px;}
.x1e_c00340{left:417.350985px;}
.x5c_c00340{left:418.469685px;}
.x41_c00340{left:426.949035px;}
.x32_c00340{left:428.854785px;}
.x57_c00340{left:440.210085px;}
.x7d_c00340{left:444.056235px;}
.xf_c00340{left:450.451635px;}
.x5d_c00340{left:451.659435px;}
.x6d_c00340{left:453.391935px;}
.x42_c00340{left:461.188185px;}
.x73_c00340{left:462.366285px;}
.x43_c00340{left:472.889985px;}
.x33_c00340{left:483.661185px;}
.x51_c00340{left:484.849185px;}
.x48_c00340{left:494.640285px;}
.x10_c00340{left:495.882735px;}
.x1f_c00340{left:504.287835px;}
.x2a_c00340{left:506.500485px;}
.x68_c00340{left:517.430085px;}
.x3c_c00340{left:528.265635px;}
.x5e_c00340{left:529.364535px;}
.x20_c00340{left:538.606185px;}
.x62_c00340{left:539.670435px;}
.x34_c00340{left:550.035735px;}
.x66_c00340{left:553.183935px;}
.x52_c00340{left:560.757435px;}
.x75_c00340{left:561.950385px;}
.x35_c00340{left:572.102835px;}
.x11_c00340{left:574.567935px;}
.x3d_c00340{left:583.542285px;}
.x5f_c00340{left:592.991835px;}
.x5b_c00340{left:594.046185px;}
.x12_c00340{left:595.293585px;}
.x21_c00340{left:604.465935px;}
.x53_c00340{left:605.520285px;}
.x58_c00340{left:617.058735px;}
.x22_c00340{left:627.577485px;}
.x67_c00340{left:629.191185px;}
.x2b_c00340{left:638.447685px;}
.x13_c00340{left:649.525785px;}
.x63_c00340{left:650.728635px;}
.x49_c00340{left:660.415785px;}
.x23_c00340{left:661.583985px;}
.x4a_c00340{left:670.013835px;}
.x2c_c00340{left:671.622585px;}
.x3_c00340{left:673.013535px;}
.x4_c00340{left:676.557735px;}
.x14_c00340{left:682.076985px;}
.x61_c00340{left:684.042135px;}
.x6b_c00340{left:685.774635px;}
.x74_c00340{left:690.249435px;}
.x4b_c00340{left:694.348035px;}
.x2d_c00340{left:705.044985px;}
.x81_c00340{left:706.148835px;}
.x36_c00340{left:715.370685px;}
.x44_c00340{left:727.874385px;}
.x54_c00340{left:737.878335px;}
.x45_c00340{left:751.698735px;}
@media print{
.v0_c00340{vertical-align:0.000000pt;}
.ls1_c00340{letter-spacing:-2.494800pt;}
.ls5_c00340{letter-spacing:-2.260726pt;}
.ls9_c00340{letter-spacing:-1.440406pt;}
.ls6_c00340{letter-spacing:-0.704055pt;}
.ls3_c00340{letter-spacing:-0.032296pt;}
.ls0_c00340{letter-spacing:0.000000pt;}
.ls8_c00340{letter-spacing:0.051674pt;}
.lsd_c00340{letter-spacing:0.116266pt;}
.ls10_c00340{letter-spacing:1.705233pt;}
.lse_c00340{letter-spacing:2.467421pt;}
.lsc_c00340{letter-spacing:3.132800pt;}
.ls4_c00340{letter-spacing:3.229609pt;}
.ls7_c00340{letter-spacing:3.379209pt;}
.ls2_c00340{letter-spacing:3.564000pt;}
.lsf_c00340{letter-spacing:10.137776pt;}
.lsa_c00340{letter-spacing:43.084976pt;}
.lsb_c00340{letter-spacing:62.092976pt;}
.ws1_c00340{word-spacing:-16.148044pt;}
.ws0_c00340{word-spacing:-3.681837pt;}
.ws5_c00340{word-spacing:0.000000pt;}
.ws4_c00340{word-spacing:1.033545pt;}
.ws3_c00340{word-spacing:2.067721pt;}
.ws2_c00340{word-spacing:6.071731pt;}
._12_c00340{margin-left:-3.358872pt;}
._c_c00340{width:6.135634pt;}
._7_c00340{width:7.816434pt;}
._3_c00340{width:9.429992pt;}
._0_c00340{width:10.721832pt;}
._5_c00340{width:12.918322pt;}
._13_c00340{width:14.081330pt;}
._2_c00340{width:17.180885pt;}
._f_c00340{width:19.119330pt;}
._4_c00340{width:20.798751pt;}
._6_c00340{width:22.930444pt;}
._e_c00340{width:26.112988pt;}
._a_c00340{width:27.790630pt;}
._15_c00340{width:28.688230pt;}
._9_c00340{width:29.973030pt;}
._14_c00340{width:30.976230pt;}
._8_c00340{width:31.907622pt;}
._1_c00340{width:33.226400pt;}
._10_c00340{width:34.750335pt;}
._d_c00340{width:36.946688pt;}
._11_c00340{width:45.628973pt;}
._b_c00340{width:54.386694pt;}
.fs9_c00340{font-size:10.137776pt;}
.fs0_c00340{font-size:19.712000pt;}
.fsa_c00340{font-size:20.064000pt;}
.fsb_c00340{font-size:35.200000pt;}
.fs5_c00340{font-size:43.084976pt;}
.fs8_c00340{font-size:57.376000pt;}
.fs6_c00340{font-size:62.092976pt;}
.fs7_c00340{font-size:62.656000pt;}
.fs3_c00340{font-size:63.008000pt;}
.fs2_c00340{font-size:64.592176pt;}
.fs4_c00340{font-size:67.584176pt;}
.fs1_c00340{font-size:71.280000pt;}
.y0_c00340{bottom:0.000000pt;}
.y1_c00340{bottom:68.000000pt;}
.y1e_c00340{bottom:119.672120pt;}
.y1d_c00340{bottom:129.176120pt;}
.y1c_c00340{bottom:155.787320pt;}
.y1b_c00340{bottom:187.467320pt;}
.y1a_c00340{bottom:216.608520pt;}
.y19_c00340{bottom:229.280520pt;}
.y18_c00340{bottom:245.754120pt;}
.y17_c00340{bottom:300.248120pt;}
.y16_c00340{bottom:303.416120pt;}
.y15_c00340{bottom:332.240520pt;}
.y14_c00340{bottom:360.756920pt;}
.y13_c00340{bottom:389.902520pt;}
.y12_c00340{bottom:418.410120pt;}
.y11_c00340{bottom:449.460920pt;}
.y10_c00340{bottom:477.656120pt;}
.yf_c00340{bottom:507.114120pt;}
.ye_c00340{bottom:535.630520pt;}
.yd_c00340{bottom:564.776120pt;}
.yc_c00340{bottom:593.283720pt;}
.y2_c00340{bottom:594.872120pt;}
.ya_c00340{bottom:622.110760pt;}
.yb_c00340{bottom:622.112520pt;}
.y9_c00340{bottom:651.258120pt;}
.y8_c00340{bottom:708.286520pt;}
.y7_c00340{bottom:737.432120pt;}
.y6_c00340{bottom:768.161720pt;}
.y5_c00340{bottom:797.619720pt;}
.y4_c00340{bottom:826.448520pt;}
.y3_c00340{bottom:959.821320pt;}
.hc_c00340{height:6.751759pt;}
.h2_c00340{height:20.559000pt;}
.hd_c00340{height:20.926125pt;}
.h7_c00340{height:28.694594pt;}
.he_c00340{height:36.712500pt;}
.h8_c00340{height:41.353922pt;}
.hb_c00340{height:59.841375pt;}
.h9_c00340{height:61.493438pt;}
.h5_c00340{height:61.838906pt;}
.h4_c00340{height:63.393688pt;}
.ha_c00340{height:65.096802pt;}
.h6_c00340{height:68.112177pt;}
.h3_c00340{height:69.957422pt;}
.h1_c00340{height:986.666667pt;}
.h0_c00340{height:1122.666667pt;}
.w1_c00340{width:689.333333pt;}
.w0_c00340{width:793.333333pt;}
.x0_c00340{left:0.000000pt;}
.x2_c00340{left:41.731053pt;}
.x1_c00340{left:52.000000pt;}
.x24_c00340{left:84.886253pt;}
.x15_c00340{left:86.615453pt;}
.x76_c00340{left:87.961853pt;}
.x46_c00340{left:95.622253pt;}
.x77_c00340{left:97.487853pt;}
.x25_c00340{left:106.261453pt;}
.x60_c00340{left:114.845853pt;}
.x16_c00340{left:116.069053pt;}
.x78_c00340{left:116.988653pt;}
.x64_c00340{left:117.895053pt;}
.x26_c00340{left:124.776653pt;}
.x5_c00340{left:134.289453pt;}
.x17_c00340{left:135.662253pt;}
.x7e_c00340{left:136.669853pt;}
.x4c_c00340{left:144.405053pt;}
.x82_c00340{left:146.173853pt;}
.x2e_c00340{left:153.970653pt;}
.x37_c00340{left:154.995853pt;}
.x79_c00340{left:155.994653pt;}
.x59_c00340{left:164.007053pt;}
.x6_c00340{left:165.177453pt;}
.x3e_c00340{left:172.639853pt;}
.x27_c00340{left:174.056653pt;}
.x70_c00340{left:175.015853pt;}
.x38_c00340{left:184.132653pt;}
.x7a_c00340{left:185.135853pt;}
.x7_c00340{left:186.697853pt;}
.x8_c00340{left:192.915053pt;}
.x7f_c00340{left:193.825853pt;}
.x18_c00340{left:194.983053pt;}
.x4d_c00340{left:197.781453pt;}
.x83_c00340{left:199.440253pt;}
.x69_c00340{left:202.735853pt;}
.x4e_c00340{left:204.465053pt;}
.x19_c00340{left:206.717853pt;}
.x6e_c00340{left:207.809053pt;}
.x7b_c00340{left:210.871453pt;}
.x3f_c00340{left:213.933853pt;}
.x1a_c00340{left:222.575453pt;}
.x9_c00340{left:223.794253pt;}
.x1b_c00340{left:228.849853pt;}
.x28_c00340{left:233.232253pt;}
.x80_c00340{left:235.511453pt;}
.xa_c00340{left:243.312653pt;}
.x4f_c00340{left:251.804653pt;}
.x39_c00340{left:252.750653pt;}
.x6c_c00340{left:261.933453pt;}
.x40_c00340{left:262.985053pt;}
.x2f_c00340{left:272.141453pt;}
.xb_c00340{left:273.465853pt;}
.x65_c00340{left:279.053853pt;}
.x3a_c00340{left:281.909453pt;}
.x71_c00340{left:283.216253pt;}
.x29_c00340{left:284.135853pt;}
.x30_c00340{left:292.355053pt;}
.x1c_c00340{left:302.035053pt;}
.x84_c00340{left:303.566253pt;}
.x3b_c00340{left:311.877853pt;}
.x55_c00340{left:312.771053pt;}
.x85_c00340{left:314.025053pt;}
.x47_c00340{left:316.154653pt;}
.x6f_c00340{left:318.249053pt;}
.x31_c00340{left:321.967053pt;}
.x6a_c00340{left:322.921853pt;}
.xc_c00340{left:331.968253pt;}
.x86_c00340{left:333.402653pt;}
.x1d_c00340{left:340.543853pt;}
.x5a_c00340{left:341.630653pt;}
.x72_c00340{left:342.906653pt;}
.x50_c00340{left:344.987853pt;}
.xd_c00340{left:351.543853pt;}
.x7c_c00340{left:352.621853pt;}
.xe_c00340{left:360.185453pt;}
.x56_c00340{left:361.540653pt;}
.x1e_c00340{left:370.978653pt;}
.x5c_c00340{left:371.973053pt;}
.x41_c00340{left:379.510253pt;}
.x32_c00340{left:381.204253pt;}
.x57_c00340{left:391.297853pt;}
.x7d_c00340{left:394.716653pt;}
.xf_c00340{left:400.401453pt;}
.x5d_c00340{left:401.475053pt;}
.x6d_c00340{left:403.015053pt;}
.x42_c00340{left:409.945053pt;}
.x73_c00340{left:410.992253pt;}
.x43_c00340{left:420.346653pt;}
.x33_c00340{left:429.921053pt;}
.x51_c00340{left:430.977053pt;}
.x48_c00340{left:439.680253pt;}
.x10_c00340{left:440.784653pt;}
.x1f_c00340{left:448.255853pt;}
.x2a_c00340{left:450.222653pt;}
.x68_c00340{left:459.937853pt;}
.x3c_c00340{left:469.569453pt;}
.x5e_c00340{left:470.546253pt;}
.x20_c00340{left:478.761053pt;}
.x62_c00340{left:479.707053pt;}
.x34_c00340{left:488.920653pt;}
.x66_c00340{left:491.719053pt;}
.x52_c00340{left:498.451053pt;}
.x75_c00340{left:499.511453pt;}
.x35_c00340{left:508.535853pt;}
.x11_c00340{left:510.727053pt;}
.x3d_c00340{left:518.704253pt;}
.x5f_c00340{left:527.103853pt;}
.x5b_c00340{left:528.041053pt;}
.x12_c00340{left:529.149853pt;}
.x21_c00340{left:537.303053pt;}
.x53_c00340{left:538.240253pt;}
.x58_c00340{left:548.496653pt;}
.x22_c00340{left:557.846653pt;}
.x67_c00340{left:559.281053pt;}
.x2b_c00340{left:567.509053pt;}
.x13_c00340{left:577.356253pt;}
.x63_c00340{left:578.425453pt;}
.x49_c00340{left:587.036253pt;}
.x23_c00340{left:588.074653pt;}
.x4a_c00340{left:595.567853pt;}
.x2c_c00340{left:596.997853pt;}
.x3_c00340{left:598.234253pt;}
.x4_c00340{left:601.384653pt;}
.x14_c00340{left:606.290653pt;}
.x61_c00340{left:608.037453pt;}
.x6b_c00340{left:609.577453pt;}
.x74_c00340{left:613.555053pt;}
.x4b_c00340{left:617.198253pt;}
.x2d_c00340{left:626.706653pt;}
.x81_c00340{left:627.687853pt;}
.x36_c00340{left:635.885053pt;}
.x44_c00340{left:646.999453pt;}
.x54_c00340{left:655.891853pt;}
.x45_c00340{left:668.176653pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a403ba8c393d189af190d076.woff2')format("woff");}.ff1_c00341{font-family:ff1_c00341;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00341;src:url('chunks/assets/font_a5772ad478d28af38de8bdf1.woff2')format("woff");}.ff2_c00341{font-family:ff2_c00341;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00341;src:url('chunks/assets/font_d7a8bec137d6d37444efa2c9.woff2')format("woff");}.ff3_c00341{font-family:ff3_c00341;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00341;src:url('chunks/assets/font_6c680a28d89890e65570ce57.woff2')format("woff");}.ff4_c00341{font-family:ff4_c00341;line-height:0.666000;font-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_c00341{transform:matrix(0.059091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.059091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.059091,0.000000,0.000000,0.250000,0,0);}
.ma6_c00341{transform:matrix(0.066177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066177,0.000000,0.000000,0.250000,0,0);}
.maf_c00341{transform:matrix(0.070553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070553,0.000000,0.000000,0.250000,0,0);}
.mbc_c00341{transform:matrix(0.072728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072728,0.000000,0.000000,0.250000,0,0);}
.m9c_c00341{transform:matrix(0.089285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089285,0.000000,0.000000,0.250000,0,0);}
.mb3_c00341{transform:matrix(0.104546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104546,0.000000,0.000000,0.250000,0,0);}
.mf3_c00341{transform:matrix(0.108975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108975,0.000000,0.000000,0.250000,0,0);}
.mc5_c00341{transform:matrix(0.109173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109173,0.000000,0.000000,0.250000,0,0);}
.ma5_c00341{transform:matrix(0.110294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110294,0.000000,0.000000,0.250000,0,0);}
.mc7_c00341{transform:matrix(0.112245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112245,0.000000,0.000000,0.250000,0,0);}
.mb4_c00341{transform:matrix(0.122728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122728,0.000000,0.000000,0.250000,0,0);}
.mb5_c00341{transform:matrix(0.128788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128788,0.000000,0.000000,0.250000,0,0);}
.m86_c00341{transform:matrix(0.133130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133130,0.000000,0.000000,0.250000,0,0);}
.mbe_c00341{transform:matrix(0.136363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136363,0.000000,0.000000,0.250000,0,0);}
.mb6_c00341{transform:matrix(0.145455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145455,0.000000,0.000000,0.250000,0,0);}
.mb9_c00341{transform:matrix(0.154546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154546,0.000000,0.000000,0.250000,0,0);}
.m9a_c00341{transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);}
.m39_c00341{transform:matrix(0.175595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175595,0.000000,0.000000,0.250000,0,0);}
.mf5_c00341{transform:matrix(0.182693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182693,0.000000,0.000000,0.250000,0,0);}
.md6_c00341{transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);}
.me_c00341{transform:matrix(0.186149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186149,0.000000,0.000000,0.250000,0,0);}
.m3a_c00341{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.mf4_c00341{transform:matrix(0.189103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189103,0.000000,0.000000,0.250000,0,0);}
.m94_c00341{transform:matrix(0.189285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189285,0.000000,0.000000,0.250000,0,0);}
.m97_c00341{transform:matrix(0.190476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190476,0.000000,0.000000,0.250000,0,0);}
.md7_c00341{transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);}
.m9b_c00341{transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);}
.ma4_c00341{transform:matrix(0.198530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198530,0.000000,0.000000,0.250000,0,0);}
.m93_c00341{transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);}
.m9d_c00341{transform:matrix(0.201785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201785,0.000000,0.000000,0.250000,0,0);}
.md4_c00341{transform:matrix(0.202380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202380,0.000000,0.000000,0.250000,0,0);}
.md5_c00341{transform:matrix(0.203572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203572,0.000000,0.000000,0.250000,0,0);}
.m95_c00341{transform:matrix(0.209524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209524,0.000000,0.000000,0.250000,0,0);}
.mcb_c00341{transform:matrix(0.212997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212997,0.000000,0.000000,0.250000,0,0);}
.m96_c00341{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);}
.m2b_c00341{transform:matrix(0.216111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216111,0.000000,0.000000,0.250000,0,0);}
.ma7_c00341{transform:matrix(0.221638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221638,0.000000,0.000000,0.250000,0,0);}
.m84_c00341{transform:matrix(0.222081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222081,0.000000,0.000000,0.250000,0,0);}
.m76_c00341{transform:matrix(0.224613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224613,0.000000,0.000000,0.250000,0,0);}
.mfe_c00341{transform:matrix(0.228163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228163,0.000000,0.000000,0.250000,0,0);}
.m82_c00341{transform:matrix(0.232283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232283,0.000000,0.000000,0.250000,0,0);}
.m12_c00341{transform:matrix(0.235583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235583,0.000000,0.000000,0.250000,0,0);}
.m83_c00341{transform:matrix(0.238236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238236,0.000000,0.000000,0.250000,0,0);}
.m6f_c00341{transform:matrix(0.238451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238451,0.000000,0.000000,0.250000,0,0);}
.mf8_c00341{transform:matrix(0.246846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246846,0.000000,0.000000,0.250000,0,0);}
.m4_c00341{transform:matrix(0.248247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248247,0.000000,0.000000,0.250000,0,0);}
.m1_c00341{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00341{transform:matrix(0.250788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250788,0.000000,0.000000,0.250000,0,0);}
.mb0_c00341{transform:matrix(0.253724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253724,0.000000,0.000000,0.250000,0,0);}
.m19_c00341{transform:matrix(0.254139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254139,0.000000,0.000000,0.250000,0,0);}
.mce_c00341{transform:matrix(0.255077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255077,0.000000,0.000000,0.250000,0,0);}
.m90_c00341{transform:matrix(0.255266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255266,0.000000,0.000000,0.250000,0,0);}
.m36_c00341{transform:matrix(0.255346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255346,0.000000,0.000000,0.250000,0,0);}
.mfa_c00341{transform:matrix(0.255798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255798,0.000000,0.000000,0.250000,0,0);}
.md1_c00341{transform:matrix(0.257011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257011,0.000000,0.000000,0.250000,0,0);}
.m99_c00341{transform:matrix(0.257417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257417,0.000000,0.000000,0.250000,0,0);}
.m32_c00341{transform:matrix(0.260083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260083,0.000000,0.000000,0.250000,0,0);}
.m60_c00341{transform:matrix(0.260094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260094,0.000000,0.000000,0.250000,0,0);}
.mab_c00341{transform:matrix(0.261622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261622,0.000000,0.000000,0.250000,0,0);}
.mb2_c00341{transform:matrix(0.262004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262004,0.000000,0.000000,0.250000,0,0);}
.mba_c00341{transform:matrix(0.263923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263923,0.000000,0.000000,0.250000,0,0);}
.mae_c00341{transform:matrix(0.264058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264058,0.000000,0.000000,0.250000,0,0);}
.m26_c00341{transform:matrix(0.264760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264760,0.000000,0.000000,0.250000,0,0);}
.m50_c00341{transform:matrix(0.265976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265976,0.000000,0.000000,0.250000,0,0);}
.md2_c00341{transform:matrix(0.266585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266585,0.000000,0.000000,0.250000,0,0);}
.mbf_c00341{transform:matrix(0.267076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267076,0.000000,0.000000,0.250000,0,0);}
.m40_c00341{transform:matrix(0.267326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267326,0.000000,0.000000,0.250000,0,0);}
.mc9_c00341{transform:matrix(0.267928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267928,0.000000,0.000000,0.250000,0,0);}
.m8e_c00341{transform:matrix(0.268611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268611,0.000000,0.000000,0.250000,0,0);}
.mc4_c00341{transform:matrix(0.268956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268956,0.000000,0.000000,0.250000,0,0);}
.ma_c00341{transform:matrix(0.269115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269115,0.000000,0.000000,0.250000,0,0);}
.mdd_c00341{transform:matrix(0.269632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269632,0.000000,0.000000,0.250000,0,0);}
.mc1_c00341{transform:matrix(0.269715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269715,0.000000,0.000000,0.250000,0,0);}
.m92_c00341{transform:matrix(0.269972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269972,0.000000,0.000000,0.250000,0,0);}
.m5c_c00341{transform:matrix(0.270424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270424,0.000000,0.000000,0.250000,0,0);}
.m85_c00341{transform:matrix(0.270451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270451,0.000000,0.000000,0.250000,0,0);}
.m4e_c00341{transform:matrix(0.270840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270840,0.000000,0.000000,0.250000,0,0);}
.m1e_c00341{transform:matrix(0.271288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271288,0.000000,0.000000,0.250000,0,0);}
.m4b_c00341{transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);}
.mf6_c00341{transform:matrix(0.272100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272100,0.000000,0.000000,0.250000,0,0);}
.mdb_c00341{transform:matrix(0.272173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272173,0.000000,0.000000,0.250000,0,0);}
.m58_c00341{transform:matrix(0.272382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272382,0.000000,0.000000,0.250000,0,0);}
.m17_c00341{transform:matrix(0.273163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273163,0.000000,0.000000,0.250000,0,0);}
.m43_c00341{transform:matrix(0.273934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273934,0.000000,0.000000,0.250000,0,0);}
.m2e_c00341{transform:matrix(0.274532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274532,0.000000,0.000000,0.250000,0,0);}
.m44_c00341{transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);}
.m45_c00341{transform:matrix(0.276943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276943,0.000000,0.000000,0.250000,0,0);}
.m24_c00341{transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);}
.mf1_c00341{transform:matrix(0.277121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277121,0.000000,0.000000,0.250000,0,0);}
.mad_c00341{transform:matrix(0.277254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277254,0.000000,0.000000,0.250000,0,0);}
.m2a_c00341{transform:matrix(0.277906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277906,0.000000,0.000000,0.250000,0,0);}
.m73_c00341{transform:matrix(0.278072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278072,0.000000,0.000000,0.250000,0,0);}
.m8b_c00341{transform:matrix(0.279006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279006,0.000000,0.000000,0.250000,0,0);}
.ma0_c00341{transform:matrix(0.279348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279348,0.000000,0.000000,0.250000,0,0);}
.ma2_c00341{transform:matrix(0.279731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279731,0.000000,0.000000,0.250000,0,0);}
.m77_c00341{transform:matrix(0.280224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280224,0.000000,0.000000,0.250000,0,0);}
.mde_c00341{transform:matrix(0.280348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280348,0.000000,0.000000,0.250000,0,0);}
.m5f_c00341{transform:matrix(0.281647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281647,0.000000,0.000000,0.250000,0,0);}
.mdc_c00341{transform:matrix(0.282358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282358,0.000000,0.000000,0.250000,0,0);}
.mec_c00341{transform:matrix(0.283103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283103,0.000000,0.000000,0.250000,0,0);}
.m8f_c00341{transform:matrix(0.284183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284183,0.000000,0.000000,0.250000,0,0);}
.m55_c00341{transform:matrix(0.284512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284512,0.000000,0.000000,0.250000,0,0);}
.m37_c00341{transform:matrix(0.285877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285877,0.000000,0.000000,0.250000,0,0);}
.m41_c00341{transform:matrix(0.285882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285882,0.000000,0.000000,0.250000,0,0);}
.m13_c00341{transform:matrix(0.286027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286027,0.000000,0.000000,0.250000,0,0);}
.m49_c00341{transform:matrix(0.286421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286421,0.000000,0.000000,0.250000,0,0);}
.m79_c00341{transform:matrix(0.286494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286494,0.000000,0.000000,0.250000,0,0);}
.m6_c00341{transform:matrix(0.286564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286564,0.000000,0.000000,0.250000,0,0);}
.m62_c00341{transform:matrix(0.286586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286586,0.000000,0.000000,0.250000,0,0);}
.m70_c00341{transform:matrix(0.286588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286588,0.000000,0.000000,0.250000,0,0);}
.m53_c00341{transform:matrix(0.286833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286833,0.000000,0.000000,0.250000,0,0);}
.m21_c00341{transform:matrix(0.287078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287078,0.000000,0.000000,0.250000,0,0);}
.m3b_c00341{transform:matrix(0.288127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288127,0.000000,0.000000,0.250000,0,0);}
.mc_c00341{transform:matrix(0.289825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289825,0.000000,0.000000,0.250000,0,0);}
.m8a_c00341{transform:matrix(0.289971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289971,0.000000,0.000000,0.250000,0,0);}
.m72_c00341{transform:matrix(0.290210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290210,0.000000,0.000000,0.250000,0,0);}
.m3d_c00341{transform:matrix(0.290344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290344,0.000000,0.000000,0.250000,0,0);}
.m8c_c00341{transform:matrix(0.290387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290387,0.000000,0.000000,0.250000,0,0);}
.m4d_c00341{transform:matrix(0.290586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290586,0.000000,0.000000,0.250000,0,0);}
.m27_c00341{transform:matrix(0.290588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290588,0.000000,0.000000,0.250000,0,0);}
.mb_c00341{transform:matrix(0.290632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290632,0.000000,0.000000,0.250000,0,0);}
.m46_c00341{transform:matrix(0.290780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290780,0.000000,0.000000,0.250000,0,0);}
.mc0_c00341{transform:matrix(0.291107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291107,0.000000,0.000000,0.250000,0,0);}
.me3_c00341{transform:matrix(0.291195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291195,0.000000,0.000000,0.250000,0,0);}
.m38_c00341{transform:matrix(0.292622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292622,0.000000,0.000000,0.250000,0,0);}
.me8_c00341{transform:matrix(0.294811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294811,0.000000,0.000000,0.250000,0,0);}
.mf2_c00341{transform:matrix(0.294859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294859,0.000000,0.000000,0.250000,0,0);}
.mfc_c00341{transform:matrix(0.295351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295351,0.000000,0.000000,0.250000,0,0);}
.m51_c00341{transform:matrix(0.295448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295448,0.000000,0.000000,0.250000,0,0);}
.m10_c00341{transform:matrix(0.296014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296014,0.000000,0.000000,0.250000,0,0);}
.mdf_c00341{transform:matrix(0.296506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296506,0.000000,0.000000,0.250000,0,0);}
.m4a_c00341{transform:matrix(0.297157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297157,0.000000,0.000000,0.250000,0,0);}
.m68_c00341{transform:matrix(0.297383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297383,0.000000,0.000000,0.250000,0,0);}
.m7a_c00341{transform:matrix(0.297519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297519,0.000000,0.000000,0.250000,0,0);}
.mfd_c00341{transform:matrix(0.298818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298818,0.000000,0.000000,0.250000,0,0);}
.m78_c00341{transform:matrix(0.300103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300103,0.000000,0.000000,0.250000,0,0);}
.me4_c00341{transform:matrix(0.300612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300612,0.000000,0.000000,0.250000,0,0);}
.m66_c00341{transform:matrix(0.300809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300809,0.000000,0.000000,0.250000,0,0);}
.m48_c00341{transform:matrix(0.300814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300814,0.000000,0.000000,0.250000,0,0);}
.m54_c00341{transform:matrix(0.300918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300918,0.000000,0.000000,0.250000,0,0);}
.md8_c00341{transform:matrix(0.301630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301630,0.000000,0.000000,0.250000,0,0);}
.m7_c00341{transform:matrix(0.302103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302103,0.000000,0.000000,0.250000,0,0);}
.m64_c00341{transform:matrix(0.303060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303060,0.000000,0.000000,0.250000,0,0);}
.m3e_c00341{transform:matrix(0.303676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303676,0.000000,0.000000,0.250000,0,0);}
.mcc_c00341{transform:matrix(0.304062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304062,0.000000,0.000000,0.250000,0,0);}
.m6a_c00341{transform:matrix(0.306028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306028,0.000000,0.000000,0.250000,0,0);}
.m101_c00341{transform:matrix(0.306137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306137,0.000000,0.000000,0.250000,0,0);}
.m102_c00341{transform:matrix(0.306394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306394,0.000000,0.000000,0.250000,0,0);}
.m31_c00341{transform:matrix(0.306596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306596,0.000000,0.000000,0.250000,0,0);}
.mea_c00341{transform:matrix(0.308879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308879,0.000000,0.000000,0.250000,0,0);}
.m6d_c00341{transform:matrix(0.308935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308935,0.000000,0.000000,0.250000,0,0);}
.m67_c00341{transform:matrix(0.309254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309254,0.000000,0.000000,0.250000,0,0);}
.m5b_c00341{transform:matrix(0.309596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309596,0.000000,0.000000,0.250000,0,0);}
.mff_c00341{transform:matrix(0.309745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309745,0.000000,0.000000,0.250000,0,0);}
.mc3_c00341{transform:matrix(0.309993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309993,0.000000,0.000000,0.250000,0,0);}
.m23_c00341{transform:matrix(0.310827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310827,0.000000,0.000000,0.250000,0,0);}
.m56_c00341{transform:matrix(0.311233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311233,0.000000,0.000000,0.250000,0,0);}
.m9e_c00341{transform:matrix(0.311744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311744,0.000000,0.000000,0.250000,0,0);}
.me0_c00341{transform:matrix(0.311825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311825,0.000000,0.000000,0.250000,0,0);}
.m25_c00341{transform:matrix(0.311861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311861,0.000000,0.000000,0.250000,0,0);}
.m16_c00341{transform:matrix(0.312437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312437,0.000000,0.000000,0.250000,0,0);}
.mac_c00341{transform:matrix(0.312631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312631,0.000000,0.000000,0.250000,0,0);}
.m7b_c00341{transform:matrix(0.312787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312787,0.000000,0.000000,0.250000,0,0);}
.me2_c00341{transform:matrix(0.313816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313816,0.000000,0.000000,0.250000,0,0);}
.m81_c00341{transform:matrix(0.313832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313832,0.000000,0.000000,0.250000,0,0);}
.maa_c00341{transform:matrix(0.313860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313860,0.000000,0.000000,0.250000,0,0);}
.m1c_c00341{transform:matrix(0.314290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314290,0.000000,0.000000,0.250000,0,0);}
.md0_c00341{transform:matrix(0.314999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314999,0.000000,0.000000,0.250000,0,0);}
.m8d_c00341{transform:matrix(0.315045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315045,0.000000,0.000000,0.250000,0,0);}
.m98_c00341{transform:matrix(0.315174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315174,0.000000,0.000000,0.250000,0,0);}
.m1f_c00341{transform:matrix(0.315306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315306,0.000000,0.000000,0.250000,0,0);}
.m65_c00341{transform:matrix(0.315971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315971,0.000000,0.000000,0.250000,0,0);}
.m8_c00341{transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);}
.m47_c00341{transform:matrix(0.316429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316429,0.000000,0.000000,0.250000,0,0);}
.m14_c00341{transform:matrix(0.316628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316628,0.000000,0.000000,0.250000,0,0);}
.mbb_c00341{transform:matrix(0.317333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317333,0.000000,0.000000,0.250000,0,0);}
.mca_c00341{transform:matrix(0.317715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317715,0.000000,0.000000,0.250000,0,0);}
.m22_c00341{transform:matrix(0.318221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318221,0.000000,0.000000,0.250000,0,0);}
.m1b_c00341{transform:matrix(0.318558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318558,0.000000,0.000000,0.250000,0,0);}
.mc8_c00341{transform:matrix(0.318782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318782,0.000000,0.000000,0.250000,0,0);}
.mef_c00341{transform:matrix(0.318963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318963,0.000000,0.000000,0.250000,0,0);}
.mee_c00341{transform:matrix(0.319015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319015,0.000000,0.000000,0.250000,0,0);}
.m2f_c00341{transform:matrix(0.319267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319267,0.000000,0.000000,0.250000,0,0);}
.m34_c00341{transform:matrix(0.319627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319627,0.000000,0.000000,0.250000,0,0);}
.m61_c00341{transform:matrix(0.319965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319965,0.000000,0.000000,0.250000,0,0);}
.m1a_c00341{transform:matrix(0.320228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320228,0.000000,0.000000,0.250000,0,0);}
.m2d_c00341{transform:matrix(0.320403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320403,0.000000,0.000000,0.250000,0,0);}
.mf7_c00341{transform:matrix(0.320614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320614,0.000000,0.000000,0.250000,0,0);}
.ma3_c00341{transform:matrix(0.320776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320776,0.000000,0.000000,0.250000,0,0);}
.m4c_c00341{transform:matrix(0.321002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321002,0.000000,0.000000,0.250000,0,0);}
.m6c_c00341{transform:matrix(0.321796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321796,0.000000,0.000000,0.250000,0,0);}
.me1_c00341{transform:matrix(0.321797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321797,0.000000,0.000000,0.250000,0,0);}
.m15_c00341{transform:matrix(0.322306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322306,0.000000,0.000000,0.250000,0,0);}
.md_c00341{transform:matrix(0.323208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323208,0.000000,0.000000,0.250000,0,0);}
.m3f_c00341{transform:matrix(0.323382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323382,0.000000,0.000000,0.250000,0,0);}
.m3c_c00341{transform:matrix(0.323402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323402,0.000000,0.000000,0.250000,0,0);}
.m20_c00341{transform:matrix(0.323734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323734,0.000000,0.000000,0.250000,0,0);}
.mf9_c00341{transform:matrix(0.324705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324705,0.000000,0.000000,0.250000,0,0);}
.mf0_c00341{transform:matrix(0.325023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325023,0.000000,0.000000,0.250000,0,0);}
.m18_c00341{transform:matrix(0.327109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327109,0.000000,0.000000,0.250000,0,0);}
.m52_c00341{transform:matrix(0.327286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327286,0.000000,0.000000,0.250000,0,0);}
.mb8_c00341{transform:matrix(0.327859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327859,0.000000,0.000000,0.250000,0,0);}
.mcf_c00341{transform:matrix(0.329369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329369,0.000000,0.000000,0.250000,0,0);}
.m5a_c00341{transform:matrix(0.329701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329701,0.000000,0.000000,0.250000,0,0);}
.m7e_c00341{transform:matrix(0.330556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330556,0.000000,0.000000,0.250000,0,0);}
.m89_c00341{transform:matrix(0.330616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330616,0.000000,0.000000,0.250000,0,0);}
.m74_c00341{transform:matrix(0.331274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331274,0.000000,0.000000,0.250000,0,0);}
.mf_c00341{transform:matrix(0.331647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331647,0.000000,0.000000,0.250000,0,0);}
.m6b_c00341{transform:matrix(0.331872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331872,0.000000,0.000000,0.250000,0,0);}
.me5_c00341{transform:matrix(0.332191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332191,0.000000,0.000000,0.250000,0,0);}
.m87_c00341{transform:matrix(0.332381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332381,0.000000,0.000000,0.250000,0,0);}
.m11_c00341{transform:matrix(0.332838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332838,0.000000,0.000000,0.250000,0,0);}
.m100_c00341{transform:matrix(0.333436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333436,0.000000,0.000000,0.250000,0,0);}
.m5e_c00341{transform:matrix(0.334669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334669,0.000000,0.000000,0.250000,0,0);}
.m42_c00341{transform:matrix(0.334791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334791,0.000000,0.000000,0.250000,0,0);}
.m29_c00341{transform:matrix(0.334923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334923,0.000000,0.000000,0.250000,0,0);}
.m9_c00341{transform:matrix(0.335776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335776,0.000000,0.000000,0.250000,0,0);}
.m28_c00341{transform:matrix(0.337388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337388,0.000000,0.000000,0.250000,0,0);}
.m7d_c00341{transform:matrix(0.337695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337695,0.000000,0.000000,0.250000,0,0);}
.m75_c00341{transform:matrix(0.338983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338983,0.000000,0.000000,0.250000,0,0);}
.m4f_c00341{transform:matrix(0.339698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339698,0.000000,0.000000,0.250000,0,0);}
.me6_c00341{transform:matrix(0.339977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339977,0.000000,0.000000,0.250000,0,0);}
.ma8_c00341{transform:matrix(0.340015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340015,0.000000,0.000000,0.250000,0,0);}
.mc6_c00341{transform:matrix(0.340813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340813,0.000000,0.000000,0.250000,0,0);}
.m91_c00341{transform:matrix(0.341077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341077,0.000000,0.000000,0.250000,0,0);}
.md3_c00341{transform:matrix(0.341952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341952,0.000000,0.000000,0.250000,0,0);}
.m63_c00341{transform:matrix(0.343407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343407,0.000000,0.000000,0.250000,0,0);}
.m88_c00341{transform:matrix(0.343636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343636,0.000000,0.000000,0.250000,0,0);}
.md9_c00341{transform:matrix(0.345656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345656,0.000000,0.000000,0.250000,0,0);}
.mfb_c00341{transform:matrix(0.347102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347102,0.000000,0.000000,0.250000,0,0);}
.me7_c00341{transform:matrix(0.347717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347717,0.000000,0.000000,0.250000,0,0);}
.m71_c00341{transform:matrix(0.349334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349334,0.000000,0.000000,0.250000,0,0);}
.m9f_c00341{transform:matrix(0.349358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349358,0.000000,0.000000,0.250000,0,0);}
.m5_c00341{transform:matrix(0.349545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349545,0.000000,0.000000,0.250000,0,0);}
.m7f_c00341{transform:matrix(0.349995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349995,0.000000,0.000000,0.250000,0,0);}
.meb_c00341{transform:matrix(0.350040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350040,0.000000,0.000000,0.250000,0,0);}
.mb1_c00341{transform:matrix(0.351269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351269,0.000000,0.000000,0.250000,0,0);}
.mb7_c00341{transform:matrix(0.352638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352638,0.000000,0.000000,0.250000,0,0);}
.mda_c00341{transform:matrix(0.354006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354006,0.000000,0.000000,0.250000,0,0);}
.med_c00341{transform:matrix(0.354403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354403,0.000000,0.000000,0.250000,0,0);}
.m30_c00341{transform:matrix(0.357856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357856,0.000000,0.000000,0.250000,0,0);}
.me9_c00341{transform:matrix(0.358032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358032,0.000000,0.000000,0.250000,0,0);}
.mcd_c00341{transform:matrix(0.358477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358477,0.000000,0.000000,0.250000,0,0);}
.m33_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);}
.m35_c00341{transform:matrix(0.363028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363028,0.000000,0.000000,0.250000,0,0);}
.m69_c00341{transform:matrix(0.366428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366428,0.000000,0.000000,0.250000,0,0);}
.m6e_c00341{transform:matrix(0.376592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376592,0.000000,0.000000,0.250000,0,0);}
.mc2_c00341{transform:matrix(0.378849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378849,0.000000,0.000000,0.250000,0,0);}
.m59_c00341{transform:matrix(0.383698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383698,0.000000,0.000000,0.250000,0,0);}
.ma9_c00341{transform:matrix(0.383843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383843,0.000000,0.000000,0.250000,0,0);}
.m7c_c00341{transform:matrix(0.397908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397908,0.000000,0.000000,0.250000,0,0);}
.m1d_c00341{transform:matrix(0.420716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420716,0.000000,0.000000,0.250000,0,0);}
.m2c_c00341{transform:matrix(0.422264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422264,0.000000,0.000000,0.250000,0,0);}
.m80_c00341{transform:matrix(0.424998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424998,0.000000,0.000000,0.250000,0,0);}
.ma1_c00341{transform:matrix(0.427657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427657,0.000000,0.000000,0.250000,0,0);}
.m57_c00341{transform:matrix(0.436298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436298,0.000000,0.000000,0.250000,0,0);}
.m2_c00341{transform:matrix(0.511628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511628,0.000000,0.000000,0.250000,0,0);}
.m3_c00341{transform:matrix(0.570953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570953,0.000000,0.000000,0.250000,0,0);}
.m0_c00341{transform:matrix(0.751446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.751446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.751446,0.000000,0.000000,0.250000,0,0);}
.v0_c00341{vertical-align:0.000000px;}
.ls6_c00341{letter-spacing:-2.993767px;}
.ls8_c00341{letter-spacing:-2.661127px;}
.ls12_c00341{letter-spacing:-1.269738px;}
.lsa_c00341{letter-spacing:-1.087260px;}
.ls4_c00341{letter-spacing:0.000000px;}
.lsd_c00341{letter-spacing:0.001445px;}
.ls0_c00341{letter-spacing:0.266113px;}
.ls2_c00341{letter-spacing:0.326938px;}
.ls1_c00341{letter-spacing:1.353373px;}
.ls14_c00341{letter-spacing:2.417824px;}
.lsb_c00341{letter-spacing:2.851200px;}
.ls15_c00341{letter-spacing:3.286810px;}
.ls3_c00341{letter-spacing:3.564000px;}
.ls7_c00341{letter-spacing:3.801610px;}
.ls5_c00341{letter-spacing:4.593610px;}
.lsc_c00341{letter-spacing:14.256198px;}
.lsf_c00341{letter-spacing:48.470598px;}
.lse_c00341{letter-spacing:49.896198px;}
.ls9_c00341{letter-spacing:51.321798px;}
.ls13_c00341{letter-spacing:55.598598px;}
.ls11_c00341{letter-spacing:69.854598px;}
.ls10_c00341{letter-spacing:78.408198px;}
.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;}
}
.wsa_c00341{word-spacing:-21.425873px;}
.ws6_c00341{word-spacing:-20.361423px;}
.ws8_c00341{word-spacing:-19.334988px;}
.ws1_c00341{word-spacing:-19.008050px;}
.ws3_c00341{word-spacing:-17.920789px;}
.ws0_c00341{word-spacing:-3.065040px;}
.wsc_c00341{word-spacing:0.000000px;}
.wsb_c00341{word-spacing:0.761799px;}
.ws9_c00341{word-spacing:2.052749px;}
.ws4_c00341{word-spacing:2.052947px;}
.ws2_c00341{word-spacing:3.421325px;}
.ws7_c00341{word-spacing:3.421523px;}
.ws5_c00341{word-spacing:6.311739px;}
._8_c00341{margin-left:-9.807490px;}
._10_c00341{margin-left:-7.900733px;}
._1c_c00341{width:2.614894px;}
._2_c00341{width:4.865564px;}
._7_c00341{width:6.919011px;}
._5_c00341{width:8.973261px;}
._13_c00341{width:10.339461px;}
._0_c00341{width:11.903760px;}
._16_c00341{width:13.001582px;}
._a_c00341{width:14.674286px;}
._1_c00341{width:16.180560px;}
._17_c00341{width:17.943673px;}
._c_c00341{width:20.832713px;}
._b_c00341{width:23.223090px;}
._f_c00341{width:24.329185px;}
._15_c00341{width:25.775189px;}
._11_c00341{width:27.143449px;}
._9_c00341{width:28.694628px;}
._4_c00341{width:31.400672px;}
._18_c00341{width:32.803241px;}
._19_c00341{width:34.138205px;}
._14_c00341{width:35.160406px;}
._1a_c00341{width:36.723552px;}
._1b_c00341{width:37.940039px;}
._e_c00341{width:39.688972px;}
._12_c00341{width:40.847301px;}
._d_c00341{width:43.243101px;}
._6_c00341{width:44.858369px;}
._3_c00341{width:48.812439px;}
.fc0_c00341{color:transparent;}
.fs9_c00341{font-size:14.256198px;}
.fsa_c00341{font-size:14.454198px;}
.fs2_c00341{font-size:22.176000px;}
.fs6_c00341{font-size:24.552000px;}
.fs3_c00341{font-size:27.720000px;}
.fs13_c00341{font-size:43.758000px;}
.fsc_c00341{font-size:48.470598px;}
.fsb_c00341{font-size:49.896198px;}
.fs7_c00341{font-size:51.321798px;}
.fsf_c00341{font-size:55.598598px;}
.fs8_c00341{font-size:57.024000px;}
.fs12_c00341{font-size:65.736198px;}
.fse_c00341{font-size:69.854598px;}
.fs11_c00341{font-size:70.884000px;}
.fs0_c00341{font-size:71.280000px;}
.fs10_c00341{font-size:72.864000px;}
.fs5_c00341{font-size:76.032198px;}
.fsd_c00341{font-size:78.408198px;}
.fs4_c00341{font-size:85.536198px;}
.fs1_c00341{font-size:91.872198px;}
.y0_c00341{bottom:0.000000px;}
.y1_c00341{bottom:76.500000px;}
.y25_c00341{bottom:80.453385px;}
.y24_c00341{bottom:139.264335px;}
.y22_c00341{bottom:169.548732px;}
.y23_c00341{bottom:169.558335px;}
.y21_c00341{bottom:205.911135px;}
.y20_c00341{bottom:239.056335px;}
.y1f_c00341{bottom:271.840185px;}
.y1e_c00341{bottom:305.341785px;}
.y1d_c00341{bottom:337.066335px;}
.y1c_c00341{bottom:369.137385px;}
.y1b_c00341{bottom:402.287535px;}
.y1a_c00341{bottom:434.358585px;}
.y19_c00341{bottom:498.159135px;}
.y18_c00341{bottom:530.591535px;}
.y17_c00341{bottom:550.544985px;}
.y16_c00341{bottom:563.380335px;}
.y4_c00341{bottom:576.567135px;}
.y15_c00341{bottom:592.961535px;}
.y14_c00341{bottom:596.876985px;}
.y13_c00341{bottom:630.027135px;}
.y12_c00341{bottom:662.459535px;}
.y11_c00341{bottom:694.886985px;}
.y10_c00341{bottom:694.891935px;}
.y3_c00341{bottom:719.834985px;}
.yf_c00341{bottom:727.680735px;}
.ye_c00341{bottom:759.751785px;}
.yd_c00341{bottom:776.502585px;}
.yc_c00341{bottom:792.189135px;}
.yb_c00341{bottom:825.690735px;}
.ya_c00341{bottom:840.659535px;}
.y9_c00341{bottom:858.835935px;}
.y8_c00341{bottom:891.268335px;}
.y7_c00341{bottom:924.057135px;}
.y6_c00341{bottom:1065.547935px;}
.y5_c00341{bottom:1074.457935px;}
.y2_c00341{bottom:1099.400985px;}
.hb_c00341{height:9.494628px;}
.hc_c00341{height:14.186005px;}
.h4_c00341{height:23.128875px;}
.h8_c00341{height:24.096445px;}
.h5_c00341{height:28.911094px;}
.he_c00341{height:32.281418px;}
.hd_c00341{height:33.230868px;}
.h9_c00341{height:34.180317px;}
.h11_c00341{height:37.028666px;}
.h14_c00341{height:45.638227px;}
.h10_c00341{height:46.523162px;}
.hf_c00341{height:52.219860px;}
.ha_c00341{height:55.965938px;}
.h13_c00341{height:64.516483px;}
.h12_c00341{height:69.568770px;}
.h2_c00341{height:69.957422px;}
.h7_c00341{height:74.621444px;}
.h6_c00341{height:83.949101px;}
.h3_c00341{height:95.640394px;}
.h1_c00341{height:1110.000000px;}
.h0_c00341{height:1263.000000px;}
.w1_c00341{width:775.500000px;}
.w0_c00341{width:892.500000px;}
.x2_c00341{left:-4.230615px;}
.x0_c00341{left:0.000000px;}
.x3_c00341{left:33.275535px;}
.x4_c00341{left:51.580635px;}
.x8_c00341{left:57.258285px;}
.x1_c00341{left:58.500000px;}
.x7_c00341{left:61.916235px;}
.x5_c00341{left:91.012335px;}
.x49_c00341{left:99.417435px;}
.xc_c00341{left:100.526235px;}
.x68_c00341{left:102.050835px;}
.x72_c00341{left:103.139835px;}
.x62_c00341{left:104.773335px;}
.x1e_c00341{left:111.302385px;}
.x8f_c00341{left:114.534735px;}
.x29_c00341{left:121.113285px;}
.x55_c00341{left:122.900235px;}
.x4a_c00341{left:133.443735px;}
.x76_c00341{left:134.705985px;}
.x6_c00341{left:138.601635px;}
.x5e_c00341{left:143.967435px;}
.xd_c00341{left:145.081185px;}
.x6f_c00341{left:154.268385px;}
.x5f_c00341{left:155.337585px;}
.x3f_c00341{left:164.638635px;}
.x2a_c00341{left:166.356285px;}
.x63_c00341{left:167.806635px;}
.x4b_c00341{left:176.721585px;}
.xe_c00341{left:177.954135px;}
.x8a_c00341{left:179.696535px;}
.x40_c00341{left:187.963035px;}
.x51_c00341{left:199.382685px;}
.x37_c00341{left:200.729085px;}
.x5a_c00341{left:209.510385px;}
.x1f_c00341{left:210.787485px;}
.x41_c00341{left:221.776485px;}
.x8b_c00341{left:223.098135px;}
.x64_c00341{left:231.602235px;}
.x20_c00341{left:232.730835px;}
.x6a_c00341{left:233.785185px;}
.x77_c00341{left:236.413635px;}
.x90_c00341{left:239.675685px;}
.xf_c00341{left:243.784185px;}
.x6b_c00341{left:244.838535px;}
.x83_c00341{left:254.411835px;}
.x10_c00341{left:255.530535px;}
.x6c_c00341{left:266.217585px;}
.x8c_c00341{left:268.355985px;}
.x7e_c00341{left:275.983935px;}
.x4c_c00341{left:277.023435px;}
.x91_c00341{left:278.161935px;}
.x7f_c00341{left:283.374285px;}
.x21_c00341{left:288.393585px;}
.x84_c00341{left:294.912735px;}
.x2b_c00341{left:298.768785px;}
.x60_c00341{left:300.199335px;}
.x56_c00341{left:301.981335px;}
.x4d_c00341{left:309.822135px;}
.x22_c00341{left:311.213085px;}
.x57_c00341{left:320.029035px;}
.x11_c00341{left:321.291285px;}
.x12_c00341{left:332.641635px;}
.x6d_c00341{left:340.343835px;}
.x70_c00341{left:342.482235px;}
.x2c_c00341{left:344.031585px;}
.x80_c00341{left:348.194535px;}
.x42_c00341{left:352.817835px;}
.x13_c00341{left:354.758235px;}
.x5c_c00341{left:357.154035px;}
.x4e_c00341{left:366.088785px;}
.x14_c00341{left:376.855035px;}
.x38_c00341{left:388.066785px;}
.x2d_c00341{left:399.204285px;}
.x39_c00341{left:410.317035px;}
.x52_c00341{left:419.464635px;}
.x15_c00341{left:421.414935px;}
.x58_c00341{left:430.513035px;}
.x16_c00341{left:432.067335px;}
.x65_c00341{left:434.304735px;}
.x78_c00341{left:440.858535px;}
.x3a_c00341{left:442.942485px;}
.xb_c00341{left:443.977035px;}
.x17_c00341{left:454.233435px;}
.x79_c00341{left:458.435985px;}
.x23_c00341{left:465.237285px;}
.x43_c00341{left:467.083635px;}
.x71_c00341{left:471.508935px;}
.x18_c00341{left:476.072835px;}
.x6e_c00341{left:477.330135px;}
.x24_c00341{left:487.279635px;}
.x66_c00341{left:488.403285px;}
.x73_c00341{left:492.061335px;}
.x88_c00341{left:497.828085px;}
.x3b_c00341{left:499.105185px;}
.x5b_c00341{left:508.564635px;}
.x61_c00341{left:510.074385px;}
.x8d_c00341{left:511.772235px;}
.x48_c00341{left:513.118635px;}
.x3c_c00341{left:519.573435px;}
.x44_c00341{left:521.008935px;}
.x7a_c00341{left:523.236435px;}
.x2e_c00341{left:531.889035px;}
.x19_c00341{left:532.953285px;}
.x74_c00341{left:534.641235px;}
.x53_c00341{left:542.452335px;}
.x69_c00341{left:543.858135px;}
.x7b_c00341{left:546.709335px;}
.x3d_c00341{left:552.045435px;}
.x81_c00341{left:553.273035px;}
.x25_c00341{left:554.540235px;}
.x2f_c00341{left:564.192735px;}
.x59_c00341{left:575.701485px;}
.x1a_c00341{left:576.726135px;}
.x26_c00341{left:586.933035px;}
.x89_c00341{left:596.239035px;}
.x30_c00341{left:598.456635px;}
.x75_c00341{left:600.674235px;}
.x1b_c00341{left:609.242685px;}
.x45_c00341{left:611.257335px;}
.x54_c00341{left:620.286135px;}
.x31_c00341{left:630.948435px;}
.x7c_c00341{left:631.997835px;}
.x8e_c00341{left:633.789735px;}
.x27_c00341{left:642.016635px;}
.x32_c00341{left:653.079885px;}
.x86_c00341{left:654.109485px;}
.x82_c00341{left:663.563985px;}
.x4f_c00341{left:664.756935px;}
.x9_c00341{left:675.463785px;}
.x87_c00341{left:684.626235px;}
.x1c_c00341{left:686.848785px;}
.xa_c00341{left:687.937785px;}
.x50_c00341{left:696.907185px;}
.x7d_c00341{left:698.303085px;}
.x33_c00341{left:705.312285px;}
.x36_c00341{left:706.871535px;}
.x5d_c00341{left:707.950635px;}
.x1d_c00341{left:708.965385px;}
.x46_c00341{left:710.881035px;}
.x67_c00341{left:713.148135px;}
.x34_c00341{left:718.088235px;}
.x28_c00341{left:719.568285px;}
.x85_c00341{left:728.819835px;}
.x35_c00341{left:730.324635px;}
.x47_c00341{left:731.448285px;}
.x3e_c00341{left:741.660135px;}
@media print{
.v0_c00341{vertical-align:0.000000pt;}
.ls6_c00341{letter-spacing:-2.661126pt;}
.ls8_c00341{letter-spacing:-2.365446pt;}
.ls12_c00341{letter-spacing:-1.128656pt;}
.lsa_c00341{letter-spacing:-0.966454pt;}
.ls4_c00341{letter-spacing:0.000000pt;}
.lsd_c00341{letter-spacing:0.001285pt;}
.ls0_c00341{letter-spacing:0.236545pt;}
.ls2_c00341{letter-spacing:0.290612pt;}
.ls1_c00341{letter-spacing:1.202998pt;}
.ls14_c00341{letter-spacing:2.149177pt;}
.lsb_c00341{letter-spacing:2.534400pt;}
.ls15_c00341{letter-spacing:2.921609pt;}
.ls3_c00341{letter-spacing:3.168000pt;}
.ls7_c00341{letter-spacing:3.379209pt;}
.ls5_c00341{letter-spacing:4.083209pt;}
.lsc_c00341{letter-spacing:12.672176pt;}
.lsf_c00341{letter-spacing:43.084976pt;}
.lse_c00341{letter-spacing:44.352176pt;}
.ls9_c00341{letter-spacing:45.619376pt;}
.ls13_c00341{letter-spacing:49.420976pt;}
.ls11_c00341{letter-spacing:62.092976pt;}
.ls10_c00341{letter-spacing:69.696176pt;}
.wsa_c00341{word-spacing:-19.045221pt;}
.ws6_c00341{word-spacing:-18.099042pt;}
.ws8_c00341{word-spacing:-17.186656pt;}
.ws1_c00341{word-spacing:-16.896044pt;}
.ws3_c00341{word-spacing:-15.929590pt;}
.ws0_c00341{word-spacing:-2.724480pt;}
.wsc_c00341{word-spacing:0.000000pt;}
.wsb_c00341{word-spacing:0.677155pt;}
.ws9_c00341{word-spacing:1.824665pt;}
.ws4_c00341{word-spacing:1.824841pt;}
.ws2_c00341{word-spacing:3.041177pt;}
.ws7_c00341{word-spacing:3.041353pt;}
.ws5_c00341{word-spacing:5.610435pt;}
._8_c00341{margin-left:-8.717769pt;}
._10_c00341{margin-left:-7.022874pt;}
._1c_c00341{width:2.324350pt;}
._2_c00341{width:4.324946pt;}
._7_c00341{width:6.150232pt;}
._5_c00341{width:7.976232pt;}
._13_c00341{width:9.190632pt;}
._0_c00341{width:10.581120pt;}
._16_c00341{width:11.556962pt;}
._a_c00341{width:13.043810pt;}
._1_c00341{width:14.382720pt;}
._17_c00341{width:15.949932pt;}
._c_c00341{width:18.517967pt;}
._b_c00341{width:20.642747pt;}
._f_c00341{width:21.625943pt;}
._15_c00341{width:22.911279pt;}
._11_c00341{width:24.127510pt;}
._9_c00341{width:25.506336pt;}
._4_c00341{width:27.911708pt;}
._18_c00341{width:29.158436pt;}
._19_c00341{width:30.345072pt;}
._14_c00341{width:31.253694pt;}
._1a_c00341{width:32.643157pt;}
._1b_c00341{width:33.724480pt;}
._e_c00341{width:35.279086pt;}
._12_c00341{width:36.308712pt;}
._d_c00341{width:38.438312pt;}
._6_c00341{width:39.874105pt;}
._3_c00341{width:43.388835pt;}
.fs9_c00341{font-size:12.672176pt;}
.fsa_c00341{font-size:12.848176pt;}
.fs2_c00341{font-size:19.712000pt;}
.fs6_c00341{font-size:21.824000pt;}
.fs3_c00341{font-size:24.640000pt;}
.fs13_c00341{font-size:38.896000pt;}
.fsc_c00341{font-size:43.084976pt;}
.fsb_c00341{font-size:44.352176pt;}
.fs7_c00341{font-size:45.619376pt;}
.fsf_c00341{font-size:49.420976pt;}
.fs8_c00341{font-size:50.688000pt;}
.fs12_c00341{font-size:58.432176pt;}
.fse_c00341{font-size:62.092976pt;}
.fs11_c00341{font-size:63.008000pt;}
.fs0_c00341{font-size:63.360000pt;}
.fs10_c00341{font-size:64.768000pt;}
.fs5_c00341{font-size:67.584176pt;}
.fsd_c00341{font-size:69.696176pt;}
.fs4_c00341{font-size:76.032176pt;}
.fs1_c00341{font-size:81.664176pt;}
.y0_c00341{bottom:0.000000pt;}
.y1_c00341{bottom:68.000000pt;}
.y25_c00341{bottom:71.514120pt;}
.y24_c00341{bottom:123.790520pt;}
.y22_c00341{bottom:150.709984pt;}
.y23_c00341{bottom:150.718520pt;}
.y21_c00341{bottom:183.032120pt;}
.y20_c00341{bottom:212.494520pt;}
.y1f_c00341{bottom:241.635720pt;}
.y1e_c00341{bottom:271.414920pt;}
.y1d_c00341{bottom:299.614520pt;}
.y1c_c00341{bottom:328.122120pt;}
.y1b_c00341{bottom:357.588920pt;}
.y1a_c00341{bottom:386.096520pt;}
.y19_c00341{bottom:442.808120pt;}
.y18_c00341{bottom:471.636920pt;}
.y17_c00341{bottom:489.373320pt;}
.y16_c00341{bottom:500.782520pt;}
.y4_c00341{bottom:512.504120pt;}
.y15_c00341{bottom:527.076920pt;}
.y14_c00341{bottom:530.557320pt;}
.y13_c00341{bottom:560.024120pt;}
.y12_c00341{bottom:588.852920pt;}
.y11_c00341{bottom:617.677320pt;}
.y10_c00341{bottom:617.681720pt;}
.y3_c00341{bottom:639.853320pt;}
.yf_c00341{bottom:646.827320pt;}
.ye_c00341{bottom:675.334920pt;}
.yd_c00341{bottom:690.224520pt;}
.yc_c00341{bottom:704.168120pt;}
.yb_c00341{bottom:733.947320pt;}
.ya_c00341{bottom:747.252920pt;}
.y9_c00341{bottom:763.409720pt;}
.y8_c00341{bottom:792.238520pt;}
.y7_c00341{bottom:821.384120pt;}
.y6_c00341{bottom:947.153720pt;}
.y5_c00341{bottom:955.073720pt;}
.y2_c00341{bottom:977.245320pt;}
.hb_c00341{height:8.439669pt;}
.hc_c00341{height:12.609782pt;}
.h4_c00341{height:20.559000pt;}
.h8_c00341{height:21.419063pt;}
.h5_c00341{height:25.698750pt;}
.he_c00341{height:28.694594pt;}
.hd_c00341{height:29.538549pt;}
.h9_c00341{height:30.382504pt;}
.h11_c00341{height:32.914370pt;}
.h14_c00341{height:40.567313pt;}
.h10_c00341{height:41.353922pt;}
.hf_c00341{height:46.417653pt;}
.ha_c00341{height:49.747500pt;}
.h13_c00341{height:57.347985pt;}
.h12_c00341{height:61.838906pt;}
.h2_c00341{height:62.184375pt;}
.h7_c00341{height:66.330173pt;}
.h6_c00341{height:74.621423pt;}
.h3_c00341{height:85.013683pt;}
.h1_c00341{height:986.666667pt;}
.h0_c00341{height:1122.666667pt;}
.w1_c00341{width:689.333333pt;}
.w0_c00341{width:793.333333pt;}
.x2_c00341{left:-3.760547pt;}
.x0_c00341{left:0.000000pt;}
.x3_c00341{left:29.578253pt;}
.x4_c00341{left:45.849453pt;}
.x8_c00341{left:50.896253pt;}
.x1_c00341{left:52.000000pt;}
.x7_c00341{left:55.036653pt;}
.x5_c00341{left:80.899853pt;}
.x49_c00341{left:88.371053pt;}
.xc_c00341{left:89.356653pt;}
.x68_c00341{left:90.711853pt;}
.x72_c00341{left:91.679853pt;}
.x62_c00341{left:93.131853pt;}
.x1e_c00341{left:98.935453pt;}
.x8f_c00341{left:101.808653pt;}
.x29_c00341{left:107.656253pt;}
.x55_c00341{left:109.244653pt;}
.x4a_c00341{left:118.616653pt;}
.x76_c00341{left:119.738653pt;}
.x6_c00341{left:123.201453pt;}
.x5e_c00341{left:127.971053pt;}
.xd_c00341{left:128.961053pt;}
.x6f_c00341{left:137.127453pt;}
.x5f_c00341{left:138.077853pt;}
.x3f_c00341{left:146.345453pt;}
.x2a_c00341{left:147.872253pt;}
.x63_c00341{left:149.161453pt;}
.x4b_c00341{left:157.085853pt;}
.xe_c00341{left:158.181453pt;}
.x8a_c00341{left:159.730253pt;}
.x40_c00341{left:167.078253pt;}
.x51_c00341{left:177.229053pt;}
.x37_c00341{left:178.425853pt;}
.x5a_c00341{left:186.231453pt;}
.x1f_c00341{left:187.366653pt;}
.x41_c00341{left:197.134653pt;}
.x8b_c00341{left:198.309453pt;}
.x64_c00341{left:205.868653pt;}
.x20_c00341{left:206.871853pt;}
.x6a_c00341{left:207.809053pt;}
.x77_c00341{left:210.145453pt;}
.x90_c00341{left:213.045053pt;}
.xf_c00341{left:216.697053pt;}
.x6b_c00341{left:217.634253pt;}
.x83_c00341{left:226.143853pt;}
.x10_c00341{left:227.138253pt;}
.x6c_c00341{left:236.637853pt;}
.x8c_c00341{left:238.538653pt;}
.x7e_c00341{left:245.319053pt;}
.x4c_c00341{left:246.243053pt;}
.x91_c00341{left:247.255053pt;}
.x7f_c00341{left:251.888253pt;}
.x21_c00341{left:256.349853pt;}
.x84_c00341{left:262.144653pt;}
.x2b_c00341{left:265.572253pt;}
.x60_c00341{left:266.843853pt;}
.x56_c00341{left:268.427853pt;}
.x4d_c00341{left:275.397453pt;}
.x22_c00341{left:276.633853pt;}
.x57_c00341{left:284.470253pt;}
.x11_c00341{left:285.592253pt;}
.x12_c00341{left:295.681453pt;}
.x6d_c00341{left:302.527853pt;}
.x70_c00341{left:304.428653pt;}
.x2c_c00341{left:305.805853pt;}
.x80_c00341{left:309.506253pt;}
.x42_c00341{left:313.615853pt;}
.x13_c00341{left:315.340653pt;}
.x5c_c00341{left:317.470253pt;}
.x4e_c00341{left:325.412253pt;}
.x14_c00341{left:334.982253pt;}
.x38_c00341{left:344.948253pt;}
.x2d_c00341{left:354.848253pt;}
.x39_c00341{left:364.726253pt;}
.x52_c00341{left:372.857453pt;}
.x15_c00341{left:374.591053pt;}
.x58_c00341{left:382.678253pt;}
.x16_c00341{left:384.059853pt;}
.x65_c00341{left:386.048653pt;}
.x78_c00341{left:391.874253pt;}
.x3a_c00341{left:393.726653pt;}
.xb_c00341{left:394.646253pt;}
.x17_c00341{left:403.763053pt;}
.x79_c00341{left:407.498653pt;}
.x23_c00341{left:413.544253pt;}
.x43_c00341{left:415.185453pt;}
.x71_c00341{left:419.119053pt;}
.x18_c00341{left:423.175853pt;}
.x6e_c00341{left:424.293453pt;}
.x24_c00341{left:433.137453pt;}
.x66_c00341{left:434.136253pt;}
.x73_c00341{left:437.387853pt;}
.x88_c00341{left:442.513853pt;}
.x3b_c00341{left:443.649053pt;}
.x5b_c00341{left:452.057453pt;}
.x61_c00341{left:453.399453pt;}
.x8d_c00341{left:454.908653pt;}
.x48_c00341{left:456.105453pt;}
.x3c_c00341{left:461.843053pt;}
.x44_c00341{left:463.119053pt;}
.x7a_c00341{left:465.099053pt;}
.x2e_c00341{left:472.790253pt;}
.x19_c00341{left:473.736253pt;}
.x74_c00341{left:475.236653pt;}
.x53_c00341{left:482.179853pt;}
.x69_c00341{left:483.429453pt;}
.x7b_c00341{left:485.963853pt;}
.x3d_c00341{left:490.707053pt;}
.x81_c00341{left:491.798253pt;}
.x25_c00341{left:492.924653pt;}
.x2f_c00341{left:501.504653pt;}
.x59_c00341{left:511.734653pt;}
.x1a_c00341{left:512.645453pt;}
.x26_c00341{left:521.718253pt;}
.x89_c00341{left:529.990253pt;}
.x30_c00341{left:531.961453pt;}
.x75_c00341{left:533.932653pt;}
.x1b_c00341{left:541.549053pt;}
.x45_c00341{left:543.339853pt;}
.x54_c00341{left:551.365453pt;}
.x31_c00341{left:560.843053pt;}
.x7c_c00341{left:561.775853pt;}
.x8e_c00341{left:563.368653pt;}
.x27_c00341{left:570.681453pt;}
.x32_c00341{left:580.515453pt;}
.x86_c00341{left:581.430653pt;}
.x82_c00341{left:589.834653pt;}
.x4f_c00341{left:590.895053pt;}
.x9_c00341{left:600.412253pt;}
.x87_c00341{left:608.556653pt;}
.x1c_c00341{left:610.532253pt;}
.xa_c00341{left:611.500253pt;}
.x50_c00341{left:619.473053pt;}
.x7d_c00341{left:620.713853pt;}
.x33_c00341{left:626.944253pt;}
.x36_c00341{left:628.330253pt;}
.x5d_c00341{left:629.289453pt;}
.x1d_c00341{left:630.191453pt;}
.x46_c00341{left:631.894253pt;}
.x67_c00341{left:633.909453pt;}
.x34_c00341{left:638.300653pt;}
.x28_c00341{left:639.616253pt;}
.x85_c00341{left:647.839853pt;}
.x35_c00341{left:649.177453pt;}
.x47_c00341{left:650.176253pt;}
.x3e_c00341{left:659.253453pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_20b2ab2b82f9f5b78a0bb62d.woff2')format("woff");}.ff1_c00342{font-family:ff1_c00342;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00342;src:url('chunks/assets/font_c4d031bdc9ca9d70ff9a0776.woff2')format("woff");}.ff2_c00342{font-family:ff2_c00342;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00342;src:url('chunks/assets/font_3d629c82e83205350394650f.woff2')format("woff");}.ff3_c00342{font-family:ff3_c00342;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00342;src:url('chunks/assets/font_d60b8d066a2958596344ebf4.woff2')format("woff");}.ff4_c00342{font-family:ff4_c00342;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00342;src:url('chunks/assets/font_c65e3a20234601ca60c1f9a1.woff2')format("woff");}.ff5_c00342{font-family:ff5_c00342;line-height:1.435059;font-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_c00342{transform:matrix(0.037501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.037501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.037501,0.000000,0.000000,0.250000,0,0);}
.maa_c00342{transform:matrix(0.056251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056251,0.000000,0.000000,0.250000,0,0);}
.m68_c00342{transform:matrix(0.066177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066177,0.000000,0.000000,0.250000,0,0);}
.mb8_c00342{transform:matrix(0.068751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.068751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.068751,0.000000,0.000000,0.250000,0,0);}
.m46_c00342{transform:matrix(0.078902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078902,0.000000,0.000000,0.250000,0,0);}
.ma9_c00342{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);}
.m84_c00342{transform:matrix(0.097109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097109,0.000000,0.000000,0.250000,0,0);}
.m67_c00342{transform:matrix(0.110294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110294,0.000000,0.000000,0.250000,0,0);}
.mce_c00342{transform:matrix(0.121793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121793,0.000000,0.000000,0.250000,0,0);}
.mab_c00342{transform:matrix(0.134375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134375,0.000000,0.000000,0.250000,0,0);}
.m7b_c00342{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);}
.mb6_c00342{transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);}
.m83_c00342{transform:matrix(0.140722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140722,0.000000,0.000000,0.250000,0,0);}
.ma8_c00342{transform:matrix(0.142188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142188,0.000000,0.000000,0.250000,0,0);}
.mc8_c00342{transform:matrix(0.153479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153479,0.000000,0.000000,0.250000,0,0);}
.mc4_c00342{transform:matrix(0.163361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163361,0.000000,0.000000,0.250000,0,0);}
.mb7_c00342{transform:matrix(0.165624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165624,0.000000,0.000000,0.250000,0,0);}
.mb4_c00342{transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00342{transform:matrix(0.173610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173610,0.000000,0.000000,0.250000,0,0);}
.mb2_c00342{transform:matrix(0.174999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174999,0.000000,0.000000,0.250000,0,0);}
.ma7_c00342{transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);}
.mac_c00342{transform:matrix(0.179688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179688,0.000000,0.000000,0.250000,0,0);}
.m91_c00342{transform:matrix(0.184375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184375,0.000000,0.000000,0.250000,0,0);}
.m92_c00342{transform:matrix(0.187499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187499,0.000000,0.000000,0.250000,0,0);}
.mb5_c00342{transform:matrix(0.188749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188749,0.000000,0.000000,0.250000,0,0);}
.m90_c00342{transform:matrix(0.189844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189844,0.000000,0.000000,0.250000,0,0);}
.m35_c00342{transform:matrix(0.191570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191570,0.000000,0.000000,0.250000,0,0);}
.mcb_c00342{transform:matrix(0.196783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196783,0.000000,0.000000,0.250000,0,0);}
.mbf_c00342{transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);}
.m9c_c00342{transform:matrix(0.214527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214527,0.000000,0.000000,0.250000,0,0);}
.m87_c00342{transform:matrix(0.214786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214786,0.000000,0.000000,0.250000,0,0);}
.mbd_c00342{transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);}
.m69_c00342{transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);}
.m9e_c00342{transform:matrix(0.228701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228701,0.000000,0.000000,0.250000,0,0);}
.m34_c00342{transform:matrix(0.229076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229076,0.000000,0.000000,0.250000,0,0);}
.m4e_c00342{transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);}
.m8f_c00342{transform:matrix(0.233269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233269,0.000000,0.000000,0.250000,0,0);}
.m33_c00342{transform:matrix(0.235449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235449,0.000000,0.000000,0.250000,0,0);}
.m7c_c00342{transform:matrix(0.237561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237561,0.000000,0.000000,0.250000,0,0);}
.m0_c00342{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00342{transform:matrix(0.250137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250137,0.000000,0.000000,0.250000,0,0);}
.m6d_c00342{transform:matrix(0.251725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251725,0.000000,0.000000,0.250000,0,0);}
.m1b_c00342{transform:matrix(0.253282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253282,0.000000,0.000000,0.250000,0,0);}
.m75_c00342{transform:matrix(0.254604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254604,0.000000,0.000000,0.250000,0,0);}
.m25_c00342{transform:matrix(0.254683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254683,0.000000,0.000000,0.250000,0,0);}
.m3d_c00342{transform:matrix(0.254936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254936,0.000000,0.000000,0.250000,0,0);}
.m28_c00342{transform:matrix(0.257093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257093,0.000000,0.000000,0.250000,0,0);}
.m36_c00342{transform:matrix(0.259247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259247,0.000000,0.000000,0.250000,0,0);}
.m1e_c00342{transform:matrix(0.260790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260790,0.000000,0.000000,0.250000,0,0);}
.m37_c00342{transform:matrix(0.263973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263973,0.000000,0.000000,0.250000,0,0);}
.m5d_c00342{transform:matrix(0.264073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264073,0.000000,0.000000,0.250000,0,0);}
.m59_c00342{transform:matrix(0.265121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265121,0.000000,0.000000,0.250000,0,0);}
.m31_c00342{transform:matrix(0.266009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266009,0.000000,0.000000,0.250000,0,0);}
.m7f_c00342{transform:matrix(0.266075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266075,0.000000,0.000000,0.250000,0,0);}
.mca_c00342{transform:matrix(0.266459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266459,0.000000,0.000000,0.250000,0,0);}
.m53_c00342{transform:matrix(0.266632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266632,0.000000,0.000000,0.250000,0,0);}
.m80_c00342{transform:matrix(0.267914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267914,0.000000,0.000000,0.250000,0,0);}
.m57_c00342{transform:matrix(0.268206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268206,0.000000,0.000000,0.250000,0,0);}
.m38_c00342{transform:matrix(0.268416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268416,0.000000,0.000000,0.250000,0,0);}
.m85_c00342{transform:matrix(0.269016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269016,0.000000,0.000000,0.250000,0,0);}
.m73_c00342{transform:matrix(0.270214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270214,0.000000,0.000000,0.250000,0,0);}
.m64_c00342{transform:matrix(0.270452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270452,0.000000,0.000000,0.250000,0,0);}
.m19_c00342{transform:matrix(0.270827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270827,0.000000,0.000000,0.250000,0,0);}
.m51_c00342{transform:matrix(0.271394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271394,0.000000,0.000000,0.250000,0,0);}
.m9_c00342{transform:matrix(0.273819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273819,0.000000,0.000000,0.250000,0,0);}
.mcd_c00342{transform:matrix(0.274962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274962,0.000000,0.000000,0.250000,0,0);}
.m40_c00342{transform:matrix(0.276323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276323,0.000000,0.000000,0.250000,0,0);}
.mba_c00342{transform:matrix(0.277185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277185,0.000000,0.000000,0.250000,0,0);}
.mc0_c00342{transform:matrix(0.277266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277266,0.000000,0.000000,0.250000,0,0);}
.m44_c00342{transform:matrix(0.277294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277294,0.000000,0.000000,0.250000,0,0);}
.m2c_c00342{transform:matrix(0.278623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278623,0.000000,0.000000,0.250000,0,0);}
.m4f_c00342{transform:matrix(0.280330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280330,0.000000,0.000000,0.250000,0,0);}
.mc6_c00342{transform:matrix(0.280680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280680,0.000000,0.000000,0.250000,0,0);}
.m2e_c00342{transform:matrix(0.281958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281958,0.000000,0.000000,0.250000,0,0);}
.ma3_c00342{transform:matrix(0.282668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282668,0.000000,0.000000,0.250000,0,0);}
.mc3_c00342{transform:matrix(0.282991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282991,0.000000,0.000000,0.250000,0,0);}
.mb_c00342{transform:matrix(0.283064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283064,0.000000,0.000000,0.250000,0,0);}
.m6b_c00342{transform:matrix(0.284273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284273,0.000000,0.000000,0.250000,0,0);}
.m79_c00342{transform:matrix(0.284379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284379,0.000000,0.000000,0.250000,0,0);}
.m7_c00342{transform:matrix(0.284506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284506,0.000000,0.000000,0.250000,0,0);}
.m9a_c00342{transform:matrix(0.284933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284933,0.000000,0.000000,0.250000,0,0);}
.m9d_c00342{transform:matrix(0.285135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285135,0.000000,0.000000,0.250000,0,0);}
.mc5_c00342{transform:matrix(0.285582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285582,0.000000,0.000000,0.250000,0,0);}
.m18_c00342{transform:matrix(0.285844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285844,0.000000,0.000000,0.250000,0,0);}
.m1d_c00342{transform:matrix(0.286052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286052,0.000000,0.000000,0.250000,0,0);}
.m30_c00342{transform:matrix(0.286095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286095,0.000000,0.000000,0.250000,0,0);}
.m2b_c00342{transform:matrix(0.286454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286454,0.000000,0.000000,0.250000,0,0);}
.mb0_c00342{transform:matrix(0.286619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286619,0.000000,0.000000,0.250000,0,0);}
.m97_c00342{transform:matrix(0.286905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286905,0.000000,0.000000,0.250000,0,0);}
.m10_c00342{transform:matrix(0.287274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287274,0.000000,0.000000,0.250000,0,0);}
.m47_c00342{transform:matrix(0.287379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287379,0.000000,0.000000,0.250000,0,0);}
.m5c_c00342{transform:matrix(0.287555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287555,0.000000,0.000000,0.250000,0,0);}
.m81_c00342{transform:matrix(0.288662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288662,0.000000,0.000000,0.250000,0,0);}
.m4d_c00342{transform:matrix(0.288794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288794,0.000000,0.000000,0.250000,0,0);}
.m4b_c00342{transform:matrix(0.289591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289591,0.000000,0.000000,0.250000,0,0);}
.m5_c00342{transform:matrix(0.289677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289677,0.000000,0.000000,0.250000,0,0);}
.m77_c00342{transform:matrix(0.289834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289834,0.000000,0.000000,0.250000,0,0);}
.m6c_c00342{transform:matrix(0.289878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289878,0.000000,0.000000,0.250000,0,0);}
.m5b_c00342{transform:matrix(0.290122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290122,0.000000,0.000000,0.250000,0,0);}
.m5a_c00342{transform:matrix(0.290439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290439,0.000000,0.000000,0.250000,0,0);}
.m1_c00342{transform:matrix(0.291585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291585,0.000000,0.000000,0.250000,0,0);}
.ma_c00342{transform:matrix(0.291649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291649,0.000000,0.000000,0.250000,0,0);}
.m86_c00342{transform:matrix(0.292123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292123,0.000000,0.000000,0.250000,0,0);}
.m16_c00342{transform:matrix(0.292458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292458,0.000000,0.000000,0.250000,0,0);}
.m7a_c00342{transform:matrix(0.292666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292666,0.000000,0.000000,0.250000,0,0);}
.m4c_c00342{transform:matrix(0.294058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294058,0.000000,0.000000,0.250000,0,0);}
.m21_c00342{transform:matrix(0.294599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294599,0.000000,0.000000,0.250000,0,0);}
.m49_c00342{transform:matrix(0.294681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294681,0.000000,0.000000,0.250000,0,0);}
.m74_c00342{transform:matrix(0.295040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295040,0.000000,0.000000,0.250000,0,0);}
.mad_c00342{transform:matrix(0.295099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295099,0.000000,0.000000,0.250000,0,0);}
.m66_c00342{transform:matrix(0.295246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295246,0.000000,0.000000,0.250000,0,0);}
.m2f_c00342{transform:matrix(0.295284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295284,0.000000,0.000000,0.250000,0,0);}
.m3f_c00342{transform:matrix(0.295792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295792,0.000000,0.000000,0.250000,0,0);}
.m43_c00342{transform:matrix(0.296046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296046,0.000000,0.000000,0.250000,0,0);}
.m29_c00342{transform:matrix(0.296941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296941,0.000000,0.000000,0.250000,0,0);}
.m3a_c00342{transform:matrix(0.297579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297579,0.000000,0.000000,0.250000,0,0);}
.m76_c00342{transform:matrix(0.298445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298445,0.000000,0.000000,0.250000,0,0);}
.m1a_c00342{transform:matrix(0.299095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299095,0.000000,0.000000,0.250000,0,0);}
.mc9_c00342{transform:matrix(0.299390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299390,0.000000,0.000000,0.250000,0,0);}
.m3c_c00342{transform:matrix(0.300138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300138,0.000000,0.000000,0.250000,0,0);}
.mbc_c00342{transform:matrix(0.301064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301064,0.000000,0.000000,0.250000,0,0);}
.m2d_c00342{transform:matrix(0.301120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301120,0.000000,0.000000,0.250000,0,0);}
.m63_c00342{transform:matrix(0.301953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301953,0.000000,0.000000,0.250000,0,0);}
.m7e_c00342{transform:matrix(0.302232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302232,0.000000,0.000000,0.250000,0,0);}
.m7d_c00342{transform:matrix(0.303426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303426,0.000000,0.000000,0.250000,0,0);}
.me_c00342{transform:matrix(0.304527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304527,0.000000,0.000000,0.250000,0,0);}
.m71_c00342{transform:matrix(0.305604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305604,0.000000,0.000000,0.250000,0,0);}
.m70_c00342{transform:matrix(0.305722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305722,0.000000,0.000000,0.250000,0,0);}
.m26_c00342{transform:matrix(0.306130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306130,0.000000,0.000000,0.250000,0,0);}
.mae_c00342{transform:matrix(0.306417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306417,0.000000,0.000000,0.250000,0,0);}
.md_c00342{transform:matrix(0.306623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306623,0.000000,0.000000,0.250000,0,0);}
.m2_c00342{transform:matrix(0.306666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306666,0.000000,0.000000,0.250000,0,0);}
.m8b_c00342{transform:matrix(0.308768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308768,0.000000,0.000000,0.250000,0,0);}
.m99_c00342{transform:matrix(0.308942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308942,0.000000,0.000000,0.250000,0,0);}
.m8_c00342{transform:matrix(0.309176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309176,0.000000,0.000000,0.250000,0,0);}
.m55_c00342{transform:matrix(0.309304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309304,0.000000,0.000000,0.250000,0,0);}
.m61_c00342{transform:matrix(0.309364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309364,0.000000,0.000000,0.250000,0,0);}
.m6f_c00342{transform:matrix(0.309859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309859,0.000000,0.000000,0.250000,0,0);}
.ma6_c00342{transform:matrix(0.309959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309959,0.000000,0.000000,0.250000,0,0);}
.mf_c00342{transform:matrix(0.310021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310021,0.000000,0.000000,0.250000,0,0);}
.m15_c00342{transform:matrix(0.310653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310653,0.000000,0.000000,0.250000,0,0);}
.m17_c00342{transform:matrix(0.311820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311820,0.000000,0.000000,0.250000,0,0);}
.mb9_c00342{transform:matrix(0.312181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312181,0.000000,0.000000,0.250000,0,0);}
.m8a_c00342{transform:matrix(0.313607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313607,0.000000,0.000000,0.250000,0,0);}
.m32_c00342{transform:matrix(0.313994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313994,0.000000,0.000000,0.250000,0,0);}
.m52_c00342{transform:matrix(0.314301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314301,0.000000,0.000000,0.250000,0,0);}
.m8d_c00342{transform:matrix(0.315760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315760,0.000000,0.000000,0.250000,0,0);}
.m11_c00342{transform:matrix(0.315806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315806,0.000000,0.000000,0.250000,0,0);}
.mc2_c00342{transform:matrix(0.316775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316775,0.000000,0.000000,0.250000,0,0);}
.m42_c00342{transform:matrix(0.317255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317255,0.000000,0.000000,0.250000,0,0);}
.m50_c00342{transform:matrix(0.317261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317261,0.000000,0.000000,0.250000,0,0);}
.m5e_c00342{transform:matrix(0.317395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317395,0.000000,0.000000,0.250000,0,0);}
.m72_c00342{transform:matrix(0.317490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317490,0.000000,0.000000,0.250000,0,0);}
.m39_c00342{transform:matrix(0.317999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317999,0.000000,0.000000,0.250000,0,0);}
.m94_c00342{transform:matrix(0.319175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319175,0.000000,0.000000,0.250000,0,0);}
.m14_c00342{transform:matrix(0.319284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319284,0.000000,0.000000,0.250000,0,0);}
.m89_c00342{transform:matrix(0.319775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319775,0.000000,0.000000,0.250000,0,0);}
.m24_c00342{transform:matrix(0.320766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320766,0.000000,0.000000,0.250000,0,0);}
.mb1_c00342{transform:matrix(0.321440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321440,0.000000,0.000000,0.250000,0,0);}
.m9b_c00342{transform:matrix(0.322192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322192,0.000000,0.000000,0.250000,0,0);}
.ma4_c00342{transform:matrix(0.322721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322721,0.000000,0.000000,0.250000,0,0);}
.mc1_c00342{transform:matrix(0.323159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323159,0.000000,0.000000,0.250000,0,0);}
.m98_c00342{transform:matrix(0.323656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323656,0.000000,0.000000,0.250000,0,0);}
.m2a_c00342{transform:matrix(0.323919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323919,0.000000,0.000000,0.250000,0,0);}
.ma0_c00342{transform:matrix(0.324089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324089,0.000000,0.000000,0.250000,0,0);}
.m78_c00342{transform:matrix(0.325937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325937,0.000000,0.000000,0.250000,0,0);}
.m96_c00342{transform:matrix(0.326301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326301,0.000000,0.000000,0.250000,0,0);}
.maf_c00342{transform:matrix(0.326306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326306,0.000000,0.000000,0.250000,0,0);}
.m58_c00342{transform:matrix(0.326930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326930,0.000000,0.000000,0.250000,0,0);}
.m88_c00342{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);}
.mc_c00342{transform:matrix(0.328829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328829,0.000000,0.000000,0.250000,0,0);}
.m5f_c00342{transform:matrix(0.329676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329676,0.000000,0.000000,0.250000,0,0);}
.m45_c00342{transform:matrix(0.331597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331597,0.000000,0.000000,0.250000,0,0);}
.mc7_c00342{transform:matrix(0.332571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332571,0.000000,0.000000,0.250000,0,0);}
.ma1_c00342{transform:matrix(0.333092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333092,0.000000,0.000000,0.250000,0,0);}
.m60_c00342{transform:matrix(0.334165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334165,0.000000,0.000000,0.250000,0,0);}
.m6_c00342{transform:matrix(0.334426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334426,0.000000,0.000000,0.250000,0,0);}
.m3_c00342{transform:matrix(0.336513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336513,0.000000,0.000000,0.250000,0,0);}
.m8e_c00342{transform:matrix(0.337434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337434,0.000000,0.000000,0.250000,0,0);}
.m20_c00342{transform:matrix(0.338773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338773,0.000000,0.000000,0.250000,0,0);}
.mcc_c00342{transform:matrix(0.339099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339099,0.000000,0.000000,0.250000,0,0);}
.m3b_c00342{transform:matrix(0.341824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341824,0.000000,0.000000,0.250000,0,0);}
.m9f_c00342{transform:matrix(0.342385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342385,0.000000,0.000000,0.250000,0,0);}
.m1f_c00342{transform:matrix(0.342744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342744,0.000000,0.000000,0.250000,0,0);}
.m13_c00342{transform:matrix(0.344109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344109,0.000000,0.000000,0.250000,0,0);}
.m6e_c00342{transform:matrix(0.345149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345149,0.000000,0.000000,0.250000,0,0);}
.m54_c00342{transform:matrix(0.346894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346894,0.000000,0.000000,0.250000,0,0);}
.mbb_c00342{transform:matrix(0.347155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347155,0.000000,0.000000,0.250000,0,0);}
.m3e_c00342{transform:matrix(0.347308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347308,0.000000,0.000000,0.250000,0,0);}
.m22_c00342{transform:matrix(0.348005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348005,0.000000,0.000000,0.250000,0,0);}
.m4_c00342{transform:matrix(0.349927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349927,0.000000,0.000000,0.250000,0,0);}
.ma2_c00342{transform:matrix(0.351137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351137,0.000000,0.000000,0.250000,0,0);}
.m48_c00342{transform:matrix(0.353088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353088,0.000000,0.000000,0.250000,0,0);}
.m23_c00342{transform:matrix(0.355516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355516,0.000000,0.000000,0.250000,0,0);}
.m4a_c00342{transform:matrix(0.358112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358112,0.000000,0.000000,0.250000,0,0);}
.m12_c00342{transform:matrix(0.359336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359336,0.000000,0.000000,0.250000,0,0);}
.m41_c00342{transform:matrix(0.369751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369751,0.000000,0.000000,0.250000,0,0);}
.m1c_c00342{transform:matrix(0.371516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371516,0.000000,0.000000,0.250000,0,0);}
.m27_c00342{transform:matrix(0.371582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371582,0.000000,0.000000,0.250000,0,0);}
.m62_c00342{transform:matrix(0.371671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371671,0.000000,0.000000,0.250000,0,0);}
.m93_c00342{transform:matrix(0.377866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377866,0.000000,0.000000,0.250000,0,0);}
.m65_c00342{transform:matrix(0.382702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382702,0.000000,0.000000,0.250000,0,0);}
.m95_c00342{transform:matrix(0.396962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396962,0.000000,0.000000,0.250000,0,0);}
.m82_c00342{transform:matrix(0.397010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397010,0.000000,0.000000,0.250000,0,0);}
.m8c_c00342{transform:matrix(0.413906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413906,0.000000,0.000000,0.250000,0,0);}
.ma5_c00342{transform:matrix(0.418966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418966,0.000000,0.000000,0.250000,0,0);}
.m56_c00342{transform:matrix(0.436760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436760,0.000000,0.000000,0.250000,0,0);}
.v0_c00342{vertical-align:0.000000px;}
.v2_c00342{vertical-align:19.938600px;}
.v1_c00342{vertical-align:35.640000px;}
.ls17_c00342{letter-spacing:-2.966040px;}
.ls7_c00342{letter-spacing:-2.837584px;}
.lsb_c00342{letter-spacing:-2.668050px;}
.ls11_c00342{letter-spacing:-2.096325px;}
.ls1c_c00342{letter-spacing:-1.718640px;}
.lsa_c00342{letter-spacing:-1.524600px;}
.ls16_c00342{letter-spacing:-0.997920px;}
.ls5_c00342{letter-spacing:0.000000px;}
.ls10_c00342{letter-spacing:0.038115px;}
.ls9_c00342{letter-spacing:0.099099px;}
.ls2_c00342{letter-spacing:0.647955px;}
.lsd_c00342{letter-spacing:1.097712px;}
.lse_c00342{letter-spacing:1.811700px;}
.ls3_c00342{letter-spacing:1.946300px;}
.lsc_c00342{letter-spacing:2.279277px;}
.ls13_c00342{letter-spacing:2.332638px;}
.ls0_c00342{letter-spacing:2.866248px;}
.ls1b_c00342{letter-spacing:2.972970px;}
.ls1_c00342{letter-spacing:2.995839px;}
.ls14_c00342{letter-spacing:3.552318px;}
.lsf_c00342{letter-spacing:3.663000px;}
.ls8_c00342{letter-spacing:3.811500px;}
.ls6_c00342{letter-spacing:4.197610px;}
.ls15_c00342{letter-spacing:31.363200px;}
.ls12_c00342{letter-spacing:48.470598px;}
.ls1a_c00342{letter-spacing:51.321798px;}
.ls19_c00342{letter-spacing:52.747398px;}
.ls18_c00342{letter-spacing:57.024198px;}
.ls4_c00342{letter-spacing:128.979576px;}
.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;}
}
.ws5_c00342{word-spacing:-19.705455px;}
.ws0_c00342{word-spacing:-19.057500px;}
.ws3_c00342{word-spacing:-16.961175px;}
.ws8_c00342{word-spacing:-14.519300px;}
.ws1_c00342{word-spacing:-2.744280px;}
.ws6_c00342{word-spacing:-0.076230px;}
.ws9_c00342{word-spacing:0.000000px;}
.ws2_c00342{word-spacing:0.228690px;}
.ws4_c00342{word-spacing:0.457380px;}
.ws7_c00342{word-spacing:1.905750px;}
._6_c00342{margin-left:-8.537760px;}
._14_c00342{margin-left:-6.619536px;}
._15_c00342{margin-left:-5.107410px;}
._18_c00342{margin-left:-1.295910px;}
._1_c00342{width:1.067220px;}
._9_c00342{width:2.934360px;}
._19_c00342{width:5.031180px;}
._e_c00342{width:6.094440px;}
._13_c00342{width:7.165620px;}
._3_c00342{width:8.614980px;}
._0_c00342{width:10.519740px;}
._c_c00342{width:11.562210px;}
._8_c00342{width:13.187790px;}
._12_c00342{width:14.864850px;}
._2_c00342{width:21.420630px;}
._5_c00342{width:22.869000px;}
._a_c00342{width:24.164910px;}
._16_c00342{width:26.069670px;}
._7_c00342{width:27.244800px;}
._1c_c00342{width:29.196090px;}
._d_c00342{width:30.490614px;}
._b_c00342{width:31.857210px;}
._4_c00342{width:32.870376px;}
._1a_c00342{width:34.152426px;}
._11_c00342{width:39.258450px;}
._17_c00342{width:41.918580px;}
._f_c00342{width:61.212690px;}
._1b_c00342{width:1010.782080px;}
._10_c00342{width:2224.312200px;}
.fc0_c00342{color:transparent;}
.fs5_c00342{font-size:21.582000px;}
.fs0_c00342{font-size:22.176000px;}
.fsd_c00342{font-size:25.146000px;}
.fs1_c00342{font-size:27.720000px;}
.fsf_c00342{font-size:28.512000px;}
.fse_c00342{font-size:31.363200px;}
.fs16_c00342{font-size:33.660000px;}
.fs8_c00342{font-size:36.234000px;}
.fs3_c00342{font-size:39.204000px;}
.fsa_c00342{font-size:48.470598px;}
.fs17_c00342{font-size:49.104000px;}
.fs13_c00342{font-size:50.292000px;}
.fs14_c00342{font-size:51.321798px;}
.fs12_c00342{font-size:52.747398px;}
.fs6_c00342{font-size:56.628000px;}
.fs11_c00342{font-size:57.024198px;}
.fsb_c00342{font-size:60.192000px;}
.fsc_c00342{font-size:66.528000px;}
.fs7_c00342{font-size:72.864000px;}
.fs9_c00342{font-size:73.260000px;}
.fs4_c00342{font-size:76.230000px;}
.fs2_c00342{font-size:83.952198px;}
.fs10_c00342{font-size:84.744000px;}
.fs15_c00342{font-size:89.496198px;}
.y0_c00342{bottom:0.000000px;}
.y2a_c00342{bottom:66.556755px;}
.y1_c00342{bottom:76.500000px;}
.y29_c00342{bottom:136.764585px;}
.y28_c00342{bottom:142.115535px;}
.y27_c00342{bottom:203.059935px;}
.y26_c00342{bottom:204.841935px;}
.y3_c00342{bottom:235.842201px;}
.y24_c00342{bottom:237.978720px;}
.y25_c00342{bottom:237.987135px;}
.y23_c00342{bottom:270.414585px;}
.y22_c00342{bottom:303.916185px;}
.y21_c00342{bottom:335.997135px;}
.y20_c00342{bottom:368.424585px;}
.y1f_c00342{bottom:401.213385px;}
.y1e_c00342{bottom:433.294335px;}
.y2_c00342{bottom:450.040185px;}
.y1d_c00342{bottom:472.141935px;}
.y1c_c00342{bottom:482.828985px;}
.y1b_c00342{bottom:493.164585px;}
.y1a_c00342{bottom:497.089935px;}
.y19_c00342{bottom:523.463535px;}
.y15_c00342{bottom:530.230185px;}
.y18_c00342{bottom:530.586585px;}
.y17_c00342{bottom:530.947935px;}
.y16_c00342{bottom:540.214335px;}
.y14_c00342{bottom:563.018985px;}
.y13_c00342{bottom:596.164185px;}
.y12_c00342{bottom:631.091385px;}
.y11_c00342{bottom:663.172335px;}
.y10_c00342{bottom:697.743135px;}
.yf_c00342{bottom:713.063385px;}
.ye_c00342{bottom:719.483535px;}
.yd_c00342{bottom:731.601135px;}
.yc_c00342{bottom:756.187785px;}
.yb_c00342{bottom:764.033535px;}
.ya_c00342{bottom:797.886585px;}
.y9_c00342{bottom:830.318985px;}
.y8_c00342{bottom:863.464185px;}
.y7_c00342{bottom:929.046735px;}
.y6_c00342{bottom:1042.020585px;}
.y5_c00342{bottom:1078.016985px;}
.y4_c00342{bottom:1091.203785px;}
.hf_c00342{height:20.887891px;}
.h7_c00342{height:22.509352px;}
.h2_c00342{height:23.128875px;}
.he_c00342{height:26.226492px;}
.h3_c00342{height:28.911094px;}
.h10_c00342{height:29.737125px;}
.hb_c00342{height:32.281418px;}
.h17_c00342{height:33.035449px;}
.h15_c00342{height:34.180317px;}
.h13_c00342{height:35.129767px;}
.h9_c00342{height:37.790930px;}
.h12_c00342{height:37.978116px;}
.h5_c00342{height:38.476582px;}
.h14_c00342{height:49.358848px;}
.h18_c00342{height:51.118031px;}
.h8_c00342{height:59.061234px;}
.hc_c00342{height:62.778375px;}
.h19_c00342{height:69.256688px;}
.ha_c00342{height:71.900684px;}
.h6_c00342{height:74.815576px;}
.h4_c00342{height:82.394491px;}
.h11_c00342{height:83.171602px;}
.hd_c00342{height:105.026625px;}
.h16_c00342{height:107.774224px;}
.h1_c00342{height:1110.000000px;}
.h0_c00342{height:1263.000000px;}
.w1_c00342{width:775.500000px;}
.w0_c00342{width:892.500000px;}
.x0_c00342{left:0.000000px;}
.x3_c00342{left:56.569443px;}
.x1_c00342{left:58.500000px;}
.x2_c00342{left:75.103035px;}
.x3e_c00342{left:91.933035px;}
.x8_c00342{left:94.036785px;}
.x2e_c00342{left:95.308935px;}
.x75_c00342{left:97.645335px;}
.x37_c00342{left:104.570385px;}
.x7f_c00342{left:106.906785px;}
.x51_c00342{left:111.134085px;}
.x80_c00342{left:117.247335px;}
.x2f_c00342{left:126.583035px;}
.x77_c00342{left:127.736385px;}
.x69_c00342{left:130.646985px;}
.x3f_c00342{left:137.354235px;}
.x6e_c00342{left:138.542235px;}
.x6a_c00342{left:139.754985px;}
.x4d_c00342{left:143.215035px;}
.x4e_c00342{left:147.175035px;}
.x17_c00342{left:149.318385px;}
.x9_c00342{left:160.797435px;}
.x78_c00342{left:163.574385px;}
.x59_c00342{left:169.583685px;}
.x18_c00342{left:170.722185px;}
.x74_c00342{left:171.855735px;}
.x49_c00342{left:180.637035px;}
.x22_c00342{left:182.275485px;}
.x84_c00342{left:184.022835px;}
.xa_c00342{left:192.492285px;}
.x6f_c00342{left:194.016885px;}
.x62_c00342{left:205.065285px;}
.x79_c00342{left:211.331985px;}
.x40_c00342{left:214.559385px;}
.x19_c00342{left:215.796885px;}
.x76_c00342{left:220.959735px;}
.xb_c00342{left:226.097835px;}
.x7a_c00342{left:227.731335px;}
.x61_c00342{left:229.424235px;}
.x30_c00342{left:237.146235px;}
.x7_c00342{left:243.962385px;}
.x23_c00342{left:248.065935px;}
.x1a_c00342{left:249.229185px;}
.x81_c00342{left:250.308285px;}
.xc_c00342{left:259.228185px;}
.x85_c00342{left:263.610915px;}
.x31_c00342{left:269.811285px;}
.x4f_c00342{left:271.236885px;}
.x24_c00342{left:281.711085px;}
.x5a_c00342{left:284.087085px;}
.x55_c00342{left:292.709985px;}
.x41_c00342{left:294.457335px;}
.x4a_c00342{left:302.535735px;}
.x1b_c00342{left:303.679185px;}
.x5b_c00342{left:309.698385px;}
.x5c_c00342{left:313.623735px;}
.x38_c00342{left:315.158235px;}
.x56_c00342{left:325.889835px;}
.x42_c00342{left:328.280685px;}
.x6c_c00342{left:334.799835px;}
.x25_c00342{left:336.972885px;}
.x7b_c00342{left:338.566785px;}
.x43_c00342{left:346.971885px;}
.x5d_c00342{left:348.159885px;}
.x7c_c00342{left:349.263735px;}
.xd_c00342{left:359.317185px;}
.x82_c00342{left:360.386385px;}
.xe_c00342{left:370.776435px;}
.x63_c00342{left:371.855535px;}
.x7d_c00342{left:373.855335px;}
.x50_c00342{left:379.904235px;}
.x32_c00342{left:381.849585px;}
.x57_c00342{left:391.823835px;}
.x64_c00342{left:393.417735px;}
.x33_c00342{left:401.961435px;}
.xf_c00342{left:403.040535px;}
.x70_c00342{left:404.089935px;}
.x39_c00342{left:413.673135px;}
.x52_c00342{left:414.950235px;}
.x3a_c00342{left:425.300685px;}
.x1c_c00342{left:426.330285px;}
.x34_c00342{left:435.972885px;}
.x26_c00342{left:438.314235px;}
.x3d_c00342{left:446.471835px;}
.x4b_c00342{left:448.486485px;}
.x27_c00342{left:457.510335px;}
.x65_c00342{left:459.554685px;}
.x5e_c00342{left:469.321035px;}
.x58_c00342{left:470.652585px;}
.x48_c00342{left:479.706135px;}
.x10_c00342{left:480.725835px;}
.x66_c00342{left:482.270235px;}
.x4_c00342{left:483.869085px;}
.x28_c00342{left:491.383185px;}
.x1d_c00342{left:492.680085px;}
.x3b_c00342{left:503.698785px;}
.x1e_c00342{left:513.836385px;}
.x29_c00342{left:524.553135px;}
.x1f_c00342{left:536.091585px;}
.x35_c00342{left:546.887535px;}
.x44_c00342{left:547.922085px;}
.x11_c00342{left:558.594285px;}
.x2a_c00342{left:568.113135px;}
.x45_c00342{left:569.622885px;}
.x7e_c00342{left:579.131835px;}
.x36_c00342{left:580.334685px;}
.x12_c00342{left:590.932635px;}
.x71_c00342{left:593.808585px;}
.x47_c00342{left:595.090635px;}
.x4c_c00342{left:602.446335px;}
.x20_c00342{left:612.311685px;}
.x3c_c00342{left:614.192685px;}
.x13_c00342{left:624.171885px;}
.x2b_c00342{left:635.254935px;}
.x14_c00342{left:646.427085px;}
.x5f_c00342{left:647.664585px;}
.x46_c00342{left:657.411135px;}
.x2c_c00342{left:658.762485px;}
.x72_c00342{left:662.247285px;}
.x6d_c00342{left:667.519035px;}
.x15_c00342{left:668.746635px;}
.x5_c00342{left:670.434585px;}
.x16_c00342{left:680.116785px;}
.x53_c00342{left:681.888885px;}
.x60_c00342{left:690.001935px;}
.x6_c00342{left:693.803535px;}
.x21_c00342{left:701.505735px;}
.x83_c00342{left:703.386735px;}
.x6b_c00342{left:708.336735px;}
.x2d_c00342{left:712.014585px;}
.x67_c00342{left:716.088435px;}
.x73_c00342{left:724.627185px;}
.x54_c00342{left:725.929035px;}
.x68_c00342{left:759.876135px;}
@media print{
.v0_c00342{vertical-align:0.000000pt;}
.v2_c00342{vertical-align:17.723200pt;}
.v1_c00342{vertical-align:31.680000pt;}
.ls17_c00342{letter-spacing:-2.636480pt;}
.ls7_c00342{letter-spacing:-2.522297pt;}
.lsb_c00342{letter-spacing:-2.371600pt;}
.ls11_c00342{letter-spacing:-1.863400pt;}
.ls1c_c00342{letter-spacing:-1.527680pt;}
.lsa_c00342{letter-spacing:-1.355200pt;}
.ls16_c00342{letter-spacing:-0.887040pt;}
.ls5_c00342{letter-spacing:0.000000pt;}
.ls10_c00342{letter-spacing:0.033880pt;}
.ls9_c00342{letter-spacing:0.088088pt;}
.ls2_c00342{letter-spacing:0.575960pt;}
.lsd_c00342{letter-spacing:0.975744pt;}
.lse_c00342{letter-spacing:1.610400pt;}
.ls3_c00342{letter-spacing:1.730045pt;}
.lsc_c00342{letter-spacing:2.026024pt;}
.ls13_c00342{letter-spacing:2.073456pt;}
.ls0_c00342{letter-spacing:2.547776pt;}
.ls1b_c00342{letter-spacing:2.642640pt;}
.ls1_c00342{letter-spacing:2.662968pt;}
.ls14_c00342{letter-spacing:3.157616pt;}
.lsf_c00342{letter-spacing:3.256000pt;}
.ls8_c00342{letter-spacing:3.388000pt;}
.ls6_c00342{letter-spacing:3.731209pt;}
.ls15_c00342{letter-spacing:27.878400pt;}
.ls12_c00342{letter-spacing:43.084976pt;}
.ls1a_c00342{letter-spacing:45.619376pt;}
.ls19_c00342{letter-spacing:46.886576pt;}
.ls18_c00342{letter-spacing:50.688176pt;}
.ls4_c00342{letter-spacing:114.648512pt;}
.ws5_c00342{word-spacing:-17.515960pt;}
.ws0_c00342{word-spacing:-16.940000pt;}
.ws3_c00342{word-spacing:-15.076600pt;}
.ws8_c00342{word-spacing:-12.906045pt;}
.ws1_c00342{word-spacing:-2.439360pt;}
.ws6_c00342{word-spacing:-0.067760pt;}
.ws9_c00342{word-spacing:0.000000pt;}
.ws2_c00342{word-spacing:0.203280pt;}
.ws4_c00342{word-spacing:0.406560pt;}
.ws7_c00342{word-spacing:1.694000pt;}
._6_c00342{margin-left:-7.589120pt;}
._14_c00342{margin-left:-5.884032pt;}
._15_c00342{margin-left:-4.539920pt;}
._18_c00342{margin-left:-1.151920pt;}
._1_c00342{width:0.948640pt;}
._9_c00342{width:2.608320pt;}
._19_c00342{width:4.472160pt;}
._e_c00342{width:5.417280pt;}
._13_c00342{width:6.369440pt;}
._3_c00342{width:7.657760pt;}
._0_c00342{width:9.350880pt;}
._c_c00342{width:10.277520pt;}
._8_c00342{width:11.722480pt;}
._12_c00342{width:13.213200pt;}
._2_c00342{width:19.040560pt;}
._5_c00342{width:20.328000pt;}
._a_c00342{width:21.479920pt;}
._16_c00342{width:23.173040pt;}
._7_c00342{width:24.217600pt;}
._1c_c00342{width:25.952080pt;}
._d_c00342{width:27.102768pt;}
._b_c00342{width:28.317520pt;}
._4_c00342{width:29.218112pt;}
._1a_c00342{width:30.357712pt;}
._11_c00342{width:34.896400pt;}
._17_c00342{width:37.260960pt;}
._f_c00342{width:54.411280pt;}
._1b_c00342{width:898.472960pt;}
._10_c00342{width:1977.166400pt;}
.fs5_c00342{font-size:19.184000pt;}
.fs0_c00342{font-size:19.712000pt;}
.fsd_c00342{font-size:22.352000pt;}
.fs1_c00342{font-size:24.640000pt;}
.fsf_c00342{font-size:25.344000pt;}
.fse_c00342{font-size:27.878400pt;}
.fs16_c00342{font-size:29.920000pt;}
.fs8_c00342{font-size:32.208000pt;}
.fs3_c00342{font-size:34.848000pt;}
.fsa_c00342{font-size:43.084976pt;}
.fs17_c00342{font-size:43.648000pt;}
.fs13_c00342{font-size:44.704000pt;}
.fs14_c00342{font-size:45.619376pt;}
.fs12_c00342{font-size:46.886576pt;}
.fs6_c00342{font-size:50.336000pt;}
.fs11_c00342{font-size:50.688176pt;}
.fsb_c00342{font-size:53.504000pt;}
.fsc_c00342{font-size:59.136000pt;}
.fs7_c00342{font-size:64.768000pt;}
.fs9_c00342{font-size:65.120000pt;}
.fs4_c00342{font-size:67.760000pt;}
.fs2_c00342{font-size:74.624176pt;}
.fs10_c00342{font-size:75.328000pt;}
.fs15_c00342{font-size:79.552176pt;}
.y0_c00342{bottom:0.000000pt;}
.y2a_c00342{bottom:59.161560pt;}
.y1_c00342{bottom:68.000000pt;}
.y29_c00342{bottom:121.568520pt;}
.y28_c00342{bottom:126.324920pt;}
.y27_c00342{bottom:180.497720pt;}
.y26_c00342{bottom:182.081720pt;}
.y3_c00342{bottom:209.637512pt;}
.y24_c00342{bottom:211.536640pt;}
.y25_c00342{bottom:211.544120pt;}
.y23_c00342{bottom:240.368520pt;}
.y22_c00342{bottom:270.147720pt;}
.y21_c00342{bottom:298.664120pt;}
.y20_c00342{bottom:327.488520pt;}
.y1f_c00342{bottom:356.634120pt;}
.y1e_c00342{bottom:385.150520pt;}
.y2_c00342{bottom:400.035720pt;}
.y1d_c00342{bottom:419.681720pt;}
.y1c_c00342{bottom:429.181320pt;}
.y1b_c00342{bottom:438.368520pt;}
.y1a_c00342{bottom:441.857720pt;}
.y19_c00342{bottom:465.300920pt;}
.y15_c00342{bottom:471.315720pt;}
.y18_c00342{bottom:471.632520pt;}
.y17_c00342{bottom:471.953720pt;}
.y16_c00342{bottom:480.190520pt;}
.y14_c00342{bottom:500.461320pt;}
.y13_c00342{bottom:529.923720pt;}
.y12_c00342{bottom:560.970120pt;}
.y11_c00342{bottom:589.486520pt;}
.y10_c00342{bottom:620.216120pt;}
.yf_c00342{bottom:633.834120pt;}
.ye_c00342{bottom:639.540920pt;}
.yd_c00342{bottom:650.312120pt;}
.yc_c00342{bottom:672.166920pt;}
.yb_c00342{bottom:679.140920pt;}
.ya_c00342{bottom:709.232520pt;}
.y9_c00342{bottom:738.061320pt;}
.y8_c00342{bottom:767.523720pt;}
.y7_c00342{bottom:825.819320pt;}
.y6_c00342{bottom:926.240520pt;}
.y5_c00342{bottom:958.237320pt;}
.y4_c00342{bottom:969.958920pt;}
.hf_c00342{height:18.567014pt;}
.h7_c00342{height:20.008313pt;}
.h2_c00342{height:20.559000pt;}
.he_c00342{height:23.312438pt;}
.h3_c00342{height:25.698750pt;}
.h10_c00342{height:26.433000pt;}
.hb_c00342{height:28.694594pt;}
.h17_c00342{height:29.364844pt;}
.h15_c00342{height:30.382504pt;}
.h13_c00342{height:31.226460pt;}
.h9_c00342{height:33.591938pt;}
.h12_c00342{height:33.758325pt;}
.h5_c00342{height:34.201406pt;}
.h14_c00342{height:43.874531pt;}
.h18_c00342{height:45.438250pt;}
.h8_c00342{height:52.498875pt;}
.hc_c00342{height:55.803000pt;}
.h19_c00342{height:61.561500pt;}
.ha_c00342{height:63.911719pt;}
.h6_c00342{height:66.502734pt;}
.h4_c00342{height:73.239548pt;}
.h11_c00342{height:73.930313pt;}
.hd_c00342{height:93.357000pt;}
.h16_c00342{height:95.799310pt;}
.h1_c00342{height:986.666667pt;}
.h0_c00342{height:1122.666667pt;}
.w1_c00342{width:689.333333pt;}
.w0_c00342{width:793.333333pt;}
.x0_c00342{left:0.000000pt;}
.x3_c00342{left:50.283949pt;}
.x1_c00342{left:52.000000pt;}
.x2_c00342{left:66.758253pt;}
.x3e_c00342{left:81.718253pt;}
.x8_c00342{left:83.588253pt;}
.x2e_c00342{left:84.719053pt;}
.x75_c00342{left:86.795853pt;}
.x37_c00342{left:92.951453pt;}
.x7f_c00342{left:95.028253pt;}
.x51_c00342{left:98.785853pt;}
.x80_c00342{left:104.219853pt;}
.x2f_c00342{left:112.518253pt;}
.x77_c00342{left:113.543453pt;}
.x69_c00342{left:116.130653pt;}
.x3f_c00342{left:122.092653pt;}
.x6e_c00342{left:123.148653pt;}
.x6a_c00342{left:124.226653pt;}
.x4d_c00342{left:127.302253pt;}
.x4e_c00342{left:130.822253pt;}
.x17_c00342{left:132.727453pt;}
.x9_c00342{left:142.931053pt;}
.x78_c00342{left:145.399453pt;}
.x59_c00342{left:150.741053pt;}
.x18_c00342{left:151.753053pt;}
.x74_c00342{left:152.760653pt;}
.x49_c00342{left:160.566253pt;}
.x22_c00342{left:162.022653pt;}
.x84_c00342{left:163.575853pt;}
.xa_c00342{left:171.104253pt;}
.x6f_c00342{left:172.459453pt;}
.x62_c00342{left:182.280253pt;}
.x79_c00342{left:187.850653pt;}
.x40_c00342{left:190.719453pt;}
.x19_c00342{left:191.819453pt;}
.x76_c00342{left:196.408653pt;}
.xb_c00342{left:200.975853pt;}
.x7a_c00342{left:202.427853pt;}
.x61_c00342{left:203.932653pt;}
.x30_c00342{left:210.796653pt;}
.x7_c00342{left:216.855453pt;}
.x23_c00342{left:220.503053pt;}
.x1a_c00342{left:221.537053pt;}
.x81_c00342{left:222.496253pt;}
.xc_c00342{left:230.425053pt;}
.x85_c00342{left:234.320813pt;}
.x31_c00342{left:239.832253pt;}
.x4f_c00342{left:241.099453pt;}
.x24_c00342{left:250.409853pt;}
.x5a_c00342{left:252.521853pt;}
.x55_c00342{left:260.186653pt;}
.x41_c00342{left:261.739853pt;}
.x4a_c00342{left:268.920653pt;}
.x1b_c00342{left:269.937053pt;}
.x5b_c00342{left:275.287453pt;}
.x5c_c00342{left:278.776653pt;}
.x38_c00342{left:280.140653pt;}
.x56_c00342{left:289.679853pt;}
.x42_c00342{left:291.805053pt;}
.x6c_c00342{left:297.599853pt;}
.x25_c00342{left:299.531453pt;}
.x7b_c00342{left:300.948253pt;}
.x43_c00342{left:308.419453pt;}
.x5d_c00342{left:309.475453pt;}
.x7c_c00342{left:310.456653pt;}
.xd_c00342{left:319.393053pt;}
.x82_c00342{left:320.343453pt;}
.xe_c00342{left:329.579053pt;}
.x63_c00342{left:330.538253pt;}
.x7d_c00342{left:332.315853pt;}
.x50_c00342{left:337.692653pt;}
.x32_c00342{left:339.421853pt;}
.x57_c00342{left:348.287853pt;}
.x64_c00342{left:349.704653pt;}
.x33_c00342{left:357.299053pt;}
.xf_c00342{left:358.258253pt;}
.x70_c00342{left:359.191053pt;}
.x39_c00342{left:367.709453pt;}
.x52_c00342{left:368.844653pt;}
.x3a_c00342{left:378.045053pt;}
.x1c_c00342{left:378.960253pt;}
.x34_c00342{left:387.531453pt;}
.x26_c00342{left:389.612653pt;}
.x3d_c00342{left:396.863853pt;}
.x4b_c00342{left:398.654653pt;}
.x27_c00342{left:406.675853pt;}
.x65_c00342{left:408.493053pt;}
.x5e_c00342{left:417.174253pt;}
.x58_c00342{left:418.357853pt;}
.x48_c00342{left:426.405453pt;}
.x10_c00342{left:427.311853pt;}
.x66_c00342{left:428.684653pt;}
.x4_c00342{left:430.105853pt;}
.x28_c00342{left:436.785053pt;}
.x1d_c00342{left:437.937853pt;}
.x3b_c00342{left:447.732253pt;}
.x1e_c00342{left:456.743453pt;}
.x29_c00342{left:466.269453pt;}
.x1f_c00342{left:476.525853pt;}
.x35_c00342{left:486.122253pt;}
.x44_c00342{left:487.041853pt;}
.x11_c00342{left:496.528253pt;}
.x2a_c00342{left:504.989453pt;}
.x45_c00342{left:506.331453pt;}
.x7e_c00342{left:514.783853pt;}
.x36_c00342{left:515.853053pt;}
.x12_c00342{left:525.273453pt;}
.x71_c00342{left:527.829853pt;}
.x47_c00342{left:528.969453pt;}
.x4c_c00342{left:535.507853pt;}
.x20_c00342{left:544.277053pt;}
.x3c_c00342{left:545.949053pt;}
.x13_c00342{left:554.819453pt;}
.x2b_c00342{left:564.671053pt;}
.x14_c00342{left:574.601853pt;}
.x5f_c00342{left:575.701853pt;}
.x46_c00342{left:584.365453pt;}
.x2c_c00342{left:585.566653pt;}
.x72_c00342{left:588.664253pt;}
.x6d_c00342{left:593.350253pt;}
.x15_c00342{left:594.441453pt;}
.x5_c00342{left:595.941853pt;}
.x16_c00342{left:604.548253pt;}
.x53_c00342{left:606.123453pt;}
.x60_c00342{left:613.335053pt;}
.x6_c00342{left:616.714253pt;}
.x21_c00342{left:623.560653pt;}
.x83_c00342{left:625.232653pt;}
.x6b_c00342{left:629.632653pt;}
.x2d_c00342{left:632.901853pt;}
.x67_c00342{left:636.523053pt;}
.x73_c00342{left:644.113053pt;}
.x54_c00342{left:645.270253pt;}
.x68_c00342{left:675.445453pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d3ed0db326181ee2c96cec44.woff2')format("woff");}.ff1_c00343{font-family:ff1_c00343;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00343;src:url('chunks/assets/font_fe36ef2102b60cd663c3b116.woff2')format("woff");}.ff2_c00343{font-family:ff2_c00343;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00343;src:url('chunks/assets/font_2a2755a0fd02a862be36b60a.woff2')format("woff");}.ff3_c00343{font-family:ff3_c00343;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00343;src:url('chunks/assets/font_68fb4460e7ab938a727b929d.woff2')format("woff");}.ff4_c00343{font-family:ff4_c00343;line-height:0.666000;font-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_c00343{transform:matrix(0.012196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012196,0.000000,0.000000,0.250000,0,0);}
.m4a_c00343{transform:matrix(0.060976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060976,0.000000,0.000000,0.250000,0,0);}
.m1c_c00343{transform:matrix(0.066938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066938,0.000000,0.000000,0.250000,0,0);}
.m46_c00343{transform:matrix(0.079269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.079269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.079269,0.000000,0.000000,0.250000,0,0);}
.m4e_c00343{transform:matrix(0.089024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089024,0.000000,0.000000,0.250000,0,0);}
.m76_c00343{transform:matrix(0.095589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095589,0.000000,0.000000,0.250000,0,0);}
.m53_c00343{transform:matrix(0.097222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097222,0.000000,0.000000,0.250000,0,0);}
.m1d_c00343{transform:matrix(0.121786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121786,0.000000,0.000000,0.250000,0,0);}
.m8d_c00343{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);}
.m8c_c00343{transform:matrix(0.136905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136905,0.000000,0.000000,0.250000,0,0);}
.m4f_c00343{transform:matrix(0.140244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140244,0.000000,0.000000,0.250000,0,0);}
.mca_c00343{transform:matrix(0.151104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151104,0.000000,0.000000,0.250000,0,0);}
.maf_c00343{transform:matrix(0.158929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158929,0.000000,0.000000,0.250000,0,0);}
.m8b_c00343{transform:matrix(0.163691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163691,0.000000,0.000000,0.250000,0,0);}
.m75_c00343{transform:matrix(0.169118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169118,0.000000,0.000000,0.250000,0,0);}
.m47_c00343{transform:matrix(0.170731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170731,0.000000,0.000000,0.250000,0,0);}
.m89_c00343{transform:matrix(0.176588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176588,0.000000,0.000000,0.250000,0,0);}
.m49_c00343{transform:matrix(0.182926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182926,0.000000,0.000000,0.250000,0,0);}
.m74_c00343{transform:matrix(0.183823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183823,0.000000,0.000000,0.250000,0,0);}
.m86_c00343{transform:matrix(0.194445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194445,0.000000,0.000000,0.250000,0,0);}
.m33_c00343{transform:matrix(0.210574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210574,0.000000,0.000000,0.250000,0,0);}
.m54_c00343{transform:matrix(0.212674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212674,0.000000,0.000000,0.250000,0,0);}
.m62_c00343{transform:matrix(0.222318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222318,0.000000,0.000000,0.250000,0,0);}
.m73_c00343{transform:matrix(0.225490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225490,0.000000,0.000000,0.250000,0,0);}
.m8a_c00343{transform:matrix(0.226191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226191,0.000000,0.000000,0.250000,0,0);}
.m52_c00343{transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);}
.m83_c00343{transform:matrix(0.241771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241771,0.000000,0.000000,0.250000,0,0);}
.m99_c00343{transform:matrix(0.248852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248852,0.000000,0.000000,0.250000,0,0);}
.m7a_c00343{transform:matrix(0.249779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249779,0.000000,0.000000,0.250000,0,0);}
.m0_c00343{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m45_c00343{transform:matrix(0.252712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252712,0.000000,0.000000,0.250000,0,0);}
.m3e_c00343{transform:matrix(0.252880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252880,0.000000,0.000000,0.250000,0,0);}
.m24_c00343{transform:matrix(0.253878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253878,0.000000,0.000000,0.250000,0,0);}
.m66_c00343{transform:matrix(0.253944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253944,0.000000,0.000000,0.250000,0,0);}
.m31_c00343{transform:matrix(0.254023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254023,0.000000,0.000000,0.250000,0,0);}
.m3c_c00343{transform:matrix(0.255335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255335,0.000000,0.000000,0.250000,0,0);}
.m60_c00343{transform:matrix(0.257240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257240,0.000000,0.000000,0.250000,0,0);}
.m1b_c00343{transform:matrix(0.257321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257321,0.000000,0.000000,0.250000,0,0);}
.mc6_c00343{transform:matrix(0.261193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261193,0.000000,0.000000,0.250000,0,0);}
.mbe_c00343{transform:matrix(0.261432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261432,0.000000,0.000000,0.250000,0,0);}
.m8e_c00343{transform:matrix(0.261637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261637,0.000000,0.000000,0.250000,0,0);}
.m2e_c00343{transform:matrix(0.262086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262086,0.000000,0.000000,0.250000,0,0);}
.m87_c00343{transform:matrix(0.262117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262117,0.000000,0.000000,0.250000,0,0);}
.m68_c00343{transform:matrix(0.262690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262690,0.000000,0.000000,0.250000,0,0);}
.mdf_c00343{transform:matrix(0.263527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263527,0.000000,0.000000,0.250000,0,0);}
.mb4_c00343{transform:matrix(0.263548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263548,0.000000,0.000000,0.250000,0,0);}
.m95_c00343{transform:matrix(0.264671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264671,0.000000,0.000000,0.250000,0,0);}
.m19_c00343{transform:matrix(0.265207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265207,0.000000,0.000000,0.250000,0,0);}
.mcd_c00343{transform:matrix(0.265376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265376,0.000000,0.000000,0.250000,0,0);}
.ma_c00343{transform:matrix(0.265386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265386,0.000000,0.000000,0.250000,0,0);}
.m6a_c00343{transform:matrix(0.265922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265922,0.000000,0.000000,0.250000,0,0);}
.m23_c00343{transform:matrix(0.265942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265942,0.000000,0.000000,0.250000,0,0);}
.m96_c00343{transform:matrix(0.267220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267220,0.000000,0.000000,0.250000,0,0);}
.m29_c00343{transform:matrix(0.267251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267251,0.000000,0.000000,0.250000,0,0);}
.m6c_c00343{transform:matrix(0.267512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267512,0.000000,0.000000,0.250000,0,0);}
.m7c_c00343{transform:matrix(0.268319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268319,0.000000,0.000000,0.250000,0,0);}
.m6_c00343{transform:matrix(0.268402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268402,0.000000,0.000000,0.250000,0,0);}
.m13_c00343{transform:matrix(0.270126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270126,0.000000,0.000000,0.250000,0,0);}
.mc9_c00343{transform:matrix(0.270637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270637,0.000000,0.000000,0.250000,0,0);}
.m11_c00343{transform:matrix(0.270691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270691,0.000000,0.000000,0.250000,0,0);}
.mab_c00343{transform:matrix(0.270764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270764,0.000000,0.000000,0.250000,0,0);}
.md1_c00343{transform:matrix(0.271465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271465,0.000000,0.000000,0.250000,0,0);}
.m32_c00343{transform:matrix(0.272881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272881,0.000000,0.000000,0.250000,0,0);}
.ma8_c00343{transform:matrix(0.273110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273110,0.000000,0.000000,0.250000,0,0);}
.m37_c00343{transform:matrix(0.273207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273207,0.000000,0.000000,0.250000,0,0);}
.m63_c00343{transform:matrix(0.273591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273591,0.000000,0.000000,0.250000,0,0);}
.m17_c00343{transform:matrix(0.273979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273979,0.000000,0.000000,0.250000,0,0);}
.m8_c00343{transform:matrix(0.274127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274127,0.000000,0.000000,0.250000,0,0);}
.m55_c00343{transform:matrix(0.274865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274865,0.000000,0.000000,0.250000,0,0);}
.md9_c00343{transform:matrix(0.276712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276712,0.000000,0.000000,0.250000,0,0);}
.m2d_c00343{transform:matrix(0.277901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277901,0.000000,0.000000,0.250000,0,0);}
.m98_c00343{transform:matrix(0.278418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278418,0.000000,0.000000,0.250000,0,0);}
.mc8_c00343{transform:matrix(0.279604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279604,0.000000,0.000000,0.250000,0,0);}
.me_c00343{transform:matrix(0.279922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279922,0.000000,0.000000,0.250000,0,0);}
.m25_c00343{transform:matrix(0.279953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279953,0.000000,0.000000,0.250000,0,0);}
.m59_c00343{transform:matrix(0.280329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280329,0.000000,0.000000,0.250000,0,0);}
.m90_c00343{transform:matrix(0.280687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280687,0.000000,0.000000,0.250000,0,0);}
.m6f_c00343{transform:matrix(0.281227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281227,0.000000,0.000000,0.250000,0,0);}
.mb2_c00343{transform:matrix(0.281470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281470,0.000000,0.000000,0.250000,0,0);}
.m78_c00343{transform:matrix(0.282166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282166,0.000000,0.000000,0.250000,0,0);}
.m2_c00343{transform:matrix(0.282948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282948,0.000000,0.000000,0.250000,0,0);}
.mb0_c00343{transform:matrix(0.283249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283249,0.000000,0.000000,0.250000,0,0);}
.mcf_c00343{transform:matrix(0.283479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283479,0.000000,0.000000,0.250000,0,0);}
.m7_c00343{transform:matrix(0.283766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283766,0.000000,0.000000,0.250000,0,0);}
.m39_c00343{transform:matrix(0.283773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283773,0.000000,0.000000,0.250000,0,0);}
.m69_c00343{transform:matrix(0.283918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283918,0.000000,0.000000,0.250000,0,0);}
.m1e_c00343{transform:matrix(0.284396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284396,0.000000,0.000000,0.250000,0,0);}
.mba_c00343{transform:matrix(0.285182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285182,0.000000,0.000000,0.250000,0,0);}
.m5e_c00343{transform:matrix(0.285444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285444,0.000000,0.000000,0.250000,0,0);}
.m5f_c00343{transform:matrix(0.285629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285629,0.000000,0.000000,0.250000,0,0);}
.m92_c00343{transform:matrix(0.285812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285812,0.000000,0.000000,0.250000,0,0);}
.m28_c00343{transform:matrix(0.285901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285901,0.000000,0.000000,0.250000,0,0);}
.md7_c00343{transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00343{transform:matrix(0.286635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286635,0.000000,0.000000,0.250000,0,0);}
.m93_c00343{transform:matrix(0.287104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287104,0.000000,0.000000,0.250000,0,0);}
.ma7_c00343{transform:matrix(0.287114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287114,0.000000,0.000000,0.250000,0,0);}
.m2b_c00343{transform:matrix(0.287278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287278,0.000000,0.000000,0.250000,0,0);}
.m80_c00343{transform:matrix(0.287591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287591,0.000000,0.000000,0.250000,0,0);}
.ma9_c00343{transform:matrix(0.288095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288095,0.000000,0.000000,0.250000,0,0);}
.m9a_c00343{transform:matrix(0.288126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288126,0.000000,0.000000,0.250000,0,0);}
.m20_c00343{transform:matrix(0.288818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288818,0.000000,0.000000,0.250000,0,0);}
.m5c_c00343{transform:matrix(0.288841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288841,0.000000,0.000000,0.250000,0,0);}
.m4_c00343{transform:matrix(0.288887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288887,0.000000,0.000000,0.250000,0,0);}
.m7e_c00343{transform:matrix(0.289127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289127,0.000000,0.000000,0.250000,0,0);}
.m6e_c00343{transform:matrix(0.289475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289475,0.000000,0.000000,0.250000,0,0);}
.mb_c00343{transform:matrix(0.290893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290893,0.000000,0.000000,0.250000,0,0);}
.m30_c00343{transform:matrix(0.291334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291334,0.000000,0.000000,0.250000,0,0);}
.maa_c00343{transform:matrix(0.291515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291515,0.000000,0.000000,0.250000,0,0);}
.md0_c00343{transform:matrix(0.291710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291710,0.000000,0.000000,0.250000,0,0);}
.m82_c00343{transform:matrix(0.291904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291904,0.000000,0.000000,0.250000,0,0);}
.m81_c00343{transform:matrix(0.292996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292996,0.000000,0.000000,0.250000,0,0);}
.mde_c00343{transform:matrix(0.293297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293297,0.000000,0.000000,0.250000,0,0);}
.m1f_c00343{transform:matrix(0.293554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293554,0.000000,0.000000,0.250000,0,0);}
.m44_c00343{transform:matrix(0.293822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293822,0.000000,0.000000,0.250000,0,0);}
.m1_c00343{transform:matrix(0.293918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293918,0.000000,0.000000,0.250000,0,0);}
.m43_c00343{transform:matrix(0.294481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294481,0.000000,0.000000,0.250000,0,0);}
.m40_c00343{transform:matrix(0.294970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294970,0.000000,0.000000,0.250000,0,0);}
.mad_c00343{transform:matrix(0.295037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295037,0.000000,0.000000,0.250000,0,0);}
.m7d_c00343{transform:matrix(0.295148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295148,0.000000,0.000000,0.250000,0,0);}
.m16_c00343{transform:matrix(0.295231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295231,0.000000,0.000000,0.250000,0,0);}
.m58_c00343{transform:matrix(0.296514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296514,0.000000,0.000000,0.250000,0,0);}
.m3b_c00343{transform:matrix(0.296963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296963,0.000000,0.000000,0.250000,0,0);}
.mc5_c00343{transform:matrix(0.297052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297052,0.000000,0.000000,0.250000,0,0);}
.m65_c00343{transform:matrix(0.297072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297072,0.000000,0.000000,0.250000,0,0);}
.m77_c00343{transform:matrix(0.297104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297104,0.000000,0.000000,0.250000,0,0);}
.m4b_c00343{transform:matrix(0.297302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297302,0.000000,0.000000,0.250000,0,0);}
.m6b_c00343{transform:matrix(0.297358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297358,0.000000,0.000000,0.250000,0,0);}
.mb7_c00343{transform:matrix(0.297658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297658,0.000000,0.000000,0.250000,0,0);}
.m9e_c00343{transform:matrix(0.297834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297834,0.000000,0.000000,0.250000,0,0);}
.m7b_c00343{transform:matrix(0.297925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297925,0.000000,0.000000,0.250000,0,0);}
.m51_c00343{transform:matrix(0.299201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299201,0.000000,0.000000,0.250000,0,0);}
.m91_c00343{transform:matrix(0.299235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299235,0.000000,0.000000,0.250000,0,0);}
.ma5_c00343{transform:matrix(0.299312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299312,0.000000,0.000000,0.250000,0,0);}
.mb5_c00343{transform:matrix(0.299360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299360,0.000000,0.000000,0.250000,0,0);}
.mce_c00343{transform:matrix(0.299479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299479,0.000000,0.000000,0.250000,0,0);}
.md_c00343{transform:matrix(0.300161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300161,0.000000,0.000000,0.250000,0,0);}
.m50_c00343{transform:matrix(0.301045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301045,0.000000,0.000000,0.250000,0,0);}
.ma2_c00343{transform:matrix(0.301328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301328,0.000000,0.000000,0.250000,0,0);}
.m9d_c00343{transform:matrix(0.302488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302488,0.000000,0.000000,0.250000,0,0);}
.m61_c00343{transform:matrix(0.302517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302517,0.000000,0.000000,0.250000,0,0);}
.mc1_c00343{transform:matrix(0.303087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303087,0.000000,0.000000,0.250000,0,0);}
.m3f_c00343{transform:matrix(0.304001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304001,0.000000,0.000000,0.250000,0,0);}
.m5b_c00343{transform:matrix(0.304017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304017,0.000000,0.000000,0.250000,0,0);}
.mac_c00343{transform:matrix(0.304466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304466,0.000000,0.000000,0.250000,0,0);}
.me0_c00343{transform:matrix(0.304571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304571,0.000000,0.000000,0.250000,0,0);}
.m6d_c00343{transform:matrix(0.306479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306479,0.000000,0.000000,0.250000,0,0);}
.m41_c00343{transform:matrix(0.306680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306680,0.000000,0.000000,0.250000,0,0);}
.m4d_c00343{transform:matrix(0.307074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307074,0.000000,0.000000,0.250000,0,0);}
.mb1_c00343{transform:matrix(0.307217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307217,0.000000,0.000000,0.250000,0,0);}
.m88_c00343{transform:matrix(0.307538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307538,0.000000,0.000000,0.250000,0,0);}
.m9_c00343{transform:matrix(0.307975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307975,0.000000,0.000000,0.250000,0,0);}
.m1a_c00343{transform:matrix(0.308375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308375,0.000000,0.000000,0.250000,0,0);}
.m27_c00343{transform:matrix(0.310281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310281,0.000000,0.000000,0.250000,0,0);}
.m9b_c00343{transform:matrix(0.310341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310341,0.000000,0.000000,0.250000,0,0);}
.mc3_c00343{transform:matrix(0.310555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310555,0.000000,0.000000,0.250000,0,0);}
.m2f_c00343{transform:matrix(0.311012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311012,0.000000,0.000000,0.250000,0,0);}
.m9c_c00343{transform:matrix(0.311692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311692,0.000000,0.000000,0.250000,0,0);}
.md2_c00343{transform:matrix(0.312090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312090,0.000000,0.000000,0.250000,0,0);}
.mae_c00343{transform:matrix(0.313059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313059,0.000000,0.000000,0.250000,0,0);}
.m57_c00343{transform:matrix(0.313547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313547,0.000000,0.000000,0.250000,0,0);}
.m10_c00343{transform:matrix(0.313846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313846,0.000000,0.000000,0.250000,0,0);}
.m3a_c00343{transform:matrix(0.315051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315051,0.000000,0.000000,0.250000,0,0);}
.m85_c00343{transform:matrix(0.315955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315955,0.000000,0.000000,0.250000,0,0);}
.m64_c00343{transform:matrix(0.316222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316222,0.000000,0.000000,0.250000,0,0);}
.mc_c00343{transform:matrix(0.316648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316648,0.000000,0.000000,0.250000,0,0);}
.mcc_c00343{transform:matrix(0.316859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316859,0.000000,0.000000,0.250000,0,0);}
.m3_c00343{transform:matrix(0.317033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317033,0.000000,0.000000,0.250000,0,0);}
.md5_c00343{transform:matrix(0.317233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317233,0.000000,0.000000,0.250000,0,0);}
.mbb_c00343{transform:matrix(0.317433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317433,0.000000,0.000000,0.250000,0,0);}
.m2c_c00343{transform:matrix(0.318953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318953,0.000000,0.000000,0.250000,0,0);}
.mdd_c00343{transform:matrix(0.319076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319076,0.000000,0.000000,0.250000,0,0);}
.mb9_c00343{transform:matrix(0.320607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320607,0.000000,0.000000,0.250000,0,0);}
.mc7_c00343{transform:matrix(0.320984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320984,0.000000,0.000000,0.250000,0,0);}
.mcb_c00343{transform:matrix(0.321109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321109,0.000000,0.000000,0.250000,0,0);}
.m36_c00343{transform:matrix(0.321699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321699,0.000000,0.000000,0.250000,0,0);}
.m21_c00343{transform:matrix(0.321914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321914,0.000000,0.000000,0.250000,0,0);}
.ma0_c00343{transform:matrix(0.322057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322057,0.000000,0.000000,0.250000,0,0);}
.m14_c00343{transform:matrix(0.322148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322148,0.000000,0.000000,0.250000,0,0);}
.mb3_c00343{transform:matrix(0.322186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322186,0.000000,0.000000,0.250000,0,0);}
.m38_c00343{transform:matrix(0.323659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323659,0.000000,0.000000,0.250000,0,0);}
.m56_c00343{transform:matrix(0.323896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323896,0.000000,0.000000,0.250000,0,0);}
.m15_c00343{transform:matrix(0.324475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324475,0.000000,0.000000,0.250000,0,0);}
.m84_c00343{transform:matrix(0.326161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326161,0.000000,0.000000,0.250000,0,0);}
.m26_c00343{transform:matrix(0.329558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329558,0.000000,0.000000,0.250000,0,0);}
.mc4_c00343{transform:matrix(0.330047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330047,0.000000,0.000000,0.250000,0,0);}
.mbc_c00343{transform:matrix(0.331518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331518,0.000000,0.000000,0.250000,0,0);}
.m97_c00343{transform:matrix(0.332040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332040,0.000000,0.000000,0.250000,0,0);}
.m4c_c00343{transform:matrix(0.333560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333560,0.000000,0.000000,0.250000,0,0);}
.mc0_c00343{transform:matrix(0.334510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334510,0.000000,0.000000,0.250000,0,0);}
.m8f_c00343{transform:matrix(0.335524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335524,0.000000,0.000000,0.250000,0,0);}
.ma4_c00343{transform:matrix(0.335543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335543,0.000000,0.000000,0.250000,0,0);}
.md3_c00343{transform:matrix(0.337606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337606,0.000000,0.000000,0.250000,0,0);}
.m12_c00343{transform:matrix(0.340010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340010,0.000000,0.000000,0.250000,0,0);}
.m94_c00343{transform:matrix(0.340223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340223,0.000000,0.000000,0.250000,0,0);}
.mb6_c00343{transform:matrix(0.340266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340266,0.000000,0.000000,0.250000,0,0);}
.mf_c00343{transform:matrix(0.341656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341656,0.000000,0.000000,0.250000,0,0);}
.m70_c00343{transform:matrix(0.341856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341856,0.000000,0.000000,0.250000,0,0);}
.ma6_c00343{transform:matrix(0.342724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342724,0.000000,0.000000,0.250000,0,0);}
.m9f_c00343{transform:matrix(0.342934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342934,0.000000,0.000000,0.250000,0,0);}
.md4_c00343{transform:matrix(0.343367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343367,0.000000,0.000000,0.250000,0,0);}
.m34_c00343{transform:matrix(0.345543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345543,0.000000,0.000000,0.250000,0,0);}
.md8_c00343{transform:matrix(0.345995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345995,0.000000,0.000000,0.250000,0,0);}
.mda_c00343{transform:matrix(0.348072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348072,0.000000,0.000000,0.250000,0,0);}
.m42_c00343{transform:matrix(0.348617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348617,0.000000,0.000000,0.250000,0,0);}
.m71_c00343{transform:matrix(0.349021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349021,0.000000,0.000000,0.250000,0,0);}
.md6_c00343{transform:matrix(0.351664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351664,0.000000,0.000000,0.250000,0,0);}
.mdb_c00343{transform:matrix(0.351957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351957,0.000000,0.000000,0.250000,0,0);}
.mdc_c00343{transform:matrix(0.352798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352798,0.000000,0.000000,0.250000,0,0);}
.m3d_c00343{transform:matrix(0.358335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358335,0.000000,0.000000,0.250000,0,0);}
.m35_c00343{transform:matrix(0.364067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364067,0.000000,0.000000,0.250000,0,0);}
.m5_c00343{transform:matrix(0.367322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367322,0.000000,0.000000,0.250000,0,0);}
.mbf_c00343{transform:matrix(0.370709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370709,0.000000,0.000000,0.250000,0,0);}
.mc2_c00343{transform:matrix(0.371834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371834,0.000000,0.000000,0.250000,0,0);}
.mb8_c00343{transform:matrix(0.372136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372136,0.000000,0.000000,0.250000,0,0);}
.mbd_c00343{transform:matrix(0.373079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373079,0.000000,0.000000,0.250000,0,0);}
.m79_c00343{transform:matrix(0.374642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374642,0.000000,0.000000,0.250000,0,0);}
.m67_c00343{transform:matrix(0.376887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376887,0.000000,0.000000,0.250000,0,0);}
.m72_c00343{transform:matrix(0.402503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402503,0.000000,0.000000,0.250000,0,0);}
.ma1_c00343{transform:matrix(0.412834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412834,0.000000,0.000000,0.250000,0,0);}
.m5a_c00343{transform:matrix(0.418352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418352,0.000000,0.000000,0.250000,0,0);}
.m5d_c00343{transform:matrix(0.420077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420077,0.000000,0.000000,0.250000,0,0);}
.m18_c00343{transform:matrix(0.426288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426288,0.000000,0.000000,0.250000,0,0);}
.m22_c00343{transform:matrix(0.427091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427091,0.000000,0.000000,0.250000,0,0);}
.m2a_c00343{transform:matrix(0.435628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435628,0.000000,0.000000,0.250000,0,0);}
.ma3_c00343{transform:matrix(0.443549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443549,0.000000,0.000000,0.250000,0,0);}
.v1_c00343{vertical-align:-38.511000px;}
.v0_c00343{vertical-align:0.000000px;}
.ls5_c00343{letter-spacing:-2.674980px;}
.ls7_c00343{letter-spacing:-1.781017px;}
.ls10_c00343{letter-spacing:-1.765487px;}
.lsf_c00343{letter-spacing:-1.406275px;}
.ls12_c00343{letter-spacing:-1.398632px;}
.ls13_c00343{letter-spacing:-0.924779px;}
.ls3_c00343{letter-spacing:-0.275141px;}
.ls1_c00343{letter-spacing:0.000000px;}
.ls0_c00343{letter-spacing:2.399839px;}
.ls11_c00343{letter-spacing:2.835479px;}
.lsc_c00343{letter-spacing:3.415500px;}
.ls4_c00343{letter-spacing:3.524400px;}
.ls6_c00343{letter-spacing:3.762000px;}
.ls8_c00343{letter-spacing:3.801610px;}
.ls2_c00343{letter-spacing:3.821400px;}
.lsb_c00343{letter-spacing:48.470598px;}
.lse_c00343{letter-spacing:49.896198px;}
.lsa_c00343{letter-spacing:51.321798px;}
.ls9_c00343{letter-spacing:58.449798px;}
.lsd_c00343{letter-spacing:59.875398px;}
.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:-19.107000px;}
.ws1_c00343{word-spacing:-4.662108px;}
.ws4_c00343{word-spacing:-4.203540px;}
.ws5_c00343{word-spacing:0.000000px;}
.ws3_c00343{word-spacing:3.667356px;}
.ws2_c00343{word-spacing:77.727276px;}
._18_c00343{margin-left:-28.943640px;}
._4_c00343{margin-left:-13.069188px;}
._17_c00343{margin-left:-11.616264px;}
._e_c00343{margin-left:-8.712792px;}
._3_c00343{margin-left:-5.426388px;}
._2_c00343{margin-left:-1.604988px;}
._b_c00343{width:5.655672px;}
._8_c00343{width:7.566372px;}
._d_c00343{width:9.094140px;}
._0_c00343{width:10.394208px;}
._15_c00343{width:11.845548px;}
._13_c00343{width:13.298472px;}
._14_c00343{width:16.508844px;}
._9_c00343{width:18.037008px;}
._10_c00343{width:21.399840px;}
._1_c00343{width:22.775544px;}
._6_c00343{width:24.227676px;}
._c_c00343{width:27.285192px;}
._f_c00343{width:29.730492px;}
._a_c00343{width:31.870476px;}
._7_c00343{width:35.346168px;}
._5_c00343{width:36.914328px;}
._16_c00343{width:38.062728px;}
._11_c00343{width:40.736124px;}
._12_c00343{width:42.186276px;}
._19_c00343{width:547.390008px;}
.fc0_c00343{color:transparent;}
.fs1_c00343{font-size:22.176000px;}
.fs10_c00343{font-size:22.572000px;}
.fs0_c00343{font-size:27.720000px;}
.fsc_c00343{font-size:33.264000px;}
.fsb_c00343{font-size:48.470598px;}
.fsf_c00343{font-size:49.896198px;}
.fs9_c00343{font-size:50.688000px;}
.fs6_c00343{font-size:50.886198px;}
.fsa_c00343{font-size:51.321798px;}
.fs8_c00343{font-size:58.449798px;}
.fse_c00343{font-size:59.875398px;}
.fsd_c00343{font-size:68.310000px;}
.fs3_c00343{font-size:70.488000px;}
.fs5_c00343{font-size:72.864000px;}
.fs4_c00343{font-size:75.240000px;}
.fs7_c00343{font-size:76.032198px;}
.fs2_c00343{font-size:76.428000px;}
.fs11_c00343{font-size:86.328000px;}
.y0_c00343{bottom:0.000000px;}
.y1_c00343{bottom:76.500000px;}
.y21_c00343{bottom:80.458335px;}
.y20_c00343{bottom:139.977135px;}
.y1f_c00343{bottom:175.260735px;}
.y1e_c00343{bottom:208.400985px;}
.y1d_c00343{bottom:226.220985px;}
.y1c_c00343{bottom:241.194735px;}
.y1b_c00343{bottom:273.627135px;}
.y1a_c00343{bottom:306.415935px;}
.y3_c00343{bottom:336.353535px;}
.y19_c00343{bottom:338.843385px;}
.y18_c00343{bottom:370.924335px;}
.y17_c00343{bottom:407.277135px;}
.y16_c00343{bottom:439.704585px;}
.y15_c00343{bottom:471.780585px;}
.y14_c00343{bottom:505.287135px;}
.y13_c00343{bottom:524.884185px;}
.y12_c00343{bottom:537.714585px;}
.y11_c00343{bottom:601.866585px;}
.y10_c00343{bottom:635.016735px;}
.yf_c00343{bottom:668.161935px;}
.ye_c00343{bottom:699.520185px;}
.yd_c00343{bottom:715.206735px;}
.yc_c00343{bottom:731.601135px;}
.yb_c00343{bottom:764.033535px;}
.ya_c00343{bottom:796.104585px;}
.y9_c00343{bottom:823.190985px;}
.y8_c00343{bottom:828.185535px;}
.y7_c00343{bottom:860.974335px;}
.y6_c00343{bottom:893.406735px;}
.y5_c00343{bottom:926.195535px;}
.y4_c00343{bottom:972.171135px;}
.y2_c00343{bottom:1084.788585px;}
.h3_c00343{height:23.128875px;}
.h12_c00343{height:23.541891px;}
.h2_c00343{height:28.911094px;}
.hd_c00343{height:32.281418px;}
.h11_c00343{height:33.230868px;}
.hc_c00343{height:34.180317px;}
.he_c00343{height:34.693313px;}
.ha_c00343{height:38.927565px;}
.h10_c00343{height:39.877015px;}
.h13_c00343{height:46.215211px;}
.hb_c00343{height:52.866000px;}
.h8_c00343{height:53.072714px;}
.hf_c00343{height:67.042529px;}
.h5_c00343{height:69.180117px;}
.h7_c00343{height:71.512031px;}
.h6_c00343{height:73.843945px;}
.h9_c00343{height:74.584319px;}
.h4_c00343{height:75.009902px;}
.h1_c00343{height:1110.000000px;}
.h0_c00343{height:1263.000000px;}
.w1_c00343{width:775.500000px;}
.w0_c00343{width:892.500000px;}
.x0_c00343{left:0.000000px;}
.x3_c00343{left:14.515035px;}
.x2_c00343{left:56.901885px;}
.x1_c00343{left:58.500000px;}
.x66_c00343{left:93.690285px;}
.x47_c00343{left:94.833735px;}
.x2d_c00343{left:96.026685px;}
.x5_c00343{left:97.313685px;}
.x67_c00343{left:104.926785px;}
.x2e_c00343{left:107.050335px;}
.x80_c00343{left:117.019635px;}
.x6_c00343{left:118.633335px;}
.x6d_c00343{left:127.221585px;}
.x48_c00343{left:128.612535px;}
.x21_c00343{left:131.938935px;}
.x6e_c00343{left:138.269985px;}
.x58_c00343{left:139.472835px;}
.x72_c00343{left:148.145235px;}
.x2f_c00343{left:150.293535px;}
.x22_c00343{left:151.362735px;}
.x18_c00343{left:161.030085px;}
.x7_c00343{left:163.010085px;}
.x79_c00343{left:171.266685px;}
.x8_c00343{left:172.444785px;}
.x49_c00343{left:175.340535px;}
.x6f_c00343{left:181.899285px;}
.x42_c00343{left:183.592185px;}
.x51_c00343{left:187.458135px;}
.x9_c00343{left:195.091035px;}
.x4a_c00343{left:203.496135px;}
.x73_c00343{left:204.748485px;}
.x43_c00343{left:205.906785px;}
.x7a_c00343{left:207.188835px;}
.x59_c00343{left:215.188035px;}
.x68_c00343{left:216.440385px;}
.x4b_c00343{left:219.534135px;}
.x81_c00343{left:225.899835px;}
.x7b_c00343{left:227.107635px;}
.x30_c00343{left:229.250985px;}
.xa_c00343{left:231.379485px;}
.x23_c00343{left:239.155935px;}
.x70_c00343{left:249.239085px;}
.xb_c00343{left:250.971585px;}
.x31_c00343{left:252.055635px;}
.x5a_c00343{left:259.346985px;}
.xc_c00343{left:262.366485px;}
.x44_c00343{left:263.693085px;}
.x74_c00343{left:271.509135px;}
.x19_c00343{left:272.776335px;}
.x71_c00343{left:282.052635px;}
.x8b_c00343{left:283.423785px;}
.x7c_c00343{left:286.532385px;}
.x69_c00343{left:293.170335px;}
.x24_c00343{left:294.397935px;}
.x45_c00343{left:296.679885px;}
.x75_c00343{left:304.787985px;}
.xd_c00343{left:305.931435px;}
.x84_c00343{left:313.257435px;}
.x25_c00343{left:316.658085px;}
.x52_c00343{left:327.117435px;}
.xe_c00343{left:328.736085px;}
.x26_c00343{left:339.254835px;}
.x27_c00343{left:343.091085px;}
.x5b_c00343{left:348.739035px;}
.xf_c00343{left:350.481435px;}
.x8f_c00343{left:352.327785px;}
.x5c_c00343{left:358.841985px;}
.x32_c00343{left:359.901285px;}
.x10_c00343{left:361.341735px;}
.x28_c00343{left:370.994235px;}
.x3e_c00343{left:373.266285px;}
.x5d_c00343{left:381.884235px;}
.x53_c00343{left:383.591985px;}
.x5e_c00343{left:392.888085px;}
.x4c_c00343{left:394.684935px;}
.x29_c00343{left:404.456235px;}
.x11_c00343{left:405.758085px;}
.x54_c00343{left:415.930335px;}
.x76_c00343{left:426.038235px;}
.x12_c00343{left:427.815285px;}
.x5f_c00343{left:437.294535px;}
.x1a_c00343{left:438.903285px;}
.x3f_c00343{left:440.224935px;}
.x33_c00343{left:449.219085px;}
.x40_c00343{left:450.560535px;}
.x13_c00343{left:460.920885px;}
.x4_c00343{left:464.623485px;}
.x82_c00343{left:470.603085px;}
.x1b_c00343{left:471.998985px;}
.x50_c00343{left:482.240535px;}
.x7f_c00343{left:491.412885px;}
.x1c_c00343{left:493.882935px;}
.x3c_c00343{left:498.372585px;}
.x60_c00343{left:503.733435px;}
.x46_c00343{left:505.129335px;}
.x85_c00343{left:513.861135px;}
.x83_c00343{left:515.118435px;}
.x34_c00343{left:517.271685px;}
.x91_c00343{left:522.696885px;}
.x8c_c00343{left:524.959035px;}
.x77_c00343{left:526.196535px;}
.x14_c00343{left:527.617185px;}
.x4d_c00343{left:533.522535px;}
.x35_c00343{left:537.447885px;}
.x61_c00343{left:547.085535px;}
.x1d_c00343{left:548.996235px;}
.x6a_c00343{left:558.079485px;}
.x7d_c00343{left:559.534785px;}
.x15_c00343{left:560.638635px;}
.x90_c00343{left:570.380235px;}
.x41_c00343{left:571.424685px;}
.x8e_c00343{left:581.072235px;}
.x1e_c00343{left:582.794835px;}
.x78_c00343{left:591.214785px;}
.x16_c00343{left:593.056185px;}
.x55_c00343{left:601.891935px;}
.x17_c00343{left:603.010635px;}
.x36_c00343{left:604.594635px;}
.x3d_c00343{left:608.430885px;}
.x37_c00343{left:613.702635px;}
.x2a_c00343{left:615.643035px;}
.x62_c00343{left:625.132185px;}
.x6b_c00343{left:626.250885px;}
.x4e_c00343{left:627.374535px;}
.x7e_c00343{left:628.681335px;}
.x88_c00343{left:636.670635px;}
.x38_c00343{left:638.378385px;}
.x86_c00343{left:646.808235px;}
.x1f_c00343{left:649.303035px;}
.x63_c00343{left:657.871485px;}
.x89_c00343{left:659.123835px;}
.x39_c00343{left:660.554385px;}
.x87_c00343{left:669.979185px;}
.x2b_c00343{left:671.043435px;}
.x56_c00343{left:680.349435px;}
.x3a_c00343{left:682.190835px;}
.x64_c00343{left:691.556235px;}
.x20_c00343{left:693.318435px;}
.x6c_c00343{left:702.114585px;}
.x2c_c00343{left:703.946085px;}
.x57_c00343{left:713.455035px;}
.x8a_c00343{left:714.647985px;}
.x4f_c00343{left:715.761735px;}
.x65_c00343{left:724.646985px;}
.x3b_c00343{left:726.102285px;}
.x8d_c00343{left:747.129885px;}
@media print{
.v1_c00343{vertical-align:-34.232000pt;}
.v0_c00343{vertical-align:0.000000pt;}
.ls5_c00343{letter-spacing:-2.377760pt;}
.ls7_c00343{letter-spacing:-1.583126pt;}
.ls10_c00343{letter-spacing:-1.569322pt;}
.lsf_c00343{letter-spacing:-1.250022pt;}
.ls12_c00343{letter-spacing:-1.243229pt;}
.ls13_c00343{letter-spacing:-0.822026pt;}
.ls3_c00343{letter-spacing:-0.244570pt;}
.ls1_c00343{letter-spacing:0.000000pt;}
.ls0_c00343{letter-spacing:2.133190pt;}
.ls11_c00343{letter-spacing:2.520426pt;}
.lsc_c00343{letter-spacing:3.036000pt;}
.ls4_c00343{letter-spacing:3.132800pt;}
.ls6_c00343{letter-spacing:3.344000pt;}
.ls8_c00343{letter-spacing:3.379209pt;}
.ls2_c00343{letter-spacing:3.396800pt;}
.lsb_c00343{letter-spacing:43.084976pt;}
.lse_c00343{letter-spacing:44.352176pt;}
.lsa_c00343{letter-spacing:45.619376pt;}
.ls9_c00343{letter-spacing:51.955376pt;}
.lsd_c00343{letter-spacing:53.222576pt;}
.ws0_c00343{word-spacing:-16.984000pt;}
.ws1_c00343{word-spacing:-4.144096pt;}
.ws4_c00343{word-spacing:-3.736480pt;}
.ws5_c00343{word-spacing:0.000000pt;}
.ws3_c00343{word-spacing:3.259872pt;}
.ws2_c00343{word-spacing:69.090912pt;}
._18_c00343{margin-left:-25.727680pt;}
._4_c00343{margin-left:-11.617056pt;}
._17_c00343{margin-left:-10.325568pt;}
._e_c00343{margin-left:-7.744704pt;}
._3_c00343{margin-left:-4.823456pt;}
._2_c00343{margin-left:-1.426656pt;}
._b_c00343{width:5.027264pt;}
._8_c00343{width:6.725664pt;}
._d_c00343{width:8.083680pt;}
._0_c00343{width:9.239296pt;}
._15_c00343{width:10.529376pt;}
._13_c00343{width:11.820864pt;}
._14_c00343{width:14.674528pt;}
._9_c00343{width:16.032896pt;}
._10_c00343{width:19.022080pt;}
._1_c00343{width:20.244928pt;}
._6_c00343{width:21.535712pt;}
._c_c00343{width:24.253504pt;}
._f_c00343{width:26.427104pt;}
._a_c00343{width:28.329312pt;}
._7_c00343{width:31.418816pt;}
._5_c00343{width:32.812736pt;}
._16_c00343{width:33.833536pt;}
._11_c00343{width:36.209888pt;}
._12_c00343{width:37.498912pt;}
._19_c00343{width:486.568896pt;}
.fs1_c00343{font-size:19.712000pt;}
.fs10_c00343{font-size:20.064000pt;}
.fs0_c00343{font-size:24.640000pt;}
.fsc_c00343{font-size:29.568000pt;}
.fsb_c00343{font-size:43.084976pt;}
.fsf_c00343{font-size:44.352176pt;}
.fs9_c00343{font-size:45.056000pt;}
.fs6_c00343{font-size:45.232176pt;}
.fsa_c00343{font-size:45.619376pt;}
.fs8_c00343{font-size:51.955376pt;}
.fse_c00343{font-size:53.222576pt;}
.fsd_c00343{font-size:60.720000pt;}
.fs3_c00343{font-size:62.656000pt;}
.fs5_c00343{font-size:64.768000pt;}
.fs4_c00343{font-size:66.880000pt;}
.fs7_c00343{font-size:67.584176pt;}
.fs2_c00343{font-size:67.936000pt;}
.fs11_c00343{font-size:76.736000pt;}
.y0_c00343{bottom:0.000000pt;}
.y1_c00343{bottom:68.000000pt;}
.y21_c00343{bottom:71.518520pt;}
.y20_c00343{bottom:124.424120pt;}
.y1f_c00343{bottom:155.787320pt;}
.y1e_c00343{bottom:185.245320pt;}
.y1d_c00343{bottom:201.085320pt;}
.y1c_c00343{bottom:214.395320pt;}
.y1b_c00343{bottom:243.224120pt;}
.y1a_c00343{bottom:272.369720pt;}
.y3_c00343{bottom:298.980920pt;}
.y19_c00343{bottom:301.194120pt;}
.y18_c00343{bottom:329.710520pt;}
.y17_c00343{bottom:362.024120pt;}
.y16_c00343{bottom:390.848520pt;}
.y15_c00343{bottom:419.360520pt;}
.y14_c00343{bottom:449.144120pt;}
.y13_c00343{bottom:466.563720pt;}
.y12_c00343{bottom:477.968520pt;}
.y11_c00343{bottom:534.992520pt;}
.y10_c00343{bottom:564.459320pt;}
.yf_c00343{bottom:593.921720pt;}
.ye_c00343{bottom:621.795720pt;}
.yd_c00343{bottom:635.739320pt;}
.yc_c00343{bottom:650.312120pt;}
.yb_c00343{bottom:679.140920pt;}
.ya_c00343{bottom:707.648520pt;}
.y9_c00343{bottom:731.725320pt;}
.y8_c00343{bottom:736.164920pt;}
.y7_c00343{bottom:765.310520pt;}
.y6_c00343{bottom:794.139320pt;}
.y5_c00343{bottom:823.284920pt;}
.y4_c00343{bottom:864.152120pt;}
.y2_c00343{bottom:964.256520pt;}
.h3_c00343{height:20.559000pt;}
.h12_c00343{height:20.926125pt;}
.h2_c00343{height:25.698750pt;}
.hd_c00343{height:28.694594pt;}
.h11_c00343{height:29.538549pt;}
.hc_c00343{height:30.382504pt;}
.he_c00343{height:30.838500pt;}
.ha_c00343{height:34.602280pt;}
.h10_c00343{height:35.446236pt;}
.h13_c00343{height:41.080187pt;}
.hb_c00343{height:46.992000pt;}
.h8_c00343{height:47.175746pt;}
.hf_c00343{height:59.593359pt;}
.h5_c00343{height:61.493438pt;}
.h7_c00343{height:63.566250pt;}
.h6_c00343{height:65.639063pt;}
.h9_c00343{height:66.297173pt;}
.h4_c00343{height:66.675469pt;}
.h1_c00343{height:986.666667pt;}
.h0_c00343{height:1122.666667pt;}
.w1_c00343{width:689.333333pt;}
.w0_c00343{width:793.333333pt;}
.x0_c00343{left:0.000000pt;}
.x3_c00343{left:12.902253pt;}
.x2_c00343{left:50.579453pt;}
.x1_c00343{left:52.000000pt;}
.x66_c00343{left:83.280253pt;}
.x47_c00343{left:84.296653pt;}
.x2d_c00343{left:85.357053pt;}
.x5_c00343{left:86.501053pt;}
.x67_c00343{left:93.268253pt;}
.x2e_c00343{left:95.155853pt;}
.x80_c00343{left:104.017453pt;}
.x6_c00343{left:105.451853pt;}
.x6d_c00343{left:113.085853pt;}
.x48_c00343{left:114.322253pt;}
.x21_c00343{left:117.279053pt;}
.x6e_c00343{left:122.906653pt;}
.x58_c00343{left:123.975853pt;}
.x72_c00343{left:131.684653pt;}
.x2f_c00343{left:133.594253pt;}
.x22_c00343{left:134.544653pt;}
.x18_c00343{left:143.137853pt;}
.x7_c00343{left:144.897853pt;}
.x79_c00343{left:152.237053pt;}
.x8_c00343{left:153.284253pt;}
.x49_c00343{left:155.858253pt;}
.x6f_c00343{left:161.688253pt;}
.x42_c00343{left:163.193053pt;}
.x51_c00343{left:166.629453pt;}
.x9_c00343{left:173.414253pt;}
.x4a_c00343{left:180.885453pt;}
.x73_c00343{left:181.998653pt;}
.x43_c00343{left:183.028253pt;}
.x7a_c00343{left:184.167853pt;}
.x59_c00343{left:191.278253pt;}
.x68_c00343{left:192.391453pt;}
.x4b_c00343{left:195.141453pt;}
.x81_c00343{left:200.799853pt;}
.x7b_c00343{left:201.873453pt;}
.x30_c00343{left:203.778653pt;}
.xa_c00343{left:205.670653pt;}
.x23_c00343{left:212.583053pt;}
.x70_c00343{left:221.545853pt;}
.xb_c00343{left:223.085853pt;}
.x31_c00343{left:224.049453pt;}
.x5a_c00343{left:230.530653pt;}
.xc_c00343{left:233.214653pt;}
.x44_c00343{left:234.393853pt;}
.x74_c00343{left:241.341453pt;}
.x19_c00343{left:242.467853pt;}
.x71_c00343{left:250.713453pt;}
.x8b_c00343{left:251.932253pt;}
.x7c_c00343{left:254.695453pt;}
.x69_c00343{left:260.595853pt;}
.x24_c00343{left:261.687053pt;}
.x45_c00343{left:263.715453pt;}
.x75_c00343{left:270.922653pt;}
.xd_c00343{left:271.939053pt;}
.x84_c00343{left:278.451053pt;}
.x25_c00343{left:281.473853pt;}
.x52_c00343{left:290.771053pt;}
.xe_c00343{left:292.209853pt;}
.x26_c00343{left:301.559853pt;}
.x27_c00343{left:304.969853pt;}
.x5b_c00343{left:309.990253pt;}
.xf_c00343{left:311.539053pt;}
.x8f_c00343{left:313.180253pt;}
.x5c_c00343{left:318.970653pt;}
.x32_c00343{left:319.912253pt;}
.x10_c00343{left:321.192653pt;}
.x28_c00343{left:329.772653pt;}
.x3e_c00343{left:331.792253pt;}
.x5d_c00343{left:339.452653pt;}
.x53_c00343{left:340.970653pt;}
.x5e_c00343{left:349.233853pt;}
.x4c_c00343{left:350.831053pt;}
.x29_c00343{left:359.516653pt;}
.x11_c00343{left:360.673853pt;}
.x54_c00343{left:369.715853pt;}
.x76_c00343{left:378.700653pt;}
.x12_c00343{left:380.280253pt;}
.x5f_c00343{left:388.706253pt;}
.x1a_c00343{left:390.136253pt;}
.x3f_c00343{left:391.311053pt;}
.x33_c00343{left:399.305853pt;}
.x40_c00343{left:400.498253pt;}
.x13_c00343{left:409.707453pt;}
.x4_c00343{left:412.998653pt;}
.x82_c00343{left:418.313853pt;}
.x1b_c00343{left:419.554653pt;}
.x50_c00343{left:428.658253pt;}
.x7f_c00343{left:436.811453pt;}
.x1c_c00343{left:439.007053pt;}
.x3c_c00343{left:442.997853pt;}
.x60_c00343{left:447.763053pt;}
.x46_c00343{left:449.003853pt;}
.x85_c00343{left:456.765453pt;}
.x83_c00343{left:457.883053pt;}
.x34_c00343{left:459.797053pt;}
.x91_c00343{left:464.619453pt;}
.x8c_c00343{left:466.630253pt;}
.x77_c00343{left:467.730253pt;}
.x14_c00343{left:468.993053pt;}
.x4d_c00343{left:474.242253pt;}
.x35_c00343{left:477.731453pt;}
.x61_c00343{left:486.298253pt;}
.x1d_c00343{left:487.996653pt;}
.x6a_c00343{left:496.070653pt;}
.x7d_c00343{left:497.364253pt;}
.x15_c00343{left:498.345453pt;}
.x90_c00343{left:507.004653pt;}
.x41_c00343{left:507.933053pt;}
.x8e_c00343{left:516.508653pt;}
.x1e_c00343{left:518.039853pt;}
.x78_c00343{left:525.524253pt;}
.x16_c00343{left:527.161053pt;}
.x55_c00343{left:535.015053pt;}
.x17_c00343{left:536.009453pt;}
.x36_c00343{left:537.417453pt;}
.x3d_c00343{left:540.827453pt;}
.x37_c00343{left:545.513453pt;}
.x2a_c00343{left:547.238253pt;}
.x62_c00343{left:555.673053pt;}
.x6b_c00343{left:556.667453pt;}
.x4e_c00343{left:557.666253pt;}
.x7e_c00343{left:558.827853pt;}
.x88_c00343{left:565.929453pt;}
.x38_c00343{left:567.447453pt;}
.x86_c00343{left:574.940653pt;}
.x1f_c00343{left:577.158253pt;}
.x63_c00343{left:584.774653pt;}
.x89_c00343{left:585.887853pt;}
.x39_c00343{left:587.159453pt;}
.x87_c00343{left:595.537053pt;}
.x2b_c00343{left:596.483053pt;}
.x56_c00343{left:604.755053pt;}
.x3a_c00343{left:606.391853pt;}
.x64_c00343{left:614.716653pt;}
.x20_c00343{left:616.283053pt;}
.x6c_c00343{left:624.101853pt;}
.x2c_c00343{left:625.729853pt;}
.x57_c00343{left:634.182253pt;}
.x8a_c00343{left:635.242653pt;}
.x4f_c00343{left:636.232653pt;}
.x65_c00343{left:644.130653pt;}
.x3b_c00343{left:645.424253pt;}
.x8d_c00343{left:664.115453pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bf55f9b19ca7bf40fd83dca8.woff2')format("woff");}.ff1_c00344{font-family:ff1_c00344;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00344;src:url('chunks/assets/font_6f27808ba9d474cb22b19752.woff2')format("woff");}.ff2_c00344{font-family:ff2_c00344;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00344;src:url('chunks/assets/font_a73edc73b393a8a12d9138c0.woff2')format("woff");}.ff3_c00344{font-family:ff3_c00344;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00344;src:url('chunks/assets/font_f6c09a201f9051c1680e1c1d.woff2')format("woff");}.ff4_c00344{font-family:ff4_c00344;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00344;src:url('chunks/assets/font_aa1626c16b210d93d6f4a172.woff2')format("woff");}.ff5_c00344{font-family:ff5_c00344;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5c_c00344{transform:matrix(0.071429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071429,0.000000,0.000000,0.250000,0,0);}
.m59_c00344{transform:matrix(0.092858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092858,0.000000,0.000000,0.250000,0,0);}
.m87_c00344{transform:matrix(0.113267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113267,0.000000,0.000000,0.250000,0,0);}
.m1_c00344{transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);}
.m5b_c00344{transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);}
.m84_c00344{transform:matrix(0.181817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181817,0.000000,0.000000,0.250000,0,0);}
.m43_c00344{transform:matrix(0.183285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183285,0.000000,0.000000,0.250000,0,0);}
.m51_c00344{transform:matrix(0.215619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215619,0.000000,0.000000,0.250000,0,0);}
.m5a_c00344{transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);}
.m19_c00344{transform:matrix(0.238236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238236,0.000000,0.000000,0.250000,0,0);}
.m42_c00344{transform:matrix(0.242206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242206,0.000000,0.000000,0.250000,0,0);}
.m7e_c00344{transform:matrix(0.245064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245064,0.000000,0.000000,0.250000,0,0);}
.m0_c00344{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00344{transform:matrix(0.251396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251396,0.000000,0.000000,0.250000,0,0);}
.m9_c00344{transform:matrix(0.254139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254139,0.000000,0.000000,0.250000,0,0);}
.m14_c00344{transform:matrix(0.255266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255266,0.000000,0.000000,0.250000,0,0);}
.md_c00344{transform:matrix(0.255409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255409,0.000000,0.000000,0.250000,0,0);}
.m12_c00344{transform:matrix(0.258103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258103,0.000000,0.000000,0.250000,0,0);}
.m6f_c00344{transform:matrix(0.259941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259941,0.000000,0.000000,0.250000,0,0);}
.m48_c00344{transform:matrix(0.260046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260046,0.000000,0.000000,0.250000,0,0);}
.mac_c00344{transform:matrix(0.260387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260387,0.000000,0.000000,0.250000,0,0);}
.m1f_c00344{transform:matrix(0.264223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264223,0.000000,0.000000,0.250000,0,0);}
.m1d_c00344{transform:matrix(0.265079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265079,0.000000,0.000000,0.250000,0,0);}
.m66_c00344{transform:matrix(0.266057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266057,0.000000,0.000000,0.250000,0,0);}
.m74_c00344{transform:matrix(0.266768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266768,0.000000,0.000000,0.250000,0,0);}
.m1b_c00344{transform:matrix(0.267557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267557,0.000000,0.000000,0.250000,0,0);}
.m9f_c00344{transform:matrix(0.268904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268904,0.000000,0.000000,0.250000,0,0);}
.mb3_c00344{transform:matrix(0.269715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269715,0.000000,0.000000,0.250000,0,0);}
.mb2_c00344{transform:matrix(0.269914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269914,0.000000,0.000000,0.250000,0,0);}
.m4b_c00344{transform:matrix(0.270174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270174,0.000000,0.000000,0.250000,0,0);}
.m9d_c00344{transform:matrix(0.271057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271057,0.000000,0.000000,0.250000,0,0);}
.m88_c00344{transform:matrix(0.271270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271270,0.000000,0.000000,0.250000,0,0);}
.m5_c00344{transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);}
.m29_c00344{transform:matrix(0.272173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272173,0.000000,0.000000,0.250000,0,0);}
.m15_c00344{transform:matrix(0.274532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274532,0.000000,0.000000,0.250000,0,0);}
.m3b_c00344{transform:matrix(0.275213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275213,0.000000,0.000000,0.250000,0,0);}
.m8a_c00344{transform:matrix(0.275231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275231,0.000000,0.000000,0.250000,0,0);}
.m64_c00344{transform:matrix(0.275552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275552,0.000000,0.000000,0.250000,0,0);}
.m6d_c00344{transform:matrix(0.276661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276661,0.000000,0.000000,0.250000,0,0);}
.m37_c00344{transform:matrix(0.276796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276796,0.000000,0.000000,0.250000,0,0);}
.ma4_c00344{transform:matrix(0.277012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277012,0.000000,0.000000,0.250000,0,0);}
.m85_c00344{transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);}
.m8c_c00344{transform:matrix(0.277254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277254,0.000000,0.000000,0.250000,0,0);}
.m8b_c00344{transform:matrix(0.277288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277288,0.000000,0.000000,0.250000,0,0);}
.m68_c00344{transform:matrix(0.278368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278368,0.000000,0.000000,0.250000,0,0);}
.mb1_c00344{transform:matrix(0.279671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279671,0.000000,0.000000,0.250000,0,0);}
.m3d_c00344{transform:matrix(0.281059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281059,0.000000,0.000000,0.250000,0,0);}
.m67_c00344{transform:matrix(0.281410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281410,0.000000,0.000000,0.250000,0,0);}
.m27_c00344{transform:matrix(0.281704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281704,0.000000,0.000000,0.250000,0,0);}
.m24_c00344{transform:matrix(0.282148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282148,0.000000,0.000000,0.250000,0,0);}
.ma0_c00344{transform:matrix(0.282319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282319,0.000000,0.000000,0.250000,0,0);}
.m50_c00344{transform:matrix(0.283784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283784,0.000000,0.000000,0.250000,0,0);}
.mb0_c00344{transform:matrix(0.284549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284549,0.000000,0.000000,0.250000,0,0);}
.m16_c00344{transform:matrix(0.284965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284965,0.000000,0.000000,0.250000,0,0);}
.mc_c00344{transform:matrix(0.285105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285105,0.000000,0.000000,0.250000,0,0);}
.m7f_c00344{transform:matrix(0.285150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285150,0.000000,0.000000,0.250000,0,0);}
.m90_c00344{transform:matrix(0.285824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285824,0.000000,0.000000,0.250000,0,0);}
.m6c_c00344{transform:matrix(0.286745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286745,0.000000,0.000000,0.250000,0,0);}
.m75_c00344{transform:matrix(0.287277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287277,0.000000,0.000000,0.250000,0,0);}
.mb_c00344{transform:matrix(0.287781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287781,0.000000,0.000000,0.250000,0,0);}
.ma9_c00344{transform:matrix(0.288131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288131,0.000000,0.000000,0.250000,0,0);}
.m56_c00344{transform:matrix(0.288215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288215,0.000000,0.000000,0.250000,0,0);}
.m94_c00344{transform:matrix(0.288537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288537,0.000000,0.000000,0.250000,0,0);}
.m35_c00344{transform:matrix(0.289637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289637,0.000000,0.000000,0.250000,0,0);}
.m82_c00344{transform:matrix(0.289721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289721,0.000000,0.000000,0.250000,0,0);}
.m4_c00344{transform:matrix(0.289947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289947,0.000000,0.000000,0.250000,0,0);}
.m58_c00344{transform:matrix(0.289956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289956,0.000000,0.000000,0.250000,0,0);}
.m77_c00344{transform:matrix(0.291350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291350,0.000000,0.000000,0.250000,0,0);}
.m60_c00344{transform:matrix(0.292407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292407,0.000000,0.000000,0.250000,0,0);}
.m1e_c00344{transform:matrix(0.293428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293428,0.000000,0.000000,0.250000,0,0);}
.ma_c00344{transform:matrix(0.293827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293827,0.000000,0.000000,0.250000,0,0);}
.m86_c00344{transform:matrix(0.293833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293833,0.000000,0.000000,0.250000,0,0);}
.m22_c00344{transform:matrix(0.293927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293927,0.000000,0.000000,0.250000,0,0);}
.m32_c00344{transform:matrix(0.294823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294823,0.000000,0.000000,0.250000,0,0);}
.m34_c00344{transform:matrix(0.295448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295448,0.000000,0.000000,0.250000,0,0);}
.m7_c00344{transform:matrix(0.295605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295605,0.000000,0.000000,0.250000,0,0);}
.m7b_c00344{transform:matrix(0.296014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296014,0.000000,0.000000,0.250000,0,0);}
.m5d_c00344{transform:matrix(0.296260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296260,0.000000,0.000000,0.250000,0,0);}
.m46_c00344{transform:matrix(0.296461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296461,0.000000,0.000000,0.250000,0,0);}
.m2d_c00344{transform:matrix(0.296578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296578,0.000000,0.000000,0.250000,0,0);}
.m2b_c00344{transform:matrix(0.296756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296756,0.000000,0.000000,0.250000,0,0);}
.m6a_c00344{transform:matrix(0.297537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297537,0.000000,0.000000,0.250000,0,0);}
.m6b_c00344{transform:matrix(0.298329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298329,0.000000,0.000000,0.250000,0,0);}
.m54_c00344{transform:matrix(0.298377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298377,0.000000,0.000000,0.250000,0,0);}
.m80_c00344{transform:matrix(0.298474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298474,0.000000,0.000000,0.250000,0,0);}
.m23_c00344{transform:matrix(0.299291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299291,0.000000,0.000000,0.250000,0,0);}
.m97_c00344{transform:matrix(0.300364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300364,0.000000,0.000000,0.250000,0,0);}
.m11_c00344{transform:matrix(0.300379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300379,0.000000,0.000000,0.250000,0,0);}
.m70_c00344{transform:matrix(0.300918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300918,0.000000,0.000000,0.250000,0,0);}
.m4a_c00344{transform:matrix(0.300995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300995,0.000000,0.000000,0.250000,0,0);}
.m21_c00344{transform:matrix(0.301217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301217,0.000000,0.000000,0.250000,0,0);}
.m6_c00344{transform:matrix(0.301344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301344,0.000000,0.000000,0.250000,0,0);}
.m53_c00344{transform:matrix(0.302183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302183,0.000000,0.000000,0.250000,0,0);}
.m2_c00344{transform:matrix(0.302747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302747,0.000000,0.000000,0.250000,0,0);}
.m33_c00344{transform:matrix(0.302807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302807,0.000000,0.000000,0.250000,0,0);}
.me_c00344{transform:matrix(0.302844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302844,0.000000,0.000000,0.250000,0,0);}
.m76_c00344{transform:matrix(0.303545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303545,0.000000,0.000000,0.250000,0,0);}
.m78_c00344{transform:matrix(0.303643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303643,0.000000,0.000000,0.250000,0,0);}
.m8d_c00344{transform:matrix(0.303698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303698,0.000000,0.000000,0.250000,0,0);}
.m72_c00344{transform:matrix(0.305254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305254,0.000000,0.000000,0.250000,0,0);}
.ma6_c00344{transform:matrix(0.305319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305319,0.000000,0.000000,0.250000,0,0);}
.mad_c00344{transform:matrix(0.306030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306030,0.000000,0.000000,0.250000,0,0);}
.m71_c00344{transform:matrix(0.306056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306056,0.000000,0.000000,0.250000,0,0);}
.m2e_c00344{transform:matrix(0.306390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306390,0.000000,0.000000,0.250000,0,0);}
.m5f_c00344{transform:matrix(0.306947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306947,0.000000,0.000000,0.250000,0,0);}
.m4d_c00344{transform:matrix(0.306959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306959,0.000000,0.000000,0.250000,0,0);}
.m7d_c00344{transform:matrix(0.307232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307232,0.000000,0.000000,0.250000,0,0);}
.m92_c00344{transform:matrix(0.309875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309875,0.000000,0.000000,0.250000,0,0);}
.maf_c00344{transform:matrix(0.311283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311283,0.000000,0.000000,0.250000,0,0);}
.m36_c00344{transform:matrix(0.311538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311538,0.000000,0.000000,0.250000,0,0);}
.m10_c00344{transform:matrix(0.311558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311558,0.000000,0.000000,0.250000,0,0);}
.m79_c00344{transform:matrix(0.311587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311587,0.000000,0.000000,0.250000,0,0);}
.ma8_c00344{transform:matrix(0.311825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311825,0.000000,0.000000,0.250000,0,0);}
.m61_c00344{transform:matrix(0.311850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311850,0.000000,0.000000,0.250000,0,0);}
.m3f_c00344{transform:matrix(0.311861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311861,0.000000,0.000000,0.250000,0,0);}
.m95_c00344{transform:matrix(0.312433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312433,0.000000,0.000000,0.250000,0,0);}
.m99_c00344{transform:matrix(0.314405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314405,0.000000,0.000000,0.250000,0,0);}
.m4f_c00344{transform:matrix(0.314645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314645,0.000000,0.000000,0.250000,0,0);}
.m13_c00344{transform:matrix(0.314666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314666,0.000000,0.000000,0.250000,0,0);}
.m52_c00344{transform:matrix(0.315180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315180,0.000000,0.000000,0.250000,0,0);}
.m8e_c00344{transform:matrix(0.315189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315189,0.000000,0.000000,0.250000,0,0);}
.mab_c00344{transform:matrix(0.315287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315287,0.000000,0.000000,0.250000,0,0);}
.mf_c00344{transform:matrix(0.315815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315815,0.000000,0.000000,0.250000,0,0);}
.m3_c00344{transform:matrix(0.317574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317574,0.000000,0.000000,0.250000,0,0);}
.m18_c00344{transform:matrix(0.317953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317953,0.000000,0.000000,0.250000,0,0);}
.m17_c00344{transform:matrix(0.318217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318217,0.000000,0.000000,0.250000,0,0);}
.m55_c00344{transform:matrix(0.318221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318221,0.000000,0.000000,0.250000,0,0);}
.m7c_c00344{transform:matrix(0.318836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318836,0.000000,0.000000,0.250000,0,0);}
.m9c_c00344{transform:matrix(0.320614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320614,0.000000,0.000000,0.250000,0,0);}
.m63_c00344{transform:matrix(0.322272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322272,0.000000,0.000000,0.250000,0,0);}
.m20_c00344{transform:matrix(0.322656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322656,0.000000,0.000000,0.250000,0,0);}
.m45_c00344{transform:matrix(0.322812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322812,0.000000,0.000000,0.250000,0,0);}
.m8f_c00344{transform:matrix(0.322888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322888,0.000000,0.000000,0.250000,0,0);}
.m96_c00344{transform:matrix(0.322968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322968,0.000000,0.000000,0.250000,0,0);}
.maa_c00344{transform:matrix(0.323374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323374,0.000000,0.000000,0.250000,0,0);}
.ma3_c00344{transform:matrix(0.323590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323590,0.000000,0.000000,0.250000,0,0);}
.m73_c00344{transform:matrix(0.323680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323680,0.000000,0.000000,0.250000,0,0);}
.m44_c00344{transform:matrix(0.323734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323734,0.000000,0.000000,0.250000,0,0);}
.mb4_c00344{transform:matrix(0.323863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323863,0.000000,0.000000,0.250000,0,0);}
.m5e_c00344{transform:matrix(0.323963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323963,0.000000,0.000000,0.250000,0,0);}
.ma1_c00344{transform:matrix(0.324433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324433,0.000000,0.000000,0.250000,0,0);}
.m9e_c00344{transform:matrix(0.324538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324538,0.000000,0.000000,0.250000,0,0);}
.m89_c00344{transform:matrix(0.325860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325860,0.000000,0.000000,0.250000,0,0);}
.m8_c00344{transform:matrix(0.328046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328046,0.000000,0.000000,0.250000,0,0);}
.m47_c00344{transform:matrix(0.328163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328163,0.000000,0.000000,0.250000,0,0);}
.m81_c00344{transform:matrix(0.329484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329484,0.000000,0.000000,0.250000,0,0);}
.m98_c00344{transform:matrix(0.331272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331272,0.000000,0.000000,0.250000,0,0);}
.m30_c00344{transform:matrix(0.332508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332508,0.000000,0.000000,0.250000,0,0);}
.m26_c00344{transform:matrix(0.332859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332859,0.000000,0.000000,0.250000,0,0);}
.m39_c00344{transform:matrix(0.333835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333835,0.000000,0.000000,0.250000,0,0);}
.m4c_c00344{transform:matrix(0.334943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334943,0.000000,0.000000,0.250000,0,0);}
.m1a_c00344{transform:matrix(0.336289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336289,0.000000,0.000000,0.250000,0,0);}
.ma5_c00344{transform:matrix(0.337388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337388,0.000000,0.000000,0.250000,0,0);}
.m38_c00344{transform:matrix(0.337511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337511,0.000000,0.000000,0.250000,0,0);}
.m57_c00344{transform:matrix(0.337878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337878,0.000000,0.000000,0.250000,0,0);}
.m93_c00344{transform:matrix(0.338983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338983,0.000000,0.000000,0.250000,0,0);}
.m91_c00344{transform:matrix(0.340290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340290,0.000000,0.000000,0.250000,0,0);}
.m25_c00344{transform:matrix(0.341985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341985,0.000000,0.000000,0.250000,0,0);}
.m28_c00344{transform:matrix(0.343636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343636,0.000000,0.000000,0.250000,0,0);}
.m62_c00344{transform:matrix(0.347807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347807,0.000000,0.000000,0.250000,0,0);}
.m49_c00344{transform:matrix(0.348212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348212,0.000000,0.000000,0.250000,0,0);}
.m6e_c00344{transform:matrix(0.349554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349554,0.000000,0.000000,0.250000,0,0);}
.m69_c00344{transform:matrix(0.353789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353789,0.000000,0.000000,0.250000,0,0);}
.m2f_c00344{transform:matrix(0.355804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355804,0.000000,0.000000,0.250000,0,0);}
.m3c_c00344{transform:matrix(0.355927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355927,0.000000,0.000000,0.250000,0,0);}
.ma2_c00344{transform:matrix(0.357046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357046,0.000000,0.000000,0.250000,0,0);}
.m31_c00344{transform:matrix(0.366428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366428,0.000000,0.000000,0.250000,0,0);}
.m65_c00344{transform:matrix(0.369487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369487,0.000000,0.000000,0.250000,0,0);}
.m7a_c00344{transform:matrix(0.369813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369813,0.000000,0.000000,0.250000,0,0);}
.m40_c00344{transform:matrix(0.369830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369830,0.000000,0.000000,0.250000,0,0);}
.m3a_c00344{transform:matrix(0.372483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372483,0.000000,0.000000,0.250000,0,0);}
.m41_c00344{transform:matrix(0.372659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372659,0.000000,0.000000,0.250000,0,0);}
.m3e_c00344{transform:matrix(0.374121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374121,0.000000,0.000000,0.250000,0,0);}
.m4e_c00344{transform:matrix(0.375080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375080,0.000000,0.000000,0.250000,0,0);}
.ma7_c00344{transform:matrix(0.376592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376592,0.000000,0.000000,0.250000,0,0);}
.m1c_c00344{transform:matrix(0.377462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377462,0.000000,0.000000,0.250000,0,0);}
.m2c_c00344{transform:matrix(0.385060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385060,0.000000,0.000000,0.250000,0,0);}
.m9b_c00344{transform:matrix(0.388533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388533,0.000000,0.000000,0.250000,0,0);}
.m83_c00344{transform:matrix(0.390803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390803,0.000000,0.000000,0.250000,0,0);}
.m9a_c00344{transform:matrix(0.392972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392972,0.000000,0.000000,0.250000,0,0);}
.mae_c00344{transform:matrix(0.420530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420530,0.000000,0.000000,0.250000,0,0);}
.v1_c00344{vertical-align:-32.808600px;}
.v2_c00344{vertical-align:-14.256000px;}
.v0_c00344{vertical-align:0.000000px;}
.ls13_c00344{letter-spacing:-2.827440px;}
.lsb_c00344{letter-spacing:-2.661127px;}
.ls14_c00344{letter-spacing:-2.079000px;}
.ls8_c00344{letter-spacing:-1.284944px;}
.ls9_c00344{letter-spacing:-1.110070px;}
.lse_c00344{letter-spacing:-1.087260px;}
.lsc_c00344{letter-spacing:-1.011228px;}
.lsf_c00344{letter-spacing:-0.631067px;}
.ls3_c00344{letter-spacing:0.000000px;}
.ls4_c00344{letter-spacing:1.406596px;}
.ls2_c00344{letter-spacing:1.687915px;}
.ls10_c00344{letter-spacing:2.531872px;}
.lsa_c00344{letter-spacing:3.155336px;}
.lsd_c00344{letter-spacing:3.252744px;}
.ls7_c00344{letter-spacing:3.564000px;}
.ls12_c00344{letter-spacing:3.771197px;}
.ls6_c00344{letter-spacing:3.801610px;}
.ls1_c00344{letter-spacing:13.609849px;}
.ls0_c00344{letter-spacing:26.002878px;}
.ls5_c00344{letter-spacing:29.937798px;}
.ls11_c00344{letter-spacing:49.896198px;}
.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;}
}
.ws4_c00344{word-spacing:-22.779247px;}
.ws0_c00344{word-spacing:-19.008050px;}
.ws1_c00344{word-spacing:-17.920789px;}
.ws7_c00344{word-spacing:0.000000px;}
.ws3_c00344{word-spacing:3.573399px;}
.ws5_c00344{word-spacing:4.029591px;}
.ws6_c00344{word-spacing:4.866329px;}
.ws2_c00344{word-spacing:6.766941px;}
._13_c00344{margin-left:-9.883907px;}
._9_c00344{margin-left:-8.439508px;}
._d_c00344{margin-left:-5.403145px;}
._10_c00344{margin-left:-1.216435px;}
._15_c00344{width:1.809531px;}
._7_c00344{width:3.599524px;}
._1_c00344{width:5.322185px;}
._1b_c00344{width:6.561643px;}
._3_c00344{width:7.755176px;}
._c_c00344{width:8.971281px;}
._14_c00344{width:10.187804px;}
._a_c00344{width:11.556974px;}
._17_c00344{width:13.001582px;}
._19_c00344{width:21.517199px;}
._e_c00344{width:22.885577px;}
._8_c00344{width:25.318799px;}
._0_c00344{width:26.334655px;}
._18_c00344{width:32.886475px;}
._12_c00344{width:35.408576px;}
._11_c00344{width:37.136347px;}
._b_c00344{width:38.168135px;}
._2_c00344{width:39.916919px;}
._f_c00344{width:41.513571px;}
._16_c00344{width:42.957953px;}
._4_c00344{width:44.707107px;}
._1a_c00344{width:90.406800px;}
._5_c00344{width:603.694080px;}
._6_c00344{width:627.380314px;}
._1c_c00344{width:752.937768px;}
.fc0_c00344{color:transparent;}
.fs0_c00344{font-size:22.572000px;}
.fs3_c00344{font-size:25.344000px;}
.fs9_c00344{font-size:26.928000px;}
.fs6_c00344{font-size:27.720000px;}
.fs12_c00344{font-size:28.314000px;}
.fs4_c00344{font-size:29.937798px;}
.fse_c00344{font-size:33.660000px;}
.fs11_c00344{font-size:34.056198px;}
.fs13_c00344{font-size:38.808000px;}
.fs8_c00344{font-size:45.144000px;}
.fsd_c00344{font-size:49.896198px;}
.fs10_c00344{font-size:59.400000px;}
.fs2_c00344{font-size:66.528000px;}
.fs7_c00344{font-size:69.696198px;}
.fsb_c00344{font-size:70.884000px;}
.fs5_c00344{font-size:71.280000px;}
.fsa_c00344{font-size:73.260000px;}
.fsc_c00344{font-size:75.042198px;}
.fs1_c00344{font-size:76.032198px;}
.fsf_c00344{font-size:80.784000px;}
.y0_c00344{bottom:0.000000px;}
.y27_c00344{bottom:8.465535px;}
.y1_c00344{bottom:76.500000px;}
.y26_c00344{bottom:81.527535px;}
.y25_c00344{bottom:93.645135px;}
.y24_c00344{bottom:138.907935px;}
.y23_c00344{bottom:168.845535px;}
.y22_c00344{bottom:204.841935px;}
.y21_c00344{bottom:237.987135px;}
.y20_c00344{bottom:270.414585px;}
.y1f_c00344{bottom:297.144585px;}
.y1e_c00344{bottom:302.851935px;}
.y1a_c00344{bottom:334.927935px;}
.y1d_c00344{bottom:349.540335px;}
.y19_c00344{bottom:367.360335px;}
.y1c_c00344{bottom:367.711785px;}
.y1b_c00344{bottom:380.185785px;}
.y18_c00344{bottom:399.787785px;}
.y17_c00344{bottom:431.868735px;}
.y16_c00344{bottom:496.015785px;}
.y15_c00344{bottom:528.096735px;}
.y14_c00344{bottom:560.524185px;}
.y13_c00344{bottom:580.838985px;}
.y12_c00344{bottom:595.456335px;}
.y11_c00344{bottom:627.888735px;}
.y2_c00344{bottom:630.022185px;}
.y10_c00344{bottom:661.746735px;}
.yf_c00344{bottom:686.689785px;}
.yc_c00344{bottom:694.174185px;}
.yd_c00344{bottom:694.535535px;}
.ye_c00344{bottom:694.891935px;}
.yb_c00344{bottom:710.212185px;}
.ya_c00344{bottom:721.265535px;}
.y9_c00344{bottom:726.967935px;}
.y8_c00344{bottom:758.331135px;}
.y7_c00344{bottom:856.341135px;}
.y6_c00344{bottom:1016.359785px;}
.y5_c00344{bottom:1026.695385px;}
.y4_c00344{bottom:1039.525785px;}
.y3_c00344{bottom:1073.745135px;}
.h6_c00344{height:19.938573px;}
.h2_c00344{height:23.541891px;}
.h5_c00344{height:24.873750px;}
.h15_c00344{height:26.219531px;}
.h9_c00344{height:28.085063px;}
.h14_c00344{height:29.530617px;}
.h10_c00344{height:33.035449px;}
.hf_c00344{height:33.230868px;}
.h13_c00344{height:35.519550px;}
.he_c00344{height:47.083781px;}
.h12_c00344{height:61.836328px;}
.h4_c00344{height:69.386625px;}
.hc_c00344{height:69.568770px;}
.ha_c00344{height:71.900684px;}
.h8_c00344{height:72.554831px;}
.hd_c00344{height:73.613172px;}
.h7_c00344{height:74.342813px;}
.h3_c00344{height:74.621444px;}
.h11_c00344{height:79.285078px;}
.hb_c00344{height:79.299207px;}
.h1_c00344{height:1110.000000px;}
.h0_c00344{height:1263.000000px;}
.w1_c00344{width:775.500000px;}
.w0_c00344{width:892.500000px;}
.x0_c00344{left:0.000000px;}
.x1_c00344{left:58.500000px;}
.x2_c00344{left:68.633385px;}
.x25_c00344{left:95.402985px;}
.x17_c00344{left:96.724635px;}
.x72_c00344{left:98.105685px;}
.x6f_c00344{left:99.882735px;}
.x77_c00344{left:101.674635px;}
.x26_c00344{left:117.262185px;}
.x76_c00344{left:120.247035px;}
.x41_c00344{left:128.236335px;}
.x30_c00344{left:129.864885px;}
.x46_c00344{left:131.052885px;}
.x5e_c00344{left:140.433135px;}
.x6_c00344{left:150.293535px;}
.x70_c00344{left:151.481535px;}
.x23_c00344{left:160.609335px;}
.x78_c00344{left:163.386285px;}
.x27_c00344{left:171.954735px;}
.x5f_c00344{left:173.672385px;}
.x5c_c00344{left:175.434585px;}
.x18_c00344{left:183.834735px;}
.x67_c00344{left:185.077185px;}
.x19_c00344{left:194.195085px;}
.x5d_c00344{left:195.447435px;}
.x28_c00344{left:197.966985px;}
.x3a_c00344{left:206.302785px;}
.xb_c00344{left:207.951135px;}
.x47_c00344{left:217.187835px;}
.x7_c00344{left:227.607585px;}
.x1a_c00344{left:229.280685px;}
.x4b_c00344{left:239.611335px;}
.xc_c00344{left:250.531035px;}
.x31_c00344{left:251.684385px;}
.x1b_c00344{left:261.133935px;}
.x4c_c00344{left:262.411035px;}
.x55_c00344{left:271.563585px;}
.x1c_c00344{left:272.771385px;}
.x3b_c00344{left:273.830685px;}
.xd_c00344{left:282.572385px;}
.x56_c00344{left:284.755335px;}
.x4d_c00344{left:294.754335px;}
.x57_c00344{left:297.585735px;}
.x8_c00344{left:304.931535px;}
.x73_c00344{left:306.416535px;}
.xe_c00344{left:316.415535px;}
.x29_c00344{left:327.127335px;}
.x48_c00344{left:328.538085px;}
.x68_c00344{left:337.136235px;}
.x1d_c00344{left:339.799335px;}
.x3c_c00344{left:350.461635px;}
.x4e_c00344{left:351.466485px;}
.x2a_c00344{left:361.307085px;}
.x32_c00344{left:364.321635px;}
.x24_c00344{left:370.103235px;}
.x49_c00344{left:372.791085px;}
.x64_c00344{left:382.720785px;}
.x4f_c00344{left:383.938485px;}
.x79_c00344{left:385.329435px;}
.x5a_c00344{left:393.803835px;}
.xf_c00344{left:394.917585px;}
.x4a_c00344{left:404.139435px;}
.x9_c00344{left:405.367035px;}
.x71_c00344{left:407.119335px;}
.x33_c00344{left:416.945085px;}
.x42_c00344{left:426.553035px;}
.x3d_c00344{left:428.151885px;}
.xa_c00344{left:437.942985px;}
.x34_c00344{left:439.497285px;}
.x69_c00344{left:440.719935px;}
.x10_c00344{left:449.644785px;}
.x11_c00344{left:460.425885px;}
.x6a_c00344{left:461.603985px;}
.x54_c00344{left:463.187985px;}
.x35_c00344{left:471.657435px;}
.x50_c00344{left:483.383985px;}
.x43_c00344{left:484.408635px;}
.x2b_c00344{left:492.883035px;}
.x3e_c00344{left:493.922535px;}
.x12_c00344{left:504.673935px;}
.x7c_c00344{left:509.500185px;}
.x36_c00344{left:517.251885px;}
.x6b_c00344{left:526.384635px;}
.x51_c00344{left:528.691335px;}
.x1e_c00344{left:536.680635px;}
.x65_c00344{left:538.660635px;}
.x13_c00344{left:548.426985px;}
.x37_c00344{left:549.709035px;}
.x2c_c00344{left:560.415885px;}
.x3f_c00344{left:571.449435px;}
.x1f_c00344{left:582.136485px;}
.x66_c00344{left:583.542285px;}
.x2d_c00344{left:593.877885px;}
.x74_c00344{left:595.942035px;}
.x20_c00344{left:603.327435px;}
.x5b_c00344{left:605.183685px;}
.x38_c00344{left:615.449985px;}
.x75_c00344{left:616.499385px;}
.x14_c00344{left:626.641935px;}
.x6d_c00344{left:631.923585px;}
.x21_c00344{left:637.720035px;}
.x58_c00344{left:639.160485px;}
.x63_c00344{left:641.323635px;}
.x44_c00344{left:648.659535px;}
.x2e_c00344{left:649.827735px;}
.x61_c00344{left:651.283035px;}
.x15_c00344{left:660.524685px;}
.x59_c00344{left:661.574085px;}
.x7a_c00344{left:665.083635px;}
.x3_c00344{left:671.216685px;}
.x7b_c00344{left:672.261135px;}
.x6c_c00344{left:683.354085px;}
.x22_c00344{left:692.996685px;}
.x40_c00344{left:694.417335px;}
.x2f_c00344{left:696.926985px;}
.x60_c00344{left:700.179135px;}
.x39_c00344{left:703.975785px;}
.x4_c00344{left:705.040035px;}
.x5_c00344{left:706.727985px;}
.x16_c00344{left:711.475035px;}
.x52_c00344{left:715.756785px;}
.x6e_c00344{left:725.473635px;}
.x45_c00344{left:737.507085px;}
.x62_c00344{left:740.284035px;}
.x53_c00344{left:745.625085px;}
@media print{
.v1_c00344{vertical-align:-29.163200pt;}
.v2_c00344{vertical-align:-12.672000pt;}
.v0_c00344{vertical-align:0.000000pt;}
.ls13_c00344{letter-spacing:-2.513280pt;}
.lsb_c00344{letter-spacing:-2.365446pt;}
.ls14_c00344{letter-spacing:-1.848000pt;}
.ls8_c00344{letter-spacing:-1.142173pt;}
.ls9_c00344{letter-spacing:-0.986729pt;}
.lse_c00344{letter-spacing:-0.966454pt;}
.lsc_c00344{letter-spacing:-0.898870pt;}
.lsf_c00344{letter-spacing:-0.560949pt;}
.ls3_c00344{letter-spacing:0.000000pt;}
.ls4_c00344{letter-spacing:1.250307pt;}
.ls2_c00344{letter-spacing:1.500369pt;}
.ls10_c00344{letter-spacing:2.250553pt;}
.lsa_c00344{letter-spacing:2.804743pt;}
.lsd_c00344{letter-spacing:2.891328pt;}
.ls7_c00344{letter-spacing:3.168000pt;}
.ls12_c00344{letter-spacing:3.352175pt;}
.ls6_c00344{letter-spacing:3.379209pt;}
.ls1_c00344{letter-spacing:12.097644pt;}
.ls0_c00344{letter-spacing:23.113669pt;}
.ls5_c00344{letter-spacing:26.611376pt;}
.ls11_c00344{letter-spacing:44.352176pt;}
.ws4_c00344{word-spacing:-20.248219pt;}
.ws0_c00344{word-spacing:-16.896044pt;}
.ws1_c00344{word-spacing:-15.929590pt;}
.ws7_c00344{word-spacing:0.000000pt;}
.ws3_c00344{word-spacing:3.176355pt;}
.ws5_c00344{word-spacing:3.581859pt;}
.ws6_c00344{word-spacing:4.325625pt;}
.ws2_c00344{word-spacing:6.015059pt;}
._13_c00344{margin-left:-8.785695pt;}
._9_c00344{margin-left:-7.501785pt;}
._d_c00344{margin-left:-4.802796pt;}
._10_c00344{margin-left:-1.081276pt;}
._15_c00344{width:1.608472pt;}
._7_c00344{width:3.199577pt;}
._1_c00344{width:4.730831pt;}
._1b_c00344{width:5.832572pt;}
._3_c00344{width:6.893490pt;}
._c_c00344{width:7.974472pt;}
._14_c00344{width:9.055826pt;}
._a_c00344{width:10.272866pt;}
._17_c00344{width:11.556962pt;}
._19_c00344{width:19.126399pt;}
._e_c00344{width:20.342735pt;}
._8_c00344{width:22.505599pt;}
._0_c00344{width:23.408582pt;}
._18_c00344{width:29.232422pt;}
._12_c00344{width:31.474290pt;}
._11_c00344{width:33.010086pt;}
._b_c00344{width:33.927232pt;}
._2_c00344{width:35.481706pt;}
._f_c00344{width:36.900952pt;}
._16_c00344{width:38.184848pt;}
._4_c00344{width:39.739651pt;}
._1a_c00344{width:80.361600pt;}
._5_c00344{width:536.616960pt;}
._6_c00344{width:557.671390pt;}
._1c_c00344{width:669.278016pt;}
.fs0_c00344{font-size:20.064000pt;}
.fs3_c00344{font-size:22.528000pt;}
.fs9_c00344{font-size:23.936000pt;}
.fs6_c00344{font-size:24.640000pt;}
.fs12_c00344{font-size:25.168000pt;}
.fs4_c00344{font-size:26.611376pt;}
.fse_c00344{font-size:29.920000pt;}
.fs11_c00344{font-size:30.272176pt;}
.fs13_c00344{font-size:34.496000pt;}
.fs8_c00344{font-size:40.128000pt;}
.fsd_c00344{font-size:44.352176pt;}
.fs10_c00344{font-size:52.800000pt;}
.fs2_c00344{font-size:59.136000pt;}
.fs7_c00344{font-size:61.952176pt;}
.fsb_c00344{font-size:63.008000pt;}
.fs5_c00344{font-size:63.360000pt;}
.fsa_c00344{font-size:65.120000pt;}
.fsc_c00344{font-size:66.704176pt;}
.fs1_c00344{font-size:67.584176pt;}
.fsf_c00344{font-size:71.808000pt;}
.y0_c00344{bottom:0.000000pt;}
.y27_c00344{bottom:7.524920pt;}
.y1_c00344{bottom:68.000000pt;}
.y26_c00344{bottom:72.468920pt;}
.y25_c00344{bottom:83.240120pt;}
.y24_c00344{bottom:123.473720pt;}
.y23_c00344{bottom:150.084920pt;}
.y22_c00344{bottom:182.081720pt;}
.y21_c00344{bottom:211.544120pt;}
.y20_c00344{bottom:240.368520pt;}
.y1f_c00344{bottom:264.128520pt;}
.y1e_c00344{bottom:269.201720pt;}
.y1a_c00344{bottom:297.713720pt;}
.y1d_c00344{bottom:310.702520pt;}
.y19_c00344{bottom:326.542520pt;}
.y1c_c00344{bottom:326.854920pt;}
.y1b_c00344{bottom:337.942920pt;}
.y18_c00344{bottom:355.366920pt;}
.y17_c00344{bottom:383.883320pt;}
.y16_c00344{bottom:440.902920pt;}
.y15_c00344{bottom:469.419320pt;}
.y14_c00344{bottom:498.243720pt;}
.y13_c00344{bottom:516.301320pt;}
.y12_c00344{bottom:529.294520pt;}
.y11_c00344{bottom:558.123320pt;}
.y2_c00344{bottom:560.019720pt;}
.y10_c00344{bottom:588.219320pt;}
.yf_c00344{bottom:610.390920pt;}
.yc_c00344{bottom:617.043720pt;}
.yd_c00344{bottom:617.364920pt;}
.ye_c00344{bottom:617.681720pt;}
.yb_c00344{bottom:631.299720pt;}
.ya_c00344{bottom:641.124920pt;}
.y9_c00344{bottom:646.193720pt;}
.y8_c00344{bottom:674.072120pt;}
.y7_c00344{bottom:761.192120pt;}
.y6_c00344{bottom:903.430920pt;}
.y5_c00344{bottom:912.618120pt;}
.y4_c00344{bottom:924.022920pt;}
.y3_c00344{bottom:954.440120pt;}
.h6_c00344{height:17.723176pt;}
.h2_c00344{height:20.926125pt;}
.h5_c00344{height:22.110000pt;}
.h15_c00344{height:23.306250pt;}
.h9_c00344{height:24.964500pt;}
.h14_c00344{height:26.249438pt;}
.h10_c00344{height:29.364844pt;}
.hf_c00344{height:29.538549pt;}
.h13_c00344{height:31.572934pt;}
.he_c00344{height:41.852250pt;}
.h12_c00344{height:54.965625pt;}
.h4_c00344{height:61.677000pt;}
.hc_c00344{height:61.838906pt;}
.ha_c00344{height:63.911719pt;}
.h8_c00344{height:64.493183pt;}
.hd_c00344{height:65.433930pt;}
.h7_c00344{height:66.082500pt;}
.h3_c00344{height:66.330173pt;}
.h11_c00344{height:70.475625pt;}
.hb_c00344{height:70.488184pt;}
.h1_c00344{height:986.666667pt;}
.h0_c00344{height:1122.666667pt;}
.w1_c00344{width:689.333333pt;}
.w0_c00344{width:793.333333pt;}
.x0_c00344{left:0.000000pt;}
.x1_c00344{left:52.000000pt;}
.x2_c00344{left:61.007453pt;}
.x25_c00344{left:84.802653pt;}
.x17_c00344{left:85.977453pt;}
.x72_c00344{left:87.205053pt;}
.x6f_c00344{left:88.784653pt;}
.x77_c00344{left:90.377453pt;}
.x26_c00344{left:104.233053pt;}
.x76_c00344{left:106.886253pt;}
.x41_c00344{left:113.987853pt;}
.x30_c00344{left:115.435453pt;}
.x46_c00344{left:116.491453pt;}
.x5e_c00344{left:124.829453pt;}
.x6_c00344{left:133.594253pt;}
.x70_c00344{left:134.650253pt;}
.x23_c00344{left:142.763853pt;}
.x78_c00344{left:145.232253pt;}
.x27_c00344{left:152.848653pt;}
.x5f_c00344{left:154.375453pt;}
.x5c_c00344{left:155.941853pt;}
.x18_c00344{left:163.408653pt;}
.x67_c00344{left:164.513053pt;}
.x19_c00344{left:172.617853pt;}
.x5d_c00344{left:173.731053pt;}
.x28_c00344{left:175.970653pt;}
.x3a_c00344{left:183.380253pt;}
.xb_c00344{left:184.845453pt;}
.x47_c00344{left:193.055853pt;}
.x7_c00344{left:202.317853pt;}
.x1a_c00344{left:203.805053pt;}
.x4b_c00344{left:212.987853pt;}
.xc_c00344{left:222.694253pt;}
.x31_c00344{left:223.719453pt;}
.x1b_c00344{left:232.119053pt;}
.x4c_c00344{left:233.254253pt;}
.x55_c00344{left:241.389853pt;}
.x1c_c00344{left:242.463453pt;}
.x3b_c00344{left:243.405053pt;}
.xd_c00344{left:251.175453pt;}
.x56_c00344{left:253.115853pt;}
.x4d_c00344{left:262.003853pt;}
.x57_c00344{left:264.520653pt;}
.x8_c00344{left:271.050253pt;}
.x73_c00344{left:272.370253pt;}
.xe_c00344{left:281.258253pt;}
.x29_c00344{left:290.779853pt;}
.x48_c00344{left:292.033853pt;}
.x68_c00344{left:299.676653pt;}
.x1d_c00344{left:302.043853pt;}
.x3c_c00344{left:311.521453pt;}
.x4e_c00344{left:312.414653pt;}
.x2a_c00344{left:321.161853pt;}
.x32_c00344{left:323.841453pt;}
.x24_c00344{left:328.980653pt;}
.x49_c00344{left:331.369853pt;}
.x64_c00344{left:340.196253pt;}
.x4f_c00344{left:341.278653pt;}
.x79_c00344{left:342.515053pt;}
.x5a_c00344{left:350.047853pt;}
.xf_c00344{left:351.037853pt;}
.x4a_c00344{left:359.235053pt;}
.x9_c00344{left:360.326253pt;}
.x71_c00344{left:361.883853pt;}
.x33_c00344{left:370.617853pt;}
.x42_c00344{left:379.158253pt;}
.x3d_c00344{left:380.579453pt;}
.xa_c00344{left:389.282653pt;}
.x34_c00344{left:390.664253pt;}
.x69_c00344{left:391.751053pt;}
.x10_c00344{left:399.684253pt;}
.x11_c00344{left:409.267453pt;}
.x6a_c00344{left:410.314653pt;}
.x54_c00344{left:411.722653pt;}
.x35_c00344{left:419.251053pt;}
.x50_c00344{left:429.674653pt;}
.x43_c00344{left:430.585453pt;}
.x2b_c00344{left:438.118253pt;}
.x3e_c00344{left:439.042253pt;}
.x12_c00344{left:448.599053pt;}
.x7c_c00344{left:452.889053pt;}
.x36_c00344{left:459.779453pt;}
.x6b_c00344{left:467.897453pt;}
.x51_c00344{left:469.947853pt;}
.x1e_c00344{left:477.049453pt;}
.x65_c00344{left:478.809453pt;}
.x13_c00344{left:487.490653pt;}
.x37_c00344{left:488.630253pt;}
.x2c_c00344{left:498.147453pt;}
.x3f_c00344{left:507.955053pt;}
.x1f_c00344{left:517.454653pt;}
.x66_c00344{left:518.704253pt;}
.x2d_c00344{left:527.891453pt;}
.x74_c00344{left:529.726253pt;}
.x20_c00344{left:536.291053pt;}
.x5b_c00344{left:537.941053pt;}
.x38_c00344{left:547.066653pt;}
.x75_c00344{left:547.999453pt;}
.x14_c00344{left:557.015053pt;}
.x6d_c00344{left:561.709853pt;}
.x21_c00344{left:566.862253pt;}
.x58_c00344{left:568.142653pt;}
.x63_c00344{left:570.065453pt;}
.x44_c00344{left:576.586253pt;}
.x2e_c00344{left:577.624653pt;}
.x61_c00344{left:578.918253pt;}
.x15_c00344{left:587.133053pt;}
.x59_c00344{left:588.065853pt;}
.x7a_c00344{left:591.185453pt;}
.x3_c00344{left:596.637053pt;}
.x7b_c00344{left:597.565453pt;}
.x6c_c00344{left:607.425853pt;}
.x22_c00344{left:615.997053pt;}
.x40_c00344{left:617.259853pt;}
.x2f_c00344{left:619.490653pt;}
.x60_c00344{left:622.381453pt;}
.x39_c00344{left:625.756253pt;}
.x4_c00344{left:626.702253pt;}
.x5_c00344{left:628.202653pt;}
.x16_c00344{left:632.422253pt;}
.x52_c00344{left:636.228253pt;}
.x6e_c00344{left:644.865453pt;}
.x45_c00344{left:655.561853pt;}
.x62_c00344{left:658.030253pt;}
.x53_c00344{left:662.777853pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bcdfae162b3952995709dae5.woff2')format("woff");}.ff1_c00345{font-family:ff1_c00345;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00345;src:url('chunks/assets/font_8c4875f8f2d7a5427f09f3c9.woff2')format("woff");}.ff2_c00345{font-family:ff2_c00345;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00345;src:url('chunks/assets/font_efa0b1346c976311c7552144.woff2')format("woff");}.ff3_c00345{font-family:ff3_c00345;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00345;src:url('chunks/assets/font_5b9bbbb57dd08e77361daed2.woff2')format("woff");}.ff4_c00345{font-family:ff4_c00345;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00345;src:url('chunks/assets/font_8d9c499f1cd1c0a8539ef389.woff2')format("woff");}.ff5_c00345{font-family:ff5_c00345;line-height:0.666000;font-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_c00345{transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);}
.m68_c00345{transform:matrix(0.146195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146195,0.000000,0.000000,0.250000,0,0);}
.m99_c00345{transform:matrix(0.167872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167872,0.000000,0.000000,0.250000,0,0);}
.me_c00345{transform:matrix(0.181265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181265,0.000000,0.000000,0.250000,0,0);}
.m84_c00345{transform:matrix(0.195459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195459,0.000000,0.000000,0.250000,0,0);}
.m26_c00345{transform:matrix(0.214752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214752,0.000000,0.000000,0.250000,0,0);}
.m16_c00345{transform:matrix(0.218550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218550,0.000000,0.000000,0.250000,0,0);}
.m57_c00345{transform:matrix(0.229598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229598,0.000000,0.000000,0.250000,0,0);}
.m1_c00345{transform:matrix(0.231631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231631,0.000000,0.000000,0.250000,0,0);}
.m66_c00345{transform:matrix(0.236758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236758,0.000000,0.000000,0.250000,0,0);}
.m6a_c00345{transform:matrix(0.244769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244769,0.000000,0.000000,0.250000,0,0);}
.m98_c00345{transform:matrix(0.248043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248043,0.000000,0.000000,0.250000,0,0);}
.m85_c00345{transform:matrix(0.248852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248852,0.000000,0.000000,0.250000,0,0);}
.m0_c00345{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m94_c00345{transform:matrix(0.250457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250457,0.000000,0.000000,0.250000,0,0);}
.m15_c00345{transform:matrix(0.254023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254023,0.000000,0.000000,0.250000,0,0);}
.m78_c00345{transform:matrix(0.254449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254449,0.000000,0.000000,0.250000,0,0);}
.m5c_c00345{transform:matrix(0.255565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255565,0.000000,0.000000,0.250000,0,0);}
.m39_c00345{transform:matrix(0.257168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257168,0.000000,0.000000,0.250000,0,0);}
.m8b_c00345{transform:matrix(0.259053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259053,0.000000,0.000000,0.250000,0,0);}
.m58_c00345{transform:matrix(0.260355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260355,0.000000,0.000000,0.250000,0,0);}
.m24_c00345{transform:matrix(0.261193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261193,0.000000,0.000000,0.250000,0,0);}
.ma1_c00345{transform:matrix(0.261536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261536,0.000000,0.000000,0.250000,0,0);}
.ma_c00345{transform:matrix(0.262975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262975,0.000000,0.000000,0.250000,0,0);}
.m4c_c00345{transform:matrix(0.264295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264295,0.000000,0.000000,0.250000,0,0);}
.m4a_c00345{transform:matrix(0.264679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264679,0.000000,0.000000,0.250000,0,0);}
.m7d_c00345{transform:matrix(0.265386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265386,0.000000,0.000000,0.250000,0,0);}
.m43_c00345{transform:matrix(0.266304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266304,0.000000,0.000000,0.250000,0,0);}
.m74_c00345{transform:matrix(0.268402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268402,0.000000,0.000000,0.250000,0,0);}
.m8_c00345{transform:matrix(0.270126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270126,0.000000,0.000000,0.250000,0,0);}
.m13_c00345{transform:matrix(0.270552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270552,0.000000,0.000000,0.250000,0,0);}
.m5f_c00345{transform:matrix(0.270691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270691,0.000000,0.000000,0.250000,0,0);}
.ma3_c00345{transform:matrix(0.272703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272703,0.000000,0.000000,0.250000,0,0);}
.m2d_c00345{transform:matrix(0.273110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273110,0.000000,0.000000,0.250000,0,0);}
.m3_c00345{transform:matrix(0.273591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273591,0.000000,0.000000,0.250000,0,0);}
.m79_c00345{transform:matrix(0.273806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273806,0.000000,0.000000,0.250000,0,0);}
.m34_c00345{transform:matrix(0.273865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273865,0.000000,0.000000,0.250000,0,0);}
.m38_c00345{transform:matrix(0.274865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274865,0.000000,0.000000,0.250000,0,0);}
.m63_c00345{transform:matrix(0.277901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277901,0.000000,0.000000,0.250000,0,0);}
.m7c_c00345{transform:matrix(0.278201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278201,0.000000,0.000000,0.250000,0,0);}
.m33_c00345{transform:matrix(0.279953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279953,0.000000,0.000000,0.250000,0,0);}
.m83_c00345{transform:matrix(0.279996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279996,0.000000,0.000000,0.250000,0,0);}
.m49_c00345{transform:matrix(0.280245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280245,0.000000,0.000000,0.250000,0,0);}
.m80_c00345{transform:matrix(0.280350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280350,0.000000,0.000000,0.250000,0,0);}
.m6b_c00345{transform:matrix(0.281270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281270,0.000000,0.000000,0.250000,0,0);}
.ma2_c00345{transform:matrix(0.281345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281345,0.000000,0.000000,0.250000,0,0);}
.m61_c00345{transform:matrix(0.281671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281671,0.000000,0.000000,0.250000,0,0);}
.m9a_c00345{transform:matrix(0.282839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282839,0.000000,0.000000,0.250000,0,0);}
.m9b_c00345{transform:matrix(0.283112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283112,0.000000,0.000000,0.250000,0,0);}
.m6f_c00345{transform:matrix(0.283813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283813,0.000000,0.000000,0.250000,0,0);}
.m86_c00345{transform:matrix(0.284344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284344,0.000000,0.000000,0.250000,0,0);}
.m3f_c00345{transform:matrix(0.284396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284396,0.000000,0.000000,0.250000,0,0);}
.m42_c00345{transform:matrix(0.286635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286635,0.000000,0.000000,0.250000,0,0);}
.m70_c00345{transform:matrix(0.286635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286635,0.000000,0.000000,0.250000,0,0);}
.m7b_c00345{transform:matrix(0.287619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287619,0.000000,0.000000,0.250000,0,0);}
.m2_c00345{transform:matrix(0.288029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288029,0.000000,0.000000,0.250000,0,0);}
.m8e_c00345{transform:matrix(0.288380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288380,0.000000,0.000000,0.250000,0,0);}
.m9_c00345{transform:matrix(0.288841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288841,0.000000,0.000000,0.250000,0,0);}
.m1c_c00345{transform:matrix(0.289022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289022,0.000000,0.000000,0.250000,0,0);}
.m32_c00345{transform:matrix(0.289127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289127,0.000000,0.000000,0.250000,0,0);}
.m2f_c00345{transform:matrix(0.289566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289566,0.000000,0.000000,0.250000,0,0);}
.m95_c00345{transform:matrix(0.290100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290100,0.000000,0.000000,0.250000,0,0);}
.m6c_c00345{transform:matrix(0.290560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290560,0.000000,0.000000,0.250000,0,0);}
.m8d_c00345{transform:matrix(0.290893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290893,0.000000,0.000000,0.250000,0,0);}
.m11_c00345{transform:matrix(0.291334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291334,0.000000,0.000000,0.250000,0,0);}
.m14_c00345{transform:matrix(0.292215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292215,0.000000,0.000000,0.250000,0,0);}
.m12_c00345{transform:matrix(0.292622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292622,0.000000,0.000000,0.250000,0,0);}
.m51_c00345{transform:matrix(0.293125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293125,0.000000,0.000000,0.250000,0,0);}
.m3d_c00345{transform:matrix(0.293297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293297,0.000000,0.000000,0.250000,0,0);}
.m18_c00345{transform:matrix(0.293407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293407,0.000000,0.000000,0.250000,0,0);}
.m31_c00345{transform:matrix(0.293802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293802,0.000000,0.000000,0.250000,0,0);}
.m2e_c00345{transform:matrix(0.294558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294558,0.000000,0.000000,0.250000,0,0);}
.m4e_c00345{transform:matrix(0.295226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295226,0.000000,0.000000,0.250000,0,0);}
.m30_c00345{transform:matrix(0.295402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295402,0.000000,0.000000,0.250000,0,0);}
.m7_c00345{transform:matrix(0.298262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298262,0.000000,0.000000,0.250000,0,0);}
.m36_c00345{transform:matrix(0.298521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298521,0.000000,0.000000,0.250000,0,0);}
.m6e_c00345{transform:matrix(0.298637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298637,0.000000,0.000000,0.250000,0,0);}
.m1b_c00345{transform:matrix(0.298964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298964,0.000000,0.000000,0.250000,0,0);}
.m67_c00345{transform:matrix(0.299199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299199,0.000000,0.000000,0.250000,0,0);}
.m52_c00345{transform:matrix(0.299360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299360,0.000000,0.000000,0.250000,0,0);}
.m46_c00345{transform:matrix(0.299453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299453,0.000000,0.000000,0.250000,0,0);}
.m89_c00345{transform:matrix(0.299703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299703,0.000000,0.000000,0.250000,0,0);}
.m2a_c00345{transform:matrix(0.300193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300193,0.000000,0.000000,0.250000,0,0);}
.m7f_c00345{transform:matrix(0.300219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300219,0.000000,0.000000,0.250000,0,0);}
.m55_c00345{transform:matrix(0.300537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300537,0.000000,0.000000,0.250000,0,0);}
.m35_c00345{transform:matrix(0.300659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300659,0.000000,0.000000,0.250000,0,0);}
.m7a_c00345{transform:matrix(0.300670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300670,0.000000,0.000000,0.250000,0,0);}
.m47_c00345{transform:matrix(0.300865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300865,0.000000,0.000000,0.250000,0,0);}
.m3a_c00345{transform:matrix(0.301276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301276,0.000000,0.000000,0.250000,0,0);}
.m64_c00345{transform:matrix(0.301297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301297,0.000000,0.000000,0.250000,0,0);}
.m97_c00345{transform:matrix(0.301328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301328,0.000000,0.000000,0.250000,0,0);}
.m45_c00345{transform:matrix(0.302202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302202,0.000000,0.000000,0.250000,0,0);}
.mb_c00345{transform:matrix(0.302429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302429,0.000000,0.000000,0.250000,0,0);}
.m88_c00345{transform:matrix(0.302926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302926,0.000000,0.000000,0.250000,0,0);}
.m9d_c00345{transform:matrix(0.303330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303330,0.000000,0.000000,0.250000,0,0);}
.m82_c00345{transform:matrix(0.303476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303476,0.000000,0.000000,0.250000,0,0);}
.m53_c00345{transform:matrix(0.303532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303532,0.000000,0.000000,0.250000,0,0);}
.m44_c00345{transform:matrix(0.304803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304803,0.000000,0.000000,0.250000,0,0);}
.m7e_c00345{transform:matrix(0.307078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307078,0.000000,0.000000,0.250000,0,0);}
.m29_c00345{transform:matrix(0.308975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308975,0.000000,0.000000,0.250000,0,0);}
.m87_c00345{transform:matrix(0.310210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310210,0.000000,0.000000,0.250000,0,0);}
.m6d_c00345{transform:matrix(0.310555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310555,0.000000,0.000000,0.250000,0,0);}
.m9e_c00345{transform:matrix(0.310560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310560,0.000000,0.000000,0.250000,0,0);}
.m71_c00345{transform:matrix(0.310563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310563,0.000000,0.000000,0.250000,0,0);}
.m40_c00345{transform:matrix(0.311416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311416,0.000000,0.000000,0.250000,0,0);}
.m28_c00345{transform:matrix(0.312328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312328,0.000000,0.000000,0.250000,0,0);}
.m5_c00345{transform:matrix(0.313839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313839,0.000000,0.000000,0.250000,0,0);}
.m22_c00345{transform:matrix(0.313976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313976,0.000000,0.000000,0.250000,0,0);}
.m5a_c00345{transform:matrix(0.314789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314789,0.000000,0.000000,0.250000,0,0);}
.m56_c00345{transform:matrix(0.314793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314793,0.000000,0.000000,0.250000,0,0);}
.m8f_c00345{transform:matrix(0.315256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315256,0.000000,0.000000,0.250000,0,0);}
.m77_c00345{transform:matrix(0.315955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315955,0.000000,0.000000,0.250000,0,0);}
.m4d_c00345{transform:matrix(0.317033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317033,0.000000,0.000000,0.250000,0,0);}
.m48_c00345{transform:matrix(0.321707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321707,0.000000,0.000000,0.250000,0,0);}
.m90_c00345{transform:matrix(0.322754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322754,0.000000,0.000000,0.250000,0,0);}
.m8c_c00345{transform:matrix(0.322866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322866,0.000000,0.000000,0.250000,0,0);}
.m9c_c00345{transform:matrix(0.323169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323169,0.000000,0.000000,0.250000,0,0);}
.m5e_c00345{transform:matrix(0.324084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324084,0.000000,0.000000,0.250000,0,0);}
.m4b_c00345{transform:matrix(0.326161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326161,0.000000,0.000000,0.250000,0,0);}
.m76_c00345{transform:matrix(0.326234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326234,0.000000,0.000000,0.250000,0,0);}
.m4_c00345{transform:matrix(0.326402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326402,0.000000,0.000000,0.250000,0,0);}
.m17_c00345{transform:matrix(0.326507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326507,0.000000,0.000000,0.250000,0,0);}
.m65_c00345{transform:matrix(0.327808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327808,0.000000,0.000000,0.250000,0,0);}
.m37_c00345{transform:matrix(0.329236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329236,0.000000,0.000000,0.250000,0,0);}
.mf_c00345{transform:matrix(0.329558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329558,0.000000,0.000000,0.250000,0,0);}
.m72_c00345{transform:matrix(0.329663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329663,0.000000,0.000000,0.250000,0,0);}
.m10_c00345{transform:matrix(0.331518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331518,0.000000,0.000000,0.250000,0,0);}
.m5b_c00345{transform:matrix(0.335874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335874,0.000000,0.000000,0.250000,0,0);}
.m1d_c00345{transform:matrix(0.336173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336173,0.000000,0.000000,0.250000,0,0);}
.md_c00345{transform:matrix(0.336201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336201,0.000000,0.000000,0.250000,0,0);}
.ma0_c00345{transform:matrix(0.337168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337168,0.000000,0.000000,0.250000,0,0);}
.m8a_c00345{transform:matrix(0.337479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337479,0.000000,0.000000,0.250000,0,0);}
.m6_c00345{transform:matrix(0.338424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338424,0.000000,0.000000,0.250000,0,0);}
.m69_c00345{transform:matrix(0.338569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338569,0.000000,0.000000,0.250000,0,0);}
.m59_c00345{transform:matrix(0.338785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338785,0.000000,0.000000,0.250000,0,0);}
.m50_c00345{transform:matrix(0.338858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338858,0.000000,0.000000,0.250000,0,0);}
.m54_c00345{transform:matrix(0.339310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339310,0.000000,0.000000,0.250000,0,0);}
.m1a_c00345{transform:matrix(0.341699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341699,0.000000,0.000000,0.250000,0,0);}
.m21_c00345{transform:matrix(0.341856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341856,0.000000,0.000000,0.250000,0,0);}
.m27_c00345{transform:matrix(0.343908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343908,0.000000,0.000000,0.250000,0,0);}
.m19_c00345{transform:matrix(0.345062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345062,0.000000,0.000000,0.250000,0,0);}
.m2b_c00345{transform:matrix(0.345995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345995,0.000000,0.000000,0.250000,0,0);}
.m3b_c00345{transform:matrix(0.348072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348072,0.000000,0.000000,0.250000,0,0);}
.m41_c00345{transform:matrix(0.349418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349418,0.000000,0.000000,0.250000,0,0);}
.m91_c00345{transform:matrix(0.349571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349571,0.000000,0.000000,0.250000,0,0);}
.m92_c00345{transform:matrix(0.352899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352899,0.000000,0.000000,0.250000,0,0);}
.m9f_c00345{transform:matrix(0.353790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353790,0.000000,0.000000,0.250000,0,0);}
.m3c_c00345{transform:matrix(0.356326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356326,0.000000,0.000000,0.250000,0,0);}
.m4f_c00345{transform:matrix(0.360375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360375,0.000000,0.000000,0.250000,0,0);}
.m60_c00345{transform:matrix(0.360839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360839,0.000000,0.000000,0.250000,0,0);}
.m20_c00345{transform:matrix(0.361148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361148,0.000000,0.000000,0.250000,0,0);}
.m73_c00345{transform:matrix(0.361676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361676,0.000000,0.000000,0.250000,0,0);}
.m93_c00345{transform:matrix(0.362108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362108,0.000000,0.000000,0.250000,0,0);}
.m62_c00345{transform:matrix(0.363922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363922,0.000000,0.000000,0.250000,0,0);}
.m25_c00345{transform:matrix(0.364093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364093,0.000000,0.000000,0.250000,0,0);}
.m96_c00345{transform:matrix(0.366418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366418,0.000000,0.000000,0.250000,0,0);}
.m1f_c00345{transform:matrix(0.369854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369854,0.000000,0.000000,0.250000,0,0);}
.m75_c00345{transform:matrix(0.374642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374642,0.000000,0.000000,0.250000,0,0);}
.m23_c00345{transform:matrix(0.375019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375019,0.000000,0.000000,0.250000,0,0);}
.m5d_c00345{transform:matrix(0.376887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376887,0.000000,0.000000,0.250000,0,0);}
.m3e_c00345{transform:matrix(0.381710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381710,0.000000,0.000000,0.250000,0,0);}
.m2c_c00345{transform:matrix(0.382034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382034,0.000000,0.000000,0.250000,0,0);}
.mc_c00345{transform:matrix(0.395595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395595,0.000000,0.000000,0.250000,0,0);}
.m81_c00345{transform:matrix(0.395848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395848,0.000000,0.000000,0.250000,0,0);}
.m1e_c00345{transform:matrix(0.430152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430152,0.000000,0.000000,0.250000,0,0);}
.v1_c00345{vertical-align:-1.452132px;}
.v0_c00345{vertical-align:0.000000px;}
.v2_c00345{vertical-align:9.999000px;}
.ls5_c00345{letter-spacing:-2.674980px;}
.ls9_c00345{letter-spacing:-1.746367px;}
.ls8_c00345{letter-spacing:-1.398632px;}
.lsc_c00345{letter-spacing:-0.796950px;}
.ls4_c00345{letter-spacing:0.000000px;}
.lsa_c00345{letter-spacing:0.955350px;}
.ls3_c00345{letter-spacing:1.612631px;}
.ls7_c00345{letter-spacing:1.643400px;}
.ls1_c00345{letter-spacing:2.506838px;}
.ls0_c00345{letter-spacing:2.522520px;}
.lsb_c00345{letter-spacing:2.574000px;}
.lsd_c00345{letter-spacing:2.881336px;}
.lse_c00345{letter-spacing:3.660901px;}
.ls6_c00345{letter-spacing:3.821400px;}
.ls2_c00345{letter-spacing:7.000488px;}
.lsf_c00345{letter-spacing:31.363200px;}
.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;}
}
.ws2_c00345{word-spacing:-21.613838px;}
.ws0_c00345{word-spacing:-19.107000px;}
.ws1_c00345{word-spacing:-15.392520px;}
.ws3_c00345{word-spacing:0.000000px;}
._b_c00345{margin-left:-16.850537px;}
._10_c00345{margin-left:-8.712792px;}
._9_c00345{margin-left:-7.642800px;}
._17_c00345{width:2.100780px;}
._11_c00345{width:4.585680px;}
._5_c00345{width:6.877728px;}
._1_c00345{width:8.177796px;}
._6_c00345{width:9.553500px;}
._d_c00345{width:11.388168px;}
._12_c00345{width:13.145616px;}
._e_c00345{width:14.827032px;}
._18_c00345{width:16.451820px;}
._7_c00345{width:20.847420px;}
._4_c00345{width:22.775544px;}
._16_c00345{width:24.304896px;}
._13_c00345{width:26.214804px;}
._f_c00345{width:27.437652px;}
._0_c00345{width:31.717620px;}
._a_c00345{width:33.670692px;}
._2_c00345{width:35.309736px;}
._15_c00345{width:36.428436px;}
._3_c00345{width:37.449720px;}
._8_c00345{width:39.666132px;}
._c_c00345{width:42.434568px;}
._14_c00345{width:44.641476px;}
.fc0_c00345{color:transparent;}
.fs1_c00345{font-size:22.176000px;}
.fsb_c00345{font-size:22.770000px;}
.fs12_c00345{font-size:23.166000px;}
.fs13_c00345{font-size:31.363200px;}
.fs2_c00345{font-size:32.868000px;}
.fs8_c00345{font-size:33.660000px;}
.fs7_c00345{font-size:39.600000px;}
.fs6_c00345{font-size:45.144000px;}
.fs3_c00345{font-size:49.896198px;}
.fs4_c00345{font-size:50.688000px;}
.fs9_c00345{font-size:51.480000px;}
.fsd_c00345{font-size:59.400000px;}
.fse_c00345{font-size:60.192000px;}
.fs10_c00345{font-size:72.468000px;}
.fs11_c00345{font-size:72.864000px;}
.fsc_c00345{font-size:74.448000px;}
.fs0_c00345{font-size:76.428000px;}
.fs5_c00345{font-size:85.536198px;}
.fsa_c00345{font-size:90.288000px;}
.fsf_c00345{font-size:91.872198px;}
.y0_c00345{bottom:0.000000px;}
.y28_c00345{bottom:7.747785px;}
.y27_c00345{bottom:33.764985px;}
.y26_c00345{bottom:44.456985px;}
.y25_c00345{bottom:56.930985px;}
.y1_c00345{bottom:76.500000px;}
.y24_c00345{bottom:141.759135px;}
.y23_c00345{bottom:172.053135px;}
.y22_c00345{bottom:236.912985px;}
.y21_c00345{bottom:262.578735px;}
.y1e_c00345{bottom:265.073535px;}
.y20_c00345{bottom:268.988985px;}
.y1f_c00345{bottom:269.350335px;}
.y1c_c00345{bottom:269.701785px;}
.y1d_c00345{bottom:284.670585px;}
.y1b_c00345{bottom:302.139135px;}
.y1a_c00345{bottom:334.571535px;}
.y19_c00345{bottom:398.723535px;}
.y18_c00345{bottom:430.794585px;}
.y17_c00345{bottom:447.188985px;}
.y16_c00345{bottom:466.083135px;}
.y15_c00345{bottom:499.584735px;}
.y14_c00345{bottom:531.660735px;}
.y13_c00345{bottom:564.444585px;}
.y12_c00345{bottom:591.892335px;}
.y11_c00345{bottom:592.956585px;}
.yf_c00345{bottom:596.525535px;}
.y10_c00345{bottom:597.233385px;}
.ye_c00345{bottom:629.670735px;}
.yd_c00345{bottom:693.461385px;}
.yc_c00345{bottom:714.137535px;}
.yb_c00345{bottom:725.898735px;}
.ya_c00345{bottom:758.331135px;}
.y8_c00345{bottom:791.471385px;}
.y9_c00345{bottom:797.178735px;}
.y7_c00345{bottom:823.908735px;}
.y6_c00345{bottom:878.076585px;}
.y5_c00345{bottom:890.555535px;}
.y4_c00345{bottom:924.413535px;}
.y3_c00345{bottom:1014.934185px;}
.y2_c00345{bottom:1073.027385px;}
.h15_c00345{height:20.887891px;}
.hd_c00345{height:22.347510px;}
.he_c00345{height:22.947891px;}
.h3_c00345{height:23.128875px;}
.h14_c00345{height:24.161414px;}
.ha_c00345{height:33.035449px;}
.h4_c00345{height:34.280297px;}
.h9_c00345{height:41.301563px;}
.h8_c00345{height:47.083781px;}
.hb_c00345{height:50.524805px;}
.h5_c00345{height:52.040175px;}
.h6_c00345{height:52.866000px;}
.h10_c00345{height:62.778375px;}
.h12_c00345{height:71.087994px;}
.h13_c00345{height:71.512031px;}
.hf_c00345{height:73.066641px;}
.h2_c00345{height:75.009902px;}
.h7_c00345{height:83.949101px;}
.h11_c00345{height:90.167538px;}
.hc_c00345{height:94.167563px;}
.h1_c00345{height:1110.000000px;}
.h0_c00345{height:1263.000000px;}
.w1_c00345{width:775.500000px;}
.w0_c00345{width:892.500000px;}
.x0_c00345{left:0.000000px;}
.x1_c00345{left:58.500000px;}
.x22_c00345{left:93.645735px;}
.x5_c00345{left:95.234685px;}
.x5f_c00345{left:96.293985px;}
.x29_c00345{left:115.836585px;}
.x65_c00345{left:118.034385px;}
.x39_c00345{left:127.375035px;}
.x69_c00345{left:128.800635px;}
.x3a_c00345{left:137.497785px;}
.x6_c00345{left:138.774885px;}
.x13_c00345{left:149.560935px;}
.x75_c00345{left:151.258785px;}
.x2a_c00345{left:158.579835px;}
.x14_c00345{left:160.940985px;}
.x56_c00345{left:165.435585px;}
.x7_c00345{left:172.231935px;}
.x3b_c00345{left:181.899285px;}
.x15_c00345{left:183.275385px;}
.x6a_c00345{left:184.394085px;}
.x33_c00345{left:193.898085px;}
.x57_c00345{left:203.679285px;}
.x49_c00345{left:204.713835px;}
.x16_c00345{left:205.778085px;}
.x58_c00345{left:211.485435px;}
.x8_c00345{left:215.277135px;}
.x5c_c00345{left:216.900735px;}
.x2b_c00345{left:227.157135px;}
.x23_c00345{left:237.873885px;}
.x9_c00345{left:249.263835px;}
.x5d_c00345{left:250.615185px;}
.x59_c00345{left:259.441035px;}
.x17_c00345{left:261.020085px;}
.x6b_c00345{left:262.054635px;}
.x66_c00345{left:270.736935px;}
.x61_c00345{left:272.731785px;}
.x51_c00345{left:278.741085px;}
.x52_c00345{left:281.181435px;}
.x4a_c00345{left:282.765435px;}
.xa_c00345{left:293.754435px;}
.x18_c00345{left:302.921835px;}
.x41_c00345{left:305.084985px;}
.x76_c00345{left:306.114585px;}
.x53_c00345{left:314.999835px;}
.x6c_c00345{left:316.623435px;}
.x2c_c00345{left:326.756085px;}
.x6d_c00345{left:328.354935px;}
.x47_c00345{left:335.438385px;}
.xb_c00345{left:337.651035px;}
.x42_c00345{left:338.725185px;}
.x4b_c00345{left:349.179585px;}
.x43_c00345{left:359.911185px;}
.x19_c00345{left:370.741785px;}
.xc_c00345{left:371.835735px;}
.x72_c00345{left:373.231635px;}
.x4c_c00345{left:382.913835px;}
.x67_c00345{left:393.962235px;}
.x3c_c00345{left:404.109735px;}
.x4d_c00345{left:415.222485px;}
.x5a_c00345{left:418.449885px;}
.x1a_c00345{left:426.053085px;}
.x2d_c00345{left:430.943685px;}
.x2e_c00345{left:435.502635px;}
.x34_c00345{left:437.423235px;}
.x73_c00345{left:440.927835px;}
.x1b_c00345{left:447.778635px;}
.x3d_c00345{left:459.539835px;}
.xd_c00345{left:470.231835px;}
.x54_c00345{left:471.523785px;}
.x38_c00345{left:481.884135px;}
.x1c_c00345{left:492.328635px;}
.x2f_c00345{left:493.694835px;}
.xe_c00345{left:502.149435px;}
.x24_c00345{left:503.357235px;}
.x68_c00345{left:504.441285px;}
.x12_c00345{left:507.059835px;}
.x79_c00345{left:509.911035px;}
.x30_c00345{left:515.133285px;}
.x1d_c00345{left:525.622335px;}
.x6e_c00345{left:531.889035px;}
.xf_c00345{left:535.606485px;}
.x3e_c00345{left:537.235035px;}
.x35_c00345{left:547.179585px;}
.x44_c00345{left:548.243835px;}
.x5b_c00345{left:549.268485px;}
.x4_c00345{left:551.609835px;}
.x25_c00345{left:559.267485px;}
.x60_c00345{left:560.401035px;}
.x26_c00345{left:581.423685px;}
.x45_c00345{left:583.270035px;}
.x55_c00345{left:593.516535px;}
.x31_c00345{left:594.536235px;}
.x1e_c00345{left:595.843035px;}
.x10_c00345{left:601.535535px;}
.x1f_c00345{left:603.530385px;}
.x36_c00345{left:614.217435px;}
.x62_c00345{left:615.281685px;}
.x46_c00345{left:617.009235px;}
.x20_c00345{left:624.003585px;}
.x4e_c00345{left:625.597485px;}
.x6f_c00345{left:628.725885px;}
.x3f_c00345{left:635.829135px;}
.x63_c00345{left:637.309185px;}
.x5e_c00345{left:639.799035px;}
.x37_c00345{left:648.382335px;}
.x71_c00345{left:652.416585px;}
.x27_c00345{left:658.054635px;}
.x21_c00345{left:659.405985px;}
.x4f_c00345{left:668.231835px;}
.x2_c00345{left:669.434685px;}
.x64_c00345{left:670.691985px;}
.x11_c00345{left:680.443485px;}
.x3_c00345{left:682.279935px;}
.x32_c00345{left:691.145385px;}
.x70_c00345{left:692.986785px;}
.x28_c00345{left:703.233285px;}
.x74_c00345{left:705.025185px;}
.x77_c00345{left:709.638585px;}
.x78_c00345{left:711.202785px;}
.x50_c00345{left:713.088735px;}
.x48_c00345{left:714.306435px;}
.x40_c00345{left:747.129885px;}
@media print{
.v1_c00345{vertical-align:-1.290784pt;}
.v0_c00345{vertical-align:0.000000pt;}
.v2_c00345{vertical-align:8.888000pt;}
.ls5_c00345{letter-spacing:-2.377760pt;}
.ls9_c00345{letter-spacing:-1.552326pt;}
.ls8_c00345{letter-spacing:-1.243229pt;}
.lsc_c00345{letter-spacing:-0.708400pt;}
.ls4_c00345{letter-spacing:0.000000pt;}
.lsa_c00345{letter-spacing:0.849200pt;}
.ls3_c00345{letter-spacing:1.433450pt;}
.ls7_c00345{letter-spacing:1.460800pt;}
.ls1_c00345{letter-spacing:2.228301pt;}
.ls0_c00345{letter-spacing:2.242240pt;}
.lsb_c00345{letter-spacing:2.288000pt;}
.lsd_c00345{letter-spacing:2.561187pt;}
.lse_c00345{letter-spacing:3.254134pt;}
.ls6_c00345{letter-spacing:3.396800pt;}
.ls2_c00345{letter-spacing:6.222656pt;}
.lsf_c00345{letter-spacing:27.878400pt;}
.ws2_c00345{word-spacing:-19.212301pt;}
.ws0_c00345{word-spacing:-16.984000pt;}
.ws1_c00345{word-spacing:-13.682240pt;}
.ws3_c00345{word-spacing:0.000000pt;}
._b_c00345{margin-left:-14.978255pt;}
._10_c00345{margin-left:-7.744704pt;}
._9_c00345{margin-left:-6.793600pt;}
._17_c00345{width:1.867360pt;}
._11_c00345{width:4.076160pt;}
._5_c00345{width:6.113536pt;}
._1_c00345{width:7.269152pt;}
._6_c00345{width:8.492000pt;}
._d_c00345{width:10.122816pt;}
._12_c00345{width:11.684992pt;}
._e_c00345{width:13.179584pt;}
._18_c00345{width:14.623840pt;}
._7_c00345{width:18.531040pt;}
._4_c00345{width:20.244928pt;}
._16_c00345{width:21.604352pt;}
._13_c00345{width:23.302048pt;}
._f_c00345{width:24.389024pt;}
._0_c00345{width:28.193440pt;}
._a_c00345{width:29.929504pt;}
._2_c00345{width:31.386432pt;}
._15_c00345{width:32.380832pt;}
._3_c00345{width:33.288640pt;}
._8_c00345{width:35.258784pt;}
._c_c00345{width:37.719616pt;}
._14_c00345{width:39.681312pt;}
.fs1_c00345{font-size:19.712000pt;}
.fsb_c00345{font-size:20.240000pt;}
.fs12_c00345{font-size:20.592000pt;}
.fs13_c00345{font-size:27.878400pt;}
.fs2_c00345{font-size:29.216000pt;}
.fs8_c00345{font-size:29.920000pt;}
.fs7_c00345{font-size:35.200000pt;}
.fs6_c00345{font-size:40.128000pt;}
.fs3_c00345{font-size:44.352176pt;}
.fs4_c00345{font-size:45.056000pt;}
.fs9_c00345{font-size:45.760000pt;}
.fsd_c00345{font-size:52.800000pt;}
.fse_c00345{font-size:53.504000pt;}
.fs10_c00345{font-size:64.416000pt;}
.fs11_c00345{font-size:64.768000pt;}
.fsc_c00345{font-size:66.176000pt;}
.fs0_c00345{font-size:67.936000pt;}
.fs5_c00345{font-size:76.032176pt;}
.fsa_c00345{font-size:80.256000pt;}
.fsf_c00345{font-size:81.664176pt;}
.y0_c00345{bottom:0.000000pt;}
.y28_c00345{bottom:6.886920pt;}
.y27_c00345{bottom:30.013320pt;}
.y26_c00345{bottom:39.517320pt;}
.y25_c00345{bottom:50.605320pt;}
.y1_c00345{bottom:68.000000pt;}
.y24_c00345{bottom:126.008120pt;}
.y23_c00345{bottom:152.936120pt;}
.y22_c00345{bottom:210.589320pt;}
.y21_c00345{bottom:233.403320pt;}
.y1e_c00345{bottom:235.620920pt;}
.y20_c00345{bottom:239.101320pt;}
.y1f_c00345{bottom:239.422520pt;}
.y1c_c00345{bottom:239.734920pt;}
.y1d_c00345{bottom:253.040520pt;}
.y1b_c00345{bottom:268.568120pt;}
.y1a_c00345{bottom:297.396920pt;}
.y19_c00345{bottom:354.420920pt;}
.y18_c00345{bottom:382.928520pt;}
.y17_c00345{bottom:397.501320pt;}
.y16_c00345{bottom:414.296120pt;}
.y15_c00345{bottom:444.075320pt;}
.y14_c00345{bottom:472.587320pt;}
.y13_c00345{bottom:501.728520pt;}
.y12_c00345{bottom:526.126520pt;}
.y11_c00345{bottom:527.072520pt;}
.yf_c00345{bottom:530.244920pt;}
.y10_c00345{bottom:530.874120pt;}
.ye_c00345{bottom:559.707320pt;}
.yd_c00345{bottom:616.410120pt;}
.yc_c00345{bottom:634.788920pt;}
.yb_c00345{bottom:645.243320pt;}
.ya_c00345{bottom:674.072120pt;}
.y8_c00345{bottom:703.530120pt;}
.y9_c00345{bottom:708.603320pt;}
.y7_c00345{bottom:732.363320pt;}
.y6_c00345{bottom:780.512520pt;}
.y5_c00345{bottom:791.604920pt;}
.y4_c00345{bottom:821.700920pt;}
.y3_c00345{bottom:902.163720pt;}
.y2_c00345{bottom:953.802120pt;}
.h15_c00345{height:18.567014pt;}
.hd_c00345{height:19.864453pt;}
.he_c00345{height:20.398125pt;}
.h3_c00345{height:20.559000pt;}
.h14_c00345{height:21.476813pt;}
.ha_c00345{height:29.364844pt;}
.h4_c00345{height:30.471375pt;}
.h9_c00345{height:36.712500pt;}
.h8_c00345{height:41.852250pt;}
.hb_c00345{height:44.910938pt;}
.h5_c00345{height:46.257934pt;}
.h6_c00345{height:46.992000pt;}
.h10_c00345{height:55.803000pt;}
.h12_c00345{height:63.189328pt;}
.h13_c00345{height:63.566250pt;}
.hf_c00345{height:64.948125pt;}
.h2_c00345{height:66.675469pt;}
.h7_c00345{height:74.621423pt;}
.h11_c00345{height:80.148923pt;}
.hc_c00345{height:83.704500pt;}
.h1_c00345{height:986.666667pt;}
.h0_c00345{height:1122.666667pt;}
.w1_c00345{width:689.333333pt;}
.w0_c00345{width:793.333333pt;}
.x0_c00345{left:0.000000pt;}
.x1_c00345{left:52.000000pt;}
.x22_c00345{left:83.240653pt;}
.x5_c00345{left:84.653053pt;}
.x5f_c00345{left:85.594653pt;}
.x29_c00345{left:102.965853pt;}
.x65_c00345{left:104.919453pt;}
.x39_c00345{left:113.222253pt;}
.x69_c00345{left:114.489453pt;}
.x3a_c00345{left:122.220253pt;}
.x6_c00345{left:123.355453pt;}
.x13_c00345{left:132.943053pt;}
.x75_c00345{left:134.452253pt;}
.x2a_c00345{left:140.959853pt;}
.x14_c00345{left:143.058653pt;}
.x56_c00345{left:147.053853pt;}
.x7_c00345{left:153.095053pt;}
.x3b_c00345{left:161.688253pt;}
.x15_c00345{left:162.911453pt;}
.x6a_c00345{left:163.905853pt;}
.x33_c00345{left:172.353853pt;}
.x57_c00345{left:181.048253pt;}
.x49_c00345{left:181.967853pt;}
.x16_c00345{left:182.913853pt;}
.x58_c00345{left:187.987053pt;}
.x8_c00345{left:191.357453pt;}
.x5c_c00345{left:192.800653pt;}
.x2b_c00345{left:201.917453pt;}
.x23_c00345{left:211.443453pt;}
.x9_c00345{left:221.567853pt;}
.x5d_c00345{left:222.769053pt;}
.x59_c00345{left:230.614253pt;}
.x17_c00345{left:232.017853pt;}
.x6b_c00345{left:232.937453pt;}
.x66_c00345{left:240.655053pt;}
.x61_c00345{left:242.428253pt;}
.x51_c00345{left:247.769853pt;}
.x52_c00345{left:249.939053pt;}
.x4a_c00345{left:251.347053pt;}
.xa_c00345{left:261.115053pt;}
.x18_c00345{left:269.263853pt;}
.x41_c00345{left:271.186653pt;}
.x76_c00345{left:272.101853pt;}
.x53_c00345{left:279.999853pt;}
.x6c_c00345{left:281.443053pt;}
.x2c_c00345{left:290.449853pt;}
.x6d_c00345{left:291.871053pt;}
.x47_c00345{left:298.167453pt;}
.xb_c00345{left:300.134253pt;}
.x42_c00345{left:301.089053pt;}
.x4b_c00345{left:310.381853pt;}
.x43_c00345{left:319.921053pt;}
.x19_c00345{left:329.548253pt;}
.xc_c00345{left:330.520653pt;}
.x72_c00345{left:331.761453pt;}
.x4c_c00345{left:340.367853pt;}
.x67_c00345{left:350.188653pt;}
.x3c_c00345{left:359.208653pt;}
.x4d_c00345{left:369.086653pt;}
.x5a_c00345{left:371.955453pt;}
.x1a_c00345{left:378.713853pt;}
.x2d_c00345{left:383.061053pt;}
.x2e_c00345{left:387.113453pt;}
.x34_c00345{left:388.820653pt;}
.x73_c00345{left:391.935853pt;}
.x1b_c00345{left:398.025453pt;}
.x3d_c00345{left:408.479853pt;}
.xd_c00345{left:417.983853pt;}
.x54_c00345{left:419.132253pt;}
.x38_c00345{left:428.341453pt;}
.x1c_c00345{left:437.625453pt;}
.x2f_c00345{left:438.839853pt;}
.xe_c00345{left:446.355053pt;}
.x24_c00345{left:447.428653pt;}
.x68_c00345{left:448.392253pt;}
.x12_c00345{left:450.719853pt;}
.x79_c00345{left:453.254253pt;}
.x30_c00345{left:457.896253pt;}
.x1d_c00345{left:467.219853pt;}
.x6e_c00345{left:472.790253pt;}
.xf_c00345{left:476.094653pt;}
.x3e_c00345{left:477.542253pt;}
.x35_c00345{left:486.381853pt;}
.x44_c00345{left:487.327853pt;}
.x5b_c00345{left:488.238653pt;}
.x4_c00345{left:490.319853pt;}
.x25_c00345{left:497.126653pt;}
.x60_c00345{left:498.134253pt;}
.x26_c00345{left:516.821053pt;}
.x45_c00345{left:518.462253pt;}
.x55_c00345{left:527.570253pt;}
.x31_c00345{left:528.476653pt;}
.x1e_c00345{left:529.638253pt;}
.x10_c00345{left:534.698253pt;}
.x1f_c00345{left:536.471453pt;}
.x36_c00345{left:545.971053pt;}
.x62_c00345{left:546.917053pt;}
.x46_c00345{left:548.452653pt;}
.x20_c00345{left:554.669853pt;}
.x4e_c00345{left:556.086653pt;}
.x6f_c00345{left:558.867453pt;}
.x3f_c00345{left:565.181453pt;}
.x63_c00345{left:566.497053pt;}
.x5e_c00345{left:568.710253pt;}
.x37_c00345{left:576.339853pt;}
.x71_c00345{left:579.925853pt;}
.x27_c00345{left:584.937453pt;}
.x21_c00345{left:586.138653pt;}
.x4f_c00345{left:593.983853pt;}
.x2_c00345{left:595.053053pt;}
.x64_c00345{left:596.170653pt;}
.x11_c00345{left:604.838653pt;}
.x3_c00345{left:606.471053pt;}
.x32_c00345{left:614.351453pt;}
.x70_c00345{left:615.988253pt;}
.x28_c00345{left:625.096253pt;}
.x74_c00345{left:626.689053pt;}
.x77_c00345{left:630.789853pt;}
.x78_c00345{left:632.180253pt;}
.x50_c00345{left:633.856653pt;}
.x48_c00345{left:634.939053pt;}
.x40_c00345{left:664.115453pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d6a1615bb8926e6249bcf433.woff2')format("woff");}.ff1_c00346{font-family:ff1_c00346;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00346;src:url('chunks/assets/font_a7f437350c894a05219549ec.woff2')format("woff");}.ff2_c00346{font-family:ff2_c00346;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00346;src:url('chunks/assets/font_a1f4d9e5317853153d8c91f5.woff2')format("woff");}.ff3_c00346{font-family:ff3_c00346;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00346;src:url('chunks/assets/font_88f6fe43c6c53668c608712b.woff2')format("woff");}.ff4_c00346{font-family:ff4_c00346;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m25_c00346{transform:matrix(0.140144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140144,0.000000,0.000000,0.250000,0,0);}
.mad_c00346{transform:matrix(0.149396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149396,0.000000,0.000000,0.250000,0,0);}
.m5c_c00346{transform:matrix(0.185365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185365,0.000000,0.000000,0.250000,0,0);}
.mc4_c00346{transform:matrix(0.190239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190239,0.000000,0.000000,0.250000,0,0);}
.ma2_c00346{transform:matrix(0.191689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191689,0.000000,0.000000,0.250000,0,0);}
.m68_c00346{transform:matrix(0.199151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199151,0.000000,0.000000,0.250000,0,0);}
.mb3_c00346{transform:matrix(0.204463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204463,0.000000,0.000000,0.250000,0,0);}
.ma3_c00346{transform:matrix(0.210241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210241,0.000000,0.000000,0.250000,0,0);}
.m50_c00346{transform:matrix(0.215166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215166,0.000000,0.000000,0.250000,0,0);}
.m39_c00346{transform:matrix(0.229864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229864,0.000000,0.000000,0.250000,0,0);}
.m8f_c00346{transform:matrix(0.233827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233827,0.000000,0.000000,0.250000,0,0);}
.m98_c00346{transform:matrix(0.243495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243495,0.000000,0.000000,0.250000,0,0);}
.m2_c00346{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00346{transform:matrix(0.251235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251235,0.000000,0.000000,0.250000,0,0);}
.maf_c00346{transform:matrix(0.256086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256086,0.000000,0.000000,0.250000,0,0);}
.m94_c00346{transform:matrix(0.256987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256987,0.000000,0.000000,0.250000,0,0);}
.mb9_c00346{transform:matrix(0.257070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257070,0.000000,0.000000,0.250000,0,0);}
.ma6_c00346{transform:matrix(0.258713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258713,0.000000,0.000000,0.250000,0,0);}
.m2b_c00346{transform:matrix(0.259130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259130,0.000000,0.000000,0.250000,0,0);}
.m32_c00346{transform:matrix(0.260798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260798,0.000000,0.000000,0.250000,0,0);}
.m49_c00346{transform:matrix(0.260800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260800,0.000000,0.000000,0.250000,0,0);}
.m38_c00346{transform:matrix(0.261472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261472,0.000000,0.000000,0.250000,0,0);}
.m61_c00346{transform:matrix(0.261809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261809,0.000000,0.000000,0.250000,0,0);}
.mc9_c00346{transform:matrix(0.261999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261999,0.000000,0.000000,0.250000,0,0);}
.m4e_c00346{transform:matrix(0.262132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262132,0.000000,0.000000,0.250000,0,0);}
.m4b_c00346{transform:matrix(0.262405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262405,0.000000,0.000000,0.250000,0,0);}
.m9a_c00346{transform:matrix(0.265085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265085,0.000000,0.000000,0.250000,0,0);}
.m91_c00346{transform:matrix(0.268862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268862,0.000000,0.000000,0.250000,0,0);}
.mb7_c00346{transform:matrix(0.269719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269719,0.000000,0.000000,0.250000,0,0);}
.m7f_c00346{transform:matrix(0.270315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270315,0.000000,0.000000,0.250000,0,0);}
.m72_c00346{transform:matrix(0.271977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271977,0.000000,0.000000,0.250000,0,0);}
.m2d_c00346{transform:matrix(0.272079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272079,0.000000,0.000000,0.250000,0,0);}
.maa_c00346{transform:matrix(0.273272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273272,0.000000,0.000000,0.250000,0,0);}
.mce_c00346{transform:matrix(0.273710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273710,0.000000,0.000000,0.250000,0,0);}
.m44_c00346{transform:matrix(0.274233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274233,0.000000,0.000000,0.250000,0,0);}
.m23_c00346{transform:matrix(0.275581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275581,0.000000,0.000000,0.250000,0,0);}
.m9b_c00346{transform:matrix(0.276760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276760,0.000000,0.000000,0.250000,0,0);}
.mc2_c00346{transform:matrix(0.276988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276988,0.000000,0.000000,0.250000,0,0);}
.me4_c00346{transform:matrix(0.277170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277170,0.000000,0.000000,0.250000,0,0);}
.m57_c00346{transform:matrix(0.278381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278381,0.000000,0.000000,0.250000,0,0);}
.m4_c00346{transform:matrix(0.278450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278450,0.000000,0.000000,0.250000,0,0);}
.m66_c00346{transform:matrix(0.279044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279044,0.000000,0.000000,0.250000,0,0);}
.md4_c00346{transform:matrix(0.279125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279125,0.000000,0.000000,0.250000,0,0);}
.mcc_c00346{transform:matrix(0.279709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279709,0.000000,0.000000,0.250000,0,0);}
.m9c_c00346{transform:matrix(0.279831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279831,0.000000,0.000000,0.250000,0,0);}
.md7_c00346{transform:matrix(0.279951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279951,0.000000,0.000000,0.250000,0,0);}
.m2e_c00346{transform:matrix(0.281053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281053,0.000000,0.000000,0.250000,0,0);}
.me_c00346{transform:matrix(0.281360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281360,0.000000,0.000000,0.250000,0,0);}
.m10_c00346{transform:matrix(0.281580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281580,0.000000,0.000000,0.250000,0,0);}
.m53_c00346{transform:matrix(0.282396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282396,0.000000,0.000000,0.250000,0,0);}
.mbd_c00346{transform:matrix(0.282416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282416,0.000000,0.000000,0.250000,0,0);}
.ma5_c00346{transform:matrix(0.282630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282630,0.000000,0.000000,0.250000,0,0);}
.m1c_c00346{transform:matrix(0.284110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284110,0.000000,0.000000,0.250000,0,0);}
.mdb_c00346{transform:matrix(0.284507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284507,0.000000,0.000000,0.250000,0,0);}
.m73_c00346{transform:matrix(0.284571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284571,0.000000,0.000000,0.250000,0,0);}
.m2c_c00346{transform:matrix(0.284704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284704,0.000000,0.000000,0.250000,0,0);}
.m65_c00346{transform:matrix(0.284760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284760,0.000000,0.000000,0.250000,0,0);}
.m6a_c00346{transform:matrix(0.285650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285650,0.000000,0.000000,0.250000,0,0);}
.mb5_c00346{transform:matrix(0.286623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286623,0.000000,0.000000,0.250000,0,0);}
.m59_c00346{transform:matrix(0.286820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286820,0.000000,0.000000,0.250000,0,0);}
.me6_c00346{transform:matrix(0.286988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286988,0.000000,0.000000,0.250000,0,0);}
.m56_c00346{transform:matrix(0.287249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287249,0.000000,0.000000,0.250000,0,0);}
.mdd_c00346{transform:matrix(0.287429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287429,0.000000,0.000000,0.250000,0,0);}
.me5_c00346{transform:matrix(0.287615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287615,0.000000,0.000000,0.250000,0,0);}
.m24_c00346{transform:matrix(0.288814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288814,0.000000,0.000000,0.250000,0,0);}
.m7d_c00346{transform:matrix(0.289094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289094,0.000000,0.000000,0.250000,0,0);}
.mdf_c00346{transform:matrix(0.289368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289368,0.000000,0.000000,0.250000,0,0);}
.me8_c00346{transform:matrix(0.289561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289561,0.000000,0.000000,0.250000,0,0);}
.m45_c00346{transform:matrix(0.289844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289844,0.000000,0.000000,0.250000,0,0);}
.m3a_c00346{transform:matrix(0.290097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290097,0.000000,0.000000,0.250000,0,0);}
.m1a_c00346{transform:matrix(0.290847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290847,0.000000,0.000000,0.250000,0,0);}
.m9f_c00346{transform:matrix(0.291595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291595,0.000000,0.000000,0.250000,0,0);}
.md0_c00346{transform:matrix(0.291788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291788,0.000000,0.000000,0.250000,0,0);}
.ma_c00346{transform:matrix(0.292287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292287,0.000000,0.000000,0.250000,0,0);}
.mba_c00346{transform:matrix(0.292968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292968,0.000000,0.000000,0.250000,0,0);}
.mb2_c00346{transform:matrix(0.293377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293377,0.000000,0.000000,0.250000,0,0);}
.m6f_c00346{transform:matrix(0.293657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293657,0.000000,0.000000,0.250000,0,0);}
.m8_c00346{transform:matrix(0.294445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294445,0.000000,0.000000,0.250000,0,0);}
.m3c_c00346{transform:matrix(0.295786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295786,0.000000,0.000000,0.250000,0,0);}
.m31_c00346{transform:matrix(0.296531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296531,0.000000,0.000000,0.250000,0,0);}
.md3_c00346{transform:matrix(0.296823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296823,0.000000,0.000000,0.250000,0,0);}
.m88_c00346{transform:matrix(0.298463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298463,0.000000,0.000000,0.250000,0,0);}
.mab_c00346{transform:matrix(0.298830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298830,0.000000,0.000000,0.250000,0,0);}
.mbe_c00346{transform:matrix(0.299119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299119,0.000000,0.000000,0.250000,0,0);}
.me3_c00346{transform:matrix(0.299246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299246,0.000000,0.000000,0.250000,0,0);}
.m6e_c00346{transform:matrix(0.299479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299479,0.000000,0.000000,0.250000,0,0);}
.m74_c00346{transform:matrix(0.300046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300046,0.000000,0.000000,0.250000,0,0);}
.me2_c00346{transform:matrix(0.300289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300289,0.000000,0.000000,0.250000,0,0);}
.m16_c00346{transform:matrix(0.300315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300315,0.000000,0.000000,0.250000,0,0);}
.m7_c00346{transform:matrix(0.300494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300494,0.000000,0.000000,0.250000,0,0);}
.m28_c00346{transform:matrix(0.300517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300517,0.000000,0.000000,0.250000,0,0);}
.mc1_c00346{transform:matrix(0.300584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300584,0.000000,0.000000,0.250000,0,0);}
.m46_c00346{transform:matrix(0.300701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300701,0.000000,0.000000,0.250000,0,0);}
.m6c_c00346{transform:matrix(0.300733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300733,0.000000,0.000000,0.250000,0,0);}
.m79_c00346{transform:matrix(0.300748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300748,0.000000,0.000000,0.250000,0,0);}
.m15_c00346{transform:matrix(0.301120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301120,0.000000,0.000000,0.250000,0,0);}
.m6_c00346{transform:matrix(0.301473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301473,0.000000,0.000000,0.250000,0,0);}
.m52_c00346{transform:matrix(0.301902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301902,0.000000,0.000000,0.250000,0,0);}
.md9_c00346{transform:matrix(0.302832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302832,0.000000,0.000000,0.250000,0,0);}
.m7c_c00346{transform:matrix(0.303116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303116,0.000000,0.000000,0.250000,0,0);}
.m27_c00346{transform:matrix(0.303793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303793,0.000000,0.000000,0.250000,0,0);}
.m54_c00346{transform:matrix(0.304095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304095,0.000000,0.000000,0.250000,0,0);}
.m5_c00346{transform:matrix(0.304510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304510,0.000000,0.000000,0.250000,0,0);}
.m13_c00346{transform:matrix(0.304774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304774,0.000000,0.000000,0.250000,0,0);}
.m4d_c00346{transform:matrix(0.305320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305320,0.000000,0.000000,0.250000,0,0);}
.md6_c00346{transform:matrix(0.305894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305894,0.000000,0.000000,0.250000,0,0);}
.mb_c00346{transform:matrix(0.305952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305952,0.000000,0.000000,0.250000,0,0);}
.m87_c00346{transform:matrix(0.306386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306386,0.000000,0.000000,0.250000,0,0);}
.m26_c00346{transform:matrix(0.306415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306415,0.000000,0.000000,0.250000,0,0);}
.mc5_c00346{transform:matrix(0.307052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307052,0.000000,0.000000,0.250000,0,0);}
.m29_c00346{transform:matrix(0.307056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307056,0.000000,0.000000,0.250000,0,0);}
.m41_c00346{transform:matrix(0.307565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307565,0.000000,0.000000,0.250000,0,0);}
.m75_c00346{transform:matrix(0.308480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308480,0.000000,0.000000,0.250000,0,0);}
.ma7_c00346{transform:matrix(0.308768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308768,0.000000,0.000000,0.250000,0,0);}
.me1_c00346{transform:matrix(0.309160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309160,0.000000,0.000000,0.250000,0,0);}
.me7_c00346{transform:matrix(0.309339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309339,0.000000,0.000000,0.250000,0,0);}
.m62_c00346{transform:matrix(0.309726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309726,0.000000,0.000000,0.250000,0,0);}
.m9_c00346{transform:matrix(0.310152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310152,0.000000,0.000000,0.250000,0,0);}
.m96_c00346{transform:matrix(0.310509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310509,0.000000,0.000000,0.250000,0,0);}
.m1b_c00346{transform:matrix(0.310613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310613,0.000000,0.000000,0.250000,0,0);}
.m2a_c00346{transform:matrix(0.311014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311014,0.000000,0.000000,0.250000,0,0);}
.m5a_c00346{transform:matrix(0.311017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311017,0.000000,0.000000,0.250000,0,0);}
.m84_c00346{transform:matrix(0.311429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311429,0.000000,0.000000,0.250000,0,0);}
.m77_c00346{transform:matrix(0.311760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311760,0.000000,0.000000,0.250000,0,0);}
.mda_c00346{transform:matrix(0.312289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312289,0.000000,0.000000,0.250000,0,0);}
.m76_c00346{transform:matrix(0.312409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312409,0.000000,0.000000,0.250000,0,0);}
.md5_c00346{transform:matrix(0.312545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312545,0.000000,0.000000,0.250000,0,0);}
.mb8_c00346{transform:matrix(0.313428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313428,0.000000,0.000000,0.250000,0,0);}
.m97_c00346{transform:matrix(0.313772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313772,0.000000,0.000000,0.250000,0,0);}
.m55_c00346{transform:matrix(0.314447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314447,0.000000,0.000000,0.250000,0,0);}
.m12_c00346{transform:matrix(0.314449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314449,0.000000,0.000000,0.250000,0,0);}
.m8b_c00346{transform:matrix(0.314695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314695,0.000000,0.000000,0.250000,0,0);}
.m8a_c00346{transform:matrix(0.314913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314913,0.000000,0.000000,0.250000,0,0);}
.m21_c00346{transform:matrix(0.316742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316742,0.000000,0.000000,0.250000,0,0);}
.mb0_c00346{transform:matrix(0.316806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316806,0.000000,0.000000,0.250000,0,0);}
.m70_c00346{transform:matrix(0.317689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317689,0.000000,0.000000,0.250000,0,0);}
.ma4_c00346{transform:matrix(0.319742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319742,0.000000,0.000000,0.250000,0,0);}
.m6b_c00346{transform:matrix(0.319768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319768,0.000000,0.000000,0.250000,0,0);}
.m4c_c00346{transform:matrix(0.319785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319785,0.000000,0.000000,0.250000,0,0);}
.mde_c00346{transform:matrix(0.320582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320582,0.000000,0.000000,0.250000,0,0);}
.mc7_c00346{transform:matrix(0.320947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320947,0.000000,0.000000,0.250000,0,0);}
.m36_c00346{transform:matrix(0.321178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321178,0.000000,0.000000,0.250000,0,0);}
.m14_c00346{transform:matrix(0.321661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321661,0.000000,0.000000,0.250000,0,0);}
.mcf_c00346{transform:matrix(0.321702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321702,0.000000,0.000000,0.250000,0,0);}
.m60_c00346{transform:matrix(0.322637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322637,0.000000,0.000000,0.250000,0,0);}
.mbf_c00346{transform:matrix(0.323052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323052,0.000000,0.000000,0.250000,0,0);}
.m47_c00346{transform:matrix(0.323174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323174,0.000000,0.000000,0.250000,0,0);}
.mf_c00346{transform:matrix(0.323380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323380,0.000000,0.000000,0.250000,0,0);}
.m3b_c00346{transform:matrix(0.324368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324368,0.000000,0.000000,0.250000,0,0);}
.mdc_c00346{transform:matrix(0.325261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325261,0.000000,0.000000,0.250000,0,0);}
.mcd_c00346{transform:matrix(0.325479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325479,0.000000,0.000000,0.250000,0,0);}
.m4a_c00346{transform:matrix(0.325729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325729,0.000000,0.000000,0.250000,0,0);}
.m7a_c00346{transform:matrix(0.325990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325990,0.000000,0.000000,0.250000,0,0);}
.m1e_c00346{transform:matrix(0.326622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326622,0.000000,0.000000,0.250000,0,0);}
.m90_c00346{transform:matrix(0.326903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326903,0.000000,0.000000,0.250000,0,0);}
.m20_c00346{transform:matrix(0.328011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328011,0.000000,0.000000,0.250000,0,0);}
.m1f_c00346{transform:matrix(0.329220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329220,0.000000,0.000000,0.250000,0,0);}
.m81_c00346{transform:matrix(0.330007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330007,0.000000,0.000000,0.250000,0,0);}
.m99_c00346{transform:matrix(0.330011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330011,0.000000,0.000000,0.250000,0,0);}
.m63_c00346{transform:matrix(0.330489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330489,0.000000,0.000000,0.250000,0,0);}
.m95_c00346{transform:matrix(0.332197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332197,0.000000,0.000000,0.250000,0,0);}
.m8c_c00346{transform:matrix(0.332311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332311,0.000000,0.000000,0.250000,0,0);}
.m2f_c00346{transform:matrix(0.332639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332639,0.000000,0.000000,0.250000,0,0);}
.m43_c00346{transform:matrix(0.332681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332681,0.000000,0.000000,0.250000,0,0);}
.ma1_c00346{transform:matrix(0.332902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332902,0.000000,0.000000,0.250000,0,0);}
.m34_c00346{transform:matrix(0.332948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332948,0.000000,0.000000,0.250000,0,0);}
.m7e_c00346{transform:matrix(0.333314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333314,0.000000,0.000000,0.250000,0,0);}
.m80_c00346{transform:matrix(0.334513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334513,0.000000,0.000000,0.250000,0,0);}
.m86_c00346{transform:matrix(0.334713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334713,0.000000,0.000000,0.250000,0,0);}
.md8_c00346{transform:matrix(0.335905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335905,0.000000,0.000000,0.250000,0,0);}
.m93_c00346{transform:matrix(0.336703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336703,0.000000,0.000000,0.250000,0,0);}
.m5d_c00346{transform:matrix(0.336934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336934,0.000000,0.000000,0.250000,0,0);}
.mb6_c00346{transform:matrix(0.337187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337187,0.000000,0.000000,0.250000,0,0);}
.md1_c00346{transform:matrix(0.337261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337261,0.000000,0.000000,0.250000,0,0);}
.m11_c00346{transform:matrix(0.338200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338200,0.000000,0.000000,0.250000,0,0);}
.mb4_c00346{transform:matrix(0.338548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338548,0.000000,0.000000,0.250000,0,0);}
.mca_c00346{transform:matrix(0.338579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338579,0.000000,0.000000,0.250000,0,0);}
.m89_c00346{transform:matrix(0.340526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340526,0.000000,0.000000,0.250000,0,0);}
.mbc_c00346{transform:matrix(0.341845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341845,0.000000,0.000000,0.250000,0,0);}
.m18_c00346{transform:matrix(0.342304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342304,0.000000,0.000000,0.250000,0,0);}
.m19_c00346{transform:matrix(0.343383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343383,0.000000,0.000000,0.250000,0,0);}
.m30_c00346{transform:matrix(0.343959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343959,0.000000,0.000000,0.250000,0,0);}
.m71_c00346{transform:matrix(0.344894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344894,0.000000,0.000000,0.250000,0,0);}
.m6d_c00346{transform:matrix(0.345078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345078,0.000000,0.000000,0.250000,0,0);}
.me0_c00346{transform:matrix(0.346479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346479,0.000000,0.000000,0.250000,0,0);}
.ma8_c00346{transform:matrix(0.346803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346803,0.000000,0.000000,0.250000,0,0);}
.mc0_c00346{transform:matrix(0.348005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348005,0.000000,0.000000,0.250000,0,0);}
.mae_c00346{transform:matrix(0.348680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348680,0.000000,0.000000,0.250000,0,0);}
.m8d_c00346{transform:matrix(0.349064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349064,0.000000,0.000000,0.250000,0,0);}
.m92_c00346{transform:matrix(0.349131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349131,0.000000,0.000000,0.250000,0,0);}
.m17_c00346{transform:matrix(0.350072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350072,0.000000,0.000000,0.250000,0,0);}
.m40_c00346{transform:matrix(0.350827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350827,0.000000,0.000000,0.250000,0,0);}
.m7b_c00346{transform:matrix(0.352872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352872,0.000000,0.000000,0.250000,0,0);}
.m82_c00346{transform:matrix(0.353016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353016,0.000000,0.000000,0.250000,0,0);}
.m22_c00346{transform:matrix(0.353584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353584,0.000000,0.000000,0.250000,0,0);}
.mbb_c00346{transform:matrix(0.356096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356096,0.000000,0.000000,0.250000,0,0);}
.m51_c00346{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);}
.m3f_c00346{transform:matrix(0.358894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358894,0.000000,0.000000,0.250000,0,0);}
.m58_c00346{transform:matrix(0.359554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359554,0.000000,0.000000,0.250000,0,0);}
.m1d_c00346{transform:matrix(0.360686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360686,0.000000,0.000000,0.250000,0,0);}
.m42_c00346{transform:matrix(0.361440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361440,0.000000,0.000000,0.250000,0,0);}
.mc6_c00346{transform:matrix(0.361525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361525,0.000000,0.000000,0.250000,0,0);}
.m9d_c00346{transform:matrix(0.363643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363643,0.000000,0.000000,0.250000,0,0);}
.m8e_c00346{transform:matrix(0.366091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366091,0.000000,0.000000,0.250000,0,0);}
.mc_c00346{transform:matrix(0.366254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366254,0.000000,0.000000,0.250000,0,0);}
.m5b_c00346{transform:matrix(0.367759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367759,0.000000,0.000000,0.250000,0,0);}
.mc8_c00346{transform:matrix(0.367966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367966,0.000000,0.000000,0.250000,0,0);}
.m33_c00346{transform:matrix(0.368358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368358,0.000000,0.000000,0.250000,0,0);}
.mcb_c00346{transform:matrix(0.368806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368806,0.000000,0.000000,0.250000,0,0);}
.m85_c00346{transform:matrix(0.369222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369222,0.000000,0.000000,0.250000,0,0);}
.m78_c00346{transform:matrix(0.371493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371493,0.000000,0.000000,0.250000,0,0);}
.mb1_c00346{transform:matrix(0.371883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371883,0.000000,0.000000,0.250000,0,0);}
.mc3_c00346{transform:matrix(0.372092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372092,0.000000,0.000000,0.250000,0,0);}
.m9e_c00346{transform:matrix(0.373639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373639,0.000000,0.000000,0.250000,0,0);}
.m3d_c00346{transform:matrix(0.374432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374432,0.000000,0.000000,0.250000,0,0);}
.ma9_c00346{transform:matrix(0.374772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374772,0.000000,0.000000,0.250000,0,0);}
.m83_c00346{transform:matrix(0.375623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375623,0.000000,0.000000,0.250000,0,0);}
.m69_c00346{transform:matrix(0.379844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379844,0.000000,0.000000,0.250000,0,0);}
.m37_c00346{transform:matrix(0.385387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385387,0.000000,0.000000,0.250000,0,0);}
.m3e_c00346{transform:matrix(0.387549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387549,0.000000,0.000000,0.250000,0,0);}
.mac_c00346{transform:matrix(0.387885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387885,0.000000,0.000000,0.250000,0,0);}
.m64_c00346{transform:matrix(0.388017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388017,0.000000,0.000000,0.250000,0,0);}
.m35_c00346{transform:matrix(0.390216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390216,0.000000,0.000000,0.250000,0,0);}
.ma0_c00346{transform:matrix(0.393045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393045,0.000000,0.000000,0.250000,0,0);}
.md2_c00346{transform:matrix(0.396416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396416,0.000000,0.000000,0.250000,0,0);}
.m67_c00346{transform:matrix(0.404576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404576,0.000000,0.000000,0.250000,0,0);}
.m5e_c00346{transform:matrix(0.416074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416074,0.000000,0.000000,0.250000,0,0);}
.m5f_c00346{transform:matrix(0.416340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416340,0.000000,0.000000,0.250000,0,0);}
.m48_c00346{transform:matrix(0.419085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419085,0.000000,0.000000,0.250000,0,0);}
.md_c00346{transform:matrix(0.458180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458180,0.000000,0.000000,0.250000,0,0);}
.m1_c00346{transform:matrix(0.537242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537242,0.000000,0.000000,0.250000,0,0);}
.m0_c00346{transform:matrix(0.560594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560594,0.000000,0.000000,0.250000,0,0);}
.m3_c00346{transform:matrix(0.725486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.725486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.725486,0.000000,0.000000,0.250000,0,0);}
.v1_c00346{vertical-align:-14.269860px;}
.v0_c00346{vertical-align:0.000000px;}
.ls7_c00346{letter-spacing:-2.543317px;}
.lsc_c00346{letter-spacing:-2.521517px;}
.lsa_c00346{letter-spacing:-1.511457px;}
.ls3_c00346{letter-spacing:0.000000px;}
.ls0_c00346{letter-spacing:2.390718px;}
.ls8_c00346{letter-spacing:2.494810px;}
.ls1_c00346{letter-spacing:2.579650px;}
.lse_c00346{letter-spacing:2.583900px;}
.ls9_c00346{letter-spacing:2.906648px;}
.lsb_c00346{letter-spacing:3.405610px;}
.ls6_c00346{letter-spacing:3.633310px;}
.lsd_c00346{letter-spacing:3.722400px;}
.ls5_c00346{letter-spacing:4.395610px;}
.ls2_c00346{letter-spacing:4.593610px;}
.ls4_c00346{letter-spacing:24.235398px;}
.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;}
}
.ws2_c00346{word-spacing:-21.073197px;}
.ws6_c00346{word-spacing:-20.746200px;}
.ws4_c00346{word-spacing:-20.557267px;}
.ws0_c00346{word-spacing:-18.166550px;}
.ws5_c00346{word-spacing:-15.645032px;}
.ws1_c00346{word-spacing:-2.833903px;}
.ws3_c00346{word-spacing:-1.889641px;}
.ws7_c00346{word-spacing:0.000000px;}
._18_c00346{margin-left:-20.491955px;}
._15_c00346{margin-left:-8.720690px;}
._1a_c00346{margin-left:-2.979936px;}
._3_c00346{margin-left:-1.380555px;}
._12_c00346{width:4.142061px;}
._e_c00346{width:5.595183px;}
._5_c00346{width:7.775372px;}
._b_c00346{width:9.228494px;}
._a_c00346{width:10.391348px;}
._9_c00346{width:11.917928px;}
._2_c00346{width:13.515788px;}
._8_c00346{width:14.895848px;}
._17_c00346{width:21.436217px;}
._13_c00346{width:22.453739px;}
._14_c00346{width:23.834591px;}
._1b_c00346{width:26.232569px;}
._19_c00346{width:27.606980px;}
._7_c00346{width:31.028431px;}
._1c_c00346{width:32.917561px;}
._16_c00346{width:34.371079px;}
._4_c00346{width:37.956859px;}
._d_c00346{width:39.021900px;}
._1d_c00346{width:40.765687px;}
._f_c00346{width:42.219007px;}
._1_c00346{width:43.599719px;}
._c_c00346{width:46.591067px;}
._6_c00346{width:47.917083px;}
._11_c00346{width:51.302242px;}
._10_c00346{width:52.682547px;}
._0_c00346{width:177.476508px;}
.fc0_c00346{color:transparent;}
.fs6_c00346{font-size:22.176000px;}
.fs1_c00346{font-size:24.235398px;}
.fsf_c00346{font-size:33.660000px;}
.fs2_c00346{font-size:39.204000px;}
.fsd_c00346{font-size:39.600000px;}
.fs5_c00346{font-size:49.896198px;}
.fse_c00346{font-size:51.678000px;}
.fs7_c00346{font-size:56.628000px;}
.fsc_c00346{font-size:66.330000px;}
.fs8_c00346{font-size:68.112198px;}
.fs4_c00346{font-size:72.666198px;}
.fsa_c00346{font-size:74.448000px;}
.fsb_c00346{font-size:79.200000px;}
.fs9_c00346{font-size:79.992198px;}
.fs3_c00346{font-size:87.912198px;}
.fs0_c00346{font-size:91.872198px;}
.y0_c00346{bottom:0.000000px;}
.y21_c00346{bottom:2.406735px;}
.y1_c00346{bottom:76.500000px;}
.y20_c00346{bottom:146.392335px;}
.y1f_c00346{bottom:161.004735px;}
.y1e_c00346{bottom:168.840585px;}
.y1c_c00346{bottom:177.750585px;}
.y1d_c00346{bottom:178.111935px;}
.y1b_c00346{bottom:243.689535px;}
.y1a_c00346{bottom:276.478335px;}
.y19_c00346{bottom:309.979935px;}
.y18_c00346{bottom:342.412335px;}
.y17_c00346{bottom:374.126985px;}
.y16_c00346{bottom:407.272185px;}
.y15_c00346{bottom:439.709535px;}
.y14_c00346{bottom:456.103935px;}
.y13_c00346{bottom:472.849785px;}
.y12_c00346{bottom:487.823535px;}
.y11_c00346{bottom:537.714585px;}
.y10_c00346{bottom:569.790585px;}
.yf_c00346{bottom:603.653535px;}
.ye_c00346{bottom:636.793785px;}
.yd_c00346{bottom:668.513385px;}
.yc_c00346{bottom:702.732735px;}
.yb_c00346{bottom:734.452335px;}
.ya_c00346{bottom:767.241135px;}
.y9_c00346{bottom:799.317135px;}
.y8_c00346{bottom:831.388185px;}
.y7_c00346{bottom:864.894735px;}
.y6_c00346{bottom:897.683535px;}
.y5_c00346{bottom:930.823785px;}
.y4_c00346{bottom:1078.373385px;}
.y3_c00346{bottom:1090.490985px;}
.y2_c00346{bottom:1101.895785px;}
.h3_c00346{height:16.140775px;}
.h8_c00346{height:23.128875px;}
.h11_c00346{height:33.035449px;}
.h4_c00346{height:38.476582px;}
.hf_c00346{height:41.301563px;}
.h7_c00346{height:48.970390px;}
.h10_c00346{height:50.719131px;}
.h9_c00346{height:59.061234px;}
.ha_c00346{height:66.848397px;}
.he_c00346{height:69.180117px;}
.h6_c00346{height:71.317899px;}
.hc_c00346{height:73.066641px;}
.hb_c00346{height:78.507968px;}
.hd_c00346{height:82.448438px;}
.h5_c00346{height:86.281015px;}
.h2_c00346{height:90.167538px;}
.h1_c00346{height:1110.000000px;}
.h0_c00346{height:1263.000000px;}
.w1_c00346{width:775.500000px;}
.w0_c00346{width:892.500000px;}
.x2_c00346{left:-2.067465px;}
.x0_c00346{left:0.000000px;}
.x3_c00346{left:33.602235px;}
.x1_c00346{left:58.500000px;}
.x18_c00346{left:98.150235px;}
.x9_c00346{left:99.556035px;}
.x78_c00346{left:100.630185px;}
.x6c_c00346{left:122.672535px;}
.x22_c00346{left:131.384535px;}
.x4_c00346{left:135.141585px;}
.x4a_c00346{left:140.720235px;}
.x23_c00346{left:142.210185px;}
.x19_c00346{left:143.343735px;}
.x5_c00346{left:146.823585px;}
.x65_c00346{left:151.699335px;}
.x43_c00346{left:152.991285px;}
.x53_c00346{left:162.817035px;}
.x2b_c00346{left:164.084235px;}
.x4b_c00346{left:174.464385px;}
.x6d_c00346{left:175.825635px;}
.x4c_c00346{left:178.558035px;}
.x73_c00346{left:184.597035px;}
.x37_c00346{left:186.200835px;}
.x6e_c00346{left:190.997385px;}
.xa_c00346{left:196.541385px;}
.x2c_c00346{left:197.566035px;}
.x5c_c00346{left:202.951635px;}
.xb_c00346{left:206.693835px;}
.x38_c00346{left:208.277835px;}
.x7f_c00346{left:209.569785px;}
.x4d_c00346{left:219.672735px;}
.x7a_c00346{left:220.761735px;}
.x44_c00346{left:229.988535px;}
.x75_c00346{left:231.107235px;}
.xc_c00346{left:239.794485px;}
.x24_c00346{left:241.418085px;}
.x7b_c00346{left:243.492135px;}
.x76_c00346{left:251.600235px;}
.x58_c00346{left:252.847635px;}
.x6_c00346{left:257.861985px;}
.x4e_c00346{left:262.292235px;}
.x59_c00346{left:263.386185px;}
.x45_c00346{left:273.662385px;}
.x79_c00346{left:278.057985px;}
.x77_c00346{left:285.433485px;}
.x25_c00346{left:286.690785px;}
.x80_c00346{left:288.037185px;}
.x1a_c00346{left:295.031535px;}
.x2d_c00346{left:296.140335px;}
.x61_c00346{left:298.065885px;}
.x39_c00346{left:308.010435px;}
.xd_c00346{left:317.534235px;}
.x3a_c00346{left:318.761835px;}
.x81_c00346{left:319.855785px;}
.x54_c00346{left:328.914285px;}
.x2e_c00346{left:330.419085px;}
.x62_c00346{left:331.513035px;}
.xe_c00346{left:340.868535px;}
.x6f_c00346{left:342.645585px;}
.x26_c00346{left:350.679435px;}
.x1b_c00346{left:351.916935px;}
.x3b_c00346{left:352.981185px;}
.x7d_c00346{left:356.956035px;}
.xf_c00346{left:362.405985px;}
.x1c_c00346{left:363.633585px;}
.x55_c00346{left:374.360235px;}
.x7c_c00346{left:375.434385px;}
.x3c_c00346{left:385.567035px;}
.x64_c00346{left:387.309435px;}
.x5d_c00346{left:391.967385px;}
.x46_c00346{left:396.610485px;}
.x27_c00346{left:407.149035px;}
.x66_c00346{left:408.579585px;}
.x2f_c00346{left:414.098835px;}
.x30_c00346{left:416.613435px;}
.x3d_c00346{left:418.504335px;}
.x1d_c00346{left:429.488385px;}
.x28_c00346{left:439.720035px;}
.x10_c00346{left:440.977335px;}
.x31_c00346{left:449.758635px;}
.x5f_c00346{left:451.575285px;}
.x5a_c00346{left:452.713785px;}
.x4f_c00346{left:462.841485px;}
.x70_c00346{left:464.177985px;}
.x11_c00346{left:473.677035px;}
.x82_c00346{left:480.255585px;}
.x3e_c00346{left:483.616635px;}
.x32_c00346{left:485.086785px;}
.x56_c00346{left:486.245085px;}
.x71_c00346{left:487.715235px;}
.x50_c00346{left:496.565835px;}
.x12_c00346{left:506.713335px;}
.x1e_c00346{left:517.657785px;}
.x7e_c00346{left:519.746685px;}
.x5e_c00346{left:526.721235px;}
.x1f_c00346{left:527.810235px;}
.x13_c00346{left:539.739735px;}
.x14_c00346{left:550.684185px;}
.x6a_c00346{left:551.862285px;}
.x33_c00346{left:561.994935px;}
.x72_c00346{left:565.341135px;}
.x15_c00346{left:572.875035px;}
.x67_c00346{left:574.211535px;}
.x3f_c00346{left:583.844235px;}
.x47_c00346{left:584.908485px;}
.x20_c00346{left:594.981735px;}
.x34_c00346{left:604.436235px;}
.x29_c00346{left:605.985585px;}
.x68_c00346{left:607.133985px;}
.x16_c00346{left:609.054585px;}
.x69_c00346{left:616.519185px;}
.x40_c00346{left:618.073485px;}
.x51_c00346{left:627.206235px;}
.x21_c00346{left:628.453635px;}
.x35_c00346{left:639.145635px;}
.x48_c00346{left:640.214835px;}
.x17_c00346{left:650.926635px;}
.x41_c00346{left:661.574085px;}
.x57_c00346{left:662.663085px;}
.x7_c00346{left:672.216585px;}
.x5b_c00346{left:683.680785px;}
.x8_c00346{left:695.224185px;}
.x63_c00346{left:696.808185px;}
.x74_c00346{left:703.307535px;}
.x52_c00346{left:704.545035px;}
.x49_c00346{left:706.133985px;}
.x60_c00346{left:715.593435px;}
.x42_c00346{left:717.583335px;}
.x2a_c00346{left:728.641635px;}
.x36_c00346{left:738.586185px;}
.x6b_c00346{left:750.703785px;}
@media print{
.v1_c00346{vertical-align:-12.684320pt;}
.v0_c00346{vertical-align:0.000000pt;}
.ls7_c00346{letter-spacing:-2.260726pt;}
.lsc_c00346{letter-spacing:-2.241349pt;}
.lsa_c00346{letter-spacing:-1.343517pt;}
.ls3_c00346{letter-spacing:0.000000pt;}
.ls0_c00346{letter-spacing:2.125083pt;}
.ls8_c00346{letter-spacing:2.217609pt;}
.ls1_c00346{letter-spacing:2.293022pt;}
.lse_c00346{letter-spacing:2.296800pt;}
.ls9_c00346{letter-spacing:2.583687pt;}
.lsb_c00346{letter-spacing:3.027209pt;}
.ls6_c00346{letter-spacing:3.229609pt;}
.lsd_c00346{letter-spacing:3.308800pt;}
.ls5_c00346{letter-spacing:3.907209pt;}
.ls2_c00346{letter-spacing:4.083209pt;}
.ls4_c00346{letter-spacing:21.542576pt;}
.ws2_c00346{word-spacing:-18.731731pt;}
.ws6_c00346{word-spacing:-18.441066pt;}
.ws4_c00346{word-spacing:-18.273127pt;}
.ws0_c00346{word-spacing:-16.148044pt;}
.ws5_c00346{word-spacing:-13.906695pt;}
.ws1_c00346{word-spacing:-2.519024pt;}
.ws3_c00346{word-spacing:-1.679680pt;}
.ws7_c00346{word-spacing:0.000000pt;}
._18_c00346{margin-left:-18.215071pt;}
._15_c00346{margin-left:-7.751724pt;}
._1a_c00346{margin-left:-2.648832pt;}
._3_c00346{margin-left:-1.227160pt;}
._12_c00346{width:3.681832pt;}
._e_c00346{width:4.973496pt;}
._5_c00346{width:6.911442pt;}
._b_c00346{width:8.203106pt;}
._a_c00346{width:9.236754pt;}
._9_c00346{width:10.593714pt;}
._2_c00346{width:12.014034pt;}
._8_c00346{width:13.240754pt;}
._17_c00346{width:19.054415pt;}
._13_c00346{width:19.958879pt;}
._14_c00346{width:21.186303pt;}
._1b_c00346{width:23.317839pt;}
._19_c00346{width:24.539538pt;}
._7_c00346{width:27.580828pt;}
._1c_c00346{width:29.260054pt;}
._16_c00346{width:30.552070pt;}
._4_c00346{width:33.739430pt;}
._d_c00346{width:34.686133pt;}
._1d_c00346{width:36.236166pt;}
._f_c00346{width:37.528006pt;}
._1_c00346{width:38.755306pt;}
._c_c00346{width:41.414281pt;}
._6_c00346{width:42.592963pt;}
._11_c00346{width:45.601993pt;}
._10_c00346{width:46.828931pt;}
._0_c00346{width:157.756896pt;}
.fs6_c00346{font-size:19.712000pt;}
.fs1_c00346{font-size:21.542576pt;}
.fsf_c00346{font-size:29.920000pt;}
.fs2_c00346{font-size:34.848000pt;}
.fsd_c00346{font-size:35.200000pt;}
.fs5_c00346{font-size:44.352176pt;}
.fse_c00346{font-size:45.936000pt;}
.fs7_c00346{font-size:50.336000pt;}
.fsc_c00346{font-size:58.960000pt;}
.fs8_c00346{font-size:60.544176pt;}
.fs4_c00346{font-size:64.592176pt;}
.fsa_c00346{font-size:66.176000pt;}
.fsb_c00346{font-size:70.400000pt;}
.fs9_c00346{font-size:71.104176pt;}
.fs3_c00346{font-size:78.144176pt;}
.fs0_c00346{font-size:81.664176pt;}
.y0_c00346{bottom:0.000000pt;}
.y21_c00346{bottom:2.139320pt;}
.y1_c00346{bottom:68.000000pt;}
.y20_c00346{bottom:130.126520pt;}
.y1f_c00346{bottom:143.115320pt;}
.y1e_c00346{bottom:150.080520pt;}
.y1c_c00346{bottom:158.000520pt;}
.y1d_c00346{bottom:158.321720pt;}
.y1b_c00346{bottom:216.612920pt;}
.y1a_c00346{bottom:245.758520pt;}
.y19_c00346{bottom:275.537720pt;}
.y18_c00346{bottom:304.366520pt;}
.y17_c00346{bottom:332.557320pt;}
.y16_c00346{bottom:362.019720pt;}
.y15_c00346{bottom:390.852920pt;}
.y14_c00346{bottom:405.425720pt;}
.y13_c00346{bottom:420.310920pt;}
.y12_c00346{bottom:433.620920pt;}
.y11_c00346{bottom:477.968520pt;}
.y10_c00346{bottom:506.480520pt;}
.yf_c00346{bottom:536.580920pt;}
.ye_c00346{bottom:566.038920pt;}
.yd_c00346{bottom:594.234120pt;}
.yc_c00346{bottom:624.651320pt;}
.yb_c00346{bottom:652.846520pt;}
.ya_c00346{bottom:681.992120pt;}
.y9_c00346{bottom:710.504120pt;}
.y8_c00346{bottom:739.011720pt;}
.y7_c00346{bottom:768.795320pt;}
.y6_c00346{bottom:797.940920pt;}
.y5_c00346{bottom:827.398920pt;}
.y4_c00346{bottom:958.554120pt;}
.y3_c00346{bottom:969.325320pt;}
.y2_c00346{bottom:979.462920pt;}
.h3_c00346{height:14.347356pt;}
.h8_c00346{height:20.559000pt;}
.h11_c00346{height:29.364844pt;}
.h4_c00346{height:34.201406pt;}
.hf_c00346{height:36.712500pt;}
.h7_c00346{height:43.529235pt;}
.h10_c00346{height:45.083672pt;}
.h9_c00346{height:52.498875pt;}
.ha_c00346{height:59.420798pt;}
.he_c00346{height:61.493438pt;}
.h6_c00346{height:63.393688pt;}
.hc_c00346{height:64.948125pt;}
.hb_c00346{height:69.784860pt;}
.hd_c00346{height:73.287500pt;}
.h5_c00346{height:76.694235pt;}
.h2_c00346{height:80.148923pt;}
.h1_c00346{height:986.666667pt;}
.h0_c00346{height:1122.666667pt;}
.w1_c00346{width:689.333333pt;}
.w0_c00346{width:793.333333pt;}
.x2_c00346{left:-1.837747pt;}
.x0_c00346{left:0.000000pt;}
.x3_c00346{left:29.868653pt;}
.x1_c00346{left:52.000000pt;}
.x18_c00346{left:87.244653pt;}
.x9_c00346{left:88.494253pt;}
.x78_c00346{left:89.449053pt;}
.x6c_c00346{left:109.042253pt;}
.x22_c00346{left:116.786253pt;}
.x4_c00346{left:120.125853pt;}
.x4a_c00346{left:125.084653pt;}
.x23_c00346{left:126.409053pt;}
.x19_c00346{left:127.416653pt;}
.x5_c00346{left:130.509853pt;}
.x65_c00346{left:134.843853pt;}
.x43_c00346{left:135.992253pt;}
.x53_c00346{left:144.726253pt;}
.x2b_c00346{left:145.852653pt;}
.x4b_c00346{left:155.079453pt;}
.x6d_c00346{left:156.289453pt;}
.x4c_c00346{left:158.718253pt;}
.x73_c00346{left:164.086253pt;}
.x37_c00346{left:165.511853pt;}
.x6e_c00346{left:169.775453pt;}
.xa_c00346{left:174.703453pt;}
.x2c_c00346{left:175.614253pt;}
.x5c_c00346{left:180.401453pt;}
.xb_c00346{left:183.727853pt;}
.x38_c00346{left:185.135853pt;}
.x7f_c00346{left:186.284253pt;}
.x4d_c00346{left:195.264653pt;}
.x7a_c00346{left:196.232653pt;}
.x44_c00346{left:204.434253pt;}
.x75_c00346{left:205.428653pt;}
.xc_c00346{left:213.150653pt;}
.x24_c00346{left:214.593853pt;}
.x7b_c00346{left:216.437453pt;}
.x76_c00346{left:223.644653pt;}
.x58_c00346{left:224.753453pt;}
.x6_c00346{left:229.210653pt;}
.x4e_c00346{left:233.148653pt;}
.x59_c00346{left:234.121053pt;}
.x45_c00346{left:243.255453pt;}
.x79_c00346{left:247.162653pt;}
.x77_c00346{left:253.718653pt;}
.x25_c00346{left:254.836253pt;}
.x80_c00346{left:256.033053pt;}
.x1a_c00346{left:262.250253pt;}
.x2d_c00346{left:263.235853pt;}
.x61_c00346{left:264.947453pt;}
.x39_c00346{left:273.787053pt;}
.xd_c00346{left:282.252653pt;}
.x3a_c00346{left:283.343853pt;}
.x81_c00346{left:284.316253pt;}
.x54_c00346{left:292.368253pt;}
.x2e_c00346{left:293.705853pt;}
.x62_c00346{left:294.678253pt;}
.xe_c00346{left:302.994253pt;}
.x6f_c00346{left:304.573853pt;}
.x26_c00346{left:311.715053pt;}
.x1b_c00346{left:312.815053pt;}
.x3b_c00346{left:313.761053pt;}
.x7d_c00346{left:317.294253pt;}
.xf_c00346{left:322.138653pt;}
.x1c_c00346{left:323.229853pt;}
.x55_c00346{left:332.764653pt;}
.x7c_c00346{left:333.719453pt;}
.x3c_c00346{left:342.726253pt;}
.x64_c00346{left:344.275053pt;}
.x5d_c00346{left:348.415453pt;}
.x46_c00346{left:352.542653pt;}
.x27_c00346{left:361.910253pt;}
.x66_c00346{left:363.181853pt;}
.x2f_c00346{left:368.087853pt;}
.x30_c00346{left:370.323053pt;}
.x3d_c00346{left:372.003853pt;}
.x1d_c00346{left:381.767453pt;}
.x28_c00346{left:390.862253pt;}
.x10_c00346{left:391.979853pt;}
.x31_c00346{left:399.785453pt;}
.x5f_c00346{left:401.400253pt;}
.x5a_c00346{left:402.412253pt;}
.x4f_c00346{left:411.414653pt;}
.x70_c00346{left:412.602653pt;}
.x11_c00346{left:421.046253pt;}
.x82_c00346{left:426.893853pt;}
.x3e_c00346{left:429.881453pt;}
.x32_c00346{left:431.188253pt;}
.x56_c00346{left:432.217853pt;}
.x71_c00346{left:433.524653pt;}
.x50_c00346{left:441.391853pt;}
.x12_c00346{left:450.411853pt;}
.x1e_c00346{left:460.140253pt;}
.x7e_c00346{left:461.997053pt;}
.x5e_c00346{left:468.196653pt;}
.x1f_c00346{left:469.164653pt;}
.x13_c00346{left:479.768653pt;}
.x14_c00346{left:489.497053pt;}
.x6a_c00346{left:490.544253pt;}
.x33_c00346{left:499.551053pt;}
.x72_c00346{left:502.525453pt;}
.x15_c00346{left:509.222253pt;}
.x67_c00346{left:510.410253pt;}
.x3f_c00346{left:518.972653pt;}
.x47_c00346{left:519.918653pt;}
.x20_c00346{left:528.872653pt;}
.x34_c00346{left:537.276653pt;}
.x29_c00346{left:538.653853pt;}
.x68_c00346{left:539.674653pt;}
.x16_c00346{left:541.381853pt;}
.x69_c00346{left:548.017053pt;}
.x40_c00346{left:549.398653pt;}
.x51_c00346{left:557.516653pt;}
.x21_c00346{left:558.625453pt;}
.x35_c00346{left:568.129453pt;}
.x48_c00346{left:569.079853pt;}
.x17_c00346{left:578.601453pt;}
.x41_c00346{left:588.065853pt;}
.x57_c00346{left:589.033853pt;}
.x7_c00346{left:597.525853pt;}
.x5b_c00346{left:607.716253pt;}
.x8_c00346{left:617.977053pt;}
.x63_c00346{left:619.385053pt;}
.x74_c00346{left:625.162253pt;}
.x52_c00346{left:626.262253pt;}
.x49_c00346{left:627.674653pt;}
.x60_c00346{left:636.083053pt;}
.x42_c00346{left:637.851853pt;}
.x2a_c00346{left:647.681453pt;}
.x36_c00346{left:656.521053pt;}
.x6b_c00346{left:667.292253pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ba523eabf514676cee90e90e.woff2')format("woff");}.ff1_c00347{font-family:ff1_c00347;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00347;src:url('chunks/assets/font_7f9889b0b2f9626e0b67a3d3.woff2')format("woff");}.ff2_c00347{font-family:ff2_c00347;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00347;src:url('chunks/assets/font_94c0e27ae96a9aaac93fe314.woff2')format("woff");}.ff3_c00347{font-family:ff3_c00347;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00347;src:url('chunks/assets/font_57291b3be93af532414d979d.woff2')format("woff");}.ff4_c00347{font-family:ff4_c00347;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00347;src:url('chunks/assets/font_ee92d0a09a1ec39f4f1166ff.woff2')format("woff");}.ff5_c00347{font-family:ff5_c00347;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m78_c00347{transform:matrix(0.034189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.034189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.034189,0.000000,0.000000,0.250000,0,0);}
.m7b_c00347{transform:matrix(0.064103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064103,0.000000,0.000000,0.250000,0,0);}
.m2f_c00347{transform:matrix(0.080071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080071,0.000000,0.000000,0.250000,0,0);}
.mb4_c00347{transform:matrix(0.091825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091825,0.000000,0.000000,0.250000,0,0);}
.m3d_c00347{transform:matrix(0.114579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114579,0.000000,0.000000,0.250000,0,0);}
.m3b_c00347{transform:matrix(0.115763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115763,0.000000,0.000000,0.250000,0,0);}
.m77_c00347{transform:matrix(0.120193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120193,0.000000,0.000000,0.250000,0,0);}
.md0_c00347{transform:matrix(0.123932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123932,0.000000,0.000000,0.250000,0,0);}
.m3c_c00347{transform:matrix(0.136062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136062,0.000000,0.000000,0.250000,0,0);}
.m99_c00347{transform:matrix(0.137137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137137,0.000000,0.000000,0.250000,0,0);}
.m40_c00347{transform:matrix(0.140178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140178,0.000000,0.000000,0.250000,0,0);}
.m76_c00347{transform:matrix(0.141025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141025,0.000000,0.000000,0.250000,0,0);}
.m73_c00347{transform:matrix(0.147436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147436,0.000000,0.000000,0.250000,0,0);}
.m7a_c00347{transform:matrix(0.160256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160256,0.000000,0.000000,0.250000,0,0);}
.me7_c00347{transform:matrix(0.161764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161764,0.000000,0.000000,0.250000,0,0);}
.md1_c00347{transform:matrix(0.163462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163462,0.000000,0.000000,0.250000,0,0);}
.me6_c00347{transform:matrix(0.169118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169118,0.000000,0.000000,0.250000,0,0);}
.m4a_c00347{transform:matrix(0.171833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171833,0.000000,0.000000,0.250000,0,0);}
.m34_c00347{transform:matrix(0.173947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173947,0.000000,0.000000,0.250000,0,0);}
.m75_c00347{transform:matrix(0.179487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179487,0.000000,0.000000,0.250000,0,0);}
.mcf_c00347{transform:matrix(0.182693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182693,0.000000,0.000000,0.250000,0,0);}
.mb9_c00347{transform:matrix(0.182727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182727,0.000000,0.000000,0.250000,0,0);}
.m79_c00347{transform:matrix(0.185898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185898,0.000000,0.000000,0.250000,0,0);}
.mb_c00347{transform:matrix(0.186478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186478,0.000000,0.000000,0.250000,0,0);}
.me5_c00347{transform:matrix(0.191177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191177,0.000000,0.000000,0.250000,0,0);}
.m74_c00347{transform:matrix(0.198718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198718,0.000000,0.000000,0.250000,0,0);}
.m81_c00347{transform:matrix(0.203440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203440,0.000000,0.000000,0.250000,0,0);}
.m41_c00347{transform:matrix(0.204906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204906,0.000000,0.000000,0.250000,0,0);}
.m52_c00347{transform:matrix(0.214754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214754,0.000000,0.000000,0.250000,0,0);}
.md8_c00347{transform:matrix(0.214964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214964,0.000000,0.000000,0.250000,0,0);}
.md6_c00347{transform:matrix(0.218089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218089,0.000000,0.000000,0.250000,0,0);}
.mbf_c00347{transform:matrix(0.227686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227686,0.000000,0.000000,0.250000,0,0);}
.m1d_c00347{transform:matrix(0.232111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232111,0.000000,0.000000,0.250000,0,0);}
.me1_c00347{transform:matrix(0.232714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232714,0.000000,0.000000,0.250000,0,0);}
.m14_c00347{transform:matrix(0.239556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239556,0.000000,0.000000,0.250000,0,0);}
.m92_c00347{transform:matrix(0.242379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242379,0.000000,0.000000,0.250000,0,0);}
.m7e_c00347{transform:matrix(0.243838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243838,0.000000,0.000000,0.250000,0,0);}
.m93_c00347{transform:matrix(0.246907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246907,0.000000,0.000000,0.250000,0,0);}
.m66_c00347{transform:matrix(0.249464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249464,0.000000,0.000000,0.250000,0,0);}
.m1_c00347{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m49_c00347{transform:matrix(0.250137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250137,0.000000,0.000000,0.250000,0,0);}
.mb3_c00347{transform:matrix(0.251173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251173,0.000000,0.000000,0.250000,0,0);}
.m16_c00347{transform:matrix(0.251506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251506,0.000000,0.000000,0.250000,0,0);}
.m6_c00347{transform:matrix(0.253653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253653,0.000000,0.000000,0.250000,0,0);}
.m6d_c00347{transform:matrix(0.254604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254604,0.000000,0.000000,0.250000,0,0);}
.m54_c00347{transform:matrix(0.254683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254683,0.000000,0.000000,0.250000,0,0);}
.m60_c00347{transform:matrix(0.254753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254753,0.000000,0.000000,0.250000,0,0);}
.me9_c00347{transform:matrix(0.254833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254833,0.000000,0.000000,0.250000,0,0);}
.m48_c00347{transform:matrix(0.256293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256293,0.000000,0.000000,0.250000,0,0);}
.m3e_c00347{transform:matrix(0.256961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256961,0.000000,0.000000,0.250000,0,0);}
.m96_c00347{transform:matrix(0.258596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258596,0.000000,0.000000,0.250000,0,0);}
.m1a_c00347{transform:matrix(0.258599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258599,0.000000,0.000000,0.250000,0,0);}
.md7_c00347{transform:matrix(0.259135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259135,0.000000,0.000000,0.250000,0,0);}
.mea_c00347{transform:matrix(0.259374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259374,0.000000,0.000000,0.250000,0,0);}
.m69_c00347{transform:matrix(0.259408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259408,0.000000,0.000000,0.250000,0,0);}
.m32_c00347{transform:matrix(0.259518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259518,0.000000,0.000000,0.250000,0,0);}
.m22_c00347{transform:matrix(0.260489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260489,0.000000,0.000000,0.250000,0,0);}
.m4d_c00347{transform:matrix(0.261871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261871,0.000000,0.000000,0.250000,0,0);}
.mcb_c00347{transform:matrix(0.262094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262094,0.000000,0.000000,0.250000,0,0);}
.mc2_c00347{transform:matrix(0.262823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262823,0.000000,0.000000,0.250000,0,0);}
.m11_c00347{transform:matrix(0.263373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263373,0.000000,0.000000,0.250000,0,0);}
.mb7_c00347{transform:matrix(0.264981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264981,0.000000,0.000000,0.250000,0,0);}
.mb5_c00347{transform:matrix(0.265753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265753,0.000000,0.000000,0.250000,0,0);}
.m5e_c00347{transform:matrix(0.266075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266075,0.000000,0.000000,0.250000,0,0);}
.m30_c00347{transform:matrix(0.266180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266180,0.000000,0.000000,0.250000,0,0);}
.mdb_c00347{transform:matrix(0.266459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266459,0.000000,0.000000,0.250000,0,0);}
.mdf_c00347{transform:matrix(0.266648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266648,0.000000,0.000000,0.250000,0,0);}
.mb0_c00347{transform:matrix(0.266863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266863,0.000000,0.000000,0.250000,0,0);}
.m7d_c00347{transform:matrix(0.267144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267144,0.000000,0.000000,0.250000,0,0);}
.m8_c00347{transform:matrix(0.267386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267386,0.000000,0.000000,0.250000,0,0);}
.m37_c00347{transform:matrix(0.267929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267929,0.000000,0.000000,0.250000,0,0);}
.mc_c00347{transform:matrix(0.268132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268132,0.000000,0.000000,0.250000,0,0);}
.m31_c00347{transform:matrix(0.268354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268354,0.000000,0.000000,0.250000,0,0);}
.m89_c00347{transform:matrix(0.268416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268416,0.000000,0.000000,0.250000,0,0);}
.m29_c00347{transform:matrix(0.269016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269016,0.000000,0.000000,0.250000,0,0);}
.mf_c00347{transform:matrix(0.269099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269099,0.000000,0.000000,0.250000,0,0);}
.m17_c00347{transform:matrix(0.269387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269387,0.000000,0.000000,0.250000,0,0);}
.m26_c00347{transform:matrix(0.269733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269733,0.000000,0.000000,0.250000,0,0);}
.m9d_c00347{transform:matrix(0.270214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270214,0.000000,0.000000,0.250000,0,0);}
.m56_c00347{transform:matrix(0.270532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270532,0.000000,0.000000,0.250000,0,0);}
.m6a_c00347{transform:matrix(0.270827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270827,0.000000,0.000000,0.250000,0,0);}
.m6c_c00347{transform:matrix(0.271467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271467,0.000000,0.000000,0.250000,0,0);}
.m84_c00347{transform:matrix(0.271497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271497,0.000000,0.000000,0.250000,0,0);}
.md5_c00347{transform:matrix(0.271769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271769,0.000000,0.000000,0.250000,0,0);}
.m80_c00347{transform:matrix(0.273819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273819,0.000000,0.000000,0.250000,0,0);}
.mbe_c00347{transform:matrix(0.274485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274485,0.000000,0.000000,0.250000,0,0);}
.m4b_c00347{transform:matrix(0.275579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275579,0.000000,0.000000,0.250000,0,0);}
.maa_c00347{transform:matrix(0.275588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275588,0.000000,0.000000,0.250000,0,0);}
.ma5_c00347{transform:matrix(0.275747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275747,0.000000,0.000000,0.250000,0,0);}
.m9_c00347{transform:matrix(0.275769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275769,0.000000,0.000000,0.250000,0,0);}
.mab_c00347{transform:matrix(0.276053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276053,0.000000,0.000000,0.250000,0,0);}
.mcc_c00347{transform:matrix(0.276294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276294,0.000000,0.000000,0.250000,0,0);}
.m61_c00347{transform:matrix(0.278623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278623,0.000000,0.000000,0.250000,0,0);}
.m8a_c00347{transform:matrix(0.278719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278719,0.000000,0.000000,0.250000,0,0);}
.mc0_c00347{transform:matrix(0.279145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279145,0.000000,0.000000,0.250000,0,0);}
.m87_c00347{transform:matrix(0.279425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279425,0.000000,0.000000,0.250000,0,0);}
.m3f_c00347{transform:matrix(0.279430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279430,0.000000,0.000000,0.250000,0,0);}
.mde_c00347{transform:matrix(0.280023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280023,0.000000,0.000000,0.250000,0,0);}
.m65_c00347{transform:matrix(0.280330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280330,0.000000,0.000000,0.250000,0,0);}
.m42_c00347{transform:matrix(0.280600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280600,0.000000,0.000000,0.250000,0,0);}
.m45_c00347{transform:matrix(0.280680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280680,0.000000,0.000000,0.250000,0,0);}
.md4_c00347{transform:matrix(0.281862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281862,0.000000,0.000000,0.250000,0,0);}
.m2e_c00347{transform:matrix(0.281958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281958,0.000000,0.000000,0.250000,0,0);}
.m2d_c00347{transform:matrix(0.281964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281964,0.000000,0.000000,0.250000,0,0);}
.mae_c00347{transform:matrix(0.282153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282153,0.000000,0.000000,0.250000,0,0);}
.mb6_c00347{transform:matrix(0.283440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283440,0.000000,0.000000,0.250000,0,0);}
.m10_c00347{transform:matrix(0.283444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283444,0.000000,0.000000,0.250000,0,0);}
.m4c_c00347{transform:matrix(0.284510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284510,0.000000,0.000000,0.250000,0,0);}
.m9e_c00347{transform:matrix(0.285082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285082,0.000000,0.000000,0.250000,0,0);}
.m1c_c00347{transform:matrix(0.285285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285285,0.000000,0.000000,0.250000,0,0);}
.m23_c00347{transform:matrix(0.285678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285678,0.000000,0.000000,0.250000,0,0);}
.m44_c00347{transform:matrix(0.286018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286018,0.000000,0.000000,0.250000,0,0);}
.m0_c00347{transform:matrix(0.286185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286185,0.000000,0.000000,0.250000,0,0);}
.me8_c00347{transform:matrix(0.286333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286333,0.000000,0.000000,0.250000,0,0);}
.m4_c00347{transform:matrix(0.286532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286532,0.000000,0.000000,0.250000,0,0);}
.m86_c00347{transform:matrix(0.287171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287171,0.000000,0.000000,0.250000,0,0);}
.m58_c00347{transform:matrix(0.287379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287379,0.000000,0.000000,0.250000,0,0);}
.m85_c00347{transform:matrix(0.287860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287860,0.000000,0.000000,0.250000,0,0);}
.mad_c00347{transform:matrix(0.288090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288090,0.000000,0.000000,0.250000,0,0);}
.m25_c00347{transform:matrix(0.289591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289591,0.000000,0.000000,0.250000,0,0);}
.mc3_c00347{transform:matrix(0.289834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289834,0.000000,0.000000,0.250000,0,0);}
.m72_c00347{transform:matrix(0.289878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289878,0.000000,0.000000,0.250000,0,0);}
.m2_c00347{transform:matrix(0.290312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290312,0.000000,0.000000,0.250000,0,0);}
.m55_c00347{transform:matrix(0.291649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291649,0.000000,0.000000,0.250000,0,0);}
.m15_c00347{transform:matrix(0.292336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292336,0.000000,0.000000,0.250000,0,0);}
.mcd_c00347{transform:matrix(0.292725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292725,0.000000,0.000000,0.250000,0,0);}
.m4e_c00347{transform:matrix(0.293856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293856,0.000000,0.000000,0.250000,0,0);}
.me3_c00347{transform:matrix(0.294438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294438,0.000000,0.000000,0.250000,0,0);}
.mc6_c00347{transform:matrix(0.294599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294599,0.000000,0.000000,0.250000,0,0);}
.m71_c00347{transform:matrix(0.294623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294623,0.000000,0.000000,0.250000,0,0);}
.m18_c00347{transform:matrix(0.294889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294889,0.000000,0.000000,0.250000,0,0);}
.m8f_c00347{transform:matrix(0.294918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294918,0.000000,0.000000,0.250000,0,0);}
.m21_c00347{transform:matrix(0.295653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295653,0.000000,0.000000,0.250000,0,0);}
.mba_c00347{transform:matrix(0.296336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296336,0.000000,0.000000,0.250000,0,0);}
.m7f_c00347{transform:matrix(0.296576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296576,0.000000,0.000000,0.250000,0,0);}
.m3_c00347{transform:matrix(0.296869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296869,0.000000,0.000000,0.250000,0,0);}
.mdc_c00347{transform:matrix(0.296919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296919,0.000000,0.000000,0.250000,0,0);}
.mac_c00347{transform:matrix(0.297264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297264,0.000000,0.000000,0.250000,0,0);}
.mb8_c00347{transform:matrix(0.297552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297552,0.000000,0.000000,0.250000,0,0);}
.md3_c00347{transform:matrix(0.298179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298179,0.000000,0.000000,0.250000,0,0);}
.mc9_c00347{transform:matrix(0.298275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298275,0.000000,0.000000,0.250000,0,0);}
.mc8_c00347{transform:matrix(0.298749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298749,0.000000,0.000000,0.250000,0,0);}
.m1f_c00347{transform:matrix(0.299681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299681,0.000000,0.000000,0.250000,0,0);}
.m2a_c00347{transform:matrix(0.299827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299827,0.000000,0.000000,0.250000,0,0);}
.ma4_c00347{transform:matrix(0.300138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300138,0.000000,0.000000,0.250000,0,0);}
.m5c_c00347{transform:matrix(0.301168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301168,0.000000,0.000000,0.250000,0,0);}
.m68_c00347{transform:matrix(0.301908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301908,0.000000,0.000000,0.250000,0,0);}
.m27_c00347{transform:matrix(0.302058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302058,0.000000,0.000000,0.250000,0,0);}
.m43_c00347{transform:matrix(0.302618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302618,0.000000,0.000000,0.250000,0,0);}
.m8c_c00347{transform:matrix(0.303768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303768,0.000000,0.000000,0.250000,0,0);}
.mca_c00347{transform:matrix(0.304527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304527,0.000000,0.000000,0.250000,0,0);}
.m1e_c00347{transform:matrix(0.305595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305595,0.000000,0.000000,0.250000,0,0);}
.mc4_c00347{transform:matrix(0.305722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305722,0.000000,0.000000,0.250000,0,0);}
.ma8_c00347{transform:matrix(0.307812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307812,0.000000,0.000000,0.250000,0,0);}
.m39_c00347{transform:matrix(0.308894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308894,0.000000,0.000000,0.250000,0,0);}
.m7_c00347{transform:matrix(0.308942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308942,0.000000,0.000000,0.250000,0,0);}
.m97_c00347{transform:matrix(0.309470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309470,0.000000,0.000000,0.250000,0,0);}
.m9f_c00347{transform:matrix(0.309818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309818,0.000000,0.000000,0.250000,0,0);}
.m9c_c00347{transform:matrix(0.310255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310255,0.000000,0.000000,0.250000,0,0);}
.mdd_c00347{transform:matrix(0.310287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310287,0.000000,0.000000,0.250000,0,0);}
.m88_c00347{transform:matrix(0.310289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310289,0.000000,0.000000,0.250000,0,0);}
.me4_c00347{transform:matrix(0.311016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311016,0.000000,0.000000,0.250000,0,0);}
.mc5_c00347{transform:matrix(0.314069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314069,0.000000,0.000000,0.250000,0,0);}
.m5a_c00347{transform:matrix(0.315613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315613,0.000000,0.000000,0.250000,0,0);}
.me2_c00347{transform:matrix(0.315830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315830,0.000000,0.000000,0.250000,0,0);}
.m62_c00347{transform:matrix(0.316351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316351,0.000000,0.000000,0.250000,0,0);}
.m6e_c00347{transform:matrix(0.316775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316775,0.000000,0.000000,0.250000,0,0);}
.m6f_c00347{transform:matrix(0.316818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316818,0.000000,0.000000,0.250000,0,0);}
.ma0_c00347{transform:matrix(0.317088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317088,0.000000,0.000000,0.250000,0,0);}
.m53_c00347{transform:matrix(0.317284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317284,0.000000,0.000000,0.250000,0,0);}
.m20_c00347{transform:matrix(0.317290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317290,0.000000,0.000000,0.250000,0,0);}
.m13_c00347{transform:matrix(0.317490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317490,0.000000,0.000000,0.250000,0,0);}
.md_c00347{transform:matrix(0.317818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317818,0.000000,0.000000,0.250000,0,0);}
.m51_c00347{transform:matrix(0.317856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317856,0.000000,0.000000,0.250000,0,0);}
.ma7_c00347{transform:matrix(0.318136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318136,0.000000,0.000000,0.250000,0,0);}
.m57_c00347{transform:matrix(0.318157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318157,0.000000,0.000000,0.250000,0,0);}
.m9b_c00347{transform:matrix(0.318938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318938,0.000000,0.000000,0.250000,0,0);}
.m95_c00347{transform:matrix(0.318956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318956,0.000000,0.000000,0.250000,0,0);}
.m5b_c00347{transform:matrix(0.319782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319782,0.000000,0.000000,0.250000,0,0);}
.m50_c00347{transform:matrix(0.319888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319888,0.000000,0.000000,0.250000,0,0);}
.mc7_c00347{transform:matrix(0.320007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320007,0.000000,0.000000,0.250000,0,0);}
.ma3_c00347{transform:matrix(0.321469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321469,0.000000,0.000000,0.250000,0,0);}
.mbc_c00347{transform:matrix(0.321699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321699,0.000000,0.000000,0.250000,0,0);}
.m98_c00347{transform:matrix(0.324362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324362,0.000000,0.000000,0.250000,0,0);}
.m35_c00347{transform:matrix(0.325095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325095,0.000000,0.000000,0.250000,0,0);}
.m2b_c00347{transform:matrix(0.326536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326536,0.000000,0.000000,0.250000,0,0);}
.m12_c00347{transform:matrix(0.327562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327562,0.000000,0.000000,0.250000,0,0);}
.m8b_c00347{transform:matrix(0.327964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327964,0.000000,0.000000,0.250000,0,0);}
.m94_c00347{transform:matrix(0.328003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328003,0.000000,0.000000,0.250000,0,0);}
.m70_c00347{transform:matrix(0.329501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329501,0.000000,0.000000,0.250000,0,0);}
.m64_c00347{transform:matrix(0.330091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330091,0.000000,0.000000,0.250000,0,0);}
.m38_c00347{transform:matrix(0.331551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331551,0.000000,0.000000,0.250000,0,0);}
.m59_c00347{transform:matrix(0.331812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331812,0.000000,0.000000,0.250000,0,0);}
.m82_c00347{transform:matrix(0.332379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332379,0.000000,0.000000,0.250000,0,0);}
.maf_c00347{transform:matrix(0.332745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332745,0.000000,0.000000,0.250000,0,0);}
.m2c_c00347{transform:matrix(0.334054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334054,0.000000,0.000000,0.250000,0,0);}
.m9a_c00347{transform:matrix(0.334905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334905,0.000000,0.000000,0.250000,0,0);}
.mc1_c00347{transform:matrix(0.336244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336244,0.000000,0.000000,0.250000,0,0);}
.m6b_c00347{transform:matrix(0.336513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336513,0.000000,0.000000,0.250000,0,0);}
.m8e_c00347{transform:matrix(0.337166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337166,0.000000,0.000000,0.250000,0,0);}
.ma2_c00347{transform:matrix(0.338103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338103,0.000000,0.000000,0.250000,0,0);}
.m63_c00347{transform:matrix(0.339786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339786,0.000000,0.000000,0.250000,0,0);}
.ma_c00347{transform:matrix(0.340192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340192,0.000000,0.000000,0.250000,0,0);}
.m83_c00347{transform:matrix(0.340913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340913,0.000000,0.000000,0.250000,0,0);}
.m19_c00347{transform:matrix(0.341910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341910,0.000000,0.000000,0.250000,0,0);}
.m4f_c00347{transform:matrix(0.342744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342744,0.000000,0.000000,0.250000,0,0);}
.mce_c00347{transform:matrix(0.344037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344037,0.000000,0.000000,0.250000,0,0);}
.m3a_c00347{transform:matrix(0.345958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345958,0.000000,0.000000,0.250000,0,0);}
.mbd_c00347{transform:matrix(0.346692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346692,0.000000,0.000000,0.250000,0,0);}
.m33_c00347{transform:matrix(0.346894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346894,0.000000,0.000000,0.250000,0,0);}
.mb2_c00347{transform:matrix(0.346905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346905,0.000000,0.000000,0.250000,0,0);}
.md2_c00347{transform:matrix(0.349132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349132,0.000000,0.000000,0.250000,0,0);}
.m7c_c00347{transform:matrix(0.351514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351514,0.000000,0.000000,0.250000,0,0);}
.md9_c00347{transform:matrix(0.351723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351723,0.000000,0.000000,0.250000,0,0);}
.m24_c00347{transform:matrix(0.353245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353245,0.000000,0.000000,0.250000,0,0);}
.ma6_c00347{transform:matrix(0.353637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353637,0.000000,0.000000,0.250000,0,0);}
.ma1_c00347{transform:matrix(0.359282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359282,0.000000,0.000000,0.250000,0,0);}
.m8d_c00347{transform:matrix(0.360458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360458,0.000000,0.000000,0.250000,0,0);}
.ma9_c00347{transform:matrix(0.360985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360985,0.000000,0.000000,0.250000,0,0);}
.m67_c00347{transform:matrix(0.363764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363764,0.000000,0.000000,0.250000,0,0);}
.m5d_c00347{transform:matrix(0.364566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364566,0.000000,0.000000,0.250000,0,0);}
.mbb_c00347{transform:matrix(0.369834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369834,0.000000,0.000000,0.250000,0,0);}
.mda_c00347{transform:matrix(0.371671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371671,0.000000,0.000000,0.250000,0,0);}
.m1b_c00347{transform:matrix(0.371692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371692,0.000000,0.000000,0.250000,0,0);}
.me_c00347{transform:matrix(0.375582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375582,0.000000,0.000000,0.250000,0,0);}
.m36_c00347{transform:matrix(0.378888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378888,0.000000,0.000000,0.250000,0,0);}
.m28_c00347{transform:matrix(0.381516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381516,0.000000,0.000000,0.250000,0,0);}
.m47_c00347{transform:matrix(0.385420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385420,0.000000,0.000000,0.250000,0,0);}
.m91_c00347{transform:matrix(0.389789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389789,0.000000,0.000000,0.250000,0,0);}
.m90_c00347{transform:matrix(0.391405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391405,0.000000,0.000000,0.250000,0,0);}
.m46_c00347{transform:matrix(0.427395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427395,0.000000,0.000000,0.250000,0,0);}
.m5_c00347{transform:matrix(0.429281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429281,0.000000,0.000000,0.250000,0,0);}
.mb1_c00347{transform:matrix(0.429477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429477,0.000000,0.000000,0.250000,0,0);}
.me0_c00347{transform:matrix(0.450708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450708,0.000000,0.000000,0.250000,0,0);}
.m5f_c00347{transform:matrix(0.452642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452642,0.000000,0.000000,0.250000,0,0);}
.v0_c00347{vertical-align:0.000000px;}
.ls7_c00347{letter-spacing:-2.772000px;}
.ls10_c00347{letter-spacing:-2.709630px;}
.ls4_c00347{letter-spacing:-2.668050px;}
.ls8_c00347{letter-spacing:-2.189880px;}
.lsb_c00347{letter-spacing:-2.106720px;}
.lsc_c00347{letter-spacing:-1.649340px;}
.ls19_c00347{letter-spacing:-1.555092px;}
.ls15_c00347{letter-spacing:-1.250172px;}
.lsf_c00347{letter-spacing:-1.122667px;}
.ls5_c00347{letter-spacing:-0.853776px;}
.ls1a_c00347{letter-spacing:-0.525987px;}
.ls17_c00347{letter-spacing:-0.129591px;}
.ls2_c00347{letter-spacing:0.000000px;}
.ls18_c00347{letter-spacing:0.106722px;}
.ls0_c00347{letter-spacing:0.426888px;}
.ls16_c00347{letter-spacing:1.069200px;}
.ls13_c00347{letter-spacing:1.151073px;}
.ls9_c00347{letter-spacing:1.405800px;}
.ls1c_c00347{letter-spacing:2.024986px;}
.ls12_c00347{letter-spacing:2.347884px;}
.ls1b_c00347{letter-spacing:2.494810px;}
.lsa_c00347{letter-spacing:3.009600px;}
.ls14_c00347{letter-spacing:3.544200px;}
.ls6_c00347{letter-spacing:3.663000px;}
.ls1d_c00347{letter-spacing:3.722400px;}
.ls11_c00347{letter-spacing:3.801610px;}
.ls3_c00347{letter-spacing:3.811500px;}
.lsd_c00347{letter-spacing:4.059000px;}
.ls1_c00347{letter-spacing:4.276810px;}
.ls1e_c00347{letter-spacing:48.470598px;}
.lse_c00347{letter-spacing:55.598598px;}
.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;}
}
.ws8_c00347{word-spacing:-21.405384px;}
.ws9_c00347{word-spacing:-19.484388px;}
.ws4_c00347{word-spacing:-19.057500px;}
.ws3_c00347{word-spacing:-18.219564px;}
.ws2_c00347{word-spacing:-18.203724px;}
.ws5_c00347{word-spacing:-15.642000px;}
.ws7_c00347{word-spacing:-2.744280px;}
.ws1_c00347{word-spacing:-0.838530px;}
.wsc_c00347{word-spacing:0.000000px;}
.wsa_c00347{word-spacing:0.228690px;}
.ws0_c00347{word-spacing:1.219680px;}
.wsb_c00347{word-spacing:6.632010px;}
.ws6_c00347{word-spacing:10.443510px;}
._25_c00347{margin-left:-26.316576px;}
._b_c00347{margin-left:-14.971572px;}
._1d_c00347{margin-left:-11.520630px;}
._23_c00347{margin-left:-10.062360px;}
._d_c00347{margin-left:-8.706060px;}
._9_c00347{margin-left:-7.165620px;}
._1a_c00347{margin-left:-4.268880px;}
._17_c00347{margin-left:-2.744280px;}
._10_c00347{margin-left:-1.143450px;}
._11_c00347{width:1.143450px;}
._1c_c00347{width:2.317392px;}
._0_c00347{width:3.421341px;}
._4_c00347{width:5.259870px;}
._24_c00347{width:6.359067px;}
._2_c00347{width:7.470540px;}
._5_c00347{width:8.690220px;}
._7_c00347{width:10.519740px;}
._19_c00347{width:11.968110px;}
._e_c00347{width:13.436280px;}
._1f_c00347{width:16.533198px;}
._1b_c00347{width:17.686350px;}
._a_c00347{width:20.582100px;}
._1_c00347{width:22.182930px;}
._6_c00347{width:24.173919px;}
._8_c00347{width:25.384590px;}
._22_c00347{width:26.954928px;}
._14_c00347{width:30.457152px;}
._3_c00347{width:32.550210px;}
._c_c00347{width:34.750980px;}
._18_c00347{width:35.980560px;}
._20_c00347{width:37.200240px;}
._21_c00347{width:40.630590px;}
._f_c00347{width:42.867000px;}
._16_c00347{width:46.195380px;}
._1e_c00347{width:51.750270px;}
._13_c00347{width:62.251200px;}
._15_c00347{width:69.635808px;}
._12_c00347{width:75.596400px;}
.fc0_c00347{color:transparent;}
.fs12_c00347{font-size:21.384000px;}
.fs19_c00347{font-size:22.176000px;}
.fsd_c00347{font-size:25.344000px;}
.fs18_c00347{font-size:26.928000px;}
.fs14_c00347{font-size:27.720000px;}
.fs7_c00347{font-size:28.116000px;}
.fsc_c00347{font-size:32.076198px;}
.fs10_c00347{font-size:38.808000px;}
.fs4_c00347{font-size:39.204000px;}
.fs15_c00347{font-size:43.560000px;}
.fs9_c00347{font-size:47.124000px;}
.fs1a_c00347{font-size:48.470598px;}
.fs13_c00347{font-size:49.896198px;}
.fsb_c00347{font-size:55.598598px;}
.fs8_c00347{font-size:60.192000px;}
.fs6_c00347{font-size:62.568000px;}
.fs2_c00347{font-size:65.538000px;}
.fs16_c00347{font-size:69.894000px;}
.fs11_c00347{font-size:70.884000px;}
.fs1c_c00347{font-size:72.864000px;}
.fs3_c00347{font-size:73.260000px;}
.fs17_c00347{font-size:74.448000px;}
.fsf_c00347{font-size:76.032198px;}
.fs1_c00347{font-size:76.230000px;}
.fse_c00347{font-size:77.418000px;}
.fs5_c00347{font-size:79.200000px;}
.fsa_c00347{font-size:81.180000px;}
.fs1b_c00347{font-size:84.348000px;}
.fs0_c00347{font-size:85.536198px;}
.y0_c00347{bottom:0.000000px;}
.y31_c00347{bottom:2.763135px;}
.y30_c00347{bottom:54.436185px;}
.y1_c00347{bottom:76.500000px;}
.y2f_c00347{bottom:91.863135px;}
.y2e_c00347{bottom:143.541135px;}
.y2b_c00347{bottom:143.897535px;}
.y2c_c00347{bottom:144.248985px;}
.y2a_c00347{bottom:156.015135px;}
.y2d_c00347{bottom:174.191535px;}
.y29_c00347{bottom:174.547935px;}
.y27_c00347{bottom:174.904335px;}
.y28_c00347{bottom:189.155385px;}
.y26_c00347{bottom:207.688185px;}
.y25_c00347{bottom:229.433535px;}
.y24_c00347{bottom:240.481935px;}
.y23_c00347{bottom:259.727535px;}
.y22_c00347{bottom:272.201535px;}
.y21_c00347{bottom:272.208465px;}
.y20_c00347{bottom:306.054585px;}
.y1f_c00347{bottom:306.056813px;}
.y1e_c00347{bottom:337.779135px;}
.y1d_c00347{bottom:338.130585px;}
.y1c_c00347{bottom:349.540335px;}
.y1b_c00347{bottom:370.924335px;}
.y1a_c00347{bottom:404.064585px;}
.y19_c00347{bottom:468.221535px;}
.y18_c00347{bottom:468.223763px;}
.y17_c00347{bottom:500.297535px;}
.y16_c00347{bottom:530.947935px;}
.y15_c00347{bottom:532.368585px;}
.y14_c00347{bottom:533.086335px;}
.y13_c00347{bottom:549.124335px;}
.y12_c00347{bottom:561.593385px;}
.y10_c00347{bottom:565.162335px;}
.y11_c00347{bottom:565.875135px;}
.yf_c00347{bottom:597.951135px;}
.ye_c00347{bottom:630.378585px;}
.yc_c00347{bottom:662.102145px;}
.yd_c00347{bottom:662.103135px;}
.ya_c00347{bottom:695.243385px;}
.yb_c00347{bottom:699.168735px;}
.y9_c00347{bottom:710.212185px;}
.y8_c00347{bottom:727.675785px;}
.y7_c00347{bottom:759.756735px;}
.y6_c00347{bottom:792.184185px;}
.y5_c00347{bottom:857.405385px;}
.y4_c00347{bottom:889.486335px;}
.y3_c00347{bottom:922.275135px;}
.y2_c00347{bottom:1074.096585px;}
.h15_c00347{height:20.976785px;}
.h14_c00347{height:21.551063px;}
.h1b_c00347{height:23.128875px;}
.hf_c00347{height:24.873750px;}
.h9_c00347{height:27.594316px;}
.h1a_c00347{height:28.085063px;}
.h17_c00347{height:28.911094px;}
.he_c00347{height:31.481034px;}
.h1c_c00347{height:32.281418px;}
.hd_c00347{height:37.028666px;}
.h6_c00347{height:38.476582px;}
.h12_c00347{height:40.475531px;}
.h18_c00347{height:42.751758px;}
.h16_c00347{height:48.970390px;}
.hb_c00347{height:49.148859px;}
.ha_c00347{height:59.075156px;}
.h8_c00347{height:61.407070px;}
.h4_c00347{height:68.354086px;}
.h13_c00347{height:69.568770px;}
.h1e_c00347{height:71.512031px;}
.h5_c00347{height:71.900684px;}
.h19_c00347{height:73.066641px;}
.h11_c00347{height:74.621444px;}
.h3_c00347{height:74.815576px;}
.h10_c00347{height:75.981533px;}
.h7_c00347{height:77.730469px;}
.hc_c00347{height:79.673730px;}
.h1d_c00347{height:82.782949px;}
.h2_c00347{height:83.949101px;}
.h1_c00347{height:1110.000000px;}
.h0_c00347{height:1263.000000px;}
.w1_c00347{width:775.500000px;}
.w0_c00347{width:892.500000px;}
.x0_c00347{left:0.000000px;}
.x1_c00347{left:58.500000px;}
.x68_c00347{left:86.903835px;}
.x51_c00347{left:99.730275px;}
.x20_c00347{left:101.016285px;}
.x4_c00347{left:102.199335px;}
.x91_c00347{left:103.718985px;}
.x88_c00347{left:106.679085px;}
.x10_c00347{left:112.737885px;}
.x40_c00347{left:123.113085px;}
.x7e_c00347{left:124.895085px;}
.x92_c00347{left:126.657285px;}
.x21_c00347{left:134.537685px;}
.x78_c00347{left:135.661335px;}
.x41_c00347{left:137.240385px;}
.x46_c00347{left:140.230185px;}
.x11_c00347{left:144.581235px;}
.x69_c00347{left:145.883085px;}
.x39_c00347{left:147.244335px;}
.x12_c00347{left:155.372235px;}
.x28_c00347{left:156.614685px;}
.x22_c00347{left:166.390935px;}
.x76_c00347{left:167.974935px;}
.x84_c00347{left:169.083735px;}
.x42_c00347{left:171.043935px;}
.x43_c00347{left:178.360035px;}
.x6a_c00347{left:179.444085px;}
.x44_c00347{left:180.597435px;}
.x45_c00347{left:189.878685px;}
.x98_c00347{left:197.570985px;}
.x5_c00347{left:200.055885px;}
.x23_c00347{left:201.144885px;}
.x13_c00347{left:211.500285px;}
.x6b_c00347{left:212.549685px;}
.x3a_c00347{left:216.974985px;}
.x14_c00347{left:223.538685px;}
.x47_c00347{left:225.969135px;}
.x52_c00347{left:234.230685px;}
.x89_c00347{left:235.379085px;}
.x6_c00347{left:244.798935px;}
.x31_c00347{left:246.031485px;}
.x15_c00347{left:255.985935px;}
.x85_c00347{left:257.787735px;}
.x7f_c00347{left:258.896535px;}
.x5a_c00347{left:267.796635px;}
.x8a_c00347{left:269.553885px;}
.x77_c00347{left:274.251435px;}
.x32_c00347{left:277.171935px;}
.x53_c00347{left:278.840085px;}
.x93_c00347{left:280.270635px;}
.x54_c00347{left:288.631185px;}
.x24_c00347{left:289.809285px;}
.x5b_c00347{left:299.679585px;}
.x48_c00347{left:300.907185px;}
.x94_c00347{left:302.006085px;}
.x16_c00347{left:311.094285px;}
.x79_c00347{left:312.163485px;}
.x5d_c00347{left:322.607985px;}
.x86_c00347{left:323.959335px;}
.x7_c00347{left:333.616785px;}
.x49_c00347{left:343.195035px;}
.x33_c00347{left:345.442335px;}
.x17_c00347{left:355.639335px;}
.x80_c00347{left:356.871885px;}
.x8_c00347{left:366.148185px;}
.x5e_c00347{left:367.157985px;}
.x8b_c00347{left:368.652885px;}
.x25_c00347{left:377.741085px;}
.x18_c00347{left:388.482585px;}
.x29_c00347{left:389.977485px;}
.x72_c00347{left:397.150035px;}
.x26_c00347{left:399.179535px;}
.x9_c00347{left:400.293285px;}
.x87_c00347{left:401.728785px;}
.x7a_c00347{left:403.030635px;}
.x8c_c00347{left:404.708685px;}
.x75_c00347{left:411.698085px;}
.x3b_c00347{left:422.266335px;}
.x81_c00347{left:423.459285px;}
.xa_c00347{left:432.453435px;}
.x4a_c00347{left:433.527585px;}
.x5f_c00347{left:435.987735px;}
.x83_c00347{left:441.081285px;}
.x55_c00347{left:442.630635px;}
.x3c_c00347{left:443.858235px;}
.x6f_c00347{left:445.575885px;}
.x90_c00347{left:447.184635px;}
.x19_c00347{left:455.267985px;}
.x73_c00347{left:457.980585px;}
.x4b_c00347{left:465.083835px;}
.xb_c00347{left:466.657935px;}
.x6d_c00347{left:467.712285px;}
.x1a_c00347{left:477.399435px;}
.x60_c00347{left:478.414185px;}
.x3f_c00347{left:484.175985px;}
.x2a_c00347{left:488.690385px;}
.x62_c00347{left:490.036785px;}
.x74_c00347{left:494.724435px;}
.x61_c00347{left:499.813035px;}
.x27_c00347{left:501.397035px;}
.x34_c00347{left:510.485235px;}
.x3d_c00347{left:512.445435px;}
.x2b_c00347{left:521.003985px;}
.x56_c00347{left:522.191985px;}
.x63_c00347{left:526.394535px;}
.x1b_c00347{left:532.032585px;}
.x4c_c00347{left:533.666085px;}
.x4d_c00347{left:543.798735px;}
.x35_c00347{left:554.510535px;}
.x5c_c00347{left:555.738135px;}
.xc_c00347{left:565.256985px;}
.x36_c00347{left:566.425185px;}
.x7b_c00347{left:575.884635px;}
.xd_c00347{left:577.117185px;}
.x64_c00347{left:579.854535px;}
.x4e_c00347{left:587.853735px;}
.x70_c00347{left:590.615835px;}
.x57_c00347{left:597.664635px;}
.x1c_c00347{left:598.669485px;}
.x6c_c00347{left:599.902035px;}
.x37_c00347{left:607.970535px;}
.xe_c00347{left:609.029835px;}
.x82_c00347{left:610.297035px;}
.x4f_c00347{left:611.361285px;}
.x1d_c00347{left:620.657385px;}
.x2c_c00347{left:632.007735px;}
.x8d_c00347{left:633.789735px;}
.x1e_c00347{left:642.531435px;}
.x7c_c00347{left:643.724385px;}
.x6e_c00347{left:645.917235px;}
.x2d_c00347{left:654.262935px;}
.x95_c00347{left:656.624085px;}
.x58_c00347{left:664.638135px;}
.x38_c00347{left:666.227085px;}
.x66_c00347{left:669.583185px;}
.x2_c00347{left:676.849785px;}
.xf_c00347{left:679.384185px;}
.x2e_c00347{left:685.695435px;}
.x59_c00347{left:686.789385px;}
.x1f_c00347{left:687.967485px;}
.x96_c00347{left:689.333685px;}
.x71_c00347{left:698.199135px;}
.x3_c00347{left:699.857385px;}
.x7d_c00347{left:701.629485px;}
.x65_c00347{left:706.327035px;}
.x67_c00347{left:707.797185px;}
.x3e_c00347{left:709.658385px;}
.x2f_c00347{left:720.568185px;}
.x8e_c00347{left:722.572935px;}
.x50_c00347{left:731.448285px;}
.x8f_c00347{left:743.922285px;}
.x30_c00347{left:754.257885px;}
.x97_c00347{left:756.183435px;}
@media print{
.v0_c00347{vertical-align:0.000000pt;}
.ls7_c00347{letter-spacing:-2.464000pt;}
.ls10_c00347{letter-spacing:-2.408560pt;}
.ls4_c00347{letter-spacing:-2.371600pt;}
.ls8_c00347{letter-spacing:-1.946560pt;}
.lsb_c00347{letter-spacing:-1.872640pt;}
.lsc_c00347{letter-spacing:-1.466080pt;}
.ls19_c00347{letter-spacing:-1.382304pt;}
.ls15_c00347{letter-spacing:-1.111264pt;}
.lsf_c00347{letter-spacing:-0.997926pt;}
.ls5_c00347{letter-spacing:-0.758912pt;}
.ls1a_c00347{letter-spacing:-0.467544pt;}
.ls17_c00347{letter-spacing:-0.115192pt;}
.ls2_c00347{letter-spacing:0.000000pt;}
.ls18_c00347{letter-spacing:0.094864pt;}
.ls0_c00347{letter-spacing:0.379456pt;}
.ls16_c00347{letter-spacing:0.950400pt;}
.ls13_c00347{letter-spacing:1.023176pt;}
.ls9_c00347{letter-spacing:1.249600pt;}
.ls1c_c00347{letter-spacing:1.799987pt;}
.ls12_c00347{letter-spacing:2.087008pt;}
.ls1b_c00347{letter-spacing:2.217609pt;}
.lsa_c00347{letter-spacing:2.675200pt;}
.ls14_c00347{letter-spacing:3.150400pt;}
.ls6_c00347{letter-spacing:3.256000pt;}
.ls1d_c00347{letter-spacing:3.308800pt;}
.ls11_c00347{letter-spacing:3.379209pt;}
.ls3_c00347{letter-spacing:3.388000pt;}
.lsd_c00347{letter-spacing:3.608000pt;}
.ls1_c00347{letter-spacing:3.801609pt;}
.ls1e_c00347{letter-spacing:43.084976pt;}
.lse_c00347{letter-spacing:49.420976pt;}
.ws8_c00347{word-spacing:-19.027008pt;}
.ws9_c00347{word-spacing:-17.319456pt;}
.ws4_c00347{word-spacing:-16.940000pt;}
.ws3_c00347{word-spacing:-16.195168pt;}
.ws2_c00347{word-spacing:-16.181088pt;}
.ws5_c00347{word-spacing:-13.904000pt;}
.ws7_c00347{word-spacing:-2.439360pt;}
.ws1_c00347{word-spacing:-0.745360pt;}
.wsc_c00347{word-spacing:0.000000pt;}
.wsa_c00347{word-spacing:0.203280pt;}
.ws0_c00347{word-spacing:1.084160pt;}
.wsb_c00347{word-spacing:5.895120pt;}
.ws6_c00347{word-spacing:9.283120pt;}
._25_c00347{margin-left:-23.392512pt;}
._b_c00347{margin-left:-13.308064pt;}
._1d_c00347{margin-left:-10.240560pt;}
._23_c00347{margin-left:-8.944320pt;}
._d_c00347{margin-left:-7.738720pt;}
._9_c00347{margin-left:-6.369440pt;}
._1a_c00347{margin-left:-3.794560pt;}
._17_c00347{margin-left:-2.439360pt;}
._10_c00347{margin-left:-1.016400pt;}
._11_c00347{width:1.016400pt;}
._1c_c00347{width:2.059904pt;}
._0_c00347{width:3.041192pt;}
._4_c00347{width:4.675440pt;}
._24_c00347{width:5.652504pt;}
._2_c00347{width:6.640480pt;}
._5_c00347{width:7.724640pt;}
._7_c00347{width:9.350880pt;}
._19_c00347{width:10.638320pt;}
._e_c00347{width:11.943360pt;}
._1f_c00347{width:14.696176pt;}
._1b_c00347{width:15.721200pt;}
._a_c00347{width:18.295200pt;}
._1_c00347{width:19.718160pt;}
._6_c00347{width:21.487928pt;}
._8_c00347{width:22.564080pt;}
._22_c00347{width:23.959936pt;}
._14_c00347{width:27.073024pt;}
._3_c00347{width:28.933520pt;}
._c_c00347{width:30.889760pt;}
._18_c00347{width:31.982720pt;}
._20_c00347{width:33.066880pt;}
._21_c00347{width:36.116080pt;}
._f_c00347{width:38.104000pt;}
._16_c00347{width:41.062560pt;}
._1e_c00347{width:46.000240pt;}
._13_c00347{width:55.334400pt;}
._15_c00347{width:61.898496pt;}
._12_c00347{width:67.196800pt;}
.fs12_c00347{font-size:19.008000pt;}
.fs19_c00347{font-size:19.712000pt;}
.fsd_c00347{font-size:22.528000pt;}
.fs18_c00347{font-size:23.936000pt;}
.fs14_c00347{font-size:24.640000pt;}
.fs7_c00347{font-size:24.992000pt;}
.fsc_c00347{font-size:28.512176pt;}
.fs10_c00347{font-size:34.496000pt;}
.fs4_c00347{font-size:34.848000pt;}
.fs15_c00347{font-size:38.720000pt;}
.fs9_c00347{font-size:41.888000pt;}
.fs1a_c00347{font-size:43.084976pt;}
.fs13_c00347{font-size:44.352176pt;}
.fsb_c00347{font-size:49.420976pt;}
.fs8_c00347{font-size:53.504000pt;}
.fs6_c00347{font-size:55.616000pt;}
.fs2_c00347{font-size:58.256000pt;}
.fs16_c00347{font-size:62.128000pt;}
.fs11_c00347{font-size:63.008000pt;}
.fs1c_c00347{font-size:64.768000pt;}
.fs3_c00347{font-size:65.120000pt;}
.fs17_c00347{font-size:66.176000pt;}
.fsf_c00347{font-size:67.584176pt;}
.fs1_c00347{font-size:67.760000pt;}
.fse_c00347{font-size:68.816000pt;}
.fs5_c00347{font-size:70.400000pt;}
.fsa_c00347{font-size:72.160000pt;}
.fs1b_c00347{font-size:74.976000pt;}
.fs0_c00347{font-size:76.032176pt;}
.y0_c00347{bottom:0.000000pt;}
.y31_c00347{bottom:2.456120pt;}
.y30_c00347{bottom:48.387720pt;}
.y1_c00347{bottom:68.000000pt;}
.y2f_c00347{bottom:81.656120pt;}
.y2e_c00347{bottom:127.592120pt;}
.y2b_c00347{bottom:127.908920pt;}
.y2c_c00347{bottom:128.221320pt;}
.y2a_c00347{bottom:138.680120pt;}
.y2d_c00347{bottom:154.836920pt;}
.y29_c00347{bottom:155.153720pt;}
.y27_c00347{bottom:155.470520pt;}
.y28_c00347{bottom:168.138120pt;}
.y26_c00347{bottom:184.611720pt;}
.y25_c00347{bottom:203.940920pt;}
.y24_c00347{bottom:213.761720pt;}
.y23_c00347{bottom:230.868920pt;}
.y22_c00347{bottom:241.956920pt;}
.y21_c00347{bottom:241.963080pt;}
.y20_c00347{bottom:272.048520pt;}
.y1f_c00347{bottom:272.050500pt;}
.y1e_c00347{bottom:300.248120pt;}
.y1d_c00347{bottom:300.560520pt;}
.y1c_c00347{bottom:310.702520pt;}
.y1b_c00347{bottom:329.710520pt;}
.y1a_c00347{bottom:359.168520pt;}
.y19_c00347{bottom:416.196920pt;}
.y18_c00347{bottom:416.198900pt;}
.y17_c00347{bottom:444.708920pt;}
.y16_c00347{bottom:471.953720pt;}
.y15_c00347{bottom:473.216520pt;}
.y14_c00347{bottom:473.854520pt;}
.y13_c00347{bottom:488.110520pt;}
.y12_c00347{bottom:499.194120pt;}
.y10_c00347{bottom:502.366520pt;}
.y11_c00347{bottom:503.000120pt;}
.yf_c00347{bottom:531.512120pt;}
.ye_c00347{bottom:560.336520pt;}
.yc_c00347{bottom:588.535240pt;}
.yd_c00347{bottom:588.536120pt;}
.ya_c00347{bottom:617.994120pt;}
.yb_c00347{bottom:621.483320pt;}
.y9_c00347{bottom:631.299720pt;}
.y8_c00347{bottom:646.822920pt;}
.y7_c00347{bottom:675.339320pt;}
.y6_c00347{bottom:704.163720pt;}
.y5_c00347{bottom:762.138120pt;}
.y4_c00347{bottom:790.654520pt;}
.y3_c00347{bottom:819.800120pt;}
.y2_c00347{bottom:954.752520pt;}
.h15_c00347{height:18.646031pt;}
.h14_c00347{height:19.156500pt;}
.h1b_c00347{height:20.559000pt;}
.hf_c00347{height:22.110000pt;}
.h9_c00347{height:24.528281pt;}
.h1a_c00347{height:24.964500pt;}
.h17_c00347{height:25.698750pt;}
.he_c00347{height:27.983141pt;}
.h1c_c00347{height:28.694594pt;}
.hd_c00347{height:32.914370pt;}
.h6_c00347{height:34.201406pt;}
.h12_c00347{height:35.978250pt;}
.h18_c00347{height:38.001563pt;}
.h16_c00347{height:43.529235pt;}
.hb_c00347{height:43.687875pt;}
.ha_c00347{height:52.511250pt;}
.h8_c00347{height:54.584063pt;}
.h4_c00347{height:60.759188pt;}
.h13_c00347{height:61.838906pt;}
.h1e_c00347{height:63.566250pt;}
.h5_c00347{height:63.911719pt;}
.h19_c00347{height:64.948125pt;}
.h11_c00347{height:66.330173pt;}
.h3_c00347{height:66.502734pt;}
.h10_c00347{height:67.539141pt;}
.h7_c00347{height:69.093750pt;}
.hc_c00347{height:70.821094pt;}
.h1d_c00347{height:73.584844pt;}
.h2_c00347{height:74.621423pt;}
.h1_c00347{height:986.666667pt;}
.h0_c00347{height:1122.666667pt;}
.w1_c00347{width:689.333333pt;}
.w0_c00347{width:793.333333pt;}
.x0_c00347{left:0.000000pt;}
.x1_c00347{left:52.000000pt;}
.x68_c00347{left:77.247853pt;}
.x51_c00347{left:88.649133pt;}
.x20_c00347{left:89.792253pt;}
.x4_c00347{left:90.843853pt;}
.x91_c00347{left:92.194653pt;}
.x88_c00347{left:94.825853pt;}
.x10_c00347{left:100.211453pt;}
.x40_c00347{left:109.433853pt;}
.x7e_c00347{left:111.017853pt;}
.x92_c00347{left:112.584253pt;}
.x21_c00347{left:119.589053pt;}
.x78_c00347{left:120.587853pt;}
.x41_c00347{left:121.991453pt;}
.x46_c00347{left:124.649053pt;}
.x11_c00347{left:128.516653pt;}
.x69_c00347{left:129.673853pt;}
.x39_c00347{left:130.883853pt;}
.x12_c00347{left:138.108653pt;}
.x28_c00347{left:139.213053pt;}
.x22_c00347{left:147.903053pt;}
.x76_c00347{left:149.311053pt;}
.x84_c00347{left:150.296653pt;}
.x42_c00347{left:152.039053pt;}
.x43_c00347{left:158.542253pt;}
.x6a_c00347{left:159.505853pt;}
.x44_c00347{left:160.531053pt;}
.x45_c00347{left:168.781053pt;}
.x98_c00347{left:175.618653pt;}
.x5_c00347{left:177.827453pt;}
.x23_c00347{left:178.795453pt;}
.x13_c00347{left:188.000253pt;}
.x6b_c00347{left:188.933053pt;}
.x3a_c00347{left:192.866653pt;}
.x14_c00347{left:198.701053pt;}
.x47_c00347{left:200.861453pt;}
.x52_c00347{left:208.205053pt;}
.x89_c00347{left:209.225853pt;}
.x6_c00347{left:217.599053pt;}
.x31_c00347{left:218.694653pt;}
.x15_c00347{left:227.543053pt;}
.x85_c00347{left:229.144653pt;}
.x7f_c00347{left:230.130253pt;}
.x5a_c00347{left:238.041453pt;}
.x8a_c00347{left:239.603453pt;}
.x77_c00347{left:243.779053pt;}
.x32_c00347{left:246.375053pt;}
.x53_c00347{left:247.857853pt;}
.x93_c00347{left:249.129453pt;}
.x54_c00347{left:256.561053pt;}
.x24_c00347{left:257.608253pt;}
.x5b_c00347{left:266.381853pt;}
.x48_c00347{left:267.473053pt;}
.x94_c00347{left:268.449853pt;}
.x16_c00347{left:276.528253pt;}
.x79_c00347{left:277.478653pt;}
.x5d_c00347{left:286.762653pt;}
.x86_c00347{left:287.963853pt;}
.x7_c00347{left:296.548253pt;}
.x49_c00347{left:305.062253pt;}
.x33_c00347{left:307.059853pt;}
.x17_c00347{left:316.123853pt;}
.x80_c00347{left:317.219453pt;}
.x8_c00347{left:325.465053pt;}
.x5e_c00347{left:326.362653pt;}
.x8b_c00347{left:327.691453pt;}
.x25_c00347{left:335.769853pt;}
.x18_c00347{left:345.317853pt;}
.x29_c00347{left:346.646653pt;}
.x72_c00347{left:353.022253pt;}
.x26_c00347{left:354.826253pt;}
.x9_c00347{left:355.816253pt;}
.x87_c00347{left:357.092253pt;}
.x7a_c00347{left:358.249453pt;}
.x8c_c00347{left:359.741053pt;}
.x75_c00347{left:365.953853pt;}
.x3b_c00347{left:375.347853pt;}
.x81_c00347{left:376.408253pt;}
.xa_c00347{left:384.403053pt;}
.x4a_c00347{left:385.357853pt;}
.x5f_c00347{left:387.544653pt;}
.x83_c00347{left:392.072253pt;}
.x55_c00347{left:393.449453pt;}
.x3c_c00347{left:394.540653pt;}
.x6f_c00347{left:396.067453pt;}
.x90_c00347{left:397.497453pt;}
.x19_c00347{left:404.682653pt;}
.x73_c00347{left:407.093853pt;}
.x4b_c00347{left:413.407853pt;}
.xb_c00347{left:414.807053pt;}
.x6d_c00347{left:415.744253pt;}
.x1a_c00347{left:424.355053pt;}
.x60_c00347{left:425.257053pt;}
.x3f_c00347{left:430.378653pt;}
.x2a_c00347{left:434.391453pt;}
.x62_c00347{left:435.588253pt;}
.x74_c00347{left:439.755053pt;}
.x61_c00347{left:444.278253pt;}
.x27_c00347{left:445.686253pt;}
.x34_c00347{left:453.764653pt;}
.x3d_c00347{left:455.507053pt;}
.x2b_c00347{left:463.114653pt;}
.x56_c00347{left:464.170653pt;}
.x63_c00347{left:467.906253pt;}
.x1b_c00347{left:472.917853pt;}
.x4c_c00347{left:474.369853pt;}
.x4d_c00347{left:483.376653pt;}
.x35_c00347{left:492.898253pt;}
.x5c_c00347{left:493.989453pt;}
.xc_c00347{left:502.450653pt;}
.x36_c00347{left:503.489053pt;}
.x7b_c00347{left:511.897453pt;}
.xd_c00347{left:512.993053pt;}
.x64_c00347{left:515.426253pt;}
.x4e_c00347{left:522.536653pt;}
.x70_c00347{left:524.991853pt;}
.x57_c00347{left:531.257453pt;}
.x1c_c00347{left:532.150653pt;}
.x6c_c00347{left:533.246253pt;}
.x37_c00347{left:540.418253pt;}
.xe_c00347{left:541.359853pt;}
.x82_c00347{left:542.486253pt;}
.x4f_c00347{left:543.432253pt;}
.x1d_c00347{left:551.695453pt;}
.x2c_c00347{left:561.784653pt;}
.x8d_c00347{left:563.368653pt;}
.x1e_c00347{left:571.139053pt;}
.x7c_c00347{left:572.199453pt;}
.x6e_c00347{left:574.148653pt;}
.x2d_c00347{left:581.567053pt;}
.x95_c00347{left:583.665853pt;}
.x58_c00347{left:590.789453pt;}
.x38_c00347{left:592.201853pt;}
.x66_c00347{left:595.185053pt;}
.x2_c00347{left:601.644253pt;}
.xf_c00347{left:603.897053pt;}
.x2e_c00347{left:609.507053pt;}
.x59_c00347{left:610.479453pt;}
.x1f_c00347{left:611.526653pt;}
.x96_c00347{left:612.741053pt;}
.x71_c00347{left:620.621453pt;}
.x3_c00347{left:622.095453pt;}
.x7d_c00347{left:623.670653pt;}
.x65_c00347{left:627.846253pt;}
.x67_c00347{left:629.153053pt;}
.x3e_c00347{left:630.807453pt;}
.x2f_c00347{left:640.505053pt;}
.x8e_c00347{left:642.287053pt;}
.x50_c00347{left:650.176253pt;}
.x8f_c00347{left:661.264253pt;}
.x30_c00347{left:670.451453pt;}
.x97_c00347{left:672.163053pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0e837d01782d08e881d394cf.woff2')format("woff");}.ff1_c00348{font-family:ff1_c00348;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00348;src:url('chunks/assets/font_a3f3ec4f25f55166c493489c.woff2')format("woff");}.ff2_c00348{font-family:ff2_c00348;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00348;src:url('chunks/assets/font_638a73e04c9239dbeeec2fee.woff2')format("woff");}.ff3_c00348{font-family:ff3_c00348;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m78_c00348{transform:matrix(0.091640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091640,0.000000,0.000000,0.250000,0,0);}
.mc0_c00348{transform:matrix(0.132784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132784,0.000000,0.000000,0.250000,0,0);}
.mbe_c00348{transform:matrix(0.133482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133482,0.000000,0.000000,0.250000,0,0);}
.m41_c00348{transform:matrix(0.164634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164634,0.000000,0.000000,0.250000,0,0);}
.m42_c00348{transform:matrix(0.172764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172764,0.000000,0.000000,0.250000,0,0);}
.m43_c00348{transform:matrix(0.181911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181911,0.000000,0.000000,0.250000,0,0);}
.ma7_c00348{transform:matrix(0.185976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185976,0.000000,0.000000,0.250000,0,0);}
.m46_c00348{transform:matrix(0.212968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212968,0.000000,0.000000,0.250000,0,0);}
.m6_c00348{transform:matrix(0.214174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214174,0.000000,0.000000,0.250000,0,0);}
.m3d_c00348{transform:matrix(0.222895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222895,0.000000,0.000000,0.250000,0,0);}
.ma4_c00348{transform:matrix(0.232773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232773,0.000000,0.000000,0.250000,0,0);}
.m69_c00348{transform:matrix(0.241578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241578,0.000000,0.000000,0.250000,0,0);}
.m1a_c00348{transform:matrix(0.241695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241695,0.000000,0.000000,0.250000,0,0);}
.m18_c00348{transform:matrix(0.244487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244487,0.000000,0.000000,0.250000,0,0);}
.m84_c00348{transform:matrix(0.248891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248891,0.000000,0.000000,0.250000,0,0);}
.m0_c00348{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00348{transform:matrix(0.250110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250110,0.000000,0.000000,0.250000,0,0);}
.m25_c00348{transform:matrix(0.250137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250137,0.000000,0.000000,0.250000,0,0);}
.m21_c00348{transform:matrix(0.250197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250197,0.000000,0.000000,0.250000,0,0);}
.m2d_c00348{transform:matrix(0.250827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250827,0.000000,0.000000,0.250000,0,0);}
.mbb_c00348{transform:matrix(0.251821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251821,0.000000,0.000000,0.250000,0,0);}
.mb_c00348{transform:matrix(0.254683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254683,0.000000,0.000000,0.250000,0,0);}
.m3b_c00348{transform:matrix(0.257594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257594,0.000000,0.000000,0.250000,0,0);}
.m1b_c00348{transform:matrix(0.258591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258591,0.000000,0.000000,0.250000,0,0);}
.m4d_c00348{transform:matrix(0.258718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258718,0.000000,0.000000,0.250000,0,0);}
.m3_c00348{transform:matrix(0.259073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259073,0.000000,0.000000,0.250000,0,0);}
.m45_c00348{transform:matrix(0.259082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259082,0.000000,0.000000,0.250000,0,0);}
.m73_c00348{transform:matrix(0.260790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260790,0.000000,0.000000,0.250000,0,0);}
.m9b_c00348{transform:matrix(0.262316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262316,0.000000,0.000000,0.250000,0,0);}
.m50_c00348{transform:matrix(0.265753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265753,0.000000,0.000000,0.250000,0,0);}
.m89_c00348{transform:matrix(0.266075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266075,0.000000,0.000000,0.250000,0,0);}
.m8b_c00348{transform:matrix(0.266197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266197,0.000000,0.000000,0.250000,0,0);}
.m10_c00348{transform:matrix(0.266365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266365,0.000000,0.000000,0.250000,0,0);}
.m3c_c00348{transform:matrix(0.266632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266632,0.000000,0.000000,0.250000,0,0);}
.mb5_c00348{transform:matrix(0.267144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267144,0.000000,0.000000,0.250000,0,0);}
.m58_c00348{transform:matrix(0.268416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268416,0.000000,0.000000,0.250000,0,0);}
.m52_c00348{transform:matrix(0.270569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270569,0.000000,0.000000,0.250000,0,0);}
.m5e_c00348{transform:matrix(0.270605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270605,0.000000,0.000000,0.250000,0,0);}
.md_c00348{transform:matrix(0.270827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270827,0.000000,0.000000,0.250000,0,0);}
.m9e_c00348{transform:matrix(0.271601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271601,0.000000,0.000000,0.250000,0,0);}
.m92_c00348{transform:matrix(0.271931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271931,0.000000,0.000000,0.250000,0,0);}
.m8_c00348{transform:matrix(0.272005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272005,0.000000,0.000000,0.250000,0,0);}
.m39_c00348{transform:matrix(0.272448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272448,0.000000,0.000000,0.250000,0,0);}
.mab_c00348{transform:matrix(0.273223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273223,0.000000,0.000000,0.250000,0,0);}
.m51_c00348{transform:matrix(0.273779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273779,0.000000,0.000000,0.250000,0,0);}
.m11_c00348{transform:matrix(0.273819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273819,0.000000,0.000000,0.250000,0,0);}
.m24_c00348{transform:matrix(0.273833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273833,0.000000,0.000000,0.250000,0,0);}
.m4e_c00348{transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274071,0.000000,0.000000,0.250000,0,0);}
.m62_c00348{transform:matrix(0.274271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274271,0.000000,0.000000,0.250000,0,0);}
.m79_c00348{transform:matrix(0.274303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274303,0.000000,0.000000,0.250000,0,0);}
.m94_c00348{transform:matrix(0.274755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274755,0.000000,0.000000,0.250000,0,0);}
.m90_c00348{transform:matrix(0.274834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274834,0.000000,0.000000,0.250000,0,0);}
.m20_c00348{transform:matrix(0.275579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275579,0.000000,0.000000,0.250000,0,0);}
.m66_c00348{transform:matrix(0.276155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276155,0.000000,0.000000,0.250000,0,0);}
.m1f_c00348{transform:matrix(0.276294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276294,0.000000,0.000000,0.250000,0,0);}
.m14_c00348{transform:matrix(0.276535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276535,0.000000,0.000000,0.250000,0,0);}
.m1d_c00348{transform:matrix(0.277486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277486,0.000000,0.000000,0.250000,0,0);}
.ma_c00348{transform:matrix(0.277899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277899,0.000000,0.000000,0.250000,0,0);}
.m72_c00348{transform:matrix(0.278099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278099,0.000000,0.000000,0.250000,0,0);}
.m5c_c00348{transform:matrix(0.278623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278623,0.000000,0.000000,0.250000,0,0);}
.mb7_c00348{transform:matrix(0.278795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278795,0.000000,0.000000,0.250000,0,0);}
.m54_c00348{transform:matrix(0.280330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280330,0.000000,0.000000,0.250000,0,0);}
.m6e_c00348{transform:matrix(0.281958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281958,0.000000,0.000000,0.250000,0,0);}
.maa_c00348{transform:matrix(0.282472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282472,0.000000,0.000000,0.250000,0,0);}
.m33_c00348{transform:matrix(0.282668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282668,0.000000,0.000000,0.250000,0,0);}
.m5a_c00348{transform:matrix(0.282801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282801,0.000000,0.000000,0.250000,0,0);}
.m6a_c00348{transform:matrix(0.283611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283611,0.000000,0.000000,0.250000,0,0);}
.m55_c00348{transform:matrix(0.284308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284308,0.000000,0.000000,0.250000,0,0);}
.mbc_c00348{transform:matrix(0.285081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285081,0.000000,0.000000,0.250000,0,0);}
.m2b_c00348{transform:matrix(0.285135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285135,0.000000,0.000000,0.250000,0,0);}
.mb6_c00348{transform:matrix(0.285642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285642,0.000000,0.000000,0.250000,0,0);}
.mf_c00348{transform:matrix(0.285833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285833,0.000000,0.000000,0.250000,0,0);}
.ma0_c00348{transform:matrix(0.285923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285923,0.000000,0.000000,0.250000,0,0);}
.m4c_c00348{transform:matrix(0.286152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286152,0.000000,0.000000,0.250000,0,0);}
.mba_c00348{transform:matrix(0.286522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286522,0.000000,0.000000,0.250000,0,0);}
.m4_c00348{transform:matrix(0.286532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286532,0.000000,0.000000,0.250000,0,0);}
.m15_c00348{transform:matrix(0.287379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287379,0.000000,0.000000,0.250000,0,0);}
.mb2_c00348{transform:matrix(0.289284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289284,0.000000,0.000000,0.250000,0,0);}
.mac_c00348{transform:matrix(0.289878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289878,0.000000,0.000000,0.250000,0,0);}
.mb8_c00348{transform:matrix(0.291649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291649,0.000000,0.000000,0.250000,0,0);}
.m8a_c00348{transform:matrix(0.292007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292007,0.000000,0.000000,0.250000,0,0);}
.m68_c00348{transform:matrix(0.292052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292052,0.000000,0.000000,0.250000,0,0);}
.m6b_c00348{transform:matrix(0.292192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292192,0.000000,0.000000,0.250000,0,0);}
.m64_c00348{transform:matrix(0.293130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293130,0.000000,0.000000,0.250000,0,0);}
.m81_c00348{transform:matrix(0.293710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293710,0.000000,0.000000,0.250000,0,0);}
.mbd_c00348{transform:matrix(0.293774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293774,0.000000,0.000000,0.250000,0,0);}
.m48_c00348{transform:matrix(0.293952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293952,0.000000,0.000000,0.250000,0,0);}
.m82_c00348{transform:matrix(0.294584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294584,0.000000,0.000000,0.250000,0,0);}
.m31_c00348{transform:matrix(0.294585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294585,0.000000,0.000000,0.250000,0,0);}
.m88_c00348{transform:matrix(0.294716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294716,0.000000,0.000000,0.250000,0,0);}
.m63_c00348{transform:matrix(0.295246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295246,0.000000,0.000000,0.250000,0,0);}
.m7_c00348{transform:matrix(0.295877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295877,0.000000,0.000000,0.250000,0,0);}
.m1c_c00348{transform:matrix(0.296710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296710,0.000000,0.000000,0.250000,0,0);}
.m61_c00348{transform:matrix(0.296801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296801,0.000000,0.000000,0.250000,0,0);}
.m28_c00348{transform:matrix(0.296925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296925,0.000000,0.000000,0.250000,0,0);}
.m60_c00348{transform:matrix(0.298215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298215,0.000000,0.000000,0.250000,0,0);}
.m7c_c00348{transform:matrix(0.299121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299121,0.000000,0.000000,0.250000,0,0);}
.m53_c00348{transform:matrix(0.299591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299591,0.000000,0.000000,0.250000,0,0);}
.m27_c00348{transform:matrix(0.300136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300136,0.000000,0.000000,0.250000,0,0);}
.m59_c00348{transform:matrix(0.300138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300138,0.000000,0.000000,0.250000,0,0);}
.m49_c00348{transform:matrix(0.300218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300218,0.000000,0.000000,0.250000,0,0);}
.mb4_c00348{transform:matrix(0.300562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300562,0.000000,0.000000,0.250000,0,0);}
.m8f_c00348{transform:matrix(0.301412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301412,0.000000,0.000000,0.250000,0,0);}
.m6d_c00348{transform:matrix(0.301523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301523,0.000000,0.000000,0.250000,0,0);}
.m3e_c00348{transform:matrix(0.302041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302041,0.000000,0.000000,0.250000,0,0);}
.mb3_c00348{transform:matrix(0.302058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302058,0.000000,0.000000,0.250000,0,0);}
.m4f_c00348{transform:matrix(0.302138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302138,0.000000,0.000000,0.250000,0,0);}
.m2_c00348{transform:matrix(0.302981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302981,0.000000,0.000000,0.250000,0,0);}
.m13_c00348{transform:matrix(0.303073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303073,0.000000,0.000000,0.250000,0,0);}
.m17_c00348{transform:matrix(0.303273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303273,0.000000,0.000000,0.250000,0,0);}
.m83_c00348{transform:matrix(0.303659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303659,0.000000,0.000000,0.250000,0,0);}
.m37_c00348{transform:matrix(0.303678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303678,0.000000,0.000000,0.250000,0,0);}
.m1e_c00348{transform:matrix(0.304726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304726,0.000000,0.000000,0.250000,0,0);}
.m76_c00348{transform:matrix(0.305668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305668,0.000000,0.000000,0.250000,0,0);}
.mc2_c00348{transform:matrix(0.305795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305795,0.000000,0.000000,0.250000,0,0);}
.m7b_c00348{transform:matrix(0.305801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305801,0.000000,0.000000,0.250000,0,0);}
.m4b_c00348{transform:matrix(0.306644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306644,0.000000,0.000000,0.250000,0,0);}
.mc_c00348{transform:matrix(0.306679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306679,0.000000,0.000000,0.250000,0,0);}
.m32_c00348{transform:matrix(0.307095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307095,0.000000,0.000000,0.250000,0,0);}
.m85_c00348{transform:matrix(0.308393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308393,0.000000,0.000000,0.250000,0,0);}
.m12_c00348{transform:matrix(0.308418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308418,0.000000,0.000000,0.250000,0,0);}
.m80_c00348{transform:matrix(0.308775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308775,0.000000,0.000000,0.250000,0,0);}
.m35_c00348{transform:matrix(0.309149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309149,0.000000,0.000000,0.250000,0,0);}
.m4a_c00348{transform:matrix(0.309232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309232,0.000000,0.000000,0.250000,0,0);}
.ma5_c00348{transform:matrix(0.309624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309624,0.000000,0.000000,0.250000,0,0);}
.m22_c00348{transform:matrix(0.309929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309929,0.000000,0.000000,0.250000,0,0);}
.m5_c00348{transform:matrix(0.310212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310212,0.000000,0.000000,0.250000,0,0);}
.m44_c00348{transform:matrix(0.310987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310987,0.000000,0.000000,0.250000,0,0);}
.m71_c00348{transform:matrix(0.311052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311052,0.000000,0.000000,0.250000,0,0);}
.m5f_c00348{transform:matrix(0.311427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311427,0.000000,0.000000,0.250000,0,0);}
.m98_c00348{transform:matrix(0.311760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311760,0.000000,0.000000,0.250000,0,0);}
.m30_c00348{transform:matrix(0.312146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312146,0.000000,0.000000,0.250000,0,0);}
.m9d_c00348{transform:matrix(0.313129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313129,0.000000,0.000000,0.250000,0,0);}
.mb0_c00348{transform:matrix(0.313140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313140,0.000000,0.000000,0.250000,0,0);}
.m8d_c00348{transform:matrix(0.313829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313829,0.000000,0.000000,0.250000,0,0);}
.m5d_c00348{transform:matrix(0.313870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313870,0.000000,0.000000,0.250000,0,0);}
.m74_c00348{transform:matrix(0.314356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314356,0.000000,0.000000,0.250000,0,0);}
.m96_c00348{transform:matrix(0.314362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314362,0.000000,0.000000,0.250000,0,0);}
.ma6_c00348{transform:matrix(0.315038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315038,0.000000,0.000000,0.250000,0,0);}
.m70_c00348{transform:matrix(0.316392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316392,0.000000,0.000000,0.250000,0,0);}
.m8c_c00348{transform:matrix(0.316535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316535,0.000000,0.000000,0.250000,0,0);}
.m2a_c00348{transform:matrix(0.316667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316667,0.000000,0.000000,0.250000,0,0);}
.m87_c00348{transform:matrix(0.317128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317128,0.000000,0.000000,0.250000,0,0);}
.mc3_c00348{transform:matrix(0.317209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317209,0.000000,0.000000,0.250000,0,0);}
.m6c_c00348{transform:matrix(0.317383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317383,0.000000,0.000000,0.250000,0,0);}
.ma1_c00348{transform:matrix(0.317816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317816,0.000000,0.000000,0.250000,0,0);}
.m6f_c00348{transform:matrix(0.318136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318136,0.000000,0.000000,0.250000,0,0);}
.ma3_c00348{transform:matrix(0.319232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319232,0.000000,0.000000,0.250000,0,0);}
.m9c_c00348{transform:matrix(0.319640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319640,0.000000,0.000000,0.250000,0,0);}
.m38_c00348{transform:matrix(0.321887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321887,0.000000,0.000000,0.250000,0,0);}
.m29_c00348{transform:matrix(0.322551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322551,0.000000,0.000000,0.250000,0,0);}
.m57_c00348{transform:matrix(0.323998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323998,0.000000,0.000000,0.250000,0,0);}
.m9f_c00348{transform:matrix(0.324803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324803,0.000000,0.000000,0.250000,0,0);}
.mc1_c00348{transform:matrix(0.324879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324879,0.000000,0.000000,0.250000,0,0);}
.m8e_c00348{transform:matrix(0.325859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325859,0.000000,0.000000,0.250000,0,0);}
.mb1_c00348{transform:matrix(0.326028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326028,0.000000,0.000000,0.250000,0,0);}
.m3a_c00348{transform:matrix(0.326301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326301,0.000000,0.000000,0.250000,0,0);}
.m97_c00348{transform:matrix(0.326496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326496,0.000000,0.000000,0.250000,0,0);}
.m9_c00348{transform:matrix(0.327947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327947,0.000000,0.000000,0.250000,0,0);}
.m16_c00348{transform:matrix(0.328253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328253,0.000000,0.000000,0.250000,0,0);}
.m75_c00348{transform:matrix(0.328295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328295,0.000000,0.000000,0.250000,0,0);}
.m3f_c00348{transform:matrix(0.328412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328412,0.000000,0.000000,0.250000,0,0);}
.m19_c00348{transform:matrix(0.328703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328703,0.000000,0.000000,0.250000,0,0);}
.m99_c00348{transform:matrix(0.328755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328755,0.000000,0.000000,0.250000,0,0);}
.mad_c00348{transform:matrix(0.329167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329167,0.000000,0.000000,0.250000,0,0);}
.m2c_c00348{transform:matrix(0.333090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333090,0.000000,0.000000,0.250000,0,0);}
.maf_c00348{transform:matrix(0.333639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333639,0.000000,0.000000,0.250000,0,0);}
.m65_c00348{transform:matrix(0.336244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336244,0.000000,0.000000,0.250000,0,0);}
.m34_c00348{transform:matrix(0.336513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336513,0.000000,0.000000,0.250000,0,0);}
.ma2_c00348{transform:matrix(0.339571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339571,0.000000,0.000000,0.250000,0,0);}
.m5b_c00348{transform:matrix(0.339736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339736,0.000000,0.000000,0.250000,0,0);}
.ma8_c00348{transform:matrix(0.340685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340685,0.000000,0.000000,0.250000,0,0);}
.m23_c00348{transform:matrix(0.341170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341170,0.000000,0.000000,0.250000,0,0);}
.m91_c00348{transform:matrix(0.342744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342744,0.000000,0.000000,0.250000,0,0);}
.ma9_c00348{transform:matrix(0.343544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343544,0.000000,0.000000,0.250000,0,0);}
.m95_c00348{transform:matrix(0.344977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344977,0.000000,0.000000,0.250000,0,0);}
.m26_c00348{transform:matrix(0.347288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347288,0.000000,0.000000,0.250000,0,0);}
.m86_c00348{transform:matrix(0.348981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348981,0.000000,0.000000,0.250000,0,0);}
.m7f_c00348{transform:matrix(0.352812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352812,0.000000,0.000000,0.250000,0,0);}
.me_c00348{transform:matrix(0.353087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353087,0.000000,0.000000,0.250000,0,0);}
.m56_c00348{transform:matrix(0.359282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359282,0.000000,0.000000,0.250000,0,0);}
.m7e_c00348{transform:matrix(0.359336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359336,0.000000,0.000000,0.250000,0,0);}
.m2f_c00348{transform:matrix(0.365725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365725,0.000000,0.000000,0.250000,0,0);}
.m36_c00348{transform:matrix(0.366519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366519,0.000000,0.000000,0.250000,0,0);}
.m7a_c00348{transform:matrix(0.367312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367312,0.000000,0.000000,0.250000,0,0);}
.mbf_c00348{transform:matrix(0.374481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374481,0.000000,0.000000,0.250000,0,0);}
.m47_c00348{transform:matrix(0.376910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376910,0.000000,0.000000,0.250000,0,0);}
.m67_c00348{transform:matrix(0.384060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384060,0.000000,0.000000,0.250000,0,0);}
.m7d_c00348{transform:matrix(0.384979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384979,0.000000,0.000000,0.250000,0,0);}
.m40_c00348{transform:matrix(0.391170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391170,0.000000,0.000000,0.250000,0,0);}
.mae_c00348{transform:matrix(0.396623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396623,0.000000,0.000000,0.250000,0,0);}
.m93_c00348{transform:matrix(0.419438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419438,0.000000,0.000000,0.250000,0,0);}
.m1_c00348{transform:matrix(0.424998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424998,0.000000,0.000000,0.250000,0,0);}
.mb9_c00348{transform:matrix(0.426547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426547,0.000000,0.000000,0.250000,0,0);}
.m2e_c00348{transform:matrix(0.428819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428819,0.000000,0.000000,0.250000,0,0);}
.m77_c00348{transform:matrix(0.430531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430531,0.000000,0.000000,0.250000,0,0);}
.v1_c00348{vertical-align:-54.172800px;}
.v3_c00348{vertical-align:-25.680600px;}
.v0_c00348{vertical-align:0.000000px;}
.v2_c00348{vertical-align:8.573400px;}
.ls8_c00348{letter-spacing:-2.668050px;}
.ls13_c00348{letter-spacing:-2.477475px;}
.ls12_c00348{letter-spacing:-1.879580px;}
.ls17_c00348{letter-spacing:-1.555092px;}
.lsf_c00348{letter-spacing:-1.250172px;}
.ls18_c00348{letter-spacing:-0.518364px;}
.lsb_c00348{letter-spacing:-0.129591px;}
.ls3_c00348{letter-spacing:0.000000px;}
.ls6_c00348{letter-spacing:0.137214px;}
.ls15_c00348{letter-spacing:1.006236px;}
.ls11_c00348{letter-spacing:1.097712px;}
.lsa_c00348{letter-spacing:1.265418px;}
.lsd_c00348{letter-spacing:1.951488px;}
.ls1_c00348{letter-spacing:1.997226px;}
.ls2_c00348{letter-spacing:2.599443px;}
.ls16_c00348{letter-spacing:2.637558px;}
.lsc_c00348{letter-spacing:3.011085px;}
.ls5_c00348{letter-spacing:3.019500px;}
.ls10_c00348{letter-spacing:3.517331px;}
.ls14_c00348{letter-spacing:3.643200px;}
.ls9_c00348{letter-spacing:3.773385px;}
.ls7_c00348{letter-spacing:3.811500px;}
.ls4_c00348{letter-spacing:14.256198px;}
.ls0_c00348{letter-spacing:30.139560px;}
.lse_c00348{letter-spacing:58.449798px;}
.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:-22.830885px;}
.ws6_c00348{word-spacing:-21.656943px;}
.ws5_c00348{word-spacing:-21.054726px;}
.ws2_c00348{word-spacing:-19.057500px;}
.ws7_c00348{word-spacing:-18.539136px;}
.ws4_c00348{word-spacing:-15.395970px;}
.ws8_c00348{word-spacing:0.000000px;}
.ws1_c00348{word-spacing:3.506580px;}
.ws3_c00348{word-spacing:15.138239px;}
._d_c00348{margin-left:-10.062360px;}
._f_c00348{margin-left:-7.699230px;}
._5_c00348{width:2.515590px;}
._2_c00348{width:3.811500px;}
._11_c00348{width:6.022170px;}
._7_c00348{width:7.470540px;}
._12_c00348{width:8.536770px;}
._6_c00348{width:9.604980px;}
._13_c00348{width:10.710914px;}
._19_c00348{width:11.827530px;}
._4_c00348{width:12.883860px;}
._e_c00348{width:21.419640px;}
._9_c00348{width:22.869000px;}
._b_c00348{width:25.231140px;}
._8_c00348{width:30.109860px;}
._10_c00348{width:31.178070px;}
._17_c00348{width:34.380720px;}
._a_c00348{width:35.523180px;}
._c_c00348{width:37.735830px;}
._1_c00348{width:39.799980px;}
._18_c00348{width:40.838490px;}
._3_c00348{width:42.155190px;}
._16_c00348{width:48.939660px;}
._14_c00348{width:138.803247px;}
._15_c00348{width:673.024176px;}
._0_c00348{width:787.818240px;}
.fc0_c00348{color:transparent;}
.fs3_c00348{font-size:14.256198px;}
.fsd_c00348{font-size:22.176000px;}
.fs0_c00348{font-size:27.720000px;}
.fs14_c00348{font-size:33.660000px;}
.fs12_c00348{font-size:34.650000px;}
.fsc_c00348{font-size:38.808000px;}
.fs2_c00348{font-size:39.600000px;}
.fs6_c00348{font-size:56.628000px;}
.fs7_c00348{font-size:58.449798px;}
.fs4_c00348{font-size:60.390000px;}
.fs8_c00348{font-size:66.330000px;}
.fsa_c00348{font-size:68.112198px;}
.fsb_c00348{font-size:69.102198px;}
.fs1_c00348{font-size:71.280000px;}
.fsf_c00348{font-size:72.864000px;}
.fs10_c00348{font-size:76.032198px;}
.fs5_c00348{font-size:76.230000px;}
.fs11_c00348{font-size:76.824000px;}
.fs13_c00348{font-size:77.616198px;}
.fs9_c00348{font-size:79.398000px;}
.fse_c00348{font-size:113.256198px;}
.y0_c00348{bottom:0.000000px;}
.y1_c00348{bottom:72.000000px;}
.y24_c00348{bottom:137.349135px;}
.y23_c00348{bottom:144.833535px;}
.y22_c00348{bottom:175.835385px;}
.y21_c00348{bottom:208.629135px;}
.y20_c00348{bottom:218.603385px;}
.y1f_c00348{bottom:231.795135px;}
.y1e_c00348{bottom:243.556335px;}
.y1d_c00348{bottom:267.073785px;}
.y1c_c00348{bottom:275.983785px;}
.y1b_c00348{bottom:308.421135px;}
.y1a_c00348{bottom:341.209935px;}
.y19_c00348{bottom:373.285935px;}
.y17_c00348{bottom:405.005535px;}
.y18_c00348{bottom:405.356985px;}
.y16_c00348{bottom:405.718335px;}
.y15_c00348{bottom:438.507135px;}
.y14_c00348{bottom:472.360185px;}
.y13_c00348{bottom:536.155785px;}
.y12_c00348{bottom:547.209135px;}
.y11_c00348{bottom:571.087935px;}
.y10_c00348{bottom:603.158985px;}
.yf_c00348{bottom:635.591385px;}
.ye_c00348{bottom:667.672335px;}
.yd_c00348{bottom:699.743385px;}
.yc_c00348{bottom:717.563385px;}
.yb_c00348{bottom:735.026985px;}
.ya_c00348{bottom:768.533535px;}
.y9_c00348{bottom:800.965935px;}
.y8_c00348{bottom:833.754735px;}
.y6_c00348{bottom:898.259670px;}
.y7_c00348{bottom:898.263135px;}
.y5_c00348{bottom:930.695535px;}
.y4_c00348{bottom:1081.091385px;}
.y3_c00348{bottom:1090.714185px;}
.y2_c00348{bottom:1104.257385px;}
.h3_c00348{height:9.494628px;}
.h10_c00348{height:23.128875px;}
.h2_c00348{height:28.911094px;}
.h13_c00348{height:33.035449px;}
.h11_c00348{height:36.138867px;}
.h7_c00348{height:38.927565px;}
.h6_c00348{height:59.061234px;}
.h4_c00348{height:59.269482px;}
.hb_c00348{height:67.820028px;}
.h8_c00348{height:69.180117px;}
.ha_c00348{height:71.038894px;}
.hd_c00348{height:71.512031px;}
.h5_c00348{height:74.815576px;}
.hf_c00348{height:75.398555px;}
.h9_c00348{height:77.924795px;}
.he_c00348{height:79.299207px;}
.h12_c00348{height:80.951269px;}
.hc_c00348{height:118.122675px;}
.h1_c00348{height:1119.000000px;}
.h0_c00348{height:1263.000000px;}
.w1_c00348{width:790.500000px;}
.w0_c00348{width:892.500000px;}
.x0_c00348{left:0.000000px;}
.x1_c00348{left:51.000000px;}
.x6_c00348{left:102.952485px;}
.x60_c00348{left:104.051385px;}
.x50_c00348{left:105.927435px;}
.x45_c00348{left:124.108785px;}
.x6a_c00348{left:126.499635px;}
.x12_c00348{left:135.860085px;}
.x6e_c00348{left:137.582685px;}
.x61_c00348{left:139.226085px;}
.x7_c00348{left:146.537235px;}
.x1d_c00348{left:157.991535px;}
.x36_c00348{left:168.554835px;}
.x4d_c00348{left:180.286335px;}
.x6b_c00348{left:181.360485px;}
.x49_c00348{left:190.310085px;}
.x1e_c00348{left:191.691135px;}
.x8_c00348{left:201.942585px;}
.x65_c00348{left:203.397885px;}
.x13_c00348{left:212.392035px;}
.x6c_c00348{left:214.510635px;}
.x1f_c00348{left:223.811685px;}
.x62_c00348{left:225.158085px;}
.x9_c00348{left:234.280935px;}
.x4e_c00348{left:235.558035px;}
.x6f_c00348{left:239.557635px;}
.x14_c00348{left:244.284885px;}
.x2a_c00348{left:246.596535px;}
.x15_c00348{left:257.263785px;}
.x4b_c00348{left:258.466635px;}
.x37_c00348{left:260.194185px;}
.xa_c00348{left:268.030035px;}
.x5a_c00348{left:269.059635px;}
.x3d_c00348{left:279.741735px;}
.x5b_c00348{left:281.390085px;}
.x66_c00348{left:282.865185px;}
.x16_c00348{left:290.171385px;}
.xb_c00348{left:300.571335px;}
.x3e_c00348{left:301.863285px;}
.x20_c00348{left:310.956435px;}
.x38_c00348{left:312.698835px;}
.x2b_c00348{left:323.227485px;}
.x5e_c00348{left:324.281835px;}
.x31_c00348{left:333.409635px;}
.x56_c00348{left:336.414285px;}
.x21_c00348{left:345.720285px;}
.x5c_c00348{left:346.749885px;}
.x17_c00348{left:356.808285px;}
.x32_c00348{left:367.817085px;}
.x5f_c00348{left:368.866485px;}
.x51_c00348{left:369.896085px;}
.xc_c00348{left:378.830835px;}
.x57_c00348{left:380.271285px;}
.x3f_c00348{left:389.329785px;}
.x22_c00348{left:391.230585px;}
.x33_c00348{left:401.150385px;}
.x52_c00348{left:402.645285px;}
.x18_c00348{left:411.976035px;}
.x39_c00348{left:413.322435px;}
.x2c_c00348{left:423.346185px;}
.x40_c00348{left:424.400535px;}
.x4a_c00348{left:434.241135px;}
.x19_c00348{left:444.918285px;}
.x63_c00348{left:446.853735px;}
.x23_c00348{left:456.852735px;}
.x41_c00348{left:467.732835px;}
.x53_c00348{left:468.970335px;}
.x72_c00348{left:477.266535px;}
.x2d_c00348{left:478.548585px;}
.x5d_c00348{left:479.568285px;}
.x2_c00348{left:489.765285px;}
.x68_c00348{left:491.047335px;}
.xd_c00348{left:499.091085px;}
.x42_c00348{left:501.373035px;}
.x58_c00348{left:504.664785px;}
.x64_c00348{left:507.253635px;}
.x24_c00348{left:511.758135px;}
.x2e_c00348{left:522.791685px;}
.x1a_c00348{left:523.860885px;}
.x34_c00348{left:532.637235px;}
.x3a_c00348{left:534.374685px;}
.x4c_c00348{left:535.567635px;}
.x25_c00348{left:545.254785px;}
.x1b_c00348{left:555.996285px;}
.x26_c00348{left:567.010035px;}
.x35_c00348{left:577.474335px;}
.x69_c00348{left:579.449385px;}
.x2f_c00348{left:580.503735px;}
.x1c_c00348{left:588.557385px;}
.x59_c00348{left:589.819635px;}
.x46_c00348{left:599.551335px;}
.x43_c00348{left:601.427385px;}
.x4f_c00348{left:612.282735px;}
.x27_c00348{left:620.875935px;}
.x3b_c00348{left:622.266885px;}
.x54_c00348{left:623.603385px;}
.xe_c00348{left:634.295385px;}
.x3c_c00348{left:644.343885px;}
.x55_c00348{left:646.452585px;}
.x6d_c00348{left:651.219435px;}
.x47_c00348{left:655.134885px;}
.x28_c00348{left:666.237735px;}
.x70_c00348{left:667.796985px;}
.x4_c00348{left:677.513835px;}
.xf_c00348{left:687.983085px;}
.x67_c00348{left:689.101785px;}
.x5_c00348{left:690.596685px;}
.x71_c00348{left:692.027235px;}
.x29_c00348{left:698.585985px;}
.x30_c00348{left:699.764085px;}
.x44_c00348{left:711.302535px;}
.x3_c00348{left:712.980585px;}
.x10_c00348{left:733.453785px;}
.x48_c00348{left:744.264585px;}
.x11_c00348{left:754.649685px;}
@media print{
.v1_c00348{vertical-align:-48.153600pt;}
.v3_c00348{vertical-align:-22.827200pt;}
.v0_c00348{vertical-align:0.000000pt;}
.v2_c00348{vertical-align:7.620800pt;}
.ls8_c00348{letter-spacing:-2.371600pt;}
.ls13_c00348{letter-spacing:-2.202200pt;}
.ls12_c00348{letter-spacing:-1.670738pt;}
.ls17_c00348{letter-spacing:-1.382304pt;}
.lsf_c00348{letter-spacing:-1.111264pt;}
.ls18_c00348{letter-spacing:-0.460768pt;}
.lsb_c00348{letter-spacing:-0.115192pt;}
.ls3_c00348{letter-spacing:0.000000pt;}
.ls6_c00348{letter-spacing:0.121968pt;}
.ls15_c00348{letter-spacing:0.894432pt;}
.ls11_c00348{letter-spacing:0.975744pt;}
.lsa_c00348{letter-spacing:1.124816pt;}
.lsd_c00348{letter-spacing:1.734656pt;}
.ls1_c00348{letter-spacing:1.775312pt;}
.ls2_c00348{letter-spacing:2.310616pt;}
.ls16_c00348{letter-spacing:2.344496pt;}
.lsc_c00348{letter-spacing:2.676520pt;}
.ls5_c00348{letter-spacing:2.684000pt;}
.ls10_c00348{letter-spacing:3.126517pt;}
.ls14_c00348{letter-spacing:3.238400pt;}
.ls9_c00348{letter-spacing:3.354120pt;}
.ls7_c00348{letter-spacing:3.388000pt;}
.ls4_c00348{letter-spacing:12.672176pt;}
.ls0_c00348{letter-spacing:26.790720pt;}
.lse_c00348{letter-spacing:51.955376pt;}
.ws0_c00348{word-spacing:-20.294120pt;}
.ws6_c00348{word-spacing:-19.250616pt;}
.ws5_c00348{word-spacing:-18.715312pt;}
.ws2_c00348{word-spacing:-16.940000pt;}
.ws7_c00348{word-spacing:-16.479232pt;}
.ws4_c00348{word-spacing:-13.685306pt;}
.ws8_c00348{word-spacing:0.000000pt;}
.ws1_c00348{word-spacing:3.116960pt;}
.ws3_c00348{word-spacing:13.456213pt;}
._d_c00348{margin-left:-8.944320pt;}
._f_c00348{margin-left:-6.843760pt;}
._5_c00348{width:2.236080pt;}
._2_c00348{width:3.388000pt;}
._11_c00348{width:5.353040pt;}
._7_c00348{width:6.640480pt;}
._12_c00348{width:7.588240pt;}
._6_c00348{width:8.537760pt;}
._13_c00348{width:9.520812pt;}
._19_c00348{width:10.513360pt;}
._4_c00348{width:11.452320pt;}
._e_c00348{width:19.039680pt;}
._9_c00348{width:20.328000pt;}
._b_c00348{width:22.427680pt;}
._8_c00348{width:26.764320pt;}
._10_c00348{width:27.713840pt;}
._17_c00348{width:30.560640pt;}
._a_c00348{width:31.576160pt;}
._c_c00348{width:33.542960pt;}
._1_c00348{width:35.377760pt;}
._18_c00348{width:36.300880pt;}
._3_c00348{width:37.471280pt;}
._16_c00348{width:43.501920pt;}
._14_c00348{width:123.380664pt;}
._15_c00348{width:598.243712pt;}
._0_c00348{width:700.282880pt;}
.fs3_c00348{font-size:12.672176pt;}
.fsd_c00348{font-size:19.712000pt;}
.fs0_c00348{font-size:24.640000pt;}
.fs14_c00348{font-size:29.920000pt;}
.fs12_c00348{font-size:30.800000pt;}
.fsc_c00348{font-size:34.496000pt;}
.fs2_c00348{font-size:35.200000pt;}
.fs6_c00348{font-size:50.336000pt;}
.fs7_c00348{font-size:51.955376pt;}
.fs4_c00348{font-size:53.680000pt;}
.fs8_c00348{font-size:58.960000pt;}
.fsa_c00348{font-size:60.544176pt;}
.fsb_c00348{font-size:61.424176pt;}
.fs1_c00348{font-size:63.360000pt;}
.fsf_c00348{font-size:64.768000pt;}
.fs10_c00348{font-size:67.584176pt;}
.fs5_c00348{font-size:67.760000pt;}
.fs11_c00348{font-size:68.288000pt;}
.fs13_c00348{font-size:68.992176pt;}
.fs9_c00348{font-size:70.576000pt;}
.fse_c00348{font-size:100.672176pt;}
.y0_c00348{bottom:0.000000pt;}
.y1_c00348{bottom:64.000000pt;}
.y24_c00348{bottom:122.088120pt;}
.y23_c00348{bottom:128.740920pt;}
.y22_c00348{bottom:156.298120pt;}
.y21_c00348{bottom:185.448120pt;}
.y20_c00348{bottom:194.314120pt;}
.y1f_c00348{bottom:206.040120pt;}
.y1e_c00348{bottom:216.494520pt;}
.y1d_c00348{bottom:237.398920pt;}
.y1c_c00348{bottom:245.318920pt;}
.y1b_c00348{bottom:274.152120pt;}
.y1a_c00348{bottom:303.297720pt;}
.y19_c00348{bottom:331.809720pt;}
.y17_c00348{bottom:360.004920pt;}
.y18_c00348{bottom:360.317320pt;}
.y16_c00348{bottom:360.638520pt;}
.y15_c00348{bottom:389.784120pt;}
.y14_c00348{bottom:419.875720pt;}
.y13_c00348{bottom:476.582920pt;}
.y12_c00348{bottom:486.408120pt;}
.y11_c00348{bottom:507.633720pt;}
.y10_c00348{bottom:536.141320pt;}
.yf_c00348{bottom:564.970120pt;}
.ye_c00348{bottom:593.486520pt;}
.yd_c00348{bottom:621.994120pt;}
.yc_c00348{bottom:637.834120pt;}
.yb_c00348{bottom:653.357320pt;}
.ya_c00348{bottom:683.140920pt;}
.y9_c00348{bottom:711.969720pt;}
.y8_c00348{bottom:741.115320pt;}
.y6_c00348{bottom:798.453040pt;}
.y7_c00348{bottom:798.456120pt;}
.y5_c00348{bottom:827.284920pt;}
.y4_c00348{bottom:960.970120pt;}
.y3_c00348{bottom:969.523720pt;}
.y2_c00348{bottom:981.562120pt;}
.h3_c00348{height:8.439669pt;}
.h10_c00348{height:20.559000pt;}
.h2_c00348{height:25.698750pt;}
.h13_c00348{height:29.364844pt;}
.h11_c00348{height:32.123438pt;}
.h7_c00348{height:34.602280pt;}
.h6_c00348{height:52.498875pt;}
.h4_c00348{height:52.683984pt;}
.hb_c00348{height:60.284470pt;}
.h8_c00348{height:61.493438pt;}
.ha_c00348{height:63.145684pt;}
.hd_c00348{height:63.566250pt;}
.h5_c00348{height:66.502734pt;}
.hf_c00348{height:67.020938pt;}
.h9_c00348{height:69.266484pt;}
.he_c00348{height:70.488184pt;}
.h12_c00348{height:71.956684pt;}
.hc_c00348{height:104.997934pt;}
.h1_c00348{height:994.666667pt;}
.h0_c00348{height:1122.666667pt;}
.w1_c00348{width:702.666667pt;}
.w0_c00348{width:793.333333pt;}
.x0_c00348{left:0.000000pt;}
.x1_c00348{left:45.333333pt;}
.x6_c00348{left:91.513320pt;}
.x60_c00348{left:92.490120pt;}
.x50_c00348{left:94.157720pt;}
.x45_c00348{left:110.318920pt;}
.x6a_c00348{left:112.444120pt;}
.x12_c00348{left:120.764520pt;}
.x6e_c00348{left:122.295720pt;}
.x61_c00348{left:123.756520pt;}
.x7_c00348{left:130.255320pt;}
.x1d_c00348{left:140.436920pt;}
.x36_c00348{left:149.826520pt;}
.x4d_c00348{left:160.254520pt;}
.x6b_c00348{left:161.209320pt;}
.x49_c00348{left:169.164520pt;}
.x1e_c00348{left:170.392120pt;}
.x8_c00348{left:179.504520pt;}
.x65_c00348{left:180.798120pt;}
.x13_c00348{left:188.792920pt;}
.x6c_c00348{left:190.676120pt;}
.x1f_c00348{left:198.943720pt;}
.x62_c00348{left:200.140520pt;}
.x9_c00348{left:208.249720pt;}
.x4e_c00348{left:209.384920pt;}
.x6f_c00348{left:212.940120pt;}
.x14_c00348{left:217.142120pt;}
.x2a_c00348{left:219.196920pt;}
.x15_c00348{left:228.678920pt;}
.x4b_c00348{left:229.748120pt;}
.x37_c00348{left:231.283720pt;}
.xa_c00348{left:238.248920pt;}
.x5a_c00348{left:239.164120pt;}
.x3d_c00348{left:248.659320pt;}
.x5b_c00348{left:250.124520pt;}
.x66_c00348{left:251.435720pt;}
.x16_c00348{left:257.930120pt;}
.xb_c00348{left:267.174520pt;}
.x3e_c00348{left:268.322920pt;}
.x20_c00348{left:276.405720pt;}
.x38_c00348{left:277.954520pt;}
.x2b_c00348{left:287.313320pt;}
.x5e_c00348{left:288.250520pt;}
.x31_c00348{left:296.364120pt;}
.x56_c00348{left:299.034920pt;}
.x21_c00348{left:307.306920pt;}
.x5c_c00348{left:308.222120pt;}
.x17_c00348{left:317.162920pt;}
.x32_c00348{left:326.948520pt;}
.x5f_c00348{left:327.881320pt;}
.x51_c00348{left:328.796520pt;}
.xc_c00348{left:336.738520pt;}
.x57_c00348{left:338.018920pt;}
.x3f_c00348{left:346.070920pt;}
.x22_c00348{left:347.760520pt;}
.x33_c00348{left:356.578120pt;}
.x52_c00348{left:357.906920pt;}
.x18_c00348{left:366.200920pt;}
.x39_c00348{left:367.397720pt;}
.x2c_c00348{left:376.307720pt;}
.x40_c00348{left:377.244920pt;}
.x4a_c00348{left:385.992120pt;}
.x19_c00348{left:395.482920pt;}
.x63_c00348{left:397.203320pt;}
.x23_c00348{left:406.091320pt;}
.x41_c00348{left:415.762520pt;}
.x53_c00348{left:416.862520pt;}
.x72_c00348{left:424.236920pt;}
.x2d_c00348{left:425.376520pt;}
.x5d_c00348{left:426.282920pt;}
.x2_c00348{left:435.346920pt;}
.x68_c00348{left:436.486520pt;}
.xd_c00348{left:443.636520pt;}
.x42_c00348{left:445.664920pt;}
.x58_c00348{left:448.590920pt;}
.x64_c00348{left:450.892120pt;}
.x24_c00348{left:454.896120pt;}
.x2e_c00348{left:464.703720pt;}
.x1a_c00348{left:465.654120pt;}
.x34_c00348{left:473.455320pt;}
.x3a_c00348{left:474.999720pt;}
.x4c_c00348{left:476.060120pt;}
.x25_c00348{left:484.670920pt;}
.x1b_c00348{left:494.218920pt;}
.x26_c00348{left:504.008920pt;}
.x35_c00348{left:513.310520pt;}
.x69_c00348{left:515.066120pt;}
.x2f_c00348{left:516.003320pt;}
.x1c_c00348{left:523.162120pt;}
.x59_c00348{left:524.284120pt;}
.x46_c00348{left:532.934520pt;}
.x43_c00348{left:534.602120pt;}
.x4f_c00348{left:544.251320pt;}
.x27_c00348{left:551.889720pt;}
.x3b_c00348{left:553.126120pt;}
.x54_c00348{left:554.314120pt;}
.xe_c00348{left:563.818120pt;}
.x3c_c00348{left:572.750120pt;}
.x55_c00348{left:574.624520pt;}
.x6d_c00348{left:578.861720pt;}
.x47_c00348{left:582.342120pt;}
.x28_c00348{left:592.211320pt;}
.x70_c00348{left:593.597320pt;}
.x4_c00348{left:602.234520pt;}
.xf_c00348{left:611.540520pt;}
.x67_c00348{left:612.534920pt;}
.x5_c00348{left:613.863720pt;}
.x71_c00348{left:615.135320pt;}
.x29_c00348{left:620.965320pt;}
.x30_c00348{left:622.012520pt;}
.x44_c00348{left:632.268920pt;}
.x3_c00348{left:633.760520pt;}
.x10_c00348{left:651.958920pt;}
.x48_c00348{left:661.568520pt;}
.x11_c00348{left:670.799720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a16096b6e1d31c7be8d865ed.woff2')format("woff");}.ff1_c00349{font-family:ff1_c00349;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00349;src:url('chunks/assets/font_2f9c387239352ef6ede60522.woff2')format("woff");}.ff2_c00349{font-family:ff2_c00349;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00349;src:url('chunks/assets/font_fffe591aa912744d15d77885.woff2')format("woff");}.ff3_c00349{font-family:ff3_c00349;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00349;src:url('chunks/assets/font_0e9970c7060f10fb7b596ff9.woff2')format("woff");}.ff4_c00349{font-family:ff4_c00349;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mca_c00349{transform:matrix(0.087838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087838,0.000000,0.000000,0.250000,0,0);}
.m7c_c00349{transform:matrix(0.097222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097222,0.000000,0.000000,0.250000,0,0);}
.m54_c00349{transform:matrix(0.121622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121622,0.000000,0.000000,0.250000,0,0);}
.mac_c00349{transform:matrix(0.129807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129807,0.000000,0.000000,0.250000,0,0);}
.m56_c00349{transform:matrix(0.148648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148648,0.000000,0.000000,0.250000,0,0);}
.m7e_c00349{transform:matrix(0.152777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152777,0.000000,0.000000,0.250000,0,0);}
.mc4_c00349{transform:matrix(0.156395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156395,0.000000,0.000000,0.250000,0,0);}
.m27_c00349{transform:matrix(0.168329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168329,0.000000,0.000000,0.250000,0,0);}
.m1c_c00349{transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);}
.m55_c00349{transform:matrix(0.185811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185811,0.000000,0.000000,0.250000,0,0);}
.m57_c00349{transform:matrix(0.189188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189188,0.000000,0.000000,0.250000,0,0);}
.m62_c00349{transform:matrix(0.190239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190239,0.000000,0.000000,0.250000,0,0);}
.ma7_c00349{transform:matrix(0.191775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191775,0.000000,0.000000,0.250000,0,0);}
.m1d_c00349{transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);}
.m6a_c00349{transform:matrix(0.199893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199893,0.000000,0.000000,0.250000,0,0);}
.m7f_c00349{transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);}
.mcb_c00349{transform:matrix(0.204204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204204,0.000000,0.000000,0.250000,0,0);}
.m49_c00349{transform:matrix(0.216368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216368,0.000000,0.000000,0.250000,0,0);}
.mc5_c00349{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);}
.md_c00349{transform:matrix(0.225911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225911,0.000000,0.000000,0.250000,0,0);}
.m7d_c00349{transform:matrix(0.226852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226852,0.000000,0.000000,0.250000,0,0);}
.mc7_c00349{transform:matrix(0.229635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229635,0.000000,0.000000,0.250000,0,0);}
.ma2_c00349{transform:matrix(0.233963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233963,0.000000,0.000000,0.250000,0,0);}
.m10_c00349{transform:matrix(0.238140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238140,0.000000,0.000000,0.250000,0,0);}
.mc8_c00349{transform:matrix(0.245117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245117,0.000000,0.000000,0.250000,0,0);}
.m2_c00349{transform:matrix(0.249984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249984,0.000000,0.000000,0.250000,0,0);}
.m0_c00349{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m6_c00349{transform:matrix(0.251734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251734,0.000000,0.000000,0.250000,0,0);}
.m3_c00349{transform:matrix(0.252969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252969,0.000000,0.000000,0.250000,0,0);}
.m68_c00349{transform:matrix(0.253407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253407,0.000000,0.000000,0.250000,0,0);}
.m17_c00349{transform:matrix(0.253692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253692,0.000000,0.000000,0.250000,0,0);}
.m88_c00349{transform:matrix(0.255106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255106,0.000000,0.000000,0.250000,0,0);}
.m6c_c00349{transform:matrix(0.255699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255699,0.000000,0.000000,0.250000,0,0);}
.mc3_c00349{transform:matrix(0.260433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260433,0.000000,0.000000,0.250000,0,0);}
.m5c_c00349{transform:matrix(0.262132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262132,0.000000,0.000000,0.250000,0,0);}
.m42_c00349{transform:matrix(0.262405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262405,0.000000,0.000000,0.250000,0,0);}
.m44_c00349{transform:matrix(0.263016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263016,0.000000,0.000000,0.250000,0,0);}
.m1e_c00349{transform:matrix(0.267904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267904,0.000000,0.000000,0.250000,0,0);}
.m22_c00349{transform:matrix(0.269537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269537,0.000000,0.000000,0.250000,0,0);}
.ma4_c00349{transform:matrix(0.270312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270312,0.000000,0.000000,0.250000,0,0);}
.m66_c00349{transform:matrix(0.270933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270933,0.000000,0.000000,0.250000,0,0);}
.m3f_c00349{transform:matrix(0.271264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271264,0.000000,0.000000,0.250000,0,0);}
.m4f_c00349{transform:matrix(0.277021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277021,0.000000,0.000000,0.250000,0,0);}
.m26_c00349{transform:matrix(0.277353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277353,0.000000,0.000000,0.250000,0,0);}
.m67_c00349{transform:matrix(0.278296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278296,0.000000,0.000000,0.250000,0,0);}
.m34_c00349{transform:matrix(0.278381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278381,0.000000,0.000000,0.250000,0,0);}
.m70_c00349{transform:matrix(0.278462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278462,0.000000,0.000000,0.250000,0,0);}
.m31_c00349{transform:matrix(0.278732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278732,0.000000,0.000000,0.250000,0,0);}
.mb4_c00349{transform:matrix(0.279125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279125,0.000000,0.000000,0.250000,0,0);}
.m29_c00349{transform:matrix(0.279377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279377,0.000000,0.000000,0.250000,0,0);}
.m1b_c00349{transform:matrix(0.279582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279582,0.000000,0.000000,0.250000,0,0);}
.m51_c00349{transform:matrix(0.279709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279709,0.000000,0.000000,0.250000,0,0);}
.m24_c00349{transform:matrix(0.281227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281227,0.000000,0.000000,0.250000,0,0);}
.m4e_c00349{transform:matrix(0.281630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281630,0.000000,0.000000,0.250000,0,0);}
.m16_c00349{transform:matrix(0.281871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281871,0.000000,0.000000,0.250000,0,0);}
.m9_c00349{transform:matrix(0.282209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282209,0.000000,0.000000,0.250000,0,0);}
.m4a_c00349{transform:matrix(0.282439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282439,0.000000,0.000000,0.250000,0,0);}
.m77_c00349{transform:matrix(0.282644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282644,0.000000,0.000000,0.250000,0,0);}
.mcc_c00349{transform:matrix(0.283291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283291,0.000000,0.000000,0.250000,0,0);}
.m1f_c00349{transform:matrix(0.284110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284110,0.000000,0.000000,0.250000,0,0);}
.m3b_c00349{transform:matrix(0.284704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284704,0.000000,0.000000,0.250000,0,0);}
.mb6_c00349{transform:matrix(0.284781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284781,0.000000,0.000000,0.250000,0,0);}
.m53_c00349{transform:matrix(0.285059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285059,0.000000,0.000000,0.250000,0,0);}
.m92_c00349{transform:matrix(0.285712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285712,0.000000,0.000000,0.250000,0,0);}
.m9f_c00349{transform:matrix(0.286820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286820,0.000000,0.000000,0.250000,0,0);}
.m1a_c00349{transform:matrix(0.287249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287249,0.000000,0.000000,0.250000,0,0);}
.m43_c00349{transform:matrix(0.287337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287337,0.000000,0.000000,0.250000,0,0);}
.m47_c00349{transform:matrix(0.288687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288687,0.000000,0.000000,0.250000,0,0);}
.m12_c00349{transform:matrix(0.289094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289094,0.000000,0.000000,0.250000,0,0);}
.m60_c00349{transform:matrix(0.289699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289699,0.000000,0.000000,0.250000,0,0);}
.m86_c00349{transform:matrix(0.291788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291788,0.000000,0.000000,0.250000,0,0);}
.m2c_c00349{transform:matrix(0.292067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292067,0.000000,0.000000,0.250000,0,0);}
.mb_c00349{transform:matrix(0.292287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292287,0.000000,0.000000,0.250000,0,0);}
.m9a_c00349{transform:matrix(0.292759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292759,0.000000,0.000000,0.250000,0,0);}
.mab_c00349{transform:matrix(0.293037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293037,0.000000,0.000000,0.250000,0,0);}
.m35_c00349{transform:matrix(0.294298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294298,0.000000,0.000000,0.250000,0,0);}
.m6f_c00349{transform:matrix(0.294456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294456,0.000000,0.000000,0.250000,0,0);}
.m81_c00349{transform:matrix(0.294693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294693,0.000000,0.000000,0.250000,0,0);}
.m93_c00349{transform:matrix(0.295197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295197,0.000000,0.000000,0.250000,0,0);}
.m8a_c00349{transform:matrix(0.295442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295442,0.000000,0.000000,0.250000,0,0);}
.m4b_c00349{transform:matrix(0.296531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296531,0.000000,0.000000,0.250000,0,0);}
.mba_c00349{transform:matrix(0.297305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297305,0.000000,0.000000,0.250000,0,0);}
.m5e_c00349{transform:matrix(0.297381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297381,0.000000,0.000000,0.250000,0,0);}
.m9e_c00349{transform:matrix(0.299119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299119,0.000000,0.000000,0.250000,0,0);}
.m76_c00349{transform:matrix(0.299326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299326,0.000000,0.000000,0.250000,0,0);}
.m38_c00349{transform:matrix(0.299415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299415,0.000000,0.000000,0.250000,0,0);}
.m8f_c00349{transform:matrix(0.299539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299539,0.000000,0.000000,0.250000,0,0);}
.mb1_c00349{transform:matrix(0.300048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300048,0.000000,0.000000,0.250000,0,0);}
.m71_c00349{transform:matrix(0.300584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300584,0.000000,0.000000,0.250000,0,0);}
.m33_c00349{transform:matrix(0.300838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300838,0.000000,0.000000,0.250000,0,0);}
.m3c_c00349{transform:matrix(0.301473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301473,0.000000,0.000000,0.250000,0,0);}
.mb9_c00349{transform:matrix(0.301474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301474,0.000000,0.000000,0.250000,0,0);}
.m1_c00349{transform:matrix(0.301505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301505,0.000000,0.000000,0.250000,0,0);}
.m5_c00349{transform:matrix(0.301813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301813,0.000000,0.000000,0.250000,0,0);}
.mad_c00349{transform:matrix(0.302087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302087,0.000000,0.000000,0.250000,0,0);}
.m41_c00349{transform:matrix(0.302300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302300,0.000000,0.000000,0.250000,0,0);}
.m2a_c00349{transform:matrix(0.302415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302415,0.000000,0.000000,0.250000,0,0);}
.mc1_c00349{transform:matrix(0.302479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302479,0.000000,0.000000,0.250000,0,0);}
.m59_c00349{transform:matrix(0.303096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303096,0.000000,0.000000,0.250000,0,0);}
.m2e_c00349{transform:matrix(0.303643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303643,0.000000,0.000000,0.250000,0,0);}
.m5a_c00349{transform:matrix(0.304891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304891,0.000000,0.000000,0.250000,0,0);}
.m18_c00349{transform:matrix(0.305952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305952,0.000000,0.000000,0.250000,0,0);}
.m8b_c00349{transform:matrix(0.307650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307650,0.000000,0.000000,0.250000,0,0);}
.m23_c00349{transform:matrix(0.307814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307814,0.000000,0.000000,0.250000,0,0);}
.m8c_c00349{transform:matrix(0.308170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308170,0.000000,0.000000,0.250000,0,0);}
.m3d_c00349{transform:matrix(0.308480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308480,0.000000,0.000000,0.250000,0,0);}
.m9c_c00349{transform:matrix(0.308563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308563,0.000000,0.000000,0.250000,0,0);}
.mb8_c00349{transform:matrix(0.309012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309012,0.000000,0.000000,0.250000,0,0);}
.m89_c00349{transform:matrix(0.311944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311944,0.000000,0.000000,0.250000,0,0);}
.m7a_c00349{transform:matrix(0.312137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312137,0.000000,0.000000,0.250000,0,0);}
.m9b_c00349{transform:matrix(0.312409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312409,0.000000,0.000000,0.250000,0,0);}
.mc9_c00349{transform:matrix(0.312539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312539,0.000000,0.000000,0.250000,0,0);}
.m69_c00349{transform:matrix(0.312845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312845,0.000000,0.000000,0.250000,0,0);}
.m90_c00349{transform:matrix(0.313268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313268,0.000000,0.000000,0.250000,0,0);}
.m99_c00349{transform:matrix(0.313652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313652,0.000000,0.000000,0.250000,0,0);}
.ma9_c00349{transform:matrix(0.313924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313924,0.000000,0.000000,0.250000,0,0);}
.m3e_c00349{transform:matrix(0.314097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314097,0.000000,0.000000,0.250000,0,0);}
.m20_c00349{transform:matrix(0.314300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314300,0.000000,0.000000,0.250000,0,0);}
.m61_c00349{transform:matrix(0.314537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314537,0.000000,0.000000,0.250000,0,0);}
.m4c_c00349{transform:matrix(0.314857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314857,0.000000,0.000000,0.250000,0,0);}
.m80_c00349{transform:matrix(0.315218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315218,0.000000,0.000000,0.250000,0,0);}
.m37_c00349{transform:matrix(0.315496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315496,0.000000,0.000000,0.250000,0,0);}
.m2d_c00349{transform:matrix(0.315642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315642,0.000000,0.000000,0.250000,0,0);}
.me_c00349{transform:matrix(0.315973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315973,0.000000,0.000000,0.250000,0,0);}
.mbf_c00349{transform:matrix(0.316440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316440,0.000000,0.000000,0.250000,0,0);}
.m39_c00349{transform:matrix(0.316928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316928,0.000000,0.000000,0.250000,0,0);}
.m2b_c00349{transform:matrix(0.317295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317295,0.000000,0.000000,0.250000,0,0);}
.m48_c00349{transform:matrix(0.317708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317708,0.000000,0.000000,0.250000,0,0);}
.m74_c00349{transform:matrix(0.320227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320227,0.000000,0.000000,0.250000,0,0);}
.m4_c00349{transform:matrix(0.320317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320317,0.000000,0.000000,0.250000,0,0);}
.mb0_c00349{transform:matrix(0.320764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320764,0.000000,0.000000,0.250000,0,0);}
.m30_c00349{transform:matrix(0.320798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320798,0.000000,0.000000,0.250000,0,0);}
.mb3_c00349{transform:matrix(0.320864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320864,0.000000,0.000000,0.250000,0,0);}
.m15_c00349{transform:matrix(0.321240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321240,0.000000,0.000000,0.250000,0,0);}
.mb5_c00349{transform:matrix(0.321632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321632,0.000000,0.000000,0.250000,0,0);}
.m94_c00349{transform:matrix(0.323579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323579,0.000000,0.000000,0.250000,0,0);}
.m72_c00349{transform:matrix(0.323900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323900,0.000000,0.000000,0.250000,0,0);}
.m95_c00349{transform:matrix(0.324368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324368,0.000000,0.000000,0.250000,0,0);}
.m40_c00349{transform:matrix(0.324834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324834,0.000000,0.000000,0.250000,0,0);}
.maf_c00349{transform:matrix(0.325583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325583,0.000000,0.000000,0.250000,0,0);}
.m5d_c00349{transform:matrix(0.326307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326307,0.000000,0.000000,0.250000,0,0);}
.mc2_c00349{transform:matrix(0.326699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326699,0.000000,0.000000,0.250000,0,0);}
.m19_c00349{transform:matrix(0.327238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327238,0.000000,0.000000,0.250000,0,0);}
.mbc_c00349{transform:matrix(0.327705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327705,0.000000,0.000000,0.250000,0,0);}
.m46_c00349{transform:matrix(0.327972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327972,0.000000,0.000000,0.250000,0,0);}
.m65_c00349{transform:matrix(0.328340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328340,0.000000,0.000000,0.250000,0,0);}
.ma6_c00349{transform:matrix(0.328560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328560,0.000000,0.000000,0.250000,0,0);}
.m96_c00349{transform:matrix(0.329613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329613,0.000000,0.000000,0.250000,0,0);}
.m11_c00349{transform:matrix(0.329779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329779,0.000000,0.000000,0.250000,0,0);}
.m7b_c00349{transform:matrix(0.331356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331356,0.000000,0.000000,0.250000,0,0);}
.m28_c00349{transform:matrix(0.332961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332961,0.000000,0.000000,0.250000,0,0);}
.m83_c00349{transform:matrix(0.333314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333314,0.000000,0.000000,0.250000,0,0);}
.mbb_c00349{transform:matrix(0.333445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333445,0.000000,0.000000,0.250000,0,0);}
.m79_c00349{transform:matrix(0.333729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333729,0.000000,0.000000,0.250000,0,0);}
.m7_c00349{transform:matrix(0.334333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334333,0.000000,0.000000,0.250000,0,0);}
.m6b_c00349{transform:matrix(0.334382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334382,0.000000,0.000000,0.250000,0,0);}
.mc0_c00349{transform:matrix(0.334580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334580,0.000000,0.000000,0.250000,0,0);}
.m82_c00349{transform:matrix(0.335465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335465,0.000000,0.000000,0.250000,0,0);}
.m52_c00349{transform:matrix(0.336703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336703,0.000000,0.000000,0.250000,0,0);}
.m78_c00349{transform:matrix(0.336857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336857,0.000000,0.000000,0.250000,0,0);}
.m98_c00349{transform:matrix(0.337235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337235,0.000000,0.000000,0.250000,0,0);}
.m5b_c00349{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);}
.m6e_c00349{transform:matrix(0.338353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338353,0.000000,0.000000,0.250000,0,0);}
.m58_c00349{transform:matrix(0.338729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338729,0.000000,0.000000,0.250000,0,0);}
.ma_c00349{transform:matrix(0.338734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338734,0.000000,0.000000,0.250000,0,0);}
.m14_c00349{transform:matrix(0.339045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339045,0.000000,0.000000,0.250000,0,0);}
.m84_c00349{transform:matrix(0.339169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339169,0.000000,0.000000,0.250000,0,0);}
.m9d_c00349{transform:matrix(0.341808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341808,0.000000,0.000000,0.250000,0,0);}
.m21_c00349{transform:matrix(0.341840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341840,0.000000,0.000000,0.250000,0,0);}
.m8_c00349{transform:matrix(0.342205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342205,0.000000,0.000000,0.250000,0,0);}
.m97_c00349{transform:matrix(0.343526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343526,0.000000,0.000000,0.250000,0,0);}
.m36_c00349{transform:matrix(0.343827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343827,0.000000,0.000000,0.250000,0,0);}
.ma0_c00349{transform:matrix(0.344519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344519,0.000000,0.000000,0.250000,0,0);}
.m5f_c00349{transform:matrix(0.344626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344626,0.000000,0.000000,0.250000,0,0);}
.ma5_c00349{transform:matrix(0.346479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346479,0.000000,0.000000,0.250000,0,0);}
.m45_c00349{transform:matrix(0.346667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346667,0.000000,0.000000,0.250000,0,0);}
.m25_c00349{transform:matrix(0.348005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348005,0.000000,0.000000,0.250000,0,0);}
.m6d_c00349{transform:matrix(0.348458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348458,0.000000,0.000000,0.250000,0,0);}
.m63_c00349{transform:matrix(0.348513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348513,0.000000,0.000000,0.250000,0,0);}
.m73_c00349{transform:matrix(0.349776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349776,0.000000,0.000000,0.250000,0,0);}
.ma3_c00349{transform:matrix(0.350827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350827,0.000000,0.000000,0.250000,0,0);}
.m4d_c00349{transform:matrix(0.351066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351066,0.000000,0.000000,0.250000,0,0);}
.mbd_c00349{transform:matrix(0.351597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351597,0.000000,0.000000,0.250000,0,0);}
.mb2_c00349{transform:matrix(0.351949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351949,0.000000,0.000000,0.250000,0,0);}
.ma8_c00349{transform:matrix(0.353016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353016,0.000000,0.000000,0.250000,0,0);}
.m8e_c00349{transform:matrix(0.353997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353997,0.000000,0.000000,0.250000,0,0);}
.mb7_c00349{transform:matrix(0.354575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354575,0.000000,0.000000,0.250000,0,0);}
.m75_c00349{transform:matrix(0.354878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354878,0.000000,0.000000,0.250000,0,0);}
.mae_c00349{transform:matrix(0.356876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356876,0.000000,0.000000,0.250000,0,0);}
.m85_c00349{transform:matrix(0.359197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359197,0.000000,0.000000,0.250000,0,0);}
.mf_c00349{transform:matrix(0.359554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359554,0.000000,0.000000,0.250000,0,0);}
.mbe_c00349{transform:matrix(0.359699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359699,0.000000,0.000000,0.250000,0,0);}
.mc6_c00349{transform:matrix(0.361455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361455,0.000000,0.000000,0.250000,0,0);}
.m50_c00349{transform:matrix(0.361821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361821,0.000000,0.000000,0.250000,0,0);}
.m3a_c00349{transform:matrix(0.366091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366091,0.000000,0.000000,0.250000,0,0);}
.m91_c00349{transform:matrix(0.370404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370404,0.000000,0.000000,0.250000,0,0);}
.m87_c00349{transform:matrix(0.372387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372387,0.000000,0.000000,0.250000,0,0);}
.m13_c00349{transform:matrix(0.376903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376903,0.000000,0.000000,0.250000,0,0);}
.mc_c00349{transform:matrix(0.383401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383401,0.000000,0.000000,0.250000,0,0);}
.m2f_c00349{transform:matrix(0.389921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389921,0.000000,0.000000,0.250000,0,0);}
.m8d_c00349{transform:matrix(0.396126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396126,0.000000,0.000000,0.250000,0,0);}
.m64_c00349{transform:matrix(0.408906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408906,0.000000,0.000000,0.250000,0,0);}
.ma1_c00349{transform:matrix(0.427816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427816,0.000000,0.000000,0.250000,0,0);}
.maa_c00349{transform:matrix(0.440009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440009,0.000000,0.000000,0.250000,0,0);}
.m32_c00349{transform:matrix(0.450540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450540,0.000000,0.000000,0.250000,0,0);}
.v0_c00349{vertical-align:0.000000px;}
.ls3_c00349{letter-spacing:-2.889817px;}
.ls5_c00349{letter-spacing:-2.543317px;}
.ls9_c00349{letter-spacing:-2.383451px;}
.ls10_c00349{letter-spacing:-1.947330px;}
.lsf_c00349{letter-spacing:-0.036333px;}
.ls1_c00349{letter-spacing:0.000000px;}
.lsc_c00349{letter-spacing:0.632196px;}
.ls7_c00349{letter-spacing:1.213526px;}
.lsa_c00349{letter-spacing:1.736722px;}
.lse_c00349{letter-spacing:3.573900px;}
.ls4_c00349{letter-spacing:3.633310px;}
.lsd_c00349{letter-spacing:3.722400px;}
.ls2_c00349{letter-spacing:4.128310px;}
.ls8_c00349{letter-spacing:4.197610px;}
.ls0_c00349{letter-spacing:10.464014px;}
.ls6_c00349{letter-spacing:51.321798px;}
.lsb_c00349{letter-spacing:52.747398px;}
.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;}
}
.ws3_c00349{word-spacing:-19.380075px;}
.ws0_c00349{word-spacing:-18.166550px;}
.ws1_c00349{word-spacing:-3.269899px;}
.ws7_c00349{word-spacing:0.000000px;}
.ws4_c00349{word-spacing:0.872063px;}
.ws5_c00349{word-spacing:2.034543px;}
.ws6_c00349{word-spacing:5.668041px;}
.ws2_c00349{word-spacing:6.830499px;}
._14_c00349{margin-left:-20.709898px;}
._12_c00349{margin-left:-8.146218px;}
._b_c00349{margin-left:-7.121224px;}
._0_c00349{margin-left:-2.251260px;}
._6_c00349{width:1.962037px;}
._9_c00349{width:3.488067px;}
._a_c00349{width:6.328080px;}
._4_c00349{width:7.702508px;}
._d_c00349{width:9.955143px;}
._7_c00349{width:12.062061px;}
._1_c00349{width:13.951993px;}
._13_c00349{width:15.841287px;}
._10_c00349{width:20.055728px;}
._2_c00349{width:23.398397px;}
._f_c00349{width:25.287911px;}
._16_c00349{width:26.669357px;}
._c_c00349{width:32.481752px;}
._8_c00349{width:35.323418px;}
._3_c00349{width:36.333300px;}
._e_c00349{width:38.077045px;}
._15_c00349{width:40.059817px;}
._5_c00349{width:41.817501px;}
._11_c00349{width:48.613857px;}
.fc0_c00349{color:transparent;}
.fse_c00349{font-size:22.176000px;}
.fs9_c00349{font-size:26.928000px;}
.fs0_c00349{font-size:27.720000px;}
.fs1_c00349{font-size:34.650000px;}
.fs4_c00349{font-size:51.321798px;}
.fsa_c00349{font-size:52.747398px;}
.fsd_c00349{font-size:55.638000px;}
.fs5_c00349{font-size:60.192000px;}
.fsb_c00349{font-size:71.478000px;}
.fs3_c00349{font-size:72.666198px;}
.fs7_c00349{font-size:74.448000px;}
.fs6_c00349{font-size:74.844000px;}
.fsc_c00349{font-size:76.824000px;}
.fs2_c00349{font-size:82.566198px;}
.fs8_c00349{font-size:83.952198px;}
.y0_c00349{bottom:0.000000px;}
.y1_c00349{bottom:76.500000px;}
.y20_c00349{bottom:77.607135px;}
.y1f_c00349{bottom:144.961785px;}
.y1e_c00349{bottom:176.329935px;}
.y1d_c00349{bottom:210.544335px;}
.y1c_c00349{bottom:243.684585px;}
.y1b_c00349{bottom:277.186185px;}
.y1a_c00349{bottom:341.343135px;}
.y19_c00349{bottom:374.131935px;}
.y18_c00349{bottom:407.277135px;}
.y17_c00349{bottom:439.704585px;}
.y16_c00349{bottom:473.567535px;}
.y15_c00349{bottom:505.638585px;}
.y14_c00349{bottom:538.075935px;}
.y13_c00349{bottom:570.864735px;}
.y12_c00349{bottom:604.004985px;}
.y11_c00349{bottom:699.881535px;}
.y10_c00349{bottom:732.670335px;}
.yf_c00349{bottom:764.741385px;}
.ya_c00349{bottom:790.758585px;}
.y9_c00349{bottom:797.173785px;}
.ye_c00349{bottom:797.535135px;}
.yd_c00349{bottom:809.291385px;}
.yc_c00349{bottom:815.711535px;}
.y8_c00349{bottom:829.606185px;}
.yb_c00349{bottom:829.962585px;}
.y2_c00349{bottom:834.600735px;}
.y7_c00349{bottom:894.827385px;}
.y6_c00349{bottom:929.041785px;}
.y5_c00349{bottom:1022.062185px;}
.y4_c00349{bottom:1079.798985px;}
.y3_c00349{bottom:1099.044585px;}
.hf_c00349{height:23.128875px;}
.h2_c00349{height:28.911094px;}
.h6_c00349{height:34.180317px;}
.hb_c00349{height:35.129767px;}
.h3_c00349{height:36.138867px;}
.he_c00349{height:54.605654px;}
.h7_c00349{height:62.778375px;}
.hc_c00349{height:70.116847px;}
.h5_c00349{height:71.317899px;}
.h9_c00349{height:73.066641px;}
.hd_c00349{height:75.398555px;}
.h8_c00349{height:78.059953px;}
.h4_c00349{height:81.034208px;}
.ha_c00349{height:82.394491px;}
.h1_c00349{height:1110.000000px;}
.h0_c00349{height:1263.000000px;}
.w1_c00349{width:775.500000px;}
.w0_c00349{width:892.500000px;}
.x0_c00349{left:0.000000px;}
.x2_c00349{left:52.981485px;}
.x1_c00349{left:58.500000px;}
.x22_c00349{left:97.798785px;}
.x7_c00349{left:99.590685px;}
.x6d_c00349{left:100.649985px;}
.x2e_c00349{left:108.842235px;}
.x58_c00349{left:120.187635px;}
.x71_c00349{left:122.429985px;}
.x2f_c00349{left:130.879635px;}
.x66_c00349{left:132.325035px;}
.x47_c00349{left:141.497385px;}
.x72_c00349{left:143.571435px;}
.x3b_c00349{left:152.030985px;}
.x19_c00349{left:153.129885px;}
.x73_c00349{left:162.836835px;}
.x8_c00349{left:164.024835px;}
.x4b_c00349{left:175.048485px;}
.x6e_c00349{left:176.142435px;}
.x6_c00349{left:181.285485px;}
.x1a_c00349{left:185.799885px;}
.x48_c00349{left:197.249235px;}
.x74_c00349{left:201.639885px;}
.x9_c00349{left:207.079935px;}
.x3c_c00349{left:208.248135px;}
.x75_c00349{left:209.366835px;}
.x38_c00349{left:218.623335px;}
.x11_c00349{left:220.009335px;}
.x30_c00349{left:229.048035px;}
.x39_c00349{left:230.339985px;}
.x6f_c00349{left:237.497685px;}
.x56_c00349{left:240.155835px;}
.x23_c00349{left:241.274535px;}
.x67_c00349{left:242.769435px;}
.xa_c00349{left:252.100185px;}
.x31_c00349{left:253.718835px;}
.x1b_c00349{left:262.549635px;}
.x50_c00349{left:263.678235px;}
.x49_c00349{left:268.920285px;}
.x24_c00349{left:273.835635px;}
.x3d_c00349{left:283.993035px;}
.x12_c00349{left:285.621585px;}
.x59_c00349{left:295.764135px;}
.x51_c00349{left:297.001635px;}
.x32_c00349{left:307.074885px;}
.x6a_c00349{left:308.431185px;}
.x5a_c00349{left:314.306835px;}
.xb_c00349{left:318.415335px;}
.x13_c00349{left:329.453835px;}
.x76_c00349{left:330.993285px;}
.x61_c00349{left:332.943585px;}
.xc_c00349{left:339.947835px;}
.x41_c00349{left:341.898135px;}
.x77_c00349{left:348.253935px;}
.x1c_c00349{left:352.278285px;}
.x68_c00349{left:354.312735px;}
.x33_c00349{left:361.975335px;}
.x4c_c00349{left:363.876135px;}
.x25_c00349{left:374.048385px;}
.x5b_c00349{left:375.404685px;}
.x4a_c00349{left:384.181035px;}
.x63_c00349{left:385.705635px;}
.xd_c00349{left:396.323385px;}
.x3e_c00349{left:405.565035px;}
.x1d_c00349{left:407.446035px;}
.xe_c00349{left:417.801435px;}
.x14_c00349{left:418.826085px;}
.x52_c00349{left:429.166635px;}
.x1e_c00349{left:440.175435px;}
.x15_c00349{left:451.006035px;}
.x4d_c00349{left:452.075235px;}
.x53_c00349{left:461.480235px;}
.x69_c00349{left:463.400835px;}
.x57_c00349{left:465.514485px;}
.x16_c00349{left:473.404785px;}
.x1f_c00349{left:484.809585px;}
.x26_c00349{left:496.610385px;}
.x17_c00349{left:506.223285px;}
.x5e_c00349{left:507.317235px;}
.x79_c00349{left:514.187835px;}
.x27_c00349{left:517.618185px;}
.x20_c00349{left:528.691335px;}
.x5c_c00349{left:529.909035px;}
.x18_c00349{left:539.333835px;}
.x78_c00349{left:541.006935px;}
.x34_c00349{left:542.135535px;}
.x3f_c00349{left:550.416885px;}
.x21_c00349{left:551.466285px;}
.x35_c00349{left:561.470235px;}
.x42_c00349{left:562.549335px;}
.xf_c00349{left:572.117685px;}
.x5f_c00349{left:573.879885px;}
.x28_c00349{left:583.131435px;}
.x43_c00349{left:584.274885px;}
.x29_c00349{left:594.823335px;}
.x3a_c00349{left:606.267735px;}
.x62_c00349{left:607.767585px;}
.x2c_c00349{left:616.949835px;}
.x64_c00349{left:618.464535px;}
.x70_c00349{left:620.612835px;}
.x36_c00349{left:627.785385px;}
.x4e_c00349{left:629.552535px;}
.x2a_c00349{left:638.977335px;}
.x60_c00349{left:640.902885px;}
.x2d_c00349{left:650.194035px;}
.x6b_c00349{left:651.263235px;}
.x37_c00349{left:660.420735px;}
.x44_c00349{left:661.935435px;}
.x40_c00349{left:664.039185px;}
.x4_c00349{left:671.855235px;}
.x54_c00349{left:673.741185px;}
.x65_c00349{left:683.725335px;}
.x6c_c00349{left:684.745035px;}
.x45_c00349{left:693.862935px;}
.x5_c00349{left:695.229135px;}
.x3_c00349{left:701.862135px;}
.x4f_c00349{left:706.025085px;}
.x5d_c00349{left:708.514935px;}
.x2b_c00349{left:710.752335px;}
.x10_c00349{left:717.905085px;}
.x55_c00349{left:727.894185px;}
.x46_c00349{left:738.942585px;}
@media print{
.v0_c00349{vertical-align:0.000000pt;}
.ls3_c00349{letter-spacing:-2.568726pt;}
.ls5_c00349{letter-spacing:-2.260726pt;}
.ls9_c00349{letter-spacing:-2.118623pt;}
.ls10_c00349{letter-spacing:-1.730960pt;}
.lsf_c00349{letter-spacing:-0.032296pt;}
.ls1_c00349{letter-spacing:0.000000pt;}
.lsc_c00349{letter-spacing:0.561952pt;}
.ls7_c00349{letter-spacing:1.078689pt;}
.lsa_c00349{letter-spacing:1.543753pt;}
.lse_c00349{letter-spacing:3.176800pt;}
.ls4_c00349{letter-spacing:3.229609pt;}
.lsd_c00349{letter-spacing:3.308800pt;}
.ls2_c00349{letter-spacing:3.669609pt;}
.ls8_c00349{letter-spacing:3.731209pt;}
.ls0_c00349{letter-spacing:9.301346pt;}
.ls6_c00349{letter-spacing:45.619376pt;}
.lsb_c00349{letter-spacing:46.886576pt;}
.ws3_c00349{word-spacing:-17.226733pt;}
.ws0_c00349{word-spacing:-16.148044pt;}
.ws1_c00349{word-spacing:-2.906576pt;}
.ws7_c00349{word-spacing:0.000000pt;}
.ws4_c00349{word-spacing:0.775168pt;}
.ws5_c00349{word-spacing:1.808483pt;}
.ws6_c00349{word-spacing:5.038259pt;}
.ws2_c00349{word-spacing:6.071555pt;}
._14_c00349{margin-left:-18.408798pt;}
._12_c00349{margin-left:-7.241083pt;}
._b_c00349{margin-left:-6.329977pt;}
._0_c00349{margin-left:-2.001120pt;}
._6_c00349{width:1.744033pt;}
._9_c00349{width:3.100504pt;}
._a_c00349{width:5.624960pt;}
._4_c00349{width:6.846674pt;}
._d_c00349{width:8.849016pt;}
._7_c00349{width:10.721832pt;}
._1_c00349{width:12.401772pt;}
._13_c00349{width:14.081144pt;}
._10_c00349{width:17.827314pt;}
._2_c00349{width:20.798575pt;}
._f_c00349{width:22.478143pt;}
._16_c00349{width:23.706095pt;}
._c_c00349{width:28.872668pt;}
._8_c00349{width:31.398593pt;}
._3_c00349{width:32.296266pt;}
._e_c00349{width:33.846262pt;}
._15_c00349{width:35.608726pt;}
._5_c00349{width:37.171112pt;}
._11_c00349{width:43.212317pt;}
.fse_c00349{font-size:19.712000pt;}
.fs9_c00349{font-size:23.936000pt;}
.fs0_c00349{font-size:24.640000pt;}
.fs1_c00349{font-size:30.800000pt;}
.fs4_c00349{font-size:45.619376pt;}
.fsa_c00349{font-size:46.886576pt;}
.fsd_c00349{font-size:49.456000pt;}
.fs5_c00349{font-size:53.504000pt;}
.fsb_c00349{font-size:63.536000pt;}
.fs3_c00349{font-size:64.592176pt;}
.fs7_c00349{font-size:66.176000pt;}
.fs6_c00349{font-size:66.528000pt;}
.fsc_c00349{font-size:68.288000pt;}
.fs2_c00349{font-size:73.392176pt;}
.fs8_c00349{font-size:74.624176pt;}
.y0_c00349{bottom:0.000000pt;}
.y1_c00349{bottom:68.000000pt;}
.y20_c00349{bottom:68.984120pt;}
.y1f_c00349{bottom:128.854920pt;}
.y1e_c00349{bottom:156.737720pt;}
.y1d_c00349{bottom:187.150520pt;}
.y1c_c00349{bottom:216.608520pt;}
.y1b_c00349{bottom:246.387720pt;}
.y1a_c00349{bottom:303.416120pt;}
.y19_c00349{bottom:332.561720pt;}
.y18_c00349{bottom:362.024120pt;}
.y17_c00349{bottom:390.848520pt;}
.y16_c00349{bottom:420.948920pt;}
.y15_c00349{bottom:449.456520pt;}
.y14_c00349{bottom:478.289720pt;}
.y13_c00349{bottom:507.435320pt;}
.y12_c00349{bottom:536.893320pt;}
.y11_c00349{bottom:622.116920pt;}
.y10_c00349{bottom:651.262520pt;}
.yf_c00349{bottom:679.770120pt;}
.ya_c00349{bottom:702.896520pt;}
.y9_c00349{bottom:708.598920pt;}
.ye_c00349{bottom:708.920120pt;}
.yd_c00349{bottom:719.370120pt;}
.yc_c00349{bottom:725.076920pt;}
.y8_c00349{bottom:737.427720pt;}
.yb_c00349{bottom:737.744520pt;}
.y2_c00349{bottom:741.867320pt;}
.y7_c00349{bottom:795.402120pt;}
.y6_c00349{bottom:825.814920pt;}
.y5_c00349{bottom:908.499720pt;}
.y4_c00349{bottom:959.821320pt;}
.y3_c00349{bottom:976.928520pt;}
.hf_c00349{height:20.559000pt;}
.h2_c00349{height:25.698750pt;}
.h6_c00349{height:30.382504pt;}
.hb_c00349{height:31.226460pt;}
.h3_c00349{height:32.123438pt;}
.he_c00349{height:48.538359pt;}
.h7_c00349{height:55.803000pt;}
.hc_c00349{height:62.326086pt;}
.h5_c00349{height:63.393688pt;}
.h9_c00349{height:64.948125pt;}
.hd_c00349{height:67.020938pt;}
.h8_c00349{height:69.386625pt;}
.h4_c00349{height:72.030407pt;}
.ha_c00349{height:73.239548pt;}
.h1_c00349{height:986.666667pt;}
.h0_c00349{height:1122.666667pt;}
.w1_c00349{width:689.333333pt;}
.w0_c00349{width:793.333333pt;}
.x0_c00349{left:0.000000pt;}
.x2_c00349{left:47.094653pt;}
.x1_c00349{left:52.000000pt;}
.x22_c00349{left:86.932253pt;}
.x7_c00349{left:88.525053pt;}
.x6d_c00349{left:89.466653pt;}
.x2e_c00349{left:96.748653pt;}
.x58_c00349{left:106.833453pt;}
.x71_c00349{left:108.826653pt;}
.x2f_c00349{left:116.337453pt;}
.x66_c00349{left:117.622253pt;}
.x47_c00349{left:125.775453pt;}
.x72_c00349{left:127.619053pt;}
.x3b_c00349{left:135.138653pt;}
.x19_c00349{left:136.115453pt;}
.x73_c00349{left:144.743853pt;}
.x8_c00349{left:145.799853pt;}
.x4b_c00349{left:155.598653pt;}
.x6e_c00349{left:156.571053pt;}
.x6_c00349{left:161.142653pt;}
.x1a_c00349{left:165.155453pt;}
.x48_c00349{left:175.332653pt;}
.x74_c00349{left:179.235453pt;}
.x9_c00349{left:184.071053pt;}
.x3c_c00349{left:185.109453pt;}
.x75_c00349{left:186.103853pt;}
.x38_c00349{left:194.331853pt;}
.x11_c00349{left:195.563853pt;}
.x30_c00349{left:203.598253pt;}
.x39_c00349{left:204.746653pt;}
.x6f_c00349{left:211.109053pt;}
.x56_c00349{left:213.471853pt;}
.x23_c00349{left:214.466253pt;}
.x67_c00349{left:215.795053pt;}
.xa_c00349{left:224.089053pt;}
.x31_c00349{left:225.527853pt;}
.x1b_c00349{left:233.377453pt;}
.x50_c00349{left:234.380653pt;}
.x49_c00349{left:239.040253pt;}
.x24_c00349{left:243.409453pt;}
.x3d_c00349{left:252.438253pt;}
.x12_c00349{left:253.885853pt;}
.x59_c00349{left:262.901453pt;}
.x51_c00349{left:264.001453pt;}
.x32_c00349{left:272.955453pt;}
.x6a_c00349{left:274.161053pt;}
.x5a_c00349{left:279.383853pt;}
.xb_c00349{left:283.035853pt;}
.x13_c00349{left:292.847853pt;}
.x76_c00349{left:294.216253pt;}
.x61_c00349{left:295.949853pt;}
.xc_c00349{left:302.175853pt;}
.x41_c00349{left:303.909453pt;}
.x77_c00349{left:309.559053pt;}
.x1c_c00349{left:313.136253pt;}
.x68_c00349{left:314.944653pt;}
.x33_c00349{left:321.755853pt;}
.x4c_c00349{left:323.445453pt;}
.x25_c00349{left:332.487453pt;}
.x5b_c00349{left:333.693053pt;}
.x4a_c00349{left:341.494253pt;}
.x63_c00349{left:342.849453pt;}
.xd_c00349{left:352.287453pt;}
.x3e_c00349{left:360.502253pt;}
.x1d_c00349{left:362.174253pt;}
.xe_c00349{left:371.379053pt;}
.x14_c00349{left:372.289853pt;}
.x52_c00349{left:381.481453pt;}
.x1e_c00349{left:391.267053pt;}
.x15_c00349{left:400.894253pt;}
.x4d_c00349{left:401.844653pt;}
.x53_c00349{left:410.204653pt;}
.x69_c00349{left:411.911853pt;}
.x57_c00349{left:413.790653pt;}
.x16_c00349{left:420.804253pt;}
.x1f_c00349{left:430.941853pt;}
.x26_c00349{left:441.431453pt;}
.x17_c00349{left:449.976253pt;}
.x5e_c00349{left:450.948653pt;}
.x79_c00349{left:457.055853pt;}
.x27_c00349{left:460.105053pt;}
.x20_c00349{left:469.947853pt;}
.x5c_c00349{left:471.030253pt;}
.x18_c00349{left:479.407853pt;}
.x78_c00349{left:480.895053pt;}
.x34_c00349{left:481.898253pt;}
.x3f_c00349{left:489.259453pt;}
.x21_c00349{left:490.192253pt;}
.x35_c00349{left:499.084653pt;}
.x42_c00349{left:500.043853pt;}
.xf_c00349{left:508.549053pt;}
.x5f_c00349{left:510.115453pt;}
.x28_c00349{left:518.339053pt;}
.x43_c00349{left:519.355453pt;}
.x29_c00349{left:528.731853pt;}
.x3a_c00349{left:538.904653pt;}
.x62_c00349{left:540.237853pt;}
.x2c_c00349{left:548.399853pt;}
.x64_c00349{left:549.746253pt;}
.x70_c00349{left:551.655853pt;}
.x36_c00349{left:558.031453pt;}
.x4e_c00349{left:559.602253pt;}
.x2a_c00349{left:567.979853pt;}
.x60_c00349{left:569.691453pt;}
.x2d_c00349{left:577.950253pt;}
.x6b_c00349{left:578.900653pt;}
.x37_c00349{left:587.040653pt;}
.x44_c00349{left:588.387053pt;}
.x40_c00349{left:590.257053pt;}
.x4_c00349{left:597.204653pt;}
.x54_c00349{left:598.881053pt;}
.x65_c00349{left:607.755853pt;}
.x6c_c00349{left:608.662253pt;}
.x45_c00349{left:616.767053pt;}
.x5_c00349{left:617.981453pt;}
.x3_c00349{left:623.877453pt;}
.x4f_c00349{left:627.577853pt;}
.x5d_c00349{left:629.791053pt;}
.x2b_c00349{left:631.779853pt;}
.x10_c00349{left:638.137853pt;}
.x55_c00349{left:647.017053pt;}
.x46_c00349{left:656.837853pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d1d55773489abcdadff50fed.woff2')format("woff");}.ff1_c00350{font-family:ff1_c00350;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00350;src:url('chunks/assets/font_a7b4dd99a68b6bfa5dfeaf9a.woff2')format("woff");}.ff2_c00350{font-family:ff2_c00350;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00350;src:url('chunks/assets/font_062d8ed526aac9750d7d8751.woff2')format("woff");}.ff3_c00350{font-family:ff3_c00350;line-height:0.666000;font-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_c00350{transform:matrix(0.057693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.057693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.057693,0.000000,0.000000,0.250000,0,0);}
.mbf_c00350{transform:matrix(0.064103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064103,0.000000,0.000000,0.250000,0,0);}
.mb2_c00350{transform:matrix(0.071429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071429,0.000000,0.000000,0.250000,0,0);}
.m84_c00350{transform:matrix(0.100279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100279,0.000000,0.000000,0.250000,0,0);}
.m62_c00350{transform:matrix(0.101606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101606,0.000000,0.000000,0.250000,0,0);}
.m7b_c00350{transform:matrix(0.114473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114473,0.000000,0.000000,0.250000,0,0);}
.mad_c00350{transform:matrix(0.124382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124382,0.000000,0.000000,0.250000,0,0);}
.m40_c00350{transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);}
.mbe_c00350{transform:matrix(0.128206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128206,0.000000,0.000000,0.250000,0,0);}
.m4b_c00350{transform:matrix(0.130208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130208,0.000000,0.000000,0.250000,0,0);}
.m5b_c00350{transform:matrix(0.133051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133051,0.000000,0.000000,0.250000,0,0);}
.m4e_c00350{transform:matrix(0.140624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140624,0.000000,0.000000,0.250000,0,0);}
.m91_c00350{transform:matrix(0.143072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143072,0.000000,0.000000,0.250000,0,0);}
.mbb_c00350{transform:matrix(0.147436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147436,0.000000,0.000000,0.250000,0,0);}
.m8b_c00350{transform:matrix(0.154299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154299,0.000000,0.000000,0.250000,0,0);}
.mcb_c00350{transform:matrix(0.156603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156603,0.000000,0.000000,0.250000,0,0);}
.mb0_c00350{transform:matrix(0.157142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157142,0.000000,0.000000,0.250000,0,0);}
.mb1_c00350{transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);}
.mb7_c00350{transform:matrix(0.164974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164974,0.000000,0.000000,0.250000,0,0);}
.mba_c00350{transform:matrix(0.173077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173077,0.000000,0.000000,0.250000,0,0);}
.m39_c00350{transform:matrix(0.177495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177495,0.000000,0.000000,0.250000,0,0);}
.m68_c00350{transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);}
.m11_c00350{transform:matrix(0.186382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186382,0.000000,0.000000,0.250000,0,0);}
.m51_c00350{transform:matrix(0.195839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195839,0.000000,0.000000,0.250000,0,0);}
.mbc_c00350{transform:matrix(0.197802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197802,0.000000,0.000000,0.250000,0,0);}
.ma7_c00350{transform:matrix(0.197830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197830,0.000000,0.000000,0.250000,0,0);}
.m80_c00350{transform:matrix(0.200153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200153,0.000000,0.000000,0.250000,0,0);}
.m28_c00350{transform:matrix(0.204997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204997,0.000000,0.000000,0.250000,0,0);}
.m69_c00350{transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);}
.m5f_c00350{transform:matrix(0.208620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208620,0.000000,0.000000,0.250000,0,0);}
.m86_c00350{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m16_c00350{transform:matrix(0.228904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228904,0.000000,0.000000,0.250000,0,0);}
.m4d_c00350{transform:matrix(0.229165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229165,0.000000,0.000000,0.250000,0,0);}
.mc2_c00350{transform:matrix(0.233252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233252,0.000000,0.000000,0.250000,0,0);}
.m5a_c00350{transform:matrix(0.237041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237041,0.000000,0.000000,0.250000,0,0);}
.m3c_c00350{transform:matrix(0.238192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238192,0.000000,0.000000,0.250000,0,0);}
.ma2_c00350{transform:matrix(0.238588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238588,0.000000,0.000000,0.250000,0,0);}
.m4c_c00350{transform:matrix(0.239583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239583,0.000000,0.000000,0.250000,0,0);}
.maf_c00350{transform:matrix(0.244379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244379,0.000000,0.000000,0.250000,0,0);}
.m1_c00350{transform:matrix(0.245256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245256,0.000000,0.000000,0.250000,0,0);}
.m7a_c00350{transform:matrix(0.249377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249377,0.000000,0.000000,0.250000,0,0);}
.m97_c00350{transform:matrix(0.249529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249529,0.000000,0.000000,0.250000,0,0);}
.m0_c00350{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m90_c00350{transform:matrix(0.250649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250649,0.000000,0.000000,0.250000,0,0);}
.m96_c00350{transform:matrix(0.256449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256449,0.000000,0.000000,0.250000,0,0);}
.m47_c00350{transform:matrix(0.260147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260147,0.000000,0.000000,0.250000,0,0);}
.m26_c00350{transform:matrix(0.260551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260551,0.000000,0.000000,0.250000,0,0);}
.m5e_c00350{transform:matrix(0.260939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260939,0.000000,0.000000,0.250000,0,0);}
.md7_c00350{transform:matrix(0.263276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263276,0.000000,0.000000,0.250000,0,0);}
.mc4_c00350{transform:matrix(0.263569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263569,0.000000,0.000000,0.250000,0,0);}
.mdb_c00350{transform:matrix(0.264236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264236,0.000000,0.000000,0.250000,0,0);}
.m32_c00350{transform:matrix(0.264601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264601,0.000000,0.000000,0.250000,0,0);}
.ma_c00350{transform:matrix(0.265288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265288,0.000000,0.000000,0.250000,0,0);}
.m7d_c00350{transform:matrix(0.268555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268555,0.000000,0.000000,0.250000,0,0);}
.m54_c00350{transform:matrix(0.268638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268638,0.000000,0.000000,0.250000,0,0);}
.m82_c00350{transform:matrix(0.268654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268654,0.000000,0.000000,0.250000,0,0);}
.mca_c00350{transform:matrix(0.268712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268712,0.000000,0.000000,0.250000,0,0);}
.mdf_c00350{transform:matrix(0.269101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269101,0.000000,0.000000,0.250000,0,0);}
.ma1_c00350{transform:matrix(0.271794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271794,0.000000,0.000000,0.250000,0,0);}
.m13_c00350{transform:matrix(0.272230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272230,0.000000,0.000000,0.250000,0,0);}
.m52_c00350{transform:matrix(0.273266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273266,0.000000,0.000000,0.250000,0,0);}
.m3f_c00350{transform:matrix(0.274882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274882,0.000000,0.000000,0.250000,0,0);}
.m88_c00350{transform:matrix(0.274986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274986,0.000000,0.000000,0.250000,0,0);}
.m83_c00350{transform:matrix(0.275242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275242,0.000000,0.000000,0.250000,0,0);}
.mcf_c00350{transform:matrix(0.276066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276066,0.000000,0.000000,0.250000,0,0);}
.m23_c00350{transform:matrix(0.278075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278075,0.000000,0.000000,0.250000,0,0);}
.ma3_c00350{transform:matrix(0.278775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278775,0.000000,0.000000,0.250000,0,0);}
.m2_c00350{transform:matrix(0.280655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280655,0.000000,0.000000,0.250000,0,0);}
.m2b_c00350{transform:matrix(0.281486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281486,0.000000,0.000000,0.250000,0,0);}
.m5d_c00350{transform:matrix(0.281492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281492,0.000000,0.000000,0.250000,0,0);}
.m70_c00350{transform:matrix(0.281782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281782,0.000000,0.000000,0.250000,0,0);}
.m36_c00350{transform:matrix(0.282851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282851,0.000000,0.000000,0.250000,0,0);}
.mf_c00350{transform:matrix(0.283756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283756,0.000000,0.000000,0.250000,0,0);}
.m4f_c00350{transform:matrix(0.283844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283844,0.000000,0.000000,0.250000,0,0);}
.m33_c00350{transform:matrix(0.284956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284956,0.000000,0.000000,0.250000,0,0);}
.mcc_c00350{transform:matrix(0.285021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285021,0.000000,0.000000,0.250000,0,0);}
.mb_c00350{transform:matrix(0.285667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285667,0.000000,0.000000,0.250000,0,0);}
.mce_c00350{transform:matrix(0.287625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287625,0.000000,0.000000,0.250000,0,0);}
.m6a_c00350{transform:matrix(0.287911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287911,0.000000,0.000000,0.250000,0,0);}
.m81_c00350{transform:matrix(0.288158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288158,0.000000,0.000000,0.250000,0,0);}
.m9d_c00350{transform:matrix(0.288195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288195,0.000000,0.000000,0.250000,0,0);}
.m1e_c00350{transform:matrix(0.288823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288823,0.000000,0.000000,0.250000,0,0);}
.m42_c00350{transform:matrix(0.290679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290679,0.000000,0.000000,0.250000,0,0);}
.m78_c00350{transform:matrix(0.290740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290740,0.000000,0.000000,0.250000,0,0);}
.m57_c00350{transform:matrix(0.290893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290893,0.000000,0.000000,0.250000,0,0);}
.ma6_c00350{transform:matrix(0.291688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291688,0.000000,0.000000,0.250000,0,0);}
.mb8_c00350{transform:matrix(0.292373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292373,0.000000,0.000000,0.250000,0,0);}
.m3a_c00350{transform:matrix(0.294495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294495,0.000000,0.000000,0.250000,0,0);}
.maa_c00350{transform:matrix(0.296615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296615,0.000000,0.000000,0.250000,0,0);}
.m41_c00350{transform:matrix(0.297729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297729,0.000000,0.000000,0.250000,0,0);}
.m6f_c00350{transform:matrix(0.298482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298482,0.000000,0.000000,0.250000,0,0);}
.m58_c00350{transform:matrix(0.299940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299940,0.000000,0.000000,0.250000,0,0);}
.m2f_c00350{transform:matrix(0.300039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300039,0.000000,0.000000,0.250000,0,0);}
.m9b_c00350{transform:matrix(0.300703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300703,0.000000,0.000000,0.250000,0,0);}
.m64_c00350{transform:matrix(0.300759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300759,0.000000,0.000000,0.250000,0,0);}
.m71_c00350{transform:matrix(0.300983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300983,0.000000,0.000000,0.250000,0,0);}
.mc_c00350{transform:matrix(0.301408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301408,0.000000,0.000000,0.250000,0,0);}
.m8a_c00350{transform:matrix(0.301725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301725,0.000000,0.000000,0.250000,0,0);}
.mc7_c00350{transform:matrix(0.302255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302255,0.000000,0.000000,0.250000,0,0);}
.m94_c00350{transform:matrix(0.302693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302693,0.000000,0.000000,0.250000,0,0);}
.m53_c00350{transform:matrix(0.303897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303897,0.000000,0.000000,0.250000,0,0);}
.m99_c00350{transform:matrix(0.304527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304527,0.000000,0.000000,0.250000,0,0);}
.m6b_c00350{transform:matrix(0.305146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305146,0.000000,0.000000,0.250000,0,0);}
.m7e_c00350{transform:matrix(0.305179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305179,0.000000,0.000000,0.250000,0,0);}
.md1_c00350{transform:matrix(0.305459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305459,0.000000,0.000000,0.250000,0,0);}
.m92_c00350{transform:matrix(0.305572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305572,0.000000,0.000000,0.250000,0,0);}
.m67_c00350{transform:matrix(0.306130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306130,0.000000,0.000000,0.250000,0,0);}
.m7c_c00350{transform:matrix(0.306147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306147,0.000000,0.000000,0.250000,0,0);}
.ma9_c00350{transform:matrix(0.307540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307540,0.000000,0.000000,0.250000,0,0);}
.m8_c00350{transform:matrix(0.307629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307629,0.000000,0.000000,0.250000,0,0);}
.m45_c00350{transform:matrix(0.308435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308435,0.000000,0.000000,0.250000,0,0);}
.md3_c00350{transform:matrix(0.309295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309295,0.000000,0.000000,0.250000,0,0);}
.m76_c00350{transform:matrix(0.309301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309301,0.000000,0.000000,0.250000,0,0);}
.m72_c00350{transform:matrix(0.309790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309790,0.000000,0.000000,0.250000,0,0);}
.m30_c00350{transform:matrix(0.309871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309871,0.000000,0.000000,0.250000,0,0);}
.m1d_c00350{transform:matrix(0.310171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310171,0.000000,0.000000,0.250000,0,0);}
.m66_c00350{transform:matrix(0.310435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310435,0.000000,0.000000,0.250000,0,0);}
.m9f_c00350{transform:matrix(0.311938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311938,0.000000,0.000000,0.250000,0,0);}
.m38_c00350{transform:matrix(0.311977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311977,0.000000,0.000000,0.250000,0,0);}
.m1f_c00350{transform:matrix(0.312466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312466,0.000000,0.000000,0.250000,0,0);}
.ma0_c00350{transform:matrix(0.313335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313335,0.000000,0.000000,0.250000,0,0);}
.m44_c00350{transform:matrix(0.313497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313497,0.000000,0.000000,0.250000,0,0);}
.md0_c00350{transform:matrix(0.313801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313801,0.000000,0.000000,0.250000,0,0);}
.m65_c00350{transform:matrix(0.313942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313942,0.000000,0.000000,0.250000,0,0);}
.m60_c00350{transform:matrix(0.314197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314197,0.000000,0.000000,0.250000,0,0);}
.me_c00350{transform:matrix(0.314560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314560,0.000000,0.000000,0.250000,0,0);}
.m25_c00350{transform:matrix(0.316584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316584,0.000000,0.000000,0.250000,0,0);}
.md6_c00350{transform:matrix(0.316697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316697,0.000000,0.000000,0.250000,0,0);}
.m20_c00350{transform:matrix(0.317302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317302,0.000000,0.000000,0.250000,0,0);}
.m7_c00350{transform:matrix(0.317604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317604,0.000000,0.000000,0.250000,0,0);}
.m85_c00350{transform:matrix(0.317706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317706,0.000000,0.000000,0.250000,0,0);}
.ma4_c00350{transform:matrix(0.317830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317830,0.000000,0.000000,0.250000,0,0);}
.m2c_c00350{transform:matrix(0.318451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318451,0.000000,0.000000,0.250000,0,0);}
.md4_c00350{transform:matrix(0.318595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318595,0.000000,0.000000,0.250000,0,0);}
.mb6_c00350{transform:matrix(0.318899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318899,0.000000,0.000000,0.250000,0,0);}
.m19_c00350{transform:matrix(0.319059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319059,0.000000,0.000000,0.250000,0,0);}
.m2e_c00350{transform:matrix(0.320242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320242,0.000000,0.000000,0.250000,0,0);}
.mc0_c00350{transform:matrix(0.321482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321482,0.000000,0.000000,0.250000,0,0);}
.mc9_c00350{transform:matrix(0.321493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321493,0.000000,0.000000,0.250000,0,0);}
.m6d_c00350{transform:matrix(0.321508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321508,0.000000,0.000000,0.250000,0,0);}
.m29_c00350{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);}
.m27_c00350{transform:matrix(0.322340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322340,0.000000,0.000000,0.250000,0,0);}
.mc6_c00350{transform:matrix(0.322459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322459,0.000000,0.000000,0.250000,0,0);}
.m59_c00350{transform:matrix(0.322926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322926,0.000000,0.000000,0.250000,0,0);}
.md5_c00350{transform:matrix(0.323564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323564,0.000000,0.000000,0.250000,0,0);}
.m14_c00350{transform:matrix(0.323625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323625,0.000000,0.000000,0.250000,0,0);}
.m87_c00350{transform:matrix(0.324063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324063,0.000000,0.000000,0.250000,0,0);}
.ma5_c00350{transform:matrix(0.324760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324760,0.000000,0.000000,0.250000,0,0);}
.m5c_c00350{transform:matrix(0.325763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325763,0.000000,0.000000,0.250000,0,0);}
.m8d_c00350{transform:matrix(0.325870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325870,0.000000,0.000000,0.250000,0,0);}
.m2a_c00350{transform:matrix(0.327472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327472,0.000000,0.000000,0.250000,0,0);}
.md9_c00350{transform:matrix(0.327752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327752,0.000000,0.000000,0.250000,0,0);}
.md2_c00350{transform:matrix(0.327973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327973,0.000000,0.000000,0.250000,0,0);}
.mb9_c00350{transform:matrix(0.328058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328058,0.000000,0.000000,0.250000,0,0);}
.m50_c00350{transform:matrix(0.328096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328096,0.000000,0.000000,0.250000,0,0);}
.m3_c00350{transform:matrix(0.328592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328592,0.000000,0.000000,0.250000,0,0);}
.mc3_c00350{transform:matrix(0.328906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328906,0.000000,0.000000,0.250000,0,0);}
.mc8_c00350{transform:matrix(0.330147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330147,0.000000,0.000000,0.250000,0,0);}
.m89_c00350{transform:matrix(0.330223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330223,0.000000,0.000000,0.250000,0,0);}
.m22_c00350{transform:matrix(0.330249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330249,0.000000,0.000000,0.250000,0,0);}
.me1_c00350{transform:matrix(0.330560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330560,0.000000,0.000000,0.250000,0,0);}
.mc1_c00350{transform:matrix(0.331025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331025,0.000000,0.000000,0.250000,0,0);}
.mcd_c00350{transform:matrix(0.331275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331275,0.000000,0.000000,0.250000,0,0);}
.m10_c00350{transform:matrix(0.331587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331587,0.000000,0.000000,0.250000,0,0);}
.mb4_c00350{transform:matrix(0.333111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333111,0.000000,0.000000,0.250000,0,0);}
.m3d_c00350{transform:matrix(0.333337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333337,0.000000,0.000000,0.250000,0,0);}
.m75_c00350{transform:matrix(0.333607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333607,0.000000,0.000000,0.250000,0,0);}
.m34_c00350{transform:matrix(0.334685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334685,0.000000,0.000000,0.250000,0,0);}
.m15_c00350{transform:matrix(0.335273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335273,0.000000,0.000000,0.250000,0,0);}
.m1c_c00350{transform:matrix(0.335560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335560,0.000000,0.000000,0.250000,0,0);}
.mda_c00350{transform:matrix(0.338157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338157,0.000000,0.000000,0.250000,0,0);}
.mdc_c00350{transform:matrix(0.338194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338194,0.000000,0.000000,0.250000,0,0);}
.me0_c00350{transform:matrix(0.339216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339216,0.000000,0.000000,0.250000,0,0);}
.md8_c00350{transform:matrix(0.339512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339512,0.000000,0.000000,0.250000,0,0);}
.mae_c00350{transform:matrix(0.340066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340066,0.000000,0.000000,0.250000,0,0);}
.m55_c00350{transform:matrix(0.340111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340111,0.000000,0.000000,0.250000,0,0);}
.m74_c00350{transform:matrix(0.340435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340435,0.000000,0.000000,0.250000,0,0);}
.m4a_c00350{transform:matrix(0.341531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341531,0.000000,0.000000,0.250000,0,0);}
.m43_c00350{transform:matrix(0.342175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342175,0.000000,0.000000,0.250000,0,0);}
.m93_c00350{transform:matrix(0.342795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342795,0.000000,0.000000,0.250000,0,0);}
.m7f_c00350{transform:matrix(0.343517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343517,0.000000,0.000000,0.250000,0,0);}
.m37_c00350{transform:matrix(0.346408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346408,0.000000,0.000000,0.250000,0,0);}
.m17_c00350{transform:matrix(0.347236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347236,0.000000,0.000000,0.250000,0,0);}
.m9e_c00350{transform:matrix(0.348667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348667,0.000000,0.000000,0.250000,0,0);}
.m5_c00350{transform:matrix(0.348732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348732,0.000000,0.000000,0.250000,0,0);}
.m63_c00350{transform:matrix(0.350451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350451,0.000000,0.000000,0.250000,0,0);}
.m56_c00350{transform:matrix(0.350462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350462,0.000000,0.000000,0.250000,0,0);}
.m73_c00350{transform:matrix(0.351144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351144,0.000000,0.000000,0.250000,0,0);}
.m1b_c00350{transform:matrix(0.351706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351706,0.000000,0.000000,0.250000,0,0);}
.m6_c00350{transform:matrix(0.352091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352091,0.000000,0.000000,0.250000,0,0);}
.m77_c00350{transform:matrix(0.352379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352379,0.000000,0.000000,0.250000,0,0);}
.m3b_c00350{transform:matrix(0.352751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352751,0.000000,0.000000,0.250000,0,0);}
.mab_c00350{transform:matrix(0.353328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353328,0.000000,0.000000,0.250000,0,0);}
.m21_c00350{transform:matrix(0.354951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354951,0.000000,0.000000,0.250000,0,0);}
.m9_c00350{transform:matrix(0.355095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355095,0.000000,0.000000,0.250000,0,0);}
.m8f_c00350{transform:matrix(0.361525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361525,0.000000,0.000000,0.250000,0,0);}
.mb3_c00350{transform:matrix(0.364914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364914,0.000000,0.000000,0.250000,0,0);}
.m1a_c00350{transform:matrix(0.364997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364997,0.000000,0.000000,0.250000,0,0);}
.m79_c00350{transform:matrix(0.367520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367520,0.000000,0.000000,0.250000,0,0);}
.ma8_c00350{transform:matrix(0.368395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368395,0.000000,0.000000,0.250000,0,0);}
.m61_c00350{transform:matrix(0.368937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368937,0.000000,0.000000,0.250000,0,0);}
.m6e_c00350{transform:matrix(0.369493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369493,0.000000,0.000000,0.250000,0,0);}
.mdd_c00350{transform:matrix(0.370775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370775,0.000000,0.000000,0.250000,0,0);}
.m18_c00350{transform:matrix(0.371700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371700,0.000000,0.000000,0.250000,0,0);}
.m8c_c00350{transform:matrix(0.372401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372401,0.000000,0.000000,0.250000,0,0);}
.m9a_c00350{transform:matrix(0.373096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373096,0.000000,0.000000,0.250000,0,0);}
.m9c_c00350{transform:matrix(0.373420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373420,0.000000,0.000000,0.250000,0,0);}
.md_c00350{transform:matrix(0.375326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375326,0.000000,0.000000,0.250000,0,0);}
.m8e_c00350{transform:matrix(0.376484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376484,0.000000,0.000000,0.250000,0,0);}
.m12_c00350{transform:matrix(0.378386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378386,0.000000,0.000000,0.250000,0,0);}
.m2d_c00350{transform:matrix(0.378969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378969,0.000000,0.000000,0.250000,0,0);}
.m24_c00350{transform:matrix(0.381733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381733,0.000000,0.000000,0.250000,0,0);}
.m3e_c00350{transform:matrix(0.385503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385503,0.000000,0.000000,0.250000,0,0);}
.mc5_c00350{transform:matrix(0.387189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387189,0.000000,0.000000,0.250000,0,0);}
.m95_c00350{transform:matrix(0.387549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387549,0.000000,0.000000,0.250000,0,0);}
.m31_c00350{transform:matrix(0.390521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390521,0.000000,0.000000,0.250000,0,0);}
.mb5_c00350{transform:matrix(0.393268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393268,0.000000,0.000000,0.250000,0,0);}
.m46_c00350{transform:matrix(0.393547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393547,0.000000,0.000000,0.250000,0,0);}
.m49_c00350{transform:matrix(0.394654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394654,0.000000,0.000000,0.250000,0,0);}
.m98_c00350{transform:matrix(0.397515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397515,0.000000,0.000000,0.250000,0,0);}
.m48_c00350{transform:matrix(0.411147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411147,0.000000,0.000000,0.250000,0,0);}
.m35_c00350{transform:matrix(0.430162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430162,0.000000,0.000000,0.250000,0,0);}
.mac_c00350{transform:matrix(0.434923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434923,0.000000,0.000000,0.250000,0,0);}
.m6c_c00350{transform:matrix(0.449920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449920,0.000000,0.000000,0.250000,0,0);}
.m4_c00350{transform:matrix(0.457742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457742,0.000000,0.000000,0.250000,0,0);}
.mde_c00350{transform:matrix(0.460692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460692,0.000000,0.000000,0.250000,0,0);}
.v2_c00350{vertical-align:-4.276800px;}
.v0_c00350{vertical-align:0.000000px;}
.v1_c00350{vertical-align:21.364200px;}
.ls3_c00350{letter-spacing:-2.993767px;}
.ls6_c00350{letter-spacing:-2.529450px;}
.ls12_c00350{letter-spacing:-2.439367px;}
.ls5_c00350{letter-spacing:-2.312640px;}
.ls16_c00350{letter-spacing:-2.110284px;}
.ls11_c00350{letter-spacing:-1.642417px;}
.ls15_c00350{letter-spacing:-0.794970px;}
.lsd_c00350{letter-spacing:-0.729927px;}
.ls9_c00350{letter-spacing:-0.325215px;}
.ls2_c00350{letter-spacing:0.000000px;}
.ls0_c00350{letter-spacing:0.520344px;}
.lsf_c00350{letter-spacing:0.542025px;}
.lse_c00350{letter-spacing:0.821700px;}
.lsa_c00350{letter-spacing:2.415600px;}
.ls10_c00350{letter-spacing:3.353328px;}
.ls7_c00350{letter-spacing:3.367782px;}
.ls13_c00350{letter-spacing:3.484810px;}
.ls17_c00350{letter-spacing:3.564000px;}
.ls4_c00350{letter-spacing:3.613500px;}
.ls1_c00350{letter-spacing:25.366770px;}
.ls8_c00350{letter-spacing:31.363200px;}
.lsb_c00350{letter-spacing:34.214598px;}
.lsc_c00350{letter-spacing:49.896198px;}
.ls14_c00350{letter-spacing:55.598598px;}
.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;}
}
.ws3_c00350{word-spacing:-18.587844px;}
.ws0_c00350{word-spacing:-18.067500px;}
.ws4_c00350{word-spacing:-3.613500px;}
.ws5_c00350{word-spacing:0.000000px;}
.ws2_c00350{word-spacing:5.131170px;}
.ws1_c00350{word-spacing:8.744670px;}
._19_c00350{margin-left:-15.539040px;}
._3_c00350{margin-left:-11.852280px;}
._1d_c00350{margin-left:-8.600130px;}
._1_c00350{margin-left:-6.866640px;}
._12_c00350{margin-left:-4.839120px;}
._18_c00350{margin-left:-2.890800px;}
._a_c00350{width:3.758040px;}
._14_c00350{width:5.781600px;}
._5_c00350{width:7.299270px;}
._9_c00350{width:8.383320px;}
._6_c00350{width:10.190070px;}
._4_c00350{width:11.707740px;}
._13_c00350{width:12.791790px;}
._1a_c00350{width:14.164920px;}
._20_c00350{width:15.610320px;}
._15_c00350{width:16.983450px;}
._23_c00350{width:20.669220px;}
._c_c00350{width:22.548240px;}
._0_c00350{width:23.776830px;}
._21_c00350{width:24.859890px;}
._7_c00350{width:26.523090px;}
._f_c00350{width:27.655056px;}
._1c_c00350{width:29.630700px;}
._d_c00350{width:33.182820px;}
._2_c00350{width:34.328250px;}
._b_c00350{width:35.858790px;}
._16_c00350{width:37.363590px;}
._8_c00350{width:38.519910px;}
._22_c00350{width:40.164151px;}
._11_c00350{width:41.857992px;}
._17_c00350{width:43.940160px;}
._1b_c00350{width:45.620190px;}
._1e_c00350{width:52.052220px;}
._1f_c00350{width:65.292282px;}
._e_c00350{width:90.852300px;}
._10_c00350{width:311.662296px;}
.fc0_c00350{color:transparent;}
.fsd_c00350{font-size:16.434000px;}
.fs14_c00350{font-size:22.176000px;}
.fs0_c00350{font-size:22.374000px;}
.fs15_c00350{font-size:27.720000px;}
.fs4_c00350{font-size:31.363200px;}
.fsa_c00350{font-size:33.264000px;}
.fs9_c00350{font-size:34.214598px;}
.fsc_c00350{font-size:36.630000px;}
.fs5_c00350{font-size:38.808000px;}
.fse_c00350{font-size:46.926198px;}
.fs8_c00350{font-size:48.312000px;}
.fsb_c00350{font-size:49.896198px;}
.fs12_c00350{font-size:55.598598px;}
.fs10_c00350{font-size:60.192000px;}
.fs7_c00350{font-size:62.568000px;}
.fs3_c00350{font-size:66.528000px;}
.fsf_c00350{font-size:68.706198px;}
.fs11_c00350{font-size:69.696198px;}
.fs6_c00350{font-size:70.884000px;}
.fs13_c00350{font-size:71.280000px;}
.fs2_c00350{font-size:72.270000px;}
.fs1_c00350{font-size:85.536198px;}
.y0_c00350{bottom:0.000000px;}
.y1_c00350{bottom:76.500000px;}
.y26_c00350{bottom:96.139935px;}
.y24_c00350{bottom:177.755535px;}
.y25_c00350{bottom:185.591385px;}
.y23_c00350{bottom:211.613535px;}
.y22_c00350{bottom:227.290185px;}
.y21_c00350{bottom:244.397385px;}
.y2_c00350{bottom:269.350335px;}
.y20_c00350{bottom:276.473385px;}
.y1f_c00350{bottom:308.910735px;}
.y1e_c00350{bottom:340.981785px;}
.y1d_c00350{bottom:373.419135px;}
.y1c_c00350{bottom:405.490185px;}
.y1b_c00350{bottom:470.003535px;}
.y19_c00350{bottom:470.359935px;}
.y1a_c00350{bottom:481.403385px;}
.y18_c00350{bottom:488.179935px;}
.y17_c00350{bottom:503.148735px;}
.y16_c00350{bottom:535.581135px;}
.y15_c00350{bottom:568.369935px;}
.y14_c00350{bottom:600.802335px;}
.y13_c00350{bottom:628.957935px;}
.y12_c00350{bottom:634.655385px;}
.y11_c00350{bottom:667.087785px;}
.y10_c00350{bottom:698.450985px;}
.ye_c00350{bottom:699.168735px;}
.yf_c00350{bottom:699.520185px;}
.y9_c00350{bottom:731.601135px;}
.yd_c00350{bottom:745.852185px;}
.yc_c00350{bottom:753.697935px;}
.yb_c00350{bottom:764.389935px;}
.y8_c00350{bottom:765.097785px;}
.ya_c00350{bottom:777.215385px;}
.y7_c00350{bottom:797.886585px;}
.y6_c00350{bottom:830.675385px;}
.y5_c00350{bottom:895.188735px;}
.y4_c00350{bottom:927.977535px;}
.y3_c00350{bottom:1080.155385px;}
.he_c00350{height:16.129072px;}
.h6_c00350{height:20.887891px;}
.ha_c00350{height:22.786922px;}
.h14_c00350{height:23.128875px;}
.h2_c00350{height:23.335383px;}
.h15_c00350{height:28.911094px;}
.hc_c00350{height:33.230868px;}
.hb_c00350{height:34.693313px;}
.h12_c00350{height:37.028666px;}
.hd_c00350{height:38.203945px;}
.h7_c00350{height:40.475531px;}
.h9_c00350{height:47.415586px;}
.hf_c00350{height:48.942558px;}
.h10_c00350{height:67.431376px;}
.h11_c00350{height:68.403007px;}
.h5_c00350{height:69.386625px;}
.h13_c00350{height:69.957422px;}
.h4_c00350{height:70.929053px;}
.h3_c00350{height:83.949101px;}
.h8_c00350{height:86.620669px;}
.h1_c00350{height:1110.000000px;}
.h0_c00350{height:1263.000000px;}
.w1_c00350{width:775.500000px;}
.w0_c00350{width:892.500000px;}
.x0_c00350{left:0.000000px;}
.x2_c00350{left:10.678785px;}
.x1_c00350{left:58.500000px;}
.x3f_c00350{left:91.878585px;}
.x5_c00350{left:93.878385px;}
.x15_c00350{left:94.912935px;}
.x7d_c00350{left:96.308835px;}
.x74_c00350{left:105.995985px;}
.x7e_c00350{left:107.347335px;}
.x40_c00350{left:115.841535px;}
.x6_c00350{left:126.469185px;}
.x6c_c00350{left:127.736385px;}
.x57_c00350{left:129.944085px;}
.x4b_c00350{left:137.007735px;}
.x41_c00350{left:138.076935px;}
.x7b_c00350{left:146.863185px;}
.x1e_c00350{left:148.595685px;}
.x16_c00350{left:149.803485px;}
.x28_c00350{left:159.460935px;}
.x4c_c00350{left:170.860785px;}
.x63_c00350{left:178.627335px;}
.x17_c00350{left:181.592385px;}
.x52_c00350{left:187.339335px;}
.x33_c00350{left:192.606135px;}
.x5f_c00350{left:194.927685px;}
.x66_c00350{left:198.412485px;}
.x5a_c00350{left:201.496335px;}
.x2e_c00350{left:202.649685px;}
.x60_c00350{left:203.669385px;}
.x7f_c00350{left:204.674235px;}
.x7_c00350{left:214.603935px;}
.x5b_c00350{left:215.737485px;}
.x18_c00350{left:226.063185px;}
.x53_c00350{left:232.216035px;}
.x1f_c00350{left:236.799735px;}
.x6d_c00350{left:237.829335px;}
.x19_c00350{left:247.283835px;}
.x8_c00350{left:248.476785px;}
.x34_c00350{left:258.391635px;}
.x42_c00350{left:259.960785px;}
.x43_c00350{left:269.702385px;}
.x69_c00350{left:270.801285px;}
.x7c_c00350{left:278.330235px;}
.x1a_c00350{left:281.542785px;}
.x75_c00350{left:282.686235px;}
.x9_c00350{left:290.447835px;}
.x35_c00350{left:292.190235px;}
.x2f_c00350{left:302.114985px;}
.x1b_c00350{left:304.154385px;}
.xa_c00350{left:314.494935px;}
.x4d_c00350{left:316.133385px;}
.x20_c00350{left:324.983985px;}
.x29_c00350{left:326.221485px;}
.x79_c00350{left:332.126835px;}
.x1c_c00350{left:336.745185px;}
.x80_c00350{left:338.279685px;}
.x21_c00350{left:347.372835px;}
.xb_c00350{left:348.649935px;}
.x1d_c00350{left:359.059785px;}
.x4e_c00350{left:370.083435px;}
.x6a_c00350{left:371.424885px;}
.x22_c00350{left:380.800185px;}
.x23_c00350{left:388.457835px;}
.x30_c00350{left:391.779285px;}
.x6e_c00350{left:393.576135px;}
.x4f_c00350{left:401.644635px;}
.x5c_c00350{left:403.609785px;}
.x36_c00350{left:409.445835px;}
.x37_c00350{left:413.994885px;}
.xc_c00350{left:424.993785px;}
.x24_c00350{left:434.433435px;}
.x44_c00350{left:436.839135px;}
.xd_c00350{left:447.303435px;}
.x6f_c00350{left:448.337985px;}
.x45_c00350{left:458.510235px;}
.x70_c00350{left:460.104135px;}
.x31_c00350{left:469.167585px;}
.x7a_c00350{left:470.231835px;}
.x46_c00350{left:473.919585px;}
.xe_c00350{left:479.300235px;}
.x71_c00350{left:481.255485px;}
.x38_c00350{left:491.912835px;}
.x39_c00350{left:503.000835px;}
.xf_c00350{left:504.530385px;}
.x47_c00350{left:513.202785px;}
.x72_c00350{left:514.573935px;}
.x25_c00350{left:524.785785px;}
.x76_c00350{left:526.389585px;}
.x77_c00350{left:530.314935px;}
.x54_c00350{left:535.933185px;}
.x55_c00350{left:543.472035px;}
.x10_c00350{left:545.590635px;}
.x2a_c00350{left:547.491435px;}
.x78_c00350{left:549.911985px;}
.x58_c00350{left:555.559935px;}
.x26_c00350{left:558.232935px;}
.x11_c00350{left:568.256685px;}
.x61_c00350{left:578.730885px;}
.x2b_c00350{left:579.805035px;}
.x73_c00350{left:581.364285px;}
.x32_c00350{left:589.427835px;}
.x50_c00350{left:591.833535px;}
.x12_c00350{left:601.743435px;}
.x3a_c00350{left:602.817585px;}
.x27_c00350{left:611.207835px;}
.x48_c00350{left:613.499685px;}
.x5d_c00350{left:624.201585px;}
.x56_c00350{left:633.661035px;}
.x13_c00350{left:635.418285px;}
.x62_c00350{left:637.205235px;}
.x64_c00350{left:646.219185px;}
.x14_c00350{left:647.327985px;}
.x49_c00350{left:657.336885px;}
.x5e_c00350{left:658.366485px;}
.x67_c00350{left:661.019685px;}
.x3_c00350{left:667.979385px;}
.x59_c00350{left:679.235685px;}
.x4_c00350{left:680.814735px;}
.x68_c00350{left:682.705635px;}
.x2c_c00350{left:689.229735px;}
.x4a_c00350{left:690.793935px;}
.x3e_c00350{left:700.817685px;}
.x3c_c00350{left:701.896785px;}
.x81_c00350{left:703.411485px;}
.x3b_c00350{left:705.752835px;}
.x82_c00350{left:708.782235px;}
.x3d_c00350{left:710.054385px;}
.x65_c00350{left:712.177935px;}
.x6b_c00350{left:722.404635px;}
.x2d_c00350{left:723.597585px;}
.x51_c00350{left:734.665785px;}
@media print{
.v2_c00350{vertical-align:-3.801600pt;}
.v0_c00350{vertical-align:0.000000pt;}
.v1_c00350{vertical-align:18.990400pt;}
.ls3_c00350{letter-spacing:-2.661126pt;}
.ls6_c00350{letter-spacing:-2.248400pt;}
.ls12_c00350{letter-spacing:-2.168326pt;}
.ls5_c00350{letter-spacing:-2.055680pt;}
.ls16_c00350{letter-spacing:-1.875808pt;}
.ls11_c00350{letter-spacing:-1.459926pt;}
.ls15_c00350{letter-spacing:-0.706640pt;}
.lsd_c00350{letter-spacing:-0.648824pt;}
.ls9_c00350{letter-spacing:-0.289080pt;}
.ls2_c00350{letter-spacing:0.000000pt;}
.ls0_c00350{letter-spacing:0.462528pt;}
.lsf_c00350{letter-spacing:0.481800pt;}
.lse_c00350{letter-spacing:0.730400pt;}
.lsa_c00350{letter-spacing:2.147200pt;}
.ls10_c00350{letter-spacing:2.980736pt;}
.ls7_c00350{letter-spacing:2.993584pt;}
.ls13_c00350{letter-spacing:3.097609pt;}
.ls17_c00350{letter-spacing:3.168000pt;}
.ls4_c00350{letter-spacing:3.212000pt;}
.ls1_c00350{letter-spacing:22.548240pt;}
.ls8_c00350{letter-spacing:27.878400pt;}
.lsb_c00350{letter-spacing:30.412976pt;}
.lsc_c00350{letter-spacing:44.352176pt;}
.ls14_c00350{letter-spacing:49.420976pt;}
.ws3_c00350{word-spacing:-16.522528pt;}
.ws0_c00350{word-spacing:-16.060000pt;}
.ws4_c00350{word-spacing:-3.212000pt;}
.ws5_c00350{word-spacing:0.000000pt;}
.ws2_c00350{word-spacing:4.561040pt;}
.ws1_c00350{word-spacing:7.773040pt;}
._19_c00350{margin-left:-13.812480pt;}
._3_c00350{margin-left:-10.535360pt;}
._1d_c00350{margin-left:-7.644560pt;}
._1_c00350{margin-left:-6.103680pt;}
._12_c00350{margin-left:-4.301440pt;}
._18_c00350{margin-left:-2.569600pt;}
._a_c00350{width:3.340480pt;}
._14_c00350{width:5.139200pt;}
._5_c00350{width:6.488240pt;}
._9_c00350{width:7.451840pt;}
._6_c00350{width:9.057840pt;}
._4_c00350{width:10.406880pt;}
._13_c00350{width:11.370480pt;}
._1a_c00350{width:12.591040pt;}
._20_c00350{width:13.875840pt;}
._15_c00350{width:15.096400pt;}
._23_c00350{width:18.372640pt;}
._c_c00350{width:20.042880pt;}
._0_c00350{width:21.134960pt;}
._21_c00350{width:22.097680pt;}
._7_c00350{width:23.576080pt;}
._f_c00350{width:24.582272pt;}
._1c_c00350{width:26.338400pt;}
._d_c00350{width:29.495840pt;}
._2_c00350{width:30.514000pt;}
._b_c00350{width:31.874480pt;}
._16_c00350{width:33.212080pt;}
._8_c00350{width:34.239920pt;}
._22_c00350{width:35.701468pt;}
._11_c00350{width:37.207104pt;}
._17_c00350{width:39.057920pt;}
._1b_c00350{width:40.551280pt;}
._1e_c00350{width:46.268640pt;}
._1f_c00350{width:58.037584pt;}
._e_c00350{width:80.757600pt;}
._10_c00350{width:277.033152pt;}
.fsd_c00350{font-size:14.608000pt;}
.fs14_c00350{font-size:19.712000pt;}
.fs0_c00350{font-size:19.888000pt;}
.fs15_c00350{font-size:24.640000pt;}
.fs4_c00350{font-size:27.878400pt;}
.fsa_c00350{font-size:29.568000pt;}
.fs9_c00350{font-size:30.412976pt;}
.fsc_c00350{font-size:32.560000pt;}
.fs5_c00350{font-size:34.496000pt;}
.fse_c00350{font-size:41.712176pt;}
.fs8_c00350{font-size:42.944000pt;}
.fsb_c00350{font-size:44.352176pt;}
.fs12_c00350{font-size:49.420976pt;}
.fs10_c00350{font-size:53.504000pt;}
.fs7_c00350{font-size:55.616000pt;}
.fs3_c00350{font-size:59.136000pt;}
.fsf_c00350{font-size:61.072176pt;}
.fs11_c00350{font-size:61.952176pt;}
.fs6_c00350{font-size:63.008000pt;}
.fs13_c00350{font-size:63.360000pt;}
.fs2_c00350{font-size:64.240000pt;}
.fs1_c00350{font-size:76.032176pt;}
.y0_c00350{bottom:0.000000pt;}
.y1_c00350{bottom:68.000000pt;}
.y26_c00350{bottom:85.457720pt;}
.y24_c00350{bottom:158.004920pt;}
.y25_c00350{bottom:164.970120pt;}
.y23_c00350{bottom:188.100920pt;}
.y22_c00350{bottom:202.035720pt;}
.y21_c00350{bottom:217.242120pt;}
.y2_c00350{bottom:239.422520pt;}
.y20_c00350{bottom:245.754120pt;}
.y1f_c00350{bottom:274.587320pt;}
.y1e_c00350{bottom:303.094920pt;}
.y1d_c00350{bottom:331.928120pt;}
.y1c_c00350{bottom:360.435720pt;}
.y1b_c00350{bottom:417.780920pt;}
.y19_c00350{bottom:418.097720pt;}
.y1a_c00350{bottom:427.914120pt;}
.y18_c00350{bottom:433.937720pt;}
.y17_c00350{bottom:447.243320pt;}
.y16_c00350{bottom:476.072120pt;}
.y15_c00350{bottom:505.217720pt;}
.y14_c00350{bottom:534.046520pt;}
.y13_c00350{bottom:559.073720pt;}
.y12_c00350{bottom:564.138120pt;}
.y11_c00350{bottom:592.966920pt;}
.y10_c00350{bottom:620.845320pt;}
.ye_c00350{bottom:621.483320pt;}
.yf_c00350{bottom:621.795720pt;}
.y9_c00350{bottom:650.312120pt;}
.yd_c00350{bottom:662.979720pt;}
.yc_c00350{bottom:669.953720pt;}
.yb_c00350{bottom:679.457720pt;}
.y8_c00350{bottom:680.086920pt;}
.ya_c00350{bottom:690.858120pt;}
.y7_c00350{bottom:709.232520pt;}
.y6_c00350{bottom:738.378120pt;}
.y5_c00350{bottom:795.723320pt;}
.y4_c00350{bottom:824.868920pt;}
.y3_c00350{bottom:960.138120pt;}
.he_c00350{height:14.336953pt;}
.h6_c00350{height:18.567014pt;}
.ha_c00350{height:20.255042pt;}
.h14_c00350{height:20.559000pt;}
.h2_c00350{height:20.742563pt;}
.h15_c00350{height:25.698750pt;}
.hc_c00350{height:29.538549pt;}
.hb_c00350{height:30.838500pt;}
.h12_c00350{height:32.914370pt;}
.hd_c00350{height:33.959063pt;}
.h7_c00350{height:35.978250pt;}
.h9_c00350{height:42.147188pt;}
.hf_c00350{height:43.504496pt;}
.h10_c00350{height:59.939001pt;}
.h11_c00350{height:60.802673pt;}
.h5_c00350{height:61.677000pt;}
.h13_c00350{height:62.184375pt;}
.h4_c00350{height:63.048047pt;}
.h3_c00350{height:74.621423pt;}
.h8_c00350{height:76.996150pt;}
.h1_c00350{height:986.666667pt;}
.h0_c00350{height:1122.666667pt;}
.w1_c00350{width:689.333333pt;}
.w0_c00350{width:793.333333pt;}
.x0_c00350{left:0.000000pt;}
.x2_c00350{left:9.492253pt;}
.x1_c00350{left:52.000000pt;}
.x3f_c00350{left:81.669853pt;}
.x5_c00350{left:83.447453pt;}
.x15_c00350{left:84.367053pt;}
.x7d_c00350{left:85.607853pt;}
.x74_c00350{left:94.218653pt;}
.x7e_c00350{left:95.419853pt;}
.x40_c00350{left:102.970253pt;}
.x6_c00350{left:112.417053pt;}
.x6c_c00350{left:113.543453pt;}
.x57_c00350{left:115.505853pt;}
.x4b_c00350{left:121.784653pt;}
.x41_c00350{left:122.735053pt;}
.x7b_c00350{left:130.545053pt;}
.x1e_c00350{left:132.085053pt;}
.x16_c00350{left:133.158653pt;}
.x28_c00350{left:141.743053pt;}
.x4c_c00350{left:151.876253pt;}
.x63_c00350{left:158.779853pt;}
.x17_c00350{left:161.415453pt;}
.x52_c00350{left:166.523853pt;}
.x33_c00350{left:171.205453pt;}
.x5f_c00350{left:173.269053pt;}
.x66_c00350{left:176.366653pt;}
.x5a_c00350{left:179.107853pt;}
.x2e_c00350{left:180.133053pt;}
.x60_c00350{left:181.039453pt;}
.x7f_c00350{left:181.932653pt;}
.x7_c00350{left:190.759053pt;}
.x5b_c00350{left:191.766653pt;}
.x18_c00350{left:200.945053pt;}
.x53_c00350{left:206.414253pt;}
.x1f_c00350{left:210.488653pt;}
.x6d_c00350{left:211.403853pt;}
.x19_c00350{left:219.807853pt;}
.x8_c00350{left:220.868253pt;}
.x34_c00350{left:229.681453pt;}
.x42_c00350{left:231.076253pt;}
.x43_c00350{left:239.735453pt;}
.x69_c00350{left:240.712253pt;}
.x7c_c00350{left:247.404653pt;}
.x1a_c00350{left:250.260253pt;}
.x75_c00350{left:251.276653pt;}
.x9_c00350{left:258.175853pt;}
.x35_c00350{left:259.724653pt;}
.x2f_c00350{left:268.546653pt;}
.x1b_c00350{left:270.359453pt;}
.xa_c00350{left:279.551053pt;}
.x4d_c00350{left:281.007453pt;}
.x20_c00350{left:288.874653pt;}
.x29_c00350{left:289.974653pt;}
.x79_c00350{left:295.223853pt;}
.x1c_c00350{left:299.329053pt;}
.x80_c00350{left:300.693053pt;}
.x21_c00350{left:308.775853pt;}
.xb_c00350{left:309.911053pt;}
.x1d_c00350{left:319.164253pt;}
.x4e_c00350{left:328.963053pt;}
.x6a_c00350{left:330.155453pt;}
.x22_c00350{left:338.489053pt;}
.x23_c00350{left:345.295853pt;}
.x30_c00350{left:348.248253pt;}
.x6e_c00350{left:349.845453pt;}
.x4f_c00350{left:357.017453pt;}
.x5c_c00350{left:358.764253pt;}
.x36_c00350{left:363.951853pt;}
.x37_c00350{left:367.995453pt;}
.xc_c00350{left:377.772253pt;}
.x24_c00350{left:386.163053pt;}
.x44_c00350{left:388.301453pt;}
.xd_c00350{left:397.603053pt;}
.x6f_c00350{left:398.522653pt;}
.x45_c00350{left:407.564653pt;}
.x70_c00350{left:408.981453pt;}
.x31_c00350{left:417.037853pt;}
.x7a_c00350{left:417.983853pt;}
.x46_c00350{left:421.261853pt;}
.xe_c00350{left:426.044653pt;}
.x71_c00350{left:427.782653pt;}
.x38_c00350{left:437.255853pt;}
.x39_c00350{left:447.111853pt;}
.xf_c00350{left:448.471453pt;}
.x47_c00350{left:456.180253pt;}
.x72_c00350{left:457.399053pt;}
.x25_c00350{left:466.476253pt;}
.x76_c00350{left:467.901853pt;}
.x77_c00350{left:471.391053pt;}
.x54_c00350{left:476.385053pt;}
.x55_c00350{left:483.086253pt;}
.x10_c00350{left:484.969453pt;}
.x2a_c00350{left:486.659053pt;}
.x78_c00350{left:488.810653pt;}
.x58_c00350{left:493.831053pt;}
.x26_c00350{left:496.207053pt;}
.x11_c00350{left:505.117053pt;}
.x61_c00350{left:514.427453pt;}
.x2b_c00350{left:515.382253pt;}
.x73_c00350{left:516.768253pt;}
.x32_c00350{left:523.935853pt;}
.x50_c00350{left:526.074253pt;}
.x12_c00350{left:534.883053pt;}
.x3a_c00350{left:535.837853pt;}
.x27_c00350{left:543.295853pt;}
.x48_c00350{left:545.333053pt;}
.x5d_c00350{left:554.845853pt;}
.x56_c00350{left:563.254253pt;}
.x13_c00350{left:564.816253pt;}
.x62_c00350{left:566.404653pt;}
.x64_c00350{left:574.417053pt;}
.x14_c00350{left:575.402653pt;}
.x49_c00350{left:584.299453pt;}
.x5e_c00350{left:585.214653pt;}
.x67_c00350{left:587.573053pt;}
.x3_c00350{left:593.759453pt;}
.x59_c00350{left:603.765053pt;}
.x4_c00350{left:605.168653pt;}
.x68_c00350{left:606.849453pt;}
.x2c_c00350{left:612.648653pt;}
.x4a_c00350{left:614.039053pt;}
.x3e_c00350{left:622.949053pt;}
.x3c_c00350{left:623.908253pt;}
.x81_c00350{left:625.254653pt;}
.x3b_c00350{left:627.335853pt;}
.x82_c00350{left:630.028653pt;}
.x3d_c00350{left:631.159453pt;}
.x65_c00350{left:633.047053pt;}
.x6b_c00350{left:642.137453pt;}
.x2d_c00350{left:643.197853pt;}
.x51_c00350{left:653.036253pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2c2ad6c31ef93f527d164e4d.woff2')format("woff");}.ff1_c00351{font-family:ff1_c00351;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00351;src:url('chunks/assets/font_9edcb6789c9988cda3e50b07.woff2')format("woff");}.ff2_c00351{font-family:ff2_c00351;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00351;src:url('chunks/assets/font_0e19b28ada25686879e2d519.woff2')format("woff");}.ff3_c00351{font-family:ff3_c00351;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00351;src:url('chunks/assets/font_d7a8bec137d6d37444efa2c9.woff2')format("woff");}.ff4_c00351{font-family:ff4_c00351;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m8c_c00351{transform:matrix(0.073790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073790,0.000000,0.000000,0.250000,0,0);}
.m78_c00351{transform:matrix(0.076390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076390,0.000000,0.000000,0.250000,0,0);}
.m9e_c00351{transform:matrix(0.085714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085714,0.000000,0.000000,0.250000,0,0);}
.m4_c00351{transform:matrix(0.088944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088944,0.000000,0.000000,0.250000,0,0);}
.m82_c00351{transform:matrix(0.093656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093656,0.000000,0.000000,0.250000,0,0);}
.m91_c00351{transform:matrix(0.096154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096154,0.000000,0.000000,0.250000,0,0);}
.m9d_c00351{transform:matrix(0.107142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107142,0.000000,0.000000,0.250000,0,0);}
.m8e_c00351{transform:matrix(0.114905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114905,0.000000,0.000000,0.250000,0,0);}
.m32_c00351{transform:matrix(0.147686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147686,0.000000,0.000000,0.250000,0,0);}
.m16_c00351{transform:matrix(0.157895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157895,0.000000,0.000000,0.250000,0,0);}
.m77_c00351{transform:matrix(0.159723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159723,0.000000,0.000000,0.250000,0,0);}
.m4d_c00351{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);}
.mc_c00351{transform:matrix(0.184210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184210,0.000000,0.000000,0.250000,0,0);}
.m92_c00351{transform:matrix(0.184982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184982,0.000000,0.000000,0.250000,0,0);}
.ma0_c00351{transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);}
.m15_c00351{transform:matrix(0.186403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186403,0.000000,0.000000,0.250000,0,0);}
.m4b_c00351{transform:matrix(0.190972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190972,0.000000,0.000000,0.250000,0,0);}
.m26_c00351{transform:matrix(0.197876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197876,0.000000,0.000000,0.250000,0,0);}
.m4c_c00351{transform:matrix(0.197917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197917,0.000000,0.000000,0.250000,0,0);}
.m79_c00351{transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);}
.m34_c00351{transform:matrix(0.204138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204138,0.000000,0.000000,0.250000,0,0);}
.m49_c00351{transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);}
.m4a_c00351{transform:matrix(0.209325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209325,0.000000,0.000000,0.250000,0,0);}
.mb_c00351{transform:matrix(0.210526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210526,0.000000,0.000000,0.250000,0,0);}
.m9f_c00351{transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);}
.m7f_c00351{transform:matrix(0.213886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213886,0.000000,0.000000,0.250000,0,0);}
.m9c_c00351{transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);}
.m2_c00351{transform:matrix(0.236916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236916,0.000000,0.000000,0.250000,0,0);}
.m56_c00351{transform:matrix(0.241578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241578,0.000000,0.000000,0.250000,0,0);}
.m0_c00351{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00351{transform:matrix(0.254604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254604,0.000000,0.000000,0.250000,0,0);}
.m9b_c00351{transform:matrix(0.256653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256653,0.000000,0.000000,0.250000,0,0);}
.m70_c00351{transform:matrix(0.259071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259071,0.000000,0.000000,0.250000,0,0);}
.m1c_c00351{transform:matrix(0.263862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263862,0.000000,0.000000,0.250000,0,0);}
.m65_c00351{transform:matrix(0.264514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264514,0.000000,0.000000,0.250000,0,0);}
.m4e_c00351{transform:matrix(0.265212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265212,0.000000,0.000000,0.250000,0,0);}
.mbf_c00351{transform:matrix(0.265366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265366,0.000000,0.000000,0.250000,0,0);}
.m6a_c00351{transform:matrix(0.266075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266075,0.000000,0.000000,0.250000,0,0);}
.m6c_c00351{transform:matrix(0.266863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266863,0.000000,0.000000,0.250000,0,0);}
.ma_c00351{transform:matrix(0.267414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267414,0.000000,0.000000,0.250000,0,0);}
.m11_c00351{transform:matrix(0.268206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268206,0.000000,0.000000,0.250000,0,0);}
.m3_c00351{transform:matrix(0.268525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268525,0.000000,0.000000,0.250000,0,0);}
.m44_c00351{transform:matrix(0.269268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269268,0.000000,0.000000,0.250000,0,0);}
.m74_c00351{transform:matrix(0.269640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269640,0.000000,0.000000,0.250000,0,0);}
.m17_c00351{transform:matrix(0.270827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270827,0.000000,0.000000,0.250000,0,0);}
.m6_c00351{transform:matrix(0.271034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271034,0.000000,0.000000,0.250000,0,0);}
.m3e_c00351{transform:matrix(0.271457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271457,0.000000,0.000000,0.250000,0,0);}
.m7c_c00351{transform:matrix(0.271467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271467,0.000000,0.000000,0.250000,0,0);}
.m6f_c00351{transform:matrix(0.272037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272037,0.000000,0.000000,0.250000,0,0);}
.m22_c00351{transform:matrix(0.273223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273223,0.000000,0.000000,0.250000,0,0);}
.m14_c00351{transform:matrix(0.273819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273819,0.000000,0.000000,0.250000,0,0);}
.m4f_c00351{transform:matrix(0.274517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274517,0.000000,0.000000,0.250000,0,0);}
.m63_c00351{transform:matrix(0.275579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275579,0.000000,0.000000,0.250000,0,0);}
.m90_c00351{transform:matrix(0.276294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276294,0.000000,0.000000,0.250000,0,0);}
.mb4_c00351{transform:matrix(0.276406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276406,0.000000,0.000000,0.250000,0,0);}
.m76_c00351{transform:matrix(0.277621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277621,0.000000,0.000000,0.250000,0,0);}
.ma6_c00351{transform:matrix(0.277957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277957,0.000000,0.000000,0.250000,0,0);}
.m5d_c00351{transform:matrix(0.278623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278623,0.000000,0.000000,0.250000,0,0);}
.m37_c00351{transform:matrix(0.279475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279475,0.000000,0.000000,0.250000,0,0);}
.mae_c00351{transform:matrix(0.280741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280741,0.000000,0.000000,0.250000,0,0);}
.m7d_c00351{transform:matrix(0.280916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280916,0.000000,0.000000,0.250000,0,0);}
.m1_c00351{transform:matrix(0.281335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281335,0.000000,0.000000,0.250000,0,0);}
.m95_c00351{transform:matrix(0.281374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281374,0.000000,0.000000,0.250000,0,0);}
.ma4_c00351{transform:matrix(0.282899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282899,0.000000,0.000000,0.250000,0,0);}
.m58_c00351{transform:matrix(0.283440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283440,0.000000,0.000000,0.250000,0,0);}
.m93_c00351{transform:matrix(0.283444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283444,0.000000,0.000000,0.250000,0,0);}
.m81_c00351{transform:matrix(0.284608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284608,0.000000,0.000000,0.250000,0,0);}
.m20_c00351{transform:matrix(0.284751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284751,0.000000,0.000000,0.250000,0,0);}
.m54_c00351{transform:matrix(0.285029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285029,0.000000,0.000000,0.250000,0,0);}
.md_c00351{transform:matrix(0.286336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286336,0.000000,0.000000,0.250000,0,0);}
.m5c_c00351{transform:matrix(0.286644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286644,0.000000,0.000000,0.250000,0,0);}
.m87_c00351{transform:matrix(0.286894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286894,0.000000,0.000000,0.250000,0,0);}
.m42_c00351{transform:matrix(0.287262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287262,0.000000,0.000000,0.250000,0,0);}
.m8d_c00351{transform:matrix(0.287379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287379,0.000000,0.000000,0.250000,0,0);}
.maa_c00351{transform:matrix(0.287380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287380,0.000000,0.000000,0.250000,0,0);}
.m3a_c00351{transform:matrix(0.287940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287940,0.000000,0.000000,0.250000,0,0);}
.m72_c00351{transform:matrix(0.287964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287964,0.000000,0.000000,0.250000,0,0);}
.ma3_c00351{transform:matrix(0.288164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288164,0.000000,0.000000,0.250000,0,0);}
.m7e_c00351{transform:matrix(0.288578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288578,0.000000,0.000000,0.250000,0,0);}
.m13_c00351{transform:matrix(0.289373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289373,0.000000,0.000000,0.250000,0,0);}
.m33_c00351{transform:matrix(0.289591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289591,0.000000,0.000000,0.250000,0,0);}
.m12_c00351{transform:matrix(0.291315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291315,0.000000,0.000000,0.250000,0,0);}
.m1f_c00351{transform:matrix(0.292025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292025,0.000000,0.000000,0.250000,0,0);}
.m5e_c00351{transform:matrix(0.292090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292090,0.000000,0.000000,0.250000,0,0);}
.mb2_c00351{transform:matrix(0.292439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292439,0.000000,0.000000,0.250000,0,0);}
.m57_c00351{transform:matrix(0.292745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292745,0.000000,0.000000,0.250000,0,0);}
.m85_c00351{transform:matrix(0.292888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292888,0.000000,0.000000,0.250000,0,0);}
.m88_c00351{transform:matrix(0.293082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293082,0.000000,0.000000,0.250000,0,0);}
.m69_c00351{transform:matrix(0.293664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293664,0.000000,0.000000,0.250000,0,0);}
.m7b_c00351{transform:matrix(0.293856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293856,0.000000,0.000000,0.250000,0,0);}
.m89_c00351{transform:matrix(0.294034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294034,0.000000,0.000000,0.250000,0,0);}
.m2b_c00351{transform:matrix(0.294046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294046,0.000000,0.000000,0.250000,0,0);}
.m47_c00351{transform:matrix(0.294105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294105,0.000000,0.000000,0.250000,0,0);}
.m24_c00351{transform:matrix(0.295993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295993,0.000000,0.000000,0.250000,0,0);}
.m29_c00351{transform:matrix(0.296263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296263,0.000000,0.000000,0.250000,0,0);}
.m71_c00351{transform:matrix(0.296294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296294,0.000000,0.000000,0.250000,0,0);}
.m36_c00351{transform:matrix(0.297036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297036,0.000000,0.000000,0.250000,0,0);}
.m1a_c00351{transform:matrix(0.297359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297359,0.000000,0.000000,0.250000,0,0);}
.m5b_c00351{transform:matrix(0.297684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297684,0.000000,0.000000,0.250000,0,0);}
.mba_c00351{transform:matrix(0.298459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298459,0.000000,0.000000,0.250000,0,0);}
.ma9_c00351{transform:matrix(0.298866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298866,0.000000,0.000000,0.250000,0,0);}
.mb0_c00351{transform:matrix(0.299850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299850,0.000000,0.000000,0.250000,0,0);}
.m84_c00351{transform:matrix(0.300138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300138,0.000000,0.000000,0.250000,0,0);}
.m5f_c00351{transform:matrix(0.300577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300577,0.000000,0.000000,0.250000,0,0);}
.m3b_c00351{transform:matrix(0.300746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300746,0.000000,0.000000,0.250000,0,0);}
.m1e_c00351{transform:matrix(0.301158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301158,0.000000,0.000000,0.250000,0,0);}
.m2e_c00351{transform:matrix(0.302058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302058,0.000000,0.000000,0.250000,0,0);}
.m83_c00351{transform:matrix(0.305305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305305,0.000000,0.000000,0.250000,0,0);}
.mc0_c00351{transform:matrix(0.307426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307426,0.000000,0.000000,0.250000,0,0);}
.mb7_c00351{transform:matrix(0.307812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307812,0.000000,0.000000,0.250000,0,0);}
.m48_c00351{transform:matrix(0.308025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308025,0.000000,0.000000,0.250000,0,0);}
.ma2_c00351{transform:matrix(0.308065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308065,0.000000,0.000000,0.250000,0,0);}
.m41_c00351{transform:matrix(0.308186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308186,0.000000,0.000000,0.250000,0,0);}
.m23_c00351{transform:matrix(0.309219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309219,0.000000,0.000000,0.250000,0,0);}
.m25_c00351{transform:matrix(0.310046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310046,0.000000,0.000000,0.250000,0,0);}
.m97_c00351{transform:matrix(0.311016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311016,0.000000,0.000000,0.250000,0,0);}
.m61_c00351{transform:matrix(0.311234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311234,0.000000,0.000000,0.250000,0,0);}
.m30_c00351{transform:matrix(0.311362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311362,0.000000,0.000000,0.250000,0,0);}
.m55_c00351{transform:matrix(0.311760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311760,0.000000,0.000000,0.250000,0,0);}
.m73_c00351{transform:matrix(0.311820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311820,0.000000,0.000000,0.250000,0,0);}
.m53_c00351{transform:matrix(0.312181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312181,0.000000,0.000000,0.250000,0,0);}
.m64_c00351{transform:matrix(0.313483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313483,0.000000,0.000000,0.250000,0,0);}
.mbe_c00351{transform:matrix(0.313850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313850,0.000000,0.000000,0.250000,0,0);}
.m8a_c00351{transform:matrix(0.314022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314022,0.000000,0.000000,0.250000,0,0);}
.m3c_c00351{transform:matrix(0.314867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314867,0.000000,0.000000,0.250000,0,0);}
.mbd_c00351{transform:matrix(0.315549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315549,0.000000,0.000000,0.250000,0,0);}
.mf_c00351{transform:matrix(0.316667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316667,0.000000,0.000000,0.250000,0,0);}
.m35_c00351{transform:matrix(0.316775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316775,0.000000,0.000000,0.250000,0,0);}
.m9a_c00351{transform:matrix(0.317395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317395,0.000000,0.000000,0.250000,0,0);}
.mb9_c00351{transform:matrix(0.318188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318188,0.000000,0.000000,0.250000,0,0);}
.me_c00351{transform:matrix(0.319135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319135,0.000000,0.000000,0.250000,0,0);}
.m7_c00351{transform:matrix(0.320044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320044,0.000000,0.000000,0.250000,0,0);}
.ma8_c00351{transform:matrix(0.320630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320630,0.000000,0.000000,0.250000,0,0);}
.m5a_c00351{transform:matrix(0.320882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320882,0.000000,0.000000,0.250000,0,0);}
.mad_c00351{transform:matrix(0.320901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320901,0.000000,0.000000,0.250000,0,0);}
.m7a_c00351{transform:matrix(0.322344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322344,0.000000,0.000000,0.250000,0,0);}
.mb1_c00351{transform:matrix(0.322389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322389,0.000000,0.000000,0.250000,0,0);}
.m10_c00351{transform:matrix(0.324737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324737,0.000000,0.000000,0.250000,0,0);}
.m40_c00351{transform:matrix(0.325318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325318,0.000000,0.000000,0.250000,0,0);}
.m60_c00351{transform:matrix(0.327056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327056,0.000000,0.000000,0.250000,0,0);}
.mc1_c00351{transform:matrix(0.327167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327167,0.000000,0.000000,0.250000,0,0);}
.m99_c00351{transform:matrix(0.327507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327507,0.000000,0.000000,0.250000,0,0);}
.m67_c00351{transform:matrix(0.328220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328220,0.000000,0.000000,0.250000,0,0);}
.mb5_c00351{transform:matrix(0.329449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329449,0.000000,0.000000,0.250000,0,0);}
.m39_c00351{transform:matrix(0.329622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329622,0.000000,0.000000,0.250000,0,0);}
.m27_c00351{transform:matrix(0.329676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329676,0.000000,0.000000,0.250000,0,0);}
.mbb_c00351{transform:matrix(0.330091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330091,0.000000,0.000000,0.250000,0,0);}
.m50_c00351{transform:matrix(0.330281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330281,0.000000,0.000000,0.250000,0,0);}
.mac_c00351{transform:matrix(0.331918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331918,0.000000,0.000000,0.250000,0,0);}
.ma1_c00351{transform:matrix(0.332106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332106,0.000000,0.000000,0.250000,0,0);}
.m59_c00351{transform:matrix(0.333316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333316,0.000000,0.000000,0.250000,0,0);}
.m2c_c00351{transform:matrix(0.333397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333397,0.000000,0.000000,0.250000,0,0);}
.m8_c00351{transform:matrix(0.333832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333832,0.000000,0.000000,0.250000,0,0);}
.m51_c00351{transform:matrix(0.334825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334825,0.000000,0.000000,0.250000,0,0);}
.m1b_c00351{transform:matrix(0.336513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336513,0.000000,0.000000,0.250000,0,0);}
.m8f_c00351{transform:matrix(0.336595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336595,0.000000,0.000000,0.250000,0,0);}
.m62_c00351{transform:matrix(0.336648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336648,0.000000,0.000000,0.250000,0,0);}
.m68_c00351{transform:matrix(0.338482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338482,0.000000,0.000000,0.250000,0,0);}
.m66_c00351{transform:matrix(0.338816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338816,0.000000,0.000000,0.250000,0,0);}
.m18_c00351{transform:matrix(0.338848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338848,0.000000,0.000000,0.250000,0,0);}
.m21_c00351{transform:matrix(0.340173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340173,0.000000,0.000000,0.250000,0,0);}
.m94_c00351{transform:matrix(0.340192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340192,0.000000,0.000000,0.250000,0,0);}
.m9_c00351{transform:matrix(0.340499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340499,0.000000,0.000000,0.250000,0,0);}
.m3d_c00351{transform:matrix(0.341106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341106,0.000000,0.000000,0.250000,0,0);}
.m98_c00351{transform:matrix(0.341230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341230,0.000000,0.000000,0.250000,0,0);}
.mab_c00351{transform:matrix(0.342014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342014,0.000000,0.000000,0.250000,0,0);}
.m5_c00351{transform:matrix(0.342744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342744,0.000000,0.000000,0.250000,0,0);}
.m52_c00351{transform:matrix(0.344017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344017,0.000000,0.000000,0.250000,0,0);}
.mb3_c00351{transform:matrix(0.345399,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345399,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345399,0.000000,0.000000,0.250000,0,0);}
.m3f_c00351{transform:matrix(0.346692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346692,0.000000,0.000000,0.250000,0,0);}
.m28_c00351{transform:matrix(0.347155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347155,0.000000,0.000000,0.250000,0,0);}
.m96_c00351{transform:matrix(0.350567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350567,0.000000,0.000000,0.250000,0,0);}
.mbc_c00351{transform:matrix(0.351514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351514,0.000000,0.000000,0.250000,0,0);}
.mb6_c00351{transform:matrix(0.352785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352785,0.000000,0.000000,0.250000,0,0);}
.m6b_c00351{transform:matrix(0.352813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352813,0.000000,0.000000,0.250000,0,0);}
.ma7_c00351{transform:matrix(0.352871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352871,0.000000,0.000000,0.250000,0,0);}
.m2d_c00351{transform:matrix(0.353395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353395,0.000000,0.000000,0.250000,0,0);}
.m75_c00351{transform:matrix(0.362086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362086,0.000000,0.000000,0.250000,0,0);}
.m38_c00351{transform:matrix(0.365477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365477,0.000000,0.000000,0.250000,0,0);}
.m86_c00351{transform:matrix(0.365725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365725,0.000000,0.000000,0.250000,0,0);}
.m80_c00351{transform:matrix(0.365825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365825,0.000000,0.000000,0.250000,0,0);}
.m1d_c00351{transform:matrix(0.370814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370814,0.000000,0.000000,0.250000,0,0);}
.m19_c00351{transform:matrix(0.375615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375615,0.000000,0.000000,0.250000,0,0);}
.m2a_c00351{transform:matrix(0.378888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378888,0.000000,0.000000,0.250000,0,0);}
.m43_c00351{transform:matrix(0.380125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380125,0.000000,0.000000,0.250000,0,0);}
.m31_c00351{transform:matrix(0.382702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382702,0.000000,0.000000,0.250000,0,0);}
.m6e_c00351{transform:matrix(0.383088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383088,0.000000,0.000000,0.250000,0,0);}
.ma5_c00351{transform:matrix(0.384060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384060,0.000000,0.000000,0.250000,0,0);}
.mc2_c00351{transform:matrix(0.385481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385481,0.000000,0.000000,0.250000,0,0);}
.mb8_c00351{transform:matrix(0.385879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385879,0.000000,0.000000,0.250000,0,0);}
.m8b_c00351{transform:matrix(0.389789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389789,0.000000,0.000000,0.250000,0,0);}
.m6d_c00351{transform:matrix(0.429477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429477,0.000000,0.000000,0.250000,0,0);}
.maf_c00351{transform:matrix(0.435691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435691,0.000000,0.000000,0.250000,0,0);}
.m46_c00351{transform:matrix(0.437430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437430,0.000000,0.000000,0.250000,0,0);}
.m45_c00351{transform:matrix(0.444701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444701,0.000000,0.000000,0.250000,0,0);}
.v1_c00351{vertical-align:-88.367400px;}
.v0_c00351{vertical-align:0.000000px;}
.ls5_c00351{letter-spacing:-2.993767px;}
.ls8_c00351{letter-spacing:-2.668050px;}
.ls14_c00351{letter-spacing:-1.509354px;}
.lsb_c00351{letter-spacing:-1.425501px;}
.ls12_c00351{letter-spacing:-1.250172px;}
.lsf_c00351{letter-spacing:-0.777546px;}
.ls3_c00351{letter-spacing:0.000000px;}
.ls0_c00351{letter-spacing:1.532223px;}
.ls6_c00351{letter-spacing:1.898127px;}
.ls1_c00351{letter-spacing:2.279277px;}
.lsa_c00351{letter-spacing:2.797641px;}
.lse_c00351{letter-spacing:2.995839px;}
.lsd_c00351{letter-spacing:3.177900px;}
.ls10_c00351{letter-spacing:3.653110px;}
.ls15_c00351{letter-spacing:3.773385px;}
.ls7_c00351{letter-spacing:3.811500px;}
.ls4_c00351{letter-spacing:4.276810px;}
.ls2_c00351{letter-spacing:8.995140px;}
.ls13_c00351{letter-spacing:49.896198px;}
.lsc_c00351{letter-spacing:51.321798px;}
.ls9_c00351{letter-spacing:54.172998px;}
.ls11_c00351{letter-spacing:55.598598px;}
.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:-19.057500px;}
.ws1_c00351{word-spacing:-0.915750px;}
.ws4_c00351{word-spacing:0.000000px;}
.ws2_c00351{word-spacing:1.905750px;}
.ws3_c00351{word-spacing:14.559930px;}
._6_c00351{margin-left:-10.062360px;}
._10_c00351{margin-left:-4.444209px;}
._e_c00351{width:3.506580px;}
._a_c00351{width:5.565780px;}
._f_c00351{width:6.785460px;}
._b_c00351{width:8.766450px;}
._2_c00351{width:10.291050px;}
._7_c00351{width:11.891880px;}
._1_c00351{width:13.492710px;}
._4_c00351{width:15.169770px;}
._d_c00351{width:16.693380px;}
._0_c00351{width:20.658330px;}
._9_c00351{width:22.564080px;}
._14_c00351{width:23.882760px;}
._13_c00351{width:29.436462px;}
._3_c00351{width:31.254300px;}
._c_c00351{width:33.311520px;}
._8_c00351{width:35.599410px;}
._5_c00351{width:41.697810px;}
._12_c00351{width:44.694540px;}
._15_c00351{width:71.577000px;}
._11_c00351{width:214.739910px;}
.fc0_c00351{color:transparent;}
.fs5_c00351{font-size:22.176000px;}
.fs0_c00351{font-size:27.720000px;}
.fsc_c00351{font-size:28.512000px;}
.fs4_c00351{font-size:33.660000px;}
.fs7_c00351{font-size:44.748000px;}
.fse_c00351{font-size:49.896198px;}
.fs6_c00351{font-size:51.321798px;}
.fs3_c00351{font-size:54.172998px;}
.fsb_c00351{font-size:55.598598px;}
.fs13_c00351{font-size:56.628000px;}
.fs9_c00351{font-size:63.558000px;}
.fs12_c00351{font-size:68.112198px;}
.fsd_c00351{font-size:70.884000px;}
.fsa_c00351{font-size:73.062198px;}
.fs2_c00351{font-size:76.230000px;}
.fs10_c00351{font-size:76.824000px;}
.fs11_c00351{font-size:78.804000px;}
.fs8_c00351{font-size:79.200000px;}
.fs1_c00351{font-size:85.536198px;}
.fsf_c00351{font-size:91.872198px;}
.y0_c00351{bottom:0.000000px;}
.y22_c00351{bottom:41.962185px;}
.y1_c00351{bottom:76.500000px;}
.y21_c00351{bottom:146.387385px;}
.y20_c00351{bottom:210.182985px;}
.y1f_c00351{bottom:225.513135px;}
.y1e_c00351{bottom:244.397385px;}
.y1d_c00351{bottom:270.063135px;}
.y1c_c00351{bottom:278.973135px;}
.y1b_c00351{bottom:311.761935px;}
.y1a_c00351{bottom:344.550735px;}
.y19_c00351{bottom:369.498735px;}
.y18_c00351{bottom:376.983135px;}
.y17_c00351{bottom:408.697785px;}
.y15_c00351{bottom:441.483120px;}
.y16_c00351{bottom:441.491535px;}
.y14_c00351{bottom:473.918985px;}
.y13_c00351{bottom:488.531385px;}
.y12_c00351{bottom:530.947935px;}
.y11_c00351{bottom:538.432335px;}
.y10_c00351{bottom:571.928985px;}
.yf_c00351{bottom:604.361385px;}
.ye_c00351{bottom:636.798735px;}
.yd_c00351{bottom:670.295385px;}
.yc_c00351{bottom:689.184585px;}
.yb_c00351{bottom:692.753535px;}
.ya_c00351{bottom:703.084185px;}
.y9_c00351{bottom:735.516585px;}
.y7_c00351{bottom:832.816260px;}
.y8_c00351{bottom:832.818735px;}
.y6_c00351{bottom:864.889785px;}
.y5_c00351{bottom:898.391385px;}
.y4_c00351{bottom:930.828735px;}
.y3_c00351{bottom:1079.442585px;}
.y2_c00351{bottom:1082.293785px;}
.h7_c00351{height:23.128875px;}
.h2_c00351{height:28.911094px;}
.he_c00351{height:29.737125px;}
.h6_c00351{height:33.035449px;}
.hf_c00351{height:33.230868px;}
.h8_c00351{height:34.180317px;}
.h5_c00351{height:36.079217px;}
.hd_c00351{height:37.028666px;}
.h9_c00351{height:43.917715px;}
.h13_c00351{height:59.061234px;}
.hb_c00351{height:66.289008px;}
.hc_c00351{height:71.706552px;}
.h4_c00351{height:74.815576px;}
.h11_c00351{height:75.398555px;}
.h12_c00351{height:77.341816px;}
.ha_c00351{height:82.603125px;}
.h3_c00351{height:83.949101px;}
.h10_c00351{height:95.819832px;}
.h1_c00351{height:1110.000000px;}
.h0_c00351{height:1263.000000px;}
.w1_c00351{width:775.500000px;}
.w0_c00351{width:892.500000px;}
.x0_c00351{left:0.000000px;}
.x6d_c00351{left:28.850235px;}
.x1_c00351{left:58.500000px;}
.x2a_c00351{left:89.392695px;}
.x10_c00351{left:90.537135px;}
.x4f_c00351{left:91.660785px;}
.x81_c00351{left:93.883335px;}
.x2b_c00351{left:101.724135px;}
.x6e_c00351{left:103.149735px;}
.x69_c00351{left:113.510085px;}
.x7e_c00351{left:114.821835px;}
.x4a_c00351{left:121.870635px;}
.x11_c00351{left:123.469485px;}
.x83_c00351{left:131.270685px;}
.x50_c00351{left:132.562635px;}
.x38_c00351{left:134.146635px;}
.x6f_c00351{left:135.497985px;}
.x5_c00351{left:144.927735px;}
.x7f_c00351{left:146.422635px;}
.x39_c00351{left:155.401935px;}
.x73_c00351{left:156.535485px;}
.x70_c00351{left:159.015435px;}
.x5e_c00351{left:166.801785px;}
.x76_c00351{left:168.712485px;}
.x12_c00351{left:176.766135px;}
.x6_c00351{left:178.335285px;}
.x59_c00351{left:179.404485px;}
.x5c_c00351{left:185.488035px;}
.x51_c00351{left:189.363885px;}
.x63_c00351{left:190.452885px;}
.x87_c00351{left:197.080935px;}
.x3a_c00351{left:199.169835px;}
.x13_c00351{left:200.639985px;}
.x74_c00351{left:203.565435px;}
.x4b_c00351{left:211.396335px;}
.x3b_c00351{left:212.901135px;}
.x14_c00351{left:221.989335px;}
.x22_c00351{left:223.256535px;}
.x3c_c00351{left:234.290085px;}
.x23_c00351{left:245.135535px;}
.x52_c00351{left:256.406685px;}
.x5f_c00351{left:257.436285px;}
.x5d_c00351{left:261.094335px;}
.x56_c00351{left:265.499835px;}
.x15_c00351{left:267.365985px;}
.x75_c00351{left:268.504485px;}
.x16_c00351{left:278.122335px;}
.x7a_c00351{left:279.201435px;}
.x5a_c00351{left:290.165685px;}
.x3d_c00351{left:300.951735px;}
.x7_c00351{left:304.891935px;}
.x17_c00351{left:310.935885px;}
.x24_c00351{left:311.965485px;}
.x8_c00351{left:313.311885px;}
.x2f_c00351{left:322.018935px;}
.x7b_c00351{left:323.399985px;}
.x30_c00351{left:332.468385px;}
.x9_c00351{left:334.002885px;}
.x3e_c00351{left:344.506785px;}
.x60_c00351{left:346.199685px;}
.x77_c00351{left:351.040785px;}
.x3f_c00351{left:356.109585px;}
.x84_c00351{left:357.287685px;}
.xa_c00351{left:366.687735px;}
.xb_c00351{left:378.612285px;}
.x2c_c00351{left:389.319135px;}
.x61_c00351{left:390.373485px;}
.x64_c00351{left:400.580385px;}
.x40_c00351{left:409.485435px;}
.xc_c00351{left:410.524935px;}
.x57_c00351{left:411.782235px;}
.x18_c00351{left:413.460285px;}
.x53_c00351{left:422.439585px;}
.x80_c00351{left:423.875085px;}
.x2d_c00351{left:433.819635px;}
.x19_c00351{left:444.501735px;}
.x78_c00351{left:445.615485px;}
.xd_c00351{left:454.357185px;}
.x31_c00351{left:455.931285px;}
.x1a_c00351{left:465.955035px;}
.x65_c00351{left:467.004435px;}
.x25_c00351{left:475.731285px;}
.x45_c00351{left:477.686535px;}
.x5b_c00351{left:479.745735px;}
.x54_c00351{left:487.497435px;}
.x71_c00351{left:489.823935px;}
.x41_c00351{left:499.322985px;}
.x1b_c00351{left:500.520885px;}
.x1c_c00351{left:510.668385px;}
.x42_c00351{left:511.886085px;}
.x44_c00351{left:518.415135px;}
.x46_c00351{left:521.553435px;}
.x85_c00351{left:523.607685px;}
.x32_c00351{left:532.245435px;}
.x7c_c00351{left:534.299685px;}
.x1d_c00351{left:542.016735px;}
.x58_c00351{left:543.521535px;}
.x6a_c00351{left:544.590735px;}
.x26_c00351{left:555.050085px;}
.x86_c00351{left:556.431135px;}
.xe_c00351{left:564.163035px;}
.x33_c00351{left:565.207485px;}
.x27_c00351{left:576.394485px;}
.x47_c00351{left:577.508235px;}
.x34_c00351{left:587.635935px;}
.x66_c00351{left:588.888285px;}
.x2_c00351{left:590.432685px;}
.x4c_c00351{left:599.812935px;}
.x35_c00351{left:609.584235px;}
.x67_c00351{left:610.653435px;}
.x43_c00351{left:612.737385px;}
.x2e_c00351{left:620.989035px;}
.x68_c00351{left:622.068135px;}
.x28_c00351{left:632.037435px;}
.x1e_c00351{left:633.081885px;}
.x36_c00351{left:641.501835px;}
.x4d_c00351{left:644.491635px;}
.x79_c00351{left:645.739035px;}
.x48_c00351{left:653.223435px;}
.x7d_c00351{left:655.926135px;}
.x3_c00351{left:664.737135px;}
.x1f_c00351{left:665.811285px;}
.xf_c00351{left:676.389435px;}
.x82_c00351{left:679.240635px;}
.x37_c00351{left:686.368635px;}
.x4_c00351{left:687.744735px;}
.x20_c00351{left:698.887185px;}
.x55_c00351{left:709.935585px;}
.x29_c00351{left:720.043485px;}
.x62_c00351{left:721.112685px;}
.x6b_c00351{left:722.181885px;}
.x49_c00351{left:731.804685px;}
.x21_c00351{left:733.101585px;}
.x4e_c00351{left:735.032085px;}
.x72_c00351{left:743.565885px;}
.x6c_c00351{left:754.614285px;}
@media print{
.v1_c00351{vertical-align:-78.548800pt;}
.v0_c00351{vertical-align:0.000000pt;}
.ls5_c00351{letter-spacing:-2.661126pt;}
.ls8_c00351{letter-spacing:-2.371600pt;}
.ls14_c00351{letter-spacing:-1.341648pt;}
.lsb_c00351{letter-spacing:-1.267112pt;}
.ls12_c00351{letter-spacing:-1.111264pt;}
.lsf_c00351{letter-spacing:-0.691152pt;}
.ls3_c00351{letter-spacing:0.000000pt;}
.ls0_c00351{letter-spacing:1.361976pt;}
.ls6_c00351{letter-spacing:1.687224pt;}
.ls1_c00351{letter-spacing:2.026024pt;}
.lsa_c00351{letter-spacing:2.486792pt;}
.lse_c00351{letter-spacing:2.662968pt;}
.lsd_c00351{letter-spacing:2.824800pt;}
.ls10_c00351{letter-spacing:3.247209pt;}
.ls15_c00351{letter-spacing:3.354120pt;}
.ls7_c00351{letter-spacing:3.388000pt;}
.ls4_c00351{letter-spacing:3.801609pt;}
.ls2_c00351{letter-spacing:7.995680pt;}
.ls13_c00351{letter-spacing:44.352176pt;}
.lsc_c00351{letter-spacing:45.619376pt;}
.ls9_c00351{letter-spacing:48.153776pt;}
.ls11_c00351{letter-spacing:49.420976pt;}
.ws0_c00351{word-spacing:-16.940000pt;}
.ws1_c00351{word-spacing:-0.814000pt;}
.ws4_c00351{word-spacing:0.000000pt;}
.ws2_c00351{word-spacing:1.694000pt;}
.ws3_c00351{word-spacing:12.942160pt;}
._6_c00351{margin-left:-8.944320pt;}
._10_c00351{margin-left:-3.950408pt;}
._e_c00351{width:3.116960pt;}
._a_c00351{width:4.947360pt;}
._f_c00351{width:6.031520pt;}
._b_c00351{width:7.792400pt;}
._2_c00351{width:9.147600pt;}
._7_c00351{width:10.570560pt;}
._1_c00351{width:11.993520pt;}
._4_c00351{width:13.484240pt;}
._d_c00351{width:14.838560pt;}
._0_c00351{width:18.362960pt;}
._9_c00351{width:20.056960pt;}
._14_c00351{width:21.229120pt;}
._13_c00351{width:26.165744pt;}
._3_c00351{width:27.781600pt;}
._c_c00351{width:29.610240pt;}
._8_c00351{width:31.643920pt;}
._5_c00351{width:37.064720pt;}
._12_c00351{width:39.728480pt;}
._15_c00351{width:63.624000pt;}
._11_c00351{width:190.879920pt;}
.fs5_c00351{font-size:19.712000pt;}
.fs0_c00351{font-size:24.640000pt;}
.fsc_c00351{font-size:25.344000pt;}
.fs4_c00351{font-size:29.920000pt;}
.fs7_c00351{font-size:39.776000pt;}
.fse_c00351{font-size:44.352176pt;}
.fs6_c00351{font-size:45.619376pt;}
.fs3_c00351{font-size:48.153776pt;}
.fsb_c00351{font-size:49.420976pt;}
.fs13_c00351{font-size:50.336000pt;}
.fs9_c00351{font-size:56.496000pt;}
.fs12_c00351{font-size:60.544176pt;}
.fsd_c00351{font-size:63.008000pt;}
.fsa_c00351{font-size:64.944176pt;}
.fs2_c00351{font-size:67.760000pt;}
.fs10_c00351{font-size:68.288000pt;}
.fs11_c00351{font-size:70.048000pt;}
.fs8_c00351{font-size:70.400000pt;}
.fs1_c00351{font-size:76.032176pt;}
.fsf_c00351{font-size:81.664176pt;}
.y0_c00351{bottom:0.000000pt;}
.y22_c00351{bottom:37.299720pt;}
.y1_c00351{bottom:68.000000pt;}
.y21_c00351{bottom:130.122120pt;}
.y20_c00351{bottom:186.829320pt;}
.y1f_c00351{bottom:200.456120pt;}
.y1e_c00351{bottom:217.242120pt;}
.y1d_c00351{bottom:240.056120pt;}
.y1c_c00351{bottom:247.976120pt;}
.y1b_c00351{bottom:277.121720pt;}
.y1a_c00351{bottom:306.267320pt;}
.y19_c00351{bottom:328.443320pt;}
.y18_c00351{bottom:335.096120pt;}
.y17_c00351{bottom:363.286920pt;}
.y15_c00351{bottom:392.429440pt;}
.y16_c00351{bottom:392.436920pt;}
.y14_c00351{bottom:421.261320pt;}
.y13_c00351{bottom:434.250120pt;}
.y12_c00351{bottom:471.953720pt;}
.y11_c00351{bottom:478.606520pt;}
.y10_c00351{bottom:508.381320pt;}
.yf_c00351{bottom:537.210120pt;}
.ye_c00351{bottom:566.043320pt;}
.yd_c00351{bottom:595.818120pt;}
.yc_c00351{bottom:612.608520pt;}
.yb_c00351{bottom:615.780920pt;}
.ya_c00351{bottom:624.963720pt;}
.y9_c00351{bottom:653.792520pt;}
.y7_c00351{bottom:740.281120pt;}
.y8_c00351{bottom:740.283320pt;}
.y6_c00351{bottom:768.790920pt;}
.y5_c00351{bottom:798.570120pt;}
.y4_c00351{bottom:827.403320pt;}
.y3_c00351{bottom:959.504520pt;}
.y2_c00351{bottom:962.038920pt;}
.h7_c00351{height:20.559000pt;}
.h2_c00351{height:25.698750pt;}
.he_c00351{height:26.433000pt;}
.h6_c00351{height:29.364844pt;}
.hf_c00351{height:29.538549pt;}
.h8_c00351{height:30.382504pt;}
.h5_c00351{height:32.070415pt;}
.hd_c00351{height:32.914370pt;}
.h9_c00351{height:39.037969pt;}
.h13_c00351{height:52.498875pt;}
.hb_c00351{height:58.923563pt;}
.hc_c00351{height:63.739157pt;}
.h4_c00351{height:66.502734pt;}
.h11_c00351{height:67.020938pt;}
.h12_c00351{height:68.748281pt;}
.ha_c00351{height:73.425000pt;}
.h3_c00351{height:74.621423pt;}
.h10_c00351{height:85.173184pt;}
.h1_c00351{height:986.666667pt;}
.h0_c00351{height:1122.666667pt;}
.w1_c00351{width:689.333333pt;}
.w0_c00351{width:793.333333pt;}
.x0_c00351{left:0.000000pt;}
.x6d_c00351{left:25.644653pt;}
.x1_c00351{left:52.000000pt;}
.x2a_c00351{left:79.460173pt;}
.x10_c00351{left:80.477453pt;}
.x4f_c00351{left:81.476253pt;}
.x81_c00351{left:83.451853pt;}
.x2b_c00351{left:90.421453pt;}
.x6e_c00351{left:91.688653pt;}
.x69_c00351{left:100.897853pt;}
.x7e_c00351{left:102.063853pt;}
.x4a_c00351{left:108.329453pt;}
.x11_c00351{left:109.750653pt;}
.x83_c00351{left:116.685053pt;}
.x50_c00351{left:117.833453pt;}
.x38_c00351{left:119.241453pt;}
.x6f_c00351{left:120.442653pt;}
.x5_c00351{left:128.824653pt;}
.x7f_c00351{left:130.153453pt;}
.x39_c00351{left:138.135053pt;}
.x73_c00351{left:139.142653pt;}
.x70_c00351{left:141.347053pt;}
.x5e_c00351{left:148.268253pt;}
.x76_c00351{left:149.966653pt;}
.x12_c00351{left:157.125453pt;}
.x6_c00351{left:158.520253pt;}
.x59_c00351{left:159.470653pt;}
.x5c_c00351{left:164.878253pt;}
.x51_c00351{left:168.323453pt;}
.x63_c00351{left:169.291453pt;}
.x87_c00351{left:175.183053pt;}
.x3a_c00351{left:177.039853pt;}
.x13_c00351{left:178.346653pt;}
.x74_c00351{left:180.947053pt;}
.x4b_c00351{left:187.907853pt;}
.x3b_c00351{left:189.245453pt;}
.x14_c00351{left:197.323853pt;}
.x22_c00351{left:198.450253pt;}
.x3c_c00351{left:208.257853pt;}
.x23_c00351{left:217.898253pt;}
.x52_c00351{left:227.917053pt;}
.x5f_c00351{left:228.832253pt;}
.x5d_c00351{left:232.083853pt;}
.x56_c00351{left:235.999853pt;}
.x15_c00351{left:237.658653pt;}
.x75_c00351{left:238.670653pt;}
.x16_c00351{left:247.219853pt;}
.x7a_c00351{left:248.179053pt;}
.x5a_c00351{left:257.925053pt;}
.x3d_c00351{left:267.512653pt;}
.x7_c00351{left:271.015053pt;}
.x17_c00351{left:276.387453pt;}
.x24_c00351{left:277.302653pt;}
.x8_c00351{left:278.499453pt;}
.x2f_c00351{left:286.239053pt;}
.x7b_c00351{left:287.466653pt;}
.x30_c00351{left:295.527453pt;}
.x9_c00351{left:296.891453pt;}
.x3e_c00351{left:306.228253pt;}
.x60_c00351{left:307.733053pt;}
.x77_c00351{left:312.036253pt;}
.x3f_c00351{left:316.541853pt;}
.x84_c00351{left:317.589053pt;}
.xa_c00351{left:325.944653pt;}
.xb_c00351{left:336.544253pt;}
.x2c_c00351{left:346.061453pt;}
.x61_c00351{left:346.998653pt;}
.x64_c00351{left:356.071453pt;}
.x40_c00351{left:363.987053pt;}
.xc_c00351{left:364.911053pt;}
.x57_c00351{left:366.028653pt;}
.x18_c00351{left:367.520253pt;}
.x53_c00351{left:375.501853pt;}
.x80_c00351{left:376.777853pt;}
.x2d_c00351{left:385.617453pt;}
.x19_c00351{left:395.112653pt;}
.x78_c00351{left:396.102653pt;}
.xd_c00351{left:403.873053pt;}
.x31_c00351{left:405.272253pt;}
.x1a_c00351{left:414.182253pt;}
.x65_c00351{left:415.115053pt;}
.x25_c00351{left:422.872253pt;}
.x45_c00351{left:424.610253pt;}
.x5b_c00351{left:426.440653pt;}
.x54_c00351{left:433.331053pt;}
.x71_c00351{left:435.399053pt;}
.x41_c00351{left:443.842653pt;}
.x1b_c00351{left:444.907453pt;}
.x1c_c00351{left:453.927453pt;}
.x42_c00351{left:455.009853pt;}
.x44_c00351{left:460.813453pt;}
.x46_c00351{left:463.603053pt;}
.x85_c00351{left:465.429053pt;}
.x32_c00351{left:473.107053pt;}
.x7c_c00351{left:474.933053pt;}
.x1d_c00351{left:481.792653pt;}
.x58_c00351{left:483.130253pt;}
.x6a_c00351{left:484.080653pt;}
.x26_c00351{left:493.377853pt;}
.x86_c00351{left:494.605453pt;}
.xe_c00351{left:501.478253pt;}
.x33_c00351{left:502.406653pt;}
.x27_c00351{left:512.350653pt;}
.x47_c00351{left:513.340653pt;}
.x34_c00351{left:522.343053pt;}
.x66_c00351{left:523.456253pt;}
.x2_c00351{left:524.829053pt;}
.x4c_c00351{left:533.167053pt;}
.x35_c00351{left:541.852653pt;}
.x67_c00351{left:542.803053pt;}
.x43_c00351{left:544.655453pt;}
.x2e_c00351{left:551.990253pt;}
.x68_c00351{left:552.949453pt;}
.x28_c00351{left:561.811053pt;}
.x1e_c00351{left:562.739453pt;}
.x36_c00351{left:570.223853pt;}
.x4d_c00351{left:572.881453pt;}
.x79_c00351{left:573.990253pt;}
.x48_c00351{left:580.643053pt;}
.x7d_c00351{left:583.045453pt;}
.x3_c00351{left:590.877453pt;}
.x1f_c00351{left:591.832253pt;}
.xf_c00351{left:601.235053pt;}
.x82_c00351{left:603.769453pt;}
.x37_c00351{left:610.105453pt;}
.x4_c00351{left:611.328653pt;}
.x20_c00351{left:621.233053pt;}
.x55_c00351{left:631.053853pt;}
.x29_c00351{left:640.038653pt;}
.x62_c00351{left:640.989053pt;}
.x6b_c00351{left:641.939453pt;}
.x49_c00351{left:650.493053pt;}
.x21_c00351{left:651.645853pt;}
.x4e_c00351{left:653.361853pt;}
.x72_c00351{left:660.947453pt;}
.x6c_c00351{left:670.768253pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8ee0179a86619483ee85f1a6.woff2')format("woff");}.ff1_c00352{font-family:ff1_c00352;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00352;src:url('chunks/assets/font_afa5841ffc627c9a34729e1b.woff2')format("woff");}.ff2_c00352{font-family:ff2_c00352;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00352;src:url('chunks/assets/font_f41103fb8541c15cf07d3e5f.woff2')format("woff");}.ff3_c00352{font-family:ff3_c00352;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00352;src:url('chunks/assets/font_e7dd4db5c8772c83a47436ba.woff2')format("woff");}.ff4_c00352{font-family:ff4_c00352;line-height:0.666000;font-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_c00352{transform:matrix(0.058824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.058824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.058824,0.000000,0.000000,0.250000,0,0);}
.m1b_c00352{transform:matrix(0.075400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075400,0.000000,0.000000,0.250000,0,0);}
.m44_c00352{transform:matrix(0.080883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080883,0.000000,0.000000,0.250000,0,0);}
.m55_c00352{transform:matrix(0.129448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129448,0.000000,0.000000,0.250000,0,0);}
.mbc_c00352{transform:matrix(0.143383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143383,0.000000,0.000000,0.250000,0,0);}
.mb7_c00352{transform:matrix(0.146894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146894,0.000000,0.000000,0.250000,0,0);}
.m45_c00352{transform:matrix(0.165442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165442,0.000000,0.000000,0.250000,0,0);}
.mb3_c00352{transform:matrix(0.169109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169109,0.000000,0.000000,0.250000,0,0);}
.m2f_c00352{transform:matrix(0.176394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176394,0.000000,0.000000,0.250000,0,0);}
.mbe_c00352{transform:matrix(0.181372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181372,0.000000,0.000000,0.250000,0,0);}
.m9e_c00352{transform:matrix(0.183587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183587,0.000000,0.000000,0.250000,0,0);}
.mc8_c00352{transform:matrix(0.190239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190239,0.000000,0.000000,0.250000,0,0);}
.m6a_c00352{transform:matrix(0.205346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205346,0.000000,0.000000,0.250000,0,0);}
.m2e_c00352{transform:matrix(0.215166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215166,0.000000,0.000000,0.250000,0,0);}
.m49_c00352{transform:matrix(0.223856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223856,0.000000,0.000000,0.250000,0,0);}
.m9_c00352{transform:matrix(0.229864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229864,0.000000,0.000000,0.250000,0,0);}
.m2_c00352{transform:matrix(0.240694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240694,0.000000,0.000000,0.250000,0,0);}
.ma8_c00352{transform:matrix(0.247008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247008,0.000000,0.000000,0.250000,0,0);}
.mb5_c00352{transform:matrix(0.249271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249271,0.000000,0.000000,0.250000,0,0);}
.m0_c00352{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00352{transform:matrix(0.251647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251647,0.000000,0.000000,0.250000,0,0);}
.m43_c00352{transform:matrix(0.252561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252561,0.000000,0.000000,0.250000,0,0);}
.m7_c00352{transform:matrix(0.254418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254418,0.000000,0.000000,0.250000,0,0);}
.m94_c00352{transform:matrix(0.261730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261730,0.000000,0.000000,0.250000,0,0);}
.maf_c00352{transform:matrix(0.262405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262405,0.000000,0.000000,0.250000,0,0);}
.mcd_c00352{transform:matrix(0.265869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265869,0.000000,0.000000,0.250000,0,0);}
.mb2_c00352{transform:matrix(0.269637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269637,0.000000,0.000000,0.250000,0,0);}
.m83_c00352{transform:matrix(0.269956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269956,0.000000,0.000000,0.250000,0,0);}
.m7b_c00352{transform:matrix(0.270467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270467,0.000000,0.000000,0.250000,0,0);}
.m3d_c00352{transform:matrix(0.272215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272215,0.000000,0.000000,0.250000,0,0);}
.m3b_c00352{transform:matrix(0.272901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272901,0.000000,0.000000,0.250000,0,0);}
.m8d_c00352{transform:matrix(0.273264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273264,0.000000,0.000000,0.250000,0,0);}
.m9c_c00352{transform:matrix(0.273803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273803,0.000000,0.000000,0.250000,0,0);}
.m56_c00352{transform:matrix(0.274142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274142,0.000000,0.000000,0.250000,0,0);}
.m86_c00352{transform:matrix(0.275938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275938,0.000000,0.000000,0.250000,0,0);}
.m15_c00352{transform:matrix(0.276888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276888,0.000000,0.000000,0.250000,0,0);}
.mad_c00352{transform:matrix(0.277170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277170,0.000000,0.000000,0.250000,0,0);}
.m66_c00352{transform:matrix(0.277392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277392,0.000000,0.000000,0.250000,0,0);}
.mb1_c00352{transform:matrix(0.277437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277437,0.000000,0.000000,0.250000,0,0);}
.m8b_c00352{transform:matrix(0.277518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277518,0.000000,0.000000,0.250000,0,0);}
.ma_c00352{transform:matrix(0.277628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277628,0.000000,0.000000,0.250000,0,0);}
.m48_c00352{transform:matrix(0.279125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279125,0.000000,0.000000,0.250000,0,0);}
.m28_c00352{transform:matrix(0.279709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279709,0.000000,0.000000,0.250000,0,0);}
.m39_c00352{transform:matrix(0.280529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280529,0.000000,0.000000,0.250000,0,0);}
.m76_c00352{transform:matrix(0.281580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281580,0.000000,0.000000,0.250000,0,0);}
.m33_c00352{transform:matrix(0.282209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282209,0.000000,0.000000,0.250000,0,0);}
.m8c_c00352{transform:matrix(0.283402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283402,0.000000,0.000000,0.250000,0,0);}
.mb9_c00352{transform:matrix(0.284081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284081,0.000000,0.000000,0.250000,0,0);}
.m4b_c00352{transform:matrix(0.284110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284110,0.000000,0.000000,0.250000,0,0);}
.mc4_c00352{transform:matrix(0.284558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284558,0.000000,0.000000,0.250000,0,0);}
.mae_c00352{transform:matrix(0.284781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284781,0.000000,0.000000,0.250000,0,0);}
.m34_c00352{transform:matrix(0.284999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284999,0.000000,0.000000,0.250000,0,0);}
.m1_c00352{transform:matrix(0.286176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286176,0.000000,0.000000,0.250000,0,0);}
.m71_c00352{transform:matrix(0.286188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286188,0.000000,0.000000,0.250000,0,0);}
.m13_c00352{transform:matrix(0.286623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286623,0.000000,0.000000,0.250000,0,0);}
.m29_c00352{transform:matrix(0.287249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287249,0.000000,0.000000,0.250000,0,0);}
.m90_c00352{transform:matrix(0.287759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287759,0.000000,0.000000,0.250000,0,0);}
.m98_c00352{transform:matrix(0.288318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288318,0.000000,0.000000,0.250000,0,0);}
.m58_c00352{transform:matrix(0.289095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289095,0.000000,0.000000,0.250000,0,0);}
.m51_c00352{transform:matrix(0.289844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289844,0.000000,0.000000,0.250000,0,0);}
.mc5_c00352{transform:matrix(0.290508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290508,0.000000,0.000000,0.250000,0,0);}
.m7e_c00352{transform:matrix(0.291086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291086,0.000000,0.000000,0.250000,0,0);}
.m30_c00352{transform:matrix(0.291589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291589,0.000000,0.000000,0.250000,0,0);}
.m47_c00352{transform:matrix(0.292287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292287,0.000000,0.000000,0.250000,0,0);}
.m2d_c00352{transform:matrix(0.292379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292379,0.000000,0.000000,0.250000,0,0);}
.m79_c00352{transform:matrix(0.292626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292626,0.000000,0.000000,0.250000,0,0);}
.m42_c00352{transform:matrix(0.293695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293695,0.000000,0.000000,0.250000,0,0);}
.m41_c00352{transform:matrix(0.294445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294445,0.000000,0.000000,0.250000,0,0);}
.m3f_c00352{transform:matrix(0.294547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294547,0.000000,0.000000,0.250000,0,0);}
.mb4_c00352{transform:matrix(0.295108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295108,0.000000,0.000000,0.250000,0,0);}
.ma3_c00352{transform:matrix(0.295217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295217,0.000000,0.000000,0.250000,0,0);}
.m7d_c00352{transform:matrix(0.295334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295334,0.000000,0.000000,0.250000,0,0);}
.m91_c00352{transform:matrix(0.295786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295786,0.000000,0.000000,0.250000,0,0);}
.m92_c00352{transform:matrix(0.295843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295843,0.000000,0.000000,0.250000,0,0);}
.m95_c00352{transform:matrix(0.296411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296411,0.000000,0.000000,0.250000,0,0);}
.m21_c00352{transform:matrix(0.297618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297618,0.000000,0.000000,0.250000,0,0);}
.mc3_c00352{transform:matrix(0.297897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297897,0.000000,0.000000,0.250000,0,0);}
.m36_c00352{transform:matrix(0.298299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298299,0.000000,0.000000,0.250000,0,0);}
.m9b_c00352{transform:matrix(0.298463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298463,0.000000,0.000000,0.250000,0,0);}
.m88_c00352{transform:matrix(0.298665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298665,0.000000,0.000000,0.250000,0,0);}
.m52_c00352{transform:matrix(0.298907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298907,0.000000,0.000000,0.250000,0,0);}
.m89_c00352{transform:matrix(0.300584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300584,0.000000,0.000000,0.250000,0,0);}
.m46_c00352{transform:matrix(0.300639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300639,0.000000,0.000000,0.250000,0,0);}
.m26_c00352{transform:matrix(0.301473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301473,0.000000,0.000000,0.250000,0,0);}
.m1d_c00352{transform:matrix(0.302091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302091,0.000000,0.000000,0.250000,0,0);}
.mb_c00352{transform:matrix(0.302808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302808,0.000000,0.000000,0.250000,0,0);}
.m87_c00352{transform:matrix(0.303059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303059,0.000000,0.000000,0.250000,0,0);}
.ma5_c00352{transform:matrix(0.303308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303308,0.000000,0.000000,0.250000,0,0);}
.m16_c00352{transform:matrix(0.304461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304461,0.000000,0.000000,0.250000,0,0);}
.mf_c00352{transform:matrix(0.304977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304977,0.000000,0.000000,0.250000,0,0);}
.m12_c00352{transform:matrix(0.305059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305059,0.000000,0.000000,0.250000,0,0);}
.m9d_c00352{transform:matrix(0.305540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305540,0.000000,0.000000,0.250000,0,0);}
.m10_c00352{transform:matrix(0.305952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305952,0.000000,0.000000,0.250000,0,0);}
.m8a_c00352{transform:matrix(0.306555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306555,0.000000,0.000000,0.250000,0,0);}
.m5b_c00352{transform:matrix(0.307020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307020,0.000000,0.000000,0.250000,0,0);}
.m4c_c00352{transform:matrix(0.307067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307067,0.000000,0.000000,0.250000,0,0);}
.m6e_c00352{transform:matrix(0.307400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307400,0.000000,0.000000,0.250000,0,0);}
.m37_c00352{transform:matrix(0.308182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308182,0.000000,0.000000,0.250000,0,0);}
.m80_c00352{transform:matrix(0.309133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309133,0.000000,0.000000,0.250000,0,0);}
.m1f_c00352{transform:matrix(0.309389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309389,0.000000,0.000000,0.250000,0,0);}
.mcb_c00352{transform:matrix(0.309726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309726,0.000000,0.000000,0.250000,0,0);}
.m84_c00352{transform:matrix(0.310279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310279,0.000000,0.000000,0.250000,0,0);}
.m97_c00352{transform:matrix(0.310291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310291,0.000000,0.000000,0.250000,0,0);}
.ma0_c00352{transform:matrix(0.310855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310855,0.000000,0.000000,0.250000,0,0);}
.m82_c00352{transform:matrix(0.311590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311590,0.000000,0.000000,0.250000,0,0);}
.m5c_c00352{transform:matrix(0.311838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311838,0.000000,0.000000,0.250000,0,0);}
.m5f_c00352{transform:matrix(0.312895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312895,0.000000,0.000000,0.250000,0,0);}
.m35_c00352{transform:matrix(0.313097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313097,0.000000,0.000000,0.250000,0,0);}
.m3a_c00352{transform:matrix(0.313408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313408,0.000000,0.000000,0.250000,0,0);}
.m53_c00352{transform:matrix(0.313540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313540,0.000000,0.000000,0.250000,0,0);}
.m50_c00352{transform:matrix(0.313648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313648,0.000000,0.000000,0.250000,0,0);}
.m23_c00352{transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313785,0.000000,0.000000,0.250000,0,0);}
.m6d_c00352{transform:matrix(0.314513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314513,0.000000,0.000000,0.250000,0,0);}
.m69_c00352{transform:matrix(0.314857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314857,0.000000,0.000000,0.250000,0,0);}
.mab_c00352{transform:matrix(0.315210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315210,0.000000,0.000000,0.250000,0,0);}
.m4f_c00352{transform:matrix(0.316513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316513,0.000000,0.000000,0.250000,0,0);}
.m3e_c00352{transform:matrix(0.316821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316821,0.000000,0.000000,0.250000,0,0);}
.m38_c00352{transform:matrix(0.317149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317149,0.000000,0.000000,0.250000,0,0);}
.m7f_c00352{transform:matrix(0.317996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317996,0.000000,0.000000,0.250000,0,0);}
.m7a_c00352{transform:matrix(0.318147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318147,0.000000,0.000000,0.250000,0,0);}
.ma9_c00352{transform:matrix(0.318456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318456,0.000000,0.000000,0.250000,0,0);}
.m75_c00352{transform:matrix(0.318764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318764,0.000000,0.000000,0.250000,0,0);}
.md0_c00352{transform:matrix(0.319001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319001,0.000000,0.000000,0.250000,0,0);}
.m61_c00352{transform:matrix(0.319209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319209,0.000000,0.000000,0.250000,0,0);}
.m4e_c00352{transform:matrix(0.319728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319728,0.000000,0.000000,0.250000,0,0);}
.m19_c00352{transform:matrix(0.320582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320582,0.000000,0.000000,0.250000,0,0);}
.mb0_c00352{transform:matrix(0.320849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320849,0.000000,0.000000,0.250000,0,0);}
.m60_c00352{transform:matrix(0.321800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321800,0.000000,0.000000,0.250000,0,0);}
.m59_c00352{transform:matrix(0.322311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322311,0.000000,0.000000,0.250000,0,0);}
.m32_c00352{transform:matrix(0.322734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322734,0.000000,0.000000,0.250000,0,0);}
.ma1_c00352{transform:matrix(0.323346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323346,0.000000,0.000000,0.250000,0,0);}
.m78_c00352{transform:matrix(0.323392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323392,0.000000,0.000000,0.250000,0,0);}
.m27_c00352{transform:matrix(0.324368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324368,0.000000,0.000000,0.250000,0,0);}
.m54_c00352{transform:matrix(0.324534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324534,0.000000,0.000000,0.250000,0,0);}
.m1a_c00352{transform:matrix(0.324780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324780,0.000000,0.000000,0.250000,0,0);}
.m7c_c00352{transform:matrix(0.324970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324970,0.000000,0.000000,0.250000,0,0);}
.m11_c00352{transform:matrix(0.325225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325225,0.000000,0.000000,0.250000,0,0);}
.mc1_c00352{transform:matrix(0.325686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325686,0.000000,0.000000,0.250000,0,0);}
.m68_c00352{transform:matrix(0.325828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325828,0.000000,0.000000,0.250000,0,0);}
.m8f_c00352{transform:matrix(0.326270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326270,0.000000,0.000000,0.250000,0,0);}
.m5_c00352{transform:matrix(0.326507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326507,0.000000,0.000000,0.250000,0,0);}
.mcf_c00352{transform:matrix(0.326976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326976,0.000000,0.000000,0.250000,0,0);}
.mc7_c00352{transform:matrix(0.328150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328150,0.000000,0.000000,0.250000,0,0);}
.m64_c00352{transform:matrix(0.328945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328945,0.000000,0.000000,0.250000,0,0);}
.m63_c00352{transform:matrix(0.329220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329220,0.000000,0.000000,0.250000,0,0);}
.mc9_c00352{transform:matrix(0.329473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329473,0.000000,0.000000,0.250000,0,0);}
.m62_c00352{transform:matrix(0.329507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329507,0.000000,0.000000,0.250000,0,0);}
.m1e_c00352{transform:matrix(0.329869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329869,0.000000,0.000000,0.250000,0,0);}
.mc_c00352{transform:matrix(0.331052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331052,0.000000,0.000000,0.250000,0,0);}
.m8_c00352{transform:matrix(0.331496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331496,0.000000,0.000000,0.250000,0,0);}
.m31_c00352{transform:matrix(0.332333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332333,0.000000,0.000000,0.250000,0,0);}
.m20_c00352{transform:matrix(0.332961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332961,0.000000,0.000000,0.250000,0,0);}
.m25_c00352{transform:matrix(0.333234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333234,0.000000,0.000000,0.250000,0,0);}
.m22_c00352{transform:matrix(0.333314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333314,0.000000,0.000000,0.250000,0,0);}
.m5a_c00352{transform:matrix(0.333376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333376,0.000000,0.000000,0.250000,0,0);}
.m8e_c00352{transform:matrix(0.333539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333539,0.000000,0.000000,0.250000,0,0);}
.m6_c00352{transform:matrix(0.333820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333820,0.000000,0.000000,0.250000,0,0);}
.m9a_c00352{transform:matrix(0.333917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333917,0.000000,0.000000,0.250000,0,0);}
.me_c00352{transform:matrix(0.334713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334713,0.000000,0.000000,0.250000,0,0);}
.mbf_c00352{transform:matrix(0.335197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335197,0.000000,0.000000,0.250000,0,0);}
.m2a_c00352{transform:matrix(0.336614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336614,0.000000,0.000000,0.250000,0,0);}
.m57_c00352{transform:matrix(0.337479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337479,0.000000,0.000000,0.250000,0,0);}
.ma7_c00352{transform:matrix(0.338180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338180,0.000000,0.000000,0.250000,0,0);}
.m99_c00352{transform:matrix(0.338778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338778,0.000000,0.000000,0.250000,0,0);}
.m3_c00352{transform:matrix(0.338969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338969,0.000000,0.000000,0.250000,0,0);}
.mc6_c00352{transform:matrix(0.339942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339942,0.000000,0.000000,0.250000,0,0);}
.m2c_c00352{transform:matrix(0.340670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340670,0.000000,0.000000,0.250000,0,0);}
.m4a_c00352{transform:matrix(0.340926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340926,0.000000,0.000000,0.250000,0,0);}
.mc0_c00352{transform:matrix(0.341055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341055,0.000000,0.000000,0.250000,0,0);}
.ma2_c00352{transform:matrix(0.341674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341674,0.000000,0.000000,0.250000,0,0);}
.mcc_c00352{transform:matrix(0.343462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343462,0.000000,0.000000,0.250000,0,0);}
.m67_c00352{transform:matrix(0.344031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344031,0.000000,0.000000,0.250000,0,0);}
.m72_c00352{transform:matrix(0.344184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344184,0.000000,0.000000,0.250000,0,0);}
.m6b_c00352{transform:matrix(0.344519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344519,0.000000,0.000000,0.250000,0,0);}
.md_c00352{transform:matrix(0.346479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346479,0.000000,0.000000,0.250000,0,0);}
.m74_c00352{transform:matrix(0.347637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347637,0.000000,0.000000,0.250000,0,0);}
.m77_c00352{transform:matrix(0.347648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347648,0.000000,0.000000,0.250000,0,0);}
.m5e_c00352{transform:matrix(0.348586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348586,0.000000,0.000000,0.250000,0,0);}
.m3c_c00352{transform:matrix(0.348680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348680,0.000000,0.000000,0.250000,0,0);}
.m5d_c00352{transform:matrix(0.349299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349299,0.000000,0.000000,0.250000,0,0);}
.m40_c00352{transform:matrix(0.349560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349560,0.000000,0.000000,0.250000,0,0);}
.m17_c00352{transform:matrix(0.353016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353016,0.000000,0.000000,0.250000,0,0);}
.maa_c00352{transform:matrix(0.355618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355618,0.000000,0.000000,0.250000,0,0);}
.m93_c00352{transform:matrix(0.355765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355765,0.000000,0.000000,0.250000,0,0);}
.m70_c00352{transform:matrix(0.355928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355928,0.000000,0.000000,0.250000,0,0);}
.mb6_c00352{transform:matrix(0.357683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357683,0.000000,0.000000,0.250000,0,0);}
.m81_c00352{transform:matrix(0.358210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358210,0.000000,0.000000,0.250000,0,0);}
.m4d_c00352{transform:matrix(0.358386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358386,0.000000,0.000000,0.250000,0,0);}
.m14_c00352{transform:matrix(0.359554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359554,0.000000,0.000000,0.250000,0,0);}
.m1c_c00352{transform:matrix(0.359718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359718,0.000000,0.000000,0.250000,0,0);}
.m18_c00352{transform:matrix(0.359864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359864,0.000000,0.000000,0.250000,0,0);}
.ma6_c00352{transform:matrix(0.361895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361895,0.000000,0.000000,0.250000,0,0);}
.m9f_c00352{transform:matrix(0.366925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366925,0.000000,0.000000,0.250000,0,0);}
.m4_c00352{transform:matrix(0.368029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368029,0.000000,0.000000,0.250000,0,0);}
.ma4_c00352{transform:matrix(0.368081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368081,0.000000,0.000000,0.250000,0,0);}
.mb8_c00352{transform:matrix(0.368653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368653,0.000000,0.000000,0.250000,0,0);}
.m73_c00352{transform:matrix(0.370848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370848,0.000000,0.000000,0.250000,0,0);}
.mca_c00352{transform:matrix(0.371062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371062,0.000000,0.000000,0.250000,0,0);}
.m6f_c00352{transform:matrix(0.372101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372101,0.000000,0.000000,0.250000,0,0);}
.m65_c00352{transform:matrix(0.373479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373479,0.000000,0.000000,0.250000,0,0);}
.mbb_c00352{transform:matrix(0.375040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375040,0.000000,0.000000,0.250000,0,0);}
.mac_c00352{transform:matrix(0.382547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382547,0.000000,0.000000,0.250000,0,0);}
.m6c_c00352{transform:matrix(0.383290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383290,0.000000,0.000000,0.250000,0,0);}
.mc2_c00352{transform:matrix(0.383401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383401,0.000000,0.000000,0.250000,0,0);}
.m85_c00352{transform:matrix(0.389143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389143,0.000000,0.000000,0.250000,0,0);}
.m2b_c00352{transform:matrix(0.389899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389899,0.000000,0.000000,0.250000,0,0);}
.m96_c00352{transform:matrix(0.400769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400769,0.000000,0.000000,0.250000,0,0);}
.m24_c00352{transform:matrix(0.456508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456508,0.000000,0.000000,0.250000,0,0);}
.mce_c00352{transform:matrix(0.464660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464660,0.000000,0.000000,0.250000,0,0);}
.v1_c00352{vertical-align:-14.275800px;}
.v0_c00352{vertical-align:0.000000px;}
.ls2_c00352{letter-spacing:-2.910600px;}
.ls4_c00352{letter-spacing:-2.543317px;}
.ls9_c00352{letter-spacing:-2.356200px;}
.lsd_c00352{letter-spacing:-1.264392px;}
.ls5_c00352{letter-spacing:-1.133593px;}
.lse_c00352{letter-spacing:-0.435997px;}
.ls0_c00352{letter-spacing:0.000000px;}
.lsf_c00352{letter-spacing:0.058133px;}
.lsb_c00352{letter-spacing:3.248179px;}
.lsa_c00352{letter-spacing:3.484810px;}
.lsc_c00352{letter-spacing:3.546110px;}
.ls3_c00352{letter-spacing:3.633310px;}
.ls6_c00352{letter-spacing:3.702610px;}
.ls1_c00352{letter-spacing:4.158000px;}
.ls7_c00352{letter-spacing:4.474810px;}
.ls8_c00352{letter-spacing:48.470598px;}
.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;}
}
.ws7_c00352{word-spacing:-18.224682px;}
.ws0_c00352{word-spacing:-18.166550px;}
.ws4_c00352{word-spacing:-17.730552px;}
.ws1_c00352{word-spacing:-1.816579px;}
.ws2_c00352{word-spacing:-1.816381px;}
.ws6_c00352{word-spacing:-0.363061px;}
.ws3_c00352{word-spacing:-0.217915px;}
.ws8_c00352{word-spacing:0.000000px;}
.ws5_c00352{word-spacing:1.162541px;}
._f_c00352{margin-left:-9.955198px;}
._5_c00352{margin-left:-7.339321px;}
._14_c00352{margin-left:-4.577903px;}
._2_c00352{width:4.295071px;}
._c_c00352{width:5.668058px;}
._3_c00352{width:7.847829px;}
._7_c00352{width:9.737343px;}
._0_c00352{width:11.481327px;}
._d_c00352{width:14.024450px;}
._8_c00352{width:20.055926px;}
._9_c00352{width:22.453937px;}
._6_c00352{width:23.834591px;}
._12_c00352{width:25.287911px;}
._10_c00352{width:26.668367px;}
._13_c00352{width:31.464439px;}
._1_c00352{width:32.749459px;}
._a_c00352{width:34.007738px;}
._e_c00352{width:36.623673px;}
._b_c00352{width:38.077034px;}
._11_c00352{width:39.530959px;}
._4_c00352{width:62.466756px;}
.fc0_c00352{color:transparent;}
.fsc_c00352{font-size:10.296000px;}
.fse_c00352{font-size:20.394000px;}
.fs8_c00352{font-size:27.720000px;}
.fs0_c00352{font-size:28.314000px;}
.fs6_c00352{font-size:34.056198px;}
.fsd_c00352{font-size:39.600000px;}
.fs7_c00352{font-size:48.470598px;}
.fsb_c00352{font-size:54.648000px;}
.fs9_c00352{font-size:67.320000px;}
.fsa_c00352{font-size:69.696198px;}
.fs4_c00352{font-size:70.884000px;}
.fs2_c00352{font-size:72.666198px;}
.fs3_c00352{font-size:74.052198px;}
.fs1_c00352{font-size:83.160000px;}
.fs5_c00352{font-size:89.496198px;}
.y0_c00352{bottom:0.000000px;}
.y1_c00352{bottom:76.500000px;}
.y1f_c00352{bottom:131.418585px;}
.y1e_c00352{bottom:162.781785px;}
.y1d_c00352{bottom:195.219135px;}
.y1c_c00352{bottom:206.267535px;}
.y1b_c00352{bottom:211.257135px;}
.y1a_c00352{bottom:260.791785px;}
.y19_c00352{bottom:293.229135px;}
.y18_c00352{bottom:324.948735px;}
.y17_c00352{bottom:357.737535px;}
.y16_c00352{bottom:391.590585px;}
.y15_c00352{bottom:423.671535px;}
.y14_c00352{bottom:458.950185px;}
.y13_c00352{bottom:492.813135px;}
.y12_c00352{bottom:526.314735px;}
.y2_c00352{bottom:553.044735px;}
.y11_c00352{bottom:558.747135px;}
.y10_c00352{bottom:575.849385px;}
.yf_c00352{bottom:590.818185px;}
.ye_c00352{bottom:623.606985px;}
.yd_c00352{bottom:655.687935px;}
.yc_c00352{bottom:716.275935px;}
.yb_c00352{bottom:719.834985px;}
.ya_c00352{bottom:751.915935px;}
.y9_c00352{bottom:789.689385px;}
.y8_c00352{bottom:822.839535px;}
.y7_c00352{bottom:856.336185px;}
.y6_c00352{bottom:890.199135px;}
.y5_c00352{bottom:924.408585px;}
.y4_c00352{bottom:1034.892585px;}
.y3_c00352{bottom:1077.660585px;}
.hd_c00352{height:10.738406px;}
.ha_c00352{height:28.911094px;}
.h2_c00352{height:29.530617px;}
.h9_c00352{height:32.281418px;}
.h8_c00352{height:35.519550px;}
.he_c00352{height:41.301563px;}
.hb_c00352{height:66.070898px;}
.hc_c00352{height:68.403007px;}
.h6_c00352{height:69.568770px;}
.h4_c00352{height:71.317899px;}
.h5_c00352{height:74.630731px;}
.h3_c00352{height:83.809688px;}
.h7_c00352{height:87.835624px;}
.h1_c00352{height:1110.000000px;}
.h0_c00352{height:1263.000000px;}
.w1_c00352{width:775.500000px;}
.w0_c00352{width:892.500000px;}
.x0_c00352{left:0.000000px;}
.x2_c00352{left:13.713135px;}
.x1_c00352{left:58.500000px;}
.x6_c00352{left:98.669985px;}
.x13_c00352{left:100.140135px;}
.x42_c00352{left:101.298435px;}
.x74_c00352{left:102.570585px;}
.x61_c00352{left:112.025085px;}
.x2d_c00352{left:121.345935px;}
.x48_c00352{left:133.443735px;}
.x6f_c00352{left:134.512935px;}
.x62_c00352{left:136.195935px;}
.x7_c00352{left:143.309085px;}
.x55_c00352{left:144.358485px;}
.x2e_c00352{left:153.233835px;}
.x1b_c00352{left:155.451435px;}
.x75_c00352{left:157.243335px;}
.x3c_c00352{left:158.589735px;}
.x39_c00352{left:163.925835px;}
.x4a_c00352{left:165.737535px;}
.x4c_c00352{left:176.528535px;}
.x14_c00352{left:177.553185px;}
.x43_c00352{left:184.537635px;}
.x3d_c00352{left:186.408735px;}
.x1c_c00352{left:187.576935px;}
.x70_c00352{left:188.670885px;}
.x76_c00352{left:189.695535px;}
.x3a_c00352{left:197.922435px;}
.x63_c00352{left:199.694535px;}
.x15_c00352{left:209.292585px;}
.x8_c00352{left:219.910335px;}
.x6a_c00352{left:221.994285px;}
.x3e_c00352{left:231.844785px;}
.x71_c00352{left:236.641335px;}
.x72_c00352{left:239.136135px;}
.x3f_c00352{left:241.942785px;}
.x34_c00352{left:243.076335px;}
.x6b_c00352{left:244.363335px;}
.x5f_c00352{left:253.025835px;}
.x23_c00352{left:254.243535px;}
.x77_c00352{left:255.322635px;}
.x1d_c00352{left:265.524585px;}
.x16_c00352{left:276.360135px;}
.x73_c00352{left:277.577835px;}
.x3b_c00352{left:279.127185px;}
.x56_c00352{left:286.779885px;}
.x35_c00352{left:288.032235px;}
.x9_c00352{left:297.194685px;}
.x24_c00352{left:298.318335px;}
.x78_c00352{left:300.189435px;}
.x44_c00352{left:309.148935px;}
.x6c_c00352{left:311.242785px;}
.xa_c00352{left:319.697385px;}
.x17_c00352{left:330.953685px;}
.x45_c00352{left:332.240685px;}
.x64_c00352{left:333.908835px;}
.x2f_c00352{left:342.457485px;}
.x67_c00352{left:343.729635px;}
.x25_c00352{left:352.778235px;}
.x4d_c00352{left:354.010785px;}
.xb_c00352{left:365.034435px;}
.x52_c00352{left:366.133335px;}
.x46_c00352{left:376.013535px;}
.x68_c00352{left:377.572785px;}
.xc_c00352{left:387.210435px;}
.x5b_c00352{left:388.586535px;}
.x4e_c00352{left:398.892435px;}
.x36_c00352{left:410.020035px;}
.xd_c00352{left:420.137835px;}
.x53_c00352{left:421.380285px;}
.x57_c00352{left:423.097935px;}
.x1e_c00352{left:431.171385px;}
.x1f_c00352{left:442.100985px;}
.x58_c00352{left:443.422635px;}
.x26_c00352{left:451.897035px;}
.x4f_c00352{left:453.703785px;}
.x30_c00352{left:464.861085px;}
.x18_c00352{left:475.459035px;}
.x65_c00352{left:476.577735px;}
.x27_c00352{left:486.626235px;}
.x54_c00352{left:487.680585px;}
.x31_c00352{left:497.318235px;}
.x60_c00352{left:498.719085px;}
.x40_c00352{left:507.139035px;}
.x5c_c00352{left:509.747685px;}
.x6d_c00352{left:511.326735px;}
.xe_c00352{left:520.068435px;}
.x49_c00352{left:531.181185px;}
.x50_c00352{left:533.581935px;}
.xf_c00352{left:540.962385px;}
.x28_c00352{left:542.556285px;}
.x32_c00352{left:551.332635px;}
.x41_c00352{left:553.243335px;}
.x10_c00352{left:563.653185px;}
.x29_c00352{left:574.310535px;}
.x11_c00352{left:575.706435px;}
.x37_c00352{left:585.418335px;}
.x2a_c00352{left:595.768785px;}
.x19_c00352{left:597.456735px;}
.x79_c00352{left:607.604235px;}
.x20_c00352{left:608.792235px;}
.x33_c00352{left:618.365535px;}
.x4b_c00352{left:619.543635px;}
.x5d_c00352{left:629.206035px;}
.x59_c00352{left:630.280185px;}
.x21_c00352{left:641.269185px;}
.x1a_c00352{left:642.288885px;}
.x12_c00352{left:651.802785px;}
.x66_c00352{left:662.851185px;}
.x3_c00352{left:674.478735px;}
.x2b_c00352{left:685.447935px;}
.x22_c00352{left:696.550785px;}
.x4_c00352{left:697.619985px;}
.x69_c00352{left:700.634535px;}
.x5_c00352{left:704.059935px;}
.x51_c00352{left:706.747785px;}
.x5a_c00352{left:707.940735px;}
.x2c_c00352{left:718.330785px;}
.x5e_c00352{left:720.033585px;}
.x38_c00352{left:729.676185px;}
.x47_c00352{left:731.567085px;}
.x6e_c00352{left:740.724585px;}
@media print{
.v1_c00352{vertical-align:-12.689600pt;}
.v0_c00352{vertical-align:0.000000pt;}
.ls2_c00352{letter-spacing:-2.587200pt;}
.ls4_c00352{letter-spacing:-2.260726pt;}
.ls9_c00352{letter-spacing:-2.094400pt;}
.lsd_c00352{letter-spacing:-1.123904pt;}
.ls5_c00352{letter-spacing:-1.007638pt;}
.lse_c00352{letter-spacing:-0.387553pt;}
.ls0_c00352{letter-spacing:0.000000pt;}
.lsf_c00352{letter-spacing:0.051674pt;}
.lsb_c00352{letter-spacing:2.887270pt;}
.lsa_c00352{letter-spacing:3.097609pt;}
.lsc_c00352{letter-spacing:3.152098pt;}
.ls3_c00352{letter-spacing:3.229609pt;}
.ls6_c00352{letter-spacing:3.291209pt;}
.ls1_c00352{letter-spacing:3.696000pt;}
.ls7_c00352{letter-spacing:3.977609pt;}
.ls8_c00352{letter-spacing:43.084976pt;}
.ws7_c00352{word-spacing:-16.199718pt;}
.ws0_c00352{word-spacing:-16.148044pt;}
.ws4_c00352{word-spacing:-15.760491pt;}
.ws1_c00352{word-spacing:-1.614736pt;}
.ws2_c00352{word-spacing:-1.614560pt;}
.ws6_c00352{word-spacing:-0.322720pt;}
.ws3_c00352{word-spacing:-0.193703pt;}
.ws8_c00352{word-spacing:0.000000pt;}
.ws5_c00352{word-spacing:1.033369pt;}
._f_c00352{margin-left:-8.849065pt;}
._5_c00352{margin-left:-6.523841pt;}
._14_c00352{margin-left:-4.069247pt;}
._2_c00352{width:3.817841pt;}
._c_c00352{width:5.038274pt;}
._3_c00352{width:6.975848pt;}
._7_c00352{width:8.655416pt;}
._0_c00352{width:10.205624pt;}
._d_c00352{width:12.466178pt;}
._8_c00352{width:17.827490pt;}
._9_c00352{width:19.959055pt;}
._6_c00352{width:21.186303pt;}
._12_c00352{width:22.478143pt;}
._10_c00352{width:23.705215pt;}
._13_c00352{width:27.968390pt;}
._1_c00352{width:29.110630pt;}
._a_c00352{width:30.229100pt;}
._e_c00352{width:32.554376pt;}
._b_c00352{width:33.846252pt;}
._11_c00352{width:35.138630pt;}
._4_c00352{width:55.526005pt;}
.fsc_c00352{font-size:9.152000pt;}
.fse_c00352{font-size:18.128000pt;}
.fs8_c00352{font-size:24.640000pt;}
.fs0_c00352{font-size:25.168000pt;}
.fs6_c00352{font-size:30.272176pt;}
.fsd_c00352{font-size:35.200000pt;}
.fs7_c00352{font-size:43.084976pt;}
.fsb_c00352{font-size:48.576000pt;}
.fs9_c00352{font-size:59.840000pt;}
.fsa_c00352{font-size:61.952176pt;}
.fs4_c00352{font-size:63.008000pt;}
.fs2_c00352{font-size:64.592176pt;}
.fs3_c00352{font-size:65.824176pt;}
.fs1_c00352{font-size:73.920000pt;}
.fs5_c00352{font-size:79.552176pt;}
.y0_c00352{bottom:0.000000pt;}
.y1_c00352{bottom:68.000000pt;}
.y1f_c00352{bottom:116.816520pt;}
.y1e_c00352{bottom:144.694920pt;}
.y1d_c00352{bottom:173.528120pt;}
.y1c_c00352{bottom:183.348920pt;}
.y1b_c00352{bottom:187.784120pt;}
.y1a_c00352{bottom:231.814920pt;}
.y19_c00352{bottom:260.648120pt;}
.y18_c00352{bottom:288.843320pt;}
.y17_c00352{bottom:317.988920pt;}
.y16_c00352{bottom:348.080520pt;}
.y15_c00352{bottom:376.596920pt;}
.y14_c00352{bottom:407.955720pt;}
.y13_c00352{bottom:438.056120pt;}
.y12_c00352{bottom:467.835320pt;}
.y2_c00352{bottom:491.595320pt;}
.y11_c00352{bottom:496.664120pt;}
.y10_c00352{bottom:511.866120pt;}
.yf_c00352{bottom:525.171720pt;}
.ye_c00352{bottom:554.317320pt;}
.yd_c00352{bottom:582.833720pt;}
.yc_c00352{bottom:636.689720pt;}
.yb_c00352{bottom:639.853320pt;}
.ya_c00352{bottom:668.369720pt;}
.y9_c00352{bottom:701.946120pt;}
.y8_c00352{bottom:731.412920pt;}
.y7_c00352{bottom:761.187720pt;}
.y6_c00352{bottom:791.288120pt;}
.y5_c00352{bottom:821.696520pt;}
.y4_c00352{bottom:919.904520pt;}
.y3_c00352{bottom:957.920520pt;}
.hd_c00352{height:9.545250pt;}
.ha_c00352{height:25.698750pt;}
.h2_c00352{height:26.249438pt;}
.h9_c00352{height:28.694594pt;}
.h8_c00352{height:31.572934pt;}
.he_c00352{height:36.712500pt;}
.hb_c00352{height:58.729688pt;}
.hc_c00352{height:60.802673pt;}
.h6_c00352{height:61.838906pt;}
.h4_c00352{height:63.393688pt;}
.h5_c00352{height:66.338427pt;}
.h3_c00352{height:74.497500pt;}
.h7_c00352{height:78.076110pt;}
.h1_c00352{height:986.666667pt;}
.h0_c00352{height:1122.666667pt;}
.w1_c00352{width:689.333333pt;}
.w0_c00352{width:793.333333pt;}
.x0_c00352{left:0.000000pt;}
.x2_c00352{left:12.189453pt;}
.x1_c00352{left:52.000000pt;}
.x6_c00352{left:87.706653pt;}
.x13_c00352{left:89.013453pt;}
.x42_c00352{left:90.043053pt;}
.x74_c00352{left:91.173853pt;}
.x61_c00352{left:99.577853pt;}
.x2d_c00352{left:107.863053pt;}
.x48_c00352{left:118.616653pt;}
.x6f_c00352{left:119.567053pt;}
.x62_c00352{left:121.063053pt;}
.x7_c00352{left:127.385853pt;}
.x55_c00352{left:128.318653pt;}
.x2e_c00352{left:136.207853pt;}
.x1b_c00352{left:138.179053pt;}
.x75_c00352{left:139.771853pt;}
.x3c_c00352{left:140.968653pt;}
.x39_c00352{left:145.711853pt;}
.x4a_c00352{left:147.322253pt;}
.x4c_c00352{left:156.914253pt;}
.x14_c00352{left:157.825053pt;}
.x43_c00352{left:164.033453pt;}
.x3d_c00352{left:165.696653pt;}
.x1c_c00352{left:166.735053pt;}
.x70_c00352{left:167.707453pt;}
.x76_c00352{left:168.618253pt;}
.x3a_c00352{left:175.931053pt;}
.x63_c00352{left:177.506253pt;}
.x15_c00352{left:186.037853pt;}
.x8_c00352{left:195.475853pt;}
.x6a_c00352{left:197.328253pt;}
.x3e_c00352{left:206.084253pt;}
.x71_c00352{left:210.347853pt;}
.x72_c00352{left:212.565453pt;}
.x3f_c00352{left:215.060253pt;}
.x34_c00352{left:216.067853pt;}
.x6b_c00352{left:217.211853pt;}
.x5f_c00352{left:224.911853pt;}
.x23_c00352{left:225.994253pt;}
.x77_c00352{left:226.953453pt;}
.x1d_c00352{left:236.021853pt;}
.x16_c00352{left:245.653453pt;}
.x73_c00352{left:246.735853pt;}
.x3b_c00352{left:248.113053pt;}
.x56_c00352{left:254.915453pt;}
.x35_c00352{left:256.028653pt;}
.x9_c00352{left:264.173053pt;}
.x24_c00352{left:265.171853pt;}
.x78_c00352{left:266.835053pt;}
.x44_c00352{left:274.799053pt;}
.x6c_c00352{left:276.660253pt;}
.xa_c00352{left:284.175453pt;}
.x17_c00352{left:294.181053pt;}
.x45_c00352{left:295.325053pt;}
.x64_c00352{left:296.807853pt;}
.x2f_c00352{left:304.406653pt;}
.x67_c00352{left:305.537453pt;}
.x25_c00352{left:313.580653pt;}
.x4d_c00352{left:314.676253pt;}
.xb_c00352{left:324.475053pt;}
.x52_c00352{left:325.451853pt;}
.x46_c00352{left:334.234253pt;}
.x68_c00352{left:335.620253pt;}
.xc_c00352{left:344.187053pt;}
.x5b_c00352{left:345.410253pt;}
.x4e_c00352{left:354.571053pt;}
.x36_c00352{left:364.462253pt;}
.xd_c00352{left:373.455853pt;}
.x53_c00352{left:374.560253pt;}
.x57_c00352{left:376.087053pt;}
.x1e_c00352{left:383.263453pt;}
.x1f_c00352{left:392.978653pt;}
.x58_c00352{left:394.153453pt;}
.x26_c00352{left:401.686253pt;}
.x4f_c00352{left:403.292253pt;}
.x30_c00352{left:413.209853pt;}
.x18_c00352{left:422.630253pt;}
.x65_c00352{left:423.624653pt;}
.x27_c00352{left:432.556653pt;}
.x54_c00352{left:433.493853pt;}
.x31_c00352{left:442.060653pt;}
.x60_c00352{left:443.305853pt;}
.x40_c00352{left:450.790253pt;}
.x5c_c00352{left:453.109053pt;}
.x6d_c00352{left:454.512653pt;}
.xe_c00352{left:462.283053pt;}
.x49_c00352{left:472.161053pt;}
.x50_c00352{left:474.295053pt;}
.xf_c00352{left:480.855453pt;}
.x28_c00352{left:482.272253pt;}
.x32_c00352{left:490.073453pt;}
.x41_c00352{left:491.771853pt;}
.x10_c00352{left:501.025053pt;}
.x29_c00352{left:510.498253pt;}
.x11_c00352{left:511.739053pt;}
.x37_c00352{left:520.371853pt;}
.x2a_c00352{left:529.572253pt;}
.x19_c00352{left:531.072653pt;}
.x79_c00352{left:540.092653pt;}
.x20_c00352{left:541.148653pt;}
.x33_c00352{left:549.658253pt;}
.x4b_c00352{left:550.705453pt;}
.x5d_c00352{left:559.294253pt;}
.x59_c00352{left:560.249053pt;}
.x21_c00352{left:570.017053pt;}
.x1a_c00352{left:570.923453pt;}
.x12_c00352{left:579.380253pt;}
.x66_c00352{left:589.201053pt;}
.x3_c00352{left:599.536653pt;}
.x2b_c00352{left:609.287053pt;}
.x22_c00352{left:619.156253pt;}
.x4_c00352{left:620.106653pt;}
.x69_c00352{left:622.786253pt;}
.x5_c00352{left:625.831053pt;}
.x51_c00352{left:628.220253pt;}
.x5a_c00352{left:629.280653pt;}
.x2c_c00352{left:638.516253pt;}
.x5e_c00352{left:640.029853pt;}
.x38_c00352{left:648.601053pt;}
.x47_c00352{left:650.281853pt;}
.x6e_c00352{left:658.421853pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8a80aceda558797bd7b278f0.woff2')format("woff");}.ff1_c00353{font-family:ff1_c00353;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00353;src:url('chunks/assets/font_2c566250544e6ce4718e7fd5.woff2')format("woff");}.ff2_c00353{font-family:ff2_c00353;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00353;src:url('chunks/assets/font_9782ed06c72d2150a435fe8a.woff2')format("woff");}.ff3_c00353{font-family:ff3_c00353;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00353;src:url('chunks/assets/font_e20c0516f8bf0585d87468fd.woff2')format("woff");}.ff4_c00353{font-family:ff4_c00353;line-height:1.435059;font-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_c00353{transform:matrix(0.113638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113638,0.000000,0.000000,0.250000,0,0);}
.m17_c00353{transform:matrix(0.138096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138096,0.000000,0.000000,0.250000,0,0);}
.mc6_c00353{transform:matrix(0.139520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139520,0.000000,0.000000,0.250000,0,0);}
.m5_c00353{transform:matrix(0.141980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141980,0.000000,0.000000,0.250000,0,0);}
.m18_c00353{transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);}
.m80_c00353{transform:matrix(0.181736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181736,0.000000,0.000000,0.250000,0,0);}
.ma2_c00353{transform:matrix(0.187410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187410,0.000000,0.000000,0.250000,0,0);}
.m88_c00353{transform:matrix(0.192272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192272,0.000000,0.000000,0.250000,0,0);}
.m15_c00353{transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);}
.m52_c00353{transform:matrix(0.202900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202900,0.000000,0.000000,0.250000,0,0);}
.m42_c00353{transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);}
.m74_c00353{transform:matrix(0.210881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210881,0.000000,0.000000,0.250000,0,0);}
.m16_c00353{transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);}
.md_c00353{transform:matrix(0.223770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223770,0.000000,0.000000,0.250000,0,0);}
.m60_c00353{transform:matrix(0.226673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226673,0.000000,0.000000,0.250000,0,0);}
.ma8_c00353{transform:matrix(0.233658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233658,0.000000,0.000000,0.250000,0,0);}
.m8_c00353{transform:matrix(0.234677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234677,0.000000,0.000000,0.250000,0,0);}
.m9b_c00353{transform:matrix(0.236543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236543,0.000000,0.000000,0.250000,0,0);}
.m98_c00353{transform:matrix(0.237618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237618,0.000000,0.000000,0.250000,0,0);}
.m6e_c00353{transform:matrix(0.243950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243950,0.000000,0.000000,0.250000,0,0);}
.m78_c00353{transform:matrix(0.249499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249499,0.000000,0.000000,0.250000,0,0);}
.m0_c00353{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00353{transform:matrix(0.250029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250029,0.000000,0.000000,0.250000,0,0);}
.m21_c00353{transform:matrix(0.250137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250137,0.000000,0.000000,0.250000,0,0);}
.mbe_c00353{transform:matrix(0.252255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252255,0.000000,0.000000,0.250000,0,0);}
.m9_c00353{transform:matrix(0.254604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254604,0.000000,0.000000,0.250000,0,0);}
.m66_c00353{transform:matrix(0.254683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254683,0.000000,0.000000,0.250000,0,0);}
.m54_c00353{transform:matrix(0.255310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255310,0.000000,0.000000,0.250000,0,0);}
.m40_c00353{transform:matrix(0.257677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257677,0.000000,0.000000,0.250000,0,0);}
.m55_c00353{transform:matrix(0.259408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259408,0.000000,0.000000,0.250000,0,0);}
.m81_c00353{transform:matrix(0.259488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259488,0.000000,0.000000,0.250000,0,0);}
.mc5_c00353{transform:matrix(0.260490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260490,0.000000,0.000000,0.250000,0,0);}
.m61_c00353{transform:matrix(0.261871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261871,0.000000,0.000000,0.250000,0,0);}
.m77_c00353{transform:matrix(0.262859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262859,0.000000,0.000000,0.250000,0,0);}
.m4d_c00353{transform:matrix(0.263105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263105,0.000000,0.000000,0.250000,0,0);}
.m87_c00353{transform:matrix(0.265044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265044,0.000000,0.000000,0.250000,0,0);}
.m20_c00353{transform:matrix(0.265366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265366,0.000000,0.000000,0.250000,0,0);}
.m91_c00353{transform:matrix(0.265514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265514,0.000000,0.000000,0.250000,0,0);}
.m25_c00353{transform:matrix(0.266075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266075,0.000000,0.000000,0.250000,0,0);}
.m67_c00353{transform:matrix(0.266220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266220,0.000000,0.000000,0.250000,0,0);}
.m9c_c00353{transform:matrix(0.267233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267233,0.000000,0.000000,0.250000,0,0);}
.m83_c00353{transform:matrix(0.268206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268206,0.000000,0.000000,0.250000,0,0);}
.m12_c00353{transform:matrix(0.268416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268416,0.000000,0.000000,0.250000,0,0);}
.m31_c00353{transform:matrix(0.268841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268841,0.000000,0.000000,0.250000,0,0);}
.m70_c00353{transform:matrix(0.269016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269016,0.000000,0.000000,0.250000,0,0);}
.m2d_c00353{transform:matrix(0.269749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269749,0.000000,0.000000,0.250000,0,0);}
.ma5_c00353{transform:matrix(0.270312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270312,0.000000,0.000000,0.250000,0,0);}
.m2e_c00353{transform:matrix(0.270827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270827,0.000000,0.000000,0.250000,0,0);}
.mba_c00353{transform:matrix(0.271394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271394,0.000000,0.000000,0.250000,0,0);}
.m65_c00353{transform:matrix(0.271840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271840,0.000000,0.000000,0.250000,0,0);}
.m30_c00353{transform:matrix(0.273819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273819,0.000000,0.000000,0.250000,0,0);}
.m5f_c00353{transform:matrix(0.274620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274620,0.000000,0.000000,0.250000,0,0);}
.m33_c00353{transform:matrix(0.275775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275775,0.000000,0.000000,0.250000,0,0);}
.m4b_c00353{transform:matrix(0.276155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276155,0.000000,0.000000,0.250000,0,0);}
.m23_c00353{transform:matrix(0.278623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278623,0.000000,0.000000,0.250000,0,0);}
.mbc_c00353{transform:matrix(0.278719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278719,0.000000,0.000000,0.250000,0,0);}
.me_c00353{transform:matrix(0.279429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279429,0.000000,0.000000,0.250000,0,0);}
.m1b_c00353{transform:matrix(0.280331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280331,0.000000,0.000000,0.250000,0,0);}
.mc3_c00353{transform:matrix(0.280432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280432,0.000000,0.000000,0.250000,0,0);}
.m72_c00353{transform:matrix(0.280521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280521,0.000000,0.000000,0.250000,0,0);}
.m4e_c00353{transform:matrix(0.280734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280734,0.000000,0.000000,0.250000,0,0);}
.m5a_c00353{transform:matrix(0.281630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281630,0.000000,0.000000,0.250000,0,0);}
.ma9_c00353{transform:matrix(0.281785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281785,0.000000,0.000000,0.250000,0,0);}
.mf_c00353{transform:matrix(0.281958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281958,0.000000,0.000000,0.250000,0,0);}
.m7e_c00353{transform:matrix(0.282497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282497,0.000000,0.000000,0.250000,0,0);}
.m73_c00353{transform:matrix(0.282706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282706,0.000000,0.000000,0.250000,0,0);}
.m4a_c00353{transform:matrix(0.283307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283307,0.000000,0.000000,0.250000,0,0);}
.ma1_c00353{transform:matrix(0.283483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283483,0.000000,0.000000,0.250000,0,0);}
.m9e_c00353{transform:matrix(0.283579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283579,0.000000,0.000000,0.250000,0,0);}
.m85_c00353{transform:matrix(0.283960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283960,0.000000,0.000000,0.250000,0,0);}
.mbf_c00353{transform:matrix(0.284020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284020,0.000000,0.000000,0.250000,0,0);}
.m68_c00353{transform:matrix(0.284510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284510,0.000000,0.000000,0.250000,0,0);}
.m10_c00353{transform:matrix(0.284933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284933,0.000000,0.000000,0.250000,0,0);}
.m57_c00353{transform:matrix(0.285135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285135,0.000000,0.000000,0.250000,0,0);}
.m14_c00353{transform:matrix(0.285285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285285,0.000000,0.000000,0.250000,0,0);}
.m9d_c00353{transform:matrix(0.285314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285314,0.000000,0.000000,0.250000,0,0);}
.m96_c00353{transform:matrix(0.286532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286532,0.000000,0.000000,0.250000,0,0);}
.m1_c00353{transform:matrix(0.286643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286643,0.000000,0.000000,0.250000,0,0);}
.m3e_c00353{transform:matrix(0.287379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287379,0.000000,0.000000,0.250000,0,0);}
.m46_c00353{transform:matrix(0.287380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287380,0.000000,0.000000,0.250000,0,0);}
.m3f_c00353{transform:matrix(0.287467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287467,0.000000,0.000000,0.250000,0,0);}
.m1c_c00353{transform:matrix(0.288703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288703,0.000000,0.000000,0.250000,0,0);}
.m59_c00353{transform:matrix(0.289029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289029,0.000000,0.000000,0.250000,0,0);}
.m29_c00353{transform:matrix(0.289834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289834,0.000000,0.000000,0.250000,0,0);}
.m3_c00353{transform:matrix(0.289878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289878,0.000000,0.000000,0.250000,0,0);}
.m71_c00353{transform:matrix(0.290429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290429,0.000000,0.000000,0.250000,0,0);}
.m7c_c00353{transform:matrix(0.291094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291094,0.000000,0.000000,0.250000,0,0);}
.m84_c00353{transform:matrix(0.291581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291581,0.000000,0.000000,0.250000,0,0);}
.m44_c00353{transform:matrix(0.291864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291864,0.000000,0.000000,0.250000,0,0);}
.m11_c00353{transform:matrix(0.292439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292439,0.000000,0.000000,0.250000,0,0);}
.m97_c00353{transform:matrix(0.292982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292982,0.000000,0.000000,0.250000,0,0);}
.m34_c00353{transform:matrix(0.293005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293005,0.000000,0.000000,0.250000,0,0);}
.ma7_c00353{transform:matrix(0.293425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293425,0.000000,0.000000,0.250000,0,0);}
.m36_c00353{transform:matrix(0.293697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293697,0.000000,0.000000,0.250000,0,0);}
.m6f_c00353{transform:matrix(0.294058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294058,0.000000,0.000000,0.250000,0,0);}
.m6_c00353{transform:matrix(0.294105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294105,0.000000,0.000000,0.250000,0,0);}
.m8a_c00353{transform:matrix(0.295246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295246,0.000000,0.000000,0.250000,0,0);}
.m3d_c00353{transform:matrix(0.295284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295284,0.000000,0.000000,0.250000,0,0);}
.m69_c00353{transform:matrix(0.295649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295649,0.000000,0.000000,0.250000,0,0);}
.m62_c00353{transform:matrix(0.296520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296520,0.000000,0.000000,0.250000,0,0);}
.m2c_c00353{transform:matrix(0.296765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296765,0.000000,0.000000,0.250000,0,0);}
.mb0_c00353{transform:matrix(0.297644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297644,0.000000,0.000000,0.250000,0,0);}
.m63_c00353{transform:matrix(0.297792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297792,0.000000,0.000000,0.250000,0,0);}
.mb1_c00353{transform:matrix(0.297927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297927,0.000000,0.000000,0.250000,0,0);}
.m6d_c00353{transform:matrix(0.298267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298267,0.000000,0.000000,0.250000,0,0);}
.mc1_c00353{transform:matrix(0.298329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298329,0.000000,0.000000,0.250000,0,0);}
.m7b_c00353{transform:matrix(0.298514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298514,0.000000,0.000000,0.250000,0,0);}
.ma4_c00353{transform:matrix(0.298589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298589,0.000000,0.000000,0.250000,0,0);}
.m8b_c00353{transform:matrix(0.299303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299303,0.000000,0.000000,0.250000,0,0);}
.maf_c00353{transform:matrix(0.299323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299323,0.000000,0.000000,0.250000,0,0);}
.m5c_c00353{transform:matrix(0.299564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299564,0.000000,0.000000,0.250000,0,0);}
.m8f_c00353{transform:matrix(0.299832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299832,0.000000,0.000000,0.250000,0,0);}
.m3c_c00353{transform:matrix(0.300214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300214,0.000000,0.000000,0.250000,0,0);}
.ma6_c00353{transform:matrix(0.300611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300611,0.000000,0.000000,0.250000,0,0);}
.m35_c00353{transform:matrix(0.302215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302215,0.000000,0.000000,0.250000,0,0);}
.m95_c00353{transform:matrix(0.303269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303269,0.000000,0.000000,0.250000,0,0);}
.m24_c00353{transform:matrix(0.304182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304182,0.000000,0.000000,0.250000,0,0);}
.mc2_c00353{transform:matrix(0.304820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304820,0.000000,0.000000,0.250000,0,0);}
.m19_c00353{transform:matrix(0.305342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305342,0.000000,0.000000,0.250000,0,0);}
.mb2_c00353{transform:matrix(0.305595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305595,0.000000,0.000000,0.250000,0,0);}
.m50_c00353{transform:matrix(0.306163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306163,0.000000,0.000000,0.250000,0,0);}
.m6b_c00353{transform:matrix(0.306884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306884,0.000000,0.000000,0.250000,0,0);}
.m38_c00353{transform:matrix(0.307647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307647,0.000000,0.000000,0.250000,0,0);}
.m93_c00353{transform:matrix(0.307819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307819,0.000000,0.000000,0.250000,0,0);}
.m7_c00353{transform:matrix(0.308886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308886,0.000000,0.000000,0.250000,0,0);}
.m4c_c00353{transform:matrix(0.308942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308942,0.000000,0.000000,0.250000,0,0);}
.m51_c00353{transform:matrix(0.309078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309078,0.000000,0.000000,0.250000,0,0);}
.mc_c00353{transform:matrix(0.310046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310046,0.000000,0.000000,0.250000,0,0);}
.m5e_c00353{transform:matrix(0.311016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311016,0.000000,0.000000,0.250000,0,0);}
.m64_c00353{transform:matrix(0.311711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311711,0.000000,0.000000,0.250000,0,0);}
.m13_c00353{transform:matrix(0.311823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311823,0.000000,0.000000,0.250000,0,0);}
.maa_c00353{transform:matrix(0.312468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312468,0.000000,0.000000,0.250000,0,0);}
.mb6_c00353{transform:matrix(0.312812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312812,0.000000,0.000000,0.250000,0,0);}
.m94_c00353{transform:matrix(0.313069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313069,0.000000,0.000000,0.250000,0,0);}
.m26_c00353{transform:matrix(0.313994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313994,0.000000,0.000000,0.250000,0,0);}
.mb8_c00353{transform:matrix(0.314362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314362,0.000000,0.000000,0.250000,0,0);}
.ma0_c00353{transform:matrix(0.315613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315613,0.000000,0.000000,0.250000,0,0);}
.mad_c00353{transform:matrix(0.316083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316083,0.000000,0.000000,0.250000,0,0);}
.m1d_c00353{transform:matrix(0.316509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316509,0.000000,0.000000,0.250000,0,0);}
.m86_c00353{transform:matrix(0.316563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316563,0.000000,0.000000,0.250000,0,0);}
.m6a_c00353{transform:matrix(0.316642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316642,0.000000,0.000000,0.250000,0,0);}
.m41_c00353{transform:matrix(0.316690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316690,0.000000,0.000000,0.250000,0,0);}
.mab_c00353{transform:matrix(0.316775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316775,0.000000,0.000000,0.250000,0,0);}
.m53_c00353{transform:matrix(0.317395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317395,0.000000,0.000000,0.250000,0,0);}
.m76_c00353{transform:matrix(0.317490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317490,0.000000,0.000000,0.250000,0,0);}
.m89_c00353{transform:matrix(0.317694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317694,0.000000,0.000000,0.250000,0,0);}
.m99_c00353{transform:matrix(0.317856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317856,0.000000,0.000000,0.250000,0,0);}
.mb5_c00353{transform:matrix(0.320473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320473,0.000000,0.000000,0.250000,0,0);}
.mbd_c00353{transform:matrix(0.320962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320962,0.000000,0.000000,0.250000,0,0);}
.m45_c00353{transform:matrix(0.322535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322535,0.000000,0.000000,0.250000,0,0);}
.m27_c00353{transform:matrix(0.326312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326312,0.000000,0.000000,0.250000,0,0);}
.m7f_c00353{transform:matrix(0.327008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327008,0.000000,0.000000,0.250000,0,0);}
.m1e_c00353{transform:matrix(0.328514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328514,0.000000,0.000000,0.250000,0,0);}
.m7d_c00353{transform:matrix(0.328610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328610,0.000000,0.000000,0.250000,0,0);}
.m43_c00353{transform:matrix(0.332355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332355,0.000000,0.000000,0.250000,0,0);}
.mc0_c00353{transform:matrix(0.332745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332745,0.000000,0.000000,0.250000,0,0);}
.m2b_c00353{transform:matrix(0.334074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334074,0.000000,0.000000,0.250000,0,0);}
.ma3_c00353{transform:matrix(0.334138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334138,0.000000,0.000000,0.250000,0,0);}
.m75_c00353{transform:matrix(0.334905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334905,0.000000,0.000000,0.250000,0,0);}
.m28_c00353{transform:matrix(0.335416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335416,0.000000,0.000000,0.250000,0,0);}
.m3a_c00353{transform:matrix(0.335444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335444,0.000000,0.000000,0.250000,0,0);}
.m49_c00353{transform:matrix(0.335959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335959,0.000000,0.000000,0.250000,0,0);}
.m8e_c00353{transform:matrix(0.336244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336244,0.000000,0.000000,0.250000,0,0);}
.mac_c00353{transform:matrix(0.336329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336329,0.000000,0.000000,0.250000,0,0);}
.m8d_c00353{transform:matrix(0.336513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336513,0.000000,0.000000,0.250000,0,0);}
.mb7_c00353{transform:matrix(0.336648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336648,0.000000,0.000000,0.250000,0,0);}
.m8c_c00353{transform:matrix(0.337189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337189,0.000000,0.000000,0.250000,0,0);}
.ma_c00353{transform:matrix(0.338044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338044,0.000000,0.000000,0.250000,0,0);}
.m32_c00353{transform:matrix(0.338534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338534,0.000000,0.000000,0.250000,0,0);}
.m92_c00353{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);}
.mb9_c00353{transform:matrix(0.342744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342744,0.000000,0.000000,0.250000,0,0);}
.mb4_c00353{transform:matrix(0.344109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344109,0.000000,0.000000,0.250000,0,0);}
.mbb_c00353{transform:matrix(0.344556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344556,0.000000,0.000000,0.250000,0,0);}
.m6c_c00353{transform:matrix(0.347026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347026,0.000000,0.000000,0.250000,0,0);}
.m37_c00353{transform:matrix(0.347329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347329,0.000000,0.000000,0.250000,0,0);}
.mae_c00353{transform:matrix(0.350326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350326,0.000000,0.000000,0.250000,0,0);}
.m4f_c00353{transform:matrix(0.351645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351645,0.000000,0.000000,0.250000,0,0);}
.m5d_c00353{transform:matrix(0.351961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351961,0.000000,0.000000,0.250000,0,0);}
.m2a_c00353{transform:matrix(0.353088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353088,0.000000,0.000000,0.250000,0,0);}
.m48_c00353{transform:matrix(0.353245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353245,0.000000,0.000000,0.250000,0,0);}
.mb3_c00353{transform:matrix(0.353367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353367,0.000000,0.000000,0.250000,0,0);}
.m1f_c00353{transform:matrix(0.355384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355384,0.000000,0.000000,0.250000,0,0);}
.m82_c00353{transform:matrix(0.356896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356896,0.000000,0.000000,0.250000,0,0);}
.m90_c00353{transform:matrix(0.357863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357863,0.000000,0.000000,0.250000,0,0);}
.m1a_c00353{transform:matrix(0.359129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359129,0.000000,0.000000,0.250000,0,0);}
.m22_c00353{transform:matrix(0.361279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361279,0.000000,0.000000,0.250000,0,0);}
.mb_c00353{transform:matrix(0.362086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362086,0.000000,0.000000,0.250000,0,0);}
.m58_c00353{transform:matrix(0.367677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367677,0.000000,0.000000,0.250000,0,0);}
.m3b_c00353{transform:matrix(0.369834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369834,0.000000,0.000000,0.250000,0,0);}
.m56_c00353{transform:matrix(0.370814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370814,0.000000,0.000000,0.250000,0,0);}
.m7a_c00353{transform:matrix(0.373961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373961,0.000000,0.000000,0.250000,0,0);}
.m47_c00353{transform:matrix(0.380834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380834,0.000000,0.000000,0.250000,0,0);}
.m39_c00353{transform:matrix(0.407499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407499,0.000000,0.000000,0.250000,0,0);}
.m9a_c00353{transform:matrix(0.407816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407816,0.000000,0.000000,0.250000,0,0);}
.m2_c00353{transform:matrix(0.417527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417527,0.000000,0.000000,0.250000,0,0);}
.m79_c00353{transform:matrix(0.417842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417842,0.000000,0.000000,0.250000,0,0);}
.m5b_c00353{transform:matrix(0.429477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429477,0.000000,0.000000,0.250000,0,0);}
.mc4_c00353{transform:matrix(0.436760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436760,0.000000,0.000000,0.250000,0,0);}
.m4_c00353{transform:matrix(0.444701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444701,0.000000,0.000000,0.250000,0,0);}
.v0_c00353{vertical-align:0.000000px;}
.ls9_c00353{letter-spacing:-2.669680px;}
.lsb_c00353{letter-spacing:-2.668050px;}
.ls19_c00353{letter-spacing:-1.302840px;}
.ls12_c00353{letter-spacing:-0.495495px;}
.ls7_c00353{letter-spacing:0.000000px;}
.ls3_c00353{letter-spacing:0.861399px;}
.lsd_c00353{letter-spacing:0.869022px;}
.ls18_c00353{letter-spacing:0.899514px;}
.ls16_c00353{letter-spacing:0.961805px;}
.ls14_c00353{letter-spacing:1.440747px;}
.ls5_c00353{letter-spacing:1.570338px;}
.ls13_c00353{letter-spacing:1.661814px;}
.ls11_c00353{letter-spacing:2.326500px;}
.ls0_c00353{letter-spacing:2.866248px;}
.ls15_c00353{letter-spacing:2.995839px;}
.ls1_c00353{letter-spacing:3.285513px;}
.lsc_c00353{letter-spacing:3.286810px;}
.ls10_c00353{letter-spacing:3.293136px;}
.lsa_c00353{letter-spacing:3.811500px;}
.ls8_c00353{letter-spacing:4.197610px;}
.ls2_c00353{letter-spacing:8.232840px;}
.ls4_c00353{letter-spacing:10.442520px;}
.ls17_c00353{letter-spacing:31.363200px;}
.lse_c00353{letter-spacing:49.896198px;}
.lsf_c00353{letter-spacing:51.321798px;}
.ls6_c00353{letter-spacing:55.972158px;}
.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;}
}
.ws1_c00353{word-spacing:-86.869245px;}
.ws0_c00353{word-spacing:-19.057500px;}
.ws8_c00353{word-spacing:0.000000px;}
.ws6_c00353{word-spacing:0.152460px;}
.ws3_c00353{word-spacing:0.228690px;}
.ws5_c00353{word-spacing:0.533610px;}
.ws2_c00353{word-spacing:2.286900px;}
.ws4_c00353{word-spacing:4.725270px;}
.ws7_c00353{word-spacing:8.080380px;}
._1b_c00353{margin-left:-11.282040px;}
._2_c00353{margin-left:-9.909900px;}
._b_c00353{margin-left:-8.841690px;}
._e_c00353{margin-left:-7.165620px;}
._19_c00353{margin-left:-1.295910px;}
._3_c00353{width:1.552320px;}
._7_c00353{width:2.964060px;}
._6_c00353{width:5.336100px;}
._15_c00353{width:6.708240px;}
._c_c00353{width:8.461530px;}
._0_c00353{width:9.604980px;}
._4_c00353{width:11.739420px;}
._d_c00353{width:13.111560px;}
._9_c00353{width:15.017310px;}
._a_c00353{width:21.496860px;}
._5_c00353{width:22.869000px;}
._14_c00353{width:24.317370px;}
._16_c00353{width:27.137880px;}
._10_c00353{width:28.510020px;}
._1a_c00353{width:31.101840px;}
._12_c00353{width:32.523480px;}
._13_c00353{width:35.390322px;}
._18_c00353{width:36.560898px;}
._8_c00353{width:38.115000px;}
._f_c00353{width:40.706820px;}
._1_c00353{width:42.002730px;}
._17_c00353{width:44.365860px;}
._11_c00353{width:51.683940px;}
.fc0_c00353{color:transparent;}
.fsa_c00353{font-size:25.146000px;}
.fs1_c00353{font-size:27.720000px;}
.fsf_c00353{font-size:28.314000px;}
.fsb_c00353{font-size:31.363200px;}
.fse_c00353{font-size:37.224000px;}
.fs0_c00353{font-size:39.600000px;}
.fs8_c00353{font-size:46.530000px;}
.fs6_c00353{font-size:49.896198px;}
.fs9_c00353{font-size:50.094000px;}
.fs7_c00353{font-size:51.321798px;}
.fsd_c00353{font-size:59.400000px;}
.fs4_c00353{font-size:65.736198px;}
.fs5_c00353{font-size:70.884000px;}
.fs3_c00353{font-size:76.230000px;}
.fs2_c00353{font-size:83.952198px;}
.fsc_c00353{font-size:91.872198px;}
.y0_c00353{bottom:0.000000px;}
.y20_c00353{bottom:44.100585px;}
.y4_c00353{bottom:75.111345px;}
.y1_c00353{bottom:76.500000px;}
.y3_c00353{bottom:103.267935px;}
.y1f_c00353{bottom:137.125935px;}
.y1e_c00353{bottom:143.184735px;}
.y1d_c00353{bottom:174.542985px;}
.y1c_c00353{bottom:239.769135px;}
.y1b_c00353{bottom:272.909385px;}
.y1a_c00353{bottom:304.985385px;}
.y19_c00353{bottom:305.346735px;}
.y18_c00353{bottom:321.028335px;}
.y17_c00353{bottom:331.715385px;}
.y16_c00353{bottom:338.486985px;}
.y15_c00353{bottom:370.567935px;}
.y14_c00353{bottom:403.356735px;}
.y13_c00353{bottom:435.432735px;}
.y12_c00353{bottom:467.865135px;}
.y11_c00353{bottom:499.941135px;}
.y10_c00353{bottom:532.729935px;}
.yf_c00353{bottom:565.870185px;}
.ye_c00353{bottom:597.951135px;}
.yd_c00353{bottom:662.815935px;}
.y2_c00353{bottom:690.971535px;}
.yc_c00353{bottom:695.604735px;}
.yb_c00353{bottom:728.393535px;}
.ya_c00353{bottom:761.182335px;}
.y9_c00353{bottom:795.040335px;}
.y8_c00353{bottom:827.472735px;}
.y7_c00353{bottom:925.482735px;}
.y6_c00353{bottom:994.975785px;}
.y5_c00353{bottom:1075.165785px;}
.hd_c00353{height:20.887891px;}
.hc_c00353{height:26.226492px;}
.h3_c00353{height:28.911094px;}
.h11_c00353{height:29.530617px;}
.h8_c00353{height:33.230868px;}
.h9_c00353{height:34.180317px;}
.hf_c00353{height:38.750766px;}
.h10_c00353{height:41.224219px;}
.h2_c00353{height:41.301563px;}
.ha_c00353{height:48.529336px;}
.hb_c00353{height:52.246477px;}
.h6_c00353{height:64.516483px;}
.h7_c00353{height:69.568770px;}
.h5_c00353{height:74.815576px;}
.h4_c00353{height:82.394491px;}
.he_c00353{height:95.819832px;}
.h1_c00353{height:1110.000000px;}
.h0_c00353{height:1263.000000px;}
.w1_c00353{width:775.500000px;}
.w0_c00353{width:892.500000px;}
.x0_c00353{left:0.000000px;}
.x3_c00353{left:15.559485px;}
.x4_c00353{left:49.772895px;}
.x1_c00353{left:58.500000px;}
.x2_c00353{left:69.242235px;}
.x3b_c00353{left:95.818785px;}
.x8_c00353{left:96.897885px;}
.x71_c00353{left:98.422485px;}
.x2c_c00353{left:117.178035px;}
.x68_c00353{left:118.450185px;}
.x7_c00353{left:121.766685px;}
.x61_c00353{left:127.929435px;}
.x9_c00353{left:129.869835px;}
.x3c_c00353{left:139.136235px;}
.x22_c00353{left:140.220285px;}
.x18_c00353{left:150.630135px;}
.x72_c00353{left:151.738935px;}
.x51_c00353{left:160.911285px;}
.x23_c00353{left:161.921085px;}
.x33_c00353{left:172.281435px;}
.xa_c00353{left:173.320935px;}
.x47_c00353{left:183.310035px;}
.x2d_c00353{left:194.739585px;}
.x6b_c00353{left:195.774135px;}
.x52_c00353{left:204.877185px;}
.xb_c00353{left:206.040435px;}
.x57_c00353{left:215.564235px;}
.x48_c00353{left:217.153185px;}
.x69_c00353{left:219.222285px;}
.xc_c00353{left:227.325435px;}
.x62_c00353{left:228.587685px;}
.x73_c00353{left:229.632135px;}
.x24_c00353{left:238.779735px;}
.x6e_c00353{left:239.997435px;}
.x49_c00353{left:241.675485px;}
.x19_c00353{left:249.372735px;}
.x1a_c00353{left:260.242935px;}
.xd_c00353{left:261.871485px;}
.x74_c00353{left:263.158485px;}
.x1b_c00353{left:272.652585px;}
.xe_c00353{left:273.830685px;}
.x58_c00353{left:282.206085px;}
.x63_c00353{left:283.834635px;}
.x4e_c00353{left:292.942635px;}
.x34_c00353{left:294.170235px;}
.x5c_c00353{left:295.571085px;}
.x25_c00353{left:305.421585px;}
.x6c_c00353{left:315.395835px;}
.x26_c00353{left:316.469985px;}
.x75_c00353{left:317.648085px;}
.x1c_c00353{left:327.033285px;}
.x5d_c00353{left:328.394535px;}
.x35_c00353{left:330.062685px;}
.x27_c00353{left:337.878735px;}
.x59_c00353{left:339.051885px;}
.xf_c00353{left:349.783485px;}
.x36_c00353{left:350.813085px;}
.x3d_c00353{left:360.945735px;}
.x5a_c00353{left:363.564285px;}
.x64_c00353{left:370.994235px;}
.x6f_c00353{left:373.266285px;}
.x10_c00353{left:383.651385px;}
.x4f_c00353{left:394.318635px;}
.x5e_c00353{left:396.259035px;}
.x11_c00353{left:399.011235px;}
.x53_c00353{left:405.332385px;}
.x12_c00353{left:416.059035px;}
.x1d_c00353{left:417.093585px;}
.x4a_c00353{left:426.642135px;}
.x41_c00353{left:427.820235px;}
.x54_c00353{left:437.606385px;}
.x37_c00353{left:438.809235px;}
.x1e_c00353{left:447.976635px;}
.x42_c00353{left:449.189385px;}
.x2e_c00353{left:450.575385px;}
.x55_c00353{left:460.643685px;}
.x13_c00353{left:471.692085px;}
.x4b_c00353{left:477.706335px;}
.x5f_c00353{left:481.478235px;}
.x38_c00353{left:482.686035px;}
.x1f_c00353{left:493.566135px;}
.x28_c00353{left:495.338235px;}
.x43_c00353{left:504.208635px;}
.x14_c00353{left:505.861935px;}
.x39_c00353{left:516.539085px;}
.x15_c00353{left:527.295435px;}
.x70_c00353{left:530.003085px;}
.x3e_c00353{left:537.462735px;}
.x16_c00353{left:538.487385px;}
.x29_c00353{left:548.154735px;}
.x4c_c00353{left:558.425985px;}
.x44_c00353{left:559.688235px;}
.x56_c00353{left:560.712885px;}
.x20_c00353{left:570.736635px;}
.x66_c00353{left:580.874235px;}
.x50_c00353{left:582.032535px;}
.x17_c00353{left:592.986885px;}
.x45_c00353{left:603.654135px;}
.x21_c00353{left:614.029335px;}
.x3a_c00353{left:615.613335px;}
.x2a_c00353{left:625.077735px;}
.x6d_c00353{left:626.107335px;}
.x2f_c00353{left:637.007235px;}
.x46_c00353{left:638.017035px;}
.x4d_c00353{left:648.397185px;}
.x3f_c00353{left:659.722785px;}
.x5_c00353{left:670.795935px;}
.x60_c00353{left:679.705935px;}
.x30_c00353{left:680.735535px;}
.x6a_c00353{left:682.265085px;}
.x2b_c00353{left:692.427435px;}
.x6_c00353{left:693.600585px;}
.x77_c00353{left:694.793535px;}
.x67_c00353{left:699.733635px;}
.x40_c00353{left:702.050235px;}
.x31_c00353{left:703.282785px;}
.x76_c00353{left:706.871535px;}
.x5b_c00353{left:714.138135px;}
.x32_c00353{left:726.052785px;}
.x65_c00353{left:736.794285px;}
@media print{
.v0_c00353{vertical-align:0.000000pt;}
.ls9_c00353{letter-spacing:-2.373049pt;}
.lsb_c00353{letter-spacing:-2.371600pt;}
.ls19_c00353{letter-spacing:-1.158080pt;}
.ls12_c00353{letter-spacing:-0.440440pt;}
.ls7_c00353{letter-spacing:0.000000pt;}
.ls3_c00353{letter-spacing:0.765688pt;}
.lsd_c00353{letter-spacing:0.772464pt;}
.ls18_c00353{letter-spacing:0.799568pt;}
.ls16_c00353{letter-spacing:0.854938pt;}
.ls14_c00353{letter-spacing:1.280664pt;}
.ls5_c00353{letter-spacing:1.395856pt;}
.ls13_c00353{letter-spacing:1.477168pt;}
.ls11_c00353{letter-spacing:2.068000pt;}
.ls0_c00353{letter-spacing:2.547776pt;}
.ls15_c00353{letter-spacing:2.662968pt;}
.ls1_c00353{letter-spacing:2.920456pt;}
.lsc_c00353{letter-spacing:2.921609pt;}
.ls10_c00353{letter-spacing:2.927232pt;}
.lsa_c00353{letter-spacing:3.388000pt;}
.ls8_c00353{letter-spacing:3.731209pt;}
.ls2_c00353{letter-spacing:7.318080pt;}
.ls4_c00353{letter-spacing:9.282240pt;}
.ls17_c00353{letter-spacing:27.878400pt;}
.lse_c00353{letter-spacing:44.352176pt;}
.lsf_c00353{letter-spacing:45.619376pt;}
.ls6_c00353{letter-spacing:49.753029pt;}
.ws1_c00353{word-spacing:-77.217106pt;}
.ws0_c00353{word-spacing:-16.940000pt;}
.ws8_c00353{word-spacing:0.000000pt;}
.ws6_c00353{word-spacing:0.135520pt;}
.ws3_c00353{word-spacing:0.203280pt;}
.ws5_c00353{word-spacing:0.474320pt;}
.ws2_c00353{word-spacing:2.032800pt;}
.ws4_c00353{word-spacing:4.200240pt;}
.ws7_c00353{word-spacing:7.182560pt;}
._1b_c00353{margin-left:-10.028480pt;}
._2_c00353{margin-left:-8.808800pt;}
._b_c00353{margin-left:-7.859280pt;}
._e_c00353{margin-left:-6.369440pt;}
._19_c00353{margin-left:-1.151920pt;}
._3_c00353{width:1.379840pt;}
._7_c00353{width:2.634720pt;}
._6_c00353{width:4.743200pt;}
._15_c00353{width:5.962880pt;}
._c_c00353{width:7.521360pt;}
._0_c00353{width:8.537760pt;}
._4_c00353{width:10.435040pt;}
._d_c00353{width:11.654720pt;}
._9_c00353{width:13.348720pt;}
._a_c00353{width:19.108320pt;}
._5_c00353{width:20.328000pt;}
._14_c00353{width:21.615440pt;}
._16_c00353{width:24.122560pt;}
._10_c00353{width:25.342240pt;}
._1a_c00353{width:27.646080pt;}
._12_c00353{width:28.909760pt;}
._13_c00353{width:31.458064pt;}
._18_c00353{width:32.498576pt;}
._8_c00353{width:33.880000pt;}
._f_c00353{width:36.183840pt;}
._1_c00353{width:37.335760pt;}
._17_c00353{width:39.436320pt;}
._11_c00353{width:45.941280pt;}
.fsa_c00353{font-size:22.352000pt;}
.fs1_c00353{font-size:24.640000pt;}
.fsf_c00353{font-size:25.168000pt;}
.fsb_c00353{font-size:27.878400pt;}
.fse_c00353{font-size:33.088000pt;}
.fs0_c00353{font-size:35.200000pt;}
.fs8_c00353{font-size:41.360000pt;}
.fs6_c00353{font-size:44.352176pt;}
.fs9_c00353{font-size:44.528000pt;}
.fs7_c00353{font-size:45.619376pt;}
.fsd_c00353{font-size:52.800000pt;}
.fs4_c00353{font-size:58.432176pt;}
.fs5_c00353{font-size:63.008000pt;}
.fs3_c00353{font-size:67.760000pt;}
.fs2_c00353{font-size:74.624176pt;}
.fsc_c00353{font-size:81.664176pt;}
.y0_c00353{bottom:0.000000pt;}
.y20_c00353{bottom:39.200520pt;}
.y4_c00353{bottom:66.765640pt;}
.y1_c00353{bottom:68.000000pt;}
.y3_c00353{bottom:91.793720pt;}
.y1f_c00353{bottom:121.889720pt;}
.y1e_c00353{bottom:127.275320pt;}
.y1d_c00353{bottom:155.149320pt;}
.y1c_c00353{bottom:213.128120pt;}
.y1b_c00353{bottom:242.586120pt;}
.y1a_c00353{bottom:271.098120pt;}
.y19_c00353{bottom:271.419320pt;}
.y18_c00353{bottom:285.358520pt;}
.y17_c00353{bottom:294.858120pt;}
.y16_c00353{bottom:300.877320pt;}
.y15_c00353{bottom:329.393720pt;}
.y14_c00353{bottom:358.539320pt;}
.y13_c00353{bottom:387.051320pt;}
.y12_c00353{bottom:415.880120pt;}
.y11_c00353{bottom:444.392120pt;}
.y10_c00353{bottom:473.537720pt;}
.yf_c00353{bottom:502.995720pt;}
.ye_c00353{bottom:531.512120pt;}
.yd_c00353{bottom:589.169720pt;}
.y2_c00353{bottom:614.196920pt;}
.yc_c00353{bottom:618.315320pt;}
.yb_c00353{bottom:647.460920pt;}
.ya_c00353{bottom:676.606520pt;}
.y9_c00353{bottom:706.702520pt;}
.y8_c00353{bottom:735.531320pt;}
.y7_c00353{bottom:822.651320pt;}
.y6_c00353{bottom:884.422920pt;}
.y5_c00353{bottom:955.702920pt;}
.hd_c00353{height:18.567014pt;}
.hc_c00353{height:23.312438pt;}
.h3_c00353{height:25.698750pt;}
.h11_c00353{height:26.249438pt;}
.h8_c00353{height:29.538549pt;}
.h9_c00353{height:30.382504pt;}
.hf_c00353{height:34.445125pt;}
.h10_c00353{height:36.643750pt;}
.h2_c00353{height:36.712500pt;}
.ha_c00353{height:43.137188pt;}
.hb_c00353{height:46.441313pt;}
.h6_c00353{height:57.347985pt;}
.h7_c00353{height:61.838906pt;}
.h5_c00353{height:66.502734pt;}
.h4_c00353{height:73.239548pt;}
.he_c00353{height:85.173184pt;}
.h1_c00353{height:986.666667pt;}
.h0_c00353{height:1122.666667pt;}
.w1_c00353{width:689.333333pt;}
.w0_c00353{width:793.333333pt;}
.x0_c00353{left:0.000000pt;}
.x3_c00353{left:13.830653pt;}
.x4_c00353{left:44.242573pt;}
.x1_c00353{left:52.000000pt;}
.x2_c00353{left:61.548653pt;}
.x3b_c00353{left:85.172253pt;}
.x8_c00353{left:86.131453pt;}
.x71_c00353{left:87.486653pt;}
.x2c_c00353{left:104.158253pt;}
.x68_c00353{left:105.289053pt;}
.x7_c00353{left:108.237053pt;}
.x61_c00353{left:113.715053pt;}
.x9_c00353{left:115.439853pt;}
.x3c_c00353{left:123.676653pt;}
.x22_c00353{left:124.640253pt;}
.x18_c00353{left:133.893453pt;}
.x72_c00353{left:134.879053pt;}
.x51_c00353{left:143.032253pt;}
.x23_c00353{left:143.929853pt;}
.x33_c00353{left:153.139053pt;}
.xa_c00353{left:154.063053pt;}
.x47_c00353{left:162.942253pt;}
.x2d_c00353{left:173.101853pt;}
.x6b_c00353{left:174.021453pt;}
.x52_c00353{left:182.113053pt;}
.xb_c00353{left:183.147053pt;}
.x57_c00353{left:191.612653pt;}
.x48_c00353{left:193.025053pt;}
.x69_c00353{left:194.864253pt;}
.xc_c00353{left:202.067053pt;}
.x62_c00353{left:203.189053pt;}
.x73_c00353{left:204.117453pt;}
.x24_c00353{left:212.248653pt;}
.x6e_c00353{left:213.331053pt;}
.x49_c00353{left:214.822653pt;}
.x19_c00353{left:221.664653pt;}
.x1a_c00353{left:231.327053pt;}
.xd_c00353{left:232.774653pt;}
.x74_c00353{left:233.918653pt;}
.x1b_c00353{left:242.357853pt;}
.xe_c00353{left:243.405053pt;}
.x58_c00353{left:250.849853pt;}
.x63_c00353{left:252.297453pt;}
.x4e_c00353{left:260.393453pt;}
.x34_c00353{left:261.484653pt;}
.x5c_c00353{left:262.729853pt;}
.x25_c00353{left:271.485853pt;}
.x6c_c00353{left:280.351853pt;}
.x26_c00353{left:281.306653pt;}
.x75_c00353{left:282.353853pt;}
.x1c_c00353{left:290.696253pt;}
.x5d_c00353{left:291.906253pt;}
.x35_c00353{left:293.389053pt;}
.x27_c00353{left:300.336653pt;}
.x59_c00353{left:301.379453pt;}
.xf_c00353{left:310.918653pt;}
.x36_c00353{left:311.833853pt;}
.x3d_c00353{left:320.840653pt;}
.x5a_c00353{left:323.168253pt;}
.x64_c00353{left:329.772653pt;}
.x6f_c00353{left:331.792253pt;}
.x10_c00353{left:341.023453pt;}
.x4f_c00353{left:350.505453pt;}
.x5e_c00353{left:352.230253pt;}
.x11_c00353{left:354.676653pt;}
.x53_c00353{left:360.295453pt;}
.x12_c00353{left:369.830253pt;}
.x1d_c00353{left:370.749853pt;}
.x4a_c00353{left:379.237453pt;}
.x41_c00353{left:380.284653pt;}
.x54_c00353{left:388.983453pt;}
.x37_c00353{left:390.052653pt;}
.x1e_c00353{left:398.201453pt;}
.x42_c00353{left:399.279453pt;}
.x2e_c00353{left:400.511453pt;}
.x55_c00353{left:409.461053pt;}
.x13_c00353{left:419.281853pt;}
.x4b_c00353{left:424.627853pt;}
.x5f_c00353{left:427.980653pt;}
.x38_c00353{left:429.054253pt;}
.x1f_c00353{left:438.725453pt;}
.x28_c00353{left:440.300653pt;}
.x43_c00353{left:448.185453pt;}
.x14_c00353{left:449.655053pt;}
.x39_c00353{left:459.145853pt;}
.x15_c00353{left:468.707053pt;}
.x70_c00353{left:471.113853pt;}
.x3e_c00353{left:477.744653pt;}
.x16_c00353{left:478.655453pt;}
.x29_c00353{left:487.248653pt;}
.x4c_c00353{left:496.378653pt;}
.x44_c00353{left:497.500653pt;}
.x56_c00353{left:498.411453pt;}
.x20_c00353{left:507.321453pt;}
.x66_c00353{left:516.332653pt;}
.x50_c00353{left:517.362253pt;}
.x17_c00353{left:527.099453pt;}
.x45_c00353{left:536.581453pt;}
.x21_c00353{left:545.803853pt;}
.x3a_c00353{left:547.211853pt;}
.x2a_c00353{left:555.624653pt;}
.x6d_c00353{left:556.539853pt;}
.x2f_c00353{left:566.228653pt;}
.x46_c00353{left:567.126253pt;}
.x4d_c00353{left:576.353053pt;}
.x3f_c00353{left:586.420253pt;}
.x5_c00353{left:596.263053pt;}
.x60_c00353{left:604.183053pt;}
.x30_c00353{left:605.098253pt;}
.x6a_c00353{left:606.457853pt;}
.x2b_c00353{left:615.491053pt;}
.x6_c00353{left:616.533853pt;}
.x77_c00353{left:617.594253pt;}
.x67_c00353{left:621.985453pt;}
.x40_c00353{left:624.044653pt;}
.x31_c00353{left:625.140253pt;}
.x76_c00353{left:628.330253pt;}
.x5b_c00353{left:634.789453pt;}
.x32_c00353{left:645.380253pt;}
.x65_c00353{left:654.928253pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_452aaf85ecf8fcb17f5bbde8.woff2')format("woff");}.ff1_c00354{font-family:ff1_c00354;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00354;src:url('chunks/assets/font_fb900da6f6689d37c9680c4e.woff2')format("woff");}.ff2_c00354{font-family:ff2_c00354;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00354;src:url('chunks/assets/font_90d9c92efba5897b8d25ed5f.woff2')format("woff");}.ff3_c00354{font-family:ff3_c00354;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00354;src:url('chunks/assets/font_efa0b1346c976311c7552144.woff2')format("woff");}.ff4_c00354{font-family:ff4_c00354;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mbc_c00354{transform:matrix(0.145504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145504,0.000000,0.000000,0.250000,0,0);}
.m2b_c00354{transform:matrix(0.148071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148071,0.000000,0.000000,0.250000,0,0);}
.m17_c00354{transform:matrix(0.168712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168712,0.000000,0.000000,0.250000,0,0);}
.m8d_c00354{transform:matrix(0.173553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173553,0.000000,0.000000,0.250000,0,0);}
.mb4_c00354{transform:matrix(0.175344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175344,0.000000,0.000000,0.250000,0,0);}
.md9_c00354{transform:matrix(0.178401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178401,0.000000,0.000000,0.250000,0,0);}
.m1c_c00354{transform:matrix(0.181817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181817,0.000000,0.000000,0.250000,0,0);}
.m9d_c00354{transform:matrix(0.184694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184694,0.000000,0.000000,0.250000,0,0);}
.mb6_c00354{transform:matrix(0.184738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184738,0.000000,0.000000,0.250000,0,0);}
.m73_c00354{transform:matrix(0.186065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186065,0.000000,0.000000,0.250000,0,0);}
.md2_c00354{transform:matrix(0.190514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190514,0.000000,0.000000,0.250000,0,0);}
.m57_c00354{transform:matrix(0.197384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197384,0.000000,0.000000,0.250000,0,0);}
.m9b_c00354{transform:matrix(0.197753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197753,0.000000,0.000000,0.250000,0,0);}
.md_c00354{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00354{transform:matrix(0.202774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202774,0.000000,0.000000,0.250000,0,0);}
.mcc_c00354{transform:matrix(0.209068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209068,0.000000,0.000000,0.250000,0,0);}
.m69_c00354{transform:matrix(0.218682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218682,0.000000,0.000000,0.250000,0,0);}
.m99_c00354{transform:matrix(0.223475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223475,0.000000,0.000000,0.250000,0,0);}
.m29_c00354{transform:matrix(0.231342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231342,0.000000,0.000000,0.250000,0,0);}
.m3_c00354{transform:matrix(0.232583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232583,0.000000,0.000000,0.250000,0,0);}
.mb2_c00354{transform:matrix(0.248882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248882,0.000000,0.000000,0.250000,0,0);}
.m0_c00354{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m5_c00354{transform:matrix(0.251523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251523,0.000000,0.000000,0.250000,0,0);}
.m1_c00354{transform:matrix(0.252380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252380,0.000000,0.000000,0.250000,0,0);}
.md7_c00354{transform:matrix(0.254107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254107,0.000000,0.000000,0.250000,0,0);}
.m82_c00354{transform:matrix(0.255266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255266,0.000000,0.000000,0.250000,0,0);}
.m5b_c00354{transform:matrix(0.255346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255346,0.000000,0.000000,0.250000,0,0);}
.m90_c00354{transform:matrix(0.255667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255667,0.000000,0.000000,0.250000,0,0);}
.m9c_c00354{transform:matrix(0.257521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257521,0.000000,0.000000,0.250000,0,0);}
.mdd_c00354{transform:matrix(0.257779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257779,0.000000,0.000000,0.250000,0,0);}
.md8_c00354{transform:matrix(0.258716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258716,0.000000,0.000000,0.250000,0,0);}
.m45_c00354{transform:matrix(0.259319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259319,0.000000,0.000000,0.250000,0,0);}
.m2c_c00354{transform:matrix(0.259745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259745,0.000000,0.000000,0.250000,0,0);}
.mc2_c00354{transform:matrix(0.259941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259941,0.000000,0.000000,0.250000,0,0);}
.m48_c00354{transform:matrix(0.260599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260599,0.000000,0.000000,0.250000,0,0);}
.m4b_c00354{transform:matrix(0.262004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262004,0.000000,0.000000,0.250000,0,0);}
.m1a_c00354{transform:matrix(0.262100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262100,0.000000,0.000000,0.250000,0,0);}
.md3_c00354{transform:matrix(0.262275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262275,0.000000,0.000000,0.250000,0,0);}
.ma9_c00354{transform:matrix(0.262999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262999,0.000000,0.000000,0.250000,0,0);}
.mad_c00354{transform:matrix(0.263094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263094,0.000000,0.000000,0.250000,0,0);}
.m78_c00354{transform:matrix(0.263306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263306,0.000000,0.000000,0.250000,0,0);}
.m77_c00354{transform:matrix(0.263752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263752,0.000000,0.000000,0.250000,0,0);}
.m6_c00354{transform:matrix(0.264312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264312,0.000000,0.000000,0.250000,0,0);}
.m4e_c00354{transform:matrix(0.265164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265164,0.000000,0.000000,0.250000,0,0);}
.m52_c00354{transform:matrix(0.265596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265596,0.000000,0.000000,0.250000,0,0);}
.m41_c00354{transform:matrix(0.266768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266768,0.000000,0.000000,0.250000,0,0);}
.m8_c00354{transform:matrix(0.268518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268518,0.000000,0.000000,0.250000,0,0);}
.m4_c00354{transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);}
.m71_c00354{transform:matrix(0.272757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272757,0.000000,0.000000,0.250000,0,0);}
.m27_c00354{transform:matrix(0.273934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273934,0.000000,0.000000,0.250000,0,0);}
.m84_c00354{transform:matrix(0.273973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273973,0.000000,0.000000,0.250000,0,0);}
.m94_c00354{transform:matrix(0.274532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274532,0.000000,0.000000,0.250000,0,0);}
.m63_c00354{transform:matrix(0.274708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274708,0.000000,0.000000,0.250000,0,0);}
.m3f_c00354{transform:matrix(0.275017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275017,0.000000,0.000000,0.250000,0,0);}
.m67_c00354{transform:matrix(0.275141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275141,0.000000,0.000000,0.250000,0,0);}
.m5c_c00354{transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);}
.ma_c00354{transform:matrix(0.276385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276385,0.000000,0.000000,0.250000,0,0);}
.m30_c00354{transform:matrix(0.277254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277254,0.000000,0.000000,0.250000,0,0);}
.m55_c00354{transform:matrix(0.277503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277503,0.000000,0.000000,0.250000,0,0);}
.mc4_c00354{transform:matrix(0.277971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277971,0.000000,0.000000,0.250000,0,0);}
.m60_c00354{transform:matrix(0.278072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278072,0.000000,0.000000,0.250000,0,0);}
.m87_c00354{transform:matrix(0.278445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278445,0.000000,0.000000,0.250000,0,0);}
.m8b_c00354{transform:matrix(0.279025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279025,0.000000,0.000000,0.250000,0,0);}
.m93_c00354{transform:matrix(0.279128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279128,0.000000,0.000000,0.250000,0,0);}
.m1d_c00354{transform:matrix(0.279348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279348,0.000000,0.000000,0.250000,0,0);}
.m9e_c00354{transform:matrix(0.279445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279445,0.000000,0.000000,0.250000,0,0);}
.mbe_c00354{transform:matrix(0.280840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280840,0.000000,0.000000,0.250000,0,0);}
.mba_c00354{transform:matrix(0.281059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281059,0.000000,0.000000,0.250000,0,0);}
.m24_c00354{transform:matrix(0.281410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281410,0.000000,0.000000,0.250000,0,0);}
.mab_c00354{transform:matrix(0.281647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281647,0.000000,0.000000,0.250000,0,0);}
.mda_c00354{transform:matrix(0.282137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282137,0.000000,0.000000,0.250000,0,0);}
.mb7_c00354{transform:matrix(0.282364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282364,0.000000,0.000000,0.250000,0,0);}
.mc1_c00354{transform:matrix(0.282389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282389,0.000000,0.000000,0.250000,0,0);}
.m13_c00354{transform:matrix(0.282518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282518,0.000000,0.000000,0.250000,0,0);}
.m5d_c00354{transform:matrix(0.282635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282635,0.000000,0.000000,0.250000,0,0);}
.m72_c00354{transform:matrix(0.282691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282691,0.000000,0.000000,0.250000,0,0);}
.m38_c00354{transform:matrix(0.282698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282698,0.000000,0.000000,0.250000,0,0);}
.m12_c00354{transform:matrix(0.283241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283241,0.000000,0.000000,0.250000,0,0);}
.m7e_c00354{transform:matrix(0.283404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283404,0.000000,0.000000,0.250000,0,0);}
.ma5_c00354{transform:matrix(0.283940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283940,0.000000,0.000000,0.250000,0,0);}
.m47_c00354{transform:matrix(0.284184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284184,0.000000,0.000000,0.250000,0,0);}
.m7c_c00354{transform:matrix(0.284529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284529,0.000000,0.000000,0.250000,0,0);}
.m97_c00354{transform:matrix(0.284827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284827,0.000000,0.000000,0.250000,0,0);}
.ma8_c00354{transform:matrix(0.285025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285025,0.000000,0.000000,0.250000,0,0);}
.m7f_c00354{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00354{transform:matrix(0.285674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285674,0.000000,0.000000,0.250000,0,0);}
.m70_c00354{transform:matrix(0.285697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285697,0.000000,0.000000,0.250000,0,0);}
.m14_c00354{transform:matrix(0.285877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285877,0.000000,0.000000,0.250000,0,0);}
.m4a_c00354{transform:matrix(0.286269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286269,0.000000,0.000000,0.250000,0,0);}
.m15_c00354{transform:matrix(0.286560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286560,0.000000,0.000000,0.250000,0,0);}
.m6c_c00354{transform:matrix(0.286586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286586,0.000000,0.000000,0.250000,0,0);}
.mdf_c00354{transform:matrix(0.287277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287277,0.000000,0.000000,0.250000,0,0);}
.ma3_c00354{transform:matrix(0.287510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287510,0.000000,0.000000,0.250000,0,0);}
.mcb_c00354{transform:matrix(0.287608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287608,0.000000,0.000000,0.250000,0,0);}
.m44_c00354{transform:matrix(0.287723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287723,0.000000,0.000000,0.250000,0,0);}
.m64_c00354{transform:matrix(0.288128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288128,0.000000,0.000000,0.250000,0,0);}
.m7_c00354{transform:matrix(0.288900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288900,0.000000,0.000000,0.250000,0,0);}
.m2_c00354{transform:matrix(0.289257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289257,0.000000,0.000000,0.250000,0,0);}
.m96_c00354{transform:matrix(0.290344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290344,0.000000,0.000000,0.250000,0,0);}
.m95_c00354{transform:matrix(0.290473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290473,0.000000,0.000000,0.250000,0,0);}
.m53_c00354{transform:matrix(0.290517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290517,0.000000,0.000000,0.250000,0,0);}
.m81_c00354{transform:matrix(0.290632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290632,0.000000,0.000000,0.250000,0,0);}
.md0_c00354{transform:matrix(0.292012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292012,0.000000,0.000000,0.250000,0,0);}
.maa_c00354{transform:matrix(0.292101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292101,0.000000,0.000000,0.250000,0,0);}
.md1_c00354{transform:matrix(0.292407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292407,0.000000,0.000000,0.250000,0,0);}
.mc5_c00354{transform:matrix(0.292642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292642,0.000000,0.000000,0.250000,0,0);}
.m4c_c00354{transform:matrix(0.292722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292722,0.000000,0.000000,0.250000,0,0);}
.ma1_c00354{transform:matrix(0.292764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292764,0.000000,0.000000,0.250000,0,0);}
.m4d_c00354{transform:matrix(0.292850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292850,0.000000,0.000000,0.250000,0,0);}
.m8f_c00354{transform:matrix(0.292883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292883,0.000000,0.000000,0.250000,0,0);}
.m7d_c00354{transform:matrix(0.292990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292990,0.000000,0.000000,0.250000,0,0);}
.ma7_c00354{transform:matrix(0.294002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294002,0.000000,0.000000,0.250000,0,0);}
.m58_c00354{transform:matrix(0.294559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294559,0.000000,0.000000,0.250000,0,0);}
.m75_c00354{transform:matrix(0.295182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295182,0.000000,0.000000,0.250000,0,0);}
.mc8_c00354{transform:matrix(0.295366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295366,0.000000,0.000000,0.250000,0,0);}
.mc3_c00354{transform:matrix(0.295448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295448,0.000000,0.000000,0.250000,0,0);}
.m19_c00354{transform:matrix(0.296014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296014,0.000000,0.000000,0.250000,0,0);}
.mb5_c00354{transform:matrix(0.296260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296260,0.000000,0.000000,0.250000,0,0);}
.maf_c00354{transform:matrix(0.296461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296461,0.000000,0.000000,0.250000,0,0);}
.m76_c00354{transform:matrix(0.296506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296506,0.000000,0.000000,0.250000,0,0);}
.m51_c00354{transform:matrix(0.297642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297642,0.000000,0.000000,0.250000,0,0);}
.ma4_c00354{transform:matrix(0.298014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298014,0.000000,0.000000,0.250000,0,0);}
.ma0_c00354{transform:matrix(0.298327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298327,0.000000,0.000000,0.250000,0,0);}
.m20_c00354{transform:matrix(0.298775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298775,0.000000,0.000000,0.250000,0,0);}
.mc9_c00354{transform:matrix(0.299016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299016,0.000000,0.000000,0.250000,0,0);}
.m91_c00354{transform:matrix(0.299553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299553,0.000000,0.000000,0.250000,0,0);}
.m49_c00354{transform:matrix(0.299863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299863,0.000000,0.000000,0.250000,0,0);}
.mce_c00354{transform:matrix(0.301039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301039,0.000000,0.000000,0.250000,0,0);}
.m5f_c00354{transform:matrix(0.301346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301346,0.000000,0.000000,0.250000,0,0);}
.me1_c00354{transform:matrix(0.301529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301529,0.000000,0.000000,0.250000,0,0);}
.m1e_c00354{transform:matrix(0.302661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302661,0.000000,0.000000,0.250000,0,0);}
.m88_c00354{transform:matrix(0.302765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302765,0.000000,0.000000,0.250000,0,0);}
.m43_c00354{transform:matrix(0.304148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304148,0.000000,0.000000,0.250000,0,0);}
.m5e_c00354{transform:matrix(0.304215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304215,0.000000,0.000000,0.250000,0,0);}
.m31_c00354{transform:matrix(0.304396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304396,0.000000,0.000000,0.250000,0,0);}
.m59_c00354{transform:matrix(0.304486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304486,0.000000,0.000000,0.250000,0,0);}
.m62_c00354{transform:matrix(0.304573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304573,0.000000,0.000000,0.250000,0,0);}
.mca_c00354{transform:matrix(0.305116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305116,0.000000,0.000000,0.250000,0,0);}
.me_c00354{transform:matrix(0.306390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306390,0.000000,0.000000,0.250000,0,0);}
.m39_c00354{transform:matrix(0.306487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306487,0.000000,0.000000,0.250000,0,0);}
.m8c_c00354{transform:matrix(0.306947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306947,0.000000,0.000000,0.250000,0,0);}
.mcf_c00354{transform:matrix(0.307005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307005,0.000000,0.000000,0.250000,0,0);}
.m10_c00354{transform:matrix(0.308219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308219,0.000000,0.000000,0.250000,0,0);}
.m26_c00354{transform:matrix(0.308751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308751,0.000000,0.000000,0.250000,0,0);}
.mcd_c00354{transform:matrix(0.309745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309745,0.000000,0.000000,0.250000,0,0);}
.mde_c00354{transform:matrix(0.309980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309980,0.000000,0.000000,0.250000,0,0);}
.m6d_c00354{transform:matrix(0.310008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310008,0.000000,0.000000,0.250000,0,0);}
.ma2_c00354{transform:matrix(0.310264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310264,0.000000,0.000000,0.250000,0,0);}
.m22_c00354{transform:matrix(0.311070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311070,0.000000,0.000000,0.250000,0,0);}
.m86_c00354{transform:matrix(0.311499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311499,0.000000,0.000000,0.250000,0,0);}
.me0_c00354{transform:matrix(0.311587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311587,0.000000,0.000000,0.250000,0,0);}
.mc0_c00354{transform:matrix(0.311825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311825,0.000000,0.000000,0.250000,0,0);}
.m23_c00354{transform:matrix(0.311945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311945,0.000000,0.000000,0.250000,0,0);}
.m4f_c00354{transform:matrix(0.312180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312180,0.000000,0.000000,0.250000,0,0);}
.m68_c00354{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);}
.mbf_c00354{transform:matrix(0.312631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312631,0.000000,0.000000,0.250000,0,0);}
.m85_c00354{transform:matrix(0.313114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313114,0.000000,0.000000,0.250000,0,0);}
.mc_c00354{transform:matrix(0.313622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313622,0.000000,0.000000,0.250000,0,0);}
.md4_c00354{transform:matrix(0.314474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314474,0.000000,0.000000,0.250000,0,0);}
.m32_c00354{transform:matrix(0.315180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315180,0.000000,0.000000,0.250000,0,0);}
.m8a_c00354{transform:matrix(0.315762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315762,0.000000,0.000000,0.250000,0,0);}
.m18_c00354{transform:matrix(0.317424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317424,0.000000,0.000000,0.250000,0,0);}
.m33_c00354{transform:matrix(0.318221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318221,0.000000,0.000000,0.250000,0,0);}
.mdb_c00354{transform:matrix(0.318316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318316,0.000000,0.000000,0.250000,0,0);}
.ma6_c00354{transform:matrix(0.320936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320936,0.000000,0.000000,0.250000,0,0);}
.m83_c00354{transform:matrix(0.321069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321069,0.000000,0.000000,0.250000,0,0);}
.m1f_c00354{transform:matrix(0.322981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322981,0.000000,0.000000,0.250000,0,0);}
.mb9_c00354{transform:matrix(0.323069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323069,0.000000,0.000000,0.250000,0,0);}
.m25_c00354{transform:matrix(0.323760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323760,0.000000,0.000000,0.250000,0,0);}
.mb1_c00354{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00354{transform:matrix(0.324288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324288,0.000000,0.000000,0.250000,0,0);}
.m74_c00354{transform:matrix(0.324441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324441,0.000000,0.000000,0.250000,0,0);}
.m11_c00354{transform:matrix(0.324896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324896,0.000000,0.000000,0.250000,0,0);}
.m35_c00354{transform:matrix(0.325511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325511,0.000000,0.000000,0.250000,0,0);}
.m92_c00354{transform:matrix(0.326014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326014,0.000000,0.000000,0.250000,0,0);}
.mc7_c00354{transform:matrix(0.326929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326929,0.000000,0.000000,0.250000,0,0);}
.mae_c00354{transform:matrix(0.328196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328196,0.000000,0.000000,0.250000,0,0);}
.m80_c00354{transform:matrix(0.328654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328654,0.000000,0.000000,0.250000,0,0);}
.m50_c00354{transform:matrix(0.328682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328682,0.000000,0.000000,0.250000,0,0);}
.m65_c00354{transform:matrix(0.328913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328913,0.000000,0.000000,0.250000,0,0);}
.mbd_c00354{transform:matrix(0.328924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328924,0.000000,0.000000,0.250000,0,0);}
.m56_c00354{transform:matrix(0.328967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328967,0.000000,0.000000,0.250000,0,0);}
.md5_c00354{transform:matrix(0.329261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329261,0.000000,0.000000,0.250000,0,0);}
.mf_c00354{transform:matrix(0.329267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329267,0.000000,0.000000,0.250000,0,0);}
.m2d_c00354{transform:matrix(0.329558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329558,0.000000,0.000000,0.250000,0,0);}
.md6_c00354{transform:matrix(0.329871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329871,0.000000,0.000000,0.250000,0,0);}
.mc6_c00354{transform:matrix(0.331166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331166,0.000000,0.000000,0.250000,0,0);}
.m89_c00354{transform:matrix(0.334707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334707,0.000000,0.000000,0.250000,0,0);}
.m36_c00354{transform:matrix(0.334791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334791,0.000000,0.000000,0.250000,0,0);}
.m21_c00354{transform:matrix(0.336134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336134,0.000000,0.000000,0.250000,0,0);}
.m9a_c00354{transform:matrix(0.336237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336237,0.000000,0.000000,0.250000,0,0);}
.m3b_c00354{transform:matrix(0.336509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336509,0.000000,0.000000,0.250000,0,0);}
.m9_c00354{transform:matrix(0.337388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337388,0.000000,0.000000,0.250000,0,0);}
.m61_c00354{transform:matrix(0.337524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337524,0.000000,0.000000,0.250000,0,0);}
.m34_c00354{transform:matrix(0.338066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338066,0.000000,0.000000,0.250000,0,0);}
.m2e_c00354{transform:matrix(0.339363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339363,0.000000,0.000000,0.250000,0,0);}
.m28_c00354{transform:matrix(0.340575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340575,0.000000,0.000000,0.250000,0,0);}
.m40_c00354{transform:matrix(0.340905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340905,0.000000,0.000000,0.250000,0,0);}
.m8e_c00354{transform:matrix(0.341985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341985,0.000000,0.000000,0.250000,0,0);}
.mac_c00354{transform:matrix(0.342340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342340,0.000000,0.000000,0.250000,0,0);}
.mb_c00354{transform:matrix(0.343636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343636,0.000000,0.000000,0.250000,0,0);}
.m6b_c00354{transform:matrix(0.345088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345088,0.000000,0.000000,0.250000,0,0);}
.m3c_c00354{transform:matrix(0.346047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346047,0.000000,0.000000,0.250000,0,0);}
.mb0_c00354{transform:matrix(0.347545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347545,0.000000,0.000000,0.250000,0,0);}
.m37_c00354{transform:matrix(0.347796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347796,0.000000,0.000000,0.250000,0,0);}
.m3a_c00354{transform:matrix(0.348468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348468,0.000000,0.000000,0.250000,0,0);}
.m79_c00354{transform:matrix(0.350838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350838,0.000000,0.000000,0.250000,0,0);}
.m2f_c00354{transform:matrix(0.354006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354006,0.000000,0.000000,0.250000,0,0);}
.mbb_c00354{transform:matrix(0.355259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355259,0.000000,0.000000,0.250000,0,0);}
.m7b_c00354{transform:matrix(0.355326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355326,0.000000,0.000000,0.250000,0,0);}
.m6e_c00354{transform:matrix(0.356190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356190,0.000000,0.000000,0.250000,0,0);}
.m42_c00354{transform:matrix(0.357483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357483,0.000000,0.000000,0.250000,0,0);}
.m6a_c00354{transform:matrix(0.357856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357856,0.000000,0.000000,0.250000,0,0);}
.m1b_c00354{transform:matrix(0.366321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366321,0.000000,0.000000,0.250000,0,0);}
.m54_c00354{transform:matrix(0.366428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366428,0.000000,0.000000,0.250000,0,0);}
.m9f_c00354{transform:matrix(0.378849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378849,0.000000,0.000000,0.250000,0,0);}
.m98_c00354{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);}
.m5a_c00354{transform:matrix(0.383698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383698,0.000000,0.000000,0.250000,0,0);}
.m3e_c00354{transform:matrix(0.384023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384023,0.000000,0.000000,0.250000,0,0);}
.mb3_c00354{transform:matrix(0.386423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386423,0.000000,0.000000,0.250000,0,0);}
.m2a_c00354{transform:matrix(0.406274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406274,0.000000,0.000000,0.250000,0,0);}
.m46_c00354{transform:matrix(0.406867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406867,0.000000,0.000000,0.250000,0,0);}
.m66_c00354{transform:matrix(0.408877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408877,0.000000,0.000000,0.250000,0,0);}
.mb8_c00354{transform:matrix(0.420530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420530,0.000000,0.000000,0.250000,0,0);}
.m16_c00354{transform:matrix(0.429934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429934,0.000000,0.000000,0.250000,0,0);}
.mdc_c00354{transform:matrix(0.445858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445858,0.000000,0.000000,0.250000,0,0);}
.v0_c00354{vertical-align:0.000000px;}
.v1_c00354{vertical-align:4.334220px;}
.v2_c00354{vertical-align:22.809600px;}
.ls6_c00354{letter-spacing:-2.661127px;}
.lsa_c00354{letter-spacing:-2.623111px;}
.lsb_c00354{letter-spacing:-2.300767px;}
.ls12_c00354{letter-spacing:-1.581470px;}
.ls16_c00354{letter-spacing:-1.345770px;}
.ls9_c00354{letter-spacing:-1.110070px;}
.ls17_c00354{letter-spacing:-0.783132px;}
.lsd_c00354{letter-spacing:-0.585448px;}
.ls3_c00354{letter-spacing:0.000000px;}
.lse_c00354{letter-spacing:0.973212px;}
.ls1_c00354{letter-spacing:1.013998px;}
.ls10_c00354{letter-spacing:1.544400px;}
.ls18_c00354{letter-spacing:2.267100px;}
.ls13_c00354{letter-spacing:2.356200px;}
.ls7_c00354{letter-spacing:3.177900px;}
.ls14_c00354{letter-spacing:3.550704px;}
.ls0_c00354{letter-spacing:3.725578px;}
.lsc_c00354{letter-spacing:3.740784px;}
.ls5_c00354{letter-spacing:3.801610px;}
.ls4_c00354{letter-spacing:3.900897px;}
.ls11_c00354{letter-spacing:4.474810px;}
.lsf_c00354{letter-spacing:15.681798px;}
.ls2_c00354{letter-spacing:18.147096px;}
.ls15_c00354{letter-spacing:49.896198px;}
.ls8_c00354{letter-spacing:57.024198px;}
.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:-22.733627px;}
.ws1_c00354{word-spacing:-19.008050px;}
.ws0_c00354{word-spacing:-16.384939px;}
.ws3_c00354{word-spacing:-2.204845px;}
.ws4_c00354{word-spacing:0.000000px;}
._1b_c00354{margin-left:-12.773321px;}
._8_c00354{margin-left:-11.328922px;}
._13_c00354{margin-left:-8.895645px;}
._a_c00354{margin-left:-3.498347px;}
._1c_c00354{margin-left:-1.824707px;}
._12_c00354{width:2.508957px;}
._1a_c00354{width:4.790126px;}
._5_c00354{width:6.690797px;}
._7_c00354{width:8.363619px;}
._6_c00354{width:10.567964px;}
._18_c00354{width:13.001384px;}
._19_c00354{width:17.538004px;}
._15_c00354{width:20.072393px;}
._c_c00354{width:21.517001px;}
._11_c00354{width:22.808951px;}
._9_c00354{width:23.874191px;}
._2_c00354{width:24.935328px;}
._d_c00354{width:26.307121px;}
._e_c00354{width:29.376438px;}
._14_c00354{width:34.333855px;}
._b_c00354{width:35.658475px;}
._16_c00354{width:38.446711px;}
._17_c00354{width:40.221027px;}
._4_c00354{width:41.361469px;}
._10_c00354{width:43.986365px;}
._f_c00354{width:45.467813px;}
._1_c00354{width:317.605354px;}
._3_c00354{width:347.318136px;}
._0_c00354{width:387.155984px;}
.fc0_c00354{color:transparent;}
.fs9_c00354{font-size:15.681798px;}
.fs5_c00354{font-size:26.928000px;}
.fsa_c00354{font-size:30.888000px;}
.fs0_c00354{font-size:34.056198px;}
.fsd_c00354{font-size:34.452000px;}
.fs2_c00354{font-size:39.600000px;}
.fs12_c00354{font-size:45.342000px;}
.fs10_c00354{font-size:46.134000px;}
.fse_c00354{font-size:47.124000px;}
.fsf_c00354{font-size:49.896198px;}
.fs13_c00354{font-size:56.628000px;}
.fs7_c00354{font-size:57.024198px;}
.fs6_c00354{font-size:60.192000px;}
.fs4_c00354{font-size:63.558000px;}
.fs8_c00354{font-size:65.736198px;}
.fs14_c00354{font-size:72.864000px;}
.fs3_c00354{font-size:76.032198px;}
.fsc_c00354{font-size:81.774000px;}
.fs1_c00354{font-size:85.734000px;}
.fs11_c00354{font-size:88.704000px;}
.fsb_c00354{font-size:89.496198px;}
.y0_c00354{bottom:0.000000px;}
.y27_c00354{bottom:3.114585px;}
.y26_c00354{bottom:50.872185px;}
.y1_c00354{bottom:76.500000px;}
.y25_c00354{bottom:141.402735px;}
.y24_c00354{bottom:171.340335px;}
.y23_c00354{bottom:205.554735px;}
.y22_c00354{bottom:238.338585px;}
.y21_c00354{bottom:270.770985px;}
.y20_c00354{bottom:302.846985px;}
.y1f_c00354{bottom:329.576985px;}
.y1e_c00354{bottom:335.279385px;}
.y1d_c00354{bottom:367.355385px;}
.y1c_c00354{bottom:399.792735px;}
.y1b_c00354{bottom:432.225135px;}
.y1a_c00354{bottom:496.372185px;}
.y19_c00354{bottom:530.591535px;}
.y18_c00354{bottom:563.380335px;}
.y17_c00354{bottom:590.818185px;}
.y16_c00354{bottom:597.594735px;}
.y15_c00354{bottom:597.951135px;}
.y14_c00354{bottom:629.665785px;}
.y13_c00354{bottom:662.098185px;}
.y12_c00354{bottom:695.243385px;}
.y10_c00354{bottom:727.675785px;}
.y11_c00354{bottom:733.378185px;}
.yf_c00354{bottom:756.192735px;}
.yd_c00354{bottom:760.108185px;}
.ye_c00354{bottom:761.182335px;}
.yc_c00354{bottom:787.194585px;}
.yb_c00354{bottom:793.971135px;}
.ya_c00354{bottom:826.047135px;}
.y9_c00354{bottom:858.474585px;}
.y8_c00354{bottom:892.332585px;}
.y7_c00354{bottom:922.631535px;}
.y5_c00354{bottom:926.546985px;}
.y6_c00354{bottom:927.621135px;}
.y2_c00354{bottom:981.081135px;}
.y4_c00354{bottom:992.124585px;}
.y3_c00354{bottom:1078.016985px;}
.hb_c00354{height:10.444077px;}
.hc_c00354{height:32.215219px;}
.h11_c00354{height:33.230868px;}
.hf_c00354{height:34.721156px;}
.h2_c00354{height:35.519550px;}
.h9_c00354{height:37.978116px;}
.h4_c00354{height:41.301563px;}
.h13_c00354{height:47.290289px;}
.h10_c00354{height:49.148859px;}
.h14_c00354{height:59.061234px;}
.h8_c00354{height:62.778375px;}
.h7_c00354{height:66.289008px;}
.ha_c00354{height:68.560800px;}
.h15_c00354{height:71.512031px;}
.h5_c00354{height:74.621444px;}
.h6_c00354{height:78.955664px;}
.he_c00354{height:80.256709px;}
.h3_c00354{height:84.143232px;}
.hd_c00354{height:87.835624px;}
.h12_c00354{height:109.867725px;}
.h1_c00354{height:1110.000000px;}
.h0_c00354{height:1263.000000px;}
.w1_c00354{width:775.500000px;}
.w0_c00354{width:892.500000px;}
.x0_c00354{left:0.000000px;}
.x1_c00354{left:58.500000px;}
.x2_c00354{left:75.692085px;}
.x5_c00354{left:93.319035px;}
.x15_c00354{left:94.536735px;}
.x58_c00354{left:96.531585px;}
.x86_c00354{left:97.803735px;}
.x62_c00354{left:99.169935px;}
.x5d_c00354{left:106.669185px;}
.x21_c00354{left:116.252385px;}
.x7b_c00354{left:119.153085px;}
.x93_c00354{left:120.217335px;}
.x33_c00354{left:127.488885px;}
.x6a_c00354{left:128.800635px;}
.x2c_c00354{left:137.166135px;}
.x5e_c00354{left:139.507485px;}
.x75_c00354{left:140.873685px;}
.x34_c00354{left:148.843185px;}
.x64_c00354{left:149.917335px;}
.x3b_c00354{left:151.144935px;}
.x94_c00354{left:153.476385px;}
.x16_c00354{left:156.802785px;}
.x6_c00354{left:159.980685px;}
.x63_c00354{left:161.327085px;}
.x53_c00354{left:170.850885px;}
.x22_c00354{left:171.920085px;}
.x87_c00354{left:173.345685px;}
.x6e_c00354{left:181.389435px;}
.x65_c00354{left:182.968485px;}
.x7c_c00354{left:184.676235px;}
.x23_c00354{left:192.729885px;}
.x6b_c00354{left:194.432685px;}
.x8c_c00354{left:195.808785px;}
.x17_c00354{left:204.223785px;}
.x76_c00354{left:205.421685px;}
.x95_c00354{left:206.916585px;}
.x3c_c00354{left:215.064285px;}
.x88_c00354{left:217.351185px;}
.x4_c00354{left:222.494235px;}
.x4a_c00354{left:225.226635px;}
.x4e_c00354{left:226.271085px;}
.x7a_c00354{left:228.577785px;}
.x18_c00354{left:236.656185px;}
.x77_c00354{left:237.700635px;}
.x3d_c00354{left:239.670735px;}
.x19_c00354{left:248.353035px;}
.x8d_c00354{left:251.367585px;}
.x24_c00354{left:259.564785px;}
.x84_c00354{left:261.515085px;}
.x96_c00354{left:262.841685px;}
.x2d_c00354{left:269.776635px;}
.x1a_c00354{left:270.865635px;}
.x7d_c00354{left:273.078285px;}
.x4f_c00354{left:274.993935px;}
.x3e_c00354{left:282.760485px;}
.x6f_c00354{left:283.819785px;}
.x7_c00354{left:293.422785px;}
.x2e_c00354{left:302.525835px;}
.x5b_c00354{left:304.708785px;}
.x1b_c00354{left:314.485035px;}
.x89_c00354{left:317.014485px;}
.x2f_c00354{left:325.696785px;}
.x5f_c00354{left:327.196635px;}
.x7e_c00354{left:329.255835px;}
.x8_c00354{left:337.457985px;}
.x8e_c00354{left:339.111285px;}
.x35_c00354{left:347.986635px;}
.x7f_c00354{left:349.694385px;}
.x3a_c00354{left:351.971385px;}
.x9_c00354{left:353.500935px;}
.x8f_c00354{left:356.960985px;}
.x43_c00354{left:359.990385px;}
.xa_c00354{left:370.439835px;}
.x54_c00354{left:371.875335px;}
.x78_c00354{left:374.295885px;}
.x25_c00354{left:381.611985px;}
.x1c_c00354{left:393.536535px;}
.x80_c00354{left:395.665035px;}
.xb_c00354{left:402.317835px;}
.x59_c00354{left:404.292885px;}
.x70_c00354{left:405.312585px;}
.x90_c00354{left:406.431285px;}
.x26_c00354{left:414.395835px;}
.x36_c00354{left:415.672935px;}
.x14_c00354{left:417.123285px;}
.x27_c00354{left:425.963985px;}
.x97_c00354{left:427.721235px;}
.xc_c00354{left:435.829335px;}
.x4b_c00354{left:437.061885px;}
.x8a_c00354{left:438.121185px;}
.x81_c00354{left:440.551635px;}
.x28_c00354{left:448.105335px;}
.x98_c00354{left:450.268485px;}
.x3f_c00354{left:457.243035px;}
.x55_c00354{left:459.856635px;}
.x71_c00354{left:462.648435px;}
.x82_c00354{left:468.885435px;}
.x50_c00354{left:470.231835px;}
.x44_c00354{left:471.612885px;}
.xd_c00354{left:480.923835px;}
.x5a_c00354{left:482.265285px;}
.xe_c00354{left:491.427735px;}
.x56_c00354{left:492.462285px;}
.x45_c00354{left:494.437335px;}
.x40_c00354{left:501.753435px;}
.x46_c00354{left:502.891935px;}
.x60_c00354{left:504.396735px;}
.x37_c00354{left:514.390785px;}
.x72_c00354{left:515.865885px;}
.x1d_c00354{left:525.260985px;}
.x66_c00354{left:526.879635px;}
.x8b_c00354{left:528.691335px;}
.xf_c00354{left:535.967835px;}
.x73_c00354{left:536.972685px;}
.x47_c00354{left:538.462635px;}
.x29_c00354{left:546.857835px;}
.x61_c00354{left:547.897335px;}
.x79_c00354{left:549.030885px;}
.x48_c00354{left:559.965435px;}
.x10_c00354{left:569.944635px;}
.x85_c00354{left:571.018785px;}
.x1e_c00354{left:578.775435px;}
.x30_c00354{left:580.705935px;}
.x38_c00354{left:591.383085px;}
.x67_c00354{left:592.684935px;}
.x11_c00354{left:601.614735px;}
.x4c_c00354{left:603.050235px;}
.x1f_c00354{left:613.841235px;}
.x74_c00354{left:615.133185px;}
.x31_c00354{left:625.181685px;}
.x91_c00354{left:626.315235px;}
.x57_c00354{left:636.116235px;}
.x42_c00354{left:639.729735px;}
.x2a_c00354{left:646.610235px;}
.x83_c00354{left:647.639835px;}
.x6c_c00354{left:649.837635px;}
.x51_c00354{left:656.827035px;}
.x32_c00354{left:658.029885px;}
.x68_c00354{left:659.806935px;}
.x49_c00354{left:668.736735px;}
.x39_c00354{left:670.340535px;}
.x3_c00354{left:671.899785px;}
.x2b_c00354{left:679.775235px;}
.x92_c00354{left:681.577035px;}
.x4d_c00354{left:691.155285px;}
.x69_c00354{left:692.615535px;}
.x52_c00354{left:702.574935px;}
.x99_c00354{left:704.594535px;}
.x9a_c00354{left:707.143785px;}
.x12_c00354{left:712.955085px;}
.x6d_c00354{left:715.053885px;}
.x5c_c00354{left:724.320285px;}
.x13_c00354{left:725.330085px;}
.x20_c00354{left:735.368685px;}
.x41_c00354{left:746.060685px;}
@media print{
.v0_c00354{vertical-align:0.000000pt;}
.v1_c00354{vertical-align:3.852640pt;}
.v2_c00354{vertical-align:20.275200pt;}
.ls6_c00354{letter-spacing:-2.365446pt;}
.lsa_c00354{letter-spacing:-2.331654pt;}
.lsb_c00354{letter-spacing:-2.045126pt;}
.ls12_c00354{letter-spacing:-1.405751pt;}
.ls16_c00354{letter-spacing:-1.196240pt;}
.ls9_c00354{letter-spacing:-0.986729pt;}
.ls17_c00354{letter-spacing:-0.696117pt;}
.lsd_c00354{letter-spacing:-0.520398pt;}
.ls3_c00354{letter-spacing:0.000000pt;}
.lse_c00354{letter-spacing:0.865077pt;}
.ls1_c00354{letter-spacing:0.901331pt;}
.ls10_c00354{letter-spacing:1.372800pt;}
.ls18_c00354{letter-spacing:2.015200pt;}
.ls13_c00354{letter-spacing:2.094400pt;}
.ls7_c00354{letter-spacing:2.824800pt;}
.ls14_c00354{letter-spacing:3.156181pt;}
.ls0_c00354{letter-spacing:3.311625pt;}
.lsc_c00354{letter-spacing:3.325141pt;}
.ls5_c00354{letter-spacing:3.379209pt;}
.ls4_c00354{letter-spacing:3.467464pt;}
.ls11_c00354{letter-spacing:3.977609pt;}
.lsf_c00354{letter-spacing:13.939376pt;}
.ls2_c00354{letter-spacing:16.130752pt;}
.ls15_c00354{letter-spacing:44.352176pt;}
.ls8_c00354{letter-spacing:50.688176pt;}
.ws2_c00354{word-spacing:-20.207669pt;}
.ws1_c00354{word-spacing:-16.896044pt;}
.ws0_c00354{word-spacing:-14.564390pt;}
.ws3_c00354{word-spacing:-1.959863pt;}
.ws4_c00354{word-spacing:0.000000pt;}
._1b_c00354{margin-left:-11.354063pt;}
._8_c00354{margin-left:-10.070153pt;}
._13_c00354{margin-left:-7.907240pt;}
._a_c00354{margin-left:-3.109642pt;}
._1c_c00354{margin-left:-1.621962pt;}
._12_c00354{width:2.230184pt;}
._1a_c00354{width:4.257890pt;}
._5_c00354{width:5.947375pt;}
._7_c00354{width:7.434328pt;}
._6_c00354{width:9.393746pt;}
._18_c00354{width:11.556786pt;}
._19_c00354{width:15.589337pt;}
._15_c00354{width:17.842127pt;}
._c_c00354{width:19.126223pt;}
._11_c00354{width:20.274623pt;}
._9_c00354{width:21.221503pt;}
._2_c00354{width:22.164736pt;}
._d_c00354{width:23.384108pt;}
._e_c00354{width:26.112389pt;}
._14_c00354{width:30.518982pt;}
._b_c00354{width:31.696422pt;}
._16_c00354{width:34.174854pt;}
._17_c00354{width:35.752024pt;}
._4_c00354{width:36.765750pt;}
._10_c00354{width:39.098992pt;}
._f_c00354{width:40.415833pt;}
._1_c00354{width:282.315870pt;}
._3_c00354{width:308.727232pt;}
._0_c00354{width:344.138652pt;}
.fs9_c00354{font-size:13.939376pt;}
.fs5_c00354{font-size:23.936000pt;}
.fsa_c00354{font-size:27.456000pt;}
.fs0_c00354{font-size:30.272176pt;}
.fsd_c00354{font-size:30.624000pt;}
.fs2_c00354{font-size:35.200000pt;}
.fs12_c00354{font-size:40.304000pt;}
.fs10_c00354{font-size:41.008000pt;}
.fse_c00354{font-size:41.888000pt;}
.fsf_c00354{font-size:44.352176pt;}
.fs13_c00354{font-size:50.336000pt;}
.fs7_c00354{font-size:50.688176pt;}
.fs6_c00354{font-size:53.504000pt;}
.fs4_c00354{font-size:56.496000pt;}
.fs8_c00354{font-size:58.432176pt;}
.fs14_c00354{font-size:64.768000pt;}
.fs3_c00354{font-size:67.584176pt;}
.fsc_c00354{font-size:72.688000pt;}
.fs1_c00354{font-size:76.208000pt;}
.fs11_c00354{font-size:78.848000pt;}
.fsb_c00354{font-size:79.552176pt;}
.y0_c00354{bottom:0.000000pt;}
.y27_c00354{bottom:2.768520pt;}
.y26_c00354{bottom:45.219720pt;}
.y1_c00354{bottom:68.000000pt;}
.y25_c00354{bottom:125.691320pt;}
.y24_c00354{bottom:152.302520pt;}
.y23_c00354{bottom:182.715320pt;}
.y22_c00354{bottom:211.856520pt;}
.y21_c00354{bottom:240.685320pt;}
.y20_c00354{bottom:269.197320pt;}
.y1f_c00354{bottom:292.957320pt;}
.y1e_c00354{bottom:298.026120pt;}
.y1d_c00354{bottom:326.538120pt;}
.y1c_c00354{bottom:355.371320pt;}
.y1b_c00354{bottom:384.200120pt;}
.y1a_c00354{bottom:441.219720pt;}
.y19_c00354{bottom:471.636920pt;}
.y18_c00354{bottom:500.782520pt;}
.y17_c00354{bottom:525.171720pt;}
.y16_c00354{bottom:531.195320pt;}
.y15_c00354{bottom:531.512120pt;}
.y14_c00354{bottom:559.702920pt;}
.y13_c00354{bottom:588.531720pt;}
.y12_c00354{bottom:617.994120pt;}
.y10_c00354{bottom:646.822920pt;}
.y11_c00354{bottom:651.891720pt;}
.yf_c00354{bottom:672.171320pt;}
.yd_c00354{bottom:675.651720pt;}
.ye_c00354{bottom:676.606520pt;}
.yc_c00354{bottom:699.728520pt;}
.yb_c00354{bottom:705.752120pt;}
.ya_c00354{bottom:734.264120pt;}
.y9_c00354{bottom:763.088520pt;}
.y8_c00354{bottom:793.184520pt;}
.y7_c00354{bottom:820.116920pt;}
.y5_c00354{bottom:823.597320pt;}
.y6_c00354{bottom:824.552120pt;}
.y2_c00354{bottom:872.072120pt;}
.y4_c00354{bottom:881.888520pt;}
.y3_c00354{bottom:958.237320pt;}
.hb_c00354{height:9.283624pt;}
.hc_c00354{height:28.635750pt;}
.h11_c00354{height:29.538549pt;}
.hf_c00354{height:30.863250pt;}
.h2_c00354{height:31.572934pt;}
.h9_c00354{height:33.758325pt;}
.h4_c00354{height:36.712500pt;}
.h13_c00354{height:42.035813pt;}
.h10_c00354{height:43.687875pt;}
.h14_c00354{height:52.498875pt;}
.h8_c00354{height:55.803000pt;}
.h7_c00354{height:58.923563pt;}
.ha_c00354{height:60.942934pt;}
.h15_c00354{height:63.566250pt;}
.h5_c00354{height:66.330173pt;}
.h6_c00354{height:70.182813pt;}
.he_c00354{height:71.339297pt;}
.h3_c00354{height:74.793984pt;}
.hd_c00354{height:78.076110pt;}
.h12_c00354{height:97.660200pt;}
.h1_c00354{height:986.666667pt;}
.h0_c00354{height:1122.666667pt;}
.w1_c00354{width:689.333333pt;}
.w0_c00354{width:793.333333pt;}
.x0_c00354{left:0.000000pt;}
.x1_c00354{left:52.000000pt;}
.x2_c00354{left:67.281853pt;}
.x5_c00354{left:82.950253pt;}
.x15_c00354{left:84.032653pt;}
.x58_c00354{left:85.805853pt;}
.x86_c00354{left:86.936653pt;}
.x62_c00354{left:88.151053pt;}
.x5d_c00354{left:94.817053pt;}
.x21_c00354{left:103.335453pt;}
.x7b_c00354{left:105.913853pt;}
.x93_c00354{left:106.859853pt;}
.x33_c00354{left:113.323453pt;}
.x6a_c00354{left:114.489453pt;}
.x2c_c00354{left:121.925453pt;}
.x5e_c00354{left:124.006653pt;}
.x75_c00354{left:125.221053pt;}
.x34_c00354{left:132.305053pt;}
.x64_c00354{left:133.259853pt;}
.x3b_c00354{left:134.351053pt;}
.x94_c00354{left:136.423453pt;}
.x16_c00354{left:139.380253pt;}
.x6_c00354{left:142.205053pt;}
.x63_c00354{left:143.401853pt;}
.x53_c00354{left:151.867453pt;}
.x22_c00354{left:152.817853pt;}
.x87_c00354{left:154.085053pt;}
.x6e_c00354{left:161.235053pt;}
.x65_c00354{left:162.638653pt;}
.x7c_c00354{left:164.156653pt;}
.x23_c00354{left:171.315453pt;}
.x6b_c00354{left:172.829053pt;}
.x8c_c00354{left:174.052253pt;}
.x17_c00354{left:181.532253pt;}
.x76_c00354{left:182.597053pt;}
.x95_c00354{left:183.925853pt;}
.x3c_c00354{left:191.168253pt;}
.x88_c00354{left:193.201053pt;}
.x4_c00354{left:197.772653pt;}
.x4a_c00354{left:200.201453pt;}
.x4e_c00354{left:201.129853pt;}
.x7a_c00354{left:203.180253pt;}
.x18_c00354{left:210.361053pt;}
.x77_c00354{left:211.289453pt;}
.x3d_c00354{left:213.040653pt;}
.x19_c00354{left:220.758253pt;}
.x8d_c00354{left:223.437853pt;}
.x24_c00354{left:230.724253pt;}
.x84_c00354{left:232.457853pt;}
.x96_c00354{left:233.637053pt;}
.x2d_c00354{left:239.801453pt;}
.x1a_c00354{left:240.769453pt;}
.x7d_c00354{left:242.736253pt;}
.x4f_c00354{left:244.439053pt;}
.x3e_c00354{left:251.342653pt;}
.x6f_c00354{left:252.284253pt;}
.x7_c00354{left:260.820253pt;}
.x2e_c00354{left:268.911853pt;}
.x5b_c00354{left:270.852253pt;}
.x1b_c00354{left:279.542253pt;}
.x89_c00354{left:281.790653pt;}
.x2f_c00354{left:289.508253pt;}
.x5f_c00354{left:290.841453pt;}
.x7e_c00354{left:292.671853pt;}
.x8_c00354{left:299.962653pt;}
.x8e_c00354{left:301.432253pt;}
.x35_c00354{left:309.321453pt;}
.x7f_c00354{left:310.839453pt;}
.x3a_c00354{left:312.863453pt;}
.x9_c00354{left:314.223053pt;}
.x8f_c00354{left:317.298653pt;}
.x43_c00354{left:319.991453pt;}
.xa_c00354{left:329.279853pt;}
.x54_c00354{left:330.555853pt;}
.x78_c00354{left:332.707453pt;}
.x25_c00354{left:339.210653pt;}
.x1c_c00354{left:349.810253pt;}
.x80_c00354{left:351.702253pt;}
.xb_c00354{left:357.615853pt;}
.x59_c00354{left:359.371453pt;}
.x70_c00354{left:360.277853pt;}
.x90_c00354{left:361.272253pt;}
.x26_c00354{left:368.351853pt;}
.x36_c00354{left:369.487053pt;}
.x14_c00354{left:370.776253pt;}
.x27_c00354{left:378.634653pt;}
.x97_c00354{left:380.196653pt;}
.xc_c00354{left:387.403853pt;}
.x4b_c00354{left:388.499453pt;}
.x8a_c00354{left:389.441053pt;}
.x81_c00354{left:391.601453pt;}
.x28_c00354{left:398.315853pt;}
.x98_c00354{left:400.238653pt;}
.x3f_c00354{left:406.438253pt;}
.x55_c00354{left:408.761453pt;}
.x71_c00354{left:411.243053pt;}
.x82_c00354{left:416.787053pt;}
.x50_c00354{left:417.983853pt;}
.x44_c00354{left:419.211453pt;}
.xd_c00354{left:427.487853pt;}
.x5a_c00354{left:428.680253pt;}
.xe_c00354{left:436.824653pt;}
.x56_c00354{left:437.744253pt;}
.x45_c00354{left:439.499853pt;}
.x40_c00354{left:446.003053pt;}
.x46_c00354{left:447.015053pt;}
.x60_c00354{left:448.352653pt;}
.x37_c00354{left:457.236253pt;}
.x72_c00354{left:458.547453pt;}
.x1d_c00354{left:466.898653pt;}
.x66_c00354{left:468.337453pt;}
.x8b_c00354{left:469.947853pt;}
.xf_c00354{left:476.415853pt;}
.x73_c00354{left:477.309053pt;}
.x47_c00354{left:478.633453pt;}
.x29_c00354{left:486.095853pt;}
.x61_c00354{left:487.019853pt;}
.x79_c00354{left:488.027453pt;}
.x48_c00354{left:497.747053pt;}
.x10_c00354{left:506.617453pt;}
.x85_c00354{left:507.572253pt;}
.x1e_c00354{left:514.467053pt;}
.x30_c00354{left:516.183053pt;}
.x38_c00354{left:525.673853pt;}
.x67_c00354{left:526.831053pt;}
.x11_c00354{left:534.768653pt;}
.x4c_c00354{left:536.044653pt;}
.x1f_c00354{left:545.636653pt;}
.x74_c00354{left:546.785053pt;}
.x31_c00354{left:555.717053pt;}
.x91_c00354{left:556.724653pt;}
.x57_c00354{left:565.436653pt;}
.x42_c00354{left:568.648653pt;}
.x2a_c00354{left:574.764653pt;}
.x83_c00354{left:575.679853pt;}
.x6c_c00354{left:577.633453pt;}
.x51_c00354{left:583.846253pt;}
.x32_c00354{left:584.915453pt;}
.x68_c00354{left:586.495053pt;}
.x49_c00354{left:594.432653pt;}
.x39_c00354{left:595.858253pt;}
.x3_c00354{left:597.244253pt;}
.x2b_c00354{left:604.244653pt;}
.x92_c00354{left:605.846253pt;}
.x4d_c00354{left:614.360253pt;}
.x69_c00354{left:615.658253pt;}
.x52_c00354{left:624.511053pt;}
.x99_c00354{left:626.306253pt;}
.x9a_c00354{left:628.572253pt;}
.x12_c00354{left:633.737853pt;}
.x6d_c00354{left:635.603453pt;}
.x5c_c00354{left:643.840253pt;}
.x13_c00354{left:644.737853pt;}
.x20_c00354{left:653.661053pt;}
.x41_c00354{left:663.165053pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5e84b27d88ad596aecb04d53.woff2')format("woff");}.ff1_c00355{font-family:ff1_c00355;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00355;src:url('chunks/assets/font_1e4cdf37dff449f489b20c84.woff2')format("woff");}.ff2_c00355{font-family:ff2_c00355;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00355;src:url('chunks/assets/font_245667f09361059ea4ab1306.woff2')format("woff");}.ff3_c00355{font-family:ff3_c00355;line-height:0.666000;font-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_c00355{transform:matrix(0.051887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.051887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.051887,0.000000,0.000000,0.250000,0,0);}
.m9d_c00355{transform:matrix(0.094340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094340,0.000000,0.000000,0.250000,0,0);}
.m9e_c00355{transform:matrix(0.113208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113208,0.000000,0.000000,0.250000,0,0);}
.m9f_c00355{transform:matrix(0.140567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140567,0.000000,0.000000,0.250000,0,0);}
.m2a_c00355{transform:matrix(0.164701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164701,0.000000,0.000000,0.250000,0,0);}
.m29_c00355{transform:matrix(0.168147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168147,0.000000,0.000000,0.250000,0,0);}
.mc9_c00355{transform:matrix(0.175779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175779,0.000000,0.000000,0.250000,0,0);}
.m99_c00355{transform:matrix(0.180314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180314,0.000000,0.000000,0.250000,0,0);}
.md1_c00355{transform:matrix(0.188062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188062,0.000000,0.000000,0.250000,0,0);}
.ma1_c00355{transform:matrix(0.196649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196649,0.000000,0.000000,0.250000,0,0);}
.maa_c00355{transform:matrix(0.202043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202043,0.000000,0.000000,0.250000,0,0);}
.ma9_c00355{transform:matrix(0.207019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207019,0.000000,0.000000,0.250000,0,0);}
.m84_c00355{transform:matrix(0.207791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207791,0.000000,0.000000,0.250000,0,0);}
.mc6_c00355{transform:matrix(0.209027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209027,0.000000,0.000000,0.250000,0,0);}
.m70_c00355{transform:matrix(0.212143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212143,0.000000,0.000000,0.250000,0,0);}
.m26_c00355{transform:matrix(0.220365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220365,0.000000,0.000000,0.250000,0,0);}
.m11_c00355{transform:matrix(0.225727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225727,0.000000,0.000000,0.250000,0,0);}
.ma6_c00355{transform:matrix(0.234130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234130,0.000000,0.000000,0.250000,0,0);}
.ma2_c00355{transform:matrix(0.236481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236481,0.000000,0.000000,0.250000,0,0);}
.mc5_c00355{transform:matrix(0.238583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238583,0.000000,0.000000,0.250000,0,0);}
.m2c_c00355{transform:matrix(0.241578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241578,0.000000,0.000000,0.250000,0,0);}
.mac_c00355{transform:matrix(0.247700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247700,0.000000,0.000000,0.250000,0,0);}
.m1_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);}
.mad_c00355{transform:matrix(0.250452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250452,0.000000,0.000000,0.250000,0,0);}
.m34_c00355{transform:matrix(0.250666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250666,0.000000,0.000000,0.250000,0,0);}
.mb0_c00355{transform:matrix(0.253429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253429,0.000000,0.000000,0.250000,0,0);}
.m0_c00355{transform:matrix(0.254056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254056,0.000000,0.000000,0.250000,0,0);}
.mf_c00355{transform:matrix(0.254155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254155,0.000000,0.000000,0.250000,0,0);}
.m39_c00355{transform:matrix(0.254300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254300,0.000000,0.000000,0.250000,0,0);}
.m2b_c00355{transform:matrix(0.254604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254604,0.000000,0.000000,0.250000,0,0);}
.m81_c00355{transform:matrix(0.254683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254683,0.000000,0.000000,0.250000,0,0);}
.mbd_c00355{transform:matrix(0.256631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256631,0.000000,0.000000,0.250000,0,0);}
.ma_c00355{transform:matrix(0.257336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257336,0.000000,0.000000,0.250000,0,0);}
.m44_c00355{transform:matrix(0.258755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258755,0.000000,0.000000,0.250000,0,0);}
.m3c_c00355{transform:matrix(0.258781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258781,0.000000,0.000000,0.250000,0,0);}
.m4_c00355{transform:matrix(0.259711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259711,0.000000,0.000000,0.250000,0,0);}
.m9_c00355{transform:matrix(0.260373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260373,0.000000,0.000000,0.250000,0,0);}
.mcd_c00355{transform:matrix(0.260790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260790,0.000000,0.000000,0.250000,0,0);}
.m76_c00355{transform:matrix(0.260949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260949,0.000000,0.000000,0.250000,0,0);}
.m1c_c00355{transform:matrix(0.262117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262117,0.000000,0.000000,0.250000,0,0);}
.mc0_c00355{transform:matrix(0.263373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263373,0.000000,0.000000,0.250000,0,0);}
.m73_c00355{transform:matrix(0.263531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263531,0.000000,0.000000,0.250000,0,0);}
.m23_c00355{transform:matrix(0.264073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264073,0.000000,0.000000,0.250000,0,0);}
.mb9_c00355{transform:matrix(0.264212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264212,0.000000,0.000000,0.250000,0,0);}
.m59_c00355{transform:matrix(0.264240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264240,0.000000,0.000000,0.250000,0,0);}
.m89_c00355{transform:matrix(0.264375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264375,0.000000,0.000000,0.250000,0,0);}
.m46_c00355{transform:matrix(0.265111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265111,0.000000,0.000000,0.250000,0,0);}
.m7a_c00355{transform:matrix(0.265159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265159,0.000000,0.000000,0.250000,0,0);}
.mcb_c00355{transform:matrix(0.266075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266075,0.000000,0.000000,0.250000,0,0);}
.m5c_c00355{transform:matrix(0.266599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266599,0.000000,0.000000,0.250000,0,0);}
.m7_c00355{transform:matrix(0.266863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266863,0.000000,0.000000,0.250000,0,0);}
.mc2_c00355{transform:matrix(0.267144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267144,0.000000,0.000000,0.250000,0,0);}
.m5e_c00355{transform:matrix(0.267445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267445,0.000000,0.000000,0.250000,0,0);}
.ma3_c00355{transform:matrix(0.267597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267597,0.000000,0.000000,0.250000,0,0);}
.m98_c00355{transform:matrix(0.267627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267627,0.000000,0.000000,0.250000,0,0);}
.m8c_c00355{transform:matrix(0.267914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267914,0.000000,0.000000,0.250000,0,0);}
.m69_c00355{transform:matrix(0.268416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268416,0.000000,0.000000,0.250000,0,0);}
.m7e_c00355{transform:matrix(0.268586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268586,0.000000,0.000000,0.250000,0,0);}
.mab_c00355{transform:matrix(0.268965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268965,0.000000,0.000000,0.250000,0,0);}
.mb6_c00355{transform:matrix(0.269016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269016,0.000000,0.000000,0.250000,0,0);}
.mb5_c00355{transform:matrix(0.269099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269099,0.000000,0.000000,0.250000,0,0);}
.m32_c00355{transform:matrix(0.269318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269318,0.000000,0.000000,0.250000,0,0);}
.m22_c00355{transform:matrix(0.270153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270153,0.000000,0.000000,0.250000,0,0);}
.md_c00355{transform:matrix(0.270827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270827,0.000000,0.000000,0.250000,0,0);}
.m66_c00355{transform:matrix(0.271255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271255,0.000000,0.000000,0.250000,0,0);}
.md2_c00355{transform:matrix(0.272322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272322,0.000000,0.000000,0.250000,0,0);}
.m96_c00355{transform:matrix(0.272455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272455,0.000000,0.000000,0.250000,0,0);}
.m13_c00355{transform:matrix(0.273223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273223,0.000000,0.000000,0.250000,0,0);}
.m5_c00355{transform:matrix(0.273571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273571,0.000000,0.000000,0.250000,0,0);}
.m54_c00355{transform:matrix(0.273819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273819,0.000000,0.000000,0.250000,0,0);}
.m1e_c00355{transform:matrix(0.275579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275579,0.000000,0.000000,0.250000,0,0);}
.mb8_c00355{transform:matrix(0.276155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276155,0.000000,0.000000,0.250000,0,0);}
.m4f_c00355{transform:matrix(0.276294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276294,0.000000,0.000000,0.250000,0,0);}
.maf_c00355{transform:matrix(0.277234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277234,0.000000,0.000000,0.250000,0,0);}
.m37_c00355{transform:matrix(0.278346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278346,0.000000,0.000000,0.250000,0,0);}
.m41_c00355{transform:matrix(0.278623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278623,0.000000,0.000000,0.250000,0,0);}
.m61_c00355{transform:matrix(0.279434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279434,0.000000,0.000000,0.250000,0,0);}
.m60_c00355{transform:matrix(0.280330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280330,0.000000,0.000000,0.250000,0,0);}
.m8_c00355{transform:matrix(0.280722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280722,0.000000,0.000000,0.250000,0,0);}
.mbf_c00355{transform:matrix(0.281397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281397,0.000000,0.000000,0.250000,0,0);}
.m16_c00355{transform:matrix(0.281958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281958,0.000000,0.000000,0.250000,0,0);}
.m93_c00355{transform:matrix(0.282497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282497,0.000000,0.000000,0.250000,0,0);}
.m4e_c00355{transform:matrix(0.282668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282668,0.000000,0.000000,0.250000,0,0);}
.ma5_c00355{transform:matrix(0.283099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283099,0.000000,0.000000,0.250000,0,0);}
.m80_c00355{transform:matrix(0.283144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283144,0.000000,0.000000,0.250000,0,0);}
.m35_c00355{transform:matrix(0.283475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283475,0.000000,0.000000,0.250000,0,0);}
.mb3_c00355{transform:matrix(0.284510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284510,0.000000,0.000000,0.250000,0,0);}
.m62_c00355{transform:matrix(0.285081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285081,0.000000,0.000000,0.250000,0,0);}
.m95_c00355{transform:matrix(0.285082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285082,0.000000,0.000000,0.250000,0,0);}
.m3d_c00355{transform:matrix(0.285135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285135,0.000000,0.000000,0.250000,0,0);}
.mae_c00355{transform:matrix(0.285833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285833,0.000000,0.000000,0.250000,0,0);}
.m5b_c00355{transform:matrix(0.285943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285943,0.000000,0.000000,0.250000,0,0);}
.m24_c00355{transform:matrix(0.286053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286053,0.000000,0.000000,0.250000,0,0);}
.m7f_c00355{transform:matrix(0.287379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287379,0.000000,0.000000,0.250000,0,0);}
.mc7_c00355{transform:matrix(0.287382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287382,0.000000,0.000000,0.250000,0,0);}
.mcf_c00355{transform:matrix(0.288419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288419,0.000000,0.000000,0.250000,0,0);}
.m7c_c00355{transform:matrix(0.288934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288934,0.000000,0.000000,0.250000,0,0);}
.m2d_c00355{transform:matrix(0.289215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289215,0.000000,0.000000,0.250000,0,0);}
.m27_c00355{transform:matrix(0.289542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289542,0.000000,0.000000,0.250000,0,0);}
.mc4_c00355{transform:matrix(0.289591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289591,0.000000,0.000000,0.250000,0,0);}
.ma8_c00355{transform:matrix(0.289878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289878,0.000000,0.000000,0.250000,0,0);}
.m53_c00355{transform:matrix(0.290121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290121,0.000000,0.000000,0.250000,0,0);}
.m3a_c00355{transform:matrix(0.290439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290439,0.000000,0.000000,0.250000,0,0);}
.m5f_c00355{transform:matrix(0.290639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290639,0.000000,0.000000,0.250000,0,0);}
.m9c_c00355{transform:matrix(0.290719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290719,0.000000,0.000000,0.250000,0,0);}
.m18_c00355{transform:matrix(0.291256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291256,0.000000,0.000000,0.250000,0,0);}
.m1d_c00355{transform:matrix(0.291832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291832,0.000000,0.000000,0.250000,0,0);}
.m75_c00355{transform:matrix(0.292327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292327,0.000000,0.000000,0.250000,0,0);}
.m1a_c00355{transform:matrix(0.294580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294580,0.000000,0.000000,0.250000,0,0);}
.mb4_c00355{transform:matrix(0.294681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294681,0.000000,0.000000,0.250000,0,0);}
.mca_c00355{transform:matrix(0.295185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295185,0.000000,0.000000,0.250000,0,0);}
.m83_c00355{transform:matrix(0.295492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295492,0.000000,0.000000,0.250000,0,0);}
.m91_c00355{transform:matrix(0.296464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296464,0.000000,0.000000,0.250000,0,0);}
.m30_c00355{transform:matrix(0.296720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296720,0.000000,0.000000,0.250000,0,0);}
.m55_c00355{transform:matrix(0.297382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297382,0.000000,0.000000,0.250000,0,0);}
.m9a_c00355{transform:matrix(0.297634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297634,0.000000,0.000000,0.250000,0,0);}
.m17_c00355{transform:matrix(0.297919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297919,0.000000,0.000000,0.250000,0,0);}
.m97_c00355{transform:matrix(0.298445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298445,0.000000,0.000000,0.250000,0,0);}
.m52_c00355{transform:matrix(0.298829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298829,0.000000,0.000000,0.250000,0,0);}
.m6a_c00355{transform:matrix(0.299413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299413,0.000000,0.000000,0.250000,0,0);}
.m3e_c00355{transform:matrix(0.299469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299469,0.000000,0.000000,0.250000,0,0);}
.md0_c00355{transform:matrix(0.299481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299481,0.000000,0.000000,0.250000,0,0);}
.m25_c00355{transform:matrix(0.299911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299911,0.000000,0.000000,0.250000,0,0);}
.m94_c00355{transform:matrix(0.300036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300036,0.000000,0.000000,0.250000,0,0);}
.m1f_c00355{transform:matrix(0.300065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300065,0.000000,0.000000,0.250000,0,0);}
.m4c_c00355{transform:matrix(0.300135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300135,0.000000,0.000000,0.250000,0,0);}
.ma4_c00355{transform:matrix(0.300138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300138,0.000000,0.000000,0.250000,0,0);}
.m57_c00355{transform:matrix(0.300746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300746,0.000000,0.000000,0.250000,0,0);}
.m3_c00355{transform:matrix(0.300785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300785,0.000000,0.000000,0.250000,0,0);}
.m6b_c00355{transform:matrix(0.302483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302483,0.000000,0.000000,0.250000,0,0);}
.m28_c00355{transform:matrix(0.302742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302742,0.000000,0.000000,0.250000,0,0);}
.m71_c00355{transform:matrix(0.302758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302758,0.000000,0.000000,0.250000,0,0);}
.m9b_c00355{transform:matrix(0.303521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303521,0.000000,0.000000,0.250000,0,0);}
.mc3_c00355{transform:matrix(0.303759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303759,0.000000,0.000000,0.250000,0,0);}
.m86_c00355{transform:matrix(0.304515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304515,0.000000,0.000000,0.250000,0,0);}
.m51_c00355{transform:matrix(0.305595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305595,0.000000,0.000000,0.250000,0,0);}
.m48_c00355{transform:matrix(0.306135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306135,0.000000,0.000000,0.250000,0,0);}
.m49_c00355{transform:matrix(0.306480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306480,0.000000,0.000000,0.250000,0,0);}
.m4d_c00355{transform:matrix(0.306518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306518,0.000000,0.000000,0.250000,0,0);}
.m2e_c00355{transform:matrix(0.306689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306689,0.000000,0.000000,0.250000,0,0);}
.m6c_c00355{transform:matrix(0.307314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307314,0.000000,0.000000,0.250000,0,0);}
.m4a_c00355{transform:matrix(0.307492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307492,0.000000,0.000000,0.250000,0,0);}
.mb1_c00355{transform:matrix(0.308256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308256,0.000000,0.000000,0.250000,0,0);}
.m7d_c00355{transform:matrix(0.308942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308942,0.000000,0.000000,0.250000,0,0);}
.m45_c00355{transform:matrix(0.311016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311016,0.000000,0.000000,0.250000,0,0);}
.m33_c00355{transform:matrix(0.311224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311224,0.000000,0.000000,0.250000,0,0);}
.m90_c00355{transform:matrix(0.311579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311579,0.000000,0.000000,0.250000,0,0);}
.m21_c00355{transform:matrix(0.311622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311622,0.000000,0.000000,0.250000,0,0);}
.m85_c00355{transform:matrix(0.312990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312990,0.000000,0.000000,0.250000,0,0);}
.m6_c00355{transform:matrix(0.313114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313114,0.000000,0.000000,0.250000,0,0);}
.m40_c00355{transform:matrix(0.313438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313438,0.000000,0.000000,0.250000,0,0);}
.m68_c00355{transform:matrix(0.313829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313829,0.000000,0.000000,0.250000,0,0);}
.m2f_c00355{transform:matrix(0.314588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314588,0.000000,0.000000,0.250000,0,0);}
.m82_c00355{transform:matrix(0.315705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315705,0.000000,0.000000,0.250000,0,0);}
.m47_c00355{transform:matrix(0.316775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316775,0.000000,0.000000,0.250000,0,0);}
.mbe_c00355{transform:matrix(0.317255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317255,0.000000,0.000000,0.250000,0,0);}
.mbc_c00355{transform:matrix(0.317395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317395,0.000000,0.000000,0.250000,0,0);}
.m1b_c00355{transform:matrix(0.317490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317490,0.000000,0.000000,0.250000,0,0);}
.m77_c00355{transform:matrix(0.317788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317788,0.000000,0.000000,0.250000,0,0);}
.m63_c00355{transform:matrix(0.317955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317955,0.000000,0.000000,0.250000,0,0);}
.mb_c00355{transform:matrix(0.320961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320961,0.000000,0.000000,0.250000,0,0);}
.mc_c00355{transform:matrix(0.320962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320962,0.000000,0.000000,0.250000,0,0);}
.m64_c00355{transform:matrix(0.322750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00355{transform:matrix(0.322806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322806,0.000000,0.000000,0.250000,0,0);}
.m8b_c00355{transform:matrix(0.324016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324016,0.000000,0.000000,0.250000,0,0);}
.m42_c00355{transform:matrix(0.326101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326101,0.000000,0.000000,0.250000,0,0);}
.m14_c00355{transform:matrix(0.326195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326195,0.000000,0.000000,0.250000,0,0);}
.m67_c00355{transform:matrix(0.326587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326587,0.000000,0.000000,0.250000,0,0);}
.m2_c00355{transform:matrix(0.327365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327365,0.000000,0.000000,0.250000,0,0);}
.m8e_c00355{transform:matrix(0.327947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327947,0.000000,0.000000,0.250000,0,0);}
.mcc_c00355{transform:matrix(0.328002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328002,0.000000,0.000000,0.250000,0,0);}
.me_c00355{transform:matrix(0.328553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328553,0.000000,0.000000,0.250000,0,0);}
.m58_c00355{transform:matrix(0.329209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329209,0.000000,0.000000,0.250000,0,0);}
.m50_c00355{transform:matrix(0.330356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330356,0.000000,0.000000,0.250000,0,0);}
.m92_c00355{transform:matrix(0.330414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330414,0.000000,0.000000,0.250000,0,0);}
.m6d_c00355{transform:matrix(0.332233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332233,0.000000,0.000000,0.250000,0,0);}
.m56_c00355{transform:matrix(0.335365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335365,0.000000,0.000000,0.250000,0,0);}
.m8d_c00355{transform:matrix(0.335588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335588,0.000000,0.000000,0.250000,0,0);}
.m3f_c00355{transform:matrix(0.336931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336931,0.000000,0.000000,0.250000,0,0);}
.m6f_c00355{transform:matrix(0.338025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338025,0.000000,0.000000,0.250000,0,0);}
.m74_c00355{transform:matrix(0.338482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338482,0.000000,0.000000,0.250000,0,0);}
.m88_c00355{transform:matrix(0.339161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339161,0.000000,0.000000,0.250000,0,0);}
.m12_c00355{transform:matrix(0.339312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339312,0.000000,0.000000,0.250000,0,0);}
.m31_c00355{transform:matrix(0.339434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339434,0.000000,0.000000,0.250000,0,0);}
.m3b_c00355{transform:matrix(0.339855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339855,0.000000,0.000000,0.250000,0,0);}
.m7b_c00355{transform:matrix(0.340699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340699,0.000000,0.000000,0.250000,0,0);}
.m10_c00355{transform:matrix(0.342744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342744,0.000000,0.000000,0.250000,0,0);}
.mbb_c00355{transform:matrix(0.343667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343667,0.000000,0.000000,0.250000,0,0);}
.m43_c00355{transform:matrix(0.344194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344194,0.000000,0.000000,0.250000,0,0);}
.m36_c00355{transform:matrix(0.344540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344540,0.000000,0.000000,0.250000,0,0);}
.m6e_c00355{transform:matrix(0.344977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344977,0.000000,0.000000,0.250000,0,0);}
.m78_c00355{transform:matrix(0.346692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346692,0.000000,0.000000,0.250000,0,0);}
.m5d_c00355{transform:matrix(0.347155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347155,0.000000,0.000000,0.250000,0,0);}
.m87_c00355{transform:matrix(0.352299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352299,0.000000,0.000000,0.250000,0,0);}
.m72_c00355{transform:matrix(0.356927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356927,0.000000,0.000000,0.250000,0,0);}
.m79_c00355{transform:matrix(0.357251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357251,0.000000,0.000000,0.250000,0,0);}
.m15_c00355{transform:matrix(0.360815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360815,0.000000,0.000000,0.250000,0,0);}
.m4b_c00355{transform:matrix(0.365498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365498,0.000000,0.000000,0.250000,0,0);}
.m5a_c00355{transform:matrix(0.367584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367584,0.000000,0.000000,0.250000,0,0);}
.mb2_c00355{transform:matrix(0.368906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368906,0.000000,0.000000,0.250000,0,0);}
.mba_c00355{transform:matrix(0.371671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371671,0.000000,0.000000,0.250000,0,0);}
.m20_c00355{transform:matrix(0.372267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372267,0.000000,0.000000,0.250000,0,0);}
.mc8_c00355{transform:matrix(0.373151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373151,0.000000,0.000000,0.250000,0,0);}
.m8a_c00355{transform:matrix(0.375615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375615,0.000000,0.000000,0.250000,0,0);}
.m19_c00355{transform:matrix(0.384136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384136,0.000000,0.000000,0.250000,0,0);}
.ma7_c00355{transform:matrix(0.389710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389710,0.000000,0.000000,0.250000,0,0);}
.mc1_c00355{transform:matrix(0.407816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407816,0.000000,0.000000,0.250000,0,0);}
.mce_c00355{transform:matrix(0.419438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419438,0.000000,0.000000,0.250000,0,0);}
.mb7_c00355{transform:matrix(0.426547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426547,0.000000,0.000000,0.250000,0,0);}
.m65_c00355{transform:matrix(0.436760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436760,0.000000,0.000000,0.250000,0,0);}
.m38_c00355{transform:matrix(0.445039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445039,0.000000,0.000000,0.250000,0,0);}
.v0_c00355{vertical-align:0.000000px;}
.v1_c00355{vertical-align:1.449360px;}
.lsc_c00355{letter-spacing:-2.668050px;}
.ls17_c00355{letter-spacing:-2.328480px;}
.ls1d_c00355{letter-spacing:-1.555092px;}
.ls18_c00355{letter-spacing:-1.250172px;}
.ls19_c00355{letter-spacing:-0.777546px;}
.lse_c00355{letter-spacing:-0.724185px;}
.ls1e_c00355{letter-spacing:-0.609840px;}
.ls8_c00355{letter-spacing:0.000000px;}
.ls2_c00355{letter-spacing:0.017186px;}
.ls1f_c00355{letter-spacing:0.541233px;}
.ls12_c00355{letter-spacing:0.772210px;}
.lsa_c00355{letter-spacing:1.570338px;}
.ls11_c00355{letter-spacing:1.623600px;}
.lsd_c00355{letter-spacing:1.732500px;}
.ls3_c00355{letter-spacing:2.035341px;}
.ls5_c00355{letter-spacing:2.142063px;}
.ls1b_c00355{letter-spacing:2.302146px;}
.ls10_c00355{letter-spacing:2.930400px;}
.ls4_c00355{letter-spacing:3.232152px;}
.ls16_c00355{letter-spacing:3.326400px;}
.lsf_c00355{letter-spacing:3.384612px;}
.ls13_c00355{letter-spacing:3.603610px;}
.ls1_c00355{letter-spacing:3.620925px;}
.lsb_c00355{letter-spacing:3.801610px;}
.ls9_c00355{letter-spacing:3.811500px;}
.ls7_c00355{letter-spacing:4.296610px;}
.ls14_c00355{letter-spacing:4.464900px;}
.ls0_c00355{letter-spacing:7.623000px;}
.ls6_c00355{letter-spacing:27.428478px;}
.ls15_c00355{letter-spacing:49.896198px;}
.ls1a_c00355{letter-spacing:58.449798px;}
.ls1c_c00355{letter-spacing:75.556800px;}
.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;}
}
.ws2_c00355{word-spacing:-21.199563px;}
.ws3_c00355{word-spacing:-19.598733px;}
.ws0_c00355{word-spacing:-19.057500px;}
.ws4_c00355{word-spacing:0.000000px;}
.ws1_c00355{word-spacing:0.228690px;}
._17_c00355{margin-left:-8.537760px;}
._11_c00355{margin-left:-2.744280px;}
._0_c00355{margin-left:-1.400256px;}
._1c_c00355{width:2.576574px;}
._16_c00355{width:3.846150px;}
._19_c00355{width:5.412330px;}
._1_c00355{width:6.632010px;}
._8_c00355{width:8.232840px;}
._c_c00355{width:10.291050px;}
._e_c00355{width:11.739420px;}
._f_c00355{width:15.093540px;}
._1a_c00355{width:17.075520px;}
._3_c00355{width:20.582100px;}
._13_c00355{width:21.802770px;}
._10_c00355{width:22.869000px;}
._a_c00355{width:24.317370px;}
._d_c00355{width:27.524277px;}
._4_c00355{width:28.967400px;}
._18_c00355{width:30.415770px;}
._b_c00355{width:31.907700px;}
._12_c00355{width:33.541200px;}
._7_c00355{width:34.673070px;}
._2_c00355{width:36.473580px;}
._9_c00355{width:38.342700px;}
._1b_c00355{width:40.851360px;}
._14_c00355{width:42.120540px;}
._5_c00355{width:43.244685px;}
._6_c00355{width:49.420800px;}
._15_c00355{width:503.717148px;}
.fc0_c00355{color:transparent;}
.fs7_c00355{font-size:15.444198px;}
.fs1_c00355{font-size:26.928000px;}
.fs6_c00355{font-size:32.472000px;}
.fse_c00355{font-size:33.264000px;}
.fsf_c00355{font-size:33.660000px;}
.fs4_c00355{font-size:34.650000px;}
.fsb_c00355{font-size:44.748000px;}
.fsc_c00355{font-size:49.896198px;}
.fs10_c00355{font-size:58.449798px;}
.fs5_c00355{font-size:58.608000px;}
.fsd_c00355{font-size:66.528000px;}
.fs8_c00355{font-size:72.072198px;}
.fsa_c00355{font-size:72.864000px;}
.fs11_c00355{font-size:75.556800px;}
.fs3_c00355{font-size:76.032198px;}
.fs2_c00355{font-size:76.230000px;}
.fs12_c00355{font-size:79.200000px;}
.fs0_c00355{font-size:85.932198px;}
.fs9_c00355{font-size:89.298000px;}
.fs13_c00355{font-size:91.872198px;}
.y0_c00355{bottom:0.000000px;}
.y1_c00355{bottom:76.500000px;}
.y24_c00355{bottom:141.046335px;}
.y23_c00355{bottom:170.978985px;}
.y22_c00355{bottom:198.778185px;}
.y21_c00355{bottom:207.331785px;}
.y20_c00355{bottom:233.348985px;}
.y1f_c00355{bottom:239.769135px;}
.y1e_c00355{bottom:257.940585px;}
.y1d_c00355{bottom:272.914335px;}
.y1c_c00355{bottom:304.628985px;}
.y1b_c00355{bottom:336.704985px;}
.y1a_c00355{bottom:369.137385px;}
.y18_c00355{bottom:393.728985px;}
.y19_c00355{bottom:401.574735px;}
.y17_c00355{bottom:427.591935px;}
.y16_c00355{bottom:435.789135px;}
.y15_c00355{bottom:436.140585px;}
.y14_c00355{bottom:442.912185px;}
.y13_c00355{bottom:506.707785px;}
.y12_c00355{bottom:532.729935px;}
.y11_c00355{bottom:566.226585px;}
.y10_c00355{bottom:599.376735px;}
.yf_c00355{bottom:632.165535px;}
.ye_c00355{bottom:664.597935px;}
.yd_c00355{bottom:696.668985px;}
.yc_c00355{bottom:725.898735px;}
.ya_c00355{bottom:729.106335px;}
.yb_c00355{bottom:729.814185px;}
.y9_c00355{bottom:762.964335px;}
.y8_c00355{bottom:796.460985px;}
.y7_c00355{bottom:828.893385px;}
.y6_c00355{bottom:829.249785px;}
.y5_c00355{bottom:861.682185px;}
.y4_c00355{bottom:926.551935px;}
.y3_c00355{bottom:1058.771385px;}
.y2_c00355{bottom:1077.660585px;}
.ha_c00355{height:16.107816px;}
.h3_c00355{height:28.085063px;}
.hd_c00355{height:31.869492px;}
.h12_c00355{height:33.035449px;}
.hf_c00355{height:33.230868px;}
.h9_c00355{height:33.867281px;}
.h11_c00355{height:34.693313px;}
.h6_c00355{height:36.138867px;}
.h13_c00355{height:38.927565px;}
.he_c00355{height:43.917715px;}
.h14_c00355{height:50.320829px;}
.h8_c00355{height:57.520547px;}
.h10_c00355{height:65.293594px;}
.h15_c00355{height:71.512031px;}
.h5_c00355{height:74.621444px;}
.h4_c00355{height:74.815576px;}
.hb_c00355{height:75.169050px;}
.h7_c00355{height:76.264936px;}
.h16_c00355{height:82.603125px;}
.h2_c00355{height:84.337753px;}
.hc_c00355{height:87.641104px;}
.h17_c00355{height:95.819832px;}
.h1_c00355{height:1110.000000px;}
.h0_c00355{height:1263.000000px;}
.w1_c00355{width:775.500000px;}
.w0_c00355{width:892.500000px;}
.x0_c00355{left:0.000000px;}
.x1_c00355{left:58.500000px;}
.x15_c00355{left:96.343485px;}
.x4_c00355{left:98.224485px;}
.x6f_c00355{left:99.254085px;}
.x7a_c00355{left:111.648885px;}
.x32_c00355{left:119.172885px;}
.x20_c00355{left:129.488685px;}
.x2b_c00355{left:130.958835px;}
.x43_c00355{left:140.220285px;}
.x68_c00355{left:142.314135px;}
.x65_c00355{left:144.066435px;}
.x5_c00355{left:150.699435px;}
.x2c_c00355{left:151.981485px;}
.x70_c00355{left:153.387285px;}
.x4c_c00355{left:162.648735px;}
.x6b_c00355{left:164.435685px;}
.x4e_c00355{left:172.796235px;}
.xb_c00355{left:173.870385px;}
.x7b_c00355{left:175.493985px;}
.x5b_c00355{left:177.305685px;}
.x33_c00355{left:183.508035px;}
.x44_c00355{left:185.101935px;}
.x6_c00355{left:195.407835px;}
.x5c_c00355{left:196.521585px;}
.x21_c00355{left:206.857185px;}
.x6c_c00355{left:207.891735px;}
.xc_c00355{left:209.307435px;}
.x16_c00355{left:217.410585px;}
.x69_c00355{left:218.687685px;}
.x17_c00355{left:228.904485px;}
.x2d_c00355{left:230.889435px;}
.x3_c00355{left:240.373635px;}
.x76_c00355{left:242.140785px;}
.x22_c00355{left:251.758635px;}
.x71_c00355{left:252.827835px;}
.x5e_c00355{left:263.311935px;}
.x7c_c00355{left:264.391035px;}
.xd_c00355{left:273.137685px;}
.x5d_c00355{left:274.885035px;}
.x6d_c00355{left:280.339935px;}
.x18_c00355{left:284.191035px;}
.x77_c00355{left:285.542385px;}
.x45_c00355{left:295.818585px;}
.x6e_c00355{left:297.209535px;}
.x3c_c00355{left:305.060235px;}
.x19_c00355{left:306.926385px;}
.x72_c00355{left:308.045085px;}
.x41_c00355{left:317.692635px;}
.x78_c00355{left:319.321185px;}
.x23_c00355{left:328.379685px;}
.x5f_c00355{left:329.810235px;}
.x34_c00355{left:339.824085px;}
.x66_c00355{left:340.858635px;}
.x75_c00355{left:344.764185px;}
.xe_c00355{left:350.441835px;}
.x4f_c00355{left:351.832785px;}
.x24_c00355{left:361.336785px;}
.x60_c00355{left:363.237585px;}
.x49_c00355{left:364.673085px;}
.x35_c00355{left:373.266285px;}
.x7_c00355{left:375.746235px;}
.x50_c00355{left:385.027485px;}
.x8_c00355{left:394.967085px;}
.x79_c00355{left:397.115385px;}
.x4d_c00355{left:405.896685px;}
.x1a_c00355{left:407.114385px;}
.xf_c00355{left:416.648085px;}
.x53_c00355{left:417.994485px;}
.x9_c00355{left:419.068635px;}
.x2e_c00355{left:426.157035px;}
.x1b_c00355{left:427.691535px;}
.x4a_c00355{left:429.339885px;}
.xa_c00355{left:440.031885px;}
.x25_c00355{left:450.421935px;}
.x61_c00355{left:451.981185px;}
.x10_c00355{left:460.965435px;}
.x56_c00355{left:462.366285px;}
.x73_c00355{left:463.435485px;}
.x3d_c00355{left:473.063235px;}
.x26_c00355{left:482.928585px;}
.x57_c00355{left:484.126485px;}
.x2f_c00355{left:493.556235px;}
.x11_c00355{left:495.105585px;}
.x46_c00355{left:505.307535px;}
.x3e_c00355{left:506.881635px;}
.x58_c00355{left:508.366635px;}
.x42_c00355{left:517.741935px;}
.x30_c00355{left:527.067735px;}
.x4b_c00355{left:528.097335px;}
.x27_c00355{left:539.724885px;}
.x74_c00355{left:540.779235px;}
.x1c_c00355{left:550.045635px;}
.x7d_c00355{left:551.362335px;}
.x36_c00355{left:560.435685px;}
.x47_c00355{left:562.158285px;}
.x31_c00355{left:571.776135px;}
.x38_c00355{left:582.161235px;}
.x12_c00355{left:583.210635px;}
.x59_c00355{left:584.631285px;}
.x28_c00355{left:593.902635px;}
.x3f_c00355{left:594.942135px;}
.x62_c00355{left:606.337035px;}
.x1d_c00355{left:616.662735px;}
.x1e_c00355{left:628.112085px;}
.x29_c00355{left:638.467485px;}
.x37_c00355{left:639.670335px;}
.x13_c00355{left:650.129685px;}
.x2a_c00355{left:660.004935px;}
.x1f_c00355{left:661.237485px;}
.x39_c00355{left:663.722385px;}
.x2_c00355{left:671.538435px;}
.x67_c00355{left:672.894735px;}
.x14_c00355{left:682.403685px;}
.x48_c00355{left:683.547135px;}
.x5a_c00355{left:693.179835px;}
.x54_c00355{left:694.402485px;}
.x51_c00355{left:699.906885px;}
.x6a_c00355{left:704.292585px;}
.x63_c00355{left:705.470685px;}
.x3a_c00355{left:706.683435px;}
.x64_c00355{left:717.528885px;}
.x55_c00355{left:726.285435px;}
.x3b_c00355{left:728.003085px;}
.x40_c00355{left:738.893085px;}
.x52_c00355{left:742.184835px;}
@media print{
.v0_c00355{vertical-align:0.000000pt;}
.v1_c00355{vertical-align:1.288320pt;}
.lsc_c00355{letter-spacing:-2.371600pt;}
.ls17_c00355{letter-spacing:-2.069760pt;}
.ls1d_c00355{letter-spacing:-1.382304pt;}
.ls18_c00355{letter-spacing:-1.111264pt;}
.ls19_c00355{letter-spacing:-0.691152pt;}
.lse_c00355{letter-spacing:-0.643720pt;}
.ls1e_c00355{letter-spacing:-0.542080pt;}
.ls8_c00355{letter-spacing:0.000000pt;}
.ls2_c00355{letter-spacing:0.015277pt;}
.ls1f_c00355{letter-spacing:0.481096pt;}
.ls12_c00355{letter-spacing:0.686409pt;}
.lsa_c00355{letter-spacing:1.395856pt;}
.ls11_c00355{letter-spacing:1.443200pt;}
.lsd_c00355{letter-spacing:1.540000pt;}
.ls3_c00355{letter-spacing:1.809192pt;}
.ls5_c00355{letter-spacing:1.904056pt;}
.ls1b_c00355{letter-spacing:2.046352pt;}
.ls10_c00355{letter-spacing:2.604800pt;}
.ls4_c00355{letter-spacing:2.873024pt;}
.ls16_c00355{letter-spacing:2.956800pt;}
.lsf_c00355{letter-spacing:3.008544pt;}
.ls13_c00355{letter-spacing:3.203209pt;}
.ls1_c00355{letter-spacing:3.218600pt;}
.lsb_c00355{letter-spacing:3.379209pt;}
.ls9_c00355{letter-spacing:3.388000pt;}
.ls7_c00355{letter-spacing:3.819209pt;}
.ls14_c00355{letter-spacing:3.968800pt;}
.ls0_c00355{letter-spacing:6.776000pt;}
.ls6_c00355{letter-spacing:24.380869pt;}
.ls15_c00355{letter-spacing:44.352176pt;}
.ls1a_c00355{letter-spacing:51.955376pt;}
.ls1c_c00355{letter-spacing:67.161600pt;}
.ws2_c00355{word-spacing:-18.844056pt;}
.ws3_c00355{word-spacing:-17.421096pt;}
.ws0_c00355{word-spacing:-16.940000pt;}
.ws4_c00355{word-spacing:0.000000pt;}
.ws1_c00355{word-spacing:0.203280pt;}
._17_c00355{margin-left:-7.589120pt;}
._11_c00355{margin-left:-2.439360pt;}
._0_c00355{margin-left:-1.244672pt;}
._1c_c00355{width:2.290288pt;}
._16_c00355{width:3.418800pt;}
._19_c00355{width:4.810960pt;}
._1_c00355{width:5.895120pt;}
._8_c00355{width:7.318080pt;}
._c_c00355{width:9.147600pt;}
._e_c00355{width:10.435040pt;}
._f_c00355{width:13.416480pt;}
._1a_c00355{width:15.178240pt;}
._3_c00355{width:18.295200pt;}
._13_c00355{width:19.380240pt;}
._10_c00355{width:20.328000pt;}
._a_c00355{width:21.615440pt;}
._d_c00355{width:24.466024pt;}
._4_c00355{width:25.748800pt;}
._18_c00355{width:27.036240pt;}
._b_c00355{width:28.362400pt;}
._12_c00355{width:29.814400pt;}
._7_c00355{width:30.820507pt;}
._2_c00355{width:32.420960pt;}
._9_c00355{width:34.082400pt;}
._1b_c00355{width:36.312320pt;}
._14_c00355{width:37.440480pt;}
._5_c00355{width:38.439720pt;}
._6_c00355{width:43.929600pt;}
._15_c00355{width:447.748576pt;}
.fs7_c00355{font-size:13.728176pt;}
.fs1_c00355{font-size:23.936000pt;}
.fs6_c00355{font-size:28.864000pt;}
.fse_c00355{font-size:29.568000pt;}
.fsf_c00355{font-size:29.920000pt;}
.fs4_c00355{font-size:30.800000pt;}
.fsb_c00355{font-size:39.776000pt;}
.fsc_c00355{font-size:44.352176pt;}
.fs10_c00355{font-size:51.955376pt;}
.fs5_c00355{font-size:52.096000pt;}
.fsd_c00355{font-size:59.136000pt;}
.fs8_c00355{font-size:64.064176pt;}
.fsa_c00355{font-size:64.768000pt;}
.fs11_c00355{font-size:67.161600pt;}
.fs3_c00355{font-size:67.584176pt;}
.fs2_c00355{font-size:67.760000pt;}
.fs12_c00355{font-size:70.400000pt;}
.fs0_c00355{font-size:76.384176pt;}
.fs9_c00355{font-size:79.376000pt;}
.fs13_c00355{font-size:81.664176pt;}
.y0_c00355{bottom:0.000000pt;}
.y1_c00355{bottom:68.000000pt;}
.y24_c00355{bottom:125.374520pt;}
.y23_c00355{bottom:151.981320pt;}
.y22_c00355{bottom:176.691720pt;}
.y21_c00355{bottom:184.294920pt;}
.y20_c00355{bottom:207.421320pt;}
.y1f_c00355{bottom:213.128120pt;}
.y1e_c00355{bottom:229.280520pt;}
.y1d_c00355{bottom:242.590520pt;}
.y1c_c00355{bottom:270.781320pt;}
.y1b_c00355{bottom:299.293320pt;}
.y1a_c00355{bottom:328.122120pt;}
.y18_c00355{bottom:349.981320pt;}
.y19_c00355{bottom:356.955320pt;}
.y17_c00355{bottom:380.081720pt;}
.y16_c00355{bottom:387.368120pt;}
.y15_c00355{bottom:387.680520pt;}
.y14_c00355{bottom:393.699720pt;}
.y13_c00355{bottom:450.406920pt;}
.y12_c00355{bottom:473.537720pt;}
.y11_c00355{bottom:503.312520pt;}
.y10_c00355{bottom:532.779320pt;}
.yf_c00355{bottom:561.924920pt;}
.ye_c00355{bottom:590.753720pt;}
.yd_c00355{bottom:619.261320pt;}
.yc_c00355{bottom:645.243320pt;}
.ya_c00355{bottom:648.094520pt;}
.yb_c00355{bottom:648.723720pt;}
.y9_c00355{bottom:678.190520pt;}
.y8_c00355{bottom:707.965320pt;}
.y7_c00355{bottom:736.794120pt;}
.y6_c00355{bottom:737.110920pt;}
.y5_c00355{bottom:765.939720pt;}
.y4_c00355{bottom:823.601720pt;}
.y3_c00355{bottom:941.130120pt;}
.y2_c00355{bottom:957.920520pt;}
.ha_c00355{height:14.318059pt;}
.h3_c00355{height:24.964500pt;}
.hd_c00355{height:28.328437pt;}
.h12_c00355{height:29.364844pt;}
.hf_c00355{height:29.538549pt;}
.h9_c00355{height:30.104250pt;}
.h11_c00355{height:30.838500pt;}
.h6_c00355{height:32.123438pt;}
.h13_c00355{height:34.602280pt;}
.he_c00355{height:39.037969pt;}
.h14_c00355{height:44.729626pt;}
.h8_c00355{height:51.129375pt;}
.h10_c00355{height:58.038750pt;}
.h15_c00355{height:63.566250pt;}
.h5_c00355{height:66.330173pt;}
.h4_c00355{height:66.502734pt;}
.hb_c00355{height:66.816934pt;}
.h7_c00355{height:67.791054pt;}
.h16_c00355{height:73.425000pt;}
.h2_c00355{height:74.966891pt;}
.hc_c00355{height:77.903203pt;}
.h17_c00355{height:85.173184pt;}
.h1_c00355{height:986.666667pt;}
.h0_c00355{height:1122.666667pt;}
.w1_c00355{width:689.333333pt;}
.w0_c00355{width:793.333333pt;}
.x0_c00355{left:0.000000pt;}
.x1_c00355{left:52.000000pt;}
.x15_c00355{left:85.638653pt;}
.x4_c00355{left:87.310653pt;}
.x6f_c00355{left:88.225853pt;}
.x7a_c00355{left:99.243453pt;}
.x32_c00355{left:105.931453pt;}
.x20_c00355{left:115.101053pt;}
.x2b_c00355{left:116.407853pt;}
.x43_c00355{left:124.640253pt;}
.x68_c00355{left:126.501453pt;}
.x65_c00355{left:128.059053pt;}
.x5_c00355{left:133.955053pt;}
.x2c_c00355{left:135.094653pt;}
.x70_c00355{left:136.344253pt;}
.x4c_c00355{left:144.576653pt;}
.x6b_c00355{left:146.165053pt;}
.x4e_c00355{left:153.596653pt;}
.xb_c00355{left:154.551453pt;}
.x7b_c00355{left:155.994653pt;}
.x5b_c00355{left:157.605053pt;}
.x33_c00355{left:163.118253pt;}
.x44_c00355{left:164.535053pt;}
.x6_c00355{left:173.695853pt;}
.x5c_c00355{left:174.685853pt;}
.x21_c00355{left:183.873053pt;}
.x6c_c00355{left:184.792653pt;}
.xc_c00355{left:186.051053pt;}
.x16_c00355{left:193.253853pt;}
.x69_c00355{left:194.389053pt;}
.x17_c00355{left:203.470653pt;}
.x2d_c00355{left:205.235053pt;}
.x3_c00355{left:213.665453pt;}
.x76_c00355{left:215.236253pt;}
.x22_c00355{left:223.785453pt;}
.x71_c00355{left:224.735853pt;}
.x5e_c00355{left:234.055053pt;}
.x7c_c00355{left:235.014253pt;}
.xd_c00355{left:242.789053pt;}
.x5d_c00355{left:244.342253pt;}
.x6d_c00355{left:249.191053pt;}
.x18_c00355{left:252.614253pt;}
.x77_c00355{left:253.815453pt;}
.x45_c00355{left:262.949853pt;}
.x6e_c00355{left:264.186253pt;}
.x3c_c00355{left:271.164653pt;}
.x19_c00355{left:272.823453pt;}
.x72_c00355{left:273.817853pt;}
.x41_c00355{left:282.393453pt;}
.x78_c00355{left:283.841053pt;}
.x23_c00355{left:291.893053pt;}
.x5f_c00355{left:293.164653pt;}
.x34_c00355{left:302.065853pt;}
.x66_c00355{left:302.985453pt;}
.x75_c00355{left:306.457053pt;}
.xe_c00355{left:311.503853pt;}
.x4f_c00355{left:312.740253pt;}
.x24_c00355{left:321.188253pt;}
.x60_c00355{left:322.877853pt;}
.x49_c00355{left:324.153853pt;}
.x35_c00355{left:331.792253pt;}
.x7_c00355{left:333.996653pt;}
.x50_c00355{left:342.246653pt;}
.x8_c00355{left:351.081853pt;}
.x79_c00355{left:352.991453pt;}
.x4d_c00355{left:360.797053pt;}
.x1a_c00355{left:361.879453pt;}
.xf_c00355{left:370.353853pt;}
.x53_c00355{left:371.550653pt;}
.x9_c00355{left:372.505453pt;}
.x2e_c00355{left:378.806253pt;}
.x1b_c00355{left:380.170253pt;}
.x4a_c00355{left:381.635453pt;}
.xa_c00355{left:391.139453pt;}
.x25_c00355{left:400.375053pt;}
.x61_c00355{left:401.761053pt;}
.x10_c00355{left:409.747053pt;}
.x56_c00355{left:410.992253pt;}
.x73_c00355{left:411.942653pt;}
.x3d_c00355{left:420.500653pt;}
.x26_c00355{left:429.269853pt;}
.x57_c00355{left:430.334653pt;}
.x2f_c00355{left:438.716653pt;}
.x11_c00355{left:440.093853pt;}
.x46_c00355{left:449.162253pt;}
.x3e_c00355{left:450.561453pt;}
.x58_c00355{left:451.881453pt;}
.x42_c00355{left:460.215053pt;}
.x30_c00355{left:468.504653pt;}
.x4b_c00355{left:469.419853pt;}
.x27_c00355{left:479.755453pt;}
.x74_c00355{left:480.692653pt;}
.x1c_c00355{left:488.929453pt;}
.x7d_c00355{left:490.099853pt;}
.x36_c00355{left:498.165053pt;}
.x47_c00355{left:499.696253pt;}
.x31_c00355{left:508.245453pt;}
.x38_c00355{left:517.476653pt;}
.x12_c00355{left:518.409453pt;}
.x59_c00355{left:519.672253pt;}
.x28_c00355{left:527.913453pt;}
.x3f_c00355{left:528.837453pt;}
.x62_c00355{left:538.966253pt;}
.x1d_c00355{left:548.144653pt;}
.x1e_c00355{left:558.321853pt;}
.x29_c00355{left:567.526653pt;}
.x37_c00355{left:568.595853pt;}
.x13_c00355{left:577.893053pt;}
.x2a_c00355{left:586.671053pt;}
.x1f_c00355{left:587.766653pt;}
.x39_c00355{left:589.975453pt;}
.x2_c00355{left:596.923053pt;}
.x67_c00355{left:598.128653pt;}
.x14_c00355{left:606.581053pt;}
.x48_c00355{left:607.597453pt;}
.x5a_c00355{left:616.159853pt;}
.x54_c00355{left:617.246653pt;}
.x51_c00355{left:622.139453pt;}
.x6a_c00355{left:626.037853pt;}
.x63_c00355{left:627.085053pt;}
.x3a_c00355{left:628.163053pt;}
.x64_c00355{left:637.803453pt;}
.x55_c00355{left:645.587053pt;}
.x3b_c00355{left:647.113853pt;}
.x40_c00355{left:656.793853pt;}
.x52_c00355{left:659.719853pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_446e76df5849df18dabf4aa8.woff2')format("woff");}.ff1_c00356{font-family:ff1_c00356;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00356;src:url('chunks/assets/font_fce6749734d1b2e7e39c773c.woff2')format("woff");}.ff2_c00356{font-family:ff2_c00356;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00356;src:url('chunks/assets/font_3ec4c01c7bb7b17061932011.woff2')format("woff");}.ff3_c00356{font-family:ff3_c00356;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00356;src:url('chunks/assets/font_d0b66ecf3404d2c00a3e863e.woff2')format("woff");}.ff4_c00356{font-family:ff4_c00356;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00356;src:url('chunks/assets/font_365a3b42a0b55551a3c4426b.woff2')format("woff");}.ff5_c00356{font-family:ff5_c00356;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00356;src:url('chunks/assets/font_fff86afe42cb18423538ef19.woff2')format("woff");}.ff6_c00356{font-family:ff6_c00356;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00356;src:url('chunks/assets/font_b0390acd7cfd719466833077.woff2')format("woff");}.ff7_c00356{font-family:ff7_c00356;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mc3_c00356{transform:matrix(0.038195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.038195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.038195,0.000000,0.000000,0.250000,0,0);}
.m5f_c00356{transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00356{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);}
.m9b_c00356{transform:matrix(0.095589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095589,0.000000,0.000000,0.250000,0,0);}
.md5_c00356{transform:matrix(0.101259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101259,0.000000,0.000000,0.250000,0,0);}
.m89_c00356{transform:matrix(0.114318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114318,0.000000,0.000000,0.250000,0,0);}
.ma4_c00356{transform:matrix(0.117851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117851,0.000000,0.000000,0.250000,0,0);}
.me2_c00356{transform:matrix(0.120834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120834,0.000000,0.000000,0.250000,0,0);}
.m98_c00356{transform:matrix(0.123443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123443,0.000000,0.000000,0.250000,0,0);}
.m35_c00356{transform:matrix(0.128135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128135,0.000000,0.000000,0.250000,0,0);}
.m2b_c00356{transform:matrix(0.128373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128373,0.000000,0.000000,0.250000,0,0);}
.m9a_c00356{transform:matrix(0.136034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136034,0.000000,0.000000,0.250000,0,0);}
.mad_c00356{transform:matrix(0.141073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141073,0.000000,0.000000,0.250000,0,0);}
.m3e_c00356{transform:matrix(0.152553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152553,0.000000,0.000000,0.250000,0,0);}
.m8b_c00356{transform:matrix(0.158537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158537,0.000000,0.000000,0.250000,0,0);}
.m7f_c00356{transform:matrix(0.158906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158906,0.000000,0.000000,0.250000,0,0);}
.m77_c00356{transform:matrix(0.158967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158967,0.000000,0.000000,0.250000,0,0);}
.md7_c00356{transform:matrix(0.164014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164014,0.000000,0.000000,0.250000,0,0);}
.ma6_c00356{transform:matrix(0.164023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164023,0.000000,0.000000,0.250000,0,0);}
.m5d_c00356{transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);}
.m5b_c00356{transform:matrix(0.174999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174999,0.000000,0.000000,0.250000,0,0);}
.ma8_c00356{transform:matrix(0.178043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178043,0.000000,0.000000,0.250000,0,0);}
.m5e_c00356{transform:matrix(0.178125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178125,0.000000,0.000000,0.250000,0,0);}
.mc1_c00356{transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);}
.mdf_c00356{transform:matrix(0.180575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180575,0.000000,0.000000,0.250000,0,0);}
.m60_c00356{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m68_c00356{transform:matrix(0.181871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181871,0.000000,0.000000,0.250000,0,0);}
.m9e_c00356{transform:matrix(0.183136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183136,0.000000,0.000000,0.250000,0,0);}
.m5c_c00356{transform:matrix(0.187499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187499,0.000000,0.000000,0.250000,0,0);}
.mc4_c00356{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00356{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m84_c00356{transform:matrix(0.195022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195022,0.000000,0.000000,0.250000,0,0);}
.mc7_c00356{transform:matrix(0.200198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200198,0.000000,0.000000,0.250000,0,0);}
.m69_c00356{transform:matrix(0.202068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202068,0.000000,0.000000,0.250000,0,0);}
.m75_c00356{transform:matrix(0.204717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204717,0.000000,0.000000,0.250000,0,0);}
.m38_c00356{transform:matrix(0.209374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209374,0.000000,0.000000,0.250000,0,0);}
.m30_c00356{transform:matrix(0.210648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210648,0.000000,0.000000,0.250000,0,0);}
.m96_c00356{transform:matrix(0.229732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229732,0.000000,0.000000,0.250000,0,0);}
.m90_c00356{transform:matrix(0.230830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230830,0.000000,0.000000,0.250000,0,0);}
.m34_c00356{transform:matrix(0.232737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232737,0.000000,0.000000,0.250000,0,0);}
.m16_c00356{transform:matrix(0.233089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233089,0.000000,0.000000,0.250000,0,0);}
.ma5_c00356{transform:matrix(0.234040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234040,0.000000,0.000000,0.250000,0,0);}
.m2_c00356{transform:matrix(0.236157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236157,0.000000,0.000000,0.250000,0,0);}
.m57_c00356{transform:matrix(0.239706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239706,0.000000,0.000000,0.250000,0,0);}
.m3c_c00356{transform:matrix(0.241635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241635,0.000000,0.000000,0.250000,0,0);}
.m8a_c00356{transform:matrix(0.242094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242094,0.000000,0.000000,0.250000,0,0);}
.md3_c00356{transform:matrix(0.245950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245950,0.000000,0.000000,0.250000,0,0);}
.m0_c00356{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00356{transform:matrix(0.253841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253841,0.000000,0.000000,0.250000,0,0);}
.mcf_c00356{transform:matrix(0.254851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254851,0.000000,0.000000,0.250000,0,0);}
.m9c_c00356{transform:matrix(0.255515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255515,0.000000,0.000000,0.250000,0,0);}
.m48_c00356{transform:matrix(0.257552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257552,0.000000,0.000000,0.250000,0,0);}
.m2d_c00356{transform:matrix(0.259258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259258,0.000000,0.000000,0.250000,0,0);}
.m2e_c00356{transform:matrix(0.259259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259259,0.000000,0.000000,0.250000,0,0);}
.me1_c00356{transform:matrix(0.264466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264466,0.000000,0.000000,0.250000,0,0);}
.m87_c00356{transform:matrix(0.264847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264847,0.000000,0.000000,0.250000,0,0);}
.m49_c00356{transform:matrix(0.265474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265474,0.000000,0.000000,0.250000,0,0);}
.m7e_c00356{transform:matrix(0.265647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265647,0.000000,0.000000,0.250000,0,0);}
.m10_c00356{transform:matrix(0.266888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266888,0.000000,0.000000,0.250000,0,0);}
.mb_c00356{transform:matrix(0.267109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267109,0.000000,0.000000,0.250000,0,0);}
.mb2_c00356{transform:matrix(0.267376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267376,0.000000,0.000000,0.250000,0,0);}
.m2c_c00356{transform:matrix(0.268518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268518,0.000000,0.000000,0.250000,0,0);}
.m8e_c00356{transform:matrix(0.269002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269002,0.000000,0.000000,0.250000,0,0);}
.m1_c00356{transform:matrix(0.270382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270382,0.000000,0.000000,0.250000,0,0);}
.m19_c00356{transform:matrix(0.271681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271681,0.000000,0.000000,0.250000,0,0);}
.m25_c00356{transform:matrix(0.273806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273806,0.000000,0.000000,0.250000,0,0);}
.mb4_c00356{transform:matrix(0.273891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273891,0.000000,0.000000,0.250000,0,0);}
.m6a_c00356{transform:matrix(0.274021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274021,0.000000,0.000000,0.250000,0,0);}
.m76_c00356{transform:matrix(0.275126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275126,0.000000,0.000000,0.250000,0,0);}
.m94_c00356{transform:matrix(0.275586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275586,0.000000,0.000000,0.250000,0,0);}
.mca_c00356{transform:matrix(0.276448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276448,0.000000,0.000000,0.250000,0,0);}
.md4_c00356{transform:matrix(0.277454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277454,0.000000,0.000000,0.250000,0,0);}
.m8_c00356{transform:matrix(0.278969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278969,0.000000,0.000000,0.250000,0,0);}
.m6b_c00356{transform:matrix(0.280136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280136,0.000000,0.000000,0.250000,0,0);}
.m32_c00356{transform:matrix(0.281051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281051,0.000000,0.000000,0.250000,0,0);}
.m64_c00356{transform:matrix(0.281359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281359,0.000000,0.000000,0.250000,0,0);}
.ma7_c00356{transform:matrix(0.283236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283236,0.000000,0.000000,0.250000,0,0);}
.m72_c00356{transform:matrix(0.283758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283758,0.000000,0.000000,0.250000,0,0);}
.m5_c00356{transform:matrix(0.286142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286142,0.000000,0.000000,0.250000,0,0);}
.me_c00356{transform:matrix(0.286350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286350,0.000000,0.000000,0.250000,0,0);}
.mcd_c00356{transform:matrix(0.286518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286518,0.000000,0.000000,0.250000,0,0);}
.maf_c00356{transform:matrix(0.286742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286742,0.000000,0.000000,0.250000,0,0);}
.m37_c00356{transform:matrix(0.288529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288529,0.000000,0.000000,0.250000,0,0);}
.m21_c00356{transform:matrix(0.288660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288660,0.000000,0.000000,0.250000,0,0);}
.m9_c00356{transform:matrix(0.289304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289304,0.000000,0.000000,0.250000,0,0);}
.ma3_c00356{transform:matrix(0.289551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289551,0.000000,0.000000,0.250000,0,0);}
.m12_c00356{transform:matrix(0.289976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289976,0.000000,0.000000,0.250000,0,0);}
.mbd_c00356{transform:matrix(0.290528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290528,0.000000,0.000000,0.250000,0,0);}
.m17_c00356{transform:matrix(0.291252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291252,0.000000,0.000000,0.250000,0,0);}
.mb7_c00356{transform:matrix(0.293830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293830,0.000000,0.000000,0.250000,0,0);}
.m82_c00356{transform:matrix(0.294614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294614,0.000000,0.000000,0.250000,0,0);}
.mc_c00356{transform:matrix(0.294645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294645,0.000000,0.000000,0.250000,0,0);}
.m9d_c00356{transform:matrix(0.294991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294991,0.000000,0.000000,0.250000,0,0);}
.m1d_c00356{transform:matrix(0.295221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295221,0.000000,0.000000,0.250000,0,0);}
.m53_c00356{transform:matrix(0.296362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296362,0.000000,0.000000,0.250000,0,0);}
.m33_c00356{transform:matrix(0.296420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296420,0.000000,0.000000,0.250000,0,0);}
.m56_c00356{transform:matrix(0.296772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296772,0.000000,0.000000,0.250000,0,0);}
.m55_c00356{transform:matrix(0.297057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297057,0.000000,0.000000,0.250000,0,0);}
.m14_c00356{transform:matrix(0.297391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297391,0.000000,0.000000,0.250000,0,0);}
.m81_c00356{transform:matrix(0.297857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297857,0.000000,0.000000,0.250000,0,0);}
.m6c_c00356{transform:matrix(0.298920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298920,0.000000,0.000000,0.250000,0,0);}
.mb6_c00356{transform:matrix(0.298927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298927,0.000000,0.000000,0.250000,0,0);}
.mdb_c00356{transform:matrix(0.299094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299094,0.000000,0.000000,0.250000,0,0);}
.m41_c00356{transform:matrix(0.299135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299135,0.000000,0.000000,0.250000,0,0);}
.m6_c00356{transform:matrix(0.301657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301657,0.000000,0.000000,0.250000,0,0);}
.m63_c00356{transform:matrix(0.301848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301848,0.000000,0.000000,0.250000,0,0);}
.m91_c00356{transform:matrix(0.302021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302021,0.000000,0.000000,0.250000,0,0);}
.mb3_c00356{transform:matrix(0.302573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302573,0.000000,0.000000,0.250000,0,0);}
.mc5_c00356{transform:matrix(0.303120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303120,0.000000,0.000000,0.250000,0,0);}
.m45_c00356{transform:matrix(0.303150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303150,0.000000,0.000000,0.250000,0,0);}
.m61_c00356{transform:matrix(0.303432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303432,0.000000,0.000000,0.250000,0,0);}
.m2a_c00356{transform:matrix(0.303987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303987,0.000000,0.000000,0.250000,0,0);}
.m6f_c00356{transform:matrix(0.304237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304237,0.000000,0.000000,0.250000,0,0);}
.m99_c00356{transform:matrix(0.304930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304930,0.000000,0.000000,0.250000,0,0);}
.m44_c00356{transform:matrix(0.305712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305712,0.000000,0.000000,0.250000,0,0);}
.m29_c00356{transform:matrix(0.305967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305967,0.000000,0.000000,0.250000,0,0);}
.m92_c00356{transform:matrix(0.306583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306583,0.000000,0.000000,0.250000,0,0);}
.m4a_c00356{transform:matrix(0.306640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306640,0.000000,0.000000,0.250000,0,0);}
.mdc_c00356{transform:matrix(0.306801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306801,0.000000,0.000000,0.250000,0,0);}
.m23_c00356{transform:matrix(0.307403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307403,0.000000,0.000000,0.250000,0,0);}
.mb9_c00356{transform:matrix(0.307626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307626,0.000000,0.000000,0.250000,0,0);}
.ma0_c00356{transform:matrix(0.308142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308142,0.000000,0.000000,0.250000,0,0);}
.m4d_c00356{transform:matrix(0.309053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309053,0.000000,0.000000,0.250000,0,0);}
.mbc_c00356{transform:matrix(0.309493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309493,0.000000,0.000000,0.250000,0,0);}
.mda_c00356{transform:matrix(0.309792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309792,0.000000,0.000000,0.250000,0,0);}
.m54_c00356{transform:matrix(0.310306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310306,0.000000,0.000000,0.250000,0,0);}
.m95_c00356{transform:matrix(0.310763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310763,0.000000,0.000000,0.250000,0,0);}
.m3a_c00356{transform:matrix(0.311432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311432,0.000000,0.000000,0.250000,0,0);}
.m47_c00356{transform:matrix(0.312086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312086,0.000000,0.000000,0.250000,0,0);}
.m73_c00356{transform:matrix(0.312557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312557,0.000000,0.000000,0.250000,0,0);}
.m78_c00356{transform:matrix(0.313202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313202,0.000000,0.000000,0.250000,0,0);}
.m7d_c00356{transform:matrix(0.313645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313645,0.000000,0.000000,0.250000,0,0);}
.md6_c00356{transform:matrix(0.314050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314050,0.000000,0.000000,0.250000,0,0);}
.m86_c00356{transform:matrix(0.314246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314246,0.000000,0.000000,0.250000,0,0);}
.mb1_c00356{transform:matrix(0.314247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314247,0.000000,0.000000,0.250000,0,0);}
.m74_c00356{transform:matrix(0.315086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315086,0.000000,0.000000,0.250000,0,0);}
.m52_c00356{transform:matrix(0.315750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315750,0.000000,0.000000,0.250000,0,0);}
.me5_c00356{transform:matrix(0.316066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316066,0.000000,0.000000,0.250000,0,0);}
.mdd_c00356{transform:matrix(0.316202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316202,0.000000,0.000000,0.250000,0,0);}
.mc6_c00356{transform:matrix(0.318181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318181,0.000000,0.000000,0.250000,0,0);}
.m50_c00356{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);}
.mab_c00356{transform:matrix(0.320251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320251,0.000000,0.000000,0.250000,0,0);}
.mb8_c00356{transform:matrix(0.320862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320862,0.000000,0.000000,0.250000,0,0);}
.m59_c00356{transform:matrix(0.320996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320996,0.000000,0.000000,0.250000,0,0);}
.m7b_c00356{transform:matrix(0.322084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322084,0.000000,0.000000,0.250000,0,0);}
.m88_c00356{transform:matrix(0.322559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322559,0.000000,0.000000,0.250000,0,0);}
.m46_c00356{transform:matrix(0.322774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322774,0.000000,0.000000,0.250000,0,0);}
.ma_c00356{transform:matrix(0.322911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322911,0.000000,0.000000,0.250000,0,0);}
.mbf_c00356{transform:matrix(0.324384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324384,0.000000,0.000000,0.250000,0,0);}
.m3b_c00356{transform:matrix(0.325696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325696,0.000000,0.000000,0.250000,0,0);}
.m1c_c00356{transform:matrix(0.326238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326238,0.000000,0.000000,0.250000,0,0);}
.m2f_c00356{transform:matrix(0.327299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327299,0.000000,0.000000,0.250000,0,0);}
.m15_c00356{transform:matrix(0.327580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327580,0.000000,0.000000,0.250000,0,0);}
.m6d_c00356{transform:matrix(0.327728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327728,0.000000,0.000000,0.250000,0,0);}
.mcb_c00356{transform:matrix(0.328170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328170,0.000000,0.000000,0.250000,0,0);}
.m4e_c00356{transform:matrix(0.328642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328642,0.000000,0.000000,0.250000,0,0);}
.m1a_c00356{transform:matrix(0.328647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328647,0.000000,0.000000,0.250000,0,0);}
.m7a_c00356{transform:matrix(0.328846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328846,0.000000,0.000000,0.250000,0,0);}
.mb5_c00356{transform:matrix(0.330299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330299,0.000000,0.000000,0.250000,0,0);}
.mbe_c00356{transform:matrix(0.330596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330596,0.000000,0.000000,0.250000,0,0);}
.m9f_c00356{transform:matrix(0.331470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331470,0.000000,0.000000,0.250000,0,0);}
.maa_c00356{transform:matrix(0.332242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332242,0.000000,0.000000,0.250000,0,0);}
.md8_c00356{transform:matrix(0.332305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332305,0.000000,0.000000,0.250000,0,0);}
.me0_c00356{transform:matrix(0.332523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332523,0.000000,0.000000,0.250000,0,0);}
.md2_c00356{transform:matrix(0.334844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334844,0.000000,0.000000,0.250000,0,0);}
.me3_c00356{transform:matrix(0.334853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334853,0.000000,0.000000,0.250000,0,0);}
.m40_c00356{transform:matrix(0.336344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336344,0.000000,0.000000,0.250000,0,0);}
.m58_c00356{transform:matrix(0.336666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336666,0.000000,0.000000,0.250000,0,0);}
.m3d_c00356{transform:matrix(0.337329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337329,0.000000,0.000000,0.250000,0,0);}
.m67_c00356{transform:matrix(0.337552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337552,0.000000,0.000000,0.250000,0,0);}
.m22_c00356{transform:matrix(0.338064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338064,0.000000,0.000000,0.250000,0,0);}
.mc9_c00356{transform:matrix(0.338071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338071,0.000000,0.000000,0.250000,0,0);}
.ma1_c00356{transform:matrix(0.340060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340060,0.000000,0.000000,0.250000,0,0);}
.md_c00356{transform:matrix(0.340666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340666,0.000000,0.000000,0.250000,0,0);}
.mc8_c00356{transform:matrix(0.341332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341332,0.000000,0.000000,0.250000,0,0);}
.m66_c00356{transform:matrix(0.341434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341434,0.000000,0.000000,0.250000,0,0);}
.md0_c00356{transform:matrix(0.342133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342133,0.000000,0.000000,0.250000,0,0);}
.m83_c00356{transform:matrix(0.342992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342992,0.000000,0.000000,0.250000,0,0);}
.m36_c00356{transform:matrix(0.343673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343673,0.000000,0.000000,0.250000,0,0);}
.mac_c00356{transform:matrix(0.344465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344465,0.000000,0.000000,0.250000,0,0);}
.m4b_c00356{transform:matrix(0.345714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345714,0.000000,0.000000,0.250000,0,0);}
.m7_c00356{transform:matrix(0.346556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346556,0.000000,0.000000,0.250000,0,0);}
.m6e_c00356{transform:matrix(0.346869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346869,0.000000,0.000000,0.250000,0,0);}
.m4c_c00356{transform:matrix(0.348103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348103,0.000000,0.000000,0.250000,0,0);}
.m65_c00356{transform:matrix(0.348629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348629,0.000000,0.000000,0.250000,0,0);}
.m4f_c00356{transform:matrix(0.348839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348839,0.000000,0.000000,0.250000,0,0);}
.m28_c00356{transform:matrix(0.349252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349252,0.000000,0.000000,0.250000,0,0);}
.m20_c00356{transform:matrix(0.352020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352020,0.000000,0.000000,0.250000,0,0);}
.mbb_c00356{transform:matrix(0.352037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352037,0.000000,0.000000,0.250000,0,0);}
.ma9_c00356{transform:matrix(0.352471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352471,0.000000,0.000000,0.250000,0,0);}
.m70_c00356{transform:matrix(0.353000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00356{transform:matrix(0.353493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353493,0.000000,0.000000,0.250000,0,0);}
.m3f_c00356{transform:matrix(0.353631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353631,0.000000,0.000000,0.250000,0,0);}
.m11_c00356{transform:matrix(0.355152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355152,0.000000,0.000000,0.250000,0,0);}
.m62_c00356{transform:matrix(0.355165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355165,0.000000,0.000000,0.250000,0,0);}
.m24_c00356{transform:matrix(0.355191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355191,0.000000,0.000000,0.250000,0,0);}
.m71_c00356{transform:matrix(0.355332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355332,0.000000,0.000000,0.250000,0,0);}
.me4_c00356{transform:matrix(0.356893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356893,0.000000,0.000000,0.250000,0,0);}
.m51_c00356{transform:matrix(0.357568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357568,0.000000,0.000000,0.250000,0,0);}
.m39_c00356{transform:matrix(0.358349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358349,0.000000,0.000000,0.250000,0,0);}
.m4_c00356{transform:matrix(0.358888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358888,0.000000,0.000000,0.250000,0,0);}
.mba_c00356{transform:matrix(0.360163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360163,0.000000,0.000000,0.250000,0,0);}
.m3_c00356{transform:matrix(0.361892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361892,0.000000,0.000000,0.250000,0,0);}
.ma2_c00356{transform:matrix(0.362342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362342,0.000000,0.000000,0.250000,0,0);}
.m8f_c00356{transform:matrix(0.365442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365442,0.000000,0.000000,0.250000,0,0);}
.m26_c00356{transform:matrix(0.365848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365848,0.000000,0.000000,0.250000,0,0);}
.mae_c00356{transform:matrix(0.365901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365901,0.000000,0.000000,0.250000,0,0);}
.mf_c00356{transform:matrix(0.366787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366787,0.000000,0.000000,0.250000,0,0);}
.mb0_c00356{transform:matrix(0.368594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368594,0.000000,0.000000,0.250000,0,0);}
.mce_c00356{transform:matrix(0.369677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369677,0.000000,0.000000,0.250000,0,0);}
.m43_c00356{transform:matrix(0.370543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370543,0.000000,0.000000,0.250000,0,0);}
.m27_c00356{transform:matrix(0.373337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373337,0.000000,0.000000,0.250000,0,0);}
.m42_c00356{transform:matrix(0.377619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377619,0.000000,0.000000,0.250000,0,0);}
.m80_c00356{transform:matrix(0.378869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378869,0.000000,0.000000,0.250000,0,0);}
.m79_c00356{transform:matrix(0.380065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380065,0.000000,0.000000,0.250000,0,0);}
.mcc_c00356{transform:matrix(0.380996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380996,0.000000,0.000000,0.250000,0,0);}
.m1b_c00356{transform:matrix(0.383196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383196,0.000000,0.000000,0.250000,0,0);}
.mc0_c00356{transform:matrix(0.390420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390420,0.000000,0.000000,0.250000,0,0);}
.m97_c00356{transform:matrix(0.392927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392927,0.000000,0.000000,0.250000,0,0);}
.m1f_c00356{transform:matrix(0.392986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392986,0.000000,0.000000,0.250000,0,0);}
.md1_c00356{transform:matrix(0.400958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400958,0.000000,0.000000,0.250000,0,0);}
.m85_c00356{transform:matrix(0.407463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407463,0.000000,0.000000,0.250000,0,0);}
.m93_c00356{transform:matrix(0.411565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411565,0.000000,0.000000,0.250000,0,0);}
.md9_c00356{transform:matrix(0.430152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430152,0.000000,0.000000,0.250000,0,0);}
.m18_c00356{transform:matrix(0.431385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431385,0.000000,0.000000,0.250000,0,0);}
.mde_c00356{transform:matrix(0.444080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444080,0.000000,0.000000,0.250000,0,0);}
.m1e_c00356{transform:matrix(0.451072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451072,0.000000,0.000000,0.250000,0,0);}
.m13_c00356{transform:matrix(0.487527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487527,0.000000,0.000000,0.250000,0,0);}
.m8c_c00356{transform:matrix(0.518687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518687,0.000000,0.000000,0.250000,0,0);}
.m31_c00356{transform:matrix(0.557609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557609,0.000000,0.000000,0.250000,0,0);}
.v2_c00356{vertical-align:-4.296600px;}
.v1_c00356{vertical-align:-1.445400px;}
.v0_c00356{vertical-align:0.000000px;}
.ls7_c00356{letter-spacing:-3.007627px;}
.ls1c_c00356{letter-spacing:-2.494800px;}
.lsa_c00356{letter-spacing:-2.480940px;}
.ls15_c00356{letter-spacing:-2.438410px;}
.ls11_c00356{letter-spacing:-2.245327px;}
.ls19_c00356{letter-spacing:-2.231467px;}
.ls1f_c00356{letter-spacing:-2.112343px;}
.ls16_c00356{letter-spacing:-2.041459px;}
.ls24_c00356{letter-spacing:-1.746367px;}
.ls22_c00356{letter-spacing:-1.644509px;}
.ls13_c00356{letter-spacing:-1.623244px;}
.ls10_c00356{letter-spacing:-1.178100px;}
.ls18_c00356{letter-spacing:-1.049083px;}
.lsb_c00356{letter-spacing:-0.765547px;}
.ls20_c00356{letter-spacing:-0.113414px;}
.ls5_c00356{letter-spacing:0.000000px;}
.ls23_c00356{letter-spacing:0.311890px;}
.ls4_c00356{letter-spacing:0.623779px;}
.ls1a_c00356{letter-spacing:1.257300px;}
.ls1_c00356{letter-spacing:1.346796px;}
.lse_c00356{letter-spacing:1.405800px;}
.ls25_c00356{letter-spacing:1.643400px;}
.lsf_c00356{letter-spacing:1.722600px;}
.ls17_c00356{letter-spacing:1.791900px;}
.ls1d_c00356{letter-spacing:1.821719px;}
.ls1e_c00356{letter-spacing:1.892603px;}
.ls9_c00356{letter-spacing:2.544310px;}
.ls14_c00356{letter-spacing:2.613600px;}
.ls3_c00356{letter-spacing:2.736122px;}
.lsd_c00356{letter-spacing:2.970000px;}
.ls8_c00356{letter-spacing:3.544200px;}
.ls26_c00356{letter-spacing:3.979810px;}
.ls6_c00356{letter-spacing:4.296610px;}
.ls2_c00356{letter-spacing:24.313212px;}
.lsc_c00356{letter-spacing:38.491398px;}
.ls1b_c00356{letter-spacing:48.470598px;}
.ls21_c00356{letter-spacing:51.321798px;}
.ls12_c00356{letter-spacing:57.024198px;}
.ls0_c00356{letter-spacing:58.449798px;}
.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;}
}
.wsb_c00356{word-spacing:-107.898313px;}
.ws10_c00356{word-spacing:-20.457122px;}
.ws7_c00356{word-spacing:-17.721000px;}
.ws9_c00356{word-spacing:-16.097756px;}
.wsf_c00356{word-spacing:-16.076491px;}
.wse_c00356{word-spacing:-15.608657px;}
.wsa_c00356{word-spacing:-15.282590px;}
.ws0_c00356{word-spacing:-2.126520px;}
.ws1_c00356{word-spacing:-1.275912px;}
.ws8_c00356{word-spacing:-1.063260px;}
.ws12_c00356{word-spacing:0.000000px;}
.wsc_c00356{word-spacing:0.496188px;}
.ws6_c00356{word-spacing:2.905848px;}
.ws11_c00356{word-spacing:2.906244px;}
.wsd_c00356{word-spacing:3.402432px;}
.ws3_c00356{word-spacing:3.756852px;}
.ws2_c00356{word-spacing:6.521328px;}
.ws4_c00356{word-spacing:7.797240px;}
.ws5_c00356{word-spacing:7.939008px;}
._1f_c00356{margin-left:-14.598144px;}
._19_c00356{margin-left:-11.362428px;}
._14_c00356{margin-left:-8.124019px;}
._e_c00356{margin-left:-5.741604px;}
._20_c00356{margin-left:-2.163269px;}
._12_c00356{width:2.082881px;}
._9_c00356{width:3.685968px;}
._1c_c00356{width:4.706856px;}
._11_c00356{width:5.812488px;}
._7_c00356{width:7.939008px;}
._0_c00356{width:9.994644px;}
._1b_c00356{width:11.163240px;}
._6_c00356{width:12.262932px;}
._15_c00356{width:13.538844px;}
._a_c00356{width:14.602104px;}
._17_c00356{width:15.948900px;}
._1_c00356{width:20.698128px;}
._4_c00356{width:22.895532px;}
._10_c00356{width:24.667632px;}
._5_c00356{width:25.730892px;}
._d_c00356{width:28.567044px;}
._18_c00356{width:32.202324px;}
._f_c00356{width:35.815943px;}
._c_c00356{width:36.832356px;}
._1a_c00356{width:38.129256px;}
._3_c00356{width:39.340620px;}
._16_c00356{width:40.614156px;}
._1d_c00356{width:42.111432px;}
._b_c00356{width:46.429020px;}
._8_c00356{width:47.946888px;}
._1e_c00356{width:53.801352px;}
._2_c00356{width:55.001628px;}
._13_c00356{width:92.740032px;}
.fc0_c00356{color:transparent;}
.fs11_c00356{font-size:25.146000px;}
.fs1b_c00356{font-size:27.918000px;}
.fs6_c00356{font-size:28.116000px;}
.fs18_c00356{font-size:32.868000px;}
.fs0_c00356{font-size:33.264000px;}
.fs8_c00356{font-size:33.660000px;}
.fs7_c00356{font-size:34.452000px;}
.fse_c00356{font-size:35.838000px;}
.fs5_c00356{font-size:38.491398px;}
.fsb_c00356{font-size:39.600000px;}
.fs13_c00356{font-size:48.470598px;}
.fs17_c00356{font-size:49.896198px;}
.fs3_c00356{font-size:50.886198px;}
.fs16_c00356{font-size:51.321798px;}
.fs15_c00356{font-size:51.480000px;}
.fsc_c00356{font-size:52.272000px;}
.fs1a_c00356{font-size:57.024000px;}
.fsa_c00356{font-size:57.024198px;}
.fs10_c00356{font-size:58.449798px;}
.fs4_c00356{font-size:59.400000px;}
.fsf_c00356{font-size:63.756198px;}
.fs9_c00356{font-size:64.152198px;}
.fsd_c00356{font-size:66.528000px;}
.fs2_c00356{font-size:70.884000px;}
.fs14_c00356{font-size:71.280000px;}
.fs12_c00356{font-size:72.864000px;}
.fs19_c00356{font-size:79.596198px;}
.fs1_c00356{font-size:85.932198px;}
.y0_c00356{bottom:0.000000px;}
.y1_c00356{bottom:76.500000px;}
.y25_c00356{bottom:160.648335px;}
.y24_c00356{bottom:167.419935px;}
.y23_c00356{bottom:168.132735px;}
.y21_c00356{bottom:203.772735px;}
.y22_c00356{bottom:209.113785px;}
.y20_c00356{bottom:236.200185px;}
.y1f_c00356{bottom:268.637535px;}
.y1e_c00356{bottom:301.421385px;}
.y1d_c00356{bottom:333.145935px;}
.y1c_c00356{bottom:365.934735px;}
.y1b_c00356{bottom:399.079935px;}
.y1a_c00356{bottom:432.220185px;}
.y17_c00356{bottom:432.932985px;}
.y19_c00356{bottom:433.294335px;}
.y18_c00356{bottom:440.778735px;}
.y16_c00356{bottom:497.441385px;}
.y15_c00356{bottom:506.351385px;}
.y14_c00356{bottom:532.373535px;}
.y13_c00356{bottom:564.800985px;}
.y12_c00356{bottom:579.769785px;}
.y11_c00356{bottom:597.233385px;}
.y10_c00356{bottom:629.314335px;}
.yf_c00356{bottom:661.746735px;}
.ye_c00356{bottom:693.817785px;}
.yd_c00356{bottom:726.606585px;}
.yc_c00356{bottom:790.763535px;}
.yb_c00356{bottom:815.706585px;}
.y9_c00356{bottom:823.552335px;}
.y8_c00356{bottom:823.908735px;}
.ya_c00356{bottom:826.403535px;}
.y7_c00356{bottom:831.036735px;}
.y6_c00356{bottom:859.548735px;}
.y2_c00356{bottom:884.496735px;}
.y5_c00356{bottom:891.619785px;}
.y4_c00356{bottom:925.834185px;}
.y3_c00356{bottom:1077.304185px;}
.h6_c00356{height:25.635271px;}
.h14_c00356{height:26.226492px;}
.h8_c00356{height:27.580588px;}
.h9_c00356{height:28.335656px;}
.h1d_c00356{height:29.117602px;}
.h16_c00356{height:32.281418px;}
.h19_c00356{height:34.180317px;}
.h1b_c00356{height:34.280297px;}
.h2_c00356{height:34.693313px;}
.ha_c00356{height:34.721156px;}
.hb_c00356{height:35.106328px;}
.h11_c00356{height:37.377914px;}
.hd_c00356{height:37.978116px;}
.h13_c00356{height:38.927565px;}
.he_c00356{height:41.301563px;}
.h1a_c00356{height:48.970390px;}
.h5_c00356{height:49.942020px;}
.h18_c00356{height:50.524805px;}
.hf_c00356{height:51.276586px;}
.h7_c00356{height:58.297852px;}
.h12_c00356{height:62.573222px;}
.hc_c00356{height:62.961874px;}
.h10_c00356{height:69.386625px;}
.h4_c00356{height:69.568770px;}
.h17_c00356{height:69.957422px;}
.h15_c00356{height:71.476453px;}
.h1c_c00356{height:78.119315px;}
.h3_c00356{height:84.337753px;}
.h1_c00356{height:1110.000000px;}
.h0_c00356{height:1263.000000px;}
.w1_c00356{width:775.500000px;}
.w0_c00356{width:892.500000px;}
.x0_c00356{left:0.000000px;}
.x1_c00356{left:58.500000px;}
.x2_c00356{left:75.058485px;}
.x59_c00356{left:87.997785px;}
.x16_c00356{left:93.289335px;}
.x5_c00356{left:94.863435px;}
.x6b_c00356{left:97.090935px;}
.x72_c00356{left:105.971235px;}
.x62_c00356{left:108.238335px;}
.x37_c00356{left:114.351585px;}
.x5d_c00356{left:116.019735px;}
.x17_c00356{left:117.578985px;}
.x4d_c00356{left:125.399985px;}
.x6_c00356{left:126.998835px;}
.x18_c00356{left:137.086935px;}
.x3c_c00356{left:147.580935px;}
.x7a_c00356{left:148.763985px;}
.x38_c00356{left:158.604585px;}
.x6c_c00356{left:160.153935px;}
.x19_c00356{left:168.761985px;}
.x39_c00356{left:169.954935px;}
.x63_c00356{left:172.771485px;}
.x4b_c00356{left:179.607435px;}
.x64_c00356{left:181.914135px;}
.x4e_c00356{left:191.932935px;}
.x81_c00356{left:197.392785px;}
.x7_c00356{left:203.293185px;}
.x82_c00356{left:204.367335px;}
.x1a_c00356{left:214.693035px;}
.x8_c00356{left:225.251385px;}
.x7b_c00356{left:226.657185px;}
.x65_c00356{left:228.087735px;}
.x83_c00356{left:233.389185px;}
.x4f_c00356{left:235.527585px;}
.x53_c00356{left:236.586885px;}
.x73_c00356{left:238.472835px;}
.x6d_c00356{left:245.803785px;}
.x28_c00356{left:247.838235px;}
.x7c_c00356{left:252.679335px;}
.x74_c00356{left:256.159185px;}
.x50_c00356{left:257.302635px;}
.x9_c00356{left:259.886535px;}
.x5e_c00356{left:269.801385px;}
.x3a_c00356{left:270.925035px;}
.x68_c00356{left:280.617135px;}
.x6e_c00356{left:282.443685px;}
.x75_c00356{left:285.982935px;}
.x3d_c00356{left:291.705135px;}
.x3b_c00356{left:294.086085px;}
.x45_c00356{left:302.966385px;}
.x54_c00356{left:304.159335px;}
.xa_c00356{left:313.920735px;}
.x29_c00356{left:324.459285px;}
.x1b_c00356{left:325.478985px;}
.x78_c00356{left:335.319585px;}
.x5f_c00356{left:336.596685px;}
.xb_c00356{left:337.626285px;}
.x46_c00356{left:346.001685px;}
.x31_c00356{left:347.140185px;}
.x1c_c00356{left:358.936035px;}
.x2a_c00356{left:369.484485px;}
.xc_c00356{left:370.806135px;}
.x66_c00356{left:372.969285px;}
.x1d_c00356{left:380.993235px;}
.x2b_c00356{left:392.195085px;}
.x69_c00356{left:395.090835px;}
.x2c_c00356{left:402.639585px;}
.xd_c00356{left:405.030435px;}
.x3e_c00356{left:414.648285px;}
.x5a_c00356{left:424.667085px;}
.xe_c00356{left:425.691735px;}
.x6f_c00356{left:429.453735px;}
.xf_c00356{left:435.695685px;}
.x67_c00356{left:439.328985px;}
.x47_c00356{left:447.293535px;}
.x51_c00356{left:449.763585px;}
.x84_c00356{left:456.094635px;}
.x52_c00356{left:457.247985px;}
.x3f_c00356{left:458.435985px;}
.x5b_c00356{left:464.356185px;}
.x10_c00356{left:468.811185px;}
.x55_c00356{left:470.202135px;}
.x77_c00356{left:471.598035px;}
.x32_c00356{left:478.983435px;}
.x1e_c00356{left:481.201035px;}
.x7f_c00356{left:482.443485px;}
.x56_c00356{left:491.036685px;}
.x11_c00356{left:502.114785px;}
.x60_c00356{left:503.669085px;}
.x33_c00356{left:513.093885px;}
.x1f_c00356{left:514.395735px;}
.x30_c00356{left:516.638085px;}
.x40_c00356{left:523.102785px;}
.x34_c00356{left:524.558085px;}
.x41_c00356{left:530.156535px;}
.x5c_c00356{left:534.225435px;}
.x20_c00356{left:535.319385px;}
.x48_c00356{left:544.877835px;}
.x7d_c00356{left:546.135135px;}
.x21_c00356{left:547.159785px;}
.x42_c00356{left:557.242935px;}
.x61_c00356{left:568.241835px;}
.x57_c00356{left:569.281335px;}
.x70_c00356{left:571.988985px;}
.x71_c00356{left:573.736335px;}
.x22_c00356{left:579.032835px;}
.x49_c00356{left:588.715035px;}
.x4c_c00356{left:589.977285px;}
.x2d_c00356{left:601.377135px;}
.x23_c00356{left:612.608685px;}
.x36_c00356{left:614.365935px;}
.x12_c00356{left:623.830335px;}
.x24_c00356{left:634.532235px;}
.x43_c00356{left:645.630135px;}
.x79_c00356{left:653.619435px;}
.x4a_c00356{left:655.401435px;}
.x13_c00356{left:657.158685px;}
.x25_c00356{left:666.449835px;}
.x3_c00356{left:668.311035px;}
.x14_c00356{left:669.439635px;}
.x2e_c00356{left:678.691185px;}
.x58_c00356{left:680.923635px;}
.x6a_c00356{left:688.903035px;}
.x44_c00356{left:690.066285px;}
.x4_c00356{left:691.828485px;}
.x7e_c00356{left:699.857385px;}
.x2f_c00356{left:701.159235px;}
.x76_c00356{left:711.321585px;}
.x26_c00356{left:712.638285px;}
.x15_c00356{left:722.909535px;}
.x80_c00356{left:723.998535px;}
.x35_c00356{left:734.170785px;}
.x27_c00356{left:745.422135px;}
@media print{
.v2_c00356{vertical-align:-3.819200pt;}
.v1_c00356{vertical-align:-1.284800pt;}
.v0_c00356{vertical-align:0.000000pt;}
.ls7_c00356{letter-spacing:-2.673446pt;}
.ls1c_c00356{letter-spacing:-2.217600pt;}
.lsa_c00356{letter-spacing:-2.205280pt;}
.ls15_c00356{letter-spacing:-2.167475pt;}
.ls11_c00356{letter-spacing:-1.995846pt;}
.ls19_c00356{letter-spacing:-1.983526pt;}
.ls1f_c00356{letter-spacing:-1.877638pt;}
.ls16_c00356{letter-spacing:-1.814630pt;}
.ls24_c00356{letter-spacing:-1.552326pt;}
.ls22_c00356{letter-spacing:-1.461786pt;}
.ls13_c00356{letter-spacing:-1.442883pt;}
.ls10_c00356{letter-spacing:-1.047200pt;}
.ls18_c00356{letter-spacing:-0.932518pt;}
.lsb_c00356{letter-spacing:-0.680486pt;}
.ls20_c00356{letter-spacing:-0.100813pt;}
.ls5_c00356{letter-spacing:0.000000pt;}
.ls23_c00356{letter-spacing:0.277235pt;}
.ls4_c00356{letter-spacing:0.554470pt;}
.ls1a_c00356{letter-spacing:1.117600pt;}
.ls1_c00356{letter-spacing:1.197152pt;}
.lse_c00356{letter-spacing:1.249600pt;}
.ls25_c00356{letter-spacing:1.460800pt;}
.lsf_c00356{letter-spacing:1.531200pt;}
.ls17_c00356{letter-spacing:1.592800pt;}
.ls1d_c00356{letter-spacing:1.619306pt;}
.ls1e_c00356{letter-spacing:1.682314pt;}
.ls9_c00356{letter-spacing:2.261609pt;}
.ls14_c00356{letter-spacing:2.323200pt;}
.ls3_c00356{letter-spacing:2.432109pt;}
.lsd_c00356{letter-spacing:2.640000pt;}
.ls8_c00356{letter-spacing:3.150400pt;}
.ls26_c00356{letter-spacing:3.537609pt;}
.ls6_c00356{letter-spacing:3.819209pt;}
.ls2_c00356{letter-spacing:21.611744pt;}
.lsc_c00356{letter-spacing:34.214576pt;}
.ls1b_c00356{letter-spacing:43.084976pt;}
.ls21_c00356{letter-spacing:45.619376pt;}
.ls12_c00356{letter-spacing:50.688176pt;}
.ls0_c00356{letter-spacing:51.955376pt;}
.wsb_c00356{word-spacing:-95.909611pt;}
.ws10_c00356{word-spacing:-18.184109pt;}
.ws7_c00356{word-spacing:-15.752000pt;}
.ws9_c00356{word-spacing:-14.309117pt;}
.wsf_c00356{word-spacing:-14.290214pt;}
.wse_c00356{word-spacing:-13.874362pt;}
.wsa_c00356{word-spacing:-13.584525pt;}
.ws0_c00356{word-spacing:-1.890240pt;}
.ws1_c00356{word-spacing:-1.134144pt;}
.ws8_c00356{word-spacing:-0.945120pt;}
.ws12_c00356{word-spacing:0.000000pt;}
.wsc_c00356{word-spacing:0.441056pt;}
.ws6_c00356{word-spacing:2.582976pt;}
.ws11_c00356{word-spacing:2.583328pt;}
.wsd_c00356{word-spacing:3.024384pt;}
.ws3_c00356{word-spacing:3.339424pt;}
.ws2_c00356{word-spacing:5.796736pt;}
.ws4_c00356{word-spacing:6.930880pt;}
.ws5_c00356{word-spacing:7.056896pt;}
._1f_c00356{margin-left:-12.976128pt;}
._19_c00356{margin-left:-10.099936pt;}
._14_c00356{margin-left:-7.221350pt;}
._e_c00356{margin-left:-5.103648pt;}
._20_c00356{margin-left:-1.922906pt;}
._12_c00356{width:1.851450pt;}
._9_c00356{width:3.276416pt;}
._1c_c00356{width:4.183872pt;}
._11_c00356{width:5.166656pt;}
._7_c00356{width:7.056896pt;}
._0_c00356{width:8.884128pt;}
._1b_c00356{width:9.922880pt;}
._6_c00356{width:10.900384pt;}
._15_c00356{width:12.034528pt;}
._a_c00356{width:12.979648pt;}
._17_c00356{width:14.176800pt;}
._1_c00356{width:18.398336pt;}
._4_c00356{width:20.351584pt;}
._10_c00356{width:21.926784pt;}
._5_c00356{width:22.871904pt;}
._d_c00356{width:25.392928pt;}
._18_c00356{width:28.624288pt;}
._f_c00356{width:31.836394pt;}
._c_c00356{width:32.739872pt;}
._1a_c00356{width:33.892672pt;}
._3_c00356{width:34.969440pt;}
._16_c00356{width:36.101472pt;}
._1d_c00356{width:37.432384pt;}
._b_c00356{width:41.270240pt;}
._8_c00356{width:42.619456pt;}
._1e_c00356{width:47.823424pt;}
._2_c00356{width:48.890336pt;}
._13_c00356{width:82.435584pt;}
.fs11_c00356{font-size:22.352000pt;}
.fs1b_c00356{font-size:24.816000pt;}
.fs6_c00356{font-size:24.992000pt;}
.fs18_c00356{font-size:29.216000pt;}
.fs0_c00356{font-size:29.568000pt;}
.fs8_c00356{font-size:29.920000pt;}
.fs7_c00356{font-size:30.624000pt;}
.fse_c00356{font-size:31.856000pt;}
.fs5_c00356{font-size:34.214576pt;}
.fsb_c00356{font-size:35.200000pt;}
.fs13_c00356{font-size:43.084976pt;}
.fs17_c00356{font-size:44.352176pt;}
.fs3_c00356{font-size:45.232176pt;}
.fs16_c00356{font-size:45.619376pt;}
.fs15_c00356{font-size:45.760000pt;}
.fsc_c00356{font-size:46.464000pt;}
.fs1a_c00356{font-size:50.688000pt;}
.fsa_c00356{font-size:50.688176pt;}
.fs10_c00356{font-size:51.955376pt;}
.fs4_c00356{font-size:52.800000pt;}
.fsf_c00356{font-size:56.672176pt;}
.fs9_c00356{font-size:57.024176pt;}
.fsd_c00356{font-size:59.136000pt;}
.fs2_c00356{font-size:63.008000pt;}
.fs14_c00356{font-size:63.360000pt;}
.fs12_c00356{font-size:64.768000pt;}
.fs19_c00356{font-size:70.752176pt;}
.fs1_c00356{font-size:76.384176pt;}
.y0_c00356{bottom:0.000000pt;}
.y1_c00356{bottom:68.000000pt;}
.y25_c00356{bottom:142.798520pt;}
.y24_c00356{bottom:148.817720pt;}
.y23_c00356{bottom:149.451320pt;}
.y21_c00356{bottom:181.131320pt;}
.y22_c00356{bottom:185.878920pt;}
.y20_c00356{bottom:209.955720pt;}
.y1f_c00356{bottom:238.788920pt;}
.y1e_c00356{bottom:267.930120pt;}
.y1d_c00356{bottom:296.129720pt;}
.y1c_c00356{bottom:325.275320pt;}
.y1b_c00356{bottom:354.737720pt;}
.y1a_c00356{bottom:384.195720pt;}
.y17_c00356{bottom:384.829320pt;}
.y19_c00356{bottom:385.150520pt;}
.y18_c00356{bottom:391.803320pt;}
.y16_c00356{bottom:442.170120pt;}
.y15_c00356{bottom:450.090120pt;}
.y14_c00356{bottom:473.220920pt;}
.y13_c00356{bottom:502.045320pt;}
.y12_c00356{bottom:515.350920pt;}
.y11_c00356{bottom:530.874120pt;}
.y10_c00356{bottom:559.390520pt;}
.yf_c00356{bottom:588.219320pt;}
.ye_c00356{bottom:616.726920pt;}
.yd_c00356{bottom:645.872520pt;}
.yc_c00356{bottom:702.900920pt;}
.yb_c00356{bottom:725.072520pt;}
.y9_c00356{bottom:732.046520pt;}
.y8_c00356{bottom:732.363320pt;}
.ya_c00356{bottom:734.580920pt;}
.y7_c00356{bottom:738.699320pt;}
.y6_c00356{bottom:764.043320pt;}
.y2_c00356{bottom:786.219320pt;}
.y5_c00356{bottom:792.550920pt;}
.y4_c00356{bottom:822.963720pt;}
.y3_c00356{bottom:957.603720pt;}
.h6_c00356{height:22.786908pt;}
.h14_c00356{height:23.312438pt;}
.h8_c00356{height:24.516078pt;}
.h9_c00356{height:25.187250pt;}
.h1d_c00356{height:25.882313pt;}
.h16_c00356{height:28.694594pt;}
.h19_c00356{height:30.382504pt;}
.h1b_c00356{height:30.471375pt;}
.h2_c00356{height:30.838500pt;}
.ha_c00356{height:30.863250pt;}
.hb_c00356{height:31.205625pt;}
.h11_c00356{height:33.224813pt;}
.hd_c00356{height:33.758325pt;}
.h13_c00356{height:34.602280pt;}
.he_c00356{height:36.712500pt;}
.h1a_c00356{height:43.529235pt;}
.h5_c00356{height:44.392907pt;}
.h18_c00356{height:44.910938pt;}
.hf_c00356{height:45.579187pt;}
.h7_c00356{height:51.820313pt;}
.h12_c00356{height:55.620641pt;}
.hc_c00356{height:55.966110pt;}
.h10_c00356{height:61.677000pt;}
.h4_c00356{height:61.838906pt;}
.h17_c00356{height:62.184375pt;}
.h15_c00356{height:63.534625pt;}
.h1c_c00356{height:69.439391pt;}
.h3_c00356{height:74.966891pt;}
.h1_c00356{height:986.666667pt;}
.h0_c00356{height:1122.666667pt;}
.w1_c00356{width:689.333333pt;}
.w0_c00356{width:793.333333pt;}
.x0_c00356{left:0.000000pt;}
.x1_c00356{left:52.000000pt;}
.x2_c00356{left:66.718653pt;}
.x59_c00356{left:78.220253pt;}
.x16_c00356{left:82.923853pt;}
.x5_c00356{left:84.323053pt;}
.x6b_c00356{left:86.303053pt;}
.x72_c00356{left:94.196653pt;}
.x62_c00356{left:96.211853pt;}
.x37_c00356{left:101.645853pt;}
.x5d_c00356{left:103.128653pt;}
.x17_c00356{left:104.514653pt;}
.x4d_c00356{left:111.466653pt;}
.x6_c00356{left:112.887853pt;}
.x18_c00356{left:121.855053pt;}
.x3c_c00356{left:131.183053pt;}
.x7a_c00356{left:132.234653pt;}
.x38_c00356{left:140.981853pt;}
.x6c_c00356{left:142.359053pt;}
.x19_c00356{left:150.010653pt;}
.x39_c00356{left:151.071053pt;}
.x63_c00356{left:153.574653pt;}
.x4b_c00356{left:159.651053pt;}
.x64_c00356{left:161.701453pt;}
.x4e_c00356{left:170.607053pt;}
.x81_c00356{left:175.460253pt;}
.x7_c00356{left:180.705053pt;}
.x82_c00356{left:181.659853pt;}
.x1a_c00356{left:190.838253pt;}
.x8_c00356{left:200.223453pt;}
.x7b_c00356{left:201.473053pt;}
.x65_c00356{left:202.744653pt;}
.x83_c00356{left:207.457053pt;}
.x4f_c00356{left:209.357853pt;}
.x53_c00356{left:210.299453pt;}
.x73_c00356{left:211.975853pt;}
.x6d_c00356{left:218.492253pt;}
.x28_c00356{left:220.300653pt;}
.x7c_c00356{left:224.603853pt;}
.x74_c00356{left:227.697053pt;}
.x50_c00356{left:228.713453pt;}
.x9_c00356{left:231.010253pt;}
.x5e_c00356{left:239.823453pt;}
.x3a_c00356{left:240.822253pt;}
.x68_c00356{left:249.437453pt;}
.x6e_c00356{left:251.061053pt;}
.x75_c00356{left:254.207053pt;}
.x3d_c00356{left:259.293453pt;}
.x3b_c00356{left:261.409853pt;}
.x45_c00356{left:269.303453pt;}
.x54_c00356{left:270.363853pt;}
.xa_c00356{left:279.040653pt;}
.x29_c00356{left:288.408253pt;}
.x1b_c00356{left:289.314653pt;}
.x78_c00356{left:298.061853pt;}
.x5f_c00356{left:299.197053pt;}
.xb_c00356{left:300.112253pt;}
.x46_c00356{left:307.557053pt;}
.x31_c00356{left:308.569053pt;}
.x1c_c00356{left:319.054253pt;}
.x2a_c00356{left:328.430653pt;}
.xc_c00356{left:329.605453pt;}
.x66_c00356{left:331.528253pt;}
.x1d_c00356{left:338.660653pt;}
.x2b_c00356{left:348.617853pt;}
.x69_c00356{left:351.191853pt;}
.x2c_c00356{left:357.901853pt;}
.xd_c00356{left:360.027053pt;}
.x3e_c00356{left:368.576253pt;}
.x5a_c00356{left:377.481853pt;}
.xe_c00356{left:378.392653pt;}
.x6f_c00356{left:381.736653pt;}
.xf_c00356{left:387.285053pt;}
.x67_c00356{left:390.514653pt;}
.x47_c00356{left:397.594253pt;}
.x51_c00356{left:399.789853pt;}
.x84_c00356{left:405.417453pt;}
.x52_c00356{left:406.442653pt;}
.x3f_c00356{left:407.498653pt;}
.x5b_c00356{left:412.761053pt;}
.x10_c00356{left:416.721053pt;}
.x55_c00356{left:417.957453pt;}
.x77_c00356{left:419.198253pt;}
.x32_c00356{left:425.763053pt;}
.x1e_c00356{left:427.734253pt;}
.x7f_c00356{left:428.838653pt;}
.x56_c00356{left:436.477053pt;}
.x11_c00356{left:446.324253pt;}
.x60_c00356{left:447.705853pt;}
.x33_c00356{left:456.083453pt;}
.x1f_c00356{left:457.240653pt;}
.x30_c00356{left:459.233853pt;}
.x40_c00356{left:464.980253pt;}
.x34_c00356{left:466.273853pt;}
.x41_c00356{left:471.250253pt;}
.x5c_c00356{left:474.867053pt;}
.x20_c00356{left:475.839453pt;}
.x48_c00356{left:484.335853pt;}
.x7d_c00356{left:485.453453pt;}
.x21_c00356{left:486.364253pt;}
.x42_c00356{left:495.327053pt;}
.x61_c00356{left:505.103853pt;}
.x57_c00356{left:506.027853pt;}
.x70_c00356{left:508.434653pt;}
.x71_c00356{left:509.987853pt;}
.x22_c00356{left:514.695853pt;}
.x49_c00356{left:523.302253pt;}
.x4c_c00356{left:524.424253pt;}
.x2d_c00356{left:534.557453pt;}
.x23_c00356{left:544.541053pt;}
.x36_c00356{left:546.103053pt;}
.x12_c00356{left:554.515853pt;}
.x24_c00356{left:564.028653pt;}
.x43_c00356{left:573.893453pt;}
.x79_c00356{left:580.995053pt;}
.x4a_c00356{left:582.579053pt;}
.x13_c00356{left:584.141053pt;}
.x25_c00356{left:592.399853pt;}
.x3_c00356{left:594.054253pt;}
.x14_c00356{left:595.057453pt;}
.x2e_c00356{left:603.281053pt;}
.x58_c00356{left:605.265453pt;}
.x6a_c00356{left:612.358253pt;}
.x44_c00356{left:613.392253pt;}
.x4_c00356{left:614.958653pt;}
.x7e_c00356{left:622.095453pt;}
.x2f_c00356{left:623.252653pt;}
.x76_c00356{left:632.285853pt;}
.x26_c00356{left:633.456253pt;}
.x15_c00356{left:642.586253pt;}
.x80_c00356{left:643.554253pt;}
.x35_c00356{left:652.596253pt;}
.x27_c00356{left:662.597453pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_386291c4d2d23bfa4ffe5ddc.woff2')format("woff");}.ff1_c00357{font-family:ff1_c00357;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00357;src:url('chunks/assets/font_37faf021fcd53d9509c27e1a.woff2')format("woff");}.ff2_c00357{font-family:ff2_c00357;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00357;src:url('chunks/assets/font_d24a9461c316c0c85dfb0b73.woff2')format("woff");}.ff3_c00357{font-family:ff3_c00357;line-height:0.666000;font-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_c00357{transform:matrix(0.088235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088235,0.000000,0.000000,0.250000,0,0);}
.m17_c00357{transform:matrix(0.095686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095686,0.000000,0.000000,0.250000,0,0);}
.m81_c00357{transform:matrix(0.115196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115196,0.000000,0.000000,0.250000,0,0);}
.m7c_c00357{transform:matrix(0.126471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126471,0.000000,0.000000,0.250000,0,0);}
.m22_c00357{transform:matrix(0.135745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135745,0.000000,0.000000,0.250000,0,0);}
.mbe_c00357{transform:matrix(0.143530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143530,0.000000,0.000000,0.250000,0,0);}
.m54_c00357{transform:matrix(0.144048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144048,0.000000,0.000000,0.250000,0,0);}
.m80_c00357{transform:matrix(0.161764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161764,0.000000,0.000000,0.250000,0,0);}
.m27_c00357{transform:matrix(0.169995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169995,0.000000,0.000000,0.250000,0,0);}
.m33_c00357{transform:matrix(0.177078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177078,0.000000,0.000000,0.250000,0,0);}
.m73_c00357{transform:matrix(0.177159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177159,0.000000,0.000000,0.250000,0,0);}
.ma9_c00357{transform:matrix(0.178188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178188,0.000000,0.000000,0.250000,0,0);}
.mbc_c00357{transform:matrix(0.184024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184024,0.000000,0.000000,0.250000,0,0);}
.m41_c00357{transform:matrix(0.184162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184162,0.000000,0.000000,0.250000,0,0);}
.m94_c00357{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00357{transform:matrix(0.198530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198530,0.000000,0.000000,0.250000,0,0);}
.m7f_c00357{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);}
.m7d_c00357{transform:matrix(0.209559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209559,0.000000,0.000000,0.250000,0,0);}
.m39_c00357{transform:matrix(0.213378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213378,0.000000,0.000000,0.250000,0,0);}
.m8d_c00357{transform:matrix(0.231884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231884,0.000000,0.000000,0.250000,0,0);}
.m8a_c00357{transform:matrix(0.233754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233754,0.000000,0.000000,0.250000,0,0);}
.m8c_c00357{transform:matrix(0.237473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237473,0.000000,0.000000,0.250000,0,0);}
.m45_c00357{transform:matrix(0.239483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239483,0.000000,0.000000,0.250000,0,0);}
.mbf_c00357{transform:matrix(0.243889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243889,0.000000,0.000000,0.250000,0,0);}
.m0_c00357{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m31_c00357{transform:matrix(0.250327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250327,0.000000,0.000000,0.250000,0,0);}
.m1_c00357{transform:matrix(0.250978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250978,0.000000,0.000000,0.250000,0,0);}
.m57_c00357{transform:matrix(0.253482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253482,0.000000,0.000000,0.250000,0,0);}
.ma3_c00357{transform:matrix(0.254831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254831,0.000000,0.000000,0.250000,0,0);}
.m3c_c00357{transform:matrix(0.255751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255751,0.000000,0.000000,0.250000,0,0);}
.m32_c00357{transform:matrix(0.256683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256683,0.000000,0.000000,0.250000,0,0);}
.m4b_c00357{transform:matrix(0.258588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258588,0.000000,0.000000,0.250000,0,0);}
.m2_c00357{transform:matrix(0.259200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259200,0.000000,0.000000,0.250000,0,0);}
.m35_c00357{transform:matrix(0.261098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261098,0.000000,0.000000,0.250000,0,0);}
.ma1_c00357{transform:matrix(0.262281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262281,0.000000,0.000000,0.250000,0,0);}
.m10_c00357{transform:matrix(0.262779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262779,0.000000,0.000000,0.250000,0,0);}
.m6c_c00357{transform:matrix(0.262940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262940,0.000000,0.000000,0.250000,0,0);}
.m6a_c00357{transform:matrix(0.263927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263927,0.000000,0.000000,0.250000,0,0);}
.ma8_c00357{transform:matrix(0.265440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265440,0.000000,0.000000,0.250000,0,0);}
.m69_c00357{transform:matrix(0.265815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265815,0.000000,0.000000,0.250000,0,0);}
.md_c00357{transform:matrix(0.266551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266551,0.000000,0.000000,0.250000,0,0);}
.m23_c00357{transform:matrix(0.267099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267099,0.000000,0.000000,0.250000,0,0);}
.m78_c00357{transform:matrix(0.267346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267346,0.000000,0.000000,0.250000,0,0);}
.m67_c00357{transform:matrix(0.267450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267450,0.000000,0.000000,0.250000,0,0);}
.m59_c00357{transform:matrix(0.267787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267787,0.000000,0.000000,0.250000,0,0);}
.m89_c00357{transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);}
.m9e_c00357{transform:matrix(0.268333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268333,0.000000,0.000000,0.250000,0,0);}
.mae_c00357{transform:matrix(0.268551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268551,0.000000,0.000000,0.250000,0,0);}
.m4_c00357{transform:matrix(0.270017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270017,0.000000,0.000000,0.250000,0,0);}
.m26_c00357{transform:matrix(0.270313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270313,0.000000,0.000000,0.250000,0,0);}
.mb0_c00357{transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);}
.m11_c00357{transform:matrix(0.272274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272274,0.000000,0.000000,0.250000,0,0);}
.m1e_c00357{transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);}
.m9b_c00357{transform:matrix(0.273162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273162,0.000000,0.000000,0.250000,0,0);}
.m14_c00357{transform:matrix(0.274213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274213,0.000000,0.000000,0.250000,0,0);}
.m1d_c00357{transform:matrix(0.274594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274594,0.000000,0.000000,0.250000,0,0);}
.m9_c00357{transform:matrix(0.275368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275368,0.000000,0.000000,0.250000,0,0);}
.m6f_c00357{transform:matrix(0.275584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275584,0.000000,0.000000,0.250000,0,0);}
.m15_c00357{transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);}
.ma7_c00357{transform:matrix(0.276847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276847,0.000000,0.000000,0.250000,0,0);}
.m5a_c00357{transform:matrix(0.277533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277533,0.000000,0.000000,0.250000,0,0);}
.mc_c00357{transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);}
.m61_c00357{transform:matrix(0.277743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277743,0.000000,0.000000,0.250000,0,0);}
.m65_c00357{transform:matrix(0.277912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277912,0.000000,0.000000,0.250000,0,0);}
.m24_c00357{transform:matrix(0.278463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278463,0.000000,0.000000,0.250000,0,0);}
.m95_c00357{transform:matrix(0.278706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278706,0.000000,0.000000,0.250000,0,0);}
.mac_c00357{transform:matrix(0.278908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278908,0.000000,0.000000,0.250000,0,0);}
.m9f_c00357{transform:matrix(0.279285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279285,0.000000,0.000000,0.250000,0,0);}
.m1c_c00357{transform:matrix(0.279361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279361,0.000000,0.000000,0.250000,0,0);}
.m47_c00357{transform:matrix(0.279590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279590,0.000000,0.000000,0.250000,0,0);}
.m60_c00357{transform:matrix(0.280139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280139,0.000000,0.000000,0.250000,0,0);}
.m2a_c00357{transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);}
.m5c_c00357{transform:matrix(0.281135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281135,0.000000,0.000000,0.250000,0,0);}
.m88_c00357{transform:matrix(0.281333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281333,0.000000,0.000000,0.250000,0,0);}
.m86_c00357{transform:matrix(0.281464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281464,0.000000,0.000000,0.250000,0,0);}
.m38_c00357{transform:matrix(0.282531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282531,0.000000,0.000000,0.250000,0,0);}
.m98_c00357{transform:matrix(0.282945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282945,0.000000,0.000000,0.250000,0,0);}
.m28_c00357{transform:matrix(0.284171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284171,0.000000,0.000000,0.250000,0,0);}
.m4d_c00357{transform:matrix(0.284887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284887,0.000000,0.000000,0.250000,0,0);}
.m13_c00357{transform:matrix(0.286890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286890,0.000000,0.000000,0.250000,0,0);}
.m50_c00357{transform:matrix(0.287125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287125,0.000000,0.000000,0.250000,0,0);}
.m21_c00357{transform:matrix(0.287374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287374,0.000000,0.000000,0.250000,0,0);}
.m97_c00357{transform:matrix(0.287885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287885,0.000000,0.000000,0.250000,0,0);}
.ma_c00357{transform:matrix(0.288065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288065,0.000000,0.000000,0.250000,0,0);}
.m44_c00357{transform:matrix(0.288092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288092,0.000000,0.000000,0.250000,0,0);}
.m34_c00357{transform:matrix(0.288419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288419,0.000000,0.000000,0.250000,0,0);}
.m56_c00357{transform:matrix(0.289190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289190,0.000000,0.000000,0.250000,0,0);}
.m99_c00357{transform:matrix(0.289635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289635,0.000000,0.000000,0.250000,0,0);}
.mba_c00357{transform:matrix(0.290546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290546,0.000000,0.000000,0.250000,0,0);}
.m7_c00357{transform:matrix(0.291238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291238,0.000000,0.000000,0.250000,0,0);}
.m79_c00357{transform:matrix(0.292302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292302,0.000000,0.000000,0.250000,0,0);}
.m2c_c00357{transform:matrix(0.292681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292681,0.000000,0.000000,0.250000,0,0);}
.m4f_c00357{transform:matrix(0.293602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293602,0.000000,0.000000,0.250000,0,0);}
.m25_c00357{transform:matrix(0.293938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293938,0.000000,0.000000,0.250000,0,0);}
.m42_c00357{transform:matrix(0.295728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295728,0.000000,0.000000,0.250000,0,0);}
.mb5_c00357{transform:matrix(0.297237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297237,0.000000,0.000000,0.250000,0,0);}
.mb7_c00357{transform:matrix(0.297564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297564,0.000000,0.000000,0.250000,0,0);}
.m90_c00357{transform:matrix(0.298013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298013,0.000000,0.000000,0.250000,0,0);}
.m66_c00357{transform:matrix(0.298940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298940,0.000000,0.000000,0.250000,0,0);}
.m5_c00357{transform:matrix(0.299553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299553,0.000000,0.000000,0.250000,0,0);}
.m85_c00357{transform:matrix(0.300404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300404,0.000000,0.000000,0.250000,0,0);}
.mb2_c00357{transform:matrix(0.301019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301019,0.000000,0.000000,0.250000,0,0);}
.m12_c00357{transform:matrix(0.301362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301362,0.000000,0.000000,0.250000,0,0);}
.m55_c00357{transform:matrix(0.302495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302495,0.000000,0.000000,0.250000,0,0);}
.m8b_c00357{transform:matrix(0.302614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302614,0.000000,0.000000,0.250000,0,0);}
.m49_c00357{transform:matrix(0.303107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303107,0.000000,0.000000,0.250000,0,0);}
.m1f_c00357{transform:matrix(0.304483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304483,0.000000,0.000000,0.250000,0,0);}
.m5e_c00357{transform:matrix(0.304813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304813,0.000000,0.000000,0.250000,0,0);}
.ma4_c00357{transform:matrix(0.305065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305065,0.000000,0.000000,0.250000,0,0);}
.m92_c00357{transform:matrix(0.305396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305396,0.000000,0.000000,0.250000,0,0);}
.mb_c00357{transform:matrix(0.305654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305654,0.000000,0.000000,0.250000,0,0);}
.m29_c00357{transform:matrix(0.305904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305904,0.000000,0.000000,0.250000,0,0);}
.m75_c00357{transform:matrix(0.305989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305989,0.000000,0.000000,0.250000,0,0);}
.mbd_c00357{transform:matrix(0.306505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306505,0.000000,0.000000,0.250000,0,0);}
.ma6_c00357{transform:matrix(0.306838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306838,0.000000,0.000000,0.250000,0,0);}
.m63_c00357{transform:matrix(0.306875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306875,0.000000,0.000000,0.250000,0,0);}
.m62_c00357{transform:matrix(0.307137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307137,0.000000,0.000000,0.250000,0,0);}
.m20_c00357{transform:matrix(0.307441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307441,0.000000,0.000000,0.250000,0,0);}
.m3b_c00357{transform:matrix(0.307544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307544,0.000000,0.000000,0.250000,0,0);}
.m6_c00357{transform:matrix(0.307994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307994,0.000000,0.000000,0.250000,0,0);}
.ma0_c00357{transform:matrix(0.307995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307995,0.000000,0.000000,0.250000,0,0);}
.m1a_c00357{transform:matrix(0.308241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308241,0.000000,0.000000,0.250000,0,0);}
.m9d_c00357{transform:matrix(0.308584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308584,0.000000,0.000000,0.250000,0,0);}
.mad_c00357{transform:matrix(0.310229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310229,0.000000,0.000000,0.250000,0,0);}
.m36_c00357{transform:matrix(0.310858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310858,0.000000,0.000000,0.250000,0,0);}
.m2b_c00357{transform:matrix(0.311268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311268,0.000000,0.000000,0.250000,0,0);}
.m19_c00357{transform:matrix(0.311603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311603,0.000000,0.000000,0.250000,0,0);}
.m5d_c00357{transform:matrix(0.311631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311631,0.000000,0.000000,0.250000,0,0);}
.mbb_c00357{transform:matrix(0.312689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312689,0.000000,0.000000,0.250000,0,0);}
.m3d_c00357{transform:matrix(0.313375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313375,0.000000,0.000000,0.250000,0,0);}
.mb1_c00357{transform:matrix(0.313458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313458,0.000000,0.000000,0.250000,0,0);}
.me_c00357{transform:matrix(0.313806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313806,0.000000,0.000000,0.250000,0,0);}
.m3_c00357{transform:matrix(0.314025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314025,0.000000,0.000000,0.250000,0,0);}
.mb3_c00357{transform:matrix(0.314268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314268,0.000000,0.000000,0.250000,0,0);}
.m6e_c00357{transform:matrix(0.316492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316492,0.000000,0.000000,0.250000,0,0);}
.m77_c00357{transform:matrix(0.316830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316830,0.000000,0.000000,0.250000,0,0);}
.m72_c00357{transform:matrix(0.319262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319262,0.000000,0.000000,0.250000,0,0);}
.m8e_c00357{transform:matrix(0.319577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319577,0.000000,0.000000,0.250000,0,0);}
.m3f_c00357{transform:matrix(0.319921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319921,0.000000,0.000000,0.250000,0,0);}
.m5b_c00357{transform:matrix(0.320178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320178,0.000000,0.000000,0.250000,0,0);}
.mb8_c00357{transform:matrix(0.320625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320625,0.000000,0.000000,0.250000,0,0);}
.m7a_c00357{transform:matrix(0.321385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321385,0.000000,0.000000,0.250000,0,0);}
.m76_c00357{transform:matrix(0.322292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322292,0.000000,0.000000,0.250000,0,0);}
.m53_c00357{transform:matrix(0.323055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323055,0.000000,0.000000,0.250000,0,0);}
.m71_c00357{transform:matrix(0.323794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323794,0.000000,0.000000,0.250000,0,0);}
.m6d_c00357{transform:matrix(0.323841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323841,0.000000,0.000000,0.250000,0,0);}
.m91_c00357{transform:matrix(0.323908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323908,0.000000,0.000000,0.250000,0,0);}
.m6b_c00357{transform:matrix(0.324586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324586,0.000000,0.000000,0.250000,0,0);}
.m4c_c00357{transform:matrix(0.325075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325075,0.000000,0.000000,0.250000,0,0);}
.maa_c00357{transform:matrix(0.326947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326947,0.000000,0.000000,0.250000,0,0);}
.m70_c00357{transform:matrix(0.329428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329428,0.000000,0.000000,0.250000,0,0);}
.maf_c00357{transform:matrix(0.330091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330091,0.000000,0.000000,0.250000,0,0);}
.m1b_c00357{transform:matrix(0.330872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330872,0.000000,0.000000,0.250000,0,0);}
.m83_c00357{transform:matrix(0.330991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330991,0.000000,0.000000,0.250000,0,0);}
.m58_c00357{transform:matrix(0.332682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332682,0.000000,0.000000,0.250000,0,0);}
.m4a_c00357{transform:matrix(0.332874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332874,0.000000,0.000000,0.250000,0,0);}
.m64_c00357{transform:matrix(0.333008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333008,0.000000,0.000000,0.250000,0,0);}
.m18_c00357{transform:matrix(0.335104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335104,0.000000,0.000000,0.250000,0,0);}
.m74_c00357{transform:matrix(0.335160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335160,0.000000,0.000000,0.250000,0,0);}
.m8f_c00357{transform:matrix(0.335258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335258,0.000000,0.000000,0.250000,0,0);}
.m84_c00357{transform:matrix(0.335516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335516,0.000000,0.000000,0.250000,0,0);}
.m2e_c00357{transform:matrix(0.336697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336697,0.000000,0.000000,0.250000,0,0);}
.m7b_c00357{transform:matrix(0.337604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337604,0.000000,0.000000,0.250000,0,0);}
.m37_c00357{transform:matrix(0.338419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338419,0.000000,0.000000,0.250000,0,0);}
.mf_c00357{transform:matrix(0.339155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339155,0.000000,0.000000,0.250000,0,0);}
.m46_c00357{transform:matrix(0.339371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339371,0.000000,0.000000,0.250000,0,0);}
.m3e_c00357{transform:matrix(0.341796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341796,0.000000,0.000000,0.250000,0,0);}
.m68_c00357{transform:matrix(0.341976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341976,0.000000,0.000000,0.250000,0,0);}
.m93_c00357{transform:matrix(0.344058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344058,0.000000,0.000000,0.250000,0,0);}
.m16_c00357{transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);}
.mc0_c00357{transform:matrix(0.346191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346191,0.000000,0.000000,0.250000,0,0);}
.mab_c00357{transform:matrix(0.347781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347781,0.000000,0.000000,0.250000,0,0);}
.mb6_c00357{transform:matrix(0.348570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348570,0.000000,0.000000,0.250000,0,0);}
.m4e_c00357{transform:matrix(0.349617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349617,0.000000,0.000000,0.250000,0,0);}
.m2f_c00357{transform:matrix(0.349880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349880,0.000000,0.000000,0.250000,0,0);}
.ma2_c00357{transform:matrix(0.351163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351163,0.000000,0.000000,0.250000,0,0);}
.m43_c00357{transform:matrix(0.351858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351858,0.000000,0.000000,0.250000,0,0);}
.mb4_c00357{transform:matrix(0.352339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352339,0.000000,0.000000,0.250000,0,0);}
.m52_c00357{transform:matrix(0.353646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353646,0.000000,0.000000,0.250000,0,0);}
.m96_c00357{transform:matrix(0.356018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356018,0.000000,0.000000,0.250000,0,0);}
.m40_c00357{transform:matrix(0.360282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360282,0.000000,0.000000,0.250000,0,0);}
.m30_c00357{transform:matrix(0.361546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361546,0.000000,0.000000,0.250000,0,0);}
.ma5_c00357{transform:matrix(0.361896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361896,0.000000,0.000000,0.250000,0,0);}
.mb9_c00357{transform:matrix(0.368239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368239,0.000000,0.000000,0.250000,0,0);}
.m87_c00357{transform:matrix(0.371421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371421,0.000000,0.000000,0.250000,0,0);}
.m2d_c00357{transform:matrix(0.388446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388446,0.000000,0.000000,0.250000,0,0);}
.m8_c00357{transform:matrix(0.391657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391657,0.000000,0.000000,0.250000,0,0);}
.m51_c00357{transform:matrix(0.392849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392849,0.000000,0.000000,0.250000,0,0);}
.m48_c00357{transform:matrix(0.416178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416178,0.000000,0.000000,0.250000,0,0);}
.m9c_c00357{transform:matrix(0.417156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417156,0.000000,0.000000,0.250000,0,0);}
.m9a_c00357{transform:matrix(0.430751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430751,0.000000,0.000000,0.250000,0,0);}
.m5f_c00357{transform:matrix(0.438583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438583,0.000000,0.000000,0.250000,0,0);}
.m3a_c00357{transform:matrix(0.448103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448103,0.000000,0.000000,0.250000,0,0);}
.v2_c00357{vertical-align:-1.445400px;}
.v0_c00357{vertical-align:0.000000px;}
.v1_c00357{vertical-align:81.259200px;}
.ls9_c00357{letter-spacing:-2.647267px;}
.ls11_c00357{letter-spacing:-2.011923px;}
.ls8_c00357{letter-spacing:-1.709378px;}
.ls4_c00357{letter-spacing:0.000000px;}
.ls2_c00357{letter-spacing:0.272290px;}
.lsa_c00357{letter-spacing:0.605090px;}
.ls7_c00357{letter-spacing:1.081598px;}
.lsd_c00357{letter-spacing:1.414397px;}
.ls12_c00357{letter-spacing:1.671560px;}
.ls13_c00357{letter-spacing:2.019486px;}
.lsc_c00357{letter-spacing:2.178323px;}
.ls0_c00357{letter-spacing:3.449011px;}
.lsb_c00357{letter-spacing:3.622974px;}
.ls3_c00357{letter-spacing:3.631221px;}
.ls6_c00357{letter-spacing:3.781810px;}
.ls5_c00357{letter-spacing:4.276810px;}
.ls1_c00357{letter-spacing:12.783199px;}
.lsf_c00357{letter-spacing:48.470598px;}
.lse_c00357{letter-spacing:49.896198px;}
.ls10_c00357{letter-spacing:51.321798px;}
.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;}
}
.ws7_c00357{word-spacing:-22.532023px;}
.ws1_c00357{word-spacing:-19.990647px;}
.ws5_c00357{word-spacing:-19.514139px;}
.ws4_c00357{word-spacing:-18.909050px;}
.ws2_c00357{word-spacing:-17.199671px;}
.wsb_c00357{word-spacing:-16.897127px;}
.ws6_c00357{word-spacing:-0.075575px;}
.wsc_c00357{word-spacing:0.000000px;}
.ws0_c00357{word-spacing:0.832277px;}
.ws8_c00357{word-spacing:0.983153px;}
.ws3_c00357{word-spacing:3.403515px;}
.wsa_c00357{word-spacing:3.705257px;}
.ws9_c00357{word-spacing:3.857529px;}
._21_c00357{margin-left:-21.632404px;}
._d_c00357{margin-left:-12.933792px;}
._18_c00357{margin-left:-7.267673px;}
._1c_c00357{margin-left:-5.293882px;}
._e_c00357{margin-left:-3.176762px;}
._1d_c00357{margin-left:-1.664382px;}
._9_c00357{width:1.437381px;}
._2_c00357{width:3.433847px;}
._c_c00357{width:5.430722px;}
._a_c00357{width:7.033257px;}
._7_c00357{width:8.698063px;}
._1_c00357{width:9.832988px;}
._1f_c00357{width:10.872637px;}
._5_c00357{width:12.026223px;}
._19_c00357{width:13.614381px;}
._0_c00357{width:15.285600px;}
._17_c00357{width:16.300035px;}
._1b_c00357{width:20.299301px;}
._16_c00357{width:21.348354px;}
._3_c00357{width:22.766579px;}
._10_c00357{width:24.052380px;}
._11_c00357{width:26.171087px;}
._b_c00357{width:27.698421px;}
._22_c00357{width:30.254449px;}
._14_c00357{width:31.616492px;}
._6_c00357{width:32.750449px;}
._20_c00357{width:34.565228px;}
._12_c00357{width:36.298163px;}
._4_c00357{width:37.515527px;}
._13_c00357{width:39.527555px;}
._1a_c00357{width:40.886219px;}
._f_c00357{width:42.251897px;}
._8_c00357{width:47.592353px;}
._1e_c00357{width:48.985343px;}
._15_c00357{width:155.838225px;}
.fc0_c00357{color:transparent;}
.fsd_c00357{font-size:22.176000px;}
.fs7_c00357{font-size:22.374000px;}
.fs5_c00357{font-size:22.572000px;}
.fsb_c00357{font-size:26.928000px;}
.fs3_c00357{font-size:28.314000px;}
.fs4_c00357{font-size:33.660000px;}
.fs1_c00357{font-size:34.056198px;}
.fsa_c00357{font-size:38.016198px;}
.fs0_c00357{font-size:39.600000px;}
.fsc_c00357{font-size:48.470598px;}
.fs9_c00357{font-size:49.896198px;}
.fse_c00357{font-size:51.321798px;}
.fs6_c00357{font-size:75.636198px;}
.fs8_c00357{font-size:77.616198px;}
.fs2_c00357{font-size:85.536198px;}
.y0_c00357{bottom:0.000000px;}
.y1_c00357{bottom:72.000000px;}
.y27_c00357{bottom:142.695135px;}
.y26_c00357{bottom:208.272735px;}
.y25_c00357{bottom:208.274913px;}
.y23_c00357{bottom:243.198351px;}
.y24_c00357{bottom:243.199935px;}
.y22_c00357{bottom:275.627385px;}
.y21_c00357{bottom:309.846735px;}
.y20_c00357{bottom:342.279135px;}
.y1f_c00357{bottom:406.426185px;}
.y2_c00357{bottom:427.097385px;}
.y1e_c00357{bottom:439.214985px;}
.y1d_c00357{bottom:453.475935px;}
.y1c_c00357{bottom:472.003785px;}
.y1b_c00357{bottom:504.797535px;}
.y1a_c00357{bottom:532.596735px;}
.y19_c00357{bottom:536.155785px;}
.y18_c00357{bottom:536.517135px;}
.y17_c00357{bottom:552.193785px;}
.y16_c00357{bottom:569.305935px;}
.y15_c00357{bottom:569.306430px;}
.y14_c00357{bottom:602.094735px;}
.y13_c00357{bottom:634.527135px;}
.y12_c00357{bottom:681.566985px;}
.y11_c00357{bottom:699.030585px;}
.y10_c00357{bottom:735.388335px;}
.yf_c00357{bottom:767.459385px;}
.ye_c00357{bottom:793.120185px;}
.yb_c00357{bottom:799.896735px;}
.yd_c00357{bottom:801.317385px;}
.yc_c00357{bottom:807.732585px;}
.ya_c00357{bottom:833.398335px;}
.y9_c00357{bottom:865.469385px;}
.y8_c00357{bottom:898.258185px;}
.y7_c00357{bottom:930.690585px;}
.y6_c00357{bottom:1018.008585px;}
.y5_c00357{bottom:1027.631385px;}
.y4_c00357{bottom:1076.814585px;}
.y3_c00357{bottom:1080.022185px;}
.he_c00357{height:23.128875px;}
.h6_c00357{height:23.541891px;}
.hc_c00357{height:28.085063px;}
.h4_c00357{height:29.530617px;}
.hd_c00357{height:32.281418px;}
.h5_c00357{height:33.035449px;}
.ha_c00357{height:33.230868px;}
.hf_c00357{height:34.180317px;}
.hb_c00357{height:37.310819px;}
.h2_c00357{height:41.301563px;}
.h7_c00357{height:74.232792px;}
.h10_c00357{height:76.176054px;}
.h9_c00357{height:80.951269px;}
.h3_c00357{height:83.949101px;}
.h8_c00357{height:104.594583px;}
.h1_c00357{height:1119.000000px;}
.h0_c00357{height:1263.000000px;}
.w1_c00357{width:790.500000px;}
.w0_c00357{width:892.500000px;}
.x0_c00357{left:0.000000px;}
.x1_c00357{left:51.000000px;}
.x2_c00357{left:78.677700px;}
.x19_c00357{left:101.200200px;}
.x60_c00357{left:102.304050px;}
.x6c_c00357{left:103.343550px;}
.x4d_c00357{left:112.882200px;}
.x55_c00357{left:123.103950px;}
.x3e_c00357{left:133.494000px;}
.x5_c00357{left:135.478950px;}
.x1a_c00357{left:144.770100px;}
.x6b_c00357{left:150.853650px;}
.x7_c00357{left:155.813550px;}
.x4e_c00357{left:163.723650px;}
.x2c_c00357{left:165.188850px;}
.x47_c00357{left:166.703550px;}
.x5a_c00357{left:175.880850px;}
.x65_c00357{left:177.410400px;}
.x56_c00357{left:179.246850px;}
.x48_c00357{left:186.572850px;}
.x2d_c00357{left:187.894500px;}
.x8_c00357{left:189.186450px;}
.x5f_c00357{left:199.581450px;}
.x4f_c00357{left:201.403050px;}
.x2e_c00357{left:210.402150px;}
.x7b_c00357{left:212.906850px;}
.x6_c00357{left:221.366400px;}
.x2f_c00357{left:222.707850px;}
.x49_c00357{left:224.410650px;}
.x74_c00357{left:231.078300px;}
.x50_c00357{left:232.721700px;}
.x3f_c00357{left:242.829600px;}
.x7a_c00357{left:244.339350px;}
.x69_c00357{left:249.309150px;}
.x9_c00357{left:255.382800px;}
.x57_c00357{left:264.624450px;}
.x40_c00357{left:265.847100px;}
.xa_c00357{left:266.921250px;}
.x71_c00357{left:276.415350px;}
.x1b_c00357{left:277.608300px;}
.x25_c00357{left:284.365050px;}
.x6d_c00357{left:287.077650px;}
.xb_c00357{left:288.320100px;}
.x6a_c00357{left:295.987650px;}
.x75_c00357{left:297.730050px;}
.x26_c00357{left:299.333850px;}
.xc_c00357{left:300.378300px;}
.x38_c00357{left:308.818050px;}
.x41_c00357{left:310.312950px;}
.x1c_c00357{left:311.392050px;}
.x76_c00357{left:320.707950px;}
.x30_c00357{left:321.796950px;}
.x42_c00357{left:332.048400px;}
.x6e_c00357{left:333.221550px;}
.xd_c00357{left:343.552200px;}
.x77_c00357{left:353.699700px;}
.x66_c00357{left:362.634450px;}
.xe_c00357{left:366.223200px;}
.x51_c00357{left:367.940850px;}
.x4a_c00357{left:375.781650px;}
.x52_c00357{left:378.043800px;}
.x58_c00357{left:387.102300px;}
.x39_c00357{left:388.136850px;}
.x1d_c00357{left:390.493050px;}
.x27_c00357{left:398.581350px;}
.xf_c00357{left:400.853400px;}
.x10_c00357{left:408.966450px;}
.x1e_c00357{left:410.545500px;}
.x7c_c00357{left:413.203650px;}
.x5b_c00357{left:420.841500px;}
.x43_c00357{left:423.638250px;}
.x11_c00357{left:431.696850px;}
.x61_c00357{left:432.998700px;}
.x44_c00357{left:442.982850px;}
.x78_c00357{left:453.486750px;}
.x1f_c00357{left:454.739100px;}
.x5c_c00357{left:465.738000px;}
.x7d_c00357{left:474.905400px;}
.x28_c00357{left:476.133000px;}
.x45_c00357{left:483.810450px;}
.x12_c00357{left:487.181400px;}
.x7e_c00357{left:488.191200px;}
.x6f_c00357{left:489.928650px;}
.x67_c00357{left:498.541650px;}
.x70_c00357{left:500.452350px;}
.x13_c00357{left:510.332550px;}
.x5d_c00357{left:512.574900px;}
.x4b_c00357{left:519.420750px;}
.x46_c00357{left:520.504800px;}
.x20_c00357{left:531.949200px;}
.x31_c00357{left:542.433300px;}
.x79_c00357{left:551.882850px;}
.x72_c00357{left:553.115400px;}
.x14_c00357{left:554.214300px;}
.x21_c00357{left:563.614350px;}
.x3a_c00357{left:564.876600px;}
.x4c_c00357{left:574.336050px;}
.x32_c00357{left:575.890350px;}
.x7f_c00357{left:586.122000px;}
.x15_c00357{left:587.211000px;}
.x33_c00357{left:597.318900px;}
.x53_c00357{left:598.764300px;}
.x29_c00357{left:608.708850px;}
.x62_c00357{left:609.718650px;}
.x22_c00357{left:618.529650px;}
.x16_c00357{left:620.118600px;}
.x34_c00357{left:630.894750px;}
.x5e_c00357{left:632.226300px;}
.x35_c00357{left:636.923850px;}
.x2a_c00357{left:641.670900px;}
.x4_c00357{left:649.724550px;}
.x23_c00357{left:653.273700px;}
.x17_c00357{left:654.298350px;}
.x2b_c00357{left:664.990350px;}
.x63_c00357{left:667.594050px;}
.x3_c00357{left:675.657600px;}
.x59_c00357{left:684.780450px;}
.x36_c00357{left:686.641650px;}
.x3d_c00357{left:695.022000px;}
.x54_c00357{left:697.135650px;}
.x24_c00357{left:698.487000px;}
.x73_c00357{left:706.446600px;}
.x18_c00357{left:708.495900px;}
.x64_c00357{left:710.312550px;}
.x3b_c00357{left:715.881300px;}
.x3c_c00357{left:719.093850px;}
.x68_c00357{left:720.613500px;}
.x37_c00357{left:730.389750px;}
@media print{
.v2_c00357{vertical-align:-1.284800pt;}
.v0_c00357{vertical-align:0.000000pt;}
.v1_c00357{vertical-align:72.230400pt;}
.ls9_c00357{letter-spacing:-2.353126pt;}
.ls11_c00357{letter-spacing:-1.788376pt;}
.ls8_c00357{letter-spacing:-1.519447pt;}
.ls4_c00357{letter-spacing:0.000000pt;}
.ls2_c00357{letter-spacing:0.242036pt;}
.lsa_c00357{letter-spacing:0.537857pt;}
.ls7_c00357{letter-spacing:0.961420pt;}
.lsd_c00357{letter-spacing:1.257242pt;}
.ls12_c00357{letter-spacing:1.485831pt;}
.ls13_c00357{letter-spacing:1.795099pt;}
.lsc_c00357{letter-spacing:1.936287pt;}
.ls0_c00357{letter-spacing:3.065787pt;}
.lsb_c00357{letter-spacing:3.220421pt;}
.ls3_c00357{letter-spacing:3.227752pt;}
.ls6_c00357{letter-spacing:3.361609pt;}
.ls5_c00357{letter-spacing:3.801609pt;}
.ls1_c00357{letter-spacing:11.362844pt;}
.lsf_c00357{letter-spacing:43.084976pt;}
.lse_c00357{letter-spacing:44.352176pt;}
.ls10_c00357{letter-spacing:45.619376pt;}
.ws7_c00357{word-spacing:-20.028465pt;}
.ws1_c00357{word-spacing:-17.769464pt;}
.ws5_c00357{word-spacing:-17.345901pt;}
.ws4_c00357{word-spacing:-16.808044pt;}
.ws2_c00357{word-spacing:-15.288597pt;}
.wsb_c00357{word-spacing:-15.019668pt;}
.ws6_c00357{word-spacing:-0.067178pt;}
.wsc_c00357{word-spacing:0.000000pt;}
.ws0_c00357{word-spacing:0.739801pt;}
.ws8_c00357{word-spacing:0.873913pt;}
.ws3_c00357{word-spacing:3.025347pt;}
.wsa_c00357{word-spacing:3.293561pt;}
.ws9_c00357{word-spacing:3.428915pt;}
._21_c00357{margin-left:-19.228803pt;}
._d_c00357{margin-left:-11.496704pt;}
._18_c00357{margin-left:-6.460153pt;}
._1c_c00357{margin-left:-4.705673pt;}
._e_c00357{margin-left:-2.823788pt;}
._1d_c00357{margin-left:-1.479451pt;}
._9_c00357{width:1.277672pt;}
._2_c00357{width:3.052308pt;}
._c_c00357{width:4.827309pt;}
._a_c00357{width:6.251784pt;}
._7_c00357{width:7.731612pt;}
._1_c00357{width:8.740434pt;}
._1f_c00357{width:9.664566pt;}
._5_c00357{width:10.689976pt;}
._19_c00357{width:12.101672pt;}
._0_c00357{width:13.587200pt;}
._17_c00357{width:14.488920pt;}
._1b_c00357{width:18.043823pt;}
._16_c00357{width:18.976315pt;}
._3_c00357{width:20.236959pt;}
._10_c00357{width:21.379893pt;}
._11_c00357{width:23.263188pt;}
._b_c00357{width:24.620818pt;}
._22_c00357{width:26.892844pt;}
._14_c00357{width:28.103548pt;}
._6_c00357{width:29.111510pt;}
._20_c00357{width:30.724648pt;}
._12_c00357{width:32.265034pt;}
._4_c00357{width:33.347136pt;}
._13_c00357{width:35.135605pt;}
._1a_c00357{width:36.343306pt;}
._f_c00357{width:37.557241pt;}
._8_c00357{width:42.304313pt;}
._1e_c00357{width:43.542527pt;}
._15_c00357{width:138.522867pt;}
.fsd_c00357{font-size:19.712000pt;}
.fs7_c00357{font-size:19.888000pt;}
.fs5_c00357{font-size:20.064000pt;}
.fsb_c00357{font-size:23.936000pt;}
.fs3_c00357{font-size:25.168000pt;}
.fs4_c00357{font-size:29.920000pt;}
.fs1_c00357{font-size:30.272176pt;}
.fsa_c00357{font-size:33.792176pt;}
.fs0_c00357{font-size:35.200000pt;}
.fsc_c00357{font-size:43.084976pt;}
.fs9_c00357{font-size:44.352176pt;}
.fse_c00357{font-size:45.619376pt;}
.fs6_c00357{font-size:67.232176pt;}
.fs8_c00357{font-size:68.992176pt;}
.fs2_c00357{font-size:76.032176pt;}
.y0_c00357{bottom:0.000000pt;}
.y1_c00357{bottom:64.000000pt;}
.y27_c00357{bottom:126.840120pt;}
.y26_c00357{bottom:185.131320pt;}
.y25_c00357{bottom:185.133256pt;}
.y23_c00357{bottom:216.176312pt;}
.y24_c00357{bottom:216.177720pt;}
.y22_c00357{bottom:245.002120pt;}
.y21_c00357{bottom:275.419320pt;}
.y20_c00357{bottom:304.248120pt;}
.y1f_c00357{bottom:361.267720pt;}
.y2_c00357{bottom:379.642120pt;}
.y1e_c00357{bottom:390.413320pt;}
.y1d_c00357{bottom:403.089720pt;}
.y1c_c00357{bottom:419.558920pt;}
.y1b_c00357{bottom:448.708920pt;}
.y1a_c00357{bottom:473.419320pt;}
.y19_c00357{bottom:476.582920pt;}
.y18_c00357{bottom:476.904120pt;}
.y17_c00357{bottom:490.838920pt;}
.y16_c00357{bottom:506.049720pt;}
.y15_c00357{bottom:506.050160pt;}
.y14_c00357{bottom:535.195320pt;}
.y13_c00357{bottom:564.024120pt;}
.y12_c00357{bottom:605.837320pt;}
.y11_c00357{bottom:621.360520pt;}
.y10_c00357{bottom:653.678520pt;}
.yf_c00357{bottom:682.186120pt;}
.ye_c00357{bottom:704.995720pt;}
.yb_c00357{bottom:711.019320pt;}
.yd_c00357{bottom:712.282120pt;}
.yc_c00357{bottom:717.984520pt;}
.ya_c00357{bottom:740.798520pt;}
.y9_c00357{bottom:769.306120pt;}
.y8_c00357{bottom:798.451720pt;}
.y7_c00357{bottom:827.280520pt;}
.y6_c00357{bottom:904.896520pt;}
.y5_c00357{bottom:913.450120pt;}
.y4_c00357{bottom:957.168520pt;}
.y3_c00357{bottom:960.019720pt;}
.he_c00357{height:20.559000pt;}
.h6_c00357{height:20.926125pt;}
.hc_c00357{height:24.964500pt;}
.h4_c00357{height:26.249438pt;}
.hd_c00357{height:28.694594pt;}
.h5_c00357{height:29.364844pt;}
.ha_c00357{height:29.538549pt;}
.hf_c00357{height:30.382504pt;}
.hb_c00357{height:33.165173pt;}
.h2_c00357{height:36.712500pt;}
.h7_c00357{height:65.984704pt;}
.h10_c00357{height:67.712048pt;}
.h9_c00357{height:71.956684pt;}
.h3_c00357{height:74.621423pt;}
.h8_c00357{height:92.972962pt;}
.h1_c00357{height:994.666667pt;}
.h0_c00357{height:1122.666667pt;}
.w1_c00357{width:702.666667pt;}
.w0_c00357{width:793.333333pt;}
.x0_c00357{left:0.000000pt;}
.x1_c00357{left:45.333333pt;}
.x2_c00357{left:69.935733pt;}
.x19_c00357{left:89.955733pt;}
.x60_c00357{left:90.936933pt;}
.x6c_c00357{left:91.860933pt;}
.x4d_c00357{left:100.339733pt;}
.x55_c00357{left:109.425733pt;}
.x3e_c00357{left:118.661333pt;}
.x5_c00357{left:120.425733pt;}
.x1a_c00357{left:128.684533pt;}
.x6b_c00357{left:134.092133pt;}
.x7_c00357{left:138.500933pt;}
.x4e_c00357{left:145.532133pt;}
.x2c_c00357{left:146.834533pt;}
.x47_c00357{left:148.180933pt;}
.x5a_c00357{left:156.338533pt;}
.x65_c00357{left:157.698133pt;}
.x56_c00357{left:159.330533pt;}
.x48_c00357{left:165.842533pt;}
.x2d_c00357{left:167.017333pt;}
.x8_c00357{left:168.165733pt;}
.x5f_c00357{left:177.405733pt;}
.x4f_c00357{left:179.024933pt;}
.x2e_c00357{left:187.024133pt;}
.x7b_c00357{left:189.250533pt;}
.x6_c00357{left:196.770133pt;}
.x2f_c00357{left:197.962533pt;}
.x49_c00357{left:199.476133pt;}
.x74_c00357{left:205.402933pt;}
.x50_c00357{left:206.863733pt;}
.x3f_c00357{left:215.848533pt;}
.x7a_c00357{left:217.190533pt;}
.x69_c00357{left:221.608133pt;}
.x9_c00357{left:227.006933pt;}
.x57_c00357{left:235.221733pt;}
.x40_c00357{left:236.308533pt;}
.xa_c00357{left:237.263333pt;}
.x71_c00357{left:245.702533pt;}
.x1b_c00357{left:246.762933pt;}
.x25_c00357{left:252.768933pt;}
.x6d_c00357{left:255.180133pt;}
.xb_c00357{left:256.284533pt;}
.x6a_c00357{left:263.100133pt;}
.x75_c00357{left:264.648933pt;}
.x26_c00357{left:266.074533pt;}
.xc_c00357{left:267.002933pt;}
.x38_c00357{left:274.504933pt;}
.x41_c00357{left:275.833733pt;}
.x1c_c00357{left:276.792933pt;}
.x76_c00357{left:285.073733pt;}
.x30_c00357{left:286.041733pt;}
.x42_c00357{left:295.154133pt;}
.x6e_c00357{left:296.196933pt;}
.xd_c00357{left:305.379733pt;}
.x77_c00357{left:314.399733pt;}
.x66_c00357{left:322.341733pt;}
.xe_c00357{left:325.531733pt;}
.x51_c00357{left:327.058533pt;}
.x4a_c00357{left:334.028133pt;}
.x52_c00357{left:336.038933pt;}
.x58_c00357{left:344.090933pt;}
.x39_c00357{left:345.010533pt;}
.x1d_c00357{left:347.104933pt;}
.x27_c00357{left:354.294533pt;}
.xf_c00357{left:356.314133pt;}
.x10_c00357{left:363.525733pt;}
.x1e_c00357{left:364.929333pt;}
.x7c_c00357{left:367.292133pt;}
.x5b_c00357{left:374.081333pt;}
.x43_c00357{left:376.567333pt;}
.x11_c00357{left:383.730533pt;}
.x61_c00357{left:384.887733pt;}
.x44_c00357{left:393.762533pt;}
.x78_c00357{left:403.099333pt;}
.x1f_c00357{left:404.212533pt;}
.x5c_c00357{left:413.989333pt;}
.x7d_c00357{left:422.138133pt;}
.x28_c00357{left:423.229333pt;}
.x45_c00357{left:430.053733pt;}
.x12_c00357{left:433.050133pt;}
.x7e_c00357{left:433.947733pt;}
.x6f_c00357{left:435.492133pt;}
.x67_c00357{left:443.148133pt;}
.x70_c00357{left:444.846533pt;}
.x13_c00357{left:453.628933pt;}
.x5d_c00357{left:455.622133pt;}
.x4b_c00357{left:461.707333pt;}
.x46_c00357{left:462.670933pt;}
.x20_c00357{left:472.843733pt;}
.x31_c00357{left:482.162933pt;}
.x79_c00357{left:490.562533pt;}
.x72_c00357{left:491.658133pt;}
.x14_c00357{left:492.634933pt;}
.x21_c00357{left:500.990533pt;}
.x3a_c00357{left:502.112533pt;}
.x4c_c00357{left:510.520933pt;}
.x32_c00357{left:511.902533pt;}
.x7f_c00357{left:520.997333pt;}
.x15_c00357{left:521.965333pt;}
.x33_c00357{left:530.950133pt;}
.x53_c00357{left:532.234933pt;}
.x29_c00357{left:541.074533pt;}
.x62_c00357{left:541.972133pt;}
.x22_c00357{left:549.804133pt;}
.x16_c00357{left:551.216533pt;}
.x34_c00357{left:560.795333pt;}
.x5e_c00357{left:561.978933pt;}
.x35_c00357{left:566.154533pt;}
.x2a_c00357{left:570.374133pt;}
.x4_c00357{left:577.532933pt;}
.x23_c00357{left:580.687733pt;}
.x17_c00357{left:581.598533pt;}
.x2b_c00357{left:591.102533pt;}
.x63_c00357{left:593.416933pt;}
.x3_c00357{left:600.584533pt;}
.x59_c00357{left:608.693733pt;}
.x36_c00357{left:610.348133pt;}
.x3d_c00357{left:617.797333pt;}
.x54_c00357{left:619.676133pt;}
.x24_c00357{left:620.877333pt;}
.x73_c00357{left:627.952533pt;}
.x18_c00357{left:629.774133pt;}
.x64_c00357{left:631.388933pt;}
.x3b_c00357{left:636.338933pt;}
.x3c_c00357{left:639.194533pt;}
.x68_c00357{left:640.545333pt;}
.x37_c00357{left:649.235333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_16a2394d80b2f573bfdf0c1b.woff2')format("woff");}.ff1_c00358{font-family:ff1_c00358;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00358;src:url('chunks/assets/font_f863224dc6368ad3f5bf27a5.woff2')format("woff");}.ff2_c00358{font-family:ff2_c00358;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00358;src:url('chunks/assets/font_1c0f1b4b92f242aea2b5d553.woff2')format("woff");}.ff3_c00358{font-family:ff3_c00358;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00358;src:url('chunks/assets/font_c994fe6dfa98d10722652c82.woff2')format("woff");}.ff4_c00358{font-family:ff4_c00358;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00358;src:url('chunks/assets/font_22cc29083274693ff5903437.woff2')format("woff");}.ff5_c00358{font-family:ff5_c00358;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3f_c00358{transform:matrix(0.042858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042858,0.000000,0.000000,0.250000,0,0);}
.m3d_c00358{transform:matrix(0.057144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.057144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.057144,0.000000,0.000000,0.250000,0,0);}
.m84_c00358{transform:matrix(0.080128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080128,0.000000,0.000000,0.250000,0,0);}
.m2d_c00358{transform:matrix(0.085714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085714,0.000000,0.000000,0.250000,0,0);}
.mc6_c00358{transform:matrix(0.086032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086032,0.000000,0.000000,0.250000,0,0);}
.m3e_c00358{transform:matrix(0.092858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092858,0.000000,0.000000,0.250000,0,0);}
.m5_c00358{transform:matrix(0.101378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101378,0.000000,0.000000,0.250000,0,0);}
.m9e_c00358{transform:matrix(0.121429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121429,0.000000,0.000000,0.250000,0,0);}
.mf_c00358{transform:matrix(0.125511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125511,0.000000,0.000000,0.250000,0,0);}
.m74_c00358{transform:matrix(0.127679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127679,0.000000,0.000000,0.250000,0,0);}
.m58_c00358{transform:matrix(0.129901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129901,0.000000,0.000000,0.250000,0,0);}
.m7c_c00358{transform:matrix(0.151460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151460,0.000000,0.000000,0.250000,0,0);}
.mee_c00358{transform:matrix(0.152571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152571,0.000000,0.000000,0.250000,0,0);}
.m73_c00358{transform:matrix(0.154285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154285,0.000000,0.000000,0.250000,0,0);}
.mde_c00358{transform:matrix(0.158929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158929,0.000000,0.000000,0.250000,0,0);}
.m9d_c00358{transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);}
.m85_c00358{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);}
.m57_c00358{transform:matrix(0.176471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176471,0.000000,0.000000,0.250000,0,0);}
.m100_c00358{transform:matrix(0.177033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177033,0.000000,0.000000,0.250000,0,0);}
.m97_c00358{transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);}
.mfa_c00358{transform:matrix(0.184703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184703,0.000000,0.000000,0.250000,0,0);}
.m2c_c00358{transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);}
.mbf_c00358{transform:matrix(0.186861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186861,0.000000,0.000000,0.250000,0,0);}
.m83_c00358{transform:matrix(0.188034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188034,0.000000,0.000000,0.250000,0,0);}
.m40_c00358{transform:matrix(0.189285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189285,0.000000,0.000000,0.250000,0,0);}
.m82_c00358{transform:matrix(0.190704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190704,0.000000,0.000000,0.250000,0,0);}
.m98_c00358{transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);}
.m30_c00358{transform:matrix(0.194336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194336,0.000000,0.000000,0.250000,0,0);}
.me1_c00358{transform:matrix(0.194424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194424,0.000000,0.000000,0.250000,0,0);}
.mf6_c00358{transform:matrix(0.194852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194852,0.000000,0.000000,0.250000,0,0);}
.m78_c00358{transform:matrix(0.194935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194935,0.000000,0.000000,0.250000,0,0);}
.mdd_c00358{transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);}
.m66_c00358{transform:matrix(0.197986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197986,0.000000,0.000000,0.250000,0,0);}
.mdc_c00358{transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);}
.mb2_c00358{transform:matrix(0.200486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200486,0.000000,0.000000,0.250000,0,0);}
.m51_c00358{transform:matrix(0.201102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201102,0.000000,0.000000,0.250000,0,0);}
.m59_c00358{transform:matrix(0.202206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202206,0.000000,0.000000,0.250000,0,0);}
.m9f_c00358{transform:matrix(0.204762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204762,0.000000,0.000000,0.250000,0,0);}
.m38_c00358{transform:matrix(0.208664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208664,0.000000,0.000000,0.250000,0,0);}
.m3c_c00358{transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);}
.m96_c00358{transform:matrix(0.218572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218572,0.000000,0.000000,0.250000,0,0);}
.m49_c00358{transform:matrix(0.237057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237057,0.000000,0.000000,0.250000,0,0);}
.mb4_c00358{transform:matrix(0.238204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238204,0.000000,0.000000,0.250000,0,0);}
.m3a_c00358{transform:matrix(0.242361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242361,0.000000,0.000000,0.250000,0,0);}
.m1_c00358{transform:matrix(0.248247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248247,0.000000,0.000000,0.250000,0,0);}
.mbd_c00358{transform:matrix(0.248503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248503,0.000000,0.000000,0.250000,0,0);}
.m20_c00358{transform:matrix(0.248703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248703,0.000000,0.000000,0.250000,0,0);}
.m0_c00358{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00358{transform:matrix(0.251457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251457,0.000000,0.000000,0.250000,0,0);}
.mc2_c00358{transform:matrix(0.254705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254705,0.000000,0.000000,0.250000,0,0);}
.mf2_c00358{transform:matrix(0.255386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255386,0.000000,0.000000,0.250000,0,0);}
.m10_c00358{transform:matrix(0.255738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255738,0.000000,0.000000,0.250000,0,0);}
.m44_c00358{transform:matrix(0.256391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256391,0.000000,0.000000,0.250000,0,0);}
.mf5_c00358{transform:matrix(0.259704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259704,0.000000,0.000000,0.250000,0,0);}
.m9b_c00358{transform:matrix(0.260642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260642,0.000000,0.000000,0.250000,0,0);}
.mdf_c00358{transform:matrix(0.261820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261820,0.000000,0.000000,0.250000,0,0);}
.m31_c00358{transform:matrix(0.262251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262251,0.000000,0.000000,0.250000,0,0);}
.md2_c00358{transform:matrix(0.262540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262540,0.000000,0.000000,0.250000,0,0);}
.m7a_c00358{transform:matrix(0.262858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262858,0.000000,0.000000,0.250000,0,0);}
.m1d_c00358{transform:matrix(0.264454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264454,0.000000,0.000000,0.250000,0,0);}
.mc7_c00358{transform:matrix(0.265219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265219,0.000000,0.000000,0.250000,0,0);}
.m18_c00358{transform:matrix(0.266029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266029,0.000000,0.000000,0.250000,0,0);}
.me6_c00358{transform:matrix(0.266633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266633,0.000000,0.000000,0.250000,0,0);}
.m65_c00358{transform:matrix(0.267568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267568,0.000000,0.000000,0.250000,0,0);}
.ma7_c00358{transform:matrix(0.268909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268909,0.000000,0.000000,0.250000,0,0);}
.m79_c00358{transform:matrix(0.269499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269499,0.000000,0.000000,0.250000,0,0);}
.m81_c00358{transform:matrix(0.270780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270780,0.000000,0.000000,0.250000,0,0);}
.m48_c00358{transform:matrix(0.270864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270864,0.000000,0.000000,0.250000,0,0);}
.mc4_c00358{transform:matrix(0.271298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271298,0.000000,0.000000,0.250000,0,0);}
.ma5_c00358{transform:matrix(0.272494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272494,0.000000,0.000000,0.250000,0,0);}
.m60_c00358{transform:matrix(0.272576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272576,0.000000,0.000000,0.250000,0,0);}
.me3_c00358{transform:matrix(0.272874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272874,0.000000,0.000000,0.250000,0,0);}
.mff_c00358{transform:matrix(0.274001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274001,0.000000,0.000000,0.250000,0,0);}
.m36_c00358{transform:matrix(0.275889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275889,0.000000,0.000000,0.250000,0,0);}
.m7d_c00358{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);}
.m2a_c00358{transform:matrix(0.278080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278080,0.000000,0.000000,0.250000,0,0);}
.mfc_c00358{transform:matrix(0.278130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278130,0.000000,0.000000,0.250000,0,0);}
.mda_c00358{transform:matrix(0.278509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278509,0.000000,0.000000,0.250000,0,0);}
.m86_c00358{transform:matrix(0.279298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279298,0.000000,0.000000,0.250000,0,0);}
.mb3_c00358{transform:matrix(0.279438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279438,0.000000,0.000000,0.250000,0,0);}
.m6b_c00358{transform:matrix(0.282005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282005,0.000000,0.000000,0.250000,0,0);}
.m42_c00358{transform:matrix(0.282140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282140,0.000000,0.000000,0.250000,0,0);}
.me0_c00358{transform:matrix(0.282226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282226,0.000000,0.000000,0.250000,0,0);}
.m4b_c00358{transform:matrix(0.282582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282582,0.000000,0.000000,0.250000,0,0);}
.m9_c00358{transform:matrix(0.282980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282980,0.000000,0.000000,0.250000,0,0);}
.m2_c00358{transform:matrix(0.283572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283572,0.000000,0.000000,0.250000,0,0);}
.m1a_c00358{transform:matrix(0.283818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283818,0.000000,0.000000,0.250000,0,0);}
.ma6_c00358{transform:matrix(0.284862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284862,0.000000,0.000000,0.250000,0,0);}
.mce_c00358{transform:matrix(0.284935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284935,0.000000,0.000000,0.250000,0,0);}
.m26_c00358{transform:matrix(0.284951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284951,0.000000,0.000000,0.250000,0,0);}
.m9a_c00358{transform:matrix(0.285031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285031,0.000000,0.000000,0.250000,0,0);}
.mae_c00358{transform:matrix(0.285246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285246,0.000000,0.000000,0.250000,0,0);}
.mf8_c00358{transform:matrix(0.285595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285595,0.000000,0.000000,0.250000,0,0);}
.m16_c00358{transform:matrix(0.285629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285629,0.000000,0.000000,0.250000,0,0);}
.m88_c00358{transform:matrix(0.286107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286107,0.000000,0.000000,0.250000,0,0);}
.m15_c00358{transform:matrix(0.286195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286195,0.000000,0.000000,0.250000,0,0);}
.m7_c00358{transform:matrix(0.288034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288034,0.000000,0.000000,0.250000,0,0);}
.m55_c00358{transform:matrix(0.288034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288034,0.000000,0.000000,0.250000,0,0);}
.m68_c00358{transform:matrix(0.288637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288637,0.000000,0.000000,0.250000,0,0);}
.m17_c00358{transform:matrix(0.288875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288875,0.000000,0.000000,0.250000,0,0);}
.md_c00358{transform:matrix(0.289764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289764,0.000000,0.000000,0.250000,0,0);}
.m5d_c00358{transform:matrix(0.290141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290141,0.000000,0.000000,0.250000,0,0);}
.m13_c00358{transform:matrix(0.290232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290232,0.000000,0.000000,0.250000,0,0);}
.md1_c00358{transform:matrix(0.290582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290582,0.000000,0.000000,0.250000,0,0);}
.mdb_c00358{transform:matrix(0.290606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290606,0.000000,0.000000,0.250000,0,0);}
.mcd_c00358{transform:matrix(0.290763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290763,0.000000,0.000000,0.250000,0,0);}
.m2b_c00358{transform:matrix(0.291216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291216,0.000000,0.000000,0.250000,0,0);}
.m52_c00358{transform:matrix(0.291306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291306,0.000000,0.000000,0.250000,0,0);}
.m64_c00358{transform:matrix(0.291376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291376,0.000000,0.000000,0.250000,0,0);}
.mcc_c00358{transform:matrix(0.291403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291403,0.000000,0.000000,0.250000,0,0);}
.mf3_c00358{transform:matrix(0.291762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291762,0.000000,0.000000,0.250000,0,0);}
.m19_c00358{transform:matrix(0.292593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292593,0.000000,0.000000,0.250000,0,0);}
.m75_c00358{transform:matrix(0.293087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293087,0.000000,0.000000,0.250000,0,0);}
.me5_c00358{transform:matrix(0.293135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293135,0.000000,0.000000,0.250000,0,0);}
.m45_c00358{transform:matrix(0.293255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293255,0.000000,0.000000,0.250000,0,0);}
.m5a_c00358{transform:matrix(0.293266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293266,0.000000,0.000000,0.250000,0,0);}
.m6_c00358{transform:matrix(0.294104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294104,0.000000,0.000000,0.250000,0,0);}
.m91_c00358{transform:matrix(0.294390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294390,0.000000,0.000000,0.250000,0,0);}
.mec_c00358{transform:matrix(0.295755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295755,0.000000,0.000000,0.250000,0,0);}
.m50_c00358{transform:matrix(0.296324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296324,0.000000,0.000000,0.250000,0,0);}
.mf4_c00358{transform:matrix(0.297231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297231,0.000000,0.000000,0.250000,0,0);}
.m69_c00358{transform:matrix(0.298512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298512,0.000000,0.000000,0.250000,0,0);}
.m90_c00358{transform:matrix(0.299295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299295,0.000000,0.000000,0.250000,0,0);}
.m8c_c00358{transform:matrix(0.299871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299871,0.000000,0.000000,0.250000,0,0);}
.mb8_c00358{transform:matrix(0.300445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300445,0.000000,0.000000,0.250000,0,0);}
.m41_c00358{transform:matrix(0.300627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300627,0.000000,0.000000,0.250000,0,0);}
.m37_c00358{transform:matrix(0.301506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301506,0.000000,0.000000,0.250000,0,0);}
.ma2_c00358{transform:matrix(0.302585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302585,0.000000,0.000000,0.250000,0,0);}
.m87_c00358{transform:matrix(0.303168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303168,0.000000,0.000000,0.250000,0,0);}
.md7_c00358{transform:matrix(0.303195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303195,0.000000,0.000000,0.250000,0,0);}
.m80_c00358{transform:matrix(0.303251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303251,0.000000,0.000000,0.250000,0,0);}
.mb1_c00358{transform:matrix(0.303441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303441,0.000000,0.000000,0.250000,0,0);}
.ma0_c00358{transform:matrix(0.303694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303694,0.000000,0.000000,0.250000,0,0);}
.md8_c00358{transform:matrix(0.304005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304005,0.000000,0.000000,0.250000,0,0);}
.m56_c00358{transform:matrix(0.304190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304190,0.000000,0.000000,0.250000,0,0);}
.m43_c00358{transform:matrix(0.304621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304621,0.000000,0.000000,0.250000,0,0);}
.ma_c00358{transform:matrix(0.304736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304736,0.000000,0.000000,0.250000,0,0);}
.m95_c00358{transform:matrix(0.305637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305637,0.000000,0.000000,0.250000,0,0);}
.mbc_c00358{transform:matrix(0.305638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305638,0.000000,0.000000,0.250000,0,0);}
.mf0_c00358{transform:matrix(0.306424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306424,0.000000,0.000000,0.250000,0,0);}
.m5f_c00358{transform:matrix(0.307989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307989,0.000000,0.000000,0.250000,0,0);}
.m76_c00358{transform:matrix(0.308856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308856,0.000000,0.000000,0.250000,0,0);}
.me4_c00358{transform:matrix(0.309758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309758,0.000000,0.000000,0.250000,0,0);}
.mab_c00358{transform:matrix(0.310178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310178,0.000000,0.000000,0.250000,0,0);}
.md6_c00358{transform:matrix(0.310648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310648,0.000000,0.000000,0.250000,0,0);}
.m27_c00358{transform:matrix(0.311260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311260,0.000000,0.000000,0.250000,0,0);}
.mbe_c00358{transform:matrix(0.313012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313012,0.000000,0.000000,0.250000,0,0);}
.m53_c00358{transform:matrix(0.313582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313582,0.000000,0.000000,0.250000,0,0);}
.md0_c00358{transform:matrix(0.313610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313610,0.000000,0.000000,0.250000,0,0);}
.mc9_c00358{transform:matrix(0.313677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313677,0.000000,0.000000,0.250000,0,0);}
.m8a_c00358{transform:matrix(0.313913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313913,0.000000,0.000000,0.250000,0,0);}
.m4e_c00358{transform:matrix(0.315184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315184,0.000000,0.000000,0.250000,0,0);}
.m93_c00358{transform:matrix(0.315706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315706,0.000000,0.000000,0.250000,0,0);}
.m54_c00358{transform:matrix(0.316253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316253,0.000000,0.000000,0.250000,0,0);}
.me8_c00358{transform:matrix(0.317480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317480,0.000000,0.000000,0.250000,0,0);}
.maf_c00358{transform:matrix(0.318686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318686,0.000000,0.000000,0.250000,0,0);}
.m1e_c00358{transform:matrix(0.318876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318876,0.000000,0.000000,0.250000,0,0);}
.mb_c00358{transform:matrix(0.319036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319036,0.000000,0.000000,0.250000,0,0);}
.m8f_c00358{transform:matrix(0.319129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319129,0.000000,0.000000,0.250000,0,0);}
.m28_c00358{transform:matrix(0.319207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319207,0.000000,0.000000,0.250000,0,0);}
.m6f_c00358{transform:matrix(0.319713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319713,0.000000,0.000000,0.250000,0,0);}
.m5b_c00358{transform:matrix(0.319909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319909,0.000000,0.000000,0.250000,0,0);}
.m6e_c00358{transform:matrix(0.320799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320799,0.000000,0.000000,0.250000,0,0);}
.m103_c00358{transform:matrix(0.320998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320998,0.000000,0.000000,0.250000,0,0);}
.m47_c00358{transform:matrix(0.321305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321305,0.000000,0.000000,0.250000,0,0);}
.m67_c00358{transform:matrix(0.321601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321601,0.000000,0.000000,0.250000,0,0);}
.mef_c00358{transform:matrix(0.322096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322096,0.000000,0.000000,0.250000,0,0);}
.m2f_c00358{transform:matrix(0.322541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322541,0.000000,0.000000,0.250000,0,0);}
.mb7_c00358{transform:matrix(0.322679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322679,0.000000,0.000000,0.250000,0,0);}
.m3b_c00358{transform:matrix(0.324291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324291,0.000000,0.000000,0.250000,0,0);}
.m8_c00358{transform:matrix(0.324421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324421,0.000000,0.000000,0.250000,0,0);}
.m77_c00358{transform:matrix(0.324536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324536,0.000000,0.000000,0.250000,0,0);}
.ma3_c00358{transform:matrix(0.324884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324884,0.000000,0.000000,0.250000,0,0);}
.mcf_c00358{transform:matrix(0.325010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325010,0.000000,0.000000,0.250000,0,0);}
.mc5_c00358{transform:matrix(0.325012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325012,0.000000,0.000000,0.250000,0,0);}
.m5e_c00358{transform:matrix(0.325947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325947,0.000000,0.000000,0.250000,0,0);}
.mc_c00358{transform:matrix(0.326066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326066,0.000000,0.000000,0.250000,0,0);}
.mfb_c00358{transform:matrix(0.326387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326387,0.000000,0.000000,0.250000,0,0);}
.m35_c00358{transform:matrix(0.327194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327194,0.000000,0.000000,0.250000,0,0);}
.ma1_c00358{transform:matrix(0.327736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327736,0.000000,0.000000,0.250000,0,0);}
.mc1_c00358{transform:matrix(0.328411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328411,0.000000,0.000000,0.250000,0,0);}
.m8e_c00358{transform:matrix(0.328570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328570,0.000000,0.000000,0.250000,0,0);}
.m6c_c00358{transform:matrix(0.328740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328740,0.000000,0.000000,0.250000,0,0);}
.ma8_c00358{transform:matrix(0.329673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329673,0.000000,0.000000,0.250000,0,0);}
.m63_c00358{transform:matrix(0.329768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329768,0.000000,0.000000,0.250000,0,0);}
.mc8_c00358{transform:matrix(0.329920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329920,0.000000,0.000000,0.250000,0,0);}
.m99_c00358{transform:matrix(0.330076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330076,0.000000,0.000000,0.250000,0,0);}
.ma4_c00358{transform:matrix(0.330150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330150,0.000000,0.000000,0.250000,0,0);}
.m62_c00358{transform:matrix(0.330202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330202,0.000000,0.000000,0.250000,0,0);}
.m8d_c00358{transform:matrix(0.330814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330814,0.000000,0.000000,0.250000,0,0);}
.m70_c00358{transform:matrix(0.330958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330958,0.000000,0.000000,0.250000,0,0);}
.m46_c00358{transform:matrix(0.331143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331143,0.000000,0.000000,0.250000,0,0);}
.m9c_c00358{transform:matrix(0.331152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331152,0.000000,0.000000,0.250000,0,0);}
.m3_c00358{transform:matrix(0.332014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332014,0.000000,0.000000,0.250000,0,0);}
.m23_c00358{transform:matrix(0.332888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332888,0.000000,0.000000,0.250000,0,0);}
.m7f_c00358{transform:matrix(0.334334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334334,0.000000,0.000000,0.250000,0,0);}
.mfe_c00358{transform:matrix(0.334618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334618,0.000000,0.000000,0.250000,0,0);}
.m7b_c00358{transform:matrix(0.335029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335029,0.000000,0.000000,0.250000,0,0);}
.me7_c00358{transform:matrix(0.335335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335335,0.000000,0.000000,0.250000,0,0);}
.med_c00358{transform:matrix(0.335815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335815,0.000000,0.000000,0.250000,0,0);}
.mbb_c00358{transform:matrix(0.336675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336675,0.000000,0.000000,0.250000,0,0);}
.md5_c00358{transform:matrix(0.336901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336901,0.000000,0.000000,0.250000,0,0);}
.m22_c00358{transform:matrix(0.337661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337661,0.000000,0.000000,0.250000,0,0);}
.m34_c00358{transform:matrix(0.338123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338123,0.000000,0.000000,0.250000,0,0);}
.m6d_c00358{transform:matrix(0.339141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339141,0.000000,0.000000,0.250000,0,0);}
.m61_c00358{transform:matrix(0.339201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339201,0.000000,0.000000,0.250000,0,0);}
.mc3_c00358{transform:matrix(0.340099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340099,0.000000,0.000000,0.250000,0,0);}
.me_c00358{transform:matrix(0.340705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340705,0.000000,0.000000,0.250000,0,0);}
.m94_c00358{transform:matrix(0.341936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341936,0.000000,0.000000,0.250000,0,0);}
.me9_c00358{transform:matrix(0.343255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343255,0.000000,0.000000,0.250000,0,0);}
.m5c_c00358{transform:matrix(0.343690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343690,0.000000,0.000000,0.250000,0,0);}
.md9_c00358{transform:matrix(0.344994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344994,0.000000,0.000000,0.250000,0,0);}
.mb0_c00358{transform:matrix(0.345498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345498,0.000000,0.000000,0.250000,0,0);}
.m32_c00358{transform:matrix(0.346100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346100,0.000000,0.000000,0.250000,0,0);}
.m104_c00358{transform:matrix(0.346819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346819,0.000000,0.000000,0.250000,0,0);}
.m39_c00358{transform:matrix(0.348628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348628,0.000000,0.000000,0.250000,0,0);}
.meb_c00358{transform:matrix(0.349386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349386,0.000000,0.000000,0.250000,0,0);}
.m21_c00358{transform:matrix(0.349945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349945,0.000000,0.000000,0.250000,0,0);}
.m8b_c00358{transform:matrix(0.350628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350628,0.000000,0.000000,0.250000,0,0);}
.ma9_c00358{transform:matrix(0.353886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353886,0.000000,0.000000,0.250000,0,0);}
.m72_c00358{transform:matrix(0.355212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355212,0.000000,0.000000,0.250000,0,0);}
.m101_c00358{transform:matrix(0.355980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355980,0.000000,0.000000,0.250000,0,0);}
.mea_c00358{transform:matrix(0.356182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356182,0.000000,0.000000,0.250000,0,0);}
.m92_c00358{transform:matrix(0.356960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356960,0.000000,0.000000,0.250000,0,0);}
.m6a_c00358{transform:matrix(0.358036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358036,0.000000,0.000000,0.250000,0,0);}
.m71_c00358{transform:matrix(0.359584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359584,0.000000,0.000000,0.250000,0,0);}
.m1f_c00358{transform:matrix(0.362286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362286,0.000000,0.000000,0.250000,0,0);}
.m11_c00358{transform:matrix(0.362344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362344,0.000000,0.000000,0.250000,0,0);}
.mb9_c00358{transform:matrix(0.363695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363695,0.000000,0.000000,0.250000,0,0);}
.m7e_c00358{transform:matrix(0.364520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364520,0.000000,0.000000,0.250000,0,0);}
.md3_c00358{transform:matrix(0.364667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364667,0.000000,0.000000,0.250000,0,0);}
.mca_c00358{transform:matrix(0.364885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364885,0.000000,0.000000,0.250000,0,0);}
.m33_c00358{transform:matrix(0.367077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367077,0.000000,0.000000,0.250000,0,0);}
.mac_c00358{transform:matrix(0.368114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368114,0.000000,0.000000,0.250000,0,0);}
.mc0_c00358{transform:matrix(0.369524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369524,0.000000,0.000000,0.250000,0,0);}
.m2e_c00358{transform:matrix(0.370404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370404,0.000000,0.000000,0.250000,0,0);}
.maa_c00358{transform:matrix(0.375520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375520,0.000000,0.000000,0.250000,0,0);}
.mb6_c00358{transform:matrix(0.376560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376560,0.000000,0.000000,0.250000,0,0);}
.m4a_c00358{transform:matrix(0.376920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376920,0.000000,0.000000,0.250000,0,0);}
.m89_c00358{transform:matrix(0.377495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377495,0.000000,0.000000,0.250000,0,0);}
.m14_c00358{transform:matrix(0.379936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379936,0.000000,0.000000,0.250000,0,0);}
.mba_c00358{transform:matrix(0.383917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383917,0.000000,0.000000,0.250000,0,0);}
.mf9_c00358{transform:matrix(0.388231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388231,0.000000,0.000000,0.250000,0,0);}
.m24_c00358{transform:matrix(0.388961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388961,0.000000,0.000000,0.250000,0,0);}
.mfd_c00358{transform:matrix(0.389989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389989,0.000000,0.000000,0.250000,0,0);}
.m4f_c00358{transform:matrix(0.392453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392453,0.000000,0.000000,0.250000,0,0);}
.m102_c00358{transform:matrix(0.395285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395285,0.000000,0.000000,0.250000,0,0);}
.m25_c00358{transform:matrix(0.396960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396960,0.000000,0.000000,0.250000,0,0);}
.m1c_c00358{transform:matrix(0.400402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400402,0.000000,0.000000,0.250000,0,0);}
.mcb_c00358{transform:matrix(0.407016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407016,0.000000,0.000000,0.250000,0,0);}
.mf1_c00358{transform:matrix(0.407426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407426,0.000000,0.000000,0.250000,0,0);}
.m12_c00358{transform:matrix(0.414553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414553,0.000000,0.000000,0.250000,0,0);}
.md4_c00358{transform:matrix(0.422091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422091,0.000000,0.000000,0.250000,0,0);}
.m4_c00358{transform:matrix(0.438526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438526,0.000000,0.000000,0.250000,0,0);}
.me2_c00358{transform:matrix(0.446086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446086,0.000000,0.000000,0.250000,0,0);}
.m29_c00358{transform:matrix(0.446285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446285,0.000000,0.000000,0.250000,0,0);}
.mf7_c00358{transform:matrix(0.447926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447926,0.000000,0.000000,0.250000,0,0);}
.m1b_c00358{transform:matrix(0.448304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448304,0.000000,0.000000,0.250000,0,0);}
.mb5_c00358{transform:matrix(0.456063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456063,0.000000,0.000000,0.250000,0,0);}
.m4c_c00358{transform:matrix(0.456763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456763,0.000000,0.000000,0.250000,0,0);}
.mad_c00358{transform:matrix(0.464508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464508,0.000000,0.000000,0.250000,0,0);}
.v0_c00358{vertical-align:0.000000px;}
.v1_c00358{vertical-align:4.276800px;}
.ls2_c00358{letter-spacing:-2.993767px;}
.ls5_c00358{letter-spacing:-2.508667px;}
.ls6_c00358{letter-spacing:-2.494800px;}
.ls15_c00358{letter-spacing:-1.870749px;}
.ls16_c00358{letter-spacing:-1.829520px;}
.lsc_c00358{letter-spacing:-1.288980px;}
.lsf_c00358{letter-spacing:-1.118149px;}
.ls4_c00358{letter-spacing:-0.623583px;}
.lsa_c00358{letter-spacing:-0.329711px;}
.ls1_c00358{letter-spacing:0.000000px;}
.lsb_c00358{letter-spacing:1.261501px;}
.ls13_c00358{letter-spacing:2.343812px;}
.ls8_c00358{letter-spacing:2.910054px;}
.ls11_c00358{letter-spacing:3.326400px;}
.ls12_c00358{letter-spacing:3.455110px;}
.ls0_c00358{letter-spacing:3.476296px;}
.ls3_c00358{letter-spacing:3.583810px;}
.lsd_c00358{letter-spacing:3.702610px;}
.ls14_c00358{letter-spacing:3.920400px;}
.lse_c00358{letter-spacing:4.276810px;}
.ls9_c00358{letter-spacing:48.470598px;}
.ls7_c00358{letter-spacing:49.896198px;}
.ls10_c00358{letter-spacing:55.598598px;}
.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;}
}
.ws2_c00358{word-spacing:-21.395345px;}
.wsa_c00358{word-spacing:-20.262861px;}
.ws0_c00358{word-spacing:-17.919050px;}
.ws3_c00358{word-spacing:-3.942329px;}
.ws6_c00358{word-spacing:-3.510281px;}
.ws1_c00358{word-spacing:-2.580265px;}
.ws9_c00358{word-spacing:-2.579681px;}
.wsb_c00358{word-spacing:0.000000px;}
.ws5_c00358{word-spacing:3.225503px;}
.ws8_c00358{word-spacing:4.515681px;}
.ws7_c00358{word-spacing:4.586357px;}
.ws4_c00358{word-spacing:6.378267px;}
._1f_c00358{margin-left:-17.488614px;}
._2_c00358{margin-left:-10.464795px;}
._12_c00358{margin-left:-7.168535px;}
._23_c00358{margin-left:-6.021125px;}
._8_c00358{margin-left:-4.802754px;}
._b_c00358{margin-left:-2.580424px;}
._10_c00358{width:1.648823px;}
._20_c00358{width:4.515698px;}
._21_c00358{width:5.949218px;}
._0_c00358{width:7.454403px;}
._7_c00358{width:9.533018px;}
._c_c00358{width:11.109681px;}
._1_c00358{width:12.185019px;}
._a_c00358{width:13.403511px;}
._1b_c00358{width:15.338587px;}
._15_c00358{width:16.413931px;}
._16_c00358{width:17.561357px;}
._3_c00358{width:19.137602px;}
._17_c00358{width:20.140890px;}
._11_c00358{width:21.287915px;}
._f_c00358{width:22.721435px;}
._5_c00358{width:24.154757px;}
._14_c00358{width:25.588277px;}
._18_c00358{width:26.592137px;}
._9_c00358{width:30.343549px;}
._13_c00358{width:31.885772px;}
._d_c00358{width:33.186037px;}
._e_c00358{width:34.547893px;}
._1d_c00358{width:36.268183px;}
._1e_c00358{width:37.271779px;}
._6_c00358{width:38.776975px;}
._1a_c00358{width:39.780439px;}
._4_c00358{width:41.543667px;}
._1c_c00358{width:43.650981px;}
._22_c00358{width:281.318400px;}
._19_c00358{width:831.461301px;}
.fc0_c00358{color:transparent;}
.fsf_c00358{font-size:22.176000px;}
.fs8_c00358{font-size:26.928000px;}
.fs2_c00358{font-size:27.720000px;}
.fs0_c00358{font-size:33.264000px;}
.fs7_c00358{font-size:36.828000px;}
.fs6_c00358{font-size:48.470598px;}
.fs5_c00358{font-size:49.896198px;}
.fs11_c00358{font-size:52.272000px;}
.fs13_c00358{font-size:53.856198px;}
.fs12_c00358{font-size:54.450000px;}
.fsa_c00358{font-size:55.598598px;}
.fse_c00358{font-size:60.984000px;}
.fsb_c00358{font-size:66.528000px;}
.fsc_c00358{font-size:69.102198px;}
.fs4_c00358{font-size:71.280000px;}
.fs3_c00358{font-size:71.676198px;}
.fs9_c00358{font-size:74.052198px;}
.fsd_c00358{font-size:74.448000px;}
.fs10_c00358{font-size:78.408000px;}
.fs1_c00358{font-size:85.536198px;}
.y0_c00358{bottom:0.000000px;}
.y1_c00358{bottom:76.500000px;}
.y24_c00358{bottom:133.205535px;}
.y20_c00358{bottom:133.561935px;}
.y23_c00358{bottom:133.567776px;}
.y1f_c00358{bottom:160.291935px;}
.y22_c00358{bottom:163.850985px;}
.y1e_c00358{bottom:164.207385px;}
.y21_c00358{bottom:173.117385px;}
.y1d_c00358{bottom:229.077135px;}
.y1c_c00358{bottom:264.360735px;}
.y1b_c00358{bottom:280.037385px;}
.y1a_c00358{bottom:299.644335px;}
.y19_c00358{bottom:332.784585px;}
.y18_c00358{bottom:366.998985px;}
.y17_c00358{bottom:399.431385px;}
.y16_c00358{bottom:431.507385px;}
.y2_c00358{bottom:452.891385px;}
.y15_c00358{bottom:496.020735px;}
.y14_c00358{bottom:528.804585px;}
.y13_c00358{bottom:561.241935px;}
.y12_c00358{bottom:594.382185px;}
.y11_c00358{bottom:627.170985px;}
.y10_c00358{bottom:643.208985px;}
.yf_c00358{bottom:659.251935px;}
.ye_c00358{bottom:691.684335px;}
.yd_c00358{bottom:725.898735px;}
.yc_c00358{bottom:757.969785px;}
.yb_c00358{bottom:790.402185px;}
.ya_c00358{bottom:822.834585px;}
.y8_c00358{bottom:855.620415px;}
.y9_c00358{bottom:855.623385px;}
.y7_c00358{bottom:888.412185px;}
.y6_c00358{bottom:900.891135px;}
.y5_c00358{bottom:920.844585px;}
.y4_c00358{bottom:1018.854585px;}
.y3_c00358{bottom:1070.532585px;}
.h10_c00358{height:23.128875px;}
.ha_c00358{height:28.085063px;}
.h4_c00358{height:28.911094px;}
.h8_c00358{height:32.281418px;}
.h7_c00358{height:33.230868px;}
.h2_c00358{height:34.693313px;}
.h9_c00358{height:36.144668px;}
.hc_c00358{height:37.028666px;}
.h12_c00358{height:51.302109px;}
.h13_c00358{height:56.789648px;}
.hd_c00358{height:65.293594px;}
.he_c00358{height:69.642059px;}
.h6_c00358{height:69.957422px;}
.h5_c00358{height:70.346269px;}
.hb_c00358{height:72.642024px;}
.hf_c00358{height:73.030289px;}
.h11_c00358{height:76.953164px;}
.h3_c00358{height:83.949101px;}
.h1_c00358{height:1110.000000px;}
.h0_c00358{height:1263.000000px;}
.w1_c00358{width:775.500000px;}
.w0_c00358{width:892.500000px;}
.x0_c00358{left:0.000000px;}
.x1_c00358{left:58.500000px;}
.x2_c00358{left:96.442485px;}
.x6_c00358{left:100.689585px;}
.x3e_c00358{left:102.412185px;}
.x63_c00358{left:111.846885px;}
.x7a_c00358{left:113.480385px;}
.x7_c00358{left:122.019135px;}
.x2a_c00358{left:123.048735px;}
.x76_c00358{left:124.157535px;}
.x5c_c00358{left:132.527985px;}
.x1b_c00358{left:133.765485px;}
.x8_c00358{left:143.254635px;}
.x80_c00358{left:144.932685px;}
.x64_c00358{left:146.284035px;}
.x50_c00358{left:149.387685px;}
.x49_c00358{left:155.169285px;}
.x62_c00358{left:162.322035px;}
.x1c_c00358{left:165.376185px;}
.x65_c00358{left:166.866135px;}
.x77_c00358{left:176.018685px;}
.x1d_c00358{left:177.063135px;}
.x5_c00358{left:182.711085px;}
.x2b_c00358{left:186.735435px;}
.x34_c00358{left:188.651085px;}
.x9_c00358{left:198.461985px;}
.x35_c00358{left:210.084585px;}
.x3f_c00358{left:220.806285px;}
.xa_c00358{left:222.182385px;}
.x7e_c00358{left:229.424235px;}
.x5e_c00358{left:231.527985px;}
.x4a_c00358{left:232.874385px;}
.x66_c00358{left:243.200085px;}
.x6f_c00358{left:251.327985px;}
.x4b_c00358{left:253.347585px;}
.x1e_c00358{left:254.986035px;}
.x36_c00358{left:265.509735px;}
.x7c_c00358{left:266.573985px;}
.xb_c00358{left:276.464085px;}
.x6d_c00358{left:277.983735px;}
.x69_c00358{left:279.176685px;}
.x37_c00358{left:286.844235px;}
.x73_c00358{left:288.160935px;}
.x2c_c00358{left:289.992435px;}
.xc_c00358{left:298.214385px;}
.x83_c00358{left:299.917185px;}
.xd_c00358{left:308.584635px;}
.x2d_c00358{left:310.638885px;}
.x40_c00358{left:320.558685px;}
.xe_c00358{left:321.583335px;}
.x2e_c00358{left:331.250685px;}
.x1f_c00358{left:332.300085px;}
.x38_c00358{left:343.011885px;}
.xf_c00358{left:353.689035px;}
.x39_c00358{left:354.728535px;}
.x41_c00358{left:364.737435px;}
.x67_c00358{left:365.811585px;}
.x51_c00358{left:376.345185px;}
.x68_c00358{left:385.923435px;}
.x10_c00358{left:387.235185px;}
.x4c_c00358{left:398.154885px;}
.x7f_c00358{left:399.580485px;}
.x6b_c00358{left:408.059835px;}
.x20_c00358{left:409.628985px;}
.x42_c00358{left:419.994285px;}
.x3a_c00358{left:421.409985px;}
.x52_c00358{left:422.929635px;}
.x11_c00358{left:432.042585px;}
.x4d_c00358{left:441.393135px;}
.x53_c00358{left:442.902885px;}
.x21_c00358{left:452.941485px;}
.x84_c00358{left:456.881685px;}
.x4e_c00358{left:463.262235px;}
.x54_c00358{left:464.935335px;}
.x3b_c00358{left:474.310635px;}
.x12_c00358{left:475.394685px;}
.x55_c00358{left:476.622285px;}
.x43_c00358{left:478.280535px;}
.x44_c00358{left:482.913735px;}
.x45_c00358{left:485.403585px;}
.x22_c00358{left:486.972735px;}
.x70_c00358{left:488.947785px;}
.x78_c00358{left:495.021435px;}
.x56_c00358{left:497.451885px;}
.x7b_c00358{left:498.679485px;}
.x13_c00358{left:508.727985px;}
.x5f_c00358{left:511.420785px;}
.x2f_c00358{left:519.796185px;}
.x74_c00358{left:520.890135px;}
.x81_c00358{left:522.924585px;}
.x46_c00358{left:529.592235px;}
.x57_c00358{left:531.017835px;}
.x14_c00358{left:542.110785px;}
.x7d_c00358{left:551.832585px;}
.x30_c00358{left:553.520535px;}
.x23_c00358{left:563.623485px;}
.x6e_c00358{left:565.009485px;}
.x82_c00358{left:566.286585px;}
.x6c_c00358{left:574.142235px;}
.x15_c00358{left:575.340135px;}
.x24_c00358{left:585.096585px;}
.x3c_c00358{left:586.393485px;}
.x47_c00358{left:596.402385px;}
.x58_c00358{left:598.441785px;}
.x71_c00358{left:599.788185px;}
.x25_c00358{left:606.698385px;}
.x16_c00358{left:607.965585px;}
.x31_c00358{left:610.925685px;}
.x26_c00358{left:619.127835px;}
.x75_c00358{left:620.578185px;}
.x32_c00358{left:629.770335px;}
.x79_c00358{left:630.780135px;}
.x27_c00358{left:640.962285px;}
.x6a_c00358{left:641.981985px;}
.x17_c00358{left:652.703685px;}
.x72_c00358{left:653.797635px;}
.x28_c00358{left:663.073935px;}
.x4f_c00358{left:664.440135px;}
.x59_c00358{left:673.221435px;}
.x3_c00358{left:674.750985px;}
.x29_c00358{left:684.943035px;}
.x4_c00358{left:686.155785px;}
.x60_c00358{left:688.170435px;}
.x48_c00358{left:694.961835px;}
.x18_c00358{left:696.352785px;}
.x1a_c00358{left:699.768285px;}
.x5a_c00358{left:707.604135px;}
.x3d_c00358{left:708.608985px;}
.x33_c00358{left:717.731835px;}
.x61_c00358{left:720.023685px;}
.x5d_c00358{left:729.141585px;}
.x5b_c00358{left:730.695885px;}
.x19_c00358{left:743.501535px;}
@media print{
.v0_c00358{vertical-align:0.000000pt;}
.v1_c00358{vertical-align:3.801600pt;}
.ls2_c00358{letter-spacing:-2.661126pt;}
.ls5_c00358{letter-spacing:-2.229926pt;}
.ls6_c00358{letter-spacing:-2.217600pt;}
.ls15_c00358{letter-spacing:-1.662888pt;}
.ls16_c00358{letter-spacing:-1.626240pt;}
.lsc_c00358{letter-spacing:-1.145760pt;}
.lsf_c00358{letter-spacing:-0.993910pt;}
.ls4_c00358{letter-spacing:-0.554296pt;}
.lsa_c00358{letter-spacing:-0.293076pt;}
.ls1_c00358{letter-spacing:0.000000pt;}
.lsb_c00358{letter-spacing:1.121334pt;}
.ls13_c00358{letter-spacing:2.083388pt;}
.ls8_c00358{letter-spacing:2.586714pt;}
.ls11_c00358{letter-spacing:2.956800pt;}
.ls12_c00358{letter-spacing:3.071209pt;}
.ls0_c00358{letter-spacing:3.090041pt;}
.ls3_c00358{letter-spacing:3.185609pt;}
.lsd_c00358{letter-spacing:3.291209pt;}
.ls14_c00358{letter-spacing:3.484800pt;}
.lse_c00358{letter-spacing:3.801609pt;}
.ls9_c00358{letter-spacing:43.084976pt;}
.ls7_c00358{letter-spacing:44.352176pt;}
.ls10_c00358{letter-spacing:49.420976pt;}
.ws2_c00358{word-spacing:-19.018085pt;}
.wsa_c00358{word-spacing:-18.011432pt;}
.ws0_c00358{word-spacing:-15.928044pt;}
.ws3_c00358{word-spacing:-3.504292pt;}
.ws6_c00358{word-spacing:-3.120250pt;}
.ws1_c00358{word-spacing:-2.293568pt;}
.ws9_c00358{word-spacing:-2.293050pt;}
.wsb_c00358{word-spacing:0.000000pt;}
.ws5_c00358{word-spacing:2.867113pt;}
.ws8_c00358{word-spacing:4.013939pt;}
.ws7_c00358{word-spacing:4.076761pt;}
.ws4_c00358{word-spacing:5.669571pt;}
._1f_c00358{margin-left:-15.545435pt;}
._2_c00358{margin-left:-9.302040pt;}
._12_c00358{margin-left:-6.372031pt;}
._23_c00358{margin-left:-5.352111pt;}
._8_c00358{margin-left:-4.269115pt;}
._b_c00358{margin-left:-2.293710pt;}
._10_c00358{width:1.465620pt;}
._20_c00358{width:4.013954pt;}
._21_c00358{width:5.288194pt;}
._0_c00358{width:6.626136pt;}
._7_c00358{width:8.473794pt;}
._c_c00358{width:9.875272pt;}
._1_c00358{width:10.831128pt;}
._a_c00358{width:11.914232pt;}
._1b_c00358{width:13.634300pt;}
._15_c00358{width:14.590160pt;}
._16_c00358{width:15.610095pt;}
._3_c00358{width:17.011202pt;}
._17_c00358{width:17.903013pt;}
._11_c00358{width:18.922591pt;}
._f_c00358{width:20.196831pt;}
._5_c00358{width:21.470895pt;}
._14_c00358{width:22.745135pt;}
._18_c00358{width:23.637455pt;}
._9_c00358{width:26.972044pt;}
._13_c00358{width:28.342908pt;}
._d_c00358{width:29.498700pt;}
._e_c00358{width:30.709238pt;}
._1d_c00358{width:32.238384pt;}
._1e_c00358{width:33.130470pt;}
._6_c00358{width:34.468422pt;}
._1a_c00358{width:35.360390pt;}
._4_c00358{width:36.927704pt;}
._1c_c00358{width:38.800872pt;}
._22_c00358{width:250.060800pt;}
._19_c00358{width:739.076712pt;}
.fsf_c00358{font-size:19.712000pt;}
.fs8_c00358{font-size:23.936000pt;}
.fs2_c00358{font-size:24.640000pt;}
.fs0_c00358{font-size:29.568000pt;}
.fs7_c00358{font-size:32.736000pt;}
.fs6_c00358{font-size:43.084976pt;}
.fs5_c00358{font-size:44.352176pt;}
.fs11_c00358{font-size:46.464000pt;}
.fs13_c00358{font-size:47.872176pt;}
.fs12_c00358{font-size:48.400000pt;}
.fsa_c00358{font-size:49.420976pt;}
.fse_c00358{font-size:54.208000pt;}
.fsb_c00358{font-size:59.136000pt;}
.fsc_c00358{font-size:61.424176pt;}
.fs4_c00358{font-size:63.360000pt;}
.fs3_c00358{font-size:63.712176pt;}
.fs9_c00358{font-size:65.824176pt;}
.fsd_c00358{font-size:66.176000pt;}
.fs10_c00358{font-size:69.696000pt;}
.fs1_c00358{font-size:76.032176pt;}
.y0_c00358{bottom:0.000000pt;}
.y1_c00358{bottom:68.000000pt;}
.y24_c00358{bottom:118.404920pt;}
.y20_c00358{bottom:118.721720pt;}
.y23_c00358{bottom:118.726912pt;}
.y1f_c00358{bottom:142.481720pt;}
.y22_c00358{bottom:145.645320pt;}
.y1e_c00358{bottom:145.962120pt;}
.y21_c00358{bottom:153.882120pt;}
.y1d_c00358{bottom:203.624120pt;}
.y1c_c00358{bottom:234.987320pt;}
.y1b_c00358{bottom:248.922120pt;}
.y1a_c00358{bottom:266.350520pt;}
.y19_c00358{bottom:295.808520pt;}
.y18_c00358{bottom:326.221320pt;}
.y17_c00358{bottom:355.050120pt;}
.y16_c00358{bottom:383.562120pt;}
.y2_c00358{bottom:402.570120pt;}
.y15_c00358{bottom:440.907320pt;}
.y14_c00358{bottom:470.048520pt;}
.y13_c00358{bottom:498.881720pt;}
.y12_c00358{bottom:528.339720pt;}
.y11_c00358{bottom:557.485320pt;}
.y10_c00358{bottom:571.741320pt;}
.yf_c00358{bottom:586.001720pt;}
.ye_c00358{bottom:614.830520pt;}
.yd_c00358{bottom:645.243320pt;}
.yc_c00358{bottom:673.750920pt;}
.yb_c00358{bottom:702.579720pt;}
.ya_c00358{bottom:731.408520pt;}
.y8_c00358{bottom:760.551480pt;}
.y9_c00358{bottom:760.554120pt;}
.y7_c00358{bottom:789.699720pt;}
.y6_c00358{bottom:800.792120pt;}
.y5_c00358{bottom:818.528520pt;}
.y4_c00358{bottom:905.648520pt;}
.y3_c00358{bottom:951.584520pt;}
.h10_c00358{height:20.559000pt;}
.ha_c00358{height:24.964500pt;}
.h4_c00358{height:25.698750pt;}
.h8_c00358{height:28.694594pt;}
.h7_c00358{height:29.538549pt;}
.h2_c00358{height:30.838500pt;}
.h9_c00358{height:32.128594pt;}
.hc_c00358{height:32.914370pt;}
.h12_c00358{height:45.601875pt;}
.h13_c00358{height:50.479688pt;}
.hd_c00358{height:58.038750pt;}
.he_c00358{height:61.904052pt;}
.h6_c00358{height:62.184375pt;}
.h5_c00358{height:62.530016pt;}
.hb_c00358{height:64.570688pt;}
.hf_c00358{height:64.915813pt;}
.h11_c00358{height:68.402813pt;}
.h3_c00358{height:74.621423pt;}
.h1_c00358{height:986.666667pt;}
.h0_c00358{height:1122.666667pt;}
.w1_c00358{width:689.333333pt;}
.w0_c00358{width:793.333333pt;}
.x0_c00358{left:0.000000pt;}
.x1_c00358{left:52.000000pt;}
.x2_c00358{left:85.726653pt;}
.x6_c00358{left:89.501853pt;}
.x3e_c00358{left:91.033053pt;}
.x63_c00358{left:99.419453pt;}
.x7a_c00358{left:100.871453pt;}
.x7_c00358{left:108.461453pt;}
.x2a_c00358{left:109.376653pt;}
.x76_c00358{left:110.362253pt;}
.x5c_c00358{left:117.802653pt;}
.x1b_c00358{left:118.902653pt;}
.x8_c00358{left:127.337453pt;}
.x80_c00358{left:128.829053pt;}
.x64_c00358{left:130.030253pt;}
.x50_c00358{left:132.789053pt;}
.x49_c00358{left:137.928253pt;}
.x62_c00358{left:144.286253pt;}
.x1c_c00358{left:147.001053pt;}
.x65_c00358{left:148.325453pt;}
.x77_c00358{left:156.461053pt;}
.x1d_c00358{left:157.389453pt;}
.x5_c00358{left:162.409853pt;}
.x2b_c00358{left:165.987053pt;}
.x34_c00358{left:167.689853pt;}
.x9_c00358{left:176.410653pt;}
.x35_c00358{left:186.741853pt;}
.x3f_c00358{left:196.272253pt;}
.xa_c00358{left:197.495453pt;}
.x7e_c00358{left:203.932653pt;}
.x5e_c00358{left:205.802653pt;}
.x4a_c00358{left:206.999453pt;}
.x66_c00358{left:216.177853pt;}
.x6f_c00358{left:223.402653pt;}
.x4b_c00358{left:225.197853pt;}
.x1e_c00358{left:226.654253pt;}
.x36_c00358{left:236.008653pt;}
.x7c_c00358{left:236.954653pt;}
.xb_c00358{left:245.745853pt;}
.x6d_c00358{left:247.096653pt;}
.x69_c00358{left:248.157053pt;}
.x37_c00358{left:254.972653pt;}
.x73_c00358{left:256.143053pt;}
.x2c_c00358{left:257.771053pt;}
.xc_c00358{left:265.079453pt;}
.x83_c00358{left:266.593053pt;}
.xd_c00358{left:274.297453pt;}
.x2d_c00358{left:276.123453pt;}
.x40_c00358{left:284.941053pt;}
.xe_c00358{left:285.851853pt;}
.x2e_c00358{left:294.445053pt;}
.x1f_c00358{left:295.377853pt;}
.x38_c00358{left:304.899453pt;}
.xf_c00358{left:314.390253pt;}
.x39_c00358{left:315.314253pt;}
.x41_c00358{left:324.211053pt;}
.x67_c00358{left:325.165853pt;}
.x51_c00358{left:334.529053pt;}
.x68_c00358{left:343.043053pt;}
.x10_c00358{left:344.209053pt;}
.x4c_c00358{left:353.915453pt;}
.x7f_c00358{left:355.182653pt;}
.x6b_c00358{left:362.719853pt;}
.x20_c00358{left:364.114653pt;}
.x42_c00358{left:373.328253pt;}
.x3a_c00358{left:374.586653pt;}
.x52_c00358{left:375.937453pt;}
.x11_c00358{left:384.037853pt;}
.x4d_c00358{left:392.349453pt;}
.x53_c00358{left:393.691453pt;}
.x21_c00358{left:402.614653pt;}
.x84_c00358{left:406.117053pt;}
.x4e_c00358{left:411.788653pt;}
.x54_c00358{left:413.275853pt;}
.x3b_c00358{left:421.609453pt;}
.x12_c00358{left:422.573053pt;}
.x55_c00358{left:423.664253pt;}
.x43_c00358{left:425.138253pt;}
.x44_c00358{left:429.256653pt;}
.x45_c00358{left:431.469853pt;}
.x22_c00358{left:432.864653pt;}
.x70_c00358{left:434.620253pt;}
.x78_c00358{left:440.019053pt;}
.x56_c00358{left:442.179453pt;}
.x7b_c00358{left:443.270653pt;}
.x13_c00358{left:452.202653pt;}
.x5f_c00358{left:454.596253pt;}
.x2f_c00358{left:462.041053pt;}
.x74_c00358{left:463.013453pt;}
.x81_c00358{left:464.821853pt;}
.x46_c00358{left:470.748653pt;}
.x57_c00358{left:472.015853pt;}
.x14_c00358{left:481.876253pt;}
.x7d_c00358{left:490.517853pt;}
.x30_c00358{left:492.018253pt;}
.x23_c00358{left:500.998653pt;}
.x6e_c00358{left:502.230653pt;}
.x82_c00358{left:503.365853pt;}
.x6c_c00358{left:510.348653pt;}
.x15_c00358{left:511.413453pt;}
.x24_c00358{left:520.085853pt;}
.x3c_c00358{left:521.238653pt;}
.x47_c00358{left:530.135453pt;}
.x58_c00358{left:531.948253pt;}
.x71_c00358{left:533.145053pt;}
.x25_c00358{left:539.287453pt;}
.x16_c00358{left:540.413853pt;}
.x31_c00358{left:543.045053pt;}
.x26_c00358{left:550.335853pt;}
.x75_c00358{left:551.625053pt;}
.x32_c00358{left:559.795853pt;}
.x79_c00358{left:560.693453pt;}
.x27_c00358{left:569.744253pt;}
.x6a_c00358{left:570.650653pt;}
.x17_c00358{left:580.181053pt;}
.x72_c00358{left:581.153453pt;}
.x28_c00358{left:589.399053pt;}
.x4f_c00358{left:590.613453pt;}
.x59_c00358{left:598.419053pt;}
.x3_c00358{left:599.778653pt;}
.x29_c00358{left:608.838253pt;}
.x4_c00358{left:609.916253pt;}
.x60_c00358{left:611.707053pt;}
.x48_c00358{left:617.743853pt;}
.x18_c00358{left:618.980253pt;}
.x1a_c00358{left:622.016253pt;}
.x5a_c00358{left:628.981453pt;}
.x3d_c00358{left:629.874653pt;}
.x33_c00358{left:637.983853pt;}
.x61_c00358{left:640.021053pt;}
.x5d_c00358{left:648.125853pt;}
.x5b_c00358{left:649.507453pt;}
.x19_c00358{left:660.890253pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b3aba892e343cf33fffaee4f.woff2')format("woff");}.ff1_c00359{font-family:ff1_c00359;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00359;src:url('chunks/assets/font_e93f94dc294868fb1a2c625a.woff2')format("woff");}.ff2_c00359{font-family:ff2_c00359;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00359;src:url('chunks/assets/font_b620c140b4b166a10281ce0e.woff2')format("woff");}.ff3_c00359{font-family:ff3_c00359;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00359;src:url('chunks/assets/font_ce76ad96f46b54e2e527c33a.woff2')format("woff");}.ff4_c00359{font-family:ff4_c00359;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00359;src:url('chunks/assets/font_c25d1017a58815ebae734f0c.woff2')format("woff");}.ff5_c00359{font-family:ff5_c00359;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m75_c00359{transform:matrix(0.038462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.038462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.038462,0.000000,0.000000,0.250000,0,0);}
.mb3_c00359{transform:matrix(0.054763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054763,0.000000,0.000000,0.250000,0,0);}
.m8a_c00359{transform:matrix(0.064286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064286,0.000000,0.000000,0.250000,0,0);}
.mb4_c00359{transform:matrix(0.071429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071429,0.000000,0.000000,0.250000,0,0);}
.m3d_c00359{transform:matrix(0.072561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072561,0.000000,0.000000,0.250000,0,0);}
.mfc_c00359{transform:matrix(0.077382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077382,0.000000,0.000000,0.250000,0,0);}
.m3c_c00359{transform:matrix(0.083334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083334,0.000000,0.000000,0.250000,0,0);}
.m54_c00359{transform:matrix(0.084375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084375,0.000000,0.000000,0.250000,0,0);}
.m91_c00359{transform:matrix(0.092858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092858,0.000000,0.000000,0.250000,0,0);}
.mbf_c00359{transform:matrix(0.093568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093568,0.000000,0.000000,0.250000,0,0);}
.m4d_c00359{transform:matrix(0.095652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095652,0.000000,0.000000,0.250000,0,0);}
.mb2_c00359{transform:matrix(0.096428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096428,0.000000,0.000000,0.250000,0,0);}
.meb_c00359{transform:matrix(0.098807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098807,0.000000,0.000000,0.250000,0,0);}
.m84_c00359{transform:matrix(0.102915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102915,0.000000,0.000000,0.250000,0,0);}
.m93_c00359{transform:matrix(0.103572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103572,0.000000,0.000000,0.250000,0,0);}
.mad_c00359{transform:matrix(0.113446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113446,0.000000,0.000000,0.250000,0,0);}
.m5d_c00359{transform:matrix(0.113966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113966,0.000000,0.000000,0.250000,0,0);}
.mb8_c00359{transform:matrix(0.116355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116355,0.000000,0.000000,0.250000,0,0);}
.m86_c00359{transform:matrix(0.133333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133333,0.000000,0.000000,0.250000,0,0);}
.m4a_c00359{transform:matrix(0.138659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138659,0.000000,0.000000,0.250000,0,0);}
.m18_c00359{transform:matrix(0.144612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144612,0.000000,0.000000,0.250000,0,0);}
.m90_c00359{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mde_c00359{transform:matrix(0.154276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154276,0.000000,0.000000,0.250000,0,0);}
.m56_c00359{transform:matrix(0.155770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155770,0.000000,0.000000,0.250000,0,0);}
.mb7_c00359{transform:matrix(0.156395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156395,0.000000,0.000000,0.250000,0,0);}
.m76_c00359{transform:matrix(0.157052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157052,0.000000,0.000000,0.250000,0,0);}
.m8c_c00359{transform:matrix(0.157142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157142,0.000000,0.000000,0.250000,0,0);}
.m74_c00359{transform:matrix(0.158119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158119,0.000000,0.000000,0.250000,0,0);}
.m53_c00359{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m68_c00359{transform:matrix(0.164108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164108,0.000000,0.000000,0.250000,0,0);}
.m8d_c00359{transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);}
.m32_c00359{transform:matrix(0.168416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168416,0.000000,0.000000,0.250000,0,0);}
.m30_c00359{transform:matrix(0.174093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174093,0.000000,0.000000,0.250000,0,0);}
.m92_c00359{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.mb_c00359{transform:matrix(0.177392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177392,0.000000,0.000000,0.250000,0,0);}
.m3b_c00359{transform:matrix(0.181819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181819,0.000000,0.000000,0.250000,0,0);}
.m96_c00359{transform:matrix(0.182789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182789,0.000000,0.000000,0.250000,0,0);}
.mfd_c00359{transform:matrix(0.184523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184523,0.000000,0.000000,0.250000,0,0);}
.m8e_c00359{transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);}
.mea_c00359{transform:matrix(0.188631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188631,0.000000,0.000000,0.250000,0,0);}
.m8f_c00359{transform:matrix(0.189285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189285,0.000000,0.000000,0.250000,0,0);}
.mfb_c00359{transform:matrix(0.189639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189639,0.000000,0.000000,0.250000,0,0);}
.m8b_c00359{transform:matrix(0.190476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190476,0.000000,0.000000,0.250000,0,0);}
.m88_c00359{transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);}
.m1c_c00359{transform:matrix(0.192999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192999,0.000000,0.000000,0.250000,0,0);}
.m87_c00359{transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);}
.mec_c00359{transform:matrix(0.196508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196508,0.000000,0.000000,0.250000,0,0);}
.m3a_c00359{transform:matrix(0.196971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196971,0.000000,0.000000,0.250000,0,0);}
.m70_c00359{transform:matrix(0.197339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197339,0.000000,0.000000,0.250000,0,0);}
.mf3_c00359{transform:matrix(0.197575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197575,0.000000,0.000000,0.250000,0,0);}
.m49_c00359{transform:matrix(0.199141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199141,0.000000,0.000000,0.250000,0,0);}
.m94_c00359{transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);}
.md5_c00359{transform:matrix(0.202245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202245,0.000000,0.000000,0.250000,0,0);}
.mf9_c00359{transform:matrix(0.202251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202251,0.000000,0.000000,0.250000,0,0);}
.mc2_c00359{transform:matrix(0.205159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205159,0.000000,0.000000,0.250000,0,0);}
.m1b_c00359{transform:matrix(0.205705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205705,0.000000,0.000000,0.250000,0,0);}
.m51_c00359{transform:matrix(0.211285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211285,0.000000,0.000000,0.250000,0,0);}
.m39_c00359{transform:matrix(0.212121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212121,0.000000,0.000000,0.250000,0,0);}
.m95_c00359{transform:matrix(0.212699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212699,0.000000,0.000000,0.250000,0,0);}
.mb1_c00359{transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);}
.mc5_c00359{transform:matrix(0.217611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217611,0.000000,0.000000,0.250000,0,0);}
.mcd_c00359{transform:matrix(0.220576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220576,0.000000,0.000000,0.250000,0,0);}
.m89_c00359{transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);}
.me6_c00359{transform:matrix(0.222442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222442,0.000000,0.000000,0.250000,0,0);}
.m35_c00359{transform:matrix(0.222512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222512,0.000000,0.000000,0.250000,0,0);}
.m17_c00359{transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);}
.m25_c00359{transform:matrix(0.227517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227517,0.000000,0.000000,0.250000,0,0);}
.ma4_c00359{transform:matrix(0.229858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229858,0.000000,0.000000,0.250000,0,0);}
.m83_c00359{transform:matrix(0.233154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233154,0.000000,0.000000,0.250000,0,0);}
.mf4_c00359{transform:matrix(0.235259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235259,0.000000,0.000000,0.250000,0,0);}
.mf7_c00359{transform:matrix(0.241453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241453,0.000000,0.000000,0.250000,0,0);}
.m0_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);}
.m79_c00359{transform:matrix(0.254504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254504,0.000000,0.000000,0.250000,0,0);}
.me7_c00359{transform:matrix(0.257461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257461,0.000000,0.000000,0.250000,0,0);}
.m62_c00359{transform:matrix(0.261434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261434,0.000000,0.000000,0.250000,0,0);}
.ma9_c00359{transform:matrix(0.261618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261618,0.000000,0.000000,0.250000,0,0);}
.mca_c00359{transform:matrix(0.264150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264150,0.000000,0.000000,0.250000,0,0);}
.mbb_c00359{transform:matrix(0.264203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264203,0.000000,0.000000,0.250000,0,0);}
.ma0_c00359{transform:matrix(0.264466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264466,0.000000,0.000000,0.250000,0,0);}
.md3_c00359{transform:matrix(0.265721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265721,0.000000,0.000000,0.250000,0,0);}
.mf6_c00359{transform:matrix(0.266260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266260,0.000000,0.000000,0.250000,0,0);}
.m20_c00359{transform:matrix(0.267857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267857,0.000000,0.000000,0.250000,0,0);}
.mfa_c00359{transform:matrix(0.268432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268432,0.000000,0.000000,0.250000,0,0);}
.m85_c00359{transform:matrix(0.268640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268640,0.000000,0.000000,0.250000,0,0);}
.mc7_c00359{transform:matrix(0.268723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268723,0.000000,0.000000,0.250000,0,0);}
.m44_c00359{transform:matrix(0.269002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269002,0.000000,0.000000,0.250000,0,0);}
.mc4_c00359{transform:matrix(0.269791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269791,0.000000,0.000000,0.250000,0,0);}
.m1_c00359{transform:matrix(0.272597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272597,0.000000,0.000000,0.250000,0,0);}
.m50_c00359{transform:matrix(0.273732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273732,0.000000,0.000000,0.250000,0,0);}
.ma2_c00359{transform:matrix(0.277447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277447,0.000000,0.000000,0.250000,0,0);}
.m24_c00359{transform:matrix(0.278450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278450,0.000000,0.000000,0.250000,0,0);}
.m21_c00359{transform:matrix(0.278601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278601,0.000000,0.000000,0.250000,0,0);}
.m48_c00359{transform:matrix(0.278610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278610,0.000000,0.000000,0.250000,0,0);}
.mc9_c00359{transform:matrix(0.278682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278682,0.000000,0.000000,0.250000,0,0);}
.m4b_c00359{transform:matrix(0.278765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278765,0.000000,0.000000,0.250000,0,0);}
.m36_c00359{transform:matrix(0.279298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279298,0.000000,0.000000,0.250000,0,0);}
.m7b_c00359{transform:matrix(0.280422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280422,0.000000,0.000000,0.250000,0,0);}
.mcc_c00359{transform:matrix(0.281568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281568,0.000000,0.000000,0.250000,0,0);}
.m19_c00359{transform:matrix(0.281581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281581,0.000000,0.000000,0.250000,0,0);}
.m28_c00359{transform:matrix(0.282125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282125,0.000000,0.000000,0.250000,0,0);}
.mc8_c00359{transform:matrix(0.282283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282283,0.000000,0.000000,0.250000,0,0);}
.mbc_c00359{transform:matrix(0.283721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283721,0.000000,0.000000,0.250000,0,0);}
.m7e_c00359{transform:matrix(0.284138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284138,0.000000,0.000000,0.250000,0,0);}
.m6c_c00359{transform:matrix(0.285279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285279,0.000000,0.000000,0.250000,0,0);}
.mf8_c00359{transform:matrix(0.285293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285293,0.000000,0.000000,0.250000,0,0);}
.mf_c00359{transform:matrix(0.286865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286865,0.000000,0.000000,0.250000,0,0);}
.m3e_c00359{transform:matrix(0.288635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288635,0.000000,0.000000,0.250000,0,0);}
.m40_c00359{transform:matrix(0.289304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289304,0.000000,0.000000,0.250000,0,0);}
.me2_c00359{transform:matrix(0.289394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289394,0.000000,0.000000,0.250000,0,0);}
.m34_c00359{transform:matrix(0.289756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289756,0.000000,0.000000,0.250000,0,0);}
.m5a_c00359{transform:matrix(0.289795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289795,0.000000,0.000000,0.250000,0,0);}
.md8_c00359{transform:matrix(0.290594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290594,0.000000,0.000000,0.250000,0,0);}
.m9d_c00359{transform:matrix(0.291200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291200,0.000000,0.000000,0.250000,0,0);}
.m27_c00359{transform:matrix(0.291252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291252,0.000000,0.000000,0.250000,0,0);}
.m16_c00359{transform:matrix(0.291424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291424,0.000000,0.000000,0.250000,0,0);}
.m9f_c00359{transform:matrix(0.292697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292697,0.000000,0.000000,0.250000,0,0);}
.m26_c00359{transform:matrix(0.292950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292950,0.000000,0.000000,0.250000,0,0);}
.m10_c00359{transform:matrix(0.294470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294470,0.000000,0.000000,0.250000,0,0);}
.m7a_c00359{transform:matrix(0.295567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295567,0.000000,0.000000,0.250000,0,0);}
.m1e_c00359{transform:matrix(0.295925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295925,0.000000,0.000000,0.250000,0,0);}
.m9c_c00359{transform:matrix(0.296362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296362,0.000000,0.000000,0.250000,0,0);}
.mac_c00359{transform:matrix(0.297057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297057,0.000000,0.000000,0.250000,0,0);}
.mf2_c00359{transform:matrix(0.297137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297137,0.000000,0.000000,0.250000,0,0);}
.mdb_c00359{transform:matrix(0.299636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299636,0.000000,0.000000,0.250000,0,0);}
.m2b_c00359{transform:matrix(0.300064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300064,0.000000,0.000000,0.250000,0,0);}
.m7f_c00359{transform:matrix(0.300404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300404,0.000000,0.000000,0.250000,0,0);}
.m64_c00359{transform:matrix(0.301545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301545,0.000000,0.000000,0.250000,0,0);}
.m98_c00359{transform:matrix(0.301893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301893,0.000000,0.000000,0.250000,0,0);}
.ma3_c00359{transform:matrix(0.302793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302793,0.000000,0.000000,0.250000,0,0);}
.m99_c00359{transform:matrix(0.303120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303120,0.000000,0.000000,0.250000,0,0);}
.maf_c00359{transform:matrix(0.303163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303163,0.000000,0.000000,0.250000,0,0);}
.mb9_c00359{transform:matrix(0.303223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303223,0.000000,0.000000,0.250000,0,0);}
.m43_c00359{transform:matrix(0.303987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303987,0.000000,0.000000,0.250000,0,0);}
.m59_c00359{transform:matrix(0.304027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304027,0.000000,0.000000,0.250000,0,0);}
.ma7_c00359{transform:matrix(0.305005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305005,0.000000,0.000000,0.250000,0,0);}
.m23_c00359{transform:matrix(0.305441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305441,0.000000,0.000000,0.250000,0,0);}
.m65_c00359{transform:matrix(0.305967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305967,0.000000,0.000000,0.250000,0,0);}
.m69_c00359{transform:matrix(0.306422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306422,0.000000,0.000000,0.250000,0,0);}
.m38_c00359{transform:matrix(0.306571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306571,0.000000,0.000000,0.250000,0,0);}
.m4f_c00359{transform:matrix(0.306582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306582,0.000000,0.000000,0.250000,0,0);}
.m58_c00359{transform:matrix(0.306583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306583,0.000000,0.000000,0.250000,0,0);}
.m60_c00359{transform:matrix(0.306640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306640,0.000000,0.000000,0.250000,0,0);}
.m42_c00359{transform:matrix(0.306832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306832,0.000000,0.000000,0.250000,0,0);}
.m37_c00359{transform:matrix(0.307223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307223,0.000000,0.000000,0.250000,0,0);}
.mef_c00359{transform:matrix(0.308262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308262,0.000000,0.000000,0.250000,0,0);}
.md4_c00359{transform:matrix(0.308921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308921,0.000000,0.000000,0.250000,0,0);}
.m7c_c00359{transform:matrix(0.309053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309053,0.000000,0.000000,0.250000,0,0);}
.me8_c00359{transform:matrix(0.309054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309054,0.000000,0.000000,0.250000,0,0);}
.m81_c00359{transform:matrix(0.309570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309570,0.000000,0.000000,0.250000,0,0);}
.m2_c00359{transform:matrix(0.309651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309651,0.000000,0.000000,0.250000,0,0);}
.ma5_c00359{transform:matrix(0.311037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311037,0.000000,0.000000,0.250000,0,0);}
.mab_c00359{transform:matrix(0.311288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311288,0.000000,0.000000,0.250000,0,0);}
.m13_c00359{transform:matrix(0.312214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312214,0.000000,0.000000,0.250000,0,0);}
.ma_c00359{transform:matrix(0.312389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312389,0.000000,0.000000,0.250000,0,0);}
.m2e_c00359{transform:matrix(0.313220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313220,0.000000,0.000000,0.250000,0,0);}
.m57_c00359{transform:matrix(0.313341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313341,0.000000,0.000000,0.250000,0,0);}
.m5e_c00359{transform:matrix(0.313645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313645,0.000000,0.000000,0.250000,0,0);}
.m77_c00359{transform:matrix(0.314802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314802,0.000000,0.000000,0.250000,0,0);}
.mc1_c00359{transform:matrix(0.315034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315034,0.000000,0.000000,0.250000,0,0);}
.m5f_c00359{transform:matrix(0.316019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316019,0.000000,0.000000,0.250000,0,0);}
.m61_c00359{transform:matrix(0.316223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316223,0.000000,0.000000,0.250000,0,0);}
.m2d_c00359{transform:matrix(0.316316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316316,0.000000,0.000000,0.250000,0,0);}
.mdd_c00359{transform:matrix(0.317168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317168,0.000000,0.000000,0.250000,0,0);}
.m5_c00359{transform:matrix(0.317513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317513,0.000000,0.000000,0.250000,0,0);}
.m31_c00359{transform:matrix(0.319158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319158,0.000000,0.000000,0.250000,0,0);}
.m46_c00359{transform:matrix(0.319689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319689,0.000000,0.000000,0.250000,0,0);}
.me3_c00359{transform:matrix(0.319885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319885,0.000000,0.000000,0.250000,0,0);}
.me4_c00359{transform:matrix(0.320800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320800,0.000000,0.000000,0.250000,0,0);}
.med_c00359{transform:matrix(0.320953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320953,0.000000,0.000000,0.250000,0,0);}
.m4_c00359{transform:matrix(0.321309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321309,0.000000,0.000000,0.250000,0,0);}
.m6_c00359{transform:matrix(0.321977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321977,0.000000,0.000000,0.250000,0,0);}
.mbd_c00359{transform:matrix(0.322774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322774,0.000000,0.000000,0.250000,0,0);}
.m12_c00359{transform:matrix(0.323286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323286,0.000000,0.000000,0.250000,0,0);}
.mc0_c00359{transform:matrix(0.323364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323364,0.000000,0.000000,0.250000,0,0);}
.me0_c00359{transform:matrix(0.323550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323550,0.000000,0.000000,0.250000,0,0);}
.md0_c00359{transform:matrix(0.323719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323719,0.000000,0.000000,0.250000,0,0);}
.m6d_c00359{transform:matrix(0.324463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324463,0.000000,0.000000,0.250000,0,0);}
.m7_c00359{transform:matrix(0.324786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324786,0.000000,0.000000,0.250000,0,0);}
.m5b_c00359{transform:matrix(0.325323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325323,0.000000,0.000000,0.250000,0,0);}
.ma8_c00359{transform:matrix(0.325360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325360,0.000000,0.000000,0.250000,0,0);}
.m4c_c00359{transform:matrix(0.325919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325919,0.000000,0.000000,0.250000,0,0);}
.m11_c00359{transform:matrix(0.328092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328092,0.000000,0.000000,0.250000,0,0);}
.m7d_c00359{transform:matrix(0.328642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328642,0.000000,0.000000,0.250000,0,0);}
.mf1_c00359{transform:matrix(0.329671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329671,0.000000,0.000000,0.250000,0,0);}
.mb0_c00359{transform:matrix(0.329828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329828,0.000000,0.000000,0.250000,0,0);}
.mdf_c00359{transform:matrix(0.330256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330256,0.000000,0.000000,0.250000,0,0);}
.m72_c00359{transform:matrix(0.330275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330275,0.000000,0.000000,0.250000,0,0);}
.m9_c00359{transform:matrix(0.331091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331091,0.000000,0.000000,0.250000,0,0);}
.m71_c00359{transform:matrix(0.332242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332242,0.000000,0.000000,0.250000,0,0);}
.m14_c00359{transform:matrix(0.332429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332429,0.000000,0.000000,0.250000,0,0);}
.m22_c00359{transform:matrix(0.332589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332589,0.000000,0.000000,0.250000,0,0);}
.md1_c00359{transform:matrix(0.332658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332658,0.000000,0.000000,0.250000,0,0);}
.md_c00359{transform:matrix(0.333337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333337,0.000000,0.000000,0.250000,0,0);}
.maa_c00359{transform:matrix(0.334228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334228,0.000000,0.000000,0.250000,0,0);}
.m8_c00359{transform:matrix(0.334385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334385,0.000000,0.000000,0.250000,0,0);}
.mc_c00359{transform:matrix(0.334473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334473,0.000000,0.000000,0.250000,0,0);}
.m9e_c00359{transform:matrix(0.334511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334511,0.000000,0.000000,0.250000,0,0);}
.m4e_c00359{transform:matrix(0.335337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335337,0.000000,0.000000,0.250000,0,0);}
.m6a_c00359{transform:matrix(0.335725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335725,0.000000,0.000000,0.250000,0,0);}
.md7_c00359{transform:matrix(0.335805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335805,0.000000,0.000000,0.250000,0,0);}
.me_c00359{transform:matrix(0.337497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337497,0.000000,0.000000,0.250000,0,0);}
.m1d_c00359{transform:matrix(0.338071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338071,0.000000,0.000000,0.250000,0,0);}
.mae_c00359{transform:matrix(0.338711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338711,0.000000,0.000000,0.250000,0,0);}
.mf0_c00359{transform:matrix(0.338798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338798,0.000000,0.000000,0.250000,0,0);}
.mc3_c00359{transform:matrix(0.339303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339303,0.000000,0.000000,0.250000,0,0);}
.me5_c00359{transform:matrix(0.340155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340155,0.000000,0.000000,0.250000,0,0);}
.m33_c00359{transform:matrix(0.341002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341002,0.000000,0.000000,0.250000,0,0);}
.mcb_c00359{transform:matrix(0.341128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341128,0.000000,0.000000,0.250000,0,0);}
.mba_c00359{transform:matrix(0.343673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343673,0.000000,0.000000,0.250000,0,0);}
.mce_c00359{transform:matrix(0.344477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344477,0.000000,0.000000,0.250000,0,0);}
.mcf_c00359{transform:matrix(0.345298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345298,0.000000,0.000000,0.250000,0,0);}
.m55_c00359{transform:matrix(0.346425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346425,0.000000,0.000000,0.250000,0,0);}
.m78_c00359{transform:matrix(0.346860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346860,0.000000,0.000000,0.250000,0,0);}
.m63_c00359{transform:matrix(0.348866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348866,0.000000,0.000000,0.250000,0,0);}
.mc6_c00359{transform:matrix(0.349075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349075,0.000000,0.000000,0.250000,0,0);}
.me1_c00359{transform:matrix(0.349853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349853,0.000000,0.000000,0.250000,0,0);}
.m45_c00359{transform:matrix(0.350403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350403,0.000000,0.000000,0.250000,0,0);}
.m41_c00359{transform:matrix(0.352524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352524,0.000000,0.000000,0.250000,0,0);}
.m9a_c00359{transform:matrix(0.352681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352681,0.000000,0.000000,0.250000,0,0);}
.m2c_c00359{transform:matrix(0.353181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353181,0.000000,0.000000,0.250000,0,0);}
.m6e_c00359{transform:matrix(0.355046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355046,0.000000,0.000000,0.250000,0,0);}
.m6f_c00359{transform:matrix(0.355191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355191,0.000000,0.000000,0.250000,0,0);}
.m80_c00359{transform:matrix(0.355334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355334,0.000000,0.000000,0.250000,0,0);}
.mb5_c00359{transform:matrix(0.355960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355960,0.000000,0.000000,0.250000,0,0);}
.mee_c00359{transform:matrix(0.357447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357447,0.000000,0.000000,0.250000,0,0);}
.mda_c00359{transform:matrix(0.359270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359270,0.000000,0.000000,0.250000,0,0);}
.m6b_c00359{transform:matrix(0.360138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360138,0.000000,0.000000,0.250000,0,0);}
.md2_c00359{transform:matrix(0.360332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360332,0.000000,0.000000,0.250000,0,0);}
.md6_c00359{transform:matrix(0.360522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360522,0.000000,0.000000,0.250000,0,0);}
.m82_c00359{transform:matrix(0.361710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361710,0.000000,0.000000,0.250000,0,0);}
.m73_c00359{transform:matrix(0.361892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361892,0.000000,0.000000,0.250000,0,0);}
.m15_c00359{transform:matrix(0.363603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363603,0.000000,0.000000,0.250000,0,0);}
.m67_c00359{transform:matrix(0.365528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365528,0.000000,0.000000,0.250000,0,0);}
.mbe_c00359{transform:matrix(0.366394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366394,0.000000,0.000000,0.250000,0,0);}
.m1f_c00359{transform:matrix(0.369459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369459,0.000000,0.000000,0.250000,0,0);}
.ma1_c00359{transform:matrix(0.372744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372744,0.000000,0.000000,0.250000,0,0);}
.md9_c00359{transform:matrix(0.372869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372869,0.000000,0.000000,0.250000,0,0);}
.mdc_c00359{transform:matrix(0.379717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379717,0.000000,0.000000,0.250000,0,0);}
.m5c_c00359{transform:matrix(0.379886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379886,0.000000,0.000000,0.250000,0,0);}
.m47_c00359{transform:matrix(0.381079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381079,0.000000,0.000000,0.250000,0,0);}
.m2f_c00359{transform:matrix(0.382785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382785,0.000000,0.000000,0.250000,0,0);}
.m3_c00359{transform:matrix(0.391371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391371,0.000000,0.000000,0.250000,0,0);}
.m2a_c00359{transform:matrix(0.392986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392986,0.000000,0.000000,0.250000,0,0);}
.m66_c00359{transform:matrix(0.403943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403943,0.000000,0.000000,0.250000,0,0);}
.me9_c00359{transform:matrix(0.408793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408793,0.000000,0.000000,0.250000,0,0);}
.m1a_c00359{transform:matrix(0.412483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412483,0.000000,0.000000,0.250000,0,0);}
.ma6_c00359{transform:matrix(0.419186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419186,0.000000,0.000000,0.250000,0,0);}
.mf5_c00359{transform:matrix(0.429360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429360,0.000000,0.000000,0.250000,0,0);}
.m3f_c00359{transform:matrix(0.444171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444171,0.000000,0.000000,0.250000,0,0);}
.m52_c00359{transform:matrix(0.452932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452932,0.000000,0.000000,0.250000,0,0);}
.m29_c00359{transform:matrix(0.453314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453314,0.000000,0.000000,0.250000,0,0);}
.mb6_c00359{transform:matrix(0.460741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460741,0.000000,0.000000,0.250000,0,0);}
.m9b_c00359{transform:matrix(0.472183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472183,0.000000,0.000000,0.250000,0,0);}
.m97_c00359{transform:matrix(0.535704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535704,0.000000,0.000000,0.250000,0,0);}
.v1_c00359{vertical-align:-4.298580px;}
.v0_c00359{vertical-align:0.000000px;}
.v2_c00359{vertical-align:1.417680px;}
.lsa_c00359{letter-spacing:-2.480940px;}
.ls29_c00359{letter-spacing:-2.395879px;}
.ls1e_c00359{letter-spacing:-2.245327px;}
.ls19_c00359{letter-spacing:-2.106720px;}
.ls22_c00359{letter-spacing:-2.055636px;}
.lse_c00359{letter-spacing:-1.677067px;}
.ls2a_c00359{letter-spacing:-1.623244px;}
.ls2c_c00359{letter-spacing:-1.590974px;}
.ls18_c00359{letter-spacing:-1.469167px;}
.lsd_c00359{letter-spacing:-1.368061px;}
.ls14_c00359{letter-spacing:-1.191967px;}
.ls28_c00359{letter-spacing:-1.129590px;}
.ls24_c00359{letter-spacing:-0.942757px;}
.ls13_c00359{letter-spacing:-0.623779px;}
.ls25_c00359{letter-spacing:-0.021265px;}
.ls8_c00359{letter-spacing:0.000000px;}
.ls1d_c00359{letter-spacing:0.758459px;}
.ls27_c00359{letter-spacing:0.836431px;}
.ls26_c00359{letter-spacing:1.212116px;}
.ls11_c00359{letter-spacing:1.566536px;}
.lsf_c00359{letter-spacing:2.002897px;}
.ls10_c00359{letter-spacing:2.395810px;}
.ls7_c00359{letter-spacing:2.452586px;}
.ls12_c00359{letter-spacing:2.534400px;}
.ls4_c00359{letter-spacing:3.331548px;}
.ls23_c00359{letter-spacing:3.405610px;}
.ls1c_c00359{letter-spacing:3.416609px;}
.ls2_c00359{letter-spacing:3.444962px;}
.ls17_c00359{letter-spacing:3.480404px;}
.ls9_c00359{letter-spacing:3.544200px;}
.lsb_c00359{letter-spacing:3.603610px;}
.ls1b_c00359{letter-spacing:3.722400px;}
.ls15_c00359{letter-spacing:3.880810px;}
.ls21_c00359{letter-spacing:9.979398px;}
.ls0_c00359{letter-spacing:10.055232px;}
.ls5_c00359{letter-spacing:16.303320px;}
.ls1_c00359{letter-spacing:19.958400px;}
.ls6_c00359{letter-spacing:25.660008px;}
.ls16_c00359{letter-spacing:47.044800px;}
.lsc_c00359{letter-spacing:48.470598px;}
.ls20_c00359{letter-spacing:49.896198px;}
.ls1f_c00359{letter-spacing:55.598598px;}
.ls1a_c00359{letter-spacing:57.024198px;}
.ls2b_c00359{letter-spacing:59.875398px;}
.ls3_c00359{letter-spacing:65.114748px;}
.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;}
}
.ws9_c00359{word-spacing:-21.137609px;}
.ws7_c00359{word-spacing:-19.404050px;}
.ws6_c00359{word-spacing:-19.287536px;}
.ws8_c00359{word-spacing:-18.612000px;}
.ws3_c00359{word-spacing:-17.721000px;}
.ws2_c00359{word-spacing:-16.352939px;}
.wse_c00359{word-spacing:-16.097756px;}
.wsd_c00359{word-spacing:-4.834289px;}
.ws0_c00359{word-spacing:-3.118896px;}
.ws10_c00359{word-spacing:0.000000px;}
.wsb_c00359{word-spacing:0.708840px;}
.wsf_c00359{word-spacing:1.753146px;}
.wsc_c00359{word-spacing:3.685968px;}
.ws1_c00359{word-spacing:5.245416px;}
.wsa_c00359{word-spacing:6.237792px;}
.ws4_c00359{word-spacing:15.465681px;}
.ws5_c00359{word-spacing:951.357792px;}
._19_c00359{margin-left:-9.243274px;}
._e_c00359{margin-left:-7.173461px;}
._1c_c00359{margin-left:-5.741604px;}
._c_c00359{margin-left:-4.465692px;}
._f_c00359{margin-left:-3.000967px;}
._4_c00359{margin-left:-1.842984px;}
._1e_c00359{width:1.843380px;}
._6_c00359{width:3.685968px;}
._2_c00359{width:6.096024px;}
._22_c00359{width:7.172669px;}
._3_c00359{width:8.435196px;}
._5_c00359{width:9.994644px;}
._7_c00359{width:11.875644px;}
._0_c00359{width:12.971772px;}
._15_c00359{width:14.247684px;}
._1f_c00359{width:15.485184px;}
._17_c00359{width:19.705752px;}
._1a_c00359{width:21.386552px;}
._10_c00359{width:22.399344px;}
._a_c00359{width:24.384096px;}
._20_c00359{width:25.433575px;}
._1d_c00359{width:26.510616px;}
._21_c00359{width:28.346868px;}
._8_c00359{width:29.629512px;}
._1_c00359{width:31.047192px;}
._11_c00359{width:32.609412px;}
._1b_c00359{width:34.342308px;}
._9_c00359{width:36.505260px;}
._b_c00359{width:38.111436px;}
._12_c00359{width:39.332304px;}
._d_c00359{width:40.346460px;}
._18_c00359{width:42.094404px;}
._13_c00359{width:43.450704px;}
._16_c00359{width:45.045000px;}
._14_c00359{width:46.470600px;}
.fc0_c00359{color:transparent;}
.fs16_c00359{font-size:9.979398px;}
.fs7_c00359{font-size:19.958400px;}
.fs0_c00359{font-size:22.176000px;}
.fs22_c00359{font-size:27.720000px;}
.fs1e_c00359{font-size:32.274000px;}
.fsb_c00359{font-size:34.056198px;}
.fs18_c00359{font-size:37.620000px;}
.fs21_c00359{font-size:38.808000px;}
.fse_c00359{font-size:41.976198px;}
.fsd_c00359{font-size:47.044800px;}
.fs5_c00359{font-size:47.916198px;}
.fs3_c00359{font-size:48.470598px;}
.fs14_c00359{font-size:49.896198px;}
.fs9_c00359{font-size:50.688000px;}
.fs13_c00359{font-size:55.598598px;}
.fs6_c00359{font-size:55.836198px;}
.fs10_c00359{font-size:57.024198px;}
.fs1f_c00359{font-size:59.875398px;}
.fsf_c00359{font-size:60.192000px;}
.fs12_c00359{font-size:64.152198px;}
.fs1a_c00359{font-size:64.548000px;}
.fsa_c00359{font-size:65.736198px;}
.fs19_c00359{font-size:68.112198px;}
.fs17_c00359{font-size:68.706198px;}
.fs1b_c00359{font-size:69.696198px;}
.fs1_c00359{font-size:70.884000px;}
.fs2_c00359{font-size:72.072198px;}
.fs4_c00359{font-size:72.864000px;}
.fs20_c00359{font-size:73.656198px;}
.fs11_c00359{font-size:74.448000px;}
.fs8_c00359{font-size:76.032198px;}
.fsc_c00359{font-size:77.616198px;}
.fs1d_c00359{font-size:78.804000px;}
.fs15_c00359{font-size:79.200000px;}
.fs1c_c00359{font-size:101.772198px;}
.y0_c00359{bottom:0.000000px;}
.y1f_c00359{bottom:30.913785px;}
.y1_c00359{bottom:76.500000px;}
.y1e_c00359{bottom:79.032735px;}
.y1d_c00359{bottom:146.387385px;}
.y1c_c00359{bottom:176.329935px;}
.y1b_c00359{bottom:213.395535px;}
.y1a_c00359{bottom:246.184335px;}
.y19_c00359{bottom:335.284335px;}
.y18_c00359{bottom:343.481535px;}
.y17_c00359{bottom:375.557535px;}
.y16_c00359{bottom:401.213385px;}
.y15_c00359{bottom:407.628585px;}
.y14_c00359{bottom:440.065935px;}
.y13_c00359{bottom:472.493385px;}
.y12_c00359{bottom:504.930735px;}
.y11_c00359{bottom:534.506985px;}
.y10_c00359{bottom:538.075935px;}
.yf_c00359{bottom:602.227935px;}
.ye_c00359{bottom:635.011785px;}
.yd_c00359{bottom:666.731385px;}
.yc_c00359{bottom:699.163785px;}
.yb_c00359{bottom:730.888335px;}
.ya_c00359{bottom:763.320735px;}
.y9_c00359{bottom:795.040335px;}
.y8_c00359{bottom:826.754985px;}
.y7_c00359{bottom:855.628335px;}
.y5_c00359{bottom:859.187385px;}
.y6_c00359{bottom:859.543785px;}
.y4_c00359{bottom:891.624735px;}
.y3_c00359{bottom:924.057135px;}
.y2_c00359{bottom:1050.217785px;}
.h18_c00359{height:6.646279px;}
.ha_c00359{height:13.292294px;}
.h2_c00359{height:23.128875px;}
.h21_c00359{height:28.911094px;}
.hf_c00359{height:31.331837px;}
.h1d_c00359{height:31.675166px;}
.h5_c00359{height:32.281418px;}
.h16_c00359{height:33.230868px;}
.hd_c00359{height:33.424296px;}
.h15_c00359{height:37.028666px;}
.h12_c00359{height:37.978116px;}
.h19_c00359{height:39.236484px;}
.h1e_c00359{height:39.877015px;}
.h20_c00359{height:40.475531px;}
.h10_c00359{height:41.197343px;}
.h7_c00359{height:47.027128px;}
.hc_c00359{height:49.747500px;}
.h9_c00359{height:58.235410px;}
.h11_c00359{height:62.778375px;}
.h14_c00359{height:66.908738px;}
.h3_c00359{height:69.568770px;}
.h4_c00359{height:70.699729px;}
.h8_c00359{height:70.994370px;}
.h1a_c00359{height:71.038894px;}
.h6_c00359{height:71.512031px;}
.h13_c00359{height:73.066641px;}
.he_c00359{height:76.176054px;}
.h1f_c00359{height:76.821113px;}
.h1c_c00359{height:77.341816px;}
.hb_c00359{height:79.299207px;}
.h17_c00359{height:82.603125px;}
.h1b_c00359{height:99.883847px;}
.h1_c00359{height:1110.000000px;}
.h0_c00359{height:1263.000000px;}
.w1_c00359{width:775.500000px;}
.w0_c00359{width:892.500000px;}
.x0_c00359{left:0.000000px;}
.x2_c00359{left:54.075435px;}
.x1_c00359{left:58.500000px;}
.x4f_c00359{left:91.180635px;}
.x3_c00359{left:92.645835px;}
.x6d_c00359{left:93.744735px;}
.x52_c00359{left:94.898085px;}
.x87_c00359{left:95.907885px;}
.x79_c00359{left:98.580885px;}
.x15_c00359{left:103.204185px;}
.x75_c00359{left:104.407035px;}
.x67_c00359{left:115.559385px;}
.x4_c00359{left:125.206935px;}
.x68_c00359{left:126.295935px;}
.x88_c00359{left:127.439385px;}
.x2b_c00359{left:135.022785px;}
.x33_c00359{left:136.601835px;}
.x82_c00359{left:137.725485px;}
.x40_c00359{left:140.423235px;}
.x58_c00359{left:146.417685px;}
.x5b_c00359{left:147.427485px;}
.x89_c00359{left:149.080785px;}
.x48_c00359{left:157.258185px;}
.x5_c00359{left:158.302635px;}
.x34_c00359{left:169.440135px;}
.x83_c00359{left:170.811285px;}
.x6e_c00359{left:172.484385px;}
.x16_c00359{left:180.067785px;}
.x8a_c00359{left:181.364685px;}
.x66_c00359{left:187.631385px;}
.x35_c00359{left:191.502285px;}
.x6_c00359{left:202.233885px;}
.x76_c00359{left:203.298135px;}
.x41_c00359{left:213.054585px;}
.x5c_c00359{left:216.504735px;}
.x49_c00359{left:217.930335px;}
.x7_c00359{left:223.830735px;}
.x77_c00359{left:224.899935px;}
.x84_c00359{left:226.058235px;}
.x5d_c00359{left:227.572935px;}
.x4a_c00359{left:235.141485px;}
.x80_c00359{left:236.235435px;}
.x7a_c00359{left:237.769935px;}
.x69_c00359{left:246.674985px;}
.x8b_c00359{left:247.872885px;}
.x36_c00359{left:257.832285px;}
.x7b_c00359{left:259.599435px;}
.x20_c00359{left:262.930785px;}
.x8_c00359{left:268.915335px;}
.x8c_c00359{left:270.108285px;}
.x9_c00359{left:279.523185px;}
.x53_c00359{left:280.552785px;}
.x21_c00359{left:283.003035px;}
.x17_c00359{left:290.571585px;}
.x5e_c00359{left:291.670485px;}
.x85_c00359{left:298.234185px;}
.x22_c00359{left:301.451685px;}
.x37_c00359{left:303.619785px;}
.xa_c00359{left:312.509985px;}
.x4b_c00359{left:314.668185px;}
.x2c_c00359{left:323.736585px;}
.x18_c00359{left:334.186035px;}
.x54_c00359{left:335.477985px;}
.x78_c00359{left:345.333435px;}
.x4c_c00359{left:346.957035px;}
.x2d_c00359{left:357.787635px;}
.x6f_c00359{left:359.777535px;}
.x70_c00359{left:366.563985px;}
.x2a_c00359{left:367.791585px;}
.x42_c00359{left:369.335985px;}
.xb_c00359{left:379.651785px;}
.x38_c00359{left:391.477335px;}
.xc_c00359{left:401.411985px;}
.x19_c00359{left:402.491085px;}
.x2e_c00359{left:411.232785px;}
.x43_c00359{left:412.524735px;}
.x59_c00359{left:413.544435px;}
.x5f_c00359{left:414.841335px;}
.x44_c00359{left:422.315835px;}
.x1a_c00359{left:423.558285px;}
.x7e_c00359{left:424.944285px;}
.x2f_c00359{left:430.854585px;}
.xd_c00359{left:434.265135px;}
.x39_c00359{left:445.714485px;}
.x6a_c00359{left:448.412235px;}
.x23_c00359{left:456.381735px;}
.x60_c00359{left:457.604385px;}
.x3a_c00359{left:467.761785px;}
.x1b_c00359{left:478.458735px;}
.x71_c00359{left:479.819985px;}
.x7c_c00359{left:481.978185px;}
.x1c_c00359{left:489.437835px;}
.x7d_c00359{left:492.501885px;}
.xe_c00359{left:500.595135px;}
.x5a_c00359{left:501.896985px;}
.x3b_c00359{left:503.297835px;}
.x50_c00359{left:506.470785px;}
.x30_c00359{left:511.321785px;}
.x61_c00359{left:513.049335px;}
.x1d_c00359{left:523.216635px;}
.x8d_c00359{left:524.444235px;}
.x55_c00359{left:527.463735px;}
.x56_c00359{left:529.953585px;}
.x24_c00359{left:533.789835px;}
.x62_c00359{left:535.655985px;}
.x86_c00359{left:537.428085px;}
.x31_c00359{left:544.996635px;}
.x25_c00359{left:556.089585px;}
.x81_c00359{left:557.168685px;}
.xf_c00359{left:566.489535px;}
.x72_c00359{left:568.217085px;}
.x57_c00359{left:570.226785px;}
.x10_c00359{left:574.855035px;}
.x51_c00359{left:576.993435px;}
.x45_c00359{left:578.552685px;}
.x26_c00359{left:580.186185px;}
.x4d_c00359{left:588.427935px;}
.x6b_c00359{left:589.992135px;}
.x63_c00359{left:593.749185px;}
.x27_c00359{left:600.035685px;}
.x73_c00359{left:601.664235px;}
.x4e_c00359{left:610.673235px;}
.x11_c00359{left:611.687985px;}
.x64_c00359{left:614.068935px;}
.x46_c00359{left:622.073085px;}
.x3c_c00359{left:633.844185px;}
.x6c_c00359{left:640.754385px;}
.x28_c00359{left:644.268885px;}
.x8e_c00359{left:647.565585px;}
.x29_c00359{left:655.856835px;}
.x12_c00359{left:667.014135px;}
.x3d_c00359{left:669.419835px;}
.x13_c00359{left:677.468535px;}
.x1e_c00359{left:688.888185px;}
.x8f_c00359{left:691.759185px;}
.x32_c00359{left:699.555435px;}
.x7f_c00359{left:700.792935px;}
.x47_c00359{left:709.900935px;}
.x65_c00359{left:710.984985px;}
.x3e_c00359{left:713.123385px;}
.x14_c00359{left:722.196735px;}
.x74_c00359{left:732.027435px;}
.x1f_c00359{left:744.011385px;}
.x3f_c00359{left:758.247585px;}
@media print{
.v1_c00359{vertical-align:-3.820960pt;}
.v0_c00359{vertical-align:0.000000pt;}
.v2_c00359{vertical-align:1.260160pt;}
.lsa_c00359{letter-spacing:-2.205280pt;}
.ls29_c00359{letter-spacing:-2.129670pt;}
.ls1e_c00359{letter-spacing:-1.995846pt;}
.ls19_c00359{letter-spacing:-1.872640pt;}
.ls22_c00359{letter-spacing:-1.827232pt;}
.lse_c00359{letter-spacing:-1.490726pt;}
.ls2a_c00359{letter-spacing:-1.442883pt;}
.ls2c_c00359{letter-spacing:-1.414199pt;}
.ls18_c00359{letter-spacing:-1.305926pt;}
.lsd_c00359{letter-spacing:-1.216054pt;}
.ls14_c00359{letter-spacing:-1.059526pt;}
.ls28_c00359{letter-spacing:-1.004080pt;}
.ls24_c00359{letter-spacing:-0.838006pt;}
.ls13_c00359{letter-spacing:-0.554470pt;}
.ls25_c00359{letter-spacing:-0.018902pt;}
.ls8_c00359{letter-spacing:0.000000pt;}
.ls1d_c00359{letter-spacing:0.674186pt;}
.ls27_c00359{letter-spacing:0.743494pt;}
.ls26_c00359{letter-spacing:1.077437pt;}
.ls11_c00359{letter-spacing:1.392477pt;}
.lsf_c00359{letter-spacing:1.780353pt;}
.ls10_c00359{letter-spacing:2.129609pt;}
.ls7_c00359{letter-spacing:2.180077pt;}
.ls12_c00359{letter-spacing:2.252800pt;}
.ls4_c00359{letter-spacing:2.961376pt;}
.ls23_c00359{letter-spacing:3.027209pt;}
.ls1c_c00359{letter-spacing:3.036986pt;}
.ls2_c00359{letter-spacing:3.062189pt;}
.ls17_c00359{letter-spacing:3.093693pt;}
.ls9_c00359{letter-spacing:3.150400pt;}
.lsb_c00359{letter-spacing:3.203209pt;}
.ls1b_c00359{letter-spacing:3.308800pt;}
.ls15_c00359{letter-spacing:3.449609pt;}
.ls21_c00359{letter-spacing:8.870576pt;}
.ls0_c00359{letter-spacing:8.937984pt;}
.ls5_c00359{letter-spacing:14.491840pt;}
.ls1_c00359{letter-spacing:17.740800pt;}
.ls6_c00359{letter-spacing:22.808896pt;}
.ls16_c00359{letter-spacing:41.817600pt;}
.lsc_c00359{letter-spacing:43.084976pt;}
.ls20_c00359{letter-spacing:44.352176pt;}
.ls1f_c00359{letter-spacing:49.420976pt;}
.ls1a_c00359{letter-spacing:50.688176pt;}
.ls2b_c00359{letter-spacing:53.222576pt;}
.ls3_c00359{letter-spacing:57.879776pt;}
.ws9_c00359{word-spacing:-18.788986pt;}
.ws7_c00359{word-spacing:-17.248044pt;}
.ws6_c00359{word-spacing:-17.144477pt;}
.ws8_c00359{word-spacing:-16.544000pt;}
.ws3_c00359{word-spacing:-15.752000pt;}
.ws2_c00359{word-spacing:-14.535946pt;}
.wse_c00359{word-spacing:-14.309117pt;}
.wsd_c00359{word-spacing:-4.297146pt;}
.ws0_c00359{word-spacing:-2.772352pt;}
.ws10_c00359{word-spacing:0.000000pt;}
.wsb_c00359{word-spacing:0.630080pt;}
.wsf_c00359{word-spacing:1.558352pt;}
.wsc_c00359{word-spacing:3.276416pt;}
.ws1_c00359{word-spacing:4.662592pt;}
.wsa_c00359{word-spacing:5.544704pt;}
.ws4_c00359{word-spacing:13.747272pt;}
.ws5_c00359{word-spacing:845.651371pt;}
._19_c00359{margin-left:-8.216243pt;}
._e_c00359{margin-left:-6.376410pt;}
._1c_c00359{margin-left:-5.103648pt;}
._c_c00359{margin-left:-3.969504pt;}
._f_c00359{margin-left:-2.667526pt;}
._4_c00359{margin-left:-1.638208pt;}
._1e_c00359{width:1.638560pt;}
._6_c00359{width:3.276416pt;}
._2_c00359{width:5.418688pt;}
._22_c00359{width:6.375706pt;}
._3_c00359{width:7.497952pt;}
._5_c00359{width:8.884128pt;}
._7_c00359{width:10.556128pt;}
._0_c00359{width:11.530464pt;}
._15_c00359{width:12.664608pt;}
._1f_c00359{width:13.764608pt;}
._17_c00359{width:17.516224pt;}
._1a_c00359{width:19.010268pt;}
._10_c00359{width:19.910528pt;}
._a_c00359{width:21.674752pt;}
._20_c00359{width:22.607622pt;}
._1d_c00359{width:23.564992pt;}
._21_c00359{width:25.197216pt;}
._8_c00359{width:26.337344pt;}
._1_c00359{width:27.597504pt;}
._11_c00359{width:28.986144pt;}
._1b_c00359{width:30.526496pt;}
._9_c00359{width:32.449120pt;}
._b_c00359{width:33.876832pt;}
._12_c00359{width:34.962048pt;}
._d_c00359{width:35.863520pt;}
._18_c00359{width:37.417248pt;}
._13_c00359{width:38.622848pt;}
._16_c00359{width:40.040000pt;}
._14_c00359{width:41.307200pt;}
.fs16_c00359{font-size:8.870576pt;}
.fs7_c00359{font-size:17.740800pt;}
.fs0_c00359{font-size:19.712000pt;}
.fs22_c00359{font-size:24.640000pt;}
.fs1e_c00359{font-size:28.688000pt;}
.fsb_c00359{font-size:30.272176pt;}
.fs18_c00359{font-size:33.440000pt;}
.fs21_c00359{font-size:34.496000pt;}
.fse_c00359{font-size:37.312176pt;}
.fsd_c00359{font-size:41.817600pt;}
.fs5_c00359{font-size:42.592176pt;}
.fs3_c00359{font-size:43.084976pt;}
.fs14_c00359{font-size:44.352176pt;}
.fs9_c00359{font-size:45.056000pt;}
.fs13_c00359{font-size:49.420976pt;}
.fs6_c00359{font-size:49.632176pt;}
.fs10_c00359{font-size:50.688176pt;}
.fs1f_c00359{font-size:53.222576pt;}
.fsf_c00359{font-size:53.504000pt;}
.fs12_c00359{font-size:57.024176pt;}
.fs1a_c00359{font-size:57.376000pt;}
.fsa_c00359{font-size:58.432176pt;}
.fs19_c00359{font-size:60.544176pt;}
.fs17_c00359{font-size:61.072176pt;}
.fs1b_c00359{font-size:61.952176pt;}
.fs1_c00359{font-size:63.008000pt;}
.fs2_c00359{font-size:64.064176pt;}
.fs4_c00359{font-size:64.768000pt;}
.fs20_c00359{font-size:65.472176pt;}
.fs11_c00359{font-size:66.176000pt;}
.fs8_c00359{font-size:67.584176pt;}
.fsc_c00359{font-size:68.992176pt;}
.fs1d_c00359{font-size:70.048000pt;}
.fs15_c00359{font-size:70.400000pt;}
.fs1c_c00359{font-size:90.464176pt;}
.y0_c00359{bottom:0.000000pt;}
.y1f_c00359{bottom:27.478920pt;}
.y1_c00359{bottom:68.000000pt;}
.y1e_c00359{bottom:70.251320pt;}
.y1d_c00359{bottom:130.122120pt;}
.y1c_c00359{bottom:156.737720pt;}
.y1b_c00359{bottom:189.684920pt;}
.y1a_c00359{bottom:218.830520pt;}
.y19_c00359{bottom:298.030520pt;}
.y18_c00359{bottom:305.316920pt;}
.y17_c00359{bottom:333.828920pt;}
.y16_c00359{bottom:356.634120pt;}
.y15_c00359{bottom:362.336520pt;}
.y14_c00359{bottom:391.169720pt;}
.y13_c00359{bottom:419.994120pt;}
.y12_c00359{bottom:448.827320pt;}
.y11_c00359{bottom:475.117320pt;}
.y10_c00359{bottom:478.289720pt;}
.yf_c00359{bottom:535.313720pt;}
.ye_c00359{bottom:564.454920pt;}
.yd_c00359{bottom:592.650120pt;}
.yc_c00359{bottom:621.478920pt;}
.yb_c00359{bottom:649.678520pt;}
.ya_c00359{bottom:678.507320pt;}
.y9_c00359{bottom:706.702520pt;}
.y8_c00359{bottom:734.893320pt;}
.y7_c00359{bottom:760.558520pt;}
.y5_c00359{bottom:763.722120pt;}
.y6_c00359{bottom:764.038920pt;}
.y4_c00359{bottom:792.555320pt;}
.y3_c00359{bottom:821.384120pt;}
.y2_c00359{bottom:933.526920pt;}
.h18_c00359{height:5.907804pt;}
.ha_c00359{height:11.815373pt;}
.h2_c00359{height:20.559000pt;}
.h21_c00359{height:25.698750pt;}
.hf_c00359{height:27.850522pt;}
.h1d_c00359{height:28.155703pt;}
.h5_c00359{height:28.694594pt;}
.h16_c00359{height:29.538549pt;}
.hd_c00359{height:29.710485pt;}
.h15_c00359{height:32.914370pt;}
.h12_c00359{height:33.758325pt;}
.h19_c00359{height:34.876875pt;}
.h1e_c00359{height:35.446236pt;}
.h20_c00359{height:35.978250pt;}
.h10_c00359{height:36.619860pt;}
.h7_c00359{height:41.801891pt;}
.hc_c00359{height:44.220000pt;}
.h9_c00359{height:51.764809pt;}
.h11_c00359{height:55.803000pt;}
.h14_c00359{height:59.474434pt;}
.h3_c00359{height:61.838906pt;}
.h4_c00359{height:62.844204pt;}
.h8_c00359{height:63.106106pt;}
.h1a_c00359{height:63.145684pt;}
.h6_c00359{height:63.566250pt;}
.h13_c00359{height:64.948125pt;}
.he_c00359{height:67.712048pt;}
.h1f_c00359{height:68.285434pt;}
.h1c_c00359{height:68.748281pt;}
.hb_c00359{height:70.488184pt;}
.h17_c00359{height:73.425000pt;}
.h1b_c00359{height:88.785641pt;}
.h1_c00359{height:986.666667pt;}
.h0_c00359{height:1122.666667pt;}
.w1_c00359{width:689.333333pt;}
.w0_c00359{width:793.333333pt;}
.x0_c00359{left:0.000000pt;}
.x2_c00359{left:48.067053pt;}
.x1_c00359{left:52.000000pt;}
.x4f_c00359{left:81.049453pt;}
.x3_c00359{left:82.351853pt;}
.x6d_c00359{left:83.328653pt;}
.x52_c00359{left:84.353853pt;}
.x87_c00359{left:85.251453pt;}
.x79_c00359{left:87.627453pt;}
.x15_c00359{left:91.737053pt;}
.x75_c00359{left:92.806253pt;}
.x67_c00359{left:102.719453pt;}
.x4_c00359{left:111.295053pt;}
.x68_c00359{left:112.263053pt;}
.x88_c00359{left:113.279453pt;}
.x2b_c00359{left:120.020253pt;}
.x33_c00359{left:121.423853pt;}
.x82_c00359{left:122.422653pt;}
.x40_c00359{left:124.820653pt;}
.x58_c00359{left:130.149053pt;}
.x5b_c00359{left:131.046653pt;}
.x89_c00359{left:132.516253pt;}
.x48_c00359{left:139.785053pt;}
.x5_c00359{left:140.713453pt;}
.x34_c00359{left:150.613453pt;}
.x83_c00359{left:151.832253pt;}
.x6e_c00359{left:153.319453pt;}
.x16_c00359{left:160.060253pt;}
.x8a_c00359{left:161.213053pt;}
.x66_c00359{left:166.783453pt;}
.x35_c00359{left:170.224253pt;}
.x6_c00359{left:179.763453pt;}
.x76_c00359{left:180.709453pt;}
.x41_c00359{left:189.381853pt;}
.x5c_c00359{left:192.448653pt;}
.x49_c00359{left:193.715853pt;}
.x7_c00359{left:198.960653pt;}
.x77_c00359{left:199.911053pt;}
.x84_c00359{left:200.940653pt;}
.x5d_c00359{left:202.287053pt;}
.x4a_c00359{left:209.014653pt;}
.x80_c00359{left:209.987053pt;}
.x7a_c00359{left:211.351053pt;}
.x69_c00359{left:219.266653pt;}
.x8b_c00359{left:220.331453pt;}
.x36_c00359{left:229.184253pt;}
.x7b_c00359{left:230.755053pt;}
.x20_c00359{left:233.716253pt;}
.x8_c00359{left:239.035853pt;}
.x8c_c00359{left:240.096253pt;}
.x9_c00359{left:248.465053pt;}
.x53_c00359{left:249.380253pt;}
.x21_c00359{left:251.558253pt;}
.x17_c00359{left:258.285853pt;}
.x5e_c00359{left:259.262653pt;}
.x85_c00359{left:265.097053pt;}
.x22_c00359{left:267.957053pt;}
.x37_c00359{left:269.884253pt;}
.xa_c00359{left:277.786653pt;}
.x4b_c00359{left:279.705053pt;}
.x2c_c00359{left:287.765853pt;}
.x18_c00359{left:297.054253pt;}
.x54_c00359{left:298.202653pt;}
.x78_c00359{left:306.963053pt;}
.x4c_c00359{left:308.406253pt;}
.x2d_c00359{left:318.033453pt;}
.x6f_c00359{left:319.802253pt;}
.x70_c00359{left:325.834653pt;}
.x2a_c00359{left:326.925853pt;}
.x42_c00359{left:328.298653pt;}
.xb_c00359{left:337.468253pt;}
.x38_c00359{left:347.979853pt;}
.xc_c00359{left:356.810653pt;}
.x19_c00359{left:357.769853pt;}
.x2e_c00359{left:365.540253pt;}
.x43_c00359{left:366.688653pt;}
.x59_c00359{left:367.595053pt;}
.x5f_c00359{left:368.747853pt;}
.x44_c00359{left:375.391853pt;}
.x1a_c00359{left:376.496253pt;}
.x7e_c00359{left:377.728253pt;}
.x2f_c00359{left:382.981853pt;}
.xd_c00359{left:386.013453pt;}
.x39_c00359{left:396.190653pt;}
.x6a_c00359{left:398.588653pt;}
.x23_c00359{left:405.672653pt;}
.x60_c00359{left:406.759453pt;}
.x3a_c00359{left:415.788253pt;}
.x1b_c00359{left:425.296653pt;}
.x71_c00359{left:426.506653pt;}
.x7c_c00359{left:428.425053pt;}
.x1c_c00359{left:435.055853pt;}
.x7d_c00359{left:437.779453pt;}
.xe_c00359{left:444.973453pt;}
.x5a_c00359{left:446.130653pt;}
.x3b_c00359{left:447.375853pt;}
.x50_c00359{left:450.196253pt;}
.x30_c00359{left:454.508253pt;}
.x61_c00359{left:456.043853pt;}
.x1d_c00359{left:465.081453pt;}
.x8d_c00359{left:466.172653pt;}
.x55_c00359{left:468.856653pt;}
.x56_c00359{left:471.069853pt;}
.x24_c00359{left:474.479853pt;}
.x62_c00359{left:476.138653pt;}
.x86_c00359{left:477.713853pt;}
.x31_c00359{left:484.441453pt;}
.x25_c00359{left:494.301853pt;}
.x81_c00359{left:495.261053pt;}
.xf_c00359{left:503.546253pt;}
.x72_c00359{left:505.081853pt;}
.x57_c00359{left:506.868253pt;}
.x10_c00359{left:510.982253pt;}
.x51_c00359{left:512.883053pt;}
.x45_c00359{left:514.269053pt;}
.x26_c00359{left:515.721053pt;}
.x4d_c00359{left:523.047053pt;}
.x6b_c00359{left:524.437453pt;}
.x63_c00359{left:527.777053pt;}
.x27_c00359{left:533.365053pt;}
.x73_c00359{left:534.812653pt;}
.x4e_c00359{left:542.820653pt;}
.x11_c00359{left:543.722653pt;}
.x64_c00359{left:545.839053pt;}
.x46_c00359{left:552.953853pt;}
.x3c_c00359{left:563.417053pt;}
.x6c_c00359{left:569.559453pt;}
.x28_c00359{left:572.683453pt;}
.x8e_c00359{left:575.613853pt;}
.x29_c00359{left:582.983853pt;}
.x12_c00359{left:592.901453pt;}
.x3d_c00359{left:595.039853pt;}
.x13_c00359{left:602.194253pt;}
.x1e_c00359{left:612.345053pt;}
.x8f_c00359{left:614.897053pt;}
.x32_c00359{left:621.827053pt;}
.x7f_c00359{left:622.927053pt;}
.x47_c00359{left:631.023053pt;}
.x65_c00359{left:631.986653pt;}
.x3e_c00359{left:633.887453pt;}
.x14_c00359{left:641.952653pt;}
.x74_c00359{left:650.691053pt;}
.x1f_c00359{left:661.343453pt;}
.x3f_c00359{left:673.997853pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_19f65bf00d6728ae6d0ad393.woff2')format("woff");}.ff1_c00360{font-family:ff1_c00360;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00360;src:url('chunks/assets/font_2aa156781c5007f929c56da7.woff2')format("woff");}.ff2_c00360{font-family:ff2_c00360;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00360;src:url('chunks/assets/font_49bf1d99717519c3025d99b8.woff2')format("woff");}.ff3_c00360{font-family:ff3_c00360;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00360;src:url('chunks/assets/font_e71da109884877877cd992f7.woff2')format("woff");}.ff4_c00360{font-family:ff4_c00360;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mbd_c00360{transform:matrix(0.025736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.025736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.025736,0.000000,0.000000,0.250000,0,0);}
.mba_c00360{transform:matrix(0.036766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036766,0.000000,0.000000,0.250000,0,0);}
.mbc_c00360{transform:matrix(0.044118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.044118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.044118,0.000000,0.000000,0.250000,0,0);}
.m4c_c00360{transform:matrix(0.062501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062501,0.000000,0.000000,0.250000,0,0);}
.m4f_c00360{transform:matrix(0.069445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.069445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.069445,0.000000,0.000000,0.250000,0,0);}
.m1a_c00360{transform:matrix(0.071429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071429,0.000000,0.000000,0.250000,0,0);}
.md8_c00360{transform:matrix(0.082176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.082176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.082176,0.000000,0.000000,0.250000,0,0);}
.m83_c00360{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);}
.mdb_c00360{transform:matrix(0.083913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083913,0.000000,0.000000,0.250000,0,0);}
.mec_c00360{transform:matrix(0.087838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087838,0.000000,0.000000,0.250000,0,0);}
.me1_c00360{transform:matrix(0.088815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088815,0.000000,0.000000,0.250000,0,0);}
.m7e_c00360{transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);}
.me4_c00360{transform:matrix(0.105264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105264,0.000000,0.000000,0.250000,0,0);}
.md7_c00360{transform:matrix(0.109313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109313,0.000000,0.000000,0.250000,0,0);}
.m76_c00360{transform:matrix(0.115570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115570,0.000000,0.000000,0.250000,0,0);}
.m2b_c00360{transform:matrix(0.118391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118391,0.000000,0.000000,0.250000,0,0);}
.m3c_c00360{transform:matrix(0.123989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123989,0.000000,0.000000,0.250000,0,0);}
.mad_c00360{transform:matrix(0.124215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124215,0.000000,0.000000,0.250000,0,0);}
.m4e_c00360{transform:matrix(0.127315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127315,0.000000,0.000000,0.250000,0,0);}
.m62_c00360{transform:matrix(0.127833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127833,0.000000,0.000000,0.250000,0,0);}
.mb9_c00360{transform:matrix(0.134804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134804,0.000000,0.000000,0.250000,0,0);}
.m49_c00360{transform:matrix(0.134824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134824,0.000000,0.000000,0.250000,0,0);}
.me3_c00360{transform:matrix(0.144736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144736,0.000000,0.000000,0.250000,0,0);}
.m1b_c00360{transform:matrix(0.146428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146428,0.000000,0.000000,0.250000,0,0);}
.ma3_c00360{transform:matrix(0.148648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148648,0.000000,0.000000,0.250000,0,0);}
.m47_c00360{transform:matrix(0.151253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151253,0.000000,0.000000,0.250000,0,0);}
.m4b_c00360{transform:matrix(0.152777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152777,0.000000,0.000000,0.250000,0,0);}
.mce_c00360{transform:matrix(0.154477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154477,0.000000,0.000000,0.250000,0,0);}
.me5_c00360{transform:matrix(0.155702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155702,0.000000,0.000000,0.250000,0,0);}
.mdc_c00360{transform:matrix(0.156014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156014,0.000000,0.000000,0.250000,0,0);}
.m9e_c00360{transform:matrix(0.157069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157069,0.000000,0.000000,0.250000,0,0);}
.med_c00360{transform:matrix(0.162162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162162,0.000000,0.000000,0.250000,0,0);}
.m6e_c00360{transform:matrix(0.167249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167249,0.000000,0.000000,0.250000,0,0);}
.ma2_c00360{transform:matrix(0.168918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168918,0.000000,0.000000,0.250000,0,0);}
.m1c_c00360{transform:matrix(0.171429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171429,0.000000,0.000000,0.250000,0,0);}
.m71_c00360{transform:matrix(0.173090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173090,0.000000,0.000000,0.250000,0,0);}
.mf1_c00360{transform:matrix(0.181081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181081,0.000000,0.000000,0.250000,0,0);}
.m4d_c00360{transform:matrix(0.184027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184027,0.000000,0.000000,0.250000,0,0);}
.m8b_c00360{transform:matrix(0.185898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185898,0.000000,0.000000,0.250000,0,0);}
.m82_c00360{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.me2_c00360{transform:matrix(0.192434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192434,0.000000,0.000000,0.250000,0,0);}
.m8c_c00360{transform:matrix(0.195869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195869,0.000000,0.000000,0.250000,0,0);}
.m81_c00360{transform:matrix(0.196759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196759,0.000000,0.000000,0.250000,0,0);}
.m7f_c00360{transform:matrix(0.199074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199074,0.000000,0.000000,0.250000,0,0);}
.m1d_c00360{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00360{transform:matrix(0.200368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200368,0.000000,0.000000,0.250000,0,0);}
.mab_c00360{transform:matrix(0.206987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206987,0.000000,0.000000,0.250000,0,0);}
.m1e_c00360{transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);}
.m80_c00360{transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);}
.m7b_c00360{transform:matrix(0.230877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230877,0.000000,0.000000,0.250000,0,0);}
.m42_c00360{transform:matrix(0.231230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231230,0.000000,0.000000,0.250000,0,0);}
.m78_c00360{transform:matrix(0.231840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231840,0.000000,0.000000,0.250000,0,0);}
.me8_c00360{transform:matrix(0.232397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232397,0.000000,0.000000,0.250000,0,0);}
.mc4_c00360{transform:matrix(0.236404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236404,0.000000,0.000000,0.250000,0,0);}
.mf_c00360{transform:matrix(0.237917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237917,0.000000,0.000000,0.250000,0,0);}
.mac_c00360{transform:matrix(0.239155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239155,0.000000,0.000000,0.250000,0,0);}
.md_c00360{transform:matrix(0.243736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243736,0.000000,0.000000,0.250000,0,0);}
.m37_c00360{transform:matrix(0.243853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243853,0.000000,0.000000,0.250000,0,0);}
.m0_c00360{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.mde_c00360{transform:matrix(0.250345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250345,0.000000,0.000000,0.250000,0,0);}
.md2_c00360{transform:matrix(0.250581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250581,0.000000,0.000000,0.250000,0,0);}
.m72_c00360{transform:matrix(0.252671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252671,0.000000,0.000000,0.250000,0,0);}
.m2e_c00360{transform:matrix(0.253190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253190,0.000000,0.000000,0.250000,0,0);}
.meb_c00360{transform:matrix(0.253516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253516,0.000000,0.000000,0.250000,0,0);}
.mf0_c00360{transform:matrix(0.255834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255834,0.000000,0.000000,0.250000,0,0);}
.m75_c00360{transform:matrix(0.256611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256611,0.000000,0.000000,0.250000,0,0);}
.mee_c00360{transform:matrix(0.260338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260338,0.000000,0.000000,0.250000,0,0);}
.m2f_c00360{transform:matrix(0.260563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260563,0.000000,0.000000,0.250000,0,0);}
.md6_c00360{transform:matrix(0.261817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261817,0.000000,0.000000,0.250000,0,0);}
.m8f_c00360{transform:matrix(0.262980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262980,0.000000,0.000000,0.250000,0,0);}
.m32_c00360{transform:matrix(0.264502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264502,0.000000,0.000000,0.250000,0,0);}
.m46_c00360{transform:matrix(0.264886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264886,0.000000,0.000000,0.250000,0,0);}
.m99_c00360{transform:matrix(0.265021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265021,0.000000,0.000000,0.250000,0,0);}
.m6d_c00360{transform:matrix(0.265297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265297,0.000000,0.000000,0.250000,0,0);}
.mae_c00360{transform:matrix(0.270034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270034,0.000000,0.000000,0.250000,0,0);}
.m61_c00360{transform:matrix(0.270118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270118,0.000000,0.000000,0.250000,0,0);}
.m10_c00360{transform:matrix(0.270247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270247,0.000000,0.000000,0.250000,0,0);}
.mcd_c00360{transform:matrix(0.271185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271185,0.000000,0.000000,0.250000,0,0);}
.m79_c00360{transform:matrix(0.274899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274899,0.000000,0.000000,0.250000,0,0);}
.md9_c00360{transform:matrix(0.278088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278088,0.000000,0.000000,0.250000,0,0);}
.m15_c00360{transform:matrix(0.280225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280225,0.000000,0.000000,0.250000,0,0);}
.mb6_c00360{transform:matrix(0.280311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280311,0.000000,0.000000,0.250000,0,0);}
.m7a_c00360{transform:matrix(0.280397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280397,0.000000,0.000000,0.250000,0,0);}
.m34_c00360{transform:matrix(0.281606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281606,0.000000,0.000000,0.250000,0,0);}
.m67_c00360{transform:matrix(0.282190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282190,0.000000,0.000000,0.250000,0,0);}
.m7_c00360{transform:matrix(0.282201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282201,0.000000,0.000000,0.250000,0,0);}
.mc_c00360{transform:matrix(0.282202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282202,0.000000,0.000000,0.250000,0,0);}
.m65_c00360{transform:matrix(0.283335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283335,0.000000,0.000000,0.250000,0,0);}
.m38_c00360{transform:matrix(0.283434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283434,0.000000,0.000000,0.250000,0,0);}
.mcf_c00360{transform:matrix(0.284151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284151,0.000000,0.000000,0.250000,0,0);}
.m92_c00360{transform:matrix(0.284457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284457,0.000000,0.000000,0.250000,0,0);}
.m50_c00360{transform:matrix(0.284684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284684,0.000000,0.000000,0.250000,0,0);}
.m5e_c00360{transform:matrix(0.284809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284809,0.000000,0.000000,0.250000,0,0);}
.m68_c00360{transform:matrix(0.285320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285320,0.000000,0.000000,0.250000,0,0);}
.m8_c00360{transform:matrix(0.286467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286467,0.000000,0.000000,0.250000,0,0);}
.mbb_c00360{transform:matrix(0.286765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286765,0.000000,0.000000,0.250000,0,0);}
.m1_c00360{transform:matrix(0.287241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287241,0.000000,0.000000,0.250000,0,0);}
.m25_c00360{transform:matrix(0.287242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287242,0.000000,0.000000,0.250000,0,0);}
.mb5_c00360{transform:matrix(0.287544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287544,0.000000,0.000000,0.250000,0,0);}
.me0_c00360{transform:matrix(0.287864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287864,0.000000,0.000000,0.250000,0,0);}
.m17_c00360{transform:matrix(0.288520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288520,0.000000,0.000000,0.250000,0,0);}
.ma4_c00360{transform:matrix(0.288665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288665,0.000000,0.000000,0.250000,0,0);}
.md0_c00360{transform:matrix(0.289078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289078,0.000000,0.000000,0.250000,0,0);}
.m74_c00360{transform:matrix(0.289745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289745,0.000000,0.000000,0.250000,0,0);}
.m6b_c00360{transform:matrix(0.289902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289902,0.000000,0.000000,0.250000,0,0);}
.m9_c00360{transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);}
.me_c00360{transform:matrix(0.292280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292280,0.000000,0.000000,0.250000,0,0);}
.m58_c00360{transform:matrix(0.293039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293039,0.000000,0.000000,0.250000,0,0);}
.mc5_c00360{transform:matrix(0.293295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293295,0.000000,0.000000,0.250000,0,0);}
.m5d_c00360{transform:matrix(0.295509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295509,0.000000,0.000000,0.250000,0,0);}
.m59_c00360{transform:matrix(0.295772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295772,0.000000,0.000000,0.250000,0,0);}
.m9c_c00360{transform:matrix(0.296004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296004,0.000000,0.000000,0.250000,0,0);}
.mb3_c00360{transform:matrix(0.297392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297392,0.000000,0.000000,0.250000,0,0);}
.ma_c00360{transform:matrix(0.297691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297691,0.000000,0.000000,0.250000,0,0);}
.m84_c00360{transform:matrix(0.298114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298114,0.000000,0.000000,0.250000,0,0);}
.m19_c00360{transform:matrix(0.298471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298471,0.000000,0.000000,0.250000,0,0);}
.m24_c00360{transform:matrix(0.299046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299046,0.000000,0.000000,0.250000,0,0);}
.mbf_c00360{transform:matrix(0.299195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299195,0.000000,0.000000,0.250000,0,0);}
.m94_c00360{transform:matrix(0.300618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300618,0.000000,0.000000,0.250000,0,0);}
.md5_c00360{transform:matrix(0.301114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301114,0.000000,0.000000,0.250000,0,0);}
.mdf_c00360{transform:matrix(0.301406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301406,0.000000,0.000000,0.250000,0,0);}
.m14_c00360{transform:matrix(0.301408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301408,0.000000,0.000000,0.250000,0,0);}
.m4a_c00360{transform:matrix(0.301753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301753,0.000000,0.000000,0.250000,0,0);}
.m51_c00360{transform:matrix(0.301891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301891,0.000000,0.000000,0.250000,0,0);}
.m86_c00360{transform:matrix(0.302202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302202,0.000000,0.000000,0.250000,0,0);}
.m39_c00360{transform:matrix(0.302565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302565,0.000000,0.000000,0.250000,0,0);}
.m20_c00360{transform:matrix(0.302992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302992,0.000000,0.000000,0.250000,0,0);}
.m57_c00360{transform:matrix(0.303156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303156,0.000000,0.000000,0.250000,0,0);}
.m36_c00360{transform:matrix(0.303857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303857,0.000000,0.000000,0.250000,0,0);}
.mef_c00360{transform:matrix(0.304024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304024,0.000000,0.000000,0.250000,0,0);}
.m6f_c00360{transform:matrix(0.304796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304796,0.000000,0.000000,0.250000,0,0);}
.m6c_c00360{transform:matrix(0.305306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305306,0.000000,0.000000,0.250000,0,0);}
.mca_c00360{transform:matrix(0.305417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305417,0.000000,0.000000,0.250000,0,0);}
.m43_c00360{transform:matrix(0.305481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305481,0.000000,0.000000,0.250000,0,0);}
.m56_c00360{transform:matrix(0.305581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305581,0.000000,0.000000,0.250000,0,0);}
.m2a_c00360{transform:matrix(0.306372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306372,0.000000,0.000000,0.250000,0,0);}
.maa_c00360{transform:matrix(0.306437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306437,0.000000,0.000000,0.250000,0,0);}
.m3b_c00360{transform:matrix(0.306961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306961,0.000000,0.000000,0.250000,0,0);}
.m5_c00360{transform:matrix(0.307142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307142,0.000000,0.000000,0.250000,0,0);}
.m9b_c00360{transform:matrix(0.307346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307346,0.000000,0.000000,0.250000,0,0);}
.mb1_c00360{transform:matrix(0.308970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308970,0.000000,0.000000,0.250000,0,0);}
.mb0_c00360{transform:matrix(0.309085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309085,0.000000,0.000000,0.250000,0,0);}
.m28_c00360{transform:matrix(0.309324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309324,0.000000,0.000000,0.250000,0,0);}
.m9a_c00360{transform:matrix(0.310584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310584,0.000000,0.000000,0.250000,0,0);}
.m5b_c00360{transform:matrix(0.310638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310638,0.000000,0.000000,0.250000,0,0);}
.m31_c00360{transform:matrix(0.311209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311209,0.000000,0.000000,0.250000,0,0);}
.m11_c00360{transform:matrix(0.311579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311579,0.000000,0.000000,0.250000,0,0);}
.m77_c00360{transform:matrix(0.312196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312196,0.000000,0.000000,0.250000,0,0);}
.m9f_c00360{transform:matrix(0.312541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312541,0.000000,0.000000,0.250000,0,0);}
.m3d_c00360{transform:matrix(0.312657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312657,0.000000,0.000000,0.250000,0,0);}
.m8a_c00360{transform:matrix(0.313140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313140,0.000000,0.000000,0.250000,0,0);}
.m88_c00360{transform:matrix(0.313674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313674,0.000000,0.000000,0.250000,0,0);}
.m41_c00360{transform:matrix(0.314460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314460,0.000000,0.000000,0.250000,0,0);}
.m26_c00360{transform:matrix(0.314501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314501,0.000000,0.000000,0.250000,0,0);}
.m55_c00360{transform:matrix(0.315658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315658,0.000000,0.000000,0.250000,0,0);}
.mc7_c00360{transform:matrix(0.316193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316193,0.000000,0.000000,0.250000,0,0);}
.m8d_c00360{transform:matrix(0.316849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316849,0.000000,0.000000,0.250000,0,0);}
.m73_c00360{transform:matrix(0.318306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318306,0.000000,0.000000,0.250000,0,0);}
.m3_c00360{transform:matrix(0.318328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318328,0.000000,0.000000,0.250000,0,0);}
.m60_c00360{transform:matrix(0.320056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320056,0.000000,0.000000,0.250000,0,0);}
.mc9_c00360{transform:matrix(0.320178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320178,0.000000,0.000000,0.250000,0,0);}
.mc1_c00360{transform:matrix(0.320421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320421,0.000000,0.000000,0.250000,0,0);}
.ma7_c00360{transform:matrix(0.320820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320820,0.000000,0.000000,0.250000,0,0);}
.mcb_c00360{transform:matrix(0.321654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321654,0.000000,0.000000,0.250000,0,0);}
.mc3_c00360{transform:matrix(0.322581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322581,0.000000,0.000000,0.250000,0,0);}
.m6a_c00360{transform:matrix(0.322871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322871,0.000000,0.000000,0.250000,0,0);}
.md1_c00360{transform:matrix(0.323875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323875,0.000000,0.000000,0.250000,0,0);}
.m66_c00360{transform:matrix(0.324116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324116,0.000000,0.000000,0.250000,0,0);}
.mc6_c00360{transform:matrix(0.324300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324300,0.000000,0.000000,0.250000,0,0);}
.m7c_c00360{transform:matrix(0.324705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324705,0.000000,0.000000,0.250000,0,0);}
.me9_c00360{transform:matrix(0.324792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324792,0.000000,0.000000,0.250000,0,0);}
.ma0_c00360{transform:matrix(0.325081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325081,0.000000,0.000000,0.250000,0,0);}
.m3a_c00360{transform:matrix(0.325094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325094,0.000000,0.000000,0.250000,0,0);}
.m12_c00360{transform:matrix(0.325276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325276,0.000000,0.000000,0.250000,0,0);}
.mf4_c00360{transform:matrix(0.326349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326349,0.000000,0.000000,0.250000,0,0);}
.mf2_c00360{transform:matrix(0.327841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327841,0.000000,0.000000,0.250000,0,0);}
.m13_c00360{transform:matrix(0.328910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328910,0.000000,0.000000,0.250000,0,0);}
.me6_c00360{transform:matrix(0.329639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329639,0.000000,0.000000,0.250000,0,0);}
.m98_c00360{transform:matrix(0.329644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329644,0.000000,0.000000,0.250000,0,0);}
.m8e_c00360{transform:matrix(0.329866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329866,0.000000,0.000000,0.250000,0,0);}
.maf_c00360{transform:matrix(0.330241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330241,0.000000,0.000000,0.250000,0,0);}
.m16_c00360{transform:matrix(0.330718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330718,0.000000,0.000000,0.250000,0,0);}
.m30_c00360{transform:matrix(0.332242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332242,0.000000,0.000000,0.250000,0,0);}
.mb2_c00360{transform:matrix(0.333414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333414,0.000000,0.000000,0.250000,0,0);}
.m21_c00360{transform:matrix(0.333908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333908,0.000000,0.000000,0.250000,0,0);}
.mea_c00360{transform:matrix(0.334776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334776,0.000000,0.000000,0.250000,0,0);}
.md3_c00360{transform:matrix(0.335174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335174,0.000000,0.000000,0.250000,0,0);}
.m69_c00360{transform:matrix(0.335974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335974,0.000000,0.000000,0.250000,0,0);}
.ma1_c00360{transform:matrix(0.336305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336305,0.000000,0.000000,0.250000,0,0);}
.ma9_c00360{transform:matrix(0.336631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336631,0.000000,0.000000,0.250000,0,0);}
.m93_c00360{transform:matrix(0.336731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336731,0.000000,0.000000,0.250000,0,0);}
.md4_c00360{transform:matrix(0.336861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336861,0.000000,0.000000,0.250000,0,0);}
.m3e_c00360{transform:matrix(0.336926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336926,0.000000,0.000000,0.250000,0,0);}
.m4_c00360{transform:matrix(0.338430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338430,0.000000,0.000000,0.250000,0,0);}
.m97_c00360{transform:matrix(0.338787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338787,0.000000,0.000000,0.250000,0,0);}
.m5f_c00360{transform:matrix(0.339022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339022,0.000000,0.000000,0.250000,0,0);}
.m22_c00360{transform:matrix(0.339548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339548,0.000000,0.000000,0.250000,0,0);}
.m54_c00360{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);}
.mbe_c00360{transform:matrix(0.340521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340521,0.000000,0.000000,0.250000,0,0);}
.mb_c00360{transform:matrix(0.340541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340541,0.000000,0.000000,0.250000,0,0);}
.m63_c00360{transform:matrix(0.340648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340648,0.000000,0.000000,0.250000,0,0);}
.m91_c00360{transform:matrix(0.341198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341198,0.000000,0.000000,0.250000,0,0);}
.m48_c00360{transform:matrix(0.342705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342705,0.000000,0.000000,0.250000,0,0);}
.m1f_c00360{transform:matrix(0.343663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343663,0.000000,0.000000,0.250000,0,0);}
.m2_c00360{transform:matrix(0.344061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344061,0.000000,0.000000,0.250000,0,0);}
.m40_c00360{transform:matrix(0.345034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345034,0.000000,0.000000,0.250000,0,0);}
.mdd_c00360{transform:matrix(0.345823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345823,0.000000,0.000000,0.250000,0,0);}
.mda_c00360{transform:matrix(0.345995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345995,0.000000,0.000000,0.250000,0,0);}
.m85_c00360{transform:matrix(0.347698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347698,0.000000,0.000000,0.250000,0,0);}
.m52_c00360{transform:matrix(0.349481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349481,0.000000,0.000000,0.250000,0,0);}
.m33_c00360{transform:matrix(0.349627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349627,0.000000,0.000000,0.250000,0,0);}
.m53_c00360{transform:matrix(0.352963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352963,0.000000,0.000000,0.250000,0,0);}
.ma5_c00360{transform:matrix(0.354310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354310,0.000000,0.000000,0.250000,0,0);}
.m87_c00360{transform:matrix(0.354321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354321,0.000000,0.000000,0.250000,0,0);}
.m27_c00360{transform:matrix(0.355963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355963,0.000000,0.000000,0.250000,0,0);}
.m7d_c00360{transform:matrix(0.356907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356907,0.000000,0.000000,0.250000,0,0);}
.ma8_c00360{transform:matrix(0.358536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358536,0.000000,0.000000,0.250000,0,0);}
.m6_c00360{transform:matrix(0.358705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358705,0.000000,0.000000,0.250000,0,0);}
.ma6_c00360{transform:matrix(0.360809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360809,0.000000,0.000000,0.250000,0,0);}
.mc8_c00360{transform:matrix(0.361994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361994,0.000000,0.000000,0.250000,0,0);}
.m44_c00360{transform:matrix(0.363517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363517,0.000000,0.000000,0.250000,0,0);}
.mb7_c00360{transform:matrix(0.367008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367008,0.000000,0.000000,0.250000,0,0);}
.m90_c00360{transform:matrix(0.367917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367917,0.000000,0.000000,0.250000,0,0);}
.m5a_c00360{transform:matrix(0.368194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368194,0.000000,0.000000,0.250000,0,0);}
.mc2_c00360{transform:matrix(0.374487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374487,0.000000,0.000000,0.250000,0,0);}
.m5c_c00360{transform:matrix(0.376110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376110,0.000000,0.000000,0.250000,0,0);}
.m18_c00360{transform:matrix(0.377430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377430,0.000000,0.000000,0.250000,0,0);}
.m64_c00360{transform:matrix(0.380471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380471,0.000000,0.000000,0.250000,0,0);}
.m2d_c00360{transform:matrix(0.382861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382861,0.000000,0.000000,0.250000,0,0);}
.me7_c00360{transform:matrix(0.394548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394548,0.000000,0.000000,0.250000,0,0);}
.m96_c00360{transform:matrix(0.396780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396780,0.000000,0.000000,0.250000,0,0);}
.m89_c00360{transform:matrix(0.397937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397937,0.000000,0.000000,0.250000,0,0);}
.mf3_c00360{transform:matrix(0.399135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399135,0.000000,0.000000,0.250000,0,0);}
.m2c_c00360{transform:matrix(0.405296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405296,0.000000,0.000000,0.250000,0,0);}
.m23_c00360{transform:matrix(0.405896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405896,0.000000,0.000000,0.250000,0,0);}
.m29_c00360{transform:matrix(0.413413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413413,0.000000,0.000000,0.250000,0,0);}
.mcc_c00360{transform:matrix(0.423705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423705,0.000000,0.000000,0.250000,0,0);}
.m70_c00360{transform:matrix(0.437319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437319,0.000000,0.000000,0.250000,0,0);}
.m45_c00360{transform:matrix(0.437492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437492,0.000000,0.000000,0.250000,0,0);}
.m35_c00360{transform:matrix(0.446385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446385,0.000000,0.000000,0.250000,0,0);}
.mb4_c00360{transform:matrix(0.450186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450186,0.000000,0.000000,0.250000,0,0);}
.mc0_c00360{transform:matrix(0.454808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454808,0.000000,0.000000,0.250000,0,0);}
.m9d_c00360{transform:matrix(0.458274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458274,0.000000,0.000000,0.250000,0,0);}
.m95_c00360{transform:matrix(0.463230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463230,0.000000,0.000000,0.250000,0,0);}
.m3f_c00360{transform:matrix(0.480074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480074,0.000000,0.000000,0.250000,0,0);}
.v2_c00360{vertical-align:-2.831400px;}
.v0_c00360{vertical-align:0.000000px;}
.v1_c00360{vertical-align:29.957400px;}
.ls10_c00360{letter-spacing:-2.938327px;}
.lsa_c00360{letter-spacing:-2.515590px;}
.ls19_c00360{letter-spacing:-2.321530px;}
.lse_c00360{letter-spacing:-2.213719px;}
.ls17_c00360{letter-spacing:-2.199344px;}
.ls13_c00360{letter-spacing:-1.760220px;}
.ls8_c00360{letter-spacing:-1.536325px;}
.ls16_c00360{letter-spacing:-1.430293px;}
.lsf_c00360{letter-spacing:-1.114047px;}
.ls21_c00360{letter-spacing:-0.761864px;}
.lsc_c00360{letter-spacing:-0.258746px;}
.ls7_c00360{letter-spacing:0.000000px;}
.ls1f_c00360{letter-spacing:0.021562px;}
.ls24_c00360{letter-spacing:1.257795px;}
.lsd_c00360{letter-spacing:1.566853px;}
.ls1b_c00360{letter-spacing:1.940598px;}
.ls3_c00360{letter-spacing:1.947785px;}
.ls1e_c00360{letter-spacing:2.414966px;}
.ls1_c00360{letter-spacing:2.443716px;}
.ls12_c00360{letter-spacing:2.514600px;}
.ls25_c00360{letter-spacing:2.759962px;}
.ls1d_c00360{letter-spacing:2.968396px;}
.ls23_c00360{letter-spacing:3.177900px;}
.ls6_c00360{letter-spacing:3.557763px;}
.ls9_c00360{letter-spacing:3.593700px;}
.ls1a_c00360{letter-spacing:3.682810px;}
.ls11_c00360{letter-spacing:4.197610px;}
.ls5_c00360{letter-spacing:9.415494px;}
.ls14_c00360{letter-spacing:11.404998px;}
.ls2_c00360{letter-spacing:14.231052px;}
.ls0_c00360{letter-spacing:17.629458px;}
.ls20_c00360{letter-spacing:48.470598px;}
.lsb_c00360{letter-spacing:49.896198px;}
.ls15_c00360{letter-spacing:51.321798px;}
.ls1c_c00360{letter-spacing:52.747398px;}
.ls22_c00360{letter-spacing:54.172998px;}
.ls18_c00360{letter-spacing:55.598598px;}
.ls4_c00360{letter-spacing:74.268270px;}
.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;}
}
.wsc_c00360{word-spacing:-19.916285px;}
.ws4_c00360{word-spacing:-19.535353px;}
.ws10_c00360{word-spacing:-17.990062px;}
.ws0_c00360{word-spacing:-17.968500px;}
.ws11_c00360{word-spacing:-17.206636px;}
.ws6_c00360{word-spacing:-16.854453px;}
.wsb_c00360{word-spacing:-15.769156px;}
.ws5_c00360{word-spacing:-15.754781px;}
.wsd_c00360{word-spacing:-3.737646px;}
.ws8_c00360{word-spacing:-3.737448px;}
.ws9_c00360{word-spacing:-3.594096px;}
.ws2_c00360{word-spacing:-2.874960px;}
.ws7_c00360{word-spacing:-2.299968px;}
.ws3_c00360{word-spacing:-0.431244px;}
.ws13_c00360{word-spacing:0.000000px;}
.ws1_c00360{word-spacing:4.528062px;}
.wsf_c00360{word-spacing:4.743684px;}
.wse_c00360{word-spacing:6.109290px;}
.wsa_c00360{word-spacing:7.115526px;}
.ws12_c00360{word-spacing:8.913168px;}
._8_c00360{margin-left:-19.520978px;}
._3_c00360{margin-left:-14.590422px;}
._23_c00360{margin-left:-12.721698px;}
._24_c00360{margin-left:-9.918612px;}
._26_c00360{margin-left:-7.977420px;}
._d_c00360{margin-left:-6.182154px;}
._19_c00360{margin-left:-5.174928px;}
._17_c00360{margin-left:-3.663000px;}
._1c_c00360{margin-left:-2.097414px;}
._5_c00360{width:1.365606px;}
._18_c00360{width:3.168000px;}
._0_c00360{width:4.456188px;}
._1e_c00360{width:5.778986px;}
._e_c00360{width:7.762392px;}
._10_c00360{width:8.840502px;}
._9_c00360{width:10.565478px;}
._2_c00360{width:12.002958px;}
._6_c00360{width:13.799808px;}
._13_c00360{width:15.237288px;}
._1f_c00360{width:16.315398px;}
._1a_c00360{width:19.333314px;}
._f_c00360{width:20.627838px;}
._15_c00360{width:21.778218px;}
._27_c00360{width:22.946220px;}
._b_c00360{width:24.077988px;}
._4_c00360{width:26.091054px;}
._c_c00360{width:27.450324px;}
._14_c00360{width:32.990166px;}
._20_c00360{width:34.715142px;}
._11_c00360{width:37.092132px;}
._1_c00360{width:38.506644px;}
._22_c00360{width:40.106484px;}
._21_c00360{width:41.399424px;}
._a_c00360{width:42.908580px;}
._7_c00360{width:47.868084px;}
._16_c00360{width:49.424364px;}
._1b_c00360{width:50.743440px;}
._12_c00360{width:52.853328px;}
._25_c00360{width:189.455310px;}
._1d_c00360{width:227.270736px;}
.fc0_c00360{color:transparent;}
.fsb_c00360{font-size:11.404998px;}
.fs19_c00360{font-size:22.176000px;}
.fs4_c00360{font-size:23.166000px;}
.fs1_c00360{font-size:27.720000px;}
.fs0_c00360{font-size:33.264000px;}
.fs6_c00360{font-size:39.204000px;}
.fs11_c00360{font-size:39.600000px;}
.fs10_c00360{font-size:45.144000px;}
.fs16_c00360{font-size:48.470598px;}
.fs8_c00360{font-size:49.896198px;}
.fsa_c00360{font-size:50.292000px;}
.fsc_c00360{font-size:51.321798px;}
.fs14_c00360{font-size:52.747398px;}
.fs17_c00360{font-size:54.172998px;}
.fs12_c00360{font-size:55.598598px;}
.fse_c00360{font-size:63.558000px;}
.fs15_c00360{font-size:69.498000px;}
.fs18_c00360{font-size:71.280000px;}
.fs7_c00360{font-size:71.874000px;}
.fs3_c00360{font-size:72.864000px;}
.fs13_c00360{font-size:73.656198px;}
.fsf_c00360{font-size:76.032198px;}
.fsd_c00360{font-size:77.022198px;}
.fs9_c00360{font-size:79.596198px;}
.fs2_c00360{font-size:83.952198px;}
.fs5_c00360{font-size:125.136198px;}
.y0_c00360{bottom:0.000000px;}
.y26_c00360{bottom:14.524335px;}
.y1_c00360{bottom:76.500000px;}
.y25_c00360{bottom:129.636585px;}
.y23_c00360{bottom:159.573442px;}
.y24_c00360{bottom:159.579135px;}
.y22_c00360{bottom:192.006585px;}
.y21_c00360{bottom:225.156735px;}
.y20_c00360{bottom:290.734335px;}
.y1f_c00360{bottom:322.810335px;}
.y1e_c00360{bottom:354.173535px;}
.y1d_c00360{bottom:354.881385px;}
.y1c_c00360{bottom:355.950585px;}
.y1b_c00360{bottom:386.605935px;}
.y1a_c00360{bottom:388.744335px;}
.y19_c00360{bottom:421.884585px;}
.y18_c00360{bottom:453.960585px;}
.y17_c00360{bottom:487.467135px;}
.y16_c00360{bottom:519.543135px;}
.y15_c00360{bottom:552.331935px;}
.y14_c00360{bottom:566.226585px;}
.y13_c00360{bottom:576.210735px;}
.y12_c00360{bottom:584.407935px;}
.y11_c00360{bottom:616.478985px;}
.y10_c00360{bottom:650.341935px;}
.yf_c00360{bottom:744.426585px;}
.ye_c00360{bottom:747.995535px;}
.y3_c00360{bottom:775.789785px;}
.yd_c00360{bottom:781.853535px;}
.yc_c00360{bottom:814.998735px;}
.yb_c00360{bottom:847.787535px;}
.ya_c00360{bottom:881.284185px;}
.y9_c00360{bottom:915.503535px;}
.y8_c00360{bottom:1012.087935px;}
.y7_c00360{bottom:1027.051785px;}
.y6_c00360{bottom:1033.823385px;}
.y5_c00360{bottom:1045.940985px;}
.y4_c00360{bottom:1065.186585px;}
.y2_c00360{bottom:1071.245385px;}
.hd_c00360{height:7.595729px;}
.h19_c00360{height:23.128875px;}
.h6_c00360{height:24.161414px;}
.h3_c00360{height:28.911094px;}
.h16_c00360{height:32.281418px;}
.ha_c00360{height:33.230868px;}
.he_c00360{height:34.180317px;}
.h2_c00360{height:34.693313px;}
.h15_c00360{height:35.129767px;}
.h17_c00360{height:36.079217px;}
.h13_c00360{height:37.028666px;}
.h8_c00360{height:38.476582px;}
.h12_c00360{height:47.083781px;}
.hc_c00360{height:49.358848px;}
.h10_c00360{height:66.289008px;}
.h9_c00360{height:70.540400px;}
.h5_c00360{height:71.512031px;}
.h18_c00360{height:71.836875px;}
.h14_c00360{height:74.231637px;}
.hf_c00360{height:77.623934px;}
.h11_c00360{height:79.299207px;}
.hb_c00360{height:80.218043px;}
.h4_c00360{height:82.394491px;}
.h7_c00360{height:130.513144px;}
.h1_c00360{height:1110.000000px;}
.h0_c00360{height:1263.000000px;}
.w1_c00360{width:775.500000px;}
.w0_c00360{width:892.500000px;}
.x0_c00360{left:0.000000px;}
.x2_c00360{left:57.238485px;}
.x1_c00360{left:58.500000px;}
.x7_c00360{left:97.481985px;}
.x1b_c00360{left:98.803635px;}
.x3e_c00360{left:99.937185px;}
.x5a_c00360{left:107.931435px;}
.x70_c00360{left:118.618485px;}
.x8_c00360{left:119.890635px;}
.x1c_c00360{left:130.810335px;}
.x2c_c00360{left:136.844385px;}
.x9_c00360{left:140.705385px;}
.x4d_c00360{left:151.011285px;}
.x1d_c00360{left:152.852685px;}
.x69_c00360{left:158.663985px;}
.x71_c00360{left:162.084435px;}
.xa_c00360{left:163.742685px;}
.x95_c00360{left:172.548735px;}
.x63_c00360{left:173.578335px;}
.x6a_c00360{left:180.250935px;}
.x4e_c00360{left:184.413885px;}
.xb_c00360{left:185.695935px;}
.x72_c00360{left:187.428435px;}
.x78_c00360{left:194.610885px;}
.x2d_c00360{left:196.368135px;}
.x8e_c00360{left:204.199035px;}
.x64_c00360{left:206.089935px;}
.x1e_c00360{left:207.203685px;}
.xa9_c00360{left:210.228135px;}
.x79_c00360{left:217.153185px;}
.xc_c00360{left:218.628285px;}
.x45_c00360{left:221.642835px;}
.xa4_c00360{left:222.741735px;}
.xd_c00360{left:227.335335px;}
.x4f_c00360{left:229.389585px;}
.x2e_c00360{left:230.661735px;}
.xaa_c00360{left:233.270385px;}
.x50_c00360{left:239.447985px;}
.x1f_c00360{left:241.091385px;}
.x8f_c00360{left:250.347885px;}
.x46_c00360{left:251.461635px;}
.x20_c00360{left:258.782685px;}
.x47_c00360{left:262.267485px;}
.x3f_c00360{left:266.643285px;}
.x6b_c00360{left:271.816035px;}
.x5b_c00360{left:272.830785px;}
.xe_c00360{left:274.583085px;}
.x65_c00360{left:282.923835px;}
.x7e_c00360{left:284.131635px;}
.x51_c00360{left:285.265185px;}
.x99_c00360{left:287.774835px;}
.x7a_c00360{left:294.016785px;}
.x73_c00360{left:295.873035px;}
.x52_c00360{left:299.471685px;}
.x21_c00360{left:304.550385px;}
.x38_c00360{left:306.510585px;}
.xf_c00360{left:316.821435px;}
.x53_c00360{left:318.380685px;}
.x5c_c00360{left:328.354935px;}
.x22_c00360{left:329.686485px;}
.x9a_c00360{left:338.378685px;}
.x48_c00360{left:340.160685px;}
.x10_c00360{left:341.229885px;}
.xa5_c00360{left:349.080585px;}
.x7f_c00360{left:350.115135px;}
.x2f_c00360{left:351.164535px;}
.x5d_c00360{left:360.589335px;}
.x54_c00360{left:362.094135px;}
.x11_c00360{left:363.138585px;}
.x6c_c00360{left:371.707035px;}
.x74_c00360{left:372.781185px;}
.x23_c00360{left:373.959285px;}
.x40_c00360{left:384.700785px;}
.x9b_c00360{left:393.006885px;}
.x5e_c00360{left:394.749285px;}
.x30_c00360{left:396.452085px;}
.x84_c00360{left:405.055185px;}
.x49_c00360{left:406.451085px;}
.x39_c00360{left:408.015285px;}
.x85_c00360{left:416.747085px;}
.x41_c00360{left:417.831135px;}
.x55_c00360{left:420.182385px;}
.x66_c00360{left:421.499085px;}
.x9c_c00360{left:426.493635px;}
.x67_c00360{left:427.686585px;}
.x12_c00360{left:429.250785px;}
.xa6_c00360{left:437.754885px;}
.x86_c00360{left:438.883485px;}
.x24_c00360{left:440.111085px;}
.x9d_c00360{left:449.253735px;}
.x31_c00360{left:450.728835px;}
.xab_c00360{left:457.955835px;}
.x80_c00360{left:461.009985px;}
.x13_c00360{left:462.207885px;}
.x75_c00360{left:463.306785px;}
.x96_c00360{left:471.301035px;}
.x56_c00360{left:472.771185px;}
.x3a_c00360{left:473.800785px;}
.xa7_c00360{left:480.730785px;}
.x32_c00360{left:482.903835px;}
.x14_c00360{left:484.928385px;}
.x4a_c00360{left:488.170635px;}
.x5f_c00360{left:493.595835px;}
.x97_c00360{left:503.540385px;}
.x81_c00360{left:505.124385px;}
.x25_c00360{left:506.955885px;}
.x6d_c00360{left:509.708085px;}
.x9e_c00360{left:514.945185px;}
.x57_c00360{left:516.920235px;}
.x4c_c00360{left:521.048535px;}
.x89_c00360{left:527.419185px;}
.x15_c00360{left:528.978435px;}
.x90_c00360{left:530.314935px;}
.x3b_c00360{left:538.502235px;}
.x33_c00360{left:539.744685px;}
.x26_c00360{left:540.779235px;}
.x7b_c00360{left:547.555785px;}
.x82_c00360{left:549.515985px;}
.x16_c00360{left:551.466285px;}
.x76_c00360{left:560.599035px;}
.x27_c00360{left:561.603885px;}
.x87_c00360{left:570.895035px;}
.x60_c00360{left:571.934535px;}
.x91_c00360{left:581.275185px;}
.x17_c00360{left:582.695835px;}
.x28_c00360{left:583.864035px;}
.x8a_c00360{left:591.962235px;}
.x58_c00360{left:592.986885px;}
.x68_c00360{left:594.164985px;}
.x92_c00360{left:601.238535px;}
.x93_c00360{left:604.446135px;}
.x34_c00360{left:605.678685px;}
.x77_c00360{left:614.415435px;}
.x4b_c00360{left:616.172685px;}
.x18_c00360{left:617.415135px;}
.x94_c00360{left:622.266135px;}
.xa2_c00360{left:624.721335px;}
.x61_c00360{left:627.557685px;}
.x35_c00360{left:628.795185px;}
.x9f_c00360{left:636.536985px;}
.x6e_c00360{left:638.096235px;}
.x3c_c00360{left:639.318885px;}
.x42_c00360{left:641.125635px;}
.x8b_c00360{left:648.421935px;}
.x29_c00360{left:650.387085px;}
.xa8_c00360{left:655.401435px;}
.x88_c00360{left:659.445585px;}
.x36_c00360{left:661.133535px;}
.x2a_c00360{left:662.663085px;}
.xa3_c00360{left:668.900085px;}
.x83_c00360{left:670.880085px;}
.x59_c00360{left:673.384785px;}
.x3_c00360{left:675.112335px;}
.x37_c00360{left:681.750285px;}
.x3d_c00360{left:683.017485px;}
.x43_c00360{left:686.254785px;}
.x8c_c00360{left:691.714635px;}
.x62_c00360{left:694.065885px;}
.xa0_c00360{left:701.693835px;}
.x7c_c00360{left:704.020335px;}
.x19_c00360{left:705.812235px;}
.x4_c00360{left:707.500185px;}
.x5_c00360{left:709.064385px;}
.x6_c00360{left:711.915585px;}
.x98_c00360{left:713.138235px;}
.x44_c00360{left:715.534035px;}
.x2b_c00360{left:716.657685px;}
.xac_c00360{left:725.057835px;}
.x8d_c00360{left:726.141885px;}
.x1a_c00360{left:727.537785px;}
.x7d_c00360{left:737.160585px;}
.xa1_c00360{left:739.229685px;}
.x6f_c00360{left:748.565385px;}
@media print{
.v2_c00360{vertical-align:-2.516800pt;}
.v0_c00360{vertical-align:0.000000pt;}
.v1_c00360{vertical-align:26.628800pt;}
.ls10_c00360{letter-spacing:-2.611846pt;}
.lsa_c00360{letter-spacing:-2.236080pt;}
.ls19_c00360{letter-spacing:-2.063582pt;}
.lse_c00360{letter-spacing:-1.967750pt;}
.ls17_c00360{letter-spacing:-1.954973pt;}
.ls13_c00360{letter-spacing:-1.564640pt;}
.ls8_c00360{letter-spacing:-1.365622pt;}
.ls16_c00360{letter-spacing:-1.271371pt;}
.lsf_c00360{letter-spacing:-0.990264pt;}
.ls21_c00360{letter-spacing:-0.677213pt;}
.lsc_c00360{letter-spacing:-0.229997pt;}
.ls7_c00360{letter-spacing:0.000000pt;}
.ls1f_c00360{letter-spacing:0.019166pt;}
.ls24_c00360{letter-spacing:1.118040pt;}
.lsd_c00360{letter-spacing:1.392758pt;}
.ls1b_c00360{letter-spacing:1.724976pt;}
.ls3_c00360{letter-spacing:1.731365pt;}
.ls1e_c00360{letter-spacing:2.146637pt;}
.ls1_c00360{letter-spacing:2.172192pt;}
.ls12_c00360{letter-spacing:2.235200pt;}
.ls25_c00360{letter-spacing:2.453299pt;}
.ls1d_c00360{letter-spacing:2.638574pt;}
.ls23_c00360{letter-spacing:2.824800pt;}
.ls6_c00360{letter-spacing:3.162456pt;}
.ls9_c00360{letter-spacing:3.194400pt;}
.ls1a_c00360{letter-spacing:3.273609pt;}
.ls11_c00360{letter-spacing:3.731209pt;}
.ls5_c00360{letter-spacing:8.369328pt;}
.ls14_c00360{letter-spacing:10.137776pt;}
.ls2_c00360{letter-spacing:12.649824pt;}
.ls0_c00360{letter-spacing:15.670629pt;}
.ls20_c00360{letter-spacing:43.084976pt;}
.lsb_c00360{letter-spacing:44.352176pt;}
.ls15_c00360{letter-spacing:45.619376pt;}
.ls1c_c00360{letter-spacing:46.886576pt;}
.ls22_c00360{letter-spacing:48.153776pt;}
.ls18_c00360{letter-spacing:49.420976pt;}
.ls4_c00360{letter-spacing:66.016240pt;}
.wsc_c00360{word-spacing:-17.703365pt;}
.ws4_c00360{word-spacing:-17.364758pt;}
.ws10_c00360{word-spacing:-15.991166pt;}
.ws0_c00360{word-spacing:-15.972000pt;}
.ws11_c00360{word-spacing:-15.294787pt;}
.ws6_c00360{word-spacing:-14.981736pt;}
.wsb_c00360{word-spacing:-14.017027pt;}
.ws5_c00360{word-spacing:-14.004250pt;}
.wsd_c00360{word-spacing:-3.322352pt;}
.ws8_c00360{word-spacing:-3.322176pt;}
.ws9_c00360{word-spacing:-3.194752pt;}
.ws2_c00360{word-spacing:-2.555520pt;}
.ws7_c00360{word-spacing:-2.044416pt;}
.ws3_c00360{word-spacing:-0.383328pt;}
.ws13_c00360{word-spacing:0.000000pt;}
.ws1_c00360{word-spacing:4.024944pt;}
.wsf_c00360{word-spacing:4.216608pt;}
.wse_c00360{word-spacing:5.430480pt;}
.wsa_c00360{word-spacing:6.324912pt;}
.ws12_c00360{word-spacing:7.922816pt;}
._8_c00360{margin-left:-17.351981pt;}
._3_c00360{margin-left:-12.969264pt;}
._23_c00360{margin-left:-11.308176pt;}
._24_c00360{margin-left:-8.816544pt;}
._26_c00360{margin-left:-7.091040pt;}
._d_c00360{margin-left:-5.495248pt;}
._19_c00360{margin-left:-4.599936pt;}
._17_c00360{margin-left:-3.256000pt;}
._1c_c00360{margin-left:-1.864368pt;}
._5_c00360{width:1.213872pt;}
._18_c00360{width:2.816000pt;}
._0_c00360{width:3.961056pt;}
._1e_c00360{width:5.136877pt;}
._e_c00360{width:6.899904pt;}
._10_c00360{width:7.858224pt;}
._9_c00360{width:9.391536pt;}
._2_c00360{width:10.669296pt;}
._6_c00360{width:12.266496pt;}
._13_c00360{width:13.544256pt;}
._1f_c00360{width:14.502576pt;}
._1a_c00360{width:17.185168pt;}
._f_c00360{width:18.335856pt;}
._15_c00360{width:19.358416pt;}
._27_c00360{width:20.396640pt;}
._b_c00360{width:21.402656pt;}
._4_c00360{width:23.192048pt;}
._c_c00360{width:24.400288pt;}
._14_c00360{width:29.324592pt;}
._20_c00360{width:30.857904pt;}
._11_c00360{width:32.970784pt;}
._1_c00360{width:34.228128pt;}
._22_c00360{width:35.650208pt;}
._21_c00360{width:36.799488pt;}
._a_c00360{width:38.140960pt;}
._7_c00360{width:42.549408pt;}
._16_c00360{width:43.932768pt;}
._1b_c00360{width:45.105280pt;}
._12_c00360{width:46.980736pt;}
._25_c00360{width:168.404720pt;}
._1d_c00360{width:202.018432pt;}
.fsb_c00360{font-size:10.137776pt;}
.fs19_c00360{font-size:19.712000pt;}
.fs4_c00360{font-size:20.592000pt;}
.fs1_c00360{font-size:24.640000pt;}
.fs0_c00360{font-size:29.568000pt;}
.fs6_c00360{font-size:34.848000pt;}
.fs11_c00360{font-size:35.200000pt;}
.fs10_c00360{font-size:40.128000pt;}
.fs16_c00360{font-size:43.084976pt;}
.fs8_c00360{font-size:44.352176pt;}
.fsa_c00360{font-size:44.704000pt;}
.fsc_c00360{font-size:45.619376pt;}
.fs14_c00360{font-size:46.886576pt;}
.fs17_c00360{font-size:48.153776pt;}
.fs12_c00360{font-size:49.420976pt;}
.fse_c00360{font-size:56.496000pt;}
.fs15_c00360{font-size:61.776000pt;}
.fs18_c00360{font-size:63.360000pt;}
.fs7_c00360{font-size:63.888000pt;}
.fs3_c00360{font-size:64.768000pt;}
.fs13_c00360{font-size:65.472176pt;}
.fsf_c00360{font-size:67.584176pt;}
.fsd_c00360{font-size:68.464176pt;}
.fs9_c00360{font-size:70.752176pt;}
.fs2_c00360{font-size:74.624176pt;}
.fs5_c00360{font-size:111.232176pt;}
.y0_c00360{bottom:0.000000pt;}
.y26_c00360{bottom:12.910520pt;}
.y1_c00360{bottom:68.000000pt;}
.y25_c00360{bottom:115.232520pt;}
.y23_c00360{bottom:141.843060pt;}
.y24_c00360{bottom:141.848120pt;}
.y22_c00360{bottom:170.672520pt;}
.y21_c00360{bottom:200.139320pt;}
.y20_c00360{bottom:258.430520pt;}
.y1f_c00360{bottom:286.942520pt;}
.y1e_c00360{bottom:314.820920pt;}
.y1d_c00360{bottom:315.450120pt;}
.y1c_c00360{bottom:316.400520pt;}
.y1b_c00360{bottom:343.649720pt;}
.y1a_c00360{bottom:345.550520pt;}
.y19_c00360{bottom:375.008520pt;}
.y18_c00360{bottom:403.520520pt;}
.y17_c00360{bottom:433.304120pt;}
.y16_c00360{bottom:461.816120pt;}
.y15_c00360{bottom:490.961720pt;}
.y14_c00360{bottom:503.312520pt;}
.y13_c00360{bottom:512.187320pt;}
.y12_c00360{bottom:519.473720pt;}
.y11_c00360{bottom:547.981320pt;}
.y10_c00360{bottom:578.081720pt;}
.yf_c00360{bottom:661.712520pt;}
.ye_c00360{bottom:664.884920pt;}
.y3_c00360{bottom:689.590920pt;}
.yd_c00360{bottom:694.980920pt;}
.yc_c00360{bottom:724.443320pt;}
.yb_c00360{bottom:753.588920pt;}
.ya_c00360{bottom:783.363720pt;}
.y9_c00360{bottom:813.780920pt;}
.y8_c00360{bottom:899.633720pt;}
.y7_c00360{bottom:912.934920pt;}
.y6_c00360{bottom:918.954120pt;}
.y5_c00360{bottom:929.725320pt;}
.y4_c00360{bottom:946.832520pt;}
.y2_c00360{bottom:952.218120pt;}
.hd_c00360{height:6.751759pt;}
.h19_c00360{height:20.559000pt;}
.h6_c00360{height:21.476813pt;}
.h3_c00360{height:25.698750pt;}
.h16_c00360{height:28.694594pt;}
.ha_c00360{height:29.538549pt;}
.he_c00360{height:30.382504pt;}
.h2_c00360{height:30.838500pt;}
.h15_c00360{height:31.226460pt;}
.h17_c00360{height:32.070415pt;}
.h13_c00360{height:32.914370pt;}
.h8_c00360{height:34.201406pt;}
.h12_c00360{height:41.852250pt;}
.hc_c00360{height:43.874531pt;}
.h10_c00360{height:58.923563pt;}
.h9_c00360{height:62.702578pt;}
.h5_c00360{height:63.566250pt;}
.h18_c00360{height:63.855000pt;}
.h14_c00360{height:65.983677pt;}
.hf_c00360{height:68.999052pt;}
.h11_c00360{height:70.488184pt;}
.hb_c00360{height:71.304927pt;}
.h4_c00360{height:73.239548pt;}
.h7_c00360{height:116.011684pt;}
.h1_c00360{height:986.666667pt;}
.h0_c00360{height:1122.666667pt;}
.w1_c00360{width:689.333333pt;}
.w0_c00360{width:793.333333pt;}
.x0_c00360{left:0.000000pt;}
.x2_c00360{left:50.878653pt;}
.x1_c00360{left:52.000000pt;}
.x7_c00360{left:86.650653pt;}
.x1b_c00360{left:87.825453pt;}
.x3e_c00360{left:88.833053pt;}
.x5a_c00360{left:95.939053pt;}
.x70_c00360{left:105.438653pt;}
.x8_c00360{left:106.569453pt;}
.x1c_c00360{left:116.275853pt;}
.x2c_c00360{left:121.639453pt;}
.x9_c00360{left:125.071453pt;}
.x4d_c00360{left:134.232253pt;}
.x1d_c00360{left:135.869053pt;}
.x69_c00360{left:141.034653pt;}
.x71_c00360{left:144.075053pt;}
.xa_c00360{left:145.549053pt;}
.x95_c00360{left:153.376653pt;}
.x63_c00360{left:154.291853pt;}
.x6a_c00360{left:160.223053pt;}
.x4e_c00360{left:163.923453pt;}
.xb_c00360{left:165.063053pt;}
.x72_c00360{left:166.603053pt;}
.x78_c00360{left:172.987453pt;}
.x2d_c00360{left:174.549453pt;}
.x8e_c00360{left:181.510253pt;}
.x64_c00360{left:183.191053pt;}
.x1e_c00360{left:184.181053pt;}
.xa9_c00360{left:186.869453pt;}
.x79_c00360{left:193.025053pt;}
.xc_c00360{left:194.336253pt;}
.x45_c00360{left:197.015853pt;}
.xa4_c00360{left:197.992653pt;}
.xd_c00360{left:202.075853pt;}
.x4f_c00360{left:203.901853pt;}
.x2e_c00360{left:205.032653pt;}
.xaa_c00360{left:207.351453pt;}
.x50_c00360{left:212.842653pt;}
.x1f_c00360{left:214.303453pt;}
.x8f_c00360{left:222.531453pt;}
.x46_c00360{left:223.521453pt;}
.x20_c00360{left:230.029053pt;}
.x47_c00360{left:233.126653pt;}
.x3f_c00360{left:237.016253pt;}
.x6b_c00360{left:241.614253pt;}
.x5b_c00360{left:242.516253pt;}
.xe_c00360{left:244.073853pt;}
.x65_c00360{left:251.487853pt;}
.x7e_c00360{left:252.561453pt;}
.x51_c00360{left:253.569053pt;}
.x99_c00360{left:255.799853pt;}
.x7a_c00360{left:261.348253pt;}
.x73_c00360{left:262.998253pt;}
.x52_c00360{left:266.197053pt;}
.x21_c00360{left:270.711453pt;}
.x38_c00360{left:272.453853pt;}
.xf_c00360{left:281.619053pt;}
.x53_c00360{left:283.005053pt;}
.x5c_c00360{left:291.871053pt;}
.x22_c00360{left:293.054653pt;}
.x9a_c00360{left:300.781053pt;}
.x48_c00360{left:302.365053pt;}
.x10_c00360{left:303.315453pt;}
.xa5_c00360{left:310.293853pt;}
.x7f_c00360{left:311.213453pt;}
.x2f_c00360{left:312.146253pt;}
.x5d_c00360{left:320.523853pt;}
.x54_c00360{left:321.861453pt;}
.x11_c00360{left:322.789853pt;}
.x6c_c00360{left:330.406253pt;}
.x74_c00360{left:331.361053pt;}
.x23_c00360{left:332.408253pt;}
.x40_c00360{left:341.956253pt;}
.x9b_c00360{left:349.339453pt;}
.x5e_c00360{left:350.888253pt;}
.x30_c00360{left:352.401853pt;}
.x84_c00360{left:360.049053pt;}
.x49_c00360{left:361.289853pt;}
.x39_c00360{left:362.680253pt;}
.x85_c00360{left:370.441853pt;}
.x41_c00360{left:371.405453pt;}
.x55_c00360{left:373.495453pt;}
.x66_c00360{left:374.665853pt;}
.x9c_c00360{left:379.105453pt;}
.x67_c00360{left:380.165853pt;}
.x12_c00360{left:381.556253pt;}
.xa6_c00360{left:389.115453pt;}
.x86_c00360{left:390.118653pt;}
.x24_c00360{left:391.209853pt;}
.x9d_c00360{left:399.336653pt;}
.x31_c00360{left:400.647853pt;}
.xab_c00360{left:407.071853pt;}
.x80_c00360{left:409.786653pt;}
.x13_c00360{left:410.851453pt;}
.x75_c00360{left:411.828253pt;}
.x96_c00360{left:418.934253pt;}
.x56_c00360{left:420.241053pt;}
.x3a_c00360{left:421.156253pt;}
.xa7_c00360{left:427.316253pt;}
.x32_c00360{left:429.247853pt;}
.x14_c00360{left:431.047453pt;}
.x4a_c00360{left:433.929453pt;}
.x5f_c00360{left:438.751853pt;}
.x97_c00360{left:447.591453pt;}
.x81_c00360{left:448.999453pt;}
.x25_c00360{left:450.627453pt;}
.x6d_c00360{left:453.073853pt;}
.x9e_c00360{left:457.729053pt;}
.x57_c00360{left:459.484653pt;}
.x4c_c00360{left:463.154253pt;}
.x89_c00360{left:468.817053pt;}
.x15_c00360{left:470.203053pt;}
.x90_c00360{left:471.391053pt;}
.x3b_c00360{left:478.668653pt;}
.x33_c00360{left:479.773053pt;}
.x26_c00360{left:480.692653pt;}
.x7b_c00360{left:486.716253pt;}
.x82_c00360{left:488.458653pt;}
.x16_c00360{left:490.192253pt;}
.x76_c00360{left:498.310253pt;}
.x27_c00360{left:499.203453pt;}
.x87_c00360{left:507.462253pt;}
.x60_c00360{left:508.386253pt;}
.x91_c00360{left:516.689053pt;}
.x17_c00360{left:517.951853pt;}
.x28_c00360{left:518.990253pt;}
.x8a_c00360{left:526.188653pt;}
.x58_c00360{left:527.099453pt;}
.x68_c00360{left:528.146653pt;}
.x92_c00360{left:534.434253pt;}
.x93_c00360{left:537.285453pt;}
.x34_c00360{left:538.381053pt;}
.x77_c00360{left:546.147053pt;}
.x4b_c00360{left:547.709053pt;}
.x18_c00360{left:548.813453pt;}
.x94_c00360{left:553.125453pt;}
.xa2_c00360{left:555.307853pt;}
.x61_c00360{left:557.829053pt;}
.x35_c00360{left:558.929053pt;}
.x9f_c00360{left:565.810653pt;}
.x6e_c00360{left:567.196653pt;}
.x3c_c00360{left:568.283453pt;}
.x42_c00360{left:569.889453pt;}
.x8b_c00360{left:576.375053pt;}
.x29_c00360{left:578.121853pt;}
.xa8_c00360{left:582.579053pt;}
.x88_c00360{left:586.173853pt;}
.x36_c00360{left:587.674253pt;}
.x2a_c00360{left:589.033853pt;}
.xa3_c00360{left:594.577853pt;}
.x83_c00360{left:596.337853pt;}
.x59_c00360{left:598.564253pt;}
.x3_c00360{left:600.099853pt;}
.x37_c00360{left:606.000253pt;}
.x3d_c00360{left:607.126653pt;}
.x43_c00360{left:610.004253pt;}
.x8c_c00360{left:614.857453pt;}
.x62_c00360{left:616.947453pt;}
.xa0_c00360{left:623.727853pt;}
.x7c_c00360{left:625.795853pt;}
.x19_c00360{left:627.388653pt;}
.x4_c00360{left:628.889053pt;}
.x5_c00360{left:630.279453pt;}
.x6_c00360{left:632.813853pt;}
.x98_c00360{left:633.900653pt;}
.x44_c00360{left:636.030253pt;}
.x2b_c00360{left:637.029053pt;}
.xac_c00360{left:644.495853pt;}
.x8d_c00360{left:645.459453pt;}
.x1a_c00360{left:646.700253pt;}
.x7d_c00360{left:655.253853pt;}
.xa1_c00360{left:657.093053pt;}
.x6f_c00360{left:665.391453pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0d65b15c00e0e9a65709e20e.woff2')format("woff");}.ff1_c00361{font-family:ff1_c00361;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00361;src:url('chunks/assets/font_6ed0bfb0d597121a12bba223.woff2')format("woff");}.ff2_c00361{font-family:ff2_c00361;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00361;src:url('chunks/assets/font_ec3d66ac1518192a0ab6d25d.woff2')format("woff");}.ff3_c00361{font-family:ff3_c00361;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00361;src:url('chunks/assets/font_d19f6b5145fc059d07fc7f0d.woff2')format("woff");}.ff4_c00361{font-family:ff4_c00361;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00361;src:url('chunks/assets/font_918d117e72877820fdb89b65.woff2')format("woff");}.ff5_c00361{font-family:ff5_c00361;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00361;src:url('chunks/assets/font_ae0abce528138d9e01ac3c9e.woff2')format("woff");}.ff6_c00361{font-family:ff6_c00361;line-height:0.666000;font-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_c00361{transform:matrix(0.113638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113638,0.000000,0.000000,0.250000,0,0);}
.m66_c00361{transform:matrix(0.128484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128484,0.000000,0.000000,0.250000,0,0);}
.m1a_c00361{transform:matrix(0.138721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138721,0.000000,0.000000,0.250000,0,0);}
.mbf_c00361{transform:matrix(0.139315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139315,0.000000,0.000000,0.250000,0,0);}
.md3_c00361{transform:matrix(0.140244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140244,0.000000,0.000000,0.250000,0,0);}
.m23_c00361{transform:matrix(0.143973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143973,0.000000,0.000000,0.250000,0,0);}
.md5_c00361{transform:matrix(0.146342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146342,0.000000,0.000000,0.250000,0,0);}
.m7b_c00361{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.md6_c00361{transform:matrix(0.152439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152439,0.000000,0.000000,0.250000,0,0);}
.maa_c00361{transform:matrix(0.157142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157142,0.000000,0.000000,0.250000,0,0);}
.md4_c00361{transform:matrix(0.164634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164634,0.000000,0.000000,0.250000,0,0);}
.m7a_c00361{transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);}
.m79_c00361{transform:matrix(0.174999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174999,0.000000,0.000000,0.250000,0,0);}
.m59_c00361{transform:matrix(0.177361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177361,0.000000,0.000000,0.250000,0,0);}
.mc2_c00361{transform:matrix(0.178329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178329,0.000000,0.000000,0.250000,0,0);}
.m88_c00361{transform:matrix(0.179188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179188,0.000000,0.000000,0.250000,0,0);}
.m7c_c00361{transform:matrix(0.185417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185417,0.000000,0.000000,0.250000,0,0);}
.m96_c00361{transform:matrix(0.190847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190847,0.000000,0.000000,0.250000,0,0);}
.mdc_c00361{transform:matrix(0.191282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191282,0.000000,0.000000,0.250000,0,0);}
.m78_c00361{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mba_c00361{transform:matrix(0.210142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210142,0.000000,0.000000,0.250000,0,0);}
.ma9_c00361{transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);}
.m55_c00361{transform:matrix(0.217440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217440,0.000000,0.000000,0.250000,0,0);}
.m4c_c00361{transform:matrix(0.217631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217631,0.000000,0.000000,0.250000,0,0);}
.m17_c00361{transform:matrix(0.220892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220892,0.000000,0.000000,0.250000,0,0);}
.m27_c00361{transform:matrix(0.231124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231124,0.000000,0.000000,0.250000,0,0);}
.m3_c00361{transform:matrix(0.237166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237166,0.000000,0.000000,0.250000,0,0);}
.m1c_c00361{transform:matrix(0.241233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241233,0.000000,0.000000,0.250000,0,0);}
.m9_c00361{transform:matrix(0.243647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243647,0.000000,0.000000,0.250000,0,0);}
.m84_c00361{transform:matrix(0.245465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245465,0.000000,0.000000,0.250000,0,0);}
.mc5_c00361{transform:matrix(0.246916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246916,0.000000,0.000000,0.250000,0,0);}
.m2c_c00361{transform:matrix(0.248472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248472,0.000000,0.000000,0.250000,0,0);}
.m35_c00361{transform:matrix(0.248552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248552,0.000000,0.000000,0.250000,0,0);}
.m0_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);}
.m77_c00361{transform:matrix(0.250166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250166,0.000000,0.000000,0.250000,0,0);}
.m42_c00361{transform:matrix(0.254503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254503,0.000000,0.000000,0.250000,0,0);}
.m6f_c00361{transform:matrix(0.257536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257536,0.000000,0.000000,0.250000,0,0);}
.m90_c00361{transform:matrix(0.257969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257969,0.000000,0.000000,0.250000,0,0);}
.m32_c00361{transform:matrix(0.259132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259132,0.000000,0.000000,0.250000,0,0);}
.m6d_c00361{transform:matrix(0.259221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259221,0.000000,0.000000,0.250000,0,0);}
.m6b_c00361{transform:matrix(0.260551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260551,0.000000,0.000000,0.250000,0,0);}
.m68_c00361{transform:matrix(0.262025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262025,0.000000,0.000000,0.250000,0,0);}
.m4e_c00361{transform:matrix(0.262484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262484,0.000000,0.000000,0.250000,0,0);}
.mcd_c00361{transform:matrix(0.263843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263843,0.000000,0.000000,0.250000,0,0);}
.mb4_c00361{transform:matrix(0.265442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265442,0.000000,0.000000,0.250000,0,0);}
.m9c_c00361{transform:matrix(0.270336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270336,0.000000,0.000000,0.250000,0,0);}
.m24_c00361{transform:matrix(0.270456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270456,0.000000,0.000000,0.250000,0,0);}
.m64_c00361{transform:matrix(0.270632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270632,0.000000,0.000000,0.250000,0,0);}
.m40_c00361{transform:matrix(0.270853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270853,0.000000,0.000000,0.250000,0,0);}
.mde_c00361{transform:matrix(0.271198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271198,0.000000,0.000000,0.250000,0,0);}
.m37_c00361{transform:matrix(0.271240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271240,0.000000,0.000000,0.250000,0,0);}
.m33_c00361{transform:matrix(0.271296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271296,0.000000,0.000000,0.250000,0,0);}
.m2_c00361{transform:matrix(0.271817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271817,0.000000,0.000000,0.250000,0,0);}
.md9_c00361{transform:matrix(0.272230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272230,0.000000,0.000000,0.250000,0,0);}
.m22_c00361{transform:matrix(0.272488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272488,0.000000,0.000000,0.250000,0,0);}
.m91_c00361{transform:matrix(0.273014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273014,0.000000,0.000000,0.250000,0,0);}
.md7_c00361{transform:matrix(0.273622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273622,0.000000,0.000000,0.250000,0,0);}
.m26_c00361{transform:matrix(0.273707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273707,0.000000,0.000000,0.250000,0,0);}
.m2e_c00361{transform:matrix(0.275643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275643,0.000000,0.000000,0.250000,0,0);}
.m51_c00361{transform:matrix(0.278267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278267,0.000000,0.000000,0.250000,0,0);}
.m43_c00361{transform:matrix(0.278775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278775,0.000000,0.000000,0.250000,0,0);}
.m73_c00361{transform:matrix(0.280179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280179,0.000000,0.000000,0.250000,0,0);}
.m86_c00361{transform:matrix(0.280645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280645,0.000000,0.000000,0.250000,0,0);}
.m49_c00361{transform:matrix(0.280655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280655,0.000000,0.000000,0.250000,0,0);}
.m52_c00361{transform:matrix(0.281113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281113,0.000000,0.000000,0.250000,0,0);}
.ma0_c00361{transform:matrix(0.281242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281242,0.000000,0.000000,0.250000,0,0);}
.ma8_c00361{transform:matrix(0.281469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281469,0.000000,0.000000,0.250000,0,0);}
.m94_c00361{transform:matrix(0.282594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282594,0.000000,0.000000,0.250000,0,0);}
.mbd_c00361{transform:matrix(0.283873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283873,0.000000,0.000000,0.250000,0,0);}
.m61_c00361{transform:matrix(0.284530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284530,0.000000,0.000000,0.250000,0,0);}
.md_c00361{transform:matrix(0.285667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285667,0.000000,0.000000,0.250000,0,0);}
.m9e_c00361{transform:matrix(0.285913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285913,0.000000,0.000000,0.250000,0,0);}
.m11_c00361{transform:matrix(0.286118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286118,0.000000,0.000000,0.250000,0,0);}
.m75_c00361{transform:matrix(0.286342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286342,0.000000,0.000000,0.250000,0,0);}
.m8c_c00361{transform:matrix(0.287177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287177,0.000000,0.000000,0.250000,0,0);}
.m6_c00361{transform:matrix(0.287332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287332,0.000000,0.000000,0.250000,0,0);}
.mc0_c00361{transform:matrix(0.287972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287972,0.000000,0.000000,0.250000,0,0);}
.m2a_c00361{transform:matrix(0.288823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288823,0.000000,0.000000,0.250000,0,0);}
.m71_c00361{transform:matrix(0.290566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290566,0.000000,0.000000,0.250000,0,0);}
.m50_c00361{transform:matrix(0.290679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290679,0.000000,0.000000,0.250000,0,0);}
.m12_c00361{transform:matrix(0.291433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291433,0.000000,0.000000,0.250000,0,0);}
.m95_c00361{transform:matrix(0.291688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291688,0.000000,0.000000,0.250000,0,0);}
.maf_c00361{transform:matrix(0.292741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292741,0.000000,0.000000,0.250000,0,0);}
.ma3_c00361{transform:matrix(0.292860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292860,0.000000,0.000000,0.250000,0,0);}
.m80_c00361{transform:matrix(0.293288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293288,0.000000,0.000000,0.250000,0,0);}
.m5f_c00361{transform:matrix(0.293351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293351,0.000000,0.000000,0.250000,0,0);}
.m1f_c00361{transform:matrix(0.293890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293890,0.000000,0.000000,0.250000,0,0);}
.m98_c00361{transform:matrix(0.293992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293992,0.000000,0.000000,0.250000,0,0);}
.m30_c00361{transform:matrix(0.294380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294380,0.000000,0.000000,0.250000,0,0);}
.mad_c00361{transform:matrix(0.294670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294670,0.000000,0.000000,0.250000,0,0);}
.m69_c00361{transform:matrix(0.295872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295872,0.000000,0.000000,0.250000,0,0);}
.m82_c00361{transform:matrix(0.296060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296060,0.000000,0.000000,0.250000,0,0);}
.mb7_c00361{transform:matrix(0.296798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296798,0.000000,0.000000,0.250000,0,0);}
.m4_c00361{transform:matrix(0.296836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296836,0.000000,0.000000,0.250000,0,0);}
.m9f_c00361{transform:matrix(0.297408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297408,0.000000,0.000000,0.250000,0,0);}
.mc_c00361{transform:matrix(0.297971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297971,0.000000,0.000000,0.250000,0,0);}
.m99_c00361{transform:matrix(0.298497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298497,0.000000,0.000000,0.250000,0,0);}
.mda_c00361{transform:matrix(0.298971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298971,0.000000,0.000000,0.250000,0,0);}
.m1e_c00361{transform:matrix(0.299029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299029,0.000000,0.000000,0.250000,0,0);}
.m5a_c00361{transform:matrix(0.300882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300882,0.000000,0.000000,0.250000,0,0);}
.m65_c00361{transform:matrix(0.300996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300996,0.000000,0.000000,0.250000,0,0);}
.m16_c00361{transform:matrix(0.301860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301860,0.000000,0.000000,0.250000,0,0);}
.mce_c00361{transform:matrix(0.302785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302785,0.000000,0.000000,0.250000,0,0);}
.m1d_c00361{transform:matrix(0.303126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303126,0.000000,0.000000,0.250000,0,0);}
.m62_c00361{transform:matrix(0.303127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303127,0.000000,0.000000,0.250000,0,0);}
.mb0_c00361{transform:matrix(0.303907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303907,0.000000,0.000000,0.250000,0,0);}
.me3_c00361{transform:matrix(0.304403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304403,0.000000,0.000000,0.250000,0,0);}
.mb_c00361{transform:matrix(0.305459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305459,0.000000,0.000000,0.250000,0,0);}
.m2b_c00361{transform:matrix(0.305714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305714,0.000000,0.000000,0.250000,0,0);}
.m3b_c00361{transform:matrix(0.305762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305762,0.000000,0.000000,0.250000,0,0);}
.m1b_c00361{transform:matrix(0.306588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306588,0.000000,0.000000,0.250000,0,0);}
.mc8_c00361{transform:matrix(0.307195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307195,0.000000,0.000000,0.250000,0,0);}
.m67_c00361{transform:matrix(0.307668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307668,0.000000,0.000000,0.250000,0,0);}
.mb3_c00361{transform:matrix(0.307755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307755,0.000000,0.000000,0.250000,0,0);}
.m70_c00361{transform:matrix(0.308577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308577,0.000000,0.000000,0.250000,0,0);}
.md1_c00361{transform:matrix(0.309228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309228,0.000000,0.000000,0.250000,0,0);}
.m7_c00361{transform:matrix(0.309497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309497,0.000000,0.000000,0.250000,0,0);}
.m19_c00361{transform:matrix(0.309727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309727,0.000000,0.000000,0.250000,0,0);}
.m3d_c00361{transform:matrix(0.309817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309817,0.000000,0.000000,0.250000,0,0);}
.mb5_c00361{transform:matrix(0.311424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311424,0.000000,0.000000,0.250000,0,0);}
.m54_c00361{transform:matrix(0.311651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311651,0.000000,0.000000,0.250000,0,0);}
.m2f_c00361{transform:matrix(0.312212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312212,0.000000,0.000000,0.250000,0,0);}
.md8_c00361{transform:matrix(0.312594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312594,0.000000,0.000000,0.250000,0,0);}
.mc4_c00361{transform:matrix(0.313014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313014,0.000000,0.000000,0.250000,0,0);}
.m8b_c00361{transform:matrix(0.313654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313654,0.000000,0.000000,0.250000,0,0);}
.m20_c00361{transform:matrix(0.313686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313686,0.000000,0.000000,0.250000,0,0);}
.m6c_c00361{transform:matrix(0.314527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314527,0.000000,0.000000,0.250000,0,0);}
.m89_c00361{transform:matrix(0.315262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315262,0.000000,0.000000,0.250000,0,0);}
.m9b_c00361{transform:matrix(0.315908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315908,0.000000,0.000000,0.250000,0,0);}
.m5c_c00361{transform:matrix(0.315931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315931,0.000000,0.000000,0.250000,0,0);}
.m46_c00361{transform:matrix(0.316542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316542,0.000000,0.000000,0.250000,0,0);}
.md2_c00361{transform:matrix(0.317086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317086,0.000000,0.000000,0.250000,0,0);}
.m60_c00361{transform:matrix(0.318610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318610,0.000000,0.000000,0.250000,0,0);}
.m83_c00361{transform:matrix(0.319450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319450,0.000000,0.000000,0.250000,0,0);}
.me5_c00361{transform:matrix(0.319891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319891,0.000000,0.000000,0.250000,0,0);}
.mc7_c00361{transform:matrix(0.320338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320338,0.000000,0.000000,0.250000,0,0);}
.ma6_c00361{transform:matrix(0.321168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321168,0.000000,0.000000,0.250000,0,0);}
.m25_c00361{transform:matrix(0.322340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322340,0.000000,0.000000,0.250000,0,0);}
.m47_c00361{transform:matrix(0.323003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323003,0.000000,0.000000,0.250000,0,0);}
.mb6_c00361{transform:matrix(0.323749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323749,0.000000,0.000000,0.250000,0,0);}
.m9d_c00361{transform:matrix(0.324476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324476,0.000000,0.000000,0.250000,0,0);}
.m44_c00361{transform:matrix(0.325142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325142,0.000000,0.000000,0.250000,0,0);}
.me0_c00361{transform:matrix(0.325870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325870,0.000000,0.000000,0.250000,0,0);}
.m29_c00361{transform:matrix(0.326211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326211,0.000000,0.000000,0.250000,0,0);}
.m53_c00361{transform:matrix(0.327699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327699,0.000000,0.000000,0.250000,0,0);}
.m39_c00361{transform:matrix(0.327895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327895,0.000000,0.000000,0.250000,0,0);}
.m58_c00361{transform:matrix(0.328058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328058,0.000000,0.000000,0.250000,0,0);}
.mbe_c00361{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);}
.mbb_c00361{transform:matrix(0.328423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328423,0.000000,0.000000,0.250000,0,0);}
.mbc_c00361{transform:matrix(0.329412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329412,0.000000,0.000000,0.250000,0,0);}
.mcc_c00361{transform:matrix(0.329607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329607,0.000000,0.000000,0.250000,0,0);}
.m7e_c00361{transform:matrix(0.329867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329867,0.000000,0.000000,0.250000,0,0);}
.m5d_c00361{transform:matrix(0.330298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330298,0.000000,0.000000,0.250000,0,0);}
.m18_c00361{transform:matrix(0.331587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331587,0.000000,0.000000,0.250000,0,0);}
.mc9_c00361{transform:matrix(0.331745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331745,0.000000,0.000000,0.250000,0,0);}
.m4d_c00361{transform:matrix(0.331798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331798,0.000000,0.000000,0.250000,0,0);}
.ma_c00361{transform:matrix(0.331826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331826,0.000000,0.000000,0.250000,0,0);}
.m92_c00361{transform:matrix(0.332334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332334,0.000000,0.000000,0.250000,0,0);}
.mae_c00361{transform:matrix(0.332907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332907,0.000000,0.000000,0.250000,0,0);}
.m34_c00361{transform:matrix(0.333337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333337,0.000000,0.000000,0.250000,0,0);}
.ma4_c00361{transform:matrix(0.334133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334133,0.000000,0.000000,0.250000,0,0);}
.mca_c00361{transform:matrix(0.334505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334505,0.000000,0.000000,0.250000,0,0);}
.m6a_c00361{transform:matrix(0.334581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334581,0.000000,0.000000,0.250000,0,0);}
.mb2_c00361{transform:matrix(0.334886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334886,0.000000,0.000000,0.250000,0,0);}
.m7d_c00361{transform:matrix(0.335090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335090,0.000000,0.000000,0.250000,0,0);}
.m63_c00361{transform:matrix(0.335315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335315,0.000000,0.000000,0.250000,0,0);}
.mcb_c00361{transform:matrix(0.335516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335516,0.000000,0.000000,0.250000,0,0);}
.mc3_c00361{transform:matrix(0.335971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335971,0.000000,0.000000,0.250000,0,0);}
.me7_c00361{transform:matrix(0.337475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337475,0.000000,0.000000,0.250000,0,0);}
.m56_c00361{transform:matrix(0.338227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338227,0.000000,0.000000,0.250000,0,0);}
.m45_c00361{transform:matrix(0.338660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338660,0.000000,0.000000,0.250000,0,0);}
.me6_c00361{transform:matrix(0.339084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339084,0.000000,0.000000,0.250000,0,0);}
.m5e_c00361{transform:matrix(0.339473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339473,0.000000,0.000000,0.250000,0,0);}
.m14_c00361{transform:matrix(0.340435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340435,0.000000,0.000000,0.250000,0,0);}
.me1_c00361{transform:matrix(0.341260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341260,0.000000,0.000000,0.250000,0,0);}
.m41_c00361{transform:matrix(0.341508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341508,0.000000,0.000000,0.250000,0,0);}
.m3a_c00361{transform:matrix(0.342388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342388,0.000000,0.000000,0.250000,0,0);}
.mb8_c00361{transform:matrix(0.343027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343027,0.000000,0.000000,0.250000,0,0);}
.mdf_c00361{transform:matrix(0.344927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344927,0.000000,0.000000,0.250000,0,0);}
.me_c00361{transform:matrix(0.345487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345487,0.000000,0.000000,0.250000,0,0);}
.m5b_c00361{transform:matrix(0.346092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346092,0.000000,0.000000,0.250000,0,0);}
.m5_c00361{transform:matrix(0.348223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348223,0.000000,0.000000,0.250000,0,0);}
.m13_c00361{transform:matrix(0.348379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348379,0.000000,0.000000,0.250000,0,0);}
.m8f_c00361{transform:matrix(0.348495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348495,0.000000,0.000000,0.250000,0,0);}
.mb1_c00361{transform:matrix(0.348519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348519,0.000000,0.000000,0.250000,0,0);}
.m15_c00361{transform:matrix(0.350978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350978,0.000000,0.000000,0.250000,0,0);}
.mdd_c00361{transform:matrix(0.352012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352012,0.000000,0.000000,0.250000,0,0);}
.m21_c00361{transform:matrix(0.352358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352358,0.000000,0.000000,0.250000,0,0);}
.m36_c00361{transform:matrix(0.352827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352827,0.000000,0.000000,0.250000,0,0);}
.m8d_c00361{transform:matrix(0.353255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353255,0.000000,0.000000,0.250000,0,0);}
.m8_c00361{transform:matrix(0.354951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354951,0.000000,0.000000,0.250000,0,0);}
.m4f_c00361{transform:matrix(0.355433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355433,0.000000,0.000000,0.250000,0,0);}
.m74_c00361{transform:matrix(0.356629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356629,0.000000,0.000000,0.250000,0,0);}
.mb9_c00361{transform:matrix(0.356692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356692,0.000000,0.000000,0.250000,0,0);}
.me2_c00361{transform:matrix(0.357382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357382,0.000000,0.000000,0.250000,0,0);}
.m9a_c00361{transform:matrix(0.359723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359723,0.000000,0.000000,0.250000,0,0);}
.ma5_c00361{transform:matrix(0.359797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359797,0.000000,0.000000,0.250000,0,0);}
.m38_c00361{transform:matrix(0.361525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361525,0.000000,0.000000,0.250000,0,0);}
.ma2_c00361{transform:matrix(0.361992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361992,0.000000,0.000000,0.250000,0,0);}
.md0_c00361{transform:matrix(0.362201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362201,0.000000,0.000000,0.250000,0,0);}
.mc1_c00361{transform:matrix(0.366177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366177,0.000000,0.000000,0.250000,0,0);}
.m76_c00361{transform:matrix(0.367275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367275,0.000000,0.000000,0.250000,0,0);}
.mdb_c00361{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);}
.m93_c00361{transform:matrix(0.369775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369775,0.000000,0.000000,0.250000,0,0);}
.m8e_c00361{transform:matrix(0.371247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371247,0.000000,0.000000,0.250000,0,0);}
.mcf_c00361{transform:matrix(0.372217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372217,0.000000,0.000000,0.250000,0,0);}
.m4b_c00361{transform:matrix(0.374132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374132,0.000000,0.000000,0.250000,0,0);}
.m10_c00361{transform:matrix(0.374566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374566,0.000000,0.000000,0.250000,0,0);}
.me4_c00361{transform:matrix(0.376484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376484,0.000000,0.000000,0.250000,0,0);}
.mab_c00361{transform:matrix(0.378386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378386,0.000000,0.000000,0.250000,0,0);}
.m87_c00361{transform:matrix(0.378713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378713,0.000000,0.000000,0.250000,0,0);}
.mf_c00361{transform:matrix(0.378969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378969,0.000000,0.000000,0.250000,0,0);}
.m6e_c00361{transform:matrix(0.379025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379025,0.000000,0.000000,0.250000,0,0);}
.m2d_c00361{transform:matrix(0.380763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380763,0.000000,0.000000,0.250000,0,0);}
.mc6_c00361{transform:matrix(0.382879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382879,0.000000,0.000000,0.250000,0,0);}
.m28_c00361{transform:matrix(0.382941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382941,0.000000,0.000000,0.250000,0,0);}
.m57_c00361{transform:matrix(0.385525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385525,0.000000,0.000000,0.250000,0,0);}
.mac_c00361{transform:matrix(0.385732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385732,0.000000,0.000000,0.250000,0,0);}
.m7f_c00361{transform:matrix(0.385764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385764,0.000000,0.000000,0.250000,0,0);}
.m97_c00361{transform:matrix(0.386075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386075,0.000000,0.000000,0.250000,0,0);}
.ma1_c00361{transform:matrix(0.387499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387499,0.000000,0.000000,0.250000,0,0);}
.m8a_c00361{transform:matrix(0.395756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395756,0.000000,0.000000,0.250000,0,0);}
.m3c_c00361{transform:matrix(0.396197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396197,0.000000,0.000000,0.250000,0,0);}
.m4a_c00361{transform:matrix(0.396251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396251,0.000000,0.000000,0.250000,0,0);}
.m3f_c00361{transform:matrix(0.397112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397112,0.000000,0.000000,0.250000,0,0);}
.m31_c00361{transform:matrix(0.399649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399649,0.000000,0.000000,0.250000,0,0);}
.m81_c00361{transform:matrix(0.403672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403672,0.000000,0.000000,0.250000,0,0);}
.m85_c00361{transform:matrix(0.436586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436586,0.000000,0.000000,0.250000,0,0);}
.ma7_c00361{transform:matrix(0.443939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443939,0.000000,0.000000,0.250000,0,0);}
.m72_c00361{transform:matrix(0.444621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444621,0.000000,0.000000,0.250000,0,0);}
.m48_c00361{transform:matrix(0.449920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449920,0.000000,0.000000,0.250000,0,0);}
.m3e_c00361{transform:matrix(0.453010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453010,0.000000,0.000000,0.250000,0,0);}
.m1_c00361{transform:matrix(0.501246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501246,0.000000,0.000000,0.250000,0,0);}
.v1_c00361{vertical-align:-14.275800px;}
.v0_c00361{vertical-align:0.000000px;}
.ls5_c00361{letter-spacing:-2.938327px;}
.lsc_c00361{letter-spacing:-2.917530px;}
.ls7_c00361{letter-spacing:-2.529450px;}
.ls13_c00361{letter-spacing:-1.835658px;}
.ls15_c00361{letter-spacing:-0.888921px;}
.lsf_c00361{letter-spacing:-0.679338px;}
.lsd_c00361{letter-spacing:-0.383031px;}
.ls2_c00361{letter-spacing:0.000000px;}
.lse_c00361{letter-spacing:0.542025px;}
.ls17_c00361{letter-spacing:0.927947px;}
.ls8_c00361{letter-spacing:1.059300px;}
.ls3_c00361{letter-spacing:1.306800px;}
.ls14_c00361{letter-spacing:1.308087px;}
.ls1_c00361{letter-spacing:1.799523px;}
.ls10_c00361{letter-spacing:1.825725px;}
.ls18_c00361{letter-spacing:1.965744px;}
.ls9_c00361{letter-spacing:2.415600px;}
.ls0_c00361{letter-spacing:3.244923px;}
.lsa_c00361{letter-spacing:3.353328px;}
.ls6_c00361{letter-spacing:3.613500px;}
.lsb_c00361{letter-spacing:4.167900px;}
.ls4_c00361{letter-spacing:4.197610px;}
.ls19_c00361{letter-spacing:31.363200px;}
.ls12_c00361{letter-spacing:49.896198px;}
.ls11_c00361{letter-spacing:57.024198px;}
.ls16_c00361{letter-spacing:58.449798px;}
.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;}
}
.ws4_c00361{word-spacing:-19.867023px;}
.ws1_c00361{word-spacing:-18.609525px;}
.ws0_c00361{word-spacing:-18.067500px;}
.ws3_c00361{word-spacing:-15.289775px;}
.ws6_c00361{word-spacing:-11.779416px;}
.ws8_c00361{word-spacing:0.000000px;}
.ws2_c00361{word-spacing:3.035340px;}
.ws7_c00361{word-spacing:4.625280px;}
.ws5_c00361{word-spacing:8.744670px;}
._1b_c00361{margin-left:-8.600130px;}
._1d_c00361{margin-left:-4.625280px;}
._16_c00361{margin-left:-2.673990px;}
._10_c00361{width:3.830310px;}
._6_c00361{width:5.637060px;}
._19_c00361{width:6.902478px;}
._0_c00361{width:8.434701px;}
._3_c00361{width:10.045530px;}
._2_c00361{width:11.345400px;}
._5_c00361{width:13.442220px;}
._13_c00361{width:15.538050px;}
._18_c00361{width:19.296090px;}
._a_c00361{width:21.319650px;}
._14_c00361{width:22.548240px;}
._9_c00361{width:23.993640px;}
._1c_c00361{width:25.439040px;}
._17_c00361{width:27.298656px;}
._1a_c00361{width:29.359440px;}
._8_c00361{width:33.105600px;}
._f_c00361{width:34.898490px;}
._e_c00361{width:36.111933px;}
._7_c00361{width:37.459620px;}
._1_c00361{width:38.873599px;}
._4_c00361{width:40.183110px;}
._d_c00361{width:42.264486px;}
._12_c00361{width:44.683749px;}
._15_c00361{width:46.397340px;}
._c_c00361{width:48.068856px;}
._11_c00361{width:49.867290px;}
._b_c00361{width:146.117070px;}
.fc0_c00361{color:transparent;}
.fs6_c00361{font-size:21.186000px;}
.fs9_c00361{font-size:22.176000px;}
.fs18_c00361{font-size:25.938000px;}
.fs1_c00361{font-size:26.136000px;}
.fs0_c00361{font-size:27.720000px;}
.fs17_c00361{font-size:31.363200px;}
.fs16_c00361{font-size:32.868000px;}
.fs14_c00361{font-size:38.808000px;}
.fs5_c00361{font-size:39.600000px;}
.fs13_c00361{font-size:42.372000px;}
.fs2_c00361{font-size:43.956198px;}
.fs7_c00361{font-size:48.312000px;}
.fs11_c00361{font-size:49.896198px;}
.fsd_c00361{font-size:53.856198px;}
.fs10_c00361{font-size:57.024198px;}
.fs12_c00361{font-size:58.449798px;}
.fse_c00361{font-size:59.400000px;}
.fsf_c00361{font-size:62.370000px;}
.fsc_c00361{font-size:64.944000px;}
.fs15_c00361{font-size:66.528000px;}
.fsb_c00361{font-size:68.904000px;}
.fs4_c00361{font-size:72.270000px;}
.fs8_c00361{font-size:72.864000px;}
.fsa_c00361{font-size:83.358000px;}
.fs3_c00361{font-size:83.952198px;}
.y0_c00361{bottom:0.000000px;}
.y1_c00361{bottom:76.500000px;}
.y24_c00361{bottom:80.096985px;}
.y23_c00361{bottom:90.793935px;}
.y25_c00361{bottom:92.219535px;}
.y22_c00361{bottom:103.624335px;}
.y21_c00361{bottom:139.264335px;}
.y20_c00361{bottom:161.361135px;}
.y1f_c00361{bottom:170.978985px;}
.y1e_c00361{bottom:205.911135px;}
.y1d_c00361{bottom:239.769135px;}
.y1c_c00361{bottom:304.990335px;}
.y1b_c00361{bottom:337.066335px;}
.y1a_c00361{bottom:369.137385px;}
.y19_c00361{bottom:401.926185px;}
.y18_c00361{bottom:434.002185px;}
.y17_c00361{bottom:466.083135px;}
.y16_c00361{bottom:498.510585px;}
.y15_c00361{bottom:523.458585px;}
.y14_c00361{bottom:530.586585px;}
.y13_c00361{bottom:544.847535px;}
.y12_c00361{bottom:564.444585px;}
.y11_c00361{bottom:597.233385px;}
.y10_c00361{bottom:631.096335px;}
.yf_c00361{bottom:664.236585px;}
.ye_c00361{bottom:696.317535px;}
.yd_c00361{bottom:728.749935px;}
.yc_c00361{bottom:825.334335px;}
.yb_c00361{bottom:858.123135px;}
.y9_c00361{bottom:886.986585px;}
.y8_c00361{bottom:890.555535px;}
.ya_c00361{bottom:890.911935px;}
.y7_c00361{bottom:904.806585px;}
.y6_c00361{bottom:923.344335px;}
.y5_c00361{bottom:1075.878585px;}
.y4_c00361{bottom:1088.352585px;}
.y3_c00361{bottom:1095.480585px;}
.y2_c00361{bottom:1099.757385px;}
.h14_c00361{height:20.887891px;}
.h8_c00361{height:22.096336px;}
.h3_c00361{height:25.651055px;}
.h15_c00361{height:27.052523px;}
.h2_c00361{height:28.911094px;}
.he_c00361{height:33.230868px;}
.h13_c00361{height:34.280297px;}
.hd_c00361{height:37.978116px;}
.hf_c00361{height:38.927565px;}
.h11_c00361{height:40.475531px;}
.h7_c00361{height:41.301563px;}
.h4_c00361{height:43.140604px;}
.h10_c00361{height:44.192672px;}
.h9_c00361{height:47.415586px;}
.hc_c00361{height:62.857266px;}
.h12_c00361{height:69.386625px;}
.h6_c00361{height:70.929053px;}
.ha_c00361{height:71.512031px;}
.hb_c00361{height:81.811318px;}
.h5_c00361{height:82.394491px;}
.h1_c00361{height:1110.000000px;}
.h0_c00361{height:1263.000000px;}
.w1_c00361{width:775.500000px;}
.w0_c00361{width:892.500000px;}
.x0_c00361{left:0.000000px;}
.x1_c00361{left:58.500000px;}
.x6_c00361{left:95.190135px;}
.x4e_c00361{left:96.665235px;}
.x7a_c00361{left:97.769085px;}
.x73_c00361{left:107.357235px;}
.x4f_c00361{left:116.692935px;}
.x66_c00361{left:118.108635px;}
.x38_c00361{left:122.182485px;}
.x7_c00361{left:127.681935px;}
.x6f_c00361{left:128.770935px;}
.x2_c00361{left:137.091885px;}
.x50_c00361{left:138.299685px;}
.x67_c00361{left:139.789635px;}
.x60_c00361{left:143.101185px;}
.x31_c00361{left:148.813485px;}
.x26_c00361{left:149.833185px;}
.x3_c00361{left:155.857335px;}
.x8_c00361{left:159.827235px;}
.x74_c00361{left:161.242935px;}
.x47_c00361{left:162.480435px;}
.x41_c00361{left:168.202635px;}
.x58_c00361{left:171.415185px;}
.x7e_c00361{left:172.637835px;}
.x27_c00361{left:177.543285px;}
.x9_c00361{left:181.716135px;}
.x68_c00361{left:183.691185px;}
.x19_c00361{left:193.066485px;}
.x61_c00361{left:194.670285px;}
.x69_c00361{left:203.129835px;}
.x1a_c00361{left:205.005885px;}
.x28_c00361{left:209.579685px;}
.xa_c00361{left:215.579085px;}
.x62_c00361{left:220.217235px;}
.x42_c00361{left:226.464135px;}
.x39_c00361{left:227.543235px;}
.x5d_c00361{left:237.735285px;}
.xb_c00361{left:238.849035px;}
.x18_c00361{left:241.715085px;}
.x48_c00361{left:247.996635px;}
.x3a_c00361{left:249.412335px;}
.x7f_c00361{left:250.654785px;}
.x29_c00361{left:260.322135px;}
.x5e_c00361{left:261.351735px;}
.x75_c00361{left:266.366085px;}
.xc_c00361{left:271.375485px;}
.x7b_c00361{left:275.483985px;}
.x52_c00361{left:282.418935px;}
.x80_c00361{left:283.651485px;}
.xd_c00361{left:292.967385px;}
.x7d_c00361{left:295.645335px;}
.x3b_c00361{left:305.193885px;}
.x43_c00361{left:313.970235px;}
.xe_c00361{left:315.242385px;}
.x63_c00361{left:316.311585px;}
.xf_c00361{left:323.236635px;}
.x1b_c00361{left:326.627385px;}
.x6a_c00361{left:327.993585px;}
.x3c_c00361{left:337.032285px;}
.x53_c00361{left:338.051985px;}
.x76_c00361{left:339.081585px;}
.x2a_c00361{left:348.922185px;}
.x7c_c00361{left:350.110185px;}
.x70_c00361{left:354.966135px;}
.x10_c00361{left:359.737935px;}
.x5f_c00361{left:360.787335px;}
.x32_c00361{left:370.806135px;}
.x64_c00361{left:372.548535px;}
.x54_c00361{left:380.938785px;}
.x2b_c00361{left:382.562385px;}
.x79_c00361{left:388.888485px;}
.x3d_c00361{left:393.259335px;}
.x59_c00361{left:394.615635px;}
.x2c_c00361{left:403.391985px;}
.x1c_c00361{left:404.451285px;}
.x65_c00361{left:406.421385px;}
.x1d_c00361{left:415.108635px;}
.x57_c00361{left:424.855185px;}
.x11_c00361{left:426.038235px;}
.x1e_c00361{left:429.161685px;}
.x3e_c00361{left:436.175835px;}
.x33_c00361{left:438.160785px;}
.x1f_c00361{left:448.372635px;}
.x6b_c00361{left:449.565585px;}
.x12_c00361{left:459.821985px;}
.x2d_c00361{left:470.390235px;}
.x44_c00361{left:481.126785px;}
.x55_c00361{left:482.641485px;}
.x20_c00361{left:492.482085px;}
.x77_c00361{left:493.709685px;}
.x34_c00361{left:494.773935px;}
.x13_c00361{left:503.743335px;}
.x3f_c00361{left:504.777885px;}
.x5a_c00361{left:506.886585px;}
.x2e_c00361{left:515.826285px;}
.x21_c00361{left:526.196535px;}
.x6d_c00361{left:527.617185px;}
.x35_c00361{left:529.102185px;}
.x14_c00361{left:536.839035px;}
.x71_c00361{left:538.225035px;}
.x2f_c00361{left:547.971585px;}
.x49_c00361{left:559.326885px;}
.x22_c00361{left:568.439835px;}
.x15_c00361{left:569.820885px;}
.x72_c00361{left:571.058385px;}
.x30_c00361{left:580.963335px;}
.x4a_c00361{left:592.170135px;}
.x4b_c00361{left:599.614935px;}
.x23_c00361{left:603.060135px;}
.x45_c00361{left:614.029335px;}
.x36_c00361{left:624.859935px;}
.x16_c00361{left:636.314235px;}
.x40_c00361{left:647.169585px;}
.x78_c00361{left:648.793185px;}
.x46_c00361{left:657.500235px;}
.x24_c00361{left:659.500035px;}
.x4_c00361{left:669.385185px;}
.x6c_c00361{left:670.800885px;}
.x56_c00361{left:676.325085px;}
.x51_c00361{left:679.280235px;}
.x17_c00361{left:681.210735px;}
.x6e_c00361{left:691.368135px;}
.x5_c00361{left:692.546235px;}
.x4c_c00361{left:702.970935px;}
.x25_c00361{left:704.000535px;}
.x83_c00361{left:707.534835px;}
.x84_c00361{left:709.059435px;}
.x4d_c00361{left:713.162985px;}
.x5b_c00361{left:714.732135px;}
.x37_c00361{left:724.557885px;}
.x81_c00361{left:726.448785px;}
.x5c_c00361{left:736.388385px;}
.x82_c00361{left:747.496185px;}
.x85_c00361{left:759.742485px;}
@media print{
.v1_c00361{vertical-align:-12.689600pt;}
.v0_c00361{vertical-align:0.000000pt;}
.ls5_c00361{letter-spacing:-2.611846pt;}
.lsc_c00361{letter-spacing:-2.593360pt;}
.ls7_c00361{letter-spacing:-2.248400pt;}
.ls13_c00361{letter-spacing:-1.631696pt;}
.ls15_c00361{letter-spacing:-0.790152pt;}
.lsf_c00361{letter-spacing:-0.603856pt;}
.lsd_c00361{letter-spacing:-0.340472pt;}
.ls2_c00361{letter-spacing:0.000000pt;}
.lse_c00361{letter-spacing:0.481800pt;}
.ls17_c00361{letter-spacing:0.824842pt;}
.ls8_c00361{letter-spacing:0.941600pt;}
.ls3_c00361{letter-spacing:1.161600pt;}
.ls14_c00361{letter-spacing:1.162744pt;}
.ls1_c00361{letter-spacing:1.599576pt;}
.ls10_c00361{letter-spacing:1.622867pt;}
.ls18_c00361{letter-spacing:1.747328pt;}
.ls9_c00361{letter-spacing:2.147200pt;}
.ls0_c00361{letter-spacing:2.884376pt;}
.lsa_c00361{letter-spacing:2.980736pt;}
.ls6_c00361{letter-spacing:3.212000pt;}
.lsb_c00361{letter-spacing:3.704800pt;}
.ls4_c00361{letter-spacing:3.731209pt;}
.ls19_c00361{letter-spacing:27.878400pt;}
.ls12_c00361{letter-spacing:44.352176pt;}
.ls11_c00361{letter-spacing:50.688176pt;}
.ls16_c00361{letter-spacing:51.955376pt;}
.ws4_c00361{word-spacing:-17.659576pt;}
.ws1_c00361{word-spacing:-16.541800pt;}
.ws0_c00361{word-spacing:-16.060000pt;}
.ws3_c00361{word-spacing:-13.590911pt;}
.ws6_c00361{word-spacing:-10.470592pt;}
.ws8_c00361{word-spacing:0.000000pt;}
.ws2_c00361{word-spacing:2.698080pt;}
.ws7_c00361{word-spacing:4.111360pt;}
.ws5_c00361{word-spacing:7.773040pt;}
._1b_c00361{margin-left:-7.644560pt;}
._1d_c00361{margin-left:-4.111360pt;}
._16_c00361{margin-left:-2.376880pt;}
._10_c00361{width:3.404720pt;}
._6_c00361{width:5.010720pt;}
._19_c00361{width:6.135536pt;}
._0_c00361{width:7.497512pt;}
._3_c00361{width:8.929360pt;}
._2_c00361{width:10.084800pt;}
._5_c00361{width:11.948640pt;}
._13_c00361{width:13.811600pt;}
._18_c00361{width:17.152080pt;}
._a_c00361{width:18.950800pt;}
._14_c00361{width:20.042880pt;}
._9_c00361{width:21.327680pt;}
._1c_c00361{width:22.612480pt;}
._17_c00361{width:24.265472pt;}
._1a_c00361{width:26.097280pt;}
._8_c00361{width:29.427200pt;}
._f_c00361{width:31.020880pt;}
._e_c00361{width:32.099496pt;}
._7_c00361{width:33.297440pt;}
._1_c00361{width:34.554310pt;}
._4_c00361{width:35.718320pt;}
._d_c00361{width:37.568432pt;}
._12_c00361{width:39.718888pt;}
._15_c00361{width:41.242080pt;}
._c_c00361{width:42.727872pt;}
._11_c00361{width:44.326480pt;}
._b_c00361{width:129.881840pt;}
.fs6_c00361{font-size:18.832000pt;}
.fs9_c00361{font-size:19.712000pt;}
.fs18_c00361{font-size:23.056000pt;}
.fs1_c00361{font-size:23.232000pt;}
.fs0_c00361{font-size:24.640000pt;}
.fs17_c00361{font-size:27.878400pt;}
.fs16_c00361{font-size:29.216000pt;}
.fs14_c00361{font-size:34.496000pt;}
.fs5_c00361{font-size:35.200000pt;}
.fs13_c00361{font-size:37.664000pt;}
.fs2_c00361{font-size:39.072176pt;}
.fs7_c00361{font-size:42.944000pt;}
.fs11_c00361{font-size:44.352176pt;}
.fsd_c00361{font-size:47.872176pt;}
.fs10_c00361{font-size:50.688176pt;}
.fs12_c00361{font-size:51.955376pt;}
.fse_c00361{font-size:52.800000pt;}
.fsf_c00361{font-size:55.440000pt;}
.fsc_c00361{font-size:57.728000pt;}
.fs15_c00361{font-size:59.136000pt;}
.fsb_c00361{font-size:61.248000pt;}
.fs4_c00361{font-size:64.240000pt;}
.fs8_c00361{font-size:64.768000pt;}
.fsa_c00361{font-size:74.096000pt;}
.fs3_c00361{font-size:74.624176pt;}
.y0_c00361{bottom:0.000000pt;}
.y1_c00361{bottom:68.000000pt;}
.y24_c00361{bottom:71.197320pt;}
.y23_c00361{bottom:80.705720pt;}
.y25_c00361{bottom:81.972920pt;}
.y22_c00361{bottom:92.110520pt;}
.y21_c00361{bottom:123.790520pt;}
.y20_c00361{bottom:143.432120pt;}
.y1f_c00361{bottom:151.981320pt;}
.y1e_c00361{bottom:183.032120pt;}
.y1d_c00361{bottom:213.128120pt;}
.y1c_c00361{bottom:271.102520pt;}
.y1b_c00361{bottom:299.614520pt;}
.y1a_c00361{bottom:328.122120pt;}
.y19_c00361{bottom:357.267720pt;}
.y18_c00361{bottom:385.779720pt;}
.y17_c00361{bottom:414.296120pt;}
.y16_c00361{bottom:443.120520pt;}
.y15_c00361{bottom:465.296520pt;}
.y14_c00361{bottom:471.632520pt;}
.y13_c00361{bottom:484.308920pt;}
.y12_c00361{bottom:501.728520pt;}
.y11_c00361{bottom:530.874120pt;}
.y10_c00361{bottom:560.974520pt;}
.yf_c00361{bottom:590.432520pt;}
.ye_c00361{bottom:618.948920pt;}
.yd_c00361{bottom:647.777720pt;}
.yc_c00361{bottom:733.630520pt;}
.yb_c00361{bottom:762.776120pt;}
.y9_c00361{bottom:788.432520pt;}
.y8_c00361{bottom:791.604920pt;}
.ya_c00361{bottom:791.921720pt;}
.y7_c00361{bottom:804.272520pt;}
.y6_c00361{bottom:820.750520pt;}
.y5_c00361{bottom:956.336520pt;}
.y4_c00361{bottom:967.424520pt;}
.y3_c00361{bottom:973.760520pt;}
.y2_c00361{bottom:977.562120pt;}
.h14_c00361{height:18.567014pt;}
.h8_c00361{height:19.641188pt;}
.h3_c00361{height:22.800938pt;}
.h15_c00361{height:24.046688pt;}
.h2_c00361{height:25.698750pt;}
.he_c00361{height:29.538549pt;}
.h13_c00361{height:30.471375pt;}
.hd_c00361{height:33.758325pt;}
.hf_c00361{height:34.602280pt;}
.h11_c00361{height:35.978250pt;}
.h7_c00361{height:36.712500pt;}
.h4_c00361{height:38.347204pt;}
.h10_c00361{height:39.282375pt;}
.h9_c00361{height:42.147188pt;}
.hc_c00361{height:55.873125pt;}
.h12_c00361{height:61.677000pt;}
.h6_c00361{height:63.048047pt;}
.ha_c00361{height:63.566250pt;}
.hb_c00361{height:72.721172pt;}
.h5_c00361{height:73.239548pt;}
.h1_c00361{height:986.666667pt;}
.h0_c00361{height:1122.666667pt;}
.w1_c00361{width:689.333333pt;}
.w0_c00361{width:793.333333pt;}
.x0_c00361{left:0.000000pt;}
.x1_c00361{left:52.000000pt;}
.x6_c00361{left:84.613453pt;}
.x4e_c00361{left:85.924653pt;}
.x7a_c00361{left:86.905853pt;}
.x73_c00361{left:95.428653pt;}
.x4f_c00361{left:103.727053pt;}
.x66_c00361{left:104.985453pt;}
.x38_c00361{left:108.606653pt;}
.x7_c00361{left:113.495053pt;}
.x6f_c00361{left:114.463053pt;}
.x2_c00361{left:121.859453pt;}
.x50_c00361{left:122.933053pt;}
.x67_c00361{left:124.257453pt;}
.x60_c00361{left:127.201053pt;}
.x31_c00361{left:132.278653pt;}
.x26_c00361{left:133.185053pt;}
.x3_c00361{left:138.539853pt;}
.x8_c00361{left:142.068653pt;}
.x74_c00361{left:143.327053pt;}
.x47_c00361{left:144.427053pt;}
.x41_c00361{left:149.513453pt;}
.x58_c00361{left:152.369053pt;}
.x7e_c00361{left:153.455853pt;}
.x27_c00361{left:157.816253pt;}
.x9_c00361{left:161.525453pt;}
.x68_c00361{left:163.281053pt;}
.x19_c00361{left:171.614653pt;}
.x61_c00361{left:173.040253pt;}
.x69_c00361{left:180.559853pt;}
.x1a_c00361{left:182.227453pt;}
.x28_c00361{left:186.293053pt;}
.xa_c00361{left:191.625853pt;}
.x62_c00361{left:195.748653pt;}
.x42_c00361{left:201.301453pt;}
.x39_c00361{left:202.260653pt;}
.x5d_c00361{left:211.320253pt;}
.xb_c00361{left:212.310253pt;}
.x18_c00361{left:214.857853pt;}
.x48_c00361{left:220.441453pt;}
.x3a_c00361{left:221.699853pt;}
.x7f_c00361{left:222.804253pt;}
.x29_c00361{left:231.397453pt;}
.x5e_c00361{left:232.312653pt;}
.x75_c00361{left:236.769853pt;}
.xc_c00361{left:241.222653pt;}
.x7b_c00361{left:244.874653pt;}
.x52_c00361{left:251.039053pt;}
.x80_c00361{left:252.134653pt;}
.xd_c00361{left:260.415453pt;}
.x7d_c00361{left:262.795853pt;}
.x3b_c00361{left:271.283453pt;}
.x43_c00361{left:279.084653pt;}
.xe_c00361{left:280.215453pt;}
.x63_c00361{left:281.165853pt;}
.xf_c00361{left:287.321453pt;}
.x1b_c00361{left:290.335453pt;}
.x6a_c00361{left:291.549853pt;}
.x3c_c00361{left:299.584253pt;}
.x53_c00361{left:300.490653pt;}
.x76_c00361{left:301.405853pt;}
.x2a_c00361{left:310.153053pt;}
.x7c_c00361{left:311.209053pt;}
.x70_c00361{left:315.525453pt;}
.x10_c00361{left:319.767053pt;}
.x5f_c00361{left:320.699853pt;}
.x32_c00361{left:329.605453pt;}
.x64_c00361{left:331.154253pt;}
.x54_c00361{left:338.612253pt;}
.x2b_c00361{left:340.055453pt;}
.x79_c00361{left:345.678653pt;}
.x3d_c00361{left:349.563853pt;}
.x59_c00361{left:350.769453pt;}
.x2c_c00361{left:358.570653pt;}
.x1c_c00361{left:359.512253pt;}
.x65_c00361{left:361.263453pt;}
.x1d_c00361{left:368.985453pt;}
.x57_c00361{left:377.649053pt;}
.x11_c00361{left:378.700653pt;}
.x1e_c00361{left:381.477053pt;}
.x3e_c00361{left:387.711853pt;}
.x33_c00361{left:389.476253pt;}
.x1f_c00361{left:398.553453pt;}
.x6b_c00361{left:399.613853pt;}
.x12_c00361{left:408.730653pt;}
.x2d_c00361{left:418.124653pt;}
.x44_c00361{left:427.668253pt;}
.x55_c00361{left:429.014653pt;}
.x20_c00361{left:437.761853pt;}
.x77_c00361{left:438.853053pt;}
.x34_c00361{left:439.799053pt;}
.x13_c00361{left:447.771853pt;}
.x3f_c00361{left:448.691453pt;}
.x5a_c00361{left:450.565853pt;}
.x2e_c00361{left:458.512253pt;}
.x21_c00361{left:467.730253pt;}
.x6d_c00361{left:468.993053pt;}
.x35_c00361{left:470.313053pt;}
.x14_c00361{left:477.190253pt;}
.x71_c00361{left:478.422253pt;}
.x2f_c00361{left:487.085853pt;}
.x49_c00361{left:497.179453pt;}
.x22_c00361{left:505.279853pt;}
.x15_c00361{left:506.507453pt;}
.x72_c00361{left:507.607453pt;}
.x30_c00361{left:516.411853pt;}
.x4a_c00361{left:526.373453pt;}
.x4b_c00361{left:532.991053pt;}
.x23_c00361{left:536.053453pt;}
.x45_c00361{left:545.803853pt;}
.x36_c00361{left:555.431053pt;}
.x16_c00361{left:565.612653pt;}
.x40_c00361{left:575.261853pt;}
.x78_c00361{left:576.705053pt;}
.x46_c00361{left:584.444653pt;}
.x24_c00361{left:586.222253pt;}
.x4_c00361{left:595.009053pt;}
.x6c_c00361{left:596.267453pt;}
.x56_c00361{left:601.177853pt;}
.x51_c00361{left:603.804653pt;}
.x17_c00361{left:605.520653pt;}
.x6e_c00361{left:614.549453pt;}
.x5_c00361{left:615.596653pt;}
.x4c_c00361{left:624.863053pt;}
.x25_c00361{left:625.778253pt;}
.x83_c00361{left:628.919853pt;}
.x84_c00361{left:630.275053pt;}
.x4d_c00361{left:633.922653pt;}
.x5b_c00361{left:635.317453pt;}
.x37_c00361{left:644.051453pt;}
.x81_c00361{left:645.732253pt;}
.x5c_c00361{left:654.567453pt;}
.x82_c00361{left:664.441053pt;}
.x85_c00361{left:675.326653pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fd59cf06904d4fd9c35aa749.woff2')format("woff");}.ff1_c00362{font-family:ff1_c00362;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00362;src:url('chunks/assets/font_b3a3714550f11604dd2a5564.woff2')format("woff");}.ff2_c00362{font-family:ff2_c00362;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00362;src:url('chunks/assets/font_21f5293e8df9b53075a21b71.woff2')format("woff");}.ff3_c00362{font-family:ff3_c00362;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00362;src:url('chunks/assets/font_906a62d6f5852a398db89809.woff2')format("woff");}.ff4_c00362{font-family:ff4_c00362;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00362;src:url('chunks/assets/font_1cea43652ed5800b721d514d.woff2')format("woff");}.ff5_c00362{font-family:ff5_c00362;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00362;src:url('chunks/assets/font_959ade338b86e4468aebd782.woff2')format("woff");}.ff6_c00362{font-family:ff6_c00362;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00362;src:url('chunks/assets/font_6580d70e65548344675f268d.woff2')format("woff");}.ff7_c00362{font-family:ff7_c00362;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mb9_c00362{transform:matrix(0.019232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.019232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.019232,0.000000,0.000000,0.250000,0,0);}
.m61_c00362{transform:matrix(0.045456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045456,0.000000,0.000000,0.250000,0,0);}
.ma1_c00362{transform:matrix(0.057144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.057144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.057144,0.000000,0.000000,0.250000,0,0);}
.m7b_c00362{transform:matrix(0.061274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.061274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.061274,0.000000,0.000000,0.250000,0,0);}
.m22_c00362{transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00362{transform:matrix(0.083334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083334,0.000000,0.000000,0.250000,0,0);}
.mce_c00362{transform:matrix(0.093338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093338,0.000000,0.000000,0.250000,0,0);}
.mcf_c00362{transform:matrix(0.095552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095552,0.000000,0.000000,0.250000,0,0);}
.m7d_c00362{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);}
.m11_c00362{transform:matrix(0.104851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104851,0.000000,0.000000,0.250000,0,0);}
.m21_c00362{transform:matrix(0.106250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00362{transform:matrix(0.119048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119048,0.000000,0.000000,0.250000,0,0);}
.m80_c00362{transform:matrix(0.119247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119247,0.000000,0.000000,0.250000,0,0);}
.m60_c00362{transform:matrix(0.121213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121213,0.000000,0.000000,0.250000,0,0);}
.mcc_c00362{transform:matrix(0.122641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122641,0.000000,0.000000,0.250000,0,0);}
.m33_c00362{transform:matrix(0.153295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153295,0.000000,0.000000,0.250000,0,0);}
.md5_c00362{transform:matrix(0.159763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159763,0.000000,0.000000,0.250000,0,0);}
.m20_c00362{transform:matrix(0.160417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160417,0.000000,0.000000,0.250000,0,0);}
.mea_c00362{transform:matrix(0.161743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161743,0.000000,0.000000,0.250000,0,0);}
.mb8_c00362{transform:matrix(0.162393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162393,0.000000,0.000000,0.250000,0,0);}
.me8_c00362{transform:matrix(0.164774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164774,0.000000,0.000000,0.250000,0,0);}
.m5f_c00362{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);}
.m6a_c00362{transform:matrix(0.170456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170456,0.000000,0.000000,0.250000,0,0);}
.mc5_c00362{transform:matrix(0.174032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174032,0.000000,0.000000,0.250000,0,0);}
.m6c_c00362{transform:matrix(0.174243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174243,0.000000,0.000000,0.250000,0,0);}
.ma2_c00362{transform:matrix(0.182143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182143,0.000000,0.000000,0.250000,0,0);}
.m17_c00362{transform:matrix(0.186999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186999,0.000000,0.000000,0.250000,0,0);}
.m2a_c00362{transform:matrix(0.190161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190161,0.000000,0.000000,0.250000,0,0);}
.m7c_c00362{transform:matrix(0.191177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191177,0.000000,0.000000,0.250000,0,0);}
.mba_c00362{transform:matrix(0.192307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192307,0.000000,0.000000,0.250000,0,0);}
.mab_c00362{transform:matrix(0.194567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194567,0.000000,0.000000,0.250000,0,0);}
.m6b_c00362{transform:matrix(0.196971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196971,0.000000,0.000000,0.250000,0,0);}
.m69_c00362{transform:matrix(0.204547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204547,0.000000,0.000000,0.250000,0,0);}
.mc_c00362{transform:matrix(0.209285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209285,0.000000,0.000000,0.250000,0,0);}
.m7e_c00362{transform:matrix(0.209559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209559,0.000000,0.000000,0.250000,0,0);}
.m39_c00362{transform:matrix(0.210348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210348,0.000000,0.000000,0.250000,0,0);}
.ma0_c00362{transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);}
.me2_c00362{transform:matrix(0.216045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216045,0.000000,0.000000,0.250000,0,0);}
.m62_c00362{transform:matrix(0.217173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217173,0.000000,0.000000,0.250000,0,0);}
.m84_c00362{transform:matrix(0.218138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218138,0.000000,0.000000,0.250000,0,0);}
.m87_c00362{transform:matrix(0.218751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218751,0.000000,0.000000,0.250000,0,0);}
.m3c_c00362{transform:matrix(0.219611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219611,0.000000,0.000000,0.250000,0,0);}
.m68_c00362{transform:matrix(0.219698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219698,0.000000,0.000000,0.250000,0,0);}
.m24_c00362{transform:matrix(0.238763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238763,0.000000,0.000000,0.250000,0,0);}
.ma9_c00362{transform:matrix(0.245494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245494,0.000000,0.000000,0.250000,0,0);}
.m0_c00362{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m51_c00362{transform:matrix(0.250352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250352,0.000000,0.000000,0.250000,0,0);}
.mad_c00362{transform:matrix(0.251036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251036,0.000000,0.000000,0.250000,0,0);}
.m32_c00362{transform:matrix(0.251215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251215,0.000000,0.000000,0.250000,0,0);}
.m9b_c00362{transform:matrix(0.257934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257934,0.000000,0.000000,0.250000,0,0);}
.m5a_c00362{transform:matrix(0.261282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261282,0.000000,0.000000,0.250000,0,0);}
.m4b_c00362{transform:matrix(0.261380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261380,0.000000,0.000000,0.250000,0,0);}
.m5b_c00362{transform:matrix(0.262661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262661,0.000000,0.000000,0.250000,0,0);}
.m28_c00362{transform:matrix(0.263598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263598,0.000000,0.000000,0.250000,0,0);}
.m76_c00362{transform:matrix(0.265945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265945,0.000000,0.000000,0.250000,0,0);}
.me6_c00362{transform:matrix(0.266905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266905,0.000000,0.000000,0.250000,0,0);}
.m4f_c00362{transform:matrix(0.267485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267485,0.000000,0.000000,0.250000,0,0);}
.md_c00362{transform:matrix(0.267878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267878,0.000000,0.000000,0.250000,0,0);}
.m5_c00362{transform:matrix(0.267918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267918,0.000000,0.000000,0.250000,0,0);}
.mbc_c00362{transform:matrix(0.268139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268139,0.000000,0.000000,0.250000,0,0);}
.me9_c00362{transform:matrix(0.270407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270407,0.000000,0.000000,0.250000,0,0);}
.m2b_c00362{transform:matrix(0.270932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270932,0.000000,0.000000,0.250000,0,0);}
.m70_c00362{transform:matrix(0.271229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271229,0.000000,0.000000,0.250000,0,0);}
.m1c_c00362{transform:matrix(0.271351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271351,0.000000,0.000000,0.250000,0,0);}
.ma_c00362{transform:matrix(0.271434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271434,0.000000,0.000000,0.250000,0,0);}
.mbd_c00362{transform:matrix(0.273767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273767,0.000000,0.000000,0.250000,0,0);}
.m7_c00362{transform:matrix(0.275079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275079,0.000000,0.000000,0.250000,0,0);}
.mbe_c00362{transform:matrix(0.275738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275738,0.000000,0.000000,0.250000,0,0);}
.m1_c00362{transform:matrix(0.278387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278387,0.000000,0.000000,0.250000,0,0);}
.mb1_c00362{transform:matrix(0.279138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279138,0.000000,0.000000,0.250000,0,0);}
.m36_c00362{transform:matrix(0.281351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281351,0.000000,0.000000,0.250000,0,0);}
.mda_c00362{transform:matrix(0.281545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281545,0.000000,0.000000,0.250000,0,0);}
.mdc_c00362{transform:matrix(0.281554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281554,0.000000,0.000000,0.250000,0,0);}
.m73_c00362{transform:matrix(0.282226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282226,0.000000,0.000000,0.250000,0,0);}
.mc9_c00362{transform:matrix(0.282604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282604,0.000000,0.000000,0.250000,0,0);}
.mf_c00362{transform:matrix(0.282980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282980,0.000000,0.000000,0.250000,0,0);}
.m19_c00362{transform:matrix(0.284596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284596,0.000000,0.000000,0.250000,0,0);}
.mb_c00362{transform:matrix(0.284995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284995,0.000000,0.000000,0.250000,0,0);}
.mc1_c00362{transform:matrix(0.285247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285247,0.000000,0.000000,0.250000,0,0);}
.m58_c00362{transform:matrix(0.285470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285470,0.000000,0.000000,0.250000,0,0);}
.m66_c00362{transform:matrix(0.286107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286107,0.000000,0.000000,0.250000,0,0);}
.me_c00362{transform:matrix(0.286295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286295,0.000000,0.000000,0.250000,0,0);}
.m40_c00362{transform:matrix(0.287317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287317,0.000000,0.000000,0.250000,0,0);}
.maa_c00362{transform:matrix(0.287746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287746,0.000000,0.000000,0.250000,0,0);}
.m4_c00362{transform:matrix(0.288034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288034,0.000000,0.000000,0.250000,0,0);}
.ma5_c00362{transform:matrix(0.288637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288637,0.000000,0.000000,0.250000,0,0);}
.m4d_c00362{transform:matrix(0.288673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288673,0.000000,0.000000,0.250000,0,0);}
.m2_c00362{transform:matrix(0.288714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288714,0.000000,0.000000,0.250000,0,0);}
.md8_c00362{transform:matrix(0.289843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289843,0.000000,0.000000,0.250000,0,0);}
.m26_c00362{transform:matrix(0.290582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290582,0.000000,0.000000,0.250000,0,0);}
.ma8_c00362{transform:matrix(0.290645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290645,0.000000,0.000000,0.250000,0,0);}
.md2_c00362{transform:matrix(0.291216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291216,0.000000,0.000000,0.250000,0,0);}
.m38_c00362{transform:matrix(0.292300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292300,0.000000,0.000000,0.250000,0,0);}
.m47_c00362{transform:matrix(0.293087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293087,0.000000,0.000000,0.250000,0,0);}
.mec_c00362{transform:matrix(0.293206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293206,0.000000,0.000000,0.250000,0,0);}
.m53_c00362{transform:matrix(0.294104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294104,0.000000,0.000000,0.250000,0,0);}
.m9e_c00362{transform:matrix(0.294454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294454,0.000000,0.000000,0.250000,0,0);}
.m14_c00362{transform:matrix(0.294520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294520,0.000000,0.000000,0.250000,0,0);}
.m75_c00362{transform:matrix(0.295983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295983,0.000000,0.000000,0.250000,0,0);}
.m1d_c00362{transform:matrix(0.296324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296324,0.000000,0.000000,0.250000,0,0);}
.m29_c00362{transform:matrix(0.296782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296782,0.000000,0.000000,0.250000,0,0);}
.m91_c00362{transform:matrix(0.296876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296876,0.000000,0.000000,0.250000,0,0);}
.m89_c00362{transform:matrix(0.297170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297170,0.000000,0.000000,0.250000,0,0);}
.m7f_c00362{transform:matrix(0.297382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297382,0.000000,0.000000,0.250000,0,0);}
.m5c_c00362{transform:matrix(0.297579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297579,0.000000,0.000000,0.250000,0,0);}
.m8b_c00362{transform:matrix(0.298262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298262,0.000000,0.000000,0.250000,0,0);}
.m5d_c00362{transform:matrix(0.298351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298351,0.000000,0.000000,0.250000,0,0);}
.m3d_c00362{transform:matrix(0.298537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298537,0.000000,0.000000,0.250000,0,0);}
.m8_c00362{transform:matrix(0.299569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299569,0.000000,0.000000,0.250000,0,0);}
.m74_c00362{transform:matrix(0.299871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299871,0.000000,0.000000,0.250000,0,0);}
.m23_c00362{transform:matrix(0.300971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300971,0.000000,0.000000,0.250000,0,0);}
.m25_c00362{transform:matrix(0.301452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301452,0.000000,0.000000,0.250000,0,0);}
.m45_c00362{transform:matrix(0.302525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302525,0.000000,0.000000,0.250000,0,0);}
.mc0_c00362{transform:matrix(0.303251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303251,0.000000,0.000000,0.250000,0,0);}
.m3_c00362{transform:matrix(0.303993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303993,0.000000,0.000000,0.250000,0,0);}
.m59_c00362{transform:matrix(0.304391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304391,0.000000,0.000000,0.250000,0,0);}
.mc7_c00362{transform:matrix(0.305637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305637,0.000000,0.000000,0.250000,0,0);}
.m6d_c00362{transform:matrix(0.306543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306543,0.000000,0.000000,0.250000,0,0);}
.m9d_c00362{transform:matrix(0.306592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306592,0.000000,0.000000,0.250000,0,0);}
.mc4_c00362{transform:matrix(0.306764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306764,0.000000,0.000000,0.250000,0,0);}
.m93_c00362{transform:matrix(0.307050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307050,0.000000,0.000000,0.250000,0,0);}
.m12_c00362{transform:matrix(0.307373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307373,0.000000,0.000000,0.250000,0,0);}
.m1a_c00362{transform:matrix(0.308053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308053,0.000000,0.000000,0.250000,0,0);}
.m64_c00362{transform:matrix(0.308295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308295,0.000000,0.000000,0.250000,0,0);}
.m2d_c00362{transform:matrix(0.308634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308634,0.000000,0.000000,0.250000,0,0);}
.m83_c00362{transform:matrix(0.309310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309310,0.000000,0.000000,0.250000,0,0);}
.me1_c00362{transform:matrix(0.309626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309626,0.000000,0.000000,0.250000,0,0);}
.m9c_c00362{transform:matrix(0.309796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309796,0.000000,0.000000,0.250000,0,0);}
.m90_c00362{transform:matrix(0.311928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311928,0.000000,0.000000,0.250000,0,0);}
.m72_c00362{transform:matrix(0.311958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311958,0.000000,0.000000,0.250000,0,0);}
.m63_c00362{transform:matrix(0.311973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311973,0.000000,0.000000,0.250000,0,0);}
.mc2_c00362{transform:matrix(0.312526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312526,0.000000,0.000000,0.250000,0,0);}
.mcb_c00362{transform:matrix(0.312990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312990,0.000000,0.000000,0.250000,0,0);}
.m65_c00362{transform:matrix(0.313382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313382,0.000000,0.000000,0.250000,0,0);}
.mb2_c00362{transform:matrix(0.313403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313403,0.000000,0.000000,0.250000,0,0);}
.meb_c00362{transform:matrix(0.313436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313436,0.000000,0.000000,0.250000,0,0);}
.me3_c00362{transform:matrix(0.314863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314863,0.000000,0.000000,0.250000,0,0);}
.ma4_c00362{transform:matrix(0.314887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314887,0.000000,0.000000,0.250000,0,0);}
.md0_c00362{transform:matrix(0.315349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315349,0.000000,0.000000,0.250000,0,0);}
.m8e_c00362{transform:matrix(0.315601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315601,0.000000,0.000000,0.250000,0,0);}
.m1e_c00362{transform:matrix(0.316114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316114,0.000000,0.000000,0.250000,0,0);}
.m88_c00362{transform:matrix(0.316208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316208,0.000000,0.000000,0.250000,0,0);}
.m18_c00362{transform:matrix(0.316344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316344,0.000000,0.000000,0.250000,0,0);}
.mb7_c00362{transform:matrix(0.316793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316793,0.000000,0.000000,0.250000,0,0);}
.m49_c00362{transform:matrix(0.316800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316800,0.000000,0.000000,0.250000,0,0);}
.md6_c00362{transform:matrix(0.316948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316948,0.000000,0.000000,0.250000,0,0);}
.m15_c00362{transform:matrix(0.317085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317085,0.000000,0.000000,0.250000,0,0);}
.m34_c00362{transform:matrix(0.317406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317406,0.000000,0.000000,0.250000,0,0);}
.ma6_c00362{transform:matrix(0.317757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317757,0.000000,0.000000,0.250000,0,0);}
.m2c_c00362{transform:matrix(0.319207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319207,0.000000,0.000000,0.250000,0,0);}
.mb5_c00362{transform:matrix(0.319355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319355,0.000000,0.000000,0.250000,0,0);}
.m57_c00362{transform:matrix(0.319673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319673,0.000000,0.000000,0.250000,0,0);}
.mdf_c00362{transform:matrix(0.320343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320343,0.000000,0.000000,0.250000,0,0);}
.mac_c00362{transform:matrix(0.321235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321235,0.000000,0.000000,0.250000,0,0);}
.m98_c00362{transform:matrix(0.321779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321779,0.000000,0.000000,0.250000,0,0);}
.mae_c00362{transform:matrix(0.322004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322004,0.000000,0.000000,0.250000,0,0);}
.m2f_c00362{transform:matrix(0.322408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322408,0.000000,0.000000,0.250000,0,0);}
.m71_c00362{transform:matrix(0.322662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322662,0.000000,0.000000,0.250000,0,0);}
.ma3_c00362{transform:matrix(0.322704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322704,0.000000,0.000000,0.250000,0,0);}
.maf_c00362{transform:matrix(0.323438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323438,0.000000,0.000000,0.250000,0,0);}
.md3_c00362{transform:matrix(0.324699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324699,0.000000,0.000000,0.250000,0,0);}
.m37_c00362{transform:matrix(0.325133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325133,0.000000,0.000000,0.250000,0,0);}
.m13_c00362{transform:matrix(0.325406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325406,0.000000,0.000000,0.250000,0,0);}
.mef_c00362{transform:matrix(0.327028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327028,0.000000,0.000000,0.250000,0,0);}
.m35_c00362{transform:matrix(0.327342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327342,0.000000,0.000000,0.250000,0,0);}
.m9_c00362{transform:matrix(0.327459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327459,0.000000,0.000000,0.250000,0,0);}
.m46_c00362{transform:matrix(0.327559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327559,0.000000,0.000000,0.250000,0,0);}
.mb0_c00362{transform:matrix(0.328570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328570,0.000000,0.000000,0.250000,0,0);}
.me7_c00362{transform:matrix(0.328741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328741,0.000000,0.000000,0.250000,0,0);}
.m67_c00362{transform:matrix(0.331631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331631,0.000000,0.000000,0.250000,0,0);}
.m82_c00362{transform:matrix(0.331945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331945,0.000000,0.000000,0.250000,0,0);}
.md1_c00362{transform:matrix(0.331956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331956,0.000000,0.000000,0.250000,0,0);}
.me0_c00362{transform:matrix(0.332034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332034,0.000000,0.000000,0.250000,0,0);}
.mca_c00362{transform:matrix(0.332098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332098,0.000000,0.000000,0.250000,0,0);}
.me5_c00362{transform:matrix(0.333099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333099,0.000000,0.000000,0.250000,0,0);}
.m41_c00362{transform:matrix(0.333119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333119,0.000000,0.000000,0.250000,0,0);}
.mde_c00362{transform:matrix(0.333370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333370,0.000000,0.000000,0.250000,0,0);}
.m16_c00362{transform:matrix(0.333767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333767,0.000000,0.000000,0.250000,0,0);}
.mb6_c00362{transform:matrix(0.334547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334547,0.000000,0.000000,0.250000,0,0);}
.mb3_c00362{transform:matrix(0.334960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334960,0.000000,0.000000,0.250000,0,0);}
.m77_c00362{transform:matrix(0.335446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335446,0.000000,0.000000,0.250000,0,0);}
.m50_c00362{transform:matrix(0.335592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335592,0.000000,0.000000,0.250000,0,0);}
.m27_c00362{transform:matrix(0.335816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335816,0.000000,0.000000,0.250000,0,0);}
.m31_c00362{transform:matrix(0.335871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335871,0.000000,0.000000,0.250000,0,0);}
.m6_c00362{transform:matrix(0.335944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335944,0.000000,0.000000,0.250000,0,0);}
.m1f_c00362{transform:matrix(0.336395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336395,0.000000,0.000000,0.250000,0,0);}
.mc6_c00362{transform:matrix(0.337233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337233,0.000000,0.000000,0.250000,0,0);}
.m43_c00362{transform:matrix(0.337560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337560,0.000000,0.000000,0.250000,0,0);}
.m56_c00362{transform:matrix(0.337868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337868,0.000000,0.000000,0.250000,0,0);}
.m3f_c00362{transform:matrix(0.338424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338424,0.000000,0.000000,0.250000,0,0);}
.m52_c00362{transform:matrix(0.340094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340094,0.000000,0.000000,0.250000,0,0);}
.m8a_c00362{transform:matrix(0.341353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341353,0.000000,0.000000,0.250000,0,0);}
.m44_c00362{transform:matrix(0.341354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341354,0.000000,0.000000,0.250000,0,0);}
.m9a_c00362{transform:matrix(0.341918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341918,0.000000,0.000000,0.250000,0,0);}
.m8d_c00362{transform:matrix(0.342273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342273,0.000000,0.000000,0.250000,0,0);}
.m42_c00362{transform:matrix(0.342498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342498,0.000000,0.000000,0.250000,0,0);}
.m2e_c00362{transform:matrix(0.345869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345869,0.000000,0.000000,0.250000,0,0);}
.m97_c00362{transform:matrix(0.346418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346418,0.000000,0.000000,0.250000,0,0);}
.mbf_c00362{transform:matrix(0.346717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346717,0.000000,0.000000,0.250000,0,0);}
.m3e_c00362{transform:matrix(0.347200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347200,0.000000,0.000000,0.250000,0,0);}
.m54_c00362{transform:matrix(0.349073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349073,0.000000,0.000000,0.250000,0,0);}
.me4_c00362{transform:matrix(0.349392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349392,0.000000,0.000000,0.250000,0,0);}
.m95_c00362{transform:matrix(0.350135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350135,0.000000,0.000000,0.250000,0,0);}
.m7a_c00362{transform:matrix(0.351265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351265,0.000000,0.000000,0.250000,0,0);}
.mb4_c00362{transform:matrix(0.351739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351739,0.000000,0.000000,0.250000,0,0);}
.m85_c00362{transform:matrix(0.351930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351930,0.000000,0.000000,0.250000,0,0);}
.m79_c00362{transform:matrix(0.353271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353271,0.000000,0.000000,0.250000,0,0);}
.med_c00362{transform:matrix(0.353886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353886,0.000000,0.000000,0.250000,0,0);}
.mdb_c00362{transform:matrix(0.354230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354230,0.000000,0.000000,0.250000,0,0);}
.m30_c00362{transform:matrix(0.356255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356255,0.000000,0.000000,0.250000,0,0);}
.md7_c00362{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);}
.m96_c00362{transform:matrix(0.357892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357892,0.000000,0.000000,0.250000,0,0);}
.m4a_c00362{transform:matrix(0.358116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358116,0.000000,0.000000,0.250000,0,0);}
.md4_c00362{transform:matrix(0.358218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358218,0.000000,0.000000,0.250000,0,0);}
.m94_c00362{transform:matrix(0.360530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360530,0.000000,0.000000,0.250000,0,0);}
.m4c_c00362{transform:matrix(0.360929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360929,0.000000,0.000000,0.250000,0,0);}
.mc3_c00362{transform:matrix(0.362344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362344,0.000000,0.000000,0.250000,0,0);}
.m92_c00362{transform:matrix(0.362377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362377,0.000000,0.000000,0.250000,0,0);}
.m6f_c00362{transform:matrix(0.363919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363919,0.000000,0.000000,0.250000,0,0);}
.ma7_c00362{transform:matrix(0.364514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364514,0.000000,0.000000,0.250000,0,0);}
.m8f_c00362{transform:matrix(0.364520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364520,0.000000,0.000000,0.250000,0,0);}
.m8c_c00362{transform:matrix(0.364687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364687,0.000000,0.000000,0.250000,0,0);}
.m6e_c00362{transform:matrix(0.366165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366165,0.000000,0.000000,0.250000,0,0);}
.mdd_c00362{transform:matrix(0.366552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366552,0.000000,0.000000,0.250000,0,0);}
.m9f_c00362{transform:matrix(0.366894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366894,0.000000,0.000000,0.250000,0,0);}
.m48_c00362{transform:matrix(0.368933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368933,0.000000,0.000000,0.250000,0,0);}
.m55_c00362{transform:matrix(0.375520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375520,0.000000,0.000000,0.250000,0,0);}
.m86_c00362{transform:matrix(0.379998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379998,0.000000,0.000000,0.250000,0,0);}
.m78_c00362{transform:matrix(0.380402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380402,0.000000,0.000000,0.250000,0,0);}
.mcd_c00362{transform:matrix(0.381521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381521,0.000000,0.000000,0.250000,0,0);}
.mee_c00362{transform:matrix(0.387986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387986,0.000000,0.000000,0.250000,0,0);}
.m99_c00362{transform:matrix(0.388697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388697,0.000000,0.000000,0.250000,0,0);}
.m3a_c00362{transform:matrix(0.393553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393553,0.000000,0.000000,0.250000,0,0);}
.m4e_c00362{transform:matrix(0.407016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407016,0.000000,0.000000,0.250000,0,0);}
.md9_c00362{transform:matrix(0.416186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416186,0.000000,0.000000,0.250000,0,0);}
.m5e_c00362{transform:matrix(0.429628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429628,0.000000,0.000000,0.250000,0,0);}
.mc8_c00362{transform:matrix(0.449572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449572,0.000000,0.000000,0.250000,0,0);}
.m10_c00362{transform:matrix(0.461208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461208,0.000000,0.000000,0.250000,0,0);}
.m81_c00362{transform:matrix(0.462814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462814,0.000000,0.000000,0.250000,0,0);}
.m1b_c00362{transform:matrix(0.471078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471078,0.000000,0.000000,0.250000,0,0);}
.v1_c00362{vertical-align:-1.425600px;}
.v0_c00362{vertical-align:0.000000px;}
.v3_c00362{vertical-align:21.384000px;}
.v2_c00362{vertical-align:31.363200px;}
.ls6_c00362{letter-spacing:-2.508667px;}
.lsb_c00362{letter-spacing:-2.472829px;}
.ls25_c00362{letter-spacing:-1.397686px;}
.ls1f_c00362{letter-spacing:-1.369015px;}
.ls1e_c00362{letter-spacing:-1.219680px;}
.ls26_c00362{letter-spacing:-1.075143px;}
.ls7_c00362{letter-spacing:-0.229364px;}
.ls19_c00362{letter-spacing:-0.009801px;}
.ls3_c00362{letter-spacing:0.000000px;}
.ls8_c00362{letter-spacing:0.193644px;}
.lsf_c00362{letter-spacing:0.850450px;}
.lse_c00362{letter-spacing:1.168200px;}
.ls4_c00362{letter-spacing:1.647641px;}
.ls13_c00362{letter-spacing:1.732500px;}
.ls1_c00362{letter-spacing:1.874432px;}
.ls10_c00362{letter-spacing:2.029500px;}
.ls1d_c00362{letter-spacing:2.085777px;}
.ls17_c00362{letter-spacing:2.558840px;}
.lsd_c00362{letter-spacing:2.574000px;}
.ls14_c00362{letter-spacing:3.009600px;}
.ls11_c00362{letter-spacing:3.405610px;}
.ls1a_c00362{letter-spacing:3.465000px;}
.ls23_c00362{letter-spacing:3.484810px;}
.ls15_c00362{letter-spacing:3.504610px;}
.ls2_c00362{letter-spacing:3.512134px;}
.ls21_c00362{letter-spacing:3.544200px;}
.ls5_c00362{letter-spacing:3.583810px;}
.ls1c_c00362{letter-spacing:3.643200px;}
.ls24_c00362{letter-spacing:3.653110px;}
.ls22_c00362{letter-spacing:3.663000px;}
.lsa_c00362{letter-spacing:3.801610px;}
.ls18_c00362{letter-spacing:11.404998px;}
.ls0_c00362{letter-spacing:20.535306px;}
.lsc_c00362{letter-spacing:29.937798px;}
.ls12_c00362{letter-spacing:47.044800px;}
.ls16_c00362{letter-spacing:48.470598px;}
.ls1b_c00362{letter-spacing:49.896198px;}
.ls20_c00362{letter-spacing:55.598598px;}
.ls9_c00362{letter-spacing:57.024198px;}
.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;}
}
.ws2_c00362{word-spacing:-19.598655px;}
.ws1_c00362{word-spacing:-17.919050px;}
.ws3_c00362{word-spacing:-16.550034px;}
.ws0_c00362{word-spacing:-7.345642px;}
.ws5_c00362{word-spacing:0.000000px;}
.ws4_c00362{word-spacing:11.468253px;}
._e_c00362{margin-left:-22.004642px;}
._8_c00362{margin-left:-14.964048px;}
._7_c00362{margin-left:-10.823131px;}
._11_c00362{margin-left:-7.340745px;}
._d_c00362{margin-left:-5.303969px;}
._17_c00362{margin-left:-4.157244px;}
._18_c00362{margin-left:-1.218547px;}
._2_c00362{width:2.350191px;}
._0_c00362{width:6.737489px;}
._f_c00362{width:8.386191px;}
._13_c00362{width:10.414501px;}
._5_c00362{width:12.041678px;}
._1_c00362{width:13.905848px;}
._6_c00362{width:22.721237px;}
._a_c00362{width:23.724899px;}
._14_c00362{width:27.857432px;}
._c_c00362{width:32.697059px;}
._19_c00362{width:34.045952px;}
._3_c00362{width:36.728852px;}
._4_c00362{width:38.189031px;}
._16_c00362{width:47.492967px;}
._15_c00362{width:52.517086px;}
._10_c00362{width:54.196257px;}
._9_c00362{width:56.751552px;}
._b_c00362{width:100.207701px;}
._12_c00362{width:1259.418481px;}
.fc0_c00362{color:transparent;}
.fs18_c00362{font-size:10.890198px;}
.fs17_c00362{font-size:11.404998px;}
.fs0_c00362{font-size:22.176000px;}
.fsc_c00362{font-size:23.364000px;}
.fs9_c00362{font-size:29.937798px;}
.fs15_c00362{font-size:30.888000px;}
.fs5_c00362{font-size:32.274000px;}
.fsa_c00362{font-size:33.660000px;}
.fs3_c00362{font-size:34.056198px;}
.fs11_c00362{font-size:34.650000px;}
.fs1c_c00362{font-size:34.848000px;}
.fse_c00362{font-size:38.808000px;}
.fsd_c00362{font-size:40.590000px;}
.fs10_c00362{font-size:47.044800px;}
.fs16_c00362{font-size:48.470598px;}
.fs1a_c00362{font-size:49.896198px;}
.fsb_c00362{font-size:51.480000px;}
.fs8_c00362{font-size:53.064000px;}
.fs1d_c00362{font-size:55.598598px;}
.fs13_c00362{font-size:56.628000px;}
.fs6_c00362{font-size:57.024198px;}
.fs12_c00362{font-size:60.192000px;}
.fs14_c00362{font-size:63.756198px;}
.fs1f_c00362{font-size:64.548000px;}
.fsf_c00362{font-size:68.112198px;}
.fs19_c00362{font-size:69.300000px;}
.fs21_c00362{font-size:69.696198px;}
.fs4_c00362{font-size:70.092198px;}
.fs1e_c00362{font-size:70.884000px;}
.fs2_c00362{font-size:71.676198px;}
.fs1b_c00362{font-size:72.864000px;}
.fs22_c00362{font-size:73.062198px;}
.fs20_c00362{font-size:73.260000px;}
.fs7_c00362{font-size:76.032198px;}
.fs1_c00362{font-size:79.596198px;}
.y0_c00362{bottom:0.000000px;}
.y1_c00362{bottom:76.500000px;}
.y23_c00362{bottom:144.610335px;}
.y22_c00362{bottom:174.542985px;}
.y21_c00362{bottom:207.336735px;}
.y20_c00362{bottom:239.769135px;}
.y1f_c00362{bottom:271.845135px;}
.y1e_c00362{bottom:303.921135px;}
.y1d_c00362{bottom:337.422735px;}
.y1c_c00362{bottom:370.567935px;}
.y1b_c00362{bottom:405.133785px;}
.y2_c00362{bottom:469.642185px;}
.y1a_c00362{bottom:470.003535px;}
.y19_c00362{bottom:502.430985px;}
.y18_c00362{bottom:531.299385px;}
.y17_c00362{bottom:534.863385px;}
.y14_c00362{bottom:567.295785px;}
.y16_c00362{bottom:567.657135px;}
.y15_c00362{bottom:578.349135px;}
.y13_c00362{bottom:599.728185px;}
.y12_c00362{bottom:632.160585px;}
.y11_c00362{bottom:664.597935px;}
.ye_c00362{bottom:697.030335px;}
.yf_c00362{bottom:703.796985px;}
.y10_c00362{bottom:711.642735px;}
.yd_c00362{bottom:719.483535px;}
.yc_c00362{bottom:729.462735px;}
.yb_c00362{bottom:729.819135px;}
.ya_c00362{bottom:763.677135px;}
.y9_c00362{bottom:827.472735px;}
.y8_c00362{bottom:859.900185px;}
.y7_c00362{bottom:892.688985px;}
.y6_c00362{bottom:919.780335px;}
.y5_c00362{bottom:924.769935px;}
.y4_c00362{bottom:1025.626185px;}
.y3_c00362{bottom:1076.591385px;}
.h15_c00362{height:7.595729px;}
.h16_c00362{height:10.688134px;}
.ha_c00362{height:19.938573px;}
.h2_c00362{height:23.128875px;}
.hc_c00362{height:24.367922px;}
.h10_c00362{height:31.331837px;}
.h14_c00362{height:32.281418px;}
.h18_c00362{height:33.230868px;}
.h5_c00362{height:33.424296px;}
.h7_c00362{height:33.660773px;}
.h1a_c00362{height:34.201406px;}
.h11_c00362{height:36.138867px;}
.h1b_c00362{height:37.028666px;}
.h8_c00362{height:37.978116px;}
.he_c00362{height:40.475531px;}
.hd_c00362{height:42.334102px;}
.hb_c00362{height:50.524805px;}
.h13_c00362{height:59.061234px;}
.h12_c00362{height:62.778375px;}
.h1d_c00362{height:67.321547px;}
.h1f_c00362{height:68.403007px;}
.hf_c00362{height:68.644325px;}
.h6_c00362{height:68.791659px;}
.h17_c00362{height:69.841406px;}
.h4_c00362{height:70.346269px;}
.h20_c00362{height:71.706552px;}
.h19_c00362{height:73.433250px;}
.h1e_c00362{height:73.832344px;}
.h1c_c00362{height:73.929797px;}
.h9_c00362{height:76.626200px;}
.h3_c00362{height:78.119315px;}
.h1_c00362{height:1110.000000px;}
.h0_c00362{height:1263.000000px;}
.w1_c00362{width:775.500000px;}
.w0_c00362{width:892.500000px;}
.x0_c00362{left:0.000000px;}
.x2_c00362{left:56.570235px;}
.x1_c00362{left:58.500000px;}
.x5_c00362{left:93.145785px;}
.x13_c00362{left:94.591185px;}
.x5a_c00362{left:96.160335px;}
.x6_c00362{left:103.723935px;}
.x81_c00362{left:105.253485px;}
.x6f_c00362{left:114.356535px;}
.x84_c00362{left:115.658385px;}
.x72_c00362{left:125.038635px;}
.x14_c00362{left:126.122685px;}
.x1d_c00362{left:136.656285px;}
.x6a_c00362{left:137.730435px;}
.x7d_c00362{left:139.878735px;}
.x7e_c00362{left:142.492335px;}
.x15_c00362{left:146.318685px;}
.x5e_c00362{left:148.328385px;}
.x1e_c00362{left:157.990785px;}
.x42_c00362{left:169.445085px;}
.x27_c00362{left:172.132935px;}
.x5f_c00362{left:179.973735px;}
.x37_c00362{left:181.127085px;}
.x64_c00362{left:186.388935px;}
.x2b_c00362{left:190.626135px;}
.x51_c00362{left:192.442785px;}
.x7_c00362{left:193.937685px;}
.x65_c00362{left:196.318635px;}
.x28_c00362{left:200.283585px;}
.x1f_c00362{left:201.367635px;}
.x4_c00362{left:203.407035px;}
.x6b_c00362{left:204.624735px;}
.x52_c00362{left:208.124385px;}
.x8_c00362{left:213.267435px;}
.x29_c00362{left:215.970135px;}
.x48_c00362{left:220.934985px;}
.x2c_c00362{left:225.018735px;}
.x85_c00362{left:226.459185px;}
.x79_c00362{left:234.849435px;}
.x2a_c00362{left:236.111685px;}
.x82_c00362{left:237.423435px;}
.x6c_c00362{left:246.288885px;}
.x38_c00362{left:247.541235px;}
.x9_c00362{left:257.535285px;}
.x73_c00362{left:258.881685px;}
.x2d_c00362{left:268.910385px;}
.x20_c00362{left:270.004335px;}
.x66_c00362{left:281.013135px;}
.x16_c00362{left:290.645835px;}
.x39_c00362{left:291.680385px;}
.x2e_c00362{left:301.971435px;}
.x71_c00362{left:303.401985px;}
.x6d_c00362{left:304.778085px;}
.xa_c00362{left:313.059435px;}
.x3a_c00362{left:314.965185px;}
.x70_c00362{left:323.543535px;}
.x3b_c00362{left:325.127535px;}
.x49_c00362{left:335.527485px;}
.x5b_c00362{left:337.923285px;}
.xb_c00362{left:346.358085px;}
.x7f_c00362{left:347.546085px;}
.x2f_c00362{left:357.267885px;}
.x4d_c00362{left:358.292535px;}
.x74_c00362{left:367.786635px;}
.x3c_c00362{left:368.831085px;}
.x30_c00362{left:378.439035px;}
.x17_c00362{left:379.676535px;}
.x86_c00362{left:380.765535px;}
.x53_c00362{left:391.343685px;}
.xc_c00362{left:395.432385px;}
.x5c_c00362{left:402.184185px;}
.x87_c00362{left:403.688985px;}
.x21_c00362{left:412.861335px;}
.x88_c00362{left:413.876085px;}
.xd_c00362{left:424.548285px;}
.x5d_c00362{left:434.393835px;}
.x18_c00362{left:446.001585px;}
.x31_c00362{left:450.317985px;}
.x54_c00362{left:457.807335px;}
.x43_c00362{left:459.455685px;}
.x4e_c00362{left:468.093435px;}
.x55_c00362{left:469.137885px;}
.x32_c00362{left:470.890185px;}
.x19_c00362{left:478.894335px;}
.x7a_c00362{left:479.983335px;}
.x22_c00362{left:489.942735px;}
.x67_c00362{left:491.234685px;}
.x1a_c00362{left:501.377235px;}
.x60_c00362{left:502.604835px;}
.xe_c00362{left:512.658285px;}
.x4a_c00362{left:523.597785px;}
.x56_c00362{left:524.963985px;}
.x83_c00362{left:526.458885px;}
.x3d_c00362{left:533.156235px;}
.x44_c00362{left:535.448085px;}
.xf_c00362{left:544.823385px;}
.x89_c00362{left:546.041085px;}
.x80_c00362{left:555.253035px;}
.x33_c00362{left:556.708335px;}
.x75_c00362{left:559.539735px;}
.x3e_c00362{left:567.197385px;}
.x68_c00362{left:568.870485px;}
.x23_c00362{left:578.295285px;}
.x4b_c00362{left:582.012735px;}
.x76_c00362{left:587.333985px;}
.x34_c00362{left:588.729885px;}
.x45_c00362{left:590.130735px;}
.x10_c00362{left:599.263485px;}
.x61_c00362{left:601.416735px;}
.x77_c00362{left:603.371985px;}
.x3f_c00362{left:611.737485px;}
.x4f_c00362{left:612.781935px;}
.x1b_c00362{left:614.494635px;}
.x62_c00362{left:623.043285px;}
.x24_c00362{left:624.335235px;}
.x7b_c00362{left:625.943985px;}
.x35_c00362{left:633.685785px;}
.x11_c00362{left:644.674785px;}
.x25_c00362{left:645.907335px;}
.x7c_c00362{left:651.738435px;}
.x47_c00362{left:655.792485px;}
.x6e_c00362{left:657.297285px;}
.x40_c00362{left:666.989385px;}
.x3_c00362{left:667.999185px;}
.x26_c00362{left:678.240735px;}
.x63_c00362{left:680.156385px;}
.x50_c00362{left:688.932735px;}
.x78_c00362{left:690.175185px;}
.x1c_c00362{left:699.565335px;}
.x57_c00362{left:700.847385px;}
.x41_c00362{left:706.015185px;}
.x46_c00362{left:708.985185px;}
.x69_c00362{left:711.866085px;}
.x58_c00362{left:713.786685px;}
.x36_c00362{left:722.191785px;}
.x12_c00362{left:733.596585px;}
.x4c_c00362{left:744.644985px;}
.x59_c00362{left:746.040885px;}
@media print{
.v1_c00362{vertical-align:-1.267200pt;}
.v0_c00362{vertical-align:0.000000pt;}
.v3_c00362{vertical-align:19.008000pt;}
.v2_c00362{vertical-align:27.878400pt;}
.ls6_c00362{letter-spacing:-2.229926pt;}
.lsb_c00362{letter-spacing:-2.198070pt;}
.ls25_c00362{letter-spacing:-1.242387pt;}
.ls1f_c00362{letter-spacing:-1.216903pt;}
.ls1e_c00362{letter-spacing:-1.084160pt;}
.ls26_c00362{letter-spacing:-0.955683pt;}
.ls7_c00362{letter-spacing:-0.203879pt;}
.ls19_c00362{letter-spacing:-0.008712pt;}
.ls3_c00362{letter-spacing:0.000000pt;}
.ls8_c00362{letter-spacing:0.172128pt;}
.lsf_c00362{letter-spacing:0.755955pt;}
.lse_c00362{letter-spacing:1.038400pt;}
.ls4_c00362{letter-spacing:1.464570pt;}
.ls13_c00362{letter-spacing:1.540000pt;}
.ls1_c00362{letter-spacing:1.666162pt;}
.ls10_c00362{letter-spacing:1.804000pt;}
.ls1d_c00362{letter-spacing:1.854024pt;}
.ls17_c00362{letter-spacing:2.274525pt;}
.lsd_c00362{letter-spacing:2.288000pt;}
.ls14_c00362{letter-spacing:2.675200pt;}
.ls11_c00362{letter-spacing:3.027209pt;}
.ls1a_c00362{letter-spacing:3.080000pt;}
.ls23_c00362{letter-spacing:3.097609pt;}
.ls15_c00362{letter-spacing:3.115209pt;}
.ls2_c00362{letter-spacing:3.121897pt;}
.ls21_c00362{letter-spacing:3.150400pt;}
.ls5_c00362{letter-spacing:3.185609pt;}
.ls1c_c00362{letter-spacing:3.238400pt;}
.ls24_c00362{letter-spacing:3.247209pt;}
.ls22_c00362{letter-spacing:3.256000pt;}
.lsa_c00362{letter-spacing:3.379209pt;}
.ls18_c00362{letter-spacing:10.137776pt;}
.ls0_c00362{letter-spacing:18.253605pt;}
.lsc_c00362{letter-spacing:26.611376pt;}
.ls12_c00362{letter-spacing:41.817600pt;}
.ls16_c00362{letter-spacing:43.084976pt;}
.ls1b_c00362{letter-spacing:44.352176pt;}
.ls20_c00362{letter-spacing:49.420976pt;}
.ls9_c00362{letter-spacing:50.688176pt;}
.ws2_c00362{word-spacing:-17.421027pt;}
.ws1_c00362{word-spacing:-15.928044pt;}
.ws3_c00362{word-spacing:-14.711141pt;}
.ws0_c00362{word-spacing:-6.529459pt;}
.ws5_c00362{word-spacing:0.000000pt;}
.ws4_c00362{word-spacing:10.194003pt;}
._e_c00362{margin-left:-19.559682pt;}
._8_c00362{margin-left:-13.301376pt;}
._7_c00362{margin-left:-9.620561pt;}
._11_c00362{margin-left:-6.525107pt;}
._d_c00362{margin-left:-4.714639pt;}
._17_c00362{margin-left:-3.695328pt;}
._18_c00362{margin-left:-1.083153pt;}
._2_c00362{width:2.089058pt;}
._0_c00362{width:5.988879pt;}
._f_c00362{width:7.454392pt;}
._13_c00362{width:9.257334pt;}
._5_c00362{width:10.703714pt;}
._1_c00362{width:12.360754pt;}
._6_c00362{width:20.196655pt;}
._a_c00362{width:21.088799pt;}
._14_c00362{width:24.762162pt;}
._c_c00362{width:29.064053pt;}
._19_c00362{width:30.263068pt;}
._3_c00362{width:32.647868pt;}
._4_c00362{width:33.945805pt;}
._16_c00362{width:42.215971pt;}
._15_c00362{width:46.681854pt;}
._10_c00362{width:48.174451pt;}
._9_c00362{width:50.445824pt;}
._b_c00362{width:89.073512pt;}
._12_c00362{width:1119.483094pt;}
.fs18_c00362{font-size:9.680176pt;}
.fs17_c00362{font-size:10.137776pt;}
.fs0_c00362{font-size:19.712000pt;}
.fsc_c00362{font-size:20.768000pt;}
.fs9_c00362{font-size:26.611376pt;}
.fs15_c00362{font-size:27.456000pt;}
.fs5_c00362{font-size:28.688000pt;}
.fsa_c00362{font-size:29.920000pt;}
.fs3_c00362{font-size:30.272176pt;}
.fs11_c00362{font-size:30.800000pt;}
.fs1c_c00362{font-size:30.976000pt;}
.fse_c00362{font-size:34.496000pt;}
.fsd_c00362{font-size:36.080000pt;}
.fs10_c00362{font-size:41.817600pt;}
.fs16_c00362{font-size:43.084976pt;}
.fs1a_c00362{font-size:44.352176pt;}
.fsb_c00362{font-size:45.760000pt;}
.fs8_c00362{font-size:47.168000pt;}
.fs1d_c00362{font-size:49.420976pt;}
.fs13_c00362{font-size:50.336000pt;}
.fs6_c00362{font-size:50.688176pt;}
.fs12_c00362{font-size:53.504000pt;}
.fs14_c00362{font-size:56.672176pt;}
.fs1f_c00362{font-size:57.376000pt;}
.fsf_c00362{font-size:60.544176pt;}
.fs19_c00362{font-size:61.600000pt;}
.fs21_c00362{font-size:61.952176pt;}
.fs4_c00362{font-size:62.304176pt;}
.fs1e_c00362{font-size:63.008000pt;}
.fs2_c00362{font-size:63.712176pt;}
.fs1b_c00362{font-size:64.768000pt;}
.fs22_c00362{font-size:64.944176pt;}
.fs20_c00362{font-size:65.120000pt;}
.fs7_c00362{font-size:67.584176pt;}
.fs1_c00362{font-size:70.752176pt;}
.y0_c00362{bottom:0.000000pt;}
.y1_c00362{bottom:68.000000pt;}
.y23_c00362{bottom:128.542520pt;}
.y22_c00362{bottom:155.149320pt;}
.y21_c00362{bottom:184.299320pt;}
.y20_c00362{bottom:213.128120pt;}
.y1f_c00362{bottom:241.640120pt;}
.y1e_c00362{bottom:270.152120pt;}
.y1d_c00362{bottom:299.931320pt;}
.y1c_c00362{bottom:329.393720pt;}
.y1b_c00362{bottom:360.118920pt;}
.y2_c00362{bottom:417.459720pt;}
.y1a_c00362{bottom:417.780920pt;}
.y19_c00362{bottom:446.605320pt;}
.y18_c00362{bottom:472.266120pt;}
.y17_c00362{bottom:475.434120pt;}
.y14_c00362{bottom:504.262920pt;}
.y16_c00362{bottom:504.584120pt;}
.y15_c00362{bottom:514.088120pt;}
.y13_c00362{bottom:533.091720pt;}
.y12_c00362{bottom:561.920520pt;}
.y11_c00362{bottom:590.753720pt;}
.ye_c00362{bottom:619.582520pt;}
.yf_c00362{bottom:625.597320pt;}
.y10_c00362{bottom:632.571320pt;}
.yd_c00362{bottom:639.540920pt;}
.yc_c00362{bottom:648.411320pt;}
.yb_c00362{bottom:648.728120pt;}
.ya_c00362{bottom:678.824120pt;}
.y9_c00362{bottom:735.531320pt;}
.y8_c00362{bottom:764.355720pt;}
.y7_c00362{bottom:793.501320pt;}
.y6_c00362{bottom:817.582520pt;}
.y5_c00362{bottom:822.017720pt;}
.y4_c00362{bottom:911.667720pt;}
.y3_c00362{bottom:956.970120pt;}
.h15_c00362{height:6.751759pt;}
.h16_c00362{height:9.500563pt;}
.ha_c00362{height:17.723176pt;}
.h2_c00362{height:20.559000pt;}
.hc_c00362{height:21.660375pt;}
.h10_c00362{height:27.850522pt;}
.h14_c00362{height:28.694594pt;}
.h18_c00362{height:29.538549pt;}
.h5_c00362{height:29.710485pt;}
.h7_c00362{height:29.920688pt;}
.h1a_c00362{height:30.401250pt;}
.h11_c00362{height:32.123438pt;}
.h1b_c00362{height:32.914370pt;}
.h8_c00362{height:33.758325pt;}
.he_c00362{height:35.978250pt;}
.hd_c00362{height:37.630313pt;}
.hb_c00362{height:44.910938pt;}
.h13_c00362{height:52.498875pt;}
.h12_c00362{height:55.803000pt;}
.h1d_c00362{height:59.841375pt;}
.h1f_c00362{height:60.802673pt;}
.hf_c00362{height:61.017177pt;}
.h6_c00362{height:61.148141pt;}
.h17_c00362{height:62.081250pt;}
.h4_c00362{height:62.530016pt;}
.h20_c00362{height:63.739157pt;}
.h19_c00362{height:65.274000pt;}
.h1e_c00362{height:65.628750pt;}
.h1c_c00362{height:65.715375pt;}
.h9_c00362{height:68.112177pt;}
.h3_c00362{height:69.439391pt;}
.h1_c00362{height:986.666667pt;}
.h0_c00362{height:1122.666667pt;}
.w1_c00362{width:689.333333pt;}
.w0_c00362{width:793.333333pt;}
.x0_c00362{left:0.000000pt;}
.x2_c00362{left:50.284653pt;}
.x1_c00362{left:52.000000pt;}
.x5_c00362{left:82.796253pt;}
.x13_c00362{left:84.081053pt;}
.x5a_c00362{left:85.475853pt;}
.x6_c00362{left:92.199053pt;}
.x81_c00362{left:93.558653pt;}
.x6f_c00362{left:101.650253pt;}
.x84_c00362{left:102.807453pt;}
.x72_c00362{left:111.145453pt;}
.x14_c00362{left:112.109053pt;}
.x1d_c00362{left:121.472253pt;}
.x6a_c00362{left:122.427053pt;}
.x7d_c00362{left:124.336653pt;}
.x7e_c00362{left:126.659853pt;}
.x15_c00362{left:130.061053pt;}
.x5e_c00362{left:131.847453pt;}
.x1e_c00362{left:140.436253pt;}
.x42_c00362{left:150.617853pt;}
.x27_c00362{left:153.007053pt;}
.x5f_c00362{left:159.976653pt;}
.x37_c00362{left:161.001853pt;}
.x64_c00362{left:165.679053pt;}
.x2b_c00362{left:169.445453pt;}
.x51_c00362{left:171.060253pt;}
.x7_c00362{left:172.389053pt;}
.x65_c00362{left:174.505453pt;}
.x28_c00362{left:178.029853pt;}
.x1f_c00362{left:178.993453pt;}
.x4_c00362{left:180.806253pt;}
.x6b_c00362{left:181.888653pt;}
.x52_c00362{left:184.999453pt;}
.x8_c00362{left:189.571053pt;}
.x29_c00362{left:191.973453pt;}
.x48_c00362{left:196.386653pt;}
.x2c_c00362{left:200.016653pt;}
.x85_c00362{left:201.297053pt;}
.x79_c00362{left:208.755053pt;}
.x2a_c00362{left:209.877053pt;}
.x82_c00362{left:211.043053pt;}
.x6c_c00362{left:218.923453pt;}
.x38_c00362{left:220.036653pt;}
.x9_c00362{left:228.920253pt;}
.x73_c00362{left:230.117053pt;}
.x2d_c00362{left:239.031453pt;}
.x20_c00362{left:240.003853pt;}
.x66_c00362{left:249.789453pt;}
.x16_c00362{left:258.351853pt;}
.x39_c00362{left:259.271453pt;}
.x2e_c00362{left:268.419053pt;}
.x71_c00362{left:269.690653pt;}
.x6d_c00362{left:270.913853pt;}
.xa_c00362{left:278.275053pt;}
.x3a_c00362{left:279.969053pt;}
.x70_c00362{left:287.594253pt;}
.x3b_c00362{left:289.002253pt;}
.x49_c00362{left:298.246653pt;}
.x5b_c00362{left:300.376253pt;}
.xb_c00362{left:307.873853pt;}
.x7f_c00362{left:308.929853pt;}
.x2f_c00362{left:317.571453pt;}
.x4d_c00362{left:318.482253pt;}
.x74_c00362{left:326.921453pt;}
.x3c_c00362{left:327.849853pt;}
.x30_c00362{left:336.390253pt;}
.x17_c00362{left:337.490253pt;}
.x86_c00362{left:338.458253pt;}
.x53_c00362{left:347.861053pt;}
.xc_c00362{left:351.495453pt;}
.x5c_c00362{left:357.497053pt;}
.x87_c00362{left:358.834653pt;}
.x21_c00362{left:366.987853pt;}
.x88_c00362{left:367.889853pt;}
.xd_c00362{left:377.376253pt;}
.x5d_c00362{left:386.127853pt;}
.x18_c00362{left:396.445853pt;}
.x31_c00362{left:400.282653pt;}
.x54_c00362{left:406.939853pt;}
.x43_c00362{left:408.405053pt;}
.x4e_c00362{left:416.083053pt;}
.x55_c00362{left:417.011453pt;}
.x32_c00362{left:418.569053pt;}
.x19_c00362{left:425.683853pt;}
.x7a_c00362{left:426.651853pt;}
.x22_c00362{left:435.504653pt;}
.x67_c00362{left:436.653053pt;}
.x1a_c00362{left:445.668653pt;}
.x60_c00362{left:446.759853pt;}
.xe_c00362{left:455.696253pt;}
.x4a_c00362{left:465.420253pt;}
.x56_c00362{left:466.634653pt;}
.x83_c00362{left:467.963453pt;}
.x3d_c00362{left:473.916653pt;}
.x44_c00362{left:475.953853pt;}
.xf_c00362{left:484.287453pt;}
.x89_c00362{left:485.369853pt;}
.x80_c00362{left:493.558253pt;}
.x33_c00362{left:494.851853pt;}
.x75_c00362{left:497.368653pt;}
.x3e_c00362{left:504.175453pt;}
.x68_c00362{left:505.662653pt;}
.x23_c00362{left:514.040253pt;}
.x4b_c00362{left:517.344653pt;}
.x76_c00362{left:522.074653pt;}
.x34_c00362{left:523.315453pt;}
.x45_c00362{left:524.560653pt;}
.x10_c00362{left:532.678653pt;}
.x61_c00362{left:534.592653pt;}
.x77_c00362{left:536.330653pt;}
.x3f_c00362{left:543.766653pt;}
.x4f_c00362{left:544.695053pt;}
.x1b_c00362{left:546.217453pt;}
.x62_c00362{left:553.816253pt;}
.x24_c00362{left:554.964653pt;}
.x7b_c00362{left:556.394653pt;}
.x35_c00362{left:563.276253pt;}
.x11_c00362{left:573.044253pt;}
.x25_c00362{left:574.139853pt;}
.x7c_c00362{left:579.323053pt;}
.x47_c00362{left:582.926653pt;}
.x6e_c00362{left:584.264253pt;}
.x40_c00362{left:592.879453pt;}
.x3_c00362{left:593.777053pt;}
.x26_c00362{left:602.880653pt;}
.x63_c00362{left:604.583453pt;}
.x50_c00362{left:612.384653pt;}
.x78_c00362{left:613.489053pt;}
.x1c_c00362{left:621.835853pt;}
.x57_c00362{left:622.975453pt;}
.x41_c00362{left:627.569053pt;}
.x46_c00362{left:630.209053pt;}
.x69_c00362{left:632.769853pt;}
.x58_c00362{left:634.477053pt;}
.x36_c00362{left:641.948253pt;}
.x12_c00362{left:652.085853pt;}
.x4c_c00362{left:661.906653pt;}
.x59_c00362{left:663.147453pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_10002ef911769df9e671ac00.woff2')format("woff");}.ff1_c00363{font-family:ff1_c00363;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00363;src:url('chunks/assets/font_d0f532044cafc63a913be9da.woff2')format("woff");}.ff2_c00363{font-family:ff2_c00363;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00363;src:url('chunks/assets/font_651ac7a3a1c48430be070305.woff2')format("woff");}.ff3_c00363{font-family:ff3_c00363;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00363;src:url('chunks/assets/font_b3db95ca9a558222571e5b1f.woff2')format("woff");}.ff4_c00363{font-family:ff4_c00363;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00363;src:url('chunks/assets/font_9fc5b3672d0ead63dab83080.woff2')format("woff");}.ff5_c00363{font-family:ff5_c00363;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m74_c00363{transform:matrix(0.044119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.044119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.044119,0.000000,0.000000,0.250000,0,0);}
.mcd_c00363{transform:matrix(0.046876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.046876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.046876,0.000000,0.000000,0.250000,0,0);}
.m53_c00363{transform:matrix(0.057144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.057144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.057144,0.000000,0.000000,0.250000,0,0);}
.mf9_c00363{transform:matrix(0.071429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071429,0.000000,0.000000,0.250000,0,0);}
.m34_c00363{transform:matrix(0.073170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073170,0.000000,0.000000,0.250000,0,0);}
.m33_c00363{transform:matrix(0.076219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076219,0.000000,0.000000,0.250000,0,0);}
.m9e_c00363{transform:matrix(0.076924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076924,0.000000,0.000000,0.250000,0,0);}
.m8c_c00363{transform:matrix(0.088710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088710,0.000000,0.000000,0.250000,0,0);}
.me9_c00363{transform:matrix(0.089285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089285,0.000000,0.000000,0.250000,0,0);}
.m76_c00363{transform:matrix(0.105393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105393,0.000000,0.000000,0.250000,0,0);}
.m9c_c00363{transform:matrix(0.105770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105770,0.000000,0.000000,0.250000,0,0);}
.m91_c00363{transform:matrix(0.107361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107361,0.000000,0.000000,0.250000,0,0);}
.m31_c00363{transform:matrix(0.109757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109757,0.000000,0.000000,0.250000,0,0);}
.mdb_c00363{transform:matrix(0.110294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110294,0.000000,0.000000,0.250000,0,0);}
.m8b_c00363{transform:matrix(0.112903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112903,0.000000,0.000000,0.250000,0,0);}
.m7f_c00363{transform:matrix(0.116669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116669,0.000000,0.000000,0.250000,0,0);}
.m8a_c00363{transform:matrix(0.120967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120967,0.000000,0.000000,0.250000,0,0);}
.m86_c00363{transform:matrix(0.130159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130159,0.000000,0.000000,0.250000,0,0);}
.m85_c00363{transform:matrix(0.130873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130873,0.000000,0.000000,0.250000,0,0);}
.ma0_c00363{transform:matrix(0.133143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133143,0.000000,0.000000,0.250000,0,0);}
.m41_c00363{transform:matrix(0.136639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136639,0.000000,0.000000,0.250000,0,0);}
.mfa_c00363{transform:matrix(0.138096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138096,0.000000,0.000000,0.250000,0,0);}
.m7a_c00363{transform:matrix(0.140062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140062,0.000000,0.000000,0.250000,0,0);}
.mf8_c00363{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00363{transform:matrix(0.159765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159765,0.000000,0.000000,0.250000,0,0);}
.m50_c00363{transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);}
.m48_c00363{transform:matrix(0.166668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166668,0.000000,0.000000,0.250000,0,0);}
.md1_c00363{transform:matrix(0.171296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171296,0.000000,0.000000,0.250000,0,0);}
.m80_c00363{transform:matrix(0.175002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175002,0.000000,0.000000,0.250000,0,0);}
.m94_c00363{transform:matrix(0.175192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175192,0.000000,0.000000,0.250000,0,0);}
.m9a_c00363{transform:matrix(0.177565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177565,0.000000,0.000000,0.250000,0,0);}
.mca_c00363{transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);}
.m7e_c00363{transform:matrix(0.183178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183178,0.000000,0.000000,0.250000,0,0);}
.md4_c00363{transform:matrix(0.184027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184027,0.000000,0.000000,0.250000,0,0);}
.m4_c00363{transform:matrix(0.185398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185398,0.000000,0.000000,0.250000,0,0);}
.m4c_c00363{transform:matrix(0.185410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185410,0.000000,0.000000,0.250000,0,0);}
.med_c00363{transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);}
.m52_c00363{transform:matrix(0.189285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189285,0.000000,0.000000,0.250000,0,0);}
.mce_c00363{transform:matrix(0.190972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190972,0.000000,0.000000,0.250000,0,0);}
.m9b_c00363{transform:matrix(0.192308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192308,0.000000,0.000000,0.250000,0,0);}
.m51_c00363{transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);}
.m7d_c00363{transform:matrix(0.194007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194007,0.000000,0.000000,0.250000,0,0);}
.mcb_c00363{transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);}
.m32_c00363{transform:matrix(0.195122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195122,0.000000,0.000000,0.250000,0,0);}
.md0_c00363{transform:matrix(0.199074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199074,0.000000,0.000000,0.250000,0,0);}
.m63_c00363{transform:matrix(0.203572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203572,0.000000,0.000000,0.250000,0,0);}
.mc9_c00363{transform:matrix(0.204861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204861,0.000000,0.000000,0.250000,0,0);}
.m2f_c00363{transform:matrix(0.205815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205815,0.000000,0.000000,0.250000,0,0);}
.me8_c00363{transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);}
.md2_c00363{transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);}
.md3_c00363{transform:matrix(0.210648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210648,0.000000,0.000000,0.250000,0,0);}
.mee_c00363{transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);}
.m54_c00363{transform:matrix(0.212499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212499,0.000000,0.000000,0.250000,0,0);}
.mcc_c00363{transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);}
.me7_c00363{transform:matrix(0.225369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225369,0.000000,0.000000,0.250000,0,0);}
.mfc_c00363{transform:matrix(0.225552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225552,0.000000,0.000000,0.250000,0,0);}
.m60_c00363{transform:matrix(0.227230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227230,0.000000,0.000000,0.250000,0,0);}
.m3_c00363{transform:matrix(0.231124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231124,0.000000,0.000000,0.250000,0,0);}
.mf1_c00363{transform:matrix(0.237041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237041,0.000000,0.000000,0.250000,0,0);}
.mc_c00363{transform:matrix(0.241233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241233,0.000000,0.000000,0.250000,0,0);}
.m12_c00363{transform:matrix(0.243175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243175,0.000000,0.000000,0.250000,0,0);}
.m27_c00363{transform:matrix(0.244692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244692,0.000000,0.000000,0.250000,0,0);}
.m1_c00363{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00363{transform:matrix(0.250095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250095,0.000000,0.000000,0.250000,0,0);}
.mb4_c00363{transform:matrix(0.250190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250190,0.000000,0.000000,0.250000,0,0);}
.m35_c00363{transform:matrix(0.250584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250584,0.000000,0.000000,0.250000,0,0);}
.m98_c00363{transform:matrix(0.251392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251392,0.000000,0.000000,0.250000,0,0);}
.mf5_c00363{transform:matrix(0.253306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253306,0.000000,0.000000,0.250000,0,0);}
.md6_c00363{transform:matrix(0.253504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253504,0.000000,0.000000,0.250000,0,0);}
.ma7_c00363{transform:matrix(0.253847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253847,0.000000,0.000000,0.250000,0,0);}
.m84_c00363{transform:matrix(0.257560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257560,0.000000,0.000000,0.250000,0,0);}
.m96_c00363{transform:matrix(0.259132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259132,0.000000,0.000000,0.250000,0,0);}
.mdf_c00363{transform:matrix(0.259655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259655,0.000000,0.000000,0.250000,0,0);}
.m9f_c00363{transform:matrix(0.259902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259902,0.000000,0.000000,0.250000,0,0);}
.m78_c00363{transform:matrix(0.260691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260691,0.000000,0.000000,0.250000,0,0);}
.m73_c00363{transform:matrix(0.263436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263436,0.000000,0.000000,0.250000,0,0);}
.m61_c00363{transform:matrix(0.263758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263758,0.000000,0.000000,0.250000,0,0);}
.m38_c00363{transform:matrix(0.263843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263843,0.000000,0.000000,0.250000,0,0);}
.mab_c00363{transform:matrix(0.263887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263887,0.000000,0.000000,0.250000,0,0);}
.m40_c00363{transform:matrix(0.264073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264073,0.000000,0.000000,0.250000,0,0);}
.mcf_c00363{transform:matrix(0.264399,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264399,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264399,0.000000,0.000000,0.250000,0,0);}
.m5f_c00363{transform:matrix(0.265077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265077,0.000000,0.000000,0.250000,0,0);}
.m4b_c00363{transform:matrix(0.265289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265289,0.000000,0.000000,0.250000,0,0);}
.ma3_c00363{transform:matrix(0.265370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265370,0.000000,0.000000,0.250000,0,0);}
.m92_c00363{transform:matrix(0.267148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267148,0.000000,0.000000,0.250000,0,0);}
.m95_c00363{transform:matrix(0.267562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267562,0.000000,0.000000,0.250000,0,0);}
.ma2_c00363{transform:matrix(0.267562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267562,0.000000,0.000000,0.250000,0,0);}
.mde_c00363{transform:matrix(0.267813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267813,0.000000,0.000000,0.250000,0,0);}
.md_c00363{transform:matrix(0.268555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268555,0.000000,0.000000,0.250000,0,0);}
.m3d_c00363{transform:matrix(0.268638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268638,0.000000,0.000000,0.250000,0,0);}
.m6_c00363{transform:matrix(0.270336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270336,0.000000,0.000000,0.250000,0,0);}
.m72_c00363{transform:matrix(0.271335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271335,0.000000,0.000000,0.250000,0,0);}
.mf7_c00363{transform:matrix(0.272523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272523,0.000000,0.000000,0.250000,0,0);}
.m64_c00363{transform:matrix(0.272550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272550,0.000000,0.000000,0.250000,0,0);}
.m93_c00363{transform:matrix(0.272707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272707,0.000000,0.000000,0.250000,0,0);}
.mac_c00363{transform:matrix(0.273473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273473,0.000000,0.000000,0.250000,0,0);}
.m2_c00363{transform:matrix(0.273707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273707,0.000000,0.000000,0.250000,0,0);}
.me1_c00363{transform:matrix(0.273749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273749,0.000000,0.000000,0.250000,0,0);}
.m6f_c00363{transform:matrix(0.275963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275963,0.000000,0.000000,0.250000,0,0);}
.m25_c00363{transform:matrix(0.277247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277247,0.000000,0.000000,0.250000,0,0);}
.m7b_c00363{transform:matrix(0.277728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277728,0.000000,0.000000,0.250000,0,0);}
.m6c_c00363{transform:matrix(0.278480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278480,0.000000,0.000000,0.250000,0,0);}
.m99_c00363{transform:matrix(0.278533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278533,0.000000,0.000000,0.250000,0,0);}
.m87_c00363{transform:matrix(0.280418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280418,0.000000,0.000000,0.250000,0,0);}
.m1a_c00363{transform:matrix(0.280655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280655,0.000000,0.000000,0.250000,0,0);}
.m2b_c00363{transform:matrix(0.281782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281782,0.000000,0.000000,0.250000,0,0);}
.m1d_c00363{transform:matrix(0.282594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282594,0.000000,0.000000,0.250000,0,0);}
.mb0_c00363{transform:matrix(0.282903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282903,0.000000,0.000000,0.250000,0,0);}
.mc2_c00363{transform:matrix(0.283684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283684,0.000000,0.000000,0.250000,0,0);}
.m7c_c00363{transform:matrix(0.284217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284217,0.000000,0.000000,0.250000,0,0);}
.m1e_c00363{transform:matrix(0.284651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284651,0.000000,0.000000,0.250000,0,0);}
.m1f_c00363{transform:matrix(0.285166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285166,0.000000,0.000000,0.250000,0,0);}
.me_c00363{transform:matrix(0.285667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285667,0.000000,0.000000,0.250000,0,0);}
.ma8_c00363{transform:matrix(0.286279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286279,0.000000,0.000000,0.250000,0,0);}
.ma_c00363{transform:matrix(0.286286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286286,0.000000,0.000000,0.250000,0,0);}
.m22_c00363{transform:matrix(0.286342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286342,0.000000,0.000000,0.250000,0,0);}
.m26_c00363{transform:matrix(0.287482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287482,0.000000,0.000000,0.250000,0,0);}
.m11_c00363{transform:matrix(0.287713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287713,0.000000,0.000000,0.250000,0,0);}
.m42_c00363{transform:matrix(0.288823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288823,0.000000,0.000000,0.250000,0,0);}
.mba_c00363{transform:matrix(0.288838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288838,0.000000,0.000000,0.250000,0,0);}
.m4f_c00363{transform:matrix(0.289071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289071,0.000000,0.000000,0.250000,0,0);}
.m0_c00363{transform:matrix(0.289205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289205,0.000000,0.000000,0.250000,0,0);}
.md9_c00363{transform:matrix(0.290335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290335,0.000000,0.000000,0.250000,0,0);}
.m44_c00363{transform:matrix(0.290679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290679,0.000000,0.000000,0.250000,0,0);}
.m4e_c00363{transform:matrix(0.290886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290886,0.000000,0.000000,0.250000,0,0);}
.m1c_c00363{transform:matrix(0.291438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291438,0.000000,0.000000,0.250000,0,0);}
.m43_c00363{transform:matrix(0.293127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293127,0.000000,0.000000,0.250000,0,0);}
.m6d_c00363{transform:matrix(0.293158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293158,0.000000,0.000000,0.250000,0,0);}
.mdc_c00363{transform:matrix(0.294028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294028,0.000000,0.000000,0.250000,0,0);}
.me2_c00363{transform:matrix(0.295337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295337,0.000000,0.000000,0.250000,0,0);}
.mfb_c00363{transform:matrix(0.296318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296318,0.000000,0.000000,0.250000,0,0);}
.md5_c00363{transform:matrix(0.297045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297045,0.000000,0.000000,0.250000,0,0);}
.m3c_c00363{transform:matrix(0.297449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297449,0.000000,0.000000,0.250000,0,0);}
.m65_c00363{transform:matrix(0.297664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297664,0.000000,0.000000,0.250000,0,0);}
.mdd_c00363{transform:matrix(0.299176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299176,0.000000,0.000000,0.250000,0,0);}
.m89_c00363{transform:matrix(0.300151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300151,0.000000,0.000000,0.250000,0,0);}
.m39_c00363{transform:matrix(0.300375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300375,0.000000,0.000000,0.250000,0,0);}
.m28_c00363{transform:matrix(0.300759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300759,0.000000,0.000000,0.250000,0,0);}
.mf3_c00363{transform:matrix(0.302232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302232,0.000000,0.000000,0.250000,0,0);}
.mfe_c00363{transform:matrix(0.302532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302532,0.000000,0.000000,0.250000,0,0);}
.mb2_c00363{transform:matrix(0.302655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302655,0.000000,0.000000,0.250000,0,0);}
.mc3_c00363{transform:matrix(0.303126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303126,0.000000,0.000000,0.250000,0,0);}
.mf2_c00363{transform:matrix(0.303415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303415,0.000000,0.000000,0.250000,0,0);}
.m2e_c00363{transform:matrix(0.303725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303725,0.000000,0.000000,0.250000,0,0);}
.m2d_c00363{transform:matrix(0.303743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303743,0.000000,0.000000,0.250000,0,0);}
.m49_c00363{transform:matrix(0.303936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303936,0.000000,0.000000,0.250000,0,0);}
.mbe_c00363{transform:matrix(0.304033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304033,0.000000,0.000000,0.250000,0,0);}
.m20_c00363{transform:matrix(0.304073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304073,0.000000,0.000000,0.250000,0,0);}
.me6_c00363{transform:matrix(0.304403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304403,0.000000,0.000000,0.250000,0,0);}
.m18_c00363{transform:matrix(0.305522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305522,0.000000,0.000000,0.250000,0,0);}
.m17_c00363{transform:matrix(0.306247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306247,0.000000,0.000000,0.250000,0,0);}
.m2a_c00363{transform:matrix(0.308886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308886,0.000000,0.000000,0.250000,0,0);}
.ma6_c00363{transform:matrix(0.309200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309200,0.000000,0.000000,0.250000,0,0);}
.m68_c00363{transform:matrix(0.310341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310341,0.000000,0.000000,0.250000,0,0);}
.mc8_c00363{transform:matrix(0.311113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311113,0.000000,0.000000,0.250000,0,0);}
.mbd_c00363{transform:matrix(0.311452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311452,0.000000,0.000000,0.250000,0,0);}
.maa_c00363{transform:matrix(0.311497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311497,0.000000,0.000000,0.250000,0,0);}
.mc0_c00363{transform:matrix(0.312110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312110,0.000000,0.000000,0.250000,0,0);}
.m81_c00363{transform:matrix(0.312276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312276,0.000000,0.000000,0.250000,0,0);}
.m7_c00363{transform:matrix(0.313654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313654,0.000000,0.000000,0.250000,0,0);}
.mb8_c00363{transform:matrix(0.314593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314593,0.000000,0.000000,0.250000,0,0);}
.m3a_c00363{transform:matrix(0.315147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315147,0.000000,0.000000,0.250000,0,0);}
.m13_c00363{transform:matrix(0.315212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315212,0.000000,0.000000,0.250000,0,0);}
.m5b_c00363{transform:matrix(0.315512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315512,0.000000,0.000000,0.250000,0,0);}
.mc4_c00363{transform:matrix(0.316474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316474,0.000000,0.000000,0.250000,0,0);}
.m4a_c00363{transform:matrix(0.316584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316584,0.000000,0.000000,0.250000,0,0);}
.m56_c00363{transform:matrix(0.317877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317877,0.000000,0.000000,0.250000,0,0);}
.m5a_c00363{transform:matrix(0.318610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318610,0.000000,0.000000,0.250000,0,0);}
.md8_c00363{transform:matrix(0.318836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318836,0.000000,0.000000,0.250000,0,0);}
.m8e_c00363{transform:matrix(0.320942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320942,0.000000,0.000000,0.250000,0,0);}
.m67_c00363{transform:matrix(0.321088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321088,0.000000,0.000000,0.250000,0,0);}
.mb9_c00363{transform:matrix(0.321117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321117,0.000000,0.000000,0.250000,0,0);}
.mf0_c00363{transform:matrix(0.321545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321545,0.000000,0.000000,0.250000,0,0);}
.me3_c00363{transform:matrix(0.321799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321799,0.000000,0.000000,0.250000,0,0);}
.mf4_c00363{transform:matrix(0.322164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322164,0.000000,0.000000,0.250000,0,0);}
.mbb_c00363{transform:matrix(0.322340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322340,0.000000,0.000000,0.250000,0,0);}
.mf6_c00363{transform:matrix(0.322445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322445,0.000000,0.000000,0.250000,0,0);}
.m8f_c00363{transform:matrix(0.323439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323439,0.000000,0.000000,0.250000,0,0);}
.m5d_c00363{transform:matrix(0.323819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323819,0.000000,0.000000,0.250000,0,0);}
.m21_c00363{transform:matrix(0.323884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323884,0.000000,0.000000,0.250000,0,0);}
.m71_c00363{transform:matrix(0.325504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325504,0.000000,0.000000,0.250000,0,0);}
.ma5_c00363{transform:matrix(0.326146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326146,0.000000,0.000000,0.250000,0,0);}
.mbc_c00363{transform:matrix(0.326890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326890,0.000000,0.000000,0.250000,0,0);}
.mc7_c00363{transform:matrix(0.327263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327263,0.000000,0.000000,0.250000,0,0);}
.m23_c00363{transform:matrix(0.328096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328096,0.000000,0.000000,0.250000,0,0);}
.mda_c00363{transform:matrix(0.328288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328288,0.000000,0.000000,0.250000,0,0);}
.m1b_c00363{transform:matrix(0.329217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329217,0.000000,0.000000,0.250000,0,0);}
.m3e_c00363{transform:matrix(0.330749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330749,0.000000,0.000000,0.250000,0,0);}
.m9_c00363{transform:matrix(0.331025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331025,0.000000,0.000000,0.250000,0,0);}
.m14_c00363{transform:matrix(0.331066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331066,0.000000,0.000000,0.250000,0,0);}
.m46_c00363{transform:matrix(0.331788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331788,0.000000,0.000000,0.250000,0,0);}
.m66_c00363{transform:matrix(0.332655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332655,0.000000,0.000000,0.250000,0,0);}
.m36_c00363{transform:matrix(0.332898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332898,0.000000,0.000000,0.250000,0,0);}
.mb1_c00363{transform:matrix(0.332942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332942,0.000000,0.000000,0.250000,0,0);}
.m19_c00363{transform:matrix(0.333279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333279,0.000000,0.000000,0.250000,0,0);}
.m47_c00363{transform:matrix(0.333328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333328,0.000000,0.000000,0.250000,0,0);}
.meb_c00363{transform:matrix(0.334254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334254,0.000000,0.000000,0.250000,0,0);}
.mc5_c00363{transform:matrix(0.335101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335101,0.000000,0.000000,0.250000,0,0);}
.m3b_c00363{transform:matrix(0.337579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337579,0.000000,0.000000,0.250000,0,0);}
.m6b_c00363{transform:matrix(0.340905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340905,0.000000,0.000000,0.250000,0,0);}
.m3f_c00363{transform:matrix(0.342060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342060,0.000000,0.000000,0.250000,0,0);}
.m57_c00363{transform:matrix(0.342060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342060,0.000000,0.000000,0.250000,0,0);}
.m55_c00363{transform:matrix(0.342660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342660,0.000000,0.000000,0.250000,0,0);}
.m58_c00363{transform:matrix(0.343166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343166,0.000000,0.000000,0.250000,0,0);}
.m30_c00363{transform:matrix(0.343584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343584,0.000000,0.000000,0.250000,0,0);}
.m83_c00363{transform:matrix(0.345720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345720,0.000000,0.000000,0.250000,0,0);}
.mef_c00363{transform:matrix(0.345917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345917,0.000000,0.000000,0.250000,0,0);}
.m9d_c00363{transform:matrix(0.346153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346153,0.000000,0.000000,0.250000,0,0);}
.mb6_c00363{transform:matrix(0.346205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346205,0.000000,0.000000,0.250000,0,0);}
.mb7_c00363{transform:matrix(0.346602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346602,0.000000,0.000000,0.250000,0,0);}
.m77_c00363{transform:matrix(0.347138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347138,0.000000,0.000000,0.250000,0,0);}
.m69_c00363{transform:matrix(0.348495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348495,0.000000,0.000000,0.250000,0,0);}
.mc6_c00363{transform:matrix(0.349464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349464,0.000000,0.000000,0.250000,0,0);}
.m5c_c00363{transform:matrix(0.350428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350428,0.000000,0.000000,0.250000,0,0);}
.m45_c00363{transform:matrix(0.351797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351797,0.000000,0.000000,0.250000,0,0);}
.m15_c00363{transform:matrix(0.351918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351918,0.000000,0.000000,0.250000,0,0);}
.mb5_c00363{transform:matrix(0.352463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352463,0.000000,0.000000,0.250000,0,0);}
.ma9_c00363{transform:matrix(0.353595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353595,0.000000,0.000000,0.250000,0,0);}
.ma4_c00363{transform:matrix(0.354111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354111,0.000000,0.000000,0.250000,0,0);}
.m29_c00363{transform:matrix(0.354668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354668,0.000000,0.000000,0.250000,0,0);}
.m10_c00363{transform:matrix(0.354742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354742,0.000000,0.000000,0.250000,0,0);}
.m16_c00363{transform:matrix(0.354951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354951,0.000000,0.000000,0.250000,0,0);}
.mc1_c00363{transform:matrix(0.355095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355095,0.000000,0.000000,0.250000,0,0);}
.m6a_c00363{transform:matrix(0.357029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357029,0.000000,0.000000,0.250000,0,0);}
.mea_c00363{transform:matrix(0.357356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357356,0.000000,0.000000,0.250000,0,0);}
.mae_c00363{transform:matrix(0.358404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358404,0.000000,0.000000,0.250000,0,0);}
.m5_c00363{transform:matrix(0.358832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358832,0.000000,0.000000,0.250000,0,0);}
.mb_c00363{transform:matrix(0.361525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361525,0.000000,0.000000,0.250000,0,0);}
.mbf_c00363{transform:matrix(0.363773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363773,0.000000,0.000000,0.250000,0,0);}
.mec_c00363{transform:matrix(0.363879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363879,0.000000,0.000000,0.250000,0,0);}
.m88_c00363{transform:matrix(0.363980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363980,0.000000,0.000000,0.250000,0,0);}
.maf_c00363{transform:matrix(0.368395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368395,0.000000,0.000000,0.250000,0,0);}
.m82_c00363{transform:matrix(0.368918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368918,0.000000,0.000000,0.250000,0,0);}
.m37_c00363{transform:matrix(0.369495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369495,0.000000,0.000000,0.250000,0,0);}
.mb3_c00363{transform:matrix(0.370775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370775,0.000000,0.000000,0.250000,0,0);}
.m6e_c00363{transform:matrix(0.371455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371455,0.000000,0.000000,0.250000,0,0);}
.me4_c00363{transform:matrix(0.372601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372601,0.000000,0.000000,0.250000,0,0);}
.m8_c00363{transform:matrix(0.373863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373863,0.000000,0.000000,0.250000,0,0);}
.me5_c00363{transform:matrix(0.378386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378386,0.000000,0.000000,0.250000,0,0);}
.mf_c00363{transform:matrix(0.378969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378969,0.000000,0.000000,0.250000,0,0);}
.m79_c00363{transform:matrix(0.380376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380376,0.000000,0.000000,0.250000,0,0);}
.m59_c00363{transform:matrix(0.383373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383373,0.000000,0.000000,0.250000,0,0);}
.me0_c00363{transform:matrix(0.385726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385726,0.000000,0.000000,0.250000,0,0);}
.md7_c00363{transform:matrix(0.389648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389648,0.000000,0.000000,0.250000,0,0);}
.m62_c00363{transform:matrix(0.392308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392308,0.000000,0.000000,0.250000,0,0);}
.m70_c00363{transform:matrix(0.400486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400486,0.000000,0.000000,0.250000,0,0);}
.mad_c00363{transform:matrix(0.403672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403672,0.000000,0.000000,0.250000,0,0);}
.ma1_c00363{transform:matrix(0.411045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411045,0.000000,0.000000,0.250000,0,0);}
.m4d_c00363{transform:matrix(0.411147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411147,0.000000,0.000000,0.250000,0,0);}
.m75_c00363{transform:matrix(0.411761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411761,0.000000,0.000000,0.250000,0,0);}
.m97_c00363{transform:matrix(0.443725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443725,0.000000,0.000000,0.250000,0,0);}
.mfd_c00363{transform:matrix(0.469068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469068,0.000000,0.000000,0.250000,0,0);}
.m2c_c00363{transform:matrix(0.499990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499990,0.000000,0.000000,0.250000,0,0);}
.m24_c00363{transform:matrix(0.535704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535704,0.000000,0.000000,0.250000,0,0);}
.m90_c00363{transform:matrix(0.681256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681256,0.000000,0.000000,0.250000,0,0);}
.v0_c00363{vertical-align:0.000000px;}
.v3_c00363{vertical-align:2.843280px;}
.v4_c00363{vertical-align:4.257000px;}
.v2_c00363{vertical-align:7.147800px;}
.v1_c00363{vertical-align:44.213400px;}
.ls3d_c00363{letter-spacing:-2.966040px;}
.ls48_c00363{letter-spacing:-2.661127px;}
.ls2e_c00363{letter-spacing:-2.598750px;}
.lsd_c00363{letter-spacing:-2.529450px;}
.ls1b_c00363{letter-spacing:-2.312640px;}
.ls42_c00363{letter-spacing:-2.305413px;}
.lse_c00363{letter-spacing:-2.224530px;}
.ls34_c00363{letter-spacing:-2.134440px;}
.ls39_c00363{letter-spacing:-1.677067px;}
.ls1c_c00363{letter-spacing:-1.561032px;}
.ls27_c00363{letter-spacing:-1.358280px;}
.ls2b_c00363{letter-spacing:-1.282050px;}
.ls16_c00363{letter-spacing:-1.094940px;}
.ls3c_c00363{letter-spacing:-0.898132px;}
.ls36_c00363{letter-spacing:-0.893970px;}
.ls2a_c00363{letter-spacing:-0.783090px;}
.ls1d_c00363{letter-spacing:-0.469260px;}
.lsb_c00363{letter-spacing:0.000000px;}
.ls17_c00363{letter-spacing:0.018770px;}
.ls7_c00363{letter-spacing:0.303534px;}
.ls49_c00363{letter-spacing:0.375804px;}
.ls33_c00363{letter-spacing:0.415800px;}
.ls2_c00363{letter-spacing:0.876091px;}
.ls26_c00363{letter-spacing:0.881100px;}
.ls23_c00363{letter-spacing:1.093138px;}
.ls29_c00363{letter-spacing:1.118700px;}
.ls28_c00363{letter-spacing:1.227600px;}
.ls35_c00363{letter-spacing:1.267200px;}
.ls37_c00363{letter-spacing:1.277100px;}
.lsf_c00363{letter-spacing:1.300860px;}
.ls25_c00363{letter-spacing:1.346400px;}
.ls5_c00363{letter-spacing:1.416492px;}
.lsa_c00363{letter-spacing:1.496464px;}
.ls15_c00363{letter-spacing:1.564200px;}
.ls47_c00363{letter-spacing:1.647756px;}
.ls3e_c00363{letter-spacing:2.296810px;}
.ls22_c00363{letter-spacing:2.366100px;}
.ls3b_c00363{letter-spacing:2.395810px;}
.ls20_c00363{letter-spacing:2.455200px;}
.ls6_c00363{letter-spacing:2.471634px;}
.ls38_c00363{letter-spacing:2.494810px;}
.ls21_c00363{letter-spacing:2.534400px;}
.ls13_c00363{letter-spacing:2.613600px;}
.ls4a_c00363{letter-spacing:2.643310px;}
.ls4b_c00363{letter-spacing:2.673000px;}
.ls41_c00363{letter-spacing:2.811600px;}
.ls14_c00363{letter-spacing:2.832984px;}
.ls8_c00363{letter-spacing:2.840211px;}
.ls1e_c00363{letter-spacing:2.940310px;}
.ls0_c00363{letter-spacing:3.071475px;}
.ls2f_c00363{letter-spacing:3.140775px;}
.ls44_c00363{letter-spacing:3.207610px;}
.ls19_c00363{letter-spacing:3.346200px;}
.ls45_c00363{letter-spacing:3.415500px;}
.ls32_c00363{letter-spacing:3.474900px;}
.ls30_c00363{letter-spacing:3.484810px;}
.ls12_c00363{letter-spacing:3.573900px;}
.lsc_c00363{letter-spacing:3.613500px;}
.ls2d_c00363{letter-spacing:3.712500px;}
.ls3f_c00363{letter-spacing:3.781810px;}
.ls9_c00363{letter-spacing:4.088700px;}
.ls10_c00363{letter-spacing:9.979398px;}
.ls18_c00363{letter-spacing:12.830598px;}
.ls1f_c00363{letter-spacing:15.681798px;}
.ls1_c00363{letter-spacing:18.849996px;}
.ls2c_c00363{letter-spacing:21.384000px;}
.ls4_c00363{letter-spacing:23.704560px;}
.ls24_c00363{letter-spacing:24.235398px;}
.ls40_c00363{letter-spacing:25.660998px;}
.ls3a_c00363{letter-spacing:37.065798px;}
.ls31_c00363{letter-spacing:44.193798px;}
.ls46_c00363{letter-spacing:48.470598px;}
.ls1a_c00363{letter-spacing:49.896198px;}
.ls43_c00363{letter-spacing:51.321798px;}
.ls11_c00363{letter-spacing:58.449798px;}
.ls3_c00363{letter-spacing:241.525086px;}
.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;}
}
.ws1_c00363{word-spacing:-21.138975px;}
.wsd_c00363{word-spacing:-19.483992px;}
.ws0_c00363{word-spacing:-18.067500px;}
.ws8_c00363{word-spacing:-17.374500px;}
.wsc_c00363{word-spacing:-15.762087px;}
.ws6_c00363{word-spacing:-4.090680px;}
.wse_c00363{word-spacing:0.000000px;}
.ws3_c00363{word-spacing:4.482720px;}
.ws5_c00363{word-spacing:4.554000px;}
.ws2_c00363{word-spacing:5.637060px;}
.ws4_c00363{word-spacing:5.926140px;}
.ws7_c00363{word-spacing:6.682500px;}
.wsb_c00363{word-spacing:15.703222px;}
.wsa_c00363{word-spacing:91.966248px;}
.ws9_c00363{word-spacing:115.869600px;}
._24_c00363{margin-left:-17.791686px;}
._18_c00363{margin-left:-13.871682px;}
._1f_c00363{margin-left:-11.924550px;}
._11_c00363{margin-left:-9.235116px;}
._15_c00363{margin-left:-6.624882px;}
._6_c00363{margin-left:-5.347980px;}
._1c_c00363{margin-left:-2.802096px;}
._2_c00363{margin-left:-1.292940px;}
._4_c00363{width:2.673990px;}
._c_c00363{width:4.191660px;}
._16_c00363{width:5.819616px;}
._1_c00363{width:7.371540px;}
._3_c00363{width:8.383320px;}
._0_c00363{width:9.539640px;}
._1d_c00363{width:10.840500px;}
._7_c00363{width:11.996820px;}
._b_c00363{width:13.660020px;}
._1b_c00363{width:16.970976px;}
._9_c00363{width:21.102840px;}
._8_c00363{width:22.548240px;}
._13_c00363{width:24.210450px;}
._14_c00363{width:26.306280px;}
._23_c00363{width:28.925820px;}
._f_c00363{width:30.180744px;}
._17_c00363{width:31.837410px;}
._1a_c00363{width:33.105600px;}
._12_c00363{width:36.034020px;}
._20_c00363{width:38.230830px;}
._a_c00363{width:39.748500px;}
._1e_c00363{width:41.121630px;}
._10_c00363{width:42.159744px;}
._5_c00363{width:45.039060px;}
._22_c00363{width:46.444860px;}
._21_c00363{width:51.493860px;}
._19_c00363{width:56.143296px;}
._e_c00363{width:58.968591px;}
._d_c00363{width:98.901000px;}
.fc0_c00363{color:transparent;}
.fs2d_c00363{font-size:8.316000px;}
.fs5_c00363{font-size:9.979398px;}
.fse_c00363{font-size:12.830598px;}
.fs15_c00363{font-size:15.681798px;}
.fs1e_c00363{font-size:17.622000px;}
.fs28_c00363{font-size:21.384000px;}
.fs22_c00363{font-size:22.176000px;}
.fs25_c00363{font-size:22.374000px;}
.fs1c_c00363{font-size:24.235398px;}
.fs21_c00363{font-size:24.552000px;}
.fs2f_c00363{font-size:25.344000px;}
.fs31_c00363{font-size:25.542000px;}
.fs3b_c00363{font-size:25.660998px;}
.fs1d_c00363{font-size:26.928000px;}
.fs13_c00363{font-size:27.720000px;}
.fs4_c00363{font-size:28.116000px;}
.fs9_c00363{font-size:28.314000px;}
.fs1f_c00363{font-size:28.512000px;}
.fsc_c00363{font-size:31.284000px;}
.fsb_c00363{font-size:33.066198px;}
.fs18_c00363{font-size:33.660000px;}
.fs30_c00363{font-size:34.650000px;}
.fs32_c00363{font-size:35.838000px;}
.fs27_c00363{font-size:36.630000px;}
.fs26_c00363{font-size:36.828000px;}
.fs34_c00363{font-size:37.065798px;}
.fs20_c00363{font-size:38.808000px;}
.fs23_c00363{font-size:39.204000px;}
.fs11_c00363{font-size:39.600000px;}
.fs2b_c00363{font-size:44.193798px;}
.fs1_c00363{font-size:45.144000px;}
.fs39_c00363{font-size:45.936198px;}
.fs1b_c00363{font-size:47.322000px;}
.fs33_c00363{font-size:47.916198px;}
.fs35_c00363{font-size:48.312000px;}
.fs41_c00363{font-size:48.470598px;}
.fs17_c00363{font-size:49.104000px;}
.fs10_c00363{font-size:49.896198px;}
.fs1a_c00363{font-size:50.688000px;}
.fs3e_c00363{font-size:51.321798px;}
.fsa_c00363{font-size:52.272000px;}
.fs44_c00363{font-size:52.866198px;}
.fs45_c00363{font-size:53.460000px;}
.fsd_c00363{font-size:53.856198px;}
.fs3d_c00363{font-size:56.232000px;}
.fs6_c00363{font-size:58.449798px;}
.fs14_c00363{font-size:58.806198px;}
.fs2e_c00363{font-size:60.984000px;}
.fs12_c00363{font-size:62.568000px;}
.fs3_c00363{font-size:63.558000px;}
.fs3f_c00363{font-size:64.152198px;}
.fs24_c00363{font-size:64.350000px;}
.fsf_c00363{font-size:66.528000px;}
.fs8_c00363{font-size:66.924000px;}
.fs40_c00363{font-size:68.310000px;}
.fs2c_c00363{font-size:69.498000px;}
.fs2a_c00363{font-size:69.696198px;}
.fs38_c00363{font-size:70.884000px;}
.fs7_c00363{font-size:71.478000px;}
.fs2_c00363{font-size:72.270000px;}
.fs29_c00363{font-size:74.250000px;}
.fs19_c00363{font-size:74.844000px;}
.fs3a_c00363{font-size:75.636198px;}
.fs43_c00363{font-size:76.032198px;}
.fs0_c00363{font-size:81.774000px;}
.fs36_c00363{font-size:84.744000px;}
.fs16_c00363{font-size:86.328000px;}
.fs42_c00363{font-size:100.188000px;}
.fs3c_c00363{font-size:104.544000px;}
.fs37_c00363{font-size:140.976198px;}
.y0_c00363{bottom:0.000000px;}
.y1_c00363{bottom:76.500000px;}
.y47_c00363{bottom:137.125935px;}
.y45_c00363{bottom:137.838735px;}
.y44_c00363{bottom:138.190185px;}
.y46_c00363{bottom:148.174335px;}
.y43_c00363{bottom:168.845535px;}
.y42_c00363{bottom:204.485535px;}
.y40_c00363{bottom:204.841935px;}
.y3f_c00363{bottom:205.193385px;}
.y41_c00363{bottom:209.118735px;}
.y3e_c00363{bottom:238.343535px;}
.y3d_c00363{bottom:270.775935px;}
.y3c_c00363{bottom:303.916185px;}
.y3b_c00363{bottom:318.533535px;}
.y3a_c00363{bottom:337.066335px;}
.y39_c00363{bottom:401.926185px;}
.y32_c00363{bottom:427.943385px;}
.y37_c00363{bottom:431.868735px;}
.y38_c00363{bottom:432.937935px;}
.y31_c00363{bottom:434.363535px;}
.y35_c00363{bottom:434.714985px;}
.y30_c00363{bottom:439.353135px;}
.y2f_c00363{bottom:441.486585px;}
.y34_c00363{bottom:461.444985px;}
.y2e_c00363{bottom:462.519135px;}
.y36_c00363{bottom:466.439535px;}
.y2b_c00363{bottom:466.795935px;}
.y2d_c00363{bottom:467.152335px;}
.y2c_c00363{bottom:467.860185px;}
.y33_c00363{bottom:478.913535px;}
.y29_c00363{bottom:499.936185px;}
.y2a_c00363{bottom:501.361785px;}
.y28_c00363{bottom:501.723135px;}
.y27_c00363{bottom:504.930735px;}
.y26_c00363{bottom:506.707785px;}
.y25_c00363{bottom:534.155535px;}
.y24_c00363{bottom:553.757535px;}
.y21_c00363{bottom:564.449535px;}
.y1f_c00363{bottom:564.800985px;}
.y1e_c00363{bottom:565.162335px;}
.y23_c00363{bottom:566.226585px;}
.y22_c00363{bottom:568.008585px;}
.y20_c00363{bottom:572.285385px;}
.y1d_c00363{bottom:591.530985px;}
.y1c_c00363{bottom:596.881935px;}
.y1b_c00363{bottom:612.202185px;}
.y1a_c00363{bottom:628.952985px;}
.y19_c00363{bottom:642.501135px;}
.y18_c00363{bottom:665.310735px;}
.y14_c00363{bottom:695.243385px;}
.y12_c00363{bottom:697.025385px;}
.y17_c00363{bottom:697.386735px;}
.y15_c00363{bottom:697.743135px;}
.y13_c00363{bottom:698.450985px;}
.y16_c00363{bottom:707.009535px;}
.y10_c00363{bottom:729.457785px;}
.y11_c00363{bottom:730.175535px;}
.yf_c00363{bottom:758.687535px;}
.yd_c00363{bottom:762.246585px;}
.ye_c00363{bottom:762.602985px;}
.yc_c00363{bottom:791.476335px;}
.ya_c00363{bottom:795.035385px;}
.yb_c00363{bottom:795.396735px;}
.y8_c00363{bottom:829.243845px;}
.y9_c00363{bottom:829.249785px;}
.y7_c00363{bottom:893.763135px;}
.y6_c00363{bottom:921.562335px;}
.y4_c00363{bottom:925.834185px;}
.y5_c00363{bottom:926.195535px;}
.y3_c00363{bottom:943.297785px;}
.y2_c00363{bottom:1083.362985px;}
.h8_c00363{height:6.646279px;}
.h31_c00363{height:8.161699px;}
.h32_c00363{height:8.380969px;}
.h10_c00363{height:8.545178px;}
.h18_c00363{height:10.444077px;}
.h2b_c00363{height:14.241744px;}
.h1f_c00363{height:16.140775px;}
.h40_c00363{height:17.090225px;}
.h22_c00363{height:18.379195px;}
.h28_c00363{height:21.958857px;}
.h25_c00363{height:23.128875px;}
.h39_c00363{height:24.685821px;}
.h34_c00363{height:24.873750px;}
.h24_c00363{height:25.606969px;}
.h36_c00363{height:26.639508px;}
.h6_c00363{height:27.594316px;}
.h21_c00363{height:28.085063px;}
.h16_c00363{height:28.911094px;}
.h2f_c00363{height:29.433069px;}
.h46_c00363{height:32.281418px;}
.he_c00363{height:32.628234px;}
.h1b_c00363{height:33.035449px;}
.h13_c00363{height:33.230868px;}
.h35_c00363{height:34.007080px;}
.h43_c00363{height:34.180317px;}
.h2a_c00363{height:35.950342px;}
.h23_c00363{height:38.087930px;}
.h29_c00363{height:38.410453px;}
.h26_c00363{height:38.476582px;}
.h9_c00363{height:38.927565px;}
.h4b_c00363{height:40.475531px;}
.h14_c00363{height:41.301563px;}
.h1e_c00363{height:46.443955px;}
.h3_c00363{height:47.083781px;}
.h3e_c00363{height:47.910019px;}
.h1a_c00363{height:48.192891px;}
.h37_c00363{height:48.970390px;}
.h1d_c00363{height:49.747500px;}
.h38_c00363{height:49.975097px;}
.h3a_c00363{height:50.387906px;}
.hc_c00363{height:51.302109px;}
.h49_c00363{height:51.885282px;}
.h4a_c00363{height:52.468066px;}
.hf_c00363{height:52.856913px;}
.h17_c00363{height:57.715067px;}
.h42_c00363{height:58.648219px;}
.h33_c00363{height:63.604406px;}
.h15_c00363{height:65.256469px;}
.h12_c00363{height:65.682246px;}
.h5_c00363{height:66.289008px;}
.h44_c00363{height:66.908738px;}
.h45_c00363{height:67.042529px;}
.h27_c00363{height:67.115039px;}
.h30_c00363{height:68.208486px;}
.h11_c00363{height:69.386625px;}
.h3d_c00363{height:69.568770px;}
.ha_c00363{height:70.151748px;}
.h2e_c00363{height:70.240700px;}
.h4_c00363{height:70.929053px;}
.h7_c00363{height:70.952813px;}
.h2c_c00363{height:72.872314px;}
.h20_c00363{height:73.455293px;}
.hb_c00363{height:73.744017px;}
.h3f_c00363{height:74.232792px;}
.h2d_c00363{height:74.497700px;}
.h48_c00363{height:74.584319px;}
.h1c_c00363{height:76.298573px;}
.hd_c00363{height:78.076853px;}
.h2_c00363{height:80.256709px;}
.h3b_c00363{height:83.171602px;}
.h19_c00363{height:84.726211px;}
.h47_c00363{height:104.492953px;}
.h41_c00363{height:109.036125px;}
.h3c_c00363{height:147.033769px;}
.h1_c00363{height:1110.000000px;}
.h0_c00363{height:1263.000000px;}
.w1_c00363{width:775.500000px;}
.w0_c00363{width:892.500000px;}
.x0_c00363{left:0.000000px;}
.x1_c00363{left:58.500000px;}
.x16_c00363{left:96.878085px;}
.x5_c00363{left:98.867985px;}
.x59_c00363{left:99.932235px;}
.x33_c00363{left:101.209335px;}
.x34_c00363{left:111.896385px;}
.x6_c00363{left:119.341185px;}
.x2c_c00363{left:120.935085px;}
.x35_c00363{left:122.944785px;}
.x49_c00363{left:130.448985px;}
.x71_c00363{left:132.374535px;}
.x75_c00363{left:134.651535px;}
.x2d_c00363{left:137.700735px;}
.x5a_c00363{left:141.947835px;}
.x36_c00363{left:143.977335px;}
.x17_c00363{left:152.050290px;}
.x7_c00363{left:153.585285px;}
.x6b_c00363{left:155.510835px;}
.x6d_c00363{left:157.876935px;}
.x53_c00363{left:161.881485px;}
.x37_c00363{left:164.207985px;}
.x6c_c00363{left:170.613285px;}
.x2e_c00363{left:173.167485px;}
.x96_c00363{left:181.993335px;}
.x83_c00363{left:184.597035px;}
.x8_c00363{left:185.799885px;}
.x8c_c00363{left:186.903735px;}
.x38_c00363{left:188.363985px;}
.x6e_c00363{left:189.398535px;}
.x40_c00363{left:196.962135px;}
.x72_c00363{left:201.001335px;}
.x5b_c00363{left:206.654235px;}
.x9_c00363{left:207.946185px;}
.x8d_c00363{left:209.020335px;}
.x41_c00363{left:210.406335px;}
.x5c_c00363{left:217.742235px;}
.x22_c00363{left:219.286635px;}
.x91_c00363{left:220.598385px;}
.x57_c00363{left:228.790635px;}
.xa_c00363{left:230.384535px;}
.x4_c00363{left:232.438785px;}
.x2f_c00363{left:240.195435px;}
.x39_c00363{left:241.279485px;}
.x89_c00363{left:242.467485px;}
.x18_c00363{left:252.347685px;}
.xb_c00363{left:253.496085px;}
.x42_c00363{left:262.960485px;}
.x92_c00363{left:264.138585px;}
.x7c_c00363{left:267.316485px;}
.x76_c00363{left:273.484185px;}
.x23_c00363{left:274.820685px;}
.x8e_c00363{left:278.335185px;}
.x84_c00363{left:285.943335px;}
.xc_c00363{left:287.512485px;}
.x24_c00363{left:296.665035px;}
.x90_c00363{left:298.362885px;}
.x30_c00363{left:307.515435px;}
.x25_c00363{left:318.405435px;}
.x79_c00363{left:320.746785px;}
.x5d_c00363{left:330.191385px;}
.x4a_c00363{left:335.557185px;}
.x73_c00363{left:338.012385px;}
.x19_c00363{left:340.616085px;}
.x54_c00363{left:342.234735px;}
.x7a_c00363{left:348.550935px;}
.x43_c00363{left:350.679435px;}
.x1a_c00363{left:352.105035px;}
.x26_c00363{left:363.356385px;}
.x55_c00363{left:364.385985px;}
.x85_c00363{left:370.994235px;}
.x3a_c00363{left:373.875135px;}
.x5e_c00363{left:375.073035px;}
.x87_c00363{left:386.423385px;}
.x77_c00363{left:387.631185px;}
.xd_c00363{left:395.971935px;}
.x4b_c00363{left:397.442085px;}
.x6f_c00363{left:407.629185px;}
.x86_c00363{left:408.851835px;}
.x7b_c00363{left:417.311385px;}
.x1b_c00363{left:418.870635px;}
.x78_c00363{left:423.231585px;}
.xe_c00363{left:429.062685px;}
.x4c_c00363{left:430.522935px;}
.x31_c00363{left:433.725585px;}
.x74_c00363{left:439.408185px;}
.x4d_c00363{left:440.497185px;}
.x93_c00363{left:442.001985px;}
.xf_c00363{left:450.426885px;}
.x4e_c00363{left:451.545585px;}
.x88_c00363{left:454.144335px;}
.x5f_c00363{left:461.826735px;}
.x44_c00363{left:463.098885px;}
.x80_c00363{left:467.420235px;}
.x4f_c00363{left:469.726935px;}
.x27_c00363{left:473.157285px;}
.x50_c00363{left:474.711585px;}
.x1c_c00363{left:484.492785px;}
.x7d_c00363{left:488.373585px;}
.x1d_c00363{left:489.675435px;}
.x32_c00363{left:494.308635px;}
.x8a_c00363{left:495.744135px;}
.x97_c00363{left:499.664535px;}
.x3b_c00363{left:506.950935px;}
.x56_c00363{left:510.242685px;}
.x98_c00363{left:517.860735px;}
.x10_c00363{left:518.974485px;}
.x28_c00363{left:528.691335px;}
.x3c_c00363{left:530.428785px;}
.x1e_c00363{left:541.076235px;}
.x11_c00363{left:551.857335px;}
.x29_c00363{left:562.138485px;}
.x94_c00363{left:570.652485px;}
.x12_c00363{left:573.073035px;}
.x45_c00363{left:576.478635px;}
.x8f_c00363{left:580.151535px;}
.x60_c00363{left:583.304685px;}
.x51_c00363{left:584.611485px;}
.x61_c00363{left:587.230035px;}
.x3d_c00363{left:594.778785px;}
.x13_c00363{left:596.031135px;}
.x95_c00363{left:597.644835px;}
.x1f_c00363{left:602.980935px;}
.x48_c00363{left:604.792635px;}
.x66_c00363{left:605.901435px;}
.x7e_c00363{left:606.921135px;}
.x67_c00363{left:613.816485px;}
.x8b_c00363{left:616.118235px;}
.x3e_c00363{left:617.469585px;}
.x62_c00363{left:619.053585px;}
.x63_c00363{left:620.840535px;}
.x14_c00363{left:628.473435px;}
.x64_c00363{left:631.532535px;}
.x65_c00363{left:632.958135px;}
.x68_c00363{left:634.264935px;}
.x20_c00363{left:639.888135px;}
.x46_c00363{left:642.937335px;}
.x2a_c00363{left:650.213835px;}
.x52_c00363{left:651.238485px;}
.x2b_c00363{left:654.337185px;}
.x15_c00363{left:662.291835px;}
.x69_c00363{left:664.588635px;}
.x2_c00363{left:672.226485px;}
.x70_c00363{left:673.369935px;}
.x6a_c00363{left:682.765035px;}
.x7f_c00363{left:684.794535px;}
.x47_c00363{left:687.125985px;}
.x3_c00363{left:694.704435px;}
.x21_c00363{left:705.822135px;}
.x3f_c00363{left:716.860635px;}
.x58_c00363{left:728.196135px;}
.x82_c00363{left:739.269285px;}
.x81_c00363{left:750.703785px;}
@media print{
.v0_c00363{vertical-align:0.000000pt;}
.v3_c00363{vertical-align:2.527360pt;}
.v4_c00363{vertical-align:3.784000pt;}
.v2_c00363{vertical-align:6.353600pt;}
.v1_c00363{vertical-align:39.300800pt;}
.ls3d_c00363{letter-spacing:-2.636480pt;}
.ls48_c00363{letter-spacing:-2.365446pt;}
.ls2e_c00363{letter-spacing:-2.310000pt;}
.lsd_c00363{letter-spacing:-2.248400pt;}
.ls1b_c00363{letter-spacing:-2.055680pt;}
.ls42_c00363{letter-spacing:-2.049256pt;}
.lse_c00363{letter-spacing:-1.977360pt;}
.ls34_c00363{letter-spacing:-1.897280pt;}
.ls39_c00363{letter-spacing:-1.490726pt;}
.ls1c_c00363{letter-spacing:-1.387584pt;}
.ls27_c00363{letter-spacing:-1.207360pt;}
.ls2b_c00363{letter-spacing:-1.139600pt;}
.ls16_c00363{letter-spacing:-0.973280pt;}
.ls3c_c00363{letter-spacing:-0.798339pt;}
.ls36_c00363{letter-spacing:-0.794640pt;}
.ls2a_c00363{letter-spacing:-0.696080pt;}
.ls1d_c00363{letter-spacing:-0.417120pt;}
.lsb_c00363{letter-spacing:0.000000pt;}
.ls17_c00363{letter-spacing:0.016685pt;}
.ls7_c00363{letter-spacing:0.269808pt;}
.ls49_c00363{letter-spacing:0.334048pt;}
.ls33_c00363{letter-spacing:0.369600pt;}
.ls2_c00363{letter-spacing:0.778747pt;}
.ls26_c00363{letter-spacing:0.783200pt;}
.ls23_c00363{letter-spacing:0.971678pt;}
.ls29_c00363{letter-spacing:0.994400pt;}
.ls28_c00363{letter-spacing:1.091200pt;}
.ls35_c00363{letter-spacing:1.126400pt;}
.ls37_c00363{letter-spacing:1.135200pt;}
.lsf_c00363{letter-spacing:1.156320pt;}
.ls25_c00363{letter-spacing:1.196800pt;}
.ls5_c00363{letter-spacing:1.259104pt;}
.lsa_c00363{letter-spacing:1.330190pt;}
.ls15_c00363{letter-spacing:1.390400pt;}
.ls47_c00363{letter-spacing:1.464672pt;}
.ls3e_c00363{letter-spacing:2.041609pt;}
.ls22_c00363{letter-spacing:2.103200pt;}
.ls3b_c00363{letter-spacing:2.129609pt;}
.ls20_c00363{letter-spacing:2.182400pt;}
.ls6_c00363{letter-spacing:2.197008pt;}
.ls38_c00363{letter-spacing:2.217609pt;}
.ls21_c00363{letter-spacing:2.252800pt;}
.ls13_c00363{letter-spacing:2.323200pt;}
.ls4a_c00363{letter-spacing:2.349609pt;}
.ls4b_c00363{letter-spacing:2.376000pt;}
.ls41_c00363{letter-spacing:2.499200pt;}
.ls14_c00363{letter-spacing:2.518208pt;}
.ls8_c00363{letter-spacing:2.524632pt;}
.ls1e_c00363{letter-spacing:2.613609pt;}
.ls0_c00363{letter-spacing:2.730200pt;}
.ls2f_c00363{letter-spacing:2.791800pt;}
.ls44_c00363{letter-spacing:2.851209pt;}
.ls19_c00363{letter-spacing:2.974400pt;}
.ls45_c00363{letter-spacing:3.036000pt;}
.ls32_c00363{letter-spacing:3.088800pt;}
.ls30_c00363{letter-spacing:3.097609pt;}
.ls12_c00363{letter-spacing:3.176800pt;}
.lsc_c00363{letter-spacing:3.212000pt;}
.ls2d_c00363{letter-spacing:3.300000pt;}
.ls3f_c00363{letter-spacing:3.361609pt;}
.ls9_c00363{letter-spacing:3.634400pt;}
.ls10_c00363{letter-spacing:8.870576pt;}
.ls18_c00363{letter-spacing:11.404976pt;}
.ls1f_c00363{letter-spacing:13.939376pt;}
.ls1_c00363{letter-spacing:16.755552pt;}
.ls2c_c00363{letter-spacing:19.008000pt;}
.ls4_c00363{letter-spacing:21.070720pt;}
.ls24_c00363{letter-spacing:21.542576pt;}
.ls40_c00363{letter-spacing:22.809776pt;}
.ls3a_c00363{letter-spacing:32.947376pt;}
.ls31_c00363{letter-spacing:39.283376pt;}
.ls46_c00363{letter-spacing:43.084976pt;}
.ls1a_c00363{letter-spacing:44.352176pt;}
.ls43_c00363{letter-spacing:45.619376pt;}
.ls11_c00363{letter-spacing:51.955376pt;}
.ls3_c00363{letter-spacing:214.688965pt;}
.ws1_c00363{word-spacing:-18.790200pt;}
.wsd_c00363{word-spacing:-17.319104pt;}
.ws0_c00363{word-spacing:-16.060000pt;}
.ws8_c00363{word-spacing:-15.444000pt;}
.wsc_c00363{word-spacing:-14.010744pt;}
.ws6_c00363{word-spacing:-3.636160pt;}
.wse_c00363{word-spacing:0.000000pt;}
.ws3_c00363{word-spacing:3.984640pt;}
.ws5_c00363{word-spacing:4.048000pt;}
.ws2_c00363{word-spacing:5.010720pt;}
.ws4_c00363{word-spacing:5.267680pt;}
.ws7_c00363{word-spacing:5.940000pt;}
.wsb_c00363{word-spacing:13.958419pt;}
.wsa_c00363{word-spacing:81.747776pt;}
.ws9_c00363{word-spacing:102.995200pt;}
._24_c00363{margin-left:-15.814832pt;}
._18_c00363{margin-left:-12.330384pt;}
._1f_c00363{margin-left:-10.599600pt;}
._11_c00363{margin-left:-8.208992pt;}
._15_c00363{margin-left:-5.888784pt;}
._6_c00363{margin-left:-4.753760pt;}
._1c_c00363{margin-left:-2.490752pt;}
._2_c00363{margin-left:-1.149280pt;}
._4_c00363{width:2.376880pt;}
._c_c00363{width:3.725920pt;}
._16_c00363{width:5.172992pt;}
._1_c00363{width:6.552480pt;}
._3_c00363{width:7.451840pt;}
._0_c00363{width:8.479680pt;}
._1d_c00363{width:9.636000pt;}
._7_c00363{width:10.663840pt;}
._b_c00363{width:12.142240pt;}
._1b_c00363{width:15.085312pt;}
._9_c00363{width:18.758080pt;}
._8_c00363{width:20.042880pt;}
._13_c00363{width:21.520400pt;}
._14_c00363{width:23.383360pt;}
._23_c00363{width:25.711840pt;}
._f_c00363{width:26.827328pt;}
._17_c00363{width:28.299920pt;}
._1a_c00363{width:29.427200pt;}
._12_c00363{width:32.030240pt;}
._20_c00363{width:33.982960pt;}
._a_c00363{width:35.332000pt;}
._1e_c00363{width:36.552560pt;}
._10_c00363{width:37.475328pt;}
._5_c00363{width:40.034720pt;}
._22_c00363{width:41.284320pt;}
._21_c00363{width:45.772320pt;}
._19_c00363{width:49.905152pt;}
._e_c00363{width:52.416525pt;}
._d_c00363{width:87.912000pt;}
.fs2d_c00363{font-size:7.392000pt;}
.fs5_c00363{font-size:8.870576pt;}
.fse_c00363{font-size:11.404976pt;}
.fs15_c00363{font-size:13.939376pt;}
.fs1e_c00363{font-size:15.664000pt;}
.fs28_c00363{font-size:19.008000pt;}
.fs22_c00363{font-size:19.712000pt;}
.fs25_c00363{font-size:19.888000pt;}
.fs1c_c00363{font-size:21.542576pt;}
.fs21_c00363{font-size:21.824000pt;}
.fs2f_c00363{font-size:22.528000pt;}
.fs31_c00363{font-size:22.704000pt;}
.fs3b_c00363{font-size:22.809776pt;}
.fs1d_c00363{font-size:23.936000pt;}
.fs13_c00363{font-size:24.640000pt;}
.fs4_c00363{font-size:24.992000pt;}
.fs9_c00363{font-size:25.168000pt;}
.fs1f_c00363{font-size:25.344000pt;}
.fsc_c00363{font-size:27.808000pt;}
.fsb_c00363{font-size:29.392176pt;}
.fs18_c00363{font-size:29.920000pt;}
.fs30_c00363{font-size:30.800000pt;}
.fs32_c00363{font-size:31.856000pt;}
.fs27_c00363{font-size:32.560000pt;}
.fs26_c00363{font-size:32.736000pt;}
.fs34_c00363{font-size:32.947376pt;}
.fs20_c00363{font-size:34.496000pt;}
.fs23_c00363{font-size:34.848000pt;}
.fs11_c00363{font-size:35.200000pt;}
.fs2b_c00363{font-size:39.283376pt;}
.fs1_c00363{font-size:40.128000pt;}
.fs39_c00363{font-size:40.832176pt;}
.fs1b_c00363{font-size:42.064000pt;}
.fs33_c00363{font-size:42.592176pt;}
.fs35_c00363{font-size:42.944000pt;}
.fs41_c00363{font-size:43.084976pt;}
.fs17_c00363{font-size:43.648000pt;}
.fs10_c00363{font-size:44.352176pt;}
.fs1a_c00363{font-size:45.056000pt;}
.fs3e_c00363{font-size:45.619376pt;}
.fsa_c00363{font-size:46.464000pt;}
.fs44_c00363{font-size:46.992176pt;}
.fs45_c00363{font-size:47.520000pt;}
.fsd_c00363{font-size:47.872176pt;}
.fs3d_c00363{font-size:49.984000pt;}
.fs6_c00363{font-size:51.955376pt;}
.fs14_c00363{font-size:52.272176pt;}
.fs2e_c00363{font-size:54.208000pt;}
.fs12_c00363{font-size:55.616000pt;}
.fs3_c00363{font-size:56.496000pt;}
.fs3f_c00363{font-size:57.024176pt;}
.fs24_c00363{font-size:57.200000pt;}
.fsf_c00363{font-size:59.136000pt;}
.fs8_c00363{font-size:59.488000pt;}
.fs40_c00363{font-size:60.720000pt;}
.fs2c_c00363{font-size:61.776000pt;}
.fs2a_c00363{font-size:61.952176pt;}
.fs38_c00363{font-size:63.008000pt;}
.fs7_c00363{font-size:63.536000pt;}
.fs2_c00363{font-size:64.240000pt;}
.fs29_c00363{font-size:66.000000pt;}
.fs19_c00363{font-size:66.528000pt;}
.fs3a_c00363{font-size:67.232176pt;}
.fs43_c00363{font-size:67.584176pt;}
.fs0_c00363{font-size:72.688000pt;}
.fs36_c00363{font-size:75.328000pt;}
.fs16_c00363{font-size:76.736000pt;}
.fs42_c00363{font-size:89.056000pt;}
.fs3c_c00363{font-size:92.928000pt;}
.fs37_c00363{font-size:125.312176pt;}
.y0_c00363{bottom:0.000000pt;}
.y1_c00363{bottom:68.000000pt;}
.y47_c00363{bottom:121.889720pt;}
.y45_c00363{bottom:122.523320pt;}
.y44_c00363{bottom:122.835720pt;}
.y46_c00363{bottom:131.710520pt;}
.y43_c00363{bottom:150.084920pt;}
.y42_c00363{bottom:181.764920pt;}
.y40_c00363{bottom:182.081720pt;}
.y3f_c00363{bottom:182.394120pt;}
.y41_c00363{bottom:185.883320pt;}
.y3e_c00363{bottom:211.860920pt;}
.y3d_c00363{bottom:240.689720pt;}
.y3c_c00363{bottom:270.147720pt;}
.y3b_c00363{bottom:283.140920pt;}
.y3a_c00363{bottom:299.614520pt;}
.y39_c00363{bottom:357.267720pt;}
.y32_c00363{bottom:380.394120pt;}
.y37_c00363{bottom:383.883320pt;}
.y38_c00363{bottom:384.833720pt;}
.y31_c00363{bottom:386.100920pt;}
.y35_c00363{bottom:386.413320pt;}
.y30_c00363{bottom:390.536120pt;}
.y2f_c00363{bottom:392.432520pt;}
.y34_c00363{bottom:410.173320pt;}
.y2e_c00363{bottom:411.128120pt;}
.y36_c00363{bottom:414.612920pt;}
.y2b_c00363{bottom:414.929720pt;}
.y2d_c00363{bottom:415.246520pt;}
.y2c_c00363{bottom:415.875720pt;}
.y33_c00363{bottom:425.700920pt;}
.y29_c00363{bottom:444.387720pt;}
.y2a_c00363{bottom:445.654920pt;}
.y28_c00363{bottom:445.976120pt;}
.y27_c00363{bottom:448.827320pt;}
.y26_c00363{bottom:450.406920pt;}
.y25_c00363{bottom:474.804920pt;}
.y24_c00363{bottom:492.228920pt;}
.y21_c00363{bottom:501.732920pt;}
.y1f_c00363{bottom:502.045320pt;}
.y1e_c00363{bottom:502.366520pt;}
.y23_c00363{bottom:503.312520pt;}
.y22_c00363{bottom:504.896520pt;}
.y20_c00363{bottom:508.698120pt;}
.y1d_c00363{bottom:525.805320pt;}
.y1c_c00363{bottom:530.561720pt;}
.y1b_c00363{bottom:544.179720pt;}
.y1a_c00363{bottom:559.069320pt;}
.y19_c00363{bottom:571.112120pt;}
.y18_c00363{bottom:591.387320pt;}
.y14_c00363{bottom:617.994120pt;}
.y12_c00363{bottom:619.578120pt;}
.y17_c00363{bottom:619.899320pt;}
.y15_c00363{bottom:620.216120pt;}
.y13_c00363{bottom:620.845320pt;}
.y16_c00363{bottom:628.452920pt;}
.y10_c00363{bottom:648.406920pt;}
.y11_c00363{bottom:649.044920pt;}
.yf_c00363{bottom:674.388920pt;}
.yd_c00363{bottom:677.552520pt;}
.ye_c00363{bottom:677.869320pt;}
.yc_c00363{bottom:703.534520pt;}
.ya_c00363{bottom:706.698120pt;}
.yb_c00363{bottom:707.019320pt;}
.y8_c00363{bottom:737.105640pt;}
.y9_c00363{bottom:737.110920pt;}
.y7_c00363{bottom:794.456120pt;}
.y6_c00363{bottom:819.166520pt;}
.y4_c00363{bottom:822.963720pt;}
.y5_c00363{bottom:823.284920pt;}
.y3_c00363{bottom:838.486920pt;}
.y2_c00363{bottom:962.989320pt;}
.h8_c00363{height:5.907804pt;}
.h31_c00363{height:7.254844pt;}
.h32_c00363{height:7.449750pt;}
.h10_c00363{height:7.595714pt;}
.h18_c00363{height:9.283624pt;}
.h2b_c00363{height:12.659328pt;}
.h1f_c00363{height:14.347356pt;}
.h40_c00363{height:15.191311pt;}
.h22_c00363{height:16.337063pt;}
.h28_c00363{height:19.518984pt;}
.h25_c00363{height:20.559000pt;}
.h39_c00363{height:21.942952pt;}
.h34_c00363{height:22.110000pt;}
.h24_c00363{height:22.761750pt;}
.h36_c00363{height:23.679563pt;}
.h6_c00363{height:24.528281pt;}
.h21_c00363{height:24.964500pt;}
.h16_c00363{height:25.698750pt;}
.h2f_c00363{height:26.162728pt;}
.h46_c00363{height:28.694594pt;}
.he_c00363{height:29.002875pt;}
.h1b_c00363{height:29.364844pt;}
.h13_c00363{height:29.538549pt;}
.h35_c00363{height:30.228516pt;}
.h43_c00363{height:30.382504pt;}
.h2a_c00363{height:31.955859pt;}
.h23_c00363{height:33.855938pt;}
.h29_c00363{height:34.142625pt;}
.h26_c00363{height:34.201406pt;}
.h9_c00363{height:34.602280pt;}
.h4b_c00363{height:35.978250pt;}
.h14_c00363{height:36.712500pt;}
.h1e_c00363{height:41.283516pt;}
.h3_c00363{height:41.852250pt;}
.h3e_c00363{height:42.586684pt;}
.h1a_c00363{height:42.838125pt;}
.h37_c00363{height:43.529235pt;}
.h1d_c00363{height:44.220000pt;}
.h38_c00363{height:44.422309pt;}
.h3a_c00363{height:44.789250pt;}
.hc_c00363{height:45.601875pt;}
.h49_c00363{height:46.120251pt;}
.h4a_c00363{height:46.638281pt;}
.hf_c00363{height:46.983923pt;}
.h17_c00363{height:51.302282pt;}
.h42_c00363{height:52.131750pt;}
.h33_c00363{height:56.537250pt;}
.h15_c00363{height:58.005750pt;}
.h12_c00363{height:58.384219pt;}
.h5_c00363{height:58.923563pt;}
.h44_c00363{height:59.474434pt;}
.h45_c00363{height:59.593359pt;}
.h27_c00363{height:59.657812pt;}
.h30_c00363{height:60.629766pt;}
.h11_c00363{height:61.677000pt;}
.h3d_c00363{height:61.838906pt;}
.ha_c00363{height:62.357109pt;}
.h2e_c00363{height:62.436177pt;}
.h4_c00363{height:63.048047pt;}
.h7_c00363{height:63.069167pt;}
.h2c_c00363{height:64.775391pt;}
.h20_c00363{height:65.293594pt;}
.hb_c00363{height:65.550237pt;}
.h3f_c00363{height:65.984704pt;}
.h2d_c00363{height:66.220177pt;}
.h48_c00363{height:66.297173pt;}
.h1c_c00363{height:67.820954pt;}
.hd_c00363{height:69.401647pt;}
.h2_c00363{height:71.339297pt;}
.h3b_c00363{height:73.930313pt;}
.h19_c00363{height:75.312188pt;}
.h47_c00363{height:92.882625pt;}
.h41_c00363{height:96.921000pt;}
.h3c_c00363{height:130.696684pt;}
.h1_c00363{height:986.666667pt;}
.h0_c00363{height:1122.666667pt;}
.w1_c00363{width:689.333333pt;}
.w0_c00363{width:793.333333pt;}
.x0_c00363{left:0.000000pt;}
.x1_c00363{left:52.000000pt;}
.x16_c00363{left:86.113853pt;}
.x5_c00363{left:87.882653pt;}
.x59_c00363{left:88.828653pt;}
.x33_c00363{left:89.963853pt;}
.x34_c00363{left:99.463453pt;}
.x6_c00363{left:106.081053pt;}
.x2c_c00363{left:107.497853pt;}
.x35_c00363{left:109.284253pt;}
.x49_c00363{left:115.954653pt;}
.x71_c00363{left:117.666253pt;}
.x75_c00363{left:119.690253pt;}
.x2d_c00363{left:122.400653pt;}
.x5a_c00363{left:126.175853pt;}
.x36_c00363{left:127.979853pt;}
.x17_c00363{left:135.155813pt;}
.x7_c00363{left:136.520253pt;}
.x6b_c00363{left:138.231853pt;}
.x6d_c00363{left:140.335053pt;}
.x53_c00363{left:143.894653pt;}
.x37_c00363{left:145.962653pt;}
.x6c_c00363{left:151.656253pt;}
.x2e_c00363{left:153.926653pt;}
.x96_c00363{left:161.771853pt;}
.x83_c00363{left:164.086253pt;}
.x8_c00363{left:165.155453pt;}
.x8c_c00363{left:166.136653pt;}
.x38_c00363{left:167.434653pt;}
.x6e_c00363{left:168.354253pt;}
.x40_c00363{left:175.077453pt;}
.x72_c00363{left:178.667853pt;}
.x5b_c00363{left:183.692653pt;}
.x9_c00363{left:184.841053pt;}
.x8d_c00363{left:185.795853pt;}
.x41_c00363{left:187.027853pt;}
.x5c_c00363{left:193.548653pt;}
.x22_c00363{left:194.921453pt;}
.x91_c00363{left:196.087453pt;}
.x57_c00363{left:203.369453pt;}
.xa_c00363{left:204.786253pt;}
.x4_c00363{left:206.612253pt;}
.x2f_c00363{left:213.507053pt;}
.x39_c00363{left:214.470653pt;}
.x89_c00363{left:215.526653pt;}
.x18_c00363{left:224.309053pt;}
.xb_c00363{left:225.329853pt;}
.x42_c00363{left:233.742653pt;}
.x92_c00363{left:234.789853pt;}
.x7c_c00363{left:237.614653pt;}
.x76_c00363{left:243.097053pt;}
.x23_c00363{left:244.285053pt;}
.x8e_c00363{left:247.409053pt;}
.x84_c00363{left:254.171853pt;}
.xc_c00363{left:255.566653pt;}
.x24_c00363{left:263.702253pt;}
.x90_c00363{left:265.211453pt;}
.x30_c00363{left:273.347053pt;}
.x25_c00363{left:283.027053pt;}
.x79_c00363{left:285.108253pt;}
.x5d_c00363{left:293.503453pt;}
.x4a_c00363{left:298.273053pt;}
.x73_c00363{left:300.455453pt;}
.x19_c00363{left:302.769853pt;}
.x54_c00363{left:304.208653pt;}
.x7a_c00363{left:309.823053pt;}
.x43_c00363{left:311.715053pt;}
.x1a_c00363{left:312.982253pt;}
.x26_c00363{left:322.983453pt;}
.x55_c00363{left:323.898653pt;}
.x85_c00363{left:329.772653pt;}
.x3a_c00363{left:332.333453pt;}
.x5e_c00363{left:333.398253pt;}
.x87_c00363{left:343.487453pt;}
.x77_c00363{left:344.561053pt;}
.xd_c00363{left:351.975053pt;}
.x4b_c00363{left:353.281853pt;}
.x6f_c00363{left:362.337053pt;}
.x86_c00363{left:363.423853pt;}
.x7b_c00363{left:370.943453pt;}
.x1b_c00363{left:372.329453pt;}
.x78_c00363{left:376.205853pt;}
.xe_c00363{left:381.389053pt;}
.x4c_c00363{left:382.687053pt;}
.x31_c00363{left:385.533853pt;}
.x74_c00363{left:390.585053pt;}
.x4d_c00363{left:391.553053pt;}
.x93_c00363{left:392.890653pt;}
.xf_c00363{left:400.379453pt;}
.x4e_c00363{left:401.373853pt;}
.x88_c00363{left:403.683853pt;}
.x5f_c00363{left:410.512653pt;}
.x44_c00363{left:411.643453pt;}
.x80_c00363{left:415.484653pt;}
.x4f_c00363{left:417.535053pt;}
.x27_c00363{left:420.584253pt;}
.x50_c00363{left:421.965853pt;}
.x1c_c00363{left:430.660253pt;}
.x7d_c00363{left:434.109853pt;}
.x1d_c00363{left:435.267053pt;}
.x32_c00363{left:439.385453pt;}
.x8a_c00363{left:440.661453pt;}
.x97_c00363{left:444.146253pt;}
.x3b_c00363{left:450.623053pt;}
.x56_c00363{left:453.549053pt;}
.x98_c00363{left:460.320653pt;}
.x10_c00363{left:461.310653pt;}
.x28_c00363{left:469.947853pt;}
.x3c_c00363{left:471.492253pt;}
.x1e_c00363{left:480.956653pt;}
.x11_c00363{left:490.539853pt;}
.x29_c00363{left:499.678653pt;}
.x94_c00363{left:507.246653pt;}
.x12_c00363{left:509.398253pt;}
.x45_c00363{left:512.425453pt;}
.x8f_c00363{left:515.690253pt;}
.x60_c00363{left:518.493053pt;}
.x51_c00363{left:519.654653pt;}
.x61_c00363{left:521.982253pt;}
.x3d_c00363{left:528.692253pt;}
.x13_c00363{left:529.805453pt;}
.x95_c00363{left:531.239853pt;}
.x1f_c00363{left:535.983053pt;}
.x48_c00363{left:537.593453pt;}
.x66_c00363{left:538.579053pt;}
.x7e_c00363{left:539.485453pt;}
.x67_c00363{left:545.614653pt;}
.x8b_c00363{left:547.660653pt;}
.x3e_c00363{left:548.861853pt;}
.x62_c00363{left:550.269853pt;}
.x63_c00363{left:551.858253pt;}
.x14_c00363{left:558.643053pt;}
.x64_c00363{left:561.362253pt;}
.x65_c00363{left:562.629453pt;}
.x68_c00363{left:563.791053pt;}
.x20_c00363{left:568.789453pt;}
.x46_c00363{left:571.499853pt;}
.x2a_c00363{left:577.967853pt;}
.x52_c00363{left:578.878653pt;}
.x2b_c00363{left:581.633053pt;}
.x15_c00363{left:588.703853pt;}
.x69_c00363{left:590.745453pt;}
.x2_c00363{left:597.534653pt;}
.x70_c00363{left:598.551053pt;}
.x6a_c00363{left:606.902253pt;}
.x7f_c00363{left:608.706253pt;}
.x47_c00363{left:610.778653pt;}
.x3_c00363{left:617.515053pt;}
.x21_c00363{left:627.397453pt;}
.x3f_c00363{left:637.209453pt;}
.x58_c00363{left:647.285453pt;}
.x82_c00363{left:657.128253pt;}
.x81_c00363{left:667.292253pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1ee528f851c887fb0dfecf38.woff2')format("woff");}.ff1_c00364{font-family:ff1_c00364;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00364;src:url('chunks/assets/font_997ed1518f0b668e4fed679c.woff2')format("woff");}.ff2_c00364{font-family:ff2_c00364;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00364;src:url('chunks/assets/font_2908eb68e4b54bba6fe6625d.woff2')format("woff");}.ff3_c00364{font-family:ff3_c00364;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00364;src:url('chunks/assets/font_f1b5c6fab75c66e3a5922ce1.woff2')format("woff");}.ff4_c00364{font-family:ff4_c00364;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mdc_c00364{transform:matrix(0.050001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050001,0.000000,0.000000,0.250000,0,0);}
.m91_c00364{transform:matrix(0.053031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053031,0.000000,0.000000,0.250000,0,0);}
.m64_c00364{transform:matrix(0.089285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089285,0.000000,0.000000,0.250000,0,0);}
.m7_c00364{transform:matrix(0.090820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090820,0.000000,0.000000,0.250000,0,0);}
.mbe_c00364{transform:matrix(0.104620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104620,0.000000,0.000000,0.250000,0,0);}
.mdb_c00364{transform:matrix(0.142858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142858,0.000000,0.000000,0.250000,0,0);}
.mcc_c00364{transform:matrix(0.144421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144421,0.000000,0.000000,0.250000,0,0);}
.m92_c00364{transform:matrix(0.151516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151516,0.000000,0.000000,0.250000,0,0);}
.m72_c00364{transform:matrix(0.185410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185410,0.000000,0.000000,0.250000,0,0);}
.m81_c00364{transform:matrix(0.193566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193566,0.000000,0.000000,0.250000,0,0);}
.mcb_c00364{transform:matrix(0.200016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200016,0.000000,0.000000,0.250000,0,0);}
.m7f_c00364{transform:matrix(0.200153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200153,0.000000,0.000000,0.250000,0,0);}
.m29_c00364{transform:matrix(0.200217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200217,0.000000,0.000000,0.250000,0,0);}
.m7b_c00364{transform:matrix(0.203844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203844,0.000000,0.000000,0.250000,0,0);}
.m85_c00364{transform:matrix(0.208620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208620,0.000000,0.000000,0.250000,0,0);}
.m5e_c00364{transform:matrix(0.211045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211045,0.000000,0.000000,0.250000,0,0);}
.m61_c00364{transform:matrix(0.212590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212590,0.000000,0.000000,0.250000,0,0);}
.m4_c00364{transform:matrix(0.212866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212866,0.000000,0.000000,0.250000,0,0);}
.m65_c00364{transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);}
.m2c_c00364{transform:matrix(0.222566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222566,0.000000,0.000000,0.250000,0,0);}
.m18_c00364{transform:matrix(0.222809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222809,0.000000,0.000000,0.250000,0,0);}
.m93_c00364{transform:matrix(0.226011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226011,0.000000,0.000000,0.250000,0,0);}
.m6c_c00364{transform:matrix(0.238179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238179,0.000000,0.000000,0.250000,0,0);}
.m80_c00364{transform:matrix(0.244410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244410,0.000000,0.000000,0.250000,0,0);}
.m0_c00364{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m76_c00364{transform:matrix(0.252134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252134,0.000000,0.000000,0.250000,0,0);}
.m2_c00364{transform:matrix(0.254818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254818,0.000000,0.000000,0.250000,0,0);}
.mb8_c00364{transform:matrix(0.256008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256008,0.000000,0.000000,0.250000,0,0);}
.m36_c00364{transform:matrix(0.257788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257788,0.000000,0.000000,0.250000,0,0);}
.m7d_c00364{transform:matrix(0.259132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259132,0.000000,0.000000,0.250000,0,0);}
.m40_c00364{transform:matrix(0.260132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260132,0.000000,0.000000,0.250000,0,0);}
.ma4_c00364{transform:matrix(0.260383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260383,0.000000,0.000000,0.250000,0,0);}
.m50_c00364{transform:matrix(0.262400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262400,0.000000,0.000000,0.250000,0,0);}
.m2d_c00364{transform:matrix(0.262404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262404,0.000000,0.000000,0.250000,0,0);}
.m97_c00364{transform:matrix(0.263569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263569,0.000000,0.000000,0.250000,0,0);}
.m88_c00364{transform:matrix(0.263708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263708,0.000000,0.000000,0.250000,0,0);}
.m11_c00364{transform:matrix(0.263843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263843,0.000000,0.000000,0.250000,0,0);}
.m8a_c00364{transform:matrix(0.264999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264999,0.000000,0.000000,0.250000,0,0);}
.m55_c00364{transform:matrix(0.265289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265289,0.000000,0.000000,0.250000,0,0);}
.m12_c00364{transform:matrix(0.266350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266350,0.000000,0.000000,0.250000,0,0);}
.m45_c00364{transform:matrix(0.268492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268492,0.000000,0.000000,0.250000,0,0);}
.m58_c00364{transform:matrix(0.268555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268555,0.000000,0.000000,0.250000,0,0);}
.m13_c00364{transform:matrix(0.268638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268638,0.000000,0.000000,0.250000,0,0);}
.ma1_c00364{transform:matrix(0.273014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273014,0.000000,0.000000,0.250000,0,0);}
.m41_c00364{transform:matrix(0.273707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273707,0.000000,0.000000,0.250000,0,0);}
.m87_c00364{transform:matrix(0.275079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275079,0.000000,0.000000,0.250000,0,0);}
.md9_c00364{transform:matrix(0.275643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275643,0.000000,0.000000,0.250000,0,0);}
.m54_c00364{transform:matrix(0.276221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276221,0.000000,0.000000,0.250000,0,0);}
.mae_c00364{transform:matrix(0.276473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276473,0.000000,0.000000,0.250000,0,0);}
.mc5_c00364{transform:matrix(0.277984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277984,0.000000,0.000000,0.250000,0,0);}
.mda_c00364{transform:matrix(0.279278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279278,0.000000,0.000000,0.250000,0,0);}
.mac_c00364{transform:matrix(0.279434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279434,0.000000,0.000000,0.250000,0,0);}
.mb3_c00364{transform:matrix(0.279501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279501,0.000000,0.000000,0.250000,0,0);}
.m5f_c00364{transform:matrix(0.279879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279879,0.000000,0.000000,0.250000,0,0);}
.maa_c00364{transform:matrix(0.279907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279907,0.000000,0.000000,0.250000,0,0);}
.m8d_c00364{transform:matrix(0.280297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280297,0.000000,0.000000,0.250000,0,0);}
.mcd_c00364{transform:matrix(0.280612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280612,0.000000,0.000000,0.250000,0,0);}
.mf_c00364{transform:matrix(0.280655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280655,0.000000,0.000000,0.250000,0,0);}
.md5_c00364{transform:matrix(0.280721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280721,0.000000,0.000000,0.250000,0,0);}
.m94_c00364{transform:matrix(0.281045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281045,0.000000,0.000000,0.250000,0,0);}
.m74_c00364{transform:matrix(0.281242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281242,0.000000,0.000000,0.250000,0,0);}
.m73_c00364{transform:matrix(0.282594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282594,0.000000,0.000000,0.250000,0,0);}
.m83_c00364{transform:matrix(0.282889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282889,0.000000,0.000000,0.250000,0,0);}
.m26_c00364{transform:matrix(0.283124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283124,0.000000,0.000000,0.250000,0,0);}
.m19_c00364{transform:matrix(0.283303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283303,0.000000,0.000000,0.250000,0,0);}
.m9_c00364{transform:matrix(0.283749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283749,0.000000,0.000000,0.250000,0,0);}
.mc_c00364{transform:matrix(0.283756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283756,0.000000,0.000000,0.250000,0,0);}
.m35_c00364{transform:matrix(0.283783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283783,0.000000,0.000000,0.250000,0,0);}
.m22_c00364{transform:matrix(0.284530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284530,0.000000,0.000000,0.250000,0,0);}
.m5_c00364{transform:matrix(0.285667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285667,0.000000,0.000000,0.250000,0,0);}
.m8f_c00364{transform:matrix(0.285668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285668,0.000000,0.000000,0.250000,0,0);}
.m7a_c00364{transform:matrix(0.285886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285886,0.000000,0.000000,0.250000,0,0);}
.mc3_c00364{transform:matrix(0.286265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286265,0.000000,0.000000,0.250000,0,0);}
.m47_c00364{transform:matrix(0.286342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286342,0.000000,0.000000,0.250000,0,0);}
.mb9_c00364{transform:matrix(0.286373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286373,0.000000,0.000000,0.250000,0,0);}
.mab_c00364{transform:matrix(0.287894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287894,0.000000,0.000000,0.250000,0,0);}
.md3_c00364{transform:matrix(0.287911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287911,0.000000,0.000000,0.250000,0,0);}
.m3b_c00364{transform:matrix(0.288697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288697,0.000000,0.000000,0.250000,0,0);}
.m46_c00364{transform:matrix(0.288823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288823,0.000000,0.000000,0.250000,0,0);}
.m25_c00364{transform:matrix(0.289210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289210,0.000000,0.000000,0.250000,0,0);}
.m84_c00364{transform:matrix(0.289899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289899,0.000000,0.000000,0.250000,0,0);}
.m2b_c00364{transform:matrix(0.290679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290679,0.000000,0.000000,0.250000,0,0);}
.m48_c00364{transform:matrix(0.290680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290680,0.000000,0.000000,0.250000,0,0);}
.mc8_c00364{transform:matrix(0.290740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290740,0.000000,0.000000,0.250000,0,0);}
.ma0_c00364{transform:matrix(0.291438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291438,0.000000,0.000000,0.250000,0,0);}
.md1_c00364{transform:matrix(0.291468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291468,0.000000,0.000000,0.250000,0,0);}
.m21_c00364{transform:matrix(0.292488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292488,0.000000,0.000000,0.250000,0,0);}
.m33_c00364{transform:matrix(0.293890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293890,0.000000,0.000000,0.250000,0,0);}
.m38_c00364{transform:matrix(0.294151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294151,0.000000,0.000000,0.250000,0,0);}
.m7c_c00364{transform:matrix(0.294347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294347,0.000000,0.000000,0.250000,0,0);}
.m75_c00364{transform:matrix(0.294643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294643,0.000000,0.000000,0.250000,0,0);}
.mc6_c00364{transform:matrix(0.294671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294671,0.000000,0.000000,0.250000,0,0);}
.m1e_c00364{transform:matrix(0.295533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295533,0.000000,0.000000,0.250000,0,0);}
.mdf_c00364{transform:matrix(0.295690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295690,0.000000,0.000000,0.250000,0,0);}
.m59_c00364{transform:matrix(0.296124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296124,0.000000,0.000000,0.250000,0,0);}
.m8b_c00364{transform:matrix(0.296655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296655,0.000000,0.000000,0.250000,0,0);}
.m6a_c00364{transform:matrix(0.296980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296980,0.000000,0.000000,0.250000,0,0);}
.m68_c00364{transform:matrix(0.297573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297573,0.000000,0.000000,0.250000,0,0);}
.m4d_c00364{transform:matrix(0.297992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297992,0.000000,0.000000,0.250000,0,0);}
.me1_c00364{transform:matrix(0.298157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298157,0.000000,0.000000,0.250000,0,0);}
.m8_c00364{transform:matrix(0.298875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298875,0.000000,0.000000,0.250000,0,0);}
.m3a_c00364{transform:matrix(0.299788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299788,0.000000,0.000000,0.250000,0,0);}
.mb2_c00364{transform:matrix(0.300007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300007,0.000000,0.000000,0.250000,0,0);}
.m3_c00364{transform:matrix(0.300636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300636,0.000000,0.000000,0.250000,0,0);}
.mbb_c00364{transform:matrix(0.300759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300759,0.000000,0.000000,0.250000,0,0);}
.m53_c00364{transform:matrix(0.301121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301121,0.000000,0.000000,0.250000,0,0);}
.me0_c00364{transform:matrix(0.301332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301332,0.000000,0.000000,0.250000,0,0);}
.m90_c00364{transform:matrix(0.301690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301690,0.000000,0.000000,0.250000,0,0);}
.ma9_c00364{transform:matrix(0.301800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301800,0.000000,0.000000,0.250000,0,0);}
.m9a_c00364{transform:matrix(0.302232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302232,0.000000,0.000000,0.250000,0,0);}
.m62_c00364{transform:matrix(0.303127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303127,0.000000,0.000000,0.250000,0,0);}
.md7_c00364{transform:matrix(0.303509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303509,0.000000,0.000000,0.250000,0,0);}
.m1d_c00364{transform:matrix(0.304159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304159,0.000000,0.000000,0.250000,0,0);}
.m52_c00364{transform:matrix(0.304395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304395,0.000000,0.000000,0.250000,0,0);}
.m56_c00364{transform:matrix(0.305529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305529,0.000000,0.000000,0.250000,0,0);}
.mc2_c00364{transform:matrix(0.305762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305762,0.000000,0.000000,0.250000,0,0);}
.mdd_c00364{transform:matrix(0.306058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306058,0.000000,0.000000,0.250000,0,0);}
.mad_c00364{transform:matrix(0.307215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307215,0.000000,0.000000,0.250000,0,0);}
.m1a_c00364{transform:matrix(0.307306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307306,0.000000,0.000000,0.250000,0,0);}
.m1f_c00364{transform:matrix(0.307873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307873,0.000000,0.000000,0.250000,0,0);}
.ma2_c00364{transform:matrix(0.308018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308018,0.000000,0.000000,0.250000,0,0);}
.m17_c00364{transform:matrix(0.308493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308493,0.000000,0.000000,0.250000,0,0);}
.m57_c00364{transform:matrix(0.308882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308882,0.000000,0.000000,0.250000,0,0);}
.maf_c00364{transform:matrix(0.309345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309345,0.000000,0.000000,0.250000,0,0);}
.m51_c00364{transform:matrix(0.309497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309497,0.000000,0.000000,0.250000,0,0);}
.m1b_c00364{transform:matrix(0.309871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309871,0.000000,0.000000,0.250000,0,0);}
.mc4_c00364{transform:matrix(0.309958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309958,0.000000,0.000000,0.250000,0,0);}
.m63_c00364{transform:matrix(0.310520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310520,0.000000,0.000000,0.250000,0,0);}
.md4_c00364{transform:matrix(0.311005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311005,0.000000,0.000000,0.250000,0,0);}
.mbc_c00364{transform:matrix(0.311188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311188,0.000000,0.000000,0.250000,0,0);}
.m9c_c00364{transform:matrix(0.311204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311204,0.000000,0.000000,0.250000,0,0);}
.m2e_c00364{transform:matrix(0.311424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311424,0.000000,0.000000,0.250000,0,0);}
.mb4_c00364{transform:matrix(0.312325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312325,0.000000,0.000000,0.250000,0,0);}
.m2a_c00364{transform:matrix(0.312566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312566,0.000000,0.000000,0.250000,0,0);}
.mbd_c00364{transform:matrix(0.313312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313312,0.000000,0.000000,0.250000,0,0);}
.m98_c00364{transform:matrix(0.314011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314011,0.000000,0.000000,0.250000,0,0);}
.md6_c00364{transform:matrix(0.314252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314252,0.000000,0.000000,0.250000,0,0);}
.mba_c00364{transform:matrix(0.314497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314497,0.000000,0.000000,0.250000,0,0);}
.m6f_c00364{transform:matrix(0.314713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314713,0.000000,0.000000,0.250000,0,0);}
.me_c00364{transform:matrix(0.315356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315356,0.000000,0.000000,0.250000,0,0);}
.md_c00364{transform:matrix(0.315697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315697,0.000000,0.000000,0.250000,0,0);}
.m49_c00364{transform:matrix(0.316173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316173,0.000000,0.000000,0.250000,0,0);}
.m7e_c00364{transform:matrix(0.316584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316584,0.000000,0.000000,0.250000,0,0);}
.m32_c00364{transform:matrix(0.317086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317086,0.000000,0.000000,0.250000,0,0);}
.m5d_c00364{transform:matrix(0.317568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317568,0.000000,0.000000,0.250000,0,0);}
.ma5_c00364{transform:matrix(0.317642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317642,0.000000,0.000000,0.250000,0,0);}
.m6d_c00364{transform:matrix(0.317960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317960,0.000000,0.000000,0.250000,0,0);}
.mc9_c00364{transform:matrix(0.319525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319525,0.000000,0.000000,0.250000,0,0);}
.m16_c00364{transform:matrix(0.319797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319797,0.000000,0.000000,0.250000,0,0);}
.m34_c00364{transform:matrix(0.322340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322340,0.000000,0.000000,0.250000,0,0);}
.m4b_c00364{transform:matrix(0.324560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324560,0.000000,0.000000,0.250000,0,0);}
.mca_c00364{transform:matrix(0.324649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324649,0.000000,0.000000,0.250000,0,0);}
.m69_c00364{transform:matrix(0.324958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324958,0.000000,0.000000,0.250000,0,0);}
.m95_c00364{transform:matrix(0.325624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325624,0.000000,0.000000,0.250000,0,0);}
.me2_c00364{transform:matrix(0.326370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326370,0.000000,0.000000,0.250000,0,0);}
.m4f_c00364{transform:matrix(0.327263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327263,0.000000,0.000000,0.250000,0,0);}
.m4c_c00364{transform:matrix(0.328058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328058,0.000000,0.000000,0.250000,0,0);}
.m5a_c00364{transform:matrix(0.328096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328096,0.000000,0.000000,0.250000,0,0);}
.mce_c00364{transform:matrix(0.328423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328423,0.000000,0.000000,0.250000,0,0);}
.m9f_c00364{transform:matrix(0.328490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328490,0.000000,0.000000,0.250000,0,0);}
.md2_c00364{transform:matrix(0.328697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328697,0.000000,0.000000,0.250000,0,0);}
.ma_c00364{transform:matrix(0.329250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00364{transform:matrix(0.329662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329662,0.000000,0.000000,0.250000,0,0);}
.m14_c00364{transform:matrix(0.330749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330749,0.000000,0.000000,0.250000,0,0);}
.m8e_c00364{transform:matrix(0.330942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330942,0.000000,0.000000,0.250000,0,0);}
.m42_c00364{transform:matrix(0.331025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331025,0.000000,0.000000,0.250000,0,0);}
.m2f_c00364{transform:matrix(0.331066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331066,0.000000,0.000000,0.250000,0,0);}
.mc1_c00364{transform:matrix(0.331279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331279,0.000000,0.000000,0.250000,0,0);}
.m43_c00364{transform:matrix(0.331587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331587,0.000000,0.000000,0.250000,0,0);}
.m3e_c00364{transform:matrix(0.332797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332797,0.000000,0.000000,0.250000,0,0);}
.m20_c00364{transform:matrix(0.334133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334133,0.000000,0.000000,0.250000,0,0);}
.m78_c00364{transform:matrix(0.334462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334462,0.000000,0.000000,0.250000,0,0);}
.mc7_c00364{transform:matrix(0.334786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334786,0.000000,0.000000,0.250000,0,0);}
.m9e_c00364{transform:matrix(0.334871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334871,0.000000,0.000000,0.250000,0,0);}
.m60_c00364{transform:matrix(0.334886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334886,0.000000,0.000000,0.250000,0,0);}
.me3_c00364{transform:matrix(0.335014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335014,0.000000,0.000000,0.250000,0,0);}
.m6b_c00364{transform:matrix(0.335367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335367,0.000000,0.000000,0.250000,0,0);}
.m4e_c00364{transform:matrix(0.335623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335623,0.000000,0.000000,0.250000,0,0);}
.m70_c00364{transform:matrix(0.338118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338118,0.000000,0.000000,0.250000,0,0);}
.m30_c00364{transform:matrix(0.338486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338486,0.000000,0.000000,0.250000,0,0);}
.m96_c00364{transform:matrix(0.339980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339980,0.000000,0.000000,0.250000,0,0);}
.m4a_c00364{transform:matrix(0.340216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340216,0.000000,0.000000,0.250000,0,0);}
.m15_c00364{transform:matrix(0.340404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340404,0.000000,0.000000,0.250000,0,0);}
.m27_c00364{transform:matrix(0.340834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340834,0.000000,0.000000,0.250000,0,0);}
.m3f_c00364{transform:matrix(0.341260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341260,0.000000,0.000000,0.250000,0,0);}
.md8_c00364{transform:matrix(0.341307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341307,0.000000,0.000000,0.250000,0,0);}
.mb5_c00364{transform:matrix(0.342175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342175,0.000000,0.000000,0.250000,0,0);}
.m39_c00364{transform:matrix(0.342689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342689,0.000000,0.000000,0.250000,0,0);}
.m9d_c00364{transform:matrix(0.342986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342986,0.000000,0.000000,0.250000,0,0);}
.m3c_c00364{transform:matrix(0.343505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343505,0.000000,0.000000,0.250000,0,0);}
.m77_c00364{transform:matrix(0.343957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343957,0.000000,0.000000,0.250000,0,0);}
.mb1_c00364{transform:matrix(0.344235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344235,0.000000,0.000000,0.250000,0,0);}
.mbf_c00364{transform:matrix(0.346636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346636,0.000000,0.000000,0.250000,0,0);}
.m89_c00364{transform:matrix(0.348178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348178,0.000000,0.000000,0.250000,0,0);}
.m5b_c00364{transform:matrix(0.350592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350592,0.000000,0.000000,0.250000,0,0);}
.me4_c00364{transform:matrix(0.350665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350665,0.000000,0.000000,0.250000,0,0);}
.ma8_c00364{transform:matrix(0.350691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350691,0.000000,0.000000,0.250000,0,0);}
.mb0_c00364{transform:matrix(0.351476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351476,0.000000,0.000000,0.250000,0,0);}
.m6e_c00364{transform:matrix(0.351710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351710,0.000000,0.000000,0.250000,0,0);}
.mc0_c00364{transform:matrix(0.352220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352220,0.000000,0.000000,0.250000,0,0);}
.m71_c00364{transform:matrix(0.353879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353879,0.000000,0.000000,0.250000,0,0);}
.m66_c00364{transform:matrix(0.354027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354027,0.000000,0.000000,0.250000,0,0);}
.m23_c00364{transform:matrix(0.354306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354306,0.000000,0.000000,0.250000,0,0);}
.m44_c00364{transform:matrix(0.354951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354951,0.000000,0.000000,0.250000,0,0);}
.m31_c00364{transform:matrix(0.355095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355095,0.000000,0.000000,0.250000,0,0);}
.m10_c00364{transform:matrix(0.355179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355179,0.000000,0.000000,0.250000,0,0);}
.m82_c00364{transform:matrix(0.360025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360025,0.000000,0.000000,0.250000,0,0);}
.mb_c00364{transform:matrix(0.360123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360123,0.000000,0.000000,0.250000,0,0);}
.m3d_c00364{transform:matrix(0.361525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361525,0.000000,0.000000,0.250000,0,0);}
.m8c_c00364{transform:matrix(0.362498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362498,0.000000,0.000000,0.250000,0,0);}
.m9b_c00364{transform:matrix(0.369052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369052,0.000000,0.000000,0.250000,0,0);}
.mb6_c00364{transform:matrix(0.370775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370775,0.000000,0.000000,0.250000,0,0);}
.m86_c00364{transform:matrix(0.373420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373420,0.000000,0.000000,0.250000,0,0);}
.m6_c00364{transform:matrix(0.377154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377154,0.000000,0.000000,0.250000,0,0);}
.m99_c00364{transform:matrix(0.378137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378137,0.000000,0.000000,0.250000,0,0);}
.ma7_c00364{transform:matrix(0.378386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378386,0.000000,0.000000,0.250000,0,0);}
.mb7_c00364{transform:matrix(0.378969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378969,0.000000,0.000000,0.250000,0,0);}
.ma3_c00364{transform:matrix(0.385964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385964,0.000000,0.000000,0.250000,0,0);}
.m1c_c00364{transform:matrix(0.393888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393888,0.000000,0.000000,0.250000,0,0);}
.m67_c00364{transform:matrix(0.394452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394452,0.000000,0.000000,0.250000,0,0);}
.ma6_c00364{transform:matrix(0.397150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397150,0.000000,0.000000,0.250000,0,0);}
.m28_c00364{transform:matrix(0.400604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400604,0.000000,0.000000,0.250000,0,0);}
.m5c_c00364{transform:matrix(0.405460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405460,0.000000,0.000000,0.250000,0,0);}
.m1_c00364{transform:matrix(0.405556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405556,0.000000,0.000000,0.250000,0,0);}
.md0_c00364{transform:matrix(0.406603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406603,0.000000,0.000000,0.250000,0,0);}
.mde_c00364{transform:matrix(0.418623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418623,0.000000,0.000000,0.250000,0,0);}
.m37_c00364{transform:matrix(0.444621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444621,0.000000,0.000000,0.250000,0,0);}
.m24_c00364{transform:matrix(0.450814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450814,0.000000,0.000000,0.250000,0,0);}
.m79_c00364{transform:matrix(0.452316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452316,0.000000,0.000000,0.250000,0,0);}
.v0_c00364{vertical-align:0.000000px;}
.v1_c00364{vertical-align:31.383000px;}
.ls8_c00364{letter-spacing:-2.529450px;}
.ls1b_c00364{letter-spacing:-2.312640px;}
.ls13_c00364{letter-spacing:-1.746367px;}
.lse_c00364{letter-spacing:-1.692405px;}
.ls14_c00364{letter-spacing:-0.918090px;}
.ls5_c00364{letter-spacing:0.000000px;}
.lsf_c00364{letter-spacing:0.542025px;}
.ls9_c00364{letter-spacing:0.932283px;}
.ls0_c00364{letter-spacing:1.033461px;}
.lsa_c00364{letter-spacing:1.055142px;}
.ls2_c00364{letter-spacing:1.582713px;}
.ls15_c00364{letter-spacing:1.907928px;}
.ls19_c00364{letter-spacing:2.103057px;}
.ls18_c00364{letter-spacing:2.124738px;}
.ls12_c00364{letter-spacing:2.494810px;}
.lsd_c00364{letter-spacing:2.603700px;}
.ls10_c00364{letter-spacing:3.078702px;}
.lsb_c00364{letter-spacing:3.396690px;}
.lsc_c00364{letter-spacing:3.455110px;}
.ls17_c00364{letter-spacing:3.603610px;}
.ls7_c00364{letter-spacing:3.613500px;}
.ls6_c00364{letter-spacing:3.682810px;}
.ls1a_c00364{letter-spacing:3.762000px;}
.ls3_c00364{letter-spacing:19.758904px;}
.ls1_c00364{letter-spacing:23.704560px;}
.ls16_c00364{letter-spacing:47.044800px;}
.ls11_c00364{letter-spacing:49.896198px;}
.ls4_c00364{letter-spacing:135.554760px;}
.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;}
}
.ws5_c00364{word-spacing:-20.170557px;}
.ws0_c00364{word-spacing:-19.100961px;}
.ws4_c00364{word-spacing:-18.067500px;}
.ws8_c00364{word-spacing:0.000000px;}
.ws7_c00364{word-spacing:0.794970px;}
.ws6_c00364{word-spacing:4.263930px;}
.ws1_c00364{word-spacing:5.637060px;}
.ws2_c00364{word-spacing:5.638050px;}
.ws3_c00364{word-spacing:7.082460px;}
._12_c00364{margin-left:-9.575731px;}
._9_c00364{margin-left:-6.865650px;}
._e_c00364{margin-left:-5.347980px;}
._2_c00364{margin-left:-1.026234px;}
._16_c00364{width:2.529450px;}
._d_c00364{width:5.564790px;}
._15_c00364{width:7.082460px;}
._a_c00364{width:9.178290px;}
._6_c00364{width:10.840500px;}
._5_c00364{width:12.214620px;}
._11_c00364{width:13.659030px;}
._f_c00364{width:15.104430px;}
._14_c00364{width:19.222830px;}
._1_c00364{width:21.753270px;}
._b_c00364{width:24.195600px;}
._8_c00364{width:25.366770px;}
._18_c00364{width:26.797320px;}
._c_c00364{width:29.468340px;}
._7_c00364{width:32.283108px;}
._17_c00364{width:34.467840px;}
._0_c00364{width:36.944820px;}
._3_c00364{width:37.946700px;}
._10_c00364{width:40.037580px;}
._4_c00364{width:41.193900px;}
._13_c00364{width:44.520376px;}
.fc0_c00364{color:transparent;}
.fs2_c00364{font-size:22.374000px;}
.fs0_c00364{font-size:27.720000px;}
.fse_c00364{font-size:33.660000px;}
.fs9_c00364{font-size:47.044800px;}
.fs7_c00364{font-size:49.896198px;}
.fs5_c00364{font-size:52.074000px;}
.fsd_c00364{font-size:60.192000px;}
.fs8_c00364{font-size:65.142198px;}
.fs6_c00364{font-size:66.330000px;}
.fs4_c00364{font-size:69.102198px;}
.fsb_c00364{font-size:71.280000px;}
.fsa_c00364{font-size:72.072198px;}
.fs3_c00364{font-size:72.270000px;}
.fs1_c00364{font-size:73.656198px;}
.fsc_c00364{font-size:75.240000px;}
.y0_c00364{bottom:0.000000px;}
.y1_c00364{bottom:76.500000px;}
.y25_c00364{bottom:96.847785px;}
.y24_c00364{bottom:128.928735px;}
.y22_c00364{bottom:136.051785px;}
.y23_c00364{bottom:136.764585px;}
.y21_c00364{bottom:166.350735px;}
.y20_c00364{bottom:201.272985px;}
.y1f_c00364{bottom:235.492335px;}
.y1e_c00364{bottom:267.924735px;}
.y1d_c00364{bottom:288.234585px;}
.y1c_c00364{bottom:302.490585px;}
.y1b_c00364{bottom:326.012985px;}
.y1a_c00364{bottom:334.215135px;}
.y19_c00364{bottom:334.571535px;}
.y18_c00364{bottom:367.360335px;}
.y17_c00364{bottom:400.861935px;}
.y16_c00364{bottom:434.002185px;}
.y15_c00364{bottom:463.583385px;}
.y14_c00364{bottom:467.152335px;}
.y13_c00364{bottom:499.584735px;}
.y12_c00364{bottom:533.799135px;}
.y11_c00364{bottom:533.801610px;}
.y10_c00364{bottom:598.663935px;}
.yf_c00364{bottom:623.606985px;}
.ye_c00364{bottom:630.734985px;}
.yd_c00364{bottom:664.592985px;}
.yc_c00364{bottom:696.673935px;}
.yb_c00364{bottom:730.170585px;}
.ya_c00364{bottom:762.959385px;}
.y9_c00364{bottom:796.109535px;}
.y8_c00364{bottom:859.543785px;}
.y7_c00364{bottom:880.214985px;}
.y6_c00364{bottom:894.119535px;}
.y5_c00364{bottom:926.546985px;}
.y4_c00364{bottom:1021.349385px;}
.y2_c00364{bottom:1047.722985px;}
.y3_c00364{bottom:1078.373385px;}
.h4_c00364{height:21.958857px;}
.h2_c00364{height:28.911094px;}
.hb_c00364{height:31.331837px;}
.h10_c00364{height:33.035449px;}
.h8_c00364{height:33.230868px;}
.h9_c00364{height:48.970390px;}
.h7_c00364{height:51.107783px;}
.hf_c00364{height:62.778375px;}
.ha_c00364{height:67.941277px;}
.h5_c00364{height:70.929053px;}
.h6_c00364{height:72.071433px;}
.h3_c00364{height:72.289530px;}
.hc_c00364{height:72.635262px;}
.he_c00364{height:75.827813px;}
.hd_c00364{height:102.312053px;}
.h1_c00364{height:1110.000000px;}
.h0_c00364{height:1263.000000px;}
.w1_c00364{width:775.500000px;}
.w0_c00364{width:892.500000px;}
.x0_c00364{left:0.000000px;}
.x2_c00364{left:55.119885px;}
.x1_c00364{left:58.500000px;}
.x24_c00364{left:98.887785px;}
.x6_c00364{left:100.654935px;}
.x60_c00364{left:101.699385px;}
.x47_c00364{left:121.479585px;}
.x75_c00364{left:123.444735px;}
.x3f_c00364{left:132.181485px;}
.x17_c00364{left:133.250685px;}
.x4e_c00364{left:143.457585px;}
.x2a_c00364{left:153.129885px;}
.x7_c00364{left:154.416885px;}
.x61_c00364{left:156.421635px;}
.x48_c00364{left:164.806935px;}
.x72_c00364{left:166.890885px;}
.x32_c00364{left:168.232335px;}
.x8_c00364{left:176.622585px;}
.x49_c00364{left:178.043235px;}
.x18_c00364{left:187.378935px;}
.x2b_c00364{left:198.288735px;}
.x63_c00364{left:199.377735px;}
.x9_c00364{left:209.747985px;}
.x6f_c00364{left:212.470485px;}
.x23_c00364{left:220.509285px;}
.x19_c00364{left:231.617085px;}
.x70_c00364{left:232.785285px;}
.x73_c00364{left:234.364335px;}
.x33_c00364{left:238.507485px;}
.xa_c00364{left:242.848635px;}
.x2c_c00364{left:243.888135px;}
.x54_c00364{left:252.669435px;}
.x25_c00364{left:254.129685px;}
.x79_c00364{left:256.594785px;}
.x34_c00364{left:264.034635px;}
.x1a_c00364{left:265.470135px;}
.x74_c00364{left:268.044135px;}
.x7a_c00364{left:269.786535px;}
.xb_c00364{left:276.117585px;}
.x76_c00364{left:278.137185px;}
.x4a_c00364{left:287.393685px;}
.x2d_c00364{left:289.809285px;}
.x26_c00364{left:296.823435px;}
.x55_c00364{left:298.090635px;}
.x78_c00364{left:299.828085px;}
.xc_c00364{left:309.292485px;}
.xd_c00364{left:320.286435px;}
.xe_c00364{left:330.320085px;}
.x35_c00364{left:331.973385px;}
.x40_c00364{left:342.091185px;}
.x1b_c00364{left:343.358385px;}
.x36_c00364{left:348.897435px;}
.x2e_c00364{left:353.000985px;}
.x59_c00364{left:354.743385px;}
.x51_c00364{left:363.514785px;}
.x1c_c00364{left:364.554285px;}
.x3b_c00364{left:375.805635px;}
.x6a_c00364{left:377.166885px;}
.x27_c00364{left:385.923435px;}
.x41_c00364{left:387.551985px;}
.x4b_c00364{left:398.016285px;}
.x66_c00364{left:399.684435px;}
.x56_c00364{left:409.950735px;}
.xf_c00364{left:411.767385px;}
.x1d_c00364{left:420.697185px;}
.x28_c00364{left:430.909035px;}
.x6b_c00364{left:432.072285px;}
.x10_c00364{left:441.863385px;}
.x64_c00364{left:453.451335px;}
.x11_c00364{left:463.841385px;}
.x42_c00364{left:464.890785px;}
.x52_c00364{left:473.993835px;}
.x37_c00364{left:475.538235px;}
.x12_c00364{left:478.117185px;}
.x57_c00364{left:486.136185px;}
.x5e_c00364{left:487.343985px;}
.x3c_c00364{left:495.734235px;}
.x1e_c00364{left:497.382585px;}
.x13_c00364{left:508.767585px;}
.x6e_c00364{left:510.242685px;}
.x5a_c00364{left:519.588285px;}
.x6c_c00364{left:520.771335px;}
.x1f_c00364{left:522.182085px;}
.x3d_c00364{left:530.844585px;}
.x14_c00364{left:541.843485px;}
.x5d_c00364{left:543.769035px;}
.x5b_c00364{left:548.090385px;}
.x4f_c00364{left:553.129485px;}
.x2f_c00364{left:563.361135px;}
.x77_c00364{left:572.290935px;}
.x20_c00364{left:574.538235px;}
.x29_c00364{left:576.275685px;}
.x30_c00364{left:584.433285px;}
.x38_c00364{left:585.646035px;}
.x65_c00364{left:586.744935px;}
.x5c_c00364{left:588.972435px;}
.x43_c00364{left:595.843035px;}
.x5f_c00364{left:597.407235px;}
.x39_c00364{left:607.049835px;}
.x15_c00364{left:608.490285px;}
.x4c_c00364{left:618.662535px;}
.x53_c00364{left:619.885185px;}
.x6d_c00364{left:628.315035px;}
.x31_c00364{left:629.542635px;}
.x67_c00364{left:630.601935px;}
.x21_c00364{left:639.977235px;}
.x16_c00364{left:641.086035px;}
.x62_c00364{left:643.293735px;}
.x4d_c00364{left:651.089985px;}
.x44_c00364{left:652.683885px;}
.x3e_c00364{left:662.687835px;}
.x68_c00364{left:663.761985px;}
.x69_c00364{left:668.068485px;}
.x3_c00364{left:674.290635px;}
.x45_c00364{left:684.784635px;}
.x4_c00364{left:696.867585px;}
.x71_c00364{left:706.366635px;}
.x22_c00364{left:707.604135px;}
.x3a_c00364{left:718.152585px;}
.x50_c00364{left:719.325735px;}
.x46_c00364{left:730.319685px;}
.x58_c00364{left:741.105735px;}
.x7b_c00364{left:755.421135px;}
.x5_c00364{left:759.742485px;}
@media print{
.v0_c00364{vertical-align:0.000000pt;}
.v1_c00364{vertical-align:27.896000pt;}
.ls8_c00364{letter-spacing:-2.248400pt;}
.ls1b_c00364{letter-spacing:-2.055680pt;}
.ls13_c00364{letter-spacing:-1.552326pt;}
.lse_c00364{letter-spacing:-1.504360pt;}
.ls14_c00364{letter-spacing:-0.816080pt;}
.ls5_c00364{letter-spacing:0.000000pt;}
.lsf_c00364{letter-spacing:0.481800pt;}
.ls9_c00364{letter-spacing:0.828696pt;}
.ls0_c00364{letter-spacing:0.918632pt;}
.lsa_c00364{letter-spacing:0.937904pt;}
.ls2_c00364{letter-spacing:1.406856pt;}
.ls15_c00364{letter-spacing:1.695936pt;}
.ls19_c00364{letter-spacing:1.869384pt;}
.ls18_c00364{letter-spacing:1.888656pt;}
.ls12_c00364{letter-spacing:2.217609pt;}
.lsd_c00364{letter-spacing:2.314400pt;}
.ls10_c00364{letter-spacing:2.736624pt;}
.lsb_c00364{letter-spacing:3.019280pt;}
.lsc_c00364{letter-spacing:3.071209pt;}
.ls17_c00364{letter-spacing:3.203209pt;}
.ls7_c00364{letter-spacing:3.212000pt;}
.ls6_c00364{letter-spacing:3.273609pt;}
.ls1a_c00364{letter-spacing:3.344000pt;}
.ls3_c00364{letter-spacing:17.563470pt;}
.ls1_c00364{letter-spacing:21.070720pt;}
.ls16_c00364{letter-spacing:41.817600pt;}
.ls11_c00364{letter-spacing:44.352176pt;}
.ls4_c00364{letter-spacing:120.493120pt;}
.ws5_c00364{word-spacing:-17.929384pt;}
.ws0_c00364{word-spacing:-16.978632pt;}
.ws4_c00364{word-spacing:-16.060000pt;}
.ws8_c00364{word-spacing:0.000000pt;}
.ws7_c00364{word-spacing:0.706640pt;}
.ws6_c00364{word-spacing:3.790160pt;}
.ws1_c00364{word-spacing:5.010720pt;}
.ws2_c00364{word-spacing:5.011600pt;}
.ws3_c00364{word-spacing:6.295520pt;}
._12_c00364{margin-left:-8.511761pt;}
._9_c00364{margin-left:-6.102800pt;}
._e_c00364{margin-left:-4.753760pt;}
._2_c00364{margin-left:-0.912208pt;}
._16_c00364{width:2.248400pt;}
._d_c00364{width:4.946480pt;}
._15_c00364{width:6.295520pt;}
._a_c00364{width:8.158480pt;}
._6_c00364{width:9.636000pt;}
._5_c00364{width:10.857440pt;}
._11_c00364{width:12.141360pt;}
._f_c00364{width:13.426160pt;}
._14_c00364{width:17.086960pt;}
._1_c00364{width:19.336240pt;}
._b_c00364{width:21.507200pt;}
._8_c00364{width:22.548240pt;}
._18_c00364{width:23.819840pt;}
._c_c00364{width:26.194080pt;}
._7_c00364{width:28.696096pt;}
._17_c00364{width:30.638080pt;}
._0_c00364{width:32.839840pt;}
._3_c00364{width:33.730400pt;}
._10_c00364{width:35.588960pt;}
._4_c00364{width:36.616800pt;}
._13_c00364{width:39.573668pt;}
.fs2_c00364{font-size:19.888000pt;}
.fs0_c00364{font-size:24.640000pt;}
.fse_c00364{font-size:29.920000pt;}
.fs9_c00364{font-size:41.817600pt;}
.fs7_c00364{font-size:44.352176pt;}
.fs5_c00364{font-size:46.288000pt;}
.fsd_c00364{font-size:53.504000pt;}
.fs8_c00364{font-size:57.904176pt;}
.fs6_c00364{font-size:58.960000pt;}
.fs4_c00364{font-size:61.424176pt;}
.fsb_c00364{font-size:63.360000pt;}
.fsa_c00364{font-size:64.064176pt;}
.fs3_c00364{font-size:64.240000pt;}
.fs1_c00364{font-size:65.472176pt;}
.fsc_c00364{font-size:66.880000pt;}
.y0_c00364{bottom:0.000000pt;}
.y1_c00364{bottom:68.000000pt;}
.y25_c00364{bottom:86.086920pt;}
.y24_c00364{bottom:114.603320pt;}
.y22_c00364{bottom:120.934920pt;}
.y23_c00364{bottom:121.568520pt;}
.y21_c00364{bottom:147.867320pt;}
.y20_c00364{bottom:178.909320pt;}
.y1f_c00364{bottom:209.326520pt;}
.y1e_c00364{bottom:238.155320pt;}
.y1d_c00364{bottom:256.208520pt;}
.y1c_c00364{bottom:268.880520pt;}
.y1b_c00364{bottom:289.789320pt;}
.y1a_c00364{bottom:297.080120pt;}
.y19_c00364{bottom:297.396920pt;}
.y18_c00364{bottom:326.542520pt;}
.y17_c00364{bottom:356.321720pt;}
.y16_c00364{bottom:385.779720pt;}
.y15_c00364{bottom:412.074120pt;}
.y14_c00364{bottom:415.246520pt;}
.y13_c00364{bottom:444.075320pt;}
.y12_c00364{bottom:474.488120pt;}
.y11_c00364{bottom:474.490320pt;}
.y10_c00364{bottom:532.145720pt;}
.yf_c00364{bottom:554.317320pt;}
.ye_c00364{bottom:560.653320pt;}
.yd_c00364{bottom:590.749320pt;}
.yc_c00364{bottom:619.265720pt;}
.yb_c00364{bottom:649.040520pt;}
.ya_c00364{bottom:678.186120pt;}
.y9_c00364{bottom:707.652920pt;}
.y8_c00364{bottom:764.038920pt;}
.y7_c00364{bottom:782.413320pt;}
.y6_c00364{bottom:794.772920pt;}
.y5_c00364{bottom:823.597320pt;}
.y4_c00364{bottom:907.866120pt;}
.y2_c00364{bottom:931.309320pt;}
.y3_c00364{bottom:958.554120pt;}
.h4_c00364{height:19.518984pt;}
.h2_c00364{height:25.698750pt;}
.hb_c00364{height:27.850522pt;}
.h10_c00364{height:29.364844pt;}
.h8_c00364{height:29.538549pt;}
.h9_c00364{height:43.529235pt;}
.h7_c00364{height:45.429141pt;}
.hf_c00364{height:55.803000pt;}
.ha_c00364{height:60.392246pt;}
.h5_c00364{height:63.048047pt;}
.h6_c00364{height:64.063496pt;}
.h3_c00364{height:64.257360pt;}
.hc_c00364{height:64.564677pt;}
.he_c00364{height:67.402500pt;}
.hd_c00364{height:90.944047pt;}
.h1_c00364{height:986.666667pt;}
.h0_c00364{height:1122.666667pt;}
.w1_c00364{width:689.333333pt;}
.w0_c00364{width:793.333333pt;}
.x0_c00364{left:0.000000pt;}
.x2_c00364{left:48.995453pt;}
.x1_c00364{left:52.000000pt;}
.x24_c00364{left:87.900253pt;}
.x6_c00364{left:89.471053pt;}
.x60_c00364{left:90.399453pt;}
.x47_c00364{left:107.981853pt;}
.x75_c00364{left:109.728653pt;}
.x3f_c00364{left:117.494653pt;}
.x17_c00364{left:118.445053pt;}
.x4e_c00364{left:127.517853pt;}
.x2a_c00364{left:136.115453pt;}
.x7_c00364{left:137.259453pt;}
.x61_c00364{left:139.041453pt;}
.x48_c00364{left:146.495053pt;}
.x72_c00364{left:148.347453pt;}
.x32_c00364{left:149.539853pt;}
.x8_c00364{left:156.997853pt;}
.x49_c00364{left:158.260653pt;}
.x18_c00364{left:166.559053pt;}
.x2b_c00364{left:176.256653pt;}
.x63_c00364{left:177.224653pt;}
.x9_c00364{left:186.442653pt;}
.x6f_c00364{left:188.862653pt;}
.x23_c00364{left:196.008253pt;}
.x19_c00364{left:205.881853pt;}
.x70_c00364{left:206.920253pt;}
.x73_c00364{left:208.323853pt;}
.x33_c00364{left:212.006653pt;}
.xa_c00364{left:215.865453pt;}
.x2c_c00364{left:216.789453pt;}
.x54_c00364{left:224.595053pt;}
.x25_c00364{left:225.893053pt;}
.x79_c00364{left:228.084253pt;}
.x34_c00364{left:234.697453pt;}
.x1a_c00364{left:235.973453pt;}
.x74_c00364{left:238.261453pt;}
.x7a_c00364{left:239.810253pt;}
.xb_c00364{left:245.437853pt;}
.x76_c00364{left:247.233053pt;}
.x4a_c00364{left:255.461053pt;}
.x2d_c00364{left:257.608253pt;}
.x26_c00364{left:263.843053pt;}
.x55_c00364{left:264.969453pt;}
.x78_c00364{left:266.513853pt;}
.xc_c00364{left:274.926653pt;}
.xd_c00364{left:284.699053pt;}
.xe_c00364{left:293.617853pt;}
.x35_c00364{left:295.087453pt;}
.x40_c00364{left:304.081053pt;}
.x1b_c00364{left:305.207453pt;}
.x36_c00364{left:310.131053pt;}
.x2e_c00364{left:313.778653pt;}
.x59_c00364{left:315.327453pt;}
.x51_c00364{left:323.124253pt;}
.x1c_c00364{left:324.048253pt;}
.x3b_c00364{left:334.049453pt;}
.x6a_c00364{left:335.259453pt;}
.x27_c00364{left:343.043053pt;}
.x41_c00364{left:344.490653pt;}
.x4b_c00364{left:353.792253pt;}
.x66_c00364{left:355.275053pt;}
.x56_c00364{left:364.400653pt;}
.xf_c00364{left:366.015453pt;}
.x1d_c00364{left:373.953053pt;}
.x28_c00364{left:383.030253pt;}
.x6b_c00364{left:384.064253pt;}
.x10_c00364{left:392.767453pt;}
.x64_c00364{left:403.067853pt;}
.x11_c00364{left:412.303453pt;}
.x42_c00364{left:413.236253pt;}
.x52_c00364{left:421.327853pt;}
.x37_c00364{left:422.700653pt;}
.x12_c00364{left:424.993053pt;}
.x57_c00364{left:432.121053pt;}
.x5e_c00364{left:433.194653pt;}
.x3c_c00364{left:440.652653pt;}
.x1e_c00364{left:442.117853pt;}
.x13_c00364{left:452.237853pt;}
.x6e_c00364{left:453.549053pt;}
.x5a_c00364{left:461.856253pt;}
.x6c_c00364{left:462.907853pt;}
.x1f_c00364{left:464.161853pt;}
.x3d_c00364{left:471.861853pt;}
.x14_c00364{left:481.638653pt;}
.x5d_c00364{left:483.350253pt;}
.x5b_c00364{left:487.191453pt;}
.x4f_c00364{left:491.670653pt;}
.x2f_c00364{left:500.765453pt;}
.x77_c00364{left:508.703053pt;}
.x20_c00364{left:510.700653pt;}
.x29_c00364{left:512.245053pt;}
.x30_c00364{left:519.496253pt;}
.x38_c00364{left:520.574253pt;}
.x65_c00364{left:521.551053pt;}
.x5c_c00364{left:523.531053pt;}
.x43_c00364{left:529.638253pt;}
.x5f_c00364{left:531.028653pt;}
.x39_c00364{left:539.599853pt;}
.x15_c00364{left:540.880253pt;}
.x4c_c00364{left:549.922253pt;}
.x53_c00364{left:551.009053pt;}
.x6d_c00364{left:558.502253pt;}
.x31_c00364{left:559.593453pt;}
.x67_c00364{left:560.535053pt;}
.x21_c00364{left:568.868653pt;}
.x16_c00364{left:569.854253pt;}
.x62_c00364{left:571.816653pt;}
.x4d_c00364{left:578.746653pt;}
.x44_c00364{left:580.163453pt;}
.x3e_c00364{left:589.055853pt;}
.x68_c00364{left:590.010653pt;}
.x69_c00364{left:593.838653pt;}
.x3_c00364{left:599.369453pt;}
.x45_c00364{left:608.697453pt;}
.x4_c00364{left:619.437853pt;}
.x71_c00364{left:627.881453pt;}
.x22_c00364{left:628.981453pt;}
.x3a_c00364{left:638.357853pt;}
.x50_c00364{left:639.400653pt;}
.x46_c00364{left:649.173053pt;}
.x58_c00364{left:658.760653pt;}
.x7b_c00364{left:671.485453pt;}
.x5_c00364{left:675.326653pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7b07e1c87749c873e463daba.woff2')format("woff");}.ff1_c00365{font-family:ff1_c00365;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00365;src:url('chunks/assets/font_b0896271b547c7a11a057af5.woff2')format("woff");}.ff2_c00365{font-family:ff2_c00365;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00365;src:url('chunks/assets/font_0c2492313dabb76067e11d49.woff2')format("woff");}.ff3_c00365{font-family:ff3_c00365;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ma4_c00365{transform:matrix(0.032521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032521,0.000000,0.000000,0.250000,0,0);}
.mda_c00365{transform:matrix(0.060607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060607,0.000000,0.000000,0.250000,0,0);}
.mdc_c00365{transform:matrix(0.071971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071971,0.000000,0.000000,0.250000,0,0);}
.m1a_c00365{transform:matrix(0.103636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103636,0.000000,0.000000,0.250000,0,0);}
.m35_c00365{transform:matrix(0.111271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111271,0.000000,0.000000,0.250000,0,0);}
.m5b_c00365{transform:matrix(0.113638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113638,0.000000,0.000000,0.250000,0,0);}
.mb_c00365{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);}
.m2a_c00365{transform:matrix(0.148181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148181,0.000000,0.000000,0.250000,0,0);}
.m3b_c00365{transform:matrix(0.151162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151162,0.000000,0.000000,0.250000,0,0);}
.m5f_c00365{transform:matrix(0.155779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155779,0.000000,0.000000,0.250000,0,0);}
.mc_c00365{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.me_c00365{transform:matrix(0.159723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159723,0.000000,0.000000,0.250000,0,0);}
.mb9_c00365{transform:matrix(0.166333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166333,0.000000,0.000000,0.250000,0,0);}
.md_c00365{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);}
.md9_c00365{transform:matrix(0.174242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174242,0.000000,0.000000,0.250000,0,0);}
.m33_c00365{transform:matrix(0.182810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182810,0.000000,0.000000,0.250000,0,0);}
.m87_c00365{transform:matrix(0.185410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185410,0.000000,0.000000,0.250000,0,0);}
.m4d_c00365{transform:matrix(0.190690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190690,0.000000,0.000000,0.250000,0,0);}
.m38_c00365{transform:matrix(0.191282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191282,0.000000,0.000000,0.250000,0,0);}
.m4a_c00365{transform:matrix(0.194567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194567,0.000000,0.000000,0.250000,0,0);}
.mdb_c00365{transform:matrix(0.195707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195707,0.000000,0.000000,0.250000,0,0);}
.mdd_c00365{transform:matrix(0.200758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200758,0.000000,0.000000,0.250000,0,0);}
.md0_c00365{transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);}
.m42_c00365{transform:matrix(0.217514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217514,0.000000,0.000000,0.250000,0,0);}
.m48_c00365{transform:matrix(0.231124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231124,0.000000,0.000000,0.250000,0,0);}
.m77_c00365{transform:matrix(0.235109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235109,0.000000,0.000000,0.250000,0,0);}
.m29_c00365{transform:matrix(0.235448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235448,0.000000,0.000000,0.250000,0,0);}
.me2_c00365{transform:matrix(0.237740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237740,0.000000,0.000000,0.250000,0,0);}
.m69_c00365{transform:matrix(0.238055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238055,0.000000,0.000000,0.250000,0,0);}
.m22_c00365{transform:matrix(0.238588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238588,0.000000,0.000000,0.250000,0,0);}
.md3_c00365{transform:matrix(0.244808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244808,0.000000,0.000000,0.250000,0,0);}
.m9e_c00365{transform:matrix(0.247021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247021,0.000000,0.000000,0.250000,0,0);}
.m12_c00365{transform:matrix(0.247121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247121,0.000000,0.000000,0.250000,0,0);}
.m0_c00365{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00365{transform:matrix(0.255049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255049,0.000000,0.000000,0.250000,0,0);}
.mb1_c00365{transform:matrix(0.257131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257131,0.000000,0.000000,0.250000,0,0);}
.md1_c00365{transform:matrix(0.262639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262639,0.000000,0.000000,0.250000,0,0);}
.m58_c00365{transform:matrix(0.262979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262979,0.000000,0.000000,0.250000,0,0);}
.md7_c00365{transform:matrix(0.262986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262986,0.000000,0.000000,0.250000,0,0);}
.m4e_c00365{transform:matrix(0.263555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263555,0.000000,0.000000,0.250000,0,0);}
.md2_c00365{transform:matrix(0.264371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264371,0.000000,0.000000,0.250000,0,0);}
.m43_c00365{transform:matrix(0.264399,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264399,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264399,0.000000,0.000000,0.250000,0,0);}
.m25_c00365{transform:matrix(0.265176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265176,0.000000,0.000000,0.250000,0,0);}
.mb3_c00365{transform:matrix(0.268225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268225,0.000000,0.000000,0.250000,0,0);}
.m19_c00365{transform:matrix(0.268345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268345,0.000000,0.000000,0.250000,0,0);}
.m68_c00365{transform:matrix(0.268555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268555,0.000000,0.000000,0.250000,0,0);}
.mde_c00365{transform:matrix(0.268571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268571,0.000000,0.000000,0.250000,0,0);}
.m47_c00365{transform:matrix(0.268638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268638,0.000000,0.000000,0.250000,0,0);}
.m2f_c00365{transform:matrix(0.270331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270331,0.000000,0.000000,0.250000,0,0);}
.ma2_c00365{transform:matrix(0.271147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271147,0.000000,0.000000,0.250000,0,0);}
.m9d_c00365{transform:matrix(0.272432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272432,0.000000,0.000000,0.250000,0,0);}
.m8d_c00365{transform:matrix(0.272818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272818,0.000000,0.000000,0.250000,0,0);}
.m5c_c00365{transform:matrix(0.273014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273014,0.000000,0.000000,0.250000,0,0);}
.mc0_c00365{transform:matrix(0.273266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273266,0.000000,0.000000,0.250000,0,0);}
.m28_c00365{transform:matrix(0.273473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273473,0.000000,0.000000,0.250000,0,0);}
.m36_c00365{transform:matrix(0.273529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273529,0.000000,0.000000,0.250000,0,0);}
.m15_c00365{transform:matrix(0.273622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273622,0.000000,0.000000,0.250000,0,0);}
.m7a_c00365{transform:matrix(0.273707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273707,0.000000,0.000000,0.250000,0,0);}
.m9b_c00365{transform:matrix(0.273942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273942,0.000000,0.000000,0.250000,0,0);}
.m61_c00365{transform:matrix(0.275018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275018,0.000000,0.000000,0.250000,0,0);}
.m86_c00365{transform:matrix(0.275746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275746,0.000000,0.000000,0.250000,0,0);}
.m6c_c00365{transform:matrix(0.277227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277227,0.000000,0.000000,0.250000,0,0);}
.m11_c00365{transform:matrix(0.277804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277804,0.000000,0.000000,0.250000,0,0);}
.m8_c00365{transform:matrix(0.278033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278033,0.000000,0.000000,0.250000,0,0);}
.me4_c00365{transform:matrix(0.278164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278164,0.000000,0.000000,0.250000,0,0);}
.m73_c00365{transform:matrix(0.278342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278342,0.000000,0.000000,0.250000,0,0);}
.mc1_c00365{transform:matrix(0.278740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278740,0.000000,0.000000,0.250000,0,0);}
.m7e_c00365{transform:matrix(0.278968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278968,0.000000,0.000000,0.250000,0,0);}
.m13_c00365{transform:matrix(0.279025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279025,0.000000,0.000000,0.250000,0,0);}
.m23_c00365{transform:matrix(0.280655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280655,0.000000,0.000000,0.250000,0,0);}
.mc6_c00365{transform:matrix(0.280935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280935,0.000000,0.000000,0.250000,0,0);}
.ma9_c00365{transform:matrix(0.281040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281040,0.000000,0.000000,0.250000,0,0);}
.m59_c00365{transform:matrix(0.281055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281055,0.000000,0.000000,0.250000,0,0);}
.m3e_c00365{transform:matrix(0.281242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281242,0.000000,0.000000,0.250000,0,0);}
.m54_c00365{transform:matrix(0.281718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281718,0.000000,0.000000,0.250000,0,0);}
.m56_c00365{transform:matrix(0.281747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281747,0.000000,0.000000,0.250000,0,0);}
.m72_c00365{transform:matrix(0.283756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283756,0.000000,0.000000,0.250000,0,0);}
.m3_c00365{transform:matrix(0.284530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284530,0.000000,0.000000,0.250000,0,0);}
.m1c_c00365{transform:matrix(0.285127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285127,0.000000,0.000000,0.250000,0,0);}
.m90_c00365{transform:matrix(0.285268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285268,0.000000,0.000000,0.250000,0,0);}
.m34_c00365{transform:matrix(0.285667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285667,0.000000,0.000000,0.250000,0,0);}
.m85_c00365{transform:matrix(0.285968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285968,0.000000,0.000000,0.250000,0,0);}
.ma0_c00365{transform:matrix(0.287581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287581,0.000000,0.000000,0.250000,0,0);}
.maf_c00365{transform:matrix(0.288218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288218,0.000000,0.000000,0.250000,0,0);}
.m74_c00365{transform:matrix(0.288823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288823,0.000000,0.000000,0.250000,0,0);}
.mcc_c00365{transform:matrix(0.289721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289721,0.000000,0.000000,0.250000,0,0);}
.me7_c00365{transform:matrix(0.290597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290597,0.000000,0.000000,0.250000,0,0);}
.m51_c00365{transform:matrix(0.290679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290679,0.000000,0.000000,0.250000,0,0);}
.md5_c00365{transform:matrix(0.290710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290710,0.000000,0.000000,0.250000,0,0);}
.m5d_c00365{transform:matrix(0.291063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291063,0.000000,0.000000,0.250000,0,0);}
.mb8_c00365{transform:matrix(0.291287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291287,0.000000,0.000000,0.250000,0,0);}
.m8c_c00365{transform:matrix(0.291433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291433,0.000000,0.000000,0.250000,0,0);}
.m16_c00365{transform:matrix(0.291438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291438,0.000000,0.000000,0.250000,0,0);}
.mb7_c00365{transform:matrix(0.292373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292373,0.000000,0.000000,0.250000,0,0);}
.m71_c00365{transform:matrix(0.292760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292760,0.000000,0.000000,0.250000,0,0);}
.m8f_c00365{transform:matrix(0.293427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293427,0.000000,0.000000,0.250000,0,0);}
.m46_c00365{transform:matrix(0.293624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293624,0.000000,0.000000,0.250000,0,0);}
.m96_c00365{transform:matrix(0.293890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293890,0.000000,0.000000,0.250000,0,0);}
.md8_c00365{transform:matrix(0.294046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294046,0.000000,0.000000,0.250000,0,0);}
.m10_c00365{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00365{transform:matrix(0.295690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295690,0.000000,0.000000,0.250000,0,0);}
.m17_c00365{transform:matrix(0.295912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295912,0.000000,0.000000,0.250000,0,0);}
.ma5_c00365{transform:matrix(0.296190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296190,0.000000,0.000000,0.250000,0,0);}
.m70_c00365{transform:matrix(0.296458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296458,0.000000,0.000000,0.250000,0,0);}
.m97_c00365{transform:matrix(0.297307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297307,0.000000,0.000000,0.250000,0,0);}
.m50_c00365{transform:matrix(0.298039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298039,0.000000,0.000000,0.250000,0,0);}
.mbe_c00365{transform:matrix(0.298163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298163,0.000000,0.000000,0.250000,0,0);}
.mae_c00365{transform:matrix(0.298458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298458,0.000000,0.000000,0.250000,0,0);}
.mb2_c00365{transform:matrix(0.300095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300095,0.000000,0.000000,0.250000,0,0);}
.m3a_c00365{transform:matrix(0.300099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300099,0.000000,0.000000,0.250000,0,0);}
.m1d_c00365{transform:matrix(0.300546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300546,0.000000,0.000000,0.250000,0,0);}
.m64_c00365{transform:matrix(0.300703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300703,0.000000,0.000000,0.250000,0,0);}
.m53_c00365{transform:matrix(0.301403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301403,0.000000,0.000000,0.250000,0,0);}
.m66_c00365{transform:matrix(0.301800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301800,0.000000,0.000000,0.250000,0,0);}
.m8e_c00365{transform:matrix(0.301970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301970,0.000000,0.000000,0.250000,0,0);}
.m62_c00365{transform:matrix(0.302023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302023,0.000000,0.000000,0.250000,0,0);}
.m1b_c00365{transform:matrix(0.302132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302132,0.000000,0.000000,0.250000,0,0);}
.me6_c00365{transform:matrix(0.302771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302771,0.000000,0.000000,0.250000,0,0);}
.m2_c00365{transform:matrix(0.303042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303042,0.000000,0.000000,0.250000,0,0);}
.mab_c00365{transform:matrix(0.303126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303126,0.000000,0.000000,0.250000,0,0);}
.md6_c00365{transform:matrix(0.303431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303431,0.000000,0.000000,0.250000,0,0);}
.m3f_c00365{transform:matrix(0.303633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303633,0.000000,0.000000,0.250000,0,0);}
.m9a_c00365{transform:matrix(0.303717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303717,0.000000,0.000000,0.250000,0,0);}
.mba_c00365{transform:matrix(0.303743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303743,0.000000,0.000000,0.250000,0,0);}
.mc5_c00365{transform:matrix(0.303970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303970,0.000000,0.000000,0.250000,0,0);}
.m14_c00365{transform:matrix(0.304049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304049,0.000000,0.000000,0.250000,0,0);}
.m80_c00365{transform:matrix(0.304523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304523,0.000000,0.000000,0.250000,0,0);}
.m49_c00365{transform:matrix(0.305459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305459,0.000000,0.000000,0.250000,0,0);}
.m1f_c00365{transform:matrix(0.305710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305710,0.000000,0.000000,0.250000,0,0);}
.mc3_c00365{transform:matrix(0.305715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305715,0.000000,0.000000,0.250000,0,0);}
.m79_c00365{transform:matrix(0.305762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305762,0.000000,0.000000,0.250000,0,0);}
.m67_c00365{transform:matrix(0.307203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307203,0.000000,0.000000,0.250000,0,0);}
.mce_c00365{transform:matrix(0.308018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308018,0.000000,0.000000,0.250000,0,0);}
.m83_c00365{transform:matrix(0.308095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308095,0.000000,0.000000,0.250000,0,0);}
.m44_c00365{transform:matrix(0.308287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308287,0.000000,0.000000,0.250000,0,0);}
.m98_c00365{transform:matrix(0.309503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309503,0.000000,0.000000,0.250000,0,0);}
.m82_c00365{transform:matrix(0.309958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309958,0.000000,0.000000,0.250000,0,0);}
.m6f_c00365{transform:matrix(0.311014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311014,0.000000,0.000000,0.250000,0,0);}
.m6a_c00365{transform:matrix(0.312325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312325,0.000000,0.000000,0.250000,0,0);}
.ma_c00365{transform:matrix(0.313661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313661,0.000000,0.000000,0.250000,0,0);}
.m4f_c00365{transform:matrix(0.314798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314798,0.000000,0.000000,0.250000,0,0);}
.m41_c00365{transform:matrix(0.315482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315482,0.000000,0.000000,0.250000,0,0);}
.me5_c00365{transform:matrix(0.316117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316117,0.000000,0.000000,0.250000,0,0);}
.me8_c00365{transform:matrix(0.316156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316156,0.000000,0.000000,0.250000,0,0);}
.ma3_c00365{transform:matrix(0.316584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316584,0.000000,0.000000,0.250000,0,0);}
.mca_c00365{transform:matrix(0.317341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317341,0.000000,0.000000,0.250000,0,0);}
.m24_c00365{transform:matrix(0.317750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317750,0.000000,0.000000,0.250000,0,0);}
.m60_c00365{transform:matrix(0.318235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318235,0.000000,0.000000,0.250000,0,0);}
.m9_c00365{transform:matrix(0.318424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318424,0.000000,0.000000,0.250000,0,0);}
.m4c_c00365{transform:matrix(0.318591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318591,0.000000,0.000000,0.250000,0,0);}
.maa_c00365{transform:matrix(0.318951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318951,0.000000,0.000000,0.250000,0,0);}
.ma7_c00365{transform:matrix(0.319740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319740,0.000000,0.000000,0.250000,0,0);}
.m75_c00365{transform:matrix(0.319891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319891,0.000000,0.000000,0.250000,0,0);}
.m57_c00365{transform:matrix(0.321755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321755,0.000000,0.000000,0.250000,0,0);}
.m4b_c00365{transform:matrix(0.321945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321945,0.000000,0.000000,0.250000,0,0);}
.mcb_c00365{transform:matrix(0.322340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322340,0.000000,0.000000,0.250000,0,0);}
.mbd_c00365{transform:matrix(0.322384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322384,0.000000,0.000000,0.250000,0,0);}
.m7f_c00365{transform:matrix(0.322926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322926,0.000000,0.000000,0.250000,0,0);}
.m5_c00365{transform:matrix(0.323466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323466,0.000000,0.000000,0.250000,0,0);}
.m45_c00365{transform:matrix(0.325870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325870,0.000000,0.000000,0.250000,0,0);}
.m9c_c00365{transform:matrix(0.326805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326805,0.000000,0.000000,0.250000,0,0);}
.me9_c00365{transform:matrix(0.326923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326923,0.000000,0.000000,0.250000,0,0);}
.m52_c00365{transform:matrix(0.328906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328906,0.000000,0.000000,0.250000,0,0);}
.mad_c00365{transform:matrix(0.329592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329592,0.000000,0.000000,0.250000,0,0);}
.mc9_c00365{transform:matrix(0.330832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330832,0.000000,0.000000,0.250000,0,0);}
.m2d_c00365{transform:matrix(0.330845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330845,0.000000,0.000000,0.250000,0,0);}
.m26_c00365{transform:matrix(0.331587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331587,0.000000,0.000000,0.250000,0,0);}
.m5e_c00365{transform:matrix(0.331826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331826,0.000000,0.000000,0.250000,0,0);}
.me0_c00365{transform:matrix(0.332149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332149,0.000000,0.000000,0.250000,0,0);}
.m40_c00365{transform:matrix(0.333269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333269,0.000000,0.000000,0.250000,0,0);}
.m20_c00365{transform:matrix(0.333337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333337,0.000000,0.000000,0.250000,0,0);}
.ma8_c00365{transform:matrix(0.334133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334133,0.000000,0.000000,0.250000,0,0);}
.m95_c00365{transform:matrix(0.334645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334645,0.000000,0.000000,0.250000,0,0);}
.m55_c00365{transform:matrix(0.334767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334767,0.000000,0.000000,0.250000,0,0);}
.m84_c00365{transform:matrix(0.334886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334886,0.000000,0.000000,0.250000,0,0);}
.me1_c00365{transform:matrix(0.335141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335141,0.000000,0.000000,0.250000,0,0);}
.mbb_c00365{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);}
.m88_c00365{transform:matrix(0.336629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336629,0.000000,0.000000,0.250000,0,0);}
.ma6_c00365{transform:matrix(0.336674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336674,0.000000,0.000000,0.250000,0,0);}
.m78_c00365{transform:matrix(0.337434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337434,0.000000,0.000000,0.250000,0,0);}
.mc8_c00365{transform:matrix(0.340463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340463,0.000000,0.000000,0.250000,0,0);}
.m91_c00365{transform:matrix(0.340914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340914,0.000000,0.000000,0.250000,0,0);}
.m1e_c00365{transform:matrix(0.341013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341013,0.000000,0.000000,0.250000,0,0);}
.mac_c00365{transform:matrix(0.341405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341405,0.000000,0.000000,0.250000,0,0);}
.m7d_c00365{transform:matrix(0.342531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342531,0.000000,0.000000,0.250000,0,0);}
.m7b_c00365{transform:matrix(0.342799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342799,0.000000,0.000000,0.250000,0,0);}
.m93_c00365{transform:matrix(0.343101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343101,0.000000,0.000000,0.250000,0,0);}
.m32_c00365{transform:matrix(0.343166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343166,0.000000,0.000000,0.250000,0,0);}
.ma1_c00365{transform:matrix(0.343406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343406,0.000000,0.000000,0.250000,0,0);}
.m1_c00365{transform:matrix(0.344345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344345,0.000000,0.000000,0.250000,0,0);}
.m7c_c00365{transform:matrix(0.344401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344401,0.000000,0.000000,0.250000,0,0);}
.m4_c00365{transform:matrix(0.344871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344871,0.000000,0.000000,0.250000,0,0);}
.mc7_c00365{transform:matrix(0.345917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345917,0.000000,0.000000,0.250000,0,0);}
.m6b_c00365{transform:matrix(0.348178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348178,0.000000,0.000000,0.250000,0,0);}
.m94_c00365{transform:matrix(0.348379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348379,0.000000,0.000000,0.250000,0,0);}
.mcf_c00365{transform:matrix(0.348519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348519,0.000000,0.000000,0.250000,0,0);}
.m37_c00365{transform:matrix(0.351144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351144,0.000000,0.000000,0.250000,0,0);}
.mc2_c00365{transform:matrix(0.351706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351706,0.000000,0.000000,0.250000,0,0);}
.m6e_c00365{transform:matrix(0.352012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352012,0.000000,0.000000,0.250000,0,0);}
.m8a_c00365{transform:matrix(0.353255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353255,0.000000,0.000000,0.250000,0,0);}
.m2b_c00365{transform:matrix(0.353795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353795,0.000000,0.000000,0.250000,0,0);}
.m63_c00365{transform:matrix(0.354497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354497,0.000000,0.000000,0.250000,0,0);}
.m2c_c00365{transform:matrix(0.354668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354668,0.000000,0.000000,0.250000,0,0);}
.m30_c00365{transform:matrix(0.354951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354951,0.000000,0.000000,0.250000,0,0);}
.m89_c00365{transform:matrix(0.355665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355665,0.000000,0.000000,0.250000,0,0);}
.mcd_c00365{transform:matrix(0.356836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356836,0.000000,0.000000,0.250000,0,0);}
.m99_c00365{transform:matrix(0.357904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357904,0.000000,0.000000,0.250000,0,0);}
.m31_c00365{transform:matrix(0.358304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358304,0.000000,0.000000,0.250000,0,0);}
.m3d_c00365{transform:matrix(0.358832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358832,0.000000,0.000000,0.250000,0,0);}
.m6_c00365{transform:matrix(0.360862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360862,0.000000,0.000000,0.250000,0,0);}
.m2e_c00365{transform:matrix(0.361525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361525,0.000000,0.000000,0.250000,0,0);}
.mbf_c00365{transform:matrix(0.363879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363879,0.000000,0.000000,0.250000,0,0);}
.mdf_c00365{transform:matrix(0.365079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365079,0.000000,0.000000,0.250000,0,0);}
.mb0_c00365{transform:matrix(0.366177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366177,0.000000,0.000000,0.250000,0,0);}
.mf_c00365{transform:matrix(0.366280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366280,0.000000,0.000000,0.250000,0,0);}
.m7_c00365{transform:matrix(0.366942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366942,0.000000,0.000000,0.250000,0,0);}
.md4_c00365{transform:matrix(0.367520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367520,0.000000,0.000000,0.250000,0,0);}
.m81_c00365{transform:matrix(0.368270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368270,0.000000,0.000000,0.250000,0,0);}
.m65_c00365{transform:matrix(0.369522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369522,0.000000,0.000000,0.250000,0,0);}
.m27_c00365{transform:matrix(0.369855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369855,0.000000,0.000000,0.250000,0,0);}
.m21_c00365{transform:matrix(0.375892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375892,0.000000,0.000000,0.250000,0,0);}
.m18_c00365{transform:matrix(0.376814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376814,0.000000,0.000000,0.250000,0,0);}
.mb6_c00365{transform:matrix(0.379423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379423,0.000000,0.000000,0.250000,0,0);}
.m8b_c00365{transform:matrix(0.380029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380029,0.000000,0.000000,0.250000,0,0);}
.mc4_c00365{transform:matrix(0.380210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380210,0.000000,0.000000,0.250000,0,0);}
.mb5_c00365{transform:matrix(0.382879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382879,0.000000,0.000000,0.250000,0,0);}
.m6d_c00365{transform:matrix(0.382941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382941,0.000000,0.000000,0.250000,0,0);}
.m92_c00365{transform:matrix(0.388721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388721,0.000000,0.000000,0.250000,0,0);}
.m3c_c00365{transform:matrix(0.398584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398584,0.000000,0.000000,0.250000,0,0);}
.m76_c00365{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_c00365{transform:matrix(0.403672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403672,0.000000,0.000000,0.250000,0,0);}
.mb4_c00365{transform:matrix(0.406255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406255,0.000000,0.000000,0.250000,0,0);}
.mbc_c00365{transform:matrix(0.452316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452316,0.000000,0.000000,0.250000,0,0);}
.me3_c00365{transform:matrix(0.460692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460692,0.000000,0.000000,0.250000,0,0);}
.v1_c00365{vertical-align:-21.391920px;}
.v3_c00365{vertical-align:-18.532800px;}
.v0_c00365{vertical-align:0.000000px;}
.v2_c00365{vertical-align:21.391920px;}
.ls12_c00365{letter-spacing:-2.529450px;}
.ls14_c00365{letter-spacing:-2.363229px;}
.ls18_c00365{letter-spacing:-1.972971px;}
.ls1c_c00365{letter-spacing:-1.462230px;}
.ls16_c00365{letter-spacing:-1.386000px;}
.ls1b_c00365{letter-spacing:-1.243044px;}
.ls17_c00365{letter-spacing:-1.219680px;}
.ls1f_c00365{letter-spacing:-0.476982px;}
.lse_c00365{letter-spacing:0.000000px;}
.ls22_c00365{letter-spacing:0.693792px;}
.ls1d_c00365{letter-spacing:0.765072px;}
.ls9_c00365{letter-spacing:1.387584px;}
.ls21_c00365{letter-spacing:1.643400px;}
.ls2_c00365{letter-spacing:2.009106px;}
.lsc_c00365{letter-spacing:2.071798px;}
.ls15_c00365{letter-spacing:2.124738px;}
.ls1e_c00365{letter-spacing:2.131965px;}
.ls4_c00365{letter-spacing:2.160873px;}
.ls13_c00365{letter-spacing:2.494810px;}
.ls11_c00365{letter-spacing:2.534400px;}
.ls7_c00365{letter-spacing:2.645082px;}
.ls8_c00365{letter-spacing:2.948616px;}
.ls1_c00365{letter-spacing:3.302739px;}
.ls24_c00365{letter-spacing:3.465000px;}
.ls19_c00365{letter-spacing:3.544200px;}
.lsf_c00365{letter-spacing:3.564000px;}
.lsd_c00365{letter-spacing:3.613500px;}
.lsb_c00365{letter-spacing:4.712400px;}
.lsa_c00365{letter-spacing:8.672400px;}
.ls5_c00365{letter-spacing:9.755460px;}
.ls3_c00365{letter-spacing:14.381730px;}
.ls0_c00365{letter-spacing:23.278398px;}
.ls6_c00365{letter-spacing:26.590212px;}
.ls1a_c00365{letter-spacing:31.363200px;}
.ls25_c00365{letter-spacing:47.044800px;}
.ls23_c00365{letter-spacing:49.896198px;}
.ls10_c00365{letter-spacing:51.321798px;}
.ls20_c00365{letter-spacing:58.449798px;}
.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;}
}
.ws1_c00365{word-spacing:-21.370239px;}
.ws9_c00365{word-spacing:-21.016116px;}
.ws5_c00365{word-spacing:-20.228373px;}
.ws2_c00365{word-spacing:-20.076606px;}
.wsb_c00365{word-spacing:-19.455084px;}
.ws0_c00365{word-spacing:-18.067500px;}
.ws7_c00365{word-spacing:-16.094529px;}
.ws4_c00365{word-spacing:-15.704271px;}
.wsa_c00365{word-spacing:-9.873072px;}
.wse_c00365{word-spacing:0.000000px;}
.ws8_c00365{word-spacing:2.747250px;}
.wsd_c00365{word-spacing:2.818530px;}
.wsc_c00365{word-spacing:3.107610px;}
.ws6_c00365{word-spacing:4.480740px;}
.ws3_c00365{word-spacing:5.853870px;}
._21_c00365{margin-left:-15.682590px;}
._22_c00365{margin-left:-14.164920px;}
._15_c00365{margin-left:-10.283130px;}
._c_c00365{margin-left:-8.896140px;}
._1b_c00365{margin-left:-7.420842px;}
._14_c00365{margin-left:-5.347980px;}
._1e_c00365{margin-left:-2.861892px;}
._2_c00365{margin-left:-1.329768px;}
._25_c00365{width:1.445400px;}
._1c_c00365{width:3.141072px;}
._13_c00365{width:4.509648px;}
._9_c00365{width:5.774373px;}
._f_c00365{width:7.371540px;}
._3_c00365{width:8.744670px;}
._0_c00365{width:10.262340px;}
._8_c00365{width:11.490930px;}
._1_c00365{width:12.791790px;}
._10_c00365{width:14.164920px;}
._11_c00365{width:19.223820px;}
._b_c00365{width:21.102840px;}
._4_c00365{width:22.548240px;}
._a_c00365{width:23.993640px;}
._20_c00365{width:25.367760px;}
._1a_c00365{width:26.450820px;}
._19_c00365{width:30.091842px;}
._12_c00365{width:31.742370px;}
._7_c00365{width:35.003430px;}
._1d_c00365{width:36.568620px;}
._5_c00365{width:37.643760px;}
._24_c00365{width:39.136878px;}
._1f_c00365{width:41.917590px;}
._d_c00365{width:44.787600px;}
._e_c00365{width:47.770470px;}
._17_c00365{width:50.184090px;}
._6_c00365{width:52.131420px;}
._23_c00365{width:55.014696px;}
._16_c00365{width:61.590276px;}
._26_c00365{width:114.659314px;}
._18_c00365{width:316.401624px;}
.fc0_c00365{color:transparent;}
.fs12_c00365{font-size:5.346198px;}
.fs14_c00365{font-size:27.720000px;}
.fsc_c00365{font-size:31.363200px;}
.fs9_c00365{font-size:32.868000px;}
.fs13_c00365{font-size:34.056198px;}
.fs8_c00365{font-size:34.848000px;}
.fse_c00365{font-size:36.432000px;}
.fs7_c00365{font-size:39.600000px;}
.fsd_c00365{font-size:41.778000px;}
.fsb_c00365{font-size:46.332000px;}
.fs11_c00365{font-size:47.044800px;}
.fs5_c00365{font-size:49.896198px;}
.fs4_c00365{font-size:50.688000px;}
.fs3_c00365{font-size:51.321798px;}
.fsf_c00365{font-size:58.449798px;}
.fs6_c00365{font-size:66.330000px;}
.fs10_c00365{font-size:69.300000px;}
.fsa_c00365{font-size:70.884000px;}
.fs2_c00365{font-size:71.280000px;}
.fs1_c00365{font-size:72.270000px;}
.fs0_c00365{font-size:79.992198px;}
.y0_c00365{bottom:0.000000px;}
.y1_c00365{bottom:76.500000px;}
.y23_c00365{bottom:141.402720px;}
.y20_c00365{bottom:141.759120px;}
.y22_c00365{bottom:165.994320px;}
.y1e_c00365{bottom:170.267408px;}
.y1f_c00365{bottom:170.271120px;}
.y21_c00365{bottom:170.627520px;}
.y1d_c00365{bottom:203.059920px;}
.y1c_c00365{bottom:235.843770px;}
.y1b_c00365{bottom:300.708570px;}
.y19_c00365{bottom:332.789520px;}
.y1a_c00365{bottom:338.135520px;}
.y18_c00365{bottom:365.578320px;}
.y17_c00365{bottom:397.297920px;}
.y16_c00365{bottom:397.302375px;}
.y15_c00365{bottom:430.438170px;}
.y24_c00365{bottom:436.858320px;}
.y14_c00365{bottom:463.588320px;}
.y12_c00365{bottom:496.363260px;}
.y13_c00365{bottom:496.372170px;}
.y11_c00365{bottom:529.517370px;}
.y10_c00365{bottom:563.375370px;}
.ye_c00365{bottom:595.094970px;}
.yf_c00365{bottom:595.812720px;}
.yd_c00365{bottom:609.707370px;}
.yc_c00365{bottom:620.404320px;}
.yb_c00365{bottom:628.245120px;}
.ya_c00365{bottom:660.677520px;}
.y9_c00365{bottom:688.115370px;}
.y8_c00365{bottom:692.748570px;}
.y7_c00365{bottom:725.180970px;}
.y6_c00365{bottom:757.969770px;}
.y5_c00365{bottom:794.327520px;}
.y4_c00365{bottom:827.116320px;}
.y3_c00365{bottom:924.764970px;}
.y2_c00365{bottom:1074.809370px;}
.hd_c00365{height:20.887891px;}
.h15_c00365{height:28.911094px;}
.h13_c00365{height:31.331837px;}
.h12_c00365{height:33.230868px;}
.h5_c00365{height:34.180317px;}
.ha_c00365{height:34.201406px;}
.h10_c00365{height:34.280297px;}
.h14_c00365{height:35.519550px;}
.hf_c00365{height:38.927565px;}
.h9_c00365{height:41.301563px;}
.he_c00365{height:43.573148px;}
.hc_c00365{height:48.322828px;}
.h7_c00365{height:48.970390px;}
.h6_c00365{height:49.747500px;}
.h11_c00365{height:68.014160px;}
.h8_c00365{height:69.180117px;}
.hb_c00365{height:69.568770px;}
.h4_c00365{height:69.957422px;}
.h3_c00365{height:70.929053px;}
.h2_c00365{height:78.507968px;}
.h1_c00365{height:1110.000000px;}
.h0_c00365{height:1263.000000px;}
.w1_c00365{width:775.500000px;}
.w0_c00365{width:892.500000px;}
.x0_c00365{left:0.000000px;}
.x1_c00365{left:58.500000px;}
.x3_c00365{left:98.764035px;}
.x1d_c00365{left:100.273785px;}
.x6a_c00365{left:109.040235px;}
.x5f_c00365{left:110.985585px;}
.x45_c00365{left:120.271785px;}
.x4_c00365{left:121.276635px;}
.x3e_c00365{left:130.399485px;}
.x1e_c00365{left:131.547885px;}
.x79_c00365{left:133.285335px;}
.x2f_c00365{left:141.650835px;}
.x5a_c00365{left:142.744785px;}
.x64_c00365{left:143.754585px;}
.xe_c00365{left:152.189385px;}
.x50_c00365{left:153.709035px;}
.x7a_c00365{left:160.015335px;}
.x1f_c00365{left:163.975335px;}
.x7b_c00365{left:165.361335px;}
.x27_c00365{left:174.226785px;}
.x6e_c00365{left:175.662285px;}
.x30_c00365{left:185.299935px;}
.xf_c00365{left:187.789785px;}
.x6f_c00365{left:196.001835px;}
.x10_c00365{left:197.328435px;}
.x6b_c00365{left:198.338235px;}
.x5_c00365{left:208.277835px;}
.x4b_c00365{left:210.718185px;}
.x28_c00365{left:218.994585px;}
.x65_c00365{left:220.756785px;}
.x3d_c00365{left:222.504135px;}
.x35_c00365{left:228.978735px;}
.x4c_c00365{left:230.909235px;}
.x11_c00365{left:231.983385px;}
.x3f_c00365{left:233.171385px;}
.x6_c00365{left:240.883485px;}
.x67_c00365{left:242.180385px;}
.x20_c00365{left:251.981385px;}
.x71_c00365{left:253.055535px;}
.x31_c00365{left:263.856435px;}
.x12_c00365{left:274.419735px;}
.x46_c00365{left:275.632485px;}
.x13_c00365{left:277.983735px;}
.x40_c00365{left:286.334385px;}
.x7_c00365{left:296.085885px;}
.x51_c00365{left:297.130335px;}
.x41_c00365{left:306.807585px;}
.x14_c00365{left:308.634135px;}
.x7c_c00365{left:310.074585px;}
.x29_c00365{left:318.712335px;}
.x21_c00365{left:328.849935px;}
.x15_c00365{left:330.879435px;}
.x60_c00365{left:331.998135px;}
.x42_c00365{left:339.631035px;}
.x8_c00365{left:341.155635px;}
.x5b_c00365{left:342.200085px;}
.x16_c00365{left:345.368085px;}
.x36_c00365{left:352.595085px;}
.x61_c00365{left:353.659335px;}
.x9_c00365{left:362.826735px;}
.x68_c00365{left:364.346385px;}
.x22_c00365{left:369.152835px;}
.x23_c00365{left:374.013735px;}
.x43_c00365{left:375.394785px;}
.x37_c00365{left:385.705635px;}
.x52_c00365{left:387.725235px;}
.x53_c00365{left:397.130235px;}
.x72_c00365{left:398.243985px;}
.x6c_c00365{left:399.738885px;}
.x17_c00365{left:407.480685px;}
.xa_c00365{left:418.930035px;}
.x5c_c00365{left:421.320885px;}
.x54_c00365{left:429.968535px;}
.x73_c00365{left:431.022885px;}
.x38_c00365{left:440.427885px;}
.x18_c00365{left:451.367385px;}
.x70_c00365{left:452.693985px;}
.x39_c00365{left:462.509835px;}
.x7f_c00365{left:464.059185px;}
.xb_c00365{left:474.068085px;}
.x69_c00365{left:475.582785px;}
.x59_c00365{left:476.948985px;}
.x32_c00365{left:485.472885px;}
.x3a_c00365{left:494.625435px;}
.x24_c00365{left:496.580685px;}
.x75_c00365{left:497.630085px;}
.x3b_c00365{left:507.272685px;}
.x5d_c00365{left:508.727985px;}
.x33_c00365{left:518.137935px;}
.x2a_c00365{left:519.949635px;}
.x66_c00365{left:522.825585px;}
.xc_c00365{left:529.082385px;}
.x74_c00365{left:530.107035px;}
.x47_c00365{left:531.354435px;}
.x5e_c00365{left:540.670335px;}
.x19_c00365{left:551.852385px;}
.xd_c00365{left:560.910885px;}
.x55_c00365{left:562.153335px;}
.x4d_c00365{left:563.212635px;}
.x25_c00365{left:571.291035px;}
.x7e_c00365{left:572.686935px;}
.x62_c00365{left:576.399435px;}
.x34_c00365{left:583.690785px;}
.x48_c00365{left:584.997585px;}
.x1a_c00365{left:594.996585px;}
.x63_c00365{left:596.006385px;}
.x2b_c00365{left:606.049935px;}
.x26_c00365{left:617.202285px;}
.x76_c00365{left:618.345735px;}
.x1b_c00365{left:628.270485px;}
.x2c_c00365{left:639.487185px;}
.x7d_c00365{left:640.536585px;}
.x56_c00365{left:650.372235px;}
.x44_c00365{left:651.604785px;}
.x4e_c00365{left:663.049185px;}
.x2_c00365{left:672.627435px;}
.x2d_c00365{left:675.859785px;}
.x2e_c00365{left:683.161035px;}
.x80_c00365{left:686.126085px;}
.x6d_c00365{left:695.813235px;}
.x4a_c00365{left:699.956385px;}
.x1c_c00365{left:705.440985px;}
.x77_c00365{left:707.203185px;}
.x3c_c00365{left:716.311185px;}
.x57_c00365{left:717.593235px;}
.x49_c00365{left:727.899135px;}
.x78_c00365{left:730.052385px;}
.x4f_c00365{left:739.487085px;}
.x58_c00365{left:761.752185px;}
.x81_c00365{left:771.127485px;}
@media print{
.v1_c00365{vertical-align:-19.015040pt;}
.v3_c00365{vertical-align:-16.473600pt;}
.v0_c00365{vertical-align:0.000000pt;}
.v2_c00365{vertical-align:19.015040pt;}
.ls12_c00365{letter-spacing:-2.248400pt;}
.ls14_c00365{letter-spacing:-2.100648pt;}
.ls18_c00365{letter-spacing:-1.753752pt;}
.ls1c_c00365{letter-spacing:-1.299760pt;}
.ls16_c00365{letter-spacing:-1.232000pt;}
.ls1b_c00365{letter-spacing:-1.104928pt;}
.ls17_c00365{letter-spacing:-1.084160pt;}
.ls1f_c00365{letter-spacing:-0.423984pt;}
.lse_c00365{letter-spacing:0.000000pt;}
.ls22_c00365{letter-spacing:0.616704pt;}
.ls1d_c00365{letter-spacing:0.680064pt;}
.ls9_c00365{letter-spacing:1.233408pt;}
.ls21_c00365{letter-spacing:1.460800pt;}
.ls2_c00365{letter-spacing:1.785872pt;}
.lsc_c00365{letter-spacing:1.841598pt;}
.ls15_c00365{letter-spacing:1.888656pt;}
.ls1e_c00365{letter-spacing:1.895080pt;}
.ls4_c00365{letter-spacing:1.920776pt;}
.ls13_c00365{letter-spacing:2.217609pt;}
.ls11_c00365{letter-spacing:2.252800pt;}
.ls7_c00365{letter-spacing:2.351184pt;}
.ls8_c00365{letter-spacing:2.620992pt;}
.ls1_c00365{letter-spacing:2.935768pt;}
.ls24_c00365{letter-spacing:3.080000pt;}
.ls19_c00365{letter-spacing:3.150400pt;}
.lsf_c00365{letter-spacing:3.168000pt;}
.lsd_c00365{letter-spacing:3.212000pt;}
.lsb_c00365{letter-spacing:4.188800pt;}
.lsa_c00365{letter-spacing:7.708800pt;}
.ls5_c00365{letter-spacing:8.671520pt;}
.ls3_c00365{letter-spacing:12.783760pt;}
.ls0_c00365{letter-spacing:20.691909pt;}
.ls6_c00365{letter-spacing:23.635744pt;}
.ls1a_c00365{letter-spacing:27.878400pt;}
.ls25_c00365{letter-spacing:41.817600pt;}
.ls23_c00365{letter-spacing:44.352176pt;}
.ls10_c00365{letter-spacing:45.619376pt;}
.ls20_c00365{letter-spacing:51.955376pt;}
.ws1_c00365{word-spacing:-18.995768pt;}
.ws9_c00365{word-spacing:-18.680992pt;}
.ws5_c00365{word-spacing:-17.980776pt;}
.ws2_c00365{word-spacing:-17.845872pt;}
.wsb_c00365{word-spacing:-17.293408pt;}
.ws0_c00365{word-spacing:-16.060000pt;}
.ws7_c00365{word-spacing:-14.306248pt;}
.ws4_c00365{word-spacing:-13.959352pt;}
.wsa_c00365{word-spacing:-8.776064pt;}
.wse_c00365{word-spacing:0.000000pt;}
.ws8_c00365{word-spacing:2.442000pt;}
.wsd_c00365{word-spacing:2.505360pt;}
.wsc_c00365{word-spacing:2.762320pt;}
.ws6_c00365{word-spacing:3.982880pt;}
.ws3_c00365{word-spacing:5.203440pt;}
._21_c00365{margin-left:-13.940080pt;}
._22_c00365{margin-left:-12.591040pt;}
._15_c00365{margin-left:-9.140560pt;}
._c_c00365{margin-left:-7.907680pt;}
._1b_c00365{margin-left:-6.596304pt;}
._14_c00365{margin-left:-4.753760pt;}
._1e_c00365{margin-left:-2.543904pt;}
._2_c00365{margin-left:-1.182016pt;}
._25_c00365{width:1.284800pt;}
._1c_c00365{width:2.792064pt;}
._13_c00365{width:4.008576pt;}
._9_c00365{width:5.132776pt;}
._f_c00365{width:6.552480pt;}
._3_c00365{width:7.773040pt;}
._0_c00365{width:9.122080pt;}
._8_c00365{width:10.214160pt;}
._1_c00365{width:11.370480pt;}
._10_c00365{width:12.591040pt;}
._11_c00365{width:17.087840pt;}
._b_c00365{width:18.758080pt;}
._4_c00365{width:20.042880pt;}
._a_c00365{width:21.327680pt;}
._20_c00365{width:22.549120pt;}
._1a_c00365{width:23.511840pt;}
._19_c00365{width:26.748304pt;}
._12_c00365{width:28.215440pt;}
._7_c00365{width:31.114160pt;}
._1d_c00365{width:32.505440pt;}
._5_c00365{width:33.461120pt;}
._24_c00365{width:34.788336pt;}
._1f_c00365{width:37.260080pt;}
._d_c00365{width:39.811200pt;}
._e_c00365{width:42.462640pt;}
._17_c00365{width:44.608080pt;}
._6_c00365{width:46.339040pt;}
._23_c00365{width:48.901952pt;}
._16_c00365{width:54.746912pt;}
._26_c00365{width:101.919390pt;}
._18_c00365{width:281.245888pt;}
.fs12_c00365{font-size:4.752176pt;}
.fs14_c00365{font-size:24.640000pt;}
.fsc_c00365{font-size:27.878400pt;}
.fs9_c00365{font-size:29.216000pt;}
.fs13_c00365{font-size:30.272176pt;}
.fs8_c00365{font-size:30.976000pt;}
.fse_c00365{font-size:32.384000pt;}
.fs7_c00365{font-size:35.200000pt;}
.fsd_c00365{font-size:37.136000pt;}
.fsb_c00365{font-size:41.184000pt;}
.fs11_c00365{font-size:41.817600pt;}
.fs5_c00365{font-size:44.352176pt;}
.fs4_c00365{font-size:45.056000pt;}
.fs3_c00365{font-size:45.619376pt;}
.fsf_c00365{font-size:51.955376pt;}
.fs6_c00365{font-size:58.960000pt;}
.fs10_c00365{font-size:61.600000pt;}
.fsa_c00365{font-size:63.008000pt;}
.fs2_c00365{font-size:63.360000pt;}
.fs1_c00365{font-size:64.240000pt;}
.fs0_c00365{font-size:71.104176pt;}
.y0_c00365{bottom:0.000000pt;}
.y1_c00365{bottom:68.000000pt;}
.y23_c00365{bottom:125.691307pt;}
.y20_c00365{bottom:126.008107pt;}
.y22_c00365{bottom:147.550507pt;}
.y1e_c00365{bottom:151.348807pt;}
.y1f_c00365{bottom:151.352107pt;}
.y21_c00365{bottom:151.668907pt;}
.y1d_c00365{bottom:180.497707pt;}
.y1c_c00365{bottom:209.638907pt;}
.y1b_c00365{bottom:267.296507pt;}
.y19_c00365{bottom:295.812907pt;}
.y1a_c00365{bottom:300.564907pt;}
.y18_c00365{bottom:324.958507pt;}
.y17_c00365{bottom:353.153707pt;}
.y16_c00365{bottom:353.157667pt;}
.y15_c00365{bottom:382.611707pt;}
.y24_c00365{bottom:388.318507pt;}
.y14_c00365{bottom:412.078507pt;}
.y12_c00365{bottom:441.211787pt;}
.y13_c00365{bottom:441.219707pt;}
.y11_c00365{bottom:470.682107pt;}
.y10_c00365{bottom:500.778107pt;}
.ye_c00365{bottom:528.973307pt;}
.yf_c00365{bottom:529.611307pt;}
.yd_c00365{bottom:541.962107pt;}
.yc_c00365{bottom:551.470507pt;}
.yb_c00365{bottom:558.440107pt;}
.ya_c00365{bottom:587.268907pt;}
.y9_c00365{bottom:611.658107pt;}
.y8_c00365{bottom:615.776507pt;}
.y7_c00365{bottom:644.605307pt;}
.y6_c00365{bottom:673.750907pt;}
.y5_c00365{bottom:706.068907pt;}
.y4_c00365{bottom:735.214507pt;}
.y3_c00365{bottom:822.013307pt;}
.y2_c00365{bottom:955.386107pt;}
.hd_c00365{height:18.567014pt;}
.h15_c00365{height:25.698750pt;}
.h13_c00365{height:27.850522pt;}
.h12_c00365{height:29.538549pt;}
.h5_c00365{height:30.382504pt;}
.ha_c00365{height:30.401250pt;}
.h10_c00365{height:30.471375pt;}
.h14_c00365{height:31.572934pt;}
.hf_c00365{height:34.602280pt;}
.h9_c00365{height:36.712500pt;}
.he_c00365{height:38.731688pt;}
.hc_c00365{height:42.953625pt;}
.h7_c00365{height:43.529235pt;}
.h6_c00365{height:44.220000pt;}
.h11_c00365{height:60.457031pt;}
.h8_c00365{height:61.493438pt;}
.hb_c00365{height:61.838906pt;}
.h4_c00365{height:62.184375pt;}
.h3_c00365{height:63.048047pt;}
.h2_c00365{height:69.784860pt;}
.h1_c00365{height:986.666667pt;}
.h0_c00365{height:1122.666667pt;}
.w1_c00365{width:689.333333pt;}
.w0_c00365{width:793.333333pt;}
.x0_c00365{left:0.000000pt;}
.x1_c00365{left:52.000000pt;}
.x3_c00365{left:87.790253pt;}
.x1d_c00365{left:89.132253pt;}
.x6a_c00365{left:96.924653pt;}
.x5f_c00365{left:98.653853pt;}
.x45_c00365{left:106.908253pt;}
.x4_c00365{left:107.801453pt;}
.x3e_c00365{left:115.910653pt;}
.x1e_c00365{left:116.931453pt;}
.x79_c00365{left:118.475853pt;}
.x2f_c00365{left:125.911853pt;}
.x5a_c00365{left:126.884253pt;}
.x64_c00365{left:127.781853pt;}
.xe_c00365{left:135.279453pt;}
.x50_c00365{left:136.630253pt;}
.x7a_c00365{left:142.235853pt;}
.x1f_c00365{left:145.755853pt;}
.x7b_c00365{left:146.987853pt;}
.x27_c00365{left:154.868253pt;}
.x6e_c00365{left:156.144253pt;}
.x30_c00365{left:164.711053pt;}
.xf_c00365{left:166.924253pt;}
.x6f_c00365{left:174.223853pt;}
.x10_c00365{left:175.403053pt;}
.x6b_c00365{left:176.300653pt;}
.x5_c00365{left:185.135853pt;}
.x4b_c00365{left:187.305053pt;}
.x28_c00365{left:194.661853pt;}
.x65_c00365{left:196.228253pt;}
.x3d_c00365{left:197.781453pt;}
.x35_c00365{left:203.536653pt;}
.x4c_c00365{left:205.252653pt;}
.x11_c00365{left:206.207453pt;}
.x3f_c00365{left:207.263453pt;}
.x6_c00365{left:214.118653pt;}
.x67_c00365{left:215.271453pt;}
.x20_c00365{left:223.983453pt;}
.x71_c00365{left:224.938253pt;}
.x31_c00365{left:234.539053pt;}
.x12_c00365{left:243.928653pt;}
.x46_c00365{left:245.006653pt;}
.x13_c00365{left:247.096653pt;}
.x40_c00365{left:254.519453pt;}
.x7_c00365{left:263.187453pt;}
.x51_c00365{left:264.115853pt;}
.x41_c00365{left:272.717853pt;}
.x14_c00365{left:274.341453pt;}
.x7c_c00365{left:275.621853pt;}
.x29_c00365{left:283.299853pt;}
.x21_c00365{left:292.311053pt;}
.x15_c00365{left:294.115053pt;}
.x60_c00365{left:295.109453pt;}
.x42_c00365{left:301.894253pt;}
.x8_c00365{left:303.249453pt;}
.x5b_c00365{left:304.177853pt;}
.x16_c00365{left:306.993853pt;}
.x36_c00365{left:313.417853pt;}
.x61_c00365{left:314.363853pt;}
.x9_c00365{left:322.512653pt;}
.x68_c00365{left:323.863453pt;}
.x22_c00365{left:328.135853pt;}
.x23_c00365{left:332.456653pt;}
.x43_c00365{left:333.684253pt;}
.x37_c00365{left:342.849453pt;}
.x52_c00365{left:344.644653pt;}
.x53_c00365{left:353.004653pt;}
.x72_c00365{left:353.994653pt;}
.x6c_c00365{left:355.323453pt;}
.x17_c00365{left:362.205053pt;}
.xa_c00365{left:372.382253pt;}
.x5c_c00365{left:374.507453pt;}
.x54_c00365{left:382.194253pt;}
.x73_c00365{left:383.131453pt;}
.x38_c00365{left:391.491453pt;}
.x18_c00365{left:401.215453pt;}
.x70_c00365{left:402.394653pt;}
.x39_c00365{left:411.119853pt;}
.x7f_c00365{left:412.497053pt;}
.xb_c00365{left:421.393853pt;}
.x69_c00365{left:422.740253pt;}
.x59_c00365{left:423.954653pt;}
.x32_c00365{left:431.531453pt;}
.x3a_c00365{left:439.667053pt;}
.x24_c00365{left:441.405053pt;}
.x75_c00365{left:442.337853pt;}
.x3b_c00365{left:450.909053pt;}
.x5d_c00365{left:452.202653pt;}
.x33_c00365{left:460.567053pt;}
.x2a_c00365{left:462.177453pt;}
.x66_c00365{left:464.733853pt;}
.xc_c00365{left:470.295453pt;}
.x74_c00365{left:471.206253pt;}
.x47_c00365{left:472.315053pt;}
.x5e_c00365{left:480.595853pt;}
.x19_c00365{left:490.535453pt;}
.xd_c00365{left:498.587453pt;}
.x55_c00365{left:499.691853pt;}
.x4d_c00365{left:500.633453pt;}
.x25_c00365{left:507.814253pt;}
.x7e_c00365{left:509.055053pt;}
.x62_c00365{left:512.355053pt;}
.x34_c00365{left:518.836253pt;}
.x48_c00365{left:519.997853pt;}
.x1a_c00365{left:528.885853pt;}
.x63_c00365{left:529.783453pt;}
.x2b_c00365{left:538.711053pt;}
.x26_c00365{left:548.624253pt;}
.x76_c00365{left:549.640653pt;}
.x1b_c00365{left:558.462653pt;}
.x2c_c00365{left:568.433053pt;}
.x7d_c00365{left:569.365853pt;}
.x56_c00365{left:578.108653pt;}
.x44_c00365{left:579.204253pt;}
.x4e_c00365{left:589.377053pt;}
.x2_c00365{left:597.891053pt;}
.x2d_c00365{left:600.764253pt;}
.x2e_c00365{left:607.254253pt;}
.x80_c00365{left:609.889853pt;}
.x6d_c00365{left:618.500653pt;}
.x4a_c00365{left:622.183453pt;}
.x1c_c00365{left:627.058653pt;}
.x77_c00365{left:628.625053pt;}
.x3c_c00365{left:636.721053pt;}
.x57_c00365{left:637.860653pt;}
.x49_c00365{left:647.021453pt;}
.x78_c00365{left:648.935453pt;}
.x4f_c00365{left:657.321853pt;}
.x58_c00365{left:677.113053pt;}
.x81_c00365{left:685.446653pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6df2d5d5c7f57536cd8c6e6e.woff2')format("woff");}.ff1_c00366{font-family:ff1_c00366;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00366;src:url('chunks/assets/font_70b32a3987e36780c44f012c.woff2')format("woff");}.ff2_c00366{font-family:ff2_c00366;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00366;src:url('chunks/assets/font_3c5edc6b44d0032b564e3bcc.woff2')format("woff");}.ff3_c00366{font-family:ff3_c00366;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00366;src:url('chunks/assets/font_d7a8bec137d6d37444efa2c9.woff2')format("woff");}.ff4_c00366{font-family:ff4_c00366;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00366;src:url('chunks/assets/font_c6ded61e651d7566304888e3.woff2')format("woff");}.ff5_c00366{font-family:ff5_c00366;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mda_c00366{transform:matrix(0.055556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.055556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.055556,0.000000,0.000000,0.250000,0,0);}
.mf2_c00366{transform:matrix(0.059211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.059211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.059211,0.000000,0.000000,0.250000,0,0);}
.mdb_c00366{transform:matrix(0.062501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062501,0.000000,0.000000,0.250000,0,0);}
.m5e_c00366{transform:matrix(0.067501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.067501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.067501,0.000000,0.000000,0.250000,0,0);}
.m95_c00366{transform:matrix(0.068627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.068627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.068627,0.000000,0.000000,0.250000,0,0);}
.me6_c00366{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);}
.m21_c00366{transform:matrix(0.097222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097222,0.000000,0.000000,0.250000,0,0);}
.mfb_c00366{transform:matrix(0.108188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108188,0.000000,0.000000,0.250000,0,0);}
.m4c_c00366{transform:matrix(0.110377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110377,0.000000,0.000000,0.250000,0,0);}
.m90_c00366{transform:matrix(0.117596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117596,0.000000,0.000000,0.250000,0,0);}
.m86_c00366{transform:matrix(0.124565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124565,0.000000,0.000000,0.250000,0,0);}
.m8_c00366{transform:matrix(0.134160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134160,0.000000,0.000000,0.250000,0,0);}
.mfd_c00366{transform:matrix(0.134220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134220,0.000000,0.000000,0.250000,0,0);}
.mec_c00366{transform:matrix(0.134824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134824,0.000000,0.000000,0.250000,0,0);}
.me5_c00366{transform:matrix(0.138889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138889,0.000000,0.000000,0.250000,0,0);}
.ma3_c00366{transform:matrix(0.140477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140477,0.000000,0.000000,0.250000,0,0);}
.mcc_c00366{transform:matrix(0.150044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150044,0.000000,0.000000,0.250000,0,0);}
.m51_c00366{transform:matrix(0.155633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155633,0.000000,0.000000,0.250000,0,0);}
.mb6_c00366{transform:matrix(0.157795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157795,0.000000,0.000000,0.250000,0,0);}
.mdc_c00366{transform:matrix(0.159723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159723,0.000000,0.000000,0.250000,0,0);}
.ma4_c00366{transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);}
.ma8_c00366{transform:matrix(0.165700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165700,0.000000,0.000000,0.250000,0,0);}
.m10_c00366{transform:matrix(0.174378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174378,0.000000,0.000000,0.250000,0,0);}
.m22_c00366{transform:matrix(0.175925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175925,0.000000,0.000000,0.250000,0,0);}
.mff_c00366{transform:matrix(0.176667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176667,0.000000,0.000000,0.250000,0,0);}
.m9b_c00366{transform:matrix(0.178236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178236,0.000000,0.000000,0.250000,0,0);}
.m102_c00366{transform:matrix(0.178472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178472,0.000000,0.000000,0.250000,0,0);}
.me8_c00366{transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);}
.m7a_c00366{transform:matrix(0.181291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181291,0.000000,0.000000,0.250000,0,0);}
.mb7_c00366{transform:matrix(0.183594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183594,0.000000,0.000000,0.250000,0,0);}
.mf3_c00366{transform:matrix(0.184211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184211,0.000000,0.000000,0.250000,0,0);}
.m2c_c00366{transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);}
.m67_c00366{transform:matrix(0.192336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192336,0.000000,0.000000,0.250000,0,0);}
.m20_c00366{transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);}
.m25_c00366{transform:matrix(0.197394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197394,0.000000,0.000000,0.250000,0,0);}
.m71_c00366{transform:matrix(0.198213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198213,0.000000,0.000000,0.250000,0,0);}
.me7_c00366{transform:matrix(0.199074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199074,0.000000,0.000000,0.250000,0,0);}
.m2d_c00366{transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);}
.m34_c00366{transform:matrix(0.206251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206251,0.000000,0.000000,0.250000,0,0);}
.m8a_c00366{transform:matrix(0.209769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209769,0.000000,0.000000,0.250000,0,0);}
.m2b_c00366{transform:matrix(0.212499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212499,0.000000,0.000000,0.250000,0,0);}
.mca_c00366{transform:matrix(0.214247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214247,0.000000,0.000000,0.250000,0,0);}
.m18_c00366{transform:matrix(0.217641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217641,0.000000,0.000000,0.250000,0,0);}
.me9_c00366{transform:matrix(0.218055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218055,0.000000,0.000000,0.250000,0,0);}
.m93_c00366{transform:matrix(0.218165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218165,0.000000,0.000000,0.250000,0,0);}
.mab_c00366{transform:matrix(0.218914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218914,0.000000,0.000000,0.250000,0,0);}
.mce_c00366{transform:matrix(0.227809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227809,0.000000,0.000000,0.250000,0,0);}
.m5d_c00366{transform:matrix(0.230001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230001,0.000000,0.000000,0.250000,0,0);}
.mcb_c00366{transform:matrix(0.230672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230672,0.000000,0.000000,0.250000,0,0);}
.md3_c00366{transform:matrix(0.231419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231419,0.000000,0.000000,0.250000,0,0);}
.mac_c00366{transform:matrix(0.233665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233665,0.000000,0.000000,0.250000,0,0);}
.md5_c00366{transform:matrix(0.234592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234592,0.000000,0.000000,0.250000,0,0);}
.mf4_c00366{transform:matrix(0.235432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235432,0.000000,0.000000,0.250000,0,0);}
.m94_c00366{transform:matrix(0.247724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247724,0.000000,0.000000,0.250000,0,0);}
.m12_c00366{transform:matrix(0.247819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247819,0.000000,0.000000,0.250000,0,0);}
.m1_c00366{transform:matrix(0.248247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248247,0.000000,0.000000,0.250000,0,0);}
.m0_c00366{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00366{transform:matrix(0.250345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250345,0.000000,0.000000,0.250000,0,0);}
.m80_c00366{transform:matrix(0.252459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252459,0.000000,0.000000,0.250000,0,0);}
.m16_c00366{transform:matrix(0.253190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253190,0.000000,0.000000,0.250000,0,0);}
.mba_c00366{transform:matrix(0.255696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255696,0.000000,0.000000,0.250000,0,0);}
.m104_c00366{transform:matrix(0.256202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256202,0.000000,0.000000,0.250000,0,0);}
.mf1_c00366{transform:matrix(0.256463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256463,0.000000,0.000000,0.250000,0,0);}
.m40_c00366{transform:matrix(0.257222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257222,0.000000,0.000000,0.250000,0,0);}
.m23_c00366{transform:matrix(0.258860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258860,0.000000,0.000000,0.250000,0,0);}
.m103_c00366{transform:matrix(0.259889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259889,0.000000,0.000000,0.250000,0,0);}
.md4_c00366{transform:matrix(0.264032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264032,0.000000,0.000000,0.250000,0,0);}
.mfa_c00366{transform:matrix(0.264823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264823,0.000000,0.000000,0.250000,0,0);}
.m101_c00366{transform:matrix(0.265021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265021,0.000000,0.000000,0.250000,0,0);}
.mbe_c00366{transform:matrix(0.265140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265140,0.000000,0.000000,0.250000,0,0);}
.m37_c00366{transform:matrix(0.265297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265297,0.000000,0.000000,0.250000,0,0);}
.m106_c00366{transform:matrix(0.265366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265366,0.000000,0.000000,0.250000,0,0);}
.m8b_c00366{transform:matrix(0.267479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267479,0.000000,0.000000,0.250000,0,0);}
.m66_c00366{transform:matrix(0.267742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267742,0.000000,0.000000,0.250000,0,0);}
.m3d_c00366{transform:matrix(0.270034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270034,0.000000,0.000000,0.250000,0,0);}
.mc3_c00366{transform:matrix(0.270118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270118,0.000000,0.000000,0.250000,0,0);}
.mef_c00366{transform:matrix(0.270315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270315,0.000000,0.000000,0.250000,0,0);}
.mdd_c00366{transform:matrix(0.271671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271671,0.000000,0.000000,0.250000,0,0);}
.m53_c00366{transform:matrix(0.272346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272346,0.000000,0.000000,0.250000,0,0);}
.m47_c00366{transform:matrix(0.272828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272828,0.000000,0.000000,0.250000,0,0);}
.mb5_c00366{transform:matrix(0.273625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273625,0.000000,0.000000,0.250000,0,0);}
.m45_c00366{transform:matrix(0.274772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274772,0.000000,0.000000,0.250000,0,0);}
.m7d_c00366{transform:matrix(0.275935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275935,0.000000,0.000000,0.250000,0,0);}
.me_c00366{transform:matrix(0.276938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276938,0.000000,0.000000,0.250000,0,0);}
.mbd_c00366{transform:matrix(0.277035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277035,0.000000,0.000000,0.250000,0,0);}
.m78_c00366{transform:matrix(0.277171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277171,0.000000,0.000000,0.250000,0,0);}
.mf7_c00366{transform:matrix(0.277492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277492,0.000000,0.000000,0.250000,0,0);}
.m105_c00366{transform:matrix(0.277625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277625,0.000000,0.000000,0.250000,0,0);}
.mbb_c00366{transform:matrix(0.277643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277643,0.000000,0.000000,0.250000,0,0);}
.mdf_c00366{transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);}
.m91_c00366{transform:matrix(0.278692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278692,0.000000,0.000000,0.250000,0,0);}
.ma2_c00366{transform:matrix(0.280125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280125,0.000000,0.000000,0.250000,0,0);}
.me4_c00366{transform:matrix(0.280503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280503,0.000000,0.000000,0.250000,0,0);}
.m85_c00366{transform:matrix(0.281280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281280,0.000000,0.000000,0.250000,0,0);}
.m63_c00366{transform:matrix(0.281421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281421,0.000000,0.000000,0.250000,0,0);}
.m9f_c00366{transform:matrix(0.282201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282201,0.000000,0.000000,0.250000,0,0);}
.mb2_c00366{transform:matrix(0.282714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282714,0.000000,0.000000,0.250000,0,0);}
.m11_c00366{transform:matrix(0.284684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284684,0.000000,0.000000,0.250000,0,0);}
.ma5_c00366{transform:matrix(0.284789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284789,0.000000,0.000000,0.250000,0,0);}
.m98_c00366{transform:matrix(0.284846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284846,0.000000,0.000000,0.250000,0,0);}
.m76_c00366{transform:matrix(0.285320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285320,0.000000,0.000000,0.250000,0,0);}
.m60_c00366{transform:matrix(0.285408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285408,0.000000,0.000000,0.250000,0,0);}
.m96_c00366{transform:matrix(0.286348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286348,0.000000,0.000000,0.250000,0,0);}
.m41_c00366{transform:matrix(0.286526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286526,0.000000,0.000000,0.250000,0,0);}
.mc9_c00366{transform:matrix(0.286591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286591,0.000000,0.000000,0.250000,0,0);}
.m9c_c00366{transform:matrix(0.286815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286815,0.000000,0.000000,0.250000,0,0);}
.mc_c00366{transform:matrix(0.287241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287241,0.000000,0.000000,0.250000,0,0);}
.m4b_c00366{transform:matrix(0.287919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287919,0.000000,0.000000,0.250000,0,0);}
.mc6_c00366{transform:matrix(0.289915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289915,0.000000,0.000000,0.250000,0,0);}
.m82_c00366{transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);}
.m29_c00366{transform:matrix(0.290504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290504,0.000000,0.000000,0.250000,0,0);}
.m2e_c00366{transform:matrix(0.290607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290607,0.000000,0.000000,0.250000,0,0);}
.m49_c00366{transform:matrix(0.291148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291148,0.000000,0.000000,0.250000,0,0);}
.m55_c00366{transform:matrix(0.291154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291154,0.000000,0.000000,0.250000,0,0);}
.m69_c00366{transform:matrix(0.292280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292280,0.000000,0.000000,0.250000,0,0);}
.m92_c00366{transform:matrix(0.294713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294713,0.000000,0.000000,0.250000,0,0);}
.mc0_c00366{transform:matrix(0.295276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295276,0.000000,0.000000,0.250000,0,0);}
.mf6_c00366{transform:matrix(0.295286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295286,0.000000,0.000000,0.250000,0,0);}
.m6d_c00366{transform:matrix(0.295509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295509,0.000000,0.000000,0.250000,0,0);}
.m61_c00366{transform:matrix(0.295612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295612,0.000000,0.000000,0.250000,0,0);}
.m7b_c00366{transform:matrix(0.295772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295772,0.000000,0.000000,0.250000,0,0);}
.m6c_c00366{transform:matrix(0.296151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296151,0.000000,0.000000,0.250000,0,0);}
.mae_c00366{transform:matrix(0.296262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296262,0.000000,0.000000,0.250000,0,0);}
.m99_c00366{transform:matrix(0.296267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296267,0.000000,0.000000,0.250000,0,0);}
.m77_c00366{transform:matrix(0.296494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296494,0.000000,0.000000,0.250000,0,0);}
.m33_c00366{transform:matrix(0.296916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296916,0.000000,0.000000,0.250000,0,0);}
.m8e_c00366{transform:matrix(0.297291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297291,0.000000,0.000000,0.250000,0,0);}
.m54_c00366{transform:matrix(0.297370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297370,0.000000,0.000000,0.250000,0,0);}
.mc2_c00366{transform:matrix(0.298471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298471,0.000000,0.000000,0.250000,0,0);}
.mf0_c00366{transform:matrix(0.298945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298945,0.000000,0.000000,0.250000,0,0);}
.m81_c00366{transform:matrix(0.299213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299213,0.000000,0.000000,0.250000,0,0);}
.m2a_c00366{transform:matrix(0.299471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299471,0.000000,0.000000,0.250000,0,0);}
.m5f_c00366{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m75_c00366{transform:matrix(0.300904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300904,0.000000,0.000000,0.250000,0,0);}
.md_c00366{transform:matrix(0.301346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301346,0.000000,0.000000,0.250000,0,0);}
.m79_c00366{transform:matrix(0.302202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302202,0.000000,0.000000,0.250000,0,0);}
.ma_c00366{transform:matrix(0.302321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302321,0.000000,0.000000,0.250000,0,0);}
.m3c_c00366{transform:matrix(0.302416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302416,0.000000,0.000000,0.250000,0,0);}
.m14_c00366{transform:matrix(0.302575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302575,0.000000,0.000000,0.250000,0,0);}
.m5_c00366{transform:matrix(0.302674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302674,0.000000,0.000000,0.250000,0,0);}
.m65_c00366{transform:matrix(0.302850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302850,0.000000,0.000000,0.250000,0,0);}
.m4e_c00366{transform:matrix(0.302992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302992,0.000000,0.000000,0.250000,0,0);}
.m5b_c00366{transform:matrix(0.303019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303019,0.000000,0.000000,0.250000,0,0);}
.m74_c00366{transform:matrix(0.303304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303304,0.000000,0.000000,0.250000,0,0);}
.m73_c00366{transform:matrix(0.303514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303514,0.000000,0.000000,0.250000,0,0);}
.m44_c00366{transform:matrix(0.304796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304796,0.000000,0.000000,0.250000,0,0);}
.m3a_c00366{transform:matrix(0.305230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305230,0.000000,0.000000,0.250000,0,0);}
.m3b_c00366{transform:matrix(0.306051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306051,0.000000,0.000000,0.250000,0,0);}
.mbf_c00366{transform:matrix(0.306250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306250,0.000000,0.000000,0.250000,0,0);}
.mf5_c00366{transform:matrix(0.307142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307142,0.000000,0.000000,0.250000,0,0);}
.m35_c00366{transform:matrix(0.307446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307446,0.000000,0.000000,0.250000,0,0);}
.m31_c00366{transform:matrix(0.309324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309324,0.000000,0.000000,0.250000,0,0);}
.md7_c00366{transform:matrix(0.310437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310437,0.000000,0.000000,0.250000,0,0);}
.mb8_c00366{transform:matrix(0.310460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310460,0.000000,0.000000,0.250000,0,0);}
.ma7_c00366{transform:matrix(0.312038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312038,0.000000,0.000000,0.250000,0,0);}
.mb_c00366{transform:matrix(0.313095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313095,0.000000,0.000000,0.250000,0,0);}
.m50_c00366{transform:matrix(0.313140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313140,0.000000,0.000000,0.250000,0,0);}
.m6a_c00366{transform:matrix(0.314751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314751,0.000000,0.000000,0.250000,0,0);}
.m1b_c00366{transform:matrix(0.316790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316790,0.000000,0.000000,0.250000,0,0);}
.mc4_c00366{transform:matrix(0.317185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317185,0.000000,0.000000,0.250000,0,0);}
.mcf_c00366{transform:matrix(0.317558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317558,0.000000,0.000000,0.250000,0,0);}
.m48_c00366{transform:matrix(0.317656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317656,0.000000,0.000000,0.250000,0,0);}
.med_c00366{transform:matrix(0.317971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317971,0.000000,0.000000,0.250000,0,0);}
.m84_c00366{transform:matrix(0.318328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318328,0.000000,0.000000,0.250000,0,0);}
.md9_c00366{transform:matrix(0.319012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319012,0.000000,0.000000,0.250000,0,0);}
.mc1_c00366{transform:matrix(0.319780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319780,0.000000,0.000000,0.250000,0,0);}
.m5c_c00366{transform:matrix(0.320018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320018,0.000000,0.000000,0.250000,0,0);}
.me1_c00366{transform:matrix(0.320763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320763,0.000000,0.000000,0.250000,0,0);}
.ma0_c00366{transform:matrix(0.320799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320799,0.000000,0.000000,0.250000,0,0);}
.mb4_c00366{transform:matrix(0.321242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321242,0.000000,0.000000,0.250000,0,0);}
.m9_c00366{transform:matrix(0.321981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321981,0.000000,0.000000,0.250000,0,0);}
.m97_c00366{transform:matrix(0.322805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322805,0.000000,0.000000,0.250000,0,0);}
.md2_c00366{transform:matrix(0.322947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322947,0.000000,0.000000,0.250000,0,0);}
.m42_c00366{transform:matrix(0.323167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323167,0.000000,0.000000,0.250000,0,0);}
.m4a_c00366{transform:matrix(0.323641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323641,0.000000,0.000000,0.250000,0,0);}
.m3e_c00366{transform:matrix(0.323698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323698,0.000000,0.000000,0.250000,0,0);}
.md6_c00366{transform:matrix(0.323836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323836,0.000000,0.000000,0.250000,0,0);}
.mbc_c00366{transform:matrix(0.324116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324116,0.000000,0.000000,0.250000,0,0);}
.m58_c00366{transform:matrix(0.325248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325248,0.000000,0.000000,0.250000,0,0);}
.mb0_c00366{transform:matrix(0.325794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325794,0.000000,0.000000,0.250000,0,0);}
.me0_c00366{transform:matrix(0.326469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326469,0.000000,0.000000,0.250000,0,0);}
.m7f_c00366{transform:matrix(0.326940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326940,0.000000,0.000000,0.250000,0,0);}
.m9e_c00366{transform:matrix(0.327405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327405,0.000000,0.000000,0.250000,0,0);}
.mad_c00366{transform:matrix(0.327665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327665,0.000000,0.000000,0.250000,0,0);}
.m32_c00366{transform:matrix(0.328302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328302,0.000000,0.000000,0.250000,0,0);}
.m87_c00366{transform:matrix(0.329253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329253,0.000000,0.000000,0.250000,0,0);}
.m30_c00366{transform:matrix(0.329866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329866,0.000000,0.000000,0.250000,0,0);}
.maa_c00366{transform:matrix(0.330831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330831,0.000000,0.000000,0.250000,0,0);}
.m6_c00366{transform:matrix(0.330921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330921,0.000000,0.000000,0.250000,0,0);}
.m1f_c00366{transform:matrix(0.332848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332848,0.000000,0.000000,0.250000,0,0);}
.m4_c00366{transform:matrix(0.333414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333414,0.000000,0.000000,0.250000,0,0);}
.mb9_c00366{transform:matrix(0.333505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333505,0.000000,0.000000,0.250000,0,0);}
.m26_c00366{transform:matrix(0.333598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333598,0.000000,0.000000,0.250000,0,0);}
.m1e_c00366{transform:matrix(0.333870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333870,0.000000,0.000000,0.250000,0,0);}
.m1d_c00366{transform:matrix(0.335859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335859,0.000000,0.000000,0.250000,0,0);}
.m7c_c00366{transform:matrix(0.336632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336632,0.000000,0.000000,0.250000,0,0);}
.m6b_c00366{transform:matrix(0.337121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337121,0.000000,0.000000,0.250000,0,0);}
.m39_c00366{transform:matrix(0.337684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337684,0.000000,0.000000,0.250000,0,0);}
.md1_c00366{transform:matrix(0.338980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338980,0.000000,0.000000,0.250000,0,0);}
.mb1_c00366{transform:matrix(0.341213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341213,0.000000,0.000000,0.250000,0,0);}
.mc5_c00366{transform:matrix(0.342892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342892,0.000000,0.000000,0.250000,0,0);}
.mc7_c00366{transform:matrix(0.343809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343809,0.000000,0.000000,0.250000,0,0);}
.mea_c00366{transform:matrix(0.343827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343827,0.000000,0.000000,0.250000,0,0);}
.m15_c00366{transform:matrix(0.344267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344267,0.000000,0.000000,0.250000,0,0);}
.ma9_c00366{transform:matrix(0.345166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345166,0.000000,0.000000,0.250000,0,0);}
.m56_c00366{transform:matrix(0.347953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347953,0.000000,0.000000,0.250000,0,0);}
.m83_c00366{transform:matrix(0.347978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347978,0.000000,0.000000,0.250000,0,0);}
.m72_c00366{transform:matrix(0.348316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348316,0.000000,0.000000,0.250000,0,0);}
.meb_c00366{transform:matrix(0.348758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348758,0.000000,0.000000,0.250000,0,0);}
.m89_c00366{transform:matrix(0.349161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349161,0.000000,0.000000,0.250000,0,0);}
.m43_c00366{transform:matrix(0.350298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350298,0.000000,0.000000,0.250000,0,0);}
.maf_c00366{transform:matrix(0.351977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351977,0.000000,0.000000,0.250000,0,0);}
.m59_c00366{transform:matrix(0.352272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352272,0.000000,0.000000,0.250000,0,0);}
.m88_c00366{transform:matrix(0.352444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352444,0.000000,0.000000,0.250000,0,0);}
.m5a_c00366{transform:matrix(0.352741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352741,0.000000,0.000000,0.250000,0,0);}
.m27_c00366{transform:matrix(0.352912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352912,0.000000,0.000000,0.250000,0,0);}
.mf9_c00366{transform:matrix(0.353430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353430,0.000000,0.000000,0.250000,0,0);}
.mcd_c00366{transform:matrix(0.354072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354072,0.000000,0.000000,0.250000,0,0);}
.m24_c00366{transform:matrix(0.354694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354694,0.000000,0.000000,0.250000,0,0);}
.m57_c00366{transform:matrix(0.355118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355118,0.000000,0.000000,0.250000,0,0);}
.m7e_c00366{transform:matrix(0.356907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356907,0.000000,0.000000,0.250000,0,0);}
.m46_c00366{transform:matrix(0.357726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357726,0.000000,0.000000,0.250000,0,0);}
.m70_c00366{transform:matrix(0.357899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357899,0.000000,0.000000,0.250000,0,0);}
.mfc_c00366{transform:matrix(0.358614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358614,0.000000,0.000000,0.250000,0,0);}
.m9a_c00366{transform:matrix(0.359167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359167,0.000000,0.000000,0.250000,0,0);}
.m3_c00366{transform:matrix(0.360326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360326,0.000000,0.000000,0.250000,0,0);}
.m8c_c00366{transform:matrix(0.361883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361883,0.000000,0.000000,0.250000,0,0);}
.mde_c00366{transform:matrix(0.362072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362072,0.000000,0.000000,0.250000,0,0);}
.m28_c00366{transform:matrix(0.363517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363517,0.000000,0.000000,0.250000,0,0);}
.m13_c00366{transform:matrix(0.363817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363817,0.000000,0.000000,0.250000,0,0);}
.me2_c00366{transform:matrix(0.366241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366241,0.000000,0.000000,0.250000,0,0);}
.m8d_c00366{transform:matrix(0.367652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367652,0.000000,0.000000,0.250000,0,0);}
.mb3_c00366{transform:matrix(0.369225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369225,0.000000,0.000000,0.250000,0,0);}
.m2f_c00366{transform:matrix(0.369508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369508,0.000000,0.000000,0.250000,0,0);}
.md8_c00366{transform:matrix(0.370126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370126,0.000000,0.000000,0.250000,0,0);}
.m52_c00366{transform:matrix(0.370412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370412,0.000000,0.000000,0.250000,0,0);}
.m4f_c00366{transform:matrix(0.370705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370705,0.000000,0.000000,0.250000,0,0);}
.m6e_c00366{transform:matrix(0.370926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370926,0.000000,0.000000,0.250000,0,0);}
.m3f_c00366{transform:matrix(0.375883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375883,0.000000,0.000000,0.250000,0,0);}
.m38_c00366{transform:matrix(0.378559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378559,0.000000,0.000000,0.250000,0,0);}
.mf_c00366{transform:matrix(0.378952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378952,0.000000,0.000000,0.250000,0,0);}
.ma6_c00366{transform:matrix(0.379232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379232,0.000000,0.000000,0.250000,0,0);}
.m68_c00366{transform:matrix(0.381057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381057,0.000000,0.000000,0.250000,0,0);}
.m7_c00366{transform:matrix(0.381284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381284,0.000000,0.000000,0.250000,0,0);}
.m9d_c00366{transform:matrix(0.383541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383541,0.000000,0.000000,0.250000,0,0);}
.mc8_c00366{transform:matrix(0.384031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384031,0.000000,0.000000,0.250000,0,0);}
.m8f_c00366{transform:matrix(0.385361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385361,0.000000,0.000000,0.250000,0,0);}
.mee_c00366{transform:matrix(0.387627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387627,0.000000,0.000000,0.250000,0,0);}
.m1a_c00366{transform:matrix(0.391820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391820,0.000000,0.000000,0.250000,0,0);}
.m17_c00366{transform:matrix(0.394032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394032,0.000000,0.000000,0.250000,0,0);}
.m64_c00366{transform:matrix(0.395715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395715,0.000000,0.000000,0.250000,0,0);}
.m4d_c00366{transform:matrix(0.396470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396470,0.000000,0.000000,0.250000,0,0);}
.m36_c00366{transform:matrix(0.398379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398379,0.000000,0.000000,0.250000,0,0);}
.mfe_c00366{transform:matrix(0.405888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405888,0.000000,0.000000,0.250000,0,0);}
.m19_c00366{transform:matrix(0.408779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408779,0.000000,0.000000,0.250000,0,0);}
.md0_c00366{transform:matrix(0.409626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409626,0.000000,0.000000,0.250000,0,0);}
.m2_c00366{transform:matrix(0.415612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415612,0.000000,0.000000,0.250000,0,0);}
.m62_c00366{transform:matrix(0.420929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420929,0.000000,0.000000,0.250000,0,0);}
.me3_c00366{transform:matrix(0.446694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446694,0.000000,0.000000,0.250000,0,0);}
.mf8_c00366{transform:matrix(0.447876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447876,0.000000,0.000000,0.250000,0,0);}
.ma1_c00366{transform:matrix(0.458274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458274,0.000000,0.000000,0.250000,0,0);}
.m1c_c00366{transform:matrix(0.463230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463230,0.000000,0.000000,0.250000,0,0);}
.m100_c00366{transform:matrix(0.588149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588149,0.000000,0.000000,0.250000,0,0);}
.v2_c00366{vertical-align:-2.851200px;}
.v0_c00366{vertical-align:0.000000px;}
.v3_c00366{vertical-align:15.681600px;}
.v1_c00366{vertical-align:19.985328px;}
.ls6_c00366{letter-spacing:-2.993767px;}
.ls8_c00366{letter-spacing:-2.515590px;}
.ls1e_c00366{letter-spacing:-2.480940px;}
.ls14_c00366{letter-spacing:-2.474017px;}
.ls28_c00366{letter-spacing:-1.995840px;}
.ls18_c00366{letter-spacing:-1.940400px;}
.ls10_c00366{letter-spacing:-1.919036px;}
.lsa_c00366{letter-spacing:-1.832787px;}
.ls19_c00366{letter-spacing:-1.392930px;}
.ls13_c00366{letter-spacing:-1.365606px;}
.ls20_c00366{letter-spacing:-1.351231px;}
.lsf_c00366{letter-spacing:-1.042173px;}
.ls9_c00366{letter-spacing:-0.129373px;}
.ls5_c00366{letter-spacing:0.000000px;}
.ls12_c00366{letter-spacing:0.265934px;}
.lse_c00366{letter-spacing:0.280309px;}
.ls22_c00366{letter-spacing:0.373745px;}
.ls1b_c00366{letter-spacing:1.138500px;}
.ls4_c00366{letter-spacing:1.710601px;}
.ls16_c00366{letter-spacing:1.732500px;}
.ls1f_c00366{letter-spacing:1.804037px;}
.lsb_c00366{letter-spacing:2.077159px;}
.ls25_c00366{letter-spacing:2.128500px;}
.ls2_c00366{letter-spacing:2.170595px;}
.ls15_c00366{letter-spacing:2.450903px;}
.ls26_c00366{letter-spacing:2.455200px;}
.ls29_c00366{letter-spacing:2.484900px;}
.ls21_c00366{letter-spacing:2.738399px;}
.ls27_c00366{letter-spacing:2.851200px;}
.ls2a_c00366{letter-spacing:3.029400px;}
.ls24_c00366{letter-spacing:3.286810px;}
.ls1d_c00366{letter-spacing:3.425400px;}
.ls1c_c00366{letter-spacing:3.449952px;}
.ls3_c00366{letter-spacing:3.493076px;}
.ls7_c00366{letter-spacing:3.593700px;}
.ls2b_c00366{letter-spacing:3.643200px;}
.ls1_c00366{letter-spacing:4.910400px;}
.ls1a_c00366{letter-spacing:24.235398px;}
.ls0_c00366{letter-spacing:25.515270px;}
.ls11_c00366{letter-spacing:35.640000px;}
.lsd_c00366{letter-spacing:49.896198px;}
.lsc_c00366{letter-spacing:51.321798px;}
.ls23_c00366{letter-spacing:54.172998px;}
.ls17_c00366{letter-spacing:58.449798px;}
.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;}
}
.wsc_c00366{word-spacing:-21.461576px;}
.ws10_c00366{word-spacing:-19.679101px;}
.ws9_c00366{word-spacing:-18.342245px;}
.ws3_c00366{word-spacing:-18.248809px;}
.ws1_c00366{word-spacing:-17.968500px;}
.ws0_c00366{word-spacing:-17.839127px;}
.wsf_c00366{word-spacing:-17.424050px;}
.ws6_c00366{word-spacing:-16.602894px;}
.ws2_c00366{word-spacing:-16.135713px;}
.wsb_c00366{word-spacing:-3.593700px;}
.ws11_c00366{word-spacing:0.000000px;}
.ws7_c00366{word-spacing:1.365606px;}
.wsd_c00366{word-spacing:4.743684px;}
.ws8_c00366{word-spacing:5.174928px;}
.ws5_c00366{word-spacing:5.821794px;}
.ws4_c00366{word-spacing:6.109290px;}
.wsa_c00366{word-spacing:6.109488px;}
.wse_c00366{word-spacing:10.350648px;}
._1f_c00366{margin-left:-12.078099px;}
._21_c00366{margin-left:-4.900500px;}
._14_c00366{margin-left:-2.443716px;}
._15_c00366{margin-left:-1.006236px;}
._5_c00366{width:1.643400px;}
._3_c00366{width:3.005937px;}
._9_c00366{width:4.096818px;}
._4_c00366{width:7.115526px;}
._1_c00366{width:9.200664px;}
._0_c00366{width:10.434501px;}
._a_c00366{width:11.499444px;}
._f_c00366{width:12.936924px;}
._18_c00366{width:14.374800px;}
._1b_c00366{width:16.602894px;}
._11_c00366{width:22.640508px;}
._e_c00366{width:24.723864px;}
._12_c00366{width:26.091054px;}
._1d_c00366{width:31.116334px;}
._8_c00366{width:32.725044px;}
._b_c00366{width:34.355772px;}
._10_c00366{width:35.362800px;}
._13_c00366{width:36.634970px;}
._17_c00366{width:38.668212px;}
._c_c00366{width:39.890070px;}
._2_c00366{width:41.397444px;}
._1a_c00366{width:42.867000px;}
._1c_c00366{width:44.346258px;}
._16_c00366{width:45.915408px;}
._19_c00366{width:47.242602px;}
._d_c00366{width:48.586824px;}
._6_c00366{width:65.295538px;}
._7_c00366{width:84.817928px;}
._20_c00366{width:132.974820px;}
._1e_c00366{width:141.431400px;}
._22_c00366{width:151.232400px;}
.fc0_c00366{color:transparent;}
.fs5_c00366{font-size:5.742198px;}
.fs4_c00366{font-size:19.800000px;}
.fs14_c00366{font-size:22.770000px;}
.fs13_c00366{font-size:24.235398px;}
.fs18_c00366{font-size:27.720000px;}
.fs1c_c00366{font-size:32.670000px;}
.fs12_c00366{font-size:32.868000px;}
.fsa_c00366{font-size:33.264000px;}
.fsd_c00366{font-size:34.650000px;}
.fs8_c00366{font-size:35.640000px;}
.fs11_c00366{font-size:39.798000px;}
.fs1f_c00366{font-size:42.570000px;}
.fs10_c00366{font-size:49.104000px;}
.fs21_c00366{font-size:49.698000px;}
.fs6_c00366{font-size:49.896198px;}
.fs3_c00366{font-size:51.321798px;}
.fs1a_c00366{font-size:54.172998px;}
.fsf_c00366{font-size:55.440000px;}
.fs20_c00366{font-size:57.024000px;}
.fse_c00366{font-size:58.449798px;}
.fs22_c00366{font-size:60.588000px;}
.fs1d_c00366{font-size:62.568000px;}
.fs2_c00366{font-size:64.152198px;}
.fsb_c00366{font-size:64.548000px;}
.fs1b_c00366{font-size:65.538000px;}
.fs1e_c00366{font-size:65.736198px;}
.fs23_c00366{font-size:66.330000px;}
.fs16_c00366{font-size:68.508000px;}
.fs19_c00366{font-size:69.696198px;}
.fsc_c00366{font-size:70.686198px;}
.fs17_c00366{font-size:70.884000px;}
.fs9_c00366{font-size:71.676198px;}
.fs1_c00366{font-size:71.874000px;}
.fs24_c00366{font-size:72.864000px;}
.fs15_c00366{font-size:73.260000px;}
.fs7_c00366{font-size:79.596198px;}
.fs0_c00366{font-size:85.536198px;}
.y0_c00366{bottom:0.000000px;}
.y1_c00366{bottom:76.500000px;}
.y23_c00366{bottom:147.461535px;}
.y25_c00366{bottom:149.599935px;}
.y24_c00366{bottom:150.669135px;}
.y22_c00366{bottom:177.755535px;}
.y21_c00366{bottom:211.257135px;}
.y20_c00366{bottom:243.684585px;}
.y1f_c00366{bottom:266.850585px;}
.y1e_c00366{bottom:276.473385px;}
.y1d_c00366{bottom:309.262185px;}
.y1c_c00366{bottom:341.694585px;}
.y1b_c00366{bottom:375.908985px;}
.y1a_c00366{bottom:408.697785px;}
.y19_c00366{bottom:441.491535px;}
.y15_c00366{bottom:473.206185px;}
.y17_c00366{bottom:473.567535px;}
.y18_c00366{bottom:473.918985px;}
.y16_c00366{bottom:478.200735px;}
.y14_c00366{bottom:478.913535px;}
.y12_c00366{bottom:538.432335px;}
.y13_c00366{bottom:544.134735px;}
.y11_c00366{bottom:571.216185px;}
.y10_c00366{bottom:603.653535px;}
.yf_c00366{bottom:624.676185px;}
.ye_c00366{bottom:635.729535px;}
.yc_c00366{bottom:667.449135px;}
.yd_c00366{bottom:668.156985px;}
.yb_c00366{bottom:700.232985px;}
.ya_c00366{bottom:733.021785px;}
.y9_c00366{bottom:765.810585px;}
.y8_c00366{bottom:797.891535px;}
.y7_c00366{bottom:830.323935px;}
.y6_c00366{bottom:857.761785px;}
.y5_c00366{bottom:863.112735px;}
.y4_c00366{bottom:896.609385px;}
.y3_c00366{bottom:930.115935px;}
.y2_c00366{bottom:1082.650185px;}
.h12_c00366{height:16.140775px;}
.h5_c00366{height:20.650781px;}
.h8_c00366{height:23.736240px;}
.h13_c00366{height:23.748398px;}
.h17_c00366{height:28.911094px;}
.h6_c00366{height:33.230868px;}
.h4_c00366{height:34.180317px;}
.h11_c00366{height:34.280297px;}
.h9_c00366{height:34.693313px;}
.h19_c00366{height:36.079217px;}
.hc_c00366{height:36.138867px;}
.hd_c00366{height:38.927565px;}
.h10_c00366{height:41.508070px;}
.h1c_c00366{height:44.399180px;}
.h1d_c00366{height:48.192891px;}
.h1f_c00366{height:48.775869px;}
.he_c00366{height:54.411328px;}
.h1e_c00366{height:59.474250px;}
.h20_c00366{height:63.191391px;}
.ha_c00366{height:67.321547px;}
.hf_c00366{height:68.178219px;}
.h18_c00366{height:68.403007px;}
.h1b_c00366{height:68.560800px;}
.h21_c00366{height:69.180117px;}
.hb_c00366{height:69.374638px;}
.h16_c00366{height:69.568770px;}
.h3_c00366{height:70.540400px;}
.h15_c00366{height:71.451703px;}
.h22_c00366{height:71.512031px;}
.h14_c00366{height:71.900684px;}
.h1a_c00366{height:78.086869px;}
.h7_c00366{height:78.119315px;}
.h2_c00366{height:83.949101px;}
.h1_c00366{height:1110.000000px;}
.h0_c00366{height:1263.000000px;}
.w1_c00366{width:775.500000px;}
.w0_c00366{width:892.500000px;}
.x0_c00366{left:0.000000px;}
.x1_c00366{left:58.500000px;}
.x17_c00366{left:97.175085px;}
.x4_c00366{left:98.348235px;}
.x5d_c00366{left:100.303485px;}
.x8e_c00366{left:101.357835px;}
.x4a_c00366{left:110.475735px;}
.x8f_c00366{left:111.881535px;}
.x51_c00366{left:119.341185px;}
.x5_c00366{left:120.405435px;}
.x72_c00366{left:121.835985px;}
.x4b_c00366{left:130.434135px;}
.x30_c00366{left:131.632035px;}
.x83_c00366{left:133.102185px;}
.x90_c00366{left:135.077235px;}
.x6_c00366{left:142.368585px;}
.x52_c00366{left:143.383335px;}
.x4c_c00366{left:145.110885px;}
.x7e_c00366{left:146.828535px;}
.x7f_c00366{left:149.323335px;}
.x5e_c00366{left:152.125035px;}
.x7_c00366{left:153.357585px;}
.x80_c00366{left:155.382135px;}
.x64_c00366{left:159.649035px;}
.x25_c00366{left:163.544685px;}
.x18_c00366{left:164.970285px;}
.x62_c00366{left:167.331435px;}
.x63_c00366{left:170.489535px;}
.x26_c00366{left:174.464385px;}
.x65_c00366{left:175.662285px;}
.x89_c00366{left:176.924535px;}
.x5a_c00366{left:184.928685px;}
.x8_c00366{left:185.968185px;}
.x8c_c00366{left:187.131435px;}
.x5f_c00366{left:192.249735px;}
.x31_c00366{left:197.635335px;}
.x19_c00366{left:198.724335px;}
.x48_c00366{left:206.337435px;}
.x27_c00366{left:208.292685px;}
.x91_c00366{left:210.064785px;}
.x28_c00366{left:219.093585px;}
.x3c_c00366{left:220.340985px;}
.x9_c00366{left:225.993885px;}
.x73_c00366{left:229.147035px;}
.x1a_c00366{left:230.290485px;}
.xa_c00366{left:231.300285px;}
.x84_c00366{left:232.715985px;}
.x66_c00366{left:235.057335px;}
.x32_c00366{left:241.140885px;}
.x42_c00366{left:242.853585px;}
.x78_c00366{left:244.373235px;}
.x85_c00366{left:246.620535px;}
.x29_c00366{left:252.486285px;}
.x86_c00366{left:254.456385px;}
.x43_c00366{left:263.643585px;}
.x1b_c00366{left:264.950385px;}
.x1c_c00366{left:273.984135px;}
.x4d_c00366{left:275.974035px;}
.x92_c00366{left:282.646635px;}
.x7c_c00366{left:285.077085px;}
.x55_c00366{left:287.047185px;}
.x8d_c00366{left:289.695435px;}
.x7d_c00366{left:293.947485px;}
.xb_c00366{left:296.679885px;}
.x1d_c00366{left:297.739185px;}
.x39_c00366{left:307.173885px;}
.x33_c00366{left:308.698485px;}
.x79_c00366{left:318.197535px;}
.x49_c00366{left:319.420185px;}
.xc_c00366{left:321.023985px;}
.x5b_c00366{left:329.810235px;}
.x8a_c00366{left:330.904185px;}
.x2a_c00366{left:341.120985px;}
.x60_c00366{left:344.630535px;}
.x1e_c00366{left:352.263435px;}
.x6a_c00366{left:353.891985px;}
.x2b_c00366{left:363.178185px;}
.x87_c00366{left:365.098785px;}
.x34_c00366{left:374.350335px;}
.x4e_c00366{left:376.166985px;}
.x3a_c00366{left:385.185885px;}
.x67_c00366{left:387.106485px;}
.x1f_c00366{left:395.907585px;}
.x3d_c00366{left:397.110435px;}
.xd_c00366{left:407.970735px;}
.xe_c00366{left:418.727085px;}
.x44_c00366{left:428.711235px;}
.x20_c00366{left:429.933885px;}
.x6f_c00366{left:432.725685px;}
.xf_c00366{left:440.952585px;}
.x94_c00366{left:449.738835px;}
.x45_c00366{left:451.471335px;}
.x61_c00366{left:454.372035px;}
.x2c_c00366{left:463.395885px;}
.x3e_c00366{left:465.153135px;}
.x74_c00366{left:473.597835px;}
.x70_c00366{left:474.701685px;}
.x10_c00366{left:484.839285px;}
.x56_c00366{left:485.883735px;}
.x93_c00366{left:488.477535px;}
.x11_c00366{left:496.214385px;}
.x2d_c00366{left:507.322185px;}
.x81_c00366{left:508.673535px;}
.x12_c00366{left:518.420085px;}
.x71_c00366{left:519.776385px;}
.x88_c00366{left:524.003685px;}
.x3f_c00366{left:529.052685px;}
.x6b_c00366{left:530.131785px;}
.x21_c00366{left:540.457485px;}
.x95_c00366{left:541.843485px;}
.x8b_c00366{left:550.263435px;}
.x35_c00366{left:551.288085px;}
.x68_c00366{left:552.555285px;}
.x57_c00366{left:554.258085px;}
.x75_c00366{left:561.311835px;}
.x22_c00366{left:562.846335px;}
.x13_c00366{left:573.568035px;}
.x7a_c00366{left:574.632285px;}
.x46_c00366{left:583.012635px;}
.x58_c00366{left:584.997585px;}
.x40_c00366{left:594.778785px;}
.x69_c00366{left:596.758785px;}
.x3b_c00366{left:605.149035px;}
.x2e_c00366{left:606.940935px;}
.x6c_c00366{left:616.068735px;}
.x5c_c00366{left:618.439785px;}
.x4f_c00366{left:622.488885px;}
.x23_c00366{left:628.844685px;}
.x2f_c00366{left:633.670935px;}
.x36_c00366{left:640.229685px;}
.x47_c00366{left:650.901885px;}
.x59_c00366{left:651.966135px;}
.x53_c00366{left:653.713485px;}
.x37_c00366{left:662.272035px;}
.x96_c00366{left:663.732285px;}
.x2_c00366{left:672.968985px;}
.x24_c00366{left:674.453985px;}
.x6d_c00366{left:683.537235px;}
.x3_c00366{left:685.086585px;}
.x14_c00366{left:694.778685px;}
.x6e_c00366{left:695.818185px;}
.x76_c00366{left:704.545035px;}
.x38_c00366{left:706.846785px;}
.x15_c00366{left:717.573435px;}
.x7b_c00366{left:718.919835px;}
.x50_c00366{left:728.498085px;}
.x77_c00366{left:730.141485px;}
.x16_c00366{left:739.358385px;}
.x97_c00366{left:742.922385px;}
.x41_c00366{left:750.347385px;}
.x82_c00366{left:751.416585px;}
.x54_c00366{left:764.529135px;}
@media print{
.v2_c00366{vertical-align:-2.534400pt;}
.v0_c00366{vertical-align:0.000000pt;}
.v3_c00366{vertical-align:13.939200pt;}
.v1_c00366{vertical-align:17.764736pt;}
.ls6_c00366{letter-spacing:-2.661126pt;}
.ls8_c00366{letter-spacing:-2.236080pt;}
.ls1e_c00366{letter-spacing:-2.205280pt;}
.ls14_c00366{letter-spacing:-2.199126pt;}
.ls28_c00366{letter-spacing:-1.774080pt;}
.ls18_c00366{letter-spacing:-1.724800pt;}
.ls10_c00366{letter-spacing:-1.705810pt;}
.lsa_c00366{letter-spacing:-1.629144pt;}
.ls19_c00366{letter-spacing:-1.238160pt;}
.ls13_c00366{letter-spacing:-1.213872pt;}
.ls20_c00366{letter-spacing:-1.201094pt;}
.lsf_c00366{letter-spacing:-0.926376pt;}
.ls9_c00366{letter-spacing:-0.114998pt;}
.ls5_c00366{letter-spacing:0.000000pt;}
.ls12_c00366{letter-spacing:0.236386pt;}
.lse_c00366{letter-spacing:0.249163pt;}
.ls22_c00366{letter-spacing:0.332218pt;}
.ls1b_c00366{letter-spacing:1.012000pt;}
.ls4_c00366{letter-spacing:1.520534pt;}
.ls16_c00366{letter-spacing:1.540000pt;}
.ls1f_c00366{letter-spacing:1.603589pt;}
.lsb_c00366{letter-spacing:1.846363pt;}
.ls25_c00366{letter-spacing:1.892000pt;}
.ls2_c00366{letter-spacing:1.929418pt;}
.ls15_c00366{letter-spacing:2.178581pt;}
.ls26_c00366{letter-spacing:2.182400pt;}
.ls29_c00366{letter-spacing:2.208800pt;}
.ls21_c00366{letter-spacing:2.434133pt;}
.ls27_c00366{letter-spacing:2.534400pt;}
.ls2a_c00366{letter-spacing:2.692800pt;}
.ls24_c00366{letter-spacing:2.921609pt;}
.ls1d_c00366{letter-spacing:3.044800pt;}
.ls1c_c00366{letter-spacing:3.066624pt;}
.ls3_c00366{letter-spacing:3.104957pt;}
.ls7_c00366{letter-spacing:3.194400pt;}
.ls2b_c00366{letter-spacing:3.238400pt;}
.ls1_c00366{letter-spacing:4.364800pt;}
.ls1a_c00366{letter-spacing:21.542576pt;}
.ls0_c00366{letter-spacing:22.680240pt;}
.ls11_c00366{letter-spacing:31.680000pt;}
.lsd_c00366{letter-spacing:44.352176pt;}
.lsc_c00366{letter-spacing:45.619376pt;}
.ls23_c00366{letter-spacing:48.153776pt;}
.ls17_c00366{letter-spacing:51.955376pt;}
.wsc_c00366{word-spacing:-19.076957pt;}
.ws10_c00366{word-spacing:-17.492534pt;}
.ws9_c00366{word-spacing:-16.304218pt;}
.ws3_c00366{word-spacing:-16.221163pt;}
.ws1_c00366{word-spacing:-15.972000pt;}
.ws0_c00366{word-spacing:-15.857002pt;}
.wsf_c00366{word-spacing:-15.488044pt;}
.ws6_c00366{word-spacing:-14.758128pt;}
.ws2_c00366{word-spacing:-14.342856pt;}
.wsb_c00366{word-spacing:-3.194400pt;}
.ws11_c00366{word-spacing:0.000000pt;}
.ws7_c00366{word-spacing:1.213872pt;}
.wsd_c00366{word-spacing:4.216608pt;}
.ws8_c00366{word-spacing:4.599936pt;}
.ws5_c00366{word-spacing:5.174928pt;}
.ws4_c00366{word-spacing:5.430480pt;}
.wsa_c00366{word-spacing:5.430656pt;}
.wse_c00366{word-spacing:9.200576pt;}
._1f_c00366{margin-left:-10.736088pt;}
._21_c00366{margin-left:-4.356000pt;}
._14_c00366{margin-left:-2.172192pt;}
._15_c00366{margin-left:-0.894432pt;}
._5_c00366{width:1.460800pt;}
._3_c00366{width:2.671944pt;}
._9_c00366{width:3.641616pt;}
._4_c00366{width:6.324912pt;}
._1_c00366{width:8.178368pt;}
._0_c00366{width:9.275112pt;}
._a_c00366{width:10.221728pt;}
._f_c00366{width:11.499488pt;}
._18_c00366{width:12.777600pt;}
._1b_c00366{width:14.758128pt;}
._11_c00366{width:20.124896pt;}
._e_c00366{width:21.976768pt;}
._12_c00366{width:23.192048pt;}
._1d_c00366{width:27.658963pt;}
._8_c00366{width:29.088928pt;}
._b_c00366{width:30.538464pt;}
._10_c00366{width:31.433600pt;}
._13_c00366{width:32.564418pt;}
._17_c00366{width:34.371744pt;}
._c_c00366{width:35.457840pt;}
._2_c00366{width:36.797728pt;}
._1a_c00366{width:38.104000pt;}
._1c_c00366{width:39.418896pt;}
._16_c00366{width:40.813696pt;}
._19_c00366{width:41.993424pt;}
._d_c00366{width:43.188288pt;}
._6_c00366{width:58.040478pt;}
._7_c00366{width:75.393713pt;}
._20_c00366{width:118.199840pt;}
._1e_c00366{width:125.716800pt;}
._22_c00366{width:134.428800pt;}
.fs5_c00366{font-size:5.104176pt;}
.fs4_c00366{font-size:17.600000pt;}
.fs14_c00366{font-size:20.240000pt;}
.fs13_c00366{font-size:21.542576pt;}
.fs18_c00366{font-size:24.640000pt;}
.fs1c_c00366{font-size:29.040000pt;}
.fs12_c00366{font-size:29.216000pt;}
.fsa_c00366{font-size:29.568000pt;}
.fsd_c00366{font-size:30.800000pt;}
.fs8_c00366{font-size:31.680000pt;}
.fs11_c00366{font-size:35.376000pt;}
.fs1f_c00366{font-size:37.840000pt;}
.fs10_c00366{font-size:43.648000pt;}
.fs21_c00366{font-size:44.176000pt;}
.fs6_c00366{font-size:44.352176pt;}
.fs3_c00366{font-size:45.619376pt;}
.fs1a_c00366{font-size:48.153776pt;}
.fsf_c00366{font-size:49.280000pt;}
.fs20_c00366{font-size:50.688000pt;}
.fse_c00366{font-size:51.955376pt;}
.fs22_c00366{font-size:53.856000pt;}
.fs1d_c00366{font-size:55.616000pt;}
.fs2_c00366{font-size:57.024176pt;}
.fsb_c00366{font-size:57.376000pt;}
.fs1b_c00366{font-size:58.256000pt;}
.fs1e_c00366{font-size:58.432176pt;}
.fs23_c00366{font-size:58.960000pt;}
.fs16_c00366{font-size:60.896000pt;}
.fs19_c00366{font-size:61.952176pt;}
.fsc_c00366{font-size:62.832176pt;}
.fs17_c00366{font-size:63.008000pt;}
.fs9_c00366{font-size:63.712176pt;}
.fs1_c00366{font-size:63.888000pt;}
.fs24_c00366{font-size:64.768000pt;}
.fs15_c00366{font-size:65.120000pt;}
.fs7_c00366{font-size:70.752176pt;}
.fs0_c00366{font-size:76.032176pt;}
.y0_c00366{bottom:0.000000pt;}
.y1_c00366{bottom:68.000000pt;}
.y23_c00366{bottom:131.076920pt;}
.y25_c00366{bottom:132.977720pt;}
.y24_c00366{bottom:133.928120pt;}
.y22_c00366{bottom:158.004920pt;}
.y21_c00366{bottom:187.784120pt;}
.y20_c00366{bottom:216.608520pt;}
.y1f_c00366{bottom:237.200520pt;}
.y1e_c00366{bottom:245.754120pt;}
.y1d_c00366{bottom:274.899720pt;}
.y1c_c00366{bottom:303.728520pt;}
.y1b_c00366{bottom:334.141320pt;}
.y1a_c00366{bottom:363.286920pt;}
.y19_c00366{bottom:392.436920pt;}
.y15_c00366{bottom:420.627720pt;}
.y17_c00366{bottom:420.948920pt;}
.y18_c00366{bottom:421.261320pt;}
.y16_c00366{bottom:425.067320pt;}
.y14_c00366{bottom:425.700920pt;}
.y12_c00366{bottom:478.606520pt;}
.y13_c00366{bottom:483.675320pt;}
.y11_c00366{bottom:507.747720pt;}
.y10_c00366{bottom:536.580920pt;}
.yf_c00366{bottom:555.267720pt;}
.ye_c00366{bottom:565.092920pt;}
.yc_c00366{bottom:593.288120pt;}
.yd_c00366{bottom:593.917320pt;}
.yb_c00366{bottom:622.429320pt;}
.ya_c00366{bottom:651.574920pt;}
.y9_c00366{bottom:680.720520pt;}
.y8_c00366{bottom:709.236920pt;}
.y7_c00366{bottom:738.065720pt;}
.y6_c00366{bottom:762.454920pt;}
.y5_c00366{bottom:767.211320pt;}
.y4_c00366{bottom:796.986120pt;}
.y3_c00366{bottom:826.769720pt;}
.y2_c00366{bottom:962.355720pt;}
.h12_c00366{height:14.347356pt;}
.h5_c00366{height:18.356250pt;}
.h8_c00366{height:21.098880pt;}
.h13_c00366{height:21.109688pt;}
.h17_c00366{height:25.698750pt;}
.h6_c00366{height:29.538549pt;}
.h4_c00366{height:30.382504pt;}
.h11_c00366{height:30.471375pt;}
.h9_c00366{height:30.838500pt;}
.h19_c00366{height:32.070415pt;}
.hc_c00366{height:32.123438pt;}
.hd_c00366{height:34.602280pt;}
.h10_c00366{height:36.896063pt;}
.h1c_c00366{height:39.465938pt;}
.h1d_c00366{height:42.838125pt;}
.h1f_c00366{height:43.356328pt;}
.he_c00366{height:48.365625pt;}
.h1e_c00366{height:52.866000pt;}
.h20_c00366{height:56.170125pt;}
.ha_c00366{height:59.841375pt;}
.hf_c00366{height:60.602861pt;}
.h18_c00366{height:60.802673pt;}
.h1b_c00366{height:60.942934pt;}
.h21_c00366{height:61.493438pt;}
.hb_c00366{height:61.666345pt;}
.h16_c00366{height:61.838906pt;}
.h3_c00366{height:62.702578pt;}
.h15_c00366{height:63.512625pt;}
.h22_c00366{height:63.566250pt;}
.h14_c00366{height:63.911719pt;}
.h1a_c00366{height:69.410550pt;}
.h7_c00366{height:69.439391pt;}
.h2_c00366{height:74.621423pt;}
.h1_c00366{height:986.666667pt;}
.h0_c00366{height:1122.666667pt;}
.w1_c00366{width:689.333333pt;}
.w0_c00366{width:793.333333pt;}
.x0_c00366{left:0.000000pt;}
.x1_c00366{left:52.000000pt;}
.x17_c00366{left:86.377853pt;}
.x4_c00366{left:87.420653pt;}
.x5d_c00366{left:89.158653pt;}
.x8e_c00366{left:90.095853pt;}
.x4a_c00366{left:98.200653pt;}
.x8f_c00366{left:99.450253pt;}
.x51_c00366{left:106.081053pt;}
.x5_c00366{left:107.027053pt;}
.x72_c00366{left:108.298653pt;}
.x4b_c00366{left:115.941453pt;}
.x30_c00366{left:117.006253pt;}
.x83_c00366{left:118.313053pt;}
.x90_c00366{left:120.068653pt;}
.x6_c00366{left:126.549853pt;}
.x52_c00366{left:127.451853pt;}
.x4c_c00366{left:128.987453pt;}
.x7e_c00366{left:130.514253pt;}
.x7f_c00366{left:132.731853pt;}
.x5e_c00366{left:135.222253pt;}
.x7_c00366{left:136.317853pt;}
.x80_c00366{left:138.117453pt;}
.x64_c00366{left:141.910253pt;}
.x25_c00366{left:145.373053pt;}
.x18_c00366{left:146.640253pt;}
.x62_c00366{left:148.739053pt;}
.x63_c00366{left:151.546253pt;}
.x26_c00366{left:155.079453pt;}
.x65_c00366{left:156.144253pt;}
.x89_c00366{left:157.266253pt;}
.x5a_c00366{left:164.381053pt;}
.x8_c00366{left:165.305053pt;}
.x8c_c00366{left:166.339053pt;}
.x5f_c00366{left:170.888653pt;}
.x31_c00366{left:175.675853pt;}
.x19_c00366{left:176.643853pt;}
.x48_c00366{left:183.411053pt;}
.x27_c00366{left:185.149053pt;}
.x91_c00366{left:186.724253pt;}
.x28_c00366{left:194.749853pt;}
.x3c_c00366{left:195.858653pt;}
.x9_c00366{left:200.883453pt;}
.x73_c00366{left:203.686253pt;}
.x1a_c00366{left:204.702653pt;}
.xa_c00366{left:205.600253pt;}
.x84_c00366{left:206.858653pt;}
.x66_c00366{left:208.939853pt;}
.x32_c00366{left:214.347453pt;}
.x42_c00366{left:215.869853pt;}
.x78_c00366{left:217.220653pt;}
.x85_c00366{left:219.218253pt;}
.x29_c00366{left:224.432253pt;}
.x86_c00366{left:226.183453pt;}
.x43_c00366{left:234.349853pt;}
.x1b_c00366{left:235.511453pt;}
.x1c_c00366{left:243.541453pt;}
.x4d_c00366{left:245.310253pt;}
.x92_c00366{left:251.241453pt;}
.x7c_c00366{left:253.401853pt;}
.x55_c00366{left:255.153053pt;}
.x8d_c00366{left:257.507053pt;}
.x7d_c00366{left:261.286653pt;}
.xb_c00366{left:263.715453pt;}
.x1d_c00366{left:264.657053pt;}
.x39_c00366{left:273.043453pt;}
.x33_c00366{left:274.398653pt;}
.x79_c00366{left:282.842253pt;}
.x49_c00366{left:283.929053pt;}
.xc_c00366{left:285.354653pt;}
.x5b_c00366{left:293.164653pt;}
.x8a_c00366{left:294.137053pt;}
.x2a_c00366{left:303.218653pt;}
.x60_c00366{left:306.338253pt;}
.x1e_c00366{left:313.123053pt;}
.x6a_c00366{left:314.570653pt;}
.x2b_c00366{left:322.825053pt;}
.x87_c00366{left:324.532253pt;}
.x34_c00366{left:332.755853pt;}
.x4e_c00366{left:334.370653pt;}
.x3a_c00366{left:342.387453pt;}
.x67_c00366{left:344.094653pt;}
.x1f_c00366{left:351.917853pt;}
.x3d_c00366{left:352.987053pt;}
.xd_c00366{left:362.640653pt;}
.xe_c00366{left:372.201853pt;}
.x44_c00366{left:381.076653pt;}
.x20_c00366{left:382.163453pt;}
.x6f_c00366{left:384.645053pt;}
.xf_c00366{left:391.957853pt;}
.x94_c00366{left:399.767853pt;}
.x45_c00366{left:401.307853pt;}
.x61_c00366{left:403.886253pt;}
.x2c_c00366{left:411.907453pt;}
.x3e_c00366{left:413.469453pt;}
.x74_c00366{left:420.975853pt;}
.x70_c00366{left:421.957053pt;}
.x10_c00366{left:430.968253pt;}
.x56_c00366{left:431.896653pt;}
.x93_c00366{left:434.202253pt;}
.x11_c00366{left:441.079453pt;}
.x2d_c00366{left:450.953053pt;}
.x81_c00366{left:452.154253pt;}
.x12_c00366{left:460.817853pt;}
.x71_c00366{left:462.023453pt;}
.x88_c00366{left:465.781053pt;}
.x3f_c00366{left:470.269053pt;}
.x6b_c00366{left:471.228253pt;}
.x21_c00366{left:480.406653pt;}
.x95_c00366{left:481.638653pt;}
.x8b_c00366{left:489.123053pt;}
.x35_c00366{left:490.033853pt;}
.x68_c00366{left:491.160253pt;}
.x57_c00366{left:492.673853pt;}
.x75_c00366{left:498.943853pt;}
.x22_c00366{left:500.307853pt;}
.x13_c00366{left:509.838253pt;}
.x7a_c00366{left:510.784253pt;}
.x46_c00366{left:518.233453pt;}
.x58_c00366{left:519.997853pt;}
.x40_c00366{left:528.692253pt;}
.x69_c00366{left:530.452253pt;}
.x3b_c00366{left:537.910253pt;}
.x2e_c00366{left:539.503053pt;}
.x6c_c00366{left:547.616653pt;}
.x5c_c00366{left:549.724253pt;}
.x4f_c00366{left:553.323453pt;}
.x23_c00366{left:558.973053pt;}
.x2f_c00366{left:563.263053pt;}
.x36_c00366{left:569.093053pt;}
.x47_c00366{left:578.579453pt;}
.x59_c00366{left:579.525453pt;}
.x53_c00366{left:581.078653pt;}
.x37_c00366{left:588.686253pt;}
.x96_c00366{left:589.984253pt;}
.x2_c00366{left:598.194653pt;}
.x24_c00366{left:599.514653pt;}
.x6d_c00366{left:607.588653pt;}
.x3_c00366{left:608.965853pt;}
.x14_c00366{left:617.581053pt;}
.x6e_c00366{left:618.505053pt;}
.x76_c00366{left:626.262253pt;}
.x38_c00366{left:628.308253pt;}
.x15_c00366{left:637.843053pt;}
.x7b_c00366{left:639.039853pt;}
.x50_c00366{left:647.553853pt;}
.x77_c00366{left:649.014653pt;}
.x16_c00366{left:657.207453pt;}
.x97_c00366{left:660.375453pt;}
.x41_c00366{left:666.975453pt;}
.x82_c00366{left:667.925853pt;}
.x54_c00366{left:679.581453pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ad888b709c24c1e697d5a82c.woff2')format("woff");}.ff1_c00367{font-family:ff1_c00367;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00367;src:url('chunks/assets/font_35f2b977eb20cb05b3540c03.woff2')format("woff");}.ff2_c00367{font-family:ff2_c00367;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00367;src:url('chunks/assets/font_4caec64f76df8f0417cc0ddf.woff2')format("woff");}.ff3_c00367{font-family:ff3_c00367;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00367;src:url('chunks/assets/font_dc73b30dfcd4b83664c801ce.woff2')format("woff");}.ff4_c00367{font-family:ff4_c00367;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00367;src:url('chunks/assets/font_79f9be82897671d331ad29b4.woff2')format("woff");}.ff5_c00367{font-family:ff5_c00367;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m66_c00367{transform:matrix(0.017242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017242,0.000000,0.000000,0.250000,0,0);}
.me8_c00367{transform:matrix(0.031251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.031251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.031251,0.000000,0.000000,0.250000,0,0);}
.m5e_c00367{transform:matrix(0.043104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043104,0.000000,0.000000,0.250000,0,0);}
.m60_c00367{transform:matrix(0.051725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.051725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.051725,0.000000,0.000000,0.250000,0,0);}
.m8c_c00367{transform:matrix(0.069854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.069854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.069854,0.000000,0.000000,0.250000,0,0);}
.m5a_c00367{transform:matrix(0.077587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077587,0.000000,0.000000,0.250000,0,0);}
.m6d_c00367{transform:matrix(0.086208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086208,0.000000,0.000000,0.250000,0,0);}
.m88_c00367{transform:matrix(0.092858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092858,0.000000,0.000000,0.250000,0,0);}
.mc1_c00367{transform:matrix(0.095101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095101,0.000000,0.000000,0.250000,0,0);}
.m3c_c00367{transform:matrix(0.102382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102382,0.000000,0.000000,0.250000,0,0);}
.m5d_c00367{transform:matrix(0.103448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103448,0.000000,0.000000,0.250000,0,0);}
.m64_c00367{transform:matrix(0.105604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105604,0.000000,0.000000,0.250000,0,0);}
.m6b_c00367{transform:matrix(0.112070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112070,0.000000,0.000000,0.250000,0,0);}
.m65_c00367{transform:matrix(0.120689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120689,0.000000,0.000000,0.250000,0,0);}
.m6c_c00367{transform:matrix(0.129310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129310,0.000000,0.000000,0.250000,0,0);}
.me9_c00367{transform:matrix(0.153125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153125,0.000000,0.000000,0.250000,0,0);}
.m62_c00367{transform:matrix(0.155173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155173,0.000000,0.000000,0.250000,0,0);}
.me7_c00367{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00367{transform:matrix(0.156897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156897,0.000000,0.000000,0.250000,0,0);}
.m67_c00367{transform:matrix(0.158046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158046,0.000000,0.000000,0.250000,0,0);}
.m36_c00367{transform:matrix(0.159548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159548,0.000000,0.000000,0.250000,0,0);}
.m76_c00367{transform:matrix(0.160717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160717,0.000000,0.000000,0.250000,0,0);}
.mdb_c00367{transform:matrix(0.163561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163561,0.000000,0.000000,0.250000,0,0);}
.m5b_c00367{transform:matrix(0.163792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163792,0.000000,0.000000,0.250000,0,0);}
.mf_c00367{transform:matrix(0.166571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166571,0.000000,0.000000,0.250000,0,0);}
.mbe_c00367{transform:matrix(0.167039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167039,0.000000,0.000000,0.250000,0,0);}
.m94_c00367{transform:matrix(0.170720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170720,0.000000,0.000000,0.250000,0,0);}
.m5f_c00367{transform:matrix(0.172414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172414,0.000000,0.000000,0.250000,0,0);}
.m49_c00367{transform:matrix(0.173740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173740,0.000000,0.000000,0.250000,0,0);}
.mad_c00367{transform:matrix(0.177508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177508,0.000000,0.000000,0.250000,0,0);}
.m63_c00367{transform:matrix(0.178880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178880,0.000000,0.000000,0.250000,0,0);}
.m6a_c00367{transform:matrix(0.179803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179803,0.000000,0.000000,0.250000,0,0);}
.m11_c00367{transform:matrix(0.180567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180567,0.000000,0.000000,0.250000,0,0);}
.m69_c00367{transform:matrix(0.181035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181035,0.000000,0.000000,0.250000,0,0);}
.m30_c00367{transform:matrix(0.189252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189252,0.000000,0.000000,0.250000,0,0);}
.m2f_c00367{transform:matrix(0.193657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193657,0.000000,0.000000,0.250000,0,0);}
.me6_c00367{transform:matrix(0.194935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194935,0.000000,0.000000,0.250000,0,0);}
.md6_c00367{transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);}
.m40_c00367{transform:matrix(0.196918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196918,0.000000,0.000000,0.250000,0,0);}
.m95_c00367{transform:matrix(0.198812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198812,0.000000,0.000000,0.250000,0,0);}
.m52_c00367{transform:matrix(0.200564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200564,0.000000,0.000000,0.250000,0,0);}
.m90_c00367{transform:matrix(0.200831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200831,0.000000,0.000000,0.250000,0,0);}
.m8d_c00367{transform:matrix(0.202206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202206,0.000000,0.000000,0.250000,0,0);}
.m104_c00367{transform:matrix(0.204392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204392,0.000000,0.000000,0.250000,0,0);}
.m39_c00367{transform:matrix(0.208049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208049,0.000000,0.000000,0.250000,0,0);}
.m16_c00367{transform:matrix(0.209769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209769,0.000000,0.000000,0.250000,0,0);}
.md0_c00367{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.md7_c00367{transform:matrix(0.212499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212499,0.000000,0.000000,0.250000,0,0);}
.m61_c00367{transform:matrix(0.212643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212643,0.000000,0.000000,0.250000,0,0);}
.m79_c00367{transform:matrix(0.213144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213144,0.000000,0.000000,0.250000,0,0);}
.m75_c00367{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);}
.m68_c00367{transform:matrix(0.215516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215516,0.000000,0.000000,0.250000,0,0);}
.m89_c00367{transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);}
.m71_c00367{transform:matrix(0.217420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217420,0.000000,0.000000,0.250000,0,0);}
.m8b_c00367{transform:matrix(0.223039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223039,0.000000,0.000000,0.250000,0,0);}
.m59_c00367{transform:matrix(0.224138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224138,0.000000,0.000000,0.250000,0,0);}
.mca_c00367{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00367{transform:matrix(0.239832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239832,0.000000,0.000000,0.250000,0,0);}
.mc0_c00367{transform:matrix(0.242076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242076,0.000000,0.000000,0.250000,0,0);}
.m1_c00367{transform:matrix(0.244126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244126,0.000000,0.000000,0.250000,0,0);}
.md4_c00367{transform:matrix(0.245070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245070,0.000000,0.000000,0.250000,0,0);}
.m13_c00367{transform:matrix(0.247819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247819,0.000000,0.000000,0.250000,0,0);}
.m58_c00367{transform:matrix(0.249070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249070,0.000000,0.000000,0.250000,0,0);}
.m0_c00367{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00367{transform:matrix(0.251767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251767,0.000000,0.000000,0.250000,0,0);}
.m83_c00367{transform:matrix(0.252603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252603,0.000000,0.000000,0.250000,0,0);}
.m7c_c00367{transform:matrix(0.254464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254464,0.000000,0.000000,0.250000,0,0);}
.m2b_c00367{transform:matrix(0.254675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254675,0.000000,0.000000,0.250000,0,0);}
.mc9_c00367{transform:matrix(0.255426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255426,0.000000,0.000000,0.250000,0,0);}
.maa_c00367{transform:matrix(0.256297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256297,0.000000,0.000000,0.250000,0,0);}
.m1b_c00367{transform:matrix(0.259825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259825,0.000000,0.000000,0.250000,0,0);}
.m106_c00367{transform:matrix(0.260115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260115,0.000000,0.000000,0.250000,0,0);}
.m6f_c00367{transform:matrix(0.260776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260776,0.000000,0.000000,0.250000,0,0);}
.m85_c00367{transform:matrix(0.261904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261904,0.000000,0.000000,0.250000,0,0);}
.m74_c00367{transform:matrix(0.262853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262853,0.000000,0.000000,0.250000,0,0);}
.mab_c00367{transform:matrix(0.265289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265289,0.000000,0.000000,0.250000,0,0);}
.m101_c00367{transform:matrix(0.266074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266074,0.000000,0.000000,0.250000,0,0);}
.m4b_c00367{transform:matrix(0.266198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266198,0.000000,0.000000,0.250000,0,0);}
.m6e_c00367{transform:matrix(0.267241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267241,0.000000,0.000000,0.250000,0,0);}
.m72_c00367{transform:matrix(0.267857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267857,0.000000,0.000000,0.250000,0,0);}
.m3_c00367{transform:matrix(0.268937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268937,0.000000,0.000000,0.250000,0,0);}
.mde_c00367{transform:matrix(0.270516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270516,0.000000,0.000000,0.250000,0,0);}
.m3d_c00367{transform:matrix(0.270574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270574,0.000000,0.000000,0.250000,0,0);}
.m1f_c00367{transform:matrix(0.271206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271206,0.000000,0.000000,0.250000,0,0);}
.m4_c00367{transform:matrix(0.271514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271514,0.000000,0.000000,0.250000,0,0);}
.mfb_c00367{transform:matrix(0.272109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272109,0.000000,0.000000,0.250000,0,0);}
.mbc_c00367{transform:matrix(0.272692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272692,0.000000,0.000000,0.250000,0,0);}
.m7a_c00367{transform:matrix(0.273042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273042,0.000000,0.000000,0.250000,0,0);}
.m2e_c00367{transform:matrix(0.274772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274772,0.000000,0.000000,0.250000,0,0);}
.m103_c00367{transform:matrix(0.275129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275129,0.000000,0.000000,0.250000,0,0);}
.m20_c00367{transform:matrix(0.275173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275173,0.000000,0.000000,0.250000,0,0);}
.mbd_c00367{transform:matrix(0.275215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275215,0.000000,0.000000,0.250000,0,0);}
.m2d_c00367{transform:matrix(0.276174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276174,0.000000,0.000000,0.250000,0,0);}
.mbb_c00367{transform:matrix(0.276434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276434,0.000000,0.000000,0.250000,0,0);}
.m29_c00367{transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);}
.m31_c00367{transform:matrix(0.279335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279335,0.000000,0.000000,0.250000,0,0);}
.mcd_c00367{transform:matrix(0.280125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280125,0.000000,0.000000,0.250000,0,0);}
.mec_c00367{transform:matrix(0.280135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280135,0.000000,0.000000,0.250000,0,0);}
.mc4_c00367{transform:matrix(0.282201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282201,0.000000,0.000000,0.250000,0,0);}
.mc_c00367{transform:matrix(0.284410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284410,0.000000,0.000000,0.250000,0,0);}
.m100_c00367{transform:matrix(0.284441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284441,0.000000,0.000000,0.250000,0,0);}
.m22_c00367{transform:matrix(0.284684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284684,0.000000,0.000000,0.250000,0,0);}
.m25_c00367{transform:matrix(0.285320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285320,0.000000,0.000000,0.250000,0,0);}
.md1_c00367{transform:matrix(0.285713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285713,0.000000,0.000000,0.250000,0,0);}
.m9f_c00367{transform:matrix(0.285852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285852,0.000000,0.000000,0.250000,0,0);}
.me2_c00367{transform:matrix(0.286417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286417,0.000000,0.000000,0.250000,0,0);}
.mea_c00367{transform:matrix(0.286922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286922,0.000000,0.000000,0.250000,0,0);}
.m14_c00367{transform:matrix(0.287034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287034,0.000000,0.000000,0.250000,0,0);}
.m44_c00367{transform:matrix(0.287241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287241,0.000000,0.000000,0.250000,0,0);}
.ma5_c00367{transform:matrix(0.287617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287617,0.000000,0.000000,0.250000,0,0);}
.m46_c00367{transform:matrix(0.287842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287842,0.000000,0.000000,0.250000,0,0);}
.mc5_c00367{transform:matrix(0.289644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289644,0.000000,0.000000,0.250000,0,0);}
.mef_c00367{transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);}
.m9c_c00367{transform:matrix(0.291263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291263,0.000000,0.000000,0.250000,0,0);}
.m1c_c00367{transform:matrix(0.291496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291496,0.000000,0.000000,0.250000,0,0);}
.m50_c00367{transform:matrix(0.292280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292280,0.000000,0.000000,0.250000,0,0);}
.ma0_c00367{transform:matrix(0.292282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292282,0.000000,0.000000,0.250000,0,0);}
.ma3_c00367{transform:matrix(0.292844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292844,0.000000,0.000000,0.250000,0,0);}
.me0_c00367{transform:matrix(0.293039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293039,0.000000,0.000000,0.250000,0,0);}
.mce_c00367{transform:matrix(0.293269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293269,0.000000,0.000000,0.250000,0,0);}
.m4c_c00367{transform:matrix(0.293295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293295,0.000000,0.000000,0.250000,0,0);}
.m56_c00367{transform:matrix(0.295132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295132,0.000000,0.000000,0.250000,0,0);}
.mf6_c00367{transform:matrix(0.295509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295509,0.000000,0.000000,0.250000,0,0);}
.me3_c00367{transform:matrix(0.295607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295607,0.000000,0.000000,0.250000,0,0);}
.m3a_c00367{transform:matrix(0.297691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297691,0.000000,0.000000,0.250000,0,0);}
.m9d_c00367{transform:matrix(0.298180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298180,0.000000,0.000000,0.250000,0,0);}
.m43_c00367{transform:matrix(0.299370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299370,0.000000,0.000000,0.250000,0,0);}
.m41_c00367{transform:matrix(0.299417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299417,0.000000,0.000000,0.250000,0,0);}
.m21_c00367{transform:matrix(0.300377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300377,0.000000,0.000000,0.250000,0,0);}
.mda_c00367{transform:matrix(0.300968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300968,0.000000,0.000000,0.250000,0,0);}
.m42_c00367{transform:matrix(0.301623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301623,0.000000,0.000000,0.250000,0,0);}
.m48_c00367{transform:matrix(0.301753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301753,0.000000,0.000000,0.250000,0,0);}
.mcf_c00367{transform:matrix(0.302419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302419,0.000000,0.000000,0.250000,0,0);}
.m32_c00367{transform:matrix(0.302575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302575,0.000000,0.000000,0.250000,0,0);}
.mb5_c00367{transform:matrix(0.302738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302738,0.000000,0.000000,0.250000,0,0);}
.md2_c00367{transform:matrix(0.302992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302992,0.000000,0.000000,0.250000,0,0);}
.ma_c00367{transform:matrix(0.303156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303156,0.000000,0.000000,0.250000,0,0);}
.mb7_c00367{transform:matrix(0.304796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304796,0.000000,0.000000,0.250000,0,0);}
.m8f_c00367{transform:matrix(0.305306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305306,0.000000,0.000000,0.250000,0,0);}
.m8_c00367{transform:matrix(0.305528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305528,0.000000,0.000000,0.250000,0,0);}
.m57_c00367{transform:matrix(0.305853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305853,0.000000,0.000000,0.250000,0,0);}
.mf3_c00367{transform:matrix(0.306664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306664,0.000000,0.000000,0.250000,0,0);}
.m1a_c00367{transform:matrix(0.306759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306759,0.000000,0.000000,0.250000,0,0);}
.m4e_c00367{transform:matrix(0.307142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307142,0.000000,0.000000,0.250000,0,0);}
.m92_c00367{transform:matrix(0.307216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307216,0.000000,0.000000,0.250000,0,0);}
.ma2_c00367{transform:matrix(0.307446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307446,0.000000,0.000000,0.250000,0,0);}
.m91_c00367{transform:matrix(0.308788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308788,0.000000,0.000000,0.250000,0,0);}
.mc7_c00367{transform:matrix(0.309388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309388,0.000000,0.000000,0.250000,0,0);}
.m84_c00367{transform:matrix(0.310404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310404,0.000000,0.000000,0.250000,0,0);}
.mf9_c00367{transform:matrix(0.310437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310437,0.000000,0.000000,0.250000,0,0);}
.m96_c00367{transform:matrix(0.312541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312541,0.000000,0.000000,0.250000,0,0);}
.m7_c00367{transform:matrix(0.313140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313140,0.000000,0.000000,0.250000,0,0);}
.meb_c00367{transform:matrix(0.313379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313379,0.000000,0.000000,0.250000,0,0);}
.mfc_c00367{transform:matrix(0.313660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313660,0.000000,0.000000,0.250000,0,0);}
.m87_c00367{transform:matrix(0.314732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314732,0.000000,0.000000,0.250000,0,0);}
.ma4_c00367{transform:matrix(0.314789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314789,0.000000,0.000000,0.250000,0,0);}
.med_c00367{transform:matrix(0.315098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315098,0.000000,0.000000,0.250000,0,0);}
.mb3_c00367{transform:matrix(0.315779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315779,0.000000,0.000000,0.250000,0,0);}
.mc2_c00367{transform:matrix(0.316532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316532,0.000000,0.000000,0.250000,0,0);}
.mfa_c00367{transform:matrix(0.317898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317898,0.000000,0.000000,0.250000,0,0);}
.m78_c00367{transform:matrix(0.318096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318096,0.000000,0.000000,0.250000,0,0);}
.mb_c00367{transform:matrix(0.318328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318328,0.000000,0.000000,0.250000,0,0);}
.md5_c00367{transform:matrix(0.319461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319461,0.000000,0.000000,0.250000,0,0);}
.md3_c00367{transform:matrix(0.319676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319676,0.000000,0.000000,0.250000,0,0);}
.m15_c00367{transform:matrix(0.319999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319999,0.000000,0.000000,0.250000,0,0);}
.m33_c00367{transform:matrix(0.320365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320365,0.000000,0.000000,0.250000,0,0);}
.mb9_c00367{transform:matrix(0.320590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320590,0.000000,0.000000,0.250000,0,0);}
.m7e_c00367{transform:matrix(0.321431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321431,0.000000,0.000000,0.250000,0,0);}
.mf4_c00367{transform:matrix(0.321920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321920,0.000000,0.000000,0.250000,0,0);}
.mcc_c00367{transform:matrix(0.322039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322039,0.000000,0.000000,0.250000,0,0);}
.m7b_c00367{transform:matrix(0.322842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322842,0.000000,0.000000,0.250000,0,0);}
.me_c00367{transform:matrix(0.323755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323755,0.000000,0.000000,0.250000,0,0);}
.mb6_c00367{transform:matrix(0.323757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323757,0.000000,0.000000,0.250000,0,0);}
.m1d_c00367{transform:matrix(0.323966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323966,0.000000,0.000000,0.250000,0,0);}
.m28_c00367{transform:matrix(0.324235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324235,0.000000,0.000000,0.250000,0,0);}
.m18_c00367{transform:matrix(0.324782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324782,0.000000,0.000000,0.250000,0,0);}
.m9e_c00367{transform:matrix(0.325081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325081,0.000000,0.000000,0.250000,0,0);}
.m10_c00367{transform:matrix(0.327665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327665,0.000000,0.000000,0.250000,0,0);}
.m8a_c00367{transform:matrix(0.329066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329066,0.000000,0.000000,0.250000,0,0);}
.mf2_c00367{transform:matrix(0.329543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329543,0.000000,0.000000,0.250000,0,0);}
.m86_c00367{transform:matrix(0.329904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329904,0.000000,0.000000,0.250000,0,0);}
.m12_c00367{transform:matrix(0.330232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330232,0.000000,0.000000,0.250000,0,0);}
.ma6_c00367{transform:matrix(0.330241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330241,0.000000,0.000000,0.250000,0,0);}
.m3b_c00367{transform:matrix(0.331391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331391,0.000000,0.000000,0.250000,0,0);}
.md_c00367{transform:matrix(0.332043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332043,0.000000,0.000000,0.250000,0,0);}
.mfe_c00367{transform:matrix(0.332301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332301,0.000000,0.000000,0.250000,0,0);}
.m27_c00367{transform:matrix(0.332871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332871,0.000000,0.000000,0.250000,0,0);}
.m17_c00367{transform:matrix(0.333272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333272,0.000000,0.000000,0.250000,0,0);}
.m107_c00367{transform:matrix(0.333718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333718,0.000000,0.000000,0.250000,0,0);}
.m105_c00367{transform:matrix(0.333800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333800,0.000000,0.000000,0.250000,0,0);}
.mbf_c00367{transform:matrix(0.333948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333948,0.000000,0.000000,0.250000,0,0);}
.mae_c00367{transform:matrix(0.334741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334741,0.000000,0.000000,0.250000,0,0);}
.m2c_c00367{transform:matrix(0.334776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334776,0.000000,0.000000,0.250000,0,0);}
.ma8_c00367{transform:matrix(0.335486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335486,0.000000,0.000000,0.250000,0,0);}
.me1_c00367{transform:matrix(0.336988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336988,0.000000,0.000000,0.250000,0,0);}
.mff_c00367{transform:matrix(0.337594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337594,0.000000,0.000000,0.250000,0,0);}
.m80_c00367{transform:matrix(0.337730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337730,0.000000,0.000000,0.250000,0,0);}
.ma1_c00367{transform:matrix(0.337742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337742,0.000000,0.000000,0.250000,0,0);}
.m9_c00367{transform:matrix(0.339579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339579,0.000000,0.000000,0.250000,0,0);}
.mf5_c00367{transform:matrix(0.339583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339583,0.000000,0.000000,0.250000,0,0);}
.mc8_c00367{transform:matrix(0.340413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340413,0.000000,0.000000,0.250000,0,0);}
.m51_c00367{transform:matrix(0.340521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340521,0.000000,0.000000,0.250000,0,0);}
.mf8_c00367{transform:matrix(0.341889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341889,0.000000,0.000000,0.250000,0,0);}
.me4_c00367{transform:matrix(0.342311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342311,0.000000,0.000000,0.250000,0,0);}
.m98_c00367{transform:matrix(0.342744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342744,0.000000,0.000000,0.250000,0,0);}
.mb2_c00367{transform:matrix(0.342777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342777,0.000000,0.000000,0.250000,0,0);}
.m99_c00367{transform:matrix(0.343010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343010,0.000000,0.000000,0.250000,0,0);}
.mf7_c00367{transform:matrix(0.343689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343689,0.000000,0.000000,0.250000,0,0);}
.mb4_c00367{transform:matrix(0.345864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345864,0.000000,0.000000,0.250000,0,0);}
.m34_c00367{transform:matrix(0.347247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347247,0.000000,0.000000,0.250000,0,0);}
.mf0_c00367{transform:matrix(0.347823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347823,0.000000,0.000000,0.250000,0,0);}
.mac_c00367{transform:matrix(0.348191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348191,0.000000,0.000000,0.250000,0,0);}
.mba_c00367{transform:matrix(0.348579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348579,0.000000,0.000000,0.250000,0,0);}
.m19_c00367{transform:matrix(0.348882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348882,0.000000,0.000000,0.250000,0,0);}
.ma9_c00367{transform:matrix(0.351770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351770,0.000000,0.000000,0.250000,0,0);}
.m2a_c00367{transform:matrix(0.351847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351847,0.000000,0.000000,0.250000,0,0);}
.mc3_c00367{transform:matrix(0.351893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351893,0.000000,0.000000,0.250000,0,0);}
.md8_c00367{transform:matrix(0.351977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351977,0.000000,0.000000,0.250000,0,0);}
.m102_c00367{transform:matrix(0.352759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352759,0.000000,0.000000,0.250000,0,0);}
.mf1_c00367{transform:matrix(0.354300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354300,0.000000,0.000000,0.250000,0,0);}
.m37_c00367{transform:matrix(0.355116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355116,0.000000,0.000000,0.250000,0,0);}
.m4d_c00367{transform:matrix(0.355774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355774,0.000000,0.000000,0.250000,0,0);}
.m5_c00367{transform:matrix(0.355778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355778,0.000000,0.000000,0.250000,0,0);}
.m45_c00367{transform:matrix(0.356133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356133,0.000000,0.000000,0.250000,0,0);}
.m8e_c00367{transform:matrix(0.356372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356372,0.000000,0.000000,0.250000,0,0);}
.mb0_c00367{transform:matrix(0.356458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356458,0.000000,0.000000,0.250000,0,0);}
.m70_c00367{transform:matrix(0.356907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356907,0.000000,0.000000,0.250000,0,0);}
.mb1_c00367{transform:matrix(0.357109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357109,0.000000,0.000000,0.250000,0,0);}
.m4f_c00367{transform:matrix(0.357893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357893,0.000000,0.000000,0.250000,0,0);}
.m23_c00367{transform:matrix(0.360809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360809,0.000000,0.000000,0.250000,0,0);}
.mb8_c00367{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.mdf_c00367{transform:matrix(0.361780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361780,0.000000,0.000000,0.250000,0,0);}
.m54_c00367{transform:matrix(0.364665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364665,0.000000,0.000000,0.250000,0,0);}
.m53_c00367{transform:matrix(0.364991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364991,0.000000,0.000000,0.250000,0,0);}
.m3f_c00367{transform:matrix(0.365080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365080,0.000000,0.000000,0.250000,0,0);}
.m35_c00367{transform:matrix(0.366021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366021,0.000000,0.000000,0.250000,0,0);}
.mfd_c00367{transform:matrix(0.367917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367917,0.000000,0.000000,0.250000,0,0);}
.m3e_c00367{transform:matrix(0.369545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369545,0.000000,0.000000,0.250000,0,0);}
.m108_c00367{transform:matrix(0.369849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369849,0.000000,0.000000,0.250000,0,0);}
.m93_c00367{transform:matrix(0.370126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370126,0.000000,0.000000,0.250000,0,0);}
.m47_c00367{transform:matrix(0.371658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371658,0.000000,0.000000,0.250000,0,0);}
.m81_c00367{transform:matrix(0.375523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375523,0.000000,0.000000,0.250000,0,0);}
.mee_c00367{transform:matrix(0.376202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376202,0.000000,0.000000,0.250000,0,0);}
.mdd_c00367{transform:matrix(0.377039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377039,0.000000,0.000000,0.250000,0,0);}
.me5_c00367{transform:matrix(0.378499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378499,0.000000,0.000000,0.250000,0,0);}
.m24_c00367{transform:matrix(0.378943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378943,0.000000,0.000000,0.250000,0,0);}
.mc6_c00367{transform:matrix(0.379392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379392,0.000000,0.000000,0.250000,0,0);}
.m26_c00367{transform:matrix(0.381057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381057,0.000000,0.000000,0.250000,0,0);}
.mdc_c00367{transform:matrix(0.381114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381114,0.000000,0.000000,0.250000,0,0);}
.md9_c00367{transform:matrix(0.382861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382861,0.000000,0.000000,0.250000,0,0);}
.m82_c00367{transform:matrix(0.387649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387649,0.000000,0.000000,0.250000,0,0);}
.m7f_c00367{transform:matrix(0.389103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389103,0.000000,0.000000,0.250000,0,0);}
.m73_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);}
.m9b_c00367{transform:matrix(0.398633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398633,0.000000,0.000000,0.250000,0,0);}
.m2_c00367{transform:matrix(0.413224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413224,0.000000,0.000000,0.250000,0,0);}
.m4a_c00367{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);}
.m97_c00367{transform:matrix(0.420929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420929,0.000000,0.000000,0.250000,0,0);}
.m55_c00367{transform:matrix(0.435963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435963,0.000000,0.000000,0.250000,0,0);}
.m6_c00367{transform:matrix(0.437319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437319,0.000000,0.000000,0.250000,0,0);}
.m9a_c00367{transform:matrix(0.441359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441359,0.000000,0.000000,0.250000,0,0);}
.maf_c00367{transform:matrix(0.446694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446694,0.000000,0.000000,0.250000,0,0);}
.m38_c00367{transform:matrix(0.468742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468742,0.000000,0.000000,0.250000,0,0);}
.m1e_c00367{transform:matrix(0.535704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535704,0.000000,0.000000,0.250000,0,0);}
.m7d_c00367{transform:matrix(0.549988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549988,0.000000,0.000000,0.250000,0,0);}
.m77_c00367{transform:matrix(0.767860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.767860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.767860,0.000000,0.000000,0.250000,0,0);}
.v1_c00367{vertical-align:-95.515200px;}
.v0_c00367{vertical-align:0.000000px;}
.ls3_c00367{letter-spacing:-3.007627px;}
.ls6_c00367{letter-spacing:-2.515590px;}
.ls11_c00367{letter-spacing:-2.501730px;}
.ls12_c00367{letter-spacing:-1.871100px;}
.ls14_c00367{letter-spacing:-1.358280px;}
.ls20_c00367{letter-spacing:-1.288980px;}
.ls19_c00367{letter-spacing:-1.060290px;}
.lsb_c00367{letter-spacing:-0.797801px;}
.ls23_c00367{letter-spacing:-0.503118px;}
.lsf_c00367{letter-spacing:-0.452806px;}
.ls2_c00367{letter-spacing:0.000000px;}
.ls1f_c00367{letter-spacing:0.143748px;}
.ls1b_c00367{letter-spacing:1.188000px;}
.ls1a_c00367{letter-spacing:1.514700px;}
.ls18_c00367{letter-spacing:1.643400px;}
.ls7_c00367{letter-spacing:1.702810px;}
.ls16_c00367{letter-spacing:1.847261px;}
.ls17_c00367{letter-spacing:1.940400px;}
.ls1c_c00367{letter-spacing:2.178000px;}
.lsd_c00367{letter-spacing:2.278406px;}
.ls1_c00367{letter-spacing:2.414966px;}
.ls10_c00367{letter-spacing:2.968396px;}
.ls1e_c00367{letter-spacing:3.494700px;}
.ls5_c00367{letter-spacing:3.567148px;}
.ls9_c00367{letter-spacing:3.573900px;}
.ls4_c00367{letter-spacing:3.593700px;}
.ls22_c00367{letter-spacing:3.643200px;}
.ls24_c00367{letter-spacing:3.702610px;}
.lsa_c00367{letter-spacing:4.158000px;}
.ls8_c00367{letter-spacing:9.979398px;}
.lsc_c00367{letter-spacing:11.404998px;}
.ls15_c00367{letter-spacing:19.958400px;}
.ls13_c00367{letter-spacing:41.342598px;}
.ls1d_c00367{letter-spacing:48.470598px;}
.lse_c00367{letter-spacing:49.896198px;}
.ls21_c00367{letter-spacing:57.024198px;}
.ls0_c00367{letter-spacing:2696.694264px;}
.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;}
}
.ws4_c00367{word-spacing:-20.246906px;}
.ws0_c00367{word-spacing:-17.968500px;}
.ws2_c00367{word-spacing:-17.170699px;}
.ws6_c00367{word-spacing:-1.581228px;}
.ws7_c00367{word-spacing:0.000000px;}
.ws1_c00367{word-spacing:1.653102px;}
.ws3_c00367{word-spacing:4.672008px;}
.ws5_c00367{word-spacing:5.678046px;}
._8_c00367{margin-left:-6.379560px;}
._e_c00367{margin-left:-5.103054px;}
._10_c00367{margin-left:-2.443716px;}
._7_c00367{width:1.663992px;}
._b_c00367{width:6.254820px;}
._9_c00367{width:7.927702px;}
._5_c00367{width:8.984250px;}
._13_c00367{width:10.493604px;}
._2_c00367{width:11.499840px;}
._11_c00367{width:12.783672px;}
._6_c00367{width:14.099839px;}
._15_c00367{width:17.700111px;}
._1_c00367{width:22.209066px;}
._a_c00367{width:23.777759px;}
._4_c00367{width:30.046500px;}
._3_c00367{width:31.337460px;}
._f_c00367{width:33.107382px;}
._0_c00367{width:37.635444px;}
._14_c00367{width:41.797800px;}
._d_c00367{width:44.465058px;}
._12_c00367{width:46.022942px;}
._c_c00367{width:67.656600px;}
.fc0_c00367{color:transparent;}
.fs5_c00367{font-size:9.979398px;}
.fsb_c00367{font-size:11.404998px;}
.fs10_c00367{font-size:19.958400px;}
.fs13_c00367{font-size:23.760000px;}
.fsc_c00367{font-size:27.720000px;}
.fs1c_c00367{font-size:28.314000px;}
.fs12_c00367{font-size:30.294000px;}
.fs11_c00367{font-size:32.868000px;}
.fs4_c00367{font-size:34.056198px;}
.fs9_c00367{font-size:35.640000px;}
.fs18_c00367{font-size:36.828000px;}
.fs8_c00367{font-size:37.818000px;}
.fsf_c00367{font-size:38.808000px;}
.fse_c00367{font-size:41.342598px;}
.fs14_c00367{font-size:43.560000px;}
.fs15_c00367{font-size:48.470598px;}
.fs7_c00367{font-size:49.896198px;}
.fsd_c00367{font-size:53.460000px;}
.fs1d_c00367{font-size:55.836198px;}
.fs19_c00367{font-size:57.024198px;}
.fs17_c00367{font-size:58.608000px;}
.fs0_c00367{font-size:60.192000px;}
.fs1b_c00367{font-size:64.548000px;}
.fs16_c00367{font-size:69.894000px;}
.fs6_c00367{font-size:71.478000px;}
.fs2_c00367{font-size:71.874000px;}
.fs1a_c00367{font-size:72.864000px;}
.fs3_c00367{font-size:73.854000px;}
.fs1e_c00367{font-size:74.052198px;}
.fsa_c00367{font-size:83.160000px;}
.fs1_c00367{font-size:85.932198px;}
.y0_c00367{bottom:0.000000px;}
.y1_c00367{bottom:76.500000px;}
.y28_c00367{bottom:142.828335px;}
.y27_c00367{bottom:163.143135px;}
.y26_c00367{bottom:166.345785px;}
.y25_c00367{bottom:173.122335px;}
.y24_c00367{bottom:206.980335px;}
.y23_c00367{bottom:241.907535px;}
.y22_c00367{bottom:275.409135px;}
.y21_c00367{bottom:308.197935px;}
.y20_c00367{bottom:341.699535px;}
.y1f_c00367{bottom:405.846585px;}
.y1e_c00367{bottom:438.283935px;}
.y1d_c00367{bottom:470.359935px;}
.y1c_c00367{bottom:502.792335px;}
.y1b_c00367{bottom:534.863385px;}
.y1a_c00367{bottom:567.657135px;}
.y19_c00367{bottom:602.935785px;}
.y18_c00367{bottom:627.532335px;}
.y15_c00367{bottom:635.016735px;}
.y17_c00367{bottom:635.368185px;}
.y16_c00367{bottom:636.793785px;}
.y14_c00367{bottom:667.092735px;}
.y13_c00367{bottom:702.732735px;}
.y12_c00367{bottom:734.803785px;}
.y11_c00367{bottom:791.119935px;}
.y10_c00367{bottom:797.173785px;}
.ye_c00367{bottom:800.736300px;}
.yf_c00367{bottom:800.742735px;}
.yd_c00367{bottom:833.887935px;}
.y8_c00367{bottom:863.112735px;}
.yb_c00367{bottom:865.251135px;}
.y6_c00367{bottom:866.320335px;}
.yc_c00367{bottom:867.028185px;}
.y7_c00367{bottom:867.384585px;}
.y9_c00367{bottom:867.745935px;}
.ya_c00367{bottom:870.953535px;}
.y5_c00367{bottom:899.816985px;}
.y4_c00367{bottom:933.679935px;}
.y3_c00367{bottom:1081.937385px;}
.y2_c00367{bottom:1105.816185px;}
.h7_c00367{height:6.646279px;}
.hc_c00367{height:7.595729px;}
.h12_c00367{height:13.292294px;}
.h15_c00367{height:24.780938px;}
.h10_c00367{height:27.534170px;}
.hd_c00367{height:28.911094px;}
.h1c_c00367{height:29.530617px;}
.h14_c00367{height:31.595695px;}
.h13_c00367{height:32.258145px;}
.h17_c00367{height:32.281418px;}
.he_c00367{height:33.230868px;}
.h6_c00367{height:35.519550px;}
.h19_c00367{height:36.144668px;}
.ha_c00367{height:37.171406px;}
.h1a_c00367{height:37.978116px;}
.h11_c00367{height:38.087930px;}
.h16_c00367{height:45.431719px;}
.h9_c00367{height:48.970390px;}
.hf_c00367{height:52.468066px;}
.h1d_c00367{height:54.800175px;}
.h2_c00367{height:62.778375px;}
.h18_c00367{height:68.597139px;}
.h8_c00367{height:70.151748px;}
.h4_c00367{height:70.540400px;}
.h1b_c00367{height:71.512031px;}
.h1e_c00367{height:72.678183px;}
.h5_c00367{height:74.430984px;}
.hb_c00367{height:81.616992px;}
.h3_c00367{height:84.337753px;}
.h1_c00367{height:1110.000000px;}
.h0_c00367{height:1263.000000px;}
.w1_c00367{width:775.500000px;}
.w0_c00367{width:892.500000px;}
.x2_c00367{left:-1.582365px;}
.x0_c00367{left:0.000000px;}
.x1_c00367{left:58.500000px;}
.x76_c00367{left:86.923635px;}
.x33_c00367{left:100.806603px;}
.x4_c00367{left:102.986385px;}
.x6e_c00367{left:104.194185px;}
.x71_c00367{left:105.283185px;}
.x69_c00367{left:110.109435px;}
.x34_c00367{left:111.891435px;}
.x5_c00367{left:124.895085px;}
.x35_c00367{left:135.349485px;}
.x83_c00367{left:136.418685px;}
.x49_c00367{left:146.467185px;}
.x7f_c00367{left:148.021485px;}
.x38_c00367{left:156.045435px;}
.x10_c00367{left:157.896735px;}
.x57_c00367{left:161.257785px;}
.x36_c00367{left:167.851185px;}
.x67_c00367{left:169.400535px;}
.x21_c00367{left:178.904535px;}
.x80_c00367{left:180.760785px;}
.x4a_c00367{left:184.963335px;}
.x6_c00367{left:190.492485px;}
.x7b_c00367{left:198.140235px;}
.x3f_c00367{left:201.149835px;}
.x73_c00367{left:207.609585px;}
.x7_c00367{left:212.069535px;}
.x6a_c00367{left:213.178335px;}
.x1f_c00367{left:223.984185px;}
.x39_c00367{left:225.657285px;}
.x40_c00367{left:233.725785px;}
.x8_c00367{left:234.809835px;}
.x11_c00367{left:236.017635px;}
.x74_c00367{left:244.432635px;}
.x3a_c00367{left:246.387885px;}
.x4b_c00367{left:251.253735px;}
.x63_c00367{left:256.535385px;}
.x20_c00367{left:258.069885px;}
.x5f_c00367{left:267.598635px;}
.x6c_c00367{left:268.737135px;}
.x3b_c00367{left:277.973835px;}
.x12_c00367{left:279.176685px;}
.x4c_c00367{left:280.478535px;}
.x22_c00367{left:282.374385px;}
.x78_c00367{left:283.493085px;}
.x72_c00367{left:288.913335px;}
.x79_c00367{left:290.373585px;}
.x4d_c00367{left:294.373185px;}
.x4e_c00367{left:295.798785px;}
.x77_c00367{left:300.753735px;}
.x23_c00367{left:302.055585px;}
.x58_c00367{left:304.708785px;}
.x9_c00367{left:312.519885px;}
.x3c_c00367{left:322.612935px;}
.x4f_c00367{left:324.667185px;}
.x60_c00367{left:325.805685px;}
.x7c_c00367{left:331.800135px;}
.xa_c00367{left:334.557285px;}
.x6d_c00367{left:335.789835px;}
.x59_c00367{left:337.141185px;}
.x24_c00367{left:345.249285px;}
.x84_c00367{left:346.788735px;}
.x2b_c00367{left:349.501335px;}
.x2c_c00367{left:353.174235px;}
.xb_c00367{left:356.505585px;}
.x50_c00367{left:358.530135px;}
.x47_c00367{left:367.385685px;}
.x85_c00367{left:368.954835px;}
.xc_c00367{left:379.686435px;}
.x51_c00367{left:388.111335px;}
.x13_c00367{left:389.744835px;}
.x75_c00367{left:391.279335px;}
.x64_c00367{left:393.610785px;}
.x14_c00367{left:401.411985px;}
.x5a_c00367{left:408.218235px;}
.x25_c00367{left:411.757485px;}
.x5b_c00367{left:413.306835px;}
.x7d_c00367{left:414.806685px;}
.x61_c00367{left:418.593435px;}
.x3d_c00367{left:422.573235px;}
.x15_c00367{left:433.289985px;}
.x52_c00367{left:434.799735px;}
.x3e_c00367{left:444.952185px;}
.x2d_c00367{left:455.431335px;}
.x7e_c00367{left:456.653985px;}
.x6f_c00367{left:461.099085px;}
.x16_c00367{left:467.375685px;}
.x70_c00367{left:468.400335px;}
.x5c_c00367{left:472.795935px;}
.xd_c00367{left:478.805235px;}
.x17_c00367{left:489.418035px;}
.x65_c00367{left:490.457535px;}
.x2e_c00367{left:500.015985px;}
.x68_c00367{left:501.109935px;}
.x18_c00367{left:510.668385px;}
.x2f_c00367{left:511.757385px;}
.x26_c00367{left:522.266235px;}
.x53_c00367{left:523.543335px;}
.x54_c00367{left:528.884385px;}
.x19_c00367{left:533.482935px;}
.x6b_c00367{left:535.101585px;}
.x5d_c00367{left:536.631135px;}
.x37_c00367{left:537.685485px;}
.x30_c00367{left:545.090685px;}
.x41_c00367{left:547.105335px;}
.x55_c00367{left:555.970785px;}
.x81_c00367{left:557.198385px;}
.x27_c00367{left:566.791485px;}
.x1a_c00367{left:576.943935px;}
.x42_c00367{left:578.547735px;}
.x28_c00367{left:588.719985px;}
.xe_c00367{left:598.619985px;}
.x86_c00367{left:599.694135px;}
.x62_c00367{left:601.005885px;}
.x43_c00367{left:610.668285px;}
.x1b_c00367{left:621.741435px;}
.x1c_c00367{left:633.265035px;}
.x66_c00367{left:644.823285px;}
.x44_c00367{left:654.619335px;}
.x29_c00367{left:656.247885px;}
.x48_c00367{left:666.034035px;}
.xf_c00367{left:677.473485px;}
.x1d_c00367{left:685.339035px;}
.x2a_c00367{left:688.309035px;}
.x3_c00367{left:689.724735px;}
.x45_c00367{left:699.055485px;}
.x5e_c00367{left:707.945685px;}
.x31_c00367{left:710.004885px;}
.x56_c00367{left:711.435435px;}
.x46_c00367{left:719.553435px;}
.x1e_c00367{left:721.474035px;}
.x82_c00367{left:722.889735px;}
.x32_c00367{left:743.575785px;}
.x7a_c00367{left:754.980585px;}
@media print{
.v1_c00367{vertical-align:-84.902400pt;}
.v0_c00367{vertical-align:0.000000pt;}
.ls3_c00367{letter-spacing:-2.673446pt;}
.ls6_c00367{letter-spacing:-2.236080pt;}
.ls11_c00367{letter-spacing:-2.223760pt;}
.ls12_c00367{letter-spacing:-1.663200pt;}
.ls14_c00367{letter-spacing:-1.207360pt;}
.ls20_c00367{letter-spacing:-1.145760pt;}
.ls19_c00367{letter-spacing:-0.942480pt;}
.lsb_c00367{letter-spacing:-0.709157pt;}
.ls23_c00367{letter-spacing:-0.447216pt;}
.lsf_c00367{letter-spacing:-0.402494pt;}
.ls2_c00367{letter-spacing:0.000000pt;}
.ls1f_c00367{letter-spacing:0.127776pt;}
.ls1b_c00367{letter-spacing:1.056000pt;}
.ls1a_c00367{letter-spacing:1.346400pt;}
.ls18_c00367{letter-spacing:1.460800pt;}
.ls7_c00367{letter-spacing:1.513609pt;}
.ls16_c00367{letter-spacing:1.642010pt;}
.ls17_c00367{letter-spacing:1.724800pt;}
.ls1c_c00367{letter-spacing:1.936000pt;}
.lsd_c00367{letter-spacing:2.025250pt;}
.ls1_c00367{letter-spacing:2.146637pt;}
.ls10_c00367{letter-spacing:2.638574pt;}
.ls1e_c00367{letter-spacing:3.106400pt;}
.ls5_c00367{letter-spacing:3.170798pt;}
.ls9_c00367{letter-spacing:3.176800pt;}
.ls4_c00367{letter-spacing:3.194400pt;}
.ls22_c00367{letter-spacing:3.238400pt;}
.ls24_c00367{letter-spacing:3.291209pt;}
.lsa_c00367{letter-spacing:3.696000pt;}
.ls8_c00367{letter-spacing:8.870576pt;}
.lsc_c00367{letter-spacing:10.137776pt;}
.ls15_c00367{letter-spacing:17.740800pt;}
.ls13_c00367{letter-spacing:36.748976pt;}
.ls1d_c00367{letter-spacing:43.084976pt;}
.lse_c00367{letter-spacing:44.352176pt;}
.ls21_c00367{letter-spacing:50.688176pt;}
.ls0_c00367{letter-spacing:2397.061568pt;}
.ws4_c00367{word-spacing:-17.997250pt;}
.ws0_c00367{word-spacing:-15.972000pt;}
.ws2_c00367{word-spacing:-15.262843pt;}
.ws6_c00367{word-spacing:-1.405536pt;}
.ws7_c00367{word-spacing:0.000000pt;}
.ws1_c00367{word-spacing:1.469424pt;}
.ws3_c00367{word-spacing:4.152896pt;}
.ws5_c00367{word-spacing:5.047152pt;}
._8_c00367{margin-left:-5.670720pt;}
._e_c00367{margin-left:-4.536048pt;}
._10_c00367{margin-left:-2.172192pt;}
._7_c00367{width:1.479104pt;}
._b_c00367{width:5.559840pt;}
._9_c00367{width:7.046846pt;}
._5_c00367{width:7.986000pt;}
._13_c00367{width:9.327648pt;}
._2_c00367{width:10.222080pt;}
._11_c00367{width:11.363264pt;}
._6_c00367{width:12.533190pt;}
._15_c00367{width:15.733432pt;}
._1_c00367{width:19.741392pt;}
._a_c00367{width:21.135786pt;}
._4_c00367{width:26.708000pt;}
._3_c00367{width:27.855520pt;}
._f_c00367{width:29.428784pt;}
._0_c00367{width:33.453728pt;}
._14_c00367{width:37.153600pt;}
._d_c00367{width:39.524496pt;}
._12_c00367{width:40.909282pt;}
._c_c00367{width:60.139200pt;}
.fs5_c00367{font-size:8.870576pt;}
.fsb_c00367{font-size:10.137776pt;}
.fs10_c00367{font-size:17.740800pt;}
.fs13_c00367{font-size:21.120000pt;}
.fsc_c00367{font-size:24.640000pt;}
.fs1c_c00367{font-size:25.168000pt;}
.fs12_c00367{font-size:26.928000pt;}
.fs11_c00367{font-size:29.216000pt;}
.fs4_c00367{font-size:30.272176pt;}
.fs9_c00367{font-size:31.680000pt;}
.fs18_c00367{font-size:32.736000pt;}
.fs8_c00367{font-size:33.616000pt;}
.fsf_c00367{font-size:34.496000pt;}
.fse_c00367{font-size:36.748976pt;}
.fs14_c00367{font-size:38.720000pt;}
.fs15_c00367{font-size:43.084976pt;}
.fs7_c00367{font-size:44.352176pt;}
.fsd_c00367{font-size:47.520000pt;}
.fs1d_c00367{font-size:49.632176pt;}
.fs19_c00367{font-size:50.688176pt;}
.fs17_c00367{font-size:52.096000pt;}
.fs0_c00367{font-size:53.504000pt;}
.fs1b_c00367{font-size:57.376000pt;}
.fs16_c00367{font-size:62.128000pt;}
.fs6_c00367{font-size:63.536000pt;}
.fs2_c00367{font-size:63.888000pt;}
.fs1a_c00367{font-size:64.768000pt;}
.fs3_c00367{font-size:65.648000pt;}
.fs1e_c00367{font-size:65.824176pt;}
.fsa_c00367{font-size:73.920000pt;}
.fs1_c00367{font-size:76.384176pt;}
.y0_c00367{bottom:0.000000pt;}
.y1_c00367{bottom:68.000000pt;}
.y28_c00367{bottom:126.958520pt;}
.y27_c00367{bottom:145.016120pt;}
.y26_c00367{bottom:147.862920pt;}
.y25_c00367{bottom:153.886520pt;}
.y24_c00367{bottom:183.982520pt;}
.y23_c00367{bottom:215.028920pt;}
.y22_c00367{bottom:244.808120pt;}
.y21_c00367{bottom:273.953720pt;}
.y20_c00367{bottom:303.732920pt;}
.y1f_c00367{bottom:360.752520pt;}
.y1e_c00367{bottom:389.585720pt;}
.y1d_c00367{bottom:418.097720pt;}
.y1c_c00367{bottom:446.926520pt;}
.y1b_c00367{bottom:475.434120pt;}
.y1a_c00367{bottom:504.584120pt;}
.y19_c00367{bottom:535.942920pt;}
.y18_c00367{bottom:557.806520pt;}
.y15_c00367{bottom:564.459320pt;}
.y17_c00367{bottom:564.771720pt;}
.y16_c00367{bottom:566.038920pt;}
.y14_c00367{bottom:592.971320pt;}
.y13_c00367{bottom:624.651320pt;}
.y12_c00367{bottom:653.158920pt;}
.y11_c00367{bottom:703.217720pt;}
.y10_c00367{bottom:708.598920pt;}
.ye_c00367{bottom:711.765600pt;}
.yf_c00367{bottom:711.771320pt;}
.yd_c00367{bottom:741.233720pt;}
.y8_c00367{bottom:767.211320pt;}
.yb_c00367{bottom:769.112120pt;}
.y6_c00367{bottom:770.062520pt;}
.yc_c00367{bottom:770.691720pt;}
.y7_c00367{bottom:771.008520pt;}
.y9_c00367{bottom:771.329720pt;}
.ya_c00367{bottom:774.180920pt;}
.y5_c00367{bottom:799.837320pt;}
.y4_c00367{bottom:829.937720pt;}
.y3_c00367{bottom:961.722120pt;}
.y2_c00367{bottom:982.947720pt;}
.h7_c00367{height:5.907804pt;}
.hc_c00367{height:6.751759pt;}
.h12_c00367{height:11.815373pt;}
.h15_c00367{height:22.027500pt;}
.h10_c00367{height:24.474818pt;}
.hd_c00367{height:25.698750pt;}
.h1c_c00367{height:26.249438pt;}
.h14_c00367{height:28.085063pt;}
.h13_c00367{height:28.673906pt;}
.h17_c00367{height:28.694594pt;}
.he_c00367{height:29.538549pt;}
.h6_c00367{height:31.572934pt;}
.h19_c00367{height:32.128594pt;}
.ha_c00367{height:33.041250pt;}
.h1a_c00367{height:33.758325pt;}
.h11_c00367{height:33.855938pt;}
.h16_c00367{height:40.383750pt;}
.h9_c00367{height:43.529235pt;}
.hf_c00367{height:46.638281pt;}
.h1d_c00367{height:48.711266pt;}
.h2_c00367{height:55.803000pt;}
.h18_c00367{height:60.975234pt;}
.h8_c00367{height:62.357109pt;}
.h4_c00367{height:62.702578pt;}
.h1b_c00367{height:63.566250pt;}
.h1e_c00367{height:64.602829pt;}
.h5_c00367{height:66.160875pt;}
.hb_c00367{height:72.548438pt;}
.h3_c00367{height:74.966891pt;}
.h1_c00367{height:986.666667pt;}
.h0_c00367{height:1122.666667pt;}
.w1_c00367{width:689.333333pt;}
.w0_c00367{width:793.333333pt;}
.x2_c00367{left:-1.406547pt;}
.x0_c00367{left:0.000000pt;}
.x1_c00367{left:52.000000pt;}
.x76_c00367{left:77.265453pt;}
.x33_c00367{left:89.605869pt;}
.x4_c00367{left:91.543453pt;}
.x6e_c00367{left:92.617053pt;}
.x71_c00367{left:93.585053pt;}
.x69_c00367{left:97.875053pt;}
.x34_c00367{left:99.459053pt;}
.x5_c00367{left:111.017853pt;}
.x35_c00367{left:120.310653pt;}
.x83_c00367{left:121.261053pt;}
.x49_c00367{left:130.193053pt;}
.x7f_c00367{left:131.574653pt;}
.x38_c00367{left:138.707053pt;}
.x10_c00367{left:140.352653pt;}
.x57_c00367{left:143.340253pt;}
.x36_c00367{left:149.201053pt;}
.x67_c00367{left:150.578253pt;}
.x21_c00367{left:159.026253pt;}
.x80_c00367{left:160.676253pt;}
.x4a_c00367{left:164.411853pt;}
.x6_c00367{left:169.326653pt;}
.x7b_c00367{left:176.124653pt;}
.x3f_c00367{left:178.799853pt;}
.x73_c00367{left:184.541853pt;}
.x7_c00367{left:188.506253pt;}
.x6a_c00367{left:189.491853pt;}
.x1f_c00367{left:199.097053pt;}
.x39_c00367{left:200.584253pt;}
.x40_c00367{left:207.756253pt;}
.x8_c00367{left:208.719853pt;}
.x11_c00367{left:209.793453pt;}
.x74_c00367{left:217.273453pt;}
.x3a_c00367{left:219.011453pt;}
.x4b_c00367{left:223.336653pt;}
.x63_c00367{left:228.031453pt;}
.x20_c00367{left:229.395453pt;}
.x5f_c00367{left:237.865453pt;}
.x6c_c00367{left:238.877453pt;}
.x3b_c00367{left:247.087853pt;}
.x12_c00367{left:248.157053pt;}
.x4c_c00367{left:249.314253pt;}
.x22_c00367{left:250.999453pt;}
.x78_c00367{left:251.993853pt;}
.x72_c00367{left:256.811853pt;}
.x79_c00367{left:258.109853pt;}
.x4d_c00367{left:261.665053pt;}
.x4e_c00367{left:262.932253pt;}
.x77_c00367{left:267.336653pt;}
.x23_c00367{left:268.493853pt;}
.x58_c00367{left:270.852253pt;}
.x9_c00367{left:277.795453pt;}
.x3c_c00367{left:286.767053pt;}
.x4f_c00367{left:288.593053pt;}
.x60_c00367{left:289.605053pt;}
.x7c_c00367{left:294.933453pt;}
.xa_c00367{left:297.384253pt;}
.x6d_c00367{left:298.479853pt;}
.x59_c00367{left:299.681053pt;}
.x24_c00367{left:306.888253pt;}
.x84_c00367{left:308.256653pt;}
.x2b_c00367{left:310.667853pt;}
.x2c_c00367{left:313.932653pt;}
.xb_c00367{left:316.893853pt;}
.x50_c00367{left:318.693453pt;}
.x47_c00367{left:326.565053pt;}
.x85_c00367{left:327.959853pt;}
.xc_c00367{left:337.499053pt;}
.x51_c00367{left:344.987853pt;}
.x13_c00367{left:346.439853pt;}
.x75_c00367{left:347.803853pt;}
.x64_c00367{left:349.876253pt;}
.x14_c00367{left:356.810653pt;}
.x5a_c00367{left:362.860653pt;}
.x25_c00367{left:366.006653pt;}
.x5b_c00367{left:367.383853pt;}
.x7d_c00367{left:368.717053pt;}
.x61_c00367{left:372.083053pt;}
.x3d_c00367{left:375.620653pt;}
.x15_c00367{left:385.146653pt;}
.x52_c00367{left:386.488653pt;}
.x3e_c00367{left:395.513053pt;}
.x2d_c00367{left:404.827853pt;}
.x7e_c00367{left:405.914653pt;}
.x6f_c00367{left:409.865853pt;}
.x16_c00367{left:415.445053pt;}
.x70_c00367{left:416.355853pt;}
.x5c_c00367{left:420.263053pt;}
.xd_c00367{left:425.604653pt;}
.x17_c00367{left:435.038253pt;}
.x65_c00367{left:435.962253pt;}
.x2e_c00367{left:444.458653pt;}
.x68_c00367{left:445.431053pt;}
.x18_c00367{left:453.927453pt;}
.x2f_c00367{left:454.895453pt;}
.x26_c00367{left:464.236653pt;}
.x53_c00367{left:465.371853pt;}
.x54_c00367{left:470.119453pt;}
.x19_c00367{left:474.207053pt;}
.x6b_c00367{left:475.645853pt;}
.x5d_c00367{left:477.005453pt;}
.x37_c00367{left:477.942653pt;}
.x30_c00367{left:484.525053pt;}
.x41_c00367{left:486.315853pt;}
.x55_c00367{left:494.196253pt;}
.x81_c00367{left:495.287453pt;}
.x27_c00367{left:503.814653pt;}
.x1a_c00367{left:512.839053pt;}
.x42_c00367{left:514.264653pt;}
.x28_c00367{left:523.306653pt;}
.xe_c00367{left:532.106653pt;}
.x86_c00367{left:533.061453pt;}
.x62_c00367{left:534.227453pt;}
.x43_c00367{left:542.816253pt;}
.x1b_c00367{left:552.659053pt;}
.x1c_c00367{left:562.902253pt;}
.x66_c00367{left:573.176253pt;}
.x44_c00367{left:581.883853pt;}
.x29_c00367{left:583.331453pt;}
.x48_c00367{left:592.030253pt;}
.xf_c00367{left:602.198653pt;}
.x1d_c00367{left:609.190253pt;}
.x2a_c00367{left:611.830253pt;}
.x3_c00367{left:613.088653pt;}
.x45_c00367{left:621.382653pt;}
.x5e_c00367{left:629.285053pt;}
.x31_c00367{left:631.115453pt;}
.x56_c00367{left:632.387053pt;}
.x46_c00367{left:639.603053pt;}
.x1e_c00367{left:641.310253pt;}
.x82_c00367{left:642.568653pt;}
.x32_c00367{left:660.956253pt;}
.x7a_c00367{left:671.093853pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cfcadbbd47892358e9a78062.woff2')format("woff");}.ff1_c00368{font-family:ff1_c00368;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00368;src:url('chunks/assets/font_27455e48e5b56b8cec3d864f.woff2')format("woff");}.ff2_c00368{font-family:ff2_c00368;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00368;src:url('chunks/assets/font_e8923ef10560b06e80cd4cad.woff2')format("woff");}.ff3_c00368{font-family:ff3_c00368;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00368;src:url('chunks/assets/font_9d189683309dad619dec4acb.woff2')format("woff");}.ff4_c00368{font-family:ff4_c00368;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00368;src:url('chunks/assets/font_1fd70b71ca35cc4d89ee4c0e.woff2')format("woff");}.ff5_c00368{font-family:ff5_c00368;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mda_c00368{transform:matrix(0.019232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.019232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.019232,0.000000,0.000000,0.250000,0,0);}
.md9_c00368{transform:matrix(0.032052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032052,0.000000,0.000000,0.250000,0,0);}
.m60_c00368{transform:matrix(0.094594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094594,0.000000,0.000000,0.250000,0,0);}
.m28_c00368{transform:matrix(0.095589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095589,0.000000,0.000000,0.250000,0,0);}
.m75_c00368{transform:matrix(0.104166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104166,0.000000,0.000000,0.250000,0,0);}
.m6a_c00368{transform:matrix(0.106154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106154,0.000000,0.000000,0.250000,0,0);}
.mb2_c00368{transform:matrix(0.115472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115472,0.000000,0.000000,0.250000,0,0);}
.md7_c00368{transform:matrix(0.122597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122597,0.000000,0.000000,0.250000,0,0);}
.m27_c00368{transform:matrix(0.125001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125001,0.000000,0.000000,0.250000,0,0);}
.md8_c00368{transform:matrix(0.131410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131410,0.000000,0.000000,0.250000,0,0);}
.m6b_c00368{transform:matrix(0.139351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139351,0.000000,0.000000,0.250000,0,0);}
.mdb_c00368{transform:matrix(0.141025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141025,0.000000,0.000000,0.250000,0,0);}
.m5a_c00368{transform:matrix(0.144564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144564,0.000000,0.000000,0.250000,0,0);}
.m3f_c00368{transform:matrix(0.145930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145930,0.000000,0.000000,0.250000,0,0);}
.mad_c00368{transform:matrix(0.153492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153492,0.000000,0.000000,0.250000,0,0);}
.mf_c00368{transform:matrix(0.159723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159723,0.000000,0.000000,0.250000,0,0);}
.m13_c00368{transform:matrix(0.178472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178472,0.000000,0.000000,0.250000,0,0);}
.mcc_c00368{transform:matrix(0.178975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178975,0.000000,0.000000,0.250000,0,0);}
.m5e_c00368{transform:matrix(0.186432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186432,0.000000,0.000000,0.250000,0,0);}
.m68_c00368{transform:matrix(0.191619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191619,0.000000,0.000000,0.250000,0,0);}
.mbc_c00368{transform:matrix(0.192335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192335,0.000000,0.000000,0.250000,0,0);}
.mb8_c00368{transform:matrix(0.193085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193085,0.000000,0.000000,0.250000,0,0);}
.m2e_c00368{transform:matrix(0.193802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193802,0.000000,0.000000,0.250000,0,0);}
.m6f_c00368{transform:matrix(0.199284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199284,0.000000,0.000000,0.250000,0,0);}
.m29_c00368{transform:matrix(0.203431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203431,0.000000,0.000000,0.250000,0,0);}
.m66_c00368{transform:matrix(0.204547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204547,0.000000,0.000000,0.250000,0,0);}
.m3b_c00368{transform:matrix(0.206356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206356,0.000000,0.000000,0.250000,0,0);}
.m76_c00368{transform:matrix(0.210648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210648,0.000000,0.000000,0.250000,0,0);}
.me3_c00368{transform:matrix(0.213712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213712,0.000000,0.000000,0.250000,0,0);}
.mb6_c00368{transform:matrix(0.219603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219603,0.000000,0.000000,0.250000,0,0);}
.m65_c00368{transform:matrix(0.219698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219698,0.000000,0.000000,0.250000,0,0);}
.m73_c00368{transform:matrix(0.221335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221335,0.000000,0.000000,0.250000,0,0);}
.m5c_c00368{transform:matrix(0.224461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224461,0.000000,0.000000,0.250000,0,0);}
.m67_c00368{transform:matrix(0.225759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225759,0.000000,0.000000,0.250000,0,0);}
.m6c_c00368{transform:matrix(0.233793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233793,0.000000,0.000000,0.250000,0,0);}
.m10_c00368{transform:matrix(0.235634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235634,0.000000,0.000000,0.250000,0,0);}
.m7f_c00368{transform:matrix(0.240486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240486,0.000000,0.000000,0.250000,0,0);}
.mde_c00368{transform:matrix(0.242751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242751,0.000000,0.000000,0.250000,0,0);}
.m84_c00368{transform:matrix(0.246860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246860,0.000000,0.000000,0.250000,0,0);}
.mdf_c00368{transform:matrix(0.247819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247819,0.000000,0.000000,0.250000,0,0);}
.m0_c00368{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m96_c00368{transform:matrix(0.251421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251421,0.000000,0.000000,0.250000,0,0);}
.m4_c00368{transform:matrix(0.254735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254735,0.000000,0.000000,0.250000,0,0);}
.mc4_c00368{transform:matrix(0.257076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257076,0.000000,0.000000,0.250000,0,0);}
.m5_c00368{transform:matrix(0.257833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257833,0.000000,0.000000,0.250000,0,0);}
.m22_c00368{transform:matrix(0.258596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258596,0.000000,0.000000,0.250000,0,0);}
.mc8_c00368{transform:matrix(0.260563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260563,0.000000,0.000000,0.250000,0,0);}
.m24_c00368{transform:matrix(0.261986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261986,0.000000,0.000000,0.250000,0,0);}
.mbb_c00368{transform:matrix(0.262107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262107,0.000000,0.000000,0.250000,0,0);}
.mbd_c00368{transform:matrix(0.262758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262758,0.000000,0.000000,0.250000,0,0);}
.m39_c00368{transform:matrix(0.264862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264862,0.000000,0.000000,0.250000,0,0);}
.m3c_c00368{transform:matrix(0.265297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265297,0.000000,0.000000,0.250000,0,0);}
.me1_c00368{transform:matrix(0.265512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265512,0.000000,0.000000,0.250000,0,0);}
.me0_c00368{transform:matrix(0.269339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269339,0.000000,0.000000,0.250000,0,0);}
.mc9_c00368{transform:matrix(0.270034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270034,0.000000,0.000000,0.250000,0,0);}
.maf_c00368{transform:matrix(0.270213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270213,0.000000,0.000000,0.250000,0,0);}
.mcd_c00368{transform:matrix(0.270366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270366,0.000000,0.000000,0.250000,0,0);}
.md6_c00368{transform:matrix(0.271378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271378,0.000000,0.000000,0.250000,0,0);}
.mb4_c00368{transform:matrix(0.272318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272318,0.000000,0.000000,0.250000,0,0);}
.m26_c00368{transform:matrix(0.275215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275215,0.000000,0.000000,0.250000,0,0);}
.m79_c00368{transform:matrix(0.275351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275351,0.000000,0.000000,0.250000,0,0);}
.ma_c00368{transform:matrix(0.275451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275451,0.000000,0.000000,0.250000,0,0);}
.ma2_c00368{transform:matrix(0.277798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277798,0.000000,0.000000,0.250000,0,0);}
.m3d_c00368{transform:matrix(0.279335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279335,0.000000,0.000000,0.250000,0,0);}
.m97_c00368{transform:matrix(0.280171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280171,0.000000,0.000000,0.250000,0,0);}
.m9a_c00368{transform:matrix(0.282019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282019,0.000000,0.000000,0.250000,0,0);}
.m56_c00368{transform:matrix(0.282201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282201,0.000000,0.000000,0.250000,0,0);}
.m34_c00368{transform:matrix(0.282792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282792,0.000000,0.000000,0.250000,0,0);}
.m90_c00368{transform:matrix(0.284151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284151,0.000000,0.000000,0.250000,0,0);}
.mbe_c00368{transform:matrix(0.285379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285379,0.000000,0.000000,0.250000,0,0);}
.m15_c00368{transform:matrix(0.286526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286526,0.000000,0.000000,0.250000,0,0);}
.m82_c00368{transform:matrix(0.287190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287190,0.000000,0.000000,0.250000,0,0);}
.m2_c00368{transform:matrix(0.287241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287241,0.000000,0.000000,0.250000,0,0);}
.md1_c00368{transform:matrix(0.287242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287242,0.000000,0.000000,0.250000,0,0);}
.m92_c00368{transform:matrix(0.287614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287614,0.000000,0.000000,0.250000,0,0);}
.m17_c00368{transform:matrix(0.287842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287842,0.000000,0.000000,0.250000,0,0);}
.ma5_c00368{transform:matrix(0.288421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288421,0.000000,0.000000,0.250000,0,0);}
.me4_c00368{transform:matrix(0.289219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289219,0.000000,0.000000,0.250000,0,0);}
.m70_c00368{transform:matrix(0.289806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289806,0.000000,0.000000,0.250000,0,0);}
.m9c_c00368{transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);}
.m51_c00368{transform:matrix(0.290655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290655,0.000000,0.000000,0.250000,0,0);}
.m1d_c00368{transform:matrix(0.290970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290970,0.000000,0.000000,0.250000,0,0);}
.mac_c00368{transform:matrix(0.291055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291055,0.000000,0.000000,0.250000,0,0);}
.m2a_c00368{transform:matrix(0.292280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292280,0.000000,0.000000,0.250000,0,0);}
.md_c00368{transform:matrix(0.292346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292346,0.000000,0.000000,0.250000,0,0);}
.mbf_c00368{transform:matrix(0.292528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292528,0.000000,0.000000,0.250000,0,0);}
.m19_c00368{transform:matrix(0.292892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292892,0.000000,0.000000,0.250000,0,0);}
.m7a_c00368{transform:matrix(0.293295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293295,0.000000,0.000000,0.250000,0,0);}
.m3a_c00368{transform:matrix(0.294742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294742,0.000000,0.000000,0.250000,0,0);}
.m83_c00368{transform:matrix(0.294848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294848,0.000000,0.000000,0.250000,0,0);}
.m89_c00368{transform:matrix(0.296197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296197,0.000000,0.000000,0.250000,0,0);}
.m80_c00368{transform:matrix(0.297691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297691,0.000000,0.000000,0.250000,0,0);}
.m8c_c00368{transform:matrix(0.298589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298589,0.000000,0.000000,0.250000,0,0);}
.m40_c00368{transform:matrix(0.298596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298596,0.000000,0.000000,0.250000,0,0);}
.m49_c00368{transform:matrix(0.298726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298726,0.000000,0.000000,0.250000,0,0);}
.ma1_c00368{transform:matrix(0.299028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299028,0.000000,0.000000,0.250000,0,0);}
.m61_c00368{transform:matrix(0.299046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299046,0.000000,0.000000,0.250000,0,0);}
.mb3_c00368{transform:matrix(0.299092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299092,0.000000,0.000000,0.250000,0,0);}
.m3e_c00368{transform:matrix(0.299213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299213,0.000000,0.000000,0.250000,0,0);}
.md0_c00368{transform:matrix(0.299562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299562,0.000000,0.000000,0.250000,0,0);}
.m63_c00368{transform:matrix(0.299634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299634,0.000000,0.000000,0.250000,0,0);}
.m2d_c00368{transform:matrix(0.299681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299681,0.000000,0.000000,0.250000,0,0);}
.mca_c00368{transform:matrix(0.300800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300800,0.000000,0.000000,0.250000,0,0);}
.m72_c00368{transform:matrix(0.301288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301288,0.000000,0.000000,0.250000,0,0);}
.m2b_c00368{transform:matrix(0.301305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301305,0.000000,0.000000,0.250000,0,0);}
.mb0_c00368{transform:matrix(0.301753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301753,0.000000,0.000000,0.250000,0,0);}
.mb_c00368{transform:matrix(0.302992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302992,0.000000,0.000000,0.250000,0,0);}
.m5f_c00368{transform:matrix(0.303252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303252,0.000000,0.000000,0.250000,0,0);}
.mc3_c00368{transform:matrix(0.303897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303897,0.000000,0.000000,0.250000,0,0);}
.m9b_c00368{transform:matrix(0.304671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304671,0.000000,0.000000,0.250000,0,0);}
.mb9_c00368{transform:matrix(0.304796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304796,0.000000,0.000000,0.250000,0,0);}
.m43_c00368{transform:matrix(0.305417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305417,0.000000,0.000000,0.250000,0,0);}
.m7e_c00368{transform:matrix(0.306543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306543,0.000000,0.000000,0.250000,0,0);}
.m8_c00368{transform:matrix(0.306592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306592,0.000000,0.000000,0.250000,0,0);}
.m4a_c00368{transform:matrix(0.308310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308310,0.000000,0.000000,0.250000,0,0);}
.mae_c00368{transform:matrix(0.308632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308632,0.000000,0.000000,0.250000,0,0);}
.md2_c00368{transform:matrix(0.308970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308970,0.000000,0.000000,0.250000,0,0);}
.m35_c00368{transform:matrix(0.309324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309324,0.000000,0.000000,0.250000,0,0);}
.mba_c00368{transform:matrix(0.309667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309667,0.000000,0.000000,0.250000,0,0);}
.mc5_c00368{transform:matrix(0.311184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311184,0.000000,0.000000,0.250000,0,0);}
.m45_c00368{transform:matrix(0.311331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311331,0.000000,0.000000,0.250000,0,0);}
.m93_c00368{transform:matrix(0.312541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312541,0.000000,0.000000,0.250000,0,0);}
.mc7_c00368{transform:matrix(0.313140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313140,0.000000,0.000000,0.250000,0,0);}
.m37_c00368{transform:matrix(0.313987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313987,0.000000,0.000000,0.250000,0,0);}
.mce_c00368{transform:matrix(0.314068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314068,0.000000,0.000000,0.250000,0,0);}
.ma4_c00368{transform:matrix(0.314382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314382,0.000000,0.000000,0.250000,0,0);}
.m6e_c00368{transform:matrix(0.315115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315115,0.000000,0.000000,0.250000,0,0);}
.m7c_c00368{transform:matrix(0.315382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315382,0.000000,0.000000,0.250000,0,0);}
.md4_c00368{transform:matrix(0.316043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316043,0.000000,0.000000,0.250000,0,0);}
.m78_c00368{transform:matrix(0.316235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316235,0.000000,0.000000,0.250000,0,0);}
.m38_c00368{transform:matrix(0.316406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316406,0.000000,0.000000,0.250000,0,0);}
.m9f_c00368{transform:matrix(0.317393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317393,0.000000,0.000000,0.250000,0,0);}
.m87_c00368{transform:matrix(0.318163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318163,0.000000,0.000000,0.250000,0,0);}
.m12_c00368{transform:matrix(0.318328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318328,0.000000,0.000000,0.250000,0,0);}
.m98_c00368{transform:matrix(0.319241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319241,0.000000,0.000000,0.250000,0,0);}
.m2c_c00368{transform:matrix(0.320195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320195,0.000000,0.000000,0.250000,0,0);}
.m94_c00368{transform:matrix(0.320390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320390,0.000000,0.000000,0.250000,0,0);}
.m2f_c00368{transform:matrix(0.320959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320959,0.000000,0.000000,0.250000,0,0);}
.m8f_c00368{transform:matrix(0.321244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321244,0.000000,0.000000,0.250000,0,0);}
.m85_c00368{transform:matrix(0.321815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321815,0.000000,0.000000,0.250000,0,0);}
.ma7_c00368{transform:matrix(0.322052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322052,0.000000,0.000000,0.250000,0,0);}
.m42_c00368{transform:matrix(0.322582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322582,0.000000,0.000000,0.250000,0,0);}
.m53_c00368{transform:matrix(0.322938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322938,0.000000,0.000000,0.250000,0,0);}
.m7_c00368{transform:matrix(0.322983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322983,0.000000,0.000000,0.250000,0,0);}
.mb7_c00368{transform:matrix(0.322989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322989,0.000000,0.000000,0.250000,0,0);}
.m5b_c00368{transform:matrix(0.323005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323005,0.000000,0.000000,0.250000,0,0);}
.m6_c00368{transform:matrix(0.323041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323041,0.000000,0.000000,0.250000,0,0);}
.m8b_c00368{transform:matrix(0.323757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323757,0.000000,0.000000,0.250000,0,0);}
.m1_c00368{transform:matrix(0.324080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324080,0.000000,0.000000,0.250000,0,0);}
.mb5_c00368{transform:matrix(0.325081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325081,0.000000,0.000000,0.250000,0,0);}
.m1f_c00368{transform:matrix(0.325528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325528,0.000000,0.000000,0.250000,0,0);}
.m8d_c00368{transform:matrix(0.326480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326480,0.000000,0.000000,0.250000,0,0);}
.m62_c00368{transform:matrix(0.327665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327665,0.000000,0.000000,0.250000,0,0);}
.m47_c00368{transform:matrix(0.329122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329122,0.000000,0.000000,0.250000,0,0);}
.mc0_c00368{transform:matrix(0.329468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329468,0.000000,0.000000,0.250000,0,0);}
.m88_c00368{transform:matrix(0.329866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329866,0.000000,0.000000,0.250000,0,0);}
.m4f_c00368{transform:matrix(0.329904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329904,0.000000,0.000000,0.250000,0,0);}
.m57_c00368{transform:matrix(0.330718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330718,0.000000,0.000000,0.250000,0,0);}
.mc_c00368{transform:matrix(0.331064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331064,0.000000,0.000000,0.250000,0,0);}
.m44_c00368{transform:matrix(0.333126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333126,0.000000,0.000000,0.250000,0,0);}
.mb1_c00368{transform:matrix(0.333149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333149,0.000000,0.000000,0.250000,0,0);}
.ma3_c00368{transform:matrix(0.333272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333272,0.000000,0.000000,0.250000,0,0);}
.m74_c00368{transform:matrix(0.333414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333414,0.000000,0.000000,0.250000,0,0);}
.mab_c00368{transform:matrix(0.334357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334357,0.000000,0.000000,0.250000,0,0);}
.m50_c00368{transform:matrix(0.334700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334700,0.000000,0.000000,0.250000,0,0);}
.m36_c00368{transform:matrix(0.335676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335676,0.000000,0.000000,0.250000,0,0);}
.m1b_c00368{transform:matrix(0.335974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335974,0.000000,0.000000,0.250000,0,0);}
.m6d_c00368{transform:matrix(0.336348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336348,0.000000,0.000000,0.250000,0,0);}
.m58_c00368{transform:matrix(0.336489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336489,0.000000,0.000000,0.250000,0,0);}
.m8e_c00368{transform:matrix(0.336631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336631,0.000000,0.000000,0.250000,0,0);}
.m23_c00368{transform:matrix(0.336731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336731,0.000000,0.000000,0.250000,0,0);}
.m48_c00368{transform:matrix(0.336988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336988,0.000000,0.000000,0.250000,0,0);}
.mc6_c00368{transform:matrix(0.337024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337024,0.000000,0.000000,0.250000,0,0);}
.ma8_c00368{transform:matrix(0.337225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337225,0.000000,0.000000,0.250000,0,0);}
.m21_c00368{transform:matrix(0.337687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337687,0.000000,0.000000,0.250000,0,0);}
.m52_c00368{transform:matrix(0.338268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338268,0.000000,0.000000,0.250000,0,0);}
.m59_c00368{transform:matrix(0.340091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340091,0.000000,0.000000,0.250000,0,0);}
.m69_c00368{transform:matrix(0.341132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341132,0.000000,0.000000,0.250000,0,0);}
.m32_c00368{transform:matrix(0.341479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341479,0.000000,0.000000,0.250000,0,0);}
.m25_c00368{transform:matrix(0.341907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341907,0.000000,0.000000,0.250000,0,0);}
.m4e_c00368{transform:matrix(0.342311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342311,0.000000,0.000000,0.250000,0,0);}
.mcb_c00368{transform:matrix(0.342458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342458,0.000000,0.000000,0.250000,0,0);}
.mdc_c00368{transform:matrix(0.344061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344061,0.000000,0.000000,0.250000,0,0);}
.m86_c00368{transform:matrix(0.344610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344610,0.000000,0.000000,0.250000,0,0);}
.m1c_c00368{transform:matrix(0.346088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346088,0.000000,0.000000,0.250000,0,0);}
.m91_c00368{transform:matrix(0.348549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348549,0.000000,0.000000,0.250000,0,0);}
.mc2_c00368{transform:matrix(0.348624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348624,0.000000,0.000000,0.250000,0,0);}
.m99_c00368{transform:matrix(0.349824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349824,0.000000,0.000000,0.250000,0,0);}
.m9d_c00368{transform:matrix(0.350096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350096,0.000000,0.000000,0.250000,0,0);}
.m9e_c00368{transform:matrix(0.352002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352002,0.000000,0.000000,0.250000,0,0);}
.m71_c00368{transform:matrix(0.353271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353271,0.000000,0.000000,0.250000,0,0);}
.m41_c00368{transform:matrix(0.354447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354447,0.000000,0.000000,0.250000,0,0);}
.m33_c00368{transform:matrix(0.356907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356907,0.000000,0.000000,0.250000,0,0);}
.m64_c00368{transform:matrix(0.361545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361545,0.000000,0.000000,0.250000,0,0);}
.m54_c00368{transform:matrix(0.361780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361780,0.000000,0.000000,0.250000,0,0);}
.m14_c00368{transform:matrix(0.362585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362585,0.000000,0.000000,0.250000,0,0);}
.m55_c00368{transform:matrix(0.363041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363041,0.000000,0.000000,0.250000,0,0);}
.md5_c00368{transform:matrix(0.363234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363234,0.000000,0.000000,0.250000,0,0);}
.m16_c00368{transform:matrix(0.363517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363517,0.000000,0.000000,0.250000,0,0);}
.maa_c00368{transform:matrix(0.363781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363781,0.000000,0.000000,0.250000,0,0);}
.m20_c00368{transform:matrix(0.365654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365654,0.000000,0.000000,0.250000,0,0);}
.m4d_c00368{transform:matrix(0.366067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366067,0.000000,0.000000,0.250000,0,0);}
.m46_c00368{transform:matrix(0.367253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367253,0.000000,0.000000,0.250000,0,0);}
.m4c_c00368{transform:matrix(0.367917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367917,0.000000,0.000000,0.250000,0,0);}
.ma9_c00368{transform:matrix(0.368083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368083,0.000000,0.000000,0.250000,0,0);}
.me_c00368{transform:matrix(0.368194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368194,0.000000,0.000000,0.250000,0,0);}
.m1e_c00368{transform:matrix(0.368357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368357,0.000000,0.000000,0.250000,0,0);}
.m7b_c00368{transform:matrix(0.369527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369527,0.000000,0.000000,0.250000,0,0);}
.m11_c00368{transform:matrix(0.369545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369545,0.000000,0.000000,0.250000,0,0);}
.m95_c00368{transform:matrix(0.370126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370126,0.000000,0.000000,0.250000,0,0);}
.mcf_c00368{transform:matrix(0.372997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372997,0.000000,0.000000,0.250000,0,0);}
.m8a_c00368{transform:matrix(0.373606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373606,0.000000,0.000000,0.250000,0,0);}
.m18_c00368{transform:matrix(0.373651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373651,0.000000,0.000000,0.250000,0,0);}
.m1a_c00368{transform:matrix(0.374332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374332,0.000000,0.000000,0.250000,0,0);}
.m4b_c00368{transform:matrix(0.376612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376612,0.000000,0.000000,0.250000,0,0);}
.ma0_c00368{transform:matrix(0.378500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378500,0.000000,0.000000,0.250000,0,0);}
.m9_c00368{transform:matrix(0.386343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386343,0.000000,0.000000,0.250000,0,0);}
.m31_c00368{transform:matrix(0.389573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389573,0.000000,0.000000,0.250000,0,0);}
.me2_c00368{transform:matrix(0.390570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390570,0.000000,0.000000,0.250000,0,0);}
.m7d_c00368{transform:matrix(0.394197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394197,0.000000,0.000000,0.250000,0,0);}
.m3_c00368{transform:matrix(0.401851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401851,0.000000,0.000000,0.250000,0,0);}
.md3_c00368{transform:matrix(0.412222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412222,0.000000,0.000000,0.250000,0,0);}
.m81_c00368{transform:matrix(0.413329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413329,0.000000,0.000000,0.250000,0,0);}
.m30_c00368{transform:matrix(0.413413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413413,0.000000,0.000000,0.250000,0,0);}
.m5d_c00368{transform:matrix(0.437319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437319,0.000000,0.000000,0.250000,0,0);}
.ma6_c00368{transform:matrix(0.444859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444859,0.000000,0.000000,0.250000,0,0);}
.mc1_c00368{transform:matrix(0.445056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445056,0.000000,0.000000,0.250000,0,0);}
.mdd_c00368{transform:matrix(0.447070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447070,0.000000,0.000000,0.250000,0,0);}
.m77_c00368{transform:matrix(0.461540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461540,0.000000,0.000000,0.250000,0,0);}
.v1_c00368{vertical-align:-67.003200px;}
.v2_c00368{vertical-align:-1.437480px;}
.v0_c00368{vertical-align:0.000000px;}
.lse_c00368{letter-spacing:-2.661127px;}
.ls9_c00368{letter-spacing:-2.515590px;}
.ls13_c00368{letter-spacing:-1.229045px;}
.lsc_c00368{letter-spacing:-0.963112px;}
.ls1a_c00368{letter-spacing:-0.963072px;}
.ls3_c00368{letter-spacing:0.000000px;}
.ls4_c00368{letter-spacing:0.931276px;}
.ls2_c00368{letter-spacing:0.948737px;}
.ls7_c00368{letter-spacing:1.020611px;}
.ls1d_c00368{letter-spacing:1.524600px;}
.ls6_c00368{letter-spacing:1.722600px;}
.ls14_c00368{letter-spacing:2.319016px;}
.ls10_c00368{letter-spacing:2.465100px;}
.ls1b_c00368{letter-spacing:3.168000px;}
.ls16_c00368{letter-spacing:3.184018px;}
.ls18_c00368{letter-spacing:3.207610px;}
.ls17_c00368{letter-spacing:3.276900px;}
.lsa_c00368{letter-spacing:3.544200px;}
.ls5_c00368{letter-spacing:3.593700px;}
.ls15_c00368{letter-spacing:3.643200px;}
.ls19_c00368{letter-spacing:3.722400px;}
.lsd_c00368{letter-spacing:3.748387px;}
.lsf_c00368{letter-spacing:3.801610px;}
.ls1e_c00368{letter-spacing:3.880810px;}
.ls1_c00368{letter-spacing:14.486076px;}
.ls0_c00368{letter-spacing:20.535306px;}
.ls12_c00368{letter-spacing:47.044800px;}
.lsb_c00368{letter-spacing:48.470598px;}
.ls8_c00368{letter-spacing:51.321798px;}
.ls11_c00368{letter-spacing:52.747398px;}
.ls1c_c00368{letter-spacing:55.598598px;}
.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;}
}
.ws1_c00368{word-spacing:-18.989111px;}
.wsa_c00368{word-spacing:-18.917237px;}
.ws2_c00368{word-spacing:-17.968500px;}
.ws8_c00368{word-spacing:-16.739455px;}
.wsd_c00368{word-spacing:-15.840000px;}
.wsc_c00368{word-spacing:-3.593700px;}
.ws0_c00368{word-spacing:-1.365606px;}
.ws3_c00368{word-spacing:-0.431244px;}
.wse_c00368{word-spacing:0.000000px;}
.ws5_c00368{word-spacing:4.456188px;}
.ws6_c00368{word-spacing:4.743684px;}
.ws7_c00368{word-spacing:5.018211px;}
.wsb_c00368{word-spacing:6.109290px;}
.ws4_c00368{word-spacing:7.546770px;}
.ws9_c00368{word-spacing:8.912376px;}
._1c_c00368{margin-left:-12.649824px;}
._17_c00368{margin-left:-11.068596px;}
._5_c00368{margin-left:-5.749920px;}
._f_c00368{margin-left:-2.297196px;}
._4_c00368{width:1.408730px;}
._10_c00368{width:2.443716px;}
._3_c00368{width:5.605380px;}
._6_c00368{width:7.546770px;}
._d_c00368{width:9.559242px;}
._2_c00368{width:10.925640px;}
._15_c00368{width:12.434202px;}
._14_c00368{width:13.800204px;}
._b_c00368{width:14.877918px;}
._8_c00368{width:20.412216px;}
._1b_c00368{width:22.640310px;}
._9_c00368{width:24.077790px;}
._e_c00368{width:25.515270px;}
._7_c00368{width:27.096498px;}
._1d_c00368{width:28.393200px;}
._12_c00368{width:30.968566px;}
._1a_c00368{width:32.558922px;}
._c_c00368{width:33.706134px;}
._a_c00368{width:34.879482px;}
._18_c00368{width:38.142324px;}
._19_c00368{width:41.398434px;}
._1_c00368{width:42.906600px;}
._1e_c00368{width:44.557128px;}
._16_c00368{width:46.511606px;}
._11_c00368{width:52.380702px;}
._13_c00368{width:930.560400px;}
._0_c00368{width:1766.556000px;}
.fc0_c00368{color:transparent;}
.fs11_c00368{font-size:17.028000px;}
.fs1_c00368{font-size:22.374000px;}
.fsf_c00368{font-size:25.344000px;}
.fs9_c00368{font-size:27.720000px;}
.fs1c_c00368{font-size:30.492000px;}
.fs0_c00368{font-size:33.660000px;}
.fs4_c00368{font-size:34.452000px;}
.fs18_c00368{font-size:36.630000px;}
.fs15_c00368{font-size:36.828000px;}
.fsa_c00368{font-size:38.808000px;}
.fs8_c00368{font-size:39.204000px;}
.fs10_c00368{font-size:47.044800px;}
.fs7_c00368{font-size:48.470598px;}
.fsd_c00368{font-size:49.302000px;}
.fs5_c00368{font-size:51.321798px;}
.fse_c00368{font-size:52.747398px;}
.fs1a_c00368{font-size:55.598598px;}
.fs12_c00368{font-size:62.172000px;}
.fs19_c00368{font-size:63.360000px;}
.fs16_c00368{font-size:64.152198px;}
.fs14_c00368{font-size:65.538000px;}
.fsb_c00368{font-size:66.528000px;}
.fs1b_c00368{font-size:68.706198px;}
.fs6_c00368{font-size:70.884000px;}
.fs3_c00368{font-size:71.874000px;}
.fs13_c00368{font-size:72.864000px;}
.fs17_c00368{font-size:74.448000px;}
.fsc_c00368{font-size:76.032198px;}
.fs1d_c00368{font-size:77.616198px;}
.fs2_c00368{font-size:79.596198px;}
.y0_c00368{bottom:0.000000px;}
.y1_c00368{bottom:76.500000px;}
.y24_c00368{bottom:141.759135px;}
.y25_c00368{bottom:147.100185px;}
.y23_c00368{bottom:171.340335px;}
.y22_c00368{bottom:206.623935px;}
.y21_c00368{bottom:239.412735px;}
.y20_c00368{bottom:259.366185px;}
.y1f_c00368{bottom:272.201535px;}
.y2_c00368{bottom:287.170335px;}
.y1e_c00368{bottom:304.628985px;}
.y1d_c00368{bottom:337.066335px;}
.y1c_c00368{bottom:369.850185px;}
.y1b_c00368{bottom:402.638985px;}
.y1a_c00368{bottom:436.501935px;}
.y19_c00368{bottom:460.737135px;}
.y18_c00368{bottom:469.647135px;}
.y17_c00368{bottom:502.074585px;}
.y16_c00368{bottom:527.740335px;}
.y12_c00368{bottom:534.506985px;}
.y14_c00368{bottom:535.576185px;}
.y13_c00368{bottom:535.932585px;}
.y15_c00368{bottom:549.119385px;}
.y11_c00368{bottom:561.954735px;}
.y10_c00368{bottom:605.430585px;}
.yd_c00368{bottom:632.160585px;}
.yf_c00368{bottom:637.511535px;}
.ye_c00368{bottom:640.362735px;}
.yc_c00368{bottom:665.667135px;}
.yb_c00368{bottom:698.455935px;}
.ya_c00368{bottom:730.888335px;}
.y9_c00368{bottom:762.959385px;}
.y8_c00368{bottom:795.391785px;}
.y7_c00368{bottom:859.543785px;}
.y6_c00368{bottom:895.545135px;}
.y4_c00368{bottom:928.690335px;}
.y5_c00368{bottom:934.031385px;}
.y3_c00368{bottom:1095.124185px;}
.h3_c00368{height:21.958857px;}
.h10_c00368{height:24.873750px;}
.ha_c00368{height:28.911094px;}
.h11_c00368{height:31.331837px;}
.h1a_c00368{height:31.802203px;}
.h8_c00368{height:32.281418px;}
.h2_c00368{height:33.035449px;}
.h6_c00368{height:34.180317px;}
.hf_c00368{height:35.129767px;}
.h5_c00368{height:35.932359px;}
.h18_c00368{height:37.028666px;}
.h9_c00368{height:38.476582px;}
.hb_c00368{height:40.475531px;}
.he_c00368{height:48.387217px;}
.h17_c00368{height:62.184375px;}
.h12_c00368{height:64.843453px;}
.h15_c00368{height:66.908738px;}
.h19_c00368{height:67.431376px;}
.h14_c00368{height:68.354086px;}
.hc_c00368{height:69.386625px;}
.h7_c00368{height:69.568770px;}
.h4_c00368{height:70.540400px;}
.h13_c00368{height:71.512031px;}
.h16_c00368{height:73.066641px;}
.h1b_c00368{height:76.176054px;}
.hd_c00368{height:76.626200px;}
.h1_c00368{height:1110.000000px;}
.h0_c00368{height:1263.000000px;}
.w1_c00368{width:775.500000px;}
.w0_c00368{width:892.500000px;}
.x0_c00368{left:0.000000px;}
.x2_c00368{left:54.738735px;}
.x1_c00368{left:58.500000px;}
.x3f_c00368{left:94.813935px;}
.x4_c00368{left:95.818785px;}
.x6b_c00368{left:97.239435px;}
.x5a_c00368{left:107.109735px;}
.x70_c00368{left:108.470985px;}
.x30_c00368{left:117.029535px;}
.x27_c00368{left:118.460085px;}
.x17_c00368{left:128.652135px;}
.x7f_c00368{left:129.854985px;}
.x6c_c00368{left:139.363935px;}
.x5_c00368{left:150.714285px;}
.x31_c00368{left:161.049885px;}
.x18_c00368{left:163.029885px;}
.x6_c00368{left:172.281435px;}
.x19_c00368{left:183.735735px;}
.x5f_c00368{left:185.290035px;}
.x32_c00368{left:193.150635px;}
.x7_c00368{left:194.526735px;}
.x73_c00368{left:195.724635px;}
.x5b_c00368{left:197.630385px;}
.x65_c00368{left:202.352685px;}
.x28_c00368{left:205.233585px;}
.x51_c00368{left:207.164085px;}
.x8_c00368{left:216.841335px;}
.x44_c00368{left:219.242085px;}
.x3_c00368{left:227.280885px;}
.x77_c00368{left:228.394635px;}
.x52_c00368{left:229.543035px;}
.x78_c00368{left:231.003285px;}
.x40_c00368{left:238.438185px;}
.x1a_c00368{left:239.512335px;}
.x66_c00368{left:249.159885px;}
.x60_c00368{left:250.535985px;}
.x79_c00368{left:251.728935px;}
.x9_c00368{left:260.114235px;}
.x33_c00368{left:261.148785px;}
.x84_c00368{left:262.242735px;}
.x38_c00368{left:263.341635px;}
.x7d_c00368{left:271.558635px;}
.x1b_c00368{left:272.835735px;}
.x39_c00368{left:281.513085px;}
.x1c_c00368{left:283.552485px;}
.x67_c00368{left:293.655435px;}
.x1d_c00368{left:295.155285px;}
.xa_c00368{left:305.233485px;}
.x45_c00368{left:306.649185px;}
.x80_c00368{left:308.525235px;}
.x29_c00368{left:314.999835px;}
.x46_c00368{left:316.781835px;}
.x64_c00368{left:323.083185px;}
.x82_c00368{left:325.241385px;}
.xb_c00368{left:327.671835px;}
.x68_c00368{left:328.745985px;}
.x41_c00368{left:338.155935px;}
.x47_c00368{left:339.289485px;}
.x34_c00368{left:349.971585px;}
.x61_c00368{left:351.199185px;}
.x74_c00368{left:360.604185px;}
.x6d_c00368{left:361.881285px;}
.x7a_c00368{left:370.994235px;}
.xc_c00368{left:372.518835px;}
.x35_c00368{left:384.260235px;}
.xd_c00368{left:393.828585px;}
.x1e_c00368{left:395.026485px;}
.x4f_c00368{left:398.288535px;}
.x3a_c00368{left:405.183885px;}
.x85_c00368{left:406.282785px;}
.x36_c00368{left:416.405535px;}
.x2a_c00368{left:417.687585px;}
.x86_c00368{left:423.394935px;}
.x87_c00368{left:425.884785px;}
.x2b_c00368{left:427.671735px;}
.xe_c00368{left:437.938035px;}
.x2c_c00368{left:439.432935px;}
.x53_c00368{left:446.803485px;}
.x3b_c00368{left:449.179485px;}
.x48_c00368{left:450.263535px;}
.x75_c00368{left:461.306985px;}
.x1f_c00368{left:464.351235px;}
.x20_c00368{left:471.642585px;}
.x54_c00368{left:472.691985px;}
.x2d_c00368{left:482.344485px;}
.xf_c00368{left:483.369135px;}
.x21_c00368{left:493.526535px;}
.x49_c00368{left:495.115485px;}
.x55_c00368{left:496.521285px;}
.x3c_c00368{left:504.787785px;}
.x69_c00368{left:505.866885px;}
.x10_c00368{left:507.614235px;}
.x7e_c00368{left:514.910535px;}
.x2e_c00368{left:516.548985px;}
.x11_c00368{left:526.869735px;}
.x56_c00368{left:527.933985px;}
.x22_c00368{left:538.121085px;}
.x5c_c00368{left:539.378385px;}
.x42_c00368{left:548.090385px;}
.x62_c00368{left:549.377385px;}
.x12_c00368{left:550.956435px;}
.x23_c00368{left:559.668435px;}
.x76_c00368{left:560.698035px;}
.x6e_c00368{left:571.320735px;}
.x24_c00368{left:581.913735px;}
.x3d_c00368{left:593.387835px;}
.x37_c00368{left:604.238235px;}
.x13_c00368{left:607.133985px;}
.x88_c00368{left:612.306735px;}
.x3e_c00368{left:615.920235px;}
.x71_c00368{left:617.801235px;}
.x2f_c00368{left:625.993485px;}
.x83_c00368{left:627.725985px;}
.x14_c00368{left:637.660635px;}
.x63_c00368{left:639.120885px;}
.x15_c00368{left:647.560635px;}
.x43_c00368{left:649.124835px;}
.x89_c00368{left:650.189085px;}
.x5d_c00368{left:659.277285px;}
.x4a_c00368{left:660.524685px;}
.x58_c00368{left:670.380135px;}
.x81_c00368{left:671.414685px;}
.x6f_c00368{left:673.558035px;}
.x4b_c00368{left:681.750285px;}
.x6a_c00368{left:683.007585px;}
.x72_c00368{left:684.680685px;}
.x16_c00368{left:691.358235px;}
.x4c_c00368{left:693.273885px;}
.x4e_c00368{left:701.273085px;}
.x7c_c00368{left:702.342285px;}
.x50_c00368{left:704.327235px;}
.x57_c00368{left:706.015185px;}
.x59_c00368{left:708.707985px;}
.x5e_c00368{left:712.984785px;}
.x25_c00368{left:715.068735px;}
.x7b_c00368{left:718.306035px;}
.x4d_c00368{left:719.399985px;}
.x26_c00368{left:737.472435px;}
.x8a_c00368{left:738.838635px;}
@media print{
.v1_c00368{vertical-align:-59.558400pt;}
.v2_c00368{vertical-align:-1.277760pt;}
.v0_c00368{vertical-align:0.000000pt;}
.lse_c00368{letter-spacing:-2.365446pt;}
.ls9_c00368{letter-spacing:-2.236080pt;}
.ls13_c00368{letter-spacing:-1.092485pt;}
.lsc_c00368{letter-spacing:-0.856099pt;}
.ls1a_c00368{letter-spacing:-0.856064pt;}
.ls3_c00368{letter-spacing:0.000000pt;}
.ls4_c00368{letter-spacing:0.827800pt;}
.ls2_c00368{letter-spacing:0.843322pt;}
.ls7_c00368{letter-spacing:0.907210pt;}
.ls1d_c00368{letter-spacing:1.355200pt;}
.ls6_c00368{letter-spacing:1.531200pt;}
.ls14_c00368{letter-spacing:2.061347pt;}
.ls10_c00368{letter-spacing:2.191200pt;}
.ls1b_c00368{letter-spacing:2.816000pt;}
.ls16_c00368{letter-spacing:2.830238pt;}
.ls18_c00368{letter-spacing:2.851209pt;}
.ls17_c00368{letter-spacing:2.912800pt;}
.lsa_c00368{letter-spacing:3.150400pt;}
.ls5_c00368{letter-spacing:3.194400pt;}
.ls15_c00368{letter-spacing:3.238400pt;}
.ls19_c00368{letter-spacing:3.308800pt;}
.lsd_c00368{letter-spacing:3.331900pt;}
.lsf_c00368{letter-spacing:3.379209pt;}
.ls1e_c00368{letter-spacing:3.449609pt;}
.ls1_c00368{letter-spacing:12.876512pt;}
.ls0_c00368{letter-spacing:18.253605pt;}
.ls12_c00368{letter-spacing:41.817600pt;}
.lsb_c00368{letter-spacing:43.084976pt;}
.ls8_c00368{letter-spacing:45.619376pt;}
.ls11_c00368{letter-spacing:46.886576pt;}
.ls1c_c00368{letter-spacing:49.420976pt;}
.ws1_c00368{word-spacing:-16.879210pt;}
.wsa_c00368{word-spacing:-16.815322pt;}
.ws2_c00368{word-spacing:-15.972000pt;}
.ws8_c00368{word-spacing:-14.879515pt;}
.wsd_c00368{word-spacing:-14.080000pt;}
.wsc_c00368{word-spacing:-3.194400pt;}
.ws0_c00368{word-spacing:-1.213872pt;}
.ws3_c00368{word-spacing:-0.383328pt;}
.wse_c00368{word-spacing:0.000000pt;}
.ws5_c00368{word-spacing:3.961056pt;}
.ws6_c00368{word-spacing:4.216608pt;}
.ws7_c00368{word-spacing:4.460632pt;}
.wsb_c00368{word-spacing:5.430480pt;}
.ws4_c00368{word-spacing:6.708240pt;}
.ws9_c00368{word-spacing:7.922112pt;}
._1c_c00368{margin-left:-11.244288pt;}
._17_c00368{margin-left:-9.838752pt;}
._5_c00368{margin-left:-5.111040pt;}
._f_c00368{margin-left:-2.041952pt;}
._4_c00368{width:1.252205pt;}
._10_c00368{width:2.172192pt;}
._3_c00368{width:4.982560pt;}
._6_c00368{width:6.708240pt;}
._d_c00368{width:8.497104pt;}
._2_c00368{width:9.711680pt;}
._15_c00368{width:11.052624pt;}
._14_c00368{width:12.266848pt;}
._b_c00368{width:13.224816pt;}
._8_c00368{width:18.144192pt;}
._1b_c00368{width:20.124720pt;}
._9_c00368{width:21.402480pt;}
._e_c00368{width:22.680240pt;}
._7_c00368{width:24.085776pt;}
._1d_c00368{width:25.238400pt;}
._12_c00368{width:27.527614pt;}
._1a_c00368{width:28.941264pt;}
._c_c00368{width:29.961008pt;}
._a_c00368{width:31.003984pt;}
._18_c00368{width:33.904288pt;}
._19_c00368{width:36.798608pt;}
._1_c00368{width:38.139200pt;}
._1e_c00368{width:39.606336pt;}
._16_c00368{width:41.343650pt;}
._11_c00368{width:46.560624pt;}
._13_c00368{width:827.164800pt;}
._0_c00368{width:1570.272000pt;}
.fs11_c00368{font-size:15.136000pt;}
.fs1_c00368{font-size:19.888000pt;}
.fsf_c00368{font-size:22.528000pt;}
.fs9_c00368{font-size:24.640000pt;}
.fs1c_c00368{font-size:27.104000pt;}
.fs0_c00368{font-size:29.920000pt;}
.fs4_c00368{font-size:30.624000pt;}
.fs18_c00368{font-size:32.560000pt;}
.fs15_c00368{font-size:32.736000pt;}
.fsa_c00368{font-size:34.496000pt;}
.fs8_c00368{font-size:34.848000pt;}
.fs10_c00368{font-size:41.817600pt;}
.fs7_c00368{font-size:43.084976pt;}
.fsd_c00368{font-size:43.824000pt;}
.fs5_c00368{font-size:45.619376pt;}
.fse_c00368{font-size:46.886576pt;}
.fs1a_c00368{font-size:49.420976pt;}
.fs12_c00368{font-size:55.264000pt;}
.fs19_c00368{font-size:56.320000pt;}
.fs16_c00368{font-size:57.024176pt;}
.fs14_c00368{font-size:58.256000pt;}
.fsb_c00368{font-size:59.136000pt;}
.fs1b_c00368{font-size:61.072176pt;}
.fs6_c00368{font-size:63.008000pt;}
.fs3_c00368{font-size:63.888000pt;}
.fs13_c00368{font-size:64.768000pt;}
.fs17_c00368{font-size:66.176000pt;}
.fsc_c00368{font-size:67.584176pt;}
.fs1d_c00368{font-size:68.992176pt;}
.fs2_c00368{font-size:70.752176pt;}
.y0_c00368{bottom:0.000000pt;}
.y1_c00368{bottom:68.000000pt;}
.y24_c00368{bottom:126.008120pt;}
.y25_c00368{bottom:130.755720pt;}
.y23_c00368{bottom:152.302520pt;}
.y22_c00368{bottom:183.665720pt;}
.y21_c00368{bottom:212.811320pt;}
.y20_c00368{bottom:230.547720pt;}
.y1f_c00368{bottom:241.956920pt;}
.y2_c00368{bottom:255.262520pt;}
.y1e_c00368{bottom:270.781320pt;}
.y1d_c00368{bottom:299.614520pt;}
.y1c_c00368{bottom:328.755720pt;}
.y1b_c00368{bottom:357.901320pt;}
.y1a_c00368{bottom:388.001720pt;}
.y19_c00368{bottom:409.544120pt;}
.y18_c00368{bottom:417.464120pt;}
.y17_c00368{bottom:446.288520pt;}
.y16_c00368{bottom:469.102520pt;}
.y12_c00368{bottom:475.117320pt;}
.y14_c00368{bottom:476.067720pt;}
.y13_c00368{bottom:476.384520pt;}
.y15_c00368{bottom:488.106120pt;}
.y11_c00368{bottom:499.515320pt;}
.y10_c00368{bottom:538.160520pt;}
.yd_c00368{bottom:561.920520pt;}
.yf_c00368{bottom:566.676920pt;}
.ye_c00368{bottom:569.211320pt;}
.yc_c00368{bottom:591.704120pt;}
.yb_c00368{bottom:620.849720pt;}
.ya_c00368{bottom:649.678520pt;}
.y9_c00368{bottom:678.186120pt;}
.y8_c00368{bottom:707.014920pt;}
.y7_c00368{bottom:764.038920pt;}
.y6_c00368{bottom:796.040120pt;}
.y4_c00368{bottom:825.502520pt;}
.y5_c00368{bottom:830.250120pt;}
.y3_c00368{bottom:973.443720pt;}
.h3_c00368{height:19.518984pt;}
.h10_c00368{height:22.110000pt;}
.ha_c00368{height:25.698750pt;}
.h11_c00368{height:27.850522pt;}
.h1a_c00368{height:28.268625pt;}
.h8_c00368{height:28.694594pt;}
.h2_c00368{height:29.364844pt;}
.h6_c00368{height:30.382504pt;}
.hf_c00368{height:31.226460pt;}
.h5_c00368{height:31.939875pt;}
.h18_c00368{height:32.914370pt;}
.h9_c00368{height:34.201406pt;}
.hb_c00368{height:35.978250pt;}
.he_c00368{height:43.010859pt;}
.h17_c00368{height:55.275000pt;}
.h12_c00368{height:57.638625pt;}
.h15_c00368{height:59.474434pt;}
.h19_c00368{height:59.939001pt;}
.h14_c00368{height:60.759188pt;}
.hc_c00368{height:61.677000pt;}
.h7_c00368{height:61.838906pt;}
.h4_c00368{height:62.702578pt;}
.h13_c00368{height:63.566250pt;}
.h16_c00368{height:64.948125pt;}
.h1b_c00368{height:67.712048pt;}
.hd_c00368{height:68.112177pt;}
.h1_c00368{height:986.666667pt;}
.h0_c00368{height:1122.666667pt;}
.w1_c00368{width:689.333333pt;}
.w0_c00368{width:793.333333pt;}
.x0_c00368{left:0.000000pt;}
.x2_c00368{left:48.656653pt;}
.x1_c00368{left:52.000000pt;}
.x3f_c00368{left:84.279053pt;}
.x4_c00368{left:85.172253pt;}
.x6b_c00368{left:86.435053pt;}
.x5a_c00368{left:95.208653pt;}
.x70_c00368{left:96.418653pt;}
.x30_c00368{left:104.026253pt;}
.x27_c00368{left:105.297853pt;}
.x17_c00368{left:114.357453pt;}
.x7f_c00368{left:115.426653pt;}
.x6c_c00368{left:123.879053pt;}
.x5_c00368{left:133.968253pt;}
.x31_c00368{left:143.155453pt;}
.x18_c00368{left:144.915453pt;}
.x6_c00368{left:153.139053pt;}
.x19_c00368{left:163.320653pt;}
.x5f_c00368{left:164.702253pt;}
.x32_c00368{left:171.689453pt;}
.x7_c00368{left:172.912653pt;}
.x73_c00368{left:173.977453pt;}
.x5b_c00368{left:175.671453pt;}
.x65_c00368{left:179.869053pt;}
.x28_c00368{left:182.429853pt;}
.x51_c00368{left:184.145853pt;}
.x8_c00368{left:192.747853pt;}
.x44_c00368{left:194.881853pt;}
.x3_c00368{left:202.027453pt;}
.x77_c00368{left:203.017453pt;}
.x52_c00368{left:204.038253pt;}
.x78_c00368{left:205.336253pt;}
.x40_c00368{left:211.945053pt;}
.x1a_c00368{left:212.899853pt;}
.x66_c00368{left:221.475453pt;}
.x60_c00368{left:222.698653pt;}
.x79_c00368{left:223.759053pt;}
.x9_c00368{left:231.212653pt;}
.x33_c00368{left:232.132253pt;}
.x84_c00368{left:233.104653pt;}
.x38_c00368{left:234.081453pt;}
.x7d_c00368{left:241.385453pt;}
.x1b_c00368{left:242.520653pt;}
.x39_c00368{left:250.233853pt;}
.x1c_c00368{left:252.046653pt;}
.x67_c00368{left:261.027053pt;}
.x1d_c00368{left:262.360253pt;}
.xa_c00368{left:271.318653pt;}
.x45_c00368{left:272.577053pt;}
.x80_c00368{left:274.244653pt;}
.x29_c00368{left:279.999853pt;}
.x46_c00368{left:281.583853pt;}
.x64_c00368{left:287.185053pt;}
.x82_c00368{left:289.103453pt;}
.xb_c00368{left:291.263853pt;}
.x68_c00368{left:292.218653pt;}
.x41_c00368{left:300.583053pt;}
.x47_c00368{left:301.590653pt;}
.x34_c00368{left:311.085853pt;}
.x61_c00368{left:312.177053pt;}
.x74_c00368{left:320.537053pt;}
.x6d_c00368{left:321.672253pt;}
.x7a_c00368{left:329.772653pt;}
.xc_c00368{left:331.127853pt;}
.x35_c00368{left:341.564653pt;}
.xd_c00368{left:350.069853pt;}
.x1e_c00368{left:351.134653pt;}
.x4f_c00368{left:354.034253pt;}
.x3a_c00368{left:360.163453pt;}
.x85_c00368{left:361.140253pt;}
.x36_c00368{left:370.138253pt;}
.x2a_c00368{left:371.277853pt;}
.x86_c00368{left:376.351053pt;}
.x87_c00368{left:378.564253pt;}
.x2b_c00368{left:380.152653pt;}
.xe_c00368{left:389.278253pt;}
.x2c_c00368{left:390.607053pt;}
.x53_c00368{left:397.158653pt;}
.x3b_c00368{left:399.270653pt;}
.x48_c00368{left:400.234253pt;}
.x75_c00368{left:410.050653pt;}
.x1f_c00368{left:412.756653pt;}
.x20_c00368{left:419.237853pt;}
.x54_c00368{left:420.170653pt;}
.x2d_c00368{left:428.750653pt;}
.xf_c00368{left:429.661453pt;}
.x21_c00368{left:438.690253pt;}
.x49_c00368{left:440.102653pt;}
.x55_c00368{left:441.352253pt;}
.x3c_c00368{left:448.700253pt;}
.x69_c00368{left:449.659453pt;}
.x10_c00368{left:451.212653pt;}
.x7e_c00368{left:457.698253pt;}
.x2e_c00368{left:459.154653pt;}
.x11_c00368{left:468.328653pt;}
.x56_c00368{left:469.274653pt;}
.x22_c00368{left:478.329853pt;}
.x5c_c00368{left:479.447453pt;}
.x42_c00368{left:487.191453pt;}
.x62_c00368{left:488.335453pt;}
.x12_c00368{left:489.739053pt;}
.x23_c00368{left:497.483053pt;}
.x76_c00368{left:498.398253pt;}
.x6e_c00368{left:507.840653pt;}
.x24_c00368{left:517.256653pt;}
.x3d_c00368{left:527.455853pt;}
.x37_c00368{left:537.100653pt;}
.x13_c00368{left:539.674653pt;}
.x88_c00368{left:544.272653pt;}
.x3e_c00368{left:547.484653pt;}
.x71_c00368{left:549.156653pt;}
.x2f_c00368{left:556.438653pt;}
.x83_c00368{left:557.978653pt;}
.x14_c00368{left:566.809453pt;}
.x63_c00368{left:568.107453pt;}
.x15_c00368{left:575.609453pt;}
.x43_c00368{left:576.999853pt;}
.x89_c00368{left:577.945853pt;}
.x5d_c00368{left:586.024253pt;}
.x4a_c00368{left:587.133053pt;}
.x58_c00368{left:595.893453pt;}
.x81_c00368{left:596.813053pt;}
.x6f_c00368{left:598.718253pt;}
.x4b_c00368{left:606.000253pt;}
.x6a_c00368{left:607.117853pt;}
.x72_c00368{left:608.605053pt;}
.x16_c00368{left:614.540653pt;}
.x4c_c00368{left:616.243453pt;}
.x4e_c00368{left:623.353853pt;}
.x7c_c00368{left:624.304253pt;}
.x50_c00368{left:626.068653pt;}
.x57_c00368{left:627.569053pt;}
.x59_c00368{left:629.962653pt;}
.x5e_c00368{left:633.764253pt;}
.x25_c00368{left:635.616653pt;}
.x7b_c00368{left:638.494253pt;}
.x4d_c00368{left:639.466653pt;}
.x26_c00368{left:655.531053pt;}
.x8a_c00368{left:656.745453pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_16314437e1704ab6a4cb0d61.woff2')format("woff");}.ff1_c00369{font-family:ff1_c00369;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00369;src:url('chunks/assets/font_dcc1f15655650525f14f1763.woff2')format("woff");}.ff2_c00369{font-family:ff2_c00369;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00369;src:url('chunks/assets/font_de9ab48a1e2c8834cffa9dab.woff2')format("woff");}.ff3_c00369{font-family:ff3_c00369;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00369;src:url('chunks/assets/font_5a5462c1fac123487aeeb7c0.woff2')format("woff");}.ff4_c00369{font-family:ff4_c00369;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00369;src:url('chunks/assets/font_c02ade7b2bc33b49c4548259.woff2')format("woff");}.ff5_c00369{font-family:ff5_c00369;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00369;src:url('chunks/assets/font_29316913c1cf59e4a526ac29.woff2')format("woff");}.ff6_c00369{font-family:ff6_c00369;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m31_c00369{transform:matrix(0.013890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013890,0.000000,0.000000,0.250000,0,0);}
.m72_c00369{transform:matrix(0.029413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.029413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.029413,0.000000,0.000000,0.250000,0,0);}
.m41_c00369{transform:matrix(0.033785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.033785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.033785,0.000000,0.000000,0.250000,0,0);}
.m2f_c00369{transform:matrix(0.038195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.038195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.038195,0.000000,0.000000,0.250000,0,0);}
.m71_c00369{transform:matrix(0.044118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.044118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.044118,0.000000,0.000000,0.250000,0,0);}
.m6c_c00369{transform:matrix(0.051471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.051471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.051471,0.000000,0.000000,0.250000,0,0);}
.m56_c00369{transform:matrix(0.068751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.068751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.068751,0.000000,0.000000,0.250000,0,0);}
.m73_c00369{transform:matrix(0.073530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073530,0.000000,0.000000,0.250000,0,0);}
.m53_c00369{transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);}
.m60_c00369{transform:matrix(0.076390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076390,0.000000,0.000000,0.250000,0,0);}
.m6f_c00369{transform:matrix(0.080883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080883,0.000000,0.000000,0.250000,0,0);}
.m5c_c00369{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);}
.m70_c00369{transform:matrix(0.088235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088235,0.000000,0.000000,0.250000,0,0);}
.m4c_c00369{transform:matrix(0.091383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091383,0.000000,0.000000,0.250000,0,0);}
.m75_c00369{transform:matrix(0.095589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095589,0.000000,0.000000,0.250000,0,0);}
.m30_c00369{transform:matrix(0.104166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104166,0.000000,0.000000,0.250000,0,0);}
.m102_c00369{transform:matrix(0.110095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110095,0.000000,0.000000,0.250000,0,0);}
.m5d_c00369{transform:matrix(0.111112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111112,0.000000,0.000000,0.250000,0,0);}
.mbf_c00369{transform:matrix(0.113441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113441,0.000000,0.000000,0.250000,0,0);}
.mde_c00369{transform:matrix(0.120714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120714,0.000000,0.000000,0.250000,0,0);}
.m8_c00369{transform:matrix(0.127783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127783,0.000000,0.000000,0.250000,0,0);}
.m6d_c00369{transform:matrix(0.128676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128676,0.000000,0.000000,0.250000,0,0);}
.med_c00369{transform:matrix(0.129039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129039,0.000000,0.000000,0.250000,0,0);}
.m42_c00369{transform:matrix(0.135136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135136,0.000000,0.000000,0.250000,0,0);}
.me4_c00369{transform:matrix(0.138329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138329,0.000000,0.000000,0.250000,0,0);}
.mb9_c00369{transform:matrix(0.140524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140524,0.000000,0.000000,0.250000,0,0);}
.mc7_c00369{transform:matrix(0.140771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140771,0.000000,0.000000,0.250000,0,0);}
.m10_c00369{transform:matrix(0.141160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141160,0.000000,0.000000,0.250000,0,0);}
.ma9_c00369{transform:matrix(0.141880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141880,0.000000,0.000000,0.250000,0,0);}
.m5f_c00369{transform:matrix(0.152777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152777,0.000000,0.000000,0.250000,0,0);}
.m54_c00369{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.mda_c00369{transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);}
.md3_c00369{transform:matrix(0.168572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168572,0.000000,0.000000,0.250000,0,0);}
.m6e_c00369{transform:matrix(0.169118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169118,0.000000,0.000000,0.250000,0,0);}
.m6a_c00369{transform:matrix(0.176471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176471,0.000000,0.000000,0.250000,0,0);}
.m5e_c00369{transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);}
.m59_c00369{transform:matrix(0.182383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182383,0.000000,0.000000,0.250000,0,0);}
.mce_c00369{transform:matrix(0.182433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182433,0.000000,0.000000,0.250000,0,0);}
.m55_c00369{transform:matrix(0.184375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184375,0.000000,0.000000,0.250000,0,0);}
.mcf_c00369{transform:matrix(0.189188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189188,0.000000,0.000000,0.250000,0,0);}
.m2e_c00369{transform:matrix(0.189814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189814,0.000000,0.000000,0.250000,0,0);}
.mc8_c00369{transform:matrix(0.190239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190239,0.000000,0.000000,0.250000,0,0);}
.mc1_c00369{transform:matrix(0.190649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190649,0.000000,0.000000,0.250000,0,0);}
.m5b_c00369{transform:matrix(0.190972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190972,0.000000,0.000000,0.250000,0,0);}
.m2b_c00369{transform:matrix(0.191546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191546,0.000000,0.000000,0.250000,0,0);}
.ma8_c00369{transform:matrix(0.195033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195033,0.000000,0.000000,0.250000,0,0);}
.mcd_c00369{transform:matrix(0.195946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195946,0.000000,0.000000,0.250000,0,0);}
.m3f_c00369{transform:matrix(0.197284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197284,0.000000,0.000000,0.250000,0,0);}
.mb7_c00369{transform:matrix(0.199151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199151,0.000000,0.000000,0.250000,0,0);}
.m43_c00369{transform:matrix(0.202702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202702,0.000000,0.000000,0.250000,0,0);}
.mb3_c00369{transform:matrix(0.205366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205366,0.000000,0.000000,0.250000,0,0);}
.md9_c00369{transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);}
.m40_c00369{transform:matrix(0.209460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209460,0.000000,0.000000,0.250000,0,0);}
.m81_c00369{transform:matrix(0.210452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210452,0.000000,0.000000,0.250000,0,0);}
.md2_c00369{transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);}
.md4_c00369{transform:matrix(0.210975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210975,0.000000,0.000000,0.250000,0,0);}
.mb2_c00369{transform:matrix(0.214504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214504,0.000000,0.000000,0.250000,0,0);}
.m69_c00369{transform:matrix(0.215686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215686,0.000000,0.000000,0.250000,0,0);}
.m7d_c00369{transform:matrix(0.216595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216595,0.000000,0.000000,0.250000,0,0);}
.m6b_c00369{transform:matrix(0.220587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220587,0.000000,0.000000,0.250000,0,0);}
.m3_c00369{transform:matrix(0.232024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232024,0.000000,0.000000,0.250000,0,0);}
.mca_c00369{transform:matrix(0.232798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232798,0.000000,0.000000,0.250000,0,0);}
.m99_c00369{transform:matrix(0.233827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233827,0.000000,0.000000,0.250000,0,0);}
.md0_c00369{transform:matrix(0.234661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234661,0.000000,0.000000,0.250000,0,0);}
.m83_c00369{transform:matrix(0.234947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234947,0.000000,0.000000,0.250000,0,0);}
.m9f_c00369{transform:matrix(0.238808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238808,0.000000,0.000000,0.250000,0,0);}
.mfd_c00369{transform:matrix(0.248326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248326,0.000000,0.000000,0.250000,0,0);}
.m0_c00369{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.mac_c00369{transform:matrix(0.251568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251568,0.000000,0.000000,0.250000,0,0);}
.m64_c00369{transform:matrix(0.252370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252370,0.000000,0.000000,0.250000,0,0);}
.mf7_c00369{transform:matrix(0.253018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253018,0.000000,0.000000,0.250000,0,0);}
.m94_c00369{transform:matrix(0.253937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253937,0.000000,0.000000,0.250000,0,0);}
.ma3_c00369{transform:matrix(0.254757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254757,0.000000,0.000000,0.250000,0,0);}
.mf6_c00369{transform:matrix(0.256491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256491,0.000000,0.000000,0.250000,0,0);}
.m2a_c00369{transform:matrix(0.257212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257212,0.000000,0.000000,0.250000,0,0);}
.m90_c00369{transform:matrix(0.257719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257719,0.000000,0.000000,0.250000,0,0);}
.m85_c00369{transform:matrix(0.258963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258963,0.000000,0.000000,0.250000,0,0);}
.mfa_c00369{transform:matrix(0.259018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259018,0.000000,0.000000,0.250000,0,0);}
.md5_c00369{transform:matrix(0.259642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259642,0.000000,0.000000,0.250000,0,0);}
.m28_c00369{transform:matrix(0.261999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261999,0.000000,0.000000,0.250000,0,0);}
.me8_c00369{transform:matrix(0.262051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262051,0.000000,0.000000,0.250000,0,0);}
.m9c_c00369{transform:matrix(0.262132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262132,0.000000,0.000000,0.250000,0,0);}
.m3b_c00369{transform:matrix(0.262405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262405,0.000000,0.000000,0.250000,0,0);}
.m8e_c00369{transform:matrix(0.264618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264618,0.000000,0.000000,0.250000,0,0);}
.m29_c00369{transform:matrix(0.264725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264725,0.000000,0.000000,0.250000,0,0);}
.me0_c00369{transform:matrix(0.265660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265660,0.000000,0.000000,0.250000,0,0);}
.m3e_c00369{transform:matrix(0.266851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266851,0.000000,0.000000,0.250000,0,0);}
.m98_c00369{transform:matrix(0.267174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267174,0.000000,0.000000,0.250000,0,0);}
.m7f_c00369{transform:matrix(0.269541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269541,0.000000,0.000000,0.250000,0,0);}
.me_c00369{transform:matrix(0.269719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269719,0.000000,0.000000,0.250000,0,0);}
.mab_c00369{transform:matrix(0.270642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270642,0.000000,0.000000,0.250000,0,0);}
.m34_c00369{transform:matrix(0.272130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272130,0.000000,0.000000,0.250000,0,0);}
.mf8_c00369{transform:matrix(0.272150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272150,0.000000,0.000000,0.250000,0,0);}
.mdb_c00369{transform:matrix(0.274251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274251,0.000000,0.000000,0.250000,0,0);}
.m17_c00369{transform:matrix(0.275206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275206,0.000000,0.000000,0.250000,0,0);}
.m62_c00369{transform:matrix(0.275335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275335,0.000000,0.000000,0.250000,0,0);}
.m1a_c00369{transform:matrix(0.276289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276289,0.000000,0.000000,0.250000,0,0);}
.maf_c00369{transform:matrix(0.277255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277255,0.000000,0.000000,0.250000,0,0);}
.mc6_c00369{transform:matrix(0.277637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277637,0.000000,0.000000,0.250000,0,0);}
.m67_c00369{transform:matrix(0.277640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277640,0.000000,0.000000,0.250000,0,0);}
.m77_c00369{transform:matrix(0.278353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278353,0.000000,0.000000,0.250000,0,0);}
.m58_c00369{transform:matrix(0.281004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281004,0.000000,0.000000,0.250000,0,0);}
.mbe_c00369{transform:matrix(0.281148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281148,0.000000,0.000000,0.250000,0,0);}
.m33_c00369{transform:matrix(0.281361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281361,0.000000,0.000000,0.250000,0,0);}
.mb1_c00369{transform:matrix(0.281476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281476,0.000000,0.000000,0.250000,0,0);}
.m2d_c00369{transform:matrix(0.281580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281580,0.000000,0.000000,0.250000,0,0);}
.mec_c00369{transform:matrix(0.281817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281817,0.000000,0.000000,0.250000,0,0);}
.m1f_c00369{transform:matrix(0.282209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282209,0.000000,0.000000,0.250000,0,0);}
.m11_c00369{transform:matrix(0.283455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283455,0.000000,0.000000,0.250000,0,0);}
.m32_c00369{transform:matrix(0.283467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283467,0.000000,0.000000,0.250000,0,0);}
.mf_c00369{transform:matrix(0.284110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284110,0.000000,0.000000,0.250000,0,0);}
.mb4_c00369{transform:matrix(0.285608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285608,0.000000,0.000000,0.250000,0,0);}
.mb_c00369{transform:matrix(0.285817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285817,0.000000,0.000000,0.250000,0,0);}
.m4a_c00369{transform:matrix(0.285975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285975,0.000000,0.000000,0.250000,0,0);}
.mba_c00369{transform:matrix(0.286341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286341,0.000000,0.000000,0.250000,0,0);}
.mb5_c00369{transform:matrix(0.286690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286690,0.000000,0.000000,0.250000,0,0);}
.m19_c00369{transform:matrix(0.286908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286908,0.000000,0.000000,0.250000,0,0);}
.me6_c00369{transform:matrix(0.287133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287133,0.000000,0.000000,0.250000,0,0);}
.mfb_c00369{transform:matrix(0.287603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287603,0.000000,0.000000,0.250000,0,0);}
.m87_c00369{transform:matrix(0.287756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287756,0.000000,0.000000,0.250000,0,0);}
.m104_c00369{transform:matrix(0.288163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288163,0.000000,0.000000,0.250000,0,0);}
.m9b_c00369{transform:matrix(0.289094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289094,0.000000,0.000000,0.250000,0,0);}
.mc_c00369{transform:matrix(0.289338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289338,0.000000,0.000000,0.250000,0,0);}
.mc5_c00369{transform:matrix(0.289849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289849,0.000000,0.000000,0.250000,0,0);}
.ma6_c00369{transform:matrix(0.289875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289875,0.000000,0.000000,0.250000,0,0);}
.m37_c00369{transform:matrix(0.290097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290097,0.000000,0.000000,0.250000,0,0);}
.md1_c00369{transform:matrix(0.291526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291526,0.000000,0.000000,0.250000,0,0);}
.m66_c00369{transform:matrix(0.291594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291594,0.000000,0.000000,0.250000,0,0);}
.m8f_c00369{transform:matrix(0.292287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292287,0.000000,0.000000,0.250000,0,0);}
.m1_c00369{transform:matrix(0.292922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292922,0.000000,0.000000,0.250000,0,0);}
.m12_c00369{transform:matrix(0.292934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292934,0.000000,0.000000,0.250000,0,0);}
.m3c_c00369{transform:matrix(0.293037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293037,0.000000,0.000000,0.250000,0,0);}
.m5a_c00369{transform:matrix(0.293533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293533,0.000000,0.000000,0.250000,0,0);}
.ma1_c00369{transform:matrix(0.294080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294080,0.000000,0.000000,0.250000,0,0);}
.m22_c00369{transform:matrix(0.294174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294174,0.000000,0.000000,0.250000,0,0);}
.m4f_c00369{transform:matrix(0.294445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294445,0.000000,0.000000,0.250000,0,0);}
.m15_c00369{transform:matrix(0.294693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294693,0.000000,0.000000,0.250000,0,0);}
.mdd_c00369{transform:matrix(0.295728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295728,0.000000,0.000000,0.250000,0,0);}
.meb_c00369{transform:matrix(0.295786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295786,0.000000,0.000000,0.250000,0,0);}
.mc9_c00369{transform:matrix(0.296362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296362,0.000000,0.000000,0.250000,0,0);}
.m8b_c00369{transform:matrix(0.296531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296531,0.000000,0.000000,0.250000,0,0);}
.m61_c00369{transform:matrix(0.296689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296689,0.000000,0.000000,0.250000,0,0);}
.md_c00369{transform:matrix(0.296946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296946,0.000000,0.000000,0.250000,0,0);}
.m3a_c00369{transform:matrix(0.297496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297496,0.000000,0.000000,0.250000,0,0);}
.m6_c00369{transform:matrix(0.297520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297520,0.000000,0.000000,0.250000,0,0);}
.mad_c00369{transform:matrix(0.298463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298463,0.000000,0.000000,0.250000,0,0);}
.m1b_c00369{transform:matrix(0.299119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299119,0.000000,0.000000,0.250000,0,0);}
.me1_c00369{transform:matrix(0.299860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299860,0.000000,0.000000,0.250000,0,0);}
.m1c_c00369{transform:matrix(0.299862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299862,0.000000,0.000000,0.250000,0,0);}
.m57_c00369{transform:matrix(0.300584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300584,0.000000,0.000000,0.250000,0,0);}
.mc2_c00369{transform:matrix(0.300628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300628,0.000000,0.000000,0.250000,0,0);}
.m44_c00369{transform:matrix(0.301134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301134,0.000000,0.000000,0.250000,0,0);}
.m51_c00369{transform:matrix(0.301604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301604,0.000000,0.000000,0.250000,0,0);}
.m74_c00369{transform:matrix(0.301902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301902,0.000000,0.000000,0.250000,0,0);}
.m2_c00369{transform:matrix(0.303095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303095,0.000000,0.000000,0.250000,0,0);}
.md8_c00369{transform:matrix(0.303774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303774,0.000000,0.000000,0.250000,0,0);}
.m96_c00369{transform:matrix(0.304095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304095,0.000000,0.000000,0.250000,0,0);}
.mf9_c00369{transform:matrix(0.304493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304493,0.000000,0.000000,0.250000,0,0);}
.md6_c00369{transform:matrix(0.305788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305788,0.000000,0.000000,0.250000,0,0);}
.m20_c00369{transform:matrix(0.305952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305952,0.000000,0.000000,0.250000,0,0);}
.mb8_c00369{transform:matrix(0.307252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307252,0.000000,0.000000,0.250000,0,0);}
.mbb_c00369{transform:matrix(0.307407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307407,0.000000,0.000000,0.250000,0,0);}
.mbc_c00369{transform:matrix(0.307682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307682,0.000000,0.000000,0.250000,0,0);}
.m35_c00369{transform:matrix(0.308368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308368,0.000000,0.000000,0.250000,0,0);}
.mf4_c00369{transform:matrix(0.308751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308751,0.000000,0.000000,0.250000,0,0);}
.m7_c00369{transform:matrix(0.309310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309310,0.000000,0.000000,0.250000,0,0);}
.m23_c00369{transform:matrix(0.309591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309591,0.000000,0.000000,0.250000,0,0);}
.m5_c00369{transform:matrix(0.309726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309726,0.000000,0.000000,0.250000,0,0);}
.m84_c00369{transform:matrix(0.310650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310650,0.000000,0.000000,0.250000,0,0);}
.m101_c00369{transform:matrix(0.310774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310774,0.000000,0.000000,0.250000,0,0);}
.mef_c00369{transform:matrix(0.310928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310928,0.000000,0.000000,0.250000,0,0);}
.m80_c00369{transform:matrix(0.311849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311849,0.000000,0.000000,0.250000,0,0);}
.m7e_c00369{transform:matrix(0.312305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312305,0.000000,0.000000,0.250000,0,0);}
.m2c_c00369{transform:matrix(0.312722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312722,0.000000,0.000000,0.250000,0,0);}
.m7a_c00369{transform:matrix(0.313428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313428,0.000000,0.000000,0.250000,0,0);}
.m9e_c00369{transform:matrix(0.314223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314223,0.000000,0.000000,0.250000,0,0);}
.m103_c00369{transform:matrix(0.314405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314405,0.000000,0.000000,0.250000,0,0);}
.ma2_c00369{transform:matrix(0.314584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314584,0.000000,0.000000,0.250000,0,0);}
.ma0_c00369{transform:matrix(0.314605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314605,0.000000,0.000000,0.250000,0,0);}
.m36_c00369{transform:matrix(0.314726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314726,0.000000,0.000000,0.250000,0,0);}
.m39_c00369{transform:matrix(0.315496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315496,0.000000,0.000000,0.250000,0,0);}
.mfc_c00369{transform:matrix(0.315760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315760,0.000000,0.000000,0.250000,0,0);}
.m21_c00369{transform:matrix(0.316198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316198,0.000000,0.000000,0.250000,0,0);}
.m7b_c00369{transform:matrix(0.317398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317398,0.000000,0.000000,0.250000,0,0);}
.m65_c00369{transform:matrix(0.317579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317579,0.000000,0.000000,0.250000,0,0);}
.m95_c00369{transform:matrix(0.317959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317959,0.000000,0.000000,0.250000,0,0);}
.m91_c00369{transform:matrix(0.317980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317980,0.000000,0.000000,0.250000,0,0);}
.mea_c00369{transform:matrix(0.318147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318147,0.000000,0.000000,0.250000,0,0);}
.m8a_c00369{transform:matrix(0.319036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319036,0.000000,0.000000,0.250000,0,0);}
.mcc_c00369{transform:matrix(0.319667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319667,0.000000,0.000000,0.250000,0,0);}
.m8d_c00369{transform:matrix(0.320582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320582,0.000000,0.000000,0.250000,0,0);}
.m86_c00369{transform:matrix(0.320584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320584,0.000000,0.000000,0.250000,0,0);}
.m7c_c00369{transform:matrix(0.321165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321165,0.000000,0.000000,0.250000,0,0);}
.maa_c00369{transform:matrix(0.323045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323045,0.000000,0.000000,0.250000,0,0);}
.mf2_c00369{transform:matrix(0.324093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324093,0.000000,0.000000,0.250000,0,0);}
.m14_c00369{transform:matrix(0.324339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324339,0.000000,0.000000,0.250000,0,0);}
.md7_c00369{transform:matrix(0.326270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326270,0.000000,0.000000,0.250000,0,0);}
.m16_c00369{transform:matrix(0.326496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326496,0.000000,0.000000,0.250000,0,0);}
.m48_c00369{transform:matrix(0.326632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326632,0.000000,0.000000,0.250000,0,0);}
.mc4_c00369{transform:matrix(0.327422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327422,0.000000,0.000000,0.250000,0,0);}
.me2_c00369{transform:matrix(0.327628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327628,0.000000,0.000000,0.250000,0,0);}
.m50_c00369{transform:matrix(0.328499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328499,0.000000,0.000000,0.250000,0,0);}
.m46_c00369{transform:matrix(0.328589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328589,0.000000,0.000000,0.250000,0,0);}
.m100_c00369{transform:matrix(0.329220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329220,0.000000,0.000000,0.250000,0,0);}
.m68_c00369{transform:matrix(0.329779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329779,0.000000,0.000000,0.250000,0,0);}
.mcb_c00369{transform:matrix(0.330240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330240,0.000000,0.000000,0.250000,0,0);}
.m1e_c00369{transform:matrix(0.331520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331520,0.000000,0.000000,0.250000,0,0);}
.m45_c00369{transform:matrix(0.332311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332311,0.000000,0.000000,0.250000,0,0);}
.mf3_c00369{transform:matrix(0.332545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332545,0.000000,0.000000,0.250000,0,0);}
.mf0_c00369{transform:matrix(0.333282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333282,0.000000,0.000000,0.250000,0,0);}
.m1d_c00369{transform:matrix(0.333325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333325,0.000000,0.000000,0.250000,0,0);}
.mff_c00369{transform:matrix(0.333353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333353,0.000000,0.000000,0.250000,0,0);}
.m63_c00369{transform:matrix(0.333445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333445,0.000000,0.000000,0.250000,0,0);}
.m4_c00369{transform:matrix(0.335769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335769,0.000000,0.000000,0.250000,0,0);}
.me7_c00369{transform:matrix(0.337516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337516,0.000000,0.000000,0.250000,0,0);}
.ma_c00369{transform:matrix(0.337570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337570,0.000000,0.000000,0.250000,0,0);}
.me3_c00369{transform:matrix(0.338728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338728,0.000000,0.000000,0.250000,0,0);}
.m4e_c00369{transform:matrix(0.338729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338729,0.000000,0.000000,0.250000,0,0);}
.m9d_c00369{transform:matrix(0.339338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339338,0.000000,0.000000,0.250000,0,0);}
.m82_c00369{transform:matrix(0.339906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339906,0.000000,0.000000,0.250000,0,0);}
.m88_c00369{transform:matrix(0.340108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340108,0.000000,0.000000,0.250000,0,0);}
.m97_c00369{transform:matrix(0.340337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340337,0.000000,0.000000,0.250000,0,0);}
.m4d_c00369{transform:matrix(0.340571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340571,0.000000,0.000000,0.250000,0,0);}
.m49_c00369{transform:matrix(0.340913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340913,0.000000,0.000000,0.250000,0,0);}
.m27_c00369{transform:matrix(0.342315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342315,0.000000,0.000000,0.250000,0,0);}
.m89_c00369{transform:matrix(0.343104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343104,0.000000,0.000000,0.250000,0,0);}
.m9_c00369{transform:matrix(0.344396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344396,0.000000,0.000000,0.250000,0,0);}
.m47_c00369{transform:matrix(0.344955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344955,0.000000,0.000000,0.250000,0,0);}
.m4b_c00369{transform:matrix(0.349193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349193,0.000000,0.000000,0.250000,0,0);}
.mf1_c00369{transform:matrix(0.349229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349229,0.000000,0.000000,0.250000,0,0);}
.m105_c00369{transform:matrix(0.350383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350383,0.000000,0.000000,0.250000,0,0);}
.mdf_c00369{transform:matrix(0.352837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352837,0.000000,0.000000,0.250000,0,0);}
.m76_c00369{transform:matrix(0.353016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353016,0.000000,0.000000,0.250000,0,0);}
.me5_c00369{transform:matrix(0.353338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353338,0.000000,0.000000,0.250000,0,0);}
.m92_c00369{transform:matrix(0.355714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355714,0.000000,0.000000,0.250000,0,0);}
.m25_c00369{transform:matrix(0.356164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356164,0.000000,0.000000,0.250000,0,0);}
.m78_c00369{transform:matrix(0.356876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356876,0.000000,0.000000,0.250000,0,0);}
.mfe_c00369{transform:matrix(0.359177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359177,0.000000,0.000000,0.250000,0,0);}
.mc3_c00369{transform:matrix(0.359446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359446,0.000000,0.000000,0.250000,0,0);}
.m3d_c00369{transform:matrix(0.359554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359554,0.000000,0.000000,0.250000,0,0);}
.m79_c00369{transform:matrix(0.361667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361667,0.000000,0.000000,0.250000,0,0);}
.ma7_c00369{transform:matrix(0.364180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364180,0.000000,0.000000,0.250000,0,0);}
.m13_c00369{transform:matrix(0.366096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366096,0.000000,0.000000,0.250000,0,0);}
.m9a_c00369{transform:matrix(0.366254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366254,0.000000,0.000000,0.250000,0,0);}
.mf5_c00369{transform:matrix(0.370241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370241,0.000000,0.000000,0.250000,0,0);}
.m26_c00369{transform:matrix(0.378137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378137,0.000000,0.000000,0.250000,0,0);}
.mee_c00369{transform:matrix(0.381450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381450,0.000000,0.000000,0.250000,0,0);}
.m38_c00369{transform:matrix(0.382709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382709,0.000000,0.000000,0.250000,0,0);}
.mae_c00369{transform:matrix(0.383401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383401,0.000000,0.000000,0.250000,0,0);}
.ma5_c00369{transform:matrix(0.389737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389737,0.000000,0.000000,0.250000,0,0);}
.m18_c00369{transform:matrix(0.390707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390707,0.000000,0.000000,0.250000,0,0);}
.mc0_c00369{transform:matrix(0.394036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394036,0.000000,0.000000,0.250000,0,0);}
.mbd_c00369{transform:matrix(0.394287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394287,0.000000,0.000000,0.250000,0,0);}
.ma4_c00369{transform:matrix(0.394784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394784,0.000000,0.000000,0.250000,0,0);}
.m24_c00369{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);}
.m52_c00369{transform:matrix(0.430152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430152,0.000000,0.000000,0.250000,0,0);}
.me9_c00369{transform:matrix(0.433853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433853,0.000000,0.000000,0.250000,0,0);}
.mb0_c00369{transform:matrix(0.434206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434206,0.000000,0.000000,0.250000,0,0);}
.mb6_c00369{transform:matrix(0.440009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440009,0.000000,0.000000,0.250000,0,0);}
.mdc_c00369{transform:matrix(0.441824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441824,0.000000,0.000000,0.250000,0,0);}
.m93_c00369{transform:matrix(0.449850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449850,0.000000,0.000000,0.250000,0,0);}
.m8c_c00369{transform:matrix(0.821417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.821417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.821417,0.000000,0.000000,0.250000,0,0);}
.v0_c00369{vertical-align:0.000000px;}
.v3_c00369{vertical-align:32.788800px;}
.v2_c00369{vertical-align:38.471400px;}
.v1_c00369{vertical-align:42.748200px;}
.lsc_c00369{letter-spacing:-2.543317px;}
.ls20_c00369{letter-spacing:-2.383927px;}
.ls16_c00369{letter-spacing:-2.300767px;}
.ls25_c00369{letter-spacing:-2.189880px;}
.ls19_c00369{letter-spacing:-2.106720px;}
.ls1f_c00369{letter-spacing:-2.044350px;}
.ls1b_c00369{letter-spacing:-1.293458px;}
.ls1a_c00369{letter-spacing:-1.114344px;}
.lsa_c00369{letter-spacing:0.000000px;}
.ls18_c00369{letter-spacing:0.065400px;}
.ls21_c00369{letter-spacing:0.520344px;}
.ls3_c00369{letter-spacing:0.719395px;}
.ls2_c00369{letter-spacing:0.857461px;}
.ls0_c00369{letter-spacing:0.893794px;}
.ls22_c00369{letter-spacing:1.128600px;}
.ls15_c00369{letter-spacing:1.329791px;}
.ls1e_c00369{letter-spacing:1.482390px;}
.ls9_c00369{letter-spacing:1.642256px;}
.ls11_c00369{letter-spacing:1.643400px;}
.ls13_c00369{letter-spacing:1.765789px;}
.lsd_c00369{letter-spacing:1.860255px;}
.ls26_c00369{letter-spacing:2.267100px;}
.ls4_c00369{letter-spacing:3.131913px;}
.ls1d_c00369{letter-spacing:3.316500px;}
.ls24_c00369{letter-spacing:3.375900px;}
.lse_c00369{letter-spacing:3.484810px;}
.ls27_c00369{letter-spacing:3.494700px;}
.ls7_c00369{letter-spacing:3.626043px;}
.lsb_c00369{letter-spacing:3.633310px;}
.ls23_c00369{letter-spacing:3.880810px;}
.ls17_c00369{letter-spacing:9.979398px;}
.ls1_c00369{letter-spacing:18.311975px;}
.ls8_c00369{letter-spacing:22.308605px;}
.ls6_c00369{letter-spacing:24.997247px;}
.ls14_c00369{letter-spacing:48.470598px;}
.ls1c_c00369{letter-spacing:49.896198px;}
.lsf_c00369{letter-spacing:51.321798px;}
.ls10_c00369{letter-spacing:52.747398px;}
.ls5_c00369{letter-spacing:56.387406px;}
.ls12_c00369{letter-spacing:57.024198px;}
.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;}
}
.wsb_c00369{word-spacing:-21.298463px;}
.ws0_c00369{word-spacing:-20.026804px;}
.wsf_c00369{word-spacing:-19.808806px;}
.ws4_c00369{word-spacing:-19.024011px;}
.ws9_c00369{word-spacing:-18.231949px;}
.ws3_c00369{word-spacing:-18.166550px;}
.wsd_c00369{word-spacing:-16.873091px;}
.ws10_c00369{word-spacing:-12.605076px;}
.ws2_c00369{word-spacing:-0.218113px;}
.ws11_c00369{word-spacing:0.000000px;}
.wse_c00369{word-spacing:1.932796px;}
.ws7_c00369{word-spacing:2.034741px;}
.wsc_c00369{word-spacing:2.543987px;}
.ws6_c00369{word-spacing:3.268667px;}
.ws1_c00369{word-spacing:5.450033px;}
.ws8_c00369{word-spacing:5.668041px;}
.wsa_c00369{word-spacing:6.177287px;}
.ws5_c00369{word-spacing:15.405275px;}
._19_c00369{margin-left:-6.976068px;}
._1_c00369{margin-left:-4.955776px;}
._1c_c00369{width:3.066387px;}
._1f_c00369{width:4.069303px;}
._10_c00369{width:5.682975px;}
._2_c00369{width:6.975936px;}
._a_c00369{width:8.575105px;}
._7_c00369{width:10.608741px;}
._f_c00369{width:12.062457px;}
._16_c00369{width:13.248576px;}
._3_c00369{width:14.750813px;}
._1e_c00369{width:16.277305px;}
._c_c00369{width:20.201291px;}
._5_c00369{width:23.833997px;}
._1b_c00369{width:25.287317px;}
._e_c00369{width:26.886871px;}
._15_c00369{width:29.066543px;}
._b_c00369{width:31.135352px;}
._18_c00369{width:32.481751px;}
._8_c00369{width:33.790939px;}
._6_c00369{width:35.170999px;}
._13_c00369{width:36.551059px;}
._0_c00369{width:37.956859px;}
._1a_c00369{width:39.457699px;}
._1d_c00369{width:43.381673px;}
._11_c00369{width:45.052991px;}
._4_c00369{width:46.937567px;}
._9_c00369{width:48.250307px;}
._14_c00369{width:49.920447px;}
._17_c00369{width:136.914299px;}
._d_c00369{width:174.042620px;}
._12_c00369{width:446.088302px;}
.fc0_c00369{color:transparent;}
.fs11_c00369{font-size:9.979398px;}
.fsc_c00369{font-size:16.236000px;}
.fs3_c00369{font-size:21.780000px;}
.fs24_c00369{font-size:22.176000px;}
.fs0_c00369{font-size:22.572000px;}
.fsf_c00369{font-size:26.928000px;}
.fs1_c00369{font-size:27.720000px;}
.fs5_c00369{font-size:28.314000px;}
.fsa_c00369{font-size:32.868000px;}
.fs13_c00369{font-size:33.660000px;}
.fs1d_c00369{font-size:35.640000px;}
.fs22_c00369{font-size:45.342000px;}
.fsd_c00369{font-size:48.470598px;}
.fs17_c00369{font-size:49.896198px;}
.fs6_c00369{font-size:51.321798px;}
.fs8_c00369{font-size:52.747398px;}
.fs16_c00369{font-size:55.440000px;}
.fs20_c00369{font-size:56.232000px;}
.fsb_c00369{font-size:57.024198px;}
.fs1a_c00369{font-size:58.410000px;}
.fs15_c00369{font-size:60.192000px;}
.fs9_c00369{font-size:62.568000px;}
.fse_c00369{font-size:65.736198px;}
.fs19_c00369{font-size:66.330000px;}
.fs21_c00369{font-size:66.528000px;}
.fs14_c00369{font-size:67.320000px;}
.fs1f_c00369{font-size:67.518000px;}
.fs1c_c00369{font-size:68.112198px;}
.fs4_c00369{font-size:69.696198px;}
.fs23_c00369{font-size:69.894000px;}
.fs18_c00369{font-size:70.884000px;}
.fs2_c00369{font-size:72.666198px;}
.fs7_c00369{font-size:76.032198px;}
.fs1e_c00369{font-size:77.616198px;}
.fs10_c00369{font-size:80.784000px;}
.fs12_c00369{font-size:91.872198px;}
.fs1b_c00369{font-size:120.384000px;}
.y0_c00369{bottom:0.000000px;}
.y3a_c00369{bottom:25.211385px;}
.y1_c00369{bottom:76.500000px;}
.y39_c00369{bottom:143.184735px;}
.y38_c00369{bottom:153.876735px;}
.y37_c00369{bottom:165.989385px;}
.y36_c00369{bottom:172.760985px;}
.y35_c00369{bottom:173.473785px;}
.y34_c00369{bottom:201.990735px;}
.y32_c00369{bottom:205.198335px;}
.y31_c00369{bottom:205.911135px;}
.y33_c00369{bottom:210.182985px;}
.y30_c00369{bottom:237.269385px;}
.y2f_c00369{bottom:237.987135px;}
.y2d_c00369{bottom:238.699935px;}
.y2e_c00369{bottom:249.748335px;}
.y2c_c00369{bottom:260.078985px;}
.y2b_c00369{bottom:271.127385px;}
.y2a_c00369{bottom:271.488735px;}
.y29_c00369{bottom:301.421385px;}
.y28_c00369{bottom:304.628985px;}
.y27_c00369{bottom:305.341785px;}
.y26_c00369{bottom:337.779135px;}
.y21_c00369{bottom:338.130585px;}
.y20_c00369{bottom:338.133704px;}
.y23_c00369{bottom:338.491935px;}
.y22_c00369{bottom:370.562985px;}
.y1f_c00369{bottom:370.924335px;}
.y25_c00369{bottom:402.287535px;}
.y24_c00369{bottom:403.351785px;}
.y1e_c00369{bottom:435.427785px;}
.y1d_c00369{bottom:467.860185px;}
.y1b_c00369{bottom:499.936185px;}
.y1c_c00369{bottom:500.297535px;}
.y1a_c00369{bottom:530.947935px;}
.y19_c00369{bottom:565.162335px;}
.y18_c00369{bottom:589.397535px;}
.y16_c00369{bottom:597.233385px;}
.y17_c00369{bottom:606.499785px;}
.y15_c00369{bottom:612.919935px;}
.y14_c00369{bottom:629.670735px;}
.y13_c00369{bottom:646.060185px;}
.y12_c00369{bottom:662.103135px;}
.y11_c00369{bottom:694.174185px;}
.y10_c00369{bottom:727.324335px;}
.ye_c00369{bottom:727.680735px;}
.yf_c00369{bottom:732.665385px;}
.yd_c00369{bottom:759.038985px;}
.yc_c00369{bottom:792.901935px;}
.yb_c00369{bottom:817.493535px;}
.y8_c00369{bottom:824.616585px;}
.y9_c00369{bottom:824.977935px;}
.ya_c00369{bottom:825.334335px;}
.y7_c00369{bottom:861.330735px;}
.y6_c00369{bottom:894.114585px;}
.y5_c00369{bottom:921.918735px;}
.y4_c00369{bottom:928.328985px;}
.y3_c00369{bottom:1080.868185px;}
.y2_c00369{bottom:1107.241785px;}
.h12_c00369{height:6.646279px;}
.h1f_c00369{height:22.153184px;}
.h5_c00369{height:22.715859px;}
.h27_c00369{height:23.128875px;}
.h2_c00369{height:23.541891px;}
.h10_c00369{height:28.085063px;}
.h3_c00369{height:28.911094px;}
.he_c00369{height:32.281418px;}
.h16_c00369{height:33.230868px;}
.h8_c00369{height:34.180317px;}
.hb_c00369{height:34.280297px;}
.ha_c00369{height:35.129767px;}
.h1e_c00369{height:37.171406px;}
.hc_c00369{height:37.978116px;}
.h25_c00369{height:47.290289px;}
.h15_c00369{height:54.411328px;}
.h22_c00369{height:55.188633px;}
.h18_c00369{height:60.919805px;}
.h14_c00369{height:62.778375px;}
.h17_c00369{height:65.099268px;}
.h23_c00369{height:65.256469px;}
.h1a_c00369{height:66.070898px;}
.h21_c00369{height:66.265225px;}
.h1d_c00369{height:66.848397px;}
.h6_c00369{height:68.403007px;}
.hf_c00369{height:68.560800px;}
.h26_c00369{height:68.597139px;}
.h1b_c00369{height:69.180117px;}
.h24_c00369{height:69.386625px;}
.h1c_c00369{height:71.038894px;}
.h4_c00369{height:71.317899px;}
.h7_c00369{height:72.278817px;}
.hd_c00369{height:72.690957px;}
.h20_c00369{height:76.176054px;}
.h11_c00369{height:79.245633px;}
.h9_c00369{height:79.299207px;}
.h13_c00369{height:90.167538px;}
.h19_c00369{height:125.556750px;}
.h1_c00369{height:1110.000000px;}
.h0_c00369{height:1263.000000px;}
.w1_c00369{width:775.500000px;}
.w0_c00369{width:892.500000px;}
.x0_c00369{left:0.000000px;}
.x1_c00369{left:58.500000px;}
.x4_c00369{left:101.471685px;}
.x3d_c00369{left:103.124985px;}
.x8c_c00369{left:104.213985px;}
.x90_c00369{left:106.109835px;}
.x46_c00369{left:112.223085px;}
.x5_c00369{left:114.514935px;}
.x34_c00369{left:123.751635px;}
.x17_c00369{left:135.512835px;}
.x8d_c00369{left:136.611735px;}
.x3e_c00369{left:143.967435px;}
.x24_c00369{left:145.848435px;}
.x78_c00369{left:147.952185px;}
.x91_c00369{left:149.021385px;}
.x6e_c00369{left:155.268285px;}
.x6_c00369{left:156.941385px;}
.x35_c00369{left:167.450235px;}
.x64_c00369{left:169.167885px;}
.x79_c00369{left:175.850385px;}
.x5a_c00369{left:177.835335px;}
.x25_c00369{left:179.057985px;}
.x6d_c00369{left:180.760785px;}
.x7_c00369{left:189.754935px;}
.x92_c00369{left:191.442885px;}
.x5b_c00369{left:197.437335px;}
.x8_c00369{left:199.778685px;}
.x26_c00369{left:201.511185px;}
.x76_c00369{left:203.273385px;}
.x18_c00369{left:212.015085px;}
.x27_c00369{left:221.306235px;}
.x6c_c00369{left:222.835785px;}
.x9_c00369{left:223.964385px;}
.x47_c00369{left:232.720935px;}
.x51_c00369{left:233.750535px;}
.x83_c00369{left:235.289985px;}
.x19_c00369{left:245.343435px;}
.x5c_c00369{left:250.540935px;}
.x5d_c00369{left:253.392135px;}
.x28_c00369{left:255.906735px;}
.x3f_c00369{left:257.431335px;}
.x5e_c00369{left:259.089585px;}
.x6f_c00369{left:266.593785px;}
.x1a_c00369{left:267.613485px;}
.x49_c00369{left:278.785635px;}
.x52_c00369{left:282.260535px;}
.x70_c00369{left:288.269835px;}
.x29_c00369{left:289.913235px;}
.x87_c00369{left:295.417635px;}
.xa_c00369{left:300.189435px;}
.x68_c00369{left:301.248735px;}
.x16_c00369{left:302.486235px;}
.x8e_c00369{left:308.059935px;}
.x1b_c00369{left:310.703235px;}
.x53_c00369{left:312.910935px;}
.xb_c00369{left:322.291185px;}
.x40_c00369{left:323.380185px;}
.x54_c00369{left:325.023585px;}
.x2a_c00369{left:332.894085px;}
.x5f_c00369{left:333.933585px;}
.x41_c00369{left:343.551435px;}
.x55_c00369{left:345.209685px;}
.xc_c00369{left:355.277985px;}
.x73_c00369{left:358.144035px;}
.x93_c00369{left:360.480435px;}
.x36_c00369{left:366.395685px;}
.x4a_c00369{left:367.469835px;}
.x8a_c00369{left:368.865735px;}
.x94_c00369{left:370.905135px;}
.x2b_c00369{left:377.934135px;}
.x60_c00369{left:379.270635px;}
.xd_c00369{left:389.126085px;}
.x7a_c00369{left:390.729885px;}
.x7e_c00369{left:399.149835px;}
.x69_c00369{left:400.377435px;}
.xe_c00369{left:401.402085px;}
.x80_c00369{left:403.139535px;}
.x1c_c00369{left:412.123785px;}
.x4b_c00369{left:422.498985px;}
.x61_c00369{left:423.523635px;}
.x4c_c00369{left:429.696285px;}
.xf_c00369{left:432.918735px;}
.x2c_c00369{left:434.210685px;}
.x10_c00369{left:444.590835px;}
.x1d_c00369{left:455.584785px;}
.x11_c00369{left:466.648035px;}
.x86_c00369{left:470.603085px;}
.x56_c00369{left:475.394685px;}
.x74_c00369{left:477.587535px;}
.x65_c00369{left:478.627035px;}
.x12_c00369{left:488.096385px;}
.x84_c00369{left:490.036785px;}
.x4d_c00369{left:491.823735px;}
.x1e_c00369{left:499.327935px;}
.x2d_c00369{left:500.530785px;}
.x7f_c00369{left:502.575135px;}
.x3_c00369{left:505.965885px;}
.x66_c00369{left:509.277435px;}
.x2e_c00369{left:510.297135px;}
.x4e_c00369{left:511.420785px;}
.x37_c00369{left:521.399985px;}
.x57_c00369{left:523.335435px;}
.x81_c00369{left:531.844485px;}
.x38_c00369{left:533.646285px;}
.x4f_c00369{left:535.655985px;}
.x42_c00369{left:543.823485px;}
.x88_c00369{left:545.159985px;}
.x1f_c00369{left:554.673885px;}
.x7b_c00369{left:559.678335px;}
.x58_c00369{left:565.544085px;}
.x71_c00369{left:566.821185px;}
.x43_c00369{left:576.236085px;}
.x13_c00369{left:577.438935px;}
.x62_c00369{left:588.210135px;}
.x7c_c00369{left:596.080635px;}
.x20_c00369{left:598.506135px;}
.x39_c00369{left:600.169335px;}
.x63_c00369{left:609.811935px;}
.x44_c00369{left:610.925685px;}
.x2f_c00369{left:620.726685px;}
.x72_c00369{left:622.330485px;}
.x3a_c00369{left:632.601735px;}
.x82_c00369{left:633.665985px;}
.x3b_c00369{left:635.091585px;}
.x3c_c00369{left:641.150385px;}
.x45_c00369{left:642.175035px;}
.x21_c00369{left:643.452135px;}
.x6a_c00369{left:644.501535px;}
.x30_c00369{left:654.738135px;}
.x14_c00369{left:665.563785px;}
.x2_c00369{left:667.385385px;}
.x48_c00369{left:673.538235px;}
.x50_c00369{left:676.102335px;}
.x67_c00369{left:677.344785px;}
.x31_c00369{left:679.864335px;}
.x32_c00369{left:683.007585px;}
.x77_c00369{left:686.408235px;}
.x22_c00369{left:687.502185px;}
.x7d_c00369{left:690.823635px;}
.x23_c00369{left:698.996085px;}
.x95_c00369{left:702.367035px;}
.x89_c00369{left:705.742935px;}
.x8b_c00369{left:707.376435px;}
.x15_c00369{left:709.727685px;}
.x33_c00369{left:720.409785px;}
.x6b_c00369{left:721.820535px;}
.x59_c00369{left:732.151185px;}
.x85_c00369{left:733.259985px;}
.x75_c00369{left:743.575785px;}
.x8f_c00369{left:766.672485px;}
@media print{
.v0_c00369{vertical-align:0.000000pt;}
.v3_c00369{vertical-align:29.145600pt;}
.v2_c00369{vertical-align:34.196800pt;}
.v1_c00369{vertical-align:37.998400pt;}
.lsc_c00369{letter-spacing:-2.260726pt;}
.ls20_c00369{letter-spacing:-2.119046pt;}
.ls16_c00369{letter-spacing:-2.045126pt;}
.ls25_c00369{letter-spacing:-1.946560pt;}
.ls19_c00369{letter-spacing:-1.872640pt;}
.ls1f_c00369{letter-spacing:-1.817200pt;}
.ls1b_c00369{letter-spacing:-1.149741pt;}
.ls1a_c00369{letter-spacing:-0.990528pt;}
.lsa_c00369{letter-spacing:0.000000pt;}
.ls18_c00369{letter-spacing:0.058133pt;}
.ls21_c00369{letter-spacing:0.462528pt;}
.ls3_c00369{letter-spacing:0.639463pt;}
.ls2_c00369{letter-spacing:0.762188pt;}
.ls0_c00369{letter-spacing:0.794484pt;}
.ls22_c00369{letter-spacing:1.003200pt;}
.ls15_c00369{letter-spacing:1.182037pt;}
.ls1e_c00369{letter-spacing:1.317680pt;}
.ls9_c00369{letter-spacing:1.459783pt;}
.ls11_c00369{letter-spacing:1.460800pt;}
.ls13_c00369{letter-spacing:1.569590pt;}
.lsd_c00369{letter-spacing:1.653560pt;}
.ls26_c00369{letter-spacing:2.015200pt;}
.ls4_c00369{letter-spacing:2.783923pt;}
.ls1d_c00369{letter-spacing:2.948000pt;}
.ls24_c00369{letter-spacing:3.000800pt;}
.lse_c00369{letter-spacing:3.097609pt;}
.ls27_c00369{letter-spacing:3.106400pt;}
.ls7_c00369{letter-spacing:3.223150pt;}
.lsb_c00369{letter-spacing:3.229609pt;}
.ls23_c00369{letter-spacing:3.449609pt;}
.ls17_c00369{letter-spacing:8.870576pt;}
.ls1_c00369{letter-spacing:16.277311pt;}
.ls8_c00369{letter-spacing:19.829871pt;}
.ls6_c00369{letter-spacing:22.219775pt;}
.ls14_c00369{letter-spacing:43.084976pt;}
.ls1c_c00369{letter-spacing:44.352176pt;}
.lsf_c00369{letter-spacing:45.619376pt;}
.ls10_c00369{letter-spacing:46.886576pt;}
.ls5_c00369{letter-spacing:50.122138pt;}
.ls12_c00369{letter-spacing:50.688176pt;}
.wsb_c00369{word-spacing:-18.931967pt;}
.ws0_c00369{word-spacing:-17.801604pt;}
.wsf_c00369{word-spacing:-17.607827pt;}
.ws4_c00369{word-spacing:-16.910232pt;}
.ws9_c00369{word-spacing:-16.206177pt;}
.ws3_c00369{word-spacing:-16.148044pt;}
.wsd_c00369{word-spacing:-14.998303pt;}
.ws10_c00369{word-spacing:-11.204512pt;}
.ws2_c00369{word-spacing:-0.193879pt;}
.ws11_c00369{word-spacing:0.000000pt;}
.wse_c00369{word-spacing:1.718041pt;}
.ws7_c00369{word-spacing:1.808659pt;}
.wsc_c00369{word-spacing:2.261321pt;}
.ws6_c00369{word-spacing:2.905481pt;}
.ws1_c00369{word-spacing:4.844473pt;}
.ws8_c00369{word-spacing:5.038259pt;}
.wsa_c00369{word-spacing:5.490921pt;}
.ws5_c00369{word-spacing:13.693577pt;}
._19_c00369{margin-left:-6.200949pt;}
._1_c00369{margin-left:-4.405134pt;}
._1c_c00369{width:2.725678pt;}
._1f_c00369{width:3.617158pt;}
._10_c00369{width:5.051534pt;}
._2_c00369{width:6.200832pt;}
._a_c00369{width:7.622316pt;}
._7_c00369{width:9.429992pt;}
._f_c00369{width:10.722184pt;}
._16_c00369{width:11.776512pt;}
._3_c00369{width:13.111834pt;}
._1e_c00369{width:14.468716pt;}
._c_c00369{width:17.956703pt;}
._5_c00369{width:21.185775pt;}
._1b_c00369{width:22.477615pt;}
._e_c00369{width:23.899441pt;}
._15_c00369{width:25.836927pt;}
._b_c00369{width:27.675868pt;}
._18_c00369{width:28.872668pt;}
._8_c00369{width:30.036390pt;}
._6_c00369{width:31.263110pt;}
._13_c00369{width:32.489830pt;}
._0_c00369{width:33.739430pt;}
._1a_c00369{width:35.073510pt;}
._1d_c00369{width:38.561488pt;}
._11_c00369{width:40.047104pt;}
._4_c00369{width:41.722281pt;}
._9_c00369{width:42.889161pt;}
._14_c00369{width:44.373731pt;}
._17_c00369{width:121.701600pt;}
._d_c00369{width:154.704552pt;}
._12_c00369{width:396.522935pt;}
.fs11_c00369{font-size:8.870576pt;}
.fsc_c00369{font-size:14.432000pt;}
.fs3_c00369{font-size:19.360000pt;}
.fs24_c00369{font-size:19.712000pt;}
.fs0_c00369{font-size:20.064000pt;}
.fsf_c00369{font-size:23.936000pt;}
.fs1_c00369{font-size:24.640000pt;}
.fs5_c00369{font-size:25.168000pt;}
.fsa_c00369{font-size:29.216000pt;}
.fs13_c00369{font-size:29.920000pt;}
.fs1d_c00369{font-size:31.680000pt;}
.fs22_c00369{font-size:40.304000pt;}
.fsd_c00369{font-size:43.084976pt;}
.fs17_c00369{font-size:44.352176pt;}
.fs6_c00369{font-size:45.619376pt;}
.fs8_c00369{font-size:46.886576pt;}
.fs16_c00369{font-size:49.280000pt;}
.fs20_c00369{font-size:49.984000pt;}
.fsb_c00369{font-size:50.688176pt;}
.fs1a_c00369{font-size:51.920000pt;}
.fs15_c00369{font-size:53.504000pt;}
.fs9_c00369{font-size:55.616000pt;}
.fse_c00369{font-size:58.432176pt;}
.fs19_c00369{font-size:58.960000pt;}
.fs21_c00369{font-size:59.136000pt;}
.fs14_c00369{font-size:59.840000pt;}
.fs1f_c00369{font-size:60.016000pt;}
.fs1c_c00369{font-size:60.544176pt;}
.fs4_c00369{font-size:61.952176pt;}
.fs23_c00369{font-size:62.128000pt;}
.fs18_c00369{font-size:63.008000pt;}
.fs2_c00369{font-size:64.592176pt;}
.fs7_c00369{font-size:67.584176pt;}
.fs1e_c00369{font-size:68.992176pt;}
.fs10_c00369{font-size:71.808000pt;}
.fs12_c00369{font-size:81.664176pt;}
.fs1b_c00369{font-size:107.008000pt;}
.y0_c00369{bottom:0.000000pt;}
.y3a_c00369{bottom:22.410120pt;}
.y1_c00369{bottom:68.000000pt;}
.y39_c00369{bottom:127.275320pt;}
.y38_c00369{bottom:136.779320pt;}
.y37_c00369{bottom:147.546120pt;}
.y36_c00369{bottom:153.565320pt;}
.y35_c00369{bottom:154.198920pt;}
.y34_c00369{bottom:179.547320pt;}
.y32_c00369{bottom:182.398520pt;}
.y31_c00369{bottom:183.032120pt;}
.y33_c00369{bottom:186.829320pt;}
.y30_c00369{bottom:210.906120pt;}
.y2f_c00369{bottom:211.544120pt;}
.y2d_c00369{bottom:212.177720pt;}
.y2e_c00369{bottom:221.998520pt;}
.y2c_c00369{bottom:231.181320pt;}
.y2b_c00369{bottom:241.002120pt;}
.y2a_c00369{bottom:241.323320pt;}
.y29_c00369{bottom:267.930120pt;}
.y28_c00369{bottom:270.781320pt;}
.y27_c00369{bottom:271.414920pt;}
.y26_c00369{bottom:300.248120pt;}
.y21_c00369{bottom:300.560520pt;}
.y20_c00369{bottom:300.563292pt;}
.y23_c00369{bottom:300.881720pt;}
.y22_c00369{bottom:329.389320pt;}
.y1f_c00369{bottom:329.710520pt;}
.y25_c00369{bottom:357.588920pt;}
.y24_c00369{bottom:358.534920pt;}
.y1e_c00369{bottom:387.046920pt;}
.y1d_c00369{bottom:415.875720pt;}
.y1b_c00369{bottom:444.387720pt;}
.y1c_c00369{bottom:444.708920pt;}
.y1a_c00369{bottom:471.953720pt;}
.y19_c00369{bottom:502.366520pt;}
.y18_c00369{bottom:523.908920pt;}
.y16_c00369{bottom:530.874120pt;}
.y17_c00369{bottom:539.110920pt;}
.y15_c00369{bottom:544.817720pt;}
.y14_c00369{bottom:559.707320pt;}
.y13_c00369{bottom:574.275720pt;}
.y12_c00369{bottom:588.536120pt;}
.y11_c00369{bottom:617.043720pt;}
.y10_c00369{bottom:646.510520pt;}
.ye_c00369{bottom:646.827320pt;}
.yf_c00369{bottom:651.258120pt;}
.yd_c00369{bottom:674.701320pt;}
.yc_c00369{bottom:704.801720pt;}
.yb_c00369{bottom:726.660920pt;}
.y8_c00369{bottom:732.992520pt;}
.y9_c00369{bottom:733.313720pt;}
.ya_c00369{bottom:733.630520pt;}
.y7_c00369{bottom:765.627320pt;}
.y6_c00369{bottom:794.768520pt;}
.y5_c00369{bottom:819.483320pt;}
.y4_c00369{bottom:825.181320pt;}
.y3_c00369{bottom:960.771720pt;}
.y2_c00369{bottom:984.214920pt;}
.h12_c00369{height:5.907804pt;}
.h1f_c00369{height:19.691719pt;}
.h5_c00369{height:20.191875pt;}
.h27_c00369{height:20.559000pt;}
.h2_c00369{height:20.926125pt;}
.h10_c00369{height:24.964500pt;}
.h3_c00369{height:25.698750pt;}
.he_c00369{height:28.694594pt;}
.h16_c00369{height:29.538549pt;}
.h8_c00369{height:30.382504pt;}
.hb_c00369{height:30.471375pt;}
.ha_c00369{height:31.226460pt;}
.h1e_c00369{height:33.041250pt;}
.hc_c00369{height:33.758325pt;}
.h25_c00369{height:42.035813pt;}
.h15_c00369{height:48.365625pt;}
.h22_c00369{height:49.056562pt;}
.h18_c00369{height:54.150938pt;}
.h14_c00369{height:55.803000pt;}
.h17_c00369{height:57.866016pt;}
.h23_c00369{height:58.005750pt;}
.h1a_c00369{height:58.729688pt;}
.h21_c00369{height:58.902422pt;}
.h1d_c00369{height:59.420798pt;}
.h6_c00369{height:60.802673pt;}
.hf_c00369{height:60.942934pt;}
.h26_c00369{height:60.975234pt;}
.h1b_c00369{height:61.493438pt;}
.h24_c00369{height:61.677000pt;}
.h1c_c00369{height:63.145684pt;}
.h4_c00369{height:63.393688pt;}
.h7_c00369{height:64.247838pt;}
.hd_c00369{height:64.614184pt;}
.h20_c00369{height:67.712048pt;}
.h11_c00369{height:70.440562pt;}
.h9_c00369{height:70.488184pt;}
.h13_c00369{height:80.148923pt;}
.h19_c00369{height:111.606000pt;}
.h1_c00369{height:986.666667pt;}
.h0_c00369{height:1122.666667pt;}
.w1_c00369{width:689.333333pt;}
.w0_c00369{width:793.333333pt;}
.x0_c00369{left:0.000000pt;}
.x1_c00369{left:52.000000pt;}
.x4_c00369{left:90.197053pt;}
.x3d_c00369{left:91.666653pt;}
.x8c_c00369{left:92.634653pt;}
.x90_c00369{left:94.319853pt;}
.x46_c00369{left:99.753853pt;}
.x5_c00369{left:101.791053pt;}
.x34_c00369{left:110.001453pt;}
.x17_c00369{left:120.455853pt;}
.x8d_c00369{left:121.432653pt;}
.x3e_c00369{left:127.971053pt;}
.x24_c00369{left:129.643053pt;}
.x78_c00369{left:131.513053pt;}
.x91_c00369{left:132.463453pt;}
.x6e_c00369{left:138.016253pt;}
.x6_c00369{left:139.503453pt;}
.x35_c00369{left:148.844653pt;}
.x64_c00369{left:150.371453pt;}
.x79_c00369{left:156.311453pt;}
.x5a_c00369{left:158.075853pt;}
.x25_c00369{left:159.162653pt;}
.x6d_c00369{left:160.676253pt;}
.x7_c00369{left:168.671053pt;}
.x92_c00369{left:170.171453pt;}
.x5b_c00369{left:175.499853pt;}
.x8_c00369{left:177.581053pt;}
.x26_c00369{left:179.121053pt;}
.x76_c00369{left:180.687453pt;}
.x18_c00369{left:188.457853pt;}
.x27_c00369{left:196.716653pt;}
.x6c_c00369{left:198.076253pt;}
.x9_c00369{left:199.079453pt;}
.x47_c00369{left:206.863053pt;}
.x51_c00369{left:207.778253pt;}
.x83_c00369{left:209.146653pt;}
.x19_c00369{left:218.083053pt;}
.x5c_c00369{left:222.703053pt;}
.x5d_c00369{left:225.237453pt;}
.x28_c00369{left:227.472653pt;}
.x3f_c00369{left:228.827853pt;}
.x5e_c00369{left:230.301853pt;}
.x6f_c00369{left:236.972253pt;}
.x1a_c00369{left:237.878653pt;}
.x49_c00369{left:247.809453pt;}
.x52_c00369{left:250.898253pt;}
.x70_c00369{left:256.239853pt;}
.x29_c00369{left:257.700653pt;}
.x87_c00369{left:262.593453pt;}
.xa_c00369{left:266.835053pt;}
.x68_c00369{left:267.776653pt;}
.x16_c00369{left:268.876653pt;}
.x8e_c00369{left:273.831053pt;}
.x1b_c00369{left:276.180653pt;}
.x53_c00369{left:278.143053pt;}
.xb_c00369{left:286.481053pt;}
.x40_c00369{left:287.449053pt;}
.x54_c00369{left:288.909853pt;}
.x2a_c00369{left:295.905853pt;}
.x5f_c00369{left:296.829853pt;}
.x41_c00369{left:305.379053pt;}
.x55_c00369{left:306.853053pt;}
.xc_c00369{left:315.802653pt;}
.x73_c00369{left:318.350253pt;}
.x93_c00369{left:320.427053pt;}
.x36_c00369{left:325.685053pt;}
.x4a_c00369{left:326.639853pt;}
.x8a_c00369{left:327.880653pt;}
.x94_c00369{left:329.693453pt;}
.x2b_c00369{left:335.941453pt;}
.x60_c00369{left:337.129453pt;}
.xd_c00369{left:345.889853pt;}
.x7a_c00369{left:347.315453pt;}
.x7e_c00369{left:354.799853pt;}
.x69_c00369{left:355.891053pt;}
.xe_c00369{left:356.801853pt;}
.x80_c00369{left:358.346253pt;}
.x1c_c00369{left:366.332253pt;}
.x4b_c00369{left:375.554653pt;}
.x61_c00369{left:376.465453pt;}
.x4c_c00369{left:381.952253pt;}
.xf_c00369{left:384.816653pt;}
.x2c_c00369{left:385.965053pt;}
.x10_c00369{left:395.191853pt;}
.x1d_c00369{left:404.964253pt;}
.x11_c00369{left:414.798253pt;}
.x86_c00369{left:418.313853pt;}
.x56_c00369{left:422.573053pt;}
.x74_c00369{left:424.522253pt;}
.x65_c00369{left:425.446253pt;}
.x12_c00369{left:433.863453pt;}
.x84_c00369{left:435.588253pt;}
.x4d_c00369{left:437.176653pt;}
.x1e_c00369{left:443.847053pt;}
.x2d_c00369{left:444.916253pt;}
.x7f_c00369{left:446.733453pt;}
.x3_c00369{left:449.747453pt;}
.x66_c00369{left:452.691053pt;}
.x2e_c00369{left:453.597453pt;}
.x4e_c00369{left:454.596253pt;}
.x37_c00369{left:463.466653pt;}
.x57_c00369{left:465.187053pt;}
.x81_c00369{left:472.750653pt;}
.x38_c00369{left:474.352253pt;}
.x4f_c00369{left:476.138653pt;}
.x42_c00369{left:483.398653pt;}
.x88_c00369{left:484.586653pt;}
.x1f_c00369{left:493.043453pt;}
.x7b_c00369{left:497.491853pt;}
.x58_c00369{left:502.705853pt;}
.x71_c00369{left:503.841053pt;}
.x43_c00369{left:512.209853pt;}
.x13_c00369{left:513.279053pt;}
.x62_c00369{left:522.853453pt;}
.x7c_c00369{left:529.849453pt;}
.x20_c00369{left:532.005453pt;}
.x39_c00369{left:533.483853pt;}
.x63_c00369{left:542.055053pt;}
.x44_c00369{left:543.045053pt;}
.x2f_c00369{left:551.757053pt;}
.x72_c00369{left:553.182653pt;}
.x3a_c00369{left:562.312653pt;}
.x82_c00369{left:563.258653pt;}
.x3b_c00369{left:564.525853pt;}
.x3c_c00369{left:569.911453pt;}
.x45_c00369{left:570.822253pt;}
.x21_c00369{left:571.957453pt;}
.x6a_c00369{left:572.890253pt;}
.x30_c00369{left:581.989453pt;}
.x14_c00369{left:591.612253pt;}
.x2_c00369{left:593.231453pt;}
.x48_c00369{left:598.700653pt;}
.x50_c00369{left:600.979853pt;}
.x67_c00369{left:602.084253pt;}
.x31_c00369{left:604.323853pt;}
.x32_c00369{left:607.117853pt;}
.x77_c00369{left:610.140653pt;}
.x22_c00369{left:611.113053pt;}
.x7d_c00369{left:614.065453pt;}
.x23_c00369{left:621.329853pt;}
.x95_c00369{left:624.326253pt;}
.x89_c00369{left:627.327053pt;}
.x8b_c00369{left:628.779053pt;}
.x15_c00369{left:630.869053pt;}
.x33_c00369{left:640.364253pt;}
.x6b_c00369{left:641.618253pt;}
.x59_c00369{left:650.801053pt;}
.x85_c00369{left:651.786653pt;}
.x75_c00369{left:660.956253pt;}
.x8f_c00369{left:681.486653pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7e2f43090a4c95292d6580f7.woff2')format("woff");}.ff1_c00370{font-family:ff1_c00370;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00370;src:url('chunks/assets/font_869aa48d0ad96744044ea294.woff2')format("woff");}.ff2_c00370{font-family:ff2_c00370;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00370;src:url('chunks/assets/font_0c435704f9f3de2ecdc7cc17.woff2')format("woff");}.ff3_c00370{font-family:ff3_c00370;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00370;src:url('chunks/assets/font_939f4a6761749ca731260ba0.woff2')format("woff");}.ff4_c00370{font-family:ff4_c00370;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00370;src:url('chunks/assets/font_85eadf80be3eed0b9db61d64.woff2')format("woff");}.ff5_c00370{font-family:ff5_c00370;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m7c_c00370{transform:matrix(0.048612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048612,0.000000,0.000000,0.250000,0,0);}
.m41_c00370{transform:matrix(0.078572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078572,0.000000,0.000000,0.250000,0,0);}
.ma0_c00370{transform:matrix(0.146577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146577,0.000000,0.000000,0.250000,0,0);}
.m3f_c00370{transform:matrix(0.147532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147532,0.000000,0.000000,0.250000,0,0);}
.mce_c00370{transform:matrix(0.149840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149840,0.000000,0.000000,0.250000,0,0);}
.m18_c00370{transform:matrix(0.153410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153410,0.000000,0.000000,0.250000,0,0);}
.m37_c00370{transform:matrix(0.154412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154412,0.000000,0.000000,0.250000,0,0);}
.m9a_c00370{transform:matrix(0.155829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155829,0.000000,0.000000,0.250000,0,0);}
.m7d_c00370{transform:matrix(0.159723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159723,0.000000,0.000000,0.250000,0,0);}
.m22_c00370{transform:matrix(0.161373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161373,0.000000,0.000000,0.250000,0,0);}
.m4b_c00370{transform:matrix(0.162162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162162,0.000000,0.000000,0.250000,0,0);}
.m38_c00370{transform:matrix(0.184162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184162,0.000000,0.000000,0.250000,0,0);}
.m71_c00370{transform:matrix(0.185898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185898,0.000000,0.000000,0.250000,0,0);}
.m49_c00370{transform:matrix(0.189188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189188,0.000000,0.000000,0.250000,0,0);}
.m9c_c00370{transform:matrix(0.194054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194054,0.000000,0.000000,0.250000,0,0);}
.m7b_c00370{transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);}
.m4a_c00370{transform:matrix(0.200451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200451,0.000000,0.000000,0.250000,0,0);}
.m19_c00370{transform:matrix(0.204547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204547,0.000000,0.000000,0.250000,0,0);}
.m4c_c00370{transform:matrix(0.204633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204633,0.000000,0.000000,0.250000,0,0);}
.m36_c00370{transform:matrix(0.215074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215074,0.000000,0.000000,0.250000,0,0);}
.m2a_c00370{transform:matrix(0.215610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215610,0.000000,0.000000,0.250000,0,0);}
.m58_c00370{transform:matrix(0.215686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215686,0.000000,0.000000,0.250000,0,0);}
.m83_c00370{transform:matrix(0.215891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215891,0.000000,0.000000,0.250000,0,0);}
.m8f_c00370{transform:matrix(0.217030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217030,0.000000,0.000000,0.250000,0,0);}
.m40_c00370{transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);}
.m55_c00370{transform:matrix(0.218870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218870,0.000000,0.000000,0.250000,0,0);}
.m2_c00370{transform:matrix(0.222632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222632,0.000000,0.000000,0.250000,0,0);}
.m24_c00370{transform:matrix(0.225188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225188,0.000000,0.000000,0.250000,0,0);}
.m8_c00370{transform:matrix(0.227408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227408,0.000000,0.000000,0.250000,0,0);}
.m7f_c00370{transform:matrix(0.235496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235496,0.000000,0.000000,0.250000,0,0);}
.m68_c00370{transform:matrix(0.249549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249549,0.000000,0.000000,0.250000,0,0);}
.m0_c00370{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00370{transform:matrix(0.253481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253481,0.000000,0.000000,0.250000,0,0);}
.m11_c00370{transform:matrix(0.254188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254188,0.000000,0.000000,0.250000,0,0);}
.m20_c00370{transform:matrix(0.254617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254617,0.000000,0.000000,0.250000,0,0);}
.m42_c00370{transform:matrix(0.255200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255200,0.000000,0.000000,0.250000,0,0);}
.mb6_c00370{transform:matrix(0.257125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257125,0.000000,0.000000,0.250000,0,0);}
.mbb_c00370{transform:matrix(0.261105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261105,0.000000,0.000000,0.250000,0,0);}
.m81_c00370{transform:matrix(0.262535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262535,0.000000,0.000000,0.250000,0,0);}
.m9b_c00370{transform:matrix(0.262686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262686,0.000000,0.000000,0.250000,0,0);}
.md3_c00370{transform:matrix(0.263105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263105,0.000000,0.000000,0.250000,0,0);}
.m97_c00370{transform:matrix(0.263376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263376,0.000000,0.000000,0.250000,0,0);}
.m78_c00370{transform:matrix(0.264427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264427,0.000000,0.000000,0.250000,0,0);}
.m89_c00370{transform:matrix(0.264812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264812,0.000000,0.000000,0.250000,0,0);}
.m6d_c00370{transform:matrix(0.265151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265151,0.000000,0.000000,0.250000,0,0);}
.m95_c00370{transform:matrix(0.265440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265440,0.000000,0.000000,0.250000,0,0);}
.m61_c00370{transform:matrix(0.266286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266286,0.000000,0.000000,0.250000,0,0);}
.m1f_c00370{transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);}
.mac_c00370{transform:matrix(0.268436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268436,0.000000,0.000000,0.250000,0,0);}
.ma7_c00370{transform:matrix(0.268462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268462,0.000000,0.000000,0.250000,0,0);}
.m4e_c00370{transform:matrix(0.269066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269066,0.000000,0.000000,0.250000,0,0);}
.mcf_c00370{transform:matrix(0.269658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269658,0.000000,0.000000,0.250000,0,0);}
.md5_c00370{transform:matrix(0.270313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270313,0.000000,0.000000,0.250000,0,0);}
.m5b_c00370{transform:matrix(0.270517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270517,0.000000,0.000000,0.250000,0,0);}
.m6a_c00370{transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);}
.m3d_c00370{transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);}
.mc0_c00370{transform:matrix(0.272478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272478,0.000000,0.000000,0.250000,0,0);}
.me_c00370{transform:matrix(0.272485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272485,0.000000,0.000000,0.250000,0,0);}
.m12_c00370{transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);}
.mc_c00370{transform:matrix(0.273311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273311,0.000000,0.000000,0.250000,0,0);}
.m69_c00370{transform:matrix(0.273525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273525,0.000000,0.000000,0.250000,0,0);}
.mba_c00370{transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);}
.m67_c00370{transform:matrix(0.274610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274610,0.000000,0.000000,0.250000,0,0);}
.m73_c00370{transform:matrix(0.275081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275081,0.000000,0.000000,0.250000,0,0);}
.md_c00370{transform:matrix(0.275368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275368,0.000000,0.000000,0.250000,0,0);}
.mbf_c00370{transform:matrix(0.275827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275827,0.000000,0.000000,0.250000,0,0);}
.mb8_c00370{transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);}
.m59_c00370{transform:matrix(0.276184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276184,0.000000,0.000000,0.250000,0,0);}
.m43_c00370{transform:matrix(0.276340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276340,0.000000,0.000000,0.250000,0,0);}
.m8c_c00370{transform:matrix(0.276578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276578,0.000000,0.000000,0.250000,0,0);}
.m39_c00370{transform:matrix(0.276997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276997,0.000000,0.000000,0.250000,0,0);}
.m3a_c00370{transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);}
.m82_c00370{transform:matrix(0.278468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278468,0.000000,0.000000,0.250000,0,0);}
.m7a_c00370{transform:matrix(0.278541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278541,0.000000,0.000000,0.250000,0,0);}
.md1_c00370{transform:matrix(0.279755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279755,0.000000,0.000000,0.250000,0,0);}
.m50_c00370{transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);}
.m57_c00370{transform:matrix(0.281118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281118,0.000000,0.000000,0.250000,0,0);}
.m2e_c00370{transform:matrix(0.281135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281135,0.000000,0.000000,0.250000,0,0);}
.ma_c00370{transform:matrix(0.281164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281164,0.000000,0.000000,0.250000,0,0);}
.md0_c00370{transform:matrix(0.281333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281333,0.000000,0.000000,0.250000,0,0);}
.m5_c00370{transform:matrix(0.281669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281669,0.000000,0.000000,0.250000,0,0);}
.ma1_c00370{transform:matrix(0.281767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281767,0.000000,0.000000,0.250000,0,0);}
.m99_c00370{transform:matrix(0.281931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281931,0.000000,0.000000,0.250000,0,0);}
.m5a_c00370{transform:matrix(0.282398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282398,0.000000,0.000000,0.250000,0,0);}
.m13_c00370{transform:matrix(0.282600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282600,0.000000,0.000000,0.250000,0,0);}
.m31_c00370{transform:matrix(0.283122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283122,0.000000,0.000000,0.250000,0,0);}
.mc7_c00370{transform:matrix(0.283642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283642,0.000000,0.000000,0.250000,0,0);}
.m8d_c00370{transform:matrix(0.283755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283755,0.000000,0.000000,0.250000,0,0);}
.m4d_c00370{transform:matrix(0.284171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284171,0.000000,0.000000,0.250000,0,0);}
.mb3_c00370{transform:matrix(0.284306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284306,0.000000,0.000000,0.250000,0,0);}
.m85_c00370{transform:matrix(0.286665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286665,0.000000,0.000000,0.250000,0,0);}
.m9f_c00370{transform:matrix(0.287374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287374,0.000000,0.000000,0.250000,0,0);}
.m21_c00370{transform:matrix(0.287525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287525,0.000000,0.000000,0.250000,0,0);}
.mc2_c00370{transform:matrix(0.288077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288077,0.000000,0.000000,0.250000,0,0);}
.maa_c00370{transform:matrix(0.288188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288188,0.000000,0.000000,0.250000,0,0);}
.m86_c00370{transform:matrix(0.288781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288781,0.000000,0.000000,0.250000,0,0);}
.m34_c00370{transform:matrix(0.289743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289743,0.000000,0.000000,0.250000,0,0);}
.mb1_c00370{transform:matrix(0.289943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289943,0.000000,0.000000,0.250000,0,0);}
.m3c_c00370{transform:matrix(0.290016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290016,0.000000,0.000000,0.250000,0,0);}
.ma9_c00370{transform:matrix(0.290540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290540,0.000000,0.000000,0.250000,0,0);}
.mbc_c00370{transform:matrix(0.290667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290667,0.000000,0.000000,0.250000,0,0);}
.m23_c00370{transform:matrix(0.291398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291398,0.000000,0.000000,0.250000,0,0);}
.m6f_c00370{transform:matrix(0.291495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291495,0.000000,0.000000,0.250000,0,0);}
.m52_c00370{transform:matrix(0.292109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292109,0.000000,0.000000,0.250000,0,0);}
.m15_c00370{transform:matrix(0.292154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292154,0.000000,0.000000,0.250000,0,0);}
.mb_c00370{transform:matrix(0.292506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292506,0.000000,0.000000,0.250000,0,0);}
.mb0_c00370{transform:matrix(0.293280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293280,0.000000,0.000000,0.250000,0,0);}
.m29_c00370{transform:matrix(0.293493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293493,0.000000,0.000000,0.250000,0,0);}
.m33_c00370{transform:matrix(0.293696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293696,0.000000,0.000000,0.250000,0,0);}
.m72_c00370{transform:matrix(0.293938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293938,0.000000,0.000000,0.250000,0,0);}
.m1_c00370{transform:matrix(0.293982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293982,0.000000,0.000000,0.250000,0,0);}
.mbe_c00370{transform:matrix(0.294502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294502,0.000000,0.000000,0.250000,0,0);}
.mc8_c00370{transform:matrix(0.295283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295283,0.000000,0.000000,0.250000,0,0);}
.md2_c00370{transform:matrix(0.296163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296163,0.000000,0.000000,0.250000,0,0);}
.maf_c00370{transform:matrix(0.296484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296484,0.000000,0.000000,0.250000,0,0);}
.m6e_c00370{transform:matrix(0.296637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296637,0.000000,0.000000,0.250000,0,0);}
.m1c_c00370{transform:matrix(0.297265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297265,0.000000,0.000000,0.250000,0,0);}
.mc4_c00370{transform:matrix(0.297422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297422,0.000000,0.000000,0.250000,0,0);}
.mc5_c00370{transform:matrix(0.297564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297564,0.000000,0.000000,0.250000,0,0);}
.m9d_c00370{transform:matrix(0.298519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298519,0.000000,0.000000,0.250000,0,0);}
.mb2_c00370{transform:matrix(0.299249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299249,0.000000,0.000000,0.250000,0,0);}
.m88_c00370{transform:matrix(0.300072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300072,0.000000,0.000000,0.250000,0,0);}
.m6b_c00370{transform:matrix(0.300141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300141,0.000000,0.000000,0.250000,0,0);}
.m79_c00370{transform:matrix(0.300484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300484,0.000000,0.000000,0.250000,0,0);}
.m6c_c00370{transform:matrix(0.300582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300582,0.000000,0.000000,0.250000,0,0);}
.m92_c00370{transform:matrix(0.301074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301074,0.000000,0.000000,0.250000,0,0);}
.m1e_c00370{transform:matrix(0.302266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302266,0.000000,0.000000,0.250000,0,0);}
.m98_c00370{transform:matrix(0.302832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302832,0.000000,0.000000,0.250000,0,0);}
.m91_c00370{transform:matrix(0.302843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302843,0.000000,0.000000,0.250000,0,0);}
.mc6_c00370{transform:matrix(0.305065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305065,0.000000,0.000000,0.250000,0,0);}
.m3_c00370{transform:matrix(0.305159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305159,0.000000,0.000000,0.250000,0,0);}
.mc9_c00370{transform:matrix(0.305654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305654,0.000000,0.000000,0.250000,0,0);}
.m48_c00370{transform:matrix(0.307653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307653,0.000000,0.000000,0.250000,0,0);}
.m7_c00370{transform:matrix(0.307751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307751,0.000000,0.000000,0.250000,0,0);}
.mcd_c00370{transform:matrix(0.307757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307757,0.000000,0.000000,0.250000,0,0);}
.m94_c00370{transform:matrix(0.307875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307875,0.000000,0.000000,0.250000,0,0);}
.m28_c00370{transform:matrix(0.307994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307994,0.000000,0.000000,0.250000,0,0);}
.m74_c00370{transform:matrix(0.308201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308201,0.000000,0.000000,0.250000,0,0);}
.ma4_c00370{transform:matrix(0.309029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309029,0.000000,0.000000,0.250000,0,0);}
.m87_c00370{transform:matrix(0.309547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309547,0.000000,0.000000,0.250000,0,0);}
.m4f_c00370{transform:matrix(0.311157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311157,0.000000,0.000000,0.250000,0,0);}
.m60_c00370{transform:matrix(0.313151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313151,0.000000,0.000000,0.250000,0,0);}
.m9_c00370{transform:matrix(0.313458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313458,0.000000,0.000000,0.250000,0,0);}
.m5f_c00370{transform:matrix(0.313494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313494,0.000000,0.000000,0.250000,0,0);}
.m6_c00370{transform:matrix(0.314597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314597,0.000000,0.000000,0.250000,0,0);}
.m77_c00370{transform:matrix(0.315991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315991,0.000000,0.000000,0.250000,0,0);}
.m25_c00370{transform:matrix(0.316121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316121,0.000000,0.000000,0.250000,0,0);}
.m93_c00370{transform:matrix(0.316459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316459,0.000000,0.000000,0.250000,0,0);}
.m96_c00370{transform:matrix(0.316642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316642,0.000000,0.000000,0.250000,0,0);}
.m1b_c00370{transform:matrix(0.316957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316957,0.000000,0.000000,0.250000,0,0);}
.m3e_c00370{transform:matrix(0.317764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317764,0.000000,0.000000,0.250000,0,0);}
.mc3_c00370{transform:matrix(0.318089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318089,0.000000,0.000000,0.250000,0,0);}
.m17_c00370{transform:matrix(0.318286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318286,0.000000,0.000000,0.250000,0,0);}
.m80_c00370{transform:matrix(0.318358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318358,0.000000,0.000000,0.250000,0,0);}
.md6_c00370{transform:matrix(0.319577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319577,0.000000,0.000000,0.250000,0,0);}
.m47_c00370{transform:matrix(0.319982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319982,0.000000,0.000000,0.250000,0,0);}
.m44_c00370{transform:matrix(0.320056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320056,0.000000,0.000000,0.250000,0,0);}
.m45_c00370{transform:matrix(0.320883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320883,0.000000,0.000000,0.250000,0,0);}
.m76_c00370{transform:matrix(0.322119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322119,0.000000,0.000000,0.250000,0,0);}
.m64_c00370{transform:matrix(0.323411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323411,0.000000,0.000000,0.250000,0,0);}
.m32_c00370{transform:matrix(0.323993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323993,0.000000,0.000000,0.250000,0,0);}
.m63_c00370{transform:matrix(0.325067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325067,0.000000,0.000000,0.250000,0,0);}
.ma6_c00370{transform:matrix(0.325284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325284,0.000000,0.000000,0.250000,0,0);}
.mb4_c00370{transform:matrix(0.325768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325768,0.000000,0.000000,0.250000,0,0);}
.m5e_c00370{transform:matrix(0.326158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326158,0.000000,0.000000,0.250000,0,0);}
.ma3_c00370{transform:matrix(0.326633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326633,0.000000,0.000000,0.250000,0,0);}
.mcc_c00370{transform:matrix(0.327253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327253,0.000000,0.000000,0.250000,0,0);}
.m2c_c00370{transform:matrix(0.327430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327430,0.000000,0.000000,0.250000,0,0);}
.m46_c00370{transform:matrix(0.328229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328229,0.000000,0.000000,0.250000,0,0);}
.m14_c00370{transform:matrix(0.331240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331240,0.000000,0.000000,0.250000,0,0);}
.md4_c00370{transform:matrix(0.331532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331532,0.000000,0.000000,0.250000,0,0);}
.m90_c00370{transform:matrix(0.331885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331885,0.000000,0.000000,0.250000,0,0);}
.m1a_c00370{transform:matrix(0.333008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333008,0.000000,0.000000,0.250000,0,0);}
.mb7_c00370{transform:matrix(0.333326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333326,0.000000,0.000000,0.250000,0,0);}
.m27_c00370{transform:matrix(0.333658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333658,0.000000,0.000000,0.250000,0,0);}
.m16_c00370{transform:matrix(0.334329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334329,0.000000,0.000000,0.250000,0,0);}
.m5d_c00370{transform:matrix(0.335059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335059,0.000000,0.000000,0.250000,0,0);}
.m30_c00370{transform:matrix(0.335268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335268,0.000000,0.000000,0.250000,0,0);}
.m35_c00370{transform:matrix(0.336760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336760,0.000000,0.000000,0.250000,0,0);}
.m10_c00370{transform:matrix(0.339155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339155,0.000000,0.000000,0.250000,0,0);}
.mc1_c00370{transform:matrix(0.340025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340025,0.000000,0.000000,0.250000,0,0);}
.m3b_c00370{transform:matrix(0.340939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340939,0.000000,0.000000,0.250000,0,0);}
.m5c_c00370{transform:matrix(0.341476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341476,0.000000,0.000000,0.250000,0,0);}
.m1d_c00370{transform:matrix(0.343718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343718,0.000000,0.000000,0.250000,0,0);}
.mb9_c00370{transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);}
.ma2_c00370{transform:matrix(0.346524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346524,0.000000,0.000000,0.250000,0,0);}
.m7e_c00370{transform:matrix(0.347858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347858,0.000000,0.000000,0.250000,0,0);}
.m70_c00370{transform:matrix(0.349589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349589,0.000000,0.000000,0.250000,0,0);}
.m65_c00370{transform:matrix(0.350815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350815,0.000000,0.000000,0.250000,0,0);}
.m62_c00370{transform:matrix(0.351169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351169,0.000000,0.000000,0.250000,0,0);}
.m2d_c00370{transform:matrix(0.352403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352403,0.000000,0.000000,0.250000,0,0);}
.m56_c00370{transform:matrix(0.353137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353137,0.000000,0.000000,0.250000,0,0);}
.mab_c00370{transform:matrix(0.355830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355830,0.000000,0.000000,0.250000,0,0);}
.ma5_c00370{transform:matrix(0.355859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355859,0.000000,0.000000,0.250000,0,0);}
.m54_c00370{transform:matrix(0.356018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356018,0.000000,0.000000,0.250000,0,0);}
.mbd_c00370{transform:matrix(0.361882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361882,0.000000,0.000000,0.250000,0,0);}
.m51_c00370{transform:matrix(0.362103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362103,0.000000,0.000000,0.250000,0,0);}
.m26_c00370{transform:matrix(0.367428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367428,0.000000,0.000000,0.250000,0,0);}
.mae_c00370{transform:matrix(0.368347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368347,0.000000,0.000000,0.250000,0,0);}
.m75_c00370{transform:matrix(0.370863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370863,0.000000,0.000000,0.250000,0,0);}
.mca_c00370{transform:matrix(0.374610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374610,0.000000,0.000000,0.250000,0,0);}
.ma8_c00370{transform:matrix(0.379282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379282,0.000000,0.000000,0.250000,0,0);}
.m8e_c00370{transform:matrix(0.380845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380845,0.000000,0.000000,0.250000,0,0);}
.m84_c00370{transform:matrix(0.385706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385706,0.000000,0.000000,0.250000,0,0);}
.m2b_c00370{transform:matrix(0.385771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385771,0.000000,0.000000,0.250000,0,0);}
.m8b_c00370{transform:matrix(0.386095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386095,0.000000,0.000000,0.250000,0,0);}
.m9e_c00370{transform:matrix(0.386343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386343,0.000000,0.000000,0.250000,0,0);}
.m53_c00370{transform:matrix(0.388446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388446,0.000000,0.000000,0.250000,0,0);}
.m8a_c00370{transform:matrix(0.392361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392361,0.000000,0.000000,0.250000,0,0);}
.m66_c00370{transform:matrix(0.399007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399007,0.000000,0.000000,0.250000,0,0);}
.m4_c00370{transform:matrix(0.406255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406255,0.000000,0.000000,0.250000,0,0);}
.mb5_c00370{transform:matrix(0.414896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414896,0.000000,0.000000,0.250000,0,0);}
.m2f_c00370{transform:matrix(0.422731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422731,0.000000,0.000000,0.250000,0,0);}
.mad_c00370{transform:matrix(0.424833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424833,0.000000,0.000000,0.250000,0,0);}
.mf_c00370{transform:matrix(0.431793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431793,0.000000,0.000000,0.250000,0,0);}
.v0_c00370{vertical-align:0.000000px;}
.ls9_c00370{letter-spacing:-4.213440px;}
.ls4_c00370{letter-spacing:-2.647267px;}
.lsd_c00370{letter-spacing:-2.609449px;}
.ls16_c00370{letter-spacing:-2.411640px;}
.ls20_c00370{letter-spacing:-2.170759px;}
.ls15_c00370{letter-spacing:-1.709378px;}
.ls12_c00370{letter-spacing:-0.839562px;}
.ls21_c00370{letter-spacing:-0.733671px;}
.ls1e_c00370{letter-spacing:-0.453817px;}
.ls1a_c00370{letter-spacing:-0.340363px;}
.ls2_c00370{letter-spacing:0.000000px;}
.ls1d_c00370{letter-spacing:0.204218px;}
.ls0_c00370{letter-spacing:0.453817px;}
.ls14_c00370{letter-spacing:0.468944px;}
.ls19_c00370{letter-spacing:0.589962px;}
.lsb_c00370{letter-spacing:1.406833px;}
.ls6_c00370{letter-spacing:1.643400px;}
.ls1_c00370{letter-spacing:1.686687px;}
.ls1b_c00370{letter-spacing:1.722600px;}
.lse_c00370{letter-spacing:2.458176px;}
.ls7_c00370{letter-spacing:2.503558px;}
.ls18_c00370{letter-spacing:2.896866px;}
.ls1c_c00370{letter-spacing:3.376780px;}
.ls17_c00370{letter-spacing:3.486829px;}
.ls3_c00370{letter-spacing:3.643200px;}
.ls5_c00370{letter-spacing:3.781810px;}
.ls11_c00370{letter-spacing:4.464900px;}
.ls8_c00370{letter-spacing:47.044800px;}
.lsa_c00370{letter-spacing:48.470598px;}
.lsc_c00370{letter-spacing:49.896198px;}
.ls13_c00370{letter-spacing:51.321798px;}
.lsf_c00370{letter-spacing:52.747398px;}
.ls10_c00370{letter-spacing:55.598598px;}
.ls1f_c00370{letter-spacing:74.131398px;}
.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;}
}
.ws2_c00370{word-spacing:-20.595737px;}
.ws1_c00370{word-spacing:-18.909050px;}
.ws4_c00370{word-spacing:-0.529567px;}
.ws3_c00370{word-spacing:-0.529369px;}
.ws5_c00370{word-spacing:0.000000px;}
.ws0_c00370{word-spacing:112.920588px;}
._16_c00370{margin-left:-8.017466px;}
._12_c00370{margin-left:-6.504641px;}
._15_c00370{margin-left:-2.626613px;}
._5_c00370{width:1.966613px;}
._6_c00370{width:4.613697px;}
._2_c00370{width:6.958611px;}
._13_c00370{width:9.442900px;}
._e_c00370{width:10.891672px;}
._4_c00370{width:12.933855px;}
._7_c00370{width:14.161647px;}
._d_c00370{width:16.261850px;}
._0_c00370{width:21.632039px;}
._b_c00370{width:23.069717px;}
._11_c00370{width:24.505217px;}
._14_c00370{width:25.867655px;}
._c_c00370{width:30.632839px;}
._1_c00370{width:32.480377px;}
._10_c00370{width:34.511400px;}
._9_c00370{width:36.724713px;}
._f_c00370{width:38.347552px;}
._3_c00370{width:39.540501px;}
._a_c00370{width:41.015387px;}
._8_c00370{width:142.306164px;}
.fc0_c00370{color:transparent;}
.fs9_c00370{font-size:22.176000px;}
.fs1b_c00370{font-size:22.374000px;}
.fs0_c00370{font-size:27.720000px;}
.fs3_c00370{font-size:32.868000px;}
.fs1a_c00370{font-size:33.264000px;}
.fs14_c00370{font-size:34.452000px;}
.fs13_c00370{font-size:39.600000px;}
.fs4_c00370{font-size:47.044800px;}
.fsa_c00370{font-size:48.470598px;}
.fsb_c00370{font-size:49.896198px;}
.fs19_c00370{font-size:50.688000px;}
.fsf_c00370{font-size:51.321798px;}
.fsc_c00370{font-size:52.747398px;}
.fs16_c00370{font-size:55.440000px;}
.fsd_c00370{font-size:55.598598px;}
.fs7_c00370{font-size:60.192000px;}
.fs12_c00370{font-size:66.132198px;}
.fs10_c00370{font-size:68.904000px;}
.fs5_c00370{font-size:70.884000px;}
.fs11_c00370{font-size:71.280000px;}
.fs1_c00370{font-size:72.864000px;}
.fs15_c00370{font-size:74.052198px;}
.fs18_c00370{font-size:74.131398px;}
.fs2_c00370{font-size:75.636198px;}
.fs8_c00370{font-size:79.200000px;}
.fs17_c00370{font-size:79.596198px;}
.fse_c00370{font-size:89.298000px;}
.fs6_c00370{font-size:120.384000px;}
.y0_c00370{bottom:0.000000px;}
.y28_c00370{bottom:55.153935px;}
.y1_c00370{bottom:76.500000px;}
.y27_c00370{bottom:91.863135px;}
.y26_c00370{bottom:95.782743px;}
.y29_c00370{bottom:96.852735px;}
.y25_c00370{bottom:126.790335px;}
.y24_c00370{bottom:151.738335px;}
.y23_c00370{bottom:181.314585px;}
.y22_c00370{bottom:214.108335px;}
.y21_c00370{bottom:244.753785px;}
.y20_c00370{bottom:278.973135px;}
.y1f_c00370{bottom:311.049135px;}
.y1e_c00370{bottom:321.384735px;}
.y1d_c00370{bottom:343.832985px;}
.y1c_c00370{bottom:376.270335px;}
.y1a_c00370{bottom:408.697785px;}
.y1b_c00370{bottom:413.687385px;}
.y19_c00370{bottom:440.778735px;}
.y18_c00370{bottom:467.860185px;}
.y17_c00370{bottom:472.854735px;}
.y16_c00370{bottom:505.643535px;}
.y15_c00370{bottom:537.714585px;}
.y14_c00370{bottom:570.503385px;}
.y13_c00370{bottom:604.009935px;}
.y12_c00370{bottom:637.506585px;}
.y11_c00370{bottom:669.231135px;}
.y10_c00370{bottom:669.237075px;}
.yf_c00370{bottom:703.084185px;}
.ye_c00370{bottom:735.516585px;}
.yd_c00370{bottom:766.879785px;}
.yc_c00370{bottom:792.545535px;}
.yb_c00370{bottom:799.312185px;}
.ya_c00370{bottom:831.393135px;}
.y9_c00370{bottom:857.766735px;}
.y8_c00370{bottom:863.464185px;}
.y7_c00370{bottom:863.825535px;}
.y2_c00370{bottom:885.922335px;}
.y6_c00370{bottom:895.896585px;}
.y4_c00370{bottom:928.685385px;}
.y5_c00370{bottom:934.031385px;}
.y3_c00370{bottom:1079.798985px;}
.h1c_c00370{height:21.958857px;}
.ha_c00370{height:23.128875px;}
.h2_c00370{height:28.911094px;}
.h6_c00370{height:31.331837px;}
.hb_c00370{height:32.281418px;}
.hc_c00370{height:33.230868px;}
.h10_c00370{height:34.180317px;}
.h5_c00370{height:34.280297px;}
.h1b_c00370{height:34.693313px;}
.hd_c00370{height:35.129767px;}
.h14_c00370{height:35.932359px;}
.he_c00370{height:37.028666px;}
.h13_c00370{height:41.301563px;}
.h19_c00370{height:49.371511px;}
.h1a_c00370{height:52.866000px;}
.h16_c00370{height:57.822188px;}
.h9_c00370{height:62.778375px;}
.h11_c00370{height:69.442313px;}
.h18_c00370{height:69.568770px;}
.h3_c00370{height:71.512031px;}
.h12_c00370{height:71.836875px;}
.h4_c00370{height:74.232792px;}
.h15_c00370{height:74.630731px;}
.h17_c00370{height:80.218043px;}
.h8_c00370{height:82.603125px;}
.hf_c00370{height:87.641104px;}
.h7_c00370{height:118.150313px;}
.h1_c00370{height:1110.000000px;}
.h0_c00370{height:1263.000000px;}
.w1_c00370{width:775.500000px;}
.w0_c00370{width:892.500000px;}
.x0_c00370{left:0.000000px;}
.x2_c00370{left:50.843085px;}
.x1_c00370{left:58.500000px;}
.x4c_c00370{left:100.417335px;}
.x27_c00370{left:101.585535px;}
.x5_c00370{left:102.803235px;}
.x76_c00370{left:103.837785px;}
.x33_c00370{left:105.698985px;}
.x5a_c00370{left:112.643835px;}
.x65_c00370{left:122.548785px;}
.x44_c00370{left:134.463435px;}
.x6_c00370{left:135.963285px;}
.x3a_c00370{left:145.170285px;}
.x28_c00370{left:146.293935px;}
.x66_c00370{left:147.947235px;}
.x61_c00370{left:151.045935px;}
.x34_c00370{left:154.223835px;}
.x35_c00370{left:156.931485px;}
.x12_c00370{left:158.282835px;}
.x6f_c00370{left:165.707835px;}
.x67_c00370{left:166.851285px;}
.x1f_c00370{left:169.994535px;}
.x45_c00370{left:179.062935px;}
.x13_c00370{left:180.156885px;}
.x7_c00370{left:187.319535px;}
.x46_c00370{left:189.165885px;}
.x56_c00370{left:200.248935px;}
.x20_c00370{left:202.070535px;}
.x70_c00370{left:210.208335px;}
.x36_c00370{left:211.856685px;}
.x14_c00370{left:213.257535px;}
.x30_c00370{left:223.578285px;}
.x71_c00370{left:228.038235px;}
.x57_c00370{left:233.037735px;}
.x21_c00370{left:235.309785px;}
.x51_c00370{left:245.100885px;}
.x29_c00370{left:247.021485px;}
.x31_c00370{left:256.733385px;}
.x15_c00370{left:257.792685px;}
.x3b_c00370{left:267.573885px;}
.x8_c00370{left:269.172735px;}
.x2a_c00370{left:279.206385px;}
.x2b_c00370{left:290.442885px;}
.x9_c00370{left:292.690185px;}
.x32_c00370{left:300.035985px;}
.x68_c00370{left:301.605135px;}
.x72_c00370{left:310.732935px;}
.x4d_c00370{left:311.836785px;}
.x5e_c00370{left:318.969735px;}
.x16_c00370{left:323.315835px;}
.x3c_c00370{left:333.983085px;}
.x37_c00370{left:335.091885px;}
.xa_c00370{left:336.383835px;}
.x3d_c00370{left:345.209685px;}
.x47_c00370{left:356.386785px;}
.x17_c00370{left:357.530235px;}
.x22_c00370{left:367.098585px;}
.x3e_c00370{left:377.770785px;}
.x52_c00370{left:379.686435px;}
.x18_c00370{left:389.502285px;}
.xb_c00370{left:392.224785px;}
.x38_c00370{left:402.010935px;}
.x58_c00370{left:410.856585px;}
.x53_c00370{left:412.762335px;}
.xc_c00370{left:422.211885px;}
.x3f_c00370{left:423.394935px;}
.x62_c00370{left:432.913785px;}
.x23_c00370{left:434.210685px;}
.x6c_c00370{left:436.309485px;}
.x5b_c00370{left:443.343435px;}
.x2c_c00370{left:444.962085px;}
.x64_c00370{left:453.773085px;}
.x54_c00370{left:455.604585px;}
.x48_c00370{left:456.653985px;}
.x74_c00370{left:463.975035px;}
.x5f_c00370{left:466.063935px;}
.xd_c00370{left:467.682585px;}
.x6a_c00370{left:469.509135px;}
.x2d_c00370{left:477.884535px;}
.x49_c00370{left:488.635935px;}
.xe_c00370{left:489.848685px;}
.x19_c00370{left:500.040735px;}
.x79_c00370{left:508.129035px;}
.x75_c00370{left:510.302085px;}
.x2e_c00370{left:511.519785px;}
.x6b_c00370{left:521.335635px;}
.xf_c00370{left:522.617685px;}
.x4e_c00370{left:532.755285px;}
.x1a_c00370{left:534.012585px;}
.x6d_c00370{left:543.447285px;}
.x10_c00370{left:544.650135px;}
.x1b_c00370{left:555.381735px;}
.x60_c00370{left:557.886435px;}
.x24_c00370{left:576.943935px;}
.x1c_c00370{left:588.200235px;}
.x6e_c00370{left:598.337835px;}
.x4f_c00370{left:599.679285px;}
.x40_c00370{left:601.436535px;}
.x11_c00370{left:610.108935px;}
.x1d_c00370{left:621.360285px;}
.x2f_c00370{left:632.166135px;}
.x1e_c00370{left:633.448185px;}
.x41_c00370{left:634.690635px;}
.x78_c00370{left:642.531435px;}
.x25_c00370{left:654.465885px;}
.x4a_c00370{left:655.530135px;}
.x63_c00370{left:664.628235px;}
.x59_c00370{left:665.702385px;}
.x55_c00370{left:668.360535px;}
.x3_c00370{left:677.285385px;}
.x77_c00370{left:686.418135px;}
.x42_c00370{left:687.601185px;}
.x4_c00370{left:689.031735px;}
.x5c_c00370{left:690.046485px;}
.x26_c00370{left:698.496135px;}
.x73_c00370{left:700.585035px;}
.x7a_c00370{left:702.852135px;}
.x50_c00370{left:709.242585px;}
.x69_c00370{left:710.767185px;}
.x4b_c00370{left:720.652335px;}
.x39_c00370{left:731.824485px;}
.x5d_c00370{left:734.527185px;}
.x43_c00370{left:743.209485px;}
.x7b_c00370{left:756.534885px;}
@media print{
.v0_c00370{vertical-align:0.000000pt;}
.ls9_c00370{letter-spacing:-3.745280pt;}
.ls4_c00370{letter-spacing:-2.353126pt;}
.lsd_c00370{letter-spacing:-2.319510pt;}
.ls16_c00370{letter-spacing:-2.143680pt;}
.ls20_c00370{letter-spacing:-1.929563pt;}
.ls15_c00370{letter-spacing:-1.519447pt;}
.ls12_c00370{letter-spacing:-0.746277pt;}
.ls21_c00370{letter-spacing:-0.652152pt;}
.ls1e_c00370{letter-spacing:-0.403393pt;}
.ls1a_c00370{letter-spacing:-0.302545pt;}
.ls2_c00370{letter-spacing:0.000000pt;}
.ls1d_c00370{letter-spacing:0.181527pt;}
.ls0_c00370{letter-spacing:0.403393pt;}
.ls14_c00370{letter-spacing:0.416839pt;}
.ls19_c00370{letter-spacing:0.524411pt;}
.lsb_c00370{letter-spacing:1.250518pt;}
.ls6_c00370{letter-spacing:1.460800pt;}
.ls1_c00370{letter-spacing:1.499278pt;}
.ls1b_c00370{letter-spacing:1.531200pt;}
.lse_c00370{letter-spacing:2.185046pt;}
.ls7_c00370{letter-spacing:2.225385pt;}
.ls18_c00370{letter-spacing:2.574992pt;}
.ls1c_c00370{letter-spacing:3.001582pt;}
.ls17_c00370{letter-spacing:3.099403pt;}
.ls3_c00370{letter-spacing:3.238400pt;}
.ls5_c00370{letter-spacing:3.361609pt;}
.ls11_c00370{letter-spacing:3.968800pt;}
.ls8_c00370{letter-spacing:41.817600pt;}
.lsa_c00370{letter-spacing:43.084976pt;}
.lsc_c00370{letter-spacing:44.352176pt;}
.ls13_c00370{letter-spacing:45.619376pt;}
.lsf_c00370{letter-spacing:46.886576pt;}
.ls10_c00370{letter-spacing:49.420976pt;}
.ls1f_c00370{letter-spacing:65.894576pt;}
.ws2_c00370{word-spacing:-18.307322pt;}
.ws1_c00370{word-spacing:-16.808044pt;}
.ws4_c00370{word-spacing:-0.470727pt;}
.ws3_c00370{word-spacing:-0.470551pt;}
.ws5_c00370{word-spacing:0.000000pt;}
.ws0_c00370{word-spacing:100.373856pt;}
._16_c00370{margin-left:-7.126636pt;}
._12_c00370{margin-left:-5.781903pt;}
._15_c00370{margin-left:-2.334767pt;}
._5_c00370{width:1.748100pt;}
._6_c00370{width:4.101064pt;}
._2_c00370{width:6.185432pt;}
._13_c00370{width:8.393689pt;}
._e_c00370{width:9.681486pt;}
._4_c00370{width:11.496760pt;}
._7_c00370{width:12.588131pt;}
._d_c00370{width:14.454978pt;}
._0_c00370{width:19.228479pt;}
._b_c00370{width:20.506415pt;}
._11_c00370{width:21.782415pt;}
._14_c00370{width:22.993471pt;}
._c_c00370{width:27.229190pt;}
._1_c00370{width:28.871446pt;}
._10_c00370{width:30.676800pt;}
._9_c00370{width:32.644190pt;}
._f_c00370{width:34.086713pt;}
._3_c00370{width:35.147112pt;}
._a_c00370{width:36.458121pt;}
._8_c00370{width:126.494368pt;}
.fs9_c00370{font-size:19.712000pt;}
.fs1b_c00370{font-size:19.888000pt;}
.fs0_c00370{font-size:24.640000pt;}
.fs3_c00370{font-size:29.216000pt;}
.fs1a_c00370{font-size:29.568000pt;}
.fs14_c00370{font-size:30.624000pt;}
.fs13_c00370{font-size:35.200000pt;}
.fs4_c00370{font-size:41.817600pt;}
.fsa_c00370{font-size:43.084976pt;}
.fsb_c00370{font-size:44.352176pt;}
.fs19_c00370{font-size:45.056000pt;}
.fsf_c00370{font-size:45.619376pt;}
.fsc_c00370{font-size:46.886576pt;}
.fs16_c00370{font-size:49.280000pt;}
.fsd_c00370{font-size:49.420976pt;}
.fs7_c00370{font-size:53.504000pt;}
.fs12_c00370{font-size:58.784176pt;}
.fs10_c00370{font-size:61.248000pt;}
.fs5_c00370{font-size:63.008000pt;}
.fs11_c00370{font-size:63.360000pt;}
.fs1_c00370{font-size:64.768000pt;}
.fs15_c00370{font-size:65.824176pt;}
.fs18_c00370{font-size:65.894576pt;}
.fs2_c00370{font-size:67.232176pt;}
.fs8_c00370{font-size:70.400000pt;}
.fs17_c00370{font-size:70.752176pt;}
.fse_c00370{font-size:79.376000pt;}
.fs6_c00370{font-size:107.008000pt;}
.y0_c00370{bottom:0.000000pt;}
.y28_c00370{bottom:49.025720pt;}
.y1_c00370{bottom:68.000000pt;}
.y27_c00370{bottom:81.656120pt;}
.y26_c00370{bottom:85.140216pt;}
.y29_c00370{bottom:86.091320pt;}
.y25_c00370{bottom:112.702520pt;}
.y24_c00370{bottom:134.878520pt;}
.y23_c00370{bottom:161.168520pt;}
.y22_c00370{bottom:190.318520pt;}
.y21_c00370{bottom:217.558920pt;}
.y20_c00370{bottom:247.976120pt;}
.y1f_c00370{bottom:276.488120pt;}
.y1e_c00370{bottom:285.675320pt;}
.y1d_c00370{bottom:305.629320pt;}
.y1c_c00370{bottom:334.462520pt;}
.y1a_c00370{bottom:363.286920pt;}
.y1b_c00370{bottom:367.722120pt;}
.y19_c00370{bottom:391.803320pt;}
.y18_c00370{bottom:415.875720pt;}
.y17_c00370{bottom:420.315320pt;}
.y16_c00370{bottom:449.460920pt;}
.y15_c00370{bottom:477.968520pt;}
.y14_c00370{bottom:507.114120pt;}
.y13_c00370{bottom:536.897720pt;}
.y12_c00370{bottom:566.672520pt;}
.y11_c00370{bottom:594.872120pt;}
.y10_c00370{bottom:594.877400pt;}
.yf_c00370{bottom:624.963720pt;}
.ye_c00370{bottom:653.792520pt;}
.yd_c00370{bottom:681.670920pt;}
.yc_c00370{bottom:704.484920pt;}
.yb_c00370{bottom:710.499720pt;}
.ya_c00370{bottom:739.016120pt;}
.y9_c00370{bottom:762.459320pt;}
.y8_c00370{bottom:767.523720pt;}
.y7_c00370{bottom:767.844920pt;}
.y2_c00370{bottom:787.486520pt;}
.y6_c00370{bottom:796.352520pt;}
.y4_c00370{bottom:825.498120pt;}
.y5_c00370{bottom:830.250120pt;}
.y3_c00370{bottom:959.821320pt;}
.h1c_c00370{height:19.518984pt;}
.ha_c00370{height:20.559000pt;}
.h2_c00370{height:25.698750pt;}
.h6_c00370{height:27.850522pt;}
.hb_c00370{height:28.694594pt;}
.hc_c00370{height:29.538549pt;}
.h10_c00370{height:30.382504pt;}
.h5_c00370{height:30.471375pt;}
.h1b_c00370{height:30.838500pt;}
.hd_c00370{height:31.226460pt;}
.h14_c00370{height:31.939875pt;}
.he_c00370{height:32.914370pt;}
.h13_c00370{height:36.712500pt;}
.h19_c00370{height:43.885788pt;}
.h1a_c00370{height:46.992000pt;}
.h16_c00370{height:51.397500pt;}
.h9_c00370{height:55.803000pt;}
.h11_c00370{height:61.726500pt;}
.h18_c00370{height:61.838906pt;}
.h3_c00370{height:63.566250pt;}
.h12_c00370{height:63.855000pt;}
.h4_c00370{height:65.984704pt;}
.h15_c00370{height:66.338427pt;}
.h17_c00370{height:71.304927pt;}
.h8_c00370{height:73.425000pt;}
.hf_c00370{height:77.903203pt;}
.h7_c00370{height:105.022500pt;}
.h1_c00370{height:986.666667pt;}
.h0_c00370{height:1122.666667pt;}
.w1_c00370{width:689.333333pt;}
.w0_c00370{width:793.333333pt;}
.x0_c00370{left:0.000000pt;}
.x2_c00370{left:45.193853pt;}
.x1_c00370{left:52.000000pt;}
.x4c_c00370{left:89.259853pt;}
.x27_c00370{left:90.298253pt;}
.x5_c00370{left:91.380653pt;}
.x76_c00370{left:92.300253pt;}
.x33_c00370{left:93.954653pt;}
.x5a_c00370{left:100.127853pt;}
.x65_c00370{left:108.932253pt;}
.x44_c00370{left:119.523053pt;}
.x6_c00370{left:120.856253pt;}
.x3a_c00370{left:129.040253pt;}
.x28_c00370{left:130.039053pt;}
.x66_c00370{left:131.508653pt;}
.x61_c00370{left:134.263053pt;}
.x34_c00370{left:137.087853pt;}
.x35_c00370{left:139.494653pt;}
.x12_c00370{left:140.695853pt;}
.x6f_c00370{left:147.295853pt;}
.x67_c00370{left:148.312253pt;}
.x1f_c00370{left:151.106253pt;}
.x45_c00370{left:159.167053pt;}
.x13_c00370{left:160.139453pt;}
.x7_c00370{left:166.506253pt;}
.x46_c00370{left:168.147453pt;}
.x56_c00370{left:177.999053pt;}
.x20_c00370{left:179.618253pt;}
.x70_c00370{left:186.851853pt;}
.x36_c00370{left:188.317053pt;}
.x14_c00370{left:189.562253pt;}
.x30_c00370{left:198.736253pt;}
.x71_c00370{left:202.700653pt;}
.x57_c00370{left:207.144653pt;}
.x21_c00370{left:209.164253pt;}
.x51_c00370{left:217.867453pt;}
.x29_c00370{left:219.574653pt;}
.x31_c00370{left:228.207453pt;}
.x15_c00370{left:229.149053pt;}
.x3b_c00370{left:237.843453pt;}
.x8_c00370{left:239.264653pt;}
.x2a_c00370{left:248.183453pt;}
.x2b_c00370{left:258.171453pt;}
.x9_c00370{left:260.169053pt;}
.x32_c00370{left:266.698653pt;}
.x68_c00370{left:268.093453pt;}
.x72_c00370{left:276.207053pt;}
.x4d_c00370{left:277.188253pt;}
.x5e_c00370{left:283.528653pt;}
.x16_c00370{left:287.391853pt;}
.x3c_c00370{left:296.873853pt;}
.x37_c00370{left:297.859453pt;}
.xa_c00370{left:299.007853pt;}
.x3d_c00370{left:306.853053pt;}
.x47_c00370{left:316.788253pt;}
.x17_c00370{left:317.804653pt;}
.x22_c00370{left:326.309853pt;}
.x3e_c00370{left:335.796253pt;}
.x52_c00370{left:337.499053pt;}
.x18_c00370{left:346.224253pt;}
.xb_c00370{left:348.644253pt;}
.x38_c00370{left:357.343053pt;}
.x58_c00370{left:365.205853pt;}
.x53_c00370{left:366.899853pt;}
.xc_c00370{left:375.299453pt;}
.x3f_c00370{left:376.351053pt;}
.x62_c00370{left:384.812253pt;}
.x23_c00370{left:385.965053pt;}
.x6c_c00370{left:387.830653pt;}
.x5b_c00370{left:394.083053pt;}
.x2c_c00370{left:395.521853pt;}
.x64_c00370{left:403.353853pt;}
.x54_c00370{left:404.981853pt;}
.x48_c00370{left:405.914653pt;}
.x74_c00370{left:412.422253pt;}
.x5f_c00370{left:414.279053pt;}
.xd_c00370{left:415.717853pt;}
.x6a_c00370{left:417.341453pt;}
.x2d_c00370{left:424.786253pt;}
.x49_c00370{left:434.343053pt;}
.xe_c00370{left:435.421053pt;}
.x19_c00370{left:444.480653pt;}
.x79_c00370{left:451.670253pt;}
.x75_c00370{left:453.601853pt;}
.x2e_c00370{left:454.684253pt;}
.x6b_c00370{left:463.409453pt;}
.xf_c00370{left:464.549053pt;}
.x4e_c00370{left:473.560253pt;}
.x1a_c00370{left:474.677853pt;}
.x6d_c00370{left:483.064253pt;}
.x10_c00370{left:484.133453pt;}
.x1b_c00370{left:493.672653pt;}
.x60_c00370{left:495.899053pt;}
.x24_c00370{left:512.839053pt;}
.x1c_c00370{left:522.844653pt;}
.x6e_c00370{left:531.855853pt;}
.x4f_c00370{left:533.048253pt;}
.x40_c00370{left:534.610253pt;}
.x11_c00370{left:542.319053pt;}
.x1d_c00370{left:552.320253pt;}
.x2f_c00370{left:561.925453pt;}
.x1e_c00370{left:563.065053pt;}
.x41_c00370{left:564.169453pt;}
.x78_c00370{left:571.139053pt;}
.x25_c00370{left:581.747453pt;}
.x4a_c00370{left:582.693453pt;}
.x63_c00370{left:590.780653pt;}
.x59_c00370{left:591.735453pt;}
.x55_c00370{left:594.098253pt;}
.x3_c00370{left:602.031453pt;}
.x77_c00370{left:610.149453pt;}
.x42_c00370{left:611.201053pt;}
.x4_c00370{left:612.472653pt;}
.x5c_c00370{left:613.374653pt;}
.x26_c00370{left:620.885453pt;}
.x73_c00370{left:622.742253pt;}
.x7a_c00370{left:624.757453pt;}
.x50_c00370{left:630.437853pt;}
.x69_c00370{left:631.793053pt;}
.x4b_c00370{left:640.579853pt;}
.x39_c00370{left:650.510653pt;}
.x5d_c00370{left:652.913053pt;}
.x43_c00370{left:660.630653pt;}
.x7b_c00370{left:672.475453pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fc52f6a06b4b9bb257a2e774.woff2')format("woff");}.ff1_c00371{font-family:ff1_c00371;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00371;src:url('chunks/assets/font_b6c2784957636230f0dcc679.woff2')format("woff");}.ff2_c00371{font-family:ff2_c00371;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00371;src:url('chunks/assets/font_afd0c9dfec9354f609eba764.woff2')format("woff");}.ff3_c00371{font-family:ff3_c00371;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00371;src:url('chunks/assets/font_fb2d4821950300f79a0fe644.woff2')format("woff");}.ff4_c00371{font-family:ff4_c00371;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1b_c00371{transform:matrix(0.134795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134795,0.000000,0.000000,0.250000,0,0);}
.m18_c00371{transform:matrix(0.145490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145490,0.000000,0.000000,0.250000,0,0);}
.mda_c00371{transform:matrix(0.151265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151265,0.000000,0.000000,0.250000,0,0);}
.m28_c00371{transform:matrix(0.164634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164634,0.000000,0.000000,0.250000,0,0);}
.m87_c00371{transform:matrix(0.178605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178605,0.000000,0.000000,0.250000,0,0);}
.mb6_c00371{transform:matrix(0.184594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184594,0.000000,0.000000,0.250000,0,0);}
.m44_c00371{transform:matrix(0.185463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185463,0.000000,0.000000,0.250000,0,0);}
.m16_c00371{transform:matrix(0.185651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185651,0.000000,0.000000,0.250000,0,0);}
.m27_c00371{transform:matrix(0.186411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186411,0.000000,0.000000,0.250000,0,0);}
.m86_c00371{transform:matrix(0.207424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207424,0.000000,0.000000,0.250000,0,0);}
.mc2_c00371{transform:matrix(0.213392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213392,0.000000,0.000000,0.250000,0,0);}
.m7_c00371{transform:matrix(0.230680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230680,0.000000,0.000000,0.250000,0,0);}
.m91_c00371{transform:matrix(0.235109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235109,0.000000,0.000000,0.250000,0,0);}
.mb0_c00371{transform:matrix(0.238155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238155,0.000000,0.000000,0.250000,0,0);}
.mb8_c00371{transform:matrix(0.242221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242221,0.000000,0.000000,0.250000,0,0);}
.mbd_c00371{transform:matrix(0.246163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246163,0.000000,0.000000,0.250000,0,0);}
.m83_c00371{transform:matrix(0.248049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248049,0.000000,0.000000,0.250000,0,0);}
.m0_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);}
.ma7_c00371{transform:matrix(0.250809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250809,0.000000,0.000000,0.250000,0,0);}
.m2c_c00371{transform:matrix(0.255049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255049,0.000000,0.000000,0.250000,0,0);}
.m13_c00371{transform:matrix(0.255192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255192,0.000000,0.000000,0.250000,0,0);}
.m8e_c00371{transform:matrix(0.255404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255404,0.000000,0.000000,0.250000,0,0);}
.mb3_c00371{transform:matrix(0.256862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256862,0.000000,0.000000,0.250000,0,0);}
.md1_c00371{transform:matrix(0.259881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259881,0.000000,0.000000,0.250000,0,0);}
.mc3_c00371{transform:matrix(0.260133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260133,0.000000,0.000000,0.250000,0,0);}
.m22_c00371{transform:matrix(0.262226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262226,0.000000,0.000000,0.250000,0,0);}
.m38_c00371{transform:matrix(0.263843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263843,0.000000,0.000000,0.250000,0,0);}
.m8f_c00371{transform:matrix(0.265518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265518,0.000000,0.000000,0.250000,0,0);}
.m70_c00371{transform:matrix(0.268555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268555,0.000000,0.000000,0.250000,0,0);}
.m90_c00371{transform:matrix(0.268638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268638,0.000000,0.000000,0.250000,0,0);}
.m7c_c00371{transform:matrix(0.269105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269105,0.000000,0.000000,0.250000,0,0);}
.m1a_c00371{transform:matrix(0.269260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269260,0.000000,0.000000,0.250000,0,0);}
.md3_c00371{transform:matrix(0.269380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269380,0.000000,0.000000,0.250000,0,0);}
.m7b_c00371{transform:matrix(0.270336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270336,0.000000,0.000000,0.250000,0,0);}
.mc0_c00371{transform:matrix(0.273707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273707,0.000000,0.000000,0.250000,0,0);}
.m72_c00371{transform:matrix(0.274032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274032,0.000000,0.000000,0.250000,0,0);}
.m6c_c00371{transform:matrix(0.275079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275079,0.000000,0.000000,0.250000,0,0);}
.ma2_c00371{transform:matrix(0.275868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275868,0.000000,0.000000,0.250000,0,0);}
.ma5_c00371{transform:matrix(0.276221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276221,0.000000,0.000000,0.250000,0,0);}
.mad_c00371{transform:matrix(0.276473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276473,0.000000,0.000000,0.250000,0,0);}
.md2_c00371{transform:matrix(0.276690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276690,0.000000,0.000000,0.250000,0,0);}
.mba_c00371{transform:matrix(0.277978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277978,0.000000,0.000000,0.250000,0,0);}
.ma_c00371{transform:matrix(0.278689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278689,0.000000,0.000000,0.250000,0,0);}
.m8b_c00371{transform:matrix(0.280655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280655,0.000000,0.000000,0.250000,0,0);}
.m3c_c00371{transform:matrix(0.283124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283124,0.000000,0.000000,0.250000,0,0);}
.m4e_c00371{transform:matrix(0.283298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283298,0.000000,0.000000,0.250000,0,0);}
.m6_c00371{transform:matrix(0.283732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283732,0.000000,0.000000,0.250000,0,0);}
.md4_c00371{transform:matrix(0.283756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283756,0.000000,0.000000,0.250000,0,0);}
.m49_c00371{transform:matrix(0.283959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283959,0.000000,0.000000,0.250000,0,0);}
.m33_c00371{transform:matrix(0.285667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285667,0.000000,0.000000,0.250000,0,0);}
.m75_c00371{transform:matrix(0.285860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285860,0.000000,0.000000,0.250000,0,0);}
.mb5_c00371{transform:matrix(0.285968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285968,0.000000,0.000000,0.250000,0,0);}
.m10_c00371{transform:matrix(0.286265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286265,0.000000,0.000000,0.250000,0,0);}
.md0_c00371{transform:matrix(0.286373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286373,0.000000,0.000000,0.250000,0,0);}
.mca_c00371{transform:matrix(0.286661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286661,0.000000,0.000000,0.250000,0,0);}
.m5b_c00371{transform:matrix(0.287076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287076,0.000000,0.000000,0.250000,0,0);}
.m61_c00371{transform:matrix(0.287186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287186,0.000000,0.000000,0.250000,0,0);}
.mb4_c00371{transform:matrix(0.288195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288195,0.000000,0.000000,0.250000,0,0);}
.m58_c00371{transform:matrix(0.288823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288823,0.000000,0.000000,0.250000,0,0);}
.m4a_c00371{transform:matrix(0.290679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290679,0.000000,0.000000,0.250000,0,0);}
.m50_c00371{transform:matrix(0.290680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290680,0.000000,0.000000,0.250000,0,0);}
.maa_c00371{transform:matrix(0.291027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291027,0.000000,0.000000,0.250000,0,0);}
.m69_c00371{transform:matrix(0.291438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291438,0.000000,0.000000,0.250000,0,0);}
.m79_c00371{transform:matrix(0.291650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291650,0.000000,0.000000,0.250000,0,0);}
.m68_c00371{transform:matrix(0.291688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291688,0.000000,0.000000,0.250000,0,0);}
.mb2_c00371{transform:matrix(0.291831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291831,0.000000,0.000000,0.250000,0,0);}
.m12_c00371{transform:matrix(0.293475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293475,0.000000,0.000000,0.250000,0,0);}
.m23_c00371{transform:matrix(0.293627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293627,0.000000,0.000000,0.250000,0,0);}
.mb7_c00371{transform:matrix(0.293988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293988,0.000000,0.000000,0.250000,0,0);}
.m3b_c00371{transform:matrix(0.293992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293992,0.000000,0.000000,0.250000,0,0);}
.m32_c00371{transform:matrix(0.295267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295267,0.000000,0.000000,0.250000,0,0);}
.mb9_c00371{transform:matrix(0.296060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296060,0.000000,0.000000,0.250000,0,0);}
.m3e_c00371{transform:matrix(0.296309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296309,0.000000,0.000000,0.250000,0,0);}
.mdd_c00371{transform:matrix(0.297339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297339,0.000000,0.000000,0.250000,0,0);}
.m1d_c00371{transform:matrix(0.297408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297408,0.000000,0.000000,0.250000,0,0);}
.m47_c00371{transform:matrix(0.297564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297564,0.000000,0.000000,0.250000,0,0);}
.m2e_c00371{transform:matrix(0.298773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298773,0.000000,0.000000,0.250000,0,0);}
.m63_c00371{transform:matrix(0.298867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298867,0.000000,0.000000,0.250000,0,0);}
.m89_c00371{transform:matrix(0.300099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300099,0.000000,0.000000,0.250000,0,0);}
.m1f_c00371{transform:matrix(0.300702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300702,0.000000,0.000000,0.250000,0,0);}
.m9b_c00371{transform:matrix(0.300703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300703,0.000000,0.000000,0.250000,0,0);}
.m31_c00371{transform:matrix(0.300828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300828,0.000000,0.000000,0.250000,0,0);}
.mce_c00371{transform:matrix(0.301332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301332,0.000000,0.000000,0.250000,0,0);}
.m95_c00371{transform:matrix(0.301465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301465,0.000000,0.000000,0.250000,0,0);}
.mcf_c00371{transform:matrix(0.301875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301875,0.000000,0.000000,0.250000,0,0);}
.mbe_c00371{transform:matrix(0.301986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301986,0.000000,0.000000,0.250000,0,0);}
.m17_c00371{transform:matrix(0.302081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302081,0.000000,0.000000,0.250000,0,0);}
.m39_c00371{transform:matrix(0.302232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302232,0.000000,0.000000,0.250000,0,0);}
.m6a_c00371{transform:matrix(0.302257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302257,0.000000,0.000000,0.250000,0,0);}
.mc_c00371{transform:matrix(0.302350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302350,0.000000,0.000000,0.250000,0,0);}
.m2f_c00371{transform:matrix(0.302580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302580,0.000000,0.000000,0.250000,0,0);}
.m36_c00371{transform:matrix(0.303126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303126,0.000000,0.000000,0.250000,0,0);}
.m82_c00371{transform:matrix(0.303218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303218,0.000000,0.000000,0.250000,0,0);}
.m78_c00371{transform:matrix(0.303312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303312,0.000000,0.000000,0.250000,0,0);}
.m15_c00371{transform:matrix(0.303410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303410,0.000000,0.000000,0.250000,0,0);}
.m6b_c00371{transform:matrix(0.303897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303897,0.000000,0.000000,0.250000,0,0);}
.m1e_c00371{transform:matrix(0.305068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305068,0.000000,0.000000,0.250000,0,0);}
.mc1_c00371{transform:matrix(0.305072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305072,0.000000,0.000000,0.250000,0,0);}
.m6d_c00371{transform:matrix(0.305356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305356,0.000000,0.000000,0.250000,0,0);}
.m5c_c00371{transform:matrix(0.305715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305715,0.000000,0.000000,0.250000,0,0);}
.m2d_c00371{transform:matrix(0.306130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306130,0.000000,0.000000,0.250000,0,0);}
.mae_c00371{transform:matrix(0.306715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306715,0.000000,0.000000,0.250000,0,0);}
.m5_c00371{transform:matrix(0.307277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307277,0.000000,0.000000,0.250000,0,0);}
.mdb_c00371{transform:matrix(0.307629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307629,0.000000,0.000000,0.250000,0,0);}
.mbb_c00371{transform:matrix(0.308736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308736,0.000000,0.000000,0.250000,0,0);}
.m9f_c00371{transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);}
.m43_c00371{transform:matrix(0.309147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309147,0.000000,0.000000,0.250000,0,0);}
.m94_c00371{transform:matrix(0.309871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309871,0.000000,0.000000,0.250000,0,0);}
.m11_c00371{transform:matrix(0.309958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309958,0.000000,0.000000,0.250000,0,0);}
.m9d_c00371{transform:matrix(0.310158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310158,0.000000,0.000000,0.250000,0,0);}
.m5a_c00371{transform:matrix(0.310828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310828,0.000000,0.000000,0.250000,0,0);}
.m93_c00371{transform:matrix(0.310873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310873,0.000000,0.000000,0.250000,0,0);}
.m30_c00371{transform:matrix(0.311805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311805,0.000000,0.000000,0.250000,0,0);}
.m66_c00371{transform:matrix(0.312627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312627,0.000000,0.000000,0.250000,0,0);}
.ma4_c00371{transform:matrix(0.313085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313085,0.000000,0.000000,0.250000,0,0);}
.me_c00371{transform:matrix(0.314555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314555,0.000000,0.000000,0.250000,0,0);}
.m9e_c00371{transform:matrix(0.315492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315492,0.000000,0.000000,0.250000,0,0);}
.m6f_c00371{transform:matrix(0.316468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316468,0.000000,0.000000,0.250000,0,0);}
.m5e_c00371{transform:matrix(0.317498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317498,0.000000,0.000000,0.250000,0,0);}
.m21_c00371{transform:matrix(0.317517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317517,0.000000,0.000000,0.250000,0,0);}
.mc6_c00371{transform:matrix(0.318555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318555,0.000000,0.000000,0.250000,0,0);}
.m20_c00371{transform:matrix(0.318610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318610,0.000000,0.000000,0.250000,0,0);}
.md9_c00371{transform:matrix(0.318923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318923,0.000000,0.000000,0.250000,0,0);}
.m81_c00371{transform:matrix(0.319679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319679,0.000000,0.000000,0.250000,0,0);}
.m42_c00371{transform:matrix(0.319797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319797,0.000000,0.000000,0.250000,0,0);}
.m4d_c00371{transform:matrix(0.319891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319891,0.000000,0.000000,0.250000,0,0);}
.mbf_c00371{transform:matrix(0.320473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320473,0.000000,0.000000,0.250000,0,0);}
.ma3_c00371{transform:matrix(0.320525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320525,0.000000,0.000000,0.250000,0,0);}
.m8c_c00371{transform:matrix(0.320558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320558,0.000000,0.000000,0.250000,0,0);}
.m46_c00371{transform:matrix(0.320814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320814,0.000000,0.000000,0.250000,0,0);}
.m51_c00371{transform:matrix(0.321443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321443,0.000000,0.000000,0.250000,0,0);}
.m19_c00371{transform:matrix(0.321677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321677,0.000000,0.000000,0.250000,0,0);}
.m37_c00371{transform:matrix(0.322340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322340,0.000000,0.000000,0.250000,0,0);}
.mb_c00371{transform:matrix(0.322341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322341,0.000000,0.000000,0.250000,0,0);}
.md_c00371{transform:matrix(0.323232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323232,0.000000,0.000000,0.250000,0,0);}
.maf_c00371{transform:matrix(0.323331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323331,0.000000,0.000000,0.250000,0,0);}
.m57_c00371{transform:matrix(0.323749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323749,0.000000,0.000000,0.250000,0,0);}
.mc9_c00371{transform:matrix(0.324038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324038,0.000000,0.000000,0.250000,0,0);}
.m53_c00371{transform:matrix(0.325050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325050,0.000000,0.000000,0.250000,0,0);}
.mc8_c00371{transform:matrix(0.325142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325142,0.000000,0.000000,0.250000,0,0);}
.m96_c00371{transform:matrix(0.326131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326131,0.000000,0.000000,0.250000,0,0);}
.m88_c00371{transform:matrix(0.326146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326146,0.000000,0.000000,0.250000,0,0);}
.mc5_c00371{transform:matrix(0.326944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326944,0.000000,0.000000,0.250000,0,0);}
.md7_c00371{transform:matrix(0.327263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327263,0.000000,0.000000,0.250000,0,0);}
.m26_c00371{transform:matrix(0.328058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328058,0.000000,0.000000,0.250000,0,0);}
.m77_c00371{transform:matrix(0.328423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328423,0.000000,0.000000,0.250000,0,0);}
.m64_c00371{transform:matrix(0.328906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328906,0.000000,0.000000,0.250000,0,0);}
.m8a_c00371{transform:matrix(0.329770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329770,0.000000,0.000000,0.250000,0,0);}
.m7f_c00371{transform:matrix(0.330845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330845,0.000000,0.000000,0.250000,0,0);}
.m1_c00371{transform:matrix(0.330914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330914,0.000000,0.000000,0.250000,0,0);}
.m3a_c00371{transform:matrix(0.331568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331568,0.000000,0.000000,0.250000,0,0);}
.m54_c00371{transform:matrix(0.331587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331587,0.000000,0.000000,0.250000,0,0);}
.md8_c00371{transform:matrix(0.332907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332907,0.000000,0.000000,0.250000,0,0);}
.m65_c00371{transform:matrix(0.332953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332953,0.000000,0.000000,0.250000,0,0);}
.mc7_c00371{transform:matrix(0.334786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334786,0.000000,0.000000,0.250000,0,0);}
.m4f_c00371{transform:matrix(0.335141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335141,0.000000,0.000000,0.250000,0,0);}
.m48_c00371{transform:matrix(0.335342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335342,0.000000,0.000000,0.250000,0,0);}
.m9_c00371{transform:matrix(0.337723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337723,0.000000,0.000000,0.250000,0,0);}
.m52_c00371{transform:matrix(0.337888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337888,0.000000,0.000000,0.250000,0,0);}
.m7d_c00371{transform:matrix(0.339125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339125,0.000000,0.000000,0.250000,0,0);}
.m60_c00371{transform:matrix(0.340169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340169,0.000000,0.000000,0.250000,0,0);}
.md5_c00371{transform:matrix(0.340512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340512,0.000000,0.000000,0.250000,0,0);}
.mbc_c00371{transform:matrix(0.342175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342175,0.000000,0.000000,0.250000,0,0);}
.m7e_c00371{transform:matrix(0.342262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342262,0.000000,0.000000,0.250000,0,0);}
.m25_c00371{transform:matrix(0.342760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342760,0.000000,0.000000,0.250000,0,0);}
.m98_c00371{transform:matrix(0.342882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342882,0.000000,0.000000,0.250000,0,0);}
.m8_c00371{transform:matrix(0.344186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344186,0.000000,0.000000,0.250000,0,0);}
.m99_c00371{transform:matrix(0.344192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344192,0.000000,0.000000,0.250000,0,0);}
.m76_c00371{transform:matrix(0.344927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344927,0.000000,0.000000,0.250000,0,0);}
.m3f_c00371{transform:matrix(0.346113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346113,0.000000,0.000000,0.250000,0,0);}
.m62_c00371{transform:matrix(0.346636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346636,0.000000,0.000000,0.250000,0,0);}
.m85_c00371{transform:matrix(0.346974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346974,0.000000,0.000000,0.250000,0,0);}
.m74_c00371{transform:matrix(0.348379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348379,0.000000,0.000000,0.250000,0,0);}
.mcc_c00371{transform:matrix(0.348519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348519,0.000000,0.000000,0.250000,0,0);}
.m67_c00371{transform:matrix(0.349484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349484,0.000000,0.000000,0.250000,0,0);}
.mc4_c00371{transform:matrix(0.351144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351144,0.000000,0.000000,0.250000,0,0);}
.m7a_c00371{transform:matrix(0.351746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351746,0.000000,0.000000,0.250000,0,0);}
.m29_c00371{transform:matrix(0.352956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352956,0.000000,0.000000,0.250000,0,0);}
.m5f_c00371{transform:matrix(0.354951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354951,0.000000,0.000000,0.250000,0,0);}
.m2b_c00371{transform:matrix(0.356823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356823,0.000000,0.000000,0.250000,0,0);}
.m14_c00371{transform:matrix(0.357084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357084,0.000000,0.000000,0.250000,0,0);}
.m9a_c00371{transform:matrix(0.358352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358352,0.000000,0.000000,0.250000,0,0);}
.m4_c00371{transform:matrix(0.359797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359797,0.000000,0.000000,0.250000,0,0);}
.m2_c00371{transform:matrix(0.360149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360149,0.000000,0.000000,0.250000,0,0);}
.m6e_c00371{transform:matrix(0.361525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361525,0.000000,0.000000,0.250000,0,0);}
.m35_c00371{transform:matrix(0.361690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361690,0.000000,0.000000,0.250000,0,0);}
.m97_c00371{transform:matrix(0.362022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362022,0.000000,0.000000,0.250000,0,0);}
.m24_c00371{transform:matrix(0.363879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363879,0.000000,0.000000,0.250000,0,0);}
.mdf_c00371{transform:matrix(0.363995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363995,0.000000,0.000000,0.250000,0,0);}
.mb1_c00371{transform:matrix(0.364015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364015,0.000000,0.000000,0.250000,0,0);}
.ma9_c00371{transform:matrix(0.365942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365942,0.000000,0.000000,0.250000,0,0);}
.md6_c00371{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);}
.mcb_c00371{transform:matrix(0.366609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366609,0.000000,0.000000,0.250000,0,0);}
.mac_c00371{transform:matrix(0.368035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368035,0.000000,0.000000,0.250000,0,0);}
.m3d_c00371{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);}
.m71_c00371{transform:matrix(0.368582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368582,0.000000,0.000000,0.250000,0,0);}
.m8d_c00371{transform:matrix(0.368937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368937,0.000000,0.000000,0.250000,0,0);}
.m34_c00371{transform:matrix(0.369670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369670,0.000000,0.000000,0.250000,0,0);}
.ma0_c00371{transform:matrix(0.370775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370775,0.000000,0.000000,0.250000,0,0);}
.ma6_c00371{transform:matrix(0.371603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371603,0.000000,0.000000,0.250000,0,0);}
.m56_c00371{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);}
.m9c_c00371{transform:matrix(0.376484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376484,0.000000,0.000000,0.250000,0,0);}
.m3_c00371{transform:matrix(0.378386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378386,0.000000,0.000000,0.250000,0,0);}
.m45_c00371{transform:matrix(0.381109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381109,0.000000,0.000000,0.250000,0,0);}
.mde_c00371{transform:matrix(0.383218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383218,0.000000,0.000000,0.250000,0,0);}
.mcd_c00371{transform:matrix(0.383889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383889,0.000000,0.000000,0.250000,0,0);}
.m5d_c00371{transform:matrix(0.385041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385041,0.000000,0.000000,0.250000,0,0);}
.ma1_c00371{transform:matrix(0.385449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385449,0.000000,0.000000,0.250000,0,0);}
.m55_c00371{transform:matrix(0.385525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385525,0.000000,0.000000,0.250000,0,0);}
.m92_c00371{transform:matrix(0.387499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387499,0.000000,0.000000,0.250000,0,0);}
.m59_c00371{transform:matrix(0.392037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392037,0.000000,0.000000,0.250000,0,0);}
.m84_c00371{transform:matrix(0.393292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393292,0.000000,0.000000,0.250000,0,0);}
.ma8_c00371{transform:matrix(0.396421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396421,0.000000,0.000000,0.250000,0,0);}
.m80_c00371{transform:matrix(0.398204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398204,0.000000,0.000000,0.250000,0,0);}
.m4b_c00371{transform:matrix(0.398571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398571,0.000000,0.000000,0.250000,0,0);}
.m4c_c00371{transform:matrix(0.399649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399649,0.000000,0.000000,0.250000,0,0);}
.mdc_c00371{transform:matrix(0.401511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401511,0.000000,0.000000,0.250000,0,0);}
.m1c_c00371{transform:matrix(0.405692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405692,0.000000,0.000000,0.250000,0,0);}
.m2a_c00371{transform:matrix(0.411147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411147,0.000000,0.000000,0.250000,0,0);}
.mab_c00371{transform:matrix(0.436232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436232,0.000000,0.000000,0.250000,0,0);}
.m73_c00371{transform:matrix(0.444621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444621,0.000000,0.000000,0.250000,0,0);}
.m40_c00371{transform:matrix(0.451905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451905,0.000000,0.000000,0.250000,0,0);}
.m41_c00371{transform:matrix(0.460692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460692,0.000000,0.000000,0.250000,0,0);}
.mf_c00371{transform:matrix(0.472625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472625,0.000000,0.000000,0.250000,0,0);}
.v1_c00371{vertical-align:-51.341400px;}
.v0_c00371{vertical-align:0.000000px;}
.ls8_c00371{letter-spacing:-2.529450px;}
.ls5_c00371{letter-spacing:-2.249919px;}
.lsb_c00371{letter-spacing:-2.002770px;}
.ls12_c00371{letter-spacing:-1.589940px;}
.ls9_c00371{letter-spacing:-0.325215px;}
.ls6_c00371{letter-spacing:0.000000px;}
.ls7_c00371{letter-spacing:0.852786px;}
.ls1_c00371{letter-spacing:0.953964px;}
.ls4_c00371{letter-spacing:1.293633px;}
.ls10_c00371{letter-spacing:1.821204px;}
.ls11_c00371{letter-spacing:2.124738px;}
.lse_c00371{letter-spacing:2.305413px;}
.ls16_c00371{letter-spacing:2.524500px;}
.ls15_c00371{letter-spacing:2.637855px;}
.lsc_c00371{letter-spacing:2.861100px;}
.ls17_c00371{letter-spacing:2.930400px;}
.ls3_c00371{letter-spacing:3.150972px;}
.lsf_c00371{letter-spacing:3.172653px;}
.ls13_c00371{letter-spacing:3.544200px;}
.lsa_c00371{letter-spacing:3.564000px;}
.ls2_c00371{letter-spacing:3.613500px;}
.ls0_c00371{letter-spacing:20.484618px;}
.ls14_c00371{letter-spacing:49.896198px;}
.lsd_c00371{letter-spacing:58.449798px;}
.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;}
}
.ws8_c00371{word-spacing:-21.218472px;}
.ws9_c00371{word-spacing:-19.361133px;}
.ws0_c00371{word-spacing:-19.021464px;}
.ws1_c00371{word-spacing:-18.067500px;}
.ws6_c00371{word-spacing:-16.477560px;}
.ws7_c00371{word-spacing:-3.468960px;}
.wsb_c00371{word-spacing:-1.662210px;}
.ws4_c00371{word-spacing:-1.445400px;}
.wsc_c00371{word-spacing:0.000000px;}
.ws5_c00371{word-spacing:2.240370px;}
.ws2_c00371{word-spacing:4.841100px;}
.ws3_c00371{word-spacing:5.637060px;}
.wsa_c00371{word-spacing:11.563200px;}
._15_c00371{margin-left:-8.079390px;}
._a_c00371{margin-left:-7.010190px;}
._8_c00371{margin-left:-5.347980px;}
._1_c00371{width:3.873672px;}
._16_c00371{width:5.718240px;}
._19_c00371{width:7.227000px;}
._d_c00371{width:9.395100px;}
._6_c00371{width:10.406880px;}
._17_c00371{width:11.563200px;}
._b_c00371{width:13.245210px;}
._14_c00371{width:15.682590px;}
._1c_c00371{width:19.223820px;}
._2_c00371{width:21.681000px;}
._10_c00371{width:23.993640px;}
._f_c00371{width:25.149960px;}
._7_c00371{width:26.997300px;}
._c_c00371{width:29.197080px;}
._4_c00371{width:30.350430px;}
._11_c00371{width:31.614660px;}
._0_c00371{width:33.798600px;}
._1a_c00371{width:36.034020px;}
._5_c00371{width:37.402200px;}
._13_c00371{width:38.885220px;}
._3_c00371{width:40.162320px;}
._1b_c00371{width:44.229240px;}
._9_c00371{width:45.530100px;}
._12_c00371{width:46.694340px;}
._e_c00371{width:47.915010px;}
._18_c00371{width:254.905200px;}
._1d_c00371{width:1781.925552px;}
.fc0_c00371{color:transparent;}
.fsa_c00371{font-size:11.682198px;}
.fs13_c00371{font-size:14.454198px;}
.fs1_c00371{font-size:22.176000px;}
.fsd_c00371{font-size:23.760000px;}
.fs7_c00371{font-size:25.344000px;}
.fs14_c00371{font-size:27.324000px;}
.fs12_c00371{font-size:27.720000px;}
.fs8_c00371{font-size:28.314000px;}
.fse_c00371{font-size:49.896198px;}
.fs10_c00371{font-size:50.490000px;}
.fs5_c00371{font-size:57.222000px;}
.fs6_c00371{font-size:58.449798px;}
.fs11_c00371{font-size:58.608000px;}
.fsc_c00371{font-size:60.984000px;}
.fsf_c00371{font-size:64.548000px;}
.fs9_c00371{font-size:68.706198px;}
.fs3_c00371{font-size:70.884000px;}
.fs4_c00371{font-size:71.280000px;}
.fs2_c00371{font-size:72.270000px;}
.fsb_c00371{font-size:76.824000px;}
.fs0_c00371{font-size:83.952198px;}
.y0_c00371{bottom:0.000000px;}
.y25_c00371{bottom:18.083385px;}
.y24_c00371{bottom:50.520735px;}
.y1_c00371{bottom:76.500000px;}
.y23_c00371{bottom:142.828335px;}
.y21_c00371{bottom:172.760490px;}
.y22_c00371{bottom:172.760985px;}
.y20_c00371{bottom:206.980335px;}
.y1f_c00371{bottom:240.481935px;}
.y1e_c00371{bottom:273.270735px;}
.y1d_c00371{bottom:305.341785px;}
.y1c_c00371{bottom:305.346240px;}
.y1b_c00371{bottom:338.843385px;}
.y1a_c00371{bottom:370.924335px;}
.y19_c00371{bottom:398.010735px;}
.y18_c00371{bottom:403.351785px;}
.y17_c00371{bottom:435.427785px;}
.y16_c00371{bottom:467.508735px;}
.y15_c00371{bottom:467.514923px;}
.y14_c00371{bottom:499.584735px;}
.y13_c00371{bottom:521.676585px;}
.y12_c00371{bottom:531.304335px;}
.y11_c00371{bottom:563.375385px;}
.y10_c00371{bottom:596.525535px;}
.yf_c00371{bottom:628.957935px;}
.ye_c00371{bottom:646.060185px;}
.yd_c00371{bottom:693.461385px;}
.yc_c00371{bottom:726.250185px;}
.yb_c00371{bottom:757.969785px;}
.ya_c00371{bottom:790.050735px;}
.y9_c00371{bottom:809.647785px;}
.y8_c00371{bottom:822.483135px;}
.y6_c00371{bottom:855.623385px;}
.y7_c00371{bottom:857.405385px;}
.y5_c00371{bottom:888.060735px;}
.y4_c00371{bottom:921.200985px;}
.y3_c00371{bottom:1041.664185px;}
.y2_c00371{bottom:1074.452985px;}
.hb_c00371{height:11.465438px;}
.h13_c00371{height:14.186005px;}
.h3_c00371{height:23.128875px;}
.he_c00371{height:23.945625px;}
.h8_c00371{height:24.873750px;}
.h14_c00371{height:26.817012px;}
.h9_c00371{height:29.530617px;}
.h10_c00371{height:33.230868px;}
.h7_c00371{height:38.927565px;}
.h11_c00371{height:52.659492px;}
.h6_c00371{height:56.160264px;}
.h12_c00371{height:61.126313px;}
.hd_c00371{height:63.604406px;}
.ha_c00371{height:67.431376px;}
.hf_c00371{height:69.568770px;}
.h4_c00371{height:70.929053px;}
.h5_c00371{height:74.342813px;}
.hc_c00371{height:75.398555px;}
.h2_c00371{height:82.394491px;}
.h1_c00371{height:1110.000000px;}
.h0_c00371{height:1263.000000px;}
.w1_c00371{width:775.500000px;}
.w0_c00371{width:892.500000px;}
.x0_c00371{left:0.000000px;}
.x1_c00371{left:58.500000px;}
.x3f_c00371{left:94.403085px;}
.x4_c00371{left:95.457435px;}
.x59_c00371{left:96.501885px;}
.x68_c00371{left:98.125485px;}
.x4c_c00371{left:107.045385px;}
.x73_c00371{left:109.525335px;}
.x75_c00371{left:113.797185px;}
.x3a_c00371{left:117.460185px;}
.x6f_c00371{left:119.900535px;}
.x27_c00371{left:128.315535px;}
.x64_c00371{left:129.523335px;}
.x6a_c00371{left:131.141985px;}
.x51_c00371{left:138.888735px;}
.x3_c00371{left:139.967835px;}
.x42_c00371{left:148.932285px;}
.x2d_c00371{left:150.917235px;}
.x2e_c00371{left:161.737935px;}
.x5b_c00371{left:162.866535px;}
.x41_c00371{left:166.965135px;}
.x63_c00371{left:171.410235px;}
.x5_c00371{left:172.969485px;}
.xf_c00371{left:174.043635px;}
.x60_c00371{left:180.439035px;}
.x1c_c00371{left:182.409135px;}
.x69_c00371{left:184.215885px;}
.x76_c00371{left:186.700785px;}
.x33_c00371{left:194.556435px;}
.x40_c00371{left:195.982035px;}
.x10_c00371{left:206.436435px;}
.x4d_c00371{left:208.361985px;}
.x5c_c00371{left:217.588785px;}
.x6b_c00371{left:227.231385px;}
.x2f_c00371{left:228.533235px;}
.x34_c00371{left:238.943085px;}
.x52_c00371{left:240.635985px;}
.x1d_c00371{left:241.695285px;}
.x35_c00371{left:248.749035px;}
.x11_c00371{left:250.496385px;}
.x28_c00371{left:253.154535px;}
.x5d_c00371{left:261.198285px;}
.x4e_c00371{left:262.455585px;}
.x12_c00371{left:271.939785px;}
.x1e_c00371{left:273.206985px;}
.x30_c00371{left:282.161535px;}
.x13_c00371{left:283.834635px;}
.x3b_c00371{left:294.927585px;}
.x53_c00371{left:304.654335px;}
.x61_c00371{left:306.649185px;}
.x14_c00371{left:316.410585px;}
.x74_c00371{left:317.662935px;}
.x62_c00371{left:327.122385px;}
.x36_c00371{left:338.517285px;}
.x6c_c00371{left:339.769635px;}
.x6_c00371{left:349.941885px;}
.x70_c00371{left:351.545685px;}
.x43_c00371{left:360.762585px;}
.x29_c00371{left:361.866435px;}
.x15_c00371{left:372.439635px;}
.x3c_c00371{left:382.785135px;}
.x44_c00371{left:384.344385px;}
.x31_c00371{left:392.170335px;}
.x54_c00371{left:394.843335px;}
.x1f_c00371{left:404.055285px;}
.x4f_c00371{left:406.416435px;}
.x20_c00371{left:408.396435px;}
.x45_c00371{left:415.148235px;}
.x21_c00371{left:416.742135px;}
.x55_c00371{left:426.978735px;}
.x2a_c00371{left:428.181585px;}
.x7_c00371{left:438.319185px;}
.x2b_c00371{left:449.842785px;}
.x8_c00371{left:460.584285px;}
.x65_c00371{left:470.429835px;}
.x50_c00371{left:472.058385px;}
.x9_c00371{left:483.072135px;}
.x49_c00371{left:484.913535px;}
.x5a_c00371{left:494.085885px;}
.x66_c00371{left:496.100535px;}
.x16_c00371{left:504.975885px;}
.x56_c00371{left:517.009335px;}
.x4a_c00371{left:518.642835px;}
.x37_c00371{left:527.067735px;}
.x22_c00371{left:529.250685px;}
.xa_c00371{left:537.754785px;}
.x3d_c00371{left:539.021985px;}
.x17_c00371{left:548.387385px;}
.x23_c00371{left:549.867435px;}
.x38_c00371{left:559.331835px;}
.x6d_c00371{left:560.371335px;}
.x24_c00371{left:562.945335px;}
.xb_c00371{left:571.137585px;}
.xc_c00371{left:581.953335px;}
.x25_c00371{left:593.511585px;}
.x46_c00371{left:602.614635px;}
.x18_c00371{left:603.866985px;}
.x71_c00371{left:605.639085px;}
.x3e_c00371{left:614.950035px;}
.x4b_c00371{left:616.004385px;}
.x19_c00371{left:626.315235px;}
.x67_c00371{left:628.656585px;}
.x39_c00371{left:637.002285px;}
.x72_c00371{left:638.729835px;}
.x2c_c00371{left:648.996135px;}
.xd_c00371{left:659.277285px;}
.x47_c00371{left:660.524685px;}
.x2_c00371{left:670.835535px;}
.x6e_c00371{left:671.870085px;}
.x5e_c00371{left:681.898785px;}
.x48_c00371{left:692.219535px;}
.x58_c00371{left:700.288035px;}
.x1a_c00371{left:702.406635px;}
.xe_c00371{left:704.015385px;}
.x57_c00371{left:709.168335px;}
.x32_c00371{left:714.712335px;}
.x26_c00371{left:725.755785px;}
.x5f_c00371{left:728.176335px;}
.x1b_c00371{left:736.804185px;}
@media print{
.v1_c00371{vertical-align:-45.636800pt;}
.v0_c00371{vertical-align:0.000000pt;}
.ls8_c00371{letter-spacing:-2.248400pt;}
.ls5_c00371{letter-spacing:-1.999928pt;}
.lsb_c00371{letter-spacing:-1.780240pt;}
.ls12_c00371{letter-spacing:-1.413280pt;}
.ls9_c00371{letter-spacing:-0.289080pt;}
.ls6_c00371{letter-spacing:0.000000pt;}
.ls7_c00371{letter-spacing:0.758032pt;}
.ls1_c00371{letter-spacing:0.847968pt;}
.ls4_c00371{letter-spacing:1.149896pt;}
.ls10_c00371{letter-spacing:1.618848pt;}
.ls11_c00371{letter-spacing:1.888656pt;}
.lse_c00371{letter-spacing:2.049256pt;}
.ls16_c00371{letter-spacing:2.244000pt;}
.ls15_c00371{letter-spacing:2.344760pt;}
.lsc_c00371{letter-spacing:2.543200pt;}
.ls17_c00371{letter-spacing:2.604800pt;}
.ls3_c00371{letter-spacing:2.800864pt;}
.lsf_c00371{letter-spacing:2.820136pt;}
.ls13_c00371{letter-spacing:3.150400pt;}
.lsa_c00371{letter-spacing:3.168000pt;}
.ls2_c00371{letter-spacing:3.212000pt;}
.ls0_c00371{letter-spacing:18.208549pt;}
.ls14_c00371{letter-spacing:44.352176pt;}
.lsd_c00371{letter-spacing:51.955376pt;}
.ws8_c00371{word-spacing:-18.860864pt;}
.ws9_c00371{word-spacing:-17.209896pt;}
.ws0_c00371{word-spacing:-16.907968pt;}
.ws1_c00371{word-spacing:-16.060000pt;}
.ws6_c00371{word-spacing:-14.646720pt;}
.ws7_c00371{word-spacing:-3.083520pt;}
.wsb_c00371{word-spacing:-1.477520pt;}
.ws4_c00371{word-spacing:-1.284800pt;}
.wsc_c00371{word-spacing:0.000000pt;}
.ws5_c00371{word-spacing:1.991440pt;}
.ws2_c00371{word-spacing:4.303200pt;}
.ws3_c00371{word-spacing:5.010720pt;}
.wsa_c00371{word-spacing:10.278400pt;}
._15_c00371{margin-left:-7.181680pt;}
._a_c00371{margin-left:-6.231280pt;}
._8_c00371{margin-left:-4.753760pt;}
._1_c00371{width:3.443264pt;}
._16_c00371{width:5.082880pt;}
._19_c00371{width:6.424000pt;}
._d_c00371{width:8.351200pt;}
._6_c00371{width:9.250560pt;}
._17_c00371{width:10.278400pt;}
._b_c00371{width:11.773520pt;}
._14_c00371{width:13.940080pt;}
._1c_c00371{width:17.087840pt;}
._2_c00371{width:19.272000pt;}
._10_c00371{width:21.327680pt;}
._f_c00371{width:22.355520pt;}
._7_c00371{width:23.997600pt;}
._c_c00371{width:25.952960pt;}
._4_c00371{width:26.978160pt;}
._11_c00371{width:28.101920pt;}
._0_c00371{width:30.043200pt;}
._1a_c00371{width:32.030240pt;}
._5_c00371{width:33.246400pt;}
._13_c00371{width:34.564640pt;}
._3_c00371{width:35.699840pt;}
._1b_c00371{width:39.314880pt;}
._9_c00371{width:40.471200pt;}
._12_c00371{width:41.506080pt;}
._e_c00371{width:42.591120pt;}
._18_c00371{width:226.582400pt;}
._1d_c00371{width:1583.933824pt;}
.fsa_c00371{font-size:10.384176pt;}
.fs13_c00371{font-size:12.848176pt;}
.fs1_c00371{font-size:19.712000pt;}
.fsd_c00371{font-size:21.120000pt;}
.fs7_c00371{font-size:22.528000pt;}
.fs14_c00371{font-size:24.288000pt;}
.fs12_c00371{font-size:24.640000pt;}
.fs8_c00371{font-size:25.168000pt;}
.fse_c00371{font-size:44.352176pt;}
.fs10_c00371{font-size:44.880000pt;}
.fs5_c00371{font-size:50.864000pt;}
.fs6_c00371{font-size:51.955376pt;}
.fs11_c00371{font-size:52.096000pt;}
.fsc_c00371{font-size:54.208000pt;}
.fsf_c00371{font-size:57.376000pt;}
.fs9_c00371{font-size:61.072176pt;}
.fs3_c00371{font-size:63.008000pt;}
.fs4_c00371{font-size:63.360000pt;}
.fs2_c00371{font-size:64.240000pt;}
.fsb_c00371{font-size:68.288000pt;}
.fs0_c00371{font-size:74.624176pt;}
.y0_c00371{bottom:0.000000pt;}
.y25_c00371{bottom:16.074120pt;}
.y24_c00371{bottom:44.907320pt;}
.y1_c00371{bottom:68.000000pt;}
.y23_c00371{bottom:126.958520pt;}
.y21_c00371{bottom:153.564880pt;}
.y22_c00371{bottom:153.565320pt;}
.y20_c00371{bottom:183.982520pt;}
.y1f_c00371{bottom:213.761720pt;}
.y1e_c00371{bottom:242.907320pt;}
.y1d_c00371{bottom:271.414920pt;}
.y1c_c00371{bottom:271.418880pt;}
.y1b_c00371{bottom:301.194120pt;}
.y1a_c00371{bottom:329.710520pt;}
.y19_c00371{bottom:353.787320pt;}
.y18_c00371{bottom:358.534920pt;}
.y17_c00371{bottom:387.046920pt;}
.y16_c00371{bottom:415.563320pt;}
.y15_c00371{bottom:415.568820pt;}
.y14_c00371{bottom:444.075320pt;}
.y13_c00371{bottom:463.712520pt;}
.y12_c00371{bottom:472.270520pt;}
.y11_c00371{bottom:500.778120pt;}
.y10_c00371{bottom:530.244920pt;}
.yf_c00371{bottom:559.073720pt;}
.ye_c00371{bottom:574.275720pt;}
.yd_c00371{bottom:616.410120pt;}
.yc_c00371{bottom:645.555720pt;}
.yb_c00371{bottom:673.750920pt;}
.ya_c00371{bottom:702.267320pt;}
.y9_c00371{bottom:719.686920pt;}
.y8_c00371{bottom:731.096120pt;}
.y6_c00371{bottom:760.554120pt;}
.y7_c00371{bottom:762.138120pt;}
.y5_c00371{bottom:789.387320pt;}
.y4_c00371{bottom:818.845320pt;}
.y3_c00371{bottom:925.923720pt;}
.y2_c00371{bottom:955.069320pt;}
.hb_c00371{height:10.191501pt;}
.h13_c00371{height:12.609782pt;}
.h3_c00371{height:20.559000pt;}
.he_c00371{height:21.285000pt;}
.h8_c00371{height:22.110000pt;}
.h14_c00371{height:23.837344pt;}
.h9_c00371{height:26.249438pt;}
.h10_c00371{height:29.538549pt;}
.h7_c00371{height:34.602280pt;}
.h11_c00371{height:46.808438pt;}
.h6_c00371{height:49.920234pt;}
.h12_c00371{height:54.334500pt;}
.hd_c00371{height:56.537250pt;}
.ha_c00371{height:59.939001pt;}
.hf_c00371{height:61.838906pt;}
.h4_c00371{height:63.048047pt;}
.h5_c00371{height:66.082500pt;}
.hc_c00371{height:67.020938pt;}
.h2_c00371{height:73.239548pt;}
.h1_c00371{height:986.666667pt;}
.h0_c00371{height:1122.666667pt;}
.w1_c00371{width:689.333333pt;}
.w0_c00371{width:793.333333pt;}
.x0_c00371{left:0.000000pt;}
.x1_c00371{left:52.000000pt;}
.x3f_c00371{left:83.913853pt;}
.x4_c00371{left:84.851053pt;}
.x59_c00371{left:85.779453pt;}
.x68_c00371{left:87.222653pt;}
.x4c_c00371{left:95.151453pt;}
.x73_c00371{left:97.355853pt;}
.x75_c00371{left:101.153053pt;}
.x3a_c00371{left:104.409053pt;}
.x6f_c00371{left:106.578253pt;}
.x27_c00371{left:114.058253pt;}
.x64_c00371{left:115.131853pt;}
.x6a_c00371{left:116.570653pt;}
.x51_c00371{left:123.456653pt;}
.x3_c00371{left:124.415853pt;}
.x42_c00371{left:132.384253pt;}
.x2d_c00371{left:134.148653pt;}
.x2e_c00371{left:143.767053pt;}
.x5b_c00371{left:144.770253pt;}
.x41_c00371{left:148.413453pt;}
.x63_c00371{left:152.364653pt;}
.x5_c00371{left:153.750653pt;}
.xf_c00371{left:154.705453pt;}
.x60_c00371{left:160.390253pt;}
.x1c_c00371{left:162.141453pt;}
.x69_c00371{left:163.747453pt;}
.x76_c00371{left:165.956253pt;}
.x33_c00371{left:172.939053pt;}
.x40_c00371{left:174.206253pt;}
.x10_c00371{left:183.499053pt;}
.x4d_c00371{left:185.210653pt;}
.x5c_c00371{left:193.412253pt;}
.x6b_c00371{left:201.983453pt;}
.x2f_c00371{left:203.140653pt;}
.x34_c00371{left:212.393853pt;}
.x52_c00371{left:213.898653pt;}
.x1d_c00371{left:214.840253pt;}
.x35_c00371{left:221.110253pt;}
.x11_c00371{left:222.663453pt;}
.x28_c00371{left:225.026253pt;}
.x5d_c00371{left:232.176253pt;}
.x4e_c00371{left:233.293853pt;}
.x12_c00371{left:241.724253pt;}
.x1e_c00371{left:242.850653pt;}
.x30_c00371{left:250.810253pt;}
.x13_c00371{left:252.297453pt;}
.x3b_c00371{left:262.157853pt;}
.x53_c00371{left:270.803853pt;}
.x61_c00371{left:272.577053pt;}
.x14_c00371{left:281.253853pt;}
.x74_c00371{left:282.367053pt;}
.x62_c00371{left:290.775453pt;}
.x36_c00371{left:300.904253pt;}
.x6c_c00371{left:302.017453pt;}
.x6_c00371{left:311.059453pt;}
.x70_c00371{left:312.485053pt;}
.x43_c00371{left:320.677853pt;}
.x29_c00371{left:321.659053pt;}
.x15_c00371{left:331.057453pt;}
.x3c_c00371{left:340.253453pt;}
.x44_c00371{left:341.639453pt;}
.x31_c00371{left:348.595853pt;}
.x54_c00371{left:350.971853pt;}
.x1f_c00371{left:359.160253pt;}
.x4f_c00371{left:361.259053pt;}
.x20_c00371{left:363.019053pt;}
.x45_c00371{left:369.020653pt;}
.x21_c00371{left:370.437453pt;}
.x55_c00371{left:379.536653pt;}
.x2a_c00371{left:380.605853pt;}
.x7_c00371{left:389.617053pt;}
.x2b_c00371{left:399.860253pt;}
.x8_c00371{left:409.408253pt;}
.x65_c00371{left:418.159853pt;}
.x50_c00371{left:419.607453pt;}
.x9_c00371{left:429.397453pt;}
.x49_c00371{left:431.034253pt;}
.x5a_c00371{left:439.187453pt;}
.x66_c00371{left:440.978253pt;}
.x16_c00371{left:448.867453pt;}
.x56_c00371{left:459.563853pt;}
.x4a_c00371{left:461.015853pt;}
.x37_c00371{left:468.504653pt;}
.x22_c00371{left:470.445053pt;}
.xa_c00371{left:478.004253pt;}
.x3d_c00371{left:479.130653pt;}
.x17_c00371{left:487.455453pt;}
.x23_c00371{left:488.771053pt;}
.x38_c00371{left:497.183853pt;}
.x6d_c00371{left:498.107853pt;}
.x24_c00371{left:500.395853pt;}
.xb_c00371{left:507.677853pt;}
.xc_c00371{left:517.291853pt;}
.x25_c00371{left:527.565853pt;}
.x46_c00371{left:535.657453pt;}
.x18_c00371{left:536.770653pt;}
.x71_c00371{left:538.345853pt;}
.x3e_c00371{left:546.622253pt;}
.x4b_c00371{left:547.559453pt;}
.x19_c00371{left:556.724653pt;}
.x67_c00371{left:558.805853pt;}
.x39_c00371{left:566.224253pt;}
.x72_c00371{left:567.759853pt;}
.x2c_c00371{left:576.885453pt;}
.xd_c00371{left:586.024253pt;}
.x47_c00371{left:587.133053pt;}
.x2_c00371{left:596.298253pt;}
.x6e_c00371{left:597.217853pt;}
.x5e_c00371{left:606.132253pt;}
.x48_c00371{left:615.306253pt;}
.x58_c00371{left:622.478253pt;}
.x1a_c00371{left:624.361453pt;}
.xe_c00371{left:625.791453pt;}
.x57_c00371{left:630.371853pt;}
.x32_c00371{left:635.299853pt;}
.x26_c00371{left:645.116253pt;}
.x5f_c00371{left:647.267853pt;}
.x1b_c00371{left:654.937053pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63190962511c706863c2e90f.woff2')format("woff");}.ff1_c00372{font-family:ff1_c00372;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00372;src:url('chunks/assets/font_c9058c425dec030836061a69.woff2')format("woff");}.ff2_c00372{font-family:ff2_c00372;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00372;src:url('chunks/assets/font_7e9aa6207c5348765ac0b348.woff2')format("woff");}.ff3_c00372{font-family:ff3_c00372;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5b_c00372{transform:matrix(0.020834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020834,0.000000,0.000000,0.250000,0,0);}
.m74_c00372{transform:matrix(0.061274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.061274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.061274,0.000000,0.000000,0.250000,0,0);}
.m61_c00372{transform:matrix(0.071430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071430,0.000000,0.000000,0.250000,0,0);}
.m41_c00372{transform:matrix(0.078572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078572,0.000000,0.000000,0.250000,0,0);}
.m18_c00372{transform:matrix(0.080883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080883,0.000000,0.000000,0.250000,0,0);}
.m5d_c00372{transform:matrix(0.086309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086309,0.000000,0.000000,0.250000,0,0);}
.m75_c00372{transform:matrix(0.096945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096945,0.000000,0.000000,0.250000,0,0);}
.mbf_c00372{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);}
.m89_c00372{transform:matrix(0.105876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105876,0.000000,0.000000,0.250000,0,0);}
.m7_c00372{transform:matrix(0.110240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110240,0.000000,0.000000,0.250000,0,0);}
.me1_c00372{transform:matrix(0.119263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119263,0.000000,0.000000,0.250000,0,0);}
.m60_c00372{transform:matrix(0.133929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133929,0.000000,0.000000,0.250000,0,0);}
.m59_c00372{transform:matrix(0.152777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152777,0.000000,0.000000,0.250000,0,0);}
.mcd_c00372{transform:matrix(0.157142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157142,0.000000,0.000000,0.250000,0,0);}
.m3b_c00372{transform:matrix(0.159786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159786,0.000000,0.000000,0.250000,0,0);}
.m3d_c00372{transform:matrix(0.160588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160588,0.000000,0.000000,0.250000,0,0);}
.mce_c00372{transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);}
.m5f_c00372{transform:matrix(0.171333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171333,0.000000,0.000000,0.250000,0,0);}
.m62_c00372{transform:matrix(0.174108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174108,0.000000,0.000000,0.250000,0,0);}
.m19_c00372{transform:matrix(0.178309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178309,0.000000,0.000000,0.250000,0,0);}
.m3f_c00372{transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);}
.m87_c00372{transform:matrix(0.179312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179312,0.000000,0.000000,0.250000,0,0);}
.m5a_c00372{transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);}
.m6a_c00372{transform:matrix(0.189285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189285,0.000000,0.000000,0.250000,0,0);}
.me2_c00372{transform:matrix(0.191046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191046,0.000000,0.000000,0.250000,0,0);}
.m17_c00372{transform:matrix(0.191177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191177,0.000000,0.000000,0.250000,0,0);}
.mcf_c00372{transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);}
.m5c_c00372{transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);}
.m8b_c00372{transform:matrix(0.198424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198424,0.000000,0.000000,0.250000,0,0);}
.m77_c00372{transform:matrix(0.201346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201346,0.000000,0.000000,0.250000,0,0);}
.mcc_c00372{transform:matrix(0.211905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211905,0.000000,0.000000,0.250000,0,0);}
.m40_c00372{transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);}
.m69_c00372{transform:matrix(0.220369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220369,0.000000,0.000000,0.250000,0,0);}
.mc0_c00372{transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);}
.m64_c00372{transform:matrix(0.232397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232397,0.000000,0.000000,0.250000,0,0);}
.m78_c00372{transform:matrix(0.244016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244016,0.000000,0.000000,0.250000,0,0);}
.m91_c00372{transform:matrix(0.244615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244615,0.000000,0.000000,0.250000,0,0);}
.m47_c00372{transform:matrix(0.247819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247819,0.000000,0.000000,0.250000,0,0);}
.m4a_c00372{transform:matrix(0.249300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249300,0.000000,0.000000,0.250000,0,0);}
.m7e_c00372{transform:matrix(0.249664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249664,0.000000,0.000000,0.250000,0,0);}
.m0_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);}
.m7a_c00372{transform:matrix(0.250187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250187,0.000000,0.000000,0.250000,0,0);}
.mb5_c00372{transform:matrix(0.256455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256455,0.000000,0.000000,0.250000,0,0);}
.m88_c00372{transform:matrix(0.257222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257222,0.000000,0.000000,0.250000,0,0);}
.me5_c00372{transform:matrix(0.261565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261565,0.000000,0.000000,0.250000,0,0);}
.mae_c00372{transform:matrix(0.264283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264283,0.000000,0.000000,0.250000,0,0);}
.m3_c00372{transform:matrix(0.265716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265716,0.000000,0.000000,0.250000,0,0);}
.m8e_c00372{transform:matrix(0.268424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268424,0.000000,0.000000,0.250000,0,0);}
.m65_c00372{transform:matrix(0.270034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270034,0.000000,0.000000,0.250000,0,0);}
.m90_c00372{transform:matrix(0.270118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270118,0.000000,0.000000,0.250000,0,0);}
.m79_c00372{transform:matrix(0.270597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270597,0.000000,0.000000,0.250000,0,0);}
.m72_c00372{transform:matrix(0.271826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271826,0.000000,0.000000,0.250000,0,0);}
.m45_c00372{transform:matrix(0.271880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271880,0.000000,0.000000,0.250000,0,0);}
.m1f_c00372{transform:matrix(0.273097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273097,0.000000,0.000000,0.250000,0,0);}
.m26_c00372{transform:matrix(0.273268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273268,0.000000,0.000000,0.250000,0,0);}
.md5_c00372{transform:matrix(0.273448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273448,0.000000,0.000000,0.250000,0,0);}
.mab_c00372{transform:matrix(0.273730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273730,0.000000,0.000000,0.250000,0,0);}
.mb4_c00372{transform:matrix(0.273933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273933,0.000000,0.000000,0.250000,0,0);}
.mb3_c00372{transform:matrix(0.274519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274519,0.000000,0.000000,0.250000,0,0);}
.mba_c00372{transform:matrix(0.274772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274772,0.000000,0.000000,0.250000,0,0);}
.m1d_c00372{transform:matrix(0.275129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275129,0.000000,0.000000,0.250000,0,0);}
.m8c_c00372{transform:matrix(0.275215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275215,0.000000,0.000000,0.250000,0,0);}
.m22_c00372{transform:matrix(0.278214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278214,0.000000,0.000000,0.250000,0,0);}
.m82_c00372{transform:matrix(0.279335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279335,0.000000,0.000000,0.250000,0,0);}
.m99_c00372{transform:matrix(0.280311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280311,0.000000,0.000000,0.250000,0,0);}
.m68_c00372{transform:matrix(0.281229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281229,0.000000,0.000000,0.250000,0,0);}
.m38_c00372{transform:matrix(0.281449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281449,0.000000,0.000000,0.250000,0,0);}
.mc7_c00372{transform:matrix(0.281737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281737,0.000000,0.000000,0.250000,0,0);}
.mb9_c00372{transform:matrix(0.281859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281859,0.000000,0.000000,0.250000,0,0);}
.m9d_c00372{transform:matrix(0.282201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282201,0.000000,0.000000,0.250000,0,0);}
.m80_c00372{transform:matrix(0.282508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282508,0.000000,0.000000,0.250000,0,0);}
.m43_c00372{transform:matrix(0.282792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282792,0.000000,0.000000,0.250000,0,0);}
.m23_c00372{transform:matrix(0.285320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285320,0.000000,0.000000,0.250000,0,0);}
.mc_c00372{transform:matrix(0.285408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285408,0.000000,0.000000,0.250000,0,0);}
.m1c_c00372{transform:matrix(0.286591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286591,0.000000,0.000000,0.250000,0,0);}
.m9e_c00372{transform:matrix(0.286833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286833,0.000000,0.000000,0.250000,0,0);}
.m2d_c00372{transform:matrix(0.287241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287241,0.000000,0.000000,0.250000,0,0);}
.md1_c00372{transform:matrix(0.287242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287242,0.000000,0.000000,0.250000,0,0);}
.ma8_c00372{transform:matrix(0.287520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287520,0.000000,0.000000,0.250000,0,0);}
.m93_c00372{transform:matrix(0.287544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287544,0.000000,0.000000,0.250000,0,0);}
.m24_c00372{transform:matrix(0.287842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287842,0.000000,0.000000,0.250000,0,0);}
.m6e_c00372{transform:matrix(0.288252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288252,0.000000,0.000000,0.250000,0,0);}
.m36_c00372{transform:matrix(0.289782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289782,0.000000,0.000000,0.250000,0,0);}
.m6f_c00372{transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);}
.ma0_c00372{transform:matrix(0.291496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291496,0.000000,0.000000,0.250000,0,0);}
.mad_c00372{transform:matrix(0.291834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291834,0.000000,0.000000,0.250000,0,0);}
.m16_c00372{transform:matrix(0.292280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292280,0.000000,0.000000,0.250000,0,0);}
.mdc_c00372{transform:matrix(0.292311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292311,0.000000,0.000000,0.250000,0,0);}
.mde_c00372{transform:matrix(0.293709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293709,0.000000,0.000000,0.250000,0,0);}
.mc4_c00372{transform:matrix(0.293748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293748,0.000000,0.000000,0.250000,0,0);}
.md7_c00372{transform:matrix(0.294405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294405,0.000000,0.000000,0.250000,0,0);}
.me0_c00372{transform:matrix(0.295389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295389,0.000000,0.000000,0.250000,0,0);}
.m98_c00372{transform:matrix(0.295509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295509,0.000000,0.000000,0.250000,0,0);}
.me_c00372{transform:matrix(0.296567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296567,0.000000,0.000000,0.250000,0,0);}
.m53_c00372{transform:matrix(0.297320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297320,0.000000,0.000000,0.250000,0,0);}
.m4d_c00372{transform:matrix(0.297321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297321,0.000000,0.000000,0.250000,0,0);}
.m5_c00372{transform:matrix(0.297370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297370,0.000000,0.000000,0.250000,0,0);}
.m7f_c00372{transform:matrix(0.297522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297522,0.000000,0.000000,0.250000,0,0);}
.m29_c00372{transform:matrix(0.298589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298589,0.000000,0.000000,0.250000,0,0);}
.mb0_c00372{transform:matrix(0.298987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298987,0.000000,0.000000,0.250000,0,0);}
.mda_c00372{transform:matrix(0.299046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299046,0.000000,0.000000,0.250000,0,0);}
.mb7_c00372{transform:matrix(0.299053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299053,0.000000,0.000000,0.250000,0,0);}
.m3e_c00372{transform:matrix(0.299681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299681,0.000000,0.000000,0.250000,0,0);}
.m73_c00372{transform:matrix(0.299940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299940,0.000000,0.000000,0.250000,0,0);}
.mc8_c00372{transform:matrix(0.300210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300210,0.000000,0.000000,0.250000,0,0);}
.m96_c00372{transform:matrix(0.301288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301288,0.000000,0.000000,0.250000,0,0);}
.m8_c00372{transform:matrix(0.301723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301723,0.000000,0.000000,0.250000,0,0);}
.m44_c00372{transform:matrix(0.302359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302359,0.000000,0.000000,0.250000,0,0);}
.mc2_c00372{transform:matrix(0.302360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302360,0.000000,0.000000,0.250000,0,0);}
.m6d_c00372{transform:matrix(0.302416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302416,0.000000,0.000000,0.250000,0,0);}
.m9c_c00372{transform:matrix(0.302744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302744,0.000000,0.000000,0.250000,0,0);}
.md0_c00372{transform:matrix(0.302780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302780,0.000000,0.000000,0.250000,0,0);}
.m6b_c00372{transform:matrix(0.302992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302992,0.000000,0.000000,0.250000,0,0);}
.ma5_c00372{transform:matrix(0.304796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304796,0.000000,0.000000,0.250000,0,0);}
.m14_c00372{transform:matrix(0.304903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304903,0.000000,0.000000,0.250000,0,0);}
.mca_c00372{transform:matrix(0.305306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305306,0.000000,0.000000,0.250000,0,0);}
.ma2_c00372{transform:matrix(0.305521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305521,0.000000,0.000000,0.250000,0,0);}
.m57_c00372{transform:matrix(0.305843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305843,0.000000,0.000000,0.250000,0,0);}
.m20_c00372{transform:matrix(0.307112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307112,0.000000,0.000000,0.250000,0,0);}
.m92_c00372{transform:matrix(0.308331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308331,0.000000,0.000000,0.250000,0,0);}
.mc9_c00372{transform:matrix(0.308906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308906,0.000000,0.000000,0.250000,0,0);}
.m3a_c00372{transform:matrix(0.309028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309028,0.000000,0.000000,0.250000,0,0);}
.mc6_c00372{transform:matrix(0.309324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309324,0.000000,0.000000,0.250000,0,0);}
.mcb_c00372{transform:matrix(0.309793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309793,0.000000,0.000000,0.250000,0,0);}
.m7d_c00372{transform:matrix(0.309882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309882,0.000000,0.000000,0.250000,0,0);}
.me4_c00372{transform:matrix(0.309950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309950,0.000000,0.000000,0.250000,0,0);}
.mb6_c00372{transform:matrix(0.310129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310129,0.000000,0.000000,0.250000,0,0);}
.m56_c00372{transform:matrix(0.311880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311880,0.000000,0.000000,0.250000,0,0);}
.md8_c00372{transform:matrix(0.312231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312231,0.000000,0.000000,0.250000,0,0);}
.ma_c00372{transform:matrix(0.313140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313140,0.000000,0.000000,0.250000,0,0);}
.md9_c00372{transform:matrix(0.313402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313402,0.000000,0.000000,0.250000,0,0);}
.m2_c00372{transform:matrix(0.313616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313616,0.000000,0.000000,0.250000,0,0);}
.m2f_c00372{transform:matrix(0.314349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314349,0.000000,0.000000,0.250000,0,0);}
.m12_c00372{transform:matrix(0.314623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314623,0.000000,0.000000,0.250000,0,0);}
.m8f_c00372{transform:matrix(0.314678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314678,0.000000,0.000000,0.250000,0,0);}
.m28_c00372{transform:matrix(0.315639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315639,0.000000,0.000000,0.250000,0,0);}
.m31_c00372{transform:matrix(0.316289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316289,0.000000,0.000000,0.250000,0,0);}
.m50_c00372{transform:matrix(0.317096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317096,0.000000,0.000000,0.250000,0,0);}
.m35_c00372{transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00372{transform:matrix(0.317426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317426,0.000000,0.000000,0.250000,0,0);}
.m39_c00372{transform:matrix(0.317532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317532,0.000000,0.000000,0.250000,0,0);}
.m48_c00372{transform:matrix(0.318328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318328,0.000000,0.000000,0.250000,0,0);}
.ma3_c00372{transform:matrix(0.318833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318833,0.000000,0.000000,0.250000,0,0);}
.m8d_c00372{transform:matrix(0.318899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318899,0.000000,0.000000,0.250000,0,0);}
.m51_c00372{transform:matrix(0.320642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320642,0.000000,0.000000,0.250000,0,0);}
.m9a_c00372{transform:matrix(0.322006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322006,0.000000,0.000000,0.250000,0,0);}
.mb1_c00372{transform:matrix(0.322612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322612,0.000000,0.000000,0.250000,0,0);}
.m4e_c00372{transform:matrix(0.323214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323214,0.000000,0.000000,0.250000,0,0);}
.m83_c00372{transform:matrix(0.323698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323698,0.000000,0.000000,0.250000,0,0);}
.mf_c00372{transform:matrix(0.324116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324116,0.000000,0.000000,0.250000,0,0);}
.m70_c00372{transform:matrix(0.326090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326090,0.000000,0.000000,0.250000,0,0);}
.mc5_c00372{transform:matrix(0.327665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327665,0.000000,0.000000,0.250000,0,0);}
.m63_c00372{transform:matrix(0.328868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328868,0.000000,0.000000,0.250000,0,0);}
.m55_c00372{transform:matrix(0.329122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329122,0.000000,0.000000,0.250000,0,0);}
.m2b_c00372{transform:matrix(0.329866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329866,0.000000,0.000000,0.250000,0,0);}
.ma6_c00372{transform:matrix(0.329904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329904,0.000000,0.000000,0.250000,0,0);}
.md2_c00372{transform:matrix(0.330124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330124,0.000000,0.000000,0.250000,0,0);}
.m4_c00372{transform:matrix(0.331408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331408,0.000000,0.000000,0.250000,0,0);}
.m13_c00372{transform:matrix(0.332313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332313,0.000000,0.000000,0.250000,0,0);}
.m46_c00372{transform:matrix(0.332571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332571,0.000000,0.000000,0.250000,0,0);}
.mc3_c00372{transform:matrix(0.332848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332848,0.000000,0.000000,0.250000,0,0);}
.m32_c00372{transform:matrix(0.333414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333414,0.000000,0.000000,0.250000,0,0);}
.m84_c00372{transform:matrix(0.333724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333724,0.000000,0.000000,0.250000,0,0);}
.ma9_c00372{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);}
.md4_c00372{transform:matrix(0.336096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336096,0.000000,0.000000,0.250000,0,0);}
.m15_c00372{transform:matrix(0.336731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336731,0.000000,0.000000,0.250000,0,0);}
.m4f_c00372{transform:matrix(0.336809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336809,0.000000,0.000000,0.250000,0,0);}
.m71_c00372{transform:matrix(0.336907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336907,0.000000,0.000000,0.250000,0,0);}
.maf_c00372{transform:matrix(0.337472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337472,0.000000,0.000000,0.250000,0,0);}
.mb_c00372{transform:matrix(0.337738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337738,0.000000,0.000000,0.250000,0,0);}
.m42_c00372{transform:matrix(0.339999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339999,0.000000,0.000000,0.250000,0,0);}
.me3_c00372{transform:matrix(0.340754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340754,0.000000,0.000000,0.250000,0,0);}
.m4c_c00372{transform:matrix(0.340952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340952,0.000000,0.000000,0.250000,0,0);}
.m37_c00372{transform:matrix(0.341396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341396,0.000000,0.000000,0.250000,0,0);}
.m66_c00372{transform:matrix(0.341928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341928,0.000000,0.000000,0.250000,0,0);}
.m9_c00372{transform:matrix(0.342458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342458,0.000000,0.000000,0.250000,0,0);}
.mb2_c00372{transform:matrix(0.342600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342600,0.000000,0.000000,0.250000,0,0);}
.m4b_c00372{transform:matrix(0.343183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343183,0.000000,0.000000,0.250000,0,0);}
.mc1_c00372{transform:matrix(0.343324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343324,0.000000,0.000000,0.250000,0,0);}
.m86_c00372{transform:matrix(0.343827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343827,0.000000,0.000000,0.250000,0,0);}
.mdd_c00372{transform:matrix(0.344908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344908,0.000000,0.000000,0.250000,0,0);}
.mdb_c00372{transform:matrix(0.345207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345207,0.000000,0.000000,0.250000,0,0);}
.m95_c00372{transform:matrix(0.346326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346326,0.000000,0.000000,0.250000,0,0);}
.ma4_c00372{transform:matrix(0.347669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347669,0.000000,0.000000,0.250000,0,0);}
.m2a_c00372{transform:matrix(0.349813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349813,0.000000,0.000000,0.250000,0,0);}
.m33_c00372{transform:matrix(0.349828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349828,0.000000,0.000000,0.250000,0,0);}
.m7b_c00372{transform:matrix(0.350439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350439,0.000000,0.000000,0.250000,0,0);}
.m2e_c00372{transform:matrix(0.352523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352523,0.000000,0.000000,0.250000,0,0);}
.m58_c00372{transform:matrix(0.353983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353983,0.000000,0.000000,0.250000,0,0);}
.m67_c00372{transform:matrix(0.354388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354388,0.000000,0.000000,0.250000,0,0);}
.m2c_c00372{transform:matrix(0.355202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355202,0.000000,0.000000,0.250000,0,0);}
.ma7_c00372{transform:matrix(0.355260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355260,0.000000,0.000000,0.250000,0,0);}
.md_c00372{transform:matrix(0.355513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355513,0.000000,0.000000,0.250000,0,0);}
.mbc_c00372{transform:matrix(0.355690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355690,0.000000,0.000000,0.250000,0,0);}
.m25_c00372{transform:matrix(0.356128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356128,0.000000,0.000000,0.250000,0,0);}
.m94_c00372{transform:matrix(0.357109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357109,0.000000,0.000000,0.250000,0,0);}
.m3c_c00372{transform:matrix(0.357227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357227,0.000000,0.000000,0.250000,0,0);}
.m54_c00372{transform:matrix(0.357390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357390,0.000000,0.000000,0.250000,0,0);}
.m27_c00372{transform:matrix(0.360809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360809,0.000000,0.000000,0.250000,0,0);}
.mbd_c00372{transform:matrix(0.363362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363362,0.000000,0.000000,0.250000,0,0);}
.mdf_c00372{transform:matrix(0.363363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363363,0.000000,0.000000,0.250000,0,0);}
.m6_c00372{transform:matrix(0.363517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363517,0.000000,0.000000,0.250000,0,0);}
.m9f_c00372{transform:matrix(0.363663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363663,0.000000,0.000000,0.250000,0,0);}
.m52_c00372{transform:matrix(0.365884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365884,0.000000,0.000000,0.250000,0,0);}
.md3_c00372{transform:matrix(0.368357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368357,0.000000,0.000000,0.250000,0,0);}
.m30_c00372{transform:matrix(0.368629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368629,0.000000,0.000000,0.250000,0,0);}
.me6_c00372{transform:matrix(0.369836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369836,0.000000,0.000000,0.250000,0,0);}
.m1e_c00372{transform:matrix(0.370291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370291,0.000000,0.000000,0.250000,0,0);}
.maa_c00372{transform:matrix(0.371658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371658,0.000000,0.000000,0.250000,0,0);}
.md6_c00372{transform:matrix(0.373292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373292,0.000000,0.000000,0.250000,0,0);}
.m81_c00372{transform:matrix(0.374240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374240,0.000000,0.000000,0.250000,0,0);}
.m21_c00372{transform:matrix(0.374486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374486,0.000000,0.000000,0.250000,0,0);}
.mbe_c00372{transform:matrix(0.376194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376194,0.000000,0.000000,0.250000,0,0);}
.m49_c00372{transform:matrix(0.376266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376266,0.000000,0.000000,0.250000,0,0);}
.m6c_c00372{transform:matrix(0.377249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377249,0.000000,0.000000,0.250000,0,0);}
.mac_c00372{transform:matrix(0.381114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381114,0.000000,0.000000,0.250000,0,0);}
.m34_c00372{transform:matrix(0.387627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387627,0.000000,0.000000,0.250000,0,0);}
.m1_c00372{transform:matrix(0.390448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390448,0.000000,0.000000,0.250000,0,0);}
.mb8_c00372{transform:matrix(0.391639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391639,0.000000,0.000000,0.250000,0,0);}
.m1b_c00372{transform:matrix(0.391820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391820,0.000000,0.000000,0.250000,0,0);}
.m8a_c00372{transform:matrix(0.395978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395978,0.000000,0.000000,0.250000,0,0);}
.ma1_c00372{transform:matrix(0.397937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397937,0.000000,0.000000,0.250000,0,0);}
.m7c_c00372{transform:matrix(0.398379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398379,0.000000,0.000000,0.250000,0,0);}
.m1a_c00372{transform:matrix(0.408779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408779,0.000000,0.000000,0.250000,0,0);}
.m76_c00372{transform:matrix(0.422636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422636,0.000000,0.000000,0.250000,0,0);}
.m11_c00372{transform:matrix(0.438635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438635,0.000000,0.000000,0.250000,0,0);}
.m97_c00372{transform:matrix(0.454808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454808,0.000000,0.000000,0.250000,0,0);}
.m85_c00372{transform:matrix(0.458274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458274,0.000000,0.000000,0.250000,0,0);}
.m10_c00372{transform:matrix(0.463230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463230,0.000000,0.000000,0.250000,0,0);}
.m9b_c00372{transform:matrix(0.482042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482042,0.000000,0.000000,0.250000,0,0);}
.m5e_c00372{transform:matrix(1.102936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.102936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.102936,0.000000,0.000000,0.250000,0,0);}
.v0_c00372{vertical-align:0.000000px;}
.lse_c00372{letter-spacing:-2.772000px;}
.lsa_c00372{letter-spacing:-2.515590px;}
.ls16_c00372{letter-spacing:-1.358419px;}
.lsc_c00372{letter-spacing:-0.482209px;}
.ls12_c00372{letter-spacing:-0.452806px;}
.ls6_c00372{letter-spacing:-0.117533px;}
.ls9_c00372{letter-spacing:0.000000px;}
.ls2_c00372{letter-spacing:0.028750px;}
.ls1_c00372{letter-spacing:0.120226px;}
.ls4_c00372{letter-spacing:0.422294px;}
.ls15_c00372{letter-spacing:1.566853px;}
.ls10_c00372{letter-spacing:1.584000px;}
.ls14_c00372{letter-spacing:2.395810px;}
.ls13_c00372{letter-spacing:2.692810px;}
.ls5_c00372{letter-spacing:2.889335px;}
.ls7_c00372{letter-spacing:3.593700px;}
.ls8_c00372{letter-spacing:3.910500px;}
.ls0_c00372{letter-spacing:19.057038px;}
.ls3_c00372{letter-spacing:24.846624px;}
.ls11_c00372{letter-spacing:39.916800px;}
.lsb_c00372{letter-spacing:48.470598px;}
.lsd_c00372{letter-spacing:49.896198px;}
.lsf_c00372{letter-spacing:51.321798px;}
.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;}
}
.ws6_c00372{word-spacing:-19.535353px;}
.ws2_c00372{word-spacing:-17.997250px;}
.ws1_c00372{word-spacing:-17.968500px;}
.ws0_c00372{word-spacing:-3.593700px;}
.ws3_c00372{word-spacing:-2.874960px;}
.ws7_c00372{word-spacing:0.000000px;}
.ws4_c00372{word-spacing:3.090582px;}
.ws5_c00372{word-spacing:4.456188px;}
._1f_c00372{margin-left:-13.799808px;}
._9_c00372{margin-left:-12.649824px;}
._1d_c00372{margin-left:-10.709226px;}
._1e_c00372{margin-left:-9.631116px;}
._17_c00372{margin-left:-7.104715px;}
._e_c00372{margin-left:-4.744872px;}
._c_c00372{margin-left:-3.346992px;}
._18_c00372{width:1.078110px;}
._15_c00372{width:2.443716px;}
._10_c00372{width:5.016805px;}
._1b_c00372{width:7.618644px;}
._7_c00372{width:9.056124px;}
._0_c00372{width:10.134234px;}
._14_c00372{width:11.339856px;}
._3_c00372{width:12.434202px;}
._21_c00372{width:14.015430px;}
._1_c00372{width:15.668532px;}
._11_c00372{width:21.059082px;}
._6_c00372{width:22.640310px;}
._2_c00372{width:24.365286px;}
._1c_c00372{width:25.444188px;}
._22_c00372{width:26.521506px;}
._f_c00372{width:29.832858px;}
._20_c00372{width:31.347043px;}
._8_c00372{width:32.990166px;}
._a_c00372{width:34.903044px;}
._4_c00372{width:36.762066px;}
._12_c00372{width:38.506644px;}
._5_c00372{width:39.961944px;}
._16_c00372{width:41.327550px;}
._19_c00372{width:42.873534px;}
._1a_c00372{width:44.411400px;}
._13_c00372{width:48.299328px;}
._d_c00372{width:282.450010px;}
._b_c00372{width:702.406307px;}
.fc0_c00372{color:transparent;}
.fs6_c00372{font-size:5.742198px;}
.fs5_c00372{font-size:17.424000px;}
.fs4_c00372{font-size:19.602000px;}
.fs15_c00372{font-size:27.720000px;}
.fsd_c00372{font-size:31.680000px;}
.fs9_c00372{font-size:33.660000px;}
.fs14_c00372{font-size:39.204000px;}
.fsa_c00372{font-size:39.600000px;}
.fse_c00372{font-size:39.916800px;}
.fs12_c00372{font-size:47.916198px;}
.fs3_c00372{font-size:48.470598px;}
.fs10_c00372{font-size:49.104000px;}
.fs7_c00372{font-size:49.896198px;}
.fsc_c00372{font-size:50.688000px;}
.fsb_c00372{font-size:51.321798px;}
.fs11_c00372{font-size:53.856198px;}
.fsf_c00372{font-size:64.548000px;}
.fs1_c00372{font-size:71.874000px;}
.fs13_c00372{font-size:77.220000px;}
.fs2_c00372{font-size:78.210000px;}
.fs8_c00372{font-size:79.200000px;}
.fs0_c00372{font-size:83.952198px;}
.y0_c00372{bottom:0.000000px;}
.y22_c00372{bottom:22.008735px;}
.y1_c00372{bottom:76.500000px;}
.y21_c00372{bottom:117.523935px;}
.y20_c00372{bottom:147.812985px;}
.y1f_c00372{bottom:178.111935px;}
.y1e_c00372{bottom:178.117281px;}
.y1d_c00372{bottom:211.969935px;}
.y1c_c00372{bottom:244.402335px;}
.y1b_c00372{bottom:276.829785px;}
.y1a_c00372{bottom:309.623535px;}
.y19_c00372{bottom:374.839785px;}
.y18_c00372{bottom:407.989935px;}
.y17_c00372{bottom:440.422335px;}
.y16_c00372{bottom:473.211135px;}
.y15_c00372{bottom:504.569385px;}
.y14_c00372{bottom:537.006735px;}
.y13_c00372{bottom:569.082735px;}
.y10_c00372{bottom:601.871535px;}
.y12_c00372{bottom:602.227935px;}
.y11_c00372{bottom:612.207135px;}
.yf_c00372{bottom:649.272735px;}
.ye_c00372{bottom:652.480335px;}
.yc_c00372{bottom:666.379440px;}
.yd_c00372{bottom:666.379935px;}
.yb_c00372{bottom:698.812335px;}
.ya_c00372{bottom:731.244735px;}
.y9_c00372{bottom:763.677135px;}
.y8_c00372{bottom:795.748185px;}
.y7_c00372{bottom:827.829135px;}
.y6_c00372{bottom:857.410335px;}
.y5_c00372{bottom:860.261535px;}
.y4_c00372{bottom:894.114585px;}
.y3_c00372{bottom:926.190585px;}
.y2_c00372{bottom:1079.442585px;}
.h6_c00372{height:19.238291px;}
.he_c00372{height:26.584589px;}
.h13_c00372{height:28.911094px;}
.hd_c00372{height:31.092188px;}
.h5_c00372{height:32.281418px;}
.h9_c00372{height:33.035449px;}
.h7_c00372{height:33.230868px;}
.hb_c00372{height:34.180317px;}
.h12_c00372{height:38.476582px;}
.ha_c00372{height:41.301563px;}
.h10_c00372{height:47.027128px;}
.hf_c00372{height:52.856913px;}
.hc_c00372{height:52.866000px;}
.h3_c00372{height:70.540400px;}
.h11_c00372{height:75.787207px;}
.h4_c00372{height:76.758838px;}
.h8_c00372{height:77.730469px;}
.h2_c00372{height:82.394491px;}
.h1_c00372{height:1110.000000px;}
.h0_c00372{height:1263.000000px;}
.w1_c00372{width:775.500000px;}
.w0_c00372{width:892.500000px;}
.x0_c00372{left:0.000000px;}
.x1_c00372{left:58.500000px;}
.x1d_c00372{left:98.283885px;}
.x10_c00372{left:100.224285px;}
.x29_c00372{left:101.699385px;}
.x71_c00372{left:103.441785px;}
.x3e_c00372{left:108.332385px;}
.x45_c00372{left:109.545135px;}
.x67_c00372{left:110.629185px;}
.x31_c00372{left:120.291585px;}
.x6b_c00372{left:121.687485px;}
.x51_c00372{left:130.736085px;}
.x11_c00372{left:132.245835px;}
.x72_c00372{left:133.448685px;}
.x4e_c00372{left:141.838935px;}
.x3_c00372{left:143.408085px;}
.x6e_c00372{left:144.799035px;}
.x32_c00372{left:154.119885px;}
.x12_c00372{left:165.504885px;}
.x5d_c00372{left:166.851285px;}
.x49_c00372{left:168.430335px;}
.x57_c00372{left:175.142535px;}
.x2a_c00372{left:176.206785px;}
.x58_c00372{left:179.142135px;}
.x46_c00372{left:186.522585px;}
.x4_c00372{left:187.695735px;}
.x1e_c00372{left:197.437335px;}
.x63_c00372{left:206.674035px;}
.x64_c00372{left:208.406535px;}
.x13_c00372{left:209.475735px;}
.x52_c00372{left:213.366435px;}
.x1f_c00372{left:217.390785px;}
.x37_c00372{left:220.063785px;}
.x2b_c00372{left:221.439885px;}
.x33_c00372{left:231.245835px;}
.x73_c00372{left:234.681135px;}
.x6c_c00372{left:236.992785px;}
.x5e_c00372{left:241.229985px;}
.x38_c00372{left:242.269485px;}
.x2c_c00372{left:253.357485px;}
.x14_c00372{left:254.971185px;}
.x6f_c00372{left:263.361435px;}
.x5_c00372{left:264.514785px;}
.x3f_c00372{left:275.652285px;}
.x65_c00372{left:285.784935px;}
.x20_c00372{left:286.834335px;}
.x15_c00372{left:297.605535px;}
.x55_c00372{left:299.803335px;}
.x5f_c00372{left:307.936185px;}
.x21_c00372{left:309.153885px;}
.x47_c00372{left:310.614135px;}
.x4a_c00372{left:318.613335px;}
.x6_c00372{left:320.128035px;}
.x59_c00372{left:329.968635px;}
.x39_c00372{left:331.102185px;}
.x56_c00372{left:340.972485px;}
.x16_c00372{left:353.555385px;}
.x34_c00372{left:355.911585px;}
.x5a_c00372{left:363.895935px;}
.x3a_c00372{left:365.400735px;}
.x7_c00372{left:374.879985px;}
.x40_c00372{left:377.746035px;}
.x17_c00372{left:386.740185px;}
.x41_c00372{left:396.902535px;}
.x60_c00372{left:398.149935px;}
.x4f_c00372{left:400.907085px;}
.x8_c00372{left:408.589485px;}
.x53_c00372{left:410.341785px;}
.x4c_c00372{left:411.990135px;}
.x4d_c00372{left:414.479985px;}
.x61_c00372{left:418.712235px;}
.x18_c00372{left:419.910135px;}
.x4b_c00372{left:422.474235px;}
.x6d_c00372{left:430.186335px;}
.x62_c00372{left:431.314935px;}
.x9_c00372{left:440.982285px;}
.x2d_c00372{left:442.071285px;}
.x68_c00372{left:451.025835px;}
.x42_c00372{left:452.218785px;}
.x2e_c00372{left:463.846335px;}
.x54_c00372{left:466.227285px;}
.x35_c00372{left:474.370035px;}
.x22_c00372{left:475.562985px;}
.x19_c00372{left:485.918385px;}
.x43_c00372{left:496.055985px;}
.x23_c00372{left:497.342985px;}
.x66_c00372{left:507.139035px;}
.xa_c00372{left:508.638885px;}
.x24_c00372{left:518.830935px;}
.x69_c00372{left:529.206135px;}
.x48_c00372{left:530.433735px;}
.xb_c00372{left:541.155435px;}
.xc_c00372{left:545.140185px;}
.x25_c00372{left:552.218685px;}
.x2f_c00372{left:553.223535px;}
.x3b_c00372{left:562.910685px;}
.x6a_c00372{left:563.969985px;}
.x26_c00372{left:573.389835px;}
.x1a_c00372{left:585.017385px;}
.xd_c00372{left:595.729185px;}
.x50_c00372{left:606.535035px;}
.x5b_c00372{left:608.163585px;}
.x1b_c00372{left:618.801135px;}
.x5c_c00372{left:628.988235px;}
.x3c_c00372{left:640.972185px;}
.xe_c00372{left:651.416685px;}
.x27_c00372{left:652.669035px;}
.x30_c00372{left:662.915535px;}
.x44_c00372{left:665.454885px;}
.x2_c00372{left:674.043135px;}
.x74_c00372{left:683.873835px;}
.xf_c00372{left:685.106385px;}
.x28_c00372{left:696.511185px;}
.x75_c00372{left:701.936385px;}
.x3d_c00372{left:706.510185px;}
.x36_c00372{left:718.241685px;}
.x70_c00372{left:729.319785px;}
.x1c_c00372{left:740.368185px;}
@media print{
.v0_c00372{vertical-align:0.000000pt;}
.lse_c00372{letter-spacing:-2.464000pt;}
.lsa_c00372{letter-spacing:-2.236080pt;}
.ls16_c00372{letter-spacing:-1.207483pt;}
.lsc_c00372{letter-spacing:-0.428630pt;}
.ls12_c00372{letter-spacing:-0.402494pt;}
.ls6_c00372{letter-spacing:-0.104474pt;}
.ls9_c00372{letter-spacing:0.000000pt;}
.ls2_c00372{letter-spacing:0.025555pt;}
.ls1_c00372{letter-spacing:0.106867pt;}
.ls4_c00372{letter-spacing:0.375373pt;}
.ls15_c00372{letter-spacing:1.392758pt;}
.ls10_c00372{letter-spacing:1.408000pt;}
.ls14_c00372{letter-spacing:2.129609pt;}
.ls13_c00372{letter-spacing:2.393609pt;}
.ls5_c00372{letter-spacing:2.568298pt;}
.ls7_c00372{letter-spacing:3.194400pt;}
.ls8_c00372{letter-spacing:3.476000pt;}
.ls0_c00372{letter-spacing:16.939589pt;}
.ls3_c00372{letter-spacing:22.085888pt;}
.ls11_c00372{letter-spacing:35.481600pt;}
.lsb_c00372{letter-spacing:43.084976pt;}
.lsd_c00372{letter-spacing:44.352176pt;}
.lsf_c00372{letter-spacing:45.619376pt;}
.ws6_c00372{word-spacing:-17.364758pt;}
.ws2_c00372{word-spacing:-15.997555pt;}
.ws1_c00372{word-spacing:-15.972000pt;}
.ws0_c00372{word-spacing:-3.194400pt;}
.ws3_c00372{word-spacing:-2.555520pt;}
.ws7_c00372{word-spacing:0.000000pt;}
.ws4_c00372{word-spacing:2.747184pt;}
.ws5_c00372{word-spacing:3.961056pt;}
._1f_c00372{margin-left:-12.266496pt;}
._9_c00372{margin-left:-11.244288pt;}
._1d_c00372{margin-left:-9.519312pt;}
._1e_c00372{margin-left:-8.560992pt;}
._17_c00372{margin-left:-6.315302pt;}
._e_c00372{margin-left:-4.217664pt;}
._c_c00372{margin-left:-2.975104pt;}
._18_c00372{width:0.958320pt;}
._15_c00372{width:2.172192pt;}
._10_c00372{width:4.459382pt;}
._1b_c00372{width:6.772128pt;}
._7_c00372{width:8.049888pt;}
._0_c00372{width:9.008208pt;}
._14_c00372{width:10.079872pt;}
._3_c00372{width:11.052624pt;}
._21_c00372{width:12.458160pt;}
._1_c00372{width:13.927584pt;}
._11_c00372{width:18.719184pt;}
._6_c00372{width:20.124720pt;}
._2_c00372{width:21.658032pt;}
._1c_c00372{width:22.617056pt;}
._22_c00372{width:23.574672pt;}
._f_c00372{width:26.518096pt;}
._20_c00372{width:27.864038pt;}
._8_c00372{width:29.324592pt;}
._a_c00372{width:31.024928pt;}
._4_c00372{width:32.677392pt;}
._12_c00372{width:34.228128pt;}
._5_c00372{width:35.521728pt;}
._16_c00372{width:36.735600pt;}
._19_c00372{width:38.109808pt;}
._1a_c00372{width:39.476800pt;}
._13_c00372{width:42.932736pt;}
._d_c00372{width:251.066675pt;}
._b_c00372{width:624.361162pt;}
.fs6_c00372{font-size:5.104176pt;}
.fs5_c00372{font-size:15.488000pt;}
.fs4_c00372{font-size:17.424000pt;}
.fs15_c00372{font-size:24.640000pt;}
.fsd_c00372{font-size:28.160000pt;}
.fs9_c00372{font-size:29.920000pt;}
.fs14_c00372{font-size:34.848000pt;}
.fsa_c00372{font-size:35.200000pt;}
.fse_c00372{font-size:35.481600pt;}
.fs12_c00372{font-size:42.592176pt;}
.fs3_c00372{font-size:43.084976pt;}
.fs10_c00372{font-size:43.648000pt;}
.fs7_c00372{font-size:44.352176pt;}
.fsc_c00372{font-size:45.056000pt;}
.fsb_c00372{font-size:45.619376pt;}
.fs11_c00372{font-size:47.872176pt;}
.fsf_c00372{font-size:57.376000pt;}
.fs1_c00372{font-size:63.888000pt;}
.fs13_c00372{font-size:68.640000pt;}
.fs2_c00372{font-size:69.520000pt;}
.fs8_c00372{font-size:70.400000pt;}
.fs0_c00372{font-size:74.624176pt;}
.y0_c00372{bottom:0.000000pt;}
.y22_c00372{bottom:19.563320pt;}
.y1_c00372{bottom:68.000000pt;}
.y21_c00372{bottom:104.465720pt;}
.y20_c00372{bottom:131.389320pt;}
.y1f_c00372{bottom:158.321720pt;}
.y1e_c00372{bottom:158.326472pt;}
.y1d_c00372{bottom:188.417720pt;}
.y1c_c00372{bottom:217.246520pt;}
.y1b_c00372{bottom:246.070920pt;}
.y1a_c00372{bottom:275.220920pt;}
.y19_c00372{bottom:333.190920pt;}
.y18_c00372{bottom:362.657720pt;}
.y17_c00372{bottom:391.486520pt;}
.y16_c00372{bottom:420.632120pt;}
.y15_c00372{bottom:448.506120pt;}
.y14_c00372{bottom:477.339320pt;}
.y13_c00372{bottom:505.851320pt;}
.y10_c00372{bottom:534.996920pt;}
.y12_c00372{bottom:535.313720pt;}
.y11_c00372{bottom:544.184120pt;}
.yf_c00372{bottom:577.131320pt;}
.ye_c00372{bottom:579.982520pt;}
.yc_c00372{bottom:592.337280pt;}
.yd_c00372{bottom:592.337720pt;}
.yb_c00372{bottom:621.166520pt;}
.ya_c00372{bottom:649.995320pt;}
.y9_c00372{bottom:678.824120pt;}
.y8_c00372{bottom:707.331720pt;}
.y7_c00372{bottom:735.848120pt;}
.y6_c00372{bottom:762.142520pt;}
.y5_c00372{bottom:764.676920pt;}
.y4_c00372{bottom:794.768520pt;}
.y3_c00372{bottom:823.280520pt;}
.y2_c00372{bottom:959.504520pt;}
.h6_c00372{height:17.100703pt;}
.he_c00372{height:23.630746pt;}
.h13_c00372{height:25.698750pt;}
.hd_c00372{height:27.637500pt;}
.h5_c00372{height:28.694594pt;}
.h9_c00372{height:29.364844pt;}
.h7_c00372{height:29.538549pt;}
.hb_c00372{height:30.382504pt;}
.h12_c00372{height:34.201406pt;}
.ha_c00372{height:36.712500pt;}
.h10_c00372{height:41.801891pt;}
.hf_c00372{height:46.983923pt;}
.hc_c00372{height:46.992000pt;}
.h3_c00372{height:62.702578pt;}
.h11_c00372{height:67.366406pt;}
.h4_c00372{height:68.230078pt;}
.h8_c00372{height:69.093750pt;}
.h2_c00372{height:73.239548pt;}
.h1_c00372{height:986.666667pt;}
.h0_c00372{height:1122.666667pt;}
.w1_c00372{width:689.333333pt;}
.w0_c00372{width:793.333333pt;}
.x0_c00372{left:0.000000pt;}
.x1_c00372{left:52.000000pt;}
.x1d_c00372{left:87.363453pt;}
.x10_c00372{left:89.088253pt;}
.x29_c00372{left:90.399453pt;}
.x71_c00372{left:91.948253pt;}
.x3e_c00372{left:96.295453pt;}
.x45_c00372{left:97.373453pt;}
.x67_c00372{left:98.337053pt;}
.x31_c00372{left:106.925853pt;}
.x6b_c00372{left:108.166653pt;}
.x51_c00372{left:116.209853pt;}
.x11_c00372{left:117.551853pt;}
.x72_c00372{left:118.621053pt;}
.x4e_c00372{left:126.079053pt;}
.x3_c00372{left:127.473853pt;}
.x6e_c00372{left:128.710253pt;}
.x32_c00372{left:136.995453pt;}
.x12_c00372{left:147.115453pt;}
.x5d_c00372{left:148.312253pt;}
.x49_c00372{left:149.715853pt;}
.x57_c00372{left:155.682253pt;}
.x2a_c00372{left:156.628253pt;}
.x58_c00372{left:159.237453pt;}
.x46_c00372{left:165.797853pt;}
.x4_c00372{left:166.840653pt;}
.x1e_c00372{left:175.499853pt;}
.x63_c00372{left:183.710253pt;}
.x64_c00372{left:185.250253pt;}
.x13_c00372{left:186.200653pt;}
.x52_c00372{left:189.659053pt;}
.x1f_c00372{left:193.236253pt;}
.x37_c00372{left:195.612253pt;}
.x2b_c00372{left:196.835453pt;}
.x33_c00372{left:205.551853pt;}
.x73_c00372{left:208.605453pt;}
.x6c_c00372{left:210.660253pt;}
.x5e_c00372{left:214.426653pt;}
.x38_c00372{left:215.350653pt;}
.x2c_c00372{left:225.206653pt;}
.x14_c00372{left:226.641053pt;}
.x6f_c00372{left:234.099053pt;}
.x5_c00372{left:235.124253pt;}
.x3f_c00372{left:245.024253pt;}
.x65_c00372{left:254.031053pt;}
.x20_c00372{left:254.963853pt;}
.x15_c00372{left:264.538253pt;}
.x55_c00372{left:266.491853pt;}
.x5f_c00372{left:273.721053pt;}
.x21_c00372{left:274.803453pt;}
.x47_c00372{left:276.101453pt;}
.x4a_c00372{left:283.211853pt;}
.x6_c00372{left:284.558253pt;}
.x59_c00372{left:293.305453pt;}
.x39_c00372{left:294.313053pt;}
.x56_c00372{left:303.086653pt;}
.x16_c00372{left:314.271453pt;}
.x34_c00372{left:316.365853pt;}
.x5a_c00372{left:323.463053pt;}
.x3a_c00372{left:324.800653pt;}
.x7_c00372{left:333.226653pt;}
.x40_c00372{left:335.774253pt;}
.x17_c00372{left:343.769053pt;}
.x41_c00372{left:352.802253pt;}
.x60_c00372{left:353.911053pt;}
.x4f_c00372{left:356.361853pt;}
.x8_c00372{left:363.190653pt;}
.x53_c00372{left:364.748253pt;}
.x4c_c00372{left:366.213453pt;}
.x4d_c00372{left:368.426653pt;}
.x61_c00372{left:372.188653pt;}
.x18_c00372{left:373.253453pt;}
.x4b_c00372{left:375.532653pt;}
.x6d_c00372{left:382.387853pt;}
.x62_c00372{left:383.391053pt;}
.x9_c00372{left:391.984253pt;}
.x2d_c00372{left:392.952253pt;}
.x68_c00372{left:400.911853pt;}
.x42_c00372{left:401.972253pt;}
.x2e_c00372{left:412.307853pt;}
.x54_c00372{left:414.424253pt;}
.x35_c00372{left:421.662253pt;}
.x22_c00372{left:422.722653pt;}
.x19_c00372{left:431.927453pt;}
.x43_c00372{left:440.938653pt;}
.x23_c00372{left:442.082653pt;}
.x66_c00372{left:450.790253pt;}
.xa_c00372{left:452.123453pt;}
.x24_c00372{left:461.183053pt;}
.x69_c00372{left:470.405453pt;}
.x48_c00372{left:471.496653pt;}
.xb_c00372{left:481.027053pt;}
.xc_c00372{left:484.569053pt;}
.x25_c00372{left:490.861053pt;}
.x2f_c00372{left:491.754253pt;}
.x3b_c00372{left:500.365053pt;}
.x6a_c00372{left:501.306653pt;}
.x26_c00372{left:509.679853pt;}
.x1a_c00372{left:520.015453pt;}
.xd_c00372{left:529.537053pt;}
.x50_c00372{left:539.142253pt;}
.x5b_c00372{left:540.589853pt;}
.x1b_c00372{left:550.045453pt;}
.x5c_c00372{left:559.100653pt;}
.x3c_c00372{left:569.753053pt;}
.xe_c00372{left:579.037053pt;}
.x27_c00372{left:580.150253pt;}
.x30_c00372{left:589.258253pt;}
.x44_c00372{left:591.515453pt;}
.x2_c00372{left:599.149453pt;}
.x74_c00372{left:607.887853pt;}
.xf_c00372{left:608.983453pt;}
.x28_c00372{left:619.121053pt;}
.x75_c00372{left:623.943453pt;}
.x3d_c00372{left:628.009053pt;}
.x36_c00372{left:638.437053pt;}
.x70_c00372{left:648.284253pt;}
.x1c_c00372{left:658.105053pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_704ee2a865eda9f2a4bb0ab5.woff2')format("woff");}.ff1_c00373{font-family:ff1_c00373;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00373;src:url('chunks/assets/font_4e1dcf558b3ff698dde3e5d1.woff2')format("woff");}.ff2_c00373{font-family:ff2_c00373;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00373;src:url('chunks/assets/font_c58c2e811cffadb5ceb16920.woff2')format("woff");}.ff3_c00373{font-family:ff3_c00373;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00373;src:url('chunks/assets/font_e7c60eff35743e2725c894ee.woff2')format("woff");}.ff4_c00373{font-family:ff4_c00373;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m7c_c00373{transform:matrix(0.014707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.014707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.014707,0.000000,0.000000,0.250000,0,0);}
.mf_c00373{transform:matrix(0.022060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.022060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.022060,0.000000,0.000000,0.250000,0,0);}
.mb2_c00373{transform:matrix(0.032896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032896,0.000000,0.000000,0.250000,0,0);}
.m73_c00373{transform:matrix(0.036766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036766,0.000000,0.000000,0.250000,0,0);}
.m74_c00373{transform:matrix(0.038604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.038604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.038604,0.000000,0.000000,0.250000,0,0);}
.m1a_c00373{transform:matrix(0.051471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.051471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.051471,0.000000,0.000000,0.250000,0,0);}
.m77_c00373{transform:matrix(0.066177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066177,0.000000,0.000000,0.250000,0,0);}
.m9d_c00373{transform:matrix(0.070123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070123,0.000000,0.000000,0.250000,0,0);}
.m78_c00373{transform:matrix(0.088235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088235,0.000000,0.000000,0.250000,0,0);}
.m89_c00373{transform:matrix(0.092726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092726,0.000000,0.000000,0.250000,0,0);}
.m79_c00373{transform:matrix(0.095589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095589,0.000000,0.000000,0.250000,0,0);}
.mf8_c00373{transform:matrix(0.100720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100720,0.000000,0.000000,0.250000,0,0);}
.mfc_c00373{transform:matrix(0.101115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101115,0.000000,0.000000,0.250000,0,0);}
.m10_c00373{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);}
.m5b_c00373{transform:matrix(0.111587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111587,0.000000,0.000000,0.250000,0,0);}
.m52_c00373{transform:matrix(0.116009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116009,0.000000,0.000000,0.250000,0,0);}
.mf0_c00373{transform:matrix(0.117077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117077,0.000000,0.000000,0.250000,0,0);}
.m19_c00373{transform:matrix(0.117648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117648,0.000000,0.000000,0.250000,0,0);}
.m8a_c00373{transform:matrix(0.121194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121194,0.000000,0.000000,0.250000,0,0);}
.mb1_c00373{transform:matrix(0.121711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121711,0.000000,0.000000,0.250000,0,0);}
.m101_c00373{transform:matrix(0.130887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130887,0.000000,0.000000,0.250000,0,0);}
.m12_c00373{transform:matrix(0.136030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136030,0.000000,0.000000,0.250000,0,0);}
.m7d_c00373{transform:matrix(0.139705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139705,0.000000,0.000000,0.250000,0,0);}
.mfa_c00373{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00373{transform:matrix(0.143383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143383,0.000000,0.000000,0.250000,0,0);}
.ma4_c00373{transform:matrix(0.148926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148926,0.000000,0.000000,0.250000,0,0);}
.m25_c00373{transform:matrix(0.151534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151534,0.000000,0.000000,0.250000,0,0);}
.m2f_c00373{transform:matrix(0.151636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151636,0.000000,0.000000,0.250000,0,0);}
.m56_c00373{transform:matrix(0.152393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152393,0.000000,0.000000,0.250000,0,0);}
.m9c_c00373{transform:matrix(0.152439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152439,0.000000,0.000000,0.250000,0,0);}
.m63_c00373{transform:matrix(0.153659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153659,0.000000,0.000000,0.250000,0,0);}
.m2d_c00373{transform:matrix(0.155704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155704,0.000000,0.000000,0.250000,0,0);}
.m1b_c00373{transform:matrix(0.161764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161764,0.000000,0.000000,0.250000,0,0);}
.m51_c00373{transform:matrix(0.168248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168248,0.000000,0.000000,0.250000,0,0);}
.m18_c00373{transform:matrix(0.169118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169118,0.000000,0.000000,0.250000,0,0);}
.m84_c00373{transform:matrix(0.169705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169705,0.000000,0.000000,0.250000,0,0);}
.mad_c00373{transform:matrix(0.174577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174577,0.000000,0.000000,0.250000,0,0);}
.ma2_c00373{transform:matrix(0.174779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174779,0.000000,0.000000,0.250000,0,0);}
.mef_c00373{transform:matrix(0.176009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176009,0.000000,0.000000,0.250000,0,0);}
.mf1_c00373{transform:matrix(0.176059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176059,0.000000,0.000000,0.250000,0,0);}
.ma5_c00373{transform:matrix(0.177203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177203,0.000000,0.000000,0.250000,0,0);}
.m3b_c00373{transform:matrix(0.177696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177696,0.000000,0.000000,0.250000,0,0);}
.m1e_c00373{transform:matrix(0.179818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179818,0.000000,0.000000,0.250000,0,0);}
.m13_c00373{transform:matrix(0.186274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186274,0.000000,0.000000,0.250000,0,0);}
.m85_c00373{transform:matrix(0.188170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188170,0.000000,0.000000,0.250000,0,0);}
.m1f_c00373{transform:matrix(0.189656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189656,0.000000,0.000000,0.250000,0,0);}
.m92_c00373{transform:matrix(0.190026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190026,0.000000,0.000000,0.250000,0,0);}
.m75_c00373{transform:matrix(0.192647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192647,0.000000,0.000000,0.250000,0,0);}
.m82_c00373{transform:matrix(0.193239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193239,0.000000,0.000000,0.250000,0,0);}
.mb3_c00373{transform:matrix(0.194079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194079,0.000000,0.000000,0.250000,0,0);}
.me2_c00373{transform:matrix(0.195022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195022,0.000000,0.000000,0.250000,0,0);}
.m34_c00373{transform:matrix(0.196362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196362,0.000000,0.000000,0.250000,0,0);}
.m1c_c00373{transform:matrix(0.198530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198530,0.000000,0.000000,0.250000,0,0);}
.m94_c00373{transform:matrix(0.207064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207064,0.000000,0.000000,0.250000,0,0);}
.mee_c00373{transform:matrix(0.207668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207668,0.000000,0.000000,0.250000,0,0);}
.me_c00373{transform:matrix(0.208332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208332,0.000000,0.000000,0.250000,0,0);}
.m6b_c00373{transform:matrix(0.209839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209839,0.000000,0.000000,0.250000,0,0);}
.mf9_c00373{transform:matrix(0.214006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214006,0.000000,0.000000,0.250000,0,0);}
.m47_c00373{transform:matrix(0.214018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214018,0.000000,0.000000,0.250000,0,0);}
.m7a_c00373{transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);}
.ma_c00373{transform:matrix(0.218349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218349,0.000000,0.000000,0.250000,0,0);}
.m7e_c00373{transform:matrix(0.218749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218749,0.000000,0.000000,0.250000,0,0);}
.mb4_c00373{transform:matrix(0.221311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221311,0.000000,0.000000,0.250000,0,0);}
.m7f_c00373{transform:matrix(0.222432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222432,0.000000,0.000000,0.250000,0,0);}
.m16_c00373{transform:matrix(0.223691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223691,0.000000,0.000000,0.250000,0,0);}
.m109_c00373{transform:matrix(0.231149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231149,0.000000,0.000000,0.250000,0,0);}
.m104_c00373{transform:matrix(0.231580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231580,0.000000,0.000000,0.250000,0,0);}
.mc8_c00373{transform:matrix(0.232274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232274,0.000000,0.000000,0.250000,0,0);}
.m88_c00373{transform:matrix(0.233418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233418,0.000000,0.000000,0.250000,0,0);}
.m8c_c00373{transform:matrix(0.239706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239706,0.000000,0.000000,0.250000,0,0);}
.m59_c00373{transform:matrix(0.244490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244490,0.000000,0.000000,0.250000,0,0);}
.mc7_c00373{transform:matrix(0.245667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245667,0.000000,0.000000,0.250000,0,0);}
.m5a_c00373{transform:matrix(0.249383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249383,0.000000,0.000000,0.250000,0,0);}
.m0_c00373{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m20_c00373{transform:matrix(0.250477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250477,0.000000,0.000000,0.250000,0,0);}
.m2b_c00373{transform:matrix(0.253841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253841,0.000000,0.000000,0.250000,0,0);}
.md_c00373{transform:matrix(0.254023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254023,0.000000,0.000000,0.250000,0,0);}
.m1_c00373{transform:matrix(0.254101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254101,0.000000,0.000000,0.250000,0,0);}
.m8_c00373{transform:matrix(0.257594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257594,0.000000,0.000000,0.250000,0,0);}
.mf2_c00373{transform:matrix(0.259382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259382,0.000000,0.000000,0.250000,0,0);}
.mfb_c00373{transform:matrix(0.259395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259395,0.000000,0.000000,0.250000,0,0);}
.m69_c00373{transform:matrix(0.260321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260321,0.000000,0.000000,0.250000,0,0);}
.m5f_c00373{transform:matrix(0.263324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263324,0.000000,0.000000,0.250000,0,0);}
.mc_c00373{transform:matrix(0.263954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263954,0.000000,0.000000,0.250000,0,0);}
.m72_c00373{transform:matrix(0.268074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268074,0.000000,0.000000,0.250000,0,0);}
.m6f_c00373{transform:matrix(0.269225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269225,0.000000,0.000000,0.250000,0,0);}
.mf7_c00373{transform:matrix(0.270647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270647,0.000000,0.000000,0.250000,0,0);}
.m4a_c00373{transform:matrix(0.273806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273806,0.000000,0.000000,0.250000,0,0);}
.md4_c00373{transform:matrix(0.273891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273891,0.000000,0.000000,0.250000,0,0);}
.m3e_c00373{transform:matrix(0.277447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277447,0.000000,0.000000,0.250000,0,0);}
.m106_c00373{transform:matrix(0.278825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278825,0.000000,0.000000,0.250000,0,0);}
.m8d_c00373{transform:matrix(0.278972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278972,0.000000,0.000000,0.250000,0,0);}
.m57_c00373{transform:matrix(0.279328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279328,0.000000,0.000000,0.250000,0,0);}
.mb5_c00373{transform:matrix(0.281133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281133,0.000000,0.000000,0.250000,0,0);}
.m4_c00373{transform:matrix(0.281429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281429,0.000000,0.000000,0.250000,0,0);}
.mb9_c00373{transform:matrix(0.282100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282100,0.000000,0.000000,0.250000,0,0);}
.mae_c00373{transform:matrix(0.282177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282177,0.000000,0.000000,0.250000,0,0);}
.mf6_c00373{transform:matrix(0.282557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282557,0.000000,0.000000,0.250000,0,0);}
.m55_c00373{transform:matrix(0.283236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283236,0.000000,0.000000,0.250000,0,0);}
.mdb_c00373{transform:matrix(0.283702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283702,0.000000,0.000000,0.250000,0,0);}
.m10d_c00373{transform:matrix(0.284101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284101,0.000000,0.000000,0.250000,0,0);}
.mcb_c00373{transform:matrix(0.284925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284925,0.000000,0.000000,0.250000,0,0);}
.m24_c00373{transform:matrix(0.285039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285039,0.000000,0.000000,0.250000,0,0);}
.m45_c00373{transform:matrix(0.285610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285610,0.000000,0.000000,0.250000,0,0);}
.m80_c00373{transform:matrix(0.286142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286142,0.000000,0.000000,0.250000,0,0);}
.m33_c00373{transform:matrix(0.286742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286742,0.000000,0.000000,0.250000,0,0);}
.m91_c00373{transform:matrix(0.287475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287475,0.000000,0.000000,0.250000,0,0);}
.mcf_c00373{transform:matrix(0.287779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287779,0.000000,0.000000,0.250000,0,0);}
.m95_c00373{transform:matrix(0.288660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288660,0.000000,0.000000,0.250000,0,0);}
.m22_c00373{transform:matrix(0.289304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289304,0.000000,0.000000,0.250000,0,0);}
.mb0_c00373{transform:matrix(0.290434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290434,0.000000,0.000000,0.250000,0,0);}
.m40_c00373{transform:matrix(0.290528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290528,0.000000,0.000000,0.250000,0,0);}
.mc3_c00373{transform:matrix(0.290957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290957,0.000000,0.000000,0.250000,0,0);}
.m5d_c00373{transform:matrix(0.291133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291133,0.000000,0.000000,0.250000,0,0);}
.m71_c00373{transform:matrix(0.291150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291150,0.000000,0.000000,0.250000,0,0);}
.m14_c00373{transform:matrix(0.291252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291252,0.000000,0.000000,0.250000,0,0);}
.m3d_c00373{transform:matrix(0.291773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291773,0.000000,0.000000,0.250000,0,0);}
.me7_c00373{transform:matrix(0.291862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291862,0.000000,0.000000,0.250000,0,0);}
.m10b_c00373{transform:matrix(0.291941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291941,0.000000,0.000000,0.250000,0,0);}
.m30_c00373{transform:matrix(0.291973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291973,0.000000,0.000000,0.250000,0,0);}
.me8_c00373{transform:matrix(0.293830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293830,0.000000,0.000000,0.250000,0,0);}
.m17_c00373{transform:matrix(0.294470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294470,0.000000,0.000000,0.250000,0,0);}
.mf5_c00373{transform:matrix(0.294904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294904,0.000000,0.000000,0.250000,0,0);}
.m64_c00373{transform:matrix(0.295567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295567,0.000000,0.000000,0.250000,0,0);}
.m37_c00373{transform:matrix(0.296010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296010,0.000000,0.000000,0.250000,0,0);}
.m105_c00373{transform:matrix(0.296362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296362,0.000000,0.000000,0.250000,0,0);}
.m103_c00373{transform:matrix(0.296364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296364,0.000000,0.000000,0.250000,0,0);}
.md3_c00373{transform:matrix(0.297137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297137,0.000000,0.000000,0.250000,0,0);}
.m2_c00373{transform:matrix(0.297391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297391,0.000000,0.000000,0.250000,0,0);}
.m44_c00373{transform:matrix(0.298843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298843,0.000000,0.000000,0.250000,0,0);}
.mc0_c00373{transform:matrix(0.298920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298920,0.000000,0.000000,0.250000,0,0);}
.mb6_c00373{transform:matrix(0.299339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299339,0.000000,0.000000,0.250000,0,0);}
.m8f_c00373{transform:matrix(0.299451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299451,0.000000,0.000000,0.250000,0,0);}
.m96_c00373{transform:matrix(0.299636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299636,0.000000,0.000000,0.250000,0,0);}
.m98_c00373{transform:matrix(0.299736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299736,0.000000,0.000000,0.250000,0,0);}
.m11_c00373{transform:matrix(0.301470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301470,0.000000,0.000000,0.250000,0,0);}
.m4f_c00373{transform:matrix(0.301473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301473,0.000000,0.000000,0.250000,0,0);}
.m70_c00373{transform:matrix(0.301677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301677,0.000000,0.000000,0.250000,0,0);}
.ma0_c00373{transform:matrix(0.301848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301848,0.000000,0.000000,0.250000,0,0);}
.m6d_c00373{transform:matrix(0.302640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302640,0.000000,0.000000,0.250000,0,0);}
.mab_c00373{transform:matrix(0.302662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302662,0.000000,0.000000,0.250000,0,0);}
.mbe_c00373{transform:matrix(0.303223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303223,0.000000,0.000000,0.250000,0,0);}
.m3f_c00373{transform:matrix(0.304334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304334,0.000000,0.000000,0.250000,0,0);}
.mbb_c00373{transform:matrix(0.304976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304976,0.000000,0.000000,0.250000,0,0);}
.m39_c00373{transform:matrix(0.305458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305458,0.000000,0.000000,0.250000,0,0);}
.m48_c00373{transform:matrix(0.306422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306422,0.000000,0.000000,0.250000,0,0);}
.m6_c00373{transform:matrix(0.306514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306514,0.000000,0.000000,0.250000,0,0);}
.mfe_c00373{transform:matrix(0.306582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306582,0.000000,0.000000,0.250000,0,0);}
.me1_c00373{transform:matrix(0.306640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306640,0.000000,0.000000,0.250000,0,0);}
.md2_c00373{transform:matrix(0.307999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307999,0.000000,0.000000,0.250000,0,0);}
.mc4_c00373{transform:matrix(0.308166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308166,0.000000,0.000000,0.250000,0,0);}
.m5e_c00373{transform:matrix(0.308388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308388,0.000000,0.000000,0.250000,0,0);}
.mc9_c00373{transform:matrix(0.308483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308483,0.000000,0.000000,0.250000,0,0);}
.m76_c00373{transform:matrix(0.309053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309053,0.000000,0.000000,0.250000,0,0);}
.m26_c00373{transform:matrix(0.309390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309390,0.000000,0.000000,0.250000,0,0);}
.m3c_c00373{transform:matrix(0.309897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309897,0.000000,0.000000,0.250000,0,0);}
.m10a_c00373{transform:matrix(0.310245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310245,0.000000,0.000000,0.250000,0,0);}
.m7_c00373{transform:matrix(0.310355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310355,0.000000,0.000000,0.250000,0,0);}
.m21_c00373{transform:matrix(0.311740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311740,0.000000,0.000000,0.250000,0,0);}
.med_c00373{transform:matrix(0.312038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312038,0.000000,0.000000,0.250000,0,0);}
.m35_c00373{transform:matrix(0.313286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313286,0.000000,0.000000,0.250000,0,0);}
.m99_c00373{transform:matrix(0.313572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313572,0.000000,0.000000,0.250000,0,0);}
.ma7_c00373{transform:matrix(0.313968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313968,0.000000,0.000000,0.250000,0,0);}
.m9e_c00373{transform:matrix(0.314063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314063,0.000000,0.000000,0.250000,0,0);}
.m93_c00373{transform:matrix(0.314155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314155,0.000000,0.000000,0.250000,0,0);}
.mea_c00373{transform:matrix(0.314422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314422,0.000000,0.000000,0.250000,0,0);}
.md1_c00373{transform:matrix(0.315812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315812,0.000000,0.000000,0.250000,0,0);}
.m81_c00373{transform:matrix(0.315980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315980,0.000000,0.000000,0.250000,0,0);}
.m107_c00373{transform:matrix(0.316019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316019,0.000000,0.000000,0.250000,0,0);}
.m2c_c00373{transform:matrix(0.316906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316906,0.000000,0.000000,0.250000,0,0);}
.m9f_c00373{transform:matrix(0.317908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317908,0.000000,0.000000,0.250000,0,0);}
.mc6_c00373{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);}
.m38_c00373{transform:matrix(0.318982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318982,0.000000,0.000000,0.250000,0,0);}
.m83_c00373{transform:matrix(0.319679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319679,0.000000,0.000000,0.250000,0,0);}
.m28_c00373{transform:matrix(0.320069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320069,0.000000,0.000000,0.250000,0,0);}
.mc5_c00373{transform:matrix(0.320538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320538,0.000000,0.000000,0.250000,0,0);}
.m10e_c00373{transform:matrix(0.320939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320939,0.000000,0.000000,0.250000,0,0);}
.m62_c00373{transform:matrix(0.322774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322774,0.000000,0.000000,0.250000,0,0);}
.m4d_c00373{transform:matrix(0.323428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323428,0.000000,0.000000,0.250000,0,0);}
.mfd_c00373{transform:matrix(0.324889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324889,0.000000,0.000000,0.250000,0,0);}
.mcd_c00373{transform:matrix(0.326463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326463,0.000000,0.000000,0.250000,0,0);}
.m27_c00373{transform:matrix(0.328644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328644,0.000000,0.000000,0.250000,0,0);}
.md0_c00373{transform:matrix(0.328764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328764,0.000000,0.000000,0.250000,0,0);}
.m3a_c00373{transform:matrix(0.330231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330231,0.000000,0.000000,0.250000,0,0);}
.mb7_c00373{transform:matrix(0.330626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330626,0.000000,0.000000,0.250000,0,0);}
.md8_c00373{transform:matrix(0.331029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331029,0.000000,0.000000,0.250000,0,0);}
.m1d_c00373{transform:matrix(0.331312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331312,0.000000,0.000000,0.250000,0,0);}
.m29_c00373{transform:matrix(0.332242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332242,0.000000,0.000000,0.250000,0,0);}
.m6c_c00373{transform:matrix(0.333402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333402,0.000000,0.000000,0.250000,0,0);}
.m15_c00373{transform:matrix(0.334473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334473,0.000000,0.000000,0.250000,0,0);}
.m97_c00373{transform:matrix(0.334844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334844,0.000000,0.000000,0.250000,0,0);}
.mc1_c00373{transform:matrix(0.335337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335337,0.000000,0.000000,0.250000,0,0);}
.mdf_c00373{transform:matrix(0.335725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335725,0.000000,0.000000,0.250000,0,0);}
.m6e_c00373{transform:matrix(0.336036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336036,0.000000,0.000000,0.250000,0,0);}
.m9a_c00373{transform:matrix(0.336602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336602,0.000000,0.000000,0.250000,0,0);}
.m42_c00373{transform:matrix(0.336703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336703,0.000000,0.000000,0.250000,0,0);}
.m43_c00373{transform:matrix(0.338385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338385,0.000000,0.000000,0.250000,0,0);}
.md9_c00373{transform:matrix(0.339855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339855,0.000000,0.000000,0.250000,0,0);}
.m2e_c00373{transform:matrix(0.340572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340572,0.000000,0.000000,0.250000,0,0);}
.m65_c00373{transform:matrix(0.340629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340629,0.000000,0.000000,0.250000,0,0);}
.m100_c00373{transform:matrix(0.341332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341332,0.000000,0.000000,0.250000,0,0);}
.meb_c00373{transform:matrix(0.341434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341434,0.000000,0.000000,0.250000,0,0);}
.m102_c00373{transform:matrix(0.341654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341654,0.000000,0.000000,0.250000,0,0);}
.m68_c00373{transform:matrix(0.341694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341694,0.000000,0.000000,0.250000,0,0);}
.m108_c00373{transform:matrix(0.342992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342992,0.000000,0.000000,0.250000,0,0);}
.m90_c00373{transform:matrix(0.343673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343673,0.000000,0.000000,0.250000,0,0);}
.mff_c00373{transform:matrix(0.343899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343899,0.000000,0.000000,0.250000,0,0);}
.maf_c00373{transform:matrix(0.345686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345686,0.000000,0.000000,0.250000,0,0);}
.mba_c00373{transform:matrix(0.346559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346559,0.000000,0.000000,0.250000,0,0);}
.m46_c00373{transform:matrix(0.346860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346860,0.000000,0.000000,0.250000,0,0);}
.me3_c00373{transform:matrix(0.348866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348866,0.000000,0.000000,0.250000,0,0);}
.md5_c00373{transform:matrix(0.349360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349360,0.000000,0.000000,0.250000,0,0);}
.md7_c00373{transform:matrix(0.349692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349692,0.000000,0.000000,0.250000,0,0);}
.me0_c00373{transform:matrix(0.350265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350265,0.000000,0.000000,0.250000,0,0);}
.m6a_c00373{transform:matrix(0.350910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350910,0.000000,0.000000,0.250000,0,0);}
.m54_c00373{transform:matrix(0.350922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350922,0.000000,0.000000,0.250000,0,0);}
.m9b_c00373{transform:matrix(0.351111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351111,0.000000,0.000000,0.250000,0,0);}
.m53_c00373{transform:matrix(0.351438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351438,0.000000,0.000000,0.250000,0,0);}
.mac_c00373{transform:matrix(0.351475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351475,0.000000,0.000000,0.250000,0,0);}
.m4b_c00373{transform:matrix(0.352813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352813,0.000000,0.000000,0.250000,0,0);}
.mbf_c00373{transform:matrix(0.353687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353687,0.000000,0.000000,0.250000,0,0);}
.m2a_c00373{transform:matrix(0.354513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354513,0.000000,0.000000,0.250000,0,0);}
.m32_c00373{transform:matrix(0.354986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354986,0.000000,0.000000,0.250000,0,0);}
.m3_c00373{transform:matrix(0.355191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355191,0.000000,0.000000,0.250000,0,0);}
.ma1_c00373{transform:matrix(0.355334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355334,0.000000,0.000000,0.250000,0,0);}
.maa_c00373{transform:matrix(0.356169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356169,0.000000,0.000000,0.250000,0,0);}
.mec_c00373{transform:matrix(0.356910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356910,0.000000,0.000000,0.250000,0,0);}
.ma3_c00373{transform:matrix(0.357447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357447,0.000000,0.000000,0.250000,0,0);}
.md6_c00373{transform:matrix(0.357653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357653,0.000000,0.000000,0.250000,0,0);}
.mdd_c00373{transform:matrix(0.359648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359648,0.000000,0.000000,0.250000,0,0);}
.m10c_c00373{transform:matrix(0.359733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359733,0.000000,0.000000,0.250000,0,0);}
.me5_c00373{transform:matrix(0.360562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360562,0.000000,0.000000,0.250000,0,0);}
.mbd_c00373{transform:matrix(0.360860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360860,0.000000,0.000000,0.250000,0,0);}
.m8b_c00373{transform:matrix(0.361386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361386,0.000000,0.000000,0.250000,0,0);}
.mbc_c00373{transform:matrix(0.361892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361892,0.000000,0.000000,0.250000,0,0);}
.m67_c00373{transform:matrix(0.362821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362821,0.000000,0.000000,0.250000,0,0);}
.m5_c00373{transform:matrix(0.365848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365848,0.000000,0.000000,0.250000,0,0);}
.m86_c00373{transform:matrix(0.366369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366369,0.000000,0.000000,0.250000,0,0);}
.mdc_c00373{transform:matrix(0.366832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366832,0.000000,0.000000,0.250000,0,0);}
.m9_c00373{transform:matrix(0.368419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368419,0.000000,0.000000,0.250000,0,0);}
.m61_c00373{transform:matrix(0.368480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368480,0.000000,0.000000,0.250000,0,0);}
.m36_c00373{transform:matrix(0.368594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368594,0.000000,0.000000,0.250000,0,0);}
.ma6_c00373{transform:matrix(0.370543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370543,0.000000,0.000000,0.250000,0,0);}
.m4e_c00373{transform:matrix(0.372564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372564,0.000000,0.000000,0.250000,0,0);}
.mb8_c00373{transform:matrix(0.373337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373337,0.000000,0.000000,0.250000,0,0);}
.mf3_c00373{transform:matrix(0.373841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373841,0.000000,0.000000,0.250000,0,0);}
.mda_c00373{transform:matrix(0.374543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374543,0.000000,0.000000,0.250000,0,0);}
.mb_c00373{transform:matrix(0.375111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375111,0.000000,0.000000,0.250000,0,0);}
.mca_c00373{transform:matrix(0.378001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378001,0.000000,0.000000,0.250000,0,0);}
.mcc_c00373{transform:matrix(0.378506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378506,0.000000,0.000000,0.250000,0,0);}
.m8e_c00373{transform:matrix(0.379829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379829,0.000000,0.000000,0.250000,0,0);}
.ma9_c00373{transform:matrix(0.381247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381247,0.000000,0.000000,0.250000,0,0);}
.ma8_c00373{transform:matrix(0.384292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384292,0.000000,0.000000,0.250000,0,0);}
.mc2_c00373{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);}
.m66_c00373{transform:matrix(0.386436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386436,0.000000,0.000000,0.250000,0,0);}
.m31_c00373{transform:matrix(0.387394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387394,0.000000,0.000000,0.250000,0,0);}
.mf4_c00373{transform:matrix(0.387453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387453,0.000000,0.000000,0.250000,0,0);}
.mce_c00373{transform:matrix(0.387953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387953,0.000000,0.000000,0.250000,0,0);}
.m23_c00373{transform:matrix(0.388898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388898,0.000000,0.000000,0.250000,0,0);}
.m4c_c00373{transform:matrix(0.392570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392570,0.000000,0.000000,0.250000,0,0);}
.me4_c00373{transform:matrix(0.393064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393064,0.000000,0.000000,0.250000,0,0);}
.m41_c00373{transform:matrix(0.393268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393268,0.000000,0.000000,0.250000,0,0);}
.m87_c00373{transform:matrix(0.397794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397794,0.000000,0.000000,0.250000,0,0);}
.m49_c00373{transform:matrix(0.399536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399536,0.000000,0.000000,0.250000,0,0);}
.m5c_c00373{transform:matrix(0.403943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403943,0.000000,0.000000,0.250000,0,0);}
.m60_c00373{transform:matrix(0.404200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404200,0.000000,0.000000,0.250000,0,0);}
.m50_c00373{transform:matrix(0.407463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407463,0.000000,0.000000,0.250000,0,0);}
.m58_c00373{transform:matrix(0.421820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421820,0.000000,0.000000,0.250000,0,0);}
.me9_c00373{transform:matrix(0.458717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458717,0.000000,0.000000,0.250000,0,0);}
.mde_c00373{transform:matrix(0.467986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467986,0.000000,0.000000,0.250000,0,0);}
.me6_c00373{transform:matrix(0.469700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469700,0.000000,0.000000,0.250000,0,0);}
.v0_c00373{vertical-align:0.000000px;}
.v1_c00373{vertical-align:2.851200px;}
.v2_c00373{vertical-align:14.265108px;}
.ls9_c00373{letter-spacing:-2.480940px;}
.lsd_c00373{letter-spacing:-2.402968px;}
.ls23_c00373{letter-spacing:-2.279977px;}
.ls1a_c00373{letter-spacing:-2.079000px;}
.lsf_c00373{letter-spacing:-1.995840px;}
.ls10_c00373{letter-spacing:-1.857240px;}
.ls15_c00373{letter-spacing:-1.718640px;}
.ls20_c00373{letter-spacing:-1.690920px;}
.ls1e_c00373{letter-spacing:-1.516918px;}
.ls11_c00373{letter-spacing:-1.134144px;}
.ls16_c00373{letter-spacing:-0.602514px;}
.ls24_c00373{letter-spacing:-0.588337px;}
.ls1b_c00373{letter-spacing:-0.155945px;}
.ls6_c00373{letter-spacing:0.000000px;}
.ls3_c00373{letter-spacing:0.992376px;}
.ls17_c00373{letter-spacing:1.268824px;}
.ls2_c00373{letter-spacing:1.297177px;}
.ls1c_c00373{letter-spacing:1.317650px;}
.ls13_c00373{letter-spacing:1.465200px;}
.lsb_c00373{letter-spacing:1.587802px;}
.ls4_c00373{letter-spacing:1.698840px;}
.ls8_c00373{letter-spacing:2.154874px;}
.ls1f_c00373{letter-spacing:2.415600px;}
.ls12_c00373{letter-spacing:2.514600px;}
.ls14_c00373{letter-spacing:2.811600px;}
.ls22_c00373{letter-spacing:2.984216px;}
.ls19_c00373{letter-spacing:3.276900px;}
.ls1d_c00373{letter-spacing:3.286810px;}
.lse_c00373{letter-spacing:3.326400px;}
.ls1_c00373{letter-spacing:3.359902px;}
.ls26_c00373{letter-spacing:3.423697px;}
.ls7_c00373{letter-spacing:3.544200px;}
.lsa_c00373{letter-spacing:3.593700px;}
.ls0_c00373{letter-spacing:15.948900px;}
.ls5_c00373{letter-spacing:27.239256px;}
.ls25_c00373{letter-spacing:35.640000px;}
.lsc_c00373{letter-spacing:48.470598px;}
.ls21_c00373{letter-spacing:54.172998px;}
.ls18_c00373{letter-spacing:58.449798px;}
.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;}
}
.ws5_c00373{word-spacing:-19.018177px;}
.ws8_c00373{word-spacing:-18.713376px;}
.ws0_c00373{word-spacing:-17.721000px;}
.ws9_c00373{word-spacing:-17.565055px;}
.wsf_c00373{word-spacing:-17.132663px;}
.wsa_c00373{word-spacing:-16.204082px;}
.ws2_c00373{word-spacing:-15.318032px;}
.ws1_c00373{word-spacing:-3.614292px;}
.wsb_c00373{word-spacing:-3.402036px;}
.ws4_c00373{word-spacing:-0.779724px;}
.ws10_c00373{word-spacing:0.000000px;}
.wse_c00373{word-spacing:1.488564px;}
.wsc_c00373{word-spacing:2.977128px;}
.ws3_c00373{word-spacing:3.555288px;}
.ws6_c00373{word-spacing:4.607460px;}
.ws7_c00373{word-spacing:6.378768px;}
.wsd_c00373{word-spacing:1624.040748px;}
._16_c00373{margin-left:-17.295696px;}
._1c_c00373{margin-left:-9.213732px;}
._8_c00373{margin-left:-6.946632px;}
._7_c00373{margin-left:-5.749128px;}
._17_c00373{margin-left:-4.394808px;}
._1e_c00373{margin-left:-2.339172px;}
._0_c00373{width:2.977128px;}
._1d_c00373{width:4.386888px;}
._15_c00373{width:5.387184px;}
._20_c00373{width:6.521328px;}
._c_c00373{width:7.939008px;}
._1_c00373{width:9.852876px;}
._a_c00373{width:11.695860px;}
._11_c00373{width:12.830004px;}
._d_c00373{width:15.296767px;}
._2_c00373{width:17.012160px;}
._5_c00373{width:19.067796px;}
._12_c00373{width:21.477852px;}
._10_c00373{width:22.895928px;}
._b_c00373{width:24.384888px;}
._4_c00373{width:25.802568px;}
._14_c00373{width:29.062440px;}
._13_c00373{width:32.491800px;}
._18_c00373{width:34.916904px;}
._19_c00373{width:36.221724px;}
._1b_c00373{width:39.268944px;}
._3_c00373{width:40.757904px;}
._e_c00373{width:43.510896px;}
._1a_c00373{width:45.744336px;}
._1f_c00373{width:48.014604px;}
._9_c00373{width:49.455648px;}
._f_c00373{width:51.107364px;}
._27_c00373{width:53.252100px;}
._6_c00373{width:71.044776px;}
._25_c00373{width:81.625104px;}
._23_c00373{width:155.469996px;}
._21_c00373{width:179.832708px;}
._24_c00373{width:209.512189px;}
._22_c00373{width:283.993776px;}
._26_c00373{width:526.278852px;}
.fc0_c00373{color:transparent;}
.fs17_c00373{font-size:19.404000px;}
.fs2_c00373{font-size:26.928000px;}
.fse_c00373{font-size:29.304000px;}
.fs1b_c00373{font-size:35.640000px;}
.fs6_c00373{font-size:39.600000px;}
.fs3_c00373{font-size:48.312000px;}
.fs5_c00373{font-size:48.470598px;}
.fs10_c00373{font-size:49.104000px;}
.fsd_c00373{font-size:50.292000px;}
.fs1a_c00373{font-size:52.272000px;}
.fsa_c00373{font-size:53.064000px;}
.fs15_c00373{font-size:54.172998px;}
.fsf_c00373{font-size:56.232000px;}
.fs8_c00373{font-size:57.024000px;}
.fs11_c00373{font-size:58.449798px;}
.fs13_c00373{font-size:59.400000px;}
.fs16_c00373{font-size:60.192000px;}
.fs9_c00373{font-size:62.568000px;}
.fsb_c00373{font-size:64.152198px;}
.fs1c_c00373{font-size:64.548000px;}
.fs19_c00373{font-size:64.944000px;}
.fs18_c00373{font-size:65.142198px;}
.fs12_c00373{font-size:65.538000px;}
.fs14_c00373{font-size:65.736198px;}
.fs7_c00373{font-size:66.528000px;}
.fs0_c00373{font-size:70.884000px;}
.fs1_c00373{font-size:71.874000px;}
.fs4_c00373{font-size:72.864000px;}
.fsc_c00373{font-size:74.448000px;}
.y0_c00373{bottom:0.000000px;}
.y1_c00373{bottom:76.500000px;}
.y26_c00373{bottom:147.456585px;}
.y27_c00373{bottom:147.812985px;}
.y25_c00373{bottom:210.182985px;}
.y24_c00373{bottom:243.333135px;}
.y22_c00373{bottom:244.039995px;}
.y23_c00373{bottom:244.040985px;}
.y21_c00373{bottom:275.760585px;}
.y20_c00373{bottom:308.554335px;}
.y1f_c00373{bottom:335.640735px;}
.y1e_c00373{bottom:342.768735px;}
.y1d_c00373{bottom:375.196185px;}
.y1c_c00373{bottom:407.989935px;}
.y1b_c00373{bottom:440.417385px;}
.y1a_c00373{bottom:472.141935px;}
.y19_c00373{bottom:504.574335px;}
.y18_c00373{bottom:537.006735px;}
.y17_c00373{bottom:569.434185px;}
.y16_c00373{bottom:601.866585px;}
.y15_c00373{bottom:634.655385px;}
.y13_c00373{bottom:659.959785px;}
.y11_c00373{bottom:666.731385px;}
.y14_c00373{bottom:667.087785px;}
.y12_c00373{bottom:667.444185px;}
.y10_c00373{bottom:674.220735px;}
.yf_c00373{bottom:733.026735px;}
.ye_c00373{bottom:765.815535px;}
.yc_c00373{bottom:798.243975px;}
.yd_c00373{bottom:798.247935px;}
.yb_c00373{bottom:830.318985px;}
.ya_c00373{bottom:864.533385px;}
.y9_c00373{bottom:880.219935px;}
.y7_c00373{bottom:889.481385px;}
.y3_c00373{bottom:895.896585px;}
.y4_c00373{bottom:896.257935px;}
.y6_c00373{bottom:896.614335px;}
.y8_c00373{bottom:896.970735px;}
.y5_c00373{bottom:901.955385px;}
.y2_c00373{bottom:929.403135px;}
.h19_c00373{height:23.736240px;}
.he_c00373{height:30.563156px;}
.h6_c00373{height:32.281418px;}
.h16_c00373{height:36.079217px;}
.h11_c00373{height:38.927565px;}
.h7_c00373{height:41.301563px;}
.h15_c00373{height:47.415586px;}
.hd_c00373{height:49.358848px;}
.h4_c00373{height:50.387906px;}
.h10_c00373{height:51.213938px;}
.ha_c00373{height:52.079414px;}
.hf_c00373{height:55.188633px;}
.h13_c00373{height:58.297852px;}
.h9_c00373{height:59.474250px;}
.h17_c00373{height:62.778375px;}
.h14_c00373{height:64.516483px;}
.h8_c00373{height:65.293594px;}
.hb_c00373{height:66.908738px;}
.h18_c00373{height:67.941277px;}
.h12_c00373{height:68.354086px;}
.h2_c00373{height:69.568770px;}
.h3_c00373{height:70.540400px;}
.h5_c00373{height:71.512031px;}
.hc_c00373{height:73.082481px;}
.h1a_c00373{height:84.437855px;}
.h1_c00373{height:1110.000000px;}
.h0_c00373{height:1263.000000px;}
.w1_c00373{width:775.500000px;}
.w0_c00373{width:892.500000px;}
.x0_c00373{left:0.000000px;}
.x1_c00373{left:58.500000px;}
.x5b_c00373{left:93.992235px;}
.x2_c00373{left:95.289135px;}
.x68_c00373{left:96.734535px;}
.x3_c00373{left:105.436635px;}
.x2a_c00373{left:106.773135px;}
.x4c_c00373{left:115.757385px;}
.x73_c00373{left:116.885985px;}
.x5e_c00373{left:127.404735px;}
.x2b_c00373{left:128.513535px;}
.x69_c00373{left:130.696485px;}
.x4d_c00373{left:133.211085px;}
.x56_c00373{left:138.423435px;}
.x36_c00373{left:139.725285px;}
.x7d_c00373{left:141.299385px;}
.x4_c00373{left:149.694585px;}
.x91_c00373{left:150.699435px;}
.x15_c00373{left:160.891485px;}
.x88_c00373{left:162.312135px;}
.x50_c00373{left:163.475385px;}
.x6a_c00373{left:167.187885px;}
.x37_c00373{left:171.321135px;}
.x5_c00373{left:172.964535px;}
.x4e_c00373{left:182.136885px;}
.x38_c00373{left:183.978285px;}
.x7e_c00373{left:186.478035px;}
.x2c_c00373{left:190.640985px;}
.x16_c00373{left:194.229735px;}
.x57_c00373{left:203.798085px;}
.x6b_c00373{left:204.867285px;}
.x6_c00373{left:206.065185px;}
.x5c_c00373{left:216.143385px;}
.x74_c00373{left:217.163085px;}
.x5f_c00373{left:219.177735px;}
.x18_c00373{left:226.805685px;}
.x7f_c00373{left:228.498585px;}
.x90_c00373{left:230.295435px;}
.x6c_c00373{left:237.344235px;}
.x7_c00373{left:238.952985px;}
.x8e_c00373{left:247.377885px;}
.x7a_c00373{left:248.749035px;}
.x19_c00373{left:250.337985px;}
.x8_c00373{left:260.836935px;}
.x39_c00373{left:264.980085px;}
.x1a_c00373{left:272.088285px;}
.x4f_c00373{left:273.682185px;}
.x8f_c00373{left:279.740985px;}
.x60_c00373{left:281.537835px;}
.x3a_c00373{left:283.022835px;}
.x17_c00373{left:286.086885px;}
.x87_c00373{left:287.106585px;}
.x80_c00373{left:289.744935px;}
.x43_c00373{left:293.328735px;}
.x2d_c00373{left:296.229435px;}
.x9_c00373{left:305.584935px;}
.x82_c00373{left:307.183785px;}
.x48_c00373{left:314.683035px;}
.x6d_c00373{left:315.732435px;}
.x2e_c00373{left:316.955085px;}
.x61_c00373{left:318.608385px;}
.x62_c00373{left:321.459585px;}
.x51_c00373{left:325.939335px;}
.x3b_c00373{left:327.929235px;}
.x6e_c00373{left:330.107235px;}
.xa_c00373{left:338.339085px;}
.x52_c00373{left:340.967535px;}
.x58_c00373{left:347.838135px;}
.x49_c00373{left:349.179585px;}
.x81_c00373{left:350.709135px;}
.xb_c00373{left:360.059685px;}
.x89_c00373{left:361.222935px;}
.x8b_c00373{left:364.004835px;}
.x1b_c00373{left:371.360535px;}
.x75_c00373{left:372.548535px;}
.x1c_c00373{left:377.057985px;}
.xc_c00373{left:382.374285px;}
.x2f_c00373{left:383.488035px;}
.x1d_c00373{left:393.100935px;}
.x76_c00373{left:394.313685px;}
.x63_c00373{left:396.664935px;}
.x64_c00373{left:399.159735px;}
.x59_c00373{left:405.060135px;}
.x30_c00373{left:415.752135px;}
.x7b_c00373{left:416.900535px;}
.x1e_c00373{left:419.830935px;}
.x65_c00373{left:421.607985px;}
.x3c_c00373{left:425.884785px;}
.xd_c00373{left:427.117335px;}
.x3d_c00373{left:437.606385px;}
.x6f_c00373{left:449.253735px;}
.x1f_c00373{left:459.539835px;}
.x83_c00373{left:460.633785px;}
.xe_c00373{left:470.246685px;}
.x44_c00373{left:471.573285px;}
.x8c_c00373{left:479.681385px;}
.x20_c00373{left:482.042535px;}
.x70_c00373{left:483.047385px;}
.x31_c00373{left:493.170135px;}
.xf_c00373{left:503.550285px;}
.x71_c00373{left:505.208535px;}
.x84_c00373{left:508.005285px;}
.x4a_c00373{left:514.796685px;}
.x3e_c00373{left:516.123285px;}
.x4b_c00373{left:526.869735px;}
.x10_c00373{left:536.893485px;}
.x53_c00373{left:540.021885px;}
.x3f_c00373{left:547.946835px;}
.x85_c00373{left:549.303135px;}
.x21_c00373{left:558.975435px;}
.x77_c00373{left:560.410935px;}
.x29_c00373{left:565.682685px;}
.x5a_c00373{left:570.360435px;}
.x86_c00373{left:571.459335px;}
.x8d_c00373{left:580.201035px;}
.x32_c00373{left:581.393985px;}
.x78_c00373{left:582.473085px;}
.x92_c00373{left:590.893035px;}
.x11_c00373{left:591.942435px;}
.x22_c00373{left:593.165085px;}
.x33_c00373{left:602.263185px;}
.x72_c00373{left:603.624435px;}
.x45_c00373{left:614.341185px;}
.x34_c00373{left:615.568785px;}
.x54_c00373{left:625.255935px;}
.x23_c00373{left:626.899335px;}
.x40_c00373{left:628.458585px;}
.x93_c00373{left:636.314235px;}
.x24_c00373{left:637.591335px;}
.x66_c00373{left:639.729735px;}
.x25_c00373{left:642.575985px;}
.x12_c00373{left:648.020985px;}
.x67_c00373{left:658.574385px;}
.x26_c00373{left:660.039585px;}
.x7c_c00373{left:661.846335px;}
.x55_c00373{left:669.474285px;}
.x79_c00373{left:670.523685px;}
.x41_c00373{left:671.543385px;}
.x5d_c00373{left:680.304885px;}
.x27_c00373{left:681.898785px;}
.x13_c00373{left:691.219635px;}
.x35_c00373{left:692.318535px;}
.x46_c00373{left:702.475935px;}
.x8a_c00373{left:703.683735px;}
.x14_c00373{left:714.355935px;}
.x42_c00373{left:725.404335px;}
.x47_c00373{left:736.452735px;}
.x28_c00373{left:747.501135px;}
@media print{
.v0_c00373{vertical-align:0.000000pt;}
.v1_c00373{vertical-align:2.534400pt;}
.v2_c00373{vertical-align:12.680096pt;}
.ls9_c00373{letter-spacing:-2.205280pt;}
.lsd_c00373{letter-spacing:-2.135971pt;}
.ls23_c00373{letter-spacing:-2.026646pt;}
.ls1a_c00373{letter-spacing:-1.848000pt;}
.lsf_c00373{letter-spacing:-1.774080pt;}
.ls10_c00373{letter-spacing:-1.650880pt;}
.ls15_c00373{letter-spacing:-1.527680pt;}
.ls20_c00373{letter-spacing:-1.503040pt;}
.ls1e_c00373{letter-spacing:-1.348371pt;}
.ls11_c00373{letter-spacing:-1.008128pt;}
.ls16_c00373{letter-spacing:-0.535568pt;}
.ls24_c00373{letter-spacing:-0.522966pt;}
.ls1b_c00373{letter-spacing:-0.138618pt;}
.ls6_c00373{letter-spacing:0.000000pt;}
.ls3_c00373{letter-spacing:0.882112pt;}
.ls17_c00373{letter-spacing:1.127843pt;}
.ls2_c00373{letter-spacing:1.153046pt;}
.ls1c_c00373{letter-spacing:1.171245pt;}
.ls13_c00373{letter-spacing:1.302400pt;}
.lsb_c00373{letter-spacing:1.411379pt;}
.ls4_c00373{letter-spacing:1.510080pt;}
.ls8_c00373{letter-spacing:1.915443pt;}
.ls1f_c00373{letter-spacing:2.147200pt;}
.ls12_c00373{letter-spacing:2.235200pt;}
.ls14_c00373{letter-spacing:2.499200pt;}
.ls22_c00373{letter-spacing:2.652637pt;}
.ls19_c00373{letter-spacing:2.912800pt;}
.ls1d_c00373{letter-spacing:2.921609pt;}
.lse_c00373{letter-spacing:2.956800pt;}
.ls1_c00373{letter-spacing:2.986579pt;}
.ls26_c00373{letter-spacing:3.043286pt;}
.ls7_c00373{letter-spacing:3.150400pt;}
.lsa_c00373{letter-spacing:3.194400pt;}
.ls0_c00373{letter-spacing:14.176800pt;}
.ls5_c00373{letter-spacing:24.212672pt;}
.ls25_c00373{letter-spacing:31.680000pt;}
.lsc_c00373{letter-spacing:43.084976pt;}
.ls21_c00373{letter-spacing:48.153776pt;}
.ls18_c00373{letter-spacing:51.955376pt;}
.ws5_c00373{word-spacing:-16.905046pt;}
.ws8_c00373{word-spacing:-16.634112pt;}
.ws0_c00373{word-spacing:-15.752000pt;}
.ws9_c00373{word-spacing:-15.613382pt;}
.wsf_c00373{word-spacing:-15.229034pt;}
.wsa_c00373{word-spacing:-14.403629pt;}
.ws2_c00373{word-spacing:-13.616029pt;}
.ws1_c00373{word-spacing:-3.212704pt;}
.wsb_c00373{word-spacing:-3.024032pt;}
.ws4_c00373{word-spacing:-0.693088pt;}
.ws10_c00373{word-spacing:0.000000pt;}
.wse_c00373{word-spacing:1.323168pt;}
.wsc_c00373{word-spacing:2.646336pt;}
.ws3_c00373{word-spacing:3.160256pt;}
.ws6_c00373{word-spacing:4.095520pt;}
.ws7_c00373{word-spacing:5.670016pt;}
.wsd_c00373{word-spacing:1443.591776pt;}
._16_c00373{margin-left:-15.373952pt;}
._1c_c00373{margin-left:-8.189984pt;}
._8_c00373{margin-left:-6.174784pt;}
._7_c00373{margin-left:-5.110336pt;}
._17_c00373{margin-left:-3.906496pt;}
._1e_c00373{margin-left:-2.079264pt;}
._0_c00373{width:2.646336pt;}
._1d_c00373{width:3.899456pt;}
._15_c00373{width:4.788608pt;}
._20_c00373{width:5.796736pt;}
._c_c00373{width:7.056896pt;}
._1_c00373{width:8.758112pt;}
._a_c00373{width:10.396320pt;}
._11_c00373{width:11.404448pt;}
._d_c00373{width:13.597126pt;}
._2_c00373{width:15.121920pt;}
._5_c00373{width:16.949152pt;}
._12_c00373{width:19.091424pt;}
._10_c00373{width:20.351936pt;}
._b_c00373{width:21.675456pt;}
._4_c00373{width:22.935616pt;}
._14_c00373{width:25.833280pt;}
._13_c00373{width:28.881600pt;}
._18_c00373{width:31.037248pt;}
._19_c00373{width:32.197088pt;}
._1b_c00373{width:34.905728pt;}
._3_c00373{width:36.229248pt;}
._e_c00373{width:38.676352pt;}
._1a_c00373{width:40.661632pt;}
._1f_c00373{width:42.679648pt;}
._9_c00373{width:43.960576pt;}
._f_c00373{width:45.428768pt;}
._27_c00373{width:47.335200pt;}
._6_c00373{width:63.150912pt;}
._25_c00373{width:72.555648pt;}
._23_c00373{width:138.195552pt;}
._21_c00373{width:159.851296pt;}
._24_c00373{width:186.233057pt;}
._22_c00373{width:252.438912pt;}
._26_c00373{width:467.803424pt;}
.fs17_c00373{font-size:17.248000pt;}
.fs2_c00373{font-size:23.936000pt;}
.fse_c00373{font-size:26.048000pt;}
.fs1b_c00373{font-size:31.680000pt;}
.fs6_c00373{font-size:35.200000pt;}
.fs3_c00373{font-size:42.944000pt;}
.fs5_c00373{font-size:43.084976pt;}
.fs10_c00373{font-size:43.648000pt;}
.fsd_c00373{font-size:44.704000pt;}
.fs1a_c00373{font-size:46.464000pt;}
.fsa_c00373{font-size:47.168000pt;}
.fs15_c00373{font-size:48.153776pt;}
.fsf_c00373{font-size:49.984000pt;}
.fs8_c00373{font-size:50.688000pt;}
.fs11_c00373{font-size:51.955376pt;}
.fs13_c00373{font-size:52.800000pt;}
.fs16_c00373{font-size:53.504000pt;}
.fs9_c00373{font-size:55.616000pt;}
.fsb_c00373{font-size:57.024176pt;}
.fs1c_c00373{font-size:57.376000pt;}
.fs19_c00373{font-size:57.728000pt;}
.fs18_c00373{font-size:57.904176pt;}
.fs12_c00373{font-size:58.256000pt;}
.fs14_c00373{font-size:58.432176pt;}
.fs7_c00373{font-size:59.136000pt;}
.fs0_c00373{font-size:63.008000pt;}
.fs1_c00373{font-size:63.888000pt;}
.fs4_c00373{font-size:64.768000pt;}
.fsc_c00373{font-size:66.176000pt;}
.y0_c00373{bottom:0.000000pt;}
.y1_c00373{bottom:68.000000pt;}
.y26_c00373{bottom:131.072520pt;}
.y27_c00373{bottom:131.389320pt;}
.y25_c00373{bottom:186.829320pt;}
.y24_c00373{bottom:216.296120pt;}
.y22_c00373{bottom:216.924440pt;}
.y23_c00373{bottom:216.925320pt;}
.y21_c00373{bottom:245.120520pt;}
.y20_c00373{bottom:274.270520pt;}
.y1f_c00373{bottom:298.347320pt;}
.y1e_c00373{bottom:304.683320pt;}
.y1d_c00373{bottom:333.507720pt;}
.y1c_c00373{bottom:362.657720pt;}
.y1b_c00373{bottom:391.482120pt;}
.y1a_c00373{bottom:419.681720pt;}
.y19_c00373{bottom:448.510520pt;}
.y18_c00373{bottom:477.339320pt;}
.y17_c00373{bottom:506.163720pt;}
.y16_c00373{bottom:534.992520pt;}
.y15_c00373{bottom:564.138120pt;}
.y13_c00373{bottom:586.630920pt;}
.y11_c00373{bottom:592.650120pt;}
.y14_c00373{bottom:592.966920pt;}
.y12_c00373{bottom:593.283720pt;}
.y10_c00373{bottom:599.307320pt;}
.yf_c00373{bottom:651.579320pt;}
.ye_c00373{bottom:680.724920pt;}
.yc_c00373{bottom:709.550200pt;}
.yd_c00373{bottom:709.553720pt;}
.yb_c00373{bottom:738.061320pt;}
.ya_c00373{bottom:768.474120pt;}
.y9_c00373{bottom:782.417720pt;}
.y7_c00373{bottom:790.650120pt;}
.y3_c00373{bottom:796.352520pt;}
.y4_c00373{bottom:796.673720pt;}
.y6_c00373{bottom:796.990520pt;}
.y8_c00373{bottom:797.307320pt;}
.y5_c00373{bottom:801.738120pt;}
.y2_c00373{bottom:826.136120pt;}
.h19_c00373{height:21.098880pt;}
.he_c00373{height:27.167250pt;}
.h6_c00373{height:28.694594pt;}
.h16_c00373{height:32.070415pt;}
.h11_c00373{height:34.602280pt;}
.h7_c00373{height:36.712500pt;}
.h15_c00373{height:42.147188pt;}
.hd_c00373{height:43.874531pt;}
.h4_c00373{height:44.789250pt;}
.h10_c00373{height:45.523500pt;}
.ha_c00373{height:46.292813pt;}
.hf_c00373{height:49.056562pt;}
.h13_c00373{height:51.820313pt;}
.h9_c00373{height:52.866000pt;}
.h17_c00373{height:55.803000pt;}
.h14_c00373{height:57.347985pt;}
.h8_c00373{height:58.038750pt;}
.hb_c00373{height:59.474434pt;}
.h18_c00373{height:60.392246pt;}
.h12_c00373{height:60.759188pt;}
.h2_c00373{height:61.838906pt;}
.h3_c00373{height:62.702578pt;}
.h5_c00373{height:63.566250pt;}
.hc_c00373{height:64.962205pt;}
.h1a_c00373{height:75.055871pt;}
.h1_c00373{height:986.666667pt;}
.h0_c00373{height:1122.666667pt;}
.w1_c00373{width:689.333333pt;}
.w0_c00373{width:793.333333pt;}
.x0_c00373{left:0.000000pt;}
.x1_c00373{left:52.000000pt;}
.x5b_c00373{left:83.548653pt;}
.x2_c00373{left:84.701453pt;}
.x68_c00373{left:85.986253pt;}
.x3_c00373{left:93.721453pt;}
.x2a_c00373{left:94.909453pt;}
.x4c_c00373{left:102.895453pt;}
.x73_c00373{left:103.898653pt;}
.x5e_c00373{left:113.248653pt;}
.x2b_c00373{left:114.234253pt;}
.x69_c00373{left:116.174653pt;}
.x4d_c00373{left:118.409853pt;}
.x56_c00373{left:123.043053pt;}
.x36_c00373{left:124.200253pt;}
.x7d_c00373{left:125.599453pt;}
.x4_c00373{left:133.061853pt;}
.x91_c00373{left:133.955053pt;}
.x15_c00373{left:143.014653pt;}
.x88_c00373{left:144.277453pt;}
.x50_c00373{left:145.311453pt;}
.x6a_c00373{left:148.611453pt;}
.x37_c00373{left:152.285453pt;}
.x5_c00373{left:153.746253pt;}
.x4e_c00373{left:161.899453pt;}
.x38_c00373{left:163.536253pt;}
.x7e_c00373{left:165.758253pt;}
.x2c_c00373{left:169.458653pt;}
.x16_c00373{left:172.648653pt;}
.x57_c00373{left:181.153853pt;}
.x6b_c00373{left:182.104253pt;}
.x6_c00373{left:183.169053pt;}
.x5c_c00373{left:192.127453pt;}
.x74_c00373{left:193.033853pt;}
.x5f_c00373{left:194.824653pt;}
.x18_c00373{left:201.605053pt;}
.x7f_c00373{left:203.109853pt;}
.x90_c00373{left:204.707053pt;}
.x6c_c00373{left:210.972653pt;}
.x7_c00373{left:212.402653pt;}
.x8e_c00373{left:219.891453pt;}
.x7a_c00373{left:221.110253pt;}
.x19_c00373{left:222.522653pt;}
.x8_c00373{left:231.855053pt;}
.x39_c00373{left:235.537853pt;}
.x1a_c00373{left:241.856253pt;}
.x4f_c00373{left:243.273053pt;}
.x8f_c00373{left:248.658653pt;}
.x60_c00373{left:250.255853pt;}
.x3a_c00373{left:251.575853pt;}
.x17_c00373{left:254.299453pt;}
.x87_c00373{left:255.205853pt;}
.x80_c00373{left:257.551053pt;}
.x43_c00373{left:260.736653pt;}
.x2d_c00373{left:263.315053pt;}
.x9_c00373{left:271.631053pt;}
.x82_c00373{left:273.052253pt;}
.x48_c00373{left:279.718253pt;}
.x6d_c00373{left:280.651053pt;}
.x2e_c00373{left:281.737853pt;}
.x61_c00373{left:283.207453pt;}
.x62_c00373{left:285.741853pt;}
.x51_c00373{left:289.723853pt;}
.x3b_c00373{left:291.492653pt;}
.x6e_c00373{left:293.428653pt;}
.xa_c00373{left:300.745853pt;}
.x52_c00373{left:303.082253pt;}
.x58_c00373{left:309.189453pt;}
.x49_c00373{left:310.381853pt;}
.x81_c00373{left:311.741453pt;}
.xb_c00373{left:320.053053pt;}
.x89_c00373{left:321.087053pt;}
.x8b_c00373{left:323.559853pt;}
.x1b_c00373{left:330.098253pt;}
.x75_c00373{left:331.154253pt;}
.x1c_c00373{left:335.162653pt;}
.xc_c00373{left:339.888253pt;}
.x2f_c00373{left:340.878253pt;}
.x1d_c00373{left:349.423053pt;}
.x76_c00373{left:350.501053pt;}
.x63_c00373{left:352.591053pt;}
.x64_c00373{left:354.808653pt;}
.x59_c00373{left:360.053453pt;}
.x30_c00373{left:369.557453pt;}
.x7b_c00373{left:370.578253pt;}
.x1e_c00373{left:373.183053pt;}
.x65_c00373{left:374.762653pt;}
.x3c_c00373{left:378.564253pt;}
.xd_c00373{left:379.659853pt;}
.x3d_c00373{left:388.983453pt;}
.x6f_c00373{left:399.336653pt;}
.x1f_c00373{left:408.479853pt;}
.x83_c00373{left:409.452253pt;}
.xe_c00373{left:417.997053pt;}
.x44_c00373{left:419.176253pt;}
.x8c_c00373{left:426.383453pt;}
.x20_c00373{left:428.482253pt;}
.x70_c00373{left:429.375453pt;}
.x31_c00373{left:438.373453pt;}
.xf_c00373{left:447.600253pt;}
.x71_c00373{left:449.074253pt;}
.x84_c00373{left:451.560253pt;}
.x4a_c00373{left:457.597053pt;}
.x3e_c00373{left:458.776253pt;}
.x4b_c00373{left:468.328653pt;}
.x10_c00373{left:477.238653pt;}
.x53_c00373{left:480.019453pt;}
.x3f_c00373{left:487.063853pt;}
.x85_c00373{left:488.269453pt;}
.x21_c00373{left:496.867053pt;}
.x77_c00373{left:498.143053pt;}
.x29_c00373{left:502.829053pt;}
.x5a_c00373{left:506.987053pt;}
.x86_c00373{left:507.963853pt;}
.x8d_c00373{left:515.734253pt;}
.x32_c00373{left:516.794653pt;}
.x78_c00373{left:517.753853pt;}
.x92_c00373{left:525.238253pt;}
.x11_c00373{left:526.171053pt;}
.x22_c00373{left:527.257853pt;}
.x33_c00373{left:535.345053pt;}
.x72_c00373{left:536.555053pt;}
.x45_c00373{left:546.081053pt;}
.x34_c00373{left:547.172253pt;}
.x54_c00373{left:555.783053pt;}
.x23_c00373{left:557.243853pt;}
.x40_c00373{left:558.629853pt;}
.x93_c00373{left:565.612653pt;}
.x24_c00373{left:566.747853pt;}
.x66_c00373{left:568.648653pt;}
.x25_c00373{left:571.178653pt;}
.x12_c00373{left:576.018653pt;}
.x67_c00373{left:585.399453pt;}
.x26_c00373{left:586.701853pt;}
.x7c_c00373{left:588.307853pt;}
.x55_c00373{left:595.088253pt;}
.x79_c00373{left:596.021053pt;}
.x41_c00373{left:596.927453pt;}
.x5d_c00373{left:604.715453pt;}
.x27_c00373{left:606.132253pt;}
.x13_c00373{left:614.417453pt;}
.x35_c00373{left:615.394253pt;}
.x46_c00373{left:624.423053pt;}
.x8a_c00373{left:625.496653pt;}
.x14_c00373{left:634.983053pt;}
.x42_c00373{left:644.803853pt;}
.x47_c00373{left:654.624653pt;}
.x28_c00373{left:664.445453pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_855e097b17e3113c41eea306.woff2')format("woff");}.ff1_c00374{font-family:ff1_c00374;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00374;src:url('chunks/assets/font_e838977a30e12007c9fb3527.woff2')format("woff");}.ff2_c00374{font-family:ff2_c00374;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00374;src:url('chunks/assets/font_a0f7ae01dc7f02aaec92ba6d.woff2')format("woff");}.ff3_c00374{font-family:ff3_c00374;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00374;src:url('chunks/assets/font_bb8d85ee90c2e60eaf25a23c.woff2')format("woff");}.ff4_c00374{font-family:ff4_c00374;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m49_c00374{transform:matrix(0.052632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.052632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.052632,0.000000,0.000000,0.250000,0,0);}
.m61_c00374{transform:matrix(0.060186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060186,0.000000,0.000000,0.250000,0,0);}
.m48_c00374{transform:matrix(0.065790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065790,0.000000,0.000000,0.250000,0,0);}
.m1b_c00374{transform:matrix(0.066177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066177,0.000000,0.000000,0.250000,0,0);}
.m19_c00374{transform:matrix(0.105861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105861,0.000000,0.000000,0.250000,0,0);}
.m4e_c00374{transform:matrix(0.119725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119725,0.000000,0.000000,0.250000,0,0);}
.m1a_c00374{transform:matrix(0.125001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125001,0.000000,0.000000,0.250000,0,0);}
.m8d_c00374{transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);}
.m47_c00374{transform:matrix(0.129386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129386,0.000000,0.000000,0.250000,0,0);}
.m1_c00374{transform:matrix(0.130292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130292,0.000000,0.000000,0.250000,0,0);}
.m7d_c00374{transform:matrix(0.136281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136281,0.000000,0.000000,0.250000,0,0);}
.m77_c00374{transform:matrix(0.138436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138436,0.000000,0.000000,0.250000,0,0);}
.mbb_c00374{transform:matrix(0.139524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139524,0.000000,0.000000,0.250000,0,0);}
.m4c_c00374{transform:matrix(0.141147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141147,0.000000,0.000000,0.250000,0,0);}
.m4b_c00374{transform:matrix(0.151316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151316,0.000000,0.000000,0.250000,0,0);}
.m90_c00374{transform:matrix(0.154062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154062,0.000000,0.000000,0.250000,0,0);}
.m6d_c00374{transform:matrix(0.158169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158169,0.000000,0.000000,0.250000,0,0);}
.mc_c00374{transform:matrix(0.160998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160998,0.000000,0.000000,0.250000,0,0);}
.m60_c00374{transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);}
.m1e_c00374{transform:matrix(0.184290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184290,0.000000,0.000000,0.250000,0,0);}
.m62_c00374{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.maa_c00374{transform:matrix(0.188231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188231,0.000000,0.000000,0.250000,0,0);}
.m94_c00374{transform:matrix(0.190149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190149,0.000000,0.000000,0.250000,0,0);}
.m46_c00374{transform:matrix(0.190790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190790,0.000000,0.000000,0.250000,0,0);}
.m4a_c00374{transform:matrix(0.194079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194079,0.000000,0.000000,0.250000,0,0);}
.m2e_c00374{transform:matrix(0.194336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194336,0.000000,0.000000,0.250000,0,0);}
.m1d_c00374{transform:matrix(0.198530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198530,0.000000,0.000000,0.250000,0,0);}
.m97_c00374{transform:matrix(0.206140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206140,0.000000,0.000000,0.250000,0,0);}
.m1c_c00374{transform:matrix(0.218749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218749,0.000000,0.000000,0.250000,0,0);}
.ma9_c00374{transform:matrix(0.225127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225127,0.000000,0.000000,0.250000,0,0);}
.m25_c00374{transform:matrix(0.227776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227776,0.000000,0.000000,0.250000,0,0);}
.m17_c00374{transform:matrix(0.248503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248503,0.000000,0.000000,0.250000,0,0);}
.m44_c00374{transform:matrix(0.249710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249710,0.000000,0.000000,0.250000,0,0);}
.m0_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);}
.m85_c00374{transform:matrix(0.251199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251199,0.000000,0.000000,0.250000,0,0);}
.m6c_c00374{transform:matrix(0.259623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259623,0.000000,0.000000,0.250000,0,0);}
.m6e_c00374{transform:matrix(0.262075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262075,0.000000,0.000000,0.250000,0,0);}
.m3b_c00374{transform:matrix(0.265393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265393,0.000000,0.000000,0.250000,0,0);}
.mb7_c00374{transform:matrix(0.266029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266029,0.000000,0.000000,0.250000,0,0);}
.m89_c00374{transform:matrix(0.269584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269584,0.000000,0.000000,0.250000,0,0);}
.m32_c00374{transform:matrix(0.270780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270780,0.000000,0.000000,0.250000,0,0);}
.m53_c00374{transform:matrix(0.270864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270864,0.000000,0.000000,0.250000,0,0);}
.m69_c00374{transform:matrix(0.270932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270932,0.000000,0.000000,0.250000,0,0);}
.m23_c00374{transform:matrix(0.271184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271184,0.000000,0.000000,0.250000,0,0);}
.m43_c00374{transform:matrix(0.272277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272277,0.000000,0.000000,0.250000,0,0);}
.m8e_c00374{transform:matrix(0.274889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274889,0.000000,0.000000,0.250000,0,0);}
.m16_c00374{transform:matrix(0.275889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275889,0.000000,0.000000,0.250000,0,0);}
.mb1_c00374{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);}
.m78_c00374{transform:matrix(0.276771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276771,0.000000,0.000000,0.250000,0,0);}
.ma7_c00374{transform:matrix(0.278982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278982,0.000000,0.000000,0.250000,0,0);}
.m10_c00374{transform:matrix(0.280155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280155,0.000000,0.000000,0.250000,0,0);}
.m7c_c00374{transform:matrix(0.280274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280274,0.000000,0.000000,0.250000,0,0);}
.m59_c00374{transform:matrix(0.281017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281017,0.000000,0.000000,0.250000,0,0);}
.m29_c00374{transform:matrix(0.282226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282226,0.000000,0.000000,0.250000,0,0);}
.m3d_c00374{transform:matrix(0.282339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282339,0.000000,0.000000,0.250000,0,0);}
.m7a_c00374{transform:matrix(0.282980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282980,0.000000,0.000000,0.250000,0,0);}
.m40_c00374{transform:matrix(0.284822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284822,0.000000,0.000000,0.250000,0,0);}
.m6a_c00374{transform:matrix(0.286019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286019,0.000000,0.000000,0.250000,0,0);}
.mab_c00374{transform:matrix(0.286107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286107,0.000000,0.000000,0.250000,0,0);}
.m88_c00374{transform:matrix(0.287013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287013,0.000000,0.000000,0.250000,0,0);}
.m12_c00374{transform:matrix(0.287317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287317,0.000000,0.000000,0.250000,0,0);}
.mf_c00374{transform:matrix(0.288034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288034,0.000000,0.000000,0.250000,0,0);}
.m3e_c00374{transform:matrix(0.288637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288637,0.000000,0.000000,0.250000,0,0);}
.m93_c00374{transform:matrix(0.288658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288658,0.000000,0.000000,0.250000,0,0);}
.m42_c00374{transform:matrix(0.290545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290545,0.000000,0.000000,0.250000,0,0);}
.m67_c00374{transform:matrix(0.290582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290582,0.000000,0.000000,0.250000,0,0);}
.m27_c00374{transform:matrix(0.291216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291216,0.000000,0.000000,0.250000,0,0);}
.ma1_c00374{transform:matrix(0.291218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291218,0.000000,0.000000,0.250000,0,0);}
.ma_c00374{transform:matrix(0.291543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291543,0.000000,0.000000,0.250000,0,0);}
.ma2_c00374{transform:matrix(0.292143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292143,0.000000,0.000000,0.250000,0,0);}
.m57_c00374{transform:matrix(0.293087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293087,0.000000,0.000000,0.250000,0,0);}
.m87_c00374{transform:matrix(0.293774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293774,0.000000,0.000000,0.250000,0,0);}
.mba_c00374{transform:matrix(0.294480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294480,0.000000,0.000000,0.250000,0,0);}
.m3a_c00374{transform:matrix(0.294916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294916,0.000000,0.000000,0.250000,0,0);}
.mb3_c00374{transform:matrix(0.295199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295199,0.000000,0.000000,0.250000,0,0);}
.m31_c00374{transform:matrix(0.295613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295613,0.000000,0.000000,0.250000,0,0);}
.m45_c00374{transform:matrix(0.296025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296025,0.000000,0.000000,0.250000,0,0);}
.m2b_c00374{transform:matrix(0.296324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296324,0.000000,0.000000,0.250000,0,0);}
.m8a_c00374{transform:matrix(0.298209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298209,0.000000,0.000000,0.250000,0,0);}
.m98_c00374{transform:matrix(0.298559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298559,0.000000,0.000000,0.250000,0,0);}
.m3f_c00374{transform:matrix(0.299264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299264,0.000000,0.000000,0.250000,0,0);}
.mbf_c00374{transform:matrix(0.299295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299295,0.000000,0.000000,0.250000,0,0);}
.m2a_c00374{transform:matrix(0.299752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299752,0.000000,0.000000,0.250000,0,0);}
.m52_c00374{transform:matrix(0.299871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299871,0.000000,0.000000,0.250000,0,0);}
.m9c_c00374{transform:matrix(0.300445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300445,0.000000,0.000000,0.250000,0,0);}
.mc1_c00374{transform:matrix(0.302456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302456,0.000000,0.000000,0.250000,0,0);}
.mbd_c00374{transform:matrix(0.303251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303251,0.000000,0.000000,0.250000,0,0);}
.m65_c00374{transform:matrix(0.303790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303790,0.000000,0.000000,0.250000,0,0);}
.m21_c00374{transform:matrix(0.304003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304003,0.000000,0.000000,0.250000,0,0);}
.m5d_c00374{transform:matrix(0.304008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304008,0.000000,0.000000,0.250000,0,0);}
.mac_c00374{transform:matrix(0.304151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304151,0.000000,0.000000,0.250000,0,0);}
.m63_c00374{transform:matrix(0.305087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305087,0.000000,0.000000,0.250000,0,0);}
.mbe_c00374{transform:matrix(0.306237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306237,0.000000,0.000000,0.250000,0,0);}
.m13_c00374{transform:matrix(0.306260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306260,0.000000,0.000000,0.250000,0,0);}
.m74_c00374{transform:matrix(0.306364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306364,0.000000,0.000000,0.250000,0,0);}
.m11_c00374{transform:matrix(0.306414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306414,0.000000,0.000000,0.250000,0,0);}
.m3c_c00374{transform:matrix(0.307293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307293,0.000000,0.000000,0.250000,0,0);}
.m39_c00374{transform:matrix(0.309761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309761,0.000000,0.000000,0.250000,0,0);}
.m24_c00374{transform:matrix(0.310607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310607,0.000000,0.000000,0.250000,0,0);}
.m7_c00374{transform:matrix(0.310841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310841,0.000000,0.000000,0.250000,0,0);}
.m54_c00374{transform:matrix(0.310889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310889,0.000000,0.000000,0.250000,0,0);}
.ma0_c00374{transform:matrix(0.310905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310905,0.000000,0.000000,0.250000,0,0);}
.m83_c00374{transform:matrix(0.310992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310992,0.000000,0.000000,0.250000,0,0);}
.mc2_c00374{transform:matrix(0.311686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311686,0.000000,0.000000,0.250000,0,0);}
.mbc_c00374{transform:matrix(0.312171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312171,0.000000,0.000000,0.250000,0,0);}
.m8c_c00374{transform:matrix(0.312526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312526,0.000000,0.000000,0.250000,0,0);}
.m4_c00374{transform:matrix(0.312628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312628,0.000000,0.000000,0.250000,0,0);}
.m9e_c00374{transform:matrix(0.312728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312728,0.000000,0.000000,0.250000,0,0);}
.m8b_c00374{transform:matrix(0.313723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313723,0.000000,0.000000,0.250000,0,0);}
.mb2_c00374{transform:matrix(0.313747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313747,0.000000,0.000000,0.250000,0,0);}
.m37_c00374{transform:matrix(0.314004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314004,0.000000,0.000000,0.250000,0,0);}
.m51_c00374{transform:matrix(0.314097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314097,0.000000,0.000000,0.250000,0,0);}
.m9b_c00374{transform:matrix(0.316095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316095,0.000000,0.000000,0.250000,0,0);}
.m72_c00374{transform:matrix(0.316871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316871,0.000000,0.000000,0.250000,0,0);}
.mb5_c00374{transform:matrix(0.317188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317188,0.000000,0.000000,0.250000,0,0);}
.m14_c00374{transform:matrix(0.318340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318340,0.000000,0.000000,0.250000,0,0);}
.m2c_c00374{transform:matrix(0.319207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319207,0.000000,0.000000,0.250000,0,0);}
.m7b_c00374{transform:matrix(0.319713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319713,0.000000,0.000000,0.250000,0,0);}
.mae_c00374{transform:matrix(0.319981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319981,0.000000,0.000000,0.250000,0,0);}
.m20_c00374{transform:matrix(0.319993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319993,0.000000,0.000000,0.250000,0,0);}
.m8_c00374{transform:matrix(0.322541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322541,0.000000,0.000000,0.250000,0,0);}
.m2f_c00374{transform:matrix(0.324650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324650,0.000000,0.000000,0.250000,0,0);}
.m4d_c00374{transform:matrix(0.325012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325012,0.000000,0.000000,0.250000,0,0);}
.m38_c00374{transform:matrix(0.325133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325133,0.000000,0.000000,0.250000,0,0);}
.m96_c00374{transform:matrix(0.325195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325195,0.000000,0.000000,0.250000,0,0);}
.m99_c00374{transform:matrix(0.325646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325646,0.000000,0.000000,0.250000,0,0);}
.m84_c00374{transform:matrix(0.325793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325793,0.000000,0.000000,0.250000,0,0);}
.m82_c00374{transform:matrix(0.326415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326415,0.000000,0.000000,0.250000,0,0);}
.mb0_c00374{transform:matrix(0.326755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326755,0.000000,0.000000,0.250000,0,0);}
.m80_c00374{transform:matrix(0.328570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328570,0.000000,0.000000,0.250000,0,0);}
.mb8_c00374{transform:matrix(0.330161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330161,0.000000,0.000000,0.250000,0,0);}
.m9d_c00374{transform:matrix(0.330523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330523,0.000000,0.000000,0.250000,0,0);}
.m81_c00374{transform:matrix(0.330776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330776,0.000000,0.000000,0.250000,0,0);}
.m9a_c00374{transform:matrix(0.330778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330778,0.000000,0.000000,0.250000,0,0);}
.m73_c00374{transform:matrix(0.331217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331217,0.000000,0.000000,0.250000,0,0);}
.m5b_c00374{transform:matrix(0.331978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331978,0.000000,0.000000,0.250000,0,0);}
.m95_c00374{transform:matrix(0.332364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332364,0.000000,0.000000,0.250000,0,0);}
.m76_c00374{transform:matrix(0.332519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332519,0.000000,0.000000,0.250000,0,0);}
.m22_c00374{transform:matrix(0.332600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332600,0.000000,0.000000,0.250000,0,0);}
.m6_c00374{transform:matrix(0.333767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333767,0.000000,0.000000,0.250000,0,0);}
.m1f_c00374{transform:matrix(0.333942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333942,0.000000,0.000000,0.250000,0,0);}
.m56_c00374{transform:matrix(0.333967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333967,0.000000,0.000000,0.250000,0,0);}
.m7f_c00374{transform:matrix(0.337233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337233,0.000000,0.000000,0.250000,0,0);}
.m6b_c00374{transform:matrix(0.337918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337918,0.000000,0.000000,0.250000,0,0);}
.m75_c00374{transform:matrix(0.338695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338695,0.000000,0.000000,0.250000,0,0);}
.m30_c00374{transform:matrix(0.338962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338962,0.000000,0.000000,0.250000,0,0);}
.m6f_c00374{transform:matrix(0.338998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338998,0.000000,0.000000,0.250000,0,0);}
.ma5_c00374{transform:matrix(0.339581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339581,0.000000,0.000000,0.250000,0,0);}
.m92_c00374{transform:matrix(0.340193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340193,0.000000,0.000000,0.250000,0,0);}
.mb_c00374{transform:matrix(0.340282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340282,0.000000,0.000000,0.250000,0,0);}
.mb4_c00374{transform:matrix(0.340545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340545,0.000000,0.000000,0.250000,0,0);}
.m5_c00374{transform:matrix(0.341148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341148,0.000000,0.000000,0.250000,0,0);}
.m2d_c00374{transform:matrix(0.341485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341485,0.000000,0.000000,0.250000,0,0);}
.m66_c00374{transform:matrix(0.342140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342140,0.000000,0.000000,0.250000,0,0);}
.m64_c00374{transform:matrix(0.342811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342811,0.000000,0.000000,0.250000,0,0);}
.m4f_c00374{transform:matrix(0.343255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343255,0.000000,0.000000,0.250000,0,0);}
.m70_c00374{transform:matrix(0.343333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343333,0.000000,0.000000,0.250000,0,0);}
.m68_c00374{transform:matrix(0.343408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343408,0.000000,0.000000,0.250000,0,0);}
.m50_c00374{transform:matrix(0.344806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344806,0.000000,0.000000,0.250000,0,0);}
.m34_c00374{transform:matrix(0.345217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345217,0.000000,0.000000,0.250000,0,0);}
.m26_c00374{transform:matrix(0.345837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345837,0.000000,0.000000,0.250000,0,0);}
.m86_c00374{transform:matrix(0.346681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346681,0.000000,0.000000,0.250000,0,0);}
.m9f_c00374{transform:matrix(0.348607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348607,0.000000,0.000000,0.250000,0,0);}
.m36_c00374{transform:matrix(0.351406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351406,0.000000,0.000000,0.250000,0,0);}
.m5a_c00374{transform:matrix(0.353886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353886,0.000000,0.000000,0.250000,0,0);}
.m5f_c00374{transform:matrix(0.354340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354340,0.000000,0.000000,0.250000,0,0);}
.ma6_c00374{transform:matrix(0.356182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356182,0.000000,0.000000,0.250000,0,0);}
.m7e_c00374{transform:matrix(0.356467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356467,0.000000,0.000000,0.250000,0,0);}
.m3_c00374{transform:matrix(0.356726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356726,0.000000,0.000000,0.250000,0,0);}
.mad_c00374{transform:matrix(0.357304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357304,0.000000,0.000000,0.250000,0,0);}
.m55_c00374{transform:matrix(0.357892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357892,0.000000,0.000000,0.250000,0,0);}
.m8f_c00374{transform:matrix(0.358937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358937,0.000000,0.000000,0.250000,0,0);}
.m28_c00374{transform:matrix(0.364520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364520,0.000000,0.000000,0.250000,0,0);}
.m41_c00374{transform:matrix(0.367842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367842,0.000000,0.000000,0.250000,0,0);}
.m15_c00374{transform:matrix(0.368666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368666,0.000000,0.000000,0.250000,0,0);}
.mb9_c00374{transform:matrix(0.368933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368933,0.000000,0.000000,0.250000,0,0);}
.m71_c00374{transform:matrix(0.369455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369455,0.000000,0.000000,0.250000,0,0);}
.m33_c00374{transform:matrix(0.374322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374322,0.000000,0.000000,0.250000,0,0);}
.m9_c00374{transform:matrix(0.377601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377601,0.000000,0.000000,0.250000,0,0);}
.m58_c00374{transform:matrix(0.379292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379292,0.000000,0.000000,0.250000,0,0);}
.m91_c00374{transform:matrix(0.381521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381521,0.000000,0.000000,0.250000,0,0);}
.m5e_c00374{transform:matrix(0.382109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382109,0.000000,0.000000,0.250000,0,0);}
.m5c_c00374{transform:matrix(0.384590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384590,0.000000,0.000000,0.250000,0,0);}
.mb6_c00374{transform:matrix(0.388697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388697,0.000000,0.000000,0.250000,0,0);}
.maf_c00374{transform:matrix(0.388719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388719,0.000000,0.000000,0.250000,0,0);}
.ma8_c00374{transform:matrix(0.391236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391236,0.000000,0.000000,0.250000,0,0);}
.m2_c00374{transform:matrix(0.399479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399479,0.000000,0.000000,0.250000,0,0);}
.md_c00374{transform:matrix(0.402960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402960,0.000000,0.000000,0.250000,0,0);}
.m18_c00374{transform:matrix(0.407016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407016,0.000000,0.000000,0.250000,0,0);}
.ma4_c00374{transform:matrix(0.414553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414553,0.000000,0.000000,0.250000,0,0);}
.mc0_c00374{transform:matrix(0.417293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417293,0.000000,0.000000,0.250000,0,0);}
.ma3_c00374{transform:matrix(0.418574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418574,0.000000,0.000000,0.250000,0,0);}
.m35_c00374{transform:matrix(0.440103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440103,0.000000,0.000000,0.250000,0,0);}
.me_c00374{transform:matrix(0.462814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462814,0.000000,0.000000,0.250000,0,0);}
.m79_c00374{transform:matrix(0.464508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464508,0.000000,0.000000,0.250000,0,0);}
.v0_c00374{vertical-align:0.000000px;}
.v1_c00374{vertical-align:29.917800px;}
.lsa_c00374{letter-spacing:-2.508667px;}
.lse_c00374{letter-spacing:-2.200459px;}
.ls14_c00374{letter-spacing:-1.677067px;}
.ls19_c00374{letter-spacing:-1.046472px;}
.ls9_c00374{letter-spacing:-0.379884px;}
.ls1e_c00374{letter-spacing:-0.164855px;}
.ls16_c00374{letter-spacing:-0.100347px;}
.ls7_c00374{letter-spacing:0.000000px;}
.ls8_c00374{letter-spacing:0.142719px;}
.ls4_c00374{letter-spacing:0.293872px;}
.ls2_c00374{letter-spacing:0.379884px;}
.ls12_c00374{letter-spacing:0.422890px;}
.ls3_c00374{letter-spacing:1.039305px;}
.ls6_c00374{letter-spacing:1.132484px;}
.lsc_c00374{letter-spacing:1.261501px;}
.ls13_c00374{letter-spacing:2.395810px;}
.ls17_c00374{letter-spacing:2.508667px;}
.ls10_c00374{letter-spacing:2.874216px;}
.ls1d_c00374{letter-spacing:3.118500px;}
.lsd_c00374{letter-spacing:3.227400px;}
.ls11_c00374{letter-spacing:3.326400px;}
.ls1b_c00374{letter-spacing:3.474900px;}
.lsb_c00374{letter-spacing:3.583810px;}
.ls20_c00374{letter-spacing:3.722400px;}
.ls1a_c00374{letter-spacing:3.781810px;}
.ls1f_c00374{letter-spacing:3.880810px;}
.ls0_c00374{letter-spacing:20.484618px;}
.ls1_c00374{letter-spacing:21.431256px;}
.ls1c_c00374{letter-spacing:31.363200px;}
.lsf_c00374{letter-spacing:48.470598px;}
.ls18_c00374{letter-spacing:51.321798px;}
.ls15_c00374{letter-spacing:54.172998px;}
.ls5_c00374{letter-spacing:57.018647px;}
.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;}
}
.ws3_c00374{word-spacing:-18.958354px;}
.ws1_c00374{word-spacing:-18.298933px;}
.ws2_c00374{word-spacing:-17.919050px;}
.ws0_c00374{word-spacing:-17.539166px;}
.ws8_c00374{word-spacing:-0.358485px;}
.ws7_c00374{word-spacing:-0.358287px;}
.ws9_c00374{word-spacing:0.000000px;}
.ws6_c00374{word-spacing:4.085582px;}
.ws4_c00374{word-spacing:5.375783px;}
.ws5_c00374{word-spacing:7.597947px;}
._19_c00374{margin-left:-10.249718px;}
._f_c00374{margin-left:-6.207127px;}
._12_c00374{margin-left:-3.655432px;}
._1_c00374{width:2.300764px;}
._16_c00374{width:3.368871px;}
._0_c00374{width:5.010122px;}
._a_c00374{width:6.200031px;}
._d_c00374{width:7.525881px;}
._3_c00374{width:9.175221px;}
._b_c00374{width:10.608741px;}
._7_c00374{width:12.041667px;}
._4_c00374{width:13.905848px;}
._5_c00374{width:15.820887px;}
._2_c00374{width:19.352619px;}
._11_c00374{width:20.858057px;}
._8_c00374{width:24.154757px;}
._15_c00374{width:25.516601px;}
._c_c00374{width:26.591939px;}
._6_c00374{width:32.182585px;}
._17_c00374{width:34.347319px;}
._13_c00374{width:35.981451px;}
._e_c00374{width:37.772719px;}
._10_c00374{width:39.527389px;}
._9_c00374{width:41.192179px;}
._14_c00374{width:49.490100px;}
._18_c00374{width:606.770208px;}
.fc0_c00374{color:transparent;}
.fs1c_c00374{font-size:22.176000px;}
.fs15_c00374{font-size:23.166000px;}
.fs0_c00374{font-size:27.720000px;}
.fs16_c00374{font-size:31.363200px;}
.fs1a_c00374{font-size:33.264000px;}
.fs7_c00374{font-size:46.530000px;}
.fs9_c00374{font-size:47.916198px;}
.fs4_c00374{font-size:48.470598px;}
.fsb_c00374{font-size:49.500000px;}
.fsd_c00374{font-size:50.292000px;}
.fsc_c00374{font-size:51.321798px;}
.fsa_c00374{font-size:54.172998px;}
.fs14_c00374{font-size:55.044000px;}
.fs18_c00374{font-size:62.370000px;}
.fs3_c00374{font-size:64.548000px;}
.fs6_c00374{font-size:66.528000px;}
.fs5_c00374{font-size:68.706198px;}
.fs12_c00374{font-size:69.498000px;}
.fs8_c00374{font-size:70.884000px;}
.fs2_c00374{font-size:71.676198px;}
.fs17_c00374{font-size:73.260000px;}
.fse_c00374{font-size:73.656198px;}
.fs1b_c00374{font-size:74.448000px;}
.fsf_c00374{font-size:75.636198px;}
.fs19_c00374{font-size:77.616198px;}
.fs1_c00374{font-size:83.952198px;}
.fs13_c00374{font-size:91.476198px;}
.fs11_c00374{font-size:91.872198px;}
.fs10_c00374{font-size:96.624000px;}
.y0_c00374{bottom:0.000000px;}
.y4_c00374{bottom:55.503405px;}
.y1_c00374{bottom:76.500000px;}
.y22_c00374{bottom:76.532985px;}
.y21_c00374{bottom:89.724735px;}
.y3_c00374{bottom:119.661345px;}
.y20_c00374{bottom:144.610335px;}
.y1f_c00374{bottom:175.260735px;}
.y1e_c00374{bottom:240.125535px;}
.y1c_c00374{bottom:265.073535px;}
.y1d_c00374{bottom:272.552985px;}
.y1b_c00374{bottom:272.914335px;}
.y1a_c00374{bottom:304.990335px;}
.y19_c00374{bottom:337.779135px;}
.y18_c00374{bottom:368.785935px;}
.y17_c00374{bottom:379.472985px;}
.y16_c00374{bottom:392.303385px;}
.y15_c00374{bottom:429.368985px;}
.y14_c00374{bottom:435.071385px;}
.y13_c00374{bottom:584.764335px;}
.y12_c00374{bottom:595.807785px;}
.y11_c00374{bottom:611.137935px;}
.y2_c00374{bottom:613.271385px;}
.y10_c00374{bottom:628.240185px;}
.yf_c00374{bottom:641.783385px;}
.ye_c00374{bottom:661.746735px;}
.yd_c00374{bottom:694.174185px;}
.yc_c00374{bottom:726.250185px;}
.yb_c00374{bottom:758.687535px;}
.ya_c00374{bottom:790.402185px;}
.y9_c00374{bottom:822.126735px;}
.y8_c00374{bottom:854.915535px;}
.y7_c00374{bottom:887.704335px;}
.y6_c00374{bottom:920.844585px;}
.y5_c00374{bottom:1072.314585px;}
.h18_c00374{height:20.887891px;}
.h1e_c00374{height:23.128875px;}
.h17_c00374{height:24.161414px;}
.h2_c00374{height:28.911094px;}
.h6_c00374{height:32.281418px;}
.hd_c00374{height:34.180317px;}
.hc_c00374{height:36.079217px;}
.hb_c00374{height:47.027128px;}
.h9_c00374{height:48.529336px;}
.he_c00374{height:49.358848px;}
.h15_c00374{height:54.022676px;}
.h1a_c00374{height:65.049961px;}
.h8_c00374{height:65.293594px;}
.h5_c00374{height:67.321547px;}
.h7_c00374{height:67.431376px;}
.h16_c00374{height:69.386625px;}
.ha_c00374{height:69.568770px;}
.h13_c00374{height:70.040953px;}
.h4_c00374{height:70.346269px;}
.h19_c00374{height:71.900684px;}
.hf_c00374{height:72.289530px;}
.h1d_c00374{height:73.066641px;}
.h1b_c00374{height:76.176054px;}
.h10_c00374{height:76.227106px;}
.h3_c00374{height:82.394491px;}
.h14_c00374{height:89.778886px;}
.h12_c00374{height:95.819832px;}
.h1c_c00374{height:99.486570px;}
.h11_c00374{height:100.775813px;}
.h1_c00374{height:1110.000000px;}
.h0_c00374{height:1263.000000px;}
.w1_c00374{width:775.500000px;}
.w0_c00374{width:892.500000px;}
.x0_c00374{left:0.000000px;}
.x3_c00374{left:55.834665px;}
.x1_c00374{left:58.500000px;}
.x4_c00374{left:68.662095px;}
.x2_c00374{left:84.344685px;}
.x36_c00374{left:95.813835px;}
.x31_c00374{left:97.071135px;}
.x6_c00374{left:98.135385px;}
.x44_c00374{left:100.630185px;}
.x54_c00374{left:108.693735px;}
.x5f_c00374{left:110.257935px;}
.x5e_c00374{left:113.792235px;}
.x24_c00374{left:119.826285px;}
.x3d_c00374{left:130.231185px;}
.x60_c00374{left:131.636985px;}
.x76_c00374{left:135.507885px;}
.x45_c00374{left:141.244935px;}
.x7_c00374{left:142.442835px;}
.x46_c00374{left:150.684585px;}
.x25_c00374{left:152.476485px;}
.x8_c00374{left:153.540735px;}
.x3e_c00374{left:163.371435px;}
.x17_c00374{left:164.455485px;}
.x9_c00374{left:174.796035px;}
.x26_c00374{left:186.522585px;}
.x69_c00374{left:195.506835px;}
.x18_c00374{left:196.778985px;}
.x77_c00374{left:201.422085px;}
.x37_c00374{left:206.540385px;}
.x19_c00374{left:208.069935px;}
.x6a_c00374{left:210.698385px;}
.x27_c00374{left:218.257035px;}
.x32_c00374{left:219.672735px;}
.x3f_c00374{left:229.117335px;}
.xa_c00374{left:230.354835px;}
.x1a_c00374{left:240.819135px;}
.x71_c00374{left:241.932885px;}
.x6f_c00374{left:245.977035px;}
.x28_c00374{left:250.852785px;}
.x4f_c00374{left:252.159585px;}
.x1b_c00374{left:262.609035px;}
.x47_c00374{left:264.084135px;}
.x48_c00374{left:265.861185px;}
.xb_c00374{left:272.984235px;}
.x40_c00374{left:274.449435px;}
.x29_c00374{left:285.284985px;}
.x70_c00374{left:286.661085px;}
.x78_c00374{left:295.437435px;}
.xc_c00374{left:296.689785px;}
.x55_c00374{left:307.703535px;}
.x33_c00374{left:308.965785px;}
.xd_c00374{left:317.969835px;}
.x61_c00374{left:319.162785px;}
.x1c_c00374{left:329.498385px;}
.x72_c00374{left:330.527985px;}
.x49_c00374{left:338.546985px;}
.x66_c00374{left:339.631035px;}
.x2a_c00374{left:340.650735px;}
.x4a_c00374{left:352.263435px;}
.xe_c00374{left:362.970285px;}
.x73_c00374{left:364.356285px;}
.x38_c00374{left:374.706735px;}
.xf_c00374{left:385.017585px;}
.x41_c00374{left:386.126385px;}
.x2b_c00374{left:395.729385px;}
.x56_c00374{left:396.803535px;}
.x1d_c00374{left:400.461585px;}
.x50_c00374{left:406.663935px;}
.x34_c00374{left:408.148935px;}
.x57_c00374{left:415.187835px;}
.x67_c00374{left:416.925285px;}
.x4b_c00374{left:418.355835px;}
.x10_c00374{left:428.335035px;}
.x1e_c00374{left:440.665485px;}
.x65_c00374{left:443.308785px;}
.x11_c00374{left:451.149585px;}
.x5a_c00374{left:453.753285px;}
.x39_c00374{left:459.683385px;}
.x1f_c00374{left:462.034635px;}
.x5b_c00374{left:473.444385px;}
.x35_c00374{left:475.850085px;}
.x6d_c00374{left:482.423685px;}
.x68_c00374{left:484.141335px;}
.x51_c00374{left:487.383585px;}
.x58_c00374{left:493.952235px;}
.x12_c00374{left:495.709485px;}
.x74_c00374{left:506.743035px;}
.x6b_c00374{left:516.405435px;}
.x13_c00374{left:517.959735px;}
.x20_c00374{left:529.374435px;}
.x42_c00374{left:540.071385px;}
.x2c_c00374{left:550.624785px;}
.x2d_c00374{left:557.401335px;}
.x14_c00374{left:561.485085px;}
.x21_c00374{left:572.177085px;}
.x3a_c00374{left:583.948185px;}
.x52_c00374{left:593.031435px;}
.x6c_c00374{left:594.273885px;}
.x15_c00374{left:605.985585px;}
.x3b_c00374{left:615.484635px;}
.x62_c00374{left:617.390385px;}
.x2e_c00374{left:627.829935px;}
.x75_c00374{left:629.156535px;}
.x4c_c00374{left:630.577185px;}
.x53_c00374{left:639.125835px;}
.x22_c00374{left:649.342635px;}
.x3c_c00374{left:650.594985px;}
.x2f_c00374{left:661.608735px;}
.x6e_c00374{left:662.658135px;}
.x4d_c00374{left:667.519035px;}
.x5_c00374{left:672.617535px;}
.x43_c00374{left:682.086885px;}
.x59_c00374{left:683.448135px;}
.x23_c00374{left:694.739085px;}
.x79_c00374{left:701.273085px;}
.x63_c00374{left:704.728185px;}
.x16_c00374{left:705.827085px;}
.x5c_c00374{left:715.915185px;}
.x4e_c00374{left:717.548685px;}
.x5d_c00374{left:738.670335px;}
.x64_c00374{left:740.922585px;}
.x30_c00374{left:749.634585px;}
.x7a_c00374{left:752.619435px;}
@media print{
.v0_c00374{vertical-align:0.000000pt;}
.v1_c00374{vertical-align:26.593600pt;}
.lsa_c00374{letter-spacing:-2.229926pt;}
.lse_c00374{letter-spacing:-1.955964pt;}
.ls14_c00374{letter-spacing:-1.490726pt;}
.ls19_c00374{letter-spacing:-0.930198pt;}
.ls9_c00374{letter-spacing:-0.337675pt;}
.ls1e_c00374{letter-spacing:-0.146538pt;}
.ls16_c00374{letter-spacing:-0.089197pt;}
.ls7_c00374{letter-spacing:0.000000pt;}
.ls8_c00374{letter-spacing:0.126861pt;}
.ls4_c00374{letter-spacing:0.261220pt;}
.ls2_c00374{letter-spacing:0.337675pt;}
.ls12_c00374{letter-spacing:0.375902pt;}
.ls3_c00374{letter-spacing:0.923827pt;}
.ls6_c00374{letter-spacing:1.006652pt;}
.lsc_c00374{letter-spacing:1.121334pt;}
.ls13_c00374{letter-spacing:2.129609pt;}
.ls17_c00374{letter-spacing:2.229926pt;}
.ls10_c00374{letter-spacing:2.554858pt;}
.ls1d_c00374{letter-spacing:2.772000pt;}
.lsd_c00374{letter-spacing:2.868800pt;}
.ls11_c00374{letter-spacing:2.956800pt;}
.ls1b_c00374{letter-spacing:3.088800pt;}
.lsb_c00374{letter-spacing:3.185609pt;}
.ls20_c00374{letter-spacing:3.308800pt;}
.ls1a_c00374{letter-spacing:3.361609pt;}
.ls1f_c00374{letter-spacing:3.449609pt;}
.ls0_c00374{letter-spacing:18.208549pt;}
.ls1_c00374{letter-spacing:19.050005pt;}
.ls1c_c00374{letter-spacing:27.878400pt;}
.lsf_c00374{letter-spacing:43.084976pt;}
.ls18_c00374{letter-spacing:45.619376pt;}
.ls15_c00374{letter-spacing:48.153776pt;}
.ls5_c00374{letter-spacing:50.683241pt;}
.ws3_c00374{word-spacing:-16.851871pt;}
.ws1_c00374{word-spacing:-16.265719pt;}
.ws2_c00374{word-spacing:-15.928044pt;}
.ws0_c00374{word-spacing:-15.590369pt;}
.ws8_c00374{word-spacing:-0.318653pt;}
.ws7_c00374{word-spacing:-0.318477pt;}
.ws9_c00374{word-spacing:0.000000pt;}
.ws6_c00374{word-spacing:3.631628pt;}
.ws4_c00374{word-spacing:4.778473pt;}
.ws5_c00374{word-spacing:6.753731pt;}
._19_c00374{margin-left:-9.110860pt;}
._f_c00374{margin-left:-5.517446pt;}
._12_c00374{margin-left:-3.249273pt;}
._1_c00374{width:2.045123pt;}
._16_c00374{width:2.994552pt;}
._0_c00374{width:4.453442pt;}
._a_c00374{width:5.511139pt;}
._d_c00374{width:6.689672pt;}
._3_c00374{width:8.155752pt;}
._b_c00374{width:9.429992pt;}
._7_c00374{width:10.703704pt;}
._4_c00374{width:12.360754pt;}
._5_c00374{width:14.063011pt;}
._2_c00374{width:17.202328pt;}
._11_c00374{width:18.540495pt;}
._8_c00374{width:21.470895pt;}
._15_c00374{width:22.681423pt;}
._c_c00374{width:23.637279pt;}
._6_c00374{width:28.606742pt;}
._17_c00374{width:30.530950pt;}
._13_c00374{width:31.983512pt;}
._e_c00374{width:33.575750pt;}
._10_c00374{width:35.135457pt;}
._9_c00374{width:36.615270pt;}
._14_c00374{width:43.991200pt;}
._18_c00374{width:539.351296pt;}
.fs1c_c00374{font-size:19.712000pt;}
.fs15_c00374{font-size:20.592000pt;}
.fs0_c00374{font-size:24.640000pt;}
.fs16_c00374{font-size:27.878400pt;}
.fs1a_c00374{font-size:29.568000pt;}
.fs7_c00374{font-size:41.360000pt;}
.fs9_c00374{font-size:42.592176pt;}
.fs4_c00374{font-size:43.084976pt;}
.fsb_c00374{font-size:44.000000pt;}
.fsd_c00374{font-size:44.704000pt;}
.fsc_c00374{font-size:45.619376pt;}
.fsa_c00374{font-size:48.153776pt;}
.fs14_c00374{font-size:48.928000pt;}
.fs18_c00374{font-size:55.440000pt;}
.fs3_c00374{font-size:57.376000pt;}
.fs6_c00374{font-size:59.136000pt;}
.fs5_c00374{font-size:61.072176pt;}
.fs12_c00374{font-size:61.776000pt;}
.fs8_c00374{font-size:63.008000pt;}
.fs2_c00374{font-size:63.712176pt;}
.fs17_c00374{font-size:65.120000pt;}
.fse_c00374{font-size:65.472176pt;}
.fs1b_c00374{font-size:66.176000pt;}
.fsf_c00374{font-size:67.232176pt;}
.fs19_c00374{font-size:68.992176pt;}
.fs1_c00374{font-size:74.624176pt;}
.fs13_c00374{font-size:81.312176pt;}
.fs11_c00374{font-size:81.664176pt;}
.fs10_c00374{font-size:85.888000pt;}
.y0_c00374{bottom:0.000000pt;}
.y4_c00374{bottom:49.336360pt;}
.y1_c00374{bottom:68.000000pt;}
.y22_c00374{bottom:68.029320pt;}
.y21_c00374{bottom:79.755320pt;}
.y3_c00374{bottom:106.365640pt;}
.y20_c00374{bottom:128.542520pt;}
.y1f_c00374{bottom:155.787320pt;}
.y1e_c00374{bottom:213.444920pt;}
.y1c_c00374{bottom:235.620920pt;}
.y1d_c00374{bottom:242.269320pt;}
.y1b_c00374{bottom:242.590520pt;}
.y1a_c00374{bottom:271.102520pt;}
.y19_c00374{bottom:300.248120pt;}
.y18_c00374{bottom:327.809720pt;}
.y17_c00374{bottom:337.309320pt;}
.y16_c00374{bottom:348.714120pt;}
.y15_c00374{bottom:381.661320pt;}
.y14_c00374{bottom:386.730120pt;}
.y13_c00374{bottom:519.790520pt;}
.y12_c00374{bottom:529.606920pt;}
.y11_c00374{bottom:543.233720pt;}
.y2_c00374{bottom:545.130120pt;}
.y10_c00374{bottom:558.435720pt;}
.yf_c00374{bottom:570.474120pt;}
.ye_c00374{bottom:588.219320pt;}
.yd_c00374{bottom:617.043720pt;}
.yc_c00374{bottom:645.555720pt;}
.yb_c00374{bottom:674.388920pt;}
.ya_c00374{bottom:702.579720pt;}
.y9_c00374{bottom:730.779320pt;}
.y8_c00374{bottom:759.924920pt;}
.y7_c00374{bottom:789.070520pt;}
.y6_c00374{bottom:818.528520pt;}
.y5_c00374{bottom:953.168520pt;}
.h18_c00374{height:18.567014pt;}
.h1e_c00374{height:20.559000pt;}
.h17_c00374{height:21.476813pt;}
.h2_c00374{height:25.698750pt;}
.h6_c00374{height:28.694594pt;}
.hd_c00374{height:30.382504pt;}
.hc_c00374{height:32.070415pt;}
.hb_c00374{height:41.801891pt;}
.h9_c00374{height:43.137188pt;}
.he_c00374{height:43.874531pt;}
.h15_c00374{height:48.020156pt;}
.h1a_c00374{height:57.822188pt;}
.h8_c00374{height:58.038750pt;}
.h5_c00374{height:59.841375pt;}
.h7_c00374{height:59.939001pt;}
.h16_c00374{height:61.677000pt;}
.ha_c00374{height:61.838906pt;}
.h13_c00374{height:62.258625pt;}
.h4_c00374{height:62.530016pt;}
.h19_c00374{height:63.911719pt;}
.hf_c00374{height:64.257360pt;}
.h1d_c00374{height:64.948125pt;}
.h1b_c00374{height:67.712048pt;}
.h10_c00374{height:67.757427pt;}
.h3_c00374{height:73.239548pt;}
.h14_c00374{height:79.803454pt;}
.h12_c00374{height:85.173184pt;}
.h1c_c00374{height:88.432506pt;}
.h11_c00374{height:89.578500pt;}
.h1_c00374{height:986.666667pt;}
.h0_c00374{height:1122.666667pt;}
.w1_c00374{width:689.333333pt;}
.w0_c00374{width:793.333333pt;}
.x0_c00374{left:0.000000pt;}
.x3_c00374{left:49.630813pt;}
.x1_c00374{left:52.000000pt;}
.x4_c00374{left:61.032973pt;}
.x2_c00374{left:74.973053pt;}
.x36_c00374{left:85.167853pt;}
.x31_c00374{left:86.285453pt;}
.x6_c00374{left:87.231453pt;}
.x44_c00374{left:89.449053pt;}
.x54_c00374{left:96.616653pt;}
.x5f_c00374{left:98.007053pt;}
.x5e_c00374{left:101.148653pt;}
.x24_c00374{left:106.512253pt;}
.x3d_c00374{left:115.761053pt;}
.x60_c00374{left:117.010653pt;}
.x76_c00374{left:120.451453pt;}
.x45_c00374{left:125.551053pt;}
.x7_c00374{left:126.615853pt;}
.x46_c00374{left:133.941853pt;}
.x25_c00374{left:135.534653pt;}
.x8_c00374{left:136.480653pt;}
.x3e_c00374{left:145.219053pt;}
.x17_c00374{left:146.182653pt;}
.x9_c00374{left:155.374253pt;}
.x26_c00374{left:165.797853pt;}
.x69_c00374{left:173.783853pt;}
.x18_c00374{left:174.914653pt;}
.x77_c00374{left:179.041853pt;}
.x37_c00374{left:183.591453pt;}
.x19_c00374{left:184.951053pt;}
.x6a_c00374{left:187.287453pt;}
.x27_c00374{left:194.006253pt;}
.x32_c00374{left:195.264653pt;}
.x3f_c00374{left:203.659853pt;}
.xa_c00374{left:204.759853pt;}
.x1a_c00374{left:214.061453pt;}
.x71_c00374{left:215.051453pt;}
.x6f_c00374{left:218.646253pt;}
.x28_c00374{left:222.980253pt;}
.x4f_c00374{left:224.141853pt;}
.x1b_c00374{left:233.430253pt;}
.x47_c00374{left:234.741453pt;}
.x48_c00374{left:236.321053pt;}
.xb_c00374{left:242.652653pt;}
.x40_c00374{left:243.955053pt;}
.x29_c00374{left:253.586653pt;}
.x70_c00374{left:254.809853pt;}
.x78_c00374{left:262.611053pt;}
.xc_c00374{left:263.724253pt;}
.x55_c00374{left:273.514253pt;}
.x33_c00374{left:274.636253pt;}
.xd_c00374{left:282.639853pt;}
.x61_c00374{left:283.700253pt;}
.x1c_c00374{left:292.887453pt;}
.x72_c00374{left:293.802653pt;}
.x49_c00374{left:300.930653pt;}
.x66_c00374{left:301.894253pt;}
.x2a_c00374{left:302.800653pt;}
.x4a_c00374{left:313.123053pt;}
.xe_c00374{left:322.640253pt;}
.x73_c00374{left:323.872253pt;}
.x38_c00374{left:333.072653pt;}
.xf_c00374{left:342.237853pt;}
.x41_c00374{left:343.223453pt;}
.x2b_c00374{left:351.759453pt;}
.x56_c00374{left:352.714253pt;}
.x1d_c00374{left:355.965853pt;}
.x50_c00374{left:361.479053pt;}
.x34_c00374{left:362.799053pt;}
.x57_c00374{left:369.055853pt;}
.x67_c00374{left:370.600253pt;}
.x4b_c00374{left:371.871853pt;}
.x10_c00374{left:380.742253pt;}
.x1e_c00374{left:391.702653pt;}
.x65_c00374{left:394.052253pt;}
.x11_c00374{left:401.021853pt;}
.x5a_c00374{left:403.336253pt;}
.x39_c00374{left:408.607453pt;}
.x1f_c00374{left:410.697453pt;}
.x5b_c00374{left:420.839453pt;}
.x35_c00374{left:422.977853pt;}
.x6d_c00374{left:428.821053pt;}
.x68_c00374{left:430.347853pt;}
.x51_c00374{left:433.229853pt;}
.x58_c00374{left:439.068653pt;}
.x12_c00374{left:440.630653pt;}
.x74_c00374{left:450.438253pt;}
.x6b_c00374{left:459.027053pt;}
.x13_c00374{left:460.408653pt;}
.x20_c00374{left:470.555053pt;}
.x42_c00374{left:480.063453pt;}
.x2c_c00374{left:489.444253pt;}
.x2d_c00374{left:495.467853pt;}
.x14_c00374{left:499.097853pt;}
.x21_c00374{left:508.601853pt;}
.x3a_c00374{left:519.065053pt;}
.x52_c00374{left:527.139053pt;}
.x6c_c00374{left:528.243453pt;}
.x15_c00374{left:538.653853pt;}
.x3b_c00374{left:547.097453pt;}
.x62_c00374{left:548.791453pt;}
.x2e_c00374{left:558.071053pt;}
.x75_c00374{left:559.250253pt;}
.x4c_c00374{left:560.513053pt;}
.x53_c00374{left:568.111853pt;}
.x22_c00374{left:577.193453pt;}
.x3c_c00374{left:578.306653pt;}
.x2f_c00374{left:588.096653pt;}
.x6e_c00374{left:589.029453pt;}
.x4d_c00374{left:593.350253pt;}
.x5_c00374{left:597.882253pt;}
.x43_c00374{left:606.299453pt;}
.x59_c00374{left:607.509453pt;}
.x23_c00374{left:617.545853pt;}
.x79_c00374{left:623.353853pt;}
.x63_c00374{left:626.425053pt;}
.x16_c00374{left:627.401853pt;}
.x5c_c00374{left:636.369053pt;}
.x4e_c00374{left:637.821053pt;}
.x5d_c00374{left:656.595853pt;}
.x64_c00374{left:658.597853pt;}
.x30_c00374{left:666.341853pt;}
.x7a_c00374{left:668.995053pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a7bd0afc383970480ec89075.woff2')format("woff");}.ff1_c00375{font-family:ff1_c00375;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00375;src:url('chunks/assets/font_038cabcf4eaa807aee7e3143.woff2')format("woff");}.ff2_c00375{font-family:ff2_c00375;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00375;src:url('chunks/assets/font_f62b99b791e4b2e8c402f514.woff2')format("woff");}.ff3_c00375{font-family:ff3_c00375;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m98_c00375{transform:matrix(0.012821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012821,0.000000,0.000000,0.250000,0,0);}
.m65_c00375{transform:matrix(0.036586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036586,0.000000,0.000000,0.250000,0,0);}
.m97_c00375{transform:matrix(0.083334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083334,0.000000,0.000000,0.250000,0,0);}
.m5b_c00375{transform:matrix(0.085714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085714,0.000000,0.000000,0.250000,0,0);}
.m8e_c00375{transform:matrix(0.088235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088235,0.000000,0.000000,0.250000,0,0);}
.md0_c00375{transform:matrix(0.100917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100917,0.000000,0.000000,0.250000,0,0);}
.m5c_c00375{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);}
.me9_c00375{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);}
.me2_c00375{transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);}
.m66_c00375{transform:matrix(0.143292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143292,0.000000,0.000000,0.250000,0,0);}
.mdf_c00375{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mac_c00375{transform:matrix(0.153522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153522,0.000000,0.000000,0.250000,0,0);}
.m88_c00375{transform:matrix(0.156027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156027,0.000000,0.000000,0.250000,0,0);}
.m5a_c00375{transform:matrix(0.157142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157142,0.000000,0.000000,0.250000,0,0);}
.m59_c00375{transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);}
.me1_c00375{transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);}
.m58_c00375{transform:matrix(0.171429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171429,0.000000,0.000000,0.250000,0,0);}
.m86_c00375{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00375{transform:matrix(0.177162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177162,0.000000,0.000000,0.250000,0,0);}
.me0_c00375{transform:matrix(0.178125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178125,0.000000,0.000000,0.250000,0,0);}
.m72_c00375{transform:matrix(0.178797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178797,0.000000,0.000000,0.250000,0,0);}
.m76_c00375{transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);}
.me3_c00375{transform:matrix(0.182499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182499,0.000000,0.000000,0.250000,0,0);}
.m64_c00375{transform:matrix(0.189025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189025,0.000000,0.000000,0.250000,0,0);}
.mdd_c00375{transform:matrix(0.189537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189537,0.000000,0.000000,0.250000,0,0);}
.m5d_c00375{transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);}
.m77_c00375{transform:matrix(0.203373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203373,0.000000,0.000000,0.250000,0,0);}
.m75_c00375{transform:matrix(0.204861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204861,0.000000,0.000000,0.250000,0,0);}
.mde_c00375{transform:matrix(0.206249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206249,0.000000,0.000000,0.250000,0,0);}
.mad_c00375{transform:matrix(0.207482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207482,0.000000,0.000000,0.250000,0,0);}
.m5e_c00375{transform:matrix(0.210239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210239,0.000000,0.000000,0.250000,0,0);}
.m9f_c00375{transform:matrix(0.212062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212062,0.000000,0.000000,0.250000,0,0);}
.m45_c00375{transform:matrix(0.212789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212789,0.000000,0.000000,0.250000,0,0);}
.mae_c00375{transform:matrix(0.215537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215537,0.000000,0.000000,0.250000,0,0);}
.md6_c00375{transform:matrix(0.215918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215918,0.000000,0.000000,0.250000,0,0);}
.mb5_c00375{transform:matrix(0.217186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217186,0.000000,0.000000,0.250000,0,0);}
.mbc_c00375{transform:matrix(0.218026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218026,0.000000,0.000000,0.250000,0,0);}
.m8d_c00375{transform:matrix(0.218137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218137,0.000000,0.000000,0.250000,0,0);}
.m78_c00375{transform:matrix(0.220832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220832,0.000000,0.000000,0.250000,0,0);}
.m12_c00375{transform:matrix(0.222061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222061,0.000000,0.000000,0.250000,0,0);}
.m8f_c00375{transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);}
.m42_c00375{transform:matrix(0.228009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228009,0.000000,0.000000,0.250000,0,0);}
.m14_c00375{transform:matrix(0.228453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228453,0.000000,0.000000,0.250000,0,0);}
.m9d_c00375{transform:matrix(0.229769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229769,0.000000,0.000000,0.250000,0,0);}
.m7a_c00375{transform:matrix(0.235492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235492,0.000000,0.000000,0.250000,0,0);}
.m4_c00375{transform:matrix(0.236817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236817,0.000000,0.000000,0.250000,0,0);}
.me5_c00375{transform:matrix(0.239408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239408,0.000000,0.000000,0.250000,0,0);}
.mb_c00375{transform:matrix(0.239483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239483,0.000000,0.000000,0.250000,0,0);}
.md9_c00375{transform:matrix(0.247161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247161,0.000000,0.000000,0.250000,0,0);}
.m1_c00375{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00375{transform:matrix(0.252101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252101,0.000000,0.000000,0.250000,0,0);}
.m2f_c00375{transform:matrix(0.256603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256603,0.000000,0.000000,0.250000,0,0);}
.m48_c00375{transform:matrix(0.261105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261105,0.000000,0.000000,0.250000,0,0);}
.mc7_c00375{transform:matrix(0.261525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261525,0.000000,0.000000,0.250000,0,0);}
.mb2_c00375{transform:matrix(0.263927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263927,0.000000,0.000000,0.250000,0,0);}
.mc1_c00375{transform:matrix(0.264923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264923,0.000000,0.000000,0.250000,0,0);}
.m9a_c00375{transform:matrix(0.266286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266286,0.000000,0.000000,0.250000,0,0);}
.ma8_c00375{transform:matrix(0.266365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266365,0.000000,0.000000,0.250000,0,0);}
.mc_c00375{transform:matrix(0.268332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268332,0.000000,0.000000,0.250000,0,0);}
.m37_c00375{transform:matrix(0.268726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268726,0.000000,0.000000,0.250000,0,0);}
.ma2_c00375{transform:matrix(0.269156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269156,0.000000,0.000000,0.250000,0,0);}
.m57_c00375{transform:matrix(0.269948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269948,0.000000,0.000000,0.250000,0,0);}
.mb1_c00375{transform:matrix(0.270003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270003,0.000000,0.000000,0.250000,0,0);}
.m6_c00375{transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);}
.m4a_c00375{transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);}
.m8a_c00375{transform:matrix(0.271363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271363,0.000000,0.000000,0.250000,0,0);}
.ma3_c00375{transform:matrix(0.272708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272708,0.000000,0.000000,0.250000,0,0);}
.m2_c00375{transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);}
.ma9_c00375{transform:matrix(0.273311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273311,0.000000,0.000000,0.250000,0,0);}
.mb7_c00375{transform:matrix(0.273542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273542,0.000000,0.000000,0.250000,0,0);}
.m2d_c00375{transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);}
.m83_c00375{transform:matrix(0.274699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274699,0.000000,0.000000,0.250000,0,0);}
.m50_c00375{transform:matrix(0.274799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274799,0.000000,0.000000,0.250000,0,0);}
.m53_c00375{transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);}
.m92_c00375{transform:matrix(0.276672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276672,0.000000,0.000000,0.250000,0,0);}
.md1_c00375{transform:matrix(0.277139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277139,0.000000,0.000000,0.250000,0,0);}
.m82_c00375{transform:matrix(0.277393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277393,0.000000,0.000000,0.250000,0,0);}
.me7_c00375{transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);}
.m36_c00375{transform:matrix(0.277743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277743,0.000000,0.000000,0.250000,0,0);}
.m90_c00375{transform:matrix(0.278706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278706,0.000000,0.000000,0.250000,0,0);}
.m49_c00375{transform:matrix(0.278798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278798,0.000000,0.000000,0.250000,0,0);}
.ma5_c00375{transform:matrix(0.280270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280270,0.000000,0.000000,0.250000,0,0);}
.m80_c00375{transform:matrix(0.282531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282531,0.000000,0.000000,0.250000,0,0);}
.mba_c00375{transform:matrix(0.282532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282532,0.000000,0.000000,0.250000,0,0);}
.m95_c00375{transform:matrix(0.282883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282883,0.000000,0.000000,0.250000,0,0);}
.mc0_c00375{transform:matrix(0.283264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283264,0.000000,0.000000,0.250000,0,0);}
.m1d_c00375{transform:matrix(0.283285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283285,0.000000,0.000000,0.250000,0,0);}
.mcf_c00375{transform:matrix(0.285320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285320,0.000000,0.000000,0.250000,0,0);}
.m4e_c00375{transform:matrix(0.285652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285652,0.000000,0.000000,0.250000,0,0);}
.m6f_c00375{transform:matrix(0.285665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285665,0.000000,0.000000,0.250000,0,0);}
.mdb_c00375{transform:matrix(0.285921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285921,0.000000,0.000000,0.250000,0,0);}
.m81_c00375{transform:matrix(0.285939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285939,0.000000,0.000000,0.250000,0,0);}
.m6e_c00375{transform:matrix(0.286302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286302,0.000000,0.000000,0.250000,0,0);}
.mcc_c00375{transform:matrix(0.287384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287384,0.000000,0.000000,0.250000,0,0);}
.m6b_c00375{transform:matrix(0.287726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287726,0.000000,0.000000,0.250000,0,0);}
.m93_c00375{transform:matrix(0.287825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287825,0.000000,0.000000,0.250000,0,0);}
.m33_c00375{transform:matrix(0.288244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288244,0.000000,0.000000,0.250000,0,0);}
.m9c_c00375{transform:matrix(0.288781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288781,0.000000,0.000000,0.250000,0,0);}
.m79_c00375{transform:matrix(0.288823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288823,0.000000,0.000000,0.250000,0,0);}
.mda_c00375{transform:matrix(0.289635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289635,0.000000,0.000000,0.250000,0,0);}
.m4b_c00375{transform:matrix(0.289857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289857,0.000000,0.000000,0.250000,0,0);}
.m47_c00375{transform:matrix(0.291218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291218,0.000000,0.000000,0.250000,0,0);}
.m3b_c00375{transform:matrix(0.291398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291398,0.000000,0.000000,0.250000,0,0);}
.m56_c00375{transform:matrix(0.291843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291843,0.000000,0.000000,0.250000,0,0);}
.maf_c00375{transform:matrix(0.292058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292058,0.000000,0.000000,0.250000,0,0);}
.m16_c00375{transform:matrix(0.292154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292154,0.000000,0.000000,0.250000,0,0);}
.m7b_c00375{transform:matrix(0.293331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293331,0.000000,0.000000,0.250000,0,0);}
.m89_c00375{transform:matrix(0.293602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293602,0.000000,0.000000,0.250000,0,0);}
.m4c_c00375{transform:matrix(0.293646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293646,0.000000,0.000000,0.250000,0,0);}
.mc4_c00375{transform:matrix(0.293938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293938,0.000000,0.000000,0.250000,0,0);}
.m69_c00375{transform:matrix(0.294254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294254,0.000000,0.000000,0.250000,0,0);}
.m96_c00375{transform:matrix(0.294273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294273,0.000000,0.000000,0.250000,0,0);}
.m91_c00375{transform:matrix(0.294321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294321,0.000000,0.000000,0.250000,0,0);}
.mc9_c00375{transform:matrix(0.295187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295187,0.000000,0.000000,0.250000,0,0);}
.mc8_c00375{transform:matrix(0.295388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295388,0.000000,0.000000,0.250000,0,0);}
.m1b_c00375{transform:matrix(0.295656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295656,0.000000,0.000000,0.250000,0,0);}
.m4f_c00375{transform:matrix(0.296080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296080,0.000000,0.000000,0.250000,0,0);}
.m8b_c00375{transform:matrix(0.296355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296355,0.000000,0.000000,0.250000,0,0);}
.mbd_c00375{transform:matrix(0.296878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296878,0.000000,0.000000,0.250000,0,0);}
.maa_c00375{transform:matrix(0.296898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296898,0.000000,0.000000,0.250000,0,0);}
.m18_c00375{transform:matrix(0.297359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297359,0.000000,0.000000,0.250000,0,0);}
.m39_c00375{transform:matrix(0.297564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297564,0.000000,0.000000,0.250000,0,0);}
.md3_c00375{transform:matrix(0.298310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298310,0.000000,0.000000,0.250000,0,0);}
.m7_c00375{transform:matrix(0.298415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298415,0.000000,0.000000,0.250000,0,0);}
.me4_c00375{transform:matrix(0.299266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299266,0.000000,0.000000,0.250000,0,0);}
.m54_c00375{transform:matrix(0.299564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299564,0.000000,0.000000,0.250000,0,0);}
.mf_c00375{transform:matrix(0.299948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299948,0.000000,0.000000,0.250000,0,0);}
.m43_c00375{transform:matrix(0.300214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300214,0.000000,0.000000,0.250000,0,0);}
.m40_c00375{transform:matrix(0.300471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300471,0.000000,0.000000,0.250000,0,0);}
.m62_c00375{transform:matrix(0.300556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300556,0.000000,0.000000,0.250000,0,0);}
.m24_c00375{transform:matrix(0.300674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300674,0.000000,0.000000,0.250000,0,0);}
.m3c_c00375{transform:matrix(0.300723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300723,0.000000,0.000000,0.250000,0,0);}
.m94_c00375{transform:matrix(0.301870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301870,0.000000,0.000000,0.250000,0,0);}
.m2a_c00375{transform:matrix(0.302031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302031,0.000000,0.000000,0.250000,0,0);}
.m2e_c00375{transform:matrix(0.302118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302118,0.000000,0.000000,0.250000,0,0);}
.m0_c00375{transform:matrix(0.302330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302330,0.000000,0.000000,0.250000,0,0);}
.m74_c00375{transform:matrix(0.303107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303107,0.000000,0.000000,0.250000,0,0);}
.mab_c00375{transform:matrix(0.303902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303902,0.000000,0.000000,0.250000,0,0);}
.m41_c00375{transform:matrix(0.304483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304483,0.000000,0.000000,0.250000,0,0);}
.md_c00375{transform:matrix(0.305453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305453,0.000000,0.000000,0.250000,0,0);}
.m44_c00375{transform:matrix(0.305599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305599,0.000000,0.000000,0.250000,0,0);}
.mbe_c00375{transform:matrix(0.305915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305915,0.000000,0.000000,0.250000,0,0);}
.m8c_c00375{transform:matrix(0.307524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307524,0.000000,0.000000,0.250000,0,0);}
.m31_c00375{transform:matrix(0.307616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307616,0.000000,0.000000,0.250000,0,0);}
.mb4_c00375{transform:matrix(0.307653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307653,0.000000,0.000000,0.250000,0,0);}
.ma6_c00375{transform:matrix(0.308716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308716,0.000000,0.000000,0.250000,0,0);}
.md7_c00375{transform:matrix(0.308911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308911,0.000000,0.000000,0.250000,0,0);}
.m6c_c00375{transform:matrix(0.310280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310280,0.000000,0.000000,0.250000,0,0);}
.m21_c00375{transform:matrix(0.310370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310370,0.000000,0.000000,0.250000,0,0);}
.m13_c00375{transform:matrix(0.310557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310557,0.000000,0.000000,0.250000,0,0);}
.mce_c00375{transform:matrix(0.311534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311534,0.000000,0.000000,0.250000,0,0);}
.m55_c00375{transform:matrix(0.311595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311595,0.000000,0.000000,0.250000,0,0);}
.m51_c00375{transform:matrix(0.312731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312731,0.000000,0.000000,0.250000,0,0);}
.m23_c00375{transform:matrix(0.313458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313458,0.000000,0.000000,0.250000,0,0);}
.m70_c00375{transform:matrix(0.313494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313494,0.000000,0.000000,0.250000,0,0);}
.mcd_c00375{transform:matrix(0.313811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313811,0.000000,0.000000,0.250000,0,0);}
.m5f_c00375{transform:matrix(0.313870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313870,0.000000,0.000000,0.250000,0,0);}
.m30_c00375{transform:matrix(0.314067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314067,0.000000,0.000000,0.250000,0,0);}
.m10_c00375{transform:matrix(0.316830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316830,0.000000,0.000000,0.250000,0,0);}
.m99_c00375{transform:matrix(0.317779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317779,0.000000,0.000000,0.250000,0,0);}
.m3d_c00375{transform:matrix(0.317931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317931,0.000000,0.000000,0.250000,0,0);}
.mb6_c00375{transform:matrix(0.318652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318652,0.000000,0.000000,0.250000,0,0);}
.m19_c00375{transform:matrix(0.318942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318942,0.000000,0.000000,0.250000,0,0);}
.ma1_c00375{transform:matrix(0.319153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319153,0.000000,0.000000,0.250000,0,0);}
.m17_c00375{transform:matrix(0.319262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319262,0.000000,0.000000,0.250000,0,0);}
.mc5_c00375{transform:matrix(0.319813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319813,0.000000,0.000000,0.250000,0,0);}
.m32_c00375{transform:matrix(0.320254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320254,0.000000,0.000000,0.250000,0,0);}
.m52_c00375{transform:matrix(0.320352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320352,0.000000,0.000000,0.250000,0,0);}
.md4_c00375{transform:matrix(0.320817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320817,0.000000,0.000000,0.250000,0,0);}
.m7f_c00375{transform:matrix(0.321211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321211,0.000000,0.000000,0.250000,0,0);}
.m63_c00375{transform:matrix(0.321442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321442,0.000000,0.000000,0.250000,0,0);}
.m85_c00375{transform:matrix(0.321696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321696,0.000000,0.000000,0.250000,0,0);}
.m2b_c00375{transform:matrix(0.322177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322177,0.000000,0.000000,0.250000,0,0);}
.m22_c00375{transform:matrix(0.322292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322292,0.000000,0.000000,0.250000,0,0);}
.m6a_c00375{transform:matrix(0.323637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323637,0.000000,0.000000,0.250000,0,0);}
.mbb_c00375{transform:matrix(0.325284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325284,0.000000,0.000000,0.250000,0,0);}
.m61_c00375{transform:matrix(0.325659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325659,0.000000,0.000000,0.250000,0,0);}
.m4d_c00375{transform:matrix(0.326072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326072,0.000000,0.000000,0.250000,0,0);}
.m3a_c00375{transform:matrix(0.326593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326593,0.000000,0.000000,0.250000,0,0);}
.mb8_c00375{transform:matrix(0.326802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326802,0.000000,0.000000,0.250000,0,0);}
.ma4_c00375{transform:matrix(0.327226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327226,0.000000,0.000000,0.250000,0,0);}
.m11_c00375{transform:matrix(0.327527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327527,0.000000,0.000000,0.250000,0,0);}
.mc2_c00375{transform:matrix(0.327641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327641,0.000000,0.000000,0.250000,0,0);}
.mb9_c00375{transform:matrix(0.328246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328246,0.000000,0.000000,0.250000,0,0);}
.m2c_c00375{transform:matrix(0.331569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331569,0.000000,0.000000,0.250000,0,0);}
.m3e_c00375{transform:matrix(0.332682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332682,0.000000,0.000000,0.250000,0,0);}
.m87_c00375{transform:matrix(0.333046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333046,0.000000,0.000000,0.250000,0,0);}
.m1e_c00375{transform:matrix(0.334176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334176,0.000000,0.000000,0.250000,0,0);}
.m84_c00375{transform:matrix(0.335160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335160,0.000000,0.000000,0.250000,0,0);}
.mb3_c00375{transform:matrix(0.335358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335358,0.000000,0.000000,0.250000,0,0);}
.m29_c00375{transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337258,0.000000,0.000000,0.250000,0,0);}
.me_c00375{transform:matrix(0.338271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338271,0.000000,0.000000,0.250000,0,0);}
.m34_c00375{transform:matrix(0.339103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339103,0.000000,0.000000,0.250000,0,0);}
.m1a_c00375{transform:matrix(0.339155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339155,0.000000,0.000000,0.250000,0,0);}
.m73_c00375{transform:matrix(0.339458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339458,0.000000,0.000000,0.250000,0,0);}
.m1f_c00375{transform:matrix(0.339463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339463,0.000000,0.000000,0.250000,0,0);}
.m28_c00375{transform:matrix(0.340085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340085,0.000000,0.000000,0.250000,0,0);}
.m9b_c00375{transform:matrix(0.340212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340212,0.000000,0.000000,0.250000,0,0);}
.me8_c00375{transform:matrix(0.341339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341339,0.000000,0.000000,0.250000,0,0);}
.m60_c00375{transform:matrix(0.342862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342862,0.000000,0.000000,0.250000,0,0);}
.m26_c00375{transform:matrix(0.343830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343830,0.000000,0.000000,0.250000,0,0);}
.ma0_c00375{transform:matrix(0.344473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344473,0.000000,0.000000,0.250000,0,0);}
.m27_c00375{transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);}
.m7c_c00375{transform:matrix(0.345849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345849,0.000000,0.000000,0.250000,0,0);}
.m67_c00375{transform:matrix(0.346440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346440,0.000000,0.000000,0.250000,0,0);}
.m8_c00375{transform:matrix(0.347685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347685,0.000000,0.000000,0.250000,0,0);}
.md2_c00375{transform:matrix(0.350907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350907,0.000000,0.000000,0.250000,0,0);}
.mb0_c00375{transform:matrix(0.355695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355695,0.000000,0.000000,0.250000,0,0);}
.m3_c00375{transform:matrix(0.355860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355860,0.000000,0.000000,0.250000,0,0);}
.m9_c00375{transform:matrix(0.358703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358703,0.000000,0.000000,0.250000,0,0);}
.md5_c00375{transform:matrix(0.360354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360354,0.000000,0.000000,0.250000,0,0);}
.m68_c00375{transform:matrix(0.362103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362103,0.000000,0.000000,0.250000,0,0);}
.m3f_c00375{transform:matrix(0.362285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362285,0.000000,0.000000,0.250000,0,0);}
.mc3_c00375{transform:matrix(0.362344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362344,0.000000,0.000000,0.250000,0,0);}
.mdc_c00375{transform:matrix(0.363595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363595,0.000000,0.000000,0.250000,0,0);}
.m20_c00375{transform:matrix(0.364423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364423,0.000000,0.000000,0.250000,0,0);}
.ma_c00375{transform:matrix(0.364616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364616,0.000000,0.000000,0.250000,0,0);}
.mbf_c00375{transform:matrix(0.368295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368295,0.000000,0.000000,0.250000,0,0);}
.mcb_c00375{transform:matrix(0.369333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369333,0.000000,0.000000,0.250000,0,0);}
.m38_c00375{transform:matrix(0.371750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00375{transform:matrix(0.374551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374551,0.000000,0.000000,0.250000,0,0);}
.mc6_c00375{transform:matrix(0.385706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385706,0.000000,0.000000,0.250000,0,0);}
.m71_c00375{transform:matrix(0.386436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386436,0.000000,0.000000,0.250000,0,0);}
.me6_c00375{transform:matrix(0.389328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389328,0.000000,0.000000,0.250000,0,0);}
.m5_c00375{transform:matrix(0.390050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390050,0.000000,0.000000,0.250000,0,0);}
.m9e_c00375{transform:matrix(0.392849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392849,0.000000,0.000000,0.250000,0,0);}
.m35_c00375{transform:matrix(0.394943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394943,0.000000,0.000000,0.250000,0,0);}
.m25_c00375{transform:matrix(0.402629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402629,0.000000,0.000000,0.250000,0,0);}
.m15_c00375{transform:matrix(0.403466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403466,0.000000,0.000000,0.250000,0,0);}
.mca_c00375{transform:matrix(0.416660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416660,0.000000,0.000000,0.250000,0,0);}
.m7e_c00375{transform:matrix(0.417156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417156,0.000000,0.000000,0.250000,0,0);}
.md8_c00375{transform:matrix(0.424181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424181,0.000000,0.000000,0.250000,0,0);}
.m6d_c00375{transform:matrix(0.440189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440189,0.000000,0.000000,0.250000,0,0);}
.m46_c00375{transform:matrix(0.964272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.964272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.964272,0.000000,0.000000,0.250000,0,0);}
.v0_c00375{vertical-align:0.000000px;}
.v2_c00375{vertical-align:1.425600px;}
.v1_c00375{vertical-align:42.787800px;}
.ls9_c00375{letter-spacing:-2.647267px;}
.lsf_c00375{letter-spacing:-2.356200px;}
.ls1e_c00375{letter-spacing:-2.134440px;}
.ls10_c00375{letter-spacing:-1.633742px;}
.ls11_c00375{letter-spacing:-0.915198px;}
.ls14_c00375{letter-spacing:-0.907634px;}
.ls21_c00375{letter-spacing:-0.847125px;}
.ls15_c00375{letter-spacing:-0.779053px;}
.ls23_c00375{letter-spacing:-0.763926px;}
.ls1d_c00375{letter-spacing:-0.609840px;}
.ls1c_c00375{letter-spacing:-0.340363px;}
.lsa_c00375{letter-spacing:0.000000px;}
.ls20_c00375{letter-spacing:1.235048px;}
.ls0_c00375{letter-spacing:2.034614px;}
.ls1a_c00375{letter-spacing:2.896866px;}
.ls4_c00375{letter-spacing:3.116211px;}
.ls16_c00375{letter-spacing:3.275047px;}
.lsb_c00375{letter-spacing:3.312865px;}
.ls5_c00375{letter-spacing:3.449011px;}
.ls18_c00375{letter-spacing:3.564000px;}
.ls7_c00375{letter-spacing:3.621627px;}
.ls1f_c00375{letter-spacing:3.643200px;}
.ls13_c00375{letter-spacing:3.653110px;}
.ls8_c00375{letter-spacing:3.781810px;}
.lsd_c00375{letter-spacing:3.880810px;}
.ls6_c00375{letter-spacing:3.979810px;}
.ls3_c00375{letter-spacing:7.488261px;}
.lsc_c00375{letter-spacing:9.979398px;}
.ls22_c00375{letter-spacing:12.830598px;}
.ls2_c00375{letter-spacing:26.850923px;}
.ls25_c00375{letter-spacing:31.363200px;}
.ls19_c00375{letter-spacing:48.470598px;}
.lse_c00375{letter-spacing:49.896198px;}
.ls17_c00375{letter-spacing:51.321798px;}
.ls1b_c00375{letter-spacing:55.598598px;}
.ls24_c00375{letter-spacing:57.024198px;}
.ls12_c00375{letter-spacing:58.449798px;}
.ls1_c00375{letter-spacing:69.455631px;}
.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;}
}
.ws7_c00375{word-spacing:-21.805916px;}
.ws1_c00375{word-spacing:-20.943663px;}
.ws0_c00375{word-spacing:-18.909050px;}
.ws8_c00375{word-spacing:-18.265550px;}
.wsa_c00375{word-spacing:-18.061924px;}
.ws6_c00375{word-spacing:-17.993852px;}
.ws5_c00375{word-spacing:-17.275308px;}
.ws2_c00375{word-spacing:-1.966453px;}
.wsd_c00375{word-spacing:0.000000px;}
.ws3_c00375{word-spacing:0.151355px;}
.ws9_c00375{word-spacing:2.723187px;}
.wsc_c00375{word-spacing:2.873657px;}
.ws4_c00375{word-spacing:7.434598px;}
.wsb_c00375{word-spacing:28.512099px;}
._1c_c00375{margin-left:-14.595614px;}
._19_c00375{margin-left:-10.966582px;}
._1e_c00375{margin-left:-5.061177px;}
._6_c00375{width:1.241366px;}
._e_c00375{width:2.268913px;}
._11_c00375{width:4.840605px;}
._c_c00375{width:6.353523px;}
._1_c00375{width:7.488074px;}
._8_c00375{width:9.153441px;}
._0_c00375{width:10.664786px;}
._12_c00375{width:12.993354px;}
._a_c00375{width:14.927517px;}
._17_c00375{width:16.488571px;}
._16_c00375{width:18.817401px;}
._9_c00375{width:20.194922px;}
._1b_c00375{width:21.632039px;}
._f_c00375{width:23.294458px;}
._3_c00375{width:24.506207px;}
._13_c00375{width:25.867561px;}
._7_c00375{width:28.135046px;}
._b_c00375{width:29.466817px;}
._d_c00375{width:30.935242px;}
._5_c00375{width:32.977346px;}
._14_c00375{width:34.187137px;}
._10_c00375{width:35.927194px;}
._4_c00375{width:38.372669px;}
._18_c00375{width:40.409693px;}
._2_c00375{width:41.798487px;}
._15_c00375{width:48.331497px;}
._1a_c00375{width:51.726474px;}
._1d_c00375{width:310.402483px;}
.fc0_c00375{color:transparent;}
.fs3_c00375{font-size:9.979398px;}
.fs14_c00375{font-size:12.830598px;}
.fse_c00375{font-size:17.424000px;}
.fs1d_c00375{font-size:22.176000px;}
.fs1a_c00375{font-size:25.146000px;}
.fs11_c00375{font-size:27.720000px;}
.fs1b_c00375{font-size:31.363200px;}
.fs18_c00375{font-size:39.600000px;}
.fs1c_c00375{font-size:45.144000px;}
.fs16_c00375{font-size:47.520000px;}
.fsc_c00375{font-size:48.470598px;}
.fs5_c00375{font-size:49.896198px;}
.fs15_c00375{font-size:50.292000px;}
.fsa_c00375{font-size:51.321798px;}
.fsd_c00375{font-size:55.598598px;}
.fs17_c00375{font-size:57.024198px;}
.fs8_c00375{font-size:58.449798px;}
.fs13_c00375{font-size:60.192000px;}
.fsf_c00375{font-size:60.984000px;}
.fs19_c00375{font-size:66.528000px;}
.fs6_c00375{font-size:67.320000px;}
.fsb_c00375{font-size:70.488000px;}
.fs7_c00375{font-size:71.280000px;}
.fs10_c00375{font-size:72.864000px;}
.fs9_c00375{font-size:73.062198px;}
.fs2_c00375{font-size:75.240000px;}
.fs1_c00375{font-size:75.636198px;}
.fs4_c00375{font-size:77.616198px;}
.fs0_c00375{font-size:79.596198px;}
.fs12_c00375{font-size:89.496198px;}
.y0_c00375{bottom:0.000000px;}
.y2b_c00375{bottom:23.790735px;}
.y1_c00375{bottom:76.500000px;}
.y2a_c00375{bottom:78.319935px;}
.y29_c00375{bottom:85.804335px;}
.y2c_c00375{bottom:86.868585px;}
.y28_c00375{bottom:96.496335px;}
.y27_c00375{bottom:109.321785px;}
.y25_c00375{bottom:148.882185px;}
.y26_c00375{bottom:149.238585px;}
.y24_c00375{bottom:179.893935px;}
.y23_c00375{bottom:205.198335px;}
.y22_c00375{bottom:216.603135px;}
.y21_c00375{bottom:245.466585px;}
.y20_c00375{bottom:249.030585px;}
.y1f_c00375{bottom:281.467935px;}
.y1e_c00375{bottom:313.895385px;}
.y1a_c00375{bottom:347.396985px;}
.y19_c00375{bottom:378.765135px;}
.y18_c00375{bottom:385.536735px;}
.y1d_c00375{bottom:403.708185px;}
.y1b_c00375{bottom:410.479785px;}
.y17_c00375{bottom:411.192585px;}
.y1c_c00375{bottom:411.553935px;}
.y16_c00375{bottom:440.060985px;}
.y15_c00375{bottom:443.273535px;}
.y14_c00375{bottom:443.986335px;}
.y13_c00375{bottom:475.700985px;}
.y12_c00375{bottom:507.420585px;}
.y11_c00375{bottom:539.501535px;}
.y10_c00375{bottom:571.928985px;}
.yf_c00375{bottom:604.361385px;}
.ye_c00375{bottom:637.150185px;}
.yd_c00375{bottom:669.582585px;}
.yc_c00375{bottom:698.812335px;}
.yb_c00375{bottom:702.019935px;}
.ya_c00375{bottom:734.452335px;}
.y9_c00375{bottom:798.247935px;}
.y8_c00375{bottom:830.680335px;}
.y6_c00375{bottom:863.111250px;}
.y7_c00375{bottom:863.112735px;}
.y5_c00375{bottom:895.540185px;}
.y4_c00375{bottom:895.540680px;}
.y3_c00375{bottom:928.328985px;}
.y2_c00375{bottom:1079.086185px;}
.h5_c00375{height:6.646279px;}
.h15_c00375{height:8.545178px;}
.hf_c00375{height:18.172688px;}
.h1b_c00375{height:20.887891px;}
.h1d_c00375{height:23.128875px;}
.h1a_c00375{height:26.226492px;}
.h12_c00375{height:28.911094px;}
.hd_c00375{height:32.281418px;}
.h7_c00375{height:33.230868px;}
.hc_c00375{height:34.180317px;}
.he_c00375{height:37.028666px;}
.h16_c00375{height:37.978116px;}
.ha_c00375{height:38.927565px;}
.h1c_c00375{height:47.083781px;}
.h14_c00375{height:62.778375px;}
.h10_c00375{height:63.604406px;}
.h8_c00375{height:66.070898px;}
.h19_c00375{height:69.386625px;}
.h9_c00375{height:69.957422px;}
.h11_c00375{height:71.512031px;}
.hb_c00375{height:71.706552px;}
.h4_c00375{height:73.843945px;}
.h3_c00375{height:74.232792px;}
.h18_c00375{height:75.658392px;}
.h6_c00375{height:76.176054px;}
.h2_c00375{height:78.119315px;}
.h17_c00375{height:84.089362px;}
.h13_c00375{height:87.835624px;}
.h1_c00375{height:1110.000000px;}
.h0_c00375{height:1263.000000px;}
.w1_c00375{width:775.500000px;}
.w0_c00375{width:892.500000px;}
.x0_c00375{left:0.000000px;}
.x1_c00375{left:58.500000px;}
.x3f_c00375{left:98.714535px;}
.x4_c00375{left:100.288635px;}
.x69_c00375{left:101.704335px;}
.x76_c00375{left:109.396635px;}
.x29_c00375{left:110.589585px;}
.x5d_c00375{left:111.688485px;}
.x7b_c00375{left:115.465335px;}
.x4d_c00375{left:120.930135px;}
.x1c_c00375{left:121.959735px;}
.x46_c00375{left:130.424235px;}
.x52_c00375{left:131.973585px;}
.x5_c00375{left:133.399185px;}
.x5f_c00375{left:141.472635px;}
.x2a_c00375{left:143.417985px;}
.x13_c00375{left:144.704985px;}
.x37_c00375{left:153.486285px;}
.x2b_c00375{left:154.783185px;}
.x6a_c00375{left:163.955535px;}
.x6_c00375{left:165.524685px;}
.x32_c00375{left:176.538435px;}
.x40_c00375{left:185.968185px;}
.x7_c00375{left:187.552185px;}
.x1d_c00375{left:190.175685px;}
.x48_c00375{left:197.452185px;}
.x6f_c00375{left:203.704035px;}
.x38_c00375{left:208.931235px;}
.x1e_c00375{left:210.049935px;}
.x68_c00375{left:211.990335px;}
.x6c_c00375{left:219.420285px;}
.x8_c00375{left:220.756785px;}
.x65_c00375{left:230.171685px;}
.x1f_c00375{left:232.443735px;}
.x6b_c00375{left:233.478285px;}
.x59_c00375{left:236.809635px;}
.x4e_c00375{left:241.630935px;}
.x2c_c00375{left:242.714985px;}
.x9_c00375{left:254.253435px;}
.x4f_c00375{left:256.599735px;}
.x14_c00375{left:264.762285px;}
.x20_c00375{left:266.682885px;}
.x60_c00375{left:268.717335px;}
.x49_c00375{left:277.043235px;}
.x15_c00375{left:286.492785px;}
.x5a_c00375{left:288.032235px;}
.x53_c00375{left:297.174885px;}
.xa_c00375{left:298.412385px;}
.x16_c00375{left:309.782535px;}
.x21_c00375{left:320.192385px;}
.x5b_c00375{left:321.895185px;}
.xb_c00375{left:330.364635px;}
.x66_c00375{left:331.552635px;}
.x2d_c00375{left:332.611935px;}
.x22_c00375{left:333.780135px;}
.x33_c00375{left:341.744685px;}
.x17_c00375{left:342.962385px;}
.x70_c00375{left:352.461435px;}
.x23_c00375{left:353.976135px;}
.x56_c00375{left:362.930685px;}
.x39_c00375{left:364.252335px;}
.x61_c00375{left:365.608635px;}
.x4a_c00375{left:372.073335px;}
.x2e_c00375{left:375.790785px;}
.x18_c00375{left:377.142135px;}
.x34_c00375{left:385.606635px;}
.xc_c00375{left:387.472785px;}
.x3a_c00375{left:397.872735px;}
.x41_c00375{left:408.747885px;}
.x2f_c00375{left:419.608185px;}
.xd_c00375{left:421.043685px;}
.x42_c00375{left:430.824885px;}
.xe_c00375{left:442.358385px;}
.x24_c00375{left:453.456285px;}
.x73_c00375{left:463.400835px;}
.x19_c00375{left:464.544285px;}
.x5e_c00375{left:473.998785px;}
.x35_c00375{left:475.869885px;}
.x3b_c00375{left:485.928285px;}
.x3c_c00375{left:497.635035px;}
.x79_c00375{left:506.782635px;}
.x57_c00375{left:508.173585px;}
.x30_c00375{left:509.351685px;}
.x71_c00375{left:519.073485px;}
.x78_c00375{left:524.468985px;}
.x54_c00375{left:526.627185px;}
.xf_c00375{left:531.087135px;}
.x25_c00375{left:541.328685px;}
.x55_c00375{left:552.332535px;}
.x67_c00375{left:553.599735px;}
.x50_c00375{left:555.356985px;}
.x3d_c00375{left:562.861185px;}
.x36_c00375{left:566.024235px;}
.x64_c00375{left:567.261735px;}
.x10_c00375{left:574.102635px;}
.x26_c00375{left:575.260935px;}
.x47_c00375{left:582.339435px;}
.x77_c00375{left:584.794635px;}
.x43_c00375{left:586.190535px;}
.x1a_c00375{left:596.724135px;}
.x11_c00375{left:599.322885px;}
.x62_c00375{left:607.594335px;}
.x51_c00375{left:610.569285px;}
.x27_c00375{left:619.009035px;}
.x7a_c00375{left:628.315035px;}
.x3e_c00375{left:629.413935px;}
.x72_c00375{left:630.587085px;}
.x74_c00375{left:632.294835px;}
.x58_c00375{left:641.303835px;}
.x4b_c00375{left:652.327485px;}
.x6d_c00375{left:655.134135px;}
.x31_c00375{left:664.420335px;}
.x44_c00375{left:666.177585px;}
.x2_c00375{left:674.716335px;}
.x4c_c00375{left:684.947985px;}
.x5c_c00375{left:686.135985px;}
.x75_c00375{left:695.273685px;}
.x3_c00375{left:696.887385px;}
.x7e_c00375{left:700.203885px;}
.x7c_c00375{left:703.614435px;}
.x7d_c00375{left:705.129135px;}
.x28_c00375{left:707.569485px;}
.x6e_c00375{left:710.866185px;}
.x12_c00375{left:718.261485px;}
.x45_c00375{left:728.790135px;}
.x1b_c00375{left:740.358285px;}
.x63_c00375{left:751.763085px;}
.x7f_c00375{left:765.093435px;}
@media print{
.v0_c00375{vertical-align:0.000000pt;}
.v2_c00375{vertical-align:1.267200pt;}
.v1_c00375{vertical-align:38.033600pt;}
.ls9_c00375{letter-spacing:-2.353126pt;}
.lsf_c00375{letter-spacing:-2.094400pt;}
.ls1e_c00375{letter-spacing:-1.897280pt;}
.ls10_c00375{letter-spacing:-1.452215pt;}
.ls11_c00375{letter-spacing:-0.813509pt;}
.ls14_c00375{letter-spacing:-0.806786pt;}
.ls21_c00375{letter-spacing:-0.753000pt;}
.ls15_c00375{letter-spacing:-0.692491pt;}
.ls23_c00375{letter-spacing:-0.679045pt;}
.ls1d_c00375{letter-spacing:-0.542080pt;}
.ls1c_c00375{letter-spacing:-0.302545pt;}
.lsa_c00375{letter-spacing:0.000000pt;}
.ls20_c00375{letter-spacing:1.097820pt;}
.ls0_c00375{letter-spacing:1.808546pt;}
.ls1a_c00375{letter-spacing:2.574992pt;}
.ls4_c00375{letter-spacing:2.769966pt;}
.ls16_c00375{letter-spacing:2.911153pt;}
.lsb_c00375{letter-spacing:2.944769pt;}
.ls5_c00375{letter-spacing:3.065787pt;}
.ls18_c00375{letter-spacing:3.168000pt;}
.ls7_c00375{letter-spacing:3.219224pt;}
.ls1f_c00375{letter-spacing:3.238400pt;}
.ls13_c00375{letter-spacing:3.247209pt;}
.ls8_c00375{letter-spacing:3.361609pt;}
.lsd_c00375{letter-spacing:3.449609pt;}
.ls6_c00375{letter-spacing:3.537609pt;}
.ls3_c00375{letter-spacing:6.656232pt;}
.lsc_c00375{letter-spacing:8.870576pt;}
.ls22_c00375{letter-spacing:11.404976pt;}
.ls2_c00375{letter-spacing:23.867487pt;}
.ls25_c00375{letter-spacing:27.878400pt;}
.ls19_c00375{letter-spacing:43.084976pt;}
.lse_c00375{letter-spacing:44.352176pt;}
.ls17_c00375{letter-spacing:45.619376pt;}
.ls1b_c00375{letter-spacing:49.420976pt;}
.ls24_c00375{letter-spacing:50.688176pt;}
.ls12_c00375{letter-spacing:51.955376pt;}
.ls1_c00375{letter-spacing:61.738338pt;}
.ws7_c00375{word-spacing:-19.383036pt;}
.ws1_c00375{word-spacing:-18.616590pt;}
.ws0_c00375{word-spacing:-16.808044pt;}
.ws8_c00375{word-spacing:-16.236044pt;}
.wsa_c00375{word-spacing:-16.055044pt;}
.ws6_c00375{word-spacing:-15.994535pt;}
.ws5_c00375{word-spacing:-15.355829pt;}
.ws2_c00375{word-spacing:-1.747959pt;}
.wsd_c00375{word-spacing:0.000000pt;}
.ws3_c00375{word-spacing:0.134537pt;}
.ws9_c00375{word-spacing:2.420611pt;}
.wsc_c00375{word-spacing:2.554361pt;}
.ws4_c00375{word-spacing:6.608531pt;}
.wsb_c00375{word-spacing:25.344088pt;}
._1c_c00375{margin-left:-12.973879pt;}
._19_c00375{margin-left:-9.748073pt;}
._1e_c00375{margin-left:-4.498824pt;}
._6_c00375{width:1.103437pt;}
._e_c00375{width:2.016811pt;}
._11_c00375{width:4.302760pt;}
._c_c00375{width:5.647576pt;}
._1_c00375{width:6.656066pt;}
._8_c00375{width:8.136392pt;}
._0_c00375{width:9.479810pt;}
._12_c00375{width:11.549648pt;}
._a_c00375{width:13.268904pt;}
._17_c00375{width:14.656508pt;}
._16_c00375{width:16.726579pt;}
._9_c00375{width:17.951042pt;}
._1b_c00375{width:19.228479pt;}
._f_c00375{width:20.706185pt;}
._3_c00375{width:21.783295pt;}
._13_c00375{width:22.993388pt;}
._7_c00375{width:25.008930pt;}
._b_c00375{width:26.192726pt;}
._d_c00375{width:27.497993pt;}
._5_c00375{width:29.313196pt;}
._14_c00375{width:30.388566pt;}
._10_c00375{width:31.935284pt;}
._4_c00375{width:34.109040pt;}
._18_c00375{width:35.919727pt;}
._2_c00375{width:37.154211pt;}
._15_c00375{width:42.961331pt;}
._1a_c00375{width:45.979088pt;}
._1d_c00375{width:275.913318pt;}
.fs3_c00375{font-size:8.870576pt;}
.fs14_c00375{font-size:11.404976pt;}
.fse_c00375{font-size:15.488000pt;}
.fs1d_c00375{font-size:19.712000pt;}
.fs1a_c00375{font-size:22.352000pt;}
.fs11_c00375{font-size:24.640000pt;}
.fs1b_c00375{font-size:27.878400pt;}
.fs18_c00375{font-size:35.200000pt;}
.fs1c_c00375{font-size:40.128000pt;}
.fs16_c00375{font-size:42.240000pt;}
.fsc_c00375{font-size:43.084976pt;}
.fs5_c00375{font-size:44.352176pt;}
.fs15_c00375{font-size:44.704000pt;}
.fsa_c00375{font-size:45.619376pt;}
.fsd_c00375{font-size:49.420976pt;}
.fs17_c00375{font-size:50.688176pt;}
.fs8_c00375{font-size:51.955376pt;}
.fs13_c00375{font-size:53.504000pt;}
.fsf_c00375{font-size:54.208000pt;}
.fs19_c00375{font-size:59.136000pt;}
.fs6_c00375{font-size:59.840000pt;}
.fsb_c00375{font-size:62.656000pt;}
.fs7_c00375{font-size:63.360000pt;}
.fs10_c00375{font-size:64.768000pt;}
.fs9_c00375{font-size:64.944176pt;}
.fs2_c00375{font-size:66.880000pt;}
.fs1_c00375{font-size:67.232176pt;}
.fs4_c00375{font-size:68.992176pt;}
.fs0_c00375{font-size:70.752176pt;}
.fs12_c00375{font-size:79.552176pt;}
.y0_c00375{bottom:0.000000pt;}
.y2b_c00375{bottom:21.147320pt;}
.y1_c00375{bottom:68.000000pt;}
.y2a_c00375{bottom:69.617720pt;}
.y29_c00375{bottom:76.270520pt;}
.y2c_c00375{bottom:77.216520pt;}
.y28_c00375{bottom:85.774520pt;}
.y27_c00375{bottom:97.174920pt;}
.y25_c00375{bottom:132.339720pt;}
.y26_c00375{bottom:132.656520pt;}
.y24_c00375{bottom:159.905720pt;}
.y23_c00375{bottom:182.398520pt;}
.y22_c00375{bottom:192.536120pt;}
.y21_c00375{bottom:218.192520pt;}
.y20_c00375{bottom:221.360520pt;}
.y1f_c00375{bottom:250.193720pt;}
.y1e_c00375{bottom:279.018120pt;}
.y1a_c00375{bottom:308.797320pt;}
.y19_c00375{bottom:336.680120pt;}
.y18_c00375{bottom:342.699320pt;}
.y1d_c00375{bottom:358.851720pt;}
.y1b_c00375{bottom:364.870920pt;}
.y17_c00375{bottom:365.504520pt;}
.y1c_c00375{bottom:365.825720pt;}
.y16_c00375{bottom:391.165320pt;}
.y15_c00375{bottom:394.020920pt;}
.y14_c00375{bottom:394.654520pt;}
.y13_c00375{bottom:422.845320pt;}
.y12_c00375{bottom:451.040520pt;}
.y11_c00375{bottom:479.556920pt;}
.y10_c00375{bottom:508.381320pt;}
.yf_c00375{bottom:537.210120pt;}
.ye_c00375{bottom:566.355720pt;}
.yd_c00375{bottom:595.184520pt;}
.yc_c00375{bottom:621.166520pt;}
.yb_c00375{bottom:624.017720pt;}
.ya_c00375{bottom:652.846520pt;}
.y9_c00375{bottom:709.553720pt;}
.y8_c00375{bottom:738.382520pt;}
.y6_c00375{bottom:767.210000pt;}
.y7_c00375{bottom:767.211320pt;}
.y5_c00375{bottom:796.035720pt;}
.y4_c00375{bottom:796.036160pt;}
.y3_c00375{bottom:825.181320pt;}
.y2_c00375{bottom:959.187720pt;}
.h5_c00375{height:5.907804pt;}
.h15_c00375{height:7.595714pt;}
.hf_c00375{height:16.153500pt;}
.h1b_c00375{height:18.567014pt;}
.h1d_c00375{height:20.559000pt;}
.h1a_c00375{height:23.312438pt;}
.h12_c00375{height:25.698750pt;}
.hd_c00375{height:28.694594pt;}
.h7_c00375{height:29.538549pt;}
.hc_c00375{height:30.382504pt;}
.he_c00375{height:32.914370pt;}
.h16_c00375{height:33.758325pt;}
.ha_c00375{height:34.602280pt;}
.h1c_c00375{height:41.852250pt;}
.h14_c00375{height:55.803000pt;}
.h10_c00375{height:56.537250pt;}
.h8_c00375{height:58.729688pt;}
.h19_c00375{height:61.677000pt;}
.h9_c00375{height:62.184375pt;}
.h11_c00375{height:63.566250pt;}
.hb_c00375{height:63.739157pt;}
.h4_c00375{height:65.639063pt;}
.h3_c00375{height:65.984704pt;}
.h18_c00375{height:67.251904pt;}
.h6_c00375{height:67.712048pt;}
.h2_c00375{height:69.439391pt;}
.h17_c00375{height:74.746100pt;}
.h13_c00375{height:78.076110pt;}
.h1_c00375{height:986.666667pt;}
.h0_c00375{height:1122.666667pt;}
.w1_c00375{width:689.333333pt;}
.w0_c00375{width:793.333333pt;}
.x0_c00375{left:0.000000pt;}
.x1_c00375{left:52.000000pt;}
.x3f_c00375{left:87.746253pt;}
.x4_c00375{left:89.145453pt;}
.x69_c00375{left:90.403853pt;}
.x76_c00375{left:97.241453pt;}
.x29_c00375{left:98.301853pt;}
.x5d_c00375{left:99.278653pt;}
.x7b_c00375{left:102.635853pt;}
.x4d_c00375{left:107.493453pt;}
.x1c_c00375{left:108.408653pt;}
.x46_c00375{left:115.932653pt;}
.x52_c00375{left:117.309853pt;}
.x5_c00375{left:118.577053pt;}
.x5f_c00375{left:125.753453pt;}
.x2a_c00375{left:127.482653pt;}
.x13_c00375{left:128.626653pt;}
.x37_c00375{left:136.432253pt;}
.x2b_c00375{left:137.585053pt;}
.x6a_c00375{left:145.738253pt;}
.x6_c00375{left:147.133053pt;}
.x32_c00375{left:156.923053pt;}
.x40_c00375{left:165.305053pt;}
.x7_c00375{left:166.713053pt;}
.x1d_c00375{left:169.045053pt;}
.x48_c00375{left:175.513053pt;}
.x6f_c00375{left:181.070253pt;}
.x38_c00375{left:185.716653pt;}
.x1e_c00375{left:186.711053pt;}
.x68_c00375{left:188.435853pt;}
.x6c_c00375{left:195.040253pt;}
.x8_c00375{left:196.228253pt;}
.x65_c00375{left:204.597053pt;}
.x1f_c00375{left:206.616653pt;}
.x6b_c00375{left:207.536253pt;}
.x59_c00375{left:210.497453pt;}
.x4e_c00375{left:214.783053pt;}
.x2c_c00375{left:215.746653pt;}
.x9_c00375{left:226.003053pt;}
.x4f_c00375{left:228.088653pt;}
.x14_c00375{left:235.344253pt;}
.x20_c00375{left:237.051453pt;}
.x60_c00375{left:238.859853pt;}
.x49_c00375{left:246.260653pt;}
.x15_c00375{left:254.660253pt;}
.x5a_c00375{left:256.028653pt;}
.x53_c00375{left:264.155453pt;}
.xa_c00375{left:265.255453pt;}
.x16_c00375{left:275.362253pt;}
.x21_c00375{left:284.615453pt;}
.x5b_c00375{left:286.129053pt;}
.xb_c00375{left:293.657453pt;}
.x66_c00375{left:294.713453pt;}
.x2d_c00375{left:295.655053pt;}
.x22_c00375{left:296.693453pt;}
.x33_c00375{left:303.773053pt;}
.x17_c00375{left:304.855453pt;}
.x70_c00375{left:313.299053pt;}
.x23_c00375{left:314.645453pt;}
.x56_c00375{left:322.605053pt;}
.x39_c00375{left:323.779853pt;}
.x61_c00375{left:324.985453pt;}
.x4a_c00375{left:330.731853pt;}
.x2e_c00375{left:334.036253pt;}
.x18_c00375{left:335.237453pt;}
.x34_c00375{left:342.761453pt;}
.xc_c00375{left:344.420253pt;}
.x3a_c00375{left:353.664653pt;}
.x41_c00375{left:363.331453pt;}
.x2f_c00375{left:372.985053pt;}
.xd_c00375{left:374.261053pt;}
.x42_c00375{left:382.955453pt;}
.xe_c00375{left:393.207453pt;}
.x24_c00375{left:403.072253pt;}
.x73_c00375{left:411.911853pt;}
.x19_c00375{left:412.928253pt;}
.x5e_c00375{left:421.332253pt;}
.x35_c00375{left:422.995453pt;}
.x3b_c00375{left:431.936253pt;}
.x3c_c00375{left:442.342253pt;}
.x79_c00375{left:450.473453pt;}
.x57_c00375{left:451.709853pt;}
.x30_c00375{left:452.757053pt;}
.x71_c00375{left:461.398653pt;}
.x78_c00375{left:466.194653pt;}
.x54_c00375{left:468.113053pt;}
.xf_c00375{left:472.077453pt;}
.x25_c00375{left:481.181053pt;}
.x55_c00375{left:490.962253pt;}
.x67_c00375{left:492.088653pt;}
.x50_c00375{left:493.650653pt;}
.x3d_c00375{left:500.321053pt;}
.x36_c00375{left:503.132653pt;}
.x64_c00375{left:504.232653pt;}
.x10_c00375{left:510.313453pt;}
.x26_c00375{left:511.343053pt;}
.x47_c00375{left:517.635053pt;}
.x77_c00375{left:519.817453pt;}
.x43_c00375{left:521.058253pt;}
.x1a_c00375{left:530.421453pt;}
.x11_c00375{left:532.731453pt;}
.x62_c00375{left:540.083853pt;}
.x51_c00375{left:542.728253pt;}
.x27_c00375{left:550.230253pt;}
.x7a_c00375{left:558.502253pt;}
.x3e_c00375{left:559.479053pt;}
.x72_c00375{left:560.521853pt;}
.x74_c00375{left:562.039853pt;}
.x58_c00375{left:570.047853pt;}
.x4b_c00375{left:579.846653pt;}
.x6d_c00375{left:582.341453pt;}
.x31_c00375{left:590.595853pt;}
.x44_c00375{left:592.157853pt;}
.x2_c00375{left:599.747853pt;}
.x4c_c00375{left:608.842653pt;}
.x5c_c00375{left:609.898653pt;}
.x75_c00375{left:618.021053pt;}
.x3_c00375{left:619.455453pt;}
.x7e_c00375{left:622.403453pt;}
.x7c_c00375{left:625.435053pt;}
.x7d_c00375{left:626.781453pt;}
.x28_c00375{left:628.950653pt;}
.x6e_c00375{left:631.881053pt;}
.x12_c00375{left:638.454653pt;}
.x45_c00375{left:647.813453pt;}
.x1b_c00375{left:658.096253pt;}
.x63_c00375{left:668.233853pt;}
.x7f_c00375{left:680.083053pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b2037919fb945f4ebe9658b0.woff2')format("woff");}.ff1_c00376{font-family:ff1_c00376;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00376;src:url('chunks/assets/font_daa09defcd199541d31335a0.woff2')format("woff");}.ff2_c00376{font-family:ff2_c00376;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00376;src:url('chunks/assets/font_5362010eab33c0b57e5ecf05.woff2')format("woff");}.ff3_c00376{font-family:ff3_c00376;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00376;src:url('chunks/assets/font_7f360381c562e0d1c224e5ee.woff2')format("woff");}.ff4_c00376{font-family:ff4_c00376;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00376;src:url('chunks/assets/font_6e114999b84be4391056810d.woff2')format("woff");}.ff5_c00376{font-family:ff5_c00376;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ma5_c00376{transform:matrix(0.027028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.027028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.027028,0.000000,0.000000,0.250000,0,0);}
.md2_c00376{transform:matrix(0.054488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054488,0.000000,0.000000,0.250000,0,0);}
.m4d_c00376{transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00376{transform:matrix(0.076786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076786,0.000000,0.000000,0.250000,0,0);}
.m65_c00376{transform:matrix(0.087429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087429,0.000000,0.000000,0.250000,0,0);}
.m66_c00376{transform:matrix(0.092858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092858,0.000000,0.000000,0.250000,0,0);}
.m39_c00376{transform:matrix(0.095552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095552,0.000000,0.000000,0.250000,0,0);}
.m90_c00376{transform:matrix(0.096428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096428,0.000000,0.000000,0.250000,0,0);}
.m11_c00376{transform:matrix(0.110098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110098,0.000000,0.000000,0.250000,0,0);}
.m3e_c00376{transform:matrix(0.112404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112404,0.000000,0.000000,0.250000,0,0);}
.m86_c00376{transform:matrix(0.114273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114273,0.000000,0.000000,0.250000,0,0);}
.m40_c00376{transform:matrix(0.123255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123255,0.000000,0.000000,0.250000,0,0);}
.m1_c00376{transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);}
.ma4_c00376{transform:matrix(0.128378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128378,0.000000,0.000000,0.250000,0,0);}
.ma7_c00376{transform:matrix(0.129509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129509,0.000000,0.000000,0.250000,0,0);}
.md1_c00376{transform:matrix(0.133013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133013,0.000000,0.000000,0.250000,0,0);}
.m68_c00376{transform:matrix(0.133333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133333,0.000000,0.000000,0.250000,0,0);}
.ma6_c00376{transform:matrix(0.148648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148648,0.000000,0.000000,0.250000,0,0);}
.m12_c00376{transform:matrix(0.156169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156169,0.000000,0.000000,0.250000,0,0);}
.m47_c00376{transform:matrix(0.159723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159723,0.000000,0.000000,0.250000,0,0);}
.m61_c00376{transform:matrix(0.171429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171429,0.000000,0.000000,0.250000,0,0);}
.m33_c00376{transform:matrix(0.176479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176479,0.000000,0.000000,0.250000,0,0);}
.m36_c00376{transform:matrix(0.178573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178573,0.000000,0.000000,0.250000,0,0);}
.m4e_c00376{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.md4_c00376{transform:matrix(0.189103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189103,0.000000,0.000000,0.250000,0,0);}
.md3_c00376{transform:matrix(0.192307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192307,0.000000,0.000000,0.250000,0,0);}
.m60_c00376{transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);}
.m75_c00376{transform:matrix(0.194191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194191,0.000000,0.000000,0.250000,0,0);}
.m8f_c00376{transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);}
.m10_c00376{transform:matrix(0.199665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199665,0.000000,0.000000,0.250000,0,0);}
.m1b_c00376{transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);}
.m46_c00376{transform:matrix(0.204861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204861,0.000000,0.000000,0.250000,0,0);}
.mb7_c00376{transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);}
.m67_c00376{transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);}
.m38_c00376{transform:matrix(0.211563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211563,0.000000,0.000000,0.250000,0,0);}
.mb9_c00376{transform:matrix(0.212433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212433,0.000000,0.000000,0.250000,0,0);}
.m9a_c00376{transform:matrix(0.213850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213850,0.000000,0.000000,0.250000,0,0);}
.m5f_c00376{transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);}
.m5d_c00376{transform:matrix(0.218138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218138,0.000000,0.000000,0.250000,0,0);}
.m87_c00376{transform:matrix(0.223627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223627,0.000000,0.000000,0.250000,0,0);}
.m4a_c00376{transform:matrix(0.226707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226707,0.000000,0.000000,0.250000,0,0);}
.m13_c00376{transform:matrix(0.229883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229883,0.000000,0.000000,0.250000,0,0);}
.m69_c00376{transform:matrix(0.235657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235657,0.000000,0.000000,0.250000,0,0);}
.m9b_c00376{transform:matrix(0.240678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240678,0.000000,0.000000,0.250000,0,0);}
.mc8_c00376{transform:matrix(0.243077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243077,0.000000,0.000000,0.250000,0,0);}
.m23_c00376{transform:matrix(0.248503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248503,0.000000,0.000000,0.250000,0,0);}
.m4c_c00376{transform:matrix(0.248539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248539,0.000000,0.000000,0.250000,0,0);}
.md6_c00376{transform:matrix(0.249110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249110,0.000000,0.000000,0.250000,0,0);}
.m35_c00376{transform:matrix(0.249469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249469,0.000000,0.000000,0.250000,0,0);}
.m0_c00376{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m78_c00376{transform:matrix(0.253904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253904,0.000000,0.000000,0.250000,0,0);}
.mc1_c00376{transform:matrix(0.254006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254006,0.000000,0.000000,0.250000,0,0);}
.m8_c00376{transform:matrix(0.255856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255856,0.000000,0.000000,0.250000,0,0);}
.m3a_c00376{transform:matrix(0.257738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257738,0.000000,0.000000,0.250000,0,0);}
.m6a_c00376{transform:matrix(0.260001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260001,0.000000,0.000000,0.250000,0,0);}
.mce_c00376{transform:matrix(0.262204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262204,0.000000,0.000000,0.250000,0,0);}
.md8_c00376{transform:matrix(0.263012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263012,0.000000,0.000000,0.250000,0,0);}
.mc3_c00376{transform:matrix(0.263168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263168,0.000000,0.000000,0.250000,0,0);}
.m93_c00376{transform:matrix(0.265504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265504,0.000000,0.000000,0.250000,0,0);}
.m64_c00376{transform:matrix(0.265572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265572,0.000000,0.000000,0.250000,0,0);}
.m21_c00376{transform:matrix(0.266029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266029,0.000000,0.000000,0.250000,0,0);}
.mca_c00376{transform:matrix(0.269039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269039,0.000000,0.000000,0.250000,0,0);}
.mf_c00376{transform:matrix(0.269400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269400,0.000000,0.000000,0.250000,0,0);}
.m34_c00376{transform:matrix(0.269584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269584,0.000000,0.000000,0.250000,0,0);}
.mc6_c00376{transform:matrix(0.270864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270864,0.000000,0.000000,0.250000,0,0);}
.m16_c00376{transform:matrix(0.272675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272675,0.000000,0.000000,0.250000,0,0);}
.m2f_c00376{transform:matrix(0.273445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273445,0.000000,0.000000,0.250000,0,0);}
.me_c00376{transform:matrix(0.273457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273457,0.000000,0.000000,0.250000,0,0);}
.m99_c00376{transform:matrix(0.274171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274171,0.000000,0.000000,0.250000,0,0);}
.m81_c00376{transform:matrix(0.274485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274485,0.000000,0.000000,0.250000,0,0);}
.m6c_c00376{transform:matrix(0.275028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275028,0.000000,0.000000,0.250000,0,0);}
.m71_c00376{transform:matrix(0.275530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275530,0.000000,0.000000,0.250000,0,0);}
.m85_c00376{transform:matrix(0.275692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275692,0.000000,0.000000,0.250000,0,0);}
.mc4_c00376{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);}
.m7_c00376{transform:matrix(0.278509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278509,0.000000,0.000000,0.250000,0,0);}
.mab_c00376{transform:matrix(0.278961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278961,0.000000,0.000000,0.250000,0,0);}
.m6f_c00376{transform:matrix(0.281085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281085,0.000000,0.000000,0.250000,0,0);}
.m2e_c00376{transform:matrix(0.282980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282980,0.000000,0.000000,0.250000,0,0);}
.m22_c00376{transform:matrix(0.283572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283572,0.000000,0.000000,0.250000,0,0);}
.m2a_c00376{transform:matrix(0.284117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284117,0.000000,0.000000,0.250000,0,0);}
.m55_c00376{transform:matrix(0.285246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285246,0.000000,0.000000,0.250000,0,0);}
.ma3_c00376{transform:matrix(0.285458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285458,0.000000,0.000000,0.250000,0,0);}
.m14_c00376{transform:matrix(0.285470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285470,0.000000,0.000000,0.250000,0,0);}
.m2_c00376{transform:matrix(0.285588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285588,0.000000,0.000000,0.250000,0,0);}
.ma1_c00376{transform:matrix(0.286107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286107,0.000000,0.000000,0.250000,0,0);}
.m88_c00376{transform:matrix(0.286155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286155,0.000000,0.000000,0.250000,0,0);}
.mba_c00376{transform:matrix(0.286502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286502,0.000000,0.000000,0.250000,0,0);}
.m27_c00376{transform:matrix(0.286887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286887,0.000000,0.000000,0.250000,0,0);}
.m72_c00376{transform:matrix(0.287532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287532,0.000000,0.000000,0.250000,0,0);}
.ma2_c00376{transform:matrix(0.287916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287916,0.000000,0.000000,0.250000,0,0);}
.m9f_c00376{transform:matrix(0.288034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288034,0.000000,0.000000,0.250000,0,0);}
.m7f_c00376{transform:matrix(0.288488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288488,0.000000,0.000000,0.250000,0,0);}
.m91_c00376{transform:matrix(0.288889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288889,0.000000,0.000000,0.250000,0,0);}
.m1e_c00376{transform:matrix(0.289713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289713,0.000000,0.000000,0.250000,0,0);}
.m6e_c00376{transform:matrix(0.290296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290296,0.000000,0.000000,0.250000,0,0);}
.mbd_c00376{transform:matrix(0.290582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290582,0.000000,0.000000,0.250000,0,0);}
.m62_c00376{transform:matrix(0.290924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290924,0.000000,0.000000,0.250000,0,0);}
.m1d_c00376{transform:matrix(0.291216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291216,0.000000,0.000000,0.250000,0,0);}
.mda_c00376{transform:matrix(0.292564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292564,0.000000,0.000000,0.250000,0,0);}
.maf_c00376{transform:matrix(0.293087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293087,0.000000,0.000000,0.250000,0,0);}
.m8a_c00376{transform:matrix(0.293700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293700,0.000000,0.000000,0.250000,0,0);}
.m8d_c00376{transform:matrix(0.293914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293914,0.000000,0.000000,0.250000,0,0);}
.m2c_c00376{transform:matrix(0.294104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294104,0.000000,0.000000,0.250000,0,0);}
.m15_c00376{transform:matrix(0.296943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296943,0.000000,0.000000,0.250000,0,0);}
.m7a_c00376{transform:matrix(0.297608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297608,0.000000,0.000000,0.250000,0,0);}
.m98_c00376{transform:matrix(0.298213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298213,0.000000,0.000000,0.250000,0,0);}
.m84_c00376{transform:matrix(0.298512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298512,0.000000,0.000000,0.250000,0,0);}
.ma8_c00376{transform:matrix(0.299704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299704,0.000000,0.000000,0.250000,0,0);}
.m26_c00376{transform:matrix(0.299871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299871,0.000000,0.000000,0.250000,0,0);}
.m7d_c00376{transform:matrix(0.300629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300629,0.000000,0.000000,0.250000,0,0);}
.m82_c00376{transform:matrix(0.301718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301718,0.000000,0.000000,0.250000,0,0);}
.m57_c00376{transform:matrix(0.301819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301819,0.000000,0.000000,0.250000,0,0);}
.m5e_c00376{transform:matrix(0.301888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301888,0.000000,0.000000,0.250000,0,0);}
.m6_c00376{transform:matrix(0.301945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301945,0.000000,0.000000,0.250000,0,0);}
.m95_c00376{transform:matrix(0.302585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302585,0.000000,0.000000,0.250000,0,0);}
.m7b_c00376{transform:matrix(0.302988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302988,0.000000,0.000000,0.250000,0,0);}
.m3d_c00376{transform:matrix(0.303193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303193,0.000000,0.000000,0.250000,0,0);}
.m44_c00376{transform:matrix(0.303251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303251,0.000000,0.000000,0.250000,0,0);}
.m74_c00376{transform:matrix(0.304736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304736,0.000000,0.000000,0.250000,0,0);}
.m25_c00376{transform:matrix(0.306148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306148,0.000000,0.000000,0.250000,0,0);}
.m54_c00376{transform:matrix(0.306369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306369,0.000000,0.000000,0.250000,0,0);}
.m3f_c00376{transform:matrix(0.307088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307088,0.000000,0.000000,0.250000,0,0);}
.m2b_c00376{transform:matrix(0.307708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307708,0.000000,0.000000,0.250000,0,0);}
.m58_c00376{transform:matrix(0.307989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307989,0.000000,0.000000,0.250000,0,0);}
.m56_c00376{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);}
.m92_c00376{transform:matrix(0.308816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308816,0.000000,0.000000,0.250000,0,0);}
.mad_c00376{transform:matrix(0.309128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309128,0.000000,0.000000,0.250000,0,0);}
.mc7_c00376{transform:matrix(0.309483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309483,0.000000,0.000000,0.250000,0,0);}
.mb_c00376{transform:matrix(0.309823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309823,0.000000,0.000000,0.250000,0,0);}
.mdf_c00376{transform:matrix(0.310178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310178,0.000000,0.000000,0.250000,0,0);}
.mac_c00376{transform:matrix(0.312526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312526,0.000000,0.000000,0.250000,0,0);}
.mc5_c00376{transform:matrix(0.312701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312701,0.000000,0.000000,0.250000,0,0);}
.mb5_c00376{transform:matrix(0.313295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313295,0.000000,0.000000,0.250000,0,0);}
.m20_c00376{transform:matrix(0.314004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314004,0.000000,0.000000,0.250000,0,0);}
.m3_c00376{transform:matrix(0.314522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314522,0.000000,0.000000,0.250000,0,0);}
.m8c_c00376{transform:matrix(0.314524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314524,0.000000,0.000000,0.250000,0,0);}
.m42_c00376{transform:matrix(0.314536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314536,0.000000,0.000000,0.250000,0,0);}
.m3c_c00376{transform:matrix(0.315009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315009,0.000000,0.000000,0.250000,0,0);}
.m2d_c00376{transform:matrix(0.315361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315361,0.000000,0.000000,0.250000,0,0);}
.m76_c00376{transform:matrix(0.315456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315456,0.000000,0.000000,0.250000,0,0);}
.mbf_c00376{transform:matrix(0.315619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315619,0.000000,0.000000,0.250000,0,0);}
.m49_c00376{transform:matrix(0.316226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316226,0.000000,0.000000,0.250000,0,0);}
.mae_c00376{transform:matrix(0.316228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316228,0.000000,0.000000,0.250000,0,0);}
.m48_c00376{transform:matrix(0.316724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316724,0.000000,0.000000,0.250000,0,0);}
.md5_c00376{transform:matrix(0.317385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317385,0.000000,0.000000,0.250000,0,0);}
.m1a_c00376{transform:matrix(0.317715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317715,0.000000,0.000000,0.250000,0,0);}
.m80_c00376{transform:matrix(0.318106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318106,0.000000,0.000000,0.250000,0,0);}
.mbc_c00376{transform:matrix(0.318533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318533,0.000000,0.000000,0.250000,0,0);}
.m9c_c00376{transform:matrix(0.319263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319263,0.000000,0.000000,0.250000,0,0);}
.mb1_c00376{transform:matrix(0.320762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320762,0.000000,0.000000,0.250000,0,0);}
.mdb_c00376{transform:matrix(0.323288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323288,0.000000,0.000000,0.250000,0,0);}
.m5b_c00376{transform:matrix(0.323683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323683,0.000000,0.000000,0.250000,0,0);}
.m52_c00376{transform:matrix(0.324286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324286,0.000000,0.000000,0.250000,0,0);}
.m83_c00376{transform:matrix(0.324421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324421,0.000000,0.000000,0.250000,0,0);}
.m53_c00376{transform:matrix(0.324650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324650,0.000000,0.000000,0.250000,0,0);}
.mcf_c00376{transform:matrix(0.324979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324979,0.000000,0.000000,0.250000,0,0);}
.m5a_c00376{transform:matrix(0.325010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325010,0.000000,0.000000,0.250000,0,0);}
.m77_c00376{transform:matrix(0.325012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325012,0.000000,0.000000,0.250000,0,0);}
.m5c_c00376{transform:matrix(0.325978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325978,0.000000,0.000000,0.250000,0,0);}
.m9d_c00376{transform:matrix(0.326581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326581,0.000000,0.000000,0.250000,0,0);}
.m31_c00376{transform:matrix(0.327914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327914,0.000000,0.000000,0.250000,0,0);}
.m63_c00376{transform:matrix(0.328025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328025,0.000000,0.000000,0.250000,0,0);}
.ma0_c00376{transform:matrix(0.328545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328545,0.000000,0.000000,0.250000,0,0);}
.m17_c00376{transform:matrix(0.328570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328570,0.000000,0.000000,0.250000,0,0);}
.ma9_c00376{transform:matrix(0.329424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329424,0.000000,0.000000,0.250000,0,0);}
.mdd_c00376{transform:matrix(0.329974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329974,0.000000,0.000000,0.250000,0,0);}
.m50_c00376{transform:matrix(0.331133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331133,0.000000,0.000000,0.250000,0,0);}
.m4b_c00376{transform:matrix(0.331143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331143,0.000000,0.000000,0.250000,0,0);}
.m6b_c00376{transform:matrix(0.331261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331261,0.000000,0.000000,0.250000,0,0);}
.m94_c00376{transform:matrix(0.331585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331585,0.000000,0.000000,0.250000,0,0);}
.m79_c00376{transform:matrix(0.332320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332320,0.000000,0.000000,0.250000,0,0);}
.m1f_c00376{transform:matrix(0.332322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332322,0.000000,0.000000,0.250000,0,0);}
.m19_c00376{transform:matrix(0.333034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333034,0.000000,0.000000,0.250000,0,0);}
.mcc_c00376{transform:matrix(0.334136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334136,0.000000,0.000000,0.250000,0,0);}
.m45_c00376{transform:matrix(0.335658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335658,0.000000,0.000000,0.250000,0,0);}
.mb8_c00376{transform:matrix(0.336563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336563,0.000000,0.000000,0.250000,0,0);}
.mb6_c00376{transform:matrix(0.340488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340488,0.000000,0.000000,0.250000,0,0);}
.mb3_c00376{transform:matrix(0.341683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341683,0.000000,0.000000,0.250000,0,0);}
.mb0_c00376{transform:matrix(0.341769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341769,0.000000,0.000000,0.250000,0,0);}
.mbb_c00376{transform:matrix(0.341854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341854,0.000000,0.000000,0.250000,0,0);}
.mcb_c00376{transform:matrix(0.342990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342990,0.000000,0.000000,0.250000,0,0);}
.mbe_c00376{transform:matrix(0.343255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343255,0.000000,0.000000,0.250000,0,0);}
.m4_c00376{transform:matrix(0.343628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343628,0.000000,0.000000,0.250000,0,0);}
.m28_c00376{transform:matrix(0.345304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345304,0.000000,0.000000,0.250000,0,0);}
.m8e_c00376{transform:matrix(0.345429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345429,0.000000,0.000000,0.250000,0,0);}
.mc2_c00376{transform:matrix(0.346681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346681,0.000000,0.000000,0.250000,0,0);}
.m29_c00376{transform:matrix(0.347281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347281,0.000000,0.000000,0.250000,0,0);}
.ma_c00376{transform:matrix(0.349724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349724,0.000000,0.000000,0.250000,0,0);}
.mde_c00376{transform:matrix(0.350034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350034,0.000000,0.000000,0.250000,0,0);}
.mb4_c00376{transform:matrix(0.350152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350152,0.000000,0.000000,0.250000,0,0);}
.m9e_c00376{transform:matrix(0.350950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350950,0.000000,0.000000,0.250000,0,0);}
.me0_c00376{transform:matrix(0.352078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352078,0.000000,0.000000,0.250000,0,0);}
.md9_c00376{transform:matrix(0.352732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352732,0.000000,0.000000,0.250000,0,0);}
.m32_c00376{transform:matrix(0.352811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352811,0.000000,0.000000,0.250000,0,0);}
.m89_c00376{transform:matrix(0.353732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353732,0.000000,0.000000,0.250000,0,0);}
.md7_c00376{transform:matrix(0.354168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354168,0.000000,0.000000,0.250000,0,0);}
.m5_c00376{transform:matrix(0.355673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355673,0.000000,0.000000,0.250000,0,0);}
.m97_c00376{transform:matrix(0.356182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356182,0.000000,0.000000,0.250000,0,0);}
.mcd_c00376{transform:matrix(0.359468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359468,0.000000,0.000000,0.250000,0,0);}
.m6d_c00376{transform:matrix(0.359793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359793,0.000000,0.000000,0.250000,0,0);}
.m30_c00376{transform:matrix(0.360121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360121,0.000000,0.000000,0.250000,0,0);}
.m59_c00376{transform:matrix(0.360342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360342,0.000000,0.000000,0.250000,0,0);}
.maa_c00376{transform:matrix(0.360679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360679,0.000000,0.000000,0.250000,0,0);}
.m96_c00376{transform:matrix(0.368674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368674,0.000000,0.000000,0.250000,0,0);}
.m41_c00376{transform:matrix(0.368933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368933,0.000000,0.000000,0.250000,0,0);}
.m9_c00376{transform:matrix(0.369210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369210,0.000000,0.000000,0.250000,0,0);}
.md_c00376{transform:matrix(0.370565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370565,0.000000,0.000000,0.250000,0,0);}
.m4f_c00376{transform:matrix(0.371147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371147,0.000000,0.000000,0.250000,0,0);}
.m18_c00376{transform:matrix(0.372426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372426,0.000000,0.000000,0.250000,0,0);}
.m7e_c00376{transform:matrix(0.373048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373048,0.000000,0.000000,0.250000,0,0);}
.m73_c00376{transform:matrix(0.373337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373337,0.000000,0.000000,0.250000,0,0);}
.m51_c00376{transform:matrix(0.374110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374110,0.000000,0.000000,0.250000,0,0);}
.mdc_c00376{transform:matrix(0.375687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375687,0.000000,0.000000,0.250000,0,0);}
.mc9_c00376{transform:matrix(0.376420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376420,0.000000,0.000000,0.250000,0,0);}
.mc0_c00376{transform:matrix(0.380621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380621,0.000000,0.000000,0.250000,0,0);}
.md0_c00376{transform:matrix(0.384557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384557,0.000000,0.000000,0.250000,0,0);}
.mc_c00376{transform:matrix(0.387045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387045,0.000000,0.000000,0.250000,0,0);}
.m70_c00376{transform:matrix(0.388697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388697,0.000000,0.000000,0.250000,0,0);}
.m43_c00376{transform:matrix(0.395558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395558,0.000000,0.000000,0.250000,0,0);}
.m3b_c00376{transform:matrix(0.396858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396858,0.000000,0.000000,0.250000,0,0);}
.mb2_c00376{transform:matrix(0.419046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419046,0.000000,0.000000,0.250000,0,0);}
.m24_c00376{transform:matrix(0.448304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448304,0.000000,0.000000,0.250000,0,0);}
.m8b_c00376{transform:matrix(0.464508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464508,0.000000,0.000000,0.250000,0,0);}
.m7c_c00376{transform:matrix(0.472954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472954,0.000000,0.000000,0.250000,0,0);}
.m37_c00376{transform:matrix(1.062377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.062377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.062377,0.000000,0.000000,0.250000,0,0);}
.v2_c00376{vertical-align:-2.851200px;}
.v0_c00376{vertical-align:0.000000px;}
.v1_c00376{vertical-align:39.936600px;}
.lsa_c00376{letter-spacing:-2.508667px;}
.ls19_c00376{letter-spacing:-2.372482px;}
.lsf_c00376{letter-spacing:-2.343812px;}
.ls1b_c00376{letter-spacing:-2.236297px;}
.ls20_c00376{letter-spacing:-1.935257px;}
.ls1a_c00376{letter-spacing:-1.753290px;}
.ls1e_c00376{letter-spacing:-1.649340px;}
.ls7_c00376{letter-spacing:-1.274489px;}
.ls16_c00376{letter-spacing:-1.132484px;}
.ls12_c00376{letter-spacing:-0.860114px;}
.lsd_c00376{letter-spacing:-0.630751px;}
.lsb_c00376{letter-spacing:-0.200693px;}
.ls6_c00376{letter-spacing:0.000000px;}
.ls1f_c00376{letter-spacing:0.308208px;}
.lse_c00376{letter-spacing:1.118146px;}
.ls18_c00376{letter-spacing:1.469362px;}
.ls15_c00376{letter-spacing:2.085777px;}
.ls17_c00376{letter-spacing:2.107280px;}
.ls24_c00376{letter-spacing:2.673522px;}
.ls22_c00376{letter-spacing:3.078900px;}
.ls1d_c00376{letter-spacing:3.132250px;}
.ls21_c00376{letter-spacing:3.544200px;}
.ls9_c00376{letter-spacing:3.583810px;}
.ls11_c00376{letter-spacing:3.960000px;}
.ls4_c00376{letter-spacing:5.949218px;}
.ls10_c00376{letter-spacing:9.979398px;}
.ls5_c00376{letter-spacing:10.106426px;}
.ls3_c00376{letter-spacing:12.113541px;}
.ls0_c00376{letter-spacing:18.561246px;}
.ls1_c00376{letter-spacing:21.145146px;}
.ls8_c00376{letter-spacing:31.363200px;}
.lsc_c00376{letter-spacing:49.896198px;}
.ls14_c00376{letter-spacing:51.321798px;}
.ls1c_c00376{letter-spacing:52.747398px;}
.ls23_c00376{letter-spacing:55.598598px;}
.ls2_c00376{letter-spacing:57.024198px;}
.ls13_c00376{letter-spacing:61.300998px;}
.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:-108.345976px;}
.ws9_c00376{word-spacing:-18.227257px;}
.ws6_c00376{word-spacing:-17.919050px;}
.ws1_c00376{word-spacing:-17.288299px;}
.wsc_c00376{word-spacing:-17.118684px;}
.wsb_c00376{word-spacing:-15.983792px;}
.ws3_c00376{word-spacing:-15.546567px;}
.wsd_c00376{word-spacing:0.000000px;}
.ws0_c00376{word-spacing:1.075827px;}
.ws7_c00376{word-spacing:3.226097px;}
.ws4_c00376{word-spacing:6.019877px;}
.ws5_c00376{word-spacing:6.379059px;}
.wsa_c00376{word-spacing:10.464789px;}
.ws8_c00376{word-spacing:10.464987px;}
._19_c00376{margin-left:-12.889800px;}
._2_c00376{margin-left:-8.457922px;}
._1a_c00376{margin-left:-2.042172px;}
._7_c00376{width:3.755751px;}
._1b_c00376{width:5.999301px;}
._12_c00376{width:7.310468px;}
._6_c00376{width:9.246908px;}
._f_c00376{width:11.611028px;}
._18_c00376{width:12.830939px;}
._4_c00376{width:13.905848px;}
._16_c00376{width:15.339368px;}
._10_c00376{width:16.628359px;}
._d_c00376{width:19.424119px;}
._13_c00376{width:21.287717px;}
._0_c00376{width:23.366486px;}
._9_c00376{width:25.588277px;}
._c_c00376{width:27.165347px;}
._14_c00376{width:29.387419px;}
._17_c00376{width:31.305244px;}
._15_c00376{width:32.981119px;}
._e_c00376{width:34.244359px;}
._3_c00376{width:35.408191px;}
._11_c00376{width:38.634177px;}
._1_c00376{width:40.927095px;}
._8_c00376{width:44.295267px;}
._5_c00376{width:53.254767px;}
._b_c00376{width:136.102361px;}
._a_c00376{width:305.355600px;}
.fc0_c00376{color:transparent;}
.fsb_c00376{font-size:9.979398px;}
.fs0_c00376{font-size:22.176000px;}
.fsf_c00376{font-size:27.522000px;}
.fs1a_c00376{font-size:27.720000px;}
.fs9_c00376{font-size:30.888000px;}
.fs4_c00376{font-size:31.363200px;}
.fs1b_c00376{font-size:33.264000px;}
.fs2_c00376{font-size:36.432000px;}
.fs17_c00376{font-size:37.818000px;}
.fs16_c00376{font-size:39.600000px;}
.fsa_c00376{font-size:45.144000px;}
.fs15_c00376{font-size:47.124000px;}
.fs6_c00376{font-size:49.896198px;}
.fs13_c00376{font-size:50.094000px;}
.fsd_c00376{font-size:50.292000px;}
.fse_c00376{font-size:51.321798px;}
.fs14_c00376{font-size:52.747398px;}
.fs19_c00376{font-size:55.598598px;}
.fs10_c00376{font-size:57.024198px;}
.fsc_c00376{font-size:61.300998px;}
.fs11_c00376{font-size:61.578000px;}
.fs7_c00376{font-size:64.548000px;}
.fs12_c00376{font-size:68.706198px;}
.fs18_c00376{font-size:70.884000px;}
.fs5_c00376{font-size:71.676198px;}
.fs3_c00376{font-size:73.656198px;}
.fs8_c00376{font-size:79.200000px;}
.fs1_c00376{font-size:85.536198px;}
.y0_c00376{bottom:0.000000px;}
.y27_c00376{bottom:53.015535px;}
.y1_c00376{bottom:76.500000px;}
.y26_c00376{bottom:149.599935px;}
.y25_c00376{bottom:180.250335px;}
.y24_c00376{bottom:214.464735px;}
.y28_c00376{bottom:216.954585px;}
.y23_c00376{bottom:251.886735px;}
.y22_c00376{bottom:306.054585px;}
.y21_c00376{bottom:310.687785px;}
.y20_c00376{bottom:343.120185px;}
.y1f_c00376{bottom:375.196185px;}
.y1d_c00376{bottom:407.986866px;}
.y1e_c00376{bottom:407.989935px;}
.y1b_c00376{bottom:440.772696px;}
.y1c_c00376{bottom:440.778735px;}
.y1a_c00376{bottom:473.206185px;}
.y19_c00376{bottom:504.930735px;}
.y18_c00376{bottom:537.006735px;}
.y17_c00376{bottom:601.158735px;}
.y16_c00376{bottom:633.229785px;}
.y15_c00376{bottom:664.954335px;}
.y14_c00376{bottom:697.743135px;}
.y13_c00376{bottom:723.398985px;}
.y12_c00376{bottom:729.101385px;}
.y11_c00376{bottom:729.814185px;}
.y10_c00376{bottom:730.175535px;}
.y2_c00376{bottom:732.308985px;}
.ye_c00376{bottom:762.246585px;}
.yf_c00376{bottom:772.230735px;}
.yd_c00376{bottom:790.402185px;}
.yc_c00376{bottom:794.327535px;}
.yb_c00376{bottom:794.678985px;}
.ya_c00376{bottom:858.474585px;}
.y9_c00376{bottom:890.911935px;}
.y8_c00376{bottom:916.211385px;}
.y7_c00376{bottom:924.052185px;}
.y6_c00376{bottom:987.847785px;}
.y5_c00376{bottom:1001.034585px;}
.y4_c00376{bottom:1014.934185px;}
.y3_c00376{bottom:1073.740185px;}
.hc_c00376{height:6.646279px;}
.h6_c00376{height:20.887891px;}
.h2_c00376{height:23.128875px;}
.hf_c00376{height:28.704586px;}
.h19_c00376{height:28.911094px;}
.h8_c00376{height:33.230868px;}
.he_c00376{height:34.180317px;}
.h1a_c00376{height:34.693313px;}
.h13_c00376{height:35.129767px;}
.h4_c00376{height:35.738227px;}
.h18_c00376{height:37.028666px;}
.h10_c00376{height:37.978116px;}
.hd_c00376{height:40.826465px;}
.h15_c00376{height:41.301563px;}
.h14_c00376{height:49.148859px;}
.h12_c00376{height:49.164521px;}
.h17_c00376{height:64.223930px;}
.h9_c00376{height:67.321547px;}
.h11_c00376{height:67.431376px;}
.h16_c00376{height:69.568770px;}
.h7_c00376{height:70.346269px;}
.h5_c00376{height:76.821113px;}
.ha_c00376{height:82.603125px;}
.h3_c00376{height:83.949101px;}
.hb_c00376{height:87.020381px;}
.h1_c00376{height:1110.000000px;}
.h0_c00376{height:1263.000000px;}
.w1_c00376{width:775.500000px;}
.w0_c00376{width:892.500000px;}
.x0_c00376{left:0.000000px;}
.x2_c00376{left:50.155035px;}
.x1_c00376{left:58.500000px;}
.x37_c00376{left:98.145285px;}
.x6_c00376{left:99.560985px;}
.x63_c00376{left:101.407335px;}
.x72_c00376{left:103.570485px;}
.x7_c00376{left:109.708485px;}
.x38_c00376{left:119.549085px;}
.x39_c00376{left:131.097435px;}
.x26_c00376{left:132.592335px;}
.x60_c00376{left:140.769735px;}
.x18_c00376{left:142.145835px;}
.x73_c00376{left:144.145635px;}
.x59_c00376{left:152.337885px;}
.x30_c00376{left:153.520935px;}
.x6d_c00376{left:154.768335px;}
.x61_c00376{left:161.440935px;}
.x45_c00376{left:163.465485px;}
.x8_c00376{left:164.668335px;}
.x74_c00376{left:166.583985px;}
.x4d_c00376{left:174.647535px;}
.x27_c00376{left:176.563185px;}
.x3a_c00376{left:185.641485px;}
.x75_c00376{left:187.472985px;}
.x67_c00376{left:188.502585px;}
.x5c_c00376{left:197.501685px;}
.x17_c00376{left:198.773835px;}
.x62_c00376{left:207.362085px;}
.x31_c00376{left:208.500585px;}
.x4e_c00376{left:209.827185px;}
.x5f_c00376{left:219.316335px;}
.x28_c00376{left:220.603335px;}
.x51_c00376{left:222.093285px;}
.x55_c00376{left:229.810335px;}
.x64_c00376{left:231.805185px;}
.x6e_c00376{left:233.913885px;}
.x46_c00376{left:241.274535px;}
.x19_c00376{left:243.219885px;}
.x68_c00376{left:251.580435px;}
.x9_c00376{left:253.347585px;}
.x1a_c00376{left:265.301835px;}
.x4f_c00376{left:276.013635px;}
.x57_c00376{left:285.428535px;}
.x29_c00376{left:287.091735px;}
.x56_c00376{left:289.581585px;}
.x1b_c00376{left:296.922435px;}
.x32_c00376{left:300.214185px;}
.x36_c00376{left:302.392185px;}
.x65_c00376{left:306.842235px;}
.x1c_c00376{left:308.936085px;}
.xa_c00376{left:319.811235px;}
.x76_c00376{left:320.845785px;}
.x33_c00376{left:330.032985px;}
.x1d_c00376{left:331.052685px;}
.x52_c00376{left:333.290085px;}
.xb_c00376{left:341.942685px;}
.x1e_c00376{left:351.728835px;}
.x2a_c00376{left:352.941585px;}
.x47_c00376{left:362.757435px;}
.x50_c00376{left:364.376085px;}
.x3b_c00376{left:375.117585px;}
.x69_c00376{left:384.537435px;}
.xc_c00376{left:386.284785px;}
.x1f_c00376{left:397.169835px;}
.x58_c00376{left:408.926085px;}
.x2b_c00376{left:418.014285px;}
.xd_c00376{left:419.256735px;}
.x2c_c00376{left:429.948735px;}
.x6f_c00376{left:433.730535px;}
.x3c_c00376{left:440.650635px;}
.xe_c00376{left:441.764385px;}
.x53_c00376{left:452.278185px;}
.xf_c00376{left:453.481035px;}
.x5a_c00376{left:463.103835px;}
.x48_c00376{left:472.924635px;}
.x54_c00376{left:474.325485px;}
.x5d_c00376{left:484.468035px;}
.x20_c00376{left:485.557035px;}
.x6a_c00376{left:495.338235px;}
.x10_c00376{left:496.734135px;}
.x70_c00376{left:506.426235px;}
.x2d_c00376{left:507.678585px;}
.x2e_c00376{left:518.979435px;}
.x11_c00376{left:530.156535px;}
.x21_c00376{left:541.318785px;}
.x3f_c00376{left:551.520735px;}
.x40_c00376{left:554.069985px;}
.x12_c00376{left:561.668235px;}
.x2f_c00376{left:562.880985px;}
.x34_c00376{left:563.935335px;}
.x49_c00376{left:572.360235px;}
.x6b_c00376{left:573.949185px;}
.x41_c00376{left:584.453085px;}
.x13_c00376{left:595.699485px;}
.x35_c00376{left:596.709285px;}
.x3d_c00376{left:599.095185px;}
.x14_c00376{left:606.896385px;}
.x6c_c00376{left:616.197435px;}
.x66_c00376{left:618.043785px;}
.x15_c00376{left:629.003085px;}
.x42_c00376{left:640.031685px;}
.x22_c00376{left:651.273135px;}
.x4a_c00376{left:662.628435px;}
.x23_c00376{left:673.701585px;}
.x3_c00376{left:675.820185px;}
.x43_c00376{left:684.037185px;}
.x5e_c00376{left:686.838885px;}
.x4b_c00376{left:694.971735px;}
.x4_c00376{left:698.451585px;}
.x5_c00376{left:699.857385px;}
.x5b_c00376{left:705.678585px;}
.x16_c00376{left:706.802235px;}
.x24_c00376{left:717.083385px;}
.x4c_c00376{left:718.494135px;}
.x71_c00376{left:728.606985px;}
.x25_c00376{left:729.631635px;}
.x3e_c00376{left:730.784985px;}
.x44_c00376{left:739.298985px;}
.x77_c00376{left:768.969285px;}
@media print{
.v2_c00376{vertical-align:-2.534400pt;}
.v0_c00376{vertical-align:0.000000pt;}
.v1_c00376{vertical-align:35.499200pt;}
.lsa_c00376{letter-spacing:-2.229926pt;}
.ls19_c00376{letter-spacing:-2.108873pt;}
.lsf_c00376{letter-spacing:-2.083388pt;}
.ls1b_c00376{letter-spacing:-1.987820pt;}
.ls20_c00376{letter-spacing:-1.720229pt;}
.ls1a_c00376{letter-spacing:-1.558480pt;}
.ls1e_c00376{letter-spacing:-1.466080pt;}
.ls7_c00376{letter-spacing:-1.132879pt;}
.ls16_c00376{letter-spacing:-1.006652pt;}
.ls12_c00376{letter-spacing:-0.764546pt;}
.lsd_c00376{letter-spacing:-0.560667pt;}
.lsb_c00376{letter-spacing:-0.178394pt;}
.ls6_c00376{letter-spacing:0.000000pt;}
.ls1f_c00376{letter-spacing:0.273962pt;}
.lse_c00376{letter-spacing:0.993907pt;}
.ls18_c00376{letter-spacing:1.306100pt;}
.ls15_c00376{letter-spacing:1.854024pt;}
.ls17_c00376{letter-spacing:1.873138pt;}
.ls24_c00376{letter-spacing:2.376464pt;}
.ls22_c00376{letter-spacing:2.736800pt;}
.ls1d_c00376{letter-spacing:2.784222pt;}
.ls21_c00376{letter-spacing:3.150400pt;}
.ls9_c00376{letter-spacing:3.185609pt;}
.ls11_c00376{letter-spacing:3.520000pt;}
.ls4_c00376{letter-spacing:5.288194pt;}
.ls10_c00376{letter-spacing:8.870576pt;}
.ls5_c00376{letter-spacing:8.983490pt;}
.ls3_c00376{letter-spacing:10.767592pt;}
.ls0_c00376{letter-spacing:16.498885pt;}
.ls1_c00376{letter-spacing:18.795685pt;}
.ls8_c00376{letter-spacing:27.878400pt;}
.lsc_c00376{letter-spacing:44.352176pt;}
.ls14_c00376{letter-spacing:45.619376pt;}
.ls1c_c00376{letter-spacing:46.886576pt;}
.ls23_c00376{letter-spacing:49.420976pt;}
.ls2_c00376{letter-spacing:50.688176pt;}
.ls13_c00376{letter-spacing:54.489776pt;}
.ws2_c00376{word-spacing:-96.307534pt;}
.ws9_c00376{word-spacing:-16.202006pt;}
.ws6_c00376{word-spacing:-15.928044pt;}
.ws1_c00376{word-spacing:-15.367377pt;}
.wsc_c00376{word-spacing:-15.216608pt;}
.wsb_c00376{word-spacing:-14.207815pt;}
.ws3_c00376{word-spacing:-13.819171pt;}
.wsd_c00376{word-spacing:0.000000pt;}
.ws0_c00376{word-spacing:0.956291pt;}
.ws7_c00376{word-spacing:2.867641pt;}
.ws4_c00376{word-spacing:5.351001pt;}
.ws5_c00376{word-spacing:5.670275pt;}
.wsa_c00376{word-spacing:9.302035pt;}
.ws8_c00376{word-spacing:9.302211pt;}
._19_c00376{margin-left:-11.457600pt;}
._2_c00376{margin-left:-7.518153pt;}
._1a_c00376{margin-left:-1.815264pt;}
._7_c00376{width:3.338445pt;}
._1b_c00376{width:5.332712pt;}
._12_c00376{width:6.498194pt;}
._6_c00376{width:8.219474pt;}
._f_c00376{width:10.320914pt;}
._18_c00376{width:11.405279pt;}
._4_c00376{width:12.360754pt;}
._16_c00376{width:13.634994pt;}
._10_c00376{width:14.780764pt;}
._d_c00376{width:17.265884pt;}
._13_c00376{width:18.922415pt;}
._0_c00376{width:20.770210pt;}
._9_c00376{width:22.745135pt;}
._c_c00376{width:24.146975pt;}
._14_c00376{width:26.122150pt;}
._17_c00376{width:27.826884pt;}
._15_c00376{width:29.316550pt;}
._e_c00376{width:30.439430pt;}
._3_c00376{width:31.473948pt;}
._11_c00376{width:34.341491pt;}
._1_c00376{width:36.379640pt;}
._8_c00376{width:39.373571pt;}
._5_c00376{width:47.337571pt;}
._b_c00376{width:120.979877pt;}
._a_c00376{width:271.427200pt;}
.fsb_c00376{font-size:8.870576pt;}
.fs0_c00376{font-size:19.712000pt;}
.fsf_c00376{font-size:24.464000pt;}
.fs1a_c00376{font-size:24.640000pt;}
.fs9_c00376{font-size:27.456000pt;}
.fs4_c00376{font-size:27.878400pt;}
.fs1b_c00376{font-size:29.568000pt;}
.fs2_c00376{font-size:32.384000pt;}
.fs17_c00376{font-size:33.616000pt;}
.fs16_c00376{font-size:35.200000pt;}
.fsa_c00376{font-size:40.128000pt;}
.fs15_c00376{font-size:41.888000pt;}
.fs6_c00376{font-size:44.352176pt;}
.fs13_c00376{font-size:44.528000pt;}
.fsd_c00376{font-size:44.704000pt;}
.fse_c00376{font-size:45.619376pt;}
.fs14_c00376{font-size:46.886576pt;}
.fs19_c00376{font-size:49.420976pt;}
.fs10_c00376{font-size:50.688176pt;}
.fsc_c00376{font-size:54.489776pt;}
.fs11_c00376{font-size:54.736000pt;}
.fs7_c00376{font-size:57.376000pt;}
.fs12_c00376{font-size:61.072176pt;}
.fs18_c00376{font-size:63.008000pt;}
.fs5_c00376{font-size:63.712176pt;}
.fs3_c00376{font-size:65.472176pt;}
.fs8_c00376{font-size:70.400000pt;}
.fs1_c00376{font-size:76.032176pt;}
.y0_c00376{bottom:0.000000pt;}
.y27_c00376{bottom:47.124920pt;}
.y1_c00376{bottom:68.000000pt;}
.y26_c00376{bottom:132.977720pt;}
.y25_c00376{bottom:160.222520pt;}
.y24_c00376{bottom:190.635320pt;}
.y28_c00376{bottom:192.848520pt;}
.y23_c00376{bottom:223.899320pt;}
.y22_c00376{bottom:272.048520pt;}
.y21_c00376{bottom:276.166920pt;}
.y20_c00376{bottom:304.995720pt;}
.y1f_c00376{bottom:333.507720pt;}
.y1d_c00376{bottom:362.654992pt;}
.y1e_c00376{bottom:362.657720pt;}
.y1b_c00376{bottom:391.797952pt;}
.y1c_c00376{bottom:391.803320pt;}
.y1a_c00376{bottom:420.627720pt;}
.y19_c00376{bottom:448.827320pt;}
.y18_c00376{bottom:477.339320pt;}
.y17_c00376{bottom:534.363320pt;}
.y16_c00376{bottom:562.870920pt;}
.y15_c00376{bottom:591.070520pt;}
.y14_c00376{bottom:620.216120pt;}
.y13_c00376{bottom:643.021320pt;}
.y12_c00376{bottom:648.090120pt;}
.y11_c00376{bottom:648.723720pt;}
.y10_c00376{bottom:649.044920pt;}
.y2_c00376{bottom:650.941320pt;}
.ye_c00376{bottom:677.552520pt;}
.yf_c00376{bottom:686.427320pt;}
.yd_c00376{bottom:702.579720pt;}
.yc_c00376{bottom:706.068920pt;}
.yb_c00376{bottom:706.381320pt;}
.ya_c00376{bottom:763.088520pt;}
.y9_c00376{bottom:791.921720pt;}
.y8_c00376{bottom:814.410120pt;}
.y7_c00376{bottom:821.379720pt;}
.y6_c00376{bottom:878.086920pt;}
.y5_c00376{bottom:889.808520pt;}
.y4_c00376{bottom:902.163720pt;}
.y3_c00376{bottom:954.435720pt;}
.hc_c00376{height:5.907804pt;}
.h6_c00376{height:18.567014pt;}
.h2_c00376{height:20.559000pt;}
.hf_c00376{height:25.515188pt;}
.h19_c00376{height:25.698750pt;}
.h8_c00376{height:29.538549pt;}
.he_c00376{height:30.382504pt;}
.h1a_c00376{height:30.838500pt;}
.h13_c00376{height:31.226460pt;}
.h4_c00376{height:31.767313pt;}
.h18_c00376{height:32.914370pt;}
.h10_c00376{height:33.758325pt;}
.hd_c00376{height:36.290191pt;}
.h15_c00376{height:36.712500pt;}
.h14_c00376{height:43.687875pt;}
.h12_c00376{height:43.701797pt;}
.h17_c00376{height:57.087938pt;}
.h9_c00376{height:59.841375pt;}
.h11_c00376{height:59.939001pt;}
.h16_c00376{height:61.838906pt;}
.h7_c00376{height:62.530016pt;}
.h5_c00376{height:68.285434pt;}
.ha_c00376{height:73.425000pt;}
.h3_c00376{height:74.621423pt;}
.hb_c00376{height:77.351450pt;}
.h1_c00376{height:986.666667pt;}
.h0_c00376{height:1122.666667pt;}
.w1_c00376{width:689.333333pt;}
.w0_c00376{width:793.333333pt;}
.x0_c00376{left:0.000000pt;}
.x2_c00376{left:44.582253pt;}
.x1_c00376{left:52.000000pt;}
.x37_c00376{left:87.240253pt;}
.x6_c00376{left:88.498653pt;}
.x63_c00376{left:90.139853pt;}
.x72_c00376{left:92.062653pt;}
.x7_c00376{left:97.518653pt;}
.x38_c00376{left:106.265853pt;}
.x39_c00376{left:116.531053pt;}
.x26_c00376{left:117.859853pt;}
.x60_c00376{left:125.128653pt;}
.x18_c00376{left:126.351853pt;}
.x73_c00376{left:128.129453pt;}
.x59_c00376{left:135.411453pt;}
.x30_c00376{left:136.463053pt;}
.x6d_c00376{left:137.571853pt;}
.x61_c00376{left:143.503053pt;}
.x45_c00376{left:145.302653pt;}
.x8_c00376{left:146.371853pt;}
.x74_c00376{left:148.074653pt;}
.x4d_c00376{left:155.242253pt;}
.x27_c00376{left:156.945053pt;}
.x3a_c00376{left:165.014653pt;}
.x75_c00376{left:166.642653pt;}
.x67_c00376{left:167.557853pt;}
.x5c_c00376{left:175.557053pt;}
.x17_c00376{left:176.687853pt;}
.x62_c00376{left:184.321853pt;}
.x31_c00376{left:185.333853pt;}
.x4e_c00376{left:186.513053pt;}
.x5f_c00376{left:194.947853pt;}
.x28_c00376{left:196.091853pt;}
.x51_c00376{left:197.416253pt;}
.x55_c00376{left:204.275853pt;}
.x64_c00376{left:206.049053pt;}
.x6e_c00376{left:207.923453pt;}
.x46_c00376{left:214.466253pt;}
.x19_c00376{left:216.195453pt;}
.x68_c00376{left:223.627053pt;}
.x9_c00376{left:225.197853pt;}
.x1a_c00376{left:235.823853pt;}
.x4f_c00376{left:245.345453pt;}
.x57_c00376{left:253.714253pt;}
.x29_c00376{left:255.192653pt;}
.x56_c00376{left:257.405853pt;}
.x1b_c00376{left:263.931053pt;}
.x32_c00376{left:266.857053pt;}
.x36_c00376{left:268.793053pt;}
.x65_c00376{left:272.748653pt;}
.x1c_c00376{left:274.609853pt;}
.xa_c00376{left:284.276653pt;}
.x76_c00376{left:285.196253pt;}
.x33_c00376{left:293.362653pt;}
.x1d_c00376{left:294.269053pt;}
.x52_c00376{left:296.257853pt;}
.xb_c00376{left:303.949053pt;}
.x1e_c00376{left:312.647853pt;}
.x2a_c00376{left:313.725853pt;}
.x47_c00376{left:322.451053pt;}
.x50_c00376{left:323.889853pt;}
.x3b_c00376{left:333.437853pt;}
.x69_c00376{left:341.811053pt;}
.xc_c00376{left:343.364253pt;}
.x1f_c00376{left:353.039853pt;}
.x58_c00376{left:363.489853pt;}
.x2b_c00376{left:371.568253pt;}
.xd_c00376{left:372.672653pt;}
.x2c_c00376{left:382.176653pt;}
.x6f_c00376{left:385.538253pt;}
.x3c_c00376{left:391.689453pt;}
.xe_c00376{left:392.679453pt;}
.x53_c00376{left:402.025053pt;}
.xf_c00376{left:403.094253pt;}
.x5a_c00376{left:411.647853pt;}
.x48_c00376{left:420.377453pt;}
.x54_c00376{left:421.622653pt;}
.x5d_c00376{left:430.638253pt;}
.x20_c00376{left:431.606253pt;}
.x6a_c00376{left:440.300653pt;}
.x10_c00376{left:441.541453pt;}
.x70_c00376{left:450.156653pt;}
.x2d_c00376{left:451.269853pt;}
.x2e_c00376{left:461.315053pt;}
.x11_c00376{left:471.250253pt;}
.x21_c00376{left:481.172253pt;}
.x3f_c00376{left:490.240653pt;}
.x40_c00376{left:492.506653pt;}
.x12_c00376{left:499.260653pt;}
.x2f_c00376{left:500.338653pt;}
.x34_c00376{left:501.275853pt;}
.x49_c00376{left:508.764653pt;}
.x6b_c00376{left:510.177053pt;}
.x41_c00376{left:519.513853pt;}
.x13_c00376{left:529.510653pt;}
.x35_c00376{left:530.408253pt;}
.x3d_c00376{left:532.529053pt;}
.x14_c00376{left:539.463453pt;}
.x6c_c00376{left:547.731053pt;}
.x66_c00376{left:549.372253pt;}
.x15_c00376{left:559.113853pt;}
.x42_c00376{left:568.917053pt;}
.x22_c00376{left:578.909453pt;}
.x4a_c00376{left:589.003053pt;}
.x23_c00376{left:598.845853pt;}
.x3_c00376{left:600.729053pt;}
.x43_c00376{left:608.033053pt;}
.x5e_c00376{left:610.523453pt;}
.x4b_c00376{left:617.752653pt;}
.x4_c00376{left:620.845853pt;}
.x5_c00376{left:622.095453pt;}
.x5b_c00376{left:627.269853pt;}
.x16_c00376{left:628.268653pt;}
.x24_c00376{left:637.407453pt;}
.x4c_c00376{left:638.661453pt;}
.x71_c00376{left:647.650653pt;}
.x25_c00376{left:648.561453pt;}
.x3e_c00376{left:649.586653pt;}
.x44_c00376{left:657.154653pt;}
.x77_c00376{left:683.528253pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0dba538922b8c9b52d721764.woff2')format("woff");}.ff1_c00377{font-family:ff1_c00377;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00377;src:url('chunks/assets/font_78a40372847f834e66051b48.woff2')format("woff");}.ff2_c00377{font-family:ff2_c00377;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00377;src:url('chunks/assets/font_b996c4b7fec5d155698e1762.woff2')format("woff");}.ff3_c00377{font-family:ff3_c00377;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00377;src:url('chunks/assets/font_0f69fba72078541e4cbbee46.woff2')format("woff");}.ff4_c00377{font-family:ff4_c00377;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00377;src:url('chunks/assets/font_27556105acce77b7deb103d1.woff2')format("woff");}.ff5_c00377{font-family:ff5_c00377;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00377;src:url('chunks/assets/font_06e879c30f792bc2ed74c39a.woff2')format("woff");}.ff6_c00377{font-family:ff6_c00377;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00377;src:url('chunks/assets/font_120f61978de4f922792a3614.woff2')format("woff");}.ff7_c00377{font-family:ff7_c00377;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m45_c00377{transform:matrix(0.037880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.037880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.037880,0.000000,0.000000,0.250000,0,0);}
.m47_c00377{transform:matrix(0.045456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045456,0.000000,0.000000,0.250000,0,0);}
.m44_c00377{transform:matrix(0.055557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.055557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.055557,0.000000,0.000000,0.250000,0,0);}
.meb_c00377{transform:matrix(0.071429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071429,0.000000,0.000000,0.250000,0,0);}
.m69_c00377{transform:matrix(0.080357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080357,0.000000,0.000000,0.250000,0,0);}
.mee_c00377{transform:matrix(0.092858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092858,0.000000,0.000000,0.250000,0,0);}
.m87_c00377{transform:matrix(0.108456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108456,0.000000,0.000000,0.250000,0,0);}
.mbe_c00377{transform:matrix(0.108956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108956,0.000000,0.000000,0.250000,0,0);}
.m6b_c00377{transform:matrix(0.122449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122449,0.000000,0.000000,0.250000,0,0);}
.m1c_c00377{transform:matrix(0.132485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132485,0.000000,0.000000,0.250000,0,0);}
.m6c_c00377{transform:matrix(0.136905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136905,0.000000,0.000000,0.250000,0,0);}
.m6e_c00377{transform:matrix(0.140477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140477,0.000000,0.000000,0.250000,0,0);}
.mcf_c00377{transform:matrix(0.149504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149504,0.000000,0.000000,0.250000,0,0);}
.me9_c00377{transform:matrix(0.157142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157142,0.000000,0.000000,0.250000,0,0);}
.m78_c00377{transform:matrix(0.161680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161680,0.000000,0.000000,0.250000,0,0);}
.m95_c00377{transform:matrix(0.162892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162892,0.000000,0.000000,0.250000,0,0);}
.m9f_c00377{transform:matrix(0.170731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170731,0.000000,0.000000,0.250000,0,0);}
.m6a_c00377{transform:matrix(0.172619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172619,0.000000,0.000000,0.250000,0,0);}
.m68_c00377{transform:matrix(0.174107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174107,0.000000,0.000000,0.250000,0,0);}
.m88_c00377{transform:matrix(0.176471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176471,0.000000,0.000000,0.250000,0,0);}
.m6d_c00377{transform:matrix(0.177381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177381,0.000000,0.000000,0.250000,0,0);}
.m7d_c00377{transform:matrix(0.181314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181314,0.000000,0.000000,0.250000,0,0);}
.m9d_c00377{transform:matrix(0.182926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182926,0.000000,0.000000,0.250000,0,0);}
.m1b_c00377{transform:matrix(0.184733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184733,0.000000,0.000000,0.250000,0,0);}
.mdb_c00377{transform:matrix(0.188920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188920,0.000000,0.000000,0.250000,0,0);}
.med_c00377{transform:matrix(0.189285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189285,0.000000,0.000000,0.250000,0,0);}
.m7e_c00377{transform:matrix(0.192257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192257,0.000000,0.000000,0.250000,0,0);}
.m8a_c00377{transform:matrix(0.196079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196079,0.000000,0.000000,0.250000,0,0);}
.m46_c00377{transform:matrix(0.200758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200758,0.000000,0.000000,0.250000,0,0);}
.m48_c00377{transform:matrix(0.204547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204547,0.000000,0.000000,0.250000,0,0);}
.m67_c00377{transform:matrix(0.205692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205692,0.000000,0.000000,0.250000,0,0);}
.m80_c00377{transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);}
.mea_c00377{transform:matrix(0.211905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211905,0.000000,0.000000,0.250000,0,0);}
.md0_c00377{transform:matrix(0.217281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217281,0.000000,0.000000,0.250000,0,0);}
.mec_c00377{transform:matrix(0.219048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219048,0.000000,0.000000,0.250000,0,0);}
.m1e_c00377{transform:matrix(0.219955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219955,0.000000,0.000000,0.250000,0,0);}
.m89_c00377{transform:matrix(0.220587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220587,0.000000,0.000000,0.250000,0,0);}
.m43_c00377{transform:matrix(0.223486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223486,0.000000,0.000000,0.250000,0,0);}
.md1_c00377{transform:matrix(0.232409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232409,0.000000,0.000000,0.250000,0,0);}
.mac_c00377{transform:matrix(0.235220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235220,0.000000,0.000000,0.250000,0,0);}
.mc_c00377{transform:matrix(0.237625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237625,0.000000,0.000000,0.250000,0,0);}
.m9_c00377{transform:matrix(0.243791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243791,0.000000,0.000000,0.250000,0,0);}
.m1_c00377{transform:matrix(0.249402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249402,0.000000,0.000000,0.250000,0,0);}
.m0_c00377{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00377{transform:matrix(0.250247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250247,0.000000,0.000000,0.250000,0,0);}
.m71_c00377{transform:matrix(0.253645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253645,0.000000,0.000000,0.250000,0,0);}
.me5_c00377{transform:matrix(0.253700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253700,0.000000,0.000000,0.250000,0,0);}
.mbd_c00377{transform:matrix(0.255436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255436,0.000000,0.000000,0.250000,0,0);}
.m38_c00377{transform:matrix(0.255974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255974,0.000000,0.000000,0.250000,0,0);}
.m35_c00377{transform:matrix(0.261102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261102,0.000000,0.000000,0.250000,0,0);}
.m33_c00377{transform:matrix(0.267109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267109,0.000000,0.000000,0.250000,0,0);}
.m62_c00377{transform:matrix(0.267849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267849,0.000000,0.000000,0.250000,0,0);}
.m8b_c00377{transform:matrix(0.268047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268047,0.000000,0.000000,0.250000,0,0);}
.m9e_c00377{transform:matrix(0.268292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268292,0.000000,0.000000,0.250000,0,0);}
.m83_c00377{transform:matrix(0.270173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270173,0.000000,0.000000,0.250000,0,0);}
.m70_c00377{transform:matrix(0.270176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270176,0.000000,0.000000,0.250000,0,0);}
.m42_c00377{transform:matrix(0.273165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273165,0.000000,0.000000,0.250000,0,0);}
.m82_c00377{transform:matrix(0.273930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273930,0.000000,0.000000,0.250000,0,0);}
.m98_c00377{transform:matrix(0.276166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276166,0.000000,0.000000,0.250000,0,0);}
.mb3_c00377{transform:matrix(0.276949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276949,0.000000,0.000000,0.250000,0,0);}
.md_c00377{transform:matrix(0.278337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278337,0.000000,0.000000,0.250000,0,0);}
.m19_c00377{transform:matrix(0.278377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278377,0.000000,0.000000,0.250000,0,0);}
.m3f_c00377{transform:matrix(0.278472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278472,0.000000,0.000000,0.250000,0,0);}
.m3d_c00377{transform:matrix(0.278559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278559,0.000000,0.000000,0.250000,0,0);}
.m2a_c00377{transform:matrix(0.279190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279190,0.000000,0.000000,0.250000,0,0);}
.maa_c00377{transform:matrix(0.279997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279997,0.000000,0.000000,0.250000,0,0);}
.mf_c00377{transform:matrix(0.282283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282283,0.000000,0.000000,0.250000,0,0);}
.mcb_c00377{transform:matrix(0.283338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283338,0.000000,0.000000,0.250000,0,0);}
.mb9_c00377{transform:matrix(0.283358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283358,0.000000,0.000000,0.250000,0,0);}
.m92_c00377{transform:matrix(0.283521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283521,0.000000,0.000000,0.250000,0,0);}
.me4_c00377{transform:matrix(0.283572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283572,0.000000,0.000000,0.250000,0,0);}
.m53_c00377{transform:matrix(0.283605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283605,0.000000,0.000000,0.250000,0,0);}
.m8_c00377{transform:matrix(0.283815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283815,0.000000,0.000000,0.250000,0,0);}
.m91_c00377{transform:matrix(0.283915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283915,0.000000,0.000000,0.250000,0,0);}
.m54_c00377{transform:matrix(0.285153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285153,0.000000,0.000000,0.250000,0,0);}
.m3c_c00377{transform:matrix(0.286154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286154,0.000000,0.000000,0.250000,0,0);}
.mb4_c00377{transform:matrix(0.286538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286538,0.000000,0.000000,0.250000,0,0);}
.mab_c00377{transform:matrix(0.286778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286778,0.000000,0.000000,0.250000,0,0);}
.mf1_c00377{transform:matrix(0.287300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287300,0.000000,0.000000,0.250000,0,0);}
.m75_c00377{transform:matrix(0.291019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291019,0.000000,0.000000,0.250000,0,0);}
.m66_c00377{transform:matrix(0.291042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291042,0.000000,0.000000,0.250000,0,0);}
.m73_c00377{transform:matrix(0.291997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291997,0.000000,0.000000,0.250000,0,0);}
.m5_c00377{transform:matrix(0.292677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292677,0.000000,0.000000,0.250000,0,0);}
.ma0_c00377{transform:matrix(0.292914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292914,0.000000,0.000000,0.250000,0,0);}
.me1_c00377{transform:matrix(0.292955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292955,0.000000,0.000000,0.250000,0,0);}
.m56_c00377{transform:matrix(0.293030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293030,0.000000,0.000000,0.250000,0,0);}
.md3_c00377{transform:matrix(0.293579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293579,0.000000,0.000000,0.250000,0,0);}
.mef_c00377{transform:matrix(0.294235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294235,0.000000,0.000000,0.250000,0,0);}
.m49_c00377{transform:matrix(0.294558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294558,0.000000,0.000000,0.250000,0,0);}
.me0_c00377{transform:matrix(0.295362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295362,0.000000,0.000000,0.250000,0,0);}
.m79_c00377{transform:matrix(0.295539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295539,0.000000,0.000000,0.250000,0,0);}
.m22_c00377{transform:matrix(0.295546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295546,0.000000,0.000000,0.250000,0,0);}
.m29_c00377{transform:matrix(0.296216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296216,0.000000,0.000000,0.250000,0,0);}
.m3e_c00377{transform:matrix(0.297023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297023,0.000000,0.000000,0.250000,0,0);}
.mc9_c00377{transform:matrix(0.298543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298543,0.000000,0.000000,0.250000,0,0);}
.mc1_c00377{transform:matrix(0.298837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298837,0.000000,0.000000,0.250000,0,0);}
.mb6_c00377{transform:matrix(0.299329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299329,0.000000,0.000000,0.250000,0,0);}
.mcc_c00377{transform:matrix(0.299337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299337,0.000000,0.000000,0.250000,0,0);}
.m60_c00377{transform:matrix(0.299489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299489,0.000000,0.000000,0.250000,0,0);}
.m4d_c00377{transform:matrix(0.299859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299859,0.000000,0.000000,0.250000,0,0);}
.md6_c00377{transform:matrix(0.300447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300447,0.000000,0.000000,0.250000,0,0);}
.m9b_c00377{transform:matrix(0.301413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301413,0.000000,0.000000,0.250000,0,0);}
.m26_c00377{transform:matrix(0.301598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301598,0.000000,0.000000,0.250000,0,0);}
.mb2_c00377{transform:matrix(0.302201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302201,0.000000,0.000000,0.250000,0,0);}
.md8_c00377{transform:matrix(0.302459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302459,0.000000,0.000000,0.250000,0,0);}
.m2f_c00377{transform:matrix(0.302994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302994,0.000000,0.000000,0.250000,0,0);}
.mdf_c00377{transform:matrix(0.304015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304015,0.000000,0.000000,0.250000,0,0);}
.m16_c00377{transform:matrix(0.304743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304743,0.000000,0.000000,0.250000,0,0);}
.me_c00377{transform:matrix(0.305668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305668,0.000000,0.000000,0.250000,0,0);}
.m97_c00377{transform:matrix(0.307268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307268,0.000000,0.000000,0.250000,0,0);}
.m41_c00377{transform:matrix(0.307400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307400,0.000000,0.000000,0.250000,0,0);}
.ma8_c00377{transform:matrix(0.308329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308329,0.000000,0.000000,0.250000,0,0);}
.m5a_c00377{transform:matrix(0.308390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308390,0.000000,0.000000,0.250000,0,0);}
.m81_c00377{transform:matrix(0.308955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308955,0.000000,0.000000,0.250000,0,0);}
.m40_c00377{transform:matrix(0.308991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308991,0.000000,0.000000,0.250000,0,0);}
.maf_c00377{transform:matrix(0.310015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310015,0.000000,0.000000,0.250000,0,0);}
.md7_c00377{transform:matrix(0.311645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311645,0.000000,0.000000,0.250000,0,0);}
.md4_c00377{transform:matrix(0.311807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311807,0.000000,0.000000,0.250000,0,0);}
.ma1_c00377{transform:matrix(0.311866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311866,0.000000,0.000000,0.250000,0,0);}
.m23_c00377{transform:matrix(0.312313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312313,0.000000,0.000000,0.250000,0,0);}
.m36_c00377{transform:matrix(0.313110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313110,0.000000,0.000000,0.250000,0,0);}
.mc3_c00377{transform:matrix(0.314717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314717,0.000000,0.000000,0.250000,0,0);}
.m1d_c00377{transform:matrix(0.315347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315347,0.000000,0.000000,0.250000,0,0);}
.m1f_c00377{transform:matrix(0.316336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316336,0.000000,0.000000,0.250000,0,0);}
.mc2_c00377{transform:matrix(0.316505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316505,0.000000,0.000000,0.250000,0,0);}
.m3a_c00377{transform:matrix(0.316677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316677,0.000000,0.000000,0.250000,0,0);}
.mbb_c00377{transform:matrix(0.317005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317005,0.000000,0.000000,0.250000,0,0);}
.md9_c00377{transform:matrix(0.317053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317053,0.000000,0.000000,0.250000,0,0);}
.ma6_c00377{transform:matrix(0.317435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317435,0.000000,0.000000,0.250000,0,0);}
.m5b_c00377{transform:matrix(0.317831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317831,0.000000,0.000000,0.250000,0,0);}
.m24_c00377{transform:matrix(0.318558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318558,0.000000,0.000000,0.250000,0,0);}
.md5_c00377{transform:matrix(0.318560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318560,0.000000,0.000000,0.250000,0,0);}
.m28_c00377{transform:matrix(0.319319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319319,0.000000,0.000000,0.250000,0,0);}
.mba_c00377{transform:matrix(0.321359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321359,0.000000,0.000000,0.250000,0,0);}
.ma9_c00377{transform:matrix(0.321626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321626,0.000000,0.000000,0.250000,0,0);}
.mb8_c00377{transform:matrix(0.321846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321846,0.000000,0.000000,0.250000,0,0);}
.ma4_c00377{transform:matrix(0.322382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322382,0.000000,0.000000,0.250000,0,0);}
.m2_c00377{transform:matrix(0.322422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322422,0.000000,0.000000,0.250000,0,0);}
.mde_c00377{transform:matrix(0.322925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322925,0.000000,0.000000,0.250000,0,0);}
.m6f_c00377{transform:matrix(0.323600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323600,0.000000,0.000000,0.250000,0,0);}
.m52_c00377{transform:matrix(0.323675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323675,0.000000,0.000000,0.250000,0,0);}
.m7a_c00377{transform:matrix(0.323741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323741,0.000000,0.000000,0.250000,0,0);}
.mb_c00377{transform:matrix(0.325209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325209,0.000000,0.000000,0.250000,0,0);}
.m64_c00377{transform:matrix(0.325237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325237,0.000000,0.000000,0.250000,0,0);}
.m5d_c00377{transform:matrix(0.325309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325309,0.000000,0.000000,0.250000,0,0);}
.m59_c00377{transform:matrix(0.326716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326716,0.000000,0.000000,0.250000,0,0);}
.mda_c00377{transform:matrix(0.326939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326939,0.000000,0.000000,0.250000,0,0);}
.mad_c00377{transform:matrix(0.327934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327934,0.000000,0.000000,0.250000,0,0);}
.m93_c00377{transform:matrix(0.328275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328275,0.000000,0.000000,0.250000,0,0);}
.mc5_c00377{transform:matrix(0.328414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328414,0.000000,0.000000,0.250000,0,0);}
.m55_c00377{transform:matrix(0.328540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328540,0.000000,0.000000,0.250000,0,0);}
.m31_c00377{transform:matrix(0.330189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330189,0.000000,0.000000,0.250000,0,0);}
.m8f_c00377{transform:matrix(0.330375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330375,0.000000,0.000000,0.250000,0,0);}
.m1a_c00377{transform:matrix(0.331891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331891,0.000000,0.000000,0.250000,0,0);}
.m5f_c00377{transform:matrix(0.334232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334232,0.000000,0.000000,0.250000,0,0);}
.m18_c00377{transform:matrix(0.334243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334243,0.000000,0.000000,0.250000,0,0);}
.m90_c00377{transform:matrix(0.335788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335788,0.000000,0.000000,0.250000,0,0);}
.m21_c00377{transform:matrix(0.336636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336636,0.000000,0.000000,0.250000,0,0);}
.m2e_c00377{transform:matrix(0.337067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337067,0.000000,0.000000,0.250000,0,0);}
.me8_c00377{transform:matrix(0.338160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338160,0.000000,0.000000,0.250000,0,0);}
.m30_c00377{transform:matrix(0.338529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338529,0.000000,0.000000,0.250000,0,0);}
.mb5_c00377{transform:matrix(0.339827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339827,0.000000,0.000000,0.250000,0,0);}
.m85_c00377{transform:matrix(0.340173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340173,0.000000,0.000000,0.250000,0,0);}
.m8c_c00377{transform:matrix(0.340179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340179,0.000000,0.000000,0.250000,0,0);}
.me7_c00377{transform:matrix(0.340309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340309,0.000000,0.000000,0.250000,0,0);}
.ma2_c00377{transform:matrix(0.340411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340411,0.000000,0.000000,0.250000,0,0);}
.mc4_c00377{transform:matrix(0.340910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340910,0.000000,0.000000,0.250000,0,0);}
.m61_c00377{transform:matrix(0.341415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341415,0.000000,0.000000,0.250000,0,0);}
.mb7_c00377{transform:matrix(0.341760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341760,0.000000,0.000000,0.250000,0,0);}
.mca_c00377{transform:matrix(0.341948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341948,0.000000,0.000000,0.250000,0,0);}
.ma_c00377{transform:matrix(0.341975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341975,0.000000,0.000000,0.250000,0,0);}
.m63_c00377{transform:matrix(0.342516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342516,0.000000,0.000000,0.250000,0,0);}
.m17_c00377{transform:matrix(0.343069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343069,0.000000,0.000000,0.250000,0,0);}
.m8e_c00377{transform:matrix(0.343285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343285,0.000000,0.000000,0.250000,0,0);}
.mc0_c00377{transform:matrix(0.343326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343326,0.000000,0.000000,0.250000,0,0);}
.mcd_c00377{transform:matrix(0.343748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343748,0.000000,0.000000,0.250000,0,0);}
.ma3_c00377{transform:matrix(0.343848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343848,0.000000,0.000000,0.250000,0,0);}
.m14_c00377{transform:matrix(0.345412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345412,0.000000,0.000000,0.250000,0,0);}
.me3_c00377{transform:matrix(0.346472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346472,0.000000,0.000000,0.250000,0,0);}
.m2d_c00377{transform:matrix(0.347150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347150,0.000000,0.000000,0.250000,0,0);}
.md2_c00377{transform:matrix(0.347375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347375,0.000000,0.000000,0.250000,0,0);}
.mae_c00377{transform:matrix(0.347405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347405,0.000000,0.000000,0.250000,0,0);}
.m72_c00377{transform:matrix(0.348707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348707,0.000000,0.000000,0.250000,0,0);}
.m6_c00377{transform:matrix(0.350545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350545,0.000000,0.000000,0.250000,0,0);}
.m2b_c00377{transform:matrix(0.351726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351726,0.000000,0.000000,0.250000,0,0);}
.ma7_c00377{transform:matrix(0.352612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352612,0.000000,0.000000,0.250000,0,0);}
.m51_c00377{transform:matrix(0.352772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352772,0.000000,0.000000,0.250000,0,0);}
.m12_c00377{transform:matrix(0.352982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352982,0.000000,0.000000,0.250000,0,0);}
.m25_c00377{transform:matrix(0.353007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353007,0.000000,0.000000,0.250000,0,0);}
.m13_c00377{transform:matrix(0.353663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353663,0.000000,0.000000,0.250000,0,0);}
.m76_c00377{transform:matrix(0.354368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354368,0.000000,0.000000,0.250000,0,0);}
.m9c_c00377{transform:matrix(0.354601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354601,0.000000,0.000000,0.250000,0,0);}
.ma5_c00377{transform:matrix(0.355187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355187,0.000000,0.000000,0.250000,0,0);}
.m4f_c00377{transform:matrix(0.355652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355652,0.000000,0.000000,0.250000,0,0);}
.mb1_c00377{transform:matrix(0.357537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357537,0.000000,0.000000,0.250000,0,0);}
.m96_c00377{transform:matrix(0.358207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358207,0.000000,0.000000,0.250000,0,0);}
.m7f_c00377{transform:matrix(0.358269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358269,0.000000,0.000000,0.250000,0,0);}
.m7b_c00377{transform:matrix(0.358691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358691,0.000000,0.000000,0.250000,0,0);}
.mdd_c00377{transform:matrix(0.359471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359471,0.000000,0.000000,0.250000,0,0);}
.m99_c00377{transform:matrix(0.359557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359557,0.000000,0.000000,0.250000,0,0);}
.m4e_c00377{transform:matrix(0.359766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359766,0.000000,0.000000,0.250000,0,0);}
.m7c_c00377{transform:matrix(0.360240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360240,0.000000,0.000000,0.250000,0,0);}
.m20_c00377{transform:matrix(0.362240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362240,0.000000,0.000000,0.250000,0,0);}
.m15_c00377{transform:matrix(0.362976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362976,0.000000,0.000000,0.250000,0,0);}
.m84_c00377{transform:matrix(0.363242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363242,0.000000,0.000000,0.250000,0,0);}
.m4c_c00377{transform:matrix(0.365121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365121,0.000000,0.000000,0.250000,0,0);}
.m50_c00377{transform:matrix(0.365303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365303,0.000000,0.000000,0.250000,0,0);}
.m8d_c00377{transform:matrix(0.365856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365856,0.000000,0.000000,0.250000,0,0);}
.m37_c00377{transform:matrix(0.366301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366301,0.000000,0.000000,0.250000,0,0);}
.m9a_c00377{transform:matrix(0.367101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367101,0.000000,0.000000,0.250000,0,0);}
.mbc_c00377{transform:matrix(0.367931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367931,0.000000,0.000000,0.250000,0,0);}
.m4_c00377{transform:matrix(0.370926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370926,0.000000,0.000000,0.250000,0,0);}
.m7_c00377{transform:matrix(0.370934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370934,0.000000,0.000000,0.250000,0,0);}
.m5e_c00377{transform:matrix(0.371121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371121,0.000000,0.000000,0.250000,0,0);}
.me6_c00377{transform:matrix(0.371270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371270,0.000000,0.000000,0.250000,0,0);}
.mdc_c00377{transform:matrix(0.372643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372643,0.000000,0.000000,0.250000,0,0);}
.m58_c00377{transform:matrix(0.374412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374412,0.000000,0.000000,0.250000,0,0);}
.m57_c00377{transform:matrix(0.374875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374875,0.000000,0.000000,0.250000,0,0);}
.mce_c00377{transform:matrix(0.374993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374993,0.000000,0.000000,0.250000,0,0);}
.m65_c00377{transform:matrix(0.375047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375047,0.000000,0.000000,0.250000,0,0);}
.mc6_c00377{transform:matrix(0.377554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377554,0.000000,0.000000,0.250000,0,0);}
.m2c_c00377{transform:matrix(0.378375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378375,0.000000,0.000000,0.250000,0,0);}
.mc8_c00377{transform:matrix(0.378390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378390,0.000000,0.000000,0.250000,0,0);}
.m86_c00377{transform:matrix(0.379585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379585,0.000000,0.000000,0.250000,0,0);}
.m77_c00377{transform:matrix(0.380929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380929,0.000000,0.000000,0.250000,0,0);}
.m4b_c00377{transform:matrix(0.381691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381691,0.000000,0.000000,0.250000,0,0);}
.m10_c00377{transform:matrix(0.383479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383479,0.000000,0.000000,0.250000,0,0);}
.m11_c00377{transform:matrix(0.386189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386189,0.000000,0.000000,0.250000,0,0);}
.mbf_c00377{transform:matrix(0.392681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392681,0.000000,0.000000,0.250000,0,0);}
.m5c_c00377{transform:matrix(0.394079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394079,0.000000,0.000000,0.250000,0,0);}
.m74_c00377{transform:matrix(0.397194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397194,0.000000,0.000000,0.250000,0,0);}
.me2_c00377{transform:matrix(0.398592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398592,0.000000,0.000000,0.250000,0,0);}
.mb0_c00377{transform:matrix(0.399260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399260,0.000000,0.000000,0.250000,0,0);}
.m34_c00377{transform:matrix(0.399740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399740,0.000000,0.000000,0.250000,0,0);}
.mf0_c00377{transform:matrix(0.401746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401746,0.000000,0.000000,0.250000,0,0);}
.mc7_c00377{transform:matrix(0.414090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414090,0.000000,0.000000,0.250000,0,0);}
.m94_c00377{transform:matrix(0.418579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418579,0.000000,0.000000,0.250000,0,0);}
.m4a_c00377{transform:matrix(0.426330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426330,0.000000,0.000000,0.250000,0,0);}
.m39_c00377{transform:matrix(0.434082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434082,0.000000,0.000000,0.250000,0,0);}
.m3_c00377{transform:matrix(0.436944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436944,0.000000,0.000000,0.250000,0,0);}
.m3b_c00377{transform:matrix(0.484461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484461,0.000000,0.000000,0.250000,0,0);}
.m27_c00377{transform:matrix(0.486390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486390,0.000000,0.000000,0.250000,0,0);}
.v3_c00377{vertical-align:-1.393920px;}
.v0_c00377{vertical-align:0.000000px;}
.v1_c00377{vertical-align:4.276800px;}
.v4_c00377{vertical-align:27.086400px;}
.v2_c00377{vertical-align:51.321600px;}
.ls8_c00377{letter-spacing:-2.979900px;}
.lsb_c00377{letter-spacing:-2.439367px;}
.ls15_c00377{letter-spacing:-2.334823px;}
.lsc_c00377{letter-spacing:-1.801800px;}
.lsd_c00377{letter-spacing:-1.498468px;}
.ls1f_c00377{letter-spacing:-1.441440px;}
.ls13_c00377{letter-spacing:-1.205820px;}
.ls10_c00377{letter-spacing:-1.191967px;}
.ls27_c00377{letter-spacing:-1.046430px;}
.ls1b_c00377{letter-spacing:-0.954838px;}
.ls26_c00377{letter-spacing:-0.845460px;}
.ls18_c00377{letter-spacing:-0.801506px;}
.ls28_c00377{letter-spacing:-0.665280px;}
.ls11_c00377{letter-spacing:-0.526541px;}
.ls24_c00377{letter-spacing:-0.121890px;}
.ls7_c00377{letter-spacing:0.000000px;}
.ls3_c00377{letter-spacing:0.418177px;}
.ls2_c00377{letter-spacing:0.576576px;}
.lsf_c00377{letter-spacing:0.760637px;}
.ls1_c00377{letter-spacing:1.247638px;}
.ls1e_c00377{letter-spacing:1.453439px;}
.ls5_c00377{letter-spacing:1.673064px;}
.lse_c00377{letter-spacing:1.702810px;}
.ls4_c00377{letter-spacing:1.916645px;}
.lsa_c00377{letter-spacing:2.465100px;}
.ls1d_c00377{letter-spacing:2.514600px;}
.ls16_c00377{letter-spacing:3.138310px;}
.ls1a_c00377{letter-spacing:3.168000px;}
.ls12_c00377{letter-spacing:3.257110px;}
.ls14_c00377{letter-spacing:3.326400px;}
.ls6_c00377{letter-spacing:3.345418px;}
.ls9_c00377{letter-spacing:3.484810px;}
.ls19_c00377{letter-spacing:3.623400px;}
.ls23_c00377{letter-spacing:3.643200px;}
.ls29_c00377{letter-spacing:3.722400px;}
.ls0_c00377{letter-spacing:7.365600px;}
.ls25_c00377{letter-spacing:11.404998px;}
.ls17_c00377{letter-spacing:47.044800px;}
.ls21_c00377{letter-spacing:48.470598px;}
.ls20_c00377{letter-spacing:49.896198px;}
.ls22_c00377{letter-spacing:58.449798px;}
.ls1c_c00377{letter-spacing:59.875398px;}
.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;}
}
.ws6_c00377{word-spacing:-20.769467px;}
.ws3_c00377{word-spacing:-17.424050px;}
.ws7_c00377{word-spacing:0.000000px;}
.ws2_c00377{word-spacing:5.784851px;}
.ws0_c00377{word-spacing:5.993949px;}
.ws5_c00377{word-spacing:9.978408px;}
.ws1_c00377{word-spacing:10.665706px;}
.ws4_c00377{word-spacing:20.407671px;}
._e_c00377{margin-left:-13.024440px;}
._4_c00377{margin-left:-6.776462px;}
._14_c00377{margin-left:-4.878082px;}
._12_c00377{margin-left:-3.683394px;}
._2_c00377{margin-left:-2.212214px;}
._16_c00377{width:1.393997px;}
._3_c00377{width:4.801957px;}
._19_c00377{width:6.896868px;}
._1_c00377{width:10.663389px;}
._17_c00377{width:11.917928px;}
._f_c00377{width:13.521123px;}
._7_c00377{width:21.814397px;}
._8_c00377{width:23.278607px;}
._11_c00377{width:24.393743px;}
._a_c00377{width:26.136143px;}
._15_c00377{width:28.993679px;}
._9_c00377{width:30.204751px;}
._d_c00377{width:35.006400px;}
._c_c00377{width:36.470699px;}
._b_c00377{width:38.600953px;}
._1b_c00377{width:40.319442px;}
._1a_c00377{width:42.512839px;}
._13_c00377{width:43.692538px;}
._6_c00377{width:45.163289px;}
._0_c00377{width:47.140517px;}
._18_c00377{width:50.514437px;}
._5_c00377{width:112.771631px;}
._10_c00377{width:163.429200px;}
.fc0_c00377{color:transparent;}
.fs22_c00377{font-size:11.404998px;}
.fs25_c00377{font-size:19.008000px;}
.fs0_c00377{font-size:22.176000px;}
.fs23_c00377{font-size:24.156000px;}
.fs15_c00377{font-size:25.146000px;}
.fs8_c00377{font-size:25.938000px;}
.fs19_c00377{font-size:27.720000px;}
.fs1b_c00377{font-size:29.700000px;}
.fs24_c00377{font-size:29.898000px;}
.fs21_c00377{font-size:32.076198px;}
.fs6_c00377{font-size:34.056198px;}
.fsb_c00377{font-size:34.452000px;}
.fs7_c00377{font-size:35.244000px;}
.fs5_c00377{font-size:40.986198px;}
.fs18_c00377{font-size:41.184000px;}
.fs10_c00377{font-size:47.044800px;}
.fs1c_c00377{font-size:48.470598px;}
.fs3_c00377{font-size:49.302000px;}
.fs1a_c00377{font-size:49.896198px;}
.fs17_c00377{font-size:50.292000px;}
.fs4_c00377{font-size:51.480000px;}
.fs12_c00377{font-size:56.628000px;}
.fs1f_c00377{font-size:58.449798px;}
.fs16_c00377{font-size:59.875398px;}
.fsf_c00377{font-size:62.766198px;}
.fs14_c00377{font-size:63.360000px;}
.fsa_c00377{font-size:64.548000px;}
.fs9_c00377{font-size:65.142198px;}
.fsc_c00377{font-size:66.528000px;}
.fs1d_c00377{font-size:68.706198px;}
.fs1e_c00377{font-size:69.498000px;}
.fs2_c00377{font-size:69.696198px;}
.fs11_c00377{font-size:70.884000px;}
.fs13_c00377{font-size:72.468000px;}
.fs20_c00377{font-size:72.864000px;}
.fs27_c00377{font-size:74.448000px;}
.fs26_c00377{font-size:75.240000px;}
.fsd_c00377{font-size:84.546198px;}
.fs1_c00377{font-size:85.140000px;}
.fse_c00377{font-size:101.376198px;}
.y0_c00377{bottom:0.000000px;}
.y1_c00377{bottom:76.500000px;}
.y2c_c00377{bottom:148.882185px;}
.y2b_c00377{bottom:179.537535px;}
.y2a_c00377{bottom:214.821135px;}
.y29_c00377{bottom:215.177535px;}
.y28_c00377{bottom:215.533935px;}
.y27_c00377{bottom:221.236335px;}
.y26_c00377{bottom:223.731135px;}
.y25_c00377{bottom:250.817535px;}
.y24_c00377{bottom:283.606335px;}
.y23_c00377{bottom:346.689135px;}
.y22_c00377{bottom:378.765135px;}
.y2_c00377{bottom:395.872335px;}
.y21_c00377{bottom:411.553935px;}
.y20_c00377{bottom:443.629935px;}
.y1f_c00377{bottom:476.413785px;}
.y1d_c00377{bottom:501.005385px;}
.y1e_c00377{bottom:507.776985px;}
.y1c_c00377{bottom:508.133385px;}
.y1b_c00377{bottom:539.857935px;}
.y1a_c00377{bottom:540.209385px;}
.y19_c00377{bottom:540.565785px;}
.y18_c00377{bottom:580.131135px;}
.y17_c00377{bottom:600.802335px;}
.y16_c00377{bottom:605.079135px;}
.y15_c00377{bottom:637.150185px;}
.y14_c00377{bottom:654.970185px;}
.y12_c00377{bottom:669.231135px;}
.y13_c00377{bottom:669.582585px;}
.y11_c00377{bottom:702.019935px;}
.y10_c00377{bottom:734.803785px;}
.ye_c00377{bottom:766.523385px;}
.yf_c00377{bottom:766.884735px;}
.yd_c00377{bottom:798.247935px;}
.yc_c00377{bottom:830.318985px;}
.ya_c00377{bottom:860.969385px;}
.yb_c00377{bottom:862.399935px;}
.y7_c00377{bottom:862.751385px;}
.y8_c00377{bottom:863.112735px;}
.y9_c00377{bottom:865.602585px;}
.y6_c00377{bottom:894.832335px;}
.y4_c00377{bottom:926.546985px;}
.y5_c00377{bottom:927.264735px;}
.y3_c00377{bottom:1076.591385px;}
.h24_c00377{height:7.595729px;}
.h27_c00377{height:18.646031px;}
.h2_c00377{height:23.128875px;}
.h25_c00377{height:25.193953px;}
.hb_c00377{height:26.140641px;}
.h17_c00377{height:26.226492px;}
.h1b_c00377{height:28.911094px;}
.h26_c00377{height:30.131578px;}
.h13_c00377{height:31.331837px;}
.h23_c00377{height:31.481034px;}
.h1e_c00377{height:32.281418px;}
.h1c_c00377{height:33.230868px;}
.h9_c00377{height:33.424296px;}
.he_c00377{height:33.812754px;}
.ha_c00377{height:34.322262px;}
.h7_c00377{height:35.519550px;}
.h8_c00377{height:36.758391px;}
.h21_c00377{height:38.927565px;}
.h18_c00377{height:39.877015px;}
.h1a_c00377{height:42.953625px;}
.h5_c00377{height:48.387217px;}
.h19_c00377{height:49.358848px;}
.h6_c00377{height:50.524805px;}
.hf_c00377{height:65.293594px;}
.h12_c00377{height:65.463183px;}
.h16_c00377{height:66.082500px;}
.h1f_c00377{height:67.431376px;}
.hc_c00377{height:67.941277px;}
.h20_c00377{height:68.208486px;}
.h4_c00377{height:68.403007px;}
.h14_c00377{height:69.568770px;}
.h15_c00377{height:71.123379px;}
.h22_c00377{height:71.512031px;}
.h29_c00377{height:73.066641px;}
.h28_c00377{height:73.843945px;}
.hd_c00377{height:74.450475px;}
.h10_c00377{height:82.977470px;}
.h3_c00377{height:83.560254px;}
.h1d_c00377{height:95.489407px;}
.h11_c00377{height:105.732207px;}
.h1_c00377{height:1110.000000px;}
.h0_c00377{height:1263.000000px;}
.w1_c00377{width:775.500000px;}
.w0_c00377{width:892.500000px;}
.x0_c00377{left:0.000000px;}
.x2_c00377{left:55.857435px;}
.x1_c00377{left:58.500000px;}
.x1d_c00377{left:100.788585px;}
.x5_c00377{left:102.402285px;}
.x74_c00377{left:103.506135px;}
.x6d_c00377{left:105.397035px;}
.x12_c00377{left:114.133785px;}
.x70_c00377{left:119.653035px;}
.x4b_c00377{left:121.123185px;}
.x3c_c00377{left:122.593335px;}
.x6e_c00377{left:125.088135px;}
.x6f_c00377{left:127.934385px;}
.x3d_c00377{left:129.716385px;}
.x3e_c00377{left:134.354535px;}
.x4c_c00377{left:144.239685px;}
.x13_c00377{left:145.902885px;}
.x53_c00377{left:154.243635px;}
.x5b_c00377{left:155.585085px;}
.x64_c00377{left:156.906735px;}
.x14_c00377{left:158.035335px;}
.x2a_c00377{left:164.633685px;}
.x48_c00377{left:166.242435px;}
.x6_c00377{left:167.311635px;}
.x75_c00377{left:173.662485px;}
.x7_c00377{left:177.919485px;}
.x15_c00377{left:179.038185px;}
.x54_c00377{left:187.769985px;}
.x1e_c00377{left:189.561885px;}
.x3f_c00377{left:199.927185px;}
.x72_c00377{left:202.882335px;}
.x8_c00377{left:211.668585px;}
.x73_c00377{left:212.881335px;}
.x2b_c00377{left:221.984385px;}
.x30_c00377{left:225.330585px;}
.x1f_c00377{left:234.111885px;}
.x5c_c00377{left:243.789135px;}
.x16_c00377{left:245.180085px;}
.x68_c00377{left:254.778135px;}
.x9_c00377{left:256.020585px;}
.x44_c00377{left:265.885935px;}
.x17_c00377{left:267.133335px;}
.x31_c00377{left:268.702485px;}
.x4d_c00377{left:276.444285px;}
.x67_c00377{left:278.468835px;}
.x4e_c00377{left:284.280135px;}
.x32_c00377{left:287.844135px;}
.x5d_c00377{left:289.145985px;}
.x18_c00377{left:300.040935px;}
.x41_c00377{left:302.317935px;}
.x4f_c00377{left:311.232885px;}
.xa_c00377{left:322.142685px;}
.x19_c00377{left:333.339585px;}
.x33_c00377{left:343.798935px;}
.x5e_c00377{left:357.891585px;}
.x49_c00377{left:365.623485px;}
.xb_c00377{left:366.757035px;}
.x37_c00377{left:368.588535px;}
.x58_c00377{left:377.656935px;}
.x2c_c00377{left:388.873635px;}
.x6b_c00377{left:390.774435px;}
.x20_c00377{left:391.873335px;}
.x21_c00377{left:398.788485px;}
.xc_c00377{left:400.293285px;}
.x22_c00377{left:411.925785px;}
.x59_c00377{left:420.459585px;}
.x23_c00377{left:421.548585px;}
.x24_c00377{left:425.721435px;}
.x55_c00377{left:428.156835px;}
.x42_c00377{left:432.809835px;}
.x5f_c00377{left:434.086935px;}
.x38_c00377{left:444.219585px;}
.x25_c00377{left:454.441335px;}
.x39_c00377{left:465.771885px;}
.x56_c00377{left:466.999485px;}
.x34_c00377{left:470.781285px;}
.x4a_c00377{left:477.924135px;}
.x1a_c00377{left:487.710285px;}
.x60_c00377{left:490.893135px;}
.x61_c00377{left:499.441785px;}
.x2d_c00377{left:506.163885px;}
.x45_c00377{left:510.460485px;}
.x2e_c00377{left:520.627785px;}
.x26_c00377{left:522.206835px;}
.x69_c00377{left:527.656785px;}
.x3a_c00377{left:531.705885px;}
.x1b_c00377{left:532.888935px;}
.x27_c00377{left:543.447285px;}
.x40_c00377{left:554.980785px;}
.x35_c00377{left:564.989685px;}
.x50_c00377{left:575.661885px;}
.x6a_c00377{left:576.755835px;}
.x63_c00377{left:585.903435px;}
.x46_c00377{left:588.175485px;}
.x2f_c00377{left:597.634935px;}
.x76_c00377{left:599.095185px;}
.xd_c00377{left:609.945585px;}
.x62_c00377{left:619.048635px;}
.x28_c00377{left:621.355335px;}
.xe_c00377{left:630.775185px;}
.x65_c00377{left:632.042385px;}
.x77_c00377{left:637.027035px;}
.x71_c00377{left:641.145435px;}
.x36_c00377{left:643.422435px;}
.xf_c00377{left:653.579835px;}
.x51_c00377{left:667.083435px;}
.x57_c00377{left:675.384585px;}
.x3_c00377{left:676.889385px;}
.x66_c00377{left:685.650885px;}
.x10_c00377{left:686.903235px;}
.x4_c00377{left:688.650585px;}
.x3b_c00377{left:697.610085px;}
.x43_c00377{left:698.649585px;}
.x52_c00377{left:701.629485px;}
.x47_c00377{left:706.198335px;}
.x5a_c00377{left:709.227735px;}
.x11_c00377{left:720.454335px;}
.x29_c00377{left:730.755285px;}
.x1c_c00377{left:742.516485px;}
.x6c_c00377{left:753.564885px;}
.x78_c00377{left:755.629035px;}
@media print{
.v3_c00377{vertical-align:-1.239040pt;}
.v0_c00377{vertical-align:0.000000pt;}
.v1_c00377{vertical-align:3.801600pt;}
.v4_c00377{vertical-align:24.076800pt;}
.v2_c00377{vertical-align:45.619200pt;}
.ls8_c00377{letter-spacing:-2.648800pt;}
.lsb_c00377{letter-spacing:-2.168326pt;}
.ls15_c00377{letter-spacing:-2.075398pt;}
.lsc_c00377{letter-spacing:-1.601600pt;}
.lsd_c00377{letter-spacing:-1.331972pt;}
.ls1f_c00377{letter-spacing:-1.281280pt;}
.ls13_c00377{letter-spacing:-1.071840pt;}
.ls10_c00377{letter-spacing:-1.059526pt;}
.ls27_c00377{letter-spacing:-0.930160pt;}
.ls1b_c00377{letter-spacing:-0.848745pt;}
.ls26_c00377{letter-spacing:-0.751520pt;}
.ls18_c00377{letter-spacing:-0.712450pt;}
.ls28_c00377{letter-spacing:-0.591360pt;}
.ls11_c00377{letter-spacing:-0.468037pt;}
.ls24_c00377{letter-spacing:-0.108346pt;}
.ls7_c00377{letter-spacing:0.000000pt;}
.ls3_c00377{letter-spacing:0.371713pt;}
.ls2_c00377{letter-spacing:0.512512pt;}
.lsf_c00377{letter-spacing:0.676122pt;}
.ls1_c00377{letter-spacing:1.109011pt;}
.ls1e_c00377{letter-spacing:1.291946pt;}
.ls5_c00377{letter-spacing:1.487168pt;}
.lse_c00377{letter-spacing:1.513609pt;}
.ls4_c00377{letter-spacing:1.703685pt;}
.lsa_c00377{letter-spacing:2.191200pt;}
.ls1d_c00377{letter-spacing:2.235200pt;}
.ls16_c00377{letter-spacing:2.789609pt;}
.ls1a_c00377{letter-spacing:2.816000pt;}
.ls12_c00377{letter-spacing:2.895209pt;}
.ls14_c00377{letter-spacing:2.956800pt;}
.ls6_c00377{letter-spacing:2.973704pt;}
.ls9_c00377{letter-spacing:3.097609pt;}
.ls19_c00377{letter-spacing:3.220800pt;}
.ls23_c00377{letter-spacing:3.238400pt;}
.ls29_c00377{letter-spacing:3.308800pt;}
.ls0_c00377{letter-spacing:6.547200pt;}
.ls25_c00377{letter-spacing:10.137776pt;}
.ls17_c00377{letter-spacing:41.817600pt;}
.ls21_c00377{letter-spacing:43.084976pt;}
.ls20_c00377{letter-spacing:44.352176pt;}
.ls22_c00377{letter-spacing:51.955376pt;}
.ls1c_c00377{letter-spacing:53.222576pt;}
.ws6_c00377{word-spacing:-18.461748pt;}
.ws3_c00377{word-spacing:-15.488044pt;}
.ws7_c00377{word-spacing:0.000000pt;}
.ws2_c00377{word-spacing:5.142089pt;}
.ws0_c00377{word-spacing:5.327955pt;}
.ws5_c00377{word-spacing:8.869696pt;}
.ws1_c00377{word-spacing:9.480627pt;}
.ws4_c00377{word-spacing:18.140152pt;}
._e_c00377{margin-left:-11.577280pt;}
._4_c00377{margin-left:-6.023522pt;}
._14_c00377{margin-left:-4.336073pt;}
._12_c00377{margin-left:-3.274128pt;}
._2_c00377{margin-left:-1.966413pt;}
._16_c00377{width:1.239108pt;}
._3_c00377{width:4.268406pt;}
._19_c00377{width:6.130549pt;}
._1_c00377{width:9.478568pt;}
._17_c00377{width:10.593714pt;}
._f_c00377{width:12.018776pt;}
._7_c00377{width:19.390575pt;}
._8_c00377{width:20.692095pt;}
._11_c00377{width:21.683327pt;}
._a_c00377{width:23.232127pt;}
._15_c00377{width:25.772159pt;}
._9_c00377{width:26.848668pt;}
._d_c00377{width:31.116800pt;}
._c_c00377{width:32.418399pt;}
._b_c00377{width:34.311958pt;}
._1b_c00377{width:35.839504pt;}
._1a_c00377{width:37.789190pt;}
._13_c00377{width:38.837812pt;}
._6_c00377{width:40.145145pt;}
._0_c00377{width:41.902681pt;}
._18_c00377{width:44.901721pt;}
._5_c00377{width:100.241450pt;}
._10_c00377{width:145.270400pt;}
.fs22_c00377{font-size:10.137776pt;}
.fs25_c00377{font-size:16.896000pt;}
.fs0_c00377{font-size:19.712000pt;}
.fs23_c00377{font-size:21.472000pt;}
.fs15_c00377{font-size:22.352000pt;}
.fs8_c00377{font-size:23.056000pt;}
.fs19_c00377{font-size:24.640000pt;}
.fs1b_c00377{font-size:26.400000pt;}
.fs24_c00377{font-size:26.576000pt;}
.fs21_c00377{font-size:28.512176pt;}
.fs6_c00377{font-size:30.272176pt;}
.fsb_c00377{font-size:30.624000pt;}
.fs7_c00377{font-size:31.328000pt;}
.fs5_c00377{font-size:36.432176pt;}
.fs18_c00377{font-size:36.608000pt;}
.fs10_c00377{font-size:41.817600pt;}
.fs1c_c00377{font-size:43.084976pt;}
.fs3_c00377{font-size:43.824000pt;}
.fs1a_c00377{font-size:44.352176pt;}
.fs17_c00377{font-size:44.704000pt;}
.fs4_c00377{font-size:45.760000pt;}
.fs12_c00377{font-size:50.336000pt;}
.fs1f_c00377{font-size:51.955376pt;}
.fs16_c00377{font-size:53.222576pt;}
.fsf_c00377{font-size:55.792176pt;}
.fs14_c00377{font-size:56.320000pt;}
.fsa_c00377{font-size:57.376000pt;}
.fs9_c00377{font-size:57.904176pt;}
.fsc_c00377{font-size:59.136000pt;}
.fs1d_c00377{font-size:61.072176pt;}
.fs1e_c00377{font-size:61.776000pt;}
.fs2_c00377{font-size:61.952176pt;}
.fs11_c00377{font-size:63.008000pt;}
.fs13_c00377{font-size:64.416000pt;}
.fs20_c00377{font-size:64.768000pt;}
.fs27_c00377{font-size:66.176000pt;}
.fs26_c00377{font-size:66.880000pt;}
.fsd_c00377{font-size:75.152176pt;}
.fs1_c00377{font-size:75.680000pt;}
.fse_c00377{font-size:90.112176pt;}
.y0_c00377{bottom:0.000000pt;}
.y1_c00377{bottom:68.000000pt;}
.y2c_c00377{bottom:132.339720pt;}
.y2b_c00377{bottom:159.588920pt;}
.y2a_c00377{bottom:190.952120pt;}
.y29_c00377{bottom:191.268920pt;}
.y28_c00377{bottom:191.585720pt;}
.y27_c00377{bottom:196.654520pt;}
.y26_c00377{bottom:198.872120pt;}
.y25_c00377{bottom:222.948920pt;}
.y24_c00377{bottom:252.094520pt;}
.y23_c00377{bottom:308.168120pt;}
.y22_c00377{bottom:336.680120pt;}
.y2_c00377{bottom:351.886520pt;}
.y21_c00377{bottom:365.825720pt;}
.y20_c00377{bottom:394.337720pt;}
.y1f_c00377{bottom:423.478920pt;}
.y1d_c00377{bottom:445.338120pt;}
.y1e_c00377{bottom:451.357320pt;}
.y1c_c00377{bottom:451.674120pt;}
.y1b_c00377{bottom:479.873720pt;}
.y1a_c00377{bottom:480.186120pt;}
.y19_c00377{bottom:480.502920pt;}
.y18_c00377{bottom:515.672120pt;}
.y17_c00377{bottom:534.046520pt;}
.y16_c00377{bottom:537.848120pt;}
.y15_c00377{bottom:566.355720pt;}
.y14_c00377{bottom:582.195720pt;}
.y12_c00377{bottom:594.872120pt;}
.y13_c00377{bottom:595.184520pt;}
.y11_c00377{bottom:624.017720pt;}
.y10_c00377{bottom:653.158920pt;}
.ye_c00377{bottom:681.354120pt;}
.yf_c00377{bottom:681.675320pt;}
.yd_c00377{bottom:709.553720pt;}
.yc_c00377{bottom:738.061320pt;}
.ya_c00377{bottom:765.306120pt;}
.yb_c00377{bottom:766.577720pt;}
.y7_c00377{bottom:766.890120pt;}
.y8_c00377{bottom:767.211320pt;}
.y9_c00377{bottom:769.424520pt;}
.y6_c00377{bottom:795.406520pt;}
.y4_c00377{bottom:823.597320pt;}
.y5_c00377{bottom:824.235320pt;}
.y3_c00377{bottom:956.970120pt;}
.h24_c00377{height:6.751759pt;}
.h27_c00377{height:16.574250pt;}
.h2_c00377{height:20.559000pt;}
.h25_c00377{height:22.394625pt;}
.hb_c00377{height:23.236125pt;}
.h17_c00377{height:23.312438pt;}
.h1b_c00377{height:25.698750pt;}
.h26_c00377{height:26.783625pt;}
.h13_c00377{height:27.850522pt;}
.h23_c00377{height:27.983141pt;}
.h1e_c00377{height:28.694594pt;}
.h1c_c00377{height:29.538549pt;}
.h9_c00377{height:29.710485pt;}
.he_c00377{height:30.055781pt;}
.ha_c00377{height:30.508677pt;}
.h7_c00377{height:31.572934pt;}
.h8_c00377{height:32.674125pt;}
.h21_c00377{height:34.602280pt;}
.h18_c00377{height:35.446236pt;}
.h1a_c00377{height:38.181000pt;}
.h5_c00377{height:43.010859pt;}
.h19_c00377{height:43.874531pt;}
.h6_c00377{height:44.910938pt;}
.hf_c00377{height:58.038750pt;}
.h12_c00377{height:58.189496pt;}
.h16_c00377{height:58.740000pt;}
.h1f_c00377{height:59.939001pt;}
.hc_c00377{height:60.392246pt;}
.h20_c00377{height:60.629766pt;}
.h4_c00377{height:60.802673pt;}
.h14_c00377{height:61.838906pt;}
.h15_c00377{height:63.220781pt;}
.h22_c00377{height:63.566250pt;}
.h29_c00377{height:64.948125pt;}
.h28_c00377{height:65.639063pt;}
.hd_c00377{height:66.178200pt;}
.h10_c00377{height:73.757751pt;}
.h3_c00377{height:74.275781pt;}
.h1d_c00377{height:84.879473pt;}
.h11_c00377{height:93.984184pt;}
.h1_c00377{height:986.666667pt;}
.h0_c00377{height:1122.666667pt;}
.w1_c00377{width:689.333333pt;}
.w0_c00377{width:793.333333pt;}
.x0_c00377{left:0.000000pt;}
.x2_c00377{left:49.651053pt;}
.x1_c00377{left:52.000000pt;}
.x1d_c00377{left:89.589853pt;}
.x5_c00377{left:91.024253pt;}
.x74_c00377{left:92.005453pt;}
.x6d_c00377{left:93.686253pt;}
.x12_c00377{left:101.452253pt;}
.x70_c00377{left:106.358253pt;}
.x4b_c00377{left:107.665053pt;}
.x3c_c00377{left:108.971853pt;}
.x6e_c00377{left:111.189453pt;}
.x6f_c00377{left:113.719453pt;}
.x3d_c00377{left:115.303453pt;}
.x3e_c00377{left:119.426253pt;}
.x4c_c00377{left:128.213053pt;}
.x13_c00377{left:129.691453pt;}
.x53_c00377{left:137.105453pt;}
.x5b_c00377{left:138.297853pt;}
.x64_c00377{left:139.472653pt;}
.x14_c00377{left:140.475853pt;}
.x2a_c00377{left:146.341053pt;}
.x48_c00377{left:147.771053pt;}
.x6_c00377{left:148.721453pt;}
.x75_c00377{left:154.366653pt;}
.x7_c00377{left:158.150653pt;}
.x15_c00377{left:159.145053pt;}
.x54_c00377{left:166.906653pt;}
.x1e_c00377{left:168.499453pt;}
.x3f_c00377{left:177.713053pt;}
.x72_c00377{left:180.339853pt;}
.x8_c00377{left:188.149853pt;}
.x73_c00377{left:189.227853pt;}
.x2b_c00377{left:197.319453pt;}
.x30_c00377{left:200.293853pt;}
.x1f_c00377{left:208.099453pt;}
.x5c_c00377{left:216.701453pt;}
.x16_c00377{left:217.937853pt;}
.x68_c00377{left:226.469453pt;}
.x9_c00377{left:227.573853pt;}
.x44_c00377{left:236.343053pt;}
.x17_c00377{left:237.451853pt;}
.x31_c00377{left:238.846653pt;}
.x4d_c00377{left:245.728253pt;}
.x67_c00377{left:247.527853pt;}
.x4e_c00377{left:252.693453pt;}
.x32_c00377{left:255.861453pt;}
.x5d_c00377{left:257.018653pt;}
.x18_c00377{left:266.703053pt;}
.x41_c00377{left:268.727053pt;}
.x4f_c00377{left:276.651453pt;}
.xa_c00377{left:286.349053pt;}
.x19_c00377{left:296.301853pt;}
.x33_c00377{left:305.599053pt;}
.x5e_c00377{left:318.125853pt;}
.x49_c00377{left:324.998653pt;}
.xb_c00377{left:326.006253pt;}
.x37_c00377{left:327.634253pt;}
.x58_c00377{left:335.695053pt;}
.x2c_c00377{left:345.665453pt;}
.x6b_c00377{left:347.355053pt;}
.x20_c00377{left:348.331853pt;}
.x21_c00377{left:354.478653pt;}
.xc_c00377{left:355.816253pt;}
.x22_c00377{left:366.156253pt;}
.x59_c00377{left:373.741853pt;}
.x23_c00377{left:374.709853pt;}
.x24_c00377{left:378.419053pt;}
.x55_c00377{left:380.583853pt;}
.x42_c00377{left:384.719853pt;}
.x5f_c00377{left:385.855053pt;}
.x38_c00377{left:394.861853pt;}
.x25_c00377{left:403.947853pt;}
.x39_c00377{left:414.019453pt;}
.x56_c00377{left:415.110653pt;}
.x34_c00377{left:418.472253pt;}
.x4a_c00377{left:424.821453pt;}
.x1a_c00377{left:433.520253pt;}
.x60_c00377{left:436.349453pt;}
.x61_c00377{left:443.948253pt;}
.x2d_c00377{left:449.923453pt;}
.x45_c00377{left:453.742653pt;}
.x2e_c00377{left:462.780253pt;}
.x26_c00377{left:464.183853pt;}
.x69_c00377{left:469.028253pt;}
.x3a_c00377{left:472.627453pt;}
.x1b_c00377{left:473.679053pt;}
.x27_c00377{left:483.064253pt;}
.x40_c00377{left:493.316253pt;}
.x35_c00377{left:502.213053pt;}
.x50_c00377{left:511.699453pt;}
.x6a_c00377{left:512.671853pt;}
.x63_c00377{left:520.803053pt;}
.x46_c00377{left:522.822653pt;}
.x2f_c00377{left:531.231053pt;}
.x76_c00377{left:532.529053pt;}
.xd_c00377{left:542.173853pt;}
.x62_c00377{left:550.265453pt;}
.x28_c00377{left:552.315853pt;}
.xe_c00377{left:560.689053pt;}
.x65_c00377{left:561.815453pt;}
.x77_c00377{left:566.246253pt;}
.x71_c00377{left:569.907053pt;}
.x36_c00377{left:571.931053pt;}
.xf_c00377{left:580.959853pt;}
.x51_c00377{left:592.963053pt;}
.x57_c00377{left:600.341853pt;}
.x3_c00377{left:601.679453pt;}
.x66_c00377{left:609.467453pt;}
.x10_c00377{left:610.580653pt;}
.x4_c00377{left:612.133853pt;}
.x3b_c00377{left:620.097853pt;}
.x43_c00377{left:621.021853pt;}
.x52_c00377{left:623.670653pt;}
.x47_c00377{left:627.731853pt;}
.x5a_c00377{left:630.424653pt;}
.x11_c00377{left:640.403853pt;}
.x29_c00377{left:649.560253pt;}
.x1c_c00377{left:660.014653pt;}
.x6c_c00377{left:669.835453pt;}
.x78_c00377{left:671.670253pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f3e4c77882e5632a321d1a23.woff2')format("woff");}.ff1_c00378{font-family:ff1_c00378;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00378;src:url('chunks/assets/font_16ef75db7d0d8d15ad9e2fbf.woff2')format("woff");}.ff2_c00378{font-family:ff2_c00378;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00378;src:url('chunks/assets/font_3c791fd4a56b0cc835568ba1.woff2')format("woff");}.ff3_c00378{font-family:ff3_c00378;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00378;src:url('chunks/assets/font_dc0a6ab761ee2a4efa25c194.woff2')format("woff");}.ff4_c00378{font-family:ff4_c00378;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00378;src:url('chunks/assets/font_41d26ac6cd5167a717696ffa.woff2')format("woff");}.ff5_c00378{font-family:ff5_c00378;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m89_c00378{transform:matrix(0.029413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.029413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.029413,0.000000,0.000000,0.250000,0,0);}
.m88_c00378{transform:matrix(0.095589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095589,0.000000,0.000000,0.250000,0,0);}
.m46_c00378{transform:matrix(0.123794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123794,0.000000,0.000000,0.250000,0,0);}
.m4c_c00378{transform:matrix(0.138144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138144,0.000000,0.000000,0.250000,0,0);}
.mc0_c00378{transform:matrix(0.138762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138762,0.000000,0.000000,0.250000,0,0);}
.m28_c00378{transform:matrix(0.140244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140244,0.000000,0.000000,0.250000,0,0);}
.m24_c00378{transform:matrix(0.146342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146342,0.000000,0.000000,0.250000,0,0);}
.m79_c00378{transform:matrix(0.148325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148325,0.000000,0.000000,0.250000,0,0);}
.m52_c00378{transform:matrix(0.152041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152041,0.000000,0.000000,0.250000,0,0);}
.m27_c00378{transform:matrix(0.152439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152439,0.000000,0.000000,0.250000,0,0);}
.m8a_c00378{transform:matrix(0.154412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154412,0.000000,0.000000,0.250000,0,0);}
.mb_c00378{transform:matrix(0.155797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155797,0.000000,0.000000,0.250000,0,0);}
.m17_c00378{transform:matrix(0.161764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161764,0.000000,0.000000,0.250000,0,0);}
.m25_c00378{transform:matrix(0.164634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164634,0.000000,0.000000,0.250000,0,0);}
.m35_c00378{transform:matrix(0.172084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172084,0.000000,0.000000,0.250000,0,0);}
.m47_c00378{transform:matrix(0.172179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172179,0.000000,0.000000,0.250000,0,0);}
.m37_c00378{transform:matrix(0.175779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175779,0.000000,0.000000,0.250000,0,0);}
.m26_c00378{transform:matrix(0.176830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176830,0.000000,0.000000,0.250000,0,0);}
.m51_c00378{transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);}
.m53_c00378{transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);}
.m4b_c00378{transform:matrix(0.192995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192995,0.000000,0.000000,0.250000,0,0);}
.m16_c00378{transform:matrix(0.198530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198530,0.000000,0.000000,0.250000,0,0);}
.m3_c00378{transform:matrix(0.217165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217165,0.000000,0.000000,0.250000,0,0);}
.m86_c00378{transform:matrix(0.218053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218053,0.000000,0.000000,0.250000,0,0);}
.m45_c00378{transform:matrix(0.226673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226673,0.000000,0.000000,0.250000,0,0);}
.md_c00378{transform:matrix(0.231257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231257,0.000000,0.000000,0.250000,0,0);}
.m34_c00378{transform:matrix(0.233905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233905,0.000000,0.000000,0.250000,0,0);}
.m2c_c00378{transform:matrix(0.234972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234972,0.000000,0.000000,0.250000,0,0);}
.m15_c00378{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);}
.m81_c00378{transform:matrix(0.237618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237618,0.000000,0.000000,0.250000,0,0);}
.m6a_c00378{transform:matrix(0.241578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241578,0.000000,0.000000,0.250000,0,0);}
.m74_c00378{transform:matrix(0.248376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248376,0.000000,0.000000,0.250000,0,0);}
.m0_c00378{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00378{transform:matrix(0.251508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251508,0.000000,0.000000,0.250000,0,0);}
.m92_c00378{transform:matrix(0.252713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252713,0.000000,0.000000,0.250000,0,0);}
.m29_c00378{transform:matrix(0.254604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254604,0.000000,0.000000,0.250000,0,0);}
.m1b_c00378{transform:matrix(0.254683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254683,0.000000,0.000000,0.250000,0,0);}
.m2f_c00378{transform:matrix(0.255128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255128,0.000000,0.000000,0.250000,0,0);}
.mac_c00378{transform:matrix(0.256293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256293,0.000000,0.000000,0.250000,0,0);}
.m98_c00378{transform:matrix(0.257874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257874,0.000000,0.000000,0.250000,0,0);}
.m44_c00378{transform:matrix(0.259488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259488,0.000000,0.000000,0.250000,0,0);}
.m4e_c00378{transform:matrix(0.259900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259900,0.000000,0.000000,0.250000,0,0);}
.mbd_c00378{transform:matrix(0.260078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260078,0.000000,0.000000,0.250000,0,0);}
.md3_c00378{transform:matrix(0.260914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260914,0.000000,0.000000,0.250000,0,0);}
.mad_c00378{transform:matrix(0.264294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264294,0.000000,0.000000,0.250000,0,0);}
.m93_c00378{transform:matrix(0.264381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264381,0.000000,0.000000,0.250000,0,0);}
.mb7_c00378{transform:matrix(0.267619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267619,0.000000,0.000000,0.250000,0,0);}
.md0_c00378{transform:matrix(0.268416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268416,0.000000,0.000000,0.250000,0,0);}
.mb1_c00378{transform:matrix(0.269016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269016,0.000000,0.000000,0.250000,0,0);}
.mb5_c00378{transform:matrix(0.269749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269749,0.000000,0.000000,0.250000,0,0);}
.m9_c00378{transform:matrix(0.270827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270827,0.000000,0.000000,0.250000,0,0);}
.mf_c00378{transform:matrix(0.271394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271394,0.000000,0.000000,0.250000,0,0);}
.m84_c00378{transform:matrix(0.271467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271467,0.000000,0.000000,0.250000,0,0);}
.m2a_c00378{transform:matrix(0.273819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273819,0.000000,0.000000,0.250000,0,0);}
.m94_c00378{transform:matrix(0.274427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274427,0.000000,0.000000,0.250000,0,0);}
.m55_c00378{transform:matrix(0.274714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274714,0.000000,0.000000,0.250000,0,0);}
.m2e_c00378{transform:matrix(0.274839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274839,0.000000,0.000000,0.250000,0,0);}
.m58_c00378{transform:matrix(0.275579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275579,0.000000,0.000000,0.250000,0,0);}
.m7c_c00378{transform:matrix(0.276294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276294,0.000000,0.000000,0.250000,0,0);}
.mc4_c00378{transform:matrix(0.276535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276535,0.000000,0.000000,0.250000,0,0);}
.mbe_c00378{transform:matrix(0.276679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276679,0.000000,0.000000,0.250000,0,0);}
.m56_c00378{transform:matrix(0.277249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277249,0.000000,0.000000,0.250000,0,0);}
.m4_c00378{transform:matrix(0.277815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277815,0.000000,0.000000,0.250000,0,0);}
.m65_c00378{transform:matrix(0.277957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277957,0.000000,0.000000,0.250000,0,0);}
.m7b_c00378{transform:matrix(0.278556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278556,0.000000,0.000000,0.250000,0,0);}
.m22_c00378{transform:matrix(0.278623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278623,0.000000,0.000000,0.250000,0,0);}
.m8d_c00378{transform:matrix(0.278945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278945,0.000000,0.000000,0.250000,0,0);}
.md1_c00378{transform:matrix(0.279337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279337,0.000000,0.000000,0.250000,0,0);}
.mc1_c00378{transform:matrix(0.279367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279367,0.000000,0.000000,0.250000,0,0);}
.me_c00378{transform:matrix(0.280330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280330,0.000000,0.000000,0.250000,0,0);}
.ma_c00378{transform:matrix(0.280680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280680,0.000000,0.000000,0.250000,0,0);}
.m14_c00378{transform:matrix(0.280741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280741,0.000000,0.000000,0.250000,0,0);}
.m2_c00378{transform:matrix(0.281035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281035,0.000000,0.000000,0.250000,0,0);}
.m1_c00378{transform:matrix(0.281701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281701,0.000000,0.000000,0.250000,0,0);}
.m9f_c00378{transform:matrix(0.282201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282201,0.000000,0.000000,0.250000,0,0);}
.m3f_c00378{transform:matrix(0.282668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282668,0.000000,0.000000,0.250000,0,0);}
.m1c_c00378{transform:matrix(0.284807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284807,0.000000,0.000000,0.250000,0,0);}
.mce_c00378{transform:matrix(0.284933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284933,0.000000,0.000000,0.250000,0,0);}
.m9c_c00378{transform:matrix(0.285135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285135,0.000000,0.000000,0.250000,0,0);}
.ma0_c00378{transform:matrix(0.285285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285285,0.000000,0.000000,0.250000,0,0);}
.ma4_c00378{transform:matrix(0.285847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285847,0.000000,0.000000,0.250000,0,0);}
.m21_c00378{transform:matrix(0.286122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286122,0.000000,0.000000,0.250000,0,0);}
.m11_c00378{transform:matrix(0.286226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286226,0.000000,0.000000,0.250000,0,0);}
.mc8_c00378{transform:matrix(0.286490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286490,0.000000,0.000000,0.250000,0,0);}
.m90_c00378{transform:matrix(0.286790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286790,0.000000,0.000000,0.250000,0,0);}
.m99_c00378{transform:matrix(0.287379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287379,0.000000,0.000000,0.250000,0,0);}
.m5f_c00378{transform:matrix(0.287555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287555,0.000000,0.000000,0.250000,0,0);}
.m8b_c00378{transform:matrix(0.288338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288338,0.000000,0.000000,0.250000,0,0);}
.m1e_c00378{transform:matrix(0.289591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289591,0.000000,0.000000,0.250000,0,0);}
.m7_c00378{transform:matrix(0.290949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290949,0.000000,0.000000,0.250000,0,0);}
.m30_c00378{transform:matrix(0.292090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292090,0.000000,0.000000,0.250000,0,0);}
.mb9_c00378{transform:matrix(0.292439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292439,0.000000,0.000000,0.250000,0,0);}
.m41_c00378{transform:matrix(0.292862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292862,0.000000,0.000000,0.250000,0,0);}
.mc_c00378{transform:matrix(0.293219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293219,0.000000,0.000000,0.250000,0,0);}
.m50_c00378{transform:matrix(0.293952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293952,0.000000,0.000000,0.250000,0,0);}
.m3d_c00378{transform:matrix(0.294027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294027,0.000000,0.000000,0.250000,0,0);}
.m6e_c00378{transform:matrix(0.294205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294205,0.000000,0.000000,0.250000,0,0);}
.mc2_c00378{transform:matrix(0.294681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294681,0.000000,0.000000,0.250000,0,0);}
.m8e_c00378{transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);}
.m39_c00378{transform:matrix(0.295246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295246,0.000000,0.000000,0.250000,0,0);}
.ma9_c00378{transform:matrix(0.295736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295736,0.000000,0.000000,0.250000,0,0);}
.m5e_c00378{transform:matrix(0.296612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296612,0.000000,0.000000,0.250000,0,0);}
.mb8_c00378{transform:matrix(0.296682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296682,0.000000,0.000000,0.250000,0,0);}
.m23_c00378{transform:matrix(0.297584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297584,0.000000,0.000000,0.250000,0,0);}
.mab_c00378{transform:matrix(0.299006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299006,0.000000,0.000000,0.250000,0,0);}
.ma3_c00378{transform:matrix(0.299123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299123,0.000000,0.000000,0.250000,0,0);}
.m73_c00378{transform:matrix(0.299978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299978,0.000000,0.000000,0.250000,0,0);}
.m2d_c00378{transform:matrix(0.300614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300614,0.000000,0.000000,0.250000,0,0);}
.m95_c00378{transform:matrix(0.301354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301354,0.000000,0.000000,0.250000,0,0);}
.m6b_c00378{transform:matrix(0.301797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301797,0.000000,0.000000,0.250000,0,0);}
.m12_c00378{transform:matrix(0.302041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302041,0.000000,0.000000,0.250000,0,0);}
.m1f_c00378{transform:matrix(0.302314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302314,0.000000,0.000000,0.250000,0,0);}
.mcb_c00378{transform:matrix(0.302855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302855,0.000000,0.000000,0.250000,0,0);}
.m57_c00378{transform:matrix(0.303521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303521,0.000000,0.000000,0.250000,0,0);}
.m6_c00378{transform:matrix(0.305131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305131,0.000000,0.000000,0.250000,0,0);}
.m70_c00378{transform:matrix(0.305256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305256,0.000000,0.000000,0.250000,0,0);}
.m13_c00378{transform:matrix(0.305308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305308,0.000000,0.000000,0.250000,0,0);}
.m3c_c00378{transform:matrix(0.305521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305521,0.000000,0.000000,0.250000,0,0);}
.m4f_c00378{transform:matrix(0.305595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305595,0.000000,0.000000,0.250000,0,0);}
.mcd_c00378{transform:matrix(0.305801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305801,0.000000,0.000000,0.250000,0,0);}
.m7f_c00378{transform:matrix(0.306602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306602,0.000000,0.000000,0.250000,0,0);}
.m5a_c00378{transform:matrix(0.306908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306908,0.000000,0.000000,0.250000,0,0);}
.m9d_c00378{transform:matrix(0.308328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308328,0.000000,0.000000,0.250000,0,0);}
.m8f_c00378{transform:matrix(0.308696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308696,0.000000,0.000000,0.250000,0,0);}
.m96_c00378{transform:matrix(0.308942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308942,0.000000,0.000000,0.250000,0,0);}
.m64_c00378{transform:matrix(0.309203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309203,0.000000,0.000000,0.250000,0,0);}
.ma2_c00378{transform:matrix(0.309457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309457,0.000000,0.000000,0.250000,0,0);}
.m97_c00378{transform:matrix(0.310278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310278,0.000000,0.000000,0.250000,0,0);}
.m42_c00378{transform:matrix(0.312470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312470,0.000000,0.000000,0.250000,0,0);}
.mc9_c00378{transform:matrix(0.312639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312639,0.000000,0.000000,0.250000,0,0);}
.m7d_c00378{transform:matrix(0.313421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313421,0.000000,0.000000,0.250000,0,0);}
.m6c_c00378{transform:matrix(0.313829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313829,0.000000,0.000000,0.250000,0,0);}
.m2b_c00378{transform:matrix(0.314069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314069,0.000000,0.000000,0.250000,0,0);}
.ma1_c00378{transform:matrix(0.314362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314362,0.000000,0.000000,0.250000,0,0);}
.ma6_c00378{transform:matrix(0.316276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316276,0.000000,0.000000,0.250000,0,0);}
.mb0_c00378{transform:matrix(0.317536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317536,0.000000,0.000000,0.250000,0,0);}
.m36_c00378{transform:matrix(0.317856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317856,0.000000,0.000000,0.250000,0,0);}
.mae_c00378{transform:matrix(0.318881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318881,0.000000,0.000000,0.250000,0,0);}
.m18_c00378{transform:matrix(0.318938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318938,0.000000,0.000000,0.250000,0,0);}
.m71_c00378{transform:matrix(0.320009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320009,0.000000,0.000000,0.250000,0,0);}
.m3e_c00378{transform:matrix(0.320293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320293,0.000000,0.000000,0.250000,0,0);}
.m49_c00378{transform:matrix(0.320854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320854,0.000000,0.000000,0.250000,0,0);}
.m82_c00378{transform:matrix(0.320882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320882,0.000000,0.000000,0.250000,0,0);}
.m31_c00378{transform:matrix(0.322369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322369,0.000000,0.000000,0.250000,0,0);}
.mc3_c00378{transform:matrix(0.322608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322608,0.000000,0.000000,0.250000,0,0);}
.m5c_c00378{transform:matrix(0.322750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00378{transform:matrix(0.324400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324400,0.000000,0.000000,0.250000,0,0);}
.m20_c00378{transform:matrix(0.324594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324594,0.000000,0.000000,0.250000,0,0);}
.m91_c00378{transform:matrix(0.324739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324739,0.000000,0.000000,0.250000,0,0);}
.m60_c00378{transform:matrix(0.324906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324906,0.000000,0.000000,0.250000,0,0);}
.m76_c00378{transform:matrix(0.325285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325285,0.000000,0.000000,0.250000,0,0);}
.m19_c00378{transform:matrix(0.328295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328295,0.000000,0.000000,0.250000,0,0);}
.m83_c00378{transform:matrix(0.328412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328412,0.000000,0.000000,0.250000,0,0);}
.m4a_c00378{transform:matrix(0.328439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328439,0.000000,0.000000,0.250000,0,0);}
.m77_c00378{transform:matrix(0.328528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328528,0.000000,0.000000,0.250000,0,0);}
.m32_c00378{transform:matrix(0.329510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329510,0.000000,0.000000,0.250000,0,0);}
.m7e_c00378{transform:matrix(0.330091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330091,0.000000,0.000000,0.250000,0,0);}
.mb3_c00378{transform:matrix(0.330414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330414,0.000000,0.000000,0.250000,0,0);}
.m9b_c00378{transform:matrix(0.330660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330660,0.000000,0.000000,0.250000,0,0);}
.m62_c00378{transform:matrix(0.332168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332168,0.000000,0.000000,0.250000,0,0);}
.mb4_c00378{transform:matrix(0.332494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332494,0.000000,0.000000,0.250000,0,0);}
.mc7_c00378{transform:matrix(0.332646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332646,0.000000,0.000000,0.250000,0,0);}
.m78_c00378{transform:matrix(0.332894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332894,0.000000,0.000000,0.250000,0,0);}
.m9e_c00378{transform:matrix(0.334426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334426,0.000000,0.000000,0.250000,0,0);}
.m63_c00378{transform:matrix(0.334680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334680,0.000000,0.000000,0.250000,0,0);}
.ma8_c00378{transform:matrix(0.334790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334790,0.000000,0.000000,0.250000,0,0);}
.m68_c00378{transform:matrix(0.334905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334905,0.000000,0.000000,0.250000,0,0);}
.m9a_c00378{transform:matrix(0.336513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336513,0.000000,0.000000,0.250000,0,0);}
.mb6_c00378{transform:matrix(0.336814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336814,0.000000,0.000000,0.250000,0,0);}
.m1d_c00378{transform:matrix(0.337442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337442,0.000000,0.000000,0.250000,0,0);}
.ma7_c00378{transform:matrix(0.338045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338045,0.000000,0.000000,0.250000,0,0);}
.maa_c00378{transform:matrix(0.338097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338097,0.000000,0.000000,0.250000,0,0);}
.m1a_c00378{transform:matrix(0.338482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338482,0.000000,0.000000,0.250000,0,0);}
.m6d_c00378{transform:matrix(0.339691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339691,0.000000,0.000000,0.250000,0,0);}
.m48_c00378{transform:matrix(0.339804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339804,0.000000,0.000000,0.250000,0,0);}
.m6f_c00378{transform:matrix(0.339951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339951,0.000000,0.000000,0.250000,0,0);}
.m85_c00378{transform:matrix(0.341064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341064,0.000000,0.000000,0.250000,0,0);}
.m61_c00378{transform:matrix(0.342744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342744,0.000000,0.000000,0.250000,0,0);}
.m8_c00378{transform:matrix(0.343425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343425,0.000000,0.000000,0.250000,0,0);}
.ma5_c00378{transform:matrix(0.344977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344977,0.000000,0.000000,0.250000,0,0);}
.m43_c00378{transform:matrix(0.345803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345803,0.000000,0.000000,0.250000,0,0);}
.mcf_c00378{transform:matrix(0.346932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346932,0.000000,0.000000,0.250000,0,0);}
.m69_c00378{transform:matrix(0.347155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347155,0.000000,0.000000,0.250000,0,0);}
.m59_c00378{transform:matrix(0.348976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348976,0.000000,0.000000,0.250000,0,0);}
.m66_c00378{transform:matrix(0.351293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351293,0.000000,0.000000,0.250000,0,0);}
.m72_c00378{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);}
.mbf_c00378{transform:matrix(0.353245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353245,0.000000,0.000000,0.250000,0,0);}
.m75_c00378{transform:matrix(0.356413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356413,0.000000,0.000000,0.250000,0,0);}
.m33_c00378{transform:matrix(0.356942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356942,0.000000,0.000000,0.250000,0,0);}
.mba_c00378{transform:matrix(0.361311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361311,0.000000,0.000000,0.250000,0,0);}
.m5b_c00378{transform:matrix(0.362078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362078,0.000000,0.000000,0.250000,0,0);}
.md2_c00378{transform:matrix(0.365477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365477,0.000000,0.000000,0.250000,0,0);}
.m67_c00378{transform:matrix(0.365951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365951,0.000000,0.000000,0.250000,0,0);}
.m40_c00378{transform:matrix(0.366015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366015,0.000000,0.000000,0.250000,0,0);}
.m5_c00378{transform:matrix(0.369095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369095,0.000000,0.000000,0.250000,0,0);}
.mc6_c00378{transform:matrix(0.371538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371538,0.000000,0.000000,0.250000,0,0);}
.m10_c00378{transform:matrix(0.371692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371692,0.000000,0.000000,0.250000,0,0);}
.m3a_c00378{transform:matrix(0.375615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375615,0.000000,0.000000,0.250000,0,0);}
.m87_c00378{transform:matrix(0.377606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377606,0.000000,0.000000,0.250000,0,0);}
.m4d_c00378{transform:matrix(0.378888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378888,0.000000,0.000000,0.250000,0,0);}
.m80_c00378{transform:matrix(0.382136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382136,0.000000,0.000000,0.250000,0,0);}
.m38_c00378{transform:matrix(0.389789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389789,0.000000,0.000000,0.250000,0,0);}
.mcc_c00378{transform:matrix(0.391953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391953,0.000000,0.000000,0.250000,0,0);}
.m54_c00378{transform:matrix(0.393189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393189,0.000000,0.000000,0.250000,0,0);}
.mb2_c00378{transform:matrix(0.396876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396876,0.000000,0.000000,0.250000,0,0);}
.mca_c00378{transform:matrix(0.407816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407816,0.000000,0.000000,0.250000,0,0);}
.maf_c00378{transform:matrix(0.418138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418138,0.000000,0.000000,0.250000,0,0);}
.mc5_c00378{transform:matrix(0.419438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419438,0.000000,0.000000,0.250000,0,0);}
.mbb_c00378{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);}
.m7a_c00378{transform:matrix(0.442937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442937,0.000000,0.000000,0.250000,0,0);}
.m8c_c00378{transform:matrix(0.444701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444701,0.000000,0.000000,0.250000,0,0);}
.mbc_c00378{transform:matrix(0.610217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.610217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.610217,0.000000,0.000000,0.250000,0,0);}
.v1_c00378{vertical-align:-1.449360px;}
.v0_c00378{vertical-align:0.000000px;}
.v2_c00378{vertical-align:11.404800px;}
.ls10_c00378{letter-spacing:-2.799727px;}
.ls6_c00378{letter-spacing:-2.668050px;}
.lsf_c00378{letter-spacing:-2.172555px;}
.ls7_c00378{letter-spacing:-1.951488px;}
.ls11_c00378{letter-spacing:-0.602217px;}
.ls3_c00378{letter-spacing:0.000000px;}
.ls1_c00378{letter-spacing:0.068607px;}
.lsa_c00378{letter-spacing:1.069200px;}
.ls12_c00378{letter-spacing:1.722600px;}
.ls0_c00378{letter-spacing:1.989603px;}
.lsc_c00378{letter-spacing:2.098810px;}
.ls2_c00378{letter-spacing:2.599443px;}
.lse_c00378{letter-spacing:3.155922px;}
.ls14_c00378{letter-spacing:3.306610px;}
.lsb_c00378{letter-spacing:3.395700px;}
.ls15_c00378{letter-spacing:3.773385px;}
.ls13_c00378{letter-spacing:3.781810px;}
.ls5_c00378{letter-spacing:3.811500px;}
.ls4_c00378{letter-spacing:4.197610px;}
.ls8_c00378{letter-spacing:48.470598px;}
.lsd_c00378{letter-spacing:49.896198px;}
.ls9_c00378{letter-spacing:58.449798px;}
.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;}
}
.ws5_c00378{word-spacing:-19.126107px;}
.ws2_c00378{word-spacing:-19.057500px;}
.ws1_c00378{word-spacing:-17.106012px;}
.ws4_c00378{word-spacing:-3.277890px;}
.wsa_c00378{word-spacing:0.000000px;}
.ws7_c00378{word-spacing:0.456390px;}
.ws0_c00378{word-spacing:0.838530px;}
.ws6_c00378{word-spacing:1.905750px;}
.ws8_c00378{word-spacing:2.363130px;}
.ws3_c00378{word-spacing:3.354120px;}
.ws9_c00378{word-spacing:3.506580px;}
._1a_c00378{margin-left:-11.282040px;}
._16_c00378{margin-left:-8.613990px;}
._7_c00378{margin-left:-6.708240px;}
._1f_c00378{margin-left:-5.107410px;}
._1b_c00378{margin-left:-2.439360px;}
._a_c00378{margin-left:-1.372140px;}
._0_c00378{width:2.098701px;}
._8_c00378{width:3.887730px;}
._d_c00378{width:5.564790px;}
._3_c00378{width:7.470540px;}
._e_c00378{width:8.537760px;}
._5_c00378{width:10.292040px;}
._6_c00378{width:12.249270px;}
._10_c00378{width:13.950090px;}
._1d_c00378{width:15.246000px;}
._f_c00378{width:16.694370px;}
._15_c00378{width:20.096109px;}
._b_c00378{width:21.344400px;}
._1_c00378{width:22.869000px;}
._9_c00378{width:25.795341px;}
._18_c00378{width:27.214110px;}
._13_c00378{width:29.043630px;}
._1c_c00378{width:30.416760px;}
._11_c00378{width:32.092830px;}
._17_c00378{width:34.098570px;}
._4_c00378{width:35.599410px;}
._2_c00378{width:36.971550px;}
._12_c00378{width:38.422890px;}
._c_c00378{width:39.453480px;}
._14_c00378{width:41.621580px;}
._19_c00378{width:50.340411px;}
._1e_c00378{width:1221.770880px;}
.fc0_c00378{color:transparent;}
.fs8_c00378{font-size:21.384000px;}
.fs1_c00378{font-size:22.176000px;}
.fs14_c00378{font-size:22.572000px;}
.fs17_c00378{font-size:25.344000px;}
.fs0_c00378{font-size:28.314000px;}
.fs16_c00378{font-size:33.660000px;}
.fs11_c00378{font-size:34.452000px;}
.fse_c00378{font-size:40.986198px;}
.fsb_c00378{font-size:41.976198px;}
.fs6_c00378{font-size:48.470598px;}
.fsd_c00378{font-size:49.896198px;}
.fs7_c00378{font-size:58.449798px;}
.fs5_c00378{font-size:63.360000px;}
.fs9_c00378{font-size:65.340000px;}
.fs15_c00378{font-size:66.132198px;}
.fs13_c00378{font-size:66.330000px;}
.fsa_c00378{font-size:67.914000px;}
.fs4_c00378{font-size:70.884000px;}
.fs12_c00378{font-size:75.636198px;}
.fsc_c00378{font-size:76.032198px;}
.fs3_c00378{font-size:76.230000px;}
.fsf_c00378{font-size:79.992198px;}
.fs2_c00378{font-size:83.952198px;}
.fs10_c00378{font-size:91.872198px;}
.y0_c00378{bottom:0.000000px;}
.y2b_c00378{bottom:17.019135px;}
.y2a_c00378{bottom:50.159385px;}
.y1_c00378{bottom:76.500000px;}
.y29_c00378{bottom:113.603535px;}
.y28_c00378{bottom:146.743785px;}
.y27_c00378{bottom:178.468335px;}
.y3_c00378{bottom:183.814335px;}
.y26_c00378{bottom:211.257135px;}
.y25_c00378{bottom:243.684585px;}
.y24_c00378{bottom:276.121935px;}
.y23_c00378{bottom:340.630335px;}
.y22_c00378{bottom:373.057785px;}
.y21_c00378{bottom:406.915785px;}
.y1f_c00378{bottom:439.353135px;}
.y20_c00378{bottom:444.699135px;}
.y1e_c00378{bottom:463.231935px;}
.y1d_c00378{bottom:472.141935px;}
.y1c_c00378{bottom:505.999935px;}
.y1b_c00378{bottom:538.070985px;}
.y1a_c00378{bottom:560.885535px;}
.y19_c00378{bottom:570.503385px;}
.y17_c00378{bottom:602.580870px;}
.y18_c00378{bottom:602.584335px;}
.y16_c00378{bottom:635.016735px;}
.y12_c00378{bottom:666.379935px;}
.y14_c00378{bottom:666.736335px;}
.y15_c00378{bottom:667.087785px;}
.y13_c00378{bottom:672.438735px;}
.y11_c00378{bottom:699.525135px;}
.y10_c00378{bottom:731.957535px;}
.yf_c00378{bottom:761.182335px;}
.yc_c00378{bottom:764.028585px;}
.ye_c00378{bottom:764.389935px;}
.yd_c00378{bottom:764.746335px;}
.yb_c00378{bottom:786.486735px;}
.ya_c00378{bottom:796.822335px;}
.y9_c00378{bottom:828.541935px;}
.y2c_c00378{bottom:832.462335px;}
.y8_c00378{bottom:860.617935px;}
.y7_c00378{bottom:892.337535px;}
.y6_c00378{bottom:927.259785px;}
.y5_c00378{bottom:1000.326735px;}
.y4_c00378{bottom:1076.234985px;}
.y2_c00378{bottom:1087.283385px;}
.h8_c00378{height:20.987227px;}
.h3_c00378{height:23.128875px;}
.h16_c00378{height:23.541891px;}
.h15_c00378{height:24.873750px;}
.h2_c00378{height:29.530617px;}
.h6_c00378{height:32.281418px;}
.h14_c00378{height:33.035449px;}
.hd_c00378{height:33.230868px;}
.h11_c00378{height:35.932359px;}
.h7_c00378{height:38.927565px;}
.he_c00378{height:40.225712px;}
.hb_c00378{height:42.304137px;}
.h9_c00378{height:68.147578px;}
.h13_c00378{height:68.973816px;}
.ha_c00378{height:70.832180px;}
.h12_c00378{height:74.195860px;}
.hc_c00378{height:74.621444px;}
.h5_c00378{height:74.815576px;}
.hf_c00378{height:78.507968px;}
.h4_c00378{height:82.394491px;}
.h10_c00378{height:95.819832px;}
.h1_c00378{height:1110.000000px;}
.h0_c00378{height:1263.000000px;}
.w1_c00378{width:775.500000px;}
.w0_c00378{width:892.500000px;}
.x0_c00378{left:0.000000px;}
.x2_c00378{left:35.809935px;}
.x1_c00378{left:58.500000px;}
.x3_c00378{left:71.182635px;}
.x53_c00378{left:92.249835px;}
.x14_c00378{left:93.358635px;}
.x7_c00378{left:95.373285px;}
.x70_c00378{left:96.650385px;}
.x4d_c00378{left:104.565435px;}
.x71_c00378{left:107.367135px;}
.x3e_c00378{left:115.628685px;}
.x15_c00378{left:117.113685px;}
.x46_c00378{left:126.662235px;}
.x63_c00378{left:128.082885px;}
.x16_c00378{left:137.883885px;}
.x7a_c00378{left:141.527085px;}
.x30_c00378{left:148.759035px;}
.x8_c00378{left:149.828235px;}
.x9_c00378{left:159.866835px;}
.x47_c00378{left:169.628235px;}
.xa_c00378{left:171.375585px;}
.x69_c00378{left:172.429935px;}
.x20_c00378{left:181.042935px;}
.x31_c00378{left:182.112135px;}
.x25_c00378{left:192.883335px;}
.x17_c00378{left:194.036685px;}
.x4c_c00378{left:195.719685px;}
.x54_c00378{left:200.991435px;}
.x48_c00378{left:204.015885px;}
.x21_c00378{left:205.273185px;}
.x82_c00378{left:212.267535px;}
.x26_c00378{left:215.554335px;}
.x72_c00378{left:216.826485px;}
.x18_c00378{left:226.983885px;}
.x32_c00378{left:238.066935px;}
.xb_c00378{left:248.942085px;}
.x3f_c00378{left:249.971685px;}
.x33_c00378{left:259.059885px;}
.x22_c00378{left:260.960685px;}
.x27_c00378{left:270.103335px;}
.x4e_c00378{left:271.360635px;}
.x23_c00378{left:281.681385px;}
.x7f_c00378{left:283.626735px;}
.x4f_c00378{left:291.517035px;}
.x24_c00378{left:292.724835px;}
.x7b_c00378{left:293.813835px;}
.xc_c00378{left:303.946485px;}
.x19_c00378{left:314.836485px;}
.x5b_c00378{left:316.262085px;}
.x6_c00378{left:323.068335px;}
.x34_c00378{left:326.563035px;}
.x80_c00378{left:327.676785px;}
.x55_c00378{left:337.101585px;}
.x6c_c00378{left:338.358885px;}
.x74_c00378{left:347.090685px;}
.xd_c00378{left:348.343035px;}
.x64_c00378{left:351.263535px;}
.x49_c00378{left:359.198385px;}
.x40_c00378{left:360.455685px;}
.x28_c00378{left:368.855835px;}
.x65_c00378{left:369.929985px;}
.x60_c00378{left:371.132835px;}
.x66_c00378{left:374.206785px;}
.x67_c00378{left:376.706535px;}
.x35_c00378{left:381.503085px;}
.x73_c00378{left:382.908885px;}
.x29_c00378{left:392.893035px;}
.x75_c00378{left:393.962235px;}
.xe_c00378{left:404.263185px;}
.x2a_c00378{left:413.762235px;}
.x50_c00378{left:415.192785px;}
.x78_c00378{left:420.583335px;}
.x1a_c00378{left:426.023385px;}
.x6a_c00378{left:436.730235px;}
.x5c_c00378{left:437.794485px;}
.x81_c00378{left:439.828935px;}
.x1b_c00378{left:447.422235px;}
.x68_c00378{left:448.828035px;}
.x1c_c00378{left:458.777535px;}
.x61_c00378{left:460.222935px;}
.x36_c00378{left:469.870485px;}
.x7d_c00378{left:470.909985px;}
.x41_c00378{left:481.428735px;}
.x1d_c00378{left:491.972235px;}
.x42_c00378{left:502.664235px;}
.x37_c00378{left:505.456035px;}
.x83_c00378{left:508.039935px;}
.x5d_c00378{left:515.118435px;}
.x6f_c00378{left:517.162785px;}
.x4a_c00378{left:525.835185px;}
.x43_c00378{left:536.032185px;}
.x6d_c00378{left:537.215235px;}
.x2b_c00378{left:546.852885px;}
.x56_c00378{left:548.199285px;}
.xf_c00378{left:557.921085px;}
.x38_c00378{left:559.326885px;}
.x79_c00378{left:561.994935px;}
.x44_c00378{left:569.459535px;}
.x2c_c00378{left:572.058285px;}
.x57_c00378{left:580.003035px;}
.x58_c00378{left:590.180235px;}
.x10_c00378{left:591.744435px;}
.x3d_c00378{left:595.016385px;}
.x39_c00378{left:600.872235px;}
.x7e_c00378{left:602.253285px;}
.x2d_c00378{left:603.485835px;}
.x11_c00378{left:613.370985px;}
.x5e_c00378{left:614.573835px;}
.x12_c00378{left:624.884685px;}
.x76_c00378{left:625.934085px;}
.x4b_c00378{left:634.908435px;}
.x3a_c00378{left:636.601335px;}
.x59_c00378{left:646.644885px;}
.x1e_c00378{left:647.669535px;}
.x6e_c00378{left:649.753485px;}
.x6b_c00378{left:656.827035px;}
.x51_c00378{left:658.381335px;}
.x3b_c00378{left:668.746635px;}
.x7c_c00378{left:669.766335px;}
.x4_c00378{left:672.226485px;}
.x1f_c00378{left:680.077185px;}
.x3c_c00378{left:689.615835px;}
.x13_c00378{left:690.843435px;}
.x5_c00378{left:694.021335px;}
.x2f_c00378{left:698.357535px;}
.x45_c00378{left:700.307835px;}
.x62_c00378{left:701.332485px;}
.x5f_c00378{left:702.956085px;}
.x2e_c00378{left:712.390785px;}
.x52_c00378{left:713.563935px;}
.x77_c00378{left:723.790635px;}
.x5a_c00378{left:746.417085px;}
.x84_c00378{left:757.554585px;}
@media print{
.v1_c00378{vertical-align:-1.288320pt;}
.v0_c00378{vertical-align:0.000000pt;}
.v2_c00378{vertical-align:10.137600pt;}
.ls10_c00378{letter-spacing:-2.488646pt;}
.ls6_c00378{letter-spacing:-2.371600pt;}
.lsf_c00378{letter-spacing:-1.931160pt;}
.ls7_c00378{letter-spacing:-1.734656pt;}
.ls11_c00378{letter-spacing:-0.535304pt;}
.ls3_c00378{letter-spacing:0.000000pt;}
.ls1_c00378{letter-spacing:0.060984pt;}
.lsa_c00378{letter-spacing:0.950400pt;}
.ls12_c00378{letter-spacing:1.531200pt;}
.ls0_c00378{letter-spacing:1.768536pt;}
.lsc_c00378{letter-spacing:1.865609pt;}
.ls2_c00378{letter-spacing:2.310616pt;}
.lse_c00378{letter-spacing:2.805264pt;}
.ls14_c00378{letter-spacing:2.939209pt;}
.lsb_c00378{letter-spacing:3.018400pt;}
.ls15_c00378{letter-spacing:3.354120pt;}
.ls13_c00378{letter-spacing:3.361609pt;}
.ls5_c00378{letter-spacing:3.388000pt;}
.ls4_c00378{letter-spacing:3.731209pt;}
.ls8_c00378{letter-spacing:43.084976pt;}
.lsd_c00378{letter-spacing:44.352176pt;}
.ls9_c00378{letter-spacing:51.955376pt;}
.ws5_c00378{word-spacing:-17.000984pt;}
.ws2_c00378{word-spacing:-16.940000pt;}
.ws1_c00378{word-spacing:-15.205344pt;}
.ws4_c00378{word-spacing:-2.913680pt;}
.wsa_c00378{word-spacing:0.000000pt;}
.ws7_c00378{word-spacing:0.405680pt;}
.ws0_c00378{word-spacing:0.745360pt;}
.ws6_c00378{word-spacing:1.694000pt;}
.ws8_c00378{word-spacing:2.100560pt;}
.ws3_c00378{word-spacing:2.981440pt;}
.ws9_c00378{word-spacing:3.116960pt;}
._1a_c00378{margin-left:-10.028480pt;}
._16_c00378{margin-left:-7.656880pt;}
._7_c00378{margin-left:-5.962880pt;}
._1f_c00378{margin-left:-4.539920pt;}
._1b_c00378{margin-left:-2.168320pt;}
._a_c00378{margin-left:-1.219680pt;}
._0_c00378{width:1.865512pt;}
._8_c00378{width:3.455760pt;}
._d_c00378{width:4.946480pt;}
._3_c00378{width:6.640480pt;}
._e_c00378{width:7.589120pt;}
._5_c00378{width:9.148480pt;}
._6_c00378{width:10.888240pt;}
._10_c00378{width:12.400080pt;}
._1d_c00378{width:13.552000pt;}
._f_c00378{width:14.839440pt;}
._15_c00378{width:17.863208pt;}
._b_c00378{width:18.972800pt;}
._1_c00378{width:20.328000pt;}
._9_c00378{width:22.929192pt;}
._18_c00378{width:24.190320pt;}
._13_c00378{width:25.816560pt;}
._1c_c00378{width:27.037120pt;}
._11_c00378{width:28.526960pt;}
._17_c00378{width:30.309840pt;}
._4_c00378{width:31.643920pt;}
._2_c00378{width:32.863600pt;}
._12_c00378{width:34.153680pt;}
._c_c00378{width:35.069760pt;}
._14_c00378{width:36.996960pt;}
._19_c00378{width:44.747032pt;}
._1e_c00378{width:1086.018560pt;}
.fs8_c00378{font-size:19.008000pt;}
.fs1_c00378{font-size:19.712000pt;}
.fs14_c00378{font-size:20.064000pt;}
.fs17_c00378{font-size:22.528000pt;}
.fs0_c00378{font-size:25.168000pt;}
.fs16_c00378{font-size:29.920000pt;}
.fs11_c00378{font-size:30.624000pt;}
.fse_c00378{font-size:36.432176pt;}
.fsb_c00378{font-size:37.312176pt;}
.fs6_c00378{font-size:43.084976pt;}
.fsd_c00378{font-size:44.352176pt;}
.fs7_c00378{font-size:51.955376pt;}
.fs5_c00378{font-size:56.320000pt;}
.fs9_c00378{font-size:58.080000pt;}
.fs15_c00378{font-size:58.784176pt;}
.fs13_c00378{font-size:58.960000pt;}
.fsa_c00378{font-size:60.368000pt;}
.fs4_c00378{font-size:63.008000pt;}
.fs12_c00378{font-size:67.232176pt;}
.fsc_c00378{font-size:67.584176pt;}
.fs3_c00378{font-size:67.760000pt;}
.fsf_c00378{font-size:71.104176pt;}
.fs2_c00378{font-size:74.624176pt;}
.fs10_c00378{font-size:81.664176pt;}
.y0_c00378{bottom:0.000000pt;}
.y2b_c00378{bottom:15.128120pt;}
.y2a_c00378{bottom:44.586120pt;}
.y1_c00378{bottom:68.000000pt;}
.y29_c00378{bottom:100.980920pt;}
.y28_c00378{bottom:130.438920pt;}
.y27_c00378{bottom:158.638520pt;}
.y3_c00378{bottom:163.390520pt;}
.y26_c00378{bottom:187.784120pt;}
.y25_c00378{bottom:216.608520pt;}
.y24_c00378{bottom:245.441720pt;}
.y23_c00378{bottom:302.782520pt;}
.y22_c00378{bottom:331.606920pt;}
.y21_c00378{bottom:361.702920pt;}
.y1f_c00378{bottom:390.536120pt;}
.y20_c00378{bottom:395.288120pt;}
.y1e_c00378{bottom:411.761720pt;}
.y1d_c00378{bottom:419.681720pt;}
.y1c_c00378{bottom:449.777720pt;}
.y1b_c00378{bottom:478.285320pt;}
.y1a_c00378{bottom:498.564920pt;}
.y19_c00378{bottom:507.114120pt;}
.y17_c00378{bottom:535.627440pt;}
.y18_c00378{bottom:535.630520pt;}
.y16_c00378{bottom:564.459320pt;}
.y12_c00378{bottom:592.337720pt;}
.y14_c00378{bottom:592.654520pt;}
.y15_c00378{bottom:592.966920pt;}
.y13_c00378{bottom:597.723320pt;}
.y11_c00378{bottom:621.800120pt;}
.y10_c00378{bottom:650.628920pt;}
.yf_c00378{bottom:676.606520pt;}
.yc_c00378{bottom:679.136520pt;}
.ye_c00378{bottom:679.457720pt;}
.yd_c00378{bottom:679.774520pt;}
.yb_c00378{bottom:699.099320pt;}
.ya_c00378{bottom:708.286520pt;}
.y9_c00378{bottom:736.481720pt;}
.y2c_c00378{bottom:739.966520pt;}
.y8_c00378{bottom:764.993720pt;}
.y7_c00378{bottom:793.188920pt;}
.y6_c00378{bottom:824.230920pt;}
.y5_c00378{bottom:889.179320pt;}
.y4_c00378{bottom:956.653320pt;}
.y2_c00378{bottom:966.474120pt;}
.h8_c00378{height:18.655313pt;}
.h3_c00378{height:20.559000pt;}
.h16_c00378{height:20.926125pt;}
.h15_c00378{height:22.110000pt;}
.h2_c00378{height:26.249438pt;}
.h6_c00378{height:28.694594pt;}
.h14_c00378{height:29.364844pt;}
.hd_c00378{height:29.538549pt;}
.h11_c00378{height:31.939875pt;}
.h7_c00378{height:34.602280pt;}
.he_c00378{height:35.756188pt;}
.hb_c00378{height:37.603677pt;}
.h9_c00378{height:60.575625pt;}
.h13_c00378{height:61.310059pt;}
.ha_c00378{height:62.961938pt;}
.h12_c00378{height:65.951876pt;}
.hc_c00378{height:66.330173pt;}
.h5_c00378{height:66.502734pt;}
.hf_c00378{height:69.784860pt;}
.h4_c00378{height:73.239548pt;}
.h10_c00378{height:85.173184pt;}
.h1_c00378{height:986.666667pt;}
.h0_c00378{height:1122.666667pt;}
.w1_c00378{width:689.333333pt;}
.w0_c00378{width:793.333333pt;}
.x0_c00378{left:0.000000pt;}
.x2_c00378{left:31.831053pt;}
.x1_c00378{left:52.000000pt;}
.x3_c00378{left:63.273453pt;}
.x53_c00378{left:81.999853pt;}
.x14_c00378{left:82.985453pt;}
.x7_c00378{left:84.776253pt;}
.x70_c00378{left:85.911453pt;}
.x4d_c00378{left:92.947053pt;}
.x71_c00378{left:95.437453pt;}
.x3e_c00378{left:102.781053pt;}
.x15_c00378{left:104.101053pt;}
.x46_c00378{left:112.588653pt;}
.x63_c00378{left:113.851453pt;}
.x16_c00378{left:122.563453pt;}
.x7a_c00378{left:125.801853pt;}
.x30_c00378{left:132.230253pt;}
.x8_c00378{left:133.180653pt;}
.x9_c00378{left:142.103853pt;}
.x47_c00378{left:150.780653pt;}
.xa_c00378{left:152.333853pt;}
.x69_c00378{left:153.271053pt;}
.x20_c00378{left:160.927053pt;}
.x31_c00378{left:161.877453pt;}
.x25_c00378{left:171.451853pt;}
.x17_c00378{left:172.477053pt;}
.x4c_c00378{left:173.973053pt;}
.x54_c00378{left:178.659053pt;}
.x48_c00378{left:181.347453pt;}
.x21_c00378{left:182.465053pt;}
.x82_c00378{left:188.682253pt;}
.x26_c00378{left:191.603853pt;}
.x72_c00378{left:192.734653pt;}
.x18_c00378{left:201.763453pt;}
.x32_c00378{left:211.615053pt;}
.xb_c00378{left:221.281853pt;}
.x3f_c00378{left:222.197053pt;}
.x33_c00378{left:230.275453pt;}
.x22_c00378{left:231.965053pt;}
.x27_c00378{left:240.091853pt;}
.x4e_c00378{left:241.209453pt;}
.x23_c00378{left:250.383453pt;}
.x7f_c00378{left:252.112653pt;}
.x4f_c00378{left:259.126253pt;}
.x24_c00378{left:260.199853pt;}
.x7b_c00378{left:261.167853pt;}
.xc_c00378{left:270.174653pt;}
.x19_c00378{left:279.854653pt;}
.x5b_c00378{left:281.121853pt;}
.x6_c00378{left:287.171853pt;}
.x34_c00378{left:290.278253pt;}
.x80_c00378{left:291.268253pt;}
.x55_c00378{left:299.645853pt;}
.x6c_c00378{left:300.763453pt;}
.x74_c00378{left:308.525053pt;}
.xd_c00378{left:309.638253pt;}
.x64_c00378{left:312.234253pt;}
.x49_c00378{left:319.287453pt;}
.x40_c00378{left:320.405053pt;}
.x28_c00378{left:327.871853pt;}
.x65_c00378{left:328.826653pt;}
.x60_c00378{left:329.895853pt;}
.x66_c00378{left:332.628253pt;}
.x67_c00378{left:334.850253pt;}
.x35_c00378{left:339.113853pt;}
.x73_c00378{left:340.363453pt;}
.x29_c00378{left:349.238253pt;}
.x75_c00378{left:350.188653pt;}
.xe_c00378{left:359.345053pt;}
.x2a_c00378{left:367.788653pt;}
.x50_c00378{left:369.060253pt;}
.x78_c00378{left:373.851853pt;}
.x1a_c00378{left:378.687453pt;}
.x6a_c00378{left:388.204653pt;}
.x5c_c00378{left:389.150653pt;}
.x81_c00378{left:390.959053pt;}
.x1b_c00378{left:397.708653pt;}
.x68_c00378{left:398.958253pt;}
.x1c_c00378{left:407.802253pt;}
.x61_c00378{left:409.087053pt;}
.x36_c00378{left:417.662653pt;}
.x7d_c00378{left:418.586653pt;}
.x41_c00378{left:427.936653pt;}
.x1d_c00378{left:437.308653pt;}
.x42_c00378{left:446.812653pt;}
.x37_c00378{left:449.294253pt;}
.x83_c00378{left:451.591053pt;}
.x5d_c00378{left:457.883053pt;}
.x6f_c00378{left:459.700253pt;}
.x4a_c00378{left:467.409053pt;}
.x43_c00378{left:476.473053pt;}
.x6d_c00378{left:477.524653pt;}
.x2b_c00378{left:486.091453pt;}
.x56_c00378{left:487.288253pt;}
.xf_c00378{left:495.929853pt;}
.x38_c00378{left:497.179453pt;}
.x79_c00378{left:499.551053pt;}
.x44_c00378{left:506.186253pt;}
.x2c_c00378{left:508.496253pt;}
.x57_c00378{left:515.558253pt;}
.x58_c00378{left:524.604653pt;}
.x10_c00378{left:525.995053pt;}
.x3d_c00378{left:528.903453pt;}
.x39_c00378{left:534.108653pt;}
.x7e_c00378{left:535.336253pt;}
.x2d_c00378{left:536.431853pt;}
.x11_c00378{left:545.218653pt;}
.x5e_c00378{left:546.287853pt;}
.x12_c00378{left:555.453053pt;}
.x76_c00378{left:556.385853pt;}
.x4b_c00378{left:564.363053pt;}
.x3a_c00378{left:565.867853pt;}
.x59_c00378{left:574.795453pt;}
.x1e_c00378{left:575.706253pt;}
.x6e_c00378{left:577.558653pt;}
.x6b_c00378{left:583.846253pt;}
.x51_c00378{left:585.227853pt;}
.x3b_c00378{left:594.441453pt;}
.x7c_c00378{left:595.347853pt;}
.x4_c00378{left:597.534653pt;}
.x1f_c00378{left:604.513053pt;}
.x3c_c00378{left:612.991853pt;}
.x13_c00378{left:614.083053pt;}
.x5_c00378{left:616.907853pt;}
.x2f_c00378{left:620.762253pt;}
.x45_c00378{left:622.495853pt;}
.x62_c00378{left:623.406653pt;}
.x5f_c00378{left:624.849853pt;}
.x2e_c00378{left:633.236253pt;}
.x52_c00378{left:634.279053pt;}
.x77_c00378{left:643.369453pt;}
.x5a_c00378{left:663.481853pt;}
.x84_c00378{left:673.381853pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7b415996790c2cd6d8ede85b.woff2')format("woff");}.ff1_c00379{font-family:ff1_c00379;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00379;src:url('chunks/assets/font_cae5bbf1340ef13871af82d9.woff2')format("woff");}.ff2_c00379{font-family:ff2_c00379;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00379;src:url('chunks/assets/font_4fded2999cdd73bbf1e46f40.woff2')format("woff");}.ff3_c00379{font-family:ff3_c00379;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00379;src:url('chunks/assets/font_0605ed28a1afc1f58cab779b.woff2')format("woff");}.ff4_c00379{font-family:ff4_c00379;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00379;src:url('chunks/assets/font_d15b813e1d2ff549c6697bc6.woff2')format("woff");}.ff5_c00379{font-family:ff5_c00379;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00379;src:url('chunks/assets/font_712f568651f434a7cbd232fe.woff2')format("woff");}.ff6_c00379{font-family:ff6_c00379;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m7f_c00379{transform:matrix(0.019232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.019232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.019232,0.000000,0.000000,0.250000,0,0);}
.m7e_c00379{transform:matrix(0.038462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.038462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.038462,0.000000,0.000000,0.250000,0,0);}
.m89_c00379{transform:matrix(0.082144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.082144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.082144,0.000000,0.000000,0.250000,0,0);}
.mce_c00379{transform:matrix(0.090279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090279,0.000000,0.000000,0.250000,0,0);}
.mcc_c00379{transform:matrix(0.097223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097223,0.000000,0.000000,0.250000,0,0);}
.mb2_c00379{transform:matrix(0.101006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101006,0.000000,0.000000,0.250000,0,0);}
.me0_c00379{transform:matrix(0.119697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119697,0.000000,0.000000,0.250000,0,0);}
.md8_c00379{transform:matrix(0.120192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120192,0.000000,0.000000,0.250000,0,0);}
.mc5_c00379{transform:matrix(0.125001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125001,0.000000,0.000000,0.250000,0,0);}
.mc8_c00379{transform:matrix(0.131972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131972,0.000000,0.000000,0.250000,0,0);}
.m30_c00379{transform:matrix(0.140364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140364,0.000000,0.000000,0.250000,0,0);}
.md9_c00379{transform:matrix(0.141015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141015,0.000000,0.000000,0.250000,0,0);}
.mc3_c00379{transform:matrix(0.148897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148897,0.000000,0.000000,0.250000,0,0);}
.mad_c00379{transform:matrix(0.152525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152525,0.000000,0.000000,0.250000,0,0);}
.mee_c00379{transform:matrix(0.155171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155171,0.000000,0.000000,0.250000,0,0);}
.mdd_c00379{transform:matrix(0.157262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157262,0.000000,0.000000,0.250000,0,0);}
.m7c_c00379{transform:matrix(0.160256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160256,0.000000,0.000000,0.250000,0,0);}
.m3d_c00379{transform:matrix(0.161764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161764,0.000000,0.000000,0.250000,0,0);}
.mdb_c00379{transform:matrix(0.163967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163967,0.000000,0.000000,0.250000,0,0);}
.m8c_c00379{transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);}
.md4_c00379{transform:matrix(0.173988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173988,0.000000,0.000000,0.250000,0,0);}
.m23_c00379{transform:matrix(0.174243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174243,0.000000,0.000000,0.250000,0,0);}
.m4e_c00379{transform:matrix(0.184594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184594,0.000000,0.000000,0.250000,0,0);}
.m2d_c00379{transform:matrix(0.185463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185463,0.000000,0.000000,0.250000,0,0);}
.m7d_c00379{transform:matrix(0.185898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185898,0.000000,0.000000,0.250000,0,0);}
.mc4_c00379{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m35_c00379{transform:matrix(0.191282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191282,0.000000,0.000000,0.250000,0,0);}
.m2f_c00379{transform:matrix(0.192827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192827,0.000000,0.000000,0.250000,0,0);}
.m4b_c00379{transform:matrix(0.195839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195839,0.000000,0.000000,0.250000,0,0);}
.m8a_c00379{transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);}
.mcb_c00379{transform:matrix(0.208332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208332,0.000000,0.000000,0.250000,0,0);}
.m8b_c00379{transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);}
.m22_c00379{transform:matrix(0.212122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212122,0.000000,0.000000,0.250000,0,0);}
.m8e_c00379{transform:matrix(0.213776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213776,0.000000,0.000000,0.250000,0,0);}
.m88_c00379{transform:matrix(0.215306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215306,0.000000,0.000000,0.250000,0,0);}
.md6_c00379{transform:matrix(0.215626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215626,0.000000,0.000000,0.250000,0,0);}
.m3e_c00379{transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);}
.md5_c00379{transform:matrix(0.218464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218464,0.000000,0.000000,0.250000,0,0);}
.mb0_c00379{transform:matrix(0.218805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218805,0.000000,0.000000,0.250000,0,0);}
.m24_c00379{transform:matrix(0.219698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219698,0.000000,0.000000,0.250000,0,0);}
.md7_c00379{transform:matrix(0.221154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221154,0.000000,0.000000,0.250000,0,0);}
.mcd_c00379{transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);}
.m3c_c00379{transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);}
.m68_c00379{transform:matrix(0.231698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231698,0.000000,0.000000,0.250000,0,0);}
.m9c_c00379{transform:matrix(0.234473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234473,0.000000,0.000000,0.250000,0,0);}
.mec_c00379{transform:matrix(0.235109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235109,0.000000,0.000000,0.250000,0,0);}
.m32_c00379{transform:matrix(0.235644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235644,0.000000,0.000000,0.250000,0,0);}
.md3_c00379{transform:matrix(0.235997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235997,0.000000,0.000000,0.250000,0,0);}
.m71_c00379{transform:matrix(0.239009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239009,0.000000,0.000000,0.250000,0,0);}
.m80_c00379{transform:matrix(0.240268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240268,0.000000,0.000000,0.250000,0,0);}
.m7b_c00379{transform:matrix(0.243133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243133,0.000000,0.000000,0.250000,0,0);}
.m75_c00379{transform:matrix(0.245127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245127,0.000000,0.000000,0.250000,0,0);}
.mf3_c00379{transform:matrix(0.248202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248202,0.000000,0.000000,0.250000,0,0);}
.m97_c00379{transform:matrix(0.249687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249687,0.000000,0.000000,0.250000,0,0);}
.m0_c00379{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00379{transform:matrix(0.250297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250297,0.000000,0.000000,0.250000,0,0);}
.m1e_c00379{transform:matrix(0.250757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250757,0.000000,0.000000,0.250000,0,0);}
.m4_c00379{transform:matrix(0.251343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251343,0.000000,0.000000,0.250000,0,0);}
.m54_c00379{transform:matrix(0.252694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252694,0.000000,0.000000,0.250000,0,0);}
.mda_c00379{transform:matrix(0.252788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252788,0.000000,0.000000,0.250000,0,0);}
.md2_c00379{transform:matrix(0.262939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262939,0.000000,0.000000,0.250000,0,0);}
.m7_c00379{transform:matrix(0.264632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264632,0.000000,0.000000,0.250000,0,0);}
.m93_c00379{transform:matrix(0.266350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266350,0.000000,0.000000,0.250000,0,0);}
.mef_c00379{transform:matrix(0.267560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267560,0.000000,0.000000,0.250000,0,0);}
.m3f_c00379{transform:matrix(0.267772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267772,0.000000,0.000000,0.250000,0,0);}
.ma9_c00379{transform:matrix(0.268638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268638,0.000000,0.000000,0.250000,0,0);}
.mf2_c00379{transform:matrix(0.268733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268733,0.000000,0.000000,0.250000,0,0);}
.m58_c00379{transform:matrix(0.271751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271751,0.000000,0.000000,0.250000,0,0);}
.m20_c00379{transform:matrix(0.272005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272005,0.000000,0.000000,0.250000,0,0);}
.m4f_c00379{transform:matrix(0.273266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273266,0.000000,0.000000,0.250000,0,0);}
.me2_c00379{transform:matrix(0.273545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273545,0.000000,0.000000,0.250000,0,0);}
.m1_c00379{transform:matrix(0.274018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274018,0.000000,0.000000,0.250000,0,0);}
.m3a_c00379{transform:matrix(0.275079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275079,0.000000,0.000000,0.250000,0,0);}
.maf_c00379{transform:matrix(0.277092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277092,0.000000,0.000000,0.250000,0,0);}
.m84_c00379{transform:matrix(0.277804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277804,0.000000,0.000000,0.250000,0,0);}
.mb4_c00379{transform:matrix(0.279907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279907,0.000000,0.000000,0.250000,0,0);}
.m5_c00379{transform:matrix(0.280655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280655,0.000000,0.000000,0.250000,0,0);}
.me9_c00379{transform:matrix(0.281040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281040,0.000000,0.000000,0.250000,0,0);}
.m44_c00379{transform:matrix(0.281242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281242,0.000000,0.000000,0.250000,0,0);}
.m2b_c00379{transform:matrix(0.281718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281718,0.000000,0.000000,0.250000,0,0);}
.m14_c00379{transform:matrix(0.281895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281895,0.000000,0.000000,0.250000,0,0);}
.mb8_c00379{transform:matrix(0.282522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282522,0.000000,0.000000,0.250000,0,0);}
.m73_c00379{transform:matrix(0.282960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282960,0.000000,0.000000,0.250000,0,0);}
.m63_c00379{transform:matrix(0.283124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283124,0.000000,0.000000,0.250000,0,0);}
.m4d_c00379{transform:matrix(0.284148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284148,0.000000,0.000000,0.250000,0,0);}
.m42_c00379{transform:matrix(0.284530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284530,0.000000,0.000000,0.250000,0,0);}
.m5d_c00379{transform:matrix(0.285467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285467,0.000000,0.000000,0.250000,0,0);}
.m82_c00379{transform:matrix(0.285668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285668,0.000000,0.000000,0.250000,0,0);}
.m6_c00379{transform:matrix(0.285945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285945,0.000000,0.000000,0.250000,0,0);}
.m40_c00379{transform:matrix(0.286041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286041,0.000000,0.000000,0.250000,0,0);}
.m62_c00379{transform:matrix(0.286118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286118,0.000000,0.000000,0.250000,0,0);}
.mab_c00379{transform:matrix(0.286373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286373,0.000000,0.000000,0.250000,0,0);}
.m29_c00379{transform:matrix(0.287847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287847,0.000000,0.000000,0.250000,0,0);}
.m87_c00379{transform:matrix(0.288195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288195,0.000000,0.000000,0.250000,0,0);}
.mb6_c00379{transform:matrix(0.288260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288260,0.000000,0.000000,0.250000,0,0);}
.m1f_c00379{transform:matrix(0.288620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288620,0.000000,0.000000,0.250000,0,0);}
.m19_c00379{transform:matrix(0.288823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288823,0.000000,0.000000,0.250000,0,0);}
.mb1_c00379{transform:matrix(0.289089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289089,0.000000,0.000000,0.250000,0,0);}
.mea_c00379{transform:matrix(0.289332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289332,0.000000,0.000000,0.250000,0,0);}
.m70_c00379{transform:matrix(0.289516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289516,0.000000,0.000000,0.250000,0,0);}
.m92_c00379{transform:matrix(0.289559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289559,0.000000,0.000000,0.250000,0,0);}
.m37_c00379{transform:matrix(0.289649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289649,0.000000,0.000000,0.250000,0,0);}
.mb5_c00379{transform:matrix(0.290397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290397,0.000000,0.000000,0.250000,0,0);}
.me4_c00379{transform:matrix(0.290644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290644,0.000000,0.000000,0.250000,0,0);}
.m77_c00379{transform:matrix(0.290679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290679,0.000000,0.000000,0.250000,0,0);}
.m2c_c00379{transform:matrix(0.291066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291066,0.000000,0.000000,0.250000,0,0);}
.mc0_c00379{transform:matrix(0.291287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291287,0.000000,0.000000,0.250000,0,0);}
.m25_c00379{transform:matrix(0.291688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291688,0.000000,0.000000,0.250000,0,0);}
.mbe_c00379{transform:matrix(0.291977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291977,0.000000,0.000000,0.250000,0,0);}
.m47_c00379{transform:matrix(0.293399,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293399,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293399,0.000000,0.000000,0.250000,0,0);}
.m1b_c00379{transform:matrix(0.293890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293890,0.000000,0.000000,0.250000,0,0);}
.mb_c00379{transform:matrix(0.295692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295692,0.000000,0.000000,0.250000,0,0);}
.mfc_c00379{transform:matrix(0.295763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295763,0.000000,0.000000,0.250000,0,0);}
.m10_c00379{transform:matrix(0.296060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296060,0.000000,0.000000,0.250000,0,0);}
.m48_c00379{transform:matrix(0.296124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296124,0.000000,0.000000,0.250000,0,0);}
.m9_c00379{transform:matrix(0.296836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296836,0.000000,0.000000,0.250000,0,0);}
.m51_c00379{transform:matrix(0.297034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297034,0.000000,0.000000,0.250000,0,0);}
.mfd_c00379{transform:matrix(0.298945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298945,0.000000,0.000000,0.250000,0,0);}
.me_c00379{transform:matrix(0.299151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299151,0.000000,0.000000,0.250000,0,0);}
.m81_c00379{transform:matrix(0.299338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299338,0.000000,0.000000,0.250000,0,0);}
.m7a_c00379{transform:matrix(0.299627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299627,0.000000,0.000000,0.250000,0,0);}
.m56_c00379{transform:matrix(0.300099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300099,0.000000,0.000000,0.250000,0,0);}
.m26_c00379{transform:matrix(0.300708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300708,0.000000,0.000000,0.250000,0,0);}
.m33_c00379{transform:matrix(0.301482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301482,0.000000,0.000000,0.250000,0,0);}
.mc2_c00379{transform:matrix(0.301979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301979,0.000000,0.000000,0.250000,0,0);}
.mb9_c00379{transform:matrix(0.302186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302186,0.000000,0.000000,0.250000,0,0);}
.ma4_c00379{transform:matrix(0.302232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302232,0.000000,0.000000,0.250000,0,0);}
.m8d_c00379{transform:matrix(0.303126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303126,0.000000,0.000000,0.250000,0,0);}
.m50_c00379{transform:matrix(0.303218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303218,0.000000,0.000000,0.250000,0,0);}
.m6d_c00379{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);}
.m6e_c00379{transform:matrix(0.305072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305072,0.000000,0.000000,0.250000,0,0);}
.mcf_c00379{transform:matrix(0.305553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305553,0.000000,0.000000,0.250000,0,0);}
.m43_c00379{transform:matrix(0.305762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305762,0.000000,0.000000,0.250000,0,0);}
.me3_c00379{transform:matrix(0.306626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306626,0.000000,0.000000,0.250000,0,0);}
.mc_c00379{transform:matrix(0.307277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307277,0.000000,0.000000,0.250000,0,0);}
.ma8_c00379{transform:matrix(0.307306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307306,0.000000,0.000000,0.250000,0,0);}
.mc6_c00379{transform:matrix(0.307414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307414,0.000000,0.000000,0.250000,0,0);}
.m2a_c00379{transform:matrix(0.307471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307471,0.000000,0.000000,0.250000,0,0);}
.m9f_c00379{transform:matrix(0.307989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307989,0.000000,0.000000,0.250000,0,0);}
.m90_c00379{transform:matrix(0.308095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308095,0.000000,0.000000,0.250000,0,0);}
.m60_c00379{transform:matrix(0.308227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308227,0.000000,0.000000,0.250000,0,0);}
.m15_c00379{transform:matrix(0.308392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308392,0.000000,0.000000,0.250000,0,0);}
.me5_c00379{transform:matrix(0.308667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308667,0.000000,0.000000,0.250000,0,0);}
.mf6_c00379{transform:matrix(0.309059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309059,0.000000,0.000000,0.250000,0,0);}
.m8_c00379{transform:matrix(0.309178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309178,0.000000,0.000000,0.250000,0,0);}
.mf1_c00379{transform:matrix(0.309958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309958,0.000000,0.000000,0.250000,0,0);}
.m1c_c00379{transform:matrix(0.310727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310727,0.000000,0.000000,0.250000,0,0);}
.m99_c00379{transform:matrix(0.311005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311005,0.000000,0.000000,0.250000,0,0);}
.m95_c00379{transform:matrix(0.311325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311325,0.000000,0.000000,0.250000,0,0);}
.m13_c00379{transform:matrix(0.311651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311651,0.000000,0.000000,0.250000,0,0);}
.m91_c00379{transform:matrix(0.312788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312788,0.000000,0.000000,0.250000,0,0);}
.m83_c00379{transform:matrix(0.312864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312864,0.000000,0.000000,0.250000,0,0);}
.m9e_c00379{transform:matrix(0.313654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313654,0.000000,0.000000,0.250000,0,0);}
.mb7_c00379{transform:matrix(0.314621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314621,0.000000,0.000000,0.250000,0,0);}
.m17_c00379{transform:matrix(0.315147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315147,0.000000,0.000000,0.250000,0,0);}
.mb3_c00379{transform:matrix(0.315262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315262,0.000000,0.000000,0.250000,0,0);}
.m31_c00379{transform:matrix(0.315916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315916,0.000000,0.000000,0.250000,0,0);}
.m69_c00379{transform:matrix(0.316110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316110,0.000000,0.000000,0.250000,0,0);}
.med_c00379{transform:matrix(0.316156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316156,0.000000,0.000000,0.250000,0,0);}
.mf8_c00379{transform:matrix(0.316415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316415,0.000000,0.000000,0.250000,0,0);}
.ma7_c00379{transform:matrix(0.316584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316584,0.000000,0.000000,0.250000,0,0);}
.m12_c00379{transform:matrix(0.317233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317233,0.000000,0.000000,0.250000,0,0);}
.m4a_c00379{transform:matrix(0.317750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317750,0.000000,0.000000,0.250000,0,0);}
.m38_c00379{transform:matrix(0.319005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319005,0.000000,0.000000,0.250000,0,0);}
.mf9_c00379{transform:matrix(0.319664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319664,0.000000,0.000000,0.250000,0,0);}
.mc1_c00379{transform:matrix(0.320153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320153,0.000000,0.000000,0.250000,0,0);}
.m76_c00379{transform:matrix(0.320202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320202,0.000000,0.000000,0.250000,0,0);}
.ma5_c00379{transform:matrix(0.320546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320546,0.000000,0.000000,0.250000,0,0);}
.md_c00379{transform:matrix(0.320611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320611,0.000000,0.000000,0.250000,0,0);}
.m11_c00379{transform:matrix(0.321201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321201,0.000000,0.000000,0.250000,0,0);}
.m39_c00379{transform:matrix(0.321647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321647,0.000000,0.000000,0.250000,0,0);}
.m5b_c00379{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);}
.m3b_c00379{transform:matrix(0.322340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322340,0.000000,0.000000,0.250000,0,0);}
.ma_c00379{transform:matrix(0.323291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323291,0.000000,0.000000,0.250000,0,0);}
.m5e_c00379{transform:matrix(0.323501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323501,0.000000,0.000000,0.250000,0,0);}
.mfb_c00379{transform:matrix(0.324958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324958,0.000000,0.000000,0.250000,0,0);}
.m21_c00379{transform:matrix(0.327263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327263,0.000000,0.000000,0.250000,0,0);}
.m85_c00379{transform:matrix(0.327460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327460,0.000000,0.000000,0.250000,0,0);}
.m57_c00379{transform:matrix(0.327973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327973,0.000000,0.000000,0.250000,0,0);}
.mc9_c00379{transform:matrix(0.328445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328445,0.000000,0.000000,0.250000,0,0);}
.m6a_c00379{transform:matrix(0.328830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328830,0.000000,0.000000,0.250000,0,0);}
.ma1_c00379{transform:matrix(0.329592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329592,0.000000,0.000000,0.250000,0,0);}
.m98_c00379{transform:matrix(0.331025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331025,0.000000,0.000000,0.250000,0,0);}
.mfa_c00379{transform:matrix(0.331581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331581,0.000000,0.000000,0.250000,0,0);}
.m72_c00379{transform:matrix(0.331587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331587,0.000000,0.000000,0.250000,0,0);}
.m52_c00379{transform:matrix(0.333852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333852,0.000000,0.000000,0.250000,0,0);}
.m96_c00379{transform:matrix(0.334462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334462,0.000000,0.000000,0.250000,0,0);}
.m6b_c00379{transform:matrix(0.335212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335212,0.000000,0.000000,0.250000,0,0);}
.mdf_c00379{transform:matrix(0.335345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335345,0.000000,0.000000,0.250000,0,0);}
.m74_c00379{transform:matrix(0.337082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337082,0.000000,0.000000,0.250000,0,0);}
.mf7_c00379{transform:matrix(0.337729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337729,0.000000,0.000000,0.250000,0,0);}
.m28_c00379{transform:matrix(0.338549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338549,0.000000,0.000000,0.250000,0,0);}
.me7_c00379{transform:matrix(0.338875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338875,0.000000,0.000000,0.250000,0,0);}
.ma6_c00379{transform:matrix(0.339646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339646,0.000000,0.000000,0.250000,0,0);}
.m2e_c00379{transform:matrix(0.340435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340435,0.000000,0.000000,0.250000,0,0);}
.m6c_c00379{transform:matrix(0.340582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340582,0.000000,0.000000,0.250000,0,0);}
.m55_c00379{transform:matrix(0.341035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341035,0.000000,0.000000,0.250000,0,0);}
.m16_c00379{transform:matrix(0.341818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341818,0.000000,0.000000,0.250000,0,0);}
.mf5_c00379{transform:matrix(0.341943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341943,0.000000,0.000000,0.250000,0,0);}
.m45_c00379{transform:matrix(0.345097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345097,0.000000,0.000000,0.250000,0,0);}
.m6f_c00379{transform:matrix(0.345302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345302,0.000000,0.000000,0.250000,0,0);}
.m46_c00379{transform:matrix(0.345774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345774,0.000000,0.000000,0.250000,0,0);}
.mca_c00379{transform:matrix(0.347575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347575,0.000000,0.000000,0.250000,0,0);}
.ma3_c00379{transform:matrix(0.347769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347769,0.000000,0.000000,0.250000,0,0);}
.m66_c00379{transform:matrix(0.349199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349199,0.000000,0.000000,0.250000,0,0);}
.mde_c00379{transform:matrix(0.349766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349766,0.000000,0.000000,0.250000,0,0);}
.mc7_c00379{transform:matrix(0.349919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349919,0.000000,0.000000,0.250000,0,0);}
.m5f_c00379{transform:matrix(0.350362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350362,0.000000,0.000000,0.250000,0,0);}
.ma0_c00379{transform:matrix(0.350771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350771,0.000000,0.000000,0.250000,0,0);}
.m2_c00379{transform:matrix(0.350978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350978,0.000000,0.000000,0.250000,0,0);}
.m65_c00379{transform:matrix(0.351144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351144,0.000000,0.000000,0.250000,0,0);}
.m1d_c00379{transform:matrix(0.352751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352751,0.000000,0.000000,0.250000,0,0);}
.mf0_c00379{transform:matrix(0.353600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353600,0.000000,0.000000,0.250000,0,0);}
.maa_c00379{transform:matrix(0.354951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354951,0.000000,0.000000,0.250000,0,0);}
.m1a_c00379{transform:matrix(0.355179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355179,0.000000,0.000000,0.250000,0,0);}
.meb_c00379{transform:matrix(0.355269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355269,0.000000,0.000000,0.250000,0,0);}
.m9b_c00379{transform:matrix(0.357904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357904,0.000000,0.000000,0.250000,0,0);}
.m3_c00379{transform:matrix(0.358832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358832,0.000000,0.000000,0.250000,0,0);}
.ma2_c00379{transform:matrix(0.359372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359372,0.000000,0.000000,0.250000,0,0);}
.me1_c00379{transform:matrix(0.360408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360408,0.000000,0.000000,0.250000,0,0);}
.m18_c00379{transform:matrix(0.361525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361525,0.000000,0.000000,0.250000,0,0);}
.mf4_c00379{transform:matrix(0.361671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361671,0.000000,0.000000,0.250000,0,0);}
.mae_c00379{transform:matrix(0.362498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362498,0.000000,0.000000,0.250000,0,0);}
.m78_c00379{transform:matrix(0.362888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362888,0.000000,0.000000,0.250000,0,0);}
.m49_c00379{transform:matrix(0.363436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363436,0.000000,0.000000,0.250000,0,0);}
.m9a_c00379{transform:matrix(0.363879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363879,0.000000,0.000000,0.250000,0,0);}
.m5a_c00379{transform:matrix(0.367320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367320,0.000000,0.000000,0.250000,0,0);}
.mf_c00379{transform:matrix(0.368138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368138,0.000000,0.000000,0.250000,0,0);}
.m79_c00379{transform:matrix(0.368925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368925,0.000000,0.000000,0.250000,0,0);}
.m64_c00379{transform:matrix(0.369101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369101,0.000000,0.000000,0.250000,0,0);}
.mba_c00379{transform:matrix(0.370264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370264,0.000000,0.000000,0.250000,0,0);}
.mbf_c00379{transform:matrix(0.371603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371603,0.000000,0.000000,0.250000,0,0);}
.mbd_c00379{transform:matrix(0.372601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372601,0.000000,0.000000,0.250000,0,0);}
.m61_c00379{transform:matrix(0.374141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374141,0.000000,0.000000,0.250000,0,0);}
.m4c_c00379{transform:matrix(0.380763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380763,0.000000,0.000000,0.250000,0,0);}
.m27_c00379{transform:matrix(0.385077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385077,0.000000,0.000000,0.250000,0,0);}
.m86_c00379{transform:matrix(0.385262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385262,0.000000,0.000000,0.250000,0,0);}
.m67_c00379{transform:matrix(0.390012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390012,0.000000,0.000000,0.250000,0,0);}
.me8_c00379{transform:matrix(0.391873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391873,0.000000,0.000000,0.250000,0,0);}
.m5c_c00379{transform:matrix(0.392037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392037,0.000000,0.000000,0.250000,0,0);}
.m41_c00379{transform:matrix(0.393646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393646,0.000000,0.000000,0.250000,0,0);}
.me6_c00379{transform:matrix(0.398297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398297,0.000000,0.000000,0.250000,0,0);}
.m94_c00379{transform:matrix(0.398571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398571,0.000000,0.000000,0.250000,0,0);}
.m34_c00379{transform:matrix(0.406539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406539,0.000000,0.000000,0.250000,0,0);}
.m53_c00379{transform:matrix(0.411147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411147,0.000000,0.000000,0.250000,0,0);}
.mdc_c00379{transform:matrix(0.418623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418623,0.000000,0.000000,0.250000,0,0);}
.mbc_c00379{transform:matrix(0.438208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438208,0.000000,0.000000,0.250000,0,0);}
.mbb_c00379{transform:matrix(0.444621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444621,0.000000,0.000000,0.250000,0,0);}
.m36_c00379{transform:matrix(0.450814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450814,0.000000,0.000000,0.250000,0,0);}
.mac_c00379{transform:matrix(0.451384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451384,0.000000,0.000000,0.250000,0,0);}
.m59_c00379{transform:matrix(0.453010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453010,0.000000,0.000000,0.250000,0,0);}
.md0_c00379{transform:matrix(0.455145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455145,0.000000,0.000000,0.250000,0,0);}
.m8f_c00379{transform:matrix(0.460692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460692,0.000000,0.000000,0.250000,0,0);}
.md1_c00379{transform:matrix(0.937467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.937467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.937467,0.000000,0.000000,0.250000,0,0);}
.v4_c00379{vertical-align:-8.533800px;}
.v1_c00379{vertical-align:-1.445400px;}
.v0_c00379{vertical-align:0.000000px;}
.v2_c00379{vertical-align:1.445400px;}
.v5_c00379{vertical-align:11.376288px;}
.v3_c00379{vertical-align:29.937600px;}
.ls11_c00379{letter-spacing:-2.529450px;}
.ls16_c00379{letter-spacing:-2.363130px;}
.ls13_c00379{letter-spacing:-1.980198px;}
.ls24_c00379{letter-spacing:-1.746367px;}
.ls18_c00379{letter-spacing:-1.691118px;}
.ls1e_c00379{letter-spacing:-1.420650px;}
.ls27_c00379{letter-spacing:-1.074150px;}
.ls2a_c00379{letter-spacing:-1.055142px;}
.ls2b_c00379{letter-spacing:-0.888921px;}
.lsb_c00379{letter-spacing:0.000000px;}
.ls14_c00379{letter-spacing:0.043362px;}
.ls6_c00379{letter-spacing:0.195129px;}
.ls29_c00379{letter-spacing:0.199940px;}
.lsa_c00379{letter-spacing:0.316107px;}
.ls22_c00379{letter-spacing:0.413905px;}
.ls4_c00379{letter-spacing:0.693792px;}
.ls21_c00379{letter-spacing:0.772210px;}
.lsc_c00379{letter-spacing:0.931276px;}
.ls1c_c00379{letter-spacing:1.047915px;}
.ls26_c00379{letter-spacing:1.095633px;}
.ls28_c00379{letter-spacing:1.306800px;}
.ls1b_c00379{letter-spacing:1.351449px;}
.ls1d_c00379{letter-spacing:1.702810px;}
.ls2c_c00379{letter-spacing:1.743157px;}
.ls15_c00379{letter-spacing:1.821204px;}
.ls1f_c00379{letter-spacing:2.187900px;}
.ls1a_c00379{letter-spacing:2.534400px;}
.ls5_c00379{letter-spacing:2.601720px;}
.ls1_c00379{letter-spacing:2.832984px;}
.ls3_c00379{letter-spacing:3.353328px;}
.lse_c00379{letter-spacing:3.544200px;}
.lsd_c00379{letter-spacing:3.613500px;}
.ls2d_c00379{letter-spacing:3.979810px;}
.lsf_c00379{letter-spacing:4.059000px;}
.ls23_c00379{letter-spacing:5.702598px;}
.ls8_c00379{letter-spacing:7.877430px;}
.ls9_c00379{letter-spacing:8.980356px;}
.ls2_c00379{letter-spacing:11.563200px;}
.ls7_c00379{letter-spacing:23.197680px;}
.ls0_c00379{letter-spacing:23.400366px;}
.ls20_c00379{letter-spacing:25.660998px;}
.ls25_c00379{letter-spacing:37.065798px;}
.ls10_c00379{letter-spacing:47.044800px;}
.ls12_c00379{letter-spacing:48.470598px;}
.ls19_c00379{letter-spacing:49.896198px;}
.ls17_c00379{letter-spacing:55.598598px;}
.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;}
}
.ws7_c00379{word-spacing:-18.810000px;}
.ws2_c00379{word-spacing:-18.761292px;}
.ws0_c00379{word-spacing:-18.067500px;}
.ws6_c00379{word-spacing:-5.174532px;}
.ws8_c00379{word-spacing:-3.758040px;}
.ws4_c00379{word-spacing:-3.756060px;}
.ws5_c00379{word-spacing:-2.384910px;}
.wsc_c00379{word-spacing:0.000000px;}
.wsa_c00379{word-spacing:3.107610px;}
.ws1_c00379{word-spacing:5.492520px;}
.ws9_c00379{word-spacing:7.010190px;}
.ws3_c00379{word-spacing:7.950690px;}
.wsb_c00379{word-spacing:8.744670px;}
._1e_c00379{margin-left:-14.553000px;}
._19_c00379{margin-left:-13.102650px;}
._e_c00379{margin-left:-7.268580px;}
._18_c00379{margin-left:-1.464210px;}
._1b_c00379{width:2.889810px;}
._12_c00379{width:5.637060px;}
._3_c00379{width:7.082460px;}
._c_c00379{width:8.094240px;}
._6_c00379{width:9.177300px;}
._7_c00379{width:10.695960px;}
._4_c00379{width:11.852280px;}
._a_c00379{width:13.225410px;}
._1_c00379{width:14.670810px;}
._10_c00379{width:16.514784px;}
._14_c00379{width:20.346480px;}
._1f_c00379{width:21.535470px;}
._d_c00379{width:22.548240px;}
._0_c00379{width:24.933150px;}
._15_c00379{width:27.318060px;}
._17_c00379{width:28.322613px;}
._16_c00379{width:30.394980px;}
._20_c00379{width:31.697820px;}
._11_c00379{width:33.388740px;}
._9_c00379{width:36.699300px;}
._8_c00379{width:38.966400px;}
._b_c00379{width:41.086980px;}
._2_c00379{width:43.429320px;}
._13_c00379{width:44.879670px;}
._f_c00379{width:47.124000px;}
._5_c00379{width:48.692160px;}
._1a_c00379{width:57.119708px;}
._1d_c00379{width:63.933078px;}
._1c_c00379{width:141.652176px;}
.fc0_c00379{color:transparent;}
.fs1a_c00379{font-size:5.702598px;}
.fs19_c00379{font-size:15.444198px;}
.fs20_c00379{font-size:19.602000px;}
.fsa_c00379{font-size:21.186000px;}
.fs0_c00379{font-size:22.176000px;}
.fs18_c00379{font-size:25.660998px;}
.fs1f_c00379{font-size:26.136000px;}
.fs3_c00379{font-size:27.720000px;}
.fs1e_c00379{font-size:30.690000px;}
.fsb_c00379{font-size:32.868000px;}
.fs2_c00379{font-size:33.264000px;}
.fs13_c00379{font-size:34.056198px;}
.fs17_c00379{font-size:34.650000px;}
.fs1b_c00379{font-size:37.065798px;}
.fs14_c00379{font-size:40.590000px;}
.fs16_c00379{font-size:43.758000px;}
.fs8_c00379{font-size:45.144000px;}
.fs9_c00379{font-size:47.044800px;}
.fsc_c00379{font-size:48.470598px;}
.fs15_c00379{font-size:48.906198px;}
.fs11_c00379{font-size:49.896198px;}
.fs12_c00379{font-size:50.688000px;}
.fsd_c00379{font-size:53.856198px;}
.fs10_c00379{font-size:55.598598px;}
.fs1c_c00379{font-size:56.628000px;}
.fsf_c00379{font-size:67.518000px;}
.fs6_c00379{font-size:70.884000px;}
.fs21_c00379{font-size:72.072198px;}
.fs4_c00379{font-size:72.270000px;}
.fs1d_c00379{font-size:75.240000px;}
.fs5_c00379{font-size:76.032198px;}
.fs1_c00379{font-size:79.596198px;}
.fs7_c00379{font-size:81.180000px;}
.fse_c00379{font-size:91.872198px;}
.y0_c00379{bottom:0.000000px;}
.y34_c00379{bottom:60.849009px;}
.y1_c00379{bottom:76.500000px;}
.y33_c00379{bottom:96.491385px;}
.y32_c00379{bottom:110.752335px;}
.y31_c00379{bottom:178.468335px;}
.y30_c00379{bottom:213.039135px;}
.y2f_c00379{bottom:226.933785px;}
.y2e_c00379{bottom:245.110185px;}
.y2d_c00379{bottom:277.547535px;}
.y2c_c00379{bottom:309.623535px;}
.y28_c00379{bottom:309.979935px;}
.y29_c00379{bottom:310.687785px;}
.y2a_c00379{bottom:312.113385px;}
.y2b_c00379{bottom:312.826185px;}
.y26_c00379{bottom:341.694585px;}
.y25_c00379{bottom:342.055935px;}
.y27_c00379{bottom:348.466185px;}
.y23_c00379{bottom:374.474723px;}
.y24_c00379{bottom:374.483385px;}
.y22_c00379{bottom:407.989935px;}
.y20_c00379{bottom:441.129443px;}
.y21_c00379{bottom:441.130185px;}
.y3_c00379{bottom:476.056791px;}
.y1f_c00379{bottom:505.287135px;}
.y1e_c00379{bottom:538.070985px;}
.y1d_c00379{bottom:570.503385px;}
.y1c_c00379{bottom:596.525535px;}
.y1a_c00379{bottom:602.584335px;}
.y1b_c00379{bottom:602.940735px;}
.y19_c00379{bottom:634.655385px;}
.y18_c00379{bottom:667.444185px;}
.y17_c00379{bottom:699.876585px;}
.y16_c00379{bottom:731.957535px;}
.y15_c00379{bottom:764.033535px;}
.y13_c00379{bottom:796.460985px;}
.y14_c00379{bottom:797.886585px;}
.y12_c00379{bottom:827.824185px;}
.y10_c00379{bottom:828.541935px;}
.yf_c00379{bottom:828.893385px;}
.y11_c00379{bottom:836.734185px;}
.y2_c00379{bottom:847.787535px;}
.ye_c00379{bottom:854.197785px;}
.yd_c00379{bottom:860.256585px;}
.yc_c00379{bottom:860.974335px;}
.yb_c00379{bottom:860.975325px;}
.ya_c00379{bottom:893.045385px;}
.y9_c00379{bottom:917.993385px;}
.y8_c00379{bottom:925.834185px;}
.y7_c00379{bottom:926.195535px;}
.y6_c00379{bottom:999.965385px;}
.y5_c00379{bottom:1020.636585px;}
.y4_c00379{bottom:1076.947785px;}
.h1d_c00379{height:3.797930px;}
.h1b_c00379{height:15.406492px;}
.h1c_c00379{height:16.107816px;}
.h1a_c00379{height:17.090225px;}
.h25_c00379{height:19.755141px;}
.h2_c00379{height:23.128875px;}
.h20_c00379{height:24.685821px;}
.h24_c00379{height:27.259031px;}
.h5_c00379{height:28.911094px;}
.hb_c00379{height:31.331837px;}
.h23_c00379{height:32.008711px;}
.hd_c00379{height:32.281418px;}
.h11_c00379{height:33.230868px;}
.hc_c00379{height:34.280297px;}
.h4_c00379{height:34.693313px;}
.h14_c00379{height:35.519550px;}
.h19_c00379{height:36.138867px;}
.h10_c00379{height:37.028666px;}
.h16_c00379{height:42.334102px;}
.h18_c00379{height:42.946084px;}
.ha_c00379{height:44.306367px;}
.h1f_c00379{height:48.970390px;}
.h13_c00379{height:49.747500px;}
.h1e_c00379{height:51.812878px;}
.h21_c00379{height:59.061234px;}
.h17_c00379{height:64.630912px;}
.hf_c00379{height:66.265225px;}
.h8_c00379{height:69.568770px;}
.h6_c00379{height:70.929053px;}
.h12_c00379{height:70.932023px;}
.h15_c00379{height:72.374453px;}
.h22_c00379{height:73.843945px;}
.h3_c00379{height:78.119315px;}
.h7_c00379{height:79.299207px;}
.h9_c00379{height:79.673730px;}
.he_c00379{height:95.819832px;}
.h1_c00379{height:1110.000000px;}
.h0_c00379{height:1263.000000px;}
.w1_c00379{width:775.500000px;}
.w0_c00379{width:892.500000px;}
.x0_c00379{left:0.000000px;}
.x1_c00379{left:58.500000px;}
.x2_c00379{left:61.559835px;}
.x4d_c00379{left:94.041735px;}
.x16_c00379{left:95.625735px;}
.x82_c00379{left:97.442385px;}
.x85_c00379{left:98.511585px;}
.x45_c00379{left:106.510785px;}
.x98_c00379{left:108.738285px;}
.x8c_c00379{left:113.693235px;}
.x65_c00379{left:116.876085px;}
.x72_c00379{left:118.073985px;}
.x6c_c00379{left:127.716585px;}
.x9a_c00379{left:128.780835px;}
.x8d_c00379{left:130.077735px;}
.x25_c00379{left:131.587485px;}
.x4e_c00379{left:138.274935px;}
.x38_c00379{left:140.532135px;}
.x17_c00379{left:142.259685px;}
.x66_c00379{left:149.288685px;}
.x6_c00379{left:151.337985px;}
.x4f_c00379{left:159.955935px;}
.x18_c00379{left:161.104335px;}
.x26_c00379{left:162.143835px;}
.x67_c00379{left:170.979585px;}
.x30_c00379{left:172.964535px;}
.x50_c00379{left:181.914135px;}
.x19_c00379{left:183.849585px;}
.x86_c00379{left:193.977285px;}
.x7_c00379{left:195.467235px;}
.x8e_c00379{left:198.145185px;}
.x68_c00379{left:204.654435px;}
.x8_c00379{left:206.431485px;}
.x51_c00379{left:214.975185px;}
.x8f_c00379{left:216.415635px;}
.x1a_c00379{left:217.564035px;}
.x79_c00379{left:227.369985px;}
.x9_c00379{left:228.389685px;}
.x46_c00379{left:229.666785px;}
.x39_c00379{left:238.789635px;}
.x9b_c00379{left:239.858835px;}
.x73_c00379{left:244.477185px;}
.x7a_c00379{left:249.288585px;}
.x31_c00379{left:251.253735px;}
.x7b_c00379{left:259.084635px;}
.x52_c00379{left:260.114235px;}
.x1b_c00379{left:261.317085px;}
.x27_c00379{left:262.722885px;}
.x83_c00379{left:271.741785px;}
.x3a_c00379{left:272.850585px;}
.x47_c00379{left:282.611985px;}
.x3b_c00379{left:284.215785px;}
.x7c_c00379{left:294.175185px;}
.xa_c00379{left:295.214685px;}
.x6d_c00379{left:304.268235px;}
.x28_c00379{left:306.975885px;}
.x7d_c00379{left:314.950335px;}
.x3c_c00379{left:316.430385px;}
.x1c_c00379{left:319.746885px;}
.x74_c00379{left:325.226535px;}
.x32_c00379{left:326.602635px;}
.xb_c00379{left:328.023285px;}
.x5c_c00379{left:337.774785px;}
.x48_c00379{left:339.279585px;}
.x7e_c00379{left:349.080585px;}
.x7f_c00379{left:358.876635px;}
.x3d_c00379{left:361.198185px;}
.x9c_c00379{left:363.296985px;}
.x69_c00379{left:370.811085px;}
.x29_c00379{left:373.617735px;}
.x75_c00379{left:374.800785px;}
.x5d_c00379{left:381.715935px;}
.x89_c00379{left:382.923735px;}
.x53_c00379{left:392.917785px;}
.x1d_c00379{left:395.001735px;}
.x6e_c00379{left:396.412485px;}
.x33_c00379{left:400.649685px;}
.x76_c00379{left:404.169135px;}
.x2a_c00379{left:406.124385px;}
.x4_c00379{left:407.936085px;}
.x3e_c00379{left:410.767485px;}
.x5e_c00379{left:415.286835px;}
.x5_c00379{left:420.786285px;}
.x6a_c00379{left:426.389685px;}
.xc_c00379{left:427.825185px;}
.x54_c00379{left:436.952985px;}
.x2b_c00379{left:438.383535px;}
.x49_c00379{left:449.154735px;}
.x34_c00379{left:450.550635px;}
.x9d_c00379{left:451.743585px;}
.x5f_c00379{left:459.183435px;}
.x1e_c00379{left:460.975335px;}
.xd_c00379{left:462.039585px;}
.x6f_c00379{left:470.038785px;}
.x87_c00379{left:471.202035px;}
.x2c_c00379{left:472.706835px;}
.x55_c00379{left:481.552485px;}
.xe_c00379{left:483.770085px;}
.x84_c00379{left:493.085985px;}
.x2d_c00379{left:494.120535px;}
.x60_c00379{left:495.452085px;}
.x56_c00379{left:503.743335px;}
.x3f_c00379{left:505.307535px;}
.x92_c00379{left:508.505235px;}
.x1f_c00379{left:515.336235px;}
.xf_c00379{left:517.266735px;}
.x2e_c00379{left:518.306235px;}
.x70_c00379{left:522.444435px;}
.x8a_c00379{left:526.191585px;}
.x40_c00379{left:527.369685px;}
.x35_c00379{left:528.656685px;}
.x57_c00379{left:537.205335px;}
.x41_c00379{left:538.413135px;}
.x90_c00379{left:544.209585px;}
.x61_c00379{left:547.466685px;}
.x20_c00379{left:549.515985px;}
.x42_c00379{left:559.485285px;}
.x10_c00379{left:560.801985px;}
.x4a_c00379{left:570.548535px;}
.x11_c00379{left:572.117685px;}
.x91_c00379{left:573.439335px;}
.x93_c00379{left:576.176685px;}
.x62_c00379{left:580.725735px;}
.x37_c00379{left:582.542385px;}
.x36_c00379{left:585.467835px;}
.x58_c00379{left:591.630585px;}
.x21_c00379{left:593.061135px;}
.x59_c00379{left:602.975985px;}
.x77_c00379{left:604.134285px;}
.x4b_c00379{left:605.312385px;}
.x71_c00379{left:613.856085px;}
.x43_c00379{left:615.890535px;}
.x94_c00379{left:617.132985px;}
.x12_c00379{left:626.508285px;}
.x88_c00379{left:637.180485px;}
.x44_c00379{left:638.403135px;}
.x97_c00379{left:639.982185px;}
.x4c_c00379{left:647.530935px;}
.x22_c00379{left:649.510935px;}
.x6b_c00379{left:659.440635px;}
.x2f_c00379{left:664.133235px;}
.xa0_c00379{left:667.085910px;}
.x5a_c00379{left:669.409935px;}
.x99_c00379{left:671.602785px;}
.x3_c00379{left:672.988785px;}
.x23_c00379{left:679.973235px;}
.x95_c00379{left:681.359235px;}
.x13_c00379{left:682.537335px;}
.x63_c00379{left:691.932435px;}
.x15_c00379{left:693.006585px;}
.x9e_c00379{left:696.639885px;}
.x5b_c00379{left:701.688885px;}
.x8b_c00379{left:703.297635px;}
.x14_c00379{left:705.104385px;}
.x80_c00379{left:710.980035px;}
.x64_c00379{left:713.445135px;}
.x96_c00379{left:715.073685px;}
.x81_c00379{left:725.003385px;}
.x24_c00379{left:737.516985px;}
.x78_c00379{left:747.139785px;}
.x9f_c00379{left:751.193835px;}
@media print{
.v4_c00379{vertical-align:-7.585600pt;}
.v1_c00379{vertical-align:-1.284800pt;}
.v0_c00379{vertical-align:0.000000pt;}
.v2_c00379{vertical-align:1.284800pt;}
.v5_c00379{vertical-align:10.112256pt;}
.v3_c00379{vertical-align:26.611200pt;}
.ls11_c00379{letter-spacing:-2.248400pt;}
.ls16_c00379{letter-spacing:-2.100560pt;}
.ls13_c00379{letter-spacing:-1.760176pt;}
.ls24_c00379{letter-spacing:-1.552326pt;}
.ls18_c00379{letter-spacing:-1.503216pt;}
.ls1e_c00379{letter-spacing:-1.262800pt;}
.ls27_c00379{letter-spacing:-0.954800pt;}
.ls2a_c00379{letter-spacing:-0.937904pt;}
.ls2b_c00379{letter-spacing:-0.790152pt;}
.lsb_c00379{letter-spacing:0.000000pt;}
.ls14_c00379{letter-spacing:0.038544pt;}
.ls6_c00379{letter-spacing:0.173448pt;}
.ls29_c00379{letter-spacing:0.177725pt;}
.lsa_c00379{letter-spacing:0.280984pt;}
.ls22_c00379{letter-spacing:0.367915pt;}
.ls4_c00379{letter-spacing:0.616704pt;}
.ls21_c00379{letter-spacing:0.686409pt;}
.lsc_c00379{letter-spacing:0.827800pt;}
.ls1c_c00379{letter-spacing:0.931480pt;}
.ls26_c00379{letter-spacing:0.973896pt;}
.ls28_c00379{letter-spacing:1.161600pt;}
.ls1b_c00379{letter-spacing:1.201288pt;}
.ls1d_c00379{letter-spacing:1.513609pt;}
.ls2c_c00379{letter-spacing:1.549473pt;}
.ls15_c00379{letter-spacing:1.618848pt;}
.ls1f_c00379{letter-spacing:1.944800pt;}
.ls1a_c00379{letter-spacing:2.252800pt;}
.ls5_c00379{letter-spacing:2.312640pt;}
.ls1_c00379{letter-spacing:2.518208pt;}
.ls3_c00379{letter-spacing:2.980736pt;}
.lse_c00379{letter-spacing:3.150400pt;}
.lsd_c00379{letter-spacing:3.212000pt;}
.ls2d_c00379{letter-spacing:3.537609pt;}
.lsf_c00379{letter-spacing:3.608000pt;}
.ls23_c00379{letter-spacing:5.068976pt;}
.ls8_c00379{letter-spacing:7.002160pt;}
.ls9_c00379{letter-spacing:7.982539pt;}
.ls2_c00379{letter-spacing:10.278400pt;}
.ls7_c00379{letter-spacing:20.620160pt;}
.ls0_c00379{letter-spacing:20.800325pt;}
.ls20_c00379{letter-spacing:22.809776pt;}
.ls25_c00379{letter-spacing:32.947376pt;}
.ls10_c00379{letter-spacing:41.817600pt;}
.ls12_c00379{letter-spacing:43.084976pt;}
.ls19_c00379{letter-spacing:44.352176pt;}
.ls17_c00379{letter-spacing:49.420976pt;}
.ws7_c00379{word-spacing:-16.720000pt;}
.ws2_c00379{word-spacing:-16.676704pt;}
.ws0_c00379{word-spacing:-16.060000pt;}
.ws6_c00379{word-spacing:-4.599584pt;}
.ws8_c00379{word-spacing:-3.340480pt;}
.ws4_c00379{word-spacing:-3.338720pt;}
.ws5_c00379{word-spacing:-2.119920pt;}
.wsc_c00379{word-spacing:0.000000pt;}
.wsa_c00379{word-spacing:2.762320pt;}
.ws1_c00379{word-spacing:4.882240pt;}
.ws9_c00379{word-spacing:6.231280pt;}
.ws3_c00379{word-spacing:7.067280pt;}
.wsb_c00379{word-spacing:7.773040pt;}
._1e_c00379{margin-left:-12.936000pt;}
._19_c00379{margin-left:-11.646800pt;}
._e_c00379{margin-left:-6.460960pt;}
._18_c00379{margin-left:-1.301520pt;}
._1b_c00379{width:2.568720pt;}
._12_c00379{width:5.010720pt;}
._3_c00379{width:6.295520pt;}
._c_c00379{width:7.194880pt;}
._6_c00379{width:8.157600pt;}
._7_c00379{width:9.507520pt;}
._4_c00379{width:10.535360pt;}
._a_c00379{width:11.755920pt;}
._1_c00379{width:13.040720pt;}
._10_c00379{width:14.679808pt;}
._14_c00379{width:18.085760pt;}
._1f_c00379{width:19.142640pt;}
._d_c00379{width:20.042880pt;}
._0_c00379{width:22.162800pt;}
._15_c00379{width:24.282720pt;}
._17_c00379{width:25.175656pt;}
._16_c00379{width:27.017760pt;}
._20_c00379{width:28.175840pt;}
._11_c00379{width:29.678880pt;}
._9_c00379{width:32.621600pt;}
._8_c00379{width:34.636800pt;}
._b_c00379{width:36.521760pt;}
._2_c00379{width:38.603840pt;}
._13_c00379{width:39.893040pt;}
._f_c00379{width:41.888000pt;}
._5_c00379{width:43.281920pt;}
._1a_c00379{width:50.773073pt;}
._1d_c00379{width:56.829402pt;}
._1c_c00379{width:125.913045pt;}
.fs1a_c00379{font-size:5.068976pt;}
.fs19_c00379{font-size:13.728176pt;}
.fs20_c00379{font-size:17.424000pt;}
.fsa_c00379{font-size:18.832000pt;}
.fs0_c00379{font-size:19.712000pt;}
.fs18_c00379{font-size:22.809776pt;}
.fs1f_c00379{font-size:23.232000pt;}
.fs3_c00379{font-size:24.640000pt;}
.fs1e_c00379{font-size:27.280000pt;}
.fsb_c00379{font-size:29.216000pt;}
.fs2_c00379{font-size:29.568000pt;}
.fs13_c00379{font-size:30.272176pt;}
.fs17_c00379{font-size:30.800000pt;}
.fs1b_c00379{font-size:32.947376pt;}
.fs14_c00379{font-size:36.080000pt;}
.fs16_c00379{font-size:38.896000pt;}
.fs8_c00379{font-size:40.128000pt;}
.fs9_c00379{font-size:41.817600pt;}
.fsc_c00379{font-size:43.084976pt;}
.fs15_c00379{font-size:43.472176pt;}
.fs11_c00379{font-size:44.352176pt;}
.fs12_c00379{font-size:45.056000pt;}
.fsd_c00379{font-size:47.872176pt;}
.fs10_c00379{font-size:49.420976pt;}
.fs1c_c00379{font-size:50.336000pt;}
.fsf_c00379{font-size:60.016000pt;}
.fs6_c00379{font-size:63.008000pt;}
.fs21_c00379{font-size:64.064176pt;}
.fs4_c00379{font-size:64.240000pt;}
.fs1d_c00379{font-size:66.880000pt;}
.fs5_c00379{font-size:67.584176pt;}
.fs1_c00379{font-size:70.752176pt;}
.fs7_c00379{font-size:72.160000pt;}
.fse_c00379{font-size:81.664176pt;}
.y0_c00379{bottom:0.000000pt;}
.y34_c00379{bottom:54.088008pt;}
.y1_c00379{bottom:68.000000pt;}
.y33_c00379{bottom:85.770120pt;}
.y32_c00379{bottom:98.446520pt;}
.y31_c00379{bottom:158.638520pt;}
.y30_c00379{bottom:189.368120pt;}
.y2f_c00379{bottom:201.718920pt;}
.y2e_c00379{bottom:217.875720pt;}
.y2d_c00379{bottom:246.708920pt;}
.y2c_c00379{bottom:275.220920pt;}
.y28_c00379{bottom:275.537720pt;}
.y29_c00379{bottom:276.166920pt;}
.y2a_c00379{bottom:277.434120pt;}
.y2b_c00379{bottom:278.067720pt;}
.y26_c00379{bottom:303.728520pt;}
.y25_c00379{bottom:304.049720pt;}
.y27_c00379{bottom:309.747720pt;}
.y23_c00379{bottom:332.866420pt;}
.y24_c00379{bottom:332.874120pt;}
.y22_c00379{bottom:362.657720pt;}
.y20_c00379{bottom:392.115060pt;}
.y21_c00379{bottom:392.115720pt;}
.y3_c00379{bottom:423.161592pt;}
.y1f_c00379{bottom:449.144120pt;}
.y1e_c00379{bottom:478.285320pt;}
.y1d_c00379{bottom:507.114120pt;}
.y1c_c00379{bottom:530.244920pt;}
.y1a_c00379{bottom:535.630520pt;}
.y1b_c00379{bottom:535.947320pt;}
.y19_c00379{bottom:564.138120pt;}
.y18_c00379{bottom:593.283720pt;}
.y17_c00379{bottom:622.112520pt;}
.y16_c00379{bottom:650.628920pt;}
.y15_c00379{bottom:679.140920pt;}
.y13_c00379{bottom:707.965320pt;}
.y14_c00379{bottom:709.232520pt;}
.y12_c00379{bottom:735.843720pt;}
.y10_c00379{bottom:736.481720pt;}
.yf_c00379{bottom:736.794120pt;}
.y11_c00379{bottom:743.763720pt;}
.y2_c00379{bottom:753.588920pt;}
.ye_c00379{bottom:759.286920pt;}
.yd_c00379{bottom:764.672520pt;}
.yc_c00379{bottom:765.310520pt;}
.yb_c00379{bottom:765.311400pt;}
.ya_c00379{bottom:793.818120pt;}
.y9_c00379{bottom:815.994120pt;}
.y8_c00379{bottom:822.963720pt;}
.y7_c00379{bottom:823.284920pt;}
.y6_c00379{bottom:888.858120pt;}
.y5_c00379{bottom:907.232520pt;}
.y4_c00379{bottom:957.286920pt;}
.h1d_c00379{height:3.375938pt;}
.h1b_c00379{height:13.694660pt;}
.h1c_c00379{height:14.318059pt;}
.h1a_c00379{height:15.191311pt;}
.h25_c00379{height:17.560125pt;}
.h2_c00379{height:20.559000pt;}
.h20_c00379{height:21.942952pt;}
.h24_c00379{height:24.230250pt;}
.h5_c00379{height:25.698750pt;}
.hb_c00379{height:27.850522pt;}
.h23_c00379{height:28.452188pt;}
.hd_c00379{height:28.694594pt;}
.h11_c00379{height:29.538549pt;}
.hc_c00379{height:30.471375pt;}
.h4_c00379{height:30.838500pt;}
.h14_c00379{height:31.572934pt;}
.h19_c00379{height:32.123438pt;}
.h10_c00379{height:32.914370pt;}
.h16_c00379{height:37.630313pt;}
.h18_c00379{height:38.174297pt;}
.ha_c00379{height:39.383438pt;}
.h1f_c00379{height:43.529235pt;}
.h13_c00379{height:44.220000pt;}
.h1e_c00379{height:46.055891pt;}
.h21_c00379{height:52.498875pt;}
.h17_c00379{height:57.449700pt;}
.hf_c00379{height:58.902422pt;}
.h8_c00379{height:61.838906pt;}
.h6_c00379{height:63.048047pt;}
.h12_c00379{height:63.050687pt;}
.h15_c00379{height:64.332847pt;}
.h22_c00379{height:65.639063pt;}
.h3_c00379{height:69.439391pt;}
.h7_c00379{height:70.488184pt;}
.h9_c00379{height:70.821094pt;}
.he_c00379{height:85.173184pt;}
.h1_c00379{height:986.666667pt;}
.h0_c00379{height:1122.666667pt;}
.w1_c00379{width:689.333333pt;}
.w0_c00379{width:793.333333pt;}
.x0_c00379{left:0.000000pt;}
.x1_c00379{left:52.000000pt;}
.x2_c00379{left:54.719853pt;}
.x4d_c00379{left:83.592653pt;}
.x16_c00379{left:85.000653pt;}
.x82_c00379{left:86.615453pt;}
.x85_c00379{left:87.565853pt;}
.x45_c00379{left:94.676253pt;}
.x98_c00379{left:96.656253pt;}
.x8c_c00379{left:101.060653pt;}
.x65_c00379{left:103.889853pt;}
.x72_c00379{left:104.954653pt;}
.x6c_c00379{left:113.525853pt;}
.x9a_c00379{left:114.471853pt;}
.x8d_c00379{left:115.624653pt;}
.x25_c00379{left:116.966653pt;}
.x4e_c00379{left:122.911053pt;}
.x38_c00379{left:124.917453pt;}
.x17_c00379{left:126.453053pt;}
.x66_c00379{left:132.701053pt;}
.x6_c00379{left:134.522653pt;}
.x4f_c00379{left:142.183053pt;}
.x18_c00379{left:143.203853pt;}
.x26_c00379{left:144.127853pt;}
.x67_c00379{left:151.981853pt;}
.x30_c00379{left:153.746253pt;}
.x50_c00379{left:161.701453pt;}
.x19_c00379{left:163.421853pt;}
.x86_c00379{left:172.424253pt;}
.x7_c00379{left:173.748653pt;}
.x8e_c00379{left:176.129053pt;}
.x68_c00379{left:181.915053pt;}
.x8_c00379{left:183.494653pt;}
.x51_c00379{left:191.089053pt;}
.x8f_c00379{left:192.369453pt;}
.x1a_c00379{left:193.390253pt;}
.x79_c00379{left:202.106653pt;}
.x9_c00379{left:203.013053pt;}
.x46_c00379{left:204.148253pt;}
.x39_c00379{left:212.257453pt;}
.x9b_c00379{left:213.207853pt;}
.x73_c00379{left:217.313053pt;}
.x7a_c00379{left:221.589853pt;}
.x31_c00379{left:223.336653pt;}
.x7b_c00379{left:230.297453pt;}
.x52_c00379{left:231.212653pt;}
.x1b_c00379{left:232.281853pt;}
.x27_c00379{left:233.531453pt;}
.x83_c00379{left:241.548253pt;}
.x3a_c00379{left:242.533853pt;}
.x47_c00379{left:251.210653pt;}
.x3b_c00379{left:252.636253pt;}
.x7c_c00379{left:261.489053pt;}
.xa_c00379{left:262.413053pt;}
.x6d_c00379{left:270.460653pt;}
.x28_c00379{left:272.867453pt;}
.x7d_c00379{left:279.955853pt;}
.x3c_c00379{left:281.271453pt;}
.x1c_c00379{left:284.219453pt;}
.x74_c00379{left:289.090253pt;}
.x32_c00379{left:290.313453pt;}
.xb_c00379{left:291.576253pt;}
.x5c_c00379{left:300.244253pt;}
.x48_c00379{left:301.581853pt;}
.x7e_c00379{left:310.293853pt;}
.x7f_c00379{left:319.001453pt;}
.x3d_c00379{left:321.065053pt;}
.x9c_c00379{left:322.930653pt;}
.x69_c00379{left:329.609853pt;}
.x29_c00379{left:332.104653pt;}
.x75_c00379{left:333.156253pt;}
.x5d_c00379{left:339.303053pt;}
.x89_c00379{left:340.376653pt;}
.x53_c00379{left:349.260253pt;}
.x1d_c00379{left:351.112653pt;}
.x6e_c00379{left:352.366653pt;}
.x33_c00379{left:356.133053pt;}
.x76_c00379{left:359.261453pt;}
.x2a_c00379{left:360.999453pt;}
.x4_c00379{left:362.609853pt;}
.x3e_c00379{left:365.126653pt;}
.x5e_c00379{left:369.143853pt;}
.x5_c00379{left:374.032253pt;}
.x6a_c00379{left:379.013053pt;}
.xc_c00379{left:380.289053pt;}
.x54_c00379{left:388.402653pt;}
.x2b_c00379{left:389.674253pt;}
.x49_c00379{left:399.248653pt;}
.x34_c00379{left:400.489453pt;}
.x9d_c00379{left:401.549853pt;}
.x5f_c00379{left:408.163053pt;}
.x1e_c00379{left:409.755853pt;}
.xd_c00379{left:410.701853pt;}
.x6f_c00379{left:417.812253pt;}
.x87_c00379{left:418.846253pt;}
.x2c_c00379{left:420.183853pt;}
.x55_c00379{left:428.046653pt;}
.xe_c00379{left:430.017853pt;}
.x84_c00379{left:438.298653pt;}
.x2d_c00379{left:439.218253pt;}
.x60_c00379{left:440.401853pt;}
.x56_c00379{left:447.771853pt;}
.x3f_c00379{left:449.162253pt;}
.x92_c00379{left:452.004653pt;}
.x1f_c00379{left:458.076653pt;}
.xf_c00379{left:459.792653pt;}
.x2e_c00379{left:460.716653pt;}
.x70_c00379{left:464.395053pt;}
.x8a_c00379{left:467.725853pt;}
.x40_c00379{left:468.773053pt;}
.x35_c00379{left:469.917053pt;}
.x57_c00379{left:477.515853pt;}
.x41_c00379{left:478.589453pt;}
.x90_c00379{left:483.741853pt;}
.x61_c00379{left:486.637053pt;}
.x20_c00379{left:488.458653pt;}
.x42_c00379{left:497.320253pt;}
.x10_c00379{left:498.490653pt;}
.x4a_c00379{left:507.154253pt;}
.x11_c00379{left:508.549053pt;}
.x91_c00379{left:509.723853pt;}
.x93_c00379{left:512.157053pt;}
.x62_c00379{left:516.200653pt;}
.x37_c00379{left:517.815453pt;}
.x36_c00379{left:520.415853pt;}
.x58_c00379{left:525.893853pt;}
.x21_c00379{left:527.165453pt;}
.x59_c00379{left:535.978653pt;}
.x77_c00379{left:537.008253pt;}
.x4b_c00379{left:538.055453pt;}
.x71_c00379{left:545.649853pt;}
.x43_c00379{left:547.458253pt;}
.x94_c00379{left:548.562653pt;}
.x12_c00379{left:556.896253pt;}
.x88_c00379{left:566.382653pt;}
.x44_c00379{left:567.469453pt;}
.x97_c00379{left:568.873053pt;}
.x4c_c00379{left:575.583053pt;}
.x22_c00379{left:577.343053pt;}
.x6b_c00379{left:586.169453pt;}
.x2f_c00379{left:590.340653pt;}
.xa0_c00379{left:592.965253pt;}
.x5a_c00379{left:595.031053pt;}
.x99_c00379{left:596.980253pt;}
.x3_c00379{left:598.212253pt;}
.x23_c00379{left:604.420653pt;}
.x95_c00379{left:605.652653pt;}
.x13_c00379{left:606.699853pt;}
.x63_c00379{left:615.051053pt;}
.x15_c00379{left:616.005853pt;}
.x9e_c00379{left:619.235453pt;}
.x5b_c00379{left:623.723453pt;}
.x8b_c00379{left:625.153453pt;}
.x14_c00379{left:626.759453pt;}
.x80_c00379{left:631.982253pt;}
.x64_c00379{left:634.173453pt;}
.x96_c00379{left:635.621053pt;}
.x81_c00379{left:644.447453pt;}
.x24_c00379{left:655.570653pt;}
.x78_c00379{left:664.124253pt;}
.x9f_c00379{left:667.727853pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_52c9d587bc2fb35752828597.woff2')format("woff");}.ff1_c00380{font-family:ff1_c00380;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00380;src:url('chunks/assets/font_9d887852474ee2bfa07ebe46.woff2')format("woff");}.ff2_c00380{font-family:ff2_c00380;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00380;src:url('chunks/assets/font_0ed91706209789fb4d8a4407.woff2')format("woff");}.ff3_c00380{font-family:ff3_c00380;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00380;src:url('chunks/assets/font_41d26ac6cd5167a717696ffa.woff2')format("woff");}.ff4_c00380{font-family:ff4_c00380;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m6b_c00380{transform:matrix(0.047620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.047620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.047620,0.000000,0.000000,0.250000,0,0);}
.m54_c00380{transform:matrix(0.068184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.068184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.068184,0.000000,0.000000,0.250000,0,0);}
.m6d_c00380{transform:matrix(0.071428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071428,0.000000,0.000000,0.250000,0,0);}
.m17_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);}
.m8c_c00380{transform:matrix(0.101785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101785,0.000000,0.000000,0.250000,0,0);}
.m6a_c00380{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);}
.m55_c00380{transform:matrix(0.113638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113638,0.000000,0.000000,0.250000,0,0);}
.m4f_c00380{transform:matrix(0.129977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129977,0.000000,0.000000,0.250000,0,0);}
.m12_c00380{transform:matrix(0.135359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135359,0.000000,0.000000,0.250000,0,0);}
.ma5_c00380{transform:matrix(0.135676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135676,0.000000,0.000000,0.250000,0,0);}
.m51_c00380{transform:matrix(0.137718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137718,0.000000,0.000000,0.250000,0,0);}
.m18_c00380{transform:matrix(0.146466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146466,0.000000,0.000000,0.250000,0,0);}
.m6c_c00380{transform:matrix(0.148809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148809,0.000000,0.000000,0.250000,0,0);}
.m58_c00380{transform:matrix(0.157011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157011,0.000000,0.000000,0.250000,0,0);}
.m5c_c00380{transform:matrix(0.165520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165520,0.000000,0.000000,0.250000,0,0);}
.m16_c00380{transform:matrix(0.181819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181819,0.000000,0.000000,0.250000,0,0);}
.m76_c00380{transform:matrix(0.191245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191245,0.000000,0.000000,0.250000,0,0);}
.m7a_c00380{transform:matrix(0.194054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194054,0.000000,0.000000,0.250000,0,0);}
.m5e_c00380{transform:matrix(0.195558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195558,0.000000,0.000000,0.250000,0,0);}
.m44_c00380{transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);}
.md1_c00380{transform:matrix(0.205357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205357,0.000000,0.000000,0.250000,0,0);}
.m4b_c00380{transform:matrix(0.210424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210424,0.000000,0.000000,0.250000,0,0);}
.m5a_c00380{transform:matrix(0.212832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212832,0.000000,0.000000,0.250000,0,0);}
.m23_c00380{transform:matrix(0.213559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213559,0.000000,0.000000,0.250000,0,0);}
.m63_c00380{transform:matrix(0.216355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216355,0.000000,0.000000,0.250000,0,0);}
.ma0_c00380{transform:matrix(0.220873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220873,0.000000,0.000000,0.250000,0,0);}
.m70_c00380{transform:matrix(0.224645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224645,0.000000,0.000000,0.250000,0,0);}
.m32_c00380{transform:matrix(0.231375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231375,0.000000,0.000000,0.250000,0,0);}
.m5b_c00380{transform:matrix(0.232260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232260,0.000000,0.000000,0.250000,0,0);}
.m9a_c00380{transform:matrix(0.234541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234541,0.000000,0.000000,0.250000,0,0);}
.mdf_c00380{transform:matrix(0.243379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243379,0.000000,0.000000,0.250000,0,0);}
.m1_c00380{transform:matrix(0.245256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245256,0.000000,0.000000,0.250000,0,0);}
.m0_c00380{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00380{transform:matrix(0.251228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251228,0.000000,0.000000,0.250000,0,0);}
.m3c_c00380{transform:matrix(0.251839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251839,0.000000,0.000000,0.250000,0,0);}
.ma3_c00380{transform:matrix(0.252245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252245,0.000000,0.000000,0.250000,0,0);}
.m66_c00380{transform:matrix(0.253481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253481,0.000000,0.000000,0.250000,0,0);}
.me7_c00380{transform:matrix(0.253701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253701,0.000000,0.000000,0.250000,0,0);}
.mbf_c00380{transform:matrix(0.253795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253795,0.000000,0.000000,0.250000,0,0);}
.m6f_c00380{transform:matrix(0.256683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256683,0.000000,0.000000,0.250000,0,0);}
.mf_c00380{transform:matrix(0.259844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259844,0.000000,0.000000,0.250000,0,0);}
.md0_c00380{transform:matrix(0.260592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260592,0.000000,0.000000,0.250000,0,0);}
.m78_c00380{transform:matrix(0.260629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260629,0.000000,0.000000,0.250000,0,0);}
.mc9_c00380{transform:matrix(0.260654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260654,0.000000,0.000000,0.250000,0,0);}
.m94_c00380{transform:matrix(0.261105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261105,0.000000,0.000000,0.250000,0,0);}
.md7_c00380{transform:matrix(0.261325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261325,0.000000,0.000000,0.250000,0,0);}
.m61_c00380{transform:matrix(0.261800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261800,0.000000,0.000000,0.250000,0,0);}
.mce_c00380{transform:matrix(0.261819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261819,0.000000,0.000000,0.250000,0,0);}
.mda_c00380{transform:matrix(0.263052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263052,0.000000,0.000000,0.250000,0,0);}
.m96_c00380{transform:matrix(0.263521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263521,0.000000,0.000000,0.250000,0,0);}
.m90_c00380{transform:matrix(0.263927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263927,0.000000,0.000000,0.250000,0,0);}
.ma7_c00380{transform:matrix(0.264167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264167,0.000000,0.000000,0.250000,0,0);}
.m2c_c00380{transform:matrix(0.264376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264376,0.000000,0.000000,0.250000,0,0);}
.m1c_c00380{transform:matrix(0.264908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264908,0.000000,0.000000,0.250000,0,0);}
.m72_c00380{transform:matrix(0.265700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265700,0.000000,0.000000,0.250000,0,0);}
.m45_c00380{transform:matrix(0.266147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266147,0.000000,0.000000,0.250000,0,0);}
.m39_c00380{transform:matrix(0.267450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267450,0.000000,0.000000,0.250000,0,0);}
.m3b_c00380{transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);}
.me8_c00380{transform:matrix(0.268726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268726,0.000000,0.000000,0.250000,0,0);}
.md_c00380{transform:matrix(0.270483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270483,0.000000,0.000000,0.250000,0,0);}
.mbc_c00380{transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);}
.m34_c00380{transform:matrix(0.270624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270624,0.000000,0.000000,0.250000,0,0);}
.m21_c00380{transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);}
.mb2_c00380{transform:matrix(0.271867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271867,0.000000,0.000000,0.250000,0,0);}
.m60_c00380{transform:matrix(0.271877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271877,0.000000,0.000000,0.250000,0,0);}
.m56_c00380{transform:matrix(0.272724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272724,0.000000,0.000000,0.250000,0,0);}
.md2_c00380{transform:matrix(0.272821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272821,0.000000,0.000000,0.250000,0,0);}
.m28_c00380{transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);}
.mdb_c00380{transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);}
.m46_c00380{transform:matrix(0.273848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273848,0.000000,0.000000,0.250000,0,0);}
.m20_c00380{transform:matrix(0.274364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274364,0.000000,0.000000,0.250000,0,0);}
.m7d_c00380{transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);}
.m69_c00380{transform:matrix(0.276904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276904,0.000000,0.000000,0.250000,0,0);}
.m13_c00380{transform:matrix(0.276927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276927,0.000000,0.000000,0.250000,0,0);}
.m35_c00380{transform:matrix(0.276992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276992,0.000000,0.000000,0.250000,0,0);}
.ma4_c00380{transform:matrix(0.276997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276997,0.000000,0.000000,0.250000,0,0);}
.m9d_c00380{transform:matrix(0.278706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278706,0.000000,0.000000,0.250000,0,0);}
.mc6_c00380{transform:matrix(0.279528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279528,0.000000,0.000000,0.250000,0,0);}
.m11_c00380{transform:matrix(0.280081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280081,0.000000,0.000000,0.250000,0,0);}
.m8b_c00380{transform:matrix(0.280134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280134,0.000000,0.000000,0.250000,0,0);}
.mc1_c00380{transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);}
.m37_c00380{transform:matrix(0.280888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280888,0.000000,0.000000,0.250000,0,0);}
.mb4_c00380{transform:matrix(0.280985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280985,0.000000,0.000000,0.250000,0,0);}
.m3d_c00380{transform:matrix(0.281243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281243,0.000000,0.000000,0.250000,0,0);}
.mb8_c00380{transform:matrix(0.281333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281333,0.000000,0.000000,0.250000,0,0);}
.mba_c00380{transform:matrix(0.281497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281497,0.000000,0.000000,0.250000,0,0);}
.m53_c00380{transform:matrix(0.281764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281764,0.000000,0.000000,0.250000,0,0);}
.me1_c00380{transform:matrix(0.282883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282883,0.000000,0.000000,0.250000,0,0);}
.mb_c00380{transform:matrix(0.283000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00380{transform:matrix(0.283116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283116,0.000000,0.000000,0.250000,0,0);}
.m29_c00380{transform:matrix(0.283625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283625,0.000000,0.000000,0.250000,0,0);}
.mdc_c00380{transform:matrix(0.283894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283894,0.000000,0.000000,0.250000,0,0);}
.md6_c00380{transform:matrix(0.283948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283948,0.000000,0.000000,0.250000,0,0);}
.m74_c00380{transform:matrix(0.284658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284658,0.000000,0.000000,0.250000,0,0);}
.m9e_c00380{transform:matrix(0.284775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284775,0.000000,0.000000,0.250000,0,0);}
.ma6_c00380{transform:matrix(0.284887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284887,0.000000,0.000000,0.250000,0,0);}
.m49_c00380{transform:matrix(0.286446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286446,0.000000,0.000000,0.250000,0,0);}
.ma1_c00380{transform:matrix(0.286484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286484,0.000000,0.000000,0.250000,0,0);}
.m14_c00380{transform:matrix(0.286743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286743,0.000000,0.000000,0.250000,0,0);}
.m9f_c00380{transform:matrix(0.286763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286763,0.000000,0.000000,0.250000,0,0);}
.m93_c00380{transform:matrix(0.287323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287323,0.000000,0.000000,0.250000,0,0);}
.m8a_c00380{transform:matrix(0.287374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287374,0.000000,0.000000,0.250000,0,0);}
.m2_c00380{transform:matrix(0.287516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287516,0.000000,0.000000,0.250000,0,0);}
.m5_c00380{transform:matrix(0.287527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287527,0.000000,0.000000,0.250000,0,0);}
.md8_c00380{transform:matrix(0.287946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287946,0.000000,0.000000,0.250000,0,0);}
.m4d_c00380{transform:matrix(0.288089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288089,0.000000,0.000000,0.250000,0,0);}
.mb1_c00380{transform:matrix(0.288188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288188,0.000000,0.000000,0.250000,0,0);}
.m59_c00380{transform:matrix(0.288235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288235,0.000000,0.000000,0.250000,0,0);}
.m19_c00380{transform:matrix(0.288781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288781,0.000000,0.000000,0.250000,0,0);}
.mcb_c00380{transform:matrix(0.288910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288910,0.000000,0.000000,0.250000,0,0);}
.md5_c00380{transform:matrix(0.289156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289156,0.000000,0.000000,0.250000,0,0);}
.m2e_c00380{transform:matrix(0.289222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289222,0.000000,0.000000,0.250000,0,0);}
.mb7_c00380{transform:matrix(0.289636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289636,0.000000,0.000000,0.250000,0,0);}
.m38_c00380{transform:matrix(0.290225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290225,0.000000,0.000000,0.250000,0,0);}
.m95_c00380{transform:matrix(0.290847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290847,0.000000,0.000000,0.250000,0,0);}
.m7_c00380{transform:matrix(0.290880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290880,0.000000,0.000000,0.250000,0,0);}
.me0_c00380{transform:matrix(0.291586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291586,0.000000,0.000000,0.250000,0,0);}
.mc8_c00380{transform:matrix(0.292016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292016,0.000000,0.000000,0.250000,0,0);}
.m97_c00380{transform:matrix(0.292154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292154,0.000000,0.000000,0.250000,0,0);}
.m4_c00380{transform:matrix(0.292939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292939,0.000000,0.000000,0.250000,0,0);}
.m9_c00380{transform:matrix(0.293137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293137,0.000000,0.000000,0.250000,0,0);}
.mc5_c00380{transform:matrix(0.293159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293159,0.000000,0.000000,0.250000,0,0);}
.m47_c00380{transform:matrix(0.293280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293280,0.000000,0.000000,0.250000,0,0);}
.m3f_c00380{transform:matrix(0.293363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293363,0.000000,0.000000,0.250000,0,0);}
.mc4_c00380{transform:matrix(0.293426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293426,0.000000,0.000000,0.250000,0,0);}
.mde_c00380{transform:matrix(0.296456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296456,0.000000,0.000000,0.250000,0,0);}
.m3a_c00380{transform:matrix(0.296494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296494,0.000000,0.000000,0.250000,0,0);}
.m24_c00380{transform:matrix(0.296515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296515,0.000000,0.000000,0.250000,0,0);}
.m98_c00380{transform:matrix(0.296800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296800,0.000000,0.000000,0.250000,0,0);}
.m8e_c00380{transform:matrix(0.297267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297267,0.000000,0.000000,0.250000,0,0);}
.m87_c00380{transform:matrix(0.297422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297422,0.000000,0.000000,0.250000,0,0);}
.me3_c00380{transform:matrix(0.297564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297564,0.000000,0.000000,0.250000,0,0);}
.m7b_c00380{transform:matrix(0.297812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297812,0.000000,0.000000,0.250000,0,0);}
.m2a_c00380{transform:matrix(0.297970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297970,0.000000,0.000000,0.250000,0,0);}
.m75_c00380{transform:matrix(0.297974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297974,0.000000,0.000000,0.250000,0,0);}
.m26_c00380{transform:matrix(0.298449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298449,0.000000,0.000000,0.250000,0,0);}
.m5d_c00380{transform:matrix(0.298516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298516,0.000000,0.000000,0.250000,0,0);}
.m31_c00380{transform:matrix(0.299687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299687,0.000000,0.000000,0.250000,0,0);}
.mbe_c00380{transform:matrix(0.300790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300790,0.000000,0.000000,0.250000,0,0);}
.me2_c00380{transform:matrix(0.301019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301019,0.000000,0.000000,0.250000,0,0);}
.m2f_c00380{transform:matrix(0.301121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301121,0.000000,0.000000,0.250000,0,0);}
.maa_c00380{transform:matrix(0.301140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301140,0.000000,0.000000,0.250000,0,0);}
.m7c_c00380{transform:matrix(0.301225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301225,0.000000,0.000000,0.250000,0,0);}
.m5f_c00380{transform:matrix(0.302208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302208,0.000000,0.000000,0.250000,0,0);}
.mb3_c00380{transform:matrix(0.302333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302333,0.000000,0.000000,0.250000,0,0);}
.me_c00380{transform:matrix(0.302495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302495,0.000000,0.000000,0.250000,0,0);}
.m81_c00380{transform:matrix(0.302988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302988,0.000000,0.000000,0.250000,0,0);}
.m88_c00380{transform:matrix(0.303335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303335,0.000000,0.000000,0.250000,0,0);}
.mb0_c00380{transform:matrix(0.303703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303703,0.000000,0.000000,0.250000,0,0);}
.m65_c00380{transform:matrix(0.304385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304385,0.000000,0.000000,0.250000,0,0);}
.mc2_c00380{transform:matrix(0.305233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305233,0.000000,0.000000,0.250000,0,0);}
.m92_c00380{transform:matrix(0.305453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305453,0.000000,0.000000,0.250000,0,0);}
.me6_c00380{transform:matrix(0.305504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305504,0.000000,0.000000,0.250000,0,0);}
.md9_c00380{transform:matrix(0.305904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305904,0.000000,0.000000,0.250000,0,0);}
.m82_c00380{transform:matrix(0.306246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306246,0.000000,0.000000,0.250000,0,0);}
.mab_c00380{transform:matrix(0.306291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306291,0.000000,0.000000,0.250000,0,0);}
.m1e_c00380{transform:matrix(0.307994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307994,0.000000,0.000000,0.250000,0,0);}
.me5_c00380{transform:matrix(0.308512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308512,0.000000,0.000000,0.250000,0,0);}
.me4_c00380{transform:matrix(0.309675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309675,0.000000,0.000000,0.250000,0,0);}
.mc7_c00380{transform:matrix(0.310108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310108,0.000000,0.000000,0.250000,0,0);}
.m52_c00380{transform:matrix(0.310288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310288,0.000000,0.000000,0.250000,0,0);}
.m62_c00380{transform:matrix(0.310797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310797,0.000000,0.000000,0.250000,0,0);}
.md3_c00380{transform:matrix(0.311031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311031,0.000000,0.000000,0.250000,0,0);}
.mae_c00380{transform:matrix(0.312493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312493,0.000000,0.000000,0.250000,0,0);}
.maf_c00380{transform:matrix(0.313375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313375,0.000000,0.000000,0.250000,0,0);}
.mdd_c00380{transform:matrix(0.313378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313378,0.000000,0.000000,0.250000,0,0);}
.mbb_c00380{transform:matrix(0.313458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313458,0.000000,0.000000,0.250000,0,0);}
.mc_c00380{transform:matrix(0.313494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313494,0.000000,0.000000,0.250000,0,0);}
.m6_c00380{transform:matrix(0.313667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313667,0.000000,0.000000,0.250000,0,0);}
.m7f_c00380{transform:matrix(0.313677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313677,0.000000,0.000000,0.250000,0,0);}
.mb5_c00380{transform:matrix(0.313806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313806,0.000000,0.000000,0.250000,0,0);}
.ma2_c00380{transform:matrix(0.314597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314597,0.000000,0.000000,0.250000,0,0);}
.mcf_c00380{transform:matrix(0.315905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315905,0.000000,0.000000,0.250000,0,0);}
.mac_c00380{transform:matrix(0.316292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316292,0.000000,0.000000,0.250000,0,0);}
.m8d_c00380{transform:matrix(0.319262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319262,0.000000,0.000000,0.250000,0,0);}
.mad_c00380{transform:matrix(0.319577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319577,0.000000,0.000000,0.250000,0,0);}
.m43_c00380{transform:matrix(0.319606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319606,0.000000,0.000000,0.250000,0,0);}
.m80_c00380{transform:matrix(0.319618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319618,0.000000,0.000000,0.250000,0,0);}
.m42_c00380{transform:matrix(0.319887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319887,0.000000,0.000000,0.250000,0,0);}
.m50_c00380{transform:matrix(0.320520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320520,0.000000,0.000000,0.250000,0,0);}
.m1d_c00380{transform:matrix(0.322766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322766,0.000000,0.000000,0.250000,0,0);}
.m40_c00380{transform:matrix(0.323684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323684,0.000000,0.000000,0.250000,0,0);}
.m30_c00380{transform:matrix(0.323765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323765,0.000000,0.000000,0.250000,0,0);}
.m27_c00380{transform:matrix(0.324239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324239,0.000000,0.000000,0.250000,0,0);}
.m73_c00380{transform:matrix(0.326407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326407,0.000000,0.000000,0.250000,0,0);}
.m3_c00380{transform:matrix(0.326593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326593,0.000000,0.000000,0.250000,0,0);}
.mc0_c00380{transform:matrix(0.327010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327010,0.000000,0.000000,0.250000,0,0);}
.m15_c00380{transform:matrix(0.327477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327477,0.000000,0.000000,0.250000,0,0);}
.m8f_c00380{transform:matrix(0.331283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331283,0.000000,0.000000,0.250000,0,0);}
.md4_c00380{transform:matrix(0.331410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331410,0.000000,0.000000,0.250000,0,0);}
.m6e_c00380{transform:matrix(0.331769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331769,0.000000,0.000000,0.250000,0,0);}
.m86_c00380{transform:matrix(0.332271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332271,0.000000,0.000000,0.250000,0,0);}
.m64_c00380{transform:matrix(0.332874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332874,0.000000,0.000000,0.250000,0,0);}
.m25_c00380{transform:matrix(0.333131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333131,0.000000,0.000000,0.250000,0,0);}
.m84_c00380{transform:matrix(0.335358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335358,0.000000,0.000000,0.250000,0,0);}
.m4c_c00380{transform:matrix(0.335516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335516,0.000000,0.000000,0.250000,0,0);}
.m99_c00380{transform:matrix(0.335834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335834,0.000000,0.000000,0.250000,0,0);}
.m1a_c00380{transform:matrix(0.336421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336421,0.000000,0.000000,0.250000,0,0);}
.mb9_c00380{transform:matrix(0.337307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337307,0.000000,0.000000,0.250000,0,0);}
.m91_c00380{transform:matrix(0.337961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337961,0.000000,0.000000,0.250000,0,0);}
.m77_c00380{transform:matrix(0.338271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338271,0.000000,0.000000,0.250000,0,0);}
.m7e_c00380{transform:matrix(0.339155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339155,0.000000,0.000000,0.250000,0,0);}
.mb6_c00380{transform:matrix(0.339998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339998,0.000000,0.000000,0.250000,0,0);}
.m89_c00380{transform:matrix(0.340097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340097,0.000000,0.000000,0.250000,0,0);}
.m3e_c00380{transform:matrix(0.340955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340955,0.000000,0.000000,0.250000,0,0);}
.mca_c00380{transform:matrix(0.342862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342862,0.000000,0.000000,0.250000,0,0);}
.m8_c00380{transform:matrix(0.344734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344734,0.000000,0.000000,0.250000,0,0);}
.m9b_c00380{transform:matrix(0.346293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346293,0.000000,0.000000,0.250000,0,0);}
.m2b_c00380{transform:matrix(0.347685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347685,0.000000,0.000000,0.250000,0,0);}
.mcd_c00380{transform:matrix(0.349880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349880,0.000000,0.000000,0.250000,0,0);}
.mbd_c00380{transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);}
.me9_c00380{transform:matrix(0.355065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355065,0.000000,0.000000,0.250000,0,0);}
.m83_c00380{transform:matrix(0.356018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356018,0.000000,0.000000,0.250000,0,0);}
.m41_c00380{transform:matrix(0.360282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360282,0.000000,0.000000,0.250000,0,0);}
.m71_c00380{transform:matrix(0.361546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361546,0.000000,0.000000,0.250000,0,0);}
.m9c_c00380{transform:matrix(0.362157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362157,0.000000,0.000000,0.250000,0,0);}
.m2d_c00380{transform:matrix(0.368295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368295,0.000000,0.000000,0.250000,0,0);}
.m4a_c00380{transform:matrix(0.368347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368347,0.000000,0.000000,0.250000,0,0);}
.m1b_c00380{transform:matrix(0.370254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370254,0.000000,0.000000,0.250000,0,0);}
.m22_c00380{transform:matrix(0.374433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374433,0.000000,0.000000,0.250000,0,0);}
.m79_c00380{transform:matrix(0.374610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374610,0.000000,0.000000,0.250000,0,0);}
.ma8_c00380{transform:matrix(0.374922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374922,0.000000,0.000000,0.250000,0,0);}
.m10_c00380{transform:matrix(0.378805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378805,0.000000,0.000000,0.250000,0,0);}
.m36_c00380{transform:matrix(0.381089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381089,0.000000,0.000000,0.250000,0,0);}
.m4e_c00380{transform:matrix(0.385706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385706,0.000000,0.000000,0.250000,0,0);}
.mc3_c00380{transform:matrix(0.388507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388507,0.000000,0.000000,0.250000,0,0);}
.m68_c00380{transform:matrix(0.406255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406255,0.000000,0.000000,0.250000,0,0);}
.m48_c00380{transform:matrix(0.416660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416660,0.000000,0.000000,0.250000,0,0);}
.m85_c00380{transform:matrix(0.422919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422919,0.000000,0.000000,0.250000,0,0);}
.ma9_c00380{transform:matrix(0.424475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424475,0.000000,0.000000,0.250000,0,0);}
.ma_c00380{transform:matrix(0.432185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432185,0.000000,0.000000,0.250000,0,0);}
.m33_c00380{transform:matrix(0.432848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432848,0.000000,0.000000,0.250000,0,0);}
.m67_c00380{transform:matrix(0.440189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440189,0.000000,0.000000,0.250000,0,0);}
.m57_c00380{transform:matrix(7.685212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(7.685212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(7.685212,0.000000,0.000000,0.250000,0,0);}
.v2_c00380{vertical-align:-21.384000px;}
.v0_c00380{vertical-align:0.000000px;}
.v1_c00380{vertical-align:39.897000px;}
.ls4_c00380{letter-spacing:-2.993767px;}
.ls6_c00380{letter-spacing:-2.647267px;}
.lsc_c00380{letter-spacing:-2.584890px;}
.ls17_c00380{letter-spacing:-2.246395px;}
.ls1a_c00380{letter-spacing:-2.170759px;}
.ls13_c00380{letter-spacing:-1.857240px;}
.ls10_c00380{letter-spacing:-1.628550px;}
.ls19_c00380{letter-spacing:-1.505160px;}
.ls1e_c00380{letter-spacing:-1.459779px;}
.ls18_c00380{letter-spacing:-1.134543px;}
.ls3_c00380{letter-spacing:0.000000px;}
.ls2_c00380{letter-spacing:0.279854px;}
.ls1b_c00380{letter-spacing:0.400872px;}
.lsd_c00380{letter-spacing:0.589962px;}
.ls1_c00380{letter-spacing:0.597526px;}
.lsf_c00380{letter-spacing:0.970200px;}
.ls12_c00380{letter-spacing:1.490033px;}
.ls14_c00380{letter-spacing:1.643400px;}
.ls1c_c00380{letter-spacing:2.309477px;}
.ls11_c00380{letter-spacing:2.326500px;}
.ls8_c00380{letter-spacing:3.017884px;}
.ls0_c00380{letter-spacing:3.493512px;}
.ls1d_c00380{letter-spacing:3.534310px;}
.ls1f_c00380{letter-spacing:3.583810px;}
.ls15_c00380{letter-spacing:3.643200px;}
.ls5_c00380{letter-spacing:3.781810px;}
.ls21_c00380{letter-spacing:4.276810px;}
.lsa_c00380{letter-spacing:12.830598px;}
.lse_c00380{letter-spacing:15.681798px;}
.ls7_c00380{letter-spacing:47.044800px;}
.ls9_c00380{letter-spacing:49.896198px;}
.ls20_c00380{letter-spacing:51.321798px;}
.lsb_c00380{letter-spacing:52.747398px;}
.ls16_c00380{letter-spacing:59.875398px;}
.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;}
}
.ws5_c00380{word-spacing:-19.188903px;}
.ws0_c00380{word-spacing:-18.909050px;}
.ws4_c00380{word-spacing:-16.738291px;}
.ws1_c00380{word-spacing:-16.662654px;}
.ws2_c00380{word-spacing:-7.971480px;}
.ws6_c00380{word-spacing:-3.706093px;}
.ws7_c00380{word-spacing:0.000000px;}
.ws3_c00380{word-spacing:2.571722px;}
._13_c00380{margin-left:-18.758619px;}
._1b_c00380{margin-left:-14.068395px;}
._16_c00380{margin-left:-11.346313px;}
._11_c00380{margin-left:-2.195721px;}
._7_c00380{width:1.437431px;}
._17_c00380{width:2.981225px;}
._18_c00380{width:4.160090px;}
._3_c00380{width:6.050990px;}
._c_c00380{width:7.488074px;}
._9_c00380{width:8.622416px;}
._1_c00380{width:11.723888px;}
._10_c00380{width:12.933668px;}
._12_c00380{width:14.598441px;}
._6_c00380{width:16.941606px;}
._5_c00380{width:21.632237px;}
._1a_c00380{width:22.660737px;}
._e_c00380{width:24.506207px;}
._d_c00380{width:28.832494px;}
._4_c00380{width:33.960811px;}
._8_c00380{width:35.923399px;}
._1c_c00380{width:37.590783px;}
._f_c00380{width:38.801329px;}
._14_c00380{width:40.994811px;}
._2_c00380{width:42.885497px;}
._b_c00380{width:46.094570px;}
._15_c00380{width:47.121519px;}
._0_c00380{width:54.350901px;}
._19_c00380{width:67.909248px;}
._a_c00380{width:283.181976px;}
.fc0_c00380{color:transparent;}
.fs7_c00380{font-size:12.830598px;}
.fsc_c00380{font-size:15.681798px;}
.fsb_c00380{font-size:19.404000px;}
.fs0_c00380{font-size:22.176000px;}
.fs3_c00380{font-size:30.096000px;}
.fsf_c00380{font-size:32.868000px;}
.fs14_c00380{font-size:34.056198px;}
.fs19_c00380{font-size:39.600000px;}
.fsd_c00380{font-size:46.530000px;}
.fs16_c00380{font-size:46.728000px;}
.fs4_c00380{font-size:47.044800px;}
.fs6_c00380{font-size:49.896198px;}
.fs18_c00380{font-size:51.321798px;}
.fs9_c00380{font-size:52.747398px;}
.fse_c00380{font-size:53.064000px;}
.fs13_c00380{font-size:55.440000px;}
.fs11_c00380{font-size:59.875398px;}
.fs8_c00380{font-size:60.192000px;}
.fs15_c00380{font-size:70.686198px;}
.fs17_c00380{font-size:71.676198px;}
.fs10_c00380{font-size:72.864000px;}
.fsa_c00380{font-size:73.854000px;}
.fs2_c00380{font-size:75.636198px;}
.fs5_c00380{font-size:76.230000px;}
.fs1_c00380{font-size:85.536198px;}
.fs12_c00380{font-size:87.120000px;}
.y0_c00380{bottom:0.000000px;}
.y1_c00380{bottom:76.500000px;}
.y2a_c00380{bottom:181.314585px;}
.y29_c00380{bottom:181.321317px;}
.y28_c00380{bottom:218.023785px;}
.y27_c00380{bottom:243.328185px;}
.y26_c00380{bottom:249.748335px;}
.y25_c00380{bottom:281.824335px;}
.y23_c00380{bottom:313.900335px;}
.y24_c00380{bottom:319.246335px;}
.y22_c00380{bottom:336.704985px;}
.y21_c00380{bottom:346.689135px;}
.y20_c00380{bottom:378.765135px;}
.y1f_c00380{bottom:410.836185px;}
.y1e_c00380{bottom:443.273535px;}
.y1d_c00380{bottom:476.057385px;}
.y1c_c00380{bottom:508.133385px;}
.y1b_c00380{bottom:539.496585px;}
.y1a_c00380{bottom:572.285385px;}
.y19_c00380{bottom:604.717785px;}
.y18_c00380{bottom:636.798735px;}
.y16_c00380{bottom:668.869785px;}
.y17_c00380{bottom:674.572185px;}
.y15_c00380{bottom:698.094585px;}
.y14_c00380{bottom:701.658585px;}
.y13_c00380{bottom:709.855785px;}
.y12_c00380{bottom:727.324335px;}
.y10_c00380{bottom:733.734585px;}
.y11_c00380{bottom:734.090985px;}
.yf_c00380{bottom:760.464585px;}
.ye_c00380{bottom:763.672185px;}
.yc_c00380{bottom:767.241135px;}
.yd_c00380{bottom:767.597535px;}
.yb_c00380{bottom:799.668585px;}
.ya_c00380{bottom:799.675020px;}
.y9_c00380{bottom:831.744585px;}
.y8_c00380{bottom:855.623385px;}
.y7_c00380{bottom:864.181935px;}
.y6_c00380{bottom:896.614335px;}
.y5_c00380{bottom:927.977535px;}
.y4_c00380{bottom:929.046735px;}
.y2_c00380{bottom:1025.626185px;}
.y3_c00380{bottom:1078.729785px;}
.h8_c00380{height:8.545178px;}
.hd_c00380{height:10.444077px;}
.hc_c00380{height:20.237766px;}
.h2_c00380{height:23.128875px;}
.h5_c00380{height:31.331837px;}
.h7_c00380{height:33.230868px;}
.h19_c00380{height:34.180317px;}
.h10_c00380{height:34.280297px;}
.ha_c00380{height:35.129767px;}
.h15_c00380{height:35.519550px;}
.h12_c00380{height:39.877015px;}
.h1a_c00380{height:41.301563px;}
.he_c00380{height:48.529336px;}
.h17_c00380{height:52.848792px;}
.hf_c00380{height:55.344094px;}
.h14_c00380{height:57.822188px;}
.h9_c00380{height:62.778375px;}
.h16_c00380{height:69.374638px;}
.h18_c00380{height:70.346269px;}
.h11_c00380{height:71.476453px;}
.hb_c00380{height:72.483662px;}
.h4_c00380{height:74.232792px;}
.h6_c00380{height:74.815576px;}
.h3_c00380{height:83.949101px;}
.h13_c00380{height:85.503516px;}
.h1_c00380{height:1110.000000px;}
.h0_c00380{height:1263.000000px;}
.w1_c00380{width:775.500000px;}
.w0_c00380{width:892.500000px;}
.x0_c00380{left:0.000000px;}
.x1_c00380{left:58.500000px;}
.x2_c00380{left:85.082235px;}
.x3d_c00380{left:99.740274px;}
.x5_c00380{left:101.100435px;}
.x61_c00380{left:102.352785px;}
.x80_c00380{left:103.506135px;}
.x72_c00380{left:105.248535px;}
.x59_c00380{left:111.787485px;}
.x24_c00380{left:113.074485px;}
.x5a_c00380{left:123.291285px;}
.x7a_c00380{left:124.533735px;}
.x87_c00380{left:125.899935px;}
.x6b_c00380{left:134.498085px;}
.x3e_c00380{left:135.567285px;}
.x56_c00380{left:137.438385px;}
.x5b_c00380{left:145.239585px;}
.x14_c00380{left:146.491935px;}
.x3f_c00380{left:156.599835px;}
.x6_c00380{left:158.312535px;}
.x50_c00380{left:167.247285px;}
.x25_c00380{left:168.351135px;}
.x6e_c00380{left:177.112635px;}
.x15_c00380{left:178.894635px;}
.x6f_c00380{left:189.393585px;}
.x7_c00380{left:190.774635px;}
.x40_c00380{left:200.308335px;}
.x5c_c00380{left:210.267735px;}
.x34_c00380{left:212.203185px;}
.x6c_c00380{left:214.628685px;}
.x5d_c00380{left:222.905085px;}
.x88_c00380{left:223.924785px;}
.x5e_c00380{left:233.433735px;}
.x26_c00380{left:234.517785px;}
.x41_c00380{left:244.858335px;}
.x35_c00380{left:245.981985px;}
.x16_c00380{left:248.095635px;}
.x7f_c00380{left:256.381935px;}
.x5f_c00380{left:257.416485px;}
.x17_c00380{left:267.563985px;}
.x6d_c00380{left:278.003535px;}
.x8_c00380{left:279.562785px;}
.x57_c00380{left:281.904135px;}
.x7b_c00380{left:286.527435px;}
.x27_c00380{left:289.408335px;}
.x9_c00380{left:291.314085px;}
.x4a_c00380{left:300.243885px;}
.x18_c00380{left:311.074485px;}
.x7d_c00380{left:312.663435px;}
.x28_c00380{left:322.721835px;}
.x36_c00380{left:324.102885px;}
.x58_c00380{left:326.454135px;}
.x29_c00380{left:334.775085px;}
.x37_c00380{left:344.546385px;}
.xa_c00380{left:345.853185px;}
.x42_c00380{left:347.704485px;}
.x70_c00380{left:354.921585px;}
.x2a_c00380{left:355.951185px;}
.x19_c00380{left:356.980785px;}
.x62_c00380{left:358.153935px;}
.x43_c00380{left:365.648235px;}
.x4b_c00380{left:367.034235px;}
.xb_c00380{left:368.242035px;}
.x38_c00380{left:377.053035px;}
.x68_c00380{left:378.468735px;}
.x2b_c00380{left:388.759785px;}
.x1a_c00380{left:389.903235px;}
.x79_c00380{left:400.654635px;}
.x71_c00380{left:401.788185px;}
.x44_c00380{left:403.129635px;}
.x2c_c00380{left:411.594135px;}
.x45_c00380{left:422.479185px;}
.x33_c00380{left:425.444235px;}
.x73_c00380{left:426.523335px;}
.x63_c00380{left:429.453735px;}
.x84_c00380{left:432.601935px;}
.xc_c00380{left:433.859235px;}
.x51_c00380{left:436.091685px;}
.x39_c00380{left:444.085935px;}
.x81_c00380{left:446.867835px;}
.x69_c00380{left:455.569935px;}
.x52_c00380{left:456.822285px;}
.x64_c00380{left:457.965735px;}
.x53_c00380{left:465.351135px;}
.x2d_c00380{left:466.648035px;}
.x4c_c00380{left:477.869685px;}
.x3a_c00380{left:488.566635px;}
.x1b_c00380{left:499.847685px;}
.x1c_c00380{left:511.193085px;}
.x74_c00380{left:513.524535px;}
.x65_c00380{left:521.038635px;}
.x2e_c00380{left:522.191985px;}
.x83_c00380{left:525.058035px;}
.x46_c00380{left:527.414235px;}
.x89_c00380{left:531.691035px;}
.x47_c00380{left:532.963185px;}
.x7e_c00380{left:543.135435px;}
.x1d_c00380{left:544.313535px;}
.x2f_c00380{left:554.505585px;}
.x82_c00380{left:565.192635px;}
.x48_c00380{left:566.469735px;}
.xd_c00380{left:567.771585px;}
.x4f_c00380{left:569.375385px;}
.x6a_c00380{left:577.478535px;}
.x1e_c00380{left:587.492385px;}
.xe_c00380{left:588.517035px;}
.x75_c00380{left:591.095985px;}
.x60_c00380{left:598.545735px;}
.x85_c00380{left:599.570385px;}
.x66_c00380{left:608.678385px;}
.xf_c00380{left:609.851535px;}
.x1f_c00380{left:620.484135px;}
.x76_c00380{left:621.865185px;}
.x7c_c00380{left:624.132285px;}
.x30_c00380{left:626.978535px;}
.x10_c00380{left:632.116635px;}
.x20_c00380{left:637.586385px;}
.x21_c00380{left:642.932385px;}
.x49_c00380{left:645.882585px;}
.x54_c00380{left:653.946135px;}
.x4d_c00380{left:659.737635px;}
.x31_c00380{left:665.182635px;}
.x77_c00380{left:671.969085px;}
.x67_c00380{left:674.973735px;}
.x22_c00380{left:676.829985px;}
.x55_c00380{left:679.859385px;}
.x3_c00380{left:687.937785px;}
.x11_c00380{left:689.675235px;}
.x32_c00380{left:698.931735px;}
.x4_c00380{left:700.416735px;}
.x4e_c00380{left:707.792235px;}
.x12_c00380{left:709.232685px;}
.x78_c00380{left:710.420685px;}
.x23_c00380{left:718.840635px;}
.x3b_c00380{left:720.231585px;}
.x13_c00380{left:731.804685px;}
.x3c_c00380{left:742.496685px;}
.x86_c00380{left:747.525885px;}
.x8a_c00380{left:767.271435px;}
@media print{
.v2_c00380{vertical-align:-19.008000pt;}
.v0_c00380{vertical-align:0.000000pt;}
.v1_c00380{vertical-align:35.464000pt;}
.ls4_c00380{letter-spacing:-2.661126pt;}
.ls6_c00380{letter-spacing:-2.353126pt;}
.lsc_c00380{letter-spacing:-2.297680pt;}
.ls17_c00380{letter-spacing:-1.996796pt;}
.ls1a_c00380{letter-spacing:-1.929563pt;}
.ls13_c00380{letter-spacing:-1.650880pt;}
.ls10_c00380{letter-spacing:-1.447600pt;}
.ls19_c00380{letter-spacing:-1.337920pt;}
.ls1e_c00380{letter-spacing:-1.297581pt;}
.ls18_c00380{letter-spacing:-1.008483pt;}
.ls3_c00380{letter-spacing:0.000000pt;}
.ls2_c00380{letter-spacing:0.248759pt;}
.ls1b_c00380{letter-spacing:0.356331pt;}
.lsd_c00380{letter-spacing:0.524411pt;}
.ls1_c00380{letter-spacing:0.531134pt;}
.lsf_c00380{letter-spacing:0.862400pt;}
.ls12_c00380{letter-spacing:1.324474pt;}
.ls14_c00380{letter-spacing:1.460800pt;}
.ls1c_c00380{letter-spacing:2.052869pt;}
.ls11_c00380{letter-spacing:2.068000pt;}
.ls8_c00380{letter-spacing:2.682564pt;}
.ls0_c00380{letter-spacing:3.105344pt;}
.ls1d_c00380{letter-spacing:3.141609pt;}
.ls1f_c00380{letter-spacing:3.185609pt;}
.ls15_c00380{letter-spacing:3.238400pt;}
.ls5_c00380{letter-spacing:3.361609pt;}
.ls21_c00380{letter-spacing:3.801609pt;}
.lsa_c00380{letter-spacing:11.404976pt;}
.lse_c00380{letter-spacing:13.939376pt;}
.ls7_c00380{letter-spacing:41.817600pt;}
.ls9_c00380{letter-spacing:44.352176pt;}
.ls20_c00380{letter-spacing:45.619376pt;}
.lsb_c00380{letter-spacing:46.886576pt;}
.ls16_c00380{letter-spacing:53.222576pt;}
.ws5_c00380{word-spacing:-17.056803pt;}
.ws0_c00380{word-spacing:-16.808044pt;}
.ws4_c00380{word-spacing:-14.878481pt;}
.ws1_c00380{word-spacing:-14.811248pt;}
.ws2_c00380{word-spacing:-7.085760pt;}
.ws6_c00380{word-spacing:-3.294304pt;}
.ws7_c00380{word-spacing:0.000000pt;}
.ws3_c00380{word-spacing:2.285975pt;}
._13_c00380{margin-left:-16.674328pt;}
._1b_c00380{margin-left:-12.505240pt;}
._16_c00380{margin-left:-10.085612pt;}
._11_c00380{margin-left:-1.951752pt;}
._7_c00380{width:1.277716pt;}
._17_c00380{width:2.649978pt;}
._18_c00380{width:3.697858pt;}
._3_c00380{width:5.378658pt;}
._c_c00380{width:6.656066pt;}
._9_c00380{width:7.664370pt;}
._1_c00380{width:10.421234pt;}
._10_c00380{width:11.496594pt;}
._12_c00380{width:12.976392pt;}
._6_c00380{width:15.059205pt;}
._5_c00380{width:19.228655pt;}
._1a_c00380{width:20.142877pt;}
._e_c00380{width:21.783295pt;}
._d_c00380{width:25.628884pt;}
._4_c00380{width:30.187388pt;}
._8_c00380{width:31.931910pt;}
._1c_c00380{width:33.414029pt;}
._f_c00380{width:34.490070pt;}
._14_c00380{width:36.439832pt;}
._2_c00380{width:38.120441pt;}
._b_c00380{width:40.972952pt;}
._15_c00380{width:41.885795pt;}
._0_c00380{width:48.311912pt;}
._19_c00380{width:60.363776pt;}
._a_c00380{width:251.717312pt;}
.fs7_c00380{font-size:11.404976pt;}
.fsc_c00380{font-size:13.939376pt;}
.fsb_c00380{font-size:17.248000pt;}
.fs0_c00380{font-size:19.712000pt;}
.fs3_c00380{font-size:26.752000pt;}
.fsf_c00380{font-size:29.216000pt;}
.fs14_c00380{font-size:30.272176pt;}
.fs19_c00380{font-size:35.200000pt;}
.fsd_c00380{font-size:41.360000pt;}
.fs16_c00380{font-size:41.536000pt;}
.fs4_c00380{font-size:41.817600pt;}
.fs6_c00380{font-size:44.352176pt;}
.fs18_c00380{font-size:45.619376pt;}
.fs9_c00380{font-size:46.886576pt;}
.fse_c00380{font-size:47.168000pt;}
.fs13_c00380{font-size:49.280000pt;}
.fs11_c00380{font-size:53.222576pt;}
.fs8_c00380{font-size:53.504000pt;}
.fs15_c00380{font-size:62.832176pt;}
.fs17_c00380{font-size:63.712176pt;}
.fs10_c00380{font-size:64.768000pt;}
.fsa_c00380{font-size:65.648000pt;}
.fs2_c00380{font-size:67.232176pt;}
.fs5_c00380{font-size:67.760000pt;}
.fs1_c00380{font-size:76.032176pt;}
.fs12_c00380{font-size:77.440000pt;}
.y0_c00380{bottom:0.000000pt;}
.y1_c00380{bottom:68.000000pt;}
.y2a_c00380{bottom:161.168520pt;}
.y29_c00380{bottom:161.174504pt;}
.y28_c00380{bottom:193.798920pt;}
.y27_c00380{bottom:216.291720pt;}
.y26_c00380{bottom:221.998520pt;}
.y25_c00380{bottom:250.510520pt;}
.y23_c00380{bottom:279.022520pt;}
.y24_c00380{bottom:283.774520pt;}
.y22_c00380{bottom:299.293320pt;}
.y21_c00380{bottom:308.168120pt;}
.y20_c00380{bottom:336.680120pt;}
.y1f_c00380{bottom:365.187720pt;}
.y1e_c00380{bottom:394.020920pt;}
.y1d_c00380{bottom:423.162120pt;}
.y1c_c00380{bottom:451.674120pt;}
.y1b_c00380{bottom:479.552520pt;}
.y1a_c00380{bottom:508.698120pt;}
.y19_c00380{bottom:537.526920pt;}
.y18_c00380{bottom:566.043320pt;}
.y16_c00380{bottom:594.550920pt;}
.y17_c00380{bottom:599.619720pt;}
.y15_c00380{bottom:620.528520pt;}
.y14_c00380{bottom:623.696520pt;}
.y13_c00380{bottom:630.982920pt;}
.y12_c00380{bottom:646.510520pt;}
.y10_c00380{bottom:652.208520pt;}
.y11_c00380{bottom:652.525320pt;}
.yf_c00380{bottom:675.968520pt;}
.ye_c00380{bottom:678.819720pt;}
.yc_c00380{bottom:681.992120pt;}
.yd_c00380{bottom:682.308920pt;}
.yb_c00380{bottom:710.816520pt;}
.ya_c00380{bottom:710.822240pt;}
.y9_c00380{bottom:739.328520pt;}
.y8_c00380{bottom:760.554120pt;}
.y7_c00380{bottom:768.161720pt;}
.y6_c00380{bottom:796.990520pt;}
.y5_c00380{bottom:824.868920pt;}
.y4_c00380{bottom:825.819320pt;}
.y2_c00380{bottom:911.667720pt;}
.y3_c00380{bottom:958.870920pt;}
.h8_c00380{height:7.595714pt;}
.hd_c00380{height:9.283624pt;}
.hc_c00380{height:17.989125pt;}
.h2_c00380{height:20.559000pt;}
.h5_c00380{height:27.850522pt;}
.h7_c00380{height:29.538549pt;}
.h19_c00380{height:30.382504pt;}
.h10_c00380{height:30.471375pt;}
.ha_c00380{height:31.226460pt;}
.h15_c00380{height:31.572934pt;}
.h12_c00380{height:35.446236pt;}
.h1a_c00380{height:36.712500pt;}
.he_c00380{height:43.137188pt;}
.h17_c00380{height:46.976704pt;}
.hf_c00380{height:49.194750pt;}
.h14_c00380{height:51.397500pt;}
.h9_c00380{height:55.803000pt;}
.h16_c00380{height:61.666345pt;}
.h18_c00380{height:62.530016pt;}
.h11_c00380{height:63.534625pt;}
.hb_c00380{height:64.429922pt;}
.h4_c00380{height:65.984704pt;}
.h6_c00380{height:66.502734pt;}
.h3_c00380{height:74.621423pt;}
.h13_c00380{height:76.003125pt;}
.h1_c00380{height:986.666667pt;}
.h0_c00380{height:1122.666667pt;}
.w1_c00380{width:689.333333pt;}
.w0_c00380{width:793.333333pt;}
.x0_c00380{left:0.000000pt;}
.x1_c00380{left:52.000000pt;}
.x2_c00380{left:75.628653pt;}
.x3d_c00380{left:88.658021pt;}
.x5_c00380{left:89.867053pt;}
.x61_c00380{left:90.980253pt;}
.x80_c00380{left:92.005453pt;}
.x72_c00380{left:93.554253pt;}
.x59_c00380{left:99.366653pt;}
.x24_c00380{left:100.510653pt;}
.x5a_c00380{left:109.592253pt;}
.x7a_c00380{left:110.696653pt;}
.x87_c00380{left:111.911053pt;}
.x6b_c00380{left:119.553853pt;}
.x3e_c00380{left:120.504253pt;}
.x56_c00380{left:122.167453pt;}
.x5b_c00380{left:129.101853pt;}
.x14_c00380{left:130.215053pt;}
.x3f_c00380{left:139.199853pt;}
.x6_c00380{left:140.722253pt;}
.x50_c00380{left:148.664253pt;}
.x25_c00380{left:149.645453pt;}
.x6e_c00380{left:157.433453pt;}
.x15_c00380{left:159.017453pt;}
.x6f_c00380{left:168.349853pt;}
.x7_c00380{left:169.577453pt;}
.x40_c00380{left:178.051853pt;}
.x5c_c00380{left:186.904653pt;}
.x34_c00380{left:188.625053pt;}
.x6c_c00380{left:190.781053pt;}
.x5d_c00380{left:198.137853pt;}
.x88_c00380{left:199.044253pt;}
.x5e_c00380{left:207.496653pt;}
.x26_c00380{left:208.460253pt;}
.x41_c00380{left:217.651853pt;}
.x35_c00380{left:218.650653pt;}
.x16_c00380{left:220.529453pt;}
.x7f_c00380{left:227.895053pt;}
.x5f_c00380{left:228.814653pt;}
.x17_c00380{left:237.834653pt;}
.x6d_c00380{left:247.114253pt;}
.x8_c00380{left:248.500253pt;}
.x57_c00380{left:250.581453pt;}
.x7b_c00380{left:254.691053pt;}
.x27_c00380{left:257.251853pt;}
.x9_c00380{left:258.945853pt;}
.x4a_c00380{left:266.883453pt;}
.x18_c00380{left:276.510653pt;}
.x7d_c00380{left:277.923053pt;}
.x28_c00380{left:286.863853pt;}
.x36_c00380{left:288.091453pt;}
.x58_c00380{left:290.181453pt;}
.x29_c00380{left:297.577853pt;}
.x37_c00380{left:306.263453pt;}
.xa_c00380{left:307.425053pt;}
.x42_c00380{left:309.070653pt;}
.x70_c00380{left:315.485853pt;}
.x2a_c00380{left:316.401053pt;}
.x19_c00380{left:317.316253pt;}
.x62_c00380{left:318.359053pt;}
.x43_c00380{left:325.020653pt;}
.x4b_c00380{left:326.252653pt;}
.xb_c00380{left:327.326253pt;}
.x38_c00380{left:335.158253pt;}
.x68_c00380{left:336.416653pt;}
.x2b_c00380{left:345.564253pt;}
.x1a_c00380{left:346.580653pt;}
.x79_c00380{left:356.137453pt;}
.x71_c00380{left:357.145053pt;}
.x44_c00380{left:358.337453pt;}
.x2c_c00380{left:365.861453pt;}
.x45_c00380{left:375.537053pt;}
.x33_c00380{left:378.172653pt;}
.x73_c00380{left:379.131853pt;}
.x63_c00380{left:381.736653pt;}
.x84_c00380{left:384.535053pt;}
.xc_c00380{left:385.652653pt;}
.x51_c00380{left:387.637053pt;}
.x39_c00380{left:394.743053pt;}
.x81_c00380{left:397.215853pt;}
.x69_c00380{left:404.951053pt;}
.x52_c00380{left:406.064253pt;}
.x64_c00380{left:407.080653pt;}
.x53_c00380{left:413.645453pt;}
.x2d_c00380{left:414.798253pt;}
.x4c_c00380{left:424.773053pt;}
.x3a_c00380{left:434.281453pt;}
.x1b_c00380{left:444.309053pt;}
.x1c_c00380{left:454.393853pt;}
.x74_c00380{left:456.466253pt;}
.x65_c00380{left:463.145453pt;}
.x2e_c00380{left:464.170653pt;}
.x83_c00380{left:466.718253pt;}
.x46_c00380{left:468.812653pt;}
.x89_c00380{left:472.614253pt;}
.x47_c00380{left:473.745053pt;}
.x7e_c00380{left:482.787053pt;}
.x1d_c00380{left:483.834253pt;}
.x2f_c00380{left:492.893853pt;}
.x82_c00380{left:502.393453pt;}
.x48_c00380{left:503.528653pt;}
.xd_c00380{left:504.685853pt;}
.x4f_c00380{left:506.111453pt;}
.x6a_c00380{left:513.314253pt;}
.x1e_c00380{left:522.215453pt;}
.xe_c00380{left:523.126253pt;}
.x75_c00380{left:525.418653pt;}
.x60_c00380{left:532.040653pt;}
.x85_c00380{left:532.951453pt;}
.x66_c00380{left:541.047453pt;}
.xf_c00380{left:542.090253pt;}
.x1f_c00380{left:551.541453pt;}
.x76_c00380{left:552.769053pt;}
.x7c_c00380{left:554.784253pt;}
.x30_c00380{left:557.314253pt;}
.x10_c00380{left:561.881453pt;}
.x20_c00380{left:566.743453pt;}
.x21_c00380{left:571.495453pt;}
.x49_c00380{left:574.117853pt;}
.x54_c00380{left:581.285453pt;}
.x4d_c00380{left:586.433453pt;}
.x31_c00380{left:591.273453pt;}
.x77_c00380{left:597.305853pt;}
.x67_c00380{left:599.976653pt;}
.x22_c00380{left:601.626653pt;}
.x55_c00380{left:604.319453pt;}
.x3_c00380{left:611.500253pt;}
.x11_c00380{left:613.044653pt;}
.x32_c00380{left:621.272653pt;}
.x4_c00380{left:622.592653pt;}
.x4e_c00380{left:629.148653pt;}
.x12_c00380{left:630.429053pt;}
.x78_c00380{left:631.485053pt;}
.x23_c00380{left:638.969453pt;}
.x3b_c00380{left:640.205853pt;}
.x13_c00380{left:650.493053pt;}
.x3c_c00380{left:659.997053pt;}
.x86_c00380{left:664.467453pt;}
.x8a_c00380{left:682.019053pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_699aa4686fbc0ae3566506bb.woff2')format("woff");}.ff1_c00381{font-family:ff1_c00381;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00381;src:url('chunks/assets/font_a645742e2ea178a7578119f0.woff2')format("woff");}.ff2_c00381{font-family:ff2_c00381;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00381;src:url('chunks/assets/font_8cf8c06af94c62780ace831b.woff2')format("woff");}.ff3_c00381{font-family:ff3_c00381;line-height:0.666000;font-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_c00381{transform:matrix(0.048612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048612,0.000000,0.000000,0.250000,0,0);}
.mad_c00381{transform:matrix(0.050676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050676,0.000000,0.000000,0.250000,0,0);}
.m57_c00381{transform:matrix(0.065973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065973,0.000000,0.000000,0.250000,0,0);}
.mb8_c00381{transform:matrix(0.067074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.067074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.067074,0.000000,0.000000,0.250000,0,0);}
.mec_c00381{transform:matrix(0.093498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093498,0.000000,0.000000,0.250000,0,0);}
.m1b_c00381{transform:matrix(0.094642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094642,0.000000,0.000000,0.250000,0,0);}
.m50_c00381{transform:matrix(0.104541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104541,0.000000,0.000000,0.250000,0,0);}
.m1c_c00381{transform:matrix(0.133333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133333,0.000000,0.000000,0.250000,0,0);}
.mb9_c00381{transform:matrix(0.134146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134146,0.000000,0.000000,0.250000,0,0);}
.m98_c00381{transform:matrix(0.138889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138889,0.000000,0.000000,0.250000,0,0);}
.m53_c00381{transform:matrix(0.140744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140744,0.000000,0.000000,0.250000,0,0);}
.mf0_c00381{transform:matrix(0.145745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145745,0.000000,0.000000,0.250000,0,0);}
.m64_c00381{transform:matrix(0.148957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148957,0.000000,0.000000,0.250000,0,0);}
.mae_c00381{transform:matrix(0.157658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157658,0.000000,0.000000,0.250000,0,0);}
.m42_c00381{transform:matrix(0.157696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157696,0.000000,0.000000,0.250000,0,0);}
.m96_c00381{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);}
.mb7_c00381{transform:matrix(0.178048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178048,0.000000,0.000000,0.250000,0,0);}
.me_c00381{transform:matrix(0.178892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178892,0.000000,0.000000,0.250000,0,0);}
.m95_c00381{transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);}
.m31_c00381{transform:matrix(0.180623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180623,0.000000,0.000000,0.250000,0,0);}
.mc1_c00381{transform:matrix(0.184106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184106,0.000000,0.000000,0.250000,0,0);}
.m49_c00381{transform:matrix(0.184988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184988,0.000000,0.000000,0.250000,0,0);}
.m7_c00381{transform:matrix(0.185152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185152,0.000000,0.000000,0.250000,0,0);}
.m52_c00381{transform:matrix(0.185365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185365,0.000000,0.000000,0.250000,0,0);}
.mb0_c00381{transform:matrix(0.189188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189188,0.000000,0.000000,0.250000,0,0);}
.mcd_c00381{transform:matrix(0.192649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192649,0.000000,0.000000,0.250000,0,0);}
.m19_c00381{transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);}
.m4e_c00381{transform:matrix(0.199151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199151,0.000000,0.000000,0.250000,0,0);}
.m99_c00381{transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);}
.m1a_c00381{transform:matrix(0.203572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203572,0.000000,0.000000,0.250000,0,0);}
.m5a_c00381{transform:matrix(0.207482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207482,0.000000,0.000000,0.250000,0,0);}
.m58_c00381{transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);}
.maf_c00381{transform:matrix(0.209460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209460,0.000000,0.000000,0.250000,0,0);}
.m18_c00381{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m51_c00381{transform:matrix(0.213879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213879,0.000000,0.000000,0.250000,0,0);}
.m70_c00381{transform:matrix(0.228812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228812,0.000000,0.000000,0.250000,0,0);}
.mb1_c00381{transform:matrix(0.229864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229864,0.000000,0.000000,0.250000,0,0);}
.m68_c00381{transform:matrix(0.232865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232865,0.000000,0.000000,0.250000,0,0);}
.mcc_c00381{transform:matrix(0.234311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234311,0.000000,0.000000,0.250000,0,0);}
.m87_c00381{transform:matrix(0.234706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234706,0.000000,0.000000,0.250000,0,0);}
.m9c_c00381{transform:matrix(0.237790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237790,0.000000,0.000000,0.250000,0,0);}
.m77_c00381{transform:matrix(0.238437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238437,0.000000,0.000000,0.250000,0,0);}
.m82_c00381{transform:matrix(0.241923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241923,0.000000,0.000000,0.250000,0,0);}
.m1_c00381{transform:matrix(0.245356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245356,0.000000,0.000000,0.250000,0,0);}
.m5b_c00381{transform:matrix(0.247256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247256,0.000000,0.000000,0.250000,0,0);}
.md9_c00381{transform:matrix(0.247943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247943,0.000000,0.000000,0.250000,0,0);}
.m0_c00381{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00381{transform:matrix(0.251907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251907,0.000000,0.000000,0.250000,0,0);}
.mcf_c00381{transform:matrix(0.254418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254418,0.000000,0.000000,0.250000,0,0);}
.m34_c00381{transform:matrix(0.258988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258988,0.000000,0.000000,0.250000,0,0);}
.m5c_c00381{transform:matrix(0.259130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259130,0.000000,0.000000,0.250000,0,0);}
.mbf_c00381{transform:matrix(0.260242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260242,0.000000,0.000000,0.250000,0,0);}
.mab_c00381{transform:matrix(0.260328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260328,0.000000,0.000000,0.250000,0,0);}
.m65_c00381{transform:matrix(0.260344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260344,0.000000,0.000000,0.250000,0,0);}
.mea_c00381{transform:matrix(0.262132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262132,0.000000,0.000000,0.250000,0,0);}
.mde_c00381{transform:matrix(0.262405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262405,0.000000,0.000000,0.250000,0,0);}
.m13_c00381{transform:matrix(0.263844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263844,0.000000,0.000000,0.250000,0,0);}
.md5_c00381{transform:matrix(0.264420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264420,0.000000,0.000000,0.250000,0,0);}
.mee_c00381{transform:matrix(0.265297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265297,0.000000,0.000000,0.250000,0,0);}
.m3b_c00381{transform:matrix(0.265498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265498,0.000000,0.000000,0.250000,0,0);}
.mc_c00381{transform:matrix(0.267091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267091,0.000000,0.000000,0.250000,0,0);}
.m1e_c00381{transform:matrix(0.267174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267174,0.000000,0.000000,0.250000,0,0);}
.m45_c00381{transform:matrix(0.267654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267654,0.000000,0.000000,0.250000,0,0);}
.m59_c00381{transform:matrix(0.269719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269719,0.000000,0.000000,0.250000,0,0);}
.m20_c00381{transform:matrix(0.274715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274715,0.000000,0.000000,0.250000,0,0);}
.me0_c00381{transform:matrix(0.277255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277255,0.000000,0.000000,0.250000,0,0);}
.md7_c00381{transform:matrix(0.277447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277447,0.000000,0.000000,0.250000,0,0);}
.mc9_c00381{transform:matrix(0.277518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277518,0.000000,0.000000,0.250000,0,0);}
.m22_c00381{transform:matrix(0.277695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277695,0.000000,0.000000,0.250000,0,0);}
.ma6_c00381{transform:matrix(0.278381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278381,0.000000,0.000000,0.250000,0,0);}
.m17_c00381{transform:matrix(0.279125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279125,0.000000,0.000000,0.250000,0,0);}
.m26_c00381{transform:matrix(0.279126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279126,0.000000,0.000000,0.250000,0,0);}
.m78_c00381{transform:matrix(0.280830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280830,0.000000,0.000000,0.250000,0,0);}
.m47_c00381{transform:matrix(0.281053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281053,0.000000,0.000000,0.250000,0,0);}
.mc0_c00381{transform:matrix(0.281580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281580,0.000000,0.000000,0.250000,0,0);}
.mb3_c00381{transform:matrix(0.281902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281902,0.000000,0.000000,0.250000,0,0);}
.ma8_c00381{transform:matrix(0.282851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282851,0.000000,0.000000,0.250000,0,0);}
.m43_c00381{transform:matrix(0.284110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284110,0.000000,0.000000,0.250000,0,0);}
.m46_c00381{transform:matrix(0.284111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284111,0.000000,0.000000,0.250000,0,0);}
.md8_c00381{transform:matrix(0.284409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284409,0.000000,0.000000,0.250000,0,0);}
.me5_c00381{transform:matrix(0.284704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284704,0.000000,0.000000,0.250000,0,0);}
.m3_c00381{transform:matrix(0.285671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285671,0.000000,0.000000,0.250000,0,0);}
.mf2_c00381{transform:matrix(0.286690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286690,0.000000,0.000000,0.250000,0,0);}
.m93_c00381{transform:matrix(0.286803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286803,0.000000,0.000000,0.250000,0,0);}
.m80_c00381{transform:matrix(0.287249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287249,0.000000,0.000000,0.250000,0,0);}
.mc3_c00381{transform:matrix(0.287755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287755,0.000000,0.000000,0.250000,0,0);}
.m76_c00381{transform:matrix(0.289094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289094,0.000000,0.000000,0.250000,0,0);}
.m2d_c00381{transform:matrix(0.289521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289521,0.000000,0.000000,0.250000,0,0);}
.m3f_c00381{transform:matrix(0.289844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289844,0.000000,0.000000,0.250000,0,0);}
.m9a_c00381{transform:matrix(0.289849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289849,0.000000,0.000000,0.250000,0,0);}
.mb5_c00381{transform:matrix(0.290097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290097,0.000000,0.000000,0.250000,0,0);}
.mce_c00381{transform:matrix(0.290338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290338,0.000000,0.000000,0.250000,0,0);}
.mbb_c00381{transform:matrix(0.290952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290952,0.000000,0.000000,0.250000,0,0);}
.m21_c00381{transform:matrix(0.291589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291589,0.000000,0.000000,0.250000,0,0);}
.m4b_c00381{transform:matrix(0.292385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292385,0.000000,0.000000,0.250000,0,0);}
.md2_c00381{transform:matrix(0.292626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292626,0.000000,0.000000,0.250000,0,0);}
.m73_c00381{transform:matrix(0.294080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294080,0.000000,0.000000,0.250000,0,0);}
.m9_c00381{transform:matrix(0.294509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294509,0.000000,0.000000,0.250000,0,0);}
.m62_c00381{transform:matrix(0.294693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294693,0.000000,0.000000,0.250000,0,0);}
.m40_c00381{transform:matrix(0.295786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295786,0.000000,0.000000,0.250000,0,0);}
.m4_c00381{transform:matrix(0.296352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296352,0.000000,0.000000,0.250000,0,0);}
.m55_c00381{transform:matrix(0.296531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296531,0.000000,0.000000,0.250000,0,0);}
.m5_c00381{transform:matrix(0.298463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298463,0.000000,0.000000,0.250000,0,0);}
.m44_c00381{transform:matrix(0.299119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299119,0.000000,0.000000,0.250000,0,0);}
.m2e_c00381{transform:matrix(0.299276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299276,0.000000,0.000000,0.250000,0,0);}
.md3_c00381{transform:matrix(0.299966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299966,0.000000,0.000000,0.250000,0,0);}
.m27_c00381{transform:matrix(0.300046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300046,0.000000,0.000000,0.250000,0,0);}
.m4d_c00381{transform:matrix(0.301473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301473,0.000000,0.000000,0.250000,0,0);}
.mdd_c00381{transform:matrix(0.301977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301977,0.000000,0.000000,0.250000,0,0);}
.maa_c00381{transform:matrix(0.302548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302548,0.000000,0.000000,0.250000,0,0);}
.mc5_c00381{transform:matrix(0.302998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302998,0.000000,0.000000,0.250000,0,0);}
.m4a_c00381{transform:matrix(0.303691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303691,0.000000,0.000000,0.250000,0,0);}
.m3c_c00381{transform:matrix(0.304048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304048,0.000000,0.000000,0.250000,0,0);}
.m6b_c00381{transform:matrix(0.305090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305090,0.000000,0.000000,0.250000,0,0);}
.m83_c00381{transform:matrix(0.305204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305204,0.000000,0.000000,0.250000,0,0);}
.meb_c00381{transform:matrix(0.305602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305602,0.000000,0.000000,0.250000,0,0);}
.m5d_c00381{transform:matrix(0.306350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306350,0.000000,0.000000,0.250000,0,0);}
.m3a_c00381{transform:matrix(0.306450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306450,0.000000,0.000000,0.250000,0,0);}
.mdc_c00381{transform:matrix(0.307307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307307,0.000000,0.000000,0.250000,0,0);}
.m7f_c00381{transform:matrix(0.308036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308036,0.000000,0.000000,0.250000,0,0);}
.m94_c00381{transform:matrix(0.308351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308351,0.000000,0.000000,0.250000,0,0);}
.m79_c00381{transform:matrix(0.309133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309133,0.000000,0.000000,0.250000,0,0);}
.ma9_c00381{transform:matrix(0.310573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310573,0.000000,0.000000,0.250000,0,0);}
.m54_c00381{transform:matrix(0.310613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310613,0.000000,0.000000,0.250000,0,0);}
.me8_c00381{transform:matrix(0.310622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310622,0.000000,0.000000,0.250000,0,0);}
.mbc_c00381{transform:matrix(0.310934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310934,0.000000,0.000000,0.250000,0,0);}
.m48_c00381{transform:matrix(0.311944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311944,0.000000,0.000000,0.250000,0,0);}
.md4_c00381{transform:matrix(0.312278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312278,0.000000,0.000000,0.250000,0,0);}
.m35_c00381{transform:matrix(0.312396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312396,0.000000,0.000000,0.250000,0,0);}
.m2a_c00381{transform:matrix(0.312668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312668,0.000000,0.000000,0.250000,0,0);}
.ma2_c00381{transform:matrix(0.312832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312832,0.000000,0.000000,0.250000,0,0);}
.m29_c00381{transform:matrix(0.314690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314690,0.000000,0.000000,0.250000,0,0);}
.m1f_c00381{transform:matrix(0.314836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314836,0.000000,0.000000,0.250000,0,0);}
.ma7_c00381{transform:matrix(0.314857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314857,0.000000,0.000000,0.250000,0,0);}
.mc8_c00381{transform:matrix(0.315306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315306,0.000000,0.000000,0.250000,0,0);}
.m7d_c00381{transform:matrix(0.315496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315496,0.000000,0.000000,0.250000,0,0);}
.m90_c00381{transform:matrix(0.315951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315951,0.000000,0.000000,0.250000,0,0);}
.m12_c00381{transform:matrix(0.315978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315978,0.000000,0.000000,0.250000,0,0);}
.m4f_c00381{transform:matrix(0.318191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318191,0.000000,0.000000,0.250000,0,0);}
.me1_c00381{transform:matrix(0.318379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318379,0.000000,0.000000,0.250000,0,0);}
.m81_c00381{transform:matrix(0.318806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318806,0.000000,0.000000,0.250000,0,0);}
.me3_c00381{transform:matrix(0.319462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319462,0.000000,0.000000,0.250000,0,0);}
.m72_c00381{transform:matrix(0.319584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319584,0.000000,0.000000,0.250000,0,0);}
.m24_c00381{transform:matrix(0.320001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320001,0.000000,0.000000,0.250000,0,0);}
.m56_c00381{transform:matrix(0.320227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320227,0.000000,0.000000,0.250000,0,0);}
.m8c_c00381{transform:matrix(0.320582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320582,0.000000,0.000000,0.250000,0,0);}
.m8e_c00381{transform:matrix(0.321769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321769,0.000000,0.000000,0.250000,0,0);}
.ma1_c00381{transform:matrix(0.322149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322149,0.000000,0.000000,0.250000,0,0);}
.mb_c00381{transform:matrix(0.322573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322573,0.000000,0.000000,0.250000,0,0);}
.m16_c00381{transform:matrix(0.324070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324070,0.000000,0.000000,0.250000,0,0);}
.mca_c00381{transform:matrix(0.324839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324839,0.000000,0.000000,0.250000,0,0);}
.m8d_c00381{transform:matrix(0.325702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325702,0.000000,0.000000,0.250000,0,0);}
.m8f_c00381{transform:matrix(0.326498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326498,0.000000,0.000000,0.250000,0,0);}
.mb2_c00381{transform:matrix(0.326632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326632,0.000000,0.000000,0.250000,0,0);}
.m74_c00381{transform:matrix(0.327036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327036,0.000000,0.000000,0.250000,0,0);}
.m41_c00381{transform:matrix(0.327795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327795,0.000000,0.000000,0.250000,0,0);}
.ma0_c00381{transform:matrix(0.328945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328945,0.000000,0.000000,0.250000,0,0);}
.m69_c00381{transform:matrix(0.329220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329220,0.000000,0.000000,0.250000,0,0);}
.m3e_c00381{transform:matrix(0.329473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329473,0.000000,0.000000,0.250000,0,0);}
.m85_c00381{transform:matrix(0.329668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329668,0.000000,0.000000,0.250000,0,0);}
.m71_c00381{transform:matrix(0.330017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330017,0.000000,0.000000,0.250000,0,0);}
.m6f_c00381{transform:matrix(0.332356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332356,0.000000,0.000000,0.250000,0,0);}
.m5f_c00381{transform:matrix(0.333060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333060,0.000000,0.000000,0.250000,0,0);}
.ma5_c00381{transform:matrix(0.333314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333314,0.000000,0.000000,0.250000,0,0);}
.m11_c00381{transform:matrix(0.335244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335244,0.000000,0.000000,0.250000,0,0);}
.m2f_c00381{transform:matrix(0.335272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335272,0.000000,0.000000,0.250000,0,0);}
.m4c_c00381{transform:matrix(0.335905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335905,0.000000,0.000000,0.250000,0,0);}
.md6_c00381{transform:matrix(0.336620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336620,0.000000,0.000000,0.250000,0,0);}
.m6a_c00381{transform:matrix(0.336898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336898,0.000000,0.000000,0.250000,0,0);}
.mbe_c00381{transform:matrix(0.337226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337226,0.000000,0.000000,0.250000,0,0);}
.m7e_c00381{transform:matrix(0.337235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337235,0.000000,0.000000,0.250000,0,0);}
.m63_c00381{transform:matrix(0.337357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337357,0.000000,0.000000,0.250000,0,0);}
.mf_c00381{transform:matrix(0.337609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337609,0.000000,0.000000,0.250000,0,0);}
.me4_c00381{transform:matrix(0.338353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338353,0.000000,0.000000,0.250000,0,0);}
.mbd_c00381{transform:matrix(0.338579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338579,0.000000,0.000000,0.250000,0,0);}
.m6c_c00381{transform:matrix(0.338689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338689,0.000000,0.000000,0.250000,0,0);}
.med_c00381{transform:matrix(0.338802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338802,0.000000,0.000000,0.250000,0,0);}
.m8b_c00381{transform:matrix(0.339668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339668,0.000000,0.000000,0.250000,0,0);}
.m8_c00381{transform:matrix(0.339906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339906,0.000000,0.000000,0.250000,0,0);}
.m75_c00381{transform:matrix(0.340310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340310,0.000000,0.000000,0.250000,0,0);}
.m61_c00381{transform:matrix(0.340571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340571,0.000000,0.000000,0.250000,0,0);}
.md_c00381{transform:matrix(0.340663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340663,0.000000,0.000000,0.250000,0,0);}
.m84_c00381{transform:matrix(0.342223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342223,0.000000,0.000000,0.250000,0,0);}
.m6_c00381{transform:matrix(0.342230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342230,0.000000,0.000000,0.250000,0,0);}
.m7b_c00381{transform:matrix(0.343462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343462,0.000000,0.000000,0.250000,0,0);}
.m88_c00381{transform:matrix(0.343827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343827,0.000000,0.000000,0.250000,0,0);}
.m2c_c00381{transform:matrix(0.344060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344060,0.000000,0.000000,0.250000,0,0);}
.mc7_c00381{transform:matrix(0.344160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344160,0.000000,0.000000,0.250000,0,0);}
.ma3_c00381{transform:matrix(0.344519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344519,0.000000,0.000000,0.250000,0,0);}
.m8a_c00381{transform:matrix(0.345660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345660,0.000000,0.000000,0.250000,0,0);}
.md1_c00381{transform:matrix(0.346611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346611,0.000000,0.000000,0.250000,0,0);}
.m33_c00381{transform:matrix(0.347009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347009,0.000000,0.000000,0.250000,0,0);}
.m1d_c00381{transform:matrix(0.348086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348086,0.000000,0.000000,0.250000,0,0);}
.md0_c00381{transform:matrix(0.350827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350827,0.000000,0.000000,0.250000,0,0);}
.m3d_c00381{transform:matrix(0.351729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351729,0.000000,0.000000,0.250000,0,0);}
.m28_c00381{transform:matrix(0.351812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351812,0.000000,0.000000,0.250000,0,0);}
.mdf_c00381{transform:matrix(0.352096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352096,0.000000,0.000000,0.250000,0,0);}
.me7_c00381{transform:matrix(0.352168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352168,0.000000,0.000000,0.250000,0,0);}
.mdb_c00381{transform:matrix(0.352250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352250,0.000000,0.000000,0.250000,0,0);}
.m23_c00381{transform:matrix(0.352528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352528,0.000000,0.000000,0.250000,0,0);}
.m2b_c00381{transform:matrix(0.353016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353016,0.000000,0.000000,0.250000,0,0);}
.m15_c00381{transform:matrix(0.353158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353158,0.000000,0.000000,0.250000,0,0);}
.mef_c00381{transform:matrix(0.355083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355083,0.000000,0.000000,0.250000,0,0);}
.me6_c00381{transform:matrix(0.355953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355953,0.000000,0.000000,0.250000,0,0);}
.mb6_c00381{transform:matrix(0.356351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356351,0.000000,0.000000,0.250000,0,0);}
.m2_c00381{transform:matrix(0.356483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356483,0.000000,0.000000,0.250000,0,0);}
.m37_c00381{transform:matrix(0.359554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359554,0.000000,0.000000,0.250000,0,0);}
.ma_c00381{transform:matrix(0.361455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361455,0.000000,0.000000,0.250000,0,0);}
.m92_c00381{transform:matrix(0.362074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362074,0.000000,0.000000,0.250000,0,0);}
.mb4_c00381{transform:matrix(0.362882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362882,0.000000,0.000000,0.250000,0,0);}
.m86_c00381{transform:matrix(0.362914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362914,0.000000,0.000000,0.250000,0,0);}
.mc6_c00381{transform:matrix(0.362943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362943,0.000000,0.000000,0.250000,0,0);}
.ma4_c00381{transform:matrix(0.363824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363824,0.000000,0.000000,0.250000,0,0);}
.m9d_c00381{transform:matrix(0.363906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363906,0.000000,0.000000,0.250000,0,0);}
.m67_c00381{transform:matrix(0.365436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365436,0.000000,0.000000,0.250000,0,0);}
.m89_c00381{transform:matrix(0.366091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366091,0.000000,0.000000,0.250000,0,0);}
.m60_c00381{transform:matrix(0.366672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366672,0.000000,0.000000,0.250000,0,0);}
.m38_c00381{transform:matrix(0.367089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367089,0.000000,0.000000,0.250000,0,0);}
.me2_c00381{transform:matrix(0.367806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367806,0.000000,0.000000,0.250000,0,0);}
.m6d_c00381{transform:matrix(0.367835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367835,0.000000,0.000000,0.250000,0,0);}
.m39_c00381{transform:matrix(0.368358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368358,0.000000,0.000000,0.250000,0,0);}
.m10_c00381{transform:matrix(0.369577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369577,0.000000,0.000000,0.250000,0,0);}
.m32_c00381{transform:matrix(0.370404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370404,0.000000,0.000000,0.250000,0,0);}
.m7c_c00381{transform:matrix(0.372847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372847,0.000000,0.000000,0.250000,0,0);}
.m66_c00381{transform:matrix(0.374246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374246,0.000000,0.000000,0.250000,0,0);}
.me9_c00381{transform:matrix(0.374816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374816,0.000000,0.000000,0.250000,0,0);}
.m9b_c00381{transform:matrix(0.376323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376323,0.000000,0.000000,0.250000,0,0);}
.m6e_c00381{transform:matrix(0.376903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376903,0.000000,0.000000,0.250000,0,0);}
.m14_c00381{transform:matrix(0.379318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379318,0.000000,0.000000,0.250000,0,0);}
.m5e_c00381{transform:matrix(0.382942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382942,0.000000,0.000000,0.250000,0,0);}
.mda_c00381{transform:matrix(0.383348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383348,0.000000,0.000000,0.250000,0,0);}
.m36_c00381{transform:matrix(0.383423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383423,0.000000,0.000000,0.250000,0,0);}
.mc2_c00381{transform:matrix(0.390617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390617,0.000000,0.000000,0.250000,0,0);}
.m9e_c00381{transform:matrix(0.393598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393598,0.000000,0.000000,0.250000,0,0);}
.mba_c00381{transform:matrix(0.394036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394036,0.000000,0.000000,0.250000,0,0);}
.m25_c00381{transform:matrix(0.408030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408030,0.000000,0.000000,0.250000,0,0);}
.m91_c00381{transform:matrix(0.408906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408906,0.000000,0.000000,0.250000,0,0);}
.mcb_c00381{transform:matrix(0.418642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418642,0.000000,0.000000,0.250000,0,0);}
.mf1_c00381{transform:matrix(0.429410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429410,0.000000,0.000000,0.250000,0,0);}
.m7a_c00381{transform:matrix(0.432551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432551,0.000000,0.000000,0.250000,0,0);}
.m30_c00381{transform:matrix(0.433277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433277,0.000000,0.000000,0.250000,0,0);}
.mac_c00381{transform:matrix(0.434206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434206,0.000000,0.000000,0.250000,0,0);}
.mc4_c00381{transform:matrix(0.440009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440009,0.000000,0.000000,0.250000,0,0);}
.v0_c00381{vertical-align:0.000000px;}
.ls5_c00381{letter-spacing:-2.990440px;}
.ls7_c00381{letter-spacing:-2.543317px;}
.ls14_c00381{letter-spacing:-2.293830px;}
.lsa_c00381{letter-spacing:-1.983787px;}
.ls1b_c00381{letter-spacing:-1.678589px;}
.ls11_c00381{letter-spacing:-1.496924px;}
.ls18_c00381{letter-spacing:-1.288980px;}
.ls8_c00381{letter-spacing:-0.893794px;}
.ls6_c00381{letter-spacing:0.000000px;}
.ls3_c00381{letter-spacing:0.058133px;}
.ls4_c00381{letter-spacing:0.951927px;}
.ls2_c00381{letter-spacing:1.358858px;}
.ls19_c00381{letter-spacing:1.722600px;}
.lsf_c00381{letter-spacing:1.732500px;}
.lsb_c00381{letter-spacing:2.863048px;}
.ls15_c00381{letter-spacing:2.890810px;}
.ls12_c00381{letter-spacing:2.972047px;}
.ls1_c00381{letter-spacing:3.035795px;}
.lsc_c00381{letter-spacing:3.248179px;}
.lse_c00381{letter-spacing:3.618777px;}
.ls9_c00381{letter-spacing:3.633310px;}
.ls13_c00381{letter-spacing:3.989700px;}
.ls1a_c00381{letter-spacing:4.296610px;}
.ls0_c00381{letter-spacing:19.851018px;}
.lsd_c00381{letter-spacing:49.896198px;}
.ls10_c00381{letter-spacing:51.321798px;}
.ls16_c00381{letter-spacing:52.747398px;}
.ls17_c00381{letter-spacing:58.449798px;}
.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:-18.166550px;}
.ws5_c00381{word-spacing:-16.669626px;}
.ws3_c00381{word-spacing:-2.543459px;}
.ws1_c00381{word-spacing:-0.145249px;}
.ws7_c00381{word-spacing:0.000000px;}
.ws4_c00381{word-spacing:2.326187px;}
.ws6_c00381{word-spacing:4.287387px;}
.ws2_c00381{word-spacing:5.450033px;}
._17_c00381{margin-left:-10.610083px;}
._1b_c00381{margin-left:-9.085763px;}
._1f_c00381{margin-left:-6.845158px;}
._1a_c00381{margin-left:-5.042774px;}
._2_c00381{width:2.279409px;}
._14_c00381{width:3.706065px;}
._3_c00381{width:4.941200px;}
._e_c00381{width:7.193241px;}
._9_c00381{width:8.793488px;}
._5_c00381{width:9.885028px;}
._8_c00381{width:12.062061px;}
._11_c00381{width:13.222969px;}
._b_c00381{width:14.896442px;}
._18_c00381{width:16.204419px;}
._d_c00381{width:20.201291px;}
._6_c00381{width:21.802098px;}
._13_c00381{width:23.256210px;}
._1c_c00381{width:24.437964px;}
._0_c00381{width:25.653434px;}
._21_c00381{width:26.669357px;}
._20_c00381{width:27.831023px;}
._12_c00381{width:29.466149px;}
._4_c00381{width:31.188373px;}
._c_c00381{width:32.409097px;}
._f_c00381{width:34.299799px;}
._1_c00381{width:35.894711px;}
._10_c00381{width:37.956859px;}
._7_c00381{width:39.159953px;}
._1d_c00381{width:41.445245px;}
._19_c00381{width:43.639459px;}
._a_c00381{width:46.723572px;}
._15_c00381{width:47.881047px;}
._16_c00381{width:51.405855px;}
._1e_c00381{width:104.932872px;}
.fc0_c00381{color:transparent;}
.fs14_c00381{font-size:22.374000px;}
.fs1_c00381{font-size:27.720000px;}
.fs15_c00381{font-size:30.294000px;}
.fs13_c00381{font-size:32.076198px;}
.fs10_c00381{font-size:34.452000px;}
.fs5_c00381{font-size:34.650000px;}
.fsf_c00381{font-size:36.828000px;}
.fsc_c00381{font-size:39.600000px;}
.fsb_c00381{font-size:45.144000px;}
.fs4_c00381{font-size:49.896198px;}
.fs11_c00381{font-size:50.688000px;}
.fs7_c00381{font-size:51.321798px;}
.fsd_c00381{font-size:52.747398px;}
.fsa_c00381{font-size:57.816198px;}
.fse_c00381{font-size:58.449798px;}
.fs2_c00381{font-size:61.578000px;}
.fs9_c00381{font-size:65.538000px;}
.fs6_c00381{font-size:71.280000px;}
.fs3_c00381{font-size:72.666198px;}
.fs12_c00381{font-size:79.200000px;}
.fs8_c00381{font-size:79.794000px;}
.fs0_c00381{font-size:85.932198px;}
.y0_c00381{bottom:0.000000px;}
.y28_c00381{bottom:57.292335px;}
.y1_c00381{bottom:76.500000px;}
.y27_c00381{bottom:116.454735px;}
.y26_c00381{bottom:149.956335px;}
.y25_c00381{bottom:151.025535px;}
.y24_c00381{bottom:181.314585px;}
.y23_c00381{bottom:215.172585px;}
.y22_c00381{bottom:247.253535px;}
.y1f_c00381{bottom:279.685935px;}
.y1e_c00381{bottom:280.042335px;}
.y20_c00381{bottom:285.383385px;}
.y21_c00381{bottom:290.021535px;}
.y1d_c00381{bottom:312.113385px;}
.y1c_c00381{bottom:344.189385px;}
.y1b_c00381{bottom:377.334585px;}
.y1a_c00381{bottom:391.590585px;}
.y19_c00381{bottom:409.771935px;}
.y18_c00381{bottom:467.508735px;}
.y17_c00381{bottom:474.631785px;}
.y16_c00381{bottom:483.190335px;}
.y15_c00381{bottom:506.712735px;}
.y14_c00381{bottom:538.432335px;}
.y12_c00381{bottom:571.568625px;}
.y13_c00381{bottom:571.572585px;}
.y11_c00381{bottom:604.722735px;}
.y10_c00381{bottom:637.511535px;}
.yf_c00381{bottom:668.156985px;}
.ye_c00381{bottom:669.582585px;}
.yd_c00381{bottom:702.732735px;}
.yc_c00381{bottom:735.872985px;}
.yb_c00381{bottom:760.108185px;}
.ya_c00381{bottom:767.953935px;}
.y9_c00381{bottom:800.381385px;}
.y7_c00381{bottom:832.813785px;}
.y8_c00381{bottom:837.808335px;}
.y6_c00381{bottom:865.246185px;}
.y5_c00381{bottom:898.752735px;}
.y4_c00381{bottom:932.249385px;}
.y3_c00381{bottom:996.401385px;}
.y2_c00381{bottom:1080.868185px;}
.h15_c00381{height:21.958857px;}
.h3_c00381{height:28.911094px;}
.h16_c00381{height:29.731904px;}
.h14_c00381{height:31.481034px;}
.h5_c00381{height:33.230868px;}
.h8_c00381{height:34.180317px;}
.hf_c00381{height:35.129767px;}
.h12_c00381{height:35.932359px;}
.h6_c00381{height:36.138867px;}
.h11_c00381{height:36.144668px;}
.h10_c00381{height:38.927565px;}
.he_c00381{height:41.301563px;}
.hd_c00381{height:47.083781px;}
.hc_c00381{height:56.743437px;}
.hb_c00381{height:64.321963px;}
.h4_c00381{height:71.317899px;}
.h9_c00381{height:71.333739px;}
.h7_c00381{height:74.342813px;}
.ha_c00381{height:78.313447px;}
.h13_c00381{height:82.603125px;}
.h2_c00381{height:84.337753px;}
.h1_c00381{height:1110.000000px;}
.h0_c00381{height:1263.000000px;}
.w1_c00381{width:775.500000px;}
.w0_c00381{width:892.500000px;}
.x0_c00381{left:0.000000px;}
.x1_c00381{left:58.500000px;}
.x34_c00381{left:104.372385px;}
.x10_c00381{left:106.050435px;}
.x68_c00381{left:107.065185px;}
.x60_c00381{left:119.628285px;}
.x2a_c00381{left:126.464235px;}
.x78_c00381{left:127.533435px;}
.x11_c00381{left:128.998635px;}
.x2b_c00381{left:137.195835px;}
.x20_c00381{left:139.141185px;}
.x5e_c00381{left:147.868035px;}
.x47_c00381{left:149.887635px;}
.x5f_c00381{left:155.243535px;}
.x5c_c00381{left:159.807435px;}
.x4_c00381{left:161.094435px;}
.x72_c00381{left:169.628235px;}
.x38_c00381{left:171.009285px;}
.x21_c00381{left:172.291335px;}
.x69_c00381{left:181.042935px;}
.x2c_c00381{left:182.607135px;}
.x6a_c00381{left:186.027585px;}
.x39_c00381{left:191.690385px;}
.x57_c00381{left:192.957585px;}
.x52_c00381{left:203.654535px;}
.x2d_c00381{left:204.733635px;}
.x3a_c00381{left:215.202885px;}
.x12_c00381{left:216.460185px;}
.x22_c00381{left:226.627485px;}
.x54_c00381{left:229.349985px;}
.x13_c00381{left:237.725385px;}
.x14_c00381{left:249.036135px;}
.x5_c00381{left:260.510235px;}
.x75_c00381{left:270.434985px;}
.x2e_c00381{left:272.177385px;}
.x58_c00381{left:281.483385px;}
.x6_c00381{left:282.785235px;}
.x15_c00381{left:293.125785px;}
.x2f_c00381{left:294.531585px;}
.x16_c00381{left:302.565435px;}
.x59_c00381{left:304.144485px;}
.x48_c00381{left:313.816785px;}
.x35_c00381{left:315.173085px;}
.x3b_c00381{left:326.167035px;}
.x7_c00381{left:327.246135px;}
.x55_c00381{left:336.067035px;}
.x61_c00381{left:337.160985px;}
.x30_c00381{left:338.304435px;}
.x17_c00381{left:348.352935px;}
.x70_c00381{left:351.956535px;}
.x3c_c00381{left:359.416185px;}
.x8_c00381{left:360.821985px;}
.x79_c00381{left:362.366385px;}
.x62_c00381{left:370.776435px;}
.x23_c00381{left:371.870385px;}
.x40_c00381{left:380.617035px;}
.x18_c00381{left:381.661485px;}
.x6c_c00381{left:382.829685px;}
.x51_c00381{left:391.977285px;}
.x49_c00381{left:393.289035px;}
.x5a_c00381{left:395.209635px;}
.x36_c00381{left:404.674035px;}
.x19_c00381{left:414.856185px;}
.x5b_c00381{left:416.158035px;}
.x3d_c00381{left:425.850135px;}
.x4a_c00381{left:435.502635px;}
.x24_c00381{left:437.091585px;}
.x73_c00381{left:440.229885px;}
.x9_c00381{left:447.234135px;}
.x1a_c00381{left:448.778535px;}
.x56_c00381{left:459.049785px;}
.x66_c00381{left:460.227885px;}
.x63_c00381{left:461.524785px;}
.x25_c00381{left:470.528835px;}
.x1b_c00381{left:480.300135px;}
.xa_c00381{left:481.997985px;}
.x4b_c00381{left:492.353385px;}
.x4c_c00381{left:502.149435px;}
.x26_c00381{left:504.292785px;}
.x1c_c00381{left:514.202685px;}
.x6b_c00381{left:516.128235px;}
.x53_c00381{left:524.498685px;}
.x5d_c00381{left:525.518385px;}
.x31_c00381{left:526.825185px;}
.x4d_c00381{left:537.230085px;}
.x32_c00381{left:539.363535px;}
.x3e_c00381{left:547.565685px;}
.xb_c00381{left:558.866535px;}
.x41_c00381{left:570.335685px;}
.x4e_c00381{left:579.141735px;}
.x1d_c00381{left:580.656435px;}
.x3_c00381{left:587.225085px;}
.x3f_c00381{left:590.922735px;}
.xc_c00381{left:592.140435px;}
.x42_c00381{left:601.075185px;}
.x27_c00381{left:603.020535px;}
.x43_c00381{left:605.747985px;}
.x4f_c00381{left:612.608685px;}
.xd_c00381{left:614.192685px;}
.x28_c00381{left:622.266135px;}
.x50_c00381{left:624.904485px;}
.x6d_c00381{left:627.018135px;}
.x67_c00381{left:635.898435px;}
.xe_c00381{left:647.030985px;}
.x77_c00381{left:648.050685px;}
.x29_c00381{left:657.871485px;}
.x64_c00381{left:668.622885px;}
.x37_c00381{left:669.820785px;}
.x1e_c00381{left:680.161335px;}
.x44_c00381{left:690.645435px;}
.x2_c00381{left:691.858185px;}
.xf_c00381{left:701.698785px;}
.x74_c00381{left:703.302585px;}
.x65_c00381{left:710.247435px;}
.x1f_c00381{left:712.747185px;}
.x71_c00381{left:716.038935px;}
.x33_c00381{left:724.671735px;}
.x45_c00381{left:735.061785px;}
.x6e_c00381{left:736.126035px;}
.x46_c00381{left:745.214235px;}
.x76_c00381{left:747.322935px;}
.x6f_c00381{left:758.000085px;}
@media print{
.v0_c00381{vertical-align:0.000000pt;}
.ls5_c00381{letter-spacing:-2.658169pt;}
.ls7_c00381{letter-spacing:-2.260726pt;}
.ls14_c00381{letter-spacing:-2.038960pt;}
.lsa_c00381{letter-spacing:-1.763366pt;}
.ls1b_c00381{letter-spacing:-1.492079pt;}
.ls11_c00381{letter-spacing:-1.330599pt;}
.ls18_c00381{letter-spacing:-1.145760pt;}
.ls8_c00381{letter-spacing:-0.794484pt;}
.ls6_c00381{letter-spacing:0.000000pt;}
.ls3_c00381{letter-spacing:0.051674pt;}
.ls4_c00381{letter-spacing:0.846158pt;}
.ls2_c00381{letter-spacing:1.207874pt;}
.ls19_c00381{letter-spacing:1.531200pt;}
.lsf_c00381{letter-spacing:1.540000pt;}
.lsb_c00381{letter-spacing:2.544932pt;}
.ls15_c00381{letter-spacing:2.569609pt;}
.ls12_c00381{letter-spacing:2.641820pt;}
.ls1_c00381{letter-spacing:2.698485pt;}
.lsc_c00381{letter-spacing:2.887270pt;}
.lse_c00381{letter-spacing:3.216690pt;}
.ls9_c00381{letter-spacing:3.229609pt;}
.ls13_c00381{letter-spacing:3.546400pt;}
.ls1a_c00381{letter-spacing:3.819209pt;}
.ls0_c00381{letter-spacing:17.645349pt;}
.lsd_c00381{letter-spacing:44.352176pt;}
.ls10_c00381{letter-spacing:45.619376pt;}
.ls16_c00381{letter-spacing:46.886576pt;}
.ls17_c00381{letter-spacing:51.955376pt;}
.ws0_c00381{word-spacing:-16.148044pt;}
.ws5_c00381{word-spacing:-14.817445pt;}
.ws3_c00381{word-spacing:-2.260852pt;}
.ws1_c00381{word-spacing:-0.129111pt;}
.ws7_c00381{word-spacing:0.000000pt;}
.ws4_c00381{word-spacing:2.067721pt;}
.ws6_c00381{word-spacing:3.811011pt;}
.ws2_c00381{word-spacing:4.844473pt;}
._17_c00381{margin-left:-9.431185pt;}
._1b_c00381{margin-left:-8.076234pt;}
._1f_c00381{margin-left:-6.084585pt;}
._1a_c00381{margin-left:-4.482466pt;}
._2_c00381{width:2.026142pt;}
._14_c00381{width:3.294280pt;}
._3_c00381{width:4.392178pt;}
._e_c00381{width:6.393992pt;}
._9_c00381{width:7.816434pt;}
._5_c00381{width:8.786692pt;}
._8_c00381{width:10.721832pt;}
._11_c00381{width:11.753750pt;}
._b_c00381{width:13.241282pt;}
._18_c00381{width:14.403928pt;}
._d_c00381{width:17.956703pt;}
._6_c00381{width:19.379643pt;}
._13_c00381{width:20.672187pt;}
._1c_c00381{width:21.722634pt;}
._0_c00381{width:22.803053pt;}
._21_c00381{width:23.706095pt;}
._20_c00381{width:24.738687pt;}
._12_c00381{width:26.192132pt;}
._4_c00381{width:27.722998pt;}
._c_c00381{width:28.808086pt;}
._f_c00381{width:30.488710pt;}
._1_c00381{width:31.906410pt;}
._10_c00381{width:33.739430pt;}
._7_c00381{width:34.808847pt;}
._1d_c00381{width:36.840218pt;}
._19_c00381{width:38.790630pt;}
._a_c00381{width:41.532064pt;}
._15_c00381{width:42.560931pt;}
._16_c00381{width:45.694093pt;}
._1e_c00381{width:93.273664pt;}
.fs14_c00381{font-size:19.888000pt;}
.fs1_c00381{font-size:24.640000pt;}
.fs15_c00381{font-size:26.928000pt;}
.fs13_c00381{font-size:28.512176pt;}
.fs10_c00381{font-size:30.624000pt;}
.fs5_c00381{font-size:30.800000pt;}
.fsf_c00381{font-size:32.736000pt;}
.fsc_c00381{font-size:35.200000pt;}
.fsb_c00381{font-size:40.128000pt;}
.fs4_c00381{font-size:44.352176pt;}
.fs11_c00381{font-size:45.056000pt;}
.fs7_c00381{font-size:45.619376pt;}
.fsd_c00381{font-size:46.886576pt;}
.fsa_c00381{font-size:51.392176pt;}
.fse_c00381{font-size:51.955376pt;}
.fs2_c00381{font-size:54.736000pt;}
.fs9_c00381{font-size:58.256000pt;}
.fs6_c00381{font-size:63.360000pt;}
.fs3_c00381{font-size:64.592176pt;}
.fs12_c00381{font-size:70.400000pt;}
.fs8_c00381{font-size:70.928000pt;}
.fs0_c00381{font-size:76.384176pt;}
.y0_c00381{bottom:0.000000pt;}
.y28_c00381{bottom:50.926520pt;}
.y1_c00381{bottom:68.000000pt;}
.y27_c00381{bottom:103.515320pt;}
.y26_c00381{bottom:133.294520pt;}
.y25_c00381{bottom:134.244920pt;}
.y24_c00381{bottom:161.168520pt;}
.y23_c00381{bottom:191.264520pt;}
.y22_c00381{bottom:219.780920pt;}
.y1f_c00381{bottom:248.609720pt;}
.y1e_c00381{bottom:248.926520pt;}
.y20_c00381{bottom:253.674120pt;}
.y21_c00381{bottom:257.796920pt;}
.y1d_c00381{bottom:277.434120pt;}
.y1c_c00381{bottom:305.946120pt;}
.y1b_c00381{bottom:335.408520pt;}
.y1a_c00381{bottom:348.080520pt;}
.y19_c00381{bottom:364.241720pt;}
.y18_c00381{bottom:415.563320pt;}
.y17_c00381{bottom:421.894920pt;}
.y16_c00381{bottom:429.502520pt;}
.y15_c00381{bottom:450.411320pt;}
.y14_c00381{bottom:478.606520pt;}
.y12_c00381{bottom:508.061000pt;}
.y13_c00381{bottom:508.064520pt;}
.y11_c00381{bottom:537.531320pt;}
.y10_c00381{bottom:566.676920pt;}
.yf_c00381{bottom:593.917320pt;}
.ye_c00381{bottom:595.184520pt;}
.yd_c00381{bottom:624.651320pt;}
.yc_c00381{bottom:654.109320pt;}
.yb_c00381{bottom:675.651720pt;}
.ya_c00381{bottom:682.625720pt;}
.y9_c00381{bottom:711.450120pt;}
.y7_c00381{bottom:740.278920pt;}
.y8_c00381{bottom:744.718520pt;}
.y6_c00381{bottom:769.107720pt;}
.y5_c00381{bottom:798.891320pt;}
.y4_c00381{bottom:828.666120pt;}
.y3_c00381{bottom:885.690120pt;}
.y2_c00381{bottom:960.771720pt;}
.h15_c00381{height:19.518984pt;}
.h3_c00381{height:25.698750pt;}
.h16_c00381{height:26.428359pt;}
.h14_c00381{height:27.983141pt;}
.h5_c00381{height:29.538549pt;}
.h8_c00381{height:30.382504pt;}
.hf_c00381{height:31.226460pt;}
.h12_c00381{height:31.939875pt;}
.h6_c00381{height:32.123438pt;}
.h11_c00381{height:32.128594pt;}
.h10_c00381{height:34.602280pt;}
.he_c00381{height:36.712500pt;}
.hd_c00381{height:41.852250pt;}
.hc_c00381{height:50.438610pt;}
.hb_c00381{height:57.175078pt;}
.h4_c00381{height:63.393688pt;}
.h9_c00381{height:63.407768pt;}
.h7_c00381{height:66.082500pt;}
.ha_c00381{height:69.611953pt;}
.h13_c00381{height:73.425000pt;}
.h2_c00381{height:74.966891pt;}
.h1_c00381{height:986.666667pt;}
.h0_c00381{height:1122.666667pt;}
.w1_c00381{width:689.333333pt;}
.w0_c00381{width:793.333333pt;}
.x0_c00381{left:0.000000pt;}
.x1_c00381{left:52.000000pt;}
.x34_c00381{left:92.775453pt;}
.x10_c00381{left:94.267053pt;}
.x68_c00381{left:95.169053pt;}
.x60_c00381{left:106.336253pt;}
.x2a_c00381{left:112.412653pt;}
.x78_c00381{left:113.363053pt;}
.x11_c00381{left:114.665453pt;}
.x2b_c00381{left:121.951853pt;}
.x20_c00381{left:123.681053pt;}
.x5e_c00381{left:131.438253pt;}
.x47_c00381{left:133.233453pt;}
.x5f_c00381{left:137.994253pt;}
.x5c_c00381{left:142.051053pt;}
.x4_c00381{left:143.195053pt;}
.x72_c00381{left:150.780653pt;}
.x38_c00381{left:152.008253pt;}
.x21_c00381{left:153.147853pt;}
.x69_c00381{left:160.927053pt;}
.x2c_c00381{left:162.317453pt;}
.x6a_c00381{left:165.357853pt;}
.x39_c00381{left:170.391453pt;}
.x57_c00381{left:171.517853pt;}
.x52_c00381{left:181.026253pt;}
.x2d_c00381{left:181.985453pt;}
.x3a_c00381{left:191.291453pt;}
.x12_c00381{left:192.409053pt;}
.x22_c00381{left:201.446653pt;}
.x54_c00381{left:203.866653pt;}
.x13_c00381{left:211.311453pt;}
.x14_c00381{left:221.365453pt;}
.x5_c00381{left:231.564653pt;}
.x75_c00381{left:240.386653pt;}
.x2e_c00381{left:241.935453pt;}
.x58_c00381{left:250.207453pt;}
.x6_c00381{left:251.364653pt;}
.x15_c00381{left:260.556253pt;}
.x2f_c00381{left:261.805853pt;}
.x16_c00381{left:268.947053pt;}
.x59_c00381{left:270.350653pt;}
.x48_c00381{left:278.948253pt;}
.x35_c00381{left:280.153853pt;}
.x3b_c00381{left:289.926253pt;}
.x7_c00381{left:290.885453pt;}
.x55_c00381{left:298.726253pt;}
.x61_c00381{left:299.698653pt;}
.x30_c00381{left:300.715053pt;}
.x17_c00381{left:309.647053pt;}
.x70_c00381{left:312.850253pt;}
.x3c_c00381{left:319.481053pt;}
.x8_c00381{left:320.730653pt;}
.x79_c00381{left:322.103453pt;}
.x62_c00381{left:329.579053pt;}
.x23_c00381{left:330.551453pt;}
.x40_c00381{left:338.326253pt;}
.x18_c00381{left:339.254653pt;}
.x6c_c00381{left:340.293053pt;}
.x51_c00381{left:348.424253pt;}
.x49_c00381{left:349.590253pt;}
.x5a_c00381{left:351.297453pt;}
.x36_c00381{left:359.710253pt;}
.x19_c00381{left:368.761053pt;}
.x5b_c00381{left:369.918253pt;}
.x3d_c00381{left:378.533453pt;}
.x4a_c00381{left:387.113453pt;}
.x24_c00381{left:388.525853pt;}
.x73_c00381{left:391.315453pt;}
.x9_c00381{left:397.541453pt;}
.x1a_c00381{left:398.914253pt;}
.x56_c00381{left:408.044253pt;}
.x66_c00381{left:409.091453pt;}
.x63_c00381{left:410.244253pt;}
.x25_c00381{left:418.247853pt;}
.x1b_c00381{left:426.933453pt;}
.xa_c00381{left:428.442653pt;}
.x4b_c00381{left:437.647453pt;}
.x4c_c00381{left:446.355053pt;}
.x26_c00381{left:448.260253pt;}
.x1c_c00381{left:457.069053pt;}
.x6b_c00381{left:458.780653pt;}
.x53_c00381{left:466.221053pt;}
.x5d_c00381{left:467.127453pt;}
.x31_c00381{left:468.289053pt;}
.x4d_c00381{left:477.537853pt;}
.x32_c00381{left:479.434253pt;}
.x3e_c00381{left:486.725053pt;}
.xb_c00381{left:496.770253pt;}
.x41_c00381{left:506.965053pt;}
.x4e_c00381{left:514.792653pt;}
.x1d_c00381{left:516.139053pt;}
.x3_c00381{left:521.977853pt;}
.x3f_c00381{left:525.264653pt;}
.xc_c00381{left:526.347053pt;}
.x42_c00381{left:534.289053pt;}
.x27_c00381{left:536.018253pt;}
.x43_c00381{left:538.442653pt;}
.x4f_c00381{left:544.541053pt;}
.xd_c00381{left:545.949053pt;}
.x28_c00381{left:553.125453pt;}
.x50_c00381{left:555.470653pt;}
.x6d_c00381{left:557.349453pt;}
.x67_c00381{left:565.243053pt;}
.xe_c00381{left:575.138653pt;}
.x77_c00381{left:576.045053pt;}
.x29_c00381{left:584.774653pt;}
.x64_c00381{left:594.331453pt;}
.x37_c00381{left:595.396253pt;}
.x1e_c00381{left:604.587853pt;}
.x44_c00381{left:613.907053pt;}
.x2_c00381{left:614.985053pt;}
.xf_c00381{left:623.732253pt;}
.x74_c00381{left:625.157853pt;}
.x65_c00381{left:631.331053pt;}
.x1f_c00381{left:633.553053pt;}
.x71_c00381{left:636.479053pt;}
.x33_c00381{left:644.152653pt;}
.x45_c00381{left:653.388253pt;}
.x6e_c00381{left:654.334253pt;}
.x46_c00381{left:662.412653pt;}
.x76_c00381{left:664.287053pt;}
.x6f_c00381{left:673.777853pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_36e9c7e247d131a737cd1c58.woff2')format("woff");}.ff1_c00382{font-family:ff1_c00382;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00382;src:url('chunks/assets/font_5b5c74cf801991bc8ebf21f4.woff2')format("woff");}.ff2_c00382{font-family:ff2_c00382;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00382;src:url('chunks/assets/font_39a1b540037f45e9fe536a6f.woff2')format("woff");}.ff3_c00382{font-family:ff3_c00382;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00382;src:url('chunks/assets/font_2b1d33aeb964bbee9f2793b1.woff2')format("woff");}.ff4_c00382{font-family:ff4_c00382;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m66_c00382{transform:matrix(0.045752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045752,0.000000,0.000000,0.250000,0,0);}
.m53_c00382{transform:matrix(0.058824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.058824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.058824,0.000000,0.000000,0.250000,0,0);}
.m98_c00382{transform:matrix(0.060607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060607,0.000000,0.000000,0.250000,0,0);}
.m35_c00382{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);}
.m52_c00382{transform:matrix(0.088235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088235,0.000000,0.000000,0.250000,0,0);}
.m32_c00382{transform:matrix(0.090626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090626,0.000000,0.000000,0.250000,0,0);}
.m2d_c00382{transform:matrix(0.093567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093567,0.000000,0.000000,0.250000,0,0);}
.m54_c00382{transform:matrix(0.095589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095589,0.000000,0.000000,0.250000,0,0);}
.mce_c00382{transform:matrix(0.098486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098486,0.000000,0.000000,0.250000,0,0);}
.m28_c00382{transform:matrix(0.101685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101685,0.000000,0.000000,0.250000,0,0);}
.ma3_c00382{transform:matrix(0.101728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101728,0.000000,0.000000,0.250000,0,0);}
.m96_c00382{transform:matrix(0.105933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105933,0.000000,0.000000,0.250000,0,0);}
.ma4_c00382{transform:matrix(0.108485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108485,0.000000,0.000000,0.250000,0,0);}
.m9b_c00382{transform:matrix(0.112261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112261,0.000000,0.000000,0.250000,0,0);}
.m56_c00382{transform:matrix(0.120099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120099,0.000000,0.000000,0.250000,0,0);}
.ma1_c00382{transform:matrix(0.125346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125346,0.000000,0.000000,0.250000,0,0);}
.mc0_c00382{transform:matrix(0.128049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128049,0.000000,0.000000,0.250000,0,0);}
.mc1_c00382{transform:matrix(0.134146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134146,0.000000,0.000000,0.250000,0,0);}
.maa_c00382{transform:matrix(0.146993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146993,0.000000,0.000000,0.250000,0,0);}
.m65_c00382{transform:matrix(0.147058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147058,0.000000,0.000000,0.250000,0,0);}
.m5d_c00382{transform:matrix(0.148628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148628,0.000000,0.000000,0.250000,0,0);}
.m97_c00382{transform:matrix(0.151516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151516,0.000000,0.000000,0.250000,0,0);}
.mc2_c00382{transform:matrix(0.158537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158537,0.000000,0.000000,0.250000,0,0);}
.m5c_c00382{transform:matrix(0.159054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159054,0.000000,0.000000,0.250000,0,0);}
.mcf_c00382{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);}
.m83_c00382{transform:matrix(0.166933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166933,0.000000,0.000000,0.250000,0,0);}
.m55_c00382{transform:matrix(0.169118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169118,0.000000,0.000000,0.250000,0,0);}
.mbf_c00382{transform:matrix(0.170731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170731,0.000000,0.000000,0.250000,0,0);}
.m33_c00382{transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);}
.m9a_c00382{transform:matrix(0.176900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176900,0.000000,0.000000,0.250000,0,0);}
.m34_c00382{transform:matrix(0.178125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178125,0.000000,0.000000,0.250000,0,0);}
.m4e_c00382{transform:matrix(0.194424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194424,0.000000,0.000000,0.250000,0,0);}
.m50_c00382{transform:matrix(0.196465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196465,0.000000,0.000000,0.250000,0,0);}
.md0_c00382{transform:matrix(0.202021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202021,0.000000,0.000000,0.250000,0,0);}
.m51_c00382{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);}
.m18_c00382{transform:matrix(0.206696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206696,0.000000,0.000000,0.250000,0,0);}
.ma8_c00382{transform:matrix(0.207520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207520,0.000000,0.000000,0.250000,0,0);}
.m7f_c00382{transform:matrix(0.211671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211671,0.000000,0.000000,0.250000,0,0);}
.m39_c00382{transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);}
.m38_c00382{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00382{transform:matrix(0.222442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222442,0.000000,0.000000,0.250000,0,0);}
.m30_c00382{transform:matrix(0.237574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237574,0.000000,0.000000,0.250000,0,0);}
.mcb_c00382{transform:matrix(0.238763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238763,0.000000,0.000000,0.250000,0,0);}
.mc7_c00382{transform:matrix(0.241075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241075,0.000000,0.000000,0.250000,0,0);}
.mc8_c00382{transform:matrix(0.242678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242678,0.000000,0.000000,0.250000,0,0);}
.m80_c00382{transform:matrix(0.243512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243512,0.000000,0.000000,0.250000,0,0);}
.m89_c00382{transform:matrix(0.244291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244291,0.000000,0.000000,0.250000,0,0);}
.m1_c00382{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m6_c00382{transform:matrix(0.251457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251457,0.000000,0.000000,0.250000,0,0);}
.m7b_c00382{transform:matrix(0.251579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251579,0.000000,0.000000,0.250000,0,0);}
.m40_c00382{transform:matrix(0.255124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255124,0.000000,0.000000,0.250000,0,0);}
.mb8_c00382{transform:matrix(0.258113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258113,0.000000,0.000000,0.250000,0,0);}
.md2_c00382{transform:matrix(0.259861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259861,0.000000,0.000000,0.250000,0,0);}
.m3e_c00382{transform:matrix(0.267274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267274,0.000000,0.000000,0.250000,0,0);}
.m67_c00382{transform:matrix(0.268520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268520,0.000000,0.000000,0.250000,0,0);}
.m8d_c00382{transform:matrix(0.269799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269799,0.000000,0.000000,0.250000,0,0);}
.mc6_c00382{transform:matrix(0.270864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270864,0.000000,0.000000,0.250000,0,0);}
.m84_c00382{transform:matrix(0.271173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271173,0.000000,0.000000,0.250000,0,0);}
.m2b_c00382{transform:matrix(0.272494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272494,0.000000,0.000000,0.250000,0,0);}
.ma7_c00382{transform:matrix(0.274670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274670,0.000000,0.000000,0.250000,0,0);}
.mb2_c00382{transform:matrix(0.274686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274686,0.000000,0.000000,0.250000,0,0);}
.mc_c00382{transform:matrix(0.275530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275530,0.000000,0.000000,0.250000,0,0);}
.m85_c00382{transform:matrix(0.275766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275766,0.000000,0.000000,0.250000,0,0);}
.mb9_c00382{transform:matrix(0.276073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276073,0.000000,0.000000,0.250000,0,0);}
.m60_c00382{transform:matrix(0.276590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276590,0.000000,0.000000,0.250000,0,0);}
.m0_c00382{transform:matrix(0.276848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276848,0.000000,0.000000,0.250000,0,0);}
.mb4_c00382{transform:matrix(0.277044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277044,0.000000,0.000000,0.250000,0,0);}
.m29_c00382{transform:matrix(0.279693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279693,0.000000,0.000000,0.250000,0,0);}
.m5e_c00382{transform:matrix(0.280106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280106,0.000000,0.000000,0.250000,0,0);}
.m3c_c00382{transform:matrix(0.282005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282005,0.000000,0.000000,0.250000,0,0);}
.m20_c00382{transform:matrix(0.282039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282039,0.000000,0.000000,0.250000,0,0);}
.m9_c00382{transform:matrix(0.282226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282226,0.000000,0.000000,0.250000,0,0);}
.mbb_c00382{transform:matrix(0.282971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282971,0.000000,0.000000,0.250000,0,0);}
.m13_c00382{transform:matrix(0.282980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282980,0.000000,0.000000,0.250000,0,0);}
.mb0_c00382{transform:matrix(0.284211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284211,0.000000,0.000000,0.250000,0,0);}
.m71_c00382{transform:matrix(0.284935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284935,0.000000,0.000000,0.250000,0,0);}
.mc4_c00382{transform:matrix(0.285052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285052,0.000000,0.000000,0.250000,0,0);}
.m81_c00382{transform:matrix(0.285470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285470,0.000000,0.000000,0.250000,0,0);}
.m1b_c00382{transform:matrix(0.286107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286107,0.000000,0.000000,0.250000,0,0);}
.m6b_c00382{transform:matrix(0.286195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286195,0.000000,0.000000,0.250000,0,0);}
.mb7_c00382{transform:matrix(0.286438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286438,0.000000,0.000000,0.250000,0,0);}
.m7_c00382{transform:matrix(0.287317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287317,0.000000,0.000000,0.250000,0,0);}
.m4_c00382{transform:matrix(0.287805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287805,0.000000,0.000000,0.250000,0,0);}
.m27_c00382{transform:matrix(0.288034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288034,0.000000,0.000000,0.250000,0,0);}
.m1f_c00382{transform:matrix(0.288714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288714,0.000000,0.000000,0.250000,0,0);}
.ma5_c00382{transform:matrix(0.290222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290222,0.000000,0.000000,0.250000,0,0);}
.ma2_c00382{transform:matrix(0.291216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291216,0.000000,0.000000,0.250000,0,0);}
.m7e_c00382{transform:matrix(0.292256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292256,0.000000,0.000000,0.250000,0,0);}
.m59_c00382{transform:matrix(0.292300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292300,0.000000,0.000000,0.250000,0,0);}
.m44_c00382{transform:matrix(0.293087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293087,0.000000,0.000000,0.250000,0,0);}
.m69_c00382{transform:matrix(0.294104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294104,0.000000,0.000000,0.250000,0,0);}
.m41_c00382{transform:matrix(0.295555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295555,0.000000,0.000000,0.250000,0,0);}
.mad_c00382{transform:matrix(0.295617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295617,0.000000,0.000000,0.250000,0,0);}
.m22_c00382{transform:matrix(0.295672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295672,0.000000,0.000000,0.250000,0,0);}
.me_c00382{transform:matrix(0.296160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296160,0.000000,0.000000,0.250000,0,0);}
.mab_c00382{transform:matrix(0.296324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296324,0.000000,0.000000,0.250000,0,0);}
.m95_c00382{transform:matrix(0.296968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296968,0.000000,0.000000,0.250000,0,0);}
.m77_c00382{transform:matrix(0.297112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297112,0.000000,0.000000,0.250000,0,0);}
.m8f_c00382{transform:matrix(0.297713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297713,0.000000,0.000000,0.250000,0,0);}
.mf_c00382{transform:matrix(0.298489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298489,0.000000,0.000000,0.250000,0,0);}
.m5f_c00382{transform:matrix(0.298548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298548,0.000000,0.000000,0.250000,0,0);}
.m4a_c00382{transform:matrix(0.298577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298577,0.000000,0.000000,0.250000,0,0);}
.m42_c00382{transform:matrix(0.299105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299105,0.000000,0.000000,0.250000,0,0);}
.m46_c00382{transform:matrix(0.299550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299550,0.000000,0.000000,0.250000,0,0);}
.mcc_c00382{transform:matrix(0.299871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299871,0.000000,0.000000,0.250000,0,0);}
.m93_c00382{transform:matrix(0.299987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299987,0.000000,0.000000,0.250000,0,0);}
.m79_c00382{transform:matrix(0.302256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302256,0.000000,0.000000,0.250000,0,0);}
.md4_c00382{transform:matrix(0.302453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302453,0.000000,0.000000,0.250000,0,0);}
.m7d_c00382{transform:matrix(0.302585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302585,0.000000,0.000000,0.250000,0,0);}
.m37_c00382{transform:matrix(0.303036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303036,0.000000,0.000000,0.250000,0,0);}
.m99_c00382{transform:matrix(0.304402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304402,0.000000,0.000000,0.250000,0,0);}
.m17_c00382{transform:matrix(0.304423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304423,0.000000,0.000000,0.250000,0,0);}
.m2f_c00382{transform:matrix(0.305969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305969,0.000000,0.000000,0.250000,0,0);}
.mac_c00382{transform:matrix(0.306199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306199,0.000000,0.000000,0.250000,0,0);}
.m23_c00382{transform:matrix(0.306414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306414,0.000000,0.000000,0.250000,0,0);}
.m92_c00382{transform:matrix(0.306743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306743,0.000000,0.000000,0.250000,0,0);}
.m90_c00382{transform:matrix(0.307664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307664,0.000000,0.000000,0.250000,0,0);}
.m31_c00382{transform:matrix(0.307960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307960,0.000000,0.000000,0.250000,0,0);}
.m8b_c00382{transform:matrix(0.307989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307989,0.000000,0.000000,0.250000,0,0);}
.ma9_c00382{transform:matrix(0.308023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308023,0.000000,0.000000,0.250000,0,0);}
.m57_c00382{transform:matrix(0.308039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308039,0.000000,0.000000,0.250000,0,0);}
.m88_c00382{transform:matrix(0.308295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308295,0.000000,0.000000,0.250000,0,0);}
.m74_c00382{transform:matrix(0.308763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308763,0.000000,0.000000,0.250000,0,0);}
.m2a_c00382{transform:matrix(0.309514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309514,0.000000,0.000000,0.250000,0,0);}
.m6a_c00382{transform:matrix(0.309748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309748,0.000000,0.000000,0.250000,0,0);}
.m5_c00382{transform:matrix(0.310175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310175,0.000000,0.000000,0.250000,0,0);}
.m9d_c00382{transform:matrix(0.310178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310178,0.000000,0.000000,0.250000,0,0);}
.md3_c00382{transform:matrix(0.310464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310464,0.000000,0.000000,0.250000,0,0);}
.ma0_c00382{transform:matrix(0.310678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310678,0.000000,0.000000,0.250000,0,0);}
.m68_c00382{transform:matrix(0.311260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311260,0.000000,0.000000,0.250000,0,0);}
.mb_c00382{transform:matrix(0.311715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311715,0.000000,0.000000,0.250000,0,0);}
.m49_c00382{transform:matrix(0.312175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312175,0.000000,0.000000,0.250000,0,0);}
.m6e_c00382{transform:matrix(0.312728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312728,0.000000,0.000000,0.250000,0,0);}
.mbd_c00382{transform:matrix(0.312956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312956,0.000000,0.000000,0.250000,0,0);}
.m76_c00382{transform:matrix(0.314577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314577,0.000000,0.000000,0.250000,0,0);}
.m1d_c00382{transform:matrix(0.315714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315714,0.000000,0.000000,0.250000,0,0);}
.m16_c00382{transform:matrix(0.315753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315753,0.000000,0.000000,0.250000,0,0);}
.m24_c00382{transform:matrix(0.316456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316456,0.000000,0.000000,0.250000,0,0);}
.m4d_c00382{transform:matrix(0.316644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316644,0.000000,0.000000,0.250000,0,0);}
.m48_c00382{transform:matrix(0.316914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316914,0.000000,0.000000,0.250000,0,0);}
.ma6_c00382{transform:matrix(0.317757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317757,0.000000,0.000000,0.250000,0,0);}
.m8a_c00382{transform:matrix(0.318496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318496,0.000000,0.000000,0.250000,0,0);}
.m4c_c00382{transform:matrix(0.319036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319036,0.000000,0.000000,0.250000,0,0);}
.m6c_c00382{transform:matrix(0.319207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319207,0.000000,0.000000,0.250000,0,0);}
.m86_c00382{transform:matrix(0.319968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319968,0.000000,0.000000,0.250000,0,0);}
.m47_c00382{transform:matrix(0.320488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320488,0.000000,0.000000,0.250000,0,0);}
.m7c_c00382{transform:matrix(0.320562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320562,0.000000,0.000000,0.250000,0,0);}
.m4f_c00382{transform:matrix(0.321648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321648,0.000000,0.000000,0.250000,0,0);}
.mca_c00382{transform:matrix(0.322191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322191,0.000000,0.000000,0.250000,0,0);}
.mae_c00382{transform:matrix(0.325010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325010,0.000000,0.000000,0.250000,0,0);}
.m63_c00382{transform:matrix(0.325229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325229,0.000000,0.000000,0.250000,0,0);}
.mb6_c00382{transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);}
.m70_c00382{transform:matrix(0.328253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328253,0.000000,0.000000,0.250000,0,0);}
.m19_c00382{transform:matrix(0.328527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328527,0.000000,0.000000,0.250000,0,0);}
.mbe_c00382{transform:matrix(0.328981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328981,0.000000,0.000000,0.250000,0,0);}
.mc3_c00382{transform:matrix(0.330170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330170,0.000000,0.000000,0.250000,0,0);}
.m8_c00382{transform:matrix(0.330776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330776,0.000000,0.000000,0.250000,0,0);}
.md_c00382{transform:matrix(0.330814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330814,0.000000,0.000000,0.250000,0,0);}
.m26_c00382{transform:matrix(0.331484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331484,0.000000,0.000000,0.250000,0,0);}
.m87_c00382{transform:matrix(0.331978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331978,0.000000,0.000000,0.250000,0,0);}
.md6_c00382{transform:matrix(0.332602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332602,0.000000,0.000000,0.250000,0,0);}
.md5_c00382{transform:matrix(0.333267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333267,0.000000,0.000000,0.250000,0,0);}
.mb5_c00382{transform:matrix(0.334093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334093,0.000000,0.000000,0.250000,0,0);}
.mcd_c00382{transform:matrix(0.335641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335641,0.000000,0.000000,0.250000,0,0);}
.m82_c00382{transform:matrix(0.335944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335944,0.000000,0.000000,0.250000,0,0);}
.m73_c00382{transform:matrix(0.336370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336370,0.000000,0.000000,0.250000,0,0);}
.m36_c00382{transform:matrix(0.336786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336786,0.000000,0.000000,0.250000,0,0);}
.m9c_c00382{transform:matrix(0.336833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336833,0.000000,0.000000,0.250000,0,0);}
.m72_c00382{transform:matrix(0.337560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337560,0.000000,0.000000,0.250000,0,0);}
.m5b_c00382{transform:matrix(0.337585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337585,0.000000,0.000000,0.250000,0,0);}
.m45_c00382{transform:matrix(0.337918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337918,0.000000,0.000000,0.250000,0,0);}
.m78_c00382{transform:matrix(0.338009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338009,0.000000,0.000000,0.250000,0,0);}
.m5a_c00382{transform:matrix(0.338329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338329,0.000000,0.000000,0.250000,0,0);}
.m6d_c00382{transform:matrix(0.340282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340282,0.000000,0.000000,0.250000,0,0);}
.m64_c00382{transform:matrix(0.342951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342951,0.000000,0.000000,0.250000,0,0);}
.m94_c00382{transform:matrix(0.344776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344776,0.000000,0.000000,0.250000,0,0);}
.m1a_c00382{transform:matrix(0.344904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344904,0.000000,0.000000,0.250000,0,0);}
.mc5_c00382{transform:matrix(0.345369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345369,0.000000,0.000000,0.250000,0,0);}
.m9e_c00382{transform:matrix(0.349373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349373,0.000000,0.000000,0.250000,0,0);}
.mc9_c00382{transform:matrix(0.349720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349720,0.000000,0.000000,0.250000,0,0);}
.m43_c00382{transform:matrix(0.352818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352818,0.000000,0.000000,0.250000,0,0);}
.m3_c00382{transform:matrix(0.352949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352949,0.000000,0.000000,0.250000,0,0);}
.m8e_c00382{transform:matrix(0.355299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355299,0.000000,0.000000,0.250000,0,0);}
.m3f_c00382{transform:matrix(0.355787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355787,0.000000,0.000000,0.250000,0,0);}
.m2_c00382{transform:matrix(0.356507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356507,0.000000,0.000000,0.250000,0,0);}
.maf_c00382{transform:matrix(0.357776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357776,0.000000,0.000000,0.250000,0,0);}
.m11_c00382{transform:matrix(0.357892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357892,0.000000,0.000000,0.250000,0,0);}
.m8c_c00382{transform:matrix(0.360869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360869,0.000000,0.000000,0.250000,0,0);}
.md1_c00382{transform:matrix(0.360929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360929,0.000000,0.000000,0.250000,0,0);}
.mbc_c00382{transform:matrix(0.360973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360973,0.000000,0.000000,0.250000,0,0);}
.m2e_c00382{transform:matrix(0.361205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361205,0.000000,0.000000,0.250000,0,0);}
.m1e_c00382{transform:matrix(0.364520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364520,0.000000,0.000000,0.250000,0,0);}
.m14_c00382{transform:matrix(0.365998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365998,0.000000,0.000000,0.250000,0,0);}
.m12_c00382{transform:matrix(0.366400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366400,0.000000,0.000000,0.250000,0,0);}
.m58_c00382{transform:matrix(0.368470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368470,0.000000,0.000000,0.250000,0,0);}
.m61_c00382{transform:matrix(0.368933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368933,0.000000,0.000000,0.250000,0,0);}
.m1c_c00382{transform:matrix(0.369210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369210,0.000000,0.000000,0.250000,0,0);}
.mba_c00382{transform:matrix(0.369556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369556,0.000000,0.000000,0.250000,0,0);}
.m4b_c00382{transform:matrix(0.370565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370565,0.000000,0.000000,0.250000,0,0);}
.m9f_c00382{transform:matrix(0.374682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374682,0.000000,0.000000,0.250000,0,0);}
.m3a_c00382{transform:matrix(0.375989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375989,0.000000,0.000000,0.250000,0,0);}
.m7a_c00382{transform:matrix(0.377232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377232,0.000000,0.000000,0.250000,0,0);}
.m15_c00382{transform:matrix(0.378047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378047,0.000000,0.000000,0.250000,0,0);}
.m25_c00382{transform:matrix(0.378867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378867,0.000000,0.000000,0.250000,0,0);}
.m62_c00382{transform:matrix(0.379604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379604,0.000000,0.000000,0.250000,0,0);}
.mb1_c00382{transform:matrix(0.379998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379998,0.000000,0.000000,0.250000,0,0);}
.m10_c00382{transform:matrix(0.381521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381521,0.000000,0.000000,0.250000,0,0);}
.m3d_c00382{transform:matrix(0.381898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381898,0.000000,0.000000,0.250000,0,0);}
.ma_c00382{transform:matrix(0.382109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382109,0.000000,0.000000,0.250000,0,0);}
.m75_c00382{transform:matrix(0.383917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383917,0.000000,0.000000,0.250000,0,0);}
.m21_c00382{transform:matrix(0.388697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388697,0.000000,0.000000,0.250000,0,0);}
.m6f_c00382{transform:matrix(0.393743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393743,0.000000,0.000000,0.250000,0,0);}
.m2c_c00382{transform:matrix(0.407016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407016,0.000000,0.000000,0.250000,0,0);}
.m91_c00382{transform:matrix(0.446086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446086,0.000000,0.000000,0.250000,0,0);}
.m3b_c00382{transform:matrix(0.464508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464508,0.000000,0.000000,0.250000,0,0);}
.v1_c00382{vertical-align:-1.433520px;}
.v0_c00382{vertical-align:0.000000px;}
.ls7_c00382{letter-spacing:-2.508667px;}
.ls10_c00382{letter-spacing:-2.100113px;}
.ls11_c00382{letter-spacing:-1.978263px;}
.lse_c00382{letter-spacing:-1.512368px;}
.ls14_c00382{letter-spacing:-1.129590px;}
.ls3_c00382{letter-spacing:0.000000px;}
.ls6_c00382{letter-spacing:1.168322px;}
.ls18_c00382{letter-spacing:1.207800px;}
.ls1_c00382{letter-spacing:1.935257px;}
.ls13_c00382{letter-spacing:2.752366px;}
.lsb_c00382{letter-spacing:3.060574px;}
.ls5_c00382{letter-spacing:3.132250px;}
.lsf_c00382{letter-spacing:3.276900px;}
.ls0_c00382{letter-spacing:3.375949px;}
.ls16_c00382{letter-spacing:3.484810px;}
.lsa_c00382{letter-spacing:3.573900px;}
.ls4_c00382{letter-spacing:3.583810px;}
.ls17_c00382{letter-spacing:3.643200px;}
.ls2_c00382{letter-spacing:4.346110px;}
.ls12_c00382{letter-spacing:47.044800px;}
.lsc_c00382{letter-spacing:48.470598px;}
.ls9_c00382{letter-spacing:49.896198px;}
.ls8_c00382{letter-spacing:57.024198px;}
.ls15_c00382{letter-spacing:58.449798px;}
.lsd_c00382{letter-spacing:72.705798px;}
.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;}
}
.ws5_c00382{word-spacing:-21.294998px;}
.ws7_c00382{word-spacing:-19.854307px;}
.ws0_c00382{word-spacing:-17.919050px;}
.ws2_c00382{word-spacing:-16.406682px;}
.ws6_c00382{word-spacing:-2.580275px;}
.ws4_c00382{word-spacing:-1.218629px;}
.ws8_c00382{word-spacing:0.000000px;}
.ws1_c00382{word-spacing:4.586357px;}
.ws3_c00382{word-spacing:6.019877px;}
._4_c00382{margin-left:-16.270551px;}
._17_c00382{margin-left:-11.240812px;}
._12_c00382{margin-left:-8.689830px;}
._9_c00382{margin-left:-5.447266px;}
._f_c00382{margin-left:-3.583850px;}
._16_c00382{margin-left:-1.505251px;}
._13_c00382{width:1.505267px;}
._d_c00382{width:4.443824px;}
._6_c00382{width:8.061768px;}
._8_c00382{width:9.533018px;}
._3_c00382{width:10.679834px;}
._0_c00382{width:13.403511px;}
._15_c00382{width:21.359354px;}
._2_c00382{width:22.721435px;}
._11_c00382{width:24.154955px;}
._10_c00382{width:25.769359px;}
._19_c00382{width:27.953783px;}
._b_c00382{width:31.647589px;}
._14_c00382{width:35.981451px;}
._1_c00382{width:37.271581px;}
._7_c00382{width:38.646432px;}
._e_c00382{width:40.067549px;}
._a_c00382{width:44.295839px;}
._18_c00382{width:47.306419px;}
._c_c00382{width:56.152101px;}
._5_c00382{width:319.417560px;}
.fc0_c00382{color:transparent;}
.fs8_c00382{font-size:22.176000px;}
.fs16_c00382{font-size:24.156000px;}
.fse_c00382{font-size:27.720000px;}
.fs17_c00382{font-size:30.888000px;}
.fs12_c00382{font-size:32.274000px;}
.fs3_c00382{font-size:34.848000px;}
.fs6_c00382{font-size:45.144000px;}
.fs11_c00382{font-size:47.044800px;}
.fsb_c00382{font-size:48.470598px;}
.fs7_c00382{font-size:49.896198px;}
.fs5_c00382{font-size:57.024198px;}
.fs13_c00382{font-size:58.449798px;}
.fs10_c00382{font-size:60.192000px;}
.fsd_c00382{font-size:64.548000px;}
.fsf_c00382{font-size:65.538000px;}
.fs4_c00382{font-size:68.904000px;}
.fs14_c00382{font-size:69.696198px;}
.fs2_c00382{font-size:70.884000px;}
.fs9_c00382{font-size:71.478000px;}
.fs1_c00382{font-size:71.676198px;}
.fsc_c00382{font-size:72.705798px;}
.fs15_c00382{font-size:72.864000px;}
.fsa_c00382{font-size:78.012198px;}
.fs0_c00382{font-size:86.922198px;}
.y0_c00382{bottom:0.000000px;}
.y28_c00382{bottom:0.271305px;}
.y27_c00382{bottom:19.508985px;}
.y26_c00382{bottom:24.142185px;}
.y1_c00382{bottom:76.500000px;}
.y25_c00382{bottom:141.759135px;}
.y24_c00382{bottom:146.030985px;}
.y23_c00382{bottom:146.387385px;}
.y22_c00382{bottom:176.686335px;}
.y21_c00382{bottom:213.395535px;}
.y20_c00382{bottom:245.827935px;}
.y1f_c00382{bottom:277.898985px;}
.y1e_c00382{bottom:309.974985px;}
.y1d_c00382{bottom:335.284335px;}
.y1c_c00382{bottom:342.407385px;}
.y1b_c00382{bottom:375.196185px;}
.y1a_c00382{bottom:407.628585px;}
.y17_c00382{bottom:472.141935px;}
.y19_c00382{bottom:474.631785px;}
.y18_c00382{bottom:480.690585px;}
.y16_c00382{bottom:504.574335px;}
.y15_c00382{bottom:536.293935px;}
.y13_c00382{bottom:569.081745px;}
.y14_c00382{bottom:569.082735px;}
.y12_c00382{bottom:601.515135px;}
.y11_c00382{bottom:633.586185px;}
.y10_c00382{bottom:666.374985px;}
.yf_c00382{bottom:695.956185px;}
.ye_c00382{bottom:763.320735px;}
.yd_c00382{bottom:794.683935px;}
.yb_c00382{bottom:795.748185px;}
.ya_c00382{bottom:796.465935px;}
.y9_c00382{bottom:796.817385px;}
.yc_c00382{bottom:807.509385px;}
.y8_c00382{bottom:822.839535px;}
.y7_c00382{bottom:828.180585px;}
.y6_c00382{bottom:828.898335px;}
.y5_c00382{bottom:860.617935px;}
.y4_c00382{bottom:895.545135px;}
.y3_c00382{bottom:927.264735px;}
.y2_c00382{bottom:1077.304185px;}
.h9_c00382{height:23.128875px;}
.h17_c00382{height:23.707793px;}
.hf_c00382{height:28.911094px;}
.h12_c00382{height:31.331837px;}
.h13_c00382{height:31.675166px;}
.h18_c00382{height:32.215219px;}
.hc_c00382{height:32.281418px;}
.h8_c00382{height:33.230868px;}
.h5_c00382{height:34.201406px;}
.h6_c00382{height:37.978116px;}
.h14_c00382{height:38.927565px;}
.h7_c00382{height:47.083781px;}
.hd_c00382{height:48.422061px;}
.h11_c00382{height:62.778375px;}
.he_c00382{height:67.321547px;}
.h10_c00382{height:68.354086px;}
.h15_c00382{height:68.403007px;}
.h4_c00382{height:69.568770px;}
.h3_c00382{height:70.346269px;}
.h16_c00382{height:71.512031px;}
.ha_c00382{height:72.036422px;}
.hb_c00382{height:76.564706px;}
.h2_c00382{height:85.309384px;}
.h1_c00382{height:1110.000000px;}
.h0_c00382{height:1263.000000px;}
.w1_c00382{width:775.500000px;}
.w0_c00382{width:892.500000px;}
.x0_c00382{left:0.000000px;}
.x1_c00382{left:58.500000px;}
.x1f_c00382{left:90.844035px;}
.x4_c00382{left:91.893435px;}
.x2c_c00382{left:93.140835px;}
.x78_c00382{left:94.551585px;}
.x5d_c00382{left:102.016185px;}
.x97_c00382{left:103.342785px;}
.x86_c00382{left:112.747785px;}
.x20_c00382{left:124.033785px;}
.x35_c00382{left:134.814885px;}
.x5e_c00382{left:141.546885px;}
.x42_c00382{left:144.308985px;}
.x2d_c00382{left:145.888035px;}
.x79_c00382{left:154.629735px;}
.x7f_c00382{left:155.901885px;}
.x5_c00382{left:157.327485px;}
.x99_c00382{left:158.787735px;}
.x43_c00382{left:166.638435px;}
.x15_c00382{left:169.058985px;}
.x6c_c00382{left:177.226485px;}
.x55_c00382{left:178.290735px;}
.x6_c00382{left:179.602485px;}
.x87_c00382{left:187.878885px;}
.x21_c00382{left:189.106485px;}
.x5f_c00382{left:199.684635px;}
.x3e_c00382{left:200.793435px;}
.x22_c00382{left:202.456635px;}
.x73_c00382{left:210.287535px;}
.x16_c00382{left:211.658685px;}
.x36_c00382{left:217.796685px;}
.x4c_c00382{left:222.474435px;}
.x7_c00382{left:223.756485px;}
.x60_c00382{left:229.448985px;}
.x66_c00382{left:233.631735px;}
.x8_c00382{left:234.636585px;}
.x88_c00382{left:239.848935px;}
.x80_c00382{left:243.011985px;}
.x37_c00382{left:245.145435px;}
.x8d_c00382{left:249.065835px;}
.x89_c00382{left:254.763285px;}
.x56_c00382{left:256.243335px;}
.x17_c00382{left:257.475885px;}
.x44_c00382{left:264.767235px;}
.x57_c00382{left:266.930385px;}
.x3f_c00382{left:268.123335px;}
.x2e_c00382{left:270.915135px;}
.x4d_c00382{left:277.751085px;}
.x23_c00382{left:279.043035px;}
.x58_c00382{left:280.478535px;}
.x7a_c00382{left:287.561985px;}
.x45_c00382{left:288.839085px;}
.x8e_c00382{left:293.645535px;}
.x74_c00382{left:299.516235px;}
.x67_c00382{left:304.347435px;}
.x46_c00382{left:310.005285px;}
.x9_c00382{left:312.361485px;}
.x61_c00382{left:321.053685px;}
.xa_c00382{left:322.850535px;}
.x18_c00382{left:324.385035px;}
.x8a_c00382{left:332.121885px;}
.x93_c00382{left:333.171285px;}
.x40_c00382{left:334.349385px;}
.x38_c00382{left:336.873885px;}
.x68_c00382{left:343.581135px;}
.x75_c00382{left:344.754285px;}
.x24_c00382{left:346.536285px;}
.x59_c00382{left:347.684685px;}
.x47_c00382{left:354.906735px;}
.x19_c00382{left:356.441235px;}
.xb_c00382{left:366.677835px;}
.x39_c00382{left:377.622285px;}
.x25_c00382{left:379.711185px;}
.x7b_c00382{left:387.032235px;}
.x81_c00382{left:388.284585px;}
.x2f_c00382{left:389.685435px;}
.xc_c00382{left:392.452485px;}
.x7c_c00382{left:398.758785px;}
.x26_c00382{left:400.862535px;}
.x5a_c00382{left:410.356635px;}
.xd_c00382{left:412.846485px;}
.x98_c00382{left:420.142785px;}
.x30_c00382{left:421.335735px;}
.x1a_c00382{left:422.835585px;}
.x72_c00382{left:423.993885px;}
.x31_c00382{left:427.513335px;}
.x4e_c00382{left:432.686085px;}
.x27_c00382{left:434.567085px;}
.x91_c00382{left:443.026635px;}
.x5b_c00382{left:444.575985px;}
.x9a_c00382{left:446.293635px;}
.x92_c00382{left:451.486185px;}
.x82_c00382{left:454.307685px;}
.xe_c00382{left:456.327285px;}
.x7d_c00382{left:465.539235px;}
.x48_c00382{left:466.583685px;}
.x83_c00382{left:476.661885px;}
.x62_c00382{left:477.721185px;}
.x84_c00382{left:487.131135px;}
.x1b_c00382{left:488.205285px;}
.xf_c00382{left:489.482385px;}
.x49_c00382{left:498.902235px;}
.x28_c00382{left:501.154485px;}
.x63_c00382{left:511.202985px;}
.x6d_c00382{left:520.969335px;}
.x3a_c00382{left:522.112785px;}
.x76_c00382{left:529.220985px;}
.x4f_c00382{left:532.062285px;}
.x10_c00382{left:533.631435px;}
.x8b_c00382{left:541.709835px;}
.x6e_c00382{left:543.175035px;}
.x50_c00382{left:554.327385px;}
.x11_c00382{left:555.708435px;}
.x85_c00382{left:564.989685px;}
.x4a_c00382{left:575.721285px;}
.x12_c00382{left:577.384485px;}
.x3b_c00382{left:580.205985px;}
.x7e_c00382{left:585.190635px;}
.x51_c00382{left:586.903335px;}
.x1c_c00382{left:589.274385px;}
.x9b_c00382{left:590.729685px;}
.x64_c00382{left:597.823035px;}
.x1d_c00382{left:599.768385px;}
.x94_c00382{left:608.836785px;}
.x32_c00382{left:609.940635px;}
.x34_c00382{left:617.801235px;}
.x6f_c00382{left:620.291085px;}
.x52_c00382{left:630.968235px;}
.x70_c00382{left:632.012685px;}
.x8f_c00382{left:634.735185px;}
.x5c_c00382{left:640.789035px;}
.x3c_c00382{left:642.214635px;}
.x1e_c00382{left:644.486685px;}
.x4b_c00382{left:652.515585px;}
.x95_c00382{left:653.743185px;}
.x33_c00382{left:655.183635px;}
.x53_c00382{left:664.870785px;}
.x8c_c00382{left:675.290535px;}
.x29_c00382{left:676.899285px;}
.x2_c00382{left:678.280335px;}
.x69_c00382{left:686.210235px;}
.x13_c00382{left:687.447735px;}
.x96_c00382{left:688.521885px;}
.x54_c00382{left:697.941735px;}
.x71_c00382{left:699.392085px;}
.x3_c00382{left:700.634535px;}
.x3d_c00382{left:703.243185px;}
.x77_c00382{left:706.668585px;}
.x6a_c00382{left:708.272385px;}
.x65_c00382{left:709.341585px;}
.x2a_c00382{left:710.425635px;}
.x6b_c00382{left:718.127835px;}
.x90_c00382{left:719.696985px;}
.x14_c00382{left:721.706685px;}
.x2b_c00382{left:732.170985px;}
.x41_c00382{left:740.858235px;}
.x9c_c00382{left:761.861085px;}
@media print{
.v1_c00382{vertical-align:-1.274240pt;}
.v0_c00382{vertical-align:0.000000pt;}
.ls7_c00382{letter-spacing:-2.229926pt;}
.ls10_c00382{letter-spacing:-1.866767pt;}
.ls11_c00382{letter-spacing:-1.758456pt;}
.lse_c00382{letter-spacing:-1.344327pt;}
.ls14_c00382{letter-spacing:-1.004080pt;}
.ls3_c00382{letter-spacing:0.000000pt;}
.ls6_c00382{letter-spacing:1.038508pt;}
.ls18_c00382{letter-spacing:1.073600pt;}
.ls1_c00382{letter-spacing:1.720229pt;}
.ls13_c00382{letter-spacing:2.446548pt;}
.lsb_c00382{letter-spacing:2.720510pt;}
.ls5_c00382{letter-spacing:2.784222pt;}
.lsf_c00382{letter-spacing:2.912800pt;}
.ls0_c00382{letter-spacing:3.000843pt;}
.ls16_c00382{letter-spacing:3.097609pt;}
.lsa_c00382{letter-spacing:3.176800pt;}
.ls4_c00382{letter-spacing:3.185609pt;}
.ls17_c00382{letter-spacing:3.238400pt;}
.ls2_c00382{letter-spacing:3.863209pt;}
.ls12_c00382{letter-spacing:41.817600pt;}
.lsc_c00382{letter-spacing:43.084976pt;}
.ls9_c00382{letter-spacing:44.352176pt;}
.ls8_c00382{letter-spacing:50.688176pt;}
.ls15_c00382{letter-spacing:51.955376pt;}
.lsd_c00382{letter-spacing:64.627376pt;}
.ws5_c00382{word-spacing:-18.928887pt;}
.ws7_c00382{word-spacing:-17.648273pt;}
.ws0_c00382{word-spacing:-15.928044pt;}
.ws2_c00382{word-spacing:-14.583717pt;}
.ws6_c00382{word-spacing:-2.293578pt;}
.ws4_c00382{word-spacing:-1.083226pt;}
.ws8_c00382{word-spacing:0.000000pt;}
.ws1_c00382{word-spacing:4.076761pt;}
.ws3_c00382{word-spacing:5.351001pt;}
._4_c00382{margin-left:-14.462712pt;}
._17_c00382{margin-left:-9.991833pt;}
._12_c00382{margin-left:-7.724294pt;}
._9_c00382{margin-left:-4.842014pt;}
._f_c00382{margin-left:-3.185644pt;}
._16_c00382{margin-left:-1.338001pt;}
._13_c00382{width:1.338016pt;}
._d_c00382{width:3.950066pt;}
._6_c00382{width:7.166016pt;}
._8_c00382{width:8.473794pt;}
._3_c00382{width:9.493186pt;}
._0_c00382{width:11.914232pt;}
._15_c00382{width:18.986093pt;}
._2_c00382{width:20.196831pt;}
._11_c00382{width:21.471071pt;}
._10_c00382{width:22.906097pt;}
._19_c00382{width:24.847807pt;}
._b_c00382{width:28.131190pt;}
._14_c00382{width:31.983512pt;}
._1_c00382{width:33.130294pt;}
._7_c00382{width:34.352384pt;}
._e_c00382{width:35.615600pt;}
._a_c00382{width:39.374080pt;}
._18_c00382{width:42.050150pt;}
._c_c00382{width:49.912979pt;}
._5_c00382{width:283.926720pt;}
.fs8_c00382{font-size:19.712000pt;}
.fs16_c00382{font-size:21.472000pt;}
.fse_c00382{font-size:24.640000pt;}
.fs17_c00382{font-size:27.456000pt;}
.fs12_c00382{font-size:28.688000pt;}
.fs3_c00382{font-size:30.976000pt;}
.fs6_c00382{font-size:40.128000pt;}
.fs11_c00382{font-size:41.817600pt;}
.fsb_c00382{font-size:43.084976pt;}
.fs7_c00382{font-size:44.352176pt;}
.fs5_c00382{font-size:50.688176pt;}
.fs13_c00382{font-size:51.955376pt;}
.fs10_c00382{font-size:53.504000pt;}
.fsd_c00382{font-size:57.376000pt;}
.fsf_c00382{font-size:58.256000pt;}
.fs4_c00382{font-size:61.248000pt;}
.fs14_c00382{font-size:61.952176pt;}
.fs2_c00382{font-size:63.008000pt;}
.fs9_c00382{font-size:63.536000pt;}
.fs1_c00382{font-size:63.712176pt;}
.fsc_c00382{font-size:64.627376pt;}
.fs15_c00382{font-size:64.768000pt;}
.fsa_c00382{font-size:69.344176pt;}
.fs0_c00382{font-size:77.264176pt;}
.y0_c00382{bottom:0.000000pt;}
.y28_c00382{bottom:0.241160pt;}
.y27_c00382{bottom:17.341320pt;}
.y26_c00382{bottom:21.459720pt;}
.y1_c00382{bottom:68.000000pt;}
.y25_c00382{bottom:126.008120pt;}
.y24_c00382{bottom:129.805320pt;}
.y23_c00382{bottom:130.122120pt;}
.y22_c00382{bottom:157.054520pt;}
.y21_c00382{bottom:189.684920pt;}
.y20_c00382{bottom:218.513720pt;}
.y1f_c00382{bottom:247.021320pt;}
.y1e_c00382{bottom:275.533320pt;}
.y1d_c00382{bottom:298.030520pt;}
.y1c_c00382{bottom:304.362120pt;}
.y1b_c00382{bottom:333.507720pt;}
.y1a_c00382{bottom:362.336520pt;}
.y17_c00382{bottom:419.681720pt;}
.y19_c00382{bottom:421.894920pt;}
.y18_c00382{bottom:427.280520pt;}
.y16_c00382{bottom:448.510520pt;}
.y15_c00382{bottom:476.705720pt;}
.y13_c00382{bottom:505.850440pt;}
.y14_c00382{bottom:505.851320pt;}
.y12_c00382{bottom:534.680120pt;}
.y11_c00382{bottom:563.187720pt;}
.y10_c00382{bottom:592.333320pt;}
.yf_c00382{bottom:618.627720pt;}
.ye_c00382{bottom:678.507320pt;}
.yd_c00382{bottom:706.385720pt;}
.yb_c00382{bottom:707.331720pt;}
.ya_c00382{bottom:707.969720pt;}
.y9_c00382{bottom:708.282120pt;}
.yc_c00382{bottom:717.786120pt;}
.y8_c00382{bottom:731.412920pt;}
.y7_c00382{bottom:736.160520pt;}
.y6_c00382{bottom:736.798520pt;}
.y5_c00382{bottom:764.993720pt;}
.y4_c00382{bottom:796.040120pt;}
.y3_c00382{bottom:824.235320pt;}
.y2_c00382{bottom:957.603720pt;}
.h9_c00382{height:20.559000pt;}
.h17_c00382{height:21.073594pt;}
.hf_c00382{height:25.698750pt;}
.h12_c00382{height:27.850522pt;}
.h13_c00382{height:28.155703pt;}
.h18_c00382{height:28.635750pt;}
.hc_c00382{height:28.694594pt;}
.h8_c00382{height:29.538549pt;}
.h5_c00382{height:30.401250pt;}
.h6_c00382{height:33.758325pt;}
.h14_c00382{height:34.602280pt;}
.h7_c00382{height:41.852250pt;}
.hd_c00382{height:43.041832pt;}
.h11_c00382{height:55.803000pt;}
.he_c00382{height:59.841375pt;}
.h10_c00382{height:60.759188pt;}
.h15_c00382{height:60.802673pt;}
.h4_c00382{height:61.838906pt;}
.h3_c00382{height:62.530016pt;}
.h16_c00382{height:63.566250pt;}
.ha_c00382{height:64.032375pt;}
.hb_c00382{height:68.057516pt;}
.h2_c00382{height:75.830563pt;}
.h1_c00382{height:986.666667pt;}
.h0_c00382{height:1122.666667pt;}
.w1_c00382{width:689.333333pt;}
.w0_c00382{width:793.333333pt;}
.x0_c00382{left:0.000000pt;}
.x1_c00382{left:52.000000pt;}
.x1f_c00382{left:80.750253pt;}
.x4_c00382{left:81.683053pt;}
.x2c_c00382{left:82.791853pt;}
.x78_c00382{left:84.045853pt;}
.x5d_c00382{left:90.681053pt;}
.x97_c00382{left:91.860253pt;}
.x86_c00382{left:100.220253pt;}
.x20_c00382{left:110.252253pt;}
.x35_c00382{left:119.835453pt;}
.x5e_c00382{left:125.819453pt;}
.x42_c00382{left:128.274653pt;}
.x2d_c00382{left:129.678253pt;}
.x79_c00382{left:137.448653pt;}
.x7f_c00382{left:138.579453pt;}
.x5_c00382{left:139.846653pt;}
.x99_c00382{left:141.144653pt;}
.x43_c00382{left:148.123053pt;}
.x15_c00382{left:150.274653pt;}
.x6c_c00382{left:157.534653pt;}
.x55_c00382{left:158.480653pt;}
.x6_c00382{left:159.646653pt;}
.x87_c00382{left:167.003453pt;}
.x21_c00382{left:168.094653pt;}
.x5f_c00382{left:177.497453pt;}
.x3e_c00382{left:178.483053pt;}
.x22_c00382{left:179.961453pt;}
.x73_c00382{left:186.922253pt;}
.x16_c00382{left:188.141053pt;}
.x36_c00382{left:193.597053pt;}
.x4c_c00382{left:197.755053pt;}
.x7_c00382{left:198.894653pt;}
.x60_c00382{left:203.954653pt;}
.x66_c00382{left:207.672653pt;}
.x8_c00382{left:208.565853pt;}
.x88_c00382{left:213.199053pt;}
.x80_c00382{left:216.010653pt;}
.x37_c00382{left:217.907053pt;}
.x8d_c00382{left:221.391853pt;}
.x89_c00382{left:226.456253pt;}
.x56_c00382{left:227.771853pt;}
.x17_c00382{left:228.867453pt;}
.x44_c00382{left:235.348653pt;}
.x57_c00382{left:237.271453pt;}
.x3f_c00382{left:238.331853pt;}
.x2e_c00382{left:240.813453pt;}
.x4d_c00382{left:246.889853pt;}
.x23_c00382{left:248.038253pt;}
.x58_c00382{left:249.314253pt;}
.x7a_c00382{left:255.610653pt;}
.x45_c00382{left:256.745853pt;}
.x8e_c00382{left:261.018253pt;}
.x74_c00382{left:266.236653pt;}
.x67_c00382{left:270.531053pt;}
.x46_c00382{left:275.560253pt;}
.x9_c00382{left:277.654653pt;}
.x61_c00382{left:285.381053pt;}
.xa_c00382{left:286.978253pt;}
.x18_c00382{left:288.342253pt;}
.x8a_c00382{left:295.219453pt;}
.x93_c00382{left:296.152253pt;}
.x40_c00382{left:297.199453pt;}
.x38_c00382{left:299.443453pt;}
.x68_c00382{left:305.405453pt;}
.x75_c00382{left:306.448253pt;}
.x24_c00382{left:308.032253pt;}
.x59_c00382{left:309.053053pt;}
.x47_c00382{left:315.472653pt;}
.x19_c00382{left:316.836653pt;}
.xb_c00382{left:325.935853pt;}
.x39_c00382{left:335.664253pt;}
.x25_c00382{left:337.521053pt;}
.x7b_c00382{left:344.028653pt;}
.x81_c00382{left:345.141853pt;}
.x2f_c00382{left:346.387053pt;}
.xc_c00382{left:348.846653pt;}
.x7c_c00382{left:354.452253pt;}
.x26_c00382{left:356.322253pt;}
.x5a_c00382{left:364.761453pt;}
.xd_c00382{left:366.974653pt;}
.x98_c00382{left:373.460253pt;}
.x30_c00382{left:374.520653pt;}
.x1a_c00382{left:375.853853pt;}
.x72_c00382{left:376.883453pt;}
.x31_c00382{left:380.011853pt;}
.x4e_c00382{left:384.609853pt;}
.x27_c00382{left:386.281853pt;}
.x91_c00382{left:393.801453pt;}
.x5b_c00382{left:395.178653pt;}
.x9a_c00382{left:396.705453pt;}
.x92_c00382{left:401.321053pt;}
.x82_c00382{left:403.829053pt;}
.xe_c00382{left:405.624253pt;}
.x7d_c00382{left:413.812653pt;}
.x48_c00382{left:414.741053pt;}
.x83_c00382{left:423.699453pt;}
.x62_c00382{left:424.641053pt;}
.x84_c00382{left:433.005453pt;}
.x1b_c00382{left:433.960253pt;}
.xf_c00382{left:435.095453pt;}
.x49_c00382{left:443.468653pt;}
.x28_c00382{left:445.470653pt;}
.x63_c00382{left:454.402653pt;}
.x6d_c00382{left:463.083853pt;}
.x3a_c00382{left:464.100253pt;}
.x76_c00382{left:470.418653pt;}
.x4f_c00382{left:472.944253pt;}
.x10_c00382{left:474.339053pt;}
.x8b_c00382{left:481.519853pt;}
.x6e_c00382{left:482.822253pt;}
.x50_c00382{left:492.735453pt;}
.x11_c00382{left:493.963053pt;}
.x85_c00382{left:502.213053pt;}
.x4a_c00382{left:511.752253pt;}
.x12_c00382{left:513.230653pt;}
.x3b_c00382{left:515.738653pt;}
.x7e_c00382{left:520.169453pt;}
.x51_c00382{left:521.691853pt;}
.x1c_c00382{left:523.799453pt;}
.x9b_c00382{left:525.093053pt;}
.x64_c00382{left:531.398253pt;}
.x1d_c00382{left:533.127453pt;}
.x94_c00382{left:541.188253pt;}
.x32_c00382{left:542.169453pt;}
.x34_c00382{left:549.156653pt;}
.x6f_c00382{left:551.369853pt;}
.x52_c00382{left:560.860653pt;}
.x70_c00382{left:561.789053pt;}
.x8f_c00382{left:564.209053pt;}
.x5c_c00382{left:569.590253pt;}
.x3c_c00382{left:570.857453pt;}
.x1e_c00382{left:572.877053pt;}
.x4b_c00382{left:580.013853pt;}
.x95_c00382{left:581.105053pt;}
.x33_c00382{left:582.385453pt;}
.x53_c00382{left:590.996253pt;}
.x8c_c00382{left:600.258253pt;}
.x29_c00382{left:601.688253pt;}
.x2_c00382{left:602.915853pt;}
.x69_c00382{left:609.964653pt;}
.x13_c00382{left:611.064653pt;}
.x96_c00382{left:612.019453pt;}
.x54_c00382{left:620.392653pt;}
.x71_c00382{left:621.681853pt;}
.x3_c00382{left:622.786253pt;}
.x3d_c00382{left:625.105053pt;}
.x77_c00382{left:628.149853pt;}
.x6a_c00382{left:629.575453pt;}
.x65_c00382{left:630.525853pt;}
.x2a_c00382{left:631.489453pt;}
.x6b_c00382{left:638.335853pt;}
.x90_c00382{left:639.730653pt;}
.x14_c00382{left:641.517053pt;}
.x2b_c00382{left:650.818653pt;}
.x41_c00382{left:658.540653pt;}
.x9c_c00382{left:677.209853pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0cddada7d380ca1c3a680267.woff2')format("woff");}.ff1_c00383{font-family:ff1_c00383;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00383;src:url('chunks/assets/font_da54631d7deb8558e9e1baac.woff2')format("woff");}.ff2_c00383{font-family:ff2_c00383;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00383;src:url('chunks/assets/font_0c5f6b9f2c7d9dee22dc24ed.woff2')format("woff");}.ff3_c00383{font-family:ff3_c00383;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00383;src:url('chunks/assets/font_a8af9b150ccca1eb6b5ba498.woff2')format("woff");}.ff4_c00383{font-family:ff4_c00383;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m8c_c00383{transform:matrix(0.044118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.044118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.044118,0.000000,0.000000,0.250000,0,0);}
.ma9_c00383{transform:matrix(0.048612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048612,0.000000,0.000000,0.250000,0,0);}
.mcf_c00383{transform:matrix(0.057144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.057144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.057144,0.000000,0.000000,0.250000,0,0);}
.m9_c00383{transform:matrix(0.063726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.063726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.063726,0.000000,0.000000,0.250000,0,0);}
.m9c_c00383{transform:matrix(0.071428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071428,0.000000,0.000000,0.250000,0,0);}
.m8b_c00383{transform:matrix(0.077207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077207,0.000000,0.000000,0.250000,0,0);}
.m89_c00383{transform:matrix(0.091911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091911,0.000000,0.000000,0.250000,0,0);}
.md9_c00383{transform:matrix(0.095471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095471,0.000000,0.000000,0.250000,0,0);}
.mea_c00383{transform:matrix(0.116163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116163,0.000000,0.000000,0.250000,0,0);}
.m8_c00383{transform:matrix(0.121323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121323,0.000000,0.000000,0.250000,0,0);}
.m67_c00383{transform:matrix(0.124900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124900,0.000000,0.000000,0.250000,0,0);}
.m88_c00383{transform:matrix(0.125001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125001,0.000000,0.000000,0.250000,0,0);}
.m9b_c00383{transform:matrix(0.128402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128402,0.000000,0.000000,0.250000,0,0);}
.mce_c00383{transform:matrix(0.128572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128572,0.000000,0.000000,0.250000,0,0);}
.me7_c00383{transform:matrix(0.128789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128789,0.000000,0.000000,0.250000,0,0);}
.m64_c00383{transform:matrix(0.130952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130952,0.000000,0.000000,0.250000,0,0);}
.ma8_c00383{transform:matrix(0.133487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133487,0.000000,0.000000,0.250000,0,0);}
.md6_c00383{transform:matrix(0.137623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137623,0.000000,0.000000,0.250000,0,0);}
.md1_c00383{transform:matrix(0.146428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146428,0.000000,0.000000,0.250000,0,0);}
.m12_c00383{transform:matrix(0.158286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158286,0.000000,0.000000,0.250000,0,0);}
.m4d_c00383{transform:matrix(0.160714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160714,0.000000,0.000000,0.250000,0,0);}
.m3c_c00383{transform:matrix(0.161553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161553,0.000000,0.000000,0.250000,0,0);}
.mc2_c00383{transform:matrix(0.162811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162811,0.000000,0.000000,0.250000,0,0);}
.m19_c00383{transform:matrix(0.163298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163298,0.000000,0.000000,0.250000,0,0);}
.m7_c00383{transform:matrix(0.169118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169118,0.000000,0.000000,0.250000,0,0);}
.m27_c00383{transform:matrix(0.174866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174866,0.000000,0.000000,0.250000,0,0);}
.m73_c00383{transform:matrix(0.176378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176378,0.000000,0.000000,0.250000,0,0);}
.ma6_c00383{transform:matrix(0.177078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177078,0.000000,0.000000,0.250000,0,0);}
.m26_c00383{transform:matrix(0.179437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179437,0.000000,0.000000,0.250000,0,0);}
.m2f_c00383{transform:matrix(0.182088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182088,0.000000,0.000000,0.250000,0,0);}
.me9_c00383{transform:matrix(0.184344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184344,0.000000,0.000000,0.250000,0,0);}
.mde_c00383{transform:matrix(0.187123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187123,0.000000,0.000000,0.250000,0,0);}
.ma_c00383{transform:matrix(0.191245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191245,0.000000,0.000000,0.250000,0,0);}
.m58_c00383{transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);}
.m8a_c00383{transform:matrix(0.194852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194852,0.000000,0.000000,0.250000,0,0);}
.m16_c00383{transform:matrix(0.196955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196955,0.000000,0.000000,0.250000,0,0);}
.me5_c00383{transform:matrix(0.196971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196971,0.000000,0.000000,0.250000,0,0);}
.m86_c00383{transform:matrix(0.197739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197739,0.000000,0.000000,0.250000,0,0);}
.m6_c00383{transform:matrix(0.198530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198530,0.000000,0.000000,0.250000,0,0);}
.m1b_c00383{transform:matrix(0.199335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199335,0.000000,0.000000,0.250000,0,0);}
.mbf_c00383{transform:matrix(0.201221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201221,0.000000,0.000000,0.250000,0,0);}
.m57_c00383{transform:matrix(0.201785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201785,0.000000,0.000000,0.250000,0,0);}
.m2c_c00383{transform:matrix(0.204253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204253,0.000000,0.000000,0.250000,0,0);}
.mb9_c00383{transform:matrix(0.204342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204342,0.000000,0.000000,0.250000,0,0);}
.m63_c00383{transform:matrix(0.204432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204432,0.000000,0.000000,0.250000,0,0);}
.md0_c00383{transform:matrix(0.205714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205714,0.000000,0.000000,0.250000,0,0);}
.m42_c00383{transform:matrix(0.206669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206669,0.000000,0.000000,0.250000,0,0);}
.me8_c00383{transform:matrix(0.212121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212121,0.000000,0.000000,0.250000,0,0);}
.m4_c00383{transform:matrix(0.217030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217030,0.000000,0.000000,0.250000,0,0);}
.m61_c00383{transform:matrix(0.218471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218471,0.000000,0.000000,0.250000,0,0);}
.me6_c00383{transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);}
.m8d_c00383{transform:matrix(0.237981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237981,0.000000,0.000000,0.250000,0,0);}
.md5_c00383{transform:matrix(0.238115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238115,0.000000,0.000000,0.250000,0,0);}
.mbc_c00383{transform:matrix(0.239897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239897,0.000000,0.000000,0.250000,0,0);}
.md2_c00383{transform:matrix(0.240475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240475,0.000000,0.000000,0.250000,0,0);}
.m0_c00383{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m87_c00383{transform:matrix(0.251761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251761,0.000000,0.000000,0.250000,0,0);}
.mb5_c00383{transform:matrix(0.251839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251839,0.000000,0.000000,0.250000,0,0);}
.m2d_c00383{transform:matrix(0.254878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254878,0.000000,0.000000,0.250000,0,0);}
.m18_c00383{transform:matrix(0.254880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254880,0.000000,0.000000,0.250000,0,0);}
.m96_c00383{transform:matrix(0.256603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256603,0.000000,0.000000,0.250000,0,0);}
.med_c00383{transform:matrix(0.257046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257046,0.000000,0.000000,0.250000,0,0);}
.m1_c00383{transform:matrix(0.257881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257881,0.000000,0.000000,0.250000,0,0);}
.me4_c00383{transform:matrix(0.258026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258026,0.000000,0.000000,0.250000,0,0);}
.ma7_c00383{transform:matrix(0.258525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258525,0.000000,0.000000,0.250000,0,0);}
.m84_c00383{transform:matrix(0.259698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259698,0.000000,0.000000,0.250000,0,0);}
.m22_c00383{transform:matrix(0.260912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260912,0.000000,0.000000,0.250000,0,0);}
.m71_c00383{transform:matrix(0.261525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261525,0.000000,0.000000,0.250000,0,0);}
.m6d_c00383{transform:matrix(0.262429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262429,0.000000,0.000000,0.250000,0,0);}
.m54_c00383{transform:matrix(0.262837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262837,0.000000,0.000000,0.250000,0,0);}
.m69_c00383{transform:matrix(0.263376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263376,0.000000,0.000000,0.250000,0,0);}
.maf_c00383{transform:matrix(0.263588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263588,0.000000,0.000000,0.250000,0,0);}
.m8e_c00383{transform:matrix(0.263927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263927,0.000000,0.000000,0.250000,0,0);}
.m9f_c00383{transform:matrix(0.264415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264415,0.000000,0.000000,0.250000,0,0);}
.mbd_c00383{transform:matrix(0.266147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266147,0.000000,0.000000,0.250000,0,0);}
.m92_c00383{transform:matrix(0.266286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266286,0.000000,0.000000,0.250000,0,0);}
.m45_c00383{transform:matrix(0.266295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266295,0.000000,0.000000,0.250000,0,0);}
.mdd_c00383{transform:matrix(0.266518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266518,0.000000,0.000000,0.250000,0,0);}
.m66_c00383{transform:matrix(0.266620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266620,0.000000,0.000000,0.250000,0,0);}
.m4b_c00383{transform:matrix(0.267777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267777,0.000000,0.000000,0.250000,0,0);}
.md4_c00383{transform:matrix(0.268046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268046,0.000000,0.000000,0.250000,0,0);}
.m15_c00383{transform:matrix(0.268154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268154,0.000000,0.000000,0.250000,0,0);}
.m6e_c00383{transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);}
.mc8_c00383{transform:matrix(0.268726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268726,0.000000,0.000000,0.250000,0,0);}
.m9e_c00383{transform:matrix(0.269241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269241,0.000000,0.000000,0.250000,0,0);}
.mc6_c00383{transform:matrix(0.269340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269340,0.000000,0.000000,0.250000,0,0);}
.md_c00383{transform:matrix(0.270017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270017,0.000000,0.000000,0.250000,0,0);}
.m5b_c00383{transform:matrix(0.270312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270312,0.000000,0.000000,0.250000,0,0);}
.m6c_c00383{transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);}
.m24_c00383{transform:matrix(0.271211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271211,0.000000,0.000000,0.250000,0,0);}
.m32_c00383{transform:matrix(0.271425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271425,0.000000,0.000000,0.250000,0,0);}
.m47_c00383{transform:matrix(0.271867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271867,0.000000,0.000000,0.250000,0,0);}
.m1c_c00383{transform:matrix(0.272274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272274,0.000000,0.000000,0.250000,0,0);}
.m3e_c00383{transform:matrix(0.272336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272336,0.000000,0.000000,0.250000,0,0);}
.m78_c00383{transform:matrix(0.272476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272476,0.000000,0.000000,0.250000,0,0);}
.me_c00383{transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);}
.mdc_c00383{transform:matrix(0.274299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274299,0.000000,0.000000,0.250000,0,0);}
.m3d_c00383{transform:matrix(0.275391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275391,0.000000,0.000000,0.250000,0,0);}
.m4f_c00383{transform:matrix(0.276054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276054,0.000000,0.000000,0.250000,0,0);}
.m6b_c00383{transform:matrix(0.276376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276376,0.000000,0.000000,0.250000,0,0);}
.m93_c00383{transform:matrix(0.277620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277620,0.000000,0.000000,0.250000,0,0);}
.mef_c00383{transform:matrix(0.277743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277743,0.000000,0.000000,0.250000,0,0);}
.m5c_c00383{transform:matrix(0.277912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277912,0.000000,0.000000,0.250000,0,0);}
.maa_c00383{transform:matrix(0.278405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278405,0.000000,0.000000,0.250000,0,0);}
.m72_c00383{transform:matrix(0.278497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278497,0.000000,0.000000,0.250000,0,0);}
.m95_c00383{transform:matrix(0.280139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280139,0.000000,0.000000,0.250000,0,0);}
.ma0_c00383{transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);}
.mee_c00383{transform:matrix(0.281415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281415,0.000000,0.000000,0.250000,0,0);}
.m2_c00383{transform:matrix(0.281663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281663,0.000000,0.000000,0.250000,0,0);}
.m3_c00383{transform:matrix(0.282883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282883,0.000000,0.000000,0.250000,0,0);}
.mc_c00383{transform:matrix(0.283625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283625,0.000000,0.000000,0.250000,0,0);}
.m97_c00383{transform:matrix(0.284171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284171,0.000000,0.000000,0.250000,0,0);}
.m68_c00383{transform:matrix(0.284178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284178,0.000000,0.000000,0.250000,0,0);}
.md8_c00383{transform:matrix(0.284330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284330,0.000000,0.000000,0.250000,0,0);}
.m1d_c00383{transform:matrix(0.284887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284887,0.000000,0.000000,0.250000,0,0);}
.m30_c00383{transform:matrix(0.284912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284912,0.000000,0.000000,0.250000,0,0);}
.mc0_c00383{transform:matrix(0.284959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284959,0.000000,0.000000,0.250000,0,0);}
.m29_c00383{transform:matrix(0.285669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285669,0.000000,0.000000,0.250000,0,0);}
.m80_c00383{transform:matrix(0.285838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285838,0.000000,0.000000,0.250000,0,0);}
.m35_c00383{transform:matrix(0.286743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286743,0.000000,0.000000,0.250000,0,0);}
.m17_c00383{transform:matrix(0.287034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287034,0.000000,0.000000,0.250000,0,0);}
.m10_c00383{transform:matrix(0.287374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287374,0.000000,0.000000,0.250000,0,0);}
.m9d_c00383{transform:matrix(0.288167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288167,0.000000,0.000000,0.250000,0,0);}
.m14_c00383{transform:matrix(0.288703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288703,0.000000,0.000000,0.250000,0,0);}
.m99_c00383{transform:matrix(0.288796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288796,0.000000,0.000000,0.250000,0,0);}
.mba_c00383{transform:matrix(0.289017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289017,0.000000,0.000000,0.250000,0,0);}
.me0_c00383{transform:matrix(0.289206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289206,0.000000,0.000000,0.250000,0,0);}
.m7e_c00383{transform:matrix(0.289635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289635,0.000000,0.000000,0.250000,0,0);}
.mdf_c00383{transform:matrix(0.289688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289688,0.000000,0.000000,0.250000,0,0);}
.mc5_c00383{transform:matrix(0.290120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290120,0.000000,0.000000,0.250000,0,0);}
.meb_c00383{transform:matrix(0.290566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290566,0.000000,0.000000,0.250000,0,0);}
.m85_c00383{transform:matrix(0.292506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292506,0.000000,0.000000,0.250000,0,0);}
.m3f_c00383{transform:matrix(0.293827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293827,0.000000,0.000000,0.250000,0,0);}
.m2b_c00383{transform:matrix(0.293938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293938,0.000000,0.000000,0.250000,0,0);}
.mcc_c00383{transform:matrix(0.294318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294318,0.000000,0.000000,0.250000,0,0);}
.m21_c00383{transform:matrix(0.294417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294417,0.000000,0.000000,0.250000,0,0);}
.md3_c00383{transform:matrix(0.294883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294883,0.000000,0.000000,0.250000,0,0);}
.m4e_c00383{transform:matrix(0.295070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295070,0.000000,0.000000,0.250000,0,0);}
.mb0_c00383{transform:matrix(0.295103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295103,0.000000,0.000000,0.250000,0,0);}
.m2e_c00383{transform:matrix(0.295727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295727,0.000000,0.000000,0.250000,0,0);}
.m51_c00383{transform:matrix(0.296044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296044,0.000000,0.000000,0.250000,0,0);}
.mcd_c00383{transform:matrix(0.296355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296355,0.000000,0.000000,0.250000,0,0);}
.m65_c00383{transform:matrix(0.296995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296995,0.000000,0.000000,0.250000,0,0);}
.mb6_c00383{transform:matrix(0.297564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297564,0.000000,0.000000,0.250000,0,0);}
.m94_c00383{transform:matrix(0.297807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297807,0.000000,0.000000,0.250000,0,0);}
.m23_c00383{transform:matrix(0.298797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298797,0.000000,0.000000,0.250000,0,0);}
.m34_c00383{transform:matrix(0.299553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299553,0.000000,0.000000,0.250000,0,0);}
.mda_c00383{transform:matrix(0.300529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300529,0.000000,0.000000,0.250000,0,0);}
.ma3_c00383{transform:matrix(0.301821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301821,0.000000,0.000000,0.250000,0,0);}
.ma4_c00383{transform:matrix(0.301848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301848,0.000000,0.000000,0.250000,0,0);}
.m40_c00383{transform:matrix(0.302430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302430,0.000000,0.000000,0.250000,0,0);}
.m25_c00383{transform:matrix(0.302495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302495,0.000000,0.000000,0.250000,0,0);}
.m76_c00383{transform:matrix(0.302672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302672,0.000000,0.000000,0.250000,0,0);}
.m74_c00383{transform:matrix(0.304094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304094,0.000000,0.000000,0.250000,0,0);}
.m59_c00383{transform:matrix(0.304100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304100,0.000000,0.000000,0.250000,0,0);}
.m2a_c00383{transform:matrix(0.305453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305453,0.000000,0.000000,0.250000,0,0);}
.mb4_c00383{transform:matrix(0.305776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305776,0.000000,0.000000,0.250000,0,0);}
.ma5_c00383{transform:matrix(0.305870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305870,0.000000,0.000000,0.250000,0,0);}
.mc4_c00383{transform:matrix(0.306008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306008,0.000000,0.000000,0.250000,0,0);}
.m81_c00383{transform:matrix(0.306153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306153,0.000000,0.000000,0.250000,0,0);}
.m11_c00383{transform:matrix(0.306906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306906,0.000000,0.000000,0.250000,0,0);}
.m98_c00383{transform:matrix(0.307864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307864,0.000000,0.000000,0.250000,0,0);}
.m83_c00383{transform:matrix(0.309538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309538,0.000000,0.000000,0.250000,0,0);}
.mf0_c00383{transform:matrix(0.309655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309655,0.000000,0.000000,0.250000,0,0);}
.mb2_c00383{transform:matrix(0.309885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309885,0.000000,0.000000,0.250000,0,0);}
.m56_c00383{transform:matrix(0.310230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310230,0.000000,0.000000,0.250000,0,0);}
.m31_c00383{transform:matrix(0.311146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311146,0.000000,0.000000,0.250000,0,0);}
.m7a_c00383{transform:matrix(0.311540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311540,0.000000,0.000000,0.250000,0,0);}
.mbe_c00383{transform:matrix(0.312377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312377,0.000000,0.000000,0.250000,0,0);}
.m44_c00383{transform:matrix(0.312691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312691,0.000000,0.000000,0.250000,0,0);}
.m82_c00383{transform:matrix(0.313458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313458,0.000000,0.000000,0.250000,0,0);}
.mb_c00383{transform:matrix(0.314566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314566,0.000000,0.000000,0.250000,0,0);}
.m55_c00383{transform:matrix(0.315192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315192,0.000000,0.000000,0.250000,0,0);}
.mdb_c00383{transform:matrix(0.316058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316058,0.000000,0.000000,0.250000,0,0);}
.mc9_c00383{transform:matrix(0.316135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316135,0.000000,0.000000,0.250000,0,0);}
.mad_c00383{transform:matrix(0.316824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316824,0.000000,0.000000,0.250000,0,0);}
.m8f_c00383{transform:matrix(0.318841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318841,0.000000,0.000000,0.250000,0,0);}
.me2_c00383{transform:matrix(0.319577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319577,0.000000,0.000000,0.250000,0,0);}
.m9a_c00383{transform:matrix(0.319887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319887,0.000000,0.000000,0.250000,0,0);}
.mf_c00383{transform:matrix(0.320264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320264,0.000000,0.000000,0.250000,0,0);}
.m7f_c00383{transform:matrix(0.321361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321361,0.000000,0.000000,0.250000,0,0);}
.ma2_c00383{transform:matrix(0.322080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322080,0.000000,0.000000,0.250000,0,0);}
.mec_c00383{transform:matrix(0.322119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322119,0.000000,0.000000,0.250000,0,0);}
.m3b_c00383{transform:matrix(0.322822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322822,0.000000,0.000000,0.250000,0,0);}
.m4a_c00383{transform:matrix(0.323851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323851,0.000000,0.000000,0.250000,0,0);}
.mf1_c00383{transform:matrix(0.323957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323957,0.000000,0.000000,0.250000,0,0);}
.m7b_c00383{transform:matrix(0.324992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324992,0.000000,0.000000,0.250000,0,0);}
.md7_c00383{transform:matrix(0.325844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325844,0.000000,0.000000,0.250000,0,0);}
.mae_c00383{transform:matrix(0.325853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325853,0.000000,0.000000,0.250000,0,0);}
.m36_c00383{transform:matrix(0.326947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326947,0.000000,0.000000,0.250000,0,0);}
.ma1_c00383{transform:matrix(0.328131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328131,0.000000,0.000000,0.250000,0,0);}
.m5f_c00383{transform:matrix(0.328258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328258,0.000000,0.000000,0.250000,0,0);}
.m7d_c00383{transform:matrix(0.328260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328260,0.000000,0.000000,0.250000,0,0);}
.m33_c00383{transform:matrix(0.329381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329381,0.000000,0.000000,0.250000,0,0);}
.m5_c00383{transform:matrix(0.329522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329522,0.000000,0.000000,0.250000,0,0);}
.m41_c00383{transform:matrix(0.329576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329576,0.000000,0.000000,0.250000,0,0);}
.mb3_c00383{transform:matrix(0.330612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330612,0.000000,0.000000,0.250000,0,0);}
.mc1_c00383{transform:matrix(0.331569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331569,0.000000,0.000000,0.250000,0,0);}
.m3a_c00383{transform:matrix(0.332137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332137,0.000000,0.000000,0.250000,0,0);}
.m90_c00383{transform:matrix(0.332390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332390,0.000000,0.000000,0.250000,0,0);}
.m4c_c00383{transform:matrix(0.332874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332874,0.000000,0.000000,0.250000,0,0);}
.m77_c00383{transform:matrix(0.333220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333220,0.000000,0.000000,0.250000,0,0);}
.m38_c00383{transform:matrix(0.334447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334447,0.000000,0.000000,0.250000,0,0);}
.mb7_c00383{transform:matrix(0.334521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334521,0.000000,0.000000,0.250000,0,0);}
.me1_c00383{transform:matrix(0.336676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336676,0.000000,0.000000,0.250000,0,0);}
.m91_c00383{transform:matrix(0.337323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337323,0.000000,0.000000,0.250000,0,0);}
.mab_c00383{transform:matrix(0.338576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338576,0.000000,0.000000,0.250000,0,0);}
.m39_c00383{transform:matrix(0.339155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339155,0.000000,0.000000,0.250000,0,0);}
.m79_c00383{transform:matrix(0.339371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339371,0.000000,0.000000,0.250000,0,0);}
.m37_c00383{transform:matrix(0.339647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339647,0.000000,0.000000,0.250000,0,0);}
.m70_c00383{transform:matrix(0.340758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340758,0.000000,0.000000,0.250000,0,0);}
.mc3_c00383{transform:matrix(0.340921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340921,0.000000,0.000000,0.250000,0,0);}
.mac_c00383{transform:matrix(0.342862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342862,0.000000,0.000000,0.250000,0,0);}
.m5e_c00383{transform:matrix(0.343210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343210,0.000000,0.000000,0.250000,0,0);}
.m49_c00383{transform:matrix(0.343841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343841,0.000000,0.000000,0.250000,0,0);}
.m5d_c00383{transform:matrix(0.344102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344102,0.000000,0.000000,0.250000,0,0);}
.mca_c00383{transform:matrix(0.347685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347685,0.000000,0.000000,0.250000,0,0);}
.m50_c00383{transform:matrix(0.347824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347824,0.000000,0.000000,0.250000,0,0);}
.m53_c00383{transform:matrix(0.350932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350932,0.000000,0.000000,0.250000,0,0);}
.m43_c00383{transform:matrix(0.351553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351553,0.000000,0.000000,0.250000,0,0);}
.m1e_c00383{transform:matrix(0.352674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352674,0.000000,0.000000,0.250000,0,0);}
.m75_c00383{transform:matrix(0.354617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354617,0.000000,0.000000,0.250000,0,0);}
.m13_c00383{transform:matrix(0.355065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355065,0.000000,0.000000,0.250000,0,0);}
.mbb_c00383{transform:matrix(0.355860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355860,0.000000,0.000000,0.250000,0,0);}
.m1f_c00383{transform:matrix(0.356076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356076,0.000000,0.000000,0.250000,0,0);}
.mb1_c00383{transform:matrix(0.356141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356141,0.000000,0.000000,0.250000,0,0);}
.mb8_c00383{transform:matrix(0.357282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357282,0.000000,0.000000,0.250000,0,0);}
.m5a_c00383{transform:matrix(0.359402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359402,0.000000,0.000000,0.250000,0,0);}
.m52_c00383{transform:matrix(0.362103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362103,0.000000,0.000000,0.250000,0,0);}
.m20_c00383{transform:matrix(0.368347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368347,0.000000,0.000000,0.250000,0,0);}
.mcb_c00383{transform:matrix(0.368559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368559,0.000000,0.000000,0.250000,0,0);}
.m6f_c00383{transform:matrix(0.371802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371802,0.000000,0.000000,0.250000,0,0);}
.m60_c00383{transform:matrix(0.374589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374589,0.000000,0.000000,0.250000,0,0);}
.m48_c00383{transform:matrix(0.374610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374610,0.000000,0.000000,0.250000,0,0);}
.m7c_c00383{transform:matrix(0.374917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374917,0.000000,0.000000,0.250000,0,0);}
.mc7_c00383{transform:matrix(0.388446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388446,0.000000,0.000000,0.250000,0,0);}
.m1a_c00383{transform:matrix(0.392849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392849,0.000000,0.000000,0.250000,0,0);}
.m62_c00383{transform:matrix(0.402629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402629,0.000000,0.000000,0.250000,0,0);}
.me3_c00383{transform:matrix(0.432185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432185,0.000000,0.000000,0.250000,0,0);}
.m46_c00383{transform:matrix(0.438583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438583,0.000000,0.000000,0.250000,0,0);}
.m6a_c00383{transform:matrix(0.440189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440189,0.000000,0.000000,0.250000,0,0);}
.m28_c00383{transform:matrix(0.456195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456195,0.000000,0.000000,0.250000,0,0);}
.v0_c00383{vertical-align:0.000000px;}
.v2_c00383{vertical-align:1.425600px;}
.v1_c00383{vertical-align:42.748200px;}
.lsa_c00383{letter-spacing:-2.799727px;}
.ls8_c00383{letter-spacing:-2.647267px;}
.ls1a_c00383{letter-spacing:-2.624576px;}
.lsc_c00383{letter-spacing:-2.411640px;}
.lsd_c00383{letter-spacing:-2.399760px;}
.ls27_c00383{letter-spacing:-2.125377px;}
.lse_c00383{letter-spacing:-1.890905px;}
.ls1c_c00383{letter-spacing:-1.628550px;}
.lsb_c00383{letter-spacing:-1.255561px;}
.ls13_c00383{letter-spacing:-0.930325px;}
.ls21_c00383{letter-spacing:-0.287418px;}
.ls16_c00383{letter-spacing:-0.189090px;}
.ls14_c00383{letter-spacing:-0.119077px;}
.ls1d_c00383{letter-spacing:-0.037818px;}
.ls5_c00383{letter-spacing:0.000000px;}
.lsf_c00383{letter-spacing:0.937889px;}
.ls0_c00383{letter-spacing:1.013525px;}
.ls10_c00383{letter-spacing:1.722600px;}
.ls22_c00383{letter-spacing:1.943850px;}
.ls19_c00383{letter-spacing:2.458176px;}
.ls23_c00383{letter-spacing:2.685085px;}
.ls1b_c00383{letter-spacing:2.715340px;}
.ls3_c00383{letter-spacing:3.025448px;}
.ls25_c00383{letter-spacing:3.184284px;}
.ls1e_c00383{letter-spacing:3.484810px;}
.ls20_c00383{letter-spacing:3.583810px;}
.ls18_c00383{letter-spacing:3.722400px;}
.ls17_c00383{letter-spacing:3.752110px;}
.ls7_c00383{letter-spacing:3.781810px;}
.ls24_c00383{letter-spacing:3.880810px;}
.ls6_c00383{letter-spacing:4.197610px;}
.ls2_c00383{letter-spacing:9.757341px;}
.ls4_c00383{letter-spacing:19.363157px;}
.ls26_c00383{letter-spacing:47.044800px;}
.ls9_c00383{letter-spacing:48.470598px;}
.ls12_c00383{letter-spacing:49.896198px;}
.ls1f_c00383{letter-spacing:51.321798px;}
.ls11_c00383{letter-spacing:57.024198px;}
.ls1_c00383{letter-spacing:57.280746px;}
.ls15_c00383{letter-spacing:59.875398px;}
.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;}
}
.ws5_c00383{word-spacing:-20.852900px;}
.ws1_c00383{word-spacing:-18.909050px;}
.ws0_c00383{word-spacing:-17.653489px;}
.ws2_c00383{word-spacing:-10.559459px;}
.ws6_c00383{word-spacing:0.000000px;}
.ws3_c00383{word-spacing:0.832277px;}
.ws4_c00383{word-spacing:4.160073px;}
._17_c00383{margin-left:-22.388157px;}
._16_c00383{margin-left:-12.631311px;}
._1a_c00383{margin-left:-10.815904px;}
._14_c00383{margin-left:-9.529102px;}
._e_c00383{margin-left:-8.093602px;}
._7_c00383{margin-left:-5.422824px;}
._c_c00383{margin-left:-2.527510px;}
._4_c00383{width:1.326600px;}
._18_c00383{width:5.067524px;}
._f_c00383{width:6.504806px;}
._5_c00383{width:7.790409px;}
._3_c00383{width:8.924168px;}
._d_c00383{width:9.985041px;}
._8_c00383{width:12.026223px;}
._1b_c00383{width:15.709370px;}
._13_c00383{width:17.320545px;}
._b_c00383{width:21.632039px;}
._12_c00383{width:23.069123px;}
._0_c00383{width:24.506207px;}
._9_c00383{width:29.393557px;}
._15_c00383{width:31.745191px;}
._11_c00383{width:33.204265px;}
._1_c00383{width:34.414470px;}
._10_c00383{width:35.624617px;}
._2_c00383{width:38.707279px;}
._6_c00383{width:43.733387px;}
._a_c00383{width:45.195480px;}
._19_c00383{width:46.894611px;}
.fc0_c00383{color:transparent;}
.fs0_c00383{font-size:22.176000px;}
.fsd_c00383{font-size:34.452000px;}
.fs10_c00383{font-size:38.412000px;}
.fs9_c00383{font-size:39.600000px;}
.fsb_c00383{font-size:46.530000px;}
.fs1b_c00383{font-size:47.044800px;}
.fs3_c00383{font-size:48.470598px;}
.fsf_c00383{font-size:49.896198px;}
.fsc_c00383{font-size:50.688000px;}
.fs18_c00383{font-size:51.321798px;}
.fse_c00383{font-size:57.024198px;}
.fs11_c00383{font-size:59.875398px;}
.fs5_c00383{font-size:60.192000px;}
.fs4_c00383{font-size:64.548000px;}
.fs17_c00383{font-size:66.132198px;}
.fs15_c00383{font-size:66.528000px;}
.fs12_c00383{font-size:67.320000px;}
.fsa_c00383{font-size:68.904000px;}
.fs16_c00383{font-size:69.696198px;}
.fs19_c00383{font-size:71.676198px;}
.fs14_c00383{font-size:74.448000px;}
.fs13_c00383{font-size:75.042198px;}
.fs2_c00383{font-size:75.636198px;}
.fs6_c00383{font-size:76.032198px;}
.fs1a_c00383{font-size:77.616198px;}
.fs8_c00383{font-size:79.200000px;}
.fs7_c00383{font-size:79.992198px;}
.fs1_c00383{font-size:83.952198px;}
.y2a_c00383{bottom:-0.800865px;}
.y0_c00383{bottom:0.000000px;}
.y1_c00383{bottom:76.500000px;}
.y29_c00383{bottom:150.312735px;}
.y2c_c00383{bottom:173.122335px;}
.y2b_c00383{bottom:180.958185px;}
.y28_c00383{bottom:181.314585px;}
.y27_c00383{bottom:214.464735px;}
.y2_c00383{bottom:227.651535px;}
.y26_c00383{bottom:247.253535px;}
.y25_c00383{bottom:279.685935px;}
.y24_c00383{bottom:312.113385px;}
.y23_c00383{bottom:344.550735px;}
.y21_c00383{bottom:376.983135px;}
.y22_c00383{bottom:377.334585px;}
.y20_c00383{bottom:409.771935px;}
.y1f_c00383{bottom:474.631785px;}
.y1e_c00383{bottom:497.797785px;}
.y1c_c00383{bottom:502.792335px;}
.y1d_c00383{bottom:510.271785px;}
.y1b_c00383{bottom:510.989535px;}
.y1a_c00383{bottom:542.709135px;}
.y19_c00383{bottom:575.141535px;}
.y18_c00383{bottom:607.212585px;}
.y17_c00383{bottom:607.573935px;}
.y16_c00383{bottom:640.001385px;}
.y15_c00383{bottom:672.433785px;}
.y14_c00383{bottom:704.866185px;}
.y11_c00383{bottom:737.303535px;}
.y12_c00383{bottom:737.654985px;}
.y13_c00383{bottom:738.011385px;}
.yf_c00383{bottom:769.735935px;}
.y10_c00383{bottom:770.092335px;}
.ye_c00383{bottom:798.599385px;}
.yd_c00383{bottom:801.806985px;}
.yc_c00383{bottom:802.168335px;}
.ya_c00383{bottom:834.595785px;}
.yb_c00383{bottom:844.931385px;}
.y9_c00383{bottom:897.683535px;}
.y8_c00383{bottom:923.339385px;}
.y6_c00383{bottom:924.057135px;}
.y7_c00383{bottom:930.115935px;}
.y4_c00383{bottom:930.823785px;}
.y5_c00383{bottom:931.185135px;}
.y3_c00383{bottom:1083.719385px;}
.h2_c00383{height:23.128875px;}
.h1e_c00383{height:31.331837px;}
.h5_c00383{height:32.281418px;}
.h11_c00383{height:33.230868px;}
.h1b_c00383{height:34.180317px;}
.hf_c00383{height:35.932359px;}
.h10_c00383{height:37.978116px;}
.h13_c00383{height:39.877015px;}
.h12_c00383{height:40.062516px;}
.hc_c00383{height:45.666650px;}
.h17_c00383{height:48.529336px;}
.h7_c00383{height:62.778375px;}
.h6_c00383{height:67.321547px;}
.hb_c00383{height:67.625508px;}
.h19_c00383{height:68.403007px;}
.h1a_c00383{height:68.973816px;}
.h18_c00383{height:69.386625px;}
.h14_c00383{height:70.212656px;}
.h1c_c00383{height:72.236168px;}
.h16_c00383{height:73.066641px;}
.h15_c00383{height:73.649813px;}
.h4_c00383{height:74.232792px;}
.h1d_c00383{height:76.176054px;}
.h9_c00383{height:78.507968px;}
.h8_c00383{height:79.299207px;}
.he_c00383{height:79.818750px;}
.h3_c00383{height:82.394491px;}
.ha_c00383{height:82.603125px;}
.hd_c00383{height:95.614200px;}
.h1_c00383{height:1110.000000px;}
.h0_c00383{height:1263.000000px;}
.w1_c00383{width:775.500000px;}
.w0_c00383{width:892.500000px;}
.x0_c00383{left:0.000000px;}
.x2_c00383{left:53.719035px;}
.x1_c00383{left:58.500000px;}
.x4_c00383{left:106.154385px;}
.x1b_c00383{left:108.035385px;}
.x74_c00383{left:112.609185px;}
.x38_c00383{left:118.182885px;}
.x2c_c00383{left:129.161985px;}
.x4e_c00383{left:138.482835px;}
.x1c_c00383{left:139.660935px;}
.x5_c00383{left:148.957035px;}
.x39_c00383{left:150.882585px;}
.x1e_c00383{left:160.965735px;}
.x6e_c00383{left:162.653685px;}
.x1d_c00383{left:171.642885px;}
.x65_c00383{left:180.641985px;}
.x6_c00383{left:182.067585px;}
.x6a_c00383{left:183.458535px;}
.x60_c00383{left:185.903835px;}
.x1f_c00383{left:194.378235px;}
.x7b_c00383{left:196.774035px;}
.x6f_c00383{left:203.129835px;}
.x7_c00383{left:204.847485px;}
.x3a_c00383{left:206.094885px;}
.x20_c00383{left:215.910735px;}
.x41_c00383{left:226.919535px;}
.x4f_c00383{left:228.627285px;}
.x2d_c00383{left:236.918535px;}
.x21_c00383{left:238.611435px;}
.x66_c00383{left:239.636085px;}
.x57_c00383{left:248.036235px;}
.x2e_c00383{left:249.719235px;}
.x55_c00383{left:251.867535px;}
.x2f_c00383{left:256.480935px;}
.x8_c00383{left:260.520135px;}
.x70_c00383{left:271.093335px;}
.x9_c00383{left:272.276385px;}
.x75_c00383{left:279.904335px;}
.xa_c00383{left:281.186385px;}
.x30_c00383{left:283.126785px;}
.x6b_c00383{left:284.166285px;}
.xb_c00383{left:294.373185px;}
.x22_c00383{left:304.896885px;}
.x76_c00383{left:307.431285px;}
.x50_c00383{left:314.321685px;}
.xc_c00383{left:316.301685px;}
.x78_c00383{left:318.355935px;}
.xd_c00383{left:327.003585px;}
.x77_c00383{left:328.156935px;}
.x5d_c00383{left:329.929035px;}
.x63_c00383{left:336.962985px;}
.x42_c00383{left:338.022285px;}
.x71_c00383{left:339.061785px;}
.x31_c00383{left:340.170585px;}
.x79_c00383{left:346.006635px;}
.x23_c00383{left:348.184635px;}
.xe_c00383{left:349.729035px;}
.x4c_c00383{left:360.460635px;}
.x3b_c00383{left:362.326785px;}
.x56_c00383{left:371.414985px;}
.x51_c00383{left:372.573285px;}
.x24_c00383{left:382.453485px;}
.x4d_c00383{left:394.274085px;}
.x7c_c00383{left:398.441985px;}
.x6d_c00383{left:400.421985px;}
.x58_c00383{left:403.783035px;}
.xf_c00383{left:404.901735px;}
.x25_c00383{left:415.707585px;}
.x10_c00383{left:427.107435px;}
.x7a_c00383{left:429.493335px;}
.x61_c00383{left:436.928235px;}
.x43_c00383{left:438.150885px;}
.x11_c00383{left:448.491435px;}
.x59_c00383{left:450.476385px;}
.x32_c00383{left:459.218085px;}
.x64_c00383{left:460.579335px;}
.x12_c00383{left:470.395185px;}
.x5a_c00383{left:471.860385px;}
.x67_c00383{left:477.206385px;}
.x26_c00383{left:482.304885px;}
.x33_c00383{left:493.076085px;}
.x47_c00383{left:503.545335px;}
.x3c_c00383{left:505.079835px;}
.x5b_c00383{left:512.138535px;}
.x27_c00383{left:515.306535px;}
.x68_c00383{left:525.137235px;}
.x13_c00383{left:526.315335px;}
.x5c_c00383{left:527.681535px;}
.x3d_c00383{left:537.749835px;}
.x14_c00383{left:547.055835px;}
.x44_c00383{left:548.996235px;}
.x34_c00383{left:559.391235px;}
.x6c_c00383{left:569.113035px;}
.x28_c00383{left:570.385185px;}
.x35_c00383{left:571.414785px;}
.x15_c00383{left:581.591985px;}
.x52_c00383{left:592.645335px;}
.x3e_c00383{left:601.990935px;}
.x48_c00383{left:603.173985px;}
.x29_c00383{left:614.009535px;}
.x16_c00383{left:625.325235px;}
.x49_c00383{left:626.330085px;}
.x5e_c00383{left:628.725885px;}
.x72_c00383{left:635.759835px;}
.x17_c00383{left:636.799335px;}
.x36_c00383{left:647.719035px;}
.x2b_c00383{left:648.743685px;}
.x45_c00383{left:659.054535px;}
.x54_c00383{left:669.998985px;}
.x46_c00383{left:671.028585px;}
.x3f_c00383{left:681.062235px;}
.x18_c00383{left:682.250235px;}
.x7d_c00383{left:685.165785px;}
.x3_c00383{left:691.853235px;}
.x2a_c00383{left:694.788585px;}
.x37_c00383{left:699.872235px;}
.x1a_c00383{left:702.629385px;}
.x5f_c00383{left:703.970835px;}
.x40_c00383{left:714.004485px;}
.x69_c00383{left:715.029135px;}
.x73_c00383{left:723.473835px;}
.x4a_c00383{left:724.572735px;}
.x53_c00383{left:731.611635px;}
.x19_c00383{left:736.794285px;}
.x62_c00383{left:739.165335px;}
.x4b_c00383{left:758.534685px;}
@media print{
.v0_c00383{vertical-align:0.000000pt;}
.v2_c00383{vertical-align:1.267200pt;}
.v1_c00383{vertical-align:37.998400pt;}
.lsa_c00383{letter-spacing:-2.488646pt;}
.ls8_c00383{letter-spacing:-2.353126pt;}
.ls1a_c00383{letter-spacing:-2.332957pt;}
.lsc_c00383{letter-spacing:-2.143680pt;}
.lsd_c00383{letter-spacing:-2.133120pt;}
.ls27_c00383{letter-spacing:-1.889224pt;}
.lse_c00383{letter-spacing:-1.680804pt;}
.ls1c_c00383{letter-spacing:-1.447600pt;}
.lsb_c00383{letter-spacing:-1.116054pt;}
.ls13_c00383{letter-spacing:-0.826956pt;}
.ls21_c00383{letter-spacing:-0.255482pt;}
.ls16_c00383{letter-spacing:-0.168080pt;}
.ls14_c00383{letter-spacing:-0.105846pt;}
.ls1d_c00383{letter-spacing:-0.033616pt;}
.ls5_c00383{letter-spacing:0.000000pt;}
.lsf_c00383{letter-spacing:0.833679pt;}
.ls0_c00383{letter-spacing:0.900911pt;}
.ls10_c00383{letter-spacing:1.531200pt;}
.ls22_c00383{letter-spacing:1.727867pt;}
.ls19_c00383{letter-spacing:2.185046pt;}
.ls23_c00383{letter-spacing:2.386742pt;}
.ls1b_c00383{letter-spacing:2.413635pt;}
.ls3_c00383{letter-spacing:2.689287pt;}
.ls25_c00383{letter-spacing:2.830475pt;}
.ls1e_c00383{letter-spacing:3.097609pt;}
.ls20_c00383{letter-spacing:3.185609pt;}
.ls18_c00383{letter-spacing:3.308800pt;}
.ls17_c00383{letter-spacing:3.335209pt;}
.ls7_c00383{letter-spacing:3.361609pt;}
.ls24_c00383{letter-spacing:3.449609pt;}
.ls6_c00383{letter-spacing:3.731209pt;}
.ls2_c00383{letter-spacing:8.673192pt;}
.ls4_c00383{letter-spacing:17.211695pt;}
.ls26_c00383{letter-spacing:41.817600pt;}
.ls9_c00383{letter-spacing:43.084976pt;}
.ls12_c00383{letter-spacing:44.352176pt;}
.ls1f_c00383{letter-spacing:45.619376pt;}
.ls11_c00383{letter-spacing:50.688176pt;}
.ls1_c00383{letter-spacing:50.916219pt;}
.ls15_c00383{letter-spacing:53.222576pt;}
.ws5_c00383{word-spacing:-18.535911pt;}
.ws1_c00383{word-spacing:-16.808044pt;}
.ws0_c00383{word-spacing:-15.691990pt;}
.ws2_c00383{word-spacing:-9.386186pt;}
.ws6_c00383{word-spacing:0.000000pt;}
.ws3_c00383{word-spacing:0.739801pt;}
.ws4_c00383{word-spacing:3.697843pt;}
._17_c00383{margin-left:-19.900584pt;}
._16_c00383{margin-left:-11.227832pt;}
._1a_c00383{margin-left:-9.614137pt;}
._14_c00383{margin-left:-8.470313pt;}
._e_c00383{margin-left:-7.194313pt;}
._7_c00383{margin-left:-4.820288pt;}
._c_c00383{margin-left:-2.246675pt;}
._4_c00383{width:1.179200pt;}
._18_c00383{width:4.504466pt;}
._f_c00383{width:5.782050pt;}
._5_c00383{width:6.924808pt;}
._3_c00383{width:7.932594pt;}
._d_c00383{width:8.875592pt;}
._8_c00383{width:10.689976pt;}
._1b_c00383{width:13.963884pt;}
._13_c00383{width:15.396040pt;}
._b_c00383{width:19.228479pt;}
._12_c00383{width:20.505887pt;}
._0_c00383{width:21.783295pt;}
._9_c00383{width:26.127606pt;}
._15_c00383{width:28.217948pt;}
._11_c00383{width:29.514902pt;}
._1_c00383{width:30.590640pt;}
._10_c00383{width:31.666326pt;}
._2_c00383{width:34.406470pt;}
._6_c00383{width:38.874122pt;}
._a_c00383{width:40.173760pt;}
._19_c00383{width:41.684099pt;}
.fs0_c00383{font-size:19.712000pt;}
.fsd_c00383{font-size:30.624000pt;}
.fs10_c00383{font-size:34.144000pt;}
.fs9_c00383{font-size:35.200000pt;}
.fsb_c00383{font-size:41.360000pt;}
.fs1b_c00383{font-size:41.817600pt;}
.fs3_c00383{font-size:43.084976pt;}
.fsf_c00383{font-size:44.352176pt;}
.fsc_c00383{font-size:45.056000pt;}
.fs18_c00383{font-size:45.619376pt;}
.fse_c00383{font-size:50.688176pt;}
.fs11_c00383{font-size:53.222576pt;}
.fs5_c00383{font-size:53.504000pt;}
.fs4_c00383{font-size:57.376000pt;}
.fs17_c00383{font-size:58.784176pt;}
.fs15_c00383{font-size:59.136000pt;}
.fs12_c00383{font-size:59.840000pt;}
.fsa_c00383{font-size:61.248000pt;}
.fs16_c00383{font-size:61.952176pt;}
.fs19_c00383{font-size:63.712176pt;}
.fs14_c00383{font-size:66.176000pt;}
.fs13_c00383{font-size:66.704176pt;}
.fs2_c00383{font-size:67.232176pt;}
.fs6_c00383{font-size:67.584176pt;}
.fs1a_c00383{font-size:68.992176pt;}
.fs8_c00383{font-size:70.400000pt;}
.fs7_c00383{font-size:71.104176pt;}
.fs1_c00383{font-size:74.624176pt;}
.y2a_c00383{bottom:-0.711880pt;}
.y0_c00383{bottom:0.000000pt;}
.y1_c00383{bottom:68.000000pt;}
.y29_c00383{bottom:133.611320pt;}
.y2c_c00383{bottom:153.886520pt;}
.y2b_c00383{bottom:160.851720pt;}
.y28_c00383{bottom:161.168520pt;}
.y27_c00383{bottom:190.635320pt;}
.y2_c00383{bottom:202.356920pt;}
.y26_c00383{bottom:219.780920pt;}
.y25_c00383{bottom:248.609720pt;}
.y24_c00383{bottom:277.434120pt;}
.y23_c00383{bottom:306.267320pt;}
.y21_c00383{bottom:335.096120pt;}
.y22_c00383{bottom:335.408520pt;}
.y20_c00383{bottom:364.241720pt;}
.y1f_c00383{bottom:421.894920pt;}
.y1e_c00383{bottom:442.486920pt;}
.y1c_c00383{bottom:446.926520pt;}
.y1d_c00383{bottom:453.574920pt;}
.y1b_c00383{bottom:454.212920pt;}
.y1a_c00383{bottom:482.408120pt;}
.y19_c00383{bottom:511.236920pt;}
.y18_c00383{bottom:539.744520pt;}
.y17_c00383{bottom:540.065720pt;}
.y16_c00383{bottom:568.890120pt;}
.y15_c00383{bottom:597.718920pt;}
.y14_c00383{bottom:626.547720pt;}
.y11_c00383{bottom:655.380920pt;}
.y12_c00383{bottom:655.693320pt;}
.y13_c00383{bottom:656.010120pt;}
.yf_c00383{bottom:684.209720pt;}
.y10_c00383{bottom:684.526520pt;}
.ye_c00383{bottom:709.866120pt;}
.yd_c00383{bottom:712.717320pt;}
.yc_c00383{bottom:713.038520pt;}
.ya_c00383{bottom:741.862920pt;}
.yb_c00383{bottom:751.050120pt;}
.y9_c00383{bottom:797.940920pt;}
.y8_c00383{bottom:820.746120pt;}
.y6_c00383{bottom:821.384120pt;}
.y7_c00383{bottom:826.769720pt;}
.y4_c00383{bottom:827.398920pt;}
.y5_c00383{bottom:827.720120pt;}
.y3_c00383{bottom:963.306120pt;}
.h2_c00383{height:20.559000pt;}
.h1e_c00383{height:27.850522pt;}
.h5_c00383{height:28.694594pt;}
.h11_c00383{height:29.538549pt;}
.h1b_c00383{height:30.382504pt;}
.hf_c00383{height:31.939875pt;}
.h10_c00383{height:33.758325pt;}
.h13_c00383{height:35.446236pt;}
.h12_c00383{height:35.611125pt;}
.hc_c00383{height:40.592578pt;}
.h17_c00383{height:43.137188pt;}
.h7_c00383{height:55.803000pt;}
.h6_c00383{height:59.841375pt;}
.hb_c00383{height:60.111562pt;}
.h19_c00383{height:60.802673pt;}
.h1a_c00383{height:61.310059pt;}
.h18_c00383{height:61.677000pt;}
.h14_c00383{height:62.411250pt;}
.h1c_c00383{height:64.209927pt;}
.h16_c00383{height:64.948125pt;}
.h15_c00383{height:65.466501pt;}
.h4_c00383{height:65.984704pt;}
.h1d_c00383{height:67.712048pt;}
.h9_c00383{height:69.784860pt;}
.h8_c00383{height:70.488184pt;}
.he_c00383{height:70.950000pt;}
.h3_c00383{height:73.239548pt;}
.ha_c00383{height:73.425000pt;}
.hd_c00383{height:84.990400pt;}
.h1_c00383{height:986.666667pt;}
.h0_c00383{height:1122.666667pt;}
.w1_c00383{width:689.333333pt;}
.w0_c00383{width:793.333333pt;}
.x0_c00383{left:0.000000pt;}
.x2_c00383{left:47.750253pt;}
.x1_c00383{left:52.000000pt;}
.x4_c00383{left:94.359453pt;}
.x1b_c00383{left:96.031453pt;}
.x74_c00383{left:100.097053pt;}
.x38_c00383{left:105.051453pt;}
.x2c_c00383{left:114.810653pt;}
.x4e_c00383{left:123.095853pt;}
.x1c_c00383{left:124.143053pt;}
.x5_c00383{left:132.406253pt;}
.x39_c00383{left:134.117853pt;}
.x1e_c00383{left:143.080653pt;}
.x6e_c00383{left:144.581053pt;}
.x1d_c00383{left:152.571453pt;}
.x65_c00383{left:160.570653pt;}
.x6_c00383{left:161.837853pt;}
.x6a_c00383{left:163.074253pt;}
.x60_c00383{left:165.247853pt;}
.x1f_c00383{left:172.780653pt;}
.x7b_c00383{left:174.910253pt;}
.x6f_c00383{left:180.559853pt;}
.x7_c00383{left:182.086653pt;}
.x3a_c00383{left:183.195453pt;}
.x20_c00383{left:191.920653pt;}
.x41_c00383{left:201.706253pt;}
.x4f_c00383{left:203.224253pt;}
.x2d_c00383{left:210.594253pt;}
.x21_c00383{left:212.099053pt;}
.x66_c00383{left:213.009853pt;}
.x57_c00383{left:220.476653pt;}
.x2e_c00383{left:221.972653pt;}
.x55_c00383{left:223.882253pt;}
.x2f_c00383{left:227.983053pt;}
.x8_c00383{left:231.573453pt;}
.x70_c00383{left:240.971853pt;}
.x9_c00383{left:242.023453pt;}
.x75_c00383{left:248.803853pt;}
.xa_c00383{left:249.943453pt;}
.x30_c00383{left:251.668253pt;}
.x6b_c00383{left:252.592253pt;}
.xb_c00383{left:261.665053pt;}
.x22_c00383{left:271.019453pt;}
.x76_c00383{left:273.272253pt;}
.x50_c00383{left:279.397053pt;}
.xc_c00383{left:281.157053pt;}
.x78_c00383{left:282.983053pt;}
.xd_c00383{left:290.669853pt;}
.x77_c00383{left:291.695053pt;}
.x5d_c00383{left:293.270253pt;}
.x63_c00383{left:299.522653pt;}
.x42_c00383{left:300.464253pt;}
.x71_c00383{left:301.388253pt;}
.x31_c00383{left:302.373853pt;}
.x79_c00383{left:307.561453pt;}
.x23_c00383{left:309.497453pt;}
.xe_c00383{left:310.870253pt;}
.x4c_c00383{left:320.409453pt;}
.x3b_c00383{left:322.068253pt;}
.x56_c00383{left:330.146653pt;}
.x51_c00383{left:331.176253pt;}
.x24_c00383{left:339.958653pt;}
.x4d_c00383{left:350.465853pt;}
.x7c_c00383{left:354.170653pt;}
.x6d_c00383{left:355.930653pt;}
.x58_c00383{left:358.918253pt;}
.xf_c00383{left:359.912653pt;}
.x25_c00383{left:369.517853pt;}
.x10_c00383{left:379.651053pt;}
.x7a_c00383{left:381.771853pt;}
.x61_c00383{left:388.380653pt;}
.x43_c00383{left:389.467453pt;}
.x11_c00383{left:398.659053pt;}
.x59_c00383{left:400.423453pt;}
.x32_c00383{left:408.193853pt;}
.x64_c00383{left:409.403853pt;}
.x12_c00383{left:418.129053pt;}
.x5a_c00383{left:419.431453pt;}
.x67_c00383{left:424.183453pt;}
.x26_c00383{left:428.715453pt;}
.x33_c00383{left:438.289853pt;}
.x47_c00383{left:447.595853pt;}
.x3c_c00383{left:448.959853pt;}
.x5b_c00383{left:455.234253pt;}
.x27_c00383{left:458.050253pt;}
.x68_c00383{left:466.788653pt;}
.x13_c00383{left:467.835853pt;}
.x5c_c00383{left:469.050253pt;}
.x3d_c00383{left:477.999853pt;}
.x14_c00383{left:486.271853pt;}
.x44_c00383{left:487.996653pt;}
.x34_c00383{left:497.236653pt;}
.x6c_c00383{left:505.878253pt;}
.x28_c00383{left:507.009053pt;}
.x35_c00383{left:507.924253pt;}
.x15_c00383{left:516.970653pt;}
.x52_c00383{left:526.795853pt;}
.x3e_c00383{left:535.103053pt;}
.x48_c00383{left:536.154653pt;}
.x29_c00383{left:545.786253pt;}
.x16_c00383{left:555.844653pt;}
.x49_c00383{left:556.737853pt;}
.x5e_c00383{left:558.867453pt;}
.x72_c00383{left:565.119853pt;}
.x17_c00383{left:566.043853pt;}
.x36_c00383{left:575.750253pt;}
.x2b_c00383{left:576.661053pt;}
.x45_c00383{left:585.826253pt;}
.x54_c00383{left:595.554653pt;}
.x46_c00383{left:596.469853pt;}
.x3f_c00383{left:605.388653pt;}
.x18_c00383{left:606.444653pt;}
.x7d_c00383{left:609.036253pt;}
.x3_c00383{left:614.980653pt;}
.x2a_c00383{left:617.589853pt;}
.x37_c00383{left:622.108653pt;}
.x1a_c00383{left:624.559453pt;}
.x5f_c00383{left:625.751853pt;}
.x40_c00383{left:634.670653pt;}
.x69_c00383{left:635.581453pt;}
.x73_c00383{left:643.087853pt;}
.x4a_c00383{left:644.064653pt;}
.x53_c00383{left:650.321453pt;}
.x19_c00383{left:654.928253pt;}
.x62_c00383{left:657.035853pt;}
.x4b_c00383{left:674.253053pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3f375f8bc1de99723a54306e.woff2')format("woff");}.ff1_c00384{font-family:ff1_c00384;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00384;src:url('chunks/assets/font_791a6143fdf8bca199710d51.woff2')format("woff");}.ff2_c00384{font-family:ff2_c00384;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00384;src:url('chunks/assets/font_dffbc32e6c3d84d3bee78f8f.woff2')format("woff");}.ff3_c00384{font-family:ff3_c00384;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00384;src:url('chunks/assets/font_d29eded1ddbe40a7496febc6.woff2')format("woff");}.ff4_c00384{font-family:ff4_c00384;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00384;src:url('chunks/assets/font_b7f9d381ff01ee446cc567e3.woff2')format("woff");}.ff5_c00384{font-family:ff5_c00384;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00384;src:url('chunks/assets/font_9f1ce20cdb9c15730c5eacf1.woff2')format("woff");}.ff6_c00384{font-family:ff6_c00384;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00384;src:url('chunks/assets/font_a35525547ac316b67dd7b062.woff2')format("woff");}.ff7_c00384{font-family:ff7_c00384;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00384;src:url('chunks/assets/font_46bcae1ed407f3e67b84f417.woff2')format("woff");}.ff8_c00384{font-family:ff8_c00384;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00384;src:url('chunks/assets/font_3b9414917e6f2934797dd3a5.woff2')format("woff");}.ff9_c00384{font-family:ff9_c00384;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5_c00384{transform:matrix(0.048214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048214,0.000000,0.000000,0.250000,0,0);}
.m11_c00384{transform:matrix(0.060607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060607,0.000000,0.000000,0.250000,0,0);}
.m14_c00384{transform:matrix(0.068183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.068183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.068183,0.000000,0.000000,0.250000,0,0);}
.m13_c00384{transform:matrix(0.081440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081440,0.000000,0.000000,0.250000,0,0);}
.m2a_c00384{transform:matrix(0.094994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094994,0.000000,0.000000,0.250000,0,0);}
.m45_c00384{transform:matrix(0.097223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097223,0.000000,0.000000,0.250000,0,0);}
.m60_c00384{transform:matrix(0.100962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100962,0.000000,0.000000,0.250000,0,0);}
.m3a_c00384{transform:matrix(0.105001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105001,0.000000,0.000000,0.250000,0,0);}
.m5f_c00384{transform:matrix(0.105304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105304,0.000000,0.000000,0.250000,0,0);}
.m63_c00384{transform:matrix(0.107145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107145,0.000000,0.000000,0.250000,0,0);}
.mdc_c00384{transform:matrix(0.107955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107955,0.000000,0.000000,0.250000,0,0);}
.m9f_c00384{transform:matrix(0.111884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111884,0.000000,0.000000,0.250000,0,0);}
.mfe_c00384{transform:matrix(0.117366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117366,0.000000,0.000000,0.250000,0,0);}
.mbc_c00384{transform:matrix(0.122081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122081,0.000000,0.000000,0.250000,0,0);}
.mdd_c00384{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);}
.mdb_c00384{transform:matrix(0.127842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127842,0.000000,0.000000,0.250000,0,0);}
.m7_c00384{transform:matrix(0.128666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128666,0.000000,0.000000,0.250000,0,0);}
.m9a_c00384{transform:matrix(0.134028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134028,0.000000,0.000000,0.250000,0,0);}
.mcf_c00384{transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);}
.m76_c00384{transform:matrix(0.141203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141203,0.000000,0.000000,0.250000,0,0);}
.m12_c00384{transform:matrix(0.151516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151516,0.000000,0.000000,0.250000,0,0);}
.m75_c00384{transform:matrix(0.152098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152098,0.000000,0.000000,0.250000,0,0);}
.mfc_c00384{transform:matrix(0.155583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155583,0.000000,0.000000,0.250000,0,0);}
.m2f_c00384{transform:matrix(0.157282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157282,0.000000,0.000000,0.250000,0,0);}
.m9_c00384{transform:matrix(0.158231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158231,0.000000,0.000000,0.250000,0,0);}
.m72_c00384{transform:matrix(0.163986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163986,0.000000,0.000000,0.250000,0,0);}
.md9_c00384{transform:matrix(0.168061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168061,0.000000,0.000000,0.250000,0,0);}
.m17_c00384{transform:matrix(0.173785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173785,0.000000,0.000000,0.250000,0,0);}
.m3d_c00384{transform:matrix(0.176264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176264,0.000000,0.000000,0.250000,0,0);}
.mab_c00384{transform:matrix(0.177149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177149,0.000000,0.000000,0.250000,0,0);}
.m84_c00384{transform:matrix(0.180395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180395,0.000000,0.000000,0.250000,0,0);}
.m4_c00384{transform:matrix(0.180467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180467,0.000000,0.000000,0.250000,0,0);}
.ma7_c00384{transform:matrix(0.184907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184907,0.000000,0.000000,0.250000,0,0);}
.mce_c00384{transform:matrix(0.185417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185417,0.000000,0.000000,0.250000,0,0);}
.md0_c00384{transform:matrix(0.185714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185714,0.000000,0.000000,0.250000,0,0);}
.m6_c00384{transform:matrix(0.187499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187499,0.000000,0.000000,0.250000,0,0);}
.md7_c00384{transform:matrix(0.189767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189767,0.000000,0.000000,0.250000,0,0);}
.m1f_c00384{transform:matrix(0.189804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189804,0.000000,0.000000,0.250000,0,0);}
.md6_c00384{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00384{transform:matrix(0.193802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193802,0.000000,0.000000,0.250000,0,0);}
.m1a_c00384{transform:matrix(0.194163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194163,0.000000,0.000000,0.250000,0,0);}
.mac_c00384{transform:matrix(0.194935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194935,0.000000,0.000000,0.250000,0,0);}
.mbd_c00384{transform:matrix(0.195924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195924,0.000000,0.000000,0.250000,0,0);}
.m27_c00384{transform:matrix(0.204713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204713,0.000000,0.000000,0.250000,0,0);}
.ma5_c00384{transform:matrix(0.209769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209769,0.000000,0.000000,0.250000,0,0);}
.m9b_c00384{transform:matrix(0.212775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212775,0.000000,0.000000,0.250000,0,0);}
.mf0_c00384{transform:matrix(0.217538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217538,0.000000,0.000000,0.250000,0,0);}
.m49_c00384{transform:matrix(0.218184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218184,0.000000,0.000000,0.250000,0,0);}
.m90_c00384{transform:matrix(0.218360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218360,0.000000,0.000000,0.250000,0,0);}
.mae_c00384{transform:matrix(0.219154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219154,0.000000,0.000000,0.250000,0,0);}
.m41_c00384{transform:matrix(0.220678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220678,0.000000,0.000000,0.250000,0,0);}
.m15_c00384{transform:matrix(0.223622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223622,0.000000,0.000000,0.250000,0,0);}
.m4a_c00384{transform:matrix(0.224029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224029,0.000000,0.000000,0.250000,0,0);}
.m47_c00384{transform:matrix(0.224660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224660,0.000000,0.000000,0.250000,0,0);}
.m1d_c00384{transform:matrix(0.228261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228261,0.000000,0.000000,0.250000,0,0);}
.mcd_c00384{transform:matrix(0.236713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236713,0.000000,0.000000,0.250000,0,0);}
.m7e_c00384{transform:matrix(0.239491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239491,0.000000,0.000000,0.250000,0,0);}
.m61_c00384{transform:matrix(0.241071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241071,0.000000,0.000000,0.250000,0,0);}
.mb2_c00384{transform:matrix(0.246818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246818,0.000000,0.000000,0.250000,0,0);}
.m22_c00384{transform:matrix(0.247349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247349,0.000000,0.000000,0.250000,0,0);}
.mc2_c00384{transform:matrix(0.248348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248348,0.000000,0.000000,0.250000,0,0);}
.m1_c00384{transform:matrix(0.249884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249884,0.000000,0.000000,0.250000,0,0);}
.m0_c00384{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m68_c00384{transform:matrix(0.250531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250531,0.000000,0.000000,0.250000,0,0);}
.mf7_c00384{transform:matrix(0.255116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255116,0.000000,0.000000,0.250000,0,0);}
.m5c_c00384{transform:matrix(0.255425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255425,0.000000,0.000000,0.250000,0,0);}
.m3b_c00384{transform:matrix(0.257432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257432,0.000000,0.000000,0.250000,0,0);}
.m48_c00384{transform:matrix(0.257849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257849,0.000000,0.000000,0.250000,0,0);}
.m2e_c00384{transform:matrix(0.258264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258264,0.000000,0.000000,0.250000,0,0);}
.m20_c00384{transform:matrix(0.258665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258665,0.000000,0.000000,0.250000,0,0);}
.m50_c00384{transform:matrix(0.259877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259877,0.000000,0.000000,0.250000,0,0);}
.me0_c00384{transform:matrix(0.261986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261986,0.000000,0.000000,0.250000,0,0);}
.m109_c00384{transform:matrix(0.263362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263362,0.000000,0.000000,0.250000,0,0);}
.me7_c00384{transform:matrix(0.263560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263560,0.000000,0.000000,0.250000,0,0);}
.m19_c00384{transform:matrix(0.266579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266579,0.000000,0.000000,0.250000,0,0);}
.m39_c00384{transform:matrix(0.266767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266767,0.000000,0.000000,0.250000,0,0);}
.m95_c00384{transform:matrix(0.266787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266787,0.000000,0.000000,0.250000,0,0);}
.ma4_c00384{transform:matrix(0.267143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267143,0.000000,0.000000,0.250000,0,0);}
.m26_c00384{transform:matrix(0.269929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269929,0.000000,0.000000,0.250000,0,0);}
.m8e_c00384{transform:matrix(0.270034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270034,0.000000,0.000000,0.250000,0,0);}
.m25_c00384{transform:matrix(0.270118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270118,0.000000,0.000000,0.250000,0,0);}
.m70_c00384{transform:matrix(0.272236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272236,0.000000,0.000000,0.250000,0,0);}
.m8d_c00384{transform:matrix(0.272561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272561,0.000000,0.000000,0.250000,0,0);}
.m9c_c00384{transform:matrix(0.273723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273723,0.000000,0.000000,0.250000,0,0);}
.m2c_c00384{transform:matrix(0.275351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275351,0.000000,0.000000,0.250000,0,0);}
.m85_c00384{transform:matrix(0.276537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276537,0.000000,0.000000,0.250000,0,0);}
.m8a_c00384{transform:matrix(0.277560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277560,0.000000,0.000000,0.250000,0,0);}
.mca_c00384{transform:matrix(0.278817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278817,0.000000,0.000000,0.250000,0,0);}
.me5_c00384{transform:matrix(0.279565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279565,0.000000,0.000000,0.250000,0,0);}
.m66_c00384{transform:matrix(0.280010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280010,0.000000,0.000000,0.250000,0,0);}
.m6d_c00384{transform:matrix(0.280014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280014,0.000000,0.000000,0.250000,0,0);}
.ma1_c00384{transform:matrix(0.280311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280311,0.000000,0.000000,0.250000,0,0);}
.m51_c00384{transform:matrix(0.280595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280595,0.000000,0.000000,0.250000,0,0);}
.m104_c00384{transform:matrix(0.281344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281344,0.000000,0.000000,0.250000,0,0);}
.mb9_c00384{transform:matrix(0.281449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281449,0.000000,0.000000,0.250000,0,0);}
.ma2_c00384{transform:matrix(0.281606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281606,0.000000,0.000000,0.250000,0,0);}
.m56_c00384{transform:matrix(0.282201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282201,0.000000,0.000000,0.250000,0,0);}
.mb0_c00384{transform:matrix(0.282404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282404,0.000000,0.000000,0.250000,0,0);}
.m16_c00384{transform:matrix(0.283565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283565,0.000000,0.000000,0.250000,0,0);}
.md3_c00384{transform:matrix(0.284151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284151,0.000000,0.000000,0.250000,0,0);}
.m98_c00384{transform:matrix(0.284251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284251,0.000000,0.000000,0.250000,0,0);}
.m6b_c00384{transform:matrix(0.284684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284684,0.000000,0.000000,0.250000,0,0);}
.m54_c00384{transform:matrix(0.285320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285320,0.000000,0.000000,0.250000,0,0);}
.m30_c00384{transform:matrix(0.285993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285993,0.000000,0.000000,0.250000,0,0);}
.m79_c00384{transform:matrix(0.286629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286629,0.000000,0.000000,0.250000,0,0);}
.md4_c00384{transform:matrix(0.287241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287241,0.000000,0.000000,0.250000,0,0);}
.mfa_c00384{transform:matrix(0.287958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287958,0.000000,0.000000,0.250000,0,0);}
.m43_c00384{transform:matrix(0.288380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288380,0.000000,0.000000,0.250000,0,0);}
.m74_c00384{transform:matrix(0.289127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289127,0.000000,0.000000,0.250000,0,0);}
.mc1_c00384{transform:matrix(0.289156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289156,0.000000,0.000000,0.250000,0,0);}
.m33_c00384{transform:matrix(0.289782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289782,0.000000,0.000000,0.250000,0,0);}
.m2d_c00384{transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);}
.mb4_c00384{transform:matrix(0.290655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290655,0.000000,0.000000,0.250000,0,0);}
.m89_c00384{transform:matrix(0.291492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291492,0.000000,0.000000,0.250000,0,0);}
.m40_c00384{transform:matrix(0.292077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292077,0.000000,0.000000,0.250000,0,0);}
.mb8_c00384{transform:matrix(0.292280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292280,0.000000,0.000000,0.250000,0,0);}
.m5a_c00384{transform:matrix(0.292548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292548,0.000000,0.000000,0.250000,0,0);}
.mef_c00384{transform:matrix(0.292829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292829,0.000000,0.000000,0.250000,0,0);}
.md8_c00384{transform:matrix(0.293469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293469,0.000000,0.000000,0.250000,0,0);}
.m91_c00384{transform:matrix(0.294225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294225,0.000000,0.000000,0.250000,0,0);}
.mc4_c00384{transform:matrix(0.295509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295509,0.000000,0.000000,0.250000,0,0);}
.mc3_c00384{transform:matrix(0.295513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295513,0.000000,0.000000,0.250000,0,0);}
.md5_c00384{transform:matrix(0.296894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296894,0.000000,0.000000,0.250000,0,0);}
.mc8_c00384{transform:matrix(0.297321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297321,0.000000,0.000000,0.250000,0,0);}
.m80_c00384{transform:matrix(0.298568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298568,0.000000,0.000000,0.250000,0,0);}
.m88_c00384{transform:matrix(0.299046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299046,0.000000,0.000000,0.250000,0,0);}
.m32_c00384{transform:matrix(0.299053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299053,0.000000,0.000000,0.250000,0,0);}
.m71_c00384{transform:matrix(0.299800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299800,0.000000,0.000000,0.250000,0,0);}
.m10_c00384{transform:matrix(0.300364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300364,0.000000,0.000000,0.250000,0,0);}
.maf_c00384{transform:matrix(0.300796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300796,0.000000,0.000000,0.250000,0,0);}
.m65_c00384{transform:matrix(0.300881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300881,0.000000,0.000000,0.250000,0,0);}
.m5b_c00384{transform:matrix(0.301272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301272,0.000000,0.000000,0.250000,0,0);}
.mad_c00384{transform:matrix(0.301623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301623,0.000000,0.000000,0.250000,0,0);}
.m5e_c00384{transform:matrix(0.301907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301907,0.000000,0.000000,0.250000,0,0);}
.mfd_c00384{transform:matrix(0.301957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301957,0.000000,0.000000,0.250000,0,0);}
.m8_c00384{transform:matrix(0.302361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302361,0.000000,0.000000,0.250000,0,0);}
.m86_c00384{transform:matrix(0.302416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302416,0.000000,0.000000,0.250000,0,0);}
.mcc_c00384{transform:matrix(0.302986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302986,0.000000,0.000000,0.250000,0,0);}
.m62_c00384{transform:matrix(0.303574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303574,0.000000,0.000000,0.250000,0,0);}
.m78_c00384{transform:matrix(0.304893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304893,0.000000,0.000000,0.250000,0,0);}
.mb6_c00384{transform:matrix(0.305417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305417,0.000000,0.000000,0.250000,0,0);}
.m8f_c00384{transform:matrix(0.305628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305628,0.000000,0.000000,0.250000,0,0);}
.m101_c00384{transform:matrix(0.306051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306051,0.000000,0.000000,0.250000,0,0);}
.m2_c00384{transform:matrix(0.306205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306205,0.000000,0.000000,0.250000,0,0);}
.mf8_c00384{transform:matrix(0.306592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306592,0.000000,0.000000,0.250000,0,0);}
.maa_c00384{transform:matrix(0.306652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306652,0.000000,0.000000,0.250000,0,0);}
.ma0_c00384{transform:matrix(0.307142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307142,0.000000,0.000000,0.250000,0,0);}
.m96_c00384{transform:matrix(0.307446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307446,0.000000,0.000000,0.250000,0,0);}
.mf6_c00384{transform:matrix(0.308583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308583,0.000000,0.000000,0.250000,0,0);}
.m103_c00384{transform:matrix(0.308632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308632,0.000000,0.000000,0.250000,0,0);}
.m55_c00384{transform:matrix(0.308736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308736,0.000000,0.000000,0.250000,0,0);}
.m37_c00384{transform:matrix(0.308906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308906,0.000000,0.000000,0.250000,0,0);}
.mff_c00384{transform:matrix(0.309494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309494,0.000000,0.000000,0.250000,0,0);}
.mcb_c00384{transform:matrix(0.309576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309576,0.000000,0.000000,0.250000,0,0);}
.mb3_c00384{transform:matrix(0.309793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309793,0.000000,0.000000,0.250000,0,0);}
.mc0_c00384{transform:matrix(0.309828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309828,0.000000,0.000000,0.250000,0,0);}
.m83_c00384{transform:matrix(0.309932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309932,0.000000,0.000000,0.250000,0,0);}
.m24_c00384{transform:matrix(0.309986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309986,0.000000,0.000000,0.250000,0,0);}
.mf9_c00384{transform:matrix(0.310833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310833,0.000000,0.000000,0.250000,0,0);}
.m77_c00384{transform:matrix(0.311579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311579,0.000000,0.000000,0.250000,0,0);}
.mde_c00384{transform:matrix(0.313801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313801,0.000000,0.000000,0.250000,0,0);}
.mc_c00384{transform:matrix(0.314370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314370,0.000000,0.000000,0.250000,0,0);}
.md1_c00384{transform:matrix(0.315061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315061,0.000000,0.000000,0.250000,0,0);}
.m105_c00384{transform:matrix(0.315887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315887,0.000000,0.000000,0.250000,0,0);}
.m31_c00384{transform:matrix(0.315972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315972,0.000000,0.000000,0.250000,0,0);}
.mb1_c00384{transform:matrix(0.316293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316293,0.000000,0.000000,0.250000,0,0);}
.me4_c00384{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);}
.m53_c00384{transform:matrix(0.317428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317428,0.000000,0.000000,0.250000,0,0);}
.m6f_c00384{transform:matrix(0.318830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318830,0.000000,0.000000,0.250000,0,0);}
.m7d_c00384{transform:matrix(0.318831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318831,0.000000,0.000000,0.250000,0,0);}
.mf3_c00384{transform:matrix(0.318973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318973,0.000000,0.000000,0.250000,0,0);}
.mba_c00384{transform:matrix(0.320708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320708,0.000000,0.000000,0.250000,0,0);}
.m44_c00384{transform:matrix(0.320760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320760,0.000000,0.000000,0.250000,0,0);}
.m1e_c00384{transform:matrix(0.321390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321390,0.000000,0.000000,0.250000,0,0);}
.m7c_c00384{transform:matrix(0.321654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321654,0.000000,0.000000,0.250000,0,0);}
.m4d_c00384{transform:matrix(0.321707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321707,0.000000,0.000000,0.250000,0,0);}
.m5d_c00384{transform:matrix(0.321758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321758,0.000000,0.000000,0.250000,0,0);}
.ma_c00384{transform:matrix(0.321917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321917,0.000000,0.000000,0.250000,0,0);}
.ma6_c00384{transform:matrix(0.322970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322970,0.000000,0.000000,0.250000,0,0);}
.med_c00384{transform:matrix(0.322985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322985,0.000000,0.000000,0.250000,0,0);}
.m81_c00384{transform:matrix(0.324116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324116,0.000000,0.000000,0.250000,0,0);}
.m102_c00384{transform:matrix(0.325184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325184,0.000000,0.000000,0.250000,0,0);}
.m7f_c00384{transform:matrix(0.325397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325397,0.000000,0.000000,0.250000,0,0);}
.ma3_c00384{transform:matrix(0.326476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326476,0.000000,0.000000,0.250000,0,0);}
.m67_c00384{transform:matrix(0.327665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327665,0.000000,0.000000,0.250000,0,0);}
.mf_c00384{transform:matrix(0.327843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327843,0.000000,0.000000,0.250000,0,0);}
.m107_c00384{transform:matrix(0.328036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328036,0.000000,0.000000,0.250000,0,0);}
.mc7_c00384{transform:matrix(0.328213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328213,0.000000,0.000000,0.250000,0,0);}
.m28_c00384{transform:matrix(0.329733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329733,0.000000,0.000000,0.250000,0,0);}
.m6e_c00384{transform:matrix(0.329866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329866,0.000000,0.000000,0.250000,0,0);}
.md_c00384{transform:matrix(0.330222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330222,0.000000,0.000000,0.250000,0,0);}
.mf2_c00384{transform:matrix(0.332571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332571,0.000000,0.000000,0.250000,0,0);}
.m93_c00384{transform:matrix(0.332848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332848,0.000000,0.000000,0.250000,0,0);}
.m7b_c00384{transform:matrix(0.332974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332974,0.000000,0.000000,0.250000,0,0);}
.m8c_c00384{transform:matrix(0.333414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333414,0.000000,0.000000,0.250000,0,0);}
.m59_c00384{transform:matrix(0.333541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333541,0.000000,0.000000,0.250000,0,0);}
.m73_c00384{transform:matrix(0.334002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334002,0.000000,0.000000,0.250000,0,0);}
.mb5_c00384{transform:matrix(0.334941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334941,0.000000,0.000000,0.250000,0,0);}
.me1_c00384{transform:matrix(0.335937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335937,0.000000,0.000000,0.250000,0,0);}
.ma8_c00384{transform:matrix(0.335974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335974,0.000000,0.000000,0.250000,0,0);}
.m9d_c00384{transform:matrix(0.336348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336348,0.000000,0.000000,0.250000,0,0);}
.m106_c00384{transform:matrix(0.336631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336631,0.000000,0.000000,0.250000,0,0);}
.mc5_c00384{transform:matrix(0.336731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336731,0.000000,0.000000,0.250000,0,0);}
.m3c_c00384{transform:matrix(0.336756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336756,0.000000,0.000000,0.250000,0,0);}
.mf5_c00384{transform:matrix(0.337225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337225,0.000000,0.000000,0.250000,0,0);}
.me9_c00384{transform:matrix(0.337351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337351,0.000000,0.000000,0.250000,0,0);}
.m21_c00384{transform:matrix(0.338175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338175,0.000000,0.000000,0.250000,0,0);}
.m6a_c00384{transform:matrix(0.338754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338754,0.000000,0.000000,0.250000,0,0);}
.mb7_c00384{transform:matrix(0.338939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338939,0.000000,0.000000,0.250000,0,0);}
.m6c_c00384{transform:matrix(0.338956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338956,0.000000,0.000000,0.250000,0,0);}
.m8b_c00384{transform:matrix(0.338980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338980,0.000000,0.000000,0.250000,0,0);}
.mf1_c00384{transform:matrix(0.339952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339952,0.000000,0.000000,0.250000,0,0);}
.mee_c00384{transform:matrix(0.340413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340413,0.000000,0.000000,0.250000,0,0);}
.m23_c00384{transform:matrix(0.340952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340952,0.000000,0.000000,0.250000,0,0);}
.m94_c00384{transform:matrix(0.341043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341043,0.000000,0.000000,0.250000,0,0);}
.m35_c00384{transform:matrix(0.342311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342311,0.000000,0.000000,0.250000,0,0);}
.m100_c00384{transform:matrix(0.343079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343079,0.000000,0.000000,0.250000,0,0);}
.m4e_c00384{transform:matrix(0.343390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343390,0.000000,0.000000,0.250000,0,0);}
.m3e_c00384{transform:matrix(0.343580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343580,0.000000,0.000000,0.250000,0,0);}
.mda_c00384{transform:matrix(0.343827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343827,0.000000,0.000000,0.250000,0,0);}
.meb_c00384{transform:matrix(0.344334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344334,0.000000,0.000000,0.250000,0,0);}
.mbe_c00384{transform:matrix(0.344418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344418,0.000000,0.000000,0.250000,0,0);}
.m4c_c00384{transform:matrix(0.344971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344971,0.000000,0.000000,0.250000,0,0);}
.m99_c00384{transform:matrix(0.346729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346729,0.000000,0.000000,0.250000,0,0);}
.m4b_c00384{transform:matrix(0.347197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347197,0.000000,0.000000,0.250000,0,0);}
.mea_c00384{transform:matrix(0.348316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348316,0.000000,0.000000,0.250000,0,0);}
.m9e_c00384{transform:matrix(0.348463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348463,0.000000,0.000000,0.250000,0,0);}
.mc6_c00384{transform:matrix(0.349481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349481,0.000000,0.000000,0.250000,0,0);}
.mbb_c00384{transform:matrix(0.350439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350439,0.000000,0.000000,0.250000,0,0);}
.mb_c00384{transform:matrix(0.352299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352299,0.000000,0.000000,0.250000,0,0);}
.m38_c00384{transform:matrix(0.352594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352594,0.000000,0.000000,0.250000,0,0);}
.m52_c00384{transform:matrix(0.353488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353488,0.000000,0.000000,0.250000,0,0);}
.mfb_c00384{transform:matrix(0.355202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355202,0.000000,0.000000,0.250000,0,0);}
.m34_c00384{transform:matrix(0.356907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356907,0.000000,0.000000,0.250000,0,0);}
.md2_c00384{transform:matrix(0.359152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359152,0.000000,0.000000,0.250000,0,0);}
.mbf_c00384{transform:matrix(0.359876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359876,0.000000,0.000000,0.250000,0,0);}
.me2_c00384{transform:matrix(0.360809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360809,0.000000,0.000000,0.250000,0,0);}
.me8_c00384{transform:matrix(0.361853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361853,0.000000,0.000000,0.250000,0,0);}
.m42_c00384{transform:matrix(0.363517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363517,0.000000,0.000000,0.250000,0,0);}
.m4f_c00384{transform:matrix(0.364322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364322,0.000000,0.000000,0.250000,0,0);}
.mec_c00384{transform:matrix(0.366475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366475,0.000000,0.000000,0.250000,0,0);}
.m1b_c00384{transform:matrix(0.368443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368443,0.000000,0.000000,0.250000,0,0);}
.m108_c00384{transform:matrix(0.369302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369302,0.000000,0.000000,0.250000,0,0);}
.m3_c00384{transform:matrix(0.370983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370983,0.000000,0.000000,0.250000,0,0);}
.mdf_c00384{transform:matrix(0.373651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373651,0.000000,0.000000,0.250000,0,0);}
.m58_c00384{transform:matrix(0.374372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374372,0.000000,0.000000,0.250000,0,0);}
.me_c00384{transform:matrix(0.374654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374654,0.000000,0.000000,0.250000,0,0);}
.m87_c00384{transform:matrix(0.379355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379355,0.000000,0.000000,0.250000,0,0);}
.m7a_c00384{transform:matrix(0.392160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392160,0.000000,0.000000,0.250000,0,0);}
.m57_c00384{transform:matrix(0.394032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394032,0.000000,0.000000,0.250000,0,0);}
.mf4_c00384{transform:matrix(0.395715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395715,0.000000,0.000000,0.250000,0,0);}
.mc9_c00384{transform:matrix(0.401851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401851,0.000000,0.000000,0.250000,0,0);}
.m92_c00384{transform:matrix(0.403103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403103,0.000000,0.000000,0.250000,0,0);}
.me6_c00384{transform:matrix(0.405049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405049,0.000000,0.000000,0.250000,0,0);}
.me3_c00384{transform:matrix(0.406050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406050,0.000000,0.000000,0.250000,0,0);}
.m29_c00384{transform:matrix(0.410088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410088,0.000000,0.000000,0.250000,0,0);}
.m46_c00384{transform:matrix(0.418957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418957,0.000000,0.000000,0.250000,0,0);}
.m97_c00384{transform:matrix(0.433227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433227,0.000000,0.000000,0.250000,0,0);}
.m82_c00384{transform:matrix(0.446694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446694,0.000000,0.000000,0.250000,0,0);}
.m2b_c00384{transform:matrix(0.453298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453298,0.000000,0.000000,0.250000,0,0);}
.m69_c00384{transform:matrix(0.455298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455298,0.000000,0.000000,0.250000,0,0);}
.m3f_c00384{transform:matrix(0.464288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464288,0.000000,0.000000,0.250000,0,0);}
.m1c_c00384{transform:matrix(0.499204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499204,0.000000,0.000000,0.250000,0,0);}
.m36_c00384{transform:matrix(0.535704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535704,0.000000,0.000000,0.250000,0,0);}
.m18_c00384{transform:matrix(0.546866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546866,0.000000,0.000000,0.250000,0,0);}
.m64_c00384{transform:matrix(0.620631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620631,0.000000,0.000000,0.250000,0,0);}
.v1_c00384{vertical-align:-17.107200px;}
.v3_c00384{vertical-align:-5.702400px;}
.v0_c00384{vertical-align:0.000000px;}
.v2_c00384{vertical-align:25.680600px;}
.v4_c00384{vertical-align:31.343400px;}
.ls3c_c00384{letter-spacing:-3.548167px;}
.lsa_c00384{letter-spacing:-2.938327px;}
.ls1c_c00384{letter-spacing:-2.550240px;}
.lsc_c00384{letter-spacing:-2.515590px;}
.ls3a_c00384{letter-spacing:-2.443716px;}
.ls2e_c00384{letter-spacing:-2.182950px;}
.ls20_c00384{letter-spacing:-1.912680px;}
.ls31_c00384{letter-spacing:-1.775288px;}
.ls14_c00384{letter-spacing:-1.621620px;}
.ls35_c00384{letter-spacing:-1.434517px;}
.ls26_c00384{letter-spacing:-1.392930px;}
.ls34_c00384{letter-spacing:-1.288980px;}
.ls28_c00384{letter-spacing:-1.254330px;}
.lse_c00384{letter-spacing:-1.229045px;}
.ls37_c00384{letter-spacing:-1.157171px;}
.ls11_c00384{letter-spacing:-0.900900px;}
.ls29_c00384{letter-spacing:-0.720720px;}
.ls3b_c00384{letter-spacing:-0.668428px;}
.ls3e_c00384{letter-spacing:-0.452806px;}
.ls40_c00384{letter-spacing:-0.330620px;}
.ls9_c00384{letter-spacing:0.000000px;}
.ls3_c00384{letter-spacing:0.249084px;}
.ls8_c00384{letter-spacing:0.258746px;}
.ls2_c00384{letter-spacing:0.401544px;}
.ls1_c00384{letter-spacing:0.575883px;}
.ls25_c00384{letter-spacing:0.910800px;}
.ls41_c00384{letter-spacing:1.020611px;}
.ls2a_c00384{letter-spacing:1.029600px;}
.ls1d_c00384{letter-spacing:1.089000px;}
.ls0_c00384{letter-spacing:1.091475px;}
.ls1a_c00384{letter-spacing:1.128600px;}
.ls21_c00384{letter-spacing:1.296900px;}
.ls27_c00384{letter-spacing:1.395900px;}
.lsf_c00384{letter-spacing:1.673100px;}
.ls6_c00384{letter-spacing:1.703414px;}
.ls24_c00384{letter-spacing:1.748736px;}
.ls30_c00384{letter-spacing:1.890900px;}
.ls18_c00384{letter-spacing:1.940400px;}
.ls22_c00384{letter-spacing:1.989900px;}
.ls2d_c00384{letter-spacing:2.314343px;}
.ls13_c00384{letter-spacing:2.316600px;}
.ls33_c00384{letter-spacing:2.328718px;}
.ls16_c00384{letter-spacing:2.455200px;}
.ls1b_c00384{letter-spacing:2.475000px;}
.ls3f_c00384{letter-spacing:2.529965px;}
.ls38_c00384{letter-spacing:2.860585px;}
.ls2c_c00384{letter-spacing:3.088810px;}
.ls39_c00384{letter-spacing:3.148081px;}
.ls4_c00384{letter-spacing:3.320579px;}
.ls1f_c00384{letter-spacing:3.514500px;}
.ls36_c00384{letter-spacing:3.564000px;}
.lsb_c00384{letter-spacing:3.593700px;}
.ls2b_c00384{letter-spacing:3.643200px;}
.ls17_c00384{letter-spacing:9.979398px;}
.ls12_c00384{letter-spacing:11.404998px;}
.ls1e_c00384{letter-spacing:19.958400px;}
.ls7_c00384{letter-spacing:22.640310px;}
.ls5_c00384{letter-spacing:24.077790px;}
.ls15_c00384{letter-spacing:32.788998px;}
.ls19_c00384{letter-spacing:35.640000px;}
.ls2f_c00384{letter-spacing:37.065798px;}
.ls23_c00384{letter-spacing:38.491398px;}
.ls10_c00384{letter-spacing:47.044800px;}
.ls32_c00384{letter-spacing:51.321798px;}
.lsd_c00384{letter-spacing:57.024198px;}
.ls3d_c00384{letter-spacing:62.726400px;}
.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;}
}
.ws7_c00384{word-spacing:-19.671914px;}
.wsd_c00384{word-spacing:-18.989111px;}
.ws2_c00384{word-spacing:-17.968500px;}
.wsc_c00384{word-spacing:-17.637880px;}
.ws5_c00384{word-spacing:-16.811329px;}
.ws8_c00384{word-spacing:-15.524784px;}
.ws6_c00384{word-spacing:-3.594096px;}
.wsf_c00384{word-spacing:0.000000px;}
.ws1_c00384{word-spacing:0.459598px;}
.ws0_c00384{word-spacing:2.443716px;}
.ws3_c00384{word-spacing:2.515590px;}
.ws9_c00384{word-spacing:3.234330px;}
.ws4_c00384{word-spacing:3.306204px;}
.wsb_c00384{word-spacing:4.096818px;}
.wse_c00384{word-spacing:6.253038px;}
.wsa_c00384{word-spacing:8.913168px;}
._2a_c00384{margin-left:-22.189591px;}
._10_c00384{margin-left:-17.249760px;}
._5_c00384{margin-left:-12.937320px;}
._13_c00384{margin-left:-11.797632px;}
._4_c00384{margin-left:-6.006825px;}
._25_c00384{margin-left:-4.494600px;}
._6_c00384{margin-left:-1.732203px;}
._26_c00384{width:1.037223px;}
._27_c00384{width:2.235420px;}
._d_c00384{width:4.299372px;}
._12_c00384{width:5.742792px;}
._15_c00384{width:7.017516px;}
._1_c00384{width:8.193636px;}
._1b_c00384{width:9.200664px;}
._f_c00384{width:10.781100px;}
._18_c00384{width:12.952368px;}
._19_c00384{width:14.084928px;}
._16_c00384{width:15.834060px;}
._1c_c00384{width:18.949748px;}
._1e_c00384{width:22.373901px;}
._28_c00384{width:23.500818px;}
._1d_c00384{width:25.515270px;}
._11_c00384{width:27.468936px;}
._21_c00384{width:31.265388px;}
._e_c00384{width:34.054020px;}
._2b_c00384{width:36.042336px;}
._1f_c00384{width:38.021346px;}
._2c_c00384{width:39.257856px;}
._20_c00384{width:40.536936px;}
._9_c00384{width:41.941845px;}
._22_c00384{width:47.149344px;}
._2_c00384{width:49.496436px;}
._3_c00384{width:51.232500px;}
._23_c00384{width:52.827390px;}
._c_c00384{width:64.540080px;}
._a_c00384{width:65.679966px;}
._7_c00384{width:87.226128px;}
._b_c00384{width:119.829600px;}
._8_c00384{width:135.998280px;}
._14_c00384{width:145.650384px;}
._1a_c00384{width:160.434648px;}
._24_c00384{width:180.031500px;}
._29_c00384{width:226.154808px;}
._17_c00384{width:1321.556148px;}
._0_c00384{width:2512.989072px;}
.fc0_c00384{color:transparent;}
.fs14_c00384{font-size:9.979398px;}
.fsd_c00384{font-size:11.404998px;}
.fs3a_c00384{font-size:15.444198px;}
.fs2c_c00384{font-size:17.424000px;}
.fs28_c00384{font-size:18.216000px;}
.fs21_c00384{font-size:19.958400px;}
.fs2b_c00384{font-size:20.592000px;}
.fsa_c00384{font-size:20.790000px;}
.fs1f_c00384{font-size:21.780000px;}
.fs0_c00384{font-size:22.176000px;}
.fs19_c00384{font-size:22.572000px;}
.fsc_c00384{font-size:25.740000px;}
.fs24_c00384{font-size:25.938000px;}
.fs16_c00384{font-size:27.720000px;}
.fs29_c00384{font-size:27.918000px;}
.fse_c00384{font-size:30.492000px;}
.fs1e_c00384{font-size:30.888000px;}
.fs20_c00384{font-size:31.284000px;}
.fs10_c00384{font-size:32.788998px;}
.fs6_c00384{font-size:33.462000px;}
.fs3_c00384{font-size:33.660000px;}
.fs18_c00384{font-size:35.640000px;}
.fs2a_c00384{font-size:35.838000px;}
.fs27_c00384{font-size:36.432000px;}
.fs35_c00384{font-size:36.828000px;}
.fs30_c00384{font-size:37.065798px;}
.fs32_c00384{font-size:37.818000px;}
.fs26_c00384{font-size:38.491398px;}
.fs17_c00384{font-size:38.808000px;}
.fs1b_c00384{font-size:39.204000px;}
.fs25_c00384{font-size:39.798000px;}
.fs37_c00384{font-size:40.986198px;}
.fs8_c00384{font-size:44.550000px;}
.fsf_c00384{font-size:46.332000px;}
.fs7_c00384{font-size:47.044800px;}
.fs11_c00384{font-size:49.104000px;}
.fs1a_c00384{font-size:49.500000px;}
.fs36_c00384{font-size:49.896198px;}
.fs34_c00384{font-size:51.321798px;}
.fsb_c00384{font-size:51.678000px;}
.fs1c_c00384{font-size:53.064000px;}
.fs23_c00384{font-size:54.648000px;}
.fs31_c00384{font-size:57.024000px;}
.fs5_c00384{font-size:57.024198px;}
.fs9_c00384{font-size:61.380000px;}
.fs2e_c00384{font-size:61.776198px;}
.fs2f_c00384{font-size:62.370000px;}
.fs3d_c00384{font-size:62.726400px;}
.fs3e_c00384{font-size:64.152198px;}
.fs3b_c00384{font-size:64.548000px;}
.fs13_c00384{font-size:67.320000px;}
.fs33_c00384{font-size:67.914000px;}
.fs2d_c00384{font-size:68.904000px;}
.fs38_c00384{font-size:69.894000px;}
.fs22_c00384{font-size:70.290000px;}
.fs39_c00384{font-size:71.280000px;}
.fs4_c00384{font-size:71.874000px;}
.fs1d_c00384{font-size:72.864000px;}
.fs2_c00384{font-size:75.240000px;}
.fs12_c00384{font-size:76.032198px;}
.fs1_c00384{font-size:83.952198px;}
.fs3c_c00384{font-size:101.376198px;}
.fs15_c00384{font-size:120.384000px;}
.y0_c00384{bottom:0.000000px;}
.y1_c00384{bottom:76.500000px;}
.y2f_c00384{bottom:78.319935px;}
.y2e_c00384{bottom:147.817935px;}
.y2d_c00384{bottom:178.824735px;}
.y2c_c00384{bottom:214.464735px;}
.y2b_c00384{bottom:246.897135px;}
.y2a_c00384{bottom:278.973135px;}
.y29_c00384{bottom:311.400585px;}
.y27_c00384{bottom:343.837935px;}
.y28_c00384{bottom:352.747935px;}
.y25_c00384{bottom:376.263900px;}
.y26_c00384{bottom:376.270335px;}
.y24_c00384{bottom:441.130185px;}
.y23_c00384{bottom:473.567535px;}
.y22_c00384{bottom:505.638585px;}
.y21_c00384{bottom:537.719535px;}
.y1e_c00384{bottom:538.073460px;}
.y1f_c00384{bottom:538.075935px;}
.y20_c00384{bottom:545.911785px;}
.y1d_c00384{bottom:570.146985px;}
.y1c_c00384{bottom:602.227935px;}
.y1b_c00384{bottom:634.303935px;}
.y1a_c00384{bottom:666.731385px;}
.y19_c00384{bottom:698.455935px;}
.y16_c00384{bottom:730.888335px;}
.y18_c00384{bottom:731.244735px;}
.y17_c00384{bottom:733.021785px;}
.y15_c00384{bottom:763.677135px;}
.y14_c00384{bottom:795.748185px;}
.y13_c00384{bottom:823.903785px;}
.yf_c00384{bottom:827.111385px;}
.y11_c00384{bottom:828.536985px;}
.y12_c00384{bottom:829.962585px;}
.y10_c00384{bottom:831.031785px;}
.ye_c00384{bottom:850.995135px;}
.yd_c00384{bottom:856.692585px;}
.yb_c00384{bottom:860.617935px;}
.yc_c00384{bottom:860.969385px;}
.ya_c00384{bottom:884.848185px;}
.y7_c00384{bottom:892.332585px;}
.y9_c00384{bottom:893.050335px;}
.y8_c00384{bottom:898.391385px;}
.y6_c00384{bottom:925.121385px;}
.y5_c00384{bottom:1054.850985px;}
.y4_c00384{bottom:1065.547935px;}
.y3_c00384{bottom:1078.016985px;}
.y2_c00384{bottom:1082.293785px;}
.h12_c00384{height:6.646279px;}
.hc_c00384{height:7.595729px;}
.h1c_c00384{height:13.292294px;}
.h24_c00384{height:17.878008px;}
.h29_c00384{height:18.172688px;}
.h27_c00384{height:20.199867px;}
.h28_c00384{height:20.752875px;}
.hf_c00384{height:21.837473px;}
.h1a_c00384{height:21.950156px;}
.h16_c00384{height:22.142162px;}
.h15_c00384{height:23.736240px;}
.h2d_c00384{height:24.685821px;}
.hb_c00384{height:25.262402px;}
.h20_c00384{height:25.456729px;}
.h22_c00384{height:25.635271px;}
.h25_c00384{height:27.386358px;}
.h3b_c00384{height:28.911094px;}
.h9_c00384{height:31.331837px;}
.hd_c00384{height:31.802203px;}
.h1b_c00384{height:32.628234px;}
.h8_c00384{height:32.841123px;}
.h5_c00384{height:33.035449px;}
.h31_c00384{height:34.180317px;}
.h26_c00384{height:35.173037px;}
.h23_c00384{height:35.756016px;}
.h32_c00384{height:36.144668px;}
.h2f_c00384{height:37.116299px;}
.h7_c00384{height:37.978116px;}
.h14_c00384{height:38.087930px;}
.h21_c00384{height:39.059561px;}
.h34_c00384{height:40.225712px;}
.h39_c00384{height:41.775782px;}
.he_c00384{height:45.472324px;}
.h10_c00384{height:48.192891px;}
.h17_c00384{height:48.581543px;}
.h33_c00384{height:48.970390px;}
.h18_c00384{height:55.344094px;}
.h1f_c00384{height:56.996156px;}
.h2e_c00384{height:59.474250px;}
.h2b_c00384{height:60.629960px;}
.h2c_c00384{height:65.049961px;}
.h1d_c00384{height:65.136741px;}
.h2_c00384{height:65.287291px;}
.h3a_c00384{height:66.908738px;}
.h37_c00384{height:67.321547px;}
.h35_c00384{height:68.597139px;}
.h36_c00384{height:69.957422px;}
.h6_c00384{height:70.540400px;}
.h30_c00384{height:70.832180px;}
.h1e_c00384{height:70.839141px;}
.h2a_c00384{height:71.476453px;}
.h19_c00384{height:71.512031px;}
.ha_c00384{height:76.399731px;}
.h4_c00384{height:78.472969px;}
.h11_c00384{height:79.299207px;}
.h3_c00384{height:82.394491px;}
.h38_c00384{height:99.495194px;}
.h13_c00384{height:125.556750px;}
.h1_c00384{height:1110.000000px;}
.h0_c00384{height:1263.000000px;}
.w1_c00384{width:775.500000px;}
.w0_c00384{width:892.500000px;}
.x0_c00384{left:0.000000px;}
.x2_c00384{left:52.649835px;}
.x1_c00384{left:58.500000px;}
.x4f_c00384{left:96.170235px;}
.x19_c00384{left:97.521585px;}
.x77_c00384{left:99.243245px;}
.x94_c00384{left:101.070735px;}
.x30_c00384{left:108.292785px;}
.x82_c00384{left:110.262885px;}
.x95_c00384{left:111.312285px;}
.x1a_c00384{left:113.326935px;}
.x1b_c00384{left:115.821735px;}
.x50_c00384{left:119.118435px;}
.x91_c00384{left:120.286635px;}
.x8d_c00384{left:123.014085px;}
.x5b_c00384{left:124.731735px;}
.x51_c00384{left:129.642135px;}
.x1c_c00384{left:130.790535px;}
.x5a_c00384{left:133.359585px;}
.x64_c00384{left:141.269685px;}
.x31_c00384{left:142.348785px;}
.x1d_c00384{left:147.892785px;}
.x84_c00384{left:151.363131px;}
.x6_c00384{left:152.417085px;}
.x75_c00384{left:159.139185px;}
.x32_c00384{left:163.406085px;}
.x1e_c00384{left:173.410035px;}
.x83_c00384{left:174.434685px;}
.x88_c00384{left:176.488935px;}
.x5c_c00384{left:183.423885px;}
.x33_c00384{left:185.463285px;}
.x99_c00384{left:186.631485px;}
.x57_c00384{left:195.576135px;}
.x7_c00384{left:197.165085px;}
.x70_c00384{left:205.594935px;}
.x7c_c00384{left:206.872035px;}
.x52_c00384{left:207.985785px;}
.x1f_c00384{left:218.677785px;}
.x6b_c00384{left:229.335135px;}
.x8_c00384{left:230.933985px;}
.x8e_c00384{left:240.507285px;}
.x80_c00384{left:241.779435px;}
.x8f_c00384{left:251.199285px;}
.x9_c00384{left:252.322935px;}
.x5d_c00384{left:254.169285px;}
.x7d_c00384{left:261.223035px;}
.x34_c00384{left:262.267485px;}
.x20_c00384{left:263.856435px;}
.x48_c00384{left:265.410735px;}
.xa_c00384{left:271.568535px;}
.x85_c00384{left:272.627835px;}
.x43_c00384{left:274.063335px;}
.x35_c00384{left:284.695935px;}
.x44_c00384{left:296.006685px;}
.x6c_c00384{left:305.416635px;}
.x45_c00384{left:307.124385px;}
.x36_c00384{left:310.624035px;}
.x21_c00384{left:313.405935px;}
.x37_c00384{left:317.801535px;}
.x46_c00384{left:329.874585px;}
.xb_c00384{left:331.240785px;}
.x38_c00384{left:339.591435px;}
.x47_c00384{left:340.690335px;}
.x53_c00384{left:351.174435px;}
.x90_c00384{left:352.238685px;}
.x89_c00384{left:354.921585px;}
.x22_c00384{left:363.024735px;}
.xc_c00384{left:374.107785px;}
.xd_c00384{left:381.943635px;}
.x39_c00384{left:385.383885px;}
.x25_c00384{left:395.858085px;}
.xe_c00384{left:396.917385px;}
.x5e_c00384{left:398.511285px;}
.x23_c00384{left:400.129935px;}
.x24_c00384{left:407.000535px;}
.x78_c00384{left:408.223185px;}
.x26_c00384{left:409.356735px;}
.x27_c00384{left:411.886185px;}
.x3a_c00384{left:416.494635px;}
.x71_c00384{left:417.890535px;}
.x4e_c00384{left:427.330185px;}
.x28_c00384{left:428.795385px;}
.xf_c00384{left:429.928935px;}
.x92_c00384{left:431.314935px;}
.x42_c00384{left:437.542035px;}
.x49_c00384{left:438.566685px;}
.x6d_c00384{left:440.284335px;}
.x65_c00384{left:449.402235px;}
.x10_c00384{left:451.327785px;}
.x5f_c00384{left:460.411035px;}
.x29_c00384{left:461.782185px;}
.x11_c00384{left:472.568235px;}
.x69_c00384{left:475.493685px;}
.x4a_c00384{left:483.240435px;}
.x66_c00384{left:484.765035px;}
.x2a_c00384{left:494.863035px;}
.x93_c00384{left:496.169835px;}
.x2f_c00384{left:498.412185px;}
.x4c_c00384{left:501.426735px;}
.x60_c00384{left:505.866885px;}
.x4b_c00384{left:506.945985px;}
.x4d_c00384{left:511.019835px;}
.x3b_c00384{left:515.613435px;}
.x58_c00384{left:517.098435px;}
.x97_c00384{left:518.335935px;}
.x79_c00384{left:523.993785px;}
.x67_c00384{left:525.166935px;}
.x86_c00384{left:527.097435px;}
.x3c_c00384{left:529.013085px;}
.x12_c00384{left:531.458385px;}
.x59_c00384{left:536.398485px;}
.x2b_c00384{left:539.185335px;}
.x81_c00384{left:540.417885px;}
.x6a_c00384{left:549.501135px;}
.x7a_c00384{left:550.807935px;}
.x2c_c00384{left:553.797735px;}
.x76_c00384{left:559.529835px;}
.x7e_c00384{left:560.564385px;}
.x13_c00384{left:561.643485px;}
.x54_c00384{left:572.790885px;}
.x8a_c00384{left:573.795735px;}
.x3d_c00384{left:575.097585px;}
.x8c_c00384{left:578.780385px;}
.x61_c00384{left:582.656235px;}
.x3e_c00384{left:584.651085px;}
.x14_c00384{left:594.922335px;}
.x55_c00384{left:605.644035px;}
.x2d_c00384{left:615.088635px;}
.x6e_c00384{left:617.043885px;}
.x72_c00384{left:627.374535px;}
.x98_c00384{left:629.869335px;}
.x62_c00384{left:638.477385px;}
.x15_c00384{left:650.342535px;}
.x63_c00384{left:660.193035px;}
.x16_c00384{left:671.043435px;}
.x96_c00384{left:672.360135px;}
.x73_c00384{left:682.314585px;}
.x17_c00384{left:683.581785px;}
.x68_c00384{left:693.570885px;}
.x3f_c00384{left:694.684635px;}
.x3_c00384{left:696.139935px;}
.x5_c00384{left:698.753535px;}
.x6f_c00384{left:703.475835px;}
.x87_c00384{left:704.728185px;}
.x56_c00384{left:705.817185px;}
.x4_c00384{left:707.158635px;}
.x8b_c00384{left:714.207435px;}
.x2e_c00384{left:715.776585px;}
.x40_c00384{left:726.998235px;}
.x7f_c00384{left:728.181285px;}
.x7b_c00384{left:729.250485px;}
.x18_c00384{left:731.032485px;}
.x74_c00384{left:737.873385px;}
.x41_c00384{left:748.921785px;}
@media print{
.v1_c00384{vertical-align:-15.206400pt;}
.v3_c00384{vertical-align:-5.068800pt;}
.v0_c00384{vertical-align:0.000000pt;}
.v2_c00384{vertical-align:22.827200pt;}
.v4_c00384{vertical-align:27.860800pt;}
.ls3c_c00384{letter-spacing:-3.153926pt;}
.lsa_c00384{letter-spacing:-2.611846pt;}
.ls1c_c00384{letter-spacing:-2.266880pt;}
.lsc_c00384{letter-spacing:-2.236080pt;}
.ls3a_c00384{letter-spacing:-2.172192pt;}
.ls2e_c00384{letter-spacing:-1.940400pt;}
.ls20_c00384{letter-spacing:-1.700160pt;}
.ls31_c00384{letter-spacing:-1.578034pt;}
.ls14_c00384{letter-spacing:-1.441440pt;}
.ls35_c00384{letter-spacing:-1.275126pt;}
.ls26_c00384{letter-spacing:-1.238160pt;}
.ls34_c00384{letter-spacing:-1.145760pt;}
.ls28_c00384{letter-spacing:-1.114960pt;}
.lse_c00384{letter-spacing:-1.092485pt;}
.ls37_c00384{letter-spacing:-1.028597pt;}
.ls11_c00384{letter-spacing:-0.800800pt;}
.ls29_c00384{letter-spacing:-0.640640pt;}
.ls3b_c00384{letter-spacing:-0.594158pt;}
.ls3e_c00384{letter-spacing:-0.402494pt;}
.ls40_c00384{letter-spacing:-0.293885pt;}
.ls9_c00384{letter-spacing:0.000000pt;}
.ls3_c00384{letter-spacing:0.221408pt;}
.ls8_c00384{letter-spacing:0.229997pt;}
.ls2_c00384{letter-spacing:0.356928pt;}
.ls1_c00384{letter-spacing:0.511896pt;}
.ls25_c00384{letter-spacing:0.809600pt;}
.ls41_c00384{letter-spacing:0.907210pt;}
.ls2a_c00384{letter-spacing:0.915200pt;}
.ls1d_c00384{letter-spacing:0.968000pt;}
.ls0_c00384{letter-spacing:0.970200pt;}
.ls1a_c00384{letter-spacing:1.003200pt;}
.ls21_c00384{letter-spacing:1.152800pt;}
.ls27_c00384{letter-spacing:1.240800pt;}
.lsf_c00384{letter-spacing:1.487200pt;}
.ls6_c00384{letter-spacing:1.514146pt;}
.ls24_c00384{letter-spacing:1.554432pt;}
.ls30_c00384{letter-spacing:1.680800pt;}
.ls18_c00384{letter-spacing:1.724800pt;}
.ls22_c00384{letter-spacing:1.768800pt;}
.ls2d_c00384{letter-spacing:2.057194pt;}
.ls13_c00384{letter-spacing:2.059200pt;}
.ls33_c00384{letter-spacing:2.069971pt;}
.ls16_c00384{letter-spacing:2.182400pt;}
.ls1b_c00384{letter-spacing:2.200000pt;}
.ls3f_c00384{letter-spacing:2.248858pt;}
.ls38_c00384{letter-spacing:2.542742pt;}
.ls2c_c00384{letter-spacing:2.745609pt;}
.ls39_c00384{letter-spacing:2.798294pt;}
.ls4_c00384{letter-spacing:2.951626pt;}
.ls1f_c00384{letter-spacing:3.124000pt;}
.ls36_c00384{letter-spacing:3.168000pt;}
.lsb_c00384{letter-spacing:3.194400pt;}
.ls2b_c00384{letter-spacing:3.238400pt;}
.ls17_c00384{letter-spacing:8.870576pt;}
.ls12_c00384{letter-spacing:10.137776pt;}
.ls1e_c00384{letter-spacing:17.740800pt;}
.ls7_c00384{letter-spacing:20.124720pt;}
.ls5_c00384{letter-spacing:21.402480pt;}
.ls15_c00384{letter-spacing:29.145776pt;}
.ls19_c00384{letter-spacing:31.680000pt;}
.ls2f_c00384{letter-spacing:32.947376pt;}
.ls23_c00384{letter-spacing:34.214576pt;}
.ls10_c00384{letter-spacing:41.817600pt;}
.ls32_c00384{letter-spacing:45.619376pt;}
.lsd_c00384{letter-spacing:50.688176pt;}
.ls3d_c00384{letter-spacing:55.756800pt;}
.ws7_c00384{word-spacing:-17.486146pt;}
.wsd_c00384{word-spacing:-16.879210pt;}
.ws2_c00384{word-spacing:-15.972000pt;}
.wsc_c00384{word-spacing:-15.678115pt;}
.ws5_c00384{word-spacing:-14.943403pt;}
.ws8_c00384{word-spacing:-13.799808pt;}
.ws6_c00384{word-spacing:-3.194752pt;}
.wsf_c00384{word-spacing:0.000000pt;}
.ws1_c00384{word-spacing:0.408531pt;}
.ws0_c00384{word-spacing:2.172192pt;}
.ws3_c00384{word-spacing:2.236080pt;}
.ws9_c00384{word-spacing:2.874960pt;}
.ws4_c00384{word-spacing:2.938848pt;}
.wsb_c00384{word-spacing:3.641616pt;}
.wse_c00384{word-spacing:5.558256pt;}
.wsa_c00384{word-spacing:7.922816pt;}
._2a_c00384{margin-left:-19.724080pt;}
._10_c00384{margin-left:-15.333120pt;}
._5_c00384{margin-left:-11.499840pt;}
._13_c00384{margin-left:-10.486784pt;}
._4_c00384{margin-left:-5.339400pt;}
._25_c00384{margin-left:-3.995200pt;}
._6_c00384{margin-left:-1.539736pt;}
._26_c00384{width:0.921976pt;}
._27_c00384{width:1.987040pt;}
._d_c00384{width:3.821664pt;}
._12_c00384{width:5.104704pt;}
._15_c00384{width:6.237792pt;}
._1_c00384{width:7.283232pt;}
._1b_c00384{width:8.178368pt;}
._f_c00384{width:9.583200pt;}
._18_c00384{width:11.513216pt;}
._19_c00384{width:12.519936pt;}
._16_c00384{width:14.074720pt;}
._1c_c00384{width:16.844221pt;}
._1e_c00384{width:19.887912pt;}
._28_c00384{width:20.889616pt;}
._1d_c00384{width:22.680240pt;}
._11_c00384{width:24.416832pt;}
._21_c00384{width:27.791456pt;}
._e_c00384{width:30.270240pt;}
._2b_c00384{width:32.037632pt;}
._1f_c00384{width:33.796752pt;}
._2c_c00384{width:34.895872pt;}
._20_c00384{width:36.032832pt;}
._9_c00384{width:37.281640pt;}
._22_c00384{width:41.910528pt;}
._2_c00384{width:43.996832pt;}
._3_c00384{width:45.540000pt;}
._23_c00384{width:46.957680pt;}
._c_c00384{width:57.368960pt;}
._a_c00384{width:58.382192pt;}
._7_c00384{width:77.534336pt;}
._b_c00384{width:106.515200pt;}
._8_c00384{width:120.887360pt;}
._14_c00384{width:129.467008pt;}
._1a_c00384{width:142.608576pt;}
._24_c00384{width:160.028000pt;}
._29_c00384{width:201.026496pt;}
._17_c00384{width:1174.716576pt;}
._0_c00384{width:2233.768064pt;}
.fs14_c00384{font-size:8.870576pt;}
.fsd_c00384{font-size:10.137776pt;}
.fs3a_c00384{font-size:13.728176pt;}
.fs2c_c00384{font-size:15.488000pt;}
.fs28_c00384{font-size:16.192000pt;}
.fs21_c00384{font-size:17.740800pt;}
.fs2b_c00384{font-size:18.304000pt;}
.fsa_c00384{font-size:18.480000pt;}
.fs1f_c00384{font-size:19.360000pt;}
.fs0_c00384{font-size:19.712000pt;}
.fs19_c00384{font-size:20.064000pt;}
.fsc_c00384{font-size:22.880000pt;}
.fs24_c00384{font-size:23.056000pt;}
.fs16_c00384{font-size:24.640000pt;}
.fs29_c00384{font-size:24.816000pt;}
.fse_c00384{font-size:27.104000pt;}
.fs1e_c00384{font-size:27.456000pt;}
.fs20_c00384{font-size:27.808000pt;}
.fs10_c00384{font-size:29.145776pt;}
.fs6_c00384{font-size:29.744000pt;}
.fs3_c00384{font-size:29.920000pt;}
.fs18_c00384{font-size:31.680000pt;}
.fs2a_c00384{font-size:31.856000pt;}
.fs27_c00384{font-size:32.384000pt;}
.fs35_c00384{font-size:32.736000pt;}
.fs30_c00384{font-size:32.947376pt;}
.fs32_c00384{font-size:33.616000pt;}
.fs26_c00384{font-size:34.214576pt;}
.fs17_c00384{font-size:34.496000pt;}
.fs1b_c00384{font-size:34.848000pt;}
.fs25_c00384{font-size:35.376000pt;}
.fs37_c00384{font-size:36.432176pt;}
.fs8_c00384{font-size:39.600000pt;}
.fsf_c00384{font-size:41.184000pt;}
.fs7_c00384{font-size:41.817600pt;}
.fs11_c00384{font-size:43.648000pt;}
.fs1a_c00384{font-size:44.000000pt;}
.fs36_c00384{font-size:44.352176pt;}
.fs34_c00384{font-size:45.619376pt;}
.fsb_c00384{font-size:45.936000pt;}
.fs1c_c00384{font-size:47.168000pt;}
.fs23_c00384{font-size:48.576000pt;}
.fs31_c00384{font-size:50.688000pt;}
.fs5_c00384{font-size:50.688176pt;}
.fs9_c00384{font-size:54.560000pt;}
.fs2e_c00384{font-size:54.912176pt;}
.fs2f_c00384{font-size:55.440000pt;}
.fs3d_c00384{font-size:55.756800pt;}
.fs3e_c00384{font-size:57.024176pt;}
.fs3b_c00384{font-size:57.376000pt;}
.fs13_c00384{font-size:59.840000pt;}
.fs33_c00384{font-size:60.368000pt;}
.fs2d_c00384{font-size:61.248000pt;}
.fs38_c00384{font-size:62.128000pt;}
.fs22_c00384{font-size:62.480000pt;}
.fs39_c00384{font-size:63.360000pt;}
.fs4_c00384{font-size:63.888000pt;}
.fs1d_c00384{font-size:64.768000pt;}
.fs2_c00384{font-size:66.880000pt;}
.fs12_c00384{font-size:67.584176pt;}
.fs1_c00384{font-size:74.624176pt;}
.fs3c_c00384{font-size:90.112176pt;}
.fs15_c00384{font-size:107.008000pt;}
.y0_c00384{bottom:0.000000pt;}
.y1_c00384{bottom:68.000000pt;}
.y2f_c00384{bottom:69.617720pt;}
.y2e_c00384{bottom:131.393720pt;}
.y2d_c00384{bottom:158.955320pt;}
.y2c_c00384{bottom:190.635320pt;}
.y2b_c00384{bottom:219.464120pt;}
.y2a_c00384{bottom:247.976120pt;}
.y29_c00384{bottom:276.800520pt;}
.y27_c00384{bottom:305.633720pt;}
.y28_c00384{bottom:313.553720pt;}
.y25_c00384{bottom:334.456800pt;}
.y26_c00384{bottom:334.462520pt;}
.y24_c00384{bottom:392.115720pt;}
.y23_c00384{bottom:420.948920pt;}
.y22_c00384{bottom:449.456520pt;}
.y21_c00384{bottom:477.972920pt;}
.y1e_c00384{bottom:478.287520pt;}
.y1f_c00384{bottom:478.289720pt;}
.y20_c00384{bottom:485.254920pt;}
.y1d_c00384{bottom:506.797320pt;}
.y1c_c00384{bottom:535.313720pt;}
.y1b_c00384{bottom:563.825720pt;}
.y1a_c00384{bottom:592.650120pt;}
.y19_c00384{bottom:620.849720pt;}
.y16_c00384{bottom:649.678520pt;}
.y18_c00384{bottom:649.995320pt;}
.y17_c00384{bottom:651.574920pt;}
.y15_c00384{bottom:678.824120pt;}
.y14_c00384{bottom:707.331720pt;}
.y13_c00384{bottom:732.358920pt;}
.yf_c00384{bottom:735.210120pt;}
.y11_c00384{bottom:736.477320pt;}
.y12_c00384{bottom:737.744520pt;}
.y10_c00384{bottom:738.694920pt;}
.ye_c00384{bottom:756.440120pt;}
.yd_c00384{bottom:761.504520pt;}
.yb_c00384{bottom:764.993720pt;}
.yc_c00384{bottom:765.306120pt;}
.ya_c00384{bottom:786.531720pt;}
.y7_c00384{bottom:793.184520pt;}
.y9_c00384{bottom:793.822520pt;}
.y8_c00384{bottom:798.570120pt;}
.y6_c00384{bottom:822.330120pt;}
.y5_c00384{bottom:937.645320pt;}
.y4_c00384{bottom:947.153720pt;}
.y3_c00384{bottom:958.237320pt;}
.y2_c00384{bottom:962.038920pt;}
.h12_c00384{height:5.907804pt;}
.hc_c00384{height:6.751759pt;}
.h1c_c00384{height:11.815373pt;}
.h24_c00384{height:15.891563pt;}
.h29_c00384{height:16.153500pt;}
.h27_c00384{height:17.955438pt;}
.h28_c00384{height:18.447000pt;}
.hf_c00384{height:19.411087pt;}
.h1a_c00384{height:19.511250pt;}
.h16_c00384{height:19.681922pt;}
.h15_c00384{height:21.098880pt;}
.h2d_c00384{height:21.942952pt;}
.hb_c00384{height:22.455469pt;}
.h20_c00384{height:22.628203pt;}
.h22_c00384{height:22.786908pt;}
.h25_c00384{height:24.343430pt;}
.h3b_c00384{height:25.698750pt;}
.h9_c00384{height:27.850522pt;}
.hd_c00384{height:28.268625pt;}
.h1b_c00384{height:29.002875pt;}
.h8_c00384{height:29.192109pt;}
.h5_c00384{height:29.364844pt;}
.h31_c00384{height:30.382504pt;}
.h26_c00384{height:31.264922pt;}
.h23_c00384{height:31.783125pt;}
.h32_c00384{height:32.128594pt;}
.h2f_c00384{height:32.992266pt;}
.h7_c00384{height:33.758325pt;}
.h14_c00384{height:33.855938pt;}
.h21_c00384{height:34.719609pt;}
.h34_c00384{height:35.756188pt;}
.h39_c00384{height:37.134029pt;}
.he_c00384{height:40.419844pt;}
.h10_c00384{height:42.838125pt;}
.h17_c00384{height:43.183594pt;}
.h33_c00384{height:43.529235pt;}
.h18_c00384{height:49.194750pt;}
.h1f_c00384{height:50.663250pt;}
.h2e_c00384{height:52.866000pt;}
.h2b_c00384{height:53.893298pt;}
.h2c_c00384{height:57.822188pt;}
.h1d_c00384{height:57.899325pt;}
.h2_c00384{height:58.033148pt;}
.h3a_c00384{height:59.474434pt;}
.h37_c00384{height:59.841375pt;}
.h35_c00384{height:60.975234pt;}
.h36_c00384{height:62.184375pt;}
.h6_c00384{height:62.702578pt;}
.h30_c00384{height:62.961938pt;}
.h1e_c00384{height:62.968125pt;}
.h2a_c00384{height:63.534625pt;}
.h19_c00384{height:63.566250pt;}
.ha_c00384{height:67.910872pt;}
.h4_c00384{height:69.753750pt;}
.h11_c00384{height:70.488184pt;}
.h3_c00384{height:73.239548pt;}
.h38_c00384{height:88.440173pt;}
.h13_c00384{height:111.606000pt;}
.h1_c00384{height:986.666667pt;}
.h0_c00384{height:1122.666667pt;}
.w1_c00384{width:689.333333pt;}
.w0_c00384{width:793.333333pt;}
.x0_c00384{left:0.000000pt;}
.x2_c00384{left:46.799853pt;}
.x1_c00384{left:52.000000pt;}
.x4f_c00384{left:85.484653pt;}
.x19_c00384{left:86.685853pt;}
.x77_c00384{left:88.216217pt;}
.x94_c00384{left:89.840653pt;}
.x30_c00384{left:96.260253pt;}
.x82_c00384{left:98.011453pt;}
.x95_c00384{left:98.944253pt;}
.x1a_c00384{left:100.735053pt;}
.x1b_c00384{left:102.952653pt;}
.x50_c00384{left:105.883053pt;}
.x91_c00384{left:106.921453pt;}
.x8d_c00384{left:109.345853pt;}
.x5b_c00384{left:110.872653pt;}
.x51_c00384{left:115.237453pt;}
.x1c_c00384{left:116.258253pt;}
.x5a_c00384{left:118.541853pt;}
.x64_c00384{left:125.573053pt;}
.x31_c00384{left:126.532253pt;}
.x1d_c00384{left:131.460253pt;}
.x84_c00384{left:134.545005pt;}
.x6_c00384{left:135.481853pt;}
.x75_c00384{left:141.457053pt;}
.x32_c00384{left:145.249853pt;}
.x1e_c00384{left:154.142253pt;}
.x83_c00384{left:155.053053pt;}
.x88_c00384{left:156.879053pt;}
.x5c_c00384{left:163.043453pt;}
.x33_c00384{left:164.856253pt;}
.x99_c00384{left:165.894653pt;}
.x57_c00384{left:173.845453pt;}
.x7_c00384{left:175.257853pt;}
.x70_c00384{left:182.751053pt;}
.x7c_c00384{left:183.886253pt;}
.x52_c00384{left:184.876253pt;}
.x1f_c00384{left:194.380253pt;}
.x6b_c00384{left:203.853453pt;}
.x8_c00384{left:205.274653pt;}
.x8e_c00384{left:213.784253pt;}
.x80_c00384{left:214.915053pt;}
.x8f_c00384{left:223.288253pt;}
.x9_c00384{left:224.287053pt;}
.x5d_c00384{left:225.928253pt;}
.x7d_c00384{left:232.198253pt;}
.x34_c00384{left:233.126653pt;}
.x20_c00384{left:234.539053pt;}
.x48_c00384{left:235.920653pt;}
.xa_c00384{left:241.394253pt;}
.x85_c00384{left:242.335853pt;}
.x43_c00384{left:243.611853pt;}
.x35_c00384{left:253.063053pt;}
.x44_c00384{left:263.117053pt;}
.x6c_c00384{left:271.481453pt;}
.x45_c00384{left:272.999453pt;}
.x36_c00384{left:276.110253pt;}
.x21_c00384{left:278.583053pt;}
.x37_c00384{left:282.490253pt;}
.x46_c00384{left:293.221853pt;}
.xb_c00384{left:294.436253pt;}
.x38_c00384{left:301.859053pt;}
.x47_c00384{left:302.835853pt;}
.x53_c00384{left:312.155053pt;}
.x90_c00384{left:313.101053pt;}
.x89_c00384{left:315.485853pt;}
.x22_c00384{left:322.688653pt;}
.xc_c00384{left:332.540253pt;}
.xd_c00384{left:339.505453pt;}
.x39_c00384{left:342.563453pt;}
.x25_c00384{left:351.873853pt;}
.xe_c00384{left:352.815453pt;}
.x5e_c00384{left:354.232253pt;}
.x23_c00384{left:355.671053pt;}
.x24_c00384{left:361.778253pt;}
.x78_c00384{left:362.865053pt;}
.x26_c00384{left:363.872653pt;}
.x27_c00384{left:366.121053pt;}
.x3a_c00384{left:370.217453pt;}
.x71_c00384{left:371.458253pt;}
.x4e_c00384{left:379.849053pt;}
.x28_c00384{left:381.151453pt;}
.xf_c00384{left:382.159053pt;}
.x92_c00384{left:383.391053pt;}
.x42_c00384{left:388.926253pt;}
.x49_c00384{left:389.837053pt;}
.x6d_c00384{left:391.363853pt;}
.x65_c00384{left:399.468653pt;}
.x10_c00384{left:401.180253pt;}
.x5f_c00384{left:409.254253pt;}
.x29_c00384{left:410.473053pt;}
.x11_c00384{left:420.060653pt;}
.x69_c00384{left:422.661053pt;}
.x4a_c00384{left:429.547053pt;}
.x66_c00384{left:430.902253pt;}
.x2a_c00384{left:439.878253pt;}
.x93_c00384{left:441.039853pt;}
.x2f_c00384{left:443.033053pt;}
.x4c_c00384{left:445.712653pt;}
.x60_c00384{left:449.659453pt;}
.x4b_c00384{left:450.618653pt;}
.x4d_c00384{left:454.239853pt;}
.x3b_c00384{left:458.323053pt;}
.x58_c00384{left:459.643053pt;}
.x97_c00384{left:460.743053pt;}
.x79_c00384{left:465.772253pt;}
.x67_c00384{left:466.815053pt;}
.x86_c00384{left:468.531053pt;}
.x3c_c00384{left:470.233853pt;}
.x12_c00384{left:472.407453pt;}
.x59_c00384{left:476.798653pt;}
.x2b_c00384{left:479.275853pt;}
.x81_c00384{left:480.371453pt;}
.x6a_c00384{left:488.445453pt;}
.x7a_c00384{left:489.607053pt;}
.x2c_c00384{left:492.264653pt;}
.x76_c00384{left:497.359853pt;}
.x7e_c00384{left:498.279453pt;}
.x13_c00384{left:499.238653pt;}
.x54_c00384{left:509.147453pt;}
.x8a_c00384{left:510.040653pt;}
.x3d_c00384{left:511.197853pt;}
.x8c_c00384{left:514.471453pt;}
.x61_c00384{left:517.916653pt;}
.x3e_c00384{left:519.689853pt;}
.x14_c00384{left:528.819853pt;}
.x55_c00384{left:538.350253pt;}
.x2d_c00384{left:546.745453pt;}
.x6e_c00384{left:548.483453pt;}
.x72_c00384{left:557.666253pt;}
.x98_c00384{left:559.883853pt;}
.x62_c00384{left:567.535453pt;}
.x15_c00384{left:578.082253pt;}
.x63_c00384{left:586.838253pt;}
.x16_c00384{left:596.483053pt;}
.x96_c00384{left:597.653453pt;}
.x73_c00384{left:606.501853pt;}
.x17_c00384{left:607.628253pt;}
.x68_c00384{left:616.507453pt;}
.x3f_c00384{left:617.497453pt;}
.x3_c00384{left:618.791053pt;}
.x5_c00384{left:621.114253pt;}
.x6f_c00384{left:625.311853pt;}
.x87_c00384{left:626.425053pt;}
.x56_c00384{left:627.393053pt;}
.x4_c00384{left:628.585453pt;}
.x8b_c00384{left:634.851053pt;}
.x2e_c00384{left:636.245853pt;}
.x40_c00384{left:646.220653pt;}
.x7f_c00384{left:647.272253pt;}
.x7b_c00384{left:648.222653pt;}
.x18_c00384{left:649.806653pt;}
.x74_c00384{left:655.887453pt;}
.x41_c00384{left:665.708253pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b3afaa147d3f4f6452823a91.woff2')format("woff");}.ff1_c00385{font-family:ff1_c00385;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00385;src:url('chunks/assets/font_3ca2ead75173673e25bb9fd9.woff2')format("woff");}.ff2_c00385{font-family:ff2_c00385;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00385;src:url('chunks/assets/font_ea8d1f79ad463640f1953df7.woff2')format("woff");}.ff3_c00385{font-family:ff3_c00385;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00385;src:url('chunks/assets/font_9ddf0c6224725c1fb6018e4c.woff2')format("woff");}.ff4_c00385{font-family:ff4_c00385;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ma4_c00385{transform:matrix(0.058559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.058559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.058559,0.000000,0.000000,0.250000,0,0);}
.ma8_c00385{transform:matrix(0.071047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071047,0.000000,0.000000,0.250000,0,0);}
.ma6_c00385{transform:matrix(0.081081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081081,0.000000,0.000000,0.250000,0,0);}
.m16_c00385{transform:matrix(0.096428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096428,0.000000,0.000000,0.250000,0,0);}
.m44_c00385{transform:matrix(0.103641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103641,0.000000,0.000000,0.250000,0,0);}
.m2e_c00385{transform:matrix(0.109746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109746,0.000000,0.000000,0.250000,0,0);}
.m24_c00385{transform:matrix(0.112184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112184,0.000000,0.000000,0.250000,0,0);}
.md4_c00385{transform:matrix(0.132744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132744,0.000000,0.000000,0.250000,0,0);}
.m1_c00385{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);}
.ma5_c00385{transform:matrix(0.141892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141892,0.000000,0.000000,0.250000,0,0);}
.m32_c00385{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m33_c00385{transform:matrix(0.164815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164815,0.000000,0.000000,0.250000,0,0);}
.ma9_c00385{transform:matrix(0.165055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165055,0.000000,0.000000,0.250000,0,0);}
.m68_c00385{transform:matrix(0.180054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180054,0.000000,0.000000,0.250000,0,0);}
.maa_c00385{transform:matrix(0.180180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180180,0.000000,0.000000,0.250000,0,0);}
.m15_c00385{transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);}
.ma3_c00385{transform:matrix(0.192568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192568,0.000000,0.000000,0.250000,0,0);}
.mab_c00385{transform:matrix(0.195946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195946,0.000000,0.000000,0.250000,0,0);}
.m71_c00385{transform:matrix(0.197121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197121,0.000000,0.000000,0.250000,0,0);}
.m59_c00385{transform:matrix(0.197461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197461,0.000000,0.000000,0.250000,0,0);}
.m6e_c00385{transform:matrix(0.200028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200028,0.000000,0.000000,0.250000,0,0);}
.m19_c00385{transform:matrix(0.209142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209142,0.000000,0.000000,0.250000,0,0);}
.m86_c00385{transform:matrix(0.209379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209379,0.000000,0.000000,0.250000,0,0);}
.md0_c00385{transform:matrix(0.210348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210348,0.000000,0.000000,0.250000,0,0);}
.m47_c00385{transform:matrix(0.218509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218509,0.000000,0.000000,0.250000,0,0);}
.m92_c00385{transform:matrix(0.228398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228398,0.000000,0.000000,0.250000,0,0);}
.m93_c00385{transform:matrix(0.232888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232888,0.000000,0.000000,0.250000,0,0);}
.m2f_c00385{transform:matrix(0.235331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235331,0.000000,0.000000,0.250000,0,0);}
.m2b_c00385{transform:matrix(0.236157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236157,0.000000,0.000000,0.250000,0,0);}
.m65_c00385{transform:matrix(0.241152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241152,0.000000,0.000000,0.250000,0,0);}
.mf_c00385{transform:matrix(0.242644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242644,0.000000,0.000000,0.250000,0,0);}
.mcb_c00385{transform:matrix(0.243211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243211,0.000000,0.000000,0.250000,0,0);}
.m7_c00385{transform:matrix(0.249744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249744,0.000000,0.000000,0.250000,0,0);}
.m0_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);}
.mae_c00385{transform:matrix(0.250463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250463,0.000000,0.000000,0.250000,0,0);}
.m98_c00385{transform:matrix(0.252142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252142,0.000000,0.000000,0.250000,0,0);}
.mce_c00385{transform:matrix(0.262540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262540,0.000000,0.000000,0.250000,0,0);}
.m6c_c00385{transform:matrix(0.263986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263986,0.000000,0.000000,0.250000,0,0);}
.m91_c00385{transform:matrix(0.264929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264929,0.000000,0.000000,0.250000,0,0);}
.mc4_c00385{transform:matrix(0.266029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266029,0.000000,0.000000,0.250000,0,0);}
.mb6_c00385{transform:matrix(0.267487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267487,0.000000,0.000000,0.250000,0,0);}
.ma7_c00385{transform:matrix(0.270728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270728,0.000000,0.000000,0.250000,0,0);}
.mc1_c00385{transform:matrix(0.270780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270780,0.000000,0.000000,0.250000,0,0);}
.m61_c00385{transform:matrix(0.270864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270864,0.000000,0.000000,0.250000,0,0);}
.m70_c00385{transform:matrix(0.271331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271331,0.000000,0.000000,0.250000,0,0);}
.mb1_c00385{transform:matrix(0.271903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271903,0.000000,0.000000,0.250000,0,0);}
.m40_c00385{transform:matrix(0.275530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275530,0.000000,0.000000,0.250000,0,0);}
.m8c_c00385{transform:matrix(0.275889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275889,0.000000,0.000000,0.250000,0,0);}
.m8b_c00385{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);}
.m69_c00385{transform:matrix(0.276072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276072,0.000000,0.000000,0.250000,0,0);}
.me_c00385{transform:matrix(0.277927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277927,0.000000,0.000000,0.250000,0,0);}
.m6a_c00385{transform:matrix(0.278509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278509,0.000000,0.000000,0.250000,0,0);}
.mb5_c00385{transform:matrix(0.279559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279559,0.000000,0.000000,0.250000,0,0);}
.m5b_c00385{transform:matrix(0.280106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280106,0.000000,0.000000,0.250000,0,0);}
.m14_c00385{transform:matrix(0.280779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280779,0.000000,0.000000,0.250000,0,0);}
.m7c_c00385{transform:matrix(0.280961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280961,0.000000,0.000000,0.250000,0,0);}
.m4f_c00385{transform:matrix(0.280998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280998,0.000000,0.000000,0.250000,0,0);}
.m2_c00385{transform:matrix(0.281085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281085,0.000000,0.000000,0.250000,0,0);}
.m60_c00385{transform:matrix(0.282005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282005,0.000000,0.000000,0.250000,0,0);}
.ma1_c00385{transform:matrix(0.282980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282980,0.000000,0.000000,0.250000,0,0);}
.m51_c00385{transform:matrix(0.284289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284289,0.000000,0.000000,0.250000,0,0);}
.m4e_c00385{transform:matrix(0.284593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284593,0.000000,0.000000,0.250000,0,0);}
.m4a_c00385{transform:matrix(0.284935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284935,0.000000,0.000000,0.250000,0,0);}
.m4c_c00385{transform:matrix(0.285470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285470,0.000000,0.000000,0.250000,0,0);}
.m67_c00385{transform:matrix(0.286107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286107,0.000000,0.000000,0.250000,0,0);}
.mbe_c00385{transform:matrix(0.286375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286375,0.000000,0.000000,0.250000,0,0);}
.m5_c00385{transform:matrix(0.288034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288034,0.000000,0.000000,0.250000,0,0);}
.m62_c00385{transform:matrix(0.288034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288034,0.000000,0.000000,0.250000,0,0);}
.m73_c00385{transform:matrix(0.289617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289617,0.000000,0.000000,0.250000,0,0);}
.mb8_c00385{transform:matrix(0.289713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289713,0.000000,0.000000,0.250000,0,0);}
.m3d_c00385{transform:matrix(0.293087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293087,0.000000,0.000000,0.250000,0,0);}
.m34_c00385{transform:matrix(0.293438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293438,0.000000,0.000000,0.250000,0,0);}
.m7f_c00385{transform:matrix(0.293700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293700,0.000000,0.000000,0.250000,0,0);}
.m1e_c00385{transform:matrix(0.293853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293853,0.000000,0.000000,0.250000,0,0);}
.mbf_c00385{transform:matrix(0.295036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295036,0.000000,0.000000,0.250000,0,0);}
.mb_c00385{transform:matrix(0.295116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295116,0.000000,0.000000,0.250000,0,0);}
.m29_c00385{transform:matrix(0.296324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296324,0.000000,0.000000,0.250000,0,0);}
.m99_c00385{transform:matrix(0.297140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297140,0.000000,0.000000,0.250000,0,0);}
.m89_c00385{transform:matrix(0.298140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298140,0.000000,0.000000,0.250000,0,0);}
.ma2_c00385{transform:matrix(0.298141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298141,0.000000,0.000000,0.250000,0,0);}
.m55_c00385{transform:matrix(0.298423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298423,0.000000,0.000000,0.250000,0,0);}
.m11_c00385{transform:matrix(0.298512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298512,0.000000,0.000000,0.250000,0,0);}
.m81_c00385{transform:matrix(0.299295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299295,0.000000,0.000000,0.250000,0,0);}
.m37_c00385{transform:matrix(0.299871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299871,0.000000,0.000000,0.250000,0,0);}
.m64_c00385{transform:matrix(0.299878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299878,0.000000,0.000000,0.250000,0,0);}
.m53_c00385{transform:matrix(0.302585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302585,0.000000,0.000000,0.250000,0,0);}
.m8_c00385{transform:matrix(0.303251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303251,0.000000,0.000000,0.250000,0,0);}
.mc6_c00385{transform:matrix(0.304053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304053,0.000000,0.000000,0.250000,0,0);}
.m13_c00385{transform:matrix(0.304661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304661,0.000000,0.000000,0.250000,0,0);}
.m4b_c00385{transform:matrix(0.304881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304881,0.000000,0.000000,0.250000,0,0);}
.m9f_c00385{transform:matrix(0.305311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305311,0.000000,0.000000,0.250000,0,0);}
.m76_c00385{transform:matrix(0.305637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305637,0.000000,0.000000,0.250000,0,0);}
.m2c_c00385{transform:matrix(0.305715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305715,0.000000,0.000000,0.250000,0,0);}
.mcd_c00385{transform:matrix(0.305992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305992,0.000000,0.000000,0.250000,0,0);}
.m54_c00385{transform:matrix(0.306072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306072,0.000000,0.000000,0.250000,0,0);}
.m5f_c00385{transform:matrix(0.306260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306260,0.000000,0.000000,0.250000,0,0);}
.m9_c00385{transform:matrix(0.307886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307886,0.000000,0.000000,0.250000,0,0);}
.m1d_c00385{transform:matrix(0.307989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307989,0.000000,0.000000,0.250000,0,0);}
.m5e_c00385{transform:matrix(0.308194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308194,0.000000,0.000000,0.250000,0,0);}
.m4d_c00385{transform:matrix(0.308295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308295,0.000000,0.000000,0.250000,0,0);}
.mb4_c00385{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);}
.m7a_c00385{transform:matrix(0.308804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308804,0.000000,0.000000,0.250000,0,0);}
.m97_c00385{transform:matrix(0.309824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309824,0.000000,0.000000,0.250000,0,0);}
.ma_c00385{transform:matrix(0.310133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310133,0.000000,0.000000,0.250000,0,0);}
.m56_c00385{transform:matrix(0.310648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310648,0.000000,0.000000,0.250000,0,0);}
.m6d_c00385{transform:matrix(0.311499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311499,0.000000,0.000000,0.250000,0,0);}
.mad_c00385{transform:matrix(0.311800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311800,0.000000,0.000000,0.250000,0,0);}
.m39_c00385{transform:matrix(0.312100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312100,0.000000,0.000000,0.250000,0,0);}
.m7b_c00385{transform:matrix(0.312119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312119,0.000000,0.000000,0.250000,0,0);}
.m8f_c00385{transform:matrix(0.312526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312526,0.000000,0.000000,0.250000,0,0);}
.m25_c00385{transform:matrix(0.312728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312728,0.000000,0.000000,0.250000,0,0);}
.md_c00385{transform:matrix(0.313349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313349,0.000000,0.000000,0.250000,0,0);}
.m48_c00385{transform:matrix(0.314004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314004,0.000000,0.000000,0.250000,0,0);}
.m90_c00385{transform:matrix(0.314085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314085,0.000000,0.000000,0.250000,0,0);}
.m96_c00385{transform:matrix(0.314094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314094,0.000000,0.000000,0.250000,0,0);}
.mc9_c00385{transform:matrix(0.314220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314220,0.000000,0.000000,0.250000,0,0);}
.m49_c00385{transform:matrix(0.314798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314798,0.000000,0.000000,0.250000,0,0);}
.m5a_c00385{transform:matrix(0.314913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314913,0.000000,0.000000,0.250000,0,0);}
.md3_c00385{transform:matrix(0.315100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315100,0.000000,0.000000,0.250000,0,0);}
.m9b_c00385{transform:matrix(0.315453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315453,0.000000,0.000000,0.250000,0,0);}
.m22_c00385{transform:matrix(0.315456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315456,0.000000,0.000000,0.250000,0,0);}
.mc5_c00385{transform:matrix(0.315619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315619,0.000000,0.000000,0.250000,0,0);}
.mb0_c00385{transform:matrix(0.316146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316146,0.000000,0.000000,0.250000,0,0);}
.ma0_c00385{transform:matrix(0.316844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316844,0.000000,0.000000,0.250000,0,0);}
.m9e_c00385{transform:matrix(0.317166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317166,0.000000,0.000000,0.250000,0,0);}
.m20_c00385{transform:matrix(0.317484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317484,0.000000,0.000000,0.250000,0,0);}
.m95_c00385{transform:matrix(0.317757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317757,0.000000,0.000000,0.250000,0,0);}
.m28_c00385{transform:matrix(0.318533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318533,0.000000,0.000000,0.250000,0,0);}
.m3_c00385{transform:matrix(0.319207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319207,0.000000,0.000000,0.250000,0,0);}
.mbd_c00385{transform:matrix(0.319713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319713,0.000000,0.000000,0.250000,0,0);}
.m85_c00385{transform:matrix(0.319824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319824,0.000000,0.000000,0.250000,0,0);}
.m1c_c00385{transform:matrix(0.320730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320730,0.000000,0.000000,0.250000,0,0);}
.mb7_c00385{transform:matrix(0.321230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321230,0.000000,0.000000,0.250000,0,0);}
.m35_c00385{transform:matrix(0.321305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321305,0.000000,0.000000,0.250000,0,0);}
.m2d_c00385{transform:matrix(0.321654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321654,0.000000,0.000000,0.250000,0,0);}
.mca_c00385{transform:matrix(0.321702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321702,0.000000,0.000000,0.250000,0,0);}
.m31_c00385{transform:matrix(0.322541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322541,0.000000,0.000000,0.250000,0,0);}
.mac_c00385{transform:matrix(0.322845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322845,0.000000,0.000000,0.250000,0,0);}
.m3e_c00385{transform:matrix(0.323165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323165,0.000000,0.000000,0.250000,0,0);}
.m8e_c00385{transform:matrix(0.323898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323898,0.000000,0.000000,0.250000,0,0);}
.m1a_c00385{transform:matrix(0.325010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325010,0.000000,0.000000,0.250000,0,0);}
.m27_c00385{transform:matrix(0.326081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326081,0.000000,0.000000,0.250000,0,0);}
.m57_c00385{transform:matrix(0.327130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327130,0.000000,0.000000,0.250000,0,0);}
.mcc_c00385{transform:matrix(0.328570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328570,0.000000,0.000000,0.250000,0,0);}
.mb9_c00385{transform:matrix(0.329471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329471,0.000000,0.000000,0.250000,0,0);}
.m82_c00385{transform:matrix(0.330202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330202,0.000000,0.000000,0.250000,0,0);}
.m1f_c00385{transform:matrix(0.330776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330776,0.000000,0.000000,0.250000,0,0);}
.m7e_c00385{transform:matrix(0.331642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331642,0.000000,0.000000,0.250000,0,0);}
.m1b_c00385{transform:matrix(0.334045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334045,0.000000,0.000000,0.250000,0,0);}
.mc2_c00385{transform:matrix(0.334157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334157,0.000000,0.000000,0.250000,0,0);}
.m50_c00385{transform:matrix(0.334334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334334,0.000000,0.000000,0.250000,0,0);}
.maf_c00385{transform:matrix(0.334552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334552,0.000000,0.000000,0.250000,0,0);}
.m43_c00385{transform:matrix(0.336759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336759,0.000000,0.000000,0.250000,0,0);}
.m88_c00385{transform:matrix(0.337557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337557,0.000000,0.000000,0.250000,0,0);}
.m72_c00385{transform:matrix(0.337661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337661,0.000000,0.000000,0.250000,0,0);}
.mc7_c00385{transform:matrix(0.338051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338051,0.000000,0.000000,0.250000,0,0);}
.m17_c00385{transform:matrix(0.338297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338297,0.000000,0.000000,0.250000,0,0);}
.mcf_c00385{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);}
.m46_c00385{transform:matrix(0.339598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339598,0.000000,0.000000,0.250000,0,0);}
.m3a_c00385{transform:matrix(0.342987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342987,0.000000,0.000000,0.250000,0,0);}
.m36_c00385{transform:matrix(0.343027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343027,0.000000,0.000000,0.250000,0,0);}
.m3f_c00385{transform:matrix(0.343800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343800,0.000000,0.000000,0.250000,0,0);}
.m8d_c00385{transform:matrix(0.344637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344637,0.000000,0.000000,0.250000,0,0);}
.mc8_c00385{transform:matrix(0.345110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345110,0.000000,0.000000,0.250000,0,0);}
.m66_c00385{transform:matrix(0.347784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347784,0.000000,0.000000,0.250000,0,0);}
.m8a_c00385{transform:matrix(0.348124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348124,0.000000,0.000000,0.250000,0,0);}
.m6_c00385{transform:matrix(0.348628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348628,0.000000,0.000000,0.250000,0,0);}
.mc0_c00385{transform:matrix(0.350939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350939,0.000000,0.000000,0.250000,0,0);}
.m5d_c00385{transform:matrix(0.351063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351063,0.000000,0.000000,0.250000,0,0);}
.m83_c00385{transform:matrix(0.351406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351406,0.000000,0.000000,0.250000,0,0);}
.m3c_c00385{transform:matrix(0.353886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353886,0.000000,0.000000,0.250000,0,0);}
.m23_c00385{transform:matrix(0.354095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354095,0.000000,0.000000,0.250000,0,0);}
.mc3_c00385{transform:matrix(0.354369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354369,0.000000,0.000000,0.250000,0,0);}
.mb2_c00385{transform:matrix(0.354997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354997,0.000000,0.000000,0.250000,0,0);}
.m26_c00385{transform:matrix(0.355663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355663,0.000000,0.000000,0.250000,0,0);}
.m5c_c00385{transform:matrix(0.355750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355750,0.000000,0.000000,0.250000,0,0);}
.md1_c00385{transform:matrix(0.355757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355757,0.000000,0.000000,0.250000,0,0);}
.m63_c00385{transform:matrix(0.355857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355857,0.000000,0.000000,0.250000,0,0);}
.mbc_c00385{transform:matrix(0.356182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356182,0.000000,0.000000,0.250000,0,0);}
.md6_c00385{transform:matrix(0.357736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357736,0.000000,0.000000,0.250000,0,0);}
.md5_c00385{transform:matrix(0.357807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357807,0.000000,0.000000,0.250000,0,0);}
.m9a_c00385{transform:matrix(0.357892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357892,0.000000,0.000000,0.250000,0,0);}
.m42_c00385{transform:matrix(0.358036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358036,0.000000,0.000000,0.250000,0,0);}
.m12_c00385{transform:matrix(0.359696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359696,0.000000,0.000000,0.250000,0,0);}
.m52_c00385{transform:matrix(0.361403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361403,0.000000,0.000000,0.250000,0,0);}
.m6f_c00385{transform:matrix(0.361512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361512,0.000000,0.000000,0.250000,0,0);}
.m18_c00385{transform:matrix(0.364411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364411,0.000000,0.000000,0.250000,0,0);}
.m2a_c00385{transform:matrix(0.364520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364520,0.000000,0.000000,0.250000,0,0);}
.m30_c00385{transform:matrix(0.366242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366242,0.000000,0.000000,0.250000,0,0);}
.m75_c00385{transform:matrix(0.367124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367124,0.000000,0.000000,0.250000,0,0);}
.m7d_c00385{transform:matrix(0.367828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367828,0.000000,0.000000,0.250000,0,0);}
.m41_c00385{transform:matrix(0.367938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367938,0.000000,0.000000,0.250000,0,0);}
.m77_c00385{transform:matrix(0.368849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368849,0.000000,0.000000,0.250000,0,0);}
.m21_c00385{transform:matrix(0.369600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369600,0.000000,0.000000,0.250000,0,0);}
.m78_c00385{transform:matrix(0.370404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370404,0.000000,0.000000,0.250000,0,0);}
.md2_c00385{transform:matrix(0.371147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371147,0.000000,0.000000,0.250000,0,0);}
.m10_c00385{transform:matrix(0.373986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373986,0.000000,0.000000,0.250000,0,0);}
.m80_c00385{transform:matrix(0.375520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375520,0.000000,0.000000,0.250000,0,0);}
.m94_c00385{transform:matrix(0.382165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382165,0.000000,0.000000,0.250000,0,0);}
.m45_c00385{transform:matrix(0.390648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390648,0.000000,0.000000,0.250000,0,0);}
.m6b_c00385{transform:matrix(0.393166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393166,0.000000,0.000000,0.250000,0,0);}
.m79_c00385{transform:matrix(0.395285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395285,0.000000,0.000000,0.250000,0,0);}
.mb3_c00385{transform:matrix(0.395791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395791,0.000000,0.000000,0.250000,0,0);}
.m58_c00385{transform:matrix(0.395866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395866,0.000000,0.000000,0.250000,0,0);}
.m87_c00385{transform:matrix(0.396807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396807,0.000000,0.000000,0.250000,0,0);}
.m9d_c00385{transform:matrix(0.399035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399035,0.000000,0.000000,0.250000,0,0);}
.m84_c00385{transform:matrix(0.407016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407016,0.000000,0.000000,0.250000,0,0);}
.mba_c00385{transform:matrix(0.409907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409907,0.000000,0.000000,0.250000,0,0);}
.m3b_c00385{transform:matrix(0.413496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413496,0.000000,0.000000,0.250000,0,0);}
.mbb_c00385{transform:matrix(0.421741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421741,0.000000,0.000000,0.250000,0,0);}
.md7_c00385{transform:matrix(0.433725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433725,0.000000,0.000000,0.250000,0,0);}
.m4_c00385{transform:matrix(0.438526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438526,0.000000,0.000000,0.250000,0,0);}
.mc_c00385{transform:matrix(0.439587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439587,0.000000,0.000000,0.250000,0,0);}
.m38_c00385{transform:matrix(0.446086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446086,0.000000,0.000000,0.250000,0,0);}
.m74_c00385{transform:matrix(0.456063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456063,0.000000,0.000000,0.250000,0,0);}
.m9c_c00385{transform:matrix(0.464508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464508,0.000000,0.000000,0.250000,0,0);}
.v1_c00385{vertical-align:-22.829400px;}
.v0_c00385{vertical-align:0.000000px;}
.ls17_c00385{letter-spacing:-3.021480px;}
.lsd_c00385{letter-spacing:-2.508667px;}
.ls16_c00385{letter-spacing:-2.432430px;}
.ls20_c00385{letter-spacing:-1.968120px;}
.ls24_c00385{letter-spacing:-1.614690px;}
.ls11_c00385{letter-spacing:-1.347513px;}
.ls22_c00385{letter-spacing:-0.680924px;}
.ls1a_c00385{letter-spacing:-0.666589px;}
.ls21_c00385{letter-spacing:-0.602080px;}
.ls1c_c00385{letter-spacing:-0.344046px;}
.lsa_c00385{letter-spacing:0.000000px;}
.ls19_c00385{letter-spacing:0.824276px;}
.ls2_c00385{letter-spacing:1.056370px;}
.ls14_c00385{letter-spacing:1.132484px;}
.ls15_c00385{letter-spacing:1.168322px;}
.lsf_c00385{letter-spacing:1.619838px;}
.ls7_c00385{letter-spacing:1.784737px;}
.ls5_c00385{letter-spacing:2.085777px;}
.ls25_c00385{letter-spacing:2.306700px;}
.ls4_c00385{letter-spacing:2.336644px;}
.ls1d_c00385{letter-spacing:2.343812px;}
.lse_c00385{letter-spacing:2.515835px;}
.ls10_c00385{letter-spacing:2.673000px;}
.ls1f_c00385{letter-spacing:2.811600px;}
.ls12_c00385{letter-spacing:2.924389px;}
.ls23_c00385{letter-spacing:3.177900px;}
.ls9_c00385{letter-spacing:3.239764px;}
.lsc_c00385{letter-spacing:3.583810px;}
.ls1b_c00385{letter-spacing:3.702610px;}
.ls3_c00385{letter-spacing:5.518161px;}
.ls1_c00385{letter-spacing:18.555966px;}
.ls0_c00385{letter-spacing:24.083279px;}
.ls6_c00385{letter-spacing:25.230095px;}
.ls8_c00385{letter-spacing:26.950517px;}
.lsb_c00385{letter-spacing:31.363200px;}
.ls13_c00385{letter-spacing:49.896198px;}
.ls1e_c00385{letter-spacing:52.747398px;}
.ls18_c00385{letter-spacing:64.152198px;}
.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;}
}
.ws2_c00385{word-spacing:-20.843438px;}
.ws6_c00385{word-spacing:-17.919050px;}
.ws1_c00385{word-spacing:-16.571537px;}
.ws0_c00385{word-spacing:-3.870455px;}
.ws8_c00385{word-spacing:-2.049937px;}
.wsb_c00385{word-spacing:0.000000px;}
.ws7_c00385{word-spacing:3.225503px;}
.ws5_c00385{word-spacing:4.802385px;}
.ws3_c00385{word-spacing:7.239567px;}
.wsa_c00385{word-spacing:7.309170px;}
.ws9_c00385{word-spacing:7.669227px;}
.ws4_c00385{word-spacing:10.565363px;}
._c_c00385{margin-left:-11.539924px;}
._1e_c00385{margin-left:-9.140874px;}
._1c_c00385{margin-left:-7.024336px;}
._10_c00385{margin-left:-5.303969px;}
._0_c00385{margin-left:-1.679650px;}
._a_c00385{width:2.250506px;}
._1_c00385{width:5.541921px;}
._f_c00385{width:7.812722px;}
._9_c00385{width:8.916264px;}
._2_c00385{width:10.178102px;}
._3_c00385{width:11.468270px;}
._12_c00385{width:12.471734px;}
._5_c00385{width:14.908718px;}
._6_c00385{width:18.994877px;}
._7_c00385{width:21.216008px;}
._14_c00385{width:22.291379px;}
._4_c00385{width:23.724701px;}
._19_c00385{width:25.058188px;}
._1b_c00385{width:26.389889px;}
._1a_c00385{width:29.745780px;}
._18_c00385{width:31.680853px;}
._b_c00385{width:33.605035px;}
._8_c00385{width:35.541677px;}
._17_c00385{width:37.616971px;}
._e_c00385{width:40.037686px;}
._11_c00385{width:42.965901px;}
._15_c00385{width:44.152515px;}
._13_c00385{width:46.087795px;}
._1d_c00385{width:47.472480px;}
._d_c00385{width:48.837377px;}
._16_c00385{width:51.481666px;}
.fc0_c00385{color:transparent;}
.fsf_c00385{font-size:27.720000px;}
.fs4_c00385{font-size:31.363200px;}
.fs3_c00385{font-size:32.868000px;}
.fs0_c00385{font-size:33.660000px;}
.fs18_c00385{font-size:38.610000px;}
.fs5_c00385{font-size:39.204000px;}
.fs1a_c00385{font-size:46.134000px;}
.fs9_c00385{font-size:49.896198px;}
.fs15_c00385{font-size:52.747398px;}
.fs8_c00385{font-size:53.460000px;}
.fs10_c00385{font-size:55.836198px;}
.fs16_c00385{font-size:56.232000px;}
.fs17_c00385{font-size:63.558000px;}
.fse_c00385{font-size:64.152198px;}
.fsa_c00385{font-size:66.330000px;}
.fsb_c00385{font-size:69.498000px;}
.fs7_c00385{font-size:70.884000px;}
.fs6_c00385{font-size:71.676198px;}
.fs2_c00385{font-size:72.864000px;}
.fs11_c00385{font-size:74.052198px;}
.fs12_c00385{font-size:74.448000px;}
.fs13_c00385{font-size:76.824000px;}
.fs14_c00385{font-size:78.804000px;}
.fs1_c00385{font-size:83.952198px;}
.fsd_c00385{font-size:86.328000px;}
.fsc_c00385{font-size:91.872198px;}
.fs19_c00385{font-size:131.472198px;}
.y0_c00385{bottom:0.000000px;}
.y1_c00385{bottom:76.500000px;}
.y24_c00385{bottom:179.181135px;}
.y23_c00385{bottom:213.751935px;}
.y21_c00385{bottom:245.466585px;}
.y22_c00385{bottom:251.173935px;}
.y20_c00385{bottom:277.898985px;}
.y1f_c00385{bottom:310.331385px;}
.y1e_c00385{bottom:342.407385px;}
.y1d_c00385{bottom:374.844735px;}
.y1c_c00385{bottom:407.277135px;}
.y1b_c00385{bottom:440.778735px;}
.y1a_c00385{bottom:477.482985px;}
.y19_c00385{bottom:504.574335px;}
.y2_c00385{bottom:533.437785px;}
.y18_c00385{bottom:536.645385px;}
.y17_c00385{bottom:570.151935px;}
.y16_c00385{bottom:602.227935px;}
.y15_c00385{bottom:634.298985px;}
.y14_c00385{bottom:667.087785px;}
.y13_c00385{bottom:699.168735px;}
.y12_c00385{bottom:727.324335px;}
.y10_c00385{bottom:730.883385px;}
.y11_c00385{bottom:731.957535px;}
.yf_c00385{bottom:753.336585px;}
.yd_c00385{bottom:764.032545px;}
.ye_c00385{bottom:764.033535px;}
.yc_c00385{bottom:827.824185px;}
.yb_c00385{bottom:860.974335px;}
.ya_c00385{bottom:893.763135px;}
.y9_c00385{bottom:926.195535px;}
.y8_c00385{bottom:934.031385px;}
.y7_c00385{bottom:995.693535px;}
.y6_c00385{bottom:1006.385535px;}
.y5_c00385{bottom:1017.072585px;}
.y4_c00385{bottom:1029.546585px;}
.y3_c00385{bottom:1079.086185px;}
.h6_c00385{height:20.887891px;}
.h10_c00385{height:28.911094px;}
.h2_c00385{height:33.035449px;}
.ha_c00385{height:33.230868px;}
.h5_c00385{height:34.280297px;}
.h16_c00385{height:35.129767px;}
.h7_c00385{height:38.476582px;}
.hf_c00385{height:42.725364px;}
.h19_c00385{height:47.516869px;}
.h1b_c00385{height:48.116320px;}
.h9_c00385{height:52.468066px;}
.h17_c00385{height:55.188633px;}
.h11_c00385{height:58.235410px;}
.h18_c00385{height:66.289008px;}
.hc_c00385{height:68.208486px;}
.hb_c00385{height:69.180117px;}
.h8_c00385{height:70.346269px;}
.h4_c00385{height:71.512031px;}
.h12_c00385{height:72.678183px;}
.h13_c00385{height:73.066641px;}
.h14_c00385{height:75.398555px;}
.h15_c00385{height:77.341816px;}
.h3_c00385{height:82.394491px;}
.he_c00385{height:90.037406px;}
.hd_c00385{height:90.167538px;}
.h1a_c00385{height:137.121394px;}
.h1_c00385{height:1110.000000px;}
.h0_c00385{height:1263.000000px;}
.w1_c00385{width:775.500000px;}
.w0_c00385{width:892.500000px;}
.x0_c00385{left:0.000000px;}
.x2_c00385{left:35.493135px;}
.x1_c00385{left:58.500000px;}
.x18_c00385{left:99.283785px;}
.x8_c00385{left:101.357835px;}
.x5a_c00385{left:109.990635px;}
.x19_c00385{left:115.316835px;}
.x9_c00385{left:122.400285px;}
.x6b_c00385{left:132.206235px;}
.x65_c00385{left:134.077335px;}
.x63_c00385{left:142.185435px;}
.x1a_c00385{left:143.774385px;}
.x71_c00385{left:144.813885px;}
.x69_c00385{left:147.179985px;}
.x5b_c00385{left:152.164635px;}
.x2f_c00385{left:153.582068px;}
.x24_c00385{left:155.020785px;}
.x4f_c00385{left:165.316785px;}
.x72_c00385{left:166.519635px;}
.xa_c00385{left:177.142335px;}
.x30_c00385{left:187.057185px;}
.x73_c00385{left:189.007485px;}
.x1b_c00385{left:197.427435px;}
.x25_c00385{left:199.189635px;}
.x50_c00385{left:200.976585px;}
.x6a_c00385{left:204.010935px;}
.xb_c00385{left:209.817285px;}
.x1c_c00385{left:216.821535px;}
.x31_c00385{left:220.880535px;}
.x74_c00385{left:222.088335px;}
.xc_c00385{left:232.527885px;}
.x62_c00385{left:234.572235px;}
.x5c_c00385{left:241.937835px;}
.x26_c00385{left:243.967335px;}
.x1d_c00385{left:254.268285px;}
.x42_c00385{left:257.020485px;}
.x32_c00385{left:265.069185px;}
.x1e_c00385{left:275.122635px;}
.xd_c00385{left:276.350235px;}
.x5d_c00385{left:277.825335px;}
.x33_c00385{left:285.814635px;}
.x54_c00385{left:287.695635px;}
.x1f_c00385{left:298.105485px;}
.x3c_c00385{left:299.110335px;}
.x6c_c00385{left:303.575235px;}
.xe_c00385{left:310.158735px;}
.x20_c00385{left:320.370585px;}
.x55_c00385{left:326.162085px;}
.x34_c00385{left:331.666485px;}
.x5e_c00385{left:342.096135px;}
.x56_c00385{left:343.294035px;}
.xf_c00385{left:353.703885px;}
.x75_c00385{left:355.035435px;}
.x43_c00385{left:365.267085px;}
.x3d_c00385{left:375.949185px;}
.x5f_c00385{left:377.216385px;}
.x10_c00385{left:387.205485px;}
.x27_c00385{left:398.041035px;}
.x6d_c00385{left:399.328035px;}
.x35_c00385{left:408.059835px;}
.x4a_c00385{left:409.619085px;}
.x11_c00385{left:418.751835px;}
.x21_c00385{left:420.316035px;}
.x6e_c00385{left:429.800235px;}
.x36_c00385{left:431.042685px;}
.x51_c00385{left:432.413835px;}
.x57_c00385{left:442.427685px;}
.x12_c00385{left:453.421635px;}
.x4b_c00385{left:456.248085px;}
.x13_c00385{left:464.509635px;}
.x60_c00385{left:474.350235px;}
.x4c_c00385{left:475.449135px;}
.x64_c00385{left:477.622185px;}
.x28_c00385{left:485.423385px;}
.x58_c00385{left:486.665835px;}
.x3e_c00385{left:497.971635px;}
.x14_c00385{left:508.594335px;}
.x66_c00385{left:519.895185px;}
.x47_c00385{left:521.013885px;}
.x37_c00385{left:530.265435px;}
.x52_c00385{left:531.893985px;}
.x29_c00385{left:539.927835px;}
.x48_c00385{left:542.605785px;}
.x3f_c00385{left:552.886935px;}
.x61_c00385{left:553.990785px;}
.x59_c00385{left:563.762085px;}
.x2a_c00385{left:574.553085px;}
.x70_c00385{left:575.686635px;}
.x53_c00385{left:577.424085px;}
.x38_c00385{left:585.373785px;}
.x6f_c00385{left:586.576635px;}
.x15_c00385{left:587.749785px;}
.x67_c00385{left:595.422285px;}
.x2b_c00385{left:596.748885px;}
.x44_c00385{left:607.851735px;}
.x22_c00385{left:618.004185px;}
.x2c_c00385{left:629.408985px;}
.x2d_c00385{left:639.363435px;}
.x45_c00385{left:640.586085px;}
.x4d_c00385{left:650.768235px;}
.x39_c00385{left:651.802785px;}
.x68_c00385{left:654.411435px;}
.x40_c00385{left:663.247185px;}
.x23_c00385{left:674.805435px;}
.x3_c00385{left:685.091535px;}
.x2e_c00385{left:695.833035px;}
.x3a_c00385{left:696.872535px;}
.x41_c00385{left:703.767885px;}
.x4_c00385{left:705.718185px;}
.x5_c00385{left:707.633835px;}
.x6_c00385{left:710.489985px;}
.x4e_c00385{left:718.241685px;}
.x16_c00385{left:719.360385px;}
.x49_c00385{left:729.631635px;}
.x3b_c00385{left:730.676085px;}
.x17_c00385{left:740.665185px;}
.x7_c00385{left:743.659935px;}
.x46_c00385{left:765.652785px;}
@media print{
.v1_c00385{vertical-align:-20.292800pt;}
.v0_c00385{vertical-align:0.000000pt;}
.ls17_c00385{letter-spacing:-2.685760pt;}
.lsd_c00385{letter-spacing:-2.229926pt;}
.ls16_c00385{letter-spacing:-2.162160pt;}
.ls20_c00385{letter-spacing:-1.749440pt;}
.ls24_c00385{letter-spacing:-1.435280pt;}
.ls11_c00385{letter-spacing:-1.197789pt;}
.ls22_c00385{letter-spacing:-0.605266pt;}
.ls1a_c00385{letter-spacing:-0.592523pt;}
.ls21_c00385{letter-spacing:-0.535182pt;}
.ls1c_c00385{letter-spacing:-0.305818pt;}
.lsa_c00385{letter-spacing:0.000000pt;}
.ls19_c00385{letter-spacing:0.732690pt;}
.ls2_c00385{letter-spacing:0.938995pt;}
.ls14_c00385{letter-spacing:1.006652pt;}
.ls15_c00385{letter-spacing:1.038508pt;}
.lsf_c00385{letter-spacing:1.439856pt;}
.ls7_c00385{letter-spacing:1.586433pt;}
.ls5_c00385{letter-spacing:1.854024pt;}
.ls25_c00385{letter-spacing:2.050400pt;}
.ls4_c00385{letter-spacing:2.077017pt;}
.ls1d_c00385{letter-spacing:2.083388pt;}
.lse_c00385{letter-spacing:2.236297pt;}
.ls10_c00385{letter-spacing:2.376000pt;}
.ls1f_c00385{letter-spacing:2.499200pt;}
.ls12_c00385{letter-spacing:2.599457pt;}
.ls23_c00385{letter-spacing:2.824800pt;}
.ls9_c00385{letter-spacing:2.879790pt;}
.lsc_c00385{letter-spacing:3.185609pt;}
.ls1b_c00385{letter-spacing:3.291209pt;}
.ls3_c00385{letter-spacing:4.905032pt;}
.ls1_c00385{letter-spacing:16.494192pt;}
.ls0_c00385{letter-spacing:21.407359pt;}
.ls6_c00385{letter-spacing:22.426751pt;}
.ls8_c00385{letter-spacing:23.956015pt;}
.lsb_c00385{letter-spacing:27.878400pt;}
.ls13_c00385{letter-spacing:44.352176pt;}
.ls1e_c00385{letter-spacing:46.886576pt;}
.ls18_c00385{letter-spacing:57.024176pt;}
.ws2_c00385{word-spacing:-18.527501pt;}
.ws6_c00385{word-spacing:-15.928044pt;}
.ws1_c00385{word-spacing:-14.730255pt;}
.ws0_c00385{word-spacing:-3.440404pt;}
.ws8_c00385{word-spacing:-1.822166pt;}
.wsb_c00385{word-spacing:0.000000pt;}
.ws7_c00385{word-spacing:2.867113pt;}
.ws5_c00385{word-spacing:4.268787pt;}
.ws3_c00385{word-spacing:6.435171pt;}
.wsa_c00385{word-spacing:6.497040pt;}
.ws9_c00385{word-spacing:6.817091pt;}
.ws4_c00385{word-spacing:9.391433pt;}
._c_c00385{margin-left:-10.257710pt;}
._1e_c00385{margin-left:-8.125221pt;}
._1c_c00385{margin-left:-6.243854pt;}
._10_c00385{margin-left:-4.714639pt;}
._0_c00385{margin-left:-1.493023pt;}
._a_c00385{width:2.000450pt;}
._1_c00385{width:4.926152pt;}
._f_c00385{width:6.944641pt;}
._9_c00385{width:7.925568pt;}
._2_c00385{width:9.047202pt;}
._3_c00385{width:10.194018pt;}
._12_c00385{width:11.085986pt;}
._5_c00385{width:13.252194pt;}
._6_c00385{width:16.884335pt;}
._7_c00385{width:18.858674pt;}
._14_c00385{width:19.814559pt;}
._4_c00385{width:21.088623pt;}
._19_c00385{width:22.273945pt;}
._1b_c00385{width:23.457679pt;}
._1a_c00385{width:26.440693pt;}
._18_c00385{width:28.160758pt;}
._b_c00385{width:29.871142pt;}
._8_c00385{width:31.592601pt;}
._17_c00385{width:33.437308pt;}
._e_c00385{width:35.589054pt;}
._11_c00385{width:38.191912pt;}
._15_c00385{width:39.246680pt;}
._13_c00385{width:40.966929pt;}
._1d_c00385{width:42.197760pt;}
._d_c00385{width:43.411001pt;}
._16_c00385{width:45.761481pt;}
.fsf_c00385{font-size:24.640000pt;}
.fs4_c00385{font-size:27.878400pt;}
.fs3_c00385{font-size:29.216000pt;}
.fs0_c00385{font-size:29.920000pt;}
.fs18_c00385{font-size:34.320000pt;}
.fs5_c00385{font-size:34.848000pt;}
.fs1a_c00385{font-size:41.008000pt;}
.fs9_c00385{font-size:44.352176pt;}
.fs15_c00385{font-size:46.886576pt;}
.fs8_c00385{font-size:47.520000pt;}
.fs10_c00385{font-size:49.632176pt;}
.fs16_c00385{font-size:49.984000pt;}
.fs17_c00385{font-size:56.496000pt;}
.fse_c00385{font-size:57.024176pt;}
.fsa_c00385{font-size:58.960000pt;}
.fsb_c00385{font-size:61.776000pt;}
.fs7_c00385{font-size:63.008000pt;}
.fs6_c00385{font-size:63.712176pt;}
.fs2_c00385{font-size:64.768000pt;}
.fs11_c00385{font-size:65.824176pt;}
.fs12_c00385{font-size:66.176000pt;}
.fs13_c00385{font-size:68.288000pt;}
.fs14_c00385{font-size:70.048000pt;}
.fs1_c00385{font-size:74.624176pt;}
.fsd_c00385{font-size:76.736000pt;}
.fsc_c00385{font-size:81.664176pt;}
.fs19_c00385{font-size:116.864176pt;}
.y0_c00385{bottom:0.000000pt;}
.y1_c00385{bottom:68.000000pt;}
.y24_c00385{bottom:159.272120pt;}
.y23_c00385{bottom:190.001720pt;}
.y21_c00385{bottom:218.192520pt;}
.y22_c00385{bottom:223.265720pt;}
.y20_c00385{bottom:247.021320pt;}
.y1f_c00385{bottom:275.850120pt;}
.y1e_c00385{bottom:304.362120pt;}
.y1d_c00385{bottom:333.195320pt;}
.y1c_c00385{bottom:362.024120pt;}
.y1b_c00385{bottom:391.803320pt;}
.y1a_c00385{bottom:424.429320pt;}
.y19_c00385{bottom:448.510520pt;}
.y2_c00385{bottom:474.166920pt;}
.y18_c00385{bottom:477.018120pt;}
.y17_c00385{bottom:506.801720pt;}
.y16_c00385{bottom:535.313720pt;}
.y15_c00385{bottom:563.821320pt;}
.y14_c00385{bottom:592.966920pt;}
.y13_c00385{bottom:621.483320pt;}
.y12_c00385{bottom:646.510520pt;}
.y10_c00385{bottom:649.674120pt;}
.y11_c00385{bottom:650.628920pt;}
.yf_c00385{bottom:669.632520pt;}
.yd_c00385{bottom:679.140040pt;}
.ye_c00385{bottom:679.140920pt;}
.yc_c00385{bottom:735.843720pt;}
.yb_c00385{bottom:765.310520pt;}
.ya_c00385{bottom:794.456120pt;}
.y9_c00385{bottom:823.284920pt;}
.y8_c00385{bottom:830.250120pt;}
.y7_c00385{bottom:885.060920pt;}
.y6_c00385{bottom:894.564920pt;}
.y5_c00385{bottom:904.064520pt;}
.y4_c00385{bottom:915.152520pt;}
.y3_c00385{bottom:959.187720pt;}
.h6_c00385{height:18.567014pt;}
.h10_c00385{height:25.698750pt;}
.h2_c00385{height:29.364844pt;}
.ha_c00385{height:29.538549pt;}
.h5_c00385{height:30.471375pt;}
.h16_c00385{height:31.226460pt;}
.h7_c00385{height:34.201406pt;}
.hf_c00385{height:37.978101pt;}
.h19_c00385{height:42.237216pt;}
.h1b_c00385{height:42.770063pt;}
.h9_c00385{height:46.638281pt;}
.h17_c00385{height:49.056562pt;}
.h11_c00385{height:51.764809pt;}
.h18_c00385{height:58.923563pt;}
.hc_c00385{height:60.629766pt;}
.hb_c00385{height:61.493438pt;}
.h8_c00385{height:62.530016pt;}
.h4_c00385{height:63.566250pt;}
.h12_c00385{height:64.602829pt;}
.h13_c00385{height:64.948125pt;}
.h14_c00385{height:67.020938pt;}
.h15_c00385{height:68.748281pt;}
.h3_c00385{height:73.239548pt;}
.he_c00385{height:80.033250pt;}
.hd_c00385{height:80.148923pt;}
.h1a_c00385{height:121.885684pt;}
.h1_c00385{height:986.666667pt;}
.h0_c00385{height:1122.666667pt;}
.w1_c00385{width:689.333333pt;}
.w0_c00385{width:793.333333pt;}
.x0_c00385{left:0.000000pt;}
.x2_c00385{left:31.549453pt;}
.x1_c00385{left:52.000000pt;}
.x18_c00385{left:88.252253pt;}
.x8_c00385{left:90.095853pt;}
.x5a_c00385{left:97.769453pt;}
.x19_c00385{left:102.503853pt;}
.x9_c00385{left:108.800253pt;}
.x6b_c00385{left:117.516653pt;}
.x65_c00385{left:119.179853pt;}
.x63_c00385{left:126.387053pt;}
.x1a_c00385{left:127.799453pt;}
.x71_c00385{left:128.723453pt;}
.x69_c00385{left:130.826653pt;}
.x5b_c00385{left:135.257453pt;}
.x2f_c00385{left:136.517393pt;}
.x24_c00385{left:137.796253pt;}
.x4f_c00385{left:146.948253pt;}
.x72_c00385{left:148.017453pt;}
.xa_c00385{left:157.459853pt;}
.x30_c00385{left:166.273053pt;}
.x73_c00385{left:168.006653pt;}
.x1b_c00385{left:175.491053pt;}
.x25_c00385{left:177.057453pt;}
.x50_c00385{left:178.645853pt;}
.x6a_c00385{left:181.343053pt;}
.xb_c00385{left:186.504253pt;}
.x1c_c00385{left:192.730253pt;}
.x31_c00385{left:196.338253pt;}
.x74_c00385{left:197.411853pt;}
.xc_c00385{left:206.691453pt;}
.x62_c00385{left:208.508653pt;}
.x5c_c00385{left:215.055853pt;}
.x26_c00385{left:216.859853pt;}
.x1d_c00385{left:226.016253pt;}
.x42_c00385{left:228.462653pt;}
.x32_c00385{left:235.617053pt;}
.x1e_c00385{left:244.553453pt;}
.xd_c00385{left:245.644653pt;}
.x5d_c00385{left:246.955853pt;}
.x33_c00385{left:254.057453pt;}
.x54_c00385{left:255.729453pt;}
.x1f_c00385{left:264.982653pt;}
.x3c_c00385{left:265.875853pt;}
.x6c_c00385{left:269.844653pt;}
.xe_c00385{left:275.696653pt;}
.x20_c00385{left:284.773853pt;}
.x55_c00385{left:289.921853pt;}
.x34_c00385{left:294.814653pt;}
.x5e_c00385{left:304.085453pt;}
.x56_c00385{left:305.150253pt;}
.xf_c00385{left:314.403453pt;}
.x75_c00385{left:315.587053pt;}
.x43_c00385{left:324.681853pt;}
.x3d_c00385{left:334.177053pt;}
.x5f_c00385{left:335.303453pt;}
.x10_c00385{left:344.182653pt;}
.x27_c00385{left:353.814253pt;}
.x6d_c00385{left:354.958253pt;}
.x35_c00385{left:362.719853pt;}
.x4a_c00385{left:364.105853pt;}
.x11_c00385{left:372.223853pt;}
.x21_c00385{left:373.614253pt;}
.x6e_c00385{left:382.044653pt;}
.x36_c00385{left:383.149053pt;}
.x51_c00385{left:384.367853pt;}
.x57_c00385{left:393.269053pt;}
.x12_c00385{left:403.041453pt;}
.x4b_c00385{left:405.553853pt;}
.x13_c00385{left:412.897453pt;}
.x60_c00385{left:421.644653pt;}
.x4c_c00385{left:422.621453pt;}
.x64_c00385{left:424.553053pt;}
.x28_c00385{left:431.487453pt;}
.x58_c00385{left:432.591853pt;}
.x3e_c00385{left:442.641453pt;}
.x14_c00385{left:452.083853pt;}
.x66_c00385{left:462.129053pt;}
.x47_c00385{left:463.123453pt;}
.x37_c00385{left:471.347053pt;}
.x52_c00385{left:472.794653pt;}
.x29_c00385{left:479.935853pt;}
.x48_c00385{left:482.316253pt;}
.x3f_c00385{left:491.455053pt;}
.x61_c00385{left:492.436253pt;}
.x59_c00385{left:501.121853pt;}
.x2a_c00385{left:510.713853pt;}
.x70_c00385{left:511.721453pt;}
.x53_c00385{left:513.265853pt;}
.x38_c00385{left:520.332253pt;}
.x6f_c00385{left:521.401453pt;}
.x15_c00385{left:522.444253pt;}
.x67_c00385{left:529.264253pt;}
.x2b_c00385{left:530.443453pt;}
.x44_c00385{left:540.312653pt;}
.x22_c00385{left:549.337053pt;}
.x2c_c00385{left:559.474653pt;}
.x2d_c00385{left:568.323053pt;}
.x45_c00385{left:569.409853pt;}
.x4d_c00385{left:578.460653pt;}
.x39_c00385{left:579.380253pt;}
.x68_c00385{left:581.699053pt;}
.x40_c00385{left:589.553053pt;}
.x23_c00385{left:599.827053pt;}
.x3_c00385{left:608.970253pt;}
.x2e_c00385{left:618.518253pt;}
.x3a_c00385{left:619.442253pt;}
.x41_c00385{left:625.571453pt;}
.x4_c00385{left:627.305053pt;}
.x5_c00385{left:629.007853pt;}
.x6_c00385{left:631.546653pt;}
.x4e_c00385{left:638.437053pt;}
.x16_c00385{left:639.431453pt;}
.x49_c00385{left:648.561453pt;}
.x3b_c00385{left:649.489853pt;}
.x17_c00385{left:658.369053pt;}
.x7_c00385{left:661.031053pt;}
.x46_c00385{left:680.580253pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a022eac8e3e7c8147201f5dd.woff2')format("woff");}.ff1_c00386{font-family:ff1_c00386;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00386;src:url('chunks/assets/font_d2aa3e8a7c347dc3c0faa4b3.woff2')format("woff");}.ff2_c00386{font-family:ff2_c00386;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00386;src:url('chunks/assets/font_8f29de4e006b9357c210f3b5.woff2')format("woff");}.ff3_c00386{font-family:ff3_c00386;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00386;src:url('chunks/assets/font_d718dd805448f3062452e540.woff2')format("woff");}.ff4_c00386{font-family:ff4_c00386;line-height:0.666000;font-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_c00386{transform:matrix(0.066177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066177,0.000000,0.000000,0.250000,0,0);}
.ma9_c00386{transform:matrix(0.099781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099781,0.000000,0.000000,0.250000,0,0);}
.ma7_c00386{transform:matrix(0.102398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102398,0.000000,0.000000,0.250000,0,0);}
.m9e_c00386{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);}
.mc6_c00386{transform:matrix(0.113638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113638,0.000000,0.000000,0.250000,0,0);}
.m3f_c00386{transform:matrix(0.129548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129548,0.000000,0.000000,0.250000,0,0);}
.mc2_c00386{transform:matrix(0.132075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132075,0.000000,0.000000,0.250000,0,0);}
.mbf_c00386{transform:matrix(0.134602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134602,0.000000,0.000000,0.250000,0,0);}
.m64_c00386{transform:matrix(0.134616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134616,0.000000,0.000000,0.250000,0,0);}
.m7d_c00386{transform:matrix(0.134705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134705,0.000000,0.000000,0.250000,0,0);}
.m50_c00386{transform:matrix(0.136179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136179,0.000000,0.000000,0.250000,0,0);}
.ma0_c00386{transform:matrix(0.139705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139705,0.000000,0.000000,0.250000,0,0);}
.m2e_c00386{transform:matrix(0.141270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141270,0.000000,0.000000,0.250000,0,0);}
.m65_c00386{transform:matrix(0.147436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147436,0.000000,0.000000,0.250000,0,0);}
.mb0_c00386{transform:matrix(0.147676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147676,0.000000,0.000000,0.250000,0,0);}
.ma6_c00386{transform:matrix(0.148137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148137,0.000000,0.000000,0.250000,0,0);}
.m67_c00386{transform:matrix(0.149038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149038,0.000000,0.000000,0.250000,0,0);}
.mbd_c00386{transform:matrix(0.150330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150330,0.000000,0.000000,0.250000,0,0);}
.m21_c00386{transform:matrix(0.157317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157317,0.000000,0.000000,0.250000,0,0);}
.m23_c00386{transform:matrix(0.158537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158537,0.000000,0.000000,0.250000,0,0);}
.mb3_c00386{transform:matrix(0.158565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158565,0.000000,0.000000,0.250000,0,0);}
.mba_c00386{transform:matrix(0.163024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163024,0.000000,0.000000,0.250000,0,0);}
.m77_c00386{transform:matrix(0.168894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168894,0.000000,0.000000,0.250000,0,0);}
.m66_c00386{transform:matrix(0.173077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173077,0.000000,0.000000,0.250000,0,0);}
.mac_c00386{transform:matrix(0.178716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178716,0.000000,0.000000,0.250000,0,0);}
.m72_c00386{transform:matrix(0.178812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178812,0.000000,0.000000,0.250000,0,0);}
.m6e_c00386{transform:matrix(0.179926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179926,0.000000,0.000000,0.250000,0,0);}
.m9_c00386{transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);}
.m22_c00386{transform:matrix(0.182926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182926,0.000000,0.000000,0.250000,0,0);}
.m8f_c00386{transform:matrix(0.183366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183366,0.000000,0.000000,0.250000,0,0);}
.mb_c00386{transform:matrix(0.192866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192866,0.000000,0.000000,0.250000,0,0);}
.m19_c00386{transform:matrix(0.194336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194336,0.000000,0.000000,0.250000,0,0);}
.m9a_c00386{transform:matrix(0.196020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196020,0.000000,0.000000,0.250000,0,0);}
.m20_c00386{transform:matrix(0.198171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198171,0.000000,0.000000,0.250000,0,0);}
.m5f_c00386{transform:matrix(0.201882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201882,0.000000,0.000000,0.250000,0,0);}
.mc4_c00386{transform:matrix(0.209220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209220,0.000000,0.000000,0.250000,0,0);}
.ma_c00386{transform:matrix(0.211806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211806,0.000000,0.000000,0.250000,0,0);}
.ma1_c00386{transform:matrix(0.212865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212865,0.000000,0.000000,0.250000,0,0);}
.m4c_c00386{transform:matrix(0.218674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218674,0.000000,0.000000,0.250000,0,0);}
.mb7_c00386{transform:matrix(0.221292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221292,0.000000,0.000000,0.250000,0,0);}
.mb1_c00386{transform:matrix(0.222235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222235,0.000000,0.000000,0.250000,0,0);}
.m73_c00386{transform:matrix(0.222733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222733,0.000000,0.000000,0.250000,0,0);}
.m48_c00386{transform:matrix(0.228015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228015,0.000000,0.000000,0.250000,0,0);}
.m5c_c00386{transform:matrix(0.229017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229017,0.000000,0.000000,0.250000,0,0);}
.m5e_c00386{transform:matrix(0.233649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233649,0.000000,0.000000,0.250000,0,0);}
.mb5_c00386{transform:matrix(0.240482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240482,0.000000,0.000000,0.250000,0,0);}
.mb2_c00386{transform:matrix(0.243789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243789,0.000000,0.000000,0.250000,0,0);}
.m1_c00386{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00386{transform:matrix(0.251878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251878,0.000000,0.000000,0.250000,0,0);}
.m84_c00386{transform:matrix(0.252217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252217,0.000000,0.000000,0.250000,0,0);}
.mc_c00386{transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);}
.m49_c00386{transform:matrix(0.252993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252993,0.000000,0.000000,0.250000,0,0);}
.m94_c00386{transform:matrix(0.253720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253720,0.000000,0.000000,0.250000,0,0);}
.maa_c00386{transform:matrix(0.255475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255475,0.000000,0.000000,0.250000,0,0);}
.m3a_c00386{transform:matrix(0.257932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257932,0.000000,0.000000,0.250000,0,0);}
.me_c00386{transform:matrix(0.258842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258842,0.000000,0.000000,0.250000,0,0);}
.m2d_c00386{transform:matrix(0.258977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258977,0.000000,0.000000,0.250000,0,0);}
.m37_c00386{transform:matrix(0.262414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262414,0.000000,0.000000,0.250000,0,0);}
.m2b_c00386{transform:matrix(0.263732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263732,0.000000,0.000000,0.250000,0,0);}
.m33_c00386{transform:matrix(0.265559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265559,0.000000,0.000000,0.250000,0,0);}
.m51_c00386{transform:matrix(0.265753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265753,0.000000,0.000000,0.250000,0,0);}
.m74_c00386{transform:matrix(0.266466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266466,0.000000,0.000000,0.250000,0,0);}
.m6_c00386{transform:matrix(0.269835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269835,0.000000,0.000000,0.250000,0,0);}
.m27_c00386{transform:matrix(0.270089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270089,0.000000,0.000000,0.250000,0,0);}
.m6b_c00386{transform:matrix(0.270780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270780,0.000000,0.000000,0.250000,0,0);}
.m6d_c00386{transform:matrix(0.271344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271344,0.000000,0.000000,0.250000,0,0);}
.m15_c00386{transform:matrix(0.273445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273445,0.000000,0.000000,0.250000,0,0);}
.m9d_c00386{transform:matrix(0.273543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273543,0.000000,0.000000,0.250000,0,0);}
.m75_c00386{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);}
.m80_c00386{transform:matrix(0.277927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277927,0.000000,0.000000,0.250000,0,0);}
.mb8_c00386{transform:matrix(0.277929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277929,0.000000,0.000000,0.250000,0,0);}
.ma8_c00386{transform:matrix(0.279461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279461,0.000000,0.000000,0.250000,0,0);}
.m11_c00386{transform:matrix(0.280536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280536,0.000000,0.000000,0.250000,0,0);}
.m0_c00386{transform:matrix(0.281701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281701,0.000000,0.000000,0.250000,0,0);}
.m54_c00386{transform:matrix(0.282085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282085,0.000000,0.000000,0.250000,0,0);}
.m85_c00386{transform:matrix(0.282226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282226,0.000000,0.000000,0.250000,0,0);}
.mc3_c00386{transform:matrix(0.282980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282980,0.000000,0.000000,0.250000,0,0);}
.m30_c00386{transform:matrix(0.283058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283058,0.000000,0.000000,0.250000,0,0);}
.m4a_c00386{transform:matrix(0.283572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283572,0.000000,0.000000,0.250000,0,0);}
.m86_c00386{transform:matrix(0.284920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284920,0.000000,0.000000,0.250000,0,0);}
.mb4_c00386{transform:matrix(0.286375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286375,0.000000,0.000000,0.250000,0,0);}
.m1f_c00386{transform:matrix(0.287317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287317,0.000000,0.000000,0.250000,0,0);}
.mb6_c00386{transform:matrix(0.287382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287382,0.000000,0.000000,0.250000,0,0);}
.m17_c00386{transform:matrix(0.288034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288034,0.000000,0.000000,0.250000,0,0);}
.ma4_c00386{transform:matrix(0.288488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288488,0.000000,0.000000,0.250000,0,0);}
.m45_c00386{transform:matrix(0.288563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288563,0.000000,0.000000,0.250000,0,0);}
.m5d_c00386{transform:matrix(0.288637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288637,0.000000,0.000000,0.250000,0,0);}
.m98_c00386{transform:matrix(0.289764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289764,0.000000,0.000000,0.250000,0,0);}
.mbb_c00386{transform:matrix(0.290995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290995,0.000000,0.000000,0.250000,0,0);}
.m25_c00386{transform:matrix(0.291216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291216,0.000000,0.000000,0.250000,0,0);}
.m1e_c00386{transform:matrix(0.291383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291383,0.000000,0.000000,0.250000,0,0);}
.m52_c00386{transform:matrix(0.291935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291935,0.000000,0.000000,0.250000,0,0);}
.mb9_c00386{transform:matrix(0.292061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292061,0.000000,0.000000,0.250000,0,0);}
.m82_c00386{transform:matrix(0.292974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292974,0.000000,0.000000,0.250000,0,0);}
.m28_c00386{transform:matrix(0.293087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293087,0.000000,0.000000,0.250000,0,0);}
.m13_c00386{transform:matrix(0.293700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293700,0.000000,0.000000,0.250000,0,0);}
.m9b_c00386{transform:matrix(0.294104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294104,0.000000,0.000000,0.250000,0,0);}
.m3e_c00386{transform:matrix(0.294520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294520,0.000000,0.000000,0.250000,0,0);}
.ma2_c00386{transform:matrix(0.298478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298478,0.000000,0.000000,0.250000,0,0);}
.m3b_c00386{transform:matrix(0.298512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298512,0.000000,0.000000,0.250000,0,0);}
.m60_c00386{transform:matrix(0.298652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298652,0.000000,0.000000,0.250000,0,0);}
.m43_c00386{transform:matrix(0.300627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300627,0.000000,0.000000,0.250000,0,0);}
.m90_c00386{transform:matrix(0.300690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300690,0.000000,0.000000,0.250000,0,0);}
.maf_c00386{transform:matrix(0.302585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302585,0.000000,0.000000,0.250000,0,0);}
.m36_c00386{transform:matrix(0.303251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303251,0.000000,0.000000,0.250000,0,0);}
.m55_c00386{transform:matrix(0.305325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305325,0.000000,0.000000,0.250000,0,0);}
.m5a_c00386{transform:matrix(0.308520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308520,0.000000,0.000000,0.250000,0,0);}
.m5b_c00386{transform:matrix(0.309052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309052,0.000000,0.000000,0.250000,0,0);}
.m61_c00386{transform:matrix(0.309527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309527,0.000000,0.000000,0.250000,0,0);}
.mc5_c00386{transform:matrix(0.309721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309721,0.000000,0.000000,0.250000,0,0);}
.m40_c00386{transform:matrix(0.310648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310648,0.000000,0.000000,0.250000,0,0);}
.m1b_c00386{transform:matrix(0.312322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312322,0.000000,0.000000,0.250000,0,0);}
.mab_c00386{transform:matrix(0.312438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312438,0.000000,0.000000,0.250000,0,0);}
.m1a_c00386{transform:matrix(0.314478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314478,0.000000,0.000000,0.250000,0,0);}
.m3_c00386{transform:matrix(0.314725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314725,0.000000,0.000000,0.250000,0,0);}
.m1d_c00386{transform:matrix(0.314798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314798,0.000000,0.000000,0.250000,0,0);}
.m76_c00386{transform:matrix(0.315018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315018,0.000000,0.000000,0.250000,0,0);}
.m46_c00386{transform:matrix(0.315423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315423,0.000000,0.000000,0.250000,0,0);}
.m5_c00386{transform:matrix(0.316279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316279,0.000000,0.000000,0.250000,0,0);}
.m35_c00386{transform:matrix(0.317406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317406,0.000000,0.000000,0.250000,0,0);}
.m34_c00386{transform:matrix(0.317480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317480,0.000000,0.000000,0.250000,0,0);}
.m88_c00386{transform:matrix(0.318312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318312,0.000000,0.000000,0.250000,0,0);}
.m44_c00386{transform:matrix(0.319207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319207,0.000000,0.000000,0.250000,0,0);}
.m8d_c00386{transform:matrix(0.320753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320753,0.000000,0.000000,0.250000,0,0);}
.mbe_c00386{transform:matrix(0.320806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320806,0.000000,0.000000,0.250000,0,0);}
.m3c_c00386{transform:matrix(0.320933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320933,0.000000,0.000000,0.250000,0,0);}
.m32_c00386{transform:matrix(0.321198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321198,0.000000,0.000000,0.250000,0,0);}
.m7_c00386{transform:matrix(0.322351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322351,0.000000,0.000000,0.250000,0,0);}
.m91_c00386{transform:matrix(0.322547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322547,0.000000,0.000000,0.250000,0,0);}
.m62_c00386{transform:matrix(0.324157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324157,0.000000,0.000000,0.250000,0,0);}
.m92_c00386{transform:matrix(0.325010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325010,0.000000,0.000000,0.250000,0,0);}
.m8b_c00386{transform:matrix(0.326081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326081,0.000000,0.000000,0.250000,0,0);}
.m9c_c00386{transform:matrix(0.326307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326307,0.000000,0.000000,0.250000,0,0);}
.m56_c00386{transform:matrix(0.326606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326606,0.000000,0.000000,0.250000,0,0);}
.mbc_c00386{transform:matrix(0.330606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330606,0.000000,0.000000,0.250000,0,0);}
.m7f_c00386{transform:matrix(0.330721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330721,0.000000,0.000000,0.250000,0,0);}
.m2f_c00386{transform:matrix(0.330776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330776,0.000000,0.000000,0.250000,0,0);}
.m95_c00386{transform:matrix(0.331631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331631,0.000000,0.000000,0.250000,0,0);}
.m6a_c00386{transform:matrix(0.331978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331978,0.000000,0.000000,0.250000,0,0);}
.m16_c00386{transform:matrix(0.333432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333432,0.000000,0.000000,0.250000,0,0);}
.m7e_c00386{transform:matrix(0.333601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333601,0.000000,0.000000,0.250000,0,0);}
.m6f_c00386{transform:matrix(0.334645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334645,0.000000,0.000000,0.250000,0,0);}
.m7c_c00386{transform:matrix(0.334745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334745,0.000000,0.000000,0.250000,0,0);}
.m8_c00386{transform:matrix(0.334757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334757,0.000000,0.000000,0.250000,0,0);}
.m4b_c00386{transform:matrix(0.334900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334900,0.000000,0.000000,0.250000,0,0);}
.m63_c00386{transform:matrix(0.336786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336786,0.000000,0.000000,0.250000,0,0);}
.m41_c00386{transform:matrix(0.337233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337233,0.000000,0.000000,0.250000,0,0);}
.m69_c00386{transform:matrix(0.337276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337276,0.000000,0.000000,0.250000,0,0);}
.m8c_c00386{transform:matrix(0.337868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337868,0.000000,0.000000,0.250000,0,0);}
.m96_c00386{transform:matrix(0.337918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337918,0.000000,0.000000,0.250000,0,0);}
.m79_c00386{transform:matrix(0.338051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338051,0.000000,0.000000,0.250000,0,0);}
.m38_c00386{transform:matrix(0.338681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338681,0.000000,0.000000,0.250000,0,0);}
.m78_c00386{transform:matrix(0.339328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339328,0.000000,0.000000,0.250000,0,0);}
.m89_c00386{transform:matrix(0.339958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339958,0.000000,0.000000,0.250000,0,0);}
.m12_c00386{transform:matrix(0.340658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340658,0.000000,0.000000,0.250000,0,0);}
.mad_c00386{transform:matrix(0.343391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343391,0.000000,0.000000,0.250000,0,0);}
.m4f_c00386{transform:matrix(0.344067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344067,0.000000,0.000000,0.250000,0,0);}
.m2a_c00386{transform:matrix(0.346251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346251,0.000000,0.000000,0.250000,0,0);}
.mc0_c00386{transform:matrix(0.346745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346745,0.000000,0.000000,0.250000,0,0);}
.m7a_c00386{transform:matrix(0.347784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347784,0.000000,0.000000,0.250000,0,0);}
.mf_c00386{transform:matrix(0.349103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349103,0.000000,0.000000,0.250000,0,0);}
.m57_c00386{transform:matrix(0.349152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349152,0.000000,0.000000,0.250000,0,0);}
.m8a_c00386{transform:matrix(0.351406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351406,0.000000,0.000000,0.250000,0,0);}
.m31_c00386{transform:matrix(0.352319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352319,0.000000,0.000000,0.250000,0,0);}
.m2_c00386{transform:matrix(0.353728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353728,0.000000,0.000000,0.250000,0,0);}
.m42_c00386{transform:matrix(0.355358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355358,0.000000,0.000000,0.250000,0,0);}
.m71_c00386{transform:matrix(0.356687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356687,0.000000,0.000000,0.250000,0,0);}
.mae_c00386{transform:matrix(0.358672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358672,0.000000,0.000000,0.250000,0,0);}
.m7b_c00386{transform:matrix(0.362707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362707,0.000000,0.000000,0.250000,0,0);}
.m29_c00386{transform:matrix(0.362733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362733,0.000000,0.000000,0.250000,0,0);}
.m24_c00386{transform:matrix(0.362978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362978,0.000000,0.000000,0.250000,0,0);}
.m97_c00386{transform:matrix(0.363871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363871,0.000000,0.000000,0.250000,0,0);}
.m4_c00386{transform:matrix(0.364039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364039,0.000000,0.000000,0.250000,0,0);}
.m6c_c00386{transform:matrix(0.364723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364723,0.000000,0.000000,0.250000,0,0);}
.m3d_c00386{transform:matrix(0.365210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365210,0.000000,0.000000,0.250000,0,0);}
.m59_c00386{transform:matrix(0.366894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366894,0.000000,0.000000,0.250000,0,0);}
.m18_c00386{transform:matrix(0.366907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366907,0.000000,0.000000,0.250000,0,0);}
.m81_c00386{transform:matrix(0.367938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367938,0.000000,0.000000,0.250000,0,0);}
.m68_c00386{transform:matrix(0.368458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368458,0.000000,0.000000,0.250000,0,0);}
.m14_c00386{transform:matrix(0.369210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369210,0.000000,0.000000,0.250000,0,0);}
.m1c_c00386{transform:matrix(0.369455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369455,0.000000,0.000000,0.250000,0,0);}
.mc1_c00386{transform:matrix(0.371147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371147,0.000000,0.000000,0.250000,0,0);}
.m10_c00386{transform:matrix(0.371313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371313,0.000000,0.000000,0.250000,0,0);}
.ma5_c00386{transform:matrix(0.373053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373053,0.000000,0.000000,0.250000,0,0);}
.m93_c00386{transform:matrix(0.373078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373078,0.000000,0.000000,0.250000,0,0);}
.m70_c00386{transform:matrix(0.375520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375520,0.000000,0.000000,0.250000,0,0);}
.m53_c00386{transform:matrix(0.375687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375687,0.000000,0.000000,0.250000,0,0);}
.m39_c00386{transform:matrix(0.386222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386222,0.000000,0.000000,0.250000,0,0);}
.m26_c00386{transform:matrix(0.398584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398584,0.000000,0.000000,0.250000,0,0);}
.md_c00386{transform:matrix(0.406167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406167,0.000000,0.000000,0.250000,0,0);}
.m99_c00386{transform:matrix(0.407016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407016,0.000000,0.000000,0.250000,0,0);}
.m8e_c00386{transform:matrix(0.438526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438526,0.000000,0.000000,0.250000,0,0);}
.m58_c00386{transform:matrix(0.440203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440203,0.000000,0.000000,0.250000,0,0);}
.m47_c00386{transform:matrix(0.446285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446285,0.000000,0.000000,0.250000,0,0);}
.m2c_c00386{transform:matrix(0.456063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456063,0.000000,0.000000,0.250000,0,0);}
.m83_c00386{transform:matrix(0.456763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456763,0.000000,0.000000,0.250000,0,0);}
.m87_c00386{transform:matrix(0.462814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462814,0.000000,0.000000,0.250000,0,0);}
.ma3_c00386{transform:matrix(0.464508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464508,0.000000,0.000000,0.250000,0,0);}
.m4e_c00386{transform:matrix(0.471078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471078,0.000000,0.000000,0.250000,0,0);}
.v2_c00386{vertical-align:-45.619200px;}
.v4_c00386{vertical-align:-1.425600px;}
.v0_c00386{vertical-align:0.000000px;}
.v1_c00386{vertical-align:1.425600px;}
.v3_c00386{vertical-align:39.897000px;}
.ls19_c00386{letter-spacing:-3.125430px;}
.lsb_c00386{letter-spacing:-2.508667px;}
.ls15_c00386{letter-spacing:-2.328480px;}
.ls22_c00386{letter-spacing:-2.259180px;}
.ls11_c00386{letter-spacing:-1.760220px;}
.ls17_c00386{letter-spacing:-1.705894px;}
.ls7_c00386{letter-spacing:-1.420531px;}
.ls9_c00386{letter-spacing:-1.089478px;}
.ls1e_c00386{letter-spacing:-1.024970px;}
.ls14_c00386{letter-spacing:-0.498960px;}
.ls1d_c00386{letter-spacing:-0.244373px;}
.ls25_c00386{letter-spacing:-0.164855px;}
.ls5_c00386{letter-spacing:0.000000px;}
.ls2_c00386{letter-spacing:0.164855px;}
.ls1f_c00386{letter-spacing:0.335413px;}
.ls1c_c00386{letter-spacing:0.637918px;}
.ls10_c00386{letter-spacing:0.917455px;}
.ls23_c00386{letter-spacing:1.276096px;}
.ls13_c00386{letter-spacing:1.433524px;}
.ls24_c00386{letter-spacing:1.544400px;}
.ls21_c00386{letter-spacing:2.395810px;}
.lsf_c00386{letter-spacing:2.524500px;}
.ls0_c00386{letter-spacing:2.730863px;}
.ls12_c00386{letter-spacing:3.118500px;}
.ls3_c00386{letter-spacing:3.125082px;}
.ls1_c00386{letter-spacing:3.239764px;}
.ls1b_c00386{letter-spacing:3.286810px;}
.ls8_c00386{letter-spacing:3.455110px;}
.lsc_c00386{letter-spacing:3.544200px;}
.ls6_c00386{letter-spacing:3.583810px;}
.ls16_c00386{letter-spacing:3.801610px;}
.lsd_c00386{letter-spacing:3.880810px;}
.ls4_c00386{letter-spacing:4.197610px;}
.ls1a_c00386{letter-spacing:4.464900px;}
.ls26_c00386{letter-spacing:31.363200px;}
.ls20_c00386{letter-spacing:48.470598px;}
.lsa_c00386{letter-spacing:51.321798px;}
.ls18_c00386{letter-spacing:55.598598px;}
.lse_c00386{letter-spacing:58.449798px;}
.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;}
}
.ws9_c00386{word-spacing:-21.158814px;}
.ws10_c00386{word-spacing:-21.044132px;}
.ws2_c00386{word-spacing:-19.705752px;}
.ws6_c00386{word-spacing:-18.836505px;}
.ws1_c00386{word-spacing:-17.919050px;}
.wsc_c00386{word-spacing:-16.894080px;}
.ws0_c00386{word-spacing:-15.312845px;}
.wsf_c00386{word-spacing:-12.017646px;}
.ws3_c00386{word-spacing:-3.512261px;}
.wsb_c00386{word-spacing:-1.649489px;}
.wsa_c00386{word-spacing:-0.358529px;}
.ws11_c00386{word-spacing:0.000000px;}
.wsd_c00386{word-spacing:2.508555px;}
.ws7_c00386{word-spacing:4.013751px;}
.ws8_c00386{word-spacing:4.227987px;}
.ws5_c00386{word-spacing:4.515087px;}
.ws4_c00386{word-spacing:4.802187px;}
.wse_c00386{word-spacing:5.447667px;}
._29_c00386{margin-left:-13.188472px;}
._7_c00386{margin-left:-10.392965px;}
._5_c00386{margin-left:-9.031715px;}
._1d_c00386{margin-left:-6.307642px;}
._16_c00386{margin-left:-5.016682px;}
._25_c00386{margin-left:-3.727097px;}
._2c_c00386{margin-left:-2.638069px;}
._15_c00386{width:1.576388px;}
._1_c00386{width:3.382790px;}
._0_c00386{width:4.785561px;}
._1e_c00386{width:6.092559px;}
._9_c00386{width:8.027811px;}
._8_c00386{width:10.164462px;}
._11_c00386{width:11.611622px;}
._d_c00386{width:12.973268px;}
._b_c00386{width:13.976919px;}
._a_c00386{width:16.127023px;}
._28_c00386{width:17.489329px;}
._21_c00386{width:19.353004px;}
._13_c00386{width:20.857837px;}
._2_c00386{width:22.734657px;}
._f_c00386{width:24.154114px;}
._1b_c00386{width:25.285090px;}
._18_c00386{width:26.591939px;}
._c_c00386{width:28.013101px;}
._24_c00386{width:30.044686px;}
._4_c00386{width:31.164847px;}
._14_c00386{width:32.372852px;}
._26_c00386{width:34.261178px;}
._19_c00386{width:35.309560px;}
._10_c00386{width:37.172779px;}
._1c_c00386{width:39.167816px;}
._1a_c00386{width:40.487222px;}
._3_c00386{width:42.387345px;}
._1f_c00386{width:43.409002px;}
._27_c00386{width:45.357571px;}
._e_c00386{width:47.521319px;}
._20_c00386{width:49.183074px;}
._17_c00386{width:50.429077px;}
._12_c00386{width:55.376723px;}
._23_c00386{width:77.406516px;}
._22_c00386{width:86.978376px;}
._6_c00386{width:109.766448px;}
._2a_c00386{width:124.852464px;}
._2b_c00386{width:315.433800px;}
.fc0_c00386{color:transparent;}
.fs11_c00386{font-size:14.256000px;}
.fs12_c00386{font-size:20.394000px;}
.fsf_c00386{font-size:22.176000px;}
.fs23_c00386{font-size:25.146000px;}
.fsb_c00386{font-size:26.928000px;}
.fs1_c00386{font-size:27.720000px;}
.fs21_c00386{font-size:30.888000px;}
.fs24_c00386{font-size:31.363200px;}
.fs6_c00386{font-size:33.660000px;}
.fs8_c00386{font-size:34.056198px;}
.fs22_c00386{font-size:34.848000px;}
.fs25_c00386{font-size:39.600000px;}
.fs15_c00386{font-size:39.798000px;}
.fs20_c00386{font-size:42.966198px;}
.fs1b_c00386{font-size:47.916198px;}
.fs1c_c00386{font-size:48.470598px;}
.fs5_c00386{font-size:50.292000px;}
.fse_c00386{font-size:50.490000px;}
.fs1d_c00386{font-size:50.688000px;}
.fs7_c00386{font-size:51.321798px;}
.fs17_c00386{font-size:55.598598px;}
.fsd_c00386{font-size:58.449798px;}
.fs3_c00386{font-size:60.192000px;}
.fs10_c00386{font-size:62.370000px;}
.fs1e_c00386{font-size:64.350000px;}
.fs1f_c00386{font-size:64.548000px;}
.fs1a_c00386{font-size:65.736198px;}
.fs13_c00386{font-size:66.528000px;}
.fs4_c00386{font-size:69.102198px;}
.fsa_c00386{font-size:70.884000px;}
.fs2_c00386{font-size:71.676198px;}
.fs19_c00386{font-size:72.864000px;}
.fs14_c00386{font-size:75.636198px;}
.fs9_c00386{font-size:76.032198px;}
.fsc_c00386{font-size:77.616198px;}
.fs16_c00386{font-size:79.200000px;}
.fs0_c00386{font-size:83.952198px;}
.fs18_c00386{font-size:89.298000px;}
.y0_c00386{bottom:0.000000px;}
.y2a_c00386{bottom:4.896585px;}
.y29_c00386{bottom:12.385935px;}
.y28_c00386{bottom:23.072985px;}
.y27_c00386{bottom:39.472335px;}
.y1_c00386{bottom:76.500000px;}
.y26_c00386{bottom:123.582735px;}
.y25_c00386{bottom:145.674585px;}
.y24_c00386{bottom:175.617135px;}
.y21_c00386{bottom:175.973535px;}
.y23_c00386{bottom:176.686335px;}
.y22_c00386{bottom:184.527135px;}
.y20_c00386{bottom:243.684585px;}
.y1f_c00386{bottom:275.047785px;}
.y1e_c00386{bottom:307.841535px;}
.y1d_c00386{bottom:339.917535px;}
.y1c_c00386{bottom:373.057785px;}
.y1b_c00386{bottom:373.063626px;}
.y19_c00386{bottom:405.138735px;}
.y18_c00386{bottom:405.495135px;}
.y1a_c00386{bottom:412.974585px;}
.y17_c00386{bottom:437.927535px;}
.y16_c00386{bottom:470.003535px;}
.y15_c00386{bottom:502.435935px;}
.y14_c00386{bottom:563.023935px;}
.y13_c00386{bottom:566.231535px;}
.y12_c00386{bottom:582.269535px;}
.y11_c00386{bottom:598.663935px;}
.y10_c00386{bottom:631.452735px;}
.yf_c00386{bottom:663.523785px;}
.ye_c00386{bottom:695.604735px;}
.yd_c00386{bottom:711.642735px;}
.yc_c00386{bottom:729.101385px;}
.yb_c00386{bottom:754.767135px;}
.y7_c00386{bottom:761.895135px;}
.y8_c00386{bottom:762.251535px;}
.ya_c00386{bottom:762.602985px;}
.y9_c00386{bottom:772.943535px;}
.y4_c00386{bottom:858.835935px;}
.y5_c00386{bottom:859.192335px;}
.y6_c00386{bottom:861.687135px;}
.y3_c00386{bottom:1063.760985px;}
.y2_c00386{bottom:1072.670985px;}
.h15_c00386{height:14.367375px;}
.h16_c00386{height:20.553328px;}
.h28_c00386{height:20.887891px;}
.h12_c00386{height:23.128875px;}
.h27_c00386{height:26.226492px;}
.he_c00386{height:28.085063px;}
.h3_c00386{height:28.911094px;}
.h25_c00386{height:32.215219px;}
.h21_c00386{height:32.281418px;}
.ha_c00386{height:34.180317px;}
.h26_c00386{height:34.201406px;}
.hb_c00386{height:35.519550px;}
.h1a_c00386{height:37.028666px;}
.h10_c00386{height:38.927565px;}
.h29_c00386{height:41.301563px;}
.h24_c00386{height:42.168974px;}
.h20_c00386{height:47.027128px;}
.h13_c00386{height:49.358848px;}
.h11_c00386{height:49.553174px;}
.h1f_c00386{height:49.975097px;}
.h9_c00386{height:52.452984px;}
.h5_c00386{height:62.778375px;}
.h14_c00386{height:65.049961px;}
.h17_c00386{height:65.293594px;}
.h23_c00386{height:67.321547px;}
.h22_c00386{height:68.540639px;}
.h1e_c00386{height:68.560800px;}
.h6_c00386{height:69.642059px;}
.h8_c00386{height:70.346269px;}
.h1d_c00386{height:71.512031px;}
.h7_c00386{height:71.771869px;}
.h4_c00386{height:72.236168px;}
.hd_c00386{height:73.929797px;}
.h18_c00386{height:74.621444px;}
.hf_c00386{height:76.176054px;}
.hc_c00386{height:79.299207px;}
.h2_c00386{height:82.394491px;}
.h1b_c00386{height:86.215504px;}
.h1c_c00386{height:87.641104px;}
.h19_c00386{height:122.500125px;}
.h1_c00386{height:1110.000000px;}
.h0_c00386{height:1263.000000px;}
.w1_c00386{width:775.500000px;}
.w0_c00386{width:892.500000px;}
.x0_c00386{left:0.000000px;}
.x1_c00386{left:58.500000px;}
.x29_c00386{left:100.447035px;}
.x1c_c00386{left:101.486535px;}
.x64_c00386{left:102.580485px;}
.x2a_c00386{left:113.168535px;}
.x65_c00386{left:114.178335px;}
.x2b_c00386{left:123.429885px;}
.x1d_c00386{left:133.805085px;}
.x66_c00386{left:145.422735px;}
.x76_c00386{left:147.001785px;}
.x52_c00386{left:154.624785px;}
.x5_c00386{left:155.941485px;}
.x51_c00386{left:159.257985px;}
.x5c_c00386{left:165.965235px;}
.x34_c00386{left:167.267085px;}
.x43_c00386{left:176.399835px;}
.x2c_c00386{left:177.444285px;}
.x1e_c00386{left:188.299635px;}
.x77_c00386{left:189.334185px;}
.x35_c00386{left:198.981735px;}
.x67_c00386{left:200.095485px;}
.x44_c00386{left:210.817185px;}
.x45_c00386{left:216.475035px;}
.x73_c00386{left:217.564035px;}
.x83_c00386{left:219.509385px;}
.x1f_c00386{left:221.761635px;}
.x36_c00386{left:228.320385px;}
.x6_c00386{left:231.275535px;}
.x46_c00386{left:233.522835px;}
.x4_c00386{left:239.378685px;}
.x2d_c00386{left:242.690235px;}
.x47_c00386{left:244.046535px;}
.x78_c00386{left:245.670135px;}
.x11_c00386{left:255.693885px;}
.x85_c00386{left:256.708635px;}
.x7_c00386{left:266.440335px;}
.x80_c00386{left:267.509535px;}
.x79_c00386{left:269.138085px;}
.x20_c00386{left:276.929385px;}
.x74_c00386{left:278.072835px;}
.x53_c00386{left:288.264885px;}
.x5d_c00386{left:289.472685px;}
.x21_c00386{left:298.818285px;}
.x37_c00386{left:299.892435px;}
.x70_c00386{left:306.050235px;}
.x8_c00386{left:309.861735px;}
.x48_c00386{left:311.638785px;}
.x9_c00386{left:320.489385px;}
.x4f_c00386{left:322.276335px;}
.x5e_c00386{left:324.380085px;}
.x38_c00386{left:332.790135px;}
.x12_c00386{left:343.917735px;}
.x13_c00386{left:353.179185px;}
.xa_c00386{left:354.372135px;}
.x5f_c00386{left:355.678935px;}
.x71_c00386{left:357.525285px;}
.x49_c00386{left:364.579035px;}
.x22_c00386{left:365.935335px;}
.x57_c00386{left:367.336185px;}
.x3e_c00386{left:377.874735px;}
.x50_c00386{left:379.617135px;}
.x15_c00386{left:388.017285px;}
.x16_c00386{left:398.768685px;}
.x6d_c00386{left:400.382385px;}
.x23_c00386{left:410.381385px;}
.x14_c00386{left:413.202885px;}
.x84_c00386{left:419.405235px;}
.x58_c00386{left:421.033785px;}
.x75_c00386{left:422.479185px;}
.x68_c00386{left:431.562435px;}
.xb_c00386{left:432.765285px;}
.x39_c00386{left:443.056335px;}
.x17_c00386{left:453.862185px;}
.x7e_c00386{left:455.238285px;}
.x2e_c00386{left:464.692785px;}
.x4a_c00386{left:465.757035px;}
.x3f_c00386{left:475.063035px;}
.x6e_c00386{left:476.805435px;}
.x7f_c00386{left:478.968585px;}
.x81_c00386{left:486.596535px;}
.xc_c00386{left:487.710285px;}
.x82_c00386{left:493.912635px;}
.x4b_c00386{left:498.412185px;}
.x54_c00386{left:500.822835px;}
.xd_c00386{left:508.520085px;}
.x18_c00386{left:509.742735px;}
.x72_c00386{left:511.153485px;}
.x4e_c00386{left:513.831435px;}
.xe_c00386{left:520.508985px;}
.x60_c00386{left:521.548485px;}
.x7a_c00386{left:526.033185px;}
.x7b_c00386{left:528.884385px;}
.xf_c00386{left:532.215735px;}
.x86_c00386{left:534.146235px;}
.x55_c00386{left:535.502535px;}
.x4c_c00386{left:542.605785px;}
.x61_c00386{left:543.971985px;}
.x69_c00386{left:546.545985px;}
.x19_c00386{left:553.287885px;}
.x24_c00386{left:554.703585px;}
.x62_c00386{left:556.881585px;}
.x3a_c00386{left:565.054035px;}
.x7c_c00386{left:566.068785px;}
.x6a_c00386{left:575.884635px;}
.x4d_c00386{left:586.081635px;}
.x63_c00386{left:587.848785px;}
.x25_c00386{left:597.110235px;}
.x59_c00386{left:598.580385px;}
.x40_c00386{left:605.149035px;}
.x6b_c00386{left:607.960635px;}
.x2f_c00386{left:609.222885px;}
.x3b_c00386{left:619.667385px;}
.x26_c00386{left:631.012785px;}
.x5a_c00386{left:632.042385px;}
.x28_c00386{left:633.482835px;}
.x41_c00386{left:641.467185px;}
.x10_c00386{left:642.580935px;}
.x30_c00386{left:651.490935px;}
.x3c_c00386{left:653.416485px;}
.x27_c00386{left:664.054035px;}
.x1a_c00386{left:675.562785px;}
.x6f_c00386{left:685.289535px;}
.x31_c00386{left:686.769585px;}
.x2_c00386{left:688.264485px;}
.x6c_c00386{left:689.759385px;}
.x42_c00386{left:696.719085px;}
.x7d_c00386{left:698.124885px;}
.x5b_c00386{left:706.950735px;}
.x3d_c00386{left:708.599085px;}
.x3_c00386{left:710.267235px;}
.x1b_c00386{left:718.667385px;}
.x56_c00386{left:719.993985px;}
.x32_c00386{left:730.255335px;}
.x33_c00386{left:741.655185px;}
@media print{
.v2_c00386{vertical-align:-40.550400pt;}
.v4_c00386{vertical-align:-1.267200pt;}
.v0_c00386{vertical-align:0.000000pt;}
.v1_c00386{vertical-align:1.267200pt;}
.v3_c00386{vertical-align:35.464000pt;}
.ls19_c00386{letter-spacing:-2.778160pt;}
.lsb_c00386{letter-spacing:-2.229926pt;}
.ls15_c00386{letter-spacing:-2.069760pt;}
.ls22_c00386{letter-spacing:-2.008160pt;}
.ls11_c00386{letter-spacing:-1.564640pt;}
.ls17_c00386{letter-spacing:-1.516350pt;}
.ls7_c00386{letter-spacing:-1.262694pt;}
.ls9_c00386{letter-spacing:-0.968425pt;}
.ls1e_c00386{letter-spacing:-0.911084pt;}
.ls14_c00386{letter-spacing:-0.443520pt;}
.ls1d_c00386{letter-spacing:-0.217220pt;}
.ls25_c00386{letter-spacing:-0.146538pt;}
.ls5_c00386{letter-spacing:0.000000pt;}
.ls2_c00386{letter-spacing:0.146538pt;}
.ls1f_c00386{letter-spacing:0.298145pt;}
.ls1c_c00386{letter-spacing:0.567038pt;}
.ls10_c00386{letter-spacing:0.815516pt;}
.ls23_c00386{letter-spacing:1.134308pt;}
.ls13_c00386{letter-spacing:1.274244pt;}
.ls24_c00386{letter-spacing:1.372800pt;}
.ls21_c00386{letter-spacing:2.129609pt;}
.lsf_c00386{letter-spacing:2.244000pt;}
.ls0_c00386{letter-spacing:2.427434pt;}
.ls12_c00386{letter-spacing:2.772000pt;}
.ls3_c00386{letter-spacing:2.777851pt;}
.ls1_c00386{letter-spacing:2.879790pt;}
.ls1b_c00386{letter-spacing:2.921609pt;}
.ls8_c00386{letter-spacing:3.071209pt;}
.lsc_c00386{letter-spacing:3.150400pt;}
.ls6_c00386{letter-spacing:3.185609pt;}
.ls16_c00386{letter-spacing:3.379209pt;}
.lsd_c00386{letter-spacing:3.449609pt;}
.ls4_c00386{letter-spacing:3.731209pt;}
.ls1a_c00386{letter-spacing:3.968800pt;}
.ls26_c00386{letter-spacing:27.878400pt;}
.ls20_c00386{letter-spacing:43.084976pt;}
.lsa_c00386{letter-spacing:45.619376pt;}
.ls18_c00386{letter-spacing:49.420976pt;}
.lse_c00386{letter-spacing:51.955376pt;}
.ws9_c00386{word-spacing:-18.807834pt;}
.ws10_c00386{word-spacing:-18.705895pt;}
.ws2_c00386{word-spacing:-17.516224pt;}
.ws6_c00386{word-spacing:-16.743560pt;}
.ws1_c00386{word-spacing:-15.928044pt;}
.wsc_c00386{word-spacing:-15.016960pt;}
.ws0_c00386{word-spacing:-13.611418pt;}
.wsf_c00386{word-spacing:-10.682352pt;}
.ws3_c00386{word-spacing:-3.122010pt;}
.wsb_c00386{word-spacing:-1.466212pt;}
.wsa_c00386{word-spacing:-0.318692pt;}
.ws11_c00386{word-spacing:0.000000pt;}
.wsd_c00386{word-spacing:2.229827pt;}
.ws7_c00386{word-spacing:3.567779pt;}
.ws8_c00386{word-spacing:3.758211pt;}
.ws5_c00386{word-spacing:4.013411pt;}
.ws4_c00386{word-spacing:4.268611pt;}
.wse_c00386{word-spacing:4.842371pt;}
._29_c00386{margin-left:-11.723086pt;}
._7_c00386{margin-left:-9.238191pt;}
._5_c00386{margin-left:-8.028191pt;}
._1d_c00386{margin-left:-5.606793pt;}
._16_c00386{margin-left:-4.459273pt;}
._25_c00386{margin-left:-3.312975pt;}
._2c_c00386{margin-left:-2.344950pt;}
._15_c00386{width:1.401234pt;}
._1_c00386{width:3.006925pt;}
._0_c00386{width:4.253832pt;}
._1e_c00386{width:5.415608pt;}
._9_c00386{width:7.135832pt;}
._8_c00386{width:9.035077pt;}
._11_c00386{width:10.321442pt;}
._d_c00386{width:11.531794pt;}
._b_c00386{width:12.423928pt;}
._a_c00386{width:14.335132pt;}
._28_c00386{width:15.546070pt;}
._21_c00386{width:17.202670pt;}
._13_c00386{width:18.540300pt;}
._2_c00386{width:20.208584pt;}
._f_c00386{width:21.470324pt;}
._1b_c00386{width:22.475635pt;}
._18_c00386{width:23.637279pt;}
._c_c00386{width:24.900534pt;}
._24_c00386{width:26.706387pt;}
._4_c00386{width:27.702086pt;}
._14_c00386{width:28.775868pt;}
._26_c00386{width:30.454380pt;}
._19_c00386{width:31.386276pt;}
._10_c00386{width:33.042470pt;}
._1c_c00386{width:34.815836pt;}
._1a_c00386{width:35.988642pt;}
._3_c00386{width:37.677640pt;}
._1f_c00386{width:38.585780pt;}
._27_c00386{width:40.317840pt;}
._e_c00386{width:42.241173pt;}
._20_c00386{width:43.718288pt;}
._17_c00386{width:44.825846pt;}
._12_c00386{width:49.223753pt;}
._23_c00386{width:68.805792pt;}
._22_c00386{width:77.314112pt;}
._6_c00386{width:97.570176pt;}
._2a_c00386{width:110.979968pt;}
._2b_c00386{width:280.385600pt;}
.fs11_c00386{font-size:12.672000pt;}
.fs12_c00386{font-size:18.128000pt;}
.fsf_c00386{font-size:19.712000pt;}
.fs23_c00386{font-size:22.352000pt;}
.fsb_c00386{font-size:23.936000pt;}
.fs1_c00386{font-size:24.640000pt;}
.fs21_c00386{font-size:27.456000pt;}
.fs24_c00386{font-size:27.878400pt;}
.fs6_c00386{font-size:29.920000pt;}
.fs8_c00386{font-size:30.272176pt;}
.fs22_c00386{font-size:30.976000pt;}
.fs25_c00386{font-size:35.200000pt;}
.fs15_c00386{font-size:35.376000pt;}
.fs20_c00386{font-size:38.192176pt;}
.fs1b_c00386{font-size:42.592176pt;}
.fs1c_c00386{font-size:43.084976pt;}
.fs5_c00386{font-size:44.704000pt;}
.fse_c00386{font-size:44.880000pt;}
.fs1d_c00386{font-size:45.056000pt;}
.fs7_c00386{font-size:45.619376pt;}
.fs17_c00386{font-size:49.420976pt;}
.fsd_c00386{font-size:51.955376pt;}
.fs3_c00386{font-size:53.504000pt;}
.fs10_c00386{font-size:55.440000pt;}
.fs1e_c00386{font-size:57.200000pt;}
.fs1f_c00386{font-size:57.376000pt;}
.fs1a_c00386{font-size:58.432176pt;}
.fs13_c00386{font-size:59.136000pt;}
.fs4_c00386{font-size:61.424176pt;}
.fsa_c00386{font-size:63.008000pt;}
.fs2_c00386{font-size:63.712176pt;}
.fs19_c00386{font-size:64.768000pt;}
.fs14_c00386{font-size:67.232176pt;}
.fs9_c00386{font-size:67.584176pt;}
.fsc_c00386{font-size:68.992176pt;}
.fs16_c00386{font-size:70.400000pt;}
.fs0_c00386{font-size:74.624176pt;}
.fs18_c00386{font-size:79.376000pt;}
.y0_c00386{bottom:0.000000pt;}
.y2a_c00386{bottom:4.352520pt;}
.y29_c00386{bottom:11.009720pt;}
.y28_c00386{bottom:20.509320pt;}
.y27_c00386{bottom:35.086520pt;}
.y1_c00386{bottom:68.000000pt;}
.y26_c00386{bottom:109.851320pt;}
.y25_c00386{bottom:129.488520pt;}
.y24_c00386{bottom:156.104120pt;}
.y21_c00386{bottom:156.420920pt;}
.y23_c00386{bottom:157.054520pt;}
.y22_c00386{bottom:164.024120pt;}
.y20_c00386{bottom:216.608520pt;}
.y1f_c00386{bottom:244.486920pt;}
.y1e_c00386{bottom:273.636920pt;}
.y1d_c00386{bottom:302.148920pt;}
.y1c_c00386{bottom:331.606920pt;}
.y1b_c00386{bottom:331.612112pt;}
.y19_c00386{bottom:360.123320pt;}
.y18_c00386{bottom:360.440120pt;}
.y1a_c00386{bottom:367.088520pt;}
.y17_c00386{bottom:389.268920pt;}
.y16_c00386{bottom:417.780920pt;}
.y15_c00386{bottom:446.609720pt;}
.y14_c00386{bottom:500.465720pt;}
.y13_c00386{bottom:503.316920pt;}
.y12_c00386{bottom:517.572920pt;}
.y11_c00386{bottom:532.145720pt;}
.y10_c00386{bottom:561.291320pt;}
.yf_c00386{bottom:589.798920pt;}
.ye_c00386{bottom:618.315320pt;}
.yd_c00386{bottom:632.571320pt;}
.yc_c00386{bottom:648.090120pt;}
.yb_c00386{bottom:670.904120pt;}
.y7_c00386{bottom:677.240120pt;}
.y8_c00386{bottom:677.556920pt;}
.ya_c00386{bottom:677.869320pt;}
.y9_c00386{bottom:687.060920pt;}
.y4_c00386{bottom:763.409720pt;}
.y5_c00386{bottom:763.726520pt;}
.y6_c00386{bottom:765.944120pt;}
.y3_c00386{bottom:945.565320pt;}
.y2_c00386{bottom:953.485320pt;}
.h15_c00386{height:12.771000pt;}
.h16_c00386{height:18.269625pt;}
.h28_c00386{height:18.567014pt;}
.h12_c00386{height:20.559000pt;}
.h27_c00386{height:23.312438pt;}
.he_c00386{height:24.964500pt;}
.h3_c00386{height:25.698750pt;}
.h25_c00386{height:28.635750pt;}
.h21_c00386{height:28.694594pt;}
.ha_c00386{height:30.382504pt;}
.h26_c00386{height:30.401250pt;}
.hb_c00386{height:31.572934pt;}
.h1a_c00386{height:32.914370pt;}
.h10_c00386{height:34.602280pt;}
.h29_c00386{height:36.712500pt;}
.h24_c00386{height:37.483532pt;}
.h20_c00386{height:41.801891pt;}
.h13_c00386{height:43.874531pt;}
.h11_c00386{height:44.047266pt;}
.h1f_c00386{height:44.422309pt;}
.h9_c00386{height:46.624875pt;}
.h5_c00386{height:55.803000pt;}
.h14_c00386{height:57.822188pt;}
.h17_c00386{height:58.038750pt;}
.h23_c00386{height:59.841375pt;}
.h22_c00386{height:60.925013pt;}
.h1e_c00386{height:60.942934pt;}
.h6_c00386{height:61.904052pt;}
.h8_c00386{height:62.530016pt;}
.h1d_c00386{height:63.566250pt;}
.h7_c00386{height:63.797216pt;}
.h4_c00386{height:64.209927pt;}
.hd_c00386{height:65.715375pt;}
.h18_c00386{height:66.330173pt;}
.hf_c00386{height:67.712048pt;}
.hc_c00386{height:70.488184pt;}
.h2_c00386{height:73.239548pt;}
.h1b_c00386{height:76.636003pt;}
.h1c_c00386{height:77.903203pt;}
.h19_c00386{height:108.889000pt;}
.h1_c00386{height:986.666667pt;}
.h0_c00386{height:1122.666667pt;}
.w1_c00386{width:689.333333pt;}
.w0_c00386{width:793.333333pt;}
.x0_c00386{left:0.000000pt;}
.x1_c00386{left:52.000000pt;}
.x29_c00386{left:89.286253pt;}
.x1c_c00386{left:90.210253pt;}
.x64_c00386{left:91.182653pt;}
.x2a_c00386{left:100.594253pt;}
.x65_c00386{left:101.491853pt;}
.x2b_c00386{left:109.715453pt;}
.x1d_c00386{left:118.937853pt;}
.x66_c00386{left:129.264653pt;}
.x76_c00386{left:130.668253pt;}
.x52_c00386{left:137.444253pt;}
.x5_c00386{left:138.614653pt;}
.x51_c00386{left:141.562653pt;}
.x5c_c00386{left:147.524653pt;}
.x34_c00386{left:148.681853pt;}
.x43_c00386{left:156.799853pt;}
.x2c_c00386{left:157.728253pt;}
.x1e_c00386{left:167.377453pt;}
.x77_c00386{left:168.297053pt;}
.x35_c00386{left:176.872653pt;}
.x67_c00386{left:177.862653pt;}
.x44_c00386{left:187.393053pt;}
.x45_c00386{left:192.422253pt;}
.x73_c00386{left:193.390253pt;}
.x83_c00386{left:195.119453pt;}
.x1f_c00386{left:197.121453pt;}
.x36_c00386{left:202.951453pt;}
.x6_c00386{left:205.578253pt;}
.x46_c00386{left:207.575853pt;}
.x4_c00386{left:212.781053pt;}
.x2d_c00386{left:215.724653pt;}
.x47_c00386{left:216.930253pt;}
.x78_c00386{left:218.373453pt;}
.x11_c00386{left:227.283453pt;}
.x85_c00386{left:228.185453pt;}
.x7_c00386{left:236.835853pt;}
.x80_c00386{left:237.786253pt;}
.x79_c00386{left:239.233853pt;}
.x20_c00386{left:246.159453pt;}
.x74_c00386{left:247.175853pt;}
.x53_c00386{left:256.235453pt;}
.x5d_c00386{left:257.309053pt;}
.x21_c00386{left:265.616253pt;}
.x37_c00386{left:266.571053pt;}
.x70_c00386{left:272.044653pt;}
.x8_c00386{left:275.432653pt;}
.x48_c00386{left:277.012253pt;}
.x9_c00386{left:284.879453pt;}
.x4f_c00386{left:286.467853pt;}
.x5e_c00386{left:288.337853pt;}
.x38_c00386{left:295.813453pt;}
.x12_c00386{left:305.704653pt;}
.x13_c00386{left:313.937053pt;}
.xa_c00386{left:314.997453pt;}
.x5f_c00386{left:316.159053pt;}
.x71_c00386{left:317.800253pt;}
.x49_c00386{left:324.070253pt;}
.x22_c00386{left:325.275853pt;}
.x57_c00386{left:326.521053pt;}
.x3e_c00386{left:335.888653pt;}
.x50_c00386{left:337.437453pt;}
.x15_c00386{left:344.904253pt;}
.x16_c00386{left:354.461053pt;}
.x6d_c00386{left:355.895453pt;}
.x23_c00386{left:364.783453pt;}
.x14_c00386{left:367.291453pt;}
.x84_c00386{left:372.804653pt;}
.x58_c00386{left:374.252253pt;}
.x75_c00386{left:375.537053pt;}
.x68_c00386{left:383.611053pt;}
.xb_c00386{left:384.680253pt;}
.x39_c00386{left:393.827853pt;}
.x17_c00386{left:403.433053pt;}
.x7e_c00386{left:404.656253pt;}
.x2e_c00386{left:413.060253pt;}
.x4a_c00386{left:414.006253pt;}
.x3f_c00386{left:422.278253pt;}
.x6e_c00386{left:423.827053pt;}
.x7f_c00386{left:425.749853pt;}
.x81_c00386{left:432.530253pt;}
.xc_c00386{left:433.520253pt;}
.x82_c00386{left:439.033453pt;}
.x4b_c00386{left:443.033053pt;}
.x54_c00386{left:445.175853pt;}
.xd_c00386{left:452.017853pt;}
.x18_c00386{left:453.104653pt;}
.x72_c00386{left:454.358653pt;}
.x4e_c00386{left:456.739053pt;}
.xe_c00386{left:462.674653pt;}
.x60_c00386{left:463.598653pt;}
.x7a_c00386{left:467.585053pt;}
.x7b_c00386{left:470.119453pt;}
.xf_c00386{left:473.080653pt;}
.x86_c00386{left:474.796653pt;}
.x55_c00386{left:476.002253pt;}
.x4c_c00386{left:482.316253pt;}
.x61_c00386{left:483.530653pt;}
.x69_c00386{left:485.818653pt;}
.x19_c00386{left:491.811453pt;}
.x24_c00386{left:493.069853pt;}
.x62_c00386{left:495.005853pt;}
.x3a_c00386{left:502.270253pt;}
.x7c_c00386{left:503.172253pt;}
.x6a_c00386{left:511.897453pt;}
.x4d_c00386{left:520.961453pt;}
.x63_c00386{left:522.532253pt;}
.x25_c00386{left:530.764653pt;}
.x59_c00386{left:532.071453pt;}
.x40_c00386{left:537.910253pt;}
.x6b_c00386{left:540.409453pt;}
.x2f_c00386{left:541.531453pt;}
.x3b_c00386{left:550.815453pt;}
.x26_c00386{left:560.900253pt;}
.x5a_c00386{left:561.815453pt;}
.x28_c00386{left:563.095853pt;}
.x41_c00386{left:570.193053pt;}
.x10_c00386{left:571.183053pt;}
.x30_c00386{left:579.103053pt;}
.x3c_c00386{left:580.814653pt;}
.x27_c00386{left:590.270253pt;}
.x1a_c00386{left:600.500253pt;}
.x6f_c00386{left:609.146253pt;}
.x31_c00386{left:610.461853pt;}
.x2_c00386{left:611.790653pt;}
.x6c_c00386{left:613.119453pt;}
.x42_c00386{left:619.305853pt;}
.x7d_c00386{left:620.555453pt;}
.x5b_c00386{left:628.400653pt;}
.x3d_c00386{left:629.865853pt;}
.x3_c00386{left:631.348653pt;}
.x1b_c00386{left:638.815453pt;}
.x56_c00386{left:639.994653pt;}
.x32_c00386{left:649.115853pt;}
.x33_c00386{left:659.249053pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b9d08378096e1f3a3b859f9e.woff2')format("woff");}.ff1_c00387{font-family:ff1_c00387;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00387;src:url('chunks/assets/font_c5df5549f468f43cef2ab4e6.woff2')format("woff");}.ff2_c00387{font-family:ff2_c00387;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00387;src:url('chunks/assets/font_43625367eaa8a782ec01c262.woff2')format("woff");}.ff3_c00387{font-family:ff3_c00387;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m40_c00387{transform:matrix(0.100216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100216,0.000000,0.000000,0.250000,0,0);}
.m3a_c00387{transform:matrix(0.132612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132612,0.000000,0.000000,0.250000,0,0);}
.m7_c00387{transform:matrix(0.144799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144799,0.000000,0.000000,0.250000,0,0);}
.m75_c00387{transform:matrix(0.156481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156481,0.000000,0.000000,0.250000,0,0);}
.m2f_c00387{transform:matrix(0.158935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158935,0.000000,0.000000,0.250000,0,0);}
.m55_c00387{transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);}
.m35_c00387{transform:matrix(0.165557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165557,0.000000,0.000000,0.250000,0,0);}
.m21_c00387{transform:matrix(0.169028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169028,0.000000,0.000000,0.250000,0,0);}
.m43_c00387{transform:matrix(0.173085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173085,0.000000,0.000000,0.250000,0,0);}
.m71_c00387{transform:matrix(0.188773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188773,0.000000,0.000000,0.250000,0,0);}
.m38_c00387{transform:matrix(0.192775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192775,0.000000,0.000000,0.250000,0,0);}
.m56_c00387{transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);}
.m10_c00387{transform:matrix(0.201823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201823,0.000000,0.000000,0.250000,0,0);}
.m50_c00387{transform:matrix(0.204640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204640,0.000000,0.000000,0.250000,0,0);}
.m9a_c00387{transform:matrix(0.211806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211806,0.000000,0.000000,0.250000,0,0);}
.m27_c00387{transform:matrix(0.212777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212777,0.000000,0.000000,0.250000,0,0);}
.m54_c00387{transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);}
.m58_c00387{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);}
.m23_c00387{transform:matrix(0.220108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220108,0.000000,0.000000,0.250000,0,0);}
.m11_c00387{transform:matrix(0.220769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220769,0.000000,0.000000,0.250000,0,0);}
.m30_c00387{transform:matrix(0.224603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224603,0.000000,0.000000,0.250000,0,0);}
.mcb_c00387{transform:matrix(0.226121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226121,0.000000,0.000000,0.250000,0,0);}
.m15_c00387{transform:matrix(0.232766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232766,0.000000,0.000000,0.250000,0,0);}
.m34_c00387{transform:matrix(0.233658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233658,0.000000,0.000000,0.250000,0,0);}
.mdc_c00387{transform:matrix(0.240901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240901,0.000000,0.000000,0.250000,0,0);}
.m24_c00387{transform:matrix(0.241336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241336,0.000000,0.000000,0.250000,0,0);}
.m1e_c00387{transform:matrix(0.243903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243903,0.000000,0.000000,0.250000,0,0);}
.m94_c00387{transform:matrix(0.245538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245538,0.000000,0.000000,0.250000,0,0);}
.md6_c00387{transform:matrix(0.246114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246114,0.000000,0.000000,0.250000,0,0);}
.m85_c00387{transform:matrix(0.249464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249464,0.000000,0.000000,0.250000,0,0);}
.m1_c00387{transform:matrix(0.249884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249884,0.000000,0.000000,0.250000,0,0);}
.m0_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);}
.mb4_c00387{transform:matrix(0.254602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254602,0.000000,0.000000,0.250000,0,0);}
.mbc_c00387{transform:matrix(0.254604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254604,0.000000,0.000000,0.250000,0,0);}
.m57_c00387{transform:matrix(0.254683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254683,0.000000,0.000000,0.250000,0,0);}
.m32_c00387{transform:matrix(0.255999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255999,0.000000,0.000000,0.250000,0,0);}
.m22_c00387{transform:matrix(0.256573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256573,0.000000,0.000000,0.250000,0,0);}
.mb5_c00387{transform:matrix(0.258027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258027,0.000000,0.000000,0.250000,0,0);}
.m42_c00387{transform:matrix(0.259071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259071,0.000000,0.000000,0.250000,0,0);}
.ma7_c00387{transform:matrix(0.259408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259408,0.000000,0.000000,0.250000,0,0);}
.m4f_c00387{transform:matrix(0.261871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261871,0.000000,0.000000,0.250000,0,0);}
.m3e_c00387{transform:matrix(0.263373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263373,0.000000,0.000000,0.250000,0,0);}
.m1b_c00387{transform:matrix(0.264177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264177,0.000000,0.000000,0.250000,0,0);}
.m80_c00387{transform:matrix(0.265159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265159,0.000000,0.000000,0.250000,0,0);}
.m3d_c00387{transform:matrix(0.266075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266075,0.000000,0.000000,0.250000,0,0);}
.ma1_c00387{transform:matrix(0.266632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266632,0.000000,0.000000,0.250000,0,0);}
.m2e_c00387{transform:matrix(0.267374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267374,0.000000,0.000000,0.250000,0,0);}
.ma2_c00387{transform:matrix(0.267914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267914,0.000000,0.000000,0.250000,0,0);}
.m1c_c00387{transform:matrix(0.268146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268146,0.000000,0.000000,0.250000,0,0);}
.m83_c00387{transform:matrix(0.268393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268393,0.000000,0.000000,0.250000,0,0);}
.m46_c00387{transform:matrix(0.269016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269016,0.000000,0.000000,0.250000,0,0);}
.m4a_c00387{transform:matrix(0.270827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270827,0.000000,0.000000,0.250000,0,0);}
.m29_c00387{transform:matrix(0.271745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271745,0.000000,0.000000,0.250000,0,0);}
.mc0_c00387{transform:matrix(0.272349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272349,0.000000,0.000000,0.250000,0,0);}
.mce_c00387{transform:matrix(0.272534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272534,0.000000,0.000000,0.250000,0,0);}
.m2a_c00387{transform:matrix(0.272758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272758,0.000000,0.000000,0.250000,0,0);}
.m66_c00387{transform:matrix(0.272808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272808,0.000000,0.000000,0.250000,0,0);}
.m44_c00387{transform:matrix(0.273223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273223,0.000000,0.000000,0.250000,0,0);}
.md9_c00387{transform:matrix(0.273395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273395,0.000000,0.000000,0.250000,0,0);}
.m5e_c00387{transform:matrix(0.273819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273819,0.000000,0.000000,0.250000,0,0);}
.m14_c00387{transform:matrix(0.274223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274223,0.000000,0.000000,0.250000,0,0);}
.m3_c00387{transform:matrix(0.275579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275579,0.000000,0.000000,0.250000,0,0);}
.m9f_c00387{transform:matrix(0.276155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276155,0.000000,0.000000,0.250000,0,0);}
.m26_c00387{transform:matrix(0.276535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276535,0.000000,0.000000,0.250000,0,0);}
.mca_c00387{transform:matrix(0.277957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277957,0.000000,0.000000,0.250000,0,0);}
.m16_c00387{transform:matrix(0.278623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278623,0.000000,0.000000,0.250000,0,0);}
.mc_c00387{transform:matrix(0.279536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279536,0.000000,0.000000,0.250000,0,0);}
.m6a_c00387{transform:matrix(0.280330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280330,0.000000,0.000000,0.250000,0,0);}
.m7e_c00387{transform:matrix(0.280595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280595,0.000000,0.000000,0.250000,0,0);}
.m48_c00387{transform:matrix(0.280680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280680,0.000000,0.000000,0.250000,0,0);}
.m7c_c00387{transform:matrix(0.280741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280741,0.000000,0.000000,0.250000,0,0);}
.m3b_c00387{transform:matrix(0.280792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280792,0.000000,0.000000,0.250000,0,0);}
.mae_c00387{transform:matrix(0.281656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281656,0.000000,0.000000,0.250000,0,0);}
.mbd_c00387{transform:matrix(0.281958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281958,0.000000,0.000000,0.250000,0,0);}
.md5_c00387{transform:matrix(0.281964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281964,0.000000,0.000000,0.250000,0,0);}
.md8_c00387{transform:matrix(0.281997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281997,0.000000,0.000000,0.250000,0,0);}
.m1a_c00387{transform:matrix(0.282115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282115,0.000000,0.000000,0.250000,0,0);}
.m5c_c00387{transform:matrix(0.282668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282668,0.000000,0.000000,0.250000,0,0);}
.mbf_c00387{transform:matrix(0.283440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283440,0.000000,0.000000,0.250000,0,0);}
.m99_c00387{transform:matrix(0.283934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283934,0.000000,0.000000,0.250000,0,0);}
.m6b_c00387{transform:matrix(0.283953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283953,0.000000,0.000000,0.250000,0,0);}
.mba_c00387{transform:matrix(0.284338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284338,0.000000,0.000000,0.250000,0,0);}
.md4_c00387{transform:matrix(0.284637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284637,0.000000,0.000000,0.250000,0,0);}
.m4_c00387{transform:matrix(0.284933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284933,0.000000,0.000000,0.250000,0,0);}
.m9d_c00387{transform:matrix(0.284971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284971,0.000000,0.000000,0.250000,0,0);}
.ma_c00387{transform:matrix(0.285135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285135,0.000000,0.000000,0.250000,0,0);}
.m3c_c00387{transform:matrix(0.285817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285817,0.000000,0.000000,0.250000,0,0);}
.mac_c00387{transform:matrix(0.285842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285842,0.000000,0.000000,0.250000,0,0);}
.mc1_c00387{transform:matrix(0.286764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286764,0.000000,0.000000,0.250000,0,0);}
.m95_c00387{transform:matrix(0.287379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287379,0.000000,0.000000,0.250000,0,0);}
.mdd_c00387{transform:matrix(0.287380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287380,0.000000,0.000000,0.250000,0,0);}
.md_c00387{transform:matrix(0.287776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287776,0.000000,0.000000,0.250000,0,0);}
.ma6_c00387{transform:matrix(0.288254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288254,0.000000,0.000000,0.250000,0,0);}
.m13_c00387{transform:matrix(0.288338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288338,0.000000,0.000000,0.250000,0,0);}
.m8f_c00387{transform:matrix(0.288389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288389,0.000000,0.000000,0.250000,0,0);}
.m5_c00387{transform:matrix(0.289224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289224,0.000000,0.000000,0.250000,0,0);}
.m7b_c00387{transform:matrix(0.289834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289834,0.000000,0.000000,0.250000,0,0);}
.m63_c00387{transform:matrix(0.289878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289878,0.000000,0.000000,0.250000,0,0);}
.m36_c00387{transform:matrix(0.289986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289986,0.000000,0.000000,0.250000,0,0);}
.m2c_c00387{transform:matrix(0.291649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291649,0.000000,0.000000,0.250000,0,0);}
.m3f_c00387{transform:matrix(0.291832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291832,0.000000,0.000000,0.250000,0,0);}
.m33_c00387{transform:matrix(0.292005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292005,0.000000,0.000000,0.250000,0,0);}
.mbb_c00387{transform:matrix(0.293856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293856,0.000000,0.000000,0.250000,0,0);}
.m9b_c00387{transform:matrix(0.293970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293970,0.000000,0.000000,0.250000,0,0);}
.maa_c00387{transform:matrix(0.294058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294058,0.000000,0.000000,0.250000,0,0);}
.m5f_c00387{transform:matrix(0.294416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294416,0.000000,0.000000,0.250000,0,0);}
.m19_c00387{transform:matrix(0.294566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294566,0.000000,0.000000,0.250000,0,0);}
.m81_c00387{transform:matrix(0.294599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294599,0.000000,0.000000,0.250000,0,0);}
.m78_c00387{transform:matrix(0.294765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294765,0.000000,0.000000,0.250000,0,0);}
.md0_c00387{transform:matrix(0.295069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295069,0.000000,0.000000,0.250000,0,0);}
.ma4_c00387{transform:matrix(0.295388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295388,0.000000,0.000000,0.250000,0,0);}
.m76_c00387{transform:matrix(0.295703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295703,0.000000,0.000000,0.250000,0,0);}
.m84_c00387{transform:matrix(0.295993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295993,0.000000,0.000000,0.250000,0,0);}
.m72_c00387{transform:matrix(0.296134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296134,0.000000,0.000000,0.250000,0,0);}
.m6_c00387{transform:matrix(0.297018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297018,0.000000,0.000000,0.250000,0,0);}
.mcf_c00387{transform:matrix(0.297543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297543,0.000000,0.000000,0.250000,0,0);}
.mda_c00387{transform:matrix(0.297727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297727,0.000000,0.000000,0.250000,0,0);}
.m8b_c00387{transform:matrix(0.298177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298177,0.000000,0.000000,0.250000,0,0);}
.mc3_c00387{transform:matrix(0.298240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298240,0.000000,0.000000,0.250000,0,0);}
.m4c_c00387{transform:matrix(0.298514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298514,0.000000,0.000000,0.250000,0,0);}
.m97_c00387{transform:matrix(0.298688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298688,0.000000,0.000000,0.250000,0,0);}
.m5b_c00387{transform:matrix(0.299287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299287,0.000000,0.000000,0.250000,0,0);}
.mcc_c00387{transform:matrix(0.300138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300138,0.000000,0.000000,0.250000,0,0);}
.m49_c00387{transform:matrix(0.300265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300265,0.000000,0.000000,0.250000,0,0);}
.m39_c00387{transform:matrix(0.300423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300423,0.000000,0.000000,0.250000,0,0);}
.mb8_c00387{transform:matrix(0.300746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300746,0.000000,0.000000,0.250000,0,0);}
.m31_c00387{transform:matrix(0.300973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300973,0.000000,0.000000,0.250000,0,0);}
.m7a_c00387{transform:matrix(0.302080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302080,0.000000,0.000000,0.250000,0,0);}
.m37_c00387{transform:matrix(0.302642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302642,0.000000,0.000000,0.250000,0,0);}
.mb_c00387{transform:matrix(0.302988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302988,0.000000,0.000000,0.250000,0,0);}
.mf_c00387{transform:matrix(0.304521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304521,0.000000,0.000000,0.250000,0,0);}
.mcd_c00387{transform:matrix(0.304702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304702,0.000000,0.000000,0.250000,0,0);}
.m79_c00387{transform:matrix(0.304792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304792,0.000000,0.000000,0.250000,0,0);}
.m89_c00387{transform:matrix(0.305327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305327,0.000000,0.000000,0.250000,0,0);}
.mdb_c00387{transform:matrix(0.305354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305354,0.000000,0.000000,0.250000,0,0);}
.mab_c00387{transform:matrix(0.305595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305595,0.000000,0.000000,0.250000,0,0);}
.m18_c00387{transform:matrix(0.305671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305671,0.000000,0.000000,0.250000,0,0);}
.mc6_c00387{transform:matrix(0.306223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306223,0.000000,0.000000,0.250000,0,0);}
.mc7_c00387{transform:matrix(0.307666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307666,0.000000,0.000000,0.250000,0,0);}
.m6f_c00387{transform:matrix(0.308037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308037,0.000000,0.000000,0.250000,0,0);}
.maf_c00387{transform:matrix(0.308995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308995,0.000000,0.000000,0.250000,0,0);}
.m59_c00387{transform:matrix(0.309265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309265,0.000000,0.000000,0.250000,0,0);}
.m53_c00387{transform:matrix(0.310094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310094,0.000000,0.000000,0.250000,0,0);}
.m6c_c00387{transform:matrix(0.310438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310438,0.000000,0.000000,0.250000,0,0);}
.me_c00387{transform:matrix(0.310675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310675,0.000000,0.000000,0.250000,0,0);}
.m4e_c00387{transform:matrix(0.310910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310910,0.000000,0.000000,0.250000,0,0);}
.m65_c00387{transform:matrix(0.311425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311425,0.000000,0.000000,0.250000,0,0);}
.m62_c00387{transform:matrix(0.311975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311975,0.000000,0.000000,0.250000,0,0);}
.m70_c00387{transform:matrix(0.312146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312146,0.000000,0.000000,0.250000,0,0);}
.m88_c00387{transform:matrix(0.312867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312867,0.000000,0.000000,0.250000,0,0);}
.ma8_c00387{transform:matrix(0.313002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313002,0.000000,0.000000,0.250000,0,0);}
.mc2_c00387{transform:matrix(0.313342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313342,0.000000,0.000000,0.250000,0,0);}
.m92_c00387{transform:matrix(0.313850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313850,0.000000,0.000000,0.250000,0,0);}
.mb6_c00387{transform:matrix(0.313930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313930,0.000000,0.000000,0.250000,0,0);}
.mad_c00387{transform:matrix(0.313994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313994,0.000000,0.000000,0.250000,0,0);}
.mb3_c00387{transform:matrix(0.315534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315534,0.000000,0.000000,0.250000,0,0);}
.m8e_c00387{transform:matrix(0.315755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315755,0.000000,0.000000,0.250000,0,0);}
.m77_c00387{transform:matrix(0.315888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315888,0.000000,0.000000,0.250000,0,0);}
.m51_c00387{transform:matrix(0.316688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316688,0.000000,0.000000,0.250000,0,0);}
.m25_c00387{transform:matrix(0.316775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316775,0.000000,0.000000,0.250000,0,0);}
.m73_c00387{transform:matrix(0.317088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317088,0.000000,0.000000,0.250000,0,0);}
.m5a_c00387{transform:matrix(0.317128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317128,0.000000,0.000000,0.250000,0,0);}
.m12_c00387{transform:matrix(0.317960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317960,0.000000,0.000000,0.250000,0,0);}
.m1f_c00387{transform:matrix(0.318938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318938,0.000000,0.000000,0.250000,0,0);}
.m52_c00387{transform:matrix(0.320500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320500,0.000000,0.000000,0.250000,0,0);}
.mc4_c00387{transform:matrix(0.321082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321082,0.000000,0.000000,0.250000,0,0);}
.md1_c00387{transform:matrix(0.321469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321469,0.000000,0.000000,0.250000,0,0);}
.m45_c00387{transform:matrix(0.322073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322073,0.000000,0.000000,0.250000,0,0);}
.m4d_c00387{transform:matrix(0.322750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00387{transform:matrix(0.323159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323159,0.000000,0.000000,0.250000,0,0);}
.m1d_c00387{transform:matrix(0.324008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324008,0.000000,0.000000,0.250000,0,0);}
.m7d_c00387{transform:matrix(0.324737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324737,0.000000,0.000000,0.250000,0,0);}
.md2_c00387{transform:matrix(0.325068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325068,0.000000,0.000000,0.250000,0,0);}
.m82_c00387{transform:matrix(0.325207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325207,0.000000,0.000000,0.250000,0,0);}
.m68_c00387{transform:matrix(0.326068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326068,0.000000,0.000000,0.250000,0,0);}
.mc8_c00387{transform:matrix(0.326129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326129,0.000000,0.000000,0.250000,0,0);}
.m96_c00387{transform:matrix(0.326449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326449,0.000000,0.000000,0.250000,0,0);}
.md7_c00387{transform:matrix(0.326552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326552,0.000000,0.000000,0.250000,0,0);}
.m60_c00387{transform:matrix(0.327120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327120,0.000000,0.000000,0.250000,0,0);}
.m86_c00387{transform:matrix(0.327270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327270,0.000000,0.000000,0.250000,0,0);}
.m41_c00387{transform:matrix(0.327614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327614,0.000000,0.000000,0.250000,0,0);}
.m7f_c00387{transform:matrix(0.327909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327909,0.000000,0.000000,0.250000,0,0);}
.m98_c00387{transform:matrix(0.327947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327947,0.000000,0.000000,0.250000,0,0);}
.ma9_c00387{transform:matrix(0.328412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328412,0.000000,0.000000,0.250000,0,0);}
.m17_c00387{transform:matrix(0.328502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328502,0.000000,0.000000,0.250000,0,0);}
.mb0_c00387{transform:matrix(0.328514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328514,0.000000,0.000000,0.250000,0,0);}
.m47_c00387{transform:matrix(0.328668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328668,0.000000,0.000000,0.250000,0,0);}
.m6d_c00387{transform:matrix(0.330281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330281,0.000000,0.000000,0.250000,0,0);}
.mc9_c00387{transform:matrix(0.334059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334059,0.000000,0.000000,0.250000,0,0);}
.m67_c00387{transform:matrix(0.334871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334871,0.000000,0.000000,0.250000,0,0);}
.m87_c00387{transform:matrix(0.335189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335189,0.000000,0.000000,0.250000,0,0);}
.m61_c00387{transform:matrix(0.336513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336513,0.000000,0.000000,0.250000,0,0);}
.m8c_c00387{transform:matrix(0.336726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336726,0.000000,0.000000,0.250000,0,0);}
.ma5_c00387{transform:matrix(0.341969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341969,0.000000,0.000000,0.250000,0,0);}
.mb1_c00387{transform:matrix(0.342425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342425,0.000000,0.000000,0.250000,0,0);}
.m90_c00387{transform:matrix(0.342740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342740,0.000000,0.000000,0.250000,0,0);}
.m9e_c00387{transform:matrix(0.342744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342744,0.000000,0.000000,0.250000,0,0);}
.ma3_c00387{transform:matrix(0.346088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346088,0.000000,0.000000,0.250000,0,0);}
.mb9_c00387{transform:matrix(0.348976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348976,0.000000,0.000000,0.250000,0,0);}
.m5d_c00387{transform:matrix(0.349658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349658,0.000000,0.000000,0.250000,0,0);}
.m9c_c00387{transform:matrix(0.351110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351110,0.000000,0.000000,0.250000,0,0);}
.ma0_c00387{transform:matrix(0.352299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352299,0.000000,0.000000,0.250000,0,0);}
.m64_c00387{transform:matrix(0.353245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353245,0.000000,0.000000,0.250000,0,0);}
.m4b_c00387{transform:matrix(0.361903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361903,0.000000,0.000000,0.250000,0,0);}
.m20_c00387{transform:matrix(0.367671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367671,0.000000,0.000000,0.250000,0,0);}
.m8_c00387{transform:matrix(0.368136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368136,0.000000,0.000000,0.250000,0,0);}
.m91_c00387{transform:matrix(0.371927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371927,0.000000,0.000000,0.250000,0,0);}
.m93_c00387{transform:matrix(0.373426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373426,0.000000,0.000000,0.250000,0,0);}
.mb7_c00387{transform:matrix(0.378888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378888,0.000000,0.000000,0.250000,0,0);}
.m74_c00387{transform:matrix(0.382909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382909,0.000000,0.000000,0.250000,0,0);}
.md3_c00387{transform:matrix(0.384060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384060,0.000000,0.000000,0.250000,0,0);}
.m2_c00387{transform:matrix(0.412329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412329,0.000000,0.000000,0.250000,0,0);}
.mb2_c00387{transform:matrix(0.413906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413906,0.000000,0.000000,0.250000,0,0);}
.m9_c00387{transform:matrix(0.416138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416138,0.000000,0.000000,0.250000,0,0);}
.m6e_c00387{transform:matrix(0.421168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421168,0.000000,0.000000,0.250000,0,0);}
.m2b_c00387{transform:matrix(0.421523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421523,0.000000,0.000000,0.250000,0,0);}
.mbe_c00387{transform:matrix(0.426547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426547,0.000000,0.000000,0.250000,0,0);}
.m28_c00387{transform:matrix(0.428819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428819,0.000000,0.000000,0.250000,0,0);}
.m8d_c00387{transform:matrix(0.432296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432296,0.000000,0.000000,0.250000,0,0);}
.mc5_c00387{transform:matrix(0.439069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439069,0.000000,0.000000,0.250000,0,0);}
.m69_c00387{transform:matrix(0.444701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444701,0.000000,0.000000,0.250000,0,0);}
.m8a_c00387{transform:matrix(0.460583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460583,0.000000,0.000000,0.250000,0,0);}
.v1_c00387{vertical-align:-89.806860px;}
.v0_c00387{vertical-align:0.000000px;}
.v2_c00387{vertical-align:18.552600px;}
.ls7_c00387{letter-spacing:-2.938327px;}
.ls9_c00387{letter-spacing:-2.668050px;}
.lsd_c00387{letter-spacing:-2.584197px;}
.ls19_c00387{letter-spacing:-2.126817px;}
.ls18_c00387{letter-spacing:-2.020095px;}
.ls11_c00387{letter-spacing:-1.981980px;}
.ls14_c00387{letter-spacing:-1.920996px;}
.ls10_c00387{letter-spacing:-1.857240px;}
.lsc_c00387{letter-spacing:-1.760913px;}
.ls12_c00387{letter-spacing:-1.151073px;}
.ls16_c00387{letter-spacing:-0.975744px;}
.lse_c00387{letter-spacing:-0.640332px;}
.lsb_c00387{letter-spacing:-0.243936px;}
.ls1b_c00387{letter-spacing:-0.022869px;}
.ls6_c00387{letter-spacing:0.000000px;}
.ls5_c00387{letter-spacing:0.365904px;}
.ls4_c00387{letter-spacing:0.472626px;}
.ls15_c00387{letter-spacing:1.544400px;}
.lsa_c00387{letter-spacing:1.806651px;}
.lsf_c00387{letter-spacing:2.088702px;}
.ls3_c00387{letter-spacing:3.232152px;}
.ls1a_c00387{letter-spacing:3.323628px;}
.ls8_c00387{letter-spacing:3.811500px;}
.ls1_c00387{letter-spacing:7.393320px;}
.ls0_c00387{letter-spacing:9.452520px;}
.ls2_c00387{letter-spacing:15.344604px;}
.ls13_c00387{letter-spacing:49.896198px;}
.ls17_c00387{letter-spacing:51.321798px;}
.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;}
}
.ws8_c00387{word-spacing:-19.423404px;}
.ws0_c00387{word-spacing:-19.057500px;}
.wsc_c00387{word-spacing:-19.034631px;}
.ws1_c00387{word-spacing:-18.813564px;}
.ws3_c00387{word-spacing:-18.417168px;}
.ws2_c00387{word-spacing:-17.296587px;}
.ws7_c00387{word-spacing:-16.930683px;}
.wsa_c00387{word-spacing:-4.040190px;}
.ws9_c00387{word-spacing:-0.152460px;}
.wsd_c00387{word-spacing:0.000000px;}
.wsb_c00387{word-spacing:0.990990px;}
.ws5_c00387{word-spacing:1.905750px;}
.ws6_c00387{word-spacing:2.439360px;}
.ws4_c00387{word-spacing:6.632010px;}
._1e_c00387{margin-left:-17.532900px;}
._13_c00387{margin-left:-13.155714px;}
._5_c00387{margin-left:-12.120570px;}
._1c_c00387{margin-left:-9.986130px;}
._c_c00387{margin-left:-5.868720px;}
._1b_c00387{margin-left:-3.309372px;}
._1d_c00387{margin-left:-1.021482px;}
._1_c00387{width:3.887730px;}
._1a_c00387{width:5.320854px;}
._4_c00387{width:6.784470px;}
._3_c00387{width:8.613990px;}
._1f_c00387{width:9.681210px;}
._e_c00387{width:10.899900px;}
._2_c00387{width:12.577950px;}
._b_c00387{width:15.093540px;}
._18_c00387{width:17.685360px;}
._16_c00387{width:21.496860px;}
._f_c00387{width:23.632092px;}
._a_c00387{width:25.898994px;}
._6_c00387{width:28.304100px;}
._14_c00387{width:29.523879px;}
._15_c00387{width:30.644460px;}
._8_c00387{width:32.137974px;}
._11_c00387{width:33.312510px;}
._10_c00387{width:35.241030px;}
._9_c00387{width:39.487140px;}
._d_c00387{width:40.869180px;}
._7_c00387{width:43.679790px;}
._19_c00387{width:45.619200px;}
._17_c00387{width:60.877872px;}
._12_c00387{width:519.156000px;}
._0_c00387{width:587.003472px;}
.fc0_c00387{color:transparent;}
.fs1_c00387{font-size:22.176000px;}
.fs0_c00387{font-size:27.720000px;}
.fsb_c00387{font-size:30.888000px;}
.fse_c00387{font-size:33.660000px;}
.fs4_c00387{font-size:37.818000px;}
.fs6_c00387{font-size:39.600000px;}
.fs9_c00387{font-size:49.896198px;}
.fsc_c00387{font-size:51.321798px;}
.fs8_c00387{font-size:53.064000px;}
.fs5_c00387{font-size:63.558000px;}
.fsd_c00387{font-size:64.548000px;}
.fsa_c00387{font-size:72.864000px;}
.fs3_c00387{font-size:76.230000px;}
.fs2_c00387{font-size:83.952198px;}
.fs7_c00387{font-size:118.800000px;}
.y0_c00387{bottom:0.000000px;}
.y24_c00387{bottom:28.780335px;}
.y23_c00387{bottom:50.872185px;}
.y1_c00387{bottom:76.500000px;}
.y25_c00387{bottom:98.278335px;}
.y3_c00387{bottom:129.280185px;}
.y22_c00387{bottom:140.333535px;}
.y21_c00387{bottom:170.627535px;}
.y20_c00387{bottom:208.757385px;}
.y1f_c00387{bottom:241.907535px;}
.y1e_c00387{bottom:273.983535px;}
.y1d_c00387{bottom:306.415935px;}
.y1c_c00387{bottom:339.204735px;}
.y1b_c00387{bottom:371.993535px;}
.y1a_c00387{bottom:436.853385px;}
.y18_c00387{bottom:469.647135px;}
.y19_c00387{bottom:475.344585px;}
.y17_c00387{bottom:502.074585px;}
.y16_c00387{bottom:534.863385px;}
.y15_c00387{bottom:566.944335px;}
.y14_c00387{bottom:599.376735px;}
.y13_c00387{bottom:632.165535px;}
.y12_c00387{bottom:665.310735px;}
.y11_c00387{bottom:689.902335px;}
.y10_c00387{bottom:698.094585px;}
.yf_c00387{bottom:728.393535px;}
.ye_c00387{bottom:731.957535px;}
.yd_c00387{bottom:745.144335px;}
.yc_c00387{bottom:759.756735px;}
.yb_c00387{bottom:764.033535px;}
.ya_c00387{bottom:827.824185px;}
.y9_c00387{bottom:860.256585px;}
.y2_c00387{bottom:860.974335px;}
.y8_c00387{bottom:877.720185px;}
.y7_c00387{bottom:893.045385px;}
.y6_c00387{bottom:925.477785px;}
.y5_c00387{bottom:1077.660585px;}
.y4_c00387{bottom:1100.112300px;}
.h3_c00387{height:23.128875px;}
.h2_c00387{height:28.911094px;}
.h9_c00387{height:32.215219px;}
.hb_c00387{height:33.035449px;}
.h8_c00387{height:33.230868px;}
.ha_c00387{height:34.180317px;}
.h7_c00387{height:55.344094px;}
.h5_c00387{height:74.815576px;}
.h4_c00387{height:82.394491px;}
.h6_c00387{height:123.904688px;}
.h1_c00387{height:1110.000000px;}
.h0_c00387{height:1263.000000px;}
.w1_c00387{width:775.500000px;}
.w0_c00387{width:892.500000px;}
.x0_c00387{left:0.000000px;}
.x3_c00387{left:5.605035px;}
.x2_c00387{left:34.805085px;}
.x1_c00387{left:58.500000px;}
.x19_c00387{left:102.229035px;}
.x6_c00387{left:103.852635px;}
.x4d_c00387{left:113.569485px;}
.x59_c00387{left:123.603135px;}
.x7_c00387{left:124.637685px;}
.x73_c00387{left:133.988235px;}
.x2d_c00387{left:135.384135px;}
.x39_c00387{left:145.001985px;}
.x8_c00387{left:146.620635px;}
.x66_c00387{left:155.372235px;}
.x30_c00387{left:156.688935px;}
.x26_c00387{left:159.253035px;}
.x1a_c00387{left:166.737435px;}
.x5a_c00387{left:168.039285px;}
.x3a_c00387{left:178.419435px;}
.x7c_c00387{left:180.043035px;}
.x37_c00387{left:188.279835px;}
.x3b_c00387{left:190.096485px;}
.x9_c00387{left:200.788485px;}
.x6c_c00387{left:203.144685px;}
.x3c_c00387{left:212.178435px;}
.x5e_c00387{left:215.093985px;}
.x45_c00387{left:223.528785px;}
.xa_c00387{left:233.423835px;}
.x46_c00387{left:234.606885px;}
.x67_c00387{left:236.086935px;}
.x4e_c00387{left:239.324235px;}
.x81_c00387{left:241.076535px;}
.x1b_c00387{left:245.125635px;}
.x74_c00387{left:255.847335px;}
.x38_c00387{left:257.198685px;}
.x1c_c00387{left:260.693385px;}
.x25_c00387{left:267.534285px;}
.x4f_c00387{left:270.187485px;}
.x55_c00387{left:277.261035px;}
.xb_c00387{left:278.503485px;}
.x7d_c00387{left:280.216185px;}
.x1d_c00387{left:288.472785px;}
.x71_c00387{left:289.527135px;}
.x3d_c00387{left:290.556735px;}
.x79_c00387{left:293.081235px;}
.xc_c00387{left:301.535835px;}
.x27_c00387{left:312.005085px;}
.x3e_c00387{left:313.386135px;}
.x1e_c00387{left:321.721935px;}
.xd_c00387{left:323.043585px;}
.x5b_c00387{left:325.434435px;}
.x2e_c00387{left:332.745585px;}
.x1f_c00387{left:334.077135px;}
.x47_c00387{left:345.001785px;}
.x2f_c00387{left:356.094735px;}
.x3f_c00387{left:362.613885px;}
.x50_c00387{left:366.870885px;}
.x56_c00387{left:368.276685px;}
.x20_c00387{left:377.374785px;}
.x28_c00387{left:378.434085px;}
.x31_c00387{left:389.695335px;}
.x68_c00387{left:390.749685px;}
.x6d_c00387{left:392.581185px;}
.x40_c00387{left:399.733935px;}
.x82_c00387{left:400.748685px;}
.xe_c00387{left:401.798085px;}
.x41_c00387{left:404.664135px;}
.x5f_c00387{left:410.554635px;}
.xf_c00387{left:412.059435px;}
.x77_c00387{left:421.246635px;}
.x10_c00387{left:422.340585px;}
.x6e_c00387{left:432.295035px;}
.x57_c00387{left:433.859235px;}
.x11_c00387{left:444.368085px;}
.x7b_c00387{left:452.966235px;}
.x7e_c00387{left:454.708635px;}
.x60_c00387{left:455.777835px;}
.x48_c00387{left:458.391435px;}
.x21_c00387{left:466.682685px;}
.x42_c00387{left:477.721185px;}
.x83_c00387{left:478.730985px;}
.x12_c00387{left:488.764635px;}
.x6a_c00387{left:490.140735px;}
.x78_c00387{left:498.585435px;}
.x13_c00387{left:500.090235px;}
.x84_c00387{left:501.238635px;}
.x6b_c00387{left:502.679085px;}
.x6f_c00387{left:511.207935px;}
.x63_c00387{left:512.217735px;}
.x61_c00387{left:516.697485px;}
.x29_c00387{left:521.038635px;}
.x51_c00387{left:522.083085px;}
.x14_c00387{left:533.270085px;}
.x4_c00387{left:539.492235px;}
.x52_c00387{left:543.442335px;}
.x2a_c00387{left:544.655085px;}
.x62_c00387{left:554.926335px;}
.x2b_c00387{left:565.742085px;}
.x15_c00387{left:575.567835px;}
.x32_c00387{left:576.879585px;}
.x7f_c00387{left:579.616935px;}
.x5c_c00387{left:587.279535px;}
.x33_c00387{left:588.571485px;}
.x72_c00387{left:599.545635px;}
.x49_c00387{left:601.050435px;}
.x16_c00387{left:610.519785px;}
.x75_c00387{left:611.881035px;}
.x43_c00387{left:621.271185px;}
.x34_c00387{left:623.761035px;}
.x70_c00387{left:632.393835px;}
.x2c_c00387{left:642.264135px;}
.x4a_c00387{left:643.813485px;}
.x44_c00387{left:652.550235px;}
.x69_c00387{left:654.134235px;}
.x7a_c00387{left:657.312135px;}
.x4b_c00387{left:665.182635px;}
.x22_c00387{left:666.222135px;}
.x5d_c00387{left:667.929885px;}
.x80_c00387{left:673.221435px;}
.x64_c00387{left:674.963835px;}
.x76_c00387{left:676.231035px;}
.x17_c00387{left:677.315085px;}
.x35_c00387{left:686.794335px;}
.x4c_c00387{left:697.956585px;}
.x23_c00387{left:699.040635px;}
.x18_c00387{left:700.253385px;}
.x5_c00387{left:701.842335px;}
.x36_c00387{left:709.188135px;}
.x58_c00387{left:720.196935px;}
.x24_c00387{left:730.245435px;}
.x53_c00387{left:732.037335px;}
.x54_c00387{left:743.437185px;}
.x65_c00387{left:753.901485px;}
.x85_c00387{left:755.421135px;}
@media print{
.v1_c00387{vertical-align:-79.828320pt;}
.v0_c00387{vertical-align:0.000000pt;}
.v2_c00387{vertical-align:16.491200pt;}
.ls7_c00387{letter-spacing:-2.611846pt;}
.ls9_c00387{letter-spacing:-2.371600pt;}
.lsd_c00387{letter-spacing:-2.297064pt;}
.ls19_c00387{letter-spacing:-1.890504pt;}
.ls18_c00387{letter-spacing:-1.795640pt;}
.ls11_c00387{letter-spacing:-1.761760pt;}
.ls14_c00387{letter-spacing:-1.707552pt;}
.ls10_c00387{letter-spacing:-1.650880pt;}
.lsc_c00387{letter-spacing:-1.565256pt;}
.ls12_c00387{letter-spacing:-1.023176pt;}
.ls16_c00387{letter-spacing:-0.867328pt;}
.lse_c00387{letter-spacing:-0.569184pt;}
.lsb_c00387{letter-spacing:-0.216832pt;}
.ls1b_c00387{letter-spacing:-0.020328pt;}
.ls6_c00387{letter-spacing:0.000000pt;}
.ls5_c00387{letter-spacing:0.325248pt;}
.ls4_c00387{letter-spacing:0.420112pt;}
.ls15_c00387{letter-spacing:1.372800pt;}
.lsa_c00387{letter-spacing:1.605912pt;}
.lsf_c00387{letter-spacing:1.856624pt;}
.ls3_c00387{letter-spacing:2.873024pt;}
.ls1a_c00387{letter-spacing:2.954336pt;}
.ls8_c00387{letter-spacing:3.388000pt;}
.ls1_c00387{letter-spacing:6.571840pt;}
.ls0_c00387{letter-spacing:8.402240pt;}
.ls2_c00387{letter-spacing:13.639648pt;}
.ls13_c00387{letter-spacing:44.352176pt;}
.ls17_c00387{letter-spacing:45.619376pt;}
.ws8_c00387{word-spacing:-17.265248pt;}
.ws0_c00387{word-spacing:-16.940000pt;}
.wsc_c00387{word-spacing:-16.919672pt;}
.ws1_c00387{word-spacing:-16.723168pt;}
.ws3_c00387{word-spacing:-16.370816pt;}
.ws2_c00387{word-spacing:-15.374744pt;}
.ws7_c00387{word-spacing:-15.049496pt;}
.wsa_c00387{word-spacing:-3.591280pt;}
.ws9_c00387{word-spacing:-0.135520pt;}
.wsd_c00387{word-spacing:0.000000pt;}
.wsb_c00387{word-spacing:0.880880pt;}
.ws5_c00387{word-spacing:1.694000pt;}
.ws6_c00387{word-spacing:2.168320pt;}
.ws4_c00387{word-spacing:5.895120pt;}
._1e_c00387{margin-left:-15.584800pt;}
._13_c00387{margin-left:-11.693968pt;}
._5_c00387{margin-left:-10.773840pt;}
._1c_c00387{margin-left:-8.876560pt;}
._c_c00387{margin-left:-5.216640pt;}
._1b_c00387{margin-left:-2.941664pt;}
._1d_c00387{margin-left:-0.907984pt;}
._1_c00387{width:3.455760pt;}
._1a_c00387{width:4.729648pt;}
._4_c00387{width:6.030640pt;}
._3_c00387{width:7.656880pt;}
._1f_c00387{width:8.605520pt;}
._e_c00387{width:9.688800pt;}
._2_c00387{width:11.180400pt;}
._b_c00387{width:13.416480pt;}
._18_c00387{width:15.720320pt;}
._16_c00387{width:19.108320pt;}
._f_c00387{width:21.006304pt;}
._a_c00387{width:23.021328pt;}
._6_c00387{width:25.159200pt;}
._14_c00387{width:26.243448pt;}
._15_c00387{width:27.239520pt;}
._8_c00387{width:28.567088pt;}
._11_c00387{width:29.611120pt;}
._10_c00387{width:31.325360pt;}
._9_c00387{width:35.099680pt;}
._d_c00387{width:36.328160pt;}
._7_c00387{width:38.826480pt;}
._19_c00387{width:40.550400pt;}
._17_c00387{width:54.113664pt;}
._12_c00387{width:461.472000pt;}
._0_c00387{width:521.780864pt;}
.fs1_c00387{font-size:19.712000pt;}
.fs0_c00387{font-size:24.640000pt;}
.fsb_c00387{font-size:27.456000pt;}
.fse_c00387{font-size:29.920000pt;}
.fs4_c00387{font-size:33.616000pt;}
.fs6_c00387{font-size:35.200000pt;}
.fs9_c00387{font-size:44.352176pt;}
.fsc_c00387{font-size:45.619376pt;}
.fs8_c00387{font-size:47.168000pt;}
.fs5_c00387{font-size:56.496000pt;}
.fsd_c00387{font-size:57.376000pt;}
.fsa_c00387{font-size:64.768000pt;}
.fs3_c00387{font-size:67.760000pt;}
.fs2_c00387{font-size:74.624176pt;}
.fs7_c00387{font-size:105.600000pt;}
.y0_c00387{bottom:0.000000pt;}
.y24_c00387{bottom:25.582520pt;}
.y23_c00387{bottom:45.219720pt;}
.y1_c00387{bottom:68.000000pt;}
.y25_c00387{bottom:87.358520pt;}
.y3_c00387{bottom:114.915720pt;}
.y22_c00387{bottom:124.740920pt;}
.y21_c00387{bottom:151.668920pt;}
.y20_c00387{bottom:185.562120pt;}
.y1f_c00387{bottom:215.028920pt;}
.y1e_c00387{bottom:243.540920pt;}
.y1d_c00387{bottom:272.369720pt;}
.y1c_c00387{bottom:301.515320pt;}
.y1b_c00387{bottom:330.660920pt;}
.y1a_c00387{bottom:388.314120pt;}
.y18_c00387{bottom:417.464120pt;}
.y19_c00387{bottom:422.528520pt;}
.y17_c00387{bottom:446.288520pt;}
.y16_c00387{bottom:475.434120pt;}
.y15_c00387{bottom:503.950520pt;}
.y14_c00387{bottom:532.779320pt;}
.y13_c00387{bottom:561.924920pt;}
.y12_c00387{bottom:591.387320pt;}
.y11_c00387{bottom:613.246520pt;}
.y10_c00387{bottom:620.528520pt;}
.yf_c00387{bottom:647.460920pt;}
.ye_c00387{bottom:650.628920pt;}
.yd_c00387{bottom:662.350520pt;}
.yc_c00387{bottom:675.339320pt;}
.yb_c00387{bottom:679.140920pt;}
.ya_c00387{bottom:735.843720pt;}
.y9_c00387{bottom:764.672520pt;}
.y2_c00387{bottom:765.310520pt;}
.y8_c00387{bottom:780.195720pt;}
.y7_c00387{bottom:793.818120pt;}
.y6_c00387{bottom:822.646920pt;}
.y5_c00387{bottom:957.920520pt;}
.y4_c00387{bottom:977.877600pt;}
.h3_c00387{height:20.559000pt;}
.h2_c00387{height:25.698750pt;}
.h9_c00387{height:28.635750pt;}
.hb_c00387{height:29.364844pt;}
.h8_c00387{height:29.538549pt;}
.ha_c00387{height:30.382504pt;}
.h7_c00387{height:49.194750pt;}
.h5_c00387{height:66.502734pt;}
.h4_c00387{height:73.239548pt;}
.h6_c00387{height:110.137500pt;}
.h1_c00387{height:986.666667pt;}
.h0_c00387{height:1122.666667pt;}
.w1_c00387{width:689.333333pt;}
.w0_c00387{width:793.333333pt;}
.x0_c00387{left:0.000000pt;}
.x3_c00387{left:4.982253pt;}
.x2_c00387{left:30.937853pt;}
.x1_c00387{left:52.000000pt;}
.x19_c00387{left:90.870253pt;}
.x6_c00387{left:92.313453pt;}
.x4d_c00387{left:100.950653pt;}
.x59_c00387{left:109.869453pt;}
.x7_c00387{left:110.789053pt;}
.x73_c00387{left:119.100653pt;}
.x2d_c00387{left:120.341453pt;}
.x39_c00387{left:128.890653pt;}
.x8_c00387{left:130.329453pt;}
.x66_c00387{left:138.108653pt;}
.x30_c00387{left:139.279053pt;}
.x26_c00387{left:141.558253pt;}
.x1a_c00387{left:148.211053pt;}
.x5a_c00387{left:149.368253pt;}
.x3a_c00387{left:158.595053pt;}
.x7c_c00387{left:160.038253pt;}
.x37_c00387{left:167.359853pt;}
.x3b_c00387{left:168.974653pt;}
.x9_c00387{left:178.478653pt;}
.x6c_c00387{left:180.573053pt;}
.x3c_c00387{left:188.603053pt;}
.x5e_c00387{left:191.194653pt;}
.x45_c00387{left:198.692253pt;}
.xa_c00387{left:207.487853pt;}
.x46_c00387{left:208.539453pt;}
.x67_c00387{left:209.855053pt;}
.x4e_c00387{left:212.732653pt;}
.x81_c00387{left:214.290253pt;}
.x1b_c00387{left:217.889453pt;}
.x74_c00387{left:227.419853pt;}
.x38_c00387{left:228.621053pt;}
.x1c_c00387{left:231.727453pt;}
.x25_c00387{left:237.808253pt;}
.x4f_c00387{left:240.166653pt;}
.x55_c00387{left:246.454253pt;}
.xb_c00387{left:247.558653pt;}
.x7d_c00387{left:249.081053pt;}
.x1d_c00387{left:256.420253pt;}
.x71_c00387{left:257.357453pt;}
.x3d_c00387{left:258.272653pt;}
.x79_c00387{left:260.516653pt;}
.xc_c00387{left:268.031853pt;}
.x27_c00387{left:277.337853pt;}
.x3e_c00387{left:278.565453pt;}
.x1e_c00387{left:285.975053pt;}
.xd_c00387{left:287.149853pt;}
.x5b_c00387{left:289.275053pt;}
.x2e_c00387{left:295.773853pt;}
.x1f_c00387{left:296.957453pt;}
.x47_c00387{left:306.668253pt;}
.x2f_c00387{left:316.528653pt;}
.x3f_c00387{left:322.323453pt;}
.x50_c00387{left:326.107453pt;}
.x56_c00387{left:327.357053pt;}
.x20_c00387{left:335.444253pt;}
.x28_c00387{left:336.385853pt;}
.x31_c00387{left:346.395853pt;}
.x68_c00387{left:347.333053pt;}
.x6d_c00387{left:348.961053pt;}
.x40_c00387{left:355.319053pt;}
.x82_c00387{left:356.221053pt;}
.xe_c00387{left:357.153853pt;}
.x41_c00387{left:359.701453pt;}
.x5f_c00387{left:364.937453pt;}
.xf_c00387{left:366.275053pt;}
.x77_c00387{left:374.441453pt;}
.x10_c00387{left:375.413853pt;}
.x6e_c00387{left:384.262253pt;}
.x57_c00387{left:385.652653pt;}
.x11_c00387{left:394.993853pt;}
.x7b_c00387{left:402.636653pt;}
.x7e_c00387{left:404.185453pt;}
.x60_c00387{left:405.135853pt;}
.x48_c00387{left:407.459053pt;}
.x21_c00387{left:414.829053pt;}
.x42_c00387{left:424.641053pt;}
.x83_c00387{left:425.538653pt;}
.x12_c00387{left:434.457453pt;}
.x6a_c00387{left:435.680653pt;}
.x78_c00387{left:443.187053pt;}
.x13_c00387{left:444.524653pt;}
.x84_c00387{left:445.545453pt;}
.x6b_c00387{left:446.825853pt;}
.x6f_c00387{left:454.407053pt;}
.x63_c00387{left:455.304653pt;}
.x61_c00387{left:459.286653pt;}
.x29_c00387{left:463.145453pt;}
.x51_c00387{left:464.073853pt;}
.x14_c00387{left:474.017853pt;}
.x4_c00387{left:479.548653pt;}
.x52_c00387{left:483.059853pt;}
.x2a_c00387{left:484.137853pt;}
.x62_c00387{left:493.267853pt;}
.x2b_c00387{left:502.881853pt;}
.x15_c00387{left:511.615853pt;}
.x32_c00387{left:512.781853pt;}
.x7f_c00387{left:515.215053pt;}
.x5c_c00387{left:522.026253pt;}
.x33_c00387{left:523.174653pt;}
.x72_c00387{left:532.929453pt;}
.x49_c00387{left:534.267053pt;}
.x16_c00387{left:542.684253pt;}
.x75_c00387{left:543.894253pt;}
.x43_c00387{left:552.241053pt;}
.x34_c00387{left:554.454253pt;}
.x70_c00387{left:562.127853pt;}
.x2c_c00387{left:570.901453pt;}
.x4a_c00387{left:572.278653pt;}
.x44_c00387{left:580.044653pt;}
.x69_c00387{left:581.452653pt;}
.x7a_c00387{left:584.277453pt;}
.x4b_c00387{left:591.273453pt;}
.x22_c00387{left:592.197453pt;}
.x5d_c00387{left:593.715453pt;}
.x80_c00387{left:598.419053pt;}
.x64_c00387{left:599.967853pt;}
.x76_c00387{left:601.094253pt;}
.x17_c00387{left:602.057853pt;}
.x35_c00387{left:610.483853pt;}
.x4c_c00387{left:620.405853pt;}
.x23_c00387{left:621.369453pt;}
.x18_c00387{left:622.447453pt;}
.x5_c00387{left:623.859853pt;}
.x36_c00387{left:630.389453pt;}
.x58_c00387{left:640.175053pt;}
.x24_c00387{left:649.107053pt;}
.x53_c00387{left:650.699853pt;}
.x54_c00387{left:660.833053pt;}
.x65_c00387{left:670.134653pt;}
.x85_c00387{left:671.485453pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_49e93d8c27fba3418a48df09.woff2')format("woff");}.ff1_c00388{font-family:ff1_c00388;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00388;src:url('chunks/assets/font_7a590a62ccf13786d63e6264.woff2')format("woff");}.ff2_c00388{font-family:ff2_c00388;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00388;src:url('chunks/assets/font_96171c9fbdde509827211135.woff2')format("woff");}.ff3_c00388{font-family:ff3_c00388;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00388;src:url('chunks/assets/font_9cfccefe7f09a5e338b1146d.woff2')format("woff");}.ff4_c00388{font-family:ff4_c00388;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mc7_c00388{transform:matrix(0.019232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.019232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.019232,0.000000,0.000000,0.250000,0,0);}
.mc5_c00388{transform:matrix(0.044873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.044873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.044873,0.000000,0.000000,0.250000,0,0);}
.m26_c00388{transform:matrix(0.048215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048215,0.000000,0.000000,0.250000,0,0);}
.m96_c00388{transform:matrix(0.064286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064286,0.000000,0.000000,0.250000,0,0);}
.mc6_c00388{transform:matrix(0.089743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089743,0.000000,0.000000,0.250000,0,0);}
.m86_c00388{transform:matrix(0.095673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095673,0.000000,0.000000,0.250000,0,0);}
.m4e_c00388{transform:matrix(0.104166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104166,0.000000,0.000000,0.250000,0,0);}
.m22_c00388{transform:matrix(0.128571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128571,0.000000,0.000000,0.250000,0,0);}
.m69_c00388{transform:matrix(0.141025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141025,0.000000,0.000000,0.250000,0,0);}
.m4b_c00388{transform:matrix(0.144608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144608,0.000000,0.000000,0.250000,0,0);}
.m18_c00388{transform:matrix(0.146012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146012,0.000000,0.000000,0.250000,0,0);}
.m98_c00388{transform:matrix(0.147163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147163,0.000000,0.000000,0.250000,0,0);}
.m68_c00388{transform:matrix(0.160256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160256,0.000000,0.000000,0.250000,0,0);}
.m4d_c00388{transform:matrix(0.161764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161764,0.000000,0.000000,0.250000,0,0);}
.mc3_c00388{transform:matrix(0.176545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176545,0.000000,0.000000,0.250000,0,0);}
.m9c_c00388{transform:matrix(0.180093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180093,0.000000,0.000000,0.250000,0,0);}
.m9e_c00388{transform:matrix(0.180467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180467,0.000000,0.000000,0.250000,0,0);}
.m66_c00388{transform:matrix(0.183761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183761,0.000000,0.000000,0.250000,0,0);}
.m25_c00388{transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);}
.m7b_c00388{transform:matrix(0.192335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192335,0.000000,0.000000,0.250000,0,0);}
.m95_c00388{transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);}
.mc4_c00388{transform:matrix(0.194712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194712,0.000000,0.000000,0.250000,0,0);}
.m21_c00388{transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);}
.m9_c00388{transform:matrix(0.196896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196896,0.000000,0.000000,0.250000,0,0);}
.m55_c00388{transform:matrix(0.196918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196918,0.000000,0.000000,0.250000,0,0);}
.m20_c00388{transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);}
.m38_c00388{transform:matrix(0.200435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200435,0.000000,0.000000,0.250000,0,0);}
.m42_c00388{transform:matrix(0.206949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206949,0.000000,0.000000,0.250000,0,0);}
.m23_c00388{transform:matrix(0.211905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211905,0.000000,0.000000,0.250000,0,0);}
.m24_c00388{transform:matrix(0.219164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219164,0.000000,0.000000,0.250000,0,0);}
.md4_c00388{transform:matrix(0.222278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222278,0.000000,0.000000,0.250000,0,0);}
.m53_c00388{transform:matrix(0.240980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240980,0.000000,0.000000,0.250000,0,0);}
.maa_c00388{transform:matrix(0.243216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243216,0.000000,0.000000,0.250000,0,0);}
.m1a_c00388{transform:matrix(0.243924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243924,0.000000,0.000000,0.250000,0,0);}
.m79_c00388{transform:matrix(0.246212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246212,0.000000,0.000000,0.250000,0,0);}
.m8b_c00388{transform:matrix(0.248895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248895,0.000000,0.000000,0.250000,0,0);}
.m85_c00388{transform:matrix(0.249419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249419,0.000000,0.000000,0.250000,0,0);}
.m0_c00388{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m99_c00388{transform:matrix(0.250345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250345,0.000000,0.000000,0.250000,0,0);}
.m29_c00388{transform:matrix(0.253171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253171,0.000000,0.000000,0.250000,0,0);}
.m1f_c00388{transform:matrix(0.255581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255581,0.000000,0.000000,0.250000,0,0);}
.m4c_c00388{transform:matrix(0.258952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258952,0.000000,0.000000,0.250000,0,0);}
.m46_c00388{transform:matrix(0.259744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259744,0.000000,0.000000,0.250000,0,0);}
.m9a_c00388{transform:matrix(0.260560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260560,0.000000,0.000000,0.250000,0,0);}
.mf_c00388{transform:matrix(0.263430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263430,0.000000,0.000000,0.250000,0,0);}
.ma3_c00388{transform:matrix(0.265067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265067,0.000000,0.000000,0.250000,0,0);}
.m8f_c00388{transform:matrix(0.265297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265297,0.000000,0.000000,0.250000,0,0);}
.m97_c00388{transform:matrix(0.266990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266990,0.000000,0.000000,0.250000,0,0);}
.mb3_c00388{transform:matrix(0.268862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268862,0.000000,0.000000,0.250000,0,0);}
.m60_c00388{transform:matrix(0.270034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270034,0.000000,0.000000,0.250000,0,0);}
.mc0_c00388{transform:matrix(0.270118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270118,0.000000,0.000000,0.250000,0,0);}
.me_c00388{transform:matrix(0.272028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272028,0.000000,0.000000,0.250000,0,0);}
.m5f_c00388{transform:matrix(0.272692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272692,0.000000,0.000000,0.250000,0,0);}
.m3b_c00388{transform:matrix(0.274368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274368,0.000000,0.000000,0.250000,0,0);}
.m19_c00388{transform:matrix(0.274772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274772,0.000000,0.000000,0.250000,0,0);}
.ma1_c00388{transform:matrix(0.275461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275461,0.000000,0.000000,0.250000,0,0);}
.m54_c00388{transform:matrix(0.275652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275652,0.000000,0.000000,0.250000,0,0);}
.m3e_c00388{transform:matrix(0.275930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275930,0.000000,0.000000,0.250000,0,0);}
.m6b_c00388{transform:matrix(0.276009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276009,0.000000,0.000000,0.250000,0,0);}
.m44_c00388{transform:matrix(0.276704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276704,0.000000,0.000000,0.250000,0,0);}
.m6c_c00388{transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);}
.m4f_c00388{transform:matrix(0.278844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278844,0.000000,0.000000,0.250000,0,0);}
.m6a_c00388{transform:matrix(0.279349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279349,0.000000,0.000000,0.250000,0,0);}
.m5a_c00388{transform:matrix(0.280225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280225,0.000000,0.000000,0.250000,0,0);}
.m6d_c00388{transform:matrix(0.280311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280311,0.000000,0.000000,0.250000,0,0);}
.m28_c00388{transform:matrix(0.282201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282201,0.000000,0.000000,0.250000,0,0);}
.m6e_c00388{transform:matrix(0.282792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282792,0.000000,0.000000,0.250000,0,0);}
.m8a_c00388{transform:matrix(0.283068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283068,0.000000,0.000000,0.250000,0,0);}
.m77_c00388{transform:matrix(0.283335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283335,0.000000,0.000000,0.250000,0,0);}
.mb4_c00388{transform:matrix(0.284684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284684,0.000000,0.000000,0.250000,0,0);}
.ma6_c00388{transform:matrix(0.285030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285030,0.000000,0.000000,0.250000,0,0);}
.m8d_c00388{transform:matrix(0.285775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285775,0.000000,0.000000,0.250000,0,0);}
.m7c_c00388{transform:matrix(0.285964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285964,0.000000,0.000000,0.250000,0,0);}
.md3_c00388{transform:matrix(0.286526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286526,0.000000,0.000000,0.250000,0,0);}
.m15_c00388{transform:matrix(0.287241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287241,0.000000,0.000000,0.250000,0,0);}
.m5c_c00388{transform:matrix(0.287377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287377,0.000000,0.000000,0.250000,0,0);}
.m8e_c00388{transform:matrix(0.287413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287413,0.000000,0.000000,0.250000,0,0);}
.m3d_c00388{transform:matrix(0.289782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289782,0.000000,0.000000,0.250000,0,0);}
.m13_c00388{transform:matrix(0.292280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292280,0.000000,0.000000,0.250000,0,0);}
.mb6_c00388{transform:matrix(0.292282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292282,0.000000,0.000000,0.250000,0,0);}
.mae_c00388{transform:matrix(0.293039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293039,0.000000,0.000000,0.250000,0,0);}
.m36_c00388{transform:matrix(0.294159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294159,0.000000,0.000000,0.250000,0,0);}
.m7_c00388{transform:matrix(0.295509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295509,0.000000,0.000000,0.250000,0,0);}
.ma9_c00388{transform:matrix(0.295607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295607,0.000000,0.000000,0.250000,0,0);}
.mb9_c00388{transform:matrix(0.296130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296130,0.000000,0.000000,0.250000,0,0);}
.m27_c00388{transform:matrix(0.296315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296315,0.000000,0.000000,0.250000,0,0);}
.mb2_c00388{transform:matrix(0.297085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297085,0.000000,0.000000,0.250000,0,0);}
.m61_c00388{transform:matrix(0.297219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297219,0.000000,0.000000,0.250000,0,0);}
.ma8_c00388{transform:matrix(0.297691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297691,0.000000,0.000000,0.250000,0,0);}
.m90_c00388{transform:matrix(0.297756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297756,0.000000,0.000000,0.250000,0,0);}
.m72_c00388{transform:matrix(0.298289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298289,0.000000,0.000000,0.250000,0,0);}
.mac_c00388{transform:matrix(0.299046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299046,0.000000,0.000000,0.250000,0,0);}
.mce_c00388{transform:matrix(0.299352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299352,0.000000,0.000000,0.250000,0,0);}
.m67_c00388{transform:matrix(0.299681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299681,0.000000,0.000000,0.250000,0,0);}
.m11_c00388{transform:matrix(0.299800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299800,0.000000,0.000000,0.250000,0,0);}
.m9b_c00388{transform:matrix(0.300546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300546,0.000000,0.000000,0.250000,0,0);}
.mcc_c00388{transform:matrix(0.300604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300604,0.000000,0.000000,0.250000,0,0);}
.m9f_c00388{transform:matrix(0.300975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300975,0.000000,0.000000,0.250000,0,0);}
.m41_c00388{transform:matrix(0.301501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301501,0.000000,0.000000,0.250000,0,0);}
.m30_c00388{transform:matrix(0.301753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301753,0.000000,0.000000,0.250000,0,0);}
.m94_c00388{transform:matrix(0.301896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301896,0.000000,0.000000,0.250000,0,0);}
.mc8_c00388{transform:matrix(0.302416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302416,0.000000,0.000000,0.250000,0,0);}
.m59_c00388{transform:matrix(0.302575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302575,0.000000,0.000000,0.250000,0,0);}
.m37_c00388{transform:matrix(0.303169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303169,0.000000,0.000000,0.250000,0,0);}
.mc_c00388{transform:matrix(0.303171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303171,0.000000,0.000000,0.250000,0,0);}
.maf_c00388{transform:matrix(0.303388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303388,0.000000,0.000000,0.250000,0,0);}
.m57_c00388{transform:matrix(0.303694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303694,0.000000,0.000000,0.250000,0,0);}
.m45_c00388{transform:matrix(0.303897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303897,0.000000,0.000000,0.250000,0,0);}
.m92_c00388{transform:matrix(0.303903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303903,0.000000,0.000000,0.250000,0,0);}
.m74_c00388{transform:matrix(0.303921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303921,0.000000,0.000000,0.250000,0,0);}
.mbf_c00388{transform:matrix(0.303979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303979,0.000000,0.000000,0.250000,0,0);}
.m4a_c00388{transform:matrix(0.304035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304035,0.000000,0.000000,0.250000,0,0);}
.m8c_c00388{transform:matrix(0.304796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304796,0.000000,0.000000,0.250000,0,0);}
.mcd_c00388{transform:matrix(0.304997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304997,0.000000,0.000000,0.250000,0,0);}
.m47_c00388{transform:matrix(0.305103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305103,0.000000,0.000000,0.250000,0,0);}
.md5_c00388{transform:matrix(0.305817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305817,0.000000,0.000000,0.250000,0,0);}
.m76_c00388{transform:matrix(0.306072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306072,0.000000,0.000000,0.250000,0,0);}
.m88_c00388{transform:matrix(0.308200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308200,0.000000,0.000000,0.250000,0,0);}
.mb0_c00388{transform:matrix(0.308906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308906,0.000000,0.000000,0.250000,0,0);}
.m81_c00388{transform:matrix(0.309069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309069,0.000000,0.000000,0.250000,0,0);}
.m7d_c00388{transform:matrix(0.309324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309324,0.000000,0.000000,0.250000,0,0);}
.m64_c00388{transform:matrix(0.309724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309724,0.000000,0.000000,0.250000,0,0);}
.m56_c00388{transform:matrix(0.311532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311532,0.000000,0.000000,0.250000,0,0);}
.mbc_c00388{transform:matrix(0.311666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311666,0.000000,0.000000,0.250000,0,0);}
.m31_c00388{transform:matrix(0.311880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311880,0.000000,0.000000,0.250000,0,0);}
.ma5_c00388{transform:matrix(0.312259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312259,0.000000,0.000000,0.250000,0,0);}
.m6f_c00388{transform:matrix(0.312439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312439,0.000000,0.000000,0.250000,0,0);}
.m5b_c00388{transform:matrix(0.312952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312952,0.000000,0.000000,0.250000,0,0);}
.mba_c00388{transform:matrix(0.313401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313401,0.000000,0.000000,0.250000,0,0);}
.mbb_c00388{transform:matrix(0.313634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313634,0.000000,0.000000,0.250000,0,0);}
.m89_c00388{transform:matrix(0.313856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313856,0.000000,0.000000,0.250000,0,0);}
.m3_c00388{transform:matrix(0.314550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314550,0.000000,0.000000,0.250000,0,0);}
.m12_c00388{transform:matrix(0.314746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314746,0.000000,0.000000,0.250000,0,0);}
.md7_c00388{transform:matrix(0.315815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315815,0.000000,0.000000,0.250000,0,0);}
.ma0_c00388{transform:matrix(0.318441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318441,0.000000,0.000000,0.250000,0,0);}
.md1_c00388{transform:matrix(0.318463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318463,0.000000,0.000000,0.250000,0,0);}
.m6_c00388{transform:matrix(0.318973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318973,0.000000,0.000000,0.250000,0,0);}
.m2_c00388{transform:matrix(0.319309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319309,0.000000,0.000000,0.250000,0,0);}
.m73_c00388{transform:matrix(0.319581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319581,0.000000,0.000000,0.250000,0,0);}
.m75_c00388{transform:matrix(0.319926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319926,0.000000,0.000000,0.250000,0,0);}
.mcf_c00388{transform:matrix(0.320365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320365,0.000000,0.000000,0.250000,0,0);}
.m49_c00388{transform:matrix(0.320656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320656,0.000000,0.000000,0.250000,0,0);}
.mab_c00388{transform:matrix(0.321228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321228,0.000000,0.000000,0.250000,0,0);}
.m1d_c00388{transform:matrix(0.321327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321327,0.000000,0.000000,0.250000,0,0);}
.mb7_c00388{transform:matrix(0.323214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323214,0.000000,0.000000,0.250000,0,0);}
.mca_c00388{transform:matrix(0.323990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323990,0.000000,0.000000,0.250000,0,0);}
.m3a_c00388{transform:matrix(0.324116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324116,0.000000,0.000000,0.250000,0,0);}
.m5_c00388{transform:matrix(0.324267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324267,0.000000,0.000000,0.250000,0,0);}
.m2b_c00388{transform:matrix(0.324334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324334,0.000000,0.000000,0.250000,0,0);}
.md0_c00388{transform:matrix(0.325690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325690,0.000000,0.000000,0.250000,0,0);}
.ma4_c00388{transform:matrix(0.326079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326079,0.000000,0.000000,0.250000,0,0);}
.m35_c00388{transform:matrix(0.326468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326468,0.000000,0.000000,0.250000,0,0);}
.m39_c00388{transform:matrix(0.327665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327665,0.000000,0.000000,0.250000,0,0);}
.m50_c00388{transform:matrix(0.329065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329065,0.000000,0.000000,0.250000,0,0);}
.m84_c00388{transform:matrix(0.329253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329253,0.000000,0.000000,0.250000,0,0);}
.m80_c00388{transform:matrix(0.329866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329866,0.000000,0.000000,0.250000,0,0);}
.m16_c00388{transform:matrix(0.332120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332120,0.000000,0.000000,0.250000,0,0);}
.m43_c00388{transform:matrix(0.332784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332784,0.000000,0.000000,0.250000,0,0);}
.mb_c00388{transform:matrix(0.332848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332848,0.000000,0.000000,0.250000,0,0);}
.mb1_c00388{transform:matrix(0.333023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333023,0.000000,0.000000,0.250000,0,0);}
.m78_c00388{transform:matrix(0.333087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333087,0.000000,0.000000,0.250000,0,0);}
.m40_c00388{transform:matrix(0.333724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333724,0.000000,0.000000,0.250000,0,0);}
.m82_c00388{transform:matrix(0.334314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334314,0.000000,0.000000,0.250000,0,0);}
.m65_c00388{transform:matrix(0.335974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335974,0.000000,0.000000,0.250000,0,0);}
.m62_c00388{transform:matrix(0.336096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336096,0.000000,0.000000,0.250000,0,0);}
.m7f_c00388{transform:matrix(0.336118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336118,0.000000,0.000000,0.250000,0,0);}
.m14_c00388{transform:matrix(0.336512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336512,0.000000,0.000000,0.250000,0,0);}
.m48_c00388{transform:matrix(0.336513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336513,0.000000,0.000000,0.250000,0,0);}
.md_c00388{transform:matrix(0.336631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336631,0.000000,0.000000,0.250000,0,0);}
.mb5_c00388{transform:matrix(0.336988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336988,0.000000,0.000000,0.250000,0,0);}
.m52_c00388{transform:matrix(0.339334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339334,0.000000,0.000000,0.250000,0,0);}
.m17_c00388{transform:matrix(0.339767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339767,0.000000,0.000000,0.250000,0,0);}
.m1c_c00388{transform:matrix(0.340413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340413,0.000000,0.000000,0.250000,0,0);}
.mb8_c00388{transform:matrix(0.340917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340917,0.000000,0.000000,0.250000,0,0);}
.mbe_c00388{transform:matrix(0.341331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341331,0.000000,0.000000,0.250000,0,0);}
.mcb_c00388{transform:matrix(0.342125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342125,0.000000,0.000000,0.250000,0,0);}
.m2a_c00388{transform:matrix(0.342311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342311,0.000000,0.000000,0.250000,0,0);}
.m1b_c00388{transform:matrix(0.342579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342579,0.000000,0.000000,0.250000,0,0);}
.m2d_c00388{transform:matrix(0.342820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342820,0.000000,0.000000,0.250000,0,0);}
.m9d_c00388{transform:matrix(0.343050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343050,0.000000,0.000000,0.250000,0,0);}
.mc9_c00388{transform:matrix(0.343928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343928,0.000000,0.000000,0.250000,0,0);}
.mc2_c00388{transform:matrix(0.344146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344146,0.000000,0.000000,0.250000,0,0);}
.m7e_c00388{transform:matrix(0.345032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345032,0.000000,0.000000,0.250000,0,0);}
.m70_c00388{transform:matrix(0.348316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348316,0.000000,0.000000,0.250000,0,0);}
.md6_c00388{transform:matrix(0.348954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348954,0.000000,0.000000,0.250000,0,0);}
.ma7_c00388{transform:matrix(0.349046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349046,0.000000,0.000000,0.250000,0,0);}
.m34_c00388{transform:matrix(0.349481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349481,0.000000,0.000000,0.250000,0,0);}
.mad_c00388{transform:matrix(0.350439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350439,0.000000,0.000000,0.250000,0,0);}
.m63_c00388{transform:matrix(0.351853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351853,0.000000,0.000000,0.250000,0,0);}
.m2e_c00388{transform:matrix(0.355486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355486,0.000000,0.000000,0.250000,0,0);}
.m3f_c00388{transform:matrix(0.356623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356623,0.000000,0.000000,0.250000,0,0);}
.m83_c00388{transform:matrix(0.356666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356666,0.000000,0.000000,0.250000,0,0);}
.m8_c00388{transform:matrix(0.356907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356907,0.000000,0.000000,0.250000,0,0);}
.mc1_c00388{transform:matrix(0.357051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357051,0.000000,0.000000,0.250000,0,0);}
.m51_c00388{transform:matrix(0.357547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357547,0.000000,0.000000,0.250000,0,0);}
.m1_c00388{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);}
.mbd_c00388{transform:matrix(0.359687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359687,0.000000,0.000000,0.250000,0,0);}
.ma2_c00388{transform:matrix(0.361994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361994,0.000000,0.000000,0.250000,0,0);}
.m93_c00388{transform:matrix(0.362461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362461,0.000000,0.000000,0.250000,0,0);}
.ma_c00388{transform:matrix(0.364158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364158,0.000000,0.000000,0.250000,0,0);}
.md2_c00388{transform:matrix(0.366114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366114,0.000000,0.000000,0.250000,0,0);}
.m10_c00388{transform:matrix(0.367685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367685,0.000000,0.000000,0.250000,0,0);}
.m7a_c00388{transform:matrix(0.369545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369545,0.000000,0.000000,0.250000,0,0);}
.m33_c00388{transform:matrix(0.370126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370126,0.000000,0.000000,0.250000,0,0);}
.m32_c00388{transform:matrix(0.374844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374844,0.000000,0.000000,0.250000,0,0);}
.m4_c00388{transform:matrix(0.381057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381057,0.000000,0.000000,0.250000,0,0);}
.m87_c00388{transform:matrix(0.382116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382116,0.000000,0.000000,0.250000,0,0);}
.m2f_c00388{transform:matrix(0.384031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384031,0.000000,0.000000,0.250000,0,0);}
.m91_c00388{transform:matrix(0.387573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387573,0.000000,0.000000,0.250000,0,0);}
.m71_c00388{transform:matrix(0.387996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387996,0.000000,0.000000,0.250000,0,0);}
.m1e_c00388{transform:matrix(0.390683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390683,0.000000,0.000000,0.250000,0,0);}
.m2c_c00388{transform:matrix(0.394197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394197,0.000000,0.000000,0.250000,0,0);}
.m58_c00388{transform:matrix(0.394470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394470,0.000000,0.000000,0.250000,0,0);}
.m5e_c00388{transform:matrix(0.401851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401851,0.000000,0.000000,0.250000,0,0);}
.m3c_c00388{transform:matrix(0.414906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414906,0.000000,0.000000,0.250000,0,0);}
.m5d_c00388{transform:matrix(0.447070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447070,0.000000,0.000000,0.250000,0,0);}
.v0_c00388{vertical-align:0.000000px;}
.v2_c00388{vertical-align:11.404800px;}
.v1_c00388{vertical-align:22.809600px;}
.v3_c00388{vertical-align:35.640000px;}
.ls9_c00388{letter-spacing:-2.515590px;}
.lsb_c00388{letter-spacing:-2.439367px;}
.ls11_c00388{letter-spacing:-1.919036px;}
.lse_c00388{letter-spacing:-1.415858px;}
.ls14_c00388{letter-spacing:-0.579744px;}
.ls12_c00388{letter-spacing:-0.445619px;}
.ls4_c00388{letter-spacing:0.000000px;}
.lsc_c00388{letter-spacing:0.613008px;}
.ls1_c00388{letter-spacing:1.728936px;}
.ls0_c00388{letter-spacing:1.854349px;}
.lsd_c00388{letter-spacing:2.385900px;}
.lsf_c00388{letter-spacing:3.054645px;}
.ls10_c00388{letter-spacing:3.544200px;}
.ls6_c00388{letter-spacing:3.593700px;}
.ls13_c00388{letter-spacing:3.762000px;}
.ls5_c00388{letter-spacing:4.088700px;}
.ls2_c00388{letter-spacing:30.033828px;}
.ls7_c00388{letter-spacing:48.470598px;}
.lsa_c00388{letter-spacing:49.896198px;}
.ls8_c00388{letter-spacing:55.598598px;}
.ls3_c00388{letter-spacing:344.216664px;}
.sc__c00388{text-shadow:none;}
.sc0_c00388{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00388{-webkit-text-stroke:0px transparent;}
.sc0_c00388{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00388{word-spacing:-17.968500px;}
.ws3_c00388{word-spacing:-1.293732px;}
.ws6_c00388{word-spacing:0.000000px;}
.ws5_c00388{word-spacing:2.443716px;}
.ws1_c00388{word-spacing:4.672008px;}
.ws4_c00388{word-spacing:5.390550px;}
.ws2_c00388{word-spacing:5.893668px;}
._18_c00388{margin-left:-13.503600px;}
._16_c00388{margin-left:-6.469452px;}
._13_c00388{margin-left:-1.739351px;}
._0_c00388{width:3.762000px;}
._3_c00388{width:7.474104px;}
._1_c00388{width:9.200664px;}
._8_c00388{width:10.996722px;}
._d_c00388{width:12.393810px;}
._6_c00388{width:13.440438px;}
._b_c00388{width:16.352028px;}
._f_c00388{width:21.059082px;}
._e_c00388{width:22.640310px;}
._2_c00388{width:24.077988px;}
._5_c00388{width:26.320694px;}
._a_c00388{width:29.313900px;}
._c_c00388{width:30.833748px;}
._14_c00388{width:31.843636px;}
._11_c00388{width:32.937300px;}
._17_c00388{width:38.625444px;}
._10_c00388{width:39.964320px;}
._7_c00388{width:44.146476px;}
._4_c00388{width:46.636128px;}
._9_c00388{width:48.118950px;}
._12_c00388{width:50.373180px;}
._15_c00388{width:329.567040px;}
.fc0_c00388{color:transparent;}
.fs0_c00388{font-size:22.176000px;}
.fs3_c00388{font-size:27.720000px;}
.fs10_c00388{font-size:34.056198px;}
.fs16_c00388{font-size:34.650000px;}
.fs1_c00388{font-size:34.848000px;}
.fs6_c00388{font-size:37.026198px;}
.fse_c00388{font-size:46.728000px;}
.fsa_c00388{font-size:47.520000px;}
.fsc_c00388{font-size:47.718000px;}
.fs5_c00388{font-size:48.470598px;}
.fs8_c00388{font-size:49.896198px;}
.fs7_c00388{font-size:55.598598px;}
.fs13_c00388{font-size:56.628000px;}
.fsd_c00388{font-size:58.608000px;}
.fs11_c00388{font-size:60.192000px;}
.fsb_c00388{font-size:63.558000px;}
.fs9_c00388{font-size:69.696198px;}
.fsf_c00388{font-size:70.884000px;}
.fs4_c00388{font-size:71.874000px;}
.fs15_c00388{font-size:75.240000px;}
.fs2_c00388{font-size:81.774000px;}
.fs12_c00388{font-size:107.712198px;}
.fs14_c00388{font-size:130.680000px;}
.y0_c00388{bottom:0.000000px;}
.y26_c00388{bottom:65.489535px;}
.y1_c00388{bottom:76.500000px;}
.y25_c00388{bottom:81.527535px;}
.y24_c00388{bottom:146.387385px;}
.y23_c00388{bottom:177.042735px;}
.y22_c00388{bottom:211.969935px;}
.y21_c00388{bottom:244.753785px;}
.y1f_c00388{bottom:276.834735px;}
.y20_c00388{bottom:277.186185px;}
.y1e_c00388{bottom:300.000735px;}
.y1c_c00388{bottom:306.415935px;}
.y1d_c00388{bottom:309.267135px;}
.y1b_c00388{bottom:309.974985px;}
.y1a_c00388{bottom:341.694585px;}
.y19_c00388{bottom:374.131935px;}
.y16_c00388{bottom:375.196185px;}
.y18_c00388{bottom:375.557535px;}
.y17_c00388{bottom:385.531785px;}
.y15_c00388{bottom:438.640335px;}
.y14_c00388{bottom:471.429135px;}
.y13_c00388{bottom:504.930735px;}
.y12_c00388{bottom:537.358185px;}
.y11_c00388{bottom:569.439135px;}
.y10_c00388{bottom:599.371785px;}
.yf_c00388{bottom:602.227935px;}
.ye_c00388{bottom:635.368185px;}
.yd_c00388{bottom:667.092735px;}
.yc_c00388{bottom:699.163785px;}
.yb_c00388{bottom:733.021785px;}
.ya_c00388{bottom:797.173785px;}
.y2_c00388{bottom:825.329385px;}
.y9_c00388{bottom:863.469135px;}
.y8_c00388{bottom:896.257935px;}
.y7_c00388{bottom:908.726985px;}
.y6_c00388{bottom:929.041785px;}
.y5_c00388{bottom:1074.457935px;}
.y4_c00388{bottom:1079.798985px;}
.y3_c00388{bottom:1102.608585px;}
.h2_c00388{height:23.128875px;}
.h5_c00388{height:28.911094px;}
.h7_c00388{height:32.281418px;}
.ha_c00388{height:33.230868px;}
.h3_c00388{height:34.201406px;}
.h12_c00388{height:35.519550px;}
.h18_c00388{height:36.138867px;}
.h8_c00388{height:36.339188px;}
.h9_c00388{height:37.028666px;}
.he_c00388{height:45.860977px;}
.hd_c00388{height:46.832607px;}
.hc_c00388{height:49.561875px;}
.h15_c00388{height:59.061234px;}
.hf_c00388{height:66.289008px;}
.hb_c00388{height:68.403007px;}
.h13_c00388{height:69.568770px;}
.h6_c00388{height:70.540400px;}
.h10_c00388{height:71.779990px;}
.h11_c00388{height:73.929797px;}
.h17_c00388{height:75.827813px;}
.h4_c00388{height:80.256709px;}
.h14_c00388{height:112.340457px;}
.h16_c00388{height:136.295156px;}
.h1_c00388{height:1110.000000px;}
.h0_c00388{height:1263.000000px;}
.w1_c00388{width:775.500000px;}
.w0_c00388{width:892.500000px;}
.x0_c00388{left:0.000000px;}
.x2_c00388{left:55.144635px;}
.x1_c00388{left:58.500000px;}
.x14_c00388{left:101.199435px;}
.x7_c00388{left:102.709185px;}
.x76_c00388{left:104.169435px;}
.x78_c00388{left:106.723635px;}
.x39_c00388{left:113.114085px;}
.x1f_c00388{left:123.974385px;}
.x29_c00388{left:125.444535px;}
.x79_c00388{left:126.840435px;}
.x59_c00388{left:129.562935px;}
.x41_c00388{left:135.260385px;}
.x45_c00388{left:136.507785px;}
.x15_c00388{left:146.942385px;}
.x42_c00388{left:148.308585px;}
.x7a_c00388{left:149.476785px;}
.x5d_c00388{left:155.733585px;}
.x43_c00388{left:157.966035px;}
.x8_c00388{left:159.099585px;}
.x63_c00388{left:168.212535px;}
.x2a_c00388{left:169.281735px;}
.x7b_c00388{left:170.494485px;}
.x46_c00388{left:179.968785px;}
.x20_c00388{left:182.824935px;}
.x4d_c00388{left:189.230235px;}
.x16_c00388{left:190.616235px;}
.x3a_c00388{left:201.278535px;}
.x17_c00388{left:202.941735px;}
.x2b_c00388{left:212.599185px;}
.x5a_c00388{left:214.886085px;}
.x53_c00388{left:220.311285px;}
.x47_c00388{left:223.687185px;}
.x31_c00388{left:224.949435px;}
.x6a_c00388{left:228.973785px;}
.x5f_c00388{left:233.869335px;}
.x5e_c00388{left:237.854085px;}
.x2c_c00388{left:246.620535px;}
.x64_c00388{left:249.986535px;}
.x18_c00388{left:257.495685px;}
.x21_c00388{left:267.964935px;}
.x60_c00388{left:269.227185px;}
.x9_c00388{left:279.874635px;}
.x6c_c00388{left:290.249835px;}
.x19_c00388{left:291.294285px;}
.x22_c00388{left:301.684335px;}
.x4e_c00388{left:302.704035px;}
.x65_c00388{left:306.367035px;}
.x66_c00388{left:311.807085px;}
.xa_c00388{left:313.024785px;}
.x3b_c00388{left:324.073185px;}
.x4f_c00388{left:334.299885px;}
.x6d_c00388{left:335.789835px;}
.x61_c00388{left:344.620635px;}
.x32_c00388{left:345.962085px;}
.x77_c00388{left:347.204535px;}
.x48_c00388{left:349.387485px;}
.x23_c00388{left:357.193635px;}
.x50_c00388{left:368.311335px;}
.x2d_c00388{left:378.468735px;}
.x5b_c00388{left:379.701285px;}
.x33_c00388{left:390.729885px;}
.xb_c00388{left:401.105085px;}
.x71_c00388{left:402.164385px;}
.x1a_c00388{left:411.267435px;}
.xc_c00388{left:412.821735px;}
.x34_c00388{left:422.998935px;}
.x54_c00388{left:424.820535px;}
.x69_c00388{left:431.592135px;}
.x2e_c00388{left:434.636385px;}
.x6e_c00388{left:444.798735px;}
.x1b_c00388{left:445.872885px;}
.x24_c00388{left:455.936235px;}
.x49_c00388{left:457.000485px;}
.x5c_c00388{left:466.895535px;}
.xd_c00388{left:468.063735px;}
.x44_c00388{left:477.874635px;}
.x2f_c00388{left:478.993335px;}
.x57_c00388{left:488.571585px;}
.x3c_c00388{left:489.848685px;}
.x67_c00388{left:500.392185px;}
.xe_c00388{left:501.515835px;}
.x6f_c00388{left:511.589085px;}
.x35_c00388{left:512.613735px;}
.x6b_c00388{left:521.395035px;}
.x4c_c00388{left:522.578085px;}
.x70_c00388{left:524.815485px;}
.x72_c00388{left:532.799835px;}
.xf_c00388{left:534.586785px;}
.x36_c00388{left:545.452035px;}
.x55_c00388{left:547.887435px;}
.x1c_c00388{left:555.812385px;}
.x30_c00388{left:557.198385px;}
.x37_c00388{left:566.613285px;}
.x62_c00388{left:569.603085px;}
.x58_c00388{left:577.815135px;}
.x1d_c00388{left:588.551685px;}
.x25_c00388{left:589.987185px;}
.x3d_c00388{left:600.342585px;}
.x1e_c00388{left:610.935585px;}
.x51_c00388{left:621.518685px;}
.x13_c00388{left:624.043185px;}
.x4a_c00388{left:632.774985px;}
.x10_c00388{left:634.537185px;}
.x3e_c00388{left:644.313435px;}
.x11_c00388{left:655.332135px;}
.x73_c00388{left:658.262535px;}
.x4b_c00388{left:665.024235px;}
.x26_c00388{left:666.340935px;}
.x38_c00388{left:676.072635px;}
.x3f_c00388{left:677.953635px;}
.x4_c00388{left:688.551585px;}
.x27_c00388{left:691.110735px;}
.x74_c00388{left:697.813035px;}
.x40_c00388{left:698.911935px;}
.x68_c00388{left:699.981135px;}
.x28_c00388{left:703.792635px;}
.x3_c00388{left:704.861835px;}
.x6_c00388{left:708.044685px;}
.x5_c00388{left:710.633535px;}
.x52_c00388{left:720.226635px;}
.x75_c00388{left:721.865085px;}
.x12_c00388{left:732.863985px;}
.x56_c00388{left:754.624185px;}
@media print{
.v0_c00388{vertical-align:0.000000pt;}
.v2_c00388{vertical-align:10.137600pt;}
.v1_c00388{vertical-align:20.275200pt;}
.v3_c00388{vertical-align:31.680000pt;}
.ls9_c00388{letter-spacing:-2.236080pt;}
.lsb_c00388{letter-spacing:-2.168326pt;}
.ls11_c00388{letter-spacing:-1.705810pt;}
.lse_c00388{letter-spacing:-1.258541pt;}
.ls14_c00388{letter-spacing:-0.515328pt;}
.ls12_c00388{letter-spacing:-0.396106pt;}
.ls4_c00388{letter-spacing:0.000000pt;}
.lsc_c00388{letter-spacing:0.544896pt;}
.ls1_c00388{letter-spacing:1.536832pt;}
.ls0_c00388{letter-spacing:1.648310pt;}
.lsd_c00388{letter-spacing:2.120800pt;}
.lsf_c00388{letter-spacing:2.715240pt;}
.ls10_c00388{letter-spacing:3.150400pt;}
.ls6_c00388{letter-spacing:3.194400pt;}
.ls13_c00388{letter-spacing:3.344000pt;}
.ls5_c00388{letter-spacing:3.634400pt;}
.ls2_c00388{letter-spacing:26.696736pt;}
.ls7_c00388{letter-spacing:43.084976pt;}
.lsa_c00388{letter-spacing:44.352176pt;}
.ls8_c00388{letter-spacing:49.420976pt;}
.ls3_c00388{letter-spacing:305.970368pt;}
.ws0_c00388{word-spacing:-15.972000pt;}
.ws3_c00388{word-spacing:-1.149984pt;}
.ws6_c00388{word-spacing:0.000000pt;}
.ws5_c00388{word-spacing:2.172192pt;}
.ws1_c00388{word-spacing:4.152896pt;}
.ws4_c00388{word-spacing:4.791600pt;}
.ws2_c00388{word-spacing:5.238816pt;}
._18_c00388{margin-left:-12.003200pt;}
._16_c00388{margin-left:-5.750624pt;}
._13_c00388{margin-left:-1.546090pt;}
._0_c00388{width:3.344000pt;}
._3_c00388{width:6.643648pt;}
._1_c00388{width:8.178368pt;}
._8_c00388{width:9.774864pt;}
._d_c00388{width:11.016720pt;}
._6_c00388{width:11.947056pt;}
._b_c00388{width:14.535136pt;}
._f_c00388{width:18.719184pt;}
._e_c00388{width:20.124720pt;}
._2_c00388{width:21.402656pt;}
._5_c00388{width:23.396173pt;}
._a_c00388{width:26.056800pt;}
._c_c00388{width:27.407776pt;}
._14_c00388{width:28.305454pt;}
._11_c00388{width:29.277600pt;}
._17_c00388{width:34.333728pt;}
._10_c00388{width:35.523840pt;}
._7_c00388{width:39.241312pt;}
._4_c00388{width:41.454336pt;}
._9_c00388{width:42.772400pt;}
._12_c00388{width:44.776160pt;}
._15_c00388{width:292.948480pt;}
.fs0_c00388{font-size:19.712000pt;}
.fs3_c00388{font-size:24.640000pt;}
.fs10_c00388{font-size:30.272176pt;}
.fs16_c00388{font-size:30.800000pt;}
.fs1_c00388{font-size:30.976000pt;}
.fs6_c00388{font-size:32.912176pt;}
.fse_c00388{font-size:41.536000pt;}
.fsa_c00388{font-size:42.240000pt;}
.fsc_c00388{font-size:42.416000pt;}
.fs5_c00388{font-size:43.084976pt;}
.fs8_c00388{font-size:44.352176pt;}
.fs7_c00388{font-size:49.420976pt;}
.fs13_c00388{font-size:50.336000pt;}
.fsd_c00388{font-size:52.096000pt;}
.fs11_c00388{font-size:53.504000pt;}
.fsb_c00388{font-size:56.496000pt;}
.fs9_c00388{font-size:61.952176pt;}
.fsf_c00388{font-size:63.008000pt;}
.fs4_c00388{font-size:63.888000pt;}
.fs15_c00388{font-size:66.880000pt;}
.fs2_c00388{font-size:72.688000pt;}
.fs12_c00388{font-size:95.744176pt;}
.fs14_c00388{font-size:116.160000pt;}
.y0_c00388{bottom:0.000000pt;}
.y26_c00388{bottom:58.212920pt;}
.y1_c00388{bottom:68.000000pt;}
.y25_c00388{bottom:72.468920pt;}
.y24_c00388{bottom:130.122120pt;}
.y23_c00388{bottom:157.371320pt;}
.y22_c00388{bottom:188.417720pt;}
.y21_c00388{bottom:217.558920pt;}
.y1f_c00388{bottom:246.075320pt;}
.y20_c00388{bottom:246.387720pt;}
.y1e_c00388{bottom:266.667320pt;}
.y1c_c00388{bottom:272.369720pt;}
.y1d_c00388{bottom:274.904120pt;}
.y1b_c00388{bottom:275.533320pt;}
.y1a_c00388{bottom:303.728520pt;}
.y19_c00388{bottom:332.561720pt;}
.y16_c00388{bottom:333.507720pt;}
.y18_c00388{bottom:333.828920pt;}
.y17_c00388{bottom:342.694920pt;}
.y15_c00388{bottom:389.902520pt;}
.y14_c00388{bottom:419.048120pt;}
.y13_c00388{bottom:448.827320pt;}
.y12_c00388{bottom:477.651720pt;}
.y11_c00388{bottom:506.168120pt;}
.y10_c00388{bottom:532.774920pt;}
.yf_c00388{bottom:535.313720pt;}
.ye_c00388{bottom:564.771720pt;}
.yd_c00388{bottom:592.971320pt;}
.yc_c00388{bottom:621.478920pt;}
.yb_c00388{bottom:651.574920pt;}
.ya_c00388{bottom:708.598920pt;}
.y2_c00388{bottom:733.626120pt;}
.y9_c00388{bottom:767.528120pt;}
.y8_c00388{bottom:796.673720pt;}
.y7_c00388{bottom:807.757320pt;}
.y6_c00388{bottom:825.814920pt;}
.y5_c00388{bottom:955.073720pt;}
.y4_c00388{bottom:959.821320pt;}
.y3_c00388{bottom:980.096520pt;}
.h2_c00388{height:20.559000pt;}
.h5_c00388{height:25.698750pt;}
.h7_c00388{height:28.694594pt;}
.ha_c00388{height:29.538549pt;}
.h3_c00388{height:30.401250pt;}
.h12_c00388{height:31.572934pt;}
.h18_c00388{height:32.123438pt;}
.h8_c00388{height:32.301501pt;}
.h9_c00388{height:32.914370pt;}
.he_c00388{height:40.765313pt;}
.hd_c00388{height:41.628984pt;}
.hc_c00388{height:44.055000pt;}
.h15_c00388{height:52.498875pt;}
.hf_c00388{height:58.923563pt;}
.hb_c00388{height:60.802673pt;}
.h13_c00388{height:61.838906pt;}
.h6_c00388{height:62.702578pt;}
.h10_c00388{height:63.804435pt;}
.h11_c00388{height:65.715375pt;}
.h17_c00388{height:67.402500pt;}
.h4_c00388{height:71.339297pt;}
.h14_c00388{height:99.858184pt;}
.h16_c00388{height:121.151250pt;}
.h1_c00388{height:986.666667pt;}
.h0_c00388{height:1122.666667pt;}
.w1_c00388{width:689.333333pt;}
.w0_c00388{width:793.333333pt;}
.x0_c00388{left:0.000000pt;}
.x2_c00388{left:49.017453pt;}
.x1_c00388{left:52.000000pt;}
.x14_c00388{left:89.955053pt;}
.x7_c00388{left:91.297053pt;}
.x76_c00388{left:92.595053pt;}
.x78_c00388{left:94.865453pt;}
.x39_c00388{left:100.545853pt;}
.x1f_c00388{left:110.199453pt;}
.x29_c00388{left:111.506253pt;}
.x79_c00388{left:112.747053pt;}
.x59_c00388{left:115.167053pt;}
.x41_c00388{left:120.231453pt;}
.x45_c00388{left:121.340253pt;}
.x15_c00388{left:130.615453pt;}
.x42_c00388{left:131.829853pt;}
.x7a_c00388{left:132.868253pt;}
.x5d_c00388{left:138.429853pt;}
.x43_c00388{left:140.414253pt;}
.x8_c00388{left:141.421853pt;}
.x63_c00388{left:149.522253pt;}
.x2a_c00388{left:150.472653pt;}
.x7b_c00388{left:151.550653pt;}
.x46_c00388{left:159.972253pt;}
.x20_c00388{left:162.511053pt;}
.x4d_c00388{left:168.204653pt;}
.x16_c00388{left:169.436653pt;}
.x3a_c00388{left:178.914253pt;}
.x17_c00388{left:180.392653pt;}
.x2b_c00388{left:188.977053pt;}
.x5a_c00388{left:191.009853pt;}
.x53_c00388{left:195.832253pt;}
.x47_c00388{left:198.833053pt;}
.x31_c00388{left:199.955053pt;}
.x6a_c00388{left:203.532253pt;}
.x5f_c00388{left:207.883853pt;}
.x5e_c00388{left:211.425853pt;}
.x2c_c00388{left:219.218253pt;}
.x64_c00388{left:222.210253pt;}
.x18_c00388{left:228.885053pt;}
.x21_c00388{left:238.191053pt;}
.x60_c00388{left:239.313053pt;}
.x9_c00388{left:248.777453pt;}
.x6c_c00388{left:257.999853pt;}
.x19_c00388{left:258.928253pt;}
.x22_c00388{left:268.163853pt;}
.x4e_c00388{left:269.070253pt;}
.x65_c00388{left:272.326253pt;}
.x66_c00388{left:277.161853pt;}
.xa_c00388{left:278.244253pt;}
.x3b_c00388{left:288.065053pt;}
.x4f_c00388{left:297.155453pt;}
.x6d_c00388{left:298.479853pt;}
.x61_c00388{left:306.329453pt;}
.x32_c00388{left:307.521853pt;}
.x77_c00388{left:308.626253pt;}
.x48_c00388{left:310.566653pt;}
.x23_c00388{left:317.505453pt;}
.x50_c00388{left:327.387853pt;}
.x2d_c00388{left:336.416653pt;}
.x5b_c00388{left:337.512253pt;}
.x33_c00388{left:347.315453pt;}
.xb_c00388{left:356.537853pt;}
.x71_c00388{left:357.479453pt;}
.x1a_c00388{left:365.571053pt;}
.xc_c00388{left:366.952653pt;}
.x34_c00388{left:375.999053pt;}
.x54_c00388{left:377.618253pt;}
.x69_c00388{left:383.637453pt;}
.x2e_c00388{left:386.343453pt;}
.x6e_c00388{left:395.376653pt;}
.x1b_c00388{left:396.331453pt;}
.x24_c00388{left:405.276653pt;}
.x49_c00388{left:406.222653pt;}
.x5c_c00388{left:415.018253pt;}
.xd_c00388{left:416.056653pt;}
.x44_c00388{left:424.777453pt;}
.x2f_c00388{left:425.771853pt;}
.x57_c00388{left:434.285853pt;}
.x3c_c00388{left:435.421053pt;}
.x67_c00388{left:444.793053pt;}
.xe_c00388{left:445.791853pt;}
.x6f_c00388{left:454.745853pt;}
.x35_c00388{left:455.656653pt;}
.x6b_c00388{left:463.462253pt;}
.x4c_c00388{left:464.513853pt;}
.x70_c00388{left:466.502653pt;}
.x72_c00388{left:473.599853pt;}
.xf_c00388{left:475.188253pt;}
.x36_c00388{left:484.846253pt;}
.x55_c00388{left:487.011053pt;}
.x1c_c00388{left:494.055453pt;}
.x30_c00388{left:495.287453pt;}
.x37_c00388{left:503.656253pt;}
.x62_c00388{left:506.313853pt;}
.x58_c00388{left:513.613453pt;}
.x1d_c00388{left:523.157053pt;}
.x25_c00388{left:524.433053pt;}
.x3d_c00388{left:533.637853pt;}
.x1e_c00388{left:543.053853pt;}
.x51_c00388{left:552.461053pt;}
.x13_c00388{left:554.705053pt;}
.x4a_c00388{left:562.466653pt;}
.x10_c00388{left:564.033053pt;}
.x3e_c00388{left:572.723053pt;}
.x11_c00388{left:582.517453pt;}
.x73_c00388{left:585.122253pt;}
.x4b_c00388{left:591.132653pt;}
.x26_c00388{left:592.303053pt;}
.x38_c00388{left:600.953453pt;}
.x3f_c00388{left:602.625453pt;}
.x4_c00388{left:612.045853pt;}
.x27_c00388{left:614.320653pt;}
.x74_c00388{left:620.278253pt;}
.x40_c00388{left:621.255053pt;}
.x68_c00388{left:622.205453pt;}
.x28_c00388{left:625.593453pt;}
.x3_c00388{left:626.543853pt;}
.x6_c00388{left:629.373053pt;}
.x5_c00388{left:631.674253pt;}
.x52_c00388{left:640.201453pt;}
.x75_c00388{left:641.657853pt;}
.x12_c00388{left:651.434653pt;}
.x56_c00388{left:670.777053pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ec34ac9644cef153798816f9.woff2')format("woff");}.ff1_c00389{font-family:ff1_c00389;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00389;src:url('chunks/assets/font_62521fb11a7ecd54e2493f58.woff2')format("woff");}.ff2_c00389{font-family:ff2_c00389;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00389;src:url('chunks/assets/font_8417b1cbe2b7530539f6c50e.woff2')format("woff");}.ff3_c00389{font-family:ff3_c00389;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00389;src:url('chunks/assets/font_f76e07309b5a078aec382610.woff2')format("woff");}.ff4_c00389{font-family:ff4_c00389;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00389;src:url('chunks/assets/font_45e905cea5df65b4816c74fc.woff2')format("woff");}.ff5_c00389{font-family:ff5_c00389;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m15_c00389{transform:matrix(0.033431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.033431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.033431,0.000000,0.000000,0.250000,0,0);}
.meb_c00389{transform:matrix(0.052632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.052632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.052632,0.000000,0.000000,0.250000,0,0);}
.ma9_c00389{transform:matrix(0.053571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053571,0.000000,0.000000,0.250000,0,0);}
.med_c00389{transform:matrix(0.059211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.059211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.059211,0.000000,0.000000,0.250000,0,0);}
.m18_c00389{transform:matrix(0.063954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.063954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.063954,0.000000,0.000000,0.250000,0,0);}
.m2c_c00389{transform:matrix(0.078572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078572,0.000000,0.000000,0.250000,0,0);}
.m2d_c00389{transform:matrix(0.089285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089285,0.000000,0.000000,0.250000,0,0);}
.mab_c00389{transform:matrix(0.093751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093751,0.000000,0.000000,0.250000,0,0);}
.m9a_c00389{transform:matrix(0.096155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096155,0.000000,0.000000,0.250000,0,0);}
.m41_c00389{transform:matrix(0.101785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101785,0.000000,0.000000,0.250000,0,0);}
.m2a_c00389{transform:matrix(0.112816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112816,0.000000,0.000000,0.250000,0,0);}
.mac_c00389{transform:matrix(0.118304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118304,0.000000,0.000000,0.250000,0,0);}
.m9b_c00389{transform:matrix(0.118589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118589,0.000000,0.000000,0.250000,0,0);}
.ma8_c00389{transform:matrix(0.120536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120536,0.000000,0.000000,0.250000,0,0);}
.m3b_c00389{transform:matrix(0.121449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121449,0.000000,0.000000,0.250000,0,0);}
.maa_c00389{transform:matrix(0.122768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122768,0.000000,0.000000,0.250000,0,0);}
.m59_c00389{transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);}
.m58_c00389{transform:matrix(0.127042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127042,0.000000,0.000000,0.250000,0,0);}
.me_c00389{transform:matrix(0.133289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133289,0.000000,0.000000,0.250000,0,0);}
.m11_c00389{transform:matrix(0.134989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134989,0.000000,0.000000,0.250000,0,0);}
.m16_c00389{transform:matrix(0.145348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145348,0.000000,0.000000,0.250000,0,0);}
.m36_c00389{transform:matrix(0.151166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151166,0.000000,0.000000,0.250000,0,0);}
.m98_c00389{transform:matrix(0.152016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152016,0.000000,0.000000,0.250000,0,0);}
.m4b_c00389{transform:matrix(0.159047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159047,0.000000,0.000000,0.250000,0,0);}
.m17_c00389{transform:matrix(0.159884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159884,0.000000,0.000000,0.250000,0,0);}
.m14_c00389{transform:matrix(0.168605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168605,0.000000,0.000000,0.250000,0,0);}
.mf0_c00389{transform:matrix(0.171053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171053,0.000000,0.000000,0.250000,0,0);}
.ma7_c00389{transform:matrix(0.176957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176957,0.000000,0.000000,0.250000,0,0);}
.mec_c00389{transform:matrix(0.177632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177632,0.000000,0.000000,0.250000,0,0);}
.m13_c00389{transform:matrix(0.180233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180233,0.000000,0.000000,0.250000,0,0);}
.mcd_c00389{transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);}
.m9c_c00389{transform:matrix(0.185604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185604,0.000000,0.000000,0.250000,0,0);}
.mf1_c00389{transform:matrix(0.189145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189145,0.000000,0.000000,0.250000,0,0);}
.m7e_c00389{transform:matrix(0.191069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191069,0.000000,0.000000,0.250000,0,0);}
.m2e_c00389{transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);}
.mef_c00389{transform:matrix(0.193722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193722,0.000000,0.000000,0.250000,0,0);}
.mcf_c00389{transform:matrix(0.203785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203785,0.000000,0.000000,0.250000,0,0);}
.m12_c00389{transform:matrix(0.205249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205249,0.000000,0.000000,0.250000,0,0);}
.m7c_c00389{transform:matrix(0.206022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206022,0.000000,0.000000,0.250000,0,0);}
.m8c_c00389{transform:matrix(0.214549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214549,0.000000,0.000000,0.250000,0,0);}
.mc2_c00389{transform:matrix(0.220674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220674,0.000000,0.000000,0.250000,0,0);}
.m75_c00389{transform:matrix(0.225028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225028,0.000000,0.000000,0.250000,0,0);}
.m65_c00389{transform:matrix(0.225718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225718,0.000000,0.000000,0.250000,0,0);}
.m7f_c00389{transform:matrix(0.225880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225880,0.000000,0.000000,0.250000,0,0);}
.m99_c00389{transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);}
.m25_c00389{transform:matrix(0.234334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234334,0.000000,0.000000,0.250000,0,0);}
.mc_c00389{transform:matrix(0.235276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235276,0.000000,0.000000,0.250000,0,0);}
.m9e_c00389{transform:matrix(0.240004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240004,0.000000,0.000000,0.250000,0,0);}
.m97_c00389{transform:matrix(0.240323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240323,0.000000,0.000000,0.250000,0,0);}
.mc7_c00389{transform:matrix(0.241983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241983,0.000000,0.000000,0.250000,0,0);}
.m71_c00389{transform:matrix(0.245831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245831,0.000000,0.000000,0.250000,0,0);}
.me7_c00389{transform:matrix(0.249764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249764,0.000000,0.000000,0.250000,0,0);}
.m1_c00389{transform:matrix(0.249884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249884,0.000000,0.000000,0.250000,0,0);}
.m0_c00389{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m38_c00389{transform:matrix(0.250995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250995,0.000000,0.000000,0.250000,0,0);}
.mdc_c00389{transform:matrix(0.251436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251436,0.000000,0.000000,0.250000,0,0);}
.mc3_c00389{transform:matrix(0.251942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251942,0.000000,0.000000,0.250000,0,0);}
.m7b_c00389{transform:matrix(0.253354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253354,0.000000,0.000000,0.250000,0,0);}
.me5_c00389{transform:matrix(0.254776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254776,0.000000,0.000000,0.250000,0,0);}
.mc4_c00389{transform:matrix(0.255755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255755,0.000000,0.000000,0.250000,0,0);}
.m57_c00389{transform:matrix(0.255932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255932,0.000000,0.000000,0.250000,0,0);}
.m85_c00389{transform:matrix(0.256806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256806,0.000000,0.000000,0.250000,0,0);}
.mae_c00389{transform:matrix(0.256952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256952,0.000000,0.000000,0.250000,0,0);}
.m2_c00389{transform:matrix(0.257968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257968,0.000000,0.000000,0.250000,0,0);}
.md0_c00389{transform:matrix(0.258133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258133,0.000000,0.000000,0.250000,0,0);}
.m44_c00389{transform:matrix(0.258169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258169,0.000000,0.000000,0.250000,0,0);}
.mb7_c00389{transform:matrix(0.263490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263490,0.000000,0.000000,0.250000,0,0);}
.me4_c00389{transform:matrix(0.267508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267508,0.000000,0.000000,0.250000,0,0);}
.mcc_c00389{transform:matrix(0.268526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268526,0.000000,0.000000,0.250000,0,0);}
.m3c_c00389{transform:matrix(0.270108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270108,0.000000,0.000000,0.250000,0,0);}
.mbc_c00389{transform:matrix(0.273794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273794,0.000000,0.000000,0.250000,0,0);}
.m8b_c00389{transform:matrix(0.274390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274390,0.000000,0.000000,0.250000,0,0);}
.mf3_c00389{transform:matrix(0.275906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275906,0.000000,0.000000,0.250000,0,0);}
.m80_c00389{transform:matrix(0.277271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277271,0.000000,0.000000,0.250000,0,0);}
.m1e_c00389{transform:matrix(0.277508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277508,0.000000,0.000000,0.250000,0,0);}
.ma0_c00389{transform:matrix(0.278310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278310,0.000000,0.000000,0.250000,0,0);}
.m22_c00389{transform:matrix(0.279472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279472,0.000000,0.000000,0.250000,0,0);}
.m69_c00389{transform:matrix(0.280113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280113,0.000000,0.000000,0.250000,0,0);}
.m9d_c00389{transform:matrix(0.280643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280643,0.000000,0.000000,0.250000,0,0);}
.m81_c00389{transform:matrix(0.281608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281608,0.000000,0.000000,0.250000,0,0);}
.m34_c00389{transform:matrix(0.281832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281832,0.000000,0.000000,0.250000,0,0);}
.m6e_c00389{transform:matrix(0.282915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282915,0.000000,0.000000,0.250000,0,0);}
.me3_c00389{transform:matrix(0.283708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283708,0.000000,0.000000,0.250000,0,0);}
.m33_c00389{transform:matrix(0.284553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284553,0.000000,0.000000,0.250000,0,0);}
.m9_c00389{transform:matrix(0.285149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285149,0.000000,0.000000,0.250000,0,0);}
.mea_c00389{transform:matrix(0.285196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285196,0.000000,0.000000,0.250000,0,0);}
.m7d_c00389{transform:matrix(0.286103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286103,0.000000,0.000000,0.250000,0,0);}
.m79_c00389{transform:matrix(0.286832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286832,0.000000,0.000000,0.250000,0,0);}
.m50_c00389{transform:matrix(0.287056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287056,0.000000,0.000000,0.250000,0,0);}
.mc5_c00389{transform:matrix(0.287697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287697,0.000000,0.000000,0.250000,0,0);}
.m73_c00389{transform:matrix(0.287813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287813,0.000000,0.000000,0.250000,0,0);}
.md3_c00389{transform:matrix(0.287833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287833,0.000000,0.000000,0.250000,0,0);}
.m52_c00389{transform:matrix(0.288094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288094,0.000000,0.000000,0.250000,0,0);}
.m96_c00389{transform:matrix(0.288453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288453,0.000000,0.000000,0.250000,0,0);}
.mda_c00389{transform:matrix(0.288482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288482,0.000000,0.000000,0.250000,0,0);}
.md8_c00389{transform:matrix(0.289319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289319,0.000000,0.000000,0.250000,0,0);}
.m87_c00389{transform:matrix(0.289635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289635,0.000000,0.000000,0.250000,0,0);}
.m6f_c00389{transform:matrix(0.289772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289772,0.000000,0.000000,0.250000,0,0);}
.m43_c00389{transform:matrix(0.289988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289988,0.000000,0.000000,0.250000,0,0);}
.m8e_c00389{transform:matrix(0.290318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290318,0.000000,0.000000,0.250000,0,0);}
.me1_c00389{transform:matrix(0.291375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291375,0.000000,0.000000,0.250000,0,0);}
.m1c_c00389{transform:matrix(0.291910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291910,0.000000,0.000000,0.250000,0,0);}
.mba_c00389{transform:matrix(0.291953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291953,0.000000,0.000000,0.250000,0,0);}
.m55_c00389{transform:matrix(0.291957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291957,0.000000,0.000000,0.250000,0,0);}
.m5b_c00389{transform:matrix(0.292835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292835,0.000000,0.000000,0.250000,0,0);}
.m4a_c00389{transform:matrix(0.293721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293721,0.000000,0.000000,0.250000,0,0);}
.m91_c00389{transform:matrix(0.295151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295151,0.000000,0.000000,0.250000,0,0);}
.me0_c00389{transform:matrix(0.295486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295486,0.000000,0.000000,0.250000,0,0);}
.mc8_c00389{transform:matrix(0.295677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295677,0.000000,0.000000,0.250000,0,0);}
.m19_c00389{transform:matrix(0.295739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295739,0.000000,0.000000,0.250000,0,0);}
.mc0_c00389{transform:matrix(0.297260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297260,0.000000,0.000000,0.250000,0,0);}
.m1d_c00389{transform:matrix(0.299017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299017,0.000000,0.000000,0.250000,0,0);}
.mb0_c00389{transform:matrix(0.299296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299296,0.000000,0.000000,0.250000,0,0);}
.m77_c00389{transform:matrix(0.300138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300138,0.000000,0.000000,0.250000,0,0);}
.m40_c00389{transform:matrix(0.300237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300237,0.000000,0.000000,0.250000,0,0);}
.md1_c00389{transform:matrix(0.300424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300424,0.000000,0.000000,0.250000,0,0);}
.m72_c00389{transform:matrix(0.300958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300958,0.000000,0.000000,0.250000,0,0);}
.m60_c00389{transform:matrix(0.301538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301538,0.000000,0.000000,0.250000,0,0);}
.m62_c00389{transform:matrix(0.303471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303471,0.000000,0.000000,0.250000,0,0);}
.m39_c00389{transform:matrix(0.303624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303624,0.000000,0.000000,0.250000,0,0);}
.m5a_c00389{transform:matrix(0.304267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304267,0.000000,0.000000,0.250000,0,0);}
.mc9_c00389{transform:matrix(0.304642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304642,0.000000,0.000000,0.250000,0,0);}
.m2f_c00389{transform:matrix(0.304936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304936,0.000000,0.000000,0.250000,0,0);}
.m3e_c00389{transform:matrix(0.305097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305097,0.000000,0.000000,0.250000,0,0);}
.m74_c00389{transform:matrix(0.305881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305881,0.000000,0.000000,0.250000,0,0);}
.m1f_c00389{transform:matrix(0.306430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306430,0.000000,0.000000,0.250000,0,0);}
.m10_c00389{transform:matrix(0.307047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307047,0.000000,0.000000,0.250000,0,0);}
.m37_c00389{transform:matrix(0.307337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307337,0.000000,0.000000,0.250000,0,0);}
.m54_c00389{transform:matrix(0.307430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307430,0.000000,0.000000,0.250000,0,0);}
.mbf_c00389{transform:matrix(0.308990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308990,0.000000,0.000000,0.250000,0,0);}
.m4f_c00389{transform:matrix(0.309308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309308,0.000000,0.000000,0.250000,0,0);}
.mb3_c00389{transform:matrix(0.309614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309614,0.000000,0.000000,0.250000,0,0);}
.md9_c00389{transform:matrix(0.309701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309701,0.000000,0.000000,0.250000,0,0);}
.m5d_c00389{transform:matrix(0.310008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310008,0.000000,0.000000,0.250000,0,0);}
.mca_c00389{transform:matrix(0.310308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310308,0.000000,0.000000,0.250000,0,0);}
.mc6_c00389{transform:matrix(0.311660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311660,0.000000,0.000000,0.250000,0,0);}
.md7_c00389{transform:matrix(0.311812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311812,0.000000,0.000000,0.250000,0,0);}
.me2_c00389{transform:matrix(0.311902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311902,0.000000,0.000000,0.250000,0,0);}
.mb4_c00389{transform:matrix(0.312862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312862,0.000000,0.000000,0.250000,0,0);}
.m48_c00389{transform:matrix(0.313430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313430,0.000000,0.000000,0.250000,0,0);}
.mb5_c00389{transform:matrix(0.314365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314365,0.000000,0.000000,0.250000,0,0);}
.mb6_c00389{transform:matrix(0.314590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314590,0.000000,0.000000,0.250000,0,0);}
.mb2_c00389{transform:matrix(0.315235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315235,0.000000,0.000000,0.250000,0,0);}
.m6b_c00389{transform:matrix(0.316326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316326,0.000000,0.000000,0.250000,0,0);}
.mbd_c00389{transform:matrix(0.317374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317374,0.000000,0.000000,0.250000,0,0);}
.md5_c00389{transform:matrix(0.318834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318834,0.000000,0.000000,0.250000,0,0);}
.ma2_c00389{transform:matrix(0.320981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320981,0.000000,0.000000,0.250000,0,0);}
.m23_c00389{transform:matrix(0.321166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321166,0.000000,0.000000,0.250000,0,0);}
.m26_c00389{transform:matrix(0.321806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321806,0.000000,0.000000,0.250000,0,0);}
.m95_c00389{transform:matrix(0.322142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322142,0.000000,0.000000,0.250000,0,0);}
.m66_c00389{transform:matrix(0.322296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322296,0.000000,0.000000,0.250000,0,0);}
.m4c_c00389{transform:matrix(0.322788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322788,0.000000,0.000000,0.250000,0,0);}
.ma6_c00389{transform:matrix(0.323943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323943,0.000000,0.000000,0.250000,0,0);}
.m6_c00389{transform:matrix(0.324334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324334,0.000000,0.000000,0.250000,0,0);}
.mdf_c00389{transform:matrix(0.324497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324497,0.000000,0.000000,0.250000,0,0);}
.ma_c00389{transform:matrix(0.324579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324579,0.000000,0.000000,0.250000,0,0);}
.ma1_c00389{transform:matrix(0.324924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324924,0.000000,0.000000,0.250000,0,0);}
.m6c_c00389{transform:matrix(0.326455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326455,0.000000,0.000000,0.250000,0,0);}
.mb_c00389{transform:matrix(0.326817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326817,0.000000,0.000000,0.250000,0,0);}
.md6_c00389{transform:matrix(0.326938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326938,0.000000,0.000000,0.250000,0,0);}
.m20_c00389{transform:matrix(0.327060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327060,0.000000,0.000000,0.250000,0,0);}
.m89_c00389{transform:matrix(0.327411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327411,0.000000,0.000000,0.250000,0,0);}
.m8f_c00389{transform:matrix(0.327825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327825,0.000000,0.000000,0.250000,0,0);}
.m28_c00389{transform:matrix(0.328422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328422,0.000000,0.000000,0.250000,0,0);}
.m6d_c00389{transform:matrix(0.330854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330854,0.000000,0.000000,0.250000,0,0);}
.md_c00389{transform:matrix(0.332615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332615,0.000000,0.000000,0.250000,0,0);}
.mbe_c00389{transform:matrix(0.332653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332653,0.000000,0.000000,0.250000,0,0);}
.m90_c00389{transform:matrix(0.333474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333474,0.000000,0.000000,0.250000,0,0);}
.m21_c00389{transform:matrix(0.334169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334169,0.000000,0.000000,0.250000,0,0);}
.mb1_c00389{transform:matrix(0.334885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334885,0.000000,0.000000,0.250000,0,0);}
.mf2_c00389{transform:matrix(0.335001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335001,0.000000,0.000000,0.250000,0,0);}
.mad_c00389{transform:matrix(0.335133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335133,0.000000,0.000000,0.250000,0,0);}
.m86_c00389{transform:matrix(0.335623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335623,0.000000,0.000000,0.250000,0,0);}
.m53_c00389{transform:matrix(0.336049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336049,0.000000,0.000000,0.250000,0,0);}
.me8_c00389{transform:matrix(0.336192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336192,0.000000,0.000000,0.250000,0,0);}
.m3f_c00389{transform:matrix(0.336505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336505,0.000000,0.000000,0.250000,0,0);}
.m83_c00389{transform:matrix(0.337528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337528,0.000000,0.000000,0.250000,0,0);}
.mf_c00389{transform:matrix(0.337694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337694,0.000000,0.000000,0.250000,0,0);}
.mc1_c00389{transform:matrix(0.338658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338658,0.000000,0.000000,0.250000,0,0);}
.m27_c00389{transform:matrix(0.339123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339123,0.000000,0.000000,0.250000,0,0);}
.m92_c00389{transform:matrix(0.339151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339151,0.000000,0.000000,0.250000,0,0);}
.mf4_c00389{transform:matrix(0.339158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339158,0.000000,0.000000,0.250000,0,0);}
.mbb_c00389{transform:matrix(0.339293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339293,0.000000,0.000000,0.250000,0,0);}
.m30_c00389{transform:matrix(0.339358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339358,0.000000,0.000000,0.250000,0,0);}
.m3a_c00389{transform:matrix(0.339592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339592,0.000000,0.000000,0.250000,0,0);}
.me9_c00389{transform:matrix(0.339930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339930,0.000000,0.000000,0.250000,0,0);}
.m49_c00389{transform:matrix(0.340284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340284,0.000000,0.000000,0.250000,0,0);}
.m4_c00389{transform:matrix(0.341087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341087,0.000000,0.000000,0.250000,0,0);}
.md2_c00389{transform:matrix(0.342604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342604,0.000000,0.000000,0.250000,0,0);}
.me6_c00389{transform:matrix(0.343582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343582,0.000000,0.000000,0.250000,0,0);}
.m35_c00389{transform:matrix(0.344933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344933,0.000000,0.000000,0.250000,0,0);}
.m68_c00389{transform:matrix(0.345163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345163,0.000000,0.000000,0.250000,0,0);}
.m76_c00389{transform:matrix(0.345561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345561,0.000000,0.000000,0.250000,0,0);}
.mce_c00389{transform:matrix(0.346250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00389{transform:matrix(0.346692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346692,0.000000,0.000000,0.250000,0,0);}
.m8a_c00389{transform:matrix(0.348297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348297,0.000000,0.000000,0.250000,0,0);}
.m88_c00389{transform:matrix(0.348687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348687,0.000000,0.000000,0.250000,0,0);}
.m56_c00389{transform:matrix(0.349049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349049,0.000000,0.000000,0.250000,0,0);}
.m9f_c00389{transform:matrix(0.349229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349229,0.000000,0.000000,0.250000,0,0);}
.m67_c00389{transform:matrix(0.351219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351219,0.000000,0.000000,0.250000,0,0);}
.mde_c00389{transform:matrix(0.351647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351647,0.000000,0.000000,0.250000,0,0);}
.mcb_c00389{transform:matrix(0.351664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351664,0.000000,0.000000,0.250000,0,0);}
.m5e_c00389{transform:matrix(0.353014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353014,0.000000,0.000000,0.250000,0,0);}
.m84_c00389{transform:matrix(0.353133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353133,0.000000,0.000000,0.250000,0,0);}
.m3d_c00389{transform:matrix(0.353641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353641,0.000000,0.000000,0.250000,0,0);}
.m46_c00389{transform:matrix(0.355235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355235,0.000000,0.000000,0.250000,0,0);}
.m8d_c00389{transform:matrix(0.355849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355849,0.000000,0.000000,0.250000,0,0);}
.m4d_c00389{transform:matrix(0.355946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355946,0.000000,0.000000,0.250000,0,0);}
.m2b_c00389{transform:matrix(0.356970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356970,0.000000,0.000000,0.250000,0,0);}
.m45_c00389{transform:matrix(0.359882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359882,0.000000,0.000000,0.250000,0,0);}
.ma4_c00389{transform:matrix(0.363816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363816,0.000000,0.000000,0.250000,0,0);}
.mb9_c00389{transform:matrix(0.364586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364586,0.000000,0.000000,0.250000,0,0);}
.m31_c00389{transform:matrix(0.366546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366546,0.000000,0.000000,0.250000,0,0);}
.m5_c00389{transform:matrix(0.368701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368701,0.000000,0.000000,0.250000,0,0);}
.m7_c00389{transform:matrix(0.369035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369035,0.000000,0.000000,0.250000,0,0);}
.m3_c00389{transform:matrix(0.369117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369117,0.000000,0.000000,0.250000,0,0);}
.mdb_c00389{transform:matrix(0.370160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370160,0.000000,0.000000,0.250000,0,0);}
.m24_c00389{transform:matrix(0.373603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373603,0.000000,0.000000,0.250000,0,0);}
.m4e_c00389{transform:matrix(0.374075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374075,0.000000,0.000000,0.250000,0,0);}
.m7a_c00389{transform:matrix(0.374533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374533,0.000000,0.000000,0.250000,0,0);}
.ma5_c00389{transform:matrix(0.376765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376765,0.000000,0.000000,0.250000,0,0);}
.m63_c00389{transform:matrix(0.378974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378974,0.000000,0.000000,0.250000,0,0);}
.m1b_c00389{transform:matrix(0.379328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379328,0.000000,0.000000,0.250000,0,0);}
.m5f_c00389{transform:matrix(0.382300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382300,0.000000,0.000000,0.250000,0,0);}
.m8_c00389{transform:matrix(0.388260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388260,0.000000,0.000000,0.250000,0,0);}
.m1a_c00389{transform:matrix(0.390426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390426,0.000000,0.000000,0.250000,0,0);}
.m51_c00389{transform:matrix(0.390858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390858,0.000000,0.000000,0.250000,0,0);}
.m29_c00389{transform:matrix(0.390880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390880,0.000000,0.000000,0.250000,0,0);}
.maf_c00389{transform:matrix(0.391227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391227,0.000000,0.000000,0.250000,0,0);}
.ma3_c00389{transform:matrix(0.394120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394120,0.000000,0.000000,0.250000,0,0);}
.m82_c00389{transform:matrix(0.402104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402104,0.000000,0.000000,0.250000,0,0);}
.m61_c00389{transform:matrix(0.406255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406255,0.000000,0.000000,0.250000,0,0);}
.m32_c00389{transform:matrix(0.409278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409278,0.000000,0.000000,0.250000,0,0);}
.md4_c00389{transform:matrix(0.417727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417727,0.000000,0.000000,0.250000,0,0);}
.m47_c00389{transform:matrix(0.426026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426026,0.000000,0.000000,0.250000,0,0);}
.m42_c00389{transform:matrix(0.442650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442650,0.000000,0.000000,0.250000,0,0);}
.m94_c00389{transform:matrix(0.450105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450105,0.000000,0.000000,0.250000,0,0);}
.m93_c00389{transform:matrix(0.450416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450416,0.000000,0.000000,0.250000,0,0);}
.mb8_c00389{transform:matrix(0.456169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456169,0.000000,0.000000,0.250000,0,0);}
.m6a_c00389{transform:matrix(0.457076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457076,0.000000,0.000000,0.250000,0,0);}
.m70_c00389{transform:matrix(0.459301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459301,0.000000,0.000000,0.250000,0,0);}
.m64_c00389{transform:matrix(0.465386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465386,0.000000,0.000000,0.250000,0,0);}
.m78_c00389{transform:matrix(0.467090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467090,0.000000,0.000000,0.250000,0,0);}
.mdd_c00389{transform:matrix(0.468742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468742,0.000000,0.000000,0.250000,0,0);}
.mee_c00389{transform:matrix(0.476862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476862,0.000000,0.000000,0.250000,0,0);}
.v1_c00389{vertical-align:-1.445400px;}
.v0_c00389{vertical-align:0.000000px;}
.v3_c00389{vertical-align:17.107200px;}
.v2_c00389{vertical-align:19.989090px;}
.ls23_c00389{letter-spacing:-3.520440px;}
.ls8_c00389{letter-spacing:-2.938327px;}
.lsb_c00389{letter-spacing:-2.772000px;}
.lsa_c00389{letter-spacing:-2.494800px;}
.ls18_c00389{letter-spacing:-2.467080px;}
.ls14_c00389{letter-spacing:-2.444904px;}
.lsd_c00389{letter-spacing:-2.182950px;}
.ls1a_c00389{letter-spacing:-2.106720px;}
.ls27_c00389{letter-spacing:-1.718640px;}
.lse_c00389{letter-spacing:-1.621620px;}
.ls17_c00389{letter-spacing:-1.496880px;}
.ls1c_c00389{letter-spacing:-1.392930px;}
.ls21_c00389{letter-spacing:-1.325808px;}
.ls1f_c00389{letter-spacing:-1.111968px;}
.lsc_c00389{letter-spacing:-0.826848px;}
.ls7_c00389{letter-spacing:0.000000px;}
.ls12_c00389{letter-spacing:0.313632px;}
.ls0_c00389{letter-spacing:0.441936px;}
.ls22_c00389{letter-spacing:1.104840px;}
.ls15_c00389{letter-spacing:1.643400px;}
.ls1b_c00389{letter-spacing:1.989900px;}
.ls10_c00389{letter-spacing:2.380752px;}
.ls1_c00389{letter-spacing:2.779920px;}
.ls1e_c00389{letter-spacing:2.851200px;}
.ls6_c00389{letter-spacing:3.207600px;}
.ls1d_c00389{letter-spacing:3.442824px;}
.ls9_c00389{letter-spacing:3.564000px;}
.ls16_c00389{letter-spacing:3.801610px;}
.ls5_c00389{letter-spacing:11.190960px;}
.ls25_c00389{letter-spacing:11.404998px;}
.ls4_c00389{letter-spacing:28.353600px;}
.ls13_c00389{letter-spacing:31.363200px;}
.ls19_c00389{letter-spacing:37.065798px;}
.ls2_c00389{letter-spacing:40.502484px;}
.ls11_c00389{letter-spacing:49.896198px;}
.ls24_c00389{letter-spacing:51.321798px;}
.ls26_c00389{letter-spacing:54.172998px;}
.lsf_c00389{letter-spacing:61.300998px;}
.ls20_c00389{letter-spacing:79.833600px;}
.ls3_c00389{letter-spacing:85.742652px;}
.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;}
}
.ws7_c00389{word-spacing:-20.599920px;}
.ws2_c00389{word-spacing:-18.261936px;}
.ws1_c00389{word-spacing:-17.820000px;}
.ws0_c00389{word-spacing:-17.338860px;}
.ws9_c00389{word-spacing:-16.494192px;}
.ws5_c00389{word-spacing:-15.375096px;}
.wse_c00389{word-spacing:-3.991680px;}
.wsb_c00389{word-spacing:-3.706560px;}
.wsf_c00389{word-spacing:0.000000px;}
.wsc_c00389{word-spacing:0.498960px;}
.ws8_c00389{word-spacing:4.134240px;}
.ws3_c00389{word-spacing:4.989600px;}
.wsd_c00389{word-spacing:6.272640px;}
.ws4_c00389{word-spacing:6.415200px;}
.ws6_c00389{word-spacing:7.555680px;}
.wsa_c00389{word-spacing:9.266400px;}
._26_c00389{margin-left:-12.101760px;}
._2a_c00389{margin-left:-10.200960px;}
._22_c00389{margin-left:-9.088794px;}
._27_c00389{margin-left:-7.270560px;}
._d_c00389{margin-left:-6.130080px;}
._23_c00389{margin-left:-4.813578px;}
._0_c00389{margin-left:-3.722400px;}
._2b_c00389{width:1.276704px;}
._17_c00389{width:2.922480px;}
._1f_c00389{width:5.045040px;}
._25_c00389{width:6.522120px;}
._13_c00389{width:7.698240px;}
._2_c00389{width:8.767440px;}
._f_c00389{width:9.979200px;}
._8_c00389{width:11.262240px;}
._9_c00389{width:12.759120px;}
._14_c00389{width:13.828320px;}
._a_c00389{width:15.467760px;}
._19_c00389{width:19.530720px;}
._b_c00389{width:21.669120px;}
._c_c00389{width:22.809600px;}
._6_c00389{width:24.963840px;}
._3_c00389{width:26.730000px;}
._24_c00389{width:27.799200px;}
._29_c00389{width:29.212128px;}
._15_c00389{width:32.028480px;}
._4_c00389{width:33.422400px;}
._5_c00389{width:35.153712px;}
._18_c00389{width:37.350720px;}
._7_c00389{width:38.918880px;}
._1c_c00389{width:40.487040px;}
._10_c00389{width:41.841360px;}
._e_c00389{width:43.195680px;}
._1d_c00389{width:44.264880px;}
._12_c00389{width:45.959760px;}
._11_c00389{width:47.329920px;}
._1e_c00389{width:48.399120px;}
._28_c00389{width:49.824720px;}
._16_c00389{width:53.729280px;}
._20_c00389{width:57.998160px;}
._1b_c00389{width:75.196440px;}
._21_c00389{width:105.802488px;}
._1a_c00389{width:116.499240px;}
._1_c00389{width:685.082376px;}
.fc0_c00389{color:transparent;}
.fs20_c00389{font-size:11.404998px;}
.fs0_c00389{font-size:22.176000px;}
.fs11_c00389{font-size:27.720000px;}
.fs1b_c00389{font-size:27.918000px;}
.fsc_c00389{font-size:31.363200px;}
.fse_c00389{font-size:32.868000px;}
.fs12_c00389{font-size:33.660000px;}
.fs15_c00389{font-size:37.065798px;}
.fsa_c00389{font-size:38.808000px;}
.fs10_c00389{font-size:39.204000px;}
.fs5_c00389{font-size:39.600000px;}
.fs19_c00389{font-size:39.798000px;}
.fs16_c00389{font-size:45.144000px;}
.fs7_c00389{font-size:46.332000px;}
.fs23_c00389{font-size:49.104000px;}
.fs9_c00389{font-size:49.896198px;}
.fs1f_c00389{font-size:51.321798px;}
.fs1e_c00389{font-size:51.480000px;}
.fs22_c00389{font-size:54.172998px;}
.fs4_c00389{font-size:58.608000px;}
.fs17_c00389{font-size:60.192000px;}
.fs8_c00389{font-size:61.300998px;}
.fs6_c00389{font-size:62.370000px;}
.fs18_c00389{font-size:63.558000px;}
.fs13_c00389{font-size:65.538000px;}
.fs21_c00389{font-size:65.736198px;}
.fs14_c00389{font-size:70.488000px;}
.fsd_c00389{font-size:70.884000px;}
.fs2_c00389{font-size:71.280000px;}
.fsb_c00389{font-size:72.072198px;}
.fs1c_c00389{font-size:72.864000px;}
.fsf_c00389{font-size:76.032198px;}
.fs3_c00389{font-size:79.200000px;}
.fs1a_c00389{font-size:79.833600px;}
.fs1_c00389{font-size:83.952198px;}
.fs1d_c00389{font-size:100.584000px;}
.y0_c00389{bottom:0.000000px;}
.y2b_c00389{bottom:50.872185px;}
.y2a_c00389{bottom:58.005135px;}
.y1_c00389{bottom:76.500000px;}
.y29_c00389{bottom:146.030985px;}
.y28_c00389{bottom:176.329935px;}
.y27_c00389{bottom:208.044585px;}
.y26_c00389{bottom:211.257135px;}
.y24_c00389{bottom:211.613535px;}
.y25_c00389{bottom:211.969935px;}
.y23_c00389{bottom:245.471535px;}
.y21_c00389{bottom:245.827935px;}
.y22_c00389{bottom:253.307385px;}
.y20_c00389{bottom:278.260335px;}
.y1f_c00389{bottom:342.768735px;}
.y1e_c00389{bottom:375.196185px;}
.y1d_c00389{bottom:407.633535px;}
.y1c_c00389{bottom:440.065935px;}
.y2_c00389{bottom:470.716335px;}
.y1b_c00389{bottom:472.141935px;}
.y19_c00389{bottom:472.854735px;}
.y1a_c00389{bottom:477.487935px;}
.y18_c00389{bottom:504.925785px;}
.y17_c00389{bottom:537.363135px;}
.y16_c00389{bottom:561.593385px;}
.y14_c00389{bottom:571.221135px;}
.y15_c00389{bottom:571.577535px;}
.y13_c00389{bottom:579.061935px;}
.y12_c00389{bottom:603.292185px;}
.y11_c00389{bottom:635.724585px;}
.ye_c00389{bottom:699.876585px;}
.yf_c00389{bottom:705.227535px;}
.y10_c00389{bottom:708.078735px;}
.yd_c00389{bottom:718.765785px;}
.yc_c00389{bottom:732.308985px;}
.yb_c00389{bottom:741.575385px;}
.ya_c00389{bottom:766.171935px;}
.y9_c00389{bottom:800.737785px;}
.y8_c00389{bottom:832.818735px;}
.y7_c00389{bottom:865.251135px;}
.y6_c00389{bottom:898.396335px;}
.y5_c00389{bottom:920.493135px;}
.y4_c00389{bottom:931.185135px;}
.y3_c00389{bottom:1082.293785px;}
.h1e_c00389{height:7.595729px;}
.hc_c00389{height:20.887891px;}
.h2_c00389{height:23.128875px;}
.h15_c00389{height:24.685821px;}
.h21_c00389{height:28.911094px;}
.h11_c00389{height:33.035449px;}
.ha_c00389{height:33.230868px;}
.h1d_c00389{height:34.180317px;}
.he_c00389{height:34.280297px;}
.h1f_c00389{height:36.079217px;}
.h10_c00389{height:38.476582px;}
.h9_c00389{height:40.826465px;}
.h19_c00389{height:41.508070px;}
.h16_c00389{height:47.083781px;}
.h20_c00389{height:48.192891px;}
.h8_c00389{height:48.322828px;}
.h1a_c00389{height:53.169178px;}
.h6_c00389{height:57.520547px;}
.h17_c00389{height:62.778375px;}
.h7_c00389{height:65.049961px;}
.h18_c00389{height:66.289008px;}
.hd_c00389{height:69.568770px;}
.h4_c00389{height:69.957422px;}
.h1b_c00389{height:71.512031px;}
.h14_c00389{height:73.516781px;}
.hb_c00389{height:75.169050px;}
.hf_c00389{height:76.626200px;}
.h12_c00389{height:79.299207px;}
.h5_c00389{height:79.818750px;}
.h3_c00389{height:82.394491px;}
.h13_c00389{height:86.897776px;}
.h1c_c00389{height:98.668582px;}
.h1_c00389{height:1110.000000px;}
.h0_c00389{height:1263.000000px;}
.w1_c00389{width:775.500000px;}
.w0_c00389{width:892.500000px;}
.x0_c00389{left:0.000000px;}
.x2_c00389{left:57.283035px;}
.x1_c00389{left:58.500000px;}
.x3b_c00389{left:107.931435px;}
.x19_c00389{left:109.728285px;}
.x6f_c00389{left:111.356835px;}
.x4d_c00389{left:120.222285px;}
.x1a_c00389{left:121.276635px;}
.x2a_c00389{left:131.112285px;}
.x32_c00389{left:142.106235px;}
.x33_c00389{left:152.164635px;}
.x2b_c00389{left:153.634785px;}
.x51_c00389{left:163.465485px;}
.x5_c00389{left:165.158385px;}
.x46_c00389{left:174.419835px;}
.x34_c00389{left:175.790985px;}
.x2c_c00389{left:185.275185px;}
.x55_c00389{left:186.502785px;}
.x3c_c00389{left:196.887885px;}
.x7a_c00389{left:197.917485px;}
.x66_c00389{left:199.288635px;}
.x42_c00389{left:206.693835px;}
.x6_c00389{left:208.965885px;}
.x52_c00389{left:217.479885px;}
.x47_c00389{left:219.281685px;}
.x7d_c00389{left:220.400385px;}
.x85_c00389{left:227.013585px;}
.x5f_c00389{left:229.147035px;}
.x2d_c00389{left:230.537985px;}
.x86_c00389{left:232.003185px;}
.x35_c00389{left:241.625985px;}
.x7_c00389{left:243.140685px;}
.x36_c00389{left:244.833585px;}
.x70_c00389{left:253.515885px;}
.x61_c00389{left:261.208185px;}
.x3d_c00389{left:262.351635px;}
.x8_c00389{left:264.098985px;}
.x1b_c00389{left:268.128285px;}
.x87_c00389{left:271.276485px;}
.x59_c00389{left:273.697035px;}
.x9_c00389{left:275.078085px;}
.x7b_c00389{left:276.355185px;}
.x37_c00389{left:284.745435px;}
.x1c_c00389{left:286.037385px;}
.x1d_c00389{left:297.417435px;}
.x75_c00389{left:299.788485px;}
.xa_c00389{left:308.084685px;}
.x69_c00389{left:314.692935px;}
.xb_c00389{left:319.801335px;}
.x67_c00389{left:322.306035px;}
.x1e_c00389{left:329.305335px;}
.x4e_c00389{left:330.493335px;}
.x80_c00389{left:331.552635px;}
.x6a_c00389{left:333.537585px;}
.x88_c00389{left:336.809535px;}
.x5a_c00389{left:340.665585px;}
.x1f_c00389{left:341.779335px;}
.x62_c00389{left:352.669335px;}
.x68_c00389{left:355.787835px;}
.x56_c00389{left:363.123735px;}
.x20_c00389{left:364.232535px;}
.xc_c00389{left:374.488935px;}
.x89_c00389{left:375.632385px;}
.x21_c00389{left:385.616535px;}
.x5e_c00389{left:395.412585px;}
.x2e_c00389{left:397.100535px;}
.xd_c00389{left:407.876685px;}
.x5b_c00389{left:408.896385px;}
.x22_c00389{left:410.559585px;}
.x81_c00389{left:413.291985px;}
.x53_c00389{left:417.326235px;}
.xe_c00389{left:419.227035px;}
.x3e_c00389{left:428.339985px;}
.x23_c00389{left:429.631935px;}
.x71_c00389{left:430.686285px;}
.x82_c00389{left:432.092085px;}
.x78_c00389{left:439.779435px;}
.x48_c00389{left:440.809035px;}
.x60_c00389{left:450.431835px;}
.xf_c00389{left:452.045535px;}
.x2f_c00389{left:461.841585px;}
.x6d_c00389{left:463.079085px;}
.x79_c00389{left:464.177985px;}
.x10_c00389{left:474.478935px;}
.x49_c00389{left:485.086785px;}
.x5c_c00389{left:486.650985px;}
.x30_c00389{left:496.575735px;}
.x4f_c00389{left:498.318135px;}
.x24_c00389{left:507.980535px;}
.x11_c00389{left:510.064485px;}
.x38_c00389{left:518.350785px;}
.x12_c00389{left:529.616985px;}
.x31_c00389{left:540.284235px;}
.x6e_c00389{left:546.352935px;}
.x13_c00389{left:550.882185px;}
.x43_c00389{left:552.154335px;}
.x63_c00389{left:562.316685px;}
.x72_c00389{left:563.930385px;}
.x5d_c00389{left:567.286485px;}
.x14_c00389{left:573.582885px;}
.x25_c00389{left:584.433285px;}
.x6b_c00389{left:585.690585px;}
.x84_c00389{left:588.403185px;}
.x3f_c00389{left:595.253985px;}
.x73_c00389{left:596.407335px;}
.x15_c00389{left:605.401485px;}
.x57_c00389{left:607.064685px;}
.x58_c00389{left:609.321885px;}
.x26_c00389{left:617.098335px;}
.x16_c00389{left:619.984185px;}
.x17_c00389{left:627.839835px;}
.x64_c00389{left:628.874385px;}
.x6c_c00389{left:639.086235px;}
.x40_c00389{left:640.204935px;}
.x74_c00389{left:642.288885px;}
.x27_c00389{left:650.911785px;}
.x7e_c00389{left:658.609035px;}
.x18_c00389{left:660.633585px;}
.x8a_c00389{left:662.291835px;}
.x7c_c00389{left:664.385685px;}
.x28_c00389{left:671.439435px;}
.x65_c00389{left:672.533385px;}
.x4a_c00389{left:683.368935px;}
.x29_c00389{left:684.754935px;}
.x39_c00389{left:691.754235px;}
.x3_c00389{left:694.357935px;}
.x83_c00389{left:695.362785px;}
.x44_c00389{left:705.747885px;}
.x4_c00389{left:706.831935px;}
.x4b_c00389{left:708.401085px;}
.x50_c00389{left:710.489985px;}
.x4c_c00389{left:713.954985px;}
.x76_c00389{left:716.291385px;}
.x54_c00389{left:717.548685px;}
.x7f_c00389{left:720.137535px;}
.x41_c00389{left:727.562535px;}
.x3a_c00389{left:728.938635px;}
.x45_c00389{left:738.972285px;}
.x77_c00389{left:750.708735px;}
@media print{
.v1_c00389{vertical-align:-1.284800pt;}
.v0_c00389{vertical-align:0.000000pt;}
.v3_c00389{vertical-align:15.206400pt;}
.v2_c00389{vertical-align:17.768080pt;}
.ls23_c00389{letter-spacing:-3.129280pt;}
.ls8_c00389{letter-spacing:-2.611846pt;}
.lsb_c00389{letter-spacing:-2.464000pt;}
.lsa_c00389{letter-spacing:-2.217600pt;}
.ls18_c00389{letter-spacing:-2.192960pt;}
.ls14_c00389{letter-spacing:-2.173248pt;}
.lsd_c00389{letter-spacing:-1.940400pt;}
.ls1a_c00389{letter-spacing:-1.872640pt;}
.ls27_c00389{letter-spacing:-1.527680pt;}
.lse_c00389{letter-spacing:-1.441440pt;}
.ls17_c00389{letter-spacing:-1.330560pt;}
.ls1c_c00389{letter-spacing:-1.238160pt;}
.ls21_c00389{letter-spacing:-1.178496pt;}
.ls1f_c00389{letter-spacing:-0.988416pt;}
.lsc_c00389{letter-spacing:-0.734976pt;}
.ls7_c00389{letter-spacing:0.000000pt;}
.ls12_c00389{letter-spacing:0.278784pt;}
.ls0_c00389{letter-spacing:0.392832pt;}
.ls22_c00389{letter-spacing:0.982080pt;}
.ls15_c00389{letter-spacing:1.460800pt;}
.ls1b_c00389{letter-spacing:1.768800pt;}
.ls10_c00389{letter-spacing:2.116224pt;}
.ls1_c00389{letter-spacing:2.471040pt;}
.ls1e_c00389{letter-spacing:2.534400pt;}
.ls6_c00389{letter-spacing:2.851200pt;}
.ls1d_c00389{letter-spacing:3.060288pt;}
.ls9_c00389{letter-spacing:3.168000pt;}
.ls16_c00389{letter-spacing:3.379209pt;}
.ls5_c00389{letter-spacing:9.947520pt;}
.ls25_c00389{letter-spacing:10.137776pt;}
.ls4_c00389{letter-spacing:25.203200pt;}
.ls13_c00389{letter-spacing:27.878400pt;}
.ls19_c00389{letter-spacing:32.947376pt;}
.ls2_c00389{letter-spacing:36.002208pt;}
.ls11_c00389{letter-spacing:44.352176pt;}
.ls24_c00389{letter-spacing:45.619376pt;}
.ls26_c00389{letter-spacing:48.153776pt;}
.lsf_c00389{letter-spacing:54.489776pt;}
.ls20_c00389{letter-spacing:70.963200pt;}
.ls3_c00389{letter-spacing:76.215691pt;}
.ws7_c00389{word-spacing:-18.311040pt;}
.ws2_c00389{word-spacing:-16.232832pt;}
.ws1_c00389{word-spacing:-15.840000pt;}
.ws0_c00389{word-spacing:-15.412320pt;}
.ws9_c00389{word-spacing:-14.661504pt;}
.ws5_c00389{word-spacing:-13.666752pt;}
.wse_c00389{word-spacing:-3.548160pt;}
.wsb_c00389{word-spacing:-3.294720pt;}
.wsf_c00389{word-spacing:0.000000pt;}
.wsc_c00389{word-spacing:0.443520pt;}
.ws8_c00389{word-spacing:3.674880pt;}
.ws3_c00389{word-spacing:4.435200pt;}
.wsd_c00389{word-spacing:5.575680pt;}
.ws4_c00389{word-spacing:5.702400pt;}
.ws6_c00389{word-spacing:6.716160pt;}
.wsa_c00389{word-spacing:8.236800pt;}
._26_c00389{margin-left:-10.757120pt;}
._2a_c00389{margin-left:-9.067520pt;}
._22_c00389{margin-left:-8.078928pt;}
._27_c00389{margin-left:-6.462720pt;}
._d_c00389{margin-left:-5.448960pt;}
._23_c00389{margin-left:-4.278736pt;}
._0_c00389{margin-left:-3.308800pt;}
._2b_c00389{width:1.134848pt;}
._17_c00389{width:2.597760pt;}
._1f_c00389{width:4.484480pt;}
._25_c00389{width:5.797440pt;}
._13_c00389{width:6.842880pt;}
._2_c00389{width:7.793280pt;}
._f_c00389{width:8.870400pt;}
._8_c00389{width:10.010880pt;}
._9_c00389{width:11.341440pt;}
._14_c00389{width:12.291840pt;}
._a_c00389{width:13.749120pt;}
._19_c00389{width:17.360640pt;}
._b_c00389{width:19.261440pt;}
._c_c00389{width:20.275200pt;}
._6_c00389{width:22.190080pt;}
._3_c00389{width:23.760000pt;}
._24_c00389{width:24.710400pt;}
._29_c00389{width:25.966336pt;}
._15_c00389{width:28.469760pt;}
._4_c00389{width:29.708800pt;}
._5_c00389{width:31.247744pt;}
._18_c00389{width:33.200640pt;}
._7_c00389{width:34.594560pt;}
._1c_c00389{width:35.988480pt;}
._10_c00389{width:37.192320pt;}
._e_c00389{width:38.396160pt;}
._1d_c00389{width:39.346560pt;}
._12_c00389{width:40.853120pt;}
._11_c00389{width:42.071040pt;}
._1e_c00389{width:43.021440pt;}
._28_c00389{width:44.288640pt;}
._16_c00389{width:47.759360pt;}
._20_c00389{width:51.553920pt;}
._1b_c00389{width:66.841280pt;}
._21_c00389{width:94.046656pt;}
._1a_c00389{width:103.554880pt;}
._1_c00389{width:608.962112pt;}
.fs20_c00389{font-size:10.137776pt;}
.fs0_c00389{font-size:19.712000pt;}
.fs11_c00389{font-size:24.640000pt;}
.fs1b_c00389{font-size:24.816000pt;}
.fsc_c00389{font-size:27.878400pt;}
.fse_c00389{font-size:29.216000pt;}
.fs12_c00389{font-size:29.920000pt;}
.fs15_c00389{font-size:32.947376pt;}
.fsa_c00389{font-size:34.496000pt;}
.fs10_c00389{font-size:34.848000pt;}
.fs5_c00389{font-size:35.200000pt;}
.fs19_c00389{font-size:35.376000pt;}
.fs16_c00389{font-size:40.128000pt;}
.fs7_c00389{font-size:41.184000pt;}
.fs23_c00389{font-size:43.648000pt;}
.fs9_c00389{font-size:44.352176pt;}
.fs1f_c00389{font-size:45.619376pt;}
.fs1e_c00389{font-size:45.760000pt;}
.fs22_c00389{font-size:48.153776pt;}
.fs4_c00389{font-size:52.096000pt;}
.fs17_c00389{font-size:53.504000pt;}
.fs8_c00389{font-size:54.489776pt;}
.fs6_c00389{font-size:55.440000pt;}
.fs18_c00389{font-size:56.496000pt;}
.fs13_c00389{font-size:58.256000pt;}
.fs21_c00389{font-size:58.432176pt;}
.fs14_c00389{font-size:62.656000pt;}
.fsd_c00389{font-size:63.008000pt;}
.fs2_c00389{font-size:63.360000pt;}
.fsb_c00389{font-size:64.064176pt;}
.fs1c_c00389{font-size:64.768000pt;}
.fsf_c00389{font-size:67.584176pt;}
.fs3_c00389{font-size:70.400000pt;}
.fs1a_c00389{font-size:70.963200pt;}
.fs1_c00389{font-size:74.624176pt;}
.fs1d_c00389{font-size:89.408000pt;}
.y0_c00389{bottom:0.000000pt;}
.y2b_c00389{bottom:45.219720pt;}
.y2a_c00389{bottom:51.560120pt;}
.y1_c00389{bottom:68.000000pt;}
.y29_c00389{bottom:129.805320pt;}
.y28_c00389{bottom:156.737720pt;}
.y27_c00389{bottom:184.928520pt;}
.y26_c00389{bottom:187.784120pt;}
.y24_c00389{bottom:188.100920pt;}
.y25_c00389{bottom:188.417720pt;}
.y23_c00389{bottom:218.196920pt;}
.y21_c00389{bottom:218.513720pt;}
.y22_c00389{bottom:225.162120pt;}
.y20_c00389{bottom:247.342520pt;}
.y1f_c00389{bottom:304.683320pt;}
.y1e_c00389{bottom:333.507720pt;}
.y1d_c00389{bottom:362.340920pt;}
.y1c_c00389{bottom:391.169720pt;}
.y2_c00389{bottom:418.414520pt;}
.y1b_c00389{bottom:419.681720pt;}
.y19_c00389{bottom:420.315320pt;}
.y1a_c00389{bottom:424.433720pt;}
.y18_c00389{bottom:448.822920pt;}
.y17_c00389{bottom:477.656120pt;}
.y16_c00389{bottom:499.194120pt;}
.y14_c00389{bottom:507.752120pt;}
.y15_c00389{bottom:508.068920pt;}
.y13_c00389{bottom:514.721720pt;}
.y12_c00389{bottom:536.259720pt;}
.y11_c00389{bottom:565.088520pt;}
.ye_c00389{bottom:622.112520pt;}
.yf_c00389{bottom:626.868920pt;}
.y10_c00389{bottom:629.403320pt;}
.yd_c00389{bottom:638.902920pt;}
.yc_c00389{bottom:650.941320pt;}
.yb_c00389{bottom:659.178120pt;}
.ya_c00389{bottom:681.041720pt;}
.y9_c00389{bottom:711.766920pt;}
.y8_c00389{bottom:740.283320pt;}
.y7_c00389{bottom:769.112120pt;}
.y6_c00389{bottom:798.574520pt;}
.y5_c00389{bottom:818.216120pt;}
.y4_c00389{bottom:827.720120pt;}
.y3_c00389{bottom:962.038920pt;}
.h1e_c00389{height:6.751759pt;}
.hc_c00389{height:18.567014pt;}
.h2_c00389{height:20.559000pt;}
.h15_c00389{height:21.942952pt;}
.h21_c00389{height:25.698750pt;}
.h11_c00389{height:29.364844pt;}
.ha_c00389{height:29.538549pt;}
.h1d_c00389{height:30.382504pt;}
.he_c00389{height:30.471375pt;}
.h1f_c00389{height:32.070415pt;}
.h10_c00389{height:34.201406pt;}
.h9_c00389{height:36.290191pt;}
.h19_c00389{height:36.896063pt;}
.h16_c00389{height:41.852250pt;}
.h20_c00389{height:42.838125pt;}
.h8_c00389{height:42.953625pt;}
.h1a_c00389{height:47.261491pt;}
.h6_c00389{height:51.129375pt;}
.h17_c00389{height:55.803000pt;}
.h7_c00389{height:57.822188pt;}
.h18_c00389{height:58.923563pt;}
.hd_c00389{height:61.838906pt;}
.h4_c00389{height:62.184375pt;}
.h1b_c00389{height:63.566250pt;}
.h14_c00389{height:65.348250pt;}
.hb_c00389{height:66.816934pt;}
.hf_c00389{height:68.112177pt;}
.h12_c00389{height:70.488184pt;}
.h5_c00389{height:70.950000pt;}
.h3_c00389{height:73.239548pt;}
.h13_c00389{height:77.242467pt;}
.h1c_c00389{height:87.705406pt;}
.h1_c00389{height:986.666667pt;}
.h0_c00389{height:1122.666667pt;}
.w1_c00389{width:689.333333pt;}
.w0_c00389{width:793.333333pt;}
.x0_c00389{left:0.000000pt;}
.x2_c00389{left:50.918253pt;}
.x1_c00389{left:52.000000pt;}
.x3b_c00389{left:95.939053pt;}
.x19_c00389{left:97.536253pt;}
.x6f_c00389{left:98.983853pt;}
.x4d_c00389{left:106.864253pt;}
.x1a_c00389{left:107.801453pt;}
.x2a_c00389{left:116.544253pt;}
.x32_c00389{left:126.316653pt;}
.x33_c00389{left:135.257453pt;}
.x2b_c00389{left:136.564253pt;}
.x51_c00389{left:145.302653pt;}
.x5_c00389{left:146.807453pt;}
.x46_c00389{left:155.039853pt;}
.x34_c00389{left:156.258653pt;}
.x2c_c00389{left:164.689053pt;}
.x55_c00389{left:165.780253pt;}
.x3c_c00389{left:175.011453pt;}
.x7a_c00389{left:175.926653pt;}
.x66_c00389{left:177.145453pt;}
.x42_c00389{left:183.727853pt;}
.x6_c00389{left:185.747453pt;}
.x52_c00389{left:193.315453pt;}
.x47_c00389{left:194.917053pt;}
.x7d_c00389{left:195.911453pt;}
.x85_c00389{left:201.789853pt;}
.x5f_c00389{left:203.686253pt;}
.x2d_c00389{left:204.922653pt;}
.x86_c00389{left:206.225053pt;}
.x35_c00389{left:214.778653pt;}
.x7_c00389{left:216.125053pt;}
.x36_c00389{left:217.629853pt;}
.x70_c00389{left:225.347453pt;}
.x61_c00389{left:232.185053pt;}
.x3d_c00389{left:233.201453pt;}
.x8_c00389{left:234.754653pt;}
.x1b_c00389{left:238.336253pt;}
.x87_c00389{left:241.134653pt;}
.x59_c00389{left:243.286253pt;}
.x9_c00389{left:244.513853pt;}
.x7b_c00389{left:245.649053pt;}
.x37_c00389{left:253.107053pt;}
.x1c_c00389{left:254.255453pt;}
.x1d_c00389{left:264.371053pt;}
.x75_c00389{left:266.478653pt;}
.xa_c00389{left:273.853053pt;}
.x69_c00389{left:279.727053pt;}
.xb_c00389{left:284.267853pt;}
.x67_c00389{left:286.494253pt;}
.x1e_c00389{left:292.715853pt;}
.x4e_c00389{left:293.771853pt;}
.x80_c00389{left:294.713453pt;}
.x6a_c00389{left:296.477853pt;}
.x88_c00389{left:299.386253pt;}
.x5a_c00389{left:302.813853pt;}
.x1f_c00389{left:303.803853pt;}
.x62_c00389{left:313.483853pt;}
.x68_c00389{left:316.255853pt;}
.x56_c00389{left:322.776653pt;}
.x20_c00389{left:323.762253pt;}
.xc_c00389{left:332.879053pt;}
.x89_c00389{left:333.895453pt;}
.x21_c00389{left:342.770253pt;}
.x5e_c00389{left:351.477853pt;}
.x2e_c00389{left:352.978253pt;}
.xd_c00389{left:362.557053pt;}
.x5b_c00389{left:363.463453pt;}
.x22_c00389{left:364.941853pt;}
.x81_c00389{left:367.370653pt;}
.x53_c00389{left:370.956653pt;}
.xe_c00389{left:372.646253pt;}
.x3e_c00389{left:380.746653pt;}
.x23_c00389{left:381.895053pt;}
.x71_c00389{left:382.832253pt;}
.x82_c00389{left:384.081853pt;}
.x78_c00389{left:390.915053pt;}
.x48_c00389{left:391.830253pt;}
.x60_c00389{left:400.383853pt;}
.xf_c00389{left:401.818253pt;}
.x2f_c00389{left:410.525853pt;}
.x6d_c00389{left:411.625853pt;}
.x79_c00389{left:412.602653pt;}
.x10_c00389{left:421.759053pt;}
.x49_c00389{left:431.188253pt;}
.x5c_c00389{left:432.578653pt;}
.x30_c00389{left:441.400653pt;}
.x4f_c00389{left:442.949453pt;}
.x24_c00389{left:451.538253pt;}
.x11_c00389{left:453.390653pt;}
.x38_c00389{left:460.756253pt;}
.x12_c00389{left:470.770653pt;}
.x31_c00389{left:480.252653pt;}
.x6e_c00389{left:485.647053pt;}
.x13_c00389{left:489.673053pt;}
.x43_c00389{left:490.803853pt;}
.x63_c00389{left:499.837053pt;}
.x72_c00389{left:501.271453pt;}
.x5d_c00389{left:504.254653pt;}
.x14_c00389{left:509.851453pt;}
.x25_c00389{left:519.496253pt;}
.x6b_c00389{left:520.613853pt;}
.x84_c00389{left:523.025053pt;}
.x3f_c00389{left:529.114653pt;}
.x73_c00389{left:530.139853pt;}
.x15_c00389{left:538.134653pt;}
.x57_c00389{left:539.613053pt;}
.x58_c00389{left:541.619453pt;}
.x26_c00389{left:548.531853pt;}
.x16_c00389{left:551.097053pt;}
.x17_c00389{left:558.079853pt;}
.x64_c00389{left:558.999453pt;}
.x6c_c00389{left:568.076653pt;}
.x40_c00389{left:569.071053pt;}
.x74_c00389{left:570.923453pt;}
.x27_c00389{left:578.588253pt;}
.x7e_c00389{left:585.430253pt;}
.x18_c00389{left:587.229853pt;}
.x8a_c00389{left:588.703853pt;}
.x7c_c00389{left:590.565053pt;}
.x28_c00389{left:596.835053pt;}
.x65_c00389{left:597.807453pt;}
.x4a_c00389{left:607.439053pt;}
.x29_c00389{left:608.671053pt;}
.x39_c00389{left:614.892653pt;}
.x3_c00389{left:617.207053pt;}
.x83_c00389{left:618.100253pt;}
.x44_c00389{left:627.331453pt;}
.x4_c00389{left:628.295053pt;}
.x4b_c00389{left:629.689853pt;}
.x50_c00389{left:631.546653pt;}
.x4c_c00389{left:634.626653pt;}
.x76_c00389{left:636.703453pt;}
.x54_c00389{left:637.821053pt;}
.x7f_c00389{left:640.122253pt;}
.x41_c00389{left:646.722253pt;}
.x3a_c00389{left:647.945453pt;}
.x45_c00389{left:656.864253pt;}
.x77_c00389{left:667.296653pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c7694699a5ab515a135e7a58.woff2')format("woff");}.ff1_c00390{font-family:ff1_c00390;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00390;src:url('chunks/assets/font_8932b6492688c5c1a5e606c8.woff2')format("woff");}.ff2_c00390{font-family:ff2_c00390;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00390;src:url('chunks/assets/font_c7b00bc01c93048bdc449630.woff2')format("woff");}.ff3_c00390{font-family:ff3_c00390;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00390;src:url('chunks/assets/font_dfba696297337d3d1093a823.woff2')format("woff");}.ff4_c00390{font-family:ff4_c00390;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00390;src:url('chunks/assets/font_699edafba96203449842329b.woff2')format("woff");}.ff5_c00390{font-family:ff5_c00390;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m94_c00390{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);}
.m91_c00390{transform:matrix(0.055556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.055556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.055556,0.000000,0.000000,0.250000,0,0);}
.mf_c00390{transform:matrix(0.057144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.057144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.057144,0.000000,0.000000,0.250000,0,0);}
.m3b_c00390{transform:matrix(0.061321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.061321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.061321,0.000000,0.000000,0.250000,0,0);}
.mba_c00390{transform:matrix(0.075063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075063,0.000000,0.000000,0.250000,0,0);}
.m3a_c00390{transform:matrix(0.075472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075472,0.000000,0.000000,0.250000,0,0);}
.m92_c00390{transform:matrix(0.076390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076390,0.000000,0.000000,0.250000,0,0);}
.m10_c00390{transform:matrix(0.085714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085714,0.000000,0.000000,0.250000,0,0);}
.maf_c00390{transform:matrix(0.098027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098027,0.000000,0.000000,0.250000,0,0);}
.mc_c00390{transform:matrix(0.098215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098215,0.000000,0.000000,0.250000,0,0);}
.m38_c00390{transform:matrix(0.099057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099057,0.000000,0.000000,0.250000,0,0);}
.m3c_c00390{transform:matrix(0.101416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101416,0.000000,0.000000,0.250000,0,0);}
.m3e_c00390{transform:matrix(0.103774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103774,0.000000,0.000000,0.250000,0,0);}
.mbc_c00390{transform:matrix(0.108093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108093,0.000000,0.000000,0.250000,0,0);}
.m56_c00390{transform:matrix(0.108991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108991,0.000000,0.000000,0.250000,0,0);}
.m3d_c00390{transform:matrix(0.113208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113208,0.000000,0.000000,0.250000,0,0);}
.m9f_c00390{transform:matrix(0.124967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124967,0.000000,0.000000,0.250000,0,0);}
.m45_c00390{transform:matrix(0.134216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134216,0.000000,0.000000,0.250000,0,0);}
.m3_c00390{transform:matrix(0.137880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137880,0.000000,0.000000,0.250000,0,0);}
.m61_c00390{transform:matrix(0.138636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138636,0.000000,0.000000,0.250000,0,0);}
.mb6_c00390{transform:matrix(0.145110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145110,0.000000,0.000000,0.250000,0,0);}
.md9_c00390{transform:matrix(0.147110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147110,0.000000,0.000000,0.250000,0,0);}
.mec_c00390{transform:matrix(0.147432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147432,0.000000,0.000000,0.250000,0,0);}
.m1d_c00390{transform:matrix(0.147582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147582,0.000000,0.000000,0.250000,0,0);}
.m39_c00390{transform:matrix(0.155660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155660,0.000000,0.000000,0.250000,0,0);}
.me1_c00390{transform:matrix(0.158537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158537,0.000000,0.000000,0.250000,0,0);}
.m9_c00390{transform:matrix(0.158929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158929,0.000000,0.000000,0.250000,0,0);}
.me_c00390{transform:matrix(0.160715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160715,0.000000,0.000000,0.250000,0,0);}
.m1b_c00390{transform:matrix(0.166647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166647,0.000000,0.000000,0.250000,0,0);}
.m9c_c00390{transform:matrix(0.171378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171378,0.000000,0.000000,0.250000,0,0);}
.m96_c00390{transform:matrix(0.173610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173610,0.000000,0.000000,0.250000,0,0);}
.m8_c00390{transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);}
.me0_c00390{transform:matrix(0.185002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185002,0.000000,0.000000,0.250000,0,0);}
.mdd_c00390{transform:matrix(0.192118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192118,0.000000,0.000000,0.250000,0,0);}
.mc6_c00390{transform:matrix(0.192172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192172,0.000000,0.000000,0.250000,0,0);}
.mb_c00390{transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);}
.m4_c00390{transform:matrix(0.194625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194625,0.000000,0.000000,0.250000,0,0);}
.ma0_c00390{transform:matrix(0.195237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195237,0.000000,0.000000,0.250000,0,0);}
.md_c00390{transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);}
.m8a_c00390{transform:matrix(0.197650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197650,0.000000,0.000000,0.250000,0,0);}
.m8d_c00390{transform:matrix(0.198818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198818,0.000000,0.000000,0.250000,0,0);}
.m90_c00390{transform:matrix(0.201058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201058,0.000000,0.000000,0.250000,0,0);}
.m93_c00390{transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);}
.m74_c00390{transform:matrix(0.207135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207135,0.000000,0.000000,0.250000,0,0);}
.m7_c00390{transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);}
.m6_c00390{transform:matrix(0.210314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210314,0.000000,0.000000,0.250000,0,0);}
.m8b_c00390{transform:matrix(0.212210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212210,0.000000,0.000000,0.250000,0,0);}
.mb1_c00390{transform:matrix(0.213107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213107,0.000000,0.000000,0.250000,0,0);}
.mc0_c00390{transform:matrix(0.213869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213869,0.000000,0.000000,0.250000,0,0);}
.ma_c00390{transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);}
.me7_c00390{transform:matrix(0.232430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232430,0.000000,0.000000,0.250000,0,0);}
.m46_c00390{transform:matrix(0.235262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235262,0.000000,0.000000,0.250000,0,0);}
.m27_c00390{transform:matrix(0.237345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237345,0.000000,0.000000,0.250000,0,0);}
.m95_c00390{transform:matrix(0.239582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239582,0.000000,0.000000,0.250000,0,0);}
.mbd_c00390{transform:matrix(0.242414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242414,0.000000,0.000000,0.250000,0,0);}
.m9a_c00390{transform:matrix(0.244949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244949,0.000000,0.000000,0.250000,0,0);}
.m35_c00390{transform:matrix(0.246523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246523,0.000000,0.000000,0.250000,0,0);}
.mc3_c00390{transform:matrix(0.246663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246663,0.000000,0.000000,0.250000,0,0);}
.m50_c00390{transform:matrix(0.247535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247535,0.000000,0.000000,0.250000,0,0);}
.meb_c00390{transform:matrix(0.248728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248728,0.000000,0.000000,0.250000,0,0);}
.m0_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);}
.m98_c00390{transform:matrix(0.250052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250052,0.000000,0.000000,0.250000,0,0);}
.me2_c00390{transform:matrix(0.252927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252927,0.000000,0.000000,0.250000,0,0);}
.me3_c00390{transform:matrix(0.257085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257085,0.000000,0.000000,0.250000,0,0);}
.md8_c00390{transform:matrix(0.260633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260633,0.000000,0.000000,0.250000,0,0);}
.ma9_c00390{transform:matrix(0.262507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262507,0.000000,0.000000,0.250000,0,0);}
.ma7_c00390{transform:matrix(0.263761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263761,0.000000,0.000000,0.250000,0,0);}
.m9b_c00390{transform:matrix(0.264661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264661,0.000000,0.000000,0.250000,0,0);}
.mc7_c00390{transform:matrix(0.268648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268648,0.000000,0.000000,0.250000,0,0);}
.m52_c00390{transform:matrix(0.269662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269662,0.000000,0.000000,0.250000,0,0);}
.m49_c00390{transform:matrix(0.271962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271962,0.000000,0.000000,0.250000,0,0);}
.mbb_c00390{transform:matrix(0.272041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272041,0.000000,0.000000,0.250000,0,0);}
.m80_c00390{transform:matrix(0.274059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274059,0.000000,0.000000,0.250000,0,0);}
.m78_c00390{transform:matrix(0.276186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276186,0.000000,0.000000,0.250000,0,0);}
.m18_c00390{transform:matrix(0.276899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276899,0.000000,0.000000,0.250000,0,0);}
.m22_c00390{transform:matrix(0.276985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276985,0.000000,0.000000,0.250000,0,0);}
.mb0_c00390{transform:matrix(0.277083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277083,0.000000,0.000000,0.250000,0,0);}
.mae_c00390{transform:matrix(0.279097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279097,0.000000,0.000000,0.250000,0,0);}
.ma4_c00390{transform:matrix(0.280032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280032,0.000000,0.000000,0.250000,0,0);}
.mda_c00390{transform:matrix(0.280158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280158,0.000000,0.000000,0.250000,0,0);}
.m77_c00390{transform:matrix(0.281193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281193,0.000000,0.000000,0.250000,0,0);}
.m32_c00390{transform:matrix(0.281768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281768,0.000000,0.000000,0.250000,0,0);}
.m7e_c00390{transform:matrix(0.282123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282123,0.000000,0.000000,0.250000,0,0);}
.ma5_c00390{transform:matrix(0.283578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283578,0.000000,0.000000,0.250000,0,0);}
.m5b_c00390{transform:matrix(0.285446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285446,0.000000,0.000000,0.250000,0,0);}
.m8f_c00390{transform:matrix(0.287037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287037,0.000000,0.000000,0.250000,0,0);}
.mc4_c00390{transform:matrix(0.287348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287348,0.000000,0.000000,0.250000,0,0);}
.m1f_c00390{transform:matrix(0.287494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287494,0.000000,0.000000,0.250000,0,0);}
.m64_c00390{transform:matrix(0.288604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288604,0.000000,0.000000,0.250000,0,0);}
.m1e_c00390{transform:matrix(0.289179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289179,0.000000,0.000000,0.250000,0,0);}
.m5d_c00390{transform:matrix(0.289375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289375,0.000000,0.000000,0.250000,0,0);}
.m41_c00390{transform:matrix(0.289981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289981,0.000000,0.000000,0.250000,0,0);}
.mb2_c00390{transform:matrix(0.291345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291345,0.000000,0.000000,0.250000,0,0);}
.mb7_c00390{transform:matrix(0.291374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291374,0.000000,0.000000,0.250000,0,0);}
.m28_c00390{transform:matrix(0.291416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291416,0.000000,0.000000,0.250000,0,0);}
.mcf_c00390{transform:matrix(0.291921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291921,0.000000,0.000000,0.250000,0,0);}
.m2f_c00390{transform:matrix(0.292049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292049,0.000000,0.000000,0.250000,0,0);}
.m14_c00390{transform:matrix(0.292573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292573,0.000000,0.000000,0.250000,0,0);}
.m16_c00390{transform:matrix(0.292847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292847,0.000000,0.000000,0.250000,0,0);}
.m37_c00390{transform:matrix(0.294543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294543,0.000000,0.000000,0.250000,0,0);}
.m88_c00390{transform:matrix(0.295239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295239,0.000000,0.000000,0.250000,0,0);}
.m4d_c00390{transform:matrix(0.296169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296169,0.000000,0.000000,0.250000,0,0);}
.m6f_c00390{transform:matrix(0.296662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296662,0.000000,0.000000,0.250000,0,0);}
.m68_c00390{transform:matrix(0.297149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297149,0.000000,0.000000,0.250000,0,0);}
.m23_c00390{transform:matrix(0.298323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298323,0.000000,0.000000,0.250000,0,0);}
.m6b_c00390{transform:matrix(0.299710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299710,0.000000,0.000000,0.250000,0,0);}
.mdb_c00390{transform:matrix(0.299712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299712,0.000000,0.000000,0.250000,0,0);}
.m12_c00390{transform:matrix(0.300006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300006,0.000000,0.000000,0.250000,0,0);}
.m2b_c00390{transform:matrix(0.300337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300337,0.000000,0.000000,0.250000,0,0);}
.m7f_c00390{transform:matrix(0.300413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300413,0.000000,0.000000,0.250000,0,0);}
.m1c_c00390{transform:matrix(0.300488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300488,0.000000,0.000000,0.250000,0,0);}
.m63_c00390{transform:matrix(0.303021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303021,0.000000,0.000000,0.250000,0,0);}
.mb4_c00390{transform:matrix(0.304102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304102,0.000000,0.000000,0.250000,0,0);}
.m4e_c00390{transform:matrix(0.304878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304878,0.000000,0.000000,0.250000,0,0);}
.m62_c00390{transform:matrix(0.306526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306526,0.000000,0.000000,0.250000,0,0);}
.mee_c00390{transform:matrix(0.306648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306648,0.000000,0.000000,0.250000,0,0);}
.m57_c00390{transform:matrix(0.307421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307421,0.000000,0.000000,0.250000,0,0);}
.m4f_c00390{transform:matrix(0.309255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309255,0.000000,0.000000,0.250000,0,0);}
.m48_c00390{transform:matrix(0.309424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309424,0.000000,0.000000,0.250000,0,0);}
.ma3_c00390{transform:matrix(0.309671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309671,0.000000,0.000000,0.250000,0,0);}
.m55_c00390{transform:matrix(0.310104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310104,0.000000,0.000000,0.250000,0,0);}
.m33_c00390{transform:matrix(0.312544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312544,0.000000,0.000000,0.250000,0,0);}
.m30_c00390{transform:matrix(0.313349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313349,0.000000,0.000000,0.250000,0,0);}
.m81_c00390{transform:matrix(0.313587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313587,0.000000,0.000000,0.250000,0,0);}
.m15_c00390{transform:matrix(0.313714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313714,0.000000,0.000000,0.250000,0,0);}
.m13_c00390{transform:matrix(0.314844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314844,0.000000,0.000000,0.250000,0,0);}
.mb8_c00390{transform:matrix(0.314950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314950,0.000000,0.000000,0.250000,0,0);}
.m76_c00390{transform:matrix(0.314984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314984,0.000000,0.000000,0.250000,0,0);}
.ma6_c00390{transform:matrix(0.315214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315214,0.000000,0.000000,0.250000,0,0);}
.m42_c00390{transform:matrix(0.315262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315262,0.000000,0.000000,0.250000,0,0);}
.maa_c00390{transform:matrix(0.315919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315919,0.000000,0.000000,0.250000,0,0);}
.m1_c00390{transform:matrix(0.316703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316703,0.000000,0.000000,0.250000,0,0);}
.m4b_c00390{transform:matrix(0.316758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316758,0.000000,0.000000,0.250000,0,0);}
.me4_c00390{transform:matrix(0.317185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317185,0.000000,0.000000,0.250000,0,0);}
.m6c_c00390{transform:matrix(0.317188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317188,0.000000,0.000000,0.250000,0,0);}
.m25_c00390{transform:matrix(0.317797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317797,0.000000,0.000000,0.250000,0,0);}
.m36_c00390{transform:matrix(0.318592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318592,0.000000,0.000000,0.250000,0,0);}
.m2d_c00390{transform:matrix(0.319666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319666,0.000000,0.000000,0.250000,0,0);}
.m72_c00390{transform:matrix(0.320086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320086,0.000000,0.000000,0.250000,0,0);}
.me9_c00390{transform:matrix(0.320486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320486,0.000000,0.000000,0.250000,0,0);}
.mb9_c00390{transform:matrix(0.320564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320564,0.000000,0.000000,0.250000,0,0);}
.m20_c00390{transform:matrix(0.320958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320958,0.000000,0.000000,0.250000,0,0);}
.m29_c00390{transform:matrix(0.322340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322340,0.000000,0.000000,0.250000,0,0);}
.mc9_c00390{transform:matrix(0.322382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322382,0.000000,0.000000,0.250000,0,0);}
.med_c00390{transform:matrix(0.322753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322753,0.000000,0.000000,0.250000,0,0);}
.m6a_c00390{transform:matrix(0.323800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323800,0.000000,0.000000,0.250000,0,0);}
.m40_c00390{transform:matrix(0.325731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325731,0.000000,0.000000,0.250000,0,0);}
.m11_c00390{transform:matrix(0.325747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325747,0.000000,0.000000,0.250000,0,0);}
.m58_c00390{transform:matrix(0.326420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326420,0.000000,0.000000,0.250000,0,0);}
.m7a_c00390{transform:matrix(0.326953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326953,0.000000,0.000000,0.250000,0,0);}
.ma2_c00390{transform:matrix(0.327118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327118,0.000000,0.000000,0.250000,0,0);}
.m4c_c00390{transform:matrix(0.327160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327160,0.000000,0.000000,0.250000,0,0);}
.m70_c00390{transform:matrix(0.328847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328847,0.000000,0.000000,0.250000,0,0);}
.mc2_c00390{transform:matrix(0.330866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330866,0.000000,0.000000,0.250000,0,0);}
.m1a_c00390{transform:matrix(0.331482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331482,0.000000,0.000000,0.250000,0,0);}
.m75_c00390{transform:matrix(0.331546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331546,0.000000,0.000000,0.250000,0,0);}
.mcc_c00390{transform:matrix(0.331987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331987,0.000000,0.000000,0.250000,0,0);}
.m4a_c00390{transform:matrix(0.332355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332355,0.000000,0.000000,0.250000,0,0);}
.m83_c00390{transform:matrix(0.332579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332579,0.000000,0.000000,0.250000,0,0);}
.m99_c00390{transform:matrix(0.332960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332960,0.000000,0.000000,0.250000,0,0);}
.m5c_c00390{transform:matrix(0.333276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333276,0.000000,0.000000,0.250000,0,0);}
.m47_c00390{transform:matrix(0.333818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333818,0.000000,0.000000,0.250000,0,0);}
.mcd_c00390{transform:matrix(0.334363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334363,0.000000,0.000000,0.250000,0,0);}
.m5f_c00390{transform:matrix(0.334768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334768,0.000000,0.000000,0.250000,0,0);}
.m79_c00390{transform:matrix(0.334835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334835,0.000000,0.000000,0.250000,0,0);}
.mab_c00390{transform:matrix(0.334915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334915,0.000000,0.000000,0.250000,0,0);}
.m6e_c00390{transform:matrix(0.335008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335008,0.000000,0.000000,0.250000,0,0);}
.mac_c00390{transform:matrix(0.335245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335245,0.000000,0.000000,0.250000,0,0);}
.m73_c00390{transform:matrix(0.336533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336533,0.000000,0.000000,0.250000,0,0);}
.m8e_c00390{transform:matrix(0.336959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336959,0.000000,0.000000,0.250000,0,0);}
.mea_c00390{transform:matrix(0.337104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337104,0.000000,0.000000,0.250000,0,0);}
.m19_c00390{transform:matrix(0.338251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338251,0.000000,0.000000,0.250000,0,0);}
.md0_c00390{transform:matrix(0.338290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338290,0.000000,0.000000,0.250000,0,0);}
.m60_c00390{transform:matrix(0.338627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338627,0.000000,0.000000,0.250000,0,0);}
.m3f_c00390{transform:matrix(0.339480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339480,0.000000,0.000000,0.250000,0,0);}
.m5e_c00390{transform:matrix(0.339832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339832,0.000000,0.000000,0.250000,0,0);}
.mce_c00390{transform:matrix(0.340404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340404,0.000000,0.000000,0.250000,0,0);}
.m89_c00390{transform:matrix(0.340560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340560,0.000000,0.000000,0.250000,0,0);}
.m34_c00390{transform:matrix(0.341443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341443,0.000000,0.000000,0.250000,0,0);}
.m54_c00390{transform:matrix(0.343942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343942,0.000000,0.000000,0.250000,0,0);}
.m85_c00390{transform:matrix(0.344515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344515,0.000000,0.000000,0.250000,0,0);}
.m51_c00390{transform:matrix(0.344854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344854,0.000000,0.000000,0.250000,0,0);}
.m53_c00390{transform:matrix(0.345998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345998,0.000000,0.000000,0.250000,0,0);}
.mb3_c00390{transform:matrix(0.347556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347556,0.000000,0.000000,0.250000,0,0);}
.m9d_c00390{transform:matrix(0.348392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348392,0.000000,0.000000,0.250000,0,0);}
.m6d_c00390{transform:matrix(0.351012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351012,0.000000,0.000000,0.250000,0,0);}
.md7_c00390{transform:matrix(0.352063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352063,0.000000,0.000000,0.250000,0,0);}
.mcb_c00390{transform:matrix(0.352887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352887,0.000000,0.000000,0.250000,0,0);}
.m65_c00390{transform:matrix(0.353328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353328,0.000000,0.000000,0.250000,0,0);}
.me5_c00390{transform:matrix(0.353531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353531,0.000000,0.000000,0.250000,0,0);}
.mde_c00390{transform:matrix(0.354981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354981,0.000000,0.000000,0.250000,0,0);}
.mc1_c00390{transform:matrix(0.355343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355343,0.000000,0.000000,0.250000,0,0);}
.ma8_c00390{transform:matrix(0.355586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355586,0.000000,0.000000,0.250000,0,0);}
.mdc_c00390{transform:matrix(0.355808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355808,0.000000,0.000000,0.250000,0,0);}
.md6_c00390{transform:matrix(0.356517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356517,0.000000,0.000000,0.250000,0,0);}
.m2a_c00390{transform:matrix(0.357594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357594,0.000000,0.000000,0.250000,0,0);}
.mef_c00390{transform:matrix(0.358321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358321,0.000000,0.000000,0.250000,0,0);}
.md3_c00390{transform:matrix(0.358373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358373,0.000000,0.000000,0.250000,0,0);}
.me6_c00390{transform:matrix(0.358546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358546,0.000000,0.000000,0.250000,0,0);}
.m84_c00390{transform:matrix(0.358986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358986,0.000000,0.000000,0.250000,0,0);}
.m69_c00390{transform:matrix(0.359203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359203,0.000000,0.000000,0.250000,0,0);}
.mdf_c00390{transform:matrix(0.359947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359947,0.000000,0.000000,0.250000,0,0);}
.m2_c00390{transform:matrix(0.360614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360614,0.000000,0.000000,0.250000,0,0);}
.m2e_c00390{transform:matrix(0.361113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361113,0.000000,0.000000,0.250000,0,0);}
.m44_c00390{transform:matrix(0.363031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363031,0.000000,0.000000,0.250000,0,0);}
.m59_c00390{transform:matrix(0.364024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364024,0.000000,0.000000,0.250000,0,0);}
.m43_c00390{transform:matrix(0.365791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365791,0.000000,0.000000,0.250000,0,0);}
.m5a_c00390{transform:matrix(0.365980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365980,0.000000,0.000000,0.250000,0,0);}
.m17_c00390{transform:matrix(0.367710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367710,0.000000,0.000000,0.250000,0,0);}
.m7d_c00390{transform:matrix(0.368123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368123,0.000000,0.000000,0.250000,0,0);}
.m7b_c00390{transform:matrix(0.369981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369981,0.000000,0.000000,0.250000,0,0);}
.m7c_c00390{transform:matrix(0.370976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370976,0.000000,0.000000,0.250000,0,0);}
.m97_c00390{transform:matrix(0.372757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372757,0.000000,0.000000,0.250000,0,0);}
.md2_c00390{transform:matrix(0.375373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375373,0.000000,0.000000,0.250000,0,0);}
.mad_c00390{transform:matrix(0.376241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376241,0.000000,0.000000,0.250000,0,0);}
.ma1_c00390{transform:matrix(0.376262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376262,0.000000,0.000000,0.250000,0,0);}
.mbe_c00390{transform:matrix(0.377270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377270,0.000000,0.000000,0.250000,0,0);}
.m2c_c00390{transform:matrix(0.377554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377554,0.000000,0.000000,0.250000,0,0);}
.m66_c00390{transform:matrix(0.380173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380173,0.000000,0.000000,0.250000,0,0);}
.mc5_c00390{transform:matrix(0.384178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384178,0.000000,0.000000,0.250000,0,0);}
.m86_c00390{transform:matrix(0.384990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384990,0.000000,0.000000,0.250000,0,0);}
.m21_c00390{transform:matrix(0.385766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385766,0.000000,0.000000,0.250000,0,0);}
.m67_c00390{transform:matrix(0.386185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386185,0.000000,0.000000,0.250000,0,0);}
.md5_c00390{transform:matrix(0.388183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388183,0.000000,0.000000,0.250000,0,0);}
.mbf_c00390{transform:matrix(0.389526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389526,0.000000,0.000000,0.250000,0,0);}
.mca_c00390{transform:matrix(0.390744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390744,0.000000,0.000000,0.250000,0,0);}
.md1_c00390{transform:matrix(0.392195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392195,0.000000,0.000000,0.250000,0,0);}
.m82_c00390{transform:matrix(0.392594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392594,0.000000,0.000000,0.250000,0,0);}
.m5_c00390{transform:matrix(0.394281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394281,0.000000,0.000000,0.250000,0,0);}
.mb5_c00390{transform:matrix(0.397365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397365,0.000000,0.000000,0.250000,0,0);}
.m9e_c00390{transform:matrix(0.397425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397425,0.000000,0.000000,0.250000,0,0);}
.m71_c00390{transform:matrix(0.397481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397481,0.000000,0.000000,0.250000,0,0);}
.mc8_c00390{transform:matrix(0.398192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398192,0.000000,0.000000,0.250000,0,0);}
.md4_c00390{transform:matrix(0.401829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401829,0.000000,0.000000,0.250000,0,0);}
.m24_c00390{transform:matrix(0.410673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410673,0.000000,0.000000,0.250000,0,0);}
.m26_c00390{transform:matrix(0.416214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416214,0.000000,0.000000,0.250000,0,0);}
.m8c_c00390{transform:matrix(0.419170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419170,0.000000,0.000000,0.250000,0,0);}
.m31_c00390{transform:matrix(0.423922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423922,0.000000,0.000000,0.250000,0,0);}
.m87_c00390{transform:matrix(0.443527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443527,0.000000,0.000000,0.250000,0,0);}
.me8_c00390{transform:matrix(0.492278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492278,0.000000,0.000000,0.250000,0,0);}
.v0_c00390{vertical-align:0.000000px;}
.v1_c00390{vertical-align:38.491200px;}
.ls18_c00390{letter-spacing:-3.069990px;}
.ls9_c00390{letter-spacing:-2.467080px;}
.ls8_c00390{letter-spacing:-2.453227px;}
.ls4_c00390{letter-spacing:-2.233262px;}
.ls16_c00390{letter-spacing:-1.649340px;}
.lsf_c00390{letter-spacing:-1.607767px;}
.ls13_c00390{letter-spacing:-0.513217px;}
.lsb_c00390{letter-spacing:-0.462609px;}
.ls5_c00390{letter-spacing:0.000000px;}
.ls12_c00390{letter-spacing:0.560738px;}
.ls3_c00390{letter-spacing:1.275678px;}
.ls1_c00390{letter-spacing:1.521001px;}
.ls2_c00390{letter-spacing:1.689222px;}
.lsd_c00390{letter-spacing:2.172858px;}
.ls0_c00390{letter-spacing:2.184560px;}
.ls7_c00390{letter-spacing:2.217600px;}
.ls19_c00390{letter-spacing:2.642476px;}
.ls15_c00390{letter-spacing:3.189195px;}
.lsc_c00390{letter-spacing:3.286810px;}
.ls6_c00390{letter-spacing:3.504610px;}
.ls14_c00390{letter-spacing:3.583967px;}
.ls11_c00390{letter-spacing:3.653110px;}
.ls10_c00390{letter-spacing:4.385700px;}
.lsa_c00390{letter-spacing:49.896198px;}
.ls17_c00390{letter-spacing:51.321798px;}
.lse_c00390{letter-spacing:75.556800px;}
.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;}
}
.ws9_c00390{word-spacing:-20.870832px;}
.wsa_c00390{word-spacing:-20.712245px;}
.wse_c00390{word-spacing:-19.212271px;}
.ws8_c00390{word-spacing:-19.044050px;}
.ws4_c00390{word-spacing:-17.523050px;}
.ws3_c00390{word-spacing:-3.296045px;}
.wsc_c00390{word-spacing:-3.294274px;}
.ws0_c00390{word-spacing:-3.154091px;}
.wsd_c00390{word-spacing:-1.682335px;}
.ws6_c00390{word-spacing:-1.613035px;}
.wsf_c00390{word-spacing:-1.612045px;}
.ws10_c00390{word-spacing:-0.280297px;}
.ws11_c00390{word-spacing:0.000000px;}
.wsb_c00390{word-spacing:1.121543px;}
.ws1_c00390{word-spacing:4.275695px;}
.ws2_c00390{word-spacing:6.378267px;}
.ws7_c00390{word-spacing:6.379049px;}
.ws5_c00390{word-spacing:36.125532px;}
._1_c00390{margin-left:-13.384800px;}
._2_c00390{margin-left:-8.636760px;}
._4_c00390{margin-left:-7.561224px;}
._0_c00390{margin-left:-3.922915px;}
._21_c00390{width:1.051457px;}
._c_c00390{width:5.537961px;}
._11_c00390{width:6.799023px;}
._10_c00390{width:8.691964px;}
._8_c00390{width:10.513701px;}
._e_c00390{width:12.125371px;}
._1a_c00390{width:13.520325px;}
._17_c00390{width:14.858789px;}
._d_c00390{width:15.911181px;}
._1e_c00390{width:19.346146px;}
._1d_c00390{width:20.747364px;}
._7_c00390{width:22.289366px;}
._6_c00390{width:24.321869px;}
._19_c00390{width:26.004869px;}
._a_c00390{width:27.405917px;}
._b_c00390{width:29.677818px;}
._20_c00390{width:31.205060px;}
._22_c00390{width:33.093390px;}
._12_c00390{width:34.323173px;}
._5_c00390{width:35.606797px;}
._f_c00390{width:36.983095px;}
._9_c00390{width:38.479975px;}
._18_c00390{width:41.283655px;}
._16_c00390{width:42.451101px;}
._1f_c00390{width:45.986567px;}
._15_c00390{width:48.327755px;}
._1b_c00390{width:49.538285px;}
._1c_c00390{width:50.955740px;}
._14_c00390{width:70.140578px;}
._13_c00390{width:98.078409px;}
._3_c00390{width:112.708728px;}
.fc0_c00390{color:transparent;}
.fs12_c00390{font-size:11.286000px;}
.fsd_c00390{font-size:22.572000px;}
.fs3_c00390{font-size:44.352000px;}
.fsa_c00390{font-size:45.936198px;}
.fsf_c00390{font-size:47.124000px;}
.fs5_c00390{font-size:49.896198px;}
.fs13_c00390{font-size:50.688000px;}
.fs10_c00390{font-size:51.321798px;}
.fs11_c00390{font-size:60.192000px;}
.fs1_c00390{font-size:60.984000px;}
.fs7_c00390{font-size:65.736198px;}
.fs14_c00390{font-size:68.112198px;}
.fs2_c00390{font-size:70.092198px;}
.fs4_c00390{font-size:70.488000px;}
.fse_c00390{font-size:70.884000px;}
.fs6_c00390{font-size:73.062198px;}
.fs8_c00390{font-size:73.260000px;}
.fs9_c00390{font-size:75.556800px;}
.fs0_c00390{font-size:77.814000px;}
.fsc_c00390{font-size:85.536198px;}
.fsb_c00390{font-size:87.714000px;}
.y0_c00390{bottom:0.000000px;}
.y22_c00390{bottom:61.920585px;}
.y1_c00390{bottom:76.500000px;}
.y21_c00390{bottom:151.381935px;}
.y20_c00390{bottom:182.032335px;}
.y1f_c00390{bottom:247.248585px;}
.y1e_c00390{bottom:280.042335px;}
.y1d_c00390{bottom:312.831135px;}
.y1c_c00390{bottom:340.625385px;}
.y1b_c00390{bottom:345.619935px;}
.y1a_c00390{bottom:378.052335px;}
.y19_c00390{bottom:393.372585px;}
.y18_c00390{bottom:410.479785px;}
.y17_c00390{bottom:443.273535px;}
.y16_c00390{bottom:452.183535px;}
.y15_c00390{bottom:507.420585px;}
.y14_c00390{bottom:539.857935px;}
.y13_c00390{bottom:573.354585px;}
.y12_c00390{bottom:589.041135px;}
.y11_c00390{bottom:605.786985px;}
.y10_c00390{bottom:638.219385px;}
.yf_c00390{bottom:670.300335px;}
.ye_c00390{bottom:702.732735px;}
.yd_c00390{bottom:736.585785px;}
.yc_c00390{bottom:736.947135px;}
.yb_c00390{bottom:768.310335px;}
.y9_c00390{bottom:769.018185px;}
.ya_c00390{bottom:769.374585px;}
.y8_c00390{bottom:773.651385px;}
.y7_c00390{bottom:802.163385px;}
.y6_c00390{bottom:867.384585px;}
.y5_c00390{bottom:899.460585px;}
.y4_c00390{bottom:932.967135px;}
.y2_c00390{bottom:1080.511785px;}
.y3_c00390{bottom:1082.293785px;}
.h14_c00390{height:11.770945px;}
.hf_c00390{height:23.541891px;}
.h7_c00390{height:33.230868px;}
.h12_c00390{height:34.180317px;}
.h5_c00390{height:46.257750px;}
.hc_c00390{height:47.910019px;}
.h11_c00390{height:49.148859px;}
.hb_c00390{height:50.320829px;}
.h15_c00390{height:52.866000px;}
.h13_c00390{height:62.778375px;}
.h3_c00390{height:63.604406px;}
.h9_c00390{height:64.516483px;}
.h4_c00390{height:68.791659px;}
.h6_c00390{height:69.180117px;}
.h10_c00390{height:69.568770px;}
.h16_c00390{height:71.038894px;}
.h8_c00390{height:71.706552px;}
.ha_c00390{height:71.900684px;}
.he_c00390{height:83.949101px;}
.hd_c00390{height:86.086494px;}
.h2_c00390{height:114.861386px;}
.h1_c00390{height:1110.000000px;}
.h0_c00390{height:1263.000000px;}
.w1_c00390{width:775.500000px;}
.w0_c00390{width:892.500000px;}
.x0_c00390{left:0.000000px;}
.x1_c00390{left:58.500000px;}
.x42_c00390{left:96.338535px;}
.x4_c00390{left:99.090735px;}
.x49_c00390{left:100.298535px;}
.x64_c00390{left:101.699385px;}
.x43_c00390{left:120.454935px;}
.x7f_c00390{left:122.533935px;}
.x87_c00390{left:127.216635px;}
.x1c_c00390{left:131.315235px;}
.x80_c00390{left:132.537885px;}
.x44_c00390{left:134.354535px;}
.x52_c00390{left:143.442735px;}
.x88_c00390{left:144.818835px;}
.x45_c00390{left:146.823585px;}
.x2d_c00390{left:153.134835px;}
.x5d_c00390{left:154.436685px;}
.x8c_c00390{left:155.629635px;}
.x81_c00390{left:157.065135px;}
.x46_c00390{left:158.233335px;}
.x5_c00390{left:163.569435px;}
.x5b_c00390{left:164.787135px;}
.x6a_c00390{left:165.806835px;}
.x6f_c00390{left:167.697735px;}
.x2c_c00390{left:174.805935px;}
.x82_c00390{left:177.191835px;}
.x5e_c00390{left:185.230635px;}
.x6_c00390{left:186.903735px;}
.x5f_c00390{left:197.897685px;}
.x73_c00390{left:198.932235px;}
.x47_c00390{left:200.125185px;}
.x4a_c00390{left:203.119935px;}
.x1d_c00390{left:209.322285px;}
.x8d_c00390{left:210.931035px;}
.x4b_c00390{left:218.098635px;}
.x7_c00390{left:219.430185px;}
.x65_c00390{left:221.118135px;}
.x2e_c00390{left:230.424135px;}
.x8_c00390{left:231.810135px;}
.x91_c00390{left:233.854485px;}
.x1e_c00390{left:241.749735px;}
.x89_c00390{left:243.407985px;}
.x8e_c00390{left:244.937535px;}
.x4c_c00390{left:252.793185px;}
.x74_c00390{left:254.203935px;}
.x4d_c00390{left:263.014935px;}
.x9_c00390{left:264.094035px;}
.x92_c00390{left:266.168085px;}
.x1f_c00390{left:274.741485px;}
.x75_c00390{left:276.013635px;}
.x8a_c00390{left:277.053135px;}
.x93_c00390{left:278.142135px;}
.xa_c00390{left:284.720685px;}
.x53_c00390{left:286.339335px;}
.x48_c00390{left:296.991735px;}
.x8f_c00390{left:298.823235px;}
.x70_c00390{left:300.793335px;}
.x20_c00390{left:307.525335px;}
.x66_c00390{left:309.515235px;}
.x79_c00390{left:312.039735px;}
.xb_c00390{left:318.885585px;}
.x60_c00390{left:320.528985px;}
.x21_c00390{left:330.572535px;}
.x7a_c00390{left:333.215835px;}
.x39_c00390{left:334.384035px;}
.x2f_c00390{left:340.729935px;}
.x59_c00390{left:342.026835px;}
.x22_c00390{left:352.802985px;}
.x94_c00390{left:354.451335px;}
.x83_c00390{left:357.144135px;}
.xc_c00390{left:363.688035px;}
.x54_c00390{left:365.103735px;}
.x30_c00390{left:375.023535px;}
.x67_c00390{left:376.152135px;}
.x7b_c00390{left:380.973435px;}
.x23_c00390{left:385.225485px;}
.x68_c00390{left:386.284785px;}
.x95_c00390{left:387.522285px;}
.xd_c00390{left:397.194585px;}
.x3c_c00390{left:400.016085px;}
.x3a_c00390{left:403.956285px;}
.x4e_c00390{left:408.624135px;}
.x7c_c00390{left:409.653735px;}
.xe_c00390{left:413.752335px;}
.x8b_c00390{left:415.900635px;}
.x24_c00390{left:419.632935px;}
.x55_c00390{left:428.731035px;}
.xf_c00390{left:430.522935px;}
.x61_c00390{left:441.299085px;}
.x71_c00390{left:442.402935px;}
.x3b_c00390{left:444.140385px;}
.x10_c00390{left:451.906935px;}
.x3d_c00390{left:454.901685px;}
.x56_c00390{left:462.232635px;}
.x11_c00390{left:463.311735px;}
.x7d_c00390{left:464.549235px;}
.x25_c00390{left:474.201735px;}
.x26_c00390{left:485.557035px;}
.x96_c00390{left:486.586635px;}
.x3e_c00390{left:495.887685px;}
.x12_c00390{left:497.169735px;}
.x63_c00390{left:507.718185px;}
.x31_c00390{left:518.494335px;}
.x6b_c00390{left:525.325335px;}
.x27_c00390{left:529.537785px;}
.x6c_c00390{left:531.027735px;}
.x5c_c00390{left:532.552335px;}
.x28_c00390{left:539.215035px;}
.x32_c00390{left:540.893085px;}
.x3f_c00390{left:542.625585px;}
.x33_c00390{left:547.778535px;}
.x13_c00390{left:551.520735px;}
.x84_c00390{left:552.659235px;}
.x85_c00390{left:559.851585px;}
.x57_c00390{left:562.544385px;}
.x4f_c00390{left:563.569035px;}
.x6d_c00390{left:568.093335px;}
.x69_c00390{left:574.117485px;}
.x34_c00390{left:575.716335px;}
.x35_c00390{left:583.289835px;}
.x7e_c00390{left:585.655935px;}
.x58_c00390{left:586.853835px;}
.x40_c00390{left:595.674735px;}
.x29_c00390{left:607.079535px;}
.x14_c00390{left:617.984385px;}
.x41_c00390{left:627.567585px;}
.x15_c00390{left:630.101985px;}
.x2a_c00390{left:639.907935px;}
.x76_c00390{left:641.670135px;}
.x16_c00390{left:651.490935px;}
.x90_c00390{left:653.797635px;}
.x36_c00390{left:661.994835px;}
.x72_c00390{left:663.034335px;}
.x17_c00390{left:673.587735px;}
.x6e_c00390{left:683.165985px;}
.x18_c00390{left:684.987585px;}
.x3_c00390{left:686.873535px;}
.x2b_c00390{left:690.734535px;}
.x5a_c00390{left:694.204485px;}
.x37_c00390{left:695.456835px;}
.x2_c00390{left:699.010935px;}
.x97_c00390{left:703.099635px;}
.x50_c00390{left:705.643935px;}
.x77_c00390{left:707.104185px;}
.x19_c00390{left:708.866385px;}
.x78_c00390{left:712.717485px;}
.x38_c00390{left:717.345735px;}
.x86_c00390{left:719.271285px;}
.x1a_c00390{left:728.131785px;}
.x51_c00390{left:739.303935px;}
.x1b_c00390{left:751.065135px;}
.x62_c00390{left:753.134235px;}
@media print{
.v0_c00390{vertical-align:0.000000pt;}
.v1_c00390{vertical-align:34.214400pt;}
.ls18_c00390{letter-spacing:-2.728880pt;}
.ls9_c00390{letter-spacing:-2.192960pt;}
.ls8_c00390{letter-spacing:-2.180646pt;}
.ls4_c00390{letter-spacing:-1.985122pt;}
.ls16_c00390{letter-spacing:-1.466080pt;}
.lsf_c00390{letter-spacing:-1.429126pt;}
.ls13_c00390{letter-spacing:-0.456193pt;}
.lsb_c00390{letter-spacing:-0.411208pt;}
.ls5_c00390{letter-spacing:0.000000pt;}
.ls12_c00390{letter-spacing:0.498433pt;}
.ls3_c00390{letter-spacing:1.133936pt;}
.ls1_c00390{letter-spacing:1.352001pt;}
.ls2_c00390{letter-spacing:1.501531pt;}
.lsd_c00390{letter-spacing:1.931429pt;}
.ls0_c00390{letter-spacing:1.941831pt;}
.ls7_c00390{letter-spacing:1.971200pt;}
.ls19_c00390{letter-spacing:2.348867pt;}
.ls15_c00390{letter-spacing:2.834840pt;}
.lsc_c00390{letter-spacing:2.921609pt;}
.ls6_c00390{letter-spacing:3.115209pt;}
.ls14_c00390{letter-spacing:3.185748pt;}
.ls11_c00390{letter-spacing:3.247209pt;}
.ls10_c00390{letter-spacing:3.898400pt;}
.lsa_c00390{letter-spacing:44.352176pt;}
.ls17_c00390{letter-spacing:45.619376pt;}
.lse_c00390{letter-spacing:67.161600pt;}
.ws9_c00390{word-spacing:-18.551851pt;}
.wsa_c00390{word-spacing:-18.410884pt;}
.wse_c00390{word-spacing:-17.077575pt;}
.ws8_c00390{word-spacing:-16.928045pt;}
.ws4_c00390{word-spacing:-15.576044pt;}
.ws3_c00390{word-spacing:-2.929818pt;}
.wsc_c00390{word-spacing:-2.928244pt;}
.ws0_c00390{word-spacing:-2.803636pt;}
.wsd_c00390{word-spacing:-1.495408pt;}
.ws6_c00390{word-spacing:-1.433808pt;}
.wsf_c00390{word-spacing:-1.432928pt;}
.ws10_c00390{word-spacing:-0.249152pt;}
.ws11_c00390{word-spacing:0.000000pt;}
.wsb_c00390{word-spacing:0.996928pt;}
.ws1_c00390{word-spacing:3.800617pt;}
.ws2_c00390{word-spacing:5.669571pt;}
.ws7_c00390{word-spacing:5.670265pt;}
.ws5_c00390{word-spacing:32.111584pt;}
._1_c00390{margin-left:-11.897600pt;}
._2_c00390{margin-left:-7.677120pt;}
._4_c00390{margin-left:-6.721088pt;}
._0_c00390{margin-left:-3.487035pt;}
._21_c00390{width:0.934628pt;}
._c_c00390{width:4.922632pt;}
._11_c00390{width:6.043576pt;}
._10_c00390{width:7.726190pt;}
._8_c00390{width:9.345512pt;}
._e_c00390{width:10.778108pt;}
._1a_c00390{width:12.018067pt;}
._17_c00390{width:13.207813pt;}
._d_c00390{width:14.143272pt;}
._1e_c00390{width:17.196574pt;}
._1d_c00390{width:18.442101pt;}
._7_c00390{width:19.812770pt;}
._6_c00390{width:21.619439pt;}
._19_c00390{width:23.115439pt;}
._a_c00390{width:24.360815pt;}
._b_c00390{width:26.380283pt;}
._20_c00390{width:27.737831pt;}
._22_c00390{width:29.416347pt;}
._12_c00390{width:30.509487pt;}
._5_c00390{width:31.650486pt;}
._f_c00390{width:32.873862pt;}
._9_c00390{width:34.204422pt;}
._18_c00390{width:36.696582pt;}
._16_c00390{width:37.734312pt;}
._1f_c00390{width:40.876948pt;}
._15_c00390{width:42.958004pt;}
._1b_c00390{width:44.034032pt;}
._1c_c00390{width:45.293991pt;}
._14_c00390{width:62.347180pt;}
._13_c00390{width:87.180808pt;}
._3_c00390{width:100.185536pt;}
.fs12_c00390{font-size:10.032000pt;}
.fsd_c00390{font-size:20.064000pt;}
.fs3_c00390{font-size:39.424000pt;}
.fsa_c00390{font-size:40.832176pt;}
.fsf_c00390{font-size:41.888000pt;}
.fs5_c00390{font-size:44.352176pt;}
.fs13_c00390{font-size:45.056000pt;}
.fs10_c00390{font-size:45.619376pt;}
.fs11_c00390{font-size:53.504000pt;}
.fs1_c00390{font-size:54.208000pt;}
.fs7_c00390{font-size:58.432176pt;}
.fs14_c00390{font-size:60.544176pt;}
.fs2_c00390{font-size:62.304176pt;}
.fs4_c00390{font-size:62.656000pt;}
.fse_c00390{font-size:63.008000pt;}
.fs6_c00390{font-size:64.944176pt;}
.fs8_c00390{font-size:65.120000pt;}
.fs9_c00390{font-size:67.161600pt;}
.fs0_c00390{font-size:69.168000pt;}
.fsc_c00390{font-size:76.032176pt;}
.fsb_c00390{font-size:77.968000pt;}
.y0_c00390{bottom:0.000000pt;}
.y22_c00390{bottom:55.040520pt;}
.y1_c00390{bottom:68.000000pt;}
.y21_c00390{bottom:134.561720pt;}
.y20_c00390{bottom:161.806520pt;}
.y1f_c00390{bottom:219.776520pt;}
.y1e_c00390{bottom:248.926520pt;}
.y1d_c00390{bottom:278.072120pt;}
.y1c_c00390{bottom:302.778120pt;}
.y1b_c00390{bottom:307.217720pt;}
.y1a_c00390{bottom:336.046520pt;}
.y19_c00390{bottom:349.664520pt;}
.y18_c00390{bottom:364.870920pt;}
.y17_c00390{bottom:394.020920pt;}
.y16_c00390{bottom:401.940920pt;}
.y15_c00390{bottom:451.040520pt;}
.y14_c00390{bottom:479.873720pt;}
.y13_c00390{bottom:509.648520pt;}
.y12_c00390{bottom:523.592120pt;}
.y11_c00390{bottom:538.477320pt;}
.y10_c00390{bottom:567.306120pt;}
.yf_c00390{bottom:595.822520pt;}
.ye_c00390{bottom:624.651320pt;}
.yd_c00390{bottom:654.742920pt;}
.yc_c00390{bottom:655.064120pt;}
.yb_c00390{bottom:682.942520pt;}
.y9_c00390{bottom:683.571720pt;}
.ya_c00390{bottom:683.888520pt;}
.y8_c00390{bottom:687.690120pt;}
.y7_c00390{bottom:713.034120pt;}
.y6_c00390{bottom:771.008520pt;}
.y5_c00390{bottom:799.520520pt;}
.y4_c00390{bottom:829.304120pt;}
.y2_c00390{bottom:960.454920pt;}
.y3_c00390{bottom:962.038920pt;}
.h14_c00390{height:10.463063pt;}
.hf_c00390{height:20.926125pt;}
.h7_c00390{height:29.538549pt;}
.h12_c00390{height:30.382504pt;}
.h5_c00390{height:41.118000pt;}
.hc_c00390{height:42.586684pt;}
.h11_c00390{height:43.687875pt;}
.hb_c00390{height:44.729626pt;}
.h15_c00390{height:46.992000pt;}
.h13_c00390{height:55.803000pt;}
.h3_c00390{height:56.537250pt;}
.h9_c00390{height:57.347985pt;}
.h4_c00390{height:61.148141pt;}
.h6_c00390{height:61.493438pt;}
.h10_c00390{height:61.838906pt;}
.h16_c00390{height:63.145684pt;}
.h8_c00390{height:63.739157pt;}
.ha_c00390{height:63.911719pt;}
.he_c00390{height:74.621423pt;}
.hd_c00390{height:76.521328pt;}
.h2_c00390{height:102.099009pt;}
.h1_c00390{height:986.666667pt;}
.h0_c00390{height:1122.666667pt;}
.w1_c00390{width:689.333333pt;}
.w0_c00390{width:793.333333pt;}
.x0_c00390{left:0.000000pt;}
.x1_c00390{left:52.000000pt;}
.x42_c00390{left:85.634253pt;}
.x4_c00390{left:88.080653pt;}
.x49_c00390{left:89.154253pt;}
.x64_c00390{left:90.399453pt;}
.x43_c00390{left:107.071053pt;}
.x7f_c00390{left:108.919053pt;}
.x87_c00390{left:113.081453pt;}
.x1c_c00390{left:116.724653pt;}
.x80_c00390{left:117.811453pt;}
.x44_c00390{left:119.426253pt;}
.x52_c00390{left:127.504653pt;}
.x88_c00390{left:128.727853pt;}
.x45_c00390{left:130.509853pt;}
.x2d_c00390{left:136.119853pt;}
.x5d_c00390{left:137.277053pt;}
.x8c_c00390{left:138.337453pt;}
.x81_c00390{left:139.613453pt;}
.x46_c00390{left:140.651853pt;}
.x5_c00390{left:145.395053pt;}
.x5b_c00390{left:146.477453pt;}
.x6a_c00390{left:147.383853pt;}
.x6f_c00390{left:149.064653pt;}
.x2c_c00390{left:155.383053pt;}
.x82_c00390{left:157.503853pt;}
.x5e_c00390{left:164.649453pt;}
.x6_c00390{left:166.136653pt;}
.x5f_c00390{left:175.909053pt;}
.x73_c00390{left:176.828653pt;}
.x47_c00390{left:177.889053pt;}
.x4a_c00390{left:180.551053pt;}
.x1d_c00390{left:186.064253pt;}
.x8d_c00390{left:187.494253pt;}
.x4b_c00390{left:193.865453pt;}
.x7_c00390{left:195.049053pt;}
.x65_c00390{left:196.549453pt;}
.x2e_c00390{left:204.821453pt;}
.x8_c00390{left:206.053453pt;}
.x91_c00390{left:207.870653pt;}
.x1e_c00390{left:214.888653pt;}
.x89_c00390{left:216.362653pt;}
.x8e_c00390{left:217.722253pt;}
.x4c_c00390{left:224.705053pt;}
.x74_c00390{left:225.959053pt;}
.x4d_c00390{left:233.791053pt;}
.x9_c00390{left:234.750253pt;}
.x92_c00390{left:236.593853pt;}
.x1f_c00390{left:244.214653pt;}
.x75_c00390{left:245.345453pt;}
.x8a_c00390{left:246.269453pt;}
.x93_c00390{left:247.237453pt;}
.xa_c00390{left:253.085053pt;}
.x53_c00390{left:254.523853pt;}
.x48_c00390{left:263.992653pt;}
.x8f_c00390{left:265.620653pt;}
.x70_c00390{left:267.371853pt;}
.x20_c00390{left:273.355853pt;}
.x66_c00390{left:275.124653pt;}
.x79_c00390{left:277.368653pt;}
.xb_c00390{left:283.453853pt;}
.x60_c00390{left:284.914653pt;}
.x21_c00390{left:293.842253pt;}
.x7a_c00390{left:296.191853pt;}
.x39_c00390{left:297.230253pt;}
.x2f_c00390{left:302.871053pt;}
.x59_c00390{left:304.023853pt;}
.x22_c00390{left:313.602653pt;}
.x94_c00390{left:315.067853pt;}
.x83_c00390{left:317.461453pt;}
.xc_c00390{left:323.278253pt;}
.x54_c00390{left:324.536653pt;}
.x30_c00390{left:333.354253pt;}
.x67_c00390{left:334.357453pt;}
.x7b_c00390{left:338.643053pt;}
.x23_c00390{left:342.422653pt;}
.x68_c00390{left:343.364253pt;}
.x95_c00390{left:344.464253pt;}
.xd_c00390{left:353.061853pt;}
.x3c_c00390{left:355.569853pt;}
.x3a_c00390{left:359.072253pt;}
.x4e_c00390{left:363.221453pt;}
.x7c_c00390{left:364.136653pt;}
.xe_c00390{left:367.779853pt;}
.x8b_c00390{left:369.689453pt;}
.x24_c00390{left:373.007053pt;}
.x55_c00390{left:381.094253pt;}
.xf_c00390{left:382.687053pt;}
.x61_c00390{left:392.265853pt;}
.x71_c00390{left:393.247053pt;}
.x3b_c00390{left:394.791453pt;}
.x10_c00390{left:401.695053pt;}
.x3d_c00390{left:404.357053pt;}
.x56_c00390{left:410.873453pt;}
.x11_c00390{left:411.832653pt;}
.x7d_c00390{left:412.932653pt;}
.x25_c00390{left:421.512653pt;}
.x26_c00390{left:431.606253pt;}
.x96_c00390{left:432.521453pt;}
.x3e_c00390{left:440.789053pt;}
.x12_c00390{left:441.928653pt;}
.x63_c00390{left:451.305053pt;}
.x31_c00390{left:460.883853pt;}
.x6b_c00390{left:466.955853pt;}
.x27_c00390{left:470.700253pt;}
.x6c_c00390{left:472.024653pt;}
.x5c_c00390{left:473.379853pt;}
.x28_c00390{left:479.302253pt;}
.x32_c00390{left:480.793853pt;}
.x3f_c00390{left:482.333853pt;}
.x33_c00390{left:486.914253pt;}
.x13_c00390{left:490.240653pt;}
.x84_c00390{left:491.252653pt;}
.x85_c00390{left:497.645853pt;}
.x57_c00390{left:500.039453pt;}
.x4f_c00390{left:500.950253pt;}
.x6d_c00390{left:504.971853pt;}
.x69_c00390{left:510.326653pt;}
.x34_c00390{left:511.747853pt;}
.x35_c00390{left:518.479853pt;}
.x7e_c00390{left:520.583053pt;}
.x58_c00390{left:521.647853pt;}
.x40_c00390{left:529.488653pt;}
.x29_c00390{left:539.626253pt;}
.x14_c00390{left:549.319453pt;}
.x41_c00390{left:557.837853pt;}
.x15_c00390{left:560.090653pt;}
.x2a_c00390{left:568.807053pt;}
.x76_c00390{left:570.373453pt;}
.x16_c00390{left:579.103053pt;}
.x90_c00390{left:581.153453pt;}
.x36_c00390{left:588.439853pt;}
.x72_c00390{left:589.363853pt;}
.x17_c00390{left:598.744653pt;}
.x6e_c00390{left:607.258653pt;}
.x18_c00390{left:608.877853pt;}
.x3_c00390{left:610.554253pt;}
.x2b_c00390{left:613.986253pt;}
.x5a_c00390{left:617.070653pt;}
.x37_c00390{left:618.183853pt;}
.x2_c00390{left:621.343053pt;}
.x97_c00390{left:624.977453pt;}
.x50_c00390{left:627.239053pt;}
.x77_c00390{left:628.537053pt;}
.x19_c00390{left:630.103453pt;}
.x78_c00390{left:633.526653pt;}
.x38_c00390{left:637.640653pt;}
.x86_c00390{left:639.352253pt;}
.x1a_c00390{left:647.228253pt;}
.x51_c00390{left:657.159053pt;}
.x1b_c00390{left:667.613453pt;}
.x62_c00390{left:669.452653pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bd0ecf6631d2483479cf9651.woff2')format("woff");}.ff1_c00391{font-family:ff1_c00391;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00391;src:url('chunks/assets/font_c9ef536d41162fb5a9123201.woff2')format("woff");}.ff2_c00391{font-family:ff2_c00391;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00391;src:url('chunks/assets/font_aab6717d20461cce36e02a46.woff2')format("woff");}.ff3_c00391{font-family:ff3_c00391;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00391;src:url('chunks/assets/font_47c8b963ee731c491d7fe126.woff2')format("woff");}.ff4_c00391{font-family:ff4_c00391;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.me_c00391{transform:matrix(0.083334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083334,0.000000,0.000000,0.250000,0,0);}
.m6d_c00391{transform:matrix(0.095589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095589,0.000000,0.000000,0.250000,0,0);}
.m7a_c00391{transform:matrix(0.125795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125795,0.000000,0.000000,0.250000,0,0);}
.mf_c00391{transform:matrix(0.138888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138888,0.000000,0.000000,0.250000,0,0);}
.mb7_c00391{transform:matrix(0.145935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145935,0.000000,0.000000,0.250000,0,0);}
.m4d_c00391{transform:matrix(0.157759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157759,0.000000,0.000000,0.250000,0,0);}
.mb_c00391{transform:matrix(0.161764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161764,0.000000,0.000000,0.250000,0,0);}
.m96_c00391{transform:matrix(0.174524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174524,0.000000,0.000000,0.250000,0,0);}
.md_c00391{transform:matrix(0.175925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175925,0.000000,0.000000,0.250000,0,0);}
.m7d_c00391{transform:matrix(0.177159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177159,0.000000,0.000000,0.250000,0,0);}
.m17_c00391{transform:matrix(0.180271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180271,0.000000,0.000000,0.250000,0,0);}
.m70_c00391{transform:matrix(0.183823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183823,0.000000,0.000000,0.250000,0,0);}
.m54_c00391{transform:matrix(0.187620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187620,0.000000,0.000000,0.250000,0,0);}
.m6e_c00391{transform:matrix(0.193628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193628,0.000000,0.000000,0.250000,0,0);}
.m11_c00391{transform:matrix(0.194445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194445,0.000000,0.000000,0.250000,0,0);}
.m98_c00391{transform:matrix(0.195441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195441,0.000000,0.000000,0.250000,0,0);}
.m8_c00391{transform:matrix(0.196655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196655,0.000000,0.000000,0.250000,0,0);}
.m16_c00391{transform:matrix(0.202799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202799,0.000000,0.000000,0.250000,0,0);}
.m6c_c00391{transform:matrix(0.208332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208332,0.000000,0.000000,0.250000,0,0);}
.ma_c00391{transform:matrix(0.209063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209063,0.000000,0.000000,0.250000,0,0);}
.mc_c00391{transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);}
.m6f_c00391{transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);}
.m6b_c00391{transform:matrix(0.215686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215686,0.000000,0.000000,0.250000,0,0);}
.m32_c00391{transform:matrix(0.216872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216872,0.000000,0.000000,0.250000,0,0);}
.maa_c00391{transform:matrix(0.217270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217270,0.000000,0.000000,0.250000,0,0);}
.m15_c00391{transform:matrix(0.220968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220968,0.000000,0.000000,0.250000,0,0);}
.m12_c00391{transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);}
.m28_c00391{transform:matrix(0.225801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225801,0.000000,0.000000,0.250000,0,0);}
.m52_c00391{transform:matrix(0.230770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230770,0.000000,0.000000,0.250000,0,0);}
.mca_c00391{transform:matrix(0.235125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235125,0.000000,0.000000,0.250000,0,0);}
.m18_c00391{transform:matrix(0.241597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241597,0.000000,0.000000,0.250000,0,0);}
.maf_c00391{transform:matrix(0.242792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242792,0.000000,0.000000,0.250000,0,0);}
.m29_c00391{transform:matrix(0.243474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243474,0.000000,0.000000,0.250000,0,0);}
.mb5_c00391{transform:matrix(0.243668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243668,0.000000,0.000000,0.250000,0,0);}
.m22_c00391{transform:matrix(0.244611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244611,0.000000,0.000000,0.250000,0,0);}
.mcd_c00391{transform:matrix(0.244845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244845,0.000000,0.000000,0.250000,0,0);}
.m1_c00391{transform:matrix(0.247103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247103,0.000000,0.000000,0.250000,0,0);}
.m72_c00391{transform:matrix(0.247254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247254,0.000000,0.000000,0.250000,0,0);}
.me3_c00391{transform:matrix(0.247466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247466,0.000000,0.000000,0.250000,0,0);}
.m74_c00391{transform:matrix(0.248600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248600,0.000000,0.000000,0.250000,0,0);}
.m0_c00391{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00391{transform:matrix(0.250507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250507,0.000000,0.000000,0.250000,0,0);}
.m84_c00391{transform:matrix(0.252524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252524,0.000000,0.000000,0.250000,0,0);}
.m50_c00391{transform:matrix(0.254705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254705,0.000000,0.000000,0.250000,0,0);}
.m1d_c00391{transform:matrix(0.254870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254870,0.000000,0.000000,0.250000,0,0);}
.m4_c00391{transform:matrix(0.256219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256219,0.000000,0.000000,0.250000,0,0);}
.m2a_c00391{transform:matrix(0.256603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256603,0.000000,0.000000,0.250000,0,0);}
.m79_c00391{transform:matrix(0.259128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259128,0.000000,0.000000,0.250000,0,0);}
.m10_c00391{transform:matrix(0.259258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259258,0.000000,0.000000,0.250000,0,0);}
.m55_c00391{transform:matrix(0.261448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261448,0.000000,0.000000,0.250000,0,0);}
.md2_c00391{transform:matrix(0.262535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262535,0.000000,0.000000,0.250000,0,0);}
.m85_c00391{transform:matrix(0.262837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262837,0.000000,0.000000,0.250000,0,0);}
.m89_c00391{transform:matrix(0.262979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262979,0.000000,0.000000,0.250000,0,0);}
.m2_c00391{transform:matrix(0.263376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263376,0.000000,0.000000,0.250000,0,0);}
.m13_c00391{transform:matrix(0.263889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263889,0.000000,0.000000,0.250000,0,0);}
.m3c_c00391{transform:matrix(0.265440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265440,0.000000,0.000000,0.250000,0,0);}
.m60_c00391{transform:matrix(0.266620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266620,0.000000,0.000000,0.250000,0,0);}
.m3e_c00391{transform:matrix(0.267241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267241,0.000000,0.000000,0.250000,0,0);}
.m7c_c00391{transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);}
.m6a_c00391{transform:matrix(0.268272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268272,0.000000,0.000000,0.250000,0,0);}
.m8e_c00391{transform:matrix(0.268726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268726,0.000000,0.000000,0.250000,0,0);}
.mc9_c00391{transform:matrix(0.269516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269516,0.000000,0.000000,0.250000,0,0);}
.m91_c00391{transform:matrix(0.269550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269550,0.000000,0.000000,0.250000,0,0);}
.me9_c00391{transform:matrix(0.269567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269567,0.000000,0.000000,0.250000,0,0);}
.m27_c00391{transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);}
.mdf_c00391{transform:matrix(0.273162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273162,0.000000,0.000000,0.250000,0,0);}
.m7f_c00391{transform:matrix(0.273385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273385,0.000000,0.000000,0.250000,0,0);}
.m90_c00391{transform:matrix(0.273525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273525,0.000000,0.000000,0.250000,0,0);}
.ma4_c00391{transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);}
.md0_c00391{transform:matrix(0.273670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273670,0.000000,0.000000,0.250000,0,0);}
.me7_c00391{transform:matrix(0.274594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274594,0.000000,0.000000,0.250000,0,0);}
.m56_c00391{transform:matrix(0.274699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274699,0.000000,0.000000,0.250000,0,0);}
.m9f_c00391{transform:matrix(0.274841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274841,0.000000,0.000000,0.250000,0,0);}
.mb2_c00391{transform:matrix(0.275097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275097,0.000000,0.000000,0.250000,0,0);}
.m38_c00391{transform:matrix(0.275450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275450,0.000000,0.000000,0.250000,0,0);}
.md5_c00391{transform:matrix(0.275923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275923,0.000000,0.000000,0.250000,0,0);}
.m5a_c00391{transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);}
.m14_c00391{transform:matrix(0.276998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276998,0.000000,0.000000,0.250000,0,0);}
.ma6_c00391{transform:matrix(0.277025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277025,0.000000,0.000000,0.250000,0,0);}
.mb9_c00391{transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);}
.m77_c00391{transform:matrix(0.278323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278323,0.000000,0.000000,0.250000,0,0);}
.m3a_c00391{transform:matrix(0.278389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278389,0.000000,0.000000,0.250000,0,0);}
.mc8_c00391{transform:matrix(0.278468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278468,0.000000,0.000000,0.250000,0,0);}
.mbb_c00391{transform:matrix(0.278599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278599,0.000000,0.000000,0.250000,0,0);}
.m37_c00391{transform:matrix(0.278706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278706,0.000000,0.000000,0.250000,0,0);}
.m4b_c00391{transform:matrix(0.279366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279366,0.000000,0.000000,0.250000,0,0);}
.m2d_c00391{transform:matrix(0.279515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279515,0.000000,0.000000,0.250000,0,0);}
.m19_c00391{transform:matrix(0.280139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280139,0.000000,0.000000,0.250000,0,0);}
.m46_c00391{transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);}
.m41_c00391{transform:matrix(0.281135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281135,0.000000,0.000000,0.250000,0,0);}
.m24_c00391{transform:matrix(0.281530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281530,0.000000,0.000000,0.250000,0,0);}
.m95_c00391{transform:matrix(0.282147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282147,0.000000,0.000000,0.250000,0,0);}
.m63_c00391{transform:matrix(0.282531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282531,0.000000,0.000000,0.250000,0,0);}
.m33_c00391{transform:matrix(0.282847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282847,0.000000,0.000000,0.250000,0,0);}
.m5b_c00391{transform:matrix(0.282883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282883,0.000000,0.000000,0.250000,0,0);}
.m71_c00391{transform:matrix(0.284171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284171,0.000000,0.000000,0.250000,0,0);}
.m1e_c00391{transform:matrix(0.284253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284253,0.000000,0.000000,0.250000,0,0);}
.m81_c00391{transform:matrix(0.284887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284887,0.000000,0.000000,0.250000,0,0);}
.md4_c00391{transform:matrix(0.286302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286302,0.000000,0.000000,0.250000,0,0);}
.ma0_c00391{transform:matrix(0.286743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286743,0.000000,0.000000,0.250000,0,0);}
.md7_c00391{transform:matrix(0.286937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286937,0.000000,0.000000,0.250000,0,0);}
.m67_c00391{transform:matrix(0.287321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287321,0.000000,0.000000,0.250000,0,0);}
.me0_c00391{transform:matrix(0.287374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287374,0.000000,0.000000,0.250000,0,0);}
.me1_c00391{transform:matrix(0.288237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288237,0.000000,0.000000,0.250000,0,0);}
.mb4_c00391{transform:matrix(0.288330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288330,0.000000,0.000000,0.250000,0,0);}
.m44_c00391{transform:matrix(0.288743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288743,0.000000,0.000000,0.250000,0,0);}
.mc6_c00391{transform:matrix(0.288781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288781,0.000000,0.000000,0.250000,0,0);}
.m57_c00391{transform:matrix(0.289037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289037,0.000000,0.000000,0.250000,0,0);}
.m7b_c00391{transform:matrix(0.289635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289635,0.000000,0.000000,0.250000,0,0);}
.m9a_c00391{transform:matrix(0.290999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290999,0.000000,0.000000,0.250000,0,0);}
.m40_c00391{transform:matrix(0.291073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291073,0.000000,0.000000,0.250000,0,0);}
.mbf_c00391{transform:matrix(0.291142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291142,0.000000,0.000000,0.250000,0,0);}
.mdc_c00391{transform:matrix(0.291489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291489,0.000000,0.000000,0.250000,0,0);}
.m2c_c00391{transform:matrix(0.292154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292154,0.000000,0.000000,0.250000,0,0);}
.m45_c00391{transform:matrix(0.293479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293479,0.000000,0.000000,0.250000,0,0);}
.mcc_c00391{transform:matrix(0.293480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293480,0.000000,0.000000,0.250000,0,0);}
.mad_c00391{transform:matrix(0.293938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293938,0.000000,0.000000,0.250000,0,0);}
.md1_c00391{transform:matrix(0.294383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294383,0.000000,0.000000,0.250000,0,0);}
.mbd_c00391{transform:matrix(0.294652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294652,0.000000,0.000000,0.250000,0,0);}
.m75_c00391{transform:matrix(0.295050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295050,0.000000,0.000000,0.250000,0,0);}
.m94_c00391{transform:matrix(0.295161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295161,0.000000,0.000000,0.250000,0,0);}
.md8_c00391{transform:matrix(0.296080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296080,0.000000,0.000000,0.250000,0,0);}
.mb1_c00391{transform:matrix(0.297117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297117,0.000000,0.000000,0.250000,0,0);}
.m1c_c00391{transform:matrix(0.297190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297190,0.000000,0.000000,0.250000,0,0);}
.m5d_c00391{transform:matrix(0.297241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297241,0.000000,0.000000,0.250000,0,0);}
.m2e_c00391{transform:matrix(0.297564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297564,0.000000,0.000000,0.250000,0,0);}
.m25_c00391{transform:matrix(0.300387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300387,0.000000,0.000000,0.250000,0,0);}
.m9b_c00391{transform:matrix(0.300520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300520,0.000000,0.000000,0.250000,0,0);}
.m97_c00391{transform:matrix(0.300804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300804,0.000000,0.000000,0.250000,0,0);}
.mae_c00391{transform:matrix(0.300857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300857,0.000000,0.000000,0.250000,0,0);}
.mc5_c00391{transform:matrix(0.301074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301074,0.000000,0.000000,0.250000,0,0);}
.m8f_c00391{transform:matrix(0.301264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301264,0.000000,0.000000,0.250000,0,0);}
.m34_c00391{transform:matrix(0.301305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301305,0.000000,0.000000,0.250000,0,0);}
.m4e_c00391{transform:matrix(0.301417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301417,0.000000,0.000000,0.250000,0,0);}
.m23_c00391{transform:matrix(0.301463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301463,0.000000,0.000000,0.250000,0,0);}
.m48_c00391{transform:matrix(0.301482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301482,0.000000,0.000000,0.250000,0,0);}
.mab_c00391{transform:matrix(0.302086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302086,0.000000,0.000000,0.250000,0,0);}
.m92_c00391{transform:matrix(0.302495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302495,0.000000,0.000000,0.250000,0,0);}
.m4a_c00391{transform:matrix(0.302602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302602,0.000000,0.000000,0.250000,0,0);}
.m2b_c00391{transform:matrix(0.303781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303781,0.000000,0.000000,0.250000,0,0);}
.m5e_c00391{transform:matrix(0.304430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304430,0.000000,0.000000,0.250000,0,0);}
.me6_c00391{transform:matrix(0.305266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305266,0.000000,0.000000,0.250000,0,0);}
.m36_c00391{transform:matrix(0.305834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305834,0.000000,0.000000,0.250000,0,0);}
.m7e_c00391{transform:matrix(0.305883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305883,0.000000,0.000000,0.250000,0,0);}
.m3_c00391{transform:matrix(0.307653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307653,0.000000,0.000000,0.250000,0,0);}
.m51_c00391{transform:matrix(0.307994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307994,0.000000,0.000000,0.250000,0,0);}
.m5_c00391{transform:matrix(0.307995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307995,0.000000,0.000000,0.250000,0,0);}
.mb8_c00391{transform:matrix(0.308169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308169,0.000000,0.000000,0.250000,0,0);}
.m47_c00391{transform:matrix(0.308716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308716,0.000000,0.000000,0.250000,0,0);}
.m8c_c00391{transform:matrix(0.309753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309753,0.000000,0.000000,0.250000,0,0);}
.mc7_c00391{transform:matrix(0.310343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310343,0.000000,0.000000,0.250000,0,0);}
.me4_c00391{transform:matrix(0.311152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311152,0.000000,0.000000,0.250000,0,0);}
.mc2_c00391{transform:matrix(0.311367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311367,0.000000,0.000000,0.250000,0,0);}
.m43_c00391{transform:matrix(0.311757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311757,0.000000,0.000000,0.250000,0,0);}
.m9d_c00391{transform:matrix(0.312393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312393,0.000000,0.000000,0.250000,0,0);}
.mbe_c00391{transform:matrix(0.312698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312698,0.000000,0.000000,0.250000,0,0);}
.m3d_c00391{transform:matrix(0.312875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312875,0.000000,0.000000,0.250000,0,0);}
.mac_c00391{transform:matrix(0.313458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313458,0.000000,0.000000,0.250000,0,0);}
.m6_c00391{transform:matrix(0.313677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313677,0.000000,0.000000,0.250000,0,0);}
.md9_c00391{transform:matrix(0.313735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313735,0.000000,0.000000,0.250000,0,0);}
.m86_c00391{transform:matrix(0.314038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314038,0.000000,0.000000,0.250000,0,0);}
.m80_c00391{transform:matrix(0.314268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314268,0.000000,0.000000,0.250000,0,0);}
.m21_c00391{transform:matrix(0.314384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314384,0.000000,0.000000,0.250000,0,0);}
.m8d_c00391{transform:matrix(0.315659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315659,0.000000,0.000000,0.250000,0,0);}
.m62_c00391{transform:matrix(0.316314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316314,0.000000,0.000000,0.250000,0,0);}
.mba_c00391{transform:matrix(0.316459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316459,0.000000,0.000000,0.250000,0,0);}
.mc3_c00391{transform:matrix(0.316535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316535,0.000000,0.000000,0.250000,0,0);}
.mce_c00391{transform:matrix(0.317614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317614,0.000000,0.000000,0.250000,0,0);}
.m8b_c00391{transform:matrix(0.317902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317902,0.000000,0.000000,0.250000,0,0);}
.meb_c00391{transform:matrix(0.318027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318027,0.000000,0.000000,0.250000,0,0);}
.mea_c00391{transform:matrix(0.319874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319874,0.000000,0.000000,0.250000,0,0);}
.mda_c00391{transform:matrix(0.319911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319911,0.000000,0.000000,0.250000,0,0);}
.ma2_c00391{transform:matrix(0.320034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320034,0.000000,0.000000,0.250000,0,0);}
.m66_c00391{transform:matrix(0.320226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320226,0.000000,0.000000,0.250000,0,0);}
.mb6_c00391{transform:matrix(0.321211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321211,0.000000,0.000000,0.250000,0,0);}
.m49_c00391{transform:matrix(0.321385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321385,0.000000,0.000000,0.250000,0,0);}
.m76_c00391{transform:matrix(0.322400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322400,0.000000,0.000000,0.250000,0,0);}
.m58_c00391{transform:matrix(0.323852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323852,0.000000,0.000000,0.250000,0,0);}
.me5_c00391{transform:matrix(0.323993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323993,0.000000,0.000000,0.250000,0,0);}
.ma8_c00391{transform:matrix(0.324119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324119,0.000000,0.000000,0.250000,0,0);}
.m1f_c00391{transform:matrix(0.325007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325007,0.000000,0.000000,0.250000,0,0);}
.m73_c00391{transform:matrix(0.325254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325254,0.000000,0.000000,0.250000,0,0);}
.ma3_c00391{transform:matrix(0.325428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325428,0.000000,0.000000,0.250000,0,0);}
.m42_c00391{transform:matrix(0.326072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326072,0.000000,0.000000,0.250000,0,0);}
.m83_c00391{transform:matrix(0.326593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326593,0.000000,0.000000,0.250000,0,0);}
.m35_c00391{transform:matrix(0.326725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326725,0.000000,0.000000,0.250000,0,0);}
.md6_c00391{transform:matrix(0.327755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327755,0.000000,0.000000,0.250000,0,0);}
.m69_c00391{transform:matrix(0.328822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328822,0.000000,0.000000,0.250000,0,0);}
.ma7_c00391{transform:matrix(0.329560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329560,0.000000,0.000000,0.250000,0,0);}
.m68_c00391{transform:matrix(0.329728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329728,0.000000,0.000000,0.250000,0,0);}
.m26_c00391{transform:matrix(0.329823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329823,0.000000,0.000000,0.250000,0,0);}
.m88_c00391{transform:matrix(0.330570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330570,0.000000,0.000000,0.250000,0,0);}
.md3_c00391{transform:matrix(0.330878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330878,0.000000,0.000000,0.250000,0,0);}
.mb0_c00391{transform:matrix(0.330991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330991,0.000000,0.000000,0.250000,0,0);}
.mcb_c00391{transform:matrix(0.331414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331414,0.000000,0.000000,0.250000,0,0);}
.m20_c00391{transform:matrix(0.331532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331532,0.000000,0.000000,0.250000,0,0);}
.me8_c00391{transform:matrix(0.331694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331694,0.000000,0.000000,0.250000,0,0);}
.m59_c00391{transform:matrix(0.332265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332265,0.000000,0.000000,0.250000,0,0);}
.m8a_c00391{transform:matrix(0.333273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333273,0.000000,0.000000,0.250000,0,0);}
.m61_c00391{transform:matrix(0.335358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335358,0.000000,0.000000,0.250000,0,0);}
.m93_c00391{transform:matrix(0.336475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336475,0.000000,0.000000,0.250000,0,0);}
.m4f_c00391{transform:matrix(0.336753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336753,0.000000,0.000000,0.250000,0,0);}
.m1b_c00391{transform:matrix(0.337051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337051,0.000000,0.000000,0.250000,0,0);}
.m5f_c00391{transform:matrix(0.337131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337131,0.000000,0.000000,0.250000,0,0);}
.mdb_c00391{transform:matrix(0.339155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339155,0.000000,0.000000,0.250000,0,0);}
.m7_c00391{transform:matrix(0.339291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339291,0.000000,0.000000,0.250000,0,0);}
.m9c_c00391{transform:matrix(0.339463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339463,0.000000,0.000000,0.250000,0,0);}
.ma5_c00391{transform:matrix(0.342523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342523,0.000000,0.000000,0.250000,0,0);}
.ma9_c00391{transform:matrix(0.343718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343718,0.000000,0.000000,0.250000,0,0);}
.mc4_c00391{transform:matrix(0.346312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346312,0.000000,0.000000,0.250000,0,0);}
.m87_c00391{transform:matrix(0.346453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346453,0.000000,0.000000,0.250000,0,0);}
.m31_c00391{transform:matrix(0.348674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348674,0.000000,0.000000,0.250000,0,0);}
.m9e_c00391{transform:matrix(0.351163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351163,0.000000,0.000000,0.250000,0,0);}
.m99_c00391{transform:matrix(0.352000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352000,0.000000,0.000000,0.250000,0,0);}
.me2_c00391{transform:matrix(0.353796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353796,0.000000,0.000000,0.250000,0,0);}
.m64_c00391{transform:matrix(0.354485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354485,0.000000,0.000000,0.250000,0,0);}
.mc0_c00391{transform:matrix(0.355964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355964,0.000000,0.000000,0.250000,0,0);}
.m3b_c00391{transform:matrix(0.356018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356018,0.000000,0.000000,0.250000,0,0);}
.mdd_c00391{transform:matrix(0.356845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356845,0.000000,0.000000,0.250000,0,0);}
.m65_c00391{transform:matrix(0.357705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357705,0.000000,0.000000,0.250000,0,0);}
.mbc_c00391{transform:matrix(0.359116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359116,0.000000,0.000000,0.250000,0,0);}
.m82_c00391{transform:matrix(0.359896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359896,0.000000,0.000000,0.250000,0,0);}
.m78_c00391{transform:matrix(0.361904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361904,0.000000,0.000000,0.250000,0,0);}
.m4c_c00391{transform:matrix(0.362103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362103,0.000000,0.000000,0.250000,0,0);}
.m5c_c00391{transform:matrix(0.364190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364190,0.000000,0.000000,0.250000,0,0);}
.mc1_c00391{transform:matrix(0.364929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364929,0.000000,0.000000,0.250000,0,0);}
.m30_c00391{transform:matrix(0.367428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367428,0.000000,0.000000,0.250000,0,0);}
.mcf_c00391{transform:matrix(0.368367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368367,0.000000,0.000000,0.250000,0,0);}
.m39_c00391{transform:matrix(0.368564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368564,0.000000,0.000000,0.250000,0,0);}
.m3f_c00391{transform:matrix(0.368816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368816,0.000000,0.000000,0.250000,0,0);}
.ma1_c00391{transform:matrix(0.399992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399992,0.000000,0.000000,0.250000,0,0);}
.m9_c00391{transform:matrix(0.402629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402629,0.000000,0.000000,0.250000,0,0);}
.m53_c00391{transform:matrix(0.421939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421939,0.000000,0.000000,0.250000,0,0);}
.m2f_c00391{transform:matrix(0.429896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429896,0.000000,0.000000,0.250000,0,0);}
.mde_c00391{transform:matrix(0.454246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454246,0.000000,0.000000,0.250000,0,0);}
.mb3_c00391{transform:matrix(0.456895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456895,0.000000,0.000000,0.250000,0,0);}
.v0_c00391{vertical-align:0.000000px;}
.ls5_c00391{letter-spacing:-3.007627px;}
.ls7_c00391{letter-spacing:-2.647267px;}
.ls17_c00391{letter-spacing:-2.383927px;}
.ls8_c00391{letter-spacing:-2.269086px;}
.ls10_c00391{letter-spacing:-1.293379px;}
.lsd_c00391{letter-spacing:-1.261267px;}
.lsb_c00391{letter-spacing:-1.032570px;}
.lsf_c00391{letter-spacing:-0.997920px;}
.ls11_c00391{letter-spacing:-0.847125px;}
.lsc_c00391{letter-spacing:-0.845460px;}
.ls18_c00391{letter-spacing:-0.726108px;}
.ls1a_c00391{letter-spacing:-0.552144px;}
.ls4_c00391{letter-spacing:0.000000px;}
.ls3_c00391{letter-spacing:0.589962px;}
.ls15_c00391{letter-spacing:0.680726px;}
.ls1_c00391{letter-spacing:0.712602px;}
.ls13_c00391{letter-spacing:1.081598px;}
.lse_c00391{letter-spacing:1.495502px;}
.lsa_c00391{letter-spacing:1.524600px;}
.ls19_c00391{letter-spacing:2.057305px;}
.ls1b_c00391{letter-spacing:2.322031px;}
.ls12_c00391{letter-spacing:3.009600px;}
.ls16_c00391{letter-spacing:3.544200px;}
.ls6_c00391{letter-spacing:3.781810px;}
.ls2_c00391{letter-spacing:35.207106px;}
.ls9_c00391{letter-spacing:38.491398px;}
.ls0_c00391{letter-spacing:44.544060px;}
.ls14_c00391{letter-spacing:48.470598px;}
.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;}
}
.ws1_c00391{word-spacing:-18.909050px;}
.ws9_c00391{word-spacing:-18.356905px;}
.ws8_c00391{word-spacing:-3.706291px;}
.ws7_c00391{word-spacing:-2.949743px;}
.ws3_c00391{word-spacing:-0.075773px;}
.wsa_c00391{word-spacing:0.000000px;}
.ws4_c00391{word-spacing:1.739117px;}
.ws6_c00391{word-spacing:3.706247px;}
.ws2_c00391{word-spacing:3.857331px;}
.ws5_c00391{word-spacing:6.504591px;}
.ws0_c00391{word-spacing:15.413283px;}
._2_c00391{margin-left:-15.127145px;}
._16_c00391{margin-left:-9.530092px;}
._4_c00391{margin-left:-8.319911px;}
._1b_c00391{margin-left:-6.655902px;}
._1_c00391{margin-left:-4.386924px;}
._5_c00391{width:2.722808px;}
._1d_c00391{width:3.921461px;}
._1c_c00391{width:5.596965px;}
._f_c00391{width:7.109685px;}
._12_c00391{width:8.395695px;}
._14_c00391{width:9.908319px;}
._e_c00391{width:11.194351px;}
._10_c00391{width:13.614788px;}
._6_c00391{width:14.731200px;}
._a_c00391{width:16.488571px;}
._11_c00391{width:20.194757px;}
._7_c00391{width:21.632237px;}
._3_c00391{width:22.766381px;}
._c_c00391{width:24.506009px;}
._19_c00391{width:25.867655px;}
._1f_c00391{width:27.516387px;}
._8_c00391{width:29.930472px;}
._17_c00391{width:31.540262px;}
._b_c00391{width:33.204463px;}
._1a_c00391{width:34.917361px;}
._d_c00391{width:36.205213px;}
._0_c00391{width:38.451501px;}
._1e_c00391{width:40.352669px;}
._18_c00391{width:45.242901px;}
._15_c00391{width:46.365171px;}
._13_c00391{width:47.726384px;}
._9_c00391{width:87.344730px;}
.fc0_c00391{color:transparent;}
.fs0_c00391{font-size:22.176000px;}
.fs9_c00391{font-size:24.156000px;}
.fsc_c00391{font-size:26.928000px;}
.fs1_c00391{font-size:27.720000px;}
.fsb_c00391{font-size:28.512000px;}
.fs8_c00391{font-size:29.502000px;}
.fs7_c00391{font-size:30.492000px;}
.fsa_c00391{font-size:36.036198px;}
.fs6_c00391{font-size:38.491398px;}
.fs5_c00391{font-size:48.470598px;}
.fs12_c00391{font-size:50.688000px;}
.fse_c00391{font-size:60.192000px;}
.fs10_c00391{font-size:64.548000px;}
.fs4_c00391{font-size:65.538000px;}
.fsd_c00391{font-size:66.330000px;}
.fs11_c00391{font-size:68.112198px;}
.fsf_c00391{font-size:70.884000px;}
.fs3_c00391{font-size:75.636198px;}
.fs2_c00391{font-size:85.932198px;}
.fs13_c00391{font-size:91.872198px;}
.y0_c00391{bottom:0.000000px;}
.y24_c00391{bottom:7.747785px;}
.y1_c00391{bottom:76.500000px;}
.y23_c00391{bottom:109.683135px;}
.y22_c00391{bottom:141.402735px;}
.y21_c00391{bottom:171.335385px;}
.y1f_c00391{bottom:205.908759px;}
.y20_c00391{bottom:205.911135px;}
.y1e_c00391{bottom:239.056335px;}
.y1d_c00391{bottom:255.802185px;}
.y1c_c00391{bottom:271.845135px;}
.y1b_c00391{bottom:303.916185px;}
.y1a_c00391{bottom:342.768735px;}
.y19_c00391{bottom:368.424585px;}
.y18_c00391{bottom:400.500585px;}
.y17_c00391{bottom:432.937935px;}
.y16_c00391{bottom:465.370335px;}
.y3_c00391{bottom:482.828985px;}
.y15_c00391{bottom:501.361785px;}
.y14_c00391{bottom:534.155535px;}
.y13_c00391{bottom:567.652185px;}
.y12_c00391{bottom:601.866585px;}
.y11_c00391{bottom:665.662185px;}
.y10_c00391{bottom:697.743135px;}
.yf_c00391{bottom:729.814185px;}
.ye_c00391{bottom:761.895135px;}
.yd_c00391{bottom:794.678985px;}
.yc_c00391{bottom:826.759935px;}
.yb_c00391{bottom:859.548735px;}
.ya_c00391{bottom:893.406735px;}
.y9_c00391{bottom:923.695785px;}
.y6_c00391{bottom:926.903385px;}
.y8_c00391{bottom:927.259785px;}
.y7_c00391{bottom:929.403135px;}
.y5_c00391{bottom:955.776735px;}
.y2_c00391{bottom:1014.934185px;}
.y4_c00391{bottom:1078.016985px;}
.h2_c00391{height:23.128875px;}
.ha_c00391{height:23.707793px;}
.h7_c00391{height:25.635271px;}
.hd_c00391{height:28.085063px;}
.h3_c00391{height:28.911094px;}
.h9_c00391{height:29.732484px;}
.hc_c00391{height:29.737125px;}
.h8_c00391{height:31.802203px;}
.h6_c00391{height:32.281418px;}
.hb_c00391{height:36.317731px;}
.h12_c00391{height:52.866000px;}
.hf_c00391{height:62.778375px;}
.h11_c00391{height:66.848397px;}
.he_c00391{height:69.180117px;}
.h10_c00391{height:69.568770px;}
.h5_c00391{height:74.232792px;}
.h4_c00391{height:84.337753px;}
.h13_c00391{height:90.167538px;}
.h1_c00391{height:1110.000000px;}
.h0_c00391{height:1263.000000px;}
.w1_c00391{width:775.500000px;}
.w0_c00391{width:892.500000px;}
.x0_c00391{left:0.000000px;}
.x3_c00391{left:8.431485px;}
.x2_c00391{left:53.362635px;}
.x1_c00391{left:58.500000px;}
.x5c_c00391{left:100.456935px;}
.x7_c00391{left:102.075585px;}
.x24_c00391{left:111.891435px;}
.x66_c00391{left:122.915085px;}
.x3f_c00391{left:124.127835px;}
.x8_c00391{left:134.498085px;}
.x67_c00391{left:143.254635px;}
.x25_c00391{left:145.482135px;}
.x53_c00391{left:147.590835px;}
.x60_c00391{left:154.139685px;}
.x9_c00391{left:156.174135px;}
.x40_c00391{left:166.752285px;}
.xa_c00391{left:176.726535px;}
.x79_c00391{left:179.696535px;}
.x6a_c00391{left:184.201035px;}
.x26_c00391{left:187.408635px;}
.x41_c00391{left:189.358935px;}
.x71_c00391{left:195.125685px;}
.x54_c00391{left:199.684635px;}
.x4c_c00391{left:209.866785px;}
.x2e_c00391{left:211.881435px;}
.x6f_c00391{left:213.524835px;}
.x39_c00391{left:222.108135px;}
.x6b_c00391{left:223.241685px;}
.x2f_c00391{left:233.230785px;}
.x68_c00391{left:244.279185px;}
.x42_c00391{left:245.313735px;}
.xb_c00391{left:246.571035px;}
.x30_c00391{left:255.550335px;}
.x6d_c00391{left:265.885935px;}
.x27_c00391{left:267.064035px;}
.x43_c00391{left:277.815435px;}
.x5d_c00391{left:287.240235px;}
.x28_c00391{left:288.448035px;}
.x7a_c00391{left:290.170635px;}
.x76_c00391{left:298.645035px;}
.xc_c00391{left:299.872635px;}
.x4d_c00391{left:309.723135px;}
.x69_c00391{left:310.787385px;}
.x61_c00391{left:314.692935px;}
.xd_c00391{left:321.073485px;}
.x75_c00391{left:322.122885px;}
.x44_c00391{left:332.621835px;}
.x6e_c00391{left:334.017735px;}
.xe_c00391{left:343.581135px;}
.x4e_c00391{left:346.006635px;}
.x77_c00391{left:347.204535px;}
.x29_c00391{left:355.149285px;}
.x45_c00391{left:366.870885px;}
.x5f_c00391{left:368.459835px;}
.x3a_c00391{left:376.850085px;}
.xf_c00391{left:377.864835px;}
.x55_c00391{left:388.155885px;}
.x62_c00391{left:389.294385px;}
.x31_c00391{left:391.012035px;}
.x10_c00391{left:399.352785px;}
.x2a_c00391{left:400.367535px;}
.x11_c00391{left:410.648685px;}
.x3b_c00391{left:411.678285px;}
.x56_c00391{left:421.568385px;}
.x63_c00391{left:432.458385px;}
.x6_c00391{left:441.101085px;}
.x12_c00391{left:443.160285px;}
.x3c_c00391{left:444.219585px;}
.x57_c00391{left:454.218585px;}
.x78_c00391{left:455.258085px;}
.x2b_c00391{left:457.302435px;}
.x32_c00391{left:465.598635px;}
.x4f_c00391{left:466.638135px;}
.x13_c00391{left:476.750985px;}
.x46_c00391{left:487.467735px;}
.x7b_c00391{left:489.903135px;}
.x33_c00391{left:497.441985px;}
.x14_c00391{left:498.625035px;}
.x50_c00391{left:500.164485px;}
.x64_c00391{left:509.158635px;}
.x72_c00391{left:510.376335px;}
.x58_c00391{left:512.900835px;}
.x3d_c00391{left:520.825785px;}
.x47_c00391{left:521.919735px;}
.x34_c00391{left:531.527685px;}
.x48_c00391{left:532.606785px;}
.x3e_c00391{left:540.447585px;}
.x73_c00391{left:542.383035px;}
.x65_c00391{left:543.526485px;}
.x35_c00391{left:553.075035px;}
.x15_c00391{left:554.906535px;}
.x49_c00391{left:565.068885px;}
.x16_c00391{left:575.934135px;}
.x36_c00391{left:578.122035px;}
.x59_c00391{left:581.270235px;}
.x17_c00391{left:586.621185px;}
.x51_c00391{left:587.838885px;}
.x4a_c00391{left:596.902335px;}
.x1f_c00391{left:597.931935px;}
.x18_c00391{left:599.100135px;}
.x5a_c00391{left:608.906085px;}
.x19_c00391{left:620.127735px;}
.x20_c00391{left:622.112685px;}
.x1a_c00391{left:623.686785px;}
.x21_c00391{left:631.096935px;}
.x1b_c00391{left:642.224535px;}
.x5e_c00391{left:652.495785px;}
.x1c_c00391{left:653.985735px;}
.x2c_c00391{left:664.113435px;}
.x37_c00391{left:665.133135px;}
.x4_c00391{left:675.820185px;}
.x74_c00391{left:685.645935px;}
.x2d_c00391{left:686.725035px;}
.x5_c00391{left:687.937785px;}
.x7d_c00391{left:691.675035px;}
.x70_c00391{left:696.031035px;}
.x7c_c00391{left:697.966485px;}
.x7e_c00391{left:703.243185px;}
.x1d_c00391{left:708.509985px;}
.x6c_c00391{left:710.702835px;}
.x52_c00391{left:719.162385px;}
.x1e_c00391{left:720.627585px;}
.x5b_c00391{left:725.434035px;}
.x22_c00391{left:726.602235px;}
.x23_c00391{left:730.898835px;}
.x4b_c00391{left:741.783885px;}
.x38_c00391{left:752.832285px;}
@media print{
.v0_c00391{vertical-align:0.000000pt;}
.ls5_c00391{letter-spacing:-2.673446pt;}
.ls7_c00391{letter-spacing:-2.353126pt;}
.ls17_c00391{letter-spacing:-2.119046pt;}
.ls8_c00391{letter-spacing:-2.016965pt;}
.ls10_c00391{letter-spacing:-1.149670pt;}
.lsd_c00391{letter-spacing:-1.121126pt;}
.lsb_c00391{letter-spacing:-0.917840pt;}
.lsf_c00391{letter-spacing:-0.887040pt;}
.ls11_c00391{letter-spacing:-0.753000pt;}
.lsc_c00391{letter-spacing:-0.751520pt;}
.ls18_c00391{letter-spacing:-0.645429pt;}
.ls1a_c00391{letter-spacing:-0.490795pt;}
.ls4_c00391{letter-spacing:0.000000pt;}
.ls3_c00391{letter-spacing:0.524411pt;}
.ls15_c00391{letter-spacing:0.605090pt;}
.ls1_c00391{letter-spacing:0.633424pt;}
.ls13_c00391{letter-spacing:0.961420pt;}
.lse_c00391{letter-spacing:1.329335pt;}
.lsa_c00391{letter-spacing:1.355200pt;}
.ls19_c00391{letter-spacing:1.828715pt;}
.ls1b_c00391{letter-spacing:2.064028pt;}
.ls12_c00391{letter-spacing:2.675200pt;}
.ls16_c00391{letter-spacing:3.150400pt;}
.ls6_c00391{letter-spacing:3.361609pt;}
.ls2_c00391{letter-spacing:31.295205pt;}
.ls9_c00391{letter-spacing:34.214576pt;}
.ls0_c00391{letter-spacing:39.594720pt;}
.ls14_c00391{letter-spacing:43.084976pt;}
.ws1_c00391{word-spacing:-16.808044pt;}
.ws9_c00391{word-spacing:-16.317249pt;}
.ws8_c00391{word-spacing:-3.294480pt;}
.ws7_c00391{word-spacing:-2.621994pt;}
.ws3_c00391{word-spacing:-0.067354pt;}
.wsa_c00391{word-spacing:0.000000pt;}
.ws4_c00391{word-spacing:1.545881pt;}
.ws6_c00391{word-spacing:3.294441pt;}
.ws2_c00391{word-spacing:3.428739pt;}
.ws5_c00391{word-spacing:5.781859pt;}
.ws0_c00391{word-spacing:13.700696pt;}
._2_c00391{margin-left:-13.446351pt;}
._16_c00391{margin-left:-8.471193pt;}
._4_c00391{margin-left:-7.395476pt;}
._1b_c00391{margin-left:-5.916357pt;}
._1_c00391{margin-left:-3.899488pt;}
._5_c00391{width:2.420274pt;}
._1d_c00391{width:3.485744pt;}
._1c_c00391{width:4.975080pt;}
._f_c00391{width:6.319720pt;}
._12_c00391{width:7.462840pt;}
._14_c00391{width:8.807395pt;}
._e_c00391{width:9.950534pt;}
._10_c00391{width:12.102034pt;}
._6_c00391{width:13.094400pt;}
._a_c00391{width:14.656508pt;}
._11_c00391{width:17.950895pt;}
._7_c00391{width:19.228655pt;}
._3_c00391{width:20.236783pt;}
._c_c00391{width:21.783119pt;}
._19_c00391{width:22.993471pt;}
._1f_c00391{width:24.459011pt;}
._8_c00391{width:26.604864pt;}
._17_c00391{width:28.035788pt;}
._b_c00391{width:29.515078pt;}
._1a_c00391{width:31.037654pt;}
._d_c00391{width:32.182412pt;}
._0_c00391{width:34.179112pt;}
._1e_c00391{width:35.869040pt;}
._18_c00391{width:40.215912pt;}
._15_c00391{width:41.213485pt;}
._13_c00391{width:42.423452pt;}
._9_c00391{width:77.639760pt;}
.fs0_c00391{font-size:19.712000pt;}
.fs9_c00391{font-size:21.472000pt;}
.fsc_c00391{font-size:23.936000pt;}
.fs1_c00391{font-size:24.640000pt;}
.fsb_c00391{font-size:25.344000pt;}
.fs8_c00391{font-size:26.224000pt;}
.fs7_c00391{font-size:27.104000pt;}
.fsa_c00391{font-size:32.032176pt;}
.fs6_c00391{font-size:34.214576pt;}
.fs5_c00391{font-size:43.084976pt;}
.fs12_c00391{font-size:45.056000pt;}
.fse_c00391{font-size:53.504000pt;}
.fs10_c00391{font-size:57.376000pt;}
.fs4_c00391{font-size:58.256000pt;}
.fsd_c00391{font-size:58.960000pt;}
.fs11_c00391{font-size:60.544176pt;}
.fsf_c00391{font-size:63.008000pt;}
.fs3_c00391{font-size:67.232176pt;}
.fs2_c00391{font-size:76.384176pt;}
.fs13_c00391{font-size:81.664176pt;}
.y0_c00391{bottom:0.000000pt;}
.y24_c00391{bottom:6.886920pt;}
.y1_c00391{bottom:68.000000pt;}
.y23_c00391{bottom:97.496120pt;}
.y22_c00391{bottom:125.691320pt;}
.y21_c00391{bottom:152.298120pt;}
.y1f_c00391{bottom:183.030008pt;}
.y20_c00391{bottom:183.032120pt;}
.y1e_c00391{bottom:212.494520pt;}
.y1d_c00391{bottom:227.379720pt;}
.y1c_c00391{bottom:241.640120pt;}
.y1b_c00391{bottom:270.147720pt;}
.y1a_c00391{bottom:304.683320pt;}
.y19_c00391{bottom:327.488520pt;}
.y18_c00391{bottom:356.000520pt;}
.y17_c00391{bottom:384.833720pt;}
.y16_c00391{bottom:413.662520pt;}
.y3_c00391{bottom:429.181320pt;}
.y15_c00391{bottom:445.654920pt;}
.y14_c00391{bottom:474.804920pt;}
.y13_c00391{bottom:504.579720pt;}
.y12_c00391{bottom:534.992520pt;}
.y11_c00391{bottom:591.699720pt;}
.y10_c00391{bottom:620.216120pt;}
.yf_c00391{bottom:648.723720pt;}
.ye_c00391{bottom:677.240120pt;}
.yd_c00391{bottom:706.381320pt;}
.yc_c00391{bottom:734.897720pt;}
.yb_c00391{bottom:764.043320pt;}
.ya_c00391{bottom:794.139320pt;}
.y9_c00391{bottom:821.062920pt;}
.y6_c00391{bottom:823.914120pt;}
.y8_c00391{bottom:824.230920pt;}
.y7_c00391{bottom:826.136120pt;}
.y5_c00391{bottom:849.579320pt;}
.y2_c00391{bottom:902.163720pt;}
.y4_c00391{bottom:958.237320pt;}
.h2_c00391{height:20.559000pt;}
.ha_c00391{height:21.073594pt;}
.h7_c00391{height:22.786908pt;}
.hd_c00391{height:24.964500pt;}
.h3_c00391{height:25.698750pt;}
.h9_c00391{height:26.428875pt;}
.hc_c00391{height:26.433000pt;}
.h8_c00391{height:28.268625pt;}
.h6_c00391{height:28.694594pt;}
.hb_c00391{height:32.282427pt;}
.h12_c00391{height:46.992000pt;}
.hf_c00391{height:55.803000pt;}
.h11_c00391{height:59.420798pt;}
.he_c00391{height:61.493438pt;}
.h10_c00391{height:61.838906pt;}
.h5_c00391{height:65.984704pt;}
.h4_c00391{height:74.966891pt;}
.h13_c00391{height:80.148923pt;}
.h1_c00391{height:986.666667pt;}
.h0_c00391{height:1122.666667pt;}
.w1_c00391{width:689.333333pt;}
.w0_c00391{width:793.333333pt;}
.x0_c00391{left:0.000000pt;}
.x3_c00391{left:7.494653pt;}
.x2_c00391{left:47.433453pt;}
.x1_c00391{left:52.000000pt;}
.x5c_c00391{left:89.295053pt;}
.x7_c00391{left:90.733853pt;}
.x24_c00391{left:99.459053pt;}
.x66_c00391{left:109.257853pt;}
.x3f_c00391{left:110.335853pt;}
.x8_c00391{left:119.553853pt;}
.x67_c00391{left:127.337453pt;}
.x25_c00391{left:129.317453pt;}
.x53_c00391{left:131.191853pt;}
.x60_c00391{left:137.013053pt;}
.x9_c00391{left:138.821453pt;}
.x40_c00391{left:148.224253pt;}
.xa_c00391{left:157.090253pt;}
.x79_c00391{left:159.730253pt;}
.x6a_c00391{left:163.734253pt;}
.x26_c00391{left:166.585453pt;}
.x41_c00391{left:168.319053pt;}
.x71_c00391{left:173.445053pt;}
.x54_c00391{left:177.497453pt;}
.x4c_c00391{left:186.548253pt;}
.x2e_c00391{left:188.339053pt;}
.x6f_c00391{left:189.799853pt;}
.x39_c00391{left:197.429453pt;}
.x6b_c00391{left:198.437053pt;}
.x2f_c00391{left:207.316253pt;}
.x68_c00391{left:217.137053pt;}
.x42_c00391{left:218.056653pt;}
.xb_c00391{left:219.174253pt;}
.x30_c00391{left:227.155853pt;}
.x6d_c00391{left:236.343053pt;}
.x27_c00391{left:237.390253pt;}
.x43_c00391{left:246.947053pt;}
.x5d_c00391{left:255.324653pt;}
.x28_c00391{left:256.398253pt;}
.x7a_c00391{left:257.929453pt;}
.x76_c00391{left:265.462253pt;}
.xc_c00391{left:266.553453pt;}
.x4d_c00391{left:275.309453pt;}
.x69_c00391{left:276.255453pt;}
.x61_c00391{left:279.727053pt;}
.xd_c00391{left:285.398653pt;}
.x75_c00391{left:286.331453pt;}
.x44_c00391{left:295.663853pt;}
.x6e_c00391{left:296.904653pt;}
.xe_c00391{left:305.405453pt;}
.x4e_c00391{left:307.561453pt;}
.x77_c00391{left:308.626253pt;}
.x29_c00391{left:315.688253pt;}
.x45_c00391{left:326.107453pt;}
.x5f_c00391{left:327.519853pt;}
.x3a_c00391{left:334.977853pt;}
.xf_c00391{left:335.879853pt;}
.x55_c00391{left:345.027453pt;}
.x62_c00391{left:346.039453pt;}
.x31_c00391{left:347.566253pt;}
.x10_c00391{left:354.980253pt;}
.x2a_c00391{left:355.882253pt;}
.x11_c00391{left:365.021053pt;}
.x3b_c00391{left:365.936253pt;}
.x56_c00391{left:374.727453pt;}
.x63_c00391{left:384.407453pt;}
.x6_c00391{left:392.089853pt;}
.x12_c00391{left:393.920253pt;}
.x3c_c00391{left:394.861853pt;}
.x57_c00391{left:403.749853pt;}
.x78_c00391{left:404.673853pt;}
.x2b_c00391{left:406.491053pt;}
.x32_c00391{left:413.865453pt;}
.x4f_c00391{left:414.789453pt;}
.x13_c00391{left:423.778653pt;}
.x46_c00391{left:433.304653pt;}
.x7b_c00391{left:435.469453pt;}
.x33_c00391{left:442.170653pt;}
.x14_c00391{left:443.222253pt;}
.x50_c00391{left:444.590653pt;}
.x64_c00391{left:452.585453pt;}
.x72_c00391{left:453.667853pt;}
.x58_c00391{left:455.911853pt;}
.x3d_c00391{left:462.956253pt;}
.x47_c00391{left:463.928653pt;}
.x34_c00391{left:472.469053pt;}
.x48_c00391{left:473.428253pt;}
.x3e_c00391{left:480.397853pt;}
.x73_c00391{left:482.118253pt;}
.x65_c00391{left:483.134653pt;}
.x35_c00391{left:491.622253pt;}
.x15_c00391{left:493.250253pt;}
.x49_c00391{left:502.283453pt;}
.x16_c00391{left:511.941453pt;}
.x36_c00391{left:513.886253pt;}
.x59_c00391{left:516.684653pt;}
.x17_c00391{left:521.441053pt;}
.x51_c00391{left:522.523453pt;}
.x4a_c00391{left:530.579853pt;}
.x1f_c00391{left:531.495053pt;}
.x18_c00391{left:532.533453pt;}
.x5a_c00391{left:541.249853pt;}
.x19_c00391{left:551.224653pt;}
.x20_c00391{left:552.989053pt;}
.x1a_c00391{left:554.388253pt;}
.x21_c00391{left:560.975053pt;}
.x1b_c00391{left:570.866253pt;}
.x5e_c00391{left:579.996253pt;}
.x1c_c00391{left:581.320653pt;}
.x2c_c00391{left:590.323053pt;}
.x37_c00391{left:591.229453pt;}
.x4_c00391{left:600.729053pt;}
.x74_c00391{left:609.463053pt;}
.x2d_c00391{left:610.422253pt;}
.x5_c00391{left:611.500253pt;}
.x7d_c00391{left:614.822253pt;}
.x70_c00391{left:618.694253pt;}
.x7c_c00391{left:620.414653pt;}
.x7e_c00391{left:625.105053pt;}
.x1d_c00391{left:629.786653pt;}
.x6c_c00391{left:631.735853pt;}
.x52_c00391{left:639.255453pt;}
.x1e_c00391{left:640.557853pt;}
.x5b_c00391{left:644.830253pt;}
.x22_c00391{left:645.868653pt;}
.x23_c00391{left:649.687853pt;}
.x4b_c00391{left:659.363453pt;}
.x38_c00391{left:669.184253pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c51d1623dc5bebefc4b74a3f.woff2')format("woff");}.ff1_c00392{font-family:ff1_c00392;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00392;src:url('chunks/assets/font_be2eaae6eb5c6c01c0f9e2f5.woff2')format("woff");}.ff2_c00392{font-family:ff2_c00392;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00392;src:url('chunks/assets/font_79908e044273d84e34f2359a.woff2')format("woff");}.ff3_c00392{font-family:ff3_c00392;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00392;src:url('chunks/assets/font_f1204b79f37dc7b8ca0a9178.woff2')format("woff");}.ff4_c00392{font-family:ff4_c00392;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00392;src:url('chunks/assets/font_e569f6057053fc5a40364701.woff2')format("woff");}.ff5_c00392{font-family:ff5_c00392;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00392;src:url('chunks/assets/font_6fcdbb65654a33d452256b25.woff2')format("woff");}.ff6_c00392{font-family:ff6_c00392;line-height:0.666000;font-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_c00392{transform:matrix(0.111884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111884,0.000000,0.000000,0.250000,0,0);}
.md8_c00392{transform:matrix(0.116103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116103,0.000000,0.000000,0.250000,0,0);}
.mbd_c00392{transform:matrix(0.136575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136575,0.000000,0.000000,0.250000,0,0);}
.m4d_c00392{transform:matrix(0.155033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155033,0.000000,0.000000,0.250000,0,0);}
.m4f_c00392{transform:matrix(0.171027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171027,0.000000,0.000000,0.250000,0,0);}
.m97_c00392{transform:matrix(0.186432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186432,0.000000,0.000000,0.250000,0,0);}
.m14_c00392{transform:matrix(0.190128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190128,0.000000,0.000000,0.250000,0,0);}
.me1_c00392{transform:matrix(0.192097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192097,0.000000,0.000000,0.250000,0,0);}
.mc8_c00392{transform:matrix(0.192348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192348,0.000000,0.000000,0.250000,0,0);}
.mbe_c00392{transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);}
.m89_c00392{transform:matrix(0.207985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207985,0.000000,0.000000,0.250000,0,0);}
.m99_c00392{transform:matrix(0.210171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210171,0.000000,0.000000,0.250000,0,0);}
.mbc_c00392{transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);}
.mda_c00392{transform:matrix(0.222278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222278,0.000000,0.000000,0.250000,0,0);}
.md5_c00392{transform:matrix(0.223326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223326,0.000000,0.000000,0.250000,0,0);}
.m12_c00392{transform:matrix(0.227419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227419,0.000000,0.000000,0.250000,0,0);}
.m11_c00392{transform:matrix(0.239966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239966,0.000000,0.000000,0.250000,0,0);}
.mc6_c00392{transform:matrix(0.240357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240357,0.000000,0.000000,0.250000,0,0);}
.md7_c00392{transform:matrix(0.240731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240731,0.000000,0.000000,0.250000,0,0);}
.mae_c00392{transform:matrix(0.243483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243483,0.000000,0.000000,0.250000,0,0);}
.m40_c00392{transform:matrix(0.243618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243618,0.000000,0.000000,0.250000,0,0);}
.m1_c00392{transform:matrix(0.246536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246536,0.000000,0.000000,0.250000,0,0);}
.m8e_c00392{transform:matrix(0.247819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247819,0.000000,0.000000,0.250000,0,0);}
.m7d_c00392{transform:matrix(0.249213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249213,0.000000,0.000000,0.250000,0,0);}
.m0_c00392{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00392{transform:matrix(0.253346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253346,0.000000,0.000000,0.250000,0,0);}
.m30_c00392{transform:matrix(0.254572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254572,0.000000,0.000000,0.250000,0,0);}
.m4b_c00392{transform:matrix(0.255826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255826,0.000000,0.000000,0.250000,0,0);}
.m9f_c00392{transform:matrix(0.257833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257833,0.000000,0.000000,0.250000,0,0);}
.mc5_c00392{transform:matrix(0.257844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257844,0.000000,0.000000,0.250000,0,0);}
.ma4_c00392{transform:matrix(0.258205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258205,0.000000,0.000000,0.250000,0,0);}
.m90_c00392{transform:matrix(0.258908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258908,0.000000,0.000000,0.250000,0,0);}
.m6b_c00392{transform:matrix(0.259129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259129,0.000000,0.000000,0.250000,0,0);}
.mdd_c00392{transform:matrix(0.260560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260560,0.000000,0.000000,0.250000,0,0);}
.m29_c00392{transform:matrix(0.260563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260563,0.000000,0.000000,0.250000,0,0);}
.me5_c00392{transform:matrix(0.264663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264663,0.000000,0.000000,0.250000,0,0);}
.m41_c00392{transform:matrix(0.265297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265297,0.000000,0.000000,0.250000,0,0);}
.m15_c00392{transform:matrix(0.265300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265300,0.000000,0.000000,0.250000,0,0);}
.m42_c00392{transform:matrix(0.270034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270034,0.000000,0.000000,0.250000,0,0);}
.mca_c00392{transform:matrix(0.270193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270193,0.000000,0.000000,0.250000,0,0);}
.m98_c00392{transform:matrix(0.270717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270717,0.000000,0.000000,0.250000,0,0);}
.mde_c00392{transform:matrix(0.271514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271514,0.000000,0.000000,0.250000,0,0);}
.m8d_c00392{transform:matrix(0.271744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271744,0.000000,0.000000,0.250000,0,0);}
.m56_c00392{transform:matrix(0.273097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273097,0.000000,0.000000,0.250000,0,0);}
.mc0_c00392{transform:matrix(0.274195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274195,0.000000,0.000000,0.250000,0,0);}
.ma1_c00392{transform:matrix(0.275340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275340,0.000000,0.000000,0.250000,0,0);}
.m70_c00392{transform:matrix(0.276595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276595,0.000000,0.000000,0.250000,0,0);}
.m86_c00392{transform:matrix(0.276877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276877,0.000000,0.000000,0.250000,0,0);}
.m2b_c00392{transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);}
.m96_c00392{transform:matrix(0.277388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277388,0.000000,0.000000,0.250000,0,0);}
.m62_c00392{transform:matrix(0.278214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278214,0.000000,0.000000,0.250000,0,0);}
.m3e_c00392{transform:matrix(0.279276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279276,0.000000,0.000000,0.250000,0,0);}
.m9e_c00392{transform:matrix(0.280204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280204,0.000000,0.000000,0.250000,0,0);}
.m77_c00392{transform:matrix(0.280576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280576,0.000000,0.000000,0.250000,0,0);}
.m4a_c00392{transform:matrix(0.280590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280590,0.000000,0.000000,0.250000,0,0);}
.m78_c00392{transform:matrix(0.282201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282201,0.000000,0.000000,0.250000,0,0);}
.me2_c00392{transform:matrix(0.282588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282588,0.000000,0.000000,0.250000,0,0);}
.mf_c00392{transform:matrix(0.282792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282792,0.000000,0.000000,0.250000,0,0);}
.m9c_c00392{transform:matrix(0.283535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283535,0.000000,0.000000,0.250000,0,0);}
.ma_c00392{transform:matrix(0.284151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284151,0.000000,0.000000,0.250000,0,0);}
.m8c_c00392{transform:matrix(0.284499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284499,0.000000,0.000000,0.250000,0,0);}
.m3c_c00392{transform:matrix(0.284684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284684,0.000000,0.000000,0.250000,0,0);}
.m1d_c00392{transform:matrix(0.286406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286406,0.000000,0.000000,0.250000,0,0);}
.m82_c00392{transform:matrix(0.286928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286928,0.000000,0.000000,0.250000,0,0);}
.me_c00392{transform:matrix(0.287241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287241,0.000000,0.000000,0.250000,0,0);}
.m9_c00392{transform:matrix(0.287242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287242,0.000000,0.000000,0.250000,0,0);}
.m28_c00392{transform:matrix(0.287919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287919,0.000000,0.000000,0.250000,0,0);}
.m31_c00392{transform:matrix(0.289122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289122,0.000000,0.000000,0.250000,0,0);}
.m68_c00392{transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);}
.m9d_c00392{transform:matrix(0.291317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291317,0.000000,0.000000,0.250000,0,0);}
.m20_c00392{transform:matrix(0.291392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291392,0.000000,0.000000,0.250000,0,0);}
.m61_c00392{transform:matrix(0.291496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291496,0.000000,0.000000,0.250000,0,0);}
.mc_c00392{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);}
.mb_c00392{transform:matrix(0.292280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292280,0.000000,0.000000,0.250000,0,0);}
.mce_c00392{transform:matrix(0.292282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292282,0.000000,0.000000,0.250000,0,0);}
.m3b_c00392{transform:matrix(0.292892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292892,0.000000,0.000000,0.250000,0,0);}
.m35_c00392{transform:matrix(0.293039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293039,0.000000,0.000000,0.250000,0,0);}
.mcd_c00392{transform:matrix(0.293295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293295,0.000000,0.000000,0.250000,0,0);}
.me4_c00392{transform:matrix(0.293708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293708,0.000000,0.000000,0.250000,0,0);}
.ma2_c00392{transform:matrix(0.293813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293813,0.000000,0.000000,0.250000,0,0);}
.m6d_c00392{transform:matrix(0.294803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294803,0.000000,0.000000,0.250000,0,0);}
.m3d_c00392{transform:matrix(0.294861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294861,0.000000,0.000000,0.250000,0,0);}
.mc1_c00392{transform:matrix(0.294941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294941,0.000000,0.000000,0.250000,0,0);}
.ma7_c00392{transform:matrix(0.295509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295509,0.000000,0.000000,0.250000,0,0);}
.mc9_c00392{transform:matrix(0.296059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296059,0.000000,0.000000,0.250000,0,0);}
.me0_c00392{transform:matrix(0.296215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296215,0.000000,0.000000,0.250000,0,0);}
.m2c_c00392{transform:matrix(0.297037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297037,0.000000,0.000000,0.250000,0,0);}
.me3_c00392{transform:matrix(0.297393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297393,0.000000,0.000000,0.250000,0,0);}
.md0_c00392{transform:matrix(0.297523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297523,0.000000,0.000000,0.250000,0,0);}
.m72_c00392{transform:matrix(0.297756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297756,0.000000,0.000000,0.250000,0,0);}
.m3_c00392{transform:matrix(0.297941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297941,0.000000,0.000000,0.250000,0,0);}
.m58_c00392{transform:matrix(0.298471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298471,0.000000,0.000000,0.250000,0,0);}
.m47_c00392{transform:matrix(0.298556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298556,0.000000,0.000000,0.250000,0,0);}
.m3f_c00392{transform:matrix(0.298945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298945,0.000000,0.000000,0.250000,0,0);}
.m8b_c00392{transform:matrix(0.298987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298987,0.000000,0.000000,0.250000,0,0);}
.m19_c00392{transform:matrix(0.299046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299046,0.000000,0.000000,0.250000,0,0);}
.md2_c00392{transform:matrix(0.299213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299213,0.000000,0.000000,0.250000,0,0);}
.m7f_c00392{transform:matrix(0.299304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299304,0.000000,0.000000,0.250000,0,0);}
.m7_c00392{transform:matrix(0.299681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299681,0.000000,0.000000,0.250000,0,0);}
.m16_c00392{transform:matrix(0.299800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299800,0.000000,0.000000,0.250000,0,0);}
.ma0_c00392{transform:matrix(0.300018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300018,0.000000,0.000000,0.250000,0,0);}
.md_c00392{transform:matrix(0.300800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300800,0.000000,0.000000,0.250000,0,0);}
.m2e_c00392{transform:matrix(0.301753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301753,0.000000,0.000000,0.250000,0,0);}
.m25_c00392{transform:matrix(0.302360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302360,0.000000,0.000000,0.250000,0,0);}
.mc4_c00392{transform:matrix(0.303676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303676,0.000000,0.000000,0.250000,0,0);}
.mb8_c00392{transform:matrix(0.303687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303687,0.000000,0.000000,0.250000,0,0);}
.m22_c00392{transform:matrix(0.304796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304796,0.000000,0.000000,0.250000,0,0);}
.mb5_c00392{transform:matrix(0.305306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305306,0.000000,0.000000,0.250000,0,0);}
.m8f_c00392{transform:matrix(0.305481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305481,0.000000,0.000000,0.250000,0,0);}
.mb7_c00392{transform:matrix(0.305813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305813,0.000000,0.000000,0.250000,0,0);}
.m50_c00392{transform:matrix(0.306744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306744,0.000000,0.000000,0.250000,0,0);}
.m5c_c00392{transform:matrix(0.306817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306817,0.000000,0.000000,0.250000,0,0);}
.mb4_c00392{transform:matrix(0.307039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307039,0.000000,0.000000,0.250000,0,0);}
.m75_c00392{transform:matrix(0.307446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307446,0.000000,0.000000,0.250000,0,0);}
.mab_c00392{transform:matrix(0.307638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307638,0.000000,0.000000,0.250000,0,0);}
.m73_c00392{transform:matrix(0.307913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307913,0.000000,0.000000,0.250000,0,0);}
.ma6_c00392{transform:matrix(0.308061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308061,0.000000,0.000000,0.250000,0,0);}
.m63_c00392{transform:matrix(0.308970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308970,0.000000,0.000000,0.250000,0,0);}
.m65_c00392{transform:matrix(0.309324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309324,0.000000,0.000000,0.250000,0,0);}
.mcf_c00392{transform:matrix(0.309406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309406,0.000000,0.000000,0.250000,0,0);}
.mb6_c00392{transform:matrix(0.309724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309724,0.000000,0.000000,0.250000,0,0);}
.mcc_c00392{transform:matrix(0.309793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309793,0.000000,0.000000,0.250000,0,0);}
.m34_c00392{transform:matrix(0.310506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310506,0.000000,0.000000,0.250000,0,0);}
.m7a_c00392{transform:matrix(0.310562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310562,0.000000,0.000000,0.250000,0,0);}
.m1f_c00392{transform:matrix(0.312231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312231,0.000000,0.000000,0.250000,0,0);}
.m4e_c00392{transform:matrix(0.312357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312357,0.000000,0.000000,0.250000,0,0);}
.m44_c00392{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);}
.mb3_c00392{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m8_c00392{transform:matrix(0.313140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313140,0.000000,0.000000,0.250000,0,0);}
.m76_c00392{transform:matrix(0.313782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313782,0.000000,0.000000,0.250000,0,0);}
.m74_c00392{transform:matrix(0.314588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314588,0.000000,0.000000,0.250000,0,0);}
.m48_c00392{transform:matrix(0.315073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315073,0.000000,0.000000,0.250000,0,0);}
.m27_c00392{transform:matrix(0.315347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315347,0.000000,0.000000,0.250000,0,0);}
.m71_c00392{transform:matrix(0.315840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315840,0.000000,0.000000,0.250000,0,0);}
.m38_c00392{transform:matrix(0.316442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316442,0.000000,0.000000,0.250000,0,0);}
.m3a_c00392{transform:matrix(0.317627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317627,0.000000,0.000000,0.250000,0,0);}
.ma3_c00392{transform:matrix(0.317774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317774,0.000000,0.000000,0.250000,0,0);}
.m37_c00392{transform:matrix(0.317998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317998,0.000000,0.000000,0.250000,0,0);}
.m91_c00392{transform:matrix(0.318157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318157,0.000000,0.000000,0.250000,0,0);}
.ma9_c00392{transform:matrix(0.318322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318322,0.000000,0.000000,0.250000,0,0);}
.m18_c00392{transform:matrix(0.318409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318409,0.000000,0.000000,0.250000,0,0);}
.m60_c00392{transform:matrix(0.321501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321501,0.000000,0.000000,0.250000,0,0);}
.m6a_c00392{transform:matrix(0.321706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321706,0.000000,0.000000,0.250000,0,0);}
.m2f_c00392{transform:matrix(0.323549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323549,0.000000,0.000000,0.250000,0,0);}
.mdc_c00392{transform:matrix(0.323595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323595,0.000000,0.000000,0.250000,0,0);}
.m84_c00392{transform:matrix(0.323848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323848,0.000000,0.000000,0.250000,0,0);}
.m7b_c00392{transform:matrix(0.324116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324116,0.000000,0.000000,0.250000,0,0);}
.m64_c00392{transform:matrix(0.324330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324330,0.000000,0.000000,0.250000,0,0);}
.m57_c00392{transform:matrix(0.324455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324455,0.000000,0.000000,0.250000,0,0);}
.m1b_c00392{transform:matrix(0.325110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325110,0.000000,0.000000,0.250000,0,0);}
.mc7_c00392{transform:matrix(0.326512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326512,0.000000,0.000000,0.250000,0,0);}
.mb0_c00392{transform:matrix(0.326555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326555,0.000000,0.000000,0.250000,0,0);}
.m32_c00392{transform:matrix(0.326772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326772,0.000000,0.000000,0.250000,0,0);}
.m92_c00392{transform:matrix(0.327426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327426,0.000000,0.000000,0.250000,0,0);}
.m5e_c00392{transform:matrix(0.327744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327744,0.000000,0.000000,0.250000,0,0);}
.mdf_c00392{transform:matrix(0.328444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328444,0.000000,0.000000,0.250000,0,0);}
.m79_c00392{transform:matrix(0.329059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329059,0.000000,0.000000,0.250000,0,0);}
.m1c_c00392{transform:matrix(0.329133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329133,0.000000,0.000000,0.250000,0,0);}
.m85_c00392{transform:matrix(0.329866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329866,0.000000,0.000000,0.250000,0,0);}
.m2a_c00392{transform:matrix(0.330004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330004,0.000000,0.000000,0.250000,0,0);}
.mb1_c00392{transform:matrix(0.330718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330718,0.000000,0.000000,0.250000,0,0);}
.mb9_c00392{transform:matrix(0.331101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331101,0.000000,0.000000,0.250000,0,0);}
.m5a_c00392{transform:matrix(0.331204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331204,0.000000,0.000000,0.250000,0,0);}
.m5b_c00392{transform:matrix(0.331227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331227,0.000000,0.000000,0.250000,0,0);}
.m5d_c00392{transform:matrix(0.331966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331966,0.000000,0.000000,0.250000,0,0);}
.m2_c00392{transform:matrix(0.332878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332878,0.000000,0.000000,0.250000,0,0);}
.m5f_c00392{transform:matrix(0.333023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333023,0.000000,0.000000,0.250000,0,0);}
.m54_c00392{transform:matrix(0.333626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333626,0.000000,0.000000,0.250000,0,0);}
.mad_c00392{transform:matrix(0.333939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333939,0.000000,0.000000,0.250000,0,0);}
.m55_c00392{transform:matrix(0.335174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335174,0.000000,0.000000,0.250000,0,0);}
.m7e_c00392{transform:matrix(0.335840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335840,0.000000,0.000000,0.250000,0,0);}
.mdb_c00392{transform:matrix(0.336513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336513,0.000000,0.000000,0.250000,0,0);}
.m6_c00392{transform:matrix(0.336731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336731,0.000000,0.000000,0.250000,0,0);}
.md4_c00392{transform:matrix(0.336805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336805,0.000000,0.000000,0.250000,0,0);}
.m67_c00392{transform:matrix(0.337028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337028,0.000000,0.000000,0.250000,0,0);}
.m36_c00392{transform:matrix(0.337193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337193,0.000000,0.000000,0.250000,0,0);}
.mb2_c00392{transform:matrix(0.338730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338730,0.000000,0.000000,0.250000,0,0);}
.m52_c00392{transform:matrix(0.338939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338939,0.000000,0.000000,0.250000,0,0);}
.m4c_c00392{transform:matrix(0.339771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339771,0.000000,0.000000,0.250000,0,0);}
.m7c_c00392{transform:matrix(0.339786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339786,0.000000,0.000000,0.250000,0,0);}
.m9a_c00392{transform:matrix(0.340002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340002,0.000000,0.000000,0.250000,0,0);}
.m6f_c00392{transform:matrix(0.340129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340129,0.000000,0.000000,0.250000,0,0);}
.md9_c00392{transform:matrix(0.340526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340526,0.000000,0.000000,0.250000,0,0);}
.m95_c00392{transform:matrix(0.341114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341114,0.000000,0.000000,0.250000,0,0);}
.m33_c00392{transform:matrix(0.341638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341638,0.000000,0.000000,0.250000,0,0);}
.m53_c00392{transform:matrix(0.341907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341907,0.000000,0.000000,0.250000,0,0);}
.m6e_c00392{transform:matrix(0.342508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342508,0.000000,0.000000,0.250000,0,0);}
.mc3_c00392{transform:matrix(0.342744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342744,0.000000,0.000000,0.250000,0,0);}
.m1a_c00392{transform:matrix(0.345065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345065,0.000000,0.000000,0.250000,0,0);}
.m81_c00392{transform:matrix(0.345692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345692,0.000000,0.000000,0.250000,0,0);}
.mbb_c00392{transform:matrix(0.345910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345910,0.000000,0.000000,0.250000,0,0);}
.m43_c00392{transform:matrix(0.348924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348924,0.000000,0.000000,0.250000,0,0);}
.m80_c00392{transform:matrix(0.349616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349616,0.000000,0.000000,0.250000,0,0);}
.md3_c00392{transform:matrix(0.349893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349893,0.000000,0.000000,0.250000,0,0);}
.m46_c00392{transform:matrix(0.349984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349984,0.000000,0.000000,0.250000,0,0);}
.maf_c00392{transform:matrix(0.351413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351413,0.000000,0.000000,0.250000,0,0);}
.m87_c00392{transform:matrix(0.351893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351893,0.000000,0.000000,0.250000,0,0);}
.m45_c00392{transform:matrix(0.352618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352618,0.000000,0.000000,0.250000,0,0);}
.m93_c00392{transform:matrix(0.355202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355202,0.000000,0.000000,0.250000,0,0);}
.m49_c00392{transform:matrix(0.357232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357232,0.000000,0.000000,0.250000,0,0);}
.m39_c00392{transform:matrix(0.358594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358594,0.000000,0.000000,0.250000,0,0);}
.mba_c00392{transform:matrix(0.358997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358997,0.000000,0.000000,0.250000,0,0);}
.m88_c00392{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);}
.m66_c00392{transform:matrix(0.360211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360211,0.000000,0.000000,0.250000,0,0);}
.maa_c00392{transform:matrix(0.361382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361382,0.000000,0.000000,0.250000,0,0);}
.m8a_c00392{transform:matrix(0.361780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361780,0.000000,0.000000,0.250000,0,0);}
.m59_c00392{transform:matrix(0.362404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362404,0.000000,0.000000,0.250000,0,0);}
.m23_c00392{transform:matrix(0.363986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363986,0.000000,0.000000,0.250000,0,0);}
.md6_c00392{transform:matrix(0.365148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365148,0.000000,0.000000,0.250000,0,0);}
.m51_c00392{transform:matrix(0.365234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365234,0.000000,0.000000,0.250000,0,0);}
.m2d_c00392{transform:matrix(0.365627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365627,0.000000,0.000000,0.250000,0,0);}
.m4_c00392{transform:matrix(0.368194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368194,0.000000,0.000000,0.250000,0,0);}
.m26_c00392{transform:matrix(0.368629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368629,0.000000,0.000000,0.250000,0,0);}
.ma5_c00392{transform:matrix(0.371806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371806,0.000000,0.000000,0.250000,0,0);}
.mac_c00392{transform:matrix(0.376737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376737,0.000000,0.000000,0.250000,0,0);}
.m24_c00392{transform:matrix(0.377430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377430,0.000000,0.000000,0.250000,0,0);}
.m17_c00392{transform:matrix(0.377667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377667,0.000000,0.000000,0.250000,0,0);}
.m6c_c00392{transform:matrix(0.378214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378214,0.000000,0.000000,0.250000,0,0);}
.m10_c00392{transform:matrix(0.379959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379959,0.000000,0.000000,0.250000,0,0);}
.m9b_c00392{transform:matrix(0.382087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382087,0.000000,0.000000,0.250000,0,0);}
.m1e_c00392{transform:matrix(0.385411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385411,0.000000,0.000000,0.250000,0,0);}
.ma8_c00392{transform:matrix(0.387627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387627,0.000000,0.000000,0.250000,0,0);}
.mcb_c00392{transform:matrix(0.390417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390417,0.000000,0.000000,0.250000,0,0);}
.m69_c00392{transform:matrix(0.394197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394197,0.000000,0.000000,0.250000,0,0);}
.m5_c00392{transform:matrix(0.394829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394829,0.000000,0.000000,0.250000,0,0);}
.m83_c00392{transform:matrix(0.399068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399068,0.000000,0.000000,0.250000,0,0);}
.m13_c00392{transform:matrix(0.405896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405896,0.000000,0.000000,0.250000,0,0);}
.me6_c00392{transform:matrix(0.410829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410829,0.000000,0.000000,0.250000,0,0);}
.mbf_c00392{transform:matrix(0.411930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411930,0.000000,0.000000,0.250000,0,0);}
.mc2_c00392{transform:matrix(0.439251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439251,0.000000,0.000000,0.250000,0,0);}
.m94_c00392{transform:matrix(0.480074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480074,0.000000,0.000000,0.250000,0,0);}
.v1_c00392{vertical-align:-37.045800px;}
.v3_c00392{vertical-align:-1.425600px;}
.v0_c00392{vertical-align:0.000000px;}
.v2_c00392{vertical-align:19.935234px;}
.ls1c_c00392{letter-spacing:-3.659040px;}
.ls4_c00392{letter-spacing:-3.014550px;}
.lse_c00392{letter-spacing:-2.577967px;}
.ls7_c00392{letter-spacing:-2.515590px;}
.ls15_c00392{letter-spacing:-2.328480px;}
.ls19_c00392{letter-spacing:-2.245327px;}
.lsa_c00392{letter-spacing:-1.832787px;}
.ls10_c00392{letter-spacing:-1.469167px;}
.ls17_c00392{letter-spacing:-1.466230px;}
.ls6_c00392{letter-spacing:-0.755370px;}
.ls9_c00392{letter-spacing:-0.510305px;}
.ls12_c00392{letter-spacing:-0.402494px;}
.ls3_c00392{letter-spacing:0.000000px;}
.ls8_c00392{letter-spacing:0.352183px;}
.lsd_c00392{letter-spacing:1.623600px;}
.ls2_c00392{letter-spacing:2.256844px;}
.ls18_c00392{letter-spacing:2.296810px;}
.lsc_c00392{letter-spacing:2.414966px;}
.ls1f_c00392{letter-spacing:2.514600px;}
.ls1e_c00392{letter-spacing:2.692810px;}
.ls1d_c00392{letter-spacing:2.851200px;}
.ls13_c00392{letter-spacing:3.284642px;}
.ls14_c00392{letter-spacing:3.326400px;}
.lsf_c00392{letter-spacing:3.573900px;}
.ls5_c00392{letter-spacing:3.593700px;}
.ls16_c00392{letter-spacing:3.841200px;}
.lsb_c00392{letter-spacing:3.920400px;}
.ls11_c00392{letter-spacing:4.059000px;}
.ls0_c00392{letter-spacing:8.553204px;}
.ls1a_c00392{letter-spacing:17.107200px;}
.ls1b_c00392{letter-spacing:51.321798px;}
.ls1_c00392{letter-spacing:925.025046px;}
.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;}
}
.ws3_c00392{word-spacing:-19.602000px;}
.ws4_c00392{word-spacing:-18.414050px;}
.ws1_c00392{word-spacing:-17.968500px;}
.ws2_c00392{word-spacing:-17.458195px;}
.ws8_c00392{word-spacing:-16.502270px;}
.ws5_c00392{word-spacing:-10.494050px;}
.ws6_c00392{word-spacing:-3.737448px;}
.ws9_c00392{word-spacing:0.000000px;}
.ws0_c00392{word-spacing:2.803086px;}
.ws7_c00392{word-spacing:4.671810px;}
._14_c00392{margin-left:-14.446674px;}
._a_c00392{margin-left:-9.096120px;}
._1c_c00392{margin-left:-7.906140px;}
._16_c00392{margin-left:-3.810312px;}
._22_c00392{margin-left:-1.878624px;}
._17_c00392{width:1.509354px;}
._d_c00392{width:2.946834px;}
._5_c00392{width:4.887432px;}
._c_c00392{width:6.716105px;}
._10_c00392{width:8.265510px;}
._e_c00392{width:9.455545px;}
._2_c00392{width:10.852974px;}
._6_c00392{width:13.296690px;}
._3_c00392{width:14.806044px;}
._1b_c00392{width:16.243524px;}
._9_c00392{width:21.274308px;}
._1a_c00392{width:22.640310px;}
._f_c00392{width:23.646546px;}
._b_c00392{width:24.724656px;}
._13_c00392{width:26.880876px;}
._19_c00392{width:29.261628px;}
._11_c00392{width:33.309485px;}
._8_c00392{width:35.972937px;}
._7_c00392{width:38.288428px;}
._1_c00392{width:39.961944px;}
._4_c00392{width:45.424368px;}
._18_c00392{width:47.583360px;}
._12_c00392{width:49.521186px;}
._15_c00392{width:51.704928px;}
._0_c00392{width:64.542852px;}
._20_c00392{width:94.743000px;}
._21_c00392{width:156.239424px;}
._1f_c00392{width:189.150463px;}
._1d_c00392{width:250.500043px;}
._1e_c00392{width:270.627779px;}
.fc0_c00392{color:transparent;}
.fs11_c00392{font-size:17.107200px;}
.fs3_c00392{font-size:21.582000px;}
.fs19_c00392{font-size:27.720000px;}
.fs1a_c00392{font-size:31.086000px;}
.fs6_c00392{font-size:32.472000px;}
.fs9_c00392{font-size:41.976198px;}
.fse_c00392{font-size:45.936198px;}
.fs1b_c00392{font-size:50.292000px;}
.fs13_c00392{font-size:51.321798px;}
.fs18_c00392{font-size:53.856198px;}
.fs4_c00392{font-size:55.836198px;}
.fs17_c00392{font-size:57.024000px;}
.fs12_c00392{font-size:61.776198px;}
.fs10_c00392{font-size:63.558000px;}
.fsf_c00392{font-size:64.152198px;}
.fsc_c00392{font-size:66.528000px;}
.fs15_c00392{font-size:67.122198px;}
.fs14_c00392{font-size:70.884000px;}
.fs8_c00392{font-size:71.478000px;}
.fs1_c00392{font-size:71.874000px;}
.fs2_c00392{font-size:72.864000px;}
.fs7_c00392{font-size:73.656198px;}
.fsd_c00392{font-size:76.824000px;}
.fsa_c00392{font-size:77.616198px;}
.fs5_c00392{font-size:78.408000px;}
.fsb_c00392{font-size:81.180000px;}
.fs0_c00392{font-size:86.130000px;}
.fs16_c00392{font-size:104.544000px;}
.y0_c00392{bottom:0.000000px;}
.y20_c00392{bottom:43.387785px;}
.y1_c00392{bottom:76.500000px;}
.y1f_c00392{bottom:139.615785px;}
.y22_c00392{bottom:169.558335px;}
.y1e_c00392{bottom:170.627535px;}
.y21_c00392{bottom:175.612185px;}
.y1b_c00392{bottom:207.693135px;}
.y1d_c00392{bottom:208.049535px;}
.y1c_c00392{bottom:212.682735px;}
.y1a_c00392{bottom:242.620335px;}
.y19_c00392{bottom:274.696335px;}
.y18_c00392{bottom:303.559785px;}
.y17_c00392{bottom:308.549385px;}
.y16_c00392{bottom:340.986735px;}
.y15_c00392{bottom:405.133785px;}
.y14_c00392{bottom:437.571135px;}
.y13_c00392{bottom:470.359935px;}
.y12_c00392{bottom:502.792335px;}
.y11_c00392{bottom:535.224735px;}
.y10_c00392{bottom:568.013535px;}
.yf_c00392{bottom:600.084585px;}
.ye_c00392{bottom:632.516985px;}
.yc_c00392{bottom:664.949385px;}
.yd_c00392{bottom:668.156985px;}
.yb_c00392{bottom:729.101385px;}
.ya_c00392{bottom:761.533785px;}
.y9_c00392{bottom:794.322585px;}
.y8_c00392{bottom:806.083785px;}
.y7_c00392{bottom:827.111385px;}
.y6_c00392{bottom:859.900185px;}
.y5_c00392{bottom:892.332585px;}
.y4_c00392{bottom:919.418985px;}
.y3_c00392{bottom:925.121385px;}
.y2_c00392{bottom:1074.809385px;}
.h13_c00392{height:11.393395px;}
.h5_c00392{height:22.509352px;}
.h1b_c00392{height:28.911094px;}
.h9_c00392{height:33.867281px;}
.h15_c00392{height:34.180317px;}
.hc_c00392{height:41.197343px;}
.h11_c00392{height:45.083866px;}
.h14_c00392{height:47.910019px;}
.h1c_c00392{height:52.452984px;}
.h19_c00392{height:52.856913px;}
.h7_c00392{height:55.699879px;}
.h18_c00392{height:55.965938px;}
.h1a_c00392{height:62.961874px;}
.hf_c00392{height:65.293594px;}
.h12_c00392{height:66.908738px;}
.hb_c00392{height:70.151748px;}
.h3_c00392{height:70.540400px;}
.h4_c00392{height:71.512031px;}
.ha_c00392{height:72.289530px;}
.h6_c00392{height:72.435516px;}
.h10_c00392{height:75.361043px;}
.hd_c00392{height:76.176054px;}
.h8_c00392{height:76.914879px;}
.he_c00392{height:79.673730px;}
.h2_c00392{height:84.531885px;}
.h16_c00392{height:89.964755px;}
.h17_c00392{height:109.036125px;}
.h1_c00392{height:1110.000000px;}
.h0_c00392{height:1263.000000px;}
.w1_c00392{width:775.500000px;}
.w0_c00392{width:892.500000px;}
.x0_c00392{left:0.000000px;}
.x1_c00392{left:58.500000px;}
.x41_c00392{left:93.314085px;}
.x4_c00392{left:94.967385px;}
.x7a_c00392{left:105.258435px;}
.x5e_c00392{left:115.123785px;}
.x1a_c00392{left:116.371185px;}
.x5_c00392{left:126.637485px;}
.x63_c00392{left:136.091985px;}
.x42_c00392{left:137.527485px;}
.x47_c00392{left:146.734485px;}
.x6_c00392{left:148.174935px;}
.x69_c00392{left:150.486585px;}
.x48_c00392{left:151.922085px;}
.x3b_c00392{left:157.832385px;}
.x53_c00392{left:158.866935px;}
.x43_c00392{left:160.059885px;}
.x55_c00392{left:168.915435px;}
.x7_c00392{left:170.128185px;}
.x74_c00392{left:171.177585px;}
.x3c_c00392{left:179.939085px;}
.x6f_c00392{left:181.008285px;}
.x81_c00392{left:182.062635px;}
.x44_c00392{left:183.310035px;}
.x27_c00392{left:191.289435px;}
.x1b_c00392{left:192.635835px;}
.x6a_c00392{left:193.843635px;}
.x45_c00392{left:197.719485px;}
.x28_c00392{left:201.347835px;}
.x30_c00392{left:202.931835px;}
.x1c_c00392{left:214.153485px;}
.x6c_c00392{left:215.296935px;}
.x49_c00392{left:225.355335px;}
.x7b_c00392{left:226.394835px;}
.x29_c00392{left:235.181085px;}
.x8_c00392{left:236.581935px;}
.x82_c00392{left:238.388685px;}
.x7e_c00392{left:243.383235px;}
.x46_c00392{left:246.902685px;}
.x1d_c00392{left:248.209485px;}
.x66_c00392{left:256.035435px;}
.x2a_c00392{left:257.683785px;}
.x5f_c00392{left:259.183635px;}
.x9_c00392{left:269.355885px;}
.x70_c00392{left:270.628035px;}
.x2b_c00392{left:280.631985px;}
.xa_c00392{left:291.309135px;}
.x67_c00392{left:302.164485px;}
.x5b_c00392{left:303.302985px;}
.x3d_c00392{left:312.509985px;}
.x4a_c00392{left:314.772135px;}
.x1e_c00392{left:324.488985px;}
.x7c_c00392{left:326.572935px;}
.x1f_c00392{left:334.641435px;}
.xb_c00392{left:336.269985px;}
.x7f_c00392{left:337.324335px;}
.xc_c00392{left:346.882785px;}
.x71_c00392{left:347.996535px;}
.x7d_c00392{left:350.035935px;}
.x80_c00392{left:355.510635px;}
.x3e_c00392{left:357.396585px;}
.x60_c00392{left:358.480635px;}
.x34_c00392{left:369.370635px;}
.x6b_c00392{left:370.756635px;}
.x75_c00392{left:372.563385px;}
.xd_c00392{left:380.290335px;}
.x6d_c00392{left:382.106985px;}
.x4b_c00392{left:392.200035px;}
.x76_c00392{left:394.165185px;}
.xe_c00392{left:402.689085px;}
.x83_c00392{left:404.278035px;}
.x35_c00392{left:413.935485px;}
.x77_c00392{left:417.212385px;}
.xf_c00392{left:424.612635px;}
.x56_c00392{left:426.043185px;}
.x20_c00392{left:435.329385px;}
.x61_c00392{left:436.418385px;}
.x6e_c00392{left:439.655685px;}
.x10_c00392{left:446.367885px;}
.x21_c00392{left:447.387585px;}
.x2c_c00392{left:457.574685px;}
.x22_c00392{left:468.370635px;}
.x57_c00392{left:469.860585px;}
.x11_c00392{left:479.493285px;}
.x51_c00392{left:480.611985px;}
.x84_c00392{left:483.403785px;}
.x4c_c00392{left:490.348635px;}
.x64_c00392{left:492.293985px;}
.x78_c00392{left:501.080235px;}
.x2d_c00392{left:502.352385px;}
.x12_c00392{left:512.984985px;}
.x5c_c00392{left:514.390785px;}
.x18_c00392{left:517.058835px;}
.x19_c00392{left:521.256435px;}
.x36_c00392{left:523.508685px;}
.x52_c00392{left:525.439185px;}
.x85_c00392{left:527.434035px;}
.x2e_c00392{left:535.428285px;}
.x4d_c00392{left:536.527185px;}
.x58_c00392{left:546.367785px;}
.x4e_c00392{left:557.505285px;}
.x62_c00392{left:563.296785px;}
.x37_c00392{left:567.529035px;}
.x3f_c00392{left:568.618035px;}
.x33_c00392{left:572.483985px;}
.x59_c00392{left:579.156585px;}
.x65_c00392{left:590.353485px;}
.x23_c00392{left:592.823535px;}
.x13_c00392{left:600.124785px;}
.x5a_c00392{left:601.713735px;}
.x24_c00392{left:603.466035px;}
.x79_c00392{left:611.207835px;}
.x38_c00392{left:612.781935px;}
.x2f_c00392{left:622.771035px;}
.x54_c00392{left:624.528285px;}
.x14_c00392{left:634.175835px;}
.x25_c00392{left:637.502235px;}
.x4f_c00392{left:645.961785px;}
.x31_c00392{left:656.272635px;}
.x5d_c00392{left:657.663585px;}
.x86_c00392{left:660.287085px;}
.x15_c00392{left:666.781485px;}
.x50_c00392{left:668.281335px;}
.x16_c00392{left:678.715935px;}
.x2_c00392{left:680.453385px;}
.x40_c00392{left:689.393085px;}
.x72_c00392{left:691.046385px;}
.x3_c00392{left:692.927385px;}
.x39_c00392{left:697.976385px;}
.x26_c00392{left:699.238635px;}
.x17_c00392{left:700.783035px;}
.x3a_c00392{left:711.885885px;}
.x32_c00392{left:723.572835px;}
.x73_c00392{left:734.170785px;}
.x68_c00392{left:756.049785px;}
@media print{
.v1_c00392{vertical-align:-32.929600pt;}
.v3_c00392{vertical-align:-1.267200pt;}
.v0_c00392{vertical-align:0.000000pt;}
.v2_c00392{vertical-align:17.720208pt;}
.ls1c_c00392{letter-spacing:-3.252480pt;}
.ls4_c00392{letter-spacing:-2.679600pt;}
.lse_c00392{letter-spacing:-2.291526pt;}
.ls7_c00392{letter-spacing:-2.236080pt;}
.ls15_c00392{letter-spacing:-2.069760pt;}
.ls19_c00392{letter-spacing:-1.995846pt;}
.lsa_c00392{letter-spacing:-1.629144pt;}
.ls10_c00392{letter-spacing:-1.305926pt;}
.ls17_c00392{letter-spacing:-1.303315pt;}
.ls6_c00392{letter-spacing:-0.671440pt;}
.ls9_c00392{letter-spacing:-0.453605pt;}
.ls12_c00392{letter-spacing:-0.357773pt;}
.ls3_c00392{letter-spacing:0.000000pt;}
.ls8_c00392{letter-spacing:0.313051pt;}
.lsd_c00392{letter-spacing:1.443200pt;}
.ls2_c00392{letter-spacing:2.006083pt;}
.ls18_c00392{letter-spacing:2.041609pt;}
.lsc_c00392{letter-spacing:2.146637pt;}
.ls1f_c00392{letter-spacing:2.235200pt;}
.ls1e_c00392{letter-spacing:2.393609pt;}
.ls1d_c00392{letter-spacing:2.534400pt;}
.ls13_c00392{letter-spacing:2.919682pt;}
.ls14_c00392{letter-spacing:2.956800pt;}
.lsf_c00392{letter-spacing:3.176800pt;}
.ls5_c00392{letter-spacing:3.194400pt;}
.ls16_c00392{letter-spacing:3.414400pt;}
.lsb_c00392{letter-spacing:3.484800pt;}
.ls11_c00392{letter-spacing:3.608000pt;}
.ls0_c00392{letter-spacing:7.602848pt;}
.ls1a_c00392{letter-spacing:15.206400pt;}
.ls1b_c00392{letter-spacing:45.619376pt;}
.ls1_c00392{letter-spacing:822.244485pt;}
.ws3_c00392{word-spacing:-17.424000pt;}
.ws4_c00392{word-spacing:-16.368044pt;}
.ws1_c00392{word-spacing:-15.972000pt;}
.ws2_c00392{word-spacing:-15.518395pt;}
.ws8_c00392{word-spacing:-14.668685pt;}
.ws5_c00392{word-spacing:-9.328044pt;}
.ws6_c00392{word-spacing:-3.322176pt;}
.ws9_c00392{word-spacing:0.000000pt;}
.ws0_c00392{word-spacing:2.491632pt;}
.ws7_c00392{word-spacing:4.152720pt;}
._14_c00392{margin-left:-12.841488pt;}
._a_c00392{margin-left:-8.085440pt;}
._1c_c00392{margin-left:-7.027680pt;}
._16_c00392{margin-left:-3.386944pt;}
._22_c00392{margin-left:-1.669888pt;}
._17_c00392{width:1.341648pt;}
._d_c00392{width:2.619408pt;}
._5_c00392{width:4.344384pt;}
._c_c00392{width:5.969871pt;}
._10_c00392{width:7.347120pt;}
._e_c00392{width:8.404929pt;}
._2_c00392{width:9.647088pt;}
._6_c00392{width:11.819280pt;}
._3_c00392{width:13.160928pt;}
._1b_c00392{width:14.438688pt;}
._9_c00392{width:18.910496pt;}
._1a_c00392{width:20.124720pt;}
._f_c00392{width:21.019152pt;}
._b_c00392{width:21.977472pt;}
._13_c00392{width:23.894112pt;}
._19_c00392{width:26.010336pt;}
._11_c00392{width:29.608431pt;}
._8_c00392{width:31.975944pt;}
._7_c00392{width:34.034158pt;}
._1_c00392{width:35.521728pt;}
._4_c00392{width:40.377216pt;}
._18_c00392{width:42.296320pt;}
._12_c00392{width:44.018832pt;}
._15_c00392{width:45.959936pt;}
._0_c00392{width:57.371424pt;}
._20_c00392{width:84.216000pt;}
._21_c00392{width:138.879488pt;}
._1f_c00392{width:168.133745pt;}
._1d_c00392{width:222.666705pt;}
._1e_c00392{width:240.558026pt;}
.fs11_c00392{font-size:15.206400pt;}
.fs3_c00392{font-size:19.184000pt;}
.fs19_c00392{font-size:24.640000pt;}
.fs1a_c00392{font-size:27.632000pt;}
.fs6_c00392{font-size:28.864000pt;}
.fs9_c00392{font-size:37.312176pt;}
.fse_c00392{font-size:40.832176pt;}
.fs1b_c00392{font-size:44.704000pt;}
.fs13_c00392{font-size:45.619376pt;}
.fs18_c00392{font-size:47.872176pt;}
.fs4_c00392{font-size:49.632176pt;}
.fs17_c00392{font-size:50.688000pt;}
.fs12_c00392{font-size:54.912176pt;}
.fs10_c00392{font-size:56.496000pt;}
.fsf_c00392{font-size:57.024176pt;}
.fsc_c00392{font-size:59.136000pt;}
.fs15_c00392{font-size:59.664176pt;}
.fs14_c00392{font-size:63.008000pt;}
.fs8_c00392{font-size:63.536000pt;}
.fs1_c00392{font-size:63.888000pt;}
.fs2_c00392{font-size:64.768000pt;}
.fs7_c00392{font-size:65.472176pt;}
.fsd_c00392{font-size:68.288000pt;}
.fsa_c00392{font-size:68.992176pt;}
.fs5_c00392{font-size:69.696000pt;}
.fsb_c00392{font-size:72.160000pt;}
.fs0_c00392{font-size:76.560000pt;}
.fs16_c00392{font-size:92.928000pt;}
.y0_c00392{bottom:0.000000pt;}
.y20_c00392{bottom:38.566920pt;}
.y1_c00392{bottom:68.000000pt;}
.y1f_c00392{bottom:124.102920pt;}
.y22_c00392{bottom:150.718520pt;}
.y1e_c00392{bottom:151.668920pt;}
.y21_c00392{bottom:156.099720pt;}
.y1b_c00392{bottom:184.616120pt;}
.y1d_c00392{bottom:184.932920pt;}
.y1c_c00392{bottom:189.051320pt;}
.y1a_c00392{bottom:215.662520pt;}
.y19_c00392{bottom:244.174520pt;}
.y18_c00392{bottom:269.830920pt;}
.y17_c00392{bottom:274.266120pt;}
.y16_c00392{bottom:303.099320pt;}
.y15_c00392{bottom:360.118920pt;}
.y14_c00392{bottom:388.952120pt;}
.y13_c00392{bottom:418.097720pt;}
.y12_c00392{bottom:446.926520pt;}
.y11_c00392{bottom:475.755320pt;}
.y10_c00392{bottom:504.900920pt;}
.yf_c00392{bottom:533.408520pt;}
.ye_c00392{bottom:562.237320pt;}
.yc_c00392{bottom:591.066120pt;}
.yd_c00392{bottom:593.917320pt;}
.yb_c00392{bottom:648.090120pt;}
.ya_c00392{bottom:676.918920pt;}
.y9_c00392{bottom:706.064520pt;}
.y8_c00392{bottom:716.518920pt;}
.y7_c00392{bottom:735.210120pt;}
.y6_c00392{bottom:764.355720pt;}
.y5_c00392{bottom:793.184520pt;}
.y4_c00392{bottom:817.261320pt;}
.y3_c00392{bottom:822.330120pt;}
.y2_c00392{bottom:955.386120pt;}
.h13_c00392{height:10.127462pt;}
.h5_c00392{height:20.008313pt;}
.h1b_c00392{height:25.698750pt;}
.h9_c00392{height:30.104250pt;}
.h15_c00392{height:30.382504pt;}
.hc_c00392{height:36.619860pt;}
.h11_c00392{height:40.074548pt;}
.h14_c00392{height:42.586684pt;}
.h1c_c00392{height:46.624875pt;}
.h19_c00392{height:46.983923pt;}
.h7_c00392{height:49.511004pt;}
.h18_c00392{height:49.747500pt;}
.h1a_c00392{height:55.966110pt;}
.hf_c00392{height:58.038750pt;}
.h12_c00392{height:59.474434pt;}
.hb_c00392{height:62.357109pt;}
.h3_c00392{height:62.702578pt;}
.h4_c00392{height:63.566250pt;}
.ha_c00392{height:64.257360pt;}
.h6_c00392{height:64.387125pt;}
.h10_c00392{height:66.987594pt;}
.hd_c00392{height:67.712048pt;}
.h8_c00392{height:68.368781pt;}
.he_c00392{height:70.821094pt;}
.h2_c00392{height:75.139453pt;}
.h16_c00392{height:79.968671pt;}
.h17_c00392{height:96.921000pt;}
.h1_c00392{height:986.666667pt;}
.h0_c00392{height:1122.666667pt;}
.w1_c00392{width:689.333333pt;}
.w0_c00392{width:793.333333pt;}
.x0_c00392{left:0.000000pt;}
.x1_c00392{left:52.000000pt;}
.x41_c00392{left:82.945853pt;}
.x4_c00392{left:84.415453pt;}
.x7a_c00392{left:93.563053pt;}
.x5e_c00392{left:102.332253pt;}
.x1a_c00392{left:103.441053pt;}
.x5_c00392{left:112.566653pt;}
.x63_c00392{left:120.970653pt;}
.x42_c00392{left:122.246653pt;}
.x47_c00392{left:130.430653pt;}
.x6_c00392{left:131.711053pt;}
.x69_c00392{left:133.765853pt;}
.x48_c00392{left:135.041853pt;}
.x3b_c00392{left:140.295453pt;}
.x53_c00392{left:141.215053pt;}
.x43_c00392{left:142.275453pt;}
.x55_c00392{left:150.147053pt;}
.x7_c00392{left:151.225053pt;}
.x74_c00392{left:152.157853pt;}
.x3c_c00392{left:159.945853pt;}
.x6f_c00392{left:160.896253pt;}
.x81_c00392{left:161.833453pt;}
.x44_c00392{left:162.942253pt;}
.x27_c00392{left:170.035053pt;}
.x1b_c00392{left:171.231853pt;}
.x6a_c00392{left:172.305453pt;}
.x45_c00392{left:175.750653pt;}
.x28_c00392{left:178.975853pt;}
.x30_c00392{left:180.383853pt;}
.x1c_c00392{left:190.358653pt;}
.x6c_c00392{left:191.375053pt;}
.x49_c00392{left:200.315853pt;}
.x7b_c00392{left:201.239853pt;}
.x29_c00392{left:209.049853pt;}
.x8_c00392{left:210.295053pt;}
.x82_c00392{left:211.901053pt;}
.x7e_c00392{left:216.340653pt;}
.x46_c00392{left:219.469053pt;}
.x1d_c00392{left:220.630653pt;}
.x66_c00392{left:227.587053pt;}
.x2a_c00392{left:229.052253pt;}
.x5f_c00392{left:230.385453pt;}
.x9_c00392{left:239.427453pt;}
.x70_c00392{left:240.558253pt;}
.x2b_c00392{left:249.450653pt;}
.xa_c00392{left:258.941453pt;}
.x67_c00392{left:268.590653pt;}
.x5b_c00392{left:269.602653pt;}
.x3d_c00392{left:277.786653pt;}
.x4a_c00392{left:279.797453pt;}
.x1e_c00392{left:288.434653pt;}
.x7c_c00392{left:290.287053pt;}
.x1f_c00392{left:297.459053pt;}
.xb_c00392{left:298.906653pt;}
.x7f_c00392{left:299.843853pt;}
.xc_c00392{left:308.340253pt;}
.x71_c00392{left:309.330253pt;}
.x7d_c00392{left:311.143053pt;}
.x80_c00392{left:316.009453pt;}
.x3e_c00392{left:317.685853pt;}
.x60_c00392{left:318.649453pt;}
.x34_c00392{left:328.329453pt;}
.x6b_c00392{left:329.561453pt;}
.x75_c00392{left:331.167453pt;}
.xd_c00392{left:338.035853pt;}
.x6d_c00392{left:339.650653pt;}
.x4b_c00392{left:348.622253pt;}
.x76_c00392{left:350.369053pt;}
.xe_c00392{left:357.945853pt;}
.x83_c00392{left:359.358253pt;}
.x35_c00392{left:367.942653pt;}
.x77_c00392{left:370.855453pt;}
.xf_c00392{left:377.433453pt;}
.x56_c00392{left:378.705053pt;}
.x20_c00392{left:386.959453pt;}
.x61_c00392{left:387.927453pt;}
.x6e_c00392{left:390.805053pt;}
.x10_c00392{left:396.771453pt;}
.x21_c00392{left:397.677853pt;}
.x2c_c00392{left:406.733053pt;}
.x22_c00392{left:416.329453pt;}
.x57_c00392{left:417.653853pt;}
.x11_c00392{left:426.216253pt;}
.x51_c00392{left:427.210653pt;}
.x84_c00392{left:429.692253pt;}
.x4c_c00392{left:435.865453pt;}
.x64_c00392{left:437.594653pt;}
.x78_c00392{left:445.404653pt;}
.x2d_c00392{left:446.535453pt;}
.x12_c00392{left:455.986653pt;}
.x5c_c00392{left:457.236253pt;}
.x18_c00392{left:459.607853pt;}
.x19_c00392{left:463.339053pt;}
.x36_c00392{left:465.341053pt;}
.x52_c00392{left:467.057053pt;}
.x85_c00392{left:468.830253pt;}
.x2e_c00392{left:475.936253pt;}
.x4d_c00392{left:476.913053pt;}
.x58_c00392{left:485.660253pt;}
.x4e_c00392{left:495.560253pt;}
.x62_c00392{left:500.708253pt;}
.x37_c00392{left:504.470253pt;}
.x3f_c00392{left:505.438253pt;}
.x33_c00392{left:508.874653pt;}
.x59_c00392{left:514.805853pt;}
.x65_c00392{left:524.758653pt;}
.x23_c00392{left:526.954253pt;}
.x13_c00392{left:533.444253pt;}
.x5a_c00392{left:534.856653pt;}
.x24_c00392{left:536.414253pt;}
.x79_c00392{left:543.295853pt;}
.x38_c00392{left:544.695053pt;}
.x2f_c00392{left:553.574253pt;}
.x54_c00392{left:555.136253pt;}
.x14_c00392{left:563.711853pt;}
.x25_c00392{left:566.668653pt;}
.x4f_c00392{left:574.188253pt;}
.x31_c00392{left:583.353453pt;}
.x5d_c00392{left:584.589853pt;}
.x86_c00392{left:586.921853pt;}
.x15_c00392{left:592.694653pt;}
.x50_c00392{left:594.027853pt;}
.x16_c00392{left:603.303053pt;}
.x2_c00392{left:604.847453pt;}
.x40_c00392{left:612.793853pt;}
.x72_c00392{left:614.263453pt;}
.x3_c00392{left:615.935453pt;}
.x39_c00392{left:620.423453pt;}
.x26_c00392{left:621.545453pt;}
.x17_c00392{left:622.918253pt;}
.x3a_c00392{left:632.787453pt;}
.x32_c00392{left:643.175853pt;}
.x73_c00392{left:652.596253pt;}
.x68_c00392{left:672.044253pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_67ef9cd852a896ae5a69a791.woff2')format("woff");}.ff1_c00393{font-family:ff1_c00393;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00393;src:url('chunks/assets/font_73ab8a55eb41318755a25d0a.woff2')format("woff");}.ff2_c00393{font-family:ff2_c00393;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00393;src:url('chunks/assets/font_81a4942f407ef115055da3b7.woff2')format("woff");}.ff3_c00393{font-family:ff3_c00393;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00393;src:url('chunks/assets/font_85f790074f4bce31f4605d40.woff2')format("woff");}.ff4_c00393{font-family:ff4_c00393;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00393;src:url('chunks/assets/font_1d2fa5098c502f8e65360133.woff2')format("woff");}.ff5_c00393{font-family:ff5_c00393;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00393;src:url('chunks/assets/font_b7efaac680c8f14b0c5fcc04.woff2')format("woff");}.ff6_c00393{font-family:ff6_c00393;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mbf_c00393{transform:matrix(0.037501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.037501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.037501,0.000000,0.000000,0.250000,0,0);}
.mfa_c00393{transform:matrix(0.045239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045239,0.000000,0.000000,0.250000,0,0);}
.m8f_c00393{transform:matrix(0.048612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048612,0.000000,0.000000,0.250000,0,0);}
.m9a_c00393{transform:matrix(0.057693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.057693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.057693,0.000000,0.000000,0.250000,0,0);}
.m79_c00393{transform:matrix(0.072941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072941,0.000000,0.000000,0.250000,0,0);}
.mbe_c00393{transform:matrix(0.073750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073750,0.000000,0.000000,0.250000,0,0);}
.mfd_c00393{transform:matrix(0.085714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085714,0.000000,0.000000,0.250000,0,0);}
.m84_c00393{transform:matrix(0.099507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099507,0.000000,0.000000,0.250000,0,0);}
.m9b_c00393{transform:matrix(0.102565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102565,0.000000,0.000000,0.250000,0,0);}
.m9c_c00393{transform:matrix(0.128206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128206,0.000000,0.000000,0.250000,0,0);}
.mca_c00393{transform:matrix(0.133968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133968,0.000000,0.000000,0.250000,0,0);}
.m100_c00393{transform:matrix(0.143219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143219,0.000000,0.000000,0.250000,0,0);}
.mc2_c00393{transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00393{transform:matrix(0.145448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145448,0.000000,0.000000,0.250000,0,0);}
.m99_c00393{transform:matrix(0.147436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147436,0.000000,0.000000,0.250000,0,0);}
.mfb_c00393{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00393{transform:matrix(0.152777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152777,0.000000,0.000000,0.250000,0,0);}
.m23_c00393{transform:matrix(0.157222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157222,0.000000,0.000000,0.250000,0,0);}
.mff_c00393{transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);}
.mc0_c00393{transform:matrix(0.170833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170833,0.000000,0.000000,0.250000,0,0);}
.mf9_c00393{transform:matrix(0.176190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176190,0.000000,0.000000,0.250000,0,0);}
.mcf_c00393{transform:matrix(0.177381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177381,0.000000,0.000000,0.250000,0,0);}
.mc1_c00393{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m98_c00393{transform:matrix(0.182693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182693,0.000000,0.000000,0.250000,0,0);}
.m38_c00393{transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);}
.mfe_c00393{transform:matrix(0.189285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189285,0.000000,0.000000,0.250000,0,0);}
.m85_c00393{transform:matrix(0.189885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189885,0.000000,0.000000,0.250000,0,0);}
.m102_c00393{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m86_c00393{transform:matrix(0.193096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193096,0.000000,0.000000,0.250000,0,0);}
.m4a_c00393{transform:matrix(0.203572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203572,0.000000,0.000000,0.250000,0,0);}
.mfc_c00393{transform:matrix(0.205714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205714,0.000000,0.000000,0.250000,0,0);}
.m3b_c00393{transform:matrix(0.206949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206949,0.000000,0.000000,0.250000,0,0);}
.md0_c00393{transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);}
.mf3_c00393{transform:matrix(0.207169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207169,0.000000,0.000000,0.250000,0,0);}
.m43_c00393{transform:matrix(0.207670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207670,0.000000,0.000000,0.250000,0,0);}
.m91_c00393{transform:matrix(0.208004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208004,0.000000,0.000000,0.250000,0,0);}
.m4c_c00393{transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);}
.m49_c00393{transform:matrix(0.213265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213265,0.000000,0.000000,0.250000,0,0);}
.m4b_c00393{transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);}
.m80_c00393{transform:matrix(0.214614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214614,0.000000,0.000000,0.250000,0,0);}
.m90_c00393{transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);}
.mcc_c00393{transform:matrix(0.223915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223915,0.000000,0.000000,0.250000,0,0);}
.m5c_c00393{transform:matrix(0.224384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224384,0.000000,0.000000,0.250000,0,0);}
.m6_c00393{transform:matrix(0.229647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229647,0.000000,0.000000,0.250000,0,0);}
.mf6_c00393{transform:matrix(0.230770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230770,0.000000,0.000000,0.250000,0,0);}
.m4f_c00393{transform:matrix(0.232345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232345,0.000000,0.000000,0.250000,0,0);}
.m6d_c00393{transform:matrix(0.232927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232927,0.000000,0.000000,0.250000,0,0);}
.mc8_c00393{transform:matrix(0.234051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234051,0.000000,0.000000,0.250000,0,0);}
.m87_c00393{transform:matrix(0.242447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242447,0.000000,0.000000,0.250000,0,0);}
.mbb_c00393{transform:matrix(0.243216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243216,0.000000,0.000000,0.250000,0,0);}
.m73_c00393{transform:matrix(0.246817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246817,0.000000,0.000000,0.250000,0,0);}
.mb7_c00393{transform:matrix(0.247819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247819,0.000000,0.000000,0.250000,0,0);}
.mb4_c00393{transform:matrix(0.248221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248221,0.000000,0.000000,0.250000,0,0);}
.m0_c00393{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2_c00393{transform:matrix(0.250059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250059,0.000000,0.000000,0.250000,0,0);}
.m9d_c00393{transform:matrix(0.250110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250110,0.000000,0.000000,0.250000,0,0);}
.m89_c00393{transform:matrix(0.254048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254048,0.000000,0.000000,0.250000,0,0);}
.mf0_c00393{transform:matrix(0.255999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255999,0.000000,0.000000,0.250000,0,0);}
.m1_c00393{transform:matrix(0.259068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259068,0.000000,0.000000,0.250000,0,0);}
.mf7_c00393{transform:matrix(0.262785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262785,0.000000,0.000000,0.250000,0,0);}
.mc5_c00393{transform:matrix(0.263276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263276,0.000000,0.000000,0.250000,0,0);}
.ma2_c00393{transform:matrix(0.263430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263430,0.000000,0.000000,0.250000,0,0);}
.m7b_c00393{transform:matrix(0.264056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264056,0.000000,0.000000,0.250000,0,0);}
.m12_c00393{transform:matrix(0.265021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265021,0.000000,0.000000,0.250000,0,0);}
.m7f_c00393{transform:matrix(0.265297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265297,0.000000,0.000000,0.250000,0,0);}
.mac_c00393{transform:matrix(0.265309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265309,0.000000,0.000000,0.250000,0,0);}
.m103_c00393{transform:matrix(0.265944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265944,0.000000,0.000000,0.250000,0,0);}
.mc9_c00393{transform:matrix(0.269419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269419,0.000000,0.000000,0.250000,0,0);}
.mb_c00393{transform:matrix(0.270034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270034,0.000000,0.000000,0.250000,0,0);}
.m75_c00393{transform:matrix(0.270118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270118,0.000000,0.000000,0.250000,0,0);}
.m42_c00393{transform:matrix(0.270342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270342,0.000000,0.000000,0.250000,0,0);}
.m37_c00393{transform:matrix(0.271428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271428,0.000000,0.000000,0.250000,0,0);}
.mb1_c00393{transform:matrix(0.271826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271826,0.000000,0.000000,0.250000,0,0);}
.m4e_c00393{transform:matrix(0.272067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272067,0.000000,0.000000,0.250000,0,0);}
.m35_c00393{transform:matrix(0.272692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272692,0.000000,0.000000,0.250000,0,0);}
.me5_c00393{transform:matrix(0.273009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273009,0.000000,0.000000,0.250000,0,0);}
.mf4_c00393{transform:matrix(0.275736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275736,0.000000,0.000000,0.250000,0,0);}
.m5e_c00393{transform:matrix(0.276595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276595,0.000000,0.000000,0.250000,0,0);}
.md_c00393{transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);}
.m96_c00393{transform:matrix(0.278071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278071,0.000000,0.000000,0.250000,0,0);}
.m52_c00393{transform:matrix(0.280311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280311,0.000000,0.000000,0.250000,0,0);}
.m36_c00393{transform:matrix(0.280700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280700,0.000000,0.000000,0.250000,0,0);}
.m44_c00393{transform:matrix(0.281229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281229,0.000000,0.000000,0.250000,0,0);}
.m6b_c00393{transform:matrix(0.281449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281449,0.000000,0.000000,0.250000,0,0);}
.ma3_c00393{transform:matrix(0.281676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281676,0.000000,0.000000,0.250000,0,0);}
.m7e_c00393{transform:matrix(0.283335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283335,0.000000,0.000000,0.250000,0,0);}
.m1c_c00393{transform:matrix(0.283515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283515,0.000000,0.000000,0.250000,0,0);}
.m26_c00393{transform:matrix(0.284136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284136,0.000000,0.000000,0.250000,0,0);}
.mdd_c00393{transform:matrix(0.284247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284247,0.000000,0.000000,0.250000,0,0);}
.m5d_c00393{transform:matrix(0.284267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284267,0.000000,0.000000,0.250000,0,0);}
.mc3_c00393{transform:matrix(0.284417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284417,0.000000,0.000000,0.250000,0,0);}
.ma6_c00393{transform:matrix(0.284684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284684,0.000000,0.000000,0.250000,0,0);}
.m13_c00393{transform:matrix(0.285331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285331,0.000000,0.000000,0.250000,0,0);}
.ma5_c00393{transform:matrix(0.285530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285530,0.000000,0.000000,0.250000,0,0);}
.mbd_c00393{transform:matrix(0.285674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285674,0.000000,0.000000,0.250000,0,0);}
.m53_c00393{transform:matrix(0.286098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286098,0.000000,0.000000,0.250000,0,0);}
.m18_c00393{transform:matrix(0.287241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287241,0.000000,0.000000,0.250000,0,0);}
.md4_c00393{transform:matrix(0.287842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287842,0.000000,0.000000,0.250000,0,0);}
.m65_c00393{transform:matrix(0.287919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287919,0.000000,0.000000,0.250000,0,0);}
.me6_c00393{transform:matrix(0.288682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288682,0.000000,0.000000,0.250000,0,0);}
.m1b_c00393{transform:matrix(0.288967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288967,0.000000,0.000000,0.250000,0,0);}
.m41_c00393{transform:matrix(0.289769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289769,0.000000,0.000000,0.250000,0,0);}
.me1_c00393{transform:matrix(0.289782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289782,0.000000,0.000000,0.250000,0,0);}
.m10_c00393{transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);}
.me9_c00393{transform:matrix(0.290597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290597,0.000000,0.000000,0.250000,0,0);}
.m4d_c00393{transform:matrix(0.291055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291055,0.000000,0.000000,0.250000,0,0);}
.mdc_c00393{transform:matrix(0.291168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291168,0.000000,0.000000,0.250000,0,0);}
.mbc_c00393{transform:matrix(0.291233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291233,0.000000,0.000000,0.250000,0,0);}
.mf1_c00393{transform:matrix(0.291492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291492,0.000000,0.000000,0.250000,0,0);}
.m22_c00393{transform:matrix(0.291496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291496,0.000000,0.000000,0.250000,0,0);}
.m8c_c00393{transform:matrix(0.292090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292090,0.000000,0.000000,0.250000,0,0);}
.mce_c00393{transform:matrix(0.292280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292280,0.000000,0.000000,0.250000,0,0);}
.m3c_c00393{transform:matrix(0.292282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292282,0.000000,0.000000,0.250000,0,0);}
.md9_c00393{transform:matrix(0.293295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293295,0.000000,0.000000,0.250000,0,0);}
.m2b_c00393{transform:matrix(0.293984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293984,0.000000,0.000000,0.250000,0,0);}
.m21_c00393{transform:matrix(0.294225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294225,0.000000,0.000000,0.250000,0,0);}
.m7d_c00393{transform:matrix(0.295004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295004,0.000000,0.000000,0.250000,0,0);}
.m14_c00393{transform:matrix(0.295509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295509,0.000000,0.000000,0.250000,0,0);}
.m6f_c00393{transform:matrix(0.295787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295787,0.000000,0.000000,0.250000,0,0);}
.m59_c00393{transform:matrix(0.296059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296059,0.000000,0.000000,0.250000,0,0);}
.m1a_c00393{transform:matrix(0.297321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297321,0.000000,0.000000,0.250000,0,0);}
.mc_c00393{transform:matrix(0.297393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297393,0.000000,0.000000,0.250000,0,0);}
.m104_c00393{transform:matrix(0.297517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297517,0.000000,0.000000,0.250000,0,0);}
.mee_c00393{transform:matrix(0.297653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297653,0.000000,0.000000,0.250000,0,0);}
.mef_c00393{transform:matrix(0.299213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299213,0.000000,0.000000,0.250000,0,0);}
.mdb_c00393{transform:matrix(0.301001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301001,0.000000,0.000000,0.250000,0,0);}
.mab_c00393{transform:matrix(0.301273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301273,0.000000,0.000000,0.250000,0,0);}
.m6e_c00393{transform:matrix(0.301517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301517,0.000000,0.000000,0.250000,0,0);}
.ma9_c00393{transform:matrix(0.301753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301753,0.000000,0.000000,0.250000,0,0);}
.mb8_c00393{transform:matrix(0.302360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302360,0.000000,0.000000,0.250000,0,0);}
.maf_c00393{transform:matrix(0.302590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302590,0.000000,0.000000,0.250000,0,0);}
.m3f_c00393{transform:matrix(0.302641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302641,0.000000,0.000000,0.250000,0,0);}
.m93_c00393{transform:matrix(0.302643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302643,0.000000,0.000000,0.250000,0,0);}
.m40_c00393{transform:matrix(0.303897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303897,0.000000,0.000000,0.250000,0,0);}
.m9_c00393{transform:matrix(0.304247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304247,0.000000,0.000000,0.250000,0,0);}
.mb0_c00393{transform:matrix(0.304663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304663,0.000000,0.000000,0.250000,0,0);}
.m32_c00393{transform:matrix(0.304797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304797,0.000000,0.000000,0.250000,0,0);}
.me_c00393{transform:matrix(0.305386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305386,0.000000,0.000000,0.250000,0,0);}
.me0_c00393{transform:matrix(0.305417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305417,0.000000,0.000000,0.250000,0,0);}
.m95_c00393{transform:matrix(0.305511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305511,0.000000,0.000000,0.250000,0,0);}
.mcd_c00393{transform:matrix(0.305521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305521,0.000000,0.000000,0.250000,0,0);}
.m71_c00393{transform:matrix(0.306293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306293,0.000000,0.000000,0.250000,0,0);}
.ma4_c00393{transform:matrix(0.306753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306753,0.000000,0.000000,0.250000,0,0);}
.mea_c00393{transform:matrix(0.306957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306957,0.000000,0.000000,0.250000,0,0);}
.m5b_c00393{transform:matrix(0.307446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307446,0.000000,0.000000,0.250000,0,0);}
.maa_c00393{transform:matrix(0.308085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308085,0.000000,0.000000,0.250000,0,0);}
.m2e_c00393{transform:matrix(0.308583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308583,0.000000,0.000000,0.250000,0,0);}
.m11_c00393{transform:matrix(0.309324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309324,0.000000,0.000000,0.250000,0,0);}
.m34_c00393{transform:matrix(0.309364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309364,0.000000,0.000000,0.250000,0,0);}
.me3_c00393{transform:matrix(0.310355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310355,0.000000,0.000000,0.250000,0,0);}
.m48_c00393{transform:matrix(0.311431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311431,0.000000,0.000000,0.250000,0,0);}
.m94_c00393{transform:matrix(0.312761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312761,0.000000,0.000000,0.250000,0,0);}
.m76_c00393{transform:matrix(0.313053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313053,0.000000,0.000000,0.250000,0,0);}
.m69_c00393{transform:matrix(0.313136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313136,0.000000,0.000000,0.250000,0,0);}
.m2c_c00393{transform:matrix(0.313140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313140,0.000000,0.000000,0.250000,0,0);}
.mf5_c00393{transform:matrix(0.313225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313225,0.000000,0.000000,0.250000,0,0);}
.meb_c00393{transform:matrix(0.313368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313368,0.000000,0.000000,0.250000,0,0);}
.m9e_c00393{transform:matrix(0.313401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313401,0.000000,0.000000,0.250000,0,0);}
.mb2_c00393{transform:matrix(0.313451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313451,0.000000,0.000000,0.250000,0,0);}
.mde_c00393{transform:matrix(0.313615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313615,0.000000,0.000000,0.250000,0,0);}
.m61_c00393{transform:matrix(0.313671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313671,0.000000,0.000000,0.250000,0,0);}
.m78_c00393{transform:matrix(0.313804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313804,0.000000,0.000000,0.250000,0,0);}
.m56_c00393{transform:matrix(0.316704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316704,0.000000,0.000000,0.250000,0,0);}
.mf_c00393{transform:matrix(0.318328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318328,0.000000,0.000000,0.250000,0,0);}
.m27_c00393{transform:matrix(0.319786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319786,0.000000,0.000000,0.250000,0,0);}
.ma7_c00393{transform:matrix(0.319869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319869,0.000000,0.000000,0.250000,0,0);}
.m25_c00393{transform:matrix(0.320310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320310,0.000000,0.000000,0.250000,0,0);}
.med_c00393{transform:matrix(0.321080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321080,0.000000,0.000000,0.250000,0,0);}
.m5f_c00393{transform:matrix(0.321262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321262,0.000000,0.000000,0.250000,0,0);}
.m97_c00393{transform:matrix(0.322044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322044,0.000000,0.000000,0.250000,0,0);}
.m57_c00393{transform:matrix(0.322558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322558,0.000000,0.000000,0.250000,0,0);}
.m51_c00393{transform:matrix(0.322947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322947,0.000000,0.000000,0.250000,0,0);}
.m3d_c00393{transform:matrix(0.323214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323214,0.000000,0.000000,0.250000,0,0);}
.mec_c00393{transform:matrix(0.323642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323642,0.000000,0.000000,0.250000,0,0);}
.mc6_c00393{transform:matrix(0.324116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324116,0.000000,0.000000,0.250000,0,0);}
.m28_c00393{transform:matrix(0.324251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324251,0.000000,0.000000,0.250000,0,0);}
.m1f_c00393{transform:matrix(0.324334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324334,0.000000,0.000000,0.250000,0,0);}
.m7a_c00393{transform:matrix(0.325184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325184,0.000000,0.000000,0.250000,0,0);}
.mc7_c00393{transform:matrix(0.325636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325636,0.000000,0.000000,0.250000,0,0);}
.md5_c00393{transform:matrix(0.326230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326230,0.000000,0.000000,0.250000,0,0);}
.mb9_c00393{transform:matrix(0.327843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327843,0.000000,0.000000,0.250000,0,0);}
.m64_c00393{transform:matrix(0.328213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328213,0.000000,0.000000,0.250000,0,0);}
.m3e_c00393{transform:matrix(0.329066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329066,0.000000,0.000000,0.250000,0,0);}
.mad_c00393{transform:matrix(0.329866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329866,0.000000,0.000000,0.250000,0,0);}
.m29_c00393{transform:matrix(0.329904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329904,0.000000,0.000000,0.250000,0,0);}
.m4_c00393{transform:matrix(0.330096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330096,0.000000,0.000000,0.250000,0,0);}
.mc4_c00393{transform:matrix(0.330232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330232,0.000000,0.000000,0.250000,0,0);}
.m6c_c00393{transform:matrix(0.331101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331101,0.000000,0.000000,0.250000,0,0);}
.me2_c00393{transform:matrix(0.331141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331141,0.000000,0.000000,0.250000,0,0);}
.m54_c00393{transform:matrix(0.332522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332522,0.000000,0.000000,0.250000,0,0);}
.m39_c00393{transform:matrix(0.333410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333410,0.000000,0.000000,0.250000,0,0);}
.m1e_c00393{transform:matrix(0.333414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333414,0.000000,0.000000,0.250000,0,0);}
.m67_c00393{transform:matrix(0.335937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335937,0.000000,0.000000,0.250000,0,0);}
.m19_c00393{transform:matrix(0.335974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335974,0.000000,0.000000,0.250000,0,0);}
.m58_c00393{transform:matrix(0.336496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336496,0.000000,0.000000,0.250000,0,0);}
.m63_c00393{transform:matrix(0.336631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336631,0.000000,0.000000,0.250000,0,0);}
.m15_c00393{transform:matrix(0.336731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336731,0.000000,0.000000,0.250000,0,0);}
.m2f_c00393{transform:matrix(0.336841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336841,0.000000,0.000000,0.250000,0,0);}
.me7_c00393{transform:matrix(0.338426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338426,0.000000,0.000000,0.250000,0,0);}
.mcb_c00393{transform:matrix(0.338916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338916,0.000000,0.000000,0.250000,0,0);}
.m46_c00393{transform:matrix(0.340742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340742,0.000000,0.000000,0.250000,0,0);}
.mae_c00393{transform:matrix(0.340863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340863,0.000000,0.000000,0.250000,0,0);}
.m20_c00393{transform:matrix(0.340952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340952,0.000000,0.000000,0.250000,0,0);}
.m8_c00393{transform:matrix(0.341423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341423,0.000000,0.000000,0.250000,0,0);}
.m47_c00393{transform:matrix(0.342083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342083,0.000000,0.000000,0.250000,0,0);}
.mb3_c00393{transform:matrix(0.342311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342311,0.000000,0.000000,0.250000,0,0);}
.m72_c00393{transform:matrix(0.342369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342369,0.000000,0.000000,0.250000,0,0);}
.m16_c00393{transform:matrix(0.342691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342691,0.000000,0.000000,0.250000,0,0);}
.m31_c00393{transform:matrix(0.342793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342793,0.000000,0.000000,0.250000,0,0);}
.m30_c00393{transform:matrix(0.346590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346590,0.000000,0.000000,0.250000,0,0);}
.m60_c00393{transform:matrix(0.346827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346827,0.000000,0.000000,0.250000,0,0);}
.m105_c00393{transform:matrix(0.347253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347253,0.000000,0.000000,0.250000,0,0);}
.m70_c00393{transform:matrix(0.348191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348191,0.000000,0.000000,0.250000,0,0);}
.md3_c00393{transform:matrix(0.350521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350521,0.000000,0.000000,0.250000,0,0);}
.m81_c00393{transform:matrix(0.350887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350887,0.000000,0.000000,0.250000,0,0);}
.m101_c00393{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);}
.ma1_c00393{transform:matrix(0.352704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352704,0.000000,0.000000,0.250000,0,0);}
.m6a_c00393{transform:matrix(0.354218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354218,0.000000,0.000000,0.250000,0,0);}
.ma_c00393{transform:matrix(0.354273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354273,0.000000,0.000000,0.250000,0,0);}
.md7_c00393{transform:matrix(0.355202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355202,0.000000,0.000000,0.250000,0,0);}
.ma0_c00393{transform:matrix(0.356907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356907,0.000000,0.000000,0.250000,0,0);}
.m2d_c00393{transform:matrix(0.358264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358264,0.000000,0.000000,0.250000,0,0);}
.mf8_c00393{transform:matrix(0.359895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359895,0.000000,0.000000,0.250000,0,0);}
.m8a_c00393{transform:matrix(0.360496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360496,0.000000,0.000000,0.250000,0,0);}
.m1d_c00393{transform:matrix(0.360809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360809,0.000000,0.000000,0.250000,0,0);}
.m3a_c00393{transform:matrix(0.361780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361780,0.000000,0.000000,0.250000,0,0);}
.m88_c00393{transform:matrix(0.362647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362647,0.000000,0.000000,0.250000,0,0);}
.m55_c00393{transform:matrix(0.363517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363517,0.000000,0.000000,0.250000,0,0);}
.m83_c00393{transform:matrix(0.363663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363663,0.000000,0.000000,0.250000,0,0);}
.m17_c00393{transform:matrix(0.365510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365510,0.000000,0.000000,0.250000,0,0);}
.md1_c00393{transform:matrix(0.365884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365884,0.000000,0.000000,0.250000,0,0);}
.me8_c00393{transform:matrix(0.366067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366067,0.000000,0.000000,0.250000,0,0);}
.m62_c00393{transform:matrix(0.366649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366649,0.000000,0.000000,0.250000,0,0);}
.m7c_c00393{transform:matrix(0.366815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366815,0.000000,0.000000,0.250000,0,0);}
.m68_c00393{transform:matrix(0.366925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366925,0.000000,0.000000,0.250000,0,0);}
.m92_c00393{transform:matrix(0.367554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367554,0.000000,0.000000,0.250000,0,0);}
.ma8_c00393{transform:matrix(0.369836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369836,0.000000,0.000000,0.250000,0,0);}
.m9f_c00393{transform:matrix(0.370132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370132,0.000000,0.000000,0.250000,0,0);}
.m3_c00393{transform:matrix(0.370983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370983,0.000000,0.000000,0.250000,0,0);}
.m5_c00393{transform:matrix(0.371558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371558,0.000000,0.000000,0.250000,0,0);}
.m8b_c00393{transform:matrix(0.373292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373292,0.000000,0.000000,0.250000,0,0);}
.md2_c00393{transform:matrix(0.374247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374247,0.000000,0.000000,0.250000,0,0);}
.m2a_c00393{transform:matrix(0.377331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377331,0.000000,0.000000,0.250000,0,0);}
.m66_c00393{transform:matrix(0.379242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379242,0.000000,0.000000,0.250000,0,0);}
.m50_c00393{transform:matrix(0.381114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381114,0.000000,0.000000,0.250000,0,0);}
.mf2_c00393{transform:matrix(0.383541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383541,0.000000,0.000000,0.250000,0,0);}
.mda_c00393{transform:matrix(0.387573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387573,0.000000,0.000000,0.250000,0,0);}
.m8d_c00393{transform:matrix(0.387965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387965,0.000000,0.000000,0.250000,0,0);}
.m24_c00393{transform:matrix(0.391373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391373,0.000000,0.000000,0.250000,0,0);}
.m7_c00393{transform:matrix(0.391795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391795,0.000000,0.000000,0.250000,0,0);}
.mb5_c00393{transform:matrix(0.398583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398583,0.000000,0.000000,0.250000,0,0);}
.m5a_c00393{transform:matrix(0.405896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405896,0.000000,0.000000,0.250000,0,0);}
.mba_c00393{transform:matrix(0.406255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406255,0.000000,0.000000,0.250000,0,0);}
.m45_c00393{transform:matrix(0.408779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408779,0.000000,0.000000,0.250000,0,0);}
.m74_c00393{transform:matrix(0.413264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413264,0.000000,0.000000,0.250000,0,0);}
.md8_c00393{transform:matrix(0.413386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413386,0.000000,0.000000,0.250000,0,0);}
.md6_c00393{transform:matrix(0.437521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437521,0.000000,0.000000,0.250000,0,0);}
.m33_c00393{transform:matrix(0.440173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440173,0.000000,0.000000,0.250000,0,0);}
.me4_c00393{transform:matrix(0.444859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444859,0.000000,0.000000,0.250000,0,0);}
.m82_c00393{transform:matrix(0.445056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445056,0.000000,0.000000,0.250000,0,0);}
.mdf_c00393{transform:matrix(0.452399,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452399,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452399,0.000000,0.000000,0.250000,0,0);}
.m77_c00393{transform:matrix(0.569933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569933,0.000000,0.000000,0.250000,0,0);}
.v1_c00393{vertical-align:-2.851200px;}
.v0_c00393{vertical-align:0.000000px;}
.ls11_c00393{letter-spacing:-2.862090px;}
.ls9_c00393{letter-spacing:-2.515590px;}
.ls23_c00393{letter-spacing:-2.328480px;}
.ls2a_c00393{letter-spacing:-2.245327px;}
.ls1b_c00393{letter-spacing:-1.926540px;}
.ls29_c00393{letter-spacing:-1.884967px;}
.ls20_c00393{letter-spacing:-1.401543px;}
.lsf_c00393{letter-spacing:-0.824670px;}
.lsb_c00393{letter-spacing:-0.560815px;}
.ls16_c00393{letter-spacing:-0.445619px;}
.ls6_c00393{letter-spacing:0.000000px;}
.ls17_c00393{letter-spacing:0.352183px;}
.ls1_c00393{letter-spacing:0.747490px;}
.lsc_c00393{letter-spacing:1.020611px;}
.ls26_c00393{letter-spacing:1.264982px;}
.ls3_c00393{letter-spacing:1.624352px;}
.ls22_c00393{letter-spacing:1.643400px;}
.ls14_c00393{letter-spacing:2.019600px;}
.ls19_c00393{letter-spacing:2.098721px;}
.ls1e_c00393{letter-spacing:2.395810px;}
.ls10_c00393{letter-spacing:2.414966px;}
.ls13_c00393{letter-spacing:2.443716px;}
.ls28_c00393{letter-spacing:2.752774px;}
.ls15_c00393{letter-spacing:3.207610px;}
.ls1c_c00393{letter-spacing:3.465000px;}
.ls18_c00393{letter-spacing:3.474900px;}
.lsa_c00393{letter-spacing:3.500264px;}
.ls24_c00393{letter-spacing:3.564000px;}
.ls8_c00393{letter-spacing:3.593700px;}
.ls12_c00393{letter-spacing:3.643200px;}
.lsd_c00393{letter-spacing:3.682810px;}
.ls1f_c00393{letter-spacing:3.722400px;}
.ls27_c00393{letter-spacing:3.762000px;}
.ls7_c00393{letter-spacing:4.158000px;}
.ls21_c00393{letter-spacing:4.336200px;}
.ls4_c00393{letter-spacing:14.518548px;}
.ls2_c00393{letter-spacing:24.437160px;}
.ls5_c00393{letter-spacing:25.731288px;}
.lse_c00393{letter-spacing:49.896198px;}
.ls1a_c00393{letter-spacing:51.321798px;}
.ls1d_c00393{letter-spacing:55.598598px;}
.ls25_c00393{letter-spacing:57.024198px;}
.ls0_c00393{letter-spacing:2523.464064px;}
.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;}
}
.ws4_c00393{word-spacing:-19.592852px;}
.ws0_c00393{word-spacing:-18.715990px;}
.ws2_c00393{word-spacing:-17.968500px;}
.ws7_c00393{word-spacing:-17.522881px;}
.ws8_c00393{word-spacing:-17.325000px;}
.ws9_c00393{word-spacing:-16.566957px;}
.wsa_c00393{word-spacing:-2.946834px;}
.wsc_c00393{word-spacing:-2.730816px;}
.ws3_c00393{word-spacing:-2.379029px;}
.ws6_c00393{word-spacing:-2.371842px;}
.wsf_c00393{word-spacing:0.000000px;}
.ws5_c00393{word-spacing:1.007028px;}
.ws1_c00393{word-spacing:1.366398px;}
.wsb_c00393{word-spacing:4.456188px;}
.wse_c00393{word-spacing:5.892678px;}
.wsd_c00393{word-spacing:7.834266px;}
._12_c00393{margin-left:-8.232840px;}
._15_c00393{margin-left:-6.453889px;}
._a_c00393{margin-left:-5.318676px;}
._1b_c00393{margin-left:-3.623598px;}
._17_c00393{margin-left:-1.293732px;}
._1a_c00393{width:1.006236px;}
._0_c00393{width:2.860585px;}
._20_c00393{width:4.312440px;}
._1d_c00393{width:6.684480px;}
._c_c00393{width:7.978014px;}
._6_c00393{width:9.127998px;}
._5_c00393{width:10.709424px;}
._4_c00393{width:11.931084px;}
._d_c00393{width:13.799808px;}
._2_c00393{width:16.674768px;}
._1_c00393{width:19.621602px;}
._3_c00393{width:21.849696px;}
._13_c00393{width:22.999482px;}
._9_c00393{width:24.077790px;}
._10_c00393{width:25.084026px;}
._e_c00393{width:26.631000px;}
._1f_c00393{width:29.324988px;}
._18_c00393{width:30.762072px;}
._f_c00393{width:32.630796px;}
._7_c00393{width:34.745634px;}
._b_c00393{width:37.199844px;}
._8_c00393{width:40.596653px;}
._14_c00393{width:44.849376px;}
._1e_c00393{width:45.938376px;}
._1c_c00393{width:47.990844px;}
._21_c00393{width:50.886792px;}
._11_c00393{width:52.252398px;}
._16_c00393{width:57.399408px;}
._19_c00393{width:79.325017px;}
.fc0_c00393{color:transparent;}
.fs1_c00393{font-size:22.176000px;}
.fsc_c00393{font-size:23.562000px;}
.fs13_c00393{font-size:32.868000px;}
.fsb_c00393{font-size:33.660000px;}
.fs5_c00393{font-size:38.412000px;}
.fs23_c00393{font-size:38.610000px;}
.fs10_c00393{font-size:40.392000px;}
.fsf_c00393{font-size:45.342000px;}
.fs19_c00393{font-size:47.916198px;}
.fs9_c00393{font-size:49.896198px;}
.fs15_c00393{font-size:51.321798px;}
.fs22_c00393{font-size:53.856198px;}
.fs16_c00393{font-size:55.044000px;}
.fs18_c00393{font-size:55.598598px;}
.fs8_c00393{font-size:55.836198px;}
.fs1e_c00393{font-size:57.024198px;}
.fs0_c00393{font-size:60.192000px;}
.fs1f_c00393{font-size:60.984000px;}
.fs4_c00393{font-size:62.568000px;}
.fs11_c00393{font-size:64.152198px;}
.fs1c_c00393{font-size:66.528000px;}
.fs17_c00393{font-size:69.300000px;}
.fs12_c00393{font-size:69.498000px;}
.fs6_c00393{font-size:70.884000px;}
.fs1d_c00393{font-size:71.280000px;}
.fs3_c00393{font-size:71.874000px;}
.fse_c00393{font-size:72.864000px;}
.fs7_c00393{font-size:73.656198px;}
.fs1a_c00393{font-size:74.448000px;}
.fs20_c00393{font-size:75.240000px;}
.fs21_c00393{font-size:76.032198px;}
.fsa_c00393{font-size:78.804000px;}
.fsd_c00393{font-size:81.774000px;}
.fs2_c00393{font-size:83.160000px;}
.fs1b_c00393{font-size:86.724000px;}
.fs14_c00393{font-size:91.278000px;}
.y0_c00393{bottom:0.000000px;}
.y2c_c00393{bottom:28.780335px;}
.y1_c00393{bottom:76.500000px;}
.y2b_c00393{bottom:139.615785px;}
.y2a_c00393{bottom:169.914735px;}
.y29_c00393{bottom:170.271135px;}
.y28_c00393{bottom:170.983935px;}
.y27_c00393{bottom:197.713935px;}
.y26_c00393{bottom:204.480585px;}
.y24_c00393{bottom:204.841935px;}
.y25_c00393{bottom:205.198335px;}
.y23_c00393{bottom:238.338585px;}
.y22_c00393{bottom:271.483785px;}
.y21_c00393{bottom:303.559785px;}
.y1f_c00393{bottom:336.709935px;}
.y20_c00393{bottom:341.699535px;}
.y1e_c00393{bottom:368.429535px;}
.y1d_c00393{bottom:401.218335px;}
.y1c_c00393{bottom:433.650735px;}
.y1b_c00393{bottom:466.439535px;}
.y1a_c00393{bottom:496.733535px;}
.y18_c00393{bottom:527.740335px;}
.y16_c00393{bottom:528.096735px;}
.y15_c00393{bottom:528.448185px;}
.y19_c00393{bottom:529.165935px;}
.y17_c00393{bottom:533.799135px;}
.y14_c00393{bottom:560.880585px;}
.y13_c00393{bottom:593.317935px;}
.y12_c00393{bottom:625.032585px;}
.y11_c00393{bottom:657.821385px;}
.y10_c00393{bottom:723.042585px;}
.yf_c00393{bottom:755.831385px;}
.ye_c00393{bottom:785.768985px;}
.yc_c00393{bottom:788.620185px;}
.yd_c00393{bottom:796.822335px;}
.yb_c00393{bottom:808.939935px;}
.y8_c00393{bottom:821.761920px;}
.y9_c00393{bottom:821.770335px;}
.ya_c00393{bottom:822.478185px;}
.y7_c00393{bottom:856.692585px;}
.y6_c00393{bottom:881.996985px;}
.y5_c00393{bottom:888.773535px;}
.y4_c00393{bottom:922.987935px;}
.y3_c00393{bottom:1076.947785px;}
.y2_c00393{bottom:1105.816185px;}
.hb_c00393{height:23.124814px;}
.ha_c00393{height:33.035449px;}
.h8_c00393{height:33.230868px;}
.h13_c00393{height:34.180317px;}
.h1b_c00393{height:34.280297px;}
.h16_c00393{height:37.028666px;}
.h1e_c00393{height:37.978116px;}
.h25_c00393{height:40.269023px;}
.hf_c00393{height:42.127594px;}
.h17_c00393{height:47.027128px;}
.he_c00393{height:47.290289px;}
.h22_c00393{height:52.856913px;}
.h14_c00393{height:54.022676px;}
.h7_c00393{height:58.235410px;}
.h2_c00393{height:62.778375px;}
.h23_c00393{height:62.961874px;}
.h1f_c00393{height:63.604406px;}
.h1c_c00393{height:65.261109px;}
.h10_c00393{height:66.908738px;}
.h15_c00393{height:67.980322px;}
.h11_c00393{height:68.208486px;}
.h5_c00393{height:69.568770px;}
.h1d_c00393{height:69.957422px;}
.h4_c00393{height:70.540400px;}
.h24_c00393{height:71.512031px;}
.h19_c00393{height:72.289530px;}
.hd_c00393{height:73.433250px;}
.h20_c00393{height:73.843945px;}
.h6_c00393{height:74.231637px;}
.h18_c00393{height:75.029625px;}
.h9_c00393{height:77.341816px;}
.h21_c00393{height:79.299207px;}
.hc_c00393{height:80.216780px;}
.h3_c00393{height:83.809688px;}
.h12_c00393{height:89.584365px;}
.h1a_c00393{height:90.450422px;}
.h1_c00393{height:1110.000000px;}
.h0_c00393{height:1263.000000px;}
.w1_c00393{width:775.500000px;}
.w0_c00393{width:892.500000px;}
.x2_c00393{left:-1.582365px;}
.x0_c00393{left:0.000000px;}
.x1_c00393{left:58.500000px;}
.x39_c00393{left:95.803935px;}
.x13_c00393{left:97.798785px;}
.x25_c00393{left:98.927385px;}
.x77_c00393{left:107.401785px;}
.x31_c00393{left:109.500585px;}
.x58_c00393{left:117.420585px;}
.x72_c00393{left:118.870935px;}
.x7e_c00393{left:121.880535px;}
.x14_c00393{left:129.374835px;}
.x15_c00393{left:140.532135px;}
.x4_c00393{left:151.011285px;}
.x7f_c00393{left:152.174535px;}
.x44_c00393{left:161.406285px;}
.x4b_c00393{left:162.633885px;}
.x6a_c00393{left:164.668335px;}
.x5_c00393{left:173.523885px;}
.x3a_c00393{left:183.176385px;}
.x16_c00393{left:184.270335px;}
.x6_c00393{left:195.383085px;}
.x55_c00393{left:197.298735px;}
.x5c_c00393{left:202.857585px;}
.x47_c00393{left:205.550385px;}
.x80_c00393{left:207.060135px;}
.x6b_c00393{left:208.693635px;}
.x17_c00393{left:217.484835px;}
.x81_c00393{left:218.816385px;}
.x56_c00393{left:220.568685px;}
.x59_c00393{left:224.132685px;}
.x7_c00393{left:228.607485px;}
.x5d_c00393{left:230.280585px;}
.x62_c00393{left:231.295335px;}
.x3b_c00393{left:239.492535px;}
.x82_c00393{left:240.918135px;}
.x8_c00393{left:250.204335px;}
.x52_c00393{left:251.342835px;}
.x7c_c00393{left:254.213835px;}
.x3c_c00393{left:261.762585px;}
.x78_c00393{left:262.856535px;}
.x3d_c00393{left:272.301135px;}
.x18_c00393{left:273.830685px;}
.x83_c00393{left:275.375085px;}
.x5e_c00393{left:276.553185px;}
.x9_c00393{left:283.963335px;}
.x6c_c00393{left:286.512585px;}
.x26_c00393{left:294.521685px;}
.x74_c00393{left:295.576035px;}
.x7d_c00393{left:297.556035px;}
.x5a_c00393{left:305.020635px;}
.x19_c00393{left:306.169035px;}
.x3e_c00393{left:316.667985px;}
.x48_c00393{left:317.692635px;}
.x27_c00393{left:326.761035px;}
.xa_c00393{left:328.488585px;}
.x6d_c00393{left:330.374535px;}
.x63_c00393{left:331.438785px;}
.x3f_c00393{left:338.591535px;}
.x1a_c00393{left:339.799335px;}
.x64_c00393{left:342.848535px;}
.x4c_c00393{left:346.120485px;}
.x28_c00393{left:350.803185px;}
.xb_c00393{left:361.846635px;}
.x32_c00393{left:372.187185px;}
.x6e_c00393{left:373.498935px;}
.x53_c00393{left:383.963235px;}
.x5f_c00393{left:386.393685px;}
.x4d_c00393{left:395.724435px;}
.x50_c00393{left:396.932235px;}
.xc_c00393{left:404.753235px;}
.x33_c00393{left:406.099635px;}
.x79_c00393{left:408.040035px;}
.x66_c00393{left:409.099335px;}
.x1b_c00393{left:416.821335px;}
.x1c_c00393{left:428.146935px;}
.x29_c00393{left:438.497385px;}
.x73_c00393{left:439.898235px;}
.x7a_c00393{left:442.061385px;}
.x1d_c00393{left:449.337885px;}
.x67_c00393{left:450.570435px;}
.xd_c00393{left:461.608935px;}
.x68_c00393{left:466.751985px;}
.x49_c00393{left:472.365285px;}
.x1e_c00393{left:482.646435px;}
.x40_c00393{left:483.740385px;}
.x2a_c00393{left:495.150135px;}
.x45_c00393{left:505.015485px;}
.x65_c00393{left:506.193585px;}
.x34_c00393{left:516.944985px;}
.x2b_c00393{left:527.250885px;}
.x75_c00393{left:528.651735px;}
.xe_c00393{left:538.546785px;}
.x35_c00393{left:548.654685px;}
.x4e_c00393{left:549.669435px;}
.x2c_c00393{left:559.861485px;}
.x6f_c00393{left:561.138585px;}
.x51_c00393{left:570.528735px;}
.x38_c00393{left:572.840385px;}
.x1f_c00393{left:581.785035px;}
.x60_c00393{left:582.903735px;}
.xf_c00393{left:584.002635px;}
.x69_c00393{left:591.962235px;}
.x2d_c00393{left:593.462085px;}
.x54_c00393{left:604.609485px;}
.x70_c00393{left:614.059035px;}
.x20_c00393{left:615.276735px;}
.x57_c00393{left:625.439085px;}
.x2e_c00393{left:626.473635px;}
.x61_c00393{left:628.651635px;}
.x21_c00393{left:637.680435px;}
.x7b_c00393{left:640.972185px;}
.x4f_c00393{left:648.476385px;}
.x22_c00393{left:659.351535px;}
.x36_c00393{left:669.974235px;}
.x42_c00393{left:671.226585px;}
.x76_c00393{left:677.478435px;}
.x10_c00393{left:681.393885px;}
.x37_c00393{left:682.606635px;}
.x3_c00393{left:683.764935px;}
.x2f_c00393{left:693.323385px;}
.x43_c00393{left:699.149535px;}
.x4a_c00393{left:702.896685px;}
.x23_c00393{left:704.025285px;}
.x5b_c00393{left:706.079535px;}
.x11_c00393{left:714.237135px;}
.x41_c00393{left:717.999135px;}
.x30_c00393{left:724.899435px;}
.x24_c00393{left:726.141885px;}
.x46_c00393{left:736.804185px;}
.x71_c00393{left:738.249585px;}
.x12_c00393{left:748.208985px;}
@media print{
.v1_c00393{vertical-align:-2.534400pt;}
.v0_c00393{vertical-align:0.000000pt;}
.ls11_c00393{letter-spacing:-2.544080pt;}
.ls9_c00393{letter-spacing:-2.236080pt;}
.ls23_c00393{letter-spacing:-2.069760pt;}
.ls2a_c00393{letter-spacing:-1.995846pt;}
.ls1b_c00393{letter-spacing:-1.712480pt;}
.ls29_c00393{letter-spacing:-1.675526pt;}
.ls20_c00393{letter-spacing:-1.245816pt;}
.lsf_c00393{letter-spacing:-0.733040pt;}
.lsb_c00393{letter-spacing:-0.498502pt;}
.ls16_c00393{letter-spacing:-0.396106pt;}
.ls6_c00393{letter-spacing:0.000000pt;}
.ls17_c00393{letter-spacing:0.313051pt;}
.ls1_c00393{letter-spacing:0.664435pt;}
.lsc_c00393{letter-spacing:0.907210pt;}
.ls26_c00393{letter-spacing:1.124429pt;}
.ls3_c00393{letter-spacing:1.443869pt;}
.ls22_c00393{letter-spacing:1.460800pt;}
.ls14_c00393{letter-spacing:1.795200pt;}
.ls19_c00393{letter-spacing:1.865530pt;}
.ls1e_c00393{letter-spacing:2.129609pt;}
.ls10_c00393{letter-spacing:2.146637pt;}
.ls13_c00393{letter-spacing:2.172192pt;}
.ls28_c00393{letter-spacing:2.446910pt;}
.ls15_c00393{letter-spacing:2.851209pt;}
.ls1c_c00393{letter-spacing:3.080000pt;}
.ls18_c00393{letter-spacing:3.088800pt;}
.lsa_c00393{letter-spacing:3.111346pt;}
.ls24_c00393{letter-spacing:3.168000pt;}
.ls8_c00393{letter-spacing:3.194400pt;}
.ls12_c00393{letter-spacing:3.238400pt;}
.lsd_c00393{letter-spacing:3.273609pt;}
.ls1f_c00393{letter-spacing:3.308800pt;}
.ls27_c00393{letter-spacing:3.344000pt;}
.ls7_c00393{letter-spacing:3.696000pt;}
.ls21_c00393{letter-spacing:3.854400pt;}
.ls4_c00393{letter-spacing:12.905376pt;}
.ls2_c00393{letter-spacing:21.721920pt;}
.ls5_c00393{letter-spacing:22.872256pt;}
.lse_c00393{letter-spacing:44.352176pt;}
.ls1a_c00393{letter-spacing:45.619376pt;}
.ls1d_c00393{letter-spacing:49.420976pt;}
.ls25_c00393{letter-spacing:50.688176pt;}
.ls0_c00393{letter-spacing:2243.079168pt;}
.ws4_c00393{word-spacing:-17.415869pt;}
.ws0_c00393{word-spacing:-16.636435pt;}
.ws2_c00393{word-spacing:-15.972000pt;}
.ws7_c00393{word-spacing:-15.575894pt;}
.ws8_c00393{word-spacing:-15.400000pt;}
.ws9_c00393{word-spacing:-14.726184pt;}
.wsa_c00393{word-spacing:-2.619408pt;}
.wsc_c00393{word-spacing:-2.427392pt;}
.ws3_c00393{word-spacing:-2.114693pt;}
.ws6_c00393{word-spacing:-2.108304pt;}
.wsf_c00393{word-spacing:0.000000pt;}
.ws5_c00393{word-spacing:0.895136pt;}
.ws1_c00393{word-spacing:1.214576pt;}
.wsb_c00393{word-spacing:3.961056pt;}
.wse_c00393{word-spacing:5.237936pt;}
.wsd_c00393{word-spacing:6.963792pt;}
._12_c00393{margin-left:-7.318080pt;}
._15_c00393{margin-left:-5.736790pt;}
._a_c00393{margin-left:-4.727712pt;}
._1b_c00393{margin-left:-3.220976pt;}
._17_c00393{margin-left:-1.149984pt;}
._1a_c00393{width:0.894432pt;}
._0_c00393{width:2.542742pt;}
._20_c00393{width:3.833280pt;}
._1d_c00393{width:5.941760pt;}
._c_c00393{width:7.091568pt;}
._6_c00393{width:8.113776pt;}
._5_c00393{width:9.519488pt;}
._4_c00393{width:10.605408pt;}
._d_c00393{width:12.266496pt;}
._2_c00393{width:14.822016pt;}
._1_c00393{width:17.441424pt;}
._3_c00393{width:19.421952pt;}
._13_c00393{width:20.443984pt;}
._9_c00393{width:21.402480pt;}
._10_c00393{width:22.296912pt;}
._e_c00393{width:23.672000pt;}
._1f_c00393{width:26.066656pt;}
._18_c00393{width:27.344064pt;}
._f_c00393{width:29.005152pt;}
._7_c00393{width:30.885008pt;}
._b_c00393{width:33.066528pt;}
._8_c00393{width:36.085914pt;}
._14_c00393{width:39.866112pt;}
._1e_c00393{width:40.834112pt;}
._1c_c00393{width:42.658528pt;}
._21_c00393{width:45.232704pt;}
._11_c00393{width:46.446576pt;}
._16_c00393{width:51.021696pt;}
._19_c00393{width:70.511126pt;}
.fs1_c00393{font-size:19.712000pt;}
.fsc_c00393{font-size:20.944000pt;}
.fs13_c00393{font-size:29.216000pt;}
.fsb_c00393{font-size:29.920000pt;}
.fs5_c00393{font-size:34.144000pt;}
.fs23_c00393{font-size:34.320000pt;}
.fs10_c00393{font-size:35.904000pt;}
.fsf_c00393{font-size:40.304000pt;}
.fs19_c00393{font-size:42.592176pt;}
.fs9_c00393{font-size:44.352176pt;}
.fs15_c00393{font-size:45.619376pt;}
.fs22_c00393{font-size:47.872176pt;}
.fs16_c00393{font-size:48.928000pt;}
.fs18_c00393{font-size:49.420976pt;}
.fs8_c00393{font-size:49.632176pt;}
.fs1e_c00393{font-size:50.688176pt;}
.fs0_c00393{font-size:53.504000pt;}
.fs1f_c00393{font-size:54.208000pt;}
.fs4_c00393{font-size:55.616000pt;}
.fs11_c00393{font-size:57.024176pt;}
.fs1c_c00393{font-size:59.136000pt;}
.fs17_c00393{font-size:61.600000pt;}
.fs12_c00393{font-size:61.776000pt;}
.fs6_c00393{font-size:63.008000pt;}
.fs1d_c00393{font-size:63.360000pt;}
.fs3_c00393{font-size:63.888000pt;}
.fse_c00393{font-size:64.768000pt;}
.fs7_c00393{font-size:65.472176pt;}
.fs1a_c00393{font-size:66.176000pt;}
.fs20_c00393{font-size:66.880000pt;}
.fs21_c00393{font-size:67.584176pt;}
.fsa_c00393{font-size:70.048000pt;}
.fsd_c00393{font-size:72.688000pt;}
.fs2_c00393{font-size:73.920000pt;}
.fs1b_c00393{font-size:77.088000pt;}
.fs14_c00393{font-size:81.136000pt;}
.y0_c00393{bottom:0.000000pt;}
.y2c_c00393{bottom:25.582520pt;}
.y1_c00393{bottom:68.000000pt;}
.y2b_c00393{bottom:124.102920pt;}
.y2a_c00393{bottom:151.035320pt;}
.y29_c00393{bottom:151.352120pt;}
.y28_c00393{bottom:151.985720pt;}
.y27_c00393{bottom:175.745720pt;}
.y26_c00393{bottom:181.760520pt;}
.y24_c00393{bottom:182.081720pt;}
.y25_c00393{bottom:182.398520pt;}
.y23_c00393{bottom:211.856520pt;}
.y22_c00393{bottom:241.318920pt;}
.y21_c00393{bottom:269.830920pt;}
.y1f_c00393{bottom:299.297720pt;}
.y20_c00393{bottom:303.732920pt;}
.y1e_c00393{bottom:327.492920pt;}
.y1d_c00393{bottom:356.638520pt;}
.y1c_c00393{bottom:385.467320pt;}
.y1b_c00393{bottom:414.612920pt;}
.y1a_c00393{bottom:441.540920pt;}
.y18_c00393{bottom:469.102520pt;}
.y16_c00393{bottom:469.419320pt;}
.y15_c00393{bottom:469.731720pt;}
.y19_c00393{bottom:470.369720pt;}
.y17_c00393{bottom:474.488120pt;}
.y14_c00393{bottom:498.560520pt;}
.y13_c00393{bottom:527.393720pt;}
.y12_c00393{bottom:555.584520pt;}
.y11_c00393{bottom:584.730120pt;}
.y10_c00393{bottom:642.704520pt;}
.yf_c00393{bottom:671.850120pt;}
.ye_c00393{bottom:698.461320pt;}
.yc_c00393{bottom:700.995720pt;}
.yd_c00393{bottom:708.286520pt;}
.yb_c00393{bottom:719.057720pt;}
.y8_c00393{bottom:730.455040pt;}
.y9_c00393{bottom:730.462520pt;}
.ya_c00393{bottom:731.091720pt;}
.y7_c00393{bottom:761.504520pt;}
.y6_c00393{bottom:783.997320pt;}
.y5_c00393{bottom:790.020920pt;}
.y4_c00393{bottom:820.433720pt;}
.y3_c00393{bottom:957.286920pt;}
.y2_c00393{bottom:982.947720pt;}
.hb_c00393{height:20.555391pt;}
.ha_c00393{height:29.364844pt;}
.h8_c00393{height:29.538549pt;}
.h13_c00393{height:30.382504pt;}
.h1b_c00393{height:30.471375pt;}
.h16_c00393{height:32.914370pt;}
.h1e_c00393{height:33.758325pt;}
.h25_c00393{height:35.794688pt;}
.hf_c00393{height:37.446750pt;}
.h17_c00393{height:41.801891pt;}
.he_c00393{height:42.035813pt;}
.h22_c00393{height:46.983923pt;}
.h14_c00393{height:48.020156pt;}
.h7_c00393{height:51.764809pt;}
.h2_c00393{height:55.803000pt;}
.h23_c00393{height:55.966110pt;}
.h1f_c00393{height:56.537250pt;}
.h1c_c00393{height:58.009875pt;}
.h10_c00393{height:59.474434pt;}
.h15_c00393{height:60.426953pt;}
.h11_c00393{height:60.629766pt;}
.h5_c00393{height:61.838906pt;}
.h1d_c00393{height:62.184375pt;}
.h4_c00393{height:62.702578pt;}
.h24_c00393{height:63.566250pt;}
.h19_c00393{height:64.257360pt;}
.hd_c00393{height:65.274000pt;}
.h20_c00393{height:65.639063pt;}
.h6_c00393{height:65.983677pt;}
.h18_c00393{height:66.693000pt;}
.h9_c00393{height:68.748281pt;}
.h21_c00393{height:70.488184pt;}
.hc_c00393{height:71.303805pt;}
.h3_c00393{height:74.497500pt;}
.h12_c00393{height:79.630547pt;}
.h1a_c00393{height:80.400375pt;}
.h1_c00393{height:986.666667pt;}
.h0_c00393{height:1122.666667pt;}
.w1_c00393{width:689.333333pt;}
.w0_c00393{width:793.333333pt;}
.x2_c00393{left:-1.406547pt;}
.x0_c00393{left:0.000000pt;}
.x1_c00393{left:52.000000pt;}
.x39_c00393{left:85.159053pt;}
.x13_c00393{left:86.932253pt;}
.x25_c00393{left:87.935453pt;}
.x77_c00393{left:95.468253pt;}
.x31_c00393{left:97.333853pt;}
.x58_c00393{left:104.373853pt;}
.x72_c00393{left:105.663053pt;}
.x7e_c00393{left:108.338253pt;}
.x14_c00393{left:114.999853pt;}
.x15_c00393{left:124.917453pt;}
.x4_c00393{left:134.232253pt;}
.x7f_c00393{left:135.266253pt;}
.x44_c00393{left:143.472253pt;}
.x4b_c00393{left:144.563453pt;}
.x6a_c00393{left:146.371853pt;}
.x5_c00393{left:154.243453pt;}
.x3a_c00393{left:162.823453pt;}
.x16_c00393{left:163.795853pt;}
.x6_c00393{left:173.673853pt;}
.x55_c00393{left:175.376653pt;}
.x5c_c00393{left:180.317853pt;}
.x47_c00393{left:182.711453pt;}
.x80_c00393{left:184.053453pt;}
.x6b_c00393{left:185.505453pt;}
.x17_c00393{left:193.319853pt;}
.x81_c00393{left:194.503453pt;}
.x56_c00393{left:196.061053pt;}
.x59_c00393{left:199.229053pt;}
.x7_c00393{left:203.206653pt;}
.x5d_c00393{left:204.693853pt;}
.x62_c00393{left:205.595853pt;}
.x3b_c00393{left:212.882253pt;}
.x82_c00393{left:214.149453pt;}
.x8_c00393{left:222.403853pt;}
.x52_c00393{left:223.415853pt;}
.x7c_c00393{left:225.967853pt;}
.x3c_c00393{left:232.677853pt;}
.x78_c00393{left:233.650253pt;}
.x3d_c00393{left:242.045453pt;}
.x18_c00393{left:243.405053pt;}
.x83_c00393{left:244.777853pt;}
.x5e_c00393{left:245.825053pt;}
.x9_c00393{left:252.411853pt;}
.x6c_c00393{left:254.677853pt;}
.x26_c00393{left:261.797053pt;}
.x74_c00393{left:262.734253pt;}
.x7d_c00393{left:264.494253pt;}
.x5a_c00393{left:271.129453pt;}
.x19_c00393{left:272.150253pt;}
.x3e_c00393{left:281.482653pt;}
.x48_c00393{left:282.393453pt;}
.x27_c00393{left:290.454253pt;}
.xa_c00393{left:291.989853pt;}
.x6d_c00393{left:293.666253pt;}
.x63_c00393{left:294.612253pt;}
.x3f_c00393{left:300.970253pt;}
.x1a_c00393{left:302.043853pt;}
.x64_c00393{left:304.754253pt;}
.x4c_c00393{left:307.662653pt;}
.x28_c00393{left:311.825053pt;}
.xb_c00393{left:321.641453pt;}
.x32_c00393{left:330.833053pt;}
.x6e_c00393{left:331.999053pt;}
.x53_c00393{left:341.300653pt;}
.x5f_c00393{left:343.461053pt;}
.x4d_c00393{left:351.755053pt;}
.x50_c00393{left:352.828653pt;}
.xc_c00393{left:359.780653pt;}
.x33_c00393{left:360.977453pt;}
.x79_c00393{left:362.702253pt;}
.x66_c00393{left:363.643853pt;}
.x1b_c00393{left:370.507853pt;}
.x1c_c00393{left:380.575053pt;}
.x29_c00393{left:389.775453pt;}
.x73_c00393{left:391.020653pt;}
.x7a_c00393{left:392.943453pt;}
.x1d_c00393{left:399.411453pt;}
.x67_c00393{left:400.507053pt;}
.xd_c00393{left:410.319053pt;}
.x68_c00393{left:414.890653pt;}
.x49_c00393{left:419.880253pt;}
.x1e_c00393{left:429.019053pt;}
.x40_c00393{left:429.991453pt;}
.x2a_c00393{left:440.133453pt;}
.x45_c00393{left:448.902653pt;}
.x65_c00393{left:449.949853pt;}
.x34_c00393{left:459.506653pt;}
.x2b_c00393{left:468.667453pt;}
.x75_c00393{left:469.912653pt;}
.xe_c00393{left:478.708253pt;}
.x35_c00393{left:487.693053pt;}
.x4e_c00393{left:488.595053pt;}
.x2c_c00393{left:497.654653pt;}
.x6f_c00393{left:498.789853pt;}
.x51_c00393{left:507.136653pt;}
.x38_c00393{left:509.191453pt;}
.x1f_c00393{left:517.142253pt;}
.x60_c00393{left:518.136653pt;}
.xf_c00393{left:519.113453pt;}
.x69_c00393{left:526.188653pt;}
.x2d_c00393{left:527.521853pt;}
.x54_c00393{left:537.430653pt;}
.x70_c00393{left:545.830253pt;}
.x20_c00393{left:546.912653pt;}
.x57_c00393{left:555.945853pt;}
.x2e_c00393{left:556.865453pt;}
.x61_c00393{left:558.801453pt;}
.x21_c00393{left:566.827053pt;}
.x7b_c00393{left:569.753053pt;}
.x4f_c00393{left:576.423453pt;}
.x22_c00393{left:586.090253pt;}
.x36_c00393{left:595.532653pt;}
.x42_c00393{left:596.645853pt;}
.x76_c00393{left:602.203053pt;}
.x10_c00393{left:605.683453pt;}
.x37_c00393{left:606.761453pt;}
.x3_c00393{left:607.791053pt;}
.x2f_c00393{left:616.287453pt;}
.x43_c00393{left:621.466253pt;}
.x4a_c00393{left:624.797053pt;}
.x23_c00393{left:625.800253pt;}
.x5b_c00393{left:627.626253pt;}
.x11_c00393{left:634.877453pt;}
.x41_c00393{left:638.221453pt;}
.x30_c00393{left:644.355053pt;}
.x24_c00393{left:645.459453pt;}
.x46_c00393{left:654.937053pt;}
.x71_c00393{left:656.221853pt;}
.x12_c00393{left:665.074653pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1005234834a846a9d49679a5.woff2')format("woff");}.ff1_c00394{font-family:ff1_c00394;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00394;src:url('chunks/assets/font_7dae984388728863add72134.woff2')format("woff");}.ff2_c00394{font-family:ff2_c00394;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00394;src:url('chunks/assets/font_56c06c499ac36e1797b370c6.woff2')format("woff");}.ff3_c00394{font-family:ff3_c00394;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00394;src:url('chunks/assets/font_61a702cb8abf985e9404db5f.woff2')format("woff");}.ff4_c00394{font-family:ff4_c00394;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00394;src:url('chunks/assets/font_641e32f0262e29c4ef7ff9db.woff2')format("woff");}.ff5_c00394{font-family:ff5_c00394;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m85_c00394{transform:matrix(0.010418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.010418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.010418,0.000000,0.000000,0.250000,0,0);}
.m8b_c00394{transform:matrix(0.041667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.041667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.041667,0.000000,0.000000,0.250000,0,0);}
.m46_c00394{transform:matrix(0.052084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.052084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.052084,0.000000,0.000000,0.250000,0,0);}
.m86_c00394{transform:matrix(0.104168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104168,0.000000,0.000000,0.250000,0,0);}
.m2a_c00394{transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);}
.m19_c00394{transform:matrix(0.129114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129114,0.000000,0.000000,0.250000,0,0);}
.md_c00394{transform:matrix(0.133525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133525,0.000000,0.000000,0.250000,0,0);}
.m77_c00394{transform:matrix(0.136838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136838,0.000000,0.000000,0.250000,0,0);}
.m11_c00394{transform:matrix(0.140047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140047,0.000000,0.000000,0.250000,0,0);}
.m78_c00394{transform:matrix(0.145916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145916,0.000000,0.000000,0.250000,0,0);}
.m83_c00394{transform:matrix(0.150241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150241,0.000000,0.000000,0.250000,0,0);}
.m3c_c00394{transform:matrix(0.152779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152779,0.000000,0.000000,0.250000,0,0);}
.mf_c00394{transform:matrix(0.159723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159723,0.000000,0.000000,0.250000,0,0);}
.m64_c00394{transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);}
.m7d_c00394{transform:matrix(0.166359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166359,0.000000,0.000000,0.250000,0,0);}
.m47_c00394{transform:matrix(0.170139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170139,0.000000,0.000000,0.250000,0,0);}
.mbf_c00394{transform:matrix(0.182499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182499,0.000000,0.000000,0.250000,0,0);}
.m94_c00394{transform:matrix(0.184594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184594,0.000000,0.000000,0.250000,0,0);}
.m45_c00394{transform:matrix(0.186111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186111,0.000000,0.000000,0.250000,0,0);}
.m10_c00394{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00394{transform:matrix(0.189584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189584,0.000000,0.000000,0.250000,0,0);}
.m13_c00394{transform:matrix(0.193321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193321,0.000000,0.000000,0.250000,0,0);}
.m8a_c00394{transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);}
.m82_c00394{transform:matrix(0.195876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195876,0.000000,0.000000,0.250000,0,0);}
.m99_c00394{transform:matrix(0.198840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198840,0.000000,0.000000,0.250000,0,0);}
.m27_c00394{transform:matrix(0.206590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206590,0.000000,0.000000,0.250000,0,0);}
.m3e_c00394{transform:matrix(0.208334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208334,0.000000,0.000000,0.250000,0,0);}
.m35_c00394{transform:matrix(0.208494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208494,0.000000,0.000000,0.250000,0,0);}
.m21_c00394{transform:matrix(0.210011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210011,0.000000,0.000000,0.250000,0,0);}
.m29_c00394{transform:matrix(0.224136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224136,0.000000,0.000000,0.250000,0,0);}
.ma6_c00394{transform:matrix(0.229327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229327,0.000000,0.000000,0.250000,0,0);}
.mb0_c00394{transform:matrix(0.234388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234388,0.000000,0.000000,0.250000,0,0);}
.mb6_c00394{transform:matrix(0.238106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238106,0.000000,0.000000,0.250000,0,0);}
.m3d_c00394{transform:matrix(0.242425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242425,0.000000,0.000000,0.250000,0,0);}
.m1_c00394{transform:matrix(0.249884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249884,0.000000,0.000000,0.250000,0,0);}
.m0_c00394{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m60_c00394{transform:matrix(0.251076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251076,0.000000,0.000000,0.250000,0,0);}
.mc9_c00394{transform:matrix(0.252519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252519,0.000000,0.000000,0.250000,0,0);}
.m1e_c00394{transform:matrix(0.254597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254597,0.000000,0.000000,0.250000,0,0);}
.md7_c00394{transform:matrix(0.254632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254632,0.000000,0.000000,0.250000,0,0);}
.m38_c00394{transform:matrix(0.255329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255329,0.000000,0.000000,0.250000,0,0);}
.m41_c00394{transform:matrix(0.255814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255814,0.000000,0.000000,0.250000,0,0);}
.m62_c00394{transform:matrix(0.256386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256386,0.000000,0.000000,0.250000,0,0);}
.m87_c00394{transform:matrix(0.257490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257490,0.000000,0.000000,0.250000,0,0);}
.mb_c00394{transform:matrix(0.258437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258437,0.000000,0.000000,0.250000,0,0);}
.m7f_c00394{transform:matrix(0.258592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258592,0.000000,0.000000,0.250000,0,0);}
.m9a_c00394{transform:matrix(0.260132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260132,0.000000,0.000000,0.250000,0,0);}
.m4f_c00394{transform:matrix(0.260158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260158,0.000000,0.000000,0.250000,0,0);}
.m5b_c00394{transform:matrix(0.260176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260176,0.000000,0.000000,0.250000,0,0);}
.m2f_c00394{transform:matrix(0.260552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260552,0.000000,0.000000,0.250000,0,0);}
.mc0_c00394{transform:matrix(0.265398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265398,0.000000,0.000000,0.250000,0,0);}
.mcb_c00394{transform:matrix(0.265616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265616,0.000000,0.000000,0.250000,0,0);}
.m5d_c00394{transform:matrix(0.266749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266749,0.000000,0.000000,0.250000,0,0);}
.m5c_c00394{transform:matrix(0.267086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267086,0.000000,0.000000,0.250000,0,0);}
.m5_c00394{transform:matrix(0.268555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268555,0.000000,0.000000,0.250000,0,0);}
.m71_c00394{transform:matrix(0.268638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268638,0.000000,0.000000,0.250000,0,0);}
.m8f_c00394{transform:matrix(0.269002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269002,0.000000,0.000000,0.250000,0,0);}
.mbc_c00394{transform:matrix(0.270927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270927,0.000000,0.000000,0.250000,0,0);}
.m6_c00394{transform:matrix(0.271198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271198,0.000000,0.000000,0.250000,0,0);}
.m90_c00394{transform:matrix(0.274818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274818,0.000000,0.000000,0.250000,0,0);}
.m2_c00394{transform:matrix(0.275247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275247,0.000000,0.000000,0.250000,0,0);}
.m67_c00394{transform:matrix(0.275414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275414,0.000000,0.000000,0.250000,0,0);}
.m88_c00394{transform:matrix(0.276204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276204,0.000000,0.000000,0.250000,0,0);}
.m1a_c00394{transform:matrix(0.276221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276221,0.000000,0.000000,0.250000,0,0);}
.m48_c00394{transform:matrix(0.278689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278689,0.000000,0.000000,0.250000,0,0);}
.mca_c00394{transform:matrix(0.278775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278775,0.000000,0.000000,0.250000,0,0);}
.m6f_c00394{transform:matrix(0.279907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279907,0.000000,0.000000,0.250000,0,0);}
.ma_c00394{transform:matrix(0.280655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280655,0.000000,0.000000,0.250000,0,0);}
.md1_c00394{transform:matrix(0.280758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280758,0.000000,0.000000,0.250000,0,0);}
.md3_c00394{transform:matrix(0.282521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282521,0.000000,0.000000,0.250000,0,0);}
.ma2_c00394{transform:matrix(0.283124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283124,0.000000,0.000000,0.250000,0,0);}
.mc4_c00394{transform:matrix(0.283756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283756,0.000000,0.000000,0.250000,0,0);}
.m7b_c00394{transform:matrix(0.283844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283844,0.000000,0.000000,0.250000,0,0);}
.mc_c00394{transform:matrix(0.285397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285397,0.000000,0.000000,0.250000,0,0);}
.m58_c00394{transform:matrix(0.285467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285467,0.000000,0.000000,0.250000,0,0);}
.m1b_c00394{transform:matrix(0.285667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285667,0.000000,0.000000,0.250000,0,0);}
.mba_c00394{transform:matrix(0.286118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286118,0.000000,0.000000,0.250000,0,0);}
.m8_c00394{transform:matrix(0.286265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286265,0.000000,0.000000,0.250000,0,0);}
.m4a_c00394{transform:matrix(0.286342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286342,0.000000,0.000000,0.250000,0,0);}
.m84_c00394{transform:matrix(0.287244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287244,0.000000,0.000000,0.250000,0,0);}
.m5a_c00394{transform:matrix(0.287729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287729,0.000000,0.000000,0.250000,0,0);}
.md4_c00394{transform:matrix(0.288794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288794,0.000000,0.000000,0.250000,0,0);}
.m30_c00394{transform:matrix(0.288823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288823,0.000000,0.000000,0.250000,0,0);}
.mac_c00394{transform:matrix(0.288977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288977,0.000000,0.000000,0.250000,0,0);}
.maa_c00394{transform:matrix(0.291360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291360,0.000000,0.000000,0.250000,0,0);}
.m51_c00394{transform:matrix(0.291438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291438,0.000000,0.000000,0.250000,0,0);}
.mae_c00394{transform:matrix(0.292493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292493,0.000000,0.000000,0.250000,0,0);}
.m98_c00394{transform:matrix(0.292770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292770,0.000000,0.000000,0.250000,0,0);}
.m2b_c00394{transform:matrix(0.293112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293112,0.000000,0.000000,0.250000,0,0);}
.me_c00394{transform:matrix(0.293225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293225,0.000000,0.000000,0.250000,0,0);}
.m8e_c00394{transform:matrix(0.293383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293383,0.000000,0.000000,0.250000,0,0);}
.m4_c00394{transform:matrix(0.293385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293385,0.000000,0.000000,0.250000,0,0);}
.m59_c00394{transform:matrix(0.293890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293890,0.000000,0.000000,0.250000,0,0);}
.mc8_c00394{transform:matrix(0.294643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294643,0.000000,0.000000,0.250000,0,0);}
.m9f_c00394{transform:matrix(0.295142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295142,0.000000,0.000000,0.250000,0,0);}
.mb7_c00394{transform:matrix(0.295267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295267,0.000000,0.000000,0.250000,0,0);}
.m3b_c00394{transform:matrix(0.296060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296060,0.000000,0.000000,0.250000,0,0);}
.m9b_c00394{transform:matrix(0.297349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297349,0.000000,0.000000,0.250000,0,0);}
.maf_c00394{transform:matrix(0.297408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297408,0.000000,0.000000,0.250000,0,0);}
.m16_c00394{transform:matrix(0.298086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298086,0.000000,0.000000,0.250000,0,0);}
.m6e_c00394{transform:matrix(0.298957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298957,0.000000,0.000000,0.250000,0,0);}
.m7_c00394{transform:matrix(0.299548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299548,0.000000,0.000000,0.250000,0,0);}
.m9c_c00394{transform:matrix(0.299637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299637,0.000000,0.000000,0.250000,0,0);}
.m39_c00394{transform:matrix(0.299695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299695,0.000000,0.000000,0.250000,0,0);}
.m9e_c00394{transform:matrix(0.300095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300095,0.000000,0.000000,0.250000,0,0);}
.m43_c00394{transform:matrix(0.300828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300828,0.000000,0.000000,0.250000,0,0);}
.m74_c00394{transform:matrix(0.301505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301505,0.000000,0.000000,0.250000,0,0);}
.mb1_c00394{transform:matrix(0.301508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301508,0.000000,0.000000,0.250000,0,0);}
.m56_c00394{transform:matrix(0.302232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302232,0.000000,0.000000,0.250000,0,0);}
.ma5_c00394{transform:matrix(0.302350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302350,0.000000,0.000000,0.250000,0,0);}
.ma4_c00394{transform:matrix(0.302547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302547,0.000000,0.000000,0.250000,0,0);}
.m3a_c00394{transform:matrix(0.302693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302693,0.000000,0.000000,0.250000,0,0);}
.ma9_c00394{transform:matrix(0.303218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303218,0.000000,0.000000,0.250000,0,0);}
.m42_c00394{transform:matrix(0.304460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304460,0.000000,0.000000,0.250000,0,0);}
.m5f_c00394{transform:matrix(0.306299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306299,0.000000,0.000000,0.250000,0,0);}
.mad_c00394{transform:matrix(0.306457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306457,0.000000,0.000000,0.250000,0,0);}
.m6d_c00394{transform:matrix(0.306531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306531,0.000000,0.000000,0.250000,0,0);}
.mcf_c00394{transform:matrix(0.307629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307629,0.000000,0.000000,0.250000,0,0);}
.ma1_c00394{transform:matrix(0.308055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308055,0.000000,0.000000,0.250000,0,0);}
.md2_c00394{transform:matrix(0.308095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308095,0.000000,0.000000,0.250000,0,0);}
.mbe_c00394{transform:matrix(0.308184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308184,0.000000,0.000000,0.250000,0,0);}
.m4e_c00394{transform:matrix(0.308219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308219,0.000000,0.000000,0.250000,0,0);}
.mc2_c00394{transform:matrix(0.308495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308495,0.000000,0.000000,0.250000,0,0);}
.m7c_c00394{transform:matrix(0.309790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309790,0.000000,0.000000,0.250000,0,0);}
.m6b_c00394{transform:matrix(0.309958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309958,0.000000,0.000000,0.250000,0,0);}
.m79_c00394{transform:matrix(0.310497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310497,0.000000,0.000000,0.250000,0,0);}
.m52_c00394{transform:matrix(0.310658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310658,0.000000,0.000000,0.250000,0,0);}
.ma8_c00394{transform:matrix(0.311268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311268,0.000000,0.000000,0.250000,0,0);}
.m95_c00394{transform:matrix(0.311424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311424,0.000000,0.000000,0.250000,0,0);}
.mc6_c00394{transform:matrix(0.311516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311516,0.000000,0.000000,0.250000,0,0);}
.m65_c00394{transform:matrix(0.312832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312832,0.000000,0.000000,0.250000,0,0);}
.m49_c00394{transform:matrix(0.312845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312845,0.000000,0.000000,0.250000,0,0);}
.mb4_c00394{transform:matrix(0.313469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313469,0.000000,0.000000,0.250000,0,0);}
.m23_c00394{transform:matrix(0.314968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314968,0.000000,0.000000,0.250000,0,0);}
.m15_c00394{transform:matrix(0.315697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315697,0.000000,0.000000,0.250000,0,0);}
.m12_c00394{transform:matrix(0.315903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315903,0.000000,0.000000,0.250000,0,0);}
.m44_c00394{transform:matrix(0.316584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316584,0.000000,0.000000,0.250000,0,0);}
.m33_c00394{transform:matrix(0.318665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318665,0.000000,0.000000,0.250000,0,0);}
.ma0_c00394{transform:matrix(0.318744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318744,0.000000,0.000000,0.250000,0,0);}
.m4b_c00394{transform:matrix(0.319105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319105,0.000000,0.000000,0.250000,0,0);}
.m53_c00394{transform:matrix(0.319571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319571,0.000000,0.000000,0.250000,0,0);}
.m1f_c00394{transform:matrix(0.319740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319740,0.000000,0.000000,0.250000,0,0);}
.m69_c00394{transform:matrix(0.320153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320153,0.000000,0.000000,0.250000,0,0);}
.m72_c00394{transform:matrix(0.320274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320274,0.000000,0.000000,0.250000,0,0);}
.mc3_c00394{transform:matrix(0.320315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320315,0.000000,0.000000,0.250000,0,0);}
.m36_c00394{transform:matrix(0.321073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321073,0.000000,0.000000,0.250000,0,0);}
.m80_c00394{transform:matrix(0.321443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321443,0.000000,0.000000,0.250000,0,0);}
.m91_c00394{transform:matrix(0.322340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322340,0.000000,0.000000,0.250000,0,0);}
.mb9_c00394{transform:matrix(0.322760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322760,0.000000,0.000000,0.250000,0,0);}
.m2e_c00394{transform:matrix(0.325275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325275,0.000000,0.000000,0.250000,0,0);}
.m8c_c00394{transform:matrix(0.325501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325501,0.000000,0.000000,0.250000,0,0);}
.mb2_c00394{transform:matrix(0.325846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325846,0.000000,0.000000,0.250000,0,0);}
.md6_c00394{transform:matrix(0.326117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326117,0.000000,0.000000,0.250000,0,0);}
.m92_c00394{transform:matrix(0.326184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326184,0.000000,0.000000,0.250000,0,0);}
.m50_c00394{transform:matrix(0.327008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327008,0.000000,0.000000,0.250000,0,0);}
.m20_c00394{transform:matrix(0.327093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327093,0.000000,0.000000,0.250000,0,0);}
.m3f_c00394{transform:matrix(0.328058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328058,0.000000,0.000000,0.250000,0,0);}
.m17_c00394{transform:matrix(0.328659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328659,0.000000,0.000000,0.250000,0,0);}
.ma7_c00394{transform:matrix(0.329896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329896,0.000000,0.000000,0.250000,0,0);}
.m76_c00394{transform:matrix(0.330329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330329,0.000000,0.000000,0.250000,0,0);}
.mab_c00394{transform:matrix(0.330929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330929,0.000000,0.000000,0.250000,0,0);}
.m26_c00394{transform:matrix(0.331199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331199,0.000000,0.000000,0.250000,0,0);}
.m63_c00394{transform:matrix(0.331587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331587,0.000000,0.000000,0.250000,0,0);}
.m24_c00394{transform:matrix(0.333111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333111,0.000000,0.000000,0.250000,0,0);}
.mce_c00394{transform:matrix(0.333619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333619,0.000000,0.000000,0.250000,0,0);}
.m55_c00394{transform:matrix(0.333632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333632,0.000000,0.000000,0.250000,0,0);}
.md5_c00394{transform:matrix(0.333774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333774,0.000000,0.000000,0.250000,0,0);}
.m2c_c00394{transform:matrix(0.333797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333797,0.000000,0.000000,0.250000,0,0);}
.m2d_c00394{transform:matrix(0.334133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334133,0.000000,0.000000,0.250000,0,0);}
.m96_c00394{transform:matrix(0.334254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334254,0.000000,0.000000,0.250000,0,0);}
.mb3_c00394{transform:matrix(0.334786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334786,0.000000,0.000000,0.250000,0,0);}
.m57_c00394{transform:matrix(0.334941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334941,0.000000,0.000000,0.250000,0,0);}
.m3_c00394{transform:matrix(0.335037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335037,0.000000,0.000000,0.250000,0,0);}
.m28_c00394{transform:matrix(0.336414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336414,0.000000,0.000000,0.250000,0,0);}
.m4d_c00394{transform:matrix(0.337729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337729,0.000000,0.000000,0.250000,0,0);}
.m7e_c00394{transform:matrix(0.338935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338935,0.000000,0.000000,0.250000,0,0);}
.m1c_c00394{transform:matrix(0.339084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339084,0.000000,0.000000,0.250000,0,0);}
.m70_c00394{transform:matrix(0.339770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339770,0.000000,0.000000,0.250000,0,0);}
.m97_c00394{transform:matrix(0.341260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341260,0.000000,0.000000,0.250000,0,0);}
.m5e_c00394{transform:matrix(0.341570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341570,0.000000,0.000000,0.250000,0,0);}
.m37_c00394{transform:matrix(0.341943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341943,0.000000,0.000000,0.250000,0,0);}
.m18_c00394{transform:matrix(0.342175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342175,0.000000,0.000000,0.250000,0,0);}
.m6a_c00394{transform:matrix(0.344180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344180,0.000000,0.000000,0.250000,0,0);}
.m34_c00394{transform:matrix(0.344186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344186,0.000000,0.000000,0.250000,0,0);}
.md0_c00394{transform:matrix(0.344192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344192,0.000000,0.000000,0.250000,0,0);}
.m73_c00394{transform:matrix(0.344690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344690,0.000000,0.000000,0.250000,0,0);}
.m81_c00394{transform:matrix(0.346704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346704,0.000000,0.000000,0.250000,0,0);}
.m61_c00394{transform:matrix(0.348379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348379,0.000000,0.000000,0.250000,0,0);}
.m40_c00394{transform:matrix(0.354733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354733,0.000000,0.000000,0.250000,0,0);}
.ma3_c00394{transform:matrix(0.358807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358807,0.000000,0.000000,0.250000,0,0);}
.mb5_c00394{transform:matrix(0.359134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359134,0.000000,0.000000,0.250000,0,0);}
.m1d_c00394{transform:matrix(0.359570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359570,0.000000,0.000000,0.250000,0,0);}
.m32_c00394{transform:matrix(0.359590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359590,0.000000,0.000000,0.250000,0,0);}
.m4c_c00394{transform:matrix(0.361525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361525,0.000000,0.000000,0.250000,0,0);}
.mcc_c00394{transform:matrix(0.364325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364325,0.000000,0.000000,0.250000,0,0);}
.m6c_c00394{transform:matrix(0.365901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365901,0.000000,0.000000,0.250000,0,0);}
.m9_c00394{transform:matrix(0.367520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367520,0.000000,0.000000,0.250000,0,0);}
.mc7_c00394{transform:matrix(0.368247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368247,0.000000,0.000000,0.250000,0,0);}
.m7a_c00394{transform:matrix(0.368346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368346,0.000000,0.000000,0.250000,0,0);}
.m89_c00394{transform:matrix(0.372435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372435,0.000000,0.000000,0.250000,0,0);}
.m22_c00394{transform:matrix(0.376484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376484,0.000000,0.000000,0.250000,0,0);}
.mc5_c00394{transform:matrix(0.377063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377063,0.000000,0.000000,0.250000,0,0);}
.m8d_c00394{transform:matrix(0.378969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378969,0.000000,0.000000,0.250000,0,0);}
.mcd_c00394{transform:matrix(0.379025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379025,0.000000,0.000000,0.250000,0,0);}
.m54_c00394{transform:matrix(0.385503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385503,0.000000,0.000000,0.250000,0,0);}
.m31_c00394{transform:matrix(0.393547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393547,0.000000,0.000000,0.250000,0,0);}
.m68_c00394{transform:matrix(0.399649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399649,0.000000,0.000000,0.250000,0,0);}
.m93_c00394{transform:matrix(0.402421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402421,0.000000,0.000000,0.250000,0,0);}
.m9d_c00394{transform:matrix(0.404264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404264,0.000000,0.000000,0.250000,0,0);}
.mc1_c00394{transform:matrix(0.404433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404433,0.000000,0.000000,0.250000,0,0);}
.mb8_c00394{transform:matrix(0.435574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435574,0.000000,0.000000,0.250000,0,0);}
.mbb_c00394{transform:matrix(0.442421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442421,0.000000,0.000000,0.250000,0,0);}
.m66_c00394{transform:matrix(0.467208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467208,0.000000,0.000000,0.250000,0,0);}
.m25_c00394{transform:matrix(0.468742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468742,0.000000,0.000000,0.250000,0,0);}
.m14_c00394{transform:matrix(0.469068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469068,0.000000,0.000000,0.250000,0,0);}
.m75_c00394{transform:matrix(0.641002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641002,0.000000,0.000000,0.250000,0,0);}
.v0_c00394{vertical-align:0.000000px;}
.ls5_c00394{letter-spacing:-2.938327px;}
.ls8_c00394{letter-spacing:-2.529450px;}
.ls14_c00394{letter-spacing:-2.478861px;}
.lsa_c00394{letter-spacing:-2.189880px;}
.ls19_c00394{letter-spacing:-1.621620px;}
.ls17_c00394{letter-spacing:-1.434517px;}
.ls24_c00394{letter-spacing:-1.293633px;}
.lsc_c00394{letter-spacing:-0.914760px;}
.ls18_c00394{letter-spacing:-0.672111px;}
.ls1c_c00394{letter-spacing:-0.416216px;}
.ls4_c00394{letter-spacing:0.000000px;}
.ls7_c00394{letter-spacing:1.004553px;}
.ls20_c00394{letter-spacing:1.178001px;}
.ls16_c00394{letter-spacing:1.346400px;}
.ls2_c00394{letter-spacing:1.647756px;}
.ls21_c00394{letter-spacing:1.742400px;}
.ls3_c00394{letter-spacing:1.871793px;}
.ls13_c00394{letter-spacing:2.128500px;}
.ls11_c00394{letter-spacing:2.435499px;}
.ls1e_c00394{letter-spacing:2.731806px;}
.ls1d_c00394{letter-spacing:2.821500px;}
.ls1_c00394{letter-spacing:2.920896px;}
.ls22_c00394{letter-spacing:3.029400px;}
.ls15_c00394{letter-spacing:3.247200px;}
.ls25_c00394{letter-spacing:3.316500px;}
.ls1f_c00394{letter-spacing:3.389463px;}
.ls1b_c00394{letter-spacing:3.544200px;}
.ls6_c00394{letter-spacing:3.613500px;}
.lsf_c00394{letter-spacing:3.781810px;}
.ls0_c00394{letter-spacing:9.467370px;}
.lsb_c00394{letter-spacing:11.404998px;}
.lsd_c00394{letter-spacing:31.363200px;}
.ls1a_c00394{letter-spacing:34.214598px;}
.ls10_c00394{letter-spacing:47.044800px;}
.ls12_c00394{letter-spacing:49.896198px;}
.ls9_c00394{letter-spacing:51.321798px;}
.lse_c00394{letter-spacing:52.747398px;}
.ls23_c00394{letter-spacing:57.024198px;}
.sc__c00394{text-shadow:none;}
.sc0_c00394{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00394{-webkit-text-stroke:0px transparent;}
.sc0_c00394{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00394{word-spacing:-18.067500px;}
.ws4_c00394{word-spacing:-2.984256px;}
.ws5_c00394{word-spacing:-2.963070px;}
.ws3_c00394{word-spacing:-0.063360px;}
.ws7_c00394{word-spacing:0.000000px;}
.ws1_c00394{word-spacing:2.745270px;}
.ws2_c00394{word-spacing:6.070680px;}
.ws6_c00394{word-spacing:7.443810px;}
._e_c00394{margin-left:-11.024640px;}
._4_c00394{margin-left:-8.744670px;}
._5_c00394{margin-left:-6.648840px;}
._11_c00394{margin-left:-2.673990px;}
._13_c00394{margin-left:-1.475595px;}
._a_c00394{width:2.834073px;}
._f_c00394{width:6.253632px;}
._d_c00394{width:7.371540px;}
._1_c00394{width:9.395100px;}
._7_c00394{width:10.406880px;}
._16_c00394{width:12.285900px;}
._14_c00394{width:14.164920px;}
._b_c00394{width:15.623091px;}
._6_c00394{width:19.440630px;}
._c_c00394{width:22.548240px;}
._2_c00394{width:23.993640px;}
._10_c00394{width:29.899980px;}
._8_c00394{width:32.087880px;}
._3_c00394{width:33.093720px;}
._15_c00394{width:34.113420px;}
._9_c00394{width:39.058470px;}
._0_c00394{width:42.488820px;}
._17_c00394{width:43.855020px;}
._12_c00394{width:122.368950px;}
.fc0_c00394{color:transparent;}
.fs6_c00394{font-size:11.404998px;}
.fs1c_c00394{font-size:21.384000px;}
.fs0_c00394{font-size:22.176000px;}
.fs8_c00394{font-size:26.136000px;}
.fs7_c00394{font-size:26.928000px;}
.fsb_c00394{font-size:27.720000px;}
.fs9_c00394{font-size:31.363200px;}
.fs17_c00394{font-size:34.214598px;}
.fs1a_c00394{font-size:34.848000px;}
.fsf_c00394{font-size:39.204000px;}
.fs14_c00394{font-size:40.986198px;}
.fs11_c00394{font-size:42.570000px;}
.fs1d_c00394{font-size:44.352000px;}
.fs18_c00394{font-size:45.738000px;}
.fs16_c00394{font-size:46.332000px;}
.fsd_c00394{font-size:47.044800px;}
.fs10_c00394{font-size:49.896198px;}
.fs3_c00394{font-size:51.321798px;}
.fsa_c00394{font-size:52.747398px;}
.fs19_c00394{font-size:56.430000px;}
.fs1e_c00394{font-size:57.024198px;}
.fs1b_c00394{font-size:60.588000px;}
.fs4_c00394{font-size:62.568000px;}
.fs12_c00394{font-size:63.360000px;}
.fs13_c00394{font-size:64.944000px;}
.fs1f_c00394{font-size:66.330000px;}
.fs5_c00394{font-size:68.112198px;}
.fs15_c00394{font-size:70.884000px;}
.fs2_c00394{font-size:72.270000px;}
.fse_c00394{font-size:72.666198px;}
.fsc_c00394{font-size:75.636198px;}
.fs1_c00394{font-size:83.952198px;}
.y0_c00394{bottom:0.000000px;}
.y1_c00394{bottom:76.500000px;}
.y2e_c00394{bottom:115.736985px;}
.y2d_c00394{bottom:148.525785px;}
.y2c_c00394{bottom:178.468335px;}
.y2b_c00394{bottom:213.751935px;}
.y2a_c00394{bottom:246.535785px;}
.y28_c00394{bottom:270.775935px;}
.y26_c00394{bottom:310.336335px;}
.y27_c00394{bottom:315.677385px;}
.y29_c00394{bottom:340.630335px;}
.y25_c00394{bottom:342.407385px;}
.y24_c00394{bottom:374.483385px;}
.y2f_c00394{bottom:386.957385px;}
.y23_c00394{bottom:403.713135px;}
.y22_c00394{bottom:407.633535px;}
.y20_c00394{bottom:439.704585px;}
.y1e_c00394{bottom:440.065935px;}
.y21_c00394{bottom:440.417385px;}
.y1f_c00394{bottom:443.624985px;}
.y1c_c00394{bottom:471.429135px;}
.y1a_c00394{bottom:472.854735px;}
.y1d_c00394{bottom:473.206185px;}
.y1b_c00394{bottom:476.775135px;}
.y19_c00394{bottom:487.462185px;}
.y18_c00394{bottom:505.282185px;}
.y2_c00394{bottom:537.363135px;}
.y17_c00394{bottom:537.714585px;}
.y16_c00394{bottom:570.151935px;}
.y15_c00394{bottom:603.292185px;}
.y14_c00394{bottom:635.373135px;}
.y13_c00394{bottom:666.736335px;}
.y12_c00394{bottom:699.876585px;}
.y11_c00394{bottom:732.308985px;}
.y10_c00394{bottom:754.405785px;}
.yf_c00394{bottom:764.389935px;}
.ye_c00394{bottom:784.343385px;}
.yc_c00394{bottom:793.609785px;}
.yd_c00394{bottom:794.678985px;}
.ya_c00394{bottom:797.178735px;}
.yb_c00394{bottom:797.535135px;}
.y9_c00394{bottom:813.216735px;}
.y8_c00394{bottom:830.318985px;}
.y7_c00394{bottom:862.756335px;}
.y6_c00394{bottom:929.403135px;}
.y5_c00394{bottom:1004.957955px;}
.y4_c00394{bottom:1013.152185px;}
.y3_c00394{bottom:1079.086185px;}
.h8_c00394{height:7.595729px;}
.hb_c00394{height:20.887891px;}
.h1e_c00394{height:20.987227px;}
.h1a_c00394{height:22.786922px;}
.h2_c00394{height:23.128875px;}
.ha_c00394{height:25.651055px;}
.h9_c00394{height:28.085063px;}
.hd_c00394{height:28.911094px;}
.hf_c00394{height:31.331837px;}
.h12_c00394{height:33.230868px;}
.h5_c00394{height:34.180317px;}
.h1c_c00394{height:34.201406px;}
.hc_c00394{height:35.129767px;}
.h20_c00394{height:37.978116px;}
.h11_c00394{height:38.476582px;}
.h16_c00394{height:42.747324px;}
.h13_c00394{height:44.399180px;}
.h18_c00394{height:45.472324px;}
.h1f_c00394{height:46.257750px;}
.h19_c00394{height:48.970390px;}
.h1b_c00394{height:55.382959px;}
.h6_c00394{height:61.407070px;}
.h1d_c00394{height:63.191391px;}
.h14_c00394{height:66.082500px;}
.h15_c00394{height:67.734563px;}
.h21_c00394{height:69.180117px;}
.h17_c00394{height:69.568770px;}
.h4_c00394{height:70.929053px;}
.h7_c00394{height:71.038894px;}
.h10_c00394{height:71.317899px;}
.he_c00394{height:74.232792px;}
.h3_c00394{height:82.394491px;}
.h1_c00394{height:1110.000000px;}
.h0_c00394{height:1263.000000px;}
.w1_c00394{width:775.500000px;}
.w0_c00394{width:892.500000px;}
.x0_c00394{left:0.000000px;}
.x2_c00394{left:56.570235px;}
.x1_c00394{left:58.500000px;}
.x2c_c00394{left:100.090635px;}
.x7_c00394{left:102.075585px;}
.x83_c00394{left:103.263585px;}
.x64_c00394{left:112.896285px;}
.x60_c00394{left:115.603935px;}
.x5b_c00394{left:122.895285px;}
.x19_c00394{left:124.375335px;}
.x39_c00394{left:134.512935px;}
.x80_c00394{left:135.730635px;}
.x61_c00394{left:140.992485px;}
.x2d_c00394{left:144.813885px;}
.x55_c00394{left:145.917735px;}
.x3a_c00394{left:147.382935px;}
.xb_c00394{left:154.560435px;}
.x8_c00394{left:155.896935px;}
.x65_c00394{left:156.971085px;}
.x6b_c00394{left:166.039485px;}
.x3b_c00394{left:167.232435px;}
.x46_c00394{left:176.360235px;}
.x4d_c00394{left:177.478935px;}
.x9_c00394{left:178.632285px;}
.x2e_c00394{left:188.284785px;}
.x6c_c00394{left:191.091435px;}
.x45_c00394{left:197.323485px;}
.x1a_c00394{left:199.932135px;}
.xc_c00394{left:201.422085px;}
.x1b_c00394{left:210.980535px;}
.x71_c00394{left:217.663035px;}
.xd_c00394{left:220.568685px;}
.x3c_c00394{left:222.177435px;}
.x4e_c00394{left:224.875185px;}
.x53_c00394{left:226.142385px;}
.x4f_c00394{left:230.938935px;}
.x7e_c00394{left:233.547585px;}
.x56_c00394{left:234.923685px;}
.x7a_c00394{left:241.957635px;}
.x5c_c00394{left:244.239585px;}
.x7b_c00394{left:245.313735px;}
.x47_c00394{left:254.095035px;}
.xe_c00394{left:255.317685px;}
.x75_c00394{left:257.282835px;}
.x1c_c00394{left:266.771985px;}
.xf_c00394{left:275.835435px;}
.x3d_c00394{left:277.285785px;}
.x50_c00394{left:279.181635px;}
.x76_c00394{left:280.493385px;}
.x66_c00394{left:287.715435px;}
.x6d_c00394{left:289.046985px;}
.x67_c00394{left:291.526935px;}
.x68_c00394{left:292.952535px;}
.x10_c00394{left:298.813335px;}
.xa_c00394{left:301.832835px;}
.x1d_c00394{left:311.584335px;}
.x57_c00394{left:321.142785px;}
.x48_c00394{left:322.335735px;}
.x78_c00394{left:327.161985px;}
.x3e_c00394{left:333.705885px;}
.x6_c00394{left:338.483427px;}
.x2f_c00394{left:343.724685px;}
.x51_c00394{left:344.754285px;}
.x11_c00394{left:354.386985px;}
.x1e_c00394{left:355.515585px;}
.x1f_c00394{left:365.262135px;}
.x3f_c00394{left:367.237185px;}
.x12_c00394{left:376.627335px;}
.x84_c00394{left:377.948985px;}
.x69_c00394{left:387.349035px;}
.x20_c00394{left:388.517235px;}
.x30_c00394{left:399.065685px;}
.x54_c00394{left:400.293285px;}
.x77_c00394{left:401.981235px;}
.x21_c00394{left:410.495235px;}
.x13_c00394{left:421.053585px;}
.x58_c00394{left:431.493135px;}
.x6e_c00394{left:432.601935px;}
.x49_c00394{left:434.086935px;}
.x81_c00394{left:442.586085px;}
.x40_c00394{left:443.833485px;}
.x59_c00394{left:453.317685px;}
.x14_c00394{left:454.426485px;}
.x72_c00394{left:457.317285px;}
.x31_c00394{left:465.242235px;}
.x85_c00394{left:466.306485px;}
.x35_c00394{left:467.756835px;}
.x73_c00394{left:475.736235px;}
.x22_c00394{left:476.993535px;}
.x82_c00394{left:479.478435px;}
.x32_c00394{left:487.739985px;}
.x5d_c00394{left:498.258735px;}
.x41_c00394{left:499.817985px;}
.x33_c00394{left:509.416035px;}
.x23_c00394{left:511.158435px;}
.x15_c00394{left:520.296135px;}
.x4a_c00394{left:521.494035px;}
.x24_c00394{left:532.646385px;}
.x6f_c00394{left:533.675985px;}
.x25_c00394{left:542.368185px;}
.x74_c00394{left:543.981885px;}
.x5_c00394{left:546.976635px;}
.x42_c00394{left:554.010585px;}
.x26_c00394{left:565.157985px;}
.x27_c00394{left:576.429135px;}
.x6a_c00394{left:583.413585px;}
.x43_c00394{left:587.116185px;}
.x70_c00394{left:597.273585px;}
.x34_c00394{left:598.471485px;}
.x28_c00394{left:608.871435px;}
.x16_c00394{left:620.607885px;}
.x4b_c00394{left:628.651635px;}
.x7c_c00394{left:630.062385px;}
.x44_c00394{left:631.314735px;}
.x86_c00394{left:639.972285px;}
.x29_c00394{left:642.714585px;}
.x7d_c00394{left:649.416885px;}
.x5e_c00394{left:652.515585px;}
.x36_c00394{left:664.459935px;}
.x4c_c00394{left:675.033135px;}
.x2a_c00394{left:686.541885px;}
.x3_c00394{left:687.586335px;}
.x17_c00394{left:697.001235px;}
.x62_c00394{left:698.337735px;}
.x4_c00394{left:699.703935px;}
.x5f_c00394{left:702.426435px;}
.x2b_c00394{left:706.307235px;}
.x18_c00394{left:707.945685px;}
.x5a_c00394{left:718.934685px;}
.x37_c00394{left:720.360285px;}
.x7f_c00394{left:728.463435px;}
.x52_c00394{left:730.745385px;}
.x38_c00394{left:741.793785px;}
.x79_c00394{left:748.966335px;}
.x63_c00394{left:764.078685px;}
.x87_c00394{left:774.003435px;}
@media print{
.v0_c00394{vertical-align:0.000000pt;}
.ls5_c00394{letter-spacing:-2.611846pt;}
.ls8_c00394{letter-spacing:-2.248400pt;}
.ls14_c00394{letter-spacing:-2.203432pt;}
.lsa_c00394{letter-spacing:-1.946560pt;}
.ls19_c00394{letter-spacing:-1.441440pt;}
.ls17_c00394{letter-spacing:-1.275126pt;}
.ls24_c00394{letter-spacing:-1.149896pt;}
.lsc_c00394{letter-spacing:-0.813120pt;}
.ls18_c00394{letter-spacing:-0.597432pt;}
.ls1c_c00394{letter-spacing:-0.369970pt;}
.ls4_c00394{letter-spacing:0.000000pt;}
.ls7_c00394{letter-spacing:0.892936pt;}
.ls20_c00394{letter-spacing:1.047112pt;}
.ls16_c00394{letter-spacing:1.196800pt;}
.ls2_c00394{letter-spacing:1.464672pt;}
.ls21_c00394{letter-spacing:1.548800pt;}
.ls3_c00394{letter-spacing:1.663816pt;}
.ls13_c00394{letter-spacing:1.892000pt;}
.ls11_c00394{letter-spacing:2.164888pt;}
.ls1e_c00394{letter-spacing:2.428272pt;}
.ls1d_c00394{letter-spacing:2.508000pt;}
.ls1_c00394{letter-spacing:2.596352pt;}
.ls22_c00394{letter-spacing:2.692800pt;}
.ls15_c00394{letter-spacing:2.886400pt;}
.ls25_c00394{letter-spacing:2.948000pt;}
.ls1f_c00394{letter-spacing:3.012856pt;}
.ls1b_c00394{letter-spacing:3.150400pt;}
.ls6_c00394{letter-spacing:3.212000pt;}
.lsf_c00394{letter-spacing:3.361609pt;}
.ls0_c00394{letter-spacing:8.415440pt;}
.lsb_c00394{letter-spacing:10.137776pt;}
.lsd_c00394{letter-spacing:27.878400pt;}
.ls1a_c00394{letter-spacing:30.412976pt;}
.ls10_c00394{letter-spacing:41.817600pt;}
.ls12_c00394{letter-spacing:44.352176pt;}
.ls9_c00394{letter-spacing:45.619376pt;}
.lse_c00394{letter-spacing:46.886576pt;}
.ls23_c00394{letter-spacing:50.688176pt;}
.ws0_c00394{word-spacing:-16.060000pt;}
.ws4_c00394{word-spacing:-2.652672pt;}
.ws5_c00394{word-spacing:-2.633840pt;}
.ws3_c00394{word-spacing:-0.056320pt;}
.ws7_c00394{word-spacing:0.000000pt;}
.ws1_c00394{word-spacing:2.440240pt;}
.ws2_c00394{word-spacing:5.396160pt;}
.ws6_c00394{word-spacing:6.616720pt;}
._e_c00394{margin-left:-9.799680pt;}
._4_c00394{margin-left:-7.773040pt;}
._5_c00394{margin-left:-5.910080pt;}
._11_c00394{margin-left:-2.376880pt;}
._13_c00394{margin-left:-1.311640pt;}
._a_c00394{width:2.519176pt;}
._f_c00394{width:5.558784pt;}
._d_c00394{width:6.552480pt;}
._1_c00394{width:8.351200pt;}
._7_c00394{width:9.250560pt;}
._16_c00394{width:10.920800pt;}
._14_c00394{width:12.591040pt;}
._b_c00394{width:13.887192pt;}
._6_c00394{width:17.280560pt;}
._c_c00394{width:20.042880pt;}
._2_c00394{width:21.327680pt;}
._10_c00394{width:26.577760pt;}
._8_c00394{width:28.522560pt;}
._3_c00394{width:29.416640pt;}
._15_c00394{width:30.323040pt;}
._9_c00394{width:34.718640pt;}
._0_c00394{width:37.767840pt;}
._17_c00394{width:38.982240pt;}
._12_c00394{width:108.772400pt;}
.fs6_c00394{font-size:10.137776pt;}
.fs1c_c00394{font-size:19.008000pt;}
.fs0_c00394{font-size:19.712000pt;}
.fs8_c00394{font-size:23.232000pt;}
.fs7_c00394{font-size:23.936000pt;}
.fsb_c00394{font-size:24.640000pt;}
.fs9_c00394{font-size:27.878400pt;}
.fs17_c00394{font-size:30.412976pt;}
.fs1a_c00394{font-size:30.976000pt;}
.fsf_c00394{font-size:34.848000pt;}
.fs14_c00394{font-size:36.432176pt;}
.fs11_c00394{font-size:37.840000pt;}
.fs1d_c00394{font-size:39.424000pt;}
.fs18_c00394{font-size:40.656000pt;}
.fs16_c00394{font-size:41.184000pt;}
.fsd_c00394{font-size:41.817600pt;}
.fs10_c00394{font-size:44.352176pt;}
.fs3_c00394{font-size:45.619376pt;}
.fsa_c00394{font-size:46.886576pt;}
.fs19_c00394{font-size:50.160000pt;}
.fs1e_c00394{font-size:50.688176pt;}
.fs1b_c00394{font-size:53.856000pt;}
.fs4_c00394{font-size:55.616000pt;}
.fs12_c00394{font-size:56.320000pt;}
.fs13_c00394{font-size:57.728000pt;}
.fs1f_c00394{font-size:58.960000pt;}
.fs5_c00394{font-size:60.544176pt;}
.fs15_c00394{font-size:63.008000pt;}
.fs2_c00394{font-size:64.240000pt;}
.fse_c00394{font-size:64.592176pt;}
.fsc_c00394{font-size:67.232176pt;}
.fs1_c00394{font-size:74.624176pt;}
.y0_c00394{bottom:0.000000pt;}
.y1_c00394{bottom:68.000000pt;}
.y2e_c00394{bottom:102.877320pt;}
.y2d_c00394{bottom:132.022920pt;}
.y2c_c00394{bottom:158.638520pt;}
.y2b_c00394{bottom:190.001720pt;}
.y2a_c00394{bottom:219.142920pt;}
.y28_c00394{bottom:240.689720pt;}
.y26_c00394{bottom:275.854520pt;}
.y27_c00394{bottom:280.602120pt;}
.y29_c00394{bottom:302.782520pt;}
.y25_c00394{bottom:304.362120pt;}
.y24_c00394{bottom:332.874120pt;}
.y2f_c00394{bottom:343.962120pt;}
.y23_c00394{bottom:358.856120pt;}
.y22_c00394{bottom:362.340920pt;}
.y20_c00394{bottom:390.848520pt;}
.y1e_c00394{bottom:391.169720pt;}
.y21_c00394{bottom:391.482120pt;}
.y1f_c00394{bottom:394.333320pt;}
.y1c_c00394{bottom:419.048120pt;}
.y1a_c00394{bottom:420.315320pt;}
.y1d_c00394{bottom:420.627720pt;}
.y1b_c00394{bottom:423.800120pt;}
.y19_c00394{bottom:433.299720pt;}
.y18_c00394{bottom:449.139720pt;}
.y2_c00394{bottom:477.656120pt;}
.y17_c00394{bottom:477.968520pt;}
.y16_c00394{bottom:506.801720pt;}
.y15_c00394{bottom:536.259720pt;}
.y14_c00394{bottom:564.776120pt;}
.y13_c00394{bottom:592.654520pt;}
.y12_c00394{bottom:622.112520pt;}
.y11_c00394{bottom:650.941320pt;}
.y10_c00394{bottom:670.582920pt;}
.yf_c00394{bottom:679.457720pt;}
.ye_c00394{bottom:697.194120pt;}
.yc_c00394{bottom:705.430920pt;}
.yd_c00394{bottom:706.381320pt;}
.ya_c00394{bottom:708.603320pt;}
.yb_c00394{bottom:708.920120pt;}
.y9_c00394{bottom:722.859320pt;}
.y8_c00394{bottom:738.061320pt;}
.y7_c00394{bottom:766.894520pt;}
.y6_c00394{bottom:826.136120pt;}
.y5_c00394{bottom:893.295960pt;}
.y4_c00394{bottom:900.579720pt;}
.y3_c00394{bottom:959.187720pt;}
.h8_c00394{height:6.751759pt;}
.hb_c00394{height:18.567014pt;}
.h1e_c00394{height:18.655313pt;}
.h1a_c00394{height:20.255042pt;}
.h2_c00394{height:20.559000pt;}
.ha_c00394{height:22.800938pt;}
.h9_c00394{height:24.964500pt;}
.hd_c00394{height:25.698750pt;}
.hf_c00394{height:27.850522pt;}
.h12_c00394{height:29.538549pt;}
.h5_c00394{height:30.382504pt;}
.h1c_c00394{height:30.401250pt;}
.hc_c00394{height:31.226460pt;}
.h20_c00394{height:33.758325pt;}
.h11_c00394{height:34.201406pt;}
.h16_c00394{height:37.997621pt;}
.h13_c00394{height:39.465938pt;}
.h18_c00394{height:40.419844pt;}
.h1f_c00394{height:41.118000pt;}
.h19_c00394{height:43.529235pt;}
.h1b_c00394{height:49.229297pt;}
.h6_c00394{height:54.584063pt;}
.h1d_c00394{height:56.170125pt;}
.h14_c00394{height:58.740000pt;}
.h15_c00394{height:60.208500pt;}
.h21_c00394{height:61.493438pt;}
.h17_c00394{height:61.838906pt;}
.h4_c00394{height:63.048047pt;}
.h7_c00394{height:63.145684pt;}
.h10_c00394{height:63.393688pt;}
.he_c00394{height:65.984704pt;}
.h3_c00394{height:73.239548pt;}
.h1_c00394{height:986.666667pt;}
.h0_c00394{height:1122.666667pt;}
.w1_c00394{width:689.333333pt;}
.w0_c00394{width:793.333333pt;}
.x0_c00394{left:0.000000pt;}
.x2_c00394{left:50.284653pt;}
.x1_c00394{left:52.000000pt;}
.x2c_c00394{left:88.969453pt;}
.x7_c00394{left:90.733853pt;}
.x83_c00394{left:91.789853pt;}
.x64_c00394{left:100.352253pt;}
.x60_c00394{left:102.759053pt;}
.x5b_c00394{left:109.240253pt;}
.x19_c00394{left:110.555853pt;}
.x39_c00394{left:119.567053pt;}
.x80_c00394{left:120.649453pt;}
.x61_c00394{left:125.326653pt;}
.x2d_c00394{left:128.723453pt;}
.x55_c00394{left:129.704653pt;}
.x3a_c00394{left:131.007053pt;}
.xb_c00394{left:137.387053pt;}
.x8_c00394{left:138.575053pt;}
.x65_c00394{left:139.529853pt;}
.x6b_c00394{left:147.590653pt;}
.x3b_c00394{left:148.651053pt;}
.x46_c00394{left:156.764653pt;}
.x4d_c00394{left:157.759053pt;}
.x9_c00394{left:158.784253pt;}
.x2e_c00394{left:167.364253pt;}
.x6c_c00394{left:169.859053pt;}
.x45_c00394{left:175.398653pt;}
.x1a_c00394{left:177.717453pt;}
.xc_c00394{left:179.041853pt;}
.x1b_c00394{left:187.538253pt;}
.x71_c00394{left:193.478253pt;}
.xd_c00394{left:196.061053pt;}
.x3c_c00394{left:197.491053pt;}
.x4e_c00394{left:199.889053pt;}
.x53_c00394{left:201.015453pt;}
.x4f_c00394{left:205.279053pt;}
.x7e_c00394{left:207.597853pt;}
.x56_c00394{left:208.821053pt;}
.x7a_c00394{left:215.073453pt;}
.x5c_c00394{left:217.101853pt;}
.x7b_c00394{left:218.056653pt;}
.x47_c00394{left:225.862253pt;}
.xe_c00394{left:226.949053pt;}
.x75_c00394{left:228.695853pt;}
.x1c_c00394{left:237.130653pt;}
.xf_c00394{left:245.187053pt;}
.x3d_c00394{left:246.476253pt;}
.x50_c00394{left:248.161453pt;}
.x76_c00394{left:249.327453pt;}
.x66_c00394{left:255.747053pt;}
.x6d_c00394{left:256.930653pt;}
.x67_c00394{left:259.135053pt;}
.x68_c00394{left:260.402253pt;}
.x10_c00394{left:265.611853pt;}
.xa_c00394{left:268.295853pt;}
.x1d_c00394{left:276.963853pt;}
.x57_c00394{left:285.460253pt;}
.x48_c00394{left:286.520653pt;}
.x78_c00394{left:290.810653pt;}
.x3e_c00394{left:296.627453pt;}
.x6_c00394{left:300.874157pt;}
.x2f_c00394{left:305.533053pt;}
.x51_c00394{left:306.448253pt;}
.x11_c00394{left:315.010653pt;}
.x1e_c00394{left:316.013853pt;}
.x1f_c00394{left:324.677453pt;}
.x3f_c00394{left:326.433053pt;}
.x12_c00394{left:334.779853pt;}
.x84_c00394{left:335.954653pt;}
.x69_c00394{left:344.310253pt;}
.x20_c00394{left:345.348653pt;}
.x30_c00394{left:354.725053pt;}
.x54_c00394{left:355.816253pt;}
.x77_c00394{left:357.316653pt;}
.x21_c00394{left:364.884653pt;}
.x13_c00394{left:374.269853pt;}
.x58_c00394{left:383.549453pt;}
.x6e_c00394{left:384.535053pt;}
.x49_c00394{left:385.855053pt;}
.x81_c00394{left:393.409853pt;}
.x40_c00394{left:394.518653pt;}
.x59_c00394{left:402.949053pt;}
.x14_c00394{left:403.934653pt;}
.x72_c00394{left:406.504253pt;}
.x31_c00394{left:413.548653pt;}
.x85_c00394{left:414.494653pt;}
.x35_c00394{left:415.783853pt;}
.x73_c00394{left:422.876653pt;}
.x22_c00394{left:423.994253pt;}
.x82_c00394{left:426.203053pt;}
.x32_c00394{left:433.546653pt;}
.x5d_c00394{left:442.896653pt;}
.x41_c00394{left:444.282653pt;}
.x33_c00394{left:452.814253pt;}
.x23_c00394{left:454.363053pt;}
.x15_c00394{left:462.485453pt;}
.x4a_c00394{left:463.550253pt;}
.x24_c00394{left:473.463453pt;}
.x6f_c00394{left:474.378653pt;}
.x25_c00394{left:482.105053pt;}
.x74_c00394{left:483.539453pt;}
.x5_c00394{left:486.201453pt;}
.x42_c00394{left:492.453853pt;}
.x26_c00394{left:502.362653pt;}
.x27_c00394{left:512.381453pt;}
.x6a_c00394{left:518.589853pt;}
.x43_c00394{left:521.881053pt;}
.x70_c00394{left:530.909853pt;}
.x34_c00394{left:531.974653pt;}
.x28_c00394{left:541.219053pt;}
.x16_c00394{left:551.651453pt;}
.x4b_c00394{left:558.801453pt;}
.x7c_c00394{left:560.055453pt;}
.x44_c00394{left:561.168653pt;}
.x86_c00394{left:568.864253pt;}
.x29_c00394{left:571.301853pt;}
.x7d_c00394{left:577.259453pt;}
.x5e_c00394{left:580.013853pt;}
.x36_c00394{left:590.631053pt;}
.x4c_c00394{left:600.029453pt;}
.x2a_c00394{left:610.259453pt;}
.x3_c00394{left:611.187853pt;}
.x17_c00394{left:619.556653pt;}
.x62_c00394{left:620.744653pt;}
.x4_c00394{left:621.959053pt;}
.x5f_c00394{left:624.379053pt;}
.x2b_c00394{left:627.828653pt;}
.x18_c00394{left:629.285053pt;}
.x5a_c00394{left:639.053053pt;}
.x37_c00394{left:640.320253pt;}
.x7f_c00394{left:647.523053pt;}
.x52_c00394{left:649.551453pt;}
.x38_c00394{left:659.372253pt;}
.x79_c00394{left:665.747853pt;}
.x63_c00394{left:679.181053pt;}
.x87_c00394{left:688.003053pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_edf606c679849eca7f24f3c2.woff2')format("woff");}.ff1_c00395{font-family:ff1_c00395;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00395;src:url('chunks/assets/font_dafddd641ab789b8df802893.woff2')format("woff");}.ff2_c00395{font-family:ff2_c00395;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00395;src:url('chunks/assets/font_8b1537fffc53b79daab4959a.woff2')format("woff");}.ff3_c00395{font-family:ff3_c00395;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00395;src:url('chunks/assets/font_3a251b3fc795bb4d7e1b407a.woff2')format("woff");}.ff4_c00395{font-family:ff4_c00395;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m11_c00395{transform:matrix(0.027779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.027779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.027779,0.000000,0.000000,0.250000,0,0);}
.m53_c00395{transform:matrix(0.064286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064286,0.000000,0.000000,0.250000,0,0);}
.m37_c00395{transform:matrix(0.096030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096030,0.000000,0.000000,0.250000,0,0);}
.m38_c00395{transform:matrix(0.131433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131433,0.000000,0.000000,0.250000,0,0);}
.m48_c00395{transform:matrix(0.134146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134146,0.000000,0.000000,0.250000,0,0);}
.m45_c00395{transform:matrix(0.143292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143292,0.000000,0.000000,0.250000,0,0);}
.m52_c00395{transform:matrix(0.157142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157142,0.000000,0.000000,0.250000,0,0);}
.m10_c00395{transform:matrix(0.159723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159723,0.000000,0.000000,0.250000,0,0);}
.m54_c00395{transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);}
.m46_c00395{transform:matrix(0.164634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164634,0.000000,0.000000,0.250000,0,0);}
.m47_c00395{transform:matrix(0.167683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167683,0.000000,0.000000,0.250000,0,0);}
.m1f_c00395{transform:matrix(0.167774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167774,0.000000,0.000000,0.250000,0,0);}
.mbe_c00395{transform:matrix(0.190953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190953,0.000000,0.000000,0.250000,0,0);}
.mf_c00395{transform:matrix(0.190972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190972,0.000000,0.000000,0.250000,0,0);}
.m94_c00395{transform:matrix(0.197368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197368,0.000000,0.000000,0.250000,0,0);}
.m55_c00395{transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);}
.mae_c00395{transform:matrix(0.200081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200081,0.000000,0.000000,0.250000,0,0);}
.m16_c00395{transform:matrix(0.206030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206030,0.000000,0.000000,0.250000,0,0);}
.m12_c00395{transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);}
.m7a_c00395{transform:matrix(0.213154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213154,0.000000,0.000000,0.250000,0,0);}
.ma1_c00395{transform:matrix(0.213589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213589,0.000000,0.000000,0.250000,0,0);}
.mbc_c00395{transform:matrix(0.214786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214786,0.000000,0.000000,0.250000,0,0);}
.m4f_c00395{transform:matrix(0.223475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223475,0.000000,0.000000,0.250000,0,0);}
.mb1_c00395{transform:matrix(0.224149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224149,0.000000,0.000000,0.250000,0,0);}
.md3_c00395{transform:matrix(0.229055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229055,0.000000,0.000000,0.250000,0,0);}
.m7d_c00395{transform:matrix(0.233200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233200,0.000000,0.000000,0.250000,0,0);}
.mc4_c00395{transform:matrix(0.233359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233359,0.000000,0.000000,0.250000,0,0);}
.m8e_c00395{transform:matrix(0.239576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239576,0.000000,0.000000,0.250000,0,0);}
.mbd_c00395{transform:matrix(0.242704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242704,0.000000,0.000000,0.250000,0,0);}
.m1_c00395{transform:matrix(0.249506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249506,0.000000,0.000000,0.250000,0,0);}
.m0_c00395{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00395{transform:matrix(0.250400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250400,0.000000,0.000000,0.250000,0,0);}
.m18_c00395{transform:matrix(0.250445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250445,0.000000,0.000000,0.250000,0,0);}
.ma7_c00395{transform:matrix(0.250788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250788,0.000000,0.000000,0.250000,0,0);}
.m1d_c00395{transform:matrix(0.251309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251309,0.000000,0.000000,0.250000,0,0);}
.mce_c00395{transform:matrix(0.252162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252162,0.000000,0.000000,0.250000,0,0);}
.m8f_c00395{transform:matrix(0.253550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253550,0.000000,0.000000,0.250000,0,0);}
.m65_c00395{transform:matrix(0.255266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255266,0.000000,0.000000,0.250000,0,0);}
.m88_c00395{transform:matrix(0.255346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255346,0.000000,0.000000,0.250000,0,0);}
.m4d_c00395{transform:matrix(0.256665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256665,0.000000,0.000000,0.250000,0,0);}
.m24_c00395{transform:matrix(0.256756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256756,0.000000,0.000000,0.250000,0,0);}
.mdd_c00395{transform:matrix(0.260163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260163,0.000000,0.000000,0.250000,0,0);}
.m84_c00395{transform:matrix(0.261168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261168,0.000000,0.000000,0.250000,0,0);}
.ma5_c00395{transform:matrix(0.261468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261468,0.000000,0.000000,0.250000,0,0);}
.mb6_c00395{transform:matrix(0.262004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262004,0.000000,0.000000,0.250000,0,0);}
.m9f_c00395{transform:matrix(0.263543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263543,0.000000,0.000000,0.250000,0,0);}
.m74_c00395{transform:matrix(0.264899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264899,0.000000,0.000000,0.250000,0,0);}
.mc2_c00395{transform:matrix(0.265346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265346,0.000000,0.000000,0.250000,0,0);}
.m83_c00395{transform:matrix(0.265546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265546,0.000000,0.000000,0.250000,0,0);}
.m79_c00395{transform:matrix(0.265849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265849,0.000000,0.000000,0.250000,0,0);}
.m5a_c00395{transform:matrix(0.266768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266768,0.000000,0.000000,0.250000,0,0);}
.m92_c00395{transform:matrix(0.267326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267326,0.000000,0.000000,0.250000,0,0);}
.m8a_c00395{transform:matrix(0.268611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268611,0.000000,0.000000,0.250000,0,0);}
.m51_c00395{transform:matrix(0.268904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268904,0.000000,0.000000,0.250000,0,0);}
.m1b_c00395{transform:matrix(0.269115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269115,0.000000,0.000000,0.250000,0,0);}
.m3b_c00395{transform:matrix(0.269715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269715,0.000000,0.000000,0.250000,0,0);}
.m77_c00395{transform:matrix(0.269799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269799,0.000000,0.000000,0.250000,0,0);}
.m69_c00395{transform:matrix(0.270174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270174,0.000000,0.000000,0.250000,0,0);}
.md5_c00395{transform:matrix(0.270256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270256,0.000000,0.000000,0.250000,0,0);}
.m71_c00395{transform:matrix(0.270399,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270399,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270399,0.000000,0.000000,0.250000,0,0);}
.m15_c00395{transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);}
.m99_c00395{transform:matrix(0.271804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271804,0.000000,0.000000,0.250000,0,0);}
.mca_c00395{transform:matrix(0.271960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271960,0.000000,0.000000,0.250000,0,0);}
.ma3_c00395{transform:matrix(0.272100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272100,0.000000,0.000000,0.250000,0,0);}
.ma6_c00395{transform:matrix(0.272830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272830,0.000000,0.000000,0.250000,0,0);}
.mcd_c00395{transform:matrix(0.272857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272857,0.000000,0.000000,0.250000,0,0);}
.me3_c00395{transform:matrix(0.273934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273934,0.000000,0.000000,0.250000,0,0);}
.md1_c00395{transform:matrix(0.274254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274254,0.000000,0.000000,0.250000,0,0);}
.m57_c00395{transform:matrix(0.274532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274532,0.000000,0.000000,0.250000,0,0);}
.me5_c00395{transform:matrix(0.274616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274616,0.000000,0.000000,0.250000,0,0);}
.me0_c00395{transform:matrix(0.275219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275219,0.000000,0.000000,0.250000,0,0);}
.mab_c00395{transform:matrix(0.275550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275550,0.000000,0.000000,0.250000,0,0);}
.mc8_c00395{transform:matrix(0.276116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276116,0.000000,0.000000,0.250000,0,0);}
.m31_c00395{transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);}
.m89_c00395{transform:matrix(0.276297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276297,0.000000,0.000000,0.250000,0,0);}
.m76_c00395{transform:matrix(0.276704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276704,0.000000,0.000000,0.250000,0,0);}
.m3e_c00395{transform:matrix(0.277012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277012,0.000000,0.000000,0.250000,0,0);}
.mb0_c00395{transform:matrix(0.278289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278289,0.000000,0.000000,0.250000,0,0);}
.m93_c00395{transform:matrix(0.278907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278907,0.000000,0.000000,0.250000,0,0);}
.m62_c00395{transform:matrix(0.279348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279348,0.000000,0.000000,0.250000,0,0);}
.m82_c00395{transform:matrix(0.280064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280064,0.000000,0.000000,0.250000,0,0);}
.maa_c00395{transform:matrix(0.280090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280090,0.000000,0.000000,0.250000,0,0);}
.m85_c00395{transform:matrix(0.280678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280678,0.000000,0.000000,0.250000,0,0);}
.m6e_c00395{transform:matrix(0.281060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281060,0.000000,0.000000,0.250000,0,0);}
.m6b_c00395{transform:matrix(0.281350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281350,0.000000,0.000000,0.250000,0,0);}
.m26_c00395{transform:matrix(0.281410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281410,0.000000,0.000000,0.250000,0,0);}
.m56_c00395{transform:matrix(0.281788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281788,0.000000,0.000000,0.250000,0,0);}
.m4e_c00395{transform:matrix(0.282148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282148,0.000000,0.000000,0.250000,0,0);}
.mc_c00395{transform:matrix(0.282691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282691,0.000000,0.000000,0.250000,0,0);}
.m14_c00395{transform:matrix(0.282698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282698,0.000000,0.000000,0.250000,0,0);}
.mb8_c00395{transform:matrix(0.283241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283241,0.000000,0.000000,0.250000,0,0);}
.m32_c00395{transform:matrix(0.283404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283404,0.000000,0.000000,0.250000,0,0);}
.m6f_c00395{transform:matrix(0.284164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284164,0.000000,0.000000,0.250000,0,0);}
.m5d_c00395{transform:matrix(0.284177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284177,0.000000,0.000000,0.250000,0,0);}
.mc7_c00395{transform:matrix(0.284184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284184,0.000000,0.000000,0.250000,0,0);}
.md0_c00395{transform:matrix(0.284301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284301,0.000000,0.000000,0.250000,0,0);}
.ma2_c00395{transform:matrix(0.284349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284349,0.000000,0.000000,0.250000,0,0);}
.m20_c00395{transform:matrix(0.285095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285095,0.000000,0.000000,0.250000,0,0);}
.m19_c00395{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.me1_c00395{transform:matrix(0.286949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286949,0.000000,0.000000,0.250000,0,0);}
.m8d_c00395{transform:matrix(0.287277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287277,0.000000,0.000000,0.250000,0,0);}
.m7e_c00395{transform:matrix(0.287532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287532,0.000000,0.000000,0.250000,0,0);}
.m6d_c00395{transform:matrix(0.288127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288127,0.000000,0.000000,0.250000,0,0);}
.ma8_c00395{transform:matrix(0.288128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288128,0.000000,0.000000,0.250000,0,0);}
.md7_c00395{transform:matrix(0.288713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288713,0.000000,0.000000,0.250000,0,0);}
.mc1_c00395{transform:matrix(0.289341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289341,0.000000,0.000000,0.250000,0,0);}
.m49_c00395{transform:matrix(0.290344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290344,0.000000,0.000000,0.250000,0,0);}
.m5_c00395{transform:matrix(0.290349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290349,0.000000,0.000000,0.250000,0,0);}
.m44_c00395{transform:matrix(0.290586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290586,0.000000,0.000000,0.250000,0,0);}
.m5f_c00395{transform:matrix(0.290588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290588,0.000000,0.000000,0.250000,0,0);}
.ma0_c00395{transform:matrix(0.290632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290632,0.000000,0.000000,0.250000,0,0);}
.m25_c00395{transform:matrix(0.291653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291653,0.000000,0.000000,0.250000,0,0);}
.mb3_c00395{transform:matrix(0.293648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293648,0.000000,0.000000,0.250000,0,0);}
.m4a_c00395{transform:matrix(0.293702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293702,0.000000,0.000000,0.250000,0,0);}
.m90_c00395{transform:matrix(0.293827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293827,0.000000,0.000000,0.250000,0,0);}
.m64_c00395{transform:matrix(0.294323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294323,0.000000,0.000000,0.250000,0,0);}
.m4_c00395{transform:matrix(0.294538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294538,0.000000,0.000000,0.250000,0,0);}
.m2e_c00395{transform:matrix(0.294621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294621,0.000000,0.000000,0.250000,0,0);}
.m9c_c00395{transform:matrix(0.295448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295448,0.000000,0.000000,0.250000,0,0);}
.mb9_c00395{transform:matrix(0.296034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296034,0.000000,0.000000,0.250000,0,0);}
.m9_c00395{transform:matrix(0.296506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296506,0.000000,0.000000,0.250000,0,0);}
.mda_c00395{transform:matrix(0.296561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296561,0.000000,0.000000,0.250000,0,0);}
.mcf_c00395{transform:matrix(0.297537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297537,0.000000,0.000000,0.250000,0,0);}
.m34_c00395{transform:matrix(0.298566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298566,0.000000,0.000000,0.250000,0,0);}
.md_c00395{transform:matrix(0.298728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298728,0.000000,0.000000,0.250000,0,0);}
.m3_c00395{transform:matrix(0.298948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298948,0.000000,0.000000,0.250000,0,0);}
.mb7_c00395{transform:matrix(0.299006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299006,0.000000,0.000000,0.250000,0,0);}
.m9e_c00395{transform:matrix(0.299384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299384,0.000000,0.000000,0.250000,0,0);}
.m87_c00395{transform:matrix(0.299753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299753,0.000000,0.000000,0.250000,0,0);}
.maf_c00395{transform:matrix(0.299924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299924,0.000000,0.000000,0.250000,0,0);}
.m5c_c00395{transform:matrix(0.300271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300271,0.000000,0.000000,0.250000,0,0);}
.m72_c00395{transform:matrix(0.300502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300502,0.000000,0.000000,0.250000,0,0);}
.m81_c00395{transform:matrix(0.300918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300918,0.000000,0.000000,0.250000,0,0);}
.me6_c00395{transform:matrix(0.301305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301305,0.000000,0.000000,0.250000,0,0);}
.md4_c00395{transform:matrix(0.301359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301359,0.000000,0.000000,0.250000,0,0);}
.mc3_c00395{transform:matrix(0.301529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301529,0.000000,0.000000,0.250000,0,0);}
.m3a_c00395{transform:matrix(0.301805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301805,0.000000,0.000000,0.250000,0,0);}
.m2f_c00395{transform:matrix(0.302320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302320,0.000000,0.000000,0.250000,0,0);}
.mb4_c00395{transform:matrix(0.302645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302645,0.000000,0.000000,0.250000,0,0);}
.md6_c00395{transform:matrix(0.302844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302844,0.000000,0.000000,0.250000,0,0);}
.m4b_c00395{transform:matrix(0.303273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303273,0.000000,0.000000,0.250000,0,0);}
.mb5_c00395{transform:matrix(0.304062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304062,0.000000,0.000000,0.250000,0,0);}
.me4_c00395{transform:matrix(0.304661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304661,0.000000,0.000000,0.250000,0,0);}
.m23_c00395{transform:matrix(0.305913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305913,0.000000,0.000000,0.250000,0,0);}
.md2_c00395{transform:matrix(0.306051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306051,0.000000,0.000000,0.250000,0,0);}
.mac_c00395{transform:matrix(0.306347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306347,0.000000,0.000000,0.250000,0,0);}
.m1a_c00395{transform:matrix(0.306390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306390,0.000000,0.000000,0.250000,0,0);}
.m98_c00395{transform:matrix(0.307103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307103,0.000000,0.000000,0.250000,0,0);}
.m8c_c00395{transform:matrix(0.307806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307806,0.000000,0.000000,0.250000,0,0);}
.m36_c00395{transform:matrix(0.308004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308004,0.000000,0.000000,0.250000,0,0);}
.m3d_c00395{transform:matrix(0.309723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309723,0.000000,0.000000,0.250000,0,0);}
.mde_c00395{transform:matrix(0.309730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309730,0.000000,0.000000,0.250000,0,0);}
.m91_c00395{transform:matrix(0.309745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309745,0.000000,0.000000,0.250000,0,0);}
.m8_c00395{transform:matrix(0.310831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310831,0.000000,0.000000,0.250000,0,0);}
.m3f_c00395{transform:matrix(0.311262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311262,0.000000,0.000000,0.250000,0,0);}
.ma4_c00395{transform:matrix(0.311326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311326,0.000000,0.000000,0.250000,0,0);}
.m3c_c00395{transform:matrix(0.311816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311816,0.000000,0.000000,0.250000,0,0);}
.m63_c00395{transform:matrix(0.311825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311825,0.000000,0.000000,0.250000,0,0);}
.m33_c00395{transform:matrix(0.311861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311861,0.000000,0.000000,0.250000,0,0);}
.mad_c00395{transform:matrix(0.312043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312043,0.000000,0.000000,0.250000,0,0);}
.m70_c00395{transform:matrix(0.312641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312641,0.000000,0.000000,0.250000,0,0);}
.mb2_c00395{transform:matrix(0.312775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312775,0.000000,0.000000,0.250000,0,0);}
.mc5_c00395{transform:matrix(0.312835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312835,0.000000,0.000000,0.250000,0,0);}
.m29_c00395{transform:matrix(0.313336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313336,0.000000,0.000000,0.250000,0,0);}
.mba_c00395{transform:matrix(0.314056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314056,0.000000,0.000000,0.250000,0,0);}
.m67_c00395{transform:matrix(0.316434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316434,0.000000,0.000000,0.250000,0,0);}
.m43_c00395{transform:matrix(0.316710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316710,0.000000,0.000000,0.250000,0,0);}
.m6c_c00395{transform:matrix(0.317599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317599,0.000000,0.000000,0.250000,0,0);}
.m59_c00395{transform:matrix(0.317838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317838,0.000000,0.000000,0.250000,0,0);}
.m86_c00395{transform:matrix(0.317913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317913,0.000000,0.000000,0.250000,0,0);}
.mdf_c00395{transform:matrix(0.318221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318221,0.000000,0.000000,0.250000,0,0);}
.mdc_c00395{transform:matrix(0.318482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318482,0.000000,0.000000,0.250000,0,0);}
.mbb_c00395{transform:matrix(0.318558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318558,0.000000,0.000000,0.250000,0,0);}
.ma9_c00395{transform:matrix(0.318683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318683,0.000000,0.000000,0.250000,0,0);}
.m9a_c00395{transform:matrix(0.319436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319436,0.000000,0.000000,0.250000,0,0);}
.m80_c00395{transform:matrix(0.320403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320403,0.000000,0.000000,0.250000,0,0);}
.m2c_c00395{transform:matrix(0.320430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320430,0.000000,0.000000,0.250000,0,0);}
.me_c00395{transform:matrix(0.321372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321372,0.000000,0.000000,0.250000,0,0);}
.m27_c00395{transform:matrix(0.321737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321737,0.000000,0.000000,0.250000,0,0);}
.me8_c00395{transform:matrix(0.322155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322155,0.000000,0.000000,0.250000,0,0);}
.m5b_c00395{transform:matrix(0.322306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322306,0.000000,0.000000,0.250000,0,0);}
.m66_c00395{transform:matrix(0.323374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323374,0.000000,0.000000,0.250000,0,0);}
.m5e_c00395{transform:matrix(0.323382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323382,0.000000,0.000000,0.250000,0,0);}
.m2a_c00395{transform:matrix(0.323734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323734,0.000000,0.000000,0.250000,0,0);}
.m4c_c00395{transform:matrix(0.323911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323911,0.000000,0.000000,0.250000,0,0);}
.m22_c00395{transform:matrix(0.323963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323963,0.000000,0.000000,0.250000,0,0);}
.m30_c00395{transform:matrix(0.325570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325570,0.000000,0.000000,0.250000,0,0);}
.m1c_c00395{transform:matrix(0.325582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325582,0.000000,0.000000,0.250000,0,0);}
.m7f_c00395{transform:matrix(0.325911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325911,0.000000,0.000000,0.250000,0,0);}
.m9d_c00395{transform:matrix(0.325915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325915,0.000000,0.000000,0.250000,0,0);}
.mcb_c00395{transform:matrix(0.327635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327635,0.000000,0.000000,0.250000,0,0);}
.m61_c00395{transform:matrix(0.327859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327859,0.000000,0.000000,0.250000,0,0);}
.md8_c00395{transform:matrix(0.328947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328947,0.000000,0.000000,0.250000,0,0);}
.m21_c00395{transform:matrix(0.329657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329657,0.000000,0.000000,0.250000,0,0);}
.m68_c00395{transform:matrix(0.330540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330540,0.000000,0.000000,0.250000,0,0);}
.mc9_c00395{transform:matrix(0.334167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334167,0.000000,0.000000,0.250000,0,0);}
.m9b_c00395{transform:matrix(0.334433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334433,0.000000,0.000000,0.250000,0,0);}
.m35_c00395{transform:matrix(0.335922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335922,0.000000,0.000000,0.250000,0,0);}
.me2_c00395{transform:matrix(0.336891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336891,0.000000,0.000000,0.250000,0,0);}
.m73_c00395{transform:matrix(0.337289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337289,0.000000,0.000000,0.250000,0,0);}
.m7_c00395{transform:matrix(0.337388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337388,0.000000,0.000000,0.250000,0,0);}
.m39_c00395{transform:matrix(0.337398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337398,0.000000,0.000000,0.250000,0,0);}
.m58_c00395{transform:matrix(0.337690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337690,0.000000,0.000000,0.250000,0,0);}
.mb_c00395{transform:matrix(0.338325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338325,0.000000,0.000000,0.250000,0,0);}
.m95_c00395{transform:matrix(0.338983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338983,0.000000,0.000000,0.250000,0,0);}
.m17_c00395{transform:matrix(0.339014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339014,0.000000,0.000000,0.250000,0,0);}
.m1e_c00395{transform:matrix(0.339977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339977,0.000000,0.000000,0.250000,0,0);}
.ma_c00395{transform:matrix(0.343636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343636,0.000000,0.000000,0.250000,0,0);}
.m8b_c00395{transform:matrix(0.344806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344806,0.000000,0.000000,0.250000,0,0);}
.me7_c00395{transform:matrix(0.346235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346235,0.000000,0.000000,0.250000,0,0);}
.md9_c00395{transform:matrix(0.348212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348212,0.000000,0.000000,0.250000,0,0);}
.m2_c00395{transform:matrix(0.349267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349267,0.000000,0.000000,0.250000,0,0);}
.m6_c00395{transform:matrix(0.349295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349295,0.000000,0.000000,0.250000,0,0);}
.m75_c00395{transform:matrix(0.349884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349884,0.000000,0.000000,0.250000,0,0);}
.m40_c00395{transform:matrix(0.351676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351676,0.000000,0.000000,0.250000,0,0);}
.mcc_c00395{transform:matrix(0.352910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352910,0.000000,0.000000,0.250000,0,0);}
.m41_c00395{transform:matrix(0.356788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356788,0.000000,0.000000,0.250000,0,0);}
.m60_c00395{transform:matrix(0.360011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360011,0.000000,0.000000,0.250000,0,0);}
.m2b_c00395{transform:matrix(0.362979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362979,0.000000,0.000000,0.250000,0,0);}
.m78_c00395{transform:matrix(0.364130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364130,0.000000,0.000000,0.250000,0,0);}
.m42_c00395{transform:matrix(0.366321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366321,0.000000,0.000000,0.250000,0,0);}
.m28_c00395{transform:matrix(0.366428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366428,0.000000,0.000000,0.250000,0,0);}
.mc0_c00395{transform:matrix(0.366640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366640,0.000000,0.000000,0.250000,0,0);}
.m13_c00395{transform:matrix(0.372659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372659,0.000000,0.000000,0.250000,0,0);}
.m50_c00395{transform:matrix(0.372740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372740,0.000000,0.000000,0.250000,0,0);}
.m2d_c00395{transform:matrix(0.375372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375372,0.000000,0.000000,0.250000,0,0);}
.m7c_c00395{transform:matrix(0.377243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377243,0.000000,0.000000,0.250000,0,0);}
.m97_c00395{transform:matrix(0.383698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383698,0.000000,0.000000,0.250000,0,0);}
.m96_c00395{transform:matrix(0.410674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410674,0.000000,0.000000,0.250000,0,0);}
.m6a_c00395{transform:matrix(0.417221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417221,0.000000,0.000000,0.250000,0,0);}
.mc6_c00395{transform:matrix(0.430152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430152,0.000000,0.000000,0.250000,0,0);}
.mdb_c00395{transform:matrix(0.436298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436298,0.000000,0.000000,0.250000,0,0);}
.mbf_c00395{transform:matrix(0.445858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445858,0.000000,0.000000,0.250000,0,0);}
.v1_c00395{vertical-align:-22.789800px;}
.v0_c00395{vertical-align:0.000000px;}
.ls6_c00395{letter-spacing:-3.014550px;}
.lsa_c00395{letter-spacing:-2.661127px;}
.lse_c00395{letter-spacing:-2.486253px;}
.ls12_c00395{letter-spacing:-1.186102px;}
.lsb_c00395{letter-spacing:-1.034038px;}
.ls14_c00395{letter-spacing:-0.997920px;}
.lsf_c00395{letter-spacing:-0.570241px;}
.ls10_c00395{letter-spacing:-0.288922px;}
.ls5_c00395{letter-spacing:0.000000px;}
.ls2_c00395{letter-spacing:0.380161px;}
.ls1_c00395{letter-spacing:0.854568px;}
.ls15_c00395{letter-spacing:1.643400px;}
.ls4_c00395{letter-spacing:2.250553px;}
.ls0_c00395{letter-spacing:2.440634px;}
.ls8_c00395{letter-spacing:2.504700px;}
.ls17_c00395{letter-spacing:3.029400px;}
.ls16_c00395{letter-spacing:3.187810px;}
.ls13_c00395{letter-spacing:3.653110px;}
.ls7_c00395{letter-spacing:3.801610px;}
.ls3_c00395{letter-spacing:8.059326px;}
.lsd_c00395{letter-spacing:49.896198px;}
.ls9_c00395{letter-spacing:51.321798px;}
.ls11_c00395{letter-spacing:54.172998px;}
.lsc_c00395{letter-spacing:58.449798px;}
.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;}
}
.ws8_c00395{word-spacing:-21.258603px;}
.ws3_c00395{word-spacing:-19.388210px;}
.ws2_c00395{word-spacing:-19.008050px;}
.ws1_c00395{word-spacing:-17.974012px;}
.ws6_c00395{word-spacing:-17.821947px;}
.ws4_c00395{word-spacing:-3.953791px;}
.ws9_c00395{word-spacing:0.000000px;}
.ws0_c00395{word-spacing:1.748631px;}
.ws5_c00395{word-spacing:1.748819px;}
.ws7_c00395{word-spacing:4.866141px;}
._19_c00395{margin-left:-17.715599px;}
._1a_c00395{margin-left:-10.966428px;}
._a_c00395{margin-left:-1.748681px;}
._2_c00395{width:3.346101px;}
._c_c00395{width:4.866147px;}
._9_c00395{width:6.349984px;}
._3_c00395{width:7.603101px;}
._10_c00395{width:9.047907px;}
._5_c00395{width:10.796629px;}
._15_c00395{width:13.343132px;}
._12_c00395{width:14.482806px;}
._11_c00395{width:20.224655px;}
._7_c00395{width:21.517199px;}
._e_c00395{width:22.886369px;}
._6_c00395{width:24.330383px;}
._1_c00395{width:25.774793px;}
._4_c00395{width:29.917651px;}
._d_c00395{width:31.097138px;}
._0_c00395{width:32.168745px;}
._8_c00395{width:33.682237px;}
._18_c00395{width:34.974769px;}
._f_c00395{width:36.343555px;}
._14_c00395{width:38.472055px;}
._13_c00395{width:41.589399px;}
._16_c00395{width:42.823121px;}
._b_c00395{width:44.250707px;}
._17_c00395{width:56.194639px;}
.fc0_c00395{color:transparent;}
.fs2_c00395{font-size:22.176000px;}
.fs1_c00395{font-size:22.572000px;}
.fs0_c00395{font-size:27.720000px;}
.fse_c00395{font-size:28.512000px;}
.fsf_c00395{font-size:32.868000px;}
.fs12_c00395{font-size:35.442000px;}
.fs8_c00395{font-size:49.896198px;}
.fs5_c00395{font-size:50.094000px;}
.fs6_c00395{font-size:51.321798px;}
.fs9_c00395{font-size:51.480000px;}
.fsc_c00395{font-size:54.172998px;}
.fs7_c00395{font-size:58.449798px;}
.fs11_c00395{font-size:60.588000px;}
.fs10_c00395{font-size:63.756198px;}
.fsb_c00395{font-size:66.528000px;}
.fsa_c00395{font-size:70.884000px;}
.fsd_c00395{font-size:73.062198px;}
.fs4_c00395{font-size:76.032198px;}
.fs3_c00395{font-size:86.130000px;}
.y0_c00395{bottom:0.000000px;}
.y25_c00395{bottom:2.401785px;}
.y1_c00395{bottom:76.500000px;}
.y24_c00395{bottom:139.264335px;}
.y23_c00395{bottom:155.653785px;}
.y22_c00395{bottom:169.558335px;}
.y21_c00395{bottom:169.562988px;}
.y4_c00395{bottom:182.027385px;}
.y20_c00395{bottom:206.267535px;}
.y1e_c00395{bottom:238.699935px;}
.y1f_c00395{bottom:244.753785px;}
.y3_c00395{bottom:262.578735px;}
.y1d_c00395{bottom:272.201535px;}
.y1b_c00395{bottom:304.990335px;}
.y1c_c00395{bottom:310.687785px;}
.y1a_c00395{bottom:338.130585px;}
.y19_c00395{bottom:371.280735px;}
.y18_c00395{bottom:403.713135px;}
.y17_c00395{bottom:436.501935px;}
.y16_c00395{bottom:457.885935px;}
.y15_c00395{bottom:469.998585px;}
.y14_c00395{bottom:502.435935px;}
.y12_c00395{bottom:566.587935px;}
.y13_c00395{bottom:566.939385px;}
.y11_c00395{bottom:598.663935px;}
.y10_c00395{bottom:632.878335px;}
.yf_c00395{bottom:646.421535px;}
.ye_c00395{bottom:666.374985px;}
.yd_c00395{bottom:699.525135px;}
.yb_c00395{bottom:733.373730px;}
.yc_c00395{bottom:733.378185px;}
.ya_c00395{bottom:766.884735px;}
.y9_c00395{bottom:831.031785px;}
.y8_c00395{bottom:865.246185px;}
.y7_c00395{bottom:897.327135px;}
.y6_c00395{bottom:930.115935px;}
.y2_c00395{bottom:1075.522185px;}
.y5_c00395{bottom:1080.511785px;}
.h4_c00395{height:23.128875px;}
.h3_c00395{height:23.541891px;}
.h2_c00395{height:28.911094px;}
.h11_c00395{height:29.737125px;}
.hb_c00395{height:33.230868px;}
.h8_c00395{height:34.180317px;}
.h12_c00395{height:34.280297px;}
.he_c00395{height:36.079217px;}
.h15_c00395{height:36.964898px;}
.ha_c00395{height:38.927565px;}
.hf_c00395{height:51.831644px;}
.h7_c00395{height:52.246477px;}
.h13_c00395{height:62.573222px;}
.h14_c00395{height:63.191391px;}
.hd_c00395{height:69.386625px;}
.hc_c00395{height:69.568770px;}
.h10_c00395{height:71.670877px;}
.h6_c00395{height:74.621444px;}
.h9_c00395{height:74.639264px;}
.h5_c00395{height:84.531885px;}
.h1_c00395{height:1110.000000px;}
.h0_c00395{height:1263.000000px;}
.w1_c00395{width:775.500000px;}
.w0_c00395{width:892.500000px;}
.x0_c00395{left:0.000000px;}
.x2_c00395{left:28.746285px;}
.x3_c00395{left:54.377385px;}
.x1_c00395{left:58.500000px;}
.x12_c00395{left:97.952235px;}
.x49_c00395{left:99.110535px;}
.x6_c00395{left:100.199535px;}
.x6a_c00395{left:109.609485px;}
.x5a_c00395{left:111.713235px;}
.x23_c00395{left:120.855885px;}
.x72_c00395{left:121.954785px;}
.x42_c00395{left:132.008235px;}
.x73_c00395{left:133.042785px;}
.x4a_c00395{left:141.437985px;}
.x24_c00395{left:143.635785px;}
.x7_c00395{left:154.431735px;}
.x13_c00395{left:165.292035px;}
.x78_c00395{left:167.806635px;}
.x50_c00395{left:174.998985px;}
.x25_c00395{left:176.483985px;}
.x6b_c00395{left:177.701685px;}
.x34_c00395{left:185.695935px;}
.x51_c00395{left:187.557135px;}
.x4b_c00395{left:197.100735px;}
.x2e_c00395{left:199.684635px;}
.x43_c00395{left:208.975785px;}
.x5d_c00395{left:211.188435px;}
.x74_c00395{left:212.524935px;}
.x62_c00395{left:219.717285px;}
.x56_c00395{left:220.736985px;}
.x79_c00395{left:222.469485px;}
.x14_c00395{left:231.958635px;}
.x2f_c00395{left:241.621035px;}
.x44_c00395{left:245.551335px;}
.x26_c00395{left:253.897035px;}
.x52_c00395{left:255.738435px;}
.x8_c00395{left:264.465285px;}
.x15_c00395{left:265.574085px;}
.x30_c00395{left:276.196785px;}
.x7a_c00395{left:281.765535px;}
.x3a_c00395{left:284.804835px;}
.x3b_c00395{left:286.661085px;}
.x16_c00395{left:297.942135px;}
.x5b_c00395{left:299.140035px;}
.x9_c00395{left:309.020235px;}
.x7b_c00395{left:310.198335px;}
.x17_c00395{left:319.677585px;}
.x4c_c00395{left:321.464535px;}
.x18_c00395{left:328.236135px;}
.x63_c00395{left:330.329985px;}
.x19_c00395{left:331.438785px;}
.x65_c00395{left:333.804885px;}
.x4d_c00395{left:336.433335px;}
.x53_c00395{left:341.799135px;}
.x27_c00395{left:342.927735px;}
.x5e_c00395{left:351.669435px;}
.x1a_c00395{left:353.179185px;}
.x66_c00395{left:354.292935px;}
.x45_c00395{left:362.797035px;}
.x1b_c00395{left:364.588935px;}
.x35_c00395{left:375.384885px;}
.x76_c00395{left:376.830285px;}
.xa_c00395{left:386.477835px;}
.xb_c00395{left:397.699485px;}
.x68_c00395{left:399.303285px;}
.x46_c00395{left:408.911235px;}
.x1c_c00395{left:419.573535px;}
.x7c_c00395{left:420.682335px;}
.x54_c00395{left:430.612035px;}
.x6c_c00395{left:431.710935px;}
.x60_c00395{left:432.869235px;}
.x4e_c00395{left:440.804085px;}
.xc_c00395{left:442.353435px;}
.x1d_c00395{left:452.070285px;}
.x47_c00395{left:453.075135px;}
.x28_c00395{left:463.460235px;}
.x55_c00395{left:464.499735px;}
.xd_c00395{left:475.162035px;}
.x1e_c00395{left:485.557035px;}
.x29_c00395{left:496.001535px;}
.x3c_c00395{left:497.674635px;}
.x77_c00395{left:498.719085px;}
.x31_c00395{left:508.401285px;}
.x1f_c00395{left:518.078535px;}
.x3d_c00395{left:519.761535px;}
.x70_c00395{left:520.820835px;}
.x6d_c00395{left:529.409085px;}
.x20_c00395{left:530.478285px;}
.x64_c00395{left:531.864285px;}
.x36_c00395{left:541.190085px;}
.xe_c00395{left:552.080085px;}
.x61_c00395{left:553.307685px;}
.x6e_c00395{left:562.346385px;}
.x3e_c00395{left:563.643285px;}
.x2a_c00395{left:573.964035px;}
.x37_c00395{left:583.765035px;}
.x21_c00395{left:585.329235px;}
.x32_c00395{left:595.843035px;}
.x2b_c00395{left:606.733035px;}
.x5f_c00395{left:607.782435px;}
.x2c_c00395{left:617.588385px;}
.xf_c00395{left:619.122885px;}
.x3f_c00395{left:628.631835px;}
.x57_c00395{left:630.587085px;}
.x5c_c00395{left:631.839435px;}
.x40_c00395{left:639.007035px;}
.x69_c00395{left:641.274135px;}
.x38_c00395{left:650.377185px;}
.x10_c00395{left:651.971085px;}
.x75_c00395{left:661.460235px;}
.x2d_c00395{left:662.504685px;}
.x58_c00395{left:663.672885px;}
.x6f_c00395{left:672.508635px;}
.x22_c00395{left:673.894635px;}
.x4_c00395{left:684.730185px;}
.x39_c00395{left:694.249035px;}
.x59_c00395{left:695.476635px;}
.x5_c00395{left:696.847785px;}
.x4f_c00395{left:701.654235px;}
.x71_c00395{left:705.297435px;}
.x41_c00395{left:706.678485px;}
.x48_c00395{left:717.088335px;}
.x67_c00395{left:718.994085px;}
.x11_c00395{left:729.656385px;}
.x33_c00395{left:740.363235px;}
@media print{
.v1_c00395{vertical-align:-20.257600pt;}
.v0_c00395{vertical-align:0.000000pt;}
.ls6_c00395{letter-spacing:-2.679600pt;}
.lsa_c00395{letter-spacing:-2.365446pt;}
.lse_c00395{letter-spacing:-2.210003pt;}
.ls12_c00395{letter-spacing:-1.054313pt;}
.lsb_c00395{letter-spacing:-0.919145pt;}
.ls14_c00395{letter-spacing:-0.887040pt;}
.lsf_c00395{letter-spacing:-0.506881pt;}
.ls10_c00395{letter-spacing:-0.256820pt;}
.ls5_c00395{letter-spacing:0.000000pt;}
.ls2_c00395{letter-spacing:0.337921pt;}
.ls1_c00395{letter-spacing:0.759616pt;}
.ls15_c00395{letter-spacing:1.460800pt;}
.ls4_c00395{letter-spacing:2.000492pt;}
.ls0_c00395{letter-spacing:2.169452pt;}
.ls8_c00395{letter-spacing:2.226400pt;}
.ls17_c00395{letter-spacing:2.692800pt;}
.ls16_c00395{letter-spacing:2.833609pt;}
.ls13_c00395{letter-spacing:3.247209pt;}
.ls7_c00395{letter-spacing:3.379209pt;}
.ls3_c00395{letter-spacing:7.163845pt;}
.lsd_c00395{letter-spacing:44.352176pt;}
.ls9_c00395{letter-spacing:45.619376pt;}
.ls11_c00395{letter-spacing:48.153776pt;}
.lsc_c00395{letter-spacing:51.955376pt;}
.ws8_c00395{word-spacing:-18.896536pt;}
.ws3_c00395{word-spacing:-17.233965pt;}
.ws2_c00395{word-spacing:-16.896044pt;}
.ws1_c00395{word-spacing:-15.976899pt;}
.ws6_c00395{word-spacing:-15.841731pt;}
.ws4_c00395{word-spacing:-3.514480pt;}
.ws9_c00395{word-spacing:0.000000pt;}
.ws0_c00395{word-spacing:1.554339pt;}
.ws5_c00395{word-spacing:1.554505pt;}
.ws7_c00395{word-spacing:4.325459pt;}
._19_c00395{margin-left:-15.747199pt;}
._1a_c00395{margin-left:-9.747936pt;}
._a_c00395{margin-left:-1.554383pt;}
._2_c00395{width:2.974312pt;}
._c_c00395{width:4.325464pt;}
._9_c00395{width:5.644430pt;}
._3_c00395{width:6.758312pt;}
._10_c00395{width:8.042584pt;}
._5_c00395{width:9.597004pt;}
._15_c00395{width:11.860562pt;}
._12_c00395{width:12.873605pt;}
._11_c00395{width:17.977471pt;}
._7_c00395{width:19.126399pt;}
._e_c00395{width:20.343439pt;}
._6_c00395{width:21.627007pt;}
._1_c00395{width:22.910927pt;}
._4_c00395{width:26.593468pt;}
._d_c00395{width:27.641900pt;}
._0_c00395{width:28.594440pt;}
._8_c00395{width:29.939766pt;}
._18_c00395{width:31.088684pt;}
._f_c00395{width:32.305382pt;}
._14_c00395{width:34.197382pt;}
._13_c00395{width:36.968355pt;}
._16_c00395{width:38.064996pt;}
._b_c00395{width:39.333961pt;}
._17_c00395{width:49.950790pt;}
.fs2_c00395{font-size:19.712000pt;}
.fs1_c00395{font-size:20.064000pt;}
.fs0_c00395{font-size:24.640000pt;}
.fse_c00395{font-size:25.344000pt;}
.fsf_c00395{font-size:29.216000pt;}
.fs12_c00395{font-size:31.504000pt;}
.fs8_c00395{font-size:44.352176pt;}
.fs5_c00395{font-size:44.528000pt;}
.fs6_c00395{font-size:45.619376pt;}
.fs9_c00395{font-size:45.760000pt;}
.fsc_c00395{font-size:48.153776pt;}
.fs7_c00395{font-size:51.955376pt;}
.fs11_c00395{font-size:53.856000pt;}
.fs10_c00395{font-size:56.672176pt;}
.fsb_c00395{font-size:59.136000pt;}
.fsa_c00395{font-size:63.008000pt;}
.fsd_c00395{font-size:64.944176pt;}
.fs4_c00395{font-size:67.584176pt;}
.fs3_c00395{font-size:76.560000pt;}
.y0_c00395{bottom:0.000000pt;}
.y25_c00395{bottom:2.134920pt;}
.y1_c00395{bottom:68.000000pt;}
.y24_c00395{bottom:123.790520pt;}
.y23_c00395{bottom:138.358920pt;}
.y22_c00395{bottom:150.718520pt;}
.y21_c00395{bottom:150.722656pt;}
.y4_c00395{bottom:161.802120pt;}
.y20_c00395{bottom:183.348920pt;}
.y1e_c00395{bottom:212.177720pt;}
.y1f_c00395{bottom:217.558920pt;}
.y3_c00395{bottom:233.403320pt;}
.y1d_c00395{bottom:241.956920pt;}
.y1b_c00395{bottom:271.102520pt;}
.y1c_c00395{bottom:276.166920pt;}
.y1a_c00395{bottom:300.560520pt;}
.y19_c00395{bottom:330.027320pt;}
.y18_c00395{bottom:358.856120pt;}
.y17_c00395{bottom:388.001720pt;}
.y16_c00395{bottom:407.009720pt;}
.y15_c00395{bottom:417.776520pt;}
.y14_c00395{bottom:446.609720pt;}
.y12_c00395{bottom:503.633720pt;}
.y13_c00395{bottom:503.946120pt;}
.y11_c00395{bottom:532.145720pt;}
.y10_c00395{bottom:562.558520pt;}
.yf_c00395{bottom:574.596920pt;}
.ye_c00395{bottom:592.333320pt;}
.yd_c00395{bottom:621.800120pt;}
.yb_c00395{bottom:651.887760pt;}
.yc_c00395{bottom:651.891720pt;}
.ya_c00395{bottom:681.675320pt;}
.y9_c00395{bottom:738.694920pt;}
.y8_c00395{bottom:769.107720pt;}
.y7_c00395{bottom:797.624120pt;}
.y6_c00395{bottom:826.769720pt;}
.y2_c00395{bottom:956.019720pt;}
.y5_c00395{bottom:960.454920pt;}
.h4_c00395{height:20.559000pt;}
.h3_c00395{height:20.926125pt;}
.h2_c00395{height:25.698750pt;}
.h11_c00395{height:26.433000pt;}
.hb_c00395{height:29.538549pt;}
.h8_c00395{height:30.382504pt;}
.h12_c00395{height:30.471375pt;}
.he_c00395{height:32.070415pt;}
.h15_c00395{height:32.857688pt;}
.ha_c00395{height:34.602280pt;}
.hf_c00395{height:46.072573pt;}
.h7_c00395{height:46.441313pt;}
.h13_c00395{height:55.620641pt;}
.h14_c00395{height:56.170125pt;}
.hd_c00395{height:61.677000pt;}
.hc_c00395{height:61.838906pt;}
.h10_c00395{height:63.707446pt;}
.h6_c00395{height:66.330173pt;}
.h9_c00395{height:66.346013pt;}
.h5_c00395{height:75.139453pt;}
.h1_c00395{height:986.666667pt;}
.h0_c00395{height:1122.666667pt;}
.w1_c00395{width:689.333333pt;}
.w0_c00395{width:793.333333pt;}
.x0_c00395{left:0.000000pt;}
.x2_c00395{left:25.552253pt;}
.x3_c00395{left:48.335453pt;}
.x1_c00395{left:52.000000pt;}
.x12_c00395{left:87.068653pt;}
.x49_c00395{left:88.098253pt;}
.x6_c00395{left:89.066253pt;}
.x6a_c00395{left:97.430653pt;}
.x5a_c00395{left:99.300653pt;}
.x23_c00395{left:107.427453pt;}
.x72_c00395{left:108.404253pt;}
.x42_c00395{left:117.340653pt;}
.x73_c00395{left:118.260253pt;}
.x4a_c00395{left:125.722653pt;}
.x24_c00395{left:127.676253pt;}
.x7_c00395{left:137.272653pt;}
.x13_c00395{left:146.926253pt;}
.x78_c00395{left:149.161453pt;}
.x50_c00395{left:155.554653pt;}
.x25_c00395{left:156.874653pt;}
.x6b_c00395{left:157.957053pt;}
.x34_c00395{left:165.063053pt;}
.x51_c00395{left:166.717453pt;}
.x4b_c00395{left:175.200653pt;}
.x2e_c00395{left:177.497453pt;}
.x43_c00395{left:185.756253pt;}
.x5d_c00395{left:187.723053pt;}
.x74_c00395{left:188.911053pt;}
.x62_c00395{left:195.304253pt;}
.x56_c00395{left:196.210653pt;}
.x79_c00395{left:197.750653pt;}
.x14_c00395{left:206.185453pt;}
.x2f_c00395{left:214.774253pt;}
.x44_c00395{left:218.267853pt;}
.x26_c00395{left:225.686253pt;}
.x52_c00395{left:227.323053pt;}
.x8_c00395{left:235.080253pt;}
.x15_c00395{left:236.065853pt;}
.x30_c00395{left:245.508253pt;}
.x7a_c00395{left:250.458253pt;}
.x3a_c00395{left:253.159853pt;}
.x3b_c00395{left:254.809853pt;}
.x16_c00395{left:264.837453pt;}
.x5b_c00395{left:265.902253pt;}
.x9_c00395{left:274.684653pt;}
.x7b_c00395{left:275.731853pt;}
.x17_c00395{left:284.157853pt;}
.x4c_c00395{left:285.746253pt;}
.x18_c00395{left:291.765453pt;}
.x63_c00395{left:293.626653pt;}
.x19_c00395{left:294.612253pt;}
.x65_c00395{left:296.715453pt;}
.x4d_c00395{left:299.051853pt;}
.x53_c00395{left:303.821453pt;}
.x27_c00395{left:304.824653pt;}
.x5e_c00395{left:312.595053pt;}
.x1a_c00395{left:313.937053pt;}
.x66_c00395{left:314.927053pt;}
.x45_c00395{left:322.486253pt;}
.x1b_c00395{left:324.079053pt;}
.x35_c00395{left:333.675453pt;}
.x76_c00395{left:334.960253pt;}
.xa_c00395{left:343.535853pt;}
.xb_c00395{left:353.510653pt;}
.x68_c00395{left:354.936253pt;}
.x46_c00395{left:363.476653pt;}
.x1c_c00395{left:372.954253pt;}
.x7c_c00395{left:373.939853pt;}
.x54_c00395{left:382.766253pt;}
.x6c_c00395{left:383.743053pt;}
.x60_c00395{left:384.772653pt;}
.x4e_c00395{left:391.825853pt;}
.xc_c00395{left:393.203053pt;}
.x1d_c00395{left:401.840253pt;}
.x47_c00395{left:402.733453pt;}
.x28_c00395{left:411.964653pt;}
.x55_c00395{left:412.888653pt;}
.xd_c00395{left:422.366253pt;}
.x1e_c00395{left:431.606253pt;}
.x29_c00395{left:440.890253pt;}
.x3c_c00395{left:442.377453pt;}
.x77_c00395{left:443.305853pt;}
.x31_c00395{left:451.912253pt;}
.x1f_c00395{left:460.514253pt;}
.x3d_c00395{left:462.010253pt;}
.x70_c00395{left:462.951853pt;}
.x6d_c00395{left:470.585853pt;}
.x20_c00395{left:471.536253pt;}
.x64_c00395{left:472.768253pt;}
.x36_c00395{left:481.057853pt;}
.xe_c00395{left:490.737853pt;}
.x61_c00395{left:491.829053pt;}
.x6e_c00395{left:499.863453pt;}
.x3e_c00395{left:501.016253pt;}
.x2a_c00395{left:510.190253pt;}
.x37_c00395{left:518.902253pt;}
.x21_c00395{left:520.292653pt;}
.x32_c00395{left:529.638253pt;}
.x2b_c00395{left:539.318253pt;}
.x5f_c00395{left:540.251053pt;}
.x2c_c00395{left:548.967453pt;}
.xf_c00395{left:550.331453pt;}
.x3f_c00395{left:558.783853pt;}
.x57_c00395{left:560.521853pt;}
.x5c_c00395{left:561.635053pt;}
.x40_c00395{left:568.006253pt;}
.x69_c00395{left:570.021453pt;}
.x38_c00395{left:578.113053pt;}
.x10_c00395{left:579.529853pt;}
.x75_c00395{left:587.964653pt;}
.x2d_c00395{left:588.893053pt;}
.x58_c00395{left:589.931453pt;}
.x6f_c00395{left:597.785453pt;}
.x22_c00395{left:599.017453pt;}
.x4_c00395{left:608.649053pt;}
.x39_c00395{left:617.110253pt;}
.x59_c00395{left:618.201453pt;}
.x5_c00395{left:619.420253pt;}
.x4f_c00395{left:623.692653pt;}
.x71_c00395{left:626.931053pt;}
.x41_c00395{left:628.158653pt;}
.x48_c00395{left:637.411853pt;}
.x67_c00395{left:639.105853pt;}
.x11_c00395{left:648.583453pt;}
.x33_c00395{left:658.100653pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b19474b39b48f38812f3f98b.woff2')format("woff");}.ff1_c00396{font-family:ff1_c00396;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00396;src:url('chunks/assets/font_8b61db2433c16d0d9ded95cc.woff2')format("woff");}.ff2_c00396{font-family:ff2_c00396;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00396;src:url('chunks/assets/font_fa2e73d22132817a79c39893.woff2')format("woff");}.ff3_c00396{font-family:ff3_c00396;line-height:0.666000;font-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_c00396{transform:matrix(0.025464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.025464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.025464,0.000000,0.000000,0.250000,0,0);}
.m5d_c00396{transform:matrix(0.070123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070123,0.000000,0.000000,0.250000,0,0);}
.m13_c00396{transform:matrix(0.078089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078089,0.000000,0.000000,0.250000,0,0);}
.m80_c00396{transform:matrix(0.080883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080883,0.000000,0.000000,0.250000,0,0);}
.m96_c00396{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);}
.m7a_c00396{transform:matrix(0.101978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101978,0.000000,0.000000,0.250000,0,0);}
.m5c_c00396{transform:matrix(0.118903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118903,0.000000,0.000000,0.250000,0,0);}
.mcf_c00396{transform:matrix(0.119012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119012,0.000000,0.000000,0.250000,0,0);}
.m5e_c00396{transform:matrix(0.126525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126525,0.000000,0.000000,0.250000,0,0);}
.m12_c00396{transform:matrix(0.127747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127747,0.000000,0.000000,0.250000,0,0);}
.mcb_c00396{transform:matrix(0.152569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152569,0.000000,0.000000,0.250000,0,0);}
.md0_c00396{transform:matrix(0.153957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153957,0.000000,0.000000,0.250000,0,0);}
.m7e_c00396{transform:matrix(0.161764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161764,0.000000,0.000000,0.250000,0,0);}
.m98_c00396{transform:matrix(0.164352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164352,0.000000,0.000000,0.250000,0,0);}
.m5f_c00396{transform:matrix(0.167683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167683,0.000000,0.000000,0.250000,0,0);}
.mcd_c00396{transform:matrix(0.182769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182769,0.000000,0.000000,0.250000,0,0);}
.m99_c00396{transform:matrix(0.199074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199074,0.000000,0.000000,0.250000,0,0);}
.m7f_c00396{transform:matrix(0.209559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209559,0.000000,0.000000,0.250000,0,0);}
.m3d_c00396{transform:matrix(0.212494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212494,0.000000,0.000000,0.250000,0,0);}
.m95_c00396{transform:matrix(0.220838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220838,0.000000,0.000000,0.250000,0,0);}
.m7d_c00396{transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);}
.m27_c00396{transform:matrix(0.227095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227095,0.000000,0.000000,0.250000,0,0);}
.maf_c00396{transform:matrix(0.229665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229665,0.000000,0.000000,0.250000,0,0);}
.m32_c00396{transform:matrix(0.234581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234581,0.000000,0.000000,0.250000,0,0);}
.md9_c00396{transform:matrix(0.237611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237611,0.000000,0.000000,0.250000,0,0);}
.mbc_c00396{transform:matrix(0.240895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240895,0.000000,0.000000,0.250000,0,0);}
.m0_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);}
.m3a_c00396{transform:matrix(0.251228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251228,0.000000,0.000000,0.250000,0,0);}
.m60_c00396{transform:matrix(0.251745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251745,0.000000,0.000000,0.250000,0,0);}
.m6e_c00396{transform:matrix(0.251839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251839,0.000000,0.000000,0.250000,0,0);}
.m89_c00396{transform:matrix(0.252101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252101,0.000000,0.000000,0.250000,0,0);}
.m5b_c00396{transform:matrix(0.253212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253212,0.000000,0.000000,0.250000,0,0);}
.m33_c00396{transform:matrix(0.256603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256603,0.000000,0.000000,0.250000,0,0);}
.m90_c00396{transform:matrix(0.256683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256683,0.000000,0.000000,0.250000,0,0);}
.m64_c00396{transform:matrix(0.256946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256946,0.000000,0.000000,0.250000,0,0);}
.m70_c00396{transform:matrix(0.258357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258357,0.000000,0.000000,0.250000,0,0);}
.m22_c00396{transform:matrix(0.261804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261804,0.000000,0.000000,0.250000,0,0);}
.m4f_c00396{transform:matrix(0.262535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262535,0.000000,0.000000,0.250000,0,0);}
.m85_c00396{transform:matrix(0.262837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262837,0.000000,0.000000,0.250000,0,0);}
.m1_c00396{transform:matrix(0.263376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263376,0.000000,0.000000,0.250000,0,0);}
.m25_c00396{transform:matrix(0.263927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263927,0.000000,0.000000,0.250000,0,0);}
.m43_c00396{transform:matrix(0.264169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264169,0.000000,0.000000,0.250000,0,0);}
.mc4_c00396{transform:matrix(0.265131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265131,0.000000,0.000000,0.250000,0,0);}
.m3c_c00396{transform:matrix(0.266641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266641,0.000000,0.000000,0.250000,0,0);}
.ma1_c00396{transform:matrix(0.267241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267241,0.000000,0.000000,0.250000,0,0);}
.m17_c00396{transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);}
.m3e_c00396{transform:matrix(0.268726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268726,0.000000,0.000000,0.250000,0,0);}
.md_c00396{transform:matrix(0.268901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268901,0.000000,0.000000,0.250000,0,0);}
.m7c_c00396{transform:matrix(0.269241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269241,0.000000,0.000000,0.250000,0,0);}
.m72_c00396{transform:matrix(0.270017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270017,0.000000,0.000000,0.250000,0,0);}
.m19_c00396{transform:matrix(0.270312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270312,0.000000,0.000000,0.250000,0,0);}
.md2_c00396{transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);}
.m44_c00396{transform:matrix(0.272336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272336,0.000000,0.000000,0.250000,0,0);}
.m91_c00396{transform:matrix(0.272372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272372,0.000000,0.000000,0.250000,0,0);}
.mb_c00396{transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);}
.mb8_c00396{transform:matrix(0.273385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273385,0.000000,0.000000,0.250000,0,0);}
.mc7_c00396{transform:matrix(0.274594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274594,0.000000,0.000000,0.250000,0,0);}
.m6c_c00396{transform:matrix(0.274793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274793,0.000000,0.000000,0.250000,0,0);}
.m9d_c00396{transform:matrix(0.275368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275368,0.000000,0.000000,0.250000,0,0);}
.md6_c00396{transform:matrix(0.275719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275719,0.000000,0.000000,0.250000,0,0);}
.m92_c00396{transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);}
.mc0_c00396{transform:matrix(0.276376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276376,0.000000,0.000000,0.250000,0,0);}
.mb1_c00396{transform:matrix(0.276487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276487,0.000000,0.000000,0.250000,0,0);}
.m8d_c00396{transform:matrix(0.276672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276672,0.000000,0.000000,0.250000,0,0);}
.ma_c00396{transform:matrix(0.276842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276842,0.000000,0.000000,0.250000,0,0);}
.md1_c00396{transform:matrix(0.276997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276997,0.000000,0.000000,0.250000,0,0);}
.m2_c00396{transform:matrix(0.277206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277206,0.000000,0.000000,0.250000,0,0);}
.m56_c00396{transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);}
.m1a_c00396{transform:matrix(0.277743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277743,0.000000,0.000000,0.250000,0,0);}
.m3_c00396{transform:matrix(0.278463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278463,0.000000,0.000000,0.250000,0,0);}
.m51_c00396{transform:matrix(0.278468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278468,0.000000,0.000000,0.250000,0,0);}
.m8f_c00396{transform:matrix(0.278706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278706,0.000000,0.000000,0.250000,0,0);}
.m11_c00396{transform:matrix(0.279419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279419,0.000000,0.000000,0.250000,0,0);}
.m86_c00396{transform:matrix(0.279760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279760,0.000000,0.000000,0.250000,0,0);}
.m34_c00396{transform:matrix(0.280067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280067,0.000000,0.000000,0.250000,0,0);}
.mbd_c00396{transform:matrix(0.280175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280175,0.000000,0.000000,0.250000,0,0);}
.mab_c00396{transform:matrix(0.281333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281333,0.000000,0.000000,0.250000,0,0);}
.mc2_c00396{transform:matrix(0.281415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281415,0.000000,0.000000,0.250000,0,0);}
.md8_c00396{transform:matrix(0.282532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282532,0.000000,0.000000,0.250000,0,0);}
.m47_c00396{transform:matrix(0.282883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282883,0.000000,0.000000,0.250000,0,0);}
.m49_c00396{transform:matrix(0.282945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282945,0.000000,0.000000,0.250000,0,0);}
.m8_c00396{transform:matrix(0.283399,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283399,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283399,0.000000,0.000000,0.250000,0,0);}
.mdb_c00396{transform:matrix(0.283625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283625,0.000000,0.000000,0.250000,0,0);}
.m78_c00396{transform:matrix(0.284075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284075,0.000000,0.000000,0.250000,0,0);}
.m1e_c00396{transform:matrix(0.284116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284116,0.000000,0.000000,0.250000,0,0);}
.m41_c00396{transform:matrix(0.284171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284171,0.000000,0.000000,0.250000,0,0);}
.m2c_c00396{transform:matrix(0.284178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284178,0.000000,0.000000,0.250000,0,0);}
.m67_c00396{transform:matrix(0.284657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284657,0.000000,0.000000,0.250000,0,0);}
.m62_c00396{transform:matrix(0.284887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284887,0.000000,0.000000,0.250000,0,0);}
.m71_c00396{transform:matrix(0.285213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285213,0.000000,0.000000,0.250000,0,0);}
.m15_c00396{transform:matrix(0.286137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286137,0.000000,0.000000,0.250000,0,0);}
.m5a_c00396{transform:matrix(0.286839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286839,0.000000,0.000000,0.250000,0,0);}
.ma4_c00396{transform:matrix(0.287319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287319,0.000000,0.000000,0.250000,0,0);}
.m39_c00396{transform:matrix(0.287374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287374,0.000000,0.000000,0.250000,0,0);}
.m40_c00396{transform:matrix(0.287718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287718,0.000000,0.000000,0.250000,0,0);}
.ma2_c00396{transform:matrix(0.287885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287885,0.000000,0.000000,0.250000,0,0);}
.m31_c00396{transform:matrix(0.288048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288048,0.000000,0.000000,0.250000,0,0);}
.md3_c00396{transform:matrix(0.288781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288781,0.000000,0.000000,0.250000,0,0);}
.m6b_c00396{transform:matrix(0.289636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289636,0.000000,0.000000,0.250000,0,0);}
.m10_c00396{transform:matrix(0.290120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290120,0.000000,0.000000,0.250000,0,0);}
.m82_c00396{transform:matrix(0.290225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290225,0.000000,0.000000,0.250000,0,0);}
.m28_c00396{transform:matrix(0.291486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291486,0.000000,0.000000,0.250000,0,0);}
.m1d_c00396{transform:matrix(0.291495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291495,0.000000,0.000000,0.250000,0,0);}
.m2d_c00396{transform:matrix(0.293184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293184,0.000000,0.000000,0.250000,0,0);}
.m81_c00396{transform:matrix(0.293234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293234,0.000000,0.000000,0.250000,0,0);}
.m4b_c00396{transform:matrix(0.293897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293897,0.000000,0.000000,0.250000,0,0);}
.mae_c00396{transform:matrix(0.293938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293938,0.000000,0.000000,0.250000,0,0);}
.mda_c00396{transform:matrix(0.294503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294503,0.000000,0.000000,0.250000,0,0);}
.m9c_c00396{transform:matrix(0.295366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295366,0.000000,0.000000,0.250000,0,0);}
.mc1_c00396{transform:matrix(0.297067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297067,0.000000,0.000000,0.250000,0,0);}
.ma5_c00396{transform:matrix(0.297422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297422,0.000000,0.000000,0.250000,0,0);}
.m23_c00396{transform:matrix(0.297564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297564,0.000000,0.000000,0.250000,0,0);}
.mca_c00396{transform:matrix(0.297731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297731,0.000000,0.000000,0.250000,0,0);}
.mce_c00396{transform:matrix(0.297811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297811,0.000000,0.000000,0.250000,0,0);}
.ma7_c00396{transform:matrix(0.297900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297900,0.000000,0.000000,0.250000,0,0);}
.m59_c00396{transform:matrix(0.298376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298376,0.000000,0.000000,0.250000,0,0);}
.m50_c00396{transform:matrix(0.298425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298425,0.000000,0.000000,0.250000,0,0);}
.ma3_c00396{transform:matrix(0.298518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298518,0.000000,0.000000,0.250000,0,0);}
.mdc_c00396{transform:matrix(0.299361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299361,0.000000,0.000000,0.250000,0,0);}
.mbe_c00396{transform:matrix(0.299879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299879,0.000000,0.000000,0.250000,0,0);}
.m2e_c00396{transform:matrix(0.299927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299927,0.000000,0.000000,0.250000,0,0);}
.m6f_c00396{transform:matrix(0.300652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300652,0.000000,0.000000,0.250000,0,0);}
.mc3_c00396{transform:matrix(0.301213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301213,0.000000,0.000000,0.250000,0,0);}
.m1f_c00396{transform:matrix(0.301482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301482,0.000000,0.000000,0.250000,0,0);}
.ma6_c00396{transform:matrix(0.302184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302184,0.000000,0.000000,0.250000,0,0);}
.m8e_c00396{transform:matrix(0.302495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302495,0.000000,0.000000,0.250000,0,0);}
.m75_c00396{transform:matrix(0.302988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302988,0.000000,0.000000,0.250000,0,0);}
.m88_c00396{transform:matrix(0.303450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303450,0.000000,0.000000,0.250000,0,0);}
.m57_c00396{transform:matrix(0.304175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304175,0.000000,0.000000,0.250000,0,0);}
.m26_c00396{transform:matrix(0.305474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305474,0.000000,0.000000,0.250000,0,0);}
.m54_c00396{transform:matrix(0.306033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306033,0.000000,0.000000,0.250000,0,0);}
.ma8_c00396{transform:matrix(0.306838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306838,0.000000,0.000000,0.250000,0,0);}
.mc8_c00396{transform:matrix(0.307051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307051,0.000000,0.000000,0.250000,0,0);}
.m5_c00396{transform:matrix(0.307527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307527,0.000000,0.000000,0.250000,0,0);}
.m38_c00396{transform:matrix(0.307739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307739,0.000000,0.000000,0.250000,0,0);}
.m45_c00396{transform:matrix(0.307994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307994,0.000000,0.000000,0.250000,0,0);}
.m4a_c00396{transform:matrix(0.308108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308108,0.000000,0.000000,0.250000,0,0);}
.m18_c00396{transform:matrix(0.308110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308110,0.000000,0.000000,0.250000,0,0);}
.m2a_c00396{transform:matrix(0.308911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308911,0.000000,0.000000,0.250000,0,0);}
.m9e_c00396{transform:matrix(0.309442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309442,0.000000,0.000000,0.250000,0,0);}
.mad_c00396{transform:matrix(0.309486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309486,0.000000,0.000000,0.250000,0,0);}
.mac_c00396{transform:matrix(0.311009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311009,0.000000,0.000000,0.250000,0,0);}
.m14_c00396{transform:matrix(0.311367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311367,0.000000,0.000000,0.250000,0,0);}
.m55_c00396{transform:matrix(0.312314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312314,0.000000,0.000000,0.250000,0,0);}
.m66_c00396{transform:matrix(0.312459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312459,0.000000,0.000000,0.250000,0,0);}
.mba_c00396{transform:matrix(0.313375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313375,0.000000,0.000000,0.250000,0,0);}
.md7_c00396{transform:matrix(0.313458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313458,0.000000,0.000000,0.250000,0,0);}
.m4e_c00396{transform:matrix(0.314268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314268,0.000000,0.000000,0.250000,0,0);}
.m9f_c00396{transform:matrix(0.314446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314446,0.000000,0.000000,0.250000,0,0);}
.mb4_c00396{transform:matrix(0.315093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315093,0.000000,0.000000,0.250000,0,0);}
.mb5_c00396{transform:matrix(0.315830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315830,0.000000,0.000000,0.250000,0,0);}
.m61_c00396{transform:matrix(0.316071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316071,0.000000,0.000000,0.250000,0,0);}
.m42_c00396{transform:matrix(0.316314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316314,0.000000,0.000000,0.250000,0,0);}
.m48_c00396{transform:matrix(0.317124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317124,0.000000,0.000000,0.250000,0,0);}
.mc6_c00396{transform:matrix(0.318001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318001,0.000000,0.000000,0.250000,0,0);}
.m58_c00396{transform:matrix(0.318084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318084,0.000000,0.000000,0.250000,0,0);}
.me_c00396{transform:matrix(0.318606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318606,0.000000,0.000000,0.250000,0,0);}
.m76_c00396{transform:matrix(0.319084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319084,0.000000,0.000000,0.250000,0,0);}
.m93_c00396{transform:matrix(0.319262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319262,0.000000,0.000000,0.250000,0,0);}
.m4_c00396{transform:matrix(0.320105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320105,0.000000,0.000000,0.250000,0,0);}
.m21_c00396{transform:matrix(0.320226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320226,0.000000,0.000000,0.250000,0,0);}
.m65_c00396{transform:matrix(0.320844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320844,0.000000,0.000000,0.250000,0,0);}
.mb9_c00396{transform:matrix(0.322080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322080,0.000000,0.000000,0.250000,0,0);}
.m84_c00396{transform:matrix(0.323402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323402,0.000000,0.000000,0.250000,0,0);}
.m9_c00396{transform:matrix(0.323481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323481,0.000000,0.000000,0.250000,0,0);}
.m37_c00396{transform:matrix(0.323836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323836,0.000000,0.000000,0.250000,0,0);}
.mb3_c00396{transform:matrix(0.324230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324230,0.000000,0.000000,0.250000,0,0);}
.m3f_c00396{transform:matrix(0.324241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324241,0.000000,0.000000,0.250000,0,0);}
.m30_c00396{transform:matrix(0.324579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324579,0.000000,0.000000,0.250000,0,0);}
.m8b_c00396{transform:matrix(0.325284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325284,0.000000,0.000000,0.250000,0,0);}
.m20_c00396{transform:matrix(0.325659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325659,0.000000,0.000000,0.250000,0,0);}
.m24_c00396{transform:matrix(0.326000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326000,0.000000,0.000000,0.250000,0,0);}
.m83_c00396{transform:matrix(0.327870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327870,0.000000,0.000000,0.250000,0,0);}
.m52_c00396{transform:matrix(0.329099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329099,0.000000,0.000000,0.250000,0,0);}
.m68_c00396{transform:matrix(0.330646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330646,0.000000,0.000000,0.250000,0,0);}
.m9a_c00396{transform:matrix(0.331383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331383,0.000000,0.000000,0.250000,0,0);}
.m74_c00396{transform:matrix(0.331532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331532,0.000000,0.000000,0.250000,0,0);}
.m9b_c00396{transform:matrix(0.332817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332817,0.000000,0.000000,0.250000,0,0);}
.maa_c00396{transform:matrix(0.332850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332850,0.000000,0.000000,0.250000,0,0);}
.m7b_c00396{transform:matrix(0.334775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334775,0.000000,0.000000,0.250000,0,0);}
.m8a_c00396{transform:matrix(0.334871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334871,0.000000,0.000000,0.250000,0,0);}
.m29_c00396{transform:matrix(0.335149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335149,0.000000,0.000000,0.250000,0,0);}
.mc5_c00396{transform:matrix(0.335358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335358,0.000000,0.000000,0.250000,0,0);}
.m1b_c00396{transform:matrix(0.335834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335834,0.000000,0.000000,0.250000,0,0);}
.mb2_c00396{transform:matrix(0.336787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336787,0.000000,0.000000,0.250000,0,0);}
.md4_c00396{transform:matrix(0.338419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338419,0.000000,0.000000,0.250000,0,0);}
.m73_c00396{transform:matrix(0.339291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339291,0.000000,0.000000,0.250000,0,0);}
.m8c_c00396{transform:matrix(0.341476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341476,0.000000,0.000000,0.250000,0,0);}
.ma9_c00396{transform:matrix(0.341976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341976,0.000000,0.000000,0.250000,0,0);}
.m63_c00396{transform:matrix(0.343373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343373,0.000000,0.000000,0.250000,0,0);}
.m1c_c00396{transform:matrix(0.344654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344654,0.000000,0.000000,0.250000,0,0);}
.mb6_c00396{transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);}
.m4c_c00396{transform:matrix(0.346312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346312,0.000000,0.000000,0.250000,0,0);}
.mb7_c00396{transform:matrix(0.348650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348650,0.000000,0.000000,0.250000,0,0);}
.mbb_c00396{transform:matrix(0.349538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349538,0.000000,0.000000,0.250000,0,0);}
.m3b_c00396{transform:matrix(0.349617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349617,0.000000,0.000000,0.250000,0,0);}
.m35_c00396{transform:matrix(0.350056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350056,0.000000,0.000000,0.250000,0,0);}
.m16_c00396{transform:matrix(0.351163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351163,0.000000,0.000000,0.250000,0,0);}
.m4d_c00396{transform:matrix(0.351829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351829,0.000000,0.000000,0.250000,0,0);}
.m79_c00396{transform:matrix(0.353525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353525,0.000000,0.000000,0.250000,0,0);}
.m77_c00396{transform:matrix(0.355223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355223,0.000000,0.000000,0.250000,0,0);}
.m6_c00396{transform:matrix(0.355860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355860,0.000000,0.000000,0.250000,0,0);}
.m69_c00396{transform:matrix(0.356018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356018,0.000000,0.000000,0.250000,0,0);}
.mc_c00396{transform:matrix(0.356186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356186,0.000000,0.000000,0.250000,0,0);}
.m7_c00396{transform:matrix(0.357186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357186,0.000000,0.000000,0.250000,0,0);}
.mc9_c00396{transform:matrix(0.359996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359996,0.000000,0.000000,0.250000,0,0);}
.m6a_c00396{transform:matrix(0.362157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362157,0.000000,0.000000,0.250000,0,0);}
.m46_c00396{transform:matrix(0.363448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363448,0.000000,0.000000,0.250000,0,0);}
.md5_c00396{transform:matrix(0.368367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368367,0.000000,0.000000,0.250000,0,0);}
.m94_c00396{transform:matrix(0.373141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373141,0.000000,0.000000,0.250000,0,0);}
.m36_c00396{transform:matrix(0.374433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374433,0.000000,0.000000,0.250000,0,0);}
.mf_c00396{transform:matrix(0.377337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377337,0.000000,0.000000,0.250000,0,0);}
.m2b_c00396{transform:matrix(0.378966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378966,0.000000,0.000000,0.250000,0,0);}
.mb0_c00396{transform:matrix(0.383937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383937,0.000000,0.000000,0.250000,0,0);}
.m2f_c00396{transform:matrix(0.386008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386008,0.000000,0.000000,0.250000,0,0);}
.mcc_c00396{transform:matrix(0.388446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388446,0.000000,0.000000,0.250000,0,0);}
.m6d_c00396{transform:matrix(0.406717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406717,0.000000,0.000000,0.250000,0,0);}
.m53_c00396{transform:matrix(0.411017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411017,0.000000,0.000000,0.250000,0,0);}
.ma0_c00396{transform:matrix(0.424181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424181,0.000000,0.000000,0.250000,0,0);}
.m87_c00396{transform:matrix(0.432047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432047,0.000000,0.000000,0.250000,0,0);}
.mbf_c00396{transform:matrix(0.448192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448192,0.000000,0.000000,0.250000,0,0);}
.v1_c00396{vertical-align:-12.830400px;}
.v0_c00396{vertical-align:0.000000px;}
.ls5_c00396{letter-spacing:-2.647267px;}
.ls4_c00396{letter-spacing:-2.276650px;}
.ls11_c00396{letter-spacing:-2.057305px;}
.ls13_c00396{letter-spacing:-1.323633px;}
.lsb_c00396{letter-spacing:-0.968143px;}
.ls16_c00396{letter-spacing:-0.340363px;}
.ls2_c00396{letter-spacing:-0.117533px;}
.ls10_c00396{letter-spacing:-0.015127px;}
.ls1_c00396{letter-spacing:0.000000px;}
.ls12_c00396{letter-spacing:1.134543px;}
.ls18_c00396{letter-spacing:1.300943px;}
.ls17_c00396{letter-spacing:1.936287px;}
.lse_c00396{letter-spacing:2.042177px;}
.ls15_c00396{letter-spacing:2.397667px;}
.ls9_c00396{letter-spacing:2.415600px;}
.lsd_c00396{letter-spacing:2.503558px;}
.ls6_c00396{letter-spacing:2.836357px;}
.ls14_c00396{letter-spacing:2.851485px;}
.ls7_c00396{letter-spacing:2.889303px;}
.ls3_c00396{letter-spacing:3.781810px;}
.ls8_c00396{letter-spacing:3.880810px;}
.ls0_c00396{letter-spacing:21.912198px;}
.lsc_c00396{letter-spacing:48.470598px;}
.lsf_c00396{letter-spacing:51.321798px;}
.lsa_c00396{letter-spacing:58.449798px;}
.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;}
}
.ws1_c00396{word-spacing:-18.909050px;}
.ws0_c00396{word-spacing:-16.632400px;}
.ws4_c00396{word-spacing:0.000000px;}
.ws2_c00396{word-spacing:1.588439px;}
.ws3_c00396{word-spacing:1.966629px;}
._16_c00396{margin-left:-18.757827px;}
._7_c00396{margin-left:-14.522211px;}
._0_c00396{width:1.459848px;}
._10_c00396{width:2.723006px;}
._8_c00396{width:4.160090px;}
._b_c00396{width:5.596976px;}
._5_c00396{width:7.109883px;}
._c_c00396{width:8.546967px;}
._1_c00396{width:9.832988px;}
._9_c00396{width:12.026025px;}
._19_c00396{width:14.597660px;}
._11_c00396{width:21.101993px;}
._6_c00396{width:22.473132px;}
._d_c00396{width:24.429977px;}
._3_c00396{width:25.867457px;}
._18_c00396{width:27.304739px;}
._a_c00396{width:29.423059px;}
._4_c00396{width:30.898159px;}
._e_c00396{width:33.053019px;}
._14_c00396{width:34.871585px;}
._2_c00396{width:35.927161px;}
._17_c00396{width:39.033197px;}
._f_c00396{width:41.902602px;}
._13_c00396{width:50.874819px;}
._15_c00396{width:53.661960px;}
._12_c00396{width:204.078501px;}
.fc0_c00396{color:transparent;}
.fsa_c00396{font-size:17.028000px;}
.fs0_c00396{font-size:27.720000px;}
.fsc_c00396{font-size:39.006198px;}
.fs8_c00396{font-size:39.204000px;}
.fsb_c00396{font-size:43.560000px;}
.fs5_c00396{font-size:48.312000px;}
.fs7_c00396{font-size:48.470598px;}
.fs9_c00396{font-size:51.321798px;}
.fs6_c00396{font-size:58.449798px;}
.fs3_c00396{font-size:72.864000px;}
.fs2_c00396{font-size:75.636198px;}
.fs4_c00396{font-size:77.616198px;}
.fs1_c00396{font-size:83.952198px;}
.y0_c00396{bottom:0.000000px;}
.y1d_c00396{bottom:21.652335px;}
.y1_c00396{bottom:76.500000px;}
.y1c_c00396{bottom:162.430335px;}
.y1b_c00396{bottom:194.506335px;}
.y19_c00396{bottom:228.359880px;}
.y1a_c00396{bottom:228.364335px;}
.y18_c00396{bottom:261.148185px;}
.y17_c00396{bottom:277.542585px;}
.y16_c00396{bottom:293.224185px;}
.y15_c00396{bottom:325.656585px;}
.y14_c00396{bottom:358.445385px;}
.y13_c00396{bottom:390.882735px;}
.y12_c00396{bottom:455.391135px;}
.y11_c00396{bottom:487.823535px;}
.y10_c00396{bottom:520.255935px;}
.yf_c00396{bottom:553.044735px;}
.ye_c00396{bottom:585.477135px;}
.yd_c00396{bottom:617.904585px;}
.yc_c00396{bottom:649.985535px;}
.yb_c00396{bottom:682.417935px;}
.ya_c00396{bottom:714.850335px;}
.y9_c00396{bottom:748.346985px;}
.y8_c00396{bottom:780.784335px;}
.y7_c00396{bottom:794.322585px;}
.y6_c00396{bottom:813.216735px;}
.y5_c00396{bottom:877.363785px;}
.y4_c00396{bottom:915.147135px;}
.y2_c00396{bottom:1033.466985px;}
.y3_c00396{bottom:1072.670985px;}
.ha_c00396{height:17.759672px;}
.h2_c00396{height:28.911094px;}
.h8_c00396{height:32.281418px;}
.h9_c00396{height:34.180317px;}
.hb_c00396{height:38.282450px;}
.h7_c00396{height:38.927565px;}
.h6_c00396{height:47.415586px;}
.h4_c00396{height:74.232792px;}
.h5_c00396{height:76.176054px;}
.h3_c00396{height:82.394491px;}
.h1_c00396{height:1110.000000px;}
.h0_c00396{height:1263.000000px;}
.w1_c00396{width:775.500000px;}
.w0_c00396{width:892.500000px;}
.x0_c00396{left:0.000000px;}
.x2_c00396{left:51.199485px;}
.x1_c00396{left:58.500000px;}
.x41_c00396{left:95.442585px;}
.x33_c00396{left:96.709785px;}
.x4_c00396{left:98.155185px;}
.x48_c00396{left:99.506535px;}
.x75_c00396{left:106.639485px;}
.x76_c00396{left:108.748185px;}
.x34_c00396{left:118.271985px;}
.x43_c00396{left:128.315535px;}
.x27_c00396{left:129.379785px;}
.x5_c00396{left:130.592535px;}
.x51_c00396{left:136.839435px;}
.x28_c00396{left:140.725185px;}
.x63_c00396{left:148.966935px;}
.x18_c00396{left:150.001485px;}
.x6b_c00396{left:151.590435px;}
.x64_c00396{left:153.595185px;}
.x65_c00396{left:157.520535px;}
.x49_c00396{left:160.708335px;}
.x11_c00396{left:161.945835px;}
.x6a_c00396{left:171.727035px;}
.x6_c00396{left:173.513985px;}
.x19_c00396{left:184.413885px;}
.x4a_c00396{left:188.774835px;}
.x12_c00396{left:194.160435px;}
.x6c_c00396{left:195.769185px;}
.x6e_c00396{left:204.515835px;}
.x57_c00396{left:205.872135px;}
.x4b_c00396{left:207.411585px;}
.x44_c00396{left:216.341385px;}
.x29_c00396{left:217.910535px;}
.x4c_c00396{left:222.741735px;}
.x2a_c00396{left:227.365035px;}
.x35_c00396{left:228.597585px;}
.x4d_c00396{left:229.869735px;}
.x1a_c00396{left:238.794585px;}
.x13_c00396{left:240.002385px;}
.x58_c00396{left:249.783585px;}
.x7_c00396{left:251.392335px;}
.x2b_c00396{left:256.287885px;}
.x1b_c00396{left:258.253035px;}
.x1c_c00396{left:262.267485px;}
.x66_c00396{left:270.811185px;}
.x77_c00396{left:271.895235px;}
.x1d_c00396{left:273.464385px;}
.x6f_c00396{left:283.473285px;}
.x52_c00396{left:286.586835px;}
.x78_c00396{left:290.408235px;}
.x3a_c00396{left:293.655435px;}
.x8_c00396{left:295.556235px;}
.x53_c00396{left:305.015685px;}
.x1e_c00396{left:306.451185px;}
.x2c_c00396{left:316.786785px;}
.x5b_c00396{left:326.800635px;}
.x36_c00396{left:328.745985px;}
.x14_c00396{left:340.180485px;}
.x42_c00396{left:349.253835px;}
.x45_c00396{left:351.303135px;}
.x9_c00396{left:361.757535px;}
.x7d_c00396{left:367.078785px;}
.x46_c00396{left:372.013935px;}
.x1f_c00396{left:373.295985px;}
.x3b_c00396{left:383.497935px;}
.x79_c00396{left:384.671085px;}
.x15_c00396{left:395.546235px;}
.x4e_c00396{left:405.728385px;}
.x2d_c00396{left:407.500485px;}
.x37_c00396{left:416.756985px;}
.x61_c00396{left:418.172685px;}
.x3c_c00396{left:426.592635px;}
.x20_c00396{left:428.211285px;}
.x7a_c00396{left:448.634985px;}
.x38_c00396{left:450.223935px;}
.x5c_c00396{left:452.669235px;}
.x21_c00396{left:460.094235px;}
.x3d_c00396{left:461.608935px;}
.x60_c00396{left:470.786235px;}
.x16_c00396{left:472.493985px;}
.xa_c00396{left:475.122435px;}
.x59_c00396{left:482.933535px;}
.xb_c00396{left:494.788785px;}
.x2e_c00396{left:506.213385px;}
.x72_c00396{left:508.465635px;}
.x5d_c00396{left:516.410385px;}
.x17_c00396{left:527.646885px;}
.xc_c00396{left:528.686385px;}
.xd_c00396{left:538.982385px;}
.x47_c00396{left:549.560535px;}
.x2f_c00396{left:560.747535px;}
.x4f_c00396{left:570.221835px;}
.xe_c00396{left:571.810785px;}
.x30_c00396{left:582.824535px;}
.x3e_c00396{left:589.640685px;}
.x67_c00396{left:593.061135px;}
.x62_c00396{left:595.486635px;}
.x5e_c00396{left:603.010635px;}
.xf_c00396{left:604.738185px;}
.x54_c00396{left:615.053985px;}
.x31_c00396{left:625.741035px;}
.x22_c00396{left:627.562635px;}
.x73_c00396{left:629.087235px;}
.x70_c00396{left:637.190385px;}
.x50_c00396{left:638.452635px;}
.x5f_c00396{left:647.862585px;}
.x23_c00396{left:649.015935px;}
.x39_c00396{left:660.212835px;}
.x7b_c00396{left:669.508935px;}
.x3f_c00396{left:670.627635px;}
.x24_c00396{left:672.246285px;}
.x55_c00396{left:681.324585px;}
.x3_c00396{left:682.953135px;}
.x68_c00396{left:684.329235px;}
.x71_c00396{left:689.615835px;}
.x7c_c00396{left:692.561085px;}
.x10_c00396{left:693.655035px;}
.x26_c00396{left:699.134685px;}
.x69_c00396{left:703.188735px;}
.x32_c00396{left:704.401485px;}
.x5a_c00396{left:715.048935px;}
.x25_c00396{left:716.152785px;}
.x56_c00396{left:726.275535px;}
.x40_c00396{left:727.517985px;}
.x6d_c00396{left:737.299185px;}
.x74_c00396{left:748.199085px;}
@media print{
.v1_c00396{vertical-align:-11.404800pt;}
.v0_c00396{vertical-align:0.000000pt;}
.ls5_c00396{letter-spacing:-2.353126pt;}
.ls4_c00396{letter-spacing:-2.023688pt;}
.ls11_c00396{letter-spacing:-1.828715pt;}
.ls13_c00396{letter-spacing:-1.176563pt;}
.lsb_c00396{letter-spacing:-0.860572pt;}
.ls16_c00396{letter-spacing:-0.302545pt;}
.ls2_c00396{letter-spacing:-0.104474pt;}
.ls10_c00396{letter-spacing:-0.013446pt;}
.ls1_c00396{letter-spacing:0.000000pt;}
.ls12_c00396{letter-spacing:1.008483pt;}
.ls18_c00396{letter-spacing:1.156393pt;}
.ls17_c00396{letter-spacing:1.721144pt;}
.lse_c00396{letter-spacing:1.815269pt;}
.ls15_c00396{letter-spacing:2.131260pt;}
.ls9_c00396{letter-spacing:2.147200pt;}
.lsd_c00396{letter-spacing:2.225385pt;}
.ls6_c00396{letter-spacing:2.521207pt;}
.ls14_c00396{letter-spacing:2.534653pt;}
.ls7_c00396{letter-spacing:2.568269pt;}
.ls3_c00396{letter-spacing:3.361609pt;}
.ls8_c00396{letter-spacing:3.449609pt;}
.ls0_c00396{letter-spacing:19.477509pt;}
.lsc_c00396{letter-spacing:43.084976pt;}
.lsf_c00396{letter-spacing:45.619376pt;}
.lsa_c00396{letter-spacing:51.955376pt;}
.ws1_c00396{word-spacing:-16.808044pt;}
.ws0_c00396{word-spacing:-14.784356pt;}
.ws4_c00396{word-spacing:0.000000pt;}
.ws2_c00396{word-spacing:1.411945pt;}
.ws3_c00396{word-spacing:1.748115pt;}
._16_c00396{margin-left:-16.673624pt;}
._7_c00396{margin-left:-12.908632pt;}
._0_c00396{width:1.297642pt;}
._10_c00396{width:2.420450pt;}
._8_c00396{width:3.697858pt;}
._b_c00396{width:4.975090pt;}
._5_c00396{width:6.319896pt;}
._c_c00396{width:7.597304pt;}
._1_c00396{width:8.740434pt;}
._9_c00396{width:10.689800pt;}
._19_c00396{width:12.975698pt;}
._11_c00396{width:18.757327pt;}
._6_c00396{width:19.976117pt;}
._d_c00396{width:21.715535pt;}
._3_c00396{width:22.993295pt;}
._18_c00396{width:24.270879pt;}
._a_c00396{width:26.153830pt;}
._4_c00396{width:27.465030pt;}
._e_c00396{width:29.380461pt;}
._14_c00396{width:30.996964pt;}
._2_c00396{width:31.935254pt;}
._17_c00396{width:34.696176pt;}
._f_c00396{width:37.246758pt;}
._13_c00396{width:45.222062pt;}
._15_c00396{width:47.699520pt;}
._12_c00396{width:181.403112pt;}
.fsa_c00396{font-size:15.136000pt;}
.fs0_c00396{font-size:24.640000pt;}
.fsc_c00396{font-size:34.672176pt;}
.fs8_c00396{font-size:34.848000pt;}
.fsb_c00396{font-size:38.720000pt;}
.fs5_c00396{font-size:42.944000pt;}
.fs7_c00396{font-size:43.084976pt;}
.fs9_c00396{font-size:45.619376pt;}
.fs6_c00396{font-size:51.955376pt;}
.fs3_c00396{font-size:64.768000pt;}
.fs2_c00396{font-size:67.232176pt;}
.fs4_c00396{font-size:68.992176pt;}
.fs1_c00396{font-size:74.624176pt;}
.y0_c00396{bottom:0.000000pt;}
.y1d_c00396{bottom:19.246520pt;}
.y1_c00396{bottom:68.000000pt;}
.y1c_c00396{bottom:144.382520pt;}
.y1b_c00396{bottom:172.894520pt;}
.y19_c00396{bottom:202.986560pt;}
.y1a_c00396{bottom:202.990520pt;}
.y18_c00396{bottom:232.131720pt;}
.y17_c00396{bottom:246.704520pt;}
.y16_c00396{bottom:260.643720pt;}
.y15_c00396{bottom:289.472520pt;}
.y14_c00396{bottom:318.618120pt;}
.y13_c00396{bottom:347.451320pt;}
.y12_c00396{bottom:404.792120pt;}
.y11_c00396{bottom:433.620920pt;}
.y10_c00396{bottom:462.449720pt;}
.yf_c00396{bottom:491.595320pt;}
.ye_c00396{bottom:520.424120pt;}
.yd_c00396{bottom:549.248520pt;}
.yc_c00396{bottom:577.764920pt;}
.yb_c00396{bottom:606.593720pt;}
.ya_c00396{bottom:635.422520pt;}
.y9_c00396{bottom:665.197320pt;}
.y8_c00396{bottom:694.030520pt;}
.y7_c00396{bottom:706.064520pt;}
.y6_c00396{bottom:722.859320pt;}
.y5_c00396{bottom:779.878920pt;}
.y4_c00396{bottom:813.464120pt;}
.y2_c00396{bottom:918.637320pt;}
.y3_c00396{bottom:953.485320pt;}
.ha_c00396{height:15.786375pt;}
.h2_c00396{height:25.698750pt;}
.h8_c00396{height:28.694594pt;}
.h9_c00396{height:30.382504pt;}
.hb_c00396{height:34.028845pt;}
.h7_c00396{height:34.602280pt;}
.h6_c00396{height:42.147188pt;}
.h4_c00396{height:65.984704pt;}
.h5_c00396{height:67.712048pt;}
.h3_c00396{height:73.239548pt;}
.h1_c00396{height:986.666667pt;}
.h0_c00396{height:1122.666667pt;}
.w1_c00396{width:689.333333pt;}
.w0_c00396{width:793.333333pt;}
.x0_c00396{left:0.000000pt;}
.x2_c00396{left:45.510653pt;}
.x1_c00396{left:52.000000pt;}
.x41_c00396{left:84.837853pt;}
.x33_c00396{left:85.964253pt;}
.x4_c00396{left:87.249053pt;}
.x48_c00396{left:88.450253pt;}
.x75_c00396{left:94.790653pt;}
.x76_c00396{left:96.665053pt;}
.x34_c00396{left:105.130653pt;}
.x43_c00396{left:114.058253pt;}
.x27_c00396{left:115.004253pt;}
.x5_c00396{left:116.082253pt;}
.x51_c00396{left:121.635053pt;}
.x28_c00396{left:125.089053pt;}
.x63_c00396{left:132.415053pt;}
.x18_c00396{left:133.334653pt;}
.x6b_c00396{left:134.747053pt;}
.x64_c00396{left:136.529053pt;}
.x65_c00396{left:140.018253pt;}
.x49_c00396{left:142.851853pt;}
.x11_c00396{left:143.951853pt;}
.x6a_c00396{left:152.646253pt;}
.x6_c00396{left:154.234653pt;}
.x19_c00396{left:163.923453pt;}
.x4a_c00396{left:167.799853pt;}
.x12_c00396{left:172.587053pt;}
.x6c_c00396{left:174.017053pt;}
.x6e_c00396{left:181.791853pt;}
.x57_c00396{left:182.997453pt;}
.x4b_c00396{left:184.365853pt;}
.x44_c00396{left:192.303453pt;}
.x29_c00396{left:193.698253pt;}
.x4c_c00396{left:197.992653pt;}
.x2a_c00396{left:202.102253pt;}
.x35_c00396{left:203.197853pt;}
.x4d_c00396{left:204.328653pt;}
.x1a_c00396{left:212.261853pt;}
.x13_c00396{left:213.335453pt;}
.x58_c00396{left:222.029853pt;}
.x7_c00396{left:223.459853pt;}
.x2b_c00396{left:227.811453pt;}
.x1b_c00396{left:229.558253pt;}
.x1c_c00396{left:233.126653pt;}
.x66_c00396{left:240.721053pt;}
.x77_c00396{left:241.684653pt;}
.x1d_c00396{left:243.079453pt;}
.x6f_c00396{left:251.976253pt;}
.x52_c00396{left:254.743853pt;}
.x78_c00396{left:258.140653pt;}
.x3a_c00396{left:261.027053pt;}
.x8_c00396{left:262.716653pt;}
.x53_c00396{left:271.125053pt;}
.x1e_c00396{left:272.401053pt;}
.x2c_c00396{left:281.588253pt;}
.x5b_c00396{left:290.489453pt;}
.x36_c00396{left:292.218653pt;}
.x14_c00396{left:302.382653pt;}
.x42_c00396{left:310.447853pt;}
.x45_c00396{left:312.269453pt;}
.x9_c00396{left:321.562253pt;}
.x7d_c00396{left:326.292253pt;}
.x46_c00396{left:330.679053pt;}
.x1f_c00396{left:331.818653pt;}
.x3b_c00396{left:340.887053pt;}
.x79_c00396{left:341.929853pt;}
.x15_c00396{left:351.596653pt;}
.x4e_c00396{left:360.647453pt;}
.x2d_c00396{left:362.222653pt;}
.x37_c00396{left:370.450653pt;}
.x61_c00396{left:371.709053pt;}
.x3c_c00396{left:379.193453pt;}
.x20_c00396{left:380.632253pt;}
.x7a_c00396{left:398.786653pt;}
.x38_c00396{left:400.199053pt;}
.x5c_c00396{left:402.372653pt;}
.x21_c00396{left:408.972653pt;}
.x3d_c00396{left:410.319053pt;}
.x60_c00396{left:418.476653pt;}
.x16_c00396{left:419.994653pt;}
.xa_c00396{left:422.331053pt;}
.x59_c00396{left:429.274253pt;}
.xb_c00396{left:439.812253pt;}
.x2e_c00396{left:449.967453pt;}
.x72_c00396{left:451.969453pt;}
.x5d_c00396{left:459.031453pt;}
.x17_c00396{left:469.019453pt;}
.xc_c00396{left:469.943453pt;}
.xd_c00396{left:479.095453pt;}
.x47_c00396{left:488.498253pt;}
.x2f_c00396{left:498.442253pt;}
.x4f_c00396{left:506.863853pt;}
.xe_c00396{left:508.276253pt;}
.x30_c00396{left:518.066253pt;}
.x3e_c00396{left:524.125053pt;}
.x67_c00396{left:527.165453pt;}
.x62_c00396{left:529.321453pt;}
.x5e_c00396{left:536.009453pt;}
.xf_c00396{left:537.545053pt;}
.x54_c00396{left:546.714653pt;}
.x31_c00396{left:556.214253pt;}
.x22_c00396{left:557.833453pt;}
.x73_c00396{left:559.188653pt;}
.x70_c00396{left:566.391453pt;}
.x50_c00396{left:567.513453pt;}
.x5f_c00396{left:575.877853pt;}
.x23_c00396{left:576.903053pt;}
.x39_c00396{left:586.855853pt;}
.x7b_c00396{left:595.119053pt;}
.x3f_c00396{left:596.113453pt;}
.x24_c00396{left:597.552253pt;}
.x55_c00396{left:605.621853pt;}
.x3_c00396{left:607.069453pt;}
.x68_c00396{left:608.292653pt;}
.x71_c00396{left:612.991853pt;}
.x7c_c00396{left:615.609853pt;}
.x10_c00396{left:616.582253pt;}
.x26_c00396{left:621.453053pt;}
.x69_c00396{left:625.056653pt;}
.x32_c00396{left:626.134653pt;}
.x5a_c00396{left:635.599053pt;}
.x25_c00396{left:636.580253pt;}
.x56_c00396{left:645.578253pt;}
.x40_c00396{left:646.682653pt;}
.x6d_c00396{left:655.377053pt;}
.x74_c00396{left:665.065853pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_33b9146cd0ca6ee25f83afa6.woff2')format("woff");}.ff1_c00397{font-family:ff1_c00397;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00397;src:url('chunks/assets/font_deddf598d15377e097b728be.woff2')format("woff");}.ff2_c00397{font-family:ff2_c00397;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00397;src:url('chunks/assets/font_553bb84b220947e8dacac180.woff2')format("woff");}.ff3_c00397{font-family:ff3_c00397;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00397;src:url('chunks/assets/font_135d6e2164dc68e5ef49e819.woff2')format("woff");}.ff4_c00397{font-family:ff4_c00397;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00397;src:url('chunks/assets/font_4662c08466a43d67eeb1aebc.woff2')format("woff");}.ff5_c00397{font-family:ff5_c00397;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00397;src:url('chunks/assets/font_c6e994f17a6987a0a0a5f36d.woff2')format("woff");}.ff6_c00397{font-family:ff6_c00397;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00397;src:url('chunks/assets/font_edbb304ccaa4f9a1d81c546d.woff2')format("woff");}.ff7_c00397{font-family:ff7_c00397;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m94_c00397{transform:matrix(0.053031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053031,0.000000,0.000000,0.250000,0,0);}
.mf1_c00397{transform:matrix(0.062501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062501,0.000000,0.000000,0.250000,0,0);}
.m6e_c00397{transform:matrix(0.066669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066669,0.000000,0.000000,0.250000,0,0);}
.mb8_c00397{transform:matrix(0.080883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080883,0.000000,0.000000,0.250000,0,0);}
.m78_c00397{transform:matrix(0.083336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083336,0.000000,0.000000,0.250000,0,0);}
.mb9_c00397{transform:matrix(0.088235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088235,0.000000,0.000000,0.250000,0,0);}
.m107_c00397{transform:matrix(0.106882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106882,0.000000,0.000000,0.250000,0,0);}
.m101_c00397{transform:matrix(0.109068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109068,0.000000,0.000000,0.250000,0,0);}
.mef_c00397{transform:matrix(0.111306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111306,0.000000,0.000000,0.250000,0,0);}
.mee_c00397{transform:matrix(0.112760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112760,0.000000,0.000000,0.250000,0,0);}
.mab_c00397{transform:matrix(0.112838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112838,0.000000,0.000000,0.250000,0,0);}
.mf0_c00397{transform:matrix(0.114584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114584,0.000000,0.000000,0.250000,0,0);}
.mf9_c00397{transform:matrix(0.116523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116523,0.000000,0.000000,0.250000,0,0);}
.mc2_c00397{transform:matrix(0.120938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120938,0.000000,0.000000,0.250000,0,0);}
.m92_c00397{transform:matrix(0.121076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121076,0.000000,0.000000,0.250000,0,0);}
.ma0_c00397{transform:matrix(0.121428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121428,0.000000,0.000000,0.250000,0,0);}
.mc4_c00397{transform:matrix(0.122728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122728,0.000000,0.000000,0.250000,0,0);}
.m8a_c00397{transform:matrix(0.124459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124459,0.000000,0.000000,0.250000,0,0);}
.mfe_c00397{transform:matrix(0.124999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124999,0.000000,0.000000,0.250000,0,0);}
.m6b_c00397{transform:matrix(0.132892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132892,0.000000,0.000000,0.250000,0,0);}
.m74_c00397{transform:matrix(0.135449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135449,0.000000,0.000000,0.250000,0,0);}
.m2c_c00397{transform:matrix(0.135714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135714,0.000000,0.000000,0.250000,0,0);}
.m95_c00397{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);}
.m9c_c00397{transform:matrix(0.138943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138943,0.000000,0.000000,0.250000,0,0);}
.mb5_c00397{transform:matrix(0.142115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142115,0.000000,0.000000,0.250000,0,0);}
.mad_c00397{transform:matrix(0.144048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144048,0.000000,0.000000,0.250000,0,0);}
.m8d_c00397{transform:matrix(0.144696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144696,0.000000,0.000000,0.250000,0,0);}
.m97_c00397{transform:matrix(0.146466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146466,0.000000,0.000000,0.250000,0,0);}
.m72_c00397{transform:matrix(0.153598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153598,0.000000,0.000000,0.250000,0,0);}
.mec_c00397{transform:matrix(0.153806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153806,0.000000,0.000000,0.250000,0,0);}
.m22_c00397{transform:matrix(0.155980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155980,0.000000,0.000000,0.250000,0,0);}
.m83_c00397{transform:matrix(0.157142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157142,0.000000,0.000000,0.250000,0,0);}
.mde_c00397{transform:matrix(0.159961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159961,0.000000,0.000000,0.250000,0,0);}
.mf4_c00397{transform:matrix(0.163380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163380,0.000000,0.000000,0.250000,0,0);}
.mc3_c00397{transform:matrix(0.163406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163406,0.000000,0.000000,0.250000,0,0);}
.mf8_c00397{transform:matrix(0.165613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165613,0.000000,0.000000,0.250000,0,0);}
.mb6_c00397{transform:matrix(0.166652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166652,0.000000,0.000000,0.250000,0,0);}
.m8b_c00397{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);}
.m2_c00397{transform:matrix(0.166669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166669,0.000000,0.000000,0.250000,0,0);}
.m13_c00397{transform:matrix(0.169061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169061,0.000000,0.000000,0.250000,0,0);}
.md8_c00397{transform:matrix(0.169999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169999,0.000000,0.000000,0.250000,0,0);}
.m96_c00397{transform:matrix(0.174243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174243,0.000000,0.000000,0.250000,0,0);}
.m5f_c00397{transform:matrix(0.174695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174695,0.000000,0.000000,0.250000,0,0);}
.m6c_c00397{transform:matrix(0.175279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175279,0.000000,0.000000,0.250000,0,0);}
.mff_c00397{transform:matrix(0.176471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176471,0.000000,0.000000,0.250000,0,0);}
.m6f_c00397{transform:matrix(0.183336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183336,0.000000,0.000000,0.250000,0,0);}
.m81_c00397{transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);}
.m5c_c00397{transform:matrix(0.186305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186305,0.000000,0.000000,0.250000,0,0);}
.ma8_c00397{transform:matrix(0.188646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188646,0.000000,0.000000,0.250000,0,0);}
.m93_c00397{transform:matrix(0.189394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189394,0.000000,0.000000,0.250000,0,0);}
.mb7_c00397{transform:matrix(0.191177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191177,0.000000,0.000000,0.250000,0,0);}
.mca_c00397{transform:matrix(0.192786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192786,0.000000,0.000000,0.250000,0,0);}
.m7f_c00397{transform:matrix(0.193703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193703,0.000000,0.000000,0.250000,0,0);}
.mfa_c00397{transform:matrix(0.194563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194563,0.000000,0.000000,0.250000,0,0);}
.m84_c00397{transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);}
.ma4_c00397{transform:matrix(0.196968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196968,0.000000,0.000000,0.250000,0,0);}
.m6d_c00397{transform:matrix(0.197292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197292,0.000000,0.000000,0.250000,0,0);}
.m100_c00397{transform:matrix(0.198530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198530,0.000000,0.000000,0.250000,0,0);}
.mae_c00397{transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);}
.ma6_c00397{transform:matrix(0.200357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200357,0.000000,0.000000,0.250000,0,0);}
.md9_c00397{transform:matrix(0.201785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201785,0.000000,0.000000,0.250000,0,0);}
.mc9_c00397{transform:matrix(0.203071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203071,0.000000,0.000000,0.250000,0,0);}
.ma1_c00397{transform:matrix(0.203991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203991,0.000000,0.000000,0.250000,0,0);}
.me6_c00397{transform:matrix(0.207765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207765,0.000000,0.000000,0.250000,0,0);}
.m2d_c00397{transform:matrix(0.208571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208571,0.000000,0.000000,0.250000,0,0);}
.ma2_c00397{transform:matrix(0.208622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208622,0.000000,0.000000,0.250000,0,0);}
.mb0_c00397{transform:matrix(0.212499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212499,0.000000,0.000000,0.250000,0,0);}
.me9_c00397{transform:matrix(0.212568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212568,0.000000,0.000000,0.250000,0,0);}
.mdc_c00397{transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);}
.m4d_c00397{transform:matrix(0.213337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213337,0.000000,0.000000,0.250000,0,0);}
.maf_c00397{transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);}
.m26_c00397{transform:matrix(0.215982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215982,0.000000,0.000000,0.250000,0,0);}
.m5a_c00397{transform:matrix(0.218369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218369,0.000000,0.000000,0.250000,0,0);}
.mfd_c00397{transform:matrix(0.222055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222055,0.000000,0.000000,0.250000,0,0);}
.m80_c00397{transform:matrix(0.222352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222352,0.000000,0.000000,0.250000,0,0);}
.m7e_c00397{transform:matrix(0.222726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222726,0.000000,0.000000,0.250000,0,0);}
.ma7_c00397{transform:matrix(0.222983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222983,0.000000,0.000000,0.250000,0,0);}
.mb4_c00397{transform:matrix(0.223725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223725,0.000000,0.000000,0.250000,0,0);}
.m2b_c00397{transform:matrix(0.223809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223809,0.000000,0.000000,0.250000,0,0);}
.mdd_c00397{transform:matrix(0.224790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224790,0.000000,0.000000,0.250000,0,0);}
.maa_c00397{transform:matrix(0.226490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226490,0.000000,0.000000,0.250000,0,0);}
.m77_c00397{transform:matrix(0.228002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228002,0.000000,0.000000,0.250000,0,0);}
.m98_c00397{transform:matrix(0.229799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229799,0.000000,0.000000,0.250000,0,0);}
.meb_c00397{transform:matrix(0.230227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230227,0.000000,0.000000,0.250000,0,0);}
.med_c00397{transform:matrix(0.232914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232914,0.000000,0.000000,0.250000,0,0);}
.m70_c00397{transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);}
.m1d_c00397{transform:matrix(0.237344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237344,0.000000,0.000000,0.250000,0,0);}
.m76_c00397{transform:matrix(0.240564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240564,0.000000,0.000000,0.250000,0,0);}
.mf6_c00397{transform:matrix(0.241219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241219,0.000000,0.000000,0.250000,0,0);}
.m1_c00397{transform:matrix(0.241293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241293,0.000000,0.000000,0.250000,0,0);}
.m1e_c00397{transform:matrix(0.242830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242830,0.000000,0.000000,0.250000,0,0);}
.me8_c00397{transform:matrix(0.245284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245284,0.000000,0.000000,0.250000,0,0);}
.m41_c00397{transform:matrix(0.247923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247923,0.000000,0.000000,0.250000,0,0);}
.m0_c00397{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m15_c00397{transform:matrix(0.250519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250519,0.000000,0.000000,0.250000,0,0);}
.mb1_c00397{transform:matrix(0.252300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252300,0.000000,0.000000,0.250000,0,0);}
.m8f_c00397{transform:matrix(0.255691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255691,0.000000,0.000000,0.250000,0,0);}
.m24_c00397{transform:matrix(0.259109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259109,0.000000,0.000000,0.250000,0,0);}
.m49_c00397{transform:matrix(0.259307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259307,0.000000,0.000000,0.250000,0,0);}
.m1f_c00397{transform:matrix(0.260171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260171,0.000000,0.000000,0.250000,0,0);}
.m54_c00397{transform:matrix(0.261067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261067,0.000000,0.000000,0.250000,0,0);}
.mce_c00397{transform:matrix(0.262888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262888,0.000000,0.000000,0.250000,0,0);}
.mea_c00397{transform:matrix(0.264673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264673,0.000000,0.000000,0.250000,0,0);}
.m20_c00397{transform:matrix(0.265327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265327,0.000000,0.000000,0.250000,0,0);}
.m57_c00397{transform:matrix(0.268047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268047,0.000000,0.000000,0.250000,0,0);}
.m45_c00397{transform:matrix(0.268141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268141,0.000000,0.000000,0.250000,0,0);}
.m1a_c00397{transform:matrix(0.268364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268364,0.000000,0.000000,0.250000,0,0);}
.m32_c00397{transform:matrix(0.268705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268705,0.000000,0.000000,0.250000,0,0);}
.mfb_c00397{transform:matrix(0.269008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269008,0.000000,0.000000,0.250000,0,0);}
.m89_c00397{transform:matrix(0.270444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270444,0.000000,0.000000,0.250000,0,0);}
.m4_c00397{transform:matrix(0.271176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271176,0.000000,0.000000,0.250000,0,0);}
.m2a_c00397{transform:matrix(0.271605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271605,0.000000,0.000000,0.250000,0,0);}
.mf5_c00397{transform:matrix(0.273417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273417,0.000000,0.000000,0.250000,0,0);}
.m65_c00397{transform:matrix(0.274238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274238,0.000000,0.000000,0.250000,0,0);}
.m5d_c00397{transform:matrix(0.274800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274800,0.000000,0.000000,0.250000,0,0);}
.mb2_c00397{transform:matrix(0.276006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276006,0.000000,0.000000,0.250000,0,0);}
.mfc_c00397{transform:matrix(0.278472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278472,0.000000,0.000000,0.250000,0,0);}
.mc_c00397{transform:matrix(0.278559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278559,0.000000,0.000000,0.250000,0,0);}
.mbe_c00397{transform:matrix(0.278636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278636,0.000000,0.000000,0.250000,0,0);}
.m7d_c00397{transform:matrix(0.280235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280235,0.000000,0.000000,0.250000,0,0);}
.m53_c00397{transform:matrix(0.281213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281213,0.000000,0.000000,0.250000,0,0);}
.m67_c00397{transform:matrix(0.281835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281835,0.000000,0.000000,0.250000,0,0);}
.mf7_c00397{transform:matrix(0.282628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282628,0.000000,0.000000,0.250000,0,0);}
.m48_c00397{transform:matrix(0.283605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283605,0.000000,0.000000,0.250000,0,0);}
.m23_c00397{transform:matrix(0.283726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283726,0.000000,0.000000,0.250000,0,0);}
.m40_c00397{transform:matrix(0.283815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283815,0.000000,0.000000,0.250000,0,0);}
.m58_c00397{transform:matrix(0.285622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285622,0.000000,0.000000,0.250000,0,0);}
.m103_c00397{transform:matrix(0.285824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285824,0.000000,0.000000,0.250000,0,0);}
.mac_c00397{transform:matrix(0.286479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286479,0.000000,0.000000,0.250000,0,0);}
.m1b_c00397{transform:matrix(0.287913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287913,0.000000,0.000000,0.250000,0,0);}
.m8c_c00397{transform:matrix(0.288063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288063,0.000000,0.000000,0.250000,0,0);}
.m43_c00397{transform:matrix(0.288458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288458,0.000000,0.000000,0.250000,0,0);}
.m66_c00397{transform:matrix(0.290017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290017,0.000000,0.000000,0.250000,0,0);}
.m104_c00397{transform:matrix(0.290405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290405,0.000000,0.000000,0.250000,0,0);}
.m6_c00397{transform:matrix(0.291019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291019,0.000000,0.000000,0.250000,0,0);}
.m21_c00397{transform:matrix(0.291439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291439,0.000000,0.000000,0.250000,0,0);}
.m3e_c00397{transform:matrix(0.291628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291628,0.000000,0.000000,0.250000,0,0);}
.m4a_c00397{transform:matrix(0.291881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291881,0.000000,0.000000,0.250000,0,0);}
.m34_c00397{transform:matrix(0.292122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292122,0.000000,0.000000,0.250000,0,0);}
.m9d_c00397{transform:matrix(0.293030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293030,0.000000,0.000000,0.250000,0,0);}
.mbb_c00397{transform:matrix(0.293579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293579,0.000000,0.000000,0.250000,0,0);}
.mc8_c00397{transform:matrix(0.294235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294235,0.000000,0.000000,0.250000,0,0);}
.md6_c00397{transform:matrix(0.295893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295893,0.000000,0.000000,0.250000,0,0);}
.m18_c00397{transform:matrix(0.296216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296216,0.000000,0.000000,0.250000,0,0);}
.m31_c00397{transform:matrix(0.296916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296916,0.000000,0.000000,0.250000,0,0);}
.m88_c00397{transform:matrix(0.297747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297747,0.000000,0.000000,0.250000,0,0);}
.m99_c00397{transform:matrix(0.298837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298837,0.000000,0.000000,0.250000,0,0);}
.m36_c00397{transform:matrix(0.298861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298861,0.000000,0.000000,0.250000,0,0);}
.mbf_c00397{transform:matrix(0.299489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299489,0.000000,0.000000,0.250000,0,0);}
.mcf_c00397{transform:matrix(0.300925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300925,0.000000,0.000000,0.250000,0,0);}
.md5_c00397{transform:matrix(0.301413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301413,0.000000,0.000000,0.250000,0,0);}
.m3_c00397{transform:matrix(0.301434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301434,0.000000,0.000000,0.250000,0,0);}
.m102_c00397{transform:matrix(0.304959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304959,0.000000,0.000000,0.250000,0,0);}
.m28_c00397{transform:matrix(0.306798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306798,0.000000,0.000000,0.250000,0,0);}
.m10_c00397{transform:matrix(0.307351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307351,0.000000,0.000000,0.250000,0,0);}
.mb_c00397{transform:matrix(0.308357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308357,0.000000,0.000000,0.250000,0,0);}
.m5_c00397{transform:matrix(0.308390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308390,0.000000,0.000000,0.250000,0,0);}
.m87_c00397{transform:matrix(0.309167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309167,0.000000,0.000000,0.250000,0,0);}
.m90_c00397{transform:matrix(0.309315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309315,0.000000,0.000000,0.250000,0,0);}
.m7c_c00397{transform:matrix(0.311182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311182,0.000000,0.000000,0.250000,0,0);}
.md2_c00397{transform:matrix(0.311282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311282,0.000000,0.000000,0.250000,0,0);}
.m3b_c00397{transform:matrix(0.311341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311341,0.000000,0.000000,0.250000,0,0);}
.m85_c00397{transform:matrix(0.311866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311866,0.000000,0.000000,0.250000,0,0);}
.mf2_c00397{transform:matrix(0.312599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312599,0.000000,0.000000,0.250000,0,0);}
.m7a_c00397{transform:matrix(0.312639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312639,0.000000,0.000000,0.250000,0,0);}
.m4b_c00397{transform:matrix(0.312831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312831,0.000000,0.000000,0.250000,0,0);}
.me3_c00397{transform:matrix(0.313247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313247,0.000000,0.000000,0.250000,0,0);}
.m9a_c00397{transform:matrix(0.313393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313393,0.000000,0.000000,0.250000,0,0);}
.mcc_c00397{transform:matrix(0.314320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314320,0.000000,0.000000,0.250000,0,0);}
.ma3_c00397{transform:matrix(0.314502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314502,0.000000,0.000000,0.250000,0,0);}
.m55_c00397{transform:matrix(0.314846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314846,0.000000,0.000000,0.250000,0,0);}
.mda_c00397{transform:matrix(0.315178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315178,0.000000,0.000000,0.250000,0,0);}
.m71_c00397{transform:matrix(0.316163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316163,0.000000,0.000000,0.250000,0,0);}
.m7b_c00397{transform:matrix(0.316297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316297,0.000000,0.000000,0.250000,0,0);}
.m106_c00397{transform:matrix(0.316739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316739,0.000000,0.000000,0.250000,0,0);}
.ma9_c00397{transform:matrix(0.318560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318560,0.000000,0.000000,0.250000,0,0);}
.m8_c00397{transform:matrix(0.318990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318990,0.000000,0.000000,0.250000,0,0);}
.m8e_c00397{transform:matrix(0.319333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319333,0.000000,0.000000,0.250000,0,0);}
.mc7_c00397{transform:matrix(0.320926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320926,0.000000,0.000000,0.250000,0,0);}
.m82_c00397{transform:matrix(0.321428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321428,0.000000,0.000000,0.250000,0,0);}
.m91_c00397{transform:matrix(0.322491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322491,0.000000,0.000000,0.250000,0,0);}
.m75_c00397{transform:matrix(0.322782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322782,0.000000,0.000000,0.250000,0,0);}
.m11_c00397{transform:matrix(0.322978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322978,0.000000,0.000000,0.250000,0,0);}
.md_c00397{transform:matrix(0.323369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323369,0.000000,0.000000,0.250000,0,0);}
.m50_c00397{transform:matrix(0.324586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324586,0.000000,0.000000,0.250000,0,0);}
.m64_c00397{transform:matrix(0.324625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324625,0.000000,0.000000,0.250000,0,0);}
.m5e_c00397{transform:matrix(0.325608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325608,0.000000,0.000000,0.250000,0,0);}
.m63_c00397{transform:matrix(0.325802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325802,0.000000,0.000000,0.250000,0,0);}
.mbc_c00397{transform:matrix(0.328275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328275,0.000000,0.000000,0.250000,0,0);}
.mb3_c00397{transform:matrix(0.330655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330655,0.000000,0.000000,0.250000,0,0);}
.m14_c00397{transform:matrix(0.330730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330730,0.000000,0.000000,0.250000,0,0);}
.m9e_c00397{transform:matrix(0.330786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330786,0.000000,0.000000,0.250000,0,0);}
.m6a_c00397{transform:matrix(0.330879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330879,0.000000,0.000000,0.250000,0,0);}
.m9_c00397{transform:matrix(0.330988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330988,0.000000,0.000000,0.250000,0,0);}
.m16_c00397{transform:matrix(0.331112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331112,0.000000,0.000000,0.250000,0,0);}
.me7_c00397{transform:matrix(0.333873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333873,0.000000,0.000000,0.250000,0,0);}
.me2_c00397{transform:matrix(0.334243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334243,0.000000,0.000000,0.250000,0,0);}
.m56_c00397{transform:matrix(0.335158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335158,0.000000,0.000000,0.250000,0,0);}
.m3f_c00397{transform:matrix(0.335728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335728,0.000000,0.000000,0.250000,0,0);}
.m25_c00397{transform:matrix(0.336005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336005,0.000000,0.000000,0.250000,0,0);}
.m62_c00397{transform:matrix(0.336954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336954,0.000000,0.000000,0.250000,0,0);}
.m68_c00397{transform:matrix(0.337150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337150,0.000000,0.000000,0.250000,0,0);}
.mdb_c00397{transform:matrix(0.337571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337571,0.000000,0.000000,0.250000,0,0);}
.m35_c00397{transform:matrix(0.338091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338091,0.000000,0.000000,0.250000,0,0);}
.mf3_c00397{transform:matrix(0.338310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338310,0.000000,0.000000,0.250000,0,0);}
.mf_c00397{transform:matrix(0.338755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338755,0.000000,0.000000,0.250000,0,0);}
.m3a_c00397{transform:matrix(0.339348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339348,0.000000,0.000000,0.250000,0,0);}
.m37_c00397{transform:matrix(0.340551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340551,0.000000,0.000000,0.250000,0,0);}
.me4_c00397{transform:matrix(0.340552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340552,0.000000,0.000000,0.250000,0,0);}
.m39_c00397{transform:matrix(0.346858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346858,0.000000,0.000000,0.250000,0,0);}
.m5b_c00397{transform:matrix(0.347150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347150,0.000000,0.000000,0.250000,0,0);}
.m3c_c00397{transform:matrix(0.347253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347253,0.000000,0.000000,0.250000,0,0);}
.m12_c00397{transform:matrix(0.347466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347466,0.000000,0.000000,0.250000,0,0);}
.md1_c00397{transform:matrix(0.347827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347827,0.000000,0.000000,0.250000,0,0);}
.me0_c00397{transform:matrix(0.348045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348045,0.000000,0.000000,0.250000,0,0);}
.m105_c00397{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);}
.md0_c00397{transform:matrix(0.349497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349497,0.000000,0.000000,0.250000,0,0);}
.m69_c00397{transform:matrix(0.349530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349530,0.000000,0.000000,0.250000,0,0);}
.m59_c00397{transform:matrix(0.350007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350007,0.000000,0.000000,0.250000,0,0);}
.mba_c00397{transform:matrix(0.350115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350115,0.000000,0.000000,0.250000,0,0);}
.md3_c00397{transform:matrix(0.350506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350506,0.000000,0.000000,0.250000,0,0);}
.me5_c00397{transform:matrix(0.351548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351548,0.000000,0.000000,0.250000,0,0);}
.md7_c00397{transform:matrix(0.351606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351606,0.000000,0.000000,0.250000,0,0);}
.m3d_c00397{transform:matrix(0.351856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351856,0.000000,0.000000,0.250000,0,0);}
.mdf_c00397{transform:matrix(0.352297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352297,0.000000,0.000000,0.250000,0,0);}
.m9b_c00397{transform:matrix(0.353007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353007,0.000000,0.000000,0.250000,0,0);}
.mcb_c00397{transform:matrix(0.353814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353814,0.000000,0.000000,0.250000,0,0);}
.m4e_c00397{transform:matrix(0.354811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354811,0.000000,0.000000,0.250000,0,0);}
.m30_c00397{transform:matrix(0.355951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355951,0.000000,0.000000,0.250000,0,0);}
.m29_c00397{transform:matrix(0.357532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357532,0.000000,0.000000,0.250000,0,0);}
.mbd_c00397{transform:matrix(0.357571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357571,0.000000,0.000000,0.250000,0,0);}
.m61_c00397{transform:matrix(0.358851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358851,0.000000,0.000000,0.250000,0,0);}
.mc0_c00397{transform:matrix(0.359200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359200,0.000000,0.000000,0.250000,0,0);}
.m52_c00397{transform:matrix(0.359924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359924,0.000000,0.000000,0.250000,0,0);}
.m60_c00397{transform:matrix(0.360181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360181,0.000000,0.000000,0.250000,0,0);}
.m79_c00397{transform:matrix(0.360814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360814,0.000000,0.000000,0.250000,0,0);}
.mc6_c00397{transform:matrix(0.361390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361390,0.000000,0.000000,0.250000,0,0);}
.m4c_c00397{transform:matrix(0.363700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363700,0.000000,0.000000,0.250000,0,0);}
.m17_c00397{transform:matrix(0.363815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363815,0.000000,0.000000,0.250000,0,0);}
.m2f_c00397{transform:matrix(0.363939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363939,0.000000,0.000000,0.250000,0,0);}
.m2e_c00397{transform:matrix(0.364990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364990,0.000000,0.000000,0.250000,0,0);}
.m9f_c00397{transform:matrix(0.365990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365990,0.000000,0.000000,0.250000,0,0);}
.ma5_c00397{transform:matrix(0.368208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368208,0.000000,0.000000,0.250000,0,0);}
.m73_c00397{transform:matrix(0.368854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368854,0.000000,0.000000,0.250000,0,0);}
.mc5_c00397{transform:matrix(0.373084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373084,0.000000,0.000000,0.250000,0,0);}
.m7_c00397{transform:matrix(0.373690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373690,0.000000,0.000000,0.250000,0,0);}
.m86_c00397{transform:matrix(0.381346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381346,0.000000,0.000000,0.250000,0,0);}
.mcd_c00397{transform:matrix(0.382310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382310,0.000000,0.000000,0.250000,0,0);}
.m38_c00397{transform:matrix(0.383424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383424,0.000000,0.000000,0.250000,0,0);}
.m27_c00397{transform:matrix(0.383653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383653,0.000000,0.000000,0.250000,0,0);}
.m47_c00397{transform:matrix(0.389894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389894,0.000000,0.000000,0.250000,0,0);}
.me_c00397{transform:matrix(0.392964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392964,0.000000,0.000000,0.250000,0,0);}
.me1_c00397{transform:matrix(0.394250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00397{transform:matrix(0.394824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394824,0.000000,0.000000,0.250000,0,0);}
.m1c_c00397{transform:matrix(0.398460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398460,0.000000,0.000000,0.250000,0,0);}
.m42_c00397{transform:matrix(0.401809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401809,0.000000,0.000000,0.250000,0,0);}
.m19_c00397{transform:matrix(0.403825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403825,0.000000,0.000000,0.250000,0,0);}
.m44_c00397{transform:matrix(0.403845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403845,0.000000,0.000000,0.250000,0,0);}
.m46_c00397{transform:matrix(0.414407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414407,0.000000,0.000000,0.250000,0,0);}
.ma_c00397{transform:matrix(0.418579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418579,0.000000,0.000000,0.250000,0,0);}
.m33_c00397{transform:matrix(0.427841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427841,0.000000,0.000000,0.250000,0,0);}
.m51_c00397{transform:matrix(0.458759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458759,0.000000,0.000000,0.250000,0,0);}
.mc1_c00397{transform:matrix(0.460333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460333,0.000000,0.000000,0.250000,0,0);}
.md4_c00397{transform:matrix(0.487136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487136,0.000000,0.000000,0.250000,0,0);}
.v7_c00397{vertical-align:-2.871000px;}
.v0_c00397{vertical-align:0.000000px;}
.v3_c00397{vertical-align:1.405800px;}
.v2_c00397{vertical-align:2.831400px;}
.v6_c00397{vertical-align:14.275800px;}
.v4_c00397{vertical-align:17.127000px;}
.v8_c00397{vertical-align:25.675650px;}
.v1_c00397{vertical-align:41.342400px;}
.v5_c00397{vertical-align:44.213400px;}
.ls9_c00397{letter-spacing:-2.952180px;}
.ls30_c00397{letter-spacing:-2.474017px;}
.lsf_c00397{letter-spacing:-2.439367px;}
.ls31_c00397{letter-spacing:-2.404717px;}
.ls2e_c00397{letter-spacing:-2.162167px;}
.ls38_c00397{letter-spacing:-2.092867px;}
.ls29_c00397{letter-spacing:-2.051280px;}
.ls2d_c00397{letter-spacing:-1.995840px;}
.ls32_c00397{letter-spacing:-1.884967px;}
.ls3d_c00397{letter-spacing:-1.857240px;}
.ls3c_c00397{letter-spacing:-1.843380px;}
.ls42_c00397{letter-spacing:-1.774080px;}
.ls41_c00397{letter-spacing:-1.718640px;}
.ls3a_c00397{letter-spacing:-1.690920px;}
.ls33_c00397{letter-spacing:-1.663200px;}
.ls3f_c00397{letter-spacing:-1.628550px;}
.ls15_c00397{letter-spacing:-1.517670px;}
.ls46_c00397{letter-spacing:-1.503817px;}
.ls40_c00397{letter-spacing:-1.498468px;}
.ls14_c00397{letter-spacing:-1.309770px;}
.ls21_c00397{letter-spacing:-1.247400px;}
.ls23_c00397{letter-spacing:-1.157317px;}
.ls25_c00397{letter-spacing:-0.977130px;}
.ls1f_c00397{letter-spacing:-0.914760px;}
.ls27_c00397{letter-spacing:-0.734580px;}
.ls20_c00397{letter-spacing:-0.706860px;}
.ls45_c00397{letter-spacing:-0.355451px;}
.ls36_c00397{letter-spacing:-0.229997px;}
.ls1a_c00397{letter-spacing:-0.152183px;}
.ls8_c00397{letter-spacing:0.000000px;}
.ls2_c00397{letter-spacing:0.121968px;}
.ls2c_c00397{letter-spacing:0.348481px;}
.ls1e_c00397{letter-spacing:0.592418px;}
.ls7_c00397{letter-spacing:0.794537px;}
.ls2f_c00397{letter-spacing:0.940899px;}
.ls1b_c00397{letter-spacing:1.079100px;}
.lsd_c00397{letter-spacing:1.143018px;}
.ls39_c00397{letter-spacing:1.233738px;}
.ls26_c00397{letter-spacing:1.395900px;}
.ls10_c00397{letter-spacing:1.445400px;}
.ls24_c00397{letter-spacing:1.653310px;}
.ls22_c00397{letter-spacing:1.791900px;}
.ls13_c00397{letter-spacing:1.871100px;}
.ls12_c00397{letter-spacing:2.019600px;}
.ls17_c00397{letter-spacing:2.059200px;}
.ls44_c00397{letter-spacing:2.156207px;}
.ls16_c00397{letter-spacing:2.168100px;}
.ls43_c00397{letter-spacing:2.356200px;}
.ls3b_c00397{letter-spacing:2.455200px;}
.ls1_c00397{letter-spacing:2.746030px;}
.ls18_c00397{letter-spacing:2.851200px;}
.ls35_c00397{letter-spacing:2.892392px;}
.ls1d_c00397{letter-spacing:3.178147px;}
.lse_c00397{letter-spacing:3.257110px;}
.ls2a_c00397{letter-spacing:3.286810px;}
.ls0_c00397{letter-spacing:3.429053px;}
.ls37_c00397{letter-spacing:3.436023px;}
.ls11_c00397{letter-spacing:3.445200px;}
.lsc_c00397{letter-spacing:3.484810px;}
.lsb_c00397{letter-spacing:3.920400px;}
.ls4_c00397{letter-spacing:14.137101px;}
.ls28_c00397{letter-spacing:17.107200px;}
.ls1c_c00397{letter-spacing:18.532998px;}
.lsa_c00397{letter-spacing:21.384000px;}
.ls6_c00397{letter-spacing:21.884687px;}
.ls3e_c00397{letter-spacing:34.214598px;}
.ls2b_c00397{letter-spacing:47.044800px;}
.ls34_c00397{letter-spacing:48.470598px;}
.ls19_c00397{letter-spacing:49.896198px;}
.ls5_c00397{letter-spacing:62.004987px;}
.ls3_c00397{letter-spacing:203.699958px;}
.sc__c00397{text-shadow:none;}
.sc0_c00397{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00397{-webkit-text-stroke:0px transparent;}
.sc0_c00397{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00397{word-spacing:-17.424050px;}
.ws2_c00397{word-spacing:-9.809712px;}
.ws8_c00397{word-spacing:-1.532668px;}
.ws9_c00397{word-spacing:0.000000px;}
.ws5_c00397{word-spacing:1.046117px;}
.ws7_c00397{word-spacing:4.091243px;}
.ws3_c00397{word-spacing:8.851485px;}
.ws4_c00397{word-spacing:9.686847px;}
.ws6_c00397{word-spacing:37.356919px;}
.ws1_c00397{word-spacing:104.942970px;}
._27_c00397{margin-left:-17.968500px;}
._a_c00397{margin-left:-12.336115px;}
._24_c00397{margin-left:-11.151503px;}
._20_c00397{margin-left:-8.277984px;}
._e_c00397{margin-left:-6.739038px;}
._11_c00397{margin-left:-2.624056px;}
._13_c00397{width:1.888128px;}
._14_c00397{width:3.624192px;}
._10_c00397{width:5.934060px;}
._9_c00397{width:7.528752px;}
._8_c00397{width:8.692992px;}
._3_c00397{width:9.757412px;}
._5_c00397{width:11.779328px;}
._b_c00397{width:13.033053px;}
._1e_c00397{width:14.462464px;}
._1d_c00397{width:15.890787px;}
._1f_c00397{width:18.762480px;}
._12_c00397{width:20.399335px;}
._28_c00397{width:21.900384px;}
._6_c00397{width:23.278607px;}
._0_c00397{width:24.393743px;}
._1_c00397{width:26.972275px;}
._18_c00397{width:28.263776px;}
._1a_c00397{width:31.706928px;}
._21_c00397{width:32.981713px;}
._15_c00397{width:34.474039px;}
._16_c00397{width:36.311939px;}
._7_c00397{width:38.611645px;}
._22_c00397{width:40.213652px;}
._2_c00397{width:42.236073px;}
._4_c00397{width:44.314639px;}
._f_c00397{width:45.619101px;}
._17_c00397{width:47.184077px;}
._1c_c00397{width:49.668504px;}
._c_c00397{width:56.576113px;}
._19_c00397{width:186.609060px;}
._d_c00397{width:205.893754px;}
._23_c00397{width:243.114300px;}
._26_c00397{width:359.613376px;}
._1b_c00397{width:700.078143px;}
._25_c00397{width:833.153981px;}
.fc0_c00397{color:transparent;}
.fs26_c00397{font-size:17.107200px;}
.fs18_c00397{font-size:18.532998px;}
.fs1e_c00397{font-size:20.196000px;}
.fs1a_c00397{font-size:20.592000px;}
.fs21_c00397{font-size:20.790000px;}
.fs25_c00397{font-size:20.988000px;}
.fs4_c00397{font-size:21.384000px;}
.fs17_c00397{font-size:21.582000px;}
.fs0_c00397{font-size:22.176000px;}
.fs15_c00397{font-size:24.948000px;}
.fs3_c00397{font-size:25.146000px;}
.fs1d_c00397{font-size:26.136000px;}
.fs37_c00397{font-size:26.532000px;}
.fs40_c00397{font-size:27.720000px;}
.fs24_c00397{font-size:27.918000px;}
.fs8_c00397{font-size:28.908000px;}
.fs23_c00397{font-size:33.066198px;}
.fs3e_c00397{font-size:33.462000px;}
.fsf_c00397{font-size:34.056198px;}
.fs3b_c00397{font-size:34.214598px;}
.fs19_c00397{font-size:34.848000px;}
.fs1f_c00397{font-size:35.640000px;}
.fs22_c00397{font-size:35.838000px;}
.fsb_c00397{font-size:37.422000px;}
.fsd_c00397{font-size:38.808000px;}
.fsa_c00397{font-size:40.392000px;}
.fse_c00397{font-size:41.184000px;}
.fs41_c00397{font-size:42.966198px;}
.fsc_c00397{font-size:43.362000px;}
.fs3c_c00397{font-size:46.530000px;}
.fs29_c00397{font-size:47.044800px;}
.fs3f_c00397{font-size:47.124000px;}
.fs2f_c00397{font-size:47.520000px;}
.fs20_c00397{font-size:47.916198px;}
.fs38_c00397{font-size:48.312000px;}
.fs30_c00397{font-size:48.470598px;}
.fs2a_c00397{font-size:48.510000px;}
.fs39_c00397{font-size:49.104000px;}
.fs14_c00397{font-size:49.896198px;}
.fs10_c00397{font-size:50.688000px;}
.fs3a_c00397{font-size:52.668000px;}
.fs32_c00397{font-size:53.064000px;}
.fs2e_c00397{font-size:53.856198px;}
.fs35_c00397{font-size:56.628000px;}
.fs13_c00397{font-size:57.024000px;}
.fs27_c00397{font-size:58.608000px;}
.fs34_c00397{font-size:59.796198px;}
.fs2b_c00397{font-size:61.776198px;}
.fs33_c00397{font-size:62.568000px;}
.fs36_c00397{font-size:64.350000px;}
.fs7_c00397{font-size:65.142198px;}
.fs28_c00397{font-size:65.736198px;}
.fs11_c00397{font-size:66.330000px;}
.fs1c_c00397{font-size:66.528000px;}
.fs2d_c00397{font-size:68.706198px;}
.fs9_c00397{font-size:68.904000px;}
.fs6_c00397{font-size:69.696198px;}
.fs12_c00397{font-size:69.894000px;}
.fs2c_c00397{font-size:70.686198px;}
.fs31_c00397{font-size:70.884000px;}
.fs2_c00397{font-size:72.864000px;}
.fs16_c00397{font-size:73.260000px;}
.fs5_c00397{font-size:78.408000px;}
.fs1_c00397{font-size:84.348000px;}
.fs1b_c00397{font-size:91.872198px;}
.fs3d_c00397{font-size:107.712198px;}
.y0_c00397{bottom:0.000000px;}
.y44_c00397{bottom:20.226735px;}
.y43_c00397{bottom:40.536585px;}
.y1_c00397{bottom:76.500000px;}
.y42_c00397{bottom:104.337135px;}
.y41_c00397{bottom:139.977135px;}
.y40_c00397{bottom:166.707135px;}
.y3e_c00397{bottom:167.419935px;}
.y3c_c00397{bottom:169.914735px;}
.y39_c00397{bottom:170.271135px;}
.y3d_c00397{bottom:170.627535px;}
.y3a_c00397{bottom:170.983935px;}
.y3b_c00397{bottom:180.250335px;}
.y3f_c00397{bottom:180.958185px;}
.y37_c00397{bottom:199.490985px;}
.y38_c00397{bottom:204.485535px;}
.y36_c00397{bottom:205.554735px;}
.y35_c00397{bottom:205.911135px;}
.y34_c00397{bottom:262.930185px;}
.y33_c00397{bottom:270.063135px;}
.y32_c00397{bottom:297.857385px;}
.y31_c00397{bottom:303.203385px;}
.y30_c00397{bottom:303.564735px;}
.y2f_c00397{bottom:335.997135px;}
.y2e_c00397{bottom:369.850185px;}
.y2d_c00397{bottom:394.803135px;}
.y2c_c00397{bottom:398.718585px;}
.y2b_c00397{bottom:402.287535px;}
.y2a_c00397{bottom:434.358585px;}
.y29_c00397{bottom:460.737135px;}
.y28_c00397{bottom:466.434585px;}
.y27_c00397{bottom:498.510585px;}
.y26_c00397{bottom:529.517385px;}
.y25_c00397{bottom:530.235135px;}
.y20_c00397{bottom:562.306185px;}
.y22_c00397{bottom:562.662585px;}
.y1f_c00397{bottom:563.023935px;}
.y24_c00397{bottom:563.380335px;}
.y23_c00397{bottom:566.231535px;}
.y21_c00397{bottom:566.587935px;}
.y1e_c00397{bottom:595.812735px;}
.y1d_c00397{bottom:628.245135px;}
.y1c_c00397{bottom:654.975135px;}
.y1a_c00397{bottom:660.672585px;}
.y1b_c00397{bottom:661.033935px;}
.y2_c00397{bottom:685.976985px;}
.y19_c00397{bottom:723.760335px;}
.y16_c00397{bottom:726.967935px;}
.y18_c00397{bottom:727.680735px;}
.y17_c00397{bottom:728.037135px;}
.y13_c00397{bottom:757.618335px;}
.y11_c00397{bottom:760.108185px;}
.y12_c00397{bottom:760.469535px;}
.y15_c00397{bottom:767.953935px;}
.ye_c00397{bottom:792.896985px;}
.y14_c00397{bottom:793.258335px;}
.y10_c00397{bottom:793.614735px;}
.yf_c00397{bottom:799.317135px;}
.yc_c00397{bottom:857.053935px;}
.y9_c00397{bottom:857.410335px;}
.yd_c00397{bottom:857.761785px;}
.yb_c00397{bottom:858.118185px;}
.ya_c00397{bottom:860.261535px;}
.y8_c00397{bottom:890.199135px;}
.y7_c00397{bottom:924.408585px;}
.y6_c00397{bottom:938.308185px;}
.y5_c00397{bottom:946.510335px;}
.y4_c00397{bottom:958.979385px;}
.y3_c00397{bottom:1075.878585px;}
.h28_c00397{height:11.393395px;}
.h19_c00397{height:12.342977px;}
.h6_c00397{height:14.241744px;}
.h1c_c00397{height:20.209922px;}
.h1f_c00397{height:21.063797px;}
.h18_c00397{height:21.171015px;}
.h27_c00397{height:21.889828px;}
.h3e_c00397{height:22.786922px;}
.h2_c00397{height:23.128875px;}
.h1e_c00397{height:25.651055px;}
.h16_c00397{height:26.019984px;}
.h5_c00397{height:26.226492px;}
.h25_c00397{height:27.386358px;}
.h26_c00397{height:27.399990px;}
.h46_c00397{height:28.911094px;}
.ha_c00397{height:30.150141px;}
.h2b_c00397{height:31.331837px;}
.h33_c00397{height:32.281418px;}
.h24_c00397{height:32.452665px;}
.h15_c00397{height:33.230868px;}
.h43_c00397{height:34.899820px;}
.h23_c00397{height:35.173037px;}
.h1a_c00397{height:36.345375px;}
.h20_c00397{height:37.171406px;}
.h3f_c00397{height:38.087930px;}
.hd_c00397{height:39.029977px;}
.hc_c00397{height:39.642539px;}
.hf_c00397{height:40.475531px;}
.h10_c00397{height:41.505750px;}
.h47_c00397{height:44.812402px;}
.he_c00397{height:45.225211px;}
.h41_c00397{height:45.666650px;}
.h32_c00397{height:46.638281px;}
.h22_c00397{height:47.027128px;}
.h2c_c00397{height:47.609912px;}
.h3a_c00397{height:48.192891px;}
.h3d_c00397{height:48.970390px;}
.h45_c00397{height:49.148859px;}
.h44_c00397{height:49.747500px;}
.h38_c00397{height:50.387906px;}
.h3c_c00397{height:52.079414px;}
.h3b_c00397{height:54.931078px;}
.h14_c00397{height:55.965938px;}
.h31_c00397{height:56.170332px;}
.h36_c00397{height:59.061234px;}
.h2d_c00397{height:59.474250px;}
.h2e_c00397{height:60.629960px;}
.h29_c00397{height:61.126313px;}
.h35_c00397{height:62.365566px;}
.h30_c00397{height:67.431376px;}
.hb_c00397{height:67.625508px;}
.h9_c00397{height:67.941277px;}
.h8_c00397{height:68.403007px;}
.h2a_c00397{height:68.560800px;}
.h1b_c00397{height:69.031308px;}
.h12_c00397{height:69.180117px;}
.h2f_c00397{height:69.374638px;}
.h34_c00397{height:69.568770px;}
.h13_c00397{height:71.234407px;}
.h39_c00397{height:71.254207px;}
.h4_c00397{height:71.512031px;}
.h17_c00397{height:71.900684px;}
.h7_c00397{height:76.953164px;}
.h3_c00397{height:82.782949px;}
.h21_c00397{height:84.688931px;}
.h40_c00397{height:90.167538px;}
.h37_c00397{height:92.790689px;}
.h11_c00397{height:94.208400px;}
.h1d_c00397{height:95.819832px;}
.h42_c00397{height:112.340457px;}
.h1_c00397{height:1110.000000px;}
.h0_c00397{height:1263.000000px;}
.w1_c00397{width:775.500000px;}
.w0_c00397{width:892.500000px;}
.x0_c00397{left:0.000000px;}
.x2_c00397{left:55.144635px;}
.x1_c00397{left:58.500000px;}
.x14_c00397{left:99.625335px;}
.x53_c00397{left:100.659885px;}
.x96_c00397{left:101.981535px;}
.x7b_c00397{left:104.560485px;}
.x33_c00397{left:110.663835px;}
.x8c_c00397{left:112.421085px;}
.x54_c00397{left:120.771735px;}
.x81_c00397{left:121.791435px;}
.x34_c00397{left:123.127935px;}
.x82_c00397{left:129.122385px;}
.x46_c00397{left:131.889435px;}
.x97_c00397{left:133.829835px;}
.x3c_c00397{left:142.616085px;}
.x35_c00397{left:143.972385px;}
.x8_c00397{left:153.124935px;}
.x47_c00397{left:155.189085px;}
.x95_c00397{left:159.886635px;}
.x22_c00397{left:164.084235px;}
.x83_c00397{left:165.683085px;}
.x66_c00397{left:172.479435px;}
.x15_c00397{left:175.850385px;}
.x8a_c00397{left:177.290835px;}
.x36_c00397{left:178.904535px;}
.x37_c00397{left:187.814535px;}
.x16_c00397{left:197.392785px;}
.x6b_c00397{left:199.377735px;}
.x98_c00397{left:206.218635px;}
.x25_c00397{left:209.678685px;}
.x94_c00397{left:213.618885px;}
.x67_c00397{left:220.246935px;}
.x7c_c00397{left:221.573535px;}
.x26_c00397{left:222.855585px;}
.x23_c00397{left:230.641935px;}
.x3d_c00397{left:231.854685px;}
.x27_c00397{left:242.769435px;}
.x75_c00397{left:243.898035px;}
.x68_c00397{left:246.976935px;}
.x9_c00397{left:253.273335px;}
.x7d_c00397{left:254.461335px;}
.x55_c00397{left:256.203735px;}
.x7e_c00397{left:258.020385px;}
.x87_c00397{left:263.717835px;}
.x3e_c00397{left:265.296885px;}
.x28_c00397{left:270.801285px;}
.x4a_c00397{left:274.325685px;}
.x17_c00397{left:276.310635px;}
.x24_c00397{left:279.072735px;}
.xa_c00397{left:287.096685px;}
.x29_c00397{left:289.631085px;}
.x4b_c00397{left:297.521385px;}
.x6c_c00397{left:299.526135px;}
.x18_c00397{left:308.589585px;}
.x76_c00397{left:309.871635px;}
.x38_c00397{left:320.123085px;}
.x4c_c00397{left:321.266535px;}
.x4d_c00397{left:331.389285px;}
.x5b_c00397{left:332.626785px;}
.x56_c00397{left:341.606085px;}
.x2a_c00397{left:343.006935px;}
.x88_c00397{left:344.269185px;}
.x84_c00397{left:352.817835px;}
.x6d_c00397{left:354.426585px;}
.x2b_c00397{left:364.108785px;}
.xb_c00397{left:365.415585px;}
.x4e_c00397{left:376.518435px;}
.x48_c00397{left:378.270735px;}
.x6e_c00397{left:381.859485px;}
.x39_c00397{left:386.477835px;}
.x2c_c00397{left:387.532185px;}
.x77_c00397{left:390.517035px;}
.xc_c00397{left:397.887585px;}
.x6f_c00397{left:399.263685px;}
.x3f_c00397{left:408.901335px;}
.x19_c00397{left:411.237735px;}
.x85_c00397{left:412.356435px;}
.x2d_c00397{left:419.999235px;}
.x49_c00397{left:422.310885px;}
.x8d_c00397{left:423.573135px;}
.xd_c00397{left:431.300085px;}
.x2e_c00397{left:433.978035px;}
.x69_c00397{left:441.205035px;}
.x1a_c00397{left:442.744485px;}
.x5d_c00397{left:446.110485px;}
.x89_c00397{left:452.223735px;}
.x40_c00397{left:453.456285px;}
.x3a_c00397{left:463.494885px;}
.x7f_c00397{left:465.247185px;}
.x3b_c00397{left:467.222235px;}
.x78_c00397{left:474.667035px;}
.x5e_c00397{left:476.364885px;}
.x8b_c00397{left:479.567535px;}
.x2f_c00397{left:487.413285px;}
.x79_c00397{left:491.190135px;}
.x5f_c00397{left:493.244385px;}
.x1b_c00397{left:496.635135px;}
.x73_c00397{left:498.125085px;}
.x60_c00397{left:501.802935px;}
.x30_c00397{left:508.168635px;}
.x63_c00397{left:512.024685px;}
.x4f_c00397{left:520.479285px;}
.x61_c00397{left:522.063285px;}
.x64_c00397{left:526.745985px;}
.xe_c00397{left:530.344635px;}
.x62_c00397{left:531.592035px;}
.x41_c00397{left:541.328685px;}
.x45_c00397{left:542.432535px;}
.x1c_c00397{left:552.228585px;}
.x70_c00397{left:553.639335px;}
.xf_c00397{left:561.668235px;}
.x42_c00397{left:563.598735px;}
.x57_c00397{left:564.925335px;}
.x1d_c00397{left:573.949185px;}
.x71_c00397{left:575.359935px;}
.x1e_c00397{left:584.819385px;}
.x80_c00397{left:586.091535px;}
.x93_c00397{left:588.482385px;}
.x1f_c00397{left:591.199935px;}
.x58_c00397{left:595.907385px;}
.x7a_c00397{left:597.139935px;}
.x10_c00397{left:607.109235px;}
.x50_c00397{left:608.143785px;}
.x31_c00397{left:618.781335px;}
.x72_c00397{left:620.122785px;}
.x86_c00397{left:621.627585px;}
.x43_c00397{left:629.903985px;}
.x8e_c00397{left:635.809335px;}
.x51_c00397{left:640.591035px;}
.x20_c00397{left:641.670135px;}
.x52_c00397{left:644.496585px;}
.x44_c00397{left:650.377185px;}
.x11_c00397{left:651.787935px;}
.x5c_c00397{left:654.327285px;}
.x59_c00397{left:662.118585px;}
.x8f_c00397{left:663.385785px;}
.x74_c00397{left:664.425285px;}
.x90_c00397{left:667.687335px;}
.x12_c00397{left:673.756035px;}
.x65_c00397{left:674.929185px;}
.x91_c00397{left:681.195885px;}
.x3_c00397{left:685.091535px;}
.x21_c00397{left:695.639985px;}
.x4_c00397{left:696.862635px;}
.x13_c00397{left:698.624835px;}
.x6_c00397{left:705.361785px;}
.x7_c00397{left:707.267535px;}
.x5_c00397{left:718.900035px;}
.x5a_c00397{left:728.057535px;}
.x6a_c00397{left:730.062285px;}
.x32_c00397{left:740.378085px;}
.x92_c00397{left:743.125335px;}
@media print{
.v7_c00397{vertical-align:-2.552000pt;}
.v0_c00397{vertical-align:0.000000pt;}
.v3_c00397{vertical-align:1.249600pt;}
.v2_c00397{vertical-align:2.516800pt;}
.v6_c00397{vertical-align:12.689600pt;}
.v4_c00397{vertical-align:15.224000pt;}
.v8_c00397{vertical-align:22.822800pt;}
.v1_c00397{vertical-align:36.748800pt;}
.v5_c00397{vertical-align:39.300800pt;}
.ls9_c00397{letter-spacing:-2.624160pt;}
.ls30_c00397{letter-spacing:-2.199126pt;}
.lsf_c00397{letter-spacing:-2.168326pt;}
.ls31_c00397{letter-spacing:-2.137526pt;}
.ls2e_c00397{letter-spacing:-1.921926pt;}
.ls38_c00397{letter-spacing:-1.860326pt;}
.ls29_c00397{letter-spacing:-1.823360pt;}
.ls2d_c00397{letter-spacing:-1.774080pt;}
.ls32_c00397{letter-spacing:-1.675526pt;}
.ls3d_c00397{letter-spacing:-1.650880pt;}
.ls3c_c00397{letter-spacing:-1.638560pt;}
.ls42_c00397{letter-spacing:-1.576960pt;}
.ls41_c00397{letter-spacing:-1.527680pt;}
.ls3a_c00397{letter-spacing:-1.503040pt;}
.ls33_c00397{letter-spacing:-1.478400pt;}
.ls3f_c00397{letter-spacing:-1.447600pt;}
.ls15_c00397{letter-spacing:-1.349040pt;}
.ls46_c00397{letter-spacing:-1.336726pt;}
.ls40_c00397{letter-spacing:-1.331972pt;}
.ls14_c00397{letter-spacing:-1.164240pt;}
.ls21_c00397{letter-spacing:-1.108800pt;}
.ls23_c00397{letter-spacing:-1.028726pt;}
.ls25_c00397{letter-spacing:-0.868560pt;}
.ls1f_c00397{letter-spacing:-0.813120pt;}
.ls27_c00397{letter-spacing:-0.652960pt;}
.ls20_c00397{letter-spacing:-0.628320pt;}
.ls45_c00397{letter-spacing:-0.315956pt;}
.ls36_c00397{letter-spacing:-0.204442pt;}
.ls1a_c00397{letter-spacing:-0.135274pt;}
.ls8_c00397{letter-spacing:0.000000pt;}
.ls2_c00397{letter-spacing:0.108416pt;}
.ls2c_c00397{letter-spacing:0.309761pt;}
.ls1e_c00397{letter-spacing:0.526593pt;}
.ls7_c00397{letter-spacing:0.706255pt;}
.ls2f_c00397{letter-spacing:0.836354pt;}
.ls1b_c00397{letter-spacing:0.959200pt;}
.lsd_c00397{letter-spacing:1.016016pt;}
.ls39_c00397{letter-spacing:1.096656pt;}
.ls26_c00397{letter-spacing:1.240800pt;}
.ls10_c00397{letter-spacing:1.284800pt;}
.ls24_c00397{letter-spacing:1.469609pt;}
.ls22_c00397{letter-spacing:1.592800pt;}
.ls13_c00397{letter-spacing:1.663200pt;}
.ls12_c00397{letter-spacing:1.795200pt;}
.ls17_c00397{letter-spacing:1.830400pt;}
.ls44_c00397{letter-spacing:1.916628pt;}
.ls16_c00397{letter-spacing:1.927200pt;}
.ls43_c00397{letter-spacing:2.094400pt;}
.ls3b_c00397{letter-spacing:2.182400pt;}
.ls1_c00397{letter-spacing:2.440916pt;}
.ls18_c00397{letter-spacing:2.534400pt;}
.ls35_c00397{letter-spacing:2.571015pt;}
.ls1d_c00397{letter-spacing:2.825019pt;}
.lse_c00397{letter-spacing:2.895209pt;}
.ls2a_c00397{letter-spacing:2.921609pt;}
.ls0_c00397{letter-spacing:3.048047pt;}
.ls37_c00397{letter-spacing:3.054242pt;}
.ls11_c00397{letter-spacing:3.062400pt;}
.lsc_c00397{letter-spacing:3.097609pt;}
.lsb_c00397{letter-spacing:3.484800pt;}
.ls4_c00397{letter-spacing:12.566312pt;}
.ls28_c00397{letter-spacing:15.206400pt;}
.ls1c_c00397{letter-spacing:16.473776pt;}
.lsa_c00397{letter-spacing:19.008000pt;}
.ls6_c00397{letter-spacing:19.453055pt;}
.ls3e_c00397{letter-spacing:30.412976pt;}
.ls2b_c00397{letter-spacing:41.817600pt;}
.ls34_c00397{letter-spacing:43.084976pt;}
.ls19_c00397{letter-spacing:44.352176pt;}
.ls5_c00397{letter-spacing:55.115544pt;}
.ls3_c00397{letter-spacing:181.066629pt;}
.ws0_c00397{word-spacing:-15.488044pt;}
.ws2_c00397{word-spacing:-8.719744pt;}
.ws8_c00397{word-spacing:-1.362372pt;}
.ws9_c00397{word-spacing:0.000000pt;}
.ws5_c00397{word-spacing:0.929881pt;}
.ws7_c00397{word-spacing:3.636661pt;}
.ws3_c00397{word-spacing:7.867987pt;}
.ws4_c00397{word-spacing:8.610531pt;}
.ws6_c00397{word-spacing:33.206150pt;}
.ws1_c00397{word-spacing:93.282640pt;}
._27_c00397{margin-left:-15.972000pt;}
._a_c00397{margin-left:-10.965436pt;}
._24_c00397{margin-left:-9.912447pt;}
._20_c00397{margin-left:-7.358208pt;}
._e_c00397{margin-left:-5.990256pt;}
._11_c00397{margin-left:-2.332494pt;}
._13_c00397{width:1.678336pt;}
._14_c00397{width:3.221504pt;}
._10_c00397{width:5.274720pt;}
._9_c00397{width:6.692224pt;}
._8_c00397{width:7.727104pt;}
._3_c00397{width:8.673256pt;}
._5_c00397{width:10.470514pt;}
._b_c00397{width:11.584936pt;}
._1e_c00397{width:12.855524pt;}
._1d_c00397{width:14.125144pt;}
._1f_c00397{width:16.677760pt;}
._12_c00397{width:18.132742pt;}
._28_c00397{width:19.467008pt;}
._6_c00397{width:20.692095pt;}
._0_c00397{width:21.683327pt;}
._1_c00397{width:23.975356pt;}
._18_c00397{width:25.123356pt;}
._1a_c00397{width:28.183936pt;}
._21_c00397{width:29.317079pt;}
._15_c00397{width:30.643590pt;}
._16_c00397{width:32.277279pt;}
._7_c00397{width:34.321462pt;}
._22_c00397{width:35.745468pt;}
._2_c00397{width:37.543176pt;}
._4_c00397{width:39.390790pt;}
._f_c00397{width:40.550312pt;}
._17_c00397{width:41.941401pt;}
._1c_c00397{width:44.149781pt;}
._c_c00397{width:50.289878pt;}
._19_c00397{width:165.874720pt;}
._d_c00397{width:183.016670pt;}
._23_c00397{width:216.101600pt;}
._26_c00397{width:319.656334pt;}
._1b_c00397{width:622.291682pt;}
._25_c00397{width:740.581316pt;}
.fs26_c00397{font-size:15.206400pt;}
.fs18_c00397{font-size:16.473776pt;}
.fs1e_c00397{font-size:17.952000pt;}
.fs1a_c00397{font-size:18.304000pt;}
.fs21_c00397{font-size:18.480000pt;}
.fs25_c00397{font-size:18.656000pt;}
.fs4_c00397{font-size:19.008000pt;}
.fs17_c00397{font-size:19.184000pt;}
.fs0_c00397{font-size:19.712000pt;}
.fs15_c00397{font-size:22.176000pt;}
.fs3_c00397{font-size:22.352000pt;}
.fs1d_c00397{font-size:23.232000pt;}
.fs37_c00397{font-size:23.584000pt;}
.fs40_c00397{font-size:24.640000pt;}
.fs24_c00397{font-size:24.816000pt;}
.fs8_c00397{font-size:25.696000pt;}
.fs23_c00397{font-size:29.392176pt;}
.fs3e_c00397{font-size:29.744000pt;}
.fsf_c00397{font-size:30.272176pt;}
.fs3b_c00397{font-size:30.412976pt;}
.fs19_c00397{font-size:30.976000pt;}
.fs1f_c00397{font-size:31.680000pt;}
.fs22_c00397{font-size:31.856000pt;}
.fsb_c00397{font-size:33.264000pt;}
.fsd_c00397{font-size:34.496000pt;}
.fsa_c00397{font-size:35.904000pt;}
.fse_c00397{font-size:36.608000pt;}
.fs41_c00397{font-size:38.192176pt;}
.fsc_c00397{font-size:38.544000pt;}
.fs3c_c00397{font-size:41.360000pt;}
.fs29_c00397{font-size:41.817600pt;}
.fs3f_c00397{font-size:41.888000pt;}
.fs2f_c00397{font-size:42.240000pt;}
.fs20_c00397{font-size:42.592176pt;}
.fs38_c00397{font-size:42.944000pt;}
.fs30_c00397{font-size:43.084976pt;}
.fs2a_c00397{font-size:43.120000pt;}
.fs39_c00397{font-size:43.648000pt;}
.fs14_c00397{font-size:44.352176pt;}
.fs10_c00397{font-size:45.056000pt;}
.fs3a_c00397{font-size:46.816000pt;}
.fs32_c00397{font-size:47.168000pt;}
.fs2e_c00397{font-size:47.872176pt;}
.fs35_c00397{font-size:50.336000pt;}
.fs13_c00397{font-size:50.688000pt;}
.fs27_c00397{font-size:52.096000pt;}
.fs34_c00397{font-size:53.152176pt;}
.fs2b_c00397{font-size:54.912176pt;}
.fs33_c00397{font-size:55.616000pt;}
.fs36_c00397{font-size:57.200000pt;}
.fs7_c00397{font-size:57.904176pt;}
.fs28_c00397{font-size:58.432176pt;}
.fs11_c00397{font-size:58.960000pt;}
.fs1c_c00397{font-size:59.136000pt;}
.fs2d_c00397{font-size:61.072176pt;}
.fs9_c00397{font-size:61.248000pt;}
.fs6_c00397{font-size:61.952176pt;}
.fs12_c00397{font-size:62.128000pt;}
.fs2c_c00397{font-size:62.832176pt;}
.fs31_c00397{font-size:63.008000pt;}
.fs2_c00397{font-size:64.768000pt;}
.fs16_c00397{font-size:65.120000pt;}
.fs5_c00397{font-size:69.696000pt;}
.fs1_c00397{font-size:74.976000pt;}
.fs1b_c00397{font-size:81.664176pt;}
.fs3d_c00397{font-size:95.744176pt;}
.y0_c00397{bottom:0.000000pt;}
.y44_c00397{bottom:17.979320pt;}
.y43_c00397{bottom:36.032520pt;}
.y1_c00397{bottom:68.000000pt;}
.y42_c00397{bottom:92.744120pt;}
.y41_c00397{bottom:124.424120pt;}
.y40_c00397{bottom:148.184120pt;}
.y3e_c00397{bottom:148.817720pt;}
.y3c_c00397{bottom:151.035320pt;}
.y39_c00397{bottom:151.352120pt;}
.y3d_c00397{bottom:151.668920pt;}
.y3a_c00397{bottom:151.985720pt;}
.y3b_c00397{bottom:160.222520pt;}
.y3f_c00397{bottom:160.851720pt;}
.y37_c00397{bottom:177.325320pt;}
.y38_c00397{bottom:181.764920pt;}
.y36_c00397{bottom:182.715320pt;}
.y35_c00397{bottom:183.032120pt;}
.y34_c00397{bottom:233.715720pt;}
.y33_c00397{bottom:240.056120pt;}
.y32_c00397{bottom:264.762120pt;}
.y31_c00397{bottom:269.514120pt;}
.y30_c00397{bottom:269.835320pt;}
.y2f_c00397{bottom:298.664120pt;}
.y2e_c00397{bottom:328.755720pt;}
.y2d_c00397{bottom:350.936120pt;}
.y2c_c00397{bottom:354.416520pt;}
.y2b_c00397{bottom:357.588920pt;}
.y2a_c00397{bottom:386.096520pt;}
.y29_c00397{bottom:409.544120pt;}
.y28_c00397{bottom:414.608520pt;}
.y27_c00397{bottom:443.120520pt;}
.y26_c00397{bottom:470.682120pt;}
.y25_c00397{bottom:471.320120pt;}
.y20_c00397{bottom:499.827720pt;}
.y22_c00397{bottom:500.144520pt;}
.y1f_c00397{bottom:500.465720pt;}
.y24_c00397{bottom:500.782520pt;}
.y23_c00397{bottom:503.316920pt;}
.y21_c00397{bottom:503.633720pt;}
.y1e_c00397{bottom:529.611320pt;}
.y1d_c00397{bottom:558.440120pt;}
.y1c_c00397{bottom:582.200120pt;}
.y1a_c00397{bottom:587.264520pt;}
.y1b_c00397{bottom:587.585720pt;}
.y2_c00397{bottom:609.757320pt;}
.y19_c00397{bottom:643.342520pt;}
.y16_c00397{bottom:646.193720pt;}
.y18_c00397{bottom:646.827320pt;}
.y17_c00397{bottom:647.144120pt;}
.y13_c00397{bottom:673.438520pt;}
.y11_c00397{bottom:675.651720pt;}
.y12_c00397{bottom:675.972920pt;}
.y15_c00397{bottom:682.625720pt;}
.ye_c00397{bottom:704.797320pt;}
.y14_c00397{bottom:705.118520pt;}
.y10_c00397{bottom:705.435320pt;}
.yf_c00397{bottom:710.504120pt;}
.yc_c00397{bottom:761.825720pt;}
.y9_c00397{bottom:762.142520pt;}
.yd_c00397{bottom:762.454920pt;}
.yb_c00397{bottom:762.771720pt;}
.ya_c00397{bottom:764.676920pt;}
.y8_c00397{bottom:791.288120pt;}
.y7_c00397{bottom:821.696520pt;}
.y6_c00397{bottom:834.051720pt;}
.y5_c00397{bottom:841.342520pt;}
.y4_c00397{bottom:852.426120pt;}
.y3_c00397{bottom:956.336520pt;}
.h28_c00397{height:10.127462pt;}
.h19_c00397{height:10.971535pt;}
.h6_c00397{height:12.659328pt;}
.h1c_c00397{height:17.964375pt;}
.h1f_c00397{height:18.723375pt;}
.h18_c00397{height:18.818680pt;}
.h27_c00397{height:19.457625pt;}
.h3e_c00397{height:20.255042pt;}
.h2_c00397{height:20.559000pt;}
.h1e_c00397{height:22.800938pt;}
.h16_c00397{height:23.128875pt;}
.h5_c00397{height:23.312438pt;}
.h25_c00397{height:24.343430pt;}
.h26_c00397{height:24.355547pt;}
.h46_c00397{height:25.698750pt;}
.ha_c00397{height:26.800125pt;}
.h2b_c00397{height:27.850522pt;}
.h33_c00397{height:28.694594pt;}
.h24_c00397{height:28.846813pt;}
.h15_c00397{height:29.538549pt;}
.h43_c00397{height:31.022063pt;}
.h23_c00397{height:31.264922pt;}
.h1a_c00397{height:32.307000pt;}
.h20_c00397{height:33.041250pt;}
.h3f_c00397{height:33.855938pt;}
.hd_c00397{height:34.693313pt;}
.hc_c00397{height:35.237813pt;}
.hf_c00397{height:35.978250pt;}
.h10_c00397{height:36.894000pt;}
.h47_c00397{height:39.833246pt;}
.he_c00397{height:40.200188pt;}
.h41_c00397{height:40.592578pt;}
.h32_c00397{height:41.456250pt;}
.h22_c00397{height:41.801891pt;}
.h2c_c00397{height:42.319922pt;}
.h3a_c00397{height:42.838125pt;}
.h3d_c00397{height:43.529235pt;}
.h45_c00397{height:43.687875pt;}
.h44_c00397{height:44.220000pt;}
.h38_c00397{height:44.789250pt;}
.h3c_c00397{height:46.292813pt;}
.h3b_c00397{height:48.827625pt;}
.h14_c00397{height:49.747500pt;}
.h31_c00397{height:49.929184pt;}
.h36_c00397{height:52.498875pt;}
.h2d_c00397{height:52.866000pt;}
.h2e_c00397{height:53.893298pt;}
.h29_c00397{height:54.334500pt;}
.h35_c00397{height:55.436059pt;}
.h30_c00397{height:59.939001pt;}
.hb_c00397{height:60.111562pt;}
.h9_c00397{height:60.392246pt;}
.h8_c00397{height:60.802673pt;}
.h2a_c00397{height:60.942934pt;}
.h1b_c00397{height:61.361162pt;}
.h12_c00397{height:61.493438pt;}
.h2f_c00397{height:61.666345pt;}
.h34_c00397{height:61.838906pt;}
.h13_c00397{height:63.319473pt;}
.h39_c00397{height:63.337073pt;}
.h4_c00397{height:63.566250pt;}
.h17_c00397{height:63.911719pt;}
.h7_c00397{height:68.402813pt;}
.h3_c00397{height:73.584844pt;}
.h21_c00397{height:75.279050pt;}
.h40_c00397{height:80.148923pt;}
.h37_c00397{height:82.480612pt;}
.h11_c00397{height:83.740800pt;}
.h1d_c00397{height:85.173184pt;}
.h42_c00397{height:99.858184pt;}
.h1_c00397{height:986.666667pt;}
.h0_c00397{height:1122.666667pt;}
.w1_c00397{width:689.333333pt;}
.w0_c00397{width:793.333333pt;}
.x0_c00397{left:0.000000pt;}
.x2_c00397{left:49.017453pt;}
.x1_c00397{left:52.000000pt;}
.x14_c00397{left:88.555853pt;}
.x53_c00397{left:89.475453pt;}
.x96_c00397{left:90.650253pt;}
.x7b_c00397{left:92.942653pt;}
.x33_c00397{left:98.367853pt;}
.x8c_c00397{left:99.929853pt;}
.x54_c00397{left:107.352653pt;}
.x81_c00397{left:108.259053pt;}
.x34_c00397{left:109.447053pt;}
.x82_c00397{left:114.775453pt;}
.x46_c00397{left:117.235053pt;}
.x97_c00397{left:118.959853pt;}
.x3c_c00397{left:126.769853pt;}
.x35_c00397{left:127.975453pt;}
.x8_c00397{left:136.111053pt;}
.x47_c00397{left:137.945853pt;}
.x95_c00397{left:142.121453pt;}
.x22_c00397{left:145.852653pt;}
.x83_c00397{left:147.273853pt;}
.x66_c00397{left:153.315053pt;}
.x15_c00397{left:156.311453pt;}
.x8a_c00397{left:157.591853pt;}
.x36_c00397{left:159.026253pt;}
.x37_c00397{left:166.946253pt;}
.x16_c00397{left:175.460253pt;}
.x6b_c00397{left:177.224653pt;}
.x98_c00397{left:183.305453pt;}
.x25_c00397{left:186.381053pt;}
.x94_c00397{left:189.883453pt;}
.x67_c00397{left:195.775053pt;}
.x7c_c00397{left:196.954253pt;}
.x26_c00397{left:198.093853pt;}
.x23_c00397{left:205.015053pt;}
.x3d_c00397{left:206.093053pt;}
.x27_c00397{left:215.795053pt;}
.x75_c00397{left:216.798253pt;}
.x68_c00397{left:219.535053pt;}
.x9_c00397{left:225.131853pt;}
.x7d_c00397{left:226.187853pt;}
.x55_c00397{left:227.736653pt;}
.x7e_c00397{left:229.351453pt;}
.x87_c00397{left:234.415853pt;}
.x3e_c00397{left:235.819453pt;}
.x28_c00397{left:240.712253pt;}
.x4a_c00397{left:243.845053pt;}
.x17_c00397{left:245.609453pt;}
.x24_c00397{left:248.064653pt;}
.xa_c00397{left:255.197053pt;}
.x29_c00397{left:257.449853pt;}
.x4b_c00397{left:264.463453pt;}
.x6c_c00397{left:266.245453pt;}
.x18_c00397{left:274.301853pt;}
.x76_c00397{left:275.441453pt;}
.x38_c00397{left:284.553853pt;}
.x4c_c00397{left:285.570253pt;}
.x4d_c00397{left:294.568253pt;}
.x5b_c00397{left:295.668253pt;}
.x56_c00397{left:303.649853pt;}
.x2a_c00397{left:304.895053pt;}
.x88_c00397{left:306.017053pt;}
.x84_c00397{left:313.615853pt;}
.x6d_c00397{left:315.045853pt;}
.x2b_c00397{left:323.652253pt;}
.xb_c00397{left:324.813853pt;}
.x4e_c00397{left:334.683053pt;}
.x48_c00397{left:336.240653pt;}
.x6e_c00397{left:339.430653pt;}
.x39_c00397{left:343.535853pt;}
.x2c_c00397{left:344.473053pt;}
.x77_c00397{left:347.126253pt;}
.xc_c00397{left:353.677853pt;}
.x6f_c00397{left:354.901053pt;}
.x3f_c00397{left:363.467853pt;}
.x19_c00397{left:365.544653pt;}
.x85_c00397{left:366.539053pt;}
.x2d_c00397{left:373.332653pt;}
.x49_c00397{left:375.387453pt;}
.x8d_c00397{left:376.509453pt;}
.xd_c00397{left:383.377853pt;}
.x2e_c00397{left:385.758253pt;}
.x69_c00397{left:392.182253pt;}
.x1a_c00397{left:393.550653pt;}
.x5d_c00397{left:396.542653pt;}
.x89_c00397{left:401.976653pt;}
.x40_c00397{left:403.072253pt;}
.x3a_c00397{left:411.995453pt;}
.x7f_c00397{left:413.553053pt;}
.x3b_c00397{left:415.308653pt;}
.x78_c00397{left:421.926253pt;}
.x5e_c00397{left:423.435453pt;}
.x8b_c00397{left:426.282253pt;}
.x2f_c00397{left:433.256253pt;}
.x79_c00397{left:436.613453pt;}
.x5f_c00397{left:438.439453pt;}
.x1b_c00397{left:441.453453pt;}
.x73_c00397{left:442.777853pt;}
.x60_c00397{left:446.047053pt;}
.x30_c00397{left:451.705453pt;}
.x63_c00397{left:455.133053pt;}
.x4f_c00397{left:462.648253pt;}
.x61_c00397{left:464.056253pt;}
.x64_c00397{left:468.218653pt;}
.xe_c00397{left:471.417453pt;}
.x62_c00397{left:472.526253pt;}
.x41_c00397{left:481.181053pt;}
.x45_c00397{left:482.162253pt;}
.x1c_c00397{left:490.869853pt;}
.x70_c00397{left:492.123853pt;}
.xf_c00397{left:499.260653pt;}
.x42_c00397{left:500.976653pt;}
.x57_c00397{left:502.155853pt;}
.x1d_c00397{left:510.177053pt;}
.x71_c00397{left:511.431053pt;}
.x1e_c00397{left:519.839453pt;}
.x80_c00397{left:520.970253pt;}
.x93_c00397{left:523.095453pt;}
.x1f_c00397{left:525.511053pt;}
.x58_c00397{left:529.695453pt;}
.x7a_c00397{left:530.791053pt;}
.x10_c00397{left:539.652653pt;}
.x50_c00397{left:540.572253pt;}
.x31_c00397{left:550.027853pt;}
.x72_c00397{left:551.220253pt;}
.x86_c00397{left:552.557853pt;}
.x43_c00397{left:559.914653pt;}
.x8e_c00397{left:565.163853pt;}
.x51_c00397{left:569.414253pt;}
.x20_c00397{left:570.373453pt;}
.x52_c00397{left:572.885853pt;}
.x44_c00397{left:578.113053pt;}
.x11_c00397{left:579.367053pt;}
.x5c_c00397{left:581.624253pt;}
.x59_c00397{left:588.549853pt;}
.x8f_c00397{left:589.676253pt;}
.x74_c00397{left:590.600253pt;}
.x90_c00397{left:593.499853pt;}
.x12_c00397{left:598.894253pt;}
.x65_c00397{left:599.937053pt;}
.x91_c00397{left:605.507453pt;}
.x3_c00397{left:608.970253pt;}
.x21_c00397{left:618.346653pt;}
.x4_c00397{left:619.433453pt;}
.x13_c00397{left:620.999853pt;}
.x6_c00397{left:626.988253pt;}
.x7_c00397{left:628.682253pt;}
.x5_c00397{left:639.022253pt;}
.x5a_c00397{left:647.162253pt;}
.x6a_c00397{left:648.944253pt;}
.x32_c00397{left:658.113853pt;}
.x92_c00397{left:660.555853pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3e63dabec2b19959a8349e30.woff2')format("woff");}.ff1_c00398{font-family:ff1_c00398;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00398;src:url('chunks/assets/font_148702a0d0f7d34f3dcde78d.woff2')format("woff");}.ff2_c00398{font-family:ff2_c00398;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00398;src:url('chunks/assets/font_2ea3e5abe20b933af3b54317.woff2')format("woff");}.ff3_c00398{font-family:ff3_c00398;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00398;src:url('chunks/assets/font_36a555621df4437612262460.woff2')format("woff");}.ff4_c00398{font-family:ff4_c00398;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00398;src:url('chunks/assets/font_4f7c7e4c3fe63342e31c4247.woff2')format("woff");}.ff5_c00398{font-family:ff5_c00398;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3f_c00398{transform:matrix(0.025003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.025003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.025003,0.000000,0.000000,0.250000,0,0);}
.m4_c00398{transform:matrix(0.065549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065549,0.000000,0.000000,0.250000,0,0);}
.m22_c00398{transform:matrix(0.072307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072307,0.000000,0.000000,0.250000,0,0);}
.m94_c00398{transform:matrix(0.072917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072917,0.000000,0.000000,0.250000,0,0);}
.mdb_c00398{transform:matrix(0.121273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121273,0.000000,0.000000,0.250000,0,0);}
.m3d_c00398{transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);}
.m55_c00398{transform:matrix(0.132895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132895,0.000000,0.000000,0.250000,0,0);}
.m7b_c00398{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m84_c00398{transform:matrix(0.152675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152675,0.000000,0.000000,0.250000,0,0);}
.m8a_c00398{transform:matrix(0.159099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159099,0.000000,0.000000,0.250000,0,0);}
.m93_c00398{transform:matrix(0.159723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159723,0.000000,0.000000,0.250000,0,0);}
.m9c_c00398{transform:matrix(0.162725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162725,0.000000,0.000000,0.250000,0,0);}
.mb6_c00398{transform:matrix(0.166061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166061,0.000000,0.000000,0.250000,0,0);}
.mb5_c00398{transform:matrix(0.168349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168349,0.000000,0.000000,0.250000,0,0);}
.m3_c00398{transform:matrix(0.171274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171274,0.000000,0.000000,0.250000,0,0);}
.mcd_c00398{transform:matrix(0.173610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173610,0.000000,0.000000,0.250000,0,0);}
.m37_c00398{transform:matrix(0.176469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176469,0.000000,0.000000,0.250000,0,0);}
.md6_c00398{transform:matrix(0.180182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180182,0.000000,0.000000,0.250000,0,0);}
.mb8_c00398{transform:matrix(0.180341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180341,0.000000,0.000000,0.250000,0,0);}
.ma7_c00398{transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);}
.m7a_c00398{transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);}
.m21_c00398{transform:matrix(0.187527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187527,0.000000,0.000000,0.250000,0,0);}
.m95_c00398{transform:matrix(0.189814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189814,0.000000,0.000000,0.250000,0,0);}
.m7c_c00398{transform:matrix(0.190476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190476,0.000000,0.000000,0.250000,0,0);}
.m78_c00398{transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);}
.ma6_c00398{transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);}
.m8f_c00398{transform:matrix(0.194935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194935,0.000000,0.000000,0.250000,0,0);}
.ma8_c00398{transform:matrix(0.197222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197222,0.000000,0.000000,0.250000,0,0);}
.m79_c00398{transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);}
.m3c_c00398{transform:matrix(0.200001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200001,0.000000,0.000000,0.250000,0,0);}
.mcc_c00398{transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);}
.ma5_c00398{transform:matrix(0.204861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204861,0.000000,0.000000,0.250000,0,0);}
.mbe_c00398{transform:matrix(0.206398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206398,0.000000,0.000000,0.250000,0,0);}
.md1_c00398{transform:matrix(0.210938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210938,0.000000,0.000000,0.250000,0,0);}
.md5_c00398{transform:matrix(0.215774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215774,0.000000,0.000000,0.250000,0,0);}
.m9b_c00398{transform:matrix(0.219648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219648,0.000000,0.000000,0.250000,0,0);}
.mdc_c00398{transform:matrix(0.220076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220076,0.000000,0.000000,0.250000,0,0);}
.m30_c00398{transform:matrix(0.223475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223475,0.000000,0.000000,0.250000,0,0);}
.m1a_c00398{transform:matrix(0.225409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225409,0.000000,0.000000,0.250000,0,0);}
.md9_c00398{transform:matrix(0.227263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227263,0.000000,0.000000,0.250000,0,0);}
.m38_c00398{transform:matrix(0.229711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229711,0.000000,0.000000,0.250000,0,0);}
.m7_c00398{transform:matrix(0.238236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238236,0.000000,0.000000,0.250000,0,0);}
.m0_c00398{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2_c00398{transform:matrix(0.252141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252141,0.000000,0.000000,0.250000,0,0);}
.m13_c00398{transform:matrix(0.254018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254018,0.000000,0.000000,0.250000,0,0);}
.m32_c00398{transform:matrix(0.254727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254727,0.000000,0.000000,0.250000,0,0);}
.m2f_c00398{transform:matrix(0.255346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255346,0.000000,0.000000,0.250000,0,0);}
.m18_c00398{transform:matrix(0.256912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256912,0.000000,0.000000,0.250000,0,0);}
.ma2_c00398{transform:matrix(0.258778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258778,0.000000,0.000000,0.250000,0,0);}
.m5c_c00398{transform:matrix(0.260083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260083,0.000000,0.000000,0.250000,0,0);}
.m11_c00398{transform:matrix(0.262016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262016,0.000000,0.000000,0.250000,0,0);}
.m15_c00398{transform:matrix(0.262553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262553,0.000000,0.000000,0.250000,0,0);}
.mbb_c00398{transform:matrix(0.262630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262630,0.000000,0.000000,0.250000,0,0);}
.mb9_c00398{transform:matrix(0.263359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263359,0.000000,0.000000,0.250000,0,0);}
.m52_c00398{transform:matrix(0.263529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263529,0.000000,0.000000,0.250000,0,0);}
.mf_c00398{transform:matrix(0.264700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264700,0.000000,0.000000,0.250000,0,0);}
.m1b_c00398{transform:matrix(0.265037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265037,0.000000,0.000000,0.250000,0,0);}
.m59_c00398{transform:matrix(0.265849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265849,0.000000,0.000000,0.250000,0,0);}
.md0_c00398{transform:matrix(0.267249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267249,0.000000,0.000000,0.250000,0,0);}
.maa_c00398{transform:matrix(0.267495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267495,0.000000,0.000000,0.250000,0,0);}
.m27_c00398{transform:matrix(0.268301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268301,0.000000,0.000000,0.250000,0,0);}
.m1f_c00398{transform:matrix(0.268701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268701,0.000000,0.000000,0.250000,0,0);}
.m4f_c00398{transform:matrix(0.269715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269715,0.000000,0.000000,0.250000,0,0);}
.m57_c00398{transform:matrix(0.269908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269908,0.000000,0.000000,0.250000,0,0);}
.m48_c00398{transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);}
.mc7_c00398{transform:matrix(0.272100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272100,0.000000,0.000000,0.250000,0,0);}
.m63_c00398{transform:matrix(0.273163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273163,0.000000,0.000000,0.250000,0,0);}
.m92_c00398{transform:matrix(0.273323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273323,0.000000,0.000000,0.250000,0,0);}
.m9a_c00398{transform:matrix(0.273419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273419,0.000000,0.000000,0.250000,0,0);}
.m12_c00398{transform:matrix(0.273934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273934,0.000000,0.000000,0.250000,0,0);}
.m53_c00398{transform:matrix(0.274283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274283,0.000000,0.000000,0.250000,0,0);}
.m51_c00398{transform:matrix(0.274532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274532,0.000000,0.000000,0.250000,0,0);}
.m3a_c00398{transform:matrix(0.274704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274704,0.000000,0.000000,0.250000,0,0);}
.m2c_c00398{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.mac_c00398{transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);}
.m9e_c00398{transform:matrix(0.276874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276874,0.000000,0.000000,0.250000,0,0);}
.m62_c00398{transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);}
.m6d_c00398{transform:matrix(0.277254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277254,0.000000,0.000000,0.250000,0,0);}
.m36_c00398{transform:matrix(0.279348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279348,0.000000,0.000000,0.250000,0,0);}
.m28_c00398{transform:matrix(0.279868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279868,0.000000,0.000000,0.250000,0,0);}
.m20_c00398{transform:matrix(0.279998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279998,0.000000,0.000000,0.250000,0,0);}
.m41_c00398{transform:matrix(0.280064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280064,0.000000,0.000000,0.250000,0,0);}
.m58_c00398{transform:matrix(0.281059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281059,0.000000,0.000000,0.250000,0,0);}
.m4c_c00398{transform:matrix(0.282691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282691,0.000000,0.000000,0.250000,0,0);}
.m6a_c00398{transform:matrix(0.283890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283890,0.000000,0.000000,0.250000,0,0);}
.mdd_c00398{transform:matrix(0.284125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284125,0.000000,0.000000,0.250000,0,0);}
.m33_c00398{transform:matrix(0.284592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284592,0.000000,0.000000,0.250000,0,0);}
.mc_c00398{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00398{transform:matrix(0.285823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285823,0.000000,0.000000,0.250000,0,0);}
.m5d_c00398{transform:matrix(0.287463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287463,0.000000,0.000000,0.250000,0,0);}
.m8b_c00398{transform:matrix(0.287683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287683,0.000000,0.000000,0.250000,0,0);}
.m71_c00398{transform:matrix(0.288127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288127,0.000000,0.000000,0.250000,0,0);}
.mba_c00398{transform:matrix(0.288509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288509,0.000000,0.000000,0.250000,0,0);}
.mb0_c00398{transform:matrix(0.288609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288609,0.000000,0.000000,0.250000,0,0);}
.m8d_c00398{transform:matrix(0.288767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288767,0.000000,0.000000,0.250000,0,0);}
.mb_c00398{transform:matrix(0.290632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290632,0.000000,0.000000,0.250000,0,0);}
.mb4_c00398{transform:matrix(0.290850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290850,0.000000,0.000000,0.250000,0,0);}
.m65_c00398{transform:matrix(0.292012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292012,0.000000,0.000000,0.250000,0,0);}
.mcb_c00398{transform:matrix(0.292504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292504,0.000000,0.000000,0.250000,0,0);}
.mca_c00398{transform:matrix(0.293564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293564,0.000000,0.000000,0.250000,0,0);}
.maf_c00398{transform:matrix(0.293702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293702,0.000000,0.000000,0.250000,0,0);}
.m34_c00398{transform:matrix(0.294524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294524,0.000000,0.000000,0.250000,0,0);}
.m4d_c00398{transform:matrix(0.294592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294592,0.000000,0.000000,0.250000,0,0);}
.m64_c00398{transform:matrix(0.294792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294792,0.000000,0.000000,0.250000,0,0);}
.m73_c00398{transform:matrix(0.295035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295035,0.000000,0.000000,0.250000,0,0);}
.m81_c00398{transform:matrix(0.295079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295079,0.000000,0.000000,0.250000,0,0);}
.mce_c00398{transform:matrix(0.295318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295318,0.000000,0.000000,0.250000,0,0);}
.m66_c00398{transform:matrix(0.295379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295379,0.000000,0.000000,0.250000,0,0);}
.ma0_c00398{transform:matrix(0.295532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295532,0.000000,0.000000,0.250000,0,0);}
.m24_c00398{transform:matrix(0.295588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295588,0.000000,0.000000,0.250000,0,0);}
.mbd_c00398{transform:matrix(0.295995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295995,0.000000,0.000000,0.250000,0,0);}
.m4b_c00398{transform:matrix(0.296763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296763,0.000000,0.000000,0.250000,0,0);}
.mb7_c00398{transform:matrix(0.297383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297383,0.000000,0.000000,0.250000,0,0);}
.m74_c00398{transform:matrix(0.298376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298376,0.000000,0.000000,0.250000,0,0);}
.mae_c00398{transform:matrix(0.299221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299221,0.000000,0.000000,0.250000,0,0);}
.mc9_c00398{transform:matrix(0.299385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299385,0.000000,0.000000,0.250000,0,0);}
.mc4_c00398{transform:matrix(0.299415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299415,0.000000,0.000000,0.250000,0,0);}
.m5b_c00398{transform:matrix(0.299848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299848,0.000000,0.000000,0.250000,0,0);}
.mad_c00398{transform:matrix(0.300657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300657,0.000000,0.000000,0.250000,0,0);}
.m70_c00398{transform:matrix(0.300913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300913,0.000000,0.000000,0.250000,0,0);}
.m87_c00398{transform:matrix(0.300949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300949,0.000000,0.000000,0.250000,0,0);}
.m75_c00398{transform:matrix(0.301263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301263,0.000000,0.000000,0.250000,0,0);}
.mda_c00398{transform:matrix(0.301529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301529,0.000000,0.000000,0.250000,0,0);}
.mc8_c00398{transform:matrix(0.301562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301562,0.000000,0.000000,0.250000,0,0);}
.m90_c00398{transform:matrix(0.301756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301756,0.000000,0.000000,0.250000,0,0);}
.m29_c00398{transform:matrix(0.302027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302027,0.000000,0.000000,0.250000,0,0);}
.m16_c00398{transform:matrix(0.302420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302420,0.000000,0.000000,0.250000,0,0);}
.m19_c00398{transform:matrix(0.302613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302613,0.000000,0.000000,0.250000,0,0);}
.m14_c00398{transform:matrix(0.302640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302640,0.000000,0.000000,0.250000,0,0);}
.m23_c00398{transform:matrix(0.302655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302655,0.000000,0.000000,0.250000,0,0);}
.m6f_c00398{transform:matrix(0.302771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302771,0.000000,0.000000,0.250000,0,0);}
.m6_c00398{transform:matrix(0.302897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302897,0.000000,0.000000,0.250000,0,0);}
.m26_c00398{transform:matrix(0.303918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303918,0.000000,0.000000,0.250000,0,0);}
.md3_c00398{transform:matrix(0.304114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304114,0.000000,0.000000,0.250000,0,0);}
.md7_c00398{transform:matrix(0.304148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304148,0.000000,0.000000,0.250000,0,0);}
.m99_c00398{transform:matrix(0.304311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304311,0.000000,0.000000,0.250000,0,0);}
.md_c00398{transform:matrix(0.305069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305069,0.000000,0.000000,0.250000,0,0);}
.m96_c00398{transform:matrix(0.305210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305210,0.000000,0.000000,0.250000,0,0);}
.m39_c00398{transform:matrix(0.306390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306390,0.000000,0.000000,0.250000,0,0);}
.m9_c00398{transform:matrix(0.306542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306542,0.000000,0.000000,0.250000,0,0);}
.m9d_c00398{transform:matrix(0.306564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306564,0.000000,0.000000,0.250000,0,0);}
.m6c_c00398{transform:matrix(0.306596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306596,0.000000,0.000000,0.250000,0,0);}
.m1d_c00398{transform:matrix(0.306667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306667,0.000000,0.000000,0.250000,0,0);}
.m1_c00398{transform:matrix(0.307689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307689,0.000000,0.000000,0.250000,0,0);}
.m2b_c00398{transform:matrix(0.308072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308072,0.000000,0.000000,0.250000,0,0);}
.md8_c00398{transform:matrix(0.309078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309078,0.000000,0.000000,0.250000,0,0);}
.m44_c00398{transform:matrix(0.309745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309745,0.000000,0.000000,0.250000,0,0);}
.m67_c00398{transform:matrix(0.310742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310742,0.000000,0.000000,0.250000,0,0);}
.ma_c00398{transform:matrix(0.312236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312236,0.000000,0.000000,0.250000,0,0);}
.ma1_c00398{transform:matrix(0.312396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312396,0.000000,0.000000,0.250000,0,0);}
.m42_c00398{transform:matrix(0.312775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312775,0.000000,0.000000,0.250000,0,0);}
.mbc_c00398{transform:matrix(0.312820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312820,0.000000,0.000000,0.250000,0,0);}
.m89_c00398{transform:matrix(0.313118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313118,0.000000,0.000000,0.250000,0,0);}
.m4e_c00398{transform:matrix(0.313283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313283,0.000000,0.000000,0.250000,0,0);}
.m82_c00398{transform:matrix(0.313612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313612,0.000000,0.000000,0.250000,0,0);}
.m47_c00398{transform:matrix(0.316710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316710,0.000000,0.000000,0.250000,0,0);}
.m56_c00398{transform:matrix(0.317599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317599,0.000000,0.000000,0.250000,0,0);}
.mab_c00398{transform:matrix(0.318086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318086,0.000000,0.000000,0.250000,0,0);}
.mcf_c00398{transform:matrix(0.318157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318157,0.000000,0.000000,0.250000,0,0);}
.m5e_c00398{transform:matrix(0.318316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318316,0.000000,0.000000,0.250000,0,0);}
.m17_c00398{transform:matrix(0.320403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320403,0.000000,0.000000,0.250000,0,0);}
.m86_c00398{transform:matrix(0.320904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320904,0.000000,0.000000,0.250000,0,0);}
.m69_c00398{transform:matrix(0.321174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321174,0.000000,0.000000,0.250000,0,0);}
.m61_c00398{transform:matrix(0.323590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323590,0.000000,0.000000,0.250000,0,0);}
.mb3_c00398{transform:matrix(0.324400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324400,0.000000,0.000000,0.250000,0,0);}
.m54_c00398{transform:matrix(0.324609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324609,0.000000,0.000000,0.250000,0,0);}
.m77_c00398{transform:matrix(0.324758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324758,0.000000,0.000000,0.250000,0,0);}
.m60_c00398{transform:matrix(0.325051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325051,0.000000,0.000000,0.250000,0,0);}
.m80_c00398{transform:matrix(0.325582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325582,0.000000,0.000000,0.250000,0,0);}
.mb2_c00398{transform:matrix(0.328183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328183,0.000000,0.000000,0.250000,0,0);}
.m25_c00398{transform:matrix(0.328605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328605,0.000000,0.000000,0.250000,0,0);}
.mc1_c00398{transform:matrix(0.329267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329267,0.000000,0.000000,0.250000,0,0);}
.m97_c00398{transform:matrix(0.330806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330806,0.000000,0.000000,0.250000,0,0);}
.m85_c00398{transform:matrix(0.331140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331140,0.000000,0.000000,0.250000,0,0);}
.m4a_c00398{transform:matrix(0.331396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331396,0.000000,0.000000,0.250000,0,0);}
.m5_c00398{transform:matrix(0.331520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331520,0.000000,0.000000,0.250000,0,0);}
.m2e_c00398{transform:matrix(0.332728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332728,0.000000,0.000000,0.250000,0,0);}
.m8e_c00398{transform:matrix(0.334463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334463,0.000000,0.000000,0.250000,0,0);}
.mc2_c00398{transform:matrix(0.334879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334879,0.000000,0.000000,0.250000,0,0);}
.md4_c00398{transform:matrix(0.335296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335296,0.000000,0.000000,0.250000,0,0);}
.m68_c00398{transform:matrix(0.335747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335747,0.000000,0.000000,0.250000,0,0);}
.mbf_c00398{transform:matrix(0.335776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335776,0.000000,0.000000,0.250000,0,0);}
.m31_c00398{transform:matrix(0.336103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336103,0.000000,0.000000,0.250000,0,0);}
.m6e_c00398{transform:matrix(0.336185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336185,0.000000,0.000000,0.250000,0,0);}
.md2_c00398{transform:matrix(0.336336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336336,0.000000,0.000000,0.250000,0,0);}
.ma3_c00398{transform:matrix(0.337119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337119,0.000000,0.000000,0.250000,0,0);}
.m2d_c00398{transform:matrix(0.337388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337388,0.000000,0.000000,0.250000,0,0);}
.m3b_c00398{transform:matrix(0.337814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337814,0.000000,0.000000,0.250000,0,0);}
.m2a_c00398{transform:matrix(0.338983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338983,0.000000,0.000000,0.250000,0,0);}
.ma4_c00398{transform:matrix(0.341855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341855,0.000000,0.000000,0.250000,0,0);}
.m46_c00398{transform:matrix(0.343636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343636,0.000000,0.000000,0.250000,0,0);}
.m7d_c00398{transform:matrix(0.346297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346297,0.000000,0.000000,0.250000,0,0);}
.m91_c00398{transform:matrix(0.347593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347593,0.000000,0.000000,0.250000,0,0);}
.me_c00398{transform:matrix(0.349720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349720,0.000000,0.000000,0.250000,0,0);}
.ma9_c00398{transform:matrix(0.349884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349884,0.000000,0.000000,0.250000,0,0);}
.m6b_c00398{transform:matrix(0.350025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350025,0.000000,0.000000,0.250000,0,0);}
.m49_c00398{transform:matrix(0.352877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352877,0.000000,0.000000,0.250000,0,0);}
.m1c_c00398{transform:matrix(0.354164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354164,0.000000,0.000000,0.250000,0,0);}
.m7e_c00398{transform:matrix(0.359659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359659,0.000000,0.000000,0.250000,0,0);}
.m5a_c00398{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);}
.m8c_c00398{transform:matrix(0.360508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360508,0.000000,0.000000,0.250000,0,0);}
.mc5_c00398{transform:matrix(0.360855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360855,0.000000,0.000000,0.250000,0,0);}
.mc3_c00398{transform:matrix(0.365989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365989,0.000000,0.000000,0.250000,0,0);}
.m72_c00398{transform:matrix(0.366428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366428,0.000000,0.000000,0.250000,0,0);}
.m76_c00398{transform:matrix(0.366855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366855,0.000000,0.000000,0.250000,0,0);}
.m50_c00398{transform:matrix(0.372884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372884,0.000000,0.000000,0.250000,0,0);}
.mc6_c00398{transform:matrix(0.372896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372896,0.000000,0.000000,0.250000,0,0);}
.m88_c00398{transform:matrix(0.378207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378207,0.000000,0.000000,0.250000,0,0);}
.m5f_c00398{transform:matrix(0.379873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379873,0.000000,0.000000,0.250000,0,0);}
.m83_c00398{transform:matrix(0.381047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381047,0.000000,0.000000,0.250000,0,0);}
.m1e_c00398{transform:matrix(0.390747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390747,0.000000,0.000000,0.250000,0,0);}
.m7f_c00398{transform:matrix(0.390803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390803,0.000000,0.000000,0.250000,0,0);}
.m35_c00398{transform:matrix(0.392972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392972,0.000000,0.000000,0.250000,0,0);}
.m43_c00398{transform:matrix(0.397908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397908,0.000000,0.000000,0.250000,0,0);}
.m3e_c00398{transform:matrix(0.399998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399998,0.000000,0.000000,0.250000,0,0);}
.m8_c00398{transform:matrix(0.406049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406049,0.000000,0.000000,0.250000,0,0);}
.mc0_c00398{transform:matrix(0.412604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412604,0.000000,0.000000,0.250000,0,0);}
.mb1_c00398{transform:matrix(0.414983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414983,0.000000,0.000000,0.250000,0,0);}
.m45_c00398{transform:matrix(0.417221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417221,0.000000,0.000000,0.250000,0,0);}
.m10_c00398{transform:matrix(0.422620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422620,0.000000,0.000000,0.250000,0,0);}
.m40_c00398{transform:matrix(0.429934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429934,0.000000,0.000000,0.250000,0,0);}
.m98_c00398{transform:matrix(0.445769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445769,0.000000,0.000000,0.250000,0,0);}
.v1_c00398{vertical-align:-7.145820px;}
.v0_c00398{vertical-align:0.000000px;}
.ls7_c00398{letter-spacing:-2.661127px;}
.ls21_c00398{letter-spacing:-2.607904px;}
.ls9_c00398{letter-spacing:-2.356998px;}
.ls20_c00398{letter-spacing:-2.300767px;}
.ls10_c00398{letter-spacing:-2.273040px;}
.ls19_c00398{letter-spacing:-1.288980px;}
.ls18_c00398{letter-spacing:-1.117673px;}
.ls13_c00398{letter-spacing:-0.980815px;}
.lsd_c00398{letter-spacing:-0.928620px;}
.ls5_c00398{letter-spacing:-0.703890px;}
.lse_c00398{letter-spacing:-0.557172px;}
.ls1c_c00398{letter-spacing:-0.456193px;}
.ls3_c00398{letter-spacing:0.000000px;}
.lsc_c00398{letter-spacing:0.011563px;}
.ls1_c00398{letter-spacing:0.266113px;}
.ls0_c00398{letter-spacing:0.267973px;}
.ls1d_c00398{letter-spacing:1.011228px;}
.lsf_c00398{letter-spacing:1.326600px;}
.ls17_c00398{letter-spacing:1.544400px;}
.lsa_c00398{letter-spacing:2.366100px;}
.lsb_c00398{letter-spacing:2.979900px;}
.ls11_c00398{letter-spacing:3.564000px;}
.ls8_c00398{letter-spacing:3.583810px;}
.ls1b_c00398{letter-spacing:3.643200px;}
.ls14_c00398{letter-spacing:3.682810px;}
.ls1e_c00398{letter-spacing:3.722400px;}
.ls6_c00398{letter-spacing:3.801610px;}
.ls4_c00398{letter-spacing:3.910500px;}
.ls1f_c00398{letter-spacing:4.059000px;}
.ls15_c00398{letter-spacing:14.256198px;}
.ls12_c00398{letter-spacing:24.235398px;}
.ls2_c00398{letter-spacing:28.131389px;}
.ls16_c00398{letter-spacing:49.896198px;}
.ls1a_c00398{letter-spacing:51.321798px;}
.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:-19.008050px;}
.ws8_c00398{word-spacing:-16.733376px;}
.ws2_c00398{word-spacing:-16.651051px;}
.wsa_c00398{word-spacing:-16.400145px;}
.ws3_c00398{word-spacing:-11.830500px;}
.ws1_c00398{word-spacing:-1.520755px;}
.wsb_c00398{word-spacing:0.000000px;}
.ws9_c00398{word-spacing:0.304419px;}
.ws7_c00398{word-spacing:2.052749px;}
.ws5_c00398{word-spacing:2.432919px;}
.ws6_c00398{word-spacing:2.585379px;}
.ws4_c00398{word-spacing:29.861766px;}
._1d_c00398{margin-left:-160.960536px;}
._20_c00398{margin-left:-32.541641px;}
._1f_c00398{margin-left:-16.499021px;}
._26_c00398{margin-left:-13.577850px;}
._1c_c00398{margin-left:-12.013210px;}
._23_c00398{margin-left:-8.439706px;}
._17_c00398{margin-left:-6.310744px;}
._13_c00398{margin-left:-5.062068px;}
._2_c00398{margin-left:-3.497527px;}
._16_c00398{margin-left:-1.216607px;}
._1e_c00398{width:1.216611px;}
._4_c00398{width:2.508968px;}
._1_c00398{width:5.398184px;}
._11_c00398{width:6.843584px;}
._5_c00398{width:8.439662px;}
._a_c00398{width:10.492526px;}
._15_c00398{width:11.785059px;}
._22_c00398{width:13.609849px;}
._10_c00398{width:14.861824px;}
._0_c00398{width:16.347001px;}
._14_c00398{width:20.148227px;}
._7_c00398{width:21.517001px;}
._21_c00398{width:22.988735px;}
._f_c00398{width:24.329789px;}
._1a_c00398{width:25.774793px;}
._27_c00398{width:27.079310px;}
._9_c00398{width:28.344312px;}
._25_c00398{width:29.349561px;}
._c_c00398{width:31.208216px;}
._e_c00398{width:32.908255px;}
._8_c00398{width:34.230103px;}
._6_c00398{width:35.917101px;}
._3_c00398{width:37.712015px;}
._19_c00398{width:38.733425px;}
._24_c00398{width:40.346114px;}
._b_c00398{width:41.665415px;}
._12_c00398{width:43.384825px;}
._1b_c00398{width:46.151507px;}
._d_c00398{width:47.444061px;}
._18_c00398{width:436.598712px;}
._28_c00398{width:1254.219120px;}
.fc0_c00398{color:transparent;}
.fs11_c00398{font-size:14.256198px;}
.fs1b_c00398{font-size:21.186000px;}
.fs0_c00398{font-size:22.176000px;}
.fse_c00398{font-size:24.235398px;}
.fs9_c00398{font-size:26.532000px;}
.fs2_c00398{font-size:27.720000px;}
.fs8_c00398{font-size:28.908000px;}
.fs15_c00398{font-size:30.888000px;}
.fs16_c00398{font-size:36.828000px;}
.fs6_c00398{font-size:39.006198px;}
.fs5_c00398{font-size:47.322000px;}
.fs13_c00398{font-size:49.896198px;}
.fs17_c00398{font-size:51.321798px;}
.fs19_c00398{font-size:53.658000px;}
.fs12_c00398{font-size:56.628000px;}
.fs7_c00398{font-size:59.598000px;}
.fs14_c00398{font-size:60.192000px;}
.fsf_c00398{font-size:62.568000px;}
.fs1e_c00398{font-size:64.350000px;}
.fsa_c00398{font-size:64.944000px;}
.fs20_c00398{font-size:65.736198px;}
.fsc_c00398{font-size:66.330000px;}
.fs1f_c00398{font-size:66.528000px;}
.fs18_c00398{font-size:69.696198px;}
.fsd_c00398{font-size:71.280000px;}
.fs4_c00398{font-size:71.676198px;}
.fs1a_c00398{font-size:72.864000px;}
.fs10_c00398{font-size:73.656198px;}
.fs1c_c00398{font-size:74.448000px;}
.fs3_c00398{font-size:76.032198px;}
.fs1_c00398{font-size:78.210000px;}
.fs1d_c00398{font-size:81.180000px;}
.fsb_c00398{font-size:91.872198px;}
.y0_c00398{bottom:0.000000px;}
.y2a_c00398{bottom:55.153935px;}
.y1_c00398{bottom:76.500000px;}
.y29_c00398{bottom:142.471935px;}
.y28_c00398{bottom:209.118735px;}
.y27_c00398{bottom:244.402335px;}
.y26_c00398{bottom:261.504585px;}
.y25_c00398{bottom:277.547535px;}
.y24_c00398{bottom:305.341785px;}
.y21_c00398{bottom:307.485135px;}
.y22_c00398{bottom:309.623535px;}
.y23_c00398{bottom:309.974985px;}
.y20_c00398{bottom:310.336335px;}
.y1f_c00398{bottom:346.689135px;}
.y1e_c00398{bottom:379.472985px;}
.y1c_c00398{bottom:411.910236px;}
.y1d_c00398{bottom:411.910335px;}
.y1b_c00398{bottom:444.699135px;}
.y1a_c00398{bottom:509.202585px;}
.y19_c00398{bottom:540.927135px;}
.y18_c00398{bottom:566.582985px;}
.y15_c00398{bottom:572.998185px;}
.y17_c00398{bottom:573.359535px;}
.y16_c00398{bottom:586.184985px;}
.y14_c00398{bottom:605.430585px;}
.y13_c00398{bottom:638.219385px;}
.y12_c00398{bottom:671.369535px;}
.y11_c00398{bottom:704.158335px;}
.y10_c00398{bottom:769.735935px;}
.yf_c00398{bottom:784.704735px;}
.ye_c00398{bottom:799.673535px;}
.yc_c00398{bottom:803.232585px;}
.yd_c00398{bottom:809.652735px;}
.yb_c00398{bottom:817.137135px;}
.ya_c00398{bottom:834.957135px;}
.y9_c00398{bottom:858.835935px;}
.y7_c00398{bottom:867.389535px;}
.y8_c00398{bottom:869.171535px;}
.y6_c00398{bottom:899.460585px;}
.y5_c00398{bottom:932.249385px;}
.y2_c00398{bottom:982.858185px;}
.y4_c00398{bottom:1023.487785px;}
.y3_c00398{bottom:1084.788585px;}
.h10_c00398{height:9.494628px;}
.hd_c00398{height:16.140775px;}
.h1a_c00398{height:22.096336px;}
.h2_c00398{height:23.128875px;}
.h9_c00398{height:27.672047px;}
.h4_c00398{height:28.911094px;}
.h14_c00398{height:32.215219px;}
.h12_c00398{height:33.230868px;}
.h16_c00398{height:34.180317px;}
.h15_c00398{height:36.144668px;}
.h7_c00398{height:46.443955px;}
.h18_c00398{height:55.963617px;}
.h11_c00398{height:59.061234px;}
.h8_c00398{height:62.158852px;}
.h13_c00398{height:62.778375px;}
.h1d_c00398{height:64.516483px;}
.he_c00398{height:65.256469px;}
.ha_c00398{height:67.734563px;}
.hc_c00398{height:69.957422px;}
.h17_c00398{height:70.240700px;}
.h6_c00398{height:70.346269px;}
.h19_c00398{height:71.512031px;}
.hf_c00398{height:74.231637px;}
.h5_c00398{height:74.621444px;}
.h1b_c00398{height:75.029625px;}
.h3_c00398{height:76.758838px;}
.h1c_c00398{height:79.673730px;}
.hb_c00398{height:90.167538px;}
.h1_c00398{height:1110.000000px;}
.h0_c00398{height:1263.000000px;}
.w1_c00398{width:775.500000px;}
.w0_c00398{width:892.500000px;}
.x0_c00398{left:0.000000px;}
.x2_c00398{left:17.009835px;}
.x1_c00398{left:58.500000px;}
.x53_c00398{left:99.328335px;}
.x6_c00398{left:100.927185px;}
.x70_c00398{left:102.724035px;}
.x34_c00398{left:105.203985px;}
.x6d_c00398{left:112.020135px;}
.x2a_c00398{left:118.182885px;}
.x3d_c00398{left:121.831035px;}
.x27_c00398{left:123.514035px;}
.x2b_c00398{left:126.043485px;}
.x49_c00398{left:132.161685px;}
.x5d_c00398{left:133.785285px;}
.x7_c00398{left:142.922985px;}
.x1a_c00398{left:144.160485px;}
.x83_c00398{left:145.402935px;}
.x4d_c00398{left:153.555585px;}
.x73_c00398{left:155.530635px;}
.x8_c00398{left:160.911285px;}
.x28_c00398{left:165.821685px;}
.x6e_c00398{left:177.087885px;}
.x7e_c00398{left:179.825235px;}
.x65_c00398{left:185.666235px;}
.x58_c00398{left:187.963035px;}
.x3e_c00398{left:190.042035px;}
.x29_c00398{left:192.952635px;}
.x2c_c00398{left:194.076285px;}
.x35_c00398{left:198.313485px;}
.x59_c00398{left:209.485635px;}
.x7f_c00398{left:210.737985px;}
.x9_c00398{left:220.934985px;}
.x75_c00398{left:221.944785px;}
.x2d_c00398{left:231.572535px;}
.x7b_c00398{left:233.562435px;}
.xa_c00398{left:237.888735px;}
.x1b_c00398{left:243.125835px;}
.x84_c00398{left:244.239585px;}
.x3f_c00398{left:253.362435px;}
.xb_c00398{left:254.555385px;}
.x86_c00398{left:256.386885px;}
.x1c_c00398{left:265.301835px;}
.x71_c00398{left:266.648235px;}
.x4e_c00398{left:276.117585px;}
.xc_c00398{left:277.414485px;}
.x4a_c00398{left:286.131435px;}
.x54_c00398{left:288.032235px;}
.xd_c00398{left:298.773735px;}
.x87_c00398{left:305.966085px;}
.x2e_c00398{left:309.287535px;}
.x6f_c00398{left:310.490385px;}
.x40_c00398{left:319.187535px;}
.x4b_c00398{left:320.202285px;}
.x5f_c00398{left:321.256635px;}
.xe_c00398{left:331.052685px;}
.x4f_c00398{left:332.636685px;}
.x1d_c00398{left:334.408785px;}
.x41_c00398{left:342.432735px;}
.x60_c00398{left:343.556385px;}
.x5e_c00398{left:348.907335px;}
.xf_c00398{left:352.778235px;}
.x61_c00398{left:353.891985px;}
.x2f_c00398{left:364.192935px;}
.x50_c00398{left:365.484885px;}
.x1e_c00398{left:367.489635px;}
.x36_c00398{left:376.855035px;}
.x10_c00398{left:387.175785px;}
.x80_c00398{left:388.274685px;}
.x5a_c00398{left:398.239035px;}
.x88_c00398{left:399.679485px;}
.x76_c00398{left:408.302385px;}
.x11_c00398{left:409.574535px;}
.x81_c00398{left:411.044685px;}
.x37_c00398{left:420.103185px;}
.x66_c00398{left:421.281285px;}
.x12_c00398{left:431.027835px;}
.x1f_c00398{left:432.092085px;}
.x42_c00398{left:443.066235px;}
.x30_c00398{left:446.788635px;}
.x62_c00398{left:453.278085px;}
.x77_c00398{left:456.990585px;}
.x31_c00398{left:463.252335px;}
.x51_c00398{left:464.544285px;}
.x74_c00398{left:465.950085px;}
.x20_c00398{left:475.612485px;}
.x46_c00398{left:479.706135px;}
.x47_c00398{left:482.913735px;}
.x13_c00398{left:485.849085px;}
.x5b_c00398{left:486.982635px;}
.x85_c00398{left:487.997385px;}
.x21_c00398{left:497.991435px;}
.x72_c00398{left:499.011135px;}
.x78_c00398{left:500.431785px;}
.x63_c00398{left:508.168635px;}
.x14_c00398{left:509.430885px;}
.x69_c00398{left:511.495035px;}
.x38_c00398{left:518.860635px;}
.x15_c00398{left:519.929835px;}
.x22_c00398{left:531.532635px;}
.x43_c00398{left:533.873985px;}
.x16_c00398{left:541.482135px;}
.x82_c00398{left:542.581035px;}
.x67_c00398{left:552.099885px;}
.x7c_c00398{left:553.975935px;}
.x52_c00398{left:563.054235px;}
.x39_c00398{left:564.598635px;}
.x17_c00398{left:565.905435px;}
.x44_c00398{left:567.345885px;}
.x4c_c00398{left:575.295585px;}
.x7a_c00398{left:578.730885px;}
.x5_c00398{left:582.948285px;}
.x79_c00398{left:584.834235px;}
.x55_c00398{left:585.863835px;}
.x18_c00398{left:597.085485px;}
.x5c_c00398{left:598.100235px;}
.x89_c00398{left:601.441485px;}
.x56_c00398{left:608.411085px;}
.x6a_c00398{left:610.009935px;}
.x68_c00398{left:619.845585px;}
.x19_c00398{left:629.334735px;}
.x23_c00398{left:630.601935px;}
.x3a_c00398{left:642.021585px;}
.x45_c00398{left:651.807735px;}
.x32_c00398{left:653.347185px;}
.x3b_c00398{left:662.494785px;}
.x24_c00398{left:664.113435px;}
.x25_c00398{left:674.320335px;}
.x64_c00398{left:675.448935px;}
.x3c_c00398{left:678.488235px;}
.x3_c00398{left:685.408335px;}
.x6b_c00398{left:686.561685px;}
.x33_c00398{left:696.902235px;}
.x48_c00398{left:703.525335px;}
.x57_c00398{left:706.010235px;}
.x4_c00398{left:707.925885px;}
.x7d_c00398{left:708.935685px;}
.x26_c00398{left:718.449585px;}
.x6c_c00398{left:740.754285px;}
@media print{
.v1_c00398{vertical-align:-6.351840pt;}
.v0_c00398{vertical-align:0.000000pt;}
.ls7_c00398{letter-spacing:-2.365446pt;}
.ls21_c00398{letter-spacing:-2.318137pt;}
.ls9_c00398{letter-spacing:-2.095109pt;}
.ls20_c00398{letter-spacing:-2.045126pt;}
.ls10_c00398{letter-spacing:-2.020480pt;}
.ls19_c00398{letter-spacing:-1.145760pt;}
.ls18_c00398{letter-spacing:-0.993487pt;}
.ls13_c00398{letter-spacing:-0.871836pt;}
.lsd_c00398{letter-spacing:-0.825440pt;}
.ls5_c00398{letter-spacing:-0.625680pt;}
.lse_c00398{letter-spacing:-0.495264pt;}
.ls1c_c00398{letter-spacing:-0.405505pt;}
.ls3_c00398{letter-spacing:0.000000pt;}
.lsc_c00398{letter-spacing:0.010278pt;}
.ls1_c00398{letter-spacing:0.236545pt;}
.ls0_c00398{letter-spacing:0.238198pt;}
.ls1d_c00398{letter-spacing:0.898870pt;}
.lsf_c00398{letter-spacing:1.179200pt;}
.ls17_c00398{letter-spacing:1.372800pt;}
.lsa_c00398{letter-spacing:2.103200pt;}
.lsb_c00398{letter-spacing:2.648800pt;}
.ls11_c00398{letter-spacing:3.168000pt;}
.ls8_c00398{letter-spacing:3.185609pt;}
.ls1b_c00398{letter-spacing:3.238400pt;}
.ls14_c00398{letter-spacing:3.273609pt;}
.ls1e_c00398{letter-spacing:3.308800pt;}
.ls6_c00398{letter-spacing:3.379209pt;}
.ls4_c00398{letter-spacing:3.476000pt;}
.ls1f_c00398{letter-spacing:3.608000pt;}
.ls15_c00398{letter-spacing:12.672176pt;}
.ls12_c00398{letter-spacing:21.542576pt;}
.ls2_c00398{letter-spacing:25.005679pt;}
.ls16_c00398{letter-spacing:44.352176pt;}
.ls1a_c00398{letter-spacing:45.619376pt;}
.ws0_c00398{word-spacing:-16.896044pt;}
.ws8_c00398{word-spacing:-14.874112pt;}
.ws2_c00398{word-spacing:-14.800935pt;}
.wsa_c00398{word-spacing:-14.577907pt;}
.ws3_c00398{word-spacing:-10.516000pt;}
.ws1_c00398{word-spacing:-1.351783pt;}
.wsb_c00398{word-spacing:0.000000pt;}
.ws9_c00398{word-spacing:0.270595pt;}
.ws7_c00398{word-spacing:1.824665pt;}
.ws5_c00398{word-spacing:2.162595pt;}
.ws6_c00398{word-spacing:2.298115pt;}
.ws4_c00398{word-spacing:26.543792pt;}
._1d_c00398{margin-left:-143.076032pt;}
._20_c00398{margin-left:-28.925903pt;}
._1f_c00398{margin-left:-14.665796pt;}
._26_c00398{margin-left:-12.069200pt;}
._1c_c00398{margin-left:-10.678409pt;}
._23_c00398{margin-left:-7.501961pt;}
._17_c00398{margin-left:-5.609550pt;}
._13_c00398{margin-left:-4.499616pt;}
._2_c00398{margin-left:-3.108913pt;}
._16_c00398{margin-left:-1.081428pt;}
._1e_c00398{width:1.081432pt;}
._4_c00398{width:2.230194pt;}
._1_c00398{width:4.798386pt;}
._11_c00398{width:6.083186pt;}
._5_c00398{width:7.501922pt;}
._a_c00398{width:9.326690pt;}
._15_c00398{width:10.475608pt;}
._22_c00398{width:12.097644pt;}
._10_c00398{width:13.210510pt;}
._0_c00398{width:14.530668pt;}
._14_c00398{width:17.909535pt;}
._7_c00398{width:19.126223pt;}
._21_c00398{width:20.434431pt;}
._f_c00398{width:21.626479pt;}
._1a_c00398{width:22.910927pt;}
._27_c00398{width:24.070498pt;}
._9_c00398{width:25.194944pt;}
._25_c00398{width:26.088499pt;}
._c_c00398{width:27.740636pt;}
._e_c00398{width:29.251782pt;}
._8_c00398{width:30.426758pt;}
._6_c00398{width:31.926312pt;}
._3_c00398{width:33.521791pt;}
._19_c00398{width:34.429712pt;}
._24_c00398{width:35.863212pt;}
._b_c00398{width:37.035924pt;}
._12_c00398{width:38.564289pt;}
._1b_c00398{width:41.023561pt;}
._d_c00398{width:42.172499pt;}
._18_c00398{width:388.087744pt;}
._28_c00398{width:1114.861440pt;}
.fs11_c00398{font-size:12.672176pt;}
.fs1b_c00398{font-size:18.832000pt;}
.fs0_c00398{font-size:19.712000pt;}
.fse_c00398{font-size:21.542576pt;}
.fs9_c00398{font-size:23.584000pt;}
.fs2_c00398{font-size:24.640000pt;}
.fs8_c00398{font-size:25.696000pt;}
.fs15_c00398{font-size:27.456000pt;}
.fs16_c00398{font-size:32.736000pt;}
.fs6_c00398{font-size:34.672176pt;}
.fs5_c00398{font-size:42.064000pt;}
.fs13_c00398{font-size:44.352176pt;}
.fs17_c00398{font-size:45.619376pt;}
.fs19_c00398{font-size:47.696000pt;}
.fs12_c00398{font-size:50.336000pt;}
.fs7_c00398{font-size:52.976000pt;}
.fs14_c00398{font-size:53.504000pt;}
.fsf_c00398{font-size:55.616000pt;}
.fs1e_c00398{font-size:57.200000pt;}
.fsa_c00398{font-size:57.728000pt;}
.fs20_c00398{font-size:58.432176pt;}
.fsc_c00398{font-size:58.960000pt;}
.fs1f_c00398{font-size:59.136000pt;}
.fs18_c00398{font-size:61.952176pt;}
.fsd_c00398{font-size:63.360000pt;}
.fs4_c00398{font-size:63.712176pt;}
.fs1a_c00398{font-size:64.768000pt;}
.fs10_c00398{font-size:65.472176pt;}
.fs1c_c00398{font-size:66.176000pt;}
.fs3_c00398{font-size:67.584176pt;}
.fs1_c00398{font-size:69.520000pt;}
.fs1d_c00398{font-size:72.160000pt;}
.fsb_c00398{font-size:81.664176pt;}
.y0_c00398{bottom:0.000000pt;}
.y2a_c00398{bottom:49.025720pt;}
.y1_c00398{bottom:68.000000pt;}
.y29_c00398{bottom:126.641720pt;}
.y28_c00398{bottom:185.883320pt;}
.y27_c00398{bottom:217.246520pt;}
.y26_c00398{bottom:232.448520pt;}
.y25_c00398{bottom:246.708920pt;}
.y24_c00398{bottom:271.414920pt;}
.y21_c00398{bottom:273.320120pt;}
.y22_c00398{bottom:275.220920pt;}
.y23_c00398{bottom:275.533320pt;}
.y20_c00398{bottom:275.854520pt;}
.y1f_c00398{bottom:308.168120pt;}
.y1e_c00398{bottom:337.309320pt;}
.y1c_c00398{bottom:366.142432pt;}
.y1d_c00398{bottom:366.142520pt;}
.y1b_c00398{bottom:395.288120pt;}
.y1a_c00398{bottom:452.624520pt;}
.y19_c00398{bottom:480.824120pt;}
.y18_c00398{bottom:503.629320pt;}
.y15_c00398{bottom:509.331720pt;}
.y17_c00398{bottom:509.652920pt;}
.y16_c00398{bottom:521.053320pt;}
.y14_c00398{bottom:538.160520pt;}
.y13_c00398{bottom:567.306120pt;}
.y12_c00398{bottom:596.772920pt;}
.y11_c00398{bottom:625.918520pt;}
.y10_c00398{bottom:684.209720pt;}
.yf_c00398{bottom:697.515320pt;}
.ye_c00398{bottom:710.820920pt;}
.yc_c00398{bottom:713.984520pt;}
.yd_c00398{bottom:719.691320pt;}
.yb_c00398{bottom:726.344120pt;}
.ya_c00398{bottom:742.184120pt;}
.y9_c00398{bottom:763.409720pt;}
.y7_c00398{bottom:771.012920pt;}
.y8_c00398{bottom:772.596920pt;}
.y6_c00398{bottom:799.520520pt;}
.y5_c00398{bottom:828.666120pt;}
.y2_c00398{bottom:873.651720pt;}
.y4_c00398{bottom:909.766920pt;}
.y3_c00398{bottom:964.256520pt;}
.h10_c00398{height:8.439669pt;}
.hd_c00398{height:14.347356pt;}
.h1a_c00398{height:19.641188pt;}
.h2_c00398{height:20.559000pt;}
.h9_c00398{height:24.597375pt;}
.h4_c00398{height:25.698750pt;}
.h14_c00398{height:28.635750pt;}
.h12_c00398{height:29.538549pt;}
.h16_c00398{height:30.382504pt;}
.h15_c00398{height:32.128594pt;}
.h7_c00398{height:41.283516pt;}
.h18_c00398{height:49.745438pt;}
.h11_c00398{height:52.498875pt;}
.h8_c00398{height:55.252313pt;}
.h13_c00398{height:55.803000pt;}
.h1d_c00398{height:57.347985pt;}
.he_c00398{height:58.005750pt;}
.ha_c00398{height:60.208500pt;}
.hc_c00398{height:62.184375pt;}
.h17_c00398{height:62.436177pt;}
.h6_c00398{height:62.530016pt;}
.h19_c00398{height:63.566250pt;}
.hf_c00398{height:65.983677pt;}
.h5_c00398{height:66.330173pt;}
.h1b_c00398{height:66.693000pt;}
.h3_c00398{height:68.230078pt;}
.h1c_c00398{height:70.821094pt;}
.hb_c00398{height:80.148923pt;}
.h1_c00398{height:986.666667pt;}
.h0_c00398{height:1122.666667pt;}
.w1_c00398{width:689.333333pt;}
.w0_c00398{width:793.333333pt;}
.x0_c00398{left:0.000000pt;}
.x2_c00398{left:15.119853pt;}
.x1_c00398{left:52.000000pt;}
.x53_c00398{left:88.291853pt;}
.x6_c00398{left:89.713053pt;}
.x70_c00398{left:91.310253pt;}
.x34_c00398{left:93.514653pt;}
.x6d_c00398{left:99.573453pt;}
.x2a_c00398{left:105.051453pt;}
.x3d_c00398{left:108.294253pt;}
.x27_c00398{left:109.790253pt;}
.x2b_c00398{left:112.038653pt;}
.x49_c00398{left:117.477053pt;}
.x5d_c00398{left:118.920253pt;}
.x7_c00398{left:127.042653pt;}
.x1a_c00398{left:128.142653pt;}
.x83_c00398{left:129.247053pt;}
.x4d_c00398{left:136.493853pt;}
.x73_c00398{left:138.249453pt;}
.x8_c00398{left:143.032253pt;}
.x28_c00398{left:147.397053pt;}
.x6e_c00398{left:157.411453pt;}
.x7e_c00398{left:159.844653pt;}
.x65_c00398{left:165.036653pt;}
.x58_c00398{left:167.078253pt;}
.x3e_c00398{left:168.926253pt;}
.x29_c00398{left:171.513453pt;}
.x2c_c00398{left:172.512253pt;}
.x35_c00398{left:176.278653pt;}
.x59_c00398{left:186.209453pt;}
.x7f_c00398{left:187.322653pt;}
.x9_c00398{left:196.386653pt;}
.x75_c00398{left:197.284253pt;}
.x2d_c00398{left:205.842253pt;}
.x7b_c00398{left:207.611053pt;}
.xa_c00398{left:211.456653pt;}
.x1b_c00398{left:216.111853pt;}
.x84_c00398{left:217.101853pt;}
.x3f_c00398{left:225.211053pt;}
.xb_c00398{left:226.271453pt;}
.x86_c00398{left:227.899453pt;}
.x1c_c00398{left:235.823853pt;}
.x71_c00398{left:237.020653pt;}
.x4e_c00398{left:245.437853pt;}
.xc_c00398{left:246.590653pt;}
.x4a_c00398{left:254.339053pt;}
.x54_c00398{left:256.028653pt;}
.xd_c00398{left:265.576653pt;}
.x87_c00398{left:271.969853pt;}
.x2e_c00398{left:274.922253pt;}
.x6f_c00398{left:275.991453pt;}
.x40_c00398{left:283.722253pt;}
.x4b_c00398{left:284.624253pt;}
.x5f_c00398{left:285.561453pt;}
.xe_c00398{left:294.269053pt;}
.x4f_c00398{left:295.677053pt;}
.x1d_c00398{left:297.252253pt;}
.x41_c00398{left:304.384653pt;}
.x60_c00398{left:305.383453pt;}
.x5e_c00398{left:310.139853pt;}
.xf_c00398{left:313.580653pt;}
.x61_c00398{left:314.570653pt;}
.x2f_c00398{left:323.727053pt;}
.x50_c00398{left:324.875453pt;}
.x1e_c00398{left:326.657453pt;}
.x36_c00398{left:334.982253pt;}
.x10_c00398{left:344.156253pt;}
.x80_c00398{left:345.133053pt;}
.x5a_c00398{left:353.990253pt;}
.x88_c00398{left:355.270653pt;}
.x76_c00398{left:362.935453pt;}
.x11_c00398{left:364.066253pt;}
.x81_c00398{left:365.373053pt;}
.x37_c00398{left:373.425053pt;}
.x66_c00398{left:374.472253pt;}
.x12_c00398{left:383.135853pt;}
.x1f_c00398{left:384.081853pt;}
.x42_c00398{left:393.836653pt;}
.x30_c00398{left:397.145453pt;}
.x62_c00398{left:402.913853pt;}
.x77_c00398{left:406.213853pt;}
.x31_c00398{left:411.779853pt;}
.x51_c00398{left:412.928253pt;}
.x74_c00398{left:414.177853pt;}
.x20_c00398{left:422.766653pt;}
.x46_c00398{left:426.405453pt;}
.x47_c00398{left:429.256653pt;}
.x13_c00398{left:431.865853pt;}
.x5b_c00398{left:432.873453pt;}
.x85_c00398{left:433.775453pt;}
.x21_c00398{left:442.659053pt;}
.x72_c00398{left:443.565453pt;}
.x78_c00398{left:444.828253pt;}
.x63_c00398{left:451.705453pt;}
.x14_c00398{left:452.827453pt;}
.x69_c00398{left:454.662253pt;}
.x38_c00398{left:461.209453pt;}
.x15_c00398{left:462.159853pt;}
.x22_c00398{left:472.473453pt;}
.x43_c00398{left:474.554653pt;}
.x16_c00398{left:481.317453pt;}
.x82_c00398{left:482.294253pt;}
.x67_c00398{left:490.755453pt;}
.x7c_c00398{left:492.423053pt;}
.x52_c00398{left:500.492653pt;}
.x39_c00398{left:501.865453pt;}
.x17_c00398{left:503.027053pt;}
.x44_c00398{left:504.307453pt;}
.x4c_c00398{left:511.373853pt;}
.x7a_c00398{left:514.427453pt;}
.x5_c00398{left:518.176253pt;}
.x79_c00398{left:519.852653pt;}
.x55_c00398{left:520.767853pt;}
.x18_c00398{left:530.742653pt;}
.x5c_c00398{left:531.644653pt;}
.x89_c00398{left:534.614653pt;}
.x56_c00398{left:540.809853pt;}
.x6a_c00398{left:542.231053pt;}
.x68_c00398{left:550.973853pt;}
.x19_c00398{left:559.408653pt;}
.x23_c00398{left:560.535053pt;}
.x3a_c00398{left:570.685853pt;}
.x45_c00398{left:579.384653pt;}
.x32_c00398{left:580.753053pt;}
.x3b_c00398{left:588.884253pt;}
.x24_c00398{left:590.323053pt;}
.x25_c00398{left:599.395853pt;}
.x64_c00398{left:600.399053pt;}
.x3c_c00398{left:603.100653pt;}
.x3_c00398{left:609.251853pt;}
.x6b_c00398{left:610.277053pt;}
.x33_c00398{left:619.468653pt;}
.x48_c00398{left:625.355853pt;}
.x57_c00398{left:627.564653pt;}
.x4_c00398{left:629.267453pt;}
.x7d_c00398{left:630.165053pt;}
.x26_c00398{left:638.621853pt;}
.x6c_c00398{left:658.448253pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d305a24e4cd704bce169e918.woff2')format("woff");}.ff1_c00399{font-family:ff1_c00399;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00399;src:url('chunks/assets/font_6b166b99521221955a344f2b.woff2')format("woff");}.ff2_c00399{font-family:ff2_c00399;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00399;src:url('chunks/assets/font_36f3fd08e3a54930380aa563.woff2')format("woff");}.ff3_c00399{font-family:ff3_c00399;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00399;src:url('chunks/assets/font_54af14c4d6a2418ec37f6cb3.woff2')format("woff");}.ff4_c00399{font-family:ff4_c00399;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00399;src:url('chunks/assets/font_11110ed3e96d33ae3e13503b.woff2')format("woff");}.ff5_c00399{font-family:ff5_c00399;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00399;src:url('chunks/assets/font_5551a367af89d6899ea42677.woff2')format("woff");}.ff6_c00399{font-family:ff6_c00399;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1f_c00399{transform:matrix(0.068047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.068047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.068047,0.000000,0.000000,0.250000,0,0);}
.m46_c00399{transform:matrix(0.084701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084701,0.000000,0.000000,0.250000,0,0);}
.m87_c00399{transform:matrix(0.103572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103572,0.000000,0.000000,0.250000,0,0);}
.m6f_c00399{transform:matrix(0.134260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134260,0.000000,0.000000,0.250000,0,0);}
.md2_c00399{transform:matrix(0.152528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152528,0.000000,0.000000,0.250000,0,0);}
.m71_c00399{transform:matrix(0.152777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152777,0.000000,0.000000,0.250000,0,0);}
.m77_c00399{transform:matrix(0.155984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155984,0.000000,0.000000,0.250000,0,0);}
.m74_c00399{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m34_c00399{transform:matrix(0.157142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157142,0.000000,0.000000,0.250000,0,0);}
.m88_c00399{transform:matrix(0.176190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176190,0.000000,0.000000,0.250000,0,0);}
.m45_c00399{transform:matrix(0.177898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177898,0.000000,0.000000,0.250000,0,0);}
.m22_c00399{transform:matrix(0.180159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180159,0.000000,0.000000,0.250000,0,0);}
.m73_c00399{transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);}
.m61_c00399{transform:matrix(0.185893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185893,0.000000,0.000000,0.250000,0,0);}
.m7_c00399{transform:matrix(0.186485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186485,0.000000,0.000000,0.250000,0,0);}
.m70_c00399{transform:matrix(0.190972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190972,0.000000,0.000000,0.250000,0,0);}
.m31_c00399{transform:matrix(0.192256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192256,0.000000,0.000000,0.250000,0,0);}
.m81_c00399{transform:matrix(0.193889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193889,0.000000,0.000000,0.250000,0,0);}
.mc5_c00399{transform:matrix(0.196971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196971,0.000000,0.000000,0.250000,0,0);}
.m7a_c00399{transform:matrix(0.201171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201171,0.000000,0.000000,0.250000,0,0);}
.m30_c00399{transform:matrix(0.213737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213737,0.000000,0.000000,0.250000,0,0);}
.m72_c00399{transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);}
.mc6_c00399{transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);}
.mc7_c00399{transform:matrix(0.231062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231062,0.000000,0.000000,0.250000,0,0);}
.mcc_c00399{transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);}
.m1a_c00399{transform:matrix(0.233755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233755,0.000000,0.000000,0.250000,0,0);}
.m7b_c00399{transform:matrix(0.245542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245542,0.000000,0.000000,0.250000,0,0);}
.m1e_c00399{transform:matrix(0.246249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246249,0.000000,0.000000,0.250000,0,0);}
.m0_c00399{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00399{transform:matrix(0.255229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255229,0.000000,0.000000,0.250000,0,0);}
.m66_c00399{transform:matrix(0.257892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257892,0.000000,0.000000,0.250000,0,0);}
.m79_c00399{transform:matrix(0.259026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259026,0.000000,0.000000,0.250000,0,0);}
.mb0_c00399{transform:matrix(0.259040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259040,0.000000,0.000000,0.250000,0,0);}
.m21_c00399{transform:matrix(0.260422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260422,0.000000,0.000000,0.250000,0,0);}
.m8e_c00399{transform:matrix(0.260535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260535,0.000000,0.000000,0.250000,0,0);}
.m17_c00399{transform:matrix(0.260560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260560,0.000000,0.000000,0.250000,0,0);}
.m23_c00399{transform:matrix(0.262033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262033,0.000000,0.000000,0.250000,0,0);}
.maa_c00399{transform:matrix(0.263430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263430,0.000000,0.000000,0.250000,0,0);}
.m47_c00399{transform:matrix(0.263658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263658,0.000000,0.000000,0.250000,0,0);}
.m8b_c00399{transform:matrix(0.264556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264556,0.000000,0.000000,0.250000,0,0);}
.m82_c00399{transform:matrix(0.264939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264939,0.000000,0.000000,0.250000,0,0);}
.m67_c00399{transform:matrix(0.265119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265119,0.000000,0.000000,0.250000,0,0);}
.m7e_c00399{transform:matrix(0.265397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265397,0.000000,0.000000,0.250000,0,0);}
.ma4_c00399{transform:matrix(0.266866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266866,0.000000,0.000000,0.250000,0,0);}
.md5_c00399{transform:matrix(0.270118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270118,0.000000,0.000000,0.250000,0,0);}
.m75_c00399{transform:matrix(0.272767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272767,0.000000,0.000000,0.250000,0,0);}
.m90_c00399{transform:matrix(0.273625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273625,0.000000,0.000000,0.250000,0,0);}
.m4d_c00399{transform:matrix(0.274876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274876,0.000000,0.000000,0.250000,0,0);}
.mc3_c00399{transform:matrix(0.275129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275129,0.000000,0.000000,0.250000,0,0);}
.m1_c00399{transform:matrix(0.278183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278183,0.000000,0.000000,0.250000,0,0);}
.m86_c00399{transform:matrix(0.279241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279241,0.000000,0.000000,0.250000,0,0);}
.m52_c00399{transform:matrix(0.280311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280311,0.000000,0.000000,0.250000,0,0);}
.m57_c00399{transform:matrix(0.281449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281449,0.000000,0.000000,0.250000,0,0);}
.m8a_c00399{transform:matrix(0.281749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281749,0.000000,0.000000,0.250000,0,0);}
.m18_c00399{transform:matrix(0.282201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282201,0.000000,0.000000,0.250000,0,0);}
.m2b_c00399{transform:matrix(0.282717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282717,0.000000,0.000000,0.250000,0,0);}
.m4a_c00399{transform:matrix(0.282792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282792,0.000000,0.000000,0.250000,0,0);}
.m38_c00399{transform:matrix(0.283182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283182,0.000000,0.000000,0.250000,0,0);}
.m7c_c00399{transform:matrix(0.283875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283875,0.000000,0.000000,0.250000,0,0);}
.m49_c00399{transform:matrix(0.283997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283997,0.000000,0.000000,0.250000,0,0);}
.m2_c00399{transform:matrix(0.284136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284136,0.000000,0.000000,0.250000,0,0);}
.md7_c00399{transform:matrix(0.284461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284461,0.000000,0.000000,0.250000,0,0);}
.m63_c00399{transform:matrix(0.284684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284684,0.000000,0.000000,0.250000,0,0);}
.md1_c00399{transform:matrix(0.284785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284785,0.000000,0.000000,0.250000,0,0);}
.m59_c00399{transform:matrix(0.285320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285320,0.000000,0.000000,0.250000,0,0);}
.m35_c00399{transform:matrix(0.285530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285530,0.000000,0.000000,0.250000,0,0);}
.m9e_c00399{transform:matrix(0.285587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285587,0.000000,0.000000,0.250000,0,0);}
.m5b_c00399{transform:matrix(0.286526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286526,0.000000,0.000000,0.250000,0,0);}
.mb1_c00399{transform:matrix(0.286591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286591,0.000000,0.000000,0.250000,0,0);}
.mb2_c00399{transform:matrix(0.286741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286741,0.000000,0.000000,0.250000,0,0);}
.m36_c00399{transform:matrix(0.287241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287241,0.000000,0.000000,0.250000,0,0);}
.m9f_c00399{transform:matrix(0.287377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287377,0.000000,0.000000,0.250000,0,0);}
.m11_c00399{transform:matrix(0.287520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287520,0.000000,0.000000,0.250000,0,0);}
.m50_c00399{transform:matrix(0.287919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287919,0.000000,0.000000,0.250000,0,0);}
.m8c_c00399{transform:matrix(0.288637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288637,0.000000,0.000000,0.250000,0,0);}
.m9c_c00399{transform:matrix(0.289504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289504,0.000000,0.000000,0.250000,0,0);}
.mca_c00399{transform:matrix(0.289609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289609,0.000000,0.000000,0.250000,0,0);}
.m56_c00399{transform:matrix(0.289780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289780,0.000000,0.000000,0.250000,0,0);}
.m9d_c00399{transform:matrix(0.289782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289782,0.000000,0.000000,0.250000,0,0);}
.mb7_c00399{transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);}
.m20_c00399{transform:matrix(0.290435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290435,0.000000,0.000000,0.250000,0,0);}
.ma6_c00399{transform:matrix(0.290504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290504,0.000000,0.000000,0.250000,0,0);}
.mcd_c00399{transform:matrix(0.291218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291218,0.000000,0.000000,0.250000,0,0);}
.m1c_c00399{transform:matrix(0.292167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292167,0.000000,0.000000,0.250000,0,0);}
.m3c_c00399{transform:matrix(0.292280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292280,0.000000,0.000000,0.250000,0,0);}
.m9a_c00399{transform:matrix(0.292418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292418,0.000000,0.000000,0.250000,0,0);}
.m51_c00399{transform:matrix(0.292489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292489,0.000000,0.000000,0.250000,0,0);}
.mc8_c00399{transform:matrix(0.292966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292966,0.000000,0.000000,0.250000,0,0);}
.m24_c00399{transform:matrix(0.293295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293295,0.000000,0.000000,0.250000,0,0);}
.ma2_c00399{transform:matrix(0.293334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293334,0.000000,0.000000,0.250000,0,0);}
.mb5_c00399{transform:matrix(0.295384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295384,0.000000,0.000000,0.250000,0,0);}
.m6_c00399{transform:matrix(0.295509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295509,0.000000,0.000000,0.250000,0,0);}
.m8d_c00399{transform:matrix(0.295851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295851,0.000000,0.000000,0.250000,0,0);}
.mbd_c00399{transform:matrix(0.296059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296059,0.000000,0.000000,0.250000,0,0);}
.m44_c00399{transform:matrix(0.296416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296416,0.000000,0.000000,0.250000,0,0);}
.mb3_c00399{transform:matrix(0.296933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296933,0.000000,0.000000,0.250000,0,0);}
.m94_c00399{transform:matrix(0.297321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297321,0.000000,0.000000,0.250000,0,0);}
.m97_c00399{transform:matrix(0.297691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297691,0.000000,0.000000,0.250000,0,0);}
.ma1_c00399{transform:matrix(0.297758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297758,0.000000,0.000000,0.250000,0,0);}
.mc4_c00399{transform:matrix(0.298471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298471,0.000000,0.000000,0.250000,0,0);}
.ma7_c00399{transform:matrix(0.298945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298945,0.000000,0.000000,0.250000,0,0);}
.m53_c00399{transform:matrix(0.299213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299213,0.000000,0.000000,0.250000,0,0);}
.m85_c00399{transform:matrix(0.300023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300023,0.000000,0.000000,0.250000,0,0);}
.m98_c00399{transform:matrix(0.301379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301379,0.000000,0.000000,0.250000,0,0);}
.mab_c00399{transform:matrix(0.302202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302202,0.000000,0.000000,0.250000,0,0);}
.m2d_c00399{transform:matrix(0.302416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302416,0.000000,0.000000,0.250000,0,0);}
.m14_c00399{transform:matrix(0.303921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303921,0.000000,0.000000,0.250000,0,0);}
.mb8_c00399{transform:matrix(0.304797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304797,0.000000,0.000000,0.250000,0,0);}
.m80_c00399{transform:matrix(0.305306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305306,0.000000,0.000000,0.250000,0,0);}
.m4f_c00399{transform:matrix(0.306309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306309,0.000000,0.000000,0.250000,0,0);}
.m12_c00399{transform:matrix(0.307142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307142,0.000000,0.000000,0.250000,0,0);}
.md_c00399{transform:matrix(0.307399,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307399,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307399,0.000000,0.000000,0.250000,0,0);}
.ma8_c00399{transform:matrix(0.308041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308041,0.000000,0.000000,0.250000,0,0);}
.m96_c00399{transform:matrix(0.308534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308534,0.000000,0.000000,0.250000,0,0);}
.m4c_c00399{transform:matrix(0.308632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308632,0.000000,0.000000,0.250000,0,0);}
.m13_c00399{transform:matrix(0.309828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309828,0.000000,0.000000,0.250000,0,0);}
.m25_c00399{transform:matrix(0.309919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309919,0.000000,0.000000,0.250000,0,0);}
.mc0_c00399{transform:matrix(0.310548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310548,0.000000,0.000000,0.250000,0,0);}
.mc9_c00399{transform:matrix(0.311880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311880,0.000000,0.000000,0.250000,0,0);}
.m1b_c00399{transform:matrix(0.312952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312952,0.000000,0.000000,0.250000,0,0);}
.md9_c00399{transform:matrix(0.313601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313601,0.000000,0.000000,0.250000,0,0);}
.maf_c00399{transform:matrix(0.314349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314349,0.000000,0.000000,0.250000,0,0);}
.m76_c00399{transform:matrix(0.315275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315275,0.000000,0.000000,0.250000,0,0);}
.m54_c00399{transform:matrix(0.315577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315577,0.000000,0.000000,0.250000,0,0);}
.m6e_c00399{transform:matrix(0.315648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315648,0.000000,0.000000,0.250000,0,0);}
.m8f_c00399{transform:matrix(0.316406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316406,0.000000,0.000000,0.250000,0,0);}
.mb_c00399{transform:matrix(0.316526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316526,0.000000,0.000000,0.250000,0,0);}
.mc_c00399{transform:matrix(0.317656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317656,0.000000,0.000000,0.250000,0,0);}
.m26_c00399{transform:matrix(0.318001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318001,0.000000,0.000000,0.250000,0,0);}
.m7d_c00399{transform:matrix(0.318178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318178,0.000000,0.000000,0.250000,0,0);}
.mc1_c00399{transform:matrix(0.318833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318833,0.000000,0.000000,0.250000,0,0);}
.mb6_c00399{transform:matrix(0.318930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318930,0.000000,0.000000,0.250000,0,0);}
.mbf_c00399{transform:matrix(0.318973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318973,0.000000,0.000000,0.250000,0,0);}
.m58_c00399{transform:matrix(0.319022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319022,0.000000,0.000000,0.250000,0,0);}
.mbb_c00399{transform:matrix(0.319795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319795,0.000000,0.000000,0.250000,0,0);}
.m65_c00399{transform:matrix(0.319809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319809,0.000000,0.000000,0.250000,0,0);}
.m19_c00399{transform:matrix(0.321650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321650,0.000000,0.000000,0.250000,0,0);}
.m28_c00399{transform:matrix(0.321654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321654,0.000000,0.000000,0.250000,0,0);}
.m5f_c00399{transform:matrix(0.322857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322857,0.000000,0.000000,0.250000,0,0);}
.m43_c00399{transform:matrix(0.322983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322983,0.000000,0.000000,0.250000,0,0);}
.mce_c00399{transform:matrix(0.323081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323081,0.000000,0.000000,0.250000,0,0);}
.m3f_c00399{transform:matrix(0.324116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324116,0.000000,0.000000,0.250000,0,0);}
.m84_c00399{transform:matrix(0.324494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324494,0.000000,0.000000,0.250000,0,0);}
.md0_c00399{transform:matrix(0.324705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324705,0.000000,0.000000,0.250000,0,0);}
.m42_c00399{transform:matrix(0.325866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325866,0.000000,0.000000,0.250000,0,0);}
.ma5_c00399{transform:matrix(0.326021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326021,0.000000,0.000000,0.250000,0,0);}
.m3d_c00399{transform:matrix(0.326883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326883,0.000000,0.000000,0.250000,0,0);}
.m4b_c00399{transform:matrix(0.327665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327665,0.000000,0.000000,0.250000,0,0);}
.m5a_c00399{transform:matrix(0.328272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328272,0.000000,0.000000,0.250000,0,0);}
.m95_c00399{transform:matrix(0.328417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328417,0.000000,0.000000,0.250000,0,0);}
.m78_c00399{transform:matrix(0.328725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328725,0.000000,0.000000,0.250000,0,0);}
.m5c_c00399{transform:matrix(0.329866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329866,0.000000,0.000000,0.250000,0,0);}
.m6d_c00399{transform:matrix(0.330238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330238,0.000000,0.000000,0.250000,0,0);}
.m37_c00399{transform:matrix(0.330718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330718,0.000000,0.000000,0.250000,0,0);}
.mbc_c00399{transform:matrix(0.332327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332327,0.000000,0.000000,0.250000,0,0);}
.ma3_c00399{transform:matrix(0.333172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333172,0.000000,0.000000,0.250000,0,0);}
.m6a_c00399{transform:matrix(0.333724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333724,0.000000,0.000000,0.250000,0,0);}
.m15_c00399{transform:matrix(0.334240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334240,0.000000,0.000000,0.250000,0,0);}
.m32_c00399{transform:matrix(0.334377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334377,0.000000,0.000000,0.250000,0,0);}
.md3_c00399{transform:matrix(0.334946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334946,0.000000,0.000000,0.250000,0,0);}
.m3_c00399{transform:matrix(0.335833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335833,0.000000,0.000000,0.250000,0,0);}
.m2c_c00399{transform:matrix(0.336348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336348,0.000000,0.000000,0.250000,0,0);}
.m16_c00399{transform:matrix(0.336407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336407,0.000000,0.000000,0.250000,0,0);}
.md6_c00399{transform:matrix(0.336489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336489,0.000000,0.000000,0.250000,0,0);}
.m5e_c00399{transform:matrix(0.336631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336631,0.000000,0.000000,0.250000,0,0);}
.m93_c00399{transform:matrix(0.336988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336988,0.000000,0.000000,0.250000,0,0);}
.m3e_c00399{transform:matrix(0.337050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337050,0.000000,0.000000,0.250000,0,0);}
.m40_c00399{transform:matrix(0.338194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338194,0.000000,0.000000,0.250000,0,0);}
.m2e_c00399{transform:matrix(0.339820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339820,0.000000,0.000000,0.250000,0,0);}
.mae_c00399{transform:matrix(0.340415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340415,0.000000,0.000000,0.250000,0,0);}
.m39_c00399{transform:matrix(0.340742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340742,0.000000,0.000000,0.250000,0,0);}
.mc2_c00399{transform:matrix(0.341508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341508,0.000000,0.000000,0.250000,0,0);}
.m27_c00399{transform:matrix(0.341795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341795,0.000000,0.000000,0.250000,0,0);}
.m5d_c00399{transform:matrix(0.344162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344162,0.000000,0.000000,0.250000,0,0);}
.m69_c00399{transform:matrix(0.345174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345174,0.000000,0.000000,0.250000,0,0);}
.mb9_c00399{transform:matrix(0.346169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346169,0.000000,0.000000,0.250000,0,0);}
.m9b_c00399{transform:matrix(0.346822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346822,0.000000,0.000000,0.250000,0,0);}
.ma9_c00399{transform:matrix(0.347698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347698,0.000000,0.000000,0.250000,0,0);}
.m68_c00399{transform:matrix(0.348424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348424,0.000000,0.000000,0.250000,0,0);}
.m6c_c00399{transform:matrix(0.350552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350552,0.000000,0.000000,0.250000,0,0);}
.mac_c00399{transform:matrix(0.351977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351977,0.000000,0.000000,0.250000,0,0);}
.m29_c00399{transform:matrix(0.352105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352105,0.000000,0.000000,0.250000,0,0);}
.m8_c00399{transform:matrix(0.352428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352428,0.000000,0.000000,0.250000,0,0);}
.m4e_c00399{transform:matrix(0.353685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353685,0.000000,0.000000,0.250000,0,0);}
.ma_c00399{transform:matrix(0.354447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354447,0.000000,0.000000,0.250000,0,0);}
.mcb_c00399{transform:matrix(0.354694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354694,0.000000,0.000000,0.250000,0,0);}
.m62_c00399{transform:matrix(0.356605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356605,0.000000,0.000000,0.250000,0,0);}
.m3b_c00399{transform:matrix(0.356623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356623,0.000000,0.000000,0.250000,0,0);}
.m41_c00399{transform:matrix(0.356907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356907,0.000000,0.000000,0.250000,0,0);}
.m4_c00399{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.mad_c00399{transform:matrix(0.361780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361780,0.000000,0.000000,0.250000,0,0);}
.m55_c00399{transform:matrix(0.363517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363517,0.000000,0.000000,0.250000,0,0);}
.mbe_c00399{transform:matrix(0.363663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363663,0.000000,0.000000,0.250000,0,0);}
.m60_c00399{transform:matrix(0.364063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364063,0.000000,0.000000,0.250000,0,0);}
.m10_c00399{transform:matrix(0.365081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365081,0.000000,0.000000,0.250000,0,0);}
.md4_c00399{transform:matrix(0.365510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365510,0.000000,0.000000,0.250000,0,0);}
.me_c00399{transform:matrix(0.366332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366332,0.000000,0.000000,0.250000,0,0);}
.m9_c00399{transform:matrix(0.367917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367917,0.000000,0.000000,0.250000,0,0);}
.m7f_c00399{transform:matrix(0.368438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368438,0.000000,0.000000,0.250000,0,0);}
.m2f_c00399{transform:matrix(0.369225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369225,0.000000,0.000000,0.250000,0,0);}
.mf_c00399{transform:matrix(0.370742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370742,0.000000,0.000000,0.250000,0,0);}
.m48_c00399{transform:matrix(0.372418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372418,0.000000,0.000000,0.250000,0,0);}
.m92_c00399{transform:matrix(0.373606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373606,0.000000,0.000000,0.250000,0,0);}
.mba_c00399{transform:matrix(0.374487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374487,0.000000,0.000000,0.250000,0,0);}
.m64_c00399{transform:matrix(0.374654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374654,0.000000,0.000000,0.250000,0,0);}
.m91_c00399{transform:matrix(0.374783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374783,0.000000,0.000000,0.250000,0,0);}
.m99_c00399{transform:matrix(0.376579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376579,0.000000,0.000000,0.250000,0,0);}
.m5_c00399{transform:matrix(0.377513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377513,0.000000,0.000000,0.250000,0,0);}
.mb4_c00399{transform:matrix(0.380782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380782,0.000000,0.000000,0.250000,0,0);}
.m2a_c00399{transform:matrix(0.384031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384031,0.000000,0.000000,0.250000,0,0);}
.md8_c00399{transform:matrix(0.389288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389288,0.000000,0.000000,0.250000,0,0);}
.m89_c00399{transform:matrix(0.397385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397385,0.000000,0.000000,0.250000,0,0);}
.m1d_c00399{transform:matrix(0.400492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400492,0.000000,0.000000,0.250000,0,0);}
.m33_c00399{transform:matrix(0.403163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403163,0.000000,0.000000,0.250000,0,0);}
.ma0_c00399{transform:matrix(0.447070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447070,0.000000,0.000000,0.250000,0,0);}
.m3a_c00399{transform:matrix(0.454574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454574,0.000000,0.000000,0.250000,0,0);}
.m83_c00399{transform:matrix(0.478023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478023,0.000000,0.000000,0.250000,0,0);}
.mcf_c00399{transform:matrix(0.499990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499990,0.000000,0.000000,0.250000,0,0);}
.v0_c00399{vertical-align:0.000000px;}
.v1_c00399{vertical-align:1.445400px;}
.v4_c00399{vertical-align:27.066600px;}
.v2_c00399{vertical-align:34.214400px;}
.v3_c00399{vertical-align:67.003200px;}
.lsa_c00399{letter-spacing:-2.515590px;}
.ls1e_c00399{letter-spacing:-2.328718px;}
.ls16_c00399{letter-spacing:-2.252250px;}
.ls11_c00399{letter-spacing:-1.868724px;}
.ls26_c00399{letter-spacing:-1.832787px;}
.lse_c00399{letter-spacing:-1.774080px;}
.ls25_c00399{letter-spacing:-1.473417px;}
.ls14_c00399{letter-spacing:-1.444667px;}
.ls1c_c00399{letter-spacing:-1.336856px;}
.ls6_c00399{letter-spacing:-1.201665px;}
.ls17_c00399{letter-spacing:-0.900900px;}
.ls9_c00399{letter-spacing:0.000000px;}
.ls20_c00399{letter-spacing:0.035937px;}
.lsc_c00399{letter-spacing:0.043124px;}
.ls1_c00399{letter-spacing:0.093436px;}
.ls13_c00399{letter-spacing:0.150935px;}
.ls24_c00399{letter-spacing:0.355568px;}
.ls0_c00399{letter-spacing:0.452806px;}
.lsd_c00399{letter-spacing:0.892109px;}
.ls3_c00399{letter-spacing:1.214671px;}
.ls1b_c00399{letter-spacing:1.306998px;}
.ls1d_c00399{letter-spacing:1.832787px;}
.ls12_c00399{letter-spacing:2.335905px;}
.lsf_c00399{letter-spacing:2.414966px;}
.ls1a_c00399{letter-spacing:2.445310px;}
.lsb_c00399{letter-spacing:2.896522px;}
.ls19_c00399{letter-spacing:3.049200px;}
.ls7_c00399{letter-spacing:3.060712px;}
.ls1f_c00399{letter-spacing:3.564000px;}
.ls8_c00399{letter-spacing:3.593700px;}
.ls2_c00399{letter-spacing:3.880800px;}
.ls23_c00399{letter-spacing:9.979398px;}
.ls18_c00399{letter-spacing:15.681798px;}
.ls22_c00399{letter-spacing:21.384000px;}
.ls21_c00399{letter-spacing:47.044800px;}
.ls10_c00399{letter-spacing:49.896198px;}
.ls15_c00399{letter-spacing:51.321798px;}
.ls4_c00399{letter-spacing:117.416376px;}
.ls5_c00399{letter-spacing:985.417488px;}
.sc__c00399{text-shadow:none;}
.sc0_c00399{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00399{-webkit-text-stroke:0px transparent;}
.sc0_c00399{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00399{word-spacing:-18.449098px;}
.ws8_c00399{word-spacing:-18.004437px;}
.ws3_c00399{word-spacing:-17.968500px;}
.ws9_c00399{word-spacing:-16.495083px;}
.ws2_c00399{word-spacing:-16.099776px;}
.ws6_c00399{word-spacing:-15.639782px;}
.ws5_c00399{word-spacing:-2.235281px;}
.ws1_c00399{word-spacing:-2.098721px;}
.wsa_c00399{word-spacing:0.000000px;}
.ws7_c00399{word-spacing:6.109290px;}
.ws4_c00399{word-spacing:8.553006px;}
._1a_c00399{margin-left:-18.594675px;}
._18_c00399{margin-left:-17.034534px;}
._14_c00399{margin-left:-10.421730px;}
._17_c00399{margin-left:-6.253038px;}
._1e_c00399{margin-left:-5.103054px;}
._6_c00399{margin-left:-3.364564px;}
._13_c00399{margin-left:-1.884247px;}
._16_c00399{width:1.365606px;}
._15_c00399{width:3.162060px;}
._1b_c00399{width:4.599342px;}
._0_c00399{width:6.857102px;}
._8_c00399{width:8.192844px;}
._7_c00399{width:10.277388px;}
._1_c00399{width:12.434202px;}
._19_c00399{width:13.871682px;}
._10_c00399{width:16.459146px;}
._1d_c00399{width:19.262232px;}
._f_c00399{width:20.412216px;}
._11_c00399{width:21.849696px;}
._d_c00399{width:23.530399px;}
._b_c00399{width:25.515270px;}
._4_c00399{width:26.952750px;}
._12_c00399{width:33.556981px;}
._a_c00399{width:35.118785px;}
._e_c00399{width:38.452590px;}
._5_c00399{width:39.961944px;}
._1c_c00399{width:41.838424px;}
._3_c00399{width:44.312400px;}
._9_c00399{width:45.424368px;}
._c_c00399{width:48.011832px;}
._2_c00399{width:53.096670px;}
._1f_c00399{width:332.066592px;}
.fc0_c00399{color:transparent;}
.fs19_c00399{font-size:9.979398px;}
.fsc_c00399{font-size:15.681798px;}
.fs18_c00399{font-size:21.384000px;}
.fs1c_c00399{font-size:22.572000px;}
.fs1a_c00399{font-size:24.354000px;}
.fsb_c00399{font-size:25.740000px;}
.fs8_c00399{font-size:27.720000px;}
.fsd_c00399{font-size:30.492000px;}
.fs13_c00399{font-size:33.264000px;}
.fs15_c00399{font-size:39.600000px;}
.fs1b_c00399{font-size:42.768000px;}
.fs10_c00399{font-size:45.540000px;}
.fs17_c00399{font-size:47.044800px;}
.fsf_c00399{font-size:48.906198px;}
.fs7_c00399{font-size:49.896198px;}
.fs3_c00399{font-size:50.688000px;}
.fs9_c00399{font-size:51.321798px;}
.fs4_c00399{font-size:59.400000px;}
.fse_c00399{font-size:60.984000px;}
.fs5_c00399{font-size:62.568000px;}
.fsa_c00399{font-size:64.350000px;}
.fs11_c00399{font-size:66.528000px;}
.fs14_c00399{font-size:68.112198px;}
.fs6_c00399{font-size:69.696198px;}
.fs0_c00399{font-size:70.686198px;}
.fs2_c00399{font-size:70.884000px;}
.fs16_c00399{font-size:71.280000px;}
.fs1_c00399{font-size:71.874000px;}
.fs12_c00399{font-size:72.864000px;}
.y2c_c00399{bottom:-1.157265px;}
.y0_c00399{bottom:0.000000px;}
.y1_c00399{bottom:76.500000px;}
.y2b_c00399{bottom:143.892585px;}
.y28_c00399{bottom:171.335385px;}
.y2a_c00399{bottom:174.542985px;}
.y27_c00399{bottom:174.904335px;}
.y25_c00399{bottom:175.260735px;}
.y29_c00399{bottom:182.388735px;}
.y26_c00399{bottom:185.596335px;}
.y24_c00399{bottom:210.182985px;}
.y23_c00399{bottom:254.025135px;}
.y21_c00399{bottom:307.841535px;}
.y22_c00399{bottom:308.192985px;}
.y20_c00399{bottom:340.268985px;}
.y1f_c00399{bottom:372.706335px;}
.y1e_c00399{bottom:396.585135px;}
.y1c_c00399{bottom:396.941535px;}
.y1b_c00399{bottom:404.782335px;}
.y1a_c00399{bottom:405.138735px;}
.y1d_c00399{bottom:405.495135px;}
.y19_c00399{bottom:437.214735px;}
.y18_c00399{bottom:465.721785px;}
.y17_c00399{bottom:469.642185px;}
.y16_c00399{bottom:501.723135px;}
.y15_c00399{bottom:531.299385px;}
.y14_c00399{bottom:532.373535px;}
.y11_c00399{bottom:534.506985px;}
.y13_c00399{bottom:535.224735px;}
.y12_c00399{bottom:545.203935px;}
.y10_c00399{bottom:568.013535px;}
.yf_c00399{bottom:600.802335px;}
.ye_c00399{bottom:645.703785px;}
.yd_c00399{bottom:665.305785px;}
.yc_c00399{bottom:697.381785px;}
.yb_c00399{bottom:730.170585px;}
.ya_c00399{bottom:762.251535px;}
.y9_c00399{bottom:793.966185px;}
.y8_c00399{bottom:826.403535px;}
.y7_c00399{bottom:849.569535px;}
.y5_c00399{bottom:857.761785px;}
.y6_c00399{bottom:858.479535px;}
.y4_c00399{bottom:890.550585px;}
.y3_c00399{bottom:923.339385px;}
.y2_c00399{bottom:1076.591385px;}
.h19_c00399{height:6.646279px;}
.hd_c00399{height:10.444077px;}
.h18_c00399{height:14.241744px;}
.h1a_c00399{height:23.902119px;}
.hc_c00399{height:25.262402px;}
.h9_c00399{height:28.911094px;}
.he_c00399{height:29.911342px;}
.h17_c00399{height:31.331837px;}
.h8_c00399{height:33.230868px;}
.ha_c00399{height:34.180317px;}
.h15_c00399{height:41.301563px;}
.h11_c00399{height:47.496797px;}
.h10_c00399{height:47.998759px;}
.h5_c00399{height:49.747500px;}
.h1b_c00399{height:50.608491px;}
.h6_c00399{height:61.836328px;}
.hf_c00399{height:63.604406px;}
.h7_c00399{height:65.256469px;}
.h14_c00399{height:66.848397px;}
.hb_c00399{height:67.115039px;}
.h4_c00399{height:69.568770px;}
.h3_c00399{height:70.540400px;}
.h16_c00399{height:71.836875px;}
.h2_c00399{height:73.723496px;}
.h13_c00399{height:101.696512px;}
.h12_c00399{height:104.754800px;}
.h1_c00399{height:1110.000000px;}
.h0_c00399{height:1263.000000px;}
.w1_c00399{width:775.500000px;}
.w0_c00399{width:892.500000px;}
.x0_c00399{left:0.000000px;}
.x1_c00399{left:58.500000px;}
.x2d_c00399{left:93.739785px;}
.x3_c00399{left:94.937685px;}
.x79_c00399{left:96.353385px;}
.x2e_c00399{left:104.926785px;}
.x20_c00399{left:115.430685px;}
.x67_c00399{left:116.687985px;}
.x34_c00399{left:126.781035px;}
.x7a_c00399{left:127.978935px;}
.x2f_c00399{left:137.002785px;}
.x71_c00399{left:138.438285px;}
.x10_c00399{left:148.407585px;}
.x53_c00399{left:151.471635px;}
.x74_c00399{left:156.203835px;}
.x35_c00399{left:158.866935px;}
.x7f_c00399{left:160.332135px;}
.x5f_c00399{left:168.875835px;}
.x4_c00399{left:170.128185px;}
.x4f_c00399{left:180.043035px;}
.x21_c00399{left:181.151835px;}
.x6f_c00399{left:182.265585px;}
.x5_c00399{left:192.888285px;}
.x30_c00399{left:202.382385px;}
.x6c_c00399{left:203.629785px;}
.x3d_c00399{left:214.138635px;}
.x11_c00399{left:226.102785px;}
.x44_c00399{left:228.642135px;}
.x62_c00399{left:230.453835px;}
.x45_c00399{left:231.537885px;}
.x12_c00399{left:235.883985px;}
.x68_c00399{left:237.507585px;}
.x6_c00399{left:247.853085px;}
.x75_c00399{left:250.303335px;}
.x3e_c00399{left:258.168885px;}
.x31_c00399{left:259.213335px;}
.x58_c00399{left:260.520135px;}
.x22_c00399{left:269.707335px;}
.x6d_c00399{left:272.702085px;}
.x73_c00399{left:273.746535px;}
.x13_c00399{left:280.498335px;}
.x76_c00399{left:282.032835px;}
.x7_c00399{left:292.007085px;}
.x2c_c00399{left:300.184485px;}
.x14_c00399{left:302.520885px;}
.x8_c00399{left:313.381185px;}
.x32_c00399{left:314.767185px;}
.x36_c00399{left:324.939435px;}
.x15_c00399{left:336.190785px;}
.x23_c00399{left:346.937235px;}
.x60_c00399{left:347.956935px;}
.x9_c00399{left:349.684485px;}
.x37_c00399{left:357.411435px;}
.x63_c00399{left:358.465785px;}
.x72_c00399{left:359.723085px;}
.x46_c00399{left:369.360735px;}
.xa_c00399{left:370.410135px;}
.x16_c00399{left:380.344785px;}
.x50_c00399{left:381.849585px;}
.x3f_c00399{left:391.818885px;}
.x59_c00399{left:394.590885px;}
.xb_c00399{left:402.020835px;}
.x69_c00399{left:403.030635px;}
.xc_c00399{left:413.366235px;}
.x47_c00399{left:424.612635px;}
.x77_c00399{left:426.008535px;}
.x17_c00399{left:436.012485px;}
.x24_c00399{left:441.516885px;}
.x38_c00399{left:446.917335px;}
.x48_c00399{left:456.173835px;}
.x40_c00399{left:458.406285px;}
.x6e_c00399{left:462.376185px;}
.x5c_c00399{left:467.578635px;}
.x18_c00399{left:468.830985px;}
.x70_c00399{left:469.875435px;}
.x64_c00399{left:480.027885px;}
.x51_c00399{left:482.171235px;}
.x19_c00399{left:489.675435px;}
.x25_c00399{left:490.942635px;}
.x4d_c00399{left:491.977185px;}
.x65_c00399{left:497.234085px;}
.x49_c00399{left:501.560385px;}
.x41_c00399{left:503.040435px;}
.x52_c00399{left:504.540285px;}
.x1a_c00399{left:513.014685px;}
.x6a_c00399{left:514.385835px;}
.xd_c00399{left:524.374935px;}
.x1b_c00399{left:534.908535px;}
.x5a_c00399{left:538.729935px;}
.x26_c00399{left:545.031285px;}
.x39_c00399{left:546.145035px;}
.x7b_c00399{left:549.911985px;}
.x33_c00399{left:555.609435px;}
.xe_c00399{left:556.832085px;}
.x27_c00399{left:557.901285px;}
.x5b_c00399{left:560.207985px;}
.x6b_c00399{left:567.014235px;}
.x4e_c00399{left:569.286285px;}
.x3a_c00399{left:578.023035px;}
.x7c_c00399{left:579.314985px;}
.x61_c00399{left:580.364385px;}
.x1c_c00399{left:589.640685px;}
.x55_c00399{left:591.348435px;}
.x4a_c00399{left:600.466335px;}
.x78_c00399{left:601.698885px;}
.x28_c00399{left:603.797685px;}
.x1d_c00399{left:611.593935px;}
.x7d_c00399{left:613.450185px;}
.x42_c00399{left:622.558185px;}
.x5d_c00399{left:623.746185px;}
.x1e_c00399{left:634.883685px;}
.x56_c00399{left:645.239085px;}
.xf_c00399{left:646.570635px;}
.x5e_c00399{left:649.703985px;}
.x54_c00399{left:657.619035px;}
.x3b_c00399{left:667.454685px;}
.x4b_c00399{left:670.444485px;}
.x80_c00399{left:678.597135px;}
.x29_c00399{left:679.765335px;}
.x2_c00399{left:680.898885px;}
.x1f_c00399{left:689.407935px;}
.x57_c00399{left:699.916785px;}
.x3c_c00399{left:701.540385px;}
.x2a_c00399{left:711.385935px;}
.x7e_c00399{left:714.821235px;}
.x4c_c00399{left:722.548185px;}
.x43_c00399{left:733.952985px;}
.x2b_c00399{left:745.001385px;}
.x66_c00399{left:747.699135px;}
@media print{
.v0_c00399{vertical-align:0.000000pt;}
.v1_c00399{vertical-align:1.284800pt;}
.v4_c00399{vertical-align:24.059200pt;}
.v2_c00399{vertical-align:30.412800pt;}
.v3_c00399{vertical-align:59.558400pt;}
.lsa_c00399{letter-spacing:-2.236080pt;}
.ls1e_c00399{letter-spacing:-2.069971pt;}
.ls16_c00399{letter-spacing:-2.002000pt;}
.ls11_c00399{letter-spacing:-1.661088pt;}
.ls26_c00399{letter-spacing:-1.629144pt;}
.lse_c00399{letter-spacing:-1.576960pt;}
.ls25_c00399{letter-spacing:-1.309704pt;}
.ls14_c00399{letter-spacing:-1.284149pt;}
.ls1c_c00399{letter-spacing:-1.188317pt;}
.ls6_c00399{letter-spacing:-1.068147pt;}
.ls17_c00399{letter-spacing:-0.800800pt;}
.ls9_c00399{letter-spacing:0.000000pt;}
.ls20_c00399{letter-spacing:0.031944pt;}
.lsc_c00399{letter-spacing:0.038333pt;}
.ls1_c00399{letter-spacing:0.083054pt;}
.ls13_c00399{letter-spacing:0.134165pt;}
.ls24_c00399{letter-spacing:0.316061pt;}
.ls0_c00399{letter-spacing:0.402494pt;}
.lsd_c00399{letter-spacing:0.792986pt;}
.ls3_c00399{letter-spacing:1.079707pt;}
.ls1b_c00399{letter-spacing:1.161776pt;}
.ls1d_c00399{letter-spacing:1.629144pt;}
.ls12_c00399{letter-spacing:2.076360pt;}
.lsf_c00399{letter-spacing:2.146637pt;}
.ls1a_c00399{letter-spacing:2.173609pt;}
.lsb_c00399{letter-spacing:2.574686pt;}
.ls19_c00399{letter-spacing:2.710400pt;}
.ls7_c00399{letter-spacing:2.720633pt;}
.ls1f_c00399{letter-spacing:3.168000pt;}
.ls8_c00399{letter-spacing:3.194400pt;}
.ls2_c00399{letter-spacing:3.449600pt;}
.ls23_c00399{letter-spacing:8.870576pt;}
.ls18_c00399{letter-spacing:13.939376pt;}
.ls22_c00399{letter-spacing:19.008000pt;}
.ls21_c00399{letter-spacing:41.817600pt;}
.ls10_c00399{letter-spacing:44.352176pt;}
.ls15_c00399{letter-spacing:45.619376pt;}
.ls4_c00399{letter-spacing:104.370112pt;}
.ls5_c00399{letter-spacing:875.926656pt;}
.ws0_c00399{word-spacing:-16.399198pt;}
.ws8_c00399{word-spacing:-16.003944pt;}
.ws3_c00399{word-spacing:-15.972000pt;}
.ws9_c00399{word-spacing:-14.662296pt;}
.ws2_c00399{word-spacing:-14.310912pt;}
.ws6_c00399{word-spacing:-13.902029pt;}
.ws5_c00399{word-spacing:-1.986917pt;}
.ws1_c00399{word-spacing:-1.865530pt;}
.wsa_c00399{word-spacing:0.000000pt;}
.ws7_c00399{word-spacing:5.430480pt;}
.ws4_c00399{word-spacing:7.602672pt;}
._1a_c00399{margin-left:-16.528600pt;}
._18_c00399{margin-left:-15.141808pt;}
._14_c00399{margin-left:-9.263760pt;}
._17_c00399{margin-left:-5.558256pt;}
._1e_c00399{margin-left:-4.536048pt;}
._6_c00399{margin-left:-2.990724pt;}
._13_c00399{margin-left:-1.674886pt;}
._16_c00399{width:1.213872pt;}
._15_c00399{width:2.810720pt;}
._1b_c00399{width:4.088304pt;}
._0_c00399{width:6.095202pt;}
._8_c00399{width:7.282528pt;}
._7_c00399{width:9.135456pt;}
._1_c00399{width:11.052624pt;}
._19_c00399{width:12.330384pt;}
._10_c00399{width:14.630352pt;}
._1d_c00399{width:17.121984pt;}
._f_c00399{width:18.144192pt;}
._11_c00399{width:19.421952pt;}
._d_c00399{width:20.915910pt;}
._b_c00399{width:22.680240pt;}
._4_c00399{width:23.958000pt;}
._12_c00399{width:29.828427pt;}
._a_c00399{width:31.216698pt;}
._e_c00399{width:34.180080pt;}
._5_c00399{width:35.521728pt;}
._1c_c00399{width:37.189710pt;}
._3_c00399{width:39.388800pt;}
._9_c00399{width:40.377216pt;}
._c_c00399{width:42.677184pt;}
._2_c00399{width:47.197040pt;}
._1f_c00399{width:295.170304pt;}
.fs19_c00399{font-size:8.870576pt;}
.fsc_c00399{font-size:13.939376pt;}
.fs18_c00399{font-size:19.008000pt;}
.fs1c_c00399{font-size:20.064000pt;}
.fs1a_c00399{font-size:21.648000pt;}
.fsb_c00399{font-size:22.880000pt;}
.fs8_c00399{font-size:24.640000pt;}
.fsd_c00399{font-size:27.104000pt;}
.fs13_c00399{font-size:29.568000pt;}
.fs15_c00399{font-size:35.200000pt;}
.fs1b_c00399{font-size:38.016000pt;}
.fs10_c00399{font-size:40.480000pt;}
.fs17_c00399{font-size:41.817600pt;}
.fsf_c00399{font-size:43.472176pt;}
.fs7_c00399{font-size:44.352176pt;}
.fs3_c00399{font-size:45.056000pt;}
.fs9_c00399{font-size:45.619376pt;}
.fs4_c00399{font-size:52.800000pt;}
.fse_c00399{font-size:54.208000pt;}
.fs5_c00399{font-size:55.616000pt;}
.fsa_c00399{font-size:57.200000pt;}
.fs11_c00399{font-size:59.136000pt;}
.fs14_c00399{font-size:60.544176pt;}
.fs6_c00399{font-size:61.952176pt;}
.fs0_c00399{font-size:62.832176pt;}
.fs2_c00399{font-size:63.008000pt;}
.fs16_c00399{font-size:63.360000pt;}
.fs1_c00399{font-size:63.888000pt;}
.fs12_c00399{font-size:64.768000pt;}
.y2c_c00399{bottom:-1.028680pt;}
.y0_c00399{bottom:0.000000pt;}
.y1_c00399{bottom:68.000000pt;}
.y2b_c00399{bottom:127.904520pt;}
.y28_c00399{bottom:152.298120pt;}
.y2a_c00399{bottom:155.149320pt;}
.y27_c00399{bottom:155.470520pt;}
.y25_c00399{bottom:155.787320pt;}
.y29_c00399{bottom:162.123320pt;}
.y26_c00399{bottom:164.974520pt;}
.y24_c00399{bottom:186.829320pt;}
.y23_c00399{bottom:225.800120pt;}
.y21_c00399{bottom:273.636920pt;}
.y22_c00399{bottom:273.949320pt;}
.y20_c00399{bottom:302.461320pt;}
.y1f_c00399{bottom:331.294520pt;}
.y1e_c00399{bottom:352.520120pt;}
.y1c_c00399{bottom:352.836920pt;}
.y1b_c00399{bottom:359.806520pt;}
.y1a_c00399{bottom:360.123320pt;}
.y1d_c00399{bottom:360.440120pt;}
.y19_c00399{bottom:388.635320pt;}
.y18_c00399{bottom:413.974920pt;}
.y17_c00399{bottom:417.459720pt;}
.y16_c00399{bottom:445.976120pt;}
.y15_c00399{bottom:472.266120pt;}
.y14_c00399{bottom:473.220920pt;}
.y11_c00399{bottom:475.117320pt;}
.y13_c00399{bottom:475.755320pt;}
.y12_c00399{bottom:484.625720pt;}
.y10_c00399{bottom:504.900920pt;}
.yf_c00399{bottom:534.046520pt;}
.ye_c00399{bottom:573.958920pt;}
.yd_c00399{bottom:591.382920pt;}
.yc_c00399{bottom:619.894920pt;}
.yb_c00399{bottom:649.040520pt;}
.ya_c00399{bottom:677.556920pt;}
.y9_c00399{bottom:705.747720pt;}
.y8_c00399{bottom:734.580920pt;}
.y7_c00399{bottom:755.172920pt;}
.y5_c00399{bottom:762.454920pt;}
.y6_c00399{bottom:763.092920pt;}
.y4_c00399{bottom:791.600520pt;}
.y3_c00399{bottom:820.746120pt;}
.y2_c00399{bottom:956.970120pt;}
.h19_c00399{height:5.907804pt;}
.hd_c00399{height:9.283624pt;}
.h18_c00399{height:12.659328pt;}
.h1a_c00399{height:21.246328pt;}
.hc_c00399{height:22.455469pt;}
.h9_c00399{height:25.698750pt;}
.he_c00399{height:26.587859pt;}
.h17_c00399{height:27.850522pt;}
.h8_c00399{height:29.538549pt;}
.ha_c00399{height:30.382504pt;}
.h15_c00399{height:36.712500pt;}
.h11_c00399{height:42.219375pt;}
.h10_c00399{height:42.665563pt;}
.h5_c00399{height:44.220000pt;}
.h1b_c00399{height:44.985325pt;}
.h6_c00399{height:54.965625pt;}
.hf_c00399{height:56.537250pt;}
.h7_c00399{height:58.005750pt;}
.h14_c00399{height:59.420798pt;}
.hb_c00399{height:59.657812pt;}
.h4_c00399{height:61.838906pt;}
.h3_c00399{height:62.702578pt;}
.h16_c00399{height:63.855000pt;}
.h2_c00399{height:65.531996pt;}
.h13_c00399{height:90.396900pt;}
.h12_c00399{height:93.115378pt;}
.h1_c00399{height:986.666667pt;}
.h0_c00399{height:1122.666667pt;}
.w1_c00399{width:689.333333pt;}
.w0_c00399{width:793.333333pt;}
.x0_c00399{left:0.000000pt;}
.x1_c00399{left:52.000000pt;}
.x2d_c00399{left:83.324253pt;}
.x3_c00399{left:84.389053pt;}
.x79_c00399{left:85.647453pt;}
.x2e_c00399{left:93.268253pt;}
.x20_c00399{left:102.605053pt;}
.x67_c00399{left:103.722653pt;}
.x34_c00399{left:112.694253pt;}
.x7a_c00399{left:113.759053pt;}
.x2f_c00399{left:121.780253pt;}
.x71_c00399{left:123.056253pt;}
.x10_c00399{left:131.917853pt;}
.x53_c00399{left:134.641453pt;}
.x74_c00399{left:138.847853pt;}
.x35_c00399{left:141.215053pt;}
.x7f_c00399{left:142.517453pt;}
.x5f_c00399{left:150.111853pt;}
.x4_c00399{left:151.225053pt;}
.x4f_c00399{left:160.038253pt;}
.x21_c00399{left:161.023853pt;}
.x6f_c00399{left:162.013853pt;}
.x5_c00399{left:171.456253pt;}
.x30_c00399{left:179.895453pt;}
.x6c_c00399{left:181.004253pt;}
.x3d_c00399{left:190.345453pt;}
.x11_c00399{left:200.980253pt;}
.x44_c00399{left:203.237453pt;}
.x62_c00399{left:204.847853pt;}
.x45_c00399{left:205.811453pt;}
.x12_c00399{left:209.674653pt;}
.x68_c00399{left:211.117853pt;}
.x6_c00399{left:220.313853pt;}
.x75_c00399{left:222.491853pt;}
.x3e_c00399{left:229.483453pt;}
.x31_c00399{left:230.411853pt;}
.x58_c00399{left:231.573453pt;}
.x22_c00399{left:239.739853pt;}
.x6d_c00399{left:242.401853pt;}
.x73_c00399{left:243.330253pt;}
.x13_c00399{left:249.331853pt;}
.x76_c00399{left:250.695853pt;}
.x7_c00399{left:259.561853pt;}
.x2c_c00399{left:266.830653pt;}
.x14_c00399{left:268.907453pt;}
.x8_c00399{left:278.561053pt;}
.x32_c00399{left:279.793053pt;}
.x36_c00399{left:288.835053pt;}
.x15_c00399{left:298.836253pt;}
.x23_c00399{left:308.388653pt;}
.x60_c00399{left:309.295053pt;}
.x9_c00399{left:310.830653pt;}
.x37_c00399{left:317.699053pt;}
.x63_c00399{left:318.636253pt;}
.x72_c00399{left:319.753853pt;}
.x46_c00399{left:328.320653pt;}
.xa_c00399{left:329.253453pt;}
.x16_c00399{left:338.084253pt;}
.x50_c00399{left:339.421853pt;}
.x3f_c00399{left:348.283453pt;}
.x59_c00399{left:350.747453pt;}
.xb_c00399{left:357.351853pt;}
.x69_c00399{left:358.249453pt;}
.xc_c00399{left:367.436653pt;}
.x47_c00399{left:377.433453pt;}
.x77_c00399{left:378.674253pt;}
.x17_c00399{left:387.566653pt;}
.x24_c00399{left:392.459453pt;}
.x38_c00399{left:397.259853pt;}
.x48_c00399{left:405.487853pt;}
.x40_c00399{left:407.472253pt;}
.x6e_c00399{left:411.001053pt;}
.x5c_c00399{left:415.625453pt;}
.x18_c00399{left:416.738653pt;}
.x70_c00399{left:417.667053pt;}
.x64_c00399{left:426.691453pt;}
.x51_c00399{left:428.596653pt;}
.x19_c00399{left:435.267053pt;}
.x25_c00399{left:436.393453pt;}
.x4d_c00399{left:437.313053pt;}
.x65_c00399{left:441.985853pt;}
.x49_c00399{left:445.831453pt;}
.x41_c00399{left:447.147053pt;}
.x52_c00399{left:448.480253pt;}
.x1a_c00399{left:456.013053pt;}
.x6a_c00399{left:457.231853pt;}
.xd_c00399{left:466.111053pt;}
.x1b_c00399{left:475.474253pt;}
.x5a_c00399{left:478.871053pt;}
.x26_c00399{left:484.472253pt;}
.x39_c00399{left:485.462253pt;}
.x7b_c00399{left:488.810653pt;}
.x33_c00399{left:493.875053pt;}
.xe_c00399{left:494.961853pt;}
.x27_c00399{left:495.912253pt;}
.x5b_c00399{left:497.962653pt;}
.x6b_c00399{left:504.012653pt;}
.x4e_c00399{left:506.032253pt;}
.x3a_c00399{left:513.798253pt;}
.x7c_c00399{left:514.946653pt;}
.x61_c00399{left:515.879453pt;}
.x1c_c00399{left:524.125053pt;}
.x55_c00399{left:525.643053pt;}
.x4a_c00399{left:533.747853pt;}
.x78_c00399{left:534.843453pt;}
.x28_c00399{left:536.709053pt;}
.x1d_c00399{left:543.639053pt;}
.x7d_c00399{left:545.289053pt;}
.x42_c00399{left:553.385053pt;}
.x5d_c00399{left:554.441053pt;}
.x1e_c00399{left:564.341053pt;}
.x56_c00399{left:573.545853pt;}
.xf_c00399{left:574.729453pt;}
.x5e_c00399{left:577.514653pt;}
.x54_c00399{left:584.550253pt;}
.x3b_c00399{left:593.293053pt;}
.x4b_c00399{left:595.950653pt;}
.x80_c00399{left:603.197453pt;}
.x29_c00399{left:604.235853pt;}
.x2_c00399{left:605.243453pt;}
.x1f_c00399{left:612.807053pt;}
.x57_c00399{left:622.148253pt;}
.x3c_c00399{left:623.591453pt;}
.x2a_c00399{left:632.343053pt;}
.x7e_c00399{left:635.396653pt;}
.x4c_c00399{left:642.265053pt;}
.x43_c00399{left:652.402653pt;}
.x2b_c00399{left:662.223453pt;}
.x66_c00399{left:664.621453pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_aff4fc4d398776fbbf596e27.woff2')format("woff");}.ff1_c00400{font-family:ff1_c00400;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00400;src:url('chunks/assets/font_5c64223d26a34b188d67e246.woff2')format("woff");}.ff2_c00400{font-family:ff2_c00400;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00400;src:url('chunks/assets/font_66af158584ae875ddc96f01e.woff2')format("woff");}.ff3_c00400{font-family:ff3_c00400;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00400;src:url('chunks/assets/font_e9a0c80efc2c4d45b32decee.woff2')format("woff");}.ff4_c00400{font-family:ff4_c00400;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00400;src:url('chunks/assets/font_c7831da1bb460e1da9eafc28.woff2')format("woff");}.ff5_c00400{font-family:ff5_c00400;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00400;src:url('chunks/assets/font_790f4c89554b241198354d6f.woff2')format("woff");}.ff6_c00400{font-family:ff6_c00400;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m92_c00400{transform:matrix(0.057144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.057144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.057144,0.000000,0.000000,0.250000,0,0);}
.m5_c00400{transform:matrix(0.073530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073530,0.000000,0.000000,0.250000,0,0);}
.m23_c00400{transform:matrix(0.081149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081149,0.000000,0.000000,0.250000,0,0);}
.md6_c00400{transform:matrix(0.108956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108956,0.000000,0.000000,0.250000,0,0);}
.m102_c00400{transform:matrix(0.110958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110958,0.000000,0.000000,0.250000,0,0);}
.m4_c00400{transform:matrix(0.125001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125001,0.000000,0.000000,0.250000,0,0);}
.mfa_c00400{transform:matrix(0.140108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140108,0.000000,0.000000,0.250000,0,0);}
.m100_c00400{transform:matrix(0.161210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161210,0.000000,0.000000,0.250000,0,0);}
.m94_c00400{transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);}
.m3c_c00400{transform:matrix(0.170164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170164,0.000000,0.000000,0.250000,0,0);}
.m93_c00400{transform:matrix(0.171429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171429,0.000000,0.000000,0.250000,0,0);}
.m20_c00400{transform:matrix(0.174387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174387,0.000000,0.000000,0.250000,0,0);}
.mfe_c00400{transform:matrix(0.176823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176823,0.000000,0.000000,0.250000,0,0);}
.mb4_c00400{transform:matrix(0.184049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184049,0.000000,0.000000,0.250000,0,0);}
.m22_c00400{transform:matrix(0.186740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186740,0.000000,0.000000,0.250000,0,0);}
.m41_c00400{transform:matrix(0.192660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192660,0.000000,0.000000,0.250000,0,0);}
.mae_c00400{transform:matrix(0.192871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192871,0.000000,0.000000,0.250000,0,0);}
.m26_c00400{transform:matrix(0.195462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195462,0.000000,0.000000,0.250000,0,0);}
.m1c_c00400{transform:matrix(0.196148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196148,0.000000,0.000000,0.250000,0,0);}
.m58_c00400{transform:matrix(0.199948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199948,0.000000,0.000000,0.250000,0,0);}
.mc_c00400{transform:matrix(0.207034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207034,0.000000,0.000000,0.250000,0,0);}
.m79_c00400{transform:matrix(0.210102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210102,0.000000,0.000000,0.250000,0,0);}
.mc8_c00400{transform:matrix(0.212406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212406,0.000000,0.000000,0.250000,0,0);}
.m4d_c00400{transform:matrix(0.212533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212533,0.000000,0.000000,0.250000,0,0);}
.m9_c00400{transform:matrix(0.216324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216324,0.000000,0.000000,0.250000,0,0);}
.m60_c00400{transform:matrix(0.232939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232939,0.000000,0.000000,0.250000,0,0);}
.m1d_c00400{transform:matrix(0.233966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233966,0.000000,0.000000,0.250000,0,0);}
.m66_c00400{transform:matrix(0.234541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234541,0.000000,0.000000,0.250000,0,0);}
.maa_c00400{transform:matrix(0.239510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239510,0.000000,0.000000,0.250000,0,0);}
.m12_c00400{transform:matrix(0.241239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241239,0.000000,0.000000,0.250000,0,0);}
.m2_c00400{transform:matrix(0.243853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243853,0.000000,0.000000,0.250000,0,0);}
.m91_c00400{transform:matrix(0.245109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245109,0.000000,0.000000,0.250000,0,0);}
.m2a_c00400{transform:matrix(0.247396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247396,0.000000,0.000000,0.250000,0,0);}
.mf9_c00400{transform:matrix(0.247505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247505,0.000000,0.000000,0.250000,0,0);}
.m0_c00400{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00400{transform:matrix(0.250452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250452,0.000000,0.000000,0.250000,0,0);}
.m2b_c00400{transform:matrix(0.253301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253301,0.000000,0.000000,0.250000,0,0);}
.mda_c00400{transform:matrix(0.254132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254132,0.000000,0.000000,0.250000,0,0);}
.mb7_c00400{transform:matrix(0.254560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254560,0.000000,0.000000,0.250000,0,0);}
.m90_c00400{transform:matrix(0.256218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256218,0.000000,0.000000,0.250000,0,0);}
.me9_c00400{transform:matrix(0.256786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256786,0.000000,0.000000,0.250000,0,0);}
.mdb_c00400{transform:matrix(0.258386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258386,0.000000,0.000000,0.250000,0,0);}
.ma2_c00400{transform:matrix(0.259177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259177,0.000000,0.000000,0.250000,0,0);}
.m76_c00400{transform:matrix(0.259939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259939,0.000000,0.000000,0.250000,0,0);}
.ma_c00400{transform:matrix(0.263999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263999,0.000000,0.000000,0.250000,0,0);}
.ma5_c00400{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.mea_c00400{transform:matrix(0.265354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265354,0.000000,0.000000,0.250000,0,0);}
.mad_c00400{transform:matrix(0.265974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265974,0.000000,0.000000,0.250000,0,0);}
.ma6_c00400{transform:matrix(0.266388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266388,0.000000,0.000000,0.250000,0,0);}
.m5e_c00400{transform:matrix(0.266722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266722,0.000000,0.000000,0.250000,0,0);}
.m4a_c00400{transform:matrix(0.267461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267461,0.000000,0.000000,0.250000,0,0);}
.m7f_c00400{transform:matrix(0.267543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267543,0.000000,0.000000,0.250000,0,0);}
.m1b_c00400{transform:matrix(0.269197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269197,0.000000,0.000000,0.250000,0,0);}
.m69_c00400{transform:matrix(0.271292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271292,0.000000,0.000000,0.250000,0,0);}
.m61_c00400{transform:matrix(0.271471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271471,0.000000,0.000000,0.250000,0,0);}
.m3a_c00400{transform:matrix(0.271661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271661,0.000000,0.000000,0.250000,0,0);}
.m72_c00400{transform:matrix(0.271883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271883,0.000000,0.000000,0.250000,0,0);}
.m75_c00400{transform:matrix(0.272222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272222,0.000000,0.000000,0.250000,0,0);}
.mb9_c00400{transform:matrix(0.272651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272651,0.000000,0.000000,0.250000,0,0);}
.m80_c00400{transform:matrix(0.272999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272999,0.000000,0.000000,0.250000,0,0);}
.mfc_c00400{transform:matrix(0.273587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273587,0.000000,0.000000,0.250000,0,0);}
.m2c_c00400{transform:matrix(0.275170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275170,0.000000,0.000000,0.250000,0,0);}
.mab_c00400{transform:matrix(0.275634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275634,0.000000,0.000000,0.250000,0,0);}
.m105_c00400{transform:matrix(0.276690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276690,0.000000,0.000000,0.250000,0,0);}
.mf3_c00400{transform:matrix(0.276885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276885,0.000000,0.000000,0.250000,0,0);}
.m103_c00400{transform:matrix(0.277785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277785,0.000000,0.000000,0.250000,0,0);}
.m29_c00400{transform:matrix(0.277797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277797,0.000000,0.000000,0.250000,0,0);}
.mc3_c00400{transform:matrix(0.278472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278472,0.000000,0.000000,0.250000,0,0);}
.m84_c00400{transform:matrix(0.278559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278559,0.000000,0.000000,0.250000,0,0);}
.m32_c00400{transform:matrix(0.280398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280398,0.000000,0.000000,0.250000,0,0);}
.mf8_c00400{transform:matrix(0.281593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281593,0.000000,0.000000,0.250000,0,0);}
.mcb_c00400{transform:matrix(0.281939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281939,0.000000,0.000000,0.250000,0,0);}
.mb3_c00400{transform:matrix(0.282440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282440,0.000000,0.000000,0.250000,0,0);}
.m73_c00400{transform:matrix(0.282565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282565,0.000000,0.000000,0.250000,0,0);}
.m13_c00400{transform:matrix(0.283815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283815,0.000000,0.000000,0.250000,0,0);}
.mc1_c00400{transform:matrix(0.284936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284936,0.000000,0.000000,0.250000,0,0);}
.mff_c00400{transform:matrix(0.286031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286031,0.000000,0.000000,0.250000,0,0);}
.m55_c00400{transform:matrix(0.286579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286579,0.000000,0.000000,0.250000,0,0);}
.m1_c00400{transform:matrix(0.286643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286643,0.000000,0.000000,0.250000,0,0);}
.mbb_c00400{transform:matrix(0.288641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288641,0.000000,0.000000,0.250000,0,0);}
.m7e_c00400{transform:matrix(0.288934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288934,0.000000,0.000000,0.250000,0,0);}
.mbe_c00400{transform:matrix(0.289471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289471,0.000000,0.000000,0.250000,0,0);}
.me1_c00400{transform:matrix(0.290215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290215,0.000000,0.000000,0.250000,0,0);}
.m63_c00400{transform:matrix(0.290243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290243,0.000000,0.000000,0.250000,0,0);}
.ma0_c00400{transform:matrix(0.290253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290253,0.000000,0.000000,0.250000,0,0);}
.m44_c00400{transform:matrix(0.290947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290947,0.000000,0.000000,0.250000,0,0);}
.m25_c00400{transform:matrix(0.291019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291019,0.000000,0.000000,0.250000,0,0);}
.m96_c00400{transform:matrix(0.291418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291418,0.000000,0.000000,0.250000,0,0);}
.m3e_c00400{transform:matrix(0.292171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292171,0.000000,0.000000,0.250000,0,0);}
.m64_c00400{transform:matrix(0.292187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292187,0.000000,0.000000,0.250000,0,0);}
.m9f_c00400{transform:matrix(0.292626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292626,0.000000,0.000000,0.250000,0,0);}
.m42_c00400{transform:matrix(0.292683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292683,0.000000,0.000000,0.250000,0,0);}
.m9b_c00400{transform:matrix(0.293030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293030,0.000000,0.000000,0.250000,0,0);}
.mb0_c00400{transform:matrix(0.293350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293350,0.000000,0.000000,0.250000,0,0);}
.md1_c00400{transform:matrix(0.293579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293579,0.000000,0.000000,0.250000,0,0);}
.m31_c00400{transform:matrix(0.293688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293688,0.000000,0.000000,0.250000,0,0);}
.m2e_c00400{transform:matrix(0.294235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294235,0.000000,0.000000,0.250000,0,0);}
.me6_c00400{transform:matrix(0.295539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295539,0.000000,0.000000,0.250000,0,0);}
.m40_c00400{transform:matrix(0.295546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295546,0.000000,0.000000,0.250000,0,0);}
.m65_c00400{transform:matrix(0.296009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296009,0.000000,0.000000,0.250000,0,0);}
.mb2_c00400{transform:matrix(0.296121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296121,0.000000,0.000000,0.250000,0,0);}
.m45_c00400{transform:matrix(0.296216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296216,0.000000,0.000000,0.250000,0,0);}
.m6_c00400{transform:matrix(0.296684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296684,0.000000,0.000000,0.250000,0,0);}
.me_c00400{transform:matrix(0.298543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298543,0.000000,0.000000,0.250000,0,0);}
.m5a_c00400{transform:matrix(0.298837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298837,0.000000,0.000000,0.250000,0,0);}
.m3b_c00400{transform:matrix(0.299489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299489,0.000000,0.000000,0.250000,0,0);}
.m4f_c00400{transform:matrix(0.299677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299677,0.000000,0.000000,0.250000,0,0);}
.m81_c00400{transform:matrix(0.300328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300328,0.000000,0.000000,0.250000,0,0);}
.m49_c00400{transform:matrix(0.301357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301357,0.000000,0.000000,0.250000,0,0);}
.m43_c00400{transform:matrix(0.301413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301413,0.000000,0.000000,0.250000,0,0);}
.m8a_c00400{transform:matrix(0.301415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301415,0.000000,0.000000,0.250000,0,0);}
.ma7_c00400{transform:matrix(0.301812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301812,0.000000,0.000000,0.250000,0,0);}
.mf7_c00400{transform:matrix(0.302792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302792,0.000000,0.000000,0.250000,0,0);}
.me3_c00400{transform:matrix(0.304015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304015,0.000000,0.000000,0.250000,0,0);}
.m8f_c00400{transform:matrix(0.304020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304020,0.000000,0.000000,0.250000,0,0);}
.mf4_c00400{transform:matrix(0.304234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304234,0.000000,0.000000,0.250000,0,0);}
.mcd_c00400{transform:matrix(0.304587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304587,0.000000,0.000000,0.250000,0,0);}
.m19_c00400{transform:matrix(0.304743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304743,0.000000,0.000000,0.250000,0,0);}
.m85_c00400{transform:matrix(0.304849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304849,0.000000,0.000000,0.250000,0,0);}
.m83_c00400{transform:matrix(0.305524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305524,0.000000,0.000000,0.250000,0,0);}
.m5f_c00400{transform:matrix(0.306242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306242,0.000000,0.000000,0.250000,0,0);}
.m9a_c00400{transform:matrix(0.306476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306476,0.000000,0.000000,0.250000,0,0);}
.mbd_c00400{transform:matrix(0.306491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306491,0.000000,0.000000,0.250000,0,0);}
.me0_c00400{transform:matrix(0.306993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306993,0.000000,0.000000,0.250000,0,0);}
.md3_c00400{transform:matrix(0.307040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307040,0.000000,0.000000,0.250000,0,0);}
.m106_c00400{transform:matrix(0.307251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307251,0.000000,0.000000,0.250000,0,0);}
.mc9_c00400{transform:matrix(0.308562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308562,0.000000,0.000000,0.250000,0,0);}
.m4c_c00400{transform:matrix(0.308697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308697,0.000000,0.000000,0.250000,0,0);}
.me5_c00400{transform:matrix(0.309209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309209,0.000000,0.000000,0.250000,0,0);}
.m8e_c00400{transform:matrix(0.309221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309221,0.000000,0.000000,0.250000,0,0);}
.ma1_c00400{transform:matrix(0.309393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309393,0.000000,0.000000,0.250000,0,0);}
.mde_c00400{transform:matrix(0.310281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310281,0.000000,0.000000,0.250000,0,0);}
.me2_c00400{transform:matrix(0.311182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311182,0.000000,0.000000,0.250000,0,0);}
.m16_c00400{transform:matrix(0.311341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311341,0.000000,0.000000,0.250000,0,0);}
.m82_c00400{transform:matrix(0.311645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311645,0.000000,0.000000,0.250000,0,0);}
.mf0_c00400{transform:matrix(0.311807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311807,0.000000,0.000000,0.250000,0,0);}
.m2d_c00400{transform:matrix(0.312680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312680,0.000000,0.000000,0.250000,0,0);}
.mf2_c00400{transform:matrix(0.312831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312831,0.000000,0.000000,0.250000,0,0);}
.m89_c00400{transform:matrix(0.313393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313393,0.000000,0.000000,0.250000,0,0);}
.m59_c00400{transform:matrix(0.314320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314320,0.000000,0.000000,0.250000,0,0);}
.m33_c00400{transform:matrix(0.314846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314846,0.000000,0.000000,0.250000,0,0);}
.m97_c00400{transform:matrix(0.315178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315178,0.000000,0.000000,0.250000,0,0);}
.m7c_c00400{transform:matrix(0.315457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315457,0.000000,0.000000,0.250000,0,0);}
.m37_c00400{transform:matrix(0.316739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316739,0.000000,0.000000,0.250000,0,0);}
.m98_c00400{transform:matrix(0.317013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317013,0.000000,0.000000,0.250000,0,0);}
.mc5_c00400{transform:matrix(0.317656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317656,0.000000,0.000000,0.250000,0,0);}
.mca_c00400{transform:matrix(0.318055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318055,0.000000,0.000000,0.250000,0,0);}
.md2_c00400{transform:matrix(0.318399,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318399,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318399,0.000000,0.000000,0.250000,0,0);}
.mc7_c00400{transform:matrix(0.319509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319509,0.000000,0.000000,0.250000,0,0);}
.m8c_c00400{transform:matrix(0.321059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321059,0.000000,0.000000,0.250000,0,0);}
.m7d_c00400{transform:matrix(0.321188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321188,0.000000,0.000000,0.250000,0,0);}
.mf1_c00400{transform:matrix(0.321314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321314,0.000000,0.000000,0.250000,0,0);}
.m70_c00400{transform:matrix(0.321405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321405,0.000000,0.000000,0.250000,0,0);}
.ma3_c00400{transform:matrix(0.321509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321509,0.000000,0.000000,0.250000,0,0);}
.m50_c00400{transform:matrix(0.321704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321704,0.000000,0.000000,0.250000,0,0);}
.m35_c00400{transform:matrix(0.322307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322307,0.000000,0.000000,0.250000,0,0);}
.m27_c00400{transform:matrix(0.322731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322731,0.000000,0.000000,0.250000,0,0);}
.mb1_c00400{transform:matrix(0.322875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322875,0.000000,0.000000,0.250000,0,0);}
.mcf_c00400{transform:matrix(0.323147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323147,0.000000,0.000000,0.250000,0,0);}
.m6f_c00400{transform:matrix(0.323434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323434,0.000000,0.000000,0.250000,0,0);}
.m6d_c00400{transform:matrix(0.324980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324980,0.000000,0.000000,0.250000,0,0);}
.mf_c00400{transform:matrix(0.325616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325616,0.000000,0.000000,0.250000,0,0);}
.m39_c00400{transform:matrix(0.327574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327574,0.000000,0.000000,0.250000,0,0);}
.me7_c00400{transform:matrix(0.327599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327599,0.000000,0.000000,0.250000,0,0);}
.m62_c00400{transform:matrix(0.328155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328155,0.000000,0.000000,0.250000,0,0);}
.ma4_c00400{transform:matrix(0.328275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328275,0.000000,0.000000,0.250000,0,0);}
.m54_c00400{transform:matrix(0.328393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328393,0.000000,0.000000,0.250000,0,0);}
.me4_c00400{transform:matrix(0.329407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329407,0.000000,0.000000,0.250000,0,0);}
.ma9_c00400{transform:matrix(0.329665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329665,0.000000,0.000000,0.250000,0,0);}
.m3_c00400{transform:matrix(0.330152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330152,0.000000,0.000000,0.250000,0,0);}
.m6e_c00400{transform:matrix(0.330375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330375,0.000000,0.000000,0.250000,0,0);}
.mce_c00400{transform:matrix(0.330576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330576,0.000000,0.000000,0.250000,0,0);}
.mc6_c00400{transform:matrix(0.330812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330812,0.000000,0.000000,0.250000,0,0);}
.m9d_c00400{transform:matrix(0.331871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331871,0.000000,0.000000,0.250000,0,0);}
.m10_c00400{transform:matrix(0.333873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333873,0.000000,0.000000,0.250000,0,0);}
.m3f_c00400{transform:matrix(0.334243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334243,0.000000,0.000000,0.250000,0,0);}
.mac_c00400{transform:matrix(0.334929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334929,0.000000,0.000000,0.250000,0,0);}
.m24_c00400{transform:matrix(0.335452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335452,0.000000,0.000000,0.250000,0,0);}
.m67_c00400{transform:matrix(0.335885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335885,0.000000,0.000000,0.250000,0,0);}
.mf6_c00400{transform:matrix(0.337067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337067,0.000000,0.000000,0.250000,0,0);}
.mba_c00400{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);}
.m6c_c00400{transform:matrix(0.338482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338482,0.000000,0.000000,0.250000,0,0);}
.m48_c00400{transform:matrix(0.338592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338592,0.000000,0.000000,0.250000,0,0);}
.mbc_c00400{transform:matrix(0.338736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338736,0.000000,0.000000,0.250000,0,0);}
.m18_c00400{transform:matrix(0.339855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339855,0.000000,0.000000,0.250000,0,0);}
.m46_c00400{transform:matrix(0.340173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340173,0.000000,0.000000,0.250000,0,0);}
.m2f_c00400{transform:matrix(0.340411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340411,0.000000,0.000000,0.250000,0,0);}
.m17_c00400{transform:matrix(0.341052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341052,0.000000,0.000000,0.250000,0,0);}
.m7_c00400{transform:matrix(0.341721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341721,0.000000,0.000000,0.250000,0,0);}
.mfb_c00400{transform:matrix(0.341891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341891,0.000000,0.000000,0.250000,0,0);}
.m101_c00400{transform:matrix(0.342211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342211,0.000000,0.000000,0.250000,0,0);}
.md4_c00400{transform:matrix(0.342339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342339,0.000000,0.000000,0.250000,0,0);}
.md5_c00400{transform:matrix(0.342419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342419,0.000000,0.000000,0.250000,0,0);}
.mc4_c00400{transform:matrix(0.342792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342792,0.000000,0.000000,0.250000,0,0);}
.m3d_c00400{transform:matrix(0.343243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343243,0.000000,0.000000,0.250000,0,0);}
.m38_c00400{transform:matrix(0.343249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343249,0.000000,0.000000,0.250000,0,0);}
.maf_c00400{transform:matrix(0.343272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343272,0.000000,0.000000,0.250000,0,0);}
.m9c_c00400{transform:matrix(0.343429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343429,0.000000,0.000000,0.250000,0,0);}
.m51_c00400{transform:matrix(0.345647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345647,0.000000,0.000000,0.250000,0,0);}
.m30_c00400{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);}
.mbf_c00400{transform:matrix(0.346378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346378,0.000000,0.000000,0.250000,0,0);}
.mfd_c00400{transform:matrix(0.346667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346667,0.000000,0.000000,0.250000,0,0);}
.m1f_c00400{transform:matrix(0.347259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347259,0.000000,0.000000,0.250000,0,0);}
.mb6_c00400{transform:matrix(0.347536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347536,0.000000,0.000000,0.250000,0,0);}
.m28_c00400{transform:matrix(0.347655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347655,0.000000,0.000000,0.250000,0,0);}
.m104_c00400{transform:matrix(0.347794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347794,0.000000,0.000000,0.250000,0,0);}
.m78_c00400{transform:matrix(0.351052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351052,0.000000,0.000000,0.250000,0,0);}
.m1e_c00400{transform:matrix(0.351176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351176,0.000000,0.000000,0.250000,0,0);}
.md8_c00400{transform:matrix(0.351390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351390,0.000000,0.000000,0.250000,0,0);}
.md9_c00400{transform:matrix(0.352569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352569,0.000000,0.000000,0.250000,0,0);}
.mec_c00400{transform:matrix(0.353902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353902,0.000000,0.000000,0.250000,0,0);}
.med_c00400{transform:matrix(0.355024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355024,0.000000,0.000000,0.250000,0,0);}
.mc0_c00400{transform:matrix(0.356552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356552,0.000000,0.000000,0.250000,0,0);}
.m56_c00400{transform:matrix(0.358168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358168,0.000000,0.000000,0.250000,0,0);}
.m47_c00400{transform:matrix(0.360110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360110,0.000000,0.000000,0.250000,0,0);}
.m88_c00400{transform:matrix(0.360431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360431,0.000000,0.000000,0.250000,0,0);}
.m5b_c00400{transform:matrix(0.361036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361036,0.000000,0.000000,0.250000,0,0);}
.me8_c00400{transform:matrix(0.362076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362076,0.000000,0.000000,0.250000,0,0);}
.m14_c00400{transform:matrix(0.363539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363539,0.000000,0.000000,0.250000,0,0);}
.m8d_c00400{transform:matrix(0.363607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363607,0.000000,0.000000,0.250000,0,0);}
.ma8_c00400{transform:matrix(0.363664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363664,0.000000,0.000000,0.250000,0,0);}
.m87_c00400{transform:matrix(0.364015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364015,0.000000,0.000000,0.250000,0,0);}
.m36_c00400{transform:matrix(0.365845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365845,0.000000,0.000000,0.250000,0,0);}
.m74_c00400{transform:matrix(0.366301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366301,0.000000,0.000000,0.250000,0,0);}
.mee_c00400{transform:matrix(0.366915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366915,0.000000,0.000000,0.250000,0,0);}
.m5d_c00400{transform:matrix(0.368059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368059,0.000000,0.000000,0.250000,0,0);}
.m21_c00400{transform:matrix(0.368548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368548,0.000000,0.000000,0.250000,0,0);}
.m107_c00400{transform:matrix(0.369111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369111,0.000000,0.000000,0.250000,0,0);}
.m8_c00400{transform:matrix(0.370214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370214,0.000000,0.000000,0.250000,0,0);}
.m5c_c00400{transform:matrix(0.371043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371043,0.000000,0.000000,0.250000,0,0);}
.m7b_c00400{transform:matrix(0.371586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371586,0.000000,0.000000,0.250000,0,0);}
.m86_c00400{transform:matrix(0.372083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372083,0.000000,0.000000,0.250000,0,0);}
.m95_c00400{transform:matrix(0.372438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372438,0.000000,0.000000,0.250000,0,0);}
.mb8_c00400{transform:matrix(0.372917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372917,0.000000,0.000000,0.250000,0,0);}
.md_c00400{transform:matrix(0.373012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373012,0.000000,0.000000,0.250000,0,0);}
.m71_c00400{transform:matrix(0.375047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375047,0.000000,0.000000,0.250000,0,0);}
.mdf_c00400{transform:matrix(0.375801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375801,0.000000,0.000000,0.250000,0,0);}
.m68_c00400{transform:matrix(0.376858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376858,0.000000,0.000000,0.250000,0,0);}
.md7_c00400{transform:matrix(0.377422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377422,0.000000,0.000000,0.250000,0,0);}
.mf5_c00400{transform:matrix(0.379414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379414,0.000000,0.000000,0.250000,0,0);}
.m11_c00400{transform:matrix(0.379695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379695,0.000000,0.000000,0.250000,0,0);}
.m52_c00400{transform:matrix(0.380762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380762,0.000000,0.000000,0.250000,0,0);}
.m57_c00400{transform:matrix(0.382261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382261,0.000000,0.000000,0.250000,0,0);}
.m77_c00400{transform:matrix(0.385963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385963,0.000000,0.000000,0.250000,0,0);}
.m15_c00400{transform:matrix(0.386360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386360,0.000000,0.000000,0.250000,0,0);}
.m53_c00400{transform:matrix(0.388883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388883,0.000000,0.000000,0.250000,0,0);}
.m1a_c00400{transform:matrix(0.392747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392747,0.000000,0.000000,0.250000,0,0);}
.m4b_c00400{transform:matrix(0.392964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392964,0.000000,0.000000,0.250000,0,0);}
.m6a_c00400{transform:matrix(0.397783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397783,0.000000,0.000000,0.250000,0,0);}
.mdd_c00400{transform:matrix(0.398660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398660,0.000000,0.000000,0.250000,0,0);}
.m8b_c00400{transform:matrix(0.398855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398855,0.000000,0.000000,0.250000,0,0);}
.mdc_c00400{transform:matrix(0.399073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399073,0.000000,0.000000,0.250000,0,0);}
.m34_c00400{transform:matrix(0.399762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399762,0.000000,0.000000,0.250000,0,0);}
.m7a_c00400{transform:matrix(0.406345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406345,0.000000,0.000000,0.250000,0,0);}
.m6b_c00400{transform:matrix(0.414090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414090,0.000000,0.000000,0.250000,0,0);}
.meb_c00400{transform:matrix(0.415760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415760,0.000000,0.000000,0.250000,0,0);}
.mef_c00400{transform:matrix(0.422019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422019,0.000000,0.000000,0.250000,0,0);}
.mb_c00400{transform:matrix(0.434082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434082,0.000000,0.000000,0.250000,0,0);}
.md0_c00400{transform:matrix(0.436944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436944,0.000000,0.000000,0.250000,0,0);}
.mb5_c00400{transform:matrix(0.460651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460651,0.000000,0.000000,0.250000,0,0);}
.m9e_c00400{transform:matrix(0.461854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461854,0.000000,0.000000,0.250000,0,0);}
.m99_c00400{transform:matrix(0.469019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469019,0.000000,0.000000,0.250000,0,0);}
.m4e_c00400{transform:matrix(0.492960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492960,0.000000,0.000000,0.250000,0,0);}
.mcc_c00400{transform:matrix(0.812490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.812490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.812490,0.000000,0.000000,0.250000,0,0);}
.v3_c00400{vertical-align:-2.831400px;}
.v0_c00400{vertical-align:0.000000px;}
.v1_c00400{vertical-align:1.405800px;}
.v2_c00400{vertical-align:18.532800px;}
.ls24_c00400{letter-spacing:-3.021480px;}
.ls4_c00400{letter-spacing:-2.938327px;}
.ls7_c00400{letter-spacing:-2.439367px;}
.ls11_c00400{letter-spacing:-2.411640px;}
.ls36_c00400{letter-spacing:-2.259180px;}
.ls12_c00400{letter-spacing:-2.009700px;}
.ls17_c00400{letter-spacing:-1.884967px;}
.ls35_c00400{letter-spacing:-1.857240px;}
.lsf_c00400{letter-spacing:-1.725570px;}
.lsc_c00400{letter-spacing:-1.483020px;}
.ls9_c00400{letter-spacing:-1.352106px;}
.ls32_c00400{letter-spacing:-1.261267px;}
.lsa_c00400{letter-spacing:-1.149987px;}
.lsd_c00400{letter-spacing:-0.956340px;}
.ls31_c00400{letter-spacing:-0.871202px;}
.ls14_c00400{letter-spacing:-0.606357px;}
.ls16_c00400{letter-spacing:-0.501813px;}
.ls2_c00400{letter-spacing:0.000000px;}
.ls28_c00400{letter-spacing:0.132423px;}
.ls26_c00400{letter-spacing:0.174240px;}
.ls0_c00400{letter-spacing:0.836354px;}
.ls37_c00400{letter-spacing:1.039500px;}
.ls2d_c00400{letter-spacing:1.115139px;}
.ls33_c00400{letter-spacing:1.316700px;}
.lsb_c00400{letter-spacing:1.405800px;}
.ls10_c00400{letter-spacing:1.841400px;}
.ls2f_c00400{letter-spacing:2.244218px;}
.lse_c00400{letter-spacing:2.465100px;}
.ls2b_c00400{letter-spacing:2.536942px;}
.ls34_c00400{letter-spacing:2.653200px;}
.ls1f_c00400{letter-spacing:2.690273px;}
.ls1a_c00400{letter-spacing:2.851200px;}
.ls13_c00400{letter-spacing:2.871000px;}
.ls21_c00400{letter-spacing:2.890810px;}
.ls1_c00400{letter-spacing:3.066633px;}
.ls18_c00400{letter-spacing:3.128400px;}
.ls8_c00400{letter-spacing:3.164207px;}
.ls27_c00400{letter-spacing:3.177900px;}
.ls22_c00400{letter-spacing:3.207610px;}
.ls20_c00400{letter-spacing:3.217500px;}
.ls2e_c00400{letter-spacing:3.257110px;}
.ls2c_c00400{letter-spacing:3.276900px;}
.ls1d_c00400{letter-spacing:3.289661px;}
.ls1c_c00400{letter-spacing:3.316500px;}
.ls29_c00400{letter-spacing:3.366000px;}
.ls5_c00400{letter-spacing:3.484810px;}
.ls30_c00400{letter-spacing:3.623400px;}
.ls1b_c00400{letter-spacing:3.722400px;}
.ls19_c00400{letter-spacing:3.960000px;}
.ls3_c00400{letter-spacing:4.197610px;}
.ls25_c00400{letter-spacing:4.316400px;}
.ls2a_c00400{letter-spacing:11.404998px;}
.ls15_c00400{letter-spacing:12.830598px;}
.ls23_c00400{letter-spacing:35.640000px;}
.ls6_c00400{letter-spacing:48.470598px;}
.ls1e_c00400{letter-spacing:49.896198px;}
.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;}
}
.ws4_c00400{word-spacing:-21.582000px;}
.ws6_c00400{word-spacing:-19.960991px;}
.ws1_c00400{word-spacing:-18.260404px;}
.ws0_c00400{word-spacing:-17.424050px;}
.wsa_c00400{word-spacing:0.000000px;}
.ws9_c00400{word-spacing:0.697647px;}
.ws5_c00400{word-spacing:3.554787px;}
.ws7_c00400{word-spacing:4.392327px;}
.ws3_c00400{word-spacing:4.460439px;}
.ws8_c00400{word-spacing:5.157587px;}
.ws2_c00400{word-spacing:12.545373px;}
._10_c00400{margin-left:-16.587736px;}
._20_c00400{margin-left:-10.663587px;}
._1e_c00400{margin-left:-8.293483px;}
._a_c00400{margin-left:-6.752592px;}
._1c_c00400{margin-left:-4.888009px;}
._5_c00400{margin-left:-2.787532px;}
._18_c00400{margin-left:-1.699632px;}
._13_c00400{width:1.320929px;}
._b_c00400{width:2.746529px;}
._15_c00400{width:6.690969px;}
._1_c00400{width:8.154344px;}
._4_c00400{width:10.175517px;}
._7_c00400{width:11.569646px;}
._3_c00400{width:12.963566px;}
._0_c00400{width:14.427171px;}
._17_c00400{width:21.117998px;}
._1d_c00400{width:23.278409px;}
._f_c00400{width:24.672527px;}
._2_c00400{width:26.136143px;}
._12_c00400{width:27.530063px;}
._14_c00400{width:33.245053px;}
._1f_c00400{width:34.917757px;}
._21_c00400{width:36.422567px;}
._16_c00400{width:37.705597px;}
._6_c00400{width:40.005565px;}
._11_c00400{width:41.497517px;}
._d_c00400{width:44.544395px;}
._1a_c00400{width:57.934800px;}
._1b_c00400{width:60.224472px;}
._c_c00400{width:67.723920px;}
._8_c00400{width:72.721440px;}
._9_c00400{width:92.600640px;}
._19_c00400{width:98.262450px;}
._e_c00400{width:186.139800px;}
.fc0_c00400{color:transparent;}
.fs28_c00400{font-size:11.404998px;}
.fs12_c00400{font-size:12.830598px;}
.fs33_c00400{font-size:20.790000px;}
.fs1d_c00400{font-size:21.186000px;}
.fs2_c00400{font-size:22.176000px;}
.fs25_c00400{font-size:25.146000px;}
.fs2f_c00400{font-size:26.334000px;}
.fse_c00400{font-size:26.928000px;}
.fsa_c00400{font-size:27.324000px;}
.fs0_c00400{font-size:27.720000px;}
.fs7_c00400{font-size:28.116000px;}
.fs1a_c00400{font-size:29.304000px;}
.fsf_c00400{font-size:29.700000px;}
.fs2c_c00400{font-size:33.660000px;}
.fs2b_c00400{font-size:34.056198px;}
.fs21_c00400{font-size:35.640000px;}
.fs2e_c00400{font-size:36.036198px;}
.fsc_c00400{font-size:36.828000px;}
.fs16_c00400{font-size:39.204000px;}
.fs8_c00400{font-size:42.372000px;}
.fs4_c00400{font-size:48.470598px;}
.fsb_c00400{font-size:49.302000px;}
.fs1b_c00400{font-size:49.896198px;}
.fs31_c00400{font-size:53.064000px;}
.fs14_c00400{font-size:53.856198px;}
.fs13_c00400{font-size:56.628000px;}
.fs10_c00400{font-size:57.024000px;}
.fs11_c00400{font-size:57.420000px;}
.fs1f_c00400{font-size:57.816198px;}
.fs1e_c00400{font-size:60.588000px;}
.fs15_c00400{font-size:62.568000px;}
.fs24_c00400{font-size:63.558000px;}
.fs20_c00400{font-size:64.152198px;}
.fs1c_c00400{font-size:64.350000px;}
.fs32_c00400{font-size:64.548000px;}
.fs2a_c00400{font-size:65.142198px;}
.fs5_c00400{font-size:65.340000px;}
.fs29_c00400{font-size:65.538000px;}
.fs19_c00400{font-size:66.330000px;}
.fs27_c00400{font-size:67.320000px;}
.fs6_c00400{font-size:68.310000px;}
.fsd_c00400{font-size:68.904000px;}
.fs3_c00400{font-size:69.696198px;}
.fs2d_c00400{font-size:72.468000px;}
.fs9_c00400{font-size:72.864000px;}
.fs30_c00400{font-size:73.260000px;}
.fs18_c00400{font-size:74.448000px;}
.fs23_c00400{font-size:76.824000px;}
.fs26_c00400{font-size:77.616198px;}
.fs17_c00400{font-size:79.200000px;}
.fs1_c00400{font-size:83.952198px;}
.fs22_c00400{font-size:86.328000px;}
.y0_c00400{bottom:0.000000px;}
.y1_c00400{bottom:76.500000px;}
.y38_c00400{bottom:110.039535px;}
.y36_c00400{bottom:146.743785px;}
.y37_c00400{bottom:149.599935px;}
.y35_c00400{bottom:149.956335px;}
.y34_c00400{bottom:150.312735px;}
.y32_c00400{bottom:150.669135px;}
.y33_c00400{bottom:151.020585px;}
.y31_c00400{bottom:165.632985px;}
.y30_c00400{bottom:181.319535px;}
.y2f_c00400{bottom:198.783135px;}
.y2e_c00400{bottom:208.405935px;}
.y3_c00400{bottom:215.179515px;}
.y2d_c00400{bottom:215.890335px;}
.y2c_c00400{bottom:242.976735px;}
.y2b_c00400{bottom:248.322735px;}
.y2a_c00400{bottom:279.680985px;}
.y29_c00400{bottom:314.969535px;}
.y28_c00400{bottom:347.396985px;}
.y27_c00400{bottom:376.265385px;}
.y26_c00400{bottom:379.829385px;}
.y23_c00400{bottom:380.542185px;}
.y25_c00400{bottom:387.675135px;}
.y24_c00400{bottom:399.792735px;}
.y22_c00400{bottom:412.979535px;}
.y21_c00400{bottom:426.522735px;}
.y20_c00400{bottom:445.768335px;}
.y1f_c00400{bottom:477.126585px;}
.y1d_c00400{bottom:477.839385px;}
.y1e_c00400{bottom:482.472585px;}
.y1c_c00400{bottom:509.202585px;}
.y1b_c00400{bottom:566.939385px;}
.y1a_c00400{bottom:571.928985px;}
.y19_c00400{bottom:604.361385px;}
.y39_c00400{bottom:621.120105px;}
.y18_c00400{bottom:636.793785px;}
.y17_c00400{bottom:668.874735px;}
.y16_c00400{bottom:700.237935px;}
.y14_c00400{bottom:700.945785px;}
.y15_c00400{bottom:708.430185px;}
.y13_c00400{bottom:733.378185px;}
.y12_c00400{bottom:761.533785px;}
.y11_c00400{bottom:762.607935px;}
.yf_c00400{bottom:766.166985px;}
.y10_c00400{bottom:766.884735px;}
.ye_c00400{bottom:798.955785px;}
.yd_c00400{bottom:831.036735px;}
.yc_c00400{bottom:858.474585px;}
.y8_c00400{bottom:863.469135px;}
.ya_c00400{bottom:863.820585px;}
.yb_c00400{bottom:864.176985px;}
.y9_c00400{bottom:868.453785px;}
.y2_c00400{bottom:872.379135px;}
.y7_c00400{bottom:896.257935px;}
.y6_c00400{bottom:929.398185px;}
.y5_c00400{bottom:1037.387385px;}
.y4_c00400{bottom:1080.155385px;}
.h28_c00400{height:7.595729px;}
.h11_c00400{height:8.545178px;}
.h33_c00400{height:20.404248px;}
.h4_c00400{height:23.128875px;}
.h21_c00400{height:23.736240px;}
.h2f_c00400{height:25.845381px;}
.h25_c00400{height:26.226492px;}
.hb_c00400{height:26.817012px;}
.h8_c00400{height:27.594316px;}
.h23_c00400{height:28.085063px;}
.h1a_c00400{height:28.760273px;}
.h2_c00400{height:28.911094px;}
.h6_c00400{height:32.281418px;}
.h2c_c00400{height:33.035449px;}
.h1b_c00400{height:33.230868px;}
.h2b_c00400{height:35.519550px;}
.h2e_c00400{height:37.584628px;}
.hd_c00400{height:38.410453px;}
.h15_c00400{height:38.476582px;}
.h9_c00400{height:44.192672px;}
.hc_c00400{height:48.387217px;}
.h31_c00400{height:52.079414px;}
.h13_c00400{height:52.856913px;}
.h17_c00400{height:55.965938px;}
.h1f_c00400{height:56.743437px;}
.hf_c00400{height:57.469500px;}
.h12_c00400{height:59.061234px;}
.h10_c00400{height:59.887266px;}
.h20_c00400{height:62.961874px;}
.h1e_c00400{height:63.191391px;}
.h29_c00400{height:64.321963px;}
.h19_c00400{height:65.099268px;}
.h14_c00400{height:65.256469px;}
.h27_c00400{height:66.070898px;}
.h24_c00400{height:66.289008px;}
.h1d_c00400{height:67.115039px;}
.h32_c00400{height:67.321547px;}
.he_c00400{height:67.625508px;}
.h2a_c00400{height:67.941277px;}
.h5_c00400{height:68.403007px;}
.h2d_c00400{height:71.123379px;}
.ha_c00400{height:71.512031px;}
.h30_c00400{height:71.900684px;}
.h18_c00400{height:75.029625px;}
.h16_c00400{height:77.730469px;}
.h26_c00400{height:80.951269px;}
.h3_c00400{height:82.394491px;}
.h22_c00400{height:84.726211px;}
.h1c_c00400{height:85.647839px;}
.h7_c00400{height:91.183795px;}
.h1_c00400{height:1110.000000px;}
.h0_c00400{height:1263.000000px;}
.w1_c00400{width:775.500000px;}
.w0_c00400{width:892.500000px;}
.x0_c00400{left:0.000000px;}
.x2_c00400{left:37.299885px;}
.x3_c00400{left:40.861905px;}
.x1_c00400{left:58.500000px;}
.x6f_c00400{left:89.759985px;}
.x7_c00400{left:90.839085px;}
.x1b_c00400{left:92.101335px;}
.x90_c00400{left:96.031635px;}
.x8_c00400{left:102.387435px;}
.x2c_c00400{left:103.570485px;}
.x56_c00400{left:114.465435px;}
.x51_c00400{left:118.316535px;}
.x5f_c00400{left:122.227035px;}
.x8a_c00400{left:123.677385px;}
.x9_c00400{left:124.731735px;}
.x91_c00400{left:127.825485px;}
.x7e_c00400{left:128.845185px;}
.x57_c00400{left:133.240785px;}
.x65_c00400{left:134.913885px;}
.x2d_c00400{left:135.943485px;}
.x5c_c00400{left:140.942985px;}
.x80_c00400{left:142.952685px;}
.x66_c00400{left:144.289185px;}
.x1c_c00400{left:145.858335px;}
.xa_c00400{left:148.249185px;}
.x92_c00400{left:151.318185px;}
.x2e_c00400{left:156.203835px;}
.x8b_c00400{left:157.688835px;}
.xb_c00400{left:166.395885px;}
.x1d_c00400{left:167.940285px;}
.x47_c00400{left:169.063935px;}
.x2f_c00400{left:170.128185px;}
.x38_c00400{left:178.038285px;}
.x8c_c00400{left:179.285685px;}
.x29_c00400{left:189.131235px;}
.x7b_c00400{left:191.452785px;}
.x70_c00400{left:200.100435px;}
.x2a_c00400{left:201.511185px;}
.x6d_c00400{left:203.085285px;}
.xc_c00400{left:211.129035px;}
.x48_c00400{left:213.460485px;}
.x43_c00400{left:220.578585px;}
.x2b_c00400{left:221.900235px;}
.x39_c00400{left:223.578285px;}
.x49_c00400{left:234.027735px;}
.x30_c00400{left:236.388885px;}
.x79_c00400{left:239.636085px;}
.x60_c00400{left:243.724785px;}
.xd_c00400{left:245.016735px;}
.x81_c00400{left:247.407585px;}
.x3a_c00400{left:255.550335px;}
.x31_c00400{left:256.837335px;}
.x82_c00400{left:265.856235px;}
.xe_c00400{left:267.078885px;}
.x67_c00400{left:270.142935px;}
.x32_c00400{left:271.558635px;}
.x1e_c00400{left:278.048085px;}
.x3b_c00400{left:289.175685px;}
.x68_c00400{left:290.452785px;}
.xf_c00400{left:299.803335px;}
.x1f_c00400{left:311.995185px;}
.x5b_c00400{left:321.840735px;}
.x83_c00400{left:323.375235px;}
.x20_c00400{left:332.468385px;}
.x10_c00400{left:334.126635px;}
.x8f_c00400{left:336.700635px;}
.x44_c00400{left:344.774085px;}
.x6e_c00400{left:346.288785px;}
.x84_c00400{left:354.565185px;}
.x11_c00400{left:356.233335px;}
.x4a_c00400{left:357.698535px;}
.x69_c00400{left:360.826935px;}
.x61_c00400{left:363.153435px;}
.x5d_c00400{left:365.955135px;}
.x21_c00400{left:367.390635px;}
.x52_c00400{left:376.696635px;}
.x8d_c00400{left:378.250935px;}
.x71_c00400{left:379.359735px;}
.x3c_c00400{left:388.769685px;}
.x85_c00400{left:391.749585px;}
.x12_c00400{left:399.110235px;}
.x3d_c00400{left:400.412085px;}
.x4b_c00400{left:410.168535px;}
.x22_c00400{left:411.802035px;}
.x37_c00400{left:421.424835px;}
.x72_c00400{left:422.503935px;}
.x6a_c00400{left:432.621735px;}
.x13_c00400{left:443.308785px;}
.x33_c00400{left:444.580935px;}
.x73_c00400{left:447.011385px;}
.x23_c00400{left:455.035335px;}
.x77_c00400{left:456.253035px;}
.x3e_c00400{left:458.039985px;}
.x14_c00400{left:466.103535px;}
.x3f_c00400{left:477.701385px;}
.x15_c00400{left:488.452785px;}
.x45_c00400{left:498.229035px;}
.x34_c00400{left:499.619985px;}
.x24_c00400{left:500.847585px;}
.x40_c00400{left:511.014885px;}
.x62_c00400{left:521.063385px;}
.x16_c00400{left:522.276135px;}
.x58_c00400{left:525.127335px;}
.x93_c00400{left:527.290485px;}
.x6b_c00400{left:532.869135px;}
.x59_c00400{left:533.948235px;}
.x17_c00400{left:543.981885px;}
.x53_c00400{left:553.436385px;}
.x25_c00400{left:554.832285px;}
.x86_c00400{left:563.806635px;}
.x4c_c00400{left:565.410435px;}
.x5e_c00400{left:566.440035px;}
.x41_c00400{left:576.315285px;}
.x18_c00400{left:577.518135px;}
.x26_c00400{left:579.572385px;}
.x63_c00400{left:588.121035px;}
.x27_c00400{left:598.313085px;}
.x35_c00400{left:599.981235px;}
.x4d_c00400{left:609.034785px;}
.x74_c00400{left:610.113885px;}
.x8e_c00400{left:612.400785px;}
.x46_c00400{left:620.974185px;}
.x4e_c00400{left:631.844385px;}
.x7f_c00400{left:633.740235px;}
.x36_c00400{left:642.179985px;}
.x19_c00400{left:643.783785px;}
.x87_c00400{left:652.174035px;}
.x6c_c00400{left:654.124335px;}
.x54_c00400{left:655.178685px;}
.x75_c00400{left:656.673585px;}
.x88_c00400{left:664.232235px;}
.x1a_c00400{left:665.900385px;}
.x7a_c00400{left:675.770685px;}
.x4_c00400{left:676.854735px;}
.x28_c00400{left:687.046785px;}
.x42_c00400{left:696.743835px;}
.x64_c00400{left:697.773435px;}
.x5_c00400{left:699.357435px;}
.x89_c00400{left:700.461285px;}
.x7c_c00400{left:706.198335px;}
.x7d_c00400{left:707.574435px;}
.x4f_c00400{left:708.836685px;}
.x6_c00400{left:713.771835px;}
.x78_c00400{left:719.162385px;}
.x50_c00400{left:720.221685px;}
.x5a_c00400{left:723.320385px;}
.x76_c00400{left:731.468085px;}
.x55_c00400{left:742.516485px;}
.x94_c00400{left:753.308475px;}
@media print{
.v3_c00400{vertical-align:-2.516800pt;}
.v0_c00400{vertical-align:0.000000pt;}
.v1_c00400{vertical-align:1.249600pt;}
.v2_c00400{vertical-align:16.473600pt;}
.ls24_c00400{letter-spacing:-2.685760pt;}
.ls4_c00400{letter-spacing:-2.611846pt;}
.ls7_c00400{letter-spacing:-2.168326pt;}
.ls11_c00400{letter-spacing:-2.143680pt;}
.ls36_c00400{letter-spacing:-2.008160pt;}
.ls12_c00400{letter-spacing:-1.786400pt;}
.ls17_c00400{letter-spacing:-1.675526pt;}
.ls35_c00400{letter-spacing:-1.650880pt;}
.lsf_c00400{letter-spacing:-1.533840pt;}
.lsc_c00400{letter-spacing:-1.318240pt;}
.ls9_c00400{letter-spacing:-1.201872pt;}
.ls32_c00400{letter-spacing:-1.121126pt;}
.lsa_c00400{letter-spacing:-1.022211pt;}
.lsd_c00400{letter-spacing:-0.850080pt;}
.ls31_c00400{letter-spacing:-0.774402pt;}
.ls14_c00400{letter-spacing:-0.538984pt;}
.ls16_c00400{letter-spacing:-0.446056pt;}
.ls2_c00400{letter-spacing:0.000000pt;}
.ls28_c00400{letter-spacing:0.117709pt;}
.ls26_c00400{letter-spacing:0.154880pt;}
.ls0_c00400{letter-spacing:0.743426pt;}
.ls37_c00400{letter-spacing:0.924000pt;}
.ls2d_c00400{letter-spacing:0.991235pt;}
.ls33_c00400{letter-spacing:1.170400pt;}
.lsb_c00400{letter-spacing:1.249600pt;}
.ls10_c00400{letter-spacing:1.636800pt;}
.ls2f_c00400{letter-spacing:1.994860pt;}
.lse_c00400{letter-spacing:2.191200pt;}
.ls2b_c00400{letter-spacing:2.255059pt;}
.ls34_c00400{letter-spacing:2.358400pt;}
.ls1f_c00400{letter-spacing:2.391354pt;}
.ls1a_c00400{letter-spacing:2.534400pt;}
.ls13_c00400{letter-spacing:2.552000pt;}
.ls21_c00400{letter-spacing:2.569609pt;}
.ls1_c00400{letter-spacing:2.725896pt;}
.ls18_c00400{letter-spacing:2.780800pt;}
.ls8_c00400{letter-spacing:2.812629pt;}
.ls27_c00400{letter-spacing:2.824800pt;}
.ls22_c00400{letter-spacing:2.851209pt;}
.ls20_c00400{letter-spacing:2.860000pt;}
.ls2e_c00400{letter-spacing:2.895209pt;}
.ls2c_c00400{letter-spacing:2.912800pt;}
.ls1d_c00400{letter-spacing:2.924143pt;}
.ls1c_c00400{letter-spacing:2.948000pt;}
.ls29_c00400{letter-spacing:2.992000pt;}
.ls5_c00400{letter-spacing:3.097609pt;}
.ls30_c00400{letter-spacing:3.220800pt;}
.ls1b_c00400{letter-spacing:3.308800pt;}
.ls19_c00400{letter-spacing:3.520000pt;}
.ls3_c00400{letter-spacing:3.731209pt;}
.ls25_c00400{letter-spacing:3.836800pt;}
.ls2a_c00400{letter-spacing:10.137776pt;}
.ls15_c00400{letter-spacing:11.404976pt;}
.ls23_c00400{letter-spacing:31.680000pt;}
.ls6_c00400{letter-spacing:43.084976pt;}
.ls1e_c00400{letter-spacing:44.352176pt;}
.ws4_c00400{word-spacing:-19.184000pt;}
.ws6_c00400{word-spacing:-17.743103pt;}
.ws1_c00400{word-spacing:-16.231470pt;}
.ws0_c00400{word-spacing:-15.488044pt;}
.wsa_c00400{word-spacing:0.000000pt;}
.ws9_c00400{word-spacing:0.620131pt;}
.ws5_c00400{word-spacing:3.159811pt;}
.ws7_c00400{word-spacing:3.904291pt;}
.ws3_c00400{word-spacing:3.964835pt;}
.ws8_c00400{word-spacing:4.584521pt;}
.ws2_c00400{word-spacing:11.151443pt;}
._10_c00400{margin-left:-14.744654pt;}
._20_c00400{margin-left:-9.478744pt;}
._1e_c00400{margin-left:-7.371985pt;}
._a_c00400{margin-left:-6.002304pt;}
._1c_c00400{margin-left:-4.344897pt;}
._5_c00400{margin-left:-2.477806pt;}
._18_c00400{margin-left:-1.510784pt;}
._13_c00400{width:1.174160pt;}
._b_c00400{width:2.441360pt;}
._15_c00400{width:5.947528pt;}
._1_c00400{width:7.248306pt;}
._4_c00400{width:9.044904pt;}
._7_c00400{width:10.284130pt;}
._3_c00400{width:11.523170pt;}
._0_c00400{width:12.824152pt;}
._17_c00400{width:18.771554pt;}
._1d_c00400{width:20.691919pt;}
._f_c00400{width:21.931135pt;}
._2_c00400{width:23.232127pt;}
._12_c00400{width:24.471167pt;}
._14_c00400{width:29.551158pt;}
._1f_c00400{width:31.038006pt;}
._21_c00400{width:32.375616pt;}
._16_c00400{width:33.516086pt;}
._6_c00400{width:35.560502pt;}
._11_c00400{width:36.886681pt;}
._d_c00400{width:39.595018pt;}
._1a_c00400{width:51.497600pt;}
._1b_c00400{width:53.532864pt;}
._c_c00400{width:60.199040pt;}
._8_c00400{width:64.641280pt;}
._9_c00400{width:82.311680pt;}
._19_c00400{width:87.344400pt;}
._e_c00400{width:165.457600pt;}
.fs28_c00400{font-size:10.137776pt;}
.fs12_c00400{font-size:11.404976pt;}
.fs33_c00400{font-size:18.480000pt;}
.fs1d_c00400{font-size:18.832000pt;}
.fs2_c00400{font-size:19.712000pt;}
.fs25_c00400{font-size:22.352000pt;}
.fs2f_c00400{font-size:23.408000pt;}
.fse_c00400{font-size:23.936000pt;}
.fsa_c00400{font-size:24.288000pt;}
.fs0_c00400{font-size:24.640000pt;}
.fs7_c00400{font-size:24.992000pt;}
.fs1a_c00400{font-size:26.048000pt;}
.fsf_c00400{font-size:26.400000pt;}
.fs2c_c00400{font-size:29.920000pt;}
.fs2b_c00400{font-size:30.272176pt;}
.fs21_c00400{font-size:31.680000pt;}
.fs2e_c00400{font-size:32.032176pt;}
.fsc_c00400{font-size:32.736000pt;}
.fs16_c00400{font-size:34.848000pt;}
.fs8_c00400{font-size:37.664000pt;}
.fs4_c00400{font-size:43.084976pt;}
.fsb_c00400{font-size:43.824000pt;}
.fs1b_c00400{font-size:44.352176pt;}
.fs31_c00400{font-size:47.168000pt;}
.fs14_c00400{font-size:47.872176pt;}
.fs13_c00400{font-size:50.336000pt;}
.fs10_c00400{font-size:50.688000pt;}
.fs11_c00400{font-size:51.040000pt;}
.fs1f_c00400{font-size:51.392176pt;}
.fs1e_c00400{font-size:53.856000pt;}
.fs15_c00400{font-size:55.616000pt;}
.fs24_c00400{font-size:56.496000pt;}
.fs20_c00400{font-size:57.024176pt;}
.fs1c_c00400{font-size:57.200000pt;}
.fs32_c00400{font-size:57.376000pt;}
.fs2a_c00400{font-size:57.904176pt;}
.fs5_c00400{font-size:58.080000pt;}
.fs29_c00400{font-size:58.256000pt;}
.fs19_c00400{font-size:58.960000pt;}
.fs27_c00400{font-size:59.840000pt;}
.fs6_c00400{font-size:60.720000pt;}
.fsd_c00400{font-size:61.248000pt;}
.fs3_c00400{font-size:61.952176pt;}
.fs2d_c00400{font-size:64.416000pt;}
.fs9_c00400{font-size:64.768000pt;}
.fs30_c00400{font-size:65.120000pt;}
.fs18_c00400{font-size:66.176000pt;}
.fs23_c00400{font-size:68.288000pt;}
.fs26_c00400{font-size:68.992176pt;}
.fs17_c00400{font-size:70.400000pt;}
.fs1_c00400{font-size:74.624176pt;}
.fs22_c00400{font-size:76.736000pt;}
.y0_c00400{bottom:0.000000pt;}
.y1_c00400{bottom:68.000000pt;}
.y38_c00400{bottom:97.812920pt;}
.y36_c00400{bottom:130.438920pt;}
.y37_c00400{bottom:132.977720pt;}
.y35_c00400{bottom:133.294520pt;}
.y34_c00400{bottom:133.611320pt;}
.y32_c00400{bottom:133.928120pt;}
.y33_c00400{bottom:134.240520pt;}
.y31_c00400{bottom:147.229320pt;}
.y30_c00400{bottom:161.172920pt;}
.y2f_c00400{bottom:176.696120pt;}
.y2e_c00400{bottom:185.249720pt;}
.y3_c00400{bottom:191.270680pt;}
.y2d_c00400{bottom:191.902520pt;}
.y2c_c00400{bottom:215.979320pt;}
.y2b_c00400{bottom:220.731320pt;}
.y2a_c00400{bottom:248.605320pt;}
.y29_c00400{bottom:279.972920pt;}
.y28_c00400{bottom:308.797320pt;}
.y27_c00400{bottom:334.458120pt;}
.y26_c00400{bottom:337.626120pt;}
.y23_c00400{bottom:338.259720pt;}
.y25_c00400{bottom:344.600120pt;}
.y24_c00400{bottom:355.371320pt;}
.y22_c00400{bottom:367.092920pt;}
.y21_c00400{bottom:379.131320pt;}
.y20_c00400{bottom:396.238520pt;}
.y1f_c00400{bottom:424.112520pt;}
.y1d_c00400{bottom:424.746120pt;}
.y1e_c00400{bottom:428.864520pt;}
.y1c_c00400{bottom:452.624520pt;}
.y1b_c00400{bottom:503.946120pt;}
.y1a_c00400{bottom:508.381320pt;}
.y19_c00400{bottom:537.210120pt;}
.y39_c00400{bottom:552.106760pt;}
.y18_c00400{bottom:566.038920pt;}
.y17_c00400{bottom:594.555320pt;}
.y16_c00400{bottom:622.433720pt;}
.y14_c00400{bottom:623.062920pt;}
.y15_c00400{bottom:629.715720pt;}
.y13_c00400{bottom:651.891720pt;}
.y12_c00400{bottom:676.918920pt;}
.y11_c00400{bottom:677.873720pt;}
.yf_c00400{bottom:681.037320pt;}
.y10_c00400{bottom:681.675320pt;}
.ye_c00400{bottom:710.182920pt;}
.yd_c00400{bottom:738.699320pt;}
.yc_c00400{bottom:763.088520pt;}
.y8_c00400{bottom:767.528120pt;}
.ya_c00400{bottom:767.840520pt;}
.yb_c00400{bottom:768.157320pt;}
.y9_c00400{bottom:771.958920pt;}
.y2_c00400{bottom:775.448120pt;}
.y7_c00400{bottom:796.673720pt;}
.y6_c00400{bottom:826.131720pt;}
.y5_c00400{bottom:922.122120pt;}
.y4_c00400{bottom:960.138120pt;}
.h28_c00400{height:6.751759pt;}
.h11_c00400{height:7.595714pt;}
.h33_c00400{height:18.137109pt;}
.h4_c00400{height:20.559000pt;}
.h21_c00400{height:21.098880pt;}
.h2f_c00400{height:22.973672pt;}
.h25_c00400{height:23.312438pt;}
.hb_c00400{height:23.837344pt;}
.h8_c00400{height:24.528281pt;}
.h23_c00400{height:24.964500pt;}
.h1a_c00400{height:25.564688pt;}
.h2_c00400{height:25.698750pt;}
.h6_c00400{height:28.694594pt;}
.h2c_c00400{height:29.364844pt;}
.h1b_c00400{height:29.538549pt;}
.h2b_c00400{height:31.572934pt;}
.h2e_c00400{height:33.408559pt;}
.hd_c00400{height:34.142625pt;}
.h15_c00400{height:34.201406pt;}
.h9_c00400{height:39.282375pt;}
.hc_c00400{height:43.010859pt;}
.h31_c00400{height:46.292813pt;}
.h13_c00400{height:46.983923pt;}
.h17_c00400{height:49.747500pt;}
.h1f_c00400{height:50.438610pt;}
.hf_c00400{height:51.084000pt;}
.h12_c00400{height:52.498875pt;}
.h10_c00400{height:53.233125pt;}
.h20_c00400{height:55.966110pt;}
.h1e_c00400{height:56.170125pt;}
.h29_c00400{height:57.175078pt;}
.h19_c00400{height:57.866016pt;}
.h14_c00400{height:58.005750pt;}
.h27_c00400{height:58.729688pt;}
.h24_c00400{height:58.923563pt;}
.h1d_c00400{height:59.657812pt;}
.h32_c00400{height:59.841375pt;}
.he_c00400{height:60.111562pt;}
.h2a_c00400{height:60.392246pt;}
.h5_c00400{height:60.802673pt;}
.h2d_c00400{height:63.220781pt;}
.ha_c00400{height:63.566250pt;}
.h30_c00400{height:63.911719pt;}
.h18_c00400{height:66.693000pt;}
.h16_c00400{height:69.093750pt;}
.h26_c00400{height:71.956684pt;}
.h3_c00400{height:73.239548pt;}
.h22_c00400{height:75.312188pt;}
.h1c_c00400{height:76.131413pt;}
.h7_c00400{height:81.052262pt;}
.h1_c00400{height:986.666667pt;}
.h0_c00400{height:1122.666667pt;}
.w1_c00400{width:689.333333pt;}
.w0_c00400{width:793.333333pt;}
.x0_c00400{left:0.000000pt;}
.x2_c00400{left:33.155453pt;}
.x3_c00400{left:36.321693pt;}
.x1_c00400{left:52.000000pt;}
.x6f_c00400{left:79.786653pt;}
.x7_c00400{left:80.745853pt;}
.x1b_c00400{left:81.867853pt;}
.x90_c00400{left:85.361453pt;}
.x8_c00400{left:91.011053pt;}
.x2c_c00400{left:92.062653pt;}
.x56_c00400{left:101.747053pt;}
.x51_c00400{left:105.170253pt;}
.x5f_c00400{left:108.646253pt;}
.x8a_c00400{left:109.935453pt;}
.x9_c00400{left:110.872653pt;}
.x91_c00400{left:113.622653pt;}
.x7e_c00400{left:114.529053pt;}
.x57_c00400{left:118.436253pt;}
.x65_c00400{left:119.923453pt;}
.x2d_c00400{left:120.838653pt;}
.x5c_c00400{left:125.282653pt;}
.x80_c00400{left:127.069053pt;}
.x66_c00400{left:128.257053pt;}
.x1c_c00400{left:129.651853pt;}
.xa_c00400{left:131.777053pt;}
.x92_c00400{left:134.505053pt;}
.x2e_c00400{left:138.847853pt;}
.x8b_c00400{left:140.167853pt;}
.xb_c00400{left:147.907453pt;}
.x1d_c00400{left:149.280253pt;}
.x47_c00400{left:150.279053pt;}
.x2f_c00400{left:151.225053pt;}
.x38_c00400{left:158.256253pt;}
.x8c_c00400{left:159.365053pt;}
.x29_c00400{left:168.116653pt;}
.x7b_c00400{left:170.180253pt;}
.x70_c00400{left:177.867053pt;}
.x2a_c00400{left:179.121053pt;}
.x6d_c00400{left:180.520253pt;}
.xc_c00400{left:187.670253pt;}
.x48_c00400{left:189.742653pt;}
.x43_c00400{left:196.069853pt;}
.x2b_c00400{left:197.244653pt;}
.x39_c00400{left:198.736253pt;}
.x49_c00400{left:208.024653pt;}
.x30_c00400{left:210.123453pt;}
.x79_c00400{left:213.009853pt;}
.x60_c00400{left:216.644253pt;}
.xd_c00400{left:217.792653pt;}
.x81_c00400{left:219.917853pt;}
.x3a_c00400{left:227.155853pt;}
.x31_c00400{left:228.299853pt;}
.x82_c00400{left:236.316653pt;}
.xe_c00400{left:237.403453pt;}
.x67_c00400{left:240.127053pt;}
.x32_c00400{left:241.385453pt;}
.x1e_c00400{left:247.153853pt;}
.x3b_c00400{left:257.045053pt;}
.x68_c00400{left:258.180253pt;}
.xf_c00400{left:266.491853pt;}
.x1f_c00400{left:277.329053pt;}
.x5b_c00400{left:286.080653pt;}
.x83_c00400{left:287.444653pt;}
.x20_c00400{left:295.527453pt;}
.x10_c00400{left:297.001453pt;}
.x8f_c00400{left:299.289453pt;}
.x44_c00400{left:306.465853pt;}
.x6e_c00400{left:307.812253pt;}
.x84_c00400{left:315.169053pt;}
.x11_c00400{left:316.651853pt;}
.x4a_c00400{left:317.954253pt;}
.x69_c00400{left:320.735053pt;}
.x61_c00400{left:322.803053pt;}
.x5d_c00400{left:325.293453pt;}
.x21_c00400{left:326.569453pt;}
.x52_c00400{left:334.841453pt;}
.x8d_c00400{left:336.223053pt;}
.x71_c00400{left:337.208653pt;}
.x3c_c00400{left:345.573053pt;}
.x85_c00400{left:348.221853pt;}
.x12_c00400{left:354.764653pt;}
.x3d_c00400{left:355.921853pt;}
.x4b_c00400{left:364.594253pt;}
.x22_c00400{left:366.046253pt;}
.x37_c00400{left:374.599853pt;}
.x72_c00400{left:375.559053pt;}
.x6a_c00400{left:384.552653pt;}
.x13_c00400{left:394.052253pt;}
.x33_c00400{left:395.183053pt;}
.x73_c00400{left:397.343453pt;}
.x23_c00400{left:404.475853pt;}
.x77_c00400{left:405.558253pt;}
.x3e_c00400{left:407.146653pt;}
.x14_c00400{left:414.314253pt;}
.x3f_c00400{left:424.623453pt;}
.x15_c00400{left:434.180253pt;}
.x45_c00400{left:442.870253pt;}
.x34_c00400{left:444.106653pt;}
.x24_c00400{left:445.197853pt;}
.x40_c00400{left:454.235453pt;}
.x62_c00400{left:463.167453pt;}
.x16_c00400{left:464.245453pt;}
.x58_c00400{left:466.779853pt;}
.x93_c00400{left:468.702653pt;}
.x6b_c00400{left:473.661453pt;}
.x59_c00400{left:474.620653pt;}
.x17_c00400{left:483.539453pt;}
.x53_c00400{left:491.943453pt;}
.x25_c00400{left:493.184253pt;}
.x86_c00400{left:501.161453pt;}
.x4c_c00400{left:502.587053pt;}
.x5e_c00400{left:503.502253pt;}
.x41_c00400{left:512.280253pt;}
.x18_c00400{left:513.349453pt;}
.x26_c00400{left:515.175453pt;}
.x63_c00400{left:522.774253pt;}
.x27_c00400{left:531.833853pt;}
.x35_c00400{left:533.316653pt;}
.x4d_c00400{left:541.364253pt;}
.x74_c00400{left:542.323453pt;}
.x8e_c00400{left:544.356253pt;}
.x46_c00400{left:551.977053pt;}
.x4e_c00400{left:561.639453pt;}
.x7f_c00400{left:563.324653pt;}
.x36_c00400{left:570.826653pt;}
.x19_c00400{left:572.252253pt;}
.x87_c00400{left:579.710253pt;}
.x6c_c00400{left:581.443853pt;}
.x54_c00400{left:582.381053pt;}
.x75_c00400{left:583.709853pt;}
.x88_c00400{left:590.428653pt;}
.x1a_c00400{left:591.911453pt;}
.x7a_c00400{left:600.685053pt;}
.x4_c00400{left:601.648653pt;}
.x28_c00400{left:610.708253pt;}
.x42_c00400{left:619.327853pt;}
.x64_c00400{left:620.243053pt;}
.x5_c00400{left:621.651053pt;}
.x89_c00400{left:622.632253pt;}
.x7c_c00400{left:627.731853pt;}
.x7d_c00400{left:628.955053pt;}
.x4f_c00400{left:630.077053pt;}
.x6_c00400{left:634.463853pt;}
.x78_c00400{left:639.255453pt;}
.x50_c00400{left:640.197053pt;}
.x5a_c00400{left:642.951453pt;}
.x76_c00400{left:650.193853pt;}
.x55_c00400{left:660.014653pt;}
.x94_c00400{left:669.607533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_745b86cae4bffb789b55fc2b.woff2')format("woff");}.ff1_c00401{font-family:ff1_c00401;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00401;src:url('chunks/assets/font_a49ed98c162f95a7f8aa91f8.woff2')format("woff");}.ff2_c00401{font-family:ff2_c00401;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00401;src:url('chunks/assets/font_37baaf1eff46f87e89a2760e.woff2')format("woff");}.ff3_c00401{font-family:ff3_c00401;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00401;src:url('chunks/assets/font_f9e5a6ddca57b9461bea2413.woff2')format("woff");}.ff4_c00401{font-family:ff4_c00401;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m35_c00401{transform:matrix(0.043982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043982,0.000000,0.000000,0.250000,0,0);}
.me7_c00401{transform:matrix(0.051471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.051471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.051471,0.000000,0.000000,0.250000,0,0);}
.m9c_c00401{transform:matrix(0.069445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.069445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.069445,0.000000,0.000000,0.250000,0,0);}
.m36_c00401{transform:matrix(0.076390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076390,0.000000,0.000000,0.250000,0,0);}
.m90_c00401{transform:matrix(0.080883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080883,0.000000,0.000000,0.250000,0,0);}
.mea_c00401{transform:matrix(0.095589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095589,0.000000,0.000000,0.250000,0,0);}
.m82_c00401{transform:matrix(0.100002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100002,0.000000,0.000000,0.250000,0,0);}
.m3a_c00401{transform:matrix(0.102461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102461,0.000000,0.000000,0.250000,0,0);}
.mbc_c00401{transform:matrix(0.121559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121559,0.000000,0.000000,0.250000,0,0);}
.mf3_c00401{transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);}
.mac_c00401{transform:matrix(0.125396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125396,0.000000,0.000000,0.250000,0,0);}
.m88_c00401{transform:matrix(0.128364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128364,0.000000,0.000000,0.250000,0,0);}
.m8f_c00401{transform:matrix(0.136030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136030,0.000000,0.000000,0.250000,0,0);}
.m9b_c00401{transform:matrix(0.137731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137731,0.000000,0.000000,0.250000,0,0);}
.m2b_c00401{transform:matrix(0.140289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140289,0.000000,0.000000,0.250000,0,0);}
.ma3_c00401{transform:matrix(0.144782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144782,0.000000,0.000000,0.250000,0,0);}
.m80_c00401{transform:matrix(0.147569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147569,0.000000,0.000000,0.250000,0,0);}
.m50_c00401{transform:matrix(0.149963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149963,0.000000,0.000000,0.250000,0,0);}
.m45_c00401{transform:matrix(0.151394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151394,0.000000,0.000000,0.250000,0,0);}
.m9a_c00401{transform:matrix(0.152777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152777,0.000000,0.000000,0.250000,0,0);}
.m5a_c00401{transform:matrix(0.157244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157244,0.000000,0.000000,0.250000,0,0);}
.m83_c00401{transform:matrix(0.167011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167011,0.000000,0.000000,0.250000,0,0);}
.me6_c00401{transform:matrix(0.169117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169117,0.000000,0.000000,0.250000,0,0);}
.mbf_c00401{transform:matrix(0.171386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171386,0.000000,0.000000,0.250000,0,0);}
.m37_c00401{transform:matrix(0.173610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173610,0.000000,0.000000,0.250000,0,0);}
.m85_c00401{transform:matrix(0.175261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175261,0.000000,0.000000,0.250000,0,0);}
.mba_c00401{transform:matrix(0.180535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180535,0.000000,0.000000,0.250000,0,0);}
.m1d_c00401{transform:matrix(0.185611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185611,0.000000,0.000000,0.250000,0,0);}
.m7d_c00401{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m84_c00401{transform:matrix(0.189082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189082,0.000000,0.000000,0.250000,0,0);}
.m47_c00401{transform:matrix(0.190972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190972,0.000000,0.000000,0.250000,0,0);}
.m5c_c00401{transform:matrix(0.191414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191414,0.000000,0.000000,0.250000,0,0);}
.m28_c00401{transform:matrix(0.194271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194271,0.000000,0.000000,0.250000,0,0);}
.me9_c00401{transform:matrix(0.198530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198530,0.000000,0.000000,0.250000,0,0);}
.md_c00401{transform:matrix(0.202342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202342,0.000000,0.000000,0.250000,0,0);}
.m1b_c00401{transform:matrix(0.202777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202777,0.000000,0.000000,0.250000,0,0);}
.m7f_c00401{transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);}
.m99_c00401{transform:matrix(0.203704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203704,0.000000,0.000000,0.250000,0,0);}
.mc_c00401{transform:matrix(0.205089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205089,0.000000,0.000000,0.250000,0,0);}
.m7e_c00401{transform:matrix(0.207030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207030,0.000000,0.000000,0.250000,0,0);}
.m5d_c00401{transform:matrix(0.210939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210939,0.000000,0.000000,0.250000,0,0);}
.m87_c00401{transform:matrix(0.215330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215330,0.000000,0.000000,0.250000,0,0);}
.m86_c00401{transform:matrix(0.224355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224355,0.000000,0.000000,0.250000,0,0);}
.m6a_c00401{transform:matrix(0.234996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234996,0.000000,0.000000,0.250000,0,0);}
.m4b_c00401{transform:matrix(0.239491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239491,0.000000,0.000000,0.250000,0,0);}
.m96_c00401{transform:matrix(0.240765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240765,0.000000,0.000000,0.250000,0,0);}
.ma8_c00401{transform:matrix(0.244551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244551,0.000000,0.000000,0.250000,0,0);}
.ma0_c00401{transform:matrix(0.244697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244697,0.000000,0.000000,0.250000,0,0);}
.m0_c00401{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00401{transform:matrix(0.250264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250264,0.000000,0.000000,0.250000,0,0);}
.m62_c00401{transform:matrix(0.252103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252103,0.000000,0.000000,0.250000,0,0);}
.m55_c00401{transform:matrix(0.253190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253190,0.000000,0.000000,0.250000,0,0);}
.m51_c00401{transform:matrix(0.255999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255999,0.000000,0.000000,0.250000,0,0);}
.mc7_c00401{transform:matrix(0.256768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256768,0.000000,0.000000,0.250000,0,0);}
.m60_c00401{transform:matrix(0.258121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258121,0.000000,0.000000,0.250000,0,0);}
.m31_c00401{transform:matrix(0.258908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258908,0.000000,0.000000,0.250000,0,0);}
.mb8_c00401{transform:matrix(0.263404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263404,0.000000,0.000000,0.250000,0,0);}
.mee_c00401{transform:matrix(0.263502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263502,0.000000,0.000000,0.250000,0,0);}
.m32_c00401{transform:matrix(0.265021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265021,0.000000,0.000000,0.250000,0,0);}
.m1e_c00401{transform:matrix(0.265196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265196,0.000000,0.000000,0.250000,0,0);}
.m6_c00401{transform:matrix(0.265297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265297,0.000000,0.000000,0.250000,0,0);}
.mc2_c00401{transform:matrix(0.266751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266751,0.000000,0.000000,0.250000,0,0);}
.m1f_c00401{transform:matrix(0.267083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267083,0.000000,0.000000,0.250000,0,0);}
.m6b_c00401{transform:matrix(0.267534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267534,0.000000,0.000000,0.250000,0,0);}
.m4_c00401{transform:matrix(0.270975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270975,0.000000,0.000000,0.250000,0,0);}
.m58_c00401{transform:matrix(0.271185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271185,0.000000,0.000000,0.250000,0,0);}
.m3f_c00401{transform:matrix(0.271315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271315,0.000000,0.000000,0.250000,0,0);}
.mb6_c00401{transform:matrix(0.271833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271833,0.000000,0.000000,0.250000,0,0);}
.m30_c00401{transform:matrix(0.272609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272609,0.000000,0.000000,0.250000,0,0);}
.m2a_c00401{transform:matrix(0.272659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272659,0.000000,0.000000,0.250000,0,0);}
.mc5_c00401{transform:matrix(0.273082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273082,0.000000,0.000000,0.250000,0,0);}
.mf0_c00401{transform:matrix(0.273625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273625,0.000000,0.000000,0.250000,0,0);}
.m25_c00401{transform:matrix(0.275215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275215,0.000000,0.000000,0.250000,0,0);}
.m8e_c00401{transform:matrix(0.275302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275302,0.000000,0.000000,0.250000,0,0);}
.md4_c00401{transform:matrix(0.275734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275734,0.000000,0.000000,0.250000,0,0);}
.meb_c00401{transform:matrix(0.276276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276276,0.000000,0.000000,0.250000,0,0);}
.mb1_c00401{transform:matrix(0.276595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276595,0.000000,0.000000,0.250000,0,0);}
.mb7_c00401{transform:matrix(0.276968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276968,0.000000,0.000000,0.250000,0,0);}
.m38_c00401{transform:matrix(0.277288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277288,0.000000,0.000000,0.250000,0,0);}
.m4a_c00401{transform:matrix(0.277529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277529,0.000000,0.000000,0.250000,0,0);}
.m6d_c00401{transform:matrix(0.281449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281449,0.000000,0.000000,0.250000,0,0);}
.mf2_c00401{transform:matrix(0.281685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281685,0.000000,0.000000,0.250000,0,0);}
.m6e_c00401{transform:matrix(0.282131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282131,0.000000,0.000000,0.250000,0,0);}
.me1_c00401{transform:matrix(0.283156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283156,0.000000,0.000000,0.250000,0,0);}
.m8b_c00401{transform:matrix(0.283178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283178,0.000000,0.000000,0.250000,0,0);}
.m17_c00401{transform:matrix(0.284461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284461,0.000000,0.000000,0.250000,0,0);}
.mb3_c00401{transform:matrix(0.284652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284652,0.000000,0.000000,0.250000,0,0);}
.m33_c00401{transform:matrix(0.284669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284669,0.000000,0.000000,0.250000,0,0);}
.m21_c00401{transform:matrix(0.285320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285320,0.000000,0.000000,0.250000,0,0);}
.mad_c00401{transform:matrix(0.285765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285765,0.000000,0.000000,0.250000,0,0);}
.m4f_c00401{transform:matrix(0.286413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286413,0.000000,0.000000,0.250000,0,0);}
.m74_c00401{transform:matrix(0.286526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286526,0.000000,0.000000,0.250000,0,0);}
.m20_c00401{transform:matrix(0.286697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286697,0.000000,0.000000,0.250000,0,0);}
.m19_c00401{transform:matrix(0.287241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287241,0.000000,0.000000,0.250000,0,0);}
.m79_c00401{transform:matrix(0.287842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287842,0.000000,0.000000,0.250000,0,0);}
.mc1_c00401{transform:matrix(0.288403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288403,0.000000,0.000000,0.250000,0,0);}
.m75_c00401{transform:matrix(0.288768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288768,0.000000,0.000000,0.250000,0,0);}
.ma5_c00401{transform:matrix(0.289480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289480,0.000000,0.000000,0.250000,0,0);}
.me5_c00401{transform:matrix(0.289782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289782,0.000000,0.000000,0.250000,0,0);}
.m9e_c00401{transform:matrix(0.289947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289947,0.000000,0.000000,0.250000,0,0);}
.m91_c00401{transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);}
.md1_c00401{transform:matrix(0.292122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292122,0.000000,0.000000,0.250000,0,0);}
.m13_c00401{transform:matrix(0.292280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292280,0.000000,0.000000,0.250000,0,0);}
.m48_c00401{transform:matrix(0.292311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292311,0.000000,0.000000,0.250000,0,0);}
.m94_c00401{transform:matrix(0.293039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293039,0.000000,0.000000,0.250000,0,0);}
.m59_c00401{transform:matrix(0.293295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293295,0.000000,0.000000,0.250000,0,0);}
.m5e_c00401{transform:matrix(0.293756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293756,0.000000,0.000000,0.250000,0,0);}
.m73_c00401{transform:matrix(0.294803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294803,0.000000,0.000000,0.250000,0,0);}
.mb5_c00401{transform:matrix(0.294858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294858,0.000000,0.000000,0.250000,0,0);}
.m8c_c00401{transform:matrix(0.296059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296059,0.000000,0.000000,0.250000,0,0);}
.m71_c00401{transform:matrix(0.296294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296294,0.000000,0.000000,0.250000,0,0);}
.m3e_c00401{transform:matrix(0.297320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297320,0.000000,0.000000,0.250000,0,0);}
.mdd_c00401{transform:matrix(0.297321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297321,0.000000,0.000000,0.250000,0,0);}
.m22_c00401{transform:matrix(0.298471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298471,0.000000,0.000000,0.250000,0,0);}
.m4d_c00401{transform:matrix(0.298923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298923,0.000000,0.000000,0.250000,0,0);}
.m8d_c00401{transform:matrix(0.299046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299046,0.000000,0.000000,0.250000,0,0);}
.mb4_c00401{transform:matrix(0.299352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299352,0.000000,0.000000,0.250000,0,0);}
.mbd_c00401{transform:matrix(0.299800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299800,0.000000,0.000000,0.250000,0,0);}
.m76_c00401{transform:matrix(0.300719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300719,0.000000,0.000000,0.250000,0,0);}
.m5b_c00401{transform:matrix(0.300817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300817,0.000000,0.000000,0.250000,0,0);}
.m40_c00401{transform:matrix(0.302253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302253,0.000000,0.000000,0.250000,0,0);}
.m41_c00401{transform:matrix(0.302470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302470,0.000000,0.000000,0.250000,0,0);}
.m5_c00401{transform:matrix(0.302565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302565,0.000000,0.000000,0.250000,0,0);}
.mda_c00401{transform:matrix(0.302858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302858,0.000000,0.000000,0.250000,0,0);}
.m2f_c00401{transform:matrix(0.302992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302992,0.000000,0.000000,0.250000,0,0);}
.mc4_c00401{transform:matrix(0.303019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303019,0.000000,0.000000,0.250000,0,0);}
.m63_c00401{transform:matrix(0.303353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303353,0.000000,0.000000,0.250000,0,0);}
.mc8_c00401{transform:matrix(0.303384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303384,0.000000,0.000000,0.250000,0,0);}
.maa_c00401{transform:matrix(0.304797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304797,0.000000,0.000000,0.250000,0,0);}
.m14_c00401{transform:matrix(0.306190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306190,0.000000,0.000000,0.250000,0,0);}
.m1_c00401{transform:matrix(0.306437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306437,0.000000,0.000000,0.250000,0,0);}
.mca_c00401{transform:matrix(0.306716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306716,0.000000,0.000000,0.250000,0,0);}
.ma7_c00401{transform:matrix(0.307789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307789,0.000000,0.000000,0.250000,0,0);}
.me8_c00401{transform:matrix(0.308823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308823,0.000000,0.000000,0.250000,0,0);}
.m4c_c00401{transform:matrix(0.308906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308906,0.000000,0.000000,0.250000,0,0);}
.mf_c00401{transform:matrix(0.309724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309724,0.000000,0.000000,0.250000,0,0);}
.mdf_c00401{transform:matrix(0.309941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309941,0.000000,0.000000,0.250000,0,0);}
.med_c00401{transform:matrix(0.310562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310562,0.000000,0.000000,0.250000,0,0);}
.m10_c00401{transform:matrix(0.310794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310794,0.000000,0.000000,0.250000,0,0);}
.md6_c00401{transform:matrix(0.310955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310955,0.000000,0.000000,0.250000,0,0);}
.m8_c00401{transform:matrix(0.311005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311005,0.000000,0.000000,0.250000,0,0);}
.mcd_c00401{transform:matrix(0.311851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311851,0.000000,0.000000,0.250000,0,0);}
.mbb_c00401{transform:matrix(0.311880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311880,0.000000,0.000000,0.250000,0,0);}
.m70_c00401{transform:matrix(0.312161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312161,0.000000,0.000000,0.250000,0,0);}
.m34_c00401{transform:matrix(0.312961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312961,0.000000,0.000000,0.250000,0,0);}
.me2_c00401{transform:matrix(0.313601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313601,0.000000,0.000000,0.250000,0,0);}
.m6c_c00401{transform:matrix(0.315479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315479,0.000000,0.000000,0.250000,0,0);}
.m1c_c00401{transform:matrix(0.316025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316025,0.000000,0.000000,0.250000,0,0);}
.mae_c00401{transform:matrix(0.316696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316696,0.000000,0.000000,0.250000,0,0);}
.mcf_c00401{transform:matrix(0.316883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316883,0.000000,0.000000,0.250000,0,0);}
.m8a_c00401{transform:matrix(0.317719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317719,0.000000,0.000000,0.250000,0,0);}
.mec_c00401{transform:matrix(0.318214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318214,0.000000,0.000000,0.250000,0,0);}
.ma1_c00401{transform:matrix(0.318322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318322,0.000000,0.000000,0.250000,0,0);}
.ma_c00401{transform:matrix(0.318603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318603,0.000000,0.000000,0.250000,0,0);}
.m2c_c00401{transform:matrix(0.318684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318684,0.000000,0.000000,0.250000,0,0);}
.m89_c00401{transform:matrix(0.319730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319730,0.000000,0.000000,0.250000,0,0);}
.m27_c00401{transform:matrix(0.320853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320853,0.000000,0.000000,0.250000,0,0);}
.ma9_c00401{transform:matrix(0.321501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321501,0.000000,0.000000,0.250000,0,0);}
.m3b_c00401{transform:matrix(0.322206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322206,0.000000,0.000000,0.250000,0,0);}
.m64_c00401{transform:matrix(0.323070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323070,0.000000,0.000000,0.250000,0,0);}
.m1a_c00401{transform:matrix(0.323757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323757,0.000000,0.000000,0.250000,0,0);}
.m9f_c00401{transform:matrix(0.325222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325222,0.000000,0.000000,0.250000,0,0);}
.mc0_c00401{transform:matrix(0.325967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325967,0.000000,0.000000,0.250000,0,0);}
.mb0_c00401{transform:matrix(0.327665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327665,0.000000,0.000000,0.250000,0,0);}
.ma4_c00401{transform:matrix(0.327715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327715,0.000000,0.000000,0.250000,0,0);}
.m23_c00401{transform:matrix(0.327846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327846,0.000000,0.000000,0.250000,0,0);}
.m7c_c00401{transform:matrix(0.327872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327872,0.000000,0.000000,0.250000,0,0);}
.m3d_c00401{transform:matrix(0.328269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328269,0.000000,0.000000,0.250000,0,0);}
.m54_c00401{transform:matrix(0.328302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328302,0.000000,0.000000,0.250000,0,0);}
.md8_c00401{transform:matrix(0.328344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328344,0.000000,0.000000,0.250000,0,0);}
.mbe_c00401{transform:matrix(0.328360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328360,0.000000,0.000000,0.250000,0,0);}
.mcc_c00401{transform:matrix(0.328677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328677,0.000000,0.000000,0.250000,0,0);}
.m97_c00401{transform:matrix(0.329692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329692,0.000000,0.000000,0.250000,0,0);}
.m26_c00401{transform:matrix(0.329904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329904,0.000000,0.000000,0.250000,0,0);}
.m39_c00401{transform:matrix(0.330232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330232,0.000000,0.000000,0.250000,0,0);}
.mdc_c00401{transform:matrix(0.330718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330718,0.000000,0.000000,0.250000,0,0);}
.md3_c00401{transform:matrix(0.331372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331372,0.000000,0.000000,0.250000,0,0);}
.m95_c00401{transform:matrix(0.332614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332614,0.000000,0.000000,0.250000,0,0);}
.m72_c00401{transform:matrix(0.333023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333023,0.000000,0.000000,0.250000,0,0);}
.m3_c00401{transform:matrix(0.333306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333306,0.000000,0.000000,0.250000,0,0);}
.me0_c00401{transform:matrix(0.333414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333414,0.000000,0.000000,0.250000,0,0);}
.md0_c00401{transform:matrix(0.333505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333505,0.000000,0.000000,0.250000,0,0);}
.md7_c00401{transform:matrix(0.334116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334116,0.000000,0.000000,0.250000,0,0);}
.m49_c00401{transform:matrix(0.334776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334776,0.000000,0.000000,0.250000,0,0);}
.me_c00401{transform:matrix(0.335046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335046,0.000000,0.000000,0.250000,0,0);}
.m57_c00401{transform:matrix(0.335932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335932,0.000000,0.000000,0.250000,0,0);}
.m6f_c00401{transform:matrix(0.335974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335974,0.000000,0.000000,0.250000,0,0);}
.m44_c00401{transform:matrix(0.336348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336348,0.000000,0.000000,0.250000,0,0);}
.m43_c00401{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);}
.md9_c00401{transform:matrix(0.336631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336631,0.000000,0.000000,0.250000,0,0);}
.m61_c00401{transform:matrix(0.337121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337121,0.000000,0.000000,0.250000,0,0);}
.m69_c00401{transform:matrix(0.337193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337193,0.000000,0.000000,0.250000,0,0);}
.m29_c00401{transform:matrix(0.338024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338024,0.000000,0.000000,0.250000,0,0);}
.m98_c00401{transform:matrix(0.340413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340413,0.000000,0.000000,0.250000,0,0);}
.mc6_c00401{transform:matrix(0.340415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340415,0.000000,0.000000,0.250000,0,0);}
.m15_c00401{transform:matrix(0.342311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342311,0.000000,0.000000,0.250000,0,0);}
.m52_c00401{transform:matrix(0.342945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342945,0.000000,0.000000,0.250000,0,0);}
.mdb_c00401{transform:matrix(0.343827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343827,0.000000,0.000000,0.250000,0,0);}
.m78_c00401{transform:matrix(0.344406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344406,0.000000,0.000000,0.250000,0,0);}
.m7_c00401{transform:matrix(0.344418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344418,0.000000,0.000000,0.250000,0,0);}
.mce_c00401{transform:matrix(0.344585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344585,0.000000,0.000000,0.250000,0,0);}
.m9d_c00401{transform:matrix(0.344875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344875,0.000000,0.000000,0.250000,0,0);}
.maf_c00401{transform:matrix(0.345034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345034,0.000000,0.000000,0.250000,0,0);}
.me3_c00401{transform:matrix(0.348545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348545,0.000000,0.000000,0.250000,0,0);}
.m68_c00401{transform:matrix(0.348758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348758,0.000000,0.000000,0.250000,0,0);}
.m2_c00401{transform:matrix(0.350096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350096,0.000000,0.000000,0.250000,0,0);}
.m12_c00401{transform:matrix(0.350730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350730,0.000000,0.000000,0.250000,0,0);}
.m11_c00401{transform:matrix(0.352091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352091,0.000000,0.000000,0.250000,0,0);}
.mf1_c00401{transform:matrix(0.352523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352523,0.000000,0.000000,0.250000,0,0);}
.m2d_c00401{transform:matrix(0.353149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353149,0.000000,0.000000,0.250000,0,0);}
.m46_c00401{transform:matrix(0.355214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355214,0.000000,0.000000,0.250000,0,0);}
.mc3_c00401{transform:matrix(0.356671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356671,0.000000,0.000000,0.250000,0,0);}
.m93_c00401{transform:matrix(0.356746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356746,0.000000,0.000000,0.250000,0,0);}
.m9_c00401{transform:matrix(0.356907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356907,0.000000,0.000000,0.250000,0,0);}
.m24_c00401{transform:matrix(0.357353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357353,0.000000,0.000000,0.250000,0,0);}
.me4_c00401{transform:matrix(0.358594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358594,0.000000,0.000000,0.250000,0,0);}
.ma2_c00401{transform:matrix(0.359538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359538,0.000000,0.000000,0.250000,0,0);}
.mb_c00401{transform:matrix(0.360574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360574,0.000000,0.000000,0.250000,0,0);}
.m2e_c00401{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.mab_c00401{transform:matrix(0.362959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362959,0.000000,0.000000,0.250000,0,0);}
.m7b_c00401{transform:matrix(0.363517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363517,0.000000,0.000000,0.250000,0,0);}
.m65_c00401{transform:matrix(0.363986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363986,0.000000,0.000000,0.250000,0,0);}
.m67_c00401{transform:matrix(0.364110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364110,0.000000,0.000000,0.250000,0,0);}
.m77_c00401{transform:matrix(0.364926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364926,0.000000,0.000000,0.250000,0,0);}
.mc9_c00401{transform:matrix(0.366649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366649,0.000000,0.000000,0.250000,0,0);}
.md5_c00401{transform:matrix(0.366699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366699,0.000000,0.000000,0.250000,0,0);}
.mde_c00401{transform:matrix(0.367601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367601,0.000000,0.000000,0.250000,0,0);}
.md2_c00401{transform:matrix(0.367917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367917,0.000000,0.000000,0.250000,0,0);}
.m92_c00401{transform:matrix(0.368194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368194,0.000000,0.000000,0.250000,0,0);}
.m53_c00401{transform:matrix(0.374314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374314,0.000000,0.000000,0.250000,0,0);}
.mb2_c00401{transform:matrix(0.375763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375763,0.000000,0.000000,0.250000,0,0);}
.m42_c00401{transform:matrix(0.376202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376202,0.000000,0.000000,0.250000,0,0);}
.m3c_c00401{transform:matrix(0.381057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381057,0.000000,0.000000,0.250000,0,0);}
.mb9_c00401{transform:matrix(0.382307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382307,0.000000,0.000000,0.250000,0,0);}
.m4e_c00401{transform:matrix(0.387627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387627,0.000000,0.000000,0.250000,0,0);}
.ma6_c00401{transform:matrix(0.392652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392652,0.000000,0.000000,0.250000,0,0);}
.m66_c00401{transform:matrix(0.394197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394197,0.000000,0.000000,0.250000,0,0);}
.m18_c00401{transform:matrix(0.396058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396058,0.000000,0.000000,0.250000,0,0);}
.mcb_c00401{transform:matrix(0.400767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400767,0.000000,0.000000,0.250000,0,0);}
.m5f_c00401{transform:matrix(0.413413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413413,0.000000,0.000000,0.250000,0,0);}
.mef_c00401{transform:matrix(0.415846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415846,0.000000,0.000000,0.250000,0,0);}
.m16_c00401{transform:matrix(0.446385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446385,0.000000,0.000000,0.250000,0,0);}
.m7a_c00401{transform:matrix(0.461906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461906,0.000000,0.000000,0.250000,0,0);}
.m81_c00401{transform:matrix(0.795995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.795995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.795995,0.000000,0.000000,0.250000,0,0);}
.v0_c00401{vertical-align:0.000000px;}
.v3_c00401{vertical-align:11.404800px;}
.v2_c00401{vertical-align:19.978200px;}
.v1_c00401{vertical-align:41.330520px;}
.lsf_c00401{letter-spacing:-2.515590px;}
.ls1d_c00401{letter-spacing:-2.383927px;}
.ls1b_c00401{letter-spacing:-2.370067px;}
.ls2b_c00401{letter-spacing:-2.092867px;}
.ls25_c00401{letter-spacing:-1.875911px;}
.ls28_c00401{letter-spacing:-1.857240px;}
.ls1a_c00401{letter-spacing:-1.822590px;}
.ls27_c00401{letter-spacing:-1.358419px;}
.ls21_c00401{letter-spacing:-1.288980px;}
.ls24_c00401{letter-spacing:-1.219680px;}
.lse_c00401{letter-spacing:-1.157171px;}
.ls22_c00401{letter-spacing:-1.074150px;}
.ls23_c00401{letter-spacing:-0.854330px;}
.ls18_c00401{letter-spacing:-0.402494px;}
.lsb_c00401{letter-spacing:0.000000px;}
.ls11_c00401{letter-spacing:0.054252px;}
.lsa_c00401{letter-spacing:0.150935px;}
.ls1_c00401{letter-spacing:0.337808px;}
.ls1f_c00401{letter-spacing:0.584110px;}
.ls7_c00401{letter-spacing:0.747490px;}
.ls19_c00401{letter-spacing:1.006236px;}
.ls1e_c00401{letter-spacing:1.445400px;}
.ls5_c00401{letter-spacing:2.098721px;}
.ls3_c00401{letter-spacing:2.242469px;}
.ls2e_c00401{letter-spacing:2.574000px;}
.ls12_c00401{letter-spacing:2.722421px;}
.ls0_c00401{letter-spacing:2.802654px;}
.ls9_c00401{letter-spacing:2.810273px;}
.ls2c_c00401{letter-spacing:2.861100px;}
.ls14_c00401{letter-spacing:3.083395px;}
.ls29_c00401{letter-spacing:3.177900px;}
.ls16_c00401{letter-spacing:3.257110px;}
.ls2d_c00401{letter-spacing:3.284642px;}
.ls15_c00401{letter-spacing:3.465000px;}
.ls1c_c00401{letter-spacing:3.583810px;}
.lsd_c00401{letter-spacing:3.593700px;}
.ls2a_c00401{letter-spacing:3.643200px;}
.lsc_c00401{letter-spacing:3.781017px;}
.ls13_c00401{letter-spacing:4.039200px;}
.ls4_c00401{letter-spacing:5.821794px;}
.ls20_c00401{letter-spacing:21.384000px;}
.ls6_c00401{letter-spacing:23.575068px;}
.ls8_c00401{letter-spacing:23.790294px;}
.ls2f_c00401{letter-spacing:31.363200px;}
.ls2_c00401{letter-spacing:45.619398px;}
.ls26_c00401{letter-spacing:48.470598px;}
.ls10_c00401{letter-spacing:51.321798px;}
.ls17_c00401{letter-spacing:57.024198px;}
.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;}
}
.ws3_c00401{word-spacing:-75.728201px;}
.ws8_c00401{word-spacing:-20.778773px;}
.ws5_c00401{word-spacing:-20.210969px;}
.ws7_c00401{word-spacing:-20.067221px;}
.ws0_c00401{word-spacing:-17.968500px;}
.ws1_c00401{word-spacing:-17.424050px;}
.ws4_c00401{word-spacing:-16.092589px;}
.ws2_c00401{word-spacing:-2.731212px;}
.wsb_c00401{word-spacing:0.000000px;}
.ws9_c00401{word-spacing:1.451459px;}
.ws6_c00401{word-spacing:1.581228px;}
.wsa_c00401{word-spacing:7.474896px;}
._f_c00401{margin-left:-15.622590px;}
._8_c00401{margin-left:-8.049888px;}
._b_c00401{margin-left:-6.540732px;}
._10_c00401{margin-left:-3.665574px;}
._19_c00401{margin-left:-2.230272px;}
._14_c00401{width:2.167704px;}
._1e_c00401{width:4.743684px;}
._e_c00401{width:6.181164px;}
._11_c00401{width:8.121762px;}
._13_c00401{width:10.709424px;}
._1_c00401{width:12.434202px;}
._17_c00401{width:13.800204px;}
._15_c00401{width:15.093936px;}
._5_c00401{width:16.602894px;}
._4_c00401{width:18.974736px;}
._7_c00401{width:21.274704px;}
._2_c00401{width:22.640310px;}
._12_c00401{width:24.077988px;}
._20_c00401{width:25.515270px;}
._9_c00401{width:27.941760px;}
._1b_c00401{width:31.916491px;}
._21_c00401{width:32.990760px;}
._0_c00401{width:34.427646px;}
._6_c00401{width:35.865126px;}
._18_c00401{width:37.877994px;}
._1a_c00401{width:40.015800px;}
._3_c00401{width:41.524362px;}
._a_c00401{width:44.930358px;}
._16_c00401{width:46.926416px;}
._1f_c00401{width:48.299328px;}
._d_c00401{width:106.268976px;}
._c_c00401{width:147.290616px;}
._1c_c00401{width:1648.033200px;}
._1d_c00401{width:2254.393027px;}
.fc0_c00401{color:transparent;}
.fs19_c00401{font-size:11.682198px;}
.fs1b_c00401{font-size:21.384000px;}
.fs0_c00401{font-size:22.176000px;}
.fs1d_c00401{font-size:26.532000px;}
.fs23_c00401{font-size:27.720000px;}
.fs2b_c00401{font-size:28.314000px;}
.fse_c00401{font-size:28.908000px;}
.fs1c_c00401{font-size:30.690000px;}
.fs2d_c00401{font-size:31.363200px;}
.fs2a_c00401{font-size:34.056198px;}
.fs2c_c00401{font-size:34.650000px;}
.fs1e_c00401{font-size:34.848000px;}
.fs1a_c00401{font-size:36.828000px;}
.fs4_c00401{font-size:39.204000px;}
.fs18_c00401{font-size:40.788000px;}
.fs7_c00401{font-size:44.154000px;}
.fs25_c00401{font-size:44.748000px;}
.fs22_c00401{font-size:45.144000px;}
.fs17_c00401{font-size:45.619398px;}
.fs1f_c00401{font-size:48.470598px;}
.fs16_c00401{font-size:50.688000px;}
.fs3_c00401{font-size:51.321798px;}
.fs29_c00401{font-size:51.480000px;}
.fs10_c00401{font-size:52.074000px;}
.fs21_c00401{font-size:53.064000px;}
.fsf_c00401{font-size:53.856198px;}
.fs5_c00401{font-size:54.252000px;}
.fsb_c00401{font-size:57.024198px;}
.fs27_c00401{font-size:57.222000px;}
.fs26_c00401{font-size:59.796198px;}
.fs13_c00401{font-size:60.192000px;}
.fs20_c00401{font-size:61.578000px;}
.fs24_c00401{font-size:63.558000px;}
.fsa_c00401{font-size:65.142198px;}
.fsc_c00401{font-size:66.528000px;}
.fs12_c00401{font-size:67.320000px;}
.fs11_c00401{font-size:67.716198px;}
.fs15_c00401{font-size:68.112198px;}
.fs8_c00401{font-size:69.300000px;}
.fs9_c00401{font-size:69.696198px;}
.fs14_c00401{font-size:71.676198px;}
.fs2_c00401{font-size:71.874000px;}
.fsd_c00401{font-size:72.864000px;}
.fs28_c00401{font-size:78.804000px;}
.fs6_c00401{font-size:80.784000px;}
.fs1_c00401{font-size:85.932198px;}
.y0_c00401{bottom:0.000000px;}
.y38_c00401{bottom:8.460585px;}
.y37_c00401{bottom:18.801135px;}
.y36_c00401{bottom:35.195535px;}
.y1_c00401{bottom:76.500000px;}
.y33_c00401{bottom:88.655535px;}
.y35_c00401{bottom:116.100068px;}
.y34_c00401{bottom:121.444335px;}
.y32_c00401{bottom:144.248985px;}
.y31_c00401{bottom:174.542985px;}
.y30_c00401{bottom:209.831535px;}
.y2f_c00401{bottom:242.615385px;}
.y2e_c00401{bottom:275.409135px;}
.y2d_c00401{bottom:275.760585px;}
.y2c_c00401{bottom:285.031935px;}
.y2b_c00401{bottom:302.139135px;}
.y29_c00401{bottom:302.490585px;}
.y2a_c00401{bottom:307.485135px;}
.y27_c00401{bottom:307.841535px;}
.y28_c00401{bottom:308.192985px;}
.y26_c00401{bottom:318.533535px;}
.y25_c00401{bottom:339.556185px;}
.y23_c00401{bottom:340.268985px;}
.y24_c00401{bottom:352.742985px;}
.y22_c00401{bottom:353.099385px;}
.y21_c00401{bottom:403.713135px;}
.y20_c00401{bottom:427.943385px;}
.y1f_c00401{bottom:436.501935px;}
.y1e_c00401{bottom:468.929385px;}
.y1d_c00401{bottom:501.010335px;}
.y1b_c00401{bottom:501.361785px;}
.y1c_c00401{bottom:502.792335px;}
.y1a_c00401{bottom:520.963785px;}
.y18_c00401{bottom:533.442735px;}
.y19_c00401{bottom:539.145135px;}
.y17_c00401{bottom:565.875135px;}
.y16_c00401{bottom:599.020335px;}
.y15_c00401{bottom:624.324735px;}
.y12_c00401{bottom:631.091385px;}
.y14_c00401{bottom:631.452735px;}
.y13_c00401{bottom:640.719135px;}
.y11_c00401{bottom:663.523785px;}
.y10_c00401{bottom:687.402585px;}
.yf_c00401{bottom:695.956185px;}
.ye_c00401{bottom:719.486505px;}
.yd_c00401{bottom:729.819135px;}
.yc_c00401{bottom:762.251535px;}
.yb_c00401{bottom:771.161535px;}
.ya_c00401{bottom:794.683935px;}
.y9_c00401{bottom:853.484985px;}
.y8_c00401{bottom:861.687135px;}
.y6_c00401{bottom:862.043535px;}
.y7_c00401{bottom:869.879385px;}
.y2_c00401{bottom:883.422585px;}
.y5_c00401{bottom:894.832335px;}
.y4_c00401{bottom:927.264735px;}
.y3_c00401{bottom:1079.086185px;}
.h1b_c00401{height:11.773465px;}
.h1d_c00401{height:14.241744px;}
.h2f_c00401{height:20.887891px;}
.h2_c00401{height:23.128875px;}
.h24_c00401{height:28.911094px;}
.h2d_c00401{height:29.530617px;}
.h1f_c00401{height:30.120557px;}
.h17_c00401{height:30.150141px;}
.h19_c00401{height:30.382519px;}
.h21_c00401{height:32.281418px;}
.h5_c00401{height:34.180317px;}
.h20_c00401{height:34.201406px;}
.h2c_c00401{height:35.519550px;}
.h2e_c00401{height:36.138867px;}
.h1e_c00401{height:36.144668px;}
.h1c_c00401{height:37.115719px;}
.hd_c00401{height:37.978116px;}
.h6_c00401{height:38.476582px;}
.h1a_c00401{height:40.031191px;}
.h8_c00401{height:46.051242px;}
.h23_c00401{height:47.083781px;}
.h2b_c00401{height:50.524805px;}
.h11_c00401{height:51.107783px;}
.h22_c00401{height:52.079414px;}
.h10_c00401{height:52.856913px;}
.h18_c00401{height:52.866000px;}
.h29_c00401{height:56.160264px;}
.h28_c00401{height:56.170332px;}
.h27_c00401{height:62.365566px;}
.h14_c00401{height:62.778375px;}
.h25_c00401{height:66.289008px;}
.h12_c00401{height:66.459745px;}
.h16_c00401{height:66.848397px;}
.he_c00401{height:67.047750px;}
.hc_c00401{height:67.941277px;}
.h9_c00401{height:68.014160px;}
.ha_c00401{height:68.403007px;}
.h13_c00401{height:70.212656px;}
.h15_c00401{height:70.346269px;}
.h4_c00401{height:70.540400px;}
.hf_c00401{height:71.512031px;}
.h2a_c00401{height:77.341816px;}
.h7_c00401{height:79.285078px;}
.h3_c00401{height:84.337753px;}
.h26_c00401{height:90.518600px;}
.hb_c00401{height:111.870920px;}
.h1_c00401{height:1110.000000px;}
.h0_c00401{height:1263.000000px;}
.w1_c00401{width:775.500000px;}
.w0_c00401{width:892.500000px;}
.x0_c00401{left:0.000000px;}
.x2_c00401{left:26.276235px;}
.x1_c00401{left:58.500000px;}
.x4_c00401{left:94.457535px;}
.x3c_c00401{left:96.259335px;}
.x34_c00401{left:97.699785px;}
.x35_c00401{left:105.461385px;}
.x5c_c00401{left:107.975985px;}
.x76_c00401{left:109.574835px;}
.x57_c00401{left:115.415835px;}
.x4f_c00401{left:118.207635px;}
.x20_c00401{left:126.820635px;}
.x67_c00401{left:127.934385px;}
.x3d_c00401{left:129.077835px;}
.x5_c00401{left:136.784985px;}
.x49_c00401{left:138.081885px;}
.x72_c00401{left:144.244635px;}
.x5a_c00401{left:147.531435px;}
.x11_c00401{left:148.778835px;}
.x7a_c00401{left:152.169585px;}
.x3e_c00401{left:154.664385px;}
.x6_c00401{left:159.465885px;}
.x40_c00401{left:170.063835px;}
.x7b_c00401{left:171.420135px;}
.x50_c00401{left:173.365485px;}
.x21_c00401{left:181.191435px;}
.x7_c00401{left:182.201235px;}
.x12_c00401{left:190.136085px;}
.x2b_c00401{left:192.309135px;}
.x7c_c00401{left:193.516935px;}
.x68_c00401{left:195.293985px;}
.x13_c00401{left:198.496635px;}
.x77_c00401{left:202.753635px;}
.x2c_c00401{left:203.817885px;}
.x36_c00401{left:205.698885px;}
.x5d_c00401{left:208.708485px;}
.x73_c00401{left:212.173485px;}
.x4a_c00401{left:215.346435px;}
.x54_c00401{left:218.677785px;}
.x22_c00401{left:226.409685px;}
.x37_c00401{left:236.735385px;}
.x63_c00401{left:241.625985px;}
.x41_c00401{left:249.199485px;}
.x38_c00401{left:258.693585px;}
.x5e_c00401{left:259.733085px;}
.x5f_c00401{left:266.098785px;}
.x23_c00401{left:269.380635px;}
.x14_c00401{left:271.019085px;}
.x3f_c00401{left:273.498293px;}
.x15_c00401{left:281.706135px;}
.x2d_c00401{left:291.462585px;}
.x8_c00401{left:292.769385px;}
.x78_c00401{left:293.813835px;}
.x60_c00401{left:299.268735px;}
.x24_c00401{left:303.436635px;}
.x2e_c00401{left:314.143485px;}
.x42_c00401{left:315.559185px;}
.x6b_c00401{left:325.508685px;}
.x16_c00401{left:326.914485px;}
.x2f_c00401{left:332.839635px;}
.x25_c00401{left:337.289685px;}
.x9_c00401{left:346.719435px;}
.x17_c00401{left:348.922185px;}
.x69_c00401{left:353.129685px;}
.x6c_c00401{left:356.362035px;}
.x18_c00401{left:359.193435px;}
.x43_c00401{left:371.073435px;}
.x26_c00401{left:381.696135px;}
.x58_c00401{left:392.541585px;}
.x71_c00401{left:404.659185px;}
.x4b_c00401{left:414.242385px;}
.x30_c00401{left:415.321485px;}
.x61_c00401{left:417.400485px;}
.x19_c00401{left:425.369985px;}
.x59_c00401{left:435.146235px;}
.x79_c00401{left:436.324335px;}
.x28_c00401{left:446.937135px;}
.xa_c00401{left:457.500435px;}
.x64_c00401{left:459.173535px;}
.x44_c00401{left:470.083335px;}
.x75_c00401{left:477.349935px;}
.x1a_c00401{left:480.087285px;}
.x4c_c00401{left:481.557435px;}
.x6d_c00401{left:492.373185px;}
.x7d_c00401{left:495.011535px;}
.x7e_c00401{left:497.516235px;}
.x39_c00401{left:503.466135px;}
.x2a_c00401{left:510.623835px;}
.xb_c00401{left:513.529485px;}
.x27_c00401{left:529.795185px;}
.x31_c00401{left:535.967835px;}
.xc_c00401{left:547.501335px;}
.x55_c00401{left:557.059785px;}
.x65_c00401{left:558.638835px;}
.x29_c00401{left:559.955535px;}
.x48_c00401{left:564.405585px;}
.xd_c00401{left:568.613085px;}
.x51_c00401{left:570.919785px;}
.x1b_c00401{left:579.661485px;}
.x66_c00401{left:581.067285px;}
.x45_c00401{left:582.443385px;}
.x4d_c00401{left:589.784235px;}
.xe_c00401{left:592.076085px;}
.x62_c00401{left:602.792835px;}
.x1c_c00401{left:612.786885px;}
.x5b_c00401{left:614.187735px;}
.x46_c00401{left:624.597585px;}
.x74_c00401{left:628.042785px;}
.x32_c00401{left:634.334235px;}
.x6e_c00401{left:635.576685px;}
.xf_c00401{left:636.591435px;}
.x1d_c00401{left:647.021085px;}
.x1e_c00401{left:658.034835px;}
.x52_c00401{left:659.302035px;}
.x47_c00401{left:665.380635px;}
.x10_c00401{left:668.612985px;}
.x3a_c00401{left:678.166485px;}
.x3_c00401{left:680.096985px;}
.x53_c00401{left:685.581585px;}
.x1f_c00401{left:690.784035px;}
.x70_c00401{left:699.491085px;}
.x33_c00401{left:700.629585px;}
.x6a_c00401{left:701.837385px;}
.x7f_c00401{left:704.772735px;}
.x80_c00401{left:709.495035px;}
.x81_c00401{left:710.836485px;}
.x56_c00401{left:712.356135px;}
.x3b_c00401{left:723.617385px;}
.x6f_c00401{left:726.037935px;}
.x4e_c00401{left:735.408285px;}
@media print{
.v0_c00401{vertical-align:0.000000pt;}
.v3_c00401{vertical-align:10.137600pt;}
.v2_c00401{vertical-align:17.758400pt;}
.v1_c00401{vertical-align:36.738240pt;}
.lsf_c00401{letter-spacing:-2.236080pt;}
.ls1d_c00401{letter-spacing:-2.119046pt;}
.ls1b_c00401{letter-spacing:-2.106726pt;}
.ls2b_c00401{letter-spacing:-1.860326pt;}
.ls25_c00401{letter-spacing:-1.667477pt;}
.ls28_c00401{letter-spacing:-1.650880pt;}
.ls1a_c00401{letter-spacing:-1.620080pt;}
.ls27_c00401{letter-spacing:-1.207483pt;}
.ls21_c00401{letter-spacing:-1.145760pt;}
.ls24_c00401{letter-spacing:-1.084160pt;}
.lse_c00401{letter-spacing:-1.028597pt;}
.ls22_c00401{letter-spacing:-0.954800pt;}
.ls23_c00401{letter-spacing:-0.759405pt;}
.ls18_c00401{letter-spacing:-0.357773pt;}
.lsb_c00401{letter-spacing:0.000000pt;}
.ls11_c00401{letter-spacing:0.048224pt;}
.lsa_c00401{letter-spacing:0.134165pt;}
.ls1_c00401{letter-spacing:0.300274pt;}
.ls1f_c00401{letter-spacing:0.519209pt;}
.ls7_c00401{letter-spacing:0.664435pt;}
.ls19_c00401{letter-spacing:0.894432pt;}
.ls1e_c00401{letter-spacing:1.284800pt;}
.ls5_c00401{letter-spacing:1.865530pt;}
.ls3_c00401{letter-spacing:1.993306pt;}
.ls2e_c00401{letter-spacing:2.288000pt;}
.ls12_c00401{letter-spacing:2.419930pt;}
.ls0_c00401{letter-spacing:2.491248pt;}
.ls9_c00401{letter-spacing:2.498021pt;}
.ls2c_c00401{letter-spacing:2.543200pt;}
.ls14_c00401{letter-spacing:2.740795pt;}
.ls29_c00401{letter-spacing:2.824800pt;}
.ls16_c00401{letter-spacing:2.895209pt;}
.ls2d_c00401{letter-spacing:2.919682pt;}
.ls15_c00401{letter-spacing:3.080000pt;}
.ls1c_c00401{letter-spacing:3.185609pt;}
.lsd_c00401{letter-spacing:3.194400pt;}
.ls2a_c00401{letter-spacing:3.238400pt;}
.lsc_c00401{letter-spacing:3.360904pt;}
.ls13_c00401{letter-spacing:3.590400pt;}
.ls4_c00401{letter-spacing:5.174928pt;}
.ls20_c00401{letter-spacing:19.008000pt;}
.ls6_c00401{letter-spacing:20.955616pt;}
.ls8_c00401{letter-spacing:21.146928pt;}
.ls2f_c00401{letter-spacing:27.878400pt;}
.ls2_c00401{letter-spacing:40.550576pt;}
.ls26_c00401{letter-spacing:43.084976pt;}
.ls10_c00401{letter-spacing:45.619376pt;}
.ls17_c00401{letter-spacing:50.688176pt;}
.ws3_c00401{word-spacing:-67.313956pt;}
.ws8_c00401{word-spacing:-18.470021pt;}
.ws5_c00401{word-spacing:-17.965306pt;}
.ws7_c00401{word-spacing:-17.837530pt;}
.ws0_c00401{word-spacing:-15.972000pt;}
.ws1_c00401{word-spacing:-15.488044pt;}
.ws4_c00401{word-spacing:-14.304523pt;}
.ws2_c00401{word-spacing:-2.427744pt;}
.wsb_c00401{word-spacing:0.000000pt;}
.ws9_c00401{word-spacing:1.290186pt;}
.ws6_c00401{word-spacing:1.405536pt;}
.wsa_c00401{word-spacing:6.644352pt;}
._f_c00401{margin-left:-13.886747pt;}
._8_c00401{margin-left:-7.155456pt;}
._b_c00401{margin-left:-5.813984pt;}
._10_c00401{margin-left:-3.258288pt;}
._19_c00401{margin-left:-1.982464pt;}
._14_c00401{width:1.926848pt;}
._1e_c00401{width:4.216608pt;}
._e_c00401{width:5.494368pt;}
._11_c00401{width:7.219344pt;}
._13_c00401{width:9.519488pt;}
._1_c00401{width:11.052624pt;}
._17_c00401{width:12.266848pt;}
._15_c00401{width:13.416832pt;}
._5_c00401{width:14.758128pt;}
._4_c00401{width:16.866432pt;}
._7_c00401{width:18.910848pt;}
._2_c00401{width:20.124720pt;}
._12_c00401{width:21.402656pt;}
._20_c00401{width:22.680240pt;}
._9_c00401{width:24.837120pt;}
._1b_c00401{width:28.370214pt;}
._21_c00401{width:29.325120pt;}
._0_c00401{width:30.602352pt;}
._6_c00401{width:31.880112pt;}
._18_c00401{width:33.669328pt;}
._1a_c00401{width:35.569600pt;}
._3_c00401{width:36.910544pt;}
._a_c00401{width:39.938096pt;}
._16_c00401{width:41.712370pt;}
._1f_c00401{width:42.932736pt;}
._d_c00401{width:94.461312pt;}
._c_c00401{width:130.924992pt;}
._1c_c00401{width:1464.918400pt;}
._1d_c00401{width:2003.904913pt;}
.fs19_c00401{font-size:10.384176pt;}
.fs1b_c00401{font-size:19.008000pt;}
.fs0_c00401{font-size:19.712000pt;}
.fs1d_c00401{font-size:23.584000pt;}
.fs23_c00401{font-size:24.640000pt;}
.fs2b_c00401{font-size:25.168000pt;}
.fse_c00401{font-size:25.696000pt;}
.fs1c_c00401{font-size:27.280000pt;}
.fs2d_c00401{font-size:27.878400pt;}
.fs2a_c00401{font-size:30.272176pt;}
.fs2c_c00401{font-size:30.800000pt;}
.fs1e_c00401{font-size:30.976000pt;}
.fs1a_c00401{font-size:32.736000pt;}
.fs4_c00401{font-size:34.848000pt;}
.fs18_c00401{font-size:36.256000pt;}
.fs7_c00401{font-size:39.248000pt;}
.fs25_c00401{font-size:39.776000pt;}
.fs22_c00401{font-size:40.128000pt;}
.fs17_c00401{font-size:40.550576pt;}
.fs1f_c00401{font-size:43.084976pt;}
.fs16_c00401{font-size:45.056000pt;}
.fs3_c00401{font-size:45.619376pt;}
.fs29_c00401{font-size:45.760000pt;}
.fs10_c00401{font-size:46.288000pt;}
.fs21_c00401{font-size:47.168000pt;}
.fsf_c00401{font-size:47.872176pt;}
.fs5_c00401{font-size:48.224000pt;}
.fsb_c00401{font-size:50.688176pt;}
.fs27_c00401{font-size:50.864000pt;}
.fs26_c00401{font-size:53.152176pt;}
.fs13_c00401{font-size:53.504000pt;}
.fs20_c00401{font-size:54.736000pt;}
.fs24_c00401{font-size:56.496000pt;}
.fsa_c00401{font-size:57.904176pt;}
.fsc_c00401{font-size:59.136000pt;}
.fs12_c00401{font-size:59.840000pt;}
.fs11_c00401{font-size:60.192176pt;}
.fs15_c00401{font-size:60.544176pt;}
.fs8_c00401{font-size:61.600000pt;}
.fs9_c00401{font-size:61.952176pt;}
.fs14_c00401{font-size:63.712176pt;}
.fs2_c00401{font-size:63.888000pt;}
.fsd_c00401{font-size:64.768000pt;}
.fs28_c00401{font-size:70.048000pt;}
.fs6_c00401{font-size:71.808000pt;}
.fs1_c00401{font-size:76.384176pt;}
.y0_c00401{bottom:0.000000pt;}
.y38_c00401{bottom:7.520520pt;}
.y37_c00401{bottom:16.712120pt;}
.y36_c00401{bottom:31.284920pt;}
.y1_c00401{bottom:68.000000pt;}
.y33_c00401{bottom:78.804920pt;}
.y35_c00401{bottom:103.200060pt;}
.y34_c00401{bottom:107.950520pt;}
.y32_c00401{bottom:128.221320pt;}
.y31_c00401{bottom:155.149320pt;}
.y30_c00401{bottom:186.516920pt;}
.y2f_c00401{bottom:215.658120pt;}
.y2e_c00401{bottom:244.808120pt;}
.y2d_c00401{bottom:245.120520pt;}
.y2c_c00401{bottom:253.361720pt;}
.y2b_c00401{bottom:268.568120pt;}
.y29_c00401{bottom:268.880520pt;}
.y2a_c00401{bottom:273.320120pt;}
.y27_c00401{bottom:273.636920pt;}
.y28_c00401{bottom:273.949320pt;}
.y26_c00401{bottom:283.140920pt;}
.y25_c00401{bottom:301.827720pt;}
.y23_c00401{bottom:302.461320pt;}
.y24_c00401{bottom:313.549320pt;}
.y22_c00401{bottom:313.866120pt;}
.y21_c00401{bottom:358.856120pt;}
.y20_c00401{bottom:380.394120pt;}
.y1f_c00401{bottom:388.001720pt;}
.y1e_c00401{bottom:416.826120pt;}
.y1d_c00401{bottom:445.342520pt;}
.y1b_c00401{bottom:445.654920pt;}
.y1c_c00401{bottom:446.926520pt;}
.y1a_c00401{bottom:463.078920pt;}
.y18_c00401{bottom:474.171320pt;}
.y19_c00401{bottom:479.240120pt;}
.y17_c00401{bottom:503.000120pt;}
.y16_c00401{bottom:532.462520pt;}
.y15_c00401{bottom:554.955320pt;}
.y12_c00401{bottom:560.970120pt;}
.y14_c00401{bottom:561.291320pt;}
.y13_c00401{bottom:569.528120pt;}
.y11_c00401{bottom:589.798920pt;}
.y10_c00401{bottom:611.024520pt;}
.yf_c00401{bottom:618.627720pt;}
.ye_c00401{bottom:639.543560pt;}
.yd_c00401{bottom:648.728120pt;}
.yc_c00401{bottom:677.556920pt;}
.yb_c00401{bottom:685.476920pt;}
.ya_c00401{bottom:706.385720pt;}
.y9_c00401{bottom:758.653320pt;}
.y8_c00401{bottom:765.944120pt;}
.y6_c00401{bottom:766.260920pt;}
.y7_c00401{bottom:773.226120pt;}
.y2_c00401{bottom:785.264520pt;}
.y5_c00401{bottom:795.406520pt;}
.y4_c00401{bottom:824.235320pt;}
.y3_c00401{bottom:959.187720pt;}
.h1b_c00401{height:10.465302pt;}
.h1d_c00401{height:12.659328pt;}
.h2f_c00401{height:18.567014pt;}
.h2_c00401{height:20.559000pt;}
.h24_c00401{height:25.698750pt;}
.h2d_c00401{height:26.249438pt;}
.h1f_c00401{height:26.773828pt;}
.h17_c00401{height:26.800125pt;}
.h19_c00401{height:27.006684pt;}
.h21_c00401{height:28.694594pt;}
.h5_c00401{height:30.382504pt;}
.h20_c00401{height:30.401250pt;}
.h2c_c00401{height:31.572934pt;}
.h2e_c00401{height:32.123438pt;}
.h1e_c00401{height:32.128594pt;}
.h1c_c00401{height:32.991750pt;}
.hd_c00401{height:33.758325pt;}
.h6_c00401{height:34.201406pt;}
.h1a_c00401{height:35.583281pt;}
.h8_c00401{height:40.934438pt;}
.h23_c00401{height:41.852250pt;}
.h2b_c00401{height:44.910938pt;}
.h11_c00401{height:45.429141pt;}
.h22_c00401{height:46.292813pt;}
.h10_c00401{height:46.983923pt;}
.h18_c00401{height:46.992000pt;}
.h29_c00401{height:49.920234pt;}
.h28_c00401{height:49.929184pt;}
.h27_c00401{height:55.436059pt;}
.h14_c00401{height:55.803000pt;}
.h25_c00401{height:58.923563pt;}
.h12_c00401{height:59.075329pt;}
.h16_c00401{height:59.420798pt;}
.he_c00401{height:59.598000pt;}
.hc_c00401{height:60.392246pt;}
.h9_c00401{height:60.457031pt;}
.ha_c00401{height:60.802673pt;}
.h13_c00401{height:62.411250pt;}
.h15_c00401{height:62.530016pt;}
.h4_c00401{height:62.702578pt;}
.hf_c00401{height:63.566250pt;}
.h2a_c00401{height:68.748281pt;}
.h7_c00401{height:70.475625pt;}
.h3_c00401{height:74.966891pt;}
.h26_c00401{height:80.460978pt;}
.hb_c00401{height:99.440818pt;}
.h1_c00401{height:986.666667pt;}
.h0_c00401{height:1122.666667pt;}
.w1_c00401{width:689.333333pt;}
.w0_c00401{width:793.333333pt;}
.x0_c00401{left:0.000000pt;}
.x2_c00401{left:23.356653pt;}
.x1_c00401{left:52.000000pt;}
.x4_c00401{left:83.962253pt;}
.x3c_c00401{left:85.563853pt;}
.x34_c00401{left:86.844253pt;}
.x35_c00401{left:93.743453pt;}
.x5c_c00401{left:95.978653pt;}
.x76_c00401{left:97.399853pt;}
.x57_c00401{left:102.591853pt;}
.x4f_c00401{left:105.073453pt;}
.x20_c00401{left:112.729453pt;}
.x67_c00401{left:113.719453pt;}
.x3d_c00401{left:114.735853pt;}
.x5_c00401{left:121.586653pt;}
.x49_c00401{left:122.739453pt;}
.x72_c00401{left:128.217453pt;}
.x5a_c00401{left:131.139053pt;}
.x11_c00401{left:132.247853pt;}
.x7a_c00401{left:135.261853pt;}
.x3e_c00401{left:137.479453pt;}
.x6_c00401{left:141.747453pt;}
.x40_c00401{left:151.167853pt;}
.x7b_c00401{left:152.373453pt;}
.x50_c00401{left:154.102653pt;}
.x21_c00401{left:161.059053pt;}
.x7_c00401{left:161.956653pt;}
.x12_c00401{left:169.009853pt;}
.x2b_c00401{left:170.941453pt;}
.x7c_c00401{left:172.015053pt;}
.x68_c00401{left:173.594653pt;}
.x13_c00401{left:176.441453pt;}
.x77_c00401{left:180.225453pt;}
.x2c_c00401{left:181.171453pt;}
.x36_c00401{left:182.843453pt;}
.x5d_c00401{left:185.518653pt;}
.x73_c00401{left:188.598653pt;}
.x4a_c00401{left:191.419053pt;}
.x54_c00401{left:194.380253pt;}
.x22_c00401{left:201.253053pt;}
.x37_c00401{left:210.431453pt;}
.x63_c00401{left:214.778653pt;}
.x41_c00401{left:221.510653pt;}
.x38_c00401{left:229.949853pt;}
.x5e_c00401{left:230.873853pt;}
.x5f_c00401{left:236.532253pt;}
.x23_c00401{left:239.449453pt;}
.x14_c00401{left:240.905853pt;}
.x3f_c00401{left:243.109593pt;}
.x15_c00401{left:250.405453pt;}
.x2d_c00401{left:259.077853pt;}
.x8_c00401{left:260.239453pt;}
.x78_c00401{left:261.167853pt;}
.x60_c00401{left:266.016653pt;}
.x24_c00401{left:269.721453pt;}
.x2e_c00401{left:279.238653pt;}
.x42_c00401{left:280.497053pt;}
.x6b_c00401{left:289.341053pt;}
.x16_c00401{left:290.590653pt;}
.x2f_c00401{left:295.857453pt;}
.x25_c00401{left:299.813053pt;}
.x9_c00401{left:308.195053pt;}
.x17_c00401{left:310.153053pt;}
.x69_c00401{left:313.893053pt;}
.x6c_c00401{left:316.766253pt;}
.x18_c00401{left:319.283053pt;}
.x43_c00401{left:329.843053pt;}
.x26_c00401{left:339.285453pt;}
.x58_c00401{left:348.925853pt;}
.x71_c00401{left:359.697053pt;}
.x4b_c00401{left:368.215453pt;}
.x30_c00401{left:369.174653pt;}
.x61_c00401{left:371.022653pt;}
.x19_c00401{left:378.106653pt;}
.x59_c00401{left:386.796653pt;}
.x79_c00401{left:387.843853pt;}
.x28_c00401{left:397.277453pt;}
.xa_c00401{left:406.667053pt;}
.x64_c00401{left:408.154253pt;}
.x44_c00401{left:417.851853pt;}
.x75_c00401{left:424.311053pt;}
.x1a_c00401{left:426.744253pt;}
.x4c_c00401{left:428.051053pt;}
.x6d_c00401{left:437.665053pt;}
.x7d_c00401{left:440.010253pt;}
.x7e_c00401{left:442.236653pt;}
.x39_c00401{left:447.525453pt;}
.x2a_c00401{left:453.887853pt;}
.xb_c00401{left:456.470653pt;}
.x27_c00401{left:470.929053pt;}
.x31_c00401{left:476.415853pt;}
.xc_c00401{left:486.667853pt;}
.x55_c00401{left:495.164253pt;}
.x65_c00401{left:496.567853pt;}
.x29_c00401{left:497.738253pt;}
.x48_c00401{left:501.693853pt;}
.xd_c00401{left:505.433853pt;}
.x51_c00401{left:507.484253pt;}
.x1b_c00401{left:515.254653pt;}
.x66_c00401{left:516.504253pt;}
.x45_c00401{left:517.727453pt;}
.x4d_c00401{left:524.252653pt;}
.xe_c00401{left:526.289853pt;}
.x62_c00401{left:535.815853pt;}
.x1c_c00401{left:544.699453pt;}
.x5b_c00401{left:545.944653pt;}
.x46_c00401{left:555.197853pt;}
.x74_c00401{left:558.260253pt;}
.x32_c00401{left:563.852653pt;}
.x6e_c00401{left:564.957053pt;}
.xf_c00401{left:565.859053pt;}
.x1d_c00401{left:575.129853pt;}
.x1e_c00401{left:584.919853pt;}
.x52_c00401{left:586.046253pt;}
.x47_c00401{left:591.449453pt;}
.x10_c00401{left:594.322653pt;}
.x3a_c00401{left:602.814653pt;}
.x3_c00401{left:604.530653pt;}
.x53_c00401{left:609.405853pt;}
.x1f_c00401{left:614.030253pt;}
.x70_c00401{left:621.769853pt;}
.x33_c00401{left:622.781853pt;}
.x6a_c00401{left:623.855453pt;}
.x7f_c00401{left:626.464653pt;}
.x80_c00401{left:630.662253pt;}
.x81_c00401{left:631.854653pt;}
.x56_c00401{left:633.205453pt;}
.x3b_c00401{left:643.215453pt;}
.x6f_c00401{left:645.367053pt;}
.x4e_c00401{left:653.696253pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_de014a0440535d45f6a802f9.woff2')format("woff");}.ff1_c00402{font-family:ff1_c00402;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00402;src:url('chunks/assets/font_3ac536f7b871c89dda3b660a.woff2')format("woff");}.ff2_c00402{font-family:ff2_c00402;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00402;src:url('chunks/assets/font_3e1ebd9b610cda93f149c009.woff2')format("woff");}.ff3_c00402{font-family:ff3_c00402;line-height:0.666000;font-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_c00402{transform:matrix(0.044118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.044118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.044118,0.000000,0.000000,0.250000,0,0);}
.mee_c00402{transform:matrix(0.064286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064286,0.000000,0.000000,0.250000,0,0);}
.m2e_c00402{transform:matrix(0.072369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072369,0.000000,0.000000,0.250000,0,0);}
.m2a_c00402{transform:matrix(0.080788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080788,0.000000,0.000000,0.250000,0,0);}
.mb5_c00402{transform:matrix(0.088142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088142,0.000000,0.000000,0.250000,0,0);}
.m8e_c00402{transform:matrix(0.094045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094045,0.000000,0.000000,0.250000,0,0);}
.m61_c00402{transform:matrix(0.095552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095552,0.000000,0.000000,0.250000,0,0);}
.med_c00402{transform:matrix(0.096428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096428,0.000000,0.000000,0.250000,0,0);}
.m39_c00402{transform:matrix(0.098958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098958,0.000000,0.000000,0.250000,0,0);}
.mc1_c00402{transform:matrix(0.101785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101785,0.000000,0.000000,0.250000,0,0);}
.mef_c00402{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00402{transform:matrix(0.153998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153998,0.000000,0.000000,0.250000,0,0);}
.m8b_c00402{transform:matrix(0.159867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159867,0.000000,0.000000,0.250000,0,0);}
.m9_c00402{transform:matrix(0.166312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166312,0.000000,0.000000,0.250000,0,0);}
.m76_c00402{transform:matrix(0.172501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172501,0.000000,0.000000,0.250000,0,0);}
.m80_c00402{transform:matrix(0.174209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174209,0.000000,0.000000,0.250000,0,0);}
.mf2_c00402{transform:matrix(0.175325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175325,0.000000,0.000000,0.250000,0,0);}
.ma2_c00402{transform:matrix(0.176471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176471,0.000000,0.000000,0.250000,0,0);}
.ma0_c00402{transform:matrix(0.183823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183823,0.000000,0.000000,0.250000,0,0);}
.md2_c00402{transform:matrix(0.184821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184821,0.000000,0.000000,0.250000,0,0);}
.md1_c00402{transform:matrix(0.187499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187499,0.000000,0.000000,0.250000,0,0);}
.m94_c00402{transform:matrix(0.187567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187567,0.000000,0.000000,0.250000,0,0);}
.mb6_c00402{transform:matrix(0.191592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191592,0.000000,0.000000,0.250000,0,0);}
.m9e_c00402{transform:matrix(0.197461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197461,0.000000,0.000000,0.250000,0,0);}
.m79_c00402{transform:matrix(0.202557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202557,0.000000,0.000000,0.250000,0,0);}
.mb0_c00402{transform:matrix(0.203431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203431,0.000000,0.000000,0.250000,0,0);}
.m62_c00402{transform:matrix(0.203934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203934,0.000000,0.000000,0.250000,0,0);}
.m32_c00402{transform:matrix(0.203993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203993,0.000000,0.000000,0.250000,0,0);}
.m5e_c00402{transform:matrix(0.210348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210348,0.000000,0.000000,0.250000,0,0);}
.mc4_c00402{transform:matrix(0.212390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212390,0.000000,0.000000,0.250000,0,0);}
.m9f_c00402{transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);}
.m50_c00402{transform:matrix(0.223231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223231,0.000000,0.000000,0.250000,0,0);}
.mb3_c00402{transform:matrix(0.229143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229143,0.000000,0.000000,0.250000,0,0);}
.me5_c00402{transform:matrix(0.229265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229265,0.000000,0.000000,0.250000,0,0);}
.mce_c00402{transform:matrix(0.233322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233322,0.000000,0.000000,0.250000,0,0);}
.m59_c00402{transform:matrix(0.234092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234092,0.000000,0.000000,0.250000,0,0);}
.m11_c00402{transform:matrix(0.235685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235685,0.000000,0.000000,0.250000,0,0);}
.m91_c00402{transform:matrix(0.239233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239233,0.000000,0.000000,0.250000,0,0);}
.m88_c00402{transform:matrix(0.239632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239632,0.000000,0.000000,0.250000,0,0);}
.m22_c00402{transform:matrix(0.241075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241075,0.000000,0.000000,0.250000,0,0);}
.m70_c00402{transform:matrix(0.246935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246935,0.000000,0.000000,0.250000,0,0);}
.m0_c00402{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00402{transform:matrix(0.250696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250696,0.000000,0.000000,0.250000,0,0);}
.me1_c00402{transform:matrix(0.251778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251778,0.000000,0.000000,0.250000,0,0);}
.m60_c00402{transform:matrix(0.255139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255139,0.000000,0.000000,0.250000,0,0);}
.ma3_c00402{transform:matrix(0.258253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258253,0.000000,0.000000,0.250000,0,0);}
.m1_c00402{transform:matrix(0.258842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258842,0.000000,0.000000,0.250000,0,0);}
.mc5_c00402{transform:matrix(0.258894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258894,0.000000,0.000000,0.250000,0,0);}
.me2_c00402{transform:matrix(0.258941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258941,0.000000,0.000000,0.250000,0,0);}
.ma5_c00402{transform:matrix(0.260151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260151,0.000000,0.000000,0.250000,0,0);}
.m6a_c00402{transform:matrix(0.261608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261608,0.000000,0.000000,0.250000,0,0);}
.m34_c00402{transform:matrix(0.266029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266029,0.000000,0.000000,0.250000,0,0);}
.mae_c00402{transform:matrix(0.267860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267860,0.000000,0.000000,0.250000,0,0);}
.m8d_c00402{transform:matrix(0.268318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268318,0.000000,0.000000,0.250000,0,0);}
.md6_c00402{transform:matrix(0.269678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269678,0.000000,0.000000,0.250000,0,0);}
.m97_c00402{transform:matrix(0.269937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269937,0.000000,0.000000,0.250000,0,0);}
.mcb_c00402{transform:matrix(0.270049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270049,0.000000,0.000000,0.250000,0,0);}
.mb1_c00402{transform:matrix(0.270780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270780,0.000000,0.000000,0.250000,0,0);}
.m8a_c00402{transform:matrix(0.272319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272319,0.000000,0.000000,0.250000,0,0);}
.m6_c00402{transform:matrix(0.272739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272739,0.000000,0.000000,0.250000,0,0);}
.m2d_c00402{transform:matrix(0.274270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274270,0.000000,0.000000,0.250000,0,0);}
.m9c_c00402{transform:matrix(0.274746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274746,0.000000,0.000000,0.250000,0,0);}
.m21_c00402{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);}
.mf0_c00402{transform:matrix(0.276014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276014,0.000000,0.000000,0.250000,0,0);}
.m5a_c00402{transform:matrix(0.276072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276072,0.000000,0.000000,0.250000,0,0);}
.mdb_c00402{transform:matrix(0.276487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276487,0.000000,0.000000,0.250000,0,0);}
.mbe_c00402{transform:matrix(0.277358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277358,0.000000,0.000000,0.250000,0,0);}
.m37_c00402{transform:matrix(0.277882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277882,0.000000,0.000000,0.250000,0,0);}
.m8_c00402{transform:matrix(0.280700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280700,0.000000,0.000000,0.250000,0,0);}
.mc2_c00402{transform:matrix(0.280871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280871,0.000000,0.000000,0.250000,0,0);}
.mcd_c00402{transform:matrix(0.280874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280874,0.000000,0.000000,0.250000,0,0);}
.mf1_c00402{transform:matrix(0.280998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280998,0.000000,0.000000,0.250000,0,0);}
.m8f_c00402{transform:matrix(0.281472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281472,0.000000,0.000000,0.250000,0,0);}
.me8_c00402{transform:matrix(0.281965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281965,0.000000,0.000000,0.250000,0,0);}
.m7a_c00402{transform:matrix(0.282226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282226,0.000000,0.000000,0.250000,0,0);}
.maf_c00402{transform:matrix(0.282958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282958,0.000000,0.000000,0.250000,0,0);}
.m3f_c00402{transform:matrix(0.283346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283346,0.000000,0.000000,0.250000,0,0);}
.m7d_c00402{transform:matrix(0.283388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283388,0.000000,0.000000,0.250000,0,0);}
.meb_c00402{transform:matrix(0.284379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284379,0.000000,0.000000,0.250000,0,0);}
.m40_c00402{transform:matrix(0.284935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284935,0.000000,0.000000,0.250000,0,0);}
.md4_c00402{transform:matrix(0.284970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284970,0.000000,0.000000,0.250000,0,0);}
.m72_c00402{transform:matrix(0.286107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286107,0.000000,0.000000,0.250000,0,0);}
.m33_c00402{transform:matrix(0.287059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287059,0.000000,0.000000,0.250000,0,0);}
.m47_c00402{transform:matrix(0.287490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287490,0.000000,0.000000,0.250000,0,0);}
.m42_c00402{transform:matrix(0.288034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288034,0.000000,0.000000,0.250000,0,0);}
.m74_c00402{transform:matrix(0.288489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288489,0.000000,0.000000,0.250000,0,0);}
.mbf_c00402{transform:matrix(0.288753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288753,0.000000,0.000000,0.250000,0,0);}
.mab_c00402{transform:matrix(0.288935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288935,0.000000,0.000000,0.250000,0,0);}
.mf7_c00402{transform:matrix(0.289035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289035,0.000000,0.000000,0.250000,0,0);}
.m23_c00402{transform:matrix(0.289087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289087,0.000000,0.000000,0.250000,0,0);}
.m77_c00402{transform:matrix(0.289559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289559,0.000000,0.000000,0.250000,0,0);}
.m9a_c00402{transform:matrix(0.289898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289898,0.000000,0.000000,0.250000,0,0);}
.mdc_c00402{transform:matrix(0.290582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290582,0.000000,0.000000,0.250000,0,0);}
.m46_c00402{transform:matrix(0.291128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291128,0.000000,0.000000,0.250000,0,0);}
.m30_c00402{transform:matrix(0.291216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291216,0.000000,0.000000,0.250000,0,0);}
.m67_c00402{transform:matrix(0.292143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292143,0.000000,0.000000,0.250000,0,0);}
.m4a_c00402{transform:matrix(0.292234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292234,0.000000,0.000000,0.250000,0,0);}
.mad_c00402{transform:matrix(0.292273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292273,0.000000,0.000000,0.250000,0,0);}
.m44_c00402{transform:matrix(0.293087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293087,0.000000,0.000000,0.250000,0,0);}
.m84_c00402{transform:matrix(0.293148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293148,0.000000,0.000000,0.250000,0,0);}
.m16_c00402{transform:matrix(0.293700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293700,0.000000,0.000000,0.250000,0,0);}
.md_c00402{transform:matrix(0.294104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294104,0.000000,0.000000,0.250000,0,0);}
.me6_c00402{transform:matrix(0.295992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295992,0.000000,0.000000,0.250000,0,0);}
.mde_c00402{transform:matrix(0.296324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296324,0.000000,0.000000,0.250000,0,0);}
.m1e_c00402{transform:matrix(0.297713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297713,0.000000,0.000000,0.250000,0,0);}
.m4e_c00402{transform:matrix(0.298140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298140,0.000000,0.000000,0.250000,0,0);}
.m96_c00402{transform:matrix(0.298244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298244,0.000000,0.000000,0.250000,0,0);}
.me7_c00402{transform:matrix(0.298302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298302,0.000000,0.000000,0.250000,0,0);}
.mf6_c00402{transform:matrix(0.298344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298344,0.000000,0.000000,0.250000,0,0);}
.m6e_c00402{transform:matrix(0.298478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298478,0.000000,0.000000,0.250000,0,0);}
.m92_c00402{transform:matrix(0.299770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299770,0.000000,0.000000,0.250000,0,0);}
.md0_c00402{transform:matrix(0.299871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299871,0.000000,0.000000,0.250000,0,0);}
.mec_c00402{transform:matrix(0.300233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300233,0.000000,0.000000,0.250000,0,0);}
.m65_c00402{transform:matrix(0.300556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300556,0.000000,0.000000,0.250000,0,0);}
.m5f_c00402{transform:matrix(0.301150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301150,0.000000,0.000000,0.250000,0,0);}
.mcc_c00402{transform:matrix(0.302083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302083,0.000000,0.000000,0.250000,0,0);}
.m5_c00402{transform:matrix(0.302119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302119,0.000000,0.000000,0.250000,0,0);}
.m20_c00402{transform:matrix(0.302585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302585,0.000000,0.000000,0.250000,0,0);}
.m2b_c00402{transform:matrix(0.303036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303036,0.000000,0.000000,0.250000,0,0);}
.m8c_c00402{transform:matrix(0.303616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303616,0.000000,0.000000,0.250000,0,0);}
.m86_c00402{transform:matrix(0.303675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303675,0.000000,0.000000,0.250000,0,0);}
.mdd_c00402{transform:matrix(0.303855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303855,0.000000,0.000000,0.250000,0,0);}
.m90_c00402{transform:matrix(0.304070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304070,0.000000,0.000000,0.250000,0,0);}
.mc7_c00402{transform:matrix(0.304226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304226,0.000000,0.000000,0.250000,0,0);}
.m95_c00402{transform:matrix(0.304736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304736,0.000000,0.000000,0.250000,0,0);}
.maa_c00402{transform:matrix(0.305637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305637,0.000000,0.000000,0.250000,0,0);}
.m29_c00402{transform:matrix(0.305952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305952,0.000000,0.000000,0.250000,0,0);}
.m73_c00402{transform:matrix(0.306260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306260,0.000000,0.000000,0.250000,0,0);}
.m5d_c00402{transform:matrix(0.306813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306813,0.000000,0.000000,0.250000,0,0);}
.m1f_c00402{transform:matrix(0.307668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307668,0.000000,0.000000,0.250000,0,0);}
.mb2_c00402{transform:matrix(0.307706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307706,0.000000,0.000000,0.250000,0,0);}
.m25_c00402{transform:matrix(0.308295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308295,0.000000,0.000000,0.250000,0,0);}
.m1a_c00402{transform:matrix(0.308929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308929,0.000000,0.000000,0.250000,0,0);}
.m2f_c00402{transform:matrix(0.310607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310607,0.000000,0.000000,0.250000,0,0);}
.m9d_c00402{transform:matrix(0.310683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310683,0.000000,0.000000,0.250000,0,0);}
.m1c_c00402{transform:matrix(0.312344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312344,0.000000,0.000000,0.250000,0,0);}
.m49_c00402{transform:matrix(0.312728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312728,0.000000,0.000000,0.250000,0,0);}
.mf_c00402{transform:matrix(0.313330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313330,0.000000,0.000000,0.250000,0,0);}
.m3c_c00402{transform:matrix(0.313344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313344,0.000000,0.000000,0.250000,0,0);}
.me3_c00402{transform:matrix(0.313677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313677,0.000000,0.000000,0.250000,0,0);}
.m1d_c00402{transform:matrix(0.314004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314004,0.000000,0.000000,0.250000,0,0);}
.m7_c00402{transform:matrix(0.314266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314266,0.000000,0.000000,0.250000,0,0);}
.m14_c00402{transform:matrix(0.315018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315018,0.000000,0.000000,0.250000,0,0);}
.m83_c00402{transform:matrix(0.315217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315217,0.000000,0.000000,0.250000,0,0);}
.m98_c00402{transform:matrix(0.316650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316650,0.000000,0.000000,0.250000,0,0);}
.mb4_c00402{transform:matrix(0.316678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316678,0.000000,0.000000,0.250000,0,0);}
.m75_c00402{transform:matrix(0.317025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317025,0.000000,0.000000,0.250000,0,0);}
.m93_c00402{transform:matrix(0.317123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317123,0.000000,0.000000,0.250000,0,0);}
.m28_c00402{transform:matrix(0.317286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317286,0.000000,0.000000,0.250000,0,0);}
.mf4_c00402{transform:matrix(0.317386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317386,0.000000,0.000000,0.250000,0,0);}
.md9_c00402{transform:matrix(0.317854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317854,0.000000,0.000000,0.250000,0,0);}
.ma9_c00402{transform:matrix(0.319035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319035,0.000000,0.000000,0.250000,0,0);}
.mb7_c00402{transform:matrix(0.319099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319099,0.000000,0.000000,0.250000,0,0);}
.m9b_c00402{transform:matrix(0.319167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319167,0.000000,0.000000,0.250000,0,0);}
.m53_c00402{transform:matrix(0.319192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319192,0.000000,0.000000,0.250000,0,0);}
.me4_c00402{transform:matrix(0.319207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319207,0.000000,0.000000,0.250000,0,0);}
.me_c00402{transform:matrix(0.319320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319320,0.000000,0.000000,0.250000,0,0);}
.m43_c00402{transform:matrix(0.320001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320001,0.000000,0.000000,0.250000,0,0);}
.me0_c00402{transform:matrix(0.320224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320224,0.000000,0.000000,0.250000,0,0);}
.ma4_c00402{transform:matrix(0.321197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321197,0.000000,0.000000,0.250000,0,0);}
.m48_c00402{transform:matrix(0.321249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321249,0.000000,0.000000,0.250000,0,0);}
.md5_c00402{transform:matrix(0.321383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321383,0.000000,0.000000,0.250000,0,0);}
.m82_c00402{transform:matrix(0.322152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322152,0.000000,0.000000,0.250000,0,0);}
.mea_c00402{transform:matrix(0.322311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322311,0.000000,0.000000,0.250000,0,0);}
.m15_c00402{transform:matrix(0.322541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322541,0.000000,0.000000,0.250000,0,0);}
.m19_c00402{transform:matrix(0.324286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324286,0.000000,0.000000,0.250000,0,0);}
.mda_c00402{transform:matrix(0.324588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324588,0.000000,0.000000,0.250000,0,0);}
.m7b_c00402{transform:matrix(0.324735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324735,0.000000,0.000000,0.250000,0,0);}
.m78_c00402{transform:matrix(0.324754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324754,0.000000,0.000000,0.250000,0,0);}
.m26_c00402{transform:matrix(0.325010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325010,0.000000,0.000000,0.250000,0,0);}
.m38_c00402{transform:matrix(0.325601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325601,0.000000,0.000000,0.250000,0,0);}
.m6d_c00402{transform:matrix(0.325839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325839,0.000000,0.000000,0.250000,0,0);}
.m18_c00402{transform:matrix(0.327755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327755,0.000000,0.000000,0.250000,0,0);}
.m4b_c00402{transform:matrix(0.328646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328646,0.000000,0.000000,0.250000,0,0);}
.m7f_c00402{transform:matrix(0.328775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328775,0.000000,0.000000,0.250000,0,0);}
.m64_c00402{transform:matrix(0.330776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330776,0.000000,0.000000,0.250000,0,0);}
.m4d_c00402{transform:matrix(0.331186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331186,0.000000,0.000000,0.250000,0,0);}
.m27_c00402{transform:matrix(0.332358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332358,0.000000,0.000000,0.250000,0,0);}
.m3_c00402{transform:matrix(0.333767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333767,0.000000,0.000000,0.250000,0,0);}
.m36_c00402{transform:matrix(0.335076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335076,0.000000,0.000000,0.250000,0,0);}
.mc8_c00402{transform:matrix(0.335162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335162,0.000000,0.000000,0.250000,0,0);}
.m3b_c00402{transform:matrix(0.335871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335871,0.000000,0.000000,0.250000,0,0);}
.mc0_c00402{transform:matrix(0.335896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335896,0.000000,0.000000,0.250000,0,0);}
.m51_c00402{transform:matrix(0.336901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336901,0.000000,0.000000,0.250000,0,0);}
.m3e_c00402{transform:matrix(0.337661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337661,0.000000,0.000000,0.250000,0,0);}
.m58_c00402{transform:matrix(0.337918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337918,0.000000,0.000000,0.250000,0,0);}
.m69_c00402{transform:matrix(0.338009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338009,0.000000,0.000000,0.250000,0,0);}
.mc9_c00402{transform:matrix(0.338340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338340,0.000000,0.000000,0.250000,0,0);}
.ma8_c00402{transform:matrix(0.339208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339208,0.000000,0.000000,0.250000,0,0);}
.m63_c00402{transform:matrix(0.339398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339398,0.000000,0.000000,0.250000,0,0);}
.m5b_c00402{transform:matrix(0.340258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340258,0.000000,0.000000,0.250000,0,0);}
.md7_c00402{transform:matrix(0.340671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340671,0.000000,0.000000,0.250000,0,0);}
.m2c_c00402{transform:matrix(0.341290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341290,0.000000,0.000000,0.250000,0,0);}
.m4_c00402{transform:matrix(0.341352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341352,0.000000,0.000000,0.250000,0,0);}
.ma7_c00402{transform:matrix(0.341743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341743,0.000000,0.000000,0.250000,0,0);}
.mdf_c00402{transform:matrix(0.342871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342871,0.000000,0.000000,0.250000,0,0);}
.m68_c00402{transform:matrix(0.344996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344996,0.000000,0.000000,0.250000,0,0);}
.m56_c00402{transform:matrix(0.345433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345433,0.000000,0.000000,0.250000,0,0);}
.m31_c00402{transform:matrix(0.345827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345827,0.000000,0.000000,0.250000,0,0);}
.m7c_c00402{transform:matrix(0.347020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347020,0.000000,0.000000,0.250000,0,0);}
.m66_c00402{transform:matrix(0.347728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347728,0.000000,0.000000,0.250000,0,0);}
.me9_c00402{transform:matrix(0.349142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349142,0.000000,0.000000,0.250000,0,0);}
.mc3_c00402{transform:matrix(0.349152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349152,0.000000,0.000000,0.250000,0,0);}
.m41_c00402{transform:matrix(0.349507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349507,0.000000,0.000000,0.250000,0,0);}
.ma_c00402{transform:matrix(0.349887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349887,0.000000,0.000000,0.250000,0,0);}
.m3a_c00402{transform:matrix(0.349900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349900,0.000000,0.000000,0.250000,0,0);}
.m4c_c00402{transform:matrix(0.350754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350754,0.000000,0.000000,0.250000,0,0);}
.m7e_c00402{transform:matrix(0.351956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351956,0.000000,0.000000,0.250000,0,0);}
.mc_c00402{transform:matrix(0.352092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352092,0.000000,0.000000,0.250000,0,0);}
.mf3_c00402{transform:matrix(0.352397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352397,0.000000,0.000000,0.250000,0,0);}
.mf8_c00402{transform:matrix(0.352849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352849,0.000000,0.000000,0.250000,0,0);}
.m6c_c00402{transform:matrix(0.353271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353271,0.000000,0.000000,0.250000,0,0);}
.m55_c00402{transform:matrix(0.353886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353886,0.000000,0.000000,0.250000,0,0);}
.m10_c00402{transform:matrix(0.355673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355673,0.000000,0.000000,0.250000,0,0);}
.mcf_c00402{transform:matrix(0.355757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355757,0.000000,0.000000,0.250000,0,0);}
.m54_c00402{transform:matrix(0.356182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356182,0.000000,0.000000,0.250000,0,0);}
.m17_c00402{transform:matrix(0.356363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356363,0.000000,0.000000,0.250000,0,0);}
.ma6_c00402{transform:matrix(0.357892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357892,0.000000,0.000000,0.250000,0,0);}
.m2_c00402{transform:matrix(0.358509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358509,0.000000,0.000000,0.250000,0,0);}
.m5c_c00402{transform:matrix(0.359779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359779,0.000000,0.000000,0.250000,0,0);}
.mb_c00402{transform:matrix(0.359987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359987,0.000000,0.000000,0.250000,0,0);}
.m87_c00402{transform:matrix(0.360530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360530,0.000000,0.000000,0.250000,0,0);}
.mb8_c00402{transform:matrix(0.360855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360855,0.000000,0.000000,0.250000,0,0);}
.m45_c00402{transform:matrix(0.361685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361685,0.000000,0.000000,0.250000,0,0);}
.mf5_c00402{transform:matrix(0.362543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362543,0.000000,0.000000,0.250000,0,0);}
.m81_c00402{transform:matrix(0.362678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362678,0.000000,0.000000,0.250000,0,0);}
.m4f_c00402{transform:matrix(0.362733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362733,0.000000,0.000000,0.250000,0,0);}
.m6b_c00402{transform:matrix(0.365027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365027,0.000000,0.000000,0.250000,0,0);}
.m13_c00402{transform:matrix(0.365873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365873,0.000000,0.000000,0.250000,0,0);}
.mc6_c00402{transform:matrix(0.366447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366447,0.000000,0.000000,0.250000,0,0);}
.m3d_c00402{transform:matrix(0.367277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367277,0.000000,0.000000,0.250000,0,0);}
.mbd_c00402{transform:matrix(0.368933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368933,0.000000,0.000000,0.250000,0,0);}
.m35_c00402{transform:matrix(0.369598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369598,0.000000,0.000000,0.250000,0,0);}
.m99_c00402{transform:matrix(0.370078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370078,0.000000,0.000000,0.250000,0,0);}
.md3_c00402{transform:matrix(0.372109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372109,0.000000,0.000000,0.250000,0,0);}
.m52_c00402{transform:matrix(0.375420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375420,0.000000,0.000000,0.250000,0,0);}
.m12_c00402{transform:matrix(0.375687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375687,0.000000,0.000000,0.250000,0,0);}
.m71_c00402{transform:matrix(0.380811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380811,0.000000,0.000000,0.250000,0,0);}
.mbb_c00402{transform:matrix(0.381004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381004,0.000000,0.000000,0.250000,0,0);}
.m1b_c00402{transform:matrix(0.395285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395285,0.000000,0.000000,0.250000,0,0);}
.mca_c00402{transform:matrix(0.401873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401873,0.000000,0.000000,0.250000,0,0);}
.m89_c00402{transform:matrix(0.407016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407016,0.000000,0.000000,0.250000,0,0);}
.m24_c00402{transform:matrix(0.422091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422091,0.000000,0.000000,0.250000,0,0);}
.mbc_c00402{transform:matrix(0.424874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424874,0.000000,0.000000,0.250000,0,0);}
.m57_c00402{transform:matrix(0.431387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431387,0.000000,0.000000,0.250000,0,0);}
.m85_c00402{transform:matrix(0.444441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444441,0.000000,0.000000,0.250000,0,0);}
.mac_c00402{transform:matrix(0.446086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446086,0.000000,0.000000,0.250000,0,0);}
.m6f_c00402{transform:matrix(0.456063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456063,0.000000,0.000000,0.250000,0,0);}
.md8_c00402{transform:matrix(0.476606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476606,0.000000,0.000000,0.250000,0,0);}
.v0_c00402{vertical-align:0.000000px;}
.v1_c00402{vertical-align:1.433520px;}
.lsb_c00402{letter-spacing:-2.661127px;}
.ls23_c00402{letter-spacing:-2.634515px;}
.ls1d_c00402{letter-spacing:-2.550240px;}
.lsa_c00402{letter-spacing:-2.508667px;}
.ls1a_c00402{letter-spacing:-2.446290px;}
.ls11_c00402{letter-spacing:-2.293830px;}
.ls9_c00402{letter-spacing:-2.250633px;}
.ls7_c00402{letter-spacing:-2.189880px;}
.ls1f_c00402{letter-spacing:-1.801800px;}
.ls14_c00402{letter-spacing:-1.746367px;}
.ls15_c00402{letter-spacing:-1.541038px;}
.lsf_c00402{letter-spacing:-1.046472px;}
.ls5_c00402{letter-spacing:-0.329711px;}
.ls2_c00402{letter-spacing:0.000000px;}
.ls16_c00402{letter-spacing:0.301040px;}
.ls8_c00402{letter-spacing:0.365549px;}
.ls0_c00402{letter-spacing:0.938958px;}
.ls1_c00402{letter-spacing:1.132484px;}
.ls20_c00402{letter-spacing:1.217700px;}
.ls19_c00402{letter-spacing:1.684391px;}
.ls26_c00402{letter-spacing:2.121615px;}
.ls28_c00402{letter-spacing:2.366100px;}
.ls6_c00402{letter-spacing:2.451326px;}
.lse_c00402{letter-spacing:2.487164px;}
.ls13_c00402{letter-spacing:2.494810px;}
.ls17_c00402{letter-spacing:2.514600px;}
.ls27_c00402{letter-spacing:2.558840px;}
.ls10_c00402{letter-spacing:3.276900px;}
.ls1b_c00402{letter-spacing:3.494700px;}
.ls4_c00402{letter-spacing:3.583810px;}
.ls3_c00402{letter-spacing:3.692700px;}
.ls25_c00402{letter-spacing:3.801610px;}
.ls24_c00402{letter-spacing:4.276810px;}
.ls12_c00402{letter-spacing:12.830598px;}
.ls21_c00402{letter-spacing:34.214598px;}
.ls18_c00402{letter-spacing:48.470598px;}
.ls1e_c00402{letter-spacing:49.896198px;}
.lsd_c00402{letter-spacing:51.321798px;}
.lsc_c00402{letter-spacing:54.172998px;}
.ls1c_c00402{letter-spacing:55.598598px;}
.ls22_c00402{letter-spacing:57.024198px;}
.sc__c00402{text-shadow:none;}
.sc0_c00402{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00402{-webkit-text-stroke:0px transparent;}
.sc0_c00402{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00402{word-spacing:-20.370375px;}
.wsc_c00402{word-spacing:-19.603440px;}
.ws4_c00402{word-spacing:-18.858008px;}
.wsf_c00402{word-spacing:-18.749535px;}
.ws2_c00402{word-spacing:-17.919050px;}
.ws6_c00402{word-spacing:-16.872577px;}
.ws8_c00402{word-spacing:-16.378011px;}
.wse_c00402{word-spacing:-3.081029px;}
.ws10_c00402{word-spacing:0.000000px;}
.ws5_c00402{word-spacing:1.075827px;}
.wsd_c00402{word-spacing:1.935345px;}
.ws3_c00402{word-spacing:2.580429px;}
.ws9_c00402{word-spacing:3.226097px;}
.ws7_c00402{word-spacing:4.730709px;}
.wsa_c00402{word-spacing:6.021857px;}
.wsb_c00402{word-spacing:7.755296px;}
.ws1_c00402{word-spacing:8.672889px;}
._f_c00402{margin-left:-14.232339px;}
._1f_c00402{margin-left:-9.819711px;}
._1d_c00402{margin-left:-7.310853px;}
._14_c00402{margin-left:-3.798883px;}
._1_c00402{width:1.505200px;}
._19_c00402{width:3.082145px;}
._1c_c00402{width:4.408230px;}
._3_c00402{width:5.920490px;}
._c_c00402{width:8.242850px;}
._5_c00402{width:10.178102px;}
._7_c00402{width:11.611622px;}
._a_c00402{width:12.901773px;}
._15_c00402{width:13.976919px;}
._9_c00402{width:15.513828px;}
._6_c00402{width:19.711032px;}
._11_c00402{width:21.144478px;}
._2_c00402{width:22.879028px;}
._13_c00402{width:24.799819px;}
._4_c00402{width:27.021797px;}
._b_c00402{width:29.259313px;}
._0_c00402{width:31.412699px;}
._16_c00402{width:32.710255px;}
._20_c00402{width:33.761827px;}
._10_c00402{width:35.981401px;}
._1a_c00402{width:36.989563px;}
._8_c00402{width:38.171677px;}
._1e_c00402{width:39.257856px;}
._18_c00402{width:42.217263px;}
._17_c00402{width:44.074553px;}
._1b_c00402{width:45.777501px;}
._d_c00402{width:51.975885px;}
._e_c00402{width:54.402167px;}
._21_c00402{width:60.508800px;}
._12_c00402{width:173.124072px;}
.fc0_c00402{color:transparent;}
.fsf_c00402{font-size:12.830598px;}
.fs19_c00402{font-size:24.354000px;}
.fse_c00402{font-size:27.720000px;}
.fs1b_c00402{font-size:28.314000px;}
.fs14_c00402{font-size:30.888000px;}
.fs4_c00402{font-size:32.868000px;}
.fs1f_c00402{font-size:34.056198px;}
.fs1a_c00402{font-size:34.214598px;}
.fs8_c00402{font-size:38.808000px;}
.fsa_c00402{font-size:45.144000px;}
.fs1e_c00402{font-size:47.322000px;}
.fs13_c00402{font-size:48.470598px;}
.fs10_c00402{font-size:49.896198px;}
.fs11_c00402{font-size:50.292000px;}
.fs7_c00402{font-size:50.688000px;}
.fs9_c00402{font-size:51.321798px;}
.fs18_c00402{font-size:51.480000px;}
.fs6_c00402{font-size:54.172998px;}
.fs16_c00402{font-size:55.598598px;}
.fs1c_c00402{font-size:57.024198px;}
.fs3_c00402{font-size:59.796198px;}
.fs2_c00402{font-size:62.568000px;}
.fs12_c00402{font-size:64.548000px;}
.fsd_c00402{font-size:65.538000px;}
.fsb_c00402{font-size:68.706198px;}
.fs15_c00402{font-size:69.894000px;}
.fsc_c00402{font-size:71.280000px;}
.fs1_c00402{font-size:71.676198px;}
.fs17_c00402{font-size:72.864000px;}
.fs0_c00402{font-size:73.854000px;}
.fs5_c00402{font-size:76.032198px;}
.fs1d_c00402{font-size:85.536198px;}
.y0_c00402{bottom:0.000000px;}
.y1_c00402{bottom:76.500000px;}
.y29_c00402{bottom:137.120985px;}
.y28_c00402{bottom:168.132735px;}
.y27_c00402{bottom:201.634335px;}
.y24_c00402{bottom:234.418185px;}
.y26_c00402{bottom:234.774585px;}
.y23_c00402{bottom:243.684585px;}
.y25_c00402{bottom:244.753785px;}
.y22_c00402{bottom:267.211935px;}
.y21_c00402{bottom:299.644335px;}
.y1f_c00402{bottom:332.071785px;}
.y20_c00402{bottom:334.571535px;}
.y1d_c00402{bottom:364.504086px;}
.y1e_c00402{bottom:364.509135px;}
.y1c_c00402{bottom:397.654335px;}
.y1b_c00402{bottom:433.294335px;}
.y1a_c00402{bottom:494.590185px;}
.y19_c00402{bottom:498.159135px;}
.y18_c00402{bottom:530.591535px;}
.y17_c00402{bottom:551.619135px;}
.y16_c00402{bottom:564.449535px;}
.y15_c00402{bottom:596.520585px;}
.y14_c00402{bottom:630.027135px;}
.y13_c00402{bottom:662.815935px;}
.y12_c00402{bottom:695.604735px;}
.y11_c00402{bottom:728.037135px;}
.y10_c00402{bottom:755.118585px;}
.yf_c00402{bottom:758.326185px;}
.yd_c00402{bottom:760.469535px;}
.ye_c00402{bottom:760.825935px;}
.yc_c00402{bottom:824.265135px;}
.ya_c00402{bottom:826.047135px;}
.yb_c00402{bottom:828.180585px;}
.y9_c00402{bottom:841.367385px;}
.y8_c00402{bottom:859.187385px;}
.y5_c00402{bottom:891.976185px;}
.y4_c00402{bottom:891.984105px;}
.y6_c00402{bottom:892.332585px;}
.y7_c00402{bottom:893.050335px;}
.y3_c00402{bottom:926.908335px;}
.y2a_c00402{bottom:1072.670985px;}
.y2_c00402{bottom:1076.234985px;}
.h10_c00402{height:8.545178px;}
.h1b_c00402{height:22.786922px;}
.h1a_c00402{height:23.902119px;}
.hf_c00402{height:28.911094px;}
.h1c_c00402{height:29.530617px;}
.h14_c00402{height:32.215219px;}
.h13_c00402{height:32.281418px;}
.h18_c00402{height:33.230868px;}
.hb_c00402{height:34.180317px;}
.h7_c00402{height:34.280297px;}
.h20_c00402{height:35.519550px;}
.h9_c00402{height:36.079217px;}
.h16_c00402{height:37.028666px;}
.h1d_c00402{height:37.978116px;}
.h1f_c00402{height:46.443955px;}
.hc_c00402{height:47.083781px;}
.h11_c00402{height:48.970390px;}
.h12_c00402{height:49.358848px;}
.ha_c00402{height:52.866000px;}
.h19_c00402{height:53.692031px;}
.h6_c00402{height:58.686698px;}
.he_c00402{height:64.321963px;}
.h4_c00402{height:65.256469px;}
.hd_c00402{height:69.957422px;}
.h3_c00402{height:70.346269px;}
.h17_c00402{height:71.512031px;}
.h5_c00402{height:71.779789px;}
.h2_c00402{height:72.483662px;}
.h15_c00402{height:72.897258px;}
.h8_c00402{height:74.621444px;}
.h1e_c00402{height:83.949101px;}
.h1_c00402{height:1110.000000px;}
.h0_c00402{height:1263.000000px;}
.w1_c00402{width:775.500000px;}
.w0_c00402{width:892.500000px;}
.x0_c00402{left:0.000000px;}
.x1_c00402{left:58.500000px;}
.x3f_c00402{left:79.864935px;}
.x2a_c00402{left:81.443985px;}
.x4_c00402{left:82.453785px;}
.x5f_c00402{left:84.260535px;}
.x2b_c00402{left:92.423085px;}
.x5_c00402{left:93.645735px;}
.x7b_c00402{left:95.105985px;}
.x67_c00402{left:98.066085px;}
.x95_c00402{left:101.922135px;}
.x56_c00402{left:103.303185px;}
.x14_c00402{left:104.758485px;}
.x96_c00402{left:106.555335px;}
.x40_c00402{left:114.717885px;}
.x6b_c00402{left:115.985085px;}
.x88_c00402{left:118.217535px;}
.x57_c00402{left:122.924985px;}
.x20_c00402{left:125.929635px;}
.x7c_c00402{left:127.023585px;}
.x89_c00402{left:129.597585px;}
.x4c_c00402{left:131.750835px;}
.x6e_c00402{left:135.671235px;}
.x6_c00402{left:137.319585px;}
.x60_c00402{left:140.947935px;}
.x61_c00402{left:144.917835px;}
.x2c_c00402{left:146.427585px;}
.x21_c00402{left:147.818535px;}
.x97_c00402{left:149.808435px;}
.x41_c00402{left:158.233335px;}
.x3a_c00402{left:160.792485px;}
.x2d_c00402{left:169.831185px;}
.x15_c00402{left:171.182535px;}
.x98_c00402{left:173.266485px;}
.x75_c00402{left:178.983735px;}
.x7_c00402{left:180.795435px;}
.x84_c00402{left:182.889285px;}
.x16_c00402{left:192.036885px;}
.x81_c00402{left:196.516635px;}
.x22_c00402{left:202.021035px;}
.x8_c00402{left:204.015885px;}
.x68_c00402{left:205.342485px;}
.x3b_c00402{left:214.623735px;}
.x85_c00402{left:219.227235px;}
.x62_c00402{left:225.696885px;}
.x4d_c00402{left:227.439285px;}
.x65_c00402{left:234.849435px;}
.x6c_c00402{left:237.136335px;}
.x2e_c00402{left:246.917535px;}
.x86_c00402{left:253.006035px;}
.x82_c00402{left:257.302635px;}
.x69_c00402{left:258.881685px;}
.x6d_c00402{left:260.851785px;}
.x2f_c00402{left:269.192535px;}
.x42_c00402{left:270.227085px;}
.x17_c00402{left:280.498335px;}
.x8a_c00402{left:282.017985px;}
.x4e_c00402{left:289.735035px;}
.x23_c00402{left:291.101235px;}
.x76_c00402{left:295.996785px;}
.x9_c00402{left:301.451685px;}
.x77_c00402{left:302.897085px;}
.x87_c00402{left:305.134485px;}
.x5c_c00402{left:313.638585px;}
.x8b_c00402{left:315.118635px;}
.xa_c00402{left:324.508785px;}
.x43_c00402{left:331.676385px;}
.x30_c00402{left:334.616685px;}
.x18_c00402{left:336.586785px;}
.x6f_c00402{left:338.645985px;}
.x31_c00402{left:345.333435px;}
.x8c_c00402{left:346.407585px;}
.x4f_c00402{left:347.650035px;}
.x91_c00402{left:357.693585px;}
.x50_c00402{left:359.005335px;}
.x24_c00402{left:369.197385px;}
.x7d_c00402{left:370.415085px;}
.x44_c00402{left:379.651785px;}
.x19_c00402{left:381.087285px;}
.x5d_c00402{left:391.125885px;}
.x51_c00402{left:402.184185px;}
.x78_c00402{left:403.906785px;}
.x58_c00402{left:413.544435px;}
.x1a_c00402{left:424.073085px;}
.x7e_c00402{left:425.171985px;}
.x8f_c00402{left:427.052985px;}
.x32_c00402{left:434.898735px;}
.x83_c00402{left:436.418385px;}
.xb_c00402{left:444.729435px;}
.x3c_c00402{left:445.813485px;}
.x7f_c00402{left:447.268785px;}
.x70_c00402{left:449.120085px;}
.x59_c00402{left:457.742985px;}
.x1b_c00402{left:468.430035px;}
.x63_c00402{left:469.523985px;}
.x3d_c00402{left:479.720985px;}
.x45_c00402{left:490.214985px;}
.x79_c00402{left:491.487135px;}
.x1c_c00402{left:501.273285px;}
.x5a_c00402{left:502.995885px;}
.x71_c00402{left:507.802335px;}
.x1f_c00402{left:512.173185px;}
.x72_c00402{left:513.346335px;}
.xc_c00402{left:523.206735px;}
.x33_c00402{left:524.899635px;}
.x34_c00402{left:528.839835px;}
.x46_c00402{left:535.096635px;}
.x52_c00402{left:537.843885px;}
.x99_c00402{left:546.016335px;}
.x6a_c00402{left:547.189485px;}
.x8d_c00402{left:548.580435px;}
.x35_c00402{left:555.253035px;}
.x47_c00402{left:556.495485px;}
.x92_c00402{left:557.534985px;}
.xd_c00402{left:566.256885px;}
.x1d_c00402{left:567.301335px;}
.x48_c00402{left:569.380335px;}
.x53_c00402{left:578.354685px;}
.x73_c00402{left:579.983235px;}
.x8e_c00402{left:581.824635px;}
.x25_c00402{left:589.066485px;}
.x49_c00402{left:590.279235px;}
.x5e_c00402{left:599.609985px;}
.x1e_c00402{left:600.649485px;}
.x5b_c00402{left:612.371085px;}
.x26_c00402{left:622.736385px;}
.x74_c00402{left:623.780835px;}
.x64_c00402{left:625.325235px;}
.xe_c00402{left:634.264935px;}
.x80_c00402{left:635.908335px;}
.x3e_c00402{left:642.655185px;}
.x4a_c00402{left:644.734185px;}
.xf_c00402{left:646.298385px;}
.x66_c00402{left:655.045035px;}
.x27_c00402{left:656.297385px;}
.x93_c00402{left:657.609135px;}
.x36_c00402{left:658.732785px;}
.x39_c00402{left:660.084135px;}
.x10_c00402{left:668.014035px;}
.x2_c00402{left:679.062435px;}
.x4b_c00402{left:689.056485px;}
.x3_c00402{left:690.957285px;}
.x37_c00402{left:691.996785px;}
.x94_c00402{left:693.254085px;}
.x28_c00402{left:699.921735px;}
.x90_c00402{left:701.149335px;}
.x38_c00402{left:703.168935px;}
.x29_c00402{left:707.633835px;}
.x54_c00402{left:711.148335px;}
.x11_c00402{left:712.247235px;}
.x12_c00402{left:722.850135px;}
.x7a_c00402{left:723.963885px;}
.x55_c00402{left:734.012385px;}
.x13_c00402{left:745.001385px;}
.x9a_c00402{left:773.166885px;}
@media print{
.v0_c00402{vertical-align:0.000000pt;}
.v1_c00402{vertical-align:1.274240pt;}
.lsb_c00402{letter-spacing:-2.365446pt;}
.ls23_c00402{letter-spacing:-2.341791pt;}
.ls1d_c00402{letter-spacing:-2.266880pt;}
.lsa_c00402{letter-spacing:-2.229926pt;}
.ls1a_c00402{letter-spacing:-2.174480pt;}
.ls11_c00402{letter-spacing:-2.038960pt;}
.ls9_c00402{letter-spacing:-2.000562pt;}
.ls7_c00402{letter-spacing:-1.946560pt;}
.ls1f_c00402{letter-spacing:-1.601600pt;}
.ls14_c00402{letter-spacing:-1.552326pt;}
.ls15_c00402{letter-spacing:-1.369812pt;}
.lsf_c00402{letter-spacing:-0.930198pt;}
.ls5_c00402{letter-spacing:-0.293076pt;}
.ls2_c00402{letter-spacing:0.000000pt;}
.ls16_c00402{letter-spacing:0.267591pt;}
.ls8_c00402{letter-spacing:0.324932pt;}
.ls0_c00402{letter-spacing:0.834630pt;}
.ls1_c00402{letter-spacing:1.006652pt;}
.ls20_c00402{letter-spacing:1.082400pt;}
.ls19_c00402{letter-spacing:1.497236pt;}
.ls26_c00402{letter-spacing:1.885880pt;}
.ls28_c00402{letter-spacing:2.103200pt;}
.ls6_c00402{letter-spacing:2.178956pt;}
.lse_c00402{letter-spacing:2.210813pt;}
.ls13_c00402{letter-spacing:2.217609pt;}
.ls17_c00402{letter-spacing:2.235200pt;}
.ls27_c00402{letter-spacing:2.274525pt;}
.ls10_c00402{letter-spacing:2.912800pt;}
.ls1b_c00402{letter-spacing:3.106400pt;}
.ls4_c00402{letter-spacing:3.185609pt;}
.ls3_c00402{letter-spacing:3.282400pt;}
.ls25_c00402{letter-spacing:3.379209pt;}
.ls24_c00402{letter-spacing:3.801609pt;}
.ls12_c00402{letter-spacing:11.404976pt;}
.ls21_c00402{letter-spacing:30.412976pt;}
.ls18_c00402{letter-spacing:43.084976pt;}
.ls1e_c00402{letter-spacing:44.352176pt;}
.lsd_c00402{letter-spacing:45.619376pt;}
.lsc_c00402{letter-spacing:48.153776pt;}
.ls1c_c00402{letter-spacing:49.420976pt;}
.ls22_c00402{letter-spacing:50.688176pt;}
.ws0_c00402{word-spacing:-18.107000pt;}
.wsc_c00402{word-spacing:-17.425280pt;}
.ws4_c00402{word-spacing:-16.762674pt;}
.wsf_c00402{word-spacing:-16.666253pt;}
.ws2_c00402{word-spacing:-15.928044pt;}
.ws6_c00402{word-spacing:-14.997846pt;}
.ws8_c00402{word-spacing:-14.558232pt;}
.wse_c00402{word-spacing:-2.738692pt;}
.ws10_c00402{word-spacing:0.000000pt;}
.ws5_c00402{word-spacing:0.956291pt;}
.wsd_c00402{word-spacing:1.720307pt;}
.ws3_c00402{word-spacing:2.293715pt;}
.ws9_c00402{word-spacing:2.867641pt;}
.ws7_c00402{word-spacing:4.205075pt;}
.wsa_c00402{word-spacing:5.352761pt;}
.wsb_c00402{word-spacing:6.893596pt;}
.ws1_c00402{word-spacing:7.709235pt;}
._f_c00402{margin-left:-12.650968pt;}
._1f_c00402{margin-left:-8.728632pt;}
._1d_c00402{margin-left:-6.498536pt;}
._14_c00402{margin-left:-3.376785pt;}
._1_c00402{width:1.337956pt;}
._19_c00402{width:2.739684pt;}
._1c_c00402{width:3.918427pt;}
._3_c00402{width:5.262658pt;}
._c_c00402{width:7.326978pt;}
._5_c00402{width:9.047202pt;}
._7_c00402{width:10.321442pt;}
._a_c00402{width:11.468243pt;}
._15_c00402{width:12.423928pt;}
._9_c00402{width:13.790069pt;}
._6_c00402{width:17.520917pt;}
._11_c00402{width:18.795092pt;}
._2_c00402{width:20.336914pt;}
._13_c00402{width:22.044284pt;}
._4_c00402{width:24.019375pt;}
._b_c00402{width:26.008278pt;}
._0_c00402{width:27.922399pt;}
._16_c00402{width:29.075782pt;}
._20_c00402{width:30.010513pt;}
._10_c00402{width:31.983468pt;}
._1a_c00402{width:32.879611pt;}
._8_c00402{width:33.930380pt;}
._1e_c00402{width:34.895872pt;}
._18_c00402{width:37.526456pt;}
._17_c00402{width:39.177380pt;}
._1b_c00402{width:40.691112pt;}
._d_c00402{width:46.200787pt;}
._e_c00402{width:48.357481pt;}
._21_c00402{width:53.785600pt;}
._12_c00402{width:153.888064pt;}
.fsf_c00402{font-size:11.404976pt;}
.fs19_c00402{font-size:21.648000pt;}
.fse_c00402{font-size:24.640000pt;}
.fs1b_c00402{font-size:25.168000pt;}
.fs14_c00402{font-size:27.456000pt;}
.fs4_c00402{font-size:29.216000pt;}
.fs1f_c00402{font-size:30.272176pt;}
.fs1a_c00402{font-size:30.412976pt;}
.fs8_c00402{font-size:34.496000pt;}
.fsa_c00402{font-size:40.128000pt;}
.fs1e_c00402{font-size:42.064000pt;}
.fs13_c00402{font-size:43.084976pt;}
.fs10_c00402{font-size:44.352176pt;}
.fs11_c00402{font-size:44.704000pt;}
.fs7_c00402{font-size:45.056000pt;}
.fs9_c00402{font-size:45.619376pt;}
.fs18_c00402{font-size:45.760000pt;}
.fs6_c00402{font-size:48.153776pt;}
.fs16_c00402{font-size:49.420976pt;}
.fs1c_c00402{font-size:50.688176pt;}
.fs3_c00402{font-size:53.152176pt;}
.fs2_c00402{font-size:55.616000pt;}
.fs12_c00402{font-size:57.376000pt;}
.fsd_c00402{font-size:58.256000pt;}
.fsb_c00402{font-size:61.072176pt;}
.fs15_c00402{font-size:62.128000pt;}
.fsc_c00402{font-size:63.360000pt;}
.fs1_c00402{font-size:63.712176pt;}
.fs17_c00402{font-size:64.768000pt;}
.fs0_c00402{font-size:65.648000pt;}
.fs5_c00402{font-size:67.584176pt;}
.fs1d_c00402{font-size:76.032176pt;}
.y0_c00402{bottom:0.000000pt;}
.y1_c00402{bottom:68.000000pt;}
.y29_c00402{bottom:121.885320pt;}
.y28_c00402{bottom:149.451320pt;}
.y27_c00402{bottom:179.230520pt;}
.y24_c00402{bottom:208.371720pt;}
.y26_c00402{bottom:208.688520pt;}
.y23_c00402{bottom:216.608520pt;}
.y25_c00402{bottom:217.558920pt;}
.y22_c00402{bottom:237.521720pt;}
.y21_c00402{bottom:266.350520pt;}
.y1f_c00402{bottom:295.174920pt;}
.y20_c00402{bottom:297.396920pt;}
.y1d_c00402{bottom:324.003632pt;}
.y1e_c00402{bottom:324.008120pt;}
.y1c_c00402{bottom:353.470520pt;}
.y1b_c00402{bottom:385.150520pt;}
.y1a_c00402{bottom:439.635720pt;}
.y19_c00402{bottom:442.808120pt;}
.y18_c00402{bottom:471.636920pt;}
.y17_c00402{bottom:490.328120pt;}
.y16_c00402{bottom:501.732920pt;}
.y15_c00402{bottom:530.240520pt;}
.y14_c00402{bottom:560.024120pt;}
.y13_c00402{bottom:589.169720pt;}
.y12_c00402{bottom:618.315320pt;}
.y11_c00402{bottom:647.144120pt;}
.y10_c00402{bottom:671.216520pt;}
.yf_c00402{bottom:674.067720pt;}
.yd_c00402{bottom:675.972920pt;}
.ye_c00402{bottom:676.289720pt;}
.yc_c00402{bottom:732.680120pt;}
.ya_c00402{bottom:734.264120pt;}
.yb_c00402{bottom:736.160520pt;}
.y9_c00402{bottom:747.882120pt;}
.y8_c00402{bottom:763.722120pt;}
.y5_c00402{bottom:792.867720pt;}
.y4_c00402{bottom:792.874760pt;}
.y6_c00402{bottom:793.184520pt;}
.y7_c00402{bottom:793.822520pt;}
.y3_c00402{bottom:823.918520pt;}
.y2a_c00402{bottom:953.485320pt;}
.y2_c00402{bottom:956.653320pt;}
.h10_c00402{height:7.595714pt;}
.h1b_c00402{height:20.255042pt;}
.h1a_c00402{height:21.246328pt;}
.hf_c00402{height:25.698750pt;}
.h1c_c00402{height:26.249438pt;}
.h14_c00402{height:28.635750pt;}
.h13_c00402{height:28.694594pt;}
.h18_c00402{height:29.538549pt;}
.hb_c00402{height:30.382504pt;}
.h7_c00402{height:30.471375pt;}
.h20_c00402{height:31.572934pt;}
.h9_c00402{height:32.070415pt;}
.h16_c00402{height:32.914370pt;}
.h1d_c00402{height:33.758325pt;}
.h1f_c00402{height:41.283516pt;}
.hc_c00402{height:41.852250pt;}
.h11_c00402{height:43.529235pt;}
.h12_c00402{height:43.874531pt;}
.ha_c00402{height:46.992000pt;}
.h19_c00402{height:47.726250pt;}
.h6_c00402{height:52.165954pt;}
.he_c00402{height:57.175078pt;}
.h4_c00402{height:58.005750pt;}
.hd_c00402{height:62.184375pt;}
.h3_c00402{height:62.530016pt;}
.h17_c00402{height:63.566250pt;}
.h5_c00402{height:63.804256pt;}
.h2_c00402{height:64.429922pt;}
.h15_c00402{height:64.797562pt;}
.h8_c00402{height:66.330173pt;}
.h1e_c00402{height:74.621423pt;}
.h1_c00402{height:986.666667pt;}
.h0_c00402{height:1122.666667pt;}
.w1_c00402{width:689.333333pt;}
.w0_c00402{width:793.333333pt;}
.x0_c00402{left:0.000000pt;}
.x1_c00402{left:52.000000pt;}
.x3f_c00402{left:70.991053pt;}
.x2a_c00402{left:72.394653pt;}
.x4_c00402{left:73.292253pt;}
.x5f_c00402{left:74.898253pt;}
.x2b_c00402{left:82.153853pt;}
.x5_c00402{left:83.240653pt;}
.x7b_c00402{left:84.538653pt;}
.x67_c00402{left:87.169853pt;}
.x95_c00402{left:90.597453pt;}
.x56_c00402{left:91.825053pt;}
.x14_c00402{left:93.118653pt;}
.x96_c00402{left:94.715853pt;}
.x40_c00402{left:101.971453pt;}
.x6b_c00402{left:103.097853pt;}
.x88_c00402{left:105.082253pt;}
.x57_c00402{left:109.266653pt;}
.x20_c00402{left:111.937453pt;}
.x7c_c00402{left:112.909853pt;}
.x89_c00402{left:115.197853pt;}
.x4c_c00402{left:117.111853pt;}
.x6e_c00402{left:120.596653pt;}
.x6_c00402{left:122.061853pt;}
.x60_c00402{left:125.287053pt;}
.x61_c00402{left:128.815853pt;}
.x2c_c00402{left:130.157853pt;}
.x21_c00402{left:131.394253pt;}
.x97_c00402{left:133.163053pt;}
.x41_c00402{left:140.651853pt;}
.x3a_c00402{left:142.926653pt;}
.x2d_c00402{left:150.961053pt;}
.x15_c00402{left:152.162253pt;}
.x98_c00402{left:154.014653pt;}
.x75_c00402{left:159.096653pt;}
.x7_c00402{left:160.707053pt;}
.x84_c00402{left:162.568253pt;}
.x16_c00402{left:170.699453pt;}
.x81_c00402{left:174.681453pt;}
.x22_c00402{left:179.574253pt;}
.x8_c00402{left:181.347453pt;}
.x68_c00402{left:182.526653pt;}
.x3b_c00402{left:190.776653pt;}
.x85_c00402{left:194.868653pt;}
.x62_c00402{left:200.619453pt;}
.x4d_c00402{left:202.168253pt;}
.x65_c00402{left:208.755053pt;}
.x6c_c00402{left:210.787853pt;}
.x2e_c00402{left:219.482253pt;}
.x86_c00402{left:224.894253pt;}
.x82_c00402{left:228.713453pt;}
.x69_c00402{left:230.117053pt;}
.x6d_c00402{left:231.868253pt;}
.x2f_c00402{left:239.282253pt;}
.x42_c00402{left:240.201853pt;}
.x17_c00402{left:249.331853pt;}
.x8a_c00402{left:250.682653pt;}
.x4e_c00402{left:257.542253pt;}
.x23_c00402{left:258.756653pt;}
.x76_c00402{left:263.108253pt;}
.x9_c00402{left:267.957053pt;}
.x77_c00402{left:269.241853pt;}
.x87_c00402{left:271.230653pt;}
.x5c_c00402{left:278.789853pt;}
.x8b_c00402{left:280.105453pt;}
.xa_c00402{left:288.452253pt;}
.x43_c00402{left:294.823453pt;}
.x30_c00402{left:297.437053pt;}
.x18_c00402{left:299.188253pt;}
.x6f_c00402{left:301.018653pt;}
.x31_c00402{left:306.963053pt;}
.x8c_c00402{left:307.917853pt;}
.x4f_c00402{left:309.022253pt;}
.x91_c00402{left:317.949853pt;}
.x50_c00402{left:319.115853pt;}
.x24_c00402{left:328.175453pt;}
.x7d_c00402{left:329.257853pt;}
.x44_c00402{left:337.468253pt;}
.x19_c00402{left:338.744253pt;}
.x5d_c00402{left:347.667453pt;}
.x51_c00402{left:357.497053pt;}
.x78_c00402{left:359.028253pt;}
.x58_c00402{left:367.595053pt;}
.x1a_c00402{left:376.953853pt;}
.x7e_c00402{left:377.930653pt;}
.x8f_c00402{left:379.602653pt;}
.x32_c00402{left:386.576653pt;}
.x83_c00402{left:387.927453pt;}
.xb_c00402{left:395.315053pt;}
.x3c_c00402{left:396.278653pt;}
.x7f_c00402{left:397.572253pt;}
.x70_c00402{left:399.217853pt;}
.x59_c00402{left:406.882653pt;}
.x1b_c00402{left:416.382253pt;}
.x63_c00402{left:417.354653pt;}
.x3d_c00402{left:426.418653pt;}
.x45_c00402{left:435.746653pt;}
.x79_c00402{left:436.877453pt;}
.x1c_c00402{left:445.576253pt;}
.x5a_c00402{left:447.107453pt;}
.x71_c00402{left:451.379853pt;}
.x1f_c00402{left:455.265053pt;}
.x72_c00402{left:456.307853pt;}
.xc_c00402{left:465.072653pt;}
.x33_c00402{left:466.577453pt;}
.x34_c00402{left:470.079853pt;}
.x46_c00402{left:475.641453pt;}
.x52_c00402{left:478.083453pt;}
.x99_c00402{left:485.347853pt;}
.x6a_c00402{left:486.390653pt;}
.x8d_c00402{left:487.627053pt;}
.x35_c00402{left:493.558253pt;}
.x47_c00402{left:494.662653pt;}
.x92_c00402{left:495.586653pt;}
.xd_c00402{left:503.339453pt;}
.x1d_c00402{left:504.267853pt;}
.x48_c00402{left:506.115853pt;}
.x53_c00402{left:514.093053pt;}
.x73_c00402{left:515.540653pt;}
.x8e_c00402{left:517.177453pt;}
.x25_c00402{left:523.614653pt;}
.x49_c00402{left:524.692653pt;}
.x5e_c00402{left:532.986653pt;}
.x1e_c00402{left:533.910653pt;}
.x5b_c00402{left:544.329853pt;}
.x26_c00402{left:553.543453pt;}
.x74_c00402{left:554.471853pt;}
.x64_c00402{left:555.844653pt;}
.xe_c00402{left:563.791053pt;}
.x80_c00402{left:565.251853pt;}
.x3e_c00402{left:571.249053pt;}
.x4a_c00402{left:573.097053pt;}
.xf_c00402{left:574.487453pt;}
.x66_c00402{left:582.262253pt;}
.x27_c00402{left:583.375453pt;}
.x93_c00402{left:584.541453pt;}
.x36_c00402{left:585.540253pt;}
.x39_c00402{left:586.741453pt;}
.x10_c00402{left:593.790253pt;}
.x2_c00402{left:603.611053pt;}
.x4b_c00402{left:612.494653pt;}
.x3_c00402{left:614.184253pt;}
.x37_c00402{left:615.108253pt;}
.x94_c00402{left:616.225853pt;}
.x28_c00402{left:622.152653pt;}
.x90_c00402{left:623.243853pt;}
.x38_c00402{left:625.039053pt;}
.x29_c00402{left:629.007853pt;}
.x54_c00402{left:632.131853pt;}
.x11_c00402{left:633.108653pt;}
.x12_c00402{left:642.533453pt;}
.x7a_c00402{left:643.523453pt;}
.x55_c00402{left:652.455453pt;}
.x13_c00402{left:662.223453pt;}
.x9a_c00402{left:687.259453pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_afe570392b389dcacb529461.woff2')format("woff");}.ff1_c00403{font-family:ff1_c00403;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00403;src:url('chunks/assets/font_e62220e1a979bbe931a963dc.woff2')format("woff");}.ff2_c00403{font-family:ff2_c00403;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00403;src:url('chunks/assets/font_d43c20f742a7552e7b0a789d.woff2')format("woff");}.ff3_c00403{font-family:ff3_c00403;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00403;src:url('chunks/assets/font_a048ee9d99d96ea21cd156a6.woff2')format("woff");}.ff4_c00403{font-family:ff4_c00403;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00403;src:url('chunks/assets/font_1b697854b7581cf9339540c1.woff2')format("woff");}.ff5_c00403{font-family:ff5_c00403;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00403;src:url('chunks/assets/font_52376bca837d70e828e1d7aa.woff2')format("woff");}.ff6_c00403{font-family:ff6_c00403;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00403;src:url('chunks/assets/font_a68e341e637a6502b265689e.woff2')format("woff");}.ff7_c00403{font-family:ff7_c00403;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4e_c00403{transform:matrix(0.048612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048612,0.000000,0.000000,0.250000,0,0);}
.m2f_c00403{transform:matrix(0.053572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053572,0.000000,0.000000,0.250000,0,0);}
.m69_c00403{transform:matrix(0.059376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.059376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.059376,0.000000,0.000000,0.250000,0,0);}
.m4f_c00403{transform:matrix(0.069445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.069445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.069445,0.000000,0.000000,0.250000,0,0);}
.mbe_c00403{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m68_c00403{transform:matrix(0.116072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116072,0.000000,0.000000,0.250000,0,0);}
.mcd_c00403{transform:matrix(0.122101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122101,0.000000,0.000000,0.250000,0,0);}
.m58_c00403{transform:matrix(0.126018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126018,0.000000,0.000000,0.250000,0,0);}
.m77_c00403{transform:matrix(0.128571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128571,0.000000,0.000000,0.250000,0,0);}
.m98_c00403{transform:matrix(0.138889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138889,0.000000,0.000000,0.250000,0,0);}
.m97_c00403{transform:matrix(0.154514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154514,0.000000,0.000000,0.250000,0,0);}
.m22_c00403{transform:matrix(0.158333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158333,0.000000,0.000000,0.250000,0,0);}
.m23_c00403{transform:matrix(0.159723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159723,0.000000,0.000000,0.250000,0,0);}
.m6c_c00403{transform:matrix(0.160157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160157,0.000000,0.000000,0.250000,0,0);}
.m2d_c00403{transform:matrix(0.167535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167535,0.000000,0.000000,0.250000,0,0);}
.mbd_c00403{transform:matrix(0.169048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169048,0.000000,0.000000,0.250000,0,0);}
.mad_c00403{transform:matrix(0.169118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169118,0.000000,0.000000,0.250000,0,0);}
.m9d_c00403{transform:matrix(0.170834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170834,0.000000,0.000000,0.250000,0,0);}
.mbb_c00403{transform:matrix(0.171333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171333,0.000000,0.000000,0.250000,0,0);}
.m4d_c00403{transform:matrix(0.173610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173610,0.000000,0.000000,0.250000,0,0);}
.m31_c00403{transform:matrix(0.175715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175715,0.000000,0.000000,0.250000,0,0);}
.mb0_c00403{transform:matrix(0.182739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182739,0.000000,0.000000,0.250000,0,0);}
.mab_c00403{transform:matrix(0.183823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183823,0.000000,0.000000,0.250000,0,0);}
.m89_c00403{transform:matrix(0.185212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185212,0.000000,0.000000,0.250000,0,0);}
.mce_c00403{transform:matrix(0.186642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186642,0.000000,0.000000,0.250000,0,0);}
.m6a_c00403{transform:matrix(0.187499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187499,0.000000,0.000000,0.250000,0,0);}
.m30_c00403{transform:matrix(0.189285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189285,0.000000,0.000000,0.250000,0,0);}
.mcf_c00403{transform:matrix(0.192534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192534,0.000000,0.000000,0.250000,0,0);}
.m34_c00403{transform:matrix(0.194081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194081,0.000000,0.000000,0.250000,0,0);}
.m37_c00403{transform:matrix(0.195295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195295,0.000000,0.000000,0.250000,0,0);}
.md2_c00403{transform:matrix(0.197795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197795,0.000000,0.000000,0.250000,0,0);}
.m76_c00403{transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);}
.m99_c00403{transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);}
.m7b_c00403{transform:matrix(0.214594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214594,0.000000,0.000000,0.250000,0,0);}
.m5b_c00403{transform:matrix(0.218596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218596,0.000000,0.000000,0.250000,0,0);}
.m78_c00403{transform:matrix(0.219048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219048,0.000000,0.000000,0.250000,0,0);}
.mac_c00403{transform:matrix(0.223930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223930,0.000000,0.000000,0.250000,0,0);}
.m8e_c00403{transform:matrix(0.240993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240993,0.000000,0.000000,0.250000,0,0);}
.m32_c00403{transform:matrix(0.249647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249647,0.000000,0.000000,0.250000,0,0);}
.m0_c00403{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.md1_c00403{transform:matrix(0.251999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251999,0.000000,0.000000,0.250000,0,0);}
.mb1_c00403{transform:matrix(0.252688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252688,0.000000,0.000000,0.250000,0,0);}
.mb_c00403{transform:matrix(0.253346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253346,0.000000,0.000000,0.250000,0,0);}
.m1e_c00403{transform:matrix(0.255038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255038,0.000000,0.000000,0.250000,0,0);}
.mcb_c00403{transform:matrix(0.257264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257264,0.000000,0.000000,0.250000,0,0);}
.m1_c00403{transform:matrix(0.258150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258150,0.000000,0.000000,0.250000,0,0);}
.m1d_c00403{transform:matrix(0.262593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262593,0.000000,0.000000,0.250000,0,0);}
.m6b_c00403{transform:matrix(0.263960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263960,0.000000,0.000000,0.250000,0,0);}
.mc4_c00403{transform:matrix(0.264165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264165,0.000000,0.000000,0.250000,0,0);}
.m2e_c00403{transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);}
.mb5_c00403{transform:matrix(0.266280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266280,0.000000,0.000000,0.250000,0,0);}
.mcc_c00403{transform:matrix(0.266669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266669,0.000000,0.000000,0.250000,0,0);}
.m96_c00403{transform:matrix(0.266990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266990,0.000000,0.000000,0.250000,0,0);}
.md0_c00403{transform:matrix(0.268086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268086,0.000000,0.000000,0.250000,0,0);}
.m6f_c00403{transform:matrix(0.268299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268299,0.000000,0.000000,0.250000,0,0);}
.m28_c00403{transform:matrix(0.269255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269255,0.000000,0.000000,0.250000,0,0);}
.m86_c00403{transform:matrix(0.269751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269751,0.000000,0.000000,0.250000,0,0);}
.m60_c00403{transform:matrix(0.270267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270267,0.000000,0.000000,0.250000,0,0);}
.m8b_c00403{transform:matrix(0.272692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272692,0.000000,0.000000,0.250000,0,0);}
.m7f_c00403{transform:matrix(0.274979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274979,0.000000,0.000000,0.250000,0,0);}
.m82_c00403{transform:matrix(0.275680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275680,0.000000,0.000000,0.250000,0,0);}
.mb9_c00403{transform:matrix(0.275696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275696,0.000000,0.000000,0.250000,0,0);}
.m6e_c00403{transform:matrix(0.276039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276039,0.000000,0.000000,0.250000,0,0);}
.m5f_c00403{transform:matrix(0.276336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276336,0.000000,0.000000,0.250000,0,0);}
.m81_c00403{transform:matrix(0.277387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277387,0.000000,0.000000,0.250000,0,0);}
.m8a_c00403{transform:matrix(0.277678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277678,0.000000,0.000000,0.250000,0,0);}
.m47_c00403{transform:matrix(0.278442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278442,0.000000,0.000000,0.250000,0,0);}
.ma2_c00403{transform:matrix(0.278702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278702,0.000000,0.000000,0.250000,0,0);}
.mf_c00403{transform:matrix(0.279011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279011,0.000000,0.000000,0.250000,0,0);}
.m55_c00403{transform:matrix(0.280171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280171,0.000000,0.000000,0.250000,0,0);}
.mb4_c00403{transform:matrix(0.281229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281229,0.000000,0.000000,0.250000,0,0);}
.m3_c00403{transform:matrix(0.282201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282201,0.000000,0.000000,0.250000,0,0);}
.m26_c00403{transform:matrix(0.282378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282378,0.000000,0.000000,0.250000,0,0);}
.mb3_c00403{transform:matrix(0.282545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282545,0.000000,0.000000,0.250000,0,0);}
.ma1_c00403{transform:matrix(0.284307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284307,0.000000,0.000000,0.250000,0,0);}
.mc8_c00403{transform:matrix(0.284626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284626,0.000000,0.000000,0.250000,0,0);}
.ma4_c00403{transform:matrix(0.284684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284684,0.000000,0.000000,0.250000,0,0);}
.m85_c00403{transform:matrix(0.284831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284831,0.000000,0.000000,0.250000,0,0);}
.m25_c00403{transform:matrix(0.284841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284841,0.000000,0.000000,0.250000,0,0);}
.m24_c00403{transform:matrix(0.285320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285320,0.000000,0.000000,0.250000,0,0);}
.m72_c00403{transform:matrix(0.286762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286762,0.000000,0.000000,0.250000,0,0);}
.m7c_c00403{transform:matrix(0.286950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286950,0.000000,0.000000,0.250000,0,0);}
.m7_c00403{transform:matrix(0.287241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287241,0.000000,0.000000,0.250000,0,0);}
.m42_c00403{transform:matrix(0.287919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287919,0.000000,0.000000,0.250000,0,0);}
.m29_c00403{transform:matrix(0.289782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289782,0.000000,0.000000,0.250000,0,0);}
.m66_c00403{transform:matrix(0.290072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290072,0.000000,0.000000,0.250000,0,0);}
.m79_c00403{transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);}
.m51_c00403{transform:matrix(0.290828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290828,0.000000,0.000000,0.250000,0,0);}
.m90_c00403{transform:matrix(0.292168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292168,0.000000,0.000000,0.250000,0,0);}
.m48_c00403{transform:matrix(0.292280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292280,0.000000,0.000000,0.250000,0,0);}
.m13_c00403{transform:matrix(0.293039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293039,0.000000,0.000000,0.250000,0,0);}
.m12_c00403{transform:matrix(0.293295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293295,0.000000,0.000000,0.250000,0,0);}
.m52_c00403{transform:matrix(0.294085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294085,0.000000,0.000000,0.250000,0,0);}
.m33_c00403{transform:matrix(0.294945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294945,0.000000,0.000000,0.250000,0,0);}
.mb2_c00403{transform:matrix(0.295509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295509,0.000000,0.000000,0.250000,0,0);}
.mb6_c00403{transform:matrix(0.295772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295772,0.000000,0.000000,0.250000,0,0);}
.m3f_c00403{transform:matrix(0.296059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296059,0.000000,0.000000,0.250000,0,0);}
.m91_c00403{transform:matrix(0.297320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297320,0.000000,0.000000,0.250000,0,0);}
.m63_c00403{transform:matrix(0.298987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298987,0.000000,0.000000,0.250000,0,0);}
.mc0_c00403{transform:matrix(0.299046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299046,0.000000,0.000000,0.250000,0,0);}
.m14_c00403{transform:matrix(0.299728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299728,0.000000,0.000000,0.250000,0,0);}
.m53_c00403{transform:matrix(0.299777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299777,0.000000,0.000000,0.250000,0,0);}
.mbc_c00403{transform:matrix(0.299800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299800,0.000000,0.000000,0.250000,0,0);}
.m7e_c00403{transform:matrix(0.300965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300965,0.000000,0.000000,0.250000,0,0);}
.m50_c00403{transform:matrix(0.302365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302365,0.000000,0.000000,0.250000,0,0);}
.ma6_c00403{transform:matrix(0.302992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302992,0.000000,0.000000,0.250000,0,0);}
.m45_c00403{transform:matrix(0.303165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303165,0.000000,0.000000,0.250000,0,0);}
.m6_c00403{transform:matrix(0.303171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303171,0.000000,0.000000,0.250000,0,0);}
.m3d_c00403{transform:matrix(0.305158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305158,0.000000,0.000000,0.250000,0,0);}
.m8f_c00403{transform:matrix(0.305417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305417,0.000000,0.000000,0.250000,0,0);}
.m5d_c00403{transform:matrix(0.307360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307360,0.000000,0.000000,0.250000,0,0);}
.m92_c00403{transform:matrix(0.307380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307380,0.000000,0.000000,0.250000,0,0);}
.md6_c00403{transform:matrix(0.307817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307817,0.000000,0.000000,0.250000,0,0);}
.m39_c00403{transform:matrix(0.307913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307913,0.000000,0.000000,0.250000,0,0);}
.mc7_c00403{transform:matrix(0.308438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308438,0.000000,0.000000,0.250000,0,0);}
.m8d_c00403{transform:matrix(0.308526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308526,0.000000,0.000000,0.250000,0,0);}
.m2c_c00403{transform:matrix(0.308683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308683,0.000000,0.000000,0.250000,0,0);}
.m59_c00403{transform:matrix(0.311235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311235,0.000000,0.000000,0.250000,0,0);}
.m2a_c00403{transform:matrix(0.311850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311850,0.000000,0.000000,0.250000,0,0);}
.m20_c00403{transform:matrix(0.312151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312151,0.000000,0.000000,0.250000,0,0);}
.mc1_c00403{transform:matrix(0.312541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312541,0.000000,0.000000,0.250000,0,0);}
.mc3_c00403{transform:matrix(0.313401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313401,0.000000,0.000000,0.250000,0,0);}
.m62_c00403{transform:matrix(0.313446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313446,0.000000,0.000000,0.250000,0,0);}
.m84_c00403{transform:matrix(0.313870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313870,0.000000,0.000000,0.250000,0,0);}
.m5a_c00403{transform:matrix(0.314081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314081,0.000000,0.000000,0.250000,0,0);}
.m18_c00403{transform:matrix(0.314197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314197,0.000000,0.000000,0.250000,0,0);}
.md7_c00403{transform:matrix(0.315244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315244,0.000000,0.000000,0.250000,0,0);}
.m4_c00403{transform:matrix(0.315426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315426,0.000000,0.000000,0.250000,0,0);}
.mc6_c00403{transform:matrix(0.315743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315743,0.000000,0.000000,0.250000,0,0);}
.mc5_c00403{transform:matrix(0.315840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315840,0.000000,0.000000,0.250000,0,0);}
.m5c_c00403{transform:matrix(0.315883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315883,0.000000,0.000000,0.250000,0,0);}
.m56_c00403{transform:matrix(0.316559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316559,0.000000,0.000000,0.250000,0,0);}
.mb8_c00403{transform:matrix(0.316568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316568,0.000000,0.000000,0.250000,0,0);}
.mca_c00403{transform:matrix(0.316831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316831,0.000000,0.000000,0.250000,0,0);}
.ma_c00403{transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00403{transform:matrix(0.318070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318070,0.000000,0.000000,0.250000,0,0);}
.m9a_c00403{transform:matrix(0.318212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318212,0.000000,0.000000,0.250000,0,0);}
.m3a_c00403{transform:matrix(0.318330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318330,0.000000,0.000000,0.250000,0,0);}
.maa_c00403{transform:matrix(0.320793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320793,0.000000,0.000000,0.250000,0,0);}
.m93_c00403{transform:matrix(0.321654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321654,0.000000,0.000000,0.250000,0,0);}
.m1a_c00403{transform:matrix(0.321897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321897,0.000000,0.000000,0.250000,0,0);}
.m11_c00403{transform:matrix(0.322134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322134,0.000000,0.000000,0.250000,0,0);}
.mb7_c00403{transform:matrix(0.323612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323612,0.000000,0.000000,0.250000,0,0);}
.maf_c00403{transform:matrix(0.323624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323624,0.000000,0.000000,0.250000,0,0);}
.m41_c00403{transform:matrix(0.323651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323651,0.000000,0.000000,0.250000,0,0);}
.m43_c00403{transform:matrix(0.324116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324116,0.000000,0.000000,0.250000,0,0);}
.m73_c00403{transform:matrix(0.324117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324117,0.000000,0.000000,0.250000,0,0);}
.m9f_c00403{transform:matrix(0.324193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324193,0.000000,0.000000,0.250000,0,0);}
.m2b_c00403{transform:matrix(0.324334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324334,0.000000,0.000000,0.250000,0,0);}
.m9c_c00403{transform:matrix(0.324689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324689,0.000000,0.000000,0.250000,0,0);}
.m16_c00403{transform:matrix(0.325160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325160,0.000000,0.000000,0.250000,0,0);}
.m1b_c00403{transform:matrix(0.326678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326678,0.000000,0.000000,0.250000,0,0);}
.m95_c00403{transform:matrix(0.327599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327599,0.000000,0.000000,0.250000,0,0);}
.m9b_c00403{transform:matrix(0.329059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329059,0.000000,0.000000,0.250000,0,0);}
.m27_c00403{transform:matrix(0.329835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329835,0.000000,0.000000,0.250000,0,0);}
.m57_c00403{transform:matrix(0.329866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329866,0.000000,0.000000,0.250000,0,0);}
.m74_c00403{transform:matrix(0.329904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329904,0.000000,0.000000,0.250000,0,0);}
.ma8_c00403{transform:matrix(0.331771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331771,0.000000,0.000000,0.250000,0,0);}
.m19_c00403{transform:matrix(0.331857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331857,0.000000,0.000000,0.250000,0,0);}
.m5e_c00403{transform:matrix(0.332106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332106,0.000000,0.000000,0.250000,0,0);}
.m8c_c00403{transform:matrix(0.332514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332514,0.000000,0.000000,0.250000,0,0);}
.md3_c00403{transform:matrix(0.332614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332614,0.000000,0.000000,0.250000,0,0);}
.m5_c00403{transform:matrix(0.332848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332848,0.000000,0.000000,0.250000,0,0);}
.m94_c00403{transform:matrix(0.333023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333023,0.000000,0.000000,0.250000,0,0);}
.m88_c00403{transform:matrix(0.335470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335470,0.000000,0.000000,0.250000,0,0);}
.m21_c00403{transform:matrix(0.335735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335735,0.000000,0.000000,0.250000,0,0);}
.m35_c00403{transform:matrix(0.335773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335773,0.000000,0.000000,0.250000,0,0);}
.m46_c00403{transform:matrix(0.336631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336631,0.000000,0.000000,0.250000,0,0);}
.m10_c00403{transform:matrix(0.336988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336988,0.000000,0.000000,0.250000,0,0);}
.m40_c00403{transform:matrix(0.338399,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338399,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338399,0.000000,0.000000,0.250000,0,0);}
.m83_c00403{transform:matrix(0.338426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338426,0.000000,0.000000,0.250000,0,0);}
.ma9_c00403{transform:matrix(0.340793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340793,0.000000,0.000000,0.250000,0,0);}
.mae_c00403{transform:matrix(0.340952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340952,0.000000,0.000000,0.250000,0,0);}
.mc9_c00403{transform:matrix(0.341634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341634,0.000000,0.000000,0.250000,0,0);}
.ma3_c00403{transform:matrix(0.342457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342457,0.000000,0.000000,0.250000,0,0);}
.m9_c00403{transform:matrix(0.342892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342892,0.000000,0.000000,0.250000,0,0);}
.m17_c00403{transform:matrix(0.343677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343677,0.000000,0.000000,0.250000,0,0);}
.mba_c00403{transform:matrix(0.344636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344636,0.000000,0.000000,0.250000,0,0);}
.md4_c00403{transform:matrix(0.345034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345034,0.000000,0.000000,0.250000,0,0);}
.m54_c00403{transform:matrix(0.347348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347348,0.000000,0.000000,0.250000,0,0);}
.m71_c00403{transform:matrix(0.348207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348207,0.000000,0.000000,0.250000,0,0);}
.m3b_c00403{transform:matrix(0.348337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348337,0.000000,0.000000,0.250000,0,0);}
.m6d_c00403{transform:matrix(0.349257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349257,0.000000,0.000000,0.250000,0,0);}
.md_c00403{transform:matrix(0.350298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350298,0.000000,0.000000,0.250000,0,0);}
.ma5_c00403{transform:matrix(0.350488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350488,0.000000,0.000000,0.250000,0,0);}
.m70_c00403{transform:matrix(0.350539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350539,0.000000,0.000000,0.250000,0,0);}
.m2_c00403{transform:matrix(0.351483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351483,0.000000,0.000000,0.250000,0,0);}
.m64_c00403{transform:matrix(0.351738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351738,0.000000,0.000000,0.250000,0,0);}
.m4c_c00403{transform:matrix(0.352059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352059,0.000000,0.000000,0.250000,0,0);}
.m1c_c00403{transform:matrix(0.352180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352180,0.000000,0.000000,0.250000,0,0);}
.m4a_c00403{transform:matrix(0.352461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352461,0.000000,0.000000,0.250000,0,0);}
.m4b_c00403{transform:matrix(0.352993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352993,0.000000,0.000000,0.250000,0,0);}
.md5_c00403{transform:matrix(0.353951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353951,0.000000,0.000000,0.250000,0,0);}
.m7d_c00403{transform:matrix(0.355019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355019,0.000000,0.000000,0.250000,0,0);}
.ma7_c00403{transform:matrix(0.356907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356907,0.000000,0.000000,0.250000,0,0);}
.m3e_c00403{transform:matrix(0.357874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357874,0.000000,0.000000,0.250000,0,0);}
.m3c_c00403{transform:matrix(0.360988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360988,0.000000,0.000000,0.250000,0,0);}
.m87_c00403{transform:matrix(0.361386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361386,0.000000,0.000000,0.250000,0,0);}
.m49_c00403{transform:matrix(0.362024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362024,0.000000,0.000000,0.250000,0,0);}
.m75_c00403{transform:matrix(0.362061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362061,0.000000,0.000000,0.250000,0,0);}
.m44_c00403{transform:matrix(0.363178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363178,0.000000,0.000000,0.250000,0,0);}
.ma0_c00403{transform:matrix(0.365884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365884,0.000000,0.000000,0.250000,0,0);}
.me_c00403{transform:matrix(0.366067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366067,0.000000,0.000000,0.250000,0,0);}
.m1f_c00403{transform:matrix(0.369399,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369399,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369399,0.000000,0.000000,0.250000,0,0);}
.mc_c00403{transform:matrix(0.375057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375057,0.000000,0.000000,0.250000,0,0);}
.m15_c00403{transform:matrix(0.377455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377455,0.000000,0.000000,0.250000,0,0);}
.mc2_c00403{transform:matrix(0.378643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378643,0.000000,0.000000,0.250000,0,0);}
.m61_c00403{transform:matrix(0.380653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380653,0.000000,0.000000,0.250000,0,0);}
.m65_c00403{transform:matrix(0.381057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381057,0.000000,0.000000,0.250000,0,0);}
.m8_c00403{transform:matrix(0.387627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387627,0.000000,0.000000,0.250000,0,0);}
.m9e_c00403{transform:matrix(0.398802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398802,0.000000,0.000000,0.250000,0,0);}
.m67_c00403{transform:matrix(0.400068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400068,0.000000,0.000000,0.250000,0,0);}
.m7a_c00403{transform:matrix(0.403163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403163,0.000000,0.000000,0.250000,0,0);}
.m36_c00403{transform:matrix(0.421392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421392,0.000000,0.000000,0.250000,0,0);}
.m80_c00403{transform:matrix(0.454808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454808,0.000000,0.000000,0.250000,0,0);}
.m38_c00403{transform:matrix(0.546812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546812,0.000000,0.000000,0.250000,0,0);}
.v0_c00403{vertical-align:0.000000px;}
.lse_c00403{letter-spacing:-2.515590px;}
.ls10_c00403{letter-spacing:-2.474017px;}
.ls1c_c00403{letter-spacing:-2.328480px;}
.ls17_c00403{letter-spacing:-2.266117px;}
.ls16_c00403{letter-spacing:-2.196817px;}
.ls27_c00403{letter-spacing:-1.947330px;}
.ls7_c00403{letter-spacing:-1.728778px;}
.ls22_c00403{letter-spacing:-1.538467px;}
.ls12_c00403{letter-spacing:-1.455300px;}
.ls2a_c00403{letter-spacing:-1.413720px;}
.ls28_c00403{letter-spacing:-1.386000px;}
.ls1e_c00403{letter-spacing:-0.977486px;}
.ls1b_c00403{letter-spacing:-0.574992px;}
.ls23_c00403{letter-spacing:-0.099990px;}
.ls3_c00403{letter-spacing:0.000000px;}
.ls20_c00403{letter-spacing:0.642946px;}
.ls14_c00403{letter-spacing:0.801900px;}
.ls1_c00403{letter-spacing:0.891238px;}
.ls6_c00403{letter-spacing:1.149984px;}
.ls2_c00403{letter-spacing:1.466230px;}
.ls26_c00403{letter-spacing:1.653310px;}
.ls0_c00403{letter-spacing:1.696226px;}
.ls24_c00403{letter-spacing:1.742400px;}
.ls29_c00403{letter-spacing:1.980000px;}
.ls25_c00403{letter-spacing:2.257200px;}
.ls1f_c00403{letter-spacing:2.435400px;}
.ls13_c00403{letter-spacing:2.475000px;}
.lsc_c00403{letter-spacing:2.504700px;}
.ls9_c00403{letter-spacing:2.692810px;}
.ls11_c00403{letter-spacing:2.851200px;}
.ls15_c00403{letter-spacing:3.009600px;}
.ls18_c00403{letter-spacing:3.138310px;}
.ls8_c00403{letter-spacing:3.177900px;}
.lsb_c00403{letter-spacing:3.248705px;}
.ls1d_c00403{letter-spacing:3.326400px;}
.ls1a_c00403{letter-spacing:3.544200px;}
.ls5_c00403{letter-spacing:3.593700px;}
.lsa_c00403{letter-spacing:3.643200px;}
.ls4_c00403{letter-spacing:3.702610px;}
.ls21_c00403{letter-spacing:48.470598px;}
.lsf_c00403{letter-spacing:49.896198px;}
.lsd_c00403{letter-spacing:51.321798px;}
.ls19_c00403{letter-spacing:57.024198px;}
.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;}
}
.ws3_c00403{word-spacing:-19.664726px;}
.ws4_c00403{word-spacing:-18.859738px;}
.ws2_c00403{word-spacing:-17.968500px;}
.ws0_c00403{word-spacing:-3.162456px;}
.ws5_c00403{word-spacing:0.000000px;}
.ws1_c00403{word-spacing:1.006236px;}
._11_c00403{margin-left:-10.565478px;}
._5_c00403{margin-left:-6.468660px;}
._7_c00403{width:6.756156px;}
._2_c00403{width:8.193636px;}
._12_c00403{width:9.559242px;}
._d_c00403{width:11.236500px;}
._3_c00403{width:12.649824px;}
._e_c00403{width:15.866928px;}
._13_c00403{width:21.274704px;}
._9_c00403{width:22.640508px;}
._0_c00403{width:23.646546px;}
._8_c00403{width:24.844248px;}
._b_c00403{width:33.767593px;}
._4_c00403{width:36.135000px;}
._1_c00403{width:38.595744px;}
._a_c00403{width:39.662964px;}
._c_c00403{width:59.436036px;}
._f_c00403{width:79.875576px;}
._10_c00403{width:85.351068px;}
._14_c00403{width:155.963808px;}
._6_c00403{width:289.350754px;}
.fc0_c00403{color:transparent;}
.fs20_c00403{font-size:9.108000px;}
.fs26_c00403{font-size:15.444198px;}
.fse_c00403{font-size:16.038000px;}
.fs1f_c00403{font-size:19.998000px;}
.fs1_c00403{font-size:22.176000px;}
.fs1d_c00403{font-size:24.948000px;}
.fs19_c00403{font-size:26.928000px;}
.fs11_c00403{font-size:27.720000px;}
.fs24_c00403{font-size:33.066198px;}
.fs21_c00403{font-size:33.264000px;}
.fs7_c00403{font-size:34.056198px;}
.fs22_c00403{font-size:34.848000px;}
.fs1b_c00403{font-size:37.026198px;}
.fs27_c00403{font-size:39.600000px;}
.fs29_c00403{font-size:40.392000px;}
.fsc_c00403{font-size:41.580000px;}
.fs14_c00403{font-size:41.976198px;}
.fs1e_c00403{font-size:43.956198px;}
.fs28_c00403{font-size:44.352000px;}
.fs23_c00403{font-size:45.144000px;}
.fs1c_c00403{font-size:48.470598px;}
.fs1a_c00403{font-size:48.708000px;}
.fsd_c00403{font-size:49.500000px;}
.fs9_c00403{font-size:49.896198px;}
.fs6_c00403{font-size:50.094000px;}
.fs8_c00403{font-size:51.321798px;}
.fs4_c00403{font-size:53.856198px;}
.fs25_c00403{font-size:55.638000px;}
.fsb_c00403{font-size:57.024000px;}
.fs16_c00403{font-size:57.024198px;}
.fs12_c00403{font-size:60.192000px;}
.fs10_c00403{font-size:61.776198px;}
.fs17_c00403{font-size:62.172000px;}
.fs13_c00403{font-size:62.766198px;}
.fs3_c00403{font-size:63.558000px;}
.fs15_c00403{font-size:64.746198px;}
.fs18_c00403{font-size:66.528000px;}
.fs2a_c00403{font-size:67.320000px;}
.fsa_c00403{font-size:70.686198px;}
.fsf_c00403{font-size:70.884000px;}
.fs2_c00403{font-size:71.874000px;}
.fs5_c00403{font-size:72.864000px;}
.fs0_c00403{font-size:74.052198px;}
.y0_c00403{bottom:0.000000px;}
.y1_c00403{bottom:76.500000px;}
.y2a_c00403{bottom:124.651935px;}
.y25_c00403{bottom:144.961785px;}
.y27_c00403{bottom:145.318185px;}
.y29_c00403{bottom:145.674585px;}
.y28_c00403{bottom:147.817935px;}
.y26_c00403{bottom:153.163935px;}
.y24_c00403{bottom:175.617135px;}
.y23_c00403{bottom:201.634335px;}
.y22_c00403{bottom:204.841935px;}
.y21_c00403{bottom:208.757385px;}
.y20_c00403{bottom:219.810735px;}
.y1f_c00403{bottom:274.334985px;}
.y1e_c00403{bottom:286.808985px;}
.y1d_c00403{bottom:306.415935px;}
.y1c_c00403{bottom:318.884985px;}
.y1b_c00403{bottom:339.204735px;}
.y1a_c00403{bottom:352.747935px;}
.y19_c00403{bottom:372.706335px;}
.y18_c00403{bottom:406.564335px;}
.y17_c00403{bottom:439.353135px;}
.y16_c00403{bottom:471.780585px;}
.y15_c00403{bottom:503.861535px;}
.y14_c00403{bottom:531.660735px;}
.y12_c00403{bottom:536.293935px;}
.y13_c00403{bottom:537.719535px;}
.y11_c00403{bottom:568.364985px;}
.y10_c00403{bottom:666.374985px;}
.yf_c00403{bottom:675.284985px;}
.ye_c00403{bottom:699.163785px;}
.yb_c00403{bottom:725.185935px;}
.yd_c00403{bottom:728.037135px;}
.yc_c00403{bottom:731.596185px;}
.ya_c00403{bottom:733.021785px;}
.y9_c00403{bottom:765.102735px;}
.y8_c00403{bottom:781.140735px;}
.y7_c00403{bottom:797.535135px;}
.y6_c00403{bottom:894.119535px;}
.y5_c00403{bottom:927.264735px;}
.y4_c00403{bottom:947.215710px;}
.y3_c00403{bottom:1017.785385px;}
.y2_c00403{bottom:1077.304185px;}
.h22_c00403{height:9.499359px;}
.h10_c00403{height:15.740420px;}
.h29_c00403{height:16.107816px;}
.h21_c00403{height:19.626943px;}
.h3_c00403{height:23.128875px;}
.h1f_c00403{height:26.019984px;}
.h1b_c00403{height:28.085063px;}
.h12_c00403{height:28.911094px;}
.h1e_c00403{height:32.281418px;}
.hb_c00403{height:33.230868px;}
.ha_c00403{height:34.180317px;}
.h25_c00403{height:34.201406px;}
.h27_c00403{height:34.487011px;}
.h23_c00403{height:34.693313px;}
.h9_c00403{height:35.519550px;}
.h1d_c00403{height:36.339188px;}
.h18_c00403{height:37.978116px;}
.h15_c00403{height:41.197343px;}
.h2a_c00403{height:41.301563px;}
.h2c_c00403{height:42.127594px;}
.h20_c00403{height:43.140604px;}
.he_c00403{height:43.285430px;}
.h2b_c00403{height:46.257750px;}
.h26_c00403{height:47.083781px;}
.h1c_c00403{height:47.804238px;}
.h8_c00403{height:49.164521px;}
.hf_c00403{height:51.626953px;}
.h6_c00403{height:52.856913px;}
.h28_c00403{height:54.578487px;}
.h13_c00403{height:59.075156px;}
.hd_c00403{height:59.474250px;}
.h11_c00403{height:60.629960px;}
.h14_c00403{height:61.601591px;}
.h16_c00403{height:63.544853px;}
.h17_c00403{height:65.463183px;}
.h2d_c00403{height:66.070898px;}
.h5_c00403{height:66.289008px;}
.hc_c00403{height:69.374638px;}
.h1a_c00403{height:69.386625px;}
.h19_c00403{height:69.568770px;}
.h4_c00403{height:70.540400px;}
.h24_c00403{height:71.476453px;}
.h7_c00403{height:71.512031px;}
.h2_c00403{height:72.678183px;}
.h1_c00403{height:1110.000000px;}
.h0_c00403{height:1263.000000px;}
.w1_c00403{width:775.500000px;}
.w0_c00403{width:892.500000px;}
.x0_c00403{left:0.000000px;}
.x1_c00403{left:58.500000px;}
.x44_c00403{left:71.954835px;}
.x91_c00403{left:76.612785px;}
.x4e_c00403{left:79.058085px;}
.x27_c00403{left:80.681685px;}
.x28_c00403{left:82.255785px;}
.x6_c00403{left:83.730885px;}
.x43_c00403{left:95.749485px;}
.x5d_c00403{left:111.723135px;}
.x45_c00403{left:113.044785px;}
.x29_c00403{left:115.272285px;}
.x7b_c00403{left:124.286235px;}
.x3e_c00403{left:126.503835px;}
.x4f_c00403{left:134.171385px;}
.x32_c00403{left:136.844385px;}
.x11_c00403{left:138.349185px;}
.x50_c00403{left:143.744685px;}
.x6c_c00403{left:144.838635px;}
.x94_c00403{left:145.962285px;}
.x7_c00403{left:148.407585px;}
.x72_c00403{left:155.575185px;}
.x97_c00403{left:156.679035px;}
.x33_c00403{left:162.148785px;}
.x98_c00403{left:166.064235px;}
.x5e_c00403{left:167.217585px;}
.x12_c00403{left:170.118285px;}
.x83_c00403{left:178.191735px;}
.x8_c00403{left:180.701385px;}
.x46_c00403{left:188.878785px;}
.x2a_c00403{left:191.324085px;}
.x47_c00403{left:200.288535px;}
.x48_c00403{left:202.426935px;}
.x13_c00403{left:203.961435px;}
.x73_c00403{left:210.777585px;}
.x49_c00403{left:221.261685px;}
.x5f_c00403{left:223.221885px;}
.x14_c00403{left:225.785985px;}
.x7c_c00403{left:232.671435px;}
.x8a_c00403{left:233.765385px;}
.x65_c00403{left:235.547385px;}
.x99_c00403{left:244.501935px;}
.x84_c00403{left:245.704785px;}
.x34_c00403{left:246.754185px;}
.x66_c00403{left:255.530535px;}
.x1d_c00403{left:257.193735px;}
.x2b_c00403{left:258.525285px;}
.x35_c00403{left:262.138785px;}
.x9e_c00403{left:263.876235px;}
.x3f_c00403{left:267.638235px;}
.x15_c00403{left:269.939985px;}
.x85_c00403{left:277.394685px;}
.x74_c00403{left:285.082035px;}
.x4a_c00403{left:289.200435px;}
.x1e_c00403{left:290.967585px;}
.x9_c00403{left:292.012035px;}
.x51_c00403{left:299.867685px;}
.x16_c00403{left:303.070335px;}
.x9f_c00403{left:304.644435px;}
.xa0_c00403{left:307.139235px;}
.x92_c00403{left:310.906185px;}
.x1f_c00403{left:312.866385px;}
.x8b_c00403{left:314.074185px;}
.xa1_c00403{left:319.489485px;}
.x8c_c00403{left:320.682435px;}
.x52_c00403{left:322.266435px;}
.x7d_c00403{left:323.355435px;}
.x75_c00403{left:326.236335px;}
.x76_c00403{left:333.364335px;}
.x9c_c00403{left:336.656085px;}
.x53_c00403{left:344.189985px;}
.x17_c00403{left:346.318485px;}
.x2c_c00403{left:348.565785px;}
.xa2_c00403{left:349.971585px;}
.x7e_c00403{left:354.223635px;}
.x54_c00403{left:355.802685px;}
.x40_c00403{left:357.906435px;}
.x86_c00403{left:366.158085px;}
.x9a_c00403{left:367.464885px;}
.x36_c00403{left:369.385485px;}
.x6d_c00403{left:377.790585px;}
.x2d_c00403{left:379.859685px;}
.x9d_c00403{left:389.378535px;}
.x2e_c00403{left:391.774335px;}
.x7f_c00403{left:398.437035px;}
.x87_c00403{left:400.016085px;}
.xa_c00403{left:402.837585px;}
.x4b_c00403{left:410.312085px;}
.x38_c00403{left:411.584235px;}
.x8d_c00403{left:420.494235px;}
.x55_c00403{left:421.810935px;}
.x37_c00403{left:424.251285px;}
.x8e_c00403{left:433.116735px;}
.x2f_c00403{left:435.225435px;}
.x18_c00403{left:436.700535px;}
.x6e_c00403{left:442.279185px;}
.x80_c00403{left:443.665185px;}
.xb_c00403{left:445.481835px;}
.x60_c00403{left:453.639435px;}
.x39_c00403{left:455.332335px;}
.x41_c00403{left:457.094535px;}
.x3a_c00403{left:465.346185px;}
.x93_c00403{left:468.271635px;}
.x19_c00403{left:469.509135px;}
.x67_c00403{left:476.092635px;}
.x20_c00403{left:480.092235px;}
.x61_c00403{left:488.393385px;}
.xc_c00403{left:491.259435px;}
.x42_c00403{left:500.679285px;}
.x95_c00403{left:510.019935px;}
.x5_c00403{left:511.338120px;}
.x1a_c00403{left:513.702735px;}
.x56_c00403{left:522.241485px;}
.xd_c00403{left:524.716485px;}
.x68_c00403{left:532.651335px;}
.x21_c00403{left:534.477885px;}
.x69_c00403{left:542.952285px;}
.x3b_c00403{left:546.026235px;}
.x1b_c00403{left:547.471635px;}
.x57_c00403{left:553.381935px;}
.x77_c00403{left:555.386685px;}
.xe_c00403{left:557.327085px;}
.x58_c00403{left:565.341135px;}
.x22_c00403{left:567.865635px;}
.x88_c00403{left:575.572785px;}
.x9b_c00403{left:577.072635px;}
.x1c_c00403{left:578.369535px;}
.x6f_c00403{left:586.230135px;}
.x59_c00403{left:587.492385px;}
.x3c_c00403{left:590.299035px;}
.x5c_c00403{left:597.105285px;}
.x62_c00403{left:598.179435px;}
.x30_c00403{left:608.336835px;}
.x3d_c00403{left:611.450385px;}
.x31_c00403{left:612.757185px;}
.x6a_c00403{left:620.677185px;}
.x70_c00403{left:622.592835px;}
.x23_c00403{left:624.201585px;}
.x78_c00403{left:630.413835px;}
.x63_c00403{left:631.997835px;}
.x71_c00403{left:641.764185px;}
.xf_c00403{left:645.808335px;}
.x6b_c00403{left:654.079785px;}
.x64_c00403{left:663.554085px;}
.x5a_c00403{left:664.608435px;}
.x24_c00403{left:667.444785px;}
.x8f_c00403{left:674.948985px;}
.x81_c00403{left:676.221135px;}
.x2_c00403{left:681.200835px;}
.x96_c00403{left:686.527035px;}
.x4c_c00403{left:687.650685px;}
.x25_c00403{left:689.739585px;}
.x3_c00403{left:693.095685px;}
.x79_c00403{left:697.610085px;}
.x10_c00403{left:700.268235px;}
.x89_c00403{left:702.342285px;}
.xa4_c00403{left:705.742935px;}
.x5b_c00403{left:707.752635px;}
.x4d_c00403{left:708.975285px;}
.x82_c00403{left:718.771335px;}
.xa3_c00403{left:720.295935px;}
.x26_c00403{left:722.731335px;}
.x7a_c00403{left:731.091885px;}
.x4_c00403{left:733.730235px;}
.x90_c00403{left:742.338285px;}
@media print{
.v0_c00403{vertical-align:0.000000pt;}
.lse_c00403{letter-spacing:-2.236080pt;}
.ls10_c00403{letter-spacing:-2.199126pt;}
.ls1c_c00403{letter-spacing:-2.069760pt;}
.ls17_c00403{letter-spacing:-2.014326pt;}
.ls16_c00403{letter-spacing:-1.952726pt;}
.ls27_c00403{letter-spacing:-1.730960pt;}
.ls7_c00403{letter-spacing:-1.536691pt;}
.ls22_c00403{letter-spacing:-1.367526pt;}
.ls12_c00403{letter-spacing:-1.293600pt;}
.ls2a_c00403{letter-spacing:-1.256640pt;}
.ls28_c00403{letter-spacing:-1.232000pt;}
.ls1e_c00403{letter-spacing:-0.868877pt;}
.ls1b_c00403{letter-spacing:-0.511104pt;}
.ls23_c00403{letter-spacing:-0.088880pt;}
.ls3_c00403{letter-spacing:0.000000pt;}
.ls20_c00403{letter-spacing:0.571507pt;}
.ls14_c00403{letter-spacing:0.712800pt;}
.ls1_c00403{letter-spacing:0.792211pt;}
.ls6_c00403{letter-spacing:1.022208pt;}
.ls2_c00403{letter-spacing:1.303315pt;}
.ls26_c00403{letter-spacing:1.469609pt;}
.ls0_c00403{letter-spacing:1.507757pt;}
.ls24_c00403{letter-spacing:1.548800pt;}
.ls29_c00403{letter-spacing:1.760000pt;}
.ls25_c00403{letter-spacing:2.006400pt;}
.ls1f_c00403{letter-spacing:2.164800pt;}
.ls13_c00403{letter-spacing:2.200000pt;}
.lsc_c00403{letter-spacing:2.226400pt;}
.ls9_c00403{letter-spacing:2.393609pt;}
.ls11_c00403{letter-spacing:2.534400pt;}
.ls15_c00403{letter-spacing:2.675200pt;}
.ls18_c00403{letter-spacing:2.789609pt;}
.ls8_c00403{letter-spacing:2.824800pt;}
.lsb_c00403{letter-spacing:2.887738pt;}
.ls1d_c00403{letter-spacing:2.956800pt;}
.ls1a_c00403{letter-spacing:3.150400pt;}
.ls5_c00403{letter-spacing:3.194400pt;}
.lsa_c00403{letter-spacing:3.238400pt;}
.ls4_c00403{letter-spacing:3.291209pt;}
.ls21_c00403{letter-spacing:43.084976pt;}
.lsf_c00403{letter-spacing:44.352176pt;}
.lsd_c00403{letter-spacing:45.619376pt;}
.ls19_c00403{letter-spacing:50.688176pt;}
.ws3_c00403{word-spacing:-17.479757pt;}
.ws4_c00403{word-spacing:-16.764211pt;}
.ws2_c00403{word-spacing:-15.972000pt;}
.ws0_c00403{word-spacing:-2.811072pt;}
.ws5_c00403{word-spacing:0.000000pt;}
.ws1_c00403{word-spacing:0.894432pt;}
._11_c00403{margin-left:-9.391536pt;}
._5_c00403{margin-left:-5.749920pt;}
._7_c00403{width:6.005472pt;}
._2_c00403{width:7.283232pt;}
._12_c00403{width:8.497104pt;}
._d_c00403{width:9.988000pt;}
._3_c00403{width:11.244288pt;}
._e_c00403{width:14.103936pt;}
._13_c00403{width:18.910848pt;}
._9_c00403{width:20.124896pt;}
._0_c00403{width:21.019152pt;}
._8_c00403{width:22.083776pt;}
._b_c00403{width:30.015638pt;}
._4_c00403{width:32.120000pt;}
._1_c00403{width:34.307328pt;}
._a_c00403{width:35.255968pt;}
._c_c00403{width:52.832032pt;}
._f_c00403{width:71.000512pt;}
._10_c00403{width:75.867616pt;}
._14_c00403{width:138.634496pt;}
._6_c00403{width:257.200670pt;}
.fs20_c00403{font-size:8.096000pt;}
.fs26_c00403{font-size:13.728176pt;}
.fse_c00403{font-size:14.256000pt;}
.fs1f_c00403{font-size:17.776000pt;}
.fs1_c00403{font-size:19.712000pt;}
.fs1d_c00403{font-size:22.176000pt;}
.fs19_c00403{font-size:23.936000pt;}
.fs11_c00403{font-size:24.640000pt;}
.fs24_c00403{font-size:29.392176pt;}
.fs21_c00403{font-size:29.568000pt;}
.fs7_c00403{font-size:30.272176pt;}
.fs22_c00403{font-size:30.976000pt;}
.fs1b_c00403{font-size:32.912176pt;}
.fs27_c00403{font-size:35.200000pt;}
.fs29_c00403{font-size:35.904000pt;}
.fsc_c00403{font-size:36.960000pt;}
.fs14_c00403{font-size:37.312176pt;}
.fs1e_c00403{font-size:39.072176pt;}
.fs28_c00403{font-size:39.424000pt;}
.fs23_c00403{font-size:40.128000pt;}
.fs1c_c00403{font-size:43.084976pt;}
.fs1a_c00403{font-size:43.296000pt;}
.fsd_c00403{font-size:44.000000pt;}
.fs9_c00403{font-size:44.352176pt;}
.fs6_c00403{font-size:44.528000pt;}
.fs8_c00403{font-size:45.619376pt;}
.fs4_c00403{font-size:47.872176pt;}
.fs25_c00403{font-size:49.456000pt;}
.fsb_c00403{font-size:50.688000pt;}
.fs16_c00403{font-size:50.688176pt;}
.fs12_c00403{font-size:53.504000pt;}
.fs10_c00403{font-size:54.912176pt;}
.fs17_c00403{font-size:55.264000pt;}
.fs13_c00403{font-size:55.792176pt;}
.fs3_c00403{font-size:56.496000pt;}
.fs15_c00403{font-size:57.552176pt;}
.fs18_c00403{font-size:59.136000pt;}
.fs2a_c00403{font-size:59.840000pt;}
.fsa_c00403{font-size:62.832176pt;}
.fsf_c00403{font-size:63.008000pt;}
.fs2_c00403{font-size:63.888000pt;}
.fs5_c00403{font-size:64.768000pt;}
.fs0_c00403{font-size:65.824176pt;}
.y0_c00403{bottom:0.000000pt;}
.y1_c00403{bottom:68.000000pt;}
.y2a_c00403{bottom:110.801720pt;}
.y25_c00403{bottom:128.854920pt;}
.y27_c00403{bottom:129.171720pt;}
.y29_c00403{bottom:129.488520pt;}
.y28_c00403{bottom:131.393720pt;}
.y26_c00403{bottom:136.145720pt;}
.y24_c00403{bottom:156.104120pt;}
.y23_c00403{bottom:179.230520pt;}
.y22_c00403{bottom:182.081720pt;}
.y21_c00403{bottom:185.562120pt;}
.y20_c00403{bottom:195.387320pt;}
.y1f_c00403{bottom:243.853320pt;}
.y1e_c00403{bottom:254.941320pt;}
.y1d_c00403{bottom:272.369720pt;}
.y1c_c00403{bottom:283.453320pt;}
.y1b_c00403{bottom:301.515320pt;}
.y1a_c00403{bottom:313.553720pt;}
.y19_c00403{bottom:331.294520pt;}
.y18_c00403{bottom:361.390520pt;}
.y17_c00403{bottom:390.536120pt;}
.y16_c00403{bottom:419.360520pt;}
.y15_c00403{bottom:447.876920pt;}
.y14_c00403{bottom:472.587320pt;}
.y12_c00403{bottom:476.705720pt;}
.y13_c00403{bottom:477.972920pt;}
.y11_c00403{bottom:505.213320pt;}
.y10_c00403{bottom:592.333320pt;}
.yf_c00403{bottom:600.253320pt;}
.ye_c00403{bottom:621.478920pt;}
.yb_c00403{bottom:644.609720pt;}
.yd_c00403{bottom:647.144120pt;}
.yc_c00403{bottom:650.307720pt;}
.ya_c00403{bottom:651.574920pt;}
.y9_c00403{bottom:680.091320pt;}
.y8_c00403{bottom:694.347320pt;}
.y7_c00403{bottom:708.920120pt;}
.y6_c00403{bottom:794.772920pt;}
.y5_c00403{bottom:824.235320pt;}
.y4_c00403{bottom:841.969520pt;}
.y3_c00403{bottom:904.698120pt;}
.y2_c00403{bottom:957.603720pt;}
.h22_c00403{height:8.443875pt;}
.h10_c00403{height:13.991484pt;}
.h29_c00403{height:14.318059pt;}
.h21_c00403{height:17.446172pt;}
.h3_c00403{height:20.559000pt;}
.h1f_c00403{height:23.128875pt;}
.h1b_c00403{height:24.964500pt;}
.h12_c00403{height:25.698750pt;}
.h1e_c00403{height:28.694594pt;}
.hb_c00403{height:29.538549pt;}
.ha_c00403{height:30.382504pt;}
.h25_c00403{height:30.401250pt;}
.h27_c00403{height:30.655121pt;}
.h23_c00403{height:30.838500pt;}
.h9_c00403{height:31.572934pt;}
.h1d_c00403{height:32.301501pt;}
.h18_c00403{height:33.758325pt;}
.h15_c00403{height:36.619860pt;}
.h2a_c00403{height:36.712500pt;}
.h2c_c00403{height:37.446750pt;}
.h20_c00403{height:38.347204pt;}
.he_c00403{height:38.475938pt;}
.h2b_c00403{height:41.118000pt;}
.h26_c00403{height:41.852250pt;}
.h1c_c00403{height:42.492656pt;}
.h8_c00403{height:43.701797pt;}
.hf_c00403{height:45.890625pt;}
.h6_c00403{height:46.983923pt;}
.h28_c00403{height:48.514211pt;}
.h13_c00403{height:52.511250pt;}
.hd_c00403{height:52.866000pt;}
.h11_c00403{height:53.893298pt;}
.h14_c00403{height:54.756970pt;}
.h16_c00403{height:56.484313pt;}
.h17_c00403{height:58.189496pt;}
.h2d_c00403{height:58.729688pt;}
.h5_c00403{height:58.923563pt;}
.hc_c00403{height:61.666345pt;}
.h1a_c00403{height:61.677000pt;}
.h19_c00403{height:61.838906pt;}
.h4_c00403{height:62.702578pt;}
.h24_c00403{height:63.534625pt;}
.h7_c00403{height:63.566250pt;}
.h2_c00403{height:64.602829pt;}
.h1_c00403{height:986.666667pt;}
.h0_c00403{height:1122.666667pt;}
.w1_c00403{width:689.333333pt;}
.w0_c00403{width:793.333333pt;}
.x0_c00403{left:0.000000pt;}
.x1_c00403{left:52.000000pt;}
.x44_c00403{left:63.959853pt;}
.x91_c00403{left:68.100253pt;}
.x4e_c00403{left:70.273853pt;}
.x27_c00403{left:71.717053pt;}
.x28_c00403{left:73.116253pt;}
.x6_c00403{left:74.427453pt;}
.x43_c00403{left:85.110653pt;}
.x5d_c00403{left:99.309453pt;}
.x45_c00403{left:100.484253pt;}
.x29_c00403{left:102.464253pt;}
.x7b_c00403{left:110.476653pt;}
.x3e_c00403{left:112.447853pt;}
.x4f_c00403{left:119.263453pt;}
.x32_c00403{left:121.639453pt;}
.x11_c00403{left:122.977053pt;}
.x50_c00403{left:127.773053pt;}
.x6c_c00403{left:128.745453pt;}
.x94_c00403{left:129.744253pt;}
.x7_c00403{left:131.917853pt;}
.x72_c00403{left:138.289053pt;}
.x97_c00403{left:139.270253pt;}
.x33_c00403{left:144.132253pt;}
.x98_c00403{left:147.612653pt;}
.x5e_c00403{left:148.637853pt;}
.x12_c00403{left:151.216253pt;}
.x83_c00403{left:158.392653pt;}
.x8_c00403{left:160.623453pt;}
.x46_c00403{left:167.892253pt;}
.x2a_c00403{left:170.065853pt;}
.x47_c00403{left:178.034253pt;}
.x48_c00403{left:179.935053pt;}
.x13_c00403{left:181.299053pt;}
.x73_c00403{left:187.357853pt;}
.x49_c00403{left:196.677053pt;}
.x5f_c00403{left:198.419453pt;}
.x14_c00403{left:200.698653pt;}
.x7c_c00403{left:206.819053pt;}
.x8a_c00403{left:207.791453pt;}
.x65_c00403{left:209.375453pt;}
.x99_c00403{left:217.335053pt;}
.x84_c00403{left:218.404253pt;}
.x34_c00403{left:219.337053pt;}
.x66_c00403{left:227.138253pt;}
.x1d_c00403{left:228.616653pt;}
.x2b_c00403{left:229.800253pt;}
.x35_c00403{left:233.012253pt;}
.x9e_c00403{left:234.556653pt;}
.x3f_c00403{left:237.900653pt;}
.x15_c00403{left:239.946653pt;}
.x85_c00403{left:246.573053pt;}
.x74_c00403{left:253.406253pt;}
.x4a_c00403{left:257.067053pt;}
.x1e_c00403{left:258.637853pt;}
.x9_c00403{left:259.566253pt;}
.x51_c00403{left:266.549053pt;}
.x16_c00403{left:269.395853pt;}
.x9f_c00403{left:270.795053pt;}
.xa0_c00403{left:273.012653pt;}
.x92_c00403{left:276.361053pt;}
.x1f_c00403{left:278.103453pt;}
.x8b_c00403{left:279.177053pt;}
.xa1_c00403{left:283.990653pt;}
.x8c_c00403{left:285.051053pt;}
.x52_c00403{left:286.459053pt;}
.x7d_c00403{left:287.427053pt;}
.x75_c00403{left:289.987853pt;}
.x76_c00403{left:296.323853pt;}
.x9c_c00403{left:299.249853pt;}
.x53_c00403{left:305.946653pt;}
.x17_c00403{left:307.838653pt;}
.x2c_c00403{left:309.836253pt;}
.xa2_c00403{left:311.085853pt;}
.x7e_c00403{left:314.865453pt;}
.x54_c00403{left:316.269053pt;}
.x40_c00403{left:318.139053pt;}
.x86_c00403{left:325.473853pt;}
.x9a_c00403{left:326.635453pt;}
.x36_c00403{left:328.342653pt;}
.x6d_c00403{left:335.813853pt;}
.x2d_c00403{left:337.653053pt;}
.x9d_c00403{left:346.114253pt;}
.x2e_c00403{left:348.243853pt;}
.x7f_c00403{left:354.166253pt;}
.x87_c00403{left:355.569853pt;}
.xa_c00403{left:358.077853pt;}
.x4b_c00403{left:364.721853pt;}
.x38_c00403{left:365.852653pt;}
.x8d_c00403{left:373.772653pt;}
.x55_c00403{left:374.943053pt;}
.x37_c00403{left:377.112253pt;}
.x8e_c00403{left:384.992653pt;}
.x2f_c00403{left:386.867053pt;}
.x18_c00403{left:388.178253pt;}
.x6e_c00403{left:393.137053pt;}
.x80_c00403{left:394.369053pt;}
.xb_c00403{left:395.983853pt;}
.x60_c00403{left:403.235053pt;}
.x39_c00403{left:404.739853pt;}
.x41_c00403{left:406.306253pt;}
.x3a_c00403{left:413.641053pt;}
.x93_c00403{left:416.241453pt;}
.x19_c00403{left:417.341453pt;}
.x67_c00403{left:423.193453pt;}
.x20_c00403{left:426.748653pt;}
.x61_c00403{left:434.127453pt;}
.xc_c00403{left:436.675053pt;}
.x42_c00403{left:445.048253pt;}
.x95_c00403{left:453.351053pt;}
.x5_c00403{left:454.522773pt;}
.x1a_c00403{left:456.624653pt;}
.x56_c00403{left:464.214653pt;}
.xd_c00403{left:466.414653pt;}
.x68_c00403{left:473.467853pt;}
.x21_c00403{left:475.091453pt;}
.x69_c00403{left:482.624253pt;}
.x3b_c00403{left:485.356653pt;}
.x1b_c00403{left:486.641453pt;}
.x57_c00403{left:491.895053pt;}
.x77_c00403{left:493.677053pt;}
.xe_c00403{left:495.401853pt;}
.x58_c00403{left:502.525453pt;}
.x22_c00403{left:504.769453pt;}
.x88_c00403{left:511.620253pt;}
.x9b_c00403{left:512.953453pt;}
.x1c_c00403{left:514.106253pt;}
.x6f_c00403{left:521.093453pt;}
.x59_c00403{left:522.215453pt;}
.x3c_c00403{left:524.710253pt;}
.x5c_c00403{left:530.760253pt;}
.x62_c00403{left:531.715053pt;}
.x30_c00403{left:540.743853pt;}
.x3d_c00403{left:543.511453pt;}
.x31_c00403{left:544.673053pt;}
.x6a_c00403{left:551.713053pt;}
.x70_c00403{left:553.415853pt;}
.x23_c00403{left:554.845853pt;}
.x78_c00403{left:560.367853pt;}
.x63_c00403{left:561.775853pt;}
.x71_c00403{left:570.457053pt;}
.xf_c00403{left:574.051853pt;}
.x6b_c00403{left:581.404253pt;}
.x64_c00403{left:589.825853pt;}
.x5a_c00403{left:590.763053pt;}
.x24_c00403{left:593.284253pt;}
.x8f_c00403{left:599.954653pt;}
.x81_c00403{left:601.085453pt;}
.x2_c00403{left:605.511853pt;}
.x96_c00403{left:610.246253pt;}
.x4c_c00403{left:611.245053pt;}
.x25_c00403{left:613.101853pt;}
.x3_c00403{left:616.085053pt;}
.x79_c00403{left:620.097853pt;}
.x10_c00403{left:622.460653pt;}
.x89_c00403{left:624.304253pt;}
.xa4_c00403{left:627.327053pt;}
.x5b_c00403{left:629.113453pt;}
.x4d_c00403{left:630.200253pt;}
.x82_c00403{left:638.907853pt;}
.xa3_c00403{left:640.263053pt;}
.x26_c00403{left:642.427853pt;}
.x7a_c00403{left:649.859453pt;}
.x4_c00403{left:652.204653pt;}
.x90_c00403{left:659.856253pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b98f11ad6e29154d1bf92546.woff2')format("woff");}.ff1_c00404{font-family:ff1_c00404;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00404;src:url('chunks/assets/font_ea89269dd7f0ce219af5e08c.woff2')format("woff");}.ff2_c00404{font-family:ff2_c00404;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00404;src:url('chunks/assets/font_287a3f19aa52af0f41928989.woff2')format("woff");}.ff3_c00404{font-family:ff3_c00404;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00404;src:url('chunks/assets/font_07409a6b1591cb0d66a9c7c0.woff2')format("woff");}.ff4_c00404{font-family:ff4_c00404;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00404;src:url('chunks/assets/font_21d2eb72b96bbfc0e1d4cfcf.woff2')format("woff");}.ff5_c00404{font-family:ff5_c00404;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mbf_c00404{transform:matrix(0.025642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.025642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.025642,0.000000,0.000000,0.250000,0,0);}
.mb1_c00404{transform:matrix(0.040001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040001,0.000000,0.000000,0.250000,0,0);}
.mf2_c00404{transform:matrix(0.044118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.044118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.044118,0.000000,0.000000,0.250000,0,0);}
.m4e_c00404{transform:matrix(0.054167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054167,0.000000,0.000000,0.250000,0,0);}
.md7_c00404{transform:matrix(0.062501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062501,0.000000,0.000000,0.250000,0,0);}
.md6_c00404{transform:matrix(0.065626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065626,0.000000,0.000000,0.250000,0,0);}
.mf1_c00404{transform:matrix(0.073530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073530,0.000000,0.000000,0.250000,0,0);}
.mbe_c00404{transform:matrix(0.076923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076923,0.000000,0.000000,0.250000,0,0);}
.md9_c00404{transform:matrix(0.078125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078125,0.000000,0.000000,0.250000,0,0);}
.m36_c00404{transform:matrix(0.080883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080883,0.000000,0.000000,0.250000,0,0);}
.mb3_c00404{transform:matrix(0.090001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090001,0.000000,0.000000,0.250000,0,0);}
.m95_c00404{transform:matrix(0.090497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090497,0.000000,0.000000,0.250000,0,0);}
.m64_c00404{transform:matrix(0.091071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091071,0.000000,0.000000,0.250000,0,0);}
.m51_c00404{transform:matrix(0.106250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00404{transform:matrix(0.112500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00404{transform:matrix(0.126367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126367,0.000000,0.000000,0.250000,0,0);}
.m2a_c00404{transform:matrix(0.127009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127009,0.000000,0.000000,0.250000,0,0);}
.m81_c00404{transform:matrix(0.128473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128473,0.000000,0.000000,0.250000,0,0);}
.m82_c00404{transform:matrix(0.131944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131944,0.000000,0.000000,0.250000,0,0);}
.m54_c00404{transform:matrix(0.135088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135088,0.000000,0.000000,0.250000,0,0);}
.m3d_c00404{transform:matrix(0.135714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135714,0.000000,0.000000,0.250000,0,0);}
.m50_c00404{transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);}
.m29_c00404{transform:matrix(0.141545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141545,0.000000,0.000000,0.250000,0,0);}
.mda_c00404{transform:matrix(0.142188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142188,0.000000,0.000000,0.250000,0,0);}
.m8a_c00404{transform:matrix(0.142858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142858,0.000000,0.000000,0.250000,0,0);}
.m5b_c00404{transform:matrix(0.147992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147992,0.000000,0.000000,0.250000,0,0);}
.mb2_c00404{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m7_c00404{transform:matrix(0.153522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153522,0.000000,0.000000,0.250000,0,0);}
.m13_c00404{transform:matrix(0.157142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157142,0.000000,0.000000,0.250000,0,0);}
.m7e_c00404{transform:matrix(0.159092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159092,0.000000,0.000000,0.250000,0,0);}
.m14_c00404{transform:matrix(0.161905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161905,0.000000,0.000000,0.250000,0,0);}
.m4f_c00404{transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);}
.m32_c00404{transform:matrix(0.169118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169118,0.000000,0.000000,0.250000,0,0);}
.mbd_c00404{transform:matrix(0.169871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169871,0.000000,0.000000,0.250000,0,0);}
.m7b_c00404{transform:matrix(0.172892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172892,0.000000,0.000000,0.250000,0,0);}
.mdd_c00404{transform:matrix(0.173959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173959,0.000000,0.000000,0.250000,0,0);}
.mdb_c00404{transform:matrix(0.174999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174999,0.000000,0.000000,0.250000,0,0);}
.m20_c00404{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.md8_c00404{transform:matrix(0.177083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177083,0.000000,0.000000,0.250000,0,0);}
.m18_c00404{transform:matrix(0.177187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177187,0.000000,0.000000,0.250000,0,0);}
.m79_c00404{transform:matrix(0.177193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177193,0.000000,0.000000,0.250000,0,0);}
.m23_c00404{transform:matrix(0.177724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177724,0.000000,0.000000,0.250000,0,0);}
.m4d_c00404{transform:matrix(0.178125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178125,0.000000,0.000000,0.250000,0,0);}
.m12_c00404{transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);}
.md0_c00404{transform:matrix(0.182088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182088,0.000000,0.000000,0.250000,0,0);}
.m27_c00404{transform:matrix(0.182253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182253,0.000000,0.000000,0.250000,0,0);}
.m11_c00404{transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);}
.m93_c00404{transform:matrix(0.185811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185811,0.000000,0.000000,0.250000,0,0);}
.ma1_c00404{transform:matrix(0.188070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188070,0.000000,0.000000,0.250000,0,0);}
.m33_c00404{transform:matrix(0.191177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191177,0.000000,0.000000,0.250000,0,0);}
.m89_c00404{transform:matrix(0.191667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191667,0.000000,0.000000,0.250000,0,0);}
.m15_c00404{transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);}
.m59_c00404{transform:matrix(0.196049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196049,0.000000,0.000000,0.250000,0,0);}
.m55_c00404{transform:matrix(0.196249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196249,0.000000,0.000000,0.250000,0,0);}
.m8b_c00404{transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);}
.m7f_c00404{transform:matrix(0.196971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196971,0.000000,0.000000,0.250000,0,0);}
.m35_c00404{transform:matrix(0.198530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198530,0.000000,0.000000,0.250000,0,0);}
.m5a_c00404{transform:matrix(0.198607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198607,0.000000,0.000000,0.250000,0,0);}
.me_c00404{transform:matrix(0.199200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199200,0.000000,0.000000,0.250000,0,0);}
.m92_c00404{transform:matrix(0.202703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202703,0.000000,0.000000,0.250000,0,0);}
.m6b_c00404{transform:matrix(0.204469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204469,0.000000,0.000000,0.250000,0,0);}
.m3f_c00404{transform:matrix(0.204762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204762,0.000000,0.000000,0.250000,0,0);}
.m34_c00404{transform:matrix(0.208332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208332,0.000000,0.000000,0.250000,0,0);}
.m31_c00404{transform:matrix(0.210730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210730,0.000000,0.000000,0.250000,0,0);}
.m3e_c00404{transform:matrix(0.212499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212499,0.000000,0.000000,0.250000,0,0);}
.mce_c00404{transform:matrix(0.215088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215088,0.000000,0.000000,0.250000,0,0);}
.md1_c00404{transform:matrix(0.216903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216903,0.000000,0.000000,0.250000,0,0);}
.mb0_c00404{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m96_c00404{transform:matrix(0.230885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230885,0.000000,0.000000,0.250000,0,0);}
.m2c_c00404{transform:matrix(0.234276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234276,0.000000,0.000000,0.250000,0,0);}
.m58_c00404{transform:matrix(0.240922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240922,0.000000,0.000000,0.250000,0,0);}
.m57_c00404{transform:matrix(0.243494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243494,0.000000,0.000000,0.250000,0,0);}
.m37_c00404{transform:matrix(0.246701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246701,0.000000,0.000000,0.250000,0,0);}
.m0_c00404{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.me4_c00404{transform:matrix(0.251228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251228,0.000000,0.000000,0.250000,0,0);}
.m66_c00404{transform:matrix(0.252101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252101,0.000000,0.000000,0.250000,0,0);}
.mc_c00404{transform:matrix(0.253121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253121,0.000000,0.000000,0.250000,0,0);}
.m5c_c00404{transform:matrix(0.253560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253560,0.000000,0.000000,0.250000,0,0);}
.m1_c00404{transform:matrix(0.253789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253789,0.000000,0.000000,0.250000,0,0);}
.ma6_c00404{transform:matrix(0.255478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255478,0.000000,0.000000,0.250000,0,0);}
.m2f_c00404{transform:matrix(0.256683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256683,0.000000,0.000000,0.250000,0,0);}
.mea_c00404{transform:matrix(0.257090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257090,0.000000,0.000000,0.250000,0,0);}
.me6_c00404{transform:matrix(0.259093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259093,0.000000,0.000000,0.250000,0,0);}
.m22_c00404{transform:matrix(0.260864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260864,0.000000,0.000000,0.250000,0,0);}
.md3_c00404{transform:matrix(0.260936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260936,0.000000,0.000000,0.250000,0,0);}
.ma5_c00404{transform:matrix(0.261444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261444,0.000000,0.000000,0.250000,0,0);}
.m16_c00404{transform:matrix(0.261618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261618,0.000000,0.000000,0.250000,0,0);}
.mc3_c00404{transform:matrix(0.261713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261713,0.000000,0.000000,0.250000,0,0);}
.mb9_c00404{transform:matrix(0.261983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261983,0.000000,0.000000,0.250000,0,0);}
.m6d_c00404{transform:matrix(0.262744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262744,0.000000,0.000000,0.250000,0,0);}
.mb6_c00404{transform:matrix(0.264584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264584,0.000000,0.000000,0.250000,0,0);}
.m17_c00404{transform:matrix(0.264795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264795,0.000000,0.000000,0.250000,0,0);}
.ma9_c00404{transform:matrix(0.266004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266004,0.000000,0.000000,0.250000,0,0);}
.m8c_c00404{transform:matrix(0.267760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267760,0.000000,0.000000,0.250000,0,0);}
.maa_c00404{transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);}
.m76_c00404{transform:matrix(0.270017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270017,0.000000,0.000000,0.250000,0,0);}
.m9e_c00404{transform:matrix(0.270312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270312,0.000000,0.000000,0.250000,0,0);}
.m5d_c00404{transform:matrix(0.271052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271052,0.000000,0.000000,0.250000,0,0);}
.m10_c00404{transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);}
.mc2_c00404{transform:matrix(0.272336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272336,0.000000,0.000000,0.250000,0,0);}
.m48_c00404{transform:matrix(0.272566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272566,0.000000,0.000000,0.250000,0,0);}
.m1a_c00404{transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);}
.md2_c00404{transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);}
.m87_c00404{transform:matrix(0.275093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275093,0.000000,0.000000,0.250000,0,0);}
.m45_c00404{transform:matrix(0.275097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275097,0.000000,0.000000,0.250000,0,0);}
.m72_c00404{transform:matrix(0.275207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275207,0.000000,0.000000,0.250000,0,0);}
.m6f_c00404{transform:matrix(0.275351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275351,0.000000,0.000000,0.250000,0,0);}
.m4a_c00404{transform:matrix(0.275856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275856,0.000000,0.000000,0.250000,0,0);}
.md4_c00404{transform:matrix(0.275929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275929,0.000000,0.000000,0.250000,0,0);}
.m4b_c00404{transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);}
.m94_c00404{transform:matrix(0.275992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275992,0.000000,0.000000,0.250000,0,0);}
.m4_c00404{transform:matrix(0.276741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276741,0.000000,0.000000,0.250000,0,0);}
.ma3_c00404{transform:matrix(0.277487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277487,0.000000,0.000000,0.250000,0,0);}
.m25_c00404{transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);}
.m6c_c00404{transform:matrix(0.277800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277800,0.000000,0.000000,0.250000,0,0);}
.mb8_c00404{transform:matrix(0.277964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277964,0.000000,0.000000,0.250000,0,0);}
.m9f_c00404{transform:matrix(0.278706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278706,0.000000,0.000000,0.250000,0,0);}
.me1_c00404{transform:matrix(0.281556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281556,0.000000,0.000000,0.250000,0,0);}
.m2b_c00404{transform:matrix(0.282532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282532,0.000000,0.000000,0.250000,0,0);}
.m7c_c00404{transform:matrix(0.283476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283476,0.000000,0.000000,0.250000,0,0);}
.mb_c00404{transform:matrix(0.284171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284171,0.000000,0.000000,0.250000,0,0);}
.ma8_c00404{transform:matrix(0.284312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284312,0.000000,0.000000,0.250000,0,0);}
.mc6_c00404{transform:matrix(0.284887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284887,0.000000,0.000000,0.250000,0,0);}
.med_c00404{transform:matrix(0.285502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285502,0.000000,0.000000,0.250000,0,0);}
.m5e_c00404{transform:matrix(0.285669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285669,0.000000,0.000000,0.250000,0,0);}
.mad_c00404{transform:matrix(0.286385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286385,0.000000,0.000000,0.250000,0,0);}
.mb5_c00404{transform:matrix(0.286743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286743,0.000000,0.000000,0.250000,0,0);}
.me7_c00404{transform:matrix(0.287043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287043,0.000000,0.000000,0.250000,0,0);}
.m98_c00404{transform:matrix(0.287374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287374,0.000000,0.000000,0.250000,0,0);}
.mca_c00404{transform:matrix(0.287408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287408,0.000000,0.000000,0.250000,0,0);}
.mab_c00404{transform:matrix(0.287616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287616,0.000000,0.000000,0.250000,0,0);}
.m3c_c00404{transform:matrix(0.288086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288086,0.000000,0.000000,0.250000,0,0);}
.m49_c00404{transform:matrix(0.288428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288428,0.000000,0.000000,0.250000,0,0);}
.m39_c00404{transform:matrix(0.288802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288802,0.000000,0.000000,0.250000,0,0);}
.m28_c00404{transform:matrix(0.289099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289099,0.000000,0.000000,0.250000,0,0);}
.me9_c00404{transform:matrix(0.289362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289362,0.000000,0.000000,0.250000,0,0);}
.m70_c00404{transform:matrix(0.290952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290952,0.000000,0.000000,0.250000,0,0);}
.m6_c00404{transform:matrix(0.292154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292154,0.000000,0.000000,0.250000,0,0);}
.m6a_c00404{transform:matrix(0.293234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293234,0.000000,0.000000,0.250000,0,0);}
.m88_c00404{transform:matrix(0.293466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293466,0.000000,0.000000,0.250000,0,0);}
.m83_c00404{transform:matrix(0.293629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293629,0.000000,0.000000,0.250000,0,0);}
.m97_c00404{transform:matrix(0.293806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293806,0.000000,0.000000,0.250000,0,0);}
.m3a_c00404{transform:matrix(0.293938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293938,0.000000,0.000000,0.250000,0,0);}
.maf_c00404{transform:matrix(0.294446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294446,0.000000,0.000000,0.250000,0,0);}
.m9c_c00404{transform:matrix(0.294967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294967,0.000000,0.000000,0.250000,0,0);}
.m5_c00404{transform:matrix(0.296110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296110,0.000000,0.000000,0.250000,0,0);}
.m73_c00404{transform:matrix(0.296163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296163,0.000000,0.000000,0.250000,0,0);}
.mf0_c00404{transform:matrix(0.296260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296260,0.000000,0.000000,0.250000,0,0);}
.ma2_c00404{transform:matrix(0.296765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296765,0.000000,0.000000,0.250000,0,0);}
.ma7_c00404{transform:matrix(0.297385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297385,0.000000,0.000000,0.250000,0,0);}
.m1b_c00404{transform:matrix(0.297564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297564,0.000000,0.000000,0.250000,0,0);}
.ma4_c00404{transform:matrix(0.298219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298219,0.000000,0.000000,0.250000,0,0);}
.m24_c00404{transform:matrix(0.298640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298640,0.000000,0.000000,0.250000,0,0);}
.mf5_c00404{transform:matrix(0.299323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299323,0.000000,0.000000,0.250000,0,0);}
.m9_c00404{transform:matrix(0.299801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299801,0.000000,0.000000,0.250000,0,0);}
.m1e_c00404{transform:matrix(0.300072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300072,0.000000,0.000000,0.250000,0,0);}
.m8e_c00404{transform:matrix(0.300319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300319,0.000000,0.000000,0.250000,0,0);}
.m8_c00404{transform:matrix(0.300858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300858,0.000000,0.000000,0.250000,0,0);}
.mdf_c00404{transform:matrix(0.301069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301069,0.000000,0.000000,0.250000,0,0);}
.mcf_c00404{transform:matrix(0.301264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301264,0.000000,0.000000,0.250000,0,0);}
.m21_c00404{transform:matrix(0.301674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301674,0.000000,0.000000,0.250000,0,0);}
.mf7_c00404{transform:matrix(0.302249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302249,0.000000,0.000000,0.250000,0,0);}
.m44_c00404{transform:matrix(0.302495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302495,0.000000,0.000000,0.250000,0,0);}
.m1d_c00404{transform:matrix(0.303188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303188,0.000000,0.000000,0.250000,0,0);}
.m63_c00404{transform:matrix(0.303387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303387,0.000000,0.000000,0.250000,0,0);}
.ma0_c00404{transform:matrix(0.303806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303806,0.000000,0.000000,0.250000,0,0);}
.m5f_c00404{transform:matrix(0.303959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303959,0.000000,0.000000,0.250000,0,0);}
.mcb_c00404{transform:matrix(0.304148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304148,0.000000,0.000000,0.250000,0,0);}
.m78_c00404{transform:matrix(0.305538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305538,0.000000,0.000000,0.250000,0,0);}
.m61_c00404{transform:matrix(0.306539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306539,0.000000,0.000000,0.250000,0,0);}
.m80_c00404{transform:matrix(0.307864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307864,0.000000,0.000000,0.250000,0,0);}
.m77_c00404{transform:matrix(0.307925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307925,0.000000,0.000000,0.250000,0,0);}
.mb7_c00404{transform:matrix(0.308002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308002,0.000000,0.000000,0.250000,0,0);}
.me3_c00404{transform:matrix(0.308197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308197,0.000000,0.000000,0.250000,0,0);}
.m7d_c00404{transform:matrix(0.309070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309070,0.000000,0.000000,0.250000,0,0);}
.m86_c00404{transform:matrix(0.309550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309550,0.000000,0.000000,0.250000,0,0);}
.m42_c00404{transform:matrix(0.311367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311367,0.000000,0.000000,0.250000,0,0);}
.m60_c00404{transform:matrix(0.311631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311631,0.000000,0.000000,0.250000,0,0);}
.m52_c00404{transform:matrix(0.312544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312544,0.000000,0.000000,0.250000,0,0);}
.m46_c00404{transform:matrix(0.312754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312754,0.000000,0.000000,0.250000,0,0);}
.m40_c00404{transform:matrix(0.313458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313458,0.000000,0.000000,0.250000,0,0);}
.mef_c00404{transform:matrix(0.313806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313806,0.000000,0.000000,0.250000,0,0);}
.me5_c00404{transform:matrix(0.314759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314759,0.000000,0.000000,0.250000,0,0);}
.m90_c00404{transform:matrix(0.314774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314774,0.000000,0.000000,0.250000,0,0);}
.m67_c00404{transform:matrix(0.315300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315300,0.000000,0.000000,0.250000,0,0);}
.m62_c00404{transform:matrix(0.316121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316121,0.000000,0.000000,0.250000,0,0);}
.m85_c00404{transform:matrix(0.316459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316459,0.000000,0.000000,0.250000,0,0);}
.mde_c00404{transform:matrix(0.316821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316821,0.000000,0.000000,0.250000,0,0);}
.m41_c00404{transform:matrix(0.317044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317044,0.000000,0.000000,0.250000,0,0);}
.mc1_c00404{transform:matrix(0.317413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317413,0.000000,0.000000,0.250000,0,0);}
.m2d_c00404{transform:matrix(0.318162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318162,0.000000,0.000000,0.250000,0,0);}
.m71_c00404{transform:matrix(0.319887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319887,0.000000,0.000000,0.250000,0,0);}
.m26_c00404{transform:matrix(0.320226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320226,0.000000,0.000000,0.250000,0,0);}
.mb4_c00404{transform:matrix(0.320856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320856,0.000000,0.000000,0.250000,0,0);}
.m38_c00404{transform:matrix(0.322693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322693,0.000000,0.000000,0.250000,0,0);}
.m30_c00404{transform:matrix(0.323675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323675,0.000000,0.000000,0.250000,0,0);}
.meb_c00404{transform:matrix(0.323794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323794,0.000000,0.000000,0.250000,0,0);}
.mf6_c00404{transform:matrix(0.323993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323993,0.000000,0.000000,0.250000,0,0);}
.mc5_c00404{transform:matrix(0.325067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325067,0.000000,0.000000,0.250000,0,0);}
.m65_c00404{transform:matrix(0.325939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325939,0.000000,0.000000,0.250000,0,0);}
.mba_c00404{transform:matrix(0.326029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326029,0.000000,0.000000,0.250000,0,0);}
.m2e_c00404{transform:matrix(0.329320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329320,0.000000,0.000000,0.250000,0,0);}
.mf3_c00404{transform:matrix(0.330403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330403,0.000000,0.000000,0.250000,0,0);}
.me0_c00404{transform:matrix(0.330669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330669,0.000000,0.000000,0.250000,0,0);}
.m3_c00404{transform:matrix(0.331283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331283,0.000000,0.000000,0.250000,0,0);}
.mae_c00404{transform:matrix(0.331569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331569,0.000000,0.000000,0.250000,0,0);}
.mc7_c00404{transform:matrix(0.332874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332874,0.000000,0.000000,0.250000,0,0);}
.m84_c00404{transform:matrix(0.333008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333008,0.000000,0.000000,0.250000,0,0);}
.m47_c00404{transform:matrix(0.333921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333921,0.000000,0.000000,0.250000,0,0);}
.mec_c00404{transform:matrix(0.336676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336676,0.000000,0.000000,0.250000,0,0);}
.me2_c00404{transform:matrix(0.338218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338218,0.000000,0.000000,0.250000,0,0);}
.m68_c00404{transform:matrix(0.338271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338271,0.000000,0.000000,0.250000,0,0);}
.m69_c00404{transform:matrix(0.339155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339155,0.000000,0.000000,0.250000,0,0);}
.m6e_c00404{transform:matrix(0.339463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339463,0.000000,0.000000,0.250000,0,0);}
.md5_c00404{transform:matrix(0.341476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341476,0.000000,0.000000,0.250000,0,0);}
.mc8_c00404{transform:matrix(0.344668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344668,0.000000,0.000000,0.250000,0,0);}
.m2_c00404{transform:matrix(0.348674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348674,0.000000,0.000000,0.250000,0,0);}
.mac_c00404{transform:matrix(0.349748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349748,0.000000,0.000000,0.250000,0,0);}
.m99_c00404{transform:matrix(0.352323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352323,0.000000,0.000000,0.250000,0,0);}
.m43_c00404{transform:matrix(0.352674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352674,0.000000,0.000000,0.250000,0,0);}
.ma_c00404{transform:matrix(0.353835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353835,0.000000,0.000000,0.250000,0,0);}
.m9a_c00404{transform:matrix(0.355652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355652,0.000000,0.000000,0.250000,0,0);}
.m4c_c00404{transform:matrix(0.355860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355860,0.000000,0.000000,0.250000,0,0);}
.mf4_c00404{transform:matrix(0.356141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356141,0.000000,0.000000,0.250000,0,0);}
.m91_c00404{transform:matrix(0.358889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358889,0.000000,0.000000,0.250000,0,0);}
.m9d_c00404{transform:matrix(0.359729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359729,0.000000,0.000000,0.250000,0,0);}
.m75_c00404{transform:matrix(0.360044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360044,0.000000,0.000000,0.250000,0,0);}
.m74_c00404{transform:matrix(0.362103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362103,0.000000,0.000000,0.250000,0,0);}
.md_c00404{transform:matrix(0.366259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366259,0.000000,0.000000,0.250000,0,0);}
.m8f_c00404{transform:matrix(0.368239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368239,0.000000,0.000000,0.250000,0,0);}
.m1f_c00404{transform:matrix(0.368347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368347,0.000000,0.000000,0.250000,0,0);}
.mf_c00404{transform:matrix(0.369173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369173,0.000000,0.000000,0.250000,0,0);}
.m1c_c00404{transform:matrix(0.370254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370254,0.000000,0.000000,0.250000,0,0);}
.me8_c00404{transform:matrix(0.374500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374500,0.000000,0.000000,0.250000,0,0);}
.mc0_c00404{transform:matrix(0.375323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375323,0.000000,0.000000,0.250000,0,0);}
.m19_c00404{transform:matrix(0.392034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392034,0.000000,0.000000,0.250000,0,0);}
.m8d_c00404{transform:matrix(0.402103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402103,0.000000,0.000000,0.250000,0,0);}
.m7a_c00404{transform:matrix(0.402203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402203,0.000000,0.000000,0.250000,0,0);}
.mee_c00404{transform:matrix(0.407317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407317,0.000000,0.000000,0.250000,0,0);}
.mbb_c00404{transform:matrix(0.410680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410680,0.000000,0.000000,0.250000,0,0);}
.mcc_c00404{transform:matrix(0.415496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415496,0.000000,0.000000,0.250000,0,0);}
.m9b_c00404{transform:matrix(0.416178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416178,0.000000,0.000000,0.250000,0,0);}
.mc4_c00404{transform:matrix(0.417156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417156,0.000000,0.000000,0.250000,0,0);}
.m53_c00404{transform:matrix(0.441967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441967,0.000000,0.000000,0.250000,0,0);}
.mc9_c00404{transform:matrix(0.448192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448192,0.000000,0.000000,0.250000,0,0);}
.m3b_c00404{transform:matrix(0.456895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456895,0.000000,0.000000,0.250000,0,0);}
.m56_c00404{transform:matrix(0.541425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541425,0.000000,0.000000,0.250000,0,0);}
.mcd_c00404{transform:matrix(1.413263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.413263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.413263,0.000000,0.000000,0.250000,0,0);}
.v2_c00404{vertical-align:-14.236200px;}
.v0_c00404{vertical-align:0.000000px;}
.v1_c00404{vertical-align:1.437480px;}
.v3_c00404{vertical-align:25.660800px;}
.ls18_c00404{letter-spacing:-2.952180px;}
.ls1f_c00404{letter-spacing:-2.794928px;}
.ls7_c00404{letter-spacing:-2.647267px;}
.ls17_c00404{letter-spacing:-2.487877px;}
.ls29_c00404{letter-spacing:-2.425500px;}
.ls16_c00404{letter-spacing:-2.404717px;}
.lsd_c00404{letter-spacing:-2.328480px;}
.lsa_c00404{letter-spacing:-1.725570px;}
.ls24_c00404{letter-spacing:-1.510740px;}
.ls10_c00404{letter-spacing:-1.429524px;}
.ls12_c00404{letter-spacing:-0.948741px;}
.ls27_c00404{letter-spacing:-0.338818px;}
.ls4_c00404{letter-spacing:0.000000px;}
.ls3_c00404{letter-spacing:0.128582px;}
.ls15_c00404{letter-spacing:0.574210px;}
.ls23_c00404{letter-spacing:1.019700px;}
.ls2_c00404{letter-spacing:1.036216px;}
.ls28_c00404{letter-spacing:1.118700px;}
.ls11_c00404{letter-spacing:1.346400px;}
.ls26_c00404{letter-spacing:2.425500px;}
.ls9_c00404{letter-spacing:2.465100px;}
.lsc_c00404{letter-spacing:2.564067px;}
.ls21_c00404{letter-spacing:3.138310px;}
.lsf_c00404{letter-spacing:3.247200px;}
.ls1c_c00404{letter-spacing:3.405610px;}
.ls19_c00404{letter-spacing:3.426320px;}
.ls1d_c00404{letter-spacing:3.474900px;}
.ls5_c00404{letter-spacing:3.633310px;}
.ls14_c00404{letter-spacing:3.643200px;}
.ls6_c00404{letter-spacing:3.781810px;}
.ls20_c00404{letter-spacing:4.286700px;}
.ls8_c00404{letter-spacing:4.464900px;}
.ls1_c00404{letter-spacing:9.719358px;}
.ls22_c00404{letter-spacing:35.640000px;}
.ls1a_c00404{letter-spacing:47.044800px;}
.lse_c00404{letter-spacing:48.470598px;}
.lsb_c00404{letter-spacing:49.896198px;}
.ls1b_c00404{letter-spacing:51.321798px;}
.ls1e_c00404{letter-spacing:52.747398px;}
.ls25_c00404{letter-spacing:55.598598px;}
.ls13_c00404{letter-spacing:57.024198px;}
.ls0_c00404{letter-spacing:844.014600px;}
.sc__c00404{text-shadow:none;}
.sc0_c00404{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00404{-webkit-text-stroke:0px transparent;}
.sc0_c00404{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00404{word-spacing:-18.909050px;}
.ws4_c00404{word-spacing:-18.638572px;}
.ws6_c00404{word-spacing:-9.789278px;}
.ws2_c00404{word-spacing:-0.983373px;}
.ws7_c00404{word-spacing:0.000000px;}
.ws5_c00404{word-spacing:1.285905px;}
.ws3_c00404{word-spacing:1.945944px;}
.ws1_c00404{word-spacing:45.532965px;}
._18_c00404{margin-left:-28.363621px;}
._2_c00404{margin-left:-12.479896px;}
._e_c00404{margin-left:-10.966582px;}
._1d_c00404{margin-left:-9.891981px;}
._6_c00404{margin-left:-8.698190px;}
._c_c00404{margin-left:-7.110230px;}
._17_c00404{width:3.403719px;}
._7_c00404{width:4.916846px;}
._15_c00404{width:6.958028px;}
._3_c00404{width:8.320268px;}
._4_c00404{width:9.604881px;}
._b_c00404{width:10.740422px;}
._0_c00404{width:12.328756px;}
._a_c00404{width:14.856226px;}
._f_c00404{width:16.942376px;}
._1a_c00404{width:20.421852px;}
._10_c00404{width:23.142834px;}
._8_c00404{width:24.884491px;}
._5_c00404{width:26.531852px;}
._1c_c00404{width:27.849311px;}
._1b_c00404{width:35.851525px;}
._1_c00404{width:37.439881px;}
._16_c00404{width:43.223105px;}
._d_c00404{width:44.700573px;}
._19_c00404{width:48.256896px;}
._13_c00404{width:73.695600px;}
._12_c00404{width:95.157612px;}
._11_c00404{width:153.681154px;}
._9_c00404{width:266.283365px;}
._14_c00404{width:551.786400px;}
.fc0_c00404{color:transparent;}
.fs21_c00404{font-size:11.286000px;}
.fs12_c00404{font-size:11.484198px;}
.fs20_c00404{font-size:16.236000px;}
.fs1f_c00404{font-size:20.394000px;}
.fs1_c00404{font-size:22.176000px;}
.fs27_c00404{font-size:22.374000px;}
.fsb_c00404{font-size:26.928000px;}
.fs0_c00404{font-size:27.720000px;}
.fsa_c00404{font-size:34.056198px;}
.fs1e_c00404{font-size:35.640000px;}
.fs26_c00404{font-size:36.432000px;}
.fs29_c00404{font-size:41.778000px;}
.fs22_c00404{font-size:43.164000px;}
.fs16_c00404{font-size:47.044800px;}
.fsc_c00404{font-size:47.916198px;}
.fs8_c00404{font-size:48.470598px;}
.fs24_c00404{font-size:48.510000px;}
.fs5_c00404{font-size:49.302000px;}
.fs6_c00404{font-size:49.896198px;}
.fs17_c00404{font-size:51.321798px;}
.fs1a_c00404{font-size:52.747398px;}
.fs23_c00404{font-size:55.598598px;}
.fs10_c00404{font-size:57.024198px;}
.fsd_c00404{font-size:59.400000px;}
.fs2b_c00404{font-size:60.588000px;}
.fs25_c00404{font-size:60.984000px;}
.fs2a_c00404{font-size:62.568000px;}
.fs1c_c00404{font-size:62.766198px;}
.fs9_c00404{font-size:64.944000px;}
.fs7_c00404{font-size:66.528000px;}
.fs18_c00404{font-size:68.112198px;}
.fs13_c00404{font-size:68.706198px;}
.fs28_c00404{font-size:69.300000px;}
.fs19_c00404{font-size:69.498000px;}
.fs14_c00404{font-size:71.082198px;}
.fs2_c00404{font-size:72.666198px;}
.fs11_c00404{font-size:72.864000px;}
.fs3_c00404{font-size:75.636198px;}
.fsf_c00404{font-size:76.032198px;}
.fs1d_c00404{font-size:79.200000px;}
.fs15_c00404{font-size:84.348000px;}
.fs1b_c00404{font-size:85.734000px;}
.fs4_c00404{font-size:89.298000px;}
.fse_c00404{font-size:91.872198px;}
.y0_c00404{bottom:0.000000px;}
.y1_c00404{bottom:76.500000px;}
.y2f_c00404{bottom:135.700335px;}
.y2e_c00404{bottom:136.056735px;}
.y2d_c00404{bottom:136.413135px;}
.y2c_c00404{bottom:199.495935px;}
.y2b_c00404{bottom:231.928335px;}
.y2a_c00404{bottom:257.589135px;}
.y29_c00404{bottom:266.850585px;}
.y26_c00404{bottom:293.936985px;}
.y28_c00404{bottom:298.926585px;}
.y24_c00404{bottom:300.000735px;}
.y27_c00404{bottom:300.352185px;}
.y25_c00404{bottom:301.069935px;}
.y22_c00404{bottom:324.943785px;}
.y23_c00404{bottom:325.305135px;}
.y21_c00404{bottom:327.082185px;}
.y20_c00404{bottom:330.289785px;}
.y1f_c00404{bottom:330.651135px;}
.y1e_c00404{bottom:340.986735px;}
.y2_c00404{bottom:343.125135px;}
.y1d_c00404{bottom:366.291135px;}
.y1c_c00404{bottom:400.500585px;}
.y1b_c00404{bottom:435.789135px;}
.y1a_c00404{bottom:532.729935px;}
.y19_c00404{bottom:565.513785px;}
.y18_c00404{bottom:591.174585px;}
.y17_c00404{bottom:597.951135px;}
.y16_c00404{bottom:631.452735px;}
.y15_c00404{bottom:664.241535px;}
.y14_c00404{bottom:696.312585px;}
.y12_c00404{bottom:697.030335px;}
.y13_c00404{bottom:697.738185px;}
.y11_c00404{bottom:755.479935px;}
.y10_c00404{bottom:761.182335px;}
.yf_c00404{bottom:788.620185px;}
.yd_c00404{bottom:793.971135px;}
.ye_c00404{bottom:794.322585px;}
.yc_c00404{bottom:794.678985px;}
.yb_c00404{bottom:822.126735px;}
.ya_c00404{bottom:826.759935px;}
.y9_c00404{bottom:861.325785px;}
.y8_c00404{bottom:895.183785px;}
.y7_c00404{bottom:927.264735px;}
.y6_c00404{bottom:951.851385px;}
.y5_c00404{bottom:1018.854585px;}
.y4_c00404{bottom:1080.868185px;}
.y3_c00404{bottom:1105.103385px;}
.h12_c00404{height:11.977660px;}
.h21_c00404{height:16.933641px;}
.h20_c00404{height:20.015596px;}
.h28_c00404{height:21.958857px;}
.h3_c00404{height:23.128875px;}
.h1f_c00404{height:23.736240px;}
.he_c00404{height:28.085063px;}
.h2_c00404{height:28.911094px;}
.h16_c00404{height:31.331837px;}
.ha_c00404{height:32.281418px;}
.h8_c00404{height:33.230868px;}
.h18_c00404{height:34.180317px;}
.h1b_c00404{height:35.129767px;}
.hc_c00404{height:35.519550px;}
.h23_c00404{height:37.028666px;}
.h10_c00404{height:37.978116px;}
.h26_c00404{height:37.997438px;}
.h22_c00404{height:45.018703px;}
.h7_c00404{height:48.387217px;}
.h24_c00404{height:50.594414px;}
.h17_c00404{height:61.952344px;}
.h2b_c00404{height:63.191391px;}
.h25_c00404{height:63.604406px;}
.h9_c00404{height:65.293594px;}
.h1d_c00404{height:65.463183px;}
.h19_c00404{height:66.848397px;}
.h13_c00404{height:67.431376px;}
.hb_c00404{height:67.734563px;}
.h29_c00404{height:68.014160px;}
.h1a_c00404{height:68.208486px;}
.h14_c00404{height:69.763290px;}
.h4_c00404{height:71.317899px;}
.h11_c00404{height:71.512031px;}
.h5_c00404{height:74.232792px;}
.hd_c00404{height:75.670272px;}
.hf_c00404{height:75.931338px;}
.h2a_c00404{height:79.818750px;}
.h1e_c00404{height:82.603125px;}
.h15_c00404{height:82.782949px;}
.h1c_c00404{height:84.143232px;}
.h6_c00404{height:87.641104px;}
.h27_c00404{height:99.893592px;}
.h1_c00404{height:1110.000000px;}
.h0_c00404{height:1263.000000px;}
.w1_c00404{width:775.500000px;}
.w0_c00404{width:892.500000px;}
.x0_c00404{left:0.000000px;}
.x1_c00404{left:58.500000px;}
.x18_c00404{left:73.548735px;}
.x7_c00404{left:80.305485px;}
.x67_c00404{left:81.602385px;}
.x6f_c00404{left:82.810185px;}
.x19_c00404{left:92.185485px;}
.x8b_c00404{left:98.209635px;}
.x1a_c00404{left:100.461885px;}
.x8_c00404{left:102.798285px;}
.x8c_c00404{left:104.515935px;}
.x7c_c00404{left:106.555335px;}
.x41_c00404{left:112.970535px;}
.x9_c00404{left:114.173385px;}
.x4d_c00404{left:121.118235px;}
.x2b_c00404{left:125.206935px;}
.x75_c00404{left:127.726485px;}
.x64_c00404{left:134.859435px;}
.xa_c00404{left:135.933585px;}
.x1b_c00404{left:136.973085px;}
.x7d_c00404{left:138.982785px;}
.x68_c00404{left:141.838935px;}
.x59_c00404{left:145.897935px;}
.xb_c00404{left:146.967135px;}
.x53_c00404{left:148.323435px;}
.x42_c00404{left:156.802785px;}
.x8e_c00404{left:157.970985px;}
.x4e_c00404{left:165.603885px;}
.x54_c00404{left:168.024435px;}
.x1c_c00404{left:169.281735px;}
.x1d_c00404{left:179.617335px;}
.x50_c00404{left:181.914135px;}
.x76_c00404{left:186.745335px;}
.x5a_c00404{left:189.611385px;}
.x1e_c00404{left:190.660785px;}
.x43_c00404{left:191.729985px;}
.x77_c00404{left:195.298935px;}
.x1f_c00404{left:198.506535px;}
.xc_c00404{left:201.714135px;}
.x38_c00404{left:210.574635px;}
.x7e_c00404{left:211.648785px;}
.x44_c00404{left:212.906085px;}
.x70_c00404{left:214.990035px;}
.x4f_c00404{left:222.682335px;}
.x20_c00404{left:224.167335px;}
.x8f_c00404{left:231.998235px;}
.x84_c00404{left:233.745585px;}
.xd_c00404{left:234.884085px;}
.x69_c00404{left:236.463135px;}
.x40_c00404{left:243.912885px;}
.x21_c00404{left:246.061185px;}
.x71_c00404{left:248.590635px;}
.x85_c00404{left:252.921885px;}
.x2c_c00404{left:256.475985px;}
.x65_c00404{left:257.792685px;}
.x2d_c00404{left:263.881185px;}
.x22_c00404{left:268.123335px;}
.x5b_c00404{left:269.994435px;}
.x5e_c00404{left:279.206385px;}
.x23_c00404{left:290.918085px;}
.x72_c00404{left:300.031035px;}
.x55_c00404{left:301.342785px;}
.x51_c00404{left:303.555435px;}
.x39_c00404{left:312.905985px;}
.x4c_c00404{left:315.123585px;}
.x45_c00404{left:322.434735px;}
.x63_c00404{left:323.721735px;}
.x2e_c00404{left:334.082085px;}
.x6d_c00404{left:335.482935px;}
.x24_c00404{left:344.581035px;}
.x3a_c00404{left:345.699735px;}
.xe_c00404{left:356.901585px;}
.x2f_c00404{left:367.935135px;}
.x3b_c00404{left:370.291335px;}
.x5f_c00404{left:378.033135px;}
.x78_c00404{left:379.701285px;}
.x52_c00404{left:381.107085px;}
.x60_c00404{left:385.784835px;}
.x86_c00404{left:388.814235px;}
.xf_c00404{left:390.012135px;}
.x56_c00404{left:399.862635px;}
.x25_c00404{left:401.030835px;}
.x4a_c00404{left:410.351685px;}
.x30_c00404{left:411.554535px;}
.x90_c00404{left:412.702935px;}
.x82_c00404{left:416.222385px;}
.x10_c00404{left:422.622735px;}
.x31_c00404{left:424.216635px;}
.x4b_c00404{left:426.444135px;}
.x6a_c00404{left:432.983085px;}
.x11_c00404{left:434.205735px;}
.x26_c00404{left:444.571035px;}
.x73_c00404{left:445.620435px;}
.x61_c00404{left:456.312435px;}
.x12_c00404{left:467.029185px;}
.x13_c00404{left:478.760685px;}
.x32_c00404{left:483.096885px;}
.x27_c00404{left:489.086385px;}
.x7f_c00404{left:490.482285px;}
.x2_c00404{left:496.011435px;}
.x6b_c00404{left:499.263585px;}
.x33_c00404{left:501.441585px;}
.x3c_c00404{left:511.138635px;}
.x5c_c00404{left:521.756385px;}
.x28_c00404{left:523.330485px;}
.x66_c00404{left:534.012585px;}
.x57_c00404{left:535.047135px;}
.x5_c00404{left:536.997435px;}
.x62_c00404{left:544.516485px;}
.x34_c00404{left:545.976735px;}
.x87_c00404{left:550.629735px;}
.x14_c00404{left:555.183735px;}
.x46_c00404{left:557.624085px;}
.x88_c00404{left:558.821985px;}
.x6c_c00404{left:565.232235px;}
.x5d_c00404{left:566.628135px;}
.x35_c00404{left:577.676535px;}
.x79_c00404{left:579.805035px;}
.x29_c00404{left:588.205185px;}
.x2a_c00404{left:599.931735px;}
.x3d_c00404{left:610.891035px;}
.x15_c00404{left:622.449285px;}
.x6_c00404{left:626.072685px;}
.x16_c00404{left:633.784785px;}
.x80_c00404{left:642.472035px;}
.x47_c00404{left:643.971885px;}
.x83_c00404{left:650.139585px;}
.x3e_c00404{left:654.292635px;}
.x58_c00404{left:655.559835px;}
.x36_c00404{left:664.276785px;}
.x6e_c00404{left:666.217185px;}
.x17_c00404{left:669.385185px;}
.x3_c00404{left:677.641785px;}
.x74_c00404{left:688.328835px;}
.x4_c00404{left:689.893035px;}
.x37_c00404{left:698.842635px;}
.x7a_c00404{left:704.891535px;}
.x89_c00404{left:709.628685px;}
.x48_c00404{left:711.133485px;}
.x8a_c00404{left:721.132485px;}
.x49_c00404{left:732.863985px;}
.x3f_c00404{left:735.294435px;}
.x7b_c00404{left:739.046535px;}
.x81_c00404{left:743.565885px;}
.x8d_c00404{left:754.614285px;}
@media print{
.v2_c00404{vertical-align:-12.654400pt;}
.v0_c00404{vertical-align:0.000000pt;}
.v1_c00404{vertical-align:1.277760pt;}
.v3_c00404{vertical-align:22.809600pt;}
.ls18_c00404{letter-spacing:-2.624160pt;}
.ls1f_c00404{letter-spacing:-2.484381pt;}
.ls7_c00404{letter-spacing:-2.353126pt;}
.ls17_c00404{letter-spacing:-2.211446pt;}
.ls29_c00404{letter-spacing:-2.156000pt;}
.ls16_c00404{letter-spacing:-2.137526pt;}
.lsd_c00404{letter-spacing:-2.069760pt;}
.lsa_c00404{letter-spacing:-1.533840pt;}
.ls24_c00404{letter-spacing:-1.342880pt;}
.ls10_c00404{letter-spacing:-1.270688pt;}
.ls12_c00404{letter-spacing:-0.843325pt;}
.ls27_c00404{letter-spacing:-0.301171pt;}
.ls4_c00404{letter-spacing:0.000000pt;}
.ls3_c00404{letter-spacing:0.114295pt;}
.ls15_c00404{letter-spacing:0.510409pt;}
.ls23_c00404{letter-spacing:0.906400pt;}
.ls2_c00404{letter-spacing:0.921081pt;}
.ls28_c00404{letter-spacing:0.994400pt;}
.ls11_c00404{letter-spacing:1.196800pt;}
.ls26_c00404{letter-spacing:2.156000pt;}
.ls9_c00404{letter-spacing:2.191200pt;}
.lsc_c00404{letter-spacing:2.279171pt;}
.ls21_c00404{letter-spacing:2.789609pt;}
.lsf_c00404{letter-spacing:2.886400pt;}
.ls1c_c00404{letter-spacing:3.027209pt;}
.ls19_c00404{letter-spacing:3.045618pt;}
.ls1d_c00404{letter-spacing:3.088800pt;}
.ls5_c00404{letter-spacing:3.229609pt;}
.ls14_c00404{letter-spacing:3.238400pt;}
.ls6_c00404{letter-spacing:3.361609pt;}
.ls20_c00404{letter-spacing:3.810400pt;}
.ls8_c00404{letter-spacing:3.968800pt;}
.ls1_c00404{letter-spacing:8.639429pt;}
.ls22_c00404{letter-spacing:31.680000pt;}
.ls1a_c00404{letter-spacing:41.817600pt;}
.lse_c00404{letter-spacing:43.084976pt;}
.lsb_c00404{letter-spacing:44.352176pt;}
.ls1b_c00404{letter-spacing:45.619376pt;}
.ls1e_c00404{letter-spacing:46.886576pt;}
.ls25_c00404{letter-spacing:49.420976pt;}
.ls13_c00404{letter-spacing:50.688176pt;}
.ls0_c00404{letter-spacing:750.235200pt;}
.ws0_c00404{word-spacing:-16.808044pt;}
.ws4_c00404{word-spacing:-16.567619pt;}
.ws6_c00404{word-spacing:-8.701581pt;}
.ws2_c00404{word-spacing:-0.874109pt;}
.ws7_c00404{word-spacing:0.000000pt;}
.ws5_c00404{word-spacing:1.143027pt;}
.ws3_c00404{word-spacing:1.729728pt;}
.ws1_c00404{word-spacing:40.473747pt;}
._18_c00404{margin-left:-25.212108pt;}
._2_c00404{margin-left:-11.093241pt;}
._e_c00404{margin-left:-9.748073pt;}
._1d_c00404{margin-left:-8.792872pt;}
._6_c00404{margin-left:-7.731724pt;}
._c_c00404{margin-left:-6.320204pt;}
._17_c00404{width:3.025528pt;}
._7_c00404{width:4.370530pt;}
._15_c00404{width:6.184914pt;}
._3_c00404{width:7.395794pt;}
._4_c00404{width:8.537672pt;}
._b_c00404{width:9.547042pt;}
._0_c00404{width:10.958894pt;}
._a_c00404{width:13.205534pt;}
._f_c00404{width:15.059890pt;}
._1a_c00404{width:18.152757pt;}
._10_c00404{width:20.571408pt;}
._8_c00404{width:22.119548pt;}
._5_c00404{width:23.583868pt;}
._1c_c00404{width:24.754944pt;}
._1b_c00404{width:31.868022pt;}
._1_c00404{width:33.279894pt;}
._16_c00404{width:38.420538pt;}
._d_c00404{width:39.733843pt;}
._19_c00404{width:42.895019pt;}
._13_c00404{width:65.507200pt;}
._12_c00404{width:84.584544pt;}
._11_c00404{width:136.605470pt;}
._9_c00404{width:236.696324pt;}
._14_c00404{width:490.476800pt;}
.fs21_c00404{font-size:10.032000pt;}
.fs12_c00404{font-size:10.208176pt;}
.fs20_c00404{font-size:14.432000pt;}
.fs1f_c00404{font-size:18.128000pt;}
.fs1_c00404{font-size:19.712000pt;}
.fs27_c00404{font-size:19.888000pt;}
.fsb_c00404{font-size:23.936000pt;}
.fs0_c00404{font-size:24.640000pt;}
.fsa_c00404{font-size:30.272176pt;}
.fs1e_c00404{font-size:31.680000pt;}
.fs26_c00404{font-size:32.384000pt;}
.fs29_c00404{font-size:37.136000pt;}
.fs22_c00404{font-size:38.368000pt;}
.fs16_c00404{font-size:41.817600pt;}
.fsc_c00404{font-size:42.592176pt;}
.fs8_c00404{font-size:43.084976pt;}
.fs24_c00404{font-size:43.120000pt;}
.fs5_c00404{font-size:43.824000pt;}
.fs6_c00404{font-size:44.352176pt;}
.fs17_c00404{font-size:45.619376pt;}
.fs1a_c00404{font-size:46.886576pt;}
.fs23_c00404{font-size:49.420976pt;}
.fs10_c00404{font-size:50.688176pt;}
.fsd_c00404{font-size:52.800000pt;}
.fs2b_c00404{font-size:53.856000pt;}
.fs25_c00404{font-size:54.208000pt;}
.fs2a_c00404{font-size:55.616000pt;}
.fs1c_c00404{font-size:55.792176pt;}
.fs9_c00404{font-size:57.728000pt;}
.fs7_c00404{font-size:59.136000pt;}
.fs18_c00404{font-size:60.544176pt;}
.fs13_c00404{font-size:61.072176pt;}
.fs28_c00404{font-size:61.600000pt;}
.fs19_c00404{font-size:61.776000pt;}
.fs14_c00404{font-size:63.184176pt;}
.fs2_c00404{font-size:64.592176pt;}
.fs11_c00404{font-size:64.768000pt;}
.fs3_c00404{font-size:67.232176pt;}
.fsf_c00404{font-size:67.584176pt;}
.fs1d_c00404{font-size:70.400000pt;}
.fs15_c00404{font-size:74.976000pt;}
.fs1b_c00404{font-size:76.208000pt;}
.fs4_c00404{font-size:79.376000pt;}
.fse_c00404{font-size:81.664176pt;}
.y0_c00404{bottom:0.000000pt;}
.y1_c00404{bottom:68.000000pt;}
.y2f_c00404{bottom:120.622520pt;}
.y2e_c00404{bottom:120.939320pt;}
.y2d_c00404{bottom:121.256120pt;}
.y2c_c00404{bottom:177.329720pt;}
.y2b_c00404{bottom:206.158520pt;}
.y2a_c00404{bottom:228.968120pt;}
.y29_c00404{bottom:237.200520pt;}
.y26_c00404{bottom:261.277320pt;}
.y28_c00404{bottom:265.712520pt;}
.y24_c00404{bottom:266.667320pt;}
.y27_c00404{bottom:266.979720pt;}
.y25_c00404{bottom:267.617720pt;}
.y22_c00404{bottom:288.838920pt;}
.y23_c00404{bottom:289.160120pt;}
.y21_c00404{bottom:290.739720pt;}
.y20_c00404{bottom:293.590920pt;}
.y1f_c00404{bottom:293.912120pt;}
.y1e_c00404{bottom:303.099320pt;}
.y2_c00404{bottom:305.000120pt;}
.y1d_c00404{bottom:325.592120pt;}
.y1c_c00404{bottom:356.000520pt;}
.y1b_c00404{bottom:387.368120pt;}
.y1a_c00404{bottom:473.537720pt;}
.y19_c00404{bottom:502.678920pt;}
.y18_c00404{bottom:525.488520pt;}
.y17_c00404{bottom:531.512120pt;}
.y16_c00404{bottom:561.291320pt;}
.y15_c00404{bottom:590.436920pt;}
.y14_c00404{bottom:618.944520pt;}
.y12_c00404{bottom:619.582520pt;}
.y13_c00404{bottom:620.211720pt;}
.y11_c00404{bottom:671.537720pt;}
.y10_c00404{bottom:676.606520pt;}
.yf_c00404{bottom:700.995720pt;}
.yd_c00404{bottom:705.752120pt;}
.ye_c00404{bottom:706.064520pt;}
.yc_c00404{bottom:706.381320pt;}
.yb_c00404{bottom:730.779320pt;}
.ya_c00404{bottom:734.897720pt;}
.y9_c00404{bottom:765.622920pt;}
.y8_c00404{bottom:795.718920pt;}
.y7_c00404{bottom:824.235320pt;}
.y6_c00404{bottom:846.090120pt;}
.y5_c00404{bottom:905.648520pt;}
.y4_c00404{bottom:960.771720pt;}
.y3_c00404{bottom:982.314120pt;}
.h12_c00404{height:10.646809pt;}
.h21_c00404{height:15.052125pt;}
.h20_c00404{height:17.791641pt;}
.h28_c00404{height:19.518984pt;}
.h3_c00404{height:20.559000pt;}
.h1f_c00404{height:21.098880pt;}
.he_c00404{height:24.964500pt;}
.h2_c00404{height:25.698750pt;}
.h16_c00404{height:27.850522pt;}
.ha_c00404{height:28.694594pt;}
.h8_c00404{height:29.538549pt;}
.h18_c00404{height:30.382504pt;}
.h1b_c00404{height:31.226460pt;}
.hc_c00404{height:31.572934pt;}
.h23_c00404{height:32.914370pt;}
.h10_c00404{height:33.758325pt;}
.h26_c00404{height:33.775500pt;}
.h22_c00404{height:40.016625pt;}
.h7_c00404{height:43.010859pt;}
.h24_c00404{height:44.972813pt;}
.h17_c00404{height:55.068750pt;}
.h2b_c00404{height:56.170125pt;}
.h25_c00404{height:56.537250pt;}
.h9_c00404{height:58.038750pt;}
.h1d_c00404{height:58.189496pt;}
.h19_c00404{height:59.420798pt;}
.h13_c00404{height:59.939001pt;}
.hb_c00404{height:60.208500pt;}
.h29_c00404{height:60.457031pt;}
.h1a_c00404{height:60.629766pt;}
.h14_c00404{height:62.011813pt;}
.h4_c00404{height:63.393688pt;}
.h11_c00404{height:63.566250pt;}
.h5_c00404{height:65.984704pt;}
.hd_c00404{height:67.262464pt;}
.hf_c00404{height:67.494523pt;}
.h2a_c00404{height:70.950000pt;}
.h1e_c00404{height:73.425000pt;}
.h15_c00404{height:73.584844pt;}
.h1c_c00404{height:74.793984pt;}
.h6_c00404{height:77.903203pt;}
.h27_c00404{height:88.794304pt;}
.h1_c00404{height:986.666667pt;}
.h0_c00404{height:1122.666667pt;}
.w1_c00404{width:689.333333pt;}
.w0_c00404{width:793.333333pt;}
.x0_c00404{left:0.000000pt;}
.x1_c00404{left:52.000000pt;}
.x18_c00404{left:65.376653pt;}
.x7_c00404{left:71.382653pt;}
.x67_c00404{left:72.535453pt;}
.x6f_c00404{left:73.609053pt;}
.x19_c00404{left:81.942653pt;}
.x8b_c00404{left:87.297453pt;}
.x1a_c00404{left:89.299453pt;}
.x8_c00404{left:91.376253pt;}
.x8c_c00404{left:92.903053pt;}
.x7c_c00404{left:94.715853pt;}
.x41_c00404{left:100.418253pt;}
.x9_c00404{left:101.487453pt;}
.x4d_c00404{left:107.660653pt;}
.x2b_c00404{left:111.295053pt;}
.x75_c00404{left:113.534653pt;}
.x64_c00404{left:119.875053pt;}
.xa_c00404{left:120.829853pt;}
.x1b_c00404{left:121.753853pt;}
.x7d_c00404{left:123.540253pt;}
.x68_c00404{left:126.079053pt;}
.x59_c00404{left:129.687053pt;}
.xb_c00404{left:130.637453pt;}
.x53_c00404{left:131.843053pt;}
.x42_c00404{left:139.380253pt;}
.x8e_c00404{left:140.418653pt;}
.x4e_c00404{left:147.203453pt;}
.x54_c00404{left:149.355053pt;}
.x1c_c00404{left:150.472653pt;}
.x1d_c00404{left:159.659853pt;}
.x50_c00404{left:161.701453pt;}
.x76_c00404{left:165.995853pt;}
.x5a_c00404{left:168.543453pt;}
.x1e_c00404{left:169.476253pt;}
.x43_c00404{left:170.426653pt;}
.x77_c00404{left:173.599053pt;}
.x1f_c00404{left:176.450253pt;}
.xc_c00404{left:179.301453pt;}
.x38_c00404{left:187.177453pt;}
.x7e_c00404{left:188.132253pt;}
.x44_c00404{left:189.249853pt;}
.x70_c00404{left:191.102253pt;}
.x4f_c00404{left:197.939853pt;}
.x20_c00404{left:199.259853pt;}
.x8f_c00404{left:206.220653pt;}
.x84_c00404{left:207.773853pt;}
.xd_c00404{left:208.785853pt;}
.x69_c00404{left:210.189453pt;}
.x40_c00404{left:216.811453pt;}
.x21_c00404{left:218.721053pt;}
.x71_c00404{left:220.969453pt;}
.x85_c00404{left:224.819453pt;}
.x2c_c00404{left:227.978653pt;}
.x65_c00404{left:229.149053pt;}
.x2d_c00404{left:234.561053pt;}
.x22_c00404{left:238.331853pt;}
.x5b_c00404{left:239.995053pt;}
.x5e_c00404{left:248.183453pt;}
.x23_c00404{left:258.593853pt;}
.x72_c00404{left:266.694253pt;}
.x55_c00404{left:267.860253pt;}
.x51_c00404{left:269.827053pt;}
.x39_c00404{left:278.138653pt;}
.x4c_c00404{left:280.109853pt;}
.x45_c00404{left:286.608653pt;}
.x63_c00404{left:287.752653pt;}
.x2e_c00404{left:296.961853pt;}
.x6d_c00404{left:298.207053pt;}
.x24_c00404{left:306.294253pt;}
.x3a_c00404{left:307.288653pt;}
.xe_c00404{left:317.245853pt;}
.x2f_c00404{left:327.053453pt;}
.x3b_c00404{left:329.147853pt;}
.x5f_c00404{left:336.029453pt;}
.x78_c00404{left:337.512253pt;}
.x52_c00404{left:338.761853pt;}
.x60_c00404{left:342.919853pt;}
.x86_c00404{left:345.612653pt;}
.xf_c00404{left:346.677453pt;}
.x56_c00404{left:355.433453pt;}
.x25_c00404{left:356.471853pt;}
.x4a_c00404{left:364.757053pt;}
.x30_c00404{left:365.826253pt;}
.x90_c00404{left:366.847053pt;}
.x82_c00404{left:369.975453pt;}
.x10_c00404{left:375.664653pt;}
.x31_c00404{left:377.081453pt;}
.x4b_c00404{left:379.061453pt;}
.x6a_c00404{left:384.873853pt;}
.x11_c00404{left:385.960653pt;}
.x26_c00404{left:395.174253pt;}
.x73_c00404{left:396.107053pt;}
.x61_c00404{left:405.611053pt;}
.x12_c00404{left:415.137053pt;}
.x13_c00404{left:425.565053pt;}
.x32_c00404{left:429.419453pt;}
.x27_c00404{left:434.743453pt;}
.x7f_c00404{left:435.984253pt;}
.x2_c00404{left:440.899053pt;}
.x6b_c00404{left:443.789853pt;}
.x33_c00404{left:445.725853pt;}
.x3c_c00404{left:454.345453pt;}
.x5c_c00404{left:463.783453pt;}
.x28_c00404{left:465.182653pt;}
.x66_c00404{left:474.677853pt;}
.x57_c00404{left:475.597453pt;}
.x5_c00404{left:477.331053pt;}
.x62_c00404{left:484.014653pt;}
.x34_c00404{left:485.312653pt;}
.x87_c00404{left:489.448653pt;}
.x14_c00404{left:493.496653pt;}
.x46_c00404{left:495.665853pt;}
.x88_c00404{left:496.730653pt;}
.x6c_c00404{left:502.428653pt;}
.x5d_c00404{left:503.669453pt;}
.x35_c00404{left:513.490253pt;}
.x79_c00404{left:515.382253pt;}
.x29_c00404{left:522.849053pt;}
.x2a_c00404{left:533.272653pt;}
.x3d_c00404{left:543.014253pt;}
.x15_c00404{left:553.288253pt;}
.x6_c00404{left:556.509053pt;}
.x16_c00404{left:563.364253pt;}
.x80_c00404{left:571.086253pt;}
.x47_c00404{left:572.419453pt;}
.x83_c00404{left:577.901853pt;}
.x3e_c00404{left:581.593453pt;}
.x58_c00404{left:582.719853pt;}
.x36_c00404{left:590.468253pt;}
.x6e_c00404{left:592.193053pt;}
.x17_c00404{left:595.009053pt;}
.x3_c00404{left:602.348253pt;}
.x74_c00404{left:611.847853pt;}
.x4_c00404{left:613.238253pt;}
.x37_c00404{left:621.193453pt;}
.x7a_c00404{left:626.570253pt;}
.x89_c00404{left:630.781053pt;}
.x48_c00404{left:632.118653pt;}
.x8a_c00404{left:641.006653pt;}
.x49_c00404{left:651.434653pt;}
.x3f_c00404{left:653.595053pt;}
.x7b_c00404{left:656.930253pt;}
.x81_c00404{left:660.947453pt;}
.x8d_c00404{left:670.768253pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e29dd24f316f69526b4ca718.woff2')format("woff");}.ff1_c00405{font-family:ff1_c00405;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00405;src:url('chunks/assets/font_58f3acf81675d85df5ebf7ce.woff2')format("woff");}.ff2_c00405{font-family:ff2_c00405;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00405;src:url('chunks/assets/font_35dbc3518196f39ee071461b.woff2')format("woff");}.ff3_c00405{font-family:ff3_c00405;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00405;src:url('chunks/assets/font_51eeedc9e67e1c071360ca86.woff2')format("woff");}.ff4_c00405{font-family:ff4_c00405;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00405;src:url('chunks/assets/font_82a047de13f232047ed90e0c.woff2')format("woff");}.ff5_c00405{font-family:ff5_c00405;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00405;src:url('chunks/assets/font_d36d55510aa29bbe52a677a6.woff2')format("woff");}.ff6_c00405{font-family:ff6_c00405;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00405;src:url('chunks/assets/font_75749149107491849ea8dbbd.woff2')format("woff");}.ff7_c00405{font-family:ff7_c00405;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m51_c00405{transform:matrix(0.035715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.035715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.035715,0.000000,0.000000,0.250000,0,0);}
.mf7_c00405{transform:matrix(0.043270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043270,0.000000,0.000000,0.250000,0,0);}
.mea_c00405{transform:matrix(0.064103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064103,0.000000,0.000000,0.250000,0,0);}
.md0_c00405{transform:matrix(0.066177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066177,0.000000,0.000000,0.250000,0,0);}
.meb_c00405{transform:matrix(0.073719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073719,0.000000,0.000000,0.250000,0,0);}
.m4d_c00405{transform:matrix(0.079592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.079592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.079592,0.000000,0.000000,0.250000,0,0);}
.m5f_c00405{transform:matrix(0.080883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080883,0.000000,0.000000,0.250000,0,0);}
.m101_c00405{transform:matrix(0.083334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083334,0.000000,0.000000,0.250000,0,0);}
.mf3_c00405{transform:matrix(0.114821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114821,0.000000,0.000000,0.250000,0,0);}
.mcf_c00405{transform:matrix(0.119745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119745,0.000000,0.000000,0.250000,0,0);}
.mc8_c00405{transform:matrix(0.127105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127105,0.000000,0.000000,0.250000,0,0);}
.mfe_c00405{transform:matrix(0.137821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137821,0.000000,0.000000,0.250000,0,0);}
.md5_c00405{transform:matrix(0.140240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140240,0.000000,0.000000,0.250000,0,0);}
.md3_c00405{transform:matrix(0.140698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140698,0.000000,0.000000,0.250000,0,0);}
.me2_c00405{transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);}
.mfb_c00405{transform:matrix(0.146131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146131,0.000000,0.000000,0.250000,0,0);}
.m37_c00405{transform:matrix(0.146486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146486,0.000000,0.000000,0.250000,0,0);}
.m4_c00405{transform:matrix(0.147436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147436,0.000000,0.000000,0.250000,0,0);}
.me3_c00405{transform:matrix(0.153409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153409,0.000000,0.000000,0.250000,0,0);}
.mff_c00405{transform:matrix(0.153846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153846,0.000000,0.000000,0.250000,0,0);}
.m4f_c00405{transform:matrix(0.157142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157142,0.000000,0.000000,0.250000,0,0);}
.mf2_c00405{transform:matrix(0.157240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157240,0.000000,0.000000,0.250000,0,0);}
.m92_c00405{transform:matrix(0.159344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159344,0.000000,0.000000,0.250000,0,0);}
.mf8_c00405{transform:matrix(0.160256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160256,0.000000,0.000000,0.250000,0,0);}
.m5e_c00405{transform:matrix(0.161764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161764,0.000000,0.000000,0.250000,0,0);}
.mf9_c00405{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);}
.m5d_c00405{transform:matrix(0.169118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169118,0.000000,0.000000,0.250000,0,0);}
.m50_c00405{transform:matrix(0.172618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172618,0.000000,0.000000,0.250000,0,0);}
.m44_c00405{transform:matrix(0.175839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175839,0.000000,0.000000,0.250000,0,0);}
.m5_c00405{transform:matrix(0.183761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183761,0.000000,0.000000,0.250000,0,0);}
.mf6_c00405{transform:matrix(0.185898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185898,0.000000,0.000000,0.250000,0,0);}
.m1f_c00405{transform:matrix(0.187815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187815,0.000000,0.000000,0.250000,0,0);}
.mfa_c00405{transform:matrix(0.188034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188034,0.000000,0.000000,0.250000,0,0);}
.m4e_c00405{transform:matrix(0.188095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188095,0.000000,0.000000,0.250000,0,0);}
.mcc_c00405{transform:matrix(0.188713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188713,0.000000,0.000000,0.250000,0,0);}
.m5c_c00405{transform:matrix(0.191177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191177,0.000000,0.000000,0.250000,0,0);}
.m3_c00405{transform:matrix(0.192307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192307,0.000000,0.000000,0.250000,0,0);}
.mae_c00405{transform:matrix(0.194424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194424,0.000000,0.000000,0.250000,0,0);}
.m4c_c00405{transform:matrix(0.198479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198479,0.000000,0.000000,0.250000,0,0);}
.m52_c00405{transform:matrix(0.203572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203572,0.000000,0.000000,0.250000,0,0);}
.mec_c00405{transform:matrix(0.206696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206696,0.000000,0.000000,0.250000,0,0);}
.mf5_c00405{transform:matrix(0.210348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210348,0.000000,0.000000,0.250000,0,0);}
.m60_c00405{transform:matrix(0.210784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210784,0.000000,0.000000,0.250000,0,0);}
.m72_c00405{transform:matrix(0.212403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212403,0.000000,0.000000,0.250000,0,0);}
.m94_c00405{transform:matrix(0.214821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214821,0.000000,0.000000,0.250000,0,0);}
.mee_c00405{transform:matrix(0.216234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216234,0.000000,0.000000,0.250000,0,0);}
.md2_c00405{transform:matrix(0.220861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220861,0.000000,0.000000,0.250000,0,0);}
.m23_c00405{transform:matrix(0.225745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225745,0.000000,0.000000,0.250000,0,0);}
.m1_c00405{transform:matrix(0.236916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236916,0.000000,0.000000,0.250000,0,0);}
.m30_c00405{transform:matrix(0.237057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237057,0.000000,0.000000,0.250000,0,0);}
.mef_c00405{transform:matrix(0.237548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237548,0.000000,0.000000,0.250000,0,0);}
.md8_c00405{transform:matrix(0.240079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240079,0.000000,0.000000,0.250000,0,0);}
.maa_c00405{transform:matrix(0.241430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241430,0.000000,0.000000,0.250000,0,0);}
.m1c_c00405{transform:matrix(0.241541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241541,0.000000,0.000000,0.250000,0,0);}
.md9_c00405{transform:matrix(0.248503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248503,0.000000,0.000000,0.250000,0,0);}
.ma4_c00405{transform:matrix(0.248703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248703,0.000000,0.000000,0.250000,0,0);}
.mb0_c00405{transform:matrix(0.249052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249052,0.000000,0.000000,0.250000,0,0);}
.m9c_c00405{transform:matrix(0.249110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249110,0.000000,0.000000,0.250000,0,0);}
.me0_c00405{transform:matrix(0.249810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249810,0.000000,0.000000,0.250000,0,0);}
.m104_c00405{transform:matrix(0.249816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249816,0.000000,0.000000,0.250000,0,0);}
.m0_c00405{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00405{transform:matrix(0.250046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250046,0.000000,0.000000,0.250000,0,0);}
.m33_c00405{transform:matrix(0.251036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251036,0.000000,0.000000,0.250000,0,0);}
.mcd_c00405{transform:matrix(0.251118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251118,0.000000,0.000000,0.250000,0,0);}
.m67_c00405{transform:matrix(0.251526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251526,0.000000,0.000000,0.250000,0,0);}
.mb6_c00405{transform:matrix(0.251542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251542,0.000000,0.000000,0.250000,0,0);}
.m9a_c00405{transform:matrix(0.255160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255160,0.000000,0.000000,0.250000,0,0);}
.mbe_c00405{transform:matrix(0.255371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255371,0.000000,0.000000,0.250000,0,0);}
.m71_c00405{transform:matrix(0.255820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255820,0.000000,0.000000,0.250000,0,0);}
.m62_c00405{transform:matrix(0.256706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256706,0.000000,0.000000,0.250000,0,0);}
.ma3_c00405{transform:matrix(0.257476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257476,0.000000,0.000000,0.250000,0,0);}
.m42_c00405{transform:matrix(0.257664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257664,0.000000,0.000000,0.250000,0,0);}
.ma8_c00405{transform:matrix(0.260734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260734,0.000000,0.000000,0.250000,0,0);}
.m96_c00405{transform:matrix(0.261039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261039,0.000000,0.000000,0.250000,0,0);}
.m48_c00405{transform:matrix(0.262540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262540,0.000000,0.000000,0.250000,0,0);}
.md4_c00405{transform:matrix(0.262710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262710,0.000000,0.000000,0.250000,0,0);}
.m100_c00405{transform:matrix(0.262820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262820,0.000000,0.000000,0.250000,0,0);}
.mc1_c00405{transform:matrix(0.264157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264157,0.000000,0.000000,0.250000,0,0);}
.mc_c00405{transform:matrix(0.264293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264293,0.000000,0.000000,0.250000,0,0);}
.m63_c00405{transform:matrix(0.266029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266029,0.000000,0.000000,0.250000,0,0);}
.m3d_c00405{transform:matrix(0.267817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267817,0.000000,0.000000,0.250000,0,0);}
.m93_c00405{transform:matrix(0.269055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269055,0.000000,0.000000,0.250000,0,0);}
.m105_c00405{transform:matrix(0.270361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270361,0.000000,0.000000,0.250000,0,0);}
.mb2_c00405{transform:matrix(0.271342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271342,0.000000,0.000000,0.250000,0,0);}
.m70_c00405{transform:matrix(0.273726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273726,0.000000,0.000000,0.250000,0,0);}
.m95_c00405{transform:matrix(0.274375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274375,0.000000,0.000000,0.250000,0,0);}
.m21_c00405{transform:matrix(0.274638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274638,0.000000,0.000000,0.250000,0,0);}
.m38_c00405{transform:matrix(0.275028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275028,0.000000,0.000000,0.250000,0,0);}
.m8e_c00405{transform:matrix(0.275331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275331,0.000000,0.000000,0.250000,0,0);}
.m76_c00405{transform:matrix(0.275352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275352,0.000000,0.000000,0.250000,0,0);}
.m66_c00405{transform:matrix(0.275904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275904,0.000000,0.000000,0.250000,0,0);}
.m84_c00405{transform:matrix(0.277927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277927,0.000000,0.000000,0.250000,0,0);}
.mfc_c00405{transform:matrix(0.281351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281351,0.000000,0.000000,0.250000,0,0);}
.mc2_c00405{transform:matrix(0.281979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281979,0.000000,0.000000,0.250000,0,0);}
.m29_c00405{transform:matrix(0.282005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282005,0.000000,0.000000,0.250000,0,0);}
.m49_c00405{transform:matrix(0.282198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282198,0.000000,0.000000,0.250000,0,0);}
.m25_c00405{transform:matrix(0.282980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282980,0.000000,0.000000,0.250000,0,0);}
.mf4_c00405{transform:matrix(0.283157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283157,0.000000,0.000000,0.250000,0,0);}
.me8_c00405{transform:matrix(0.283572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283572,0.000000,0.000000,0.250000,0,0);}
.m2f_c00405{transform:matrix(0.285246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285246,0.000000,0.000000,0.250000,0,0);}
.mbc_c00405{transform:matrix(0.285458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285458,0.000000,0.000000,0.250000,0,0);}
.m8c_c00405{transform:matrix(0.286107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286107,0.000000,0.000000,0.250000,0,0);}
.m1d_c00405{transform:matrix(0.286765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286765,0.000000,0.000000,0.250000,0,0);}
.m89_c00405{transform:matrix(0.287317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287317,0.000000,0.000000,0.250000,0,0);}
.m2_c00405{transform:matrix(0.288034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288034,0.000000,0.000000,0.250000,0,0);}
.mbd_c00405{transform:matrix(0.288338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288338,0.000000,0.000000,0.250000,0,0);}
.m1a_c00405{transform:matrix(0.288411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288411,0.000000,0.000000,0.250000,0,0);}
.mce_c00405{transform:matrix(0.288563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288563,0.000000,0.000000,0.250000,0,0);}
.m81_c00405{transform:matrix(0.288637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288637,0.000000,0.000000,0.250000,0,0);}
.m8b_c00405{transform:matrix(0.290582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290582,0.000000,0.000000,0.250000,0,0);}
.mb_c00405{transform:matrix(0.291216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291216,0.000000,0.000000,0.250000,0,0);}
.m6d_c00405{transform:matrix(0.291244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291244,0.000000,0.000000,0.250000,0,0);}
.m69_c00405{transform:matrix(0.291306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291306,0.000000,0.000000,0.250000,0,0);}
.m7d_c00405{transform:matrix(0.291403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291403,0.000000,0.000000,0.250000,0,0);}
.m5a_c00405{transform:matrix(0.292300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292300,0.000000,0.000000,0.250000,0,0);}
.m55_c00405{transform:matrix(0.293087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293087,0.000000,0.000000,0.250000,0,0);}
.mdc_c00405{transform:matrix(0.293088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293088,0.000000,0.000000,0.250000,0,0);}
.m35_c00405{transform:matrix(0.293275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293275,0.000000,0.000000,0.250000,0,0);}
.m9b_c00405{transform:matrix(0.293392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293392,0.000000,0.000000,0.250000,0,0);}
.m16_c00405{transform:matrix(0.294104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294104,0.000000,0.000000,0.250000,0,0);}
.mda_c00405{transform:matrix(0.294520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294520,0.000000,0.000000,0.250000,0,0);}
.m7f_c00405{transform:matrix(0.294757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294757,0.000000,0.000000,0.250000,0,0);}
.mad_c00405{transform:matrix(0.295087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295087,0.000000,0.000000,0.250000,0,0);}
.m34_c00405{transform:matrix(0.296603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296603,0.000000,0.000000,0.250000,0,0);}
.ma6_c00405{transform:matrix(0.296668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296668,0.000000,0.000000,0.250000,0,0);}
.m15_c00405{transform:matrix(0.298213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298213,0.000000,0.000000,0.250000,0,0);}
.m82_c00405{transform:matrix(0.298469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298469,0.000000,0.000000,0.250000,0,0);}
.m80_c00405{transform:matrix(0.298512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298512,0.000000,0.000000,0.250000,0,0);}
.m19_c00405{transform:matrix(0.299310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299310,0.000000,0.000000,0.250000,0,0);}
.m9f_c00405{transform:matrix(0.299477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299477,0.000000,0.000000,0.250000,0,0);}
.m7c_c00405{transform:matrix(0.301141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301141,0.000000,0.000000,0.250000,0,0);}
.m88_c00405{transform:matrix(0.301420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301420,0.000000,0.000000,0.250000,0,0);}
.m2e_c00405{transform:matrix(0.302012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302012,0.000000,0.000000,0.250000,0,0);}
.m12_c00405{transform:matrix(0.302648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302648,0.000000,0.000000,0.250000,0,0);}
.m98_c00405{transform:matrix(0.303193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303193,0.000000,0.000000,0.250000,0,0);}
.mb5_c00405{transform:matrix(0.303195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303195,0.000000,0.000000,0.250000,0,0);}
.m4a_c00405{transform:matrix(0.303246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303246,0.000000,0.000000,0.250000,0,0);}
.m1e_c00405{transform:matrix(0.303765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303765,0.000000,0.000000,0.250000,0,0);}
.m6e_c00405{transform:matrix(0.303855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303855,0.000000,0.000000,0.250000,0,0);}
.mdd_c00405{transform:matrix(0.304190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304190,0.000000,0.000000,0.250000,0,0);}
.m3f_c00405{transform:matrix(0.304809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304809,0.000000,0.000000,0.250000,0,0);}
.me1_c00405{transform:matrix(0.304815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304815,0.000000,0.000000,0.250000,0,0);}
.mcb_c00405{transform:matrix(0.304871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304871,0.000000,0.000000,0.250000,0,0);}
.m4b_c00405{transform:matrix(0.305788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305788,0.000000,0.000000,0.250000,0,0);}
.m3a_c00405{transform:matrix(0.306072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306072,0.000000,0.000000,0.250000,0,0);}
.m107_c00405{transform:matrix(0.306364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306364,0.000000,0.000000,0.250000,0,0);}
.m109_c00405{transform:matrix(0.306925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306925,0.000000,0.000000,0.250000,0,0);}
.m6b_c00405{transform:matrix(0.307102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307102,0.000000,0.000000,0.250000,0,0);}
.mc6_c00405{transform:matrix(0.307388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307388,0.000000,0.000000,0.250000,0,0);}
.m3e_c00405{transform:matrix(0.308337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308337,0.000000,0.000000,0.250000,0,0);}
.m7b_c00405{transform:matrix(0.309036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309036,0.000000,0.000000,0.250000,0,0);}
.m2a_c00405{transform:matrix(0.310328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310328,0.000000,0.000000,0.250000,0,0);}
.m11_c00405{transform:matrix(0.311412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311412,0.000000,0.000000,0.250000,0,0);}
.mbb_c00405{transform:matrix(0.311415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311415,0.000000,0.000000,0.250000,0,0);}
.mc0_c00405{transform:matrix(0.311552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311552,0.000000,0.000000,0.250000,0,0);}
.m7e_c00405{transform:matrix(0.311879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311879,0.000000,0.000000,0.250000,0,0);}
.mb1_c00405{transform:matrix(0.312085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312085,0.000000,0.000000,0.250000,0,0);}
.m47_c00405{transform:matrix(0.312438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312438,0.000000,0.000000,0.250000,0,0);}
.m13_c00405{transform:matrix(0.312526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312526,0.000000,0.000000,0.250000,0,0);}
.m17_c00405{transform:matrix(0.312641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312641,0.000000,0.000000,0.250000,0,0);}
.mb4_c00405{transform:matrix(0.313025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313025,0.000000,0.000000,0.250000,0,0);}
.m45_c00405{transform:matrix(0.313582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313582,0.000000,0.000000,0.250000,0,0);}
.m7_c00405{transform:matrix(0.313957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313957,0.000000,0.000000,0.250000,0,0);}
.mc5_c00405{transform:matrix(0.314004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314004,0.000000,0.000000,0.250000,0,0);}
.mde_c00405{transform:matrix(0.314576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314576,0.000000,0.000000,0.250000,0,0);}
.m53_c00405{transform:matrix(0.314636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314636,0.000000,0.000000,0.250000,0,0);}
.mca_c00405{transform:matrix(0.314863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314863,0.000000,0.000000,0.250000,0,0);}
.m46_c00405{transform:matrix(0.316253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316253,0.000000,0.000000,0.250000,0,0);}
.m86_c00405{transform:matrix(0.316650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316650,0.000000,0.000000,0.250000,0,0);}
.me9_c00405{transform:matrix(0.317209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317209,0.000000,0.000000,0.250000,0,0);}
.m22_c00405{transform:matrix(0.317277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317277,0.000000,0.000000,0.250000,0,0);}
.ma2_c00405{transform:matrix(0.318882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318882,0.000000,0.000000,0.250000,0,0);}
.m106_c00405{transform:matrix(0.319180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319180,0.000000,0.000000,0.250000,0,0);}
.m3c_c00405{transform:matrix(0.319749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319749,0.000000,0.000000,0.250000,0,0);}
.m8d_c00405{transform:matrix(0.319853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319853,0.000000,0.000000,0.250000,0,0);}
.m85_c00405{transform:matrix(0.320096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320096,0.000000,0.000000,0.250000,0,0);}
.m99_c00405{transform:matrix(0.320376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320376,0.000000,0.000000,0.250000,0,0);}
.m78_c00405{transform:matrix(0.320782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320782,0.000000,0.000000,0.250000,0,0);}
.m77_c00405{transform:matrix(0.320983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320983,0.000000,0.000000,0.250000,0,0);}
.m40_c00405{transform:matrix(0.321929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321929,0.000000,0.000000,0.250000,0,0);}
.m7a_c00405{transform:matrix(0.322040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322040,0.000000,0.000000,0.250000,0,0);}
.m68_c00405{transform:matrix(0.322387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322387,0.000000,0.000000,0.250000,0,0);}
.m75_c00405{transform:matrix(0.322805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322805,0.000000,0.000000,0.250000,0,0);}
.m3b_c00405{transform:matrix(0.322882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322882,0.000000,0.000000,0.250000,0,0);}
.m9e_c00405{transform:matrix(0.324143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324143,0.000000,0.000000,0.250000,0,0);}
.m61_c00405{transform:matrix(0.324650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324650,0.000000,0.000000,0.250000,0,0);}
.m64_c00405{transform:matrix(0.325217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325217,0.000000,0.000000,0.250000,0,0);}
.m57_c00405{transform:matrix(0.326449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326449,0.000000,0.000000,0.250000,0,0);}
.m1b_c00405{transform:matrix(0.327514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327514,0.000000,0.000000,0.250000,0,0);}
.mc7_c00405{transform:matrix(0.327773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327773,0.000000,0.000000,0.250000,0,0);}
.m54_c00405{transform:matrix(0.327797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327797,0.000000,0.000000,0.250000,0,0);}
.m10a_c00405{transform:matrix(0.328263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328263,0.000000,0.000000,0.250000,0,0);}
.m65_c00405{transform:matrix(0.329974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329974,0.000000,0.000000,0.250000,0,0);}
.me4_c00405{transform:matrix(0.330776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330776,0.000000,0.000000,0.250000,0,0);}
.m18_c00405{transform:matrix(0.331143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331143,0.000000,0.000000,0.250000,0,0);}
.ma5_c00405{transform:matrix(0.332322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332322,0.000000,0.000000,0.250000,0,0);}
.m8f_c00405{transform:matrix(0.332600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332600,0.000000,0.000000,0.250000,0,0);}
.m32_c00405{transform:matrix(0.333036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333036,0.000000,0.000000,0.250000,0,0);}
.mdb_c00405{transform:matrix(0.333814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333814,0.000000,0.000000,0.250000,0,0);}
.m31_c00405{transform:matrix(0.335433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335433,0.000000,0.000000,0.250000,0,0);}
.mbf_c00405{transform:matrix(0.335665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335665,0.000000,0.000000,0.250000,0,0);}
.m87_c00405{transform:matrix(0.336901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336901,0.000000,0.000000,0.250000,0,0);}
.m8_c00405{transform:matrix(0.337918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337918,0.000000,0.000000,0.250000,0,0);}
.med_c00405{transform:matrix(0.338009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338009,0.000000,0.000000,0.250000,0,0);}
.mdf_c00405{transform:matrix(0.338051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338051,0.000000,0.000000,0.250000,0,0);}
.m26_c00405{transform:matrix(0.339082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339082,0.000000,0.000000,0.250000,0,0);}
.m103_c00405{transform:matrix(0.339649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339649,0.000000,0.000000,0.250000,0,0);}
.m36_c00405{transform:matrix(0.339875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339875,0.000000,0.000000,0.250000,0,0);}
.m59_c00405{transform:matrix(0.340194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340194,0.000000,0.000000,0.250000,0,0);}
.m39_c00405{transform:matrix(0.341029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341029,0.000000,0.000000,0.250000,0,0);}
.ma1_c00405{transform:matrix(0.341354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341354,0.000000,0.000000,0.250000,0,0);}
.mfd_c00405{transform:matrix(0.341775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341775,0.000000,0.000000,0.250000,0,0);}
.mba_c00405{transform:matrix(0.341893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341893,0.000000,0.000000,0.250000,0,0);}
.maf_c00405{transform:matrix(0.343170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343170,0.000000,0.000000,0.250000,0,0);}
.mc4_c00405{transform:matrix(0.343403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343403,0.000000,0.000000,0.250000,0,0);}
.m8a_c00405{transform:matrix(0.344637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344637,0.000000,0.000000,0.250000,0,0);}
.m58_c00405{transform:matrix(0.345009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345009,0.000000,0.000000,0.250000,0,0);}
.md_c00405{transform:matrix(0.345430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345430,0.000000,0.000000,0.250000,0,0);}
.me5_c00405{transform:matrix(0.347642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347642,0.000000,0.000000,0.250000,0,0);}
.m73_c00405{transform:matrix(0.347758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347758,0.000000,0.000000,0.250000,0,0);}
.m108_c00405{transform:matrix(0.349373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349373,0.000000,0.000000,0.250000,0,0);}
.m9d_c00405{transform:matrix(0.349607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349607,0.000000,0.000000,0.250000,0,0);}
.mab_c00405{transform:matrix(0.351265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351265,0.000000,0.000000,0.250000,0,0);}
.ma_c00405{transform:matrix(0.354389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354389,0.000000,0.000000,0.250000,0,0);}
.me6_c00405{transform:matrix(0.356042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356042,0.000000,0.000000,0.250000,0,0);}
.m5b_c00405{transform:matrix(0.356182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356182,0.000000,0.000000,0.250000,0,0);}
.mc3_c00405{transform:matrix(0.357804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357804,0.000000,0.000000,0.250000,0,0);}
.ma7_c00405{transform:matrix(0.357892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357892,0.000000,0.000000,0.250000,0,0);}
.mb9_c00405{transform:matrix(0.358565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358565,0.000000,0.000000,0.250000,0,0);}
.mb7_c00405{transform:matrix(0.359987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359987,0.000000,0.000000,0.250000,0,0);}
.m2c_c00405{transform:matrix(0.360962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360962,0.000000,0.000000,0.250000,0,0);}
.md6_c00405{transform:matrix(0.361321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361321,0.000000,0.000000,0.250000,0,0);}
.mac_c00405{transform:matrix(0.362171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362171,0.000000,0.000000,0.250000,0,0);}
.m6a_c00405{transform:matrix(0.362344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362344,0.000000,0.000000,0.250000,0,0);}
.m43_c00405{transform:matrix(0.362373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362373,0.000000,0.000000,0.250000,0,0);}
.m28_c00405{transform:matrix(0.362384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362384,0.000000,0.000000,0.250000,0,0);}
.mb8_c00405{transform:matrix(0.362707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362707,0.000000,0.000000,0.250000,0,0);}
.m20_c00405{transform:matrix(0.364520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364520,0.000000,0.000000,0.250000,0,0);}
.m90_c00405{transform:matrix(0.366089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366089,0.000000,0.000000,0.250000,0,0);}
.me7_c00405{transform:matrix(0.366663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366663,0.000000,0.000000,0.250000,0,0);}
.ma0_c00405{transform:matrix(0.368147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368147,0.000000,0.000000,0.250000,0,0);}
.m14_c00405{transform:matrix(0.369183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369183,0.000000,0.000000,0.250000,0,0);}
.m41_c00405{transform:matrix(0.371297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371297,0.000000,0.000000,0.250000,0,0);}
.m102_c00405{transform:matrix(0.372653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372653,0.000000,0.000000,0.250000,0,0);}
.m24_c00405{transform:matrix(0.375520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375520,0.000000,0.000000,0.250000,0,0);}
.me_c00405{transform:matrix(0.375687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375687,0.000000,0.000000,0.250000,0,0);}
.mf0_c00405{transform:matrix(0.380635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380635,0.000000,0.000000,0.250000,0,0);}
.m2d_c00405{transform:matrix(0.382109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382109,0.000000,0.000000,0.250000,0,0);}
.mf1_c00405{transform:matrix(0.384266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384266,0.000000,0.000000,0.250000,0,0);}
.m56_c00405{transform:matrix(0.388697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388697,0.000000,0.000000,0.250000,0,0);}
.m79_c00405{transform:matrix(0.389162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389162,0.000000,0.000000,0.250000,0,0);}
.md7_c00405{transform:matrix(0.393243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393243,0.000000,0.000000,0.250000,0,0);}
.m6f_c00405{transform:matrix(0.395545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395545,0.000000,0.000000,0.250000,0,0);}
.m91_c00405{transform:matrix(0.395935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395935,0.000000,0.000000,0.250000,0,0);}
.md1_c00405{transform:matrix(0.399479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399479,0.000000,0.000000,0.250000,0,0);}
.mc9_c00405{transform:matrix(0.400696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400696,0.000000,0.000000,0.250000,0,0);}
.m74_c00405{transform:matrix(0.402884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402884,0.000000,0.000000,0.250000,0,0);}
.m6c_c00405{transform:matrix(0.406255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406255,0.000000,0.000000,0.250000,0,0);}
.mf_c00405{transform:matrix(0.407171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407171,0.000000,0.000000,0.250000,0,0);}
.ma9_c00405{transform:matrix(0.439171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439171,0.000000,0.000000,0.250000,0,0);}
.m6_c00405{transform:matrix(0.446086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446086,0.000000,0.000000,0.250000,0,0);}
.m83_c00405{transform:matrix(0.447926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447926,0.000000,0.000000,0.250000,0,0);}
.m9_c00405{transform:matrix(0.456063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456063,0.000000,0.000000,0.250000,0,0);}
.mb3_c00405{transform:matrix(0.462814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462814,0.000000,0.000000,0.250000,0,0);}
.m97_c00405{transform:matrix(0.464508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464508,0.000000,0.000000,0.250000,0,0);}
.m10_c00405{transform:matrix(0.514470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514470,0.000000,0.000000,0.250000,0,0);}
.m27_c00405{transform:matrix(0.683882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.683882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.683882,0.000000,0.000000,0.250000,0,0);}
.v2_c00405{vertical-align:-1.425600px;}
.v0_c00405{vertical-align:0.000000px;}
.v3_c00405{vertical-align:1.405800px;}
.v1_c00405{vertical-align:18.532800px;}
.ls26_c00405{letter-spacing:-3.229380px;}
.ls4_c00405{letter-spacing:-2.993767px;}
.ls8_c00405{letter-spacing:-2.508667px;}
.ls18_c00405{letter-spacing:-2.432430px;}
.ls11_c00405{letter-spacing:-2.418577px;}
.ls16_c00405{letter-spacing:-2.411640px;}
.ls20_c00405{letter-spacing:-2.328480px;}
.ls7_c00405{letter-spacing:-2.300806px;}
.ls1f_c00405{letter-spacing:-2.224530px;}
.lsa_c00405{letter-spacing:-2.217600px;}
.ls1b_c00405{letter-spacing:-2.051280px;}
.ls23_c00405{letter-spacing:-1.770402px;}
.ls27_c00405{letter-spacing:-1.656270px;}
.ls1d_c00405{letter-spacing:-1.143450px;}
.ls21_c00405{letter-spacing:-1.025640px;}
.ls14_c00405{letter-spacing:-0.422890px;}
.ls19_c00405{letter-spacing:-0.123849px;}
.ls3_c00405{letter-spacing:0.000000px;}
.ls6_c00405{letter-spacing:0.673210px;}
.ls10_c00405{letter-spacing:1.643400px;}
.ls1_c00405{letter-spacing:1.709377px;}
.ls9_c00405{letter-spacing:1.722600px;}
.ls22_c00405{letter-spacing:1.870749px;}
.ls28_c00405{letter-spacing:1.996988px;}
.ls1a_c00405{letter-spacing:2.244686px;}
.ls1c_c00405{letter-spacing:2.366100px;}
.lsb_c00405{letter-spacing:2.484900px;}
.ls13_c00405{letter-spacing:2.558840px;}
.ls1e_c00405{letter-spacing:2.752200px;}
.ls12_c00405{letter-spacing:3.117915px;}
.lsf_c00405{letter-spacing:3.177900px;}
.lsd_c00405{letter-spacing:3.254099px;}
.ls15_c00405{letter-spacing:3.445200px;}
.ls17_c00405{letter-spacing:3.455110px;}
.ls29_c00405{letter-spacing:3.544200px;}
.ls5_c00405{letter-spacing:3.583810px;}
.ls25_c00405{letter-spacing:3.643200px;}
.ls0_c00405{letter-spacing:21.287915px;}
.lse_c00405{letter-spacing:48.470598px;}
.lsc_c00405{letter-spacing:49.896198px;}
.ls2_c00405{letter-spacing:55.598598px;}
.ls24_c00405{letter-spacing:57.024198px;}
.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;}
}
.ws8_c00405{word-spacing:-30.023516px;}
.ws0_c00405{word-spacing:-17.919050px;}
.ws6_c00405{word-spacing:-17.374500px;}
.ws4_c00405{word-spacing:-5.504402px;}
.ws1_c00405{word-spacing:-2.579671px;}
.ws5_c00405{word-spacing:-0.413424px;}
.ws9_c00405{word-spacing:0.000000px;}
.ws3_c00405{word-spacing:4.300643px;}
.ws2_c00405{word-spacing:6.235707px;}
.ws7_c00405{word-spacing:7.669227px;}
._16_c00405{margin-left:-15.984639px;}
._14_c00405{margin-left:-12.648636px;}
._7_c00405{margin-left:-10.035909px;}
._0_c00405{margin-left:-6.307444px;}
._6_c00405{margin-left:-2.508352px;}
._1e_c00405{margin-left:-1.080486px;}
._1a_c00405{width:1.576817px;}
._19_c00405{width:4.157301px;}
._e_c00405{width:5.949218px;}
._18_c00405{width:8.263728px;}
._3_c00405{width:9.676370px;}
._1f_c00405{width:11.257202px;}
._a_c00405{width:12.543399px;}
._5_c00405{width:13.618539px;}
._c_c00405{width:16.198875px;}
._13_c00405{width:18.466272px;}
._1b_c00405{width:19.710834px;}
._1_c00405{width:21.287717px;}
._8_c00405{width:22.721435px;}
._10_c00405{width:25.015073px;}
._b_c00405{width:28.384037px;}
._17_c00405{width:32.527440px;}
._15_c00405{width:35.094076px;}
._9_c00405{width:37.128427px;}
._1c_c00405{width:38.529785px;}
._2_c00405{width:41.428789px;}
._12_c00405{width:42.728301px;}
._4_c00405{width:46.747695px;}
._d_c00405{width:51.119932px;}
._1d_c00405{width:77.814000px;}
._f_c00405{width:231.163702px;}
._20_c00405{width:247.430986px;}
._11_c00405{width:793.399354px;}
.fc0_c00405{color:transparent;}
.fs2a_c00405{font-size:11.484198px;}
.fs7_c00405{font-size:13.464198px;}
.fs23_c00405{font-size:17.622000px;}
.fs10_c00405{font-size:18.216000px;}
.fs2_c00405{font-size:22.176000px;}
.fs20_c00405{font-size:22.374000px;}
.fsc_c00405{font-size:26.928000px;}
.fs1c_c00405{font-size:27.522000px;}
.fs0_c00405{font-size:27.720000px;}
.fs29_c00405{font-size:28.512000px;}
.fs25_c00405{font-size:29.304000px;}
.fs1f_c00405{font-size:32.670000px;}
.fs12_c00405{font-size:32.868000px;}
.fs1_c00405{font-size:33.264000px;}
.fs13_c00405{font-size:34.056198px;}
.fs9_c00405{font-size:34.452000px;}
.fs16_c00405{font-size:39.600000px;}
.fs1e_c00405{font-size:47.322000px;}
.fsf_c00405{font-size:48.470598px;}
.fsd_c00405{font-size:49.698000px;}
.fse_c00405{font-size:49.896198px;}
.fs22_c00405{font-size:55.044000px;}
.fs6_c00405{font-size:55.598598px;}
.fsa_c00405{font-size:55.836198px;}
.fs3_c00405{font-size:56.628000px;}
.fs26_c00405{font-size:57.024198px;}
.fs1d_c00405{font-size:58.608000px;}
.fsb_c00405{font-size:63.360000px;}
.fs11_c00405{font-size:63.558000px;}
.fs1a_c00405{font-size:64.350000px;}
.fs24_c00405{font-size:66.528000px;}
.fs17_c00405{font-size:67.320000px;}
.fs18_c00405{font-size:68.904000px;}
.fs15_c00405{font-size:69.102198px;}
.fs19_c00405{font-size:69.498000px;}
.fs1b_c00405{font-size:70.884000px;}
.fs5_c00405{font-size:71.676198px;}
.fs27_c00405{font-size:72.864000px;}
.fs21_c00405{font-size:76.032198px;}
.fs8_c00405{font-size:79.200000px;}
.fs4_c00405{font-size:85.536198px;}
.fs14_c00405{font-size:89.496198px;}
.fs28_c00405{font-size:92.268000px;}
.y0_c00405{bottom:0.000000px;}
.y1_c00405{bottom:76.500000px;}
.y35_c00405{bottom:136.764585px;}
.y34_c00405{bottom:141.759135px;}
.y33_c00405{bottom:165.994335px;}
.y32_c00405{bottom:173.473785px;}
.y31_c00405{bottom:239.056335px;}
.y7_c00405{bottom:252.953361px;}
.y30_c00405{bottom:271.845135px;}
.y2f_c00405{bottom:304.277535px;}
.y2e_c00405{bottom:329.220585px;}
.y2c_c00405{bottom:332.071785px;}
.y2d_c00405{bottom:336.704985px;}
.y2a_c00405{bottom:337.066335px;}
.y2b_c00405{bottom:337.417785px;}
.y29_c00405{bottom:346.689135px;}
.y28_c00405{bottom:369.498735px;}
.y27_c00405{bottom:404.425935px;}
.y26_c00405{bottom:436.853385px;}
.y25_c00405{bottom:463.583385px;}
.y24_c00405{bottom:468.221535px;}
.y23_c00405{bottom:468.577935px;}
.y22_c00405{bottom:469.642185px;}
.y6_c00405{bottom:514.192185px;}
.y21_c00405{bottom:526.309785px;}
.y20_c00405{bottom:568.726335px;}
.y1f_c00405{bottom:601.515135px;}
.y1e_c00405{bottom:630.022185px;}
.y1d_c00405{bottom:634.298985px;}
.y1c_c00405{bottom:634.655385px;}
.y1b_c00405{bottom:662.454585px;}
.y18_c00405{bottom:666.736335px;}
.y19_c00405{bottom:667.087785px;}
.y1a_c00405{bottom:672.438735px;}
.y5_c00405{bottom:687.051135px;}
.y17_c00405{bottom:693.466335px;}
.y16_c00405{bottom:699.168735px;}
.y4_c00405{bottom:725.180985px;}
.y15_c00405{bottom:731.239785px;}
.y14_c00405{bottom:763.672185px;}
.y10_c00405{bottom:788.976585px;}
.y12_c00405{bottom:790.758585px;}
.y11_c00405{bottom:795.396735px;}
.y13_c00405{bottom:795.753135px;}
.yf_c00405{bottom:796.104585px;}
.y3_c00405{bottom:822.126735px;}
.ye_c00405{bottom:827.824185px;}
.yd_c00405{bottom:860.974335px;}
.yc_c00405{bottom:894.832335px;}
.yb_c00405{bottom:921.562335px;}
.ya_c00405{bottom:927.259785px;}
.y2_c00405{bottom:1000.326735px;}
.y9_c00405{bottom:1014.577785px;}
.y8_c00405{bottom:1081.937385px;}
.h2d_c00405{height:11.977660px;}
.h9_c00405{height:14.042738px;}
.h24_c00405{height:17.295029px;}
.h12_c00405{height:18.998719px;}
.h20_c00405{height:21.958857px;}
.h4_c00405{height:23.128875px;}
.he_c00405{height:28.085063px;}
.h1c_c00405{height:28.704586px;}
.h2_c00405{height:28.911094px;}
.h2c_c00405{height:29.737125px;}
.h28_c00405{height:30.563156px;}
.h11_c00405{height:32.281418px;}
.h10_c00405{height:33.230868px;}
.h1f_c00405{height:34.073789px;}
.h14_c00405{height:34.280297px;}
.h3_c00405{height:34.693313px;}
.hb_c00405{height:35.932359px;}
.h8_c00405{height:37.028666px;}
.h29_c00405{height:37.978116px;}
.h17_c00405{height:41.301563px;}
.h1e_c00405{height:46.443955px;}
.hf_c00405{height:48.775869px;}
.h22_c00405{height:54.022676px;}
.hc_c00405{height:58.235410px;}
.h5_c00405{height:59.061234px;}
.h1d_c00405{height:61.126313px;}
.hd_c00405{height:62.184375px;}
.h18_c00405{height:66.070898px;}
.h13_c00405{height:66.289008px;}
.h19_c00405{height:67.625508px;}
.h16_c00405{height:67.820028px;}
.h1a_c00405{height:68.174552px;}
.h27_c00405{height:69.386625px;}
.h1b_c00405{height:69.568770px;}
.h26_c00405{height:70.212656px;}
.h7_c00405{height:70.346269px;}
.h2a_c00405{height:71.512031px;}
.h23_c00405{height:74.621444px;}
.h21_c00405{height:76.027244px;}
.h25_c00405{height:79.299207px;}
.ha_c00405{height:82.448438px;}
.h6_c00405{height:83.949101px;}
.h2b_c00405{height:90.555996px;}
.h15_c00405{height:106.368424px;}
.h1_c00405{height:1110.000000px;}
.h0_c00405{height:1263.000000px;}
.w1_c00405{width:775.500000px;}
.w0_c00405{width:892.500000px;}
.x0_c00405{left:0.000000px;}
.x2_c00405{left:20.549085px;}
.x5_c00405{left:22.355835px;}
.x4_c00405{left:39.106635px;}
.x6_c00405{left:54.073059px;}
.x3_c00405{left:55.812885px;}
.x1_c00405{left:58.500000px;}
.x48_c00405{left:77.642385px;}
.xb_c00405{left:78.904635px;}
.x1d_c00405{left:79.929285px;}
.x4e_c00405{left:89.933235px;}
.x64_c00405{left:90.972735px;}
.x57_c00405{left:100.313385px;}
.x3f_c00405{left:110.084685px;}
.xc_c00405{left:111.183585px;}
.x7b_c00405{left:112.752735px;}
.x72_c00405{left:120.875685px;}
.x49_c00405{left:122.043885px;}
.x28_c00405{left:123.142785px;}
.x91_c00405{left:124.375335px;}
.x37_c00405{left:133.409085px;}
.x8b_c00405{left:137.913585px;}
.x73_c00405{left:139.418385px;}
.x5e_c00405{left:142.502235px;}
.x80_c00405{left:144.467385px;}
.x74_c00405{left:149.635185px;}
.x4f_c00405{left:154.604985px;}
.xd_c00405{left:156.094935px;}
.x7f_c00405{left:159.921285px;}
.x89_c00405{left:161.416185px;}
.x1c_c00405{left:163.074435px;}
.x69_c00405{left:165.737535px;}
.xe_c00405{left:166.786935px;}
.x4a_c00405{left:168.633285px;}
.x50_c00405{left:170.232135px;}
.x29_c00405{left:177.271035px;}
.x8c_c00405{left:178.275885px;}
.x65_c00405{left:186.319635px;}
.x7c_c00405{left:187.606635px;}
.x4b_c00405{left:188.992635px;}
.x83_c00405{left:190.730085px;}
.x58_c00405{left:197.427435px;}
.x77_c00405{left:199.036185px;}
.x2a_c00405{left:200.100435px;}
.x5f_c00405{left:201.422085px;}
.x6e_c00405{left:206.421585px;}
.xf_c00405{left:210.173685px;}
.x2b_c00405{left:211.817085px;}
.x92_c00405{left:214.079235px;}
.x5b_c00405{left:219.796485px;}
.x7d_c00405{left:221.509185px;}
.x51_c00405{left:225.949335px;}
.x10_c00405{left:232.468485px;}
.x78_c00405{left:233.507985px;}
.x40_c00405{left:243.576285px;}
.x81_c00405{left:245.105835px;}
.x41_c00405{left:248.981685px;}
.x4c_c00405{left:254.624685px;}
.x5d_c00405{left:264.584085px;}
.x2c_c00405{left:266.707635px;}
.x79_c00405{left:274.409835px;}
.x5c_c00405{left:276.513585px;}
.x8d_c00405{left:280.899285px;}
.x38_c00405{left:287.769885px;}
.x2d_c00405{left:292.789185px;}
.x1e_c00405{left:298.783635px;}
.x84_c00405{left:300.006285px;}
.xa_c00405{left:303.887085px;}
.x2e_c00405{left:309.520185px;}
.x52_c00405{left:317.544135px;}
.x11_c00405{left:320.717085px;}
.x2f_c00405{left:322.241685px;}
.x93_c00405{left:328.246035px;}
.x1f_c00405{left:332.111985px;}
.x75_c00405{left:341.635785px;}
.x12_c00405{left:343.343535px;}
.x30_c00405{left:353.847435px;}
.x42_c00405{left:364.692885px;}
.x53_c00405{left:365.856135px;}
.x85_c00405{left:371.637735px;}
.x60_c00405{left:376.899585px;}
.x44_c00405{left:386.131335px;}
.x13_c00405{left:388.170735px;}
.x59_c00405{left:398.100435px;}
.x20_c00405{left:399.600285px;}
.x14_c00405{left:408.733035px;}
.x54_c00405{left:409.876485px;}
.x39_c00405{left:420.716985px;}
.x15_c00405{left:431.512935px;}
.x6f_c00405{left:441.893085px;}
.x43_c00405{left:443.160285px;}
.x21_c00405{left:452.570235px;}
.x3a_c00405{left:454.154235px;}
.x63_c00405{left:463.777035px;}
.x6a_c00405{left:465.588735px;}
.x66_c00405{left:467.296485px;}
.x22_c00405{left:475.567935px;}
.x16_c00405{left:476.978685px;}
.x4d_c00405{left:478.701285px;}
.x3b_c00405{left:487.150935px;}
.x6b_c00405{left:497.120235px;}
.x45_c00405{left:498.659685px;}
.x7e_c00405{left:503.921535px;}
.x17_c00405{left:509.094285px;}
.x5a_c00405{left:510.712935px;}
.x86_c00405{left:513.737385px;}
.x70_c00405{left:518.652735px;}
.x23_c00405{left:521.167335px;}
.x87_c00405{left:523.543335px;}
.x46_c00405{left:530.691135px;}
.x3c_c00405{left:531.829635px;}
.x82_c00405{left:542.021685px;}
.x7a_c00405{left:543.635385px;}
.x8a_c00405{left:544.640235px;}
.x18_c00405{left:553.317585px;}
.x67_c00405{left:563.093835px;}
.x47_c00405{left:564.365985px;}
.x31_c00405{left:575.637135px;}
.x8e_c00405{left:578.032935px;}
.x19_c00405{left:585.839085px;}
.x8f_c00405{left:594.382785px;}
.x3d_c00405{left:597.872535px;}
.x90_c00405{left:604.708485px;}
.x3e_c00405{left:607.609185px;}
.x61_c00405{left:609.178335px;}
.x24_c00405{left:619.226835px;}
.x32_c00405{left:630.636585px;}
.x25_c00405{left:642.011685px;}
.x88_c00405{left:643.595685px;}
.x62_c00405{left:651.446385px;}
.x33_c00405{left:653.386785px;}
.x26_c00405{left:663.568935px;}
.x55_c00405{left:674.255985px;}
.x7_c00405{left:675.463785px;}
.x34_c00405{left:685.858785px;}
.x8_c00405{left:687.388335px;}
.x1a_c00405{left:697.273485px;}
.x6d_c00405{left:703.248135px;}
.x1b_c00405{left:707.356635px;}
.x9_c00405{left:709.321785px;}
.x68_c00405{left:718.563435px;}
.x35_c00405{left:719.944485px;}
.x27_c00405{left:730.032585px;}
.x76_c00405{left:731.037435px;}
.x36_c00405{left:732.373935px;}
.x56_c00405{left:741.080985px;}
.x6c_c00405{left:754.549935px;}
.x71_c00405{left:763.177785px;}
@media print{
.v2_c00405{vertical-align:-1.267200pt;}
.v0_c00405{vertical-align:0.000000pt;}
.v3_c00405{vertical-align:1.249600pt;}
.v1_c00405{vertical-align:16.473600pt;}
.ls26_c00405{letter-spacing:-2.870560pt;}
.ls4_c00405{letter-spacing:-2.661126pt;}
.ls8_c00405{letter-spacing:-2.229926pt;}
.ls18_c00405{letter-spacing:-2.162160pt;}
.ls11_c00405{letter-spacing:-2.149846pt;}
.ls16_c00405{letter-spacing:-2.143680pt;}
.ls20_c00405{letter-spacing:-2.069760pt;}
.ls7_c00405{letter-spacing:-2.045161pt;}
.ls1f_c00405{letter-spacing:-1.977360pt;}
.lsa_c00405{letter-spacing:-1.971200pt;}
.ls1b_c00405{letter-spacing:-1.823360pt;}
.ls23_c00405{letter-spacing:-1.573691pt;}
.ls27_c00405{letter-spacing:-1.472240pt;}
.ls1d_c00405{letter-spacing:-1.016400pt;}
.ls21_c00405{letter-spacing:-0.911680pt;}
.ls14_c00405{letter-spacing:-0.375902pt;}
.ls19_c00405{letter-spacing:-0.110088pt;}
.ls3_c00405{letter-spacing:0.000000pt;}
.ls6_c00405{letter-spacing:0.598409pt;}
.ls10_c00405{letter-spacing:1.460800pt;}
.ls1_c00405{letter-spacing:1.519447pt;}
.ls9_c00405{letter-spacing:1.531200pt;}
.ls22_c00405{letter-spacing:1.662888pt;}
.ls28_c00405{letter-spacing:1.775101pt;}
.ls1a_c00405{letter-spacing:1.995277pt;}
.ls1c_c00405{letter-spacing:2.103200pt;}
.lsb_c00405{letter-spacing:2.208800pt;}
.ls13_c00405{letter-spacing:2.274525pt;}
.ls1e_c00405{letter-spacing:2.446400pt;}
.ls12_c00405{letter-spacing:2.771480pt;}
.lsf_c00405{letter-spacing:2.824800pt;}
.lsd_c00405{letter-spacing:2.892533pt;}
.ls15_c00405{letter-spacing:3.062400pt;}
.ls17_c00405{letter-spacing:3.071209pt;}
.ls29_c00405{letter-spacing:3.150400pt;}
.ls5_c00405{letter-spacing:3.185609pt;}
.ls25_c00405{letter-spacing:3.238400pt;}
.ls0_c00405{letter-spacing:18.922591pt;}
.lse_c00405{letter-spacing:43.084976pt;}
.lsc_c00405{letter-spacing:44.352176pt;}
.ls2_c00405{letter-spacing:49.420976pt;}
.ls24_c00405{letter-spacing:50.688176pt;}
.ws8_c00405{word-spacing:-26.687570pt;}
.ws0_c00405{word-spacing:-15.928044pt;}
.ws6_c00405{word-spacing:-15.444000pt;}
.ws4_c00405{word-spacing:-4.892802pt;}
.ws1_c00405{word-spacing:-2.293040pt;}
.ws5_c00405{word-spacing:-0.367488pt;}
.ws9_c00405{word-spacing:0.000000pt;}
.ws3_c00405{word-spacing:3.822793pt;}
.ws2_c00405{word-spacing:5.542851pt;}
.ws7_c00405{word-spacing:6.817091pt;}
._16_c00405{margin-left:-14.208568pt;}
._14_c00405{margin-left:-11.243232pt;}
._7_c00405{margin-left:-8.920808pt;}
._0_c00405{margin-left:-5.606617pt;}
._6_c00405{margin-left:-2.229646pt;}
._1e_c00405{margin-left:-0.960432pt;}
._1a_c00405{width:1.401615pt;}
._19_c00405{width:3.695379pt;}
._e_c00405{width:5.288194pt;}
._18_c00405{width:7.345536pt;}
._3_c00405{width:8.601218pt;}
._1f_c00405{width:10.006402pt;}
._a_c00405{width:11.149688pt;}
._5_c00405{width:12.105368pt;}
._c_c00405{width:14.399000pt;}
._13_c00405{width:16.414464pt;}
._1b_c00405{width:17.520741pt;}
._1_c00405{width:18.922415pt;}
._8_c00405{width:20.196831pt;}
._10_c00405{width:22.235620pt;}
._b_c00405{width:25.230255pt;}
._17_c00405{width:28.913280pt;}
._15_c00405{width:31.194734pt;}
._9_c00405{width:33.003046pt;}
._1c_c00405{width:34.248698pt;}
._2_c00405{width:36.825590pt;}
._12_c00405{width:37.980712pt;}
._4_c00405{width:41.553507pt;}
._d_c00405{width:45.439939pt;}
._1d_c00405{width:69.168000pt;}
._f_c00405{width:205.478846pt;}
._20_c00405{width:219.938654pt;}
._11_c00405{width:705.243870pt;}
.fs2a_c00405{font-size:10.208176pt;}
.fs7_c00405{font-size:11.968176pt;}
.fs23_c00405{font-size:15.664000pt;}
.fs10_c00405{font-size:16.192000pt;}
.fs2_c00405{font-size:19.712000pt;}
.fs20_c00405{font-size:19.888000pt;}
.fsc_c00405{font-size:23.936000pt;}
.fs1c_c00405{font-size:24.464000pt;}
.fs0_c00405{font-size:24.640000pt;}
.fs29_c00405{font-size:25.344000pt;}
.fs25_c00405{font-size:26.048000pt;}
.fs1f_c00405{font-size:29.040000pt;}
.fs12_c00405{font-size:29.216000pt;}
.fs1_c00405{font-size:29.568000pt;}
.fs13_c00405{font-size:30.272176pt;}
.fs9_c00405{font-size:30.624000pt;}
.fs16_c00405{font-size:35.200000pt;}
.fs1e_c00405{font-size:42.064000pt;}
.fsf_c00405{font-size:43.084976pt;}
.fsd_c00405{font-size:44.176000pt;}
.fse_c00405{font-size:44.352176pt;}
.fs22_c00405{font-size:48.928000pt;}
.fs6_c00405{font-size:49.420976pt;}
.fsa_c00405{font-size:49.632176pt;}
.fs3_c00405{font-size:50.336000pt;}
.fs26_c00405{font-size:50.688176pt;}
.fs1d_c00405{font-size:52.096000pt;}
.fsb_c00405{font-size:56.320000pt;}
.fs11_c00405{font-size:56.496000pt;}
.fs1a_c00405{font-size:57.200000pt;}
.fs24_c00405{font-size:59.136000pt;}
.fs17_c00405{font-size:59.840000pt;}
.fs18_c00405{font-size:61.248000pt;}
.fs15_c00405{font-size:61.424176pt;}
.fs19_c00405{font-size:61.776000pt;}
.fs1b_c00405{font-size:63.008000pt;}
.fs5_c00405{font-size:63.712176pt;}
.fs27_c00405{font-size:64.768000pt;}
.fs21_c00405{font-size:67.584176pt;}
.fs8_c00405{font-size:70.400000pt;}
.fs4_c00405{font-size:76.032176pt;}
.fs14_c00405{font-size:79.552176pt;}
.fs28_c00405{font-size:82.016000pt;}
.y0_c00405{bottom:0.000000pt;}
.y1_c00405{bottom:68.000000pt;}
.y35_c00405{bottom:121.568520pt;}
.y34_c00405{bottom:126.008120pt;}
.y33_c00405{bottom:147.550520pt;}
.y32_c00405{bottom:154.198920pt;}
.y31_c00405{bottom:212.494520pt;}
.y7_c00405{bottom:224.847432pt;}
.y30_c00405{bottom:241.640120pt;}
.y2f_c00405{bottom:270.468920pt;}
.y2e_c00405{bottom:292.640520pt;}
.y2c_c00405{bottom:295.174920pt;}
.y2d_c00405{bottom:299.293320pt;}
.y2a_c00405{bottom:299.614520pt;}
.y2b_c00405{bottom:299.926920pt;}
.y29_c00405{bottom:308.168120pt;}
.y28_c00405{bottom:328.443320pt;}
.y27_c00405{bottom:359.489720pt;}
.y26_c00405{bottom:388.314120pt;}
.y25_c00405{bottom:412.074120pt;}
.y24_c00405{bottom:416.196920pt;}
.y23_c00405{bottom:416.513720pt;}
.y22_c00405{bottom:417.459720pt;}
.y6_c00405{bottom:457.059720pt;}
.y21_c00405{bottom:467.830920pt;}
.y20_c00405{bottom:505.534520pt;}
.y1f_c00405{bottom:534.680120pt;}
.y1e_c00405{bottom:560.019720pt;}
.y1d_c00405{bottom:563.821320pt;}
.y1c_c00405{bottom:564.138120pt;}
.y1b_c00405{bottom:588.848520pt;}
.y18_c00405{bottom:592.654520pt;}
.y19_c00405{bottom:592.966920pt;}
.y1a_c00405{bottom:597.723320pt;}
.y5_c00405{bottom:610.712120pt;}
.y17_c00405{bottom:616.414520pt;}
.y16_c00405{bottom:621.483320pt;}
.y4_c00405{bottom:644.605320pt;}
.y15_c00405{bottom:649.990920pt;}
.y14_c00405{bottom:678.819720pt;}
.y10_c00405{bottom:701.312520pt;}
.y12_c00405{bottom:702.896520pt;}
.y11_c00405{bottom:707.019320pt;}
.y13_c00405{bottom:707.336120pt;}
.yf_c00405{bottom:707.648520pt;}
.y3_c00405{bottom:730.779320pt;}
.ye_c00405{bottom:735.843720pt;}
.yd_c00405{bottom:765.310520pt;}
.yc_c00405{bottom:795.406520pt;}
.yb_c00405{bottom:819.166520pt;}
.ya_c00405{bottom:824.230920pt;}
.y2_c00405{bottom:889.179320pt;}
.y9_c00405{bottom:901.846920pt;}
.y8_c00405{bottom:961.722120pt;}
.h2d_c00405{height:10.646809pt;}
.h9_c00405{height:12.482434pt;}
.h24_c00405{height:15.373359pt;}
.h12_c00405{height:16.887750pt;}
.h20_c00405{height:19.518984pt;}
.h4_c00405{height:20.559000pt;}
.he_c00405{height:24.964500pt;}
.h1c_c00405{height:25.515188pt;}
.h2_c00405{height:25.698750pt;}
.h2c_c00405{height:26.433000pt;}
.h28_c00405{height:27.167250pt;}
.h11_c00405{height:28.694594pt;}
.h10_c00405{height:29.538549pt;}
.h1f_c00405{height:30.287813pt;}
.h14_c00405{height:30.471375pt;}
.h3_c00405{height:30.838500pt;}
.hb_c00405{height:31.939875pt;}
.h8_c00405{height:32.914370pt;}
.h29_c00405{height:33.758325pt;}
.h17_c00405{height:36.712500pt;}
.h1e_c00405{height:41.283516pt;}
.hf_c00405{height:43.356328pt;}
.h22_c00405{height:48.020156pt;}
.hc_c00405{height:51.764809pt;}
.h5_c00405{height:52.498875pt;}
.h1d_c00405{height:54.334500pt;}
.hd_c00405{height:55.275000pt;}
.h18_c00405{height:58.729688pt;}
.h13_c00405{height:58.923563pt;}
.h19_c00405{height:60.111562pt;}
.h16_c00405{height:60.284470pt;}
.h1a_c00405{height:60.599602pt;}
.h27_c00405{height:61.677000pt;}
.h1b_c00405{height:61.838906pt;}
.h26_c00405{height:62.411250pt;}
.h7_c00405{height:62.530016pt;}
.h2a_c00405{height:63.566250pt;}
.h23_c00405{height:66.330173pt;}
.h21_c00405{height:67.579773pt;}
.h25_c00405{height:70.488184pt;}
.ha_c00405{height:73.287500pt;}
.h6_c00405{height:74.621423pt;}
.h2b_c00405{height:80.494219pt;}
.h15_c00405{height:94.549710pt;}
.h1_c00405{height:986.666667pt;}
.h0_c00405{height:1122.666667pt;}
.w1_c00405{width:689.333333pt;}
.w0_c00405{width:793.333333pt;}
.x0_c00405{left:0.000000pt;}
.x2_c00405{left:18.265853pt;}
.x5_c00405{left:19.871853pt;}
.x4_c00405{left:34.761453pt;}
.x6_c00405{left:48.064941pt;}
.x3_c00405{left:49.611453pt;}
.x1_c00405{left:52.000000pt;}
.x48_c00405{left:69.015453pt;}
.xb_c00405{left:70.137453pt;}
.x1d_c00405{left:71.048253pt;}
.x4e_c00405{left:79.940653pt;}
.x64_c00405{left:80.864653pt;}
.x57_c00405{left:89.167453pt;}
.x3f_c00405{left:97.853053pt;}
.xc_c00405{left:98.829853pt;}
.x7b_c00405{left:100.224653pt;}
.x72_c00405{left:107.445053pt;}
.x49_c00405{left:108.483453pt;}
.x28_c00405{left:109.460253pt;}
.x91_c00405{left:110.555853pt;}
.x37_c00405{left:118.585853pt;}
.x8b_c00405{left:122.589853pt;}
.x73_c00405{left:123.927453pt;}
.x5e_c00405{left:126.668653pt;}
.x80_c00405{left:128.415453pt;}
.x74_c00405{left:133.009053pt;}
.x4f_c00405{left:137.426653pt;}
.xd_c00405{left:138.751053pt;}
.x7f_c00405{left:142.152253pt;}
.x89_c00405{left:143.481053pt;}
.x1c_c00405{left:144.955053pt;}
.x69_c00405{left:147.322253pt;}
.xe_c00405{left:148.255053pt;}
.x4a_c00405{left:149.896253pt;}
.x50_c00405{left:151.317453pt;}
.x29_c00405{left:157.574253pt;}
.x8c_c00405{left:158.467453pt;}
.x65_c00405{left:165.617453pt;}
.x7c_c00405{left:166.761453pt;}
.x4b_c00405{left:167.993453pt;}
.x83_c00405{left:169.537853pt;}
.x58_c00405{left:175.491053pt;}
.x77_c00405{left:176.921053pt;}
.x2a_c00405{left:177.867053pt;}
.x5f_c00405{left:179.041853pt;}
.x6e_c00405{left:183.485853pt;}
.xf_c00405{left:186.821053pt;}
.x2b_c00405{left:188.281853pt;}
.x92_c00405{left:190.292653pt;}
.x5b_c00405{left:195.374653pt;}
.x7d_c00405{left:196.897053pt;}
.x51_c00405{left:200.843853pt;}
.x10_c00405{left:206.638653pt;}
.x78_c00405{left:207.562653pt;}
.x40_c00405{left:216.512253pt;}
.x81_c00405{left:217.871853pt;}
.x41_c00405{left:221.317053pt;}
.x4c_c00405{left:226.333053pt;}
.x5d_c00405{left:235.185853pt;}
.x2c_c00405{left:237.073453pt;}
.x79_c00405{left:243.919853pt;}
.x5c_c00405{left:245.789853pt;}
.x8d_c00405{left:249.688253pt;}
.x38_c00405{left:255.795453pt;}
.x2d_c00405{left:260.257053pt;}
.x1e_c00405{left:265.585453pt;}
.x84_c00405{left:266.672253pt;}
.xa_c00405{left:270.121853pt;}
.x2e_c00405{left:275.129053pt;}
.x52_c00405{left:282.261453pt;}
.x11_c00405{left:285.081853pt;}
.x2f_c00405{left:286.437053pt;}
.x93_c00405{left:291.774253pt;}
.x1f_c00405{left:295.210653pt;}
.x75_c00405{left:303.676253pt;}
.x12_c00405{left:305.194253pt;}
.x30_c00405{left:314.531053pt;}
.x42_c00405{left:324.171453pt;}
.x53_c00405{left:325.205453pt;}
.x85_c00405{left:330.344653pt;}
.x60_c00405{left:335.021853pt;}
.x44_c00405{left:343.227853pt;}
.x13_c00405{left:345.040653pt;}
.x59_c00405{left:353.867053pt;}
.x20_c00405{left:355.200253pt;}
.x14_c00405{left:363.318253pt;}
.x54_c00405{left:364.334653pt;}
.x39_c00405{left:373.970653pt;}
.x15_c00405{left:383.567053pt;}
.x6f_c00405{left:392.793853pt;}
.x43_c00405{left:393.920253pt;}
.x21_c00405{left:402.284653pt;}
.x3a_c00405{left:403.692653pt;}
.x63_c00405{left:412.246253pt;}
.x6a_c00405{left:413.856653pt;}
.x66_c00405{left:415.374653pt;}
.x22_c00405{left:422.727053pt;}
.x16_c00405{left:423.981053pt;}
.x4d_c00405{left:425.512253pt;}
.x3b_c00405{left:433.023053pt;}
.x6b_c00405{left:441.884653pt;}
.x45_c00405{left:443.253053pt;}
.x7e_c00405{left:447.930253pt;}
.x17_c00405{left:452.528253pt;}
.x5a_c00405{left:453.967053pt;}
.x86_c00405{left:456.655453pt;}
.x70_c00405{left:461.024653pt;}
.x23_c00405{left:463.259853pt;}
.x87_c00405{left:465.371853pt;}
.x46_c00405{left:471.725453pt;}
.x3c_c00405{left:472.737453pt;}
.x82_c00405{left:481.797053pt;}
.x7a_c00405{left:483.231453pt;}
.x8a_c00405{left:484.124653pt;}
.x18_c00405{left:491.837853pt;}
.x67_c00405{left:500.527853pt;}
.x47_c00405{left:501.658653pt;}
.x31_c00405{left:511.677453pt;}
.x8e_c00405{left:513.807053pt;}
.x19_c00405{left:520.745853pt;}
.x8f_c00405{left:528.340253pt;}
.x3d_c00405{left:531.442253pt;}
.x90_c00405{left:537.518653pt;}
.x3e_c00405{left:540.097053pt;}
.x61_c00405{left:541.491853pt;}
.x24_c00405{left:550.423853pt;}
.x32_c00405{left:560.565853pt;}
.x25_c00405{left:570.677053pt;}
.x88_c00405{left:572.085053pt;}
.x62_c00405{left:579.063453pt;}
.x33_c00405{left:580.788253pt;}
.x26_c00405{left:589.839053pt;}
.x55_c00405{left:599.338653pt;}
.x7_c00405{left:600.412253pt;}
.x34_c00405{left:609.652253pt;}
.x8_c00405{left:611.011853pt;}
.x1a_c00405{left:619.798653pt;}
.x6d_c00405{left:625.109453pt;}
.x1b_c00405{left:628.761453pt;}
.x9_c00405{left:630.508253pt;}
.x68_c00405{left:638.723053pt;}
.x35_c00405{left:639.950653pt;}
.x27_c00405{left:648.917853pt;}
.x76_c00405{left:649.811053pt;}
.x36_c00405{left:650.999053pt;}
.x56_c00405{left:658.738653pt;}
.x6c_c00405{left:670.711053pt;}
.x71_c00405{left:678.380253pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0c54be46b9450d5a34ceb5c4.woff2')format("woff");}.ff1_c00406{font-family:ff1_c00406;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00406;src:url('chunks/assets/font_8836089741d8e8f8dec637f3.woff2')format("woff");}.ff2_c00406{font-family:ff2_c00406;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00406;src:url('chunks/assets/font_df707c1f0c35cb34b17bd34a.woff2')format("woff");}.ff3_c00406{font-family:ff3_c00406;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00406;src:url('chunks/assets/font_2636ecac969a3effa4a73e0c.woff2')format("woff");}.ff4_c00406{font-family:ff4_c00406;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00406;src:url('chunks/assets/font_f5b14d45f8d604301a2a094b.woff2')format("woff");}.ff5_c00406{font-family:ff5_c00406;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ma7_c00406{transform:matrix(0.022060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.022060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.022060,0.000000,0.000000,0.250000,0,0);}
.m64_c00406{transform:matrix(0.071429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071429,0.000000,0.000000,0.250000,0,0);}
.m26_c00406{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);}
.mb0_c00406{transform:matrix(0.109822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109822,0.000000,0.000000,0.250000,0,0);}
.m7f_c00406{transform:matrix(0.110646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110646,0.000000,0.000000,0.250000,0,0);}
.ma_c00406{transform:matrix(0.116139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116139,0.000000,0.000000,0.250000,0,0);}
.md0_c00406{transform:matrix(0.121690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121690,0.000000,0.000000,0.250000,0,0);}
.mc6_c00406{transform:matrix(0.127229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127229,0.000000,0.000000,0.250000,0,0);}
.ma5_c00406{transform:matrix(0.130948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130948,0.000000,0.000000,0.250000,0,0);}
.m3c_c00406{transform:matrix(0.134138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134138,0.000000,0.000000,0.250000,0,0);}
.m51_c00406{transform:matrix(0.140820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140820,0.000000,0.000000,0.250000,0,0);}
.m62_c00406{transform:matrix(0.144048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144048,0.000000,0.000000,0.250000,0,0);}
.m9c_c00406{transform:matrix(0.144608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144608,0.000000,0.000000,0.250000,0,0);}
.m63_c00406{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.md7_c00406{transform:matrix(0.150417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150417,0.000000,0.000000,0.250000,0,0);}
.m94_c00406{transform:matrix(0.151014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151014,0.000000,0.000000,0.250000,0,0);}
.mf3_c00406{transform:matrix(0.153063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153063,0.000000,0.000000,0.250000,0,0);}
.m45_c00406{transform:matrix(0.154412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154412,0.000000,0.000000,0.250000,0,0);}
.m47_c00406{transform:matrix(0.156249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156249,0.000000,0.000000,0.250000,0,0);}
.m87_c00406{transform:matrix(0.156964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156964,0.000000,0.000000,0.250000,0,0);}
.ma2_c00406{transform:matrix(0.157176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157176,0.000000,0.000000,0.250000,0,0);}
.mce_c00406{transform:matrix(0.157319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157319,0.000000,0.000000,0.250000,0,0);}
.m37_c00406{transform:matrix(0.161703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161703,0.000000,0.000000,0.250000,0,0);}
.mbe_c00406{transform:matrix(0.163875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163875,0.000000,0.000000,0.250000,0,0);}
.m55_c00406{transform:matrix(0.167031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167031,0.000000,0.000000,0.250000,0,0);}
.mb6_c00406{transform:matrix(0.169581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169581,0.000000,0.000000,0.250000,0,0);}
.m86_c00406{transform:matrix(0.177637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177637,0.000000,0.000000,0.250000,0,0);}
.mae_c00406{transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);}
.m25_c00406{transform:matrix(0.183823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183823,0.000000,0.000000,0.250000,0,0);}
.m95_c00406{transform:matrix(0.186976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186976,0.000000,0.000000,0.250000,0,0);}
.m74_c00406{transform:matrix(0.187186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187186,0.000000,0.000000,0.250000,0,0);}
.m8e_c00406{transform:matrix(0.192636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192636,0.000000,0.000000,0.250000,0,0);}
.mba_c00406{transform:matrix(0.192866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192866,0.000000,0.000000,0.250000,0,0);}
.m2c_c00406{transform:matrix(0.199130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199130,0.000000,0.000000,0.250000,0,0);}
.maf_c00406{transform:matrix(0.202380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202380,0.000000,0.000000,0.250000,0,0);}
.m79_c00406{transform:matrix(0.205109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205109,0.000000,0.000000,0.250000,0,0);}
.m46_c00406{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);}
.mb2_c00406{transform:matrix(0.208744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208744,0.000000,0.000000,0.250000,0,0);}
.m43_c00406{transform:matrix(0.209957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209957,0.000000,0.000000,0.250000,0,0);}
.m88_c00406{transform:matrix(0.212815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212815,0.000000,0.000000,0.250000,0,0);}
.m85_c00406{transform:matrix(0.215988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215988,0.000000,0.000000,0.250000,0,0);}
.m48_c00406{transform:matrix(0.217573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217573,0.000000,0.000000,0.250000,0,0);}
.ma6_c00406{transform:matrix(0.217646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217646,0.000000,0.000000,0.250000,0,0);}
.md_c00406{transform:matrix(0.217819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217819,0.000000,0.000000,0.250000,0,0);}
.ma9_c00406{transform:matrix(0.224303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224303,0.000000,0.000000,0.250000,0,0);}
.m2b_c00406{transform:matrix(0.228784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228784,0.000000,0.000000,0.250000,0,0);}
.m93_c00406{transform:matrix(0.230267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230267,0.000000,0.000000,0.250000,0,0);}
.mc0_c00406{transform:matrix(0.234503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234503,0.000000,0.000000,0.250000,0,0);}
.m5d_c00406{transform:matrix(0.241075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241075,0.000000,0.000000,0.250000,0,0);}
.mc2_c00406{transform:matrix(0.245632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245632,0.000000,0.000000,0.250000,0,0);}
.m53_c00406{transform:matrix(0.245876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245876,0.000000,0.000000,0.250000,0,0);}
.m3f_c00406{transform:matrix(0.248408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248408,0.000000,0.000000,0.250000,0,0);}
.m0_c00406{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m65_c00406{transform:matrix(0.254391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254391,0.000000,0.000000,0.250000,0,0);}
.m68_c00406{transform:matrix(0.254705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254705,0.000000,0.000000,0.250000,0,0);}
.m40_c00406{transform:matrix(0.256610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256610,0.000000,0.000000,0.250000,0,0);}
.m98_c00406{transform:matrix(0.257932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257932,0.000000,0.000000,0.250000,0,0);}
.m7d_c00406{transform:matrix(0.258340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258340,0.000000,0.000000,0.250000,0,0);}
.mb1_c00406{transform:matrix(0.258639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258639,0.000000,0.000000,0.250000,0,0);}
.mf0_c00406{transform:matrix(0.258692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258692,0.000000,0.000000,0.250000,0,0);}
.m7e_c00406{transform:matrix(0.259026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259026,0.000000,0.000000,0.250000,0,0);}
.md2_c00406{transform:matrix(0.260100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260100,0.000000,0.000000,0.250000,0,0);}
.mbd_c00406{transform:matrix(0.260387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260387,0.000000,0.000000,0.250000,0,0);}
.m90_c00406{transform:matrix(0.263664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263664,0.000000,0.000000,0.250000,0,0);}
.m12_c00406{transform:matrix(0.264400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264400,0.000000,0.000000,0.250000,0,0);}
.m8b_c00406{transform:matrix(0.264508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264508,0.000000,0.000000,0.250000,0,0);}
.m91_c00406{transform:matrix(0.264566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264566,0.000000,0.000000,0.250000,0,0);}
.m78_c00406{transform:matrix(0.264645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264645,0.000000,0.000000,0.250000,0,0);}
.m71_c00406{transform:matrix(0.267487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267487,0.000000,0.000000,0.250000,0,0);}
.m50_c00406{transform:matrix(0.267685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267685,0.000000,0.000000,0.250000,0,0);}
.mf_c00406{transform:matrix(0.269586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269586,0.000000,0.000000,0.250000,0,0);}
.m73_c00406{transform:matrix(0.269599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269599,0.000000,0.000000,0.250000,0,0);}
.m3b_c00406{transform:matrix(0.270780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270780,0.000000,0.000000,0.250000,0,0);}
.m21_c00406{transform:matrix(0.270864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270864,0.000000,0.000000,0.250000,0,0);}
.mf4_c00406{transform:matrix(0.270959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270959,0.000000,0.000000,0.250000,0,0);}
.m66_c00406{transform:matrix(0.272875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272875,0.000000,0.000000,0.250000,0,0);}
.md5_c00406{transform:matrix(0.274203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274203,0.000000,0.000000,0.250000,0,0);}
.mcf_c00406{transform:matrix(0.277585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277585,0.000000,0.000000,0.250000,0,0);}
.mec_c00406{transform:matrix(0.277732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277732,0.000000,0.000000,0.250000,0,0);}
.m19_c00406{transform:matrix(0.278958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278958,0.000000,0.000000,0.250000,0,0);}
.m13_c00406{transform:matrix(0.279023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279023,0.000000,0.000000,0.250000,0,0);}
.m2_c00406{transform:matrix(0.280106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280106,0.000000,0.000000,0.250000,0,0);}
.m4f_c00406{transform:matrix(0.280281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280281,0.000000,0.000000,0.250000,0,0);}
.m16_c00406{transform:matrix(0.280998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280998,0.000000,0.000000,0.250000,0,0);}
.mb4_c00406{transform:matrix(0.281360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281360,0.000000,0.000000,0.250000,0,0);}
.m6a_c00406{transform:matrix(0.282495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282495,0.000000,0.000000,0.250000,0,0);}
.m4b_c00406{transform:matrix(0.282980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282980,0.000000,0.000000,0.250000,0,0);}
.me3_c00406{transform:matrix(0.283219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283219,0.000000,0.000000,0.250000,0,0);}
.me9_c00406{transform:matrix(0.283572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283572,0.000000,0.000000,0.250000,0,0);}
.mdf_c00406{transform:matrix(0.285246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285246,0.000000,0.000000,0.250000,0,0);}
.m70_c00406{transform:matrix(0.285697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285697,0.000000,0.000000,0.250000,0,0);}
.m34_c00406{transform:matrix(0.286107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286107,0.000000,0.000000,0.250000,0,0);}
.m18_c00406{transform:matrix(0.286502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286502,0.000000,0.000000,0.250000,0,0);}
.m6b_c00406{transform:matrix(0.286782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286782,0.000000,0.000000,0.250000,0,0);}
.me2_c00406{transform:matrix(0.287317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287317,0.000000,0.000000,0.250000,0,0);}
.m6c_c00406{transform:matrix(0.288034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288034,0.000000,0.000000,0.250000,0,0);}
.mf1_c00406{transform:matrix(0.288034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288034,0.000000,0.000000,0.250000,0,0);}
.md3_c00406{transform:matrix(0.288145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288145,0.000000,0.000000,0.250000,0,0);}
.m5f_c00406{transform:matrix(0.288170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288170,0.000000,0.000000,0.250000,0,0);}
.m2d_c00406{transform:matrix(0.288411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288411,0.000000,0.000000,0.250000,0,0);}
.ma1_c00406{transform:matrix(0.288458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288458,0.000000,0.000000,0.250000,0,0);}
.m7a_c00406{transform:matrix(0.288714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288714,0.000000,0.000000,0.250000,0,0);}
.m24_c00406{transform:matrix(0.288746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288746,0.000000,0.000000,0.250000,0,0);}
.mdb_c00406{transform:matrix(0.289577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289577,0.000000,0.000000,0.250000,0,0);}
.m4a_c00406{transform:matrix(0.290014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290014,0.000000,0.000000,0.250000,0,0);}
.m14_c00406{transform:matrix(0.290757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290757,0.000000,0.000000,0.250000,0,0);}
.m4d_c00406{transform:matrix(0.291216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291216,0.000000,0.000000,0.250000,0,0);}
.mdc_c00406{transform:matrix(0.291306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291306,0.000000,0.000000,0.250000,0,0);}
.m3e_c00406{transform:matrix(0.291856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291856,0.000000,0.000000,0.250000,0,0);}
.m84_c00406{transform:matrix(0.292234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292234,0.000000,0.000000,0.250000,0,0);}
.md9_c00406{transform:matrix(0.292273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292273,0.000000,0.000000,0.250000,0,0);}
.ma4_c00406{transform:matrix(0.292300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292300,0.000000,0.000000,0.250000,0,0);}
.m27_c00406{transform:matrix(0.292974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292974,0.000000,0.000000,0.250000,0,0);}
.m1_c00406{transform:matrix(0.293087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293087,0.000000,0.000000,0.250000,0,0);}
.m2a_c00406{transform:matrix(0.293148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293148,0.000000,0.000000,0.250000,0,0);}
.m8_c00406{transform:matrix(0.293266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293266,0.000000,0.000000,0.250000,0,0);}
.m4e_c00406{transform:matrix(0.294104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294104,0.000000,0.000000,0.250000,0,0);}
.m42_c00406{transform:matrix(0.294773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294773,0.000000,0.000000,0.250000,0,0);}
.m99_c00406{transform:matrix(0.296324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296324,0.000000,0.000000,0.250000,0,0);}
.m89_c00406{transform:matrix(0.296417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296417,0.000000,0.000000,0.250000,0,0);}
.m92_c00406{transform:matrix(0.298323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298323,0.000000,0.000000,0.250000,0,0);}
.m57_c00406{transform:matrix(0.298557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298557,0.000000,0.000000,0.250000,0,0);}
.ma0_c00406{transform:matrix(0.298559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298559,0.000000,0.000000,0.250000,0,0);}
.m15_c00406{transform:matrix(0.299770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299770,0.000000,0.000000,0.250000,0,0);}
.m38_c00406{transform:matrix(0.301373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301373,0.000000,0.000000,0.250000,0,0);}
.m1c_c00406{transform:matrix(0.301452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301452,0.000000,0.000000,0.250000,0,0);}
.mcb_c00406{transform:matrix(0.302585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302585,0.000000,0.000000,0.250000,0,0);}
.m5a_c00406{transform:matrix(0.303193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303193,0.000000,0.000000,0.250000,0,0);}
.m28_c00406{transform:matrix(0.304005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304005,0.000000,0.000000,0.250000,0,0);}
.m56_c00406{transform:matrix(0.304190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304190,0.000000,0.000000,0.250000,0,0);}
.m58_c00406{transform:matrix(0.304936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304936,0.000000,0.000000,0.250000,0,0);}
.m1e_c00406{transform:matrix(0.305637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305637,0.000000,0.000000,0.250000,0,0);}
.mac_c00406{transform:matrix(0.306148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306148,0.000000,0.000000,0.250000,0,0);}
.mb7_c00406{transform:matrix(0.307599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307599,0.000000,0.000000,0.250000,0,0);}
.m2f_c00406{transform:matrix(0.308262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308262,0.000000,0.000000,0.250000,0,0);}
.m8a_c00406{transform:matrix(0.308295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308295,0.000000,0.000000,0.250000,0,0);}
.m8c_c00406{transform:matrix(0.309823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309823,0.000000,0.000000,0.250000,0,0);}
.md1_c00406{transform:matrix(0.310650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310650,0.000000,0.000000,0.250000,0,0);}
.m5b_c00406{transform:matrix(0.310683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310683,0.000000,0.000000,0.250000,0,0);}
.m30_c00406{transform:matrix(0.312526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312526,0.000000,0.000000,0.250000,0,0);}
.m6e_c00406{transform:matrix(0.312959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312959,0.000000,0.000000,0.250000,0,0);}
.mef_c00406{transform:matrix(0.313280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313280,0.000000,0.000000,0.250000,0,0);}
.m7b_c00406{transform:matrix(0.313403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313403,0.000000,0.000000,0.250000,0,0);}
.m9d_c00406{transform:matrix(0.314436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314436,0.000000,0.000000,0.250000,0,0);}
.m9f_c00406{transform:matrix(0.314863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314863,0.000000,0.000000,0.250000,0,0);}
.mc3_c00406{transform:matrix(0.315297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315297,0.000000,0.000000,0.250000,0,0);}
.me4_c00406{transform:matrix(0.315469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315469,0.000000,0.000000,0.250000,0,0);}
.md4_c00406{transform:matrix(0.316173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316173,0.000000,0.000000,0.250000,0,0);}
.m72_c00406{transform:matrix(0.316311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316311,0.000000,0.000000,0.250000,0,0);}
.m4_c00406{transform:matrix(0.316687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316687,0.000000,0.000000,0.250000,0,0);}
.me8_c00406{transform:matrix(0.316703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316703,0.000000,0.000000,0.250000,0,0);}
.m8f_c00406{transform:matrix(0.316711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316711,0.000000,0.000000,0.250000,0,0);}
.mea_c00406{transform:matrix(0.317480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317480,0.000000,0.000000,0.250000,0,0);}
.m36_c00406{transform:matrix(0.318028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318028,0.000000,0.000000,0.250000,0,0);}
.mb_c00406{transform:matrix(0.318070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318070,0.000000,0.000000,0.250000,0,0);}
.m52_c00406{transform:matrix(0.318098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318098,0.000000,0.000000,0.250000,0,0);}
.mad_c00406{transform:matrix(0.318496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318496,0.000000,0.000000,0.250000,0,0);}
.mdd_c00406{transform:matrix(0.318533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318533,0.000000,0.000000,0.250000,0,0);}
.mbf_c00406{transform:matrix(0.318601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318601,0.000000,0.000000,0.250000,0,0);}
.me1_c00406{transform:matrix(0.318965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318965,0.000000,0.000000,0.250000,0,0);}
.m6_c00406{transform:matrix(0.319207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319207,0.000000,0.000000,0.250000,0,0);}
.md8_c00406{transform:matrix(0.319853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319853,0.000000,0.000000,0.250000,0,0);}
.me6_c00406{transform:matrix(0.322016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322016,0.000000,0.000000,0.250000,0,0);}
.mab_c00406{transform:matrix(0.322204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322204,0.000000,0.000000,0.250000,0,0);}
.m1d_c00406{transform:matrix(0.322809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322809,0.000000,0.000000,0.250000,0,0);}
.m11_c00406{transform:matrix(0.322815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322815,0.000000,0.000000,0.250000,0,0);}
.m3d_c00406{transform:matrix(0.322882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322882,0.000000,0.000000,0.250000,0,0);}
.m83_c00406{transform:matrix(0.323596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323596,0.000000,0.000000,0.250000,0,0);}
.m54_c00406{transform:matrix(0.325010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325010,0.000000,0.000000,0.250000,0,0);}
.m33_c00406{transform:matrix(0.325229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325229,0.000000,0.000000,0.250000,0,0);}
.me5_c00406{transform:matrix(0.326235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326235,0.000000,0.000000,0.250000,0,0);}
.m39_c00406{transform:matrix(0.326319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326319,0.000000,0.000000,0.250000,0,0);}
.mc_c00406{transform:matrix(0.326358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326358,0.000000,0.000000,0.250000,0,0);}
.m80_c00406{transform:matrix(0.328746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328746,0.000000,0.000000,0.250000,0,0);}
.mf2_c00406{transform:matrix(0.329186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329186,0.000000,0.000000,0.250000,0,0);}
.mc7_c00406{transform:matrix(0.330206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330206,0.000000,0.000000,0.250000,0,0);}
.m4c_c00406{transform:matrix(0.330776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330776,0.000000,0.000000,0.250000,0,0);}
.m1a_c00406{transform:matrix(0.330951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330951,0.000000,0.000000,0.250000,0,0);}
.m9_c00406{transform:matrix(0.332682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332682,0.000000,0.000000,0.250000,0,0);}
.m6d_c00406{transform:matrix(0.333034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333034,0.000000,0.000000,0.250000,0,0);}
.m8d_c00406{transform:matrix(0.333335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333335,0.000000,0.000000,0.250000,0,0);}
.m44_c00406{transform:matrix(0.333449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333449,0.000000,0.000000,0.250000,0,0);}
.mb9_c00406{transform:matrix(0.333767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333767,0.000000,0.000000,0.250000,0,0);}
.m20_c00406{transform:matrix(0.334425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334425,0.000000,0.000000,0.250000,0,0);}
.m7c_c00406{transform:matrix(0.334936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334936,0.000000,0.000000,0.250000,0,0);}
.me_c00406{transform:matrix(0.335592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335592,0.000000,0.000000,0.250000,0,0);}
.m1b_c00406{transform:matrix(0.336901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336901,0.000000,0.000000,0.250000,0,0);}
.mee_c00406{transform:matrix(0.337233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337233,0.000000,0.000000,0.250000,0,0);}
.m69_c00406{transform:matrix(0.337661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337661,0.000000,0.000000,0.250000,0,0);}
.mb3_c00406{transform:matrix(0.337824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337824,0.000000,0.000000,0.250000,0,0);}
.m22_c00406{transform:matrix(0.338051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338051,0.000000,0.000000,0.250000,0,0);}
.m59_c00406{transform:matrix(0.339141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339141,0.000000,0.000000,0.250000,0,0);}
.ma3_c00406{transform:matrix(0.339360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339360,0.000000,0.000000,0.250000,0,0);}
.m6f_c00406{transform:matrix(0.339472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339472,0.000000,0.000000,0.250000,0,0);}
.mda_c00406{transform:matrix(0.339875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339875,0.000000,0.000000,0.250000,0,0);}
.m9b_c00406{transform:matrix(0.342668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342668,0.000000,0.000000,0.250000,0,0);}
.mf5_c00406{transform:matrix(0.342804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342804,0.000000,0.000000,0.250000,0,0);}
.mc5_c00406{transform:matrix(0.343224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343224,0.000000,0.000000,0.250000,0,0);}
.m3a_c00406{transform:matrix(0.343255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343255,0.000000,0.000000,0.250000,0,0);}
.m9e_c00406{transform:matrix(0.344637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344637,0.000000,0.000000,0.250000,0,0);}
.mc8_c00406{transform:matrix(0.344776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344776,0.000000,0.000000,0.250000,0,0);}
.m97_c00406{transform:matrix(0.345010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345010,0.000000,0.000000,0.250000,0,0);}
.med_c00406{transform:matrix(0.345860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345860,0.000000,0.000000,0.250000,0,0);}
.m31_c00406{transform:matrix(0.346270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346270,0.000000,0.000000,0.250000,0,0);}
.m29_c00406{transform:matrix(0.351406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351406,0.000000,0.000000,0.250000,0,0);}
.m7_c00406{transform:matrix(0.351621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351621,0.000000,0.000000,0.250000,0,0);}
.m96_c00406{transform:matrix(0.352949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352949,0.000000,0.000000,0.250000,0,0);}
.mcd_c00406{transform:matrix(0.354095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354095,0.000000,0.000000,0.250000,0,0);}
.mc4_c00406{transform:matrix(0.356182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356182,0.000000,0.000000,0.250000,0,0);}
.mc1_c00406{transform:matrix(0.356322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356322,0.000000,0.000000,0.250000,0,0);}
.maa_c00406{transform:matrix(0.357892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357892,0.000000,0.000000,0.250000,0,0);}
.m32_c00406{transform:matrix(0.358751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358751,0.000000,0.000000,0.250000,0,0);}
.m5_c00406{transform:matrix(0.360679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360679,0.000000,0.000000,0.250000,0,0);}
.m1f_c00406{transform:matrix(0.362179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362179,0.000000,0.000000,0.250000,0,0);}
.me0_c00406{transform:matrix(0.362344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362344,0.000000,0.000000,0.250000,0,0);}
.mb5_c00406{transform:matrix(0.364520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364520,0.000000,0.000000,0.250000,0,0);}
.m2e_c00406{transform:matrix(0.365445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365445,0.000000,0.000000,0.250000,0,0);}
.m17_c00406{transform:matrix(0.368478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368478,0.000000,0.000000,0.250000,0,0);}
.mc9_c00406{transform:matrix(0.368568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368568,0.000000,0.000000,0.250000,0,0);}
.m9a_c00406{transform:matrix(0.369210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369210,0.000000,0.000000,0.250000,0,0);}
.md6_c00406{transform:matrix(0.370404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370404,0.000000,0.000000,0.250000,0,0);}
.m81_c00406{transform:matrix(0.375520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375520,0.000000,0.000000,0.250000,0,0);}
.mcc_c00406{transform:matrix(0.375687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375687,0.000000,0.000000,0.250000,0,0);}
.mbb_c00406{transform:matrix(0.379604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379604,0.000000,0.000000,0.250000,0,0);}
.me7_c00406{transform:matrix(0.379886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379886,0.000000,0.000000,0.250000,0,0);}
.m41_c00406{transform:matrix(0.380067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380067,0.000000,0.000000,0.250000,0,0);}
.mde_c00406{transform:matrix(0.384584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384584,0.000000,0.000000,0.250000,0,0);}
.mb8_c00406{transform:matrix(0.385937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385937,0.000000,0.000000,0.250000,0,0);}
.m5e_c00406{transform:matrix(0.386114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386114,0.000000,0.000000,0.250000,0,0);}
.m75_c00406{transform:matrix(0.386362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386362,0.000000,0.000000,0.250000,0,0);}
.ma8_c00406{transform:matrix(0.387837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387837,0.000000,0.000000,0.250000,0,0);}
.mca_c00406{transform:matrix(0.390648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390648,0.000000,0.000000,0.250000,0,0);}
.m3_c00406{transform:matrix(0.393166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393166,0.000000,0.000000,0.250000,0,0);}
.m10_c00406{transform:matrix(0.394062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394062,0.000000,0.000000,0.250000,0,0);}
.m60_c00406{transform:matrix(0.399705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399705,0.000000,0.000000,0.250000,0,0);}
.mbc_c00406{transform:matrix(0.406255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406255,0.000000,0.000000,0.250000,0,0);}
.m67_c00406{transform:matrix(0.407016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407016,0.000000,0.000000,0.250000,0,0);}
.m35_c00406{transform:matrix(0.414553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414553,0.000000,0.000000,0.250000,0,0);}
.m23_c00406{transform:matrix(0.429628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429628,0.000000,0.000000,0.250000,0,0);}
.m82_c00406{transform:matrix(0.437492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437492,0.000000,0.000000,0.250000,0,0);}
.meb_c00406{transform:matrix(0.442122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442122,0.000000,0.000000,0.250000,0,0);}
.m49_c00406{transform:matrix(0.462814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462814,0.000000,0.000000,0.250000,0,0);}
.m61_c00406{transform:matrix(0.494998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494998,0.000000,0.000000,0.250000,0,0);}
.m5c_c00406{transform:matrix(0.535704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535704,0.000000,0.000000,0.250000,0,0);}
.m77_c00406{transform:matrix(0.671572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.671572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.671572,0.000000,0.000000,0.250000,0,0);}
.m76_c00406{transform:matrix(0.868203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.868203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.868203,0.000000,0.000000,0.250000,0,0);}
.v2_c00406{vertical-align:-4.276800px;}
.v5_c00406{vertical-align:-1.433520px;}
.v0_c00406{vertical-align:0.000000px;}
.v1_c00406{vertical-align:1.425600px;}
.v3_c00406{vertical-align:8.573400px;}
.v4_c00406{vertical-align:21.403800px;}
.ls36_c00406{letter-spacing:-2.550240px;}
.lsd_c00406{letter-spacing:-2.508667px;}
.ls2d_c00406{letter-spacing:-2.411640px;}
.ls38_c00406{letter-spacing:-2.383927px;}
.lsb_c00406{letter-spacing:-2.340538px;}
.ls19_c00406{letter-spacing:-1.836450px;}
.ls10_c00406{letter-spacing:-1.799073px;}
.ls3d_c00406{letter-spacing:-1.774080px;}
.ls11_c00406{letter-spacing:-1.591212px;}
.ls2a_c00406{letter-spacing:-1.505200px;}
.ls3e_c00406{letter-spacing:-1.046472px;}
.ls30_c00406{letter-spacing:-1.039305px;}
.ls3a_c00406{letter-spacing:-1.000771px;}
.ls26_c00406{letter-spacing:-0.997920px;}
.ls32_c00406{letter-spacing:-0.946126px;}
.ls3f_c00406{letter-spacing:-0.881617px;}
.ls1a_c00406{letter-spacing:-0.559074px;}
.ls3c_c00406{letter-spacing:-0.537571px;}
.ls14_c00406{letter-spacing:-0.530404px;}
.ls12_c00406{letter-spacing:-0.374299px;}
.ls1e_c00406{letter-spacing:-0.220810px;}
.ls17_c00406{letter-spacing:-0.150520px;}
.ls24_c00406{letter-spacing:-0.019958px;}
.lsa_c00406{letter-spacing:0.000000px;}
.ls5_c00406{letter-spacing:0.086011px;}
.ls37_c00406{letter-spacing:0.229364px;}
.ls2b_c00406{letter-spacing:0.301040px;}
.ls20_c00406{letter-spacing:0.364478px;}
.ls29_c00406{letter-spacing:0.801900px;}
.ls2f_c00406{letter-spacing:0.917455px;}
.ls28_c00406{letter-spacing:1.267200px;}
.ls25_c00406{letter-spacing:1.425600px;}
.ls34_c00406{letter-spacing:1.643400px;}
.ls22_c00406{letter-spacing:1.653310px;}
.ls1f_c00406{letter-spacing:2.336400px;}
.ls39_c00406{letter-spacing:2.405700px;}
.ls23_c00406{letter-spacing:2.455200px;}
.lsf_c00406{letter-spacing:2.514600px;}
.ls3_c00406{letter-spacing:2.515835px;}
.ls15_c00406{letter-spacing:2.544310px;}
.ls21_c00406{letter-spacing:2.630516px;}
.ls18_c00406{letter-spacing:2.692810px;}
.lse_c00406{letter-spacing:3.009600px;}
.ls16_c00406{letter-spacing:3.089244px;}
.ls33_c00406{letter-spacing:3.138310px;}
.ls2e_c00406{letter-spacing:3.247200px;}
.ls3b_c00406{letter-spacing:3.484810px;}
.lsc_c00406{letter-spacing:3.583810px;}
.ls35_c00406{letter-spacing:3.643200px;}
.ls8_c00406{letter-spacing:6.110478px;}
.ls2_c00406{letter-spacing:7.301052px;}
.ls4_c00406{letter-spacing:9.942768px;}
.ls1b_c00406{letter-spacing:9.979398px;}
.ls2c_c00406{letter-spacing:11.404998px;}
.ls27_c00406{letter-spacing:15.681798px;}
.ls31_c00406{letter-spacing:18.532998px;}
.ls7_c00406{letter-spacing:18.994085px;}
.ls0_c00406{letter-spacing:20.576358px;}
.ls9_c00406{letter-spacing:20.929524px;}
.ls1_c00406{letter-spacing:24.154757px;}
.ls1c_c00406{letter-spacing:28.512198px;}
.ls13_c00406{letter-spacing:48.470598px;}
.ls1d_c00406{letter-spacing:49.896198px;}
.ls6_c00406{letter-spacing:132.419958px;}
.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;}
}
.wsf_c00406{word-spacing:-18.005061px;}
.ws7_c00406{word-spacing:-17.919050px;}
.ws8_c00406{word-spacing:-17.768529px;}
.ws18_c00406{word-spacing:-17.037432px;}
.ws12_c00406{word-spacing:-16.972924px;}
.wse_c00406{word-spacing:-16.413849px;}
.ws2_c00406{word-spacing:-16.327838px;}
.ws0_c00406{word-spacing:-16.119977px;}
.ws1_c00406{word-spacing:-3.942131px;}
.ws6_c00406{word-spacing:-3.225414px;}
.ws4_c00406{word-spacing:-1.146943px;}
.ws14_c00406{word-spacing:-0.286853px;}
.wsb_c00406{word-spacing:-0.285269px;}
.wsc_c00406{word-spacing:0.000000px;}
.wsa_c00406{word-spacing:1.745038px;}
.ws15_c00406{word-spacing:3.225503px;}
.ws5_c00406{word-spacing:3.297387px;}
.ws17_c00406{word-spacing:4.013949px;}
.wsd_c00406{word-spacing:6.020669px;}
.ws11_c00406{word-spacing:6.235707px;}
.ws9_c00406{word-spacing:6.809313px;}
.ws3_c00406{word-spacing:7.669425px;}
.ws10_c00406{word-spacing:10.034733px;}
.ws16_c00406{word-spacing:10.035327px;}
.ws13_c00406{word-spacing:13.921039px;}
._29_c00406{margin-left:-14.714383px;}
._13_c00406{margin-left:-12.400014px;}
._26_c00406{margin-left:-10.395149px;}
._17_c00406{margin-left:-5.375736px;}
._19_c00406{margin-left:-4.300596px;}
._22_c00406{margin-left:-3.081980px;}
._16_c00406{margin-left:-1.576927px;}
._9_c00406{width:1.218437px;}
._5_c00406{width:3.368673px;}
._24_c00406{width:4.673390px;}
._f_c00406{width:5.949218px;}
._3_c00406{width:7.310864px;}
._10_c00406{width:8.343051px;}
._e_c00406{width:9.604496px;}
._1e_c00406{width:11.038808px;}
._1_c00406{width:12.543399px;}
._1d_c00406{width:14.836041px;}
._6_c00406{width:16.127397px;}
._15_c00406{width:18.707557px;}
._b_c00406{width:20.267280px;}
._11_c00406{width:21.646273px;}
._7_c00406{width:22.721237px;}
._1b_c00406{width:24.154757px;}
._d_c00406{width:25.373436px;}
._1a_c00406{width:26.591939px;}
._2_c00406{width:29.545621px;}
._25_c00406{width:31.763011px;}
._18_c00406{width:33.616105px;}
._0_c00406{width:34.630052px;}
._12_c00406{width:36.842294px;}
._1c_c00406{width:37.845989px;}
._14_c00406{width:39.633379px;}
._8_c00406{width:41.659101px;}
._1f_c00406{width:44.781905px;}
._a_c00406{width:46.228248px;}
._4_c00406{width:47.460881px;}
._20_c00406{width:49.089744px;}
._27_c00406{width:50.101617px;}
._c_c00406{width:52.022520px;}
._21_c00406{width:313.506754px;}
._23_c00406{width:646.786800px;}
._28_c00406{width:1287.293832px;}
.fc0_c00406{color:transparent;}
.fsf_c00406{font-size:9.979398px;}
.fs1d_c00406{font-size:11.404998px;}
.fs1a_c00406{font-size:15.681798px;}
.fs1c_c00406{font-size:16.038000px;}
.fs22_c00406{font-size:18.532998px;}
.fs2_c00406{font-size:22.176000px;}
.fs1b_c00406{font-size:25.344000px;}
.fs8_c00406{font-size:26.928000px;}
.fs0_c00406{font-size:27.720000px;}
.fs19_c00406{font-size:28.512000px;}
.fs10_c00406{font-size:28.512198px;}
.fs26_c00406{font-size:32.868000px;}
.fs15_c00406{font-size:33.066198px;}
.fs11_c00406{font-size:34.056198px;}
.fs7_c00406{font-size:39.600000px;}
.fs18_c00406{font-size:39.798000px;}
.fs17_c00406{font-size:40.788000px;}
.fs1_c00406{font-size:44.352000px;}
.fs14_c00406{font-size:46.728000px;}
.fs28_c00406{font-size:48.114000px;}
.fs9_c00406{font-size:48.470598px;}
.fs16_c00406{font-size:49.104000px;}
.fs12_c00406{font-size:49.896198px;}
.fs6_c00406{font-size:50.292000px;}
.fs29_c00406{font-size:50.688000px;}
.fsa_c00406{font-size:50.886198px;}
.fse_c00406{font-size:52.470000px;}
.fsb_c00406{font-size:53.856198px;}
.fs3_c00406{font-size:60.192000px;}
.fs2a_c00406{font-size:62.568000px;}
.fs25_c00406{font-size:62.766198px;}
.fs24_c00406{font-size:64.350000px;}
.fs21_c00406{font-size:64.548000px;}
.fs13_c00406{font-size:64.944000px;}
.fs2b_c00406{font-size:67.320000px;}
.fs27_c00406{font-size:68.112198px;}
.fs1f_c00406{font-size:68.904000px;}
.fs20_c00406{font-size:69.696198px;}
.fsd_c00406{font-size:70.884000px;}
.fs5_c00406{font-size:71.676198px;}
.fs1e_c00406{font-size:72.864000px;}
.fsc_c00406{font-size:76.032198px;}
.fs4_c00406{font-size:85.734000px;}
.fs23_c00406{font-size:91.872198px;}
.y0_c00406{bottom:0.000000px;}
.y1_c00406{bottom:76.500000px;}
.y3d_c00406{bottom:137.833785px;}
.y3c_c00406{bottom:146.387385px;}
.y3b_c00406{bottom:160.291935px;}
.y3a_c00406{bottom:179.893935px;}
.y39_c00406{bottom:194.862735px;}
.y38_c00406{bottom:214.464735px;}
.y37_c00406{bottom:279.324585px;}
.y33_c00406{bottom:304.990335px;}
.y36_c00406{bottom:308.192985px;}
.y35_c00406{bottom:310.331385px;}
.y34_c00406{bottom:311.049135px;}
.y32_c00406{bottom:311.400585px;}
.y31_c00406{bottom:335.640735px;}
.y30_c00406{bottom:343.481535px;}
.y2e_c00406{bottom:375.908985px;}
.y2f_c00406{bottom:380.547135px;}
.y2d_c00406{bottom:409.771935px;}
.y2c_c00406{bottom:433.294335px;}
.y2a_c00406{bottom:436.140585px;}
.y2b_c00406{bottom:441.130185px;}
.y28_c00406{bottom:441.491535px;}
.y29_c00406{bottom:442.204335px;}
.y27_c00406{bottom:474.993135px;}
.y26_c00406{bottom:496.733535px;}
.y25_c00406{bottom:507.781935px;}
.y24_c00406{bottom:533.794185px;}
.y22_c00406{bottom:536.288985px;}
.y23_c00406{bottom:539.140185px;}
.y20_c00406{bottom:539.496585px;}
.y21_c00406{bottom:540.214335px;}
.y1d_c00406{bottom:571.221135px;}
.y1f_c00406{bottom:571.928985px;}
.y1e_c00406{bottom:573.710985px;}
.y1c_c00406{bottom:597.589785px;}
.y1b_c00406{bottom:604.009935px;}
.y1a_c00406{bottom:660.677535px;}
.y19_c00406{bottom:664.597935px;}
.y18_c00406{bottom:668.161935px;}
.y17_c00406{bottom:700.594335px;}
.y5_c00406{bottom:703.084185px;}
.y16_c00406{bottom:724.824585px;}
.y14_c00406{bottom:732.665385px;}
.y15_c00406{bottom:733.026735px;}
.y4_c00406{bottom:733.734585px;}
.y13_c00406{bottom:765.454185px;}
.y12_c00406{bottom:765.455175px;}
.y11_c00406{bottom:797.530185px;}
.ye_c00406{bottom:824.616585px;}
.yd_c00406{bottom:829.249785px;}
.y10_c00406{bottom:829.611135px;}
.yf_c00406{bottom:829.967535px;}
.yc_c00406{bottom:840.303135px;}
.yb_c00406{bottom:862.043535px;}
.y9_c00406{bottom:894.832335px;}
.ya_c00406{bottom:896.257935px;}
.y7_c00406{bottom:926.903385px;}
.y8_c00406{bottom:927.259785px;}
.y3_c00406{bottom:939.738735px;}
.y2_c00406{bottom:998.183385px;}
.y6_c00406{bottom:1078.016985px;}
.h12_c00406{height:6.646279px;}
.h1e_c00406{height:7.595729px;}
.h1a_c00406{height:10.444077px;}
.h24_c00406{height:12.342977px;}
.h1d_c00406{height:16.727133px;}
.h13_c00406{height:18.989124px;}
.h4_c00406{height:23.128875px;}
.h1b_c00406{height:24.873750px;}
.h1c_c00406{height:25.542000px;}
.hb_c00406{height:26.428359px;}
.h2_c00406{height:28.911094px;}
.h19_c00406{height:29.737125px;}
.hc_c00406{height:32.281418px;}
.h17_c00406{height:32.452665px;}
.h15_c00406{height:33.230868px;}
.h27_c00406{height:34.280297px;}
.h14_c00406{height:35.519550px;}
.ha_c00406{height:41.301563px;}
.h3_c00406{height:46.257750px;}
.h18_c00406{height:48.192891px;}
.h16_c00406{height:48.735844px;}
.h9_c00406{height:49.358848px;}
.hd_c00406{height:49.942020px;}
.h2a_c00406{height:50.181398px;}
.h28_c00406{height:51.213938px;}
.h11_c00406{height:51.496436px;}
.h2c_c00406{height:52.866000px;}
.he_c00406{height:56.170332px;}
.h5_c00406{height:62.778375px;}
.h22_c00406{height:63.738984px;}
.h2d_c00406{height:65.256469px;}
.h26_c00406{height:65.463183px;}
.h2e_c00406{height:66.070898px;}
.h23_c00406{height:67.321547px;}
.h20_c00406{height:67.625508px;}
.h21_c00406{height:68.403007px;}
.h10_c00406{height:69.568770px;}
.h7_c00406{height:70.346269px;}
.h29_c00406{height:71.038894px;}
.h1f_c00406{height:71.512031px;}
.h8_c00406{height:71.771869px;}
.h2b_c00406{height:72.690957px;}
.hf_c00406{height:79.299207px;}
.h6_c00406{height:84.143232px;}
.h25_c00406{height:91.750069px;}
.h1_c00406{height:1110.000000px;}
.h0_c00406{height:1263.000000px;}
.w1_c00406{width:775.500000px;}
.w0_c00406{width:892.500000px;}
.x0_c00406{left:0.000000px;}
.x5_c00406{left:46.892985px;}
.x4_c00406{left:55.857435px;}
.x1_c00406{left:58.500000px;}
.x3_c00406{left:75.013935px;}
.x2_c00406{left:79.355085px;}
.x26_c00406{left:83.711085px;}
.x7_c00406{left:84.948585px;}
.x85_c00406{left:87.072135px;}
.x32_c00406{left:93.715035px;}
.x8_c00406{left:95.650485px;}
.x8c_c00406{left:99.491685px;}
.x53_c00406{left:105.080235px;}
.x80_c00406{left:106.555335px;}
.x33_c00406{left:116.727585px;}
.x9_c00406{left:117.776985px;}
.x86_c00406{left:119.940135px;}
.x3e_c00406{left:127.632435px;}
.x35_c00406{left:132.131985px;}
.x34_c00406{left:137.908635px;}
.x81_c00406{left:139.344135px;}
.x16_c00406{left:142.259685px;}
.x3f_c00406{left:148.932285px;}
.x27_c00406{left:150.531135px;}
.x72_c00406{left:152.674485px;}
.x59_c00406{left:160.337085px;}
.x5f_c00406{left:170.870685px;}
.x17_c00406{left:172.271535px;}
.x65_c00406{left:175.201935px;}
.x28_c00406{left:177.810585px;}
.x54_c00406{left:179.166885px;}
.x5a_c00406{left:181.003335px;}
.xa_c00406{left:183.691185px;}
.x67_c00406{left:185.537535px;}
.x18_c00406{left:194.185185px;}
.x60_c00406{left:197.437335px;}
.x68_c00406{left:200.154885px;}
.x55_c00406{left:204.758385px;}
.xb_c00406{left:206.144385px;}
.x77_c00406{left:207.495735px;}
.x8d_c00406{left:215.395935px;}
.x29_c00406{left:216.519585px;}
.x7d_c00406{left:224.875185px;}
.x19_c00406{left:227.518485px;}
.x40_c00406{left:238.393635px;}
.x66_c00406{left:244.145535px;}
.x2a_c00406{left:248.783685px;}
.x78_c00406{left:250.798335px;}
.x1a_c00406{left:253.248585px;}
.x61_c00406{left:259.049985px;}
.x56_c00406{left:260.663685px;}
.x79_c00406{left:261.742785px;}
.x48_c00406{left:270.093435px;}
.xc_c00406{left:271.157685px;}
.x82_c00406{left:272.791185px;}
.x2b_c00406{left:281.141835px;}
.x41_c00406{left:282.389235px;}
.x6b_c00406{left:283.478235px;}
.x1b_c00406{left:293.234685px;}
.x7e_c00406{left:294.467235px;}
.x69_c00406{left:297.358035px;}
.x49_c00406{left:304.307835px;}
.x7a_c00406{left:314.707785px;}
.xd_c00406{left:316.271985px;}
.xe_c00406{left:325.681935px;}
.x4a_c00406{left:327.335235px;}
.x1c_c00406{left:332.760435px;}
.x6c_c00406{left:336.423435px;}
.x2c_c00406{left:337.462935px;}
.x4b_c00406{left:338.710335px;}
.x87_c00406{left:347.788635px;}
.x36_c00406{left:349.080585px;}
.x1d_c00406{left:356.173935px;}
.x62_c00406{left:358.886535px;}
.x4c_c00406{left:359.901285px;}
.x8e_c00406{left:362.797035px;}
.x7c_c00406{left:363.950385px;}
.xf_c00406{left:371.335785px;}
.x6d_c00406{left:383.245485px;}
.x6a_c00406{left:384.512685px;}
.x42_c00406{left:387.888585px;}
.x1e_c00406{left:392.759385px;}
.x88_c00406{left:396.466935px;}
.x76_c00406{left:401.184285px;}
.x83_c00406{left:403.743435px;}
.x37_c00406{left:404.827485px;}
.x10_c00406{left:415.014585px;}
.x4d_c00406{left:416.568885px;}
.x2d_c00406{left:427.092585px;}
.x5b_c00406{left:429.161685px;}
.x4e_c00406{left:432.879135px;}
.x1f_c00406{left:436.814385px;}
.x38_c00406{left:447.986535px;}
.x6e_c00406{left:449.209185px;}
.x11_c00406{left:459.411135px;}
.x20_c00406{left:470.513985px;}
.x7f_c00406{left:478.627035px;}
.x43_c00406{left:481.958385px;}
.x12_c00406{left:491.838585px;}
.x4f_c00406{left:493.036485px;}
.x57_c00406{left:502.852335px;}
.x13_c00406{left:504.371985px;}
.x39_c00406{left:515.187735px;}
.x21_c00406{left:516.469785px;}
.x84_c00406{left:521.469285px;}
.x5c_c00406{left:525.533235px;}
.x22_c00406{left:526.919235px;}
.x89_c00406{left:536.645985px;}
.x44_c00406{left:537.923085px;}
.x14_c00406{left:547.436985px;}
.x23_c00406{left:549.506085px;}
.x71_c00406{left:557.129085px;}
.x5d_c00406{left:558.643785px;}
.x7b_c00406{left:559.975335px;}
.x45_c00406{left:568.949685px;}
.x3a_c00406{left:570.325785px;}
.x50_c00406{left:572.602785px;}
.x15_c00406{left:580.760385px;}
.x3b_c00406{left:591.788985px;}
.x46_c00406{left:601.545435px;}
.x58_c00406{left:603.466035px;}
.x24_c00406{left:613.672935px;}
.x8a_c00406{left:614.851035px;}
.x5e_c00406{left:622.241385px;}
.x63_c00406{left:625.315335px;}
.x2e_c00406{left:636.304335px;}
.x51_c00406{left:646.110285px;}
.x8b_c00406{left:647.134935px;}
.x73_c00406{left:657.505185px;}
.x6f_c00406{left:659.485185px;}
.x2f_c00406{left:669.271335px;}
.x47_c00406{left:670.479135px;}
.x6_c00406{left:680.453385px;}
.x74_c00406{left:691.442385px;}
.x30_c00406{left:701.867085px;}
.x70_c00406{left:703.644135px;}
.x90_c00406{left:707.168535px;}
.x91_c00406{left:709.727685px;}
.x52_c00406{left:713.291685px;}
.x8f_c00406{left:714.380685px;}
.x25_c00406{left:724.369785px;}
.x75_c00406{left:735.759735px;}
.x64_c00406{left:737.116035px;}
.x31_c00406{left:738.536685px;}
.x3c_c00406{left:746.897235px;}
.x3d_c00406{left:771.305685px;}
@media print{
.v2_c00406{vertical-align:-3.801600pt;}
.v5_c00406{vertical-align:-1.274240pt;}
.v0_c00406{vertical-align:0.000000pt;}
.v1_c00406{vertical-align:1.267200pt;}
.v3_c00406{vertical-align:7.620800pt;}
.v4_c00406{vertical-align:19.025600pt;}
.ls36_c00406{letter-spacing:-2.266880pt;}
.lsd_c00406{letter-spacing:-2.229926pt;}
.ls2d_c00406{letter-spacing:-2.143680pt;}
.ls38_c00406{letter-spacing:-2.119046pt;}
.lsb_c00406{letter-spacing:-2.080478pt;}
.ls19_c00406{letter-spacing:-1.632400pt;}
.ls10_c00406{letter-spacing:-1.599176pt;}
.ls3d_c00406{letter-spacing:-1.576960pt;}
.ls11_c00406{letter-spacing:-1.414410pt;}
.ls2a_c00406{letter-spacing:-1.337956pt;}
.ls3e_c00406{letter-spacing:-0.930198pt;}
.ls30_c00406{letter-spacing:-0.923827pt;}
.ls3a_c00406{letter-spacing:-0.889574pt;}
.ls26_c00406{letter-spacing:-0.887040pt;}
.ls32_c00406{letter-spacing:-0.841001pt;}
.ls3f_c00406{letter-spacing:-0.783660pt;}
.ls1a_c00406{letter-spacing:-0.496955pt;}
.ls3c_c00406{letter-spacing:-0.477841pt;}
.ls14_c00406{letter-spacing:-0.471470pt;}
.ls12_c00406{letter-spacing:-0.332710pt;}
.ls1e_c00406{letter-spacing:-0.196275pt;}
.ls17_c00406{letter-spacing:-0.133796pt;}
.ls24_c00406{letter-spacing:-0.017741pt;}
.lsa_c00406{letter-spacing:0.000000pt;}
.ls5_c00406{letter-spacing:0.076455pt;}
.ls37_c00406{letter-spacing:0.203879pt;}
.ls2b_c00406{letter-spacing:0.267591pt;}
.ls20_c00406{letter-spacing:0.323981pt;}
.ls29_c00406{letter-spacing:0.712800pt;}
.ls2f_c00406{letter-spacing:0.815516pt;}
.ls28_c00406{letter-spacing:1.126400pt;}
.ls25_c00406{letter-spacing:1.267200pt;}
.ls34_c00406{letter-spacing:1.460800pt;}
.ls22_c00406{letter-spacing:1.469609pt;}
.ls1f_c00406{letter-spacing:2.076800pt;}
.ls39_c00406{letter-spacing:2.138400pt;}
.ls23_c00406{letter-spacing:2.182400pt;}
.lsf_c00406{letter-spacing:2.235200pt;}
.ls3_c00406{letter-spacing:2.236297pt;}
.ls15_c00406{letter-spacing:2.261609pt;}
.ls21_c00406{letter-spacing:2.338237pt;}
.ls18_c00406{letter-spacing:2.393609pt;}
.lse_c00406{letter-spacing:2.675200pt;}
.ls16_c00406{letter-spacing:2.745995pt;}
.ls33_c00406{letter-spacing:2.789609pt;}
.ls2e_c00406{letter-spacing:2.886400pt;}
.ls3b_c00406{letter-spacing:3.097609pt;}
.lsc_c00406{letter-spacing:3.185609pt;}
.ls35_c00406{letter-spacing:3.238400pt;}
.ls8_c00406{letter-spacing:5.431536pt;}
.ls2_c00406{letter-spacing:6.489824pt;}
.ls4_c00406{letter-spacing:8.838016pt;}
.ls1b_c00406{letter-spacing:8.870576pt;}
.ls2c_c00406{letter-spacing:10.137776pt;}
.ls27_c00406{letter-spacing:13.939376pt;}
.ls31_c00406{letter-spacing:16.473776pt;}
.ls7_c00406{letter-spacing:16.883631pt;}
.ls0_c00406{letter-spacing:18.290096pt;}
.ls9_c00406{letter-spacing:18.604021pt;}
.ls1_c00406{letter-spacing:21.470895pt;}
.ls1c_c00406{letter-spacing:25.344176pt;}
.ls13_c00406{letter-spacing:43.084976pt;}
.ls1d_c00406{letter-spacing:44.352176pt;}
.ls6_c00406{letter-spacing:117.706629pt;}
.wsf_c00406{word-spacing:-16.004499pt;}
.ws7_c00406{word-spacing:-15.928044pt;}
.ws8_c00406{word-spacing:-15.794248pt;}
.ws18_c00406{word-spacing:-15.144384pt;}
.ws12_c00406{word-spacing:-15.087043pt;}
.wse_c00406{word-spacing:-14.590088pt;}
.ws2_c00406{word-spacing:-14.513634pt;}
.ws0_c00406{word-spacing:-14.328868pt;}
.ws1_c00406{word-spacing:-3.504116pt;}
.ws6_c00406{word-spacing:-2.867035pt;}
.ws4_c00406{word-spacing:-1.019504pt;}
.ws14_c00406{word-spacing:-0.254980pt;}
.wsb_c00406{word-spacing:-0.253572pt;}
.wsc_c00406{word-spacing:0.000000pt;}
.wsa_c00406{word-spacing:1.551145pt;}
.ws15_c00406{word-spacing:2.867113pt;}
.ws5_c00406{word-spacing:2.931011pt;}
.ws17_c00406{word-spacing:3.567955pt;}
.wsd_c00406{word-spacing:5.351705pt;}
.ws11_c00406{word-spacing:5.542851pt;}
.ws9_c00406{word-spacing:6.052723pt;}
.ws3_c00406{word-spacing:6.817267pt;}
.ws10_c00406{word-spacing:8.919763pt;}
.ws16_c00406{word-spacing:8.920291pt;}
.ws13_c00406{word-spacing:12.374257pt;}
._29_c00406{margin-left:-13.079452pt;}
._13_c00406{margin-left:-11.022235pt;}
._26_c00406{margin-left:-9.240132pt;}
._17_c00406{margin-left:-4.778432pt;}
._19_c00406{margin-left:-3.822752pt;}
._22_c00406{margin-left:-2.739538pt;}
._16_c00406{margin-left:-1.401713pt;}
._9_c00406{width:1.083055pt;}
._5_c00406{width:2.994376pt;}
._24_c00406{width:4.154124pt;}
._f_c00406{width:5.288194pt;}
._3_c00406{width:6.498546pt;}
._10_c00406{width:7.416046pt;}
._e_c00406{width:8.537330pt;}
._1e_c00406{width:9.812274pt;}
._1_c00406{width:11.149688pt;}
._1d_c00406{width:13.187592pt;}
._6_c00406{width:14.335464pt;}
._15_c00406{width:16.628940pt;}
._b_c00406{width:18.015360pt;}
._11_c00406{width:19.241132pt;}
._7_c00406{width:20.196655pt;}
._1b_c00406{width:21.470895pt;}
._d_c00406{width:22.554165pt;}
._1a_c00406{width:23.637279pt;}
._2_c00406{width:26.262774pt;}
._25_c00406{width:28.233788pt;}
._18_c00406{width:29.880982pt;}
._0_c00406{width:30.782268pt;}
._12_c00406{width:32.748706pt;}
._1c_c00406{width:33.640880pt;}
._14_c00406{width:35.229671pt;}
._8_c00406{width:37.030312pt;}
._1f_c00406{width:39.806138pt;}
._a_c00406{width:41.091776pt;}
._4_c00406{width:42.187449pt;}
._20_c00406{width:43.635328pt;}
._27_c00406{width:44.534771pt;}
._c_c00406{width:46.242240pt;}
._21_c00406{width:278.672670pt;}
._23_c00406{width:574.921600pt;}
._28_c00406{width:1144.261184pt;}
.fsf_c00406{font-size:8.870576pt;}
.fs1d_c00406{font-size:10.137776pt;}
.fs1a_c00406{font-size:13.939376pt;}
.fs1c_c00406{font-size:14.256000pt;}
.fs22_c00406{font-size:16.473776pt;}
.fs2_c00406{font-size:19.712000pt;}
.fs1b_c00406{font-size:22.528000pt;}
.fs8_c00406{font-size:23.936000pt;}
.fs0_c00406{font-size:24.640000pt;}
.fs19_c00406{font-size:25.344000pt;}
.fs10_c00406{font-size:25.344176pt;}
.fs26_c00406{font-size:29.216000pt;}
.fs15_c00406{font-size:29.392176pt;}
.fs11_c00406{font-size:30.272176pt;}
.fs7_c00406{font-size:35.200000pt;}
.fs18_c00406{font-size:35.376000pt;}
.fs17_c00406{font-size:36.256000pt;}
.fs1_c00406{font-size:39.424000pt;}
.fs14_c00406{font-size:41.536000pt;}
.fs28_c00406{font-size:42.768000pt;}
.fs9_c00406{font-size:43.084976pt;}
.fs16_c00406{font-size:43.648000pt;}
.fs12_c00406{font-size:44.352176pt;}
.fs6_c00406{font-size:44.704000pt;}
.fs29_c00406{font-size:45.056000pt;}
.fsa_c00406{font-size:45.232176pt;}
.fse_c00406{font-size:46.640000pt;}
.fsb_c00406{font-size:47.872176pt;}
.fs3_c00406{font-size:53.504000pt;}
.fs2a_c00406{font-size:55.616000pt;}
.fs25_c00406{font-size:55.792176pt;}
.fs24_c00406{font-size:57.200000pt;}
.fs21_c00406{font-size:57.376000pt;}
.fs13_c00406{font-size:57.728000pt;}
.fs2b_c00406{font-size:59.840000pt;}
.fs27_c00406{font-size:60.544176pt;}
.fs1f_c00406{font-size:61.248000pt;}
.fs20_c00406{font-size:61.952176pt;}
.fsd_c00406{font-size:63.008000pt;}
.fs5_c00406{font-size:63.712176pt;}
.fs1e_c00406{font-size:64.768000pt;}
.fsc_c00406{font-size:67.584176pt;}
.fs4_c00406{font-size:76.208000pt;}
.fs23_c00406{font-size:81.664176pt;}
.y0_c00406{bottom:0.000000pt;}
.y1_c00406{bottom:68.000000pt;}
.y3d_c00406{bottom:122.518920pt;}
.y3c_c00406{bottom:130.122120pt;}
.y3b_c00406{bottom:142.481720pt;}
.y3a_c00406{bottom:159.905720pt;}
.y39_c00406{bottom:173.211320pt;}
.y38_c00406{bottom:190.635320pt;}
.y37_c00406{bottom:248.288520pt;}
.y33_c00406{bottom:271.102520pt;}
.y36_c00406{bottom:273.949320pt;}
.y35_c00406{bottom:275.850120pt;}
.y34_c00406{bottom:276.488120pt;}
.y32_c00406{bottom:276.800520pt;}
.y31_c00406{bottom:298.347320pt;}
.y30_c00406{bottom:305.316920pt;}
.y2e_c00406{bottom:334.141320pt;}
.y2f_c00406{bottom:338.264120pt;}
.y2d_c00406{bottom:364.241720pt;}
.y2c_c00406{bottom:385.150520pt;}
.y2a_c00406{bottom:387.680520pt;}
.y2b_c00406{bottom:392.115720pt;}
.y28_c00406{bottom:392.436920pt;}
.y29_c00406{bottom:393.070520pt;}
.y27_c00406{bottom:422.216120pt;}
.y26_c00406{bottom:441.540920pt;}
.y25_c00406{bottom:451.361720pt;}
.y24_c00406{bottom:474.483720pt;}
.y22_c00406{bottom:476.701320pt;}
.y23_c00406{bottom:479.235720pt;}
.y20_c00406{bottom:479.552520pt;}
.y21_c00406{bottom:480.190520pt;}
.y1d_c00406{bottom:507.752120pt;}
.y1f_c00406{bottom:508.381320pt;}
.y1e_c00406{bottom:509.965320pt;}
.y1c_c00406{bottom:531.190920pt;}
.y1b_c00406{bottom:536.897720pt;}
.y1a_c00406{bottom:587.268920pt;}
.y19_c00406{bottom:590.753720pt;}
.y18_c00406{bottom:593.921720pt;}
.y17_c00406{bottom:622.750520pt;}
.y5_c00406{bottom:624.963720pt;}
.y16_c00406{bottom:644.288520pt;}
.y14_c00406{bottom:651.258120pt;}
.y15_c00406{bottom:651.579320pt;}
.y4_c00406{bottom:652.208520pt;}
.y13_c00406{bottom:680.403720pt;}
.y12_c00406{bottom:680.404600pt;}
.y11_c00406{bottom:708.915720pt;}
.ye_c00406{bottom:732.992520pt;}
.yd_c00406{bottom:737.110920pt;}
.y10_c00406{bottom:737.432120pt;}
.yf_c00406{bottom:737.748920pt;}
.yc_c00406{bottom:746.936120pt;}
.yb_c00406{bottom:766.260920pt;}
.y9_c00406{bottom:795.406520pt;}
.ya_c00406{bottom:796.673720pt;}
.y7_c00406{bottom:823.914120pt;}
.y8_c00406{bottom:824.230920pt;}
.y3_c00406{bottom:835.323320pt;}
.y2_c00406{bottom:887.274120pt;}
.y6_c00406{bottom:958.237320pt;}
.h12_c00406{height:5.907804pt;}
.h1e_c00406{height:6.751759pt;}
.h1a_c00406{height:9.283624pt;}
.h24_c00406{height:10.971535pt;}
.h1d_c00406{height:14.868563pt;}
.h13_c00406{height:16.879221pt;}
.h4_c00406{height:20.559000pt;}
.h1b_c00406{height:22.110000pt;}
.h1c_c00406{height:22.704000pt;}
.hb_c00406{height:23.491875pt;}
.h2_c00406{height:25.698750pt;}
.h19_c00406{height:26.433000pt;}
.hc_c00406{height:28.694594pt;}
.h17_c00406{height:28.846813pt;}
.h15_c00406{height:29.538549pt;}
.h27_c00406{height:30.471375pt;}
.h14_c00406{height:31.572934pt;}
.ha_c00406{height:36.712500pt;}
.h3_c00406{height:41.118000pt;}
.h18_c00406{height:42.838125pt;}
.h16_c00406{height:43.320750pt;}
.h9_c00406{height:43.874531pt;}
.hd_c00406{height:44.392907pt;}
.h2a_c00406{height:44.605688pt;}
.h28_c00406{height:45.523500pt;}
.h11_c00406{height:45.774609pt;}
.h2c_c00406{height:46.992000pt;}
.he_c00406{height:49.929184pt;}
.h5_c00406{height:55.803000pt;}
.h22_c00406{height:56.656875pt;}
.h2d_c00406{height:58.005750pt;}
.h26_c00406{height:58.189496pt;}
.h2e_c00406{height:58.729688pt;}
.h23_c00406{height:59.841375pt;}
.h20_c00406{height:60.111562pt;}
.h21_c00406{height:60.802673pt;}
.h10_c00406{height:61.838906pt;}
.h7_c00406{height:62.530016pt;}
.h29_c00406{height:63.145684pt;}
.h1f_c00406{height:63.566250pt;}
.h8_c00406{height:63.797216pt;}
.h2b_c00406{height:64.614184pt;}
.hf_c00406{height:70.488184pt;}
.h6_c00406{height:74.793984pt;}
.h25_c00406{height:81.555616pt;}
.h1_c00406{height:986.666667pt;}
.h0_c00406{height:1122.666667pt;}
.w1_c00406{width:689.333333pt;}
.w0_c00406{width:793.333333pt;}
.x0_c00406{left:0.000000pt;}
.x5_c00406{left:41.682653pt;}
.x4_c00406{left:49.651053pt;}
.x1_c00406{left:52.000000pt;}
.x3_c00406{left:66.679053pt;}
.x2_c00406{left:70.537853pt;}
.x26_c00406{left:74.409853pt;}
.x7_c00406{left:75.509853pt;}
.x85_c00406{left:77.397453pt;}
.x32_c00406{left:83.302253pt;}
.x8_c00406{left:85.022653pt;}
.x8c_c00406{left:88.437053pt;}
.x53_c00406{left:93.404653pt;}
.x80_c00406{left:94.715853pt;}
.x33_c00406{left:103.757853pt;}
.x9_c00406{left:104.690653pt;}
.x86_c00406{left:106.613453pt;}
.x3e_c00406{left:113.451053pt;}
.x35_c00406{left:117.450653pt;}
.x34_c00406{left:122.585453pt;}
.x81_c00406{left:123.861453pt;}
.x16_c00406{left:126.453053pt;}
.x3f_c00406{left:132.384253pt;}
.x27_c00406{left:133.805453pt;}
.x72_c00406{left:135.710653pt;}
.x59_c00406{left:142.521853pt;}
.x5f_c00406{left:151.885053pt;}
.x17_c00406{left:153.130253pt;}
.x65_c00406{left:155.735053pt;}
.x28_c00406{left:158.053853pt;}
.x54_c00406{left:159.259453pt;}
.x5a_c00406{left:160.891853pt;}
.xa_c00406{left:163.281053pt;}
.x67_c00406{left:164.922253pt;}
.x18_c00406{left:172.609053pt;}
.x60_c00406{left:175.499853pt;}
.x68_c00406{left:177.915453pt;}
.x55_c00406{left:182.007453pt;}
.xb_c00406{left:183.239453pt;}
.x77_c00406{left:184.440653pt;}
.x8d_c00406{left:191.463053pt;}
.x29_c00406{left:192.461853pt;}
.x7d_c00406{left:199.889053pt;}
.x19_c00406{left:202.238653pt;}
.x40_c00406{left:211.905453pt;}
.x66_c00406{left:217.018253pt;}
.x2a_c00406{left:221.141053pt;}
.x78_c00406{left:222.931853pt;}
.x1a_c00406{left:225.109853pt;}
.x61_c00406{left:230.266653pt;}
.x56_c00406{left:231.701053pt;}
.x79_c00406{left:232.660253pt;}
.x48_c00406{left:240.083053pt;}
.xc_c00406{left:241.029053pt;}
.x82_c00406{left:242.481053pt;}
.x2b_c00406{left:249.903853pt;}
.x41_c00406{left:251.012653pt;}
.x6b_c00406{left:251.980653pt;}
.x1b_c00406{left:260.653053pt;}
.x7e_c00406{left:261.748653pt;}
.x69_c00406{left:264.318253pt;}
.x49_c00406{left:270.495853pt;}
.x7a_c00406{left:279.740253pt;}
.xd_c00406{left:281.130653pt;}
.xe_c00406{left:289.495053pt;}
.x4a_c00406{left:290.964653pt;}
.x1c_c00406{left:295.787053pt;}
.x6c_c00406{left:299.043053pt;}
.x2c_c00406{left:299.967053pt;}
.x4b_c00406{left:301.075853pt;}
.x87_c00406{left:309.145453pt;}
.x36_c00406{left:310.293853pt;}
.x1d_c00406{left:316.599053pt;}
.x62_c00406{left:319.010253pt;}
.x4c_c00406{left:319.912253pt;}
.x8e_c00406{left:322.486253pt;}
.x7c_c00406{left:323.511453pt;}
.xf_c00406{left:330.076253pt;}
.x6d_c00406{left:340.662653pt;}
.x6a_c00406{left:341.789053pt;}
.x42_c00406{left:344.789853pt;}
.x1e_c00406{left:349.119453pt;}
.x88_c00406{left:352.415053pt;}
.x76_c00406{left:356.608253pt;}
.x83_c00406{left:358.883053pt;}
.x37_c00406{left:359.846653pt;}
.x10_c00406{left:368.901853pt;}
.x4d_c00406{left:370.283453pt;}
.x2d_c00406{left:379.637853pt;}
.x5b_c00406{left:381.477053pt;}
.x4e_c00406{left:384.781453pt;}
.x1f_c00406{left:388.279453pt;}
.x38_c00406{left:398.210253pt;}
.x6e_c00406{left:399.297053pt;}
.x11_c00406{left:408.365453pt;}
.x20_c00406{left:418.234653pt;}
.x7f_c00406{left:425.446253pt;}
.x43_c00406{left:428.407453pt;}
.x12_c00406{left:437.189853pt;}
.x4f_c00406{left:438.254653pt;}
.x57_c00406{left:446.979853pt;}
.x13_c00406{left:448.330653pt;}
.x39_c00406{left:457.944653pt;}
.x21_c00406{left:459.084253pt;}
.x84_c00406{left:463.528253pt;}
.x5c_c00406{left:467.140653pt;}
.x22_c00406{left:468.372653pt;}
.x89_c00406{left:477.018653pt;}
.x44_c00406{left:478.153853pt;}
.x14_c00406{left:486.610653pt;}
.x23_c00406{left:488.449853pt;}
.x71_c00406{left:495.225853pt;}
.x5d_c00406{left:496.572253pt;}
.x7b_c00406{left:497.755853pt;}
.x45_c00406{left:505.733053pt;}
.x3a_c00406{left:506.956253pt;}
.x50_c00406{left:508.980253pt;}
.x15_c00406{left:516.231453pt;}
.x3b_c00406{left:526.034653pt;}
.x46_c00406{left:534.707053pt;}
.x58_c00406{left:536.414253pt;}
.x24_c00406{left:545.487053pt;}
.x8a_c00406{left:546.534253pt;}
.x5e_c00406{left:553.103453pt;}
.x63_c00406{left:555.835853pt;}
.x2e_c00406{left:565.603853pt;}
.x51_c00406{left:574.320253pt;}
.x8b_c00406{left:575.231053pt;}
.x73_c00406{left:584.449053pt;}
.x6f_c00406{left:586.209053pt;}
.x2f_c00406{left:594.907853pt;}
.x47_c00406{left:595.981453pt;}
.x6_c00406{left:604.847453pt;}
.x74_c00406{left:614.615453pt;}
.x30_c00406{left:623.881853pt;}
.x70_c00406{left:625.461453pt;}
.x90_c00406{left:628.594253pt;}
.x91_c00406{left:630.869053pt;}
.x52_c00406{left:634.037053pt;}
.x8f_c00406{left:635.005053pt;}
.x25_c00406{left:643.884253pt;}
.x75_c00406{left:654.008653pt;}
.x64_c00406{left:655.214253pt;}
.x31_c00406{left:656.477053pt;}
.x3c_c00406{left:663.908653pt;}
.x3d_c00406{left:685.605053pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_70a35d209958544d658e4b89.woff2')format("woff");}.ff1_c00407{font-family:ff1_c00407;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00407;src:url('chunks/assets/font_c43406facdc5299a4c57ed73.woff2')format("woff");}.ff2_c00407{font-family:ff2_c00407;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00407;src:url('chunks/assets/font_3225ada0e68f0cae83314d05.woff2')format("woff");}.ff3_c00407{font-family:ff3_c00407;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00407;src:url('chunks/assets/font_386291c4d2d23bfa4ffe5ddc.woff2')format("woff");}.ff4_c00407{font-family:ff4_c00407;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00407;src:url('chunks/assets/font_b0b2230fa4ddcaf22c40d447.woff2')format("woff");}.ff5_c00407{font-family:ff5_c00407;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m6f_c00407{transform:matrix(0.042858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042858,0.000000,0.000000,0.250000,0,0);}
.m15_c00407{transform:matrix(0.073530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073530,0.000000,0.000000,0.250000,0,0);}
.m91_c00407{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);}
.m3c_c00407{transform:matrix(0.085470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085470,0.000000,0.000000,0.250000,0,0);}
.m12_c00407{transform:matrix(0.088235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088235,0.000000,0.000000,0.250000,0,0);}
.m49_c00407{transform:matrix(0.096214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096214,0.000000,0.000000,0.250000,0,0);}
.m4c_c00407{transform:matrix(0.097916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097916,0.000000,0.000000,0.250000,0,0);}
.md6_c00407{transform:matrix(0.100695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100695,0.000000,0.000000,0.250000,0,0);}
.m11_c00407{transform:matrix(0.108823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108823,0.000000,0.000000,0.250000,0,0);}
.m9a_c00407{transform:matrix(0.116424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116424,0.000000,0.000000,0.250000,0,0);}
.m92_c00407{transform:matrix(0.118056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118056,0.000000,0.000000,0.250000,0,0);}
.m6d_c00407{transform:matrix(0.121429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121429,0.000000,0.000000,0.250000,0,0);}
.m5_c00407{transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);}
.mb0_c00407{transform:matrix(0.125003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125003,0.000000,0.000000,0.250000,0,0);}
.ma3_c00407{transform:matrix(0.127732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127732,0.000000,0.000000,0.250000,0,0);}
.m95_c00407{transform:matrix(0.133668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133668,0.000000,0.000000,0.250000,0,0);}
.m3d_c00407{transform:matrix(0.141025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141025,0.000000,0.000000,0.250000,0,0);}
.mb4_c00407{transform:matrix(0.147059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147059,0.000000,0.000000,0.250000,0,0);}
.m45_c00407{transform:matrix(0.152571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152571,0.000000,0.000000,0.250000,0,0);}
.m60_c00407{transform:matrix(0.154181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154181,0.000000,0.000000,0.250000,0,0);}
.m3b_c00407{transform:matrix(0.155449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155449,0.000000,0.000000,0.250000,0,0);}
.m88_c00407{transform:matrix(0.161585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161585,0.000000,0.000000,0.250000,0,0);}
.m14_c00407{transform:matrix(0.161764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161764,0.000000,0.000000,0.250000,0,0);}
.mb3_c00407{transform:matrix(0.163603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163603,0.000000,0.000000,0.250000,0,0);}
.m5f_c00407{transform:matrix(0.164634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164634,0.000000,0.000000,0.250000,0,0);}
.m54_c00407{transform:matrix(0.166666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166666,0.000000,0.000000,0.250000,0,0);}
.mc7_c00407{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);}
.m30_c00407{transform:matrix(0.167771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167771,0.000000,0.000000,0.250000,0,0);}
.m7b_c00407{transform:matrix(0.171434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171434,0.000000,0.000000,0.250000,0,0);}
.m4b_c00407{transform:matrix(0.174999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174999,0.000000,0.000000,0.250000,0,0);}
.m5e_c00407{transform:matrix(0.176830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176830,0.000000,0.000000,0.250000,0,0);}
.m6e_c00407{transform:matrix(0.180158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180158,0.000000,0.000000,0.250000,0,0);}
.mc4_c00407{transform:matrix(0.180169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180169,0.000000,0.000000,0.250000,0,0);}
.mb1_c00407{transform:matrix(0.188267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188267,0.000000,0.000000,0.250000,0,0);}
.m4d_c00407{transform:matrix(0.190625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190625,0.000000,0.000000,0.250000,0,0);}
.m2c_c00407{transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);}
.mae_c00407{transform:matrix(0.193501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193501,0.000000,0.000000,0.250000,0,0);}
.m71_c00407{transform:matrix(0.197938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197938,0.000000,0.000000,0.250000,0,0);}
.m13_c00407{transform:matrix(0.198530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198530,0.000000,0.000000,0.250000,0,0);}
.m61_c00407{transform:matrix(0.203931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203931,0.000000,0.000000,0.250000,0,0);}
.m90_c00407{transform:matrix(0.204365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204365,0.000000,0.000000,0.250000,0,0);}
.m72_c00407{transform:matrix(0.206696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206696,0.000000,0.000000,0.250000,0,0);}
.m2d_c00407{transform:matrix(0.209010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209010,0.000000,0.000000,0.250000,0,0);}
.m1_c00407{transform:matrix(0.212561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212561,0.000000,0.000000,0.250000,0,0);}
.mc2_c00407{transform:matrix(0.212590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212590,0.000000,0.000000,0.250000,0,0);}
.m70_c00407{transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);}
.mc6_c00407{transform:matrix(0.215019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215019,0.000000,0.000000,0.250000,0,0);}
.mc8_c00407{transform:matrix(0.215856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215856,0.000000,0.000000,0.250000,0,0);}
.m35_c00407{transform:matrix(0.218601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218601,0.000000,0.000000,0.250000,0,0);}
.m2e_c00407{transform:matrix(0.221299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221299,0.000000,0.000000,0.250000,0,0);}
.m23_c00407{transform:matrix(0.222442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222442,0.000000,0.000000,0.250000,0,0);}
.mb5_c00407{transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);}
.ma7_c00407{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00407{transform:matrix(0.233039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233039,0.000000,0.000000,0.250000,0,0);}
.mc5_c00407{transform:matrix(0.235819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235819,0.000000,0.000000,0.250000,0,0);}
.m81_c00407{transform:matrix(0.236488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236488,0.000000,0.000000,0.250000,0,0);}
.m48_c00407{transform:matrix(0.237456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237456,0.000000,0.000000,0.250000,0,0);}
.m9d_c00407{transform:matrix(0.239392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239392,0.000000,0.000000,0.250000,0,0);}
.ma5_c00407{transform:matrix(0.240716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240716,0.000000,0.000000,0.250000,0,0);}
.m0_c00407{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00407{transform:matrix(0.252327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252327,0.000000,0.000000,0.250000,0,0);}
.m25_c00407{transform:matrix(0.252587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252587,0.000000,0.000000,0.250000,0,0);}
.md7_c00407{transform:matrix(0.255090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255090,0.000000,0.000000,0.250000,0,0);}
.m22_c00407{transform:matrix(0.256706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256706,0.000000,0.000000,0.250000,0,0);}
.m87_c00407{transform:matrix(0.257692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257692,0.000000,0.000000,0.250000,0,0);}
.m64_c00407{transform:matrix(0.261621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261621,0.000000,0.000000,0.250000,0,0);}
.m36_c00407{transform:matrix(0.262540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262540,0.000000,0.000000,0.250000,0,0);}
.mcb_c00407{transform:matrix(0.262667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262667,0.000000,0.000000,0.250000,0,0);}
.m50_c00407{transform:matrix(0.264403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264403,0.000000,0.000000,0.250000,0,0);}
.m34_c00407{transform:matrix(0.265488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265488,0.000000,0.000000,0.250000,0,0);}
.m59_c00407{transform:matrix(0.269137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269137,0.000000,0.000000,0.250000,0,0);}
.m3_c00407{transform:matrix(0.272101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272101,0.000000,0.000000,0.250000,0,0);}
.mbc_c00407{transform:matrix(0.272837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272837,0.000000,0.000000,0.250000,0,0);}
.m7d_c00407{transform:matrix(0.275769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275769,0.000000,0.000000,0.250000,0,0);}
.md4_c00407{transform:matrix(0.275889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275889,0.000000,0.000000,0.250000,0,0);}
.m80_c00407{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);}
.m2b_c00407{transform:matrix(0.276043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276043,0.000000,0.000000,0.250000,0,0);}
.m98_c00407{transform:matrix(0.277732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277732,0.000000,0.000000,0.250000,0,0);}
.mc9_c00407{transform:matrix(0.278856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278856,0.000000,0.000000,0.250000,0,0);}
.ma9_c00407{transform:matrix(0.279544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279544,0.000000,0.000000,0.250000,0,0);}
.md5_c00407{transform:matrix(0.281581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281581,0.000000,0.000000,0.250000,0,0);}
.m41_c00407{transform:matrix(0.282083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282083,0.000000,0.000000,0.250000,0,0);}
.m24_c00407{transform:matrix(0.283780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283780,0.000000,0.000000,0.250000,0,0);}
.m96_c00407{transform:matrix(0.283900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283900,0.000000,0.000000,0.250000,0,0);}
.mca_c00407{transform:matrix(0.284255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284255,0.000000,0.000000,0.250000,0,0);}
.m4e_c00407{transform:matrix(0.285117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285117,0.000000,0.000000,0.250000,0,0);}
.m99_c00407{transform:matrix(0.285387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285387,0.000000,0.000000,0.250000,0,0);}
.m66_c00407{transform:matrix(0.285470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285470,0.000000,0.000000,0.250000,0,0);}
.m47_c00407{transform:matrix(0.286107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286107,0.000000,0.000000,0.250000,0,0);}
.mb8_c00407{transform:matrix(0.286405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286405,0.000000,0.000000,0.250000,0,0);}
.m7_c00407{transform:matrix(0.287059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287059,0.000000,0.000000,0.250000,0,0);}
.m8_c00407{transform:matrix(0.287084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287084,0.000000,0.000000,0.250000,0,0);}
.mcc_c00407{transform:matrix(0.287791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287791,0.000000,0.000000,0.250000,0,0);}
.md2_c00407{transform:matrix(0.287867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287867,0.000000,0.000000,0.250000,0,0);}
.me_c00407{transform:matrix(0.288034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288034,0.000000,0.000000,0.250000,0,0);}
.mbd_c00407{transform:matrix(0.288310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288310,0.000000,0.000000,0.250000,0,0);}
.mdb_c00407{transform:matrix(0.288488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288488,0.000000,0.000000,0.250000,0,0);}
.m5a_c00407{transform:matrix(0.288856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288856,0.000000,0.000000,0.250000,0,0);}
.m53_c00407{transform:matrix(0.289036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289036,0.000000,0.000000,0.250000,0,0);}
.mb7_c00407{transform:matrix(0.289405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289405,0.000000,0.000000,0.250000,0,0);}
.m8a_c00407{transform:matrix(0.290141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290141,0.000000,0.000000,0.250000,0,0);}
.m79_c00407{transform:matrix(0.290582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290582,0.000000,0.000000,0.250000,0,0);}
.m19_c00407{transform:matrix(0.290648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290648,0.000000,0.000000,0.250000,0,0);}
.md1_c00407{transform:matrix(0.290715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290715,0.000000,0.000000,0.250000,0,0);}
.m62_c00407{transform:matrix(0.290983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290983,0.000000,0.000000,0.250000,0,0);}
.mcf_c00407{transform:matrix(0.291216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291216,0.000000,0.000000,0.250000,0,0);}
.m29_c00407{transform:matrix(0.293087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293087,0.000000,0.000000,0.250000,0,0);}
.md8_c00407{transform:matrix(0.293137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293137,0.000000,0.000000,0.250000,0,0);}
.m9f_c00407{transform:matrix(0.293525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293525,0.000000,0.000000,0.250000,0,0);}
.m8d_c00407{transform:matrix(0.293853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293853,0.000000,0.000000,0.250000,0,0);}
.md0_c00407{transform:matrix(0.296043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296043,0.000000,0.000000,0.250000,0,0);}
.m39_c00407{transform:matrix(0.297012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297012,0.000000,0.000000,0.250000,0,0);}
.m75_c00407{transform:matrix(0.297014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297014,0.000000,0.000000,0.250000,0,0);}
.m56_c00407{transform:matrix(0.299324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299324,0.000000,0.000000,0.250000,0,0);}
.m46_c00407{transform:matrix(0.299871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299871,0.000000,0.000000,0.250000,0,0);}
.m2a_c00407{transform:matrix(0.299883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299883,0.000000,0.000000,0.250000,0,0);}
.m77_c00407{transform:matrix(0.300839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300839,0.000000,0.000000,0.250000,0,0);}
.m93_c00407{transform:matrix(0.301030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301030,0.000000,0.000000,0.250000,0,0);}
.m83_c00407{transform:matrix(0.301945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301945,0.000000,0.000000,0.250000,0,0);}
.m85_c00407{transform:matrix(0.303036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303036,0.000000,0.000000,0.250000,0,0);}
.m37_c00407{transform:matrix(0.304079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304079,0.000000,0.000000,0.250000,0,0);}
.mcd_c00407{transform:matrix(0.305638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305638,0.000000,0.000000,0.250000,0,0);}
.m3e_c00407{transform:matrix(0.306580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306580,0.000000,0.000000,0.250000,0,0);}
.m4_c00407{transform:matrix(0.307630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307630,0.000000,0.000000,0.250000,0,0);}
.m44_c00407{transform:matrix(0.307993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307993,0.000000,0.000000,0.250000,0,0);}
.ma_c00407{transform:matrix(0.308248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308248,0.000000,0.000000,0.250000,0,0);}
.m3f_c00407{transform:matrix(0.308593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308593,0.000000,0.000000,0.250000,0,0);}
.m4f_c00407{transform:matrix(0.308927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308927,0.000000,0.000000,0.250000,0,0);}
.mba_c00407{transform:matrix(0.309235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309235,0.000000,0.000000,0.250000,0,0);}
.m68_c00407{transform:matrix(0.309302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309302,0.000000,0.000000,0.250000,0,0);}
.m7f_c00407{transform:matrix(0.309310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309310,0.000000,0.000000,0.250000,0,0);}
.m2f_c00407{transform:matrix(0.310256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310256,0.000000,0.000000,0.250000,0,0);}
.m51_c00407{transform:matrix(0.310512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310512,0.000000,0.000000,0.250000,0,0);}
.m8e_c00407{transform:matrix(0.310804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310804,0.000000,0.000000,0.250000,0,0);}
.mbf_c00407{transform:matrix(0.310820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310820,0.000000,0.000000,0.250000,0,0);}
.m6_c00407{transform:matrix(0.311078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311078,0.000000,0.000000,0.250000,0,0);}
.md9_c00407{transform:matrix(0.311454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311454,0.000000,0.000000,0.250000,0,0);}
.m9e_c00407{transform:matrix(0.312590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312590,0.000000,0.000000,0.250000,0,0);}
.ma1_c00407{transform:matrix(0.313403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313403,0.000000,0.000000,0.250000,0,0);}
.m10_c00407{transform:matrix(0.314525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314525,0.000000,0.000000,0.250000,0,0);}
.ma0_c00407{transform:matrix(0.314532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314532,0.000000,0.000000,0.250000,0,0);}
.mac_c00407{transform:matrix(0.315123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315123,0.000000,0.000000,0.250000,0,0);}
.m78_c00407{transform:matrix(0.316253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316253,0.000000,0.000000,0.250000,0,0);}
.m20_c00407{transform:matrix(0.316447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316447,0.000000,0.000000,0.250000,0,0);}
.m28_c00407{transform:matrix(0.316820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316820,0.000000,0.000000,0.250000,0,0);}
.m57_c00407{transform:matrix(0.317757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317757,0.000000,0.000000,0.250000,0,0);}
.m7c_c00407{transform:matrix(0.318446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318446,0.000000,0.000000,0.250000,0,0);}
.m5d_c00407{transform:matrix(0.318525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318525,0.000000,0.000000,0.250000,0,0);}
.m6c_c00407{transform:matrix(0.319207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319207,0.000000,0.000000,0.250000,0,0);}
.m6a_c00407{transform:matrix(0.319572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319572,0.000000,0.000000,0.250000,0,0);}
.m84_c00407{transform:matrix(0.322146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322146,0.000000,0.000000,0.250000,0,0);}
.m2_c00407{transform:matrix(0.322304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322304,0.000000,0.000000,0.250000,0,0);}
.m1c_c00407{transform:matrix(0.322480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322480,0.000000,0.000000,0.250000,0,0);}
.m76_c00407{transform:matrix(0.322559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322559,0.000000,0.000000,0.250000,0,0);}
.m1a_c00407{transform:matrix(0.322805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322805,0.000000,0.000000,0.250000,0,0);}
.m94_c00407{transform:matrix(0.323482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323482,0.000000,0.000000,0.250000,0,0);}
.m43_c00407{transform:matrix(0.323683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323683,0.000000,0.000000,0.250000,0,0);}
.ma6_c00407{transform:matrix(0.323869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323869,0.000000,0.000000,0.250000,0,0);}
.m31_c00407{transform:matrix(0.324696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324696,0.000000,0.000000,0.250000,0,0);}
.m55_c00407{transform:matrix(0.324829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324829,0.000000,0.000000,0.250000,0,0);}
.m73_c00407{transform:matrix(0.325133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325133,0.000000,0.000000,0.250000,0,0);}
.m89_c00407{transform:matrix(0.325917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325917,0.000000,0.000000,0.250000,0,0);}
.mad_c00407{transform:matrix(0.327091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327091,0.000000,0.000000,0.250000,0,0);}
.m82_c00407{transform:matrix(0.327464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327464,0.000000,0.000000,0.250000,0,0);}
.m1e_c00407{transform:matrix(0.328570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328570,0.000000,0.000000,0.250000,0,0);}
.m5b_c00407{transform:matrix(0.329439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329439,0.000000,0.000000,0.250000,0,0);}
.m26_c00407{transform:matrix(0.331048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331048,0.000000,0.000000,0.250000,0,0);}
.m6b_c00407{transform:matrix(0.332003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332003,0.000000,0.000000,0.250000,0,0);}
.mf_c00407{transform:matrix(0.332781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332781,0.000000,0.000000,0.250000,0,0);}
.ma2_c00407{transform:matrix(0.332965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332965,0.000000,0.000000,0.250000,0,0);}
.m40_c00407{transform:matrix(0.333586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333586,0.000000,0.000000,0.250000,0,0);}
.m8f_c00407{transform:matrix(0.333942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333942,0.000000,0.000000,0.250000,0,0);}
.m8c_c00407{transform:matrix(0.334172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334172,0.000000,0.000000,0.250000,0,0);}
.m1d_c00407{transform:matrix(0.334840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334840,0.000000,0.000000,0.250000,0,0);}
.m1b_c00407{transform:matrix(0.335855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335855,0.000000,0.000000,0.250000,0,0);}
.m7e_c00407{transform:matrix(0.336901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336901,0.000000,0.000000,0.250000,0,0);}
.m65_c00407{transform:matrix(0.337918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337918,0.000000,0.000000,0.250000,0,0);}
.m52_c00407{transform:matrix(0.343393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343393,0.000000,0.000000,0.250000,0,0);}
.mab_c00407{transform:matrix(0.344567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344567,0.000000,0.000000,0.250000,0,0);}
.m5c_c00407{transform:matrix(0.345369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345369,0.000000,0.000000,0.250000,0,0);}
.md_c00407{transform:matrix(0.348938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348938,0.000000,0.000000,0.250000,0,0);}
.m17_c00407{transform:matrix(0.349373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349373,0.000000,0.000000,0.250000,0,0);}
.m69_c00407{transform:matrix(0.350639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350639,0.000000,0.000000,0.250000,0,0);}
.m58_c00407{transform:matrix(0.351265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351265,0.000000,0.000000,0.250000,0,0);}
.mc0_c00407{transform:matrix(0.351690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351690,0.000000,0.000000,0.250000,0,0);}
.m9c_c00407{transform:matrix(0.355138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355138,0.000000,0.000000,0.250000,0,0);}
.m16_c00407{transform:matrix(0.355378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355378,0.000000,0.000000,0.250000,0,0);}
.ma4_c00407{transform:matrix(0.356255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356255,0.000000,0.000000,0.250000,0,0);}
.m3a_c00407{transform:matrix(0.356727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356727,0.000000,0.000000,0.250000,0,0);}
.mc1_c00407{transform:matrix(0.357281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357281,0.000000,0.000000,0.250000,0,0);}
.m63_c00407{transform:matrix(0.358218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358218,0.000000,0.000000,0.250000,0,0);}
.m9b_c00407{transform:matrix(0.361321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361321,0.000000,0.000000,0.250000,0,0);}
.mb6_c00407{transform:matrix(0.361805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361805,0.000000,0.000000,0.250000,0,0);}
.m86_c00407{transform:matrix(0.362109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362109,0.000000,0.000000,0.250000,0,0);}
.mc_c00407{transform:matrix(0.364520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364520,0.000000,0.000000,0.250000,0,0);}
.mb2_c00407{transform:matrix(0.365865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365865,0.000000,0.000000,0.250000,0,0);}
.m18_c00407{transform:matrix(0.367529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367529,0.000000,0.000000,0.250000,0,0);}
.mbb_c00407{transform:matrix(0.373446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373446,0.000000,0.000000,0.250000,0,0);}
.m33_c00407{transform:matrix(0.375520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375520,0.000000,0.000000,0.250000,0,0);}
.mb9_c00407{transform:matrix(0.375687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375687,0.000000,0.000000,0.250000,0,0);}
.m4a_c00407{transform:matrix(0.377420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377420,0.000000,0.000000,0.250000,0,0);}
.maa_c00407{transform:matrix(0.378290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378290,0.000000,0.000000,0.250000,0,0);}
.m27_c00407{transform:matrix(0.379228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379228,0.000000,0.000000,0.250000,0,0);}
.m97_c00407{transform:matrix(0.379998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379998,0.000000,0.000000,0.250000,0,0);}
.ma8_c00407{transform:matrix(0.381521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381521,0.000000,0.000000,0.250000,0,0);}
.m8b_c00407{transform:matrix(0.388697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388697,0.000000,0.000000,0.250000,0,0);}
.m67_c00407{transform:matrix(0.388719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388719,0.000000,0.000000,0.250000,0,0);}
.m32_c00407{transform:matrix(0.389829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389829,0.000000,0.000000,0.250000,0,0);}
.m74_c00407{transform:matrix(0.390460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390460,0.000000,0.000000,0.250000,0,0);}
.mda_c00407{transform:matrix(0.391036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391036,0.000000,0.000000,0.250000,0,0);}
.m38_c00407{transform:matrix(0.395285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395285,0.000000,0.000000,0.250000,0,0);}
.mbe_c00407{transform:matrix(0.403225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403225,0.000000,0.000000,0.250000,0,0);}
.mc3_c00407{transform:matrix(0.406191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406191,0.000000,0.000000,0.250000,0,0);}
.m42_c00407{transform:matrix(0.413226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413226,0.000000,0.000000,0.250000,0,0);}
.md3_c00407{transform:matrix(0.416660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416660,0.000000,0.000000,0.250000,0,0);}
.m9_c00407{transform:matrix(0.422611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422611,0.000000,0.000000,0.250000,0,0);}
.mb_c00407{transform:matrix(0.442892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442892,0.000000,0.000000,0.250000,0,0);}
.m21_c00407{transform:matrix(0.462814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462814,0.000000,0.000000,0.250000,0,0);}
.mce_c00407{transform:matrix(0.499996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499996,0.000000,0.000000,0.250000,0,0);}
.maf_c00407{transform:matrix(0.708323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.708323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.708323,0.000000,0.000000,0.250000,0,0);}
.v0_c00407{vertical-align:0.000000px;}
.v1_c00407{vertical-align:19.938600px;}
.ls14_c00407{letter-spacing:-3.714480px;}
.ls24_c00407{letter-spacing:-3.444217px;}
.ls27_c00407{letter-spacing:-2.772000px;}
.ls16_c00407{letter-spacing:-2.647267px;}
.ls10_c00407{letter-spacing:-2.508667px;}
.ls30_c00407{letter-spacing:-2.418577px;}
.ls28_c00407{letter-spacing:-2.390850px;}
.ls21_c00407{letter-spacing:-2.322309px;}
.ls5_c00407{letter-spacing:-2.314627px;}
.ls32_c00407{letter-spacing:-2.259180px;}
.ls25_c00407{letter-spacing:-1.799073px;}
.ls2e_c00407{letter-spacing:-1.663200px;}
.ls2c_c00407{letter-spacing:-1.524600px;}
.ls33_c00407{letter-spacing:-1.476090px;}
.ls22_c00407{letter-spacing:-1.302840px;}
.ls11_c00407{letter-spacing:-1.129590px;}
.lsa_c00407{letter-spacing:-1.046472px;}
.ls34_c00407{letter-spacing:-0.817740px;}
.lsd_c00407{letter-spacing:-0.798890px;}
.ls35_c00407{letter-spacing:-0.791289px;}
.ls18_c00407{letter-spacing:-0.387051px;}
.ls2b_c00407{letter-spacing:-0.259776px;}
.ls4_c00407{letter-spacing:0.000000px;}
.ls38_c00407{letter-spacing:0.329711px;}
.ls6_c00407{letter-spacing:1.524600px;}
.lsf_c00407{letter-spacing:1.623600px;}
.ls2a_c00407{letter-spacing:1.653310px;}
.lsc_c00407{letter-spacing:1.806240px;}
.ls39_c00407{letter-spacing:1.892252px;}
.ls7_c00407{letter-spacing:2.534400px;}
.ls2_c00407{letter-spacing:2.687857px;}
.ls1d_c00407{letter-spacing:3.197700px;}
.ls3_c00407{letter-spacing:3.282770px;}
.ls29_c00407{letter-spacing:3.405610px;}
.ls15_c00407{letter-spacing:3.455110px;}
.lsb_c00407{letter-spacing:3.465000px;}
.ls1b_c00407{letter-spacing:3.544200px;}
.ls9_c00407{letter-spacing:3.583810px;}
.ls0_c00407{letter-spacing:3.640131px;}
.ls2f_c00407{letter-spacing:3.643200px;}
.ls31_c00407{letter-spacing:3.762000px;}
.ls17_c00407{letter-spacing:3.781810px;}
.ls23_c00407{letter-spacing:3.811500px;}
.ls12_c00407{letter-spacing:3.880810px;}
.ls1f_c00407{letter-spacing:4.385700px;}
.ls2d_c00407{letter-spacing:8.553798px;}
.ls36_c00407{letter-spacing:11.404998px;}
.ls37_c00407{letter-spacing:12.830598px;}
.ls8_c00407{letter-spacing:31.363200px;}
.ls13_c00407{letter-spacing:39.916800px;}
.lse_c00407{letter-spacing:48.470598px;}
.ls20_c00407{letter-spacing:49.896198px;}
.ls26_c00407{letter-spacing:51.321798px;}
.ls1c_c00407{letter-spacing:54.172998px;}
.ls19_c00407{letter-spacing:55.598598px;}
.ls1a_c00407{letter-spacing:57.024198px;}
.ls1e_c00407{letter-spacing:58.449798px;}
.ls1_c00407{letter-spacing:390.116958px;}
.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;}
}
.ws2_c00407{word-spacing:-20.606907px;}
.ws0_c00407{word-spacing:-17.919050px;}
.ws5_c00407{word-spacing:-4.013795px;}
.ws3_c00407{word-spacing:-1.290889px;}
.ws4_c00407{word-spacing:-1.146151px;}
.ws6_c00407{word-spacing:0.000000px;}
.ws1_c00407{word-spacing:6.235707px;}
._4_c00407{margin-left:-20.500282px;}
._3_c00407{margin-left:-11.651033px;}
._7_c00407{margin-left:-8.815257px;}
._c_c00407{margin-left:-7.597722px;}
._11_c00407{margin-left:-3.319549px;}
._9_c00407{width:1.505200px;}
._8_c00407{width:2.938793px;}
._d_c00407{width:8.206902px;}
._1_c00407{width:9.246116px;}
._a_c00407{width:10.894862px;}
._b_c00407{width:13.976919px;}
._13_c00407{width:17.560982px;}
._10_c00407{width:21.287717px;}
._e_c00407{width:23.796575px;}
._f_c00407{width:37.337119px;}
._6_c00407{width:38.483552px;}
._0_c00407{width:40.253400px;}
._2_c00407{width:41.500519px;}
._5_c00407{width:256.063192px;}
._12_c00407{width:371.210400px;}
.fc0_c00407{color:transparent;}
.fs2e_c00407{font-size:8.553798px;}
.fs3a_c00407{font-size:11.404998px;}
.fs10_c00407{font-size:11.484198px;}
.fs3c_c00407{font-size:12.830598px;}
.fs1_c00407{font-size:22.176000px;}
.fs37_c00407{font-size:23.364000px;}
.fs8_c00407{font-size:25.344000px;}
.fs17_c00407{font-size:26.928000px;}
.fs11_c00407{font-size:27.720000px;}
.fs3_c00407{font-size:28.314000px;}
.fs36_c00407{font-size:29.106000px;}
.fs5_c00407{font-size:30.492000px;}
.fs9_c00407{font-size:31.363200px;}
.fs12_c00407{font-size:32.274000px;}
.fsf_c00407{font-size:32.472000px;}
.fs2b_c00407{font-size:33.066198px;}
.fs0_c00407{font-size:33.264000px;}
.fs2_c00407{font-size:33.660000px;}
.fs21_c00407{font-size:37.224000px;}
.fs15_c00407{font-size:39.916800px;}
.fs35_c00407{font-size:42.174000px;}
.fs2d_c00407{font-size:43.560000px;}
.fs2f_c00407{font-size:47.520000px;}
.fse_c00407{font-size:48.470598px;}
.fs20_c00407{font-size:49.896198px;}
.fs33_c00407{font-size:50.292000px;}
.fs6_c00407{font-size:50.688000px;}
.fs25_c00407{font-size:51.321798px;}
.fs30_c00407{font-size:53.856198px;}
.fs1c_c00407{font-size:54.172998px;}
.fs1a_c00407{font-size:55.598598px;}
.fs1b_c00407{font-size:57.024198px;}
.fs1e_c00407{font-size:58.449798px;}
.fs38_c00407{font-size:59.400000px;}
.fs1f_c00407{font-size:60.192000px;}
.fsd_c00407{font-size:60.984000px;}
.fs2c_c00407{font-size:63.360000px;}
.fs1d_c00407{font-size:63.954000px;}
.fs34_c00407{font-size:64.548000px;}
.fs32_c00407{font-size:65.538000px;}
.fs4_c00407{font-size:66.132198px;}
.fs28_c00407{font-size:67.320000px;}
.fs2a_c00407{font-size:68.112198px;}
.fs29_c00407{font-size:68.310000px;}
.fs18_c00407{font-size:69.102198px;}
.fsb_c00407{font-size:69.300000px;}
.fs24_c00407{font-size:70.488000px;}
.fsc_c00407{font-size:70.884000px;}
.fsa_c00407{font-size:71.676198px;}
.fs7_c00407{font-size:72.864000px;}
.fs31_c00407{font-size:75.240000px;}
.fs19_c00407{font-size:75.636198px;}
.fs3b_c00407{font-size:76.032198px;}
.fs22_c00407{font-size:76.230000px;}
.fs14_c00407{font-size:77.616198px;}
.fs27_c00407{font-size:79.200000px;}
.fs39_c00407{font-size:81.576198px;}
.fs13_c00407{font-size:87.714000px;}
.fs26_c00407{font-size:91.872198px;}
.fs23_c00407{font-size:98.406198px;}
.fs16_c00407{font-size:106.128000px;}
.y0_c00407{bottom:0.000000px;}
.y37_c00407{bottom:3.470985px;}
.y1_c00407{bottom:76.500000px;}
.y36_c00407{bottom:142.471935px;}
.y34_c00407{bottom:165.632985px;}
.y32_c00407{bottom:169.914735px;}
.y35_c00407{bottom:170.266185px;}
.y33_c00407{bottom:173.478735px;}
.y31_c00407{bottom:173.835135px;}
.y30_c00407{bottom:185.596335px;}
.y2f_c00407{bottom:201.634335px;}
.y2c_c00407{bottom:206.618985px;}
.y2d_c00407{bottom:206.975385px;}
.y2e_c00407{bottom:207.331785px;}
.y2b_c00407{bottom:232.284735px;}
.y2a_c00407{bottom:239.769135px;}
.y29_c00407{bottom:262.935135px;}
.y28_c00407{bottom:268.276185px;}
.y22_c00407{bottom:271.488735px;}
.y23_c00407{bottom:271.845135px;}
.y24_c00407{bottom:272.201535px;}
.y27_c00407{bottom:273.270735px;}
.y26_c00407{bottom:275.409135px;}
.y25_c00407{bottom:280.398735px;}
.y21_c00407{bottom:292.516335px;}
.y20_c00407{bottom:304.277535px;}
.y1f_c00407{bottom:330.294735px;}
.y1e_c00407{bottom:336.353535px;}
.y1d_c00407{bottom:368.424585px;}
.y1c_c00407{bottom:400.861935px;}
.y1b_c00407{bottom:433.289385px;}
.y1a_c00407{bottom:459.662985px;}
.y18_c00407{bottom:466.434585px;}
.y19_c00407{bottom:467.152335px;}
.y17_c00407{bottom:499.936185px;}
.y16_c00407{bottom:533.081385px;}
.y3_c00407{bottom:537.719535px;}
.y15_c00407{bottom:565.162335px;}
.y14_c00407{bottom:597.594735px;}
.y13_c00407{bottom:664.592985px;}
.y12_c00407{bottom:676.710585px;}
.y11_c00407{bottom:683.125785px;}
.y10_c00407{bottom:693.461385px;}
.y2_c00407{bottom:724.829535px;}
.yf_c00407{bottom:855.984735px;}
.ye_c00407{bottom:872.379135px;}
.yd_c00407{bottom:882.714735px;}
.yc_c00407{bottom:888.773535px;}
.yb_c00407{bottom:923.339385px;}
.ya_c00407{bottom:955.771785px;}
.y9_c00407{bottom:966.112335px;}
.y5_c00407{bottom:970.032735px;}
.y8_c00407{bottom:978.942735px;}
.y6_c00407{bottom:1074.096585px;}
.y7_c00407{bottom:1081.224585px;}
.y4_c00407{bottom:1105.103385px;}
.h30_c00407{height:5.696829px;}
.h39_c00407{height:7.595729px;}
.h3b_c00407{height:8.545178px;}
.h10_c00407{height:11.977660px;}
.hb_c00407{height:20.887891px;}
.h3_c00407{height:23.128875px;}
.h37_c00407{height:24.367922px;}
.ha_c00407{height:24.873750px;}
.h15_c00407{height:26.584589px;}
.h17_c00407{height:28.085063px;}
.h11_c00407{height:28.911094px;}
.h5_c00407{height:29.530617px;}
.h12_c00407{height:31.675166px;}
.h7_c00407{height:31.802203px;}
.he_c00407{height:32.281418px;}
.h2c_c00407{height:32.452665px;}
.h4_c00407{height:33.035449px;}
.h21_c00407{height:33.230868px;}
.hf_c00407{height:33.867281px;}
.h26_c00407{height:34.180317px;}
.h2_c00407{height:34.693313px;}
.h1d_c00407{height:36.079217px;}
.h22_c00407{height:36.533320px;}
.h1a_c00407{height:37.028666px;}
.h1b_c00407{height:37.978116px;}
.h1f_c00407{height:38.927565px;}
.h2f_c00407{height:42.751758px;}
.h36_c00407{height:43.986164px;}
.h31_c00407{height:46.638281px;}
.h33_c00407{height:52.856913px;}
.h8_c00407{height:52.866000px;}
.h20_c00407{height:62.778375px;}
.h2e_c00407{height:63.604406px;}
.h29_c00407{height:66.070898px;}
.h2d_c00407{height:66.082500px;}
.h1e_c00407{height:66.702023px;}
.h35_c00407{height:67.321547px;}
.h18_c00407{height:67.820028px;}
.h2b_c00407{height:68.644325px;}
.h6_c00407{height:68.973816px;}
.h25_c00407{height:69.180117px;}
.h1c_c00407{height:69.568770px;}
.hc_c00407{height:70.346269px;}
.h2a_c00407{height:71.245195px;}
.h9_c00407{height:71.512031px;}
.hd_c00407{height:72.277734px;}
.h34_c00407{height:73.843945px;}
.h23_c00407{height:74.815576px;}
.h14_c00407{height:76.176054px;}
.h19_c00407{height:76.227106px;}
.h3a_c00407{height:79.299207px;}
.h32_c00407{height:79.818750px;}
.h28_c00407{height:82.603125px;}
.h13_c00407{height:86.086494px;}
.h27_c00407{height:95.819832px;}
.h24_c00407{height:96.580302px;}
.h38_c00407{height:100.001177px;}
.h16_c00407{height:104.158828px;}
.h1_c00407{height:1110.000000px;}
.h0_c00407{height:1263.000000px;}
.w1_c00407{width:775.500000px;}
.w0_c00407{width:892.500000px;}
.x0_c00407{left:0.000000px;}
.x3_c00407{left:32.691435px;}
.x2_c00407{left:56.525685px;}
.x1_c00407{left:58.500000px;}
.xd_c00407{left:80.825235px;}
.x43_c00407{left:82.072635px;}
.x83_c00407{left:83.186385px;}
.x85_c00407{left:84.948585px;}
.x56_c00407{left:103.154685px;}
.x89_c00407{left:110.386635px;}
.x86_c00407{left:116.687985px;}
.xe_c00407{left:124.543635px;}
.x57_c00407{left:125.795985px;}
.x35_c00407{left:133.993185px;}
.x2b_c00407{left:135.324735px;}
.x81_c00407{left:137.359185px;}
.x1b_c00407{left:146.115735px;}
.x87_c00407{left:147.204735px;}
.x2c_c00407{left:156.401835px;}
.xf_c00407{left:157.659135px;}
.x4c_c00407{left:159.356985px;}
.x7e_c00407{left:168.019485px;}
.x44_c00407{left:169.351035px;}
.x1c_c00407{left:172.484385px;}
.x1d_c00407{left:179.612385px;}
.x80_c00407{left:191.022135px;}
.x2f_c00407{left:192.031935px;}
.x2d_c00407{left:193.274385px;}
.x1e_c00407{left:201.714135px;}
.x64_c00407{left:203.139735px;}
.x30_c00407{left:210.861735px;}
.x6e_c00407{left:212.925885px;}
.x4d_c00407{left:213.955485px;}
.x65_c00407{left:223.805985px;}
.x2e_c00407{left:226.033485px;}
.x5_c00407{left:227.196735px;}
.x5e_c00407{left:234.557385px;}
.x3b_c00407{left:235.735485px;}
.x10_c00407{left:237.700635px;}
.x31_c00407{left:245.284035px;}
.x1f_c00407{left:258.411435px;}
.x84_c00407{left:262.965435px;}
.x36_c00407{left:266.578935px;}
.x20_c00407{left:268.450035px;}
.x88_c00407{left:270.291435px;}
.x4_c00407{left:271.429935px;}
.x21_c00407{left:277.973835px;}
.x4e_c00407{left:280.641885px;}
.x45_c00407{left:282.611985px;}
.x32_c00407{left:285.888885px;}
.x33_c00407{left:288.358935px;}
.x11_c00407{left:290.066685px;}
.x4f_c00407{left:295.333485px;}
.x22_c00407{left:302.015985px;}
.x37_c00407{left:305.070135px;}
.x23_c00407{left:312.316935px;}
.x76_c00407{left:324.652335px;}
.x58_c00407{left:335.270085px;}
.x68_c00407{left:336.562035px;}
.x2a_c00407{left:343.091085px;}
.x24_c00407{left:345.843285px;}
.x69_c00407{left:347.224335px;}
.x46_c00407{left:351.753585px;}
.x12_c00407{left:357.193635px;}
.x5f_c00407{left:359.683485px;}
.x77_c00407{left:361.163535px;}
.x59_c00407{left:367.816335px;}
.x47_c00407{left:368.860785px;}
.x50_c00407{left:379.557735px;}
.x66_c00407{left:389.170635px;}
.x25_c00407{left:390.368535px;}
.x51_c00407{left:400.580385px;}
.x3c_c00407{left:401.768385px;}
.x78_c00407{left:404.188935px;}
.x5a_c00407{left:413.489985px;}
.x26_c00407{left:422.607885px;}
.x60_c00407{left:424.587885px;}
.x13_c00407{left:434.611635px;}
.x6a_c00407{left:440.071485px;}
.x5b_c00407{left:445.085835px;}
.x7c_c00407{left:446.749035px;}
.x61_c00407{left:456.678735px;}
.x6b_c00407{left:459.841785px;}
.x7d_c00407{left:464.375985px;}
.x14_c00407{left:466.895535px;}
.x48_c00407{left:468.430035px;}
.x3d_c00407{left:479.597235px;}
.x3a_c00407{left:483.159255px;}
.x3e_c00407{left:484.953135px;}
.x15_c00407{left:489.264585px;}
.x82_c00407{left:490.561485px;}
.x52_c00407{left:492.640485px;}
.x34_c00407{left:501.218835px;}
.x63_c00407{left:504.866985px;}
.x3f_c00407{left:513.004785px;}
.x6c_c00407{left:523.681935px;}
.x71_c00407{left:528.884385px;}
.x40_c00407{left:532.760235px;}
.x72_c00407{left:535.660935px;}
.x53_c00407{left:537.061785px;}
.x16_c00407{left:545.348085px;}
.x49_c00407{left:557.134035px;}
.x38_c00407{left:563.529435px;}
.x5c_c00407{left:567.172635px;}
.x27_c00407{left:577.518135px;}
.x41_c00407{left:578.557635px;}
.x17_c00407{left:579.715935px;}
.x28_c00407{left:588.422985px;}
.x54_c00407{left:589.606035px;}
.x5d_c00407{left:599.832735px;}
.x6f_c00407{left:600.877185px;}
.x73_c00407{left:610.792035px;}
.x4a_c00407{left:622.414635px;}
.x67_c00407{left:634.146135px;}
.x55_c00407{left:644.377785px;}
.x74_c00407{left:645.882585px;}
.x18_c00407{left:655.559835px;}
.x70_c00407{left:656.930985px;}
.x79_c00407{left:658.326885px;}
.x6d_c00407{left:667.261635px;}
.x4b_c00407{left:673.562985px;}
.x7f_c00407{left:676.646835px;}
.x9_c00407{left:678.087285px;}
.x19_c00407{left:687.536835px;}
.x6_c00407{left:689.561385px;}
.xa_c00407{left:699.590085px;}
.x7_c00407{left:701.198835px;}
.x39_c00407{left:703.060035px;}
.xb_c00407{left:704.648985px;}
.xc_c00407{left:706.371585px;}
.x62_c00407{left:709.891035px;}
.x42_c00407{left:711.108735px;}
.x8_c00407{left:712.672935px;}
.x75_c00407{left:717.132885px;}
.x1a_c00407{left:721.627485px;}
.x7b_c00407{left:733.334235px;}
.x29_c00407{left:744.288585px;}
.x7a_c00407{left:755.693385px;}
@media print{
.v0_c00407{vertical-align:0.000000pt;}
.v1_c00407{vertical-align:17.723200pt;}
.ls14_c00407{letter-spacing:-3.301760pt;}
.ls24_c00407{letter-spacing:-3.061526pt;}
.ls27_c00407{letter-spacing:-2.464000pt;}
.ls16_c00407{letter-spacing:-2.353126pt;}
.ls10_c00407{letter-spacing:-2.229926pt;}
.ls30_c00407{letter-spacing:-2.149846pt;}
.ls28_c00407{letter-spacing:-2.125200pt;}
.ls21_c00407{letter-spacing:-2.064275pt;}
.ls5_c00407{letter-spacing:-2.057446pt;}
.ls32_c00407{letter-spacing:-2.008160pt;}
.ls25_c00407{letter-spacing:-1.599176pt;}
.ls2e_c00407{letter-spacing:-1.478400pt;}
.ls2c_c00407{letter-spacing:-1.355200pt;}
.ls33_c00407{letter-spacing:-1.312080pt;}
.ls22_c00407{letter-spacing:-1.158080pt;}
.ls11_c00407{letter-spacing:-1.004080pt;}
.lsa_c00407{letter-spacing:-0.930198pt;}
.ls34_c00407{letter-spacing:-0.726880pt;}
.lsd_c00407{letter-spacing:-0.710125pt;}
.ls35_c00407{letter-spacing:-0.703368pt;}
.ls18_c00407{letter-spacing:-0.344046pt;}
.ls2b_c00407{letter-spacing:-0.230912pt;}
.ls4_c00407{letter-spacing:0.000000pt;}
.ls38_c00407{letter-spacing:0.293076pt;}
.ls6_c00407{letter-spacing:1.355200pt;}
.lsf_c00407{letter-spacing:1.443200pt;}
.ls2a_c00407{letter-spacing:1.469609pt;}
.lsc_c00407{letter-spacing:1.605547pt;}
.ls39_c00407{letter-spacing:1.682001pt;}
.ls7_c00407{letter-spacing:2.252800pt;}
.ls2_c00407{letter-spacing:2.389207pt;}
.ls1d_c00407{letter-spacing:2.842400pt;}
.ls3_c00407{letter-spacing:2.918018pt;}
.ls29_c00407{letter-spacing:3.027209pt;}
.ls15_c00407{letter-spacing:3.071209pt;}
.lsb_c00407{letter-spacing:3.080000pt;}
.ls1b_c00407{letter-spacing:3.150400pt;}
.ls9_c00407{letter-spacing:3.185609pt;}
.ls0_c00407{letter-spacing:3.235672pt;}
.ls2f_c00407{letter-spacing:3.238400pt;}
.ls31_c00407{letter-spacing:3.344000pt;}
.ls17_c00407{letter-spacing:3.361609pt;}
.ls23_c00407{letter-spacing:3.388000pt;}
.ls12_c00407{letter-spacing:3.449609pt;}
.ls1f_c00407{letter-spacing:3.898400pt;}
.ls2d_c00407{letter-spacing:7.603376pt;}
.ls36_c00407{letter-spacing:10.137776pt;}
.ls37_c00407{letter-spacing:11.404976pt;}
.ls8_c00407{letter-spacing:27.878400pt;}
.ls13_c00407{letter-spacing:35.481600pt;}
.lse_c00407{letter-spacing:43.084976pt;}
.ls20_c00407{letter-spacing:44.352176pt;}
.ls26_c00407{letter-spacing:45.619376pt;}
.ls1c_c00407{letter-spacing:48.153776pt;}
.ls19_c00407{letter-spacing:49.420976pt;}
.ls1a_c00407{letter-spacing:50.688176pt;}
.ls1e_c00407{letter-spacing:51.955376pt;}
.ls1_c00407{letter-spacing:346.770629pt;}
.ws2_c00407{word-spacing:-18.317251pt;}
.ws0_c00407{word-spacing:-15.928044pt;}
.ws5_c00407{word-spacing:-3.567818pt;}
.ws3_c00407{word-spacing:-1.147456pt;}
.ws4_c00407{word-spacing:-1.018800pt;}
.ws6_c00407{word-spacing:0.000000pt;}
.ws1_c00407{word-spacing:5.542851pt;}
._4_c00407{margin-left:-18.222473pt;}
._3_c00407{margin-left:-10.356474pt;}
._7_c00407{margin-left:-7.835784pt;}
._c_c00407{margin-left:-6.753531pt;}
._11_c00407{margin-left:-2.950710pt;}
._9_c00407{width:1.337956pt;}
._8_c00407{width:2.612260pt;}
._d_c00407{width:7.295024pt;}
._1_c00407{width:8.218770pt;}
._a_c00407{width:9.684322pt;}
._b_c00407{width:12.423928pt;}
._13_c00407{width:15.609762pt;}
._10_c00407{width:18.922415pt;}
._e_c00407{width:21.152511pt;}
._f_c00407{width:33.188550pt;}
._6_c00407{width:34.207601pt;}
._0_c00407{width:35.780800pt;}
._2_c00407{width:36.889350pt;}
._5_c00407{width:227.611726pt;}
._12_c00407{width:329.964800pt;}
.fs2e_c00407{font-size:7.603376pt;}
.fs3a_c00407{font-size:10.137776pt;}
.fs10_c00407{font-size:10.208176pt;}
.fs3c_c00407{font-size:11.404976pt;}
.fs1_c00407{font-size:19.712000pt;}
.fs37_c00407{font-size:20.768000pt;}
.fs8_c00407{font-size:22.528000pt;}
.fs17_c00407{font-size:23.936000pt;}
.fs11_c00407{font-size:24.640000pt;}
.fs3_c00407{font-size:25.168000pt;}
.fs36_c00407{font-size:25.872000pt;}
.fs5_c00407{font-size:27.104000pt;}
.fs9_c00407{font-size:27.878400pt;}
.fs12_c00407{font-size:28.688000pt;}
.fsf_c00407{font-size:28.864000pt;}
.fs2b_c00407{font-size:29.392176pt;}
.fs0_c00407{font-size:29.568000pt;}
.fs2_c00407{font-size:29.920000pt;}
.fs21_c00407{font-size:33.088000pt;}
.fs15_c00407{font-size:35.481600pt;}
.fs35_c00407{font-size:37.488000pt;}
.fs2d_c00407{font-size:38.720000pt;}
.fs2f_c00407{font-size:42.240000pt;}
.fse_c00407{font-size:43.084976pt;}
.fs20_c00407{font-size:44.352176pt;}
.fs33_c00407{font-size:44.704000pt;}
.fs6_c00407{font-size:45.056000pt;}
.fs25_c00407{font-size:45.619376pt;}
.fs30_c00407{font-size:47.872176pt;}
.fs1c_c00407{font-size:48.153776pt;}
.fs1a_c00407{font-size:49.420976pt;}
.fs1b_c00407{font-size:50.688176pt;}
.fs1e_c00407{font-size:51.955376pt;}
.fs38_c00407{font-size:52.800000pt;}
.fs1f_c00407{font-size:53.504000pt;}
.fsd_c00407{font-size:54.208000pt;}
.fs2c_c00407{font-size:56.320000pt;}
.fs1d_c00407{font-size:56.848000pt;}
.fs34_c00407{font-size:57.376000pt;}
.fs32_c00407{font-size:58.256000pt;}
.fs4_c00407{font-size:58.784176pt;}
.fs28_c00407{font-size:59.840000pt;}
.fs2a_c00407{font-size:60.544176pt;}
.fs29_c00407{font-size:60.720000pt;}
.fs18_c00407{font-size:61.424176pt;}
.fsb_c00407{font-size:61.600000pt;}
.fs24_c00407{font-size:62.656000pt;}
.fsc_c00407{font-size:63.008000pt;}
.fsa_c00407{font-size:63.712176pt;}
.fs7_c00407{font-size:64.768000pt;}
.fs31_c00407{font-size:66.880000pt;}
.fs19_c00407{font-size:67.232176pt;}
.fs3b_c00407{font-size:67.584176pt;}
.fs22_c00407{font-size:67.760000pt;}
.fs14_c00407{font-size:68.992176pt;}
.fs27_c00407{font-size:70.400000pt;}
.fs39_c00407{font-size:72.512176pt;}
.fs13_c00407{font-size:77.968000pt;}
.fs26_c00407{font-size:81.664176pt;}
.fs23_c00407{font-size:87.472176pt;}
.fs16_c00407{font-size:94.336000pt;}
.y0_c00407{bottom:0.000000pt;}
.y37_c00407{bottom:3.085320pt;}
.y1_c00407{bottom:68.000000pt;}
.y36_c00407{bottom:126.641720pt;}
.y34_c00407{bottom:147.229320pt;}
.y32_c00407{bottom:151.035320pt;}
.y35_c00407{bottom:151.347720pt;}
.y33_c00407{bottom:154.203320pt;}
.y31_c00407{bottom:154.520120pt;}
.y30_c00407{bottom:164.974520pt;}
.y2f_c00407{bottom:179.230520pt;}
.y2c_c00407{bottom:183.661320pt;}
.y2d_c00407{bottom:183.978120pt;}
.y2e_c00407{bottom:184.294920pt;}
.y2b_c00407{bottom:206.475320pt;}
.y2a_c00407{bottom:213.128120pt;}
.y29_c00407{bottom:233.720120pt;}
.y28_c00407{bottom:238.467720pt;}
.y22_c00407{bottom:241.323320pt;}
.y23_c00407{bottom:241.640120pt;}
.y24_c00407{bottom:241.956920pt;}
.y27_c00407{bottom:242.907320pt;}
.y26_c00407{bottom:244.808120pt;}
.y25_c00407{bottom:249.243320pt;}
.y21_c00407{bottom:260.014520pt;}
.y20_c00407{bottom:270.468920pt;}
.y1f_c00407{bottom:293.595320pt;}
.y1e_c00407{bottom:298.980920pt;}
.y1d_c00407{bottom:327.488520pt;}
.y1c_c00407{bottom:356.321720pt;}
.y1b_c00407{bottom:385.146120pt;}
.y1a_c00407{bottom:408.589320pt;}
.y18_c00407{bottom:414.608520pt;}
.y19_c00407{bottom:415.246520pt;}
.y17_c00407{bottom:444.387720pt;}
.y16_c00407{bottom:473.850120pt;}
.y3_c00407{bottom:477.972920pt;}
.y15_c00407{bottom:502.366520pt;}
.y14_c00407{bottom:531.195320pt;}
.y13_c00407{bottom:590.749320pt;}
.y12_c00407{bottom:601.520520pt;}
.y11_c00407{bottom:607.222920pt;}
.y10_c00407{bottom:616.410120pt;}
.y2_c00407{bottom:644.292920pt;}
.yf_c00407{bottom:760.875320pt;}
.ye_c00407{bottom:775.448120pt;}
.yd_c00407{bottom:784.635320pt;}
.yc_c00407{bottom:790.020920pt;}
.yb_c00407{bottom:820.746120pt;}
.ya_c00407{bottom:849.574920pt;}
.y9_c00407{bottom:858.766520pt;}
.y5_c00407{bottom:862.251320pt;}
.y8_c00407{bottom:870.171320pt;}
.y6_c00407{bottom:954.752520pt;}
.y7_c00407{bottom:961.088520pt;}
.y4_c00407{bottom:982.314120pt;}
.h30_c00407{height:5.063848pt;}
.h39_c00407{height:6.751759pt;}
.h3b_c00407{height:7.595714pt;}
.h10_c00407{height:10.646809pt;}
.hb_c00407{height:18.567014pt;}
.h3_c00407{height:20.559000pt;}
.h37_c00407{height:21.660375pt;}
.ha_c00407{height:22.110000pt;}
.h15_c00407{height:23.630746pt;}
.h17_c00407{height:24.964500pt;}
.h11_c00407{height:25.698750pt;}
.h5_c00407{height:26.249438pt;}
.h12_c00407{height:28.155703pt;}
.h7_c00407{height:28.268625pt;}
.he_c00407{height:28.694594pt;}
.h2c_c00407{height:28.846813pt;}
.h4_c00407{height:29.364844pt;}
.h21_c00407{height:29.538549pt;}
.hf_c00407{height:30.104250pt;}
.h26_c00407{height:30.382504pt;}
.h2_c00407{height:30.838500pt;}
.h1d_c00407{height:32.070415pt;}
.h22_c00407{height:32.474063pt;}
.h1a_c00407{height:32.914370pt;}
.h1b_c00407{height:33.758325pt;}
.h1f_c00407{height:34.602280pt;}
.h2f_c00407{height:38.001563pt;}
.h36_c00407{height:39.098813pt;}
.h31_c00407{height:41.456250pt;}
.h33_c00407{height:46.983923pt;}
.h8_c00407{height:46.992000pt;}
.h20_c00407{height:55.803000pt;}
.h2e_c00407{height:56.537250pt;}
.h29_c00407{height:58.729688pt;}
.h2d_c00407{height:58.740000pt;}
.h1e_c00407{height:59.290687pt;}
.h35_c00407{height:59.841375pt;}
.h18_c00407{height:60.284470pt;}
.h2b_c00407{height:61.017177pt;}
.h6_c00407{height:61.310059pt;}
.h25_c00407{height:61.493438pt;}
.h1c_c00407{height:61.838906pt;}
.hc_c00407{height:62.530016pt;}
.h2a_c00407{height:63.329063pt;}
.h9_c00407{height:63.566250pt;}
.hd_c00407{height:64.246875pt;}
.h34_c00407{height:65.639063pt;}
.h23_c00407{height:66.502734pt;}
.h14_c00407{height:67.712048pt;}
.h19_c00407{height:67.757427pt;}
.h3a_c00407{height:70.488184pt;}
.h32_c00407{height:70.950000pt;}
.h28_c00407{height:73.425000pt;}
.h13_c00407{height:76.521328pt;}
.h27_c00407{height:85.173184pt;}
.h24_c00407{height:85.849157pt;}
.h38_c00407{height:88.889935pt;}
.h16_c00407{height:92.585625pt;}
.h1_c00407{height:986.666667pt;}
.h0_c00407{height:1122.666667pt;}
.w1_c00407{width:689.333333pt;}
.w0_c00407{width:793.333333pt;}
.x0_c00407{left:0.000000pt;}
.x3_c00407{left:29.059053pt;}
.x2_c00407{left:50.245053pt;}
.x1_c00407{left:52.000000pt;}
.xd_c00407{left:71.844653pt;}
.x43_c00407{left:72.953453pt;}
.x83_c00407{left:73.943453pt;}
.x85_c00407{left:75.509853pt;}
.x56_c00407{left:91.693053pt;}
.x89_c00407{left:98.121453pt;}
.x86_c00407{left:103.722653pt;}
.xe_c00407{left:110.705453pt;}
.x57_c00407{left:111.818653pt;}
.x35_c00407{left:119.105053pt;}
.x2b_c00407{left:120.288653pt;}
.x81_c00407{left:122.097053pt;}
.x1b_c00407{left:129.880653pt;}
.x87_c00407{left:130.848653pt;}
.x2c_c00407{left:139.023853pt;}
.xf_c00407{left:140.141453pt;}
.x4c_c00407{left:141.650653pt;}
.x7e_c00407{left:149.350653pt;}
.x44_c00407{left:150.534253pt;}
.x1c_c00407{left:153.319453pt;}
.x1d_c00407{left:159.655453pt;}
.x80_c00407{left:169.797453pt;}
.x2f_c00407{left:170.695053pt;}
.x2d_c00407{left:171.799453pt;}
.x1e_c00407{left:179.301453pt;}
.x64_c00407{left:180.568653pt;}
.x30_c00407{left:187.432653pt;}
.x6e_c00407{left:189.267453pt;}
.x4d_c00407{left:190.182653pt;}
.x65_c00407{left:198.938653pt;}
.x2e_c00407{left:200.918653pt;}
.x5_c00407{left:201.952653pt;}
.x5e_c00407{left:208.495453pt;}
.x3b_c00407{left:209.542653pt;}
.x10_c00407{left:211.289453pt;}
.x31_c00407{left:218.030253pt;}
.x1f_c00407{left:229.699053pt;}
.x84_c00407{left:233.747053pt;}
.x36_c00407{left:236.959053pt;}
.x20_c00407{left:238.622253pt;}
.x88_c00407{left:240.259053pt;}
.x4_c00407{left:241.271053pt;}
.x21_c00407{left:247.087853pt;}
.x4e_c00407{left:249.459453pt;}
.x45_c00407{left:251.210653pt;}
.x32_c00407{left:254.123453pt;}
.x33_c00407{left:256.319053pt;}
.x11_c00407{left:257.837053pt;}
.x4f_c00407{left:262.518653pt;}
.x22_c00407{left:268.458653pt;}
.x37_c00407{left:271.173453pt;}
.x23_c00407{left:277.615053pt;}
.x76_c00407{left:288.579853pt;}
.x58_c00407{left:298.017853pt;}
.x68_c00407{left:299.166253pt;}
.x2a_c00407{left:304.969853pt;}
.x24_c00407{left:307.416253pt;}
.x69_c00407{left:308.643853pt;}
.x46_c00407{left:312.669853pt;}
.x12_c00407{left:317.505453pt;}
.x5f_c00407{left:319.718653pt;}
.x77_c00407{left:321.034253pt;}
.x59_c00407{left:326.947853pt;}
.x47_c00407{left:327.876253pt;}
.x50_c00407{left:337.384653pt;}
.x66_c00407{left:345.929453pt;}
.x25_c00407{left:346.994253pt;}
.x51_c00407{left:356.071453pt;}
.x3c_c00407{left:357.127453pt;}
.x78_c00407{left:359.279053pt;}
.x5a_c00407{left:367.546653pt;}
.x26_c00407{left:375.651453pt;}
.x60_c00407{left:377.411453pt;}
.x13_c00407{left:386.321453pt;}
.x6a_c00407{left:391.174653pt;}
.x5b_c00407{left:395.631853pt;}
.x7c_c00407{left:397.110253pt;}
.x61_c00407{left:405.936653pt;}
.x6b_c00407{left:408.748253pt;}
.x7d_c00407{left:412.778653pt;}
.x14_c00407{left:415.018253pt;}
.x48_c00407{left:416.382253pt;}
.x3d_c00407{left:426.308653pt;}
.x3a_c00407{left:429.474893pt;}
.x3e_c00407{left:431.069453pt;}
.x15_c00407{left:434.901853pt;}
.x82_c00407{left:436.054653pt;}
.x52_c00407{left:437.902653pt;}
.x34_c00407{left:445.527853pt;}
.x63_c00407{left:448.770653pt;}
.x3f_c00407{left:456.004253pt;}
.x6c_c00407{left:465.495053pt;}
.x71_c00407{left:470.119453pt;}
.x40_c00407{left:473.564653pt;}
.x72_c00407{left:476.143053pt;}
.x53_c00407{left:477.388253pt;}
.x16_c00407{left:484.753853pt;}
.x49_c00407{left:495.230253pt;}
.x38_c00407{left:500.915053pt;}
.x5c_c00407{left:504.153453pt;}
.x27_c00407{left:513.349453pt;}
.x41_c00407{left:514.273453pt;}
.x17_c00407{left:515.303053pt;}
.x28_c00407{left:523.042653pt;}
.x54_c00407{left:524.094253pt;}
.x5d_c00407{left:533.184653pt;}
.x6f_c00407{left:534.113053pt;}
.x73_c00407{left:542.926253pt;}
.x4a_c00407{left:553.257453pt;}
.x67_c00407{left:563.685453pt;}
.x55_c00407{left:572.780253pt;}
.x74_c00407{left:574.117853pt;}
.x18_c00407{left:582.719853pt;}
.x70_c00407{left:583.938653pt;}
.x79_c00407{left:585.179453pt;}
.x6d_c00407{left:593.121453pt;}
.x4b_c00407{left:598.722653pt;}
.x7f_c00407{left:601.463853pt;}
.x9_c00407{left:602.744253pt;}
.x19_c00407{left:611.143853pt;}
.x6_c00407{left:612.943453pt;}
.xa_c00407{left:621.857853pt;}
.x7_c00407{left:623.287853pt;}
.x39_c00407{left:624.942253pt;}
.xb_c00407{left:626.354653pt;}
.xc_c00407{left:627.885853pt;}
.x62_c00407{left:631.014253pt;}
.x42_c00407{left:632.096653pt;}
.x8_c00407{left:633.487053pt;}
.x75_c00407{left:637.451453pt;}
.x1a_c00407{left:641.446653pt;}
.x7b_c00407{left:651.852653pt;}
.x29_c00407{left:661.589853pt;}
.x7a_c00407{left:671.727453pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1b0efe5d344a2fb47dccf53a.woff2')format("woff");}.ff1_c00408{font-family:ff1_c00408;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00408;src:url('chunks/assets/font_087f7475a3a2cbc8044b9839.woff2')format("woff");}.ff2_c00408{font-family:ff2_c00408;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00408;src:url('chunks/assets/font_fe3ff0d648f5ee5c0422d2e0.woff2')format("woff");}.ff3_c00408{font-family:ff3_c00408;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00408;src:url('chunks/assets/font_69dbe4c5066256d5f4b266ca.woff2')format("woff");}.ff4_c00408{font-family:ff4_c00408;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00408;src:url('chunks/assets/font_7ef14c5e451a30ea9bfcaf7c.woff2')format("woff");}.ff5_c00408{font-family:ff5_c00408;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m58_c00408{transform:matrix(0.022060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.022060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.022060,0.000000,0.000000,0.250000,0,0);}
.m40_c00408{transform:matrix(0.036586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036586,0.000000,0.000000,0.250000,0,0);}
.m2b_c00408{transform:matrix(0.052084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.052084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.052084,0.000000,0.000000,0.250000,0,0);}
.m28_c00408{transform:matrix(0.062501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062501,0.000000,0.000000,0.250000,0,0);}
.m73_c00408{transform:matrix(0.071555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071555,0.000000,0.000000,0.250000,0,0);}
.m5d_c00408{transform:matrix(0.094697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094697,0.000000,0.000000,0.250000,0,0);}
.m5a_c00408{transform:matrix(0.095589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095589,0.000000,0.000000,0.250000,0,0);}
.m59_c00408{transform:matrix(0.099264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099264,0.000000,0.000000,0.250000,0,0);}
.m30_c00408{transform:matrix(0.099345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099345,0.000000,0.000000,0.250000,0,0);}
.m72_c00408{transform:matrix(0.100946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100946,0.000000,0.000000,0.250000,0,0);}
.m75_c00408{transform:matrix(0.101120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101120,0.000000,0.000000,0.250000,0,0);}
.m1_c00408{transform:matrix(0.121973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121973,0.000000,0.000000,0.250000,0,0);}
.m60_c00408{transform:matrix(0.122973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122973,0.000000,0.000000,0.250000,0,0);}
.m2a_c00408{transform:matrix(0.124999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124999,0.000000,0.000000,0.250000,0,0);}
.m7a_c00408{transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);}
.m54_c00408{transform:matrix(0.125577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125577,0.000000,0.000000,0.250000,0,0);}
.m57_c00408{transform:matrix(0.128676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128676,0.000000,0.000000,0.250000,0,0);}
.m67_c00408{transform:matrix(0.142730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142730,0.000000,0.000000,0.250000,0,0);}
.m77_c00408{transform:matrix(0.146701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146701,0.000000,0.000000,0.250000,0,0);}
.m5f_c00408{transform:matrix(0.148648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148648,0.000000,0.000000,0.250000,0,0);}
.m3f_c00408{transform:matrix(0.154471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154471,0.000000,0.000000,0.250000,0,0);}
.m41_c00408{transform:matrix(0.159407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159407,0.000000,0.000000,0.250000,0,0);}
.m66_c00408{transform:matrix(0.170072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170072,0.000000,0.000000,0.250000,0,0);}
.m70_c00408{transform:matrix(0.171274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171274,0.000000,0.000000,0.250000,0,0);}
.m74_c00408{transform:matrix(0.191264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191264,0.000000,0.000000,0.250000,0,0);}
.m48_c00408{transform:matrix(0.194336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194336,0.000000,0.000000,0.250000,0,0);}
.m78_c00408{transform:matrix(0.194688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194688,0.000000,0.000000,0.250000,0,0);}
.m63_c00408{transform:matrix(0.197998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197998,0.000000,0.000000,0.250000,0,0);}
.m35_c00408{transform:matrix(0.200010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200010,0.000000,0.000000,0.250000,0,0);}
.m6b_c00408{transform:matrix(0.200405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200405,0.000000,0.000000,0.250000,0,0);}
.m6f_c00408{transform:matrix(0.200458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200458,0.000000,0.000000,0.250000,0,0);}
.me_c00408{transform:matrix(0.206672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206672,0.000000,0.000000,0.250000,0,0);}
.m4b_c00408{transform:matrix(0.207520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207520,0.000000,0.000000,0.250000,0,0);}
.m3_c00408{transform:matrix(0.209901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209901,0.000000,0.000000,0.250000,0,0);}
.m52_c00408{transform:matrix(0.217525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217525,0.000000,0.000000,0.250000,0,0);}
.m27_c00408{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00408{transform:matrix(0.222550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222550,0.000000,0.000000,0.250000,0,0);}
.m71_c00408{transform:matrix(0.229596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229596,0.000000,0.000000,0.250000,0,0);}
.m56_c00408{transform:matrix(0.233127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233127,0.000000,0.000000,0.250000,0,0);}
.m64_c00408{transform:matrix(0.241502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241502,0.000000,0.000000,0.250000,0,0);}
.m2c_c00408{transform:matrix(0.242034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242034,0.000000,0.000000,0.250000,0,0);}
.m1f_c00408{transform:matrix(0.246083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246083,0.000000,0.000000,0.250000,0,0);}
.m26_c00408{transform:matrix(0.248383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248383,0.000000,0.000000,0.250000,0,0);}
.m0_c00408{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m44_c00408{transform:matrix(0.251036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251036,0.000000,0.000000,0.250000,0,0);}
.m86_c00408{transform:matrix(0.251814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251814,0.000000,0.000000,0.250000,0,0);}
.m89_c00408{transform:matrix(0.254721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254721,0.000000,0.000000,0.250000,0,0);}
.m5e_c00408{transform:matrix(0.259620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259620,0.000000,0.000000,0.250000,0,0);}
.m8a_c00408{transform:matrix(0.260639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260639,0.000000,0.000000,0.250000,0,0);}
.m1c_c00408{transform:matrix(0.264403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264403,0.000000,0.000000,0.250000,0,0);}
.m68_c00408{transform:matrix(0.264614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264614,0.000000,0.000000,0.250000,0,0);}
.m3a_c00408{transform:matrix(0.266278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266278,0.000000,0.000000,0.250000,0,0);}
.m31_c00408{transform:matrix(0.267487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267487,0.000000,0.000000,0.250000,0,0);}
.m17_c00408{transform:matrix(0.270864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270864,0.000000,0.000000,0.250000,0,0);}
.m5c_c00408{transform:matrix(0.271772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271772,0.000000,0.000000,0.250000,0,0);}
.m6c_c00408{transform:matrix(0.272802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272802,0.000000,0.000000,0.250000,0,0);}
.m32_c00408{transform:matrix(0.274380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274380,0.000000,0.000000,0.250000,0,0);}
.m11_c00408{transform:matrix(0.275720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275720,0.000000,0.000000,0.250000,0,0);}
.m4c_c00408{transform:matrix(0.275889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275889,0.000000,0.000000,0.250000,0,0);}
.m84_c00408{transform:matrix(0.277064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277064,0.000000,0.000000,0.250000,0,0);}
.m38_c00408{transform:matrix(0.278295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278295,0.000000,0.000000,0.250000,0,0);}
.m7f_c00408{transform:matrix(0.278509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278509,0.000000,0.000000,0.250000,0,0);}
.m85_c00408{transform:matrix(0.282980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282980,0.000000,0.000000,0.250000,0,0);}
.m4f_c00408{transform:matrix(0.284976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284976,0.000000,0.000000,0.250000,0,0);}
.m4d_c00408{transform:matrix(0.286154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286154,0.000000,0.000000,0.250000,0,0);}
.m42_c00408{transform:matrix(0.287698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287698,0.000000,0.000000,0.250000,0,0);}
.m34_c00408{transform:matrix(0.287791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287791,0.000000,0.000000,0.250000,0,0);}
.m12_c00408{transform:matrix(0.288034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288034,0.000000,0.000000,0.250000,0,0);}
.m61_c00408{transform:matrix(0.288293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288293,0.000000,0.000000,0.250000,0,0);}
.m51_c00408{transform:matrix(0.288637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288637,0.000000,0.000000,0.250000,0,0);}
.m7_c00408{transform:matrix(0.288714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288714,0.000000,0.000000,0.250000,0,0);}
.m8c_c00408{transform:matrix(0.288851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288851,0.000000,0.000000,0.250000,0,0);}
.m4_c00408{transform:matrix(0.289764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289764,0.000000,0.000000,0.250000,0,0);}
.mf_c00408{transform:matrix(0.291216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291216,0.000000,0.000000,0.250000,0,0);}
.ma_c00408{transform:matrix(0.291457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291457,0.000000,0.000000,0.250000,0,0);}
.mb_c00408{transform:matrix(0.293087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293087,0.000000,0.000000,0.250000,0,0);}
.m65_c00408{transform:matrix(0.293968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293968,0.000000,0.000000,0.250000,0,0);}
.m3c_c00408{transform:matrix(0.294104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294104,0.000000,0.000000,0.250000,0,0);}
.m5b_c00408{transform:matrix(0.294117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294117,0.000000,0.000000,0.250000,0,0);}
.m22_c00408{transform:matrix(0.294400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294400,0.000000,0.000000,0.250000,0,0);}
.m37_c00408{transform:matrix(0.298423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298423,0.000000,0.000000,0.250000,0,0);}
.m13_c00408{transform:matrix(0.298512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298512,0.000000,0.000000,0.250000,0,0);}
.m9_c00408{transform:matrix(0.300338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300338,0.000000,0.000000,0.250000,0,0);}
.m1d_c00408{transform:matrix(0.301489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301489,0.000000,0.000000,0.250000,0,0);}
.m24_c00408{transform:matrix(0.303251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303251,0.000000,0.000000,0.250000,0,0);}
.m45_c00408{transform:matrix(0.308246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308246,0.000000,0.000000,0.250000,0,0);}
.m46_c00408{transform:matrix(0.309721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309721,0.000000,0.000000,0.250000,0,0);}
.m15_c00408{transform:matrix(0.312391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312391,0.000000,0.000000,0.250000,0,0);}
.m50_c00408{transform:matrix(0.313582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313582,0.000000,0.000000,0.250000,0,0);}
.m2e_c00408{transform:matrix(0.314004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314004,0.000000,0.000000,0.250000,0,0);}
.m82_c00408{transform:matrix(0.315600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315600,0.000000,0.000000,0.250000,0,0);}
.m8d_c00408{transform:matrix(0.317406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317406,0.000000,0.000000,0.250000,0,0);}
.m39_c00408{transform:matrix(0.317421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317421,0.000000,0.000000,0.250000,0,0);}
.m80_c00408{transform:matrix(0.317757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317757,0.000000,0.000000,0.250000,0,0);}
.m87_c00408{transform:matrix(0.319913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319913,0.000000,0.000000,0.250000,0,0);}
.m6_c00408{transform:matrix(0.322389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322389,0.000000,0.000000,0.250000,0,0);}
.m1a_c00408{transform:matrix(0.325010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325010,0.000000,0.000000,0.250000,0,0);}
.m69_c00408{transform:matrix(0.326535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326535,0.000000,0.000000,0.250000,0,0);}
.m23_c00408{transform:matrix(0.328570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328570,0.000000,0.000000,0.250000,0,0);}
.m3e_c00408{transform:matrix(0.329746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329746,0.000000,0.000000,0.250000,0,0);}
.m33_c00408{transform:matrix(0.331374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331374,0.000000,0.000000,0.250000,0,0);}
.m8b_c00408{transform:matrix(0.331945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331945,0.000000,0.000000,0.250000,0,0);}
.m6d_c00408{transform:matrix(0.333942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333942,0.000000,0.000000,0.250000,0,0);}
.md_c00408{transform:matrix(0.334488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334488,0.000000,0.000000,0.250000,0,0);}
.m2f_c00408{transform:matrix(0.334686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334686,0.000000,0.000000,0.250000,0,0);}
.m88_c00408{transform:matrix(0.335895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335895,0.000000,0.000000,0.250000,0,0);}
.m3b_c00408{transform:matrix(0.336824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336824,0.000000,0.000000,0.250000,0,0);}
.m43_c00408{transform:matrix(0.336901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336901,0.000000,0.000000,0.250000,0,0);}
.m25_c00408{transform:matrix(0.337661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337661,0.000000,0.000000,0.250000,0,0);}
.m14_c00408{transform:matrix(0.340419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340419,0.000000,0.000000,0.250000,0,0);}
.m18_c00408{transform:matrix(0.341534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341534,0.000000,0.000000,0.250000,0,0);}
.m21_c00408{transform:matrix(0.342871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342871,0.000000,0.000000,0.250000,0,0);}
.m2_c00408{transform:matrix(0.343255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343255,0.000000,0.000000,0.250000,0,0);}
.m55_c00408{transform:matrix(0.343977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343977,0.000000,0.000000,0.250000,0,0);}
.m4a_c00408{transform:matrix(0.346010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346010,0.000000,0.000000,0.250000,0,0);}
.mc_c00408{transform:matrix(0.347784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347784,0.000000,0.000000,0.250000,0,0);}
.m81_c00408{transform:matrix(0.349887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349887,0.000000,0.000000,0.250000,0,0);}
.m4e_c00408{transform:matrix(0.352319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352319,0.000000,0.000000,0.250000,0,0);}
.m1b_c00408{transform:matrix(0.354679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354679,0.000000,0.000000,0.250000,0,0);}
.m5_c00408{transform:matrix(0.355425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355425,0.000000,0.000000,0.250000,0,0);}
.m7c_c00408{transform:matrix(0.357710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357710,0.000000,0.000000,0.250000,0,0);}
.m36_c00408{transform:matrix(0.358218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358218,0.000000,0.000000,0.250000,0,0);}
.m1e_c00408{transform:matrix(0.358326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358326,0.000000,0.000000,0.250000,0,0);}
.m20_c00408{transform:matrix(0.358377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358377,0.000000,0.000000,0.250000,0,0);}
.m19_c00408{transform:matrix(0.368286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368286,0.000000,0.000000,0.250000,0,0);}
.m8_c00408{transform:matrix(0.370797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370797,0.000000,0.000000,0.250000,0,0);}
.m49_c00408{transform:matrix(0.376560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376560,0.000000,0.000000,0.250000,0,0);}
.m7d_c00408{transform:matrix(0.388643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388643,0.000000,0.000000,0.250000,0,0);}
.m3d_c00408{transform:matrix(0.388697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388697,0.000000,0.000000,0.250000,0,0);}
.m83_c00408{transform:matrix(0.390492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390492,0.000000,0.000000,0.250000,0,0);}
.m10_c00408{transform:matrix(0.395918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395918,0.000000,0.000000,0.250000,0,0);}
.m6e_c00408{transform:matrix(0.398069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398069,0.000000,0.000000,0.250000,0,0);}
.m2d_c00408{transform:matrix(0.399479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399479,0.000000,0.000000,0.250000,0,0);}
.m7b_c00408{transform:matrix(0.399733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399733,0.000000,0.000000,0.250000,0,0);}
.m16_c00408{transform:matrix(0.401873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401873,0.000000,0.000000,0.250000,0,0);}
.m47_c00408{transform:matrix(0.408461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408461,0.000000,0.000000,0.250000,0,0);}
.m7e_c00408{transform:matrix(0.410164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410164,0.000000,0.000000,0.250000,0,0);}
.m76_c00408{transform:matrix(0.427083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427083,0.000000,0.000000,0.250000,0,0);}
.m79_c00408{transform:matrix(0.479170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479170,0.000000,0.000000,0.250000,0,0);}
.m29_c00408{transform:matrix(0.499999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499999,0.000000,0.000000,0.250000,0,0);}
.m62_c00408{transform:matrix(0.667987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667987,0.000000,0.000000,0.250000,0,0);}
.m53_c00408{transform:matrix(3.391128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.391128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.391128,0.000000,0.000000,0.250000,0,0);}
.v0_c00408{vertical-align:0.000000px;}
.v1_c00408{vertical-align:34.194600px;}
.ls17_c00408{letter-spacing:-2.827440px;}
.ls7_c00408{letter-spacing:-2.508667px;}
.ls1c_c00408{letter-spacing:-2.439367px;}
.ls12_c00408{letter-spacing:-2.418577px;}
.ls1d_c00408{letter-spacing:-2.217600px;}
.ls1b_c00408{letter-spacing:-2.162167px;}
.ls21_c00408{letter-spacing:-2.051280px;}
.ls5_c00408{letter-spacing:-1.394953px;}
.ls18_c00408{letter-spacing:-1.341014px;}
.ls20_c00408{letter-spacing:-1.150380px;}
.ls23_c00408{letter-spacing:-1.067220px;}
.ls4_c00408{letter-spacing:-1.011780px;}
.ls24_c00408{letter-spacing:-0.783090px;}
.lse_c00408{letter-spacing:-0.561330px;}
.ls1e_c00408{letter-spacing:-0.344046px;}
.ls10_c00408{letter-spacing:-0.326304px;}
.ls3_c00408{letter-spacing:0.000000px;}
.lsc_c00408{letter-spacing:0.186358px;}
.ls26_c00408{letter-spacing:0.630751px;}
.ls11_c00408{letter-spacing:0.845779px;}
.lsf_c00408{letter-spacing:0.930600px;}
.ls2_c00408{letter-spacing:1.340658px;}
.ls1f_c00408{letter-spacing:1.643400px;}
.lsd_c00408{letter-spacing:1.971095px;}
.ls9_c00408{letter-spacing:2.254230px;}
.ls19_c00408{letter-spacing:2.306304px;}
.ls28_c00408{letter-spacing:2.501499px;}
.ls8_c00408{letter-spacing:2.730863px;}
.ls14_c00408{letter-spacing:3.168000px;}
.ls27_c00408{letter-spacing:3.267000px;}
.ls1a_c00408{letter-spacing:3.375900px;}
.ls6_c00408{letter-spacing:3.583810px;}
.lsb_c00408{letter-spacing:3.722400px;}
.ls22_c00408{letter-spacing:17.107200px;}
.ls0_c00408{letter-spacing:21.943086px;}
.ls25_c00408{letter-spacing:31.363200px;}
.ls1_c00408{letter-spacing:34.214598px;}
.ls15_c00408{letter-spacing:47.044800px;}
.ls13_c00408{letter-spacing:48.470598px;}
.ls16_c00408{letter-spacing:52.747398px;}
.lsa_c00408{letter-spacing:58.449798px;}
.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:-17.919050px;}
.ws2_c00408{word-spacing:-15.840000px;}
.ws3_c00408{word-spacing:-3.913272px;}
.ws1_c00408{word-spacing:0.000000px;}
.ws4_c00408{word-spacing:5.877327px;}
._e_c00408{margin-left:-28.365480px;}
._f_c00408{margin-left:-12.459902px;}
._9_c00408{margin-left:-6.307444px;}
._10_c00408{margin-left:-1.218415px;}
._7_c00408{width:1.505273px;}
._5_c00408{width:4.659039px;}
._0_c00408{width:5.949020px;}
._6_c00408{width:8.027811px;}
._13_c00408{width:9.532028px;}
._b_c00408{width:11.468072px;}
._4_c00408{width:16.628953px;}
._11_c00408{width:22.721237px;}
._2_c00408{width:24.154757px;}
._8_c00408{width:26.591939px;}
._d_c00408{width:28.092240px;}
._14_c00408{width:32.821756px;}
._1_c00408{width:35.551543px;}
._a_c00408{width:41.234132px;}
._12_c00408{width:43.509185px;}
._3_c00408{width:45.514359px;}
._c_c00408{width:231.461901px;}
.fc0_c00408{color:transparent;}
.fsd_c00408{font-size:16.038000px;}
.fs1c_c00408{font-size:17.107200px;}
.fse_c00408{font-size:18.612000px;}
.fsf_c00408{font-size:20.394000px;}
.fs2_c00408{font-size:22.176000px;}
.fs1e_c00408{font-size:22.374000px;}
.fs20_c00408{font-size:25.344000px;}
.fs0_c00408{font-size:27.720000px;}
.fs5_c00408{font-size:28.908000px;}
.fs1d_c00408{font-size:30.492000px;}
.fs21_c00408{font-size:31.363200px;}
.fs1a_c00408{font-size:32.868000px;}
.fs4_c00408{font-size:33.264000px;}
.fs1_c00408{font-size:33.660000px;}
.fsa_c00408{font-size:34.056198px;}
.fs9_c00408{font-size:34.214598px;}
.fs22_c00408{font-size:39.204000px;}
.fs14_c00408{font-size:47.044800px;}
.fs12_c00408{font-size:48.470598px;}
.fs3_c00408{font-size:50.688000px;}
.fs17_c00408{font-size:52.747398px;}
.fsb_c00408{font-size:58.449798px;}
.fs1b_c00408{font-size:58.608000px;}
.fs19_c00408{font-size:61.776198px;}
.fs13_c00408{font-size:63.360000px;}
.fs23_c00408{font-size:65.340000px;}
.fs11_c00408{font-size:66.132198px;}
.fs18_c00408{font-size:67.518000px;}
.fs8_c00408{font-size:68.310000px;}
.fs10_c00408{font-size:69.102198px;}
.fs15_c00408{font-size:69.696198px;}
.fs7_c00408{font-size:71.676198px;}
.fs24_c00408{font-size:72.468000px;}
.fs1f_c00408{font-size:72.864000px;}
.fsc_c00408{font-size:74.448000px;}
.fs16_c00408{font-size:80.784000px;}
.fs6_c00408{font-size:81.576198px;}
.y0_c00408{bottom:0.000000px;}
.y2c_c00408{bottom:3.827385px;}
.y1_c00408{bottom:76.500000px;}
.y2b_c00408{bottom:131.779935px;}
.y2a_c00408{bottom:162.068985px;}
.y20_c00408{bottom:227.651535px;}
.y1f_c00408{bottom:248.322735px;}
.y25_c00408{bottom:271.132335px;}
.y23_c00408{bottom:273.270735px;}
.y24_c00408{bottom:277.898985px;}
.y22_c00408{bottom:291.803535px;}
.y1b_c00408{bottom:313.538985px;}
.y6_c00408{bottom:324.948735px;}
.y21_c00408{bottom:357.024735px;}
.y19_c00408{bottom:399.787785px;}
.y1e_c00408{bottom:400.500585px;}
.y1a_c00408{bottom:401.213385px;}
.y1d_c00408{bottom:435.789135px;}
.y29_c00408{bottom:565.162335px;}
.y28_c00408{bottom:575.854335px;}
.y27_c00408{bottom:586.546335px;}
.y18_c00408{bottom:593.674335px;}
.y1c_c00408{bottom:594.030735px;}
.y26_c00408{bottom:599.015385px;}
.y17_c00408{bottom:658.895535px;}
.y16_c00408{bottom:688.833135px;}
.y15_c00408{bottom:690.966585px;}
.y5_c00408{bottom:714.845385px;}
.y14_c00408{bottom:723.398985px;}
.y4_c00408{bottom:728.388585px;}
.y12_c00408{bottom:755.479935px;}
.y13_c00408{bottom:756.187785px;}
.y11_c00408{bottom:780.784335px;}
.y10_c00408{bottom:789.694335px;}
.y3_c00408{bottom:818.206335px;}
.yf_c00408{bottom:853.846335px;}
.ye_c00408{bottom:889.129935px;}
.yd_c00408{bottom:921.918735px;}
.yc_c00408{bottom:988.204185px;}
.yb_c00408{bottom:1050.930585px;}
.y2_c00408{bottom:1070.888985px;}
.ya_c00408{bottom:1073.383785px;}
.y8_c00408{bottom:1073.740185px;}
.y9_c00408{bottom:1075.522185px;}
.y7_c00408{bottom:1110.450375px;}
.h1d_c00408{height:11.393395px;}
.he_c00408{height:15.740420px;}
.hf_c00408{height:18.266660px;}
.h10_c00408{height:20.015596px;}
.h22_c00408{height:20.887891px;}
.h1f_c00408{height:21.958857px;}
.hb_c00408{height:22.786922px;}
.h4_c00408{height:23.128875px;}
.h21_c00408{height:24.873750px;}
.h7_c00408{height:28.371621px;}
.h2_c00408{height:28.911094px;}
.h1e_c00408{height:29.926230px;}
.h15_c00408{height:31.331837px;}
.h13_c00408{height:32.281418px;}
.h3_c00408{height:33.035449px;}
.h1b_c00408{height:34.280297px;}
.h6_c00408{height:34.693313px;}
.h18_c00408{height:35.129767px;}
.h23_c00408{height:38.476582px;}
.hc_c00408{height:38.927565px;}
.h5_c00408{height:52.866000px;}
.h1c_c00408{height:61.126313px;}
.h14_c00408{height:62.184375px;}
.h1a_c00408{height:64.430644px;}
.h19_c00408{height:66.265225px;}
.h11_c00408{height:67.820028px;}
.h24_c00408{height:68.147578px;}
.h16_c00408{height:68.403007px;}
.h12_c00408{height:68.973816px;}
.h9_c00408{height:70.346269px;}
.h25_c00408{height:71.087994px;}
.ha_c00408{height:71.245195px;}
.h20_c00408{height:71.512031px;}
.hd_c00408{height:73.066641px;}
.h8_c00408{height:80.062577px;}
.h17_c00408{height:84.255188px;}
.h1_c00408{height:1110.000000px;}
.h0_c00408{height:1263.000000px;}
.w1_c00408{width:775.500000px;}
.w0_c00408{width:892.500000px;}
.x2_c00408{left:-2.260515px;}
.x0_c00408{left:0.000000px;}
.x3_c00408{left:19.455135px;}
.x5_c00408{left:21.771735px;}
.x4_c00408{left:57.283035px;}
.x1_c00408{left:58.500000px;}
.x54_c00408{left:80.072835px;}
.x1f_c00408{left:81.142035px;}
.xc_c00408{left:82.473585px;}
.x7b_c00408{left:85.552485px;}
.x29_c00408{left:102.233985px;}
.x7e_c00408{left:110.005485px;}
.x20_c00408{left:115.198035px;}
.x41_c00408{left:123.776385px;}
.x7c_c00408{left:124.885185px;}
.x3b_c00408{left:133.993185px;}
.x30_c00408{left:135.309885px;}
.x3c_c00408{left:141.477585px;}
.xd_c00408{left:146.779035px;}
.x42_c00408{left:148.674885px;}
.x55_c00408{left:156.649335px;}
.xe_c00408{left:168.761985px;}
.x3d_c00408{left:175.696935px;}
.xf_c00408{left:179.340135px;}
.x3e_c00408{left:184.250535px;}
.x2a_c00408{left:190.482585px;}
.x76_c00408{left:200.239035px;}
.x10_c00408{left:201.912135px;}
.x5c_c00408{left:205.273185px;}
.x31_c00408{left:209.886585px;}
.x11_c00408{left:212.906085px;}
.x3f_c00408{left:222.736785px;}
.x40_c00408{left:227.018535px;}
.x43_c00408{left:234.666285px;}
.x5d_c00408{left:239.131185px;}
.x4b_c00408{left:245.338485px;}
.x12_c00408{left:247.046235px;}
.x2b_c00408{left:257.277885px;}
.x32_c00408{left:267.969885px;}
.x21_c00408{left:278.290635px;}
.x44_c00408{left:290.066685px;}
.x22_c00408{left:301.926885px;}
.x33_c00408{left:309.322185px;}
.x34_c00408{left:312.148635px;}
.x5b_c00408{left:316.385835px;}
.x56_c00408{left:323.439585px;}
.x77_c00408{left:324.825585px;}
.x4c_c00408{left:334.101885px;}
.xb_c00408{left:335.250285px;}
.x45_c00408{left:346.165035px;}
.x13_c00408{left:348.258885px;}
.x4d_c00408{left:355.673985px;}
.x23_c00408{left:356.896635px;}
.x2c_c00408{left:367.761885px;}
.x7_c00408{left:369.088485px;}
.x78_c00408{left:378.859785px;}
.x2d_c00408{left:379.983435px;}
.x61_c00408{left:383.220735px;}
.x4e_c00408{left:384.903735px;}
.x8_c00408{left:389.101335px;}
.x62_c00408{left:390.249735px;}
.x57_c00408{left:391.299135px;}
.x6a_c00408{left:398.080635px;}
.x5a_c00408{left:399.600285px;}
.x68_c00408{left:401.011035px;}
.xa_c00408{left:406.866885px;}
.x14_c00408{left:412.113885px;}
.x69_c00408{left:415.663035px;}
.x24_c00408{left:422.276235px;}
.x2e_c00408{left:423.345435px;}
.x63_c00408{left:428.038035px;}
.x35_c00408{left:433.839435px;}
.x6b_c00408{left:437.527185px;}
.x15_c00408{left:445.664985px;}
.x2f_c00408{left:447.333135px;}
.x64_c00408{left:454.149285px;}
.x7d_c00408{left:455.421435px;}
.x46_c00408{left:456.446085px;}
.x47_c00408{left:467.712285px;}
.x4f_c00408{left:470.172435px;}
.x16_c00408{left:478.429035px;}
.x79_c00408{left:501.218835px;}
.x65_c00408{left:508.129035px;}
.x48_c00408{left:511.920735px;}
.x50_c00408{left:514.687785px;}
.x5e_c00408{left:521.261385px;}
.x17_c00408{left:523.305735px;}
.x6e_c00408{left:524.676885px;}
.x5f_c00408{left:531.695985px;}
.x36_c00408{left:534.349185px;}
.x6f_c00408{left:537.838935px;}
.x70_c00408{left:544.442235px;}
.x66_c00408{left:546.560835px;}
.x67_c00408{left:550.243635px;}
.x6c_c00408{left:556.114335px;}
.x71_c00408{left:558.020085px;}
.x37_c00408{left:565.588635px;}
.x51_c00408{left:566.831085px;}
.x18_c00408{left:577.676535px;}
.x25_c00408{left:578.909085px;}
.x72_c00408{left:580.082235px;}
.x6d_c00408{left:581.839485px;}
.x60_c00408{left:587.333985px;}
.x38_c00408{left:599.738685px;}
.x52_c00408{left:610.638585px;}
.x26_c00408{left:611.742435px;}
.x27_c00408{left:621.187035px;}
.x19_c00408{left:622.429485px;}
.x39_c00408{left:633.195735px;}
.x49_c00408{left:643.283835px;}
.x1a_c00408{left:645.214335px;}
.x53_c00408{left:655.188585px;}
.x58_c00408{left:656.604285px;}
.x3a_c00408{left:666.246885px;}
.x9_c00408{left:680.463285px;}
.x6_c00408{left:685.594455px;}
.x1b_c00408{left:689.110935px;}
.x1c_c00408{left:699.392085px;}
.x73_c00408{left:707.143785px;}
.x74_c00408{left:708.866385px;}
.x28_c00408{left:710.390985px;}
.x75_c00408{left:711.559185px;}
.x7a_c00408{left:718.796085px;}
.x1d_c00408{left:722.023485px;}
.x4a_c00408{left:732.527385px;}
.x1e_c00408{left:733.552035px;}
.x59_c00408{left:744.288585px;}
@media print{
.v0_c00408{vertical-align:0.000000pt;}
.v1_c00408{vertical-align:30.395200pt;}
.ls17_c00408{letter-spacing:-2.513280pt;}
.ls7_c00408{letter-spacing:-2.229926pt;}
.ls1c_c00408{letter-spacing:-2.168326pt;}
.ls12_c00408{letter-spacing:-2.149846pt;}
.ls1d_c00408{letter-spacing:-1.971200pt;}
.ls1b_c00408{letter-spacing:-1.921926pt;}
.ls21_c00408{letter-spacing:-1.823360pt;}
.ls5_c00408{letter-spacing:-1.239958pt;}
.ls18_c00408{letter-spacing:-1.192013pt;}
.ls20_c00408{letter-spacing:-1.022560pt;}
.ls23_c00408{letter-spacing:-0.948640pt;}
.ls4_c00408{letter-spacing:-0.899360pt;}
.ls24_c00408{letter-spacing:-0.696080pt;}
.lse_c00408{letter-spacing:-0.498960pt;}
.ls1e_c00408{letter-spacing:-0.305818pt;}
.ls10_c00408{letter-spacing:-0.290048pt;}
.ls3_c00408{letter-spacing:0.000000pt;}
.lsc_c00408{letter-spacing:0.165652pt;}
.ls26_c00408{letter-spacing:0.560667pt;}
.ls11_c00408{letter-spacing:0.751804pt;}
.lsf_c00408{letter-spacing:0.827200pt;}
.ls2_c00408{letter-spacing:1.191696pt;}
.ls1f_c00408{letter-spacing:1.460800pt;}
.lsd_c00408{letter-spacing:1.752085pt;}
.ls9_c00408{letter-spacing:2.003760pt;}
.ls19_c00408{letter-spacing:2.050048pt;}
.ls28_c00408{letter-spacing:2.223555pt;}
.ls8_c00408{letter-spacing:2.427434pt;}
.ls14_c00408{letter-spacing:2.816000pt;}
.ls27_c00408{letter-spacing:2.904000pt;}
.ls1a_c00408{letter-spacing:3.000800pt;}
.ls6_c00408{letter-spacing:3.185609pt;}
.lsb_c00408{letter-spacing:3.308800pt;}
.ls22_c00408{letter-spacing:15.206400pt;}
.ls0_c00408{letter-spacing:19.504965pt;}
.ls25_c00408{letter-spacing:27.878400pt;}
.ls1_c00408{letter-spacing:30.412976pt;}
.ls15_c00408{letter-spacing:41.817600pt;}
.ls13_c00408{letter-spacing:43.084976pt;}
.ls16_c00408{letter-spacing:46.886576pt;}
.lsa_c00408{letter-spacing:51.955376pt;}
.ws0_c00408{word-spacing:-15.928044pt;}
.ws2_c00408{word-spacing:-14.080000pt;}
.ws3_c00408{word-spacing:-3.478464pt;}
.ws1_c00408{word-spacing:0.000000pt;}
.ws4_c00408{word-spacing:5.224291pt;}
._e_c00408{margin-left:-25.213760pt;}
._f_c00408{margin-left:-11.075469pt;}
._9_c00408{margin-left:-5.606617pt;}
._10_c00408{margin-left:-1.083036pt;}
._7_c00408{width:1.338020pt;}
._5_c00408{width:4.141368pt;}
._0_c00408{width:5.288018pt;}
._6_c00408{width:7.135832pt;}
._13_c00408{width:8.472914pt;}
._b_c00408{width:10.193842pt;}
._4_c00408{width:14.781292pt;}
._11_c00408{width:20.196655pt;}
._2_c00408{width:21.470895pt;}
._8_c00408{width:23.637279pt;}
._d_c00408{width:24.970880pt;}
._14_c00408{width:29.174894pt;}
._1_c00408{width:31.601372pt;}
._a_c00408{width:36.652562pt;}
._12_c00408{width:38.674832pt;}
._3_c00408{width:40.457208pt;}
._c_c00408{width:205.743912pt;}
.fsd_c00408{font-size:14.256000pt;}
.fs1c_c00408{font-size:15.206400pt;}
.fse_c00408{font-size:16.544000pt;}
.fsf_c00408{font-size:18.128000pt;}
.fs2_c00408{font-size:19.712000pt;}
.fs1e_c00408{font-size:19.888000pt;}
.fs20_c00408{font-size:22.528000pt;}
.fs0_c00408{font-size:24.640000pt;}
.fs5_c00408{font-size:25.696000pt;}
.fs1d_c00408{font-size:27.104000pt;}
.fs21_c00408{font-size:27.878400pt;}
.fs1a_c00408{font-size:29.216000pt;}
.fs4_c00408{font-size:29.568000pt;}
.fs1_c00408{font-size:29.920000pt;}
.fsa_c00408{font-size:30.272176pt;}
.fs9_c00408{font-size:30.412976pt;}
.fs22_c00408{font-size:34.848000pt;}
.fs14_c00408{font-size:41.817600pt;}
.fs12_c00408{font-size:43.084976pt;}
.fs3_c00408{font-size:45.056000pt;}
.fs17_c00408{font-size:46.886576pt;}
.fsb_c00408{font-size:51.955376pt;}
.fs1b_c00408{font-size:52.096000pt;}
.fs19_c00408{font-size:54.912176pt;}
.fs13_c00408{font-size:56.320000pt;}
.fs23_c00408{font-size:58.080000pt;}
.fs11_c00408{font-size:58.784176pt;}
.fs18_c00408{font-size:60.016000pt;}
.fs8_c00408{font-size:60.720000pt;}
.fs10_c00408{font-size:61.424176pt;}
.fs15_c00408{font-size:61.952176pt;}
.fs7_c00408{font-size:63.712176pt;}
.fs24_c00408{font-size:64.416000pt;}
.fs1f_c00408{font-size:64.768000pt;}
.fsc_c00408{font-size:66.176000pt;}
.fs16_c00408{font-size:71.808000pt;}
.fs6_c00408{font-size:72.512176pt;}
.y0_c00408{bottom:0.000000pt;}
.y2c_c00408{bottom:3.402120pt;}
.y1_c00408{bottom:68.000000pt;}
.y2b_c00408{bottom:117.137720pt;}
.y2a_c00408{bottom:144.061320pt;}
.y20_c00408{bottom:202.356920pt;}
.y1f_c00408{bottom:220.731320pt;}
.y25_c00408{bottom:241.006520pt;}
.y23_c00408{bottom:242.907320pt;}
.y24_c00408{bottom:247.021320pt;}
.y22_c00408{bottom:259.380920pt;}
.y1b_c00408{bottom:278.701320pt;}
.y6_c00408{bottom:288.843320pt;}
.y21_c00408{bottom:317.355320pt;}
.y19_c00408{bottom:355.366920pt;}
.y1e_c00408{bottom:356.000520pt;}
.y1a_c00408{bottom:356.634120pt;}
.y1d_c00408{bottom:387.368120pt;}
.y29_c00408{bottom:502.366520pt;}
.y28_c00408{bottom:511.870520pt;}
.y27_c00408{bottom:521.374520pt;}
.y18_c00408{bottom:527.710520pt;}
.y1c_c00408{bottom:528.027320pt;}
.y26_c00408{bottom:532.458120pt;}
.y17_c00408{bottom:585.684920pt;}
.y16_c00408{bottom:612.296120pt;}
.y15_c00408{bottom:614.192520pt;}
.y5_c00408{bottom:635.418120pt;}
.y14_c00408{bottom:643.021320pt;}
.y4_c00408{bottom:647.456520pt;}
.y12_c00408{bottom:671.537720pt;}
.y13_c00408{bottom:672.166920pt;}
.y11_c00408{bottom:694.030520pt;}
.y10_c00408{bottom:701.950520pt;}
.y3_c00408{bottom:727.294520pt;}
.yf_c00408{bottom:758.974520pt;}
.ye_c00408{bottom:790.337720pt;}
.yd_c00408{bottom:819.483320pt;}
.yc_c00408{bottom:878.403720pt;}
.yb_c00408{bottom:934.160520pt;}
.y2_c00408{bottom:951.901320pt;}
.ya_c00408{bottom:954.118920pt;}
.y8_c00408{bottom:954.435720pt;}
.y9_c00408{bottom:956.019720pt;}
.y7_c00408{bottom:987.067000pt;}
.h1d_c00408{height:10.127462pt;}
.he_c00408{height:13.991484pt;}
.hf_c00408{height:16.237031pt;}
.h10_c00408{height:17.791641pt;}
.h22_c00408{height:18.567014pt;}
.h1f_c00408{height:19.518984pt;}
.hb_c00408{height:20.255042pt;}
.h4_c00408{height:20.559000pt;}
.h21_c00408{height:22.110000pt;}
.h7_c00408{height:25.219219pt;}
.h2_c00408{height:25.698750pt;}
.h1e_c00408{height:26.601094pt;}
.h15_c00408{height:27.850522pt;}
.h13_c00408{height:28.694594pt;}
.h3_c00408{height:29.364844pt;}
.h1b_c00408{height:30.471375pt;}
.h6_c00408{height:30.838500pt;}
.h18_c00408{height:31.226460pt;}
.h23_c00408{height:34.201406pt;}
.hc_c00408{height:34.602280pt;}
.h5_c00408{height:46.992000pt;}
.h1c_c00408{height:54.334500pt;}
.h14_c00408{height:55.275000pt;}
.h1a_c00408{height:57.271684pt;}
.h19_c00408{height:58.902422pt;}
.h11_c00408{height:60.284470pt;}
.h24_c00408{height:60.575625pt;}
.h16_c00408{height:60.802673pt;}
.h12_c00408{height:61.310059pt;}
.h9_c00408{height:62.530016pt;}
.h25_c00408{height:63.189328pt;}
.ha_c00408{height:63.329063pt;}
.h20_c00408{height:63.566250pt;}
.hd_c00408{height:64.948125pt;}
.h8_c00408{height:71.166735pt;}
.h17_c00408{height:74.893500pt;}
.h1_c00408{height:986.666667pt;}
.h0_c00408{height:1122.666667pt;}
.w1_c00408{width:689.333333pt;}
.w0_c00408{width:793.333333pt;}
.x2_c00408{left:-2.009347pt;}
.x0_c00408{left:0.000000pt;}
.x3_c00408{left:17.293453pt;}
.x5_c00408{left:19.352653pt;}
.x4_c00408{left:50.918253pt;}
.x1_c00408{left:52.000000pt;}
.x54_c00408{left:71.175853pt;}
.x1f_c00408{left:72.126253pt;}
.xc_c00408{left:73.309853pt;}
.x7b_c00408{left:76.046653pt;}
.x29_c00408{left:90.874653pt;}
.x7e_c00408{left:97.782653pt;}
.x20_c00408{left:102.398253pt;}
.x41_c00408{left:110.023453pt;}
.x7c_c00408{left:111.009053pt;}
.x3b_c00408{left:119.105053pt;}
.x30_c00408{left:120.275453pt;}
.x3c_c00408{left:125.757853pt;}
.xd_c00408{left:130.470253pt;}
.x42_c00408{left:132.155453pt;}
.x55_c00408{left:139.243853pt;}
.xe_c00408{left:150.010653pt;}
.x3d_c00408{left:156.175053pt;}
.xf_c00408{left:159.413453pt;}
.x3e_c00408{left:163.778253pt;}
.x2a_c00408{left:169.317853pt;}
.x76_c00408{left:177.990253pt;}
.x10_c00408{left:179.477453pt;}
.x5c_c00408{left:182.465053pt;}
.x31_c00408{left:186.565853pt;}
.x11_c00408{left:189.249853pt;}
.x3f_c00408{left:197.988253pt;}
.x40_c00408{left:201.794253pt;}
.x43_c00408{left:208.592253pt;}
.x5d_c00408{left:212.561053pt;}
.x4b_c00408{left:218.078653pt;}
.x12_c00408{left:219.596653pt;}
.x2b_c00408{left:228.691453pt;}
.x32_c00408{left:238.195453pt;}
.x21_c00408{left:247.369453pt;}
.x44_c00408{left:257.837053pt;}
.x22_c00408{left:268.379453pt;}
.x33_c00408{left:274.953053pt;}
.x34_c00408{left:277.465453pt;}
.x5b_c00408{left:281.231853pt;}
.x56_c00408{left:287.501853pt;}
.x77_c00408{left:288.733853pt;}
.x4c_c00408{left:296.979453pt;}
.xb_c00408{left:298.000253pt;}
.x45_c00408{left:307.702253pt;}
.x13_c00408{left:309.563453pt;}
.x4d_c00408{left:316.154653pt;}
.x23_c00408{left:317.241453pt;}
.x2c_c00408{left:326.899453pt;}
.x7_c00408{left:328.078653pt;}
.x78_c00408{left:336.764253pt;}
.x2d_c00408{left:337.763053pt;}
.x61_c00408{left:340.640653pt;}
.x4e_c00408{left:342.136653pt;}
.x8_c00408{left:345.867853pt;}
.x62_c00408{left:346.888653pt;}
.x57_c00408{left:347.821453pt;}
.x6a_c00408{left:353.849453pt;}
.x5a_c00408{left:355.200253pt;}
.x68_c00408{left:356.454253pt;}
.xa_c00408{left:361.659453pt;}
.x14_c00408{left:366.323453pt;}
.x69_c00408{left:369.478253pt;}
.x24_c00408{left:375.356653pt;}
.x2e_c00408{left:376.307053pt;}
.x63_c00408{left:380.478253pt;}
.x35_c00408{left:385.635053pt;}
.x6b_c00408{left:388.913053pt;}
.x15_c00408{left:396.146653pt;}
.x2f_c00408{left:397.629453pt;}
.x64_c00408{left:403.688253pt;}
.x7d_c00408{left:404.819053pt;}
.x46_c00408{left:405.729853pt;}
.x47_c00408{left:415.744253pt;}
.x4f_c00408{left:417.931053pt;}
.x16_c00408{left:425.270253pt;}
.x79_c00408{left:445.527853pt;}
.x65_c00408{left:451.670253pt;}
.x48_c00408{left:455.040653pt;}
.x50_c00408{left:457.500253pt;}
.x5e_c00408{left:463.343453pt;}
.x17_c00408{left:465.160653pt;}
.x6e_c00408{left:466.379453pt;}
.x5f_c00408{left:472.618653pt;}
.x36_c00408{left:474.977053pt;}
.x6f_c00408{left:478.079053pt;}
.x70_c00408{left:483.948653pt;}
.x66_c00408{left:485.831853pt;}
.x67_c00408{left:489.105453pt;}
.x6c_c00408{left:494.323853pt;}
.x71_c00408{left:496.017853pt;}
.x37_c00408{left:502.745453pt;}
.x51_c00408{left:503.849853pt;}
.x18_c00408{left:513.490253pt;}
.x25_c00408{left:514.585853pt;}
.x72_c00408{left:515.628653pt;}
.x6d_c00408{left:517.190653pt;}
.x60_c00408{left:522.074653pt;}
.x38_c00408{left:533.101053pt;}
.x52_c00408{left:542.789853pt;}
.x26_c00408{left:543.771053pt;}
.x27_c00408{left:552.166253pt;}
.x19_c00408{left:553.270653pt;}
.x39_c00408{left:562.840653pt;}
.x49_c00408{left:571.807853pt;}
.x1a_c00408{left:573.523853pt;}
.x53_c00408{left:582.389853pt;}
.x58_c00408{left:583.648253pt;}
.x3a_c00408{left:592.219453pt;}
.x9_c00408{left:604.856253pt;}
.x6_c00408{left:609.417293pt;}
.x1b_c00408{left:612.543053pt;}
.x1c_c00408{left:621.681853pt;}
.x73_c00408{left:628.572253pt;}
.x74_c00408{left:630.103453pt;}
.x28_c00408{left:631.458653pt;}
.x75_c00408{left:632.497053pt;}
.x7a_c00408{left:638.929853pt;}
.x1d_c00408{left:641.798653pt;}
.x4a_c00408{left:651.135453pt;}
.x1e_c00408{left:652.046253pt;}
.x59_c00408{left:661.589853pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bd7f6e4bb8ee39b61380fd4e.woff2')format("woff");}.ff1_c00409{font-family:ff1_c00409;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00409;src:url('chunks/assets/font_da89c8bd9975c169586572a6.woff2')format("woff");}.ff2_c00409{font-family:ff2_c00409;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00409;src:url('chunks/assets/font_c577cc90f4261480b27ced3e.woff2')format("woff");}.ff3_c00409{font-family:ff3_c00409;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00409;src:url('chunks/assets/font_17f33d8cf77fa5a5ec30e730.woff2')format("woff");}.ff4_c00409{font-family:ff4_c00409;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00409;src:url('chunks/assets/font_4f1d4290966e2d4f036bfb40.woff2')format("woff");}.ff5_c00409{font-family:ff5_c00409;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00409;src:url('chunks/assets/font_89089e1a2ef87712e4598de7.woff2')format("woff");}.ff6_c00409{font-family:ff6_c00409;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00409;src:url('chunks/assets/font_165eb26879ccbbe03b6b6afd.woff2')format("woff");}.ff7_c00409{font-family:ff7_c00409;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.me4_c00409{transform:matrix(0.057144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.057144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.057144,0.000000,0.000000,0.250000,0,0);}
.m58_c00409{transform:matrix(0.064025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064025,0.000000,0.000000,0.250000,0,0);}
.m87_c00409{transform:matrix(0.066177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066177,0.000000,0.000000,0.250000,0,0);}
.m7c_c00409{transform:matrix(0.078572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078572,0.000000,0.000000,0.250000,0,0);}
.m88_c00409{transform:matrix(0.080883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080883,0.000000,0.000000,0.250000,0,0);}
.m90_c00409{transform:matrix(0.089448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089448,0.000000,0.000000,0.250000,0,0);}
.mb4_c00409{transform:matrix(0.096428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096428,0.000000,0.000000,0.250000,0,0);}
.m7e_c00409{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.me3_c00409{transform:matrix(0.102382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102382,0.000000,0.000000,0.250000,0,0);}
.m21_c00409{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);}
.mae_c00409{transform:matrix(0.106459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106459,0.000000,0.000000,0.250000,0,0);}
.m45_c00409{transform:matrix(0.112789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112789,0.000000,0.000000,0.250000,0,0);}
.m31_c00409{transform:matrix(0.119269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119269,0.000000,0.000000,0.250000,0,0);}
.mdd_c00409{transform:matrix(0.125003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125003,0.000000,0.000000,0.250000,0,0);}
.m78_c00409{transform:matrix(0.126367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126367,0.000000,0.000000,0.250000,0,0);}
.mca_c00409{transform:matrix(0.128571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128571,0.000000,0.000000,0.250000,0,0);}
.meb_c00409{transform:matrix(0.130357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130357,0.000000,0.000000,0.250000,0,0);}
.me2_c00409{transform:matrix(0.135714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135714,0.000000,0.000000,0.250000,0,0);}
.m95_c00409{transform:matrix(0.137994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137994,0.000000,0.000000,0.250000,0,0);}
.m77_c00409{transform:matrix(0.138158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138158,0.000000,0.000000,0.250000,0,0);}
.m57_c00409{transform:matrix(0.140244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140244,0.000000,0.000000,0.250000,0,0);}
.mbf_c00409{transform:matrix(0.142291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142291,0.000000,0.000000,0.250000,0,0);}
.m8c_c00409{transform:matrix(0.143001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143001,0.000000,0.000000,0.250000,0,0);}
.me9_c00409{transform:matrix(0.144092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144092,0.000000,0.000000,0.250000,0,0);}
.md3_c00409{transform:matrix(0.144686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144686,0.000000,0.000000,0.250000,0,0);}
.m2f_c00409{transform:matrix(0.147390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147390,0.000000,0.000000,0.250000,0,0);}
.m76_c00409{transform:matrix(0.151316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151316,0.000000,0.000000,0.250000,0,0);}
.me0_c00409{transform:matrix(0.155967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155967,0.000000,0.000000,0.250000,0,0);}
.m7b_c00409{transform:matrix(0.157142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157142,0.000000,0.000000,0.250000,0,0);}
.mdb_c00409{transform:matrix(0.160695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160695,0.000000,0.000000,0.250000,0,0);}
.mbc_c00409{transform:matrix(0.160925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160925,0.000000,0.000000,0.250000,0,0);}
.m86_c00409{transform:matrix(0.164215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164215,0.000000,0.000000,0.250000,0,0);}
.m7d_c00409{transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);}
.m4d_c00409{transform:matrix(0.166857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166857,0.000000,0.000000,0.250000,0,0);}
.mbd_c00409{transform:matrix(0.167700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167700,0.000000,0.000000,0.250000,0,0);}
.mf_c00409{transform:matrix(0.168572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168572,0.000000,0.000000,0.250000,0,0);}
.m20_c00409{transform:matrix(0.176471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176471,0.000000,0.000000,0.250000,0,0);}
.m5f_c00409{transform:matrix(0.177287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177287,0.000000,0.000000,0.250000,0,0);}
.m59_c00409{transform:matrix(0.182927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182927,0.000000,0.000000,0.250000,0,0);}
.m3c_c00409{transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);}
.m6_c00409{transform:matrix(0.188959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188959,0.000000,0.000000,0.250000,0,0);}
.m85_c00409{transform:matrix(0.191177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191177,0.000000,0.000000,0.250000,0,0);}
.m10_c00409{transform:matrix(0.194643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194643,0.000000,0.000000,0.250000,0,0);}
.m5c_c00409{transform:matrix(0.199236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199236,0.000000,0.000000,0.250000,0,0);}
.md0_c00409{transform:matrix(0.199284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199284,0.000000,0.000000,0.250000,0,0);}
.mcb_c00409{transform:matrix(0.199612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199612,0.000000,0.000000,0.250000,0,0);}
.m7a_c00409{transform:matrix(0.199889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199889,0.000000,0.000000,0.250000,0,0);}
.m3e_c00409{transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);}
.m44_c00409{transform:matrix(0.200848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200848,0.000000,0.000000,0.250000,0,0);}
.m75_c00409{transform:matrix(0.202303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202303,0.000000,0.000000,0.250000,0,0);}
.me5_c00409{transform:matrix(0.203572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203572,0.000000,0.000000,0.250000,0,0);}
.mc5_c00409{transform:matrix(0.206949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206949,0.000000,0.000000,0.250000,0,0);}
.mc3_c00409{transform:matrix(0.207728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207728,0.000000,0.000000,0.250000,0,0);}
.m3d_c00409{transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);}
.mb8_c00409{transform:matrix(0.210952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210952,0.000000,0.000000,0.250000,0,0);}
.mb3_c00409{transform:matrix(0.211905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211905,0.000000,0.000000,0.250000,0,0);}
.m23_c00409{transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);}
.m3f_c00409{transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);}
.m7f_c00409{transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);}
.m22_c00409{transform:matrix(0.220587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220587,0.000000,0.000000,0.250000,0,0);}
.m3b_c00409{transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);}
.m89_c00409{transform:matrix(0.222019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222019,0.000000,0.000000,0.250000,0,0);}
.me1_c00409{transform:matrix(0.228281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228281,0.000000,0.000000,0.250000,0,0);}
.m2d_c00409{transform:matrix(0.229365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229365,0.000000,0.000000,0.250000,0,0);}
.m16_c00409{transform:matrix(0.231972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231972,0.000000,0.000000,0.250000,0,0);}
.m2c_c00409{transform:matrix(0.234113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234113,0.000000,0.000000,0.250000,0,0);}
.m9c_c00409{transform:matrix(0.234603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234603,0.000000,0.000000,0.250000,0,0);}
.m30_c00409{transform:matrix(0.235564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235564,0.000000,0.000000,0.250000,0,0);}
.m2e_c00409{transform:matrix(0.240457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240457,0.000000,0.000000,0.250000,0,0);}
.mdc_c00409{transform:matrix(0.241852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241852,0.000000,0.000000,0.250000,0,0);}
.mcc_c00409{transform:matrix(0.246087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246087,0.000000,0.000000,0.250000,0,0);}
.m1_c00409{transform:matrix(0.247022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247022,0.000000,0.000000,0.250000,0,0);}
.mac_c00409{transform:matrix(0.247149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247149,0.000000,0.000000,0.250000,0,0);}
.m0_c00409{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00409{transform:matrix(0.250531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250531,0.000000,0.000000,0.250000,0,0);}
.mde_c00409{transform:matrix(0.250582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250582,0.000000,0.000000,0.250000,0,0);}
.md8_c00409{transform:matrix(0.251980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251980,0.000000,0.000000,0.250000,0,0);}
.m92_c00409{transform:matrix(0.252459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252459,0.000000,0.000000,0.250000,0,0);}
.m1e_c00409{transform:matrix(0.254644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254644,0.000000,0.000000,0.250000,0,0);}
.mbe_c00409{transform:matrix(0.256735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256735,0.000000,0.000000,0.250000,0,0);}
.m39_c00409{transform:matrix(0.262377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262377,0.000000,0.000000,0.250000,0,0);}
.m74_c00409{transform:matrix(0.263136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263136,0.000000,0.000000,0.250000,0,0);}
.mea_c00409{transform:matrix(0.264129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264129,0.000000,0.000000,0.250000,0,0);}
.m17_c00409{transform:matrix(0.265021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265021,0.000000,0.000000,0.250000,0,0);}
.mbb_c00409{transform:matrix(0.265126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265126,0.000000,0.000000,0.250000,0,0);}
.ma2_c00409{transform:matrix(0.267534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267534,0.000000,0.000000,0.250000,0,0);}
.m1d_c00409{transform:matrix(0.267771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267771,0.000000,0.000000,0.250000,0,0);}
.mb0_c00409{transform:matrix(0.267787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267787,0.000000,0.000000,0.250000,0,0);}
.mb7_c00409{transform:matrix(0.270118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270118,0.000000,0.000000,0.250000,0,0);}
.mba_c00409{transform:matrix(0.270168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270168,0.000000,0.000000,0.250000,0,0);}
.m63_c00409{transform:matrix(0.270890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270890,0.000000,0.000000,0.250000,0,0);}
.m7_c00409{transform:matrix(0.271514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271514,0.000000,0.000000,0.250000,0,0);}
.m60_c00409{transform:matrix(0.271688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271688,0.000000,0.000000,0.250000,0,0);}
.mc8_c00409{transform:matrix(0.272123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272123,0.000000,0.000000,0.250000,0,0);}
.m6b_c00409{transform:matrix(0.275895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275895,0.000000,0.000000,0.250000,0,0);}
.m52_c00409{transform:matrix(0.276595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276595,0.000000,0.000000,0.250000,0,0);}
.mc2_c00409{transform:matrix(0.278371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278371,0.000000,0.000000,0.250000,0,0);}
.m4_c00409{transform:matrix(0.281053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281053,0.000000,0.000000,0.250000,0,0);}
.m9d_c00409{transform:matrix(0.281229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281229,0.000000,0.000000,0.250000,0,0);}
.m6e_c00409{transform:matrix(0.282201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282201,0.000000,0.000000,0.250000,0,0);}
.mab_c00409{transform:matrix(0.282588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282588,0.000000,0.000000,0.250000,0,0);}
.m47_c00409{transform:matrix(0.282871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282871,0.000000,0.000000,0.250000,0,0);}
.m4f_c00409{transform:matrix(0.284036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284036,0.000000,0.000000,0.250000,0,0);}
.m24_c00409{transform:matrix(0.284684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284684,0.000000,0.000000,0.250000,0,0);}
.m14_c00409{transform:matrix(0.286983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286983,0.000000,0.000000,0.250000,0,0);}
.m4c_c00409{transform:matrix(0.287241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287241,0.000000,0.000000,0.250000,0,0);}
.m6c_c00409{transform:matrix(0.287842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287842,0.000000,0.000000,0.250000,0,0);}
.mc0_c00409{transform:matrix(0.287905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287905,0.000000,0.000000,0.250000,0,0);}
.m97_c00409{transform:matrix(0.288113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288113,0.000000,0.000000,0.250000,0,0);}
.m9_c00409{transform:matrix(0.288210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288210,0.000000,0.000000,0.250000,0,0);}
.ma9_c00409{transform:matrix(0.289782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289782,0.000000,0.000000,0.250000,0,0);}
.ma3_c00409{transform:matrix(0.290029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290029,0.000000,0.000000,0.250000,0,0);}
.m9a_c00409{transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);}
.ma_c00409{transform:matrix(0.291019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291019,0.000000,0.000000,0.250000,0,0);}
.m8f_c00409{transform:matrix(0.291393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291393,0.000000,0.000000,0.250000,0,0);}
.m12_c00409{transform:matrix(0.292280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292280,0.000000,0.000000,0.250000,0,0);}
.m19_c00409{transform:matrix(0.292351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292351,0.000000,0.000000,0.250000,0,0);}
.md_c00409{transform:matrix(0.293295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293295,0.000000,0.000000,0.250000,0,0);}
.m79_c00409{transform:matrix(0.293674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293674,0.000000,0.000000,0.250000,0,0);}
.mc4_c00409{transform:matrix(0.294803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294803,0.000000,0.000000,0.250000,0,0);}
.m33_c00409{transform:matrix(0.295443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295443,0.000000,0.000000,0.250000,0,0);}
.m3_c00409{transform:matrix(0.296950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296950,0.000000,0.000000,0.250000,0,0);}
.m42_c00409{transform:matrix(0.297320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297320,0.000000,0.000000,0.250000,0,0);}
.m36_c00409{transform:matrix(0.299800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299800,0.000000,0.000000,0.250000,0,0);}
.m93_c00409{transform:matrix(0.300897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300897,0.000000,0.000000,0.250000,0,0);}
.m55_c00409{transform:matrix(0.301753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301753,0.000000,0.000000,0.250000,0,0);}
.m1b_c00409{transform:matrix(0.302890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302890,0.000000,0.000000,0.250000,0,0);}
.ma1_c00409{transform:matrix(0.303510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303510,0.000000,0.000000,0.250000,0,0);}
.m56_c00409{transform:matrix(0.303634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303634,0.000000,0.000000,0.250000,0,0);}
.m98_c00409{transform:matrix(0.303897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303897,0.000000,0.000000,0.250000,0,0);}
.m6d_c00409{transform:matrix(0.304337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304337,0.000000,0.000000,0.250000,0,0);}
.mc_c00409{transform:matrix(0.308378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308378,0.000000,0.000000,0.250000,0,0);}
.m40_c00409{transform:matrix(0.311431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311431,0.000000,0.000000,0.250000,0,0);}
.mcf_c00409{transform:matrix(0.311462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311462,0.000000,0.000000,0.250000,0,0);}
.m8e_c00409{transform:matrix(0.312257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312257,0.000000,0.000000,0.250000,0,0);}
.mc7_c00409{transform:matrix(0.312629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312629,0.000000,0.000000,0.250000,0,0);}
.md6_c00409{transform:matrix(0.312928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312928,0.000000,0.000000,0.250000,0,0);}
.m4b_c00409{transform:matrix(0.313140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313140,0.000000,0.000000,0.250000,0,0);}
.m83_c00409{transform:matrix(0.313202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313202,0.000000,0.000000,0.250000,0,0);}
.m1a_c00409{transform:matrix(0.314429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314429,0.000000,0.000000,0.250000,0,0);}
.m5b_c00409{transform:matrix(0.314631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314631,0.000000,0.000000,0.250000,0,0);}
.m61_c00409{transform:matrix(0.314678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314678,0.000000,0.000000,0.250000,0,0);}
.m46_c00409{transform:matrix(0.315622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315622,0.000000,0.000000,0.250000,0,0);}
.mb1_c00409{transform:matrix(0.315964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315964,0.000000,0.000000,0.250000,0,0);}
.mb2_c00409{transform:matrix(0.316627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316627,0.000000,0.000000,0.250000,0,0);}
.ma8_c00409{transform:matrix(0.317585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317585,0.000000,0.000000,0.250000,0,0);}
.m50_c00409{transform:matrix(0.318735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318735,0.000000,0.000000,0.250000,0,0);}
.m2b_c00409{transform:matrix(0.320587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320587,0.000000,0.000000,0.250000,0,0);}
.m73_c00409{transform:matrix(0.321004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321004,0.000000,0.000000,0.250000,0,0);}
.m84_c00409{transform:matrix(0.321501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321501,0.000000,0.000000,0.250000,0,0);}
.m53_c00409{transform:matrix(0.321528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321528,0.000000,0.000000,0.250000,0,0);}
.m96_c00409{transform:matrix(0.321654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321654,0.000000,0.000000,0.250000,0,0);}
.md5_c00409{transform:matrix(0.322575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322575,0.000000,0.000000,0.250000,0,0);}
.ma6_c00409{transform:matrix(0.323757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323757,0.000000,0.000000,0.250000,0,0);}
.mb_c00409{transform:matrix(0.324116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324116,0.000000,0.000000,0.250000,0,0);}
.m35_c00409{transform:matrix(0.324689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324689,0.000000,0.000000,0.250000,0,0);}
.ma5_c00409{transform:matrix(0.325248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325248,0.000000,0.000000,0.250000,0,0);}
.mc1_c00409{transform:matrix(0.326530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326530,0.000000,0.000000,0.250000,0,0);}
.m28_c00409{transform:matrix(0.327200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327200,0.000000,0.000000,0.250000,0,0);}
.mb6_c00409{transform:matrix(0.327368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327368,0.000000,0.000000,0.250000,0,0);}
.m13_c00409{transform:matrix(0.327665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327665,0.000000,0.000000,0.250000,0,0);}
.md4_c00409{transform:matrix(0.327920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327920,0.000000,0.000000,0.250000,0,0);}
.m69_c00409{transform:matrix(0.328120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328120,0.000000,0.000000,0.250000,0,0);}
.mc9_c00409{transform:matrix(0.328302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328302,0.000000,0.000000,0.250000,0,0);}
.mce_c00409{transform:matrix(0.328663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328663,0.000000,0.000000,0.250000,0,0);}
.md2_c00409{transform:matrix(0.331227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331227,0.000000,0.000000,0.250000,0,0);}
.m65_c00409{transform:matrix(0.331959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331959,0.000000,0.000000,0.250000,0,0);}
.m66_c00409{transform:matrix(0.332098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332098,0.000000,0.000000,0.250000,0,0);}
.m38_c00409{transform:matrix(0.332696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332696,0.000000,0.000000,0.250000,0,0);}
.m1c_c00409{transform:matrix(0.333023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333023,0.000000,0.000000,0.250000,0,0);}
.maf_c00409{transform:matrix(0.333104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333104,0.000000,0.000000,0.250000,0,0);}
.m34_c00409{transform:matrix(0.333414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333414,0.000000,0.000000,0.250000,0,0);}
.md1_c00409{transform:matrix(0.335678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335678,0.000000,0.000000,0.250000,0,0);}
.m26_c00409{transform:matrix(0.336305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336305,0.000000,0.000000,0.250000,0,0);}
.mda_c00409{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);}
.mb9_c00409{transform:matrix(0.336988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336988,0.000000,0.000000,0.250000,0,0);}
.mcd_c00409{transform:matrix(0.337231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337231,0.000000,0.000000,0.250000,0,0);}
.m4e_c00409{transform:matrix(0.337524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337524,0.000000,0.000000,0.250000,0,0);}
.m91_c00409{transform:matrix(0.338207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338207,0.000000,0.000000,0.250000,0,0);}
.m70_c00409{transform:matrix(0.338311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338311,0.000000,0.000000,0.250000,0,0);}
.m94_c00409{transform:matrix(0.338754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338754,0.000000,0.000000,0.250000,0,0);}
.me8_c00409{transform:matrix(0.340845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340845,0.000000,0.000000,0.250000,0,0);}
.m32_c00409{transform:matrix(0.340952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340952,0.000000,0.000000,0.250000,0,0);}
.m72_c00409{transform:matrix(0.341887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341887,0.000000,0.000000,0.250000,0,0);}
.ma7_c00409{transform:matrix(0.343979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343979,0.000000,0.000000,0.250000,0,0);}
.m5a_c00409{transform:matrix(0.344917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344917,0.000000,0.000000,0.250000,0,0);}
.m1f_c00409{transform:matrix(0.346284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346284,0.000000,0.000000,0.250000,0,0);}
.mc6_c00409{transform:matrix(0.346288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346288,0.000000,0.000000,0.250000,0,0);}
.m81_c00409{transform:matrix(0.347348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347348,0.000000,0.000000,0.250000,0,0);}
.m4a_c00409{transform:matrix(0.347669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347669,0.000000,0.000000,0.250000,0,0);}
.m27_c00409{transform:matrix(0.347835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347835,0.000000,0.000000,0.250000,0,0);}
.m68_c00409{transform:matrix(0.348307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348307,0.000000,0.000000,0.250000,0,0);}
.m18_c00409{transform:matrix(0.348579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348579,0.000000,0.000000,0.250000,0,0);}
.m15_c00409{transform:matrix(0.348848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348848,0.000000,0.000000,0.250000,0,0);}
.m9e_c00409{transform:matrix(0.348924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348924,0.000000,0.000000,0.250000,0,0);}
.me7_c00409{transform:matrix(0.350142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350142,0.000000,0.000000,0.250000,0,0);}
.m8a_c00409{transform:matrix(0.350234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350234,0.000000,0.000000,0.250000,0,0);}
.m3a_c00409{transform:matrix(0.350378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350378,0.000000,0.000000,0.250000,0,0);}
.m43_c00409{transform:matrix(0.350691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350691,0.000000,0.000000,0.250000,0,0);}
.m51_c00409{transform:matrix(0.352020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352020,0.000000,0.000000,0.250000,0,0);}
.m62_c00409{transform:matrix(0.352052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352052,0.000000,0.000000,0.250000,0,0);}
.mb5_c00409{transform:matrix(0.352299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352299,0.000000,0.000000,0.250000,0,0);}
.m48_c00409{transform:matrix(0.353079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353079,0.000000,0.000000,0.250000,0,0);}
.m8d_c00409{transform:matrix(0.354694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354694,0.000000,0.000000,0.250000,0,0);}
.m8_c00409{transform:matrix(0.354859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354859,0.000000,0.000000,0.250000,0,0);}
.m80_c00409{transform:matrix(0.355202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355202,0.000000,0.000000,0.250000,0,0);}
.m41_c00409{transform:matrix(0.356064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356064,0.000000,0.000000,0.250000,0,0);}
.m6f_c00409{transform:matrix(0.356751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356751,0.000000,0.000000,0.250000,0,0);}
.m67_c00409{transform:matrix(0.356907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356907,0.000000,0.000000,0.250000,0,0);}
.m9f_c00409{transform:matrix(0.357399,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357399,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357399,0.000000,0.000000,0.250000,0,0);}
.m54_c00409{transform:matrix(0.358028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358028,0.000000,0.000000,0.250000,0,0);}
.m2_c00409{transform:matrix(0.359351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359351,0.000000,0.000000,0.250000,0,0);}
.m64_c00409{transform:matrix(0.360809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360809,0.000000,0.000000,0.250000,0,0);}
.ma0_c00409{transform:matrix(0.361845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361845,0.000000,0.000000,0.250000,0,0);}
.m6a_c00409{transform:matrix(0.363326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363326,0.000000,0.000000,0.250000,0,0);}
.m29_c00409{transform:matrix(0.363517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363517,0.000000,0.000000,0.250000,0,0);}
.m49_c00409{transform:matrix(0.364964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364964,0.000000,0.000000,0.250000,0,0);}
.mad_c00409{transform:matrix(0.365080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365080,0.000000,0.000000,0.250000,0,0);}
.m8b_c00409{transform:matrix(0.365694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365694,0.000000,0.000000,0.250000,0,0);}
.md7_c00409{transform:matrix(0.366321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366321,0.000000,0.000000,0.250000,0,0);}
.m25_c00409{transform:matrix(0.366475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366475,0.000000,0.000000,0.250000,0,0);}
.me6_c00409{transform:matrix(0.367448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367448,0.000000,0.000000,0.250000,0,0);}
.me_c00409{transform:matrix(0.368194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368194,0.000000,0.000000,0.250000,0,0);}
.m2a_c00409{transform:matrix(0.369225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369225,0.000000,0.000000,0.250000,0,0);}
.m37_c00409{transform:matrix(0.369384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369384,0.000000,0.000000,0.250000,0,0);}
.m82_c00409{transform:matrix(0.369442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369442,0.000000,0.000000,0.250000,0,0);}
.m5d_c00409{transform:matrix(0.372222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372222,0.000000,0.000000,0.250000,0,0);}
.m11_c00409{transform:matrix(0.378107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378107,0.000000,0.000000,0.250000,0,0);}
.m5_c00409{transform:matrix(0.394103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394103,0.000000,0.000000,0.250000,0,0);}
.maa_c00409{transform:matrix(0.394197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394197,0.000000,0.000000,0.250000,0,0);}
.mdf_c00409{transform:matrix(0.426373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426373,0.000000,0.000000,0.250000,0,0);}
.m71_c00409{transform:matrix(0.432196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432196,0.000000,0.000000,0.250000,0,0);}
.ma4_c00409{transform:matrix(0.446069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446069,0.000000,0.000000,0.250000,0,0);}
.md9_c00409{transform:matrix(0.456014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456014,0.000000,0.000000,0.250000,0,0);}
.m99_c00409{transform:matrix(0.463941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463941,0.000000,0.000000,0.250000,0,0);}
.m9b_c00409{transform:matrix(0.466138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466138,0.000000,0.000000,0.250000,0,0);}
.v1_c00409{vertical-align:-82.684800px;}
.v0_c00409{vertical-align:0.000000px;}
.v3_c00409{vertical-align:9.999000px;}
.v4_c00409{vertical-align:24.215400px;}
.v2_c00409{vertical-align:47.044800px;}
.ls3_c00409{letter-spacing:-2.924467px;}
.ls5_c00409{letter-spacing:-2.515590px;}
.ls17_c00409{letter-spacing:-2.439367px;}
.lsb_c00409{letter-spacing:-2.432430px;}
.ls1c_c00409{letter-spacing:-2.259180px;}
.ls14_c00409{letter-spacing:-1.919036px;}
.ls10_c00409{letter-spacing:-1.690920px;}
.lsa_c00409{letter-spacing:-1.663200px;}
.ls8_c00409{letter-spacing:-1.142797px;}
.ls6_c00409{letter-spacing:-1.135609px;}
.ls29_c00409{letter-spacing:-1.115730px;}
.ls26_c00409{letter-spacing:-1.074150px;}
.ls21_c00409{letter-spacing:-1.072055px;}
.ls2d_c00409{letter-spacing:-0.984060px;}
.lsc_c00409{letter-spacing:-0.935550px;}
.lsd_c00409{letter-spacing:-0.914760px;}
.ls24_c00409{letter-spacing:-0.885298px;}
.ls2a_c00409{letter-spacing:-0.838530px;}
.ls27_c00409{letter-spacing:-0.817740px;}
.ls1b_c00409{letter-spacing:-0.797801px;}
.ls18_c00409{letter-spacing:-0.165310px;}
.lse_c00409{letter-spacing:-0.030492px;}
.ls2_c00409{letter-spacing:0.000000px;}
.ls15_c00409{letter-spacing:0.258746px;}
.lsf_c00409{letter-spacing:0.992376px;}
.ls0_c00409{letter-spacing:1.257795px;}
.ls2e_c00409{letter-spacing:1.405800px;}
.ls28_c00409{letter-spacing:1.593900px;}
.ls20_c00409{letter-spacing:1.643400px;}
.ls2b_c00409{letter-spacing:1.657920px;}
.ls1a_c00409{letter-spacing:1.796850px;}
.ls23_c00409{letter-spacing:1.821600px;}
.ls1d_c00409{letter-spacing:1.926223px;}
.ls11_c00409{letter-spacing:2.102967px;}
.ls22_c00409{letter-spacing:2.118600px;}
.ls19_c00409{letter-spacing:2.370377px;}
.ls2c_c00409{letter-spacing:2.445310px;}
.ls25_c00409{letter-spacing:2.653200px;}
.ls1f_c00409{letter-spacing:2.874960px;}
.ls1e_c00409{letter-spacing:3.455110px;}
.ls4_c00409{letter-spacing:3.593700px;}
.ls12_c00409{letter-spacing:3.643200px;}
.ls1_c00409{letter-spacing:17.107200px;}
.ls9_c00409{letter-spacing:48.470598px;}
.ls7_c00409{letter-spacing:49.896198px;}
.ls16_c00409{letter-spacing:54.172998px;}
.ls13_c00409{letter-spacing:58.449798px;}
.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;}
}
.ws1_c00409{word-spacing:-18.216000px;}
.ws2_c00409{word-spacing:-17.968500px;}
.ws5_c00409{word-spacing:-17.141255px;}
.ws3_c00409{word-spacing:-3.809322px;}
.ws4_c00409{word-spacing:-0.762696px;}
.ws6_c00409{word-spacing:0.000000px;}
.ws0_c00409{word-spacing:42.203700px;}
._23_c00409{margin-left:-302.230071px;}
._1c_c00409{margin-left:-14.061784px;}
._c_c00409{margin-left:-6.895944px;}
._f_c00409{margin-left:-4.742100px;}
._16_c00409{margin-left:-1.438668px;}
._e_c00409{width:1.431144px;}
._15_c00409{width:3.738240px;}
._6_c00409{width:6.756156px;}
._3_c00409{width:8.696754px;}
._13_c00409{width:10.781100px;}
._10_c00409{width:12.434202px;}
._22_c00409{width:13.692745px;}
._5_c00409{width:14.806044px;}
._a_c00409{width:16.674768px;}
._1a_c00409{width:17.968500px;}
._7_c00409{width:19.693872px;}
._9_c00409{width:21.274704px;}
._1_c00409{width:23.071554px;}
._1f_c00409{width:24.077790px;}
._14_c00409{width:25.946514px;}
._12_c00409{width:27.159561px;}
._2_c00409{width:30.987238px;}
._17_c00409{width:32.678316px;}
._4_c00409{width:38.024118px;}
._1b_c00409{width:39.550500px;}
._8_c00409{width:41.009760px;}
._19_c00409{width:42.985800px;}
._d_c00409{width:44.883234px;}
._11_c00409{width:46.484064px;}
._18_c00409{width:48.645828px;}
._1d_c00409{width:125.743339px;}
._20_c00409{width:139.629481px;}
._1e_c00409{width:182.785482px;}
._b_c00409{width:463.401774px;}
._21_c00409{width:783.828936px;}
._0_c00409{width:852.165072px;}
.fc0_c00409{color:transparent;}
.fs25_c00409{font-size:11.088000px;}
.fs21_c00409{font-size:17.107200px;}
.fs1_c00409{font-size:22.176000px;}
.fs20_c00409{font-size:23.364000px;}
.fs23_c00409{font-size:23.958000px;}
.fsd_c00409{font-size:26.136000px;}
.fsc_c00409{font-size:26.730000px;}
.fse_c00409{font-size:27.720000px;}
.fs27_c00409{font-size:28.116000px;}
.fs1f_c00409{font-size:30.690000px;}
.fs22_c00409{font-size:31.878000px;}
.fs18_c00409{font-size:32.868000px;}
.fs10_c00409{font-size:33.660000px;}
.fs24_c00409{font-size:34.056198px;}
.fs26_c00409{font-size:35.244000px;}
.fs1d_c00409{font-size:36.432000px;}
.fs9_c00409{font-size:37.818000px;}
.fs3_c00409{font-size:38.808000px;}
.fs8_c00409{font-size:39.600000px;}
.fs1c_c00409{font-size:42.372000px;}
.fs19_c00409{font-size:43.560000px;}
.fs0_c00409{font-size:44.352000px;}
.fsb_c00409{font-size:47.520000px;}
.fsf_c00409{font-size:48.312000px;}
.fs7_c00409{font-size:48.470598px;}
.fs11_c00409{font-size:48.906198px;}
.fs5_c00409{font-size:49.896198px;}
.fs1e_c00409{font-size:53.064000px;}
.fs14_c00409{font-size:54.172998px;}
.fs1a_c00409{font-size:55.836198px;}
.fs13_c00409{font-size:58.449798px;}
.fs6_c00409{font-size:64.548000px;}
.fs1b_c00409{font-size:67.518000px;}
.fs16_c00409{font-size:68.508000px;}
.fs17_c00409{font-size:69.102198px;}
.fsa_c00409{font-size:69.498000px;}
.fs15_c00409{font-size:69.696198px;}
.fs4_c00409{font-size:71.874000px;}
.fs12_c00409{font-size:72.864000px;}
.fs28_c00409{font-size:76.032198px;}
.fs2_c00409{font-size:83.556198px;}
.y0_c00409{bottom:0.000000px;}
.y2e_c00409{bottom:47.308185px;}
.y1_c00409{bottom:76.500000px;}
.y4_c00409{bottom:105.401385px;}
.y2d_c00409{bottom:131.423535px;}
.y2b_c00409{bottom:134.987535px;}
.y2a_c00409{bottom:138.546585px;}
.y29_c00409{bottom:138.902985px;}
.y27_c00409{bottom:139.259385px;}
.y28_c00409{bottom:139.977135px;}
.y2c_c00409{bottom:141.041385px;}
.y26_c00409{bottom:142.828335px;}
.y24_c00409{bottom:203.411385px;}
.y25_c00409{bottom:203.772735px;}
.y23_c00409{bottom:236.912985px;}
.y22_c00409{bottom:301.421385px;}
.y21_c00409{bottom:333.858735px;}
.y20_c00409{bottom:369.498735px;}
.y1f_c00409{bottom:382.680585px;}
.y1e_c00409{bottom:402.287535px;}
.y1d_c00409{bottom:435.071385px;}
.y1c_c00409{bottom:459.662985px;}
.y1b_c00409{bottom:467.508735px;}
.y1a_c00409{bottom:523.102185px;}
.y19_c00409{bottom:531.304335px;}
.y18_c00409{bottom:564.093135px;}
.y17_c00409{bottom:597.589785px;}
.y16_c00409{bottom:630.383535px;}
.y15_c00409{bottom:663.528735px;}
.y14_c00409{bottom:697.743135px;}
.y3_c00409{bottom:726.967935px;}
.y13_c00409{bottom:762.607935px;}
.y12_c00409{bottom:785.417535px;}
.yd_c00409{bottom:794.327535px;}
.y10_c00409{bottom:794.678985px;}
.yf_c00409{bottom:795.396735px;}
.ye_c00409{bottom:796.460985px;}
.y11_c00409{bottom:802.519785px;}
.y2_c00409{bottom:822.483135px;}
.yc_c00409{bottom:828.893385px;}
.yb_c00409{bottom:860.974335px;}
.ya_c00409{bottom:894.470985px;}
.y9_c00409{bottom:929.046735px;}
.y8_c00409{bottom:961.474185px;}
.y7_c00409{bottom:1048.792185px;}
.y6_c00409{bottom:1079.442585px;}
.y5_c00409{bottom:1100.113785px;}
.h21_c00409{height:11.393395px;}
.h3_c00409{height:23.128875px;}
.h20_c00409{height:24.367922px;}
.h23_c00409{height:24.987445px;}
.he_c00409{height:27.259031px;}
.hd_c00409{height:27.878555px;}
.hf_c00409{height:27.936563px;}
.h26_c00409{height:28.335656px;}
.h12_c00409{height:28.911094px;}
.h1f_c00409{height:32.008711px;}
.h8_c00409{height:32.281418px;}
.h11_c00409{height:33.035449px;}
.h7_c00409{height:33.230868px;}
.h22_c00409{height:33.247758px;}
.h19_c00409{height:34.280297px;}
.h1d_c00409{height:35.738227px;}
.h15_c00409{height:36.079217px;}
.h14_c00409{height:38.927565px;}
.h5_c00409{height:40.475531px;}
.h1a_c00409{height:42.751758px;}
.h1c_c00409{height:44.192672px;}
.h2_c00409{height:46.257750px;}
.hc_c00409{height:46.638281px;}
.h25_c00409{height:47.998759px;}
.h10_c00409{height:48.689438px;}
.h1e_c00409{height:52.053504px;}
.h17_c00409{height:67.236855px;}
.h9_c00409{height:67.321547px;}
.hb_c00409{height:68.208486px;}
.h16_c00409{height:68.403007px;}
.h6_c00409{height:70.540400px;}
.h13_c00409{height:71.512031px;}
.h18_c00409{height:72.071433px;}
.h24_c00409{height:72.214159px;}
.h1b_c00409{height:76.264225px;}
.h27_c00409{height:79.299207px;}
.h4_c00409{height:82.005839px;}
.ha_c00409{height:88.346362px;}
.h1_c00409{height:1110.000000px;}
.h0_c00409{height:1263.000000px;}
.w1_c00409{width:775.500000px;}
.w0_c00409{width:892.500000px;}
.x0_c00409{left:0.000000px;}
.x2_c00409{left:16.564335px;}
.x4_c00409{left:36.522735px;}
.x3_c00409{left:56.213835px;}
.x1_c00409{left:58.500000px;}
.x14_c00409{left:80.498535px;}
.xa_c00409{left:81.686535px;}
.x7a_c00409{left:83.245785px;}
.x79_c00409{left:86.384085px;}
.x20_c00409{left:92.210235px;}
.x86_c00409{left:102.521085px;}
.xb_c00409{left:113.470485px;}
.x21_c00409{left:116.598885px;}
.x64_c00409{left:124.018935px;}
.x2d_c00409{left:125.444535px;}
.x45_c00409{left:134.602035px;}
.x22_c00409{left:136.294935px;}
.x7f_c00409{left:142.566585px;}
.x6a_c00409{left:146.135535px;}
.x80_c00409{left:147.897735px;}
.x15_c00409{left:149.140185px;}
.x7b_c00409{left:154.100085px;}
.x23_c00409{left:156.060285px;}
.x2e_c00409{left:157.871985px;}
.x55_c00409{left:159.431235px;}
.x65_c00409{left:162.505185px;}
.x46_c00409{left:167.143335px;}
.x66_c00409{left:171.063735px;}
.x47_c00409{left:179.260935px;}
.x73_c00409{left:180.810285px;}
.x48_c00409{left:189.947985px;}
.x24_c00409{left:191.155785px;}
.x8_c00409{left:193.002135px;}
.x4c_c00409{left:202.966485px;}
.x7c_c00409{left:210.530085px;}
.x25_c00409{left:212.807085px;}
.x7d_c00409{left:219.588585px;}
.x6f_c00409{left:223.449585px;}
.x43_c00409{left:224.597985px;}
.xc_c00409{left:234.988035px;}
.x7e_c00409{left:238.685685px;}
.x3b_c00409{left:240.477585px;}
.x2f_c00409{left:246.264135px;}
.x58_c00409{left:248.016435px;}
.x37_c00409{left:249.590535px;}
.x38_c00409{left:257.277885px;}
.x16_c00409{left:269.192535px;}
.x81_c00409{left:271.771485px;}
.x74_c00409{left:274.390035px;}
.x39_c00409{left:276.216585px;}
.xd_c00409{left:279.325185px;}
.x44_c00409{left:281.250735px;}
.x17_c00409{left:290.378535px;}
.x3a_c00409{left:301.327935px;}
.x4d_c00409{left:302.372385px;}
.x70_c00409{left:303.916785px;}
.xe_c00409{left:311.401185px;}
.x3c_c00409{left:312.831735px;}
.x3d_c00409{left:319.727085px;}
.xf_c00409{left:323.266335px;}
.x18_c00409{left:324.310785px;}
.x30_c00409{left:335.557185px;}
.x5f_c00409{left:345.714585px;}
.x6e_c00409{left:346.877835px;}
.x10_c00409{left:355.985835px;}
.x49_c00409{left:357.129285px;}
.x82_c00409{left:359.599335px;}
.x6b_c00409{left:362.559435px;}
.x31_c00409{left:367.029285px;}
.x19_c00409{left:369.222135px;}
.x3e_c00409{left:378.443985px;}
.x26_c00409{left:380.042835px;}
.x83_c00409{left:386.680785px;}
.x63_c00409{left:391.125885px;}
.x4e_c00409{left:401.218935px;}
.x75_c00409{left:402.481185px;}
.x60_c00409{left:404.693835px;}
.x5c_c00409{left:411.579285px;}
.x59_c00409{left:422.276235px;}
.x27_c00409{left:423.385035px;}
.x1a_c00409{left:425.444235px;}
.x61_c00409{left:434.596785px;}
.x4a_c00409{left:444.373035px;}
.x5_c00409{left:450.392235px;}
.x28_c00409{left:456.678735px;}
.x6c_c00409{left:457.733085px;}
.x32_c00409{left:467.539035px;}
.x76_c00409{left:477.914235px;}
.x11_c00409{left:479.136885px;}
.x5a_c00409{left:485.091735px;}
.x33_c00409{left:489.502185px;}
.x34_c00409{left:499.654635px;}
.x29_c00409{left:501.164385px;}
.x1b_c00409{left:511.945485px;}
.x71_c00409{left:521.226735px;}
.x1c_c00409{left:522.974085px;}
.x9_c00409{left:527.731035px;}
.x62_c00409{left:531.354435px;}
.x4f_c00409{left:534.027435px;}
.x67_c00409{left:535.076835px;}
.x12_c00409{left:544.699635px;}
.x6d_c00409{left:546.031185px;}
.x1d_c00409{left:556.168785px;}
.x56_c00409{left:557.401335px;}
.x50_c00409{left:565.841085px;}
.x2a_c00409{left:567.286485px;}
.x57_c00409{left:578.780385px;}
.x51_c00409{left:580.270335px;}
.x35_c00409{left:589.234785px;}
.x52_c00409{left:599.332785px;}
.x1e_c00409{left:600.639585px;}
.x77_c00409{left:611.361285px;}
.x1f_c00409{left:621.498885px;}
.x68_c00409{left:622.612635px;}
.x4b_c00409{left:634.121385px;}
.x5d_c00409{left:644.872785px;}
.x84_c00409{left:648.897135px;}
.x2b_c00409{left:650.392035px;}
.x5b_c00409{left:655.005435px;}
.x2c_c00409{left:656.213235px;}
.x85_c00409{left:660.772185px;}
.x3f_c00409{left:666.989385px;}
.x40_c00409{left:676.429035px;}
.x78_c00409{left:677.448735px;}
.x6_c00409{left:678.478335px;}
.x69_c00409{left:688.422885px;}
.x36_c00409{left:689.690085px;}
.x72_c00409{left:694.100535px;}
.x7_c00409{left:700.085085px;}
.x42_c00409{left:711.128535px;}
.x41_c00409{left:714.435135px;}
.x53_c00409{left:720.597885px;}
.x13_c00409{left:722.429385px;}
.x5e_c00409{left:733.596585px;}
.x54_c00409{left:744.644985px;}
@media print{
.v1_c00409{vertical-align:-73.497600pt;}
.v0_c00409{vertical-align:0.000000pt;}
.v3_c00409{vertical-align:8.888000pt;}
.v4_c00409{vertical-align:21.524800pt;}
.v2_c00409{vertical-align:41.817600pt;}
.ls3_c00409{letter-spacing:-2.599526pt;}
.ls5_c00409{letter-spacing:-2.236080pt;}
.ls17_c00409{letter-spacing:-2.168326pt;}
.lsb_c00409{letter-spacing:-2.162160pt;}
.ls1c_c00409{letter-spacing:-2.008160pt;}
.ls14_c00409{letter-spacing:-1.705810pt;}
.ls10_c00409{letter-spacing:-1.503040pt;}
.lsa_c00409{letter-spacing:-1.478400pt;}
.ls8_c00409{letter-spacing:-1.015819pt;}
.ls6_c00409{letter-spacing:-1.009430pt;}
.ls29_c00409{letter-spacing:-0.991760pt;}
.ls26_c00409{letter-spacing:-0.954800pt;}
.ls21_c00409{letter-spacing:-0.952938pt;}
.ls2d_c00409{letter-spacing:-0.874720pt;}
.lsc_c00409{letter-spacing:-0.831600pt;}
.lsd_c00409{letter-spacing:-0.813120pt;}
.ls24_c00409{letter-spacing:-0.786931pt;}
.ls2a_c00409{letter-spacing:-0.745360pt;}
.ls27_c00409{letter-spacing:-0.726880pt;}
.ls1b_c00409{letter-spacing:-0.709157pt;}
.ls18_c00409{letter-spacing:-0.146942pt;}
.lse_c00409{letter-spacing:-0.027104pt;}
.ls2_c00409{letter-spacing:0.000000pt;}
.ls15_c00409{letter-spacing:0.229997pt;}
.lsf_c00409{letter-spacing:0.882112pt;}
.ls0_c00409{letter-spacing:1.118040pt;}
.ls2e_c00409{letter-spacing:1.249600pt;}
.ls28_c00409{letter-spacing:1.416800pt;}
.ls20_c00409{letter-spacing:1.460800pt;}
.ls2b_c00409{letter-spacing:1.473707pt;}
.ls1a_c00409{letter-spacing:1.597200pt;}
.ls23_c00409{letter-spacing:1.619200pt;}
.ls1d_c00409{letter-spacing:1.712198pt;}
.ls11_c00409{letter-spacing:1.869304pt;}
.ls22_c00409{letter-spacing:1.883200pt;}
.ls19_c00409{letter-spacing:2.107002pt;}
.ls2c_c00409{letter-spacing:2.173609pt;}
.ls25_c00409{letter-spacing:2.358400pt;}
.ls1f_c00409{letter-spacing:2.555520pt;}
.ls1e_c00409{letter-spacing:3.071209pt;}
.ls4_c00409{letter-spacing:3.194400pt;}
.ls12_c00409{letter-spacing:3.238400pt;}
.ls1_c00409{letter-spacing:15.206400pt;}
.ls9_c00409{letter-spacing:43.084976pt;}
.ls7_c00409{letter-spacing:44.352176pt;}
.ls16_c00409{letter-spacing:48.153776pt;}
.ls13_c00409{letter-spacing:51.955376pt;}
.ws1_c00409{word-spacing:-16.192000pt;}
.ws2_c00409{word-spacing:-15.972000pt;}
.ws5_c00409{word-spacing:-15.236671pt;}
.ws3_c00409{word-spacing:-3.386064pt;}
.ws4_c00409{word-spacing:-0.677952pt;}
.ws6_c00409{word-spacing:0.000000pt;}
.ws0_c00409{word-spacing:37.514400pt;}
._23_c00409{margin-left:-268.648952pt;}
._1c_c00409{margin-left:-12.499364pt;}
._c_c00409{margin-left:-6.129728pt;}
._f_c00409{margin-left:-4.215200pt;}
._16_c00409{margin-left:-1.278816pt;}
._e_c00409{width:1.272128pt;}
._15_c00409{width:3.322880pt;}
._6_c00409{width:6.005472pt;}
._3_c00409{width:7.730448pt;}
._13_c00409{width:9.583200pt;}
._10_c00409{width:11.052624pt;}
._22_c00409{width:12.171329pt;}
._5_c00409{width:13.160928pt;}
._a_c00409{width:14.822016pt;}
._1a_c00409{width:15.972000pt;}
._7_c00409{width:17.505664pt;}
._9_c00409{width:18.910848pt;}
._1_c00409{width:20.508048pt;}
._1f_c00409{width:21.402480pt;}
._14_c00409{width:23.063568pt;}
._12_c00409{width:24.141832pt;}
._2_c00409{width:27.544211pt;}
._17_c00409{width:29.047392pt;}
._4_c00409{width:33.799216pt;}
._1b_c00409{width:35.156000pt;}
._8_c00409{width:36.453120pt;}
._19_c00409{width:38.209600pt;}
._d_c00409{width:39.896208pt;}
._11_c00409{width:41.319168pt;}
._18_c00409{width:43.240736pt;}
._1d_c00409{width:111.771857pt;}
._20_c00409{width:124.115094pt;}
._1e_c00409{width:162.475984pt;}
._b_c00409{width:411.912688pt;}
._21_c00409{width:696.736832pt;}
._0_c00409{width:757.480064pt;}
.fs25_c00409{font-size:9.856000pt;}
.fs21_c00409{font-size:15.206400pt;}
.fs1_c00409{font-size:19.712000pt;}
.fs20_c00409{font-size:20.768000pt;}
.fs23_c00409{font-size:21.296000pt;}
.fsd_c00409{font-size:23.232000pt;}
.fsc_c00409{font-size:23.760000pt;}
.fse_c00409{font-size:24.640000pt;}
.fs27_c00409{font-size:24.992000pt;}
.fs1f_c00409{font-size:27.280000pt;}
.fs22_c00409{font-size:28.336000pt;}
.fs18_c00409{font-size:29.216000pt;}
.fs10_c00409{font-size:29.920000pt;}
.fs24_c00409{font-size:30.272176pt;}
.fs26_c00409{font-size:31.328000pt;}
.fs1d_c00409{font-size:32.384000pt;}
.fs9_c00409{font-size:33.616000pt;}
.fs3_c00409{font-size:34.496000pt;}
.fs8_c00409{font-size:35.200000pt;}
.fs1c_c00409{font-size:37.664000pt;}
.fs19_c00409{font-size:38.720000pt;}
.fs0_c00409{font-size:39.424000pt;}
.fsb_c00409{font-size:42.240000pt;}
.fsf_c00409{font-size:42.944000pt;}
.fs7_c00409{font-size:43.084976pt;}
.fs11_c00409{font-size:43.472176pt;}
.fs5_c00409{font-size:44.352176pt;}
.fs1e_c00409{font-size:47.168000pt;}
.fs14_c00409{font-size:48.153776pt;}
.fs1a_c00409{font-size:49.632176pt;}
.fs13_c00409{font-size:51.955376pt;}
.fs6_c00409{font-size:57.376000pt;}
.fs1b_c00409{font-size:60.016000pt;}
.fs16_c00409{font-size:60.896000pt;}
.fs17_c00409{font-size:61.424176pt;}
.fsa_c00409{font-size:61.776000pt;}
.fs15_c00409{font-size:61.952176pt;}
.fs4_c00409{font-size:63.888000pt;}
.fs12_c00409{font-size:64.768000pt;}
.fs28_c00409{font-size:67.584176pt;}
.fs2_c00409{font-size:74.272176pt;}
.y0_c00409{bottom:0.000000pt;}
.y2e_c00409{bottom:42.051720pt;}
.y1_c00409{bottom:68.000000pt;}
.y4_c00409{bottom:93.690120pt;}
.y2d_c00409{bottom:116.820920pt;}
.y2b_c00409{bottom:119.988920pt;}
.y2a_c00409{bottom:123.152520pt;}
.y29_c00409{bottom:123.469320pt;}
.y27_c00409{bottom:123.786120pt;}
.y28_c00409{bottom:124.424120pt;}
.y2c_c00409{bottom:125.370120pt;}
.y26_c00409{bottom:126.958520pt;}
.y24_c00409{bottom:180.810120pt;}
.y25_c00409{bottom:181.131320pt;}
.y23_c00409{bottom:210.589320pt;}
.y22_c00409{bottom:267.930120pt;}
.y21_c00409{bottom:296.763320pt;}
.y20_c00409{bottom:328.443320pt;}
.y1f_c00409{bottom:340.160520pt;}
.y1e_c00409{bottom:357.588920pt;}
.y1d_c00409{bottom:386.730120pt;}
.y1c_c00409{bottom:408.589320pt;}
.y1b_c00409{bottom:415.563320pt;}
.y1a_c00409{bottom:464.979720pt;}
.y19_c00409{bottom:472.270520pt;}
.y18_c00409{bottom:501.416120pt;}
.y17_c00409{bottom:531.190920pt;}
.y16_c00409{bottom:560.340920pt;}
.y15_c00409{bottom:589.803320pt;}
.y14_c00409{bottom:620.216120pt;}
.y3_c00409{bottom:646.193720pt;}
.y13_c00409{bottom:677.873720pt;}
.y12_c00409{bottom:698.148920pt;}
.yd_c00409{bottom:706.068920pt;}
.y10_c00409{bottom:706.381320pt;}
.yf_c00409{bottom:707.019320pt;}
.ye_c00409{bottom:707.965320pt;}
.y11_c00409{bottom:713.350920pt;}
.y2_c00409{bottom:731.096120pt;}
.yc_c00409{bottom:736.794120pt;}
.yb_c00409{bottom:765.310520pt;}
.ya_c00409{bottom:795.085320pt;}
.y9_c00409{bottom:825.819320pt;}
.y8_c00409{bottom:854.643720pt;}
.y7_c00409{bottom:932.259720pt;}
.y6_c00409{bottom:959.504520pt;}
.y5_c00409{bottom:977.878920pt;}
.h21_c00409{height:10.127462pt;}
.h3_c00409{height:20.559000pt;}
.h20_c00409{height:21.660375pt;}
.h23_c00409{height:22.211063pt;}
.he_c00409{height:24.230250pt;}
.hd_c00409{height:24.780938pt;}
.hf_c00409{height:24.832500pt;}
.h26_c00409{height:25.187250pt;}
.h12_c00409{height:25.698750pt;}
.h1f_c00409{height:28.452188pt;}
.h8_c00409{height:28.694594pt;}
.h11_c00409{height:29.364844pt;}
.h7_c00409{height:29.538549pt;}
.h22_c00409{height:29.553563pt;}
.h19_c00409{height:30.471375pt;}
.h1d_c00409{height:31.767313pt;}
.h15_c00409{height:32.070415pt;}
.h14_c00409{height:34.602280pt;}
.h5_c00409{height:35.978250pt;}
.h1a_c00409{height:38.001563pt;}
.h1c_c00409{height:39.282375pt;}
.h2_c00409{height:41.118000pt;}
.hc_c00409{height:41.456250pt;}
.h25_c00409{height:42.665563pt;}
.h10_c00409{height:43.279500pt;}
.h1e_c00409{height:46.269781pt;}
.h17_c00409{height:59.766094pt;}
.h9_c00409{height:59.841375pt;}
.hb_c00409{height:60.629766pt;}
.h16_c00409{height:60.802673pt;}
.h6_c00409{height:62.702578pt;}
.h13_c00409{height:63.566250pt;}
.h18_c00409{height:64.063496pt;}
.h24_c00409{height:64.190363pt;}
.h1b_c00409{height:67.790422pt;}
.h27_c00409{height:70.488184pt;}
.h4_c00409{height:72.894079pt;}
.ha_c00409{height:78.530100pt;}
.h1_c00409{height:986.666667pt;}
.h0_c00409{height:1122.666667pt;}
.w1_c00409{width:689.333333pt;}
.w0_c00409{width:793.333333pt;}
.x0_c00409{left:0.000000pt;}
.x2_c00409{left:14.723853pt;}
.x4_c00409{left:32.464653pt;}
.x3_c00409{left:49.967853pt;}
.x1_c00409{left:52.000000pt;}
.x14_c00409{left:71.554253pt;}
.xa_c00409{left:72.610253pt;}
.x7a_c00409{left:73.996253pt;}
.x79_c00409{left:76.785853pt;}
.x20_c00409{left:81.964653pt;}
.x86_c00409{left:91.129853pt;}
.xb_c00409{left:100.862653pt;}
.x21_c00409{left:103.643453pt;}
.x64_c00409{left:110.239053pt;}
.x2d_c00409{left:111.506253pt;}
.x45_c00409{left:119.646253pt;}
.x22_c00409{left:121.151053pt;}
.x7f_c00409{left:126.725853pt;}
.x6a_c00409{left:129.898253pt;}
.x80_c00409{left:131.464653pt;}
.x15_c00409{left:132.569053pt;}
.x7b_c00409{left:136.977853pt;}
.x23_c00409{left:138.720253pt;}
.x2e_c00409{left:140.330653pt;}
.x55_c00409{left:141.716653pt;}
.x65_c00409{left:144.449053pt;}
.x46_c00409{left:148.571853pt;}
.x66_c00409{left:152.056653pt;}
.x47_c00409{left:159.343053pt;}
.x73_c00409{left:160.720253pt;}
.x48_c00409{left:168.842653pt;}
.x24_c00409{left:169.916253pt;}
.x8_c00409{left:171.557453pt;}
.x4c_c00409{left:180.414653pt;}
.x7c_c00409{left:187.137853pt;}
.x25_c00409{left:189.161853pt;}
.x7d_c00409{left:195.189853pt;}
.x6f_c00409{left:198.621853pt;}
.x43_c00409{left:199.642653pt;}
.xc_c00409{left:208.878253pt;}
.x7e_c00409{left:212.165053pt;}
.x3b_c00409{left:213.757853pt;}
.x2f_c00409{left:218.901453pt;}
.x58_c00409{left:220.459053pt;}
.x37_c00409{left:221.858253pt;}
.x38_c00409{left:228.691453pt;}
.x16_c00409{left:239.282253pt;}
.x81_c00409{left:241.574653pt;}
.x74_c00409{left:243.902253pt;}
.x39_c00409{left:245.525853pt;}
.xd_c00409{left:248.289053pt;}
.x44_c00409{left:250.000653pt;}
.x17_c00409{left:258.114253pt;}
.x3a_c00409{left:267.847053pt;}
.x4d_c00409{left:268.775453pt;}
.x70_c00409{left:270.148253pt;}
.xe_c00409{left:276.801053pt;}
.x3c_c00409{left:278.072653pt;}
.x3d_c00409{left:284.201853pt;}
.xf_c00409{left:287.347853pt;}
.x18_c00409{left:288.276253pt;}
.x30_c00409{left:298.273053pt;}
.x5f_c00409{left:307.301853pt;}
.x6e_c00409{left:308.335853pt;}
.x10_c00409{left:316.431853pt;}
.x49_c00409{left:317.448253pt;}
.x82_c00409{left:319.643853pt;}
.x6b_c00409{left:322.275053pt;}
.x31_c00409{left:326.248253pt;}
.x19_c00409{left:328.197453pt;}
.x3e_c00409{left:336.394653pt;}
.x26_c00409{left:337.815853pt;}
.x83_c00409{left:343.716253pt;}
.x63_c00409{left:347.667453pt;}
.x4e_c00409{left:356.639053pt;}
.x75_c00409{left:357.761053pt;}
.x60_c00409{left:359.727853pt;}
.x5c_c00409{left:365.848253pt;}
.x59_c00409{left:375.356653pt;}
.x27_c00409{left:376.342253pt;}
.x1a_c00409{left:378.172653pt;}
.x61_c00409{left:386.308253pt;}
.x4a_c00409{left:394.998253pt;}
.x5_c00409{left:400.348653pt;}
.x28_c00409{left:405.936653pt;}
.x6c_c00409{left:406.873853pt;}
.x32_c00409{left:415.590253pt;}
.x76_c00409{left:424.812653pt;}
.x11_c00409{left:425.899453pt;}
.x5a_c00409{left:431.192653pt;}
.x33_c00409{left:435.113053pt;}
.x34_c00409{left:444.137453pt;}
.x29_c00409{left:445.479453pt;}
.x1b_c00409{left:455.062653pt;}
.x71_c00409{left:463.312653pt;}
.x1c_c00409{left:464.865853pt;}
.x9_c00409{left:469.094253pt;}
.x62_c00409{left:472.315053pt;}
.x4f_c00409{left:474.691053pt;}
.x67_c00409{left:475.623853pt;}
.x12_c00409{left:484.177453pt;}
.x6d_c00409{left:485.361053pt;}
.x1d_c00409{left:494.372253pt;}
.x56_c00409{left:495.467853pt;}
.x50_c00409{left:502.969853pt;}
.x2a_c00409{left:504.254653pt;}
.x57_c00409{left:514.471453pt;}
.x51_c00409{left:515.795853pt;}
.x35_c00409{left:523.764253pt;}
.x52_c00409{left:532.740253pt;}
.x1e_c00409{left:533.901853pt;}
.x77_c00409{left:543.432253pt;}
.x1f_c00409{left:552.443453pt;}
.x68_c00409{left:553.433453pt;}
.x4b_c00409{left:563.663453pt;}
.x5d_c00409{left:573.220253pt;}
.x84_c00409{left:576.797453pt;}
.x2b_c00409{left:578.126253pt;}
.x5b_c00409{left:582.227053pt;}
.x2c_c00409{left:583.300653pt;}
.x85_c00409{left:587.353053pt;}
.x3f_c00409{left:592.879453pt;}
.x40_c00409{left:601.270253pt;}
.x78_c00409{left:602.176653pt;}
.x6_c00409{left:603.091853pt;}
.x69_c00409{left:611.931453pt;}
.x36_c00409{left:613.057853pt;}
.x72_c00409{left:616.978253pt;}
.x7_c00409{left:622.297853pt;}
.x42_c00409{left:632.114253pt;}
.x41_c00409{left:635.053453pt;}
.x53_c00409{left:640.531453pt;}
.x13_c00409{left:642.159453pt;}
.x5e_c00409{left:652.085853pt;}
.x54_c00409{left:661.906653pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9de6562281536b0f718cda56.woff2')format("woff");}.ff1_c00410{font-family:ff1_c00410;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00410;src:url('chunks/assets/font_a53cfeba73ff2e45f801d903.woff2')format("woff");}.ff2_c00410{font-family:ff2_c00410;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00410;src:url('chunks/assets/font_c6321a7967acd3e08b2f7421.woff2')format("woff");}.ff3_c00410{font-family:ff3_c00410;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00410;src:url('chunks/assets/font_a22c726cfcb3991d328dbdcf.woff2')format("woff");}.ff4_c00410{font-family:ff4_c00410;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00410;src:url('chunks/assets/font_676d8f5ab5983ce9e6a7280f.woff2')format("woff");}.ff5_c00410{font-family:ff5_c00410;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00410;src:url('chunks/assets/font_9908477295fad80927aae248.woff2')format("woff");}.ff6_c00410{font-family:ff6_c00410;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.me5_c00410{transform:matrix(0.034092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.034092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.034092,0.000000,0.000000,0.250000,0,0);}
.m113_c00410{transform:matrix(0.041668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.041668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.041668,0.000000,0.000000,0.250000,0,0);}
.mce_c00410{transform:matrix(0.045456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045456,0.000000,0.000000,0.250000,0,0);}
.md_c00410{transform:matrix(0.048078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048078,0.000000,0.000000,0.250000,0,0);}
.me3_c00410{transform:matrix(0.050002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050002,0.000000,0.000000,0.250000,0,0);}
.md1_c00410{transform:matrix(0.053031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053031,0.000000,0.000000,0.250000,0,0);}
.m98_c00410{transform:matrix(0.053574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053574,0.000000,0.000000,0.250000,0,0);}
.md0_c00410{transform:matrix(0.057577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.057577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.057577,0.000000,0.000000,0.250000,0,0);}
.mb8_c00410{transform:matrix(0.073530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073530,0.000000,0.000000,0.250000,0,0);}
.m6d_c00410{transform:matrix(0.076088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076088,0.000000,0.000000,0.250000,0,0);}
.m6_c00410{transform:matrix(0.079745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.079745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.079745,0.000000,0.000000,0.250000,0,0);}
.m96_c00410{transform:matrix(0.082145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.082145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.082145,0.000000,0.000000,0.250000,0,0);}
.m31_c00410{transform:matrix(0.082188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.082188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.082188,0.000000,0.000000,0.250000,0,0);}
.m9c_c00410{transform:matrix(0.088250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00410{transform:matrix(0.089288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089288,0.000000,0.000000,0.250000,0,0);}
.m50_c00410{transform:matrix(0.090058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090058,0.000000,0.000000,0.250000,0,0);}
.m75_c00410{transform:matrix(0.090234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090234,0.000000,0.000000,0.250000,0,0);}
.mf_c00410{transform:matrix(0.091347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091347,0.000000,0.000000,0.250000,0,0);}
.mb4_c00410{transform:matrix(0.103271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103271,0.000000,0.000000,0.250000,0,0);}
.m112_c00410{transform:matrix(0.104168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104168,0.000000,0.000000,0.250000,0,0);}
.m33_c00410{transform:matrix(0.105302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105302,0.000000,0.000000,0.250000,0,0);}
.m81_c00410{transform:matrix(0.106574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106574,0.000000,0.000000,0.250000,0,0);}
.m7c_c00410{transform:matrix(0.107145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107145,0.000000,0.000000,0.250000,0,0);}
.m1a_c00410{transform:matrix(0.109042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109042,0.000000,0.000000,0.250000,0,0);}
.m149_c00410{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m7_c00410{transform:matrix(0.110841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110841,0.000000,0.000000,0.250000,0,0);}
.m10e_c00410{transform:matrix(0.111150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111150,0.000000,0.000000,0.250000,0,0);}
.mbd_c00410{transform:matrix(0.113229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113229,0.000000,0.000000,0.250000,0,0);}
.me2_c00410{transform:matrix(0.116669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116669,0.000000,0.000000,0.250000,0,0);}
.m102_c00410{transform:matrix(0.117138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117138,0.000000,0.000000,0.250000,0,0);}
.m5b_c00410{transform:matrix(0.117540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117540,0.000000,0.000000,0.250000,0,0);}
.mb9_c00410{transform:matrix(0.117648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117648,0.000000,0.000000,0.250000,0,0);}
.m147_c00410{transform:matrix(0.118750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118750,0.000000,0.000000,0.250000,0,0);}
.m10c_c00410{transform:matrix(0.119048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119048,0.000000,0.000000,0.250000,0,0);}
.m6e_c00410{transform:matrix(0.119566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119566,0.000000,0.000000,0.250000,0,0);}
.m30_c00410{transform:matrix(0.119805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119805,0.000000,0.000000,0.250000,0,0);}
.m57_c00410{transform:matrix(0.119852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119852,0.000000,0.000000,0.250000,0,0);}
.mc8_c00410{transform:matrix(0.120245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120245,0.000000,0.000000,0.250000,0,0);}
.mdf_c00410{transform:matrix(0.126001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126001,0.000000,0.000000,0.250000,0,0);}
.m3f_c00410{transform:matrix(0.126034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126034,0.000000,0.000000,0.250000,0,0);}
.m9b_c00410{transform:matrix(0.129528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129528,0.000000,0.000000,0.250000,0,0);}
.me_c00410{transform:matrix(0.129807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129807,0.000000,0.000000,0.250000,0,0);}
.mfe_c00410{transform:matrix(0.130691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130691,0.000000,0.000000,0.250000,0,0);}
.m1c_c00410{transform:matrix(0.130809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130809,0.000000,0.000000,0.250000,0,0);}
.m4d_c00410{transform:matrix(0.130830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130830,0.000000,0.000000,0.250000,0,0);}
.m59_c00410{transform:matrix(0.133123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133123,0.000000,0.000000,0.250000,0,0);}
.m67_c00410{transform:matrix(0.134561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134561,0.000000,0.000000,0.250000,0,0);}
.mcf_c00410{transform:matrix(0.136365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136365,0.000000,0.000000,0.250000,0,0);}
.m86_c00410{transform:matrix(0.136373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136373,0.000000,0.000000,0.250000,0,0);}
.m133_c00410{transform:matrix(0.136429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136429,0.000000,0.000000,0.250000,0,0);}
.m14a_c00410{transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);}
.meb_c00410{transform:matrix(0.139104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139104,0.000000,0.000000,0.250000,0,0);}
.mcb_c00410{transform:matrix(0.140153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140153,0.000000,0.000000,0.250000,0,0);}
.mc_c00410{transform:matrix(0.144230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144230,0.000000,0.000000,0.250000,0,0);}
.m118_c00410{transform:matrix(0.145338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145338,0.000000,0.000000,0.250000,0,0);}
.m69_c00410{transform:matrix(0.146794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146794,0.000000,0.000000,0.250000,0,0);}
.m148_c00410{transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);}
.m27_c00410{transform:matrix(0.147773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147773,0.000000,0.000000,0.250000,0,0);}
.ma_c00410{transform:matrix(0.150001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150001,0.000000,0.000000,0.250000,0,0);}
.m108_c00410{transform:matrix(0.155494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155494,0.000000,0.000000,0.250000,0,0);}
.ma5_c00410{transform:matrix(0.155979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155979,0.000000,0.000000,0.250000,0,0);}
.m68_c00410{transform:matrix(0.156022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156022,0.000000,0.000000,0.250000,0,0);}
.m114_c00410{transform:matrix(0.156249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156249,0.000000,0.000000,0.250000,0,0);}
.m116_c00410{transform:matrix(0.157940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157940,0.000000,0.000000,0.250000,0,0);}
.m9d_c00410{transform:matrix(0.158067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158067,0.000000,0.000000,0.250000,0,0);}
.m15_c00410{transform:matrix(0.159158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159158,0.000000,0.000000,0.250000,0,0);}
.mee_c00410{transform:matrix(0.159803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159803,0.000000,0.000000,0.250000,0,0);}
.m99_c00410{transform:matrix(0.160717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160717,0.000000,0.000000,0.250000,0,0);}
.m60_c00410{transform:matrix(0.163544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163544,0.000000,0.000000,0.250000,0,0);}
.m143_c00410{transform:matrix(0.164393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164393,0.000000,0.000000,0.250000,0,0);}
.m77_c00410{transform:matrix(0.165080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165080,0.000000,0.000000,0.250000,0,0);}
.mb_c00410{transform:matrix(0.165748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165748,0.000000,0.000000,0.250000,0,0);}
.m10b_c00410{transform:matrix(0.166666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166666,0.000000,0.000000,0.250000,0,0);}
.mcd_c00410{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);}
.m84_c00410{transform:matrix(0.168568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168568,0.000000,0.000000,0.250000,0,0);}
.me9_c00410{transform:matrix(0.168902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168902,0.000000,0.000000,0.250000,0,0);}
.mdd_c00410{transform:matrix(0.170001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170001,0.000000,0.000000,0.250000,0,0);}
.me6_c00410{transform:matrix(0.170455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170455,0.000000,0.000000,0.250000,0,0);}
.m8d_c00410{transform:matrix(0.170568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170568,0.000000,0.000000,0.250000,0,0);}
.m19_c00410{transform:matrix(0.171784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171784,0.000000,0.000000,0.250000,0,0);}
.mbc_c00410{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m11e_c00410{transform:matrix(0.172567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172567,0.000000,0.000000,0.250000,0,0);}
.m97_c00410{transform:matrix(0.172960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172960,0.000000,0.000000,0.250000,0,0);}
.mcc_c00410{transform:matrix(0.174243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174243,0.000000,0.000000,0.250000,0,0);}
.m28_c00410{transform:matrix(0.175991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175991,0.000000,0.000000,0.250000,0,0);}
.m5_c00410{transform:matrix(0.177845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177845,0.000000,0.000000,0.250000,0,0);}
.m44_c00410{transform:matrix(0.178472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178472,0.000000,0.000000,0.250000,0,0);}
.m64_c00410{transform:matrix(0.179766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179766,0.000000,0.000000,0.250000,0,0);}
.m6f_c00410{transform:matrix(0.184289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184289,0.000000,0.000000,0.250000,0,0);}
.m146_c00410{transform:matrix(0.184375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184375,0.000000,0.000000,0.250000,0,0);}
.m73_c00410{transform:matrix(0.184578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184578,0.000000,0.000000,0.250000,0,0);}
.m152_c00410{transform:matrix(0.185212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185212,0.000000,0.000000,0.250000,0,0);}
.ma9_c00410{transform:matrix(0.185621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185621,0.000000,0.000000,0.250000,0,0);}
.ma3_c00410{transform:matrix(0.186507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186507,0.000000,0.000000,0.250000,0,0);}
.m142_c00410{transform:matrix(0.186561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186561,0.000000,0.000000,0.250000,0,0);}
.maa_c00410{transform:matrix(0.187020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187020,0.000000,0.000000,0.250000,0,0);}
.m14_c00410{transform:matrix(0.188097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188097,0.000000,0.000000,0.250000,0,0);}
.m9e_c00410{transform:matrix(0.188869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188869,0.000000,0.000000,0.250000,0,0);}
.m11c_c00410{transform:matrix(0.190495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190495,0.000000,0.000000,0.250000,0,0);}
.ma1_c00410{transform:matrix(0.190696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190696,0.000000,0.000000,0.250000,0,0);}
.m94_c00410{transform:matrix(0.191512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191512,0.000000,0.000000,0.250000,0,0);}
.m14e_c00410{transform:matrix(0.191601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191601,0.000000,0.000000,0.250000,0,0);}
.m91_c00410{transform:matrix(0.191657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191657,0.000000,0.000000,0.250000,0,0);}
.m74_c00410{transform:matrix(0.192734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192734,0.000000,0.000000,0.250000,0,0);}
.m106_c00410{transform:matrix(0.193461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193461,0.000000,0.000000,0.250000,0,0);}
.mbb_c00410{transform:matrix(0.193934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193934,0.000000,0.000000,0.250000,0,0);}
.m38_c00410{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.mba_c00410{transform:matrix(0.194852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194852,0.000000,0.000000,0.250000,0,0);}
.mb2_c00410{transform:matrix(0.195009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195009,0.000000,0.000000,0.250000,0,0);}
.mca_c00410{transform:matrix(0.196971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196971,0.000000,0.000000,0.250000,0,0);}
.mc9_c00410{transform:matrix(0.198120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198120,0.000000,0.000000,0.250000,0,0);}
.m12e_c00410{transform:matrix(0.199459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199459,0.000000,0.000000,0.250000,0,0);}
.m18_c00410{transform:matrix(0.202567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202567,0.000000,0.000000,0.250000,0,0);}
.m46_c00410{transform:matrix(0.202902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202902,0.000000,0.000000,0.250000,0,0);}
.m43_c00410{transform:matrix(0.206059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206059,0.000000,0.000000,0.250000,0,0);}
.m12c_c00410{transform:matrix(0.206433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206433,0.000000,0.000000,0.250000,0,0);}
.m8f_c00410{transform:matrix(0.207841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207841,0.000000,0.000000,0.250000,0,0);}
.m4_c00410{transform:matrix(0.209049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209049,0.000000,0.000000,0.250000,0,0);}
.m55_c00410{transform:matrix(0.209578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209578,0.000000,0.000000,0.250000,0,0);}
.ma0_c00410{transform:matrix(0.213546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213546,0.000000,0.000000,0.250000,0,0);}
.m14b_c00410{transform:matrix(0.213999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213999,0.000000,0.000000,0.250000,0,0);}
.mc1_c00410{transform:matrix(0.214003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214003,0.000000,0.000000,0.250000,0,0);}
.m51_c00410{transform:matrix(0.214554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214554,0.000000,0.000000,0.250000,0,0);}
.mc2_c00410{transform:matrix(0.215742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215742,0.000000,0.000000,0.250000,0,0);}
.m3e_c00410{transform:matrix(0.217257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217257,0.000000,0.000000,0.250000,0,0);}
.m78_c00410{transform:matrix(0.219070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219070,0.000000,0.000000,0.250000,0,0);}
.mde_c00410{transform:matrix(0.220586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220586,0.000000,0.000000,0.250000,0,0);}
.m7e_c00410{transform:matrix(0.220913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220913,0.000000,0.000000,0.250000,0,0);}
.m1_c00410{transform:matrix(0.221298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221298,0.000000,0.000000,0.250000,0,0);}
.m121_c00410{transform:matrix(0.221833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221833,0.000000,0.000000,0.250000,0,0);}
.m117_c00410{transform:matrix(0.223686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223686,0.000000,0.000000,0.250000,0,0);}
.m6b_c00410{transform:matrix(0.226101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226101,0.000000,0.000000,0.250000,0,0);}
.m93_c00410{transform:matrix(0.227441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227441,0.000000,0.000000,0.250000,0,0);}
.m49_c00410{transform:matrix(0.228006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228006,0.000000,0.000000,0.250000,0,0);}
.ma7_c00410{transform:matrix(0.228314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228314,0.000000,0.000000,0.250000,0,0);}
.med_c00410{transform:matrix(0.233108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233108,0.000000,0.000000,0.250000,0,0);}
.m7b_c00410{transform:matrix(0.234680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234680,0.000000,0.000000,0.250000,0,0);}
.m6c_c00410{transform:matrix(0.235507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235507,0.000000,0.000000,0.250000,0,0);}
.m13_c00410{transform:matrix(0.235662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235662,0.000000,0.000000,0.250000,0,0);}
.ma4_c00410{transform:matrix(0.235973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235973,0.000000,0.000000,0.250000,0,0);}
.m61_c00410{transform:matrix(0.236125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236125,0.000000,0.000000,0.250000,0,0);}
.m10d_c00410{transform:matrix(0.237414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237414,0.000000,0.000000,0.250000,0,0);}
.m109_c00410{transform:matrix(0.238688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238688,0.000000,0.000000,0.250000,0,0);}
.m1b_c00410{transform:matrix(0.242668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242668,0.000000,0.000000,0.250000,0,0);}
.m16_c00410{transform:matrix(0.245508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245508,0.000000,0.000000,0.250000,0,0);}
.mc4_c00410{transform:matrix(0.246080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246080,0.000000,0.000000,0.250000,0,0);}
.m0_c00410{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00410{transform:matrix(0.250270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250270,0.000000,0.000000,0.250000,0,0);}
.mfd_c00410{transform:matrix(0.251144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251144,0.000000,0.000000,0.250000,0,0);}
.m9f_c00410{transform:matrix(0.253118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253118,0.000000,0.000000,0.250000,0,0);}
.mc5_c00410{transform:matrix(0.253869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253869,0.000000,0.000000,0.250000,0,0);}
.m88_c00410{transform:matrix(0.254368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254368,0.000000,0.000000,0.250000,0,0);}
.m13c_c00410{transform:matrix(0.255033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255033,0.000000,0.000000,0.250000,0,0);}
.m87_c00410{transform:matrix(0.255335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255335,0.000000,0.000000,0.250000,0,0);}
.m14f_c00410{transform:matrix(0.255488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255488,0.000000,0.000000,0.250000,0,0);}
.m140_c00410{transform:matrix(0.255738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255738,0.000000,0.000000,0.250000,0,0);}
.me0_c00410{transform:matrix(0.256215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256215,0.000000,0.000000,0.250000,0,0);}
.m145_c00410{transform:matrix(0.256332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256332,0.000000,0.000000,0.250000,0,0);}
.m9_c00410{transform:matrix(0.256561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256561,0.000000,0.000000,0.250000,0,0);}
.mfa_c00410{transform:matrix(0.256736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256736,0.000000,0.000000,0.250000,0,0);}
.m36_c00410{transform:matrix(0.257323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257323,0.000000,0.000000,0.250000,0,0);}
.mf2_c00410{transform:matrix(0.257774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257774,0.000000,0.000000,0.250000,0,0);}
.md5_c00410{transform:matrix(0.257919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257919,0.000000,0.000000,0.250000,0,0);}
.me7_c00410{transform:matrix(0.261365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261365,0.000000,0.000000,0.250000,0,0);}
.md4_c00410{transform:matrix(0.261579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261579,0.000000,0.000000,0.250000,0,0);}
.m1d_c00410{transform:matrix(0.263909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263909,0.000000,0.000000,0.250000,0,0);}
.m71_c00410{transform:matrix(0.264939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264939,0.000000,0.000000,0.250000,0,0);}
.mb1_c00410{transform:matrix(0.264949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264949,0.000000,0.000000,0.250000,0,0);}
.m5c_c00410{transform:matrix(0.265357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265357,0.000000,0.000000,0.250000,0,0);}
.ma8_c00410{transform:matrix(0.266053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266053,0.000000,0.000000,0.250000,0,0);}
.m11d_c00410{transform:matrix(0.266615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266615,0.000000,0.000000,0.250000,0,0);}
.m47_c00410{transform:matrix(0.267023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267023,0.000000,0.000000,0.250000,0,0);}
.m139_c00410{transform:matrix(0.269433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269433,0.000000,0.000000,0.250000,0,0);}
.m12f_c00410{transform:matrix(0.270034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270034,0.000000,0.000000,0.250000,0,0);}
.m56_c00410{transform:matrix(0.270630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270630,0.000000,0.000000,0.250000,0,0);}
.mec_c00410{transform:matrix(0.271637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271637,0.000000,0.000000,0.250000,0,0);}
.m124_c00410{transform:matrix(0.272576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272576,0.000000,0.000000,0.250000,0,0);}
.m4e_c00410{transform:matrix(0.272658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272658,0.000000,0.000000,0.250000,0,0);}
.m130_c00410{transform:matrix(0.272791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272791,0.000000,0.000000,0.250000,0,0);}
.m4b_c00410{transform:matrix(0.272982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272982,0.000000,0.000000,0.250000,0,0);}
.mbf_c00410{transform:matrix(0.273563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273563,0.000000,0.000000,0.250000,0,0);}
.m10a_c00410{transform:matrix(0.273809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273809,0.000000,0.000000,0.250000,0,0);}
.m20_c00410{transform:matrix(0.274519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274519,0.000000,0.000000,0.250000,0,0);}
.m11f_c00410{transform:matrix(0.274603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274603,0.000000,0.000000,0.250000,0,0);}
.m14c_c00410{transform:matrix(0.274633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274633,0.000000,0.000000,0.250000,0,0);}
.md6_c00410{transform:matrix(0.275215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275215,0.000000,0.000000,0.250000,0,0);}
.me4_c00410{transform:matrix(0.276120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276120,0.000000,0.000000,0.250000,0,0);}
.m13e_c00410{transform:matrix(0.277443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277443,0.000000,0.000000,0.250000,0,0);}
.m7a_c00410{transform:matrix(0.277827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277827,0.000000,0.000000,0.250000,0,0);}
.m58_c00410{transform:matrix(0.278629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278629,0.000000,0.000000,0.250000,0,0);}
.m120_c00410{transform:matrix(0.280225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280225,0.000000,0.000000,0.250000,0,0);}
.m9a_c00410{transform:matrix(0.280357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280357,0.000000,0.000000,0.250000,0,0);}
.m35_c00410{transform:matrix(0.280889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280889,0.000000,0.000000,0.250000,0,0);}
.m8_c00410{transform:matrix(0.281104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281104,0.000000,0.000000,0.250000,0,0);}
.m132_c00410{transform:matrix(0.281533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281533,0.000000,0.000000,0.250000,0,0);}
.m135_c00410{transform:matrix(0.282792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282792,0.000000,0.000000,0.250000,0,0);}
.m123_c00410{transform:matrix(0.283107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283107,0.000000,0.000000,0.250000,0,0);}
.m8b_c00410{transform:matrix(0.283203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283203,0.000000,0.000000,0.250000,0,0);}
.m45_c00410{transform:matrix(0.283353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283353,0.000000,0.000000,0.250000,0,0);}
.m24_c00410{transform:matrix(0.283419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283419,0.000000,0.000000,0.250000,0,0);}
.m4c_c00410{transform:matrix(0.283590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283590,0.000000,0.000000,0.250000,0,0);}
.m2b_c00410{transform:matrix(0.285320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285320,0.000000,0.000000,0.250000,0,0);}
.m122_c00410{transform:matrix(0.286098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286098,0.000000,0.000000,0.250000,0,0);}
.mf6_c00410{transform:matrix(0.287241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287241,0.000000,0.000000,0.250000,0,0);}
.m13b_c00410{transform:matrix(0.287242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287242,0.000000,0.000000,0.250000,0,0);}
.m26_c00410{transform:matrix(0.289782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289782,0.000000,0.000000,0.250000,0,0);}
.m137_c00410{transform:matrix(0.289966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289966,0.000000,0.000000,0.250000,0,0);}
.m40_c00410{transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);}
.m76_c00410{transform:matrix(0.290770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290770,0.000000,0.000000,0.250000,0,0);}
.m151_c00410{transform:matrix(0.290838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290838,0.000000,0.000000,0.250000,0,0);}
.mf0_c00410{transform:matrix(0.291711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291711,0.000000,0.000000,0.250000,0,0);}
.mae_c00410{transform:matrix(0.292404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292404,0.000000,0.000000,0.250000,0,0);}
.m21_c00410{transform:matrix(0.292507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292507,0.000000,0.000000,0.250000,0,0);}
.m37_c00410{transform:matrix(0.292557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292557,0.000000,0.000000,0.250000,0,0);}
.m48_c00410{transform:matrix(0.293030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293030,0.000000,0.000000,0.250000,0,0);}
.m13d_c00410{transform:matrix(0.293295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293295,0.000000,0.000000,0.250000,0,0);}
.m6a_c00410{transform:matrix(0.293478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293478,0.000000,0.000000,0.250000,0,0);}
.m144_c00410{transform:matrix(0.297736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297736,0.000000,0.000000,0.250000,0,0);}
.mb5_c00410{transform:matrix(0.297756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297756,0.000000,0.000000,0.250000,0,0);}
.me1_c00410{transform:matrix(0.298924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298924,0.000000,0.000000,0.250000,0,0);}
.mc6_c00410{transform:matrix(0.299996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299996,0.000000,0.000000,0.250000,0,0);}
.m150_c00410{transform:matrix(0.300664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300664,0.000000,0.000000,0.250000,0,0);}
.mf1_c00410{transform:matrix(0.301593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301593,0.000000,0.000000,0.250000,0,0);}
.m136_c00410{transform:matrix(0.301753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301753,0.000000,0.000000,0.250000,0,0);}
.mc3_c00410{transform:matrix(0.302540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302540,0.000000,0.000000,0.250000,0,0);}
.m3c_c00410{transform:matrix(0.303198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303198,0.000000,0.000000,0.250000,0,0);}
.m52_c00410{transform:matrix(0.303205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303205,0.000000,0.000000,0.250000,0,0);}
.m128_c00410{transform:matrix(0.303687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303687,0.000000,0.000000,0.250000,0,0);}
.m17_c00410{transform:matrix(0.303826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303826,0.000000,0.000000,0.250000,0,0);}
.m126_c00410{transform:matrix(0.303897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303897,0.000000,0.000000,0.250000,0,0);}
.mb0_c00410{transform:matrix(0.304121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304121,0.000000,0.000000,0.250000,0,0);}
.m1e_c00410{transform:matrix(0.304353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304353,0.000000,0.000000,0.250000,0,0);}
.md8_c00410{transform:matrix(0.304398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304398,0.000000,0.000000,0.250000,0,0);}
.m10f_c00410{transform:matrix(0.304696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304696,0.000000,0.000000,0.250000,0,0);}
.mda_c00410{transform:matrix(0.304797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304797,0.000000,0.000000,0.250000,0,0);}
.m32_c00410{transform:matrix(0.305760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305760,0.000000,0.000000,0.250000,0,0);}
.m79_c00410{transform:matrix(0.306444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306444,0.000000,0.000000,0.250000,0,0);}
.m2f_c00410{transform:matrix(0.306881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306881,0.000000,0.000000,0.250000,0,0);}
.md9_c00410{transform:matrix(0.307696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307696,0.000000,0.000000,0.250000,0,0);}
.m5d_c00410{transform:matrix(0.307758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307758,0.000000,0.000000,0.250000,0,0);}
.md7_c00410{transform:matrix(0.307913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307913,0.000000,0.000000,0.250000,0,0);}
.m23_c00410{transform:matrix(0.308583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308583,0.000000,0.000000,0.250000,0,0);}
.m119_c00410{transform:matrix(0.309397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309397,0.000000,0.000000,0.250000,0,0);}
.m12_c00410{transform:matrix(0.310813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310813,0.000000,0.000000,0.250000,0,0);}
.m4f_c00410{transform:matrix(0.312467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312467,0.000000,0.000000,0.250000,0,0);}
.ma6_c00410{transform:matrix(0.313202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313202,0.000000,0.000000,0.250000,0,0);}
.m85_c00410{transform:matrix(0.313776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313776,0.000000,0.000000,0.250000,0,0);}
.m8c_c00410{transform:matrix(0.314282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314282,0.000000,0.000000,0.250000,0,0);}
.m3b_c00410{transform:matrix(0.314588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314588,0.000000,0.000000,0.250000,0,0);}
.m8e_c00410{transform:matrix(0.314680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314680,0.000000,0.000000,0.250000,0,0);}
.m138_c00410{transform:matrix(0.315494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315494,0.000000,0.000000,0.250000,0,0);}
.m2a_c00410{transform:matrix(0.316084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316084,0.000000,0.000000,0.250000,0,0);}
.m25_c00410{transform:matrix(0.316774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316774,0.000000,0.000000,0.250000,0,0);}
.mdc_c00410{transform:matrix(0.320978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320978,0.000000,0.000000,0.250000,0,0);}
.m7f_c00410{transform:matrix(0.321917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321917,0.000000,0.000000,0.250000,0,0);}
.m13a_c00410{transform:matrix(0.323757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323757,0.000000,0.000000,0.250000,0,0);}
.m153_c00410{transform:matrix(0.324116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324116,0.000000,0.000000,0.250000,0,0);}
.mac_c00410{transform:matrix(0.324253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324253,0.000000,0.000000,0.250000,0,0);}
.m5e_c00410{transform:matrix(0.324264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324264,0.000000,0.000000,0.250000,0,0);}
.me8_c00410{transform:matrix(0.324401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324401,0.000000,0.000000,0.250000,0,0);}
.m2d_c00410{transform:matrix(0.325222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325222,0.000000,0.000000,0.250000,0,0);}
.md3_c00410{transform:matrix(0.325757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325757,0.000000,0.000000,0.250000,0,0);}
.mf5_c00410{transform:matrix(0.326441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326441,0.000000,0.000000,0.250000,0,0);}
.mf7_c00410{transform:matrix(0.327641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327641,0.000000,0.000000,0.250000,0,0);}
.m115_c00410{transform:matrix(0.327695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327695,0.000000,0.000000,0.250000,0,0);}
.m141_c00410{transform:matrix(0.329866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329866,0.000000,0.000000,0.250000,0,0);}
.mef_c00410{transform:matrix(0.330019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330019,0.000000,0.000000,0.250000,0,0);}
.m41_c00410{transform:matrix(0.330183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330183,0.000000,0.000000,0.250000,0,0);}
.m54_c00410{transform:matrix(0.330195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330195,0.000000,0.000000,0.250000,0,0);}
.mc7_c00410{transform:matrix(0.330700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330700,0.000000,0.000000,0.250000,0,0);}
.md2_c00410{transform:matrix(0.330934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330934,0.000000,0.000000,0.250000,0,0);}
.m111_c00410{transform:matrix(0.331101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331101,0.000000,0.000000,0.250000,0,0);}
.m105_c00410{transform:matrix(0.332621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332621,0.000000,0.000000,0.250000,0,0);}
.m2c_c00410{transform:matrix(0.332761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332761,0.000000,0.000000,0.250000,0,0);}
.mc0_c00410{transform:matrix(0.333253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333253,0.000000,0.000000,0.250000,0,0);}
.m82_c00410{transform:matrix(0.335536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335536,0.000000,0.000000,0.250000,0,0);}
.mb7_c00410{transform:matrix(0.335974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335974,0.000000,0.000000,0.250000,0,0);}
.mf3_c00410{transform:matrix(0.336513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336513,0.000000,0.000000,0.250000,0,0);}
.m1f_c00410{transform:matrix(0.336651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336651,0.000000,0.000000,0.250000,0,0);}
.mdb_c00410{transform:matrix(0.337193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337193,0.000000,0.000000,0.250000,0,0);}
.mad_c00410{transform:matrix(0.337384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337384,0.000000,0.000000,0.250000,0,0);}
.m11a_c00410{transform:matrix(0.337886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337886,0.000000,0.000000,0.250000,0,0);}
.m12a_c00410{transform:matrix(0.339755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339755,0.000000,0.000000,0.250000,0,0);}
.m103_c00410{transform:matrix(0.340524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340524,0.000000,0.000000,0.250000,0,0);}
.mbe_c00410{transform:matrix(0.341792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341792,0.000000,0.000000,0.250000,0,0);}
.mfb_c00410{transform:matrix(0.342744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342744,0.000000,0.000000,0.250000,0,0);}
.ma2_c00410{transform:matrix(0.343269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343269,0.000000,0.000000,0.250000,0,0);}
.mff_c00410{transform:matrix(0.344812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344812,0.000000,0.000000,0.250000,0,0);}
.mf9_c00410{transform:matrix(0.344908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344908,0.000000,0.000000,0.250000,0,0);}
.m127_c00410{transform:matrix(0.344935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344935,0.000000,0.000000,0.250000,0,0);}
.m70_c00410{transform:matrix(0.345762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345762,0.000000,0.000000,0.250000,0,0);}
.mf8_c00410{transform:matrix(0.348579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348579,0.000000,0.000000,0.250000,0,0);}
.m80_c00410{transform:matrix(0.349094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349094,0.000000,0.000000,0.250000,0,0);}
.mb6_c00410{transform:matrix(0.353004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353004,0.000000,0.000000,0.250000,0,0);}
.m89_c00410{transform:matrix(0.353008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353008,0.000000,0.000000,0.250000,0,0);}
.m3a_c00410{transform:matrix(0.353747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353747,0.000000,0.000000,0.250000,0,0);}
.m8a_c00410{transform:matrix(0.354320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354320,0.000000,0.000000,0.250000,0,0);}
.m72_c00410{transform:matrix(0.354628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354628,0.000000,0.000000,0.250000,0,0);}
.m2_c00410{transform:matrix(0.354811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354811,0.000000,0.000000,0.250000,0,0);}
.m42_c00410{transform:matrix(0.355202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355202,0.000000,0.000000,0.250000,0,0);}
.m110_c00410{transform:matrix(0.356733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356733,0.000000,0.000000,0.250000,0,0);}
.m39_c00410{transform:matrix(0.356907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356907,0.000000,0.000000,0.250000,0,0);}
.m12d_c00410{transform:matrix(0.358585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358585,0.000000,0.000000,0.250000,0,0);}
.m125_c00410{transform:matrix(0.361780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361780,0.000000,0.000000,0.250000,0,0);}
.m13f_c00410{transform:matrix(0.363517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363517,0.000000,0.000000,0.250000,0,0);}
.m22_c00410{transform:matrix(0.365439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365439,0.000000,0.000000,0.250000,0,0);}
.m5f_c00410{transform:matrix(0.366505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366505,0.000000,0.000000,0.250000,0,0);}
.m131_c00410{transform:matrix(0.368194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368194,0.000000,0.000000,0.250000,0,0);}
.m83_c00410{transform:matrix(0.368407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368407,0.000000,0.000000,0.250000,0,0);}
.mf4_c00410{transform:matrix(0.368501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368501,0.000000,0.000000,0.250000,0,0);}
.m34_c00410{transform:matrix(0.368708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368708,0.000000,0.000000,0.250000,0,0);}
.m10_c00410{transform:matrix(0.370491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370491,0.000000,0.000000,0.250000,0,0);}
.m14d_c00410{transform:matrix(0.370953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370953,0.000000,0.000000,0.250000,0,0);}
.m3_c00410{transform:matrix(0.372643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372643,0.000000,0.000000,0.250000,0,0);}
.m90_c00410{transform:matrix(0.375966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375966,0.000000,0.000000,0.250000,0,0);}
.m129_c00410{transform:matrix(0.377541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377541,0.000000,0.000000,0.250000,0,0);}
.mb3_c00410{transform:matrix(0.379006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379006,0.000000,0.000000,0.250000,0,0);}
.m53_c00410{transform:matrix(0.381114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381114,0.000000,0.000000,0.250000,0,0);}
.m29_c00410{transform:matrix(0.388178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388178,0.000000,0.000000,0.250000,0,0);}
.m134_c00410{transform:matrix(0.394218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394218,0.000000,0.000000,0.250000,0,0);}
.maf_c00410{transform:matrix(0.394472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394472,0.000000,0.000000,0.250000,0,0);}
.m2e_c00410{transform:matrix(0.397793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397793,0.000000,0.000000,0.250000,0,0);}
.m4a_c00410{transform:matrix(0.401414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401414,0.000000,0.000000,0.250000,0,0);}
.m101_c00410{transform:matrix(0.406247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406247,0.000000,0.000000,0.250000,0,0);}
.m92_c00410{transform:matrix(0.410459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410459,0.000000,0.000000,0.250000,0,0);}
.mfc_c00410{transform:matrix(0.415914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415914,0.000000,0.000000,0.250000,0,0);}
.m65_c00410{transform:matrix(0.456276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456276,0.000000,0.000000,0.250000,0,0);}
.mab_c00410{transform:matrix(0.482145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482145,0.000000,0.000000,0.250000,0,0);}
.m11b_c00410{transform:matrix(0.492818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492818,0.000000,0.000000,0.250000,0,0);}
.m12b_c00410{transform:matrix(0.499988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499988,0.000000,0.000000,0.250000,0,0);}
.m104_c00410{transform:matrix(0.536173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536173,0.000000,0.000000,0.250000,0,0);}
.m95_c00410{transform:matrix(0.559586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559586,0.000000,0.000000,0.250000,0,0);}
.mea_c00410{transform:matrix(0.565727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565727,0.000000,0.000000,0.250000,0,0);}
.m66_c00410{transform:matrix(0.574366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574366,0.000000,0.000000,0.250000,0,0);}
.m100_c00410{transform:matrix(0.586703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.586703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.586703,0.000000,0.000000,0.250000,0,0);}
.m63_c00410{transform:matrix(0.590374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590374,0.000000,0.000000,0.250000,0,0);}
.m107_c00410{transform:matrix(0.817213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.817213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.817213,0.000000,0.000000,0.250000,0,0);}
.m3d_c00410{transform:matrix(0.999948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.999948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.999948,0.000000,0.000000,0.250000,0,0);}
.m62_c00410{transform:matrix(1.393844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.393844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.393844,0.000000,0.000000,0.250000,0,0);}
.m11_c00410{transform:matrix(1.459659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.459659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.459659,0.000000,0.000000,0.250000,0,0);}
.v6_c00410{vertical-align:-21.364200px;}
.ve_c00410{vertical-align:-7.147800px;}
.v10_c00410{vertical-align:-5.702400px;}
.va_c00410{vertical-align:-2.874960px;}
.v9_c00410{vertical-align:-1.425600px;}
.v0_c00410{vertical-align:0.000000px;}
.v4_c00410{vertical-align:1.445400px;}
.v3_c00410{vertical-align:5.682600px;}
.vf_c00410{vertical-align:7.108200px;}
.v1_c00410{vertical-align:9.959400px;}
.v5_c00410{vertical-align:11.404800px;}
.v8_c00410{vertical-align:14.236200px;}
.v7_c00410{vertical-align:17.087400px;}
.vd_c00410{vertical-align:18.532800px;}
.vc_c00410{vertical-align:28.512000px;}
.vb_c00410{vertical-align:37.065600px;}
.v2_c00410{vertical-align:44.213400px;}
.ls85_c00410{letter-spacing:-3.215527px;}
.ls2a_c00410{letter-spacing:-2.827440px;}
.ls5b_c00410{letter-spacing:-2.633400px;}
.ls27_c00410{letter-spacing:-2.522527px;}
.ls3f_c00410{letter-spacing:-2.515590px;}
.ls3d_c00410{letter-spacing:-2.474017px;}
.ls18_c00410{letter-spacing:-2.439367px;}
.ls3a_c00410{letter-spacing:-2.363130px;}
.ls46_c00410{letter-spacing:-2.300767px;}
.ls20_c00410{letter-spacing:-2.286900px;}
.ls1b_c00410{letter-spacing:-2.273040px;}
.ls1d_c00410{letter-spacing:-2.224530px;}
.ls48_c00410{letter-spacing:-2.217600px;}
.ls56_c00410{letter-spacing:-2.189880px;}
.ls97_c00410{letter-spacing:-2.169090px;}
.ls30_c00410{letter-spacing:-2.155230px;}
.ls91_c00410{letter-spacing:-2.127517px;}
.ls1a_c00410{letter-spacing:-2.092867px;}
.ls9b_c00410{letter-spacing:-2.037420px;}
.ls34_c00410{letter-spacing:-2.009700px;}
.ls6a_c00410{letter-spacing:-1.926540px;}
.ls1c_c00410{letter-spacing:-1.915848px;}
.ls84_c00410{letter-spacing:-1.905750px;}
.ls6e_c00410{letter-spacing:-1.774080px;}
.ls3c_c00410{letter-spacing:-1.760220px;}
.ls95_c00410{letter-spacing:-1.725570px;}
.ls7e_c00410{letter-spacing:-1.690880px;}
.lsa1_c00410{letter-spacing:-1.683990px;}
.ls4c_c00410{letter-spacing:-1.663200px;}
.ls8f_c00410{letter-spacing:-1.635480px;}
.ls89_c00410{letter-spacing:-1.621620px;}
.ls63_c00410{letter-spacing:-1.614690px;}
.ls7f_c00410{letter-spacing:-1.607767px;}
.ls59_c00410{letter-spacing:-1.600830px;}
.ls4a_c00410{letter-spacing:-1.580040px;}
.ls58_c00410{letter-spacing:-1.496880px;}
.ls28_c00410{letter-spacing:-1.455300px;}
.ls62_c00410{letter-spacing:-1.427580px;}
.ls5e_c00410{letter-spacing:-1.372140px;}
.ls5c_c00410{letter-spacing:-1.323630px;}
.ls79_c00410{letter-spacing:-1.261267px;}
.ls73_c00410{letter-spacing:-1.219680px;}
.ls4f_c00410{letter-spacing:-1.150380px;}
.ls8d_c00410{letter-spacing:-1.136520px;}
.ls36_c00410{letter-spacing:-1.122667px;}
.ls53_c00410{letter-spacing:-1.108800px;}
.ls6c_c00410{letter-spacing:-1.081080px;}
.ls24_c00410{letter-spacing:-1.046430px;}
.ls94_c00410{letter-spacing:-0.942480px;}
.ls25_c00410{letter-spacing:-0.907830px;}
.ls71_c00410{letter-spacing:-0.900900px;}
.ls7d_c00410{letter-spacing:-0.797801px;}
.ls75_c00410{letter-spacing:-0.783090px;}
.ls50_c00410{letter-spacing:-0.776160px;}
.ls6f_c00410{letter-spacing:-0.769230px;}
.ls5f_c00410{letter-spacing:-0.741510px;}
.ls7c_c00410{letter-spacing:-0.740678px;}
.ls39_c00410{letter-spacing:-0.621482px;}
.ls69_c00410{letter-spacing:-0.315097px;}
.ls65_c00410{letter-spacing:-0.243203px;}
.ls17_c00410{letter-spacing:0.000000px;}
.ls82_c00410{letter-spacing:0.041441px;}
.ls5_c00410{letter-spacing:0.060588px;}
.lsa2_c00410{letter-spacing:0.283576px;}
.lsb_c00410{letter-spacing:0.338540px;}
.ls92_c00410{letter-spacing:0.386110px;}
.ls70_c00410{letter-spacing:0.517453px;}
.ls3e_c00410{letter-spacing:0.546242px;}
.ls2_c00410{letter-spacing:0.606949px;}
.ls8e_c00410{letter-spacing:0.673210px;}
.ls55_c00410{letter-spacing:0.702900px;}
.ls6b_c00410{letter-spacing:0.732085px;}
.ls11_c00410{letter-spacing:0.740916px;}
.ls37_c00410{letter-spacing:0.881100px;}
.lse_c00410{letter-spacing:0.886486px;}
.ls7b_c00410{letter-spacing:0.900900px;}
.ls9_c00410{letter-spacing:0.914879px;}
.ls33_c00410{letter-spacing:0.960300px;}
.ls43_c00410{letter-spacing:1.009800px;}
.ls74_c00410{letter-spacing:1.029600px;}
.ls90_c00410{letter-spacing:1.039500px;}
.ls60_c00410{letter-spacing:1.059300px;}
.ls8c_c00410{letter-spacing:1.079001px;}
.ls52_c00410{letter-spacing:1.098900px;}
.ls76_c00410{letter-spacing:1.118700px;}
.ls5a_c00410{letter-spacing:1.138500px;}
.ls66_c00410{letter-spacing:1.197900px;}
.ls72_c00410{letter-spacing:1.287000px;}
.ls26_c00410{letter-spacing:1.296900px;}
.ls67_c00410{letter-spacing:1.326600px;}
.lsc_c00410{letter-spacing:1.345766px;}
.ls54_c00410{letter-spacing:1.346400px;}
.ls68_c00410{letter-spacing:1.425600px;}
.ls87_c00410{letter-spacing:1.430293px;}
.ls51_c00410{letter-spacing:1.445400px;}
.ls23_c00410{letter-spacing:1.494900px;}
.ls4b_c00410{letter-spacing:1.521353px;}
.ls6d_c00410{letter-spacing:1.544400px;}
.ls2d_c00410{letter-spacing:1.588415px;}
.ls80_c00410{letter-spacing:1.603173px;}
.ls35_c00410{letter-spacing:1.603810px;}
.ls9e_c00410{letter-spacing:1.633500px;}
.ls6_c00410{letter-spacing:1.634213px;}
.ls4e_c00410{letter-spacing:1.643400px;}
.ls22_c00410{letter-spacing:1.722600px;}
.ls1e_c00410{letter-spacing:1.742400px;}
.ls98_c00410{letter-spacing:1.787702px;}
.lsa_c00410{letter-spacing:1.933411px;}
.ls12_c00410{letter-spacing:1.940598px;}
.ls83_c00410{letter-spacing:2.138400px;}
.ls42_c00410{letter-spacing:2.182068px;}
.ls49_c00410{letter-spacing:2.257200px;}
.ls29_c00410{letter-spacing:2.296246px;}
.ls81_c00410{letter-spacing:2.296810px;}
.ls64_c00410{letter-spacing:2.306700px;}
.ls99_c00410{letter-spacing:2.336400px;}
.ls41_c00410{letter-spacing:2.346310px;}
.ls40_c00410{letter-spacing:2.356200px;}
.ls4d_c00410{letter-spacing:2.376000px;}
.ls32_c00410{letter-spacing:2.395810px;}
.ls9d_c00410{letter-spacing:2.415600px;}
.ls9f_c00410{letter-spacing:2.465100px;}
.ls2e_c00410{letter-spacing:2.593810px;}
.ls10_c00410{letter-spacing:2.673713px;}
.ls3b_c00410{letter-spacing:2.851398px;}
.ls13_c00410{letter-spacing:2.989958px;}
.ls77_c00410{letter-spacing:2.997146px;}
.ls78_c00410{letter-spacing:3.049200px;}
.ls31_c00410{letter-spacing:3.078900px;}
.ls38_c00410{letter-spacing:3.267000px;}
.ls15_c00410{letter-spacing:3.277454px;}
.lsa6_c00410{letter-spacing:3.375900px;}
.ls44_c00410{letter-spacing:3.405610px;}
.ls19_c00410{letter-spacing:3.484810px;}
.ls2f_c00410{letter-spacing:3.514500px;}
.ls2c_c00410{letter-spacing:3.593700px;}
.lsa3_c00410{letter-spacing:3.633310px;}
.lsa4_c00410{letter-spacing:3.682810px;}
.ls2b_c00410{letter-spacing:3.722400px;}
.ls5d_c00410{letter-spacing:3.762000px;}
.ls45_c00410{letter-spacing:4.593610px;}
.ls47_c00410{letter-spacing:5.227200px;}
.lsa0_c00410{letter-spacing:8.553798px;}
.ls1_c00410{letter-spacing:8.833088px;}
.ls93_c00410{letter-spacing:11.404998px;}
.ls1f_c00410{letter-spacing:14.256198px;}
.ls4_c00410{letter-spacing:16.055820px;}
.ls7_c00410{letter-spacing:18.155808px;}
.ls0_c00410{letter-spacing:19.046434px;}
.ls61_c00410{letter-spacing:19.958400px;}
.ls8a_c00410{letter-spacing:21.384000px;}
.ls88_c00410{letter-spacing:24.235398px;}
.lsf_c00410{letter-spacing:25.155900px;}
.ls9c_c00410{letter-spacing:27.086400px;}
.ls96_c00410{letter-spacing:29.937798px;}
.ls8b_c00410{letter-spacing:31.363200px;}
.ls57_c00410{letter-spacing:32.788998px;}
.ls14_c00410{letter-spacing:33.268686px;}
.ls9a_c00410{letter-spacing:34.214598px;}
.ls8_c00410{letter-spacing:36.277956px;}
.lsd_c00410{letter-spacing:36.649206px;}
.ls21_c00410{letter-spacing:37.065798px;}
.ls86_c00410{letter-spacing:47.044800px;}
.ls7a_c00410{letter-spacing:48.470598px;}
.lsa5_c00410{letter-spacing:57.024198px;}
.ls3_c00410{letter-spacing:68.136156px;}
.ls16_c00410{letter-spacing:80.404119px;}
.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;}
}
.ws6_c00410{word-spacing:-22.968050px;}
.ws12_c00410{word-spacing:-21.245954px;}
.wsb_c00410{word-spacing:-20.965646px;}
.ws10_c00410{word-spacing:-20.958458px;}
.wsd_c00410{word-spacing:-19.398793px;}
.ws0_c00410{word-spacing:-17.968500px;}
.ws1_c00410{word-spacing:-17.572500px;}
.wsc_c00410{word-spacing:-17.170699px;}
.wsf_c00410{word-spacing:-14.337734px;}
.ws2_c00410{word-spacing:-11.682000px;}
.wse_c00410{word-spacing:-10.601613px;}
.ws9_c00410{word-spacing:-8.389379px;}
.ws7_c00410{word-spacing:-5.109588px;}
.ws11_c00410{word-spacing:-1.294326px;}
.ws13_c00410{word-spacing:0.000000px;}
.wsa_c00410{word-spacing:4.156020px;}
.ws8_c00410{word-spacing:5.173938px;}
.ws4_c00410{word-spacing:5.431536px;}
.ws3_c00410{word-spacing:6.852384px;}
.ws5_c00410{word-spacing:273.683795px;}
._16_c00410{margin-left:-73.507153px;}
._30_c00410{margin-left:-31.711680px;}
._2d_c00410{margin-left:-24.060454px;}
._1f_c00410{margin-left:-19.619582px;}
._2f_c00410{margin-left:-16.709002px;}
._17_c00410{margin-left:-15.547015px;}
._23_c00410{margin-left:-11.950488px;}
._1_c00410{margin-left:-10.773972px;}
._36_c00410{margin-left:-9.183636px;}
._15_c00410{margin-left:-8.128494px;}
._13_c00410{margin-left:-6.308280px;}
._0_c00410{margin-left:-4.546080px;}
._2c_c00410{margin-left:-3.015738px;}
._2_c00410{margin-left:-1.861002px;}
._9_c00410{width:1.167606px;}
._27_c00410{width:3.043458px;}
._7_c00410{width:4.593600px;}
._26_c00410{width:5.722200px;}
._20_c00410{width:7.122456px;}
._4_c00410{width:9.082260px;}
._b_c00410{width:10.996722px;}
._31_c00410{width:12.240142px;}
._11_c00410{width:13.800204px;}
._22_c00410{width:14.858316px;}
._d_c00410{width:16.674768px;}
._1d_c00410{width:18.602590px;}
._10_c00410{width:20.440618px;}
._18_c00410{width:23.702129px;}
._8_c00410{width:26.160156px;}
._38_c00410{width:27.256482px;}
._1a_c00410{width:28.292616px;}
._32_c00410{width:29.804940px;}
._33_c00410{width:31.669270px;}
._1c_c00410{width:32.964228px;}
._c_c00410{width:34.657128px;}
._2e_c00410{width:36.332010px;}
._1e_c00410{width:38.167272px;}
._14_c00410{width:39.395466px;}
._19_c00410{width:40.495615px;}
._5_c00410{width:44.757900px;}
._3_c00410{width:45.801954px;}
._12_c00410{width:47.533068px;}
._34_c00410{width:49.255945px;}
._a_c00410{width:53.037547px;}
._39_c00410{width:59.040432px;}
._28_c00410{width:60.154737px;}
._e_c00410{width:62.808174px;}
._2a_c00410{width:67.973202px;}
._24_c00410{width:74.926368px;}
._25_c00410{width:80.328600px;}
._29_c00410{width:96.129000px;}
._6_c00410{width:111.929400px;}
._2b_c00410{width:132.966900px;}
._f_c00410{width:155.410002px;}
._35_c00410{width:168.341184px;}
._37_c00410{width:362.150514px;}
._21_c00410{width:470.182680px;}
._1b_c00410{width:926.640000px;}
.fc0_c00410{color:transparent;}
.fs29_c00410{font-size:2.851398px;}
.fs7b_c00410{font-size:7.722198px;}
.fs83_c00410{font-size:8.553798px;}
.fs4_c00410{font-size:11.286000px;}
.fs7c_c00410{font-size:11.404998px;}
.fs75_c00410{font-size:13.464198px;}
.fs46_c00410{font-size:14.058000px;}
.fs9_c00410{font-size:14.256198px;}
.fs78_c00410{font-size:15.444198px;}
.fs5e_c00410{font-size:16.236000px;}
.fs3e_c00410{font-size:17.424000px;}
.fs23_c00410{font-size:17.622000px;}
.fs65_c00410{font-size:18.018000px;}
.fs1f_c00410{font-size:19.206000px;}
.fs50_c00410{font-size:19.958400px;}
.fs38_c00410{font-size:20.196000px;}
.fs5b_c00410{font-size:20.592000px;}
.fs77_c00410{font-size:20.790000px;}
.fs4f_c00410{font-size:21.186000px;}
.fs73_c00410{font-size:21.384000px;}
.fs43_c00410{font-size:21.978000px;}
.fs40_c00410{font-size:22.176000px;}
.fs5c_c00410{font-size:22.374000px;}
.fs30_c00410{font-size:22.572000px;}
.fs4b_c00410{font-size:22.770000px;}
.fs54_c00410{font-size:23.958000px;}
.fs71_c00410{font-size:24.235398px;}
.fs13_c00410{font-size:25.344000px;}
.fs5a_c00410{font-size:25.740000px;}
.fsf_c00410{font-size:25.938000px;}
.fs55_c00410{font-size:26.532000px;}
.fs45_c00410{font-size:26.928000px;}
.fs82_c00410{font-size:27.086400px;}
.fs2_c00410{font-size:27.720000px;}
.fs26_c00410{font-size:28.314000px;}
.fs57_c00410{font-size:28.512000px;}
.fs42_c00410{font-size:28.908000px;}
.fse_c00410{font-size:29.898000px;}
.fs7d_c00410{font-size:29.937798px;}
.fs32_c00410{font-size:30.888000px;}
.fs74_c00410{font-size:31.363200px;}
.fs44_c00410{font-size:31.680000px;}
.fs21_c00410{font-size:32.076198px;}
.fs6a_c00410{font-size:32.274000px;}
.fs34_c00410{font-size:32.472000px;}
.fs22_c00410{font-size:32.670000px;}
.fs47_c00410{font-size:32.788998px;}
.fs3f_c00410{font-size:32.868000px;}
.fs36_c00410{font-size:33.264000px;}
.fs6b_c00410{font-size:34.056198px;}
.fs80_c00410{font-size:34.214598px;}
.fs53_c00410{font-size:34.254000px;}
.fsd_c00410{font-size:34.452000px;}
.fs8_c00410{font-size:34.848000px;}
.fs70_c00410{font-size:35.640000px;}
.fs60_c00410{font-size:36.036198px;}
.fs56_c00410{font-size:36.432000px;}
.fsc_c00410{font-size:37.065798px;}
.fs63_c00410{font-size:37.620000px;}
.fs4d_c00410{font-size:37.818000px;}
.fs66_c00410{font-size:38.412000px;}
.fs4e_c00410{font-size:39.204000px;}
.fs18_c00410{font-size:39.600000px;}
.fs51_c00410{font-size:40.788000px;}
.fs11_c00410{font-size:41.580000px;}
.fs48_c00410{font-size:42.768000px;}
.fs5f_c00410{font-size:44.748000px;}
.fs0_c00410{font-size:45.144000px;}
.fs49_c00410{font-size:45.738000px;}
.fs68_c00410{font-size:45.936198px;}
.fs52_c00410{font-size:46.134000px;}
.fs72_c00410{font-size:46.332000px;}
.fs24_c00410{font-size:46.728000px;}
.fs37_c00410{font-size:46.926198px;}
.fs6e_c00410{font-size:47.044800px;}
.fs31_c00410{font-size:47.124000px;}
.fs3d_c00410{font-size:47.520000px;}
.fsa_c00410{font-size:47.718000px;}
.fs1e_c00410{font-size:47.916198px;}
.fs84_c00410{font-size:48.114000px;}
.fs7a_c00410{font-size:48.312000px;}
.fs61_c00410{font-size:48.470598px;}
.fs76_c00410{font-size:49.302000px;}
.fs35_c00410{font-size:49.698000px;}
.fs33_c00410{font-size:49.896198px;}
.fs2a_c00410{font-size:50.292000px;}
.fs59_c00410{font-size:50.688000px;}
.fs67_c00410{font-size:51.084000px;}
.fs17_c00410{font-size:51.876198px;}
.fs4a_c00410{font-size:53.856198px;}
.fs6c_c00410{font-size:54.450000px;}
.fs58_c00410{font-size:55.044000px;}
.fs69_c00410{font-size:55.242000px;}
.fs5d_c00410{font-size:55.440000px;}
.fs2f_c00410{font-size:56.628000px;}
.fs89_c00410{font-size:57.024198px;}
.fs20_c00410{font-size:57.420000px;}
.fs1d_c00410{font-size:57.816198px;}
.fs81_c00410{font-size:58.212000px;}
.fs5_c00410{font-size:59.796198px;}
.fs79_c00410{font-size:60.786198px;}
.fs1_c00410{font-size:60.984000px;}
.fs1b_c00410{font-size:61.578000px;}
.fs7e_c00410{font-size:61.974000px;}
.fs12_c00410{font-size:62.568000px;}
.fs3c_c00410{font-size:63.360000px;}
.fs6_c00410{font-size:63.558000px;}
.fs39_c00410{font-size:63.756198px;}
.fs6d_c00410{font-size:64.350000px;}
.fs7_c00410{font-size:64.944000px;}
.fsb_c00410{font-size:65.340000px;}
.fs3a_c00410{font-size:65.736198px;}
.fs62_c00410{font-size:66.330000px;}
.fs28_c00410{font-size:66.528000px;}
.fs25_c00410{font-size:67.518000px;}
.fs86_c00410{font-size:67.716198px;}
.fs2e_c00410{font-size:68.112198px;}
.fs6f_c00410{font-size:68.706198px;}
.fs3_c00410{font-size:69.696198px;}
.fs1a_c00410{font-size:70.290000px;}
.fs2b_c00410{font-size:70.686198px;}
.fs27_c00410{font-size:71.478000px;}
.fs7f_c00410{font-size:71.676198px;}
.fs16_c00410{font-size:71.874000px;}
.fs10_c00410{font-size:72.072198px;}
.fs87_c00410{font-size:72.666198px;}
.fs64_c00410{font-size:72.864000px;}
.fs88_c00410{font-size:73.656198px;}
.fs15_c00410{font-size:74.448000px;}
.fs4c_c00410{font-size:75.240000px;}
.fs41_c00410{font-size:75.636198px;}
.fs1c_c00410{font-size:77.616198px;}
.fs14_c00410{font-size:80.784000px;}
.fs2d_c00410{font-size:91.872198px;}
.fs3b_c00410{font-size:104.544000px;}
.fs19_c00410{font-size:107.712198px;}
.fs2c_c00410{font-size:129.888198px;}
.fs85_c00410{font-size:133.056198px;}
.y0_c00410{bottom:0.000000px;}
.y6a_c00410{bottom:10.955385px;}
.y1_c00410{bottom:76.500000px;}
.y69_c00410{bottom:143.184735px;}
.y68_c00410{bottom:172.760985px;}
.y67_c00410{bottom:173.473785px;}
.y62_c00410{bottom:207.336735px;}
.y65_c00410{bottom:208.757385px;}
.y63_c00410{bottom:209.113785px;}
.y64_c00410{bottom:209.470185px;}
.y66_c00410{bottom:210.182985px;}
.y61_c00410{bottom:213.039135px;}
.y60_c00410{bottom:246.897135px;}
.y5f_c00410{bottom:300.357135px;}
.y5e_c00410{bottom:306.054585px;}
.y56_c00410{bottom:335.284335px;}
.y5a_c00410{bottom:336.709935px;}
.y5b_c00410{bottom:338.491935px;}
.y53_c00410{bottom:338.843385px;}
.y5d_c00410{bottom:339.204735px;}
.y55_c00410{bottom:339.556185px;}
.y59_c00410{bottom:340.630335px;}
.y57_c00410{bottom:342.768735px;}
.y54_c00410{bottom:343.481535px;}
.y58_c00410{bottom:344.194335px;}
.y5c_c00410{bottom:345.971385px;}
.y52_c00410{bottom:371.280735px;}
.y50_c00410{bottom:371.637135px;}
.y51_c00410{bottom:382.680585px;}
.y4f_c00410{bottom:399.431385px;}
.y4e_c00410{bottom:400.861935px;}
.y4a_c00410{bottom:402.638985px;}
.y4d_c00410{bottom:403.000335px;}
.y47_c00410{bottom:403.351785px;}
.y49_c00410{bottom:403.713135px;}
.y4c_c00410{bottom:405.490185px;}
.y48_c00410{bottom:406.202985px;}
.y4b_c00410{bottom:407.277135px;}
.y46_c00410{bottom:436.853385px;}
.y45_c00410{bottom:465.721785px;}
.y42_c00410{bottom:468.572985px;}
.y3e_c00410{bottom:468.934335px;}
.y40_c00410{bottom:469.290735px;}
.y3d_c00410{bottom:469.647135px;}
.y3c_c00410{bottom:470.003535px;}
.y44_c00410{bottom:471.780585px;}
.y41_c00410{bottom:472.141935px;}
.y3f_c00410{bottom:476.057385px;}
.y43_c00410{bottom:479.269935px;}
.y39_c00410{bottom:533.437785px;}
.y3b_c00410{bottom:534.155535px;}
.y3a_c00410{bottom:538.070985px;}
.y38_c00410{bottom:565.518735px;}
.y37_c00410{bottom:565.870185px;}
.y36_c00410{bottom:566.587935px;}
.y35_c00410{bottom:599.376735px;}
.y34_c00410{bottom:601.510185px;}
.y33_c00410{bottom:609.350985px;}
.y32_c00410{bottom:630.383535px;}
.y2f_c00410{bottom:630.739935px;}
.y31_c00410{bottom:632.521935px;}
.y30_c00410{bottom:641.431935px;}
.y1c_c00410{bottom:662.810985px;}
.y2b_c00410{bottom:663.172335px;}
.y1a_c00410{bottom:663.528735px;}
.y2e_c00410{bottom:663.880185px;}
.y29_c00410{bottom:665.310735px;}
.y2d_c00410{bottom:666.379935px;}
.y28_c00410{bottom:666.731385px;}
.y2a_c00410{bottom:668.869785px;}
.y2c_c00410{bottom:672.082335px;}
.y27_c00410{bottom:688.476735px;}
.y17_c00410{bottom:694.891935px;}
.y26_c00410{bottom:695.243385px;}
.y1b_c00410{bottom:695.599785px;}
.y19_c00410{bottom:695.961135px;}
.y18_c00410{bottom:697.743135px;}
.y24_c00410{bottom:726.967935px;}
.y16_c00410{bottom:727.680735px;}
.y21_c00410{bottom:728.393535px;}
.y23_c00410{bottom:728.749935px;}
.y22_c00410{bottom:729.457785px;}
.y25_c00410{bottom:730.883385px;}
.y20_c00410{bottom:741.575385px;}
.y1f_c00410{bottom:791.827785px;}
.y1e_c00410{bottom:802.519785px;}
.y3_c00410{bottom:815.706585px;}
.y1d_c00410{bottom:819.983385px;}
.y15_c00410{bottom:824.260185px;}
.y2_c00410{bottom:829.967535px;}
.y13_c00410{bottom:888.773535px;}
.y12_c00410{bottom:890.555535px;}
.y11_c00410{bottom:891.263385px;}
.y14_c00410{bottom:899.465535px;}
.y5_c00410{bottom:924.413535px;}
.y7_c00410{bottom:924.769935px;}
.y8_c00410{bottom:926.195535px;}
.ya_c00410{bottom:926.551935px;}
.y9_c00410{bottom:926.903385px;}
.y6_c00410{bottom:936.531135px;}
.y10_c00410{bottom:1014.934185px;}
.yf_c00410{bottom:1028.477385px;}
.ye_c00410{bottom:1044.871785px;}
.y4_c00410{bottom:1067.681385px;}
.yb_c00410{bottom:1077.304185px;}
.yd_c00410{bottom:1078.016985px;}
.yc_c00410{bottom:1086.926985px;}
.h29_c00410{height:1.899031px;}
.h90_c00410{height:5.696829px;}
.h85_c00410{height:7.595729px;}
.h84_c00410{height:8.054011px;}
.hb_c00410{height:9.494628px;}
.h6_c00410{height:11.770945px;}
.h4f_c00410{height:13.292294px;}
.h44_c00410{height:13.797158px;}
.h7c_c00410{height:14.042738px;}
.h78_c00410{height:14.241744px;}
.h81_c00410{height:16.107816px;}
.h76_c00410{height:16.140775px;}
.h6e_c00410{height:17.683682px;}
.h8e_c00410{height:18.039542px;}
.h67_c00410{height:18.158766px;}
.h25_c00410{height:18.379195px;}
.h35_c00410{height:19.821270px;}
.h87_c00410{height:19.938573px;}
.h21_c00410{height:20.031258px;}
.h7a_c00410{height:20.887891px;}
.h5f_c00410{height:21.476813px;}
.h5c_c00410{height:21.570205px;}
.h80_c00410{height:21.683320px;}
.h3e_c00410{height:21.764531px;}
.h46_c00410{height:21.837473px;}
.h60_c00410{height:21.947933px;}
.h7d_c00410{height:21.958857px;}
.h4e_c00410{height:22.096336px;}
.h8b_c00410{height:22.347510px;}
.h68_c00410{height:22.349250px;}
.h8c_c00410{height:22.786922px;}
.h41_c00410{height:22.922367px;}
.h54_c00410{height:23.513467px;}
.h2e_c00410{height:23.541891px;}
.h75_c00410{height:23.736240px;}
.h4a_c00410{height:23.748398px;}
.he_c00410{height:24.685821px;}
.h15_c00410{height:24.873750px;}
.h57_c00410{height:25.456729px;}
.h55_c00410{height:26.039707px;}
.h5e_c00410{height:26.846016px;}
.h11_c00410{height:27.052523px;}
.h43_c00410{height:28.085063px;}
.h40_c00410{height:28.357506px;}
.h4_c00410{height:28.911094px;}
.h10_c00410{height:29.343252px;}
.h56_c00410{height:29.737125px;}
.h5d_c00410{height:30.150141px;}
.h59_c00410{height:30.299801px;}
.h5a_c00410{height:30.314883px;}
.h42_c00410{height:31.092188px;}
.h74_c00410{height:31.331837px;}
.h24_c00410{height:32.063818px;}
.h30_c00410{height:32.215219px;}
.h65_c00410{height:32.281418px;}
.h23_c00410{height:33.454472px;}
.h7b_c00410{height:33.867281px;}
.h8f_c00410{height:34.073789px;}
.ha_c00410{height:34.201406px;}
.h3d_c00410{height:34.280297px;}
.h33_c00410{height:34.693313px;}
.h63_c00410{height:35.349962px;}
.h6f_c00410{height:35.519550px;}
.hf_c00410{height:35.932359px;}
.h4c_c00410{height:37.116299px;}
.h96_c00410{height:37.978116px;}
.h4d_c00410{height:38.476582px;}
.h50_c00410{height:40.031191px;}
.h69_c00410{height:40.062516px;}
.h13_c00410{height:40.788193px;}
.h53_c00410{height:40.808496px;}
.h28_c00410{height:41.301563px;}
.h47_c00410{height:41.974453px;}
.h6a_c00410{height:43.917715px;}
.h52_c00410{height:45.277998px;}
.h26_c00410{height:45.860977px;}
.h34_c00410{height:46.055497px;}
.h2f_c00410{height:46.249629px;}
.h88_c00410{height:46.638281px;}
.h62_c00410{height:46.670766px;}
.h20_c00410{height:47.027128px;}
.h2_c00410{height:47.083781px;}
.h48_c00410{height:47.703305px;}
.h6c_c00410{height:47.910019px;}
.h77_c00410{height:48.322828px;}
.h7f_c00410{height:48.387217px;}
.h7e_c00410{height:48.735844px;}
.h61_c00410{height:49.358848px;}
.h3c_c00410{height:49.561875px;}
.h5b_c00410{height:49.747500px;}
.h6b_c00410{height:50.136152px;}
.h91_c00410{height:50.181398px;}
.h83_c00410{height:50.387906px;}
.h2a_c00410{height:50.684906px;}
.h19_c00410{height:50.913651px;}
.h86_c00410{height:51.420445px;}
.h31_c00410{height:52.040175px;}
.h70_c00410{height:52.856913px;}
.h6d_c00410{height:54.217002px;}
.h49_c00410{height:56.170332px;}
.h22_c00410{height:56.354590px;}
.h1f_c00410{height:56.743437px;}
.h71_c00410{height:56.789648px;}
.h8d_c00410{height:57.131895px;}
.h58_c00410{height:57.409172px;}
.h7_c00410{height:58.686698px;}
.h2d_c00410{height:59.061234px;}
.h82_c00410{height:59.658329px;}
.h1d_c00410{height:60.435439px;}
.h14_c00410{height:61.407070px;}
.h3b_c00410{height:62.184375px;}
.h36_c00410{height:62.573222px;}
.h8a_c00410{height:63.198469px;}
.h3_c00410{height:63.604406px;}
.h97_c00410{height:64.516483px;}
.h89_c00410{height:64.636945px;}
.h45_c00410{height:65.256469px;}
.h32_c00410{height:65.863269px;}
.h27_c00410{height:66.265225px;}
.h8_c00410{height:66.289008px;}
.h37_c00410{height:66.848397px;}
.h79_c00410{height:66.855628px;}
.h73_c00410{height:67.115039px;}
.h64_c00410{height:67.669400px;}
.h9_c00410{height:67.734563px;}
.hd_c00410{height:68.147578px;}
.h5_c00410{height:68.403007px;}
.h39_c00410{height:68.560800px;}
.h1c_c00410{height:68.985791px;}
.h51_c00410{height:69.114800px;}
.h2b_c00410{height:69.374638px;}
.h18_c00410{height:70.540400px;}
.h12_c00410{height:70.699729px;}
.h66_c00410{height:71.512031px;}
.h94_c00410{height:72.289530px;}
.h98_c00410{height:72.690957px;}
.h17_c00410{height:73.030289px;}
.h95_c00410{height:73.744017px;}
.h4b_c00410{height:73.843945px;}
.h3f_c00410{height:74.232792px;}
.h93_c00410{height:75.788574px;}
.h1e_c00410{height:76.176054px;}
.hc_c00410{height:78.106978px;}
.h16_c00410{height:84.255188px;}
.h1a_c00410{height:85.514962px;}
.h72_c00410{height:90.167538px;}
.h38_c00410{height:95.819832px;}
.h3a_c00410{height:102.604219px;}
.h1b_c00410{height:112.340457px;}
.h2c_c00410{height:127.478163px;}
.h92_c00410{height:138.773457px;}
.h1_c00410{height:1110.000000px;}
.h0_c00410{height:1263.000000px;}
.w1_c00410{width:775.500000px;}
.w0_c00410{width:892.500000px;}
.x0_c00410{left:0.000000px;}
.x3_c00410{left:1.392585px;}
.x2_c00410{left:18.598785px;}
.x1_c00410{left:58.500000px;}
.xb7_c00410{left:79.459035px;}
.x2d_c00410{left:80.711385px;}
.x5_c00410{left:81.795435px;}
.xd2_c00410{left:89.458035px;}
.x40_c00410{left:91.343985px;}
.xa8_c00410{left:93.012135px;}
.xbd_c00410{left:95.467335px;}
.x6_c00410{left:98.199735px;}
.x2e_c00410{left:100.451985px;}
.x7_c00410{left:102.570585px;}
.xcb_c00410{left:111.693435px;}
.x3c_c00410{left:113.153685px;}
.x9b_c00410{left:114.163485px;}
.x43_c00410{left:115.207935px;}
.xd3_c00410{left:117.712635px;}
.xbc_c00410{left:118.920435px;}
.xa9_c00410{left:123.662535px;}
.xd4_c00410{left:125.043585px;}
.x8_c00410{left:126.315735px;}
.x44_c00410{left:132.919035px;}
.x3d_c00410{left:134.503035px;}
.xbe_c00410{left:135.671235px;}
.x9_c00410{left:136.799835px;}
.x2f_c00410{left:139.893585px;}
.x9c_c00410{left:144.655485px;}
.x39_c00410{left:146.288985px;}
.xcf_c00410{left:155.020785px;}
.x3e_c00410{left:156.664185px;}
.xc2_c00410{left:161.084535px;}
.x41_c00410{left:162.218085px;}
.x9d_c00410{left:166.014735px;}
.x3f_c00410{left:167.420535px;}
.x30_c00410{left:169.078785px;}
.xaa_c00410{left:173.909985px;}
.x42_c00410{left:174.919785px;}
.xc3_c00410{left:178.082835px;}
.xb_c00410{left:179.612385px;}
.xc_c00410{left:181.250835px;}
.xa_c00410{left:183.107085px;}
.x3b_c00410{left:189.522285px;}
.xd_c00410{left:191.556735px;}
.xbf_c00410{left:193.071435px;}
.xc0_c00410{left:195.586035px;}
.x3a_c00410{left:200.526135px;}
.x31_c00410{left:202.223985px;}
.xab_c00410{left:205.990935px;}
.xe_c00410{left:211.183485px;}
.x45_c00410{left:212.604135px;}
.x9e_c00410{left:218.999535px;}
.xd0_c00410{left:221.994285px;}
.xf_c00410{left:223.741635px;}
.x9a_c00410{left:225.404835px;}
.xc1_c00410{left:233.899035px;}
.x46_c00410{left:235.285035px;}
.x49_c00410{left:238.220385px;}
.x10_c00410{left:244.977135px;}
.xd5_c00410{left:246.264135px;}
.xb8_c00410{left:247.397685px;}
.x13_c00410{left:248.922285px;}
.x76_c00410{left:255.852285px;}
.xcc_c00410{left:258.446085px;}
.x4a_c00410{left:260.515185px;}
.x77_c00410{left:265.856235px;}
.x11_c00410{left:271.830885px;}
.x12_c00410{left:278.894535px;}
.xa1_c00410{left:281.478435px;}
.x4b_c00410{left:283.592085px;}
.x8d_c00410{left:285.106785px;}
.xac_c00410{left:288.556935px;}
.x9f_c00410{left:289.878585px;}
.x80_c00410{left:294.412785px;}
.x4c_c00410{left:295.655235px;}
.x78_c00410{left:301.293285px;}
.x4d_c00410{left:309.366735px;}
.x8e_c00410{left:311.371485px;}
.x58_c00410{left:312.406035px;}
.x4e_c00410{left:316.910535px;}
.x5e_c00410{left:322.692135px;}
.x81_c00410{left:324.573135px;}
.x8f_c00410{left:328.592535px;}
.x82_c00410{left:330.914085px;}
.x47_c00410{left:333.537585px;}
.xc4_c00410{left:336.428385px;}
.xc5_c00410{left:337.853985px;}
.xcd_c00410{left:344.239485px;}
.x59_c00410{left:345.912585px;}
.x5a_c00410{left:348.545985px;}
.x90_c00410{left:350.709135px;}
.x48_c00410{left:355.268085px;}
.x32_c00410{left:356.579835px;}
.xc6_c00410{left:357.653985px;}
.x91_c00410{left:367.667835px;}
.x83_c00410{left:369.875535px;}
.x84_c00410{left:377.998485px;}
.x92_c00410{left:381.305085px;}
.x85_c00410{left:383.349435px;}
.x33_c00410{left:389.101335px;}
.x93_c00410{left:396.209535px;}
.x67_c00410{left:399.917085px;}
.x86_c00410{left:401.253585px;}
.xc7_c00410{left:406.555035px;}
.x87_c00410{left:407.634135px;}
.xad_c00410{left:410.579385px;}
.x14_c00410{left:412.148535px;}
.x20_c00410{left:421.835685px;}
.x1b_c00410{left:423.627585px;}
.xb9_c00410{left:425.261085px;}
.x94_c00410{left:429.334935px;}
.x55_c00410{left:433.240485px;}
.x54_c00410{left:436.195635px;}
.x68_c00410{left:437.591535px;}
.xa2_c00410{left:440.304135px;}
.xce_c00410{left:443.660235px;}
.x56_c00410{left:445.288785px;}
.x69_c00410{left:447.550935px;}
.x21_c00410{left:455.357085px;}
.x1c_c00410{left:457.787535px;}
.x22_c00410{left:459.569535px;}
.xc8_c00410{left:464.737335px;}
.x6a_c00410{left:466.311435px;}
.x4f_c00410{left:467.355885px;}
.x6b_c00410{left:474.063135px;}
.x5f_c00410{left:477.528135px;}
.x15_c00410{left:480.631785px;}
.x1d_c00410{left:484.888785px;}
.x79_c00410{left:489.601185px;}
.x16_c00410{left:492.175185px;}
.x95_c00410{left:494.269035px;}
.x4_c00410{left:495.273885px;}
.x17_c00410{left:500.020935px;}
.x60_c00410{left:501.194085px;}
.xae_c00410{left:504.297735px;}
.xc9_c00410{left:506.455935px;}
.xd8_c00410{left:507.723135px;}
.x7a_c00410{left:511.029735px;}
.x18_c00410{left:512.494935px;}
.xaf_c00410{left:514.930335px;}
.xd6_c00410{left:515.940135px;}
.xa3_c00410{left:521.667285px;}
.x34_c00410{left:522.815685px;}
.x19_c00410{left:526.226235px;}
.x96_c00410{left:527.275635px;}
.x7c_c00410{left:528.532935px;}
.x23_c00410{left:533.190885px;}
.xb0_c00410{left:537.675585px;}
.x1a_c00410{left:544.452135px;}
.x1e_c00410{left:545.551035px;}
.x1f_c00410{left:550.862385px;}
.xb1_c00410{left:551.916735px;}
.xa4_c00410{left:554.099685px;}
.x7b_c00410{left:555.426285px;}
.x97_c00410{left:558.292335px;}
.xca_c00410{left:560.915835px;}
.xa0_c00410{left:566.143035px;}
.x61_c00410{left:567.207285px;}
.xa5_c00410{left:574.899585px;}
.x88_c00410{left:577.211235px;}
.x98_c00410{left:582.908685px;}
.x7d_c00410{left:588.883335px;}
.xb5_c00410{left:591.204885px;}
.x50_c00410{left:597.981435px;}
.x5b_c00410{left:599.377335px;}
.xd7_c00410{left:601.223685px;}
.x89_c00410{left:602.802735px;}
.x71_c00410{left:606.317235px;}
.x8a_c00410{left:609.311985px;}
.xb2_c00410{left:610.638585px;}
.x5c_c00410{left:615.489585px;}
.x72_c00410{left:621.266235px;}
.xb3_c00410{left:623.691735px;}
.x6c_c00410{left:624.973785px;}
.x7e_c00410{left:627.790335px;}
.x51_c00410{left:632.730435px;}
.x35_c00410{left:642.214635px;}
.xb4_c00410{left:643.392735px;}
.x2a_c00410{left:644.531235px;}
.x62_c00410{left:649.867335px;}
.x52_c00410{left:654.505485px;}
.x99_c00410{left:660.994935px;}
.x2b_c00410{left:664.019385px;}
.x63_c00410{left:666.340935px;}
.x64_c00410{left:667.865535px;}
.x6f_c00410{left:669.434685px;}
.x65_c00410{left:674.310435px;}
.x53_c00410{left:676.290435px;}
.x27_c00410{left:677.315085px;}
.x6d_c00410{left:678.438735px;}
.xb6_c00410{left:680.369235px;}
.xba_c00410{left:683.893635px;}
.xbb_c00410{left:686.012235px;}
.x6e_c00410{left:687.408135px;}
.x24_c00410{left:688.739685px;}
.x7f_c00410{left:696.035985px;}
.xd1_c00410{left:697.991235px;}
.x5d_c00410{left:699.040635px;}
.x25_c00410{left:700.154385px;}
.x73_c00410{left:701.381985px;}
.x57_c00410{left:702.668985px;}
.x74_c00410{left:703.881735px;}
.x28_c00410{left:705.574635px;}
.x29_c00410{left:707.084385px;}
.x75_c00410{left:710.128635px;}
.x26_c00410{left:711.301785px;}
.x66_c00410{left:716.905185px;}
.x37_c00410{left:720.518685px;}
.xa6_c00410{left:721.573035px;}
.x36_c00410{left:723.726285px;}
.xa7_c00410{left:725.082585px;}
.x70_c00410{left:728.072385px;}
.x38_c00410{left:732.279885px;}
.x8b_c00410{left:734.249985px;}
.x2c_c00410{left:743.219385px;}
.x8c_c00410{left:748.451535px;}
@media print{
.v6_c00410{vertical-align:-18.990400pt;}
.ve_c00410{vertical-align:-6.353600pt;}
.v10_c00410{vertical-align:-5.068800pt;}
.va_c00410{vertical-align:-2.555520pt;}
.v9_c00410{vertical-align:-1.267200pt;}
.v0_c00410{vertical-align:0.000000pt;}
.v4_c00410{vertical-align:1.284800pt;}
.v3_c00410{vertical-align:5.051200pt;}
.vf_c00410{vertical-align:6.318400pt;}
.v1_c00410{vertical-align:8.852800pt;}
.v5_c00410{vertical-align:10.137600pt;}
.v8_c00410{vertical-align:12.654400pt;}
.v7_c00410{vertical-align:15.188800pt;}
.vd_c00410{vertical-align:16.473600pt;}
.vc_c00410{vertical-align:25.344000pt;}
.vb_c00410{vertical-align:32.947200pt;}
.v2_c00410{vertical-align:39.300800pt;}
.ls85_c00410{letter-spacing:-2.858246pt;}
.ls2a_c00410{letter-spacing:-2.513280pt;}
.ls5b_c00410{letter-spacing:-2.340800pt;}
.ls27_c00410{letter-spacing:-2.242246pt;}
.ls3f_c00410{letter-spacing:-2.236080pt;}
.ls3d_c00410{letter-spacing:-2.199126pt;}
.ls18_c00410{letter-spacing:-2.168326pt;}
.ls3a_c00410{letter-spacing:-2.100560pt;}
.ls46_c00410{letter-spacing:-2.045126pt;}
.ls20_c00410{letter-spacing:-2.032800pt;}
.ls1b_c00410{letter-spacing:-2.020480pt;}
.ls1d_c00410{letter-spacing:-1.977360pt;}
.ls48_c00410{letter-spacing:-1.971200pt;}
.ls56_c00410{letter-spacing:-1.946560pt;}
.ls97_c00410{letter-spacing:-1.928080pt;}
.ls30_c00410{letter-spacing:-1.915760pt;}
.ls91_c00410{letter-spacing:-1.891126pt;}
.ls1a_c00410{letter-spacing:-1.860326pt;}
.ls9b_c00410{letter-spacing:-1.811040pt;}
.ls34_c00410{letter-spacing:-1.786400pt;}
.ls6a_c00410{letter-spacing:-1.712480pt;}
.ls1c_c00410{letter-spacing:-1.702976pt;}
.ls84_c00410{letter-spacing:-1.694000pt;}
.ls6e_c00410{letter-spacing:-1.576960pt;}
.ls3c_c00410{letter-spacing:-1.564640pt;}
.ls95_c00410{letter-spacing:-1.533840pt;}
.ls7e_c00410{letter-spacing:-1.503005pt;}
.lsa1_c00410{letter-spacing:-1.496880pt;}
.ls4c_c00410{letter-spacing:-1.478400pt;}
.ls8f_c00410{letter-spacing:-1.453760pt;}
.ls89_c00410{letter-spacing:-1.441440pt;}
.ls63_c00410{letter-spacing:-1.435280pt;}
.ls7f_c00410{letter-spacing:-1.429126pt;}
.ls59_c00410{letter-spacing:-1.422960pt;}
.ls4a_c00410{letter-spacing:-1.404480pt;}
.ls58_c00410{letter-spacing:-1.330560pt;}
.ls28_c00410{letter-spacing:-1.293600pt;}
.ls62_c00410{letter-spacing:-1.268960pt;}
.ls5e_c00410{letter-spacing:-1.219680pt;}
.ls5c_c00410{letter-spacing:-1.176560pt;}
.ls79_c00410{letter-spacing:-1.121126pt;}
.ls73_c00410{letter-spacing:-1.084160pt;}
.ls4f_c00410{letter-spacing:-1.022560pt;}
.ls8d_c00410{letter-spacing:-1.010240pt;}
.ls36_c00410{letter-spacing:-0.997926pt;}
.ls53_c00410{letter-spacing:-0.985600pt;}
.ls6c_c00410{letter-spacing:-0.960960pt;}
.ls24_c00410{letter-spacing:-0.930160pt;}
.ls94_c00410{letter-spacing:-0.837760pt;}
.ls25_c00410{letter-spacing:-0.806960pt;}
.ls71_c00410{letter-spacing:-0.800800pt;}
.ls7d_c00410{letter-spacing:-0.709157pt;}
.ls75_c00410{letter-spacing:-0.696080pt;}
.ls50_c00410{letter-spacing:-0.689920pt;}
.ls6f_c00410{letter-spacing:-0.683760pt;}
.ls5f_c00410{letter-spacing:-0.659120pt;}
.ls7c_c00410{letter-spacing:-0.658381pt;}
.ls39_c00410{letter-spacing:-0.552429pt;}
.ls69_c00410{letter-spacing:-0.280086pt;}
.ls65_c00410{letter-spacing:-0.216181pt;}
.ls17_c00410{letter-spacing:0.000000pt;}
.ls82_c00410{letter-spacing:0.036837pt;}
.ls5_c00410{letter-spacing:0.053856pt;}
.lsa2_c00410{letter-spacing:0.252067pt;}
.lsb_c00410{letter-spacing:0.300925pt;}
.ls92_c00410{letter-spacing:0.343209pt;}
.ls70_c00410{letter-spacing:0.459958pt;}
.ls3e_c00410{letter-spacing:0.485549pt;}
.ls2_c00410{letter-spacing:0.539510pt;}
.ls8e_c00410{letter-spacing:0.598409pt;}
.ls55_c00410{letter-spacing:0.624800pt;}
.ls6b_c00410{letter-spacing:0.650742pt;}
.ls11_c00410{letter-spacing:0.658592pt;}
.ls37_c00410{letter-spacing:0.783200pt;}
.lse_c00410{letter-spacing:0.787987pt;}
.ls7b_c00410{letter-spacing:0.800800pt;}
.ls9_c00410{letter-spacing:0.813226pt;}
.ls33_c00410{letter-spacing:0.853600pt;}
.ls43_c00410{letter-spacing:0.897600pt;}
.ls74_c00410{letter-spacing:0.915200pt;}
.ls90_c00410{letter-spacing:0.924000pt;}
.ls60_c00410{letter-spacing:0.941600pt;}
.ls8c_c00410{letter-spacing:0.959112pt;}
.ls52_c00410{letter-spacing:0.976800pt;}
.ls76_c00410{letter-spacing:0.994400pt;}
.ls5a_c00410{letter-spacing:1.012000pt;}
.ls66_c00410{letter-spacing:1.064800pt;}
.ls72_c00410{letter-spacing:1.144000pt;}
.ls26_c00410{letter-spacing:1.152800pt;}
.ls67_c00410{letter-spacing:1.179200pt;}
.lsc_c00410{letter-spacing:1.196237pt;}
.ls54_c00410{letter-spacing:1.196800pt;}
.ls68_c00410{letter-spacing:1.267200pt;}
.ls87_c00410{letter-spacing:1.271371pt;}
.ls51_c00410{letter-spacing:1.284800pt;}
.ls23_c00410{letter-spacing:1.328800pt;}
.ls4b_c00410{letter-spacing:1.352314pt;}
.ls6d_c00410{letter-spacing:1.372800pt;}
.ls2d_c00410{letter-spacing:1.411925pt;}
.ls80_c00410{letter-spacing:1.425043pt;}
.ls35_c00410{letter-spacing:1.425609pt;}
.ls9e_c00410{letter-spacing:1.452000pt;}
.ls6_c00410{letter-spacing:1.452634pt;}
.ls4e_c00410{letter-spacing:1.460800pt;}
.ls22_c00410{letter-spacing:1.531200pt;}
.ls1e_c00410{letter-spacing:1.548800pt;}
.ls98_c00410{letter-spacing:1.589069pt;}
.lsa_c00410{letter-spacing:1.718587pt;}
.ls12_c00410{letter-spacing:1.724976pt;}
.ls83_c00410{letter-spacing:1.900800pt;}
.ls42_c00410{letter-spacing:1.939616pt;}
.ls49_c00410{letter-spacing:2.006400pt;}
.ls29_c00410{letter-spacing:2.041107pt;}
.ls81_c00410{letter-spacing:2.041609pt;}
.ls64_c00410{letter-spacing:2.050400pt;}
.ls99_c00410{letter-spacing:2.076800pt;}
.ls41_c00410{letter-spacing:2.085609pt;}
.ls40_c00410{letter-spacing:2.094400pt;}
.ls4d_c00410{letter-spacing:2.112000pt;}
.ls32_c00410{letter-spacing:2.129609pt;}
.ls9d_c00410{letter-spacing:2.147200pt;}
.ls9f_c00410{letter-spacing:2.191200pt;}
.ls2e_c00410{letter-spacing:2.305609pt;}
.ls10_c00410{letter-spacing:2.376634pt;}
.ls3b_c00410{letter-spacing:2.534576pt;}
.ls13_c00410{letter-spacing:2.657741pt;}
.ls77_c00410{letter-spacing:2.664130pt;}
.ls78_c00410{letter-spacing:2.710400pt;}
.ls31_c00410{letter-spacing:2.736800pt;}
.ls38_c00410{letter-spacing:2.904000pt;}
.ls15_c00410{letter-spacing:2.913293pt;}
.lsa6_c00410{letter-spacing:3.000800pt;}
.ls44_c00410{letter-spacing:3.027209pt;}
.ls19_c00410{letter-spacing:3.097609pt;}
.ls2f_c00410{letter-spacing:3.124000pt;}
.ls2c_c00410{letter-spacing:3.194400pt;}
.lsa3_c00410{letter-spacing:3.229609pt;}
.lsa4_c00410{letter-spacing:3.273609pt;}
.ls2b_c00410{letter-spacing:3.308800pt;}
.ls5d_c00410{letter-spacing:3.344000pt;}
.ls45_c00410{letter-spacing:4.083209pt;}
.ls47_c00410{letter-spacing:4.646400pt;}
.lsa0_c00410{letter-spacing:7.603376pt;}
.ls1_c00410{letter-spacing:7.851634pt;}
.ls93_c00410{letter-spacing:10.137776pt;}
.ls1f_c00410{letter-spacing:12.672176pt;}
.ls4_c00410{letter-spacing:14.271840pt;}
.ls7_c00410{letter-spacing:16.138496pt;}
.ls0_c00410{letter-spacing:16.930163pt;}
.ls61_c00410{letter-spacing:17.740800pt;}
.ls8a_c00410{letter-spacing:19.008000pt;}
.ls88_c00410{letter-spacing:21.542576pt;}
.lsf_c00410{letter-spacing:22.360800pt;}
.ls9c_c00410{letter-spacing:24.076800pt;}
.ls96_c00410{letter-spacing:26.611376pt;}
.ls8b_c00410{letter-spacing:27.878400pt;}
.ls57_c00410{letter-spacing:29.145776pt;}
.ls14_c00410{letter-spacing:29.572165pt;}
.ls9a_c00410{letter-spacing:30.412976pt;}
.ls8_c00410{letter-spacing:32.247072pt;}
.lsd_c00410{letter-spacing:32.577072pt;}
.ls21_c00410{letter-spacing:32.947376pt;}
.ls86_c00410{letter-spacing:41.817600pt;}
.ls7a_c00410{letter-spacing:43.084976pt;}
.lsa5_c00410{letter-spacing:50.688176pt;}
.ls3_c00410{letter-spacing:60.565472pt;}
.ls16_c00410{letter-spacing:71.470328pt;}
.ws6_c00410{word-spacing:-20.416044pt;}
.ws12_c00410{word-spacing:-18.885293pt;}
.wsb_c00410{word-spacing:-18.636130pt;}
.ws10_c00410{word-spacing:-18.629741pt;}
.wsd_c00410{word-spacing:-17.243371pt;}
.ws0_c00410{word-spacing:-15.972000pt;}
.ws1_c00410{word-spacing:-15.620000pt;}
.wsc_c00410{word-spacing:-15.262843pt;}
.wsf_c00410{word-spacing:-12.744653pt;}
.ws2_c00410{word-spacing:-10.384000pt;}
.wse_c00410{word-spacing:-9.423656pt;}
.ws9_c00410{word-spacing:-7.457226pt;}
.ws7_c00410{word-spacing:-4.541856pt;}
.ws11_c00410{word-spacing:-1.150512pt;}
.ws13_c00410{word-spacing:0.000000pt;}
.wsa_c00410{word-spacing:3.694240pt;}
.ws8_c00410{word-spacing:4.599056pt;}
.ws4_c00410{word-spacing:4.828032pt;}
.ws3_c00410{word-spacing:6.091008pt;}
.ws5_c00410{word-spacing:243.274484pt;}
._16_c00410{margin-left:-65.339692pt;}
._30_c00410{margin-left:-28.188160pt;}
._2d_c00410{margin-left:-21.387070pt;}
._1f_c00410{margin-left:-17.439629pt;}
._2f_c00410{margin-left:-14.852446pt;}
._17_c00410{margin-left:-13.819569pt;}
._23_c00410{margin-left:-10.622656pt;}
._1_c00410{margin-left:-9.576864pt;}
._36_c00410{margin-left:-8.163232pt;}
._15_c00410{margin-left:-7.225328pt;}
._13_c00410{margin-left:-5.607360pt;}
._0_c00410{margin-left:-4.040960pt;}
._2c_c00410{margin-left:-2.680656pt;}
._2_c00410{margin-left:-1.654224pt;}
._9_c00410{width:1.037872pt;}
._27_c00410{width:2.705296pt;}
._7_c00410{width:4.083200pt;}
._26_c00410{width:5.086400pt;}
._20_c00410{width:6.331072pt;}
._4_c00410{width:8.073120pt;}
._b_c00410{width:9.774864pt;}
._31_c00410{width:10.880126pt;}
._11_c00410{width:12.266848pt;}
._22_c00410{width:13.207392pt;}
._d_c00410{width:14.822016pt;}
._1d_c00410{width:16.535635pt;}
._10_c00410{width:18.169438pt;}
._18_c00410{width:21.068559pt;}
._8_c00410{width:23.253472pt;}
._38_c00410{width:24.227984pt;}
._1a_c00410{width:25.148992pt;}
._32_c00410{width:26.493280pt;}
._33_c00410{width:28.150462pt;}
._1c_c00410{width:29.301536pt;}
._c_c00410{width:30.806336pt;}
._2e_c00410{width:32.295120pt;}
._1e_c00410{width:33.926464pt;}
._14_c00410{width:35.018192pt;}
._19_c00410{width:35.996102pt;}
._5_c00410{width:39.784800pt;}
._3_c00410{width:40.712848pt;}
._12_c00410{width:42.251616pt;}
._34_c00410{width:43.783062pt;}
._a_c00410{width:47.144486pt;}
._39_c00410{width:52.480384pt;}
._28_c00410{width:53.470878pt;}
._e_c00410{width:55.829488pt;}
._2a_c00410{width:60.420624pt;}
._24_c00410{width:66.601216pt;}
._25_c00410{width:71.403200pt;}
._29_c00410{width:85.448000pt;}
._6_c00410{width:99.492800pt;}
._2b_c00410{width:118.192800pt;}
._f_c00410{width:138.142224pt;}
._35_c00410{width:149.636608pt;}
._37_c00410{width:321.911568pt;}
._21_c00410{width:417.940160pt;}
._1b_c00410{width:823.680000pt;}
.fs29_c00410{font-size:2.534576pt;}
.fs7b_c00410{font-size:6.864176pt;}
.fs83_c00410{font-size:7.603376pt;}
.fs4_c00410{font-size:10.032000pt;}
.fs7c_c00410{font-size:10.137776pt;}
.fs75_c00410{font-size:11.968176pt;}
.fs46_c00410{font-size:12.496000pt;}
.fs9_c00410{font-size:12.672176pt;}
.fs78_c00410{font-size:13.728176pt;}
.fs5e_c00410{font-size:14.432000pt;}
.fs3e_c00410{font-size:15.488000pt;}
.fs23_c00410{font-size:15.664000pt;}
.fs65_c00410{font-size:16.016000pt;}
.fs1f_c00410{font-size:17.072000pt;}
.fs50_c00410{font-size:17.740800pt;}
.fs38_c00410{font-size:17.952000pt;}
.fs5b_c00410{font-size:18.304000pt;}
.fs77_c00410{font-size:18.480000pt;}
.fs4f_c00410{font-size:18.832000pt;}
.fs73_c00410{font-size:19.008000pt;}
.fs43_c00410{font-size:19.536000pt;}
.fs40_c00410{font-size:19.712000pt;}
.fs5c_c00410{font-size:19.888000pt;}
.fs30_c00410{font-size:20.064000pt;}
.fs4b_c00410{font-size:20.240000pt;}
.fs54_c00410{font-size:21.296000pt;}
.fs71_c00410{font-size:21.542576pt;}
.fs13_c00410{font-size:22.528000pt;}
.fs5a_c00410{font-size:22.880000pt;}
.fsf_c00410{font-size:23.056000pt;}
.fs55_c00410{font-size:23.584000pt;}
.fs45_c00410{font-size:23.936000pt;}
.fs82_c00410{font-size:24.076800pt;}
.fs2_c00410{font-size:24.640000pt;}
.fs26_c00410{font-size:25.168000pt;}
.fs57_c00410{font-size:25.344000pt;}
.fs42_c00410{font-size:25.696000pt;}
.fse_c00410{font-size:26.576000pt;}
.fs7d_c00410{font-size:26.611376pt;}
.fs32_c00410{font-size:27.456000pt;}
.fs74_c00410{font-size:27.878400pt;}
.fs44_c00410{font-size:28.160000pt;}
.fs21_c00410{font-size:28.512176pt;}
.fs6a_c00410{font-size:28.688000pt;}
.fs34_c00410{font-size:28.864000pt;}
.fs22_c00410{font-size:29.040000pt;}
.fs47_c00410{font-size:29.145776pt;}
.fs3f_c00410{font-size:29.216000pt;}
.fs36_c00410{font-size:29.568000pt;}
.fs6b_c00410{font-size:30.272176pt;}
.fs80_c00410{font-size:30.412976pt;}
.fs53_c00410{font-size:30.448000pt;}
.fsd_c00410{font-size:30.624000pt;}
.fs8_c00410{font-size:30.976000pt;}
.fs70_c00410{font-size:31.680000pt;}
.fs60_c00410{font-size:32.032176pt;}
.fs56_c00410{font-size:32.384000pt;}
.fsc_c00410{font-size:32.947376pt;}
.fs63_c00410{font-size:33.440000pt;}
.fs4d_c00410{font-size:33.616000pt;}
.fs66_c00410{font-size:34.144000pt;}
.fs4e_c00410{font-size:34.848000pt;}
.fs18_c00410{font-size:35.200000pt;}
.fs51_c00410{font-size:36.256000pt;}
.fs11_c00410{font-size:36.960000pt;}
.fs48_c00410{font-size:38.016000pt;}
.fs5f_c00410{font-size:39.776000pt;}
.fs0_c00410{font-size:40.128000pt;}
.fs49_c00410{font-size:40.656000pt;}
.fs68_c00410{font-size:40.832176pt;}
.fs52_c00410{font-size:41.008000pt;}
.fs72_c00410{font-size:41.184000pt;}
.fs24_c00410{font-size:41.536000pt;}
.fs37_c00410{font-size:41.712176pt;}
.fs6e_c00410{font-size:41.817600pt;}
.fs31_c00410{font-size:41.888000pt;}
.fs3d_c00410{font-size:42.240000pt;}
.fsa_c00410{font-size:42.416000pt;}
.fs1e_c00410{font-size:42.592176pt;}
.fs84_c00410{font-size:42.768000pt;}
.fs7a_c00410{font-size:42.944000pt;}
.fs61_c00410{font-size:43.084976pt;}
.fs76_c00410{font-size:43.824000pt;}
.fs35_c00410{font-size:44.176000pt;}
.fs33_c00410{font-size:44.352176pt;}
.fs2a_c00410{font-size:44.704000pt;}
.fs59_c00410{font-size:45.056000pt;}
.fs67_c00410{font-size:45.408000pt;}
.fs17_c00410{font-size:46.112176pt;}
.fs4a_c00410{font-size:47.872176pt;}
.fs6c_c00410{font-size:48.400000pt;}
.fs58_c00410{font-size:48.928000pt;}
.fs69_c00410{font-size:49.104000pt;}
.fs5d_c00410{font-size:49.280000pt;}
.fs2f_c00410{font-size:50.336000pt;}
.fs89_c00410{font-size:50.688176pt;}
.fs20_c00410{font-size:51.040000pt;}
.fs1d_c00410{font-size:51.392176pt;}
.fs81_c00410{font-size:51.744000pt;}
.fs5_c00410{font-size:53.152176pt;}
.fs79_c00410{font-size:54.032176pt;}
.fs1_c00410{font-size:54.208000pt;}
.fs1b_c00410{font-size:54.736000pt;}
.fs7e_c00410{font-size:55.088000pt;}
.fs12_c00410{font-size:55.616000pt;}
.fs3c_c00410{font-size:56.320000pt;}
.fs6_c00410{font-size:56.496000pt;}
.fs39_c00410{font-size:56.672176pt;}
.fs6d_c00410{font-size:57.200000pt;}
.fs7_c00410{font-size:57.728000pt;}
.fsb_c00410{font-size:58.080000pt;}
.fs3a_c00410{font-size:58.432176pt;}
.fs62_c00410{font-size:58.960000pt;}
.fs28_c00410{font-size:59.136000pt;}
.fs25_c00410{font-size:60.016000pt;}
.fs86_c00410{font-size:60.192176pt;}
.fs2e_c00410{font-size:60.544176pt;}
.fs6f_c00410{font-size:61.072176pt;}
.fs3_c00410{font-size:61.952176pt;}
.fs1a_c00410{font-size:62.480000pt;}
.fs2b_c00410{font-size:62.832176pt;}
.fs27_c00410{font-size:63.536000pt;}
.fs7f_c00410{font-size:63.712176pt;}
.fs16_c00410{font-size:63.888000pt;}
.fs10_c00410{font-size:64.064176pt;}
.fs87_c00410{font-size:64.592176pt;}
.fs64_c00410{font-size:64.768000pt;}
.fs88_c00410{font-size:65.472176pt;}
.fs15_c00410{font-size:66.176000pt;}
.fs4c_c00410{font-size:66.880000pt;}
.fs41_c00410{font-size:67.232176pt;}
.fs1c_c00410{font-size:68.992176pt;}
.fs14_c00410{font-size:71.808000pt;}
.fs2d_c00410{font-size:81.664176pt;}
.fs3b_c00410{font-size:92.928000pt;}
.fs19_c00410{font-size:95.744176pt;}
.fs2c_c00410{font-size:115.456176pt;}
.fs85_c00410{font-size:118.272176pt;}
.y0_c00410{bottom:0.000000pt;}
.y6a_c00410{bottom:9.738120pt;}
.y1_c00410{bottom:68.000000pt;}
.y69_c00410{bottom:127.275320pt;}
.y68_c00410{bottom:153.565320pt;}
.y67_c00410{bottom:154.198920pt;}
.y62_c00410{bottom:184.299320pt;}
.y65_c00410{bottom:185.562120pt;}
.y63_c00410{bottom:185.878920pt;}
.y64_c00410{bottom:186.195720pt;}
.y66_c00410{bottom:186.829320pt;}
.y61_c00410{bottom:189.368120pt;}
.y60_c00410{bottom:219.464120pt;}
.y5f_c00410{bottom:266.984120pt;}
.y5e_c00410{bottom:272.048520pt;}
.y56_c00410{bottom:298.030520pt;}
.y5a_c00410{bottom:299.297720pt;}
.y5b_c00410{bottom:300.881720pt;}
.y53_c00410{bottom:301.194120pt;}
.y5d_c00410{bottom:301.515320pt;}
.y55_c00410{bottom:301.827720pt;}
.y59_c00410{bottom:302.782520pt;}
.y57_c00410{bottom:304.683320pt;}
.y54_c00410{bottom:305.316920pt;}
.y58_c00410{bottom:305.950520pt;}
.y5c_c00410{bottom:307.530120pt;}
.y52_c00410{bottom:330.027320pt;}
.y50_c00410{bottom:330.344120pt;}
.y51_c00410{bottom:340.160520pt;}
.y4f_c00410{bottom:355.050120pt;}
.y4e_c00410{bottom:356.321720pt;}
.y4a_c00410{bottom:357.901320pt;}
.y4d_c00410{bottom:358.222520pt;}
.y47_c00410{bottom:358.534920pt;}
.y49_c00410{bottom:358.856120pt;}
.y4c_c00410{bottom:360.435720pt;}
.y48_c00410{bottom:361.069320pt;}
.y4b_c00410{bottom:362.024120pt;}
.y46_c00410{bottom:388.314120pt;}
.y45_c00410{bottom:413.974920pt;}
.y42_c00410{bottom:416.509320pt;}
.y3e_c00410{bottom:416.830520pt;}
.y40_c00410{bottom:417.147320pt;}
.y3d_c00410{bottom:417.464120pt;}
.y3c_c00410{bottom:417.780920pt;}
.y44_c00410{bottom:419.360520pt;}
.y41_c00410{bottom:419.681720pt;}
.y3f_c00410{bottom:423.162120pt;}
.y43_c00410{bottom:426.017720pt;}
.y39_c00410{bottom:474.166920pt;}
.y3b_c00410{bottom:474.804920pt;}
.y3a_c00410{bottom:478.285320pt;}
.y38_c00410{bottom:502.683320pt;}
.y37_c00410{bottom:502.995720pt;}
.y36_c00410{bottom:503.633720pt;}
.y35_c00410{bottom:532.779320pt;}
.y34_c00410{bottom:534.675720pt;}
.y33_c00410{bottom:541.645320pt;}
.y32_c00410{bottom:560.340920pt;}
.y2f_c00410{bottom:560.657720pt;}
.y31_c00410{bottom:562.241720pt;}
.y30_c00410{bottom:570.161720pt;}
.y1c_c00410{bottom:589.165320pt;}
.y2b_c00410{bottom:589.486520pt;}
.y1a_c00410{bottom:589.803320pt;}
.y2e_c00410{bottom:590.115720pt;}
.y29_c00410{bottom:591.387320pt;}
.y2d_c00410{bottom:592.337720pt;}
.y28_c00410{bottom:592.650120pt;}
.y2a_c00410{bottom:594.550920pt;}
.y2c_c00410{bottom:597.406520pt;}
.y27_c00410{bottom:611.979320pt;}
.y17_c00410{bottom:617.681720pt;}
.y26_c00410{bottom:617.994120pt;}
.y1b_c00410{bottom:618.310920pt;}
.y19_c00410{bottom:618.632120pt;}
.y18_c00410{bottom:620.216120pt;}
.y24_c00410{bottom:646.193720pt;}
.y16_c00410{bottom:646.827320pt;}
.y21_c00410{bottom:647.460920pt;}
.y23_c00410{bottom:647.777720pt;}
.y22_c00410{bottom:648.406920pt;}
.y25_c00410{bottom:649.674120pt;}
.y20_c00410{bottom:659.178120pt;}
.y1f_c00410{bottom:703.846920pt;}
.y1e_c00410{bottom:713.350920pt;}
.y3_c00410{bottom:725.072520pt;}
.y1d_c00410{bottom:728.874120pt;}
.y15_c00410{bottom:732.675720pt;}
.y2_c00410{bottom:737.748920pt;}
.y13_c00410{bottom:790.020920pt;}
.y12_c00410{bottom:791.604920pt;}
.y11_c00410{bottom:792.234120pt;}
.y14_c00410{bottom:799.524920pt;}
.y5_c00410{bottom:821.700920pt;}
.y7_c00410{bottom:822.017720pt;}
.y8_c00410{bottom:823.284920pt;}
.ya_c00410{bottom:823.601720pt;}
.y9_c00410{bottom:823.914120pt;}
.y6_c00410{bottom:832.472120pt;}
.y10_c00410{bottom:902.163720pt;}
.yf_c00410{bottom:914.202120pt;}
.ye_c00410{bottom:928.774920pt;}
.y4_c00410{bottom:949.050120pt;}
.yb_c00410{bottom:957.603720pt;}
.yd_c00410{bottom:958.237320pt;}
.yc_c00410{bottom:966.157320pt;}
.h29_c00410{height:1.688028pt;}
.h90_c00410{height:5.063848pt;}
.h85_c00410{height:6.751759pt;}
.h84_c00410{height:7.159121pt;}
.hb_c00410{height:8.439669pt;}
.h6_c00410{height:10.463063pt;}
.h4f_c00410{height:11.815373pt;}
.h44_c00410{height:12.264141pt;}
.h7c_c00410{height:12.482434pt;}
.h78_c00410{height:12.659328pt;}
.h81_c00410{height:14.318059pt;}
.h76_c00410{height:14.347356pt;}
.h6e_c00410{height:15.718828pt;}
.h8e_c00410{height:16.035149pt;}
.h67_c00410{height:16.141125pt;}
.h25_c00410{height:16.337063pt;}
.h35_c00410{height:17.618906pt;}
.h87_c00410{height:17.723176pt;}
.h21_c00410{height:17.805563pt;}
.h7a_c00410{height:18.567014pt;}
.h5f_c00410{height:19.090500pt;}
.h5c_c00410{height:19.173516pt;}
.h80_c00410{height:19.274063pt;}
.h3e_c00410{height:19.346250pt;}
.h46_c00410{height:19.411087pt;}
.h60_c00410{height:19.509273pt;}
.h7d_c00410{height:19.518984pt;}
.h4e_c00410{height:19.641188pt;}
.h8b_c00410{height:19.864453pt;}
.h68_c00410{height:19.866000pt;}
.h8c_c00410{height:20.255042pt;}
.h41_c00410{height:20.375438pt;}
.h54_c00410{height:20.900859pt;}
.h2e_c00410{height:20.926125pt;}
.h75_c00410{height:21.098880pt;}
.h4a_c00410{height:21.109688pt;}
.he_c00410{height:21.942952pt;}
.h15_c00410{height:22.110000pt;}
.h57_c00410{height:22.628203pt;}
.h55_c00410{height:23.146406pt;}
.h5e_c00410{height:23.863125pt;}
.h11_c00410{height:24.046688pt;}
.h43_c00410{height:24.964500pt;}
.h40_c00410{height:25.206672pt;}
.h4_c00410{height:25.698750pt;}
.h10_c00410{height:26.082891pt;}
.h56_c00410{height:26.433000pt;}
.h5d_c00410{height:26.800125pt;}
.h59_c00410{height:26.933156pt;}
.h5a_c00410{height:26.946563pt;}
.h42_c00410{height:27.637500pt;}
.h74_c00410{height:27.850522pt;}
.h24_c00410{height:28.501172pt;}
.h30_c00410{height:28.635750pt;}
.h65_c00410{height:28.694594pt;}
.h23_c00410{height:29.737309pt;}
.h7b_c00410{height:30.104250pt;}
.h8f_c00410{height:30.287813pt;}
.ha_c00410{height:30.401250pt;}
.h3d_c00410{height:30.471375pt;}
.h33_c00410{height:30.838500pt;}
.h63_c00410{height:31.422188pt;}
.h6f_c00410{height:31.572934pt;}
.hf_c00410{height:31.939875pt;}
.h4c_c00410{height:32.992266pt;}
.h96_c00410{height:33.758325pt;}
.h4d_c00410{height:34.201406pt;}
.h50_c00410{height:35.583281pt;}
.h69_c00410{height:35.611125pt;}
.h13_c00410{height:36.256172pt;}
.h53_c00410{height:36.274219pt;}
.h28_c00410{height:36.712500pt;}
.h47_c00410{height:37.310625pt;}
.h6a_c00410{height:39.037969pt;}
.h52_c00410{height:40.247109pt;}
.h26_c00410{height:40.765313pt;}
.h34_c00410{height:40.938220pt;}
.h2f_c00410{height:41.110781pt;}
.h88_c00410{height:41.456250pt;}
.h62_c00410{height:41.485125pt;}
.h20_c00410{height:41.801891pt;}
.h2_c00410{height:41.852250pt;}
.h48_c00410{height:42.402938pt;}
.h6c_c00410{height:42.586684pt;}
.h77_c00410{height:42.953625pt;}
.h7f_c00410{height:43.010859pt;}
.h7e_c00410{height:43.320750pt;}
.h61_c00410{height:43.874531pt;}
.h3c_c00410{height:44.055000pt;}
.h5b_c00410{height:44.220000pt;}
.h6b_c00410{height:44.565469pt;}
.h91_c00410{height:44.605688pt;}
.h83_c00410{height:44.789250pt;}
.h2a_c00410{height:45.053250pt;}
.h19_c00410{height:45.256579pt;}
.h86_c00410{height:45.707063pt;}
.h31_c00410{height:46.257934pt;}
.h70_c00410{height:46.983923pt;}
.h6d_c00410{height:48.192891pt;}
.h49_c00410{height:49.929184pt;}
.h22_c00410{height:50.092969pt;}
.h1f_c00410{height:50.438610pt;}
.h71_c00410{height:50.479688pt;}
.h8d_c00410{height:50.783906pt;}
.h58_c00410{height:51.030375pt;}
.h7_c00410{height:52.165954pt;}
.h2d_c00410{height:52.498875pt;}
.h82_c00410{height:53.029626pt;}
.h1d_c00410{height:53.720391pt;}
.h14_c00410{height:54.584063pt;}
.h3b_c00410{height:55.275000pt;}
.h36_c00410{height:55.620641pt;}
.h8a_c00410{height:56.176416pt;}
.h3_c00410{height:56.537250pt;}
.h97_c00410{height:57.347985pt;}
.h89_c00410{height:57.455063pt;}
.h45_c00410{height:58.005750pt;}
.h32_c00410{height:58.545128pt;}
.h27_c00410{height:58.902422pt;}
.h8_c00410{height:58.923563pt;}
.h37_c00410{height:59.420798pt;}
.h79_c00410{height:59.427225pt;}
.h73_c00410{height:59.657812pt;}
.h64_c00410{height:60.150578pt;}
.h9_c00410{height:60.208500pt;}
.hd_c00410{height:60.575625pt;}
.h5_c00410{height:60.802673pt;}
.h39_c00410{height:60.942934pt;}
.h1c_c00410{height:61.320703pt;}
.h51_c00410{height:61.435378pt;}
.h2b_c00410{height:61.666345pt;}
.h18_c00410{height:62.702578pt;}
.h12_c00410{height:62.844204pt;}
.h66_c00410{height:63.566250pt;}
.h94_c00410{height:64.257360pt;}
.h98_c00410{height:64.614184pt;}
.h17_c00410{height:64.915813pt;}
.h95_c00410{height:65.550238pt;}
.h4b_c00410{height:65.639063pt;}
.h3f_c00410{height:65.984704pt;}
.h93_c00410{height:67.367621pt;}
.h1e_c00410{height:67.712048pt;}
.hc_c00410{height:69.428425pt;}
.h16_c00410{height:74.893500pt;}
.h1a_c00410{height:76.013300pt;}
.h72_c00410{height:80.148923pt;}
.h38_c00410{height:85.173184pt;}
.h3a_c00410{height:91.203750pt;}
.h1b_c00410{height:99.858184pt;}
.h2c_c00410{height:113.313923pt;}
.h92_c00410{height:123.354184pt;}
.h1_c00410{height:986.666667pt;}
.h0_c00410{height:1122.666667pt;}
.w1_c00410{width:689.333333pt;}
.w0_c00410{width:793.333333pt;}
.x0_c00410{left:0.000000pt;}
.x3_c00410{left:1.237853pt;}
.x2_c00410{left:16.532253pt;}
.x1_c00410{left:52.000000pt;}
.xb7_c00410{left:70.630253pt;}
.x2d_c00410{left:71.743453pt;}
.x5_c00410{left:72.707053pt;}
.xd2_c00410{left:79.518253pt;}
.x40_c00410{left:81.194653pt;}
.xa8_c00410{left:82.677453pt;}
.xbd_c00410{left:84.859853pt;}
.x6_c00410{left:87.288653pt;}
.x2e_c00410{left:89.290653pt;}
.x7_c00410{left:91.173853pt;}
.xcb_c00410{left:99.283053pt;}
.x3c_c00410{left:100.581053pt;}
.x9b_c00410{left:101.478653pt;}
.x43_c00410{left:102.407053pt;}
.xd3_c00410{left:104.633453pt;}
.xbc_c00410{left:105.707053pt;}
.xa9_c00410{left:109.922253pt;}
.xd4_c00410{left:111.149853pt;}
.x8_c00410{left:112.280653pt;}
.x44_c00410{left:118.150253pt;}
.x3d_c00410{left:119.558253pt;}
.xbe_c00410{left:120.596653pt;}
.x9_c00410{left:121.599853pt;}
.x2f_c00410{left:124.349853pt;}
.x9c_c00410{left:128.582653pt;}
.x39_c00410{left:130.034653pt;}
.xcf_c00410{left:137.796253pt;}
.x3e_c00410{left:139.257053pt;}
.xc2_c00410{left:143.186253pt;}
.x41_c00410{left:144.193853pt;}
.x9d_c00410{left:147.568653pt;}
.x3f_c00410{left:148.818253pt;}
.x30_c00410{left:150.292253pt;}
.xaa_c00410{left:154.586653pt;}
.x42_c00410{left:155.484253pt;}
.xc3_c00410{left:158.295853pt;}
.xb_c00410{left:159.655453pt;}
.xc_c00410{left:161.111853pt;}
.xa_c00410{left:162.761853pt;}
.x3b_c00410{left:168.464253pt;}
.xd_c00410{left:170.272653pt;}
.xbf_c00410{left:171.619053pt;}
.xc0_c00410{left:173.854253pt;}
.x3a_c00410{left:178.245453pt;}
.x31_c00410{left:179.754653pt;}
.xab_c00410{left:183.103053pt;}
.xe_c00410{left:187.718653pt;}
.x45_c00410{left:188.981453pt;}
.x9e_c00410{left:194.666253pt;}
.xd0_c00410{left:197.328253pt;}
.xf_c00410{left:198.881453pt;}
.x9a_c00410{left:200.359853pt;}
.xc1_c00410{left:207.910253pt;}
.x46_c00410{left:209.142253pt;}
.x49_c00410{left:211.751453pt;}
.x10_c00410{left:217.757453pt;}
.xd5_c00410{left:218.901453pt;}
.xb8_c00410{left:219.909053pt;}
.x13_c00410{left:221.264253pt;}
.x76_c00410{left:227.424253pt;}
.xcc_c00410{left:229.729853pt;}
.x4a_c00410{left:231.569053pt;}
.x77_c00410{left:236.316653pt;}
.x11_c00410{left:241.627453pt;}
.x12_c00410{left:247.906253pt;}
.xa1_c00410{left:250.203053pt;}
.x4b_c00410{left:252.081853pt;}
.x8d_c00410{left:253.428253pt;}
.xac_c00410{left:256.495053pt;}
.x9f_c00410{left:257.669853pt;}
.x80_c00410{left:261.700253pt;}
.x4c_c00410{left:262.804653pt;}
.x78_c00410{left:267.816253pt;}
.x4d_c00410{left:274.992653pt;}
.x8e_c00410{left:276.774653pt;}
.x58_c00410{left:277.694253pt;}
.x4e_c00410{left:281.698253pt;}
.x5e_c00410{left:286.837453pt;}
.x81_c00410{left:288.509453pt;}
.x8f_c00410{left:292.082253pt;}
.x82_c00410{left:294.145853pt;}
.x47_c00410{left:296.477853pt;}
.xc4_c00410{left:299.047453pt;}
.xc5_c00410{left:300.314653pt;}
.xcd_c00410{left:305.990653pt;}
.x59_c00410{left:307.477853pt;}
.x5a_c00410{left:309.818653pt;}
.x90_c00410{left:311.741453pt;}
.x48_c00410{left:315.793853pt;}
.x32_c00410{left:316.959853pt;}
.xc6_c00410{left:317.914653pt;}
.x91_c00410{left:326.815853pt;}
.x83_c00410{left:328.778253pt;}
.x84_c00410{left:335.998653pt;}
.x92_c00410{left:338.937853pt;}
.x85_c00410{left:340.755053pt;}
.x33_c00410{left:345.867853pt;}
.x93_c00410{left:352.186253pt;}
.x67_c00410{left:355.481853pt;}
.x86_c00410{left:356.669853pt;}
.xc7_c00410{left:361.382253pt;}
.x87_c00410{left:362.341453pt;}
.xad_c00410{left:364.959453pt;}
.x14_c00410{left:366.354253pt;}
.x20_c00410{left:374.965053pt;}
.x1b_c00410{left:376.557853pt;}
.xb9_c00410{left:378.009853pt;}
.x94_c00410{left:381.631053pt;}
.x55_c00410{left:385.102653pt;}
.x54_c00410{left:387.729453pt;}
.x68_c00410{left:388.970253pt;}
.xa2_c00410{left:391.381453pt;}
.xce_c00410{left:394.364653pt;}
.x56_c00410{left:395.812253pt;}
.x69_c00410{left:397.823053pt;}
.x21_c00410{left:404.761853pt;}
.x1c_c00410{left:406.922253pt;}
.x22_c00410{left:408.506253pt;}
.xc8_c00410{left:413.099853pt;}
.x6a_c00410{left:414.499053pt;}
.x4f_c00410{left:415.427453pt;}
.x6b_c00410{left:421.389453pt;}
.x5f_c00410{left:424.469453pt;}
.x15_c00410{left:427.228253pt;}
.x1d_c00410{left:431.012253pt;}
.x79_c00410{left:435.201053pt;}
.x16_c00410{left:437.489053pt;}
.x95_c00410{left:439.350253pt;}
.x4_c00410{left:440.243453pt;}
.x17_c00410{left:444.463053pt;}
.x60_c00410{left:445.505853pt;}
.xae_c00410{left:448.264653pt;}
.xc9_c00410{left:450.183053pt;}
.xd8_c00410{left:451.309453pt;}
.x7a_c00410{left:454.248653pt;}
.x18_c00410{left:455.551053pt;}
.xaf_c00410{left:457.715853pt;}
.xd6_c00410{left:458.613453pt;}
.xa3_c00410{left:463.704253pt;}
.x34_c00410{left:464.725053pt;}
.x19_c00410{left:467.756653pt;}
.x96_c00410{left:468.689453pt;}
.x7c_c00410{left:469.807053pt;}
.x23_c00410{left:473.947453pt;}
.xb0_c00410{left:477.933853pt;}
.x1a_c00410{left:483.957453pt;}
.x1e_c00410{left:484.934253pt;}
.x1f_c00410{left:489.655453pt;}
.xb1_c00410{left:490.592653pt;}
.xa4_c00410{left:492.533053pt;}
.x7b_c00410{left:493.712253pt;}
.x97_c00410{left:496.259853pt;}
.xca_c00410{left:498.591853pt;}
.xa0_c00410{left:503.238253pt;}
.x61_c00410{left:504.184253pt;}
.xa5_c00410{left:511.021853pt;}
.x88_c00410{left:513.076653pt;}
.x98_c00410{left:518.141053pt;}
.x7d_c00410{left:523.451853pt;}
.xb5_c00410{left:525.515453pt;}
.x50_c00410{left:531.539053pt;}
.x5b_c00410{left:532.779853pt;}
.xd7_c00410{left:534.421053pt;}
.x89_c00410{left:535.824653pt;}
.x71_c00410{left:538.948653pt;}
.x8a_c00410{left:541.610653pt;}
.xb2_c00410{left:542.789853pt;}
.x5c_c00410{left:547.101853pt;}
.x72_c00410{left:552.236653pt;}
.xb3_c00410{left:554.392653pt;}
.x6c_c00410{left:555.532253pt;}
.x7e_c00410{left:558.035853pt;}
.x51_c00410{left:562.427053pt;}
.x35_c00410{left:570.857453pt;}
.xb4_c00410{left:571.904653pt;}
.x2a_c00410{left:572.916653pt;}
.x62_c00410{left:577.659853pt;}
.x52_c00410{left:581.782653pt;}
.x99_c00410{left:587.551053pt;}
.x2b_c00410{left:590.239453pt;}
.x63_c00410{left:592.303053pt;}
.x64_c00410{left:593.658253pt;}
.x6f_c00410{left:595.053053pt;}
.x65_c00410{left:599.387053pt;}
.x53_c00410{left:601.147053pt;}
.x27_c00410{left:602.057853pt;}
.x6d_c00410{left:603.056653pt;}
.xb6_c00410{left:604.772653pt;}
.xba_c00410{left:607.905453pt;}
.xbb_c00410{left:609.788653pt;}
.x6e_c00410{left:611.029453pt;}
.x24_c00410{left:612.213053pt;}
.x7f_c00410{left:618.698653pt;}
.xd1_c00410{left:620.436653pt;}
.x5d_c00410{left:621.369453pt;}
.x25_c00410{left:622.359453pt;}
.x73_c00410{left:623.450653pt;}
.x57_c00410{left:624.594653pt;}
.x74_c00410{left:625.672653pt;}
.x28_c00410{left:627.177453pt;}
.x29_c00410{left:628.519453pt;}
.x75_c00410{left:631.225453pt;}
.x26_c00410{left:632.268253pt;}
.x66_c00410{left:637.249053pt;}
.x37_c00410{left:640.461053pt;}
.xa6_c00410{left:641.398253pt;}
.x36_c00410{left:643.312253pt;}
.xa7_c00410{left:644.517853pt;}
.x70_c00410{left:647.175453pt;}
.x38_c00410{left:650.915453pt;}
.x8b_c00410{left:652.666653pt;}
.x2c_c00410{left:660.639453pt;}
.x8c_c00410{left:665.290253pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9df61e3e14a711d46fc34b7c.woff2')format("woff");}.ff1_c00411{font-family:ff1_c00411;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00411;src:url('chunks/assets/font_19017ef054ce57d747eac751.woff2')format("woff");}.ff2_c00411{font-family:ff2_c00411;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00411;src:url('chunks/assets/font_3d3fff38f55b73e6da664497.woff2')format("woff");}.ff3_c00411{font-family:ff3_c00411;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00411;src:url('chunks/assets/font_6d0b1e3f73d13f1ed902ae29.woff2')format("woff");}.ff4_c00411{font-family:ff4_c00411;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m12_c00411{transform:matrix(0.079168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.079168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.079168,0.000000,0.000000,0.250000,0,0);}
.m9e_c00411{transform:matrix(0.095589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095589,0.000000,0.000000,0.250000,0,0);}
.m6_c00411{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.me_c00411{transform:matrix(0.123041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123041,0.000000,0.000000,0.250000,0,0);}
.me5_c00411{transform:matrix(0.142694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142694,0.000000,0.000000,0.250000,0,0);}
.ma9_c00411{transform:matrix(0.147784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147784,0.000000,0.000000,0.250000,0,0);}
.md3_c00411{transform:matrix(0.150215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150215,0.000000,0.000000,0.250000,0,0);}
.mb7_c00411{transform:matrix(0.153696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153696,0.000000,0.000000,0.250000,0,0);}
.mab_c00411{transform:matrix(0.160717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160717,0.000000,0.000000,0.250000,0,0);}
.m9f_c00411{transform:matrix(0.169118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169118,0.000000,0.000000,0.250000,0,0);}
.m66_c00411{transform:matrix(0.173610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173610,0.000000,0.000000,0.250000,0,0);}
.m32_c00411{transform:matrix(0.174728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174728,0.000000,0.000000,0.250000,0,0);}
.m64_c00411{transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);}
.m13_c00411{transform:matrix(0.183334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183334,0.000000,0.000000,0.250000,0,0);}
.md_c00411{transform:matrix(0.185410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185410,0.000000,0.000000,0.250000,0,0);}
.md8_c00411{transform:matrix(0.186977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186977,0.000000,0.000000,0.250000,0,0);}
.m17_c00411{transform:matrix(0.189999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189999,0.000000,0.000000,0.250000,0,0);}
.mc2_c00411{transform:matrix(0.191264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191264,0.000000,0.000000,0.250000,0,0);}
.mc6_c00411{transform:matrix(0.196785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196785,0.000000,0.000000,0.250000,0,0);}
.md9_c00411{transform:matrix(0.199562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199562,0.000000,0.000000,0.250000,0,0);}
.mc5_c00411{transform:matrix(0.200223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200223,0.000000,0.000000,0.250000,0,0);}
.m9d_c00411{transform:matrix(0.200980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200980,0.000000,0.000000,0.250000,0,0);}
.m65_c00411{transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);}
.m11_c00411{transform:matrix(0.202382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202382,0.000000,0.000000,0.250000,0,0);}
.m7_c00411{transform:matrix(0.203572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203572,0.000000,0.000000,0.250000,0,0);}
.m67_c00411{transform:matrix(0.203704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203704,0.000000,0.000000,0.250000,0,0);}
.m9a_c00411{transform:matrix(0.214423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214423,0.000000,0.000000,0.250000,0,0);}
.mce_c00411{transform:matrix(0.215261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215261,0.000000,0.000000,0.250000,0,0);}
.m5_c00411{transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);}
.m73_c00411{transform:matrix(0.228537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228537,0.000000,0.000000,0.250000,0,0);}
.mda_c00411{transform:matrix(0.235480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235480,0.000000,0.000000,0.250000,0,0);}
.m42_c00411{transform:matrix(0.241213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241213,0.000000,0.000000,0.250000,0,0);}
.m16_c00411{transform:matrix(0.244739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244739,0.000000,0.000000,0.250000,0,0);}
.m1_c00411{transform:matrix(0.247402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247402,0.000000,0.000000,0.250000,0,0);}
.m94_c00411{transform:matrix(0.249825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249825,0.000000,0.000000,0.250000,0,0);}
.m0_c00411{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.me3_c00411{transform:matrix(0.251109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251109,0.000000,0.000000,0.250000,0,0);}
.m10_c00411{transform:matrix(0.251296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251296,0.000000,0.000000,0.250000,0,0);}
.m21_c00411{transform:matrix(0.252612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252612,0.000000,0.000000,0.250000,0,0);}
.m2f_c00411{transform:matrix(0.252689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252689,0.000000,0.000000,0.250000,0,0);}
.m98_c00411{transform:matrix(0.253462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253462,0.000000,0.000000,0.250000,0,0);}
.m30_c00411{transform:matrix(0.253901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253901,0.000000,0.000000,0.250000,0,0);}
.mc3_c00411{transform:matrix(0.257185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257185,0.000000,0.000000,0.250000,0,0);}
.me8_c00411{transform:matrix(0.258092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258092,0.000000,0.000000,0.250000,0,0);}
.m86_c00411{transform:matrix(0.258613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258613,0.000000,0.000000,0.250000,0,0);}
.mc7_c00411{transform:matrix(0.259144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259144,0.000000,0.000000,0.250000,0,0);}
.mdf_c00411{transform:matrix(0.259714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259714,0.000000,0.000000,0.250000,0,0);}
.m51_c00411{transform:matrix(0.260132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260132,0.000000,0.000000,0.250000,0,0);}
.m44_c00411{transform:matrix(0.260383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260383,0.000000,0.000000,0.250000,0,0);}
.m92_c00411{transform:matrix(0.261823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261823,0.000000,0.000000,0.250000,0,0);}
.me4_c00411{transform:matrix(0.265288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265288,0.000000,0.000000,0.250000,0,0);}
.ma1_c00411{transform:matrix(0.265385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265385,0.000000,0.000000,0.250000,0,0);}
.mbe_c00411{transform:matrix(0.267155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267155,0.000000,0.000000,0.250000,0,0);}
.m3e_c00411{transform:matrix(0.268555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268555,0.000000,0.000000,0.250000,0,0);}
.m55_c00411{transform:matrix(0.268638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268638,0.000000,0.000000,0.250000,0,0);}
.m8_c00411{transform:matrix(0.269121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269121,0.000000,0.000000,0.250000,0,0);}
.m1e_c00411{transform:matrix(0.270026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270026,0.000000,0.000000,0.250000,0,0);}
.m34_c00411{transform:matrix(0.273014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273014,0.000000,0.000000,0.250000,0,0);}
.mbc_c00411{transform:matrix(0.273622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273622,0.000000,0.000000,0.250000,0,0);}
.me6_c00411{transform:matrix(0.274150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274150,0.000000,0.000000,0.250000,0,0);}
.m68_c00411{transform:matrix(0.274497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274497,0.000000,0.000000,0.250000,0,0);}
.mc8_c00411{transform:matrix(0.274764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274764,0.000000,0.000000,0.250000,0,0);}
.m59_c00411{transform:matrix(0.275643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275643,0.000000,0.000000,0.250000,0,0);}
.m37_c00411{transform:matrix(0.276221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276221,0.000000,0.000000,0.250000,0,0);}
.m8e_c00411{transform:matrix(0.276834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276834,0.000000,0.000000,0.250000,0,0);}
.ma_c00411{transform:matrix(0.277241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277241,0.000000,0.000000,0.250000,0,0);}
.m69_c00411{transform:matrix(0.277971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277971,0.000000,0.000000,0.250000,0,0);}
.m2c_c00411{transform:matrix(0.278543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278543,0.000000,0.000000,0.250000,0,0);}
.m6b_c00411{transform:matrix(0.278689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278689,0.000000,0.000000,0.250000,0,0);}
.m26_c00411{transform:matrix(0.278775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278775,0.000000,0.000000,0.250000,0,0);}
.m19_c00411{transform:matrix(0.279907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279907,0.000000,0.000000,0.250000,0,0);}
.m9_c00411{transform:matrix(0.280655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280655,0.000000,0.000000,0.250000,0,0);}
.m2a_c00411{transform:matrix(0.283124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283124,0.000000,0.000000,0.250000,0,0);}
.m25_c00411{transform:matrix(0.283756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283756,0.000000,0.000000,0.250000,0,0);}
.mae_c00411{transform:matrix(0.283844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283844,0.000000,0.000000,0.250000,0,0);}
.m39_c00411{transform:matrix(0.284530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284530,0.000000,0.000000,0.250000,0,0);}
.m23_c00411{transform:matrix(0.285338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285338,0.000000,0.000000,0.250000,0,0);}
.m75_c00411{transform:matrix(0.285667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285667,0.000000,0.000000,0.250000,0,0);}
.mf_c00411{transform:matrix(0.287332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287332,0.000000,0.000000,0.250000,0,0);}
.m24_c00411{transform:matrix(0.288145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288145,0.000000,0.000000,0.250000,0,0);}
.mdd_c00411{transform:matrix(0.288195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288195,0.000000,0.000000,0.250000,0,0);}
.md1_c00411{transform:matrix(0.288658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288658,0.000000,0.000000,0.250000,0,0);}
.m79_c00411{transform:matrix(0.288823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288823,0.000000,0.000000,0.250000,0,0);}
.m53_c00411{transform:matrix(0.289894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289894,0.000000,0.000000,0.250000,0,0);}
.m43_c00411{transform:matrix(0.289899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289899,0.000000,0.000000,0.250000,0,0);}
.mb3_c00411{transform:matrix(0.290679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290679,0.000000,0.000000,0.250000,0,0);}
.m33_c00411{transform:matrix(0.290680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290680,0.000000,0.000000,0.250000,0,0);}
.m81_c00411{transform:matrix(0.290751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290751,0.000000,0.000000,0.250000,0,0);}
.mcd_c00411{transform:matrix(0.290838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290838,0.000000,0.000000,0.250000,0,0);}
.mb4_c00411{transform:matrix(0.291464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291464,0.000000,0.000000,0.250000,0,0);}
.maa_c00411{transform:matrix(0.291688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291688,0.000000,0.000000,0.250000,0,0);}
.m97_c00411{transform:matrix(0.293186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293186,0.000000,0.000000,0.250000,0,0);}
.me2_c00411{transform:matrix(0.293188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293188,0.000000,0.000000,0.250000,0,0);}
.m85_c00411{transform:matrix(0.293890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293890,0.000000,0.000000,0.250000,0,0);}
.m87_c00411{transform:matrix(0.294437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294437,0.000000,0.000000,0.250000,0,0);}
.m3f_c00411{transform:matrix(0.295590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295590,0.000000,0.000000,0.250000,0,0);}
.mca_c00411{transform:matrix(0.295690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295690,0.000000,0.000000,0.250000,0,0);}
.me9_c00411{transform:matrix(0.296028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296028,0.000000,0.000000,0.250000,0,0);}
.m60_c00411{transform:matrix(0.296060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296060,0.000000,0.000000,0.250000,0,0);}
.m7e_c00411{transform:matrix(0.297225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297225,0.000000,0.000000,0.250000,0,0);}
.m50_c00411{transform:matrix(0.297408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297408,0.000000,0.000000,0.250000,0,0);}
.mcc_c00411{transform:matrix(0.298618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298618,0.000000,0.000000,0.250000,0,0);}
.m56_c00411{transform:matrix(0.299007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299007,0.000000,0.000000,0.250000,0,0);}
.maf_c00411{transform:matrix(0.301332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301332,0.000000,0.000000,0.250000,0,0);}
.m5d_c00411{transform:matrix(0.301408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301408,0.000000,0.000000,0.250000,0,0);}
.m15_c00411{transform:matrix(0.301508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301508,0.000000,0.000000,0.250000,0,0);}
.m2b_c00411{transform:matrix(0.302232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302232,0.000000,0.000000,0.250000,0,0);}
.m8a_c00411{transform:matrix(0.302855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302855,0.000000,0.000000,0.250000,0,0);}
.m35_c00411{transform:matrix(0.303127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303127,0.000000,0.000000,0.250000,0,0);}
.m88_c00411{transform:matrix(0.303633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303633,0.000000,0.000000,0.250000,0,0);}
.m1c_c00411{transform:matrix(0.304988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304988,0.000000,0.000000,0.250000,0,0);}
.md0_c00411{transform:matrix(0.305378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305378,0.000000,0.000000,0.250000,0,0);}
.m84_c00411{transform:matrix(0.306410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306410,0.000000,0.000000,0.250000,0,0);}
.md4_c00411{transform:matrix(0.306451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306451,0.000000,0.000000,0.250000,0,0);}
.m3a_c00411{transform:matrix(0.307277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307277,0.000000,0.000000,0.250000,0,0);}
.m4c_c00411{transform:matrix(0.307629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307629,0.000000,0.000000,0.250000,0,0);}
.m6e_c00411{transform:matrix(0.308027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308027,0.000000,0.000000,0.250000,0,0);}
.m99_c00411{transform:matrix(0.308287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308287,0.000000,0.000000,0.250000,0,0);}
.me1_c00411{transform:matrix(0.308363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308363,0.000000,0.000000,0.250000,0,0);}
.mcb_c00411{transform:matrix(0.308452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308452,0.000000,0.000000,0.250000,0,0);}
.m5f_c00411{transform:matrix(0.309136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309136,0.000000,0.000000,0.250000,0,0);}
.m1d_c00411{transform:matrix(0.309958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309958,0.000000,0.000000,0.250000,0,0);}
.m48_c00411{transform:matrix(0.310029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310029,0.000000,0.000000,0.250000,0,0);}
.meb_c00411{transform:matrix(0.310171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310171,0.000000,0.000000,0.250000,0,0);}
.mad_c00411{transform:matrix(0.310549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310549,0.000000,0.000000,0.250000,0,0);}
.ma5_c00411{transform:matrix(0.310706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310706,0.000000,0.000000,0.250000,0,0);}
.mba_c00411{transform:matrix(0.311424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311424,0.000000,0.000000,0.250000,0,0);}
.m52_c00411{transform:matrix(0.312864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312864,0.000000,0.000000,0.250000,0,0);}
.m4a_c00411{transform:matrix(0.313312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313312,0.000000,0.000000,0.250000,0,0);}
.m9c_c00411{transform:matrix(0.313856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313856,0.000000,0.000000,0.250000,0,0);}
.m46_c00411{transform:matrix(0.315147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315147,0.000000,0.000000,0.250000,0,0);}
.md6_c00411{transform:matrix(0.315819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315819,0.000000,0.000000,0.250000,0,0);}
.m27_c00411{transform:matrix(0.315916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315916,0.000000,0.000000,0.250000,0,0);}
.mb1_c00411{transform:matrix(0.316584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316584,0.000000,0.000000,0.250000,0,0);}
.ma4_c00411{transform:matrix(0.316859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316859,0.000000,0.000000,0.250000,0,0);}
.mb9_c00411{transform:matrix(0.317225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317225,0.000000,0.000000,0.250000,0,0);}
.m74_c00411{transform:matrix(0.317491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317491,0.000000,0.000000,0.250000,0,0);}
.m38_c00411{transform:matrix(0.317577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317577,0.000000,0.000000,0.250000,0,0);}
.m5b_c00411{transform:matrix(0.318823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318823,0.000000,0.000000,0.250000,0,0);}
.m8b_c00411{transform:matrix(0.319476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319476,0.000000,0.000000,0.250000,0,0);}
.mc_c00411{transform:matrix(0.320726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320726,0.000000,0.000000,0.250000,0,0);}
.m31_c00411{transform:matrix(0.321071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321071,0.000000,0.000000,0.250000,0,0);}
.m80_c00411{transform:matrix(0.322340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322340,0.000000,0.000000,0.250000,0,0);}
.m1a_c00411{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00411{transform:matrix(0.322557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322557,0.000000,0.000000,0.250000,0,0);}
.m7c_c00411{transform:matrix(0.323402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323402,0.000000,0.000000,0.250000,0,0);}
.m2_c00411{transform:matrix(0.323466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323466,0.000000,0.000000,0.250000,0,0);}
.m90_c00411{transform:matrix(0.323490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323490,0.000000,0.000000,0.250000,0,0);}
.m14_c00411{transform:matrix(0.324047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324047,0.000000,0.000000,0.250000,0,0);}
.m8f_c00411{transform:matrix(0.324680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324680,0.000000,0.000000,0.250000,0,0);}
.m18_c00411{transform:matrix(0.325624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325624,0.000000,0.000000,0.250000,0,0);}
.m4e_c00411{transform:matrix(0.326089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326089,0.000000,0.000000,0.250000,0,0);}
.m63_c00411{transform:matrix(0.326146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326146,0.000000,0.000000,0.250000,0,0);}
.md7_c00411{transform:matrix(0.328058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328058,0.000000,0.000000,0.250000,0,0);}
.m41_c00411{transform:matrix(0.328737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328737,0.000000,0.000000,0.250000,0,0);}
.mb0_c00411{transform:matrix(0.328906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328906,0.000000,0.000000,0.250000,0,0);}
.m3d_c00411{transform:matrix(0.329058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329058,0.000000,0.000000,0.250000,0,0);}
.m36_c00411{transform:matrix(0.330153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330153,0.000000,0.000000,0.250000,0,0);}
.m93_c00411{transform:matrix(0.331587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331587,0.000000,0.000000,0.250000,0,0);}
.m57_c00411{transform:matrix(0.331845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331845,0.000000,0.000000,0.250000,0,0);}
.m7d_c00411{transform:matrix(0.332068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332068,0.000000,0.000000,0.250000,0,0);}
.m4d_c00411{transform:matrix(0.332113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332113,0.000000,0.000000,0.250000,0,0);}
.m4f_c00411{transform:matrix(0.333437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333437,0.000000,0.000000,0.250000,0,0);}
.md2_c00411{transform:matrix(0.333606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333606,0.000000,0.000000,0.250000,0,0);}
.ma0_c00411{transform:matrix(0.334133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334133,0.000000,0.000000,0.250000,0,0);}
.m2d_c00411{transform:matrix(0.334462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334462,0.000000,0.000000,0.250000,0,0);}
.m82_c00411{transform:matrix(0.334786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334786,0.000000,0.000000,0.250000,0,0);}
.mde_c00411{transform:matrix(0.335014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335014,0.000000,0.000000,0.250000,0,0);}
.m76_c00411{transform:matrix(0.335090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335090,0.000000,0.000000,0.250000,0,0);}
.m89_c00411{transform:matrix(0.335141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335141,0.000000,0.000000,0.250000,0,0);}
.mdb_c00411{transform:matrix(0.335232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335232,0.000000,0.000000,0.250000,0,0);}
.mc1_c00411{transform:matrix(0.335696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335696,0.000000,0.000000,0.250000,0,0);}
.mea_c00411{transform:matrix(0.335825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335825,0.000000,0.000000,0.250000,0,0);}
.m7a_c00411{transform:matrix(0.336342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336342,0.000000,0.000000,0.250000,0,0);}
.m71_c00411{transform:matrix(0.337489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337489,0.000000,0.000000,0.250000,0,0);}
.m4b_c00411{transform:matrix(0.337888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337888,0.000000,0.000000,0.250000,0,0);}
.m4_c00411{transform:matrix(0.338003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338003,0.000000,0.000000,0.250000,0,0);}
.mdc_c00411{transform:matrix(0.338105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338105,0.000000,0.000000,0.250000,0,0);}
.me7_c00411{transform:matrix(0.338194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338194,0.000000,0.000000,0.250000,0,0);}
.m72_c00411{transform:matrix(0.338548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338548,0.000000,0.000000,0.250000,0,0);}
.mbb_c00411{transform:matrix(0.339314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339314,0.000000,0.000000,0.250000,0,0);}
.mc0_c00411{transform:matrix(0.339453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339453,0.000000,0.000000,0.250000,0,0);}
.mac_c00411{transform:matrix(0.339494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339494,0.000000,0.000000,0.250000,0,0);}
.m62_c00411{transform:matrix(0.340333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340333,0.000000,0.000000,0.250000,0,0);}
.m9b_c00411{transform:matrix(0.340435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340435,0.000000,0.000000,0.250000,0,0);}
.m29_c00411{transform:matrix(0.340935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340935,0.000000,0.000000,0.250000,0,0);}
.mc4_c00411{transform:matrix(0.341805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341805,0.000000,0.000000,0.250000,0,0);}
.m58_c00411{transform:matrix(0.341847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341847,0.000000,0.000000,0.250000,0,0);}
.m78_c00411{transform:matrix(0.342380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342380,0.000000,0.000000,0.250000,0,0);}
.m6c_c00411{transform:matrix(0.342730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342730,0.000000,0.000000,0.250000,0,0);}
.m3c_c00411{transform:matrix(0.342838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342838,0.000000,0.000000,0.250000,0,0);}
.m45_c00411{transform:matrix(0.342880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342880,0.000000,0.000000,0.250000,0,0);}
.m1b_c00411{transform:matrix(0.348178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348178,0.000000,0.000000,0.250000,0,0);}
.m3_c00411{transform:matrix(0.348379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348379,0.000000,0.000000,0.250000,0,0);}
.m40_c00411{transform:matrix(0.350049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350049,0.000000,0.000000,0.250000,0,0);}
.ma8_c00411{transform:matrix(0.350468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350468,0.000000,0.000000,0.250000,0,0);}
.m95_c00411{transform:matrix(0.350794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350794,0.000000,0.000000,0.250000,0,0);}
.m8d_c00411{transform:matrix(0.351144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351144,0.000000,0.000000,0.250000,0,0);}
.mbd_c00411{transform:matrix(0.351808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351808,0.000000,0.000000,0.250000,0,0);}
.mb5_c00411{transform:matrix(0.352505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352505,0.000000,0.000000,0.250000,0,0);}
.mbf_c00411{transform:matrix(0.353255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353255,0.000000,0.000000,0.250000,0,0);}
.m61_c00411{transform:matrix(0.353971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353971,0.000000,0.000000,0.250000,0,0);}
.m49_c00411{transform:matrix(0.354951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354951,0.000000,0.000000,0.250000,0,0);}
.m5c_c00411{transform:matrix(0.355152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355152,0.000000,0.000000,0.250000,0,0);}
.m2e_c00411{transform:matrix(0.356306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356306,0.000000,0.000000,0.250000,0,0);}
.m3b_c00411{transform:matrix(0.356376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356376,0.000000,0.000000,0.250000,0,0);}
.m6d_c00411{transform:matrix(0.356629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356629,0.000000,0.000000,0.250000,0,0);}
.ma3_c00411{transform:matrix(0.358122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358122,0.000000,0.000000,0.250000,0,0);}
.m91_c00411{transform:matrix(0.359038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359038,0.000000,0.000000,0.250000,0,0);}
.m20_c00411{transform:matrix(0.363507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363507,0.000000,0.000000,0.250000,0,0);}
.m28_c00411{transform:matrix(0.363879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363879,0.000000,0.000000,0.250000,0,0);}
.m96_c00411{transform:matrix(0.364061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364061,0.000000,0.000000,0.250000,0,0);}
.m5a_c00411{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);}
.m6f_c00411{transform:matrix(0.365911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365911,0.000000,0.000000,0.250000,0,0);}
.mb8_c00411{transform:matrix(0.367928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367928,0.000000,0.000000,0.250000,0,0);}
.m7f_c00411{transform:matrix(0.368103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368103,0.000000,0.000000,0.250000,0,0);}
.m22_c00411{transform:matrix(0.369522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369522,0.000000,0.000000,0.250000,0,0);}
.mb6_c00411{transform:matrix(0.369768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369768,0.000000,0.000000,0.250000,0,0);}
.m77_c00411{transform:matrix(0.371247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371247,0.000000,0.000000,0.250000,0,0);}
.mb2_c00411{transform:matrix(0.372407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372407,0.000000,0.000000,0.250000,0,0);}
.m7b_c00411{transform:matrix(0.374049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374049,0.000000,0.000000,0.250000,0,0);}
.m5e_c00411{transform:matrix(0.376929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376929,0.000000,0.000000,0.250000,0,0);}
.m54_c00411{transform:matrix(0.377276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377276,0.000000,0.000000,0.250000,0,0);}
.ma2_c00411{transform:matrix(0.378969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378969,0.000000,0.000000,0.250000,0,0);}
.m6a_c00411{transform:matrix(0.381300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381300,0.000000,0.000000,0.250000,0,0);}
.m70_c00411{transform:matrix(0.381440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381440,0.000000,0.000000,0.250000,0,0);}
.md5_c00411{transform:matrix(0.382941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382941,0.000000,0.000000,0.250000,0,0);}
.m83_c00411{transform:matrix(0.385503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385503,0.000000,0.000000,0.250000,0,0);}
.m1f_c00411{transform:matrix(0.390012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390012,0.000000,0.000000,0.250000,0,0);}
.mcf_c00411{transform:matrix(0.390922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390922,0.000000,0.000000,0.250000,0,0);}
.m47_c00411{transform:matrix(0.392037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392037,0.000000,0.000000,0.250000,0,0);}
.me0_c00411{transform:matrix(0.413864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413864,0.000000,0.000000,0.250000,0,0);}
.mc9_c00411{transform:matrix(0.434825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434825,0.000000,0.000000,0.250000,0,0);}
.ma6_c00411{transform:matrix(0.443939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443939,0.000000,0.000000,0.250000,0,0);}
.mb_c00411{transform:matrix(0.452316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452316,0.000000,0.000000,0.250000,0,0);}
.ma7_c00411{transform:matrix(0.453010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453010,0.000000,0.000000,0.250000,0,0);}
.v0_c00411{vertical-align:0.000000px;}
.v1_c00411{vertical-align:8.553600px;}
.ls2_c00411{letter-spacing:-2.993767px;}
.ls5_c00411{letter-spacing:-2.529450px;}
.ls11_c00411{letter-spacing:-2.312640px;}
.ls9_c00411{letter-spacing:-1.884967px;}
.ls15_c00411{letter-spacing:-1.358280px;}
.ls1_c00411{letter-spacing:0.000000px;}
.lse_c00411{letter-spacing:0.043362px;}
.ls0_c00411{letter-spacing:0.982872px;}
.lsc_c00411{letter-spacing:1.112958px;}
.ls16_c00411{letter-spacing:1.173114px;}
.ls13_c00411{letter-spacing:1.618848px;}
.lsf_c00411{letter-spacing:1.683891px;}
.lsb_c00411{letter-spacing:2.334321px;}
.ls8_c00411{letter-spacing:2.455200px;}
.ls14_c00411{letter-spacing:3.187810px;}
.lsd_c00411{letter-spacing:3.207610px;}
.ls7_c00411{letter-spacing:3.484810px;}
.ls3_c00411{letter-spacing:3.613500px;}
.ls12_c00411{letter-spacing:19.958400px;}
.ls6_c00411{letter-spacing:42.768000px;}
.ls10_c00411{letter-spacing:48.470598px;}
.ls4_c00411{letter-spacing:49.896198px;}
.lsa_c00411{letter-spacing:51.321798px;}
.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;}
}
.ws3_c00411{word-spacing:-19.180458px;}
.ws4_c00411{word-spacing:-19.050372px;}
.ws2_c00411{word-spacing:-18.067500px;}
.ws1_c00411{word-spacing:-1.373130px;}
.ws5_c00411{word-spacing:-0.143550px;}
.ws6_c00411{word-spacing:0.000000px;}
.ws0_c00411{word-spacing:2.529450px;}
._18_c00411{margin-left:-10.313820px;}
._9_c00411{margin-left:-8.312040px;}
._8_c00411{margin-left:-4.697550px;}
._10_c00411{margin-left:-1.430946px;}
._19_c00411{width:1.084050px;}
._16_c00411{width:3.324420px;}
._6_c00411{width:6.288480px;}
._c_c00411{width:8.021970px;}
._a_c00411{width:9.395100px;}
._7_c00411{width:10.406880px;}
._17_c00411{width:11.553300px;}
._5_c00411{width:12.790800px;}
._3_c00411{width:13.802580px;}
._f_c00411{width:14.959890px;}
._14_c00411{width:17.476954px;}
._12_c00411{width:20.307870px;}
._1_c00411{width:22.331430px;}
._d_c00411{width:23.993640px;}
._0_c00411{width:31.777020px;}
._11_c00411{width:34.630200px;}
._b_c00411{width:38.375370px;}
._13_c00411{width:40.398930px;}
._e_c00411{width:42.494760px;}
._4_c00411{width:45.025200px;}
._2_c00411{width:47.877390px;}
._15_c00411{width:337.487040px;}
.fc0_c00411{color:transparent;}
.fs11_c00411{font-size:19.958400px;}
.fsf_c00411{font-size:21.582000px;}
.fsb_c00411{font-size:22.176000px;}
.fs2_c00411{font-size:27.720000px;}
.fs5_c00411{font-size:32.076198px;}
.fs14_c00411{font-size:32.868000px;}
.fsa_c00411{font-size:33.264000px;}
.fs13_c00411{font-size:33.660000px;}
.fs19_c00411{font-size:38.808000px;}
.fs0_c00411{font-size:39.600000px;}
.fs6_c00411{font-size:42.768000px;}
.fs10_c00411{font-size:48.470598px;}
.fs8_c00411{font-size:49.104000px;}
.fs4_c00411{font-size:49.896198px;}
.fsc_c00411{font-size:51.321798px;}
.fs9_c00411{font-size:53.856198px;}
.fs18_c00411{font-size:63.360000px;}
.fs17_c00411{font-size:63.756198px;}
.fsd_c00411{font-size:64.152198px;}
.fs15_c00411{font-size:64.350000px;}
.fs16_c00411{font-size:64.548000px;}
.fs7_c00411{font-size:69.696198px;}
.fse_c00411{font-size:70.884000px;}
.fs3_c00411{font-size:72.270000px;}
.fs1_c00411{font-size:85.536198px;}
.fs12_c00411{font-size:113.256198px;}
.y2c_c00411{bottom:-0.800865px;}
.y0_c00411{bottom:0.000000px;}
.y2b_c00411{bottom:29.136735px;}
.y1_c00411{bottom:76.500000px;}
.y2a_c00411{bottom:134.987535px;}
.y29_c00411{bottom:164.563785px;}
.y28_c00411{bottom:198.778185px;}
.y27_c00411{bottom:231.571935px;}
.y24_c00411{bottom:257.227785px;}
.y26_c00411{bottom:264.355785px;}
.y23_c00411{bottom:264.712185px;}
.y25_c00411{bottom:271.845135px;}
.y22_c00411{bottom:297.505935px;}
.y21_c00411{bottom:328.156335px;}
.y1f_c00411{bottom:329.933385px;}
.y20_c00411{bottom:330.294735px;}
.y1e_c00411{bottom:363.796335px;}
.y1d_c00411{bottom:390.164985px;}
.y1c_c00411{bottom:396.228735px;}
.y1b_c00411{bottom:461.444985px;}
.y1a_c00411{bottom:496.733535px;}
.y18_c00411{bottom:529.518375px;}
.y19_c00411{bottom:529.522335px;}
.y17_c00411{bottom:561.949785px;}
.y16_c00411{bottom:594.738585px;}
.y15_c00411{bottom:627.170985px;}
.y14_c00411{bottom:659.603385px;}
.y13_c00411{bottom:727.675785px;}
.y12_c00411{bottom:758.687535px;}
.y11_c00411{bottom:792.184185px;}
.yf_c00411{bottom:823.908735px;}
.y10_c00411{bottom:824.265135px;}
.ye_c00411{bottom:832.100985px;}
.y2_c00411{bottom:843.505785px;}
.yd_c00411{bottom:851.346585px;}
.ya_c00411{bottom:857.405385px;}
.yb_c00411{bottom:857.766735px;}
.yc_c00411{bottom:858.123135px;}
.y9_c00411{bottom:891.263385px;}
.y8_c00411{bottom:902.673135px;}
.y6_c00411{bottom:913.716585px;}
.y7_c00411{bottom:924.769935px;}
.y5_c00411{bottom:925.477785px;}
.y4_c00411{bottom:1041.307785px;}
.y3_c00411{bottom:1074.809385px;}
.h13_c00411{height:13.292294px;}
.h11_c00411{height:22.509352px;}
.hd_c00411{height:23.128875px;}
.h8_c00411{height:28.483488px;}
.h4_c00411{height:28.911094px;}
.h7_c00411{height:31.481034px;}
.h12_c00411{height:32.281418px;}
.h16_c00411{height:33.035449px;}
.h6_c00411{height:33.230868px;}
.hf_c00411{height:34.180317px;}
.h17_c00411{height:34.280297px;}
.hc_c00411{height:34.693313px;}
.h1a_c00411{height:38.087930px;}
.h2_c00411{height:41.301563px;}
.ha_c00411{height:51.213938px;}
.hb_c00411{height:56.170332px;}
.h18_c00411{height:62.573222px;}
.h19_c00411{height:66.082500px;}
.h10_c00411{height:66.908738px;}
.h15_c00411{height:69.568770px;}
.h5_c00411{height:70.929053px;}
.h9_c00411{height:72.690957px;}
.he_c00411{height:72.834609px;}
.h3_c00411{height:83.949101px;}
.h14_c00411{height:118.122675px;}
.h1_c00411{height:1110.000000px;}
.h0_c00411{height:1263.000000px;}
.w1_c00411{width:775.500000px;}
.w0_c00411{width:892.500000px;}
.x0_c00411{left:0.000000px;}
.x2_c00411{left:30.751035px;}
.x1_c00411{left:58.500000px;}
.x6_c00411{left:76.637535px;}
.x53_c00411{left:78.211635px;}
.x2c_c00411{left:79.459035px;}
.x72_c00411{left:81.691485px;}
.x5c_c00411{left:88.195785px;}
.x1c_c00411{left:98.912535px;}
.x51_c00411{left:108.654135px;}
.x1d_c00411{left:110.312385px;}
.x1e_c00411{left:120.687585px;}
.x2d_c00411{left:122.870535px;}
.x48_c00411{left:130.666785px;}
.x65_c00411{left:131.988435px;}
.x7_c00411{left:133.003185px;}
.x2e_c00411{left:143.744685px;}
.x5_c00411{left:148.140285px;}
.x54_c00411{left:153.035835px;}
.x77_c00411{left:154.268385px;}
.x8_c00411{left:164.806935px;}
.x9_c00411{left:174.939585px;}
.x40_c00411{left:176.122635px;}
.x78_c00411{left:183.151635px;}
.x3a_c00411{left:186.834435px;}
.x7f_c00411{left:194.452485px;}
.x1f_c00411{left:197.947185px;}
.x5f_c00411{left:200.352885px;}
.x2f_c00411{left:208.441185px;}
.x6d_c00411{left:209.980635px;}
.x6e_c00411{left:211.554735px;}
.x7c_c00411{left:215.415735px;}
.x4c_c00411{left:219.662835px;}
.x41_c00411{left:221.063685px;}
.x3b_c00411{left:232.097235px;}
.x20_c00411{left:241.715085px;}
.x7d_c00411{left:243.026835px;}
.x49_c00411{left:252.748635px;}
.x30_c00411{left:253.822785px;}
.xa_c00411{left:263.722785px;}
.x66_c00411{left:264.861285px;}
.x21_c00411{left:266.019585px;}
.x42_c00411{left:274.870185px;}
.x4d_c00411{left:276.315585px;}
.x31_c00411{left:285.839385px;}
.x4a_c00411{left:287.007585px;}
.x79_c00411{left:297.090735px;}
.x32_c00411{left:298.377735px;}
.xb_c00411{left:308.272785px;}
.x52_c00411{left:309.445935px;}
.xc_c00411{left:319.321185px;}
.x43_c00411{left:320.519085px;}
.x22_c00411{left:331.117035px;}
.x7a_c00411{left:332.240685px;}
.x7e_c00411{left:337.354035px;}
.xd_c00411{left:341.373435px;}
.x3c_c00411{left:351.748635px;}
.x44_c00411{left:353.213835px;}
.x7b_c00411{left:354.347385px;}
.x4e_c00411{left:363.153435px;}
.x23_c00411{left:364.361235px;}
.x67_c00411{left:365.776935px;}
.xe_c00411{left:375.434385px;}
.x38_c00411{left:386.839185px;}
.x68_c00411{left:389.185485px;}
.x24_c00411{left:397.041135px;}
.x55_c00411{left:398.570685px;}
.xf_c00411{left:407.945985px;}
.x60_c00411{left:409.262685px;}
.x25_c00411{left:419.563635px;}
.x37_c00411{left:424.330485px;}
.x26_c00411{left:430.082385px;}
.x69_c00411{left:431.671335px;}
.x33_c00411{left:441.229785px;}
.x10_c00411{left:452.679135px;}
.x61_c00411{left:453.842385px;}
.x27_c00411{left:463.791885px;}
.x73_c00411{left:464.846235px;}
.x11_c00411{left:474.464085px;}
.x64_c00411{left:476.295585px;}
.x45_c00411{left:486.131235px;}
.x63_c00411{left:488.893335px;}
.x28_c00411{left:496.407435px;}
.x47_c00411{left:497.437035px;}
.x70_c00411{left:500.006085px;}
.x59_c00411{left:507.119235px;}
.x5d_c00411{left:509.401185px;}
.x34_c00411{left:518.726985px;}
.x6a_c00411{left:520.479285px;}
.x29_c00411{left:529.879335px;}
.x62_c00411{left:531.220785px;}
.x56_c00411{left:541.308885px;}
.x12_c00411{left:551.916735px;}
.x13_c00411{left:562.648335px;}
.x46_c00411{left:565.301535px;}
.x14_c00411{left:573.048285px;}
.x4f_c00411{left:574.859985px;}
.x74_c00411{left:576.062835px;}
.x15_c00411{left:584.656035px;}
.x5a_c00411{left:585.660885px;}
.x18_c00411{left:588.764535px;}
.x19_c00411{left:595.531185px;}
.x6b_c00411{left:596.981535px;}
.x16_c00411{left:606.718185px;}
.x35_c00411{left:608.158635px;}
.x50_c00411{left:619.053585px;}
.x39_c00411{left:629.899035px;}
.x36_c00411{left:633.180885px;}
.x3d_c00411{left:636.868635px;}
.x4b_c00411{left:640.105935px;}
.x71_c00411{left:641.615685px;}
.x75_c00411{left:650.768235px;}
.x57_c00411{left:652.649235px;}
.x1b_c00411{left:658.861485px;}
.x2a_c00411{left:662.143335px;}
.x6f_c00411{left:663.761985px;}
.x3e_c00411{left:673.251135px;}
.x3_c00411{left:674.394585px;}
.x17_c00411{left:676.344885px;}
.x76_c00411{left:684.913335px;}
.x4_c00411{left:686.314185px;}
.x1a_c00411{left:695.209335px;}
.x6c_c00411{left:696.907185px;}
.x2b_c00411{left:706.534935px;}
.x3f_c00411{left:717.880335px;}
.x5b_c00411{left:718.969335px;}
.x58_c00411{left:728.963385px;}
.x5e_c00411{left:740.368185px;}
@media print{
.v0_c00411{vertical-align:0.000000pt;}
.v1_c00411{vertical-align:7.603200pt;}
.ls2_c00411{letter-spacing:-2.661126pt;}
.ls5_c00411{letter-spacing:-2.248400pt;}
.ls11_c00411{letter-spacing:-2.055680pt;}
.ls9_c00411{letter-spacing:-1.675526pt;}
.ls15_c00411{letter-spacing:-1.207360pt;}
.ls1_c00411{letter-spacing:0.000000pt;}
.lse_c00411{letter-spacing:0.038544pt;}
.ls0_c00411{letter-spacing:0.873664pt;}
.lsc_c00411{letter-spacing:0.989296pt;}
.ls16_c00411{letter-spacing:1.042768pt;}
.ls13_c00411{letter-spacing:1.438976pt;}
.lsf_c00411{letter-spacing:1.496792pt;}
.lsb_c00411{letter-spacing:2.074952pt;}
.ls8_c00411{letter-spacing:2.182400pt;}
.ls14_c00411{letter-spacing:2.833609pt;}
.lsd_c00411{letter-spacing:2.851209pt;}
.ls7_c00411{letter-spacing:3.097609pt;}
.ls3_c00411{letter-spacing:3.212000pt;}
.ls12_c00411{letter-spacing:17.740800pt;}
.ls6_c00411{letter-spacing:38.016000pt;}
.ls10_c00411{letter-spacing:43.084976pt;}
.ls4_c00411{letter-spacing:44.352176pt;}
.lsa_c00411{letter-spacing:45.619376pt;}
.ws3_c00411{word-spacing:-17.049296pt;}
.ws4_c00411{word-spacing:-16.933664pt;}
.ws2_c00411{word-spacing:-16.060000pt;}
.ws1_c00411{word-spacing:-1.220560pt;}
.ws5_c00411{word-spacing:-0.127600pt;}
.ws6_c00411{word-spacing:0.000000pt;}
.ws0_c00411{word-spacing:2.248400pt;}
._18_c00411{margin-left:-9.167840pt;}
._9_c00411{margin-left:-7.388480pt;}
._8_c00411{margin-left:-4.175600pt;}
._10_c00411{margin-left:-1.271952pt;}
._19_c00411{width:0.963600pt;}
._16_c00411{width:2.955040pt;}
._6_c00411{width:5.589760pt;}
._c_c00411{width:7.130640pt;}
._a_c00411{width:8.351200pt;}
._7_c00411{width:9.250560pt;}
._17_c00411{width:10.269600pt;}
._5_c00411{width:11.369600pt;}
._3_c00411{width:12.268960pt;}
._f_c00411{width:13.297680pt;}
._14_c00411{width:15.535070pt;}
._12_c00411{width:18.051440pt;}
._1_c00411{width:19.850160pt;}
._d_c00411{width:21.327680pt;}
._0_c00411{width:28.246240pt;}
._11_c00411{width:30.782400pt;}
._b_c00411{width:34.111440pt;}
._13_c00411{width:35.910160pt;}
._e_c00411{width:37.773120pt;}
._4_c00411{width:40.022400pt;}
._2_c00411{width:42.557680pt;}
._15_c00411{width:299.988480pt;}
.fs11_c00411{font-size:17.740800pt;}
.fsf_c00411{font-size:19.184000pt;}
.fsb_c00411{font-size:19.712000pt;}
.fs2_c00411{font-size:24.640000pt;}
.fs5_c00411{font-size:28.512176pt;}
.fs14_c00411{font-size:29.216000pt;}
.fsa_c00411{font-size:29.568000pt;}
.fs13_c00411{font-size:29.920000pt;}
.fs19_c00411{font-size:34.496000pt;}
.fs0_c00411{font-size:35.200000pt;}
.fs6_c00411{font-size:38.016000pt;}
.fs10_c00411{font-size:43.084976pt;}
.fs8_c00411{font-size:43.648000pt;}
.fs4_c00411{font-size:44.352176pt;}
.fsc_c00411{font-size:45.619376pt;}
.fs9_c00411{font-size:47.872176pt;}
.fs18_c00411{font-size:56.320000pt;}
.fs17_c00411{font-size:56.672176pt;}
.fsd_c00411{font-size:57.024176pt;}
.fs15_c00411{font-size:57.200000pt;}
.fs16_c00411{font-size:57.376000pt;}
.fs7_c00411{font-size:61.952176pt;}
.fse_c00411{font-size:63.008000pt;}
.fs3_c00411{font-size:64.240000pt;}
.fs1_c00411{font-size:76.032176pt;}
.fs12_c00411{font-size:100.672176pt;}
.y2c_c00411{bottom:-0.711880pt;}
.y0_c00411{bottom:0.000000pt;}
.y2b_c00411{bottom:25.899320pt;}
.y1_c00411{bottom:68.000000pt;}
.y2a_c00411{bottom:119.988920pt;}
.y29_c00411{bottom:146.278920pt;}
.y28_c00411{bottom:176.691720pt;}
.y27_c00411{bottom:205.841720pt;}
.y24_c00411{bottom:228.646920pt;}
.y26_c00411{bottom:234.982920pt;}
.y23_c00411{bottom:235.299720pt;}
.y25_c00411{bottom:241.640120pt;}
.y22_c00411{bottom:264.449720pt;}
.y21_c00411{bottom:291.694520pt;}
.y1f_c00411{bottom:293.274120pt;}
.y20_c00411{bottom:293.595320pt;}
.y1e_c00411{bottom:323.374520pt;}
.y1d_c00411{bottom:346.813320pt;}
.y1c_c00411{bottom:352.203320pt;}
.y1b_c00411{bottom:410.173320pt;}
.y1a_c00411{bottom:441.540920pt;}
.y18_c00411{bottom:470.683000pt;}
.y19_c00411{bottom:470.686520pt;}
.y17_c00411{bottom:499.510920pt;}
.y16_c00411{bottom:528.656520pt;}
.y15_c00411{bottom:557.485320pt;}
.y14_c00411{bottom:586.314120pt;}
.y13_c00411{bottom:646.822920pt;}
.y12_c00411{bottom:674.388920pt;}
.y11_c00411{bottom:704.163720pt;}
.yf_c00411{bottom:732.363320pt;}
.y10_c00411{bottom:732.680120pt;}
.ye_c00411{bottom:739.645320pt;}
.y2_c00411{bottom:749.782920pt;}
.yd_c00411{bottom:756.752520pt;}
.ya_c00411{bottom:762.138120pt;}
.yb_c00411{bottom:762.459320pt;}
.yc_c00411{bottom:762.776120pt;}
.y9_c00411{bottom:792.234120pt;}
.y8_c00411{bottom:802.376120pt;}
.y6_c00411{bottom:812.192520pt;}
.y7_c00411{bottom:822.017720pt;}
.y5_c00411{bottom:822.646920pt;}
.y4_c00411{bottom:925.606920pt;}
.y3_c00411{bottom:955.386120pt;}
.h13_c00411{height:11.815373pt;}
.h11_c00411{height:20.008313pt;}
.hd_c00411{height:20.559000pt;}
.h8_c00411{height:25.318656pt;}
.h4_c00411{height:25.698750pt;}
.h7_c00411{height:27.983141pt;}
.h12_c00411{height:28.694594pt;}
.h16_c00411{height:29.364844pt;}
.h6_c00411{height:29.538549pt;}
.hf_c00411{height:30.382504pt;}
.h17_c00411{height:30.471375pt;}
.hc_c00411{height:30.838500pt;}
.h1a_c00411{height:33.855938pt;}
.h2_c00411{height:36.712500pt;}
.ha_c00411{height:45.523500pt;}
.hb_c00411{height:49.929184pt;}
.h18_c00411{height:55.620641pt;}
.h19_c00411{height:58.740000pt;}
.h10_c00411{height:59.474434pt;}
.h15_c00411{height:61.838906pt;}
.h5_c00411{height:63.048047pt;}
.h9_c00411{height:64.614184pt;}
.he_c00411{height:64.741875pt;}
.h3_c00411{height:74.621423pt;}
.h14_c00411{height:104.997934pt;}
.h1_c00411{height:986.666667pt;}
.h0_c00411{height:1122.666667pt;}
.w1_c00411{width:689.333333pt;}
.w0_c00411{width:793.333333pt;}
.x0_c00411{left:0.000000pt;}
.x2_c00411{left:27.334253pt;}
.x1_c00411{left:52.000000pt;}
.x6_c00411{left:68.122253pt;}
.x53_c00411{left:69.521453pt;}
.x2c_c00411{left:70.630253pt;}
.x72_c00411{left:72.614653pt;}
.x5c_c00411{left:78.396253pt;}
.x1c_c00411{left:87.922253pt;}
.x51_c00411{left:96.581453pt;}
.x1d_c00411{left:98.055453pt;}
.x1e_c00411{left:107.277853pt;}
.x2d_c00411{left:109.218253pt;}
.x48_c00411{left:116.148253pt;}
.x65_c00411{left:117.323053pt;}
.x7_c00411{left:118.225053pt;}
.x2e_c00411{left:127.773053pt;}
.x5_c00411{left:131.680253pt;}
.x54_c00411{left:136.031853pt;}
.x77_c00411{left:137.127453pt;}
.x8_c00411{left:146.495053pt;}
.x9_c00411{left:155.501853pt;}
.x40_c00411{left:156.553453pt;}
.x78_c00411{left:162.801453pt;}
.x3a_c00411{left:166.075053pt;}
.x7f_c00411{left:172.846653pt;}
.x1f_c00411{left:175.953053pt;}
.x5f_c00411{left:178.091453pt;}
.x2f_c00411{left:185.281053pt;}
.x6d_c00411{left:186.649453pt;}
.x6e_c00411{left:188.048653pt;}
.x7c_c00411{left:191.480653pt;}
.x4c_c00411{left:195.255853pt;}
.x41_c00411{left:196.501053pt;}
.x3b_c00411{left:206.308653pt;}
.x20_c00411{left:214.857853pt;}
.x7d_c00411{left:216.023853pt;}
.x49_c00411{left:224.665453pt;}
.x30_c00411{left:225.620253pt;}
.xa_c00411{left:234.420253pt;}
.x66_c00411{left:235.432253pt;}
.x21_c00411{left:236.461853pt;}
.x42_c00411{left:244.329053pt;}
.x4d_c00411{left:245.613853pt;}
.x31_c00411{left:254.079453pt;}
.x4a_c00411{left:255.117853pt;}
.x79_c00411{left:264.080653pt;}
.x32_c00411{left:265.224653pt;}
.xb_c00411{left:274.020253pt;}
.x52_c00411{left:275.063053pt;}
.xc_c00411{left:283.841053pt;}
.x43_c00411{left:284.905853pt;}
.x22_c00411{left:294.326253pt;}
.x7a_c00411{left:295.325053pt;}
.x7e_c00411{left:299.870253pt;}
.xd_c00411{left:303.443053pt;}
.x3c_c00411{left:312.665453pt;}
.x44_c00411{left:313.967853pt;}
.x7b_c00411{left:314.975453pt;}
.x4e_c00411{left:322.803053pt;}
.x23_c00411{left:323.876653pt;}
.x67_c00411{left:325.135053pt;}
.xe_c00411{left:333.719453pt;}
.x38_c00411{left:343.857053pt;}
.x68_c00411{left:345.942653pt;}
.x24_c00411{left:352.925453pt;}
.x55_c00411{left:354.285053pt;}
.xf_c00411{left:362.618653pt;}
.x60_c00411{left:363.789053pt;}
.x25_c00411{left:372.945453pt;}
.x37_c00411{left:377.182653pt;}
.x26_c00411{left:382.295453pt;}
.x69_c00411{left:383.707853pt;}
.x33_c00411{left:392.204253pt;}
.x10_c00411{left:402.381453pt;}
.x61_c00411{left:403.415453pt;}
.x27_c00411{left:412.259453pt;}
.x73_c00411{left:413.196653pt;}
.x11_c00411{left:421.745853pt;}
.x64_c00411{left:423.373853pt;}
.x45_c00411{left:432.116653pt;}
.x63_c00411{left:434.571853pt;}
.x28_c00411{left:441.251053pt;}
.x47_c00411{left:442.166253pt;}
.x70_c00411{left:444.449853pt;}
.x59_c00411{left:450.772653pt;}
.x5d_c00411{left:452.801053pt;}
.x34_c00411{left:461.090653pt;}
.x6a_c00411{left:462.648253pt;}
.x29_c00411{left:471.003853pt;}
.x62_c00411{left:472.196253pt;}
.x56_c00411{left:481.163453pt;}
.x12_c00411{left:490.592653pt;}
.x13_c00411{left:500.131853pt;}
.x46_c00411{left:502.490253pt;}
.x14_c00411{left:509.376253pt;}
.x4f_c00411{left:510.986653pt;}
.x74_c00411{left:512.055853pt;}
.x15_c00411{left:519.694253pt;}
.x5a_c00411{left:520.587453pt;}
.x18_c00411{left:523.346253pt;}
.x19_c00411{left:529.361053pt;}
.x6b_c00411{left:530.650253pt;}
.x16_c00411{left:539.305053pt;}
.x35_c00411{left:540.585453pt;}
.x50_c00411{left:550.269853pt;}
.x39_c00411{left:559.910253pt;}
.x36_c00411{left:562.827453pt;}
.x3d_c00411{left:566.105453pt;}
.x4b_c00411{left:568.983053pt;}
.x71_c00411{left:570.325053pt;}
.x75_c00411{left:578.460653pt;}
.x57_c00411{left:580.132653pt;}
.x1b_c00411{left:585.654653pt;}
.x2a_c00411{left:588.571853pt;}
.x6f_c00411{left:590.010653pt;}
.x3e_c00411{left:598.445453pt;}
.x3_c00411{left:599.461853pt;}
.x17_c00411{left:601.195453pt;}
.x76_c00411{left:608.811853pt;}
.x4_c00411{left:610.057053pt;}
.x1a_c00411{left:617.963853pt;}
.x6c_c00411{left:619.473053pt;}
.x2b_c00411{left:628.031053pt;}
.x3f_c00411{left:638.115853pt;}
.x5b_c00411{left:639.083853pt;}
.x58_c00411{left:647.967453pt;}
.x5e_c00411{left:658.105053pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8fc45154af4e7ce3808413b1.woff2')format("woff");}.ff1_c00412{font-family:ff1_c00412;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00412;src:url('chunks/assets/font_2597f2ff20ad571b13d4e4a2.woff2')format("woff");}.ff2_c00412{font-family:ff2_c00412;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00412;src:url('chunks/assets/font_b50cd28c5430f510ff9705ec.woff2')format("woff");}.ff3_c00412{font-family:ff3_c00412;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00412;src:url('chunks/assets/font_08673cbdd2bcb572aced5b5f.woff2')format("woff");}.ff4_c00412{font-family:ff4_c00412;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00412;src:url('chunks/assets/font_6eb5d5e54bc3b7119da8a961.woff2')format("woff");}.ff5_c00412{font-family:ff5_c00412;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00412;src:url('chunks/assets/font_3058a473b58827f121ba87a3.woff2')format("woff");}.ff6_c00412{font-family:ff6_c00412;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00412;src:url('chunks/assets/font_ac5de2294aae5585172e5b12.woff2')format("woff");}.ff7_c00412{font-family:ff7_c00412;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00412;src:url('chunks/assets/font_767fd10f0801df1de2927d44.woff2')format("woff");}.ff8_c00412{font-family:ff8_c00412;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m109_c00412{transform:matrix(0.027779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.027779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.027779,0.000000,0.000000,0.250000,0,0);}
.mad_c00412{transform:matrix(0.062501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062501,0.000000,0.000000,0.250000,0,0);}
.mab_c00412{transform:matrix(0.070834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070834,0.000000,0.000000,0.250000,0,0);}
.mc7_c00412{transform:matrix(0.071429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071429,0.000000,0.000000,0.250000,0,0);}
.m1b_c00412{transform:matrix(0.112946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112946,0.000000,0.000000,0.250000,0,0);}
.mb5_c00412{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m108_c00412{transform:matrix(0.128855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128855,0.000000,0.000000,0.250000,0,0);}
.m57_c00412{transform:matrix(0.129190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129190,0.000000,0.000000,0.250000,0,0);}
.ma6_c00412{transform:matrix(0.133333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133333,0.000000,0.000000,0.250000,0,0);}
.m10a_c00412{transform:matrix(0.138888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138888,0.000000,0.000000,0.250000,0,0);}
.m5c_c00412{transform:matrix(0.142922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142922,0.000000,0.000000,0.250000,0,0);}
.me0_c00412{transform:matrix(0.147060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147060,0.000000,0.000000,0.250000,0,0);}
.m47_c00412{transform:matrix(0.149207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149207,0.000000,0.000000,0.250000,0,0);}
.m6_c00412{transform:matrix(0.155762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155762,0.000000,0.000000,0.250000,0,0);}
.md_c00412{transform:matrix(0.159305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159305,0.000000,0.000000,0.250000,0,0);}
.m41_c00412{transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);}
.m72_c00412{transform:matrix(0.164533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164533,0.000000,0.000000,0.250000,0,0);}
.md6_c00412{transform:matrix(0.164800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164800,0.000000,0.000000,0.250000,0,0);}
.m93_c00412{transform:matrix(0.167085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167085,0.000000,0.000000,0.250000,0,0);}
.mac_c00412{transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00412{transform:matrix(0.169275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169275,0.000000,0.000000,0.250000,0,0);}
.ma_c00412{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m11_c00412{transform:matrix(0.171429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171429,0.000000,0.000000,0.250000,0,0);}
.mff_c00412{transform:matrix(0.172059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172059,0.000000,0.000000,0.250000,0,0);}
.me1_c00412{transform:matrix(0.174188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174188,0.000000,0.000000,0.250000,0,0);}
.m40_c00412{transform:matrix(0.180612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180612,0.000000,0.000000,0.250000,0,0);}
.m69_c00412{transform:matrix(0.182404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182404,0.000000,0.000000,0.250000,0,0);}
.m7f_c00412{transform:matrix(0.182710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182710,0.000000,0.000000,0.250000,0,0);}
.me4_c00412{transform:matrix(0.183536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183536,0.000000,0.000000,0.250000,0,0);}
.me3_c00412{transform:matrix(0.183807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183807,0.000000,0.000000,0.250000,0,0);}
.mfd_c00412{transform:matrix(0.189330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189330,0.000000,0.000000,0.250000,0,0);}
.mc6_c00412{transform:matrix(0.190178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190178,0.000000,0.000000,0.250000,0,0);}
.m60_c00412{transform:matrix(0.192312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192312,0.000000,0.000000,0.250000,0,0);}
.m13_c00412{transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);}
.m76_c00412{transform:matrix(0.193264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193264,0.000000,0.000000,0.250000,0,0);}
.me2_c00412{transform:matrix(0.194714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194714,0.000000,0.000000,0.250000,0,0);}
.ma8_c00412{transform:matrix(0.194935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194935,0.000000,0.000000,0.250000,0,0);}
.m9_c00412{transform:matrix(0.195001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195001,0.000000,0.000000,0.250000,0,0);}
.m6e_c00412{transform:matrix(0.195806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195806,0.000000,0.000000,0.250000,0,0);}
.m10_c00412{transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);}
.m46_c00412{transform:matrix(0.197982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197982,0.000000,0.000000,0.250000,0,0);}
.m81_c00412{transform:matrix(0.199948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199948,0.000000,0.000000,0.250000,0,0);}
.m2_c00412{transform:matrix(0.200675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200675,0.000000,0.000000,0.250000,0,0);}
.md8_c00412{transform:matrix(0.202780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202780,0.000000,0.000000,0.250000,0,0);}
.m24_c00412{transform:matrix(0.202958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202958,0.000000,0.000000,0.250000,0,0);}
.m12_c00412{transform:matrix(0.204762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204762,0.000000,0.000000,0.250000,0,0);}
.mb7_c00412{transform:matrix(0.205692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205692,0.000000,0.000000,0.250000,0,0);}
.mf8_c00412{transform:matrix(0.205965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205965,0.000000,0.000000,0.250000,0,0);}
.mf_c00412{transform:matrix(0.207544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207544,0.000000,0.000000,0.250000,0,0);}
.mdd_c00412{transform:matrix(0.208968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208968,0.000000,0.000000,0.250000,0,0);}
.mb4_c00412{transform:matrix(0.215399,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215399,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215399,0.000000,0.000000,0.250000,0,0);}
.mfe_c00412{transform:matrix(0.216177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216177,0.000000,0.000000,0.250000,0,0);}
.m2a_c00412{transform:matrix(0.216324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216324,0.000000,0.000000,0.250000,0,0);}
.md7_c00412{transform:matrix(0.218406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218406,0.000000,0.000000,0.250000,0,0);}
.mf4_c00412{transform:matrix(0.219418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219418,0.000000,0.000000,0.250000,0,0);}
.ma5_c00412{transform:matrix(0.219469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219469,0.000000,0.000000,0.250000,0,0);}
.m8_c00412{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00412{transform:matrix(0.220423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220423,0.000000,0.000000,0.250000,0,0);}
.m102_c00412{transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);}
.m66_c00412{transform:matrix(0.222458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222458,0.000000,0.000000,0.250000,0,0);}
.m107_c00412{transform:matrix(0.222512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222512,0.000000,0.000000,0.250000,0,0);}
.mc0_c00412{transform:matrix(0.222618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222618,0.000000,0.000000,0.250000,0,0);}
.ma9_c00412{transform:matrix(0.223762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223762,0.000000,0.000000,0.250000,0,0);}
.m20_c00412{transform:matrix(0.224418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224418,0.000000,0.000000,0.250000,0,0);}
.mb_c00412{transform:matrix(0.230001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230001,0.000000,0.000000,0.250000,0,0);}
.md4_c00412{transform:matrix(0.234399,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234399,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234399,0.000000,0.000000,0.250000,0,0);}
.m5e_c00412{transform:matrix(0.241336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241336,0.000000,0.000000,0.250000,0,0);}
.m6a_c00412{transform:matrix(0.246498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246498,0.000000,0.000000,0.250000,0,0);}
.m82_c00412{transform:matrix(0.246889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246889,0.000000,0.000000,0.250000,0,0);}
.mbe_c00412{transform:matrix(0.248526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248526,0.000000,0.000000,0.250000,0,0);}
.mf2_c00412{transform:matrix(0.249316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249316,0.000000,0.000000,0.250000,0,0);}
.m5a_c00412{transform:matrix(0.249763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249763,0.000000,0.000000,0.250000,0,0);}
.m0_c00412{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m101_c00412{transform:matrix(0.250083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250083,0.000000,0.000000,0.250000,0,0);}
.m3_c00412{transform:matrix(0.251565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251565,0.000000,0.000000,0.250000,0,0);}
.mba_c00412{transform:matrix(0.251880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251880,0.000000,0.000000,0.250000,0,0);}
.maa_c00412{transform:matrix(0.253575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253575,0.000000,0.000000,0.250000,0,0);}
.mca_c00412{transform:matrix(0.253912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253912,0.000000,0.000000,0.250000,0,0);}
.m33_c00412{transform:matrix(0.254599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254599,0.000000,0.000000,0.250000,0,0);}
.m4f_c00412{transform:matrix(0.257590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257590,0.000000,0.000000,0.250000,0,0);}
.mbc_c00412{transform:matrix(0.257668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257668,0.000000,0.000000,0.250000,0,0);}
.md1_c00412{transform:matrix(0.258257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258257,0.000000,0.000000,0.250000,0,0);}
.m6c_c00412{transform:matrix(0.258359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258359,0.000000,0.000000,0.250000,0,0);}
.m8e_c00412{transform:matrix(0.258608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258608,0.000000,0.000000,0.250000,0,0);}
.m88_c00412{transform:matrix(0.262115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262115,0.000000,0.000000,0.250000,0,0);}
.m92_c00412{transform:matrix(0.262469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262469,0.000000,0.000000,0.250000,0,0);}
.mb0_c00412{transform:matrix(0.262752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262752,0.000000,0.000000,0.250000,0,0);}
.mc_c00412{transform:matrix(0.262866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262866,0.000000,0.000000,0.250000,0,0);}
.m19_c00412{transform:matrix(0.263538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263538,0.000000,0.000000,0.250000,0,0);}
.m9c_c00412{transform:matrix(0.265566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265566,0.000000,0.000000,0.250000,0,0);}
.m106_c00412{transform:matrix(0.265899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265899,0.000000,0.000000,0.250000,0,0);}
.m105_c00412{transform:matrix(0.269143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269143,0.000000,0.000000,0.250000,0,0);}
.mc9_c00412{transform:matrix(0.270329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270329,0.000000,0.000000,0.250000,0,0);}
.m52_c00412{transform:matrix(0.273302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273302,0.000000,0.000000,0.250000,0,0);}
.m2e_c00412{transform:matrix(0.273399,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273399,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273399,0.000000,0.000000,0.250000,0,0);}
.mec_c00412{transform:matrix(0.273587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273587,0.000000,0.000000,0.250000,0,0);}
.mf5_c00412{transform:matrix(0.274460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274460,0.000000,0.000000,0.250000,0,0);}
.m1_c00412{transform:matrix(0.275413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275413,0.000000,0.000000,0.250000,0,0);}
.m78_c00412{transform:matrix(0.278167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278167,0.000000,0.000000,0.250000,0,0);}
.mdb_c00412{transform:matrix(0.278410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278410,0.000000,0.000000,0.250000,0,0);}
.m58_c00412{transform:matrix(0.278472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278472,0.000000,0.000000,0.250000,0,0);}
.m86_c00412{transform:matrix(0.279531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279531,0.000000,0.000000,0.250000,0,0);}
.m75_c00412{transform:matrix(0.279620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279620,0.000000,0.000000,0.250000,0,0);}
.ma2_c00412{transform:matrix(0.280259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280259,0.000000,0.000000,0.250000,0,0);}
.m39_c00412{transform:matrix(0.281213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281213,0.000000,0.000000,0.250000,0,0);}
.m95_c00412{transform:matrix(0.281623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281623,0.000000,0.000000,0.250000,0,0);}
.m2b_c00412{transform:matrix(0.283726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283726,0.000000,0.000000,0.250000,0,0);}
.mbd_c00412{transform:matrix(0.285822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285822,0.000000,0.000000,0.250000,0,0);}
.ma0_c00412{transform:matrix(0.286385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286385,0.000000,0.000000,0.250000,0,0);}
.mc8_c00412{transform:matrix(0.286683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286683,0.000000,0.000000,0.250000,0,0);}
.maf_c00412{transform:matrix(0.286908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286908,0.000000,0.000000,0.250000,0,0);}
.mda_c00412{transform:matrix(0.287055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287055,0.000000,0.000000,0.250000,0,0);}
.mce_c00412{transform:matrix(0.288421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288421,0.000000,0.000000,0.250000,0,0);}
.m30_c00412{transform:matrix(0.288707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288707,0.000000,0.000000,0.250000,0,0);}
.m67_c00412{transform:matrix(0.288829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288829,0.000000,0.000000,0.250000,0,0);}
.m3a_c00412{transform:matrix(0.288981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288981,0.000000,0.000000,0.250000,0,0);}
.mde_c00412{transform:matrix(0.290133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290133,0.000000,0.000000,0.250000,0,0);}
.m77_c00412{transform:matrix(0.291019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291019,0.000000,0.000000,0.250000,0,0);}
.me9_c00412{transform:matrix(0.291628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291628,0.000000,0.000000,0.250000,0,0);}
.m56_c00412{transform:matrix(0.292187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292187,0.000000,0.000000,0.250000,0,0);}
.m45_c00412{transform:matrix(0.292623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292623,0.000000,0.000000,0.250000,0,0);}
.mc2_c00412{transform:matrix(0.292653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292653,0.000000,0.000000,0.250000,0,0);}
.m14_c00412{transform:matrix(0.293030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293030,0.000000,0.000000,0.250000,0,0);}
.m8c_c00412{transform:matrix(0.293313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293313,0.000000,0.000000,0.250000,0,0);}
.m7_c00412{transform:matrix(0.293709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293709,0.000000,0.000000,0.250000,0,0);}
.m9d_c00412{transform:matrix(0.294235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294235,0.000000,0.000000,0.250000,0,0);}
.m3e_c00412{transform:matrix(0.294511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294511,0.000000,0.000000,0.250000,0,0);}
.m5b_c00412{transform:matrix(0.294515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294515,0.000000,0.000000,0.250000,0,0);}
.ma7_c00412{transform:matrix(0.295626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295626,0.000000,0.000000,0.250000,0,0);}
.m26_c00412{transform:matrix(0.296216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296216,0.000000,0.000000,0.250000,0,0);}
.m4a_c00412{transform:matrix(0.296268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296268,0.000000,0.000000,0.250000,0,0);}
.m49_c00412{transform:matrix(0.296638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296638,0.000000,0.000000,0.250000,0,0);}
.mfa_c00412{transform:matrix(0.296837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296837,0.000000,0.000000,0.250000,0,0);}
.mc3_c00412{transform:matrix(0.296916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296916,0.000000,0.000000,0.250000,0,0);}
.mfb_c00412{transform:matrix(0.296949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296949,0.000000,0.000000,0.250000,0,0);}
.m8b_c00412{transform:matrix(0.297197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297197,0.000000,0.000000,0.250000,0,0);}
.m104_c00412{transform:matrix(0.298288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298288,0.000000,0.000000,0.250000,0,0);}
.md0_c00412{transform:matrix(0.299677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299677,0.000000,0.000000,0.250000,0,0);}
.m3b_c00412{transform:matrix(0.301177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301177,0.000000,0.000000,0.250000,0,0);}
.m97_c00412{transform:matrix(0.301598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301598,0.000000,0.000000,0.250000,0,0);}
.m64_c00412{transform:matrix(0.302263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302263,0.000000,0.000000,0.250000,0,0);}
.m2f_c00412{transform:matrix(0.302459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302459,0.000000,0.000000,0.250000,0,0);}
.m16_c00412{transform:matrix(0.303009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303009,0.000000,0.000000,0.250000,0,0);}
.m5d_c00412{transform:matrix(0.303936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303936,0.000000,0.000000,0.250000,0,0);}
.m15_c00412{transform:matrix(0.304015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304015,0.000000,0.000000,0.250000,0,0);}
.mdc_c00412{transform:matrix(0.304289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304289,0.000000,0.000000,0.250000,0,0);}
.m1f_c00412{transform:matrix(0.304743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304743,0.000000,0.000000,0.250000,0,0);}
.mf3_c00412{transform:matrix(0.305089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305089,0.000000,0.000000,0.250000,0,0);}
.me8_c00412{transform:matrix(0.305456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305456,0.000000,0.000000,0.250000,0,0);}
.m7a_c00412{transform:matrix(0.305552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305552,0.000000,0.000000,0.250000,0,0);}
.m91_c00412{transform:matrix(0.307534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307534,0.000000,0.000000,0.250000,0,0);}
.m79_c00412{transform:matrix(0.308390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308390,0.000000,0.000000,0.250000,0,0);}
.m7e_c00412{transform:matrix(0.309628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309628,0.000000,0.000000,0.250000,0,0);}
.mf7_c00412{transform:matrix(0.310199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310199,0.000000,0.000000,0.250000,0,0);}
.m85_c00412{transform:matrix(0.310464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310464,0.000000,0.000000,0.250000,0,0);}
.mbb_c00412{transform:matrix(0.310760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310760,0.000000,0.000000,0.250000,0,0);}
.m50_c00412{transform:matrix(0.313121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313121,0.000000,0.000000,0.250000,0,0);}
.m61_c00412{transform:matrix(0.313176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313176,0.000000,0.000000,0.250000,0,0);}
.mef_c00412{transform:matrix(0.313393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313393,0.000000,0.000000,0.250000,0,0);}
.mae_c00412{transform:matrix(0.314056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314056,0.000000,0.000000,0.250000,0,0);}
.m9b_c00412{transform:matrix(0.314873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314873,0.000000,0.000000,0.250000,0,0);}
.m98_c00412{transform:matrix(0.315285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315285,0.000000,0.000000,0.250000,0,0);}
.m4c_c00412{transform:matrix(0.316914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316914,0.000000,0.000000,0.250000,0,0);}
.m1e_c00412{transform:matrix(0.317535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317535,0.000000,0.000000,0.250000,0,0);}
.m55_c00412{transform:matrix(0.317625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317625,0.000000,0.000000,0.250000,0,0);}
.m48_c00412{transform:matrix(0.317892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317892,0.000000,0.000000,0.250000,0,0);}
.m87_c00412{transform:matrix(0.318601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318601,0.000000,0.000000,0.250000,0,0);}
.m103_c00412{transform:matrix(0.318728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318728,0.000000,0.000000,0.250000,0,0);}
.m84_c00412{transform:matrix(0.319380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319380,0.000000,0.000000,0.250000,0,0);}
.mc5_c00412{transform:matrix(0.319870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319870,0.000000,0.000000,0.250000,0,0);}
.me7_c00412{transform:matrix(0.321569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321569,0.000000,0.000000,0.250000,0,0);}
.m18_c00412{transform:matrix(0.322925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322925,0.000000,0.000000,0.250000,0,0);}
.m21_c00412{transform:matrix(0.323895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323895,0.000000,0.000000,0.250000,0,0);}
.m53_c00412{transform:matrix(0.324597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324597,0.000000,0.000000,0.250000,0,0);}
.m63_c00412{transform:matrix(0.325646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325646,0.000000,0.000000,0.250000,0,0);}
.m9f_c00412{transform:matrix(0.325983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325983,0.000000,0.000000,0.250000,0,0);}
.mcb_c00412{transform:matrix(0.325988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325988,0.000000,0.000000,0.250000,0,0);}
.m34_c00412{transform:matrix(0.326116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326116,0.000000,0.000000,0.250000,0,0);}
.me6_c00412{transform:matrix(0.326723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326723,0.000000,0.000000,0.250000,0,0);}
.m8d_c00412{transform:matrix(0.327101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327101,0.000000,0.000000,0.250000,0,0);}
.m3f_c00412{transform:matrix(0.328173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328173,0.000000,0.000000,0.250000,0,0);}
.mcd_c00412{transform:matrix(0.328275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328275,0.000000,0.000000,0.250000,0,0);}
.m4d_c00412{transform:matrix(0.328630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328630,0.000000,0.000000,0.250000,0,0);}
.mee_c00412{transform:matrix(0.330178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330178,0.000000,0.000000,0.250000,0,0);}
.m25_c00412{transform:matrix(0.330433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330433,0.000000,0.000000,0.250000,0,0);}
.m4_c00412{transform:matrix(0.330689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330689,0.000000,0.000000,0.250000,0,0);}
.m100_c00412{transform:matrix(0.331247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331247,0.000000,0.000000,0.250000,0,0);}
.m32_c00412{transform:matrix(0.331704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331704,0.000000,0.000000,0.250000,0,0);}
.m7c_c00412{transform:matrix(0.332929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332929,0.000000,0.000000,0.250000,0,0);}
.m8a_c00412{transform:matrix(0.333694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333694,0.000000,0.000000,0.250000,0,0);}
.mf6_c00412{transform:matrix(0.334103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334103,0.000000,0.000000,0.250000,0,0);}
.m22_c00412{transform:matrix(0.334243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334243,0.000000,0.000000,0.250000,0,0);}
.m90_c00412{transform:matrix(0.335448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335448,0.000000,0.000000,0.250000,0,0);}
.m6f_c00412{transform:matrix(0.339348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339348,0.000000,0.000000,0.250000,0,0);}
.m1a_c00412{transform:matrix(0.340173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340173,0.000000,0.000000,0.250000,0,0);}
.mc4_c00412{transform:matrix(0.340212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340212,0.000000,0.000000,0.250000,0,0);}
.mc1_c00412{transform:matrix(0.340356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340356,0.000000,0.000000,0.250000,0,0);}
.m4e_c00412{transform:matrix(0.340551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340551,0.000000,0.000000,0.250000,0,0);}
.m42_c00412{transform:matrix(0.341503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341503,0.000000,0.000000,0.250000,0,0);}
.m31_c00412{transform:matrix(0.341763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341763,0.000000,0.000000,0.250000,0,0);}
.mf0_c00412{transform:matrix(0.342964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342964,0.000000,0.000000,0.250000,0,0);}
.mcf_c00412{transform:matrix(0.343832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343832,0.000000,0.000000,0.250000,0,0);}
.me_c00412{transform:matrix(0.344051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344051,0.000000,0.000000,0.250000,0,0);}
.ma3_c00412{transform:matrix(0.344194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344194,0.000000,0.000000,0.250000,0,0);}
.mbf_c00412{transform:matrix(0.344846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344846,0.000000,0.000000,0.250000,0,0);}
.m35_c00412{transform:matrix(0.345810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345810,0.000000,0.000000,0.250000,0,0);}
.m89_c00412{transform:matrix(0.346472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346472,0.000000,0.000000,0.250000,0,0);}
.m36_c00412{transform:matrix(0.347253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347253,0.000000,0.000000,0.250000,0,0);}
.m7b_c00412{transform:matrix(0.347612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347612,0.000000,0.000000,0.250000,0,0);}
.md3_c00412{transform:matrix(0.348271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348271,0.000000,0.000000,0.250000,0,0);}
.m70_c00412{transform:matrix(0.349409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349409,0.000000,0.000000,0.250000,0,0);}
.mb2_c00412{transform:matrix(0.350112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350112,0.000000,0.000000,0.250000,0,0);}
.m8f_c00412{transform:matrix(0.350289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350289,0.000000,0.000000,0.250000,0,0);}
.m94_c00412{transform:matrix(0.350390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350390,0.000000,0.000000,0.250000,0,0);}
.m9e_c00412{transform:matrix(0.350912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350912,0.000000,0.000000,0.250000,0,0);}
.m6b_c00412{transform:matrix(0.352242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352242,0.000000,0.000000,0.250000,0,0);}
.mb1_c00412{transform:matrix(0.354135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354135,0.000000,0.000000,0.250000,0,0);}
.md2_c00412{transform:matrix(0.355180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355180,0.000000,0.000000,0.250000,0,0);}
.m29_c00412{transform:matrix(0.355387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355387,0.000000,0.000000,0.250000,0,0);}
.md9_c00412{transform:matrix(0.355624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355624,0.000000,0.000000,0.250000,0,0);}
.m7d_c00412{transform:matrix(0.356824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356824,0.000000,0.000000,0.250000,0,0);}
.m2d_c00412{transform:matrix(0.356902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356902,0.000000,0.000000,0.250000,0,0);}
.mf1_c00412{transform:matrix(0.360229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360229,0.000000,0.000000,0.250000,0,0);}
.mea_c00412{transform:matrix(0.361036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361036,0.000000,0.000000,0.250000,0,0);}
.med_c00412{transform:matrix(0.361190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361190,0.000000,0.000000,0.250000,0,0);}
.m43_c00412{transform:matrix(0.361390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361390,0.000000,0.000000,0.250000,0,0);}
.mcc_c00412{transform:matrix(0.361455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361455,0.000000,0.000000,0.250000,0,0);}
.mb8_c00412{transform:matrix(0.361501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361501,0.000000,0.000000,0.250000,0,0);}
.m51_c00412{transform:matrix(0.362954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362954,0.000000,0.000000,0.250000,0,0);}
.m83_c00412{transform:matrix(0.364111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364111,0.000000,0.000000,0.250000,0,0);}
.m2c_c00412{transform:matrix(0.368059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368059,0.000000,0.000000,0.250000,0,0);}
.m65_c00412{transform:matrix(0.368846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368846,0.000000,0.000000,0.250000,0,0);}
.m23_c00412{transform:matrix(0.370216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370216,0.000000,0.000000,0.250000,0,0);}
.mf9_c00412{transform:matrix(0.370341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370341,0.000000,0.000000,0.250000,0,0);}
.m3c_c00412{transform:matrix(0.372083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372083,0.000000,0.000000,0.250000,0,0);}
.m59_c00412{transform:matrix(0.372569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372569,0.000000,0.000000,0.250000,0,0);}
.m96_c00412{transform:matrix(0.375027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375027,0.000000,0.000000,0.250000,0,0);}
.m54_c00412{transform:matrix(0.376858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376858,0.000000,0.000000,0.250000,0,0);}
.m38_c00412{transform:matrix(0.378470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378470,0.000000,0.000000,0.250000,0,0);}
.m3d_c00412{transform:matrix(0.379699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379699,0.000000,0.000000,0.250000,0,0);}
.m5f_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);}
.md5_c00412{transform:matrix(0.381998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381998,0.000000,0.000000,0.250000,0,0);}
.m27_c00412{transform:matrix(0.384652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384652,0.000000,0.000000,0.250000,0,0);}
.m37_c00412{transform:matrix(0.385497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385497,0.000000,0.000000,0.250000,0,0);}
.m62_c00412{transform:matrix(0.388325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388325,0.000000,0.000000,0.250000,0,0);}
.m1c_c00412{transform:matrix(0.389547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389547,0.000000,0.000000,0.250000,0,0);}
.meb_c00412{transform:matrix(0.390388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390388,0.000000,0.000000,0.250000,0,0);}
.ma1_c00412{transform:matrix(0.394824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394824,0.000000,0.000000,0.250000,0,0);}
.ma4_c00412{transform:matrix(0.396757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396757,0.000000,0.000000,0.250000,0,0);}
.m80_c00412{transform:matrix(0.397083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397083,0.000000,0.000000,0.250000,0,0);}
.m73_c00412{transform:matrix(0.404112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404112,0.000000,0.000000,0.250000,0,0);}
.m28_c00412{transform:matrix(0.406514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406514,0.000000,0.000000,0.250000,0,0);}
.mb9_c00412{transform:matrix(0.407078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407078,0.000000,0.000000,0.250000,0,0);}
.m68_c00412{transform:matrix(0.413290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413290,0.000000,0.000000,0.250000,0,0);}
.mfc_c00412{transform:matrix(0.422686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422686,0.000000,0.000000,0.250000,0,0);}
.m44_c00412{transform:matrix(0.425591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425591,0.000000,0.000000,0.250000,0,0);}
.me5_c00412{transform:matrix(0.431170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431170,0.000000,0.000000,0.250000,0,0);}
.m17_c00412{transform:matrix(0.434082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434082,0.000000,0.000000,0.250000,0,0);}
.m71_c00412{transform:matrix(0.434276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434276,0.000000,0.000000,0.250000,0,0);}
.m99_c00412{transform:matrix(0.441834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441834,0.000000,0.000000,0.250000,0,0);}
.mdf_c00412{transform:matrix(0.443705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443705,0.000000,0.000000,0.250000,0,0);}
.m6d_c00412{transform:matrix(0.467462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467462,0.000000,0.000000,0.250000,0,0);}
.m5_c00412{transform:matrix(0.469063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469063,0.000000,0.000000,0.250000,0,0);}
.m74_c00412{transform:matrix(0.495075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495075,0.000000,0.000000,0.250000,0,0);}
.m1d_c00412{transform:matrix(0.567365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567365,0.000000,0.000000,0.250000,0,0);}
.mb6_c00412{transform:matrix(0.581992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.581992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.581992,0.000000,0.000000,0.250000,0,0);}
.mb3_c00412{transform:matrix(0.766326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766326,0.000000,0.000000,0.250000,0,0);}
.v3_c00412{vertical-align:-2.873772px;}
.v0_c00412{vertical-align:0.000000px;}
.v2_c00412{vertical-align:5.702400px;}
.v1_c00412{vertical-align:44.193600px;}
.ls1c_c00412{letter-spacing:-3.444217px;}
.lsf_c00412{letter-spacing:-2.439367px;}
.ls14_c00412{letter-spacing:-2.383927px;}
.ls2d_c00412{letter-spacing:-2.363130px;}
.lsd_c00412{letter-spacing:-2.356200px;}
.ls2a_c00412{letter-spacing:-2.286900px;}
.ls1f_c00412{letter-spacing:-2.273040px;}
.ls17_c00412{letter-spacing:-2.224530px;}
.ls41_c00412{letter-spacing:-1.895737px;}
.ls34_c00412{letter-spacing:-1.746367px;}
.ls26_c00412{letter-spacing:-1.718640px;}
.ls2c_c00412{letter-spacing:-1.690920px;}
.ls40_c00412{letter-spacing:-1.635480px;}
.ls12_c00412{letter-spacing:-1.621620px;}
.ls2e_c00412{letter-spacing:-1.596043px;}
.ls47_c00412{letter-spacing:-1.413720px;}
.ls3d_c00412{letter-spacing:-1.373015px;}
.ls32_c00412{letter-spacing:-1.302840px;}
.ls25_c00412{letter-spacing:-1.288980px;}
.ls3a_c00412{letter-spacing:-1.191967px;}
.ls39_c00412{letter-spacing:-1.157317px;}
.ls1e_c00412{letter-spacing:-1.101870px;}
.ls3b_c00412{letter-spacing:-0.997920px;}
.ls38_c00412{letter-spacing:-0.977130px;}
.ls30_c00412{letter-spacing:-0.907830px;}
.ls1d_c00412{letter-spacing:-0.776160px;}
.ls3f_c00412{letter-spacing:-0.759689px;}
.ls22_c00412{letter-spacing:-0.717871px;}
.ls37_c00412{letter-spacing:-0.716285px;}
.ls19_c00412{letter-spacing:-0.618473px;}
.ls45_c00412{letter-spacing:-0.606357px;}
.ls49_c00412{letter-spacing:-0.337590px;}
.ls2f_c00412{letter-spacing:-0.121770px;}
.lsb_c00412{letter-spacing:0.000000px;}
.ls20_c00412{letter-spacing:0.013939px;}
.ls8_c00412{letter-spacing:0.368518px;}
.ls2_c00412{letter-spacing:0.987627px;}
.ls9_c00412{letter-spacing:1.196395px;}
.ls5_c00412{letter-spacing:1.212714px;}
.ls1b_c00412{letter-spacing:1.247400px;}
.ls31_c00412{letter-spacing:1.296900px;}
.ls3c_c00412{letter-spacing:1.425600px;}
.ls3_c00412{letter-spacing:1.428772px;}
.ls0_c00412{letter-spacing:1.589073px;}
.ls16_c00412{letter-spacing:2.178000px;}
.ls13_c00412{letter-spacing:2.296810px;}
.ls36_c00412{letter-spacing:2.385900px;}
.ls2b_c00412{letter-spacing:2.415600px;}
.ls27_c00412{letter-spacing:2.435400px;}
.ls3e_c00412{letter-spacing:2.455200px;}
.ls33_c00412{letter-spacing:2.484900px;}
.ls1_c00412{letter-spacing:2.697243px;}
.ls18_c00412{letter-spacing:2.712600px;}
.ls15_c00412{letter-spacing:2.930400px;}
.ls24_c00412{letter-spacing:3.088810px;}
.ls23_c00412{letter-spacing:3.138310px;}
.ls1a_c00412{letter-spacing:3.247200px;}
.ls7_c00412{letter-spacing:3.266406px;}
.ls29_c00412{letter-spacing:3.267000px;}
.ls42_c00412{letter-spacing:3.375900px;}
.lse_c00412{letter-spacing:3.484810px;}
.ls35_c00412{letter-spacing:3.504610px;}
.ls21_c00412{letter-spacing:3.643200px;}
.lsc_c00412{letter-spacing:3.702610px;}
.ls46_c00412{letter-spacing:3.732310px;}
.ls44_c00412{letter-spacing:3.920400px;}
.lsa_c00412{letter-spacing:5.156657px;}
.ls4_c00412{letter-spacing:7.318817px;}
.ls6_c00412{letter-spacing:24.235398px;}
.ls10_c00412{letter-spacing:35.640000px;}
.ls48_c00412{letter-spacing:38.491398px;}
.ls43_c00412{letter-spacing:48.470598px;}
.ls11_c00412{letter-spacing:49.896198px;}
.ls28_c00412{letter-spacing:57.024198px;}
.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;}
}
.wse_c00412{word-spacing:-26.658904px;}
.ws2_c00412{word-spacing:-19.013123px;}
.ws8_c00412{word-spacing:-18.852822px;}
.wsa_c00412{word-spacing:-18.636763px;}
.wsd_c00412{word-spacing:-17.523050px;}
.ws1_c00412{word-spacing:-17.424050px;}
.ws6_c00412{word-spacing:-16.706179px;}
.ws10_c00412{word-spacing:-16.541910px;}
.wsf_c00412{word-spacing:-16.017091px;}
.wsb_c00412{word-spacing:-12.177000px;}
.wsc_c00412{word-spacing:-12.055230px;}
.ws4_c00412{word-spacing:-3.331483px;}
.ws11_c00412{word-spacing:0.000000px;}
.ws7_c00412{word-spacing:4.181831px;}
.ws0_c00412{word-spacing:4.442609px;}
.ws9_c00412{word-spacing:7.317975px;}
.ws3_c00412{word-spacing:8.433111px;}
.ws5_c00412{word-spacing:35.893501px;}
._1e_c00412{margin-left:-19.839699px;}
._12_c00412{margin-left:-13.430340px;}
._6_c00412{margin-left:-10.802792px;}
._11_c00412{margin-left:-8.642249px;}
._18_c00412{margin-left:-6.272002px;}
._2c_c00412{margin-left:-4.520978px;}
._d_c00412{margin-left:-3.345364px;}
._26_c00412{margin-left:-2.124271px;}
._23_c00412{width:1.233540px;}
._1f_c00412{width:2.237133px;}
._2a_c00412{width:4.320261px;}
._2e_c00412{width:5.475851px;}
._b_c00412{width:6.774441px;}
._2_c00412{width:9.617960px;}
._1a_c00412{width:11.325652px;}
._4_c00412{width:12.475694px;}
._e_c00412{width:14.218688px;}
._8_c00412{width:15.332636px;}
._14_c00412{width:16.382014px;}
._f_c00412{width:17.558899px;}
._20_c00412{width:20.911968px;}
._1b_c00412{width:23.047926px;}
._9_c00412{width:24.602820px;}
._15_c00412{width:26.162262px;}
._30_c00412{width:27.187111px;}
._16_c00412{width:28.575503px;}
._5_c00412{width:31.798651px;}
._a_c00412{width:36.095251px;}
._17_c00412{width:37.148074px;}
._3_c00412{width:39.507820px;}
._c_c00412{width:41.276664px;}
._19_c00412{width:43.896501px;}
._7_c00412{width:45.581849px;}
._1_c00412{width:49.344861px;}
._29_c00412{width:51.909680px;}
._31_c00412{width:61.403562px;}
._1c_c00412{width:70.115908px;}
._0_c00412{width:80.229600px;}
._27_c00412{width:82.799107px;}
._28_c00412{width:84.238171px;}
._1d_c00412{width:89.575487px;}
._2f_c00412{width:160.595424px;}
._21_c00412{width:220.544979px;}
._22_c00412{width:224.765640px;}
._13_c00412{width:237.170340px;}
._24_c00412{width:286.421850px;}
._2d_c00412{width:372.054672px;}
._25_c00412{width:374.665352px;}
._2b_c00412{width:386.167455px;}
._10_c00412{width:838.920923px;}
.fc0_c00412{color:transparent;}
.fs14_c00412{font-size:15.444198px;}
.fs35_c00412{font-size:16.434000px;}
.fs8_c00412{font-size:22.176000px;}
.fs27_c00412{font-size:22.572000px;}
.fs30_c00412{font-size:24.235398px;}
.fs15_c00412{font-size:24.948000px;}
.fs29_c00412{font-size:25.938000px;}
.fs38_c00412{font-size:26.928000px;}
.fs32_c00412{font-size:27.918000px;}
.fs2c_c00412{font-size:28.314000px;}
.fs37_c00412{font-size:28.512000px;}
.fs36_c00412{font-size:31.284000px;}
.fs19_c00412{font-size:31.482000px;}
.fs18_c00412{font-size:32.472000px;}
.fs34_c00412{font-size:32.868000px;}
.fs33_c00412{font-size:33.066198px;}
.fs0_c00412{font-size:33.264000px;}
.fs3e_c00412{font-size:33.462000px;}
.fs1_c00412{font-size:34.056198px;}
.fs7_c00412{font-size:35.640000px;}
.fs1d_c00412{font-size:36.828000px;}
.fs2b_c00412{font-size:37.224000px;}
.fs40_c00412{font-size:38.491398px;}
.fs4_c00412{font-size:39.600000px;}
.fs3f_c00412{font-size:40.392000px;}
.fs22_c00412{font-size:40.788000px;}
.fs24_c00412{font-size:42.966198px;}
.fs12_c00412{font-size:43.560000px;}
.fs2a_c00412{font-size:44.154000px;}
.fs2_c00412{font-size:45.144000px;}
.fsd_c00412{font-size:45.936198px;}
.fsb_c00412{font-size:46.332000px;}
.fs39_c00412{font-size:46.728000px;}
.fs2f_c00412{font-size:47.718000px;}
.fs25_c00412{font-size:48.312000px;}
.fs3a_c00412{font-size:48.470598px;}
.fs1e_c00412{font-size:48.708000px;}
.fsc_c00412{font-size:49.104000px;}
.fs2d_c00412{font-size:49.698000px;}
.fsa_c00412{font-size:49.896198px;}
.fs13_c00412{font-size:54.252000px;}
.fs17_c00412{font-size:56.430000px;}
.fs20_c00412{font-size:57.024198px;}
.fs11_c00412{font-size:58.608000px;}
.fs28_c00412{font-size:59.400000px;}
.fs31_c00412{font-size:60.192000px;}
.fs1c_c00412{font-size:61.776198px;}
.fs1a_c00412{font-size:62.766198px;}
.fs9_c00412{font-size:63.558000px;}
.fs23_c00412{font-size:64.350000px;}
.fs10_c00412{font-size:64.944000px;}
.fs21_c00412{font-size:65.340000px;}
.fse_c00412{font-size:66.528000px;}
.fs5_c00412{font-size:67.320000px;}
.fs26_c00412{font-size:67.518000px;}
.fsf_c00412{font-size:68.112198px;}
.fs6_c00412{font-size:69.696198px;}
.fs2e_c00412{font-size:70.092198px;}
.fs1f_c00412{font-size:71.676198px;}
.fs1b_c00412{font-size:72.864000px;}
.fs3_c00412{font-size:74.052198px;}
.fs3c_c00412{font-size:74.448000px;}
.fs3d_c00412{font-size:74.646198px;}
.fs3b_c00412{font-size:78.408000px;}
.fs16_c00412{font-size:98.406198px;}
.y0_c00412{bottom:0.000000px;}
.y1_c00412{bottom:76.500000px;}
.y35_c00412{bottom:148.525785px;}
.y38_c00412{bottom:149.243535px;}
.y3a_c00412{bottom:149.599935px;}
.y3b_c00412{bottom:153.520335px;}
.y39_c00412{bottom:154.233135px;}
.y37_c00412{bottom:159.579135px;}
.y34_c00412{bottom:180.606735px;}
.y33_c00412{bottom:180.963135px;}
.y36_c00412{bottom:191.293785px;}
.y32_c00412{bottom:215.890335px;}
.y31_c00412{bottom:247.966335px;}
.y2a_c00412{bottom:280.042335px;}
.y2e_c00412{bottom:280.393785px;}
.y2d_c00412{bottom:282.893535px;}
.y2c_c00412{bottom:283.606335px;}
.y30_c00412{bottom:286.813935px;}
.y2f_c00412{bottom:288.590985px;}
.y29_c00412{bottom:288.952335px;}
.y2b_c00412{bottom:290.016585px;}
.y26_c00412{bottom:344.189385px;}
.y27_c00412{bottom:344.550735px;}
.y28_c00412{bottom:344.907135px;}
.y25_c00412{bottom:376.626735px;}
.y24_c00412{bottom:409.415535px;}
.y21_c00412{bottom:441.135135px;}
.y23_c00412{bottom:441.847935px;}
.y22_c00412{bottom:445.406985px;}
.y20_c00412{bottom:473.923935px;}
.y1f_c00412{bottom:481.046985px;}
.y1e_c00412{bottom:507.064185px;}
.y1d_c00412{bottom:539.145135px;}
.y1c_c00412{bottom:571.933935px;}
.y1b_c00412{bottom:604.717785px;}
.y1a_c00412{bottom:637.862985px;}
.y19_c00412{bottom:667.800585px;}
.y17_c00412{bottom:669.943935px;}
.y18_c00412{bottom:670.295385px;}
.y15_c00412{bottom:698.099535px;}
.y16_c00412{bottom:699.525135px;}
.y13_c00412{bottom:702.727785px;}
.y14_c00412{bottom:703.084185px;}
.y11_c00412{bottom:729.814185px;}
.y12_c00412{bottom:731.596185px;}
.ye_c00412{bottom:734.808735px;}
.y10_c00412{bottom:735.165135px;}
.yf_c00412{bottom:735.516585px;}
.yd_c00412{bottom:767.597535px;}
.yc_c00412{bottom:800.386335px;}
.yb_c00412{bottom:832.457385px;}
.y4_c00412{bottom:838.877535px;}
.y3_c00412{bottom:850.277385px;}
.ya_c00412{bottom:857.405385px;}
.y9_c00412{bottom:865.246185px;}
.y8_c00412{bottom:917.641935px;}
.y7_c00412{bottom:929.403135px;}
.y6_c00412{bottom:937.243935px;}
.y5_c00412{bottom:1079.086185px;}
.y2_c00412{bottom:1093.347135px;}
.h16_c00412{height:16.107816px;}
.h36_c00412{height:16.140775px;}
.ha_c00412{height:23.128875px;}
.h9_c00412{height:23.736240px;}
.h17_c00412{height:24.485098px;}
.h2d_c00412{height:25.444063px;}
.h2b_c00412{height:25.456729px;}
.h46_c00412{height:25.635271px;}
.h2e_c00412{height:26.140641px;}
.h38_c00412{height:28.136109px;}
.h3b_c00412{height:29.737125px;}
.h1b_c00412{height:31.727953px;}
.h3f_c00412{height:32.281418px;}
.hb_c00412{height:33.230868px;}
.h44_c00412{height:33.424296px;}
.h43_c00412{height:33.723422px;}
.h3d_c00412{height:33.867281px;}
.h3a_c00412{height:34.280297px;}
.h39_c00412{height:34.487011px;}
.h2_c00412{height:34.693313px;}
.h30_c00412{height:35.233017px;}
.h3_c00412{height:35.519550px;}
.h20_c00412{height:36.144668px;}
.h2f_c00412{height:37.514813px;}
.h24_c00412{height:37.978116px;}
.h33_c00412{height:38.823469px;}
.h6_c00412{height:38.865234px;}
.h45_c00412{height:42.127594px;}
.h26_c00412{height:42.168974px;}
.h12_c00412{height:42.751758px;}
.h29_c00412{height:45.431719px;}
.h2c_c00412{height:46.051242px;}
.h35_c00412{height:46.832607px;}
.h4_c00412{height:47.083781px;}
.h27_c00412{height:47.415586px;}
.h22_c00412{height:47.804238px;}
.he_c00412{height:47.910019px;}
.h21_c00412{height:48.192891px;}
.hc_c00412{height:48.322828px;}
.h3e_c00412{height:48.735844px;}
.h31_c00412{height:48.775869px;}
.h32_c00412{height:50.286012px;}
.h3c_c00412{height:50.387906px;}
.hd_c00412{height:51.213938px;}
.h14_c00412{height:56.583141px;}
.h19_c00412{height:56.870859px;}
.h11_c00412{height:57.520547px;}
.h1f_c00412{height:60.629960px;}
.h1a_c00412{height:61.126313px;}
.h2a_c00412{height:61.952344px;}
.h37_c00412{height:62.778375px;}
.h15_c00412{height:63.738984px;}
.h1e_c00412{height:65.463183px;}
.h7_c00412{height:66.070898px;}
.h28_c00412{height:66.265225px;}
.h13_c00412{height:66.289008px;}
.h10_c00412{height:66.848397px;}
.hf_c00412{height:67.047750px;}
.h1c_c00412{height:67.734563px;}
.h25_c00412{height:68.147578px;}
.h8_c00412{height:68.403007px;}
.h34_c00412{height:68.791659px;}
.h23_c00412{height:70.346269px;}
.h1d_c00412{height:71.512031px;}
.h5_c00412{height:72.678183px;}
.h41_c00412{height:73.066641px;}
.h42_c00412{height:73.261161px;}
.h40_c00412{height:76.953164px;}
.h18_c00412{height:96.532252px;}
.h1_c00412{height:1110.000000px;}
.h0_c00412{height:1263.000000px;}
.w1_c00412{width:775.500000px;}
.w0_c00412{width:892.500000px;}
.x0_c00412{left:0.000000px;}
.x4_c00412{left:3.273585px;}
.x2_c00412{left:12.332085px;}
.x3_c00412{left:24.014085px;}
.x1_c00412{left:58.500000px;}
.x44_c00412{left:77.993835px;}
.x8_c00412{left:80.156985px;}
.x65_c00412{left:81.335085px;}
.x72_c00412{left:83.354685px;}
.x7a_c00412{left:90.695535px;}
.x75_c00412{left:92.215185px;}
.x9_c00412{left:101.743935px;}
.x4c_c00412{left:111.634035px;}
.x6f_c00412{left:113.094285px;}
.x59_c00412{left:121.420185px;}
.x76_c00412{left:123.103185px;}
.xa_c00412{left:124.216935px;}
.x73_c00412{left:127.038435px;}
.x19_c00412{left:133.923885px;}
.x97_c00412{left:135.775185px;}
.x87_c00412{left:141.037035px;}
.x5e_c00412{left:143.571435px;}
.x55_c00412{left:144.967335px;}
.x4d_c00412{left:146.259285px;}
.x7c_c00412{left:153.233835px;}
.x4e_c00412{left:155.268285px;}
.xb_c00412{left:156.822585px;}
.x1a_c00412{left:166.791885px;}
.x4f_c00412{left:168.014535px;}
.x3a_c00412{left:178.973835px;}
.x83_c00412{left:180.117285px;}
.x7b_c00412{left:182.518035px;}
.x57_c00412{left:189.126285px;}
.x81_c00412{left:190.388535px;}
.x77_c00412{left:197.066085px;}
.x5a_c00412{left:199.229235px;}
.x2f_c00412{left:201.159735px;}
.xc_c00412{left:211.871535px;}
.x1b_c00412{left:214.663335px;}
.x45_c00412{left:216.668085px;}
.x1c_c00412{left:222.330885px;}
.x2b_c00412{left:226.810635px;}
.xd_c00412{left:233.849535px;}
.x98_c00412{left:235.230585px;}
.x84_c00412{left:237.185835px;}
.x82_c00412{left:238.274835px;}
.x6a_c00412{left:241.264635px;}
.x46_c00412{left:243.368385px;}
.x5f_c00412{left:245.016735px;}
.x74_c00412{left:246.368085px;}
.x80_c00412{left:248.046135px;}
.x85_c00412{left:250.912185px;}
.x50_c00412{left:255.679035px;}
.x2c_c00412{left:257.366985px;}
.x1d_c00412{left:266.880885px;}
.xe_c00412{left:268.162935px;}
.x2d_c00412{left:270.771585px;}
.x6b_c00412{left:277.473885px;}
.x1e_c00412{left:278.533185px;}
.x86_c00412{left:281.067585px;}
.x78_c00412{left:282.611985px;}
.xf_c00412{left:289.269735px;}
.x10_c00412{left:300.278535px;}
.x30_c00412{left:311.143785px;}
.x93_c00412{left:313.103985px;}
.x79_c00412{left:314.336535px;}
.x1f_c00412{left:320.746785px;}
.x11_c00412{left:322.523835px;}
.x88_c00412{left:323.711835px;}
.x51_c00412{left:328.107435px;}
.x47_c00412{left:333.349485px;}
.x3b_c00412{left:334.423635px;}
.x94_c00412{left:339.631035px;}
.x12_c00412{left:345.541335px;}
.x60_c00412{left:347.209485px;}
.x20_c00412{left:355.673985px;}
.x66_c00412{left:356.906535px;}
.x18_c00412{left:364.499835px;}
.x3c_c00412{left:366.326385px;}
.x13_c00412{left:368.147985px;}
.x14_c00412{left:378.132135px;}
.x67_c00412{left:379.800285px;}
.x2e_c00412{left:384.779985px;}
.x48_c00412{left:388.784535px;}
.x21_c00412{left:389.888385px;}
.x31_c00412{left:400.194285px;}
.x6c_c00412{left:401.407035px;}
.x8b_c00412{left:408.688485px;}
.x22_c00412{left:411.019935px;}
.x95_c00412{left:412.039635px;}
.x52_c00412{left:420.855585px;}
.x15_c00412{left:422.682135px;}
.x7_c00412{left:425.726385px;}
.x53_c00412{left:430.438785px;}
.x32_c00412{left:432.928635px;}
.x89_c00412{left:436.443135px;}
.x33_c00412{left:444.179985px;}
.x23_c00412{left:454.000785px;}
.x16_c00412{left:455.822385px;}
.x8a_c00412{left:457.609335px;}
.x24_c00412{left:465.083835px;}
.x3d_c00412{left:466.692585px;}
.x17_c00412{left:468.727035px;}
.x5b_c00412{left:476.993535px;}
.x34_c00412{left:478.042935px;}
.x5d_c00412{left:481.052535px;}
.x25_c00412{left:487.858785px;}
.x6d_c00412{left:490.061535px;}
.x58_c00412{left:499.788285px;}
.x7d_c00412{left:503.094885px;}
.x61_c00412{left:511.272285px;}
.x91_c00412{left:513.093885px;}
.x35_c00412{left:521.553435px;}
.x70_c00412{left:523.276035px;}
.x3e_c00412{left:527.097435px;}
.x26_c00412{left:532.775085px;}
.x7e_c00412{left:534.012585px;}
.x96_c00412{left:536.447985px;}
.x49_c00412{left:544.640235px;}
.x36_c00412{left:555.777735px;}
.x9b_c00412{left:558.713085px;}
.x54_c00412{left:565.687635px;}
.x27_c00412{left:576.587535px;}
.x9a_c00412{left:577.805235px;}
.x3f_c00412{left:587.645835px;}
.x28_c00412{left:598.857585px;}
.x71_c00412{left:611.029635px;}
.x90_c00412{left:612.192885px;}
.x8c_c00412{left:613.945185px;}
.x8d_c00412{left:617.162685px;}
.x29_c00412{left:621.350385px;}
.x40_c00412{left:632.344335px;}
.x41_c00412{left:642.863085px;}
.x9c_c00412{left:645.164835px;}
.x68_c00412{left:646.234035px;}
.x5c_c00412{left:653.797635px;}
.x2a_c00412{left:654.842085px;}
.x99_c00412{left:657.980385px;}
.x4a_c00412{left:665.355885px;}
.x62_c00412{left:666.573585px;}
.x9d_c00412{left:669.508935px;}
.x42_c00412{left:675.919185px;}
.x5_c00412{left:676.924035px;}
.x8e_c00412{left:680.235585px;}
.x37_c00412{left:687.942735px;}
.x63_c00412{left:690.056385px;}
.x56_c00412{left:693.100635px;}
.x6_c00412{left:698.530785px;}
.x6e_c00412{left:701.461185px;}
.x64_c00412{left:710.074185px;}
.x8f_c00412{left:712.623435px;}
.x92_c00412{left:717.835785px;}
.x43_c00412{left:720.751335px;}
.x38_c00412{left:731.512635px;}
.x7f_c00412{left:732.571935px;}
.x4b_c00412{left:742.872885px;}
.x39_c00412{left:745.298385px;}
.x69_c00412{left:746.491335px;}
@media print{
.v3_c00412{vertical-align:-2.554464pt;}
.v0_c00412{vertical-align:0.000000pt;}
.v2_c00412{vertical-align:5.068800pt;}
.v1_c00412{vertical-align:39.283200pt;}
.ls1c_c00412{letter-spacing:-3.061526pt;}
.lsf_c00412{letter-spacing:-2.168326pt;}
.ls14_c00412{letter-spacing:-2.119046pt;}
.ls2d_c00412{letter-spacing:-2.100560pt;}
.lsd_c00412{letter-spacing:-2.094400pt;}
.ls2a_c00412{letter-spacing:-2.032800pt;}
.ls1f_c00412{letter-spacing:-2.020480pt;}
.ls17_c00412{letter-spacing:-1.977360pt;}
.ls41_c00412{letter-spacing:-1.685099pt;}
.ls34_c00412{letter-spacing:-1.552326pt;}
.ls26_c00412{letter-spacing:-1.527680pt;}
.ls2c_c00412{letter-spacing:-1.503040pt;}
.ls40_c00412{letter-spacing:-1.453760pt;}
.ls12_c00412{letter-spacing:-1.441440pt;}
.ls2e_c00412{letter-spacing:-1.418705pt;}
.ls47_c00412{letter-spacing:-1.256640pt;}
.ls3d_c00412{letter-spacing:-1.220458pt;}
.ls32_c00412{letter-spacing:-1.158080pt;}
.ls25_c00412{letter-spacing:-1.145760pt;}
.ls3a_c00412{letter-spacing:-1.059526pt;}
.ls39_c00412{letter-spacing:-1.028726pt;}
.ls1e_c00412{letter-spacing:-0.979440pt;}
.ls3b_c00412{letter-spacing:-0.887040pt;}
.ls38_c00412{letter-spacing:-0.868560pt;}
.ls30_c00412{letter-spacing:-0.806960pt;}
.ls1d_c00412{letter-spacing:-0.689920pt;}
.ls3f_c00412{letter-spacing:-0.675279pt;}
.ls22_c00412{letter-spacing:-0.638107pt;}
.ls37_c00412{letter-spacing:-0.636698pt;}
.ls19_c00412{letter-spacing:-0.549754pt;}
.ls45_c00412{letter-spacing:-0.538984pt;}
.ls49_c00412{letter-spacing:-0.300080pt;}
.ls2f_c00412{letter-spacing:-0.108240pt;}
.lsb_c00412{letter-spacing:0.000000pt;}
.ls20_c00412{letter-spacing:0.012390pt;}
.ls8_c00412{letter-spacing:0.327571pt;}
.ls2_c00412{letter-spacing:0.877891pt;}
.ls9_c00412{letter-spacing:1.063462pt;}
.ls5_c00412{letter-spacing:1.077968pt;}
.ls1b_c00412{letter-spacing:1.108800pt;}
.ls31_c00412{letter-spacing:1.152800pt;}
.ls3c_c00412{letter-spacing:1.267200pt;}
.ls3_c00412{letter-spacing:1.270020pt;}
.ls0_c00412{letter-spacing:1.412510pt;}
.ls16_c00412{letter-spacing:1.936000pt;}
.ls13_c00412{letter-spacing:2.041609pt;}
.ls36_c00412{letter-spacing:2.120800pt;}
.ls2b_c00412{letter-spacing:2.147200pt;}
.ls27_c00412{letter-spacing:2.164800pt;}
.ls3e_c00412{letter-spacing:2.182400pt;}
.ls33_c00412{letter-spacing:2.208800pt;}
.ls1_c00412{letter-spacing:2.397549pt;}
.ls18_c00412{letter-spacing:2.411200pt;}
.ls15_c00412{letter-spacing:2.604800pt;}
.ls24_c00412{letter-spacing:2.745609pt;}
.ls23_c00412{letter-spacing:2.789609pt;}
.ls1a_c00412{letter-spacing:2.886400pt;}
.ls7_c00412{letter-spacing:2.903472pt;}
.ls29_c00412{letter-spacing:2.904000pt;}
.ls42_c00412{letter-spacing:3.000800pt;}
.lse_c00412{letter-spacing:3.097609pt;}
.ls35_c00412{letter-spacing:3.115209pt;}
.ls21_c00412{letter-spacing:3.238400pt;}
.lsc_c00412{letter-spacing:3.291209pt;}
.ls46_c00412{letter-spacing:3.317609pt;}
.ls44_c00412{letter-spacing:3.484800pt;}
.lsa_c00412{letter-spacing:4.583695pt;}
.ls4_c00412{letter-spacing:6.505615pt;}
.ls6_c00412{letter-spacing:21.542576pt;}
.ls10_c00412{letter-spacing:31.680000pt;}
.ls48_c00412{letter-spacing:34.214576pt;}
.ls43_c00412{letter-spacing:43.084976pt;}
.ls11_c00412{letter-spacing:44.352176pt;}
.ls28_c00412{letter-spacing:50.688176pt;}
.wse_c00412{word-spacing:-23.696804pt;}
.ws2_c00412{word-spacing:-16.900554pt;}
.ws8_c00412{word-spacing:-16.758064pt;}
.wsa_c00412{word-spacing:-16.566012pt;}
.wsd_c00412{word-spacing:-15.576044pt;}
.ws1_c00412{word-spacing:-15.488044pt;}
.ws6_c00412{word-spacing:-14.849937pt;}
.ws10_c00412{word-spacing:-14.703920pt;}
.wsf_c00412{word-spacing:-14.237414pt;}
.wsb_c00412{word-spacing:-10.824000pt;}
.wsc_c00412{word-spacing:-10.715760pt;}
.ws4_c00412{word-spacing:-2.961318pt;}
.ws11_c00412{word-spacing:0.000000pt;}
.ws7_c00412{word-spacing:3.717184pt;}
.ws0_c00412{word-spacing:3.948985pt;}
.ws9_c00412{word-spacing:6.504867pt;}
.ws3_c00412{word-spacing:7.496099pt;}
.ws5_c00412{word-spacing:31.905334pt;}
._1e_c00412{margin-left:-17.635288pt;}
._12_c00412{margin-left:-11.938080pt;}
._6_c00412{margin-left:-9.602482pt;}
._11_c00412{margin-left:-7.681999pt;}
._18_c00412{margin-left:-5.575113pt;}
._2c_c00412{margin-left:-4.018647pt;}
._d_c00412{margin-left:-2.973657pt;}
._26_c00412{margin-left:-1.888240pt;}
._23_c00412{width:1.096480pt;}
._1f_c00412{width:1.988562pt;}
._2a_c00412{width:3.840232pt;}
._2e_c00412{width:4.867423pt;}
._b_c00412{width:6.021725pt;}
._2_c00412{width:8.549298pt;}
._1a_c00412{width:10.067246pt;}
._4_c00412{width:11.089506pt;}
._e_c00412{width:12.638834pt;}
._8_c00412{width:13.629010pt;}
._14_c00412{width:14.561790pt;}
._f_c00412{width:15.607910pt;}
._20_c00412{width:18.588416pt;}
._1b_c00412{width:20.487045pt;}
._9_c00412{width:21.869173pt;}
._15_c00412{width:23.255344pt;}
._30_c00412{width:24.166320pt;}
._16_c00412{width:25.400447pt;}
._5_c00412{width:28.265468pt;}
._a_c00412{width:32.084668pt;}
._17_c00412{width:33.020510pt;}
._3_c00412{width:35.118062pt;}
._c_c00412{width:36.690368pt;}
._19_c00412{width:39.019112pt;}
._7_c00412{width:40.517200pt;}
._1_c00412{width:43.862099pt;}
._29_c00412{width:46.141938pt;}
._31_c00412{width:54.580944pt;}
._1c_c00412{width:62.325252pt;}
._0_c00412{width:71.315200pt;}
._27_c00412{width:73.599206pt;}
._28_c00412{width:74.878374pt;}
._1d_c00412{width:79.622655pt;}
._2f_c00412{width:142.751488pt;}
._21_c00412{width:196.039981pt;}
._22_c00412{width:199.791680pt;}
._13_c00412{width:210.818080pt;}
._24_c00412{width:254.597200pt;}
._2d_c00412{width:330.715264pt;}
._25_c00412{width:333.035868pt;}
._2b_c00412{width:343.259960pt;}
._10_c00412{width:745.707488pt;}
.fs14_c00412{font-size:13.728176pt;}
.fs35_c00412{font-size:14.608000pt;}
.fs8_c00412{font-size:19.712000pt;}
.fs27_c00412{font-size:20.064000pt;}
.fs30_c00412{font-size:21.542576pt;}
.fs15_c00412{font-size:22.176000pt;}
.fs29_c00412{font-size:23.056000pt;}
.fs38_c00412{font-size:23.936000pt;}
.fs32_c00412{font-size:24.816000pt;}
.fs2c_c00412{font-size:25.168000pt;}
.fs37_c00412{font-size:25.344000pt;}
.fs36_c00412{font-size:27.808000pt;}
.fs19_c00412{font-size:27.984000pt;}
.fs18_c00412{font-size:28.864000pt;}
.fs34_c00412{font-size:29.216000pt;}
.fs33_c00412{font-size:29.392176pt;}
.fs0_c00412{font-size:29.568000pt;}
.fs3e_c00412{font-size:29.744000pt;}
.fs1_c00412{font-size:30.272176pt;}
.fs7_c00412{font-size:31.680000pt;}
.fs1d_c00412{font-size:32.736000pt;}
.fs2b_c00412{font-size:33.088000pt;}
.fs40_c00412{font-size:34.214576pt;}
.fs4_c00412{font-size:35.200000pt;}
.fs3f_c00412{font-size:35.904000pt;}
.fs22_c00412{font-size:36.256000pt;}
.fs24_c00412{font-size:38.192176pt;}
.fs12_c00412{font-size:38.720000pt;}
.fs2a_c00412{font-size:39.248000pt;}
.fs2_c00412{font-size:40.128000pt;}
.fsd_c00412{font-size:40.832176pt;}
.fsb_c00412{font-size:41.184000pt;}
.fs39_c00412{font-size:41.536000pt;}
.fs2f_c00412{font-size:42.416000pt;}
.fs25_c00412{font-size:42.944000pt;}
.fs3a_c00412{font-size:43.084976pt;}
.fs1e_c00412{font-size:43.296000pt;}
.fsc_c00412{font-size:43.648000pt;}
.fs2d_c00412{font-size:44.176000pt;}
.fsa_c00412{font-size:44.352176pt;}
.fs13_c00412{font-size:48.224000pt;}
.fs17_c00412{font-size:50.160000pt;}
.fs20_c00412{font-size:50.688176pt;}
.fs11_c00412{font-size:52.096000pt;}
.fs28_c00412{font-size:52.800000pt;}
.fs31_c00412{font-size:53.504000pt;}
.fs1c_c00412{font-size:54.912176pt;}
.fs1a_c00412{font-size:55.792176pt;}
.fs9_c00412{font-size:56.496000pt;}
.fs23_c00412{font-size:57.200000pt;}
.fs10_c00412{font-size:57.728000pt;}
.fs21_c00412{font-size:58.080000pt;}
.fse_c00412{font-size:59.136000pt;}
.fs5_c00412{font-size:59.840000pt;}
.fs26_c00412{font-size:60.016000pt;}
.fsf_c00412{font-size:60.544176pt;}
.fs6_c00412{font-size:61.952176pt;}
.fs2e_c00412{font-size:62.304176pt;}
.fs1f_c00412{font-size:63.712176pt;}
.fs1b_c00412{font-size:64.768000pt;}
.fs3_c00412{font-size:65.824176pt;}
.fs3c_c00412{font-size:66.176000pt;}
.fs3d_c00412{font-size:66.352176pt;}
.fs3b_c00412{font-size:69.696000pt;}
.fs16_c00412{font-size:87.472176pt;}
.y0_c00412{bottom:0.000000pt;}
.y1_c00412{bottom:68.000000pt;}
.y35_c00412{bottom:132.022920pt;}
.y38_c00412{bottom:132.660920pt;}
.y3a_c00412{bottom:132.977720pt;}
.y3b_c00412{bottom:136.462520pt;}
.y39_c00412{bottom:137.096120pt;}
.y37_c00412{bottom:141.848120pt;}
.y34_c00412{bottom:160.539320pt;}
.y33_c00412{bottom:160.856120pt;}
.y36_c00412{bottom:170.038920pt;}
.y32_c00412{bottom:191.902520pt;}
.y31_c00412{bottom:220.414520pt;}
.y2a_c00412{bottom:248.926520pt;}
.y2e_c00412{bottom:249.238920pt;}
.y2d_c00412{bottom:251.460920pt;}
.y2c_c00412{bottom:252.094520pt;}
.y30_c00412{bottom:254.945720pt;}
.y2f_c00412{bottom:256.525320pt;}
.y29_c00412{bottom:256.846520pt;}
.y2b_c00412{bottom:257.792520pt;}
.y26_c00412{bottom:305.946120pt;}
.y27_c00412{bottom:306.267320pt;}
.y28_c00412{bottom:306.584120pt;}
.y25_c00412{bottom:334.779320pt;}
.y24_c00412{bottom:363.924920pt;}
.y21_c00412{bottom:392.120120pt;}
.y23_c00412{bottom:392.753720pt;}
.y22_c00412{bottom:395.917320pt;}
.y20_c00412{bottom:421.265720pt;}
.y1f_c00412{bottom:427.597320pt;}
.y1e_c00412{bottom:450.723720pt;}
.y1d_c00412{bottom:479.240120pt;}
.y1c_c00412{bottom:508.385720pt;}
.y1b_c00412{bottom:537.526920pt;}
.y1a_c00412{bottom:566.989320pt;}
.y19_c00412{bottom:593.600520pt;}
.y17_c00412{bottom:595.505720pt;}
.y18_c00412{bottom:595.818120pt;}
.y15_c00412{bottom:620.532920pt;}
.y16_c00412{bottom:621.800120pt;}
.y13_c00412{bottom:624.646920pt;}
.y14_c00412{bottom:624.963720pt;}
.y11_c00412{bottom:648.723720pt;}
.y12_c00412{bottom:650.307720pt;}
.ye_c00412{bottom:653.163320pt;}
.y10_c00412{bottom:653.480120pt;}
.yf_c00412{bottom:653.792520pt;}
.yd_c00412{bottom:682.308920pt;}
.yc_c00412{bottom:711.454520pt;}
.yb_c00412{bottom:739.962120pt;}
.y4_c00412{bottom:745.668920pt;}
.y3_c00412{bottom:755.802120pt;}
.ya_c00412{bottom:762.138120pt;}
.y9_c00412{bottom:769.107720pt;}
.y8_c00412{bottom:815.681720pt;}
.y7_c00412{bottom:826.136120pt;}
.y6_c00412{bottom:833.105720pt;}
.y5_c00412{bottom:959.187720pt;}
.y2_c00412{bottom:971.864120pt;}
.h16_c00412{height:14.318059pt;}
.h36_c00412{height:14.347356pt;}
.ha_c00412{height:20.559000pt;}
.h9_c00412{height:21.098880pt;}
.h17_c00412{height:21.764531pt;}
.h2d_c00412{height:22.616945pt;}
.h2b_c00412{height:22.628203pt;}
.h46_c00412{height:22.786908pt;}
.h2e_c00412{height:23.236125pt;}
.h38_c00412{height:25.009875pt;}
.h3b_c00412{height:26.433000pt;}
.h1b_c00412{height:28.202625pt;}
.h3f_c00412{height:28.694594pt;}
.hb_c00412{height:29.538549pt;}
.h44_c00412{height:29.710485pt;}
.h43_c00412{height:29.976375pt;}
.h3d_c00412{height:30.104250pt;}
.h3a_c00412{height:30.471375pt;}
.h39_c00412{height:30.655121pt;}
.h2_c00412{height:30.838500pt;}
.h30_c00412{height:31.318238pt;}
.h3_c00412{height:31.572934pt;}
.h20_c00412{height:32.128594pt;}
.h2f_c00412{height:33.346500pt;}
.h24_c00412{height:33.758325pt;}
.h33_c00412{height:34.509750pt;}
.h6_c00412{height:34.546875pt;}
.h45_c00412{height:37.446750pt;}
.h26_c00412{height:37.483532pt;}
.h12_c00412{height:38.001563pt;}
.h29_c00412{height:40.383750pt;}
.h2c_c00412{height:40.934438pt;}
.h35_c00412{height:41.628984pt;}
.h4_c00412{height:41.852250pt;}
.h27_c00412{height:42.147188pt;}
.h22_c00412{height:42.492656pt;}
.he_c00412{height:42.586684pt;}
.h21_c00412{height:42.838125pt;}
.hc_c00412{height:42.953625pt;}
.h3e_c00412{height:43.320750pt;}
.h31_c00412{height:43.356328pt;}
.h32_c00412{height:44.698677pt;}
.h3c_c00412{height:44.789250pt;}
.hd_c00412{height:45.523500pt;}
.h14_c00412{height:50.296125pt;}
.h19_c00412{height:50.551875pt;}
.h11_c00412{height:51.129375pt;}
.h1f_c00412{height:53.893298pt;}
.h1a_c00412{height:54.334500pt;}
.h2a_c00412{height:55.068750pt;}
.h37_c00412{height:55.803000pt;}
.h15_c00412{height:56.656875pt;}
.h1e_c00412{height:58.189496pt;}
.h7_c00412{height:58.729688pt;}
.h28_c00412{height:58.902422pt;}
.h13_c00412{height:58.923563pt;}
.h10_c00412{height:59.420798pt;}
.hf_c00412{height:59.598000pt;}
.h1c_c00412{height:60.208500pt;}
.h25_c00412{height:60.575625pt;}
.h8_c00412{height:60.802673pt;}
.h34_c00412{height:61.148141pt;}
.h23_c00412{height:62.530016pt;}
.h1d_c00412{height:63.566250pt;}
.h5_c00412{height:64.602829pt;}
.h41_c00412{height:64.948125pt;}
.h42_c00412{height:65.121032pt;}
.h40_c00412{height:68.402813pt;}
.h18_c00412{height:85.806446pt;}
.h1_c00412{height:986.666667pt;}
.h0_c00412{height:1122.666667pt;}
.w1_c00412{width:689.333333pt;}
.w0_c00412{width:793.333333pt;}
.x0_c00412{left:0.000000pt;}
.x4_c00412{left:2.909853pt;}
.x2_c00412{left:10.961853pt;}
.x3_c00412{left:21.345853pt;}
.x1_c00412{left:52.000000pt;}
.x44_c00412{left:69.327853pt;}
.x8_c00412{left:71.250653pt;}
.x65_c00412{left:72.297853pt;}
.x72_c00412{left:74.093053pt;}
.x7a_c00412{left:80.618253pt;}
.x75_c00412{left:81.969053pt;}
.x9_c00412{left:90.439053pt;}
.x4c_c00412{left:99.230253pt;}
.x6f_c00412{left:100.528253pt;}
.x59_c00412{left:107.929053pt;}
.x76_c00412{left:109.425053pt;}
.xa_c00412{left:110.415053pt;}
.x73_c00412{left:112.923053pt;}
.x19_c00412{left:119.043453pt;}
.x97_c00412{left:120.689053pt;}
.x87_c00412{left:125.366253pt;}
.x5e_c00412{left:127.619053pt;}
.x55_c00412{left:128.859853pt;}
.x4d_c00412{left:130.008253pt;}
.x7c_c00412{left:136.207853pt;}
.x4e_c00412{left:138.016253pt;}
.xb_c00412{left:139.397853pt;}
.x1a_c00412{left:148.259453pt;}
.x4f_c00412{left:149.346253pt;}
.x3a_c00412{left:159.087853pt;}
.x83_c00412{left:160.104253pt;}
.x7b_c00412{left:162.238253pt;}
.x57_c00412{left:168.112253pt;}
.x81_c00412{left:169.234253pt;}
.x77_c00412{left:175.169853pt;}
.x5a_c00412{left:177.092653pt;}
.x2f_c00412{left:178.808653pt;}
.xc_c00412{left:188.330253pt;}
.x1b_c00412{left:190.811853pt;}
.x45_c00412{left:192.593853pt;}
.x1c_c00412{left:197.627453pt;}
.x2b_c00412{left:201.609453pt;}
.xd_c00412{left:207.866253pt;}
.x98_c00412{left:209.093853pt;}
.x84_c00412{left:210.831853pt;}
.x82_c00412{left:211.799853pt;}
.x6a_c00412{left:214.457453pt;}
.x46_c00412{left:216.327453pt;}
.x5f_c00412{left:217.792653pt;}
.x74_c00412{left:218.993853pt;}
.x80_c00412{left:220.485453pt;}
.x85_c00412{left:223.033053pt;}
.x50_c00412{left:227.270253pt;}
.x2c_c00412{left:228.770653pt;}
.x1d_c00412{left:237.227453pt;}
.xe_c00412{left:238.367053pt;}
.x2d_c00412{left:240.685853pt;}
.x6b_c00412{left:246.643453pt;}
.x1e_c00412{left:247.585053pt;}
.x86_c00412{left:249.837853pt;}
.x78_c00412{left:251.210653pt;}
.xf_c00412{left:257.128653pt;}
.x10_c00412{left:266.914253pt;}
.x30_c00412{left:276.572253pt;}
.x93_c00412{left:278.314653pt;}
.x79_c00412{left:279.410253pt;}
.x1f_c00412{left:285.108253pt;}
.x11_c00412{left:286.687853pt;}
.x88_c00412{left:287.743853pt;}
.x51_c00412{left:291.651053pt;}
.x47_c00412{left:296.310653pt;}
.x3b_c00412{left:297.265453pt;}
.x94_c00412{left:301.894253pt;}
.x12_c00412{left:307.147853pt;}
.x60_c00412{left:308.630653pt;}
.x20_c00412{left:316.154653pt;}
.x66_c00412{left:317.250253pt;}
.x18_c00412{left:323.999853pt;}
.x3c_c00412{left:325.623453pt;}
.x13_c00412{left:327.242653pt;}
.x14_c00412{left:336.117453pt;}
.x67_c00412{left:337.600253pt;}
.x2e_c00412{left:342.026653pt;}
.x48_c00412{left:345.586253pt;}
.x21_c00412{left:346.567453pt;}
.x31_c00412{left:355.728253pt;}
.x6c_c00412{left:356.806253pt;}
.x8b_c00412{left:363.278653pt;}
.x22_c00412{left:365.351053pt;}
.x95_c00412{left:366.257453pt;}
.x52_c00412{left:374.093853pt;}
.x15_c00412{left:375.717453pt;}
.x7_c00412{left:378.423453pt;}
.x53_c00412{left:382.612253pt;}
.x32_c00412{left:384.825453pt;}
.x89_c00412{left:387.949453pt;}
.x33_c00412{left:394.826653pt;}
.x23_c00412{left:403.556253pt;}
.x16_c00412{left:405.175453pt;}
.x8a_c00412{left:406.763853pt;}
.x24_c00412{left:413.407853pt;}
.x3d_c00412{left:414.837853pt;}
.x17_c00412{left:416.646253pt;}
.x5b_c00412{left:423.994253pt;}
.x34_c00412{left:424.927053pt;}
.x5d_c00412{left:427.602253pt;}
.x25_c00412{left:433.652253pt;}
.x6d_c00412{left:435.610253pt;}
.x58_c00412{left:444.256253pt;}
.x7d_c00412{left:447.195453pt;}
.x61_c00412{left:454.464253pt;}
.x91_c00412{left:456.083453pt;}
.x35_c00412{left:463.603053pt;}
.x70_c00412{left:465.134253pt;}
.x3e_c00412{left:468.531053pt;}
.x26_c00412{left:473.577853pt;}
.x7e_c00412{left:474.677853pt;}
.x96_c00412{left:476.842653pt;}
.x49_c00412{left:484.124653pt;}
.x36_c00412{left:494.024653pt;}
.x9b_c00412{left:496.633853pt;}
.x54_c00412{left:502.833453pt;}
.x27_c00412{left:512.522253pt;}
.x9a_c00412{left:513.604653pt;}
.x3f_c00412{left:522.351853pt;}
.x28_c00412{left:532.317853pt;}
.x71_c00412{left:543.137453pt;}
.x90_c00412{left:544.171453pt;}
.x8c_c00412{left:545.729053pt;}
.x8d_c00412{left:548.589053pt;}
.x29_c00412{left:552.311453pt;}
.x40_c00412{left:562.083853pt;}
.x41_c00412{left:571.433853pt;}
.x9c_c00412{left:573.479853pt;}
.x68_c00412{left:574.430253pt;}
.x5c_c00412{left:581.153453pt;}
.x2a_c00412{left:582.081853pt;}
.x99_c00412{left:584.871453pt;}
.x4a_c00412{left:591.427453pt;}
.x62_c00412{left:592.509853pt;}
.x9d_c00412{left:595.119053pt;}
.x42_c00412{left:600.817053pt;}
.x5_c00412{left:601.710253pt;}
.x8e_c00412{left:604.653853pt;}
.x37_c00412{left:611.504653pt;}
.x63_c00412{left:613.383453pt;}
.x56_c00412{left:616.089453pt;}
.x6_c00412{left:620.916253pt;}
.x6e_c00412{left:623.521053pt;}
.x64_c00412{left:631.177053pt;}
.x8f_c00412{left:633.443053pt;}
.x92_c00412{left:638.076253pt;}
.x43_c00412{left:640.667853pt;}
.x38_c00412{left:650.233453pt;}
.x7f_c00412{left:651.175053pt;}
.x4b_c00412{left:660.331453pt;}
.x39_c00412{left:662.487453pt;}
.x69_c00412{left:663.547853pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f09cd57e2d9a6b7dfb1de6d7.woff2')format("woff");}.ff1_c00413{font-family:ff1_c00413;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00413;src:url('chunks/assets/font_d15236d36a332235789b5016.woff2')format("woff");}.ff2_c00413{font-family:ff2_c00413;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00413;src:url('chunks/assets/font_b9f79b01ed22e744b9c3bbbe.woff2')format("woff");}.ff3_c00413{font-family:ff3_c00413;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00413;src:url('chunks/assets/font_185c0269394bdbc3044faee7.woff2')format("woff");}.ff4_c00413{font-family:ff4_c00413;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00413;src:url('chunks/assets/font_a834b642d4dbc7a10eb90de7.woff2')format("woff");}.ff5_c00413{font-family:ff5_c00413;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00413;src:url('chunks/assets/font_f24402fc1db758d02637680e.woff2')format("woff");}.ff6_c00413{font-family:ff6_c00413;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m47_c00413{transform:matrix(0.035716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.035716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.035716,0.000000,0.000000,0.250000,0,0);}
.m57_c00413{transform:matrix(0.070376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070376,0.000000,0.000000,0.250000,0,0);}
.m27_c00413{transform:matrix(0.079862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.079862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.079862,0.000000,0.000000,0.250000,0,0);}
.m49_c00413{transform:matrix(0.080358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080358,0.000000,0.000000,0.250000,0,0);}
.m46_c00413{transform:matrix(0.084823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084823,0.000000,0.000000,0.250000,0,0);}
.mf_c00413{transform:matrix(0.085448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085448,0.000000,0.000000,0.250000,0,0);}
.ma9_c00413{transform:matrix(0.087122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087122,0.000000,0.000000,0.250000,0,0);}
.m4a_c00413{transform:matrix(0.089287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089287,0.000000,0.000000,0.250000,0,0);}
.mb_c00413{transform:matrix(0.093761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093761,0.000000,0.000000,0.250000,0,0);}
.m25_c00413{transform:matrix(0.097222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097222,0.000000,0.000000,0.250000,0,0);}
.m111_c00413{transform:matrix(0.097426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097426,0.000000,0.000000,0.250000,0,0);}
.m48_c00413{transform:matrix(0.098216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098216,0.000000,0.000000,0.250000,0,0);}
.m10f_c00413{transform:matrix(0.099264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099264,0.000000,0.000000,0.250000,0,0);}
.m45_c00413{transform:matrix(0.102680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102680,0.000000,0.000000,0.250000,0,0);}
.m118_c00413{transform:matrix(0.109074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109074,0.000000,0.000000,0.250000,0,0);}
.mc2_c00413{transform:matrix(0.111167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111167,0.000000,0.000000,0.250000,0,0);}
.me2_c00413{transform:matrix(0.119048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119048,0.000000,0.000000,0.250000,0,0);}
.m24_c00413{transform:matrix(0.119792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119792,0.000000,0.000000,0.250000,0,0);}
.mb4_c00413{transform:matrix(0.124029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124029,0.000000,0.000000,0.250000,0,0);}
.m98_c00413{transform:matrix(0.127960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127960,0.000000,0.000000,0.250000,0,0);}
.m22_c00413{transform:matrix(0.137254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137254,0.000000,0.000000,0.250000,0,0);}
.me8_c00413{transform:matrix(0.141940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141940,0.000000,0.000000,0.250000,0,0);}
.m15_c00413{transform:matrix(0.144271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144271,0.000000,0.000000,0.250000,0,0);}
.mc1_c00413{transform:matrix(0.145276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145276,0.000000,0.000000,0.250000,0,0);}
.m29_c00413{transform:matrix(0.145682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145682,0.000000,0.000000,0.250000,0,0);}
.md1_c00413{transform:matrix(0.145934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145934,0.000000,0.000000,0.250000,0,0);}
.m110_c00413{transform:matrix(0.147059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147059,0.000000,0.000000,0.250000,0,0);}
.m9e_c00413{transform:matrix(0.148711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148711,0.000000,0.000000,0.250000,0,0);}
.m8f_c00413{transform:matrix(0.148920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148920,0.000000,0.000000,0.250000,0,0);}
.mbd_c00413{transform:matrix(0.149353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149353,0.000000,0.000000,0.250000,0,0);}
.m114_c00413{transform:matrix(0.151042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151042,0.000000,0.000000,0.250000,0,0);}
.me_c00413{transform:matrix(0.151389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151389,0.000000,0.000000,0.250000,0,0);}
.m2e_c00413{transform:matrix(0.155173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155173,0.000000,0.000000,0.250000,0,0);}
.mb7_c00413{transform:matrix(0.158089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158089,0.000000,0.000000,0.250000,0,0);}
.m10e_c00413{transform:matrix(0.161764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161764,0.000000,0.000000,0.250000,0,0);}
.m134_c00413{transform:matrix(0.161815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161815,0.000000,0.000000,0.250000,0,0);}
.mfe_c00413{transform:matrix(0.161989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161989,0.000000,0.000000,0.250000,0,0);}
.mb6_c00413{transform:matrix(0.169118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169118,0.000000,0.000000,0.250000,0,0);}
.m23_c00413{transform:matrix(0.172793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172793,0.000000,0.000000,0.250000,0,0);}
.ma7_c00413{transform:matrix(0.173297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173297,0.000000,0.000000,0.250000,0,0);}
.m21_c00413{transform:matrix(0.176471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176471,0.000000,0.000000,0.250000,0,0);}
.m5b_c00413{transform:matrix(0.178360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178360,0.000000,0.000000,0.250000,0,0);}
.m28_c00413{transform:matrix(0.178995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178995,0.000000,0.000000,0.250000,0,0);}
.m11a_c00413{transform:matrix(0.179053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179053,0.000000,0.000000,0.250000,0,0);}
.m74_c00413{transform:matrix(0.179296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179296,0.000000,0.000000,0.250000,0,0);}
.m33_c00413{transform:matrix(0.181035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181035,0.000000,0.000000,0.250000,0,0);}
.m42_c00413{transform:matrix(0.181691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181691,0.000000,0.000000,0.250000,0,0);}
.m5f_c00413{transform:matrix(0.181819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181819,0.000000,0.000000,0.250000,0,0);}
.m13_c00413{transform:matrix(0.183794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183794,0.000000,0.000000,0.250000,0,0);}
.m72_c00413{transform:matrix(0.184074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184074,0.000000,0.000000,0.250000,0,0);}
.m5d_c00413{transform:matrix(0.187808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187808,0.000000,0.000000,0.250000,0,0);}
.m8c_c00413{transform:matrix(0.188798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188798,0.000000,0.000000,0.250000,0,0);}
.maa_c00413{transform:matrix(0.189394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189394,0.000000,0.000000,0.250000,0,0);}
.m87_c00413{transform:matrix(0.191411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191411,0.000000,0.000000,0.250000,0,0);}
.me3_c00413{transform:matrix(0.191601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191601,0.000000,0.000000,0.250000,0,0);}
.m5c_c00413{transform:matrix(0.191973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191973,0.000000,0.000000,0.250000,0,0);}
.mfc_c00413{transform:matrix(0.192345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192345,0.000000,0.000000,0.250000,0,0);}
.m43_c00413{transform:matrix(0.194770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194770,0.000000,0.000000,0.250000,0,0);}
.m12d_c00413{transform:matrix(0.194935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194935,0.000000,0.000000,0.250000,0,0);}
.m55_c00413{transform:matrix(0.195068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195068,0.000000,0.000000,0.250000,0,0);}
.m135_c00413{transform:matrix(0.197982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197982,0.000000,0.000000,0.250000,0,0);}
.m53_c00413{transform:matrix(0.204974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204974,0.000000,0.000000,0.250000,0,0);}
.mca_c00413{transform:matrix(0.207524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207524,0.000000,0.000000,0.250000,0,0);}
.m112_c00413{transform:matrix(0.209559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209559,0.000000,0.000000,0.250000,0,0);}
.md_c00413{transform:matrix(0.216324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216324,0.000000,0.000000,0.250000,0,0);}
.m2f_c00413{transform:matrix(0.219828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219828,0.000000,0.000000,0.250000,0,0);}
.mb2_c00413{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m95_c00413{transform:matrix(0.222598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222598,0.000000,0.000000,0.250000,0,0);}
.mff_c00413{transform:matrix(0.223974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223974,0.000000,0.000000,0.250000,0,0);}
.m20_c00413{transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);}
.m71_c00413{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m4_c00413{transform:matrix(0.227538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227538,0.000000,0.000000,0.250000,0,0);}
.m2_c00413{transform:matrix(0.229160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229160,0.000000,0.000000,0.250000,0,0);}
.m136_c00413{transform:matrix(0.230447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230447,0.000000,0.000000,0.250000,0,0);}
.m5_c00413{transform:matrix(0.230574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230574,0.000000,0.000000,0.250000,0,0);}
.m2c_c00413{transform:matrix(0.232759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232759,0.000000,0.000000,0.250000,0,0);}
.m6a_c00413{transform:matrix(0.233451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233451,0.000000,0.000000,0.250000,0,0);}
.m67_c00413{transform:matrix(0.235396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235396,0.000000,0.000000,0.250000,0,0);}
.m97_c00413{transform:matrix(0.235762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235762,0.000000,0.000000,0.250000,0,0);}
.m2b_c00413{transform:matrix(0.236744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236744,0.000000,0.000000,0.250000,0,0);}
.m5a_c00413{transform:matrix(0.238417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238417,0.000000,0.000000,0.250000,0,0);}
.m64_c00413{transform:matrix(0.239924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239924,0.000000,0.000000,0.250000,0,0);}
.m2d_c00413{transform:matrix(0.241378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241378,0.000000,0.000000,0.250000,0,0);}
.mfb_c00413{transform:matrix(0.244506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244506,0.000000,0.000000,0.250000,0,0);}
.m60_c00413{transform:matrix(0.245831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245831,0.000000,0.000000,0.250000,0,0);}
.m4b_c00413{transform:matrix(0.245915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245915,0.000000,0.000000,0.250000,0,0);}
.m73_c00413{transform:matrix(0.246423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246423,0.000000,0.000000,0.250000,0,0);}
.m11f_c00413{transform:matrix(0.247743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247743,0.000000,0.000000,0.250000,0,0);}
.m10d_c00413{transform:matrix(0.248783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248783,0.000000,0.000000,0.250000,0,0);}
.m0_c00413{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m11e_c00413{transform:matrix(0.250519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250519,0.000000,0.000000,0.250000,0,0);}
.m63_c00413{transform:matrix(0.253104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253104,0.000000,0.000000,0.250000,0,0);}
.m59_c00413{transform:matrix(0.253787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253787,0.000000,0.000000,0.250000,0,0);}
.mb8_c00413{transform:matrix(0.253812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253812,0.000000,0.000000,0.250000,0,0);}
.m5e_c00413{transform:matrix(0.254095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254095,0.000000,0.000000,0.250000,0,0);}
.m32_c00413{transform:matrix(0.254310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254310,0.000000,0.000000,0.250000,0,0);}
.m3d_c00413{transform:matrix(0.255605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255605,0.000000,0.000000,0.250000,0,0);}
.m88_c00413{transform:matrix(0.257714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257714,0.000000,0.000000,0.250000,0,0);}
.md3_c00413{transform:matrix(0.258359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258359,0.000000,0.000000,0.250000,0,0);}
.mcf_c00413{transform:matrix(0.258601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258601,0.000000,0.000000,0.250000,0,0);}
.m4e_c00413{transform:matrix(0.260690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260690,0.000000,0.000000,0.250000,0,0);}
.m138_c00413{transform:matrix(0.264455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264455,0.000000,0.000000,0.250000,0,0);}
.mc6_c00413{transform:matrix(0.265590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265590,0.000000,0.000000,0.250000,0,0);}
.me1_c00413{transform:matrix(0.265645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265645,0.000000,0.000000,0.250000,0,0);}
.m11d_c00413{transform:matrix(0.266615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266615,0.000000,0.000000,0.250000,0,0);}
.m12a_c00413{transform:matrix(0.266722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266722,0.000000,0.000000,0.250000,0,0);}
.m54_c00413{transform:matrix(0.267398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267398,0.000000,0.000000,0.250000,0,0);}
.m83_c00413{transform:matrix(0.268702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268702,0.000000,0.000000,0.250000,0,0);}
.md6_c00413{transform:matrix(0.268705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268705,0.000000,0.000000,0.250000,0,0);}
.m61_c00413{transform:matrix(0.270535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270535,0.000000,0.000000,0.250000,0,0);}
.mec_c00413{transform:matrix(0.270592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270592,0.000000,0.000000,0.250000,0,0);}
.ma4_c00413{transform:matrix(0.271105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271105,0.000000,0.000000,0.250000,0,0);}
.me0_c00413{transform:matrix(0.271223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271223,0.000000,0.000000,0.250000,0,0);}
.m41_c00413{transform:matrix(0.274501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274501,0.000000,0.000000,0.250000,0,0);}
.m50_c00413{transform:matrix(0.277499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277499,0.000000,0.000000,0.250000,0,0);}
.m6b_c00413{transform:matrix(0.278185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278185,0.000000,0.000000,0.250000,0,0);}
.m18_c00413{transform:matrix(0.278472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278472,0.000000,0.000000,0.250000,0,0);}
.m56_c00413{transform:matrix(0.279053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279053,0.000000,0.000000,0.250000,0,0);}
.m44_c00413{transform:matrix(0.280160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280160,0.000000,0.000000,0.250000,0,0);}
.m37_c00413{transform:matrix(0.280290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280290,0.000000,0.000000,0.250000,0,0);}
.m9c_c00413{transform:matrix(0.280987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280987,0.000000,0.000000,0.250000,0,0);}
.m76_c00413{transform:matrix(0.281002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281002,0.000000,0.000000,0.250000,0,0);}
.mf8_c00413{transform:matrix(0.281290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281290,0.000000,0.000000,0.250000,0,0);}
.m39_c00413{transform:matrix(0.281360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281360,0.000000,0.000000,0.250000,0,0);}
.m8d_c00413{transform:matrix(0.281838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281838,0.000000,0.000000,0.250000,0,0);}
.m132_c00413{transform:matrix(0.282644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282644,0.000000,0.000000,0.250000,0,0);}
.mcc_c00413{transform:matrix(0.283646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283646,0.000000,0.000000,0.250000,0,0);}
.mcd_c00413{transform:matrix(0.283726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283726,0.000000,0.000000,0.250000,0,0);}
.m4f_c00413{transform:matrix(0.284155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284155,0.000000,0.000000,0.250000,0,0);}
.m3_c00413{transform:matrix(0.284713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284713,0.000000,0.000000,0.250000,0,0);}
.m128_c00413{transform:matrix(0.285822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285822,0.000000,0.000000,0.250000,0,0);}
.m31_c00413{transform:matrix(0.286572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286572,0.000000,0.000000,0.250000,0,0);}
.m7b_c00413{transform:matrix(0.286653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286653,0.000000,0.000000,0.250000,0,0);}
.m120_c00413{transform:matrix(0.286841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286841,0.000000,0.000000,0.250000,0,0);}
.m3c_c00413{transform:matrix(0.287290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287290,0.000000,0.000000,0.250000,0,0);}
.m12f_c00413{transform:matrix(0.287297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287297,0.000000,0.000000,0.250000,0,0);}
.m93_c00413{transform:matrix(0.287411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287411,0.000000,0.000000,0.250000,0,0);}
.m8e_c00413{transform:matrix(0.287481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287481,0.000000,0.000000,0.250000,0,0);}
.m75_c00413{transform:matrix(0.288829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288829,0.000000,0.000000,0.250000,0,0);}
.mda_c00413{transform:matrix(0.289070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289070,0.000000,0.000000,0.250000,0,0);}
.m89_c00413{transform:matrix(0.289529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289529,0.000000,0.000000,0.250000,0,0);}
.mf2_c00413{transform:matrix(0.289601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289601,0.000000,0.000000,0.250000,0,0);}
.m94_c00413{transform:matrix(0.290343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290343,0.000000,0.000000,0.250000,0,0);}
.m58_c00413{transform:matrix(0.290866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290866,0.000000,0.000000,0.250000,0,0);}
.m8b_c00413{transform:matrix(0.291019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291019,0.000000,0.000000,0.250000,0,0);}
.m126_c00413{transform:matrix(0.291813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291813,0.000000,0.000000,0.250000,0,0);}
.m1a_c00413{transform:matrix(0.292285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292285,0.000000,0.000000,0.250000,0,0);}
.md5_c00413{transform:matrix(0.292403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292403,0.000000,0.000000,0.250000,0,0);}
.mcb_c00413{transform:matrix(0.292484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292484,0.000000,0.000000,0.250000,0,0);}
.m116_c00413{transform:matrix(0.293500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293500,0.000000,0.000000,0.250000,0,0);}
.m107_c00413{transform:matrix(0.293579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293579,0.000000,0.000000,0.250000,0,0);}
.ma8_c00413{transform:matrix(0.294235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294235,0.000000,0.000000,0.250000,0,0);}
.m103_c00413{transform:matrix(0.294326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294326,0.000000,0.000000,0.250000,0,0);}
.mdd_c00413{transform:matrix(0.295586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295586,0.000000,0.000000,0.250000,0,0);}
.m130_c00413{transform:matrix(0.295664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295664,0.000000,0.000000,0.250000,0,0);}
.m1f_c00413{transform:matrix(0.296216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296216,0.000000,0.000000,0.250000,0,0);}
.mb9_c00413{transform:matrix(0.296357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296357,0.000000,0.000000,0.250000,0,0);}
.mdb_c00413{transform:matrix(0.296529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296529,0.000000,0.000000,0.250000,0,0);}
.m1c_c00413{transform:matrix(0.296837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296837,0.000000,0.000000,0.250000,0,0);}
.md2_c00413{transform:matrix(0.296916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296916,0.000000,0.000000,0.250000,0,0);}
.m1_c00413{transform:matrix(0.297851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297851,0.000000,0.000000,0.250000,0,0);}
.m79_c00413{transform:matrix(0.298912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298912,0.000000,0.000000,0.250000,0,0);}
.mb3_c00413{transform:matrix(0.299489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299489,0.000000,0.000000,0.250000,0,0);}
.ma5_c00413{transform:matrix(0.299582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299582,0.000000,0.000000,0.250000,0,0);}
.ma2_c00413{transform:matrix(0.300252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300252,0.000000,0.000000,0.250000,0,0);}
.m117_c00413{transform:matrix(0.300331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300331,0.000000,0.000000,0.250000,0,0);}
.m9a_c00413{transform:matrix(0.300408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300408,0.000000,0.000000,0.250000,0,0);}
.m3e_c00413{transform:matrix(0.300442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300442,0.000000,0.000000,0.250000,0,0);}
.m11_c00413{transform:matrix(0.300951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300951,0.000000,0.000000,0.250000,0,0);}
.m81_c00413{transform:matrix(0.301413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301413,0.000000,0.000000,0.250000,0,0);}
.m7f_c00413{transform:matrix(0.301648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301648,0.000000,0.000000,0.250000,0,0);}
.m86_c00413{transform:matrix(0.302120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302120,0.000000,0.000000,0.250000,0,0);}
.m101_c00413{transform:matrix(0.302459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302459,0.000000,0.000000,0.250000,0,0);}
.mc8_c00413{transform:matrix(0.302634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302634,0.000000,0.000000,0.250000,0,0);}
.mf7_c00413{transform:matrix(0.302851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302851,0.000000,0.000000,0.250000,0,0);}
.mfa_c00413{transform:matrix(0.302856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302856,0.000000,0.000000,0.250000,0,0);}
.m16_c00413{transform:matrix(0.303709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303709,0.000000,0.000000,0.250000,0,0);}
.mef_c00413{transform:matrix(0.304460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304460,0.000000,0.000000,0.250000,0,0);}
.me4_c00413{transform:matrix(0.304743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304743,0.000000,0.000000,0.250000,0,0);}
.m26_c00413{transform:matrix(0.305167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305167,0.000000,0.000000,0.250000,0,0);}
.mb0_c00413{transform:matrix(0.306905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306905,0.000000,0.000000,0.250000,0,0);}
.m85_c00413{transform:matrix(0.306969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306969,0.000000,0.000000,0.250000,0,0);}
.m77_c00413{transform:matrix(0.307405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307405,0.000000,0.000000,0.250000,0,0);}
.m12e_c00413{transform:matrix(0.308401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308401,0.000000,0.000000,0.250000,0,0);}
.mee_c00413{transform:matrix(0.308868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308868,0.000000,0.000000,0.250000,0,0);}
.m8_c00413{transform:matrix(0.309167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309167,0.000000,0.000000,0.250000,0,0);}
.m69_c00413{transform:matrix(0.309692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309692,0.000000,0.000000,0.250000,0,0);}
.m7e_c00413{transform:matrix(0.310858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310858,0.000000,0.000000,0.250000,0,0);}
.m1d_c00413{transform:matrix(0.311182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311182,0.000000,0.000000,0.250000,0,0);}
.mde_c00413{transform:matrix(0.311348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311348,0.000000,0.000000,0.250000,0,0);}
.m129_c00413{transform:matrix(0.311614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311614,0.000000,0.000000,0.250000,0,0);}
.md7_c00413{transform:matrix(0.312279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312279,0.000000,0.000000,0.250000,0,0);}
.m78_c00413{transform:matrix(0.312400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312400,0.000000,0.000000,0.250000,0,0);}
.mf3_c00413{transform:matrix(0.312642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312642,0.000000,0.000000,0.250000,0,0);}
.mf5_c00413{transform:matrix(0.312836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312836,0.000000,0.000000,0.250000,0,0);}
.m3b_c00413{transform:matrix(0.313393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313393,0.000000,0.000000,0.250000,0,0);}
.mac_c00413{transform:matrix(0.313945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313945,0.000000,0.000000,0.250000,0,0);}
.m109_c00413{transform:matrix(0.314354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314354,0.000000,0.000000,0.250000,0,0);}
.mbe_c00413{transform:matrix(0.315369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315369,0.000000,0.000000,0.250000,0,0);}
.m90_c00413{transform:matrix(0.315773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315773,0.000000,0.000000,0.250000,0,0);}
.mf4_c00413{transform:matrix(0.316338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316338,0.000000,0.000000,0.250000,0,0);}
.m66_c00413{transform:matrix(0.316739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316739,0.000000,0.000000,0.250000,0,0);}
.m36_c00413{transform:matrix(0.317053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317053,0.000000,0.000000,0.250000,0,0);}
.ma0_c00413{transform:matrix(0.317286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317286,0.000000,0.000000,0.250000,0,0);}
.m30_c00413{transform:matrix(0.317892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317892,0.000000,0.000000,0.250000,0,0);}
.m131_c00413{transform:matrix(0.318625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318625,0.000000,0.000000,0.250000,0,0);}
.md4_c00413{transform:matrix(0.318654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318654,0.000000,0.000000,0.250000,0,0);}
.m7c_c00413{transform:matrix(0.319473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319473,0.000000,0.000000,0.250000,0,0);}
.m123_c00413{transform:matrix(0.321676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321676,0.000000,0.000000,0.250000,0,0);}
.mc3_c00413{transform:matrix(0.322307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322307,0.000000,0.000000,0.250000,0,0);}
.m19_c00413{transform:matrix(0.322319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322319,0.000000,0.000000,0.250000,0,0);}
.m91_c00413{transform:matrix(0.322449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322449,0.000000,0.000000,0.250000,0,0);}
.mfd_c00413{transform:matrix(0.322573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322573,0.000000,0.000000,0.250000,0,0);}
.ma_c00413{transform:matrix(0.322667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322667,0.000000,0.000000,0.250000,0,0);}
.m124_c00413{transform:matrix(0.324140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324140,0.000000,0.000000,0.250000,0,0);}
.med_c00413{transform:matrix(0.324238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324238,0.000000,0.000000,0.250000,0,0);}
.me7_c00413{transform:matrix(0.325254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325254,0.000000,0.000000,0.250000,0,0);}
.md9_c00413{transform:matrix(0.325481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325481,0.000000,0.000000,0.250000,0,0);}
.m70_c00413{transform:matrix(0.326775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326775,0.000000,0.000000,0.250000,0,0);}
.m99_c00413{transform:matrix(0.326943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326943,0.000000,0.000000,0.250000,0,0);}
.m17_c00413{transform:matrix(0.327888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327888,0.000000,0.000000,0.250000,0,0);}
.mb1_c00413{transform:matrix(0.328275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328275,0.000000,0.000000,0.250000,0,0);}
.m8a_c00413{transform:matrix(0.328940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328940,0.000000,0.000000,0.250000,0,0);}
.mdc_c00413{transform:matrix(0.330087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330087,0.000000,0.000000,0.250000,0,0);}
.m34_c00413{transform:matrix(0.330160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330160,0.000000,0.000000,0.250000,0,0);}
.m38_c00413{transform:matrix(0.330433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330433,0.000000,0.000000,0.250000,0,0);}
.mf6_c00413{transform:matrix(0.330611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330611,0.000000,0.000000,0.250000,0,0);}
.m11b_c00413{transform:matrix(0.331674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331674,0.000000,0.000000,0.250000,0,0);}
.mbc_c00413{transform:matrix(0.333264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333264,0.000000,0.000000,0.250000,0,0);}
.md0_c00413{transform:matrix(0.333723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333723,0.000000,0.000000,0.250000,0,0);}
.m12c_c00413{transform:matrix(0.333755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333755,0.000000,0.000000,0.250000,0,0);}
.m108_c00413{transform:matrix(0.334243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334243,0.000000,0.000000,0.250000,0,0);}
.m127_c00413{transform:matrix(0.334984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334984,0.000000,0.000000,0.250000,0,0);}
.m113_c00413{transform:matrix(0.336231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336231,0.000000,0.000000,0.250000,0,0);}
.m35_c00413{transform:matrix(0.337579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337579,0.000000,0.000000,0.250000,0,0);}
.ma1_c00413{transform:matrix(0.338482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338482,0.000000,0.000000,0.250000,0,0);}
.m92_c00413{transform:matrix(0.338704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338704,0.000000,0.000000,0.250000,0,0);}
.m119_c00413{transform:matrix(0.340084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340084,0.000000,0.000000,0.250000,0,0);}
.mdf_c00413{transform:matrix(0.340094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340094,0.000000,0.000000,0.250000,0,0);}
.mce_c00413{transform:matrix(0.340173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340173,0.000000,0.000000,0.250000,0,0);}
.m62_c00413{transform:matrix(0.340212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340212,0.000000,0.000000,0.250000,0,0);}
.m7a_c00413{transform:matrix(0.341052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341052,0.000000,0.000000,0.250000,0,0);}
.m115_c00413{transform:matrix(0.341415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341415,0.000000,0.000000,0.250000,0,0);}
.m104_c00413{transform:matrix(0.341446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341446,0.000000,0.000000,0.250000,0,0);}
.mbb_c00413{transform:matrix(0.341472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341472,0.000000,0.000000,0.250000,0,0);}
.m6c_c00413{transform:matrix(0.341530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341530,0.000000,0.000000,0.250000,0,0);}
.m3a_c00413{transform:matrix(0.342389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342389,0.000000,0.000000,0.250000,0,0);}
.m125_c00413{transform:matrix(0.343249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343249,0.000000,0.000000,0.250000,0,0);}
.mc_c00413{transform:matrix(0.343272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343272,0.000000,0.000000,0.250000,0,0);}
.m105_c00413{transform:matrix(0.343526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343526,0.000000,0.000000,0.250000,0,0);}
.m4c_c00413{transform:matrix(0.343748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343748,0.000000,0.000000,0.250000,0,0);}
.m65_c00413{transform:matrix(0.344892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344892,0.000000,0.000000,0.250000,0,0);}
.ma6_c00413{transform:matrix(0.346353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346353,0.000000,0.000000,0.250000,0,0);}
.mab_c00413{transform:matrix(0.346814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346814,0.000000,0.000000,0.250000,0,0);}
.mf1_c00413{transform:matrix(0.347150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347150,0.000000,0.000000,0.250000,0,0);}
.m80_c00413{transform:matrix(0.348017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348017,0.000000,0.000000,0.250000,0,0);}
.m52_c00413{transform:matrix(0.348838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348838,0.000000,0.000000,0.250000,0,0);}
.m12_c00413{transform:matrix(0.350123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350123,0.000000,0.000000,0.250000,0,0);}
.mb5_c00413{transform:matrix(0.351390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351390,0.000000,0.000000,0.250000,0,0);}
.m10b_c00413{transform:matrix(0.352381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352381,0.000000,0.000000,0.250000,0,0);}
.m12b_c00413{transform:matrix(0.352591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352591,0.000000,0.000000,0.250000,0,0);}
.mbf_c00413{transform:matrix(0.352691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352691,0.000000,0.000000,0.250000,0,0);}
.m3f_c00413{transform:matrix(0.353007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353007,0.000000,0.000000,0.250000,0,0);}
.mc0_c00413{transform:matrix(0.353454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353454,0.000000,0.000000,0.250000,0,0);}
.m40_c00413{transform:matrix(0.354428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354428,0.000000,0.000000,0.250000,0,0);}
.mad_c00413{transform:matrix(0.356137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356137,0.000000,0.000000,0.250000,0,0);}
.m9_c00413{transform:matrix(0.356812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356812,0.000000,0.000000,0.250000,0,0);}
.m133_c00413{transform:matrix(0.357664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357664,0.000000,0.000000,0.250000,0,0);}
.m84_c00413{transform:matrix(0.359471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359471,0.000000,0.000000,0.250000,0,0);}
.m10a_c00413{transform:matrix(0.359766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359766,0.000000,0.000000,0.250000,0,0);}
.m121_c00413{transform:matrix(0.359868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359868,0.000000,0.000000,0.250000,0,0);}
.mc4_c00413{transform:matrix(0.360535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360535,0.000000,0.000000,0.250000,0,0);}
.m7d_c00413{transform:matrix(0.361244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361244,0.000000,0.000000,0.250000,0,0);}
.m68_c00413{transform:matrix(0.361390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361390,0.000000,0.000000,0.250000,0,0);}
.me5_c00413{transform:matrix(0.363610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363610,0.000000,0.000000,0.250000,0,0);}
.m6f_c00413{transform:matrix(0.364349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364349,0.000000,0.000000,0.250000,0,0);}
.m82_c00413{transform:matrix(0.364407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364407,0.000000,0.000000,0.250000,0,0);}
.maf_c00413{transform:matrix(0.365135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365135,0.000000,0.000000,0.250000,0,0);}
.m10c_c00413{transform:matrix(0.366376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366376,0.000000,0.000000,0.250000,0,0);}
.m102_c00413{transform:matrix(0.366390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366390,0.000000,0.000000,0.250000,0,0);}
.me9_c00413{transform:matrix(0.368059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368059,0.000000,0.000000,0.250000,0,0);}
.m1b_c00413{transform:matrix(0.368208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368208,0.000000,0.000000,0.250000,0,0);}
.m7_c00413{transform:matrix(0.368295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368295,0.000000,0.000000,0.250000,0,0);}
.m137_c00413{transform:matrix(0.368904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368904,0.000000,0.000000,0.250000,0,0);}
.m1e_c00413{transform:matrix(0.372932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372932,0.000000,0.000000,0.250000,0,0);}
.m122_c00413{transform:matrix(0.374875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374875,0.000000,0.000000,0.250000,0,0);}
.md8_c00413{transform:matrix(0.376368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376368,0.000000,0.000000,0.250000,0,0);}
.m6d_c00413{transform:matrix(0.376858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376858,0.000000,0.000000,0.250000,0,0);}
.me6_c00413{transform:matrix(0.377505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377505,0.000000,0.000000,0.250000,0,0);}
.meb_c00413{transform:matrix(0.378452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378452,0.000000,0.000000,0.250000,0,0);}
.m96_c00413{transform:matrix(0.378962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378962,0.000000,0.000000,0.250000,0,0);}
.mc7_c00413{transform:matrix(0.382000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382000,0.000000,0.000000,0.250000,0,0);}
.m14_c00413{transform:matrix(0.383306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383306,0.000000,0.000000,0.250000,0,0);}
.mf9_c00413{transform:matrix(0.383991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383991,0.000000,0.000000,0.250000,0,0);}
.mea_c00413{transform:matrix(0.386189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386189,0.000000,0.000000,0.250000,0,0);}
.mae_c00413{transform:matrix(0.388507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388507,0.000000,0.000000,0.250000,0,0);}
.mc9_c00413{transform:matrix(0.388564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388564,0.000000,0.000000,0.250000,0,0);}
.m9b_c00413{transform:matrix(0.392964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392964,0.000000,0.000000,0.250000,0,0);}
.m106_c00413{transform:matrix(0.399684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399684,0.000000,0.000000,0.250000,0,0);}
.m6e_c00413{transform:matrix(0.403448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403448,0.000000,0.000000,0.250000,0,0);}
.m51_c00413{transform:matrix(0.405015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405015,0.000000,0.000000,0.250000,0,0);}
.m6_c00413{transform:matrix(0.419070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419070,0.000000,0.000000,0.250000,0,0);}
.m11c_c00413{transform:matrix(0.422203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422203,0.000000,0.000000,0.250000,0,0);}
.mf0_c00413{transform:matrix(0.428074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428074,0.000000,0.000000,0.250000,0,0);}
.mc5_c00413{transform:matrix(0.443499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443499,0.000000,0.000000,0.250000,0,0);}
.mba_c00413{transform:matrix(0.452976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452976,0.000000,0.000000,0.250000,0,0);}
.m9f_c00413{transform:matrix(0.464027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464027,0.000000,0.000000,0.250000,0,0);}
.m9d_c00413{transform:matrix(0.469110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469110,0.000000,0.000000,0.250000,0,0);}
.m4d_c00413{transform:matrix(0.562495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562495,0.000000,0.000000,0.250000,0,0);}
.ma3_c00413{transform:matrix(0.756165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756165,0.000000,0.000000,0.250000,0,0);}
.m100_c00413{transform:matrix(0.779182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779182,0.000000,0.000000,0.250000,0,0);}
.m10_c00413{transform:matrix(0.806181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806181,0.000000,0.000000,0.250000,0,0);}
.m2a_c00413{transform:matrix(1.365510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.365510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.365510,0.000000,0.000000,0.250000,0,0);}
.v7_c00413{vertical-align:-58.449600px;}
.v8_c00413{vertical-align:-24.223716px;}
.v3_c00413{vertical-align:-1.405800px;}
.v0_c00413{vertical-align:0.000000px;}
.v2_c00413{vertical-align:7.147800px;}
.v5_c00413{vertical-align:9.999000px;}
.v1_c00413{vertical-align:24.255000px;}
.v4_c00413{vertical-align:39.916800px;}
.v6_c00413{vertical-align:48.450600px;}
.ls3b_c00413{letter-spacing:-2.993767px;}
.ls13_c00413{letter-spacing:-2.869027px;}
.ls40_c00413{letter-spacing:-2.577967px;}
.ls14_c00413{letter-spacing:-2.439367px;}
.ls43_c00413{letter-spacing:-2.363130px;}
.ls1d_c00413{letter-spacing:-2.342340px;}
.ls60_c00413{letter-spacing:-2.224530px;}
.ls1a_c00413{letter-spacing:-2.217600px;}
.ls18_c00413{letter-spacing:-2.051280px;}
.ls5e_c00413{letter-spacing:-2.042099px;}
.ls42_c00413{letter-spacing:-1.995840px;}
.ls4e_c00413{letter-spacing:-1.829520px;}
.ls4c_c00413{letter-spacing:-1.815667px;}
.ls3e_c00413{letter-spacing:-1.774080px;}
.ls21_c00413{letter-spacing:-1.746367px;}
.ls47_c00413{letter-spacing:-1.690920px;}
.ls4f_c00413{letter-spacing:-1.593900px;}
.ls57_c00413{letter-spacing:-1.552320px;}
.ls15_c00413{letter-spacing:-1.461959px;}
.ls5b_c00413{letter-spacing:-1.288980px;}
.ls59_c00413{letter-spacing:-1.212750px;}
.ls4d_c00413{letter-spacing:-1.184835px;}
.ls55_c00413{letter-spacing:-1.024531px;}
.ls22_c00413{letter-spacing:-0.997924px;}
.ls2c_c00413{letter-spacing:-0.956340px;}
.ls36_c00413{letter-spacing:-0.880110px;}
.ls33_c00413{letter-spacing:-0.838530px;}
.ls2a_c00413{letter-spacing:-0.809780px;}
.ls5f_c00413{letter-spacing:-0.487873px;}
.ls32_c00413{letter-spacing:-0.337808px;}
.ls20_c00413{letter-spacing:-0.257875px;}
.ls45_c00413{letter-spacing:-0.174893px;}
.ls23_c00413{letter-spacing:-0.164657px;}
.ls11_c00413{letter-spacing:0.000000px;}
.ls0_c00413{letter-spacing:0.076666px;}
.lsd_c00413{letter-spacing:0.160301px;}
.ls7_c00413{letter-spacing:0.257876px;}
.ls3_c00413{letter-spacing:0.334542px;}
.ls48_c00413{letter-spacing:0.435610px;}
.lsc_c00413{letter-spacing:0.446056px;}
.ls2_c00413{letter-spacing:0.592418px;}
.ls2f_c00413{letter-spacing:0.910800px;}
.ls34_c00413{letter-spacing:1.098900px;}
.lsf_c00413{letter-spacing:1.177866px;}
.ls31_c00413{letter-spacing:1.197900px;}
.ls37_c00413{letter-spacing:1.257300px;}
.ls39_c00413{letter-spacing:1.306800px;}
.ls2e_c00413{letter-spacing:1.366200px;}
.ls5a_c00413{letter-spacing:1.425600px;}
.ls54_c00413{letter-spacing:1.512407px;}
.ls1b_c00413{letter-spacing:1.584000px;}
.ls1_c00413{letter-spacing:2.114798px;}
.ls58_c00413{letter-spacing:2.217600px;}
.lse_c00413{letter-spacing:2.237248px;}
.ls56_c00413{letter-spacing:2.286900px;}
.ls38_c00413{letter-spacing:2.349626px;}
.ls30_c00413{letter-spacing:2.366100px;}
.ls50_c00413{letter-spacing:2.376000px;}
.ls46_c00413{letter-spacing:2.415600px;}
.ls16_c00413{letter-spacing:2.494810px;}
.ls4_c00413{letter-spacing:2.592699px;}
.ls3f_c00413{letter-spacing:2.752200px;}
.ls29_c00413{letter-spacing:2.808757px;}
.ls41_c00413{letter-spacing:2.851200px;}
.ls17_c00413{letter-spacing:2.930400px;}
.ls49_c00413{letter-spacing:3.088810px;}
.ls28_c00413{letter-spacing:3.138310px;}
.ls10_c00413{letter-spacing:3.185116px;}
.ls3a_c00413{letter-spacing:3.207610px;}
.ls5_c00413{letter-spacing:3.226934px;}
.ls25_c00413{letter-spacing:3.247200px;}
.ls1c_c00413{letter-spacing:3.346200px;}
.ls44_c00413{letter-spacing:3.375900px;}
.ls9_c00413{letter-spacing:3.463901px;}
.ls51_c00413{letter-spacing:3.470871px;}
.ls12_c00413{letter-spacing:3.484810px;}
.ls5c_c00413{letter-spacing:3.534310px;}
.ls26_c00413{letter-spacing:3.564000px;}
.ls27_c00413{letter-spacing:3.682810px;}
.ls52_c00413{letter-spacing:3.880810px;}
.ls5d_c00413{letter-spacing:3.979810px;}
.ls3c_c00413{letter-spacing:4.276810px;}
.lsa_c00413{letter-spacing:8.578548px;}
.ls2d_c00413{letter-spacing:11.404998px;}
.ls35_c00413{letter-spacing:15.681798px;}
.ls8_c00413{letter-spacing:18.260286px;}
.ls3d_c00413{letter-spacing:21.384000px;}
.lsb_c00413{letter-spacing:24.254153px;}
.ls53_c00413{letter-spacing:29.937798px;}
.ls1f_c00413{letter-spacing:34.214598px;}
.ls2b_c00413{letter-spacing:39.916800px;}
.ls24_c00413{letter-spacing:41.342598px;}
.ls4a_c00413{letter-spacing:47.044800px;}
.ls1e_c00413{letter-spacing:48.470598px;}
.ls4b_c00413{letter-spacing:49.896198px;}
.ls19_c00413{letter-spacing:51.321798px;}
.ls6_c00413{letter-spacing:428.019966px;}
.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;}
}
.wsf_c00413{word-spacing:-20.887951px;}
.ws9_c00413{word-spacing:-20.650983px;}
.ws8_c00413{word-spacing:-20.016748px;}
.ws5_c00413{word-spacing:-18.016467px;}
.ws11_c00413{word-spacing:-17.870105px;}
.ws1_c00413{word-spacing:-17.756798px;}
.wsb_c00413{word-spacing:-17.681925px;}
.ws12_c00413{word-spacing:-17.584351px;}
.wsa_c00413{word-spacing:-17.424050px;}
.ws6_c00413{word-spacing:-15.921220px;}
.ws15_c00413{word-spacing:-15.381951px;}
.ws13_c00413{word-spacing:-10.409969px;}
.ws7_c00413{word-spacing:-5.494500px;}
.ws4_c00413{word-spacing:-2.996879px;}
.ws14_c00413{word-spacing:-2.648585px;}
.wsd_c00413{word-spacing:-1.324351px;}
.ws10_c00413{word-spacing:-1.216649px;}
.ws16_c00413{word-spacing:0.000000px;}
.ws2_c00413{word-spacing:0.334426px;}
.wse_c00413{word-spacing:2.927315px;}
.ws0_c00413{word-spacing:5.505077px;}
.ws3_c00413{word-spacing:7.875731px;}
.wsc_c00413{word-spacing:9.269651px;}
._27_c00413{margin-left:-15.333219px;}
._26_c00413{margin-left:-12.998722px;}
._28_c00413{margin-left:-10.454268px;}
._29_c00413{margin-left:-9.081562px;}
._15_c00413{margin-left:-7.428564px;}
._18_c00413{margin-left:-4.572172px;}
._8_c00413{margin-left:-3.028291px;}
._1f_c00413{margin-left:-1.185312px;}
._16_c00413{width:1.230966px;}
._d_c00413{width:3.322330px;}
._14_c00413{width:5.273611px;}
._10_c00413{width:6.760424px;}
._e_c00413{width:8.120239px;}
._0_c00413{width:9.130286px;}
._6_c00413{width:10.524008px;}
._c_c00413{width:11.917928px;}
._20_c00413{width:13.033251px;}
._b_c00413{width:14.427578px;}
._2a_c00413{width:20.142265px;}
._19_c00413{width:21.423600px;}
._21_c00413{width:23.504514px;}
._3_c00413{width:24.672527px;}
._f_c00413{width:26.066436px;}
._4_c00413{width:27.530063px;}
._1c_c00413{width:33.884136px;}
._2_c00413{width:35.168716px;}
._24_c00413{width:37.357315px;}
._11_c00413{width:38.887051px;}
._5_c00413{width:39.998833px;}
._17_c00413{width:41.112577px;}
._13_c00413{width:42.307666px;}
._1a_c00413{width:43.315349px;}
._25_c00413{width:44.604730px;}
._23_c00413{width:46.985301px;}
._12_c00413{width:48.122607px;}
._7_c00413{width:50.688687px;}
._22_c00413{width:61.284773px;}
._a_c00413{width:90.149400px;}
._1b_c00413{width:95.155632px;}
._9_c00413{width:96.647760px;}
._1d_c00413{width:104.798122px;}
._1_c00413{width:319.441809px;}
._1e_c00413{width:552.815901px;}
.fc0_c00413{color:transparent;}
.fs35_c00413{font-size:8.712198px;}
.fs17_c00413{font-size:11.404998px;}
.fs1d_c00413{font-size:15.681798px;}
.fs18_c00413{font-size:18.216000px;}
.fs29_c00413{font-size:20.790000px;}
.fs2a_c00413{font-size:21.384000px;}
.fs1c_c00413{font-size:21.978000px;}
.fs30_c00413{font-size:22.176000px;}
.fs19_c00413{font-size:22.374000px;}
.fs45_c00413{font-size:23.364000px;}
.fs1b_c00413{font-size:23.958000px;}
.fs1e_c00413{font-size:25.146000px;}
.fs42_c00413{font-size:25.344000px;}
.fs20_c00413{font-size:26.136000px;}
.fs3c_c00413{font-size:26.928000px;}
.fs16_c00413{font-size:27.324000px;}
.fs0_c00413{font-size:27.720000px;}
.fs31_c00413{font-size:28.314000px;}
.fs10_c00413{font-size:28.512000px;}
.fs2b_c00413{font-size:29.898000px;}
.fs43_c00413{font-size:29.937798px;}
.fs8_c00413{font-size:31.680000px;}
.fs48_c00413{font-size:32.076198px;}
.fs3e_c00413{font-size:32.868000px;}
.fs47_c00413{font-size:34.056198px;}
.fsd_c00413{font-size:34.214598px;}
.fs2f_c00413{font-size:34.650000px;}
.fse_c00413{font-size:34.848000px;}
.fs49_c00413{font-size:36.828000px;}
.fs26_c00413{font-size:37.818000px;}
.fs23_c00413{font-size:39.600000px;}
.fs28_c00413{font-size:39.798000px;}
.fs15_c00413{font-size:39.916800px;}
.fsf_c00413{font-size:41.342598px;}
.fs34_c00413{font-size:41.778000px;}
.fs46_c00413{font-size:44.352000px;}
.fs3a_c00413{font-size:45.540000px;}
.fs44_c00413{font-size:45.738000px;}
.fs37_c00413{font-size:47.044800px;}
.fs1a_c00413{font-size:47.322000px;}
.fs3b_c00413{font-size:47.520000px;}
.fs33_c00413{font-size:48.312000px;}
.fsb_c00413{font-size:48.470598px;}
.fs27_c00413{font-size:49.104000px;}
.fs4_c00413{font-size:49.896198px;}
.fsa_c00413{font-size:50.292000px;}
.fs2c_c00413{font-size:50.688000px;}
.fs6_c00413{font-size:51.321798px;}
.fs38_c00413{font-size:51.876198px;}
.fs39_c00413{font-size:52.272000px;}
.fs4c_c00413{font-size:53.856198px;}
.fs2e_c00413{font-size:55.044000px;}
.fs32_c00413{font-size:57.024000px;}
.fs5_c00413{font-size:58.608000px;}
.fs41_c00413{font-size:60.984000px;}
.fs36_c00413{font-size:61.776198px;}
.fs3_c00413{font-size:62.568000px;}
.fs14_c00413{font-size:62.766198px;}
.fs7_c00413{font-size:63.360000px;}
.fs4b_c00413{font-size:63.558000px;}
.fs21_c00413{font-size:64.152198px;}
.fs3d_c00413{font-size:64.548000px;}
.fs11_c00413{font-size:64.944000px;}
.fs25_c00413{font-size:66.528000px;}
.fs9_c00413{font-size:66.924000px;}
.fs1f_c00413{font-size:67.518000px;}
.fs1_c00413{font-size:69.696198px;}
.fsc_c00413{font-size:70.686198px;}
.fs12_c00413{font-size:71.280000px;}
.fs2d_c00413{font-size:73.260000px;}
.fs13_c00413{font-size:73.656198px;}
.fs40_c00413{font-size:77.616198px;}
.fs4a_c00413{font-size:79.596198px;}
.fs2_c00413{font-size:81.972198px;}
.fs24_c00413{font-size:85.536198px;}
.fs22_c00413{font-size:89.496198px;}
.fs3f_c00413{font-size:100.188000px;}
.y0_c00413{bottom:0.000000px;}
.y46_c00413{bottom:46.238985px;}
.y45_c00413{bottom:71.548335px;}
.y1_c00413{bottom:76.500000px;}
.y2_c00413{bottom:97.209135px;}
.y44_c00413{bottom:136.769535px;}
.y43_c00413{bottom:166.707135px;}
.y42_c00413{bottom:201.634335px;}
.y41_c00413{bottom:236.200185px;}
.y3e_c00413{bottom:262.578735px;}
.y3d_c00413{bottom:268.276185px;}
.y40_c00413{bottom:268.988985px;}
.y3c_c00413{bottom:271.132335px;}
.y3f_c00413{bottom:296.431785px;}
.y3b_c00413{bottom:300.713535px;}
.y3a_c00413{bottom:301.064985px;}
.y39_c00413{bottom:334.566585px;}
.y38_c00413{bottom:348.827535px;}
.y37_c00413{bottom:359.163135px;}
.y36_c00413{bottom:372.706335px;}
.y35_c00413{bottom:399.436335px;}
.y34_c00413{bottom:432.220185px;}
.y33_c00413{bottom:464.296185px;}
.y32_c00413{bottom:479.977785px;}
.y2f_c00413{bottom:497.797785px;}
.y30_c00413{bottom:498.871935px;}
.y31_c00413{bottom:507.781935px;}
.y2e_c00413{bottom:529.160985px;}
.y2d_c00413{bottom:529.522335px;}
.y2c_c00413{bottom:559.459935px;}
.y28_c00413{bottom:562.311135px;}
.y27_c00413{bottom:562.667535px;}
.y2a_c00413{bottom:563.018985px;}
.y2b_c00413{bottom:563.375385px;}
.y29_c00413{bottom:570.151935px;}
.y26_c00413{bottom:577.636335px;}
.y25_c00413{bottom:590.105385px;}
.y24_c00413{bottom:596.164185px;}
.y23_c00413{bottom:628.240185px;}
.y20_c00413{bottom:657.826335px;}
.y22_c00413{bottom:661.028985px;}
.y1f_c00413{bottom:661.746735px;}
.y21_c00413{bottom:669.938985px;}
.y1e_c00413{bottom:670.295385px;}
.y1c_c00413{bottom:690.966585px;}
.y1d_c00413{bottom:693.466335px;}
.y1b_c00413{bottom:693.817785px;}
.y1a_c00413{bottom:723.047535px;}
.y17_c00413{bottom:726.250185px;}
.y19_c00413{bottom:726.606585px;}
.y12_c00413{bottom:726.962985px;}
.y14_c00413{bottom:727.324335px;}
.y16_c00413{bottom:728.032185px;}
.y18_c00413{bottom:728.388585px;}
.y13_c00413{bottom:728.749935px;}
.y15_c00413{bottom:735.160185px;}
.y11_c00413{bottom:758.687535px;}
.y10_c00413{bottom:791.119935px;}
.yf_c00413{bottom:791.476335px;}
.ye_c00413{bottom:794.678985px;}
.yd_c00413{bottom:856.341135px;}
.y9_c00413{bottom:887.704335px;}
.yc_c00413{bottom:888.412185px;}
.ya_c00413{bottom:888.768585px;}
.yb_c00413{bottom:894.832335px;}
.y4_c00413{bottom:920.849535px;}
.y5_c00413{bottom:921.562335px;}
.y7_c00413{bottom:924.408585px;}
.y8_c00413{bottom:925.126335px;}
.y6_c00413{bottom:930.110985px;}
.y3_c00413{bottom:1075.522185px;}
.h19_c00413{height:7.595729px;}
.h37_c00413{height:8.550546px;}
.h22_c00413{height:10.444077px;}
.h2b_c00413{height:14.241744px;}
.h1b_c00413{height:17.878008px;}
.h45_c00413{height:19.938573px;}
.h21_c00413{height:21.570205px;}
.h1c_c00413{height:21.958857px;}
.h20_c00413{height:22.149703px;}
.hf_c00413{height:22.786922px;}
.h32_c00413{height:23.128875px;}
.h1e_c00413{height:23.513467px;}
.h1f_c00413{height:24.145172px;}
.h44_c00413{height:24.873750px;}
.h23_c00413{height:25.342453px;}
.h25_c00413{height:25.651055px;}
.h17_c00413{height:26.584589px;}
.h1a_c00413{height:26.817012px;}
.h11_c00413{height:27.534170px;}
.h18_c00413{height:27.537469px;}
.h40_c00413{height:28.085063px;}
.h2_c00413{height:28.911094px;}
.h33_c00413{height:29.530617px;}
.h12_c00413{height:29.737125px;}
.hb_c00413{height:31.092188px;}
.h39_c00413{height:31.331837px;}
.hd_c00413{height:32.281418px;}
.h3a_c00413{height:33.230868px;}
.h49_c00413{height:34.007080px;}
.h8_c00413{height:34.180317px;}
.h10_c00413{height:34.201406px;}
.h4a_c00413{height:35.519550px;}
.h31_c00413{height:36.138867px;}
.h4c_c00413{height:36.144668px;}
.h36_c00413{height:41.002822px;}
.h3c_c00413{height:41.301563px;}
.h48_c00413{height:43.507406px;}
.h47_c00413{height:43.529063px;}
.h3e_c00413{height:44.695020px;}
.h46_c00413{height:44.889346px;}
.h1d_c00413{height:46.443955px;}
.h35_c00413{height:47.415586px;}
.h6_c00413{height:48.970390px;}
.h3f_c00413{height:49.561875px;}
.h2e_c00413{height:49.747500px;}
.h3b_c00413{height:50.913651px;}
.h3d_c00413{height:51.302109px;}
.h2d_c00413{height:52.040175px;}
.h30_c00413{height:54.022676px;}
.h34_c00413{height:55.965938px;}
.h4f_c00413{height:56.170332px;}
.h7_c00413{height:59.065875px;}
.h4b_c00413{height:60.629960px;}
.h5_c00413{height:61.407070px;}
.h43_c00413{height:63.604406px;}
.h13_c00413{height:63.738984px;}
.h38_c00413{height:64.430644px;}
.h16_c00413{height:65.463183px;}
.hc_c00413{height:65.682246px;}
.ha_c00413{height:66.082500px;}
.h24_c00413{height:66.265225px;}
.h4e_c00413{height:66.289008px;}
.h26_c00413{height:66.908738px;}
.h3_c00413{height:68.403007px;}
.he_c00413{height:69.374638px;}
.h2a_c00413{height:69.386625px;}
.h14_c00413{height:69.957422px;}
.h2f_c00413{height:71.900684px;}
.h15_c00413{height:72.289530px;}
.h42_c00413{height:76.176054px;}
.h4d_c00413{height:78.119315px;}
.h4_c00413{height:80.451229px;}
.h29_c00413{height:83.949101px;}
.h9_c00413{height:90.337500px;}
.h28_c00413{height:93.948101px;}
.h2c_c00413{height:100.490775px;}
.h41_c00413{height:104.492953px;}
.h27_c00413{height:115.332113px;}
.h1_c00413{height:1110.000000px;}
.h0_c00413{height:1263.000000px;}
.w1_c00413{width:775.500000px;}
.w0_c00413{width:892.500000px;}
.x0_c00413{left:0.000000px;}
.x1_c00413{left:58.500000px;}
.x13_c00413{left:77.622585px;}
.x4_c00413{left:79.414485px;}
.x74_c00413{left:81.409335px;}
.xa8_c00413{left:82.864635px;}
.x3a_c00413{left:89.923335px;}
.x86_c00413{left:91.388535px;}
.x75_c00413{left:101.496435px;}
.xa1_c00413{left:102.733935px;}
.x5d_c00413{left:110.787585px;}
.x25_c00413{left:111.822135px;}
.xd_c00413{left:112.866585px;}
.x98_c00413{left:114.099135px;}
.x8d_c00413{left:121.514235px;}
.x99_c00413{left:123.627885px;}
.x9c_c00413{left:129.152085px;}
.x14_c00413{left:134.354535px;}
.x9b_c00413{left:137.473035px;}
.x5e_c00413{left:144.472335px;}
.x7b_c00413{left:145.487085px;}
.xaf_c00413{left:146.501835px;}
.x9a_c00413{left:148.402635px;}
.x93_c00413{left:152.669535px;}
.xe_c00413{left:155.015835px;}
.x7f_c00413{left:156.094935px;}
.x94_c00413{left:166.084035px;}
.x27_c00413{left:167.851185px;}
.xa2_c00413{left:169.712385px;}
.x6a_c00413{left:171.167685px;}
.x28_c00413{left:176.048385px;}
.xa9_c00413{left:178.003635px;}
.x8e_c00413{left:179.691585px;}
.x29_c00413{left:181.924035px;}
.x3d_c00413{left:184.092135px;}
.x5f_c00413{left:187.091835px;}
.x2a_c00413{left:188.745135px;}
.x5_c00413{left:189.754935px;}
.x6b_c00413{left:199.164885px;}
.x2b_c00413{left:200.288535px;}
.x2c_c00413{left:211.208235px;}
.x3e_c00413{left:213.381285px;}
.x10_c00413{left:221.944785px;}
.x19_c00413{left:223.221885px;}
.x15_c00413{left:233.270385px;}
.x6c_c00413{left:236.359185px;}
.x76_c00413{left:242.036835px;}
.x3f_c00413{left:243.323835px;}
.x12_c00413{left:245.437485px;}
.xa3_c00413{left:246.976935px;}
.x40_c00413{left:248.323335px;}
.x45_c00413{left:251.159685px;}
.x87_c00413{left:254.451435px;}
.x11_c00413{left:255.669135px;}
.x2d_c00413{left:257.515485px;}
.xf_c00413{left:258.980685px;}
.x80_c00413{left:266.187885px;}
.x1a_c00413{left:267.385785px;}
.x6d_c00413{left:276.874935px;}
.x31_c00413{left:277.983735px;}
.x60_c00413{left:288.621285px;}
.x26_c00413{left:289.739985px;}
.x88_c00413{left:298.521285px;}
.x7c_c00413{left:301.149735px;}
.x46_c00413{left:304.357335px;}
.x47_c00413{left:310.772535px;}
.x9d_c00413{left:312.000135px;}
.x97_c00413{left:313.059435px;}
.x16_c00413{left:314.257335px;}
.x73_c00413{left:318.435135px;}
.x61_c00413{left:320.187435px;}
.x1b_c00413{left:322.731735px;}
.x6f_c00413{left:331.433835px;}
.x41_c00413{left:332.522835px;}
.x89_c00413{left:333.755385px;}
.x2e_c00413{left:334.982985px;}
.xa4_c00413{left:341.413035px;}
.x1c_c00413{left:344.699835px;}
.x6e_c00413{left:353.887035px;}
.x6_c00413{left:356.144235px;}
.x17_c00413{left:358.361835px;}
.x1d_c00413{left:366.252135px;}
.x91_c00413{left:367.885635px;}
.x18_c00413{left:369.271635px;}
.x1e_c00413{left:377.557935px;}
.x95_c00413{left:378.914235px;}
.xab_c00413{left:380.240835px;}
.x42_c00413{left:384.903735px;}
.x43_c00413{left:389.536935px;}
.x48_c00413{left:391.205085px;}
.x44_c00413{left:393.813735px;}
.x1f_c00413{left:400.006185px;}
.x2f_c00413{left:402.812835px;}
.xb0_c00413{left:406.124385px;}
.x81_c00413{left:411.069435px;}
.x7_c00413{left:422.162385px;}
.x51_c00413{left:424.478985px;}
.x4a_c00413{left:426.444135px;}
.x20_c00413{left:431.913885px;}
.x77_c00413{left:433.126635px;}
.xac_c00413{left:435.596685px;}
.x4b_c00413{left:437.066835px;}
.x32_c00413{left:441.388185px;}
.x52_c00413{left:444.076035px;}
.x49_c00413{left:446.823285px;}
.x8f_c00413{left:454.708635px;}
.x4c_c00413{left:455.911485px;}
.x8_c00413{left:466.360935px;}
.x82_c00413{left:476.097585px;}
.x30_c00413{left:477.315285px;}
.x78_c00413{left:479.557635px;}
.x79_c00413{left:483.423585px;}
.x3b_c00413{left:488.398335px;}
.x33_c00413{left:500.020935px;}
.x64_c00413{left:502.416735px;}
.x53_c00413{left:503.485935px;}
.x9e_c00413{left:509.247735px;}
.x66_c00413{left:510.351585px;}
.x54_c00413{left:512.148435px;}
.x70_c00413{left:514.514535px;}
.x34_c00413{left:521.880135px;}
.x8a_c00413{left:522.964185px;}
.x62_c00413{left:524.449185px;}
.xa5_c00413{left:526.552935px;}
.x9f_c00413{left:530.418885px;}
.x3c_c00413{left:532.631535px;}
.x71_c00413{left:537.556785px;}
.x4d_c00413{left:543.110685px;}
.x9_c00413{left:544.392735px;}
.x67_c00413{left:545.546085px;}
.x55_c00413{left:546.664785px;}
.xa6_c00413{left:550.976235px;}
.xad_c00413{left:553.015635px;}
.x56_c00413{left:554.837235px;}
.x4e_c00413{left:556.525185px;}
.x21_c00413{left:565.083735px;}
.xa_c00413{left:573.068085px;}
.x57_c00413{left:575.231235px;}
.xb_c00413{left:576.993435px;}
.x4f_c00413{left:580.512885px;}
.x58_c00413{left:583.774935px;}
.x35_c00413{left:585.185685px;}
.x36_c00413{left:587.705235px;}
.x50_c00413{left:591.016785px;}
.xb2_c00413{left:594.452085px;}
.x90_c00413{left:596.951835px;}
.xaa_c00413{left:598.867485px;}
.x59_c00413{left:601.500885px;}
.x65_c00413{left:608.663535px;}
.xc_c00413{left:609.712935px;}
.x7a_c00413{left:610.935585px;}
.x96_c00413{left:612.004785px;}
.x5a_c00413{left:621.043485px;}
.xa7_c00413{left:622.439385px;}
.x7d_c00413{left:632.265135px;}
.x37_c00413{left:643.140285px;}
.x22_c00413{left:654.431235px;}
.x83_c00413{left:656.911185px;}
.x69_c00413{left:663.524385px;}
.x63_c00413{left:664.954935px;}
.x72_c00413{left:666.934935px;}
.x68_c00413{left:671.196885px;}
.x23_c00413{left:675.859785px;}
.x2_c00413{left:678.720885px;}
.x38_c00413{left:686.923035px;}
.xae_c00413{left:697.060635px;}
.x24_c00413{left:698.303085px;}
.x3_c00413{left:699.941535px;}
.xb1_c00413{left:704.416335px;}
.x92_c00413{left:706.485435px;}
.x8b_c00413{left:707.752635px;}
.x39_c00413{left:709.059435px;}
.x5b_c00413{left:720.281085px;}
.x5c_c00413{left:724.765785px;}
.x85_c00413{left:729.834585px;}
.x7e_c00413{left:732.161085px;}
.xa0_c00413{left:742.516485px;}
.x84_c00413{left:745.125135px;}
.x8c_c00413{left:754.302435px;}
@media print{
.v7_c00413{vertical-align:-51.955200pt;}
.v8_c00413{vertical-align:-21.532192pt;}
.v3_c00413{vertical-align:-1.249600pt;}
.v0_c00413{vertical-align:0.000000pt;}
.v2_c00413{vertical-align:6.353600pt;}
.v5_c00413{vertical-align:8.888000pt;}
.v1_c00413{vertical-align:21.560000pt;}
.v4_c00413{vertical-align:35.481600pt;}
.v6_c00413{vertical-align:43.067200pt;}
.ls3b_c00413{letter-spacing:-2.661126pt;}
.ls13_c00413{letter-spacing:-2.550246pt;}
.ls40_c00413{letter-spacing:-2.291526pt;}
.ls14_c00413{letter-spacing:-2.168326pt;}
.ls43_c00413{letter-spacing:-2.100560pt;}
.ls1d_c00413{letter-spacing:-2.082080pt;}
.ls60_c00413{letter-spacing:-1.977360pt;}
.ls1a_c00413{letter-spacing:-1.971200pt;}
.ls18_c00413{letter-spacing:-1.823360pt;}
.ls5e_c00413{letter-spacing:-1.815199pt;}
.ls42_c00413{letter-spacing:-1.774080pt;}
.ls4e_c00413{letter-spacing:-1.626240pt;}
.ls4c_c00413{letter-spacing:-1.613926pt;}
.ls3e_c00413{letter-spacing:-1.576960pt;}
.ls21_c00413{letter-spacing:-1.552326pt;}
.ls47_c00413{letter-spacing:-1.503040pt;}
.ls4f_c00413{letter-spacing:-1.416800pt;}
.ls57_c00413{letter-spacing:-1.379840pt;}
.ls15_c00413{letter-spacing:-1.299519pt;}
.ls5b_c00413{letter-spacing:-1.145760pt;}
.ls59_c00413{letter-spacing:-1.078000pt;}
.ls4d_c00413{letter-spacing:-1.053187pt;}
.ls55_c00413{letter-spacing:-0.910694pt;}
.ls22_c00413{letter-spacing:-0.887044pt;}
.ls2c_c00413{letter-spacing:-0.850080pt;}
.ls36_c00413{letter-spacing:-0.782320pt;}
.ls33_c00413{letter-spacing:-0.745360pt;}
.ls2a_c00413{letter-spacing:-0.719805pt;}
.ls5f_c00413{letter-spacing:-0.433665pt;}
.ls32_c00413{letter-spacing:-0.300274pt;}
.ls20_c00413{letter-spacing:-0.229222pt;}
.ls45_c00413{letter-spacing:-0.155461pt;}
.ls23_c00413{letter-spacing:-0.146362pt;}
.ls11_c00413{letter-spacing:0.000000pt;}
.ls0_c00413{letter-spacing:0.068147pt;}
.lsd_c00413{letter-spacing:0.142490pt;}
.ls7_c00413{letter-spacing:0.229223pt;}
.ls3_c00413{letter-spacing:0.297370pt;}
.ls48_c00413{letter-spacing:0.387209pt;}
.lsc_c00413{letter-spacing:0.396494pt;}
.ls2_c00413{letter-spacing:0.526593pt;}
.ls2f_c00413{letter-spacing:0.809600pt;}
.ls34_c00413{letter-spacing:0.976800pt;}
.lsf_c00413{letter-spacing:1.046992pt;}
.ls31_c00413{letter-spacing:1.064800pt;}
.ls37_c00413{letter-spacing:1.117600pt;}
.ls39_c00413{letter-spacing:1.161600pt;}
.ls2e_c00413{letter-spacing:1.214400pt;}
.ls5a_c00413{letter-spacing:1.267200pt;}
.ls54_c00413{letter-spacing:1.344362pt;}
.ls1b_c00413{letter-spacing:1.408000pt;}
.ls1_c00413{letter-spacing:1.879821pt;}
.ls58_c00413{letter-spacing:1.971200pt;}
.lse_c00413{letter-spacing:1.988665pt;}
.ls56_c00413{letter-spacing:2.032800pt;}
.ls38_c00413{letter-spacing:2.088557pt;}
.ls30_c00413{letter-spacing:2.103200pt;}
.ls50_c00413{letter-spacing:2.112000pt;}
.ls46_c00413{letter-spacing:2.147200pt;}
.ls16_c00413{letter-spacing:2.217609pt;}
.ls4_c00413{letter-spacing:2.304621pt;}
.ls3f_c00413{letter-spacing:2.446400pt;}
.ls29_c00413{letter-spacing:2.496673pt;}
.ls41_c00413{letter-spacing:2.534400pt;}
.ls17_c00413{letter-spacing:2.604800pt;}
.ls49_c00413{letter-spacing:2.745609pt;}
.ls28_c00413{letter-spacing:2.789609pt;}
.ls10_c00413{letter-spacing:2.831214pt;}
.ls3a_c00413{letter-spacing:2.851209pt;}
.ls5_c00413{letter-spacing:2.868386pt;}
.ls25_c00413{letter-spacing:2.886400pt;}
.ls1c_c00413{letter-spacing:2.974400pt;}
.ls44_c00413{letter-spacing:3.000800pt;}
.ls9_c00413{letter-spacing:3.079023pt;}
.ls51_c00413{letter-spacing:3.085218pt;}
.ls12_c00413{letter-spacing:3.097609pt;}
.ls5c_c00413{letter-spacing:3.141609pt;}
.ls26_c00413{letter-spacing:3.168000pt;}
.ls27_c00413{letter-spacing:3.273609pt;}
.ls52_c00413{letter-spacing:3.449609pt;}
.ls5d_c00413{letter-spacing:3.537609pt;}
.ls3c_c00413{letter-spacing:3.801609pt;}
.lsa_c00413{letter-spacing:7.625376pt;}
.ls2d_c00413{letter-spacing:10.137776pt;}
.ls35_c00413{letter-spacing:13.939376pt;}
.ls8_c00413{letter-spacing:16.231365pt;}
.ls3d_c00413{letter-spacing:19.008000pt;}
.lsb_c00413{letter-spacing:21.559247pt;}
.ls53_c00413{letter-spacing:26.611376pt;}
.ls1f_c00413{letter-spacing:30.412976pt;}
.ls2b_c00413{letter-spacing:35.481600pt;}
.ls24_c00413{letter-spacing:36.748976pt;}
.ls4a_c00413{letter-spacing:41.817600pt;}
.ls1e_c00413{letter-spacing:43.084976pt;}
.ls4b_c00413{letter-spacing:44.352176pt;}
.ls19_c00413{letter-spacing:45.619376pt;}
.ls6_c00413{letter-spacing:380.462192pt;}
.wsf_c00413{word-spacing:-18.567067pt;}
.ws9_c00413{word-spacing:-18.356430pt;}
.ws8_c00413{word-spacing:-17.792665pt;}
.ws5_c00413{word-spacing:-16.014637pt;}
.ws11_c00413{word-spacing:-15.884538pt;}
.ws1_c00413{word-spacing:-15.783821pt;}
.wsb_c00413{word-spacing:-15.717267pt;}
.ws12_c00413{word-spacing:-15.630534pt;}
.wsa_c00413{word-spacing:-15.488044pt;}
.ws6_c00413{word-spacing:-14.152195pt;}
.ws15_c00413{word-spacing:-13.672845pt;}
.ws13_c00413{word-spacing:-9.253306pt;}
.ws7_c00413{word-spacing:-4.884000pt;}
.ws4_c00413{word-spacing:-2.663892pt;}
.ws14_c00413{word-spacing:-2.354298pt;}
.wsd_c00413{word-spacing:-1.177200pt;}
.ws10_c00413{word-spacing:-1.081466pt;}
.ws16_c00413{word-spacing:0.000000pt;}
.ws2_c00413{word-spacing:0.297268pt;}
.wse_c00413{word-spacing:2.602057pt;}
.ws0_c00413{word-spacing:4.893401pt;}
.ws3_c00413{word-spacing:7.000649pt;}
.wsc_c00413{word-spacing:8.239689pt;}
._27_c00413{margin-left:-13.629528pt;}
._26_c00413{margin-left:-11.554420pt;}
._28_c00413{margin-left:-9.292683pt;}
._29_c00413{margin-left:-8.072499pt;}
._15_c00413{margin-left:-6.603168pt;}
._18_c00413{margin-left:-4.064153pt;}
._8_c00413{margin-left:-2.691814pt;}
._1f_c00413{margin-left:-1.053610pt;}
._16_c00413{width:1.094192pt;}
._d_c00413{width:2.953182pt;}
._14_c00413{width:4.687654pt;}
._10_c00413{width:6.009266pt;}
._e_c00413{width:7.217990pt;}
._0_c00413{width:8.115810pt;}
._6_c00413{width:9.354674pt;}
._c_c00413{width:10.593714pt;}
._20_c00413{width:11.585112pt;}
._b_c00413{width:12.824514pt;}
._2a_c00413{width:17.904236pt;}
._19_c00413{width:19.043200pt;}
._21_c00413{width:20.892901pt;}
._3_c00413{width:21.931135pt;}
._f_c00413{width:23.170165pt;}
._4_c00413{width:24.471167pt;}
._1c_c00413{width:30.119232pt;}
._2_c00413{width:31.261081pt;}
._24_c00413{width:33.206502pt;}
._11_c00413{width:34.566268pt;}
._5_c00413{width:35.554518pt;}
._17_c00413{width:36.544513pt;}
._13_c00413{width:37.606815pt;}
._1a_c00413{width:38.502532pt;}
._25_c00413{width:39.648649pt;}
._23_c00413{width:41.764712pt;}
._12_c00413{width:42.775651pt;}
._7_c00413{width:45.056611pt;}
._22_c00413{width:54.475354pt;}
._a_c00413{width:80.132800pt;}
._1b_c00413{width:84.582784pt;}
._9_c00413{width:85.909120pt;}
._1d_c00413{width:93.153886pt;}
._1_c00413{width:283.948275pt;}
._1e_c00413{width:491.391912pt;}
.fs35_c00413{font-size:7.744176pt;}
.fs17_c00413{font-size:10.137776pt;}
.fs1d_c00413{font-size:13.939376pt;}
.fs18_c00413{font-size:16.192000pt;}
.fs29_c00413{font-size:18.480000pt;}
.fs2a_c00413{font-size:19.008000pt;}
.fs1c_c00413{font-size:19.536000pt;}
.fs30_c00413{font-size:19.712000pt;}
.fs19_c00413{font-size:19.888000pt;}
.fs45_c00413{font-size:20.768000pt;}
.fs1b_c00413{font-size:21.296000pt;}
.fs1e_c00413{font-size:22.352000pt;}
.fs42_c00413{font-size:22.528000pt;}
.fs20_c00413{font-size:23.232000pt;}
.fs3c_c00413{font-size:23.936000pt;}
.fs16_c00413{font-size:24.288000pt;}
.fs0_c00413{font-size:24.640000pt;}
.fs31_c00413{font-size:25.168000pt;}
.fs10_c00413{font-size:25.344000pt;}
.fs2b_c00413{font-size:26.576000pt;}
.fs43_c00413{font-size:26.611376pt;}
.fs8_c00413{font-size:28.160000pt;}
.fs48_c00413{font-size:28.512176pt;}
.fs3e_c00413{font-size:29.216000pt;}
.fs47_c00413{font-size:30.272176pt;}
.fsd_c00413{font-size:30.412976pt;}
.fs2f_c00413{font-size:30.800000pt;}
.fse_c00413{font-size:30.976000pt;}
.fs49_c00413{font-size:32.736000pt;}
.fs26_c00413{font-size:33.616000pt;}
.fs23_c00413{font-size:35.200000pt;}
.fs28_c00413{font-size:35.376000pt;}
.fs15_c00413{font-size:35.481600pt;}
.fsf_c00413{font-size:36.748976pt;}
.fs34_c00413{font-size:37.136000pt;}
.fs46_c00413{font-size:39.424000pt;}
.fs3a_c00413{font-size:40.480000pt;}
.fs44_c00413{font-size:40.656000pt;}
.fs37_c00413{font-size:41.817600pt;}
.fs1a_c00413{font-size:42.064000pt;}
.fs3b_c00413{font-size:42.240000pt;}
.fs33_c00413{font-size:42.944000pt;}
.fsb_c00413{font-size:43.084976pt;}
.fs27_c00413{font-size:43.648000pt;}
.fs4_c00413{font-size:44.352176pt;}
.fsa_c00413{font-size:44.704000pt;}
.fs2c_c00413{font-size:45.056000pt;}
.fs6_c00413{font-size:45.619376pt;}
.fs38_c00413{font-size:46.112176pt;}
.fs39_c00413{font-size:46.464000pt;}
.fs4c_c00413{font-size:47.872176pt;}
.fs2e_c00413{font-size:48.928000pt;}
.fs32_c00413{font-size:50.688000pt;}
.fs5_c00413{font-size:52.096000pt;}
.fs41_c00413{font-size:54.208000pt;}
.fs36_c00413{font-size:54.912176pt;}
.fs3_c00413{font-size:55.616000pt;}
.fs14_c00413{font-size:55.792176pt;}
.fs7_c00413{font-size:56.320000pt;}
.fs4b_c00413{font-size:56.496000pt;}
.fs21_c00413{font-size:57.024176pt;}
.fs3d_c00413{font-size:57.376000pt;}
.fs11_c00413{font-size:57.728000pt;}
.fs25_c00413{font-size:59.136000pt;}
.fs9_c00413{font-size:59.488000pt;}
.fs1f_c00413{font-size:60.016000pt;}
.fs1_c00413{font-size:61.952176pt;}
.fsc_c00413{font-size:62.832176pt;}
.fs12_c00413{font-size:63.360000pt;}
.fs2d_c00413{font-size:65.120000pt;}
.fs13_c00413{font-size:65.472176pt;}
.fs40_c00413{font-size:68.992176pt;}
.fs4a_c00413{font-size:70.752176pt;}
.fs2_c00413{font-size:72.864176pt;}
.fs24_c00413{font-size:76.032176pt;}
.fs22_c00413{font-size:79.552176pt;}
.fs3f_c00413{font-size:89.056000pt;}
.y0_c00413{bottom:0.000000pt;}
.y46_c00413{bottom:41.101320pt;}
.y45_c00413{bottom:63.598520pt;}
.y1_c00413{bottom:68.000000pt;}
.y2_c00413{bottom:86.408120pt;}
.y44_c00413{bottom:121.572920pt;}
.y43_c00413{bottom:148.184120pt;}
.y42_c00413{bottom:179.230520pt;}
.y41_c00413{bottom:209.955720pt;}
.y3e_c00413{bottom:233.403320pt;}
.y3d_c00413{bottom:238.467720pt;}
.y40_c00413{bottom:239.101320pt;}
.y3c_c00413{bottom:241.006520pt;}
.y3f_c00413{bottom:263.494920pt;}
.y3b_c00413{bottom:267.300920pt;}
.y3a_c00413{bottom:267.613320pt;}
.y39_c00413{bottom:297.392520pt;}
.y38_c00413{bottom:310.068920pt;}
.y37_c00413{bottom:319.256120pt;}
.y36_c00413{bottom:331.294520pt;}
.y35_c00413{bottom:355.054520pt;}
.y34_c00413{bottom:384.195720pt;}
.y33_c00413{bottom:412.707720pt;}
.y32_c00413{bottom:426.646920pt;}
.y2f_c00413{bottom:442.486920pt;}
.y30_c00413{bottom:443.441720pt;}
.y31_c00413{bottom:451.361720pt;}
.y2e_c00413{bottom:470.365320pt;}
.y2d_c00413{bottom:470.686520pt;}
.y2c_c00413{bottom:497.297720pt;}
.y28_c00413{bottom:499.832120pt;}
.y27_c00413{bottom:500.148920pt;}
.y2a_c00413{bottom:500.461320pt;}
.y2b_c00413{bottom:500.778120pt;}
.y29_c00413{bottom:506.801720pt;}
.y26_c00413{bottom:513.454520pt;}
.y25_c00413{bottom:524.538120pt;}
.y24_c00413{bottom:529.923720pt;}
.y23_c00413{bottom:558.435720pt;}
.y20_c00413{bottom:584.734520pt;}
.y22_c00413{bottom:587.581320pt;}
.y1f_c00413{bottom:588.219320pt;}
.y21_c00413{bottom:595.501320pt;}
.y1e_c00413{bottom:595.818120pt;}
.y1c_c00413{bottom:614.192520pt;}
.y1d_c00413{bottom:616.414520pt;}
.y1b_c00413{bottom:616.726920pt;}
.y1a_c00413{bottom:642.708920pt;}
.y17_c00413{bottom:645.555720pt;}
.y19_c00413{bottom:645.872520pt;}
.y12_c00413{bottom:646.189320pt;}
.y14_c00413{bottom:646.510520pt;}
.y16_c00413{bottom:647.139720pt;}
.y18_c00413{bottom:647.456520pt;}
.y13_c00413{bottom:647.777720pt;}
.y15_c00413{bottom:653.475720pt;}
.y11_c00413{bottom:674.388920pt;}
.y10_c00413{bottom:703.217720pt;}
.yf_c00413{bottom:703.534520pt;}
.ye_c00413{bottom:706.381320pt;}
.yd_c00413{bottom:761.192120pt;}
.y9_c00413{bottom:789.070520pt;}
.yc_c00413{bottom:789.699720pt;}
.ya_c00413{bottom:790.016520pt;}
.yb_c00413{bottom:795.406520pt;}
.y4_c00413{bottom:818.532920pt;}
.y5_c00413{bottom:819.166520pt;}
.y7_c00413{bottom:821.696520pt;}
.y8_c00413{bottom:822.334520pt;}
.y6_c00413{bottom:826.765320pt;}
.y3_c00413{bottom:956.019720pt;}
.h19_c00413{height:6.751759pt;}
.h37_c00413{height:7.600485pt;}
.h22_c00413{height:9.283624pt;}
.h2b_c00413{height:12.659328pt;}
.h1b_c00413{height:15.891563pt;}
.h45_c00413{height:17.723176pt;}
.h21_c00413{height:19.173516pt;}
.h1c_c00413{height:19.518984pt;}
.h20_c00413{height:19.688625pt;}
.hf_c00413{height:20.255042pt;}
.h32_c00413{height:20.559000pt;}
.h1e_c00413{height:20.900859pt;}
.h1f_c00413{height:21.462375pt;}
.h44_c00413{height:22.110000pt;}
.h23_c00413{height:22.526625pt;}
.h25_c00413{height:22.800938pt;}
.h17_c00413{height:23.630746pt;}
.h1a_c00413{height:23.837344pt;}
.h11_c00413{height:24.474818pt;}
.h18_c00413{height:24.477750pt;}
.h40_c00413{height:24.964500pt;}
.h2_c00413{height:25.698750pt;}
.h33_c00413{height:26.249438pt;}
.h12_c00413{height:26.433000pt;}
.hb_c00413{height:27.637500pt;}
.h39_c00413{height:27.850522pt;}
.hd_c00413{height:28.694594pt;}
.h3a_c00413{height:29.538549pt;}
.h49_c00413{height:30.228516pt;}
.h8_c00413{height:30.382504pt;}
.h10_c00413{height:30.401250pt;}
.h4a_c00413{height:31.572934pt;}
.h31_c00413{height:32.123438pt;}
.h4c_c00413{height:32.128594pt;}
.h36_c00413{height:36.446953pt;}
.h3c_c00413{height:36.712500pt;}
.h48_c00413{height:38.673250pt;}
.h47_c00413{height:38.692500pt;}
.h3e_c00413{height:39.728906pt;}
.h46_c00413{height:39.901641pt;}
.h1d_c00413{height:41.283516pt;}
.h35_c00413{height:42.147188pt;}
.h6_c00413{height:43.529235pt;}
.h3f_c00413{height:44.055000pt;}
.h2e_c00413{height:44.220000pt;}
.h3b_c00413{height:45.256579pt;}
.h3d_c00413{height:45.601875pt;}
.h2d_c00413{height:46.257934pt;}
.h30_c00413{height:48.020156pt;}
.h34_c00413{height:49.747500pt;}
.h4f_c00413{height:49.929184pt;}
.h7_c00413{height:52.503000pt;}
.h4b_c00413{height:53.893298pt;}
.h5_c00413{height:54.584063pt;}
.h43_c00413{height:56.537250pt;}
.h13_c00413{height:56.656875pt;}
.h38_c00413{height:57.271684pt;}
.h16_c00413{height:58.189496pt;}
.hc_c00413{height:58.384219pt;}
.ha_c00413{height:58.740000pt;}
.h24_c00413{height:58.902422pt;}
.h4e_c00413{height:58.923563pt;}
.h26_c00413{height:59.474434pt;}
.h3_c00413{height:60.802673pt;}
.he_c00413{height:61.666345pt;}
.h2a_c00413{height:61.677000pt;}
.h14_c00413{height:62.184375pt;}
.h2f_c00413{height:63.911719pt;}
.h15_c00413{height:64.257360pt;}
.h42_c00413{height:67.712048pt;}
.h4d_c00413{height:69.439391pt;}
.h4_c00413{height:71.512204pt;}
.h29_c00413{height:74.621423pt;}
.h9_c00413{height:80.300000pt;}
.h28_c00413{height:83.509423pt;}
.h2c_c00413{height:89.325134pt;}
.h41_c00413{height:92.882625pt;}
.h27_c00413{height:102.517434pt;}
.h1_c00413{height:986.666667pt;}
.h0_c00413{height:1122.666667pt;}
.w1_c00413{width:689.333333pt;}
.w0_c00413{width:793.333333pt;}
.x0_c00413{left:0.000000pt;}
.x1_c00413{left:52.000000pt;}
.x13_c00413{left:68.997853pt;}
.x4_c00413{left:70.590653pt;}
.x74_c00413{left:72.363853pt;}
.xa8_c00413{left:73.657453pt;}
.x3a_c00413{left:79.931853pt;}
.x86_c00413{left:81.234253pt;}
.x75_c00413{left:90.219053pt;}
.xa1_c00413{left:91.319053pt;}
.x5d_c00413{left:98.477853pt;}
.x25_c00413{left:99.397453pt;}
.xd_c00413{left:100.325853pt;}
.x98_c00413{left:101.421453pt;}
.x8d_c00413{left:108.012653pt;}
.x99_c00413{left:109.891453pt;}
.x9c_c00413{left:114.801853pt;}
.x14_c00413{left:119.426253pt;}
.x9b_c00413{left:122.198253pt;}
.x5e_c00413{left:128.419853pt;}
.x7b_c00413{left:129.321853pt;}
.xaf_c00413{left:130.223853pt;}
.x9a_c00413{left:131.913453pt;}
.x93_c00413{left:135.706253pt;}
.xe_c00413{left:137.791853pt;}
.x7f_c00413{left:138.751053pt;}
.x94_c00413{left:147.630253pt;}
.x27_c00413{left:149.201053pt;}
.xa2_c00413{left:150.855453pt;}
.x6a_c00413{left:152.149053pt;}
.x28_c00413{left:156.487453pt;}
.xa9_c00413{left:158.225453pt;}
.x8e_c00413{left:159.725853pt;}
.x29_c00413{left:161.710253pt;}
.x3d_c00413{left:163.637453pt;}
.x5f_c00413{left:166.303853pt;}
.x2a_c00413{left:167.773453pt;}
.x5_c00413{left:168.671053pt;}
.x6b_c00413{left:177.035453pt;}
.x2b_c00413{left:178.034253pt;}
.x2c_c00413{left:187.740653pt;}
.x3e_c00413{left:189.672253pt;}
.x10_c00413{left:197.284253pt;}
.x19_c00413{left:198.419453pt;}
.x15_c00413{left:207.351453pt;}
.x6c_c00413{left:210.097053pt;}
.x76_c00413{left:215.143853pt;}
.x3f_c00413{left:216.287853pt;}
.x12_c00413{left:218.166653pt;}
.xa3_c00413{left:219.535053pt;}
.x40_c00413{left:220.731853pt;}
.x45_c00413{left:223.253053pt;}
.x87_c00413{left:226.179053pt;}
.x11_c00413{left:227.261453pt;}
.x2d_c00413{left:228.902653pt;}
.xf_c00413{left:230.205053pt;}
.x80_c00413{left:236.611453pt;}
.x1a_c00413{left:237.676253pt;}
.x6d_c00413{left:246.111053pt;}
.x31_c00413{left:247.096653pt;}
.x60_c00413{left:256.552253pt;}
.x26_c00413{left:257.546653pt;}
.x88_c00413{left:265.352253pt;}
.x7c_c00413{left:267.688653pt;}
.x46_c00413{left:270.539853pt;}
.x47_c00413{left:276.242253pt;}
.x9d_c00413{left:277.333453pt;}
.x97_c00413{left:278.275053pt;}
.x16_c00413{left:279.339853pt;}
.x73_c00413{left:283.053453pt;}
.x61_c00413{left:284.611053pt;}
.x1b_c00413{left:286.872653pt;}
.x6f_c00413{left:294.607853pt;}
.x41_c00413{left:295.575853pt;}
.x89_c00413{left:296.671453pt;}
.x2e_c00413{left:297.762653pt;}
.xa4_c00413{left:303.478253pt;}
.x1c_c00413{left:306.399853pt;}
.x6e_c00413{left:314.566253pt;}
.x6_c00413{left:316.572653pt;}
.x17_c00413{left:318.543853pt;}
.x1d_c00413{left:325.557453pt;}
.x91_c00413{left:327.009453pt;}
.x18_c00413{left:328.241453pt;}
.x1e_c00413{left:335.607053pt;}
.x95_c00413{left:336.812653pt;}
.xab_c00413{left:337.991853pt;}
.x42_c00413{left:342.136653pt;}
.x43_c00413{left:346.255053pt;}
.x48_c00413{left:347.737853pt;}
.x44_c00413{left:350.056653pt;}
.x1f_c00413{left:355.561053pt;}
.x2f_c00413{left:358.055853pt;}
.xb0_c00413{left:360.999453pt;}
.x81_c00413{left:365.395053pt;}
.x7_c00413{left:375.255453pt;}
.x51_c00413{left:377.314653pt;}
.x4a_c00413{left:379.061453pt;}
.x20_c00413{left:383.923453pt;}
.x77_c00413{left:385.001453pt;}
.xac_c00413{left:387.197053pt;}
.x4b_c00413{left:388.503853pt;}
.x32_c00413{left:392.345053pt;}
.x52_c00413{left:394.734253pt;}
.x49_c00413{left:397.176253pt;}
.x8f_c00413{left:404.185453pt;}
.x4c_c00413{left:405.254653pt;}
.x8_c00413{left:414.543053pt;}
.x82_c00413{left:423.197853pt;}
.x30_c00413{left:424.280253pt;}
.x78_c00413{left:426.273453pt;}
.x79_c00413{left:429.709853pt;}
.x3b_c00413{left:434.131853pt;}
.x33_c00413{left:444.463053pt;}
.x64_c00413{left:446.592653pt;}
.x53_c00413{left:447.543053pt;}
.x9e_c00413{left:452.664653pt;}
.x66_c00413{left:453.645853pt;}
.x54_c00413{left:455.243053pt;}
.x70_c00413{left:457.346253pt;}
.x34_c00413{left:463.893453pt;}
.x8a_c00413{left:464.857053pt;}
.x62_c00413{left:466.177053pt;}
.xa5_c00413{left:468.047053pt;}
.x9f_c00413{left:471.483453pt;}
.x3c_c00413{left:473.450253pt;}
.x71_c00413{left:477.828253pt;}
.x4d_c00413{left:482.765053pt;}
.x9_c00413{left:483.904653pt;}
.x67_c00413{left:484.929853pt;}
.x55_c00413{left:485.924253pt;}
.xa6_c00413{left:489.756653pt;}
.xad_c00413{left:491.569453pt;}
.x56_c00413{left:493.188653pt;}
.x4e_c00413{left:494.689053pt;}
.x21_c00413{left:502.296653pt;}
.xa_c00413{left:509.393853pt;}
.x57_c00413{left:511.316653pt;}
.xb_c00413{left:512.883053pt;}
.x4f_c00413{left:516.011453pt;}
.x58_c00413{left:518.911053pt;}
.x35_c00413{left:520.165053pt;}
.x36_c00413{left:522.404653pt;}
.x50_c00413{left:525.348253pt;}
.xb2_c00413{left:528.401853pt;}
.x90_c00413{left:530.623853pt;}
.xaa_c00413{left:532.326653pt;}
.x59_c00413{left:534.667453pt;}
.x65_c00413{left:541.034253pt;}
.xc_c00413{left:541.967053pt;}
.x7a_c00413{left:543.053853pt;}
.x96_c00413{left:544.004253pt;}
.x5a_c00413{left:552.038653pt;}
.xa7_c00413{left:553.279453pt;}
.x7d_c00413{left:562.013453pt;}
.x37_c00413{left:571.680253pt;}
.x22_c00413{left:581.716653pt;}
.x83_c00413{left:583.921053pt;}
.x69_c00413{left:589.799453pt;}
.x63_c00413{left:591.071053pt;}
.x72_c00413{left:592.831053pt;}
.x68_c00413{left:596.619453pt;}
.x23_c00413{left:600.764253pt;}
.x2_c00413{left:603.307453pt;}
.x38_c00413{left:610.598253pt;}
.xae_c00413{left:619.609453pt;}
.x24_c00413{left:620.713853pt;}
.x3_c00413{left:622.170253pt;}
.xb1_c00413{left:626.147853pt;}
.x92_c00413{left:627.987053pt;}
.x8b_c00413{left:629.113453pt;}
.x39_c00413{left:630.275053pt;}
.x5b_c00413{left:640.249853pt;}
.x5c_c00413{left:644.236253pt;}
.x85_c00413{left:648.741853pt;}
.x7e_c00413{left:650.809853pt;}
.xa0_c00413{left:660.014653pt;}
.x84_c00413{left:662.333453pt;}
.x8c_c00413{left:670.491053pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c5f01f671bf28094e05d9067.woff2')format("woff");}.ff1_c00414{font-family:ff1_c00414;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00414;src:url('chunks/assets/font_c7d27baa52a4dd1bba0c3b46.woff2')format("woff");}.ff2_c00414{font-family:ff2_c00414;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00414;src:url('chunks/assets/font_39b8a82af8cbf9dedb730f71.woff2')format("woff");}.ff3_c00414{font-family:ff3_c00414;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00414;src:url('chunks/assets/font_eb2f7ad0c8c1eec9f98e0551.woff2')format("woff");}.ff4_c00414{font-family:ff4_c00414;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00414;src:url('chunks/assets/font_779b4367ccbc179d1b651a7b.woff2')format("woff");}.ff5_c00414{font-family:ff5_c00414;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00414;src:url('chunks/assets/font_dd75d8ad9495aa531dcb3474.woff2')format("woff");}.ff6_c00414{font-family:ff6_c00414;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00414;src:url('chunks/assets/font_e97ddb629aefd3e8f0dd1fd8.woff2')format("woff");}.ff7_c00414{font-family:ff7_c00414;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mc8_c00414{transform:matrix(0.017858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017858,0.000000,0.000000,0.250000,0,0);}
.m9a_c00414{transform:matrix(0.029413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.029413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.029413,0.000000,0.000000,0.250000,0,0);}
.m98_c00414{transform:matrix(0.036766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036766,0.000000,0.000000,0.250000,0,0);}
.mcb_c00414{transform:matrix(0.044644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.044644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.044644,0.000000,0.000000,0.250000,0,0);}
.m3f_c00414{transform:matrix(0.053572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053572,0.000000,0.000000,0.250000,0,0);}
.m117_c00414{transform:matrix(0.071429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071429,0.000000,0.000000,0.250000,0,0);}
.m9d_c00414{transform:matrix(0.073530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073530,0.000000,0.000000,0.250000,0,0);}
.m11d_c00414{transform:matrix(0.083336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083336,0.000000,0.000000,0.250000,0,0);}
.mf1_c00414{transform:matrix(0.086805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086805,0.000000,0.000000,0.250000,0,0);}
.m9e_c00414{transform:matrix(0.088235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088235,0.000000,0.000000,0.250000,0,0);}
.m10e_c00414{transform:matrix(0.089688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089688,0.000000,0.000000,0.250000,0,0);}
.mf2_c00414{transform:matrix(0.090279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090279,0.000000,0.000000,0.250000,0,0);}
.m91_c00414{transform:matrix(0.100002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100002,0.000000,0.000000,0.250000,0,0);}
.m104_c00414{transform:matrix(0.101564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101564,0.000000,0.000000,0.250000,0,0);}
.m109_c00414{transform:matrix(0.102041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102041,0.000000,0.000000,0.250000,0,0);}
.m99_c00414{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);}
.m100_c00414{transform:matrix(0.102942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102942,0.000000,0.000000,0.250000,0,0);}
.mea_c00414{transform:matrix(0.103542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103542,0.000000,0.000000,0.250000,0,0);}
.m12e_c00414{transform:matrix(0.104170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104170,0.000000,0.000000,0.250000,0,0);}
.mdf_c00414{transform:matrix(0.105364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105364,0.000000,0.000000,0.250000,0,0);}
.me6_c00414{transform:matrix(0.105558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105558,0.000000,0.000000,0.250000,0,0);}
.mc9_c00414{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);}
.m20_c00414{transform:matrix(0.107683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107683,0.000000,0.000000,0.250000,0,0);}
.mb9_c00414{transform:matrix(0.109283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109283,0.000000,0.000000,0.250000,0,0);}
.m7b_c00414{transform:matrix(0.111306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111306,0.000000,0.000000,0.250000,0,0);}
.md6_c00414{transform:matrix(0.114720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114720,0.000000,0.000000,0.250000,0,0);}
.m30_c00414{transform:matrix(0.118514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118514,0.000000,0.000000,0.250000,0,0);}
.m108_c00414{transform:matrix(0.119048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119048,0.000000,0.000000,0.250000,0,0);}
.m135_c00414{transform:matrix(0.124588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124588,0.000000,0.000000,0.250000,0,0);}
.m8c_c00414{transform:matrix(0.126191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126191,0.000000,0.000000,0.250000,0,0);}
.mda_c00414{transform:matrix(0.129425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129425,0.000000,0.000000,0.250000,0,0);}
.m106_c00414{transform:matrix(0.130979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130979,0.000000,0.000000,0.250000,0,0);}
.mca_c00414{transform:matrix(0.133929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133929,0.000000,0.000000,0.250000,0,0);}
.m134_c00414{transform:matrix(0.134522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134522,0.000000,0.000000,0.250000,0,0);}
.m105_c00414{transform:matrix(0.140626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140626,0.000000,0.000000,0.250000,0,0);}
.m3a_c00414{transform:matrix(0.141284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141284,0.000000,0.000000,0.250000,0,0);}
.m137_c00414{transform:matrix(0.143715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143715,0.000000,0.000000,0.250000,0,0);}
.m90_c00414{transform:matrix(0.148190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148190,0.000000,0.000000,0.250000,0,0);}
.m7d_c00414{transform:matrix(0.152403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152403,0.000000,0.000000,0.250000,0,0);}
.m3b_c00414{transform:matrix(0.153322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153322,0.000000,0.000000,0.250000,0,0);}
.m3e_c00414{transform:matrix(0.157142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157142,0.000000,0.000000,0.250000,0,0);}
.mff_c00414{transform:matrix(0.158989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158989,0.000000,0.000000,0.250000,0,0);}
.m40_c00414{transform:matrix(0.161905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161905,0.000000,0.000000,0.250000,0,0);}
.me0_c00414{transform:matrix(0.162512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162512,0.000000,0.000000,0.250000,0,0);}
.m34_c00414{transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);}
.m82_c00414{transform:matrix(0.164473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164473,0.000000,0.000000,0.250000,0,0);}
.m66_c00414{transform:matrix(0.164733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164733,0.000000,0.000000,0.250000,0,0);}
.md1_c00414{transform:matrix(0.165951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165951,0.000000,0.000000,0.250000,0,0);}
.m11f_c00414{transform:matrix(0.166668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166668,0.000000,0.000000,0.250000,0,0);}
.m12f_c00414{transform:matrix(0.166670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166670,0.000000,0.000000,0.250000,0,0);}
.m136_c00414{transform:matrix(0.168100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168100,0.000000,0.000000,0.250000,0,0);}
.mef_c00414{transform:matrix(0.169829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169829,0.000000,0.000000,0.250000,0,0);}
.mde_c00414{transform:matrix(0.170182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170182,0.000000,0.000000,0.250000,0,0);}
.m5_c00414{transform:matrix(0.171378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171378,0.000000,0.000000,0.250000,0,0);}
.m103_c00414{transform:matrix(0.175040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175040,0.000000,0.000000,0.250000,0,0);}
.m23_c00414{transform:matrix(0.175602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175602,0.000000,0.000000,0.250000,0,0);}
.m9f_c00414{transform:matrix(0.176471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176471,0.000000,0.000000,0.250000,0,0);}
.mbe_c00414{transform:matrix(0.176983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176983,0.000000,0.000000,0.250000,0,0);}
.mec_c00414{transform:matrix(0.178562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178562,0.000000,0.000000,0.250000,0,0);}
.mab_c00414{transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);}
.mf3_c00414{transform:matrix(0.179802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179802,0.000000,0.000000,0.250000,0,0);}
.m10c_c00414{transform:matrix(0.180606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180606,0.000000,0.000000,0.250000,0,0);}
.m8a_c00414{transform:matrix(0.183336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183336,0.000000,0.000000,0.250000,0,0);}
.mfb_c00414{transform:matrix(0.184044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184044,0.000000,0.000000,0.250000,0,0);}
.m81_c00414{transform:matrix(0.184210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184210,0.000000,0.000000,0.250000,0,0);}
.mad_c00414{transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);}
.m121_c00414{transform:matrix(0.187063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187063,0.000000,0.000000,0.250000,0,0);}
.m113_c00414{transform:matrix(0.188924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188924,0.000000,0.000000,0.250000,0,0);}
.ma3_c00414{transform:matrix(0.189036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189036,0.000000,0.000000,0.250000,0,0);}
.m118_c00414{transform:matrix(0.189285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189285,0.000000,0.000000,0.250000,0,0);}
.m111_c00414{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00414{transform:matrix(0.191669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191669,0.000000,0.000000,0.250000,0,0);}
.m92_c00414{transform:matrix(0.192143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192143,0.000000,0.000000,0.250000,0,0);}
.mb1_c00414{transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);}
.m10d_c00414{transform:matrix(0.193269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193269,0.000000,0.000000,0.250000,0,0);}
.m79_c00414{transform:matrix(0.194531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194531,0.000000,0.000000,0.250000,0,0);}
.m70_c00414{transform:matrix(0.194935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194935,0.000000,0.000000,0.250000,0,0);}
.m112_c00414{transform:matrix(0.196186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196186,0.000000,0.000000,0.250000,0,0);}
.mac_c00414{transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);}
.m131_c00414{transform:matrix(0.197897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197897,0.000000,0.000000,0.250000,0,0);}
.mcc_c00414{transform:matrix(0.199813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199813,0.000000,0.000000,0.250000,0,0);}
.mb7_c00414{transform:matrix(0.201313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201313,0.000000,0.000000,0.250000,0,0);}
.md7_c00414{transform:matrix(0.203207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203207,0.000000,0.000000,0.250000,0,0);}
.maa_c00414{transform:matrix(0.203572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203572,0.000000,0.000000,0.250000,0,0);}
.m83_c00414{transform:matrix(0.205591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205591,0.000000,0.000000,0.250000,0,0);}
.mfc_c00414{transform:matrix(0.206051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206051,0.000000,0.000000,0.250000,0,0);}
.m107_c00414{transform:matrix(0.208271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208271,0.000000,0.000000,0.250000,0,0);}
.m97_c00414{transform:matrix(0.208332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208332,0.000000,0.000000,0.250000,0,0);}
.maf_c00414{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00414{transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);}
.mb0_c00414{transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);}
.m129_c00414{transform:matrix(0.214599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214599,0.000000,0.000000,0.250000,0,0);}
.m10f_c00414{transform:matrix(0.216011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216011,0.000000,0.000000,0.250000,0,0);}
.ma6_c00414{transform:matrix(0.216177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216177,0.000000,0.000000,0.250000,0,0);}
.m127_c00414{transform:matrix(0.216988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216988,0.000000,0.000000,0.250000,0,0);}
.m12a_c00414{transform:matrix(0.217513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217513,0.000000,0.000000,0.250000,0,0);}
.m35_c00414{transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);}
.m130_c00414{transform:matrix(0.221362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221362,0.000000,0.000000,0.250000,0,0);}
.m9b_c00414{transform:matrix(0.223530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223530,0.000000,0.000000,0.250000,0,0);}
.m94_c00414{transform:matrix(0.224285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224285,0.000000,0.000000,0.250000,0,0);}
.m12b_c00414{transform:matrix(0.227139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227139,0.000000,0.000000,0.250000,0,0);}
.mae_c00414{transform:matrix(0.228572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228572,0.000000,0.000000,0.250000,0,0);}
.m5d_c00414{transform:matrix(0.231580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231580,0.000000,0.000000,0.250000,0,0);}
.mce_c00414{transform:matrix(0.237357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237357,0.000000,0.000000,0.250000,0,0);}
.m102_c00414{transform:matrix(0.237357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237357,0.000000,0.000000,0.250000,0,0);}
.mf0_c00414{transform:matrix(0.240565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240565,0.000000,0.000000,0.250000,0,0);}
.mdc_c00414{transform:matrix(0.249200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249200,0.000000,0.000000,0.250000,0,0);}
.m1_c00414{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00414{transform:matrix(0.250069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250069,0.000000,0.000000,0.250000,0,0);}
.mc1_c00414{transform:matrix(0.252113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252113,0.000000,0.000000,0.250000,0,0);}
.m6f_c00414{transform:matrix(0.252473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252473,0.000000,0.000000,0.250000,0,0);}
.m89_c00414{transform:matrix(0.253737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253737,0.000000,0.000000,0.250000,0,0);}
.m22_c00414{transform:matrix(0.254903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254903,0.000000,0.000000,0.250000,0,0);}
.m12c_c00414{transform:matrix(0.256522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256522,0.000000,0.000000,0.250000,0,0);}
.m1f_c00414{transform:matrix(0.256739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256739,0.000000,0.000000,0.250000,0,0);}
.mc6_c00414{transform:matrix(0.259353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259353,0.000000,0.000000,0.250000,0,0);}
.m93_c00414{transform:matrix(0.260070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260070,0.000000,0.000000,0.250000,0,0);}
.m7f_c00414{transform:matrix(0.260284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260284,0.000000,0.000000,0.250000,0,0);}
.ma7_c00414{transform:matrix(0.261811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261811,0.000000,0.000000,0.250000,0,0);}
.m61_c00414{transform:matrix(0.262727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262727,0.000000,0.000000,0.250000,0,0);}
.m11c_c00414{transform:matrix(0.263889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263889,0.000000,0.000000,0.250000,0,0);}
.m85_c00414{transform:matrix(0.264199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264199,0.000000,0.000000,0.250000,0,0);}
.m13f_c00414{transform:matrix(0.265645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265645,0.000000,0.000000,0.250000,0,0);}
.m4_c00414{transform:matrix(0.265890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265890,0.000000,0.000000,0.250000,0,0);}
.m126_c00414{transform:matrix(0.269419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269419,0.000000,0.000000,0.250000,0,0);}
.mb8_c00414{transform:matrix(0.270716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270716,0.000000,0.000000,0.250000,0,0);}
.m5b_c00414{transform:matrix(0.271210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271210,0.000000,0.000000,0.250000,0,0);}
.m5f_c00414{transform:matrix(0.272216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272216,0.000000,0.000000,0.250000,0,0);}
.m4e_c00414{transform:matrix(0.273666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273666,0.000000,0.000000,0.250000,0,0);}
.m9c_c00414{transform:matrix(0.273806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273806,0.000000,0.000000,0.250000,0,0);}
.m5c_c00414{transform:matrix(0.273891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273891,0.000000,0.000000,0.250000,0,0);}
.ma5_c00414{transform:matrix(0.275539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275539,0.000000,0.000000,0.250000,0,0);}
.m5e_c00414{transform:matrix(0.275772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275772,0.000000,0.000000,0.250000,0,0);}
.m41_c00414{transform:matrix(0.276154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276154,0.000000,0.000000,0.250000,0,0);}
.m27_c00414{transform:matrix(0.276501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276501,0.000000,0.000000,0.250000,0,0);}
.m110_c00414{transform:matrix(0.277085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277085,0.000000,0.000000,0.250000,0,0);}
.mfa_c00414{transform:matrix(0.278669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278669,0.000000,0.000000,0.250000,0,0);}
.m2c_c00414{transform:matrix(0.280927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280927,0.000000,0.000000,0.250000,0,0);}
.ma9_c00414{transform:matrix(0.281704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281704,0.000000,0.000000,0.250000,0,0);}
.m4a_c00414{transform:matrix(0.281985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281985,0.000000,0.000000,0.250000,0,0);}
.ma0_c00414{transform:matrix(0.282823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282823,0.000000,0.000000,0.250000,0,0);}
.meb_c00414{transform:matrix(0.283779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283779,0.000000,0.000000,0.250000,0,0);}
.me_c00414{transform:matrix(0.284226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284226,0.000000,0.000000,0.250000,0,0);}
.m37_c00414{transform:matrix(0.284444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284444,0.000000,0.000000,0.250000,0,0);}
.m114_c00414{transform:matrix(0.284538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284538,0.000000,0.000000,0.250000,0,0);}
.med_c00414{transform:matrix(0.286034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286034,0.000000,0.000000,0.250000,0,0);}
.m52_c00414{transform:matrix(0.286142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286142,0.000000,0.000000,0.250000,0,0);}
.m67_c00414{transform:matrix(0.287170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287170,0.000000,0.000000,0.250000,0,0);}
.m8f_c00414{transform:matrix(0.287588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287588,0.000000,0.000000,0.250000,0,0);}
.m116_c00414{transform:matrix(0.288046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288046,0.000000,0.000000,0.250000,0,0);}
.mee_c00414{transform:matrix(0.288069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288069,0.000000,0.000000,0.250000,0,0);}
.m2a_c00414{transform:matrix(0.288660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288660,0.000000,0.000000,0.250000,0,0);}
.m133_c00414{transform:matrix(0.288707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288707,0.000000,0.000000,0.250000,0,0);}
.m2f_c00414{transform:matrix(0.289304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289304,0.000000,0.000000,0.250000,0,0);}
.m26_c00414{transform:matrix(0.289828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289828,0.000000,0.000000,0.250000,0,0);}
.m6_c00414{transform:matrix(0.290309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290309,0.000000,0.000000,0.250000,0,0);}
.m0_c00414{transform:matrix(0.291217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291217,0.000000,0.000000,0.250000,0,0);}
.m19_c00414{transform:matrix(0.291252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291252,0.000000,0.000000,0.250000,0,0);}
.m55_c00414{transform:matrix(0.291976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291976,0.000000,0.000000,0.250000,0,0);}
.mc0_c00414{transform:matrix(0.292119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292119,0.000000,0.000000,0.250000,0,0);}
.m39_c00414{transform:matrix(0.292505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292505,0.000000,0.000000,0.250000,0,0);}
.m1c_c00414{transform:matrix(0.292581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292581,0.000000,0.000000,0.250000,0,0);}
.mfd_c00414{transform:matrix(0.293519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293519,0.000000,0.000000,0.250000,0,0);}
.m14_c00414{transform:matrix(0.293830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293830,0.000000,0.000000,0.250000,0,0);}
.m87_c00414{transform:matrix(0.293896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293896,0.000000,0.000000,0.250000,0,0);}
.m77_c00414{transform:matrix(0.294470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294470,0.000000,0.000000,0.250000,0,0);}
.m57_c00414{transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);}
.m21_c00414{transform:matrix(0.295568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295568,0.000000,0.000000,0.250000,0,0);}
.m6a_c00414{transform:matrix(0.295719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295719,0.000000,0.000000,0.250000,0,0);}
.m12_c00414{transform:matrix(0.296362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296362,0.000000,0.000000,0.250000,0,0);}
.m53_c00414{transform:matrix(0.297057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297057,0.000000,0.000000,0.250000,0,0);}
.m13c_c00414{transform:matrix(0.297082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297082,0.000000,0.000000,0.250000,0,0);}
.md9_c00414{transform:matrix(0.297161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297161,0.000000,0.000000,0.250000,0,0);}
.m1d_c00414{transform:matrix(0.297366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297366,0.000000,0.000000,0.250000,0,0);}
.m6c_c00414{transform:matrix(0.297824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297824,0.000000,0.000000,0.250000,0,0);}
.mbd_c00414{transform:matrix(0.298001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298001,0.000000,0.000000,0.250000,0,0);}
.m1b_c00414{transform:matrix(0.298770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298770,0.000000,0.000000,0.250000,0,0);}
.mbc_c00414{transform:matrix(0.299449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299449,0.000000,0.000000,0.250000,0,0);}
.mc3_c00414{transform:matrix(0.299636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299636,0.000000,0.000000,0.250000,0,0);}
.m62_c00414{transform:matrix(0.299918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299918,0.000000,0.000000,0.250000,0,0);}
.mb5_c00414{transform:matrix(0.300194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300194,0.000000,0.000000,0.250000,0,0);}
.me5_c00414{transform:matrix(0.300467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300467,0.000000,0.000000,0.250000,0,0);}
.me4_c00414{transform:matrix(0.301111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301111,0.000000,0.000000,0.250000,0,0);}
.m1a_c00414{transform:matrix(0.302640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302640,0.000000,0.000000,0.250000,0,0);}
.mdb_c00414{transform:matrix(0.302716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302716,0.000000,0.000000,0.250000,0,0);}
.m42_c00414{transform:matrix(0.303223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303223,0.000000,0.000000,0.250000,0,0);}
.mf6_c00414{transform:matrix(0.304114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304114,0.000000,0.000000,0.250000,0,0);}
.m2_c00414{transform:matrix(0.304674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304674,0.000000,0.000000,0.250000,0,0);}
.m33_c00414{transform:matrix(0.304821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304821,0.000000,0.000000,0.250000,0,0);}
.m5a_c00414{transform:matrix(0.304849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304849,0.000000,0.000000,0.250000,0,0);}
.m128_c00414{transform:matrix(0.305372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305372,0.000000,0.000000,0.250000,0,0);}
.m80_c00414{transform:matrix(0.305967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305967,0.000000,0.000000,0.250000,0,0);}
.m59_c00414{transform:matrix(0.306182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306182,0.000000,0.000000,0.250000,0,0);}
.me2_c00414{transform:matrix(0.308497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308497,0.000000,0.000000,0.250000,0,0);}
.m13_c00414{transform:matrix(0.308506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308506,0.000000,0.000000,0.250000,0,0);}
.m28_c00414{transform:matrix(0.309570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309570,0.000000,0.000000,0.250000,0,0);}
.m73_c00414{transform:matrix(0.309682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309682,0.000000,0.000000,0.250000,0,0);}
.md8_c00414{transform:matrix(0.310257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310257,0.000000,0.000000,0.250000,0,0);}
.m29_c00414{transform:matrix(0.310346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310346,0.000000,0.000000,0.250000,0,0);}
.m138_c00414{transform:matrix(0.311037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311037,0.000000,0.000000,0.250000,0,0);}
.mc7_c00414{transform:matrix(0.311378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311378,0.000000,0.000000,0.250000,0,0);}
.m6d_c00414{transform:matrix(0.311517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311517,0.000000,0.000000,0.250000,0,0);}
.m7c_c00414{transform:matrix(0.313767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313767,0.000000,0.000000,0.250000,0,0);}
.m2b_c00414{transform:matrix(0.313925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313925,0.000000,0.000000,0.250000,0,0);}
.m13d_c00414{transform:matrix(0.314050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314050,0.000000,0.000000,0.250000,0,0);}
.m11_c00414{transform:matrix(0.314586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314586,0.000000,0.000000,0.250000,0,0);}
.m18_c00414{transform:matrix(0.315313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315313,0.000000,0.000000,0.250000,0,0);}
.m63_c00414{transform:matrix(0.315510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315510,0.000000,0.000000,0.250000,0,0);}
.mf_c00414{transform:matrix(0.315890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315890,0.000000,0.000000,0.250000,0,0);}
.m7a_c00414{transform:matrix(0.316019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316019,0.000000,0.000000,0.250000,0,0);}
.m32_c00414{transform:matrix(0.317880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317880,0.000000,0.000000,0.250000,0,0);}
.m65_c00414{transform:matrix(0.318302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318302,0.000000,0.000000,0.250000,0,0);}
.mf4_c00414{transform:matrix(0.319063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319063,0.000000,0.000000,0.250000,0,0);}
.m71_c00414{transform:matrix(0.319389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319389,0.000000,0.000000,0.250000,0,0);}
.m75_c00414{transform:matrix(0.319787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319787,0.000000,0.000000,0.250000,0,0);}
.m3_c00414{transform:matrix(0.321161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321161,0.000000,0.000000,0.250000,0,0);}
.m7e_c00414{transform:matrix(0.321309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321309,0.000000,0.000000,0.250000,0,0);}
.m43_c00414{transform:matrix(0.323357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323357,0.000000,0.000000,0.250000,0,0);}
.m139_c00414{transform:matrix(0.324388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324388,0.000000,0.000000,0.250000,0,0);}
.m3d_c00414{transform:matrix(0.324487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324487,0.000000,0.000000,0.250000,0,0);}
.m7_c00414{transform:matrix(0.324942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324942,0.000000,0.000000,0.250000,0,0);}
.m86_c00414{transform:matrix(0.326338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326338,0.000000,0.000000,0.250000,0,0);}
.m68_c00414{transform:matrix(0.326453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326453,0.000000,0.000000,0.250000,0,0);}
.mdd_c00414{transform:matrix(0.327660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327660,0.000000,0.000000,0.250000,0,0);}
.ma2_c00414{transform:matrix(0.327704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327704,0.000000,0.000000,0.250000,0,0);}
.me1_c00414{transform:matrix(0.328642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328642,0.000000,0.000000,0.250000,0,0);}
.m48_c00414{transform:matrix(0.329155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329155,0.000000,0.000000,0.250000,0,0);}
.m17_c00414{transform:matrix(0.331029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331029,0.000000,0.000000,0.250000,0,0);}
.m3c_c00414{transform:matrix(0.332717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332717,0.000000,0.000000,0.250000,0,0);}
.m9_c00414{transform:matrix(0.333031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333031,0.000000,0.000000,0.250000,0,0);}
.m11e_c00414{transform:matrix(0.333328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333328,0.000000,0.000000,0.250000,0,0);}
.m78_c00414{transform:matrix(0.334010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334010,0.000000,0.000000,0.250000,0,0);}
.m60_c00414{transform:matrix(0.334473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334473,0.000000,0.000000,0.250000,0,0);}
.m4b_c00414{transform:matrix(0.334707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334707,0.000000,0.000000,0.250000,0,0);}
.me3_c00414{transform:matrix(0.334913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334913,0.000000,0.000000,0.250000,0,0);}
.mc2_c00414{transform:matrix(0.335202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335202,0.000000,0.000000,0.250000,0,0);}
.m4d_c00414{transform:matrix(0.336034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336034,0.000000,0.000000,0.250000,0,0);}
.m6b_c00414{transform:matrix(0.336052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336052,0.000000,0.000000,0.250000,0,0);}
.mb6_c00414{transform:matrix(0.337497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337497,0.000000,0.000000,0.250000,0,0);}
.m54_c00414{transform:matrix(0.339068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339068,0.000000,0.000000,0.250000,0,0);}
.m4f_c00414{transform:matrix(0.339543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339543,0.000000,0.000000,0.250000,0,0);}
.m13a_c00414{transform:matrix(0.340076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340076,0.000000,0.000000,0.250000,0,0);}
.m140_c00414{transform:matrix(0.340666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340666,0.000000,0.000000,0.250000,0,0);}
.m1e_c00414{transform:matrix(0.341332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341332,0.000000,0.000000,0.250000,0,0);}
.m13e_c00414{transform:matrix(0.341434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341434,0.000000,0.000000,0.250000,0,0);}
.m124_c00414{transform:matrix(0.341829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341829,0.000000,0.000000,0.250000,0,0);}
.m50_c00414{transform:matrix(0.341935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341935,0.000000,0.000000,0.250000,0,0);}
.mbf_c00414{transform:matrix(0.345168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345168,0.000000,0.000000,0.250000,0,0);}
.m58_c00414{transform:matrix(0.346869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346869,0.000000,0.000000,0.250000,0,0);}
.mbb_c00414{transform:matrix(0.348362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348362,0.000000,0.000000,0.250000,0,0);}
.m38_c00414{transform:matrix(0.348489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348489,0.000000,0.000000,0.250000,0,0);}
.mc4_c00414{transform:matrix(0.348934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348934,0.000000,0.000000,0.250000,0,0);}
.md2_c00414{transform:matrix(0.349260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349260,0.000000,0.000000,0.250000,0,0);}
.ma8_c00414{transform:matrix(0.351281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351281,0.000000,0.000000,0.250000,0,0);}
.m2d_c00414{transform:matrix(0.351671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351671,0.000000,0.000000,0.250000,0,0);}
.m10b_c00414{transform:matrix(0.352101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352101,0.000000,0.000000,0.250000,0,0);}
.md_c00414{transform:matrix(0.352524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352524,0.000000,0.000000,0.250000,0,0);}
.m47_c00414{transform:matrix(0.353291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353291,0.000000,0.000000,0.250000,0,0);}
.m12d_c00414{transform:matrix(0.354715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354715,0.000000,0.000000,0.250000,0,0);}
.m25_c00414{transform:matrix(0.355191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355191,0.000000,0.000000,0.250000,0,0);}
.ma1_c00414{transform:matrix(0.355334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355334,0.000000,0.000000,0.250000,0,0);}
.m69_c00414{transform:matrix(0.356524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356524,0.000000,0.000000,0.250000,0,0);}
.m125_c00414{transform:matrix(0.357549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357549,0.000000,0.000000,0.250000,0,0);}
.mb2_c00414{transform:matrix(0.360668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360668,0.000000,0.000000,0.250000,0,0);}
.m16_c00414{transform:matrix(0.360765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360765,0.000000,0.000000,0.250000,0,0);}
.m4c_c00414{transform:matrix(0.362038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362038,0.000000,0.000000,0.250000,0,0);}
.me9_c00414{transform:matrix(0.365770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365770,0.000000,0.000000,0.250000,0,0);}
.m36_c00414{transform:matrix(0.366994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366994,0.000000,0.000000,0.250000,0,0);}
.m15_c00414{transform:matrix(0.368594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368594,0.000000,0.000000,0.250000,0,0);}
.m24_c00414{transform:matrix(0.369265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369265,0.000000,0.000000,0.250000,0,0);}
.m13b_c00414{transform:matrix(0.372110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372110,0.000000,0.000000,0.250000,0,0);}
.m10_c00414{transform:matrix(0.372133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372133,0.000000,0.000000,0.250000,0,0);}
.m31_c00414{transform:matrix(0.373337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373337,0.000000,0.000000,0.250000,0,0);}
.ma_c00414{transform:matrix(0.373514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373514,0.000000,0.000000,0.250000,0,0);}
.m74_c00414{transform:matrix(0.375244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375244,0.000000,0.000000,0.250000,0,0);}
.m49_c00414{transform:matrix(0.377619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377619,0.000000,0.000000,0.250000,0,0);}
.m11a_c00414{transform:matrix(0.380872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380872,0.000000,0.000000,0.250000,0,0);}
.m2e_c00414{transform:matrix(0.381811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381811,0.000000,0.000000,0.250000,0,0);}
.ma4_c00414{transform:matrix(0.384358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384358,0.000000,0.000000,0.250000,0,0);}
.md3_c00414{transform:matrix(0.385440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385440,0.000000,0.000000,0.250000,0,0);}
.md0_c00414{transform:matrix(0.386808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386808,0.000000,0.000000,0.250000,0,0);}
.m11b_c00414{transform:matrix(0.387020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387020,0.000000,0.000000,0.250000,0,0);}
.m51_c00414{transform:matrix(0.387517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387517,0.000000,0.000000,0.250000,0,0);}
.mfe_c00414{transform:matrix(0.391269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391269,0.000000,0.000000,0.250000,0,0);}
.m120_c00414{transform:matrix(0.391549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391549,0.000000,0.000000,0.250000,0,0);}
.m8_c00414{transform:matrix(0.391899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391899,0.000000,0.000000,0.250000,0,0);}
.m6e_c00414{transform:matrix(0.392171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392171,0.000000,0.000000,0.250000,0,0);}
.mba_c00414{transform:matrix(0.393252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393252,0.000000,0.000000,0.250000,0,0);}
.m8d_c00414{transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);}
.m56_c00414{transform:matrix(0.396932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396932,0.000000,0.000000,0.250000,0,0);}
.mc_c00414{transform:matrix(0.399703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399703,0.000000,0.000000,0.250000,0,0);}
.m72_c00414{transform:matrix(0.402450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402450,0.000000,0.000000,0.250000,0,0);}
.m101_c00414{transform:matrix(0.404411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404411,0.000000,0.000000,0.250000,0,0);}
.m88_c00414{transform:matrix(0.406365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406365,0.000000,0.000000,0.250000,0,0);}
.mb4_c00414{transform:matrix(0.410698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410698,0.000000,0.000000,0.250000,0,0);}
.m123_c00414{transform:matrix(0.412995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412995,0.000000,0.000000,0.250000,0,0);}
.m76_c00414{transform:matrix(0.421405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421405,0.000000,0.000000,0.250000,0,0);}
.m84_c00414{transform:matrix(0.425416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425416,0.000000,0.000000,0.250000,0,0);}
.m8e_c00414{transform:matrix(0.432313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432313,0.000000,0.000000,0.250000,0,0);}
.mc5_c00414{transform:matrix(0.437492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437492,0.000000,0.000000,0.250000,0,0);}
.md4_c00414{transform:matrix(0.457235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457235,0.000000,0.000000,0.250000,0,0);}
.m115_c00414{transform:matrix(0.467986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467986,0.000000,0.000000,0.250000,0,0);}
.mb_c00414{transform:matrix(0.478240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478240,0.000000,0.000000,0.250000,0,0);}
.m10a_c00414{transform:matrix(0.479571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479571,0.000000,0.000000,0.250000,0,0);}
.m64_c00414{transform:matrix(0.495320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495320,0.000000,0.000000,0.250000,0,0);}
.mf8_c00414{transform:matrix(0.563589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563589,0.000000,0.000000,0.250000,0,0);}
.m122_c00414{transform:matrix(0.574666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574666,0.000000,0.000000,0.250000,0,0);}
.mf7_c00414{transform:matrix(0.623220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.623220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.623220,0.000000,0.000000,0.250000,0,0);}
.mcd_c00414{transform:matrix(0.628852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.628852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.628852,0.000000,0.000000,0.250000,0,0);}
.mf5_c00414{transform:matrix(0.632479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632479,0.000000,0.000000,0.250000,0,0);}
.m119_c00414{transform:matrix(0.653307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.653307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.653307,0.000000,0.000000,0.250000,0,0);}
.me8_c00414{transform:matrix(0.718322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.718322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.718322,0.000000,0.000000,0.250000,0,0);}
.m44_c00414{transform:matrix(0.772627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.772627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.772627,0.000000,0.000000,0.250000,0,0);}
.m46_c00414{transform:matrix(0.849006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.849006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.849006,0.000000,0.000000,0.250000,0,0);}
.m96_c00414{transform:matrix(0.944305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.944305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.944305,0.000000,0.000000,0.250000,0,0);}
.m132_c00414{transform:matrix(0.968373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.968373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.968373,0.000000,0.000000,0.250000,0,0);}
.me7_c00414{transform:matrix(0.969989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.969989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.969989,0.000000,0.000000,0.250000,0,0);}
.m95_c00414{transform:matrix(0.988531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.988531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.988531,0.000000,0.000000,0.250000,0,0);}
.mf9_c00414{transform:matrix(0.999979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.999979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.999979,0.000000,0.000000,0.250000,0,0);}
.md5_c00414{transform:matrix(1.096094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.096094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.096094,0.000000,0.000000,0.250000,0,0);}
.m45_c00414{transform:matrix(1.156474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.156474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.156474,0.000000,0.000000,0.250000,0,0);}
.v9_c00414{vertical-align:-8.553600px;}
.v6_c00414{vertical-align:-1.445400px;}
.v0_c00414{vertical-align:0.000000px;}
.va_c00414{vertical-align:5.682600px;}
.v4_c00414{vertical-align:7.128000px;}
.v3_c00414{vertical-align:9.999000px;}
.v1_c00414{vertical-align:11.404800px;}
.vb_c00414{vertical-align:14.256000px;}
.v7_c00414{vertical-align:18.552600px;}
.v8_c00414{vertical-align:34.194600px;}
.v5_c00414{vertical-align:39.897000px;}
.v2_c00414{vertical-align:41.342400px;}
.ls61_c00414{letter-spacing:-3.575880px;}
.ls35_c00414{letter-spacing:-2.772000px;}
.ls7d_c00414{letter-spacing:-2.550240px;}
.ls4c_c00414{letter-spacing:-2.522527px;}
.ls11_c00414{letter-spacing:-2.480940px;}
.ls67_c00414{letter-spacing:-2.425500px;}
.ls37_c00414{letter-spacing:-2.390850px;}
.ls51_c00414{letter-spacing:-2.328480px;}
.ls32_c00414{letter-spacing:-2.254111px;}
.ls68_c00414{letter-spacing:-2.217600px;}
.ls4b_c00414{letter-spacing:-2.058217px;}
.ls78_c00414{letter-spacing:-1.981980px;}
.ls71_c00414{letter-spacing:-1.912680px;}
.ls52_c00414{letter-spacing:-1.884967px;}
.ls27_c00414{letter-spacing:-1.858982px;}
.ls22_c00414{letter-spacing:-1.857240px;}
.ls60_c00414{letter-spacing:-1.746367px;}
.ls5e_c00414{letter-spacing:-1.739430px;}
.ls18_c00414{letter-spacing:-1.711717px;}
.ls1f_c00414{letter-spacing:-1.663200px;}
.ls4d_c00414{letter-spacing:-1.635480px;}
.ls66_c00414{letter-spacing:-1.628550px;}
.ls5b_c00414{letter-spacing:-1.621620px;}
.ls6a_c00414{letter-spacing:-1.552320px;}
.ls31_c00414{letter-spacing:-1.502741px;}
.ls46_c00414{letter-spacing:-1.441440px;}
.ls63_c00414{letter-spacing:-1.427580px;}
.ls80_c00414{letter-spacing:-1.413720px;}
.ls13_c00414{letter-spacing:-1.410592px;}
.ls45_c00414{letter-spacing:-1.395389px;}
.ls49_c00414{letter-spacing:-1.344420px;}
.ls77_c00414{letter-spacing:-1.323630px;}
.ls20_c00414{letter-spacing:-1.288980px;}
.ls3e_c00414{letter-spacing:-1.275120px;}
.ls2e_c00414{letter-spacing:-1.185030px;}
.ls7f_c00414{letter-spacing:-1.164240px;}
.ls79_c00414{letter-spacing:-1.143450px;}
.ls1e_c00414{letter-spacing:-1.112879px;}
.ls7c_c00414{letter-spacing:-1.081080px;}
.ls81_c00414{letter-spacing:-1.053360px;}
.ls64_c00414{letter-spacing:-1.011780px;}
.ls6b_c00414{letter-spacing:-0.960498px;}
.ls53_c00414{letter-spacing:-0.859320px;}
.ls24_c00414{letter-spacing:-0.748440px;}
.ls41_c00414{letter-spacing:-0.630630px;}
.ls14_c00414{letter-spacing:-0.602514px;}
.ls2a_c00414{letter-spacing:-0.547114px;}
.lsf_c00414{letter-spacing:0.000000px;}
.ls44_c00414{letter-spacing:0.158400px;}
.ls72_c00414{letter-spacing:0.193090px;}
.ls2_c00414{letter-spacing:0.333155px;}
.ls50_c00414{letter-spacing:0.424354px;}
.ls3f_c00414{letter-spacing:0.524324px;}
.ls1a_c00414{letter-spacing:0.544510px;}
.ls59_c00414{letter-spacing:0.574210px;}
.ls2f_c00414{letter-spacing:0.643510px;}
.lsa_c00414{letter-spacing:0.659221px;}
.ls4f_c00414{letter-spacing:0.752400px;}
.ls56_c00414{letter-spacing:0.772210px;}
.ls3_c00414{letter-spacing:0.830293px;}
.ls1b_c00414{letter-spacing:0.871200px;}
.ls40_c00414{letter-spacing:0.900900px;}
.ls6_c00414{letter-spacing:0.923710px;}
.ls1c_c00414{letter-spacing:0.964022px;}
.ls43_c00414{letter-spacing:0.990000px;}
.ls7a_c00414{letter-spacing:0.999900px;}
.ls47_c00414{letter-spacing:1.059300px;}
.ls7e_c00414{letter-spacing:1.069200px;}
.ls57_c00414{letter-spacing:1.128600px;}
.ls38_c00414{letter-spacing:1.227600px;}
.lsd_c00414{letter-spacing:1.321214px;}
.ls55_c00414{letter-spacing:1.425600px;}
.ls3c_c00414{letter-spacing:1.465200px;}
.ls48_c00414{letter-spacing:1.534500px;}
.ls5_c00414{letter-spacing:1.598454px;}
.ls6e_c00414{letter-spacing:1.623600px;}
.ls2d_c00414{letter-spacing:1.692900px;}
.ls2c_c00414{letter-spacing:1.811700px;}
.ls73_c00414{letter-spacing:1.821600px;}
.ls6d_c00414{letter-spacing:1.881000px;}
.ls42_c00414{letter-spacing:1.890900px;}
.ls74_c00414{letter-spacing:1.920600px;}
.ls65_c00414{letter-spacing:1.989900px;}
.ls76_c00414{letter-spacing:2.019600px;}
.ls21_c00414{letter-spacing:2.039400px;}
.ls12_c00414{letter-spacing:2.059200px;}
.ls5c_c00414{letter-spacing:2.316600px;}
.ls3b_c00414{letter-spacing:2.356200px;}
.ls0_c00414{letter-spacing:2.401661px;}
.lsb_c00414{letter-spacing:2.424708px;}
.ls17_c00414{letter-spacing:2.445310px;}
.ls5d_c00414{letter-spacing:2.484900px;}
.ls70_c00414{letter-spacing:2.494810px;}
.ls82_c00414{letter-spacing:2.504700px;}
.ls75_c00414{letter-spacing:2.574000px;}
.ls23_c00414{letter-spacing:2.673000px;}
.ls39_c00414{letter-spacing:2.683304px;}
.ls33_c00414{letter-spacing:2.692810px;}
.ls2b_c00414{letter-spacing:2.811600px;}
.ls34_c00414{letter-spacing:2.851200px;}
.ls25_c00414{letter-spacing:2.899156px;}
.ls4a_c00414{letter-spacing:2.940310px;}
.ls58_c00414{letter-spacing:2.970000px;}
.ls69_c00414{letter-spacing:3.168000px;}
.ls83_c00414{letter-spacing:3.281929px;}
.ls36_c00414{letter-spacing:3.415500px;}
.ls10_c00414{letter-spacing:3.544200px;}
.ls1d_c00414{letter-spacing:3.564000px;}
.lse_c00414{letter-spacing:3.623400px;}
.ls6c_c00414{letter-spacing:3.801610px;}
.ls15_c00414{letter-spacing:3.920400px;}
.ls5a_c00414{letter-spacing:7.128198px;}
.ls1_c00414{letter-spacing:9.966462px;}
.ls3a_c00414{letter-spacing:11.404998px;}
.ls6f_c00414{letter-spacing:12.830598px;}
.ls7b_c00414{letter-spacing:17.107200px;}
.ls28_c00414{letter-spacing:21.384000px;}
.ls62_c00414{letter-spacing:22.809798px;}
.ls5f_c00414{letter-spacing:24.235398px;}
.ls29_c00414{letter-spacing:29.937798px;}
.ls54_c00414{letter-spacing:34.214598px;}
.ls4e_c00414{letter-spacing:35.640000px;}
.ls16_c00414{letter-spacing:37.065798px;}
.ls3d_c00414{letter-spacing:39.916800px;}
.ls30_c00414{letter-spacing:48.470598px;}
.ls19_c00414{letter-spacing:49.896198px;}
.ls26_c00414{letter-spacing:54.172998px;}
.ls9_c00414{letter-spacing:62.541864px;}
.ls8_c00414{letter-spacing:70.394478px;}
.ls7_c00414{letter-spacing:83.360376px;}
.ls4_c00414{letter-spacing:84.864780px;}
.lsc_c00414{letter-spacing:364.205886px;}
.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;}
}
.ws1_c00414{word-spacing:-98.703149px;}
.wsa_c00414{word-spacing:-18.380221px;}
.ws6_c00414{word-spacing:-18.054155px;}
.ws0_c00414{word-spacing:-17.721000px;}
.ws9_c00414{word-spacing:-17.077500px;}
.ws8_c00414{word-spacing:-15.137660px;}
.ws5_c00414{word-spacing:-5.540734px;}
.ws4_c00414{word-spacing:-0.623779px;}
.wsb_c00414{word-spacing:0.000000px;}
.ws7_c00414{word-spacing:1.436292px;}
.ws3_c00414{word-spacing:4.297709px;}
.ws2_c00414{word-spacing:10.888773px;}
._1a_c00414{margin-left:-29.487744px;}
._2b_c00414{margin-left:-26.249146px;}
._2d_c00414{margin-left:-19.720800px;}
._25_c00414{margin-left:-18.179568px;}
._26_c00414{margin-left:-15.555672px;}
._16_c00414{margin-left:-12.416184px;}
._5_c00414{margin-left:-7.442820px;}
._1f_c00414{margin-left:-4.584096px;}
._27_c00414{margin-left:-3.272654px;}
._20_c00414{margin-left:-1.390356px;}
._7_c00414{width:1.984752px;}
._18_c00414{width:3.479612px;}
._1b_c00414{width:4.934952px;}
._1e_c00414{width:6.259057px;}
._d_c00414{width:8.717940px;}
._c_c00414{width:9.852876px;}
._31_c00414{width:11.206800px;}
._10_c00414{width:12.900888px;}
._17_c00414{width:13.974444px;}
._11_c00414{width:16.090668px;}
._12_c00414{width:17.861976px;}
._9_c00414{width:21.379248px;}
._f_c00414{width:22.895532px;}
._a_c00414{width:24.384888px;}
._2_c00414{width:25.801776px;}
._19_c00414{width:28.135800px;}
._e_c00414{width:30.373200px;}
._3_c00414{width:31.856180px;}
._0_c00414{width:34.392600px;}
._1_c00414{width:36.154800px;}
._4_c00414{width:37.781172px;}
._6_c00414{width:39.441600px;}
._b_c00414{width:40.757508px;}
._2c_c00414{width:44.411400px;}
._32_c00414{width:48.717900px;}
._13_c00414{width:52.092691px;}
._34_c00414{width:56.294964px;}
._15_c00414{width:67.740552px;}
._28_c00414{width:89.344134px;}
._2f_c00414{width:91.458180px;}
._1c_c00414{width:109.989000px;}
._22_c00414{width:112.325400px;}
._23_c00414{width:115.958552px;}
._2a_c00414{width:136.149552px;}
._14_c00414{width:151.048656px;}
._2e_c00414{width:157.707000px;}
._24_c00414{width:168.181081px;}
._8_c00414{width:202.197490px;}
._30_c00414{width:316.689788px;}
._21_c00414{width:406.635999px;}
._29_c00414{width:422.825040px;}
._1d_c00414{width:555.736352px;}
._33_c00414{width:587.399789px;}
.fc0_c00414{color:transparent;}
.fs38_c00414{font-size:3.168000px;}
.fs4e_c00414{font-size:7.128198px;}
.fs5e_c00414{font-size:9.108000px;}
.fs45_c00414{font-size:9.702198px;}
.fs4b_c00414{font-size:10.296000px;}
.fsc_c00414{font-size:10.890198px;}
.fs2c_c00414{font-size:11.404998px;}
.fs4d_c00414{font-size:11.484198px;}
.fs64_c00414{font-size:12.830598px;}
.fs21_c00414{font-size:12.870198px;}
.fs6_c00414{font-size:14.454198px;}
.fs44_c00414{font-size:15.048000px;}
.fs4a_c00414{font-size:15.444198px;}
.fs6c_c00414{font-size:17.107200px;}
.fsd_c00414{font-size:17.424000px;}
.fs33_c00414{font-size:18.018000px;}
.fs36_c00414{font-size:19.800000px;}
.fs6b_c00414{font-size:19.998000px;}
.fs3a_c00414{font-size:21.186000px;}
.fs14_c00414{font-size:21.384000px;}
.fs3e_c00414{font-size:22.572000px;}
.fs52_c00414{font-size:22.809798px;}
.fs50_c00414{font-size:24.235398px;}
.fs29_c00414{font-size:24.552000px;}
.fs1e_c00414{font-size:24.948000px;}
.fs48_c00414{font-size:27.720000px;}
.fs56_c00414{font-size:28.314000px;}
.fs49_c00414{font-size:28.512000px;}
.fs53_c00414{font-size:28.908000px;}
.fs2e_c00414{font-size:29.304000px;}
.fs19_c00414{font-size:29.937798px;}
.fs70_c00414{font-size:30.096000px;}
.fs3b_c00414{font-size:30.690000px;}
.fs6d_c00414{font-size:30.888000px;}
.fs1d_c00414{font-size:31.086000px;}
.fs63_c00414{font-size:32.472000px;}
.fs6a_c00414{font-size:32.670000px;}
.fs55_c00414{font-size:33.264000px;}
.fs25_c00414{font-size:33.660000px;}
.fs20_c00414{font-size:33.858000px;}
.fs42_c00414{font-size:34.056198px;}
.fs46_c00414{font-size:34.214598px;}
.fs6e_c00414{font-size:34.650000px;}
.fs41_c00414{font-size:35.640000px;}
.fs1c_c00414{font-size:36.234000px;}
.fs31_c00414{font-size:36.432000px;}
.fs10_c00414{font-size:36.828000px;}
.fs8_c00414{font-size:37.065798px;}
.fs1a_c00414{font-size:37.224000px;}
.fs61_c00414{font-size:37.620000px;}
.fs35_c00414{font-size:37.818000px;}
.fs3c_c00414{font-size:38.412000px;}
.fs1b_c00414{font-size:38.808000px;}
.fs23_c00414{font-size:39.600000px;}
.fs57_c00414{font-size:39.798000px;}
.fs30_c00414{font-size:39.916800px;}
.fs69_c00414{font-size:40.392000px;}
.fs11_c00414{font-size:40.788000px;}
.fs3_c00414{font-size:41.184000px;}
.fs5d_c00414{font-size:41.580000px;}
.fs71_c00414{font-size:43.164000px;}
.fs5b_c00414{font-size:44.352000px;}
.fs37_c00414{font-size:46.332000px;}
.fs58_c00414{font-size:46.530000px;}
.fs40_c00414{font-size:46.728000px;}
.fs2d_c00414{font-size:47.124000px;}
.fsf_c00414{font-size:47.520000px;}
.fs32_c00414{font-size:47.718000px;}
.fs18_c00414{font-size:47.916198px;}
.fs22_c00414{font-size:48.470598px;}
.fs9_c00414{font-size:48.906198px;}
.fs4f_c00414{font-size:49.698000px;}
.fsb_c00414{font-size:49.896198px;}
.fs2f_c00414{font-size:50.094000px;}
.fs67_c00414{font-size:51.480000px;}
.fs12_c00414{font-size:53.064000px;}
.fs13_c00414{font-size:53.460000px;}
.fs24_c00414{font-size:53.856198px;}
.fs15_c00414{font-size:54.172998px;}
.fs66_c00414{font-size:54.648000px;}
.fs1f_c00414{font-size:56.232000px;}
.fs68_c00414{font-size:56.628000px;}
.fs26_c00414{font-size:57.024000px;}
.fs65_c00414{font-size:57.420000px;}
.fs47_c00414{font-size:58.608000px;}
.fs3d_c00414{font-size:58.806198px;}
.fs4c_c00414{font-size:59.400000px;}
.fs5c_c00414{font-size:60.192000px;}
.fsa_c00414{font-size:62.568000px;}
.fs5a_c00414{font-size:63.360000px;}
.fs17_c00414{font-size:64.548000px;}
.fs1_c00414{font-size:65.538000px;}
.fs39_c00414{font-size:66.132198px;}
.fs16_c00414{font-size:66.528000px;}
.fs62_c00414{font-size:67.518000px;}
.fs60_c00414{font-size:68.112198px;}
.fs28_c00414{font-size:68.310000px;}
.fs2b_c00414{font-size:68.706198px;}
.fs59_c00414{font-size:69.300000px;}
.fs2a_c00414{font-size:69.696198px;}
.fs2_c00414{font-size:70.884000px;}
.fse_c00414{font-size:71.280000px;}
.fs3f_c00414{font-size:72.072198px;}
.fs0_c00414{font-size:72.468000px;}
.fs6f_c00414{font-size:72.864000px;}
.fs4_c00414{font-size:75.240000px;}
.fs54_c00414{font-size:76.032198px;}
.fs7_c00414{font-size:78.408000px;}
.fs27_c00414{font-size:79.200000px;}
.fs43_c00414{font-size:86.328000px;}
.fs5f_c00414{font-size:89.496198px;}
.fs5_c00414{font-size:91.872198px;}
.fs34_c00414{font-size:100.980000px;}
.fs51_c00414{font-size:102.168000px;}
.y0_c00414{bottom:0.000000px;}
.y1_c00414{bottom:76.500000px;}
.y61_c00414{bottom:154.584585px;}
.y60_c00414{bottom:180.245385px;}
.y5c_c00414{bottom:183.101535px;}
.y5b_c00414{bottom:184.165785px;}
.y5a_c00414{bottom:184.527135px;}
.y58_c00414{bottom:186.309135px;}
.y57_c00414{bottom:186.665535px;}
.y5f_c00414{bottom:187.021935px;}
.y59_c00414{bottom:187.378335px;}
.y5e_c00414{bottom:188.091135px;}
.y5d_c00414{bottom:189.155385px;}
.y56_c00414{bottom:190.580985px;}
.y55_c00414{bottom:191.655135px;}
.y54_c00414{bottom:199.137060px;}
.y4b_c00414{bottom:209.475135px;}
.y4d_c00414{bottom:213.395535px;}
.y53_c00414{bottom:214.821135px;}
.y52_c00414{bottom:216.241785px;}
.y51_c00414{bottom:217.667385px;}
.y4e_c00414{bottom:219.097935px;}
.y48_c00414{bottom:219.805785px;}
.y4f_c00414{bottom:220.167135px;}
.y4a_c00414{bottom:220.523535px;}
.y47_c00414{bottom:220.879935px;}
.y50_c00414{bottom:221.236335px;}
.y4c_c00414{bottom:221.592735px;}
.y49_c00414{bottom:223.018335px;}
.y3b_c00414{bottom:225.864585px;}
.y2a_c00414{bottom:229.433535px;}
.y45_c00414{bottom:244.753785px;}
.y3a_c00414{bottom:247.609935px;}
.y46_c00414{bottom:247.966335px;}
.y3f_c00414{bottom:248.322735px;}
.y39_c00414{bottom:250.461135px;}
.y42_c00414{bottom:252.955935px;}
.y3e_c00414{bottom:255.094335px;}
.y44_c00414{bottom:257.227785px;}
.y38_c00414{bottom:257.589135px;}
.y43_c00414{bottom:258.301935px;}
.y3d_c00414{bottom:259.727535px;}
.y41_c00414{bottom:262.217385px;}
.y37_c00414{bottom:276.834735px;}
.y3c_c00414{bottom:277.898985px;}
.y40_c00414{bottom:280.398735px;}
.y29_c00414{bottom:284.319135px;}
.y36_c00414{bottom:284.670585px;}
.y34_c00414{bottom:285.744735px;}
.y33_c00414{bottom:291.803535px;}
.y35_c00414{bottom:295.718985px;}
.y2f_c00414{bottom:316.395135px;}
.y28_c00414{bottom:317.464335px;}
.y32_c00414{bottom:318.172185px;}
.y2d_c00414{bottom:318.884985px;}
.y2e_c00414{bottom:320.671935px;}
.y31_c00414{bottom:321.023385px;}
.y30_c00414{bottom:324.587385px;}
.y2c_c00414{bottom:345.976335px;}
.y27_c00414{bottom:347.040585px;}
.y25_c00414{bottom:349.178985px;}
.y26_c00414{bottom:349.540335px;}
.y2b_c00414{bottom:349.891785px;}
.y23_c00414{bottom:381.967785px;}
.y24_c00414{bottom:389.813535px;}
.y22_c00414{bottom:446.124735px;}
.y21_c00414{bottom:473.567535px;}
.y20_c00414{bottom:478.552185px;}
.y19_c00414{bottom:509.558985px;}
.y1a_c00414{bottom:509.915385px;}
.y1b_c00414{bottom:510.276735px;}
.y1d_c00414{bottom:510.633135px;}
.y1f_c00414{bottom:511.702335px;}
.y1e_c00414{bottom:513.127935px;}
.y1c_c00414{bottom:513.835785px;}
.y18_c00414{bottom:542.347785px;}
.y15_c00414{bottom:575.136585px;}
.y17_c00414{bottom:575.497935px;}
.y16_c00414{bottom:585.115785px;}
.y14_c00414{bottom:607.568985px;}
.y13_c00414{bottom:636.442335px;}
.y11_c00414{bottom:639.649935px;}
.y12_c00414{bottom:640.357785px;}
.y10_c00414{bottom:673.864335px;}
.yf_c00414{bottom:703.445535px;}
.ye_c00414{bottom:706.653135px;}
.yd_c00414{bottom:732.665385px;}
.yc_c00414{bottom:739.085535px;}
.yb_c00414{bottom:771.517935px;}
.ya_c00414{bottom:803.945385px;}
.y9_c00414{bottom:867.740985px;}
.y8_c00414{bottom:878.076585px;}
.y7_c00414{bottom:892.337535px;}
.y5_c00414{bottom:900.891135px;}
.y6_c00414{bottom:901.247535px;}
.y4_c00414{bottom:933.679935px;}
.y3_c00414{bottom:1018.498185px;}
.y2_c00414{bottom:1088.352585px;}
.h38_c00414{height:3.109219px;}
.h54_c00414{height:4.747380px;}
.h2d_c00414{height:7.595729px;}
.h6b_c00414{height:8.545178px;}
.h63_c00414{height:9.499359px;}
.h51_c00414{height:10.738406px;}
.he_c00414{height:11.358136px;}
.h78_c00414{height:11.393395px;}
.h53_c00414{height:11.977660px;}
.h21_c00414{height:12.631395px;}
.h8_c00414{height:14.186005px;}
.h1a_c00414{height:14.241744px;}
.h4a_c00414{height:14.768789px;}
.h5a_c00414{height:15.191325px;}
.h4f_c00414{height:16.107816px;}
.h56_c00414{height:16.140775px;}
.hf_c00414{height:17.100703px;}
.h32_c00414{height:17.683682px;}
.h49_c00414{height:18.172688px;}
.h36_c00414{height:19.432617px;}
.h77_c00414{height:19.626943px;}
.h1c_c00414{height:19.938573px;}
.h16_c00414{height:20.987227px;}
.h3b_c00414{height:22.096336px;}
.h50_c00414{height:22.153184px;}
.h4c_c00414{height:22.786922px;}
.h43_c00414{height:23.736240px;}
.h29_c00414{height:24.096445px;}
.ha_c00414{height:24.685821px;}
.h48_c00414{height:25.606969px;}
.h30_c00414{height:26.584589px;}
.h4e_c00414{height:27.969047px;}
.h2f_c00414{height:28.745965px;}
.h7f_c00414{height:29.537578px;}
.h7c_c00414{height:29.737125px;}
.h5b_c00414{height:30.150141px;}
.h3d_c00414{height:32.008711px;}
.h76_c00414{height:32.063818px;}
.h79_c00414{height:32.215219px;}
.h22_c00414{height:32.281418px;}
.h25_c00414{height:33.035449px;}
.h20_c00414{height:33.229775px;}
.hd_c00414{height:33.230868px;}
.h6a_c00414{height:33.867281px;}
.h7d_c00414{height:34.693313px;}
.h3c_c00414{height:35.312836px;}
.h66_c00414{height:35.519550px;}
.h31_c00414{height:35.756016px;}
.h17_c00414{height:36.079217px;}
.h12_c00414{height:36.144668px;}
.h68_c00414{height:36.921973px;}
.h35_c00414{height:37.097833px;}
.h6f_c00414{height:37.680521px;}
.h1e_c00414{height:37.790930px;}
.h6e_c00414{height:37.997438px;}
.h44_c00414{height:38.617116px;}
.h73_c00414{height:39.442992px;}
.h72_c00414{height:39.622816px;}
.h7e_c00414{height:39.642539px;}
.h59_c00414{height:40.031191px;}
.h3e_c00414{height:40.062516px;}
.h3a_c00414{height:40.419844px;}
.h23_c00414{height:41.301563px;}
.h5d_c00414{height:41.508070px;}
.h13_c00414{height:42.540609px;}
.h5_c00414{height:42.953625px;}
.h61_c00414{height:43.507406px;}
.h42_c00414{height:45.860977px;}
.h11_c00414{height:46.638281px;}
.h2c_c00414{height:47.603531px;}
.hb_c00414{height:47.998759px;}
.h37_c00414{height:48.322828px;}
.h5e_c00414{height:48.529336px;}
.h55_c00414{height:48.775869px;}
.h57_c00414{height:48.970390px;}
.h2e_c00414{height:49.148859px;}
.h80_c00414{height:49.164521px;}
.h1b_c00414{height:49.975097px;}
.h71_c00414{height:50.524805px;}
.h14_c00414{height:52.079414px;}
.h15_c00414{height:52.468066px;}
.h24_c00414{height:52.856913px;}
.h6d_c00414{height:53.634023px;}
.h1f_c00414{height:55.188633px;}
.h33_c00414{height:55.344094px;}
.h26_c00414{height:55.965938px;}
.h65_c00414{height:58.297852px;}
.h75_c00414{height:59.061234px;}
.h6c_c00414{height:59.887266px;}
.h3f_c00414{height:61.333027px;}
.h52_c00414{height:61.952344px;}
.h62_c00414{height:62.778375px;}
.h4d_c00414{height:63.105694px;}
.h19_c00414{height:63.350332px;}
.h3_c00414{height:64.321963px;}
.h39_c00414{height:64.905136px;}
.hc_c00414{height:65.256469px;}
.h60_c00414{height:66.082500px;}
.h69_c00414{height:66.265225px;}
.h28_c00414{height:67.042529px;}
.h2b_c00414{height:67.431376px;}
.h5f_c00414{height:68.014160px;}
.h74_c00414{height:68.403007px;}
.h4b_c00414{height:69.386625px;}
.h4_c00414{height:69.568770px;}
.h41_c00414{height:70.734921px;}
.h5c_c00414{height:70.745607px;}
.h2_c00414{height:71.123379px;}
.h7b_c00414{height:71.512031px;}
.h46_c00414{height:72.690957px;}
.h6_c00414{height:73.843945px;}
.h10_c00414{height:74.342813px;}
.h64_c00414{height:74.584319px;}
.h18_c00414{height:76.665909px;}
.h9_c00414{height:76.953164px;}
.h27_c00414{height:77.730469px;}
.h7a_c00414{height:81.471431px;}
.h2a_c00414{height:82.689957px;}
.h70_c00414{height:83.824770px;}
.h47_c00414{height:84.726211px;}
.h67_c00414{height:87.835624px;}
.h45_c00414{height:90.167538px;}
.h7_c00414{height:95.819832px;}
.h1d_c00414{height:96.686494px;}
.h34_c00414{height:105.318984px;}
.h58_c00414{height:106.558031px;}
.h40_c00414{height:110.631921px;}
.h1_c00414{height:1110.000000px;}
.h0_c00414{height:1263.000000px;}
.w1_c00414{width:775.500000px;}
.w0_c00414{width:892.500000px;}
.x0_c00414{left:0.000000px;}
.x1_c00414{left:58.500000px;}
.x46_c00414{left:78.706635px;}
.x4_c00414{left:80.048085px;}
.x57_c00414{left:81.354885px;}
.x4f_c00414{left:82.681485px;}
.x58_c00414{left:92.378535px;}
.x7f_c00414{left:95.823735px;}
.x7a_c00414{left:100.224285px;}
.xa3_c00414{left:103.298235px;}
.x3b_c00414{left:111.490485px;}
.x5_c00414{left:112.925985px;}
.xbe_c00414{left:114.505035px;}
.x72_c00414{left:115.821735px;}
.x47_c00414{left:121.895385px;}
.x14_c00414{left:123.469485px;}
.x50_c00414{left:125.355435px;}
.x24_c00414{left:132.478485px;}
.x30_c00414{left:134.443635px;}
.xb0_c00414{left:138.710535px;}
.x4b_c00414{left:144.972285px;}
.xa1_c00414{left:146.338485px;}
.xa7_c00414{left:152.169585px;}
.xa6_c00414{left:154.555485px;}
.x20_c00414{left:156.847335px;}
.x7d_c00414{left:165.866235px;}
.x31_c00414{left:166.885935px;}
.x66_c00414{left:170.143035px;}
.xb1_c00414{left:175.696935px;}
.x15_c00414{left:178.696635px;}
.xa8_c00414{left:180.770685px;}
.x21_c00414{left:189.641085px;}
.xa5_c00414{left:196.150335px;}
.x6_c00414{left:200.738985px;}
.x7e_c00414{left:204.713835px;}
.x16_c00414{left:211.490385px;}
.x7_c00414{left:212.549685px;}
.xb2_c00414{left:213.668385px;}
.x48_c00414{left:216.286935px;}
.x55_c00414{left:222.172485px;}
.x73_c00414{left:223.449585px;}
.x74_c00414{left:227.013585px;}
.x17_c00414{left:228.513435px;}
.x18_c00414{left:231.998235px;}
.x7b_c00414{left:233.428785px;}
.x75_c00414{left:235.215735px;}
.xa9_c00414{left:237.576885px;}
.x1f_c00414{left:239.096535px;}
.x8_c00414{left:245.036535px;}
.xbf_c00414{left:246.105735px;}
.xb3_c00414{left:247.843185px;}
.x9_c00414{left:256.114635px;}
.x76_c00414{left:257.480835px;}
.x32_c00414{left:267.212535px;}
.xa2_c00414{left:271.271535px;}
.x3_c00414{left:278.137185px;}
.x25_c00414{left:283.898985px;}
.xc0_c00414{left:284.958285px;}
.x19_c00414{left:289.061835px;}
.xbd_c00414{left:293.853435px;}
.x51_c00414{left:298.833135px;}
.x80_c00414{left:300.243885px;}
.x22_c00414{left:301.501185px;}
.x59_c00414{left:310.049835px;}
.x61_c00414{left:312.198135px;}
.xa4_c00414{left:313.559385px;}
.x26_c00414{left:322.350585px;}
.x33_c00414{left:323.404935px;}
.x34_c00414{left:333.720735px;}
.x27_c00414{left:343.091085px;}
.x35_c00414{left:344.551335px;}
.x82_c00414{left:345.561135px;}
.x8b_c00414{left:348.090585px;}
.xaa_c00414{left:352.877235px;}
.xa_c00414{left:355.545285px;}
.x83_c00414{left:357.262935px;}
.x28_c00414{left:366.262035px;}
.xab_c00414{left:367.643085px;}
.xb4_c00414{left:368.746935px;}
.x36_c00414{left:377.439135px;}
.x29_c00414{left:378.909285px;}
.x23_c00414{left:380.334885px;}
.x49_c00414{left:388.007385px;}
.xb_c00414{left:389.022135px;}
.x84_c00414{left:391.313985px;}
.x8c_c00414{left:398.664735px;}
.xc_c00414{left:399.981435px;}
.x5a_c00414{left:401.402085px;}
.x41_c00414{left:406.411485px;}
.x52_c00414{left:411.420885px;}
.x85_c00414{left:417.276735px;}
.x1a_c00414{left:422.098035px;}
.x3c_c00414{left:423.389985px;}
.x86_c00414{left:426.874785px;}
.x3d_c00414{left:433.725585px;}
.x2a_c00414{left:443.882985px;}
.x77_c00414{left:445.259085px;}
.x54_c00414{left:448.174635px;}
.x4c_c00414{left:454.000785px;}
.x2b_c00414{left:455.901585px;}
.xac_c00414{left:457.074735px;}
.x3e_c00414{left:461.168385px;}
.xd_c00414{left:465.851085px;}
.x4d_c00414{left:466.994535px;}
.x42_c00414{left:476.072835px;}
.x78_c00414{left:478.795335px;}
.x37_c00414{left:487.546935px;}
.x2c_c00414{left:489.452685px;}
.x38_c00414{left:498.233985px;}
.xe_c00414{left:499.258635px;}
.x5b_c00414{left:500.857485px;}
.x88_c00414{left:502.693935px;}
.x56_c00414{left:508.534935px;}
.xae_c00414{left:509.940735px;}
.x62_c00414{left:511.034685px;}
.x4e_c00414{left:512.702835px;}
.x1b_c00414{left:521.899935px;}
.xad_c00414{left:523.399785px;}
.x8d_c00414{left:529.790235px;}
.x39_c00414{left:532.374135px;}
.xb5_c00414{left:534.012585px;}
.x87_c00414{left:536.967735px;}
.xb6_c00414{left:538.715085px;}
.x8a_c00414{left:539.967435px;}
.x43_c00414{left:542.254335px;}
.x63_c00414{left:544.031385px;}
.xf_c00414{left:545.456985px;}
.x89_c00414{left:550.604985px;}
.x10_c00414{left:554.114535px;}
.x79_c00414{left:555.460935px;}
.x91_c00414{left:564.910485px;}
.x1c_c00414{left:566.019285px;}
.x67_c00414{left:567.024135px;}
.x5c_c00414{left:569.959485px;}
.x94_c00414{left:571.201935px;}
.x90_c00414{left:573.469035px;}
.x2d_c00414{left:576.780585px;}
.x92_c00414{left:577.983435px;}
.x8e_c00414{left:580.126785px;}
.xb9_c00414{left:584.047185px;}
.x44_c00414{left:586.116285px;}
.x4a_c00414{left:588.135885px;}
.x8f_c00414{left:589.472385px;}
.x93_c00414{left:591.887985px;}
.x1d_c00414{left:598.129935px;}
.x81_c00414{left:599.877285px;}
.xb7_c00414{left:603.654135px;}
.x68_c00414{left:605.064885px;}
.xba_c00414{left:608.257635px;}
.x11_c00414{left:609.485235px;}
.x45_c00414{left:611.128635px;}
.x98_c00414{left:612.658185px;}
.xb8_c00414{left:615.316335px;}
.x9e_c00414{left:618.306135px;}
.x53_c00414{left:620.998935px;}
.x99_c00414{left:622.177035px;}
.x5d_c00414{left:623.919435px;}
.x12_c00414{left:631.186035px;}
.x3a_c00414{left:632.393835px;}
.x6c_c00414{left:633.566985px;}
.x9a_c00414{left:635.527185px;}
.xbb_c00414{left:642.788835px;}
.x3f_c00414{left:644.120385px;}
.x5e_c00414{left:646.144935px;}
.x6d_c00414{left:648.639735px;}
.x2e_c00414{left:653.777835px;}
.x6e_c00414{left:657.188385px;}
.x9f_c00414{left:659.064435px;}
.x64_c00414{left:665.177685px;}
.x69_c00414{left:666.380535px;}
.x2_c00414{left:675.825135px;}
.x71_c00414{left:681.101835px;}
.xbc_c00414{left:683.101635px;}
.x1e_c00414{left:687.640785px;}
.x6a_c00414{left:689.051535px;}
.x5f_c00414{left:690.986985px;}
.x95_c00414{left:697.431885px;}
.x2f_c00414{left:698.659485px;}
.x9b_c00414{left:699.797985px;}
.x6f_c00414{left:701.362185px;}
.x13_c00414{left:708.970335px;}
.x6b_c00414{left:710.098935px;}
.xaf_c00414{left:712.078935px;}
.x70_c00414{left:716.548785px;}
.x60_c00414{left:720.295935px;}
.x9c_c00414{left:722.053185px;}
.x7c_c00414{left:723.701535px;}
.x97_c00414{left:730.047435px;}
.x65_c00414{left:732.131385px;}
.x9d_c00414{left:734.472735px;}
.xa0_c00414{left:735.957735px;}
.x40_c00414{left:742.511535px;}
.x96_c00414{left:743.615385px;}
@media print{
.v9_c00414{vertical-align:-7.603200pt;}
.v6_c00414{vertical-align:-1.284800pt;}
.v0_c00414{vertical-align:0.000000pt;}
.va_c00414{vertical-align:5.051200pt;}
.v4_c00414{vertical-align:6.336000pt;}
.v3_c00414{vertical-align:8.888000pt;}
.v1_c00414{vertical-align:10.137600pt;}
.vb_c00414{vertical-align:12.672000pt;}
.v7_c00414{vertical-align:16.491200pt;}
.v8_c00414{vertical-align:30.395200pt;}
.v5_c00414{vertical-align:35.464000pt;}
.v2_c00414{vertical-align:36.748800pt;}
.ls61_c00414{letter-spacing:-3.178560pt;}
.ls35_c00414{letter-spacing:-2.464000pt;}
.ls7d_c00414{letter-spacing:-2.266880pt;}
.ls4c_c00414{letter-spacing:-2.242246pt;}
.ls11_c00414{letter-spacing:-2.205280pt;}
.ls67_c00414{letter-spacing:-2.156000pt;}
.ls37_c00414{letter-spacing:-2.125200pt;}
.ls51_c00414{letter-spacing:-2.069760pt;}
.ls32_c00414{letter-spacing:-2.003654pt;}
.ls68_c00414{letter-spacing:-1.971200pt;}
.ls4b_c00414{letter-spacing:-1.829526pt;}
.ls78_c00414{letter-spacing:-1.761760pt;}
.ls71_c00414{letter-spacing:-1.700160pt;}
.ls52_c00414{letter-spacing:-1.675526pt;}
.ls27_c00414{letter-spacing:-1.652429pt;}
.ls22_c00414{letter-spacing:-1.650880pt;}
.ls60_c00414{letter-spacing:-1.552326pt;}
.ls5e_c00414{letter-spacing:-1.546160pt;}
.ls18_c00414{letter-spacing:-1.521526pt;}
.ls1f_c00414{letter-spacing:-1.478400pt;}
.ls4d_c00414{letter-spacing:-1.453760pt;}
.ls66_c00414{letter-spacing:-1.447600pt;}
.ls5b_c00414{letter-spacing:-1.441440pt;}
.ls6a_c00414{letter-spacing:-1.379840pt;}
.ls31_c00414{letter-spacing:-1.335770pt;}
.ls46_c00414{letter-spacing:-1.281280pt;}
.ls63_c00414{letter-spacing:-1.268960pt;}
.ls80_c00414{letter-spacing:-1.256640pt;}
.ls13_c00414{letter-spacing:-1.253859pt;}
.ls45_c00414{letter-spacing:-1.240346pt;}
.ls49_c00414{letter-spacing:-1.195040pt;}
.ls77_c00414{letter-spacing:-1.176560pt;}
.ls20_c00414{letter-spacing:-1.145760pt;}
.ls3e_c00414{letter-spacing:-1.133440pt;}
.ls2e_c00414{letter-spacing:-1.053360pt;}
.ls7f_c00414{letter-spacing:-1.034880pt;}
.ls79_c00414{letter-spacing:-1.016400pt;}
.ls1e_c00414{letter-spacing:-0.989226pt;}
.ls7c_c00414{letter-spacing:-0.960960pt;}
.ls81_c00414{letter-spacing:-0.936320pt;}
.ls64_c00414{letter-spacing:-0.899360pt;}
.ls6b_c00414{letter-spacing:-0.853776pt;}
.ls53_c00414{letter-spacing:-0.763840pt;}
.ls24_c00414{letter-spacing:-0.665280pt;}
.ls41_c00414{letter-spacing:-0.560560pt;}
.ls14_c00414{letter-spacing:-0.535568pt;}
.ls2a_c00414{letter-spacing:-0.486323pt;}
.lsf_c00414{letter-spacing:0.000000pt;}
.ls44_c00414{letter-spacing:0.140800pt;}
.ls72_c00414{letter-spacing:0.171635pt;}
.ls2_c00414{letter-spacing:0.296138pt;}
.ls50_c00414{letter-spacing:0.377203pt;}
.ls3f_c00414{letter-spacing:0.466066pt;}
.ls1a_c00414{letter-spacing:0.484009pt;}
.ls59_c00414{letter-spacing:0.510409pt;}
.ls2f_c00414{letter-spacing:0.572009pt;}
.lsa_c00414{letter-spacing:0.585974pt;}
.ls4f_c00414{letter-spacing:0.668800pt;}
.ls56_c00414{letter-spacing:0.686409pt;}
.ls3_c00414{letter-spacing:0.738038pt;}
.ls1b_c00414{letter-spacing:0.774400pt;}
.ls40_c00414{letter-spacing:0.800800pt;}
.ls6_c00414{letter-spacing:0.821075pt;}
.ls1c_c00414{letter-spacing:0.856909pt;}
.ls43_c00414{letter-spacing:0.880000pt;}
.ls7a_c00414{letter-spacing:0.888800pt;}
.ls47_c00414{letter-spacing:0.941600pt;}
.ls7e_c00414{letter-spacing:0.950400pt;}
.ls57_c00414{letter-spacing:1.003200pt;}
.ls38_c00414{letter-spacing:1.091200pt;}
.lsd_c00414{letter-spacing:1.174413pt;}
.ls55_c00414{letter-spacing:1.267200pt;}
.ls3c_c00414{letter-spacing:1.302400pt;}
.ls48_c00414{letter-spacing:1.364000pt;}
.ls5_c00414{letter-spacing:1.420848pt;}
.ls6e_c00414{letter-spacing:1.443200pt;}
.ls2d_c00414{letter-spacing:1.504800pt;}
.ls2c_c00414{letter-spacing:1.610400pt;}
.ls73_c00414{letter-spacing:1.619200pt;}
.ls6d_c00414{letter-spacing:1.672000pt;}
.ls42_c00414{letter-spacing:1.680800pt;}
.ls74_c00414{letter-spacing:1.707200pt;}
.ls65_c00414{letter-spacing:1.768800pt;}
.ls76_c00414{letter-spacing:1.795200pt;}
.ls21_c00414{letter-spacing:1.812800pt;}
.ls12_c00414{letter-spacing:1.830400pt;}
.ls5c_c00414{letter-spacing:2.059200pt;}
.ls3b_c00414{letter-spacing:2.094400pt;}
.ls0_c00414{letter-spacing:2.134810pt;}
.lsb_c00414{letter-spacing:2.155296pt;}
.ls17_c00414{letter-spacing:2.173609pt;}
.ls5d_c00414{letter-spacing:2.208800pt;}
.ls70_c00414{letter-spacing:2.217609pt;}
.ls82_c00414{letter-spacing:2.226400pt;}
.ls75_c00414{letter-spacing:2.288000pt;}
.ls23_c00414{letter-spacing:2.376000pt;}
.ls39_c00414{letter-spacing:2.385159pt;}
.ls33_c00414{letter-spacing:2.393609pt;}
.ls2b_c00414{letter-spacing:2.499200pt;}
.ls34_c00414{letter-spacing:2.534400pt;}
.ls25_c00414{letter-spacing:2.577027pt;}
.ls4a_c00414{letter-spacing:2.613609pt;}
.ls58_c00414{letter-spacing:2.640000pt;}
.ls69_c00414{letter-spacing:2.816000pt;}
.ls83_c00414{letter-spacing:2.917270pt;}
.ls36_c00414{letter-spacing:3.036000pt;}
.ls10_c00414{letter-spacing:3.150400pt;}
.ls1d_c00414{letter-spacing:3.168000pt;}
.lse_c00414{letter-spacing:3.220800pt;}
.ls6c_c00414{letter-spacing:3.379209pt;}
.ls15_c00414{letter-spacing:3.484800pt;}
.ls5a_c00414{letter-spacing:6.336176pt;}
.ls1_c00414{letter-spacing:8.859077pt;}
.ls3a_c00414{letter-spacing:10.137776pt;}
.ls6f_c00414{letter-spacing:11.404976pt;}
.ls7b_c00414{letter-spacing:15.206400pt;}
.ls28_c00414{letter-spacing:19.008000pt;}
.ls62_c00414{letter-spacing:20.275376pt;}
.ls5f_c00414{letter-spacing:21.542576pt;}
.ls29_c00414{letter-spacing:26.611376pt;}
.ls54_c00414{letter-spacing:30.412976pt;}
.ls4e_c00414{letter-spacing:31.680000pt;}
.ls16_c00414{letter-spacing:32.947376pt;}
.ls3d_c00414{letter-spacing:35.481600pt;}
.ls30_c00414{letter-spacing:43.084976pt;}
.ls19_c00414{letter-spacing:44.352176pt;}
.ls26_c00414{letter-spacing:48.153776pt;}
.ls9_c00414{letter-spacing:55.592768pt;}
.ls8_c00414{letter-spacing:62.572869pt;}
.ls7_c00414{letter-spacing:74.098112pt;}
.ls4_c00414{letter-spacing:75.435360pt;}
.lsc_c00414{letter-spacing:323.738565pt;}
.ws1_c00414{word-spacing:-87.736132pt;}
.wsa_c00414{word-spacing:-16.337974pt;}
.ws6_c00414{word-spacing:-16.048138pt;}
.ws0_c00414{word-spacing:-15.752000pt;}
.ws9_c00414{word-spacing:-15.180000pt;}
.ws8_c00414{word-spacing:-13.455698pt;}
.ws5_c00414{word-spacing:-4.925097pt;}
.ws4_c00414{word-spacing:-0.554470pt;}
.wsb_c00414{word-spacing:0.000000pt;}
.ws7_c00414{word-spacing:1.276704pt;}
.ws3_c00414{word-spacing:3.820186pt;}
.ws2_c00414{word-spacing:9.678909pt;}
._1a_c00414{margin-left:-26.211328pt;}
._2b_c00414{margin-left:-23.332574pt;}
._2d_c00414{margin-left:-17.529600pt;}
._25_c00414{margin-left:-16.159616pt;}
._26_c00414{margin-left:-13.827264pt;}
._16_c00414{margin-left:-11.036608pt;}
._5_c00414{margin-left:-6.615840pt;}
._1f_c00414{margin-left:-4.074752pt;}
._27_c00414{margin-left:-2.909026pt;}
._20_c00414{margin-left:-1.235872pt;}
._7_c00414{width:1.764224pt;}
._18_c00414{width:3.092989pt;}
._1b_c00414{width:4.386624pt;}
._1e_c00414{width:5.563606pt;}
._d_c00414{width:7.749280pt;}
._c_c00414{width:8.758112pt;}
._31_c00414{width:9.961600pt;}
._10_c00414{width:11.467456pt;}
._17_c00414{width:12.421728pt;}
._11_c00414{width:14.302816pt;}
._12_c00414{width:15.877312pt;}
._9_c00414{width:19.003776pt;}
._f_c00414{width:20.351584pt;}
._a_c00414{width:21.675456pt;}
._2_c00414{width:22.934912pt;}
._19_c00414{width:25.009600pt;}
._e_c00414{width:26.998400pt;}
._3_c00414{width:28.316605pt;}
._0_c00414{width:30.571200pt;}
._1_c00414{width:32.137600pt;}
._4_c00414{width:33.583264pt;}
._6_c00414{width:35.059200pt;}
._b_c00414{width:36.228896pt;}
._2c_c00414{width:39.476800pt;}
._32_c00414{width:43.304800pt;}
._13_c00414{width:46.304614pt;}
._34_c00414{width:50.039968pt;}
._15_c00414{width:60.213824pt;}
._28_c00414{width:79.417008pt;}
._2f_c00414{width:81.296160pt;}
._1c_c00414{width:97.768000pt;}
._22_c00414{width:99.844800pt;}
._23_c00414{width:103.074268pt;}
._2a_c00414{width:121.021824pt;}
._14_c00414{width:134.265472pt;}
._2e_c00414{width:140.184000pt;}
._24_c00414{width:149.494294pt;}
._8_c00414{width:179.731102pt;}
._30_c00414{width:281.502033pt;}
._21_c00414{width:361.454221pt;}
._29_c00414{width:375.844480pt;}
._1d_c00414{width:493.987868pt;}
._33_c00414{width:522.133146pt;}
.fs38_c00414{font-size:2.816000pt;}
.fs4e_c00414{font-size:6.336176pt;}
.fs5e_c00414{font-size:8.096000pt;}
.fs45_c00414{font-size:8.624176pt;}
.fs4b_c00414{font-size:9.152000pt;}
.fsc_c00414{font-size:9.680176pt;}
.fs2c_c00414{font-size:10.137776pt;}
.fs4d_c00414{font-size:10.208176pt;}
.fs64_c00414{font-size:11.404976pt;}
.fs21_c00414{font-size:11.440176pt;}
.fs6_c00414{font-size:12.848176pt;}
.fs44_c00414{font-size:13.376000pt;}
.fs4a_c00414{font-size:13.728176pt;}
.fs6c_c00414{font-size:15.206400pt;}
.fsd_c00414{font-size:15.488000pt;}
.fs33_c00414{font-size:16.016000pt;}
.fs36_c00414{font-size:17.600000pt;}
.fs6b_c00414{font-size:17.776000pt;}
.fs3a_c00414{font-size:18.832000pt;}
.fs14_c00414{font-size:19.008000pt;}
.fs3e_c00414{font-size:20.064000pt;}
.fs52_c00414{font-size:20.275376pt;}
.fs50_c00414{font-size:21.542576pt;}
.fs29_c00414{font-size:21.824000pt;}
.fs1e_c00414{font-size:22.176000pt;}
.fs48_c00414{font-size:24.640000pt;}
.fs56_c00414{font-size:25.168000pt;}
.fs49_c00414{font-size:25.344000pt;}
.fs53_c00414{font-size:25.696000pt;}
.fs2e_c00414{font-size:26.048000pt;}
.fs19_c00414{font-size:26.611376pt;}
.fs70_c00414{font-size:26.752000pt;}
.fs3b_c00414{font-size:27.280000pt;}
.fs6d_c00414{font-size:27.456000pt;}
.fs1d_c00414{font-size:27.632000pt;}
.fs63_c00414{font-size:28.864000pt;}
.fs6a_c00414{font-size:29.040000pt;}
.fs55_c00414{font-size:29.568000pt;}
.fs25_c00414{font-size:29.920000pt;}
.fs20_c00414{font-size:30.096000pt;}
.fs42_c00414{font-size:30.272176pt;}
.fs46_c00414{font-size:30.412976pt;}
.fs6e_c00414{font-size:30.800000pt;}
.fs41_c00414{font-size:31.680000pt;}
.fs1c_c00414{font-size:32.208000pt;}
.fs31_c00414{font-size:32.384000pt;}
.fs10_c00414{font-size:32.736000pt;}
.fs8_c00414{font-size:32.947376pt;}
.fs1a_c00414{font-size:33.088000pt;}
.fs61_c00414{font-size:33.440000pt;}
.fs35_c00414{font-size:33.616000pt;}
.fs3c_c00414{font-size:34.144000pt;}
.fs1b_c00414{font-size:34.496000pt;}
.fs23_c00414{font-size:35.200000pt;}
.fs57_c00414{font-size:35.376000pt;}
.fs30_c00414{font-size:35.481600pt;}
.fs69_c00414{font-size:35.904000pt;}
.fs11_c00414{font-size:36.256000pt;}
.fs3_c00414{font-size:36.608000pt;}
.fs5d_c00414{font-size:36.960000pt;}
.fs71_c00414{font-size:38.368000pt;}
.fs5b_c00414{font-size:39.424000pt;}
.fs37_c00414{font-size:41.184000pt;}
.fs58_c00414{font-size:41.360000pt;}
.fs40_c00414{font-size:41.536000pt;}
.fs2d_c00414{font-size:41.888000pt;}
.fsf_c00414{font-size:42.240000pt;}
.fs32_c00414{font-size:42.416000pt;}
.fs18_c00414{font-size:42.592176pt;}
.fs22_c00414{font-size:43.084976pt;}
.fs9_c00414{font-size:43.472176pt;}
.fs4f_c00414{font-size:44.176000pt;}
.fsb_c00414{font-size:44.352176pt;}
.fs2f_c00414{font-size:44.528000pt;}
.fs67_c00414{font-size:45.760000pt;}
.fs12_c00414{font-size:47.168000pt;}
.fs13_c00414{font-size:47.520000pt;}
.fs24_c00414{font-size:47.872176pt;}
.fs15_c00414{font-size:48.153776pt;}
.fs66_c00414{font-size:48.576000pt;}
.fs1f_c00414{font-size:49.984000pt;}
.fs68_c00414{font-size:50.336000pt;}
.fs26_c00414{font-size:50.688000pt;}
.fs65_c00414{font-size:51.040000pt;}
.fs47_c00414{font-size:52.096000pt;}
.fs3d_c00414{font-size:52.272176pt;}
.fs4c_c00414{font-size:52.800000pt;}
.fs5c_c00414{font-size:53.504000pt;}
.fsa_c00414{font-size:55.616000pt;}
.fs5a_c00414{font-size:56.320000pt;}
.fs17_c00414{font-size:57.376000pt;}
.fs1_c00414{font-size:58.256000pt;}
.fs39_c00414{font-size:58.784176pt;}
.fs16_c00414{font-size:59.136000pt;}
.fs62_c00414{font-size:60.016000pt;}
.fs60_c00414{font-size:60.544176pt;}
.fs28_c00414{font-size:60.720000pt;}
.fs2b_c00414{font-size:61.072176pt;}
.fs59_c00414{font-size:61.600000pt;}
.fs2a_c00414{font-size:61.952176pt;}
.fs2_c00414{font-size:63.008000pt;}
.fse_c00414{font-size:63.360000pt;}
.fs3f_c00414{font-size:64.064176pt;}
.fs0_c00414{font-size:64.416000pt;}
.fs6f_c00414{font-size:64.768000pt;}
.fs4_c00414{font-size:66.880000pt;}
.fs54_c00414{font-size:67.584176pt;}
.fs7_c00414{font-size:69.696000pt;}
.fs27_c00414{font-size:70.400000pt;}
.fs43_c00414{font-size:76.736000pt;}
.fs5f_c00414{font-size:79.552176pt;}
.fs5_c00414{font-size:81.664176pt;}
.fs34_c00414{font-size:89.760000pt;}
.fs51_c00414{font-size:90.816000pt;}
.y0_c00414{bottom:0.000000pt;}
.y1_c00414{bottom:68.000000pt;}
.y61_c00414{bottom:137.408520pt;}
.y60_c00414{bottom:160.218120pt;}
.y5c_c00414{bottom:162.756920pt;}
.y5b_c00414{bottom:163.702920pt;}
.y5a_c00414{bottom:164.024120pt;}
.y58_c00414{bottom:165.608120pt;}
.y57_c00414{bottom:165.924920pt;}
.y5f_c00414{bottom:166.241720pt;}
.y59_c00414{bottom:166.558520pt;}
.y5e_c00414{bottom:167.192120pt;}
.y5d_c00414{bottom:168.138120pt;}
.y56_c00414{bottom:169.405320pt;}
.y55_c00414{bottom:170.360120pt;}
.y54_c00414{bottom:177.010720pt;}
.y4b_c00414{bottom:186.200120pt;}
.y4d_c00414{bottom:189.684920pt;}
.y53_c00414{bottom:190.952120pt;}
.y52_c00414{bottom:192.214920pt;}
.y51_c00414{bottom:193.482120pt;}
.y4e_c00414{bottom:194.753720pt;}
.y48_c00414{bottom:195.382920pt;}
.y4f_c00414{bottom:195.704120pt;}
.y4a_c00414{bottom:196.020920pt;}
.y47_c00414{bottom:196.337720pt;}
.y50_c00414{bottom:196.654520pt;}
.y4c_c00414{bottom:196.971320pt;}
.y49_c00414{bottom:198.238520pt;}
.y3b_c00414{bottom:200.768520pt;}
.y2a_c00414{bottom:203.940920pt;}
.y45_c00414{bottom:217.558920pt;}
.y3a_c00414{bottom:220.097720pt;}
.y46_c00414{bottom:220.414520pt;}
.y3f_c00414{bottom:220.731320pt;}
.y39_c00414{bottom:222.632120pt;}
.y42_c00414{bottom:224.849720pt;}
.y3e_c00414{bottom:226.750520pt;}
.y44_c00414{bottom:228.646920pt;}
.y38_c00414{bottom:228.968120pt;}
.y43_c00414{bottom:229.601720pt;}
.y3d_c00414{bottom:230.868920pt;}
.y41_c00414{bottom:233.082120pt;}
.y37_c00414{bottom:246.075320pt;}
.y3c_c00414{bottom:247.021320pt;}
.y40_c00414{bottom:249.243320pt;}
.y29_c00414{bottom:252.728120pt;}
.y36_c00414{bottom:253.040520pt;}
.y34_c00414{bottom:253.995320pt;}
.y33_c00414{bottom:259.380920pt;}
.y35_c00414{bottom:262.861320pt;}
.y2f_c00414{bottom:281.240120pt;}
.y28_c00414{bottom:282.190520pt;}
.y32_c00414{bottom:282.819720pt;}
.y2d_c00414{bottom:283.453320pt;}
.y2e_c00414{bottom:285.041720pt;}
.y31_c00414{bottom:285.354120pt;}
.y30_c00414{bottom:288.522120pt;}
.y2c_c00414{bottom:307.534520pt;}
.y27_c00414{bottom:308.480520pt;}
.y25_c00414{bottom:310.381320pt;}
.y26_c00414{bottom:310.702520pt;}
.y2b_c00414{bottom:311.014920pt;}
.y23_c00414{bottom:339.526920pt;}
.y24_c00414{bottom:346.500920pt;}
.y22_c00414{bottom:396.555320pt;}
.y21_c00414{bottom:420.948920pt;}
.y20_c00414{bottom:425.379720pt;}
.y19_c00414{bottom:452.941320pt;}
.y1a_c00414{bottom:453.258120pt;}
.y1b_c00414{bottom:453.579320pt;}
.y1d_c00414{bottom:453.896120pt;}
.y1f_c00414{bottom:454.846520pt;}
.y1e_c00414{bottom:456.113720pt;}
.y1c_c00414{bottom:456.742920pt;}
.y18_c00414{bottom:482.086920pt;}
.y15_c00414{bottom:511.232520pt;}
.y17_c00414{bottom:511.553720pt;}
.y16_c00414{bottom:520.102920pt;}
.y14_c00414{bottom:540.061320pt;}
.y13_c00414{bottom:565.726520pt;}
.y11_c00414{bottom:568.577720pt;}
.y12_c00414{bottom:569.206920pt;}
.y10_c00414{bottom:598.990520pt;}
.yf_c00414{bottom:625.284920pt;}
.ye_c00414{bottom:628.136120pt;}
.yd_c00414{bottom:651.258120pt;}
.yc_c00414{bottom:656.964920pt;}
.yb_c00414{bottom:685.793720pt;}
.ya_c00414{bottom:714.618120pt;}
.y9_c00414{bottom:771.325320pt;}
.y8_c00414{bottom:780.512520pt;}
.y7_c00414{bottom:793.188920pt;}
.y5_c00414{bottom:800.792120pt;}
.y6_c00414{bottom:801.108920pt;}
.y4_c00414{bottom:829.937720pt;}
.y3_c00414{bottom:905.331720pt;}
.y2_c00414{bottom:967.424520pt;}
.h38_c00414{height:2.763750pt;}
.h54_c00414{height:4.219893pt;}
.h2d_c00414{height:6.751759pt;}
.h6b_c00414{height:7.595714pt;}
.h63_c00414{height:8.443875pt;}
.h51_c00414{height:9.545250pt;}
.he_c00414{height:10.096121pt;}
.h78_c00414{height:10.127462pt;}
.h53_c00414{height:10.646809pt;}
.h21_c00414{height:11.227907pt;}
.h8_c00414{height:12.609782pt;}
.h1a_c00414{height:12.659328pt;}
.h4a_c00414{height:13.127813pt;}
.h5a_c00414{height:13.503400pt;}
.h4f_c00414{height:14.318059pt;}
.h56_c00414{height:14.347356pt;}
.hf_c00414{height:15.200625pt;}
.h32_c00414{height:15.718828pt;}
.h49_c00414{height:16.153500pt;}
.h36_c00414{height:17.273438pt;}
.h77_c00414{height:17.446172pt;}
.h1c_c00414{height:17.723176pt;}
.h16_c00414{height:18.655313pt;}
.h3b_c00414{height:19.641188pt;}
.h50_c00414{height:19.691719pt;}
.h4c_c00414{height:20.255042pt;}
.h43_c00414{height:21.098880pt;}
.h29_c00414{height:21.419063pt;}
.ha_c00414{height:21.942952pt;}
.h48_c00414{height:22.761750pt;}
.h30_c00414{height:23.630746pt;}
.h4e_c00414{height:24.861375pt;}
.h2f_c00414{height:25.551969pt;}
.h7f_c00414{height:26.255625pt;}
.h7c_c00414{height:26.433000pt;}
.h5b_c00414{height:26.800125pt;}
.h3d_c00414{height:28.452188pt;}
.h76_c00414{height:28.501172pt;}
.h79_c00414{height:28.635750pt;}
.h22_c00414{height:28.694594pt;}
.h25_c00414{height:29.364844pt;}
.h20_c00414{height:29.537578pt;}
.hd_c00414{height:29.538549pt;}
.h6a_c00414{height:30.104250pt;}
.h7d_c00414{height:30.838500pt;}
.h3c_c00414{height:31.389188pt;}
.h66_c00414{height:31.572934pt;}
.h31_c00414{height:31.783125pt;}
.h17_c00414{height:32.070415pt;}
.h12_c00414{height:32.128594pt;}
.h68_c00414{height:32.819531pt;}
.h35_c00414{height:32.975852pt;}
.h6f_c00414{height:33.493797pt;}
.h1e_c00414{height:33.591938pt;}
.h6e_c00414{height:33.775500pt;}
.h44_c00414{height:34.326325pt;}
.h73_c00414{height:35.060438pt;}
.h72_c00414{height:35.220281pt;}
.h7e_c00414{height:35.237813pt;}
.h59_c00414{height:35.583281pt;}
.h3e_c00414{height:35.611125pt;}
.h3a_c00414{height:35.928750pt;}
.h23_c00414{height:36.712500pt;}
.h5d_c00414{height:36.896063pt;}
.h13_c00414{height:37.813875pt;}
.h5_c00414{height:38.181000pt;}
.h61_c00414{height:38.673250pt;}
.h42_c00414{height:40.765313pt;}
.h11_c00414{height:41.456250pt;}
.h2c_c00414{height:42.314250pt;}
.hb_c00414{height:42.665563pt;}
.h37_c00414{height:42.953625pt;}
.h5e_c00414{height:43.137188pt;}
.h55_c00414{height:43.356328pt;}
.h57_c00414{height:43.529235pt;}
.h2e_c00414{height:43.687875pt;}
.h80_c00414{height:43.701797pt;}
.h1b_c00414{height:44.422309pt;}
.h71_c00414{height:44.910938pt;}
.h14_c00414{height:46.292813pt;}
.h15_c00414{height:46.638281pt;}
.h24_c00414{height:46.983923pt;}
.h6d_c00414{height:47.674688pt;}
.h1f_c00414{height:49.056562pt;}
.h33_c00414{height:49.194750pt;}
.h26_c00414{height:49.747500pt;}
.h65_c00414{height:51.820313pt;}
.h75_c00414{height:52.498875pt;}
.h6c_c00414{height:53.233125pt;}
.h3f_c00414{height:54.518246pt;}
.h52_c00414{height:55.068750pt;}
.h62_c00414{height:55.803000pt;}
.h4d_c00414{height:56.093950pt;}
.h19_c00414{height:56.311406pt;}
.h3_c00414{height:57.175078pt;}
.h39_c00414{height:57.693454pt;}
.hc_c00414{height:58.005750pt;}
.h60_c00414{height:58.740000pt;}
.h69_c00414{height:58.902422pt;}
.h28_c00414{height:59.593359pt;}
.h2b_c00414{height:59.939001pt;}
.h5f_c00414{height:60.457031pt;}
.h74_c00414{height:60.802673pt;}
.h4b_c00414{height:61.677000pt;}
.h4_c00414{height:61.838906pt;}
.h41_c00414{height:62.875485pt;}
.h5c_c00414{height:62.884984pt;}
.h2_c00414{height:63.220781pt;}
.h7b_c00414{height:63.566250pt;}
.h46_c00414{height:64.614184pt;}
.h6_c00414{height:65.639063pt;}
.h10_c00414{height:66.082500pt;}
.h64_c00414{height:66.297173pt;}
.h18_c00414{height:68.147475pt;}
.h9_c00414{height:68.402813pt;}
.h27_c00414{height:69.093750pt;}
.h7a_c00414{height:72.419050pt;}
.h2a_c00414{height:73.502184pt;}
.h70_c00414{height:74.510906pt;}
.h47_c00414{height:75.312188pt;}
.h67_c00414{height:78.076110pt;}
.h45_c00414{height:80.148923pt;}
.h7_c00414{height:85.173184pt;}
.h1d_c00414{height:85.943550pt;}
.h34_c00414{height:93.616875pt;}
.h58_c00414{height:94.718250pt;}
.h40_c00414{height:98.339485pt;}
.h1_c00414{height:986.666667pt;}
.h0_c00414{height:1122.666667pt;}
.w1_c00414{width:689.333333pt;}
.w0_c00414{width:793.333333pt;}
.x0_c00414{left:0.000000pt;}
.x1_c00414{left:52.000000pt;}
.x46_c00414{left:69.961453pt;}
.x4_c00414{left:71.153853pt;}
.x57_c00414{left:72.315453pt;}
.x4f_c00414{left:73.494653pt;}
.x58_c00414{left:82.114253pt;}
.x7f_c00414{left:85.176653pt;}
.x7a_c00414{left:89.088253pt;}
.xa3_c00414{left:91.820653pt;}
.x3b_c00414{left:99.102653pt;}
.x5_c00414{left:100.378653pt;}
.xbe_c00414{left:101.782253pt;}
.x72_c00414{left:102.952653pt;}
.x47_c00414{left:108.351453pt;}
.x14_c00414{left:109.750653pt;}
.x50_c00414{left:111.427053pt;}
.x24_c00414{left:117.758653pt;}
.x30_c00414{left:119.505453pt;}
.xb0_c00414{left:123.298253pt;}
.x4b_c00414{left:128.864253pt;}
.xa1_c00414{left:130.078653pt;}
.xa7_c00414{left:135.261853pt;}
.xa6_c00414{left:137.382653pt;}
.x20_c00414{left:139.419853pt;}
.x7d_c00414{left:147.436653pt;}
.x31_c00414{left:148.343053pt;}
.x66_c00414{left:151.238253pt;}
.xb1_c00414{left:156.175053pt;}
.x15_c00414{left:158.841453pt;}
.xa8_c00414{left:160.685053pt;}
.x21_c00414{left:168.569853pt;}
.xa5_c00414{left:174.355853pt;}
.x6_c00414{left:178.434653pt;}
.x7e_c00414{left:181.967853pt;}
.x16_c00414{left:187.991453pt;}
.x7_c00414{left:188.933053pt;}
.xb2_c00414{left:189.927453pt;}
.x48_c00414{left:192.255053pt;}
.x55_c00414{left:197.486653pt;}
.x73_c00414{left:198.621853pt;}
.x74_c00414{left:201.789853pt;}
.x17_c00414{left:203.123053pt;}
.x18_c00414{left:206.220653pt;}
.x7b_c00414{left:207.492253pt;}
.x75_c00414{left:209.080653pt;}
.xa9_c00414{left:211.179453pt;}
.x1f_c00414{left:212.530253pt;}
.x8_c00414{left:217.810253pt;}
.xbf_c00414{left:218.760653pt;}
.xb3_c00414{left:220.305053pt;}
.x9_c00414{left:227.657453pt;}
.x76_c00414{left:228.871853pt;}
.x32_c00414{left:237.522253pt;}
.xa2_c00414{left:241.130253pt;}
.x3_c00414{left:247.233053pt;}
.x25_c00414{left:252.354653pt;}
.xc0_c00414{left:253.296253pt;}
.x19_c00414{left:256.943853pt;}
.xbd_c00414{left:261.203053pt;}
.x51_c00414{left:265.629453pt;}
.x80_c00414{left:266.883453pt;}
.x22_c00414{left:268.001053pt;}
.x59_c00414{left:275.599853pt;}
.x61_c00414{left:277.509453pt;}
.xa4_c00414{left:278.719453pt;}
.x26_c00414{left:286.533853pt;}
.x33_c00414{left:287.471053pt;}
.x34_c00414{left:296.640653pt;}
.x27_c00414{left:304.969853pt;}
.x35_c00414{left:306.267853pt;}
.x82_c00414{left:307.165453pt;}
.x8b_c00414{left:309.413853pt;}
.xaa_c00414{left:313.668653pt;}
.xa_c00414{left:316.040253pt;}
.x83_c00414{left:317.567053pt;}
.x28_c00414{left:325.566253pt;}
.xab_c00414{left:326.793853pt;}
.xb4_c00414{left:327.775053pt;}
.x36_c00414{left:335.501453pt;}
.x29_c00414{left:336.808253pt;}
.x23_c00414{left:338.075453pt;}
.x49_c00414{left:344.895453pt;}
.xb_c00414{left:345.797453pt;}
.x84_c00414{left:347.834653pt;}
.x8c_c00414{left:354.368653pt;}
.xc_c00414{left:355.539053pt;}
.x5a_c00414{left:356.801853pt;}
.x41_c00414{left:361.254653pt;}
.x52_c00414{left:365.707453pt;}
.x85_c00414{left:370.912653pt;}
.x1a_c00414{left:375.198253pt;}
.x3c_c00414{left:376.346653pt;}
.x86_c00414{left:379.444253pt;}
.x3d_c00414{left:385.533853pt;}
.x2a_c00414{left:394.562653pt;}
.x77_c00414{left:395.785853pt;}
.x54_c00414{left:398.377453pt;}
.x4c_c00414{left:403.556253pt;}
.x2b_c00414{left:405.245853pt;}
.xac_c00414{left:406.288653pt;}
.x3e_c00414{left:409.927453pt;}
.xd_c00414{left:414.089853pt;}
.x4d_c00414{left:415.106253pt;}
.x42_c00414{left:423.175853pt;}
.x78_c00414{left:425.595853pt;}
.x37_c00414{left:433.375053pt;}
.x2c_c00414{left:435.069053pt;}
.x38_c00414{left:442.874653pt;}
.xe_c00414{left:443.785453pt;}
.x5b_c00414{left:445.206653pt;}
.x88_c00414{left:446.839053pt;}
.x56_c00414{left:452.031053pt;}
.xae_c00414{left:453.280653pt;}
.x62_c00414{left:454.253053pt;}
.x4e_c00414{left:455.735853pt;}
.x1b_c00414{left:463.911053pt;}
.xad_c00414{left:465.244253pt;}
.x8d_c00414{left:470.924653pt;}
.x39_c00414{left:473.221453pt;}
.xb5_c00414{left:474.677853pt;}
.x87_c00414{left:477.304653pt;}
.xb6_c00414{left:478.857853pt;}
.x8a_c00414{left:479.971053pt;}
.x43_c00414{left:482.003853pt;}
.x63_c00414{left:483.583453pt;}
.xf_c00414{left:484.850653pt;}
.x89_c00414{left:489.426653pt;}
.x10_c00414{left:492.546253pt;}
.x79_c00414{left:493.743053pt;}
.x91_c00414{left:502.142653pt;}
.x1c_c00414{left:503.128253pt;}
.x67_c00414{left:504.021453pt;}
.x5c_c00414{left:506.630653pt;}
.x94_c00414{left:507.735053pt;}
.x90_c00414{left:509.750253pt;}
.x2d_c00414{left:512.693853pt;}
.x92_c00414{left:513.763053pt;}
.x8e_c00414{left:515.668253pt;}
.xb9_c00414{left:519.153053pt;}
.x44_c00414{left:520.992253pt;}
.x4a_c00414{left:522.787453pt;}
.x8f_c00414{left:523.975453pt;}
.x93_c00414{left:526.122653pt;}
.x1d_c00414{left:531.671053pt;}
.x81_c00414{left:533.224253pt;}
.xb7_c00414{left:536.581453pt;}
.x68_c00414{left:537.835453pt;}
.xba_c00414{left:540.673453pt;}
.x11_c00414{left:541.764653pt;}
.x45_c00414{left:543.225453pt;}
.x98_c00414{left:544.585053pt;}
.xb8_c00414{left:546.947853pt;}
.x9e_c00414{left:549.605453pt;}
.x53_c00414{left:551.999053pt;}
.x99_c00414{left:553.046253pt;}
.x5d_c00414{left:554.595053pt;}
.x12_c00414{left:561.054253pt;}
.x3a_c00414{left:562.127853pt;}
.x6c_c00414{left:563.170653pt;}
.x9a_c00414{left:564.913053pt;}
.xbb_c00414{left:571.367853pt;}
.x3f_c00414{left:572.551453pt;}
.x5e_c00414{left:574.351053pt;}
.x6d_c00414{left:576.568653pt;}
.x2e_c00414{left:581.135853pt;}
.x6e_c00414{left:584.167453pt;}
.x9f_c00414{left:585.835053pt;}
.x64_c00414{left:591.269053pt;}
.x69_c00414{left:592.338253pt;}
.x2_c00414{left:600.733453pt;}
.x71_c00414{left:605.423853pt;}
.xbc_c00414{left:607.201453pt;}
.x1e_c00414{left:611.236253pt;}
.x6a_c00414{left:612.490253pt;}
.x5f_c00414{left:614.210653pt;}
.x95_c00414{left:619.939453pt;}
.x2f_c00414{left:621.030653pt;}
.x9b_c00414{left:622.042653pt;}
.x6f_c00414{left:623.433053pt;}
.x13_c00414{left:630.195853pt;}
.x6b_c00414{left:631.199053pt;}
.xaf_c00414{left:632.959053pt;}
.x70_c00414{left:636.932253pt;}
.x60_c00414{left:640.263053pt;}
.x9c_c00414{left:641.825053pt;}
.x7c_c00414{left:643.290253pt;}
.x97_c00414{left:648.931053pt;}
.x65_c00414{left:650.783453pt;}
.x9d_c00414{left:652.864653pt;}
.xa0_c00414{left:654.184653pt;}
.x40_c00414{left:660.010253pt;}
.x96_c00414{left:660.991453pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3543992ab6a7eeb103533ace.woff2')format("woff");}.ff1_c00415{font-family:ff1_c00415;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00415;src:url('chunks/assets/font_34bd3dca0134de3596b815cf.woff2')format("woff");}.ff2_c00415{font-family:ff2_c00415;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00415;src:url('chunks/assets/font_72a81b88ac448aa9478de60c.woff2')format("woff");}.ff3_c00415{font-family:ff3_c00415;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00415;src:url('chunks/assets/font_b74be0729307d508c955018d.woff2')format("woff");}.ff4_c00415{font-family:ff4_c00415;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00415;src:url('chunks/assets/font_963439527032bc83485774e6.woff2')format("woff");}.ff5_c00415{font-family:ff5_c00415;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00415;src:url('chunks/assets/font_8c979cbe45817166e5664440.woff2')format("woff");}.ff6_c00415{font-family:ff6_c00415;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00415;src:url('chunks/assets/font_88f25dedbbff01ce39d76e86.woff2')format("woff");}.ff7_c00415{font-family:ff7_c00415;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m98_c00415{transform:matrix(0.053572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053572,0.000000,0.000000,0.250000,0,0);}
.m96_c00415{transform:matrix(0.062501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062501,0.000000,0.000000,0.250000,0,0);}
.ma2_c00415{transform:matrix(0.071429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071429,0.000000,0.000000,0.250000,0,0);}
.mf_c00415{transform:matrix(0.073170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073170,0.000000,0.000000,0.250000,0,0);}
.md3_c00415{transform:matrix(0.075577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075577,0.000000,0.000000,0.250000,0,0);}
.m50_c00415{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);}
.m71_c00415{transform:matrix(0.093751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093751,0.000000,0.000000,0.250000,0,0);}
.m97_c00415{transform:matrix(0.102382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102382,0.000000,0.000000,0.250000,0,0);}
.mcf_c00415{transform:matrix(0.106251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106251,0.000000,0.000000,0.250000,0,0);}
.m13_c00415{transform:matrix(0.114153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114153,0.000000,0.000000,0.250000,0,0);}
.m72_c00415{transform:matrix(0.114584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114584,0.000000,0.000000,0.250000,0,0);}
.m19_c00415{transform:matrix(0.122404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122404,0.000000,0.000000,0.250000,0,0);}
.mcd_c00415{transform:matrix(0.130587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130587,0.000000,0.000000,0.250000,0,0);}
.mb2_c00415{transform:matrix(0.135417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135417,0.000000,0.000000,0.250000,0,0);}
.me_c00415{transform:matrix(0.137804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137804,0.000000,0.000000,0.250000,0,0);}
.m3d_c00415{transform:matrix(0.138507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138507,0.000000,0.000000,0.250000,0,0);}
.m29_c00415{transform:matrix(0.144312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144312,0.000000,0.000000,0.250000,0,0);}
.ma5_c00415{transform:matrix(0.144827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144827,0.000000,0.000000,0.250000,0,0);}
.m4f_c00415{transform:matrix(0.145834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145834,0.000000,0.000000,0.250000,0,0);}
.md9_c00415{transform:matrix(0.147818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147818,0.000000,0.000000,0.250000,0,0);}
.m66_c00415{transform:matrix(0.156249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156249,0.000000,0.000000,0.250000,0,0);}
.m4a_c00415{transform:matrix(0.165301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165301,0.000000,0.000000,0.250000,0,0);}
.m61_c00415{transform:matrix(0.166670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166670,0.000000,0.000000,0.250000,0,0);}
.me6_c00415{transform:matrix(0.167143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167143,0.000000,0.000000,0.250000,0,0);}
.m26_c00415{transform:matrix(0.168695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168695,0.000000,0.000000,0.250000,0,0);}
.m2a_c00415{transform:matrix(0.172444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172444,0.000000,0.000000,0.250000,0,0);}
.ma_c00415{transform:matrix(0.173325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173325,0.000000,0.000000,0.250000,0,0);}
.m3b_c00415{transform:matrix(0.173610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173610,0.000000,0.000000,0.250000,0,0);}
.m42_c00415{transform:matrix(0.174029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174029,0.000000,0.000000,0.250000,0,0);}
.m31_c00415{transform:matrix(0.178118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178118,0.000000,0.000000,0.250000,0,0);}
.mcb_c00415{transform:matrix(0.178975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178975,0.000000,0.000000,0.250000,0,0);}
.m67_c00415{transform:matrix(0.179086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179086,0.000000,0.000000,0.250000,0,0);}
.m74_c00415{transform:matrix(0.179519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179519,0.000000,0.000000,0.250000,0,0);}
.m58_c00415{transform:matrix(0.180415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180415,0.000000,0.000000,0.250000,0,0);}
.m3a_c00415{transform:matrix(0.184027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184027,0.000000,0.000000,0.250000,0,0);}
.m41_c00415{transform:matrix(0.184911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184911,0.000000,0.000000,0.250000,0,0);}
.m15_c00415{transform:matrix(0.186432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186432,0.000000,0.000000,0.250000,0,0);}
.mb3_c00415{transform:matrix(0.190972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190972,0.000000,0.000000,0.250000,0,0);}
.ma3_c00415{transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);}
.m18_c00415{transform:matrix(0.194421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194421,0.000000,0.000000,0.250000,0,0);}
.m5f_c00415{transform:matrix(0.196875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196875,0.000000,0.000000,0.250000,0,0);}
.md5_c00415{transform:matrix(0.196918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196918,0.000000,0.000000,0.250000,0,0);}
.m32_c00415{transform:matrix(0.198187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198187,0.000000,0.000000,0.250000,0,0);}
.m99_c00415{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m44_c00415{transform:matrix(0.203650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203650,0.000000,0.000000,0.250000,0,0);}
.m79_c00415{transform:matrix(0.203926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203926,0.000000,0.000000,0.250000,0,0);}
.m8b_c00415{transform:matrix(0.206978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206978,0.000000,0.000000,0.250000,0,0);}
.m8c_c00415{transform:matrix(0.207843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207843,0.000000,0.000000,0.250000,0,0);}
.m6c_c00415{transform:matrix(0.209383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209383,0.000000,0.000000,0.250000,0,0);}
.ma1_c00415{transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);}
.m63_c00415{transform:matrix(0.211103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211103,0.000000,0.000000,0.250000,0,0);}
.m7a_c00415{transform:matrix(0.212356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212356,0.000000,0.000000,0.250000,0,0);}
.med_c00415{transform:matrix(0.221240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221240,0.000000,0.000000,0.250000,0,0);}
.ma0_c00415{transform:matrix(0.224999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224999,0.000000,0.000000,0.250000,0,0);}
.mac_c00415{transform:matrix(0.226906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226906,0.000000,0.000000,0.250000,0,0);}
.m5e_c00415{transform:matrix(0.228976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228976,0.000000,0.000000,0.250000,0,0);}
.m5b_c00415{transform:matrix(0.231288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231288,0.000000,0.000000,0.250000,0,0);}
.m64_c00415{transform:matrix(0.232397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232397,0.000000,0.000000,0.250000,0,0);}
.m87_c00415{transform:matrix(0.233017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233017,0.000000,0.000000,0.250000,0,0);}
.m9c_c00415{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.mda_c00415{transform:matrix(0.235357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235357,0.000000,0.000000,0.250000,0,0);}
.m6_c00415{transform:matrix(0.243641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243641,0.000000,0.000000,0.250000,0,0);}
.m12_c00415{transform:matrix(0.247760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247760,0.000000,0.000000,0.250000,0,0);}
.m0_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);}
.m86_c00415{transform:matrix(0.252679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252679,0.000000,0.000000,0.250000,0,0);}
.mc9_c00415{transform:matrix(0.253687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253687,0.000000,0.000000,0.250000,0,0);}
.mc_c00415{transform:matrix(0.253851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253851,0.000000,0.000000,0.250000,0,0);}
.md4_c00415{transform:matrix(0.254143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254143,0.000000,0.000000,0.250000,0,0);}
.m81_c00415{transform:matrix(0.255450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255450,0.000000,0.000000,0.250000,0,0);}
.m2e_c00415{transform:matrix(0.255999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255999,0.000000,0.000000,0.250000,0,0);}
.m47_c00415{transform:matrix(0.256768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256768,0.000000,0.000000,0.250000,0,0);}
.mc7_c00415{transform:matrix(0.257222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257222,0.000000,0.000000,0.250000,0,0);}
.ma9_c00415{transform:matrix(0.259961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259961,0.000000,0.000000,0.250000,0,0);}
.m8d_c00415{transform:matrix(0.260352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260352,0.000000,0.000000,0.250000,0,0);}
.m65_c00415{transform:matrix(0.262247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262247,0.000000,0.000000,0.250000,0,0);}
.m36_c00415{transform:matrix(0.262267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262267,0.000000,0.000000,0.250000,0,0);}
.m5a_c00415{transform:matrix(0.263982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263982,0.000000,0.000000,0.250000,0,0);}
.m84_c00415{transform:matrix(0.266074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266074,0.000000,0.000000,0.250000,0,0);}
.m56_c00415{transform:matrix(0.267053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267053,0.000000,0.000000,0.250000,0,0);}
.m68_c00415{transform:matrix(0.269560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269560,0.000000,0.000000,0.250000,0,0);}
.mbf_c00415{transform:matrix(0.269712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269712,0.000000,0.000000,0.250000,0,0);}
.mbe_c00415{transform:matrix(0.269723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269723,0.000000,0.000000,0.250000,0,0);}
.m54_c00415{transform:matrix(0.270310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270310,0.000000,0.000000,0.250000,0,0);}
.m10_c00415{transform:matrix(0.271675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271675,0.000000,0.000000,0.250000,0,0);}
.m7c_c00415{transform:matrix(0.274582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274582,0.000000,0.000000,0.250000,0,0);}
.m89_c00415{transform:matrix(0.275129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275129,0.000000,0.000000,0.250000,0,0);}
.mad_c00415{transform:matrix(0.276265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276265,0.000000,0.000000,0.250000,0,0);}
.m1b_c00415{transform:matrix(0.277269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277269,0.000000,0.000000,0.250000,0,0);}
.m9e_c00415{transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);}
.mdc_c00415{transform:matrix(0.278775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278775,0.000000,0.000000,0.250000,0,0);}
.m3e_c00415{transform:matrix(0.280410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280410,0.000000,0.000000,0.250000,0,0);}
.md7_c00415{transform:matrix(0.281229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281229,0.000000,0.000000,0.250000,0,0);}
.m2b_c00415{transform:matrix(0.281449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281449,0.000000,0.000000,0.250000,0,0);}
.m28_c00415{transform:matrix(0.281953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281953,0.000000,0.000000,0.250000,0,0);}
.m1d_c00415{transform:matrix(0.282201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282201,0.000000,0.000000,0.250000,0,0);}
.mde_c00415{transform:matrix(0.282792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282792,0.000000,0.000000,0.250000,0,0);}
.m27_c00415{transform:matrix(0.283271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283271,0.000000,0.000000,0.250000,0,0);}
.m46_c00415{transform:matrix(0.283287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283287,0.000000,0.000000,0.250000,0,0);}
.m83_c00415{transform:matrix(0.283329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283329,0.000000,0.000000,0.250000,0,0);}
.m1_c00415{transform:matrix(0.283335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283335,0.000000,0.000000,0.250000,0,0);}
.m8_c00415{transform:matrix(0.284684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284684,0.000000,0.000000,0.250000,0,0);}
.mb8_c00415{transform:matrix(0.285320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285320,0.000000,0.000000,0.250000,0,0);}
.m9a_c00415{transform:matrix(0.286633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286633,0.000000,0.000000,0.250000,0,0);}
.mca_c00415{transform:matrix(0.286829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286829,0.000000,0.000000,0.250000,0,0);}
.mab_c00415{transform:matrix(0.286923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286923,0.000000,0.000000,0.250000,0,0);}
.m92_c00415{transform:matrix(0.287034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287034,0.000000,0.000000,0.250000,0,0);}
.mae_c00415{transform:matrix(0.287049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287049,0.000000,0.000000,0.250000,0,0);}
.m60_c00415{transform:matrix(0.287241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287241,0.000000,0.000000,0.250000,0,0);}
.m4e_c00415{transform:matrix(0.287294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287294,0.000000,0.000000,0.250000,0,0);}
.m43_c00415{transform:matrix(0.288915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288915,0.000000,0.000000,0.250000,0,0);}
.m21_c00415{transform:matrix(0.289782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289782,0.000000,0.000000,0.250000,0,0);}
.mbb_c00415{transform:matrix(0.289963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289963,0.000000,0.000000,0.250000,0,0);}
.m3c_c00415{transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);}
.m62_c00415{transform:matrix(0.291409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291409,0.000000,0.000000,0.250000,0,0);}
.m76_c00415{transform:matrix(0.291914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291914,0.000000,0.000000,0.250000,0,0);}
.m4d_c00415{transform:matrix(0.292207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292207,0.000000,0.000000,0.250000,0,0);}
.mc0_c00415{transform:matrix(0.292892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292892,0.000000,0.000000,0.250000,0,0);}
.m20_c00415{transform:matrix(0.292966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292966,0.000000,0.000000,0.250000,0,0);}
.m9b_c00415{transform:matrix(0.293044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293044,0.000000,0.000000,0.250000,0,0);}
.md8_c00415{transform:matrix(0.293295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293295,0.000000,0.000000,0.250000,0,0);}
.mb6_c00415{transform:matrix(0.293437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293437,0.000000,0.000000,0.250000,0,0);}
.m95_c00415{transform:matrix(0.296587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296587,0.000000,0.000000,0.250000,0,0);}
.m7d_c00415{transform:matrix(0.297321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297321,0.000000,0.000000,0.250000,0,0);}
.ma7_c00415{transform:matrix(0.297691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297691,0.000000,0.000000,0.250000,0,0);}
.me4_c00415{transform:matrix(0.297756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297756,0.000000,0.000000,0.250000,0,0);}
.ma6_c00415{transform:matrix(0.298009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298009,0.000000,0.000000,0.250000,0,0);}
.m23_c00415{transform:matrix(0.298471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298471,0.000000,0.000000,0.250000,0,0);}
.m37_c00415{transform:matrix(0.298928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298928,0.000000,0.000000,0.250000,0,0);}
.m75_c00415{transform:matrix(0.298945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298945,0.000000,0.000000,0.250000,0,0);}
.m2d_c00415{transform:matrix(0.299053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299053,0.000000,0.000000,0.250000,0,0);}
.mb1_c00415{transform:matrix(0.299800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299800,0.000000,0.000000,0.250000,0,0);}
.m91_c00415{transform:matrix(0.300711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300711,0.000000,0.000000,0.250000,0,0);}
.me8_c00415{transform:matrix(0.301288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301288,0.000000,0.000000,0.250000,0,0);}
.mc2_c00415{transform:matrix(0.302299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302299,0.000000,0.000000,0.250000,0,0);}
.me0_c00415{transform:matrix(0.302321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302321,0.000000,0.000000,0.250000,0,0);}
.mc1_c00415{transform:matrix(0.303758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303758,0.000000,0.000000,0.250000,0,0);}
.mec_c00415{transform:matrix(0.304171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304171,0.000000,0.000000,0.250000,0,0);}
.me7_c00415{transform:matrix(0.304385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304385,0.000000,0.000000,0.250000,0,0);}
.md0_c00415{transform:matrix(0.304796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304796,0.000000,0.000000,0.250000,0,0);}
.mb7_c00415{transform:matrix(0.305011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305011,0.000000,0.000000,0.250000,0,0);}
.m82_c00415{transform:matrix(0.305239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305239,0.000000,0.000000,0.250000,0,0);}
.m25_c00415{transform:matrix(0.305706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305706,0.000000,0.000000,0.250000,0,0);}
.m1e_c00415{transform:matrix(0.306251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306251,0.000000,0.000000,0.250000,0,0);}
.m6b_c00415{transform:matrix(0.306753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306753,0.000000,0.000000,0.250000,0,0);}
.m9d_c00415{transform:matrix(0.306831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306831,0.000000,0.000000,0.250000,0,0);}
.m34_c00415{transform:matrix(0.307446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307446,0.000000,0.000000,0.250000,0,0);}
.mb4_c00415{transform:matrix(0.307574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307574,0.000000,0.000000,0.250000,0,0);}
.m57_c00415{transform:matrix(0.307890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307890,0.000000,0.000000,0.250000,0,0);}
.mc3_c00415{transform:matrix(0.308113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308113,0.000000,0.000000,0.250000,0,0);}
.m8e_c00415{transform:matrix(0.308160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308160,0.000000,0.000000,0.250000,0,0);}
.m49_c00415{transform:matrix(0.308705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308705,0.000000,0.000000,0.250000,0,0);}
.mdd_c00415{transform:matrix(0.310277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310277,0.000000,0.000000,0.250000,0,0);}
.maa_c00415{transform:matrix(0.311666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311666,0.000000,0.000000,0.250000,0,0);}
.mbc_c00415{transform:matrix(0.311783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311783,0.000000,0.000000,0.250000,0,0);}
.m2c_c00415{transform:matrix(0.312211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312211,0.000000,0.000000,0.250000,0,0);}
.me9_c00415{transform:matrix(0.312452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312452,0.000000,0.000000,0.250000,0,0);}
.m85_c00415{transform:matrix(0.312504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312504,0.000000,0.000000,0.250000,0,0);}
.m7b_c00415{transform:matrix(0.312903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312903,0.000000,0.000000,0.250000,0,0);}
.m3f_c00415{transform:matrix(0.313140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313140,0.000000,0.000000,0.250000,0,0);}
.m17_c00415{transform:matrix(0.314640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314640,0.000000,0.000000,0.250000,0,0);}
.md2_c00415{transform:matrix(0.316532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316532,0.000000,0.000000,0.250000,0,0);}
.m90_c00415{transform:matrix(0.317465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317465,0.000000,0.000000,0.250000,0,0);}
.m2_c00415{transform:matrix(0.318328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318328,0.000000,0.000000,0.250000,0,0);}
.m7f_c00415{transform:matrix(0.318979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318979,0.000000,0.000000,0.250000,0,0);}
.mc8_c00415{transform:matrix(0.319050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319050,0.000000,0.000000,0.250000,0,0);}
.m3_c00415{transform:matrix(0.319098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319098,0.000000,0.000000,0.250000,0,0);}
.m51_c00415{transform:matrix(0.319983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319983,0.000000,0.000000,0.250000,0,0);}
.mb_c00415{transform:matrix(0.321690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321690,0.000000,0.000000,0.250000,0,0);}
.mb0_c00415{transform:matrix(0.321917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321917,0.000000,0.000000,0.250000,0,0);}
.m77_c00415{transform:matrix(0.323474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323474,0.000000,0.000000,0.250000,0,0);}
.m52_c00415{transform:matrix(0.323757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323757,0.000000,0.000000,0.250000,0,0);}
.mba_c00415{transform:matrix(0.324116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324116,0.000000,0.000000,0.250000,0,0);}
.mce_c00415{transform:matrix(0.324541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324541,0.000000,0.000000,0.250000,0,0);}
.m35_c00415{transform:matrix(0.324748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324748,0.000000,0.000000,0.250000,0,0);}
.m7_c00415{transform:matrix(0.324991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324991,0.000000,0.000000,0.250000,0,0);}
.me2_c00415{transform:matrix(0.325020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325020,0.000000,0.000000,0.250000,0,0);}
.m53_c00415{transform:matrix(0.325634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325634,0.000000,0.000000,0.250000,0,0);}
.m7e_c00415{transform:matrix(0.325780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325780,0.000000,0.000000,0.250000,0,0);}
.m45_c00415{transform:matrix(0.326593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326593,0.000000,0.000000,0.250000,0,0);}
.md_c00415{transform:matrix(0.327256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327256,0.000000,0.000000,0.250000,0,0);}
.m93_c00415{transform:matrix(0.327346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327346,0.000000,0.000000,0.250000,0,0);}
.m8f_c00415{transform:matrix(0.327843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327843,0.000000,0.000000,0.250000,0,0);}
.m40_c00415{transform:matrix(0.327943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327943,0.000000,0.000000,0.250000,0,0);}
.mb5_c00415{transform:matrix(0.328226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328226,0.000000,0.000000,0.250000,0,0);}
.m6f_c00415{transform:matrix(0.329848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329848,0.000000,0.000000,0.250000,0,0);}
.m22_c00415{transform:matrix(0.329866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329866,0.000000,0.000000,0.250000,0,0);}
.mcc_c00415{transform:matrix(0.331227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331227,0.000000,0.000000,0.250000,0,0);}
.ma8_c00415{transform:matrix(0.331461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331461,0.000000,0.000000,0.250000,0,0);}
.m2f_c00415{transform:matrix(0.332118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332118,0.000000,0.000000,0.250000,0,0);}
.meb_c00415{transform:matrix(0.332417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332417,0.000000,0.000000,0.250000,0,0);}
.m55_c00415{transform:matrix(0.332938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332938,0.000000,0.000000,0.250000,0,0);}
.me3_c00415{transform:matrix(0.333414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333414,0.000000,0.000000,0.250000,0,0);}
.m8a_c00415{transform:matrix(0.334509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334509,0.000000,0.000000,0.250000,0,0);}
.mb9_c00415{transform:matrix(0.338024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338024,0.000000,0.000000,0.250000,0,0);}
.m73_c00415{transform:matrix(0.338787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338787,0.000000,0.000000,0.250000,0,0);}
.maf_c00415{transform:matrix(0.340013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340013,0.000000,0.000000,0.250000,0,0);}
.mc5_c00415{transform:matrix(0.340793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340793,0.000000,0.000000,0.250000,0,0);}
.mbd_c00415{transform:matrix(0.341520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341520,0.000000,0.000000,0.250000,0,0);}
.m33_c00415{transform:matrix(0.342043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342043,0.000000,0.000000,0.250000,0,0);}
.md1_c00415{transform:matrix(0.342311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342311,0.000000,0.000000,0.250000,0,0);}
.m14_c00415{transform:matrix(0.342744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342744,0.000000,0.000000,0.250000,0,0);}
.m69_c00415{transform:matrix(0.343812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343812,0.000000,0.000000,0.250000,0,0);}
.m4c_c00415{transform:matrix(0.346819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346819,0.000000,0.000000,0.250000,0,0);}
.m30_c00415{transform:matrix(0.348624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348624,0.000000,0.000000,0.250000,0,0);}
.m80_c00415{transform:matrix(0.349415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349415,0.000000,0.000000,0.250000,0,0);}
.me1_c00415{transform:matrix(0.350087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350087,0.000000,0.000000,0.250000,0,0);}
.m16_c00415{transform:matrix(0.350298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350298,0.000000,0.000000,0.250000,0,0);}
.m6d_c00415{transform:matrix(0.354244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354244,0.000000,0.000000,0.250000,0,0);}
.m4_c00415{transform:matrix(0.354694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354694,0.000000,0.000000,0.250000,0,0);}
.m48_c00415{transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);}
.m78_c00415{transform:matrix(0.355794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355794,0.000000,0.000000,0.250000,0,0);}
.m38_c00415{transform:matrix(0.356751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356751,0.000000,0.000000,0.250000,0,0);}
.mc6_c00415{transform:matrix(0.356885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356885,0.000000,0.000000,0.250000,0,0);}
.mdb_c00415{transform:matrix(0.357050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357050,0.000000,0.000000,0.250000,0,0);}
.m94_c00415{transform:matrix(0.357227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357227,0.000000,0.000000,0.250000,0,0);}
.m11_c00415{transform:matrix(0.358063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358063,0.000000,0.000000,0.250000,0,0);}
.me5_c00415{transform:matrix(0.361333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361333,0.000000,0.000000,0.250000,0,0);}
.mee_c00415{transform:matrix(0.364807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364807,0.000000,0.000000,0.250000,0,0);}
.mdf_c00415{transform:matrix(0.367917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367917,0.000000,0.000000,0.250000,0,0);}
.m1f_c00415{transform:matrix(0.369955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369955,0.000000,0.000000,0.250000,0,0);}
.md6_c00415{transform:matrix(0.374257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374257,0.000000,0.000000,0.250000,0,0);}
.m9f_c00415{transform:matrix(0.374487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374487,0.000000,0.000000,0.250000,0,0);}
.m9_c00415{transform:matrix(0.375523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375523,0.000000,0.000000,0.250000,0,0);}
.ma4_c00415{transform:matrix(0.376004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376004,0.000000,0.000000,0.250000,0,0);}
.m39_c00415{transform:matrix(0.378948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378948,0.000000,0.000000,0.250000,0,0);}
.mc4_c00415{transform:matrix(0.380471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380471,0.000000,0.000000,0.250000,0,0);}
.m1c_c00415{transform:matrix(0.385915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385915,0.000000,0.000000,0.250000,0,0);}
.mea_c00415{transform:matrix(0.387550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387550,0.000000,0.000000,0.250000,0,0);}
.m5c_c00415{transform:matrix(0.394783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394783,0.000000,0.000000,0.250000,0,0);}
.m6a_c00415{transform:matrix(0.396908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396908,0.000000,0.000000,0.250000,0,0);}
.m59_c00415{transform:matrix(0.405896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405896,0.000000,0.000000,0.250000,0,0);}
.m5_c00415{transform:matrix(0.409708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409708,0.000000,0.000000,0.250000,0,0);}
.m4b_c00415{transform:matrix(0.411658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411658,0.000000,0.000000,0.250000,0,0);}
.m88_c00415{transform:matrix(0.413413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413413,0.000000,0.000000,0.250000,0,0);}
.m5d_c00415{transform:matrix(0.417607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417607,0.000000,0.000000,0.250000,0,0);}
.m24_c00415{transform:matrix(0.434143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434143,0.000000,0.000000,0.250000,0,0);}
.m70_c00415{transform:matrix(0.492667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492667,0.000000,0.000000,0.250000,0,0);}
.m1a_c00415{transform:matrix(0.547040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547040,0.000000,0.000000,0.250000,0,0);}
.m6e_c00415{transform:matrix(0.590171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590171,0.000000,0.000000,0.250000,0,0);}
.v4_c00415{vertical-align:-1.425600px;}
.v0_c00415{vertical-align:0.000000px;}
.v1_c00415{vertical-align:4.276800px;}
.v3_c00415{vertical-align:10.012860px;}
.v2_c00415{vertical-align:21.364200px;}
.v5_c00415{vertical-align:29.917800px;}
.ls20_c00415{letter-spacing:-2.575901px;}
.lsd_c00415{letter-spacing:-2.515590px;}
.ls1e_c00415{letter-spacing:-2.474017px;}
.ls16_c00415{letter-spacing:-2.432430px;}
.ls38_c00415{letter-spacing:-2.299968px;}
.ls33_c00415{letter-spacing:-2.196817px;}
.ls34_c00415{letter-spacing:-2.120580px;}
.ls3e_c00415{letter-spacing:-1.940400px;}
.lsb_c00415{letter-spacing:-1.760220px;}
.ls11_c00415{letter-spacing:-1.607767px;}
.ls24_c00415{letter-spacing:-1.426550px;}
.ls2d_c00415{letter-spacing:-0.561568px;}
.ls19_c00415{letter-spacing:-0.158975px;}
.ls3d_c00415{letter-spacing:-0.100624px;}
.ls9_c00415{letter-spacing:0.000000px;}
.ls27_c00415{letter-spacing:0.043244px;}
.ls2b_c00415{letter-spacing:0.078883px;}
.ls2e_c00415{letter-spacing:0.109732px;}
.ls0_c00415{letter-spacing:0.431244px;}
.ls17_c00415{letter-spacing:0.546242px;}
.ls28_c00415{letter-spacing:0.673210px;}
.ls1_c00415{letter-spacing:0.713513px;}
.ls36_c00415{letter-spacing:0.959904px;}
.ls29_c00415{letter-spacing:1.692900px;}
.ls32_c00415{letter-spacing:1.801810px;}
.lsc_c00415{letter-spacing:1.940598px;}
.ls1a_c00415{letter-spacing:2.148310px;}
.ls7_c00415{letter-spacing:2.204934px;}
.ls12_c00415{letter-spacing:2.316600px;}
.ls1c_c00415{letter-spacing:2.346310px;}
.ls35_c00415{letter-spacing:2.376000px;}
.ls3a_c00415{letter-spacing:2.385900px;}
.ls31_c00415{letter-spacing:2.494810px;}
.lsa_c00415{letter-spacing:2.514600px;}
.ls1d_c00415{letter-spacing:2.534400px;}
.ls26_c00415{letter-spacing:2.583900px;}
.ls3b_c00415{letter-spacing:2.593810px;}
.ls25_c00415{letter-spacing:2.692810px;}
.ls14_c00415{letter-spacing:2.831400px;}
.ls6_c00415{letter-spacing:2.889335px;}
.ls3f_c00415{letter-spacing:3.029400px;}
.lse_c00415{letter-spacing:3.088810px;}
.ls37_c00415{letter-spacing:3.118500px;}
.ls22_c00415{letter-spacing:3.138310px;}
.ls1b_c00415{letter-spacing:3.177900px;}
.ls13_c00415{letter-spacing:3.217500px;}
.ls2c_c00415{letter-spacing:3.227400px;}
.ls2f_c00415{letter-spacing:3.276900px;}
.ls30_c00415{letter-spacing:3.474900px;}
.ls10_c00415{letter-spacing:3.484810px;}
.ls8_c00415{letter-spacing:3.593700px;}
.ls18_c00415{letter-spacing:3.643200px;}
.ls3c_c00415{letter-spacing:4.039200px;}
.ls2_c00415{letter-spacing:9.056124px;}
.ls21_c00415{letter-spacing:17.107200px;}
.ls5_c00415{letter-spacing:18.848808px;}
.ls2a_c00415{letter-spacing:34.214598px;}
.ls1f_c00415{letter-spacing:45.619398px;}
.ls23_c00415{letter-spacing:48.470598px;}
.ls39_c00415{letter-spacing:49.896198px;}
.ls15_c00415{letter-spacing:51.321798px;}
.lsf_c00415{letter-spacing:58.449798px;}
.ls4_c00415{letter-spacing:73.644714px;}
.ls3_c00415{letter-spacing:224.899422px;}
.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:-18.399744px;}
.ws2_c00415{word-spacing:-17.968500px;}
.ws7_c00415{word-spacing:-17.338860px;}
.ws8_c00415{word-spacing:-15.668532px;}
.ws5_c00415{word-spacing:-15.412320px;}
.ws6_c00415{word-spacing:-3.092245px;}
.ws1_c00415{word-spacing:-0.502920px;}
.wsb_c00415{word-spacing:0.000000px;}
.ws9_c00415{word-spacing:4.527468px;}
.ws3_c00415{word-spacing:7.115526px;}
.wsa_c00415{word-spacing:7.332138px;}
.ws4_c00415{word-spacing:12.044419px;}
._13_c00415{margin-left:-34.860782px;}
._5_c00415{margin-left:-20.915334px;}
._1f_c00415{margin-left:-12.293215px;}
._10_c00415{margin-left:-8.959123px;}
._18_c00415{margin-left:-5.567364px;}
._1d_c00415{margin-left:-4.524449px;}
._b_c00415{margin-left:-1.796850px;}
._15_c00415{width:1.853225px;}
._1a_c00415{width:3.605976px;}
._f_c00415{width:4.845258px;}
._19_c00415{width:5.919408px;}
._1b_c00415{width:7.468560px;}
._2_c00415{width:8.650224px;}
._4_c00415{width:10.134234px;}
._6_c00415{width:12.434400px;}
._22_c00415{width:13.500432px;}
._0_c00415{width:14.590422px;}
._e_c00415{width:19.030770px;}
._3_c00415{width:21.634074px;}
._9_c00415{width:24.077790px;}
._1e_c00415{width:25.515270px;}
._21_c00415{width:27.383796px;}
._14_c00415{width:28.624266px;}
._a_c00415{width:31.666338px;}
._8_c00415{width:34.951831px;}
._d_c00415{width:36.079362px;}
._11_c00415{width:37.832256px;}
._7_c00415{width:40.035204px;}
._1_c00415{width:42.549408px;}
._c_c00415{width:46.404666px;}
._1c_c00415{width:51.963912px;}
._12_c00415{width:61.894701px;}
._17_c00415{width:137.905020px;}
._16_c00415{width:143.938558px;}
._20_c00415{width:280.970514px;}
.fc0_c00415{color:transparent;}
.fs21_c00415{font-size:7.722198px;}
.fs23_c00415{font-size:13.464198px;}
.fs22_c00415{font-size:15.444198px;}
.fs16_c00415{font-size:17.107200px;}
.fs36_c00415{font-size:26.928000px;}
.fs30_c00415{font-size:27.720000px;}
.fs29_c00415{font-size:30.888000px;}
.fs27_c00415{font-size:33.858000px;}
.fs28_c00415{font-size:34.214598px;}
.fs1d_c00415{font-size:35.244000px;}
.fs2e_c00415{font-size:36.036198px;}
.fs11_c00415{font-size:38.808000px;}
.fse_c00415{font-size:42.966198px;}
.fs1b_c00415{font-size:45.144000px;}
.fs14_c00415{font-size:45.619398px;}
.fs7_c00415{font-size:45.936198px;}
.fs4_c00415{font-size:46.332000px;}
.fs10_c00415{font-size:46.926198px;}
.fs2f_c00415{font-size:47.520000px;}
.fs32_c00415{font-size:47.718000px;}
.fs1a_c00415{font-size:48.470598px;}
.fs2d_c00415{font-size:49.896198px;}
.fs2_c00415{font-size:50.292000px;}
.fs12_c00415{font-size:50.688000px;}
.fsb_c00415{font-size:51.321798px;}
.fs1e_c00415{font-size:51.678000px;}
.fs33_c00415{font-size:51.876198px;}
.fs1c_c00415{font-size:53.856198px;}
.fs20_c00415{font-size:55.440000px;}
.fsa_c00415{font-size:56.628000px;}
.fs24_c00415{font-size:57.222000px;}
.fs5_c00415{font-size:58.449798px;}
.fs19_c00415{font-size:60.588000px;}
.fs3_c00415{font-size:61.776198px;}
.fs25_c00415{font-size:62.172000px;}
.fs31_c00415{font-size:62.370000px;}
.fs17_c00415{font-size:62.766198px;}
.fsf_c00415{font-size:63.558000px;}
.fs2a_c00415{font-size:64.152198px;}
.fs9_c00415{font-size:64.350000px;}
.fs18_c00415{font-size:64.548000px;}
.fs2c_c00415{font-size:65.538000px;}
.fs2b_c00415{font-size:65.736198px;}
.fs8_c00415{font-size:66.132198px;}
.fs35_c00415{font-size:66.330000px;}
.fs37_c00415{font-size:66.528000px;}
.fsc_c00415{font-size:69.498000px;}
.fs6_c00415{font-size:69.696198px;}
.fs13_c00415{font-size:70.686198px;}
.fs1_c00415{font-size:71.874000px;}
.fsd_c00415{font-size:72.864000px;}
.fs15_c00415{font-size:74.448000px;}
.fs0_c00415{font-size:76.032198px;}
.fs34_c00415{font-size:80.784000px;}
.fs26_c00415{font-size:104.544000px;}
.fs1f_c00415{font-size:107.712198px;}
.y0_c00415{bottom:0.000000px;}
.y28_c00415{bottom:12.742335px;}
.y1_c00415{bottom:76.500000px;}
.y23_c00415{bottom:134.269785px;}
.y22_c00415{bottom:165.637935px;}
.y21_c00415{bottom:202.703535px;}
.y20_c00415{bottom:235.492335px;}
.y1f_c00415{bottom:235.848735px;}
.y27_c00415{bottom:312.474735px;}
.y1e_c00415{bottom:332.071785px;}
.y1d_c00415{bottom:364.147785px;}
.y1c_c00415{bottom:396.936585px;}
.y26_c00415{bottom:416.543535px;}
.y1b_c00415{bottom:421.889535px;}
.y1a_c00415{bottom:429.368985px;}
.y19_c00415{bottom:457.173135px;}
.y17_c00415{bottom:461.806335px;}
.y18_c00415{bottom:463.944735px;}
.y25_c00415{bottom:488.536335px;}
.y16_c00415{bottom:496.020735px;}
.y14_c00415{bottom:523.819935px;}
.y15_c00415{bottom:528.453135px;}
.y13_c00415{bottom:528.809535px;}
.y24_c00415{bottom:535.219785px;}
.yf_c00415{bottom:626.106735px;}
.y11_c00415{bottom:626.463135px;}
.y12_c00415{bottom:626.819535px;}
.y10_c00415{bottom:627.170985px;}
.ye_c00415{bottom:657.826335px;}
.yc_c00415{bottom:658.534185px;}
.yd_c00415{bottom:665.310735px;}
.yb_c00415{bottom:690.610185px;}
.y9_c00415{bottom:723.753900px;}
.ya_c00415{bottom:723.755385px;}
.y8_c00415{bottom:790.758585px;}
.y7_c00415{bottom:823.190985px;}
.y6_c00415{bottom:855.623385px;}
.y4_c00415{bottom:889.837785px;}
.y5_c00415{bottom:891.619785px;}
.y3_c00415{bottom:923.344335px;}
.y2_c00415{bottom:1073.027385px;}
.h19_c00415{height:11.393395px;}
.h23_c00415{height:14.042738px;}
.h22_c00415{height:16.107816px;}
.h27_c00415{height:22.786922px;}
.h3c_c00415{height:28.085063px;}
.h31_c00415{height:28.911094px;}
.h17_c00415{height:30.382519px;}
.h1c_c00415{height:32.281418px;}
.h33_c00415{height:33.230868px;}
.hd_c00415{height:34.180317px;}
.h26_c00415{height:35.312836px;}
.h2d_c00415{height:35.367558px;}
.h7_c00415{height:38.927565px;}
.h14_c00415{height:40.475531px;}
.h1e_c00415{height:44.306367px;}
.h10_c00415{height:44.812402px;}
.h9_c00415{height:45.083866px;}
.h38_c00415{height:45.472324px;}
.h12_c00415{height:46.055497px;}
.h34_c00415{height:46.832607px;}
.h3b_c00415{height:47.083781px;}
.h6_c00415{height:48.322828px;}
.h30_c00415{height:49.561875px;}
.h1d_c00415{height:49.722750px;}
.h15_c00415{height:49.747500px;}
.h20_c00415{height:50.719131px;}
.h36_c00415{height:50.913651px;}
.h2c_c00415{height:52.040175px;}
.h4_c00415{height:52.452984px;}
.h39_c00415{height:54.411328px;}
.h1f_c00415{height:56.170332px;}
.hc_c00415{height:59.061234px;}
.h2e_c00415{height:61.601591px;}
.h2f_c00415{height:63.191391px;}
.h2a_c00415{height:63.350332px;}
.h2b_c00415{height:64.321963px;}
.h5_c00415{height:64.430644px;}
.h29_c00415{height:64.516483px;}
.h32_c00415{height:65.049961px;}
.h1a_c00415{height:65.463183px;}
.h28_c00415{height:65.483138px;}
.h11_c00415{height:66.289008px;}
.hb_c00415{height:67.115039px;}
.h1b_c00415{height:67.321547px;}
.he_c00415{height:68.208486px;}
.h8_c00415{height:68.403007px;}
.ha_c00415{height:68.973816px;}
.h3a_c00415{height:69.180117px;}
.h16_c00415{height:69.374638px;}
.h3d_c00415{height:69.386625px;}
.h3_c00415{height:70.540400px;}
.hf_c00415{height:71.476453px;}
.h13_c00415{height:71.512031px;}
.h18_c00415{height:73.066641px;}
.h2_c00415{height:74.621444px;}
.h35_c00415{height:79.299207px;}
.h37_c00415{height:81.415125px;}
.h24_c00415{height:87.537324px;}
.h25_c00415{height:102.553172px;}
.h21_c00415{height:112.340457px;}
.h1_c00415{height:1110.000000px;}
.h0_c00415{height:1263.000000px;}
.w1_c00415{width:775.500000px;}
.w0_c00415{width:892.500000px;}
.x0_c00415{left:0.000000px;}
.x1_c00415{left:58.500000px;}
.x59_c00415{left:69.237285px;}
.x33_c00415{left:71.108385px;}
.x3_c00415{left:72.133035px;}
.xa0_c00415{left:80.359935px;}
.x34_c00415{left:81.869685px;}
.x84_c00415{left:90.131235px;}
.xaa_c00415{left:91.403385px;}
.x14_c00415{left:93.096285px;}
.x78_c00415{left:97.967085px;}
.x76_c00415{left:100.382685px;}
.x5a_c00415{left:101.729085px;}
.xb7_c00415{left:102.773535px;}
.x35_c00415{left:104.025885px;}
.x6d_c00415{left:107.263185px;}
.x65_c00415{left:112.782435px;}
.x36_c00415{left:114.841635px;}
.x4_c00415{left:116.554335px;}
.x66_c00415{left:118.291785px;}
.x47_c00415{left:122.202186px;}
.x77_c00415{left:123.613035px;}
.x48_c00415{left:124.617885px;}
.x37_c00415{left:126.602835px;}
.x24_c00415{left:129.072885px;}
.x49_c00415{left:133.720935px;}
.xab_c00415{left:134.725785px;}
.x87_c00415{left:145.566285px;}
.x5_c00415{left:148.244235px;}
.x4a_c00415{left:155.297985px;}
.x85_c00415{left:156.614685px;}
.x43_c00415{left:159.371835px;}
.x79_c00415{left:165.024735px;}
.x88_c00415{left:166.910685px;}
.x7a_c00415{left:174.989085px;}
.x4b_c00415{left:178.513485px;}
.x6_c00415{left:182.235885px;}
.x4c_c00415{left:189.408435px;}
.x25_c00415{left:192.611085px;}
.x38_c00415{left:193.675335px;}
.x15_c00415{left:195.650385px;}
.x7b_c00415{left:198.803535px;}
.xac_c00415{left:200.842935px;}
.xb1_c00415{left:202.451685px;}
.xa1_c00415{left:206.188935px;}
.x4d_c00415{left:211.302285px;}
.x86_c00415{left:212.757585px;}
.x26_c00415{left:214.341585px;}
.x39_c00415{left:224.687085px;}
.x4e_c00415{left:234.299985px;}
.x89_c00415{left:235.789935px;}
.x16_c00415{left:238.774785px;}
.xb2_c00415{left:243.675285px;}
.x6e_c00415{left:244.917735px;}
.xad_c00415{left:246.011685px;}
.x27_c00415{left:247.353135px;}
.x7_c00415{left:250.248885px;}
.x5b_c00415{left:255.119685px;}
.x3a_c00415{left:256.906635px;}
.x17_c00415{left:258.614385px;}
.x44_c00415{left:267.648135px;}
.x4f_c00415{left:277.726335px;}
.x8_c00415{left:280.607235px;}
.x99_c00415{left:289.739985px;}
.x18_c00415{left:293.497035px;}
.xa2_c00415{left:299.001435px;}
.x50_c00415{left:300.229035px;}
.x3b_c00415{left:303.020835px;}
.x45_c00415{left:305.421585px;}
.x6f_c00415{left:311.406135px;}
.x9_c00415{left:313.217835px;}
.x98_c00415{left:315.935385px;}
.x92_c00415{left:321.103185px;}
.xae_c00415{left:322.499085px;}
.x19_c00415{left:324.627585px;}
.x7c_c00415{left:334.289985px;}
.xa_c00415{left:336.893685px;}
.x7d_c00415{left:338.928135px;}
.xb3_c00415{left:344.254335px;}
.x3c_c00415{left:346.303635px;}
.xa3_c00415{left:348.194535px;}
.xb_c00415{left:352.550535px;}
.x67_c00415{left:356.183835px;}
.xc_c00415{left:357.495585px;}
.x8a_c00415{left:367.044135px;}
.x28_c00415{left:368.811285px;}
.x5c_c00415{left:378.488535px;}
.x1a_c00415{left:380.107185px;}
.x3d_c00415{left:385.012635px;}
.xa4_c00415{left:386.992635px;}
.x51_c00415{left:389.502285px;}
.x5d_c00415{left:393.457335px;}
.x8b_c00415{left:398.041035px;}
.x93_c00415{left:399.278535px;}
.x3e_c00415{left:401.268435px;}
.xd_c00415{left:402.585135px;}
.xb6_c00415{left:404.698785px;}
.xb8_c00415{left:409.807185px;}
.x29_c00415{left:411.267435px;}
.x3f_c00415{left:413.430585px;}
.x94_c00415{left:421.073385px;}
.x68_c00415{left:422.474235px;}
.x40_c00415{left:423.528585px;}
.xaf_c00415{left:430.829835px;}
.x8c_c00415{left:432.235635px;}
.xe_c00415{left:433.879035px;}
.xb4_c00415{left:443.165235px;}
.x2a_c00415{left:445.630335px;}
.x52_c00415{left:454.609635px;}
.x41_c00415{left:456.302535px;}
.x9a_c00415{left:464.014635px;}
.x7e_c00415{left:466.009485px;}
.x1b_c00415{left:467.157885px;}
.x7f_c00415{left:471.489135px;}
.x69_c00415{left:475.691685px;}
.xf_c00415{left:477.874635px;}
.x53_c00415{left:487.561785px;}
.x10_c00415{left:489.804135px;}
.x46_c00415{left:491.526735px;}
.x9b_c00415{left:498.164685px;}
.xa5_c00415{left:499.397235px;}
.x5e_c00415{left:501.154485px;}
.x80_c00415{left:510.208035px;}
.x1c_c00415{left:511.643535px;}
.x8d_c00415{left:519.875385px;}
.x5f_c00415{left:521.197035px;}
.x11_c00415{left:523.696785px;}
.x70_c00415{left:531.394035px;}
.xb0_c00415{left:533.992785px;}
.xa6_c00415{left:540.596085px;}
.x81_c00415{left:541.739535px;}
.x60_c00415{left:542.878035px;}
.x2b_c00415{left:545.437185px;}
.x71_c00415{left:553.673985px;}
.x2c_c00415{left:555.302535px;}
.x1d_c00415{left:557.218185px;}
.x54_c00415{left:565.054035px;}
.x1e_c00415{left:566.266785px;}
.x72_c00415{left:570.984135px;}
.x8e_c00415{left:574.998585px;}
.x2d_c00415{left:577.438935px;}
.x6a_c00415{left:578.626935px;}
.x9c_c00415{left:586.794435px;}
.xb5_c00415{left:596.199435px;}
.x55_c00415{left:597.951735px;}
.x8f_c00415{left:599.520885px;}
.x6b_c00415{left:603.228435px;}
.xb9_c00415{left:605.173785px;}
.x95_c00415{left:606.832035px;}
.x61_c00415{left:608.906085px;}
.x2e_c00415{left:610.440585px;}
.x96_c00415{left:615.138135px;}
.xa7_c00415{left:618.979335px;}
.x1f_c00415{left:620.375235px;}
.x6c_c00415{left:626.181585px;}
.x42_c00415{left:629.037735px;}
.x90_c00415{left:631.864185px;}
.x2f_c00415{left:635.368785px;}
.xa8_c00415{left:640.056435px;}
.x62_c00415{left:641.298885px;}
.x30_c00415{left:643.016535px;}
.x12_c00415{left:645.050985px;}
.x63_c00415{left:652.728435px;}
.x20_c00415{left:654.332235px;}
.x21_c00415{left:656.356785px;}
.x82_c00415{left:663.776835px;}
.x22_c00415{left:665.920185px;}
.x2_c00415{left:668.721885px;}
.x9d_c00415{left:673.909485px;}
.x56_c00415{left:674.948985px;}
.x13_c00415{left:676.854735px;}
.x73_c00415{left:685.433085px;}
.x23_c00415{left:686.982435px;}
.x9e_c00415{left:694.501485px;}
.x83_c00415{left:695.892435px;}
.x97_c00415{left:696.941835px;}
.x57_c00415{left:699.842535px;}
.x64_c00415{left:701.664135px;}
.xa9_c00415{left:707.287335px;}
.x31_c00415{left:708.569385px;}
.x74_c00415{left:713.257035px;}
.x75_c00415{left:714.539085px;}
.x9f_c00415{left:718.023885px;}
.x91_c00415{left:729.176235px;}
.x32_c00415{left:731.096835px;}
.xba_c00415{left:740.086035px;}
.x58_c00415{left:744.902385px;}
.xbb_c00415{left:775.592385px;}
.xbc_c00415{left:778.166385px;}
@media print{
.v4_c00415{vertical-align:-1.267200pt;}
.v0_c00415{vertical-align:0.000000pt;}
.v1_c00415{vertical-align:3.801600pt;}
.v3_c00415{vertical-align:8.900320pt;}
.v2_c00415{vertical-align:18.990400pt;}
.v5_c00415{vertical-align:26.593600pt;}
.ls20_c00415{letter-spacing:-2.289690pt;}
.lsd_c00415{letter-spacing:-2.236080pt;}
.ls1e_c00415{letter-spacing:-2.199126pt;}
.ls16_c00415{letter-spacing:-2.162160pt;}
.ls38_c00415{letter-spacing:-2.044416pt;}
.ls33_c00415{letter-spacing:-1.952726pt;}
.ls34_c00415{letter-spacing:-1.884960pt;}
.ls3e_c00415{letter-spacing:-1.724800pt;}
.lsb_c00415{letter-spacing:-1.564640pt;}
.ls11_c00415{letter-spacing:-1.429126pt;}
.ls24_c00415{letter-spacing:-1.268045pt;}
.ls2d_c00415{letter-spacing:-0.499171pt;}
.ls19_c00415{letter-spacing:-0.141311pt;}
.ls3d_c00415{letter-spacing:-0.089443pt;}
.ls9_c00415{letter-spacing:0.000000pt;}
.ls27_c00415{letter-spacing:0.038439pt;}
.ls2b_c00415{letter-spacing:0.070119pt;}
.ls2e_c00415{letter-spacing:0.097539pt;}
.ls0_c00415{letter-spacing:0.383328pt;}
.ls17_c00415{letter-spacing:0.485549pt;}
.ls28_c00415{letter-spacing:0.598409pt;}
.ls1_c00415{letter-spacing:0.634234pt;}
.ls36_c00415{letter-spacing:0.853248pt;}
.ls29_c00415{letter-spacing:1.504800pt;}
.ls32_c00415{letter-spacing:1.601609pt;}
.lsc_c00415{letter-spacing:1.724976pt;}
.ls1a_c00415{letter-spacing:1.909609pt;}
.ls7_c00415{letter-spacing:1.959941pt;}
.ls12_c00415{letter-spacing:2.059200pt;}
.ls1c_c00415{letter-spacing:2.085609pt;}
.ls35_c00415{letter-spacing:2.112000pt;}
.ls3a_c00415{letter-spacing:2.120800pt;}
.ls31_c00415{letter-spacing:2.217609pt;}
.lsa_c00415{letter-spacing:2.235200pt;}
.ls1d_c00415{letter-spacing:2.252800pt;}
.ls26_c00415{letter-spacing:2.296800pt;}
.ls3b_c00415{letter-spacing:2.305609pt;}
.ls25_c00415{letter-spacing:2.393609pt;}
.ls14_c00415{letter-spacing:2.516800pt;}
.ls6_c00415{letter-spacing:2.568298pt;}
.ls3f_c00415{letter-spacing:2.692800pt;}
.lse_c00415{letter-spacing:2.745609pt;}
.ls37_c00415{letter-spacing:2.772000pt;}
.ls22_c00415{letter-spacing:2.789609pt;}
.ls1b_c00415{letter-spacing:2.824800pt;}
.ls13_c00415{letter-spacing:2.860000pt;}
.ls2c_c00415{letter-spacing:2.868800pt;}
.ls2f_c00415{letter-spacing:2.912800pt;}
.ls30_c00415{letter-spacing:3.088800pt;}
.ls10_c00415{letter-spacing:3.097609pt;}
.ls8_c00415{letter-spacing:3.194400pt;}
.ls18_c00415{letter-spacing:3.238400pt;}
.ls3c_c00415{letter-spacing:3.590400pt;}
.ls2_c00415{letter-spacing:8.049888pt;}
.ls21_c00415{letter-spacing:15.206400pt;}
.ls5_c00415{letter-spacing:16.754496pt;}
.ls2a_c00415{letter-spacing:30.412976pt;}
.ls1f_c00415{letter-spacing:40.550576pt;}
.ls23_c00415{letter-spacing:43.084976pt;}
.ls39_c00415{letter-spacing:44.352176pt;}
.ls15_c00415{letter-spacing:45.619376pt;}
.lsf_c00415{letter-spacing:51.955376pt;}
.ls4_c00415{letter-spacing:65.461968pt;}
.ls3_c00415{letter-spacing:199.910597pt;}
.ws0_c00415{word-spacing:-16.355328pt;}
.ws2_c00415{word-spacing:-15.972000pt;}
.ws7_c00415{word-spacing:-15.412320pt;}
.ws8_c00415{word-spacing:-13.927584pt;}
.ws5_c00415{word-spacing:-13.699840pt;}
.ws6_c00415{word-spacing:-2.748662pt;}
.ws1_c00415{word-spacing:-0.447040pt;}
.wsb_c00415{word-spacing:0.000000pt;}
.ws9_c00415{word-spacing:4.024416pt;}
.ws3_c00415{word-spacing:6.324912pt;}
.wsa_c00415{word-spacing:6.517456pt;}
.ws4_c00415{word-spacing:10.706150pt;}
._13_c00415{margin-left:-30.987362pt;}
._5_c00415{margin-left:-18.591408pt;}
._1f_c00415{margin-left:-10.927302pt;}
._10_c00415{margin-left:-7.963665pt;}
._18_c00415{margin-left:-4.948768pt;}
._1d_c00415{margin-left:-4.021732pt;}
._b_c00415{margin-left:-1.597200pt;}
._15_c00415{width:1.647311pt;}
._1a_c00415{width:3.205312pt;}
._f_c00415{width:4.306896pt;}
._19_c00415{width:5.261696pt;}
._1b_c00415{width:6.638720pt;}
._2_c00415{width:7.689088pt;}
._4_c00415{width:9.008208pt;}
._6_c00415{width:11.052800pt;}
._22_c00415{width:12.000384pt;}
._0_c00415{width:12.969264pt;}
._e_c00415{width:16.916240pt;}
._3_c00415{width:19.230288pt;}
._9_c00415{width:21.402480pt;}
._1e_c00415{width:22.680240pt;}
._21_c00415{width:24.341152pt;}
._14_c00415{width:25.443792pt;}
._a_c00415{width:28.147856pt;}
._8_c00415{width:31.068294pt;}
._d_c00415{width:32.070544pt;}
._11_c00415{width:33.628672pt;}
._7_c00415{width:35.586848pt;}
._1_c00415{width:37.821696pt;}
._c_c00415{width:41.248592pt;}
._1c_c00415{width:46.190144pt;}
._12_c00415{width:55.017512pt;}
._17_c00415{width:122.582240pt;}
._16_c00415{width:127.945385pt;}
._20_c00415{width:249.751568pt;}
.fs21_c00415{font-size:6.864176pt;}
.fs23_c00415{font-size:11.968176pt;}
.fs22_c00415{font-size:13.728176pt;}
.fs16_c00415{font-size:15.206400pt;}
.fs36_c00415{font-size:23.936000pt;}
.fs30_c00415{font-size:24.640000pt;}
.fs29_c00415{font-size:27.456000pt;}
.fs27_c00415{font-size:30.096000pt;}
.fs28_c00415{font-size:30.412976pt;}
.fs1d_c00415{font-size:31.328000pt;}
.fs2e_c00415{font-size:32.032176pt;}
.fs11_c00415{font-size:34.496000pt;}
.fse_c00415{font-size:38.192176pt;}
.fs1b_c00415{font-size:40.128000pt;}
.fs14_c00415{font-size:40.550576pt;}
.fs7_c00415{font-size:40.832176pt;}
.fs4_c00415{font-size:41.184000pt;}
.fs10_c00415{font-size:41.712176pt;}
.fs2f_c00415{font-size:42.240000pt;}
.fs32_c00415{font-size:42.416000pt;}
.fs1a_c00415{font-size:43.084976pt;}
.fs2d_c00415{font-size:44.352176pt;}
.fs2_c00415{font-size:44.704000pt;}
.fs12_c00415{font-size:45.056000pt;}
.fsb_c00415{font-size:45.619376pt;}
.fs1e_c00415{font-size:45.936000pt;}
.fs33_c00415{font-size:46.112176pt;}
.fs1c_c00415{font-size:47.872176pt;}
.fs20_c00415{font-size:49.280000pt;}
.fsa_c00415{font-size:50.336000pt;}
.fs24_c00415{font-size:50.864000pt;}
.fs5_c00415{font-size:51.955376pt;}
.fs19_c00415{font-size:53.856000pt;}
.fs3_c00415{font-size:54.912176pt;}
.fs25_c00415{font-size:55.264000pt;}
.fs31_c00415{font-size:55.440000pt;}
.fs17_c00415{font-size:55.792176pt;}
.fsf_c00415{font-size:56.496000pt;}
.fs2a_c00415{font-size:57.024176pt;}
.fs9_c00415{font-size:57.200000pt;}
.fs18_c00415{font-size:57.376000pt;}
.fs2c_c00415{font-size:58.256000pt;}
.fs2b_c00415{font-size:58.432176pt;}
.fs8_c00415{font-size:58.784176pt;}
.fs35_c00415{font-size:58.960000pt;}
.fs37_c00415{font-size:59.136000pt;}
.fsc_c00415{font-size:61.776000pt;}
.fs6_c00415{font-size:61.952176pt;}
.fs13_c00415{font-size:62.832176pt;}
.fs1_c00415{font-size:63.888000pt;}
.fsd_c00415{font-size:64.768000pt;}
.fs15_c00415{font-size:66.176000pt;}
.fs0_c00415{font-size:67.584176pt;}
.fs34_c00415{font-size:71.808000pt;}
.fs26_c00415{font-size:92.928000pt;}
.fs1f_c00415{font-size:95.744176pt;}
.y0_c00415{bottom:0.000000pt;}
.y28_c00415{bottom:11.326520pt;}
.y1_c00415{bottom:68.000000pt;}
.y23_c00415{bottom:119.350920pt;}
.y22_c00415{bottom:147.233720pt;}
.y21_c00415{bottom:180.180920pt;}
.y20_c00415{bottom:209.326520pt;}
.y1f_c00415{bottom:209.643320pt;}
.y27_c00415{bottom:277.755320pt;}
.y1e_c00415{bottom:295.174920pt;}
.y1d_c00415{bottom:323.686920pt;}
.y1c_c00415{bottom:352.832520pt;}
.y26_c00415{bottom:370.260920pt;}
.y1b_c00415{bottom:375.012920pt;}
.y1a_c00415{bottom:381.661320pt;}
.y19_c00415{bottom:406.376120pt;}
.y17_c00415{bottom:410.494520pt;}
.y18_c00415{bottom:412.395320pt;}
.y25_c00415{bottom:434.254520pt;}
.y16_c00415{bottom:440.907320pt;}
.y14_c00415{bottom:465.617720pt;}
.y15_c00415{bottom:469.736120pt;}
.y13_c00415{bottom:470.052920pt;}
.y24_c00415{bottom:475.750920pt;}
.yf_c00415{bottom:556.539320pt;}
.y11_c00415{bottom:556.856120pt;}
.y12_c00415{bottom:557.172920pt;}
.y10_c00415{bottom:557.485320pt;}
.ye_c00415{bottom:584.734520pt;}
.yc_c00415{bottom:585.363720pt;}
.yd_c00415{bottom:591.387320pt;}
.yb_c00415{bottom:613.875720pt;}
.y9_c00415{bottom:643.336800pt;}
.ya_c00415{bottom:643.338120pt;}
.y8_c00415{bottom:702.896520pt;}
.y7_c00415{bottom:731.725320pt;}
.y6_c00415{bottom:760.554120pt;}
.y4_c00415{bottom:790.966920pt;}
.y5_c00415{bottom:792.550920pt;}
.y3_c00415{bottom:820.750520pt;}
.y2_c00415{bottom:953.802120pt;}
.h19_c00415{height:10.127462pt;}
.h23_c00415{height:12.482434pt;}
.h22_c00415{height:14.318059pt;}
.h27_c00415{height:20.255042pt;}
.h3c_c00415{height:24.964500pt;}
.h31_c00415{height:25.698750pt;}
.h17_c00415{height:27.006684pt;}
.h1c_c00415{height:28.694594pt;}
.h33_c00415{height:29.538549pt;}
.hd_c00415{height:30.382504pt;}
.h26_c00415{height:31.389188pt;}
.h2d_c00415{height:31.437829pt;}
.h7_c00415{height:34.602280pt;}
.h14_c00415{height:35.978250pt;}
.h1e_c00415{height:39.383438pt;}
.h10_c00415{height:39.833246pt;}
.h9_c00415{height:40.074548pt;}
.h38_c00415{height:40.419844pt;}
.h12_c00415{height:40.938220pt;}
.h34_c00415{height:41.628984pt;}
.h3b_c00415{height:41.852250pt;}
.h6_c00415{height:42.953625pt;}
.h30_c00415{height:44.055000pt;}
.h1d_c00415{height:44.198000pt;}
.h15_c00415{height:44.220000pt;}
.h20_c00415{height:45.083672pt;}
.h36_c00415{height:45.256579pt;}
.h2c_c00415{height:46.257934pt;}
.h4_c00415{height:46.624875pt;}
.h39_c00415{height:48.365625pt;}
.h1f_c00415{height:49.929184pt;}
.hc_c00415{height:52.498875pt;}
.h2e_c00415{height:54.756970pt;}
.h2f_c00415{height:56.170125pt;}
.h2a_c00415{height:56.311406pt;}
.h2b_c00415{height:57.175078pt;}
.h5_c00415{height:57.271684pt;}
.h29_c00415{height:57.347985pt;}
.h32_c00415{height:57.822188pt;}
.h1a_c00415{height:58.189496pt;}
.h28_c00415{height:58.207234pt;}
.h11_c00415{height:58.923563pt;}
.hb_c00415{height:59.657812pt;}
.h1b_c00415{height:59.841375pt;}
.he_c00415{height:60.629766pt;}
.h8_c00415{height:60.802673pt;}
.ha_c00415{height:61.310059pt;}
.h3a_c00415{height:61.493438pt;}
.h16_c00415{height:61.666345pt;}
.h3d_c00415{height:61.677000pt;}
.h3_c00415{height:62.702578pt;}
.hf_c00415{height:63.534625pt;}
.h13_c00415{height:63.566250pt;}
.h18_c00415{height:64.948125pt;}
.h2_c00415{height:66.330173pt;}
.h35_c00415{height:70.488184pt;}
.h37_c00415{height:72.369000pt;}
.h24_c00415{height:77.810954pt;}
.h25_c00415{height:91.158375pt;}
.h21_c00415{height:99.858184pt;}
.h1_c00415{height:986.666667pt;}
.h0_c00415{height:1122.666667pt;}
.w1_c00415{width:689.333333pt;}
.w0_c00415{width:793.333333pt;}
.x0_c00415{left:0.000000pt;}
.x1_c00415{left:52.000000pt;}
.x59_c00415{left:61.544253pt;}
.x33_c00415{left:63.207453pt;}
.x3_c00415{left:64.118253pt;}
.xa0_c00415{left:71.431053pt;}
.x34_c00415{left:72.773053pt;}
.x84_c00415{left:80.116653pt;}
.xaa_c00415{left:81.247453pt;}
.x14_c00415{left:82.752253pt;}
.x78_c00415{left:87.081853pt;}
.x76_c00415{left:89.229053pt;}
.x5a_c00415{left:90.425853pt;}
.xb7_c00415{left:91.354253pt;}
.x35_c00415{left:92.467453pt;}
.x6d_c00415{left:95.345053pt;}
.x65_c00415{left:100.251053pt;}
.x36_c00415{left:102.081453pt;}
.x4_c00415{left:103.603853pt;}
.x66_c00415{left:105.148253pt;}
.x47_c00415{left:108.624165pt;}
.x77_c00415{left:109.878253pt;}
.x48_c00415{left:110.771453pt;}
.x37_c00415{left:112.535853pt;}
.x24_c00415{left:114.731453pt;}
.x49_c00415{left:118.863053pt;}
.xab_c00415{left:119.756253pt;}
.x87_c00415{left:129.392253pt;}
.x5_c00415{left:131.772653pt;}
.x4a_c00415{left:138.042653pt;}
.x85_c00415{left:139.213053pt;}
.x43_c00415{left:141.663853pt;}
.x79_c00415{left:146.688653pt;}
.x88_c00415{left:148.365053pt;}
.x7a_c00415{left:155.545853pt;}
.x4b_c00415{left:158.678653pt;}
.x6_c00415{left:161.987453pt;}
.x4c_c00415{left:168.363053pt;}
.x25_c00415{left:171.209853pt;}
.x38_c00415{left:172.155853pt;}
.x15_c00415{left:173.911453pt;}
.x7b_c00415{left:176.714253pt;}
.xac_c00415{left:178.527053pt;}
.xb1_c00415{left:179.957053pt;}
.xa1_c00415{left:183.279053pt;}
.x4d_c00415{left:187.824253pt;}
.x86_c00415{left:189.117853pt;}
.x26_c00415{left:190.525853pt;}
.x39_c00415{left:199.721853pt;}
.x4e_c00415{left:208.266653pt;}
.x89_c00415{left:209.591053pt;}
.x16_c00415{left:212.244253pt;}
.xb2_c00415{left:216.600253pt;}
.x6e_c00415{left:217.704653pt;}
.xad_c00415{left:218.677053pt;}
.x27_c00415{left:219.869453pt;}
.x7_c00415{left:222.443453pt;}
.x5b_c00415{left:226.773053pt;}
.x3a_c00415{left:228.361453pt;}
.x17_c00415{left:229.879453pt;}
.x44_c00415{left:237.909453pt;}
.x4f_c00415{left:246.867853pt;}
.x8_c00415{left:249.428653pt;}
.x99_c00415{left:257.546653pt;}
.x18_c00415{left:260.886253pt;}
.xa2_c00415{left:265.779053pt;}
.x50_c00415{left:266.870253pt;}
.x3b_c00415{left:269.351853pt;}
.x45_c00415{left:271.485853pt;}
.x6f_c00415{left:276.805453pt;}
.x9_c00415{left:278.415853pt;}
.x98_c00415{left:280.831453pt;}
.x92_c00415{left:285.425053pt;}
.xae_c00415{left:286.665853pt;}
.x19_c00415{left:288.557853pt;}
.x7c_c00415{left:297.146653pt;}
.xa_c00415{left:299.461053pt;}
.x7d_c00415{left:301.269453pt;}
.xb3_c00415{left:306.003853pt;}
.x3c_c00415{left:307.825453pt;}
.xa3_c00415{left:309.506253pt;}
.xb_c00415{left:313.378253pt;}
.x67_c00415{left:316.607853pt;}
.xc_c00415{left:317.773853pt;}
.x8a_c00415{left:326.261453pt;}
.x28_c00415{left:327.832253pt;}
.x5c_c00415{left:336.434253pt;}
.x1a_c00415{left:337.873053pt;}
.x3d_c00415{left:342.233453pt;}
.xa4_c00415{left:343.993453pt;}
.x51_c00415{left:346.224253pt;}
.x5d_c00415{left:349.739853pt;}
.x8b_c00415{left:353.814253pt;}
.x93_c00415{left:354.914253pt;}
.x3e_c00415{left:356.683053pt;}
.xd_c00415{left:357.853453pt;}
.xb6_c00415{left:359.732253pt;}
.xb8_c00415{left:364.273053pt;}
.x29_c00415{left:365.571053pt;}
.x3f_c00415{left:367.493853pt;}
.x94_c00415{left:374.287453pt;}
.x68_c00415{left:375.532653pt;}
.x40_c00415{left:376.469853pt;}
.xaf_c00415{left:382.959853pt;}
.x8c_c00415{left:384.209453pt;}
.xe_c00415{left:385.670253pt;}
.xb4_c00415{left:393.924653pt;}
.x2a_c00415{left:396.115853pt;}
.x52_c00415{left:404.097453pt;}
.x41_c00415{left:405.602253pt;}
.x9a_c00415{left:412.457453pt;}
.x7e_c00415{left:414.230653pt;}
.x1b_c00415{left:415.251453pt;}
.x7f_c00415{left:419.101453pt;}
.x69_c00415{left:422.837053pt;}
.xf_c00415{left:424.777453pt;}
.x53_c00415{left:433.388253pt;}
.x10_c00415{left:435.381453pt;}
.x46_c00415{left:436.912653pt;}
.x9b_c00415{left:442.813053pt;}
.xa5_c00415{left:443.908653pt;}
.x5e_c00415{left:445.470653pt;}
.x80_c00415{left:453.518253pt;}
.x1c_c00415{left:454.794253pt;}
.x8d_c00415{left:462.111453pt;}
.x5f_c00415{left:463.286253pt;}
.x11_c00415{left:465.508253pt;}
.x70_c00415{left:472.350253pt;}
.xb0_c00415{left:474.660253pt;}
.xa6_c00415{left:480.529853pt;}
.x81_c00415{left:481.546253pt;}
.x60_c00415{left:482.558253pt;}
.x2b_c00415{left:484.833053pt;}
.x71_c00415{left:492.154653pt;}
.x2c_c00415{left:493.602253pt;}
.x1d_c00415{left:495.305053pt;}
.x54_c00415{left:502.270253pt;}
.x1e_c00415{left:503.348253pt;}
.x72_c00415{left:507.541453pt;}
.x8e_c00415{left:511.109853pt;}
.x2d_c00415{left:513.279053pt;}
.x6a_c00415{left:514.335053pt;}
.x9c_c00415{left:521.595053pt;}
.xb5_c00415{left:529.955053pt;}
.x55_c00415{left:531.512653pt;}
.x8f_c00415{left:532.907453pt;}
.x6b_c00415{left:536.203053pt;}
.xb9_c00415{left:537.932253pt;}
.x95_c00415{left:539.406253pt;}
.x61_c00415{left:541.249853pt;}
.x2e_c00415{left:542.613853pt;}
.x96_c00415{left:546.789453pt;}
.xa7_c00415{left:550.203853pt;}
.x1f_c00415{left:551.444653pt;}
.x6c_c00415{left:556.605853pt;}
.x42_c00415{left:559.144653pt;}
.x90_c00415{left:561.657053pt;}
.x2f_c00415{left:564.772253pt;}
.xa8_c00415{left:568.939053pt;}
.x62_c00415{left:570.043453pt;}
.x30_c00415{left:571.570253pt;}
.x12_c00415{left:573.378653pt;}
.x63_c00415{left:580.203053pt;}
.x20_c00415{left:581.628653pt;}
.x21_c00415{left:583.428253pt;}
.x82_c00415{left:590.023853pt;}
.x22_c00415{left:591.929053pt;}
.x2_c00415{left:594.419453pt;}
.x9d_c00415{left:599.030653pt;}
.x56_c00415{left:599.954653pt;}
.x13_c00415{left:601.648653pt;}
.x73_c00415{left:609.273853pt;}
.x23_c00415{left:610.651053pt;}
.x9e_c00415{left:617.334653pt;}
.x83_c00415{left:618.571053pt;}
.x97_c00415{left:619.503853pt;}
.x57_c00415{left:622.082253pt;}
.x64_c00415{left:623.701453pt;}
.xa9_c00415{left:628.699853pt;}
.x31_c00415{left:629.839453pt;}
.x74_c00415{left:634.006253pt;}
.x75_c00415{left:635.145853pt;}
.x9f_c00415{left:638.243453pt;}
.x91_c00415{left:648.156653pt;}
.x32_c00415{left:649.863853pt;}
.xba_c00415{left:657.854253pt;}
.x58_c00415{left:662.135453pt;}
.xbb_c00415{left:689.415453pt;}
.xbc_c00415{left:691.703453pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_35c4eaff878428cd868707cd.woff2')format("woff");}.ff1_c00416{font-family:ff1_c00416;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00416;src:url('chunks/assets/font_3f9db86a19a1e6a7aa709d7f.woff2')format("woff");}.ff2_c00416{font-family:ff2_c00416;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00416;src:url('chunks/assets/font_9a14bf41c1d79f675cf35e0a.woff2')format("woff");}.ff3_c00416{font-family:ff3_c00416;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m26_c00416{transform:matrix(0.036766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036766,0.000000,0.000000,0.250000,0,0);}
.m31_c00416{transform:matrix(0.044873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.044873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.044873,0.000000,0.000000,0.250000,0,0);}
.m25_c00416{transform:matrix(0.051471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.051471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.051471,0.000000,0.000000,0.250000,0,0);}
.m30_c00416{transform:matrix(0.064103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064103,0.000000,0.000000,0.250000,0,0);}
.m2c_c00416{transform:matrix(0.067308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.067308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.067308,0.000000,0.000000,0.250000,0,0);}
.m16_c00416{transform:matrix(0.068453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.068453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.068453,0.000000,0.000000,0.250000,0,0);}
.m41_c00416{transform:matrix(0.068751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.068751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.068751,0.000000,0.000000,0.250000,0,0);}
.m24_c00416{transform:matrix(0.071079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071079,0.000000,0.000000,0.250000,0,0);}
.m18_c00416{transform:matrix(0.076390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076390,0.000000,0.000000,0.250000,0,0);}
.m69_c00416{transform:matrix(0.077257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077257,0.000000,0.000000,0.250000,0,0);}
.m4f_c00416{transform:matrix(0.078572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078572,0.000000,0.000000,0.250000,0,0);}
.m28_c00416{transform:matrix(0.080883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080883,0.000000,0.000000,0.250000,0,0);}
.m40_c00416{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);}
.m8_c00416{transform:matrix(0.088235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088235,0.000000,0.000000,0.250000,0,0);}
.m2d_c00416{transform:matrix(0.089743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089743,0.000000,0.000000,0.250000,0,0);}
.m27_c00416{transform:matrix(0.095589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095589,0.000000,0.000000,0.250000,0,0);}
.m7_c00416{transform:matrix(0.099264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099264,0.000000,0.000000,0.250000,0,0);}
.m12_c00416{transform:matrix(0.107612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107612,0.000000,0.000000,0.250000,0,0);}
.m8c_c00416{transform:matrix(0.114018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114018,0.000000,0.000000,0.250000,0,0);}
.m2e_c00416{transform:matrix(0.127136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127136,0.000000,0.000000,0.250000,0,0);}
.m17_c00416{transform:matrix(0.128473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128473,0.000000,0.000000,0.250000,0,0);}
.m21_c00416{transform:matrix(0.130724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130724,0.000000,0.000000,0.250000,0,0);}
.m55_c00416{transform:matrix(0.131233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131233,0.000000,0.000000,0.250000,0,0);}
.m42_c00416{transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);}
.m32_c00416{transform:matrix(0.146724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146724,0.000000,0.000000,0.250000,0,0);}
.m15_c00416{transform:matrix(0.152777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152777,0.000000,0.000000,0.250000,0,0);}
.m67_c00416{transform:matrix(0.159723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159723,0.000000,0.000000,0.250000,0,0);}
.m4_c00416{transform:matrix(0.161764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161764,0.000000,0.000000,0.250000,0,0);}
.mad_c00416{transform:matrix(0.166352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166352,0.000000,0.000000,0.250000,0,0);}
.m2b_c00416{transform:matrix(0.169871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169871,0.000000,0.000000,0.250000,0,0);}
.m6_c00416{transform:matrix(0.183823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183823,0.000000,0.000000,0.250000,0,0);}
.m4d_c00416{transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);}
.mc6_c00416{transform:matrix(0.185851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185851,0.000000,0.000000,0.250000,0,0);}
.m23_c00416{transform:matrix(0.191177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191177,0.000000,0.000000,0.250000,0,0);}
.maa_c00416{transform:matrix(0.191774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191774,0.000000,0.000000,0.250000,0,0);}
.m14_c00416{transform:matrix(0.194445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194445,0.000000,0.000000,0.250000,0,0);}
.m5_c00416{transform:matrix(0.194852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194852,0.000000,0.000000,0.250000,0,0);}
.mb9_c00416{transform:matrix(0.196508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196508,0.000000,0.000000,0.250000,0,0);}
.m83_c00416{transform:matrix(0.202879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202879,0.000000,0.000000,0.250000,0,0);}
.me_c00416{transform:matrix(0.206902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206902,0.000000,0.000000,0.250000,0,0);}
.m68_c00416{transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);}
.m48_c00416{transform:matrix(0.209601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209601,0.000000,0.000000,0.250000,0,0);}
.m4e_c00416{transform:matrix(0.211224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211224,0.000000,0.000000,0.250000,0,0);}
.m9c_c00416{transform:matrix(0.211290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211290,0.000000,0.000000,0.250000,0,0);}
.m3_c00416{transform:matrix(0.217646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217646,0.000000,0.000000,0.250000,0,0);}
.m22_c00416{transform:matrix(0.220566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220566,0.000000,0.000000,0.250000,0,0);}
.m5d_c00416{transform:matrix(0.221033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221033,0.000000,0.000000,0.250000,0,0);}
.m85_c00416{transform:matrix(0.221220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221220,0.000000,0.000000,0.250000,0,0);}
.m99_c00416{transform:matrix(0.227479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227479,0.000000,0.000000,0.250000,0,0);}
.mcf_c00416{transform:matrix(0.230396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230396,0.000000,0.000000,0.250000,0,0);}
.m51_c00416{transform:matrix(0.232170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232170,0.000000,0.000000,0.250000,0,0);}
.m50_c00416{transform:matrix(0.233482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233482,0.000000,0.000000,0.250000,0,0);}
.m44_c00416{transform:matrix(0.234784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234784,0.000000,0.000000,0.250000,0,0);}
.mf_c00416{transform:matrix(0.235670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235670,0.000000,0.000000,0.250000,0,0);}
.m3d_c00416{transform:matrix(0.236180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236180,0.000000,0.000000,0.250000,0,0);}
.m2f_c00416{transform:matrix(0.243590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243590,0.000000,0.000000,0.250000,0,0);}
.m11_c00416{transform:matrix(0.243769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243769,0.000000,0.000000,0.250000,0,0);}
.ma9_c00416{transform:matrix(0.247516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247516,0.000000,0.000000,0.250000,0,0);}
.m3a_c00416{transform:matrix(0.249495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249495,0.000000,0.000000,0.250000,0,0);}
.m0_c00416{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m19_c00416{transform:matrix(0.252704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252704,0.000000,0.000000,0.250000,0,0);}
.m91_c00416{transform:matrix(0.253058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253058,0.000000,0.000000,0.250000,0,0);}
.m49_c00416{transform:matrix(0.253936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253936,0.000000,0.000000,0.250000,0,0);}
.m1d_c00416{transform:matrix(0.256270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256270,0.000000,0.000000,0.250000,0,0);}
.mb5_c00416{transform:matrix(0.259575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259575,0.000000,0.000000,0.250000,0,0);}
.md1_c00416{transform:matrix(0.262979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262979,0.000000,0.000000,0.250000,0,0);}
.m37_c00416{transform:matrix(0.265557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265557,0.000000,0.000000,0.250000,0,0);}
.m90_c00416{transform:matrix(0.265645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265645,0.000000,0.000000,0.250000,0,0);}
.m57_c00416{transform:matrix(0.265768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265768,0.000000,0.000000,0.250000,0,0);}
.mbe_c00416{transform:matrix(0.268640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268640,0.000000,0.000000,0.250000,0,0);}
.mac_c00416{transform:matrix(0.268723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268723,0.000000,0.000000,0.250000,0,0);}
.md0_c00416{transform:matrix(0.268911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268911,0.000000,0.000000,0.250000,0,0);}
.mbd_c00416{transform:matrix(0.269002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269002,0.000000,0.000000,0.250000,0,0);}
.m9f_c00416{transform:matrix(0.272203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272203,0.000000,0.000000,0.250000,0,0);}
.m58_c00416{transform:matrix(0.273617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273617,0.000000,0.000000,0.250000,0,0);}
.m7c_c00416{transform:matrix(0.273806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273806,0.000000,0.000000,0.250000,0,0);}
.m38_c00416{transform:matrix(0.273814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273814,0.000000,0.000000,0.250000,0,0);}
.m64_c00416{transform:matrix(0.273891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273891,0.000000,0.000000,0.250000,0,0);}
.m9e_c00416{transform:matrix(0.275312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275312,0.000000,0.000000,0.250000,0,0);}
.md_c00416{transform:matrix(0.277021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277021,0.000000,0.000000,0.250000,0,0);}
.m9_c00416{transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);}
.mc4_c00416{transform:matrix(0.277226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277226,0.000000,0.000000,0.250000,0,0);}
.ma1_c00416{transform:matrix(0.277267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277267,0.000000,0.000000,0.250000,0,0);}
.ma_c00416{transform:matrix(0.278972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278972,0.000000,0.000000,0.250000,0,0);}
.m10_c00416{transform:matrix(0.279059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279059,0.000000,0.000000,0.250000,0,0);}
.m1e_c00416{transform:matrix(0.279072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279072,0.000000,0.000000,0.250000,0,0);}
.m8f_c00416{transform:matrix(0.279226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279226,0.000000,0.000000,0.250000,0,0);}
.m29_c00416{transform:matrix(0.279245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279245,0.000000,0.000000,0.250000,0,0);}
.mbf_c00416{transform:matrix(0.279847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279847,0.000000,0.000000,0.250000,0,0);}
.mc2_c00416{transform:matrix(0.280437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280437,0.000000,0.000000,0.250000,0,0);}
.m87_c00416{transform:matrix(0.281033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281033,0.000000,0.000000,0.250000,0,0);}
.m76_c00416{transform:matrix(0.281262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281262,0.000000,0.000000,0.250000,0,0);}
.m1_c00416{transform:matrix(0.281879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281879,0.000000,0.000000,0.250000,0,0);}
.m2_c00416{transform:matrix(0.284138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284138,0.000000,0.000000,0.250000,0,0);}
.m3f_c00416{transform:matrix(0.286142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286142,0.000000,0.000000,0.250000,0,0);}
.mbb_c00416{transform:matrix(0.286742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286742,0.000000,0.000000,0.250000,0,0);}
.mab_c00416{transform:matrix(0.287492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287492,0.000000,0.000000,0.250000,0,0);}
.m93_c00416{transform:matrix(0.288105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288105,0.000000,0.000000,0.250000,0,0);}
.m8a_c00416{transform:matrix(0.288119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288119,0.000000,0.000000,0.250000,0,0);}
.mc5_c00416{transform:matrix(0.288434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288434,0.000000,0.000000,0.250000,0,0);}
.m36_c00416{transform:matrix(0.289304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289304,0.000000,0.000000,0.250000,0,0);}
.m71_c00416{transform:matrix(0.290528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290528,0.000000,0.000000,0.250000,0,0);}
.m7b_c00416{transform:matrix(0.290594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290594,0.000000,0.000000,0.250000,0,0);}
.m6c_c00416{transform:matrix(0.290849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290849,0.000000,0.000000,0.250000,0,0);}
.m2a_c00416{transform:matrix(0.291252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291252,0.000000,0.000000,0.250000,0,0);}
.mb_c00416{transform:matrix(0.291536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291536,0.000000,0.000000,0.250000,0,0);}
.m73_c00416{transform:matrix(0.291941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291941,0.000000,0.000000,0.250000,0,0);}
.m7a_c00416{transform:matrix(0.291973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291973,0.000000,0.000000,0.250000,0,0);}
.md6_c00416{transform:matrix(0.292379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292379,0.000000,0.000000,0.250000,0,0);}
.m6d_c00416{transform:matrix(0.292626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292626,0.000000,0.000000,0.250000,0,0);}
.m1c_c00416{transform:matrix(0.293491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293491,0.000000,0.000000,0.250000,0,0);}
.m33_c00416{transform:matrix(0.293823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293823,0.000000,0.000000,0.250000,0,0);}
.m7e_c00416{transform:matrix(0.293898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293898,0.000000,0.000000,0.250000,0,0);}
.m6a_c00416{transform:matrix(0.294470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294470,0.000000,0.000000,0.250000,0,0);}
.m97_c00416{transform:matrix(0.296362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296362,0.000000,0.000000,0.250000,0,0);}
.mb3_c00416{transform:matrix(0.296568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296568,0.000000,0.000000,0.250000,0,0);}
.md7_c00416{transform:matrix(0.297057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297057,0.000000,0.000000,0.250000,0,0);}
.mb8_c00416{transform:matrix(0.297391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297391,0.000000,0.000000,0.250000,0,0);}
.mc0_c00416{transform:matrix(0.298194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298194,0.000000,0.000000,0.250000,0,0);}
.m6f_c00416{transform:matrix(0.298976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298976,0.000000,0.000000,0.250000,0,0);}
.md5_c00416{transform:matrix(0.299740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299740,0.000000,0.000000,0.250000,0,0);}
.m86_c00416{transform:matrix(0.301383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301383,0.000000,0.000000,0.250000,0,0);}
.m35_c00416{transform:matrix(0.301472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301472,0.000000,0.000000,0.250000,0,0);}
.m5a_c00416{transform:matrix(0.301473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301473,0.000000,0.000000,0.250000,0,0);}
.maf_c00416{transform:matrix(0.301914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301914,0.000000,0.000000,0.250000,0,0);}
.ma0_c00416{transform:matrix(0.302524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302524,0.000000,0.000000,0.250000,0,0);}
.m89_c00416{transform:matrix(0.302640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302640,0.000000,0.000000,0.250000,0,0);}
.mb4_c00416{transform:matrix(0.303223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303223,0.000000,0.000000,0.250000,0,0);}
.m63_c00416{transform:matrix(0.303987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303987,0.000000,0.000000,0.250000,0,0);}
.mce_c00416{transform:matrix(0.304824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304824,0.000000,0.000000,0.250000,0,0);}
.ma3_c00416{transform:matrix(0.306422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306422,0.000000,0.000000,0.250000,0,0);}
.mbc_c00416{transform:matrix(0.306870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306870,0.000000,0.000000,0.250000,0,0);}
.m3e_c00416{transform:matrix(0.308002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308002,0.000000,0.000000,0.250000,0,0);}
.mb6_c00416{transform:matrix(0.308131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308131,0.000000,0.000000,0.250000,0,0);}
.m62_c00416{transform:matrix(0.309493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309493,0.000000,0.000000,0.250000,0,0);}
.m8d_c00416{transform:matrix(0.309794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309794,0.000000,0.000000,0.250000,0,0);}
.mb1_c00416{transform:matrix(0.309897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309897,0.000000,0.000000,0.250000,0,0);}
.ma8_c00416{transform:matrix(0.310481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310481,0.000000,0.000000,0.250000,0,0);}
.m1b_c00416{transform:matrix(0.311503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311503,0.000000,0.000000,0.250000,0,0);}
.m8e_c00416{transform:matrix(0.315892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315892,0.000000,0.000000,0.250000,0,0);}
.m74_c00416{transform:matrix(0.315930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315930,0.000000,0.000000,0.250000,0,0);}
.m84_c00416{transform:matrix(0.315980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315980,0.000000,0.000000,0.250000,0,0);}
.mb2_c00416{transform:matrix(0.317513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317513,0.000000,0.000000,0.250000,0,0);}
.mb0_c00416{transform:matrix(0.317544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317544,0.000000,0.000000,0.250000,0,0);}
.m1f_c00416{transform:matrix(0.317778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317778,0.000000,0.000000,0.250000,0,0);}
.m81_c00416{transform:matrix(0.318041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318041,0.000000,0.000000,0.250000,0,0);}
.mc3_c00416{transform:matrix(0.318510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318510,0.000000,0.000000,0.250000,0,0);}
.m5e_c00416{transform:matrix(0.318909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318909,0.000000,0.000000,0.250000,0,0);}
.m66_c00416{transform:matrix(0.321281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321281,0.000000,0.000000,0.250000,0,0);}
.m56_c00416{transform:matrix(0.321740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321740,0.000000,0.000000,0.250000,0,0);}
.m5c_c00416{transform:matrix(0.322352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322352,0.000000,0.000000,0.250000,0,0);}
.m4a_c00416{transform:matrix(0.322774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322774,0.000000,0.000000,0.250000,0,0);}
.m75_c00416{transform:matrix(0.322903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322903,0.000000,0.000000,0.250000,0,0);}
.m96_c00416{transform:matrix(0.325205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325205,0.000000,0.000000,0.250000,0,0);}
.ma5_c00416{transform:matrix(0.326146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326146,0.000000,0.000000,0.250000,0,0);}
.m8b_c00416{transform:matrix(0.327682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327682,0.000000,0.000000,0.250000,0,0);}
.m79_c00416{transform:matrix(0.328642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328642,0.000000,0.000000,0.250000,0,0);}
.m80_c00416{transform:matrix(0.329559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329559,0.000000,0.000000,0.250000,0,0);}
.m94_c00416{transform:matrix(0.329979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329979,0.000000,0.000000,0.250000,0,0);}
.md2_c00416{transform:matrix(0.331612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331612,0.000000,0.000000,0.250000,0,0);}
.mba_c00416{transform:matrix(0.331615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331615,0.000000,0.000000,0.250000,0,0);}
.m9b_c00416{transform:matrix(0.332379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332379,0.000000,0.000000,0.250000,0,0);}
.mcb_c00416{transform:matrix(0.333162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333162,0.000000,0.000000,0.250000,0,0);}
.m88_c00416{transform:matrix(0.333402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333402,0.000000,0.000000,0.250000,0,0);}
.m77_c00416{transform:matrix(0.334511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334511,0.000000,0.000000,0.250000,0,0);}
.m3c_c00416{transform:matrix(0.336330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336330,0.000000,0.000000,0.250000,0,0);}
.m52_c00416{transform:matrix(0.337403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337403,0.000000,0.000000,0.250000,0,0);}
.mb7_c00416{transform:matrix(0.340155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340155,0.000000,0.000000,0.250000,0,0);}
.m98_c00416{transform:matrix(0.341694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341694,0.000000,0.000000,0.250000,0,0);}
.m9d_c00416{transform:matrix(0.341766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341766,0.000000,0.000000,0.250000,0,0);}
.m53_c00416{transform:matrix(0.341935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341935,0.000000,0.000000,0.250000,0,0);}
.md3_c00416{transform:matrix(0.345552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345552,0.000000,0.000000,0.250000,0,0);}
.m9a_c00416{transform:matrix(0.346716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346716,0.000000,0.000000,0.250000,0,0);}
.m43_c00416{transform:matrix(0.346804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346804,0.000000,0.000000,0.250000,0,0);}
.m20_c00416{transform:matrix(0.347151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347151,0.000000,0.000000,0.250000,0,0);}
.m46_c00416{transform:matrix(0.347383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347383,0.000000,0.000000,0.250000,0,0);}
.m45_c00416{transform:matrix(0.349134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349134,0.000000,0.000000,0.250000,0,0);}
.m7f_c00416{transform:matrix(0.349360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349360,0.000000,0.000000,0.250000,0,0);}
.m34_c00416{transform:matrix(0.351665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351665,0.000000,0.000000,0.250000,0,0);}
.m95_c00416{transform:matrix(0.351671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351671,0.000000,0.000000,0.250000,0,0);}
.m70_c00416{transform:matrix(0.351935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351935,0.000000,0.000000,0.250000,0,0);}
.m4c_c00416{transform:matrix(0.352524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352524,0.000000,0.000000,0.250000,0,0);}
.m78_c00416{transform:matrix(0.353797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353797,0.000000,0.000000,0.250000,0,0);}
.m13_c00416{transform:matrix(0.357447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357447,0.000000,0.000000,0.250000,0,0);}
.ma2_c00416{transform:matrix(0.357849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357849,0.000000,0.000000,0.250000,0,0);}
.ma4_c00416{transform:matrix(0.359057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359057,0.000000,0.000000,0.250000,0,0);}
.m6e_c00416{transform:matrix(0.359107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359107,0.000000,0.000000,0.250000,0,0);}
.m5b_c00416{transform:matrix(0.359270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359270,0.000000,0.000000,0.250000,0,0);}
.mc_c00416{transform:matrix(0.361713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361713,0.000000,0.000000,0.250000,0,0);}
.m54_c00416{transform:matrix(0.362038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362038,0.000000,0.000000,0.250000,0,0);}
.mc9_c00416{transform:matrix(0.362216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362216,0.000000,0.000000,0.250000,0,0);}
.m61_c00416{transform:matrix(0.363353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363353,0.000000,0.000000,0.250000,0,0);}
.ma6_c00416{transform:matrix(0.365034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365034,0.000000,0.000000,0.250000,0,0);}
.m60_c00416{transform:matrix(0.365848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365848,0.000000,0.000000,0.250000,0,0);}
.m82_c00416{transform:matrix(0.368594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368594,0.000000,0.000000,0.250000,0,0);}
.md4_c00416{transform:matrix(0.369677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369677,0.000000,0.000000,0.250000,0,0);}
.m47_c00416{transform:matrix(0.372596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372596,0.000000,0.000000,0.250000,0,0);}
.m6b_c00416{transform:matrix(0.373056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373056,0.000000,0.000000,0.250000,0,0);}
.mc1_c00416{transform:matrix(0.375447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375447,0.000000,0.000000,0.250000,0,0);}
.ma7_c00416{transform:matrix(0.376128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376128,0.000000,0.000000,0.250000,0,0);}
.m1a_c00416{transform:matrix(0.378291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378291,0.000000,0.000000,0.250000,0,0);}
.mca_c00416{transform:matrix(0.379717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379717,0.000000,0.000000,0.250000,0,0);}
.m92_c00416{transform:matrix(0.380017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380017,0.000000,0.000000,0.250000,0,0);}
.m3b_c00416{transform:matrix(0.392897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392897,0.000000,0.000000,0.250000,0,0);}
.m39_c00416{transform:matrix(0.393152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393152,0.000000,0.000000,0.250000,0,0);}
.m72_c00416{transform:matrix(0.394528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394528,0.000000,0.000000,0.250000,0,0);}
.mcd_c00416{transform:matrix(0.401667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401667,0.000000,0.000000,0.250000,0,0);}
.m7d_c00416{transform:matrix(0.404200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404200,0.000000,0.000000,0.250000,0,0);}
.m5f_c00416{transform:matrix(0.411303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411303,0.000000,0.000000,0.250000,0,0);}
.mcc_c00416{transform:matrix(0.428728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428728,0.000000,0.000000,0.250000,0,0);}
.mae_c00416{transform:matrix(0.437314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437314,0.000000,0.000000,0.250000,0,0);}
.m65_c00416{transform:matrix(0.444249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444249,0.000000,0.000000,0.250000,0,0);}
.mc8_c00416{transform:matrix(0.453367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453367,0.000000,0.000000,0.250000,0,0);}
.m4b_c00416{transform:matrix(0.458717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458717,0.000000,0.000000,0.250000,0,0);}
.m59_c00416{transform:matrix(0.461656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461656,0.000000,0.000000,0.250000,0,0);}
.mc7_c00416{transform:matrix(0.467986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467986,0.000000,0.000000,0.250000,0,0);}
.v0_c00416{vertical-align:0.000000px;}
.ls25_c00416{letter-spacing:-3.021480px;}
.ls9_c00416{letter-spacing:-2.480940px;}
.ls15_c00416{letter-spacing:-2.055636px;}
.ls12_c00416{letter-spacing:-2.027282px;}
.lse_c00416{letter-spacing:-1.663200px;}
.lsd_c00416{letter-spacing:-1.290089px;}
.ls24_c00416{letter-spacing:-0.978199px;}
.ls17_c00416{letter-spacing:-0.893138px;}
.ls1a_c00416{letter-spacing:-0.623779px;}
.ls14_c00416{letter-spacing:-0.354420px;}
.ls5_c00416{letter-spacing:0.000000px;}
.ls1c_c00416{letter-spacing:0.243936px;}
.ls18_c00416{letter-spacing:0.800989px;}
.ls21_c00416{letter-spacing:0.859877px;}
.ls23_c00416{letter-spacing:1.732500px;}
.ls22_c00416{letter-spacing:1.743746px;}
.lsb_c00416{letter-spacing:2.019758px;}
.lsc_c00416{letter-spacing:2.415600px;}
.ls3_c00416{letter-spacing:2.516382px;}
.ls19_c00416{letter-spacing:2.700680px;}
.ls20_c00416{letter-spacing:2.791810px;}
.ls1_c00416{letter-spacing:2.863714px;}
.ls11_c00416{letter-spacing:2.989810px;}
.ls10_c00416{letter-spacing:3.049200px;}
.ls1b_c00416{letter-spacing:3.055100px;}
.ls1f_c00416{letter-spacing:3.217500px;}
.ls8_c00416{letter-spacing:3.247200px;}
.ls1d_c00416{letter-spacing:3.286810px;}
.ls1e_c00416{letter-spacing:3.395700px;}
.ls2_c00416{letter-spacing:3.446863px;}
.ls6_c00416{letter-spacing:3.544200px;}
.ls27_c00416{letter-spacing:3.643200px;}
.ls26_c00416{letter-spacing:4.316400px;}
.ls0_c00416{letter-spacing:7.922376px;}
.ls4_c00416{letter-spacing:10.137204px;}
.ls7_c00416{letter-spacing:48.470598px;}
.ls16_c00416{letter-spacing:49.896198px;}
.lsa_c00416{letter-spacing:51.321798px;}
.lsf_c00416{letter-spacing:55.598598px;}
.ls13_c00416{letter-spacing:57.024198px;}
.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;}
}
.ws1_c00416{word-spacing:-20.584714px;}
.ws4_c00416{word-spacing:-20.421680px;}
.ws7_c00416{word-spacing:-19.464746px;}
.ws5_c00416{word-spacing:-17.721000px;}
.ws3_c00416{word-spacing:-16.827862px;}
.ws8_c00416{word-spacing:-16.742801px;}
.ws9_c00416{word-spacing:0.000000px;}
.ws2_c00416{word-spacing:0.779724px;}
.ws6_c00416{word-spacing:3.543408px;}
.ws0_c00416{word-spacing:20.940201px;}
._4_c00416{margin-left:-25.327764px;}
._1b_c00416{margin-left:-14.814756px;}
._9_c00416{margin-left:-13.167000px;}
._3_c00416{margin-left:-10.326492px;}
._d_c00416{margin-left:-7.797240px;}
._16_c00416{margin-left:-5.812488px;}
._12_c00416{margin-left:-2.923272px;}
._19_c00416{width:1.984752px;}
._10_c00416{width:3.259872px;}
._11_c00416{width:4.678344px;}
._7_c00416{width:5.780016px;}
._15_c00416{width:6.975382px;}
._6_c00416{width:8.491903px;}
._1_c00416{width:9.640224px;}
._13_c00416{width:10.944410px;}
._5_c00416{width:12.971772px;}
._2_c00416{width:14.602104px;}
._c_c00416{width:20.981664px;}
._f_c00416{width:22.398948px;}
._14_c00416{width:24.242328px;}
._0_c00416{width:25.801776px;}
._a_c00416{width:27.126000px;}
._17_c00416{width:28.637136px;}
._1a_c00416{width:30.009672px;}
._8_c00416{width:32.418144px;}
._b_c00416{width:34.804044px;}
._1c_c00416{width:36.238752px;}
._e_c00416{width:38.223504px;}
._1d_c00416{width:41.175288px;}
._18_c00416{width:54.041328px;}
.fc0_c00416{color:transparent;}
.fs18_c00416{font-size:22.176000px;}
.fs19_c00416{font-size:26.928000px;}
.fs12_c00416{font-size:27.720000px;}
.fse_c00416{font-size:33.264000px;}
.fs15_c00416{font-size:34.650000px;}
.fs0_c00416{font-size:39.600000px;}
.fsf_c00416{font-size:43.560000px;}
.fs6_c00416{font-size:47.520000px;}
.fs5_c00416{font-size:48.312000px;}
.fs2_c00416{font-size:48.470598px;}
.fsd_c00416{font-size:49.896198px;}
.fs4_c00416{font-size:51.321798px;}
.fs7_c00416{font-size:55.598598px;}
.fs13_c00416{font-size:55.836198px;}
.fsb_c00416{font-size:57.024198px;}
.fsa_c00416{font-size:59.796198px;}
.fs8_c00416{font-size:60.984000px;}
.fs9_c00416{font-size:64.350000px;}
.fs3_c00416{font-size:64.944000px;}
.fs10_c00416{font-size:65.736198px;}
.fs11_c00416{font-size:67.914000px;}
.fsc_c00416{font-size:70.488000px;}
.fs1_c00416{font-size:70.884000px;}
.fs17_c00416{font-size:72.864000px;}
.fs16_c00416{font-size:86.328000px;}
.fs14_c00416{font-size:91.872198px;}
.y0_c00416{bottom:0.000000px;}
.y1f_c00416{bottom:7.747785px;}
.y1e_c00416{bottom:25.929135px;}
.y1_c00416{bottom:76.500000px;}
.y1d_c00416{bottom:113.247135px;}
.y1b_c00416{bottom:139.620735px;}
.y19_c00416{bottom:170.271135px;}
.y1a_c00416{bottom:175.617135px;}
.y18_c00416{bottom:199.847385px;}
.y17_c00416{bottom:207.688185px;}
.y16_c00416{bottom:241.551135px;}
.y15_c00416{bottom:255.094335px;}
.y1c_c00416{bottom:273.978585px;}
.y14_c00416{bottom:274.696335px;}
.y13_c00416{bottom:308.554335px;}
.y12_c00416{bottom:374.131935px;}
.y11_c00416{bottom:407.628585px;}
.y10_c00416{bottom:440.065935px;}
.ye_c00416{bottom:473.565555px;}
.yf_c00416{bottom:473.567535px;}
.yd_c00416{bottom:505.994985px;}
.yc_c00416{bottom:538.427385px;}
.yb_c00416{bottom:570.508335px;}
.y9_c00416{bottom:570.864735px;}
.ya_c00416{bottom:578.349135px;}
.y8_c00416{bottom:635.368185px;}
.y7_c00416{bottom:667.449135px;}
.y6_c00416{bottom:699.881535px;}
.y5_c00416{bottom:832.813785px;}
.y4_c00416{bottom:866.671785px;}
.y3_c00416{bottom:934.031385px;}
.y2_c00416{bottom:1107.954585px;}
.h19_c00416{height:23.128875px;}
.h1a_c00416{height:28.085063px;}
.h13_c00416{height:28.911094px;}
.h4_c00416{height:32.281418px;}
.hd_c00416{height:33.230868px;}
.h6_c00416{height:34.180317px;}
.he_c00416{height:34.693313px;}
.h16_c00416{height:36.138867px;}
.h9_c00416{height:37.028666px;}
.hc_c00416{height:37.978116px;}
.h2_c00416{height:41.301563px;}
.hf_c00416{height:42.751758px;}
.h8_c00416{height:46.638281px;}
.h7_c00416{height:50.387906px;}
.h1b_c00416{height:52.040175px;}
.h14_c00416{height:58.235410px;}
.hb_c00416{height:58.686698px;}
.ha_c00416{height:63.604406px;}
.h11_c00416{height:66.653877px;}
.h12_c00416{height:67.115039px;}
.h5_c00416{height:67.734563px;}
.h10_c00416{height:68.560800px;}
.h3_c00416{height:69.568770px;}
.h18_c00416{height:71.512031px;}
.h17_c00416{height:84.726211px;}
.h15_c00416{height:90.167538px;}
.h1_c00416{height:1110.000000px;}
.h0_c00416{height:1263.000000px;}
.w1_c00416{width:775.500000px;}
.w0_c00416{width:892.500000px;}
.x2_c00416{left:-3.463365px;}
.x0_c00416{left:0.000000px;}
.x1_c00416{left:58.500000px;}
.x31_c00416{left:72.845835px;}
.x3_c00416{left:74.974335px;}
.x7d_c00416{left:76.147485px;}
.x3f_c00416{left:84.211035px;}
.x4_c00416{left:86.037585px;}
.x32_c00416{left:105.837585px;}
.x85_c00416{left:108.114585px;}
.x70_c00416{left:116.311785px;}
.x1f_c00416{left:117.425535px;}
.x47_c00416{left:126.449385px;}
.xd_c00416{left:128.275935px;}
.x5_c00416{left:130.919235px;}
.x5a_c00416{left:138.373935px;}
.x52_c00416{left:139.428285px;}
.x20_c00416{left:149.976735px;}
.x40_c00416{left:160.891485px;}
.x6_c00416{left:161.995335px;}
.x77_c00416{left:169.271835px;}
.x33_c00416{left:171.058785px;}
.x41_c00416{left:177.488835px;}
.x66_c00416{left:182.126985px;}
.x4b_c00416{left:192.472485px;}
.x53_c00416{left:193.903035px;}
.x7_c00416{left:195.655335px;}
.x54_c00416{left:204.654435px;}
.x34_c00416{left:215.965185px;}
.x4c_c00416{left:225.815685px;}
.x55_c00416{left:227.711535px;}
.x48_c00416{left:229.661835px;}
.x4d_c00416{left:233.631735px;}
.x21_c00416{left:237.250185px;}
.x62_c00416{left:238.547085px;}
.x5b_c00416{left:248.422335px;}
.x8_c00416{left:250.184535px;}
.x9_c00416{left:259.807335px;}
.x49_c00416{left:261.896235px;}
.x35_c00416{left:266.930385px;}
.x63_c00416{left:270.628035px;}
.x36_c00416{left:272.281335px;}
.x71_c00416{left:280.983435px;}
.xe_c00416{left:282.354585px;}
.x67_c00416{left:291.848685px;}
.xf_c00416{left:292.873335px;}
.x4a_c00416{left:302.862435px;}
.x86_c00416{left:306.693735px;}
.x42_c00416{left:309.569685px;}
.x5c_c00416{left:313.613835px;}
.x64_c00416{left:314.846385px;}
.x68_c00416{left:324.538485px;}
.x22_c00416{left:326.117535px;}
.x72_c00416{left:336.220485px;}
.xa_c00416{left:337.858935px;}
.x5d_c00416{left:339.710235px;}
.x56_c00416{left:346.640235px;}
.xb_c00416{left:348.907335px;}
.x10_c00416{left:359.183535px;}
.xc_c00416{left:362.089185px;}
.x87_c00416{left:369.241935px;}
.x57_c00416{left:370.726935px;}
.x4e_c00416{left:380.790285px;}
.x23_c00416{left:387.086685px;}
.x69_c00416{left:391.635735px;}
.x11_c00416{left:394.036485px;}
.x6d_c00416{left:402.887085px;}
.x24_c00416{left:403.951335px;}
.x43_c00416{left:413.935485px;}
.x12_c00416{left:415.014585px;}
.x7e_c00416{left:424.454235px;}
.x37_c00416{left:425.498685px;}
.x73_c00416{left:432.616785px;}
.x25_c00416{left:435.888735px;}
.x13_c00416{left:447.783585px;}
.x38_c00416{left:449.818035px;}
.x44_c00416{left:457.139085px;}
.x4f_c00416{left:458.421135px;}
.x14_c00416{left:467.900385px;}
.x78_c00416{left:470.771385px;}
.x65_c00416{left:478.899285px;}
.x26_c00416{left:480.171435px;}
.x79_c00416{left:490.284285px;}
.x15_c00416{left:491.699985px;}
.x16_c00416{left:502.466235px;}
.x7f_c00416{left:511.732635px;}
.x58_c00416{left:512.871135px;}
.x84_c00416{left:516.845985px;}
.x74_c00416{left:522.865185px;}
.x39_c00416{left:524.394735px;}
.x59_c00416{left:534.898635px;}
.x7a_c00416{left:544.184835px;}
.x75_c00416{left:545.234235px;}
.x17_c00416{left:546.347985px;}
.x5e_c00416{left:555.975735px;}
.x3a_c00416{left:557.881485px;}
.x50_c00416{left:567.736935px;}
.x27_c00416{left:571.459335px;}
.x88_c00416{left:578.374485px;}
.x18_c00416{left:579.854535px;}
.x28_c00416{left:582.062235px;}
.x5f_c00416{left:589.115985px;}
.x3b_c00416{left:590.724735px;}
.x19_c00416{left:601.233585px;}
.x81_c00416{left:612.088935px;}
.x3c_c00416{left:622.879935px;}
.x76_c00416{left:626.493435px;}
.x6e_c00416{left:627.810135px;}
.x1a_c00416{left:629.032785px;}
.x82_c00416{left:631.913685px;}
.x29_c00416{left:634.022385px;}
.x3d_c00416{left:635.284635px;}
.x6a_c00416{left:644.922285px;}
.x1b_c00416{left:646.501335px;}
.x83_c00416{left:650.862285px;}
.x45_c00416{left:655.673685px;}
.x2a_c00416{left:658.262535px;}
.x6b_c00416{left:661.267185px;}
.x89_c00416{left:664.989585px;}
.x7b_c00416{left:666.058785px;}
.x1c_c00416{left:667.350735px;}
.x2b_c00416{left:673.231335px;}
.x80_c00416{left:676.973535px;}
.x51_c00416{left:678.399135px;}
.x2c_c00416{left:680.715735px;}
.x2d_c00416{left:682.849185px;}
.x3e_c00416{left:688.140735px;}
.x2e_c00416{left:691.402785px;}
.x6c_c00416{left:693.838185px;}
.x6f_c00416{left:699.416835px;}
.x1d_c00416{left:701.738385px;}
.x8a_c00416{left:708.505035px;}
.x60_c00416{left:709.529685px;}
.x2f_c00416{left:711.930435px;}
.x1e_c00416{left:721.617585px;}
.x46_c00416{left:723.122385px;}
.x7c_c00416{left:732.472935px;}
.x30_c00416{left:733.962885px;}
.x61_c00416{left:743.937135px;}
.x8c_c00416{left:754.045035px;}
.x8b_c00416{left:775.429035px;}
@media print{
.v0_c00416{vertical-align:0.000000pt;}
.ls25_c00416{letter-spacing:-2.685760pt;}
.ls9_c00416{letter-spacing:-2.205280pt;}
.ls15_c00416{letter-spacing:-1.827232pt;}
.ls12_c00416{letter-spacing:-1.802029pt;}
.lse_c00416{letter-spacing:-1.478400pt;}
.lsd_c00416{letter-spacing:-1.146746pt;}
.ls24_c00416{letter-spacing:-0.869510pt;}
.ls17_c00416{letter-spacing:-0.793901pt;}
.ls1a_c00416{letter-spacing:-0.554470pt;}
.ls14_c00416{letter-spacing:-0.315040pt;}
.ls5_c00416{letter-spacing:0.000000pt;}
.ls1c_c00416{letter-spacing:0.216832pt;}
.ls18_c00416{letter-spacing:0.711990pt;}
.ls21_c00416{letter-spacing:0.764336pt;}
.ls23_c00416{letter-spacing:1.540000pt;}
.ls22_c00416{letter-spacing:1.549997pt;}
.lsb_c00416{letter-spacing:1.795341pt;}
.lsc_c00416{letter-spacing:2.147200pt;}
.ls3_c00416{letter-spacing:2.236784pt;}
.ls19_c00416{letter-spacing:2.400605pt;}
.ls20_c00416{letter-spacing:2.481609pt;}
.ls1_c00416{letter-spacing:2.545523pt;}
.ls11_c00416{letter-spacing:2.657609pt;}
.ls10_c00416{letter-spacing:2.710400pt;}
.ls1b_c00416{letter-spacing:2.715645pt;}
.ls1f_c00416{letter-spacing:2.860000pt;}
.ls8_c00416{letter-spacing:2.886400pt;}
.ls1d_c00416{letter-spacing:2.921609pt;}
.ls1e_c00416{letter-spacing:3.018400pt;}
.ls2_c00416{letter-spacing:3.063878pt;}
.ls6_c00416{letter-spacing:3.150400pt;}
.ls27_c00416{letter-spacing:3.238400pt;}
.ls26_c00416{letter-spacing:3.836800pt;}
.ls0_c00416{letter-spacing:7.042112pt;}
.ls4_c00416{letter-spacing:9.010848pt;}
.ls7_c00416{letter-spacing:43.084976pt;}
.ls16_c00416{letter-spacing:44.352176pt;}
.lsa_c00416{letter-spacing:45.619376pt;}
.lsf_c00416{letter-spacing:49.420976pt;}
.ls13_c00416{letter-spacing:50.688176pt;}
.ws1_c00416{word-spacing:-18.297523pt;}
.ws4_c00416{word-spacing:-18.152605pt;}
.ws7_c00416{word-spacing:-17.301997pt;}
.ws5_c00416{word-spacing:-15.752000pt;}
.ws3_c00416{word-spacing:-14.958099pt;}
.ws8_c00416{word-spacing:-14.882490pt;}
.ws9_c00416{word-spacing:0.000000pt;}
.ws2_c00416{word-spacing:0.693088pt;}
.ws6_c00416{word-spacing:3.149696pt;}
.ws0_c00416{word-spacing:18.613512pt;}
._4_c00416{margin-left:-22.513568pt;}
._1b_c00416{margin-left:-13.168672pt;}
._9_c00416{margin-left:-11.704000pt;}
._3_c00416{margin-left:-9.179104pt;}
._d_c00416{margin-left:-6.930880pt;}
._16_c00416{margin-left:-5.166656pt;}
._12_c00416{margin-left:-2.598464pt;}
._19_c00416{width:1.764224pt;}
._10_c00416{width:2.897664pt;}
._11_c00416{width:4.158528pt;}
._7_c00416{width:5.137792pt;}
._15_c00416{width:6.200339pt;}
._6_c00416{width:7.548358pt;}
._1_c00416{width:8.569088pt;}
._13_c00416{width:9.728365pt;}
._5_c00416{width:11.530464pt;}
._2_c00416{width:12.979648pt;}
._c_c00416{width:18.650368pt;}
._f_c00416{width:19.910176pt;}
._14_c00416{width:21.548736pt;}
._0_c00416{width:22.934912pt;}
._a_c00416{width:24.112000pt;}
._17_c00416{width:25.455232pt;}
._1a_c00416{width:26.675264pt;}
._8_c00416{width:28.816128pt;}
._b_c00416{width:30.936928pt;}
._1c_c00416{width:32.212224pt;}
._e_c00416{width:33.976448pt;}
._1d_c00416{width:36.600256pt;}
._18_c00416{width:48.036736pt;}
.fs18_c00416{font-size:19.712000pt;}
.fs19_c00416{font-size:23.936000pt;}
.fs12_c00416{font-size:24.640000pt;}
.fse_c00416{font-size:29.568000pt;}
.fs15_c00416{font-size:30.800000pt;}
.fs0_c00416{font-size:35.200000pt;}
.fsf_c00416{font-size:38.720000pt;}
.fs6_c00416{font-size:42.240000pt;}
.fs5_c00416{font-size:42.944000pt;}
.fs2_c00416{font-size:43.084976pt;}
.fsd_c00416{font-size:44.352176pt;}
.fs4_c00416{font-size:45.619376pt;}
.fs7_c00416{font-size:49.420976pt;}
.fs13_c00416{font-size:49.632176pt;}
.fsb_c00416{font-size:50.688176pt;}
.fsa_c00416{font-size:53.152176pt;}
.fs8_c00416{font-size:54.208000pt;}
.fs9_c00416{font-size:57.200000pt;}
.fs3_c00416{font-size:57.728000pt;}
.fs10_c00416{font-size:58.432176pt;}
.fs11_c00416{font-size:60.368000pt;}
.fsc_c00416{font-size:62.656000pt;}
.fs1_c00416{font-size:63.008000pt;}
.fs17_c00416{font-size:64.768000pt;}
.fs16_c00416{font-size:76.736000pt;}
.fs14_c00416{font-size:81.664176pt;}
.y0_c00416{bottom:0.000000pt;}
.y1f_c00416{bottom:6.886920pt;}
.y1e_c00416{bottom:23.048120pt;}
.y1_c00416{bottom:68.000000pt;}
.y1d_c00416{bottom:100.664120pt;}
.y1b_c00416{bottom:124.107320pt;}
.y19_c00416{bottom:151.352120pt;}
.y1a_c00416{bottom:156.104120pt;}
.y18_c00416{bottom:177.642120pt;}
.y17_c00416{bottom:184.611720pt;}
.y16_c00416{bottom:214.712120pt;}
.y15_c00416{bottom:226.750520pt;}
.y1c_c00416{bottom:243.536520pt;}
.y14_c00416{bottom:244.174520pt;}
.y13_c00416{bottom:274.270520pt;}
.y12_c00416{bottom:332.561720pt;}
.y11_c00416{bottom:362.336520pt;}
.y10_c00416{bottom:391.169720pt;}
.ye_c00416{bottom:420.947160pt;}
.yf_c00416{bottom:420.948920pt;}
.yd_c00416{bottom:449.773320pt;}
.yc_c00416{bottom:478.602120pt;}
.yb_c00416{bottom:507.118520pt;}
.y9_c00416{bottom:507.435320pt;}
.ya_c00416{bottom:514.088120pt;}
.y8_c00416{bottom:564.771720pt;}
.y7_c00416{bottom:593.288120pt;}
.y6_c00416{bottom:622.116920pt;}
.y5_c00416{bottom:740.278920pt;}
.y4_c00416{bottom:770.374920pt;}
.y3_c00416{bottom:830.250120pt;}
.y2_c00416{bottom:984.848520pt;}
.h19_c00416{height:20.559000pt;}
.h1a_c00416{height:24.964500pt;}
.h13_c00416{height:25.698750pt;}
.h4_c00416{height:28.694594pt;}
.hd_c00416{height:29.538549pt;}
.h6_c00416{height:30.382504pt;}
.he_c00416{height:30.838500pt;}
.h16_c00416{height:32.123438pt;}
.h9_c00416{height:32.914370pt;}
.hc_c00416{height:33.758325pt;}
.h2_c00416{height:36.712500pt;}
.hf_c00416{height:38.001563pt;}
.h8_c00416{height:41.456250pt;}
.h7_c00416{height:44.789250pt;}
.h1b_c00416{height:46.257934pt;}
.h14_c00416{height:51.764809pt;}
.hb_c00416{height:52.165954pt;}
.ha_c00416{height:56.537250pt;}
.h11_c00416{height:59.247891pt;}
.h12_c00416{height:59.657812pt;}
.h5_c00416{height:60.208500pt;}
.h10_c00416{height:60.942934pt;}
.h3_c00416{height:61.838906pt;}
.h18_c00416{height:63.566250pt;}
.h17_c00416{height:75.312188pt;}
.h15_c00416{height:80.148923pt;}
.h1_c00416{height:986.666667pt;}
.h0_c00416{height:1122.666667pt;}
.w1_c00416{width:689.333333pt;}
.w0_c00416{width:793.333333pt;}
.x2_c00416{left:-3.078547pt;}
.x0_c00416{left:0.000000pt;}
.x1_c00416{left:52.000000pt;}
.x31_c00416{left:64.751853pt;}
.x3_c00416{left:66.643853pt;}
.x7d_c00416{left:67.686653pt;}
.x3f_c00416{left:74.854253pt;}
.x4_c00416{left:76.477853pt;}
.x32_c00416{left:94.077853pt;}
.x85_c00416{left:96.101853pt;}
.x70_c00416{left:103.388253pt;}
.x1f_c00416{left:104.378253pt;}
.x47_c00416{left:112.399453pt;}
.xd_c00416{left:114.023053pt;}
.x5_c00416{left:116.372653pt;}
.x5a_c00416{left:122.999053pt;}
.x52_c00416{left:123.936253pt;}
.x20_c00416{left:133.312653pt;}
.x40_c00416{left:143.014653pt;}
.x6_c00416{left:143.995853pt;}
.x77_c00416{left:150.463853pt;}
.x33_c00416{left:152.052253pt;}
.x41_c00416{left:157.767853pt;}
.x66_c00416{left:161.890653pt;}
.x4b_c00416{left:171.086653pt;}
.x53_c00416{left:172.358253pt;}
.x7_c00416{left:173.915853pt;}
.x54_c00416{left:181.915053pt;}
.x34_c00416{left:191.969053pt;}
.x4c_c00416{left:200.725053pt;}
.x55_c00416{left:202.410253pt;}
.x48_c00416{left:204.143853pt;}
.x4d_c00416{left:207.672653pt;}
.x21_c00416{left:210.889053pt;}
.x62_c00416{left:212.041853pt;}
.x5b_c00416{left:220.819853pt;}
.x8_c00416{left:222.386253pt;}
.x9_c00416{left:230.939853pt;}
.x49_c00416{left:232.796653pt;}
.x35_c00416{left:237.271453pt;}
.x63_c00416{left:240.558253pt;}
.x36_c00416{left:242.027853pt;}
.x71_c00416{left:249.763053pt;}
.xe_c00416{left:250.981853pt;}
.x67_c00416{left:259.421053pt;}
.xf_c00416{left:260.331853pt;}
.x4a_c00416{left:269.211053pt;}
.x86_c00416{left:272.616653pt;}
.x42_c00416{left:275.173053pt;}
.x5c_c00416{left:278.767853pt;}
.x64_c00416{left:279.863453pt;}
.x68_c00416{left:288.478653pt;}
.x22_c00416{left:289.882253pt;}
.x72_c00416{left:298.862653pt;}
.xa_c00416{left:300.319053pt;}
.x5d_c00416{left:301.964653pt;}
.x56_c00416{left:308.124653pt;}
.xb_c00416{left:310.139853pt;}
.x10_c00416{left:319.274253pt;}
.xc_c00416{left:321.857053pt;}
.x87_c00416{left:328.215053pt;}
.x57_c00416{left:329.535053pt;}
.x4e_c00416{left:338.480253pt;}
.x23_c00416{left:344.077053pt;}
.x69_c00416{left:348.120653pt;}
.x11_c00416{left:350.254653pt;}
.x6d_c00416{left:358.121853pt;}
.x24_c00416{left:359.067853pt;}
.x43_c00416{left:367.942653pt;}
.x12_c00416{left:368.901853pt;}
.x7e_c00416{left:377.292653pt;}
.x37_c00416{left:378.221053pt;}
.x73_c00416{left:384.548253pt;}
.x25_c00416{left:387.456653pt;}
.x13_c00416{left:398.029853pt;}
.x38_c00416{left:399.838253pt;}
.x44_c00416{left:406.345853pt;}
.x4f_c00416{left:407.485453pt;}
.x14_c00416{left:415.911453pt;}
.x78_c00416{left:418.463453pt;}
.x65_c00416{left:425.688253pt;}
.x26_c00416{left:426.819053pt;}
.x79_c00416{left:435.808253pt;}
.x15_c00416{left:437.066653pt;}
.x16_c00416{left:446.636653pt;}
.x7f_c00416{left:454.873453pt;}
.x58_c00416{left:455.885453pt;}
.x84_c00416{left:459.418653pt;}
.x74_c00416{left:464.769053pt;}
.x39_c00416{left:466.128653pt;}
.x59_c00416{left:475.465453pt;}
.x7a_c00416{left:483.719853pt;}
.x75_c00416{left:484.652653pt;}
.x17_c00416{left:485.642653pt;}
.x5e_c00416{left:494.200653pt;}
.x3a_c00416{left:495.894653pt;}
.x50_c00416{left:504.655053pt;}
.x27_c00416{left:507.963853pt;}
.x88_c00416{left:514.110653pt;}
.x18_c00416{left:515.426253pt;}
.x28_c00416{left:517.388653pt;}
.x5f_c00416{left:523.658653pt;}
.x3b_c00416{left:525.088653pt;}
.x19_c00416{left:534.429853pt;}
.x81_c00416{left:544.079053pt;}
.x3c_c00416{left:553.671053pt;}
.x76_c00416{left:556.883053pt;}
.x6e_c00416{left:558.053453pt;}
.x1a_c00416{left:559.140253pt;}
.x82_c00416{left:561.701053pt;}
.x29_c00416{left:563.575453pt;}
.x3d_c00416{left:564.697453pt;}
.x6a_c00416{left:573.264253pt;}
.x1b_c00416{left:574.667853pt;}
.x83_c00416{left:578.544253pt;}
.x45_c00416{left:582.821053pt;}
.x2a_c00416{left:585.122253pt;}
.x6b_c00416{left:587.793053pt;}
.x89_c00416{left:591.101853pt;}
.x7b_c00416{left:592.052253pt;}
.x1c_c00416{left:593.200653pt;}
.x2b_c00416{left:598.427853pt;}
.x80_c00416{left:601.754253pt;}
.x51_c00416{left:603.021453pt;}
.x2c_c00416{left:605.080653pt;}
.x2d_c00416{left:606.977053pt;}
.x3e_c00416{left:611.680653pt;}
.x2e_c00416{left:614.580253pt;}
.x6c_c00416{left:616.745053pt;}
.x6f_c00416{left:621.703853pt;}
.x1d_c00416{left:623.767453pt;}
.x8a_c00416{left:629.782253pt;}
.x60_c00416{left:630.693053pt;}
.x2f_c00416{left:632.827053pt;}
.x1e_c00416{left:641.437853pt;}
.x46_c00416{left:642.775453pt;}
.x7c_c00416{left:651.087053pt;}
.x30_c00416{left:652.411453pt;}
.x61_c00416{left:661.277453pt;}
.x8c_c00416{left:670.262253pt;}
.x8b_c00416{left:689.270253pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e4583407a17c03ffbaea78be.woff2')format("woff");}.ff1_c00417{font-family:ff1_c00417;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00417;src:url('chunks/assets/font_25edce1adfbd547d69891f82.woff2')format("woff");}.ff2_c00417{font-family:ff2_c00417;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00417;src:url('chunks/assets/font_ea0ffff9b2718ad1fad0cbc7.woff2')format("woff");}.ff3_c00417{font-family:ff3_c00417;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00417;src:url('chunks/assets/font_8586960d31c95625e030e45e.woff2')format("woff");}.ff4_c00417{font-family:ff4_c00417;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00417;src:url('chunks/assets/font_36f1830c1d4d51ac761bb461.woff2')format("woff");}.ff5_c00417{font-family:ff5_c00417;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.me0_c00417{transform:matrix(0.040001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040001,0.000000,0.000000,0.250000,0,0);}
.m93_c00417{transform:matrix(0.041670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.041670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.041670,0.000000,0.000000,0.250000,0,0);}
.mb2_c00417{transform:matrix(0.048781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048781,0.000000,0.000000,0.250000,0,0);}
.m69_c00417{transform:matrix(0.066078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066078,0.000000,0.000000,0.250000,0,0);}
.mef_c00417{transform:matrix(0.070834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070834,0.000000,0.000000,0.250000,0,0);}
.mcc_c00417{transform:matrix(0.071428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071428,0.000000,0.000000,0.250000,0,0);}
.m54_c00417{transform:matrix(0.081251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081251,0.000000,0.000000,0.250000,0,0);}
.m105_c00417{transform:matrix(0.092105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092105,0.000000,0.000000,0.250000,0,0);}
.m53_c00417{transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);}
.m47_c00417{transform:matrix(0.097222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097222,0.000000,0.000000,0.250000,0,0);}
.m5f_c00417{transform:matrix(0.108109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108109,0.000000,0.000000,0.250000,0,0);}
.mf0_c00417{transform:matrix(0.113096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113096,0.000000,0.000000,0.250000,0,0);}
.m5d_c00417{transform:matrix(0.115816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115816,0.000000,0.000000,0.250000,0,0);}
.mf8_c00417{transform:matrix(0.126044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126044,0.000000,0.000000,0.250000,0,0);}
.m5b_c00417{transform:matrix(0.128728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128728,0.000000,0.000000,0.250000,0,0);}
.m19_c00417{transform:matrix(0.131372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131372,0.000000,0.000000,0.250000,0,0);}
.m58_c00417{transform:matrix(0.132812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132812,0.000000,0.000000,0.250000,0,0);}
.mb3_c00417{transform:matrix(0.140244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140244,0.000000,0.000000,0.250000,0,0);}
.mdf_c00417{transform:matrix(0.142501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142501,0.000000,0.000000,0.250000,0,0);}
.mcb_c00417{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);}
.mde_c00417{transform:matrix(0.145001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145001,0.000000,0.000000,0.250000,0,0);}
.m60_c00417{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00417{transform:matrix(0.152777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152777,0.000000,0.000000,0.250000,0,0);}
.m107_c00417{transform:matrix(0.157895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157895,0.000000,0.000000,0.250000,0,0);}
.mb4_c00417{transform:matrix(0.158537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158537,0.000000,0.000000,0.250000,0,0);}
.m7c_c00417{transform:matrix(0.159353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159353,0.000000,0.000000,0.250000,0,0);}
.m6e_c00417{transform:matrix(0.163568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163568,0.000000,0.000000,0.250000,0,0);}
.mb1_c00417{transform:matrix(0.164634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164634,0.000000,0.000000,0.250000,0,0);}
.m91_c00417{transform:matrix(0.173611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173611,0.000000,0.000000,0.250000,0,0);}
.m12_c00417{transform:matrix(0.174983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174983,0.000000,0.000000,0.250000,0,0);}
.m7e_c00417{transform:matrix(0.177473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177473,0.000000,0.000000,0.250000,0,0);}
.mff_c00417{transform:matrix(0.177557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177557,0.000000,0.000000,0.250000,0,0);}
.m28_c00417{transform:matrix(0.177696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177696,0.000000,0.000000,0.250000,0,0);}
.m55_c00417{transform:matrix(0.179167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179167,0.000000,0.000000,0.250000,0,0);}
.m3e_c00417{transform:matrix(0.179891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179891,0.000000,0.000000,0.250000,0,0);}
.m2f_c00417{transform:matrix(0.180965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180965,0.000000,0.000000,0.250000,0,0);}
.mc2_c00417{transform:matrix(0.182653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182653,0.000000,0.000000,0.250000,0,0);}
.m39_c00417{transform:matrix(0.183682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183682,0.000000,0.000000,0.250000,0,0);}
.mb6_c00417{transform:matrix(0.183813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183813,0.000000,0.000000,0.250000,0,0);}
.mab_c00417{transform:matrix(0.184146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184146,0.000000,0.000000,0.250000,0,0);}
.m108_c00417{transform:matrix(0.184210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184210,0.000000,0.000000,0.250000,0,0);}
.m7f_c00417{transform:matrix(0.185049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185049,0.000000,0.000000,0.250000,0,0);}
.m104_c00417{transform:matrix(0.186403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186403,0.000000,0.000000,0.250000,0,0);}
.m106_c00417{transform:matrix(0.197368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197368,0.000000,0.000000,0.250000,0,0);}
.mf7_c00417{transform:matrix(0.199297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199297,0.000000,0.000000,0.250000,0,0);}
.m8e_c00417{transform:matrix(0.203057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203057,0.000000,0.000000,0.250000,0,0);}
.m88_c00417{transform:matrix(0.221478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221478,0.000000,0.000000,0.250000,0,0);}
.m6f_c00417{transform:matrix(0.223075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223075,0.000000,0.000000,0.250000,0,0);}
.m96_c00417{transform:matrix(0.234841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234841,0.000000,0.000000,0.250000,0,0);}
.m90_c00417{transform:matrix(0.234882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234882,0.000000,0.000000,0.250000,0,0);}
.mac_c00417{transform:matrix(0.235772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235772,0.000000,0.000000,0.250000,0,0);}
.m27_c00417{transform:matrix(0.244668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244668,0.000000,0.000000,0.250000,0,0);}
.m8a_c00417{transform:matrix(0.248022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248022,0.000000,0.000000,0.250000,0,0);}
.m3_c00417{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00417{transform:matrix(0.251245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251245,0.000000,0.000000,0.250000,0,0);}
.m3d_c00417{transform:matrix(0.252705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252705,0.000000,0.000000,0.250000,0,0);}
.mf_c00417{transform:matrix(0.252932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252932,0.000000,0.000000,0.250000,0,0);}
.m82_c00417{transform:matrix(0.253719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253719,0.000000,0.000000,0.250000,0,0);}
.md7_c00417{transform:matrix(0.254252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254252,0.000000,0.000000,0.250000,0,0);}
.mdd_c00417{transform:matrix(0.255058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255058,0.000000,0.000000,0.250000,0,0);}
.mf9_c00417{transform:matrix(0.256076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256076,0.000000,0.000000,0.250000,0,0);}
.me3_c00417{transform:matrix(0.259957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259957,0.000000,0.000000,0.250000,0,0);}
.m6b_c00417{transform:matrix(0.260839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260839,0.000000,0.000000,0.250000,0,0);}
.m40_c00417{transform:matrix(0.261138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261138,0.000000,0.000000,0.250000,0,0);}
.mcd_c00417{transform:matrix(0.261904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261904,0.000000,0.000000,0.250000,0,0);}
.m74_c00417{transform:matrix(0.262240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262240,0.000000,0.000000,0.250000,0,0);}
.m2d_c00417{transform:matrix(0.263473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263473,0.000000,0.000000,0.250000,0,0);}
.m9b_c00417{transform:matrix(0.264496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264496,0.000000,0.000000,0.250000,0,0);}
.me4_c00417{transform:matrix(0.265474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265474,0.000000,0.000000,0.250000,0,0);}
.mc1_c00417{transform:matrix(0.265645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265645,0.000000,0.000000,0.250000,0,0);}
.m1f_c00417{transform:matrix(0.265817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265817,0.000000,0.000000,0.250000,0,0);}
.me2_c00417{transform:matrix(0.266668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266668,0.000000,0.000000,0.250000,0,0);}
.m21_c00417{transform:matrix(0.267109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267109,0.000000,0.000000,0.250000,0,0);}
.m1e_c00417{transform:matrix(0.267392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267392,0.000000,0.000000,0.250000,0,0);}
.m73_c00417{transform:matrix(0.267449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267449,0.000000,0.000000,0.250000,0,0);}
.m2e_c00417{transform:matrix(0.268166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268166,0.000000,0.000000,0.250000,0,0);}
.m6d_c00417{transform:matrix(0.268712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268712,0.000000,0.000000,0.250000,0,0);}
.m71_c00417{transform:matrix(0.268955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268955,0.000000,0.000000,0.250000,0,0);}
.md2_c00417{transform:matrix(0.269002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269002,0.000000,0.000000,0.250000,0,0);}
.m9e_c00417{transform:matrix(0.270476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270476,0.000000,0.000000,0.250000,0,0);}
.m92_c00417{transform:matrix(0.270836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270836,0.000000,0.000000,0.250000,0,0);}
.m11_c00417{transform:matrix(0.272753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272753,0.000000,0.000000,0.250000,0,0);}
.m35_c00417{transform:matrix(0.272983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272983,0.000000,0.000000,0.250000,0,0);}
.m10b_c00417{transform:matrix(0.273806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273806,0.000000,0.000000,0.250000,0,0);}
.mfc_c00417{transform:matrix(0.275294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275294,0.000000,0.000000,0.250000,0,0);}
.m52_c00417{transform:matrix(0.276409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276409,0.000000,0.000000,0.250000,0,0);}
.m70_c00417{transform:matrix(0.277011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277011,0.000000,0.000000,0.250000,0,0);}
.m1d_c00417{transform:matrix(0.277302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277302,0.000000,0.000000,0.250000,0,0);}
.m5_c00417{transform:matrix(0.277573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277573,0.000000,0.000000,0.250000,0,0);}
.m22_c00417{transform:matrix(0.277744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277744,0.000000,0.000000,0.250000,0,0);}
.m2a_c00417{transform:matrix(0.278983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278983,0.000000,0.000000,0.250000,0,0);}
.m4b_c00417{transform:matrix(0.279572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279572,0.000000,0.000000,0.250000,0,0);}
.m66_c00417{transform:matrix(0.279643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279643,0.000000,0.000000,0.250000,0,0);}
.m78_c00417{transform:matrix(0.280874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280874,0.000000,0.000000,0.250000,0,0);}
.m67_c00417{transform:matrix(0.281766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281766,0.000000,0.000000,0.250000,0,0);}
.m23_c00417{transform:matrix(0.282258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282258,0.000000,0.000000,0.250000,0,0);}
.mea_c00417{transform:matrix(0.282654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282654,0.000000,0.000000,0.250000,0,0);}
.ma8_c00417{transform:matrix(0.284138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284138,0.000000,0.000000,0.250000,0,0);}
.m32_c00417{transform:matrix(0.285157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285157,0.000000,0.000000,0.250000,0,0);}
.mbf_c00417{transform:matrix(0.285352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285352,0.000000,0.000000,0.250000,0,0);}
.mf3_c00417{transform:matrix(0.285380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285380,0.000000,0.000000,0.250000,0,0);}
.m6_c00417{transform:matrix(0.286142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286142,0.000000,0.000000,0.250000,0,0);}
.m2b_c00417{transform:matrix(0.286291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286291,0.000000,0.000000,0.250000,0,0);}
.mbb_c00417{transform:matrix(0.286742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286742,0.000000,0.000000,0.250000,0,0);}
.mc_c00417{transform:matrix(0.287548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287548,0.000000,0.000000,0.250000,0,0);}
.m86_c00417{transform:matrix(0.288628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288628,0.000000,0.000000,0.250000,0,0);}
.m17_c00417{transform:matrix(0.288660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288660,0.000000,0.000000,0.250000,0,0);}
.md4_c00417{transform:matrix(0.289304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289304,0.000000,0.000000,0.250000,0,0);}
.ma6_c00417{transform:matrix(0.289383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289383,0.000000,0.000000,0.250000,0,0);}
.m2c_c00417{transform:matrix(0.289583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289583,0.000000,0.000000,0.250000,0,0);}
.m64_c00417{transform:matrix(0.289792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289792,0.000000,0.000000,0.250000,0,0);}
.ma_c00417{transform:matrix(0.290617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290617,0.000000,0.000000,0.250000,0,0);}
.mb_c00417{transform:matrix(0.291252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291252,0.000000,0.000000,0.250000,0,0);}
.m7_c00417{transform:matrix(0.291634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291634,0.000000,0.000000,0.250000,0,0);}
.md1_c00417{transform:matrix(0.291941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291941,0.000000,0.000000,0.250000,0,0);}
.m56_c00417{transform:matrix(0.292279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292279,0.000000,0.000000,0.250000,0,0);}
.me7_c00417{transform:matrix(0.292510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292510,0.000000,0.000000,0.250000,0,0);}
.m77_c00417{transform:matrix(0.293583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293583,0.000000,0.000000,0.250000,0,0);}
.me1_c00417{transform:matrix(0.293763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293763,0.000000,0.000000,0.250000,0,0);}
.m1c_c00417{transform:matrix(0.294470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294470,0.000000,0.000000,0.250000,0,0);}
.m14_c00417{transform:matrix(0.294656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294656,0.000000,0.000000,0.250000,0,0);}
.mb9_c00417{transform:matrix(0.295611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295611,0.000000,0.000000,0.250000,0,0);}
.mb8_c00417{transform:matrix(0.295677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295677,0.000000,0.000000,0.250000,0,0);}
.m75_c00417{transform:matrix(0.296091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296091,0.000000,0.000000,0.250000,0,0);}
.ma0_c00417{transform:matrix(0.296362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296362,0.000000,0.000000,0.250000,0,0);}
.m8c_c00417{transform:matrix(0.296568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296568,0.000000,0.000000,0.250000,0,0);}
.m9f_c00417{transform:matrix(0.297163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297163,0.000000,0.000000,0.250000,0,0);}
.me5_c00417{transform:matrix(0.299060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299060,0.000000,0.000000,0.250000,0,0);}
.m4f_c00417{transform:matrix(0.299740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299740,0.000000,0.000000,0.250000,0,0);}
.md3_c00417{transform:matrix(0.299918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299918,0.000000,0.000000,0.250000,0,0);}
.m102_c00417{transform:matrix(0.300381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300381,0.000000,0.000000,0.250000,0,0);}
.md6_c00417{transform:matrix(0.300895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300895,0.000000,0.000000,0.250000,0,0);}
.m8_c00417{transform:matrix(0.301643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301643,0.000000,0.000000,0.250000,0,0);}
.maf_c00417{transform:matrix(0.301657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301657,0.000000,0.000000,0.250000,0,0);}
.m9d_c00417{transform:matrix(0.301669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301669,0.000000,0.000000,0.250000,0,0);}
.mfe_c00417{transform:matrix(0.301710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301710,0.000000,0.000000,0.250000,0,0);}
.m34_c00417{transform:matrix(0.301848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301848,0.000000,0.000000,0.250000,0,0);}
.mfd_c00417{transform:matrix(0.302640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302640,0.000000,0.000000,0.250000,0,0);}
.m57_c00417{transform:matrix(0.302922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302922,0.000000,0.000000,0.250000,0,0);}
.m24_c00417{transform:matrix(0.303098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303098,0.000000,0.000000,0.250000,0,0);}
.m59_c00417{transform:matrix(0.303154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303154,0.000000,0.000000,0.250000,0,0);}
.m94_c00417{transform:matrix(0.303223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303223,0.000000,0.000000,0.250000,0,0);}
.mf5_c00417{transform:matrix(0.305967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305967,0.000000,0.000000,0.250000,0,0);}
.m3a_c00417{transform:matrix(0.306457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306457,0.000000,0.000000,0.250000,0,0);}
.mf4_c00417{transform:matrix(0.307240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307240,0.000000,0.000000,0.250000,0,0);}
.m4c_c00417{transform:matrix(0.307302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307302,0.000000,0.000000,0.250000,0,0);}
.m4e_c00417{transform:matrix(0.307487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307487,0.000000,0.000000,0.250000,0,0);}
.m43_c00417{transform:matrix(0.307571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307571,0.000000,0.000000,0.250000,0,0);}
.m100_c00417{transform:matrix(0.307685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307685,0.000000,0.000000,0.250000,0,0);}
.mcf_c00417{transform:matrix(0.308094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308094,0.000000,0.000000,0.250000,0,0);}
.mb0_c00417{transform:matrix(0.308142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308142,0.000000,0.000000,0.250000,0,0);}
.m85_c00417{transform:matrix(0.308620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308620,0.000000,0.000000,0.250000,0,0);}
.mca_c00417{transform:matrix(0.308918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308918,0.000000,0.000000,0.250000,0,0);}
.m84_c00417{transform:matrix(0.308957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308957,0.000000,0.000000,0.250000,0,0);}
.m63_c00417{transform:matrix(0.309343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309343,0.000000,0.000000,0.250000,0,0);}
.mbe_c00417{transform:matrix(0.310084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310084,0.000000,0.000000,0.250000,0,0);}
.m44_c00417{transform:matrix(0.310355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310355,0.000000,0.000000,0.250000,0,0);}
.m16_c00417{transform:matrix(0.310706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310706,0.000000,0.000000,0.250000,0,0);}
.m51_c00417{transform:matrix(0.312661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312661,0.000000,0.000000,0.250000,0,0);}
.m4_c00417{transform:matrix(0.313220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313220,0.000000,0.000000,0.250000,0,0);}
.mad_c00417{transform:matrix(0.313420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313420,0.000000,0.000000,0.250000,0,0);}
.mc9_c00417{transform:matrix(0.313645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313645,0.000000,0.000000,0.250000,0,0);}
.m5e_c00417{transform:matrix(0.314451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314451,0.000000,0.000000,0.250000,0,0);}
.m87_c00417{transform:matrix(0.315168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315168,0.000000,0.000000,0.250000,0,0);}
.m3c_c00417{transform:matrix(0.316647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316647,0.000000,0.000000,0.250000,0,0);}
.m1b_c00417{transform:matrix(0.317087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317087,0.000000,0.000000,0.250000,0,0);}
.m62_c00417{transform:matrix(0.317970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317970,0.000000,0.000000,0.250000,0,0);}
.ma4_c00417{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);}
.med_c00417{transform:matrix(0.318501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318501,0.000000,0.000000,0.250000,0,0);}
.m97_c00417{transform:matrix(0.318529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318529,0.000000,0.000000,0.250000,0,0);}
.ma2_c00417{transform:matrix(0.320189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320189,0.000000,0.000000,0.250000,0,0);}
.md8_c00417{transform:matrix(0.320251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320251,0.000000,0.000000,0.250000,0,0);}
.md_c00417{transform:matrix(0.320254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320254,0.000000,0.000000,0.250000,0,0);}
.m10a_c00417{transform:matrix(0.321196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321196,0.000000,0.000000,0.250000,0,0);}
.m8b_c00417{transform:matrix(0.321617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321617,0.000000,0.000000,0.250000,0,0);}
.mf2_c00417{transform:matrix(0.322443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322443,0.000000,0.000000,0.250000,0,0);}
.m46_c00417{transform:matrix(0.322495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322495,0.000000,0.000000,0.250000,0,0);}
.m7a_c00417{transform:matrix(0.322774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322774,0.000000,0.000000,0.250000,0,0);}
.m79_c00417{transform:matrix(0.324089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324089,0.000000,0.000000,0.250000,0,0);}
.meb_c00417{transform:matrix(0.324706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324706,0.000000,0.000000,0.250000,0,0);}
.m101_c00417{transform:matrix(0.325615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325615,0.000000,0.000000,0.250000,0,0);}
.md5_c00417{transform:matrix(0.325709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325709,0.000000,0.000000,0.250000,0,0);}
.mba_c00417{transform:matrix(0.327415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327415,0.000000,0.000000,0.250000,0,0);}
.m4d_c00417{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.mdb_c00417{transform:matrix(0.327767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327767,0.000000,0.000000,0.250000,0,0);}
.m18_c00417{transform:matrix(0.328642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328642,0.000000,0.000000,0.250000,0,0);}
.mfa_c00417{transform:matrix(0.328721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328721,0.000000,0.000000,0.250000,0,0);}
.me_c00417{transform:matrix(0.329240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329240,0.000000,0.000000,0.250000,0,0);}
.m9_c00417{transform:matrix(0.330307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330307,0.000000,0.000000,0.250000,0,0);}
.m81_c00417{transform:matrix(0.332382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332382,0.000000,0.000000,0.250000,0,0);}
.m76_c00417{transform:matrix(0.332501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332501,0.000000,0.000000,0.250000,0,0);}
.m83_c00417{transform:matrix(0.332658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332658,0.000000,0.000000,0.250000,0,0);}
.mb5_c00417{transform:matrix(0.332751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332751,0.000000,0.000000,0.250000,0,0);}
.me8_c00417{transform:matrix(0.332810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332810,0.000000,0.000000,0.250000,0,0);}
.m3b_c00417{transform:matrix(0.333003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333003,0.000000,0.000000,0.250000,0,0);}
.m6a_c00417{transform:matrix(0.333335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333335,0.000000,0.000000,0.250000,0,0);}
.m4a_c00417{transform:matrix(0.334227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334227,0.000000,0.000000,0.250000,0,0);}
.m99_c00417{transform:matrix(0.334473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334473,0.000000,0.000000,0.250000,0,0);}
.m29_c00417{transform:matrix(0.335337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335337,0.000000,0.000000,0.250000,0,0);}
.me6_c00417{transform:matrix(0.336680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336680,0.000000,0.000000,0.250000,0,0);}
.mc7_c00417{transform:matrix(0.337153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337153,0.000000,0.000000,0.250000,0,0);}
.m9a_c00417{transform:matrix(0.337675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337675,0.000000,0.000000,0.250000,0,0);}
.mf6_c00417{transform:matrix(0.337726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337726,0.000000,0.000000,0.250000,0,0);}
.mbc_c00417{transform:matrix(0.338071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338071,0.000000,0.000000,0.250000,0,0);}
.m8d_c00417{transform:matrix(0.338456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338456,0.000000,0.000000,0.250000,0,0);}
.m50_c00417{transform:matrix(0.340666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340666,0.000000,0.000000,0.250000,0,0);}
.m13_c00417{transform:matrix(0.341213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341213,0.000000,0.000000,0.250000,0,0);}
.m48_c00417{transform:matrix(0.341638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341638,0.000000,0.000000,0.250000,0,0);}
.mc6_c00417{transform:matrix(0.341694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341694,0.000000,0.000000,0.250000,0,0);}
.m98_c00417{transform:matrix(0.342455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342455,0.000000,0.000000,0.250000,0,0);}
.m72_c00417{transform:matrix(0.343388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343388,0.000000,0.000000,0.250000,0,0);}
.mc5_c00417{transform:matrix(0.343519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343519,0.000000,0.000000,0.250000,0,0);}
.m25_c00417{transform:matrix(0.345304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345304,0.000000,0.000000,0.250000,0,0);}
.m30_c00417{transform:matrix(0.345425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345425,0.000000,0.000000,0.250000,0,0);}
.m15_c00417{transform:matrix(0.345714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345714,0.000000,0.000000,0.250000,0,0);}
.mbd_c00417{transform:matrix(0.346425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346425,0.000000,0.000000,0.250000,0,0);}
.m5a_c00417{transform:matrix(0.346682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346682,0.000000,0.000000,0.250000,0,0);}
.m1a_c00417{transform:matrix(0.347091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347091,0.000000,0.000000,0.250000,0,0);}
.m68_c00417{transform:matrix(0.348018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348018,0.000000,0.000000,0.250000,0,0);}
.m80_c00417{transform:matrix(0.348489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348489,0.000000,0.000000,0.250000,0,0);}
.mc4_c00417{transform:matrix(0.348809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348809,0.000000,0.000000,0.250000,0,0);}
.m36_c00417{transform:matrix(0.350461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350461,0.000000,0.000000,0.250000,0,0);}
.m103_c00417{transform:matrix(0.351644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351644,0.000000,0.000000,0.250000,0,0);}
.m95_c00417{transform:matrix(0.352681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352681,0.000000,0.000000,0.250000,0,0);}
.m26_c00417{transform:matrix(0.355191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355191,0.000000,0.000000,0.250000,0,0);}
.mf1_c00417{transform:matrix(0.357347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357347,0.000000,0.000000,0.250000,0,0);}
.md9_c00417{transform:matrix(0.357439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357439,0.000000,0.000000,0.250000,0,0);}
.m65_c00417{transform:matrix(0.357890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357890,0.000000,0.000000,0.250000,0,0);}
.me9_c00417{transform:matrix(0.358587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358587,0.000000,0.000000,0.250000,0,0);}
.mda_c00417{transform:matrix(0.360673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360673,0.000000,0.000000,0.250000,0,0);}
.m10_c00417{transform:matrix(0.361892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361892,0.000000,0.000000,0.250000,0,0);}
.mfb_c00417{transform:matrix(0.362038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362038,0.000000,0.000000,0.250000,0,0);}
.m7b_c00417{transform:matrix(0.366394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366394,0.000000,0.000000,0.250000,0,0);}
.maa_c00417{transform:matrix(0.366787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366787,0.000000,0.000000,0.250000,0,0);}
.m109_c00417{transform:matrix(0.368594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368594,0.000000,0.000000,0.250000,0,0);}
.m8f_c00417{transform:matrix(0.368857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368857,0.000000,0.000000,0.250000,0,0);}
.m7d_c00417{transform:matrix(0.369320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369320,0.000000,0.000000,0.250000,0,0);}
.mee_c00417{transform:matrix(0.369756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369756,0.000000,0.000000,0.250000,0,0);}
.mec_c00417{transform:matrix(0.370543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370543,0.000000,0.000000,0.250000,0,0);}
.mc0_c00417{transform:matrix(0.371179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371179,0.000000,0.000000,0.250000,0,0);}
.mae_c00417{transform:matrix(0.372786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372786,0.000000,0.000000,0.250000,0,0);}
.mc3_c00417{transform:matrix(0.373056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373056,0.000000,0.000000,0.250000,0,0);}
.m45_c00417{transform:matrix(0.378207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378207,0.000000,0.000000,0.250000,0,0);}
.ma3_c00417{transform:matrix(0.379717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379717,0.000000,0.000000,0.250000,0,0);}
.ma5_c00417{transform:matrix(0.379886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379886,0.000000,0.000000,0.250000,0,0);}
.m38_c00417{transform:matrix(0.380136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380136,0.000000,0.000000,0.250000,0,0);}
.m49_c00417{transform:matrix(0.382810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382810,0.000000,0.000000,0.250000,0,0);}
.mc8_c00417{transform:matrix(0.386436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386436,0.000000,0.000000,0.250000,0,0);}
.m3f_c00417{transform:matrix(0.386861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386861,0.000000,0.000000,0.250000,0,0);}
.m33_c00417{transform:matrix(0.390365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390365,0.000000,0.000000,0.250000,0,0);}
.m5c_c00417{transform:matrix(0.392570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392570,0.000000,0.000000,0.250000,0,0);}
.m61_c00417{transform:matrix(0.393041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393041,0.000000,0.000000,0.250000,0,0);}
.ma1_c00417{transform:matrix(0.394162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394162,0.000000,0.000000,0.250000,0,0);}
.m42_c00417{transform:matrix(0.394441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394441,0.000000,0.000000,0.250000,0,0);}
.md0_c00417{transform:matrix(0.399536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399536,0.000000,0.000000,0.250000,0,0);}
.m89_c00417{transform:matrix(0.401152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401152,0.000000,0.000000,0.250000,0,0);}
.m37_c00417{transform:matrix(0.406678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406678,0.000000,0.000000,0.250000,0,0);}
.mb7_c00417{transform:matrix(0.429849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429849,0.000000,0.000000,0.250000,0,0);}
.mce_c00417{transform:matrix(0.443427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443427,0.000000,0.000000,0.250000,0,0);}
.ma7_c00417{transform:matrix(0.453610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453610,0.000000,0.000000,0.250000,0,0);}
.m9c_c00417{transform:matrix(0.458899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458899,0.000000,0.000000,0.250000,0,0);}
.m41_c00417{transform:matrix(0.468742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468742,0.000000,0.000000,0.250000,0,0);}
.m31_c00417{transform:matrix(0.469700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469700,0.000000,0.000000,0.250000,0,0);}
.mdc_c00417{transform:matrix(0.481867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481867,0.000000,0.000000,0.250000,0,0);}
.m20_c00417{transform:matrix(0.556033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556033,0.000000,0.000000,0.250000,0,0);}
.m2_c00417{transform:matrix(0.638892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638892,0.000000,0.000000,0.250000,0,0);}
.m0_c00417{transform:matrix(1.041667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.041667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.041667,0.000000,0.000000,0.250000,0,0);}
.m1_c00417{transform:matrix(1.041670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.041670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.041670,0.000000,0.000000,0.250000,0,0);}
.v0_c00417{vertical-align:0.000000px;}
.v2_c00417{vertical-align:27.066600px;}
.v1_c00417{vertical-align:39.936600px;}
.ls7_c00417{letter-spacing:-2.480940px;}
.ls1c_c00417{letter-spacing:-2.120580px;}
.ls38_c00417{letter-spacing:-1.995840px;}
.ls25_c00417{letter-spacing:-1.718640px;}
.ls1d_c00417{letter-spacing:-1.594890px;}
.ls23_c00417{letter-spacing:-1.593900px;}
.ls1e_c00417{letter-spacing:-1.557171px;}
.ls21_c00417{letter-spacing:-1.552320px;}
.ls27_c00417{letter-spacing:-0.880110px;}
.ls28_c00417{letter-spacing:-0.656370px;}
.ls2a_c00417{letter-spacing:-0.504030px;}
.ls12_c00417{letter-spacing:-0.255182px;}
.ls1b_c00417{letter-spacing:-0.186080px;}
.ls4_c00417{letter-spacing:0.000000px;}
.ls9_c00417{letter-spacing:0.146183px;}
.ls33_c00417{letter-spacing:0.456192px;}
.ls34_c00417{letter-spacing:0.800989px;}
.ls20_c00417{letter-spacing:0.893138px;}
.ls2_c00417{letter-spacing:1.271635px;}
.lse_c00417{letter-spacing:1.722600px;}
.ls0_c00417{letter-spacing:1.736658px;}
.ls1f_c00417{letter-spacing:2.079000px;}
.ls30_c00417{letter-spacing:2.098810px;}
.ls15_c00417{letter-spacing:2.257200px;}
.ls8_c00417{letter-spacing:2.277000px;}
.ls17_c00417{letter-spacing:2.286900px;}
.lsc_c00417{letter-spacing:2.387524px;}
.ls26_c00417{letter-spacing:2.455200px;}
.ls1_c00417{letter-spacing:2.473852px;}
.ls19_c00417{letter-spacing:2.514600px;}
.ls29_c00417{letter-spacing:2.524500px;}
.ls36_c00417{letter-spacing:2.645914px;}
.ls37_c00417{letter-spacing:2.663021px;}
.ls32_c00417{letter-spacing:2.851200px;}
.ls35_c00417{letter-spacing:3.059100px;}
.lsf_c00417{letter-spacing:3.069277px;}
.ls22_c00417{letter-spacing:3.128400px;}
.lsb_c00417{letter-spacing:3.158100px;}
.lsa_c00417{letter-spacing:3.177900px;}
.ls10_c00417{letter-spacing:3.217500px;}
.ls1a_c00417{letter-spacing:3.286810px;}
.lsd_c00417{letter-spacing:3.316500px;}
.ls14_c00417{letter-spacing:3.405610px;}
.ls2c_c00417{letter-spacing:3.416609px;}
.ls6_c00417{letter-spacing:3.544200px;}
.ls5_c00417{letter-spacing:3.682810px;}
.ls11_c00417{letter-spacing:11.404998px;}
.ls3_c00417{letter-spacing:17.107200px;}
.ls31_c00417{letter-spacing:42.768000px;}
.ls24_c00417{letter-spacing:48.470598px;}
.ls2d_c00417{letter-spacing:49.896198px;}
.ls13_c00417{letter-spacing:51.321798px;}
.ls18_c00417{letter-spacing:52.747398px;}
.ls39_c00417{letter-spacing:54.172998px;}
.ls16_c00417{letter-spacing:57.024198px;}
.ls2b_c00417{letter-spacing:58.449798px;}
.ls2e_c00417{letter-spacing:59.875398px;}
.ls2f_c00417{letter-spacing:71.280000px;}
.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;}
}
.ws7_c00417{word-spacing:-21.137609px;}
.ws9_c00417{word-spacing:-20.194852px;}
.ws2_c00417{word-spacing:-19.946560px;}
.ws6_c00417{word-spacing:-19.457658px;}
.ws0_c00417{word-spacing:-17.721000px;}
.ws3_c00417{word-spacing:-17.465818px;}
.wsc_c00417{word-spacing:-16.901914px;}
.ws5_c00417{word-spacing:-16.126110px;}
.wsb_c00417{word-spacing:-15.527635px;}
.ws8_c00417{word-spacing:-1.984752px;}
.ws1_c00417{word-spacing:-1.417680px;}
.wsd_c00417{word-spacing:0.000000px;}
.ws4_c00417{word-spacing:6.663888px;}
.wsa_c00417{word-spacing:7.655472px;}
._1e_c00417{margin-left:-18.500724px;}
._e_c00417{margin-left:-14.799510px;}
._1_c00417{margin-left:-7.159284px;}
._8_c00417{margin-left:-5.741604px;}
._10_c00417{margin-left:-2.693592px;}
._21_c00417{margin-left:-1.134144px;}
._1c_c00417{width:2.075238px;}
._6_c00417{width:3.499373px;}
._0_c00417{width:4.749228px;}
._f_c00417{width:6.393737px;}
._a_c00417{width:9.147600px;}
._9_c00417{width:10.559340px;}
._17_c00417{width:11.695464px;}
._5_c00417{width:12.971772px;}
._19_c00417{width:15.084115px;}
._7_c00417{width:19.209564px;}
._d_c00417{width:21.478248px;}
._18_c00417{width:23.036508px;}
._2_c00417{width:24.384888px;}
._20_c00417{width:25.969878px;}
._14_c00417{width:27.331018px;}
._11_c00417{width:29.416068px;}
._12_c00417{width:33.741774px;}
._b_c00417{width:35.158464px;}
._1d_c00417{width:36.690390px;}
._c_c00417{width:37.922940px;}
._3_c00417{width:39.217464px;}
._4_c00417{width:42.098760px;}
._1f_c00417{width:44.975304px;}
._1a_c00417{width:46.358532px;}
._1b_c00417{width:47.846700px;}
._16_c00417{width:50.894712px;}
._13_c00417{width:188.063964px;}
._15_c00417{width:448.182108px;}
.fc0_c00417{color:transparent;}
.fsb_c00417{font-size:11.404998px;}
.fs0_c00417{font-size:17.107200px;}
.fs1_c00417{font-size:22.176000px;}
.fs1d_c00417{font-size:25.146000px;}
.fs3_c00417{font-size:33.660000px;}
.fs9_c00417{font-size:34.452000px;}
.fs29_c00417{font-size:38.808000px;}
.fs18_c00417{font-size:41.580000px;}
.fs24_c00417{font-size:41.976198px;}
.fs25_c00417{font-size:42.768000px;}
.fs19_c00417{font-size:44.352000px;}
.fse_c00417{font-size:45.144000px;}
.fs5_c00417{font-size:45.540000px;}
.fs10_c00417{font-size:45.738000px;}
.fs1b_c00417{font-size:48.470598px;}
.fs1c_c00417{font-size:49.104000px;}
.fs21_c00417{font-size:49.896198px;}
.fs12_c00417{font-size:50.292000px;}
.fs1f_c00417{font-size:50.490000px;}
.fs16_c00417{font-size:50.688000px;}
.fsc_c00417{font-size:51.321798px;}
.fs11_c00417{font-size:52.747398px;}
.fs28_c00417{font-size:54.172998px;}
.fs26_c00417{font-size:57.024000px;}
.fsf_c00417{font-size:57.024198px;}
.fs20_c00417{font-size:58.449798px;}
.fs22_c00417{font-size:59.875398px;}
.fs14_c00417{font-size:60.588000px;}
.fs27_c00417{font-size:61.182000px;}
.fs1a_c00417{font-size:62.568000px;}
.fs7_c00417{font-size:63.162000px;}
.fs6_c00417{font-size:63.558000px;}
.fsa_c00417{font-size:64.350000px;}
.fs1e_c00417{font-size:64.548000px;}
.fs13_c00417{font-size:65.736198px;}
.fs8_c00417{font-size:66.330000px;}
.fs17_c00417{font-size:67.320000px;}
.fsd_c00417{font-size:68.112198px;}
.fs4_c00417{font-size:70.884000px;}
.fs23_c00417{font-size:71.280000px;}
.fs2_c00417{font-size:73.656198px;}
.fs15_c00417{font-size:107.712198px;}
.y0_c00417{bottom:0.000000px;}
.y1_c00417{bottom:76.500000px;}
.y23_c00417{bottom:139.264335px;}
.y22_c00417{bottom:170.627535px;}
.y21_c00417{bottom:196.644735px;}
.y1f_c00417{bottom:200.565135px;}
.y20_c00417{bottom:201.985785px;}
.y1e_c00417{bottom:233.705385px;}
.y1d_c00417{bottom:268.276185px;}
.y1c_c00417{bottom:300.713535px;}
.y1b_c00417{bottom:334.215135px;}
.y25_c00417{bottom:344.902185px;}
.y1a_c00417{bottom:367.360335px;}
.y19_c00417{bottom:400.149135px;}
.y24_c00417{bottom:407.633535px;}
.y18_c00417{bottom:431.868735px;}
.y17_c00417{bottom:464.657535px;}
.y15_c00417{bottom:528.453135px;}
.y14_c00417{bottom:561.241935px;}
.y16_c00417{bottom:561.593385px;}
.y13_c00417{bottom:594.025785px;}
.y10_c00417{bottom:659.603385px;}
.y11_c00417{bottom:660.321135px;}
.y12_c00417{bottom:660.677535px;}
.yf_c00417{bottom:690.966585px;}
.ye_c00417{bottom:724.116735px;}
.yd_c00417{bottom:757.613385px;}
.yc_c00417{bottom:786.125385px;}
.yb_c00417{bottom:790.045785px;}
.y9_c00417{bottom:822.483135px;}
.ya_c00417{bottom:828.185535px;}
.y8_c00417{bottom:858.474585px;}
.y7_c00417{bottom:890.911935px;}
.y6_c00417{bottom:922.987935px;}
.y5_c00417{bottom:1004.959935px;}
.y4_c00417{bottom:1073.383785px;}
.y3_c00417{bottom:1087.639785px;}
.y2_c00417{bottom:1105.103385px;}
.hd_c00417{height:7.595729px;}
.h2_c00417{height:11.393395px;}
.h3_c00417{height:23.128875px;}
.h1d_c00417{height:24.679424px;}
.h26_c00417{height:28.483488px;}
.h1b_c00417{height:32.281418px;}
.h5_c00417{height:33.035449px;}
.h22_c00417{height:33.230868px;}
.he_c00417{height:34.180317px;}
.h13_c00417{height:35.129767px;}
.hb_c00417{height:35.932359px;}
.h29_c00417{height:36.079217px;}
.h11_c00417{height:37.978116px;}
.h21_c00417{height:38.927565px;}
.h23_c00417{height:39.877015px;}
.h2a_c00417{height:40.475531px;}
.h18_c00417{height:43.366641px;}
.h19_c00417{height:43.529063px;}
.h25_c00417{height:43.779863px;}
.h12_c00417{height:44.889346px;}
.h10_c00417{height:47.083781px;}
.h24_c00417{height:47.472480px;}
.h7_c00417{height:47.496797px;}
.h1c_c00417{height:48.192891px;}
.h14_c00417{height:49.358848px;}
.h1f_c00417{height:49.553174px;}
.h27_c00417{height:55.965938px;}
.h1a_c00417{height:61.407070px;}
.h16_c00417{height:63.191391px;}
.h28_c00417{height:63.810914px;}
.ha_c00417{height:65.099268px;}
.h9_c00417{height:65.875992px;}
.h8_c00417{height:66.289008px;}
.hf_c00417{height:66.848397px;}
.hc_c00417{height:67.115039px;}
.h1e_c00417{height:67.321547px;}
.h15_c00417{height:68.560800px;}
.h6_c00417{height:69.568770px;}
.h20_c00417{height:71.038894px;}
.h4_c00417{height:72.289530px;}
.h17_c00417{height:152.277057px;}
.h1_c00417{height:1110.000000px;}
.h0_c00417{height:1263.000000px;}
.w1_c00417{width:775.500000px;}
.w0_c00417{width:892.500000px;}
.x2_c00417{left:-4.646415px;}
.x0_c00417{left:0.000000px;}
.x3_c00417{left:30.993585px;}
.x1_c00417{left:58.500000px;}
.x1a_c00417{left:74.627835px;}
.x8_c00417{left:75.701985px;}
.x8f_c00417{left:77.127585px;}
.x40_c00417{left:78.394785px;}
.x80_c00417{left:97.452285px;}
.x86_c00417{left:104.035785px;}
.x1b_c00417{left:106.085085px;}
.x29_c00417{left:107.446335px;}
.x6e_c00417{left:108.495735px;}
.x1c_c00417{left:118.460085px;}
.x55_c00417{left:127.874985px;}
.x36_c00417{left:129.884685px;}
.x83_c00417{left:132.414135px;}
.x4_c00417{left:137.913585px;}
.x2a_c00417{left:139.957935px;}
.x9_c00417{left:151.258785px;}
.x69_c00417{left:153.694185px;}
.x64_c00417{left:161.035035px;}
.x2b_c00417{left:162.475485px;}
.x73_c00417{left:163.579335px;}
.x87_c00417{left:165.559335px;}
.x7a_c00417{left:172.632885px;}
.x47_c00417{left:173.672385px;}
.x56_c00417{left:176.350335px;}
.x1d_c00417{left:183.854535px;}
.xa_c00417{left:185.121735px;}
.x60_c00417{left:195.061335px;}
.x6a_c00417{left:197.056185px;}
.x7b_c00417{left:204.298035px;}
.x37_c00417{left:206.362185px;}
.x48_c00417{left:208.975785px;}
.x57_c00417{left:210.242985px;}
.x58_c00417{left:212.010135px;}
.x5_c00417{left:217.306635px;}
.x65_c00417{left:219.143085px;}
.x41_c00417{left:228.379785px;}
.x74_c00417{left:238.363935px;}
.xb_c00417{left:239.457885px;}
.x8a_c00417{left:240.631035px;}
.x2c_c00417{left:242.056635px;}
.x3e_c00417{left:251.357685px;}
.x66_c00417{left:253.372335px;}
.xc_c00417{left:261.252735px;}
.x4d_c00417{left:263.797035px;}
.x49_c00417{left:272.499135px;}
.x59_c00417{left:275.201835px;}
.x4e_c00417{left:283.631685px;}
.x88_c00417{left:286.250235px;}
.x4f_c00417{left:294.472185px;}
.x5a_c00417{left:295.625535px;}
.x38_c00417{left:305.218635px;}
.x42_c00417{left:316.608585px;}
.x2d_c00417{left:317.618385px;}
.x61_c00417{left:322.375335px;}
.x5b_c00417{left:326.404635px;}
.x4a_c00417{left:327.483735px;}
.x84_c00417{left:328.661835px;}
.xd_c00417{left:338.096535px;}
.x81_c00417{left:339.101385px;}
.x1e_c00417{left:341.200185px;}
.x7_c00417{left:345.204735px;}
.x1f_c00417{left:349.412235px;}
.x75_c00417{left:350.417085px;}
.xe_c00417{left:361.222935px;}
.xf_c00417{left:371.642685px;}
.x39_c00417{left:372.796035px;}
.x3a_c00417{left:382.785135px;}
.x6d_c00417{left:383.918685px;}
.x50_c00417{left:385.616535px;}
.x20_c00417{left:393.828585px;}
.x10_c00417{left:404.654235px;}
.x89_c00417{left:407.782635px;}
.x8d_c00417{left:411.222885px;}
.x2e_c00417{left:415.479885px;}
.x6f_c00417{left:427.082685px;}
.x21_c00417{left:428.186535px;}
.x43_c00417{left:434.062185px;}
.x67_c00417{left:436.537185px;}
.x11_c00417{left:437.542035px;}
.x12_c00417{left:448.813185px;}
.x22_c00417{left:459.841785px;}
.x7c_c00417{left:461.490135px;}
.x13_c00417{left:470.751585px;}
.x44_c00417{left:482.280135px;}
.x70_c00417{left:491.769285px;}
.x3b_c00417{left:493.363185px;}
.x7d_c00417{left:495.976785px;}
.x23_c00417{left:503.748285px;}
.x14_c00417{left:506.505435px;}
.x76_c00417{left:508.574535px;}
.x2f_c00417{left:514.390785px;}
.x5c_c00417{left:515.836185px;}
.x15_c00417{left:525.968835px;}
.x85_c00417{left:535.611435px;}
.x51_c00417{left:537.754785px;}
.x16_c00417{left:546.659835px;}
.x24_c00417{left:558.663585px;}
.x30_c00417{left:569.251635px;}
.x82_c00417{left:570.350535px;}
.x5d_c00417{left:572.711685px;}
.x52_c00417{left:576.132135px;}
.x45_c00417{left:580.359435px;}
.x17_c00417{left:591.788985px;}
.x8b_c00417{left:593.036385px;}
.x3c_c00417{left:602.456235px;}
.x25_c00417{left:604.079835px;}
.x68_c00417{left:605.713335px;}
.x79_c00417{left:613.168035px;}
.x18_c00417{left:614.494635px;}
.x77_c00417{left:615.920235px;}
.x90_c00417{left:624.369885px;}
.x31_c00417{left:625.523235px;}
.x8e_c00417{left:626.919135px;}
.x3d_c00417{left:635.977635px;}
.x62_c00417{left:638.210085px;}
.x8c_c00417{left:645.422235px;}
.x19_c00417{left:646.823085px;}
.x78_c00417{left:647.887335px;}
.x4b_c00417{left:649.520835px;}
.x63_c00417{left:657.425985px;}
.x32_c00417{left:658.762485px;}
.x6b_c00417{left:662.895735px;}
.x26_c00417{left:667.786335px;}
.x6_c00417{left:669.385185px;}
.x27_c00417{left:679.478235px;}
.x71_c00417{left:680.488035px;}
.x33_c00417{left:690.828585px;}
.x3f_c00417{left:693.684735px;}
.x5e_c00417{left:700.995885px;}
.x4c_c00417{left:702.451185px;}
.x53_c00417{left:706.307235px;}
.x7e_c00417{left:711.717585px;}
.x46_c00417{left:713.271885px;}
.x5f_c00417{left:715.449885px;}
.x6c_c00417{left:721.696785px;}
.x28_c00417{left:722.775885px;}
.x7f_c00417{left:728.829735px;}
.x34_c00417{left:734.398485px;}
.x54_c00417{left:737.333835px;}
.x72_c00417{left:745.931985px;}
.x35_c00417{left:747.337785px;}
.x91_c00417{left:776.072535px;}
@media print{
.v0_c00417{vertical-align:0.000000pt;}
.v2_c00417{vertical-align:24.059200pt;}
.v1_c00417{vertical-align:35.499200pt;}
.ls7_c00417{letter-spacing:-2.205280pt;}
.ls1c_c00417{letter-spacing:-1.884960pt;}
.ls38_c00417{letter-spacing:-1.774080pt;}
.ls25_c00417{letter-spacing:-1.527680pt;}
.ls1d_c00417{letter-spacing:-1.417680pt;}
.ls23_c00417{letter-spacing:-1.416800pt;}
.ls1e_c00417{letter-spacing:-1.384152pt;}
.ls21_c00417{letter-spacing:-1.379840pt;}
.ls27_c00417{letter-spacing:-0.782320pt;}
.ls28_c00417{letter-spacing:-0.583440pt;}
.ls2a_c00417{letter-spacing:-0.448027pt;}
.ls12_c00417{letter-spacing:-0.226829pt;}
.ls1b_c00417{letter-spacing:-0.165405pt;}
.ls4_c00417{letter-spacing:0.000000pt;}
.ls9_c00417{letter-spacing:0.129941pt;}
.ls33_c00417{letter-spacing:0.405504pt;}
.ls34_c00417{letter-spacing:0.711990pt;}
.ls20_c00417{letter-spacing:0.793901pt;}
.ls2_c00417{letter-spacing:1.130342pt;}
.lse_c00417{letter-spacing:1.531200pt;}
.ls0_c00417{letter-spacing:1.543696pt;}
.ls1f_c00417{letter-spacing:1.848000pt;}
.ls30_c00417{letter-spacing:1.865609pt;}
.ls15_c00417{letter-spacing:2.006400pt;}
.ls8_c00417{letter-spacing:2.024000pt;}
.ls17_c00417{letter-spacing:2.032800pt;}
.lsc_c00417{letter-spacing:2.122243pt;}
.ls26_c00417{letter-spacing:2.182400pt;}
.ls1_c00417{letter-spacing:2.198979pt;}
.ls19_c00417{letter-spacing:2.235200pt;}
.ls29_c00417{letter-spacing:2.244000pt;}
.ls36_c00417{letter-spacing:2.351923pt;}
.ls37_c00417{letter-spacing:2.367130pt;}
.ls32_c00417{letter-spacing:2.534400pt;}
.ls35_c00417{letter-spacing:2.719200pt;}
.lsf_c00417{letter-spacing:2.728246pt;}
.ls22_c00417{letter-spacing:2.780800pt;}
.lsb_c00417{letter-spacing:2.807200pt;}
.lsa_c00417{letter-spacing:2.824800pt;}
.ls10_c00417{letter-spacing:2.860000pt;}
.ls1a_c00417{letter-spacing:2.921609pt;}
.lsd_c00417{letter-spacing:2.948000pt;}
.ls14_c00417{letter-spacing:3.027209pt;}
.ls2c_c00417{letter-spacing:3.036986pt;}
.ls6_c00417{letter-spacing:3.150400pt;}
.ls5_c00417{letter-spacing:3.273609pt;}
.ls11_c00417{letter-spacing:10.137776pt;}
.ls3_c00417{letter-spacing:15.206400pt;}
.ls31_c00417{letter-spacing:38.016000pt;}
.ls24_c00417{letter-spacing:43.084976pt;}
.ls2d_c00417{letter-spacing:44.352176pt;}
.ls13_c00417{letter-spacing:45.619376pt;}
.ls18_c00417{letter-spacing:46.886576pt;}
.ls39_c00417{letter-spacing:48.153776pt;}
.ls16_c00417{letter-spacing:50.688176pt;}
.ls2b_c00417{letter-spacing:51.955376pt;}
.ls2e_c00417{letter-spacing:53.222576pt;}
.ls2f_c00417{letter-spacing:63.360000pt;}
.ws7_c00417{word-spacing:-18.788986pt;}
.ws9_c00417{word-spacing:-17.950979pt;}
.ws2_c00417{word-spacing:-17.730275pt;}
.ws6_c00417{word-spacing:-17.295696pt;}
.ws0_c00417{word-spacing:-15.752000pt;}
.ws3_c00417{word-spacing:-15.525171pt;}
.wsc_c00417{word-spacing:-15.023923pt;}
.ws5_c00417{word-spacing:-14.334320pt;}
.wsb_c00417{word-spacing:-13.802342pt;}
.ws8_c00417{word-spacing:-1.764224pt;}
.ws1_c00417{word-spacing:-1.260160pt;}
.wsd_c00417{word-spacing:0.000000pt;}
.ws4_c00417{word-spacing:5.923456pt;}
.wsa_c00417{word-spacing:6.804864pt;}
._1e_c00417{margin-left:-16.445088pt;}
._e_c00417{margin-left:-13.155120pt;}
._1_c00417{margin-left:-6.363808pt;}
._8_c00417{margin-left:-5.103648pt;}
._10_c00417{margin-left:-2.394304pt;}
._21_c00417{margin-left:-1.008128pt;}
._1c_c00417{width:1.844656pt;}
._6_c00417{width:3.110554pt;}
._0_c00417{width:4.221536pt;}
._f_c00417{width:5.683322pt;}
._a_c00417{width:8.131200pt;}
._9_c00417{width:9.386080pt;}
._17_c00417{width:10.395968pt;}
._5_c00417{width:11.530464pt;}
._19_c00417{width:13.408102pt;}
._7_c00417{width:17.075168pt;}
._d_c00417{width:19.091776pt;}
._18_c00417{width:20.476896pt;}
._2_c00417{width:21.675456pt;}
._20_c00417{width:23.084336pt;}
._14_c00417{width:24.294238pt;}
._11_c00417{width:26.147616pt;}
._12_c00417{width:29.992688pt;}
._b_c00417{width:31.251968pt;}
._1d_c00417{width:32.613680pt;}
._c_c00417{width:33.709280pt;}
._3_c00417{width:34.859968pt;}
._4_c00417{width:37.421120pt;}
._1f_c00417{width:39.978048pt;}
._1a_c00417{width:41.207584pt;}
._1b_c00417{width:42.530400pt;}
._16_c00417{width:45.239744pt;}
._13_c00417{width:167.167968pt;}
._15_c00417{width:398.384096pt;}
.fsb_c00417{font-size:10.137776pt;}
.fs0_c00417{font-size:15.206400pt;}
.fs1_c00417{font-size:19.712000pt;}
.fs1d_c00417{font-size:22.352000pt;}
.fs3_c00417{font-size:29.920000pt;}
.fs9_c00417{font-size:30.624000pt;}
.fs29_c00417{font-size:34.496000pt;}
.fs18_c00417{font-size:36.960000pt;}
.fs24_c00417{font-size:37.312176pt;}
.fs25_c00417{font-size:38.016000pt;}
.fs19_c00417{font-size:39.424000pt;}
.fse_c00417{font-size:40.128000pt;}
.fs5_c00417{font-size:40.480000pt;}
.fs10_c00417{font-size:40.656000pt;}
.fs1b_c00417{font-size:43.084976pt;}
.fs1c_c00417{font-size:43.648000pt;}
.fs21_c00417{font-size:44.352176pt;}
.fs12_c00417{font-size:44.704000pt;}
.fs1f_c00417{font-size:44.880000pt;}
.fs16_c00417{font-size:45.056000pt;}
.fsc_c00417{font-size:45.619376pt;}
.fs11_c00417{font-size:46.886576pt;}
.fs28_c00417{font-size:48.153776pt;}
.fs26_c00417{font-size:50.688000pt;}
.fsf_c00417{font-size:50.688176pt;}
.fs20_c00417{font-size:51.955376pt;}
.fs22_c00417{font-size:53.222576pt;}
.fs14_c00417{font-size:53.856000pt;}
.fs27_c00417{font-size:54.384000pt;}
.fs1a_c00417{font-size:55.616000pt;}
.fs7_c00417{font-size:56.144000pt;}
.fs6_c00417{font-size:56.496000pt;}
.fsa_c00417{font-size:57.200000pt;}
.fs1e_c00417{font-size:57.376000pt;}
.fs13_c00417{font-size:58.432176pt;}
.fs8_c00417{font-size:58.960000pt;}
.fs17_c00417{font-size:59.840000pt;}
.fsd_c00417{font-size:60.544176pt;}
.fs4_c00417{font-size:63.008000pt;}
.fs23_c00417{font-size:63.360000pt;}
.fs2_c00417{font-size:65.472176pt;}
.fs15_c00417{font-size:95.744176pt;}
.y0_c00417{bottom:0.000000pt;}
.y1_c00417{bottom:68.000000pt;}
.y23_c00417{bottom:123.790520pt;}
.y22_c00417{bottom:151.668920pt;}
.y21_c00417{bottom:174.795320pt;}
.y1f_c00417{bottom:178.280120pt;}
.y20_c00417{bottom:179.542920pt;}
.y1e_c00417{bottom:207.738120pt;}
.y1d_c00417{bottom:238.467720pt;}
.y1c_c00417{bottom:267.300920pt;}
.y1b_c00417{bottom:297.080120pt;}
.y25_c00417{bottom:306.579720pt;}
.y1a_c00417{bottom:326.542520pt;}
.y19_c00417{bottom:355.688120pt;}
.y24_c00417{bottom:362.340920pt;}
.y18_c00417{bottom:383.883320pt;}
.y17_c00417{bottom:413.028920pt;}
.y15_c00417{bottom:469.736120pt;}
.y14_c00417{bottom:498.881720pt;}
.y16_c00417{bottom:499.194120pt;}
.y13_c00417{bottom:528.022920pt;}
.y10_c00417{bottom:586.314120pt;}
.y11_c00417{bottom:586.952120pt;}
.y12_c00417{bottom:587.268920pt;}
.yf_c00417{bottom:614.192520pt;}
.ye_c00417{bottom:643.659320pt;}
.yd_c00417{bottom:673.434120pt;}
.yc_c00417{bottom:698.778120pt;}
.yb_c00417{bottom:702.262920pt;}
.y9_c00417{bottom:731.096120pt;}
.ya_c00417{bottom:736.164920pt;}
.y8_c00417{bottom:763.088520pt;}
.y7_c00417{bottom:791.921720pt;}
.y6_c00417{bottom:820.433720pt;}
.y5_c00417{bottom:893.297720pt;}
.y4_c00417{bottom:954.118920pt;}
.y3_c00417{bottom:966.790920pt;}
.y2_c00417{bottom:982.314120pt;}
.hd_c00417{height:6.751759pt;}
.h2_c00417{height:10.127462pt;}
.h3_c00417{height:20.559000pt;}
.h1d_c00417{height:21.937266pt;}
.h26_c00417{height:25.318656pt;}
.h1b_c00417{height:28.694594pt;}
.h5_c00417{height:29.364844pt;}
.h22_c00417{height:29.538549pt;}
.he_c00417{height:30.382504pt;}
.h13_c00417{height:31.226460pt;}
.hb_c00417{height:31.939875pt;}
.h29_c00417{height:32.070415pt;}
.h11_c00417{height:33.758325pt;}
.h21_c00417{height:34.602280pt;}
.h23_c00417{height:35.446236pt;}
.h2a_c00417{height:35.978250pt;}
.h18_c00417{height:38.548125pt;}
.h19_c00417{height:38.692500pt;}
.h25_c00417{height:38.915434pt;}
.h12_c00417{height:39.901641pt;}
.h10_c00417{height:41.852250pt;}
.h24_c00417{height:42.197760pt;}
.h7_c00417{height:42.219375pt;}
.h1c_c00417{height:42.838125pt;}
.h14_c00417{height:43.874531pt;}
.h1f_c00417{height:44.047266pt;}
.h27_c00417{height:49.747500pt;}
.h1a_c00417{height:54.584063pt;}
.h16_c00417{height:56.170125pt;}
.h28_c00417{height:56.720813pt;}
.ha_c00417{height:57.866016pt;}
.h9_c00417{height:58.556438pt;}
.h8_c00417{height:58.923563pt;}
.hf_c00417{height:59.420798pt;}
.hc_c00417{height:59.657812pt;}
.h1e_c00417{height:59.841375pt;}
.h15_c00417{height:60.942934pt;}
.h6_c00417{height:61.838906pt;}
.h20_c00417{height:63.145684pt;}
.h4_c00417{height:64.257360pt;}
.h17_c00417{height:135.357384pt;}
.h1_c00417{height:986.666667pt;}
.h0_c00417{height:1122.666667pt;}
.w1_c00417{width:689.333333pt;}
.w0_c00417{width:793.333333pt;}
.x2_c00417{left:-4.130147pt;}
.x0_c00417{left:0.000000pt;}
.x3_c00417{left:27.549853pt;}
.x1_c00417{left:52.000000pt;}
.x1a_c00417{left:66.335853pt;}
.x8_c00417{left:67.290653pt;}
.x8f_c00417{left:68.557853pt;}
.x40_c00417{left:69.684253pt;}
.x80_c00417{left:86.624253pt;}
.x86_c00417{left:92.476253pt;}
.x1b_c00417{left:94.297853pt;}
.x29_c00417{left:95.507853pt;}
.x6e_c00417{left:96.440653pt;}
.x1c_c00417{left:105.297853pt;}
.x55_c00417{left:113.666653pt;}
.x36_c00417{left:115.453053pt;}
.x83_c00417{left:117.701453pt;}
.x4_c00417{left:122.589853pt;}
.x2a_c00417{left:124.407053pt;}
.x9_c00417{left:134.452253pt;}
.x69_c00417{left:136.617053pt;}
.x64_c00417{left:143.142253pt;}
.x2b_c00417{left:144.422653pt;}
.x73_c00417{left:145.403853pt;}
.x87_c00417{left:147.163853pt;}
.x7a_c00417{left:153.451453pt;}
.x47_c00417{left:154.375453pt;}
.x56_c00417{left:156.755853pt;}
.x1d_c00417{left:163.426253pt;}
.xa_c00417{left:164.552653pt;}
.x60_c00417{left:173.387853pt;}
.x6a_c00417{left:175.161053pt;}
.x7b_c00417{left:181.598253pt;}
.x37_c00417{left:183.433053pt;}
.x48_c00417{left:185.756253pt;}
.x57_c00417{left:186.882653pt;}
.x58_c00417{left:188.453453pt;}
.x5_c00417{left:193.161453pt;}
.x65_c00417{left:194.793853pt;}
.x41_c00417{left:203.004253pt;}
.x74_c00417{left:211.879053pt;}
.xb_c00417{left:212.851453pt;}
.x8a_c00417{left:213.894253pt;}
.x2c_c00417{left:215.161453pt;}
.x3e_c00417{left:223.429053pt;}
.x66_c00417{left:225.219853pt;}
.xc_c00417{left:232.224653pt;}
.x4d_c00417{left:234.486253pt;}
.x49_c00417{left:242.221453pt;}
.x59_c00417{left:244.623853pt;}
.x4e_c00417{left:252.117053pt;}
.x88_c00417{left:254.444653pt;}
.x4f_c00417{left:261.753053pt;}
.x5a_c00417{left:262.778253pt;}
.x38_c00417{left:271.305453pt;}
.x42_c00417{left:281.429853pt;}
.x2d_c00417{left:282.327453pt;}
.x61_c00417{left:286.555853pt;}
.x5b_c00417{left:290.137453pt;}
.x4a_c00417{left:291.096653pt;}
.x84_c00417{left:292.143853pt;}
.xd_c00417{left:300.530253pt;}
.x81_c00417{left:301.423453pt;}
.x1e_c00417{left:303.289053pt;}
.x7_c00417{left:306.848653pt;}
.x1f_c00417{left:310.588653pt;}
.x75_c00417{left:311.481853pt;}
.xe_c00417{left:321.087053pt;}
.xf_c00417{left:330.349053pt;}
.x39_c00417{left:331.374253pt;}
.x3a_c00417{left:340.253453pt;}
.x6d_c00417{left:341.261053pt;}
.x50_c00417{left:342.770253pt;}
.x20_c00417{left:350.069853pt;}
.x10_c00417{left:359.692653pt;}
.x89_c00417{left:362.473453pt;}
.x8d_c00417{left:365.531453pt;}
.x2e_c00417{left:369.315453pt;}
.x6f_c00417{left:379.629053pt;}
.x21_c00417{left:380.610253pt;}
.x43_c00417{left:385.833053pt;}
.x67_c00417{left:388.033053pt;}
.x11_c00417{left:388.926253pt;}
.x12_c00417{left:398.945053pt;}
.x22_c00417{left:408.748253pt;}
.x7c_c00417{left:410.213453pt;}
.x13_c00417{left:418.445853pt;}
.x44_c00417{left:428.693453pt;}
.x70_c00417{left:437.128253pt;}
.x3b_c00417{left:438.545053pt;}
.x7d_c00417{left:440.868253pt;}
.x23_c00417{left:447.776253pt;}
.x14_c00417{left:450.227053pt;}
.x76_c00417{left:452.066253pt;}
.x2f_c00417{left:457.236253pt;}
.x5c_c00417{left:458.521053pt;}
.x15_c00417{left:467.527853pt;}
.x85_c00417{left:476.099053pt;}
.x51_c00417{left:478.004253pt;}
.x16_c00417{left:485.919853pt;}
.x24_c00417{left:496.589853pt;}
.x30_c00417{left:506.001453pt;}
.x82_c00417{left:506.978253pt;}
.x5d_c00417{left:509.077053pt;}
.x52_c00417{left:512.117453pt;}
.x45_c00417{left:515.875053pt;}
.x17_c00417{left:526.034653pt;}
.x8b_c00417{left:527.143453pt;}
.x3c_c00417{left:535.516653pt;}
.x25_c00417{left:536.959853pt;}
.x68_c00417{left:538.411853pt;}
.x79_c00417{left:545.038253pt;}
.x18_c00417{left:546.217453pt;}
.x77_c00417{left:547.484653pt;}
.x90_c00417{left:554.995453pt;}
.x31_c00417{left:556.020653pt;}
.x8e_c00417{left:557.261453pt;}
.x3d_c00417{left:565.313453pt;}
.x62_c00417{left:567.297853pt;}
.x8c_c00417{left:573.708653pt;}
.x19_c00417{left:574.953853pt;}
.x78_c00417{left:575.899853pt;}
.x4b_c00417{left:577.351853pt;}
.x63_c00417{left:584.378653pt;}
.x32_c00417{left:585.566653pt;}
.x6b_c00417{left:589.240653pt;}
.x26_c00417{left:593.587853pt;}
.x6_c00417{left:595.009053pt;}
.x27_c00417{left:603.980653pt;}
.x71_c00417{left:604.878253pt;}
.x33_c00417{left:614.069853pt;}
.x3f_c00417{left:616.608653pt;}
.x5e_c00417{left:623.107453pt;}
.x4c_c00417{left:624.401053pt;}
.x53_c00417{left:627.828653pt;}
.x7e_c00417{left:632.637853pt;}
.x46_c00417{left:634.019453pt;}
.x5f_c00417{left:635.955453pt;}
.x6c_c00417{left:641.508253pt;}
.x28_c00417{left:642.467453pt;}
.x7f_c00417{left:647.848653pt;}
.x34_c00417{left:652.798653pt;}
.x54_c00417{left:655.407853pt;}
.x72_c00417{left:663.050653pt;}
.x35_c00417{left:664.300253pt;}
.x91_c00417{left:689.842253pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_512444b7c8b5d3a66ca5e7aa.woff2')format("woff");}.ff1_c00418{font-family:ff1_c00418;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00418;src:url('chunks/assets/font_d132adf044f67e8394d2c562.woff2')format("woff");}.ff2_c00418{font-family:ff2_c00418;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00418;src:url('chunks/assets/font_e41c160cb55f05468ff421ca.woff2')format("woff");}.ff3_c00418{font-family:ff3_c00418;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00418;src:url('chunks/assets/font_b3f1d918c134bb48c18fb5b7.woff2')format("woff");}.ff4_c00418{font-family:ff4_c00418;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00418;src:url('chunks/assets/font_c78c086fb7540061d6fdb0d7.woff2')format("woff");}.ff5_c00418{font-family:ff5_c00418;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00418;src:url('chunks/assets/font_797fcde1a324bc2d85c7799f.woff2')format("woff");}.ff6_c00418{font-family:ff6_c00418;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ma4_c00418{transform:matrix(0.013890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013890,0.000000,0.000000,0.250000,0,0);}
.m65_c00418{transform:matrix(0.032052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032052,0.000000,0.000000,0.250000,0,0);}
.m59_c00418{transform:matrix(0.051471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.051471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.051471,0.000000,0.000000,0.250000,0,0);}
.m18_c00418{transform:matrix(0.064286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064286,0.000000,0.000000,0.250000,0,0);}
.m16_c00418{transform:matrix(0.071429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071429,0.000000,0.000000,0.250000,0,0);}
.m5a_c00418{transform:matrix(0.073530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073530,0.000000,0.000000,0.250000,0,0);}
.m17_c00418{transform:matrix(0.075001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075001,0.000000,0.000000,0.250000,0,0);}
.m1b_c00418{transform:matrix(0.077587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077587,0.000000,0.000000,0.250000,0,0);}
.m19_c00418{transform:matrix(0.090518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090518,0.000000,0.000000,0.250000,0,0);}
.m4f_c00418{transform:matrix(0.091416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091416,0.000000,0.000000,0.250000,0,0);}
.md2_c00418{transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00418{transform:matrix(0.099594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099594,0.000000,0.000000,0.250000,0,0);}
.m58_c00418{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);}
.mec_c00418{transform:matrix(0.107131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107131,0.000000,0.000000,0.250000,0,0);}
.mb5_c00418{transform:matrix(0.109756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109756,0.000000,0.000000,0.250000,0,0);}
.m6e_c00418{transform:matrix(0.119445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119445,0.000000,0.000000,0.250000,0,0);}
.m1a_c00418{transform:matrix(0.120690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120690,0.000000,0.000000,0.250000,0,0);}
.m79_c00418{transform:matrix(0.130436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130436,0.000000,0.000000,0.250000,0,0);}
.m78_c00418{transform:matrix(0.132387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132387,0.000000,0.000000,0.250000,0,0);}
.m15_c00418{transform:matrix(0.133333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133333,0.000000,0.000000,0.250000,0,0);}
.ma2_c00418{transform:matrix(0.136575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136575,0.000000,0.000000,0.250000,0,0);}
.me_c00418{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m63_c00418{transform:matrix(0.147436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147436,0.000000,0.000000,0.250000,0,0);}
.ma3_c00418{transform:matrix(0.149306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149306,0.000000,0.000000,0.250000,0,0);}
.m33_c00418{transform:matrix(0.157657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157657,0.000000,0.000000,0.250000,0,0);}
.m2d_c00418{transform:matrix(0.158494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158494,0.000000,0.000000,0.250000,0,0);}
.mf3_c00418{transform:matrix(0.164225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164225,0.000000,0.000000,0.250000,0,0);}
.m2c_c00418{transform:matrix(0.169125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169125,0.000000,0.000000,0.250000,0,0);}
.m64_c00418{transform:matrix(0.171474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171474,0.000000,0.000000,0.250000,0,0);}
.mb4_c00418{transform:matrix(0.172764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172764,0.000000,0.000000,0.250000,0,0);}
.mb_c00418{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00418{transform:matrix(0.182926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182926,0.000000,0.000000,0.250000,0,0);}
.mdd_c00418{transform:matrix(0.183287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183287,0.000000,0.000000,0.250000,0,0);}
.mc7_c00418{transform:matrix(0.184245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184245,0.000000,0.000000,0.250000,0,0);}
.m55_c00418{transform:matrix(0.189036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189036,0.000000,0.000000,0.250000,0,0);}
.mc6_c00418{transform:matrix(0.191916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191916,0.000000,0.000000,0.250000,0,0);}
.m62_c00418{transform:matrix(0.192308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192308,0.000000,0.000000,0.250000,0,0);}
.mc3_c00418{transform:matrix(0.192845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192845,0.000000,0.000000,0.250000,0,0);}
.m99_c00418{transform:matrix(0.196054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196054,0.000000,0.000000,0.250000,0,0);}
.m60_c00418{transform:matrix(0.196943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196943,0.000000,0.000000,0.250000,0,0);}
.mc2_c00418{transform:matrix(0.197726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197726,0.000000,0.000000,0.250000,0,0);}
.m25_c00418{transform:matrix(0.198150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198150,0.000000,0.000000,0.250000,0,0);}
.mc1_c00418{transform:matrix(0.200150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200150,0.000000,0.000000,0.250000,0,0);}
.ma5_c00418{transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);}
.m5e_c00418{transform:matrix(0.206027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206027,0.000000,0.000000,0.250000,0,0);}
.m67_c00418{transform:matrix(0.216539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216539,0.000000,0.000000,0.250000,0,0);}
.mc5_c00418{transform:matrix(0.216619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216619,0.000000,0.000000,0.250000,0,0);}
.me6_c00418{transform:matrix(0.218075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218075,0.000000,0.000000,0.250000,0,0);}
.me7_c00418{transform:matrix(0.220961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220961,0.000000,0.000000,0.250000,0,0);}
.m22_c00418{transform:matrix(0.232472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232472,0.000000,0.000000,0.250000,0,0);}
.m98_c00418{transform:matrix(0.235506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235506,0.000000,0.000000,0.250000,0,0);}
.mcc_c00418{transform:matrix(0.237388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237388,0.000000,0.000000,0.250000,0,0);}
.m24_c00418{transform:matrix(0.237604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237604,0.000000,0.000000,0.250000,0,0);}
.m20_c00418{transform:matrix(0.242531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242531,0.000000,0.000000,0.250000,0,0);}
.m85_c00418{transform:matrix(0.243312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243312,0.000000,0.000000,0.250000,0,0);}
.me3_c00418{transform:matrix(0.245634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245634,0.000000,0.000000,0.250000,0,0);}
.m48_c00418{transform:matrix(0.245976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245976,0.000000,0.000000,0.250000,0,0);}
.m43_c00418{transform:matrix(0.246050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246050,0.000000,0.000000,0.250000,0,0);}
.m61_c00418{transform:matrix(0.246570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246570,0.000000,0.000000,0.250000,0,0);}
.m3f_c00418{transform:matrix(0.248409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248409,0.000000,0.000000,0.250000,0,0);}
.m3_c00418{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00418{transform:matrix(0.250295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250295,0.000000,0.000000,0.250000,0,0);}
.m1f_c00418{transform:matrix(0.250685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250685,0.000000,0.000000,0.250000,0,0);}
.m0_c00418{transform:matrix(0.251170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251170,0.000000,0.000000,0.250000,0,0);}
.m9_c00418{transform:matrix(0.251383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251383,0.000000,0.000000,0.250000,0,0);}
.m2b_c00418{transform:matrix(0.251826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251826,0.000000,0.000000,0.250000,0,0);}
.mbf_c00418{transform:matrix(0.252792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252792,0.000000,0.000000,0.250000,0,0);}
.m91_c00418{transform:matrix(0.253194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253194,0.000000,0.000000,0.250000,0,0);}
.mf2_c00418{transform:matrix(0.254045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254045,0.000000,0.000000,0.250000,0,0);}
.meb_c00418{transform:matrix(0.254471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254471,0.000000,0.000000,0.250000,0,0);}
.m41_c00418{transform:matrix(0.255910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255910,0.000000,0.000000,0.250000,0,0);}
.m26_c00418{transform:matrix(0.258015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258015,0.000000,0.000000,0.250000,0,0);}
.mdb_c00418{transform:matrix(0.259114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259114,0.000000,0.000000,0.250000,0,0);}
.ma1_c00418{transform:matrix(0.260387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260387,0.000000,0.000000,0.250000,0,0);}
.mc8_c00418{transform:matrix(0.260490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260490,0.000000,0.000000,0.250000,0,0);}
.maf_c00418{transform:matrix(0.260815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260815,0.000000,0.000000,0.250000,0,0);}
.m49_c00418{transform:matrix(0.261978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261978,0.000000,0.000000,0.250000,0,0);}
.m9e_c00418{transform:matrix(0.262727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262727,0.000000,0.000000,0.250000,0,0);}
.m31_c00418{transform:matrix(0.265645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265645,0.000000,0.000000,0.250000,0,0);}
.m2f_c00418{transform:matrix(0.265724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265724,0.000000,0.000000,0.250000,0,0);}
.m6_c00418{transform:matrix(0.266959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266959,0.000000,0.000000,0.250000,0,0);}
.me8_c00418{transform:matrix(0.267875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267875,0.000000,0.000000,0.250000,0,0);}
.m50_c00418{transform:matrix(0.268512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268512,0.000000,0.000000,0.250000,0,0);}
.m57_c00418{transform:matrix(0.268640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268640,0.000000,0.000000,0.250000,0,0);}
.m7_c00418{transform:matrix(0.269002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269002,0.000000,0.000000,0.250000,0,0);}
.ma6_c00418{transform:matrix(0.269237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269237,0.000000,0.000000,0.250000,0,0);}
.m44_c00418{transform:matrix(0.269317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269317,0.000000,0.000000,0.250000,0,0);}
.ma9_c00418{transform:matrix(0.269478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269478,0.000000,0.000000,0.250000,0,0);}
.ma0_c00418{transform:matrix(0.269791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269791,0.000000,0.000000,0.250000,0,0);}
.m6f_c00418{transform:matrix(0.271626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271626,0.000000,0.000000,0.250000,0,0);}
.med_c00418{transform:matrix(0.273404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273404,0.000000,0.000000,0.250000,0,0);}
.m45_c00418{transform:matrix(0.273439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273439,0.000000,0.000000,0.250000,0,0);}
.md9_c00418{transform:matrix(0.273490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273490,0.000000,0.000000,0.250000,0,0);}
.m96_c00418{transform:matrix(0.273806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273806,0.000000,0.000000,0.250000,0,0);}
.m5_c00418{transform:matrix(0.273839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273839,0.000000,0.000000,0.250000,0,0);}
.mad_c00418{transform:matrix(0.273891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273891,0.000000,0.000000,0.250000,0,0);}
.m51_c00418{transform:matrix(0.274838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274838,0.000000,0.000000,0.250000,0,0);}
.m12_c00418{transform:matrix(0.274941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274941,0.000000,0.000000,0.250000,0,0);}
.m32_c00418{transform:matrix(0.276063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276063,0.000000,0.000000,0.250000,0,0);}
.m36_c00418{transform:matrix(0.276183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276183,0.000000,0.000000,0.250000,0,0);}
.m3e_c00418{transform:matrix(0.278601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278601,0.000000,0.000000,0.250000,0,0);}
.m11_c00418{transform:matrix(0.280777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280777,0.000000,0.000000,0.250000,0,0);}
.m38_c00418{transform:matrix(0.282100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282100,0.000000,0.000000,0.250000,0,0);}
.m47_c00418{transform:matrix(0.283236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283236,0.000000,0.000000,0.250000,0,0);}
.m40_c00418{transform:matrix(0.284138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284138,0.000000,0.000000,0.250000,0,0);}
.md4_c00418{transform:matrix(0.285369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285369,0.000000,0.000000,0.250000,0,0);}
.md0_c00418{transform:matrix(0.286142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286142,0.000000,0.000000,0.250000,0,0);}
.m34_c00418{transform:matrix(0.286189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286189,0.000000,0.000000,0.250000,0,0);}
.m6d_c00418{transform:matrix(0.287105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287105,0.000000,0.000000,0.250000,0,0);}
.m52_c00418{transform:matrix(0.287227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287227,0.000000,0.000000,0.250000,0,0);}
.m8c_c00418{transform:matrix(0.287777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287777,0.000000,0.000000,0.250000,0,0);}
.m3d_c00418{transform:matrix(0.288127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288127,0.000000,0.000000,0.250000,0,0);}
.mbe_c00418{transform:matrix(0.288787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288787,0.000000,0.000000,0.250000,0,0);}
.m42_c00418{transform:matrix(0.289125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289125,0.000000,0.000000,0.250000,0,0);}
.m2a_c00418{transform:matrix(0.289304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289304,0.000000,0.000000,0.250000,0,0);}
.md7_c00418{transform:matrix(0.290528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290528,0.000000,0.000000,0.250000,0,0);}
.me5_c00418{transform:matrix(0.291252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291252,0.000000,0.000000,0.250000,0,0);}
.md5_c00418{transform:matrix(0.291712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291712,0.000000,0.000000,0.250000,0,0);}
.m1e_c00418{transform:matrix(0.292298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292298,0.000000,0.000000,0.250000,0,0);}
.m74_c00418{transform:matrix(0.294470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294470,0.000000,0.000000,0.250000,0,0);}
.m70_c00418{transform:matrix(0.296186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296186,0.000000,0.000000,0.250000,0,0);}
.maa_c00418{transform:matrix(0.296362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296362,0.000000,0.000000,0.250000,0,0);}
.m21_c00418{transform:matrix(0.297170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297170,0.000000,0.000000,0.250000,0,0);}
.m7b_c00418{transform:matrix(0.297917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297917,0.000000,0.000000,0.250000,0,0);}
.mf1_c00418{transform:matrix(0.298888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298888,0.000000,0.000000,0.250000,0,0);}
.m30_c00418{transform:matrix(0.298920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298920,0.000000,0.000000,0.250000,0,0);}
.mea_c00418{transform:matrix(0.300194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300194,0.000000,0.000000,0.250000,0,0);}
.m10_c00418{transform:matrix(0.300823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300823,0.000000,0.000000,0.250000,0,0);}
.m5c_c00418{transform:matrix(0.300846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300846,0.000000,0.000000,0.250000,0,0);}
.mda_c00418{transform:matrix(0.301546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301546,0.000000,0.000000,0.250000,0,0);}
.m23_c00418{transform:matrix(0.301559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301559,0.000000,0.000000,0.250000,0,0);}
.mf4_c00418{transform:matrix(0.302803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302803,0.000000,0.000000,0.250000,0,0);}
.m5d_c00418{transform:matrix(0.302816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302816,0.000000,0.000000,0.250000,0,0);}
.m4d_c00418{transform:matrix(0.302880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302880,0.000000,0.000000,0.250000,0,0);}
.mb9_c00418{transform:matrix(0.304024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304024,0.000000,0.000000,0.250000,0,0);}
.mee_c00418{transform:matrix(0.305545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305545,0.000000,0.000000,0.250000,0,0);}
.m3a_c00418{transform:matrix(0.306704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306704,0.000000,0.000000,0.250000,0,0);}
.m84_c00418{transform:matrix(0.307031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307031,0.000000,0.000000,0.250000,0,0);}
.md1_c00418{transform:matrix(0.307425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307425,0.000000,0.000000,0.250000,0,0);}
.m6c_c00418{transform:matrix(0.307589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307589,0.000000,0.000000,0.250000,0,0);}
.m4_c00418{transform:matrix(0.308101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308101,0.000000,0.000000,0.250000,0,0);}
.m94_c00418{transform:matrix(0.308550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308550,0.000000,0.000000,0.250000,0,0);}
.m82_c00418{transform:matrix(0.309053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309053,0.000000,0.000000,0.250000,0,0);}
.mab_c00418{transform:matrix(0.310012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310012,0.000000,0.000000,0.250000,0,0);}
.m39_c00418{transform:matrix(0.310084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310084,0.000000,0.000000,0.250000,0,0);}
.md3_c00418{transform:matrix(0.310635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310635,0.000000,0.000000,0.250000,0,0);}
.mf0_c00418{transform:matrix(0.311740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311740,0.000000,0.000000,0.250000,0,0);}
.m77_c00418{transform:matrix(0.311794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311794,0.000000,0.000000,0.250000,0,0);}
.m92_c00418{transform:matrix(0.312557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312557,0.000000,0.000000,0.250000,0,0);}
.m69_c00418{transform:matrix(0.312622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312622,0.000000,0.000000,0.250000,0,0);}
.m27_c00418{transform:matrix(0.313571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313571,0.000000,0.000000,0.250000,0,0);}
.mbd_c00418{transform:matrix(0.315001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315001,0.000000,0.000000,0.250000,0,0);}
.m8_c00418{transform:matrix(0.315445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315445,0.000000,0.000000,0.250000,0,0);}
.m7e_c00418{transform:matrix(0.316453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316453,0.000000,0.000000,0.250000,0,0);}
.mcb_c00418{transform:matrix(0.316798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316798,0.000000,0.000000,0.250000,0,0);}
.md_c00418{transform:matrix(0.317413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317413,0.000000,0.000000,0.250000,0,0);}
.m54_c00418{transform:matrix(0.318468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318468,0.000000,0.000000,0.250000,0,0);}
.m4e_c00418{transform:matrix(0.318982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318982,0.000000,0.000000,0.250000,0,0);}
.m14_c00418{transform:matrix(0.319128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319128,0.000000,0.000000,0.250000,0,0);}
.m46_c00418{transform:matrix(0.320595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320595,0.000000,0.000000,0.250000,0,0);}
.m76_c00418{transform:matrix(0.320654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320654,0.000000,0.000000,0.250000,0,0);}
.ma7_c00418{transform:matrix(0.321028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321028,0.000000,0.000000,0.250000,0,0);}
.m5f_c00418{transform:matrix(0.322733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322733,0.000000,0.000000,0.250000,0,0);}
.m9b_c00418{transform:matrix(0.322747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322747,0.000000,0.000000,0.250000,0,0);}
.mdf_c00418{transform:matrix(0.323143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323143,0.000000,0.000000,0.250000,0,0);}
.m83_c00418{transform:matrix(0.323874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323874,0.000000,0.000000,0.250000,0,0);}
.mc0_c00418{transform:matrix(0.324246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324246,0.000000,0.000000,0.250000,0,0);}
.m53_c00418{transform:matrix(0.324982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324982,0.000000,0.000000,0.250000,0,0);}
.ma8_c00418{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);}
.mce_c00418{transform:matrix(0.325731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325731,0.000000,0.000000,0.250000,0,0);}
.m86_c00418{transform:matrix(0.326566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326566,0.000000,0.000000,0.250000,0,0);}
.m7c_c00418{transform:matrix(0.327480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327480,0.000000,0.000000,0.250000,0,0);}
.m9a_c00418{transform:matrix(0.327909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327909,0.000000,0.000000,0.250000,0,0);}
.mba_c00418{transform:matrix(0.328242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328242,0.000000,0.000000,0.250000,0,0);}
.me4_c00418{transform:matrix(0.328279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328279,0.000000,0.000000,0.250000,0,0);}
.me2_c00418{transform:matrix(0.328383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328383,0.000000,0.000000,0.250000,0,0);}
.m4b_c00418{transform:matrix(0.328644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328644,0.000000,0.000000,0.250000,0,0);}
.mca_c00418{transform:matrix(0.330980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330980,0.000000,0.000000,0.250000,0,0);}
.m81_c00418{transform:matrix(0.331024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331024,0.000000,0.000000,0.250000,0,0);}
.mac_c00418{transform:matrix(0.331448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331448,0.000000,0.000000,0.250000,0,0);}
.m1_c00418{transform:matrix(0.332641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332641,0.000000,0.000000,0.250000,0,0);}
.m71_c00418{transform:matrix(0.332658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332658,0.000000,0.000000,0.250000,0,0);}
.m7f_c00418{transform:matrix(0.333818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333818,0.000000,0.000000,0.250000,0,0);}
.m68_c00418{transform:matrix(0.333950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333950,0.000000,0.000000,0.250000,0,0);}
.m9d_c00418{transform:matrix(0.334158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334158,0.000000,0.000000,0.250000,0,0);}
.m72_c00418{transform:matrix(0.335688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335688,0.000000,0.000000,0.250000,0,0);}
.m7a_c00418{transform:matrix(0.337153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337153,0.000000,0.000000,0.250000,0,0);}
.mdc_c00418{transform:matrix(0.337275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337275,0.000000,0.000000,0.250000,0,0);}
.m89_c00418{transform:matrix(0.339624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339624,0.000000,0.000000,0.250000,0,0);}
.m4a_c00418{transform:matrix(0.340733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340733,0.000000,0.000000,0.250000,0,0);}
.m9c_c00418{transform:matrix(0.341332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341332,0.000000,0.000000,0.250000,0,0);}
.mb0_c00418{transform:matrix(0.341434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341434,0.000000,0.000000,0.250000,0,0);}
.mcf_c00418{transform:matrix(0.341513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341513,0.000000,0.000000,0.250000,0,0);}
.m4c_c00418{transform:matrix(0.342670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342670,0.000000,0.000000,0.250000,0,0);}
.md8_c00418{transform:matrix(0.342713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342713,0.000000,0.000000,0.250000,0,0);}
.m73_c00418{transform:matrix(0.342745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342745,0.000000,0.000000,0.250000,0,0);}
.m87_c00418{transform:matrix(0.343198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343198,0.000000,0.000000,0.250000,0,0);}
.mef_c00418{transform:matrix(0.343653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343653,0.000000,0.000000,0.250000,0,0);}
.mb3_c00418{transform:matrix(0.344332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344332,0.000000,0.000000,0.250000,0,0);}
.m3c_c00418{transform:matrix(0.344426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344426,0.000000,0.000000,0.250000,0,0);}
.mbc_c00418{transform:matrix(0.347891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347891,0.000000,0.000000,0.250000,0,0);}
.m93_c00418{transform:matrix(0.347933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347933,0.000000,0.000000,0.250000,0,0);}
.m56_c00418{transform:matrix(0.348489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348489,0.000000,0.000000,0.250000,0,0);}
.mae_c00418{transform:matrix(0.348647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348647,0.000000,0.000000,0.250000,0,0);}
.m66_c00418{transform:matrix(0.348807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348807,0.000000,0.000000,0.250000,0,0);}
.ma_c00418{transform:matrix(0.349074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349074,0.000000,0.000000,0.250000,0,0);}
.m5b_c00418{transform:matrix(0.350807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350807,0.000000,0.000000,0.250000,0,0);}
.m8f_c00418{transform:matrix(0.351671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351671,0.000000,0.000000,0.250000,0,0);}
.m6b_c00418{transform:matrix(0.352633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352633,0.000000,0.000000,0.250000,0,0);}
.m90_c00418{transform:matrix(0.353106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353106,0.000000,0.000000,0.250000,0,0);}
.mc4_c00418{transform:matrix(0.354719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354719,0.000000,0.000000,0.250000,0,0);}
.m29_c00418{transform:matrix(0.357935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357935,0.000000,0.000000,0.250000,0,0);}
.m8d_c00418{transform:matrix(0.358308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358308,0.000000,0.000000,0.250000,0,0);}
.m80_c00418{transform:matrix(0.358709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358709,0.000000,0.000000,0.250000,0,0);}
.m35_c00418{transform:matrix(0.360658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360658,0.000000,0.000000,0.250000,0,0);}
.m2_c00418{transform:matrix(0.360799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360799,0.000000,0.000000,0.250000,0,0);}
.me0_c00418{transform:matrix(0.361892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361892,0.000000,0.000000,0.250000,0,0);}
.m1d_c00418{transform:matrix(0.362165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362165,0.000000,0.000000,0.250000,0,0);}
.mb8_c00418{transform:matrix(0.363563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363563,0.000000,0.000000,0.250000,0,0);}
.m8b_c00418{transform:matrix(0.363798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363798,0.000000,0.000000,0.250000,0,0);}
.me1_c00418{transform:matrix(0.365175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365175,0.000000,0.000000,0.250000,0,0);}
.m75_c00418{transform:matrix(0.368594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368594,0.000000,0.000000,0.250000,0,0);}
.mb2_c00418{transform:matrix(0.368742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368742,0.000000,0.000000,0.250000,0,0);}
.mf_c00418{transform:matrix(0.372317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372317,0.000000,0.000000,0.250000,0,0);}
.mde_c00418{transform:matrix(0.375416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375416,0.000000,0.000000,0.250000,0,0);}
.m3b_c00418{transform:matrix(0.375464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375464,0.000000,0.000000,0.250000,0,0);}
.m97_c00418{transform:matrix(0.378439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378439,0.000000,0.000000,0.250000,0,0);}
.m95_c00418{transform:matrix(0.379717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379717,0.000000,0.000000,0.250000,0,0);}
.m2e_c00418{transform:matrix(0.380839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380839,0.000000,0.000000,0.250000,0,0);}
.mb7_c00418{transform:matrix(0.382385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382385,0.000000,0.000000,0.250000,0,0);}
.m8e_c00418{transform:matrix(0.384529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384529,0.000000,0.000000,0.250000,0,0);}
.m6a_c00418{transform:matrix(0.386520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386520,0.000000,0.000000,0.250000,0,0);}
.m37_c00418{transform:matrix(0.386693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386693,0.000000,0.000000,0.250000,0,0);}
.m8a_c00418{transform:matrix(0.388208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388208,0.000000,0.000000,0.250000,0,0);}
.mcd_c00418{transform:matrix(0.389097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389097,0.000000,0.000000,0.250000,0,0);}
.m88_c00418{transform:matrix(0.401242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401242,0.000000,0.000000,0.250000,0,0);}
.me9_c00418{transform:matrix(0.403943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403943,0.000000,0.000000,0.250000,0,0);}
.mc_c00418{transform:matrix(0.404157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404157,0.000000,0.000000,0.250000,0,0);}
.m1c_c00418{transform:matrix(0.408517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408517,0.000000,0.000000,0.250000,0,0);}
.md6_c00418{transform:matrix(0.415128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415128,0.000000,0.000000,0.250000,0,0);}
.m7d_c00418{transform:matrix(0.427655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427655,0.000000,0.000000,0.250000,0,0);}
.m9f_c00418{transform:matrix(0.437492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437492,0.000000,0.000000,0.250000,0,0);}
.m13_c00418{transform:matrix(0.452619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452619,0.000000,0.000000,0.250000,0,0);}
.m28_c00418{transform:matrix(0.463399,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463399,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463399,0.000000,0.000000,0.250000,0,0);}
.mc9_c00418{transform:matrix(0.520787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520787,0.000000,0.000000,0.250000,0,0);}
.v2_c00418{vertical-align:-22.809600px;}
.v0_c00418{vertical-align:0.000000px;}
.v1_c00418{vertical-align:28.531800px;}
.ls52_c00418{letter-spacing:-4.490647px;}
.ls1b_c00418{letter-spacing:-2.480940px;}
.ls19_c00418{letter-spacing:-2.467080px;}
.ls30_c00418{letter-spacing:-2.425500px;}
.ls3c_c00418{letter-spacing:-2.300767px;}
.ls44_c00418{letter-spacing:-2.259180px;}
.ls35_c00418{letter-spacing:-2.134440px;}
.ls1f_c00418{letter-spacing:-2.051280px;}
.ls32_c00418{letter-spacing:-1.995840px;}
.ls4d_c00418{letter-spacing:-1.957824px;}
.ls49_c00418{letter-spacing:-1.801800px;}
.ls45_c00418{letter-spacing:-1.760220px;}
.ls17_c00418{letter-spacing:-1.718640px;}
.ls37_c00418{letter-spacing:-1.672862px;}
.ls27_c00418{letter-spacing:-1.663200px;}
.ls43_c00418{letter-spacing:-1.635480px;}
.ls4f_c00418{letter-spacing:-1.566180px;}
.ls2b_c00418{letter-spacing:-1.032372px;}
.ls2f_c00418{letter-spacing:-1.024531px;}
.ls14_c00418{letter-spacing:-0.755370px;}
.lsb_c00418{letter-spacing:-0.751370px;}
.ls4c_c00418{letter-spacing:-0.630868px;}
.ls13_c00418{letter-spacing:-0.609840px;}
.ls1c_c00418{letter-spacing:-0.485951px;}
.ls1e_c00418{letter-spacing:-0.460746px;}
.ls47_c00418{letter-spacing:-0.453123px;}
.ls4e_c00418{letter-spacing:-0.092149px;}
.ls9_c00418{letter-spacing:0.000000px;}
.ls18_c00418{letter-spacing:0.063796px;}
.ls33_c00418{letter-spacing:0.212652px;}
.ls38_c00418{letter-spacing:0.262271px;}
.ls1_c00418{letter-spacing:0.273893px;}
.ls21_c00418{letter-spacing:0.336323px;}
.ls31_c00418{letter-spacing:0.383962px;}
.ls15_c00418{letter-spacing:0.781268px;}
.ls48_c00418{letter-spacing:0.811800px;}
.ls12_c00418{letter-spacing:0.871200px;}
.ls34_c00418{letter-spacing:0.874368px;}
.ls0_c00418{letter-spacing:1.243440px;}
.ls5_c00418{letter-spacing:1.523808px;}
.lse_c00418{letter-spacing:1.807542px;}
.lsd_c00418{letter-spacing:2.227500px;}
.ls53_c00418{letter-spacing:2.296810px;}
.ls41_c00418{letter-spacing:2.310818px;}
.ls29_c00418{letter-spacing:2.316600px;}
.ls40_c00418{letter-spacing:2.336400px;}
.ls36_c00418{letter-spacing:2.382653px;}
.ls1d_c00418{letter-spacing:2.405700px;}
.ls24_c00418{letter-spacing:2.451695px;}
.ls16_c00418{letter-spacing:2.455200px;}
.ls11_c00418{letter-spacing:2.475000px;}
.ls25_c00418{letter-spacing:2.494810px;}
.ls46_c00418{letter-spacing:2.514600px;}
.ls4a_c00418{letter-spacing:2.574000px;}
.ls51_c00418{letter-spacing:2.663100px;}
.ls3_c00418{letter-spacing:2.665238px;}
.ls1a_c00418{letter-spacing:2.712600px;}
.ls2_c00418{letter-spacing:2.819520px;}
.ls42_c00418{letter-spacing:2.851200px;}
.ls3b_c00418{letter-spacing:2.884979px;}
.ls22_c00418{letter-spacing:2.930400px;}
.ls20_c00418{letter-spacing:2.950200px;}
.ls28_c00418{letter-spacing:3.049200px;}
.ls2a_c00418{letter-spacing:3.088810px;}
.ls26_c00418{letter-spacing:3.168000px;}
.ls50_c00418{letter-spacing:3.267752px;}
.ls3a_c00418{letter-spacing:3.286810px;}
.ls23_c00418{letter-spacing:3.395700px;}
.ls39_c00418{letter-spacing:3.484810px;}
.ls8_c00418{letter-spacing:3.544200px;}
.ls7_c00418{letter-spacing:3.643200px;}
.ls3e_c00418{letter-spacing:3.801610px;}
.ls4_c00418{letter-spacing:3.850229px;}
.lsa_c00418{letter-spacing:3.880810px;}
.ls6_c00418{letter-spacing:6.521328px;}
.ls3d_c00418{letter-spacing:11.404998px;}
.ls10_c00418{letter-spacing:41.342598px;}
.ls2c_c00418{letter-spacing:48.470598px;}
.lsf_c00418{letter-spacing:49.896198px;}
.ls2e_c00418{letter-spacing:51.321798px;}
.ls4b_c00418{letter-spacing:54.172998px;}
.ls2d_c00418{letter-spacing:55.598598px;}
.lsc_c00418{letter-spacing:57.024198px;}
.ls3f_c00418{letter-spacing:58.449798px;}
.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;}
}
.ws3_c00418{word-spacing:-18.659520px;}
.ws5_c00418{word-spacing:-18.488448px;}
.ws7_c00418{word-spacing:-17.983271px;}
.ws1_c00418{word-spacing:-17.721000px;}
.wsb_c00418{word-spacing:-17.628851px;}
.ws9_c00418{word-spacing:-17.090132px;}
.ws2_c00418{word-spacing:-15.840000px;}
.ws4_c00418{word-spacing:-7.890379px;}
.ws0_c00418{word-spacing:-1.878426px;}
.wsc_c00418{word-spacing:0.000000px;}
.ws6_c00418{word-spacing:1.158696px;}
.wsa_c00418{word-spacing:3.991680px;}
.ws8_c00418{word-spacing:9.498456px;}
._1c_c00418{margin-left:-43.799184px;}
._15_c00418{margin-left:-18.146304px;}
._19_c00418{margin-left:-9.579389px;}
._e_c00418{margin-left:-6.109488px;}
._b_c00418{margin-left:-4.253040px;}
._1b_c00418{width:1.149964px;}
._f_c00418{width:2.958912px;}
._a_c00418{width:6.798528px;}
._3_c00418{width:8.597952px;}
._c_c00418{width:10.926729px;}
._12_c00418{width:13.112055px;}
._0_c00418{width:15.520032px;}
._1_c00418{width:16.904448px;}
._5_c00418{width:22.405680px;}
._2_c00418{width:25.138080px;}
._1a_c00418{width:27.219456px;}
._11_c00418{width:29.558628px;}
._14_c00418{width:33.562980px;}
._d_c00418{width:35.087580px;}
._16_c00418{width:36.930564px;}
._6_c00418{width:39.332304px;}
._18_c00418{width:41.122382px;}
._9_c00418{width:43.494660px;}
._4_c00418{width:45.650088px;}
._10_c00418{width:47.634048px;}
._17_c00418{width:50.901840px;}
._7_c00418{width:106.196904px;}
._13_c00418{width:204.325704px;}
._8_c00418{width:1315.329730px;}
.fc0_c00418{color:transparent;}
.fs29_c00418{font-size:11.404998px;}
.fs30_c00418{font-size:16.236000px;}
.fs9_c00418{font-size:17.424000px;}
.fsa_c00418{font-size:21.582000px;}
.fs3e_c00418{font-size:22.176000px;}
.fs3f_c00418{font-size:26.928000px;}
.fs1d_c00418{font-size:32.670000px;}
.fs12_c00418{font-size:34.056198px;}
.fs3c_c00418{font-size:34.650000px;}
.fs1b_c00418{font-size:34.848000px;}
.fsb_c00418{font-size:35.838000px;}
.fs3d_c00418{font-size:38.808000px;}
.fs38_c00418{font-size:39.204000px;}
.fs2f_c00418{font-size:39.402000px;}
.fs7_c00418{font-size:41.342598px;}
.fs5_c00418{font-size:44.550000px;}
.fs34_c00418{font-size:44.748000px;}
.fs37_c00418{font-size:45.936198px;}
.fs19_c00418{font-size:46.332000px;}
.fs2c_c00418{font-size:46.728000px;}
.fs17_c00418{font-size:47.520000px;}
.fs11_c00418{font-size:48.114000px;}
.fs33_c00418{font-size:48.312000px;}
.fs1f_c00418{font-size:48.470598px;}
.fsc_c00418{font-size:49.104000px;}
.fs8_c00418{font-size:49.500000px;}
.fs6_c00418{font-size:49.896198px;}
.fs2e_c00418{font-size:50.292000px;}
.fs3b_c00418{font-size:50.688000px;}
.fs21_c00418{font-size:51.321798px;}
.fs31_c00418{font-size:51.480000px;}
.fs1c_c00418{font-size:51.678000px;}
.fs25_c00418{font-size:52.272000px;}
.fs35_c00418{font-size:53.262000px;}
.fs32_c00418{font-size:54.172998px;}
.fse_c00418{font-size:54.252000px;}
.fs20_c00418{font-size:55.598598px;}
.fs24_c00418{font-size:57.024000px;}
.fs4_c00418{font-size:57.024198px;}
.fs2b_c00418{font-size:58.449798px;}
.fs13_c00418{font-size:58.608000px;}
.fs14_c00418{font-size:59.004000px;}
.fs23_c00418{font-size:59.994000px;}
.fs18_c00418{font-size:60.984000px;}
.fs1a_c00418{font-size:61.776198px;}
.fs1e_c00418{font-size:62.568000px;}
.fs16_c00418{font-size:63.360000px;}
.fs2d_c00418{font-size:64.548000px;}
.fs3_c00418{font-size:64.944000px;}
.fs28_c00418{font-size:65.736198px;}
.fs27_c00418{font-size:66.330000px;}
.fs39_c00418{font-size:66.528000px;}
.fs3a_c00418{font-size:67.320000px;}
.fs15_c00418{font-size:67.914000px;}
.fs22_c00418{font-size:69.300000px;}
.fs10_c00418{font-size:69.696198px;}
.fsd_c00418{font-size:70.488000px;}
.fs1_c00418{font-size:70.884000px;}
.fs0_c00418{font-size:72.864000px;}
.fs2a_c00418{font-size:76.032198px;}
.fs2_c00418{font-size:77.616198px;}
.fsf_c00418{font-size:79.200000px;}
.fs26_c00418{font-size:86.328000px;}
.fs36_c00418{font-size:128.304198px;}
.y0_c00418{bottom:0.000000px;}
.y32_c00418{bottom:36.972585px;}
.y27_c00418{bottom:44.100585px;}
.y1_c00418{bottom:76.500000px;}
.y31_c00418{bottom:83.665935px;}
.y30_c00418{bottom:97.560585px;}
.y26_c00418{bottom:134.987535px;}
.y25_c00418{bottom:164.925135px;}
.y2f_c00418{bottom:165.994335px;}
.y24_c00418{bottom:201.985785px;}
.y2e_c00418{bottom:209.113785px;}
.y23_c00418{bottom:235.130985px;}
.y2d_c00418{bottom:252.955935px;}
.y22_c00418{bottom:263.647935px;}
.y20_c00418{bottom:267.924735px;}
.y21_c00418{bottom:268.637535px;}
.y2c_c00418{bottom:297.857385px;}
.y1f_c00418{bottom:299.995785px;}
.y2b_c00418{bottom:326.367999px;}
.y1e_c00418{bottom:332.071785px;}
.y2a_c00418{bottom:376.270335px;}
.y29_c00418{bottom:391.951935px;}
.y1d_c00418{bottom:398.005785px;}
.y1b_c00418{bottom:401.574735px;}
.y1c_c00418{bottom:403.351785px;}
.y28_c00418{bottom:414.761535px;}
.y1a_c00418{bottom:434.363535px;}
.y19_c00418{bottom:467.865135px;}
.y18_c00418{bottom:500.648985px;}
.y16_c00418{bottom:524.176335px;}
.y15_c00418{bottom:532.012185px;}
.y17_c00418{bottom:532.729935px;}
.y14_c00418{bottom:558.742185px;}
.y13_c00418{bottom:564.444585px;}
.y12_c00418{bottom:598.658985px;}
.y11_c00418{bottom:631.096335px;}
.yf_c00418{bottom:663.885135px;}
.y10_c00418{bottom:666.018585px;}
.ye_c00418{bottom:695.961135px;}
.yd_c00418{bottom:728.388585px;}
.yc_c00418{bottom:750.128985px;}
.ya_c00418{bottom:754.762185px;}
.y9_c00418{bottom:760.820985px;}
.y8_c00418{bottom:761.182335px;}
.yb_c00418{bottom:761.895135px;}
.y7_c00418{bottom:794.678985px;}
.y5_c00418{bottom:795.035385px;}
.y6_c00418{bottom:796.104585px;}
.y4_c00418{bottom:830.675385px;}
.y3_c00418{bottom:926.903385px;}
.y2_c00418{bottom:1076.947785px;}
.h29_c00418{height:7.595729px;}
.h31_c00418{height:16.933641px;}
.hc_c00418{height:18.172688px;}
.hd_c00418{height:22.509352px;}
.h3e_c00418{height:23.128875px;}
.ha_c00418{height:27.534170px;}
.h40_c00418{height:28.085063px;}
.h20_c00418{height:32.281418px;}
.h9_c00418{height:33.230868px;}
.h22_c00418{height:34.180317px;}
.h1e_c00418{height:34.201406px;}
.h14_c00418{height:35.519550px;}
.h33_c00418{height:36.079217px;}
.he_c00418{height:36.117984px;}
.h3c_c00418{height:36.138867px;}
.h21_c00418{height:37.028666px;}
.h7_c00418{height:37.978116px;}
.h38_c00418{height:38.476582px;}
.h2b_c00418{height:38.927565px;}
.h3d_c00418{height:40.475531px;}
.h3f_c00418{height:43.917715px;}
.h2e_c00418{height:45.860977px;}
.h8_c00418{height:46.464258px;}
.h1a_c00418{height:46.638281px;}
.h34_c00418{height:46.670766px;}
.h13_c00418{height:47.221260px;}
.h37_c00418{height:47.910019px;}
.hf_c00418{height:48.192891px;}
.h1c_c00418{height:48.322828px;}
.hb_c00418{height:48.581543px;}
.h2c_c00418{height:48.735844px;}
.h30_c00418{height:49.358848px;}
.h32_c00418{height:50.524805px;}
.h18_c00418{height:52.040175px;}
.h35_c00418{height:52.273740px;}
.h3b_c00418{height:52.866000px;}
.h11_c00418{height:53.245371px;}
.h25_c00418{height:54.518063px;}
.h2d_c00418{height:55.965938px;}
.h24_c00418{height:59.474250px;}
.h1d_c00418{height:60.629960px;}
.h15_c00418{height:61.126313px;}
.h16_c00418{height:61.539328px;}
.h1b_c00418{height:63.604406px;}
.h28_c00418{height:64.516483px;}
.h1f_c00418{height:65.256469px;}
.h3a_c00418{height:66.070898px;}
.h19_c00418{height:66.082500px;}
.h17_c00418{height:66.653877px;}
.h2f_c00418{height:67.321547px;}
.h6_c00418{height:67.734563px;}
.h23_c00418{height:68.014160px;}
.h27_c00418{height:68.403007px;}
.h10_c00418{height:69.180117px;}
.h39_c00418{height:69.386625px;}
.h3_c00418{height:69.568770px;}
.h2_c00418{height:71.512031px;}
.h5_c00418{height:73.433250px;}
.h2a_c00418{height:74.621444px;}
.h4_c00418{height:76.176054px;}
.h12_c00418{height:79.818750px;}
.h26_c00418{height:84.726211px;}
.h36_c00418{height:125.923554px;}
.h1_c00418{height:1110.000000px;}
.h0_c00418{height:1263.000000px;}
.w1_c00418{width:775.500000px;}
.w0_c00418{width:892.500000px;}
.x0_c00418{left:0.000000px;}
.x1_c00418{left:58.500000px;}
.x16_c00418{left:77.251335px;}
.x3_c00418{left:79.201635px;}
.x91_c00418{left:81.726135px;}
.x38_c00418{left:86.587035px;}
.x50_c00418{left:87.814635px;}
.x92_c00418{left:100.303485px;}
.x39_c00418{left:109.218435px;}
.x8b_c00418{left:110.272785px;}
.x46_c00418{left:111.970635px;}
.x51_c00418{left:120.558885px;}
.x4_c00418{left:121.652835px;}
.x5c_c00418{left:125.251485px;}
.x82_c00418{left:130.745985px;}
.xa_c00418{left:131.830035px;}
.x64_c00418{left:141.116235px;}
.x3a_c00418{left:142.140885px;}
.x17_c00418{left:143.779335px;}
.x72_c00418{left:152.877435px;}
.x47_c00418{left:154.441635px;}
.x7c_c00418{left:164.445585px;}
.xb_c00418{left:166.544385px;}
.x73_c00418{left:175.434585px;}
.x5d_c00418{left:177.548235px;}
.x7f_c00418{left:182.463585px;}
.x3b_c00418{left:186.567135px;}
.x8c_c00418{left:187.883835px;}
.x5_c00418{left:189.373785px;}
.x6_c00418{left:197.100735px;}
.x6b_c00418{left:199.541085px;}
.x34_c00418{left:207.268035px;}
.x3c_c00418{left:208.361985px;}
.x29_c00418{left:209.970735px;}
.x18_c00418{left:219.133185px;}
.x3d_c00418{left:220.835985px;}
.x93_c00418{left:226.855185px;}
.x52_c00418{left:229.736085px;}
.x48_c00418{left:231.438885px;}
.x7_c00418{left:233.052585px;}
.x3e_c00418{left:241.650735px;}
.x2a_c00418{left:243.630735px;}
.x5e_c00418{left:245.150385px;}
.x8_c00418{left:253.001085px;}
.x65_c00418{left:254.179185px;}
.x6c_c00418{left:263.801985px;}
.x7d_c00418{left:264.895935px;}
.xc_c00418{left:274.741485px;}
.x94_c00418{left:275.810685px;}
.x71_c00418{left:277.246185px;}
.x49_c00418{left:286.477935px;}
.x19_c00418{left:296.125485px;}
.x9_c00418{left:298.951935px;}
.xd_c00418{left:308.401485px;}
.x53_c00418{left:310.970535px;}
.x7a_c00418{left:319.840935px;}
.x8d_c00418{left:320.924985px;}
.x54_c00418{left:325.949235px;}
.x55_c00418{left:329.513235px;}
.x74_c00418{left:330.537885px;}
.x2b_c00418{left:331.819935px;}
.x4a_c00418{left:340.734885px;}
.x6d_c00418{left:342.259485px;}
.x3f_c00418{left:351.788235px;}
.x5f_c00418{left:353.342535px;}
.xe_c00418{left:363.296985px;}
.x56_c00418{left:367.489635px;}
.x88_c00418{left:373.860285px;}
.x6e_c00418{left:375.345285px;}
.x2c_c00418{left:385.161135px;}
.x95_c00418{left:388.893435px;}
.x40_c00418{left:391.304085px;}
.x85_c00418{left:396.486735px;}
.x83_c00418{left:405.876885px;}
.x41_c00418{left:406.916385px;}
.xf_c00418{left:408.104385px;}
.x2d_c00418{left:418.514235px;}
.x8e_c00418{left:419.840835px;}
.x2e_c00418{left:429.240885px;}
.x10_c00418{left:440.640735px;}
.x37_c00418{left:444.922485px;}
.x57_c00418{left:450.080385px;}
.x66_c00418{left:452.030685px;}
.x80_c00418{left:462.796935px;}
.x2f_c00418{left:465.227385px;}
.x1a_c00418{left:473.360235px;}
.x67_c00418{left:484.002735px;}
.x30_c00418{left:485.175885px;}
.x75_c00418{left:494.724435px;}
.x1b_c00418{left:496.224285px;}
.x89_c00418{left:497.367735px;}
.x11_c00418{left:506.243085px;}
.x7e_c00418{left:509.039835px;}
.x31_c00418{left:517.989435px;}
.x68_c00418{left:528.186435px;}
.x76_c00418{left:529.191285px;}
.x86_c00418{left:538.066635px;}
.x42_c00418{left:539.705085px;}
.x4b_c00418{left:541.378185px;}
.x60_c00418{left:544.214535px;}
.x4c_c00418{left:550.783185px;}
.x61_c00418{left:561.034635px;}
.x43_c00418{left:562.197885px;}
.x32_c00418{left:568.548735px;}
.x12_c00418{left:572.726535px;}
.x33_c00418{left:575.122335px;}
.x58_c00418{left:583.611585px;}
.x8f_c00418{left:585.834135px;}
.x90_c00418{left:593.313585px;}
.x59_c00418{left:595.323285px;}
.x1c_c00418{left:605.866785px;}
.x4d_c00418{left:607.921035px;}
.x1d_c00418{left:611.217735px;}
.x13_c00418{left:615.875685px;}
.x62_c00418{left:617.454735px;}
.x44_c00418{left:619.796085px;}
.x1e_c00418{left:621.191985px;}
.x81_c00418{left:626.493435px;}
.x6f_c00418{left:628.126935px;}
.x96_c00418{left:629.819835px;}
.x7b_c00418{left:632.829435px;}
.x78_c00418{left:635.378685px;}
.x1f_c00418{left:639.011985px;}
.x63_c00418{left:640.417785px;}
.x25_c00418{left:644.254035px;}
.x69_c00418{left:649.342635px;}
.x45_c00418{left:651.337485px;}
.x20_c00418{left:655.767735px;}
.x4e_c00418{left:659.029785px;}
.x14_c00418{left:661.074135px;}
.x5a_c00418{left:667.528935px;}
.x2_c00418{left:671.582985px;}
.x5b_c00418{left:673.944135px;}
.x26_c00418{left:676.008285px;}
.x87_c00418{left:681.621585px;}
.x27_c00418{left:682.710585px;}
.x35_c00418{left:684.705435px;}
.x28_c00418{left:687.675435px;}
.x15_c00418{left:693.541185px;}
.x79_c00418{left:694.565835px;}
.x21_c00418{left:696.392385px;}
.x8a_c00418{left:698.614935px;}
.x36_c00418{left:704.168835px;}
.x84_c00418{left:705.302385px;}
.x77_c00418{left:706.925985px;}
.x22_c00418{left:715.603335px;}
.x6a_c00418{left:726.151785px;}
.x23_c00418{left:732.299685px;}
.x70_c00418{left:733.655985px;}
.x24_c00418{left:735.962685px;}
.x4f_c00418{left:737.269485px;}
.x97_c00418{left:775.607235px;}
.x98_c00418{left:776.626935px;}
@media print{
.v2_c00418{vertical-align:-20.275200pt;}
.v0_c00418{vertical-align:0.000000pt;}
.v1_c00418{vertical-align:25.361600pt;}
.ls52_c00418{letter-spacing:-3.991686pt;}
.ls1b_c00418{letter-spacing:-2.205280pt;}
.ls19_c00418{letter-spacing:-2.192960pt;}
.ls30_c00418{letter-spacing:-2.156000pt;}
.ls3c_c00418{letter-spacing:-2.045126pt;}
.ls44_c00418{letter-spacing:-2.008160pt;}
.ls35_c00418{letter-spacing:-1.897280pt;}
.ls1f_c00418{letter-spacing:-1.823360pt;}
.ls32_c00418{letter-spacing:-1.774080pt;}
.ls4d_c00418{letter-spacing:-1.740288pt;}
.ls49_c00418{letter-spacing:-1.601600pt;}
.ls45_c00418{letter-spacing:-1.564640pt;}
.ls17_c00418{letter-spacing:-1.527680pt;}
.ls37_c00418{letter-spacing:-1.486989pt;}
.ls27_c00418{letter-spacing:-1.478400pt;}
.ls43_c00418{letter-spacing:-1.453760pt;}
.ls4f_c00418{letter-spacing:-1.392160pt;}
.ls2b_c00418{letter-spacing:-0.917664pt;}
.ls2f_c00418{letter-spacing:-0.910694pt;}
.ls14_c00418{letter-spacing:-0.671440pt;}
.lsb_c00418{letter-spacing:-0.667885pt;}
.ls4c_c00418{letter-spacing:-0.560771pt;}
.ls13_c00418{letter-spacing:-0.542080pt;}
.ls1c_c00418{letter-spacing:-0.431957pt;}
.ls1e_c00418{letter-spacing:-0.409552pt;}
.ls47_c00418{letter-spacing:-0.402776pt;}
.ls4e_c00418{letter-spacing:-0.081910pt;}
.ls9_c00418{letter-spacing:0.000000pt;}
.ls18_c00418{letter-spacing:0.056707pt;}
.ls33_c00418{letter-spacing:0.189024pt;}
.ls38_c00418{letter-spacing:0.233130pt;}
.ls1_c00418{letter-spacing:0.243461pt;}
.ls21_c00418{letter-spacing:0.298954pt;}
.ls31_c00418{letter-spacing:0.341299pt;}
.ls15_c00418{letter-spacing:0.694461pt;}
.ls48_c00418{letter-spacing:0.721600pt;}
.ls12_c00418{letter-spacing:0.774400pt;}
.ls34_c00418{letter-spacing:0.777216pt;}
.ls0_c00418{letter-spacing:1.105280pt;}
.ls5_c00418{letter-spacing:1.354496pt;}
.lse_c00418{letter-spacing:1.606704pt;}
.lsd_c00418{letter-spacing:1.980000pt;}
.ls53_c00418{letter-spacing:2.041609pt;}
.ls41_c00418{letter-spacing:2.054061pt;}
.ls29_c00418{letter-spacing:2.059200pt;}
.ls40_c00418{letter-spacing:2.076800pt;}
.ls36_c00418{letter-spacing:2.117914pt;}
.ls1d_c00418{letter-spacing:2.138400pt;}
.ls24_c00418{letter-spacing:2.179285pt;}
.ls16_c00418{letter-spacing:2.182400pt;}
.ls11_c00418{letter-spacing:2.200000pt;}
.ls25_c00418{letter-spacing:2.217609pt;}
.ls46_c00418{letter-spacing:2.235200pt;}
.ls4a_c00418{letter-spacing:2.288000pt;}
.ls51_c00418{letter-spacing:2.367200pt;}
.ls3_c00418{letter-spacing:2.369101pt;}
.ls1a_c00418{letter-spacing:2.411200pt;}
.ls2_c00418{letter-spacing:2.506240pt;}
.ls42_c00418{letter-spacing:2.534400pt;}
.ls3b_c00418{letter-spacing:2.564426pt;}
.ls22_c00418{letter-spacing:2.604800pt;}
.ls20_c00418{letter-spacing:2.622400pt;}
.ls28_c00418{letter-spacing:2.710400pt;}
.ls2a_c00418{letter-spacing:2.745609pt;}
.ls26_c00418{letter-spacing:2.816000pt;}
.ls50_c00418{letter-spacing:2.904669pt;}
.ls3a_c00418{letter-spacing:2.921609pt;}
.ls23_c00418{letter-spacing:3.018400pt;}
.ls39_c00418{letter-spacing:3.097609pt;}
.ls8_c00418{letter-spacing:3.150400pt;}
.ls7_c00418{letter-spacing:3.238400pt;}
.ls3e_c00418{letter-spacing:3.379209pt;}
.ls4_c00418{letter-spacing:3.422426pt;}
.lsa_c00418{letter-spacing:3.449609pt;}
.ls6_c00418{letter-spacing:5.796736pt;}
.ls3d_c00418{letter-spacing:10.137776pt;}
.ls10_c00418{letter-spacing:36.748976pt;}
.ls2c_c00418{letter-spacing:43.084976pt;}
.lsf_c00418{letter-spacing:44.352176pt;}
.ls2e_c00418{letter-spacing:45.619376pt;}
.ls4b_c00418{letter-spacing:48.153776pt;}
.ls2d_c00418{letter-spacing:49.420976pt;}
.lsc_c00418{letter-spacing:50.688176pt;}
.ls3f_c00418{letter-spacing:51.955376pt;}
.ws3_c00418{word-spacing:-16.586240pt;}
.ws5_c00418{word-spacing:-16.434176pt;}
.ws7_c00418{word-spacing:-15.985130pt;}
.ws1_c00418{word-spacing:-15.752000pt;}
.wsb_c00418{word-spacing:-15.670090pt;}
.ws9_c00418{word-spacing:-15.191229pt;}
.ws2_c00418{word-spacing:-14.080000pt;}
.ws4_c00418{word-spacing:-7.013670pt;}
.ws0_c00418{word-spacing:-1.669712pt;}
.wsc_c00418{word-spacing:0.000000pt;}
.ws6_c00418{word-spacing:1.029952pt;}
.wsa_c00418{word-spacing:3.548160pt;}
.ws8_c00418{word-spacing:8.443072pt;}
._1c_c00418{margin-left:-38.932608pt;}
._15_c00418{margin-left:-16.130048pt;}
._19_c00418{margin-left:-8.515012pt;}
._e_c00418{margin-left:-5.430656pt;}
._b_c00418{margin-left:-3.780480pt;}
._1b_c00418{width:1.022190pt;}
._f_c00418{width:2.630144pt;}
._a_c00418{width:6.043136pt;}
._3_c00418{width:7.642624pt;}
._c_c00418{width:9.712648pt;}
._12_c00418{width:11.655160pt;}
._0_c00418{width:13.795584pt;}
._1_c00418{width:15.026176pt;}
._5_c00418{width:19.916160pt;}
._2_c00418{width:22.344960pt;}
._1a_c00418{width:24.195072pt;}
._11_c00418{width:26.274336pt;}
._14_c00418{width:29.833760pt;}
._d_c00418{width:31.188960pt;}
._16_c00418{width:32.827168pt;}
._6_c00418{width:34.962048pt;}
._18_c00418{width:36.553229pt;}
._9_c00418{width:38.661920pt;}
._4_c00418{width:40.577856pt;}
._10_c00418{width:42.341376pt;}
._17_c00418{width:45.246080pt;}
._7_c00418{width:94.397248pt;}
._13_c00418{width:181.622848pt;}
._8_c00418{width:1169.181982pt;}
.fs29_c00418{font-size:10.137776pt;}
.fs30_c00418{font-size:14.432000pt;}
.fs9_c00418{font-size:15.488000pt;}
.fsa_c00418{font-size:19.184000pt;}
.fs3e_c00418{font-size:19.712000pt;}
.fs3f_c00418{font-size:23.936000pt;}
.fs1d_c00418{font-size:29.040000pt;}
.fs12_c00418{font-size:30.272176pt;}
.fs3c_c00418{font-size:30.800000pt;}
.fs1b_c00418{font-size:30.976000pt;}
.fsb_c00418{font-size:31.856000pt;}
.fs3d_c00418{font-size:34.496000pt;}
.fs38_c00418{font-size:34.848000pt;}
.fs2f_c00418{font-size:35.024000pt;}
.fs7_c00418{font-size:36.748976pt;}
.fs5_c00418{font-size:39.600000pt;}
.fs34_c00418{font-size:39.776000pt;}
.fs37_c00418{font-size:40.832176pt;}
.fs19_c00418{font-size:41.184000pt;}
.fs2c_c00418{font-size:41.536000pt;}
.fs17_c00418{font-size:42.240000pt;}
.fs11_c00418{font-size:42.768000pt;}
.fs33_c00418{font-size:42.944000pt;}
.fs1f_c00418{font-size:43.084976pt;}
.fsc_c00418{font-size:43.648000pt;}
.fs8_c00418{font-size:44.000000pt;}
.fs6_c00418{font-size:44.352176pt;}
.fs2e_c00418{font-size:44.704000pt;}
.fs3b_c00418{font-size:45.056000pt;}
.fs21_c00418{font-size:45.619376pt;}
.fs31_c00418{font-size:45.760000pt;}
.fs1c_c00418{font-size:45.936000pt;}
.fs25_c00418{font-size:46.464000pt;}
.fs35_c00418{font-size:47.344000pt;}
.fs32_c00418{font-size:48.153776pt;}
.fse_c00418{font-size:48.224000pt;}
.fs20_c00418{font-size:49.420976pt;}
.fs24_c00418{font-size:50.688000pt;}
.fs4_c00418{font-size:50.688176pt;}
.fs2b_c00418{font-size:51.955376pt;}
.fs13_c00418{font-size:52.096000pt;}
.fs14_c00418{font-size:52.448000pt;}
.fs23_c00418{font-size:53.328000pt;}
.fs18_c00418{font-size:54.208000pt;}
.fs1a_c00418{font-size:54.912176pt;}
.fs1e_c00418{font-size:55.616000pt;}
.fs16_c00418{font-size:56.320000pt;}
.fs2d_c00418{font-size:57.376000pt;}
.fs3_c00418{font-size:57.728000pt;}
.fs28_c00418{font-size:58.432176pt;}
.fs27_c00418{font-size:58.960000pt;}
.fs39_c00418{font-size:59.136000pt;}
.fs3a_c00418{font-size:59.840000pt;}
.fs15_c00418{font-size:60.368000pt;}
.fs22_c00418{font-size:61.600000pt;}
.fs10_c00418{font-size:61.952176pt;}
.fsd_c00418{font-size:62.656000pt;}
.fs1_c00418{font-size:63.008000pt;}
.fs0_c00418{font-size:64.768000pt;}
.fs2a_c00418{font-size:67.584176pt;}
.fs2_c00418{font-size:68.992176pt;}
.fsf_c00418{font-size:70.400000pt;}
.fs26_c00418{font-size:76.736000pt;}
.fs36_c00418{font-size:114.048176pt;}
.y0_c00418{bottom:0.000000pt;}
.y32_c00418{bottom:32.864520pt;}
.y27_c00418{bottom:39.200520pt;}
.y1_c00418{bottom:68.000000pt;}
.y31_c00418{bottom:74.369720pt;}
.y30_c00418{bottom:86.720520pt;}
.y26_c00418{bottom:119.988920pt;}
.y25_c00418{bottom:146.600120pt;}
.y2f_c00418{bottom:147.550520pt;}
.y24_c00418{bottom:179.542920pt;}
.y2e_c00418{bottom:185.878920pt;}
.y23_c00418{bottom:209.005320pt;}
.y2d_c00418{bottom:224.849720pt;}
.y22_c00418{bottom:234.353720pt;}
.y20_c00418{bottom:238.155320pt;}
.y21_c00418{bottom:238.788920pt;}
.y2c_c00418{bottom:264.762120pt;}
.y1f_c00418{bottom:266.662920pt;}
.y2b_c00418{bottom:290.104888pt;}
.y1e_c00418{bottom:295.174920pt;}
.y2a_c00418{bottom:334.462520pt;}
.y29_c00418{bottom:348.401720pt;}
.y1d_c00418{bottom:353.782920pt;}
.y1b_c00418{bottom:356.955320pt;}
.y1c_c00418{bottom:358.534920pt;}
.y28_c00418{bottom:368.676920pt;}
.y1a_c00418{bottom:386.100920pt;}
.y19_c00418{bottom:415.880120pt;}
.y18_c00418{bottom:445.021320pt;}
.y16_c00418{bottom:465.934520pt;}
.y15_c00418{bottom:472.899720pt;}
.y17_c00418{bottom:473.537720pt;}
.y14_c00418{bottom:496.659720pt;}
.y13_c00418{bottom:501.728520pt;}
.y12_c00418{bottom:532.141320pt;}
.y11_c00418{bottom:560.974520pt;}
.yf_c00418{bottom:590.120120pt;}
.y10_c00418{bottom:592.016520pt;}
.ye_c00418{bottom:618.632120pt;}
.yd_c00418{bottom:647.456520pt;}
.yc_c00418{bottom:666.781320pt;}
.ya_c00418{bottom:670.899720pt;}
.y9_c00418{bottom:676.285320pt;}
.y8_c00418{bottom:676.606520pt;}
.yb_c00418{bottom:677.240120pt;}
.y7_c00418{bottom:706.381320pt;}
.y5_c00418{bottom:706.698120pt;}
.y6_c00418{bottom:707.648520pt;}
.y4_c00418{bottom:738.378120pt;}
.y3_c00418{bottom:823.914120pt;}
.y2_c00418{bottom:957.286920pt;}
.h29_c00418{height:6.751759pt;}
.h31_c00418{height:15.052125pt;}
.hc_c00418{height:16.153500pt;}
.hd_c00418{height:20.008313pt;}
.h3e_c00418{height:20.559000pt;}
.ha_c00418{height:24.474818pt;}
.h40_c00418{height:24.964500pt;}
.h20_c00418{height:28.694594pt;}
.h9_c00418{height:29.538549pt;}
.h22_c00418{height:30.382504pt;}
.h1e_c00418{height:30.401250pt;}
.h14_c00418{height:31.572934pt;}
.h33_c00418{height:32.070415pt;}
.he_c00418{height:32.104875pt;}
.h3c_c00418{height:32.123438pt;}
.h21_c00418{height:32.914370pt;}
.h7_c00418{height:33.758325pt;}
.h38_c00418{height:34.201406pt;}
.h2b_c00418{height:34.602280pt;}
.h3d_c00418{height:35.978250pt;}
.h3f_c00418{height:39.037969pt;}
.h2e_c00418{height:40.765313pt;}
.h8_c00418{height:41.301563pt;}
.h1a_c00418{height:41.456250pt;}
.h34_c00418{height:41.485125pt;}
.h13_c00418{height:41.974453pt;}
.h37_c00418{height:42.586684pt;}
.hf_c00418{height:42.838125pt;}
.h1c_c00418{height:42.953625pt;}
.hb_c00418{height:43.183594pt;}
.h2c_c00418{height:43.320750pt;}
.h30_c00418{height:43.874531pt;}
.h32_c00418{height:44.910938pt;}
.h18_c00418{height:46.257934pt;}
.h35_c00418{height:46.465547pt;}
.h3b_c00418{height:46.992000pt;}
.h11_c00418{height:47.329219pt;}
.h25_c00418{height:48.460500pt;}
.h2d_c00418{height:49.747500pt;}
.h24_c00418{height:52.866000pt;}
.h1d_c00418{height:53.893298pt;}
.h15_c00418{height:54.334500pt;}
.h16_c00418{height:54.701625pt;}
.h1b_c00418{height:56.537250pt;}
.h28_c00418{height:57.347985pt;}
.h1f_c00418{height:58.005750pt;}
.h3a_c00418{height:58.729688pt;}
.h19_c00418{height:58.740000pt;}
.h17_c00418{height:59.247891pt;}
.h2f_c00418{height:59.841375pt;}
.h6_c00418{height:60.208500pt;}
.h23_c00418{height:60.457031pt;}
.h27_c00418{height:60.802673pt;}
.h10_c00418{height:61.493438pt;}
.h39_c00418{height:61.677000pt;}
.h3_c00418{height:61.838906pt;}
.h2_c00418{height:63.566250pt;}
.h5_c00418{height:65.274000pt;}
.h2a_c00418{height:66.330173pt;}
.h4_c00418{height:67.712048pt;}
.h12_c00418{height:70.950000pt;}
.h26_c00418{height:75.312188pt;}
.h36_c00418{height:111.932048pt;}
.h1_c00418{height:986.666667pt;}
.h0_c00418{height:1122.666667pt;}
.w1_c00418{width:689.333333pt;}
.w0_c00418{width:793.333333pt;}
.x0_c00418{left:0.000000pt;}
.x1_c00418{left:52.000000pt;}
.x16_c00418{left:68.667853pt;}
.x3_c00418{left:70.401453pt;}
.x91_c00418{left:72.645453pt;}
.x38_c00418{left:76.966253pt;}
.x50_c00418{left:78.057453pt;}
.x92_c00418{left:89.158653pt;}
.x39_c00418{left:97.083053pt;}
.x8b_c00418{left:98.020253pt;}
.x46_c00418{left:99.529453pt;}
.x51_c00418{left:107.163453pt;}
.x4_c00418{left:108.135853pt;}
.x5c_c00418{left:111.334653pt;}
.x82_c00418{left:116.218653pt;}
.xa_c00418{left:117.182253pt;}
.x64_c00418{left:125.436653pt;}
.x3a_c00418{left:126.347453pt;}
.x17_c00418{left:127.803853pt;}
.x72_c00418{left:135.891053pt;}
.x47_c00418{left:137.281453pt;}
.x7c_c00418{left:146.173853pt;}
.xb_c00418{left:148.039453pt;}
.x73_c00418{left:155.941853pt;}
.x5d_c00418{left:157.820653pt;}
.x7f_c00418{left:162.189853pt;}
.x3b_c00418{left:165.837453pt;}
.x8c_c00418{left:167.007853pt;}
.x5_c00418{left:168.332253pt;}
.x6_c00418{left:175.200653pt;}
.x6b_c00418{left:177.369853pt;}
.x34_c00418{left:184.238253pt;}
.x3c_c00418{left:185.210653pt;}
.x29_c00418{left:186.640653pt;}
.x18_c00418{left:194.785053pt;}
.x3d_c00418{left:196.298653pt;}
.x93_c00418{left:201.649053pt;}
.x52_c00418{left:204.209853pt;}
.x48_c00418{left:205.723453pt;}
.x7_c00418{left:207.157853pt;}
.x3e_c00418{left:214.800653pt;}
.x2a_c00418{left:216.560653pt;}
.x5e_c00418{left:217.911453pt;}
.x8_c00418{left:224.889853pt;}
.x65_c00418{left:225.937053pt;}
.x6c_c00418{left:234.490653pt;}
.x7d_c00418{left:235.463053pt;}
.xc_c00418{left:244.214653pt;}
.x94_c00418{left:245.165053pt;}
.x71_c00418{left:246.441053pt;}
.x49_c00418{left:254.647053pt;}
.x19_c00418{left:263.222653pt;}
.x9_c00418{left:265.735053pt;}
.xd_c00418{left:274.134653pt;}
.x53_c00418{left:276.418253pt;}
.x7a_c00418{left:284.303053pt;}
.x8d_c00418{left:285.266653pt;}
.x54_c00418{left:289.732653pt;}
.x55_c00418{left:292.900653pt;}
.x74_c00418{left:293.811453pt;}
.x2b_c00418{left:294.951053pt;}
.x4a_c00418{left:302.875453pt;}
.x6d_c00418{left:304.230653pt;}
.x3f_c00418{left:312.700653pt;}
.x5f_c00418{left:314.082253pt;}
.xe_c00418{left:322.930653pt;}
.x56_c00418{left:326.657453pt;}
.x88_c00418{left:332.320253pt;}
.x6e_c00418{left:333.640253pt;}
.x2c_c00418{left:342.365453pt;}
.x95_c00418{left:345.683053pt;}
.x40_c00418{left:347.825853pt;}
.x85_c00418{left:352.432653pt;}
.x83_c00418{left:360.779453pt;}
.x41_c00418{left:361.703453pt;}
.xf_c00418{left:362.759453pt;}
.x2d_c00418{left:372.012653pt;}
.x8e_c00418{left:373.191853pt;}
.x2e_c00418{left:381.547453pt;}
.x10_c00418{left:391.680653pt;}
.x37_c00418{left:395.486653pt;}
.x57_c00418{left:400.071453pt;}
.x66_c00418{left:401.805053pt;}
.x80_c00418{left:411.375053pt;}
.x2f_c00418{left:413.535453pt;}
.x1a_c00418{left:420.764653pt;}
.x67_c00418{left:430.224653pt;}
.x30_c00418{left:431.267453pt;}
.x75_c00418{left:439.755053pt;}
.x1b_c00418{left:441.088253pt;}
.x89_c00418{left:442.104653pt;}
.x11_c00418{left:449.993853pt;}
.x7e_c00418{left:452.479853pt;}
.x31_c00418{left:460.435053pt;}
.x68_c00418{left:469.499053pt;}
.x76_c00418{left:470.392253pt;}
.x86_c00418{left:478.281453pt;}
.x42_c00418{left:479.737853pt;}
.x4b_c00418{left:481.225053pt;}
.x60_c00418{left:483.746253pt;}
.x4c_c00418{left:489.585053pt;}
.x61_c00418{left:498.697453pt;}
.x43_c00418{left:499.731453pt;}
.x32_c00418{left:505.376653pt;}
.x12_c00418{left:509.090253pt;}
.x33_c00418{left:511.219853pt;}
.x58_c00418{left:518.765853pt;}
.x8f_c00418{left:520.741453pt;}
.x90_c00418{left:527.389853pt;}
.x59_c00418{left:529.176253pt;}
.x1c_c00418{left:538.548253pt;}
.x4d_c00418{left:540.374253pt;}
.x1d_c00418{left:543.304653pt;}
.x13_c00418{left:547.445053pt;}
.x62_c00418{left:548.848653pt;}
.x44_c00418{left:550.929853pt;}
.x1e_c00418{left:552.170653pt;}
.x81_c00418{left:556.883053pt;}
.x6f_c00418{left:558.335053pt;}
.x96_c00418{left:559.839853pt;}
.x7b_c00418{left:562.515053pt;}
.x78_c00418{left:564.781053pt;}
.x1f_c00418{left:568.010653pt;}
.x63_c00418{left:569.260253pt;}
.x25_c00418{left:572.670253pt;}
.x69_c00418{left:577.193453pt;}
.x45_c00418{left:578.966653pt;}
.x20_c00418{left:582.904653pt;}
.x4e_c00418{left:585.804253pt;}
.x14_c00418{left:587.621453pt;}
.x5a_c00418{left:593.359053pt;}
.x2_c00418{left:596.962653pt;}
.x5b_c00418{left:599.061453pt;}
.x26_c00418{left:600.896253pt;}
.x87_c00418{left:605.885853pt;}
.x27_c00418{left:606.853853pt;}
.x35_c00418{left:608.627053pt;}
.x28_c00418{left:611.267053pt;}
.x15_c00418{left:616.481053pt;}
.x79_c00418{left:617.391853pt;}
.x21_c00418{left:619.015453pt;}
.x8a_c00418{left:620.991053pt;}
.x36_c00418{left:625.927853pt;}
.x84_c00418{left:626.935453pt;}
.x77_c00418{left:628.378653pt;}
.x22_c00418{left:636.091853pt;}
.x6a_c00418{left:645.468253pt;}
.x23_c00418{left:650.933053pt;}
.x70_c00418{left:652.138653pt;}
.x24_c00418{left:654.189053pt;}
.x4f_c00418{left:655.350653pt;}
.x97_c00418{left:689.428653pt;}
.x98_c00418{left:690.335053pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d98a92b887c4c96adf893664.woff2')format("woff");}.ff1_c00419{font-family:ff1_c00419;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00419;src:url('chunks/assets/font_bc6c52faf91ebe877161efd8.woff2')format("woff");}.ff2_c00419{font-family:ff2_c00419;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00419;src:url('chunks/assets/font_a8eb2218c93138ae64729e20.woff2')format("woff");}.ff3_c00419{font-family:ff3_c00419;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00419;src:url('chunks/assets/font_10d06c0d9e1f87ebbabeac9d.woff2')format("woff");}.ff4_c00419{font-family:ff4_c00419;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00419;src:url('chunks/assets/font_2260ddbefa38c06ee0cd80d8.woff2')format("woff");}.ff5_c00419{font-family:ff5_c00419;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00419;src:url('chunks/assets/font_d82cff32a4cc66833a9eaa82.woff2')format("woff");}.ff6_c00419{font-family:ff6_c00419;line-height:1.435059;font-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_c00419{transform:matrix(0.024195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024195,0.000000,0.000000,0.250000,0,0);}
.m77_c00419{transform:matrix(0.035715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.035715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.035715,0.000000,0.000000,0.250000,0,0);}
.m112_c00419{transform:matrix(0.054879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054879,0.000000,0.000000,0.250000,0,0);}
.m121_c00419{transform:matrix(0.060812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060812,0.000000,0.000000,0.250000,0,0);}
.m114_c00419{transform:matrix(0.070123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070123,0.000000,0.000000,0.250000,0,0);}
.m70_c00419{transform:matrix(0.070947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070947,0.000000,0.000000,0.250000,0,0);}
.m79_c00419{transform:matrix(0.071429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071429,0.000000,0.000000,0.250000,0,0);}
.mf1_c00419{transform:matrix(0.073170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073170,0.000000,0.000000,0.250000,0,0);}
.mbf_c00419{transform:matrix(0.076219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076219,0.000000,0.000000,0.250000,0,0);}
.m8_c00419{transform:matrix(0.078284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078284,0.000000,0.000000,0.250000,0,0);}
.m7a_c00419{transform:matrix(0.085714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085714,0.000000,0.000000,0.250000,0,0);}
.m2_c00419{transform:matrix(0.088710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088710,0.000000,0.000000,0.250000,0,0);}
.m72_c00419{transform:matrix(0.092906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092906,0.000000,0.000000,0.250000,0,0);}
.m103_c00419{transform:matrix(0.097632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097632,0.000000,0.000000,0.250000,0,0);}
.me2_c00419{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.mc_c00419{transform:matrix(0.100379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100379,0.000000,0.000000,0.250000,0,0);}
.maf_c00419{transform:matrix(0.103784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103784,0.000000,0.000000,0.250000,0,0);}
.m87_c00419{transform:matrix(0.105699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105699,0.000000,0.000000,0.250000,0,0);}
.m71_c00419{transform:matrix(0.105855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105855,0.000000,0.000000,0.250000,0,0);}
.md4_c00419{transform:matrix(0.106618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106618,0.000000,0.000000,0.250000,0,0);}
.m7b_c00419{transform:matrix(0.107142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107142,0.000000,0.000000,0.250000,0,0);}
.m6f_c00419{transform:matrix(0.113900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113900,0.000000,0.000000,0.250000,0,0);}
.mbd_c00419{transform:matrix(0.115853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115853,0.000000,0.000000,0.250000,0,0);}
.m8b_c00419{transform:matrix(0.122290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122290,0.000000,0.000000,0.250000,0,0);}
.me3_c00419{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);}
.m120_c00419{transform:matrix(0.126690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126690,0.000000,0.000000,0.250000,0,0);}
.m91_c00419{transform:matrix(0.127315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127315,0.000000,0.000000,0.250000,0,0);}
.mf2_c00419{transform:matrix(0.138720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138720,0.000000,0.000000,0.250000,0,0);}
.mbc_c00419{transform:matrix(0.141006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141006,0.000000,0.000000,0.250000,0,0);}
.me0_c00419{transform:matrix(0.142858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142858,0.000000,0.000000,0.250000,0,0);}
.m5c_c00419{transform:matrix(0.145245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145245,0.000000,0.000000,0.250000,0,0);}
.m76_c00419{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m99_c00419{transform:matrix(0.151177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151177,0.000000,0.000000,0.250000,0,0);}
.me4_c00419{transform:matrix(0.157142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157142,0.000000,0.000000,0.250000,0,0);}
.mbe_c00419{transform:matrix(0.158537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158537,0.000000,0.000000,0.250000,0,0);}
.m5d_c00419{transform:matrix(0.159707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159707,0.000000,0.000000,0.250000,0,0);}
.m49_c00419{transform:matrix(0.160619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160619,0.000000,0.000000,0.250000,0,0);}
.m34_c00419{transform:matrix(0.161336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161336,0.000000,0.000000,0.250000,0,0);}
.m111_c00419{transform:matrix(0.161585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161585,0.000000,0.000000,0.250000,0,0);}
.m1a_c00419{transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);}
.m113_c00419{transform:matrix(0.167683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167683,0.000000,0.000000,0.250000,0,0);}
.md3_c00419{transform:matrix(0.169118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169118,0.000000,0.000000,0.250000,0,0);}
.m4_c00419{transform:matrix(0.169240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169240,0.000000,0.000000,0.250000,0,0);}
.m7d_c00419{transform:matrix(0.170777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170777,0.000000,0.000000,0.250000,0,0);}
.mdf_c00419{transform:matrix(0.171429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171429,0.000000,0.000000,0.250000,0,0);}
.m9_c00419{transform:matrix(0.174243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174243,0.000000,0.000000,0.250000,0,0);}
.m78_c00419{transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);}
.m8c_c00419{transform:matrix(0.179738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179738,0.000000,0.000000,0.250000,0,0);}
.ma9_c00419{transform:matrix(0.182872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182872,0.000000,0.000000,0.250000,0,0);}
.m105_c00419{transform:matrix(0.186578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186578,0.000000,0.000000,0.250000,0,0);}
.m116_c00419{transform:matrix(0.191084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191084,0.000000,0.000000,0.250000,0,0);}
.m6c_c00419{transform:matrix(0.191380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191380,0.000000,0.000000,0.250000,0,0);}
.me1_c00419{transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);}
.m0_c00419{transform:matrix(0.193549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193549,0.000000,0.000000,0.250000,0,0);}
.md2_c00419{transform:matrix(0.198530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198530,0.000000,0.000000,0.250000,0,0);}
.mc8_c00419{transform:matrix(0.198728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198728,0.000000,0.000000,0.250000,0,0);}
.m88_c00419{transform:matrix(0.199920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199920,0.000000,0.000000,0.250000,0,0);}
.m122_c00419{transform:matrix(0.200451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200451,0.000000,0.000000,0.250000,0,0);}
.mc9_c00419{transform:matrix(0.203848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203848,0.000000,0.000000,0.250000,0,0);}
.md8_c00419{transform:matrix(0.204842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204842,0.000000,0.000000,0.250000,0,0);}
.ma_c00419{transform:matrix(0.208334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208334,0.000000,0.000000,0.250000,0,0);}
.m4a_c00419{transform:matrix(0.211968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211968,0.000000,0.000000,0.250000,0,0);}
.mb5_c00419{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00419{transform:matrix(0.214595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214595,0.000000,0.000000,0.250000,0,0);}
.m39_c00419{transform:matrix(0.215543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215543,0.000000,0.000000,0.250000,0,0);}
.m73_c00419{transform:matrix(0.217999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217999,0.000000,0.000000,0.250000,0,0);}
.m7c_c00419{transform:matrix(0.218497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218497,0.000000,0.000000,0.250000,0,0);}
.m68_c00419{transform:matrix(0.218530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218530,0.000000,0.000000,0.250000,0,0);}
.mb_c00419{transform:matrix(0.219698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219698,0.000000,0.000000,0.250000,0,0);}
.m63_c00419{transform:matrix(0.229533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229533,0.000000,0.000000,0.250000,0,0);}
.m69_c00419{transform:matrix(0.234525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234525,0.000000,0.000000,0.250000,0,0);}
.m18_c00419{transform:matrix(0.240242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240242,0.000000,0.000000,0.250000,0,0);}
.m40_c00419{transform:matrix(0.241975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241975,0.000000,0.000000,0.250000,0,0);}
.m3_c00419{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.me7_c00419{transform:matrix(0.253792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253792,0.000000,0.000000,0.250000,0,0);}
.m109_c00419{transform:matrix(0.257115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257115,0.000000,0.000000,0.250000,0,0);}
.m66_c00419{transform:matrix(0.257240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257240,0.000000,0.000000,0.250000,0,0);}
.m4c_c00419{transform:matrix(0.258333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258333,0.000000,0.000000,0.250000,0,0);}
.m85_c00419{transform:matrix(0.259343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259343,0.000000,0.000000,0.250000,0,0);}
.me5_c00419{transform:matrix(0.260268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260268,0.000000,0.000000,0.250000,0,0);}
.m83_c00419{transform:matrix(0.262061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262061,0.000000,0.000000,0.250000,0,0);}
.m67_c00419{transform:matrix(0.263165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263165,0.000000,0.000000,0.250000,0,0);}
.mb2_c00419{transform:matrix(0.264071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264071,0.000000,0.000000,0.250000,0,0);}
.m35_c00419{transform:matrix(0.264234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264234,0.000000,0.000000,0.250000,0,0);}
.m6e_c00419{transform:matrix(0.265211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265211,0.000000,0.000000,0.250000,0,0);}
.m75_c00419{transform:matrix(0.266450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266450,0.000000,0.000000,0.250000,0,0);}
.m36_c00419{transform:matrix(0.267307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267307,0.000000,0.000000,0.250000,0,0);}
.m93_c00419{transform:matrix(0.267621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267621,0.000000,0.000000,0.250000,0,0);}
.m43_c00419{transform:matrix(0.271222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271222,0.000000,0.000000,0.250000,0,0);}
.mbb_c00419{transform:matrix(0.271758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271758,0.000000,0.000000,0.250000,0,0);}
.m2d_c00419{transform:matrix(0.271790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271790,0.000000,0.000000,0.250000,0,0);}
.m32_c00419{transform:matrix(0.272041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272041,0.000000,0.000000,0.250000,0,0);}
.m55_c00419{transform:matrix(0.272379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272379,0.000000,0.000000,0.250000,0,0);}
.mba_c00419{transform:matrix(0.272592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272592,0.000000,0.000000,0.250000,0,0);}
.mc4_c00419{transform:matrix(0.275587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275587,0.000000,0.000000,0.250000,0,0);}
.mab_c00419{transform:matrix(0.276830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276830,0.000000,0.000000,0.250000,0,0);}
.ma5_c00419{transform:matrix(0.276899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276899,0.000000,0.000000,0.250000,0,0);}
.m6_c00419{transform:matrix(0.279624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279624,0.000000,0.000000,0.250000,0,0);}
.m8f_c00419{transform:matrix(0.280039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280039,0.000000,0.000000,0.250000,0,0);}
.m80_c00419{transform:matrix(0.280317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280317,0.000000,0.000000,0.250000,0,0);}
.mcb_c00419{transform:matrix(0.281970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281970,0.000000,0.000000,0.250000,0,0);}
.m119_c00419{transform:matrix(0.282945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282945,0.000000,0.000000,0.250000,0,0);}
.m94_c00419{transform:matrix(0.284208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284208,0.000000,0.000000,0.250000,0,0);}
.m100_c00419{transform:matrix(0.284313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284313,0.000000,0.000000,0.250000,0,0);}
.m74_c00419{transform:matrix(0.284364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284364,0.000000,0.000000,0.250000,0,0);}
.mf0_c00419{transform:matrix(0.285063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285063,0.000000,0.000000,0.250000,0,0);}
.m46_c00419{transform:matrix(0.285446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285446,0.000000,0.000000,0.250000,0,0);}
.m22_c00419{transform:matrix(0.287348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287348,0.000000,0.000000,0.250000,0,0);}
.m57_c00419{transform:matrix(0.287395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287395,0.000000,0.000000,0.250000,0,0);}
.mce_c00419{transform:matrix(0.287437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287437,0.000000,0.000000,0.250000,0,0);}
.m84_c00419{transform:matrix(0.287495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287495,0.000000,0.000000,0.250000,0,0);}
.m2c_c00419{transform:matrix(0.288085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288085,0.000000,0.000000,0.250000,0,0);}
.med_c00419{transform:matrix(0.288516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288516,0.000000,0.000000,0.250000,0,0);}
.m52_c00419{transform:matrix(0.288604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288604,0.000000,0.000000,0.250000,0,0);}
.m9f_c00419{transform:matrix(0.288765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288765,0.000000,0.000000,0.250000,0,0);}
.md_c00419{transform:matrix(0.289375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289375,0.000000,0.000000,0.250000,0,0);}
.m61_c00419{transform:matrix(0.289722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289722,0.000000,0.000000,0.250000,0,0);}
.mad_c00419{transform:matrix(0.290388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290388,0.000000,0.000000,0.250000,0,0);}
.m65_c00419{transform:matrix(0.291098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291098,0.000000,0.000000,0.250000,0,0);}
.m30_c00419{transform:matrix(0.291374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291374,0.000000,0.000000,0.250000,0,0);}
.m3b_c00419{transform:matrix(0.291921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291921,0.000000,0.000000,0.250000,0,0);}
.m17_c00419{transform:matrix(0.292256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292256,0.000000,0.000000,0.250000,0,0);}
.m11d_c00419{transform:matrix(0.292538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292538,0.000000,0.000000,0.250000,0,0);}
.ma8_c00419{transform:matrix(0.292573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292573,0.000000,0.000000,0.250000,0,0);}
.m10b_c00419{transform:matrix(0.293284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293284,0.000000,0.000000,0.250000,0,0);}
.m10_c00419{transform:matrix(0.293810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293810,0.000000,0.000000,0.250000,0,0);}
.m6a_c00419{transform:matrix(0.294240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294240,0.000000,0.000000,0.250000,0,0);}
.m14_c00419{transform:matrix(0.294543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294543,0.000000,0.000000,0.250000,0,0);}
.m29_c00419{transform:matrix(0.294675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294675,0.000000,0.000000,0.250000,0,0);}
.m2f_c00419{transform:matrix(0.295238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295238,0.000000,0.000000,0.250000,0,0);}
.mff_c00419{transform:matrix(0.295568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295568,0.000000,0.000000,0.250000,0,0);}
.m53_c00419{transform:matrix(0.296570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296570,0.000000,0.000000,0.250000,0,0);}
.mca_c00419{transform:matrix(0.296877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296877,0.000000,0.000000,0.250000,0,0);}
.ma6_c00419{transform:matrix(0.297334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297334,0.000000,0.000000,0.250000,0,0);}
.mf9_c00419{transform:matrix(0.297797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297797,0.000000,0.000000,0.250000,0,0);}
.m20_c00419{transform:matrix(0.298513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298513,0.000000,0.000000,0.250000,0,0);}
.m9b_c00419{transform:matrix(0.298840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298840,0.000000,0.000000,0.250000,0,0);}
.m50_c00419{transform:matrix(0.298979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298979,0.000000,0.000000,0.250000,0,0);}
.m26_c00419{transform:matrix(0.299710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299710,0.000000,0.000000,0.250000,0,0);}
.m101_c00419{transform:matrix(0.299773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299773,0.000000,0.000000,0.250000,0,0);}
.m1e_c00419{transform:matrix(0.300154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300154,0.000000,0.000000,0.250000,0,0);}
.mf6_c00419{transform:matrix(0.300488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300488,0.000000,0.000000,0.250000,0,0);}
.m123_c00419{transform:matrix(0.300494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300494,0.000000,0.000000,0.250000,0,0);}
.m3a_c00419{transform:matrix(0.300751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300751,0.000000,0.000000,0.250000,0,0);}
.m3d_c00419{transform:matrix(0.301234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301234,0.000000,0.000000,0.250000,0,0);}
.m6b_c00419{transform:matrix(0.301623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301623,0.000000,0.000000,0.250000,0,0);}
.mb0_c00419{transform:matrix(0.301977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301977,0.000000,0.000000,0.250000,0,0);}
.m107_c00419{transform:matrix(0.303372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303372,0.000000,0.000000,0.250000,0,0);}
.m1c_c00419{transform:matrix(0.303585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303585,0.000000,0.000000,0.250000,0,0);}
.m2b_c00419{transform:matrix(0.303948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303948,0.000000,0.000000,0.250000,0,0);}
.m9c_c00419{transform:matrix(0.304441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304441,0.000000,0.000000,0.250000,0,0);}
.m10f_c00419{transform:matrix(0.304878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304878,0.000000,0.000000,0.250000,0,0);}
.m98_c00419{transform:matrix(0.305065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305065,0.000000,0.000000,0.250000,0,0);}
.m42_c00419{transform:matrix(0.305439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305439,0.000000,0.000000,0.250000,0,0);}
.m10d_c00419{transform:matrix(0.305515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305515,0.000000,0.000000,0.250000,0,0);}
.m25_c00419{transform:matrix(0.305518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305518,0.000000,0.000000,0.250000,0,0);}
.mc7_c00419{transform:matrix(0.305692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305692,0.000000,0.000000,0.250000,0,0);}
.me8_c00419{transform:matrix(0.306058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306058,0.000000,0.000000,0.250000,0,0);}
.mf_c00419{transform:matrix(0.306655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306655,0.000000,0.000000,0.250000,0,0);}
.ma7_c00419{transform:matrix(0.306819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306819,0.000000,0.000000,0.250000,0,0);}
.mc2_c00419{transform:matrix(0.307746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307746,0.000000,0.000000,0.250000,0,0);}
.m48_c00419{transform:matrix(0.308612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308612,0.000000,0.000000,0.250000,0,0);}
.mde_c00419{transform:matrix(0.308947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308947,0.000000,0.000000,0.250000,0,0);}
.mfc_c00419{transform:matrix(0.309166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309166,0.000000,0.000000,0.250000,0,0);}
.m16_c00419{transform:matrix(0.309424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309424,0.000000,0.000000,0.250000,0,0);}
.m59_c00419{transform:matrix(0.309429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309429,0.000000,0.000000,0.250000,0,0);}
.md0_c00419{transform:matrix(0.310335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310335,0.000000,0.000000,0.250000,0,0);}
.mb3_c00419{transform:matrix(0.310773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310773,0.000000,0.000000,0.250000,0,0);}
.md6_c00419{transform:matrix(0.311852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311852,0.000000,0.000000,0.250000,0,0);}
.m104_c00419{transform:matrix(0.312544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312544,0.000000,0.000000,0.250000,0,0);}
.m5e_c00419{transform:matrix(0.312661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312661,0.000000,0.000000,0.250000,0,0);}
.mb8_c00419{transform:matrix(0.315262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315262,0.000000,0.000000,0.250000,0,0);}
.m33_c00419{transform:matrix(0.315315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315315,0.000000,0.000000,0.250000,0,0);}
.mf5_c00419{transform:matrix(0.315420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315420,0.000000,0.000000,0.250000,0,0);}
.m10a_c00419{transform:matrix(0.315446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315446,0.000000,0.000000,0.250000,0,0);}
.m4b_c00419{transform:matrix(0.316807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316807,0.000000,0.000000,0.250000,0,0);}
.m8e_c00419{transform:matrix(0.316825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316825,0.000000,0.000000,0.250000,0,0);}
.ma2_c00419{transform:matrix(0.317421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317421,0.000000,0.000000,0.250000,0,0);}
.maa_c00419{transform:matrix(0.317668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317668,0.000000,0.000000,0.250000,0,0);}
.m37_c00419{transform:matrix(0.317834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317834,0.000000,0.000000,0.250000,0,0);}
.m3e_c00419{transform:matrix(0.318139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318139,0.000000,0.000000,0.250000,0,0);}
.mc0_c00419{transform:matrix(0.318836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318836,0.000000,0.000000,0.250000,0,0);}
.mc1_c00419{transform:matrix(0.319153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319153,0.000000,0.000000,0.250000,0,0);}
.m62_c00419{transform:matrix(0.319788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319788,0.000000,0.000000,0.250000,0,0);}
.m96_c00419{transform:matrix(0.320360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320360,0.000000,0.000000,0.250000,0,0);}
.mb1_c00419{transform:matrix(0.321584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321584,0.000000,0.000000,0.250000,0,0);}
.m82_c00419{transform:matrix(0.321952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321952,0.000000,0.000000,0.250000,0,0);}
.mea_c00419{transform:matrix(0.322841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322841,0.000000,0.000000,0.250000,0,0);}
.m56_c00419{transform:matrix(0.323987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323987,0.000000,0.000000,0.250000,0,0);}
.m15_c00419{transform:matrix(0.324394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324394,0.000000,0.000000,0.250000,0,0);}
.md7_c00419{transform:matrix(0.324647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324647,0.000000,0.000000,0.250000,0,0);}
.mc5_c00419{transform:matrix(0.325315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325315,0.000000,0.000000,0.250000,0,0);}
.ma0_c00419{transform:matrix(0.326420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326420,0.000000,0.000000,0.250000,0,0);}
.m9e_c00419{transform:matrix(0.326938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326938,0.000000,0.000000,0.250000,0,0);}
.m1b_c00419{transform:matrix(0.328094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328094,0.000000,0.000000,0.250000,0,0);}
.mf7_c00419{transform:matrix(0.328382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328382,0.000000,0.000000,0.250000,0,0);}
.m5f_c00419{transform:matrix(0.328743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328743,0.000000,0.000000,0.250000,0,0);}
.m2a_c00419{transform:matrix(0.329032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329032,0.000000,0.000000,0.250000,0,0);}
.m92_c00419{transform:matrix(0.329453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329453,0.000000,0.000000,0.250000,0,0);}
.m4f_c00419{transform:matrix(0.329674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329674,0.000000,0.000000,0.250000,0,0);}
.mdc_c00419{transform:matrix(0.330152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330152,0.000000,0.000000,0.250000,0,0);}
.m1f_c00419{transform:matrix(0.330782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330782,0.000000,0.000000,0.250000,0,0);}
.m11b_c00419{transform:matrix(0.331181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331181,0.000000,0.000000,0.250000,0,0);}
.mda_c00419{transform:matrix(0.331617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331617,0.000000,0.000000,0.250000,0,0);}
.md9_c00419{transform:matrix(0.331753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331753,0.000000,0.000000,0.250000,0,0);}
.ma4_c00419{transform:matrix(0.331869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331869,0.000000,0.000000,0.250000,0,0);}
.m11f_c00419{transform:matrix(0.331927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331927,0.000000,0.000000,0.250000,0,0);}
.m51_c00419{transform:matrix(0.331987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331987,0.000000,0.000000,0.250000,0,0);}
.m108_c00419{transform:matrix(0.332355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332355,0.000000,0.000000,0.250000,0,0);}
.m6d_c00419{transform:matrix(0.332477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332477,0.000000,0.000000,0.250000,0,0);}
.mf4_c00419{transform:matrix(0.334718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334718,0.000000,0.000000,0.250000,0,0);}
.mb6_c00419{transform:matrix(0.336416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336416,0.000000,0.000000,0.250000,0,0);}
.me9_c00419{transform:matrix(0.338251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338251,0.000000,0.000000,0.250000,0,0);}
.mdd_c00419{transform:matrix(0.338290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338290,0.000000,0.000000,0.250000,0,0);}
.md1_c00419{transform:matrix(0.338628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338628,0.000000,0.000000,0.250000,0,0);}
.m45_c00419{transform:matrix(0.340419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340419,0.000000,0.000000,0.250000,0,0);}
.mc6_c00419{transform:matrix(0.341489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341489,0.000000,0.000000,0.250000,0,0);}
.m11e_c00419{transform:matrix(0.341890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341890,0.000000,0.000000,0.250000,0,0);}
.m115_c00419{transform:matrix(0.342154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342154,0.000000,0.000000,0.250000,0,0);}
.ma3_c00419{transform:matrix(0.342780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342780,0.000000,0.000000,0.250000,0,0);}
.m1d_c00419{transform:matrix(0.343694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343694,0.000000,0.000000,0.250000,0,0);}
.m31_c00419{transform:matrix(0.344225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344225,0.000000,0.000000,0.250000,0,0);}
.mc3_c00419{transform:matrix(0.344349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344349,0.000000,0.000000,0.250000,0,0);}
.m4e_c00419{transform:matrix(0.344898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344898,0.000000,0.000000,0.250000,0,0);}
.m81_c00419{transform:matrix(0.345554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345554,0.000000,0.000000,0.250000,0,0);}
.m19_c00419{transform:matrix(0.346626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346626,0.000000,0.000000,0.250000,0,0);}
.md5_c00419{transform:matrix(0.346705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346705,0.000000,0.000000,0.250000,0,0);}
.mb7_c00419{transform:matrix(0.347760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347760,0.000000,0.000000,0.250000,0,0);}
.m2e_c00419{transform:matrix(0.347960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347960,0.000000,0.000000,0.250000,0,0);}
.mae_c00419{transform:matrix(0.348403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348403,0.000000,0.000000,0.250000,0,0);}
.mcc_c00419{transform:matrix(0.349202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349202,0.000000,0.000000,0.250000,0,0);}
.m9d_c00419{transform:matrix(0.349404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349404,0.000000,0.000000,0.250000,0,0);}
.m5a_c00419{transform:matrix(0.349414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349414,0.000000,0.000000,0.250000,0,0);}
.m13_c00419{transform:matrix(0.350577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350577,0.000000,0.000000,0.250000,0,0);}
.mee_c00419{transform:matrix(0.350981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350981,0.000000,0.000000,0.250000,0,0);}
.m11a_c00419{transform:matrix(0.351587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351587,0.000000,0.000000,0.250000,0,0);}
.m38_c00419{transform:matrix(0.352452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352452,0.000000,0.000000,0.250000,0,0);}
.m10c_c00419{transform:matrix(0.353461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353461,0.000000,0.000000,0.250000,0,0);}
.mfa_c00419{transform:matrix(0.353535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353535,0.000000,0.000000,0.250000,0,0);}
.m4d_c00419{transform:matrix(0.354414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354414,0.000000,0.000000,0.250000,0,0);}
.mf8_c00419{transform:matrix(0.354577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354577,0.000000,0.000000,0.250000,0,0);}
.mcd_c00419{transform:matrix(0.355966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355966,0.000000,0.000000,0.250000,0,0);}
.m24_c00419{transform:matrix(0.356453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356453,0.000000,0.000000,0.250000,0,0);}
.m11c_c00419{transform:matrix(0.356465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356465,0.000000,0.000000,0.250000,0,0);}
.m60_c00419{transform:matrix(0.357172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357172,0.000000,0.000000,0.250000,0,0);}
.mfe_c00419{transform:matrix(0.358982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358982,0.000000,0.000000,0.250000,0,0);}
.mfb_c00419{transform:matrix(0.360403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360403,0.000000,0.000000,0.250000,0,0);}
.m23_c00419{transform:matrix(0.362054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362054,0.000000,0.000000,0.250000,0,0);}
.ma1_c00419{transform:matrix(0.362807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362807,0.000000,0.000000,0.250000,0,0);}
.m58_c00419{transform:matrix(0.363705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363705,0.000000,0.000000,0.250000,0,0);}
.m90_c00419{transform:matrix(0.364231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364231,0.000000,0.000000,0.250000,0,0);}
.m28_c00419{transform:matrix(0.364256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364256,0.000000,0.000000,0.250000,0,0);}
.mac_c00419{transform:matrix(0.365186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365186,0.000000,0.000000,0.250000,0,0);}
.mef_c00419{transform:matrix(0.365442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365442,0.000000,0.000000,0.250000,0,0);}
.m3c_c00419{transform:matrix(0.365980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365980,0.000000,0.000000,0.250000,0,0);}
.m97_c00419{transform:matrix(0.372510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372510,0.000000,0.000000,0.250000,0,0);}
.mcf_c00419{transform:matrix(0.372757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372757,0.000000,0.000000,0.250000,0,0);}
.m102_c00419{transform:matrix(0.374728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374728,0.000000,0.000000,0.250000,0,0);}
.m11_c00419{transform:matrix(0.374770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374770,0.000000,0.000000,0.250000,0,0);}
.m41_c00419{transform:matrix(0.374866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374866,0.000000,0.000000,0.250000,0,0);}
.meb_c00419{transform:matrix(0.376614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376614,0.000000,0.000000,0.250000,0,0);}
.m8d_c00419{transform:matrix(0.377554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377554,0.000000,0.000000,0.250000,0,0);}
.m64_c00419{transform:matrix(0.377763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377763,0.000000,0.000000,0.250000,0,0);}
.m5b_c00419{transform:matrix(0.377774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377774,0.000000,0.000000,0.250000,0,0);}
.m7e_c00419{transform:matrix(0.378360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378360,0.000000,0.000000,0.250000,0,0);}
.m95_c00419{transform:matrix(0.384007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384007,0.000000,0.000000,0.250000,0,0);}
.m54_c00419{transform:matrix(0.387940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387940,0.000000,0.000000,0.250000,0,0);}
.me_c00419{transform:matrix(0.389007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389007,0.000000,0.000000,0.250000,0,0);}
.m10e_c00419{transform:matrix(0.390802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390802,0.000000,0.000000,0.250000,0,0);}
.m47_c00419{transform:matrix(0.392195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392195,0.000000,0.000000,0.250000,0,0);}
.m117_c00419{transform:matrix(0.392594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392594,0.000000,0.000000,0.250000,0,0);}
.m86_c00419{transform:matrix(0.393208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393208,0.000000,0.000000,0.250000,0,0);}
.mec_c00419{transform:matrix(0.397005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397005,0.000000,0.000000,0.250000,0,0);}
.m5_c00419{transform:matrix(0.397425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397425,0.000000,0.000000,0.250000,0,0);}
.mfd_c00419{transform:matrix(0.399539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399539,0.000000,0.000000,0.250000,0,0);}
.m27_c00419{transform:matrix(0.400334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400334,0.000000,0.000000,0.250000,0,0);}
.m106_c00419{transform:matrix(0.401781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401781,0.000000,0.000000,0.250000,0,0);}
.m110_c00419{transform:matrix(0.404218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404218,0.000000,0.000000,0.250000,0,0);}
.m9a_c00419{transform:matrix(0.407622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407622,0.000000,0.000000,0.250000,0,0);}
.mb9_c00419{transform:matrix(0.408507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408507,0.000000,0.000000,0.250000,0,0);}
.m7_c00419{transform:matrix(0.416214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416214,0.000000,0.000000,0.250000,0,0);}
.m12_c00419{transform:matrix(0.422532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422532,0.000000,0.000000,0.250000,0,0);}
.m3f_c00419{transform:matrix(0.424133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424133,0.000000,0.000000,0.250000,0,0);}
.mdb_c00419{transform:matrix(0.443527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443527,0.000000,0.000000,0.250000,0,0);}
.me6_c00419{transform:matrix(0.454432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454432,0.000000,0.000000,0.250000,0,0);}
.m21_c00419{transform:matrix(0.456167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456167,0.000000,0.000000,0.250000,0,0);}
.mb4_c00419{transform:matrix(0.475006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475006,0.000000,0.000000,0.250000,0,0);}
.m118_c00419{transform:matrix(0.522776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522776,0.000000,0.000000,0.250000,0,0);}
.m89_c00419{transform:matrix(0.549992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549992,0.000000,0.000000,0.250000,0,0);}
.m7f_c00419{transform:matrix(0.624986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.624986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.624986,0.000000,0.000000,0.250000,0,0);}
.m44_c00419{transform:matrix(0.824138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.824138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.824138,0.000000,0.000000,0.250000,0,0);}
.m8a_c00419{transform:matrix(1.299971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.299971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.299971,0.000000,0.000000,0.250000,0,0);}
.v2_c00419{vertical-align:-17.075520px;}
.v6_c00419{vertical-align:-5.702400px;}
.v5_c00419{vertical-align:-4.296600px;}
.v0_c00419{vertical-align:0.000000px;}
.v1_c00419{vertical-align:1.405800px;}
.v4_c00419{vertical-align:12.830400px;}
.v3_c00419{vertical-align:24.255000px;}
.ls34_c00419{letter-spacing:-3.769927px;}
.lsd_c00419{letter-spacing:-2.709630px;}
.ls41_c00419{letter-spacing:-2.480940px;}
.ls14_c00419{letter-spacing:-2.453227px;}
.ls1c_c00419{letter-spacing:-2.439367px;}
.ls38_c00419{letter-spacing:-2.328480px;}
.ls2c_c00419{letter-spacing:-2.134440px;}
.ls31_c00419{letter-spacing:-1.884967px;}
.ls3f_c00419{letter-spacing:-1.850434px;}
.ls30_c00419{letter-spacing:-1.774080px;}
.ls36_c00419{letter-spacing:-1.538467px;}
.ls33_c00419{letter-spacing:-1.441440px;}
.ls17_c00419{letter-spacing:-1.345770px;}
.ls2b_c00419{letter-spacing:-1.269576px;}
.ls16_c00419{letter-spacing:-0.644848px;}
.ls3d_c00419{letter-spacing:-0.427562px;}
.ls20_c00419{letter-spacing:-0.343452px;}
.ls44_c00419{letter-spacing:-0.238313px;}
.ls3e_c00419{letter-spacing:-0.112148px;}
.ls3a_c00419{letter-spacing:-0.077101px;}
.lsb_c00419{letter-spacing:0.000000px;}
.ls8_c00419{letter-spacing:0.105138px;}
.ls1f_c00419{letter-spacing:0.458509px;}
.ls12_c00419{letter-spacing:0.671972px;}
.ls19_c00419{letter-spacing:0.706464px;}
.ls10_c00419{letter-spacing:0.707931px;}
.ls2_c00419{letter-spacing:0.764005px;}
.ls1e_c00419{letter-spacing:0.821700px;}
.ls23_c00419{letter-spacing:0.881100px;}
.ls11_c00419{letter-spacing:1.102603px;}
.ls24_c00419{letter-spacing:1.275678px;}
.ls1d_c00419{letter-spacing:1.673100px;}
.ls9_c00419{letter-spacing:1.997628px;}
.ls22_c00419{letter-spacing:2.019600px;}
.ls43_c00419{letter-spacing:2.079000px;}
.ls18_c00419{letter-spacing:2.207700px;}
.ls3_c00419{letter-spacing:2.285006px;}
.ls29_c00419{letter-spacing:2.286900px;}
.ls39_c00419{letter-spacing:2.306700px;}
.ls13_c00419{letter-spacing:2.366100px;}
.ls21_c00419{letter-spacing:2.376000px;}
.ls2f_c00419{letter-spacing:2.455200px;}
.ls3b_c00419{letter-spacing:2.504700px;}
.ls26_c00419{letter-spacing:2.524500px;}
.ls1b_c00419{letter-spacing:2.574000px;}
.ls25_c00419{letter-spacing:2.692810px;}
.ls2d_c00419{letter-spacing:3.049200px;}
.lsa_c00419{letter-spacing:3.070038px;}
.ls0_c00419{letter-spacing:3.091066px;}
.ls27_c00419{letter-spacing:3.118500px;}
.ls37_c00419{letter-spacing:3.177900px;}
.lse_c00419{letter-spacing:3.504610px;}
.ls42_c00419{letter-spacing:3.544200px;}
.ls28_c00419{letter-spacing:3.573900px;}
.ls1a_c00419{letter-spacing:3.999610px;}
.ls32_c00419{letter-spacing:7.128198px;}
.ls2e_c00419{letter-spacing:8.553798px;}
.ls6_c00419{letter-spacing:9.497664px;}
.ls4_c00419{letter-spacing:13.231064px;}
.ls1_c00419{letter-spacing:14.438864px;}
.ls5_c00419{letter-spacing:15.318468px;}
.ls7_c00419{letter-spacing:16.871976px;}
.lsc_c00419{letter-spacing:44.193798px;}
.lsf_c00419{letter-spacing:47.044800px;}
.ls40_c00419{letter-spacing:48.470598px;}
.ls15_c00419{letter-spacing:49.896198px;}
.ls35_c00419{letter-spacing:51.321798px;}
.ls2a_c00419{letter-spacing:52.747398px;}
.ls3c_c00419{letter-spacing:58.449798px;}
.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;}
}
.ws1_c00419{word-spacing:-20.614115px;}
.ws6_c00419{word-spacing:-19.808055px;}
.wsa_c00419{word-spacing:-19.520677px;}
.ws3_c00419{word-spacing:-17.523050px;}
.ws5_c00419{word-spacing:-17.424050px;}
.wsb_c00419{word-spacing:-14.972023px;}
.ws2_c00419{word-spacing:-14.258119px;}
.ws7_c00419{word-spacing:-12.622500px;}
.wse_c00419{word-spacing:0.000000px;}
.wsc_c00419{word-spacing:0.614487px;}
.ws4_c00419{word-spacing:5.256993px;}
.wsd_c00419{word-spacing:8.060673px;}
.ws0_c00419{word-spacing:9.883065px;}
.ws9_c00419{word-spacing:14.115024px;}
.ws8_c00419{word-spacing:25.901370px;}
._1a_c00419{margin-left:-28.331589px;}
._1b_c00419{margin-left:-23.746586px;}
._12_c00419{margin-left:-15.070215px;}
._d_c00419{margin-left:-10.501920px;}
._f_c00419{margin-left:-9.408283px;}
._a_c00419{margin-left:-7.429422px;}
._17_c00419{margin-left:-6.242544px;}
._10_c00419{margin-left:-5.157949px;}
._15_c00419{margin-left:-2.780581px;}
._11_c00419{width:2.279093px;}
._4_c00419{width:3.995387px;}
._1c_c00419{width:5.568734px;}
._2_c00419{width:7.030147px;}
._5_c00419{width:8.110595px;}
._9_c00419{width:10.022661px;}
._7_c00419{width:11.705463px;}
._1f_c00419{width:12.826341px;}
._0_c00419{width:19.836146px;}
._3_c00419{width:22.079123px;}
._1_c00419{width:23.761331px;}
._b_c00419{width:26.004077px;}
._1d_c00419{width:27.315903px;}
._8_c00419{width:30.174590px;}
._18_c00419{width:31.378955px;}
._c_c00419{width:34.625707px;}
._6_c00419{width:36.649651px;}
._1e_c00419{width:38.172186px;}
._e_c00419{width:39.495893px;}
._13_c00419{width:41.844819px;}
._19_c00419{width:43.969750px;}
._14_c00419{width:45.393293px;}
._16_c00419{width:47.756285px;}
._20_c00419{width:56.539892px;}
.fc0_c00419{color:transparent;}
.fs26_c00419{font-size:7.128198px;}
.fs20_c00419{font-size:8.553798px;}
.fsd_c00419{font-size:15.444198px;}
.fse_c00419{font-size:16.434000px;}
.fs12_c00419{font-size:17.622000px;}
.fs34_c00419{font-size:22.176000px;}
.fsc_c00419{font-size:28.314000px;}
.fs10_c00419{font-size:28.512000px;}
.fs17_c00419{font-size:30.294000px;}
.fs18_c00419{font-size:30.888000px;}
.fsb_c00419{font-size:33.462000px;}
.fs36_c00419{font-size:39.006198px;}
.fs11_c00419{font-size:40.392000px;}
.fs27_c00419{font-size:41.184000px;}
.fs37_c00419{font-size:41.580000px;}
.fs2a_c00419{font-size:43.956198px;}
.fs7_c00419{font-size:44.154000px;}
.fs0_c00419{font-size:44.193798px;}
.fs1b_c00419{font-size:45.738000px;}
.fs30_c00419{font-size:46.134000px;}
.fs4_c00419{font-size:47.044800px;}
.fs5_c00419{font-size:47.322000px;}
.fsf_c00419{font-size:47.520000px;}
.fs33_c00419{font-size:48.470598px;}
.fs22_c00419{font-size:49.104000px;}
.fs6_c00419{font-size:49.896198px;}
.fs31_c00419{font-size:50.094000px;}
.fs16_c00419{font-size:50.490000px;}
.fs23_c00419{font-size:50.688000px;}
.fs29_c00419{font-size:51.321798px;}
.fs9_c00419{font-size:51.480000px;}
.fs1c_c00419{font-size:52.747398px;}
.fs15_c00419{font-size:53.856198px;}
.fs1d_c00419{font-size:55.440000px;}
.fs24_c00419{font-size:55.836198px;}
.fs32_c00419{font-size:58.449798px;}
.fs21_c00419{font-size:60.588000px;}
.fs1f_c00419{font-size:60.984000px;}
.fs19_c00419{font-size:62.370000px;}
.fs2c_c00419{font-size:63.558000px;}
.fs1e_c00419{font-size:64.548000px;}
.fs1_c00419{font-size:65.340000px;}
.fs13_c00419{font-size:66.330000px;}
.fs2f_c00419{font-size:66.528000px;}
.fsa_c00419{font-size:69.696198px;}
.fs3_c00419{font-size:70.092198px;}
.fs35_c00419{font-size:70.884000px;}
.fs1a_c00419{font-size:71.478000px;}
.fs2b_c00419{font-size:71.676198px;}
.fs2d_c00419{font-size:72.864000px;}
.fs14_c00419{font-size:73.656198px;}
.fs2_c00419{font-size:77.418000px;}
.fs2e_c00419{font-size:79.200000px;}
.fs8_c00419{font-size:79.992198px;}
.fs25_c00419{font-size:91.872198px;}
.fs28_c00419{font-size:107.712198px;}
.y0_c00419{bottom:0.000000px;}
.y1_c00419{bottom:76.500000px;}
.y28_c00419{bottom:126.433935px;}
.y27_c00419{bottom:140.689935px;}
.y25_c00419{bottom:171.340335px;}
.y26_c00419{bottom:176.686335px;}
.y24_c00419{bottom:208.405935px;}
.y23_c00419{bottom:241.194735px;}
.y22_c00419{bottom:275.052735px;}
.y21_c00419{bottom:308.197935px;}
.y20_c00419{bottom:329.576985px;}
.y1f_c00419{bottom:340.625385px;}
.y1e_c00419{bottom:372.706335px;}
.y1d_c00419{bottom:404.782335px;}
.y1c_c00419{bottom:436.858335px;}
.y1b_c00419{bottom:468.929385px;}
.y1a_c00419{bottom:492.095385px;}
.y19_c00419{bottom:501.005385px;}
.y18_c00419{bottom:528.448185px;}
.y16_c00419{bottom:529.873785px;}
.y15_c00419{bottom:533.799135px;}
.y17_c00419{bottom:534.150585px;}
.y14_c00419{bottom:566.587935px;}
.y11_c00419{bottom:663.172335px;}
.y12_c00419{bottom:663.523785px;}
.y13_c00419{bottom:663.880185px;}
.ye_c00419{bottom:695.961135px;}
.y10_c00419{bottom:697.030335px;}
.yf_c00419{bottom:697.386735px;}
.yd_c00419{bottom:729.101385px;}
.yc_c00419{bottom:761.533785px;}
.ya_c00419{bottom:762.251535px;}
.yb_c00419{bottom:764.033535px;}
.y7_c00419{bottom:793.614735px;}
.y8_c00419{bottom:793.971135px;}
.y9_c00419{bottom:796.104585px;}
.y5_c00419{bottom:826.757955px;}
.y6_c00419{bottom:826.759935px;}
.y4_c00419{bottom:859.543785px;}
.y3_c00419{bottom:891.981135px;}
.y2_c00419{bottom:1076.947785px;}
.h29_c00419{height:4.747380px;}
.h24_c00419{height:5.696829px;}
.h10_c00419{height:16.107816px;}
.h11_c00419{height:16.121048px;}
.h12_c00419{height:16.129072px;}
.h15_c00419{height:18.379195px;}
.h37_c00419{height:23.128875px;}
.h2_c00419{height:29.433069px;}
.hf_c00419{height:29.530617px;}
.h6_c00419{height:31.331837px;}
.h36_c00419{height:32.281418px;}
.he_c00419{height:32.841123px;}
.h8_c00419{height:33.230868px;}
.h2c_c00419{height:34.180317px;}
.h21_c00419{height:35.129767px;}
.h35_c00419{height:38.927565px;}
.h14_c00419{height:42.127594px;}
.h2a_c00419{height:42.953625px;}
.h2d_c00419{height:43.140604px;}
.h39_c00419{height:43.366641px;}
.h1f_c00419{height:44.889346px;}
.h9_c00419{height:46.051242px;}
.h33_c00419{height:48.116320px;}
.h34_c00419{height:49.164521px;}
.h7_c00419{height:49.355367px;}
.h19_c00419{height:49.553174px;}
.h13_c00419{height:49.561875px;}
.h1a_c00419{height:50.467932px;}
.hb_c00419{height:50.524805px;}
.h25_c00419{height:51.213938px;}
.h26_c00419{height:52.866000px;}
.h18_c00419{height:56.170332px;}
.h22_c00419{height:57.822188px;}
.h27_c00419{height:58.235410px;}
.h23_c00419{height:63.604406px;}
.h1b_c00419{height:64.126207px;}
.h3_c00419{height:64.127637px;}
.h1d_c00419{height:65.049961px;}
.h32_c00419{height:65.293594px;}
.h2f_c00419{height:66.289008px;}
.hd_c00419{height:68.368975px;}
.h1c_c00419{height:68.403007px;}
.h5_c00419{height:68.791659px;}
.h16_c00419{height:69.180117px;}
.h1e_c00419{height:70.151748px;}
.h2e_c00419{height:70.346269px;}
.h30_c00419{height:71.512031px;}
.h38_c00419{height:73.929797px;}
.h4_c00419{height:75.943731px;}
.h20_c00419{height:75.981533px;}
.h17_c00419{height:76.821113px;}
.hc_c00419{height:76.988287px;}
.ha_c00419{height:78.507968px;}
.h31_c00419{height:82.448438px;}
.h28_c00419{height:90.167538px;}
.h2b_c00419{height:105.713632px;}
.h1_c00419{height:1110.000000px;}
.h0_c00419{height:1263.000000px;}
.w1_c00419{width:775.500000px;}
.w0_c00419{width:892.500000px;}
.x0_c00419{left:0.000000px;}
.x1_c00419{left:58.500000px;}
.x7_c00419{left:70.118385px;}
.x78_c00419{left:71.573685px;}
.x93_c00419{left:73.865535px;}
.x23_c00419{left:81.379635px;}
.x90_c00419{left:91.244985px;}
.x97_c00419{left:92.962635px;}
.x70_c00419{left:101.877585px;}
.x8_c00419{left:103.491285px;}
.x88_c00419{left:104.684235px;}
.x39_c00419{left:112.935885px;}
.x52_c00419{left:114.198135px;}
.x30_c00419{left:116.272185px;}
.x59_c00419{left:123.217035px;}
.x24_c00419{left:124.330785px;}
.x9_c00419{left:125.642535px;}
.x5a_c00419{left:135.260385px;}
.x82_c00419{left:145.457385px;}
.xa_c00419{left:147.125535px;}
.x48_c00419{left:157.317585px;}
.x31_c00419{left:159.282735px;}
.x5b_c00419{left:160.579635px;}
.x89_c00419{left:166.742385px;}
.x41_c00419{left:167.771985px;}
.xb_c00419{left:169.806435px;}
.x32_c00419{left:178.805535px;}
.x1a_c00419{left:180.453885px;}
.x91_c00419{left:188.873835px;}
.x42_c00419{left:190.225185px;}
.x5c_c00419{left:192.517035px;}
.x77_c00419{left:195.506835px;}
.xc_c00419{left:201.352785px;}
.x53_c00419{left:211.218135px;}
.xd_c00419{left:213.831735px;}
.x71_c00419{left:223.810935px;}
.xe_c00419{left:225.592935px;}
.x25_c00419{left:234.879135px;}
.x79_c00419{left:236.230485px;}
.x7c_c00419{left:244.858335px;}
.xf_c00419{left:246.259185px;}
.x8c_c00419{left:255.471135px;}
.x1b_c00419{left:257.634285px;}
.x61_c00419{left:264.796935px;}
.x86_c00419{left:267.440235px;}
.x10_c00419{left:268.717335px;}
.x83_c00419{left:270.331035px;}
.x49_c00419{left:278.840085px;}
.x3a_c00419{left:281.072535px;}
.x62_c00419{left:283.681185px;}
.x63_c00419{left:287.601585px;}
.x1c_c00419{left:289.878585px;}
.x3b_c00419{left:300.224085px;}
.x11_c00419{left:301.347735px;}
.x87_c00419{left:303.001035px;}
.x7d_c00419{left:310.708185px;}
.x54_c00419{left:312.163485px;}
.x64_c00419{left:323.048535px;}
.x12_c00419{left:334.091985px;}
.x65_c00419{left:337.655985px;}
.x1d_c00419{left:345.521535px;}
.x66_c00419{left:347.377785px;}
.x43_c00419{left:356.258085px;}
.x26_c00419{left:357.475785px;}
.x44_c00419{left:363.400935px;}
.x13_c00419{left:367.578735px;}
.x1e_c00419{left:378.300435px;}
.x84_c00419{left:388.769685px;}
.x27_c00419{left:390.378435px;}
.x4a_c00419{left:391.987185px;}
.x72_c00419{left:400.025985px;}
.x45_c00419{left:401.253585px;}
.x8d_c00419{left:402.604935px;}
.x5d_c00419{left:409.797285px;}
.x1f_c00419{left:411.118935px;}
.x8e_c00419{left:421.053585px;}
.x28_c00419{left:422.098035px;}
.x4b_c00419{left:430.453635px;}
.x20_c00419{left:433.834485px;}
.x67_c00419{left:443.848335px;}
.x14_c00419{left:444.957135px;}
.x5e_c00419{left:448.615185px;}
.x4c_c00419{left:453.634485px;}
.x7e_c00419{left:454.936335px;}
.x94_c00419{left:455.985735px;}
.x73_c00419{left:465.935235px;}
.x29_c00419{left:466.949985px;}
.x4d_c00419{left:476.518335px;}
.x7a_c00419{left:477.671685px;}
.x15_c00419{left:488.066685px;}
.x55_c00419{left:490.016985px;}
.x46_c00419{left:499.451685px;}
.x2a_c00419{left:510.123885px;}
.x3c_c00419{left:520.840635px;}
.x16_c00419{left:521.934585px;}
.x56_c00419{left:523.969035px;}
.x92_c00419{left:530.305035px;}
.x47_c00419{left:531.864285px;}
.x33_c00419{left:542.704785px;}
.x3d_c00419{left:554.149185px;}
.x21_c00419{left:564.172935px;}
.x5f_c00419{left:565.598535px;}
.x95_c00419{left:569.281335px;}
.x34_c00419{left:576.340035px;}
.x8a_c00419{left:577.359735px;}
.x74_c00419{left:586.284585px;}
.x3e_c00419{left:587.868585px;}
.x68_c00419{left:593.189835px;}
.x7f_c00419{left:597.337935px;}
.x2b_c00419{left:598.902135px;}
.x17_c00419{left:609.579285px;}
.x2c_c00419{left:614.088735px;}
.x57_c00419{left:619.662435px;}
.x60_c00419{left:622.617585px;}
.x4e_c00419{left:626.141985px;}
.x80_c00419{left:630.428685px;}
.x2d_c00419{left:631.690935px;}
.x6c_c00419{left:640.294035px;}
.x4f_c00419{left:643.070985px;}
.x85_c00419{left:646.570635px;}
.x6d_c00419{left:651.193935px;}
.x18_c00419{left:652.837335px;}
.x2e_c00419{left:654.119385px;}
.x75_c00419{left:655.203435px;}
.x50_c00419{left:664.415385px;}
.x2_c00419{left:665.741985px;}
.x2f_c00419{left:668.018985px;}
.x8f_c00419{left:673.221435px;}
.x35_c00419{left:675.493485px;}
.x3_c00419{left:677.859585px;}
.x4_c00419{left:680.710785px;}
.x6e_c00419{left:681.779985px;}
.x76_c00419{left:684.452985px;}
.x36_c00419{left:685.952835px;}
.x5_c00419{left:688.333785px;}
.x69_c00419{left:691.100835px;}
.x40_c00419{left:692.273985px;}
.x96_c00419{left:696.565635px;}
.x6_c00419{left:697.659585px;}
.x22_c00419{left:699.030735px;}
.x37_c00419{left:700.985985px;}
.x3f_c00419{left:702.931335px;}
.x58_c00419{left:707.475435px;}
.x51_c00419{left:708.821835px;}
.x6f_c00419{left:712.836285px;}
.x6a_c00419{left:714.623235px;}
.x7b_c00419{left:718.103085px;}
.x19_c00419{left:719.197035px;}
.x6b_c00419{left:720.934485px;}
.x38_c00419{left:724.820235px;}
.x81_c00419{left:729.799935px;}
.x8b_c00419{left:740.373135px;}
@media print{
.v2_c00419{vertical-align:-15.178240pt;}
.v6_c00419{vertical-align:-5.068800pt;}
.v5_c00419{vertical-align:-3.819200pt;}
.v0_c00419{vertical-align:0.000000pt;}
.v1_c00419{vertical-align:1.249600pt;}
.v4_c00419{vertical-align:11.404800pt;}
.v3_c00419{vertical-align:21.560000pt;}
.ls34_c00419{letter-spacing:-3.351046pt;}
.lsd_c00419{letter-spacing:-2.408560pt;}
.ls41_c00419{letter-spacing:-2.205280pt;}
.ls14_c00419{letter-spacing:-2.180646pt;}
.ls1c_c00419{letter-spacing:-2.168326pt;}
.ls38_c00419{letter-spacing:-2.069760pt;}
.ls2c_c00419{letter-spacing:-1.897280pt;}
.ls31_c00419{letter-spacing:-1.675526pt;}
.ls3f_c00419{letter-spacing:-1.644830pt;}
.ls30_c00419{letter-spacing:-1.576960pt;}
.ls36_c00419{letter-spacing:-1.367526pt;}
.ls33_c00419{letter-spacing:-1.281280pt;}
.ls17_c00419{letter-spacing:-1.196240pt;}
.ls2b_c00419{letter-spacing:-1.128512pt;}
.ls16_c00419{letter-spacing:-0.573198pt;}
.ls3d_c00419{letter-spacing:-0.380055pt;}
.ls20_c00419{letter-spacing:-0.305290pt;}
.ls44_c00419{letter-spacing:-0.211834pt;}
.ls3e_c00419{letter-spacing:-0.099687pt;}
.ls3a_c00419{letter-spacing:-0.068535pt;}
.lsb_c00419{letter-spacing:0.000000pt;}
.ls8_c00419{letter-spacing:0.093456pt;}
.ls1f_c00419{letter-spacing:0.407563pt;}
.ls12_c00419{letter-spacing:0.597309pt;}
.ls19_c00419{letter-spacing:0.627968pt;}
.ls10_c00419{letter-spacing:0.629272pt;}
.ls2_c00419{letter-spacing:0.679116pt;}
.ls1e_c00419{letter-spacing:0.730400pt;}
.ls23_c00419{letter-spacing:0.783200pt;}
.ls11_c00419{letter-spacing:0.980091pt;}
.ls24_c00419{letter-spacing:1.133936pt;}
.ls1d_c00419{letter-spacing:1.487200pt;}
.ls9_c00419{letter-spacing:1.775669pt;}
.ls22_c00419{letter-spacing:1.795200pt;}
.ls43_c00419{letter-spacing:1.848000pt;}
.ls18_c00419{letter-spacing:1.962400pt;}
.ls3_c00419{letter-spacing:2.031116pt;}
.ls29_c00419{letter-spacing:2.032800pt;}
.ls39_c00419{letter-spacing:2.050400pt;}
.ls13_c00419{letter-spacing:2.103200pt;}
.ls21_c00419{letter-spacing:2.112000pt;}
.ls2f_c00419{letter-spacing:2.182400pt;}
.ls3b_c00419{letter-spacing:2.226400pt;}
.ls26_c00419{letter-spacing:2.244000pt;}
.ls1b_c00419{letter-spacing:2.288000pt;}
.ls25_c00419{letter-spacing:2.393609pt;}
.ls2d_c00419{letter-spacing:2.710400pt;}
.lsa_c00419{letter-spacing:2.728923pt;}
.ls0_c00419{letter-spacing:2.747614pt;}
.ls27_c00419{letter-spacing:2.772000pt;}
.ls37_c00419{letter-spacing:2.824800pt;}
.lse_c00419{letter-spacing:3.115209pt;}
.ls42_c00419{letter-spacing:3.150400pt;}
.ls28_c00419{letter-spacing:3.176800pt;}
.ls1a_c00419{letter-spacing:3.555209pt;}
.ls32_c00419{letter-spacing:6.336176pt;}
.ls2e_c00419{letter-spacing:7.603376pt;}
.ls6_c00419{letter-spacing:8.442368pt;}
.ls4_c00419{letter-spacing:11.760946pt;}
.ls1_c00419{letter-spacing:12.834546pt;}
.ls5_c00419{letter-spacing:13.616416pt;}
.ls7_c00419{letter-spacing:14.997312pt;}
.lsc_c00419{letter-spacing:39.283376pt;}
.lsf_c00419{letter-spacing:41.817600pt;}
.ls40_c00419{letter-spacing:43.084976pt;}
.ls15_c00419{letter-spacing:44.352176pt;}
.ls35_c00419{letter-spacing:45.619376pt;}
.ls2a_c00419{letter-spacing:46.886576pt;}
.ls3c_c00419{letter-spacing:51.955376pt;}
.ws1_c00419{word-spacing:-18.323658pt;}
.ws6_c00419{word-spacing:-17.607160pt;}
.wsa_c00419{word-spacing:-17.351713pt;}
.ws3_c00419{word-spacing:-15.576044pt;}
.ws5_c00419{word-spacing:-15.488044pt;}
.wsb_c00419{word-spacing:-13.308465pt;}
.ws2_c00419{word-spacing:-12.673883pt;}
.ws7_c00419{word-spacing:-11.220000pt;}
.wse_c00419{word-spacing:0.000000pt;}
.wsc_c00419{word-spacing:0.546211pt;}
.ws4_c00419{word-spacing:4.672883pt;}
.wsd_c00419{word-spacing:7.165043pt;}
.ws0_c00419{word-spacing:8.784947pt;}
.ws9_c00419{word-spacing:12.546688pt;}
.ws8_c00419{word-spacing:23.023440pt;}
._1a_c00419{margin-left:-25.183635pt;}
._1b_c00419{margin-left:-21.108076pt;}
._12_c00419{margin-left:-13.395746pt;}
._d_c00419{margin-left:-9.335040pt;}
._f_c00419{margin-left:-8.362919pt;}
._a_c00419{margin-left:-6.603931pt;}
._17_c00419{margin-left:-5.548928pt;}
._10_c00419{margin-left:-4.584844pt;}
._15_c00419{margin-left:-2.471628pt;}
._11_c00419{width:2.025860pt;}
._4_c00419{width:3.551455pt;}
._1c_c00419{width:4.949985pt;}
._2_c00419{width:6.249020pt;}
._5_c00419{width:7.209418pt;}
._9_c00419{width:8.909032pt;}
._7_c00419{width:10.404856pt;}
._1f_c00419{width:11.401192pt;}
._0_c00419{width:17.632130pt;}
._3_c00419{width:19.625887pt;}
._1_c00419{width:21.121183pt;}
._b_c00419{width:23.114735pt;}
._1d_c00419{width:24.280803pt;}
._8_c00419{width:26.821858pt;}
._18_c00419{width:27.892404pt;}
._c_c00419{width:30.778406pt;}
._6_c00419{width:32.577468pt;}
._1e_c00419{width:33.930832pt;}
._e_c00419{width:35.107460pt;}
._13_c00419{width:37.195395pt;}
._19_c00419{width:39.084222pt;}
._14_c00419{width:40.349594pt;}
._16_c00419{width:42.450032pt;}
._20_c00419{width:50.257682pt;}
.fs26_c00419{font-size:6.336176pt;}
.fs20_c00419{font-size:7.603376pt;}
.fsd_c00419{font-size:13.728176pt;}
.fse_c00419{font-size:14.608000pt;}
.fs12_c00419{font-size:15.664000pt;}
.fs34_c00419{font-size:19.712000pt;}
.fsc_c00419{font-size:25.168000pt;}
.fs10_c00419{font-size:25.344000pt;}
.fs17_c00419{font-size:26.928000pt;}
.fs18_c00419{font-size:27.456000pt;}
.fsb_c00419{font-size:29.744000pt;}
.fs36_c00419{font-size:34.672176pt;}
.fs11_c00419{font-size:35.904000pt;}
.fs27_c00419{font-size:36.608000pt;}
.fs37_c00419{font-size:36.960000pt;}
.fs2a_c00419{font-size:39.072176pt;}
.fs7_c00419{font-size:39.248000pt;}
.fs0_c00419{font-size:39.283376pt;}
.fs1b_c00419{font-size:40.656000pt;}
.fs30_c00419{font-size:41.008000pt;}
.fs4_c00419{font-size:41.817600pt;}
.fs5_c00419{font-size:42.064000pt;}
.fsf_c00419{font-size:42.240000pt;}
.fs33_c00419{font-size:43.084976pt;}
.fs22_c00419{font-size:43.648000pt;}
.fs6_c00419{font-size:44.352176pt;}
.fs31_c00419{font-size:44.528000pt;}
.fs16_c00419{font-size:44.880000pt;}
.fs23_c00419{font-size:45.056000pt;}
.fs29_c00419{font-size:45.619376pt;}
.fs9_c00419{font-size:45.760000pt;}
.fs1c_c00419{font-size:46.886576pt;}
.fs15_c00419{font-size:47.872176pt;}
.fs1d_c00419{font-size:49.280000pt;}
.fs24_c00419{font-size:49.632176pt;}
.fs32_c00419{font-size:51.955376pt;}
.fs21_c00419{font-size:53.856000pt;}
.fs1f_c00419{font-size:54.208000pt;}
.fs19_c00419{font-size:55.440000pt;}
.fs2c_c00419{font-size:56.496000pt;}
.fs1e_c00419{font-size:57.376000pt;}
.fs1_c00419{font-size:58.080000pt;}
.fs13_c00419{font-size:58.960000pt;}
.fs2f_c00419{font-size:59.136000pt;}
.fsa_c00419{font-size:61.952176pt;}
.fs3_c00419{font-size:62.304176pt;}
.fs35_c00419{font-size:63.008000pt;}
.fs1a_c00419{font-size:63.536000pt;}
.fs2b_c00419{font-size:63.712176pt;}
.fs2d_c00419{font-size:64.768000pt;}
.fs14_c00419{font-size:65.472176pt;}
.fs2_c00419{font-size:68.816000pt;}
.fs2e_c00419{font-size:70.400000pt;}
.fs8_c00419{font-size:71.104176pt;}
.fs25_c00419{font-size:81.664176pt;}
.fs28_c00419{font-size:95.744176pt;}
.y0_c00419{bottom:0.000000pt;}
.y1_c00419{bottom:68.000000pt;}
.y28_c00419{bottom:112.385720pt;}
.y27_c00419{bottom:125.057720pt;}
.y25_c00419{bottom:152.302520pt;}
.y26_c00419{bottom:157.054520pt;}
.y24_c00419{bottom:185.249720pt;}
.y23_c00419{bottom:214.395320pt;}
.y22_c00419{bottom:244.491320pt;}
.y21_c00419{bottom:273.953720pt;}
.y20_c00419{bottom:292.957320pt;}
.y1f_c00419{bottom:302.778120pt;}
.y1e_c00419{bottom:331.294520pt;}
.y1d_c00419{bottom:359.806520pt;}
.y1c_c00419{bottom:388.318520pt;}
.y1b_c00419{bottom:416.826120pt;}
.y1a_c00419{bottom:437.418120pt;}
.y19_c00419{bottom:445.338120pt;}
.y18_c00419{bottom:469.731720pt;}
.y16_c00419{bottom:470.998920pt;}
.y15_c00419{bottom:474.488120pt;}
.y17_c00419{bottom:474.800520pt;}
.y14_c00419{bottom:503.633720pt;}
.y11_c00419{bottom:589.486520pt;}
.y12_c00419{bottom:589.798920pt;}
.y13_c00419{bottom:590.115720pt;}
.ye_c00419{bottom:618.632120pt;}
.y10_c00419{bottom:619.582520pt;}
.yf_c00419{bottom:619.899320pt;}
.yd_c00419{bottom:648.090120pt;}
.yc_c00419{bottom:676.918920pt;}
.ya_c00419{bottom:677.556920pt;}
.yb_c00419{bottom:679.140920pt;}
.y7_c00419{bottom:705.435320pt;}
.y8_c00419{bottom:705.752120pt;}
.y9_c00419{bottom:707.648520pt;}
.y5_c00419{bottom:734.895960pt;}
.y6_c00419{bottom:734.897720pt;}
.y4_c00419{bottom:764.038920pt;}
.y3_c00419{bottom:792.872120pt;}
.y2_c00419{bottom:957.286920pt;}
.h29_c00419{height:4.219893pt;}
.h24_c00419{height:5.063848pt;}
.h10_c00419{height:14.318059pt;}
.h11_c00419{height:14.329820pt;}
.h12_c00419{height:14.336953pt;}
.h15_c00419{height:16.337063pt;}
.h37_c00419{height:20.559000pt;}
.h2_c00419{height:26.162728pt;}
.hf_c00419{height:26.249438pt;}
.h6_c00419{height:27.850522pt;}
.h36_c00419{height:28.694594pt;}
.he_c00419{height:29.192109pt;}
.h8_c00419{height:29.538549pt;}
.h2c_c00419{height:30.382504pt;}
.h21_c00419{height:31.226460pt;}
.h35_c00419{height:34.602280pt;}
.h14_c00419{height:37.446750pt;}
.h2a_c00419{height:38.181000pt;}
.h2d_c00419{height:38.347204pt;}
.h39_c00419{height:38.548125pt;}
.h1f_c00419{height:39.901641pt;}
.h9_c00419{height:40.934438pt;}
.h33_c00419{height:42.770063pt;}
.h34_c00419{height:43.701797pt;}
.h7_c00419{height:43.871438pt;}
.h19_c00419{height:44.047266pt;}
.h13_c00419{height:44.055000pt;}
.h1a_c00419{height:44.860384pt;}
.hb_c00419{height:44.910938pt;}
.h25_c00419{height:45.523500pt;}
.h26_c00419{height:46.992000pt;}
.h18_c00419{height:49.929184pt;}
.h22_c00419{height:51.397500pt;}
.h27_c00419{height:51.764809pt;}
.h23_c00419{height:56.537250pt;}
.h1b_c00419{height:57.001073pt;}
.h3_c00419{height:57.002344pt;}
.h1d_c00419{height:57.822188pt;}
.h32_c00419{height:58.038750pt;}
.h2f_c00419{height:58.923563pt;}
.hd_c00419{height:60.772423pt;}
.h1c_c00419{height:60.802673pt;}
.h5_c00419{height:61.148141pt;}
.h16_c00419{height:61.493438pt;}
.h1e_c00419{height:62.357109pt;}
.h2e_c00419{height:62.530016pt;}
.h30_c00419{height:63.566250pt;}
.h38_c00419{height:65.715375pt;}
.h4_c00419{height:67.505539pt;}
.h20_c00419{height:67.539141pt;}
.h17_c00419{height:68.285434pt;}
.hc_c00419{height:68.434033pt;}
.ha_c00419{height:69.784860pt;}
.h31_c00419{height:73.287500pt;}
.h28_c00419{height:80.148923pt;}
.h2b_c00419{height:93.967673pt;}
.h1_c00419{height:986.666667pt;}
.h0_c00419{height:1122.666667pt;}
.w1_c00419{width:689.333333pt;}
.w0_c00419{width:793.333333pt;}
.x0_c00419{left:0.000000pt;}
.x1_c00419{left:52.000000pt;}
.x7_c00419{left:62.327453pt;}
.x78_c00419{left:63.621053pt;}
.x93_c00419{left:65.658253pt;}
.x23_c00419{left:72.337453pt;}
.x90_c00419{left:81.106653pt;}
.x97_c00419{left:82.633453pt;}
.x70_c00419{left:90.557853pt;}
.x8_c00419{left:91.992253pt;}
.x88_c00419{left:93.052653pt;}
.x39_c00419{left:100.387453pt;}
.x52_c00419{left:101.509453pt;}
.x30_c00419{left:103.353053pt;}
.x59_c00419{left:109.526253pt;}
.x24_c00419{left:110.516253pt;}
.x9_c00419{left:111.682253pt;}
.x5a_c00419{left:120.231453pt;}
.x82_c00419{left:129.295453pt;}
.xa_c00419{left:130.778253pt;}
.x48_c00419{left:139.837853pt;}
.x31_c00419{left:141.584653pt;}
.x5b_c00419{left:142.737453pt;}
.x89_c00419{left:148.215453pt;}
.x41_c00419{left:149.130653pt;}
.xb_c00419{left:150.939053pt;}
.x32_c00419{left:158.938253pt;}
.x1a_c00419{left:160.403453pt;}
.x91_c00419{left:167.887853pt;}
.x42_c00419{left:169.089053pt;}
.x5c_c00419{left:171.126253pt;}
.x77_c00419{left:173.783853pt;}
.xc_c00419{left:178.980253pt;}
.x53_c00419{left:187.749453pt;}
.xd_c00419{left:190.072653pt;}
.x71_c00419{left:198.943053pt;}
.xe_c00419{left:200.527053pt;}
.x25_c00419{left:208.781453pt;}
.x79_c00419{left:209.982653pt;}
.x7c_c00419{left:217.651853pt;}
.xf_c00419{left:218.897053pt;}
.x8c_c00419{left:227.085453pt;}
.x1b_c00419{left:229.008253pt;}
.x61_c00419{left:235.375053pt;}
.x86_c00419{left:237.724653pt;}
.x10_c00419{left:238.859853pt;}
.x83_c00419{left:240.294253pt;}
.x49_c00419{left:247.857853pt;}
.x3a_c00419{left:249.842253pt;}
.x62_c00419{left:252.161053pt;}
.x63_c00419{left:255.645853pt;}
.x1c_c00419{left:257.669853pt;}
.x3b_c00419{left:266.865853pt;}
.x11_c00419{left:267.864653pt;}
.x87_c00419{left:269.334253pt;}
.x7d_c00419{left:276.185053pt;}
.x54_c00419{left:277.478653pt;}
.x64_c00419{left:287.154253pt;}
.x12_c00419{left:296.970653pt;}
.x65_c00419{left:300.138653pt;}
.x1d_c00419{left:307.130253pt;}
.x66_c00419{left:308.780253pt;}
.x43_c00419{left:316.673853pt;}
.x26_c00419{left:317.756253pt;}
.x44_c00419{left:323.023053pt;}
.x13_c00419{left:326.736653pt;}
.x1e_c00419{left:336.267053pt;}
.x84_c00419{left:345.573053pt;}
.x27_c00419{left:347.003053pt;}
.x4a_c00419{left:348.433053pt;}
.x72_c00419{left:355.578653pt;}
.x45_c00419{left:356.669853pt;}
.x8d_c00419{left:357.871053pt;}
.x5d_c00419{left:364.264253pt;}
.x1f_c00419{left:365.439053pt;}
.x8e_c00419{left:374.269853pt;}
.x28_c00419{left:375.198253pt;}
.x4b_c00419{left:382.625453pt;}
.x20_c00419{left:385.630653pt;}
.x67_c00419{left:394.531853pt;}
.x14_c00419{left:395.517453pt;}
.x5e_c00419{left:398.769053pt;}
.x4c_c00419{left:403.230653pt;}
.x7e_c00419{left:404.387853pt;}
.x94_c00419{left:405.320653pt;}
.x73_c00419{left:414.164653pt;}
.x29_c00419{left:415.066653pt;}
.x4d_c00419{left:423.571853pt;}
.x7a_c00419{left:424.597053pt;}
.x15_c00419{left:433.837053pt;}
.x55_c00419{left:435.570653pt;}
.x46_c00419{left:443.957053pt;}
.x2a_c00419{left:453.443453pt;}
.x3c_c00419{left:462.969453pt;}
.x16_c00419{left:463.941853pt;}
.x56_c00419{left:465.750253pt;}
.x92_c00419{left:471.382253pt;}
.x47_c00419{left:472.768253pt;}
.x33_c00419{left:482.404253pt;}
.x3d_c00419{left:492.577053pt;}
.x21_c00419{left:501.487053pt;}
.x5f_c00419{left:502.754253pt;}
.x95_c00419{left:506.027853pt;}
.x34_c00419{left:512.302253pt;}
.x8a_c00419{left:513.208653pt;}
.x74_c00419{left:521.141853pt;}
.x3e_c00419{left:522.549853pt;}
.x68_c00419{left:527.279853pt;}
.x7f_c00419{left:530.967053pt;}
.x2b_c00419{left:532.357453pt;}
.x17_c00419{left:541.848253pt;}
.x2c_c00419{left:545.856653pt;}
.x57_c00419{left:550.811053pt;}
.x60_c00419{left:553.437853pt;}
.x4e_c00419{left:556.570653pt;}
.x80_c00419{left:560.381053pt;}
.x2d_c00419{left:561.503053pt;}
.x6c_c00419{left:569.150253pt;}
.x4f_c00419{left:571.618653pt;}
.x85_c00419{left:574.729453pt;}
.x6d_c00419{left:578.839053pt;}
.x18_c00419{left:580.299853pt;}
.x2e_c00419{left:581.439453pt;}
.x75_c00419{left:582.403053pt;}
.x50_c00419{left:590.591453pt;}
.x2_c00419{left:591.770653pt;}
.x2f_c00419{left:593.794653pt;}
.x8f_c00419{left:598.419053pt;}
.x35_c00419{left:600.438653pt;}
.x3_c00419{left:602.541853pt;}
.x4_c00419{left:605.076253pt;}
.x6e_c00419{left:606.026653pt;}
.x76_c00419{left:608.402653pt;}
.x36_c00419{left:609.735853pt;}
.x5_c00419{left:611.852253pt;}
.x69_c00419{left:614.311853pt;}
.x40_c00419{left:615.354653pt;}
.x96_c00419{left:619.169453pt;}
.x6_c00419{left:620.141853pt;}
.x22_c00419{left:621.360653pt;}
.x37_c00419{left:623.098653pt;}
.x3f_c00419{left:624.827853pt;}
.x58_c00419{left:628.867053pt;}
.x51_c00419{left:630.063853pt;}
.x6f_c00419{left:633.632253pt;}
.x6a_c00419{left:635.220653pt;}
.x7b_c00419{left:638.313853pt;}
.x19_c00419{left:639.286253pt;}
.x6b_c00419{left:640.830653pt;}
.x38_c00419{left:644.284653pt;}
.x81_c00419{left:648.711053pt;}
.x8b_c00419{left:658.109453pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_303a5ac8893fda3bda50e851.woff2')format("woff");}.ff1_c00420{font-family:ff1_c00420;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00420;src:url('chunks/assets/font_f89916f554cd35a37a0c88e6.woff2')format("woff");}.ff2_c00420{font-family:ff2_c00420;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00420;src:url('chunks/assets/font_cef662aa48849863c4318258.woff2')format("woff");}.ff3_c00420{font-family:ff3_c00420;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00420;src:url('chunks/assets/font_0bf42d664bd0e91979a571ba.woff2')format("woff");}.ff4_c00420{font-family:ff4_c00420;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00420;src:url('chunks/assets/font_ba0f21a2e4433f6d42e2bd8f.woff2')format("woff");}.ff5_c00420{font-family:ff5_c00420;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00420;src:url('chunks/assets/font_b1a64d47cf9a26205bb7457a.woff2')format("woff");}.ff6_c00420{font-family:ff6_c00420;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00420;src:url('chunks/assets/font_affcdd27c90d8515978c1489.woff2')format("woff");}.ff7_c00420{font-family:ff7_c00420;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mb1_c00420{transform:matrix(0.043751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043751,0.000000,0.000000,0.250000,0,0);}
.m96_c00420{transform:matrix(0.064286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064286,0.000000,0.000000,0.250000,0,0);}
.m1f_c00420{transform:matrix(0.075001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075001,0.000000,0.000000,0.250000,0,0);}
.mdd_c00420{transform:matrix(0.075203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075203,0.000000,0.000000,0.250000,0,0);}
.m60_c00420{transform:matrix(0.076390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076390,0.000000,0.000000,0.250000,0,0);}
.mab_c00420{transform:matrix(0.077207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077207,0.000000,0.000000,0.250000,0,0);}
.me0_c00420{transform:matrix(0.079269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.079269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.079269,0.000000,0.000000,0.250000,0,0);}
.m2c_c00420{transform:matrix(0.080883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080883,0.000000,0.000000,0.250000,0,0);}
.m6f_c00420{transform:matrix(0.081251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081251,0.000000,0.000000,0.250000,0,0);}
.mde_c00420{transform:matrix(0.085366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085366,0.000000,0.000000,0.250000,0,0);}
.m2b_c00420{transform:matrix(0.088235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088235,0.000000,0.000000,0.250000,0,0);}
.m35_c00420{transform:matrix(0.091911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091911,0.000000,0.000000,0.250000,0,0);}
.m48_c00420{transform:matrix(0.096428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096428,0.000000,0.000000,0.250000,0,0);}
.m5_c00420{transform:matrix(0.102150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102150,0.000000,0.000000,0.250000,0,0);}
.mc4_c00420{transform:matrix(0.116849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116849,0.000000,0.000000,0.250000,0,0);}
.m8a_c00420{transform:matrix(0.118572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118572,0.000000,0.000000,0.250000,0,0);}
.m2e_c00420{transform:matrix(0.121517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121517,0.000000,0.000000,0.250000,0,0);}
.m54_c00420{transform:matrix(0.128571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128571,0.000000,0.000000,0.250000,0,0);}
.m8b_c00420{transform:matrix(0.128572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128572,0.000000,0.000000,0.250000,0,0);}
.m8c_c00420{transform:matrix(0.133333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133333,0.000000,0.000000,0.250000,0,0);}
.mc3_c00420{transform:matrix(0.135869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135869,0.000000,0.000000,0.250000,0,0);}
.m7_c00420{transform:matrix(0.139785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139785,0.000000,0.000000,0.250000,0,0);}
.m6e_c00420{transform:matrix(0.140625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140625,0.000000,0.000000,0.250000,0,0);}
.m6d_c00420{transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00420{transform:matrix(0.148215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148215,0.000000,0.000000,0.250000,0,0);}
.mbe_c00420{transform:matrix(0.157142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157142,0.000000,0.000000,0.250000,0,0);}
.m61_c00420{transform:matrix(0.159723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159723,0.000000,0.000000,0.250000,0,0);}
.mdc_c00420{transform:matrix(0.164634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164634,0.000000,0.000000,0.250000,0,0);}
.m95_c00420{transform:matrix(0.165080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165080,0.000000,0.000000,0.250000,0,0);}
.m38_c00420{transform:matrix(0.169118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169118,0.000000,0.000000,0.250000,0,0);}
.m20_c00420{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00420{transform:matrix(0.175735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175735,0.000000,0.000000,0.250000,0,0);}
.mdf_c00420{transform:matrix(0.176830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176830,0.000000,0.000000,0.250000,0,0);}
.m71_c00420{transform:matrix(0.178256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178256,0.000000,0.000000,0.250000,0,0);}
.md0_c00420{transform:matrix(0.178893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178893,0.000000,0.000000,0.250000,0,0);}
.m50_c00420{transform:matrix(0.182694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182694,0.000000,0.000000,0.250000,0,0);}
.me_c00420{transform:matrix(0.183336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183336,0.000000,0.000000,0.250000,0,0);}
.m6a_c00420{transform:matrix(0.183594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183594,0.000000,0.000000,0.250000,0,0);}
.m14_c00420{transform:matrix(0.185008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185008,0.000000,0.000000,0.250000,0,0);}
.ma2_c00420{transform:matrix(0.187766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187766,0.000000,0.000000,0.250000,0,0);}
.m70_c00420{transform:matrix(0.191980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191980,0.000000,0.000000,0.250000,0,0);}
.mc8_c00420{transform:matrix(0.198452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198452,0.000000,0.000000,0.250000,0,0);}
.m37_c00420{transform:matrix(0.198530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198530,0.000000,0.000000,0.250000,0,0);}
.mcb_c00420{transform:matrix(0.198920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198920,0.000000,0.000000,0.250000,0,0);}
.mdb_c00420{transform:matrix(0.199340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199340,0.000000,0.000000,0.250000,0,0);}
.m5f_c00420{transform:matrix(0.204167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204167,0.000000,0.000000,0.250000,0,0);}
.maa_c00420{transform:matrix(0.204842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204842,0.000000,0.000000,0.250000,0,0);}
.mb7_c00420{transform:matrix(0.206700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206700,0.000000,0.000000,0.250000,0,0);}
.m36_c00420{transform:matrix(0.208332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208332,0.000000,0.000000,0.250000,0,0);}
.m34_c00420{transform:matrix(0.209559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209559,0.000000,0.000000,0.250000,0,0);}
.m91_c00420{transform:matrix(0.211985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211985,0.000000,0.000000,0.250000,0,0);}
.m53_c00420{transform:matrix(0.219048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219048,0.000000,0.000000,0.250000,0,0);}
.mac_c00420{transform:matrix(0.227405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227405,0.000000,0.000000,0.250000,0,0);}
.m24_c00420{transform:matrix(0.230448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230448,0.000000,0.000000,0.250000,0,0);}
.m10_c00420{transform:matrix(0.232247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232247,0.000000,0.000000,0.250000,0,0);}
.m62_c00420{transform:matrix(0.232384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232384,0.000000,0.000000,0.250000,0,0);}
.m12_c00420{transform:matrix(0.236159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236159,0.000000,0.000000,0.250000,0,0);}
.m4f_c00420{transform:matrix(0.238197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238197,0.000000,0.000000,0.250000,0,0);}
.m82_c00420{transform:matrix(0.239185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239185,0.000000,0.000000,0.250000,0,0);}
.m15_c00420{transform:matrix(0.242284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242284,0.000000,0.000000,0.250000,0,0);}
.m85_c00420{transform:matrix(0.244946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244946,0.000000,0.000000,0.250000,0,0);}
.m47_c00420{transform:matrix(0.247177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247177,0.000000,0.000000,0.250000,0,0);}
.m1_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);}
.ma0_c00420{transform:matrix(0.251970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251970,0.000000,0.000000,0.250000,0,0);}
.mbf_c00420{transform:matrix(0.252561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252561,0.000000,0.000000,0.250000,0,0);}
.m3b_c00420{transform:matrix(0.255254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255254,0.000000,0.000000,0.250000,0,0);}
.mc_c00420{transform:matrix(0.255708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255708,0.000000,0.000000,0.250000,0,0);}
.m94_c00420{transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);}
.m16_c00420{transform:matrix(0.259542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259542,0.000000,0.000000,0.250000,0,0);}
.m79_c00420{transform:matrix(0.260560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260560,0.000000,0.000000,0.250000,0,0);}
.md_c00420{transform:matrix(0.260712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260712,0.000000,0.000000,0.250000,0,0);}
.m88_c00420{transform:matrix(0.260968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260968,0.000000,0.000000,0.250000,0,0);}
.m2_c00420{transform:matrix(0.261730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261730,0.000000,0.000000,0.250000,0,0);}
.m74_c00420{transform:matrix(0.262950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262950,0.000000,0.000000,0.250000,0,0);}
.m23_c00420{transform:matrix(0.263685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263685,0.000000,0.000000,0.250000,0,0);}
.m19_c00420{transform:matrix(0.265031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265031,0.000000,0.000000,0.250000,0,0);}
.m4b_c00420{transform:matrix(0.265297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265297,0.000000,0.000000,0.250000,0,0);}
.m7e_c00420{transform:matrix(0.265760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265760,0.000000,0.000000,0.250000,0,0);}
.m40_c00420{transform:matrix(0.265951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265951,0.000000,0.000000,0.250000,0,0);}
.m41_c00420{transform:matrix(0.266749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266749,0.000000,0.000000,0.250000,0,0);}
.mbb_c00420{transform:matrix(0.268338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268338,0.000000,0.000000,0.250000,0,0);}
.m28_c00420{transform:matrix(0.270034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270034,0.000000,0.000000,0.250000,0,0);}
.mcd_c00420{transform:matrix(0.270186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270186,0.000000,0.000000,0.250000,0,0);}
.mc6_c00420{transform:matrix(0.271090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271090,0.000000,0.000000,0.250000,0,0);}
.m1d_c00420{transform:matrix(0.273143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273143,0.000000,0.000000,0.250000,0,0);}
.ma1_c00420{transform:matrix(0.275455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275455,0.000000,0.000000,0.250000,0,0);}
.me1_c00420{transform:matrix(0.275906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275906,0.000000,0.000000,0.250000,0,0);}
.m68_c00420{transform:matrix(0.276627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276627,0.000000,0.000000,0.250000,0,0);}
.ma5_c00420{transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);}
.m32_c00420{transform:matrix(0.278687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278687,0.000000,0.000000,0.250000,0,0);}
.m31_c00420{transform:matrix(0.281407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281407,0.000000,0.000000,0.250000,0,0);}
.md5_c00420{transform:matrix(0.281449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281449,0.000000,0.000000,0.250000,0,0);}
.m3c_c00420{transform:matrix(0.282452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282452,0.000000,0.000000,0.250000,0,0);}
.m66_c00420{transform:matrix(0.283714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283714,0.000000,0.000000,0.250000,0,0);}
.mb3_c00420{transform:matrix(0.283846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283846,0.000000,0.000000,0.250000,0,0);}
.md8_c00420{transform:matrix(0.283959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283959,0.000000,0.000000,0.250000,0,0);}
.m26_c00420{transform:matrix(0.284220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284220,0.000000,0.000000,0.250000,0,0);}
.m59_c00420{transform:matrix(0.284410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284410,0.000000,0.000000,0.250000,0,0);}
.m9e_c00420{transform:matrix(0.284684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284684,0.000000,0.000000,0.250000,0,0);}
.m30_c00420{transform:matrix(0.285320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285320,0.000000,0.000000,0.250000,0,0);}
.mcc_c00420{transform:matrix(0.285408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285408,0.000000,0.000000,0.250000,0,0);}
.m9a_c00420{transform:matrix(0.286170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286170,0.000000,0.000000,0.250000,0,0);}
.mba_c00420{transform:matrix(0.286526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286526,0.000000,0.000000,0.250000,0,0);}
.m2d_c00420{transform:matrix(0.287241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287241,0.000000,0.000000,0.250000,0,0);}
.me3_c00420{transform:matrix(0.287544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287544,0.000000,0.000000,0.250000,0,0);}
.m39_c00420{transform:matrix(0.287919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287919,0.000000,0.000000,0.250000,0,0);}
.m7c_c00420{transform:matrix(0.289042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289042,0.000000,0.000000,0.250000,0,0);}
.mb8_c00420{transform:matrix(0.289221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289221,0.000000,0.000000,0.250000,0,0);}
.m2a_c00420{transform:matrix(0.289453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289453,0.000000,0.000000,0.250000,0,0);}
.md9_c00420{transform:matrix(0.290699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290699,0.000000,0.000000,0.250000,0,0);}
.m86_c00420{transform:matrix(0.291474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291474,0.000000,0.000000,0.250000,0,0);}
.m69_c00420{transform:matrix(0.292280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292280,0.000000,0.000000,0.250000,0,0);}
.m89_c00420{transform:matrix(0.293044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293044,0.000000,0.000000,0.250000,0,0);}
.m51_c00420{transform:matrix(0.293452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293452,0.000000,0.000000,0.250000,0,0);}
.m5a_c00420{transform:matrix(0.294306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294306,0.000000,0.000000,0.250000,0,0);}
.m0_c00420{transform:matrix(0.294839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294839,0.000000,0.000000,0.250000,0,0);}
.m3_c00420{transform:matrix(0.295074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295074,0.000000,0.000000,0.250000,0,0);}
.ma8_c00420{transform:matrix(0.295509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295509,0.000000,0.000000,0.250000,0,0);}
.ma9_c00420{transform:matrix(0.295798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295798,0.000000,0.000000,0.250000,0,0);}
.mae_c00420{transform:matrix(0.295965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295965,0.000000,0.000000,0.250000,0,0);}
.m67_c00420{transform:matrix(0.296059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296059,0.000000,0.000000,0.250000,0,0);}
.m4c_c00420{transform:matrix(0.296715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296715,0.000000,0.000000,0.250000,0,0);}
.m56_c00420{transform:matrix(0.296864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296864,0.000000,0.000000,0.250000,0,0);}
.m98_c00420{transform:matrix(0.297320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297320,0.000000,0.000000,0.250000,0,0);}
.mad_c00420{transform:matrix(0.297399,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297399,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297399,0.000000,0.000000,0.250000,0,0);}
.m33_c00420{transform:matrix(0.298864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298864,0.000000,0.000000,0.250000,0,0);}
.m18_c00420{transform:matrix(0.299046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299046,0.000000,0.000000,0.250000,0,0);}
.m8f_c00420{transform:matrix(0.299231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299231,0.000000,0.000000,0.250000,0,0);}
.m9c_c00420{transform:matrix(0.300147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300147,0.000000,0.000000,0.250000,0,0);}
.m6c_c00420{transform:matrix(0.301057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301057,0.000000,0.000000,0.250000,0,0);}
.m5e_c00420{transform:matrix(0.301501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301501,0.000000,0.000000,0.250000,0,0);}
.m58_c00420{transform:matrix(0.301753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301753,0.000000,0.000000,0.250000,0,0);}
.mc7_c00420{transform:matrix(0.302416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302416,0.000000,0.000000,0.250000,0,0);}
.mce_c00420{transform:matrix(0.302630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302630,0.000000,0.000000,0.250000,0,0);}
.m22_c00420{transform:matrix(0.302641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302641,0.000000,0.000000,0.250000,0,0);}
.m3f_c00420{transform:matrix(0.302890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302890,0.000000,0.000000,0.250000,0,0);}
.m4d_c00420{transform:matrix(0.302990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302990,0.000000,0.000000,0.250000,0,0);}
.m8e_c00420{transform:matrix(0.303897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303897,0.000000,0.000000,0.250000,0,0);}
.mb4_c00420{transform:matrix(0.304317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304317,0.000000,0.000000,0.250000,0,0);}
.m4a_c00420{transform:matrix(0.304370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304370,0.000000,0.000000,0.250000,0,0);}
.m17_c00420{transform:matrix(0.305071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305071,0.000000,0.000000,0.250000,0,0);}
.m27_c00420{transform:matrix(0.305230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305230,0.000000,0.000000,0.250000,0,0);}
.md4_c00420{transform:matrix(0.305604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305604,0.000000,0.000000,0.250000,0,0);}
.m4_c00420{transform:matrix(0.306022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306022,0.000000,0.000000,0.250000,0,0);}
.mc0_c00420{transform:matrix(0.306917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306917,0.000000,0.000000,0.250000,0,0);}
.me9_c00420{transform:matrix(0.307067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307067,0.000000,0.000000,0.250000,0,0);}
.m45_c00420{transform:matrix(0.308583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308583,0.000000,0.000000,0.250000,0,0);}
.m44_c00420{transform:matrix(0.310641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310641,0.000000,0.000000,0.250000,0,0);}
.ma_c00420{transform:matrix(0.312022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312022,0.000000,0.000000,0.250000,0,0);}
.m9b_c00420{transform:matrix(0.312587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312587,0.000000,0.000000,0.250000,0,0);}
.m21_c00420{transform:matrix(0.312752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312752,0.000000,0.000000,0.250000,0,0);}
.m5d_c00420{transform:matrix(0.313140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313140,0.000000,0.000000,0.250000,0,0);}
.m42_c00420{transform:matrix(0.313226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313226,0.000000,0.000000,0.250000,0,0);}
.md3_c00420{transform:matrix(0.314319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314319,0.000000,0.000000,0.250000,0,0);}
.mb5_c00420{transform:matrix(0.314931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314931,0.000000,0.000000,0.250000,0,0);}
.m29_c00420{transform:matrix(0.316883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316883,0.000000,0.000000,0.250000,0,0);}
.m9d_c00420{transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00420{transform:matrix(0.317898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317898,0.000000,0.000000,0.250000,0,0);}
.m7a_c00420{transform:matrix(0.318328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318328,0.000000,0.000000,0.250000,0,0);}
.m80_c00420{transform:matrix(0.318692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318692,0.000000,0.000000,0.250000,0,0);}
.m57_c00420{transform:matrix(0.320194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320194,0.000000,0.000000,0.250000,0,0);}
.m90_c00420{transform:matrix(0.320365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320365,0.000000,0.000000,0.250000,0,0);}
.m63_c00420{transform:matrix(0.320763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320763,0.000000,0.000000,0.250000,0,0);}
.m8d_c00420{transform:matrix(0.321384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321384,0.000000,0.000000,0.250000,0,0);}
.mcf_c00420{transform:matrix(0.321917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321917,0.000000,0.000000,0.250000,0,0);}
.m75_c00420{transform:matrix(0.321973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321973,0.000000,0.000000,0.250000,0,0);}
.m9f_c00420{transform:matrix(0.322098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322098,0.000000,0.000000,0.250000,0,0);}
.m5c_c00420{transform:matrix(0.322379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322379,0.000000,0.000000,0.250000,0,0);}
.m64_c00420{transform:matrix(0.322582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322582,0.000000,0.000000,0.250000,0,0);}
.md2_c00420{transform:matrix(0.322796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322796,0.000000,0.000000,0.250000,0,0);}
.mb0_c00420{transform:matrix(0.323698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323698,0.000000,0.000000,0.250000,0,0);}
.m72_c00420{transform:matrix(0.325040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325040,0.000000,0.000000,0.250000,0,0);}
.m25_c00420{transform:matrix(0.325284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325284,0.000000,0.000000,0.250000,0,0);}
.m1a_c00420{transform:matrix(0.325498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325498,0.000000,0.000000,0.250000,0,0);}
.me2_c00420{transform:matrix(0.325681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325681,0.000000,0.000000,0.250000,0,0);}
.m8_c00420{transform:matrix(0.326353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326353,0.000000,0.000000,0.250000,0,0);}
.m4e_c00420{transform:matrix(0.326930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326930,0.000000,0.000000,0.250000,0,0);}
.m5b_c00420{transform:matrix(0.327405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327405,0.000000,0.000000,0.250000,0,0);}
.m3a_c00420{transform:matrix(0.327424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327424,0.000000,0.000000,0.250000,0,0);}
.m6b_c00420{transform:matrix(0.328607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328607,0.000000,0.000000,0.250000,0,0);}
.m1b_c00420{transform:matrix(0.329066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329066,0.000000,0.000000,0.250000,0,0);}
.me5_c00420{transform:matrix(0.329861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329861,0.000000,0.000000,0.250000,0,0);}
.m49_c00420{transform:matrix(0.329866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329866,0.000000,0.000000,0.250000,0,0);}
.mc2_c00420{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m97_c00420{transform:matrix(0.330718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330718,0.000000,0.000000,0.250000,0,0);}
.m81_c00420{transform:matrix(0.331181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331181,0.000000,0.000000,0.250000,0,0);}
.ma4_c00420{transform:matrix(0.331218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331218,0.000000,0.000000,0.250000,0,0);}
.mb9_c00420{transform:matrix(0.331227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331227,0.000000,0.000000,0.250000,0,0);}
.m1c_c00420{transform:matrix(0.332417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332417,0.000000,0.000000,0.250000,0,0);}
.m76_c00420{transform:matrix(0.332848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332848,0.000000,0.000000,0.250000,0,0);}
.m11_c00420{transform:matrix(0.333414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333414,0.000000,0.000000,0.250000,0,0);}
.md6_c00420{transform:matrix(0.333643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333643,0.000000,0.000000,0.250000,0,0);}
.m7f_c00420{transform:matrix(0.333654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333654,0.000000,0.000000,0.250000,0,0);}
.m77_c00420{transform:matrix(0.334015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334015,0.000000,0.000000,0.250000,0,0);}
.mbd_c00420{transform:matrix(0.334946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334946,0.000000,0.000000,0.250000,0,0);}
.m6_c00420{transform:matrix(0.335404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335404,0.000000,0.000000,0.250000,0,0);}
.mea_c00420{transform:matrix(0.335657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335657,0.000000,0.000000,0.250000,0,0);}
.m55_c00420{transform:matrix(0.336731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336731,0.000000,0.000000,0.250000,0,0);}
.m43_c00420{transform:matrix(0.337306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337306,0.000000,0.000000,0.250000,0,0);}
.me6_c00420{transform:matrix(0.341162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341162,0.000000,0.000000,0.250000,0,0);}
.m13_c00420{transform:matrix(0.342676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342676,0.000000,0.000000,0.250000,0,0);}
.mc1_c00420{transform:matrix(0.343827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343827,0.000000,0.000000,0.250000,0,0);}
.m46_c00420{transform:matrix(0.344059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344059,0.000000,0.000000,0.250000,0,0);}
.mb6_c00420{transform:matrix(0.344908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344908,0.000000,0.000000,0.250000,0,0);}
.m3d_c00420{transform:matrix(0.346801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346801,0.000000,0.000000,0.250000,0,0);}
.m78_c00420{transform:matrix(0.348014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348014,0.000000,0.000000,0.250000,0,0);}
.md7_c00420{transform:matrix(0.350298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350298,0.000000,0.000000,0.250000,0,0);}
.ma3_c00420{transform:matrix(0.350439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350439,0.000000,0.000000,0.250000,0,0);}
.m2f_c00420{transform:matrix(0.351105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351105,0.000000,0.000000,0.250000,0,0);}
.mb2_c00420{transform:matrix(0.354694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354694,0.000000,0.000000,0.250000,0,0);}
.m92_c00420{transform:matrix(0.355149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355149,0.000000,0.000000,0.250000,0,0);}
.m3e_c00420{transform:matrix(0.356907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356907,0.000000,0.000000,0.250000,0,0);}
.m7b_c00420{transform:matrix(0.357051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357051,0.000000,0.000000,0.250000,0,0);}
.m73_c00420{transform:matrix(0.358740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358740,0.000000,0.000000,0.250000,0,0);}
.me8_c00420{transform:matrix(0.360243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360243,0.000000,0.000000,0.250000,0,0);}
.ma6_c00420{transform:matrix(0.363517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363517,0.000000,0.000000,0.250000,0,0);}
.m7d_c00420{transform:matrix(0.365884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365884,0.000000,0.000000,0.250000,0,0);}
.me7_c00420{transform:matrix(0.370126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370126,0.000000,0.000000,0.250000,0,0);}
.mbc_c00420{transform:matrix(0.370132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370132,0.000000,0.000000,0.250000,0,0);}
.m99_c00420{transform:matrix(0.370275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370275,0.000000,0.000000,0.250000,0,0);}
.m87_c00420{transform:matrix(0.371135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371135,0.000000,0.000000,0.250000,0,0);}
.m83_c00420{transform:matrix(0.373651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373651,0.000000,0.000000,0.250000,0,0);}
.maf_c00420{transform:matrix(0.374654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374654,0.000000,0.000000,0.250000,0,0);}
.mda_c00420{transform:matrix(0.380746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380746,0.000000,0.000000,0.250000,0,0);}
.m52_c00420{transform:matrix(0.381057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381057,0.000000,0.000000,0.250000,0,0);}
.m93_c00420{transform:matrix(0.391264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391264,0.000000,0.000000,0.250000,0,0);}
.m9_c00420{transform:matrix(0.391559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391559,0.000000,0.000000,0.250000,0,0);}
.me4_c00420{transform:matrix(0.394841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394841,0.000000,0.000000,0.250000,0,0);}
.mca_c00420{transform:matrix(0.400809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400809,0.000000,0.000000,0.250000,0,0);}
.mb_c00420{transform:matrix(0.417138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417138,0.000000,0.000000,0.250000,0,0);}
.md1_c00420{transform:matrix(0.430687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430687,0.000000,0.000000,0.250000,0,0);}
.mc5_c00420{transform:matrix(0.456689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456689,0.000000,0.000000,0.250000,0,0);}
.m65_c00420{transform:matrix(0.469782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469782,0.000000,0.000000,0.250000,0,0);}
.m84_c00420{transform:matrix(0.472376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472376,0.000000,0.000000,0.250000,0,0);}
.mf_c00420{transform:matrix(0.742176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.742176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.742176,0.000000,0.000000,0.250000,0,0);}
.v1_c00420{vertical-align:-19.978200px;}
.v0_c00420{vertical-align:0.000000px;}
.v2_c00420{vertical-align:14.236200px;}
.v3_c00420{vertical-align:45.599400px;}
.ls2a_c00420{letter-spacing:-2.605680px;}
.ls10_c00420{letter-spacing:-2.515590px;}
.ls31_c00420{letter-spacing:-2.458091px;}
.ls1e_c00420{letter-spacing:-2.259180px;}
.ls27_c00420{letter-spacing:-1.832787px;}
.ls22_c00420{letter-spacing:-1.621620px;}
.ls1f_c00420{letter-spacing:-1.483020px;}
.ls33_c00420{letter-spacing:-1.288980px;}
.ls28_c00420{letter-spacing:-0.991861px;}
.lsb_c00420{letter-spacing:-0.710068px;}
.ls6_c00420{letter-spacing:0.000000px;}
.ls3_c00420{letter-spacing:0.130680px;}
.ls11_c00420{letter-spacing:1.020611px;}
.lse_c00420{letter-spacing:1.168200px;}
.ls1_c00420{letter-spacing:1.280664px;}
.lsd_c00420{letter-spacing:1.584000px;}
.ls1b_c00420{letter-spacing:1.595603px;}
.ls15_c00420{letter-spacing:1.720224px;}
.ls2d_c00420{letter-spacing:1.746716px;}
.ls1d_c00420{letter-spacing:1.811700px;}
.ls12_c00420{letter-spacing:1.875911px;}
.lsc_c00420{letter-spacing:2.187900px;}
.ls24_c00420{letter-spacing:2.316600px;}
.ls2e_c00420{letter-spacing:2.328718px;}
.ls5_c00420{letter-spacing:2.379881px;}
.lsa_c00420{letter-spacing:2.395810px;}
.ls1c_c00420{letter-spacing:2.494810px;}
.ls0_c00420{letter-spacing:2.695275px;}
.ls8_c00420{letter-spacing:2.752200px;}
.ls26_c00420{letter-spacing:2.968396px;}
.ls1a_c00420{letter-spacing:3.049200px;}
.ls30_c00420{letter-spacing:3.118500px;}
.ls2c_c00420{letter-spacing:3.176831px;}
.ls16_c00420{letter-spacing:3.207610px;}
.ls2b_c00420{letter-spacing:3.276900px;}
.ls18_c00420{letter-spacing:3.326400px;}
.ls13_c00420{letter-spacing:3.375900px;}
.ls35_c00420{letter-spacing:3.385265px;}
.ls17_c00420{letter-spacing:3.399640px;}
.ls23_c00420{letter-spacing:3.564000px;}
.ls7_c00420{letter-spacing:3.593700px;}
.ls25_c00420{letter-spacing:3.603610px;}
.ls29_c00420{letter-spacing:3.722400px;}
.ls32_c00420{letter-spacing:3.752110px;}
.ls4_c00420{letter-spacing:3.940200px;}
.ls2_c00420{letter-spacing:11.499840px;}
.lsf_c00420{letter-spacing:21.384000px;}
.ls2f_c00420{letter-spacing:32.788998px;}
.ls9_c00420{letter-spacing:44.193798px;}
.ls19_c00420{letter-spacing:48.470598px;}
.ls14_c00420{letter-spacing:49.896198px;}
.ls20_c00420{letter-spacing:51.321798px;}
.ls21_c00420{letter-spacing:57.024198px;}
.ls34_c00420{letter-spacing:58.449798px;}
.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:-19.844411px;}
.ws3_c00420{word-spacing:-17.968500px;}
.ws4_c00420{word-spacing:-3.306204px;}
.ws2_c00420{word-spacing:-2.012076px;}
.ws5_c00420{word-spacing:0.000000px;}
.ws0_c00420{word-spacing:1.225620px;}
._17_c00420{margin-left:-12.648240px;}
._10_c00420{margin-left:-7.906932px;}
._a_c00420{margin-left:-5.652900px;}
._1_c00420{margin-left:-3.880800px;}
._11_c00420{width:2.372040px;}
._7_c00420{width:4.059000px;}
._13_c00420{width:5.982847px;}
._6_c00420{width:8.537443px;}
._8_c00420{width:9.939204px;}
._e_c00420{width:11.499840px;}
._0_c00420{width:13.173226px;}
._12_c00420{width:19.765350px;}
._4_c00420{width:22.137192px;}
._b_c00420{width:25.697628px;}
._f_c00420{width:31.952844px;}
._9_c00420{width:34.505064px;}
._5_c00420{width:37.734840px;}
._16_c00420{width:39.603564px;}
._c_c00420{width:40.879001px;}
._14_c00420{width:42.094800px;}
._d_c00420{width:44.020152px;}
._15_c00420{width:45.421200px;}
._3_c00420{width:51.964902px;}
._2_c00420{width:66.132792px;}
._18_c00420{width:1629.262800px;}
.fc0_c00420{color:transparent;}
.fs8_c00420{font-size:15.444198px;}
.fs11_c00420{font-size:21.384000px;}
.fs10_c00420{font-size:23.364000px;}
.fs31_c00420{font-size:25.938000px;}
.fsb_c00420{font-size:27.720000px;}
.fs27_c00420{font-size:28.314000px;}
.fs2f_c00420{font-size:30.888000px;}
.fs29_c00420{font-size:31.284000px;}
.fsf_c00420{font-size:31.680000px;}
.fs24_c00420{font-size:32.788998px;}
.fs30_c00420{font-size:34.056198px;}
.fs1a_c00420{font-size:36.234000px;}
.fs2c_c00420{font-size:36.828000px;}
.fs1d_c00420{font-size:38.808000px;}
.fs1_c00420{font-size:39.204000px;}
.fsa_c00420{font-size:39.600000px;}
.fsd_c00420{font-size:41.580000px;}
.fs1c_c00420{font-size:42.372000px;}
.fse_c00420{font-size:43.758000px;}
.fs5_c00420{font-size:44.193798px;}
.fs2e_c00420{font-size:44.352000px;}
.fs28_c00420{font-size:45.144000px;}
.fs20_c00420{font-size:46.332000px;}
.fs14_c00420{font-size:47.520000px;}
.fs7_c00420{font-size:47.916198px;}
.fs17_c00420{font-size:48.470598px;}
.fs13_c00420{font-size:49.896198px;}
.fs1e_c00420{font-size:51.321798px;}
.fs3_c00420{font-size:55.044000px;}
.fs2a_c00420{font-size:56.628000px;}
.fs1f_c00420{font-size:57.024198px;}
.fs2d_c00420{font-size:58.449798px;}
.fs4_c00420{font-size:59.796198px;}
.fs19_c00420{font-size:60.984000px;}
.fs9_c00420{font-size:61.578000px;}
.fs25_c00420{font-size:62.370000px;}
.fs15_c00420{font-size:64.152198px;}
.fs1b_c00420{font-size:64.548000px;}
.fs18_c00420{font-size:65.538000px;}
.fs16_c00420{font-size:66.528000px;}
.fs12_c00420{font-size:67.518000px;}
.fs26_c00420{font-size:68.112198px;}
.fs6_c00420{font-size:70.092198px;}
.fs21_c00420{font-size:71.280000px;}
.fs2_c00420{font-size:71.874000px;}
.fs22_c00420{font-size:72.072198px;}
.fsc_c00420{font-size:72.864000px;}
.fs23_c00420{font-size:74.448000px;}
.fs2b_c00420{font-size:75.042198px;}
.fs0_c00420{font-size:78.804000px;}
.y0_c00420{bottom:0.000000px;}
.y1_c00420{bottom:76.500000px;}
.y29_c00420{bottom:84.735135px;}
.y28_c00420{bottom:167.063535px;}
.y27_c00420{bottom:189.873135px;}
.y26_c00420{bottom:201.634335px;}
.y25_c00420{bottom:222.300585px;}
.y24_c00420{bottom:236.205135px;}
.y23_c00420{bottom:262.578735px;}
.y22_c00420{bottom:268.632585px;}
.y1f_c00420{bottom:298.570185px;}
.y1d_c00420{bottom:300.708585px;}
.y1e_c00420{bottom:301.421385px;}
.y1c_c00420{bottom:332.789535px;}
.y21_c00420{bottom:340.630335px;}
.y1b_c00420{bottom:365.216985px;}
.y19_c00420{bottom:396.940793px;}
.y1a_c00420{bottom:396.941535px;}
.y18_c00420{bottom:429.373935px;}
.y17_c00420{bottom:465.013935px;}
.y16_c00420{bottom:497.089935px;}
.y14_c00420{bottom:561.241935px;}
.y20_c00420{bottom:587.971935px;}
.y13_c00420{bottom:594.387135px;}
.y15_c00420{bottom:594.738585px;}
.y12_c00420{bottom:601.871535px;}
.y11_c00420{bottom:626.819535px;}
.y10_c00420{bottom:659.608335px;}
.yf_c00420{bottom:692.748585px;}
.ye_c00420{bottom:725.180985px;}
.yd_c00420{bottom:758.687535px;}
.yc_c00420{bottom:791.114985px;}
.y9_c00420{bottom:819.988335px;}
.yb_c00420{bottom:823.547385px;}
.ya_c00420{bottom:825.329385px;}
.y8_c00420{bottom:831.393135px;}
.y7_c00420{bottom:849.920985px;}
.y5_c00420{bottom:856.336185px;}
.y6_c00420{bottom:861.330735px;}
.y4_c00420{bottom:920.131785px;}
.y3_c00420{bottom:928.333935px;}
.y2_c00420{bottom:1074.809385px;}
.h11_c00420{height:14.241744px;}
.h25_c00420{height:21.837473px;}
.h10_c00420{height:24.367922px;}
.h32_c00420{height:25.456729px;}
.hc_c00420{height:28.911094px;}
.h7_c00420{height:29.433069px;}
.h28_c00420{height:29.530617px;}
.hf_c00420{height:31.092188px;}
.h30_c00420{height:32.215219px;}
.h17_c00420{height:32.281418px;}
.h2a_c00420{height:32.628234px;}
.h13_c00420{height:33.230868px;}
.h1e_c00420{height:34.180317px;}
.h31_c00420{height:35.519550px;}
.h2d_c00420{height:37.115719px;}
.h1a_c00420{height:37.790930px;}
.h1f_c00420{height:37.978116px;}
.h3_c00420{height:38.476582px;}
.hb_c00420{height:38.865234px;}
.h2e_c00420{height:38.927565px;}
.h1d_c00420{height:40.475531px;}
.he_c00420{height:42.946084px;}
.h1c_c00420{height:44.192672px;}
.ha_c00420{height:44.245730px;}
.h2f_c00420{height:46.257750px;}
.h14_c00420{height:46.638281px;}
.h29_c00420{height:47.083781px;}
.h9_c00420{height:48.290543px;}
.h20_c00420{height:48.322828px;}
.h19_c00420{height:52.040175px;}
.h5_c00420{height:57.409172px;}
.h2b_c00420{height:59.061234px;}
.h6_c00420{height:62.365566px;}
.h1b_c00420{height:63.350332px;}
.h18_c00420{height:63.604406px;}
.h26_c00420{height:65.049961px;}
.h16_c00420{height:65.293594px;}
.h12_c00420{height:66.265225px;}
.h15_c00420{height:66.908738px;}
.h24_c00420{height:68.354086px;}
.h8_c00420{height:68.757434px;}
.h21_c00420{height:69.957422px;}
.h4_c00420{height:70.540400px;}
.h22_c00420{height:70.734921px;}
.h27_c00420{height:71.038894px;}
.hd_c00420{height:71.512031px;}
.h23_c00420{height:73.066641px;}
.h2c_c00420{height:75.628465px;}
.h2_c00420{height:77.341816px;}
.h1_c00420{height:1110.000000px;}
.h0_c00420{height:1263.000000px;}
.w1_c00420{width:775.500000px;}
.w0_c00420{width:892.500000px;}
.x0_c00420{left:0.000000px;}
.x1_c00420{left:58.500000px;}
.x78_c00420{left:67.678035px;}
.x5_c00420{left:73.360635px;}
.x58_c00420{left:74.410035px;}
.x6d_c00420{left:75.647535px;}
.x1a_c00420{left:84.983235px;}
.x67_c00420{left:95.794035px;}
.x71_c00420{left:105.768285px;}
.x1b_c00420{left:108.758085px;}
.x3e_c00420{left:116.534535px;}
.x6_c00420{left:118.123485px;}
.x3f_c00420{left:127.939335px;}
.x7_c00420{left:130.300485px;}
.x4_c00420{left:133.834785px;}
.x7c_c00420{left:138.923385px;}
.x75_c00420{left:141.576585px;}
.x31_c00420{left:149.343135px;}
.x8_c00420{left:152.501235px;}
.x50_c00420{left:160.124235px;}
.x28_c00420{left:161.574585px;}
.x73_c00420{left:170.727135px;}
.x40_c00420{left:171.776535px;}
.x76_c00420{left:182.389335px;}
.x49_c00420{left:183.691185px;}
.x41_c00420{left:194.224785px;}
.x59_c00420{left:196.076085px;}
.x32_c00420{left:204.530685px;}
.x5c_c00420{left:206.144385px;}
.x42_c00420{left:215.762235px;}
.x7d_c00420{left:225.583035px;}
.x1c_c00420{left:227.488785px;}
.x33_c00420{left:238.086735px;}
.x4a_c00420{left:249.130185px;}
.x72_c00420{left:259.827135px;}
.x43_c00420{left:261.025035px;}
.x1d_c00420{left:262.217985px;}
.x7e_c00420{left:271.365585px;}
.x5d_c00420{left:273.796035px;}
.x1e_c00420{left:282.211035px;}
.x29_c00420{left:284.037585px;}
.x6e_c00420{left:292.615935px;}
.x44_c00420{left:294.190035px;}
.x1f_c00420{left:304.985985px;}
.x2a_c00420{left:316.113585px;}
.x45_c00420{left:317.791635px;}
.x20_c00420{left:326.231385px;}
.x2b_c00420{left:328.948935px;}
.x51_c00420{left:336.685785px;}
.x34_c00420{left:337.858935px;}
.x4b_c00420{left:348.694485px;}
.x35_c00420{left:349.976535px;}
.x5e_c00420{left:352.827735px;}
.x2c_c00420{left:359.807235px;}
.x36_c00420{left:361.960485px;}
.x21_c00420{left:369.999285px;}
.x4c_c00420{left:371.093235px;}
.x5f_c00420{left:373.855335px;}
.x68_c00420{left:377.255985px;}
.x64_c00420{left:382.507935px;}
.x60_c00420{left:384.185985px;}
.x37_c00420{left:392.536635px;}
.x22_c00420{left:402.595035px;}
.x2d_c00420{left:404.471085px;}
.x52_c00420{left:414.658185px;}
.x5a_c00420{left:425.196735px;}
.x38_c00420{left:426.850035px;}
.x39_c00420{left:431.171385px;}
.x4d_c00420{left:436.190685px;}
.x2e_c00420{left:437.408385px;}
.x23_c00420{left:439.140885px;}
.x46_c00420{left:447.224235px;}
.x7f_c00420{left:448.773585px;}
.x69_c00420{left:458.366685px;}
.x24_c00420{left:459.500235px;}
.x4e_c00420{left:468.959685px;}
.x85_c00420{left:470.281335px;}
.x5b_c00420{left:480.319935px;}
.x65_c00420{left:491.789085px;}
.x6a_c00420{left:502.664235px;}
.x3a_c00420{left:504.065085px;}
.x4f_c00420{left:513.346335px;}
.x2f_c00420{left:514.786785px;}
.x79_c00420{left:524.221485px;}
.x25_c00420{left:525.795585px;}
.x9_c00420{left:535.453035px;}
.x3b_c00420{left:536.744985px;}
.x26_c00420{left:549.268485px;}
.x74_c00420{left:556.302435px;}
.x53_c00420{left:557.881485px;}
.x80_c00420{left:560.005035px;}
.x86_c00420{left:567.331035px;}
.xa_c00420{left:568.865535px;}
.x77_c00420{left:571.008885px;}
.x66_c00420{left:579.463485px;}
.x47_c00420{left:580.710885px;}
.xb_c00420{left:585.195585px;}
.x12_c00420{left:590.848485px;}
.x54_c00420{left:601.555335px;}
.x15_c00420{left:605.010435px;}
.xc_c00420{left:613.262085px;}
.x81_c00420{left:615.138135px;}
.x61_c00420{left:623.270985px;}
.xd_c00420{left:624.949035px;}
.x30_c00420{left:627.820035px;}
.x13_c00420{left:629.468385px;}
.x55_c00420{left:634.170885px;}
.x27_c00420{left:636.324135px;}
.x82_c00420{left:638.655585px;}
.xe_c00420{left:642.501735px;}
.x48_c00420{left:645.951885px;}
.x62_c00420{left:647.006235px;}
.x57_c00420{left:650.619735px;}
.x16_c00420{left:656.802285px;}
.xf_c00420{left:657.901185px;}
.x83_c00420{left:658.975335px;}
.x6b_c00420{left:663.603585px;}
.x2_c00420{left:667.598235px;}
.x17_c00420{left:670.568235px;}
.x18_c00420{left:679.166385px;}
.x3c_c00420{left:684.616335px;}
.x10_c00420{left:688.036785px;}
.x3_c00420{left:689.289135px;}
.x3d_c00420{left:700.812735px;}
.x11_c00420{left:703.767885px;}
.x19_c00420{left:706.455735px;}
.x14_c00420{left:711.598785px;}
.x84_c00420{left:714.771735px;}
.x6f_c00420{left:722.340285px;}
.x6c_c00420{left:723.478785px;}
.x63_c00420{left:733.705485px;}
.x56_c00420{left:736.022085px;}
.x70_c00420{left:745.001385px;}
.x7a_c00420{left:775.339935px;}
.x7b_c00420{left:777.017985px;}
@media print{
.v1_c00420{vertical-align:-17.758400pt;}
.v0_c00420{vertical-align:0.000000pt;}
.v2_c00420{vertical-align:12.654400pt;}
.v3_c00420{vertical-align:40.532800pt;}
.ls2a_c00420{letter-spacing:-2.316160pt;}
.ls10_c00420{letter-spacing:-2.236080pt;}
.ls31_c00420{letter-spacing:-2.184970pt;}
.ls1e_c00420{letter-spacing:-2.008160pt;}
.ls27_c00420{letter-spacing:-1.629144pt;}
.ls22_c00420{letter-spacing:-1.441440pt;}
.ls1f_c00420{letter-spacing:-1.318240pt;}
.ls33_c00420{letter-spacing:-1.145760pt;}
.ls28_c00420{letter-spacing:-0.881654pt;}
.lsb_c00420{letter-spacing:-0.631171pt;}
.ls6_c00420{letter-spacing:0.000000pt;}
.ls3_c00420{letter-spacing:0.116160pt;}
.ls11_c00420{letter-spacing:0.907210pt;}
.lse_c00420{letter-spacing:1.038400pt;}
.ls1_c00420{letter-spacing:1.138368pt;}
.lsd_c00420{letter-spacing:1.408000pt;}
.ls1b_c00420{letter-spacing:1.418314pt;}
.ls15_c00420{letter-spacing:1.529088pt;}
.ls2d_c00420{letter-spacing:1.552637pt;}
.ls1d_c00420{letter-spacing:1.610400pt;}
.ls12_c00420{letter-spacing:1.667477pt;}
.lsc_c00420{letter-spacing:1.944800pt;}
.ls24_c00420{letter-spacing:2.059200pt;}
.ls2e_c00420{letter-spacing:2.069971pt;}
.ls5_c00420{letter-spacing:2.115450pt;}
.lsa_c00420{letter-spacing:2.129609pt;}
.ls1c_c00420{letter-spacing:2.217609pt;}
.ls0_c00420{letter-spacing:2.395800pt;}
.ls8_c00420{letter-spacing:2.446400pt;}
.ls26_c00420{letter-spacing:2.638574pt;}
.ls1a_c00420{letter-spacing:2.710400pt;}
.ls30_c00420{letter-spacing:2.772000pt;}
.ls2c_c00420{letter-spacing:2.823850pt;}
.ls16_c00420{letter-spacing:2.851209pt;}
.ls2b_c00420{letter-spacing:2.912800pt;}
.ls18_c00420{letter-spacing:2.956800pt;}
.ls13_c00420{letter-spacing:3.000800pt;}
.ls35_c00420{letter-spacing:3.009125pt;}
.ls17_c00420{letter-spacing:3.021902pt;}
.ls23_c00420{letter-spacing:3.168000pt;}
.ls7_c00420{letter-spacing:3.194400pt;}
.ls25_c00420{letter-spacing:3.203209pt;}
.ls29_c00420{letter-spacing:3.308800pt;}
.ls32_c00420{letter-spacing:3.335209pt;}
.ls4_c00420{letter-spacing:3.502400pt;}
.ls2_c00420{letter-spacing:10.222080pt;}
.lsf_c00420{letter-spacing:19.008000pt;}
.ls2f_c00420{letter-spacing:29.145776pt;}
.ls9_c00420{letter-spacing:39.283376pt;}
.ls19_c00420{letter-spacing:43.084976pt;}
.ls14_c00420{letter-spacing:44.352176pt;}
.ls20_c00420{letter-spacing:45.619376pt;}
.ls21_c00420{letter-spacing:50.688176pt;}
.ls34_c00420{letter-spacing:51.955376pt;}
.ws1_c00420{word-spacing:-17.639477pt;}
.ws3_c00420{word-spacing:-15.972000pt;}
.ws4_c00420{word-spacing:-2.938848pt;}
.ws2_c00420{word-spacing:-1.788512pt;}
.ws5_c00420{word-spacing:0.000000pt;}
.ws0_c00420{word-spacing:1.089440pt;}
._17_c00420{margin-left:-11.242880pt;}
._10_c00420{margin-left:-7.028384pt;}
._a_c00420{margin-left:-5.024800pt;}
._1_c00420{margin-left:-3.449600pt;}
._11_c00420{width:2.108480pt;}
._7_c00420{width:3.608000pt;}
._13_c00420{width:5.318086pt;}
._6_c00420{width:7.588838pt;}
._8_c00420{width:8.834848pt;}
._e_c00420{width:10.222080pt;}
._0_c00420{width:11.709534pt;}
._12_c00420{width:17.569200pt;}
._4_c00420{width:19.677504pt;}
._b_c00420{width:22.842336pt;}
._f_c00420{width:28.402528pt;}
._9_c00420{width:30.671168pt;}
._5_c00420{width:33.542080pt;}
._16_c00420{width:35.203168pt;}
._c_c00420{width:36.336890pt;}
._14_c00420{width:37.417600pt;}
._d_c00420{width:39.129024pt;}
._15_c00420{width:40.374400pt;}
._3_c00420{width:46.191024pt;}
._2_c00420{width:58.784704pt;}
._18_c00420{width:1448.233600pt;}
.fs8_c00420{font-size:13.728176pt;}
.fs11_c00420{font-size:19.008000pt;}
.fs10_c00420{font-size:20.768000pt;}
.fs31_c00420{font-size:23.056000pt;}
.fsb_c00420{font-size:24.640000pt;}
.fs27_c00420{font-size:25.168000pt;}
.fs2f_c00420{font-size:27.456000pt;}
.fs29_c00420{font-size:27.808000pt;}
.fsf_c00420{font-size:28.160000pt;}
.fs24_c00420{font-size:29.145776pt;}
.fs30_c00420{font-size:30.272176pt;}
.fs1a_c00420{font-size:32.208000pt;}
.fs2c_c00420{font-size:32.736000pt;}
.fs1d_c00420{font-size:34.496000pt;}
.fs1_c00420{font-size:34.848000pt;}
.fsa_c00420{font-size:35.200000pt;}
.fsd_c00420{font-size:36.960000pt;}
.fs1c_c00420{font-size:37.664000pt;}
.fse_c00420{font-size:38.896000pt;}
.fs5_c00420{font-size:39.283376pt;}
.fs2e_c00420{font-size:39.424000pt;}
.fs28_c00420{font-size:40.128000pt;}
.fs20_c00420{font-size:41.184000pt;}
.fs14_c00420{font-size:42.240000pt;}
.fs7_c00420{font-size:42.592176pt;}
.fs17_c00420{font-size:43.084976pt;}
.fs13_c00420{font-size:44.352176pt;}
.fs1e_c00420{font-size:45.619376pt;}
.fs3_c00420{font-size:48.928000pt;}
.fs2a_c00420{font-size:50.336000pt;}
.fs1f_c00420{font-size:50.688176pt;}
.fs2d_c00420{font-size:51.955376pt;}
.fs4_c00420{font-size:53.152176pt;}
.fs19_c00420{font-size:54.208000pt;}
.fs9_c00420{font-size:54.736000pt;}
.fs25_c00420{font-size:55.440000pt;}
.fs15_c00420{font-size:57.024176pt;}
.fs1b_c00420{font-size:57.376000pt;}
.fs18_c00420{font-size:58.256000pt;}
.fs16_c00420{font-size:59.136000pt;}
.fs12_c00420{font-size:60.016000pt;}
.fs26_c00420{font-size:60.544176pt;}
.fs6_c00420{font-size:62.304176pt;}
.fs21_c00420{font-size:63.360000pt;}
.fs2_c00420{font-size:63.888000pt;}
.fs22_c00420{font-size:64.064176pt;}
.fsc_c00420{font-size:64.768000pt;}
.fs23_c00420{font-size:66.176000pt;}
.fs2b_c00420{font-size:66.704176pt;}
.fs0_c00420{font-size:70.048000pt;}
.y0_c00420{bottom:0.000000pt;}
.y1_c00420{bottom:68.000000pt;}
.y29_c00420{bottom:75.320120pt;}
.y28_c00420{bottom:148.500920pt;}
.y27_c00420{bottom:168.776120pt;}
.y26_c00420{bottom:179.230520pt;}
.y25_c00420{bottom:197.600520pt;}
.y24_c00420{bottom:209.960120pt;}
.y23_c00420{bottom:233.403320pt;}
.y22_c00420{bottom:238.784520pt;}
.y1f_c00420{bottom:265.395720pt;}
.y1d_c00420{bottom:267.296520pt;}
.y1e_c00420{bottom:267.930120pt;}
.y1c_c00420{bottom:295.812920pt;}
.y21_c00420{bottom:302.782520pt;}
.y1b_c00420{bottom:324.637320pt;}
.y19_c00420{bottom:352.836260pt;}
.y1a_c00420{bottom:352.836920pt;}
.y18_c00420{bottom:381.665720pt;}
.y17_c00420{bottom:413.345720pt;}
.y16_c00420{bottom:441.857720pt;}
.y14_c00420{bottom:498.881720pt;}
.y20_c00420{bottom:522.641720pt;}
.y13_c00420{bottom:528.344120pt;}
.y15_c00420{bottom:528.656520pt;}
.y12_c00420{bottom:534.996920pt;}
.y11_c00420{bottom:557.172920pt;}
.y10_c00420{bottom:586.318520pt;}
.yf_c00420{bottom:615.776520pt;}
.ye_c00420{bottom:644.605320pt;}
.yd_c00420{bottom:674.388920pt;}
.yc_c00420{bottom:703.213320pt;}
.y9_c00420{bottom:728.878520pt;}
.yb_c00420{bottom:732.042120pt;}
.ya_c00420{bottom:733.626120pt;}
.y8_c00420{bottom:739.016120pt;}
.y7_c00420{bottom:755.485320pt;}
.y5_c00420{bottom:761.187720pt;}
.y6_c00420{bottom:765.627320pt;}
.y4_c00420{bottom:817.894920pt;}
.y3_c00420{bottom:825.185720pt;}
.y2_c00420{bottom:955.386120pt;}
.h11_c00420{height:12.659328pt;}
.h25_c00420{height:19.411087pt;}
.h10_c00420{height:21.660375pt;}
.h32_c00420{height:22.628203pt;}
.hc_c00420{height:25.698750pt;}
.h7_c00420{height:26.162728pt;}
.h28_c00420{height:26.249438pt;}
.hf_c00420{height:27.637500pt;}
.h30_c00420{height:28.635750pt;}
.h17_c00420{height:28.694594pt;}
.h2a_c00420{height:29.002875pt;}
.h13_c00420{height:29.538549pt;}
.h1e_c00420{height:30.382504pt;}
.h31_c00420{height:31.572934pt;}
.h2d_c00420{height:32.991750pt;}
.h1a_c00420{height:33.591938pt;}
.h1f_c00420{height:33.758325pt;}
.h3_c00420{height:34.201406pt;}
.hb_c00420{height:34.546875pt;}
.h2e_c00420{height:34.602280pt;}
.h1d_c00420{height:35.978250pt;}
.he_c00420{height:38.174297pt;}
.h1c_c00420{height:39.282375pt;}
.ha_c00420{height:39.329538pt;}
.h2f_c00420{height:41.118000pt;}
.h14_c00420{height:41.456250pt;}
.h29_c00420{height:41.852250pt;}
.h9_c00420{height:42.924927pt;}
.h20_c00420{height:42.953625pt;}
.h19_c00420{height:46.257934pt;}
.h5_c00420{height:51.030375pt;}
.h2b_c00420{height:52.498875pt;}
.h6_c00420{height:55.436059pt;}
.h1b_c00420{height:56.311406pt;}
.h18_c00420{height:56.537250pt;}
.h26_c00420{height:57.822188pt;}
.h16_c00420{height:58.038750pt;}
.h12_c00420{height:58.902422pt;}
.h15_c00420{height:59.474434pt;}
.h24_c00420{height:60.759188pt;}
.h8_c00420{height:61.117720pt;}
.h21_c00420{height:62.184375pt;}
.h4_c00420{height:62.702578pt;}
.h22_c00420{height:62.875485pt;}
.h27_c00420{height:63.145684pt;}
.hd_c00420{height:63.566250pt;}
.h23_c00420{height:64.948125pt;}
.h2c_c00420{height:67.225302pt;}
.h2_c00420{height:68.748281pt;}
.h1_c00420{height:986.666667pt;}
.h0_c00420{height:1122.666667pt;}
.w1_c00420{width:689.333333pt;}
.w0_c00420{width:793.333333pt;}
.x0_c00420{left:0.000000pt;}
.x1_c00420{left:52.000000pt;}
.x78_c00420{left:60.158253pt;}
.x5_c00420{left:65.209453pt;}
.x58_c00420{left:66.142253pt;}
.x6d_c00420{left:67.242253pt;}
.x1a_c00420{left:75.540653pt;}
.x67_c00420{left:85.150253pt;}
.x71_c00420{left:94.016253pt;}
.x1b_c00420{left:96.673853pt;}
.x3e_c00420{left:103.586253pt;}
.x6_c00420{left:104.998653pt;}
.x3f_c00420{left:113.723853pt;}
.x7_c00420{left:115.822653pt;}
.x4_c00420{left:118.964253pt;}
.x7c_c00420{left:123.487453pt;}
.x75_c00420{left:125.845853pt;}
.x31_c00420{left:132.749453pt;}
.x8_c00420{left:135.556653pt;}
.x50_c00420{left:142.332653pt;}
.x28_c00420{left:143.621853pt;}
.x73_c00420{left:151.757453pt;}
.x40_c00420{left:152.690253pt;}
.x76_c00420{left:162.123853pt;}
.x49_c00420{left:163.281053pt;}
.x41_c00420{left:172.644253pt;}
.x59_c00420{left:174.289853pt;}
.x32_c00420{left:181.805053pt;}
.x5c_c00420{left:183.239453pt;}
.x42_c00420{left:191.788653pt;}
.x7d_c00420{left:200.518253pt;}
.x1c_c00420{left:202.212253pt;}
.x33_c00420{left:211.632653pt;}
.x4a_c00420{left:221.449053pt;}
.x72_c00420{left:230.957453pt;}
.x43_c00420{left:232.022253pt;}
.x1d_c00420{left:233.082653pt;}
.x7e_c00420{left:241.213853pt;}
.x5d_c00420{left:243.374253pt;}
.x1e_c00420{left:250.854253pt;}
.x29_c00420{left:252.477853pt;}
.x6e_c00420{left:260.103053pt;}
.x44_c00420{left:261.502253pt;}
.x1f_c00420{left:271.098653pt;}
.x2a_c00420{left:280.989853pt;}
.x45_c00420{left:282.481453pt;}
.x20_c00420{left:289.983453pt;}
.x2b_c00420{left:292.399053pt;}
.x51_c00420{left:299.276253pt;}
.x34_c00420{left:300.319053pt;}
.x4b_c00420{left:309.950653pt;}
.x35_c00420{left:311.090253pt;}
.x5e_c00420{left:313.624653pt;}
.x2c_c00420{left:319.828653pt;}
.x36_c00420{left:321.742653pt;}
.x21_c00420{left:328.888253pt;}
.x4c_c00420{left:329.860653pt;}
.x5f_c00420{left:332.315853pt;}
.x68_c00420{left:335.338653pt;}
.x64_c00420{left:340.007053pt;}
.x60_c00420{left:341.498653pt;}
.x37_c00420{left:348.921453pt;}
.x22_c00420{left:357.862253pt;}
.x2d_c00420{left:359.529853pt;}
.x52_c00420{left:368.585053pt;}
.x5a_c00420{left:377.952653pt;}
.x38_c00420{left:379.422253pt;}
.x39_c00420{left:383.263453pt;}
.x4d_c00420{left:387.725053pt;}
.x2e_c00420{left:388.807453pt;}
.x23_c00420{left:390.347453pt;}
.x46_c00420{left:397.532653pt;}
.x7f_c00420{left:398.909853pt;}
.x69_c00420{left:407.437053pt;}
.x24_c00420{left:408.444653pt;}
.x4e_c00420{left:416.853053pt;}
.x85_c00420{left:418.027853pt;}
.x5b_c00420{left:426.951053pt;}
.x65_c00420{left:437.145853pt;}
.x6a_c00420{left:446.812653pt;}
.x3a_c00420{left:448.057853pt;}
.x4f_c00420{left:456.307853pt;}
.x2f_c00420{left:457.588253pt;}
.x79_c00420{left:465.974653pt;}
.x25_c00420{left:467.373853pt;}
.x9_c00420{left:475.958253pt;}
.x3b_c00420{left:477.106653pt;}
.x26_c00420{left:488.238653pt;}
.x74_c00420{left:494.491053pt;}
.x53_c00420{left:495.894653pt;}
.x80_c00420{left:497.782253pt;}
.x86_c00420{left:504.294253pt;}
.xa_c00420{left:505.658253pt;}
.x77_c00420{left:507.563453pt;}
.x66_c00420{left:515.078653pt;}
.x47_c00420{left:516.187453pt;}
.xb_c00420{left:520.173853pt;}
.x12_c00420{left:525.198653pt;}
.x54_c00420{left:534.715853pt;}
.x15_c00420{left:537.787053pt;}
.xc_c00420{left:545.121853pt;}
.x81_c00420{left:546.789453pt;}
.x61_c00420{left:554.018653pt;}
.xd_c00420{left:555.510253pt;}
.x30_c00420{left:558.062253pt;}
.x13_c00420{left:559.527453pt;}
.x55_c00420{left:563.707453pt;}
.x27_c00420{left:565.621453pt;}
.x82_c00420{left:567.693853pt;}
.xe_c00420{left:571.112653pt;}
.x48_c00420{left:574.179453pt;}
.x62_c00420{left:575.116653pt;}
.x57_c00420{left:578.328653pt;}
.x16_c00420{left:583.824253pt;}
.xf_c00420{left:584.801053pt;}
.x83_c00420{left:585.755853pt;}
.x6b_c00420{left:589.869853pt;}
.x2_c00420{left:593.420653pt;}
.x17_c00420{left:596.060653pt;}
.x18_c00420{left:603.703453pt;}
.x3c_c00420{left:608.547853pt;}
.x10_c00420{left:611.588253pt;}
.x3_c00420{left:612.701453pt;}
.x3d_c00420{left:622.944653pt;}
.x11_c00420{left:625.571453pt;}
.x19_c00420{left:627.960653pt;}
.x14_c00420{left:632.532253pt;}
.x84_c00420{left:635.352653pt;}
.x6f_c00420{left:642.080253pt;}
.x6c_c00420{left:643.092253pt;}
.x63_c00420{left:652.182653pt;}
.x56_c00420{left:654.241853pt;}
.x70_c00420{left:662.223453pt;}
.x7a_c00420{left:689.191053pt;}
.x7b_c00420{left:690.682653pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4d47d6de69837d17dc63707b.woff2')format("woff");}.ff1_c00421{font-family:ff1_c00421;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00421;src:url('chunks/assets/font_238c4cee224e37b93717237f.woff2')format("woff");}.ff2_c00421{font-family:ff2_c00421;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00421;src:url('chunks/assets/font_5787ee6c7fdb2bc6471596a5.woff2')format("woff");}.ff3_c00421{font-family:ff3_c00421;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00421;src:url('chunks/assets/font_d8487b53262171d12e7c7b21.woff2')format("woff");}.ff4_c00421{font-family:ff4_c00421;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00421;src:url('chunks/assets/font_707a42c6e41484cc035519c4.woff2')format("woff");}.ff5_c00421{font-family:ff5_c00421;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00421;src:url('chunks/assets/font_d4a2654057f1d66ac1c9500a.woff2')format("woff");}.ff6_c00421{font-family:ff6_c00421;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m106_c00421{transform:matrix(0.012196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012196,0.000000,0.000000,0.250000,0,0);}
.mab_c00421{transform:matrix(0.028572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.028572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.028572,0.000000,0.000000,0.250000,0,0);}
.mfa_c00421{transform:matrix(0.051471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.051471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.051471,0.000000,0.000000,0.250000,0,0);}
.m10a_c00421{transform:matrix(0.052846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.052846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.052846,0.000000,0.000000,0.250000,0,0);}
.m29_c00421{transform:matrix(0.059211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.059211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.059211,0.000000,0.000000,0.250000,0,0);}
.me3_c00421{transform:matrix(0.062501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062501,0.000000,0.000000,0.250000,0,0);}
.mc_c00421{transform:matrix(0.063236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.063236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.063236,0.000000,0.000000,0.250000,0,0);}
.m105_c00421{transform:matrix(0.070123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070123,0.000000,0.000000,0.250000,0,0);}
.mcc_c00421{transform:matrix(0.076219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076219,0.000000,0.000000,0.250000,0,0);}
.mae_c00421{transform:matrix(0.078572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078572,0.000000,0.000000,0.250000,0,0);}
.m80_c00421{transform:matrix(0.082176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.082176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.082176,0.000000,0.000000,0.250000,0,0);}
.me2_c00421{transform:matrix(0.082387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.082387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.082387,0.000000,0.000000,0.250000,0,0);}
.m9a_c00421{transform:matrix(0.083334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083334,0.000000,0.000000,0.250000,0,0);}
.m28_c00421{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00421{transform:matrix(0.101785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101785,0.000000,0.000000,0.250000,0,0);}
.m111_c00421{transform:matrix(0.103659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103659,0.000000,0.000000,0.250000,0,0);}
.m9b_c00421{transform:matrix(0.106061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106061,0.000000,0.000000,0.250000,0,0);}
.ma5_c00421{transform:matrix(0.107142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107142,0.000000,0.000000,0.250000,0,0);}
.m24_c00421{transform:matrix(0.110902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110902,0.000000,0.000000,0.250000,0,0);}
.mc5_c00421{transform:matrix(0.117395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117395,0.000000,0.000000,0.250000,0,0);}
.m110_c00421{transform:matrix(0.117517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117517,0.000000,0.000000,0.250000,0,0);}
.mcd_c00421{transform:matrix(0.119919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119919,0.000000,0.000000,0.250000,0,0);}
.m113_c00421{transform:matrix(0.121952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121952,0.000000,0.000000,0.250000,0,0);}
.m9c_c00421{transform:matrix(0.128789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128789,0.000000,0.000000,0.250000,0,0);}
.mc2_c00421{transform:matrix(0.130890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130890,0.000000,0.000000,0.250000,0,0);}
.m112_c00421{transform:matrix(0.134146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134146,0.000000,0.000000,0.250000,0,0);}
.m2a_c00421{transform:matrix(0.138158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138158,0.000000,0.000000,0.250000,0,0);}
.ma_c00421{transform:matrix(0.139705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139705,0.000000,0.000000,0.250000,0,0);}
.m5d_c00421{transform:matrix(0.140812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140812,0.000000,0.000000,0.250000,0,0);}
.ma6_c00421{transform:matrix(0.142381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142381,0.000000,0.000000,0.250000,0,0);}
.mf9_c00421{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);}
.m99_c00421{transform:matrix(0.145022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145022,0.000000,0.000000,0.250000,0,0);}
.mca_c00421{transform:matrix(0.146342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146342,0.000000,0.000000,0.250000,0,0);}
.mb_c00421{transform:matrix(0.147059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147059,0.000000,0.000000,0.250000,0,0);}
.maa_c00421{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00421{transform:matrix(0.152439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152439,0.000000,0.000000,0.250000,0,0);}
.m7a_c00421{transform:matrix(0.152781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152781,0.000000,0.000000,0.250000,0,0);}
.md9_c00421{transform:matrix(0.155778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155778,0.000000,0.000000,0.250000,0,0);}
.me5_c00421{transform:matrix(0.157491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157491,0.000000,0.000000,0.250000,0,0);}
.m10b_c00421{transform:matrix(0.158537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158537,0.000000,0.000000,0.250000,0,0);}
.mef_c00421{transform:matrix(0.159927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159927,0.000000,0.000000,0.250000,0,0);}
.m1_c00421{transform:matrix(0.160049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160049,0.000000,0.000000,0.250000,0,0);}
.mc1_c00421{transform:matrix(0.163986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163986,0.000000,0.000000,0.250000,0,0);}
.mce_c00421{transform:matrix(0.164634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164634,0.000000,0.000000,0.250000,0,0);}
.m86_c00421{transform:matrix(0.168572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168572,0.000000,0.000000,0.250000,0,0);}
.mfb_c00421{transform:matrix(0.169118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169118,0.000000,0.000000,0.250000,0,0);}
.mdd_c00421{transform:matrix(0.170123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170123,0.000000,0.000000,0.250000,0,0);}
.mb3_c00421{transform:matrix(0.170238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170238,0.000000,0.000000,0.250000,0,0);}
.m104_c00421{transform:matrix(0.170732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170732,0.000000,0.000000,0.250000,0,0);}
.mc8_c00421{transform:matrix(0.173781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173781,0.000000,0.000000,0.250000,0,0);}
.m6f_c00421{transform:matrix(0.176521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176521,0.000000,0.000000,0.250000,0,0);}
.m107_c00421{transform:matrix(0.179878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179878,0.000000,0.000000,0.250000,0,0);}
.m109_c00421{transform:matrix(0.181708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181708,0.000000,0.000000,0.250000,0,0);}
.maf_c00421{transform:matrix(0.182143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182143,0.000000,0.000000,0.250000,0,0);}
.mc9_c00421{transform:matrix(0.182926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182926,0.000000,0.000000,0.250000,0,0);}
.mb4_c00421{transform:matrix(0.183361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183361,0.000000,0.000000,0.250000,0,0);}
.md5_c00421{transform:matrix(0.185090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185090,0.000000,0.000000,0.250000,0,0);}
.ma7_c00421{transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);}
.m8_c00421{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m95_c00421{transform:matrix(0.188017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188017,0.000000,0.000000,0.250000,0,0);}
.mac_c00421{transform:matrix(0.189285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189285,0.000000,0.000000,0.250000,0,0);}
.m37_c00421{transform:matrix(0.190404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190404,0.000000,0.000000,0.250000,0,0);}
.mec_c00421{transform:matrix(0.194567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194567,0.000000,0.000000,0.250000,0,0);}
.m7_c00421{transform:matrix(0.195588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195588,0.000000,0.000000,0.250000,0,0);}
.m6_c00421{transform:matrix(0.204192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204192,0.000000,0.000000,0.250000,0,0);}
.m6d_c00421{transform:matrix(0.206475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206475,0.000000,0.000000,0.250000,0,0);}
.m3f_c00421{transform:matrix(0.206949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206949,0.000000,0.000000,0.250000,0,0);}
.m85_c00421{transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);}
.m36_c00421{transform:matrix(0.207255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207255,0.000000,0.000000,0.250000,0,0);}
.mad_c00421{transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);}
.mc4_c00421{transform:matrix(0.213067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213067,0.000000,0.000000,0.250000,0,0);}
.m9_c00421{transform:matrix(0.215686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215686,0.000000,0.000000,0.250000,0,0);}
.m87_c00421{transform:matrix(0.219111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219111,0.000000,0.000000,0.250000,0,0);}
.mf3_c00421{transform:matrix(0.219247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219247,0.000000,0.000000,0.250000,0,0);}
.m96_c00421{transform:matrix(0.219698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219698,0.000000,0.000000,0.250000,0,0);}
.mfe_c00421{transform:matrix(0.220877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220877,0.000000,0.000000,0.250000,0,0);}
.m98_c00421{transform:matrix(0.221212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221212,0.000000,0.000000,0.250000,0,0);}
.mda_c00421{transform:matrix(0.221902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221902,0.000000,0.000000,0.250000,0,0);}
.md6_c00421{transform:matrix(0.223675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223675,0.000000,0.000000,0.250000,0,0);}
.m27_c00421{transform:matrix(0.224150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224150,0.000000,0.000000,0.250000,0,0);}
.mf6_c00421{transform:matrix(0.232397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232397,0.000000,0.000000,0.250000,0,0);}
.m18_c00421{transform:matrix(0.236158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236158,0.000000,0.000000,0.250000,0,0);}
.mf4_c00421{transform:matrix(0.236827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236827,0.000000,0.000000,0.250000,0,0);}
.m2_c00421{transform:matrix(0.238106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238106,0.000000,0.000000,0.250000,0,0);}
.mbd_c00421{transform:matrix(0.245573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245573,0.000000,0.000000,0.250000,0,0);}
.m4b_c00421{transform:matrix(0.248019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248019,0.000000,0.000000,0.250000,0,0);}
.med_c00421{transform:matrix(0.248572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248572,0.000000,0.000000,0.250000,0,0);}
.m0_c00421{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00421{transform:matrix(0.250536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250536,0.000000,0.000000,0.250000,0,0);}
.m1e_c00421{transform:matrix(0.250838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250838,0.000000,0.000000,0.250000,0,0);}
.mba_c00421{transform:matrix(0.254004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254004,0.000000,0.000000,0.250000,0,0);}
.m8e_c00421{transform:matrix(0.254654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254654,0.000000,0.000000,0.250000,0,0);}
.m8f_c00421{transform:matrix(0.256848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256848,0.000000,0.000000,0.250000,0,0);}
.m1c_c00421{transform:matrix(0.258313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258313,0.000000,0.000000,0.250000,0,0);}
.md4_c00421{transform:matrix(0.260560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260560,0.000000,0.000000,0.250000,0,0);}
.m1d_c00421{transform:matrix(0.262074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262074,0.000000,0.000000,0.250000,0,0);}
.m102_c00421{transform:matrix(0.263928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263928,0.000000,0.000000,0.250000,0,0);}
.md2_c00421{transform:matrix(0.263954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263954,0.000000,0.000000,0.250000,0,0);}
.m4_c00421{transform:matrix(0.264939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264939,0.000000,0.000000,0.250000,0,0);}
.mb9_c00421{transform:matrix(0.265021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265021,0.000000,0.000000,0.250000,0,0);}
.m23_c00421{transform:matrix(0.265297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265297,0.000000,0.000000,0.250000,0,0);}
.md3_c00421{transform:matrix(0.266468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266468,0.000000,0.000000,0.250000,0,0);}
.m67_c00421{transform:matrix(0.266959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266959,0.000000,0.000000,0.250000,0,0);}
.mf7_c00421{transform:matrix(0.270282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270282,0.000000,0.000000,0.250000,0,0);}
.m10f_c00421{transform:matrix(0.270604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270604,0.000000,0.000000,0.250000,0,0);}
.mff_c00421{transform:matrix(0.270895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270895,0.000000,0.000000,0.250000,0,0);}
.m90_c00421{transform:matrix(0.271358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271358,0.000000,0.000000,0.250000,0,0);}
.mee_c00421{transform:matrix(0.271377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271377,0.000000,0.000000,0.250000,0,0);}
.m7e_c00421{transform:matrix(0.272692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272692,0.000000,0.000000,0.250000,0,0);}
.m6b_c00421{transform:matrix(0.273674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273674,0.000000,0.000000,0.250000,0,0);}
.m8b_c00421{transform:matrix(0.274772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274772,0.000000,0.000000,0.250000,0,0);}
.mf5_c00421{transform:matrix(0.275215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275215,0.000000,0.000000,0.250000,0,0);}
.m5b_c00421{transform:matrix(0.276397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276397,0.000000,0.000000,0.250000,0,0);}
.m5_c00421{transform:matrix(0.276745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276745,0.000000,0.000000,0.250000,0,0);}
.m42_c00421{transform:matrix(0.278214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278214,0.000000,0.000000,0.250000,0,0);}
.m62_c00421{transform:matrix(0.278552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278552,0.000000,0.000000,0.250000,0,0);}
.m10e_c00421{transform:matrix(0.279510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279510,0.000000,0.000000,0.250000,0,0);}
.mbf_c00421{transform:matrix(0.280225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280225,0.000000,0.000000,0.250000,0,0);}
.m5a_c00421{transform:matrix(0.280311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280311,0.000000,0.000000,0.250000,0,0);}
.m70_c00421{transform:matrix(0.280505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280505,0.000000,0.000000,0.250000,0,0);}
.m22_c00421{transform:matrix(0.280534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280534,0.000000,0.000000,0.250000,0,0);}
.m103_c00421{transform:matrix(0.280629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280629,0.000000,0.000000,0.250000,0,0);}
.m8c_c00421{transform:matrix(0.280697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280697,0.000000,0.000000,0.250000,0,0);}
.me_c00421{transform:matrix(0.281149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281149,0.000000,0.000000,0.250000,0,0);}
.m1a_c00421{transform:matrix(0.281189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281189,0.000000,0.000000,0.250000,0,0);}
.m51_c00421{transform:matrix(0.281449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281449,0.000000,0.000000,0.250000,0,0);}
.m91_c00421{transform:matrix(0.281453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281453,0.000000,0.000000,0.250000,0,0);}
.md_c00421{transform:matrix(0.282201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282201,0.000000,0.000000,0.250000,0,0);}
.m7b_c00421{transform:matrix(0.282338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282338,0.000000,0.000000,0.250000,0,0);}
.m41_c00421{transform:matrix(0.284080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284080,0.000000,0.000000,0.250000,0,0);}
.mde_c00421{transform:matrix(0.284155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284155,0.000000,0.000000,0.250000,0,0);}
.m78_c00421{transform:matrix(0.284684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284684,0.000000,0.000000,0.250000,0,0);}
.m61_c00421{transform:matrix(0.285063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285063,0.000000,0.000000,0.250000,0,0);}
.m73_c00421{transform:matrix(0.285529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285529,0.000000,0.000000,0.250000,0,0);}
.m47_c00421{transform:matrix(0.285899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285899,0.000000,0.000000,0.250000,0,0);}
.m4d_c00421{transform:matrix(0.286541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286541,0.000000,0.000000,0.250000,0,0);}
.m54_c00421{transform:matrix(0.286632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286632,0.000000,0.000000,0.250000,0,0);}
.m39_c00421{transform:matrix(0.287241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287241,0.000000,0.000000,0.250000,0,0);}
.m8a_c00421{transform:matrix(0.287919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287919,0.000000,0.000000,0.250000,0,0);}
.me7_c00421{transform:matrix(0.288080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288080,0.000000,0.000000,0.250000,0,0);}
.m40_c00421{transform:matrix(0.288231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288231,0.000000,0.000000,0.250000,0,0);}
.ma1_c00421{transform:matrix(0.289497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289497,0.000000,0.000000,0.250000,0,0);}
.mf1_c00421{transform:matrix(0.289622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289622,0.000000,0.000000,0.250000,0,0);}
.m17_c00421{transform:matrix(0.289782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289782,0.000000,0.000000,0.250000,0,0);}
.m74_c00421{transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);}
.m13_c00421{transform:matrix(0.290926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290926,0.000000,0.000000,0.250000,0,0);}
.m101_c00421{transform:matrix(0.291426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291426,0.000000,0.000000,0.250000,0,0);}
.me4_c00421{transform:matrix(0.291431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291431,0.000000,0.000000,0.250000,0,0);}
.m2e_c00421{transform:matrix(0.292280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292280,0.000000,0.000000,0.250000,0,0);}
.mbc_c00421{transform:matrix(0.292483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292483,0.000000,0.000000,0.250000,0,0);}
.m83_c00421{transform:matrix(0.292557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292557,0.000000,0.000000,0.250000,0,0);}
.mcb_c00421{transform:matrix(0.292683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292683,0.000000,0.000000,0.250000,0,0);}
.m44_c00421{transform:matrix(0.293039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293039,0.000000,0.000000,0.250000,0,0);}
.mb0_c00421{transform:matrix(0.293295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293295,0.000000,0.000000,0.250000,0,0);}
.mb5_c00421{transform:matrix(0.293835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293835,0.000000,0.000000,0.250000,0,0);}
.m92_c00421{transform:matrix(0.294448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294448,0.000000,0.000000,0.250000,0,0);}
.m69_c00421{transform:matrix(0.294656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294656,0.000000,0.000000,0.250000,0,0);}
.m34_c00421{transform:matrix(0.295087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295087,0.000000,0.000000,0.250000,0,0);}
.m2b_c00421{transform:matrix(0.295335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295335,0.000000,0.000000,0.250000,0,0);}
.m57_c00421{transform:matrix(0.295424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295424,0.000000,0.000000,0.250000,0,0);}
.ma0_c00421{transform:matrix(0.295846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295846,0.000000,0.000000,0.250000,0,0);}
.m25_c00421{transform:matrix(0.295990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295990,0.000000,0.000000,0.250000,0,0);}
.m2c_c00421{transform:matrix(0.296128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296128,0.000000,0.000000,0.250000,0,0);}
.m15_c00421{transform:matrix(0.296209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296209,0.000000,0.000000,0.250000,0,0);}
.mb6_c00421{transform:matrix(0.297601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297601,0.000000,0.000000,0.250000,0,0);}
.m9f_c00421{transform:matrix(0.297691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297691,0.000000,0.000000,0.250000,0,0);}
.m94_c00421{transform:matrix(0.298170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298170,0.000000,0.000000,0.250000,0,0);}
.m38_c00421{transform:matrix(0.299518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299518,0.000000,0.000000,0.250000,0,0);}
.m100_c00421{transform:matrix(0.299669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299669,0.000000,0.000000,0.250000,0,0);}
.m43_c00421{transform:matrix(0.299800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299800,0.000000,0.000000,0.250000,0,0);}
.m56_c00421{transform:matrix(0.300210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300210,0.000000,0.000000,0.250000,0,0);}
.mfd_c00421{transform:matrix(0.302641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302641,0.000000,0.000000,0.250000,0,0);}
.m6a_c00421{transform:matrix(0.303877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303877,0.000000,0.000000,0.250000,0,0);}
.m5e_c00421{transform:matrix(0.303897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303897,0.000000,0.000000,0.250000,0,0);}
.m60_c00421{transform:matrix(0.304797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304797,0.000000,0.000000,0.250000,0,0);}
.mf0_c00421{transform:matrix(0.305628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305628,0.000000,0.000000,0.250000,0,0);}
.m58_c00421{transform:matrix(0.305928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305928,0.000000,0.000000,0.250000,0,0);}
.mea_c00421{transform:matrix(0.306951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306951,0.000000,0.000000,0.250000,0,0);}
.m2d_c00421{transform:matrix(0.307626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307626,0.000000,0.000000,0.250000,0,0);}
.m1f_c00421{transform:matrix(0.308908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308908,0.000000,0.000000,0.250000,0,0);}
.m26_c00421{transform:matrix(0.310464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310464,0.000000,0.000000,0.250000,0,0);}
.m21_c00421{transform:matrix(0.310810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310810,0.000000,0.000000,0.250000,0,0);}
.m4f_c00421{transform:matrix(0.311431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311431,0.000000,0.000000,0.250000,0,0);}
.m108_c00421{transform:matrix(0.312733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312733,0.000000,0.000000,0.250000,0,0);}
.mdc_c00421{transform:matrix(0.313088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313088,0.000000,0.000000,0.250000,0,0);}
.m64_c00421{transform:matrix(0.313140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313140,0.000000,0.000000,0.250000,0,0);}
.m63_c00421{transform:matrix(0.313711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313711,0.000000,0.000000,0.250000,0,0);}
.m59_c00421{transform:matrix(0.313801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313801,0.000000,0.000000,0.250000,0,0);}
.mfc_c00421{transform:matrix(0.314584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314584,0.000000,0.000000,0.250000,0,0);}
.m33_c00421{transform:matrix(0.315382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315382,0.000000,0.000000,0.250000,0,0);}
.mdb_c00421{transform:matrix(0.315725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315725,0.000000,0.000000,0.250000,0,0);}
.m9e_c00421{transform:matrix(0.316289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316289,0.000000,0.000000,0.250000,0,0);}
.md8_c00421{transform:matrix(0.316532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316532,0.000000,0.000000,0.250000,0,0);}
.ma9_c00421{transform:matrix(0.316883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316883,0.000000,0.000000,0.250000,0,0);}
.m30_c00421{transform:matrix(0.317275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317275,0.000000,0.000000,0.250000,0,0);}
.m81_c00421{transform:matrix(0.317595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317595,0.000000,0.000000,0.250000,0,0);}
.m55_c00421{transform:matrix(0.318001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318001,0.000000,0.000000,0.250000,0,0);}
.m93_c00421{transform:matrix(0.318314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318314,0.000000,0.000000,0.250000,0,0);}
.m3b_c00421{transform:matrix(0.318463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318463,0.000000,0.000000,0.250000,0,0);}
.mf2_c00421{transform:matrix(0.318540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318540,0.000000,0.000000,0.250000,0,0);}
.md7_c00421{transform:matrix(0.319722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319722,0.000000,0.000000,0.250000,0,0);}
.ma2_c00421{transform:matrix(0.320656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320656,0.000000,0.000000,0.250000,0,0);}
.m10c_c00421{transform:matrix(0.322582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322582,0.000000,0.000000,0.250000,0,0);}
.m71_c00421{transform:matrix(0.323169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323169,0.000000,0.000000,0.250000,0,0);}
.md0_c00421{transform:matrix(0.324116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324116,0.000000,0.000000,0.250000,0,0);}
.m3a_c00421{transform:matrix(0.324409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324409,0.000000,0.000000,0.250000,0,0);}
.m49_c00421{transform:matrix(0.324723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324723,0.000000,0.000000,0.250000,0,0);}
.m3d_c00421{transform:matrix(0.326119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326119,0.000000,0.000000,0.250000,0,0);}
.mcf_c00421{transform:matrix(0.326545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326545,0.000000,0.000000,0.250000,0,0);}
.m66_c00421{transform:matrix(0.327145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327145,0.000000,0.000000,0.250000,0,0);}
.m3e_c00421{transform:matrix(0.327257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327257,0.000000,0.000000,0.250000,0,0);}
.m16_c00421{transform:matrix(0.328573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328573,0.000000,0.000000,0.250000,0,0);}
.ma8_c00421{transform:matrix(0.328634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328634,0.000000,0.000000,0.250000,0,0);}
.m20_c00421{transform:matrix(0.329509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329509,0.000000,0.000000,0.250000,0,0);}
.m50_c00421{transform:matrix(0.329710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329710,0.000000,0.000000,0.250000,0,0);}
.m97_c00421{transform:matrix(0.329866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329866,0.000000,0.000000,0.250000,0,0);}
.mb8_c00421{transform:matrix(0.329878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329878,0.000000,0.000000,0.250000,0,0);}
.m72_c00421{transform:matrix(0.329904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329904,0.000000,0.000000,0.250000,0,0);}
.m46_c00421{transform:matrix(0.330127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330127,0.000000,0.000000,0.250000,0,0);}
.meb_c00421{transform:matrix(0.330470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330470,0.000000,0.000000,0.250000,0,0);}
.mf_c00421{transform:matrix(0.331014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331014,0.000000,0.000000,0.250000,0,0);}
.m82_c00421{transform:matrix(0.332120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332120,0.000000,0.000000,0.250000,0,0);}
.m19_c00421{transform:matrix(0.332714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332714,0.000000,0.000000,0.250000,0,0);}
.m75_c00421{transform:matrix(0.332848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332848,0.000000,0.000000,0.250000,0,0);}
.m77_c00421{transform:matrix(0.333870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333870,0.000000,0.000000,0.250000,0,0);}
.m2f_c00421{transform:matrix(0.335115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335115,0.000000,0.000000,0.250000,0,0);}
.m4e_c00421{transform:matrix(0.335974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335974,0.000000,0.000000,0.250000,0,0);}
.m3_c00421{transform:matrix(0.338395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338395,0.000000,0.000000,0.250000,0,0);}
.mf8_c00421{transform:matrix(0.339503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339503,0.000000,0.000000,0.250000,0,0);}
.me9_c00421{transform:matrix(0.339720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339720,0.000000,0.000000,0.250000,0,0);}
.m32_c00421{transform:matrix(0.339750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339750,0.000000,0.000000,0.250000,0,0);}
.m53_c00421{transform:matrix(0.341061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341061,0.000000,0.000000,0.250000,0,0);}
.m68_c00421{transform:matrix(0.341604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341604,0.000000,0.000000,0.250000,0,0);}
.m52_c00421{transform:matrix(0.342280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342280,0.000000,0.000000,0.250000,0,0);}
.m45_c00421{transform:matrix(0.342392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342392,0.000000,0.000000,0.250000,0,0);}
.m76_c00421{transform:matrix(0.344196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344196,0.000000,0.000000,0.250000,0,0);}
.m8d_c00421{transform:matrix(0.344671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344671,0.000000,0.000000,0.250000,0,0);}
.m4a_c00421{transform:matrix(0.344771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344771,0.000000,0.000000,0.250000,0,0);}
.md1_c00421{transform:matrix(0.345746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345746,0.000000,0.000000,0.250000,0,0);}
.mdf_c00421{transform:matrix(0.348329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348329,0.000000,0.000000,0.250000,0,0);}
.me8_c00421{transform:matrix(0.349522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349522,0.000000,0.000000,0.250000,0,0);}
.me0_c00421{transform:matrix(0.350159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350159,0.000000,0.000000,0.250000,0,0);}
.m88_c00421{transform:matrix(0.350298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350298,0.000000,0.000000,0.250000,0,0);}
.m5c_c00421{transform:matrix(0.353079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353079,0.000000,0.000000,0.250000,0,0);}
.m89_c00421{transform:matrix(0.353213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353213,0.000000,0.000000,0.250000,0,0);}
.m84_c00421{transform:matrix(0.353899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353899,0.000000,0.000000,0.250000,0,0);}
.mb2_c00421{transform:matrix(0.353944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353944,0.000000,0.000000,0.250000,0,0);}
.m9d_c00421{transform:matrix(0.355548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355548,0.000000,0.000000,0.250000,0,0);}
.m7d_c00421{transform:matrix(0.356623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356623,0.000000,0.000000,0.250000,0,0);}
.m7f_c00421{transform:matrix(0.361549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361549,0.000000,0.000000,0.250000,0,0);}
.m1b_c00421{transform:matrix(0.361780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361780,0.000000,0.000000,0.250000,0,0);}
.m7c_c00421{transform:matrix(0.363663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363663,0.000000,0.000000,0.250000,0,0);}
.m11_c00421{transform:matrix(0.365357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365357,0.000000,0.000000,0.250000,0,0);}
.m65_c00421{transform:matrix(0.365360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365360,0.000000,0.000000,0.250000,0,0);}
.m4c_c00421{transform:matrix(0.365654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365654,0.000000,0.000000,0.250000,0,0);}
.ma4_c00421{transform:matrix(0.365727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365727,0.000000,0.000000,0.250000,0,0);}
.m5f_c00421{transform:matrix(0.367101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367101,0.000000,0.000000,0.250000,0,0);}
.m6c_c00421{transform:matrix(0.367371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367371,0.000000,0.000000,0.250000,0,0);}
.m48_c00421{transform:matrix(0.367888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367888,0.000000,0.000000,0.250000,0,0);}
.mb1_c00421{transform:matrix(0.370126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370126,0.000000,0.000000,0.250000,0,0);}
.m10_c00421{transform:matrix(0.371205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371205,0.000000,0.000000,0.250000,0,0);}
.ma3_c00421{transform:matrix(0.373467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373467,0.000000,0.000000,0.250000,0,0);}
.m6e_c00421{transform:matrix(0.374487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374487,0.000000,0.000000,0.250000,0,0);}
.m10d_c00421{transform:matrix(0.376156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376156,0.000000,0.000000,0.250000,0,0);}
.m79_c00421{transform:matrix(0.378291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378291,0.000000,0.000000,0.250000,0,0);}
.mb7_c00421{transform:matrix(0.380471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380471,0.000000,0.000000,0.250000,0,0);}
.mc3_c00421{transform:matrix(0.387573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387573,0.000000,0.000000,0.250000,0,0);}
.me6_c00421{transform:matrix(0.390863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390863,0.000000,0.000000,0.250000,0,0);}
.m14_c00421{transform:matrix(0.402878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402878,0.000000,0.000000,0.250000,0,0);}
.mc6_c00421{transform:matrix(0.413413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413413,0.000000,0.000000,0.250000,0,0);}
.mbe_c00421{transform:matrix(0.433227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433227,0.000000,0.000000,0.250000,0,0);}
.mbb_c00421{transform:matrix(0.438053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438053,0.000000,0.000000,0.250000,0,0);}
.m31_c00421{transform:matrix(0.444859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444859,0.000000,0.000000,0.250000,0,0);}
.m35_c00421{transform:matrix(0.503835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503835,0.000000,0.000000,0.250000,0,0);}
.me1_c00421{transform:matrix(0.526942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526942,0.000000,0.000000,0.250000,0,0);}
.m12_c00421{transform:matrix(0.822062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.822062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.822062,0.000000,0.000000,0.250000,0,0);}
.v0_c00421{vertical-align:0.000000px;}
.ls8_c00421{letter-spacing:-2.515590px;}
.ls7_c00421{letter-spacing:-2.383927px;}
.ls31_c00421{letter-spacing:-2.342340px;}
.ls2a_c00421{letter-spacing:-2.321550px;}
.ls1e_c00421{letter-spacing:-2.314627px;}
.ls18_c00421{letter-spacing:-2.037420px;}
.ls12_c00421{letter-spacing:-1.962160px;}
.ls2e_c00421{letter-spacing:-1.746367px;}
.ls34_c00421{letter-spacing:-1.607767px;}
.ls21_c00421{letter-spacing:-1.279357px;}
.ls36_c00421{letter-spacing:-1.219680px;}
.ls6_c00421{letter-spacing:-0.869143px;}
.lsc_c00421{letter-spacing:-0.122186px;}
.ls24_c00421{letter-spacing:-0.114998px;}
.ls1f_c00421{letter-spacing:-0.106029px;}
.lsa_c00421{letter-spacing:0.000000px;}
.ls35_c00421{letter-spacing:0.251559px;}
.ls2b_c00421{letter-spacing:0.301871px;}
.ls4_c00421{letter-spacing:0.517493px;}
.ls39_c00421{letter-spacing:0.733115px;}
.ls11_c00421{letter-spacing:0.742510px;}
.ls1b_c00421{letter-spacing:1.278585px;}
.ls1d_c00421{letter-spacing:1.564200px;}
.ls32_c00421{letter-spacing:1.623600px;}
.lse_c00421{letter-spacing:1.940400px;}
.ls23_c00421{letter-spacing:1.962160px;}
.ls38_c00421{letter-spacing:2.247310px;}
.ls15_c00421{letter-spacing:2.306700px;}
.ls2c_c00421{letter-spacing:2.425500px;}
.ls13_c00421{letter-spacing:2.465100px;}
.ls2f_c00421{letter-spacing:2.494810px;}
.lsf_c00421{letter-spacing:2.574000px;}
.ls37_c00421{letter-spacing:2.772000px;}
.ls3_c00421{letter-spacing:2.889335px;}
.ls1a_c00421{letter-spacing:2.910600px;}
.ls5_c00421{letter-spacing:2.968396px;}
.ls14_c00421{letter-spacing:2.979900px;}
.ls19_c00421{letter-spacing:2.989810px;}
.ls17_c00421{letter-spacing:3.025895px;}
.lsb_c00421{letter-spacing:3.029400px;}
.ls10_c00421{letter-spacing:3.108600px;}
.ls25_c00421{letter-spacing:3.140894px;}
.ls3a_c00421{letter-spacing:3.247200px;}
.ls1c_c00421{letter-spacing:3.306610px;}
.ls29_c00421{letter-spacing:3.316500px;}
.ls0_c00421{letter-spacing:3.327766px;}
.ls22_c00421{letter-spacing:3.366000px;}
.ls1_c00421{letter-spacing:3.399640px;}
.ls26_c00421{letter-spacing:3.564000px;}
.ls9_c00421{letter-spacing:3.593700px;}
.ls27_c00421{letter-spacing:3.643200px;}
.ls2_c00421{letter-spacing:25.084026px;}
.ls2d_c00421{letter-spacing:47.044800px;}
.lsd_c00421{letter-spacing:48.470598px;}
.ls20_c00421{letter-spacing:49.896198px;}
.ls28_c00421{letter-spacing:52.747398px;}
.ls16_c00421{letter-spacing:54.172998px;}
.ls30_c00421{letter-spacing:58.449798px;}
.ls33_c00421{letter-spacing:62.726400px;}
.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;}
}
.ws1_c00421{word-spacing:-21.368140px;}
.ws5_c00421{word-spacing:-18.485993px;}
.ws2_c00421{word-spacing:-17.968500px;}
.ws0_c00421{word-spacing:-17.232831px;}
.ws3_c00421{word-spacing:-1.457280px;}
.ws6_c00421{word-spacing:0.000000px;}
.ws4_c00421{word-spacing:3.378078px;}
._6_c00421{margin-left:-23.885928px;}
._c_c00421{margin-left:-14.140764px;}
._11_c00421{margin-left:-6.539544px;}
._b_c00421{margin-left:-4.636665px;}
._8_c00421{width:1.365606px;}
._1b_c00421{width:4.216212px;}
._12_c00421{width:5.318676px;}
._14_c00421{width:7.259274px;}
._9_c00421{width:8.319168px;}
._1c_c00421{width:9.415098px;}
._d_c00421{width:10.494000px;}
._e_c00421{width:11.499840px;}
._10_c00421{width:12.865446px;}
._18_c00421{width:13.900234px;}
._f_c00421{width:15.812280px;}
._19_c00421{width:19.047204px;}
._1d_c00421{width:20.623581px;}
._16_c00421{width:22.640508px;}
._2_c00421{width:23.646546px;}
._1a_c00421{width:25.170631px;}
._4_c00421{width:27.327505px;}
._20_c00421{width:29.296040px;}
._1e_c00421{width:32.405357px;}
._15_c00421{width:35.289144px;}
._7_c00421{width:36.368640px;}
._17_c00421{width:37.795824px;}
._5_c00421{width:40.499514px;}
._a_c00421{width:43.843140px;}
._3_c00421{width:45.711864px;}
._13_c00421{width:50.077962px;}
._1_c00421{width:106.401190px;}
._1f_c00421{width:152.390700px;}
._0_c00421{width:167.255368px;}
.fc0_c00421{color:transparent;}
.fs8_c00421{font-size:14.850198px;}
.fs2d_c00421{font-size:23.364000px;}
.fs11_c00421{font-size:31.284000px;}
.fs23_c00421{font-size:32.472000px;}
.fs2f_c00421{font-size:33.660000px;}
.fs1f_c00421{font-size:34.056198px;}
.fs21_c00421{font-size:34.650000px;}
.fs29_c00421{font-size:34.848000px;}
.fs14_c00421{font-size:37.620000px;}
.fs5_c00421{font-size:38.808000px;}
.fs2b_c00421{font-size:44.946198px;}
.fs27_c00421{font-size:45.936198px;}
.fsb_c00421{font-size:46.134000px;}
.fs1c_c00421{font-size:47.044800px;}
.fs28_c00421{font-size:47.916198px;}
.fs4_c00421{font-size:48.470598px;}
.fs1b_c00421{font-size:48.510000px;}
.fs9_c00421{font-size:49.302000px;}
.fs12_c00421{font-size:49.896198px;}
.fs6_c00421{font-size:51.480000px;}
.fs18_c00421{font-size:52.747398px;}
.fsc_c00421{font-size:54.172998px;}
.fs2a_c00421{font-size:55.440000px;}
.fsd_c00421{font-size:58.212000px;}
.fs1e_c00421{font-size:58.449798px;}
.fsa_c00421{font-size:59.598000px;}
.fse_c00421{font-size:59.796198px;}
.fs3_c00421{font-size:60.588000px;}
.fs7_c00421{font-size:62.172000px;}
.fsf_c00421{font-size:62.370000px;}
.fs24_c00421{font-size:62.726400px;}
.fs15_c00421{font-size:64.548000px;}
.fs2e_c00421{font-size:64.944000px;}
.fs26_c00421{font-size:65.340000px;}
.fs10_c00421{font-size:66.132198px;}
.fs19_c00421{font-size:66.330000px;}
.fs22_c00421{font-size:66.924000px;}
.fs13_c00421{font-size:67.320000px;}
.fs1_c00421{font-size:68.112198px;}
.fs1a_c00421{font-size:68.706198px;}
.fs1d_c00421{font-size:68.904000px;}
.fs16_c00421{font-size:71.280000px;}
.fs20_c00421{font-size:71.676198px;}
.fs2_c00421{font-size:71.874000px;}
.fs17_c00421{font-size:72.864000px;}
.fs25_c00421{font-size:73.062198px;}
.fs0_c00421{font-size:73.656198px;}
.fs2c_c00421{font-size:104.148000px;}
.y0_c00421{bottom:0.000000px;}
.y1_c00421{bottom:76.500000px;}
.y22_c00421{bottom:100.416735px;}
.y21_c00421{bottom:139.264335px;}
.y1f_c00421{bottom:168.845535px;}
.y20_c00421{bottom:173.835135px;}
.y1e_c00421{bottom:191.298735px;}
.y1d_c00421{bottom:205.198335px;}
.y1c_c00421{bottom:237.274335px;}
.y1a_c00421{bottom:269.350335px;}
.y1b_c00421{bottom:275.760585px;}
.y16_c00421{bottom:303.203385px;}
.y15_c00421{bottom:335.640735px;}
.y19_c00421{bottom:341.343135px;}
.y18_c00421{bottom:350.965935px;}
.y14_c00421{bottom:368.424585px;}
.y13_c00421{bottom:401.574735px;}
.y12_c00421{bottom:434.714985px;}
.y11_c00421{bottom:466.795935px;}
.y10_c00421{bottom:499.936185px;}
.yf_c00421{bottom:533.442735px;}
.ye_c00421{bottom:565.875135px;}
.y17_c00421{bottom:609.712335px;}
.yd_c00421{bottom:662.815935px;}
.yc_c00421{bottom:694.886985px;}
.yb_c00421{bottom:727.319385px;}
.ya_c00421{bottom:751.915935px;}
.y9_c00421{bottom:759.400335px;}
.y8_c00421{bottom:791.471385px;}
.y7_c00421{bottom:824.621535px;}
.y6_c00421{bottom:858.835935px;}
.y5_c00421{bottom:891.268335px;}
.y4_c00421{bottom:923.695785px;}
.y3_c00421{bottom:926.190585px;}
.y2_c00421{bottom:1078.016985px;}
.ha_c00421{height:14.567406px;}
.hb_c00421{height:14.574657px;}
.h32_c00421{height:24.367922px;}
.h1f_c00421{height:31.331837px;}
.h6_c00421{height:32.281418px;}
.h13_c00421{height:32.628234px;}
.h34_c00421{height:33.035449px;}
.h15_c00421{height:33.230868px;}
.h27_c00421{height:33.867281px;}
.h2c_c00421{height:34.201406px;}
.h1b_c00421{height:35.129767px;}
.h23_c00421{height:35.519550px;}
.hf_c00421{height:36.079217px;}
.h25_c00421{height:36.138867px;}
.h7_c00421{height:38.087930px;}
.h22_c00421{height:38.927565px;}
.h17_c00421{height:39.236484px;}
.h31_c00421{height:40.475531px;}
.h29_c00421{height:41.775782px;}
.h2b_c00421{height:45.083866px;}
.he_c00421{height:45.277998px;}
.h2f_c00421{height:46.877480px;}
.h1e_c00421{height:47.609912px;}
.hc_c00421{height:48.387217px;}
.h20_c00421{height:48.970390px;}
.h8_c00421{height:53.692031px;}
.h10_c00421{height:57.131895px;}
.h2d_c00421{height:57.822188px;}
.hd_c00421{height:62.158852px;}
.h11_c00421{height:62.365566px;}
.h5_c00421{height:63.191391px;}
.h9_c00421{height:64.843453px;}
.h12_c00421{height:64.905136px;}
.h14_c00421{height:65.049961px;}
.h1c_c00421{height:65.099268px;}
.h18_c00421{height:67.321547px;}
.h1d_c00421{height:67.431376px;}
.h21_c00421{height:67.625508px;}
.h33_c00421{height:67.734563px;}
.h2a_c00421{height:68.147578px;}
.h26_c00421{height:69.799641px;}
.h19_c00421{height:69.957422px;}
.h16_c00421{height:70.212656px;}
.h24_c00421{height:70.346269px;}
.h4_c00421{height:70.540400px;}
.h3_c00421{height:71.038894px;}
.h2e_c00421{height:71.512031px;}
.h2_c00421{height:72.289530px;}
.h1a_c00421{height:73.433250px;}
.h28_c00421{height:74.962336px;}
.h30_c00421{height:108.623109px;}
.h1_c00421{height:1110.000000px;}
.h0_c00421{height:1263.000000px;}
.w1_c00421{width:775.500000px;}
.w0_c00421{width:892.500000px;}
.x0_c00421{left:0.000000px;}
.x1_c00421{left:58.500000px;}
.x1a_c00421{left:74.622885px;}
.x34_c00421{left:76.033635px;}
.x8e_c00421{left:77.632485px;}
.x7e_c00421{left:78.919485px;}
.x92_c00421{left:93.051735px;}
.x63_c00421{left:96.383085px;}
.x9a_c00421{left:99.531285px;}
.x7f_c00421{left:103.877385px;}
.x4d_c00421{left:107.401785px;}
.x80_c00421{left:108.634335px;}
.x1b_c00421{left:111.099435px;}
.x3c_c00421{left:118.108635px;}
.x51_c00421{left:119.504535px;}
.x45_c00421{left:128.642235px;}
.x4_c00421{left:130.142085px;}
.x6d_c00421{left:131.567685px;}
.x1c_c00421{left:141.452835px;}
.x3d_c00421{left:150.922185px;}
.x89_c00421{left:152.986335px;}
.x4e_c00421{left:162.292335px;}
.x5_c00421{left:163.683285px;}
.x2b_c00421{left:173.880285px;}
.x35_c00421{left:175.429635px;}
.x52_c00421{left:183.587235px;}
.x4f_c00421{left:184.696035px;}
.x6_c00421{left:185.819685px;}
.x74_c00421{left:188.522385px;}
.x75_c00421{left:189.952935px;}
.x3e_c00421{left:196.323585px;}
.x8a_c00421{left:205.926585px;}
.x1d_c00421{left:207.574935px;}
.x7_c00421{left:209.619285px;}
.x59_c00421{left:217.865985px;}
.x1e_c00421{left:219.276735px;}
.x8_c00421{left:228.112485px;}
.x46_c00421{left:229.508385px;}
.x8f_c00421{left:230.528085px;}
.x1f_c00421{left:240.150885px;}
.x81_c00421{left:242.343735px;}
.x95_c00421{left:243.546585px;}
.x36_c00421{left:251.397285px;}
.x96_c00421{left:252.476385px;}
.x2c_c00421{left:262.851585px;}
.x6b_c00421{left:263.856435px;}
.x20_c00421{left:273.132735px;}
.x6f_c00421{left:274.196985px;}
.x9_c00421{left:275.464185px;}
.x37_c00421{left:284.681085px;}
.x9b_c00421{left:286.537335px;}
.x64_c00421{left:288.190635px;}
.x65_c00421{left:290.754735px;}
.xa_c00421{left:294.650385px;}
.x76_c00421{left:295.892835px;}
.x5d_c00421{left:306.253185px;}
.x6c_c00421{left:307.644135px;}
.x21_c00421{left:317.455035px;}
.x97_c00421{left:322.929735px;}
.x53_c00421{left:329.097435px;}
.xb_c00421{left:339.833985px;}
.x2d_c00421{left:341.086335px;}
.x5e_c00421{left:349.253835px;}
.x3f_c00421{left:350.446785px;}
.x54_c00421{left:360.985335px;}
.x66_c00421{left:362.203035px;}
.x8b_c00421{left:363.316785px;}
.x5c_c00421{left:373.295985px;}
.xc_c00421{left:384.185985px;}
.x82_c00421{left:387.631185px;}
.x5f_c00421{left:394.670085px;}
.x7b_c00421{left:397.828185px;}
.x55_c00421{left:405.703635px;}
.x77_c00421{left:407.119335px;}
.x22_c00421{left:408.173685px;}
.x47_c00421{left:415.504635px;}
.x5a_c00421{left:416.633235px;}
.x23_c00421{left:426.711435px;}
.x48_c00421{left:427.805385px;}
.x78_c00421{left:430.587285px;}
.xd_c00421{left:432.304935px;}
.x70_c00421{left:439.244835px;}
.x7c_c00421{left:440.828835px;}
.x56_c00421{left:448.308285px;}
.xe_c00421{left:449.763585px;}
.x2e_c00421{left:451.614885px;}
.x71_c00421{left:459.381435px;}
.x57_c00421{left:460.712985px;}
.x58_c00421{left:469.316085px;}
.x40_c00421{left:470.959485px;}
.x9c_c00421{left:472.310835px;}
.x83_c00421{left:474.607635px;}
.xf_c00421{left:483.270135px;}
.x90_c00421{left:484.448235px;}
.x60_c00421{left:493.759185px;}
.x24_c00421{left:499.501185px;}
.x25_c00421{left:503.881935px;}
.x10_c00421{left:505.010535px;}
.x84_c00421{left:506.079735px;}
.x41_c00421{left:515.539185px;}
.x7d_c00421{left:517.256835px;}
.x11_c00421{left:519.622935px;}
.x49_c00421{left:527.409285px;}
.x42_c00421{left:528.503235px;}
.x26_c00421{left:538.076535px;}
.x5b_c00421{left:539.551635px;}
.x12_c00421{left:548.288385px;}
.x98_c00421{left:549.317985px;}
.x2f_c00421{left:559.079385px;}
.x91_c00421{left:560.801985px;}
.x9d_c00421{left:570.182235px;}
.x67_c00421{left:571.657335px;}
.x13_c00421{left:580.894035px;}
.x38_c00421{left:582.453285px;}
.x4a_c00421{left:592.922535px;}
.x93_c00421{left:593.971935px;}
.x18_c00421{left:596.907285px;}
.x14_c00421{left:598.402185px;}
.x8c_c00421{left:602.213685px;}
.x68_c00421{left:604.446135px;}
.x27_c00421{left:613.964985px;}
.x15_c00421{left:615.152985px;}
.x79_c00421{left:616.207335px;}
.x72_c00421{left:617.984385px;}
.x19_c00421{left:619.023885px;}
.x99_c00421{left:623.548185px;}
.x43_c00421{left:625.087635px;}
.x73_c00421{left:626.542935px;}
.x4b_c00421{left:628.389285px;}
.x30_c00421{left:636.878535px;}
.x28_c00421{left:647.021085px;}
.x31_c00421{left:648.278385px;}
.x39_c00421{left:658.747635px;}
.x16_c00421{left:660.692985px;}
.x61_c00421{left:663.964935px;}
.x2_c00421{left:669.439635px;}
.x69_c00421{left:670.805835px;}
.x8d_c00421{left:672.157185px;}
.x62_c00421{left:680.324685px;}
.x3a_c00421{left:682.765035px;}
.x44_c00421{left:684.200535px;}
.x7a_c00421{left:689.902935px;}
.x29_c00421{left:691.279035px;}
.x50_c00421{left:693.699585px;}
.x3_c00421{left:702.688785px;}
.x32_c00421{left:703.723335px;}
.x6e_c00421{left:708.158535px;}
.x3b_c00421{left:711.767085px;}
.x17_c00421{left:713.242185px;}
.x6a_c00421{left:714.291585px;}
.x2a_c00421{left:717.182385px;}
.x94_c00421{left:719.201985px;}
.x85_c00421{left:723.805485px;}
.x33_c00421{left:725.231085px;}
.x4c_c00421{left:736.467585px;}
.x9e_c00421{left:738.803985px;}
.x86_c00421{left:774.592485px;}
.x87_c00421{left:775.597335px;}
.x88_c00421{left:777.057585px;}
@media print{
.v0_c00421{vertical-align:0.000000pt;}
.ls8_c00421{letter-spacing:-2.236080pt;}
.ls7_c00421{letter-spacing:-2.119046pt;}
.ls31_c00421{letter-spacing:-2.082080pt;}
.ls2a_c00421{letter-spacing:-2.063600pt;}
.ls1e_c00421{letter-spacing:-2.057446pt;}
.ls18_c00421{letter-spacing:-1.811040pt;}
.ls12_c00421{letter-spacing:-1.744142pt;}
.ls2e_c00421{letter-spacing:-1.552326pt;}
.ls34_c00421{letter-spacing:-1.429126pt;}
.ls21_c00421{letter-spacing:-1.137206pt;}
.ls36_c00421{letter-spacing:-1.084160pt;}
.ls6_c00421{letter-spacing:-0.772572pt;}
.lsc_c00421{letter-spacing:-0.108610pt;}
.ls24_c00421{letter-spacing:-0.102221pt;}
.ls1f_c00421{letter-spacing:-0.094248pt;}
.lsa_c00421{letter-spacing:0.000000pt;}
.ls35_c00421{letter-spacing:0.223608pt;}
.ls2b_c00421{letter-spacing:0.268330pt;}
.ls4_c00421{letter-spacing:0.459994pt;}
.ls39_c00421{letter-spacing:0.651658pt;}
.ls11_c00421{letter-spacing:0.660009pt;}
.ls1b_c00421{letter-spacing:1.136520pt;}
.ls1d_c00421{letter-spacing:1.390400pt;}
.ls32_c00421{letter-spacing:1.443200pt;}
.lse_c00421{letter-spacing:1.724800pt;}
.ls23_c00421{letter-spacing:1.744142pt;}
.ls38_c00421{letter-spacing:1.997609pt;}
.ls15_c00421{letter-spacing:2.050400pt;}
.ls2c_c00421{letter-spacing:2.156000pt;}
.ls13_c00421{letter-spacing:2.191200pt;}
.ls2f_c00421{letter-spacing:2.217609pt;}
.lsf_c00421{letter-spacing:2.288000pt;}
.ls37_c00421{letter-spacing:2.464000pt;}
.ls3_c00421{letter-spacing:2.568298pt;}
.ls1a_c00421{letter-spacing:2.587200pt;}
.ls5_c00421{letter-spacing:2.638574pt;}
.ls14_c00421{letter-spacing:2.648800pt;}
.ls19_c00421{letter-spacing:2.657609pt;}
.ls17_c00421{letter-spacing:2.689685pt;}
.lsb_c00421{letter-spacing:2.692800pt;}
.ls10_c00421{letter-spacing:2.763200pt;}
.ls25_c00421{letter-spacing:2.791906pt;}
.ls3a_c00421{letter-spacing:2.886400pt;}
.ls1c_c00421{letter-spacing:2.939209pt;}
.ls29_c00421{letter-spacing:2.948000pt;}
.ls0_c00421{letter-spacing:2.958014pt;}
.ls22_c00421{letter-spacing:2.992000pt;}
.ls1_c00421{letter-spacing:3.021902pt;}
.ls26_c00421{letter-spacing:3.168000pt;}
.ls9_c00421{letter-spacing:3.194400pt;}
.ls27_c00421{letter-spacing:3.238400pt;}
.ls2_c00421{letter-spacing:22.296912pt;}
.ls2d_c00421{letter-spacing:41.817600pt;}
.lsd_c00421{letter-spacing:43.084976pt;}
.ls20_c00421{letter-spacing:44.352176pt;}
.ls28_c00421{letter-spacing:46.886576pt;}
.ls16_c00421{letter-spacing:48.153776pt;}
.ls30_c00421{letter-spacing:51.955376pt;}
.ls33_c00421{letter-spacing:55.756800pt;}
.ws1_c00421{word-spacing:-18.993902pt;}
.ws5_c00421{word-spacing:-16.431994pt;}
.ws2_c00421{word-spacing:-15.972000pt;}
.ws0_c00421{word-spacing:-15.318072pt;}
.ws3_c00421{word-spacing:-1.295360pt;}
.ws6_c00421{word-spacing:0.000000pt;}
.ws4_c00421{word-spacing:3.002736pt;}
._6_c00421{margin-left:-21.231936pt;}
._c_c00421{margin-left:-12.569568pt;}
._11_c00421{margin-left:-5.812928pt;}
._b_c00421{margin-left:-4.121480pt;}
._8_c00421{width:1.213872pt;}
._1b_c00421{width:3.747744pt;}
._12_c00421{width:4.727712pt;}
._14_c00421{width:6.452688pt;}
._9_c00421{width:7.394816pt;}
._1c_c00421{width:8.368976pt;}
._d_c00421{width:9.328000pt;}
._e_c00421{width:10.222080pt;}
._10_c00421{width:11.435952pt;}
._18_c00421{width:12.355763pt;}
._f_c00421{width:14.055360pt;}
._19_c00421{width:16.930848pt;}
._1d_c00421{width:18.332072pt;}
._16_c00421{width:20.124896pt;}
._2_c00421{width:21.019152pt;}
._1a_c00421{width:22.373894pt;}
._4_c00421{width:24.291115pt;}
._20_c00421{width:26.040925pt;}
._1e_c00421{width:28.804761pt;}
._15_c00421{width:31.368128pt;}
._7_c00421{width:32.327680pt;}
._17_c00421{width:33.596288pt;}
._5_c00421{width:35.999568pt;}
._a_c00421{width:38.971680pt;}
._3_c00421{width:40.632768pt;}
._13_c00421{width:44.513744pt;}
._1_c00421{width:94.578836pt;}
._1f_c00421{width:135.458400pt;}
._0_c00421{width:148.671439pt;}
.fs8_c00421{font-size:13.200176pt;}
.fs2d_c00421{font-size:20.768000pt;}
.fs11_c00421{font-size:27.808000pt;}
.fs23_c00421{font-size:28.864000pt;}
.fs2f_c00421{font-size:29.920000pt;}
.fs1f_c00421{font-size:30.272176pt;}
.fs21_c00421{font-size:30.800000pt;}
.fs29_c00421{font-size:30.976000pt;}
.fs14_c00421{font-size:33.440000pt;}
.fs5_c00421{font-size:34.496000pt;}
.fs2b_c00421{font-size:39.952176pt;}
.fs27_c00421{font-size:40.832176pt;}
.fsb_c00421{font-size:41.008000pt;}
.fs1c_c00421{font-size:41.817600pt;}
.fs28_c00421{font-size:42.592176pt;}
.fs4_c00421{font-size:43.084976pt;}
.fs1b_c00421{font-size:43.120000pt;}
.fs9_c00421{font-size:43.824000pt;}
.fs12_c00421{font-size:44.352176pt;}
.fs6_c00421{font-size:45.760000pt;}
.fs18_c00421{font-size:46.886576pt;}
.fsc_c00421{font-size:48.153776pt;}
.fs2a_c00421{font-size:49.280000pt;}
.fsd_c00421{font-size:51.744000pt;}
.fs1e_c00421{font-size:51.955376pt;}
.fsa_c00421{font-size:52.976000pt;}
.fse_c00421{font-size:53.152176pt;}
.fs3_c00421{font-size:53.856000pt;}
.fs7_c00421{font-size:55.264000pt;}
.fsf_c00421{font-size:55.440000pt;}
.fs24_c00421{font-size:55.756800pt;}
.fs15_c00421{font-size:57.376000pt;}
.fs2e_c00421{font-size:57.728000pt;}
.fs26_c00421{font-size:58.080000pt;}
.fs10_c00421{font-size:58.784176pt;}
.fs19_c00421{font-size:58.960000pt;}
.fs22_c00421{font-size:59.488000pt;}
.fs13_c00421{font-size:59.840000pt;}
.fs1_c00421{font-size:60.544176pt;}
.fs1a_c00421{font-size:61.072176pt;}
.fs1d_c00421{font-size:61.248000pt;}
.fs16_c00421{font-size:63.360000pt;}
.fs20_c00421{font-size:63.712176pt;}
.fs2_c00421{font-size:63.888000pt;}
.fs17_c00421{font-size:64.768000pt;}
.fs25_c00421{font-size:64.944176pt;}
.fs0_c00421{font-size:65.472176pt;}
.fs2c_c00421{font-size:92.576000pt;}
.y0_c00421{bottom:0.000000pt;}
.y1_c00421{bottom:68.000000pt;}
.y22_c00421{bottom:89.259320pt;}
.y21_c00421{bottom:123.790520pt;}
.y1f_c00421{bottom:150.084920pt;}
.y20_c00421{bottom:154.520120pt;}
.y1e_c00421{bottom:170.043320pt;}
.y1d_c00421{bottom:182.398520pt;}
.y1c_c00421{bottom:210.910520pt;}
.y1a_c00421{bottom:239.422520pt;}
.y1b_c00421{bottom:245.120520pt;}
.y16_c00421{bottom:269.514120pt;}
.y15_c00421{bottom:298.347320pt;}
.y19_c00421{bottom:303.416120pt;}
.y18_c00421{bottom:311.969720pt;}
.y14_c00421{bottom:327.488520pt;}
.y13_c00421{bottom:356.955320pt;}
.y12_c00421{bottom:386.413320pt;}
.y11_c00421{bottom:414.929720pt;}
.y10_c00421{bottom:444.387720pt;}
.yf_c00421{bottom:474.171320pt;}
.ye_c00421{bottom:503.000120pt;}
.y17_c00421{bottom:541.966520pt;}
.yd_c00421{bottom:589.169720pt;}
.yc_c00421{bottom:617.677320pt;}
.yb_c00421{bottom:646.506120pt;}
.ya_c00421{bottom:668.369720pt;}
.y9_c00421{bottom:675.022520pt;}
.y8_c00421{bottom:703.530120pt;}
.y7_c00421{bottom:732.996920pt;}
.y6_c00421{bottom:763.409720pt;}
.y5_c00421{bottom:792.238520pt;}
.y4_c00421{bottom:821.062920pt;}
.y3_c00421{bottom:823.280520pt;}
.y2_c00421{bottom:958.237320pt;}
.ha_c00421{height:12.948805pt;}
.hb_c00421{height:12.955251pt;}
.h32_c00421{height:21.660375pt;}
.h1f_c00421{height:27.850522pt;}
.h6_c00421{height:28.694594pt;}
.h13_c00421{height:29.002875pt;}
.h34_c00421{height:29.364844pt;}
.h15_c00421{height:29.538549pt;}
.h27_c00421{height:30.104250pt;}
.h2c_c00421{height:30.401250pt;}
.h1b_c00421{height:31.226460pt;}
.h23_c00421{height:31.572934pt;}
.hf_c00421{height:32.070415pt;}
.h25_c00421{height:32.123438pt;}
.h7_c00421{height:33.855938pt;}
.h22_c00421{height:34.602280pt;}
.h17_c00421{height:34.876875pt;}
.h31_c00421{height:35.978250pt;}
.h29_c00421{height:37.134029pt;}
.h2b_c00421{height:40.074548pt;}
.he_c00421{height:40.247109pt;}
.h2f_c00421{height:41.668871pt;}
.h1e_c00421{height:42.319922pt;}
.hc_c00421{height:43.010859pt;}
.h20_c00421{height:43.529235pt;}
.h8_c00421{height:47.726250pt;}
.h10_c00421{height:50.783906pt;}
.h2d_c00421{height:51.397500pt;}
.hd_c00421{height:55.252313pt;}
.h11_c00421{height:55.436059pt;}
.h5_c00421{height:56.170125pt;}
.h9_c00421{height:57.638625pt;}
.h12_c00421{height:57.693454pt;}
.h14_c00421{height:57.822188pt;}
.h1c_c00421{height:57.866016pt;}
.h18_c00421{height:59.841375pt;}
.h1d_c00421{height:59.939001pt;}
.h21_c00421{height:60.111562pt;}
.h33_c00421{height:60.208500pt;}
.h2a_c00421{height:60.575625pt;}
.h26_c00421{height:62.044125pt;}
.h19_c00421{height:62.184375pt;}
.h16_c00421{height:62.411250pt;}
.h24_c00421{height:62.530016pt;}
.h4_c00421{height:62.702578pt;}
.h3_c00421{height:63.145684pt;}
.h2e_c00421{height:63.566250pt;}
.h2_c00421{height:64.257360pt;}
.h1a_c00421{height:65.274000pt;}
.h28_c00421{height:66.633188pt;}
.h30_c00421{height:96.553875pt;}
.h1_c00421{height:986.666667pt;}
.h0_c00421{height:1122.666667pt;}
.w1_c00421{width:689.333333pt;}
.w0_c00421{width:793.333333pt;}
.x0_c00421{left:0.000000pt;}
.x1_c00421{left:52.000000pt;}
.x1a_c00421{left:66.331453pt;}
.x34_c00421{left:67.585453pt;}
.x8e_c00421{left:69.006653pt;}
.x7e_c00421{left:70.150653pt;}
.x92_c00421{left:82.712653pt;}
.x63_c00421{left:85.673853pt;}
.x9a_c00421{left:88.472253pt;}
.x7f_c00421{left:92.335453pt;}
.x4d_c00421{left:95.468253pt;}
.x80_c00421{left:96.563853pt;}
.x1b_c00421{left:98.755053pt;}
.x3c_c00421{left:104.985453pt;}
.x51_c00421{left:106.226253pt;}
.x45_c00421{left:114.348653pt;}
.x4_c00421{left:115.681853pt;}
.x6d_c00421{left:116.949053pt;}
.x1c_c00421{left:125.735853pt;}
.x3d_c00421{left:134.153053pt;}
.x89_c00421{left:135.987853pt;}
.x4e_c00421{left:144.259853pt;}
.x5_c00421{left:145.496253pt;}
.x2b_c00421{left:154.560253pt;}
.x35_c00421{left:155.937453pt;}
.x52_c00421{left:163.188653pt;}
.x4f_c00421{left:164.174253pt;}
.x6_c00421{left:165.173053pt;}
.x74_c00421{left:167.575453pt;}
.x75_c00421{left:168.847053pt;}
.x3e_c00421{left:174.509853pt;}
.x8a_c00421{left:183.045853pt;}
.x1d_c00421{left:184.511053pt;}
.x7_c00421{left:186.328253pt;}
.x59_c00421{left:193.658653pt;}
.x1e_c00421{left:194.912653pt;}
.x8_c00421{left:202.766653pt;}
.x46_c00421{left:204.007453pt;}
.x8f_c00421{left:204.913853pt;}
.x1f_c00421{left:213.467453pt;}
.x81_c00421{left:215.416653pt;}
.x95_c00421{left:216.485853pt;}
.x36_c00421{left:223.464253pt;}
.x96_c00421{left:224.423453pt;}
.x2c_c00421{left:233.645853pt;}
.x6b_c00421{left:234.539053pt;}
.x20_c00421{left:242.784653pt;}
.x6f_c00421{left:243.730653pt;}
.x9_c00421{left:244.857053pt;}
.x37_c00421{left:253.049853pt;}
.x9b_c00421{left:254.699853pt;}
.x64_c00421{left:256.169453pt;}
.x65_c00421{left:258.448653pt;}
.xa_c00421{left:261.911453pt;}
.x76_c00421{left:263.015853pt;}
.x5d_c00421{left:272.225053pt;}
.x6c_c00421{left:273.461453pt;}
.x21_c00421{left:282.182253pt;}
.x97_c00421{left:287.048653pt;}
.x53_c00421{left:292.531053pt;}
.xb_c00421{left:302.074653pt;}
.x2d_c00421{left:303.187853pt;}
.x5e_c00421{left:310.447853pt;}
.x3f_c00421{left:311.508253pt;}
.x54_c00421{left:320.875853pt;}
.x66_c00421{left:321.958253pt;}
.x8b_c00421{left:322.948253pt;}
.x5c_c00421{left:331.818653pt;}
.xc_c00421{left:341.498653pt;}
.x82_c00421{left:344.561053pt;}
.x5f_c00421{left:350.817853pt;}
.x7b_c00421{left:353.625053pt;}
.x55_c00421{left:360.625453pt;}
.x77_c00421{left:361.883853pt;}
.x22_c00421{left:362.821053pt;}
.x47_c00421{left:369.337453pt;}
.x5a_c00421{left:370.340653pt;}
.x23_c00421{left:379.299053pt;}
.x48_c00421{left:380.271453pt;}
.x78_c00421{left:382.744253pt;}
.xd_c00421{left:384.271053pt;}
.x70_c00421{left:390.439853pt;}
.x7c_c00421{left:391.847853pt;}
.x56_c00421{left:398.496253pt;}
.xe_c00421{left:399.789853pt;}
.x2e_c00421{left:401.435453pt;}
.x71_c00421{left:408.339053pt;}
.x57_c00421{left:409.522653pt;}
.x58_c00421{left:417.169853pt;}
.x40_c00421{left:418.630653pt;}
.x9c_c00421{left:419.831853pt;}
.x83_c00421{left:421.873453pt;}
.xf_c00421{left:429.573453pt;}
.x90_c00421{left:430.620653pt;}
.x60_c00421{left:438.897053pt;}
.x24_c00421{left:444.001053pt;}
.x25_c00421{left:447.895053pt;}
.x10_c00421{left:448.898253pt;}
.x84_c00421{left:449.848653pt;}
.x41_c00421{left:458.257053pt;}
.x7d_c00421{left:459.783853pt;}
.x11_c00421{left:461.887053pt;}
.x49_c00421{left:468.808253pt;}
.x42_c00421{left:469.780653pt;}
.x26_c00421{left:478.290253pt;}
.x5b_c00421{left:479.601453pt;}
.x12_c00421{left:487.367453pt;}
.x98_c00421{left:488.282653pt;}
.x2f_c00421{left:496.959453pt;}
.x91_c00421{left:498.490653pt;}
.x9d_c00421{left:506.828653pt;}
.x67_c00421{left:508.139853pt;}
.x13_c00421{left:516.350253pt;}
.x38_c00421{left:517.736253pt;}
.x4a_c00421{left:527.042253pt;}
.x93_c00421{left:527.975053pt;}
.x18_c00421{left:530.584253pt;}
.x14_c00421{left:531.913053pt;}
.x8c_c00421{left:535.301053pt;}
.x68_c00421{left:537.285453pt;}
.x27_c00421{left:545.746653pt;}
.x15_c00421{left:546.802653pt;}
.x79_c00421{left:547.739853pt;}
.x72_c00421{left:549.319453pt;}
.x19_c00421{left:550.243453pt;}
.x99_c00421{left:554.265053pt;}
.x43_c00421{left:555.633453pt;}
.x73_c00421{left:556.927053pt;}
.x4b_c00421{left:558.568253pt;}
.x30_c00421{left:566.114253pt;}
.x28_c00421{left:575.129853pt;}
.x31_c00421{left:576.247453pt;}
.x39_c00421{left:585.553453pt;}
.x16_c00421{left:587.282653pt;}
.x61_c00421{left:590.191053pt;}
.x2_c00421{left:595.057453pt;}
.x69_c00421{left:596.271853pt;}
.x8d_c00421{left:597.473053pt;}
.x62_c00421{left:604.733053pt;}
.x3a_c00421{left:606.902253pt;}
.x44_c00421{left:608.178253pt;}
.x7a_c00421{left:613.247053pt;}
.x29_c00421{left:614.470253pt;}
.x50_c00421{left:616.621853pt;}
.x3_c00421{left:624.612253pt;}
.x32_c00421{left:625.531853pt;}
.x6e_c00421{left:629.474253pt;}
.x3b_c00421{left:632.681853pt;}
.x17_c00421{left:633.993053pt;}
.x6a_c00421{left:634.925853pt;}
.x2a_c00421{left:637.495453pt;}
.x94_c00421{left:639.290653pt;}
.x85_c00421{left:643.382653pt;}
.x33_c00421{left:644.649853pt;}
.x4c_c00421{left:654.637853pt;}
.x9e_c00421{left:656.714653pt;}
.x86_c00421{left:688.526653pt;}
.x87_c00421{left:689.419853pt;}
.x88_c00421{left:690.717853pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b81450081e32139435454ed1.woff2')format("woff");}.ff1_c00422{font-family:ff1_c00422;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00422;src:url('chunks/assets/font_3f7012ae5dac5c6d66e6155d.woff2')format("woff");}.ff2_c00422{font-family:ff2_c00422;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00422;src:url('chunks/assets/font_39421e72ee2de57b8e6b78d7.woff2')format("woff");}.ff3_c00422{font-family:ff3_c00422;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00422;src:url('chunks/assets/font_43768b17371b2cdac161a63f.woff2')format("woff");}.ff4_c00422{font-family:ff4_c00422;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00422;src:url('chunks/assets/font_2bb40ec4f6767c77c32a6e96.woff2')format("woff");}.ff5_c00422{font-family:ff5_c00422;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00422;src:url('chunks/assets/font_bc45f2b3b8407b10c2787543.woff2')format("woff");}.ff6_c00422{font-family:ff6_c00422;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00422;src:url('chunks/assets/font_27fd6b3c2764130654a0e648.woff2')format("woff");}.ff7_c00422{font-family:ff7_c00422;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m8_c00422{transform:matrix(0.013890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013890,0.000000,0.000000,0.250000,0,0);}
.m15_c00422{transform:matrix(0.026787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026787,0.000000,0.000000,0.250000,0,0);}
.mde_c00422{transform:matrix(0.035715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.035715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.035715,0.000000,0.000000,0.250000,0,0);}
.m34_c00422{transform:matrix(0.036586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036586,0.000000,0.000000,0.250000,0,0);}
.ma6_c00422{transform:matrix(0.052382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.052382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.052382,0.000000,0.000000,0.250000,0,0);}
.m37_c00422{transform:matrix(0.064025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064025,0.000000,0.000000,0.250000,0,0);}
.m4a_c00422{transform:matrix(0.067074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.067074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.067074,0.000000,0.000000,0.250000,0,0);}
.m6e_c00422{transform:matrix(0.069644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.069644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.069644,0.000000,0.000000,0.250000,0,0);}
.mc7_c00422{transform:matrix(0.074325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.074325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.074325,0.000000,0.000000,0.250000,0,0);}
.m38_c00422{transform:matrix(0.074696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.074696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.074696,0.000000,0.000000,0.250000,0,0);}
.ma7_c00422{transform:matrix(0.075001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075001,0.000000,0.000000,0.250000,0,0);}
.m6c_c00422{transform:matrix(0.078572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078572,0.000000,0.000000,0.250000,0,0);}
.m47_c00422{transform:matrix(0.082317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.082317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.082317,0.000000,0.000000,0.250000,0,0);}
.m94_c00422{transform:matrix(0.090486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090486,0.000000,0.000000,0.250000,0,0);}
.m6d_c00422{transform:matrix(0.092858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092858,0.000000,0.000000,0.250000,0,0);}
.m4e_c00422{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00422{transform:matrix(0.107142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107142,0.000000,0.000000,0.250000,0,0);}
.m97_c00422{transform:matrix(0.126190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126190,0.000000,0.000000,0.250000,0,0);}
.m33_c00422{transform:matrix(0.127178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127178,0.000000,0.000000,0.250000,0,0);}
.m16_c00422{transform:matrix(0.127232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127232,0.000000,0.000000,0.250000,0,0);}
.ma9_c00422{transform:matrix(0.128572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128572,0.000000,0.000000,0.250000,0,0);}
.m2f_c00422{transform:matrix(0.135358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135358,0.000000,0.000000,0.250000,0,0);}
.m35_c00422{transform:matrix(0.136178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136178,0.000000,0.000000,0.250000,0,0);}
.m46_c00422{transform:matrix(0.140244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140244,0.000000,0.000000,0.250000,0,0);}
.m4d_c00422{transform:matrix(0.143637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143637,0.000000,0.000000,0.250000,0,0);}
.m7_c00422{transform:matrix(0.145834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145834,0.000000,0.000000,0.250000,0,0);}
.m27_c00422{transform:matrix(0.146293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146293,0.000000,0.000000,0.250000,0,0);}
.md5_c00422{transform:matrix(0.150420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150420,0.000000,0.000000,0.250000,0,0);}
.mce_c00422{transform:matrix(0.153430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153430,0.000000,0.000000,0.250000,0,0);}
.m36_c00422{transform:matrix(0.155488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155488,0.000000,0.000000,0.250000,0,0);}
.mc_c00422{transform:matrix(0.155577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155577,0.000000,0.000000,0.250000,0,0);}
.m39_c00422{transform:matrix(0.158537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158537,0.000000,0.000000,0.250000,0,0);}
.m1e_c00422{transform:matrix(0.161210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161210,0.000000,0.000000,0.250000,0,0);}
.mc6_c00422{transform:matrix(0.162162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162162,0.000000,0.000000,0.250000,0,0);}
.mdd_c00422{transform:matrix(0.167856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167856,0.000000,0.000000,0.250000,0,0);}
.m29_c00422{transform:matrix(0.170241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170241,0.000000,0.000000,0.250000,0,0);}
.m44_c00422{transform:matrix(0.170731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170731,0.000000,0.000000,0.250000,0,0);}
.mdf_c00422{transform:matrix(0.171429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171429,0.000000,0.000000,0.250000,0,0);}
.mc5_c00422{transform:matrix(0.172298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172298,0.000000,0.000000,0.250000,0,0);}
.m49_c00422{transform:matrix(0.172764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172764,0.000000,0.000000,0.250000,0,0);}
.mc0_c00422{transform:matrix(0.172794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172794,0.000000,0.000000,0.250000,0,0);}
.m45_c00422{transform:matrix(0.173781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173781,0.000000,0.000000,0.250000,0,0);}
.m6f_c00422{transform:matrix(0.176190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176190,0.000000,0.000000,0.250000,0,0);}
.m9c_c00422{transform:matrix(0.178266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178266,0.000000,0.000000,0.250000,0,0);}
.m89_c00422{transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);}
.m88_c00422{transform:matrix(0.181547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181547,0.000000,0.000000,0.250000,0,0);}
.m48_c00422{transform:matrix(0.182926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182926,0.000000,0.000000,0.250000,0,0);}
.ma5_c00422{transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);}
.m6_c00422{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m5_c00422{transform:matrix(0.190972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190972,0.000000,0.000000,0.250000,0,0);}
.mb6_c00422{transform:matrix(0.192139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192139,0.000000,0.000000,0.250000,0,0);}
.m98_c00422{transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);}
.m3_c00422{transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);}
.md2_c00422{transform:matrix(0.195022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195022,0.000000,0.000000,0.250000,0,0);}
.m10_c00422{transform:matrix(0.197673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197673,0.000000,0.000000,0.250000,0,0);}
.m6b_c00422{transform:matrix(0.197955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197955,0.000000,0.000000,0.250000,0,0);}
.ma8_c00422{transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);}
.m4_c00422{transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);}
.m50_c00422{transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);}
.mc8_c00422{transform:matrix(0.207770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207770,0.000000,0.000000,0.250000,0,0);}
.m75_c00422{transform:matrix(0.208001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208001,0.000000,0.000000,0.250000,0,0);}
.mbc_c00422{transform:matrix(0.210369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210369,0.000000,0.000000,0.250000,0,0);}
.m95_c00422{transform:matrix(0.212909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212909,0.000000,0.000000,0.250000,0,0);}
.m26_c00422{transform:matrix(0.214043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214043,0.000000,0.000000,0.250000,0,0);}
.md1_c00422{transform:matrix(0.215476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215476,0.000000,0.000000,0.250000,0,0);}
.maa_c00422{transform:matrix(0.220714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220714,0.000000,0.000000,0.250000,0,0);}
.mb7_c00422{transform:matrix(0.221160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221160,0.000000,0.000000,0.250000,0,0);}
.m14_c00422{transform:matrix(0.227680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227680,0.000000,0.000000,0.250000,0,0);}
.md3_c00422{transform:matrix(0.228969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228969,0.000000,0.000000,0.250000,0,0);}
.md0_c00422{transform:matrix(0.230639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230639,0.000000,0.000000,0.250000,0,0);}
.m5b_c00422{transform:matrix(0.232510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232510,0.000000,0.000000,0.250000,0,0);}
.m2e_c00422{transform:matrix(0.232589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232589,0.000000,0.000000,0.250000,0,0);}
.m5c_c00422{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m42_c00422{transform:matrix(0.239706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239706,0.000000,0.000000,0.250000,0,0);}
.m20_c00422{transform:matrix(0.241020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241020,0.000000,0.000000,0.250000,0,0);}
.mcb_c00422{transform:matrix(0.247055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247055,0.000000,0.000000,0.250000,0,0);}
.m0_c00422{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00422{transform:matrix(0.252013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252013,0.000000,0.000000,0.250000,0,0);}
.m83_c00422{transform:matrix(0.252344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252344,0.000000,0.000000,0.250000,0,0);}
.mdc_c00422{transform:matrix(0.255014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255014,0.000000,0.000000,0.250000,0,0);}
.m24_c00422{transform:matrix(0.255902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255902,0.000000,0.000000,0.250000,0,0);}
.m8a_c00422{transform:matrix(0.258388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258388,0.000000,0.000000,0.250000,0,0);}
.m25_c00422{transform:matrix(0.258485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258485,0.000000,0.000000,0.250000,0,0);}
.m11_c00422{transform:matrix(0.260815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260815,0.000000,0.000000,0.250000,0,0);}
.mad_c00422{transform:matrix(0.261401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261401,0.000000,0.000000,0.250000,0,0);}
.m13_c00422{transform:matrix(0.264888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264888,0.000000,0.000000,0.250000,0,0);}
.mcc_c00422{transform:matrix(0.266260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266260,0.000000,0.000000,0.250000,0,0);}
.m55_c00422{transform:matrix(0.269002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269002,0.000000,0.000000,0.250000,0,0);}
.m62_c00422{transform:matrix(0.269020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269020,0.000000,0.000000,0.250000,0,0);}
.ma2_c00422{transform:matrix(0.271889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271889,0.000000,0.000000,0.250000,0,0);}
.m96_c00422{transform:matrix(0.273806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273806,0.000000,0.000000,0.250000,0,0);}
.m73_c00422{transform:matrix(0.273891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273891,0.000000,0.000000,0.250000,0,0);}
.mc1_c00422{transform:matrix(0.274685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274685,0.000000,0.000000,0.250000,0,0);}
.m40_c00422{transform:matrix(0.278260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278260,0.000000,0.000000,0.250000,0,0);}
.m52_c00422{transform:matrix(0.278658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278658,0.000000,0.000000,0.250000,0,0);}
.m19_c00422{transform:matrix(0.278665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278665,0.000000,0.000000,0.250000,0,0);}
.m65_c00422{transform:matrix(0.278755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278755,0.000000,0.000000,0.250000,0,0);}
.ma0_c00422{transform:matrix(0.278966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278966,0.000000,0.000000,0.250000,0,0);}
.m9d_c00422{transform:matrix(0.278972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278972,0.000000,0.000000,0.250000,0,0);}
.m32_c00422{transform:matrix(0.279006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279006,0.000000,0.000000,0.250000,0,0);}
.m92_c00422{transform:matrix(0.279059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279059,0.000000,0.000000,0.250000,0,0);}
.m4c_c00422{transform:matrix(0.279153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279153,0.000000,0.000000,0.250000,0,0);}
.m76_c00422{transform:matrix(0.279884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279884,0.000000,0.000000,0.250000,0,0);}
.m23_c00422{transform:matrix(0.282684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282684,0.000000,0.000000,0.250000,0,0);}
.m7b_c00422{transform:matrix(0.284138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284138,0.000000,0.000000,0.250000,0,0);}
.m59_c00422{transform:matrix(0.285380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285380,0.000000,0.000000,0.250000,0,0);}
.mab_c00422{transform:matrix(0.286051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286051,0.000000,0.000000,0.250000,0,0);}
.m9f_c00422{transform:matrix(0.286142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286142,0.000000,0.000000,0.250000,0,0);}
.m7e_c00422{transform:matrix(0.286535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286535,0.000000,0.000000,0.250000,0,0);}
.me0_c00422{transform:matrix(0.288105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288105,0.000000,0.000000,0.250000,0,0);}
.m9_c00422{transform:matrix(0.288660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288660,0.000000,0.000000,0.250000,0,0);}
.maf_c00422{transform:matrix(0.289304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289304,0.000000,0.000000,0.250000,0,0);}
.m3c_c00422{transform:matrix(0.290582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290582,0.000000,0.000000,0.250000,0,0);}
.m2c_c00422{transform:matrix(0.290746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290746,0.000000,0.000000,0.250000,0,0);}
.md_c00422{transform:matrix(0.291252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291252,0.000000,0.000000,0.250000,0,0);}
.m2d_c00422{transform:matrix(0.291546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291546,0.000000,0.000000,0.250000,0,0);}
.mc9_c00422{transform:matrix(0.291862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291862,0.000000,0.000000,0.250000,0,0);}
.ma1_c00422{transform:matrix(0.292266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292266,0.000000,0.000000,0.250000,0,0);}
.m58_c00422{transform:matrix(0.293373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293373,0.000000,0.000000,0.250000,0,0);}
.mc4_c00422{transform:matrix(0.294470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294470,0.000000,0.000000,0.250000,0,0);}
.m12_c00422{transform:matrix(0.295147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295147,0.000000,0.000000,0.250000,0,0);}
.m80_c00422{transform:matrix(0.295462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295462,0.000000,0.000000,0.250000,0,0);}
.m63_c00422{transform:matrix(0.295567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295567,0.000000,0.000000,0.250000,0,0);}
.m51_c00422{transform:matrix(0.296362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296362,0.000000,0.000000,0.250000,0,0);}
.m31_c00422{transform:matrix(0.297131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297131,0.000000,0.000000,0.250000,0,0);}
.m7c_c00422{transform:matrix(0.297137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297137,0.000000,0.000000,0.250000,0,0);}
.m3d_c00422{transform:matrix(0.297301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297301,0.000000,0.000000,0.250000,0,0);}
.m53_c00422{transform:matrix(0.298920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298920,0.000000,0.000000,0.250000,0,0);}
.mbd_c00422{transform:matrix(0.299736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299736,0.000000,0.000000,0.250000,0,0);}
.mb9_c00422{transform:matrix(0.300194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300194,0.000000,0.000000,0.250000,0,0);}
.m82_c00422{transform:matrix(0.300334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300334,0.000000,0.000000,0.250000,0,0);}
.m17_c00422{transform:matrix(0.300360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300360,0.000000,0.000000,0.250000,0,0);}
.m54_c00422{transform:matrix(0.301642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301642,0.000000,0.000000,0.250000,0,0);}
.m9b_c00422{transform:matrix(0.302386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302386,0.000000,0.000000,0.250000,0,0);}
.m8e_c00422{transform:matrix(0.302983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302983,0.000000,0.000000,0.250000,0,0);}
.m9e_c00422{transform:matrix(0.303205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303205,0.000000,0.000000,0.250000,0,0);}
.ma4_c00422{transform:matrix(0.304436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304436,0.000000,0.000000,0.250000,0,0);}
.mb2_c00422{transform:matrix(0.305844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305844,0.000000,0.000000,0.250000,0,0);}
.mb5_c00422{transform:matrix(0.305967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305967,0.000000,0.000000,0.250000,0,0);}
.m84_c00422{transform:matrix(0.306104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306104,0.000000,0.000000,0.250000,0,0);}
.m8f_c00422{transform:matrix(0.306640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306640,0.000000,0.000000,0.250000,0,0);}
.mcd_c00422{transform:matrix(0.308058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308058,0.000000,0.000000,0.250000,0,0);}
.mac_c00422{transform:matrix(0.308339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308339,0.000000,0.000000,0.250000,0,0);}
.m64_c00422{transform:matrix(0.309053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309053,0.000000,0.000000,0.250000,0,0);}
.m8d_c00422{transform:matrix(0.309694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309694,0.000000,0.000000,0.250000,0,0);}
.m5e_c00422{transform:matrix(0.309922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309922,0.000000,0.000000,0.250000,0,0);}
.m57_c00422{transform:matrix(0.312829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312829,0.000000,0.000000,0.250000,0,0);}
.m60_c00422{transform:matrix(0.313842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313842,0.000000,0.000000,0.250000,0,0);}
.m2a_c00422{transform:matrix(0.314119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314119,0.000000,0.000000,0.250000,0,0);}
.m5a_c00422{transform:matrix(0.314616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314616,0.000000,0.000000,0.250000,0,0);}
.m18_c00422{transform:matrix(0.316357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316357,0.000000,0.000000,0.250000,0,0);}
.ma3_c00422{transform:matrix(0.316455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316455,0.000000,0.000000,0.250000,0,0);}
.m1a_c00422{transform:matrix(0.318740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318740,0.000000,0.000000,0.250000,0,0);}
.m56_c00422{transform:matrix(0.319147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319147,0.000000,0.000000,0.250000,0,0);}
.m99_c00422{transform:matrix(0.319994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319994,0.000000,0.000000,0.250000,0,0);}
.me_c00422{transform:matrix(0.320375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320375,0.000000,0.000000,0.250000,0,0);}
.mb4_c00422{transform:matrix(0.322036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322036,0.000000,0.000000,0.250000,0,0);}
.m8c_c00422{transform:matrix(0.322443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322443,0.000000,0.000000,0.250000,0,0);}
.ma_c00422{transform:matrix(0.322774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322774,0.000000,0.000000,0.250000,0,0);}
.m41_c00422{transform:matrix(0.323159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323159,0.000000,0.000000,0.250000,0,0);}
.m9a_c00422{transform:matrix(0.323428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323428,0.000000,0.000000,0.250000,0,0);}
.m1c_c00422{transform:matrix(0.324141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324141,0.000000,0.000000,0.250000,0,0);}
.m2b_c00422{transform:matrix(0.324693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324693,0.000000,0.000000,0.250000,0,0);}
.m70_c00422{transform:matrix(0.324896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324896,0.000000,0.000000,0.250000,0,0);}
.m87_c00422{transform:matrix(0.325243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325243,0.000000,0.000000,0.250000,0,0);}
.m66_c00422{transform:matrix(0.326413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326413,0.000000,0.000000,0.250000,0,0);}
.m68_c00422{transform:matrix(0.328102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328102,0.000000,0.000000,0.250000,0,0);}
.m67_c00422{transform:matrix(0.328170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328170,0.000000,0.000000,0.250000,0,0);}
.md4_c00422{transform:matrix(0.328399,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328399,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328399,0.000000,0.000000,0.250000,0,0);}
.mc2_c00422{transform:matrix(0.328642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328642,0.000000,0.000000,0.250000,0,0);}
.m71_c00422{transform:matrix(0.329240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329240,0.000000,0.000000,0.250000,0,0);}
.mb0_c00422{transform:matrix(0.329828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329828,0.000000,0.000000,0.250000,0,0);}
.m93_c00422{transform:matrix(0.331500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00422{transform:matrix(0.332282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332282,0.000000,0.000000,0.250000,0,0);}
.mbb_c00422{transform:matrix(0.332494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332494,0.000000,0.000000,0.250000,0,0);}
.m6a_c00422{transform:matrix(0.332631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332631,0.000000,0.000000,0.250000,0,0);}
.mb1_c00422{transform:matrix(0.333207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333207,0.000000,0.000000,0.250000,0,0);}
.m90_c00422{transform:matrix(0.334330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334330,0.000000,0.000000,0.250000,0,0);}
.m22_c00422{transform:matrix(0.334844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334844,0.000000,0.000000,0.250000,0,0);}
.m91_c00422{transform:matrix(0.335337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335337,0.000000,0.000000,0.250000,0,0);}
.m7a_c00422{transform:matrix(0.335964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335964,0.000000,0.000000,0.250000,0,0);}
.m5f_c00422{transform:matrix(0.336756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336756,0.000000,0.000000,0.250000,0,0);}
.m30_c00422{transform:matrix(0.336834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336834,0.000000,0.000000,0.250000,0,0);}
.mba_c00422{transform:matrix(0.338427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338427,0.000000,0.000000,0.250000,0,0);}
.m43_c00422{transform:matrix(0.339348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339348,0.000000,0.000000,0.250000,0,0);}
.mb8_c00422{transform:matrix(0.339649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339649,0.000000,0.000000,0.250000,0,0);}
.m61_c00422{transform:matrix(0.339767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339767,0.000000,0.000000,0.250000,0,0);}
.m85_c00422{transform:matrix(0.341332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341332,0.000000,0.000000,0.250000,0,0);}
.m1b_c00422{transform:matrix(0.341654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341654,0.000000,0.000000,0.250000,0,0);}
.mf_c00422{transform:matrix(0.341766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341766,0.000000,0.000000,0.250000,0,0);}
.mca_c00422{transform:matrix(0.341829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341829,0.000000,0.000000,0.250000,0,0);}
.m3f_c00422{transform:matrix(0.342803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342803,0.000000,0.000000,0.250000,0,0);}
.m74_c00422{transform:matrix(0.345241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345241,0.000000,0.000000,0.250000,0,0);}
.m86_c00422{transform:matrix(0.345696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345696,0.000000,0.000000,0.250000,0,0);}
.md9_c00422{transform:matrix(0.345702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345702,0.000000,0.000000,0.250000,0,0);}
.md8_c00422{transform:matrix(0.347531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347531,0.000000,0.000000,0.250000,0,0);}
.m78_c00422{transform:matrix(0.347893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347893,0.000000,0.000000,0.250000,0,0);}
.md6_c00422{transform:matrix(0.348489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348489,0.000000,0.000000,0.250000,0,0);}
.m2_c00422{transform:matrix(0.349547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349547,0.000000,0.000000,0.250000,0,0);}
.m7f_c00422{transform:matrix(0.351430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351430,0.000000,0.000000,0.250000,0,0);}
.m77_c00422{transform:matrix(0.353417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353417,0.000000,0.000000,0.250000,0,0);}
.mbf_c00422{transform:matrix(0.353628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353628,0.000000,0.000000,0.250000,0,0);}
.m3e_c00422{transform:matrix(0.353889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353889,0.000000,0.000000,0.250000,0,0);}
.m1f_c00422{transform:matrix(0.355191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355191,0.000000,0.000000,0.250000,0,0);}
.m3b_c00422{transform:matrix(0.356491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356491,0.000000,0.000000,0.250000,0,0);}
.mda_c00422{transform:matrix(0.360163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360163,0.000000,0.000000,0.250000,0,0);}
.m1_c00422{transform:matrix(0.361892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361892,0.000000,0.000000,0.250000,0,0);}
.m81_c00422{transform:matrix(0.363603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363603,0.000000,0.000000,0.250000,0,0);}
.m69_c00422{transform:matrix(0.365793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365793,0.000000,0.000000,0.250000,0,0);}
.m28_c00422{transform:matrix(0.366126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366126,0.000000,0.000000,0.250000,0,0);}
.m79_c00422{transform:matrix(0.368594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368594,0.000000,0.000000,0.250000,0,0);}
.m7d_c00422{transform:matrix(0.385785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385785,0.000000,0.000000,0.250000,0,0);}
.md7_c00422{transform:matrix(0.386379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386379,0.000000,0.000000,0.250000,0,0);}
.m1d_c00422{transform:matrix(0.386556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386556,0.000000,0.000000,0.250000,0,0);}
.mae_c00422{transform:matrix(0.386988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386988,0.000000,0.000000,0.250000,0,0);}
.mcf_c00422{transform:matrix(0.392570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392570,0.000000,0.000000,0.250000,0,0);}
.m21_c00422{transform:matrix(0.396321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396321,0.000000,0.000000,0.250000,0,0);}
.m5d_c00422{transform:matrix(0.396932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396932,0.000000,0.000000,0.250000,0,0);}
.m72_c00422{transform:matrix(0.398270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398270,0.000000,0.000000,0.250000,0,0);}
.m3a_c00422{transform:matrix(0.399334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399334,0.000000,0.000000,0.250000,0,0);}
.mb3_c00422{transform:matrix(0.406365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406365,0.000000,0.000000,0.250000,0,0);}
.mc3_c00422{transform:matrix(0.422843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422843,0.000000,0.000000,0.250000,0,0);}
.mbe_c00422{transform:matrix(0.434430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434430,0.000000,0.000000,0.250000,0,0);}
.mb_c00422{transform:matrix(0.443427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443427,0.000000,0.000000,0.250000,0,0);}
.mdb_c00422{transform:matrix(0.459629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459629,0.000000,0.000000,0.250000,0,0);}
.v0_c00422{vertical-align:0.000000px;}
.lsb_c00422{letter-spacing:-2.480940px;}
.ls29_c00422{letter-spacing:-2.363130px;}
.ls1e_c00422{letter-spacing:-2.314627px;}
.ls13_c00422{letter-spacing:-2.259180px;}
.ls2d_c00422{letter-spacing:-1.963487px;}
.lsc_c00422{letter-spacing:-1.694128px;}
.ls16_c00422{letter-spacing:-1.683990px;}
.ls21_c00422{letter-spacing:-1.055736px;}
.ls28_c00422{letter-spacing:-0.737194px;}
.lsd_c00422{letter-spacing:-0.730105px;}
.ls9_c00422{letter-spacing:0.000000px;}
.ls1_c00422{letter-spacing:0.753350px;}
.ls17_c00422{letter-spacing:0.800989px;}
.ls6_c00422{letter-spacing:1.006553px;}
.ls5_c00422{letter-spacing:1.410592px;}
.ls4_c00422{letter-spacing:1.566536px;}
.ls8_c00422{letter-spacing:1.587802px;}
.ls12_c00422{letter-spacing:1.885514px;}
.ls1a_c00422{letter-spacing:1.892489px;}
.ls2e_c00422{letter-spacing:2.147785px;}
.ls27_c00422{letter-spacing:2.217600px;}
.ls1b_c00422{letter-spacing:2.316600px;}
.ls18_c00422{letter-spacing:2.326500px;}
.ls14_c00422{letter-spacing:2.405700px;}
.ls25_c00422{letter-spacing:2.653200px;}
.lse_c00422{letter-spacing:2.989810px;}
.ls2_c00422{letter-spacing:3.065040px;}
.ls11_c00422{letter-spacing:3.217500px;}
.ls1d_c00422{letter-spacing:3.306610px;}
.ls26_c00422{letter-spacing:3.374078px;}
.ls23_c00422{letter-spacing:3.473316px;}
.lsa_c00422{letter-spacing:3.544200px;}
.ls1c_c00422{letter-spacing:3.583810px;}
.ls2b_c00422{letter-spacing:3.633310px;}
.ls15_c00422{letter-spacing:3.643200px;}
.ls24_c00422{letter-spacing:3.663000px;}
.ls22_c00422{letter-spacing:3.682810px;}
.ls20_c00422{letter-spacing:3.880810px;}
.ls10_c00422{letter-spacing:3.920400px;}
.ls3_c00422{letter-spacing:22.966416px;}
.lsf_c00422{letter-spacing:39.916800px;}
.ls2a_c00422{letter-spacing:48.470598px;}
.ls1f_c00422{letter-spacing:49.896198px;}
.ls0_c00422{letter-spacing:51.321798px;}
.ls2c_c00422{letter-spacing:52.747398px;}
.ls19_c00422{letter-spacing:58.449798px;}
.ls7_c00422{letter-spacing:66.562529px;}
.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;}
}
.ws1_c00422{word-spacing:-97.049548px;}
.ws4_c00422{word-spacing:-19.606514px;}
.ws12_c00422{word-spacing:-19.308802px;}
.wsf_c00422{word-spacing:-19.131592px;}
.ws3_c00422{word-spacing:-17.721000px;}
.ws6_c00422{word-spacing:-16.989350px;}
.ws5_c00422{word-spacing:-11.583000px;}
.wsc_c00422{word-spacing:-3.827736px;}
.wsa_c00422{word-spacing:-3.615084px;}
.ws8_c00422{word-spacing:-2.197404px;}
.wsd_c00422{word-spacing:-1.771704px;}
.ws2_c00422{word-spacing:-0.942757px;}
.ws11_c00422{word-spacing:-0.708840px;}
.ws13_c00422{word-spacing:0.000000px;}
.ws7_c00422{word-spacing:0.221364px;}
.wsb_c00422{word-spacing:5.103648px;}
.wse_c00422{word-spacing:5.807142px;}
.ws10_c00422{word-spacing:6.521328px;}
.ws9_c00422{word-spacing:9.427572px;}
.ws0_c00422{word-spacing:10.916136px;}
._0_c00422{margin-left:-6.842484px;}
._15_c00422{margin-left:-5.812488px;}
._4_c00422{margin-left:-3.274841px;}
._c_c00422{margin-left:-1.668744px;}
._1a_c00422{width:2.185920px;}
._6_c00422{width:3.643200px;}
._5_c00422{width:4.929012px;}
._19_c00422{width:6.722179px;}
._e_c00422{width:7.766510px;}
._d_c00422{width:9.640224px;}
._2_c00422{width:11.412324px;}
._1_c00422{width:12.440736px;}
._9_c00422{width:13.609728px;}
._16_c00422{width:15.807132px;}
._14_c00422{width:19.634868px;}
._18_c00422{width:23.026568px;}
._13_c00422{width:24.171444px;}
._11_c00422{width:25.801776px;}
._b_c00422{width:27.573876px;}
._17_c00422{width:30.227314px;}
._1b_c00422{width:31.279802px;}
._7_c00422{width:32.741280px;}
._8_c00422{width:35.677145px;}
._1d_c00422{width:36.910289px;}
._a_c00422{width:38.354976px;}
._3_c00422{width:39.441600px;}
._f_c00422{width:41.322600px;}
._12_c00422{width:43.659000px;}
._1c_c00422{width:44.940456px;}
._10_c00422{width:46.358136px;}
.fc0_c00422{color:transparent;}
.fsa_c00422{font-size:22.176000px;}
.fs24_c00422{font-size:22.374000px;}
.fs1a_c00422{font-size:27.720000px;}
.fs3_c00422{font-size:34.848000px;}
.fs12_c00422{font-size:38.808000px;}
.fs6_c00422{font-size:39.916800px;}
.fs1f_c00422{font-size:44.352000px;}
.fs13_c00422{font-size:46.332000px;}
.fsf_c00422{font-size:46.530000px;}
.fsd_c00422{font-size:48.114000px;}
.fs21_c00422{font-size:48.470598px;}
.fs16_c00422{font-size:49.896198px;}
.fs5_c00422{font-size:50.688000px;}
.fse_c00422{font-size:50.886198px;}
.fs2_c00422{font-size:51.321798px;}
.fs23_c00422{font-size:52.747398px;}
.fs1d_c00422{font-size:53.064000px;}
.fs10_c00422{font-size:58.449798px;}
.fs4_c00422{font-size:59.796198px;}
.fs7_c00422{font-size:60.984000px;}
.fs9_c00422{font-size:64.350000px;}
.fsc_c00422{font-size:64.548000px;}
.fs17_c00422{font-size:64.944000px;}
.fs15_c00422{font-size:66.132198px;}
.fs20_c00422{font-size:67.518000px;}
.fs0_c00422{font-size:69.696198px;}
.fs11_c00422{font-size:70.092198px;}
.fs1_c00422{font-size:70.884000px;}
.fs14_c00422{font-size:71.676198px;}
.fs22_c00422{font-size:72.666198px;}
.fsb_c00422{font-size:72.864000px;}
.fs1c_c00422{font-size:73.260000px;}
.fs1b_c00422{font-size:73.656198px;}
.fs1e_c00422{font-size:76.032198px;}
.fs18_c00422{font-size:77.616198px;}
.fs8_c00422{font-size:78.408000px;}
.fs19_c00422{font-size:85.140000px;}
.y0_c00422{bottom:0.000000px;}
.y1_c00422{bottom:76.500000px;}
.y20_c00422{bottom:99.347535px;}
.y1f_c00422{bottom:131.418585px;}
.y1e_c00422{bottom:162.073935px;}
.y1d_c00422{bottom:194.862735px;}
.y1c_c00422{bottom:262.222335px;}
.y1b_c00422{bottom:293.936985px;}
.y1a_c00422{bottom:326.730735px;}
.y19_c00422{bottom:359.519535px;}
.y18_c00422{bottom:391.239135px;}
.y17_c00422{bottom:423.666585px;}
.y16_c00422{bottom:457.880985px;}
.y15_c00422{bottom:524.171385px;}
.y14_c00422{bottom:558.029385px;}
.y13_c00422{bottom:590.818185px;}
.y12_c00422{bottom:621.117135px;}
.y10_c00422{bottom:621.829935px;}
.yf_c00422{bottom:622.542735px;}
.y11_c00422{bottom:630.383535px;}
.ye_c00422{bottom:654.613785px;}
.yd_c00422{bottom:691.327935px;}
.yc_c00422{bottom:723.398985px;}
.yb_c00422{bottom:729.819135px;}
.ya_c00422{bottom:755.479935px;}
.y9_c00422{bottom:788.981535px;}
.y8_c00422{bottom:818.201385px;}
.y7_c00422{bottom:822.478185px;}
.y6_c00422{bottom:855.984735px;}
.y5_c00422{bottom:865.958985px;}
.y3_c00422{bottom:924.057135px;}
.y4_c00422{bottom:926.546985px;}
.y2_c00422{bottom:1102.969935px;}
.h27_c00422{height:21.958857px;}
.hc_c00422{height:23.128875px;}
.h8_c00422{height:26.584589px;}
.h1d_c00422{height:28.911094px;}
.h24_c00422{height:32.281418px;}
.h19_c00422{height:33.230868px;}
.h4_c00422{height:34.180317px;}
.h5_c00422{height:34.201406px;}
.h26_c00422{height:35.129767px;}
.h12_c00422{height:38.927565px;}
.h14_c00422{height:40.475531px;}
.h18_c00422{height:45.472324px;}
.h22_c00422{height:46.257750px;}
.hf_c00422{height:47.221260px;}
.h15_c00422{height:48.322828px;}
.h11_c00422{height:48.529336px;}
.h10_c00422{height:49.917174px;}
.h20_c00422{height:52.079414px;}
.h7_c00422{height:52.866000px;}
.h6_c00422{height:62.365566px;}
.hb_c00422{height:63.156006px;}
.h9_c00422{height:63.604406px;}
.h1a_c00422{height:63.738984px;}
.h23_c00422{height:66.265225px;}
.he_c00422{height:67.321547px;}
.h13_c00422{height:68.791659px;}
.h17_c00422{height:68.973816px;}
.h3_c00422{height:69.568770px;}
.h16_c00422{height:70.346269px;}
.h25_c00422{height:71.317899px;}
.hd_c00422{height:71.512031px;}
.h1f_c00422{height:71.900684px;}
.h1e_c00422{height:72.289530px;}
.h2_c00422{height:72.690957px;}
.h21_c00422{height:74.621444px;}
.ha_c00422{height:76.953164px;}
.h1b_c00422{height:78.222575px;}
.h1c_c00422{height:83.560254px;}
.h1_c00422{height:1110.000000px;}
.h0_c00422{height:1263.000000px;}
.w1_c00422{width:775.500000px;}
.w0_c00422{width:892.500000px;}
.x0_c00422{left:0.000000px;}
.x1_c00422{left:58.500000px;}
.x33_c00422{left:72.296385px;}
.x23_c00422{left:73.424985px;}
.x44_c00422{left:74.845635px;}
.x3_c00422{left:77.399835px;}
.x45_c00422{left:83.706135px;}
.x93_c00422{left:85.324785px;}
.x7f_c00422{left:93.680385px;}
.x24_c00422{left:95.630685px;}
.x54_c00422{left:106.144485px;}
.x4_c00422{left:109.604535px;}
.x65_c00422{left:117.034485px;}
.x90_c00422{left:118.727385px;}
.x34_c00422{left:121.365735px;}
.x35_c00422{left:126.860235px;}
.x25_c00422{left:128.468985px;}
.x5_c00422{left:131.958735px;}
.x55_c00422{left:138.418485px;}
.x76_c00422{left:148.556085px;}
.x5b_c00422{left:149.833185px;}
.x36_c00422{left:152.763585px;}
.x66_c00422{left:159.292635px;}
.x80_c00422{left:161.237985px;}
.x37_c00422{left:171.509235px;}
.x77_c00422{left:183.696135px;}
.x6_c00422{left:186.032535px;}
.x2_c00422{left:189.299535px;}
.x75_c00422{left:193.333785px;}
.x26_c00422{left:194.695035px;}
.x86_c00422{left:203.743635px;}
.x56_c00422{left:205.787985px;}
.x7_c00422{left:207.060135px;}
.x70_c00422{left:215.579085px;}
.x38_c00422{left:217.356135px;}
.x8_c00422{left:219.890535px;}
.x67_c00422{left:227.493735px;}
.x27_c00422{left:238.665885px;}
.x91_c00422{left:247.679835px;}
.x68_c00422{left:249.437085px;}
.x46_c00422{left:251.852685px;}
.x78_c00422{left:260.307285px;}
.x39_c00422{left:261.406185px;}
.x9_c00422{left:263.009985px;}
.x8e_c00422{left:271.410135px;}
.xa_c00422{left:273.706935px;}
.xb_c00422{left:282.616935px;}
.x5c_c00422{left:283.780185px;}
.x57_c00422{left:292.942635px;}
.xc_c00422{left:295.239435px;}
.x47_c00422{left:297.135285px;}
.x96_c00422{left:303.778185px;}
.x28_c00422{left:304.827585px;}
.x48_c00422{left:314.326635px;}
.x3a_c00422{left:316.361085px;}
.x58_c00422{left:326.221485px;}
.x3b_c00422{left:327.275835px;}
.x71_c00422{left:336.047235px;}
.x79_c00422{left:338.032185px;}
.xd_c00422{left:340.017135px;}
.x99_c00422{left:341.685285px;}
.x49_c00422{left:348.560835px;}
.x29_c00422{left:360.193335px;}
.x69_c00422{left:370.469535px;}
.xe_c00422{left:372.692085px;}
.x6a_c00422{left:378.835035px;}
.x97_c00422{left:381.240735px;}
.x5d_c00422{left:382.304985px;}
.x87_c00422{left:391.987185px;}
.x8f_c00422{left:393.234585px;}
.xf_c00422{left:395.006685px;}
.x10_c00422{left:400.407135px;}
.x4a_c00422{left:402.679185px;}
.x2a_c00422{left:404.609685px;}
.x59_c00422{left:414.450285px;}
.x8b_c00422{left:417.049035px;}
.x2b_c00422{left:419.464635px;}
.x88_c00422{left:424.775985px;}
.x4b_c00422{left:426.389685px;}
.x5e_c00422{left:432.146535px;}
.x7a_c00422{left:435.146235px;}
.x5f_c00422{left:436.883685px;}
.x11_c00422{left:438.512235px;}
.x89_c00422{left:442.229685px;}
.x94_c00422{left:446.555985px;}
.x3c_c00422{left:447.595485px;}
.x5a_c00422{left:448.857735px;}
.x72_c00422{left:457.243035px;}
.x2c_c00422{left:458.856735px;}
.x3d_c00422{left:468.964635px;}
.x12_c00422{left:470.845635px;}
.x7b_c00422{left:480.532785px;}
.x4c_c00422{left:482.195985px;}
.x60_c00422{left:483.403785px;}
.x61_c00422{left:492.279135px;}
.x13_c00422{left:493.912635px;}
.x2d_c00422{left:503.050335px;}
.x4d_c00422{left:513.920535px;}
.x14_c00422{left:515.539185px;}
.x98_c00422{left:519.974385px;}
.x4e_c00422{left:523.899735px;}
.x7c_c00422{left:524.919435px;}
.x3e_c00422{left:526.033185px;}
.x15_c00422{left:527.072685px;}
.x95_c00422{left:534.868935px;}
.x81_c00422{left:536.240085px;}
.x16_c00422{left:537.611235px;}
.x82_c00422{left:544.184835px;}
.x2e_c00422{left:545.986635px;}
.x6b_c00422{left:547.263735px;}
.x62_c00422{left:557.930985px;}
.x6c_c00422{left:563.816535px;}
.x6d_c00422{left:568.093335px;}
.x17_c00422{left:570.682185px;}
.x4f_c00422{left:572.008785px;}
.x2f_c00422{left:579.176385px;}
.x3f_c00422{left:580.567335px;}
.x20_c00422{left:582.369135px;}
.x40_c00422{left:586.977585px;}
.x85_c00422{left:590.516835px;}
.x21_c00422{left:592.442385px;}
.x6e_c00422{left:602.664135px;}
.x8c_c00422{left:611.415735px;}
.x73_c00422{left:612.950235px;}
.x50_c00422{left:614.039235px;}
.x18_c00422{left:615.499485px;}
.x6f_c00422{left:617.632935px;}
.x43_c00422{left:625.107435px;}
.x19_c00422{left:626.815185px;}
.x51_c00422{left:628.186335px;}
.x7d_c00422{left:635.116335px;}
.x52_c00422{left:646.461735px;}
.x1a_c00422{left:649.654485px;}
.x83_c00422{left:656.109285px;}
.x30_c00422{left:657.455685px;}
.x1c_c00422{left:658.975335px;}
.x7e_c00422{left:666.103335px;}
.x63_c00422{left:667.682385px;}
.x31_c00422{left:669.137685px;}
.x84_c00422{left:677.859585px;}
.x1d_c00422{left:679.700985px;}
.x8d_c00422{left:688.026885px;}
.x32_c00422{left:689.259435px;}
.x22_c00422{left:690.868185px;}
.x1b_c00422{left:695.338035px;}
.x41_c00422{left:697.466535px;}
.x1e_c00422{left:700.317735px;}
.x1f_c00422{left:701.743335px;}
.x53_c00422{left:710.915685px;}
.x74_c00422{left:712.564035px;}
.x64_c00422{left:715.172685px;}
.x8a_c00422{left:716.504235px;}
.x92_c00422{left:722.553135px;}
.x42_c00422{left:733.814385px;}
@media print{
.v0_c00422{vertical-align:0.000000pt;}
.lsb_c00422{letter-spacing:-2.205280pt;}
.ls29_c00422{letter-spacing:-2.100560pt;}
.ls1e_c00422{letter-spacing:-2.057446pt;}
.ls13_c00422{letter-spacing:-2.008160pt;}
.ls2d_c00422{letter-spacing:-1.745322pt;}
.lsc_c00422{letter-spacing:-1.505891pt;}
.ls16_c00422{letter-spacing:-1.496880pt;}
.ls21_c00422{letter-spacing:-0.938432pt;}
.ls28_c00422{letter-spacing:-0.655283pt;}
.lsd_c00422{letter-spacing:-0.648982pt;}
.ls9_c00422{letter-spacing:0.000000pt;}
.ls1_c00422{letter-spacing:0.669645pt;}
.ls17_c00422{letter-spacing:0.711990pt;}
.ls6_c00422{letter-spacing:0.894714pt;}
.ls5_c00422{letter-spacing:1.253859pt;}
.ls4_c00422{letter-spacing:1.392477pt;}
.ls8_c00422{letter-spacing:1.411379pt;}
.ls12_c00422{letter-spacing:1.676013pt;}
.ls1a_c00422{letter-spacing:1.682213pt;}
.ls2e_c00422{letter-spacing:1.909142pt;}
.ls27_c00422{letter-spacing:1.971200pt;}
.ls1b_c00422{letter-spacing:2.059200pt;}
.ls18_c00422{letter-spacing:2.068000pt;}
.ls14_c00422{letter-spacing:2.138400pt;}
.ls25_c00422{letter-spacing:2.358400pt;}
.lse_c00422{letter-spacing:2.657609pt;}
.ls2_c00422{letter-spacing:2.724480pt;}
.ls11_c00422{letter-spacing:2.860000pt;}
.ls1d_c00422{letter-spacing:2.939209pt;}
.ls26_c00422{letter-spacing:2.999181pt;}
.ls23_c00422{letter-spacing:3.087392pt;}
.lsa_c00422{letter-spacing:3.150400pt;}
.ls1c_c00422{letter-spacing:3.185609pt;}
.ls2b_c00422{letter-spacing:3.229609pt;}
.ls15_c00422{letter-spacing:3.238400pt;}
.ls24_c00422{letter-spacing:3.256000pt;}
.ls22_c00422{letter-spacing:3.273609pt;}
.ls20_c00422{letter-spacing:3.449609pt;}
.ls10_c00422{letter-spacing:3.484800pt;}
.ls3_c00422{letter-spacing:20.414592pt;}
.lsf_c00422{letter-spacing:35.481600pt;}
.ls2a_c00422{letter-spacing:43.084976pt;}
.ls1f_c00422{letter-spacing:44.352176pt;}
.ls0_c00422{letter-spacing:45.619376pt;}
.ls2c_c00422{letter-spacing:46.886576pt;}
.ls19_c00422{letter-spacing:51.955376pt;}
.ls7_c00422{letter-spacing:59.166692pt;}
.ws1_c00422{word-spacing:-86.266265pt;}
.ws4_c00422{word-spacing:-17.428013pt;}
.ws12_c00422{word-spacing:-17.163379pt;}
.wsf_c00422{word-spacing:-17.005859pt;}
.ws3_c00422{word-spacing:-15.752000pt;}
.ws6_c00422{word-spacing:-15.101645pt;}
.ws5_c00422{word-spacing:-10.296000pt;}
.wsc_c00422{word-spacing:-3.402432pt;}
.wsa_c00422{word-spacing:-3.213408pt;}
.ws8_c00422{word-spacing:-1.953248pt;}
.wsd_c00422{word-spacing:-1.574848pt;}
.ws2_c00422{word-spacing:-0.838006pt;}
.ws11_c00422{word-spacing:-0.630080pt;}
.ws13_c00422{word-spacing:0.000000pt;}
.ws7_c00422{word-spacing:0.196768pt;}
.wsb_c00422{word-spacing:4.536576pt;}
.wse_c00422{word-spacing:5.161904pt;}
.ws10_c00422{word-spacing:5.796736pt;}
.ws9_c00422{word-spacing:8.380064pt;}
.ws0_c00422{word-spacing:9.703232pt;}
._0_c00422{margin-left:-6.082208pt;}
._15_c00422{margin-left:-5.166656pt;}
._4_c00422{margin-left:-2.910970pt;}
._c_c00422{margin-left:-1.483328pt;}
._1a_c00422{width:1.943040pt;}
._6_c00422{width:3.238400pt;}
._5_c00422{width:4.381344pt;}
._19_c00422{width:5.975270pt;}
._e_c00422{width:6.903565pt;}
._d_c00422{width:8.569088pt;}
._2_c00422{width:10.144288pt;}
._1_c00422{width:11.058432pt;}
._9_c00422{width:12.097536pt;}
._16_c00422{width:14.050784pt;}
._14_c00422{width:17.453216pt;}
._18_c00422{width:20.468061pt;}
._13_c00422{width:21.485728pt;}
._11_c00422{width:22.934912pt;}
._b_c00422{width:24.510112pt;}
._17_c00422{width:26.868723pt;}
._1b_c00422{width:27.804269pt;}
._7_c00422{width:29.103360pt;}
._8_c00422{width:31.713018pt;}
._1d_c00422{width:32.809146pt;}
._a_c00422{width:34.093312pt;}
._3_c00422{width:35.059200pt;}
._f_c00422{width:36.731200pt;}
._12_c00422{width:38.808000pt;}
._1c_c00422{width:39.947072pt;}
._10_c00422{width:41.207232pt;}
.fsa_c00422{font-size:19.712000pt;}
.fs24_c00422{font-size:19.888000pt;}
.fs1a_c00422{font-size:24.640000pt;}
.fs3_c00422{font-size:30.976000pt;}
.fs12_c00422{font-size:34.496000pt;}
.fs6_c00422{font-size:35.481600pt;}
.fs1f_c00422{font-size:39.424000pt;}
.fs13_c00422{font-size:41.184000pt;}
.fsf_c00422{font-size:41.360000pt;}
.fsd_c00422{font-size:42.768000pt;}
.fs21_c00422{font-size:43.084976pt;}
.fs16_c00422{font-size:44.352176pt;}
.fs5_c00422{font-size:45.056000pt;}
.fse_c00422{font-size:45.232176pt;}
.fs2_c00422{font-size:45.619376pt;}
.fs23_c00422{font-size:46.886576pt;}
.fs1d_c00422{font-size:47.168000pt;}
.fs10_c00422{font-size:51.955376pt;}
.fs4_c00422{font-size:53.152176pt;}
.fs7_c00422{font-size:54.208000pt;}
.fs9_c00422{font-size:57.200000pt;}
.fsc_c00422{font-size:57.376000pt;}
.fs17_c00422{font-size:57.728000pt;}
.fs15_c00422{font-size:58.784176pt;}
.fs20_c00422{font-size:60.016000pt;}
.fs0_c00422{font-size:61.952176pt;}
.fs11_c00422{font-size:62.304176pt;}
.fs1_c00422{font-size:63.008000pt;}
.fs14_c00422{font-size:63.712176pt;}
.fs22_c00422{font-size:64.592176pt;}
.fsb_c00422{font-size:64.768000pt;}
.fs1c_c00422{font-size:65.120000pt;}
.fs1b_c00422{font-size:65.472176pt;}
.fs1e_c00422{font-size:67.584176pt;}
.fs18_c00422{font-size:68.992176pt;}
.fs8_c00422{font-size:69.696000pt;}
.fs19_c00422{font-size:75.680000pt;}
.y0_c00422{bottom:0.000000pt;}
.y1_c00422{bottom:68.000000pt;}
.y20_c00422{bottom:88.308920pt;}
.y1f_c00422{bottom:116.816520pt;}
.y1e_c00422{bottom:144.065720pt;}
.y1d_c00422{bottom:173.211320pt;}
.y1c_c00422{bottom:233.086520pt;}
.y1b_c00422{bottom:261.277320pt;}
.y1a_c00422{bottom:290.427320pt;}
.y19_c00422{bottom:319.572920pt;}
.y18_c00422{bottom:347.768120pt;}
.y17_c00422{bottom:376.592520pt;}
.y16_c00422{bottom:407.005320pt;}
.y15_c00422{bottom:465.930120pt;}
.y14_c00422{bottom:496.026120pt;}
.y13_c00422{bottom:525.171720pt;}
.y12_c00422{bottom:552.104120pt;}
.y10_c00422{bottom:552.737720pt;}
.yf_c00422{bottom:553.371320pt;}
.y11_c00422{bottom:560.340920pt;}
.ye_c00422{bottom:581.878920pt;}
.yd_c00422{bottom:614.513720pt;}
.yc_c00422{bottom:643.021320pt;}
.yb_c00422{bottom:648.728120pt;}
.ya_c00422{bottom:671.537720pt;}
.y9_c00422{bottom:701.316920pt;}
.y8_c00422{bottom:727.290120pt;}
.y7_c00422{bottom:731.091720pt;}
.y6_c00422{bottom:760.875320pt;}
.y5_c00422{bottom:769.741320pt;}
.y3_c00422{bottom:821.384120pt;}
.y4_c00422{bottom:823.597320pt;}
.y2_c00422{bottom:980.417720pt;}
.h27_c00422{height:19.518984pt;}
.hc_c00422{height:20.559000pt;}
.h8_c00422{height:23.630746pt;}
.h1d_c00422{height:25.698750pt;}
.h24_c00422{height:28.694594pt;}
.h19_c00422{height:29.538549pt;}
.h4_c00422{height:30.382504pt;}
.h5_c00422{height:30.401250pt;}
.h26_c00422{height:31.226460pt;}
.h12_c00422{height:34.602280pt;}
.h14_c00422{height:35.978250pt;}
.h18_c00422{height:40.419844pt;}
.h22_c00422{height:41.118000pt;}
.hf_c00422{height:41.974453pt;}
.h15_c00422{height:42.953625pt;}
.h11_c00422{height:43.137188pt;}
.h10_c00422{height:44.370821pt;}
.h20_c00422{height:46.292813pt;}
.h7_c00422{height:46.992000pt;}
.h6_c00422{height:55.436059pt;}
.hb_c00422{height:56.138672pt;}
.h9_c00422{height:56.537250pt;}
.h1a_c00422{height:56.656875pt;}
.h23_c00422{height:58.902422pt;}
.he_c00422{height:59.841375pt;}
.h13_c00422{height:61.148141pt;}
.h17_c00422{height:61.310059pt;}
.h3_c00422{height:61.838906pt;}
.h16_c00422{height:62.530016pt;}
.h25_c00422{height:63.393688pt;}
.hd_c00422{height:63.566250pt;}
.h1f_c00422{height:63.911719pt;}
.h1e_c00422{height:64.257360pt;}
.h2_c00422{height:64.614184pt;}
.h21_c00422{height:66.330173pt;}
.ha_c00422{height:68.402813pt;}
.h1b_c00422{height:69.531177pt;}
.h1c_c00422{height:74.275781pt;}
.h1_c00422{height:986.666667pt;}
.h0_c00422{height:1122.666667pt;}
.w1_c00422{width:689.333333pt;}
.w0_c00422{width:793.333333pt;}
.x0_c00422{left:0.000000pt;}
.x1_c00422{left:52.000000pt;}
.x33_c00422{left:64.263453pt;}
.x23_c00422{left:65.266653pt;}
.x44_c00422{left:66.529453pt;}
.x3_c00422{left:68.799853pt;}
.x45_c00422{left:74.405453pt;}
.x93_c00422{left:75.844253pt;}
.x7f_c00422{left:83.271453pt;}
.x24_c00422{left:85.005053pt;}
.x54_c00422{left:94.350653pt;}
.x4_c00422{left:97.426253pt;}
.x65_c00422{left:104.030653pt;}
.x90_c00422{left:105.535453pt;}
.x34_c00422{left:107.880653pt;}
.x35_c00422{left:112.764653pt;}
.x25_c00422{left:114.194653pt;}
.x5_c00422{left:117.296653pt;}
.x55_c00422{left:123.038653pt;}
.x76_c00422{left:132.049853pt;}
.x5b_c00422{left:133.185053pt;}
.x36_c00422{left:135.789853pt;}
.x66_c00422{left:141.593453pt;}
.x80_c00422{left:143.322653pt;}
.x37_c00422{left:152.452653pt;}
.x77_c00422{left:163.285453pt;}
.x6_c00422{left:165.362253pt;}
.x2_c00422{left:168.266253pt;}
.x75_c00422{left:171.852253pt;}
.x26_c00422{left:173.062253pt;}
.x86_c00422{left:181.105453pt;}
.x56_c00422{left:182.922653pt;}
.x7_c00422{left:184.053453pt;}
.x70_c00422{left:191.625853pt;}
.x38_c00422{left:193.205453pt;}
.x8_c00422{left:195.458253pt;}
.x67_c00422{left:202.216653pt;}
.x27_c00422{left:212.147453pt;}
.x91_c00422{left:220.159853pt;}
.x68_c00422{left:221.721853pt;}
.x46_c00422{left:223.869053pt;}
.x78_c00422{left:231.384253pt;}
.x39_c00422{left:232.361053pt;}
.x9_c00422{left:233.786653pt;}
.x8e_c00422{left:241.253453pt;}
.xa_c00422{left:243.295053pt;}
.xb_c00422{left:251.215053pt;}
.x5c_c00422{left:252.249053pt;}
.x57_c00422{left:260.393453pt;}
.xc_c00422{left:262.435053pt;}
.x47_c00422{left:264.120253pt;}
.x96_c00422{left:270.025053pt;}
.x28_c00422{left:270.957853pt;}
.x48_c00422{left:279.401453pt;}
.x3a_c00422{left:281.209853pt;}
.x58_c00422{left:289.974653pt;}
.x3b_c00422{left:290.911853pt;}
.x71_c00422{left:298.708653pt;}
.x79_c00422{left:300.473053pt;}
.xd_c00422{left:302.237453pt;}
.x99_c00422{left:303.720253pt;}
.x49_c00422{left:309.831853pt;}
.x29_c00422{left:320.171853pt;}
.x69_c00422{left:329.306253pt;}
.xe_c00422{left:331.281853pt;}
.x6a_c00422{left:336.742253pt;}
.x97_c00422{left:338.880653pt;}
.x5d_c00422{left:339.826653pt;}
.x87_c00422{left:348.433053pt;}
.x8f_c00422{left:349.541853pt;}
.xf_c00422{left:351.117053pt;}
.x10_c00422{left:355.917453pt;}
.x4a_c00422{left:357.937053pt;}
.x2a_c00422{left:359.653053pt;}
.x59_c00422{left:368.400253pt;}
.x8b_c00422{left:370.710253pt;}
.x2b_c00422{left:372.857453pt;}
.x88_c00422{left:377.578653pt;}
.x4b_c00422{left:379.013053pt;}
.x5e_c00422{left:384.130253pt;}
.x7a_c00422{left:386.796653pt;}
.x5f_c00422{left:388.341053pt;}
.x11_c00422{left:389.788653pt;}
.x89_c00422{left:393.093053pt;}
.x94_c00422{left:396.938653pt;}
.x3c_c00422{left:397.862653pt;}
.x5a_c00422{left:398.984653pt;}
.x72_c00422{left:406.438253pt;}
.x2c_c00422{left:407.872653pt;}
.x3d_c00422{left:416.857453pt;}
.x12_c00422{left:418.529453pt;}
.x7b_c00422{left:427.140253pt;}
.x4c_c00422{left:428.618653pt;}
.x60_c00422{left:429.692253pt;}
.x61_c00422{left:437.581453pt;}
.x13_c00422{left:439.033453pt;}
.x2d_c00422{left:447.155853pt;}
.x4d_c00422{left:456.818253pt;}
.x14_c00422{left:458.257053pt;}
.x98_c00422{left:462.199453pt;}
.x4e_c00422{left:465.688653pt;}
.x7c_c00422{left:466.595053pt;}
.x3e_c00422{left:467.585053pt;}
.x15_c00422{left:468.509053pt;}
.x95_c00422{left:475.439053pt;}
.x81_c00422{left:476.657853pt;}
.x16_c00422{left:477.876653pt;}
.x82_c00422{left:483.719853pt;}
.x2e_c00422{left:485.321453pt;}
.x6b_c00422{left:486.456653pt;}
.x62_c00422{left:495.938653pt;}
.x6c_c00422{left:501.170253pt;}
.x6d_c00422{left:504.971853pt;}
.x17_c00422{left:507.273053pt;}
.x4f_c00422{left:508.452253pt;}
.x2f_c00422{left:514.823453pt;}
.x3f_c00422{left:516.059853pt;}
.x20_c00422{left:517.661453pt;}
.x40_c00422{left:521.757853pt;}
.x85_c00422{left:524.903853pt;}
.x21_c00422{left:526.615453pt;}
.x6e_c00422{left:535.701453pt;}
.x8c_c00422{left:543.480653pt;}
.x73_c00422{left:544.844653pt;}
.x50_c00422{left:545.812653pt;}
.x18_c00422{left:547.110653pt;}
.x6f_c00422{left:549.007053pt;}
.x43_c00422{left:555.651053pt;}
.x19_c00422{left:557.169053pt;}
.x51_c00422{left:558.387853pt;}
.x7d_c00422{left:564.547853pt;}
.x52_c00422{left:574.632653pt;}
.x1a_c00422{left:577.470653pt;}
.x83_c00422{left:583.208253pt;}
.x30_c00422{left:584.405053pt;}
.x1c_c00422{left:585.755853pt;}
.x7e_c00422{left:592.091853pt;}
.x63_c00422{left:593.495453pt;}
.x31_c00422{left:594.789053pt;}
.x84_c00422{left:602.541853pt;}
.x1d_c00422{left:604.178653pt;}
.x8d_c00422{left:611.579453pt;}
.x32_c00422{left:612.675053pt;}
.x22_c00422{left:614.105053pt;}
.x1b_c00422{left:618.078253pt;}
.x41_c00422{left:619.970253pt;}
.x1e_c00422{left:622.504653pt;}
.x1f_c00422{left:623.771853pt;}
.x53_c00422{left:631.925053pt;}
.x74_c00422{left:633.390253pt;}
.x64_c00422{left:635.709053pt;}
.x8a_c00422{left:636.892653pt;}
.x92_c00422{left:642.269453pt;}
.x42_c00422{left:652.279453pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d2d7163286628d88d53f2f5c.woff2')format("woff");}.ff1_c00423{font-family:ff1_c00423;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00423;src:url('chunks/assets/font_77c3e61f80e84a616d49b6e4.woff2')format("woff");}.ff2_c00423{font-family:ff2_c00423;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00423;src:url('chunks/assets/font_76267d9ccac3619f615eb020.woff2')format("woff");}.ff3_c00423{font-family:ff3_c00423;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00423;src:url('chunks/assets/font_087907629d33cca50abb2ea4.woff2')format("woff");}.ff4_c00423{font-family:ff4_c00423;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m48_c00423{transform:matrix(0.032896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032896,0.000000,0.000000,0.250000,0,0);}
.mf_c00423{transform:matrix(0.059524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.059524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.059524,0.000000,0.000000,0.250000,0,0);}
.m72_c00423{transform:matrix(0.086805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086805,0.000000,0.000000,0.250000,0,0);}
.m70_c00423{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);}
.m6f_c00423{transform:matrix(0.104166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104166,0.000000,0.000000,0.250000,0,0);}
.m75_c00423{transform:matrix(0.105358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105358,0.000000,0.000000,0.250000,0,0);}
.m49_c00423{transform:matrix(0.107656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107656,0.000000,0.000000,0.250000,0,0);}
.m71_c00423{transform:matrix(0.114584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114584,0.000000,0.000000,0.250000,0,0);}
.m12_c00423{transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);}
.m74_c00423{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00423{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m13_c00423{transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);}
.me_c00423{transform:matrix(0.173215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173215,0.000000,0.000000,0.250000,0,0);}
.m47_c00423{transform:matrix(0.184210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184210,0.000000,0.000000,0.250000,0,0);}
.m43_c00423{transform:matrix(0.189556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189556,0.000000,0.000000,0.250000,0,0);}
.m2_c00423{transform:matrix(0.192592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192592,0.000000,0.000000,0.250000,0,0);}
.m78_c00423{transform:matrix(0.195771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195771,0.000000,0.000000,0.250000,0,0);}
.md_c00423{transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);}
.mb_c00423{transform:matrix(0.214024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214024,0.000000,0.000000,0.250000,0,0);}
.mc_c00423{transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);}
.m1c_c00423{transform:matrix(0.214879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214879,0.000000,0.000000,0.250000,0,0);}
.m76_c00423{transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);}
.m7a_c00423{transform:matrix(0.227483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227483,0.000000,0.000000,0.250000,0,0);}
.m79_c00423{transform:matrix(0.227520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227520,0.000000,0.000000,0.250000,0,0);}
.m6d_c00423{transform:matrix(0.231987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231987,0.000000,0.000000,0.250000,0,0);}
.m11_c00423{transform:matrix(0.233570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233570,0.000000,0.000000,0.250000,0,0);}
.m77_c00423{transform:matrix(0.234917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234917,0.000000,0.000000,0.250000,0,0);}
.m73_c00423{transform:matrix(0.248409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248409,0.000000,0.000000,0.250000,0,0);}
.m1_c00423{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00423{transform:matrix(0.250678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250678,0.000000,0.000000,0.250000,0,0);}
.m54_c00423{transform:matrix(0.253895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253895,0.000000,0.000000,0.250000,0,0);}
.m2a_c00423{transform:matrix(0.256384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256384,0.000000,0.000000,0.250000,0,0);}
.ma_c00423{transform:matrix(0.258467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258467,0.000000,0.000000,0.250000,0,0);}
.m2d_c00423{transform:matrix(0.260290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260290,0.000000,0.000000,0.250000,0,0);}
.m27_c00423{transform:matrix(0.260430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260430,0.000000,0.000000,0.250000,0,0);}
.m33_c00423{transform:matrix(0.261098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261098,0.000000,0.000000,0.250000,0,0);}
.m21_c00423{transform:matrix(0.261704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261704,0.000000,0.000000,0.250000,0,0);}
.m3c_c00423{transform:matrix(0.262579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262579,0.000000,0.000000,0.250000,0,0);}
.m18_c00423{transform:matrix(0.262788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262788,0.000000,0.000000,0.250000,0,0);}
.m24_c00423{transform:matrix(0.264926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264926,0.000000,0.000000,0.250000,0,0);}
.m30_c00423{transform:matrix(0.266646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266646,0.000000,0.000000,0.250000,0,0);}
.m36_c00423{transform:matrix(0.269325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269325,0.000000,0.000000,0.250000,0,0);}
.m64_c00423{transform:matrix(0.270008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270008,0.000000,0.000000,0.250000,0,0);}
.m62_c00423{transform:matrix(0.270803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270803,0.000000,0.000000,0.250000,0,0);}
.m50_c00423{transform:matrix(0.271849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271849,0.000000,0.000000,0.250000,0,0);}
.m83_c00423{transform:matrix(0.272195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272195,0.000000,0.000000,0.250000,0,0);}
.m32_c00423{transform:matrix(0.273776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273776,0.000000,0.000000,0.250000,0,0);}
.m67_c00423{transform:matrix(0.274050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274050,0.000000,0.000000,0.250000,0,0);}
.m46_c00423{transform:matrix(0.274923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274923,0.000000,0.000000,0.250000,0,0);}
.m5f_c00423{transform:matrix(0.276114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276114,0.000000,0.000000,0.250000,0,0);}
.m23_c00423{transform:matrix(0.276124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276124,0.000000,0.000000,0.250000,0,0);}
.m3_c00423{transform:matrix(0.276862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276862,0.000000,0.000000,0.250000,0,0);}
.m84_c00423{transform:matrix(0.277911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277911,0.000000,0.000000,0.250000,0,0);}
.m31_c00423{transform:matrix(0.278033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278033,0.000000,0.000000,0.250000,0,0);}
.m7e_c00423{transform:matrix(0.279298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279298,0.000000,0.000000,0.250000,0,0);}
.m51_c00423{transform:matrix(0.279922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279922,0.000000,0.000000,0.250000,0,0);}
.m3a_c00423{transform:matrix(0.281807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281807,0.000000,0.000000,0.250000,0,0);}
.m1b_c00423{transform:matrix(0.282299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282299,0.000000,0.000000,0.250000,0,0);}
.m60_c00423{transform:matrix(0.282851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282851,0.000000,0.000000,0.250000,0,0);}
.m42_c00423{transform:matrix(0.284300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284300,0.000000,0.000000,0.250000,0,0);}
.m8a_c00423{transform:matrix(0.284714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284714,0.000000,0.000000,0.250000,0,0);}
.m2c_c00423{transform:matrix(0.284920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284920,0.000000,0.000000,0.250000,0,0);}
.m3e_c00423{transform:matrix(0.284948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284948,0.000000,0.000000,0.250000,0,0);}
.m1e_c00423{transform:matrix(0.286107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286107,0.000000,0.000000,0.250000,0,0);}
.m4a_c00423{transform:matrix(0.286256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286256,0.000000,0.000000,0.250000,0,0);}
.m3d_c00423{transform:matrix(0.288916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288916,0.000000,0.000000,0.250000,0,0);}
.m2f_c00423{transform:matrix(0.289066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289066,0.000000,0.000000,0.250000,0,0);}
.m7b_c00423{transform:matrix(0.290458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290458,0.000000,0.000000,0.250000,0,0);}
.m5c_c00423{transform:matrix(0.291524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291524,0.000000,0.000000,0.250000,0,0);}
.m2e_c00423{transform:matrix(0.293071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293071,0.000000,0.000000,0.250000,0,0);}
.m20_c00423{transform:matrix(0.294505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294505,0.000000,0.000000,0.250000,0,0);}
.m4e_c00423{transform:matrix(0.296044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296044,0.000000,0.000000,0.250000,0,0);}
.m8b_c00423{transform:matrix(0.296695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296695,0.000000,0.000000,0.250000,0,0);}
.m10_c00423{transform:matrix(0.296818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296818,0.000000,0.000000,0.250000,0,0);}
.m40_c00423{transform:matrix(0.297614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297614,0.000000,0.000000,0.250000,0,0);}
.m26_c00423{transform:matrix(0.297945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297945,0.000000,0.000000,0.250000,0,0);}
.m1d_c00423{transform:matrix(0.299766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299766,0.000000,0.000000,0.250000,0,0);}
.m1a_c00423{transform:matrix(0.301286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301286,0.000000,0.000000,0.250000,0,0);}
.m7d_c00423{transform:matrix(0.301630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301630,0.000000,0.000000,0.250000,0,0);}
.m81_c00423{transform:matrix(0.302616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302616,0.000000,0.000000,0.250000,0,0);}
.m5e_c00423{transform:matrix(0.303278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303278,0.000000,0.000000,0.250000,0,0);}
.m6a_c00423{transform:matrix(0.303773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303773,0.000000,0.000000,0.250000,0,0);}
.m3b_c00423{transform:matrix(0.303799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303799,0.000000,0.000000,0.250000,0,0);}
.m4f_c00423{transform:matrix(0.303932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303932,0.000000,0.000000,0.250000,0,0);}
.m53_c00423{transform:matrix(0.304816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304816,0.000000,0.000000,0.250000,0,0);}
.m5b_c00423{transform:matrix(0.305832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305832,0.000000,0.000000,0.250000,0,0);}
.m65_c00423{transform:matrix(0.305947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305947,0.000000,0.000000,0.250000,0,0);}
.m5d_c00423{transform:matrix(0.306351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306351,0.000000,0.000000,0.250000,0,0);}
.m45_c00423{transform:matrix(0.306707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306707,0.000000,0.000000,0.250000,0,0);}
.m16_c00423{transform:matrix(0.307439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307439,0.000000,0.000000,0.250000,0,0);}
.m25_c00423{transform:matrix(0.307846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307846,0.000000,0.000000,0.250000,0,0);}
.m4b_c00423{transform:matrix(0.307946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307946,0.000000,0.000000,0.250000,0,0);}
.m5a_c00423{transform:matrix(0.308139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308139,0.000000,0.000000,0.250000,0,0);}
.m86_c00423{transform:matrix(0.309733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309733,0.000000,0.000000,0.250000,0,0);}
.m8_c00423{transform:matrix(0.310540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310540,0.000000,0.000000,0.250000,0,0);}
.m8c_c00423{transform:matrix(0.312136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312136,0.000000,0.000000,0.250000,0,0);}
.m1f_c00423{transform:matrix(0.312427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312427,0.000000,0.000000,0.250000,0,0);}
.m0_c00423{transform:matrix(0.312806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312806,0.000000,0.000000,0.250000,0,0);}
.m4_c00423{transform:matrix(0.312824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312824,0.000000,0.000000,0.250000,0,0);}
.m68_c00423{transform:matrix(0.313276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313276,0.000000,0.000000,0.250000,0,0);}
.m52_c00423{transform:matrix(0.313645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313645,0.000000,0.000000,0.250000,0,0);}
.m87_c00423{transform:matrix(0.315167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315167,0.000000,0.000000,0.250000,0,0);}
.m19_c00423{transform:matrix(0.315826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315826,0.000000,0.000000,0.250000,0,0);}
.m44_c00423{transform:matrix(0.317984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317984,0.000000,0.000000,0.250000,0,0);}
.m2b_c00423{transform:matrix(0.320336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320336,0.000000,0.000000,0.250000,0,0);}
.m5_c00423{transform:matrix(0.321984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321984,0.000000,0.000000,0.250000,0,0);}
.m22_c00423{transform:matrix(0.323625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323625,0.000000,0.000000,0.250000,0,0);}
.m61_c00423{transform:matrix(0.323705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323705,0.000000,0.000000,0.250000,0,0);}
.m28_c00423{transform:matrix(0.323984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323984,0.000000,0.000000,0.250000,0,0);}
.m14_c00423{transform:matrix(0.326259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326259,0.000000,0.000000,0.250000,0,0);}
.m80_c00423{transform:matrix(0.326723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326723,0.000000,0.000000,0.250000,0,0);}
.m38_c00423{transform:matrix(0.327314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327314,0.000000,0.000000,0.250000,0,0);}
.m59_c00423{transform:matrix(0.330262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330262,0.000000,0.000000,0.250000,0,0);}
.m15_c00423{transform:matrix(0.330327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330327,0.000000,0.000000,0.250000,0,0);}
.m88_c00423{transform:matrix(0.330857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330857,0.000000,0.000000,0.250000,0,0);}
.m6b_c00423{transform:matrix(0.332074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332074,0.000000,0.000000,0.250000,0,0);}
.m7_c00423{transform:matrix(0.337322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337322,0.000000,0.000000,0.250000,0,0);}
.m85_c00423{transform:matrix(0.338391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338391,0.000000,0.000000,0.250000,0,0);}
.m4c_c00423{transform:matrix(0.339451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339451,0.000000,0.000000,0.250000,0,0);}
.m41_c00423{transform:matrix(0.339546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339546,0.000000,0.000000,0.250000,0,0);}
.m7c_c00423{transform:matrix(0.340266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340266,0.000000,0.000000,0.250000,0,0);}
.m57_c00423{transform:matrix(0.341099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341099,0.000000,0.000000,0.250000,0,0);}
.m58_c00423{transform:matrix(0.341748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341748,0.000000,0.000000,0.250000,0,0);}
.m37_c00423{transform:matrix(0.343671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343671,0.000000,0.000000,0.250000,0,0);}
.m63_c00423{transform:matrix(0.346399,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346399,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346399,0.000000,0.000000,0.250000,0,0);}
.m3f_c00423{transform:matrix(0.347658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347658,0.000000,0.000000,0.250000,0,0);}
.m35_c00423{transform:matrix(0.347984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347984,0.000000,0.000000,0.250000,0,0);}
.m39_c00423{transform:matrix(0.353059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353059,0.000000,0.000000,0.250000,0,0);}
.m55_c00423{transform:matrix(0.354891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354891,0.000000,0.000000,0.250000,0,0);}
.m29_c00423{transform:matrix(0.357881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357881,0.000000,0.000000,0.250000,0,0);}
.m34_c00423{transform:matrix(0.359374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359374,0.000000,0.000000,0.250000,0,0);}
.m82_c00423{transform:matrix(0.360285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360285,0.000000,0.000000,0.250000,0,0);}
.m7f_c00423{transform:matrix(0.363270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363270,0.000000,0.000000,0.250000,0,0);}
.m69_c00423{transform:matrix(0.364688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364688,0.000000,0.000000,0.250000,0,0);}
.m56_c00423{transform:matrix(0.367402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367402,0.000000,0.000000,0.250000,0,0);}
.m6_c00423{transform:matrix(0.368016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368016,0.000000,0.000000,0.250000,0,0);}
.m66_c00423{transform:matrix(0.371397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371397,0.000000,0.000000,0.250000,0,0);}
.m4d_c00423{transform:matrix(0.383468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383468,0.000000,0.000000,0.250000,0,0);}
.m9_c00423{transform:matrix(0.385508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385508,0.000000,0.000000,0.250000,0,0);}
.m17_c00423{transform:matrix(0.436443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436443,0.000000,0.000000,0.250000,0,0);}
.m89_c00423{transform:matrix(0.452808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452808,0.000000,0.000000,0.250000,0,0);}
.v0_c00423{vertical-align:0.000000px;}
.v1_c00423{vertical-align:19.938600px;}
.ls1c_c00423{letter-spacing:-2.550240px;}
.lsf_c00423{letter-spacing:-2.508667px;}
.ls20_c00423{letter-spacing:-2.480940px;}
.lsc_c00423{letter-spacing:-2.432430px;}
.ls1f_c00423{letter-spacing:-2.418577px;}
.ls16_c00423{letter-spacing:-2.323728px;}
.ls8_c00423{letter-spacing:-2.314627px;}
.ls7_c00423{letter-spacing:-1.961190px;}
.ls12_c00423{letter-spacing:-1.626372px;}
.ls19_c00423{letter-spacing:-0.351648px;}
.lsa_c00423{letter-spacing:0.000000px;}
.ls5_c00423{letter-spacing:0.168498px;}
.ls1d_c00423{letter-spacing:0.428434px;}
.ls15_c00423{letter-spacing:0.725274px;}
.ls3_c00423{letter-spacing:1.158538px;}
.ls1b_c00423{letter-spacing:1.889257px;}
.ls4_c00423{letter-spacing:2.232001px;}
.ls11_c00423{letter-spacing:2.395810px;}
.ls10_c00423{letter-spacing:2.504700px;}
.lse_c00423{letter-spacing:2.616181px;}
.ls1_c00423{letter-spacing:3.025638px;}
.ls1a_c00423{letter-spacing:3.252744px;}
.ls22_c00423{letter-spacing:3.399264px;}
.ls6_c00423{letter-spacing:3.465000px;}
.ls18_c00423{letter-spacing:3.484810px;}
.ls14_c00423{letter-spacing:3.564000px;}
.lsb_c00423{letter-spacing:3.583810px;}
.ls13_c00423{letter-spacing:3.603610px;}
.ls9_c00423{letter-spacing:3.663000px;}
.ls2_c00423{letter-spacing:7.341840px;}
.ls0_c00423{letter-spacing:17.919000px;}
.ls21_c00423{letter-spacing:48.470598px;}
.lsd_c00423{letter-spacing:49.896198px;}
.ls17_c00423{letter-spacing:54.172998px;}
.ls1e_c00423{letter-spacing:85.536198px;}
.sc__c00423{text-shadow:none;}
.sc0_c00423{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00423{-webkit-text-stroke:0px transparent;}
.sc0_c00423{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00423{word-spacing:-20.535231px;}
.ws7_c00423{word-spacing:-20.256192px;}
.ws5_c00423{word-spacing:-19.375543px;}
.ws2_c00423{word-spacing:-18.315000px;}
.ws6_c00423{word-spacing:-16.568244px;}
.ws8_c00423{word-spacing:0.000000px;}
.ws3_c00423{word-spacing:0.213840px;}
.ws4_c00423{word-spacing:4.908420px;}
.ws1_c00423{word-spacing:5.447667px;}
._d_c00423{margin-left:-12.380940px;}
._0_c00423{margin-left:-4.085433px;}
._13_c00423{margin-left:-1.894464px;}
._12_c00423{width:3.635973px;}
._9_c00423{width:6.792885px;}
._e_c00423{width:8.572542px;}
._2_c00423{width:10.392519px;}
._4_c00423{width:12.600720px;}
._1_c00423{width:16.024635px;}
._a_c00423{width:20.952360px;}
._8_c00423{width:23.333310px;}
._10_c00423{width:25.860780px;}
._6_c00423{width:29.963340px;}
._3_c00423{width:35.677620px;}
._11_c00423{width:37.311747px;}
._5_c00423{width:39.756420px;}
._f_c00423{width:40.805820px;}
._7_c00423{width:41.956200px;}
._14_c00423{width:73.264466px;}
._c_c00423{width:133.353000px;}
._b_c00423{width:1481.944354px;}
.fc0_c00423{color:transparent;}
.fse_c00423{font-size:9.702198px;}
.fs8_c00423{font-size:20.790000px;}
.fs19_c00423{font-size:22.176000px;}
.fsa_c00423{font-size:27.720000px;}
.fsf_c00423{font-size:33.660000px;}
.fs7_c00423{font-size:47.916198px;}
.fs18_c00423{font-size:48.470598px;}
.fs5_c00423{font-size:49.896198px;}
.fs6_c00423{font-size:50.094000px;}
.fsc_c00423{font-size:53.856198px;}
.fs10_c00423{font-size:54.172998px;}
.fs13_c00423{font-size:59.598000px;}
.fs1_c00423{font-size:66.132198px;}
.fs12_c00423{font-size:66.330000px;}
.fs15_c00423{font-size:69.102198px;}
.fs0_c00423{font-size:69.300000px;}
.fs4_c00423{font-size:69.498000px;}
.fs11_c00423{font-size:69.696198px;}
.fs17_c00423{font-size:70.884000px;}
.fsb_c00423{font-size:71.280000px;}
.fs3_c00423{font-size:71.676198px;}
.fs9_c00423{font-size:72.072198px;}
.fs14_c00423{font-size:72.864000px;}
.fs2_c00423{font-size:73.260000px;}
.fsd_c00423{font-size:79.200000px;}
.fs16_c00423{font-size:85.536198px;}
.fs1a_c00423{font-size:104.148000px;}
.y0_c00423{bottom:0.000000px;}
.y16_c00423{bottom:31.626585px;}
.y1_c00423{bottom:76.500000px;}
.y17_c00423{bottom:110.039535px;}
.y15_c00423{bottom:150.307785px;}
.y14_c00423{bottom:180.606735px;}
.y13_c00423{bottom:246.179385px;}
.y12_c00423{bottom:310.687785px;}
.y11_c00423{bottom:360.583785px;}
.y10_c00423{bottom:374.839785px;}
.yf_c00423{bottom:438.283935px;}
.ye_c00423{bottom:470.716335px;}
.yd_c00423{bottom:502.792335px;}
.yc_c00423{bottom:535.219785px;}
.yb_c00423{bottom:566.944335px;}
.ya_c00423{bottom:581.551785px;}
.y9_c00423{bottom:596.164185px;}
.y8_c00423{bottom:600.440985px;}
.y7_c00423{bottom:696.673935px;}
.y6_c00423{bottom:830.323935px;}
.y5_c00423{bottom:857.053935px;}
.y4_c00423{bottom:890.194185px;}
.y3_c00423{bottom:923.344335px;}
.y2_c00423{bottom:1078.729785px;}
.h18_c00423{height:23.128875px;}
.hb_c00423{height:28.911094px;}
.h17_c00423{height:32.281418px;}
.he_c00423{height:33.035449px;}
.h7_c00423{height:33.230868px;}
.hf_c00423{height:36.079217px;}
.h9_c00423{height:47.027128px;}
.h8_c00423{height:49.164521px;}
.h14_c00423{height:56.967108px;}
.h3_c00423{height:64.905136px;}
.h15_c00423{height:67.820028px;}
.h6_c00423{height:68.208486px;}
.h12_c00423{height:68.973816px;}
.h11_c00423{height:69.180117px;}
.h16_c00423{height:69.568770px;}
.hc_c00423{height:69.957422px;}
.h5_c00423{height:70.346269px;}
.h4_c00423{height:71.900684px;}
.h2_c00423{height:72.277734px;}
.h10_c00423{height:72.690957px;}
.ha_c00423{height:75.169050px;}
.h13_c00423{height:75.994875px;}
.hd_c00423{height:82.603125px;}
.h19_c00423{height:108.623109px;}
.h1_c00423{height:1110.000000px;}
.h0_c00423{height:1263.000000px;}
.w1_c00423{width:775.500000px;}
.w0_c00423{width:892.500000px;}
.x0_c00423{left:0.000000px;}
.x1_c00423{left:58.500000px;}
.x19_c00423{left:75.206985px;}
.x5_c00423{left:76.414785px;}
.x71_c00423{left:77.835435px;}
.x49_c00423{left:79.152135px;}
.x53_c00423{left:85.161435px;}
.x43_c00423{left:96.991935px;}
.x27_c00423{left:108.490785px;}
.x6_c00423{left:109.668885px;}
.x5e_c00423{left:118.831335px;}
.x72_c00423{left:119.885685px;}
.x34_c00423{left:129.023385px;}
.x4a_c00423{left:132.290385px;}
.x6a_c00423{left:139.670835px;}
.x6c_c00423{left:141.254835px;}
.x1a_c00423{left:143.680335px;}
.x54_c00423{left:150.417285px;}
.x28_c00423{left:151.783485px;}
.x73_c00423{left:162.643785px;}
.x35_c00423{left:163.910985px;}
.x33_c00423{left:167.385885px;}
.x44_c00423{left:172.083435px;}
.x6d_c00423{left:173.726835px;}
.x29_c00423{left:185.443485px;}
.x4b_c00423{left:195.472185px;}
.x55_c00423{left:196.516635px;}
.x1b_c00423{left:207.218535px;}
.x56_c00423{left:217.509585px;}
.x7_c00423{left:218.969835px;}
.x39_c00423{left:229.102485px;}
.x6b_c00423{left:232.364535px;}
.x5f_c00423{left:238.413435px;}
.x2a_c00423{left:240.165735px;}
.x6e_c00423{left:242.759535px;}
.x8_c00423{left:243.957435px;}
.x9_c00423{left:252.085335px;}
.x45_c00423{left:253.095135px;}
.x3a_c00423{left:262.430835px;}
.x6f_c00423{left:263.856435px;}
.x1c_c00423{left:273.499035px;}
.x3b_c00423{left:283.859385px;}
.xa_c00423{left:285.210735px;}
.x4c_c00423{left:295.571085px;}
.x36_c00423{left:305.941335px;}
.xb_c00423{left:306.975885px;}
.x41_c00423{left:311.826885px;}
.x57_c00423{left:315.821535px;}
.x1d_c00423{left:317.712435px;}
.x4d_c00423{left:319.385535px;}
.x37_c00423{left:327.231285px;}
.x3c_c00423{left:329.453835px;}
.x70_c00423{left:339.433035px;}
.x63_c00423{left:341.289285px;}
.x4e_c00423{left:348.897435px;}
.xc_c00423{left:351.080385px;}
.x58_c00423{left:353.416785px;}
.x38_c00423{left:361.564485px;}
.x59_c00423{left:372.241635px;}
.xd_c00423{left:374.008785px;}
.x74_c00423{left:383.141535px;}
.xe_c00423{left:384.156285px;}
.x2b_c00423{left:395.556135px;}
.x69_c00423{left:415.910535px;}
.x2c_c00423{left:417.053985px;}
.x1e_c00423{left:427.597485px;}
.xf_c00423{left:429.062685px;}
.x5a_c00423{left:431.111985px;}
.x5b_c00423{left:438.492435px;}
.x1f_c00423{left:443.214735px;}
.x2d_c00423{left:450.605085px;}
.x4f_c00423{left:460.277385px;}
.x10_c00423{left:461.366385px;}
.x20_c00423{left:470.682285px;}
.x50_c00423{left:472.345485px;}
.x11_c00423{left:482.552385px;}
.x2e_c00423{left:483.829485px;}
.x64_c00423{left:487.190535px;}
.x5c_c00423{left:493.378035px;}
.x75_c00423{left:496.159935px;}
.x2f_c00423{left:504.951135px;}
.x76_c00423{left:515.603535px;}
.x12_c00423{left:516.771735px;}
.x65_c00423{left:519.261585px;}
.x66_c00423{left:536.373735px;}
.x13_c00423{left:538.150785px;}
.x21_c00423{left:549.327885px;}
.x67_c00423{left:559.178385px;}
.x51_c00423{left:569.127885px;}
.x3d_c00423{left:570.736635px;}
.x14_c00423{left:572.365185px;}
.x42_c00423{left:579.359535px;}
.x68_c00423{left:580.567335px;}
.x22_c00423{left:581.819685px;}
.x77_c00423{left:590.893035px;}
.x15_c00423{left:592.882935px;}
.x30_c00423{left:594.758985px;}
.x60_c00423{left:603.169035px;}
.x3e_c00423{left:604.564935px;}
.x23_c00423{left:615.633135px;}
.x52_c00423{left:621.385035px;}
.x78_c00423{left:626.290485px;}
.x31_c00423{left:627.617085px;}
.x16_c00423{left:629.206035px;}
.x61_c00423{left:636.338985px;}
.x46_c00423{left:637.363635px;}
.x24_c00423{left:639.308985px;}
.x17_c00423{left:648.204135px;}
.x3f_c00423{left:658.059585px;}
.x5d_c00423{left:659.084235px;}
.x2_c00423{left:669.459435px;}
.x32_c00423{left:671.870085px;}
.x47_c00423{left:678.215985px;}
.x48_c00423{left:681.067185px;}
.x3_c00423{left:691.531485px;}
.x4_c00423{left:702.362085px;}
.x79_c00423{left:706.643835px;}
.x18_c00423{left:712.366035px;}
.x62_c00423{left:713.945085px;}
.x25_c00423{left:723.854985px;}
.x40_c00423{left:725.285535px;}
.x26_c00423{left:746.253735px;}
.x7a_c00423{left:754.134135px;}
@media print{
.v0_c00423{vertical-align:0.000000pt;}
.v1_c00423{vertical-align:17.723200pt;}
.ls1c_c00423{letter-spacing:-2.266880pt;}
.lsf_c00423{letter-spacing:-2.229926pt;}
.ls20_c00423{letter-spacing:-2.205280pt;}
.lsc_c00423{letter-spacing:-2.162160pt;}
.ls1f_c00423{letter-spacing:-2.149846pt;}
.ls16_c00423{letter-spacing:-2.065536pt;}
.ls8_c00423{letter-spacing:-2.057446pt;}
.ls7_c00423{letter-spacing:-1.743280pt;}
.ls12_c00423{letter-spacing:-1.445664pt;}
.ls19_c00423{letter-spacing:-0.312576pt;}
.lsa_c00423{letter-spacing:0.000000pt;}
.ls5_c00423{letter-spacing:0.149776pt;}
.ls1d_c00423{letter-spacing:0.380830pt;}
.ls15_c00423{letter-spacing:0.644688pt;}
.ls3_c00423{letter-spacing:1.029811pt;}
.ls1b_c00423{letter-spacing:1.679339pt;}
.ls4_c00423{letter-spacing:1.984001pt;}
.ls11_c00423{letter-spacing:2.129609pt;}
.ls10_c00423{letter-spacing:2.226400pt;}
.lse_c00423{letter-spacing:2.325494pt;}
.ls1_c00423{letter-spacing:2.689456pt;}
.ls1a_c00423{letter-spacing:2.891328pt;}
.ls22_c00423{letter-spacing:3.021568pt;}
.ls6_c00423{letter-spacing:3.080000pt;}
.ls18_c00423{letter-spacing:3.097609pt;}
.ls14_c00423{letter-spacing:3.168000pt;}
.lsb_c00423{letter-spacing:3.185609pt;}
.ls13_c00423{letter-spacing:3.203209pt;}
.ls9_c00423{letter-spacing:3.256000pt;}
.ls2_c00423{letter-spacing:6.526080pt;}
.ls0_c00423{letter-spacing:15.928000pt;}
.ls21_c00423{letter-spacing:43.084976pt;}
.lsd_c00423{letter-spacing:44.352176pt;}
.ls17_c00423{letter-spacing:48.153776pt;}
.ls1e_c00423{letter-spacing:76.032176pt;}
.ws0_c00423{word-spacing:-18.253538pt;}
.ws7_c00423{word-spacing:-18.005504pt;}
.ws5_c00423{word-spacing:-17.222705pt;}
.ws2_c00423{word-spacing:-16.280000pt;}
.ws6_c00423{word-spacing:-14.727328pt;}
.ws8_c00423{word-spacing:0.000000pt;}
.ws3_c00423{word-spacing:0.190080pt;}
.ws4_c00423{word-spacing:4.363040pt;}
.ws1_c00423{word-spacing:4.842371pt;}
._d_c00423{margin-left:-11.005280pt;}
._0_c00423{margin-left:-3.631496pt;}
._13_c00423{margin-left:-1.683968pt;}
._12_c00423{width:3.231976pt;}
._9_c00423{width:6.038120pt;}
._e_c00423{width:7.620037pt;}
._2_c00423{width:9.237795pt;}
._4_c00423{width:11.200640pt;}
._1_c00423{width:14.244120pt;}
._a_c00423{width:18.624320pt;}
._8_c00423{width:20.740720pt;}
._10_c00423{width:22.987360pt;}
._6_c00423{width:26.634080pt;}
._3_c00423{width:31.713440pt;}
._11_c00423{width:33.165997pt;}
._5_c00423{width:35.339040pt;}
._f_c00423{width:36.271840pt;}
._7_c00423{width:37.294400pt;}
._14_c00423{width:65.123970pt;}
._c_c00423{width:118.536000pt;}
._b_c00423{width:1317.283870pt;}
.fse_c00423{font-size:8.624176pt;}
.fs8_c00423{font-size:18.480000pt;}
.fs19_c00423{font-size:19.712000pt;}
.fsa_c00423{font-size:24.640000pt;}
.fsf_c00423{font-size:29.920000pt;}
.fs7_c00423{font-size:42.592176pt;}
.fs18_c00423{font-size:43.084976pt;}
.fs5_c00423{font-size:44.352176pt;}
.fs6_c00423{font-size:44.528000pt;}
.fsc_c00423{font-size:47.872176pt;}
.fs10_c00423{font-size:48.153776pt;}
.fs13_c00423{font-size:52.976000pt;}
.fs1_c00423{font-size:58.784176pt;}
.fs12_c00423{font-size:58.960000pt;}
.fs15_c00423{font-size:61.424176pt;}
.fs0_c00423{font-size:61.600000pt;}
.fs4_c00423{font-size:61.776000pt;}
.fs11_c00423{font-size:61.952176pt;}
.fs17_c00423{font-size:63.008000pt;}
.fsb_c00423{font-size:63.360000pt;}
.fs3_c00423{font-size:63.712176pt;}
.fs9_c00423{font-size:64.064176pt;}
.fs14_c00423{font-size:64.768000pt;}
.fs2_c00423{font-size:65.120000pt;}
.fsd_c00423{font-size:70.400000pt;}
.fs16_c00423{font-size:76.032176pt;}
.fs1a_c00423{font-size:92.576000pt;}
.y0_c00423{bottom:0.000000pt;}
.y16_c00423{bottom:28.112520pt;}
.y1_c00423{bottom:68.000000pt;}
.y17_c00423{bottom:97.812920pt;}
.y15_c00423{bottom:133.606920pt;}
.y14_c00423{bottom:160.539320pt;}
.y13_c00423{bottom:218.826120pt;}
.y12_c00423{bottom:276.166920pt;}
.y11_c00423{bottom:320.518920pt;}
.y10_c00423{bottom:333.190920pt;}
.yf_c00423{bottom:389.585720pt;}
.ye_c00423{bottom:418.414520pt;}
.yd_c00423{bottom:446.926520pt;}
.yc_c00423{bottom:475.750920pt;}
.yb_c00423{bottom:503.950520pt;}
.ya_c00423{bottom:516.934920pt;}
.y9_c00423{bottom:529.923720pt;}
.y8_c00423{bottom:533.725320pt;}
.y7_c00423{bottom:619.265720pt;}
.y6_c00423{bottom:738.065720pt;}
.y5_c00423{bottom:761.825720pt;}
.y4_c00423{bottom:791.283720pt;}
.y3_c00423{bottom:820.750520pt;}
.y2_c00423{bottom:958.870920pt;}
.h18_c00423{height:20.559000pt;}
.hb_c00423{height:25.698750pt;}
.h17_c00423{height:28.694594pt;}
.he_c00423{height:29.364844pt;}
.h7_c00423{height:29.538549pt;}
.hf_c00423{height:32.070415pt;}
.h9_c00423{height:41.801891pt;}
.h8_c00423{height:43.701797pt;}
.h14_c00423{height:50.637429pt;}
.h3_c00423{height:57.693454pt;}
.h15_c00423{height:60.284470pt;}
.h6_c00423{height:60.629766pt;}
.h12_c00423{height:61.310059pt;}
.h11_c00423{height:61.493438pt;}
.h16_c00423{height:61.838906pt;}
.hc_c00423{height:62.184375pt;}
.h5_c00423{height:62.530016pt;}
.h4_c00423{height:63.911719pt;}
.h2_c00423{height:64.246875pt;}
.h10_c00423{height:64.614184pt;}
.ha_c00423{height:66.816934pt;}
.h13_c00423{height:67.551000pt;}
.hd_c00423{height:73.425000pt;}
.h19_c00423{height:96.553875pt;}
.h1_c00423{height:986.666667pt;}
.h0_c00423{height:1122.666667pt;}
.w1_c00423{width:689.333333pt;}
.w0_c00423{width:793.333333pt;}
.x0_c00423{left:0.000000pt;}
.x1_c00423{left:52.000000pt;}
.x19_c00423{left:66.850653pt;}
.x5_c00423{left:67.924253pt;}
.x71_c00423{left:69.187053pt;}
.x49_c00423{left:70.357453pt;}
.x53_c00423{left:75.699053pt;}
.x43_c00423{left:86.215053pt;}
.x27_c00423{left:96.436253pt;}
.x6_c00423{left:97.483453pt;}
.x5e_c00423{left:105.627853pt;}
.x72_c00423{left:106.565053pt;}
.x34_c00423{left:114.687453pt;}
.x4a_c00423{left:117.591453pt;}
.x6a_c00423{left:124.151853pt;}
.x6c_c00423{left:125.559853pt;}
.x1a_c00423{left:127.715853pt;}
.x54_c00423{left:133.704253pt;}
.x28_c00423{left:134.918653pt;}
.x73_c00423{left:144.572253pt;}
.x35_c00423{left:145.698653pt;}
.x33_c00423{left:148.787453pt;}
.x44_c00423{left:152.963053pt;}
.x6d_c00423{left:154.423853pt;}
.x29_c00423{left:164.838653pt;}
.x4b_c00423{left:173.753053pt;}
.x55_c00423{left:174.681453pt;}
.x1b_c00423{left:184.194253pt;}
.x56_c00423{left:193.341853pt;}
.x7_c00423{left:194.639853pt;}
.x39_c00423{left:203.646653pt;}
.x6b_c00423{left:206.546253pt;}
.x5f_c00423{left:211.923053pt;}
.x2a_c00423{left:213.480653pt;}
.x6e_c00423{left:215.786253pt;}
.x8_c00423{left:216.851053pt;}
.x9_c00423{left:224.075853pt;}
.x45_c00423{left:224.973453pt;}
.x3a_c00423{left:233.271853pt;}
.x6f_c00423{left:234.539053pt;}
.x1c_c00423{left:243.110253pt;}
.x3b_c00423{left:252.319453pt;}
.xa_c00423{left:253.520653pt;}
.x4c_c00423{left:262.729853pt;}
.x36_c00423{left:271.947853pt;}
.xb_c00423{left:272.867453pt;}
.x41_c00423{left:277.179453pt;}
.x57_c00423{left:280.730253pt;}
.x1d_c00423{left:282.411053pt;}
.x4d_c00423{left:283.898253pt;}
.x37_c00423{left:290.872253pt;}
.x3c_c00423{left:292.847853pt;}
.x70_c00423{left:301.718253pt;}
.x63_c00423{left:303.368253pt;}
.x4e_c00423{left:310.131053pt;}
.xc_c00423{left:312.071453pt;}
.x58_c00423{left:314.148253pt;}
.x38_c00423{left:321.390653pt;}
.x59_c00423{left:330.881453pt;}
.xd_c00423{left:332.452253pt;}
.x74_c00423{left:340.570253pt;}
.xe_c00423{left:341.472253pt;}
.x2b_c00423{left:351.605453pt;}
.x69_c00423{left:369.698253pt;}
.x2c_c00423{left:370.714653pt;}
.x1e_c00423{left:380.086653pt;}
.xf_c00423{left:381.389053pt;}
.x5a_c00423{left:383.210653pt;}
.x5b_c00423{left:389.771053pt;}
.x1f_c00423{left:393.968653pt;}
.x2d_c00423{left:400.537853pt;}
.x4f_c00423{left:409.135453pt;}
.x10_c00423{left:410.103453pt;}
.x20_c00423{left:418.384253pt;}
.x50_c00423{left:419.862653pt;}
.x11_c00423{left:428.935453pt;}
.x2e_c00423{left:430.070653pt;}
.x64_c00423{left:433.058253pt;}
.x5c_c00423{left:438.558253pt;}
.x75_c00423{left:441.031053pt;}
.x2f_c00423{left:448.845453pt;}
.x76_c00423{left:458.314253pt;}
.x12_c00423{left:459.352653pt;}
.x65_c00423{left:461.565853pt;}
.x66_c00423{left:476.776653pt;}
.x13_c00423{left:478.356253pt;}
.x21_c00423{left:488.291453pt;}
.x67_c00423{left:497.047453pt;}
.x51_c00423{left:505.891453pt;}
.x3d_c00423{left:507.321453pt;}
.x14_c00423{left:508.769053pt;}
.x42_c00423{left:514.986253pt;}
.x68_c00423{left:516.059853pt;}
.x22_c00423{left:517.173053pt;}
.x77_c00423{left:525.238253pt;}
.x15_c00423{left:527.007053pt;}
.x30_c00423{left:528.674653pt;}
.x60_c00423{left:536.150253pt;}
.x3e_c00423{left:537.391053pt;}
.x23_c00423{left:547.229453pt;}
.x52_c00423{left:552.342253pt;}
.x78_c00423{left:556.702653pt;}
.x31_c00423{left:557.881853pt;}
.x16_c00423{left:559.294253pt;}
.x61_c00423{left:565.634653pt;}
.x46_c00423{left:566.545453pt;}
.x24_c00423{left:568.274653pt;}
.x17_c00423{left:576.181453pt;}
.x3f_c00423{left:584.941853pt;}
.x5d_c00423{left:585.852653pt;}
.x2_c00423{left:595.075053pt;}
.x32_c00423{left:597.217853pt;}
.x47_c00423{left:602.858653pt;}
.x48_c00423{left:605.393053pt;}
.x3_c00423{left:614.694653pt;}
.x4_c00423{left:624.321853pt;}
.x79_c00423{left:628.127853pt;}
.x18_c00423{left:633.214253pt;}
.x62_c00423{left:634.617853pt;}
.x25_c00423{left:643.426653pt;}
.x40_c00423{left:644.698253pt;}
.x26_c00423{left:663.336653pt;}
.x7a_c00423{left:670.341453pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_10ac979ac030806481bb1bd3.woff2')format("woff");}.ff1_c00424{font-family:ff1_c00424;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00424;src:url('chunks/assets/font_1b0eb3db1108688217605ec5.woff2')format("woff");}.ff2_c00424{font-family:ff2_c00424;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00424;src:url('chunks/assets/font_667200ccc405b637051a4f2d.woff2')format("woff");}.ff3_c00424{font-family:ff3_c00424;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m74_c00424{transform:matrix(0.044118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.044118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.044118,0.000000,0.000000,0.250000,0,0);}
.mfb_c00424{transform:matrix(0.045919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045919,0.000000,0.000000,0.250000,0,0);}
.m4a_c00424{transform:matrix(0.057144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.057144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.057144,0.000000,0.000000,0.250000,0,0);}
.me3_c00424{transform:matrix(0.065477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065477,0.000000,0.000000,0.250000,0,0);}
.m2f_c00424{transform:matrix(0.073170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073170,0.000000,0.000000,0.250000,0,0);}
.me0_c00424{transform:matrix(0.077382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077382,0.000000,0.000000,0.250000,0,0);}
.m30_c00424{transform:matrix(0.079269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.079269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.079269,0.000000,0.000000,0.250000,0,0);}
.m4b_c00424{transform:matrix(0.085714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085714,0.000000,0.000000,0.250000,0,0);}
.m23_c00424{transform:matrix(0.090278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090278,0.000000,0.000000,0.250000,0,0);}
.mfa_c00424{transform:matrix(0.093751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093751,0.000000,0.000000,0.250000,0,0);}
.m31_c00424{transform:matrix(0.097561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097561,0.000000,0.000000,0.250000,0,0);}
.m75_c00424{transform:matrix(0.100490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100490,0.000000,0.000000,0.250000,0,0);}
.me2_c00424{transform:matrix(0.115080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115080,0.000000,0.000000,0.250000,0,0);}
.mb_c00424{transform:matrix(0.116375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116375,0.000000,0.000000,0.250000,0,0);}
.m6d_c00424{transform:matrix(0.131979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131979,0.000000,0.000000,0.250000,0,0);}
.m2c_c00424{transform:matrix(0.134146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134146,0.000000,0.000000,0.250000,0,0);}
.mcc_c00424{transform:matrix(0.142472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142472,0.000000,0.000000,0.250000,0,0);}
.me1_c00424{transform:matrix(0.148809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148809,0.000000,0.000000,0.250000,0,0);}
.m34_c00424{transform:matrix(0.153846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153846,0.000000,0.000000,0.250000,0,0);}
.mf8_c00424{transform:matrix(0.157142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157142,0.000000,0.000000,0.250000,0,0);}
.md_c00424{transform:matrix(0.157486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157486,0.000000,0.000000,0.250000,0,0);}
.m2d_c00424{transform:matrix(0.158537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158537,0.000000,0.000000,0.250000,0,0);}
.m26_c00424{transform:matrix(0.159723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159723,0.000000,0.000000,0.250000,0,0);}
.mb5_c00424{transform:matrix(0.160442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160442,0.000000,0.000000,0.250000,0,0);}
.m35_c00424{transform:matrix(0.173077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173077,0.000000,0.000000,0.250000,0,0);}
.m2e_c00424{transform:matrix(0.176830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176830,0.000000,0.000000,0.250000,0,0);}
.m25_c00424{transform:matrix(0.177084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177084,0.000000,0.000000,0.250000,0,0);}
.m3e_c00424{transform:matrix(0.178129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178129,0.000000,0.000000,0.250000,0,0);}
.m32_c00424{transform:matrix(0.178572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178572,0.000000,0.000000,0.250000,0,0);}
.m1_c00424{transform:matrix(0.179554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179554,0.000000,0.000000,0.250000,0,0);}
.m33_c00424{transform:matrix(0.185898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185898,0.000000,0.000000,0.250000,0,0);}
.m56_c00424{transform:matrix(0.187186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187186,0.000000,0.000000,0.250000,0,0);}
.m24_c00424{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.mca_c00424{transform:matrix(0.197983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197983,0.000000,0.000000,0.250000,0,0);}
.m4c_c00424{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00424{transform:matrix(0.211142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211142,0.000000,0.000000,0.250000,0,0);}
.me_c00424{transform:matrix(0.222150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222150,0.000000,0.000000,0.250000,0,0);}
.m73_c00424{transform:matrix(0.223039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223039,0.000000,0.000000,0.250000,0,0);}
.ma8_c00424{transform:matrix(0.228539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228539,0.000000,0.000000,0.250000,0,0);}
.m8d_c00424{transform:matrix(0.230245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230245,0.000000,0.000000,0.250000,0,0);}
.m85_c00424{transform:matrix(0.230731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230731,0.000000,0.000000,0.250000,0,0);}
.m17_c00424{transform:matrix(0.230864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230864,0.000000,0.000000,0.250000,0,0);}
.m89_c00424{transform:matrix(0.240443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240443,0.000000,0.000000,0.250000,0,0);}
.m90_c00424{transform:matrix(0.247747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247747,0.000000,0.000000,0.250000,0,0);}
.m0_c00424{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00424{transform:matrix(0.251665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251665,0.000000,0.000000,0.250000,0,0);}
.m11_c00424{transform:matrix(0.251836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251836,0.000000,0.000000,0.250000,0,0);}
.m5e_c00424{transform:matrix(0.252560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252560,0.000000,0.000000,0.250000,0,0);}
.m3d_c00424{transform:matrix(0.252745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252745,0.000000,0.000000,0.250000,0,0);}
.m7d_c00424{transform:matrix(0.253030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253030,0.000000,0.000000,0.250000,0,0);}
.mf3_c00424{transform:matrix(0.253041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253041,0.000000,0.000000,0.250000,0,0);}
.m95_c00424{transform:matrix(0.253354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253354,0.000000,0.000000,0.250000,0,0);}
.m22_c00424{transform:matrix(0.253472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253472,0.000000,0.000000,0.250000,0,0);}
.mb2_c00424{transform:matrix(0.253575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253575,0.000000,0.000000,0.250000,0,0);}
.mb4_c00424{transform:matrix(0.253774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253774,0.000000,0.000000,0.250000,0,0);}
.m3a_c00424{transform:matrix(0.254698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254698,0.000000,0.000000,0.250000,0,0);}
.mf9_c00424{transform:matrix(0.256322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256322,0.000000,0.000000,0.250000,0,0);}
.m1f_c00424{transform:matrix(0.257560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257560,0.000000,0.000000,0.250000,0,0);}
.md4_c00424{transform:matrix(0.257727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257727,0.000000,0.000000,0.250000,0,0);}
.m2_c00424{transform:matrix(0.260900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260900,0.000000,0.000000,0.250000,0,0);}
.md9_c00424{transform:matrix(0.260982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260982,0.000000,0.000000,0.250000,0,0);}
.m19_c00424{transform:matrix(0.262714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262714,0.000000,0.000000,0.250000,0,0);}
.m18_c00424{transform:matrix(0.262919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262919,0.000000,0.000000,0.250000,0,0);}
.ma7_c00424{transform:matrix(0.263129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263129,0.000000,0.000000,0.250000,0,0);}
.mb0_c00424{transform:matrix(0.265156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265156,0.000000,0.000000,0.250000,0,0);}
.md1_c00424{transform:matrix(0.265643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265643,0.000000,0.000000,0.250000,0,0);}
.ma3_c00424{transform:matrix(0.266379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266379,0.000000,0.000000,0.250000,0,0);}
.m51_c00424{transform:matrix(0.267098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267098,0.000000,0.000000,0.250000,0,0);}
.m69_c00424{transform:matrix(0.270054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270054,0.000000,0.000000,0.250000,0,0);}
.med_c00424{transform:matrix(0.270507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270507,0.000000,0.000000,0.250000,0,0);}
.m53_c00424{transform:matrix(0.270658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270658,0.000000,0.000000,0.250000,0,0);}
.m76_c00424{transform:matrix(0.272097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272097,0.000000,0.000000,0.250000,0,0);}
.mc2_c00424{transform:matrix(0.274713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274713,0.000000,0.000000,0.250000,0,0);}
.mdd_c00424{transform:matrix(0.275667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275667,0.000000,0.000000,0.250000,0,0);}
.me4_c00424{transform:matrix(0.275966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275966,0.000000,0.000000,0.250000,0,0);}
.m49_c00424{transform:matrix(0.276209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276209,0.000000,0.000000,0.250000,0,0);}
.m5a_c00424{transform:matrix(0.276872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276872,0.000000,0.000000,0.250000,0,0);}
.me7_c00424{transform:matrix(0.277181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277181,0.000000,0.000000,0.250000,0,0);}
.m58_c00424{transform:matrix(0.277612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277612,0.000000,0.000000,0.250000,0,0);}
.mb3_c00424{transform:matrix(0.277868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277868,0.000000,0.000000,0.250000,0,0);}
.m66_c00424{transform:matrix(0.278589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278589,0.000000,0.000000,0.250000,0,0);}
.m4_c00424{transform:matrix(0.279459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279459,0.000000,0.000000,0.250000,0,0);}
.mde_c00424{transform:matrix(0.279835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279835,0.000000,0.000000,0.250000,0,0);}
.m70_c00424{transform:matrix(0.280054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280054,0.000000,0.000000,0.250000,0,0);}
.m6_c00424{transform:matrix(0.280679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280679,0.000000,0.000000,0.250000,0,0);}
.m93_c00424{transform:matrix(0.281908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281908,0.000000,0.000000,0.250000,0,0);}
.m28_c00424{transform:matrix(0.282237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282237,0.000000,0.000000,0.250000,0,0);}
.m7b_c00424{transform:matrix(0.282261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282261,0.000000,0.000000,0.250000,0,0);}
.m10_c00424{transform:matrix(0.282569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282569,0.000000,0.000000,0.250000,0,0);}
.ma0_c00424{transform:matrix(0.284070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284070,0.000000,0.000000,0.250000,0,0);}
.mf0_c00424{transform:matrix(0.284268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284268,0.000000,0.000000,0.250000,0,0);}
.mae_c00424{transform:matrix(0.285301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285301,0.000000,0.000000,0.250000,0,0);}
.m71_c00424{transform:matrix(0.285691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285691,0.000000,0.000000,0.250000,0,0);}
.mf5_c00424{transform:matrix(0.286171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286171,0.000000,0.000000,0.250000,0,0);}
.mc8_c00424{transform:matrix(0.286315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286315,0.000000,0.000000,0.250000,0,0);}
.m1c_c00424{transform:matrix(0.287527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287527,0.000000,0.000000,0.250000,0,0);}
.mce_c00424{transform:matrix(0.288273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288273,0.000000,0.000000,0.250000,0,0);}
.mef_c00424{transform:matrix(0.288278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288278,0.000000,0.000000,0.250000,0,0);}
.m97_c00424{transform:matrix(0.288338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288338,0.000000,0.000000,0.250000,0,0);}
.mc1_c00424{transform:matrix(0.288525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288525,0.000000,0.000000,0.250000,0,0);}
.ma5_c00424{transform:matrix(0.288692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288692,0.000000,0.000000,0.250000,0,0);}
.m42_c00424{transform:matrix(0.288784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288784,0.000000,0.000000,0.250000,0,0);}
.m55_c00424{transform:matrix(0.289376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289376,0.000000,0.000000,0.250000,0,0);}
.mf2_c00424{transform:matrix(0.289749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289749,0.000000,0.000000,0.250000,0,0);}
.m54_c00424{transform:matrix(0.289804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289804,0.000000,0.000000,0.250000,0,0);}
.m60_c00424{transform:matrix(0.290804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290804,0.000000,0.000000,0.250000,0,0);}
.m4d_c00424{transform:matrix(0.292484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292484,0.000000,0.000000,0.250000,0,0);}
.mf1_c00424{transform:matrix(0.292555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292555,0.000000,0.000000,0.250000,0,0);}
.me6_c00424{transform:matrix(0.292767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292767,0.000000,0.000000,0.250000,0,0);}
.m12_c00424{transform:matrix(0.292849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292849,0.000000,0.000000,0.250000,0,0);}
.m9c_c00424{transform:matrix(0.292913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292913,0.000000,0.000000,0.250000,0,0);}
.m6b_c00424{transform:matrix(0.293096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293096,0.000000,0.000000,0.250000,0,0);}
.m16_c00424{transform:matrix(0.293366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293366,0.000000,0.000000,0.250000,0,0);}
.m8f_c00424{transform:matrix(0.294183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294183,0.000000,0.000000,0.250000,0,0);}
.m43_c00424{transform:matrix(0.294185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294185,0.000000,0.000000,0.250000,0,0);}
.mbb_c00424{transform:matrix(0.294216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294216,0.000000,0.000000,0.250000,0,0);}
.m3c_c00424{transform:matrix(0.294411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294411,0.000000,0.000000,0.250000,0,0);}
.mbd_c00424{transform:matrix(0.294746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294746,0.000000,0.000000,0.250000,0,0);}
.m87_c00424{transform:matrix(0.295234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295234,0.000000,0.000000,0.250000,0,0);}
.mbc_c00424{transform:matrix(0.295733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295733,0.000000,0.000000,0.250000,0,0);}
.mc7_c00424{transform:matrix(0.295736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295736,0.000000,0.000000,0.250000,0,0);}
.m99_c00424{transform:matrix(0.296028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296028,0.000000,0.000000,0.250000,0,0);}
.m13_c00424{transform:matrix(0.296065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296065,0.000000,0.000000,0.250000,0,0);}
.mb6_c00424{transform:matrix(0.296070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296070,0.000000,0.000000,0.250000,0,0);}
.mc6_c00424{transform:matrix(0.297442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297442,0.000000,0.000000,0.250000,0,0);}
.m20_c00424{transform:matrix(0.297498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297498,0.000000,0.000000,0.250000,0,0);}
.mec_c00424{transform:matrix(0.297644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297644,0.000000,0.000000,0.250000,0,0);}
.m4e_c00424{transform:matrix(0.298026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298026,0.000000,0.000000,0.250000,0,0);}
.m7c_c00424{transform:matrix(0.298064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298064,0.000000,0.000000,0.250000,0,0);}
.m57_c00424{transform:matrix(0.298286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298286,0.000000,0.000000,0.250000,0,0);}
.m9d_c00424{transform:matrix(0.298423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298423,0.000000,0.000000,0.250000,0,0);}
.mdb_c00424{transform:matrix(0.298575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298575,0.000000,0.000000,0.250000,0,0);}
.m15_c00424{transform:matrix(0.298601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298601,0.000000,0.000000,0.250000,0,0);}
.mf4_c00424{transform:matrix(0.298955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298955,0.000000,0.000000,0.250000,0,0);}
.maa_c00424{transform:matrix(0.299299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299299,0.000000,0.000000,0.250000,0,0);}
.m9a_c00424{transform:matrix(0.299440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299440,0.000000,0.000000,0.250000,0,0);}
.m9_c00424{transform:matrix(0.299840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299840,0.000000,0.000000,0.250000,0,0);}
.m5_c00424{transform:matrix(0.300023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300023,0.000000,0.000000,0.250000,0,0);}
.mda_c00424{transform:matrix(0.300424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300424,0.000000,0.000000,0.250000,0,0);}
.me5_c00424{transform:matrix(0.301081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301081,0.000000,0.000000,0.250000,0,0);}
.m45_c00424{transform:matrix(0.301437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301437,0.000000,0.000000,0.250000,0,0);}
.m77_c00424{transform:matrix(0.301618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301618,0.000000,0.000000,0.250000,0,0);}
.m3b_c00424{transform:matrix(0.302147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302147,0.000000,0.000000,0.250000,0,0);}
.m6e_c00424{transform:matrix(0.302399,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302399,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302399,0.000000,0.000000,0.250000,0,0);}
.m37_c00424{transform:matrix(0.302446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302446,0.000000,0.000000,0.250000,0,0);}
.m6a_c00424{transform:matrix(0.302672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302672,0.000000,0.000000,0.250000,0,0);}
.mdc_c00424{transform:matrix(0.302906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302906,0.000000,0.000000,0.250000,0,0);}
.ma9_c00424{transform:matrix(0.303375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303375,0.000000,0.000000,0.250000,0,0);}
.m1a_c00424{transform:matrix(0.303509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303509,0.000000,0.000000,0.250000,0,0);}
.m79_c00424{transform:matrix(0.303612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303612,0.000000,0.000000,0.250000,0,0);}
.m68_c00424{transform:matrix(0.303789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303789,0.000000,0.000000,0.250000,0,0);}
.m29_c00424{transform:matrix(0.303946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303946,0.000000,0.000000,0.250000,0,0);}
.mac_c00424{transform:matrix(0.304910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304910,0.000000,0.000000,0.250000,0,0);}
.m65_c00424{transform:matrix(0.305992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305992,0.000000,0.000000,0.250000,0,0);}
.m50_c00424{transform:matrix(0.306637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306637,0.000000,0.000000,0.250000,0,0);}
.mba_c00424{transform:matrix(0.307503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307503,0.000000,0.000000,0.250000,0,0);}
.m39_c00424{transform:matrix(0.308304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308304,0.000000,0.000000,0.250000,0,0);}
.mcb_c00424{transform:matrix(0.308490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308490,0.000000,0.000000,0.250000,0,0);}
.m6f_c00424{transform:matrix(0.309408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309408,0.000000,0.000000,0.250000,0,0);}
.m46_c00424{transform:matrix(0.309472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309472,0.000000,0.000000,0.250000,0,0);}
.mad_c00424{transform:matrix(0.309861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309861,0.000000,0.000000,0.250000,0,0);}
.m3_c00424{transform:matrix(0.310252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310252,0.000000,0.000000,0.250000,0,0);}
.m98_c00424{transform:matrix(0.310703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310703,0.000000,0.000000,0.250000,0,0);}
.m84_c00424{transform:matrix(0.311480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311480,0.000000,0.000000,0.250000,0,0);}
.m62_c00424{transform:matrix(0.311730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311730,0.000000,0.000000,0.250000,0,0);}
.m92_c00424{transform:matrix(0.313204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313204,0.000000,0.000000,0.250000,0,0);}
.m9e_c00424{transform:matrix(0.313708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313708,0.000000,0.000000,0.250000,0,0);}
.m1e_c00424{transform:matrix(0.313870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313870,0.000000,0.000000,0.250000,0,0);}
.m82_c00424{transform:matrix(0.314082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314082,0.000000,0.000000,0.250000,0,0);}
.mf7_c00424{transform:matrix(0.314486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314486,0.000000,0.000000,0.250000,0,0);}
.m2b_c00424{transform:matrix(0.316219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316219,0.000000,0.000000,0.250000,0,0);}
.m8c_c00424{transform:matrix(0.316423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316423,0.000000,0.000000,0.250000,0,0);}
.m8e_c00424{transform:matrix(0.316681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316681,0.000000,0.000000,0.250000,0,0);}
.m21_c00424{transform:matrix(0.316692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316692,0.000000,0.000000,0.250000,0,0);}
.md2_c00424{transform:matrix(0.318004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318004,0.000000,0.000000,0.250000,0,0);}
.mdf_c00424{transform:matrix(0.318379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318379,0.000000,0.000000,0.250000,0,0);}
.m94_c00424{transform:matrix(0.319437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319437,0.000000,0.000000,0.250000,0,0);}
.m8_c00424{transform:matrix(0.319886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319886,0.000000,0.000000,0.250000,0,0);}
.maf_c00424{transform:matrix(0.319889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319889,0.000000,0.000000,0.250000,0,0);}
.md7_c00424{transform:matrix(0.321735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321735,0.000000,0.000000,0.250000,0,0);}
.me9_c00424{transform:matrix(0.322023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322023,0.000000,0.000000,0.250000,0,0);}
.md6_c00424{transform:matrix(0.322145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322145,0.000000,0.000000,0.250000,0,0);}
.m5c_c00424{transform:matrix(0.322337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322337,0.000000,0.000000,0.250000,0,0);}
.m14_c00424{transform:matrix(0.322581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322581,0.000000,0.000000,0.250000,0,0);}
.m5d_c00424{transform:matrix(0.323419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323419,0.000000,0.000000,0.250000,0,0);}
.mee_c00424{transform:matrix(0.323463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323463,0.000000,0.000000,0.250000,0,0);}
.mb1_c00424{transform:matrix(0.326649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326649,0.000000,0.000000,0.250000,0,0);}
.meb_c00424{transform:matrix(0.327608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327608,0.000000,0.000000,0.250000,0,0);}
.mb9_c00424{transform:matrix(0.327992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327992,0.000000,0.000000,0.250000,0,0);}
.md8_c00424{transform:matrix(0.328383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328383,0.000000,0.000000,0.250000,0,0);}
.m1b_c00424{transform:matrix(0.328653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328653,0.000000,0.000000,0.250000,0,0);}
.m7f_c00424{transform:matrix(0.329215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329215,0.000000,0.000000,0.250000,0,0);}
.ma1_c00424{transform:matrix(0.329332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329332,0.000000,0.000000,0.250000,0,0);}
.mbf_c00424{transform:matrix(0.330510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330510,0.000000,0.000000,0.250000,0,0);}
.m83_c00424{transform:matrix(0.331156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331156,0.000000,0.000000,0.250000,0,0);}
.m59_c00424{transform:matrix(0.331181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331181,0.000000,0.000000,0.250000,0,0);}
.m52_c00424{transform:matrix(0.331577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331577,0.000000,0.000000,0.250000,0,0);}
.m9f_c00424{transform:matrix(0.332972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332972,0.000000,0.000000,0.250000,0,0);}
.m27_c00424{transform:matrix(0.333261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333261,0.000000,0.000000,0.250000,0,0);}
.ma6_c00424{transform:matrix(0.334299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334299,0.000000,0.000000,0.250000,0,0);}
.mcd_c00424{transform:matrix(0.334561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334561,0.000000,0.000000,0.250000,0,0);}
.m9b_c00424{transform:matrix(0.334878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334878,0.000000,0.000000,0.250000,0,0);}
.m64_c00424{transform:matrix(0.335026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335026,0.000000,0.000000,0.250000,0,0);}
.mab_c00424{transform:matrix(0.336899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336899,0.000000,0.000000,0.250000,0,0);}
.md5_c00424{transform:matrix(0.337404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337404,0.000000,0.000000,0.250000,0,0);}
.m5f_c00424{transform:matrix(0.337470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337470,0.000000,0.000000,0.250000,0,0);}
.m78_c00424{transform:matrix(0.337560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337560,0.000000,0.000000,0.250000,0,0);}
.m1d_c00424{transform:matrix(0.337597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337597,0.000000,0.000000,0.250000,0,0);}
.m3f_c00424{transform:matrix(0.337621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337621,0.000000,0.000000,0.250000,0,0);}
.m96_c00424{transform:matrix(0.338099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338099,0.000000,0.000000,0.250000,0,0);}
.m6c_c00424{transform:matrix(0.338533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338533,0.000000,0.000000,0.250000,0,0);}
.m7_c00424{transform:matrix(0.339267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339267,0.000000,0.000000,0.250000,0,0);}
.mf_c00424{transform:matrix(0.339339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339339,0.000000,0.000000,0.250000,0,0);}
.mf6_c00424{transform:matrix(0.340837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340837,0.000000,0.000000,0.250000,0,0);}
.mbe_c00424{transform:matrix(0.341219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341219,0.000000,0.000000,0.250000,0,0);}
.m7e_c00424{transform:matrix(0.342652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342652,0.000000,0.000000,0.250000,0,0);}
.m63_c00424{transform:matrix(0.344601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344601,0.000000,0.000000,0.250000,0,0);}
.m5b_c00424{transform:matrix(0.346229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346229,0.000000,0.000000,0.250000,0,0);}
.mc5_c00424{transform:matrix(0.347091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347091,0.000000,0.000000,0.250000,0,0);}
.ma_c00424{transform:matrix(0.348143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348143,0.000000,0.000000,0.250000,0,0);}
.m38_c00424{transform:matrix(0.349244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349244,0.000000,0.000000,0.250000,0,0);}
.mc4_c00424{transform:matrix(0.350051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350051,0.000000,0.000000,0.250000,0,0);}
.m86_c00424{transform:matrix(0.351103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351103,0.000000,0.000000,0.250000,0,0);}
.m91_c00424{transform:matrix(0.352066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352066,0.000000,0.000000,0.250000,0,0);}
.md3_c00424{transform:matrix(0.353540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353540,0.000000,0.000000,0.250000,0,0);}
.m2a_c00424{transform:matrix(0.354641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354641,0.000000,0.000000,0.250000,0,0);}
.m44_c00424{transform:matrix(0.355050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355050,0.000000,0.000000,0.250000,0,0);}
.mea_c00424{transform:matrix(0.355149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355149,0.000000,0.000000,0.250000,0,0);}
.mc0_c00424{transform:matrix(0.363535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363535,0.000000,0.000000,0.250000,0,0);}
.m48_c00424{transform:matrix(0.365081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365081,0.000000,0.000000,0.250000,0,0);}
.m47_c00424{transform:matrix(0.368397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368397,0.000000,0.000000,0.250000,0,0);}
.md0_c00424{transform:matrix(0.368699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368699,0.000000,0.000000,0.250000,0,0);}
.m8b_c00424{transform:matrix(0.370647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370647,0.000000,0.000000,0.250000,0,0);}
.m67_c00424{transform:matrix(0.372403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372403,0.000000,0.000000,0.250000,0,0);}
.m88_c00424{transform:matrix(0.374860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374860,0.000000,0.000000,0.250000,0,0);}
.ma2_c00424{transform:matrix(0.374916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374916,0.000000,0.000000,0.250000,0,0);}
.m41_c00424{transform:matrix(0.376634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376634,0.000000,0.000000,0.250000,0,0);}
.mb8_c00424{transform:matrix(0.377923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377923,0.000000,0.000000,0.250000,0,0);}
.m40_c00424{transform:matrix(0.379382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379382,0.000000,0.000000,0.250000,0,0);}
.m81_c00424{transform:matrix(0.381323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381323,0.000000,0.000000,0.250000,0,0);}
.m61_c00424{transform:matrix(0.384244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384244,0.000000,0.000000,0.250000,0,0);}
.mc_c00424{transform:matrix(0.385448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385448,0.000000,0.000000,0.250000,0,0);}
.m7a_c00424{transform:matrix(0.389279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389279,0.000000,0.000000,0.250000,0,0);}
.m4f_c00424{transform:matrix(0.389724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389724,0.000000,0.000000,0.250000,0,0);}
.mcf_c00424{transform:matrix(0.394250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00424{transform:matrix(0.406607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406607,0.000000,0.000000,0.250000,0,0);}
.m36_c00424{transform:matrix(0.406689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406689,0.000000,0.000000,0.250000,0,0);}
.mb7_c00424{transform:matrix(0.407011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407011,0.000000,0.000000,0.250000,0,0);}
.me8_c00424{transform:matrix(0.408206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408206,0.000000,0.000000,0.250000,0,0);}
.m80_c00424{transform:matrix(0.447006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447006,0.000000,0.000000,0.250000,0,0);}
.m72_c00424{transform:matrix(0.455697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455697,0.000000,0.000000,0.250000,0,0);}
.m8a_c00424{transform:matrix(0.458106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458106,0.000000,0.000000,0.250000,0,0);}
.v2_c00424{vertical-align:-19.958400px;}
.v0_c00424{vertical-align:0.000000px;}
.v1_c00424{vertical-align:5.698440px;}
.ls1d_c00424{letter-spacing:-2.952180px;}
.lsa_c00424{letter-spacing:-2.557177px;}
.ls21_c00424{letter-spacing:-2.286900px;}
.lsb_c00424{letter-spacing:-2.182950px;}
.ls20_c00424{letter-spacing:-1.995840px;}
.ls15_c00424{letter-spacing:-1.760220px;}
.ls14_c00424{letter-spacing:-1.373569px;}
.ls7_c00424{letter-spacing:-1.358280px;}
.lsc_c00424{letter-spacing:-1.139770px;}
.ls1e_c00424{letter-spacing:-0.474904px;}
.ls1c_c00424{letter-spacing:-0.423761px;}
.ls8_c00424{letter-spacing:-0.331967px;}
.ls6_c00424{letter-spacing:0.000000px;}
.ls11_c00424{letter-spacing:1.515056px;}
.ls1_c00424{letter-spacing:1.938420px;}
.ls16_c00424{letter-spacing:2.045742px;}
.ls22_c00424{letter-spacing:2.088900px;}
.ls5_c00424{letter-spacing:2.206478px;}
.ls12_c00424{letter-spacing:2.316600px;}
.ls18_c00424{letter-spacing:2.376000px;}
.ls1f_c00424{letter-spacing:2.435400px;}
.ls19_c00424{letter-spacing:2.732526px;}
.ls4_c00424{letter-spacing:2.790976px;}
.ls24_c00424{letter-spacing:3.273186px;}
.ls17_c00424{letter-spacing:3.276900px;}
.lse_c00424{letter-spacing:3.375900px;}
.ls3_c00424{letter-spacing:3.390086px;}
.ls1b_c00424{letter-spacing:3.405610px;}
.ls9_c00424{letter-spacing:3.653110px;}
.ls2_c00424{letter-spacing:5.625081px;}
.ls0_c00424{letter-spacing:33.648120px;}
.ls25_c00424{letter-spacing:34.214598px;}
.ls1a_c00424{letter-spacing:48.470598px;}
.ls13_c00424{letter-spacing:49.896198px;}
.lsd_c00424{letter-spacing:51.321798px;}
.ls10_c00424{letter-spacing:55.598598px;}
.lsf_c00424{letter-spacing:58.449798px;}
.ls23_c00424{letter-spacing:59.875398px;}
.ls26_c00424{letter-spacing:69.854598px;}
.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;}
}
.ws4_c00424{word-spacing:-21.056525px;}
.ws2_c00424{word-spacing:-20.311291px;}
.ws0_c00424{word-spacing:-18.265550px;}
.ws6_c00424{word-spacing:0.000000px;}
.ws5_c00424{word-spacing:1.022159px;}
.ws3_c00424{word-spacing:5.187099px;}
.ws1_c00424{word-spacing:13.843906px;}
._d_c00424{margin-left:-8.109618px;}
._13_c00424{width:1.343988px;}
._a_c00424{width:4.529932px;}
._5_c00424{width:5.990985px;}
._8_c00424{width:7.967124px;}
._6_c00424{width:10.301852px;}
._3_c00424{width:11.836143px;}
._11_c00424{width:13.224343px;}
._0_c00424{width:14.956920px;}
._1_c00424{width:22.283855px;}
._e_c00424{width:23.452649px;}
._16_c00424{width:25.133315px;}
._f_c00424{width:26.594711px;}
._7_c00424{width:28.055951px;}
._2_c00424{width:30.105751px;}
._10_c00424{width:34.969847px;}
._4_c00424{width:37.196059px;}
._9_c00424{width:39.513672px;}
._b_c00424{width:42.623939px;}
._14_c00424{width:46.540760px;}
._15_c00424{width:48.429503px;}
._c_c00424{width:54.977857px;}
._12_c00424{width:718.442208px;}
.fc0_c00424{color:transparent;}
.fs2_c00424{font-size:19.998000px;}
.fs15_c00424{font-size:22.572000px;}
.fs14_c00424{font-size:23.364000px;}
.fs22_c00424{font-size:24.552000px;}
.fsc_c00424{font-size:30.294000px;}
.fs1d_c00424{font-size:34.214598px;}
.fs1b_c00424{font-size:34.650000px;}
.fs0_c00424{font-size:38.808000px;}
.fs1e_c00424{font-size:39.204000px;}
.fs19_c00424{font-size:41.778000px;}
.fs1_c00424{font-size:43.560000px;}
.fsa_c00424{font-size:46.332000px;}
.fs10_c00424{font-size:47.520000px;}
.fs11_c00424{font-size:48.470598px;}
.fs16_c00424{font-size:48.708000px;}
.fsb_c00424{font-size:49.896198px;}
.fsd_c00424{font-size:50.292000px;}
.fs1c_c00424{font-size:50.688000px;}
.fs6_c00424{font-size:51.321798px;}
.fs9_c00424{font-size:55.598598px;}
.fs17_c00424{font-size:57.024000px;}
.fs8_c00424{font-size:58.449798px;}
.fs1a_c00424{font-size:59.875398px;}
.fs4_c00424{font-size:62.370000px;}
.fs18_c00424{font-size:65.340000px;}
.fsf_c00424{font-size:65.538000px;}
.fse_c00424{font-size:66.528000px;}
.fs7_c00424{font-size:67.518000px;}
.fs12_c00424{font-size:68.112198px;}
.fs20_c00424{font-size:69.854598px;}
.fs5_c00424{font-size:70.884000px;}
.fs3_c00424{font-size:73.062198px;}
.fs1f_c00424{font-size:74.844000px;}
.fs21_c00424{font-size:77.616198px;}
.fs13_c00424{font-size:84.348000px;}
.y0_c00424{bottom:0.000000px;}
.y1_c00424{bottom:76.500000px;}
.y1c_c00424{bottom:115.380585px;}
.y1b_c00424{bottom:144.248985px;}
.y1a_c00424{bottom:174.904335px;}
.y19_c00424{bottom:211.613535px;}
.y18_c00424{bottom:243.328185px;}
.y17_c00424{bottom:275.760585px;}
.y16_c00424{bottom:307.485135px;}
.y24_c00424{bottom:316.395135px;}
.y15_c00424{bottom:339.204735px;}
.y14_c00424{bottom:359.514585px;}
.y13_c00424{bottom:371.275785px;}
.y23_c00424{bottom:372.344985px;}
.y22_c00424{bottom:387.675135px;}
.y12_c00424{bottom:404.064585px;}
.y21_c00424{bottom:409.059135px;}
.y20_c00424{bottom:422.245935px;}
.y1f_c00424{bottom:428.656185px;}
.y11_c00424{bottom:436.140585px;}
.y1e_c00424{bottom:439.704585px;}
.y1d_c00424{bottom:486.041535px;}
.y10_c00424{bottom:500.648985px;}
.yf_c00424{bottom:533.437785px;}
.ye_c00424{bottom:567.295785px;}
.yd_c00424{bottom:599.733135px;}
.yc_c00424{bottom:632.521935px;}
.ya_c00424{bottom:664.954335px;}
.yb_c00424{bottom:667.087785px;}
.y9_c00424{bottom:699.168735px;}
.y8_c00424{bottom:731.601135px;}
.y7_c00424{bottom:796.460985px;}
.y6_c00424{bottom:828.541935px;}
.y5_c00424{bottom:860.974335px;}
.y4_c00424{bottom:893.045385px;}
.y3_c00424{bottom:1076.591385px;}
.y2_c00424{bottom:1085.144985px;}
.h1e_c00424{height:22.786922px;}
.h15_c00424{height:22.930488px;}
.h23_c00424{height:24.096445px;}
.hc_c00424{height:31.595695px;}
.h11_c00424{height:32.281418px;}
.hb_c00424{height:33.230868px;}
.h6_c00424{height:34.180317px;}
.h1c_c00424{height:36.138867px;}
.h9_c00424{height:37.028666px;}
.h2_c00424{height:38.087930px;}
.h1f_c00424{height:38.476582px;}
.h8_c00424{height:38.927565px;}
.h1b_c00424{height:39.877015px;}
.h1a_c00424{height:41.002822px;}
.h3_c00424{height:42.751758px;}
.ha_c00424{height:45.472324px;}
.h21_c00424{height:46.523162px;}
.h17_c00424{height:47.804238px;}
.hd_c00424{height:49.358848px;}
.h10_c00424{height:49.561875px;}
.h1d_c00424{height:52.866000px;}
.h18_c00424{height:55.965938px;}
.h5_c00424{height:61.212744px;}
.he_c00424{height:65.293594px;}
.h19_c00424{height:68.147578px;}
.hf_c00424{height:68.354086px;}
.h16_c00424{height:69.568770px;}
.h7_c00424{height:70.419164px;}
.h12_c00424{height:71.038894px;}
.h4_c00424{height:71.706552px;}
.h13_c00424{height:77.404992px;}
.h20_c00424{height:78.059953px;}
.h22_c00424{height:80.951269px;}
.h14_c00424{height:82.782949px;}
.h1_c00424{height:1110.000000px;}
.h0_c00424{height:1263.000000px;}
.w1_c00424{width:775.500000px;}
.w0_c00424{width:892.500000px;}
.x0_c00424{left:0.000000px;}
.x1_c00424{left:58.500000px;}
.x6_c00424{left:75.142635px;}
.x6a_c00424{left:76.385085px;}
.x2c_c00424{left:77.741385px;}
.x80_c00424{left:87.304785px;}
.x6e_c00424{left:97.729485px;}
.x20_c00424{left:98.823435px;}
.x4b_c00424{left:107.773035px;}
.x5a_c00424{left:109.159035px;}
.x8a_c00424{left:111.153885px;}
.x40_c00424{left:119.148135px;}
.x83_c00424{left:120.256935px;}
.x37_c00424{left:130.077735px;}
.x21_c00424{left:131.627085px;}
.x4c_c00424{left:139.309485px;}
.x38_c00424{left:140.769735px;}
.x7_c00424{left:142.319085px;}
.x41_c00424{left:150.699435px;}
.x17_c00424{left:152.323035px;}
.x22_c00424{left:162.445785px;}
.x58_c00424{left:164.084235px;}
.x42_c00424{left:173.504085px;}
.x8b_c00424{left:175.028685px;}
.x18_c00424{left:184.557435px;}
.x77_c00424{left:185.849385px;}
.x2d_c00424{left:194.497035px;}
.x39_c00424{left:196.180035px;}
.x43_c00424{left:206.847285px;}
.x8_c00424{left:208.614435px;}
.x3a_c00424{left:217.692735px;}
.x53_c00424{left:219.657885px;}
.x7c_c00424{left:221.375535px;}
.x5f_c00424{left:228.077835px;}
.x19_c00424{left:229.686585px;}
.x4d_c00424{left:239.042085px;}
.x9_c00424{left:241.111185px;}
.x66_c00424{left:251.040885px;}
.x44_c00424{left:252.050685px;}
.x6b_c00424{left:253.149585px;}
.x1a_c00424{left:261.579435px;}
.x2e_c00424{left:262.613985px;}
.x84_c00424{left:263.693085px;}
.x45_c00424{left:273.137685px;}
.x23_c00424{left:274.498935px;}
.xa_c00424{left:284.359335px;}
.x2f_c00424{left:293.888085px;}
.x1b_c00424{left:296.630385px;}
.x78_c00424{left:298.357935px;}
.x46_c00424{left:305.975985px;}
.x6f_c00424{left:307.564935px;}
.x7a_c00424{left:309.406335px;}
.x67_c00424{left:316.430385px;}
.xb_c00424{left:318.380685px;}
.x54_c00424{left:329.082585px;}
.x24_c00424{left:331.146735px;}
.x30_c00424{left:339.403335px;}
.xc_c00424{left:351.481335px;}
.x60_c00424{left:352.926735px;}
.x47_c00424{left:362.168385px;}
.x6c_c00424{left:363.287085px;}
.x1c_c00424{left:372.093135px;}
.x85_c00424{left:373.162335px;}
.x7d_c00424{left:382.755435px;}
.x70_c00424{left:383.983035px;}
.x31_c00424{left:386.329335px;}
.x32_c00424{left:394.882935px;}
.x61_c00424{left:396.986685px;}
.xd_c00424{left:405.233385px;}
.x7e_c00424{left:406.644135px;}
.xe_c00424{left:415.187835px;}
.x48_c00424{left:416.400585px;}
.x55_c00424{left:418.727085px;}
.x25_c00424{left:425.840235px;}
.x1d_c00424{left:427.790535px;}
.x81_c00424{left:428.805285px;}
.x59_c00424{left:438.997335px;}
.x33_c00424{left:440.853585px;}
.x4e_c00424{left:449.728935px;}
.x71_c00424{left:457.599435px;}
.x34_c00424{left:460.277385px;}
.x8c_c00424{left:461.564385px;}
.x26_c00424{left:471.301035px;}
.x7f_c00424{left:473.969085px;}
.x68_c00424{left:482.374185px;}
.xf_c00424{left:483.379035px;}
.x35_c00424{left:492.536535px;}
.x4f_c00424{left:493.912635px;}
.x72_c00424{left:495.155085px;}
.x36_c00424{left:497.521185px;}
.x27_c00424{left:503.218635px;}
.x5b_c00424{left:504.446235px;}
.x62_c00424{left:505.465935px;}
.x10_c00424{left:516.039135px;}
.x7b_c00424{left:517.256835px;}
.x82_c00424{left:518.613135px;}
.x3b_c00424{left:527.221185px;}
.x73_c00424{left:528.325035px;}
.x28_c00424{left:537.403335px;}
.x63_c00424{left:547.016235px;}
.x29_c00424{left:549.298185px;}
.x49_c00424{left:560.064435px;}
.x50_c00424{left:570.711885px;}
.x76_c00424{left:572.721585px;}
.x74_c00424{left:580.517835px;}
.x1e_c00424{left:582.007785px;}
.x6d_c00424{left:591.249435px;}
.x5c_c00424{left:592.739385px;}
.x3c_c00424{left:602.258235px;}
.x11_c00424{left:603.634335px;}
.x12_c00424{left:613.984785px;}
.x5d_c00424{left:615.296535px;}
.x69_c00424{left:616.697385px;}
.x64_c00424{left:625.820235px;}
.x75_c00424{left:627.349785px;}
.x2a_c00424{left:637.586385px;}
.x86_c00424{left:639.343635px;}
.x51_c00424{left:640.467285px;}
.x13_c00424{left:648.248685px;}
.x52_c00424{left:650.218785px;}
.x1f_c00424{left:658.940685px;}
.x2b_c00424{left:662.895735px;}
.x5_c00424{left:668.820885px;}
.x3d_c00424{left:670.355385px;}
.x79_c00424{left:671.865135px;}
.x56_c00424{left:679.240635px;}
.x14_c00424{left:681.319635px;}
.x2_c00424{left:683.581785px;}
.x3_c00424{left:690.962235px;}
.x4a_c00424{left:692.471985px;}
.x87_c00424{left:694.615335px;}
.x3e_c00424{left:701.852235px;}
.x15_c00424{left:703.342185px;}
.x4_c00424{left:705.950835px;}
.x5e_c00424{left:707.802135px;}
.x57_c00424{left:712.925385px;}
.x88_c00424{left:714.568785px;}
.x65_c00424{left:724.874685px;}
.x3f_c00424{left:735.378585px;}
.x89_c00424{left:738.091185px;}
.x16_c00424{left:746.426985px;}
.x8e_c00424{left:774.805335px;}
.x8d_c00424{left:775.988385px;}
@media print{
.v2_c00424{vertical-align:-17.740800pt;}
.v0_c00424{vertical-align:0.000000pt;}
.v1_c00424{vertical-align:5.065280pt;}
.ls1d_c00424{letter-spacing:-2.624160pt;}
.lsa_c00424{letter-spacing:-2.273046pt;}
.ls21_c00424{letter-spacing:-2.032800pt;}
.lsb_c00424{letter-spacing:-1.940400pt;}
.ls20_c00424{letter-spacing:-1.774080pt;}
.ls15_c00424{letter-spacing:-1.564640pt;}
.ls14_c00424{letter-spacing:-1.220951pt;}
.ls7_c00424{letter-spacing:-1.207360pt;}
.lsc_c00424{letter-spacing:-1.013129pt;}
.ls1e_c00424{letter-spacing:-0.422137pt;}
.ls1c_c00424{letter-spacing:-0.376676pt;}
.ls8_c00424{letter-spacing:-0.295082pt;}
.ls6_c00424{letter-spacing:0.000000pt;}
.ls11_c00424{letter-spacing:1.346717pt;}
.ls1_c00424{letter-spacing:1.723040pt;}
.ls16_c00424{letter-spacing:1.818437pt;}
.ls22_c00424{letter-spacing:1.856800pt;}
.ls5_c00424{letter-spacing:1.961314pt;}
.ls12_c00424{letter-spacing:2.059200pt;}
.ls18_c00424{letter-spacing:2.112000pt;}
.ls1f_c00424{letter-spacing:2.164800pt;}
.ls19_c00424{letter-spacing:2.428912pt;}
.ls4_c00424{letter-spacing:2.480868pt;}
.ls24_c00424{letter-spacing:2.909499pt;}
.ls17_c00424{letter-spacing:2.912800pt;}
.lse_c00424{letter-spacing:3.000800pt;}
.ls3_c00424{letter-spacing:3.013410pt;}
.ls1b_c00424{letter-spacing:3.027209pt;}
.ls9_c00424{letter-spacing:3.247209pt;}
.ls2_c00424{letter-spacing:5.000072pt;}
.ls0_c00424{letter-spacing:29.909440pt;}
.ls25_c00424{letter-spacing:30.412976pt;}
.ls1a_c00424{letter-spacing:43.084976pt;}
.ls13_c00424{letter-spacing:44.352176pt;}
.lsd_c00424{letter-spacing:45.619376pt;}
.ls10_c00424{letter-spacing:49.420976pt;}
.lsf_c00424{letter-spacing:51.955376pt;}
.ls23_c00424{letter-spacing:53.222576pt;}
.ls26_c00424{letter-spacing:62.092976pt;}
.ws4_c00424{word-spacing:-18.716912pt;}
.ws2_c00424{word-spacing:-18.054481pt;}
.ws0_c00424{word-spacing:-16.236044pt;}
.ws6_c00424{word-spacing:0.000000pt;}
.ws5_c00424{word-spacing:0.908585pt;}
.ws3_c00424{word-spacing:4.610755pt;}
.ws1_c00424{word-spacing:12.305695pt;}
._d_c00424{margin-left:-7.208549pt;}
._13_c00424{width:1.194656pt;}
._a_c00424{width:4.026606pt;}
._5_c00424{width:5.325320pt;}
._8_c00424{width:7.081888pt;}
._6_c00424{width:9.157202pt;}
._3_c00424{width:10.521016pt;}
._11_c00424{width:11.754972pt;}
._0_c00424{width:13.295040pt;}
._1_c00424{width:19.807871pt;}
._e_c00424{width:20.846799pt;}
._16_c00424{width:22.340724pt;}
._f_c00424{width:23.639743pt;}
._7_c00424{width:24.938623pt;}
._2_c00424{width:26.760668pt;}
._10_c00424{width:31.084308pt;}
._4_c00424{width:33.063164pt;}
._9_c00424{width:35.123264pt;}
._b_c00424{width:37.887945pt;}
._14_c00424{width:41.369564pt;}
._15_c00424{width:43.048447pt;}
._c_c00424{width:48.869206pt;}
._12_c00424{width:638.615296pt;}
.fs2_c00424{font-size:17.776000pt;}
.fs15_c00424{font-size:20.064000pt;}
.fs14_c00424{font-size:20.768000pt;}
.fs22_c00424{font-size:21.824000pt;}
.fsc_c00424{font-size:26.928000pt;}
.fs1d_c00424{font-size:30.412976pt;}
.fs1b_c00424{font-size:30.800000pt;}
.fs0_c00424{font-size:34.496000pt;}
.fs1e_c00424{font-size:34.848000pt;}
.fs19_c00424{font-size:37.136000pt;}
.fs1_c00424{font-size:38.720000pt;}
.fsa_c00424{font-size:41.184000pt;}
.fs10_c00424{font-size:42.240000pt;}
.fs11_c00424{font-size:43.084976pt;}
.fs16_c00424{font-size:43.296000pt;}
.fsb_c00424{font-size:44.352176pt;}
.fsd_c00424{font-size:44.704000pt;}
.fs1c_c00424{font-size:45.056000pt;}
.fs6_c00424{font-size:45.619376pt;}
.fs9_c00424{font-size:49.420976pt;}
.fs17_c00424{font-size:50.688000pt;}
.fs8_c00424{font-size:51.955376pt;}
.fs1a_c00424{font-size:53.222576pt;}
.fs4_c00424{font-size:55.440000pt;}
.fs18_c00424{font-size:58.080000pt;}
.fsf_c00424{font-size:58.256000pt;}
.fse_c00424{font-size:59.136000pt;}
.fs7_c00424{font-size:60.016000pt;}
.fs12_c00424{font-size:60.544176pt;}
.fs20_c00424{font-size:62.092976pt;}
.fs5_c00424{font-size:63.008000pt;}
.fs3_c00424{font-size:64.944176pt;}
.fs1f_c00424{font-size:66.528000pt;}
.fs21_c00424{font-size:68.992176pt;}
.fs13_c00424{font-size:74.976000pt;}
.y0_c00424{bottom:0.000000pt;}
.y1_c00424{bottom:68.000000pt;}
.y1c_c00424{bottom:102.560520pt;}
.y1b_c00424{bottom:128.221320pt;}
.y1a_c00424{bottom:155.470520pt;}
.y19_c00424{bottom:188.100920pt;}
.y18_c00424{bottom:216.291720pt;}
.y17_c00424{bottom:245.120520pt;}
.y16_c00424{bottom:273.320120pt;}
.y24_c00424{bottom:281.240120pt;}
.y15_c00424{bottom:301.515320pt;}
.y14_c00424{bottom:319.568520pt;}
.y13_c00424{bottom:330.022920pt;}
.y23_c00424{bottom:330.973320pt;}
.y22_c00424{bottom:344.600120pt;}
.y12_c00424{bottom:359.168520pt;}
.y21_c00424{bottom:363.608120pt;}
.y20_c00424{bottom:375.329720pt;}
.y1f_c00424{bottom:381.027720pt;}
.y11_c00424{bottom:387.680520pt;}
.y1e_c00424{bottom:390.848520pt;}
.y1d_c00424{bottom:432.036920pt;}
.y10_c00424{bottom:445.021320pt;}
.yf_c00424{bottom:474.166920pt;}
.ye_c00424{bottom:504.262920pt;}
.yd_c00424{bottom:533.096120pt;}
.yc_c00424{bottom:562.241720pt;}
.ya_c00424{bottom:591.070520pt;}
.yb_c00424{bottom:592.966920pt;}
.y9_c00424{bottom:621.483320pt;}
.y8_c00424{bottom:650.312120pt;}
.y7_c00424{bottom:707.965320pt;}
.y6_c00424{bottom:736.481720pt;}
.y5_c00424{bottom:765.310520pt;}
.y4_c00424{bottom:793.818120pt;}
.y3_c00424{bottom:956.970120pt;}
.y2_c00424{bottom:964.573320pt;}
.h1e_c00424{height:20.255042pt;}
.h15_c00424{height:20.382656pt;}
.h23_c00424{height:21.419063pt;}
.hc_c00424{height:28.085063pt;}
.h11_c00424{height:28.694594pt;}
.hb_c00424{height:29.538549pt;}
.h6_c00424{height:30.382504pt;}
.h1c_c00424{height:32.123438pt;}
.h9_c00424{height:32.914370pt;}
.h2_c00424{height:33.855938pt;}
.h1f_c00424{height:34.201406pt;}
.h8_c00424{height:34.602280pt;}
.h1b_c00424{height:35.446236pt;}
.h1a_c00424{height:36.446953pt;}
.h3_c00424{height:38.001563pt;}
.ha_c00424{height:40.419844pt;}
.h21_c00424{height:41.353922pt;}
.h17_c00424{height:42.492656pt;}
.hd_c00424{height:43.874531pt;}
.h10_c00424{height:44.055000pt;}
.h1d_c00424{height:46.992000pt;}
.h18_c00424{height:49.747500pt;}
.h5_c00424{height:54.411328pt;}
.he_c00424{height:58.038750pt;}
.h19_c00424{height:60.575625pt;}
.hf_c00424{height:60.759188pt;}
.h16_c00424{height:61.838906pt;}
.h7_c00424{height:62.594813pt;}
.h12_c00424{height:63.145684pt;}
.h4_c00424{height:63.739157pt;}
.h13_c00424{height:68.804437pt;}
.h20_c00424{height:69.386625pt;}
.h22_c00424{height:71.956684pt;}
.h14_c00424{height:73.584844pt;}
.h1_c00424{height:986.666667pt;}
.h0_c00424{height:1122.666667pt;}
.w1_c00424{width:689.333333pt;}
.w0_c00424{width:793.333333pt;}
.x0_c00424{left:0.000000pt;}
.x1_c00424{left:52.000000pt;}
.x6_c00424{left:66.793453pt;}
.x6a_c00424{left:67.897853pt;}
.x2c_c00424{left:69.103453pt;}
.x80_c00424{left:77.604253pt;}
.x6e_c00424{left:86.870653pt;}
.x20_c00424{left:87.843053pt;}
.x4b_c00424{left:95.798253pt;}
.x5a_c00424{left:97.030253pt;}
.x8a_c00424{left:98.803453pt;}
.x40_c00424{left:105.909453pt;}
.x83_c00424{left:106.895053pt;}
.x37_c00424{left:115.624653pt;}
.x21_c00424{left:117.001853pt;}
.x4c_c00424{left:123.830653pt;}
.x38_c00424{left:125.128653pt;}
.x7_c00424{left:126.505853pt;}
.x41_c00424{left:133.955053pt;}
.x17_c00424{left:135.398253pt;}
.x22_c00424{left:144.396253pt;}
.x58_c00424{left:145.852653pt;}
.x42_c00424{left:154.225853pt;}
.x8b_c00424{left:155.581053pt;}
.x18_c00424{left:164.051053pt;}
.x77_c00424{left:165.199453pt;}
.x2d_c00424{left:172.886253pt;}
.x39_c00424{left:174.382253pt;}
.x43_c00424{left:183.864253pt;}
.x8_c00424{left:185.435053pt;}
.x3a_c00424{left:193.504653pt;}
.x53_c00424{left:195.251453pt;}
.x7c_c00424{left:196.778253pt;}
.x5f_c00424{left:202.735853pt;}
.x19_c00424{left:204.165853pt;}
.x4d_c00424{left:212.481853pt;}
.x9_c00424{left:214.321053pt;}
.x66_c00424{left:223.147453pt;}
.x44_c00424{left:224.045053pt;}
.x6b_c00424{left:225.021853pt;}
.x1a_c00424{left:232.515053pt;}
.x2e_c00424{left:233.434653pt;}
.x84_c00424{left:234.393853pt;}
.x45_c00424{left:242.789053pt;}
.x23_c00424{left:243.999053pt;}
.xa_c00424{left:252.763853pt;}
.x2f_c00424{left:261.233853pt;}
.x1b_c00424{left:263.671453pt;}
.x78_c00424{left:265.207053pt;}
.x46_c00424{left:271.978653pt;}
.x6f_c00424{left:273.391053pt;}
.x7a_c00424{left:275.027853pt;}
.x67_c00424{left:281.271453pt;}
.xb_c00424{left:283.005053pt;}
.x54_c00424{left:292.517853pt;}
.x24_c00424{left:294.352653pt;}
.x30_c00424{left:301.691853pt;}
.xc_c00424{left:312.427853pt;}
.x60_c00424{left:313.712653pt;}
.x47_c00424{left:321.927453pt;}
.x6c_c00424{left:322.921853pt;}
.x1c_c00424{left:330.749453pt;}
.x85_c00424{left:331.699853pt;}
.x7d_c00424{left:340.227053pt;}
.x70_c00424{left:341.318253pt;}
.x31_c00424{left:343.403853pt;}
.x32_c00424{left:351.007053pt;}
.x61_c00424{left:352.877053pt;}
.xd_c00424{left:360.207453pt;}
.x7e_c00424{left:361.461453pt;}
.xe_c00424{left:369.055853pt;}
.x48_c00424{left:370.133853pt;}
.x55_c00424{left:372.201853pt;}
.x25_c00424{left:378.524653pt;}
.x1d_c00424{left:380.258253pt;}
.x81_c00424{left:381.160253pt;}
.x59_c00424{left:390.219853pt;}
.x33_c00424{left:391.869853pt;}
.x4e_c00424{left:399.759053pt;}
.x71_c00424{left:406.755053pt;}
.x34_c00424{left:409.135453pt;}
.x8c_c00424{left:410.279453pt;}
.x26_c00424{left:418.934253pt;}
.x7f_c00424{left:421.305853pt;}
.x68_c00424{left:428.777053pt;}
.xf_c00424{left:429.670253pt;}
.x35_c00424{left:437.810253pt;}
.x4f_c00424{left:439.033453pt;}
.x72_c00424{left:440.137853pt;}
.x36_c00424{left:442.241053pt;}
.x27_c00424{left:447.305453pt;}
.x5b_c00424{left:448.396653pt;}
.x62_c00424{left:449.303053pt;}
.x10_c00424{left:458.701453pt;}
.x7b_c00424{left:459.783853pt;}
.x82_c00424{left:460.989453pt;}
.x3b_c00424{left:468.641053pt;}
.x73_c00424{left:469.622253pt;}
.x28_c00424{left:477.691853pt;}
.x63_c00424{left:486.236653pt;}
.x29_c00424{left:488.265053pt;}
.x49_c00424{left:497.835053pt;}
.x50_c00424{left:507.299453pt;}
.x76_c00424{left:509.085853pt;}
.x74_c00424{left:516.015853pt;}
.x1e_c00424{left:517.340253pt;}
.x6d_c00424{left:525.555053pt;}
.x5c_c00424{left:526.879453pt;}
.x3c_c00424{left:535.340653pt;}
.x11_c00424{left:536.563853pt;}
.x12_c00424{left:545.764253pt;}
.x5d_c00424{left:546.930253pt;}
.x69_c00424{left:548.175453pt;}
.x64_c00424{left:556.284653pt;}
.x75_c00424{left:557.644253pt;}
.x2a_c00424{left:566.743453pt;}
.x86_c00424{left:568.305453pt;}
.x51_c00424{left:569.304253pt;}
.x13_c00424{left:576.221053pt;}
.x52_c00424{left:577.972253pt;}
.x1f_c00424{left:585.725053pt;}
.x2b_c00424{left:589.240653pt;}
.x5_c00424{left:594.507453pt;}
.x3d_c00424{left:595.871453pt;}
.x79_c00424{left:597.213453pt;}
.x56_c00424{left:603.769453pt;}
.x14_c00424{left:605.617453pt;}
.x2_c00424{left:607.628253pt;}
.x3_c00424{left:614.188653pt;}
.x4a_c00424{left:615.530653pt;}
.x87_c00424{left:617.435853pt;}
.x3e_c00424{left:623.868653pt;}
.x15_c00424{left:625.193053pt;}
.x4_c00424{left:627.511853pt;}
.x5e_c00424{left:629.157453pt;}
.x57_c00424{left:633.711453pt;}
.x88_c00424{left:635.172253pt;}
.x65_c00424{left:644.333053pt;}
.x3f_c00424{left:653.669853pt;}
.x89_c00424{left:656.081053pt;}
.x16_c00424{left:663.490653pt;}
.x8e_c00424{left:688.715853pt;}
.x8d_c00424{left:689.767453pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_544f2f2665e4099fac5e30f2.woff2')format("woff");}.ff1_c00425{font-family:ff1_c00425;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00425;src:url('chunks/assets/font_78887e47e849afc4d04d5e7f.woff2')format("woff");}.ff2_c00425{font-family:ff2_c00425;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00425;src:url('chunks/assets/font_424b5749b59526eb8de926dc.woff2')format("woff");}.ff3_c00425{font-family:ff3_c00425;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00425;src:url('chunks/assets/font_2b3a1528b3312a427fc60e7c.woff2')format("woff");}.ff4_c00425{font-family:ff4_c00425;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00425;src:url('chunks/assets/font_e5999a700c23f22496a64254.woff2')format("woff");}.ff5_c00425{font-family:ff5_c00425;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00425;src:url('chunks/assets/font_e2f2dcea52de840c42487653.woff2')format("woff");}.ff6_c00425{font-family:ff6_c00425;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m14_c00425{transform:matrix(0.028572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.028572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.028572,0.000000,0.000000,0.250000,0,0);}
.md4_c00425{transform:matrix(0.031251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.031251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.031251,0.000000,0.000000,0.250000,0,0);}
.mae_c00425{transform:matrix(0.047620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.047620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.047620,0.000000,0.000000,0.250000,0,0);}
.m92_c00425{transform:matrix(0.048246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048246,0.000000,0.000000,0.250000,0,0);}
.md6_c00425{transform:matrix(0.058333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.058333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.058333,0.000000,0.000000,0.250000,0,0);}
.m9d_c00425{transform:matrix(0.064286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064286,0.000000,0.000000,0.250000,0,0);}
.mad_c00425{transform:matrix(0.065477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065477,0.000000,0.000000,0.250000,0,0);}
.md8_c00425{transform:matrix(0.068751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.068751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.068751,0.000000,0.000000,0.250000,0,0);}
.mbc_c00425{transform:matrix(0.071428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071428,0.000000,0.000000,0.250000,0,0);}
.mfa_c00425{transform:matrix(0.072369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072369,0.000000,0.000000,0.250000,0,0);}
.mb9_c00425{transform:matrix(0.077382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077382,0.000000,0.000000,0.250000,0,0);}
.m13_c00425{transform:matrix(0.080357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080357,0.000000,0.000000,0.250000,0,0);}
.m9e_c00425{transform:matrix(0.082144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.082144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.082144,0.000000,0.000000,0.250000,0,0);}
.mb0_c00425{transform:matrix(0.084524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084524,0.000000,0.000000,0.250000,0,0);}
.mf8_c00425{transform:matrix(0.085527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085527,0.000000,0.000000,0.250000,0,0);}
.ma8_c00425{transform:matrix(0.085714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085714,0.000000,0.000000,0.250000,0,0);}
.mbb_c00425{transform:matrix(0.086310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086310,0.000000,0.000000,0.250000,0,0);}
.md0_c00425{transform:matrix(0.093070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093070,0.000000,0.000000,0.250000,0,0);}
.md7_c00425{transform:matrix(0.094887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094887,0.000000,0.000000,0.250000,0,0);}
.ma1_c00425{transform:matrix(0.096428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096428,0.000000,0.000000,0.250000,0,0);}
.mce_c00425{transform:matrix(0.099203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099203,0.000000,0.000000,0.250000,0,0);}
.m6_c00425{transform:matrix(0.103572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103572,0.000000,0.000000,0.250000,0,0);}
.m7_c00425{transform:matrix(0.107142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107142,0.000000,0.000000,0.250000,0,0);}
.md5_c00425{transform:matrix(0.112500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112500,0.000000,0.000000,0.250000,0,0);}
.me2_c00425{transform:matrix(0.114286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114286,0.000000,0.000000,0.250000,0,0);}
.m97_c00425{transform:matrix(0.120615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120615,0.000000,0.000000,0.250000,0,0);}
.maf_c00425{transform:matrix(0.124405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124405,0.000000,0.000000,0.250000,0,0);}
.mcd_c00425{transform:matrix(0.124791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124791,0.000000,0.000000,0.250000,0,0);}
.m90_c00425{transform:matrix(0.129386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129386,0.000000,0.000000,0.250000,0,0);}
.m9c_c00425{transform:matrix(0.133036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133036,0.000000,0.000000,0.250000,0,0);}
.m33_c00425{transform:matrix(0.137216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137216,0.000000,0.000000,0.250000,0,0);}
.ma7_c00425{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.md3_c00425{transform:matrix(0.154166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154166,0.000000,0.000000,0.250000,0,0);}
.m15_c00425{transform:matrix(0.157142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157142,0.000000,0.000000,0.250000,0,0);}
.mba_c00425{transform:matrix(0.160715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160715,0.000000,0.000000,0.250000,0,0);}
.m8_c00425{transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);}
.m16_c00425{transform:matrix(0.171429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171429,0.000000,0.000000,0.250000,0,0);}
.mf7_c00425{transform:matrix(0.175020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175020,0.000000,0.000000,0.250000,0,0);}
.mb6_c00425{transform:matrix(0.175716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175716,0.000000,0.000000,0.250000,0,0);}
.m8d_c00425{transform:matrix(0.178295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178295,0.000000,0.000000,0.250000,0,0);}
.m1a_c00425{transform:matrix(0.179592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179592,0.000000,0.000000,0.250000,0,0);}
.mcb_c00425{transform:matrix(0.184313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184313,0.000000,0.000000,0.250000,0,0);}
.m17_c00425{transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);}
.m93_c00425{transform:matrix(0.186087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186087,0.000000,0.000000,0.250000,0,0);}
.m101_c00425{transform:matrix(0.188203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188203,0.000000,0.000000,0.250000,0,0);}
.ma2_c00425{transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);}
.m9f_c00425{transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);}
.m91_c00425{transform:matrix(0.197368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197368,0.000000,0.000000,0.250000,0,0);}
.mc8_c00425{transform:matrix(0.197914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197914,0.000000,0.000000,0.250000,0,0);}
.mb2_c00425{transform:matrix(0.199918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199918,0.000000,0.000000,0.250000,0,0);}
.ma0_c00425{transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);}
.mf9_c00425{transform:matrix(0.201316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201316,0.000000,0.000000,0.250000,0,0);}
.mdc_c00425{transform:matrix(0.205642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205642,0.000000,0.000000,0.250000,0,0);}
.m2_c00425{transform:matrix(0.210256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210256,0.000000,0.000000,0.250000,0,0);}
.m5_c00425{transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);}
.m72_c00425{transform:matrix(0.210877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210877,0.000000,0.000000,0.250000,0,0);}
.ma3_c00425{transform:matrix(0.211905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211905,0.000000,0.000000,0.250000,0,0);}
.m60_c00425{transform:matrix(0.212800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212800,0.000000,0.000000,0.250000,0,0);}
.m18_c00425{transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);}
.m9b_c00425{transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);}
.mfb_c00425{transform:matrix(0.220201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220201,0.000000,0.000000,0.250000,0,0);}
.m65_c00425{transform:matrix(0.223386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223386,0.000000,0.000000,0.250000,0,0);}
.m25_c00425{transform:matrix(0.224330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224330,0.000000,0.000000,0.250000,0,0);}
.md2_c00425{transform:matrix(0.229493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229493,0.000000,0.000000,0.250000,0,0);}
.mcc_c00425{transform:matrix(0.230547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230547,0.000000,0.000000,0.250000,0,0);}
.m83_c00425{transform:matrix(0.230976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230976,0.000000,0.000000,0.250000,0,0);}
.m1f_c00425{transform:matrix(0.244863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244863,0.000000,0.000000,0.250000,0,0);}
.mc_c00425{transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);}
.m69_c00425{transform:matrix(0.248411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248411,0.000000,0.000000,0.250000,0,0);}
.m0_c00425{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m66_c00425{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m75_c00425{transform:matrix(0.253420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253420,0.000000,0.000000,0.250000,0,0);}
.m21_c00425{transform:matrix(0.253645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253645,0.000000,0.000000,0.250000,0,0);}
.m1_c00425{transform:matrix(0.254705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254705,0.000000,0.000000,0.250000,0,0);}
.m4_c00425{transform:matrix(0.256020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256020,0.000000,0.000000,0.250000,0,0);}
.m80_c00425{transform:matrix(0.256392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256392,0.000000,0.000000,0.250000,0,0);}
.m46_c00425{transform:matrix(0.257184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257184,0.000000,0.000000,0.250000,0,0);}
.m7f_c00425{transform:matrix(0.260815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260815,0.000000,0.000000,0.250000,0,0);}
.mc4_c00425{transform:matrix(0.261155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261155,0.000000,0.000000,0.250000,0,0);}
.md1_c00425{transform:matrix(0.262638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262638,0.000000,0.000000,0.250000,0,0);}
.m58_c00425{transform:matrix(0.264199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264199,0.000000,0.000000,0.250000,0,0);}
.mb_c00425{transform:matrix(0.265624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265624,0.000000,0.000000,0.250000,0,0);}
.mc7_c00425{transform:matrix(0.267171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267171,0.000000,0.000000,0.250000,0,0);}
.m81_c00425{transform:matrix(0.267375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267375,0.000000,0.000000,0.250000,0,0);}
.m27_c00425{transform:matrix(0.269002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269002,0.000000,0.000000,0.250000,0,0);}
.m56_c00425{transform:matrix(0.269026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269026,0.000000,0.000000,0.250000,0,0);}
.m42_c00425{transform:matrix(0.269569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269569,0.000000,0.000000,0.250000,0,0);}
.mfc_c00425{transform:matrix(0.270374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270374,0.000000,0.000000,0.250000,0,0);}
.ma6_c00425{transform:matrix(0.270747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270747,0.000000,0.000000,0.250000,0,0);}
.m71_c00425{transform:matrix(0.271597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271597,0.000000,0.000000,0.250000,0,0);}
.me_c00425{transform:matrix(0.271976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271976,0.000000,0.000000,0.250000,0,0);}
.ma_c00425{transform:matrix(0.272047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272047,0.000000,0.000000,0.250000,0,0);}
.m5e_c00425{transform:matrix(0.273490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273490,0.000000,0.000000,0.250000,0,0);}
.m51_c00425{transform:matrix(0.273806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273806,0.000000,0.000000,0.250000,0,0);}
.mdf_c00425{transform:matrix(0.274383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274383,0.000000,0.000000,0.250000,0,0);}
.m3d_c00425{transform:matrix(0.275483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275483,0.000000,0.000000,0.250000,0,0);}
.m24_c00425{transform:matrix(0.275518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275518,0.000000,0.000000,0.250000,0,0);}
.mbd_c00425{transform:matrix(0.275618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275618,0.000000,0.000000,0.250000,0,0);}
.md9_c00425{transform:matrix(0.275934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275934,0.000000,0.000000,0.250000,0,0);}
.mf2_c00425{transform:matrix(0.276501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276501,0.000000,0.000000,0.250000,0,0);}
.m41_c00425{transform:matrix(0.278610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278610,0.000000,0.000000,0.250000,0,0);}
.mac_c00425{transform:matrix(0.279029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279029,0.000000,0.000000,0.250000,0,0);}
.mcf_c00425{transform:matrix(0.279211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279211,0.000000,0.000000,0.250000,0,0);}
.m1c_c00425{transform:matrix(0.279597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279597,0.000000,0.000000,0.250000,0,0);}
.mbe_c00425{transform:matrix(0.281186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281186,0.000000,0.000000,0.250000,0,0);}
.m44_c00425{transform:matrix(0.281622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281622,0.000000,0.000000,0.250000,0,0);}
.m7d_c00425{transform:matrix(0.281678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281678,0.000000,0.000000,0.250000,0,0);}
.m4d_c00425{transform:matrix(0.282668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282668,0.000000,0.000000,0.250000,0,0);}
.me4_c00425{transform:matrix(0.283236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283236,0.000000,0.000000,0.250000,0,0);}
.m70_c00425{transform:matrix(0.284138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284138,0.000000,0.000000,0.250000,0,0);}
.m9a_c00425{transform:matrix(0.284226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284226,0.000000,0.000000,0.250000,0,0);}
.m4c_c00425{transform:matrix(0.286052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286052,0.000000,0.000000,0.250000,0,0);}
.m38_c00425{transform:matrix(0.286071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286071,0.000000,0.000000,0.250000,0,0);}
.mc6_c00425{transform:matrix(0.286135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286135,0.000000,0.000000,0.250000,0,0);}
.m32_c00425{transform:matrix(0.286142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286142,0.000000,0.000000,0.250000,0,0);}
.m78_c00425{transform:matrix(0.286990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286990,0.000000,0.000000,0.250000,0,0);}
.me8_c00425{transform:matrix(0.287512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287512,0.000000,0.000000,0.250000,0,0);}
.m11_c00425{transform:matrix(0.287655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287655,0.000000,0.000000,0.250000,0,0);}
.m7b_c00425{transform:matrix(0.289304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289304,0.000000,0.000000,0.250000,0,0);}
.m52_c00425{transform:matrix(0.289629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289629,0.000000,0.000000,0.250000,0,0);}
.m1e_c00425{transform:matrix(0.289806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289806,0.000000,0.000000,0.250000,0,0);}
.me9_c00425{transform:matrix(0.289897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289897,0.000000,0.000000,0.250000,0,0);}
.m6d_c00425{transform:matrix(0.290528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290528,0.000000,0.000000,0.250000,0,0);}
.mea_c00425{transform:matrix(0.290594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290594,0.000000,0.000000,0.250000,0,0);}
.mec_c00425{transform:matrix(0.290849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290849,0.000000,0.000000,0.250000,0,0);}
.mf4_c00425{transform:matrix(0.291252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291252,0.000000,0.000000,0.250000,0,0);}
.m87_c00425{transform:matrix(0.293383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293383,0.000000,0.000000,0.250000,0,0);}
.me6_c00425{transform:matrix(0.293830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293830,0.000000,0.000000,0.250000,0,0);}
.m96_c00425{transform:matrix(0.294003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294003,0.000000,0.000000,0.250000,0,0);}
.maa_c00425{transform:matrix(0.294470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294470,0.000000,0.000000,0.250000,0,0);}
.m1d_c00425{transform:matrix(0.294656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294656,0.000000,0.000000,0.250000,0,0);}
.m59_c00425{transform:matrix(0.295074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295074,0.000000,0.000000,0.250000,0,0);}
.mee_c00425{transform:matrix(0.295221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295221,0.000000,0.000000,0.250000,0,0);}
.m40_c00425{transform:matrix(0.296362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296362,0.000000,0.000000,0.250000,0,0);}
.m8e_c00425{transform:matrix(0.296364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296364,0.000000,0.000000,0.250000,0,0);}
.m73_c00425{transform:matrix(0.296718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296718,0.000000,0.000000,0.250000,0,0);}
.m49_c00425{transform:matrix(0.296983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296983,0.000000,0.000000,0.250000,0,0);}
.m28_c00425{transform:matrix(0.297391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297391,0.000000,0.000000,0.250000,0,0);}
.m105_c00425{transform:matrix(0.298267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298267,0.000000,0.000000,0.250000,0,0);}
.m68_c00425{transform:matrix(0.298920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298920,0.000000,0.000000,0.250000,0,0);}
.mc5_c00425{transform:matrix(0.299360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299360,0.000000,0.000000,0.250000,0,0);}
.mb4_c00425{transform:matrix(0.301472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301472,0.000000,0.000000,0.250000,0,0);}
.m88_c00425{transform:matrix(0.301848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301848,0.000000,0.000000,0.250000,0,0);}
.m89_c00425{transform:matrix(0.301900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301900,0.000000,0.000000,0.250000,0,0);}
.meb_c00425{transform:matrix(0.303445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303445,0.000000,0.000000,0.250000,0,0);}
.m8f_c00425{transform:matrix(0.303749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303749,0.000000,0.000000,0.250000,0,0);}
.me0_c00425{transform:matrix(0.303987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303987,0.000000,0.000000,0.250000,0,0);}
.m43_c00425{transform:matrix(0.304118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304118,0.000000,0.000000,0.250000,0,0);}
.m8b_c00425{transform:matrix(0.304214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304214,0.000000,0.000000,0.250000,0,0);}
.mef_c00425{transform:matrix(0.304816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304816,0.000000,0.000000,0.250000,0,0);}
.m50_c00425{transform:matrix(0.304821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304821,0.000000,0.000000,0.250000,0,0);}
.me1_c00425{transform:matrix(0.305634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305634,0.000000,0.000000,0.250000,0,0);}
.m12_c00425{transform:matrix(0.307403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307403,0.000000,0.000000,0.250000,0,0);}
.m77_c00425{transform:matrix(0.309053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309053,0.000000,0.000000,0.250000,0,0);}
.m57_c00425{transform:matrix(0.310416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310416,0.000000,0.000000,0.250000,0,0);}
.m106_c00425{transform:matrix(0.310498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310498,0.000000,0.000000,0.250000,0,0);}
.m31_c00425{transform:matrix(0.311043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311043,0.000000,0.000000,0.250000,0,0);}
.mf5_c00425{transform:matrix(0.311543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311543,0.000000,0.000000,0.250000,0,0);}
.m6f_c00425{transform:matrix(0.312036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312036,0.000000,0.000000,0.250000,0,0);}
.med_c00425{transform:matrix(0.313110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313110,0.000000,0.000000,0.250000,0,0);}
.m3e_c00425{transform:matrix(0.313776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313776,0.000000,0.000000,0.250000,0,0);}
.m2c_c00425{transform:matrix(0.313801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313801,0.000000,0.000000,0.250000,0,0);}
.mff_c00425{transform:matrix(0.315181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315181,0.000000,0.000000,0.250000,0,0);}
.m3a_c00425{transform:matrix(0.316134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316134,0.000000,0.000000,0.250000,0,0);}
.m4b_c00425{transform:matrix(0.317115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317115,0.000000,0.000000,0.250000,0,0);}
.m100_c00425{transform:matrix(0.317513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317513,0.000000,0.000000,0.250000,0,0);}
.m99_c00425{transform:matrix(0.318971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318971,0.000000,0.000000,0.250000,0,0);}
.m79_c00425{transform:matrix(0.318982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318982,0.000000,0.000000,0.250000,0,0);}
.m84_c00425{transform:matrix(0.321098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321098,0.000000,0.000000,0.250000,0,0);}
.m4f_c00425{transform:matrix(0.321154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321154,0.000000,0.000000,0.250000,0,0);}
.m3f_c00425{transform:matrix(0.321381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321381,0.000000,0.000000,0.250000,0,0);}
.ma9_c00425{transform:matrix(0.322415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322415,0.000000,0.000000,0.250000,0,0);}
.mc0_c00425{transform:matrix(0.323913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323913,0.000000,0.000000,0.250000,0,0);}
.mf_c00425{transform:matrix(0.324821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324821,0.000000,0.000000,0.250000,0,0);}
.mf6_c00425{transform:matrix(0.324863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324863,0.000000,0.000000,0.250000,0,0);}
.md_c00425{transform:matrix(0.326392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326392,0.000000,0.000000,0.250000,0,0);}
.m107_c00425{transform:matrix(0.327672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327672,0.000000,0.000000,0.250000,0,0);}
.m8a_c00425{transform:matrix(0.328404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328404,0.000000,0.000000,0.250000,0,0);}
.m6b_c00425{transform:matrix(0.328642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328642,0.000000,0.000000,0.250000,0,0);}
.m4e_c00425{transform:matrix(0.328644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328644,0.000000,0.000000,0.250000,0,0);}
.m39_c00425{transform:matrix(0.329240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329240,0.000000,0.000000,0.250000,0,0);}
.mda_c00425{transform:matrix(0.329492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329492,0.000000,0.000000,0.250000,0,0);}
.m104_c00425{transform:matrix(0.329553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329553,0.000000,0.000000,0.250000,0,0);}
.mb7_c00425{transform:matrix(0.329580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329580,0.000000,0.000000,0.250000,0,0);}
.m7e_c00425{transform:matrix(0.329945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329945,0.000000,0.000000,0.250000,0,0);}
.m2e_c00425{transform:matrix(0.332382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332382,0.000000,0.000000,0.250000,0,0);}
.m8c_c00425{transform:matrix(0.332706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332706,0.000000,0.000000,0.250000,0,0);}
.m5c_c00425{transform:matrix(0.332888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332888,0.000000,0.000000,0.250000,0,0);}
.mc3_c00425{transform:matrix(0.333264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333264,0.000000,0.000000,0.250000,0,0);}
.mb3_c00425{transform:matrix(0.334095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334095,0.000000,0.000000,0.250000,0,0);}
.mc2_c00425{transform:matrix(0.334453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334453,0.000000,0.000000,0.250000,0,0);}
.m1b_c00425{transform:matrix(0.334473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334473,0.000000,0.000000,0.250000,0,0);}
.m54_c00425{transform:matrix(0.334511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334511,0.000000,0.000000,0.250000,0,0);}
.m34_c00425{transform:matrix(0.334524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334524,0.000000,0.000000,0.250000,0,0);}
.m2d_c00425{transform:matrix(0.334925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334925,0.000000,0.000000,0.250000,0,0);}
.m6a_c00425{transform:matrix(0.335124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335124,0.000000,0.000000,0.250000,0,0);}
.me3_c00425{transform:matrix(0.335399,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335399,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335399,0.000000,0.000000,0.250000,0,0);}
.m86_c00425{transform:matrix(0.335527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335527,0.000000,0.000000,0.250000,0,0);}
.mb8_c00425{transform:matrix(0.335987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335987,0.000000,0.000000,0.250000,0,0);}
.ma5_c00425{transform:matrix(0.336727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336727,0.000000,0.000000,0.250000,0,0);}
.m19_c00425{transform:matrix(0.338071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338071,0.000000,0.000000,0.250000,0,0);}
.mc9_c00425{transform:matrix(0.338209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338209,0.000000,0.000000,0.250000,0,0);}
.m103_c00425{transform:matrix(0.339452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339452,0.000000,0.000000,0.250000,0,0);}
.m22_c00425{transform:matrix(0.340666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340666,0.000000,0.000000,0.250000,0,0);}
.m4a_c00425{transform:matrix(0.341332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341332,0.000000,0.000000,0.250000,0,0);}
.m5d_c00425{transform:matrix(0.341644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341644,0.000000,0.000000,0.250000,0,0);}
.mdd_c00425{transform:matrix(0.341829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341829,0.000000,0.000000,0.250000,0,0);}
.mc1_c00425{transform:matrix(0.342152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342152,0.000000,0.000000,0.250000,0,0);}
.m30_c00425{transform:matrix(0.342243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342243,0.000000,0.000000,0.250000,0,0);}
.m26_c00425{transform:matrix(0.343024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343024,0.000000,0.000000,0.250000,0,0);}
.m23_c00425{transform:matrix(0.343438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343438,0.000000,0.000000,0.250000,0,0);}
.mdb_c00425{transform:matrix(0.343757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343757,0.000000,0.000000,0.250000,0,0);}
.m3b_c00425{transform:matrix(0.345168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345168,0.000000,0.000000,0.250000,0,0);}
.m55_c00425{transform:matrix(0.346869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346869,0.000000,0.000000,0.250000,0,0);}
.m20_c00425{transform:matrix(0.347233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347233,0.000000,0.000000,0.250000,0,0);}
.m61_c00425{transform:matrix(0.347492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347492,0.000000,0.000000,0.250000,0,0);}
.m95_c00425{transform:matrix(0.348293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348293,0.000000,0.000000,0.250000,0,0);}
.m7a_c00425{transform:matrix(0.349001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349001,0.000000,0.000000,0.250000,0,0);}
.m82_c00425{transform:matrix(0.349673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349673,0.000000,0.000000,0.250000,0,0);}
.mf1_c00425{transform:matrix(0.349926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349926,0.000000,0.000000,0.250000,0,0);}
.m2a_c00425{transform:matrix(0.350922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350922,0.000000,0.000000,0.250000,0,0);}
.m45_c00425{transform:matrix(0.351644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351644,0.000000,0.000000,0.250000,0,0);}
.m37_c00425{transform:matrix(0.353493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353493,0.000000,0.000000,0.250000,0,0);}
.m64_c00425{transform:matrix(0.353889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353889,0.000000,0.000000,0.250000,0,0);}
.me5_c00425{transform:matrix(0.355334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355334,0.000000,0.000000,0.250000,0,0);}
.m63_c00425{transform:matrix(0.355617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355617,0.000000,0.000000,0.250000,0,0);}
.m98_c00425{transform:matrix(0.356879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356879,0.000000,0.000000,0.250000,0,0);}
.m85_c00425{transform:matrix(0.356893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356893,0.000000,0.000000,0.250000,0,0);}
.m29_c00425{transform:matrix(0.361892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361892,0.000000,0.000000,0.250000,0,0);}
.m53_c00425{transform:matrix(0.364369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364369,0.000000,0.000000,0.250000,0,0);}
.m36_c00425{transform:matrix(0.365359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365359,0.000000,0.000000,0.250000,0,0);}
.m94_c00425{transform:matrix(0.365848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365848,0.000000,0.000000,0.250000,0,0);}
.m2b_c00425{transform:matrix(0.366830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366830,0.000000,0.000000,0.250000,0,0);}
.mb1_c00425{transform:matrix(0.367600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367600,0.000000,0.000000,0.250000,0,0);}
.m35_c00425{transform:matrix(0.368301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368301,0.000000,0.000000,0.250000,0,0);}
.mfd_c00425{transform:matrix(0.372228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372228,0.000000,0.000000,0.250000,0,0);}
.mf0_c00425{transform:matrix(0.373056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373056,0.000000,0.000000,0.250000,0,0);}
.m76_c00425{transform:matrix(0.373337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373337,0.000000,0.000000,0.250000,0,0);}
.m3c_c00425{transform:matrix(0.373853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373853,0.000000,0.000000,0.250000,0,0);}
.me7_c00425{transform:matrix(0.374941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374941,0.000000,0.000000,0.250000,0,0);}
.m5a_c00425{transform:matrix(0.375520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375520,0.000000,0.000000,0.250000,0,0);}
.m2f_c00425{transform:matrix(0.375598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375598,0.000000,0.000000,0.250000,0,0);}
.mbf_c00425{transform:matrix(0.376641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376641,0.000000,0.000000,0.250000,0,0);}
.m3_c00425{transform:matrix(0.379168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379168,0.000000,0.000000,0.250000,0,0);}
.ma4_c00425{transform:matrix(0.379886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379886,0.000000,0.000000,0.250000,0,0);}
.m7c_c00425{transform:matrix(0.384529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384529,0.000000,0.000000,0.250000,0,0);}
.m74_c00425{transform:matrix(0.386379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386379,0.000000,0.000000,0.250000,0,0);}
.m47_c00425{transform:matrix(0.386436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386436,0.000000,0.000000,0.250000,0,0);}
.m9_c00425{transform:matrix(0.387529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387529,0.000000,0.000000,0.250000,0,0);}
.m67_c00425{transform:matrix(0.388208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388208,0.000000,0.000000,0.250000,0,0);}
.mf3_c00425{transform:matrix(0.388888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388888,0.000000,0.000000,0.250000,0,0);}
.m62_c00425{transform:matrix(0.393041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393041,0.000000,0.000000,0.250000,0,0);}
.m48_c00425{transform:matrix(0.395076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395076,0.000000,0.000000,0.250000,0,0);}
.m102_c00425{transform:matrix(0.396932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396932,0.000000,0.000000,0.250000,0,0);}
.m10_c00425{transform:matrix(0.399536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399536,0.000000,0.000000,0.250000,0,0);}
.m6c_c00425{transform:matrix(0.399979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399979,0.000000,0.000000,0.250000,0,0);}
.m5b_c00425{transform:matrix(0.400438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400438,0.000000,0.000000,0.250000,0,0);}
.m6e_c00425{transform:matrix(0.403494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403494,0.000000,0.000000,0.250000,0,0);}
.mb5_c00425{transform:matrix(0.406365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406365,0.000000,0.000000,0.250000,0,0);}
.m5f_c00425{transform:matrix(0.411565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411565,0.000000,0.000000,0.250000,0,0);}
.mde_c00425{transform:matrix(0.459629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459629,0.000000,0.000000,0.250000,0,0);}
.mab_c00425{transform:matrix(0.470420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470420,0.000000,0.000000,0.250000,0,0);}
.mca_c00425{transform:matrix(0.471038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471038,0.000000,0.000000,0.250000,0,0);}
.mfe_c00425{transform:matrix(0.486779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486779,0.000000,0.000000,0.250000,0,0);}
.v1_c00425{vertical-align:-1.425600px;}
.v0_c00425{vertical-align:0.000000px;}
.ls42_c00425{letter-spacing:-3.215527px;}
.ls38_c00425{letter-spacing:-2.716567px;}
.ls24_c00425{letter-spacing:-2.654190px;}
.lsd_c00425{letter-spacing:-2.480940px;}
.ls23_c00425{letter-spacing:-2.439367px;}
.ls26_c00425{letter-spacing:-2.266117px;}
.ls15_c00425{letter-spacing:-2.245327px;}
.ls27_c00425{letter-spacing:-2.211581px;}
.ls43_c00425{letter-spacing:-2.196137px;}
.ls3f_c00425{letter-spacing:-2.126520px;}
.ls1d_c00425{letter-spacing:-1.971684px;}
.ls2c_c00425{letter-spacing:-1.936202px;}
.ls31_c00425{letter-spacing:-1.846310px;}
.ls13_c00425{letter-spacing:-1.616947px;}
.ls41_c00425{letter-spacing:-1.609569px;}
.ls3a_c00425{letter-spacing:-1.547256px;}
.ls3e_c00425{letter-spacing:-1.502741px;}
.ls3d_c00425{letter-spacing:-0.623779px;}
.lsb_c00425{letter-spacing:0.000000px;}
.ls6_c00425{letter-spacing:0.085061px;}
.ls29_c00425{letter-spacing:0.113414px;}
.ls11_c00425{letter-spacing:0.454410px;}
.ls20_c00425{letter-spacing:0.800989px;}
.ls2f_c00425{letter-spacing:1.035642px;}
.ls37_c00425{letter-spacing:1.237500px;}
.ls1c_c00425{letter-spacing:1.304266px;}
.ls17_c00425{letter-spacing:1.339708px;}
.ls16_c00425{letter-spacing:1.892603px;}
.ls2e_c00425{letter-spacing:2.217600px;}
.ls1a_c00425{letter-spacing:2.289553px;}
.ls25_c00425{letter-spacing:2.336400px;}
.ls2b_c00425{letter-spacing:2.415600px;}
.ls3c_c00425{letter-spacing:2.494810px;}
.ls33_c00425{letter-spacing:2.554200px;}
.ls35_c00425{letter-spacing:2.665238px;}
.ls2a_c00425{letter-spacing:2.692810px;}
.ls36_c00425{letter-spacing:2.950200px;}
.ls1f_c00425{letter-spacing:3.069277px;}
.ls12_c00425{letter-spacing:3.108600px;}
.ls2d_c00425{letter-spacing:3.118500px;}
.ls30_c00425{letter-spacing:3.138310px;}
.ls5_c00425{letter-spacing:3.140161px;}
.ls14_c00425{letter-spacing:3.158100px;}
.ls2_c00425{letter-spacing:3.189780px;}
.ls21_c00425{letter-spacing:3.246487px;}
.ls1b_c00425{letter-spacing:3.375900px;}
.ls8_c00425{letter-spacing:3.402432px;}
.lsf_c00425{letter-spacing:3.405610px;}
.ls18_c00425{letter-spacing:3.445200px;}
.ls22_c00425{letter-spacing:3.474900px;}
.lsc_c00425{letter-spacing:3.544200px;}
.ls19_c00425{letter-spacing:3.564000px;}
.ls40_c00425{letter-spacing:3.623400px;}
.ls1e_c00425{letter-spacing:3.791700px;}
.ls10_c00425{letter-spacing:3.801610px;}
.ls39_c00425{letter-spacing:3.880810px;}
.ls34_c00425{letter-spacing:4.078810px;}
.ls1_c00425{letter-spacing:5.528160px;}
.ls4_c00425{letter-spacing:6.521328px;}
.ls7_c00425{letter-spacing:10.356522px;}
.lsa_c00425{letter-spacing:12.904405px;}
.ls0_c00425{letter-spacing:20.196000px;}
.ls3_c00425{letter-spacing:24.100560px;}
.lse_c00425{letter-spacing:49.896198px;}
.ls28_c00425{letter-spacing:54.172998px;}
.ls3b_c00425{letter-spacing:57.024198px;}
.ls32_c00425{letter-spacing:59.875398px;}
.ls9_c00425{letter-spacing:1097.775360px;}
.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;}
}
.wse_c00425{word-spacing:-21.123432px;}
.ws6_c00425{word-spacing:-20.967487px;}
.ws4_c00425{word-spacing:-20.910780px;}
.ws5_c00425{word-spacing:-18.521989px;}
.ws7_c00425{word-spacing:-18.513050px;}
.ws0_c00425{word-spacing:-17.721000px;}
.wsf_c00425{word-spacing:-17.097221px;}
.ws1_c00425{word-spacing:-11.055053px;}
.ws8_c00425{word-spacing:-3.827736px;}
.wsa_c00425{word-spacing:-2.197404px;}
.ws3_c00425{word-spacing:-0.779724px;}
.ws10_c00425{word-spacing:0.000000px;}
.ws2_c00425{word-spacing:0.070884px;}
.wsd_c00425{word-spacing:1.505370px;}
.wsb_c00425{word-spacing:5.538931px;}
.wsc_c00425{word-spacing:7.939008px;}
.ws9_c00425{word-spacing:23.850901px;}
._d_c00425{margin-left:-11.241648px;}
._5_c00425{margin-left:-5.741604px;}
._16_c00425{margin-left:-2.551824px;}
._1f_c00425{margin-left:-1.416888px;}
._4_c00425{width:1.913868px;}
._11_c00425{width:3.756852px;}
._2_c00425{width:5.930304px;}
._8_c00425{width:7.939008px;}
._0_c00425{width:9.852876px;}
._12_c00425{width:11.695860px;}
._13_c00425{width:12.972168px;}
._a_c00425{width:14.318568px;}
._7_c00425{width:15.523596px;}
._1b_c00425{width:16.657740px;}
._1d_c00425{width:19.583080px;}
._21_c00425{width:21.901946px;}
._6_c00425{width:24.100560px;}
._b_c00425{width:25.633872px;}
._17_c00425{width:28.637136px;}
._15_c00425{width:30.409632px;}
._3_c00425{width:32.447448px;}
._19_c00425{width:33.882552px;}
._1_c00425{width:35.184600px;}
._f_c00425{width:37.225980px;}
._c_c00425{width:39.198852px;}
._1c_c00425{width:40.863794px;}
._1a_c00425{width:42.550200px;}
._9_c00425{width:43.664544px;}
._10_c00425{width:44.818378px;}
._18_c00425{width:46.216368px;}
._14_c00425{width:48.411000px;}
._1e_c00425{width:51.458308px;}
._e_c00425{width:53.233884px;}
._23_c00425{width:85.351354px;}
._20_c00425{width:121.826914px;}
._22_c00425{width:495.521136px;}
.fc0_c00425{color:transparent;}
.fs2b_c00425{font-size:22.176000px;}
.fs0_c00425{font-size:22.374000px;}
.fs22_c00425{font-size:24.750000px;}
.fs28_c00425{font-size:34.056198px;}
.fs1a_c00425{font-size:44.352000px;}
.fs27_c00425{font-size:45.144000px;}
.fs14_c00425{font-size:46.728000px;}
.fs29_c00425{font-size:46.926198px;}
.fs18_c00425{font-size:48.312000px;}
.fs2_c00425{font-size:49.896198px;}
.fs5_c00425{font-size:50.490000px;}
.fs7_c00425{font-size:50.688000px;}
.fs1e_c00425{font-size:51.084000px;}
.fs16_c00425{font-size:53.856198px;}
.fs15_c00425{font-size:54.172998px;}
.fs20_c00425{font-size:56.628000px;}
.fs25_c00425{font-size:57.024198px;}
.fs21_c00425{font-size:59.004000px;}
.fs1d_c00425{font-size:59.875398px;}
.fs6_c00425{font-size:62.172000px;}
.fs19_c00425{font-size:62.370000px;}
.fs11_c00425{font-size:62.568000px;}
.fs1b_c00425{font-size:62.766198px;}
.fs8_c00425{font-size:63.162000px;}
.fs17_c00425{font-size:63.360000px;}
.fs9_c00425{font-size:64.152198px;}
.fs13_c00425{font-size:64.746198px;}
.fsc_c00425{font-size:67.518000px;}
.fs3_c00425{font-size:68.112198px;}
.fsa_c00425{font-size:68.904000px;}
.fs10_c00425{font-size:69.498000px;}
.fs12_c00425{font-size:69.696198px;}
.fse_c00425{font-size:69.894000px;}
.fs1_c00425{font-size:70.884000px;}
.fsb_c00425{font-size:71.280000px;}
.fs26_c00425{font-size:72.468000px;}
.fsf_c00425{font-size:74.052198px;}
.fs1c_c00425{font-size:74.448000px;}
.fsd_c00425{font-size:75.834000px;}
.fs4_c00425{font-size:76.032198px;}
.fs24_c00425{font-size:77.616198px;}
.fs23_c00425{font-size:79.200000px;}
.fs1f_c00425{font-size:81.576198px;}
.fs2a_c00425{font-size:91.872198px;}
.y0_c00425{bottom:0.000000px;}
.y1_c00425{bottom:76.500000px;}
.y23_c00425{bottom:114.672735px;}
.y21_c00425{bottom:141.402735px;}
.y22_c00425{bottom:172.048185px;}
.y20_c00425{bottom:197.357535px;}
.y1f_c00425{bottom:197.713935px;}
.y1e_c00425{bottom:204.841935px;}
.y1d_c00425{bottom:236.917935px;}
.y1c_c00425{bottom:268.637535px;}
.y1b_c00425{bottom:301.777785px;}
.y1a_c00425{bottom:326.730735px;}
.y18_c00425{bottom:327.794985px;}
.y15_c00425{bottom:333.497385px;}
.y17_c00425{bottom:334.210185px;}
.y19_c00425{bottom:334.927935px;}
.y16_c00425{bottom:345.258585px;}
.y14_c00425{bottom:361.657935px;}
.y13_c00425{bottom:398.718585px;}
.y12_c00425{bottom:431.868735px;}
.y11_c00425{bottom:465.008985px;}
.y10_c00425{bottom:498.159135px;}
.yf_c00425{bottom:529.517385px;}
.ye_c00425{bottom:561.236985px;}
.yc_c00425{bottom:593.311005px;}
.yd_c00425{bottom:593.317935px;}
.yb_c00425{bottom:627.175935px;}
.ya_c00425{bottom:659.964735px;}
.y9_c00425{bottom:692.040735px;}
.y8_c00425{bottom:756.549135px;}
.y7_c00425{bottom:788.981535px;}
.y6_c00425{bottom:822.478185px;}
.y5_c00425{bottom:855.984735px;}
.y4_c00425{bottom:888.768585px;}
.y3_c00425{bottom:922.275135px;}
.y2_c00425{bottom:1108.667385px;}
.h2_c00425{height:21.958857px;}
.h2e_c00425{height:23.128875px;}
.h26_c00425{height:25.813477px;}
.h4_c00425{height:33.230868px;}
.h17_c00425{height:36.079217px;}
.h29_c00425{height:37.978116px;}
.h1f_c00425{height:39.877015px;}
.h16_c00425{height:45.860977px;}
.h1c_c00425{height:46.257750px;}
.h1a_c00425{height:47.415586px;}
.h2a_c00425{height:48.970390px;}
.h8_c00425{height:49.747500px;}
.h20_c00425{height:50.136152px;}
.h23_c00425{height:52.866000px;}
.h18_c00425{height:56.170332px;}
.h24_c00425{height:59.061234px;}
.h7_c00425{height:61.018418px;}
.h25_c00425{height:61.539328px;}
.h19_c00425{height:62.184375px;}
.h1b_c00425{height:65.049961px;}
.h13_c00425{height:65.256469px;}
.h1d_c00425{height:65.463183px;}
.h9_c00425{height:65.875992px;}
.he_c00425{height:66.265225px;}
.hb_c00425{height:66.908738px;}
.h15_c00425{height:67.528261px;}
.hc_c00425{height:67.625508px;}
.h12_c00425{height:68.208486px;}
.h14_c00425{height:68.403007px;}
.h10_c00425{height:68.597139px;}
.h3_c00425{height:69.568770px;}
.hd_c00425{height:69.957422px;}
.h5_c00425{height:71.038894px;}
.h2b_c00425{height:71.123379px;}
.ha_c00425{height:71.437781px;}
.h21_c00425{height:71.836875px;}
.h11_c00425{height:72.678183px;}
.h1e_c00425{height:73.066641px;}
.h2c_c00425{height:74.342813px;}
.hf_c00425{height:74.426924px;}
.h28_c00425{height:76.176054px;}
.h6_c00425{height:76.626200px;}
.h27_c00425{height:79.818750px;}
.h22_c00425{height:80.062577px;}
.h2d_c00425{height:92.589950px;}
.h1_c00425{height:1110.000000px;}
.h0_c00425{height:1263.000000px;}
.w1_c00425{width:775.500000px;}
.w0_c00425{width:892.500000px;}
.x0_c00425{left:0.000000px;}
.x1_c00425{left:58.500000px;}
.x54_c00425{left:72.360735px;}
.x3_c00425{left:73.375485px;}
.x8e_c00425{left:74.434785px;}
.x18_c00425{left:75.706935px;}
.x5d_c00425{left:83.379435px;}
.x71_c00425{left:84.676335px;}
.x80_c00425{left:96.462285px;}
.x28_c00425{left:97.709685px;}
.x72_c00425{left:99.773835px;}
.x66_c00425{left:105.664335px;}
.x4_c00425{left:107.441385px;}
.x29_c00425{left:109.173885px;}
.x4e_c00425{left:115.762335px;}
.x5e_c00425{left:116.836485px;}
.x8a_c00425{left:118.054185px;}
.x50_c00425{left:128.181885px;}
.x2a_c00425{left:129.617385px;}
.x73_c00425{left:138.240285px;}
.x34_c00425{left:139.769835px;}
.x5_c00425{left:141.388485px;}
.x5f_c00425{left:148.981785px;}
.x41_c00425{left:150.120285px;}
.x2b_c00425{left:161.485485px;}
.x6_c00425{left:162.683385px;}
.x35_c00425{left:171.444885px;}
.x81_c00425{left:173.053635px;}
.x67_c00425{left:182.008185px;}
.x7_c00425{left:183.488235px;}
.x57_c00425{left:185.032635px;}
.x42_c00425{left:193.714935px;}
.x36_c00425{left:194.784135px;}
.x2c_c00425{left:197.155185px;}
.x43_c00425{left:205.585035px;}
.x37_c00425{left:216.450285px;}
.x8_c00425{left:217.554135px;}
.x2d_c00425{left:227.765985px;}
.x76_c00425{left:228.800535px;}
.x60_c00425{left:236.987835px;}
.x77_c00425{left:238.066935px;}
.x9_c00425{left:239.309385px;}
.x68_c00425{left:248.278785px;}
.x19_c00425{left:249.743985px;}
.x44_c00425{left:261.039885px;}
.x2e_c00425{left:272.083335px;}
.x1a_c00425{left:274.315785px;}
.x6e_c00425{left:281.562585px;}
.xa_c00425{left:282.611985px;}
.x82_c00425{left:283.943535px;}
.x83_c00425{left:291.858585px;}
.x1b_c00425{left:293.977185px;}
.xb_c00425{left:303.283185px;}
.x58_c00425{left:304.555335px;}
.xc_c00425{left:314.692935px;}
.x38_c00425{left:316.465035px;}
.xd_c00425{left:327.523335px;}
.x45_c00425{left:335.710635px;}
.x51_c00425{left:337.987635px;}
.x84_c00425{left:339.918135px;}
.x6f_c00425{left:347.471835px;}
.xe_c00425{left:348.867735px;}
.x1c_c00425{left:358.792485px;}
.x39_c00425{left:360.411135px;}
.xf_c00425{left:362.193135px;}
.x46_c00425{left:371.098185px;}
.x70_c00425{left:381.869385px;}
.x85_c00425{left:384.131535px;}
.x10_c00425{left:393.635535px;}
.x1d_c00425{left:395.595735px;}
.x78_c00425{left:398.090535px;}
.x3a_c00425{left:403.906785px;}
.x1e_c00425{left:411.628785px;}
.x1f_c00425{left:415.192785px;}
.x11_c00425{left:416.925285px;}
.x47_c00425{left:424.454235px;}
.x20_c00425{left:425.533335px;}
.x59_c00425{left:426.612435px;}
.x74_c00425{left:435.720435px;}
.x21_c00425{left:437.645985px;}
.x8b_c00425{left:446.867835px;}
.x12_c00425{left:448.139985px;}
.x22_c00425{left:457.604385px;}
.x3b_c00425{left:459.549735px;}
.x92_c00425{left:466.509435px;}
.x48_c00425{left:469.479435px;}
.x2f_c00425{left:470.598135px;}
.x13_c00425{left:481.329735px;}
.x61_c00425{left:493.021635px;}
.x14_c00425{left:498.550785px;}
.x23_c00425{left:502.822635px;}
.x30_c00425{left:512.841435px;}
.x49_c00425{left:514.791735px;}
.x62_c00425{left:524.394735px;}
.x4f_c00425{left:525.488685px;}
.x8f_c00425{left:530.537685px;}
.x24_c00425{left:535.774785px;}
.x63_c00425{left:536.868735px;}
.x79_c00425{left:540.645585px;}
.x3c_c00425{left:546.476685px;}
.x31_c00425{left:547.917135px;}
.x8d_c00425{left:557.188485px;}
.x55_c00425{left:558.287385px;}
.x2_c00425{left:566.217285px;}
.x15_c00425{left:568.246785px;}
.x8c_c00425{left:569.286285px;}
.x7e_c00425{left:576.686535px;}
.x5a_c00425{left:579.676335px;}
.x52_c00425{left:580.696035px;}
.x3d_c00425{left:591.021735px;}
.x7c_c00425{left:593.392785px;}
.x86_c00425{left:595.174785px;}
.x7d_c00425{left:601.233585px;}
.x25_c00425{left:602.659185px;}
.x4a_c00425{left:604.223385px;}
.x16_c00425{left:613.182885px;}
.x87_c00425{left:616.920135px;}
.x64_c00425{left:624.008535px;}
.x90_c00425{left:627.612135px;}
.x88_c00425{left:628.681335px;}
.x4b_c00425{left:630.859335px;}
.x3e_c00425{left:635.061885px;}
.x69_c00425{left:637.304235px;}
.x5b_c00425{left:646.669635px;}
.x4c_c00425{left:647.902185px;}
.x32_c00425{left:657.010185px;}
.x5c_c00425{left:663.940185px;}
.x7a_c00425{left:667.004235px;}
.x53_c00425{left:668.390235px;}
.x91_c00425{left:676.646835px;}
.x6a_c00425{left:677.661585px;}
.x17_c00425{left:679.032735px;}
.x75_c00425{left:682.037385px;}
.x33_c00425{left:687.858585px;}
.x3f_c00425{left:689.358435px;}
.x7b_c00425{left:690.462285px;}
.x4d_c00425{left:692.669985px;}
.x7f_c00425{left:697.803135px;}
.x40_c00425{left:701.134485px;}
.x26_c00425{left:711.014685px;}
.x56_c00425{left:712.024485px;}
.x6b_c00425{left:722.944185px;}
.x27_c00425{left:734.022285px;}
.x6c_c00425{left:736.190385px;}
.x89_c00425{left:739.407885px;}
.x65_c00425{left:744.649935px;}
.x6d_c00425{left:755.757735px;}
.x93_c00425{left:776.409135px;}
@media print{
.v1_c00425{vertical-align:-1.267200pt;}
.v0_c00425{vertical-align:0.000000pt;}
.ls42_c00425{letter-spacing:-2.858246pt;}
.ls38_c00425{letter-spacing:-2.414726pt;}
.ls24_c00425{letter-spacing:-2.359280pt;}
.lsd_c00425{letter-spacing:-2.205280pt;}
.ls23_c00425{letter-spacing:-2.168326pt;}
.ls26_c00425{letter-spacing:-2.014326pt;}
.ls15_c00425{letter-spacing:-1.995846pt;}
.ls27_c00425{letter-spacing:-1.965850pt;}
.ls43_c00425{letter-spacing:-1.952122pt;}
.ls3f_c00425{letter-spacing:-1.890240pt;}
.ls1d_c00425{letter-spacing:-1.752608pt;}
.ls2c_c00425{letter-spacing:-1.721069pt;}
.ls31_c00425{letter-spacing:-1.641165pt;}
.ls13_c00425{letter-spacing:-1.437286pt;}
.ls41_c00425{letter-spacing:-1.430728pt;}
.ls3a_c00425{letter-spacing:-1.375338pt;}
.ls3e_c00425{letter-spacing:-1.335770pt;}
.ls3d_c00425{letter-spacing:-0.554470pt;}
.lsb_c00425{letter-spacing:0.000000pt;}
.ls6_c00425{letter-spacing:0.075610pt;}
.ls29_c00425{letter-spacing:0.100813pt;}
.ls11_c00425{letter-spacing:0.403920pt;}
.ls20_c00425{letter-spacing:0.711990pt;}
.ls2f_c00425{letter-spacing:0.920571pt;}
.ls37_c00425{letter-spacing:1.100000pt;}
.ls1c_c00425{letter-spacing:1.159347pt;}
.ls17_c00425{letter-spacing:1.190851pt;}
.ls16_c00425{letter-spacing:1.682314pt;}
.ls2e_c00425{letter-spacing:1.971200pt;}
.ls1a_c00425{letter-spacing:2.035158pt;}
.ls25_c00425{letter-spacing:2.076800pt;}
.ls2b_c00425{letter-spacing:2.147200pt;}
.ls3c_c00425{letter-spacing:2.217609pt;}
.ls33_c00425{letter-spacing:2.270400pt;}
.ls35_c00425{letter-spacing:2.369101pt;}
.ls2a_c00425{letter-spacing:2.393609pt;}
.ls36_c00425{letter-spacing:2.622400pt;}
.ls1f_c00425{letter-spacing:2.728246pt;}
.ls12_c00425{letter-spacing:2.763200pt;}
.ls2d_c00425{letter-spacing:2.772000pt;}
.ls30_c00425{letter-spacing:2.789609pt;}
.ls5_c00425{letter-spacing:2.791254pt;}
.ls14_c00425{letter-spacing:2.807200pt;}
.ls2_c00425{letter-spacing:2.835360pt;}
.ls21_c00425{letter-spacing:2.885766pt;}
.ls1b_c00425{letter-spacing:3.000800pt;}
.ls8_c00425{letter-spacing:3.024384pt;}
.lsf_c00425{letter-spacing:3.027209pt;}
.ls18_c00425{letter-spacing:3.062400pt;}
.ls22_c00425{letter-spacing:3.088800pt;}
.lsc_c00425{letter-spacing:3.150400pt;}
.ls19_c00425{letter-spacing:3.168000pt;}
.ls40_c00425{letter-spacing:3.220800pt;}
.ls1e_c00425{letter-spacing:3.370400pt;}
.ls10_c00425{letter-spacing:3.379209pt;}
.ls39_c00425{letter-spacing:3.449609pt;}
.ls34_c00425{letter-spacing:3.625609pt;}
.ls1_c00425{letter-spacing:4.913920pt;}
.ls4_c00425{letter-spacing:5.796736pt;}
.ls7_c00425{letter-spacing:9.205797pt;}
.lsa_c00425{letter-spacing:11.470582pt;}
.ls0_c00425{letter-spacing:17.952000pt;}
.ls3_c00425{letter-spacing:21.422720pt;}
.lse_c00425{letter-spacing:44.352176pt;}
.ls28_c00425{letter-spacing:48.153776pt;}
.ls3b_c00425{letter-spacing:50.688176pt;}
.ls32_c00425{letter-spacing:53.222576pt;}
.ls9_c00425{letter-spacing:975.800320pt;}
.wse_c00425{word-spacing:-18.776384pt;}
.ws6_c00425{word-spacing:-18.637766pt;}
.ws4_c00425{word-spacing:-18.587360pt;}
.ws5_c00425{word-spacing:-16.463990pt;}
.ws7_c00425{word-spacing:-16.456044pt;}
.ws0_c00425{word-spacing:-15.752000pt;}
.wsf_c00425{word-spacing:-15.197530pt;}
.ws1_c00425{word-spacing:-9.826714pt;}
.ws8_c00425{word-spacing:-3.402432pt;}
.wsa_c00425{word-spacing:-1.953248pt;}
.ws3_c00425{word-spacing:-0.693088pt;}
.ws10_c00425{word-spacing:0.000000pt;}
.ws2_c00425{word-spacing:0.063008pt;}
.wsd_c00425{word-spacing:1.338106pt;}
.wsb_c00425{word-spacing:4.923494pt;}
.wsc_c00425{word-spacing:7.056896pt;}
.ws9_c00425{word-spacing:21.200801pt;}
._d_c00425{margin-left:-9.992576pt;}
._5_c00425{margin-left:-5.103648pt;}
._16_c00425{margin-left:-2.268288pt;}
._1f_c00425{margin-left:-1.259456pt;}
._4_c00425{width:1.701216pt;}
._11_c00425{width:3.339424pt;}
._2_c00425{width:5.271381pt;}
._8_c00425{width:7.056896pt;}
._0_c00425{width:8.758112pt;}
._12_c00425{width:10.396320pt;}
._13_c00425{width:11.530816pt;}
._a_c00425{width:12.727616pt;}
._7_c00425{width:13.798752pt;}
._1b_c00425{width:14.806880pt;}
._1d_c00425{width:17.407182pt;}
._21_c00425{width:19.468396pt;}
._6_c00425{width:21.422720pt;}
._b_c00425{width:22.785664pt;}
._17_c00425{width:25.455232pt;}
._15_c00425{width:27.030784pt;}
._3_c00425{width:28.842176pt;}
._19_c00425{width:30.117824pt;}
._1_c00425{width:31.275200pt;}
._f_c00425{width:33.089760pt;}
._c_c00425{width:34.843424pt;}
._1c_c00425{width:36.323373pt;}
._1a_c00425{width:37.822400pt;}
._9_c00425{width:38.812928pt;}
._10_c00425{width:39.838558pt;}
._18_c00425{width:41.081216pt;}
._14_c00425{width:43.032000pt;}
._1e_c00425{width:45.740718pt;}
._e_c00425{width:47.319008pt;}
._23_c00425{width:75.867870pt;}
._20_c00425{width:108.290590pt;}
._22_c00425{width:440.463232pt;}
.fs2b_c00425{font-size:19.712000pt;}
.fs0_c00425{font-size:19.888000pt;}
.fs22_c00425{font-size:22.000000pt;}
.fs28_c00425{font-size:30.272176pt;}
.fs1a_c00425{font-size:39.424000pt;}
.fs27_c00425{font-size:40.128000pt;}
.fs14_c00425{font-size:41.536000pt;}
.fs29_c00425{font-size:41.712176pt;}
.fs18_c00425{font-size:42.944000pt;}
.fs2_c00425{font-size:44.352176pt;}
.fs5_c00425{font-size:44.880000pt;}
.fs7_c00425{font-size:45.056000pt;}
.fs1e_c00425{font-size:45.408000pt;}
.fs16_c00425{font-size:47.872176pt;}
.fs15_c00425{font-size:48.153776pt;}
.fs20_c00425{font-size:50.336000pt;}
.fs25_c00425{font-size:50.688176pt;}
.fs21_c00425{font-size:52.448000pt;}
.fs1d_c00425{font-size:53.222576pt;}
.fs6_c00425{font-size:55.264000pt;}
.fs19_c00425{font-size:55.440000pt;}
.fs11_c00425{font-size:55.616000pt;}
.fs1b_c00425{font-size:55.792176pt;}
.fs8_c00425{font-size:56.144000pt;}
.fs17_c00425{font-size:56.320000pt;}
.fs9_c00425{font-size:57.024176pt;}
.fs13_c00425{font-size:57.552176pt;}
.fsc_c00425{font-size:60.016000pt;}
.fs3_c00425{font-size:60.544176pt;}
.fsa_c00425{font-size:61.248000pt;}
.fs10_c00425{font-size:61.776000pt;}
.fs12_c00425{font-size:61.952176pt;}
.fse_c00425{font-size:62.128000pt;}
.fs1_c00425{font-size:63.008000pt;}
.fsb_c00425{font-size:63.360000pt;}
.fs26_c00425{font-size:64.416000pt;}
.fsf_c00425{font-size:65.824176pt;}
.fs1c_c00425{font-size:66.176000pt;}
.fsd_c00425{font-size:67.408000pt;}
.fs4_c00425{font-size:67.584176pt;}
.fs24_c00425{font-size:68.992176pt;}
.fs23_c00425{font-size:70.400000pt;}
.fs1f_c00425{font-size:72.512176pt;}
.fs2a_c00425{font-size:81.664176pt;}
.y0_c00425{bottom:0.000000pt;}
.y1_c00425{bottom:68.000000pt;}
.y23_c00425{bottom:101.931320pt;}
.y21_c00425{bottom:125.691320pt;}
.y22_c00425{bottom:152.931720pt;}
.y20_c00425{bottom:175.428920pt;}
.y1f_c00425{bottom:175.745720pt;}
.y1e_c00425{bottom:182.081720pt;}
.y1d_c00425{bottom:210.593720pt;}
.y1c_c00425{bottom:238.788920pt;}
.y1b_c00425{bottom:268.246920pt;}
.y1a_c00425{bottom:290.427320pt;}
.y18_c00425{bottom:291.373320pt;}
.y15_c00425{bottom:296.442120pt;}
.y17_c00425{bottom:297.075720pt;}
.y19_c00425{bottom:297.713720pt;}
.y16_c00425{bottom:306.896520pt;}
.y14_c00425{bottom:321.473720pt;}
.y13_c00425{bottom:354.416520pt;}
.y12_c00425{bottom:383.883320pt;}
.y11_c00425{bottom:413.341320pt;}
.y10_c00425{bottom:442.808120pt;}
.yf_c00425{bottom:470.682120pt;}
.ye_c00425{bottom:498.877320pt;}
.yc_c00425{bottom:527.387560pt;}
.yd_c00425{bottom:527.393720pt;}
.yb_c00425{bottom:557.489720pt;}
.ya_c00425{bottom:586.635320pt;}
.y9_c00425{bottom:615.147320pt;}
.y8_c00425{bottom:672.488120pt;}
.y7_c00425{bottom:701.316920pt;}
.y6_c00425{bottom:731.091720pt;}
.y5_c00425{bottom:760.875320pt;}
.y4_c00425{bottom:790.016520pt;}
.y3_c00425{bottom:819.800120pt;}
.y2_c00425{bottom:985.482120pt;}
.h2_c00425{height:19.518984pt;}
.h2e_c00425{height:20.559000pt;}
.h26_c00425{height:22.945313pt;}
.h4_c00425{height:29.538549pt;}
.h17_c00425{height:32.070415pt;}
.h29_c00425{height:33.758325pt;}
.h1f_c00425{height:35.446236pt;}
.h16_c00425{height:40.765313pt;}
.h1c_c00425{height:41.118000pt;}
.h1a_c00425{height:42.147188pt;}
.h2a_c00425{height:43.529235pt;}
.h8_c00425{height:44.220000pt;}
.h20_c00425{height:44.565469pt;}
.h23_c00425{height:46.992000pt;}
.h18_c00425{height:49.929184pt;}
.h24_c00425{height:52.498875pt;}
.h7_c00425{height:54.238594pt;}
.h25_c00425{height:54.701625pt;}
.h19_c00425{height:55.275000pt;}
.h1b_c00425{height:57.822188pt;}
.h13_c00425{height:58.005750pt;}
.h1d_c00425{height:58.189496pt;}
.h9_c00425{height:58.556438pt;}
.he_c00425{height:58.902422pt;}
.hb_c00425{height:59.474434pt;}
.h15_c00425{height:60.025121pt;}
.hc_c00425{height:60.111562pt;}
.h12_c00425{height:60.629766pt;}
.h14_c00425{height:60.802673pt;}
.h10_c00425{height:60.975234pt;}
.h3_c00425{height:61.838906pt;}
.hd_c00425{height:62.184375pt;}
.h5_c00425{height:63.145684pt;}
.h2b_c00425{height:63.220781pt;}
.ha_c00425{height:63.500250pt;}
.h21_c00425{height:63.855000pt;}
.h11_c00425{height:64.602829pt;}
.h1e_c00425{height:64.948125pt;}
.h2c_c00425{height:66.082500pt;}
.hf_c00425{height:66.157266pt;}
.h28_c00425{height:67.712048pt;}
.h6_c00425{height:68.112177pt;}
.h27_c00425{height:70.950000pt;}
.h22_c00425{height:71.166735pt;}
.h2d_c00425{height:82.302177pt;}
.h1_c00425{height:986.666667pt;}
.h0_c00425{height:1122.666667pt;}
.w1_c00425{width:689.333333pt;}
.w0_c00425{width:793.333333pt;}
.x0_c00425{left:0.000000pt;}
.x1_c00425{left:52.000000pt;}
.x54_c00425{left:64.320653pt;}
.x3_c00425{left:65.222653pt;}
.x8e_c00425{left:66.164253pt;}
.x18_c00425{left:67.295053pt;}
.x5d_c00425{left:74.115053pt;}
.x71_c00425{left:75.267853pt;}
.x80_c00425{left:85.744253pt;}
.x28_c00425{left:86.853053pt;}
.x72_c00425{left:88.687853pt;}
.x66_c00425{left:93.923853pt;}
.x4_c00425{left:95.503453pt;}
.x29_c00425{left:97.043453pt;}
.x4e_c00425{left:102.899853pt;}
.x5e_c00425{left:103.854653pt;}
.x8a_c00425{left:104.937053pt;}
.x50_c00425{left:113.939453pt;}
.x2a_c00425{left:115.215453pt;}
.x73_c00425{left:122.880253pt;}
.x34_c00425{left:124.239853pt;}
.x5_c00425{left:125.678653pt;}
.x5f_c00425{left:132.428253pt;}
.x41_c00425{left:133.440253pt;}
.x2b_c00425{left:143.542653pt;}
.x6_c00425{left:144.607453pt;}
.x35_c00425{left:152.395453pt;}
.x81_c00425{left:153.825453pt;}
.x67_c00425{left:161.785053pt;}
.x7_c00425{left:163.100653pt;}
.x57_c00425{left:164.473453pt;}
.x42_c00425{left:172.191053pt;}
.x36_c00425{left:173.141453pt;}
.x2c_c00425{left:175.249053pt;}
.x43_c00425{left:182.742253pt;}
.x37_c00425{left:192.400253pt;}
.x8_c00425{left:193.381453pt;}
.x2d_c00425{left:202.458653pt;}
.x76_c00425{left:203.378253pt;}
.x60_c00425{left:210.655853pt;}
.x77_c00425{left:211.615053pt;}
.x9_c00425{left:212.719453pt;}
.x68_c00425{left:220.692253pt;}
.x19_c00425{left:221.994653pt;}
.x44_c00425{left:232.035453pt;}
.x2e_c00425{left:241.851853pt;}
.x1a_c00425{left:243.836253pt;}
.x6e_c00425{left:250.277853pt;}
.xa_c00425{left:251.210653pt;}
.x82_c00425{left:252.394253pt;}
.x83_c00425{left:259.429853pt;}
.x1b_c00425{left:261.313053pt;}
.xb_c00425{left:269.585053pt;}
.x58_c00425{left:270.715853pt;}
.xc_c00425{left:279.727053pt;}
.x38_c00425{left:281.302253pt;}
.xd_c00425{left:291.131853pt;}
.x45_c00425{left:298.409453pt;}
.x51_c00425{left:300.433453pt;}
.x84_c00425{left:302.149453pt;}
.x6f_c00425{left:308.863853pt;}
.xe_c00425{left:310.104653pt;}
.x1c_c00425{left:318.926653pt;}
.x39_c00425{left:320.365453pt;}
.xf_c00425{left:321.949453pt;}
.x46_c00425{left:329.865053pt;}
.x70_c00425{left:339.439453pt;}
.x85_c00425{left:341.450253pt;}
.x10_c00425{left:349.898253pt;}
.x1d_c00425{left:351.640653pt;}
.x78_c00425{left:353.858253pt;}
.x3a_c00425{left:359.028253pt;}
.x1e_c00425{left:365.892253pt;}
.x1f_c00425{left:369.060253pt;}
.x11_c00425{left:370.600253pt;}
.x47_c00425{left:377.292653pt;}
.x20_c00425{left:378.251853pt;}
.x59_c00425{left:379.211053pt;}
.x74_c00425{left:387.307053pt;}
.x21_c00425{left:389.018653pt;}
.x8b_c00425{left:397.215853pt;}
.x12_c00425{left:398.346653pt;}
.x22_c00425{left:406.759453pt;}
.x3b_c00425{left:408.488653pt;}
.x92_c00425{left:414.675053pt;}
.x48_c00425{left:417.315053pt;}
.x2f_c00425{left:418.309453pt;}
.x13_c00425{left:427.848653pt;}
.x61_c00425{left:438.241453pt;}
.x14_c00425{left:443.156253pt;}
.x23_c00425{left:446.953453pt;}
.x30_c00425{left:455.859053pt;}
.x49_c00425{left:457.592653pt;}
.x62_c00425{left:466.128653pt;}
.x4f_c00425{left:467.101053pt;}
.x8f_c00425{left:471.589053pt;}
.x24_c00425{left:476.244253pt;}
.x63_c00425{left:477.216653pt;}
.x79_c00425{left:480.573853pt;}
.x3c_c00425{left:485.757053pt;}
.x31_c00425{left:487.037453pt;}
.x8d_c00425{left:495.278653pt;}
.x55_c00425{left:496.255453pt;}
.x2_c00425{left:503.304253pt;}
.x15_c00425{left:505.108253pt;}
.x8c_c00425{left:506.032253pt;}
.x7e_c00425{left:512.610253pt;}
.x5a_c00425{left:515.267853pt;}
.x52_c00425{left:516.174253pt;}
.x3d_c00425{left:525.352653pt;}
.x7c_c00425{left:527.460253pt;}
.x86_c00425{left:529.044253pt;}
.x7d_c00425{left:534.429853pt;}
.x25_c00425{left:535.697053pt;}
.x4a_c00425{left:537.087453pt;}
.x16_c00425{left:545.051453pt;}
.x87_c00425{left:548.373453pt;}
.x64_c00425{left:554.674253pt;}
.x90_c00425{left:557.877453pt;}
.x88_c00425{left:558.827853pt;}
.x4b_c00425{left:560.763853pt;}
.x3e_c00425{left:564.499453pt;}
.x69_c00425{left:566.492653pt;}
.x5b_c00425{left:574.817453pt;}
.x4c_c00425{left:575.913053pt;}
.x32_c00425{left:584.009053pt;}
.x5c_c00425{left:590.169053pt;}
.x7a_c00425{left:592.892653pt;}
.x53_c00425{left:594.124653pt;}
.x91_c00425{left:601.463853pt;}
.x6a_c00425{left:602.365853pt;}
.x17_c00425{left:603.584653pt;}
.x75_c00425{left:606.255453pt;}
.x33_c00425{left:611.429853pt;}
.x3f_c00425{left:612.763053pt;}
.x7b_c00425{left:613.744253pt;}
.x4d_c00425{left:615.706653pt;}
.x7f_c00425{left:620.269453pt;}
.x40_c00425{left:623.230653pt;}
.x26_c00425{left:632.013053pt;}
.x56_c00425{left:632.910653pt;}
.x6b_c00425{left:642.617053pt;}
.x27_c00425{left:652.464253pt;}
.x6c_c00425{left:654.391453pt;}
.x89_c00425{left:657.251453pt;}
.x65_c00425{left:661.911053pt;}
.x6d_c00425{left:671.784653pt;}
.x93_c00425{left:690.141453pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8dd81819c6c94f7a595bfcdc.woff2')format("woff");}.ff1_c00426{font-family:ff1_c00426;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00426;src:url('chunks/assets/font_be640cab1bbf987fe0d46bea.woff2')format("woff");}.ff2_c00426{font-family:ff2_c00426;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00426;src:url('chunks/assets/font_19a1e789a2620798c738d46c.woff2')format("woff");}.ff3_c00426{font-family:ff3_c00426;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00426;src:url('chunks/assets/font_15033f4642d6f06a3c5c0e27.woff2')format("woff");}.ff4_c00426{font-family:ff4_c00426;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mc3_c00426{transform:matrix(0.048612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048612,0.000000,0.000000,0.250000,0,0);}
.mb7_c00426{transform:matrix(0.062501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062501,0.000000,0.000000,0.250000,0,0);}
.m26_c00426{transform:matrix(0.090278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090278,0.000000,0.000000,0.250000,0,0);}
.mc6_c00426{transform:matrix(0.122685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122685,0.000000,0.000000,0.250000,0,0);}
.m76_c00426{transform:matrix(0.131013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131013,0.000000,0.000000,0.250000,0,0);}
.mc5_c00426{transform:matrix(0.131944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131944,0.000000,0.000000,0.250000,0,0);}
.mb6_c00426{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m85_c00426{transform:matrix(0.143696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143696,0.000000,0.000000,0.250000,0,0);}
.mc4_c00426{transform:matrix(0.145834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145834,0.000000,0.000000,0.250000,0,0);}
.mbf_c00426{transform:matrix(0.156097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156097,0.000000,0.000000,0.250000,0,0);}
.m5f_c00426{transform:matrix(0.157340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157340,0.000000,0.000000,0.250000,0,0);}
.m3d_c00426{transform:matrix(0.169711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169711,0.000000,0.000000,0.250000,0,0);}
.m54_c00426{transform:matrix(0.171429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171429,0.000000,0.000000,0.250000,0,0);}
.m57_c00426{transform:matrix(0.172618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172618,0.000000,0.000000,0.250000,0,0);}
.m75_c00426{transform:matrix(0.176064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176064,0.000000,0.000000,0.250000,0,0);}
.mf_c00426{transform:matrix(0.177482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177482,0.000000,0.000000,0.250000,0,0);}
.m56_c00426{transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);}
.m25_c00426{transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);}
.m79_c00426{transform:matrix(0.184361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184361,0.000000,0.000000,0.250000,0,0);}
.m52_c00426{transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);}
.m53_c00426{transform:matrix(0.205357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205357,0.000000,0.000000,0.250000,0,0);}
.ma8_c00426{transform:matrix(0.205408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205408,0.000000,0.000000,0.250000,0,0);}
.m6c_c00426{transform:matrix(0.213417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213417,0.000000,0.000000,0.250000,0,0);}
.ma9_c00426{transform:matrix(0.214247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214247,0.000000,0.000000,0.250000,0,0);}
.m27_c00426{transform:matrix(0.217945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217945,0.000000,0.000000,0.250000,0,0);}
.ma6_c00426{transform:matrix(0.220734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220734,0.000000,0.000000,0.250000,0,0);}
.m55_c00426{transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);}
.m58_c00426{transform:matrix(0.225163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225163,0.000000,0.000000,0.250000,0,0);}
.mbe_c00426{transform:matrix(0.228618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228618,0.000000,0.000000,0.250000,0,0);}
.m62_c00426{transform:matrix(0.233091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233091,0.000000,0.000000,0.250000,0,0);}
.m14_c00426{transform:matrix(0.239526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239526,0.000000,0.000000,0.250000,0,0);}
.mad_c00426{transform:matrix(0.247963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247963,0.000000,0.000000,0.250000,0,0);}
.m1_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);}
.m37_c00426{transform:matrix(0.250710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250710,0.000000,0.000000,0.250000,0,0);}
.m21_c00426{transform:matrix(0.252560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252560,0.000000,0.000000,0.250000,0,0);}
.m9e_c00426{transform:matrix(0.252843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252843,0.000000,0.000000,0.250000,0,0);}
.m5c_c00426{transform:matrix(0.254442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254442,0.000000,0.000000,0.250000,0,0);}
.maf_c00426{transform:matrix(0.257035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257035,0.000000,0.000000,0.250000,0,0);}
.m8e_c00426{transform:matrix(0.260177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260177,0.000000,0.000000,0.250000,0,0);}
.mb1_c00426{transform:matrix(0.260631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260631,0.000000,0.000000,0.250000,0,0);}
.mbd_c00426{transform:matrix(0.260982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260982,0.000000,0.000000,0.250000,0,0);}
.m6f_c00426{transform:matrix(0.261724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261724,0.000000,0.000000,0.250000,0,0);}
.m7_c00426{transform:matrix(0.263290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263290,0.000000,0.000000,0.250000,0,0);}
.m8a_c00426{transform:matrix(0.265464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265464,0.000000,0.000000,0.250000,0,0);}
.m2d_c00426{transform:matrix(0.265643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265643,0.000000,0.000000,0.250000,0,0);}
.m19_c00426{transform:matrix(0.265726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265726,0.000000,0.000000,0.250000,0,0);}
.maa_c00426{transform:matrix(0.267041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267041,0.000000,0.000000,0.250000,0,0);}
.m3_c00426{transform:matrix(0.268257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268257,0.000000,0.000000,0.250000,0,0);}
.m7d_c00426{transform:matrix(0.270655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270655,0.000000,0.000000,0.250000,0,0);}
.m42_c00426{transform:matrix(0.270658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270658,0.000000,0.000000,0.250000,0,0);}
.m1d_c00426{transform:matrix(0.273226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273226,0.000000,0.000000,0.250000,0,0);}
.m0_c00426{transform:matrix(0.275057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275057,0.000000,0.000000,0.250000,0,0);}
.m6b_c00426{transform:matrix(0.275121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275121,0.000000,0.000000,0.250000,0,0);}
.m9_c00426{transform:matrix(0.275543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275543,0.000000,0.000000,0.250000,0,0);}
.mb2_c00426{transform:matrix(0.276013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276013,0.000000,0.000000,0.250000,0,0);}
.m5e_c00426{transform:matrix(0.276496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276496,0.000000,0.000000,0.250000,0,0);}
.m44_c00426{transform:matrix(0.276656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276656,0.000000,0.000000,0.250000,0,0);}
.m50_c00426{transform:matrix(0.277026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277026,0.000000,0.000000,0.250000,0,0);}
.m86_c00426{transform:matrix(0.277193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277193,0.000000,0.000000,0.250000,0,0);}
.ma1_c00426{transform:matrix(0.277612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277612,0.000000,0.000000,0.250000,0,0);}
.m60_c00426{transform:matrix(0.279516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279516,0.000000,0.000000,0.250000,0,0);}
.m5a_c00426{transform:matrix(0.279530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279530,0.000000,0.000000,0.250000,0,0);}
.m4b_c00426{transform:matrix(0.280064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280064,0.000000,0.000000,0.250000,0,0);}
.me_c00426{transform:matrix(0.280679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280679,0.000000,0.000000,0.250000,0,0);}
.m9b_c00426{transform:matrix(0.281445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281445,0.000000,0.000000,0.250000,0,0);}
.m3c_c00426{transform:matrix(0.282560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282560,0.000000,0.000000,0.250000,0,0);}
.m23_c00426{transform:matrix(0.282569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282569,0.000000,0.000000,0.250000,0,0);}
.mb8_c00426{transform:matrix(0.282605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282605,0.000000,0.000000,0.250000,0,0);}
.m32_c00426{transform:matrix(0.282935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282935,0.000000,0.000000,0.250000,0,0);}
.m18_c00426{transform:matrix(0.282940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282940,0.000000,0.000000,0.250000,0,0);}
.mb4_c00426{transform:matrix(0.283160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283160,0.000000,0.000000,0.250000,0,0);}
.md_c00426{transform:matrix(0.283328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283328,0.000000,0.000000,0.250000,0,0);}
.mc0_c00426{transform:matrix(0.283400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283400,0.000000,0.000000,0.250000,0,0);}
.m5d_c00426{transform:matrix(0.283630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283630,0.000000,0.000000,0.250000,0,0);}
.m88_c00426{transform:matrix(0.284268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284268,0.000000,0.000000,0.250000,0,0);}
.m9d_c00426{transform:matrix(0.285070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285070,0.000000,0.000000,0.250000,0,0);}
.mba_c00426{transform:matrix(0.285644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285644,0.000000,0.000000,0.250000,0,0);}
.m20_c00426{transform:matrix(0.285691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285691,0.000000,0.000000,0.250000,0,0);}
.m6e_c00426{transform:matrix(0.285780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285780,0.000000,0.000000,0.250000,0,0);}
.m38_c00426{transform:matrix(0.287527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287527,0.000000,0.000000,0.250000,0,0);}
.m16_c00426{transform:matrix(0.291040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291040,0.000000,0.000000,0.250000,0,0);}
.m72_c00426{transform:matrix(0.291244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291244,0.000000,0.000000,0.250000,0,0);}
.m24_c00426{transform:matrix(0.291499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291499,0.000000,0.000000,0.250000,0,0);}
.m22_c00426{transform:matrix(0.292066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292066,0.000000,0.000000,0.250000,0,0);}
.m1c_c00426{transform:matrix(0.292849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292849,0.000000,0.000000,0.250000,0,0);}
.m77_c00426{transform:matrix(0.293096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293096,0.000000,0.000000,0.250000,0,0);}
.mbc_c00426{transform:matrix(0.293617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293617,0.000000,0.000000,0.250000,0,0);}
.m63_c00426{transform:matrix(0.293676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293676,0.000000,0.000000,0.250000,0,0);}
.m9a_c00426{transform:matrix(0.294638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294638,0.000000,0.000000,0.250000,0,0);}
.m61_c00426{transform:matrix(0.294924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294924,0.000000,0.000000,0.250000,0,0);}
.m8c_c00426{transform:matrix(0.296152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296152,0.000000,0.000000,0.250000,0,0);}
.m2a_c00426{transform:matrix(0.296845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296845,0.000000,0.000000,0.250000,0,0);}
.m97_c00426{transform:matrix(0.297169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297169,0.000000,0.000000,0.250000,0,0);}
.m39_c00426{transform:matrix(0.298419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298419,0.000000,0.000000,0.250000,0,0);}
.m35_c00426{transform:matrix(0.298955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298955,0.000000,0.000000,0.250000,0,0);}
.m48_c00426{transform:matrix(0.299175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299175,0.000000,0.000000,0.250000,0,0);}
.m83_c00426{transform:matrix(0.299839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299839,0.000000,0.000000,0.250000,0,0);}
.m3f_c00426{transform:matrix(0.300513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300513,0.000000,0.000000,0.250000,0,0);}
.mc2_c00426{transform:matrix(0.301823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301823,0.000000,0.000000,0.250000,0,0);}
.m11_c00426{transform:matrix(0.302446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302446,0.000000,0.000000,0.250000,0,0);}
.m7c_c00426{transform:matrix(0.303238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303238,0.000000,0.000000,0.250000,0,0);}
.m2_c00426{transform:matrix(0.303946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303946,0.000000,0.000000,0.250000,0,0);}
.m40_c00426{transform:matrix(0.304162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304162,0.000000,0.000000,0.250000,0,0);}
.m2e_c00426{transform:matrix(0.304687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304687,0.000000,0.000000,0.250000,0,0);}
.m84_c00426{transform:matrix(0.305559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305559,0.000000,0.000000,0.250000,0,0);}
.mb9_c00426{transform:matrix(0.306101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306101,0.000000,0.000000,0.250000,0,0);}
.m46_c00426{transform:matrix(0.306597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306597,0.000000,0.000000,0.250000,0,0);}
.mbb_c00426{transform:matrix(0.307777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307777,0.000000,0.000000,0.250000,0,0);}
.m4f_c00426{transform:matrix(0.308430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308430,0.000000,0.000000,0.250000,0,0);}
.m7e_c00426{transform:matrix(0.309472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309472,0.000000,0.000000,0.250000,0,0);}
.m65_c00426{transform:matrix(0.312256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312256,0.000000,0.000000,0.250000,0,0);}
.mab_c00426{transform:matrix(0.312315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312315,0.000000,0.000000,0.250000,0,0);}
.ma0_c00426{transform:matrix(0.313509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313509,0.000000,0.000000,0.250000,0,0);}
.m15_c00426{transform:matrix(0.314477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314477,0.000000,0.000000,0.250000,0,0);}
.m95_c00426{transform:matrix(0.314725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314725,0.000000,0.000000,0.250000,0,0);}
.m17_c00426{transform:matrix(0.315210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315210,0.000000,0.000000,0.250000,0,0);}
.m80_c00426{transform:matrix(0.315441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315441,0.000000,0.000000,0.250000,0,0);}
.m8_c00426{transform:matrix(0.316681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316681,0.000000,0.000000,0.250000,0,0);}
.m74_c00426{transform:matrix(0.317591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317591,0.000000,0.000000,0.250000,0,0);}
.m70_c00426{transform:matrix(0.317736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317736,0.000000,0.000000,0.250000,0,0);}
.ma5_c00426{transform:matrix(0.318135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318135,0.000000,0.000000,0.250000,0,0);}
.m78_c00426{transform:matrix(0.318236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318236,0.000000,0.000000,0.250000,0,0);}
.m8d_c00426{transform:matrix(0.318585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318585,0.000000,0.000000,0.250000,0,0);}
.m92_c00426{transform:matrix(0.318845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318845,0.000000,0.000000,0.250000,0,0);}
.m31_c00426{transform:matrix(0.319371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319371,0.000000,0.000000,0.250000,0,0);}
.m2c_c00426{transform:matrix(0.319500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00426{transform:matrix(0.320397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320397,0.000000,0.000000,0.250000,0,0);}
.m59_c00426{transform:matrix(0.321160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321160,0.000000,0.000000,0.250000,0,0);}
.m7f_c00426{transform:matrix(0.323367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323367,0.000000,0.000000,0.250000,0,0);}
.m2b_c00426{transform:matrix(0.323538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323538,0.000000,0.000000,0.250000,0,0);}
.m4e_c00426{transform:matrix(0.324122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324122,0.000000,0.000000,0.250000,0,0);}
.m82_c00426{transform:matrix(0.324501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324501,0.000000,0.000000,0.250000,0,0);}
.ma_c00426{transform:matrix(0.325265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325265,0.000000,0.000000,0.250000,0,0);}
.mb_c00426{transform:matrix(0.325340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325340,0.000000,0.000000,0.250000,0,0);}
.m87_c00426{transform:matrix(0.326717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326717,0.000000,0.000000,0.250000,0,0);}
.m5b_c00426{transform:matrix(0.327101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327101,0.000000,0.000000,0.250000,0,0);}
.m36_c00426{transform:matrix(0.327204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327204,0.000000,0.000000,0.250000,0,0);}
.m4c_c00426{transform:matrix(0.327992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327992,0.000000,0.000000,0.250000,0,0);}
.m43_c00426{transform:matrix(0.330510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330510,0.000000,0.000000,0.250000,0,0);}
.m8b_c00426{transform:matrix(0.330878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330878,0.000000,0.000000,0.250000,0,0);}
.m81_c00426{transform:matrix(0.331143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331143,0.000000,0.000000,0.250000,0,0);}
.m4a_c00426{transform:matrix(0.331221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331221,0.000000,0.000000,0.250000,0,0);}
.m7b_c00426{transform:matrix(0.331378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331378,0.000000,0.000000,0.250000,0,0);}
.m51_c00426{transform:matrix(0.331507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331507,0.000000,0.000000,0.250000,0,0);}
.m69_c00426{transform:matrix(0.332204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332204,0.000000,0.000000,0.250000,0,0);}
.m13_c00426{transform:matrix(0.332614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332614,0.000000,0.000000,0.250000,0,0);}
.m45_c00426{transform:matrix(0.332767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332767,0.000000,0.000000,0.250000,0,0);}
.m1e_c00426{transform:matrix(0.334746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334746,0.000000,0.000000,0.250000,0,0);}
.m6a_c00426{transform:matrix(0.335201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335201,0.000000,0.000000,0.250000,0,0);}
.m47_c00426{transform:matrix(0.336097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336097,0.000000,0.000000,0.250000,0,0);}
.m89_c00426{transform:matrix(0.336528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336528,0.000000,0.000000,0.250000,0,0);}
.m93_c00426{transform:matrix(0.336586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336586,0.000000,0.000000,0.250000,0,0);}
.m8f_c00426{transform:matrix(0.336972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336972,0.000000,0.000000,0.250000,0,0);}
.m98_c00426{transform:matrix(0.338099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338099,0.000000,0.000000,0.250000,0,0);}
.ma2_c00426{transform:matrix(0.338465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338465,0.000000,0.000000,0.250000,0,0);}
.m3a_c00426{transform:matrix(0.339143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339143,0.000000,0.000000,0.250000,0,0);}
.m67_c00426{transform:matrix(0.341600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341600,0.000000,0.000000,0.250000,0,0);}
.m1a_c00426{transform:matrix(0.342070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342070,0.000000,0.000000,0.250000,0,0);}
.m9c_c00426{transform:matrix(0.342156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342156,0.000000,0.000000,0.250000,0,0);}
.m34_c00426{transform:matrix(0.342830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342830,0.000000,0.000000,0.250000,0,0);}
.m6d_c00426{transform:matrix(0.343086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343086,0.000000,0.000000,0.250000,0,0);}
.ma3_c00426{transform:matrix(0.343551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343551,0.000000,0.000000,0.250000,0,0);}
.m28_c00426{transform:matrix(0.343733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343733,0.000000,0.000000,0.250000,0,0);}
.m41_c00426{transform:matrix(0.343958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343958,0.000000,0.000000,0.250000,0,0);}
.mc1_c00426{transform:matrix(0.344194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344194,0.000000,0.000000,0.250000,0,0);}
.m12_c00426{transform:matrix(0.344200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344200,0.000000,0.000000,0.250000,0,0);}
.mb5_c00426{transform:matrix(0.344448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344448,0.000000,0.000000,0.250000,0,0);}
.m2f_c00426{transform:matrix(0.345090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345090,0.000000,0.000000,0.250000,0,0);}
.m6_c00426{transform:matrix(0.347173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347173,0.000000,0.000000,0.250000,0,0);}
.m64_c00426{transform:matrix(0.347982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347982,0.000000,0.000000,0.250000,0,0);}
.m9f_c00426{transform:matrix(0.348145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348145,0.000000,0.000000,0.250000,0,0);}
.m71_c00426{transform:matrix(0.348263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348263,0.000000,0.000000,0.250000,0,0);}
.m66_c00426{transform:matrix(0.348559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348559,0.000000,0.000000,0.250000,0,0);}
.m3e_c00426{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);}
.mb0_c00426{transform:matrix(0.350172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350172,0.000000,0.000000,0.250000,0,0);}
.mae_c00426{transform:matrix(0.350823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350823,0.000000,0.000000,0.250000,0,0);}
.m5_c00426{transform:matrix(0.351103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351103,0.000000,0.000000,0.250000,0,0);}
.m30_c00426{transform:matrix(0.353314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353314,0.000000,0.000000,0.250000,0,0);}
.mc_c00426{transform:matrix(0.355471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355471,0.000000,0.000000,0.250000,0,0);}
.m4_c00426{transform:matrix(0.358315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358315,0.000000,0.000000,0.250000,0,0);}
.m33_c00426{transform:matrix(0.359496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359496,0.000000,0.000000,0.250000,0,0);}
.m68_c00426{transform:matrix(0.360068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360068,0.000000,0.000000,0.250000,0,0);}
.m90_c00426{transform:matrix(0.361934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361934,0.000000,0.000000,0.250000,0,0);}
.m7a_c00426{transform:matrix(0.362528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362528,0.000000,0.000000,0.250000,0,0);}
.m3b_c00426{transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);}
.m49_c00426{transform:matrix(0.368397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368397,0.000000,0.000000,0.250000,0,0);}
.ma4_c00426{transform:matrix(0.368561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368561,0.000000,0.000000,0.250000,0,0);}
.m99_c00426{transform:matrix(0.372403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372403,0.000000,0.000000,0.250000,0,0);}
.m94_c00426{transform:matrix(0.374860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374860,0.000000,0.000000,0.250000,0,0);}
.m29_c00426{transform:matrix(0.375075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375075,0.000000,0.000000,0.250000,0,0);}
.m73_c00426{transform:matrix(0.377112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377112,0.000000,0.000000,0.250000,0,0);}
.m10_c00426{transform:matrix(0.383298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383298,0.000000,0.000000,0.250000,0,0);}
.m1f_c00426{transform:matrix(0.392317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392317,0.000000,0.000000,0.250000,0,0);}
.m1b_c00426{transform:matrix(0.399295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399295,0.000000,0.000000,0.250000,0,0);}
.m4d_c00426{transform:matrix(0.401336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401336,0.000000,0.000000,0.250000,0,0);}
.m91_c00426{transform:matrix(0.405231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405231,0.000000,0.000000,0.250000,0,0);}
.m96_c00426{transform:matrix(0.407901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407901,0.000000,0.000000,0.250000,0,0);}
.mb3_c00426{transform:matrix(0.421479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421479,0.000000,0.000000,0.250000,0,0);}
.mac_c00426{transform:matrix(0.430111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430111,0.000000,0.000000,0.250000,0,0);}
.v0_c00426{vertical-align:0.000000px;}
.v1_c00426{vertical-align:7.128000px;}
.ls18_c00426{letter-spacing:-2.730427px;}
.lsa_c00426{letter-spacing:-2.557177px;}
.lse_c00426{letter-spacing:-2.389134px;}
.lsd_c00426{letter-spacing:-2.286900px;}
.ls15_c00426{letter-spacing:-1.487792px;}
.ls1b_c00426{letter-spacing:-1.037483px;}
.ls8_c00426{letter-spacing:-0.423761px;}
.ls9_c00426{letter-spacing:0.000000px;}
.ls14_c00426{letter-spacing:0.094981px;}
.ls20_c00426{letter-spacing:0.525947px;}
.ls17_c00426{letter-spacing:0.677934px;}
.ls13_c00426{letter-spacing:1.052096px;}
.ls19_c00426{letter-spacing:1.629287px;}
.ls0_c00426{letter-spacing:2.023823px;}
.ls4_c00426{letter-spacing:2.211264px;}
.ls16_c00426{letter-spacing:2.504700px;}
.ls5_c00426{letter-spacing:2.506033px;}
.ls1c_c00426{letter-spacing:2.574000px;}
.ls1d_c00426{letter-spacing:3.009600px;}
.ls3_c00426{letter-spacing:3.265880px;}
.ls1a_c00426{letter-spacing:3.419311px;}
.lsc_c00426{letter-spacing:3.484810px;}
.ls10_c00426{letter-spacing:3.564000px;}
.ls12_c00426{letter-spacing:3.583810px;}
.ls1f_c00426{letter-spacing:3.603610px;}
.ls7_c00426{letter-spacing:3.653110px;}
.ls11_c00426{letter-spacing:3.702610px;}
.ls2_c00426{letter-spacing:7.160208px;}
.ls6_c00426{letter-spacing:19.840788px;}
.ls1_c00426{letter-spacing:20.490228px;}
.lsf_c00426{letter-spacing:49.896198px;}
.lsb_c00426{letter-spacing:51.321798px;}
.ls1e_c00426{letter-spacing:57.024198px;}
.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;}
}
.wsa_c00426{word-spacing:-20.771583px;}
.ws5_c00426{word-spacing:-20.289372px;}
.ws2_c00426{word-spacing:-19.815840px;}
.ws3_c00426{word-spacing:-19.317645px;}
.ws4_c00426{word-spacing:-18.360530px;}
.ws0_c00426{word-spacing:-18.265550px;}
.ws8_c00426{word-spacing:-16.733376px;}
.ws1_c00426{word-spacing:-2.703245px;}
.wsb_c00426{word-spacing:0.000000px;}
.ws6_c00426{word-spacing:4.996618px;}
.ws9_c00426{word-spacing:10.374699px;}
.ws7_c00426{word-spacing:10.740207px;}
._19_c00426{margin-left:-16.219907px;}
._3_c00426{margin-left:-10.447030px;}
._1d_c00426{margin-left:-4.383732px;}
._a_c00426{width:1.242153px;}
._18_c00426{width:3.257501px;}
._7_c00426{width:5.625081px;}
._f_c00426{width:6.720824px;}
._6_c00426{width:8.254719px;}
._e_c00426{width:10.009406px;}
._8_c00426{width:11.836143px;}
._0_c00426{width:13.297383px;}
._c_c00426{width:15.635983px;}
._b_c00426{width:19.726641px;}
._15_c00426{width:21.481944px;}
._2_c00426{width:22.795267px;}
._5_c00426{width:25.133669px;}
._13_c00426{width:26.521649px;}
._1b_c00426{width:28.128837px;}
._11_c00426{width:29.744413px;}
._10_c00426{width:31.636863px;}
._1_c00426{width:33.462457px;}
._12_c00426{width:34.969435px;}
._14_c00426{width:36.196442px;}
._17_c00426{width:37.820635px;}
._16_c00426{width:38.900117px;}
._9_c00426{width:40.216457px;}
._1c_c00426{width:44.275891px;}
._d_c00426{width:46.048359px;}
._1a_c00426{width:48.965499px;}
._4_c00426{width:51.216555px;}
.fc0_c00426{color:transparent;}
.fsd_c00426{font-size:20.394000px;}
.fse_c00426{font-size:22.176000px;}
.fsc_c00426{font-size:47.322000px;}
.fs4_c00426{font-size:49.896198px;}
.fs9_c00426{font-size:50.094000px;}
.fs1_c00426{font-size:51.321798px;}
.fsf_c00426{font-size:51.480000px;}
.fs14_c00426{font-size:52.074000px;}
.fs12_c00426{font-size:57.024198px;}
.fs10_c00426{font-size:60.192000px;}
.fs3_c00426{font-size:65.340000px;}
.fsa_c00426{font-size:67.122198px;}
.fs2_c00426{font-size:69.696198px;}
.fs5_c00426{font-size:70.884000px;}
.fs6_c00426{font-size:71.280000px;}
.fs8_c00426{font-size:71.676198px;}
.fs13_c00426{font-size:72.072198px;}
.fs0_c00426{font-size:73.062198px;}
.fs7_c00426{font-size:74.052198px;}
.fsb_c00426{font-size:78.012198px;}
.fs11_c00426{font-size:93.456198px;}
.y0_c00426{bottom:0.000000px;}
.y1_c00426{bottom:76.500000px;}
.y17_c00426{bottom:128.572335px;}
.y16_c00426{bottom:162.068985px;}
.y14_c00426{bottom:199.852335px;}
.y13_c00426{bottom:232.992585px;}
.y15_c00426{bottom:250.099785px;}
.y12_c00426{bottom:267.919785px;}
.y11_c00426{bottom:289.308735px;}
.y10_c00426{bottom:303.559785px;}
.yf_c00426{bottom:355.242735px;}
.ye_c00426{bottom:368.429535px;}
.yd_c00426{bottom:401.931135px;}
.yc_c00426{bottom:434.358585px;}
.yb_c00426{bottom:530.591535px;}
.ya_c00426{bottom:692.748585px;}
.y9_c00426{bottom:726.611535px;}
.y8_c00426{bottom:760.113135px;}
.y6_c00426{bottom:792.538605px;}
.y7_c00426{bottom:792.540585px;}
.y5_c00426{bottom:825.690735px;}
.y4_c00426{bottom:858.123135px;}
.y3_c00426{bottom:891.268335px;}
.y2_c00426{bottom:924.764985px;}
.hd_c00426{height:21.270305px;}
.he_c00426{height:23.128875px;}
.h6_c00426{height:33.230868px;}
.h3_c00426{height:34.180317px;}
.h12_c00426{height:37.978116px;}
.ha_c00426{height:49.164521px;}
.hf_c00426{height:50.524805px;}
.h10_c00426{height:62.778375px;}
.h5_c00426{height:64.127637px;}
.hb_c00426{height:65.876767px;}
.h9_c00426{height:70.346269px;}
.h2_c00426{height:71.706552px;}
.h8_c00426{height:72.678183px;}
.h4_c00426{height:72.690957px;}
.h7_c00426{height:74.342813px;}
.h13_c00426{height:75.169050px;}
.hc_c00426{height:81.364285px;}
.h11_c00426{height:97.471894px;}
.h1_c00426{height:1110.000000px;}
.h0_c00426{height:1263.000000px;}
.w1_c00426{width:775.500000px;}
.w0_c00426{width:892.500000px;}
.x0_c00426{left:0.000000px;}
.x1_c00426{left:58.500000px;}
.x2_c00426{left:80.483685px;}
.x65_c00426{left:82.562685px;}
.x33_c00426{left:92.477535px;}
.x3_c00426{left:102.585435px;}
.x18_c00426{left:104.897085px;}
.x56_c00426{left:113.767485px;}
.x7c_c00426{left:114.831735px;}
.x34_c00426{left:123.969435px;}
.x19_c00426{left:125.107935px;}
.x4_c00426{left:126.112785px;}
.x58_c00426{left:134.012985px;}
.x4e_c00426{left:135.537585px;}
.x1a_c00426{left:136.953285px;}
.x7d_c00426{left:145.704885px;}
.x35_c00426{left:146.912685px;}
.x81_c00426{left:156.030585px;}
.x5_c00426{left:158.762985px;}
.x6e_c00426{left:166.801785px;}
.x46_c00426{left:168.177885px;}
.x1b_c00426{left:169.796535px;}
.x5d_c00426{left:178.335285px;}
.x4f_c00426{left:190.046985px;}
.x1c_c00426{left:191.853735px;}
.x66_c00426{left:200.813235px;}
.x57_c00426{left:202.070535px;}
.x6_c00426{left:203.283285px;}
.x47_c00426{left:212.203185px;}
.x1d_c00426{left:214.024785px;}
.x7e_c00426{left:222.558585px;}
.x50_c00426{left:223.895085px;}
.x7_c00426{left:225.003885px;}
.x29_c00426{left:234.493035px;}
.x36_c00426{left:237.774885px;}
.x3f_c00426{left:245.694885px;}
.x59_c00426{left:256.213635px;}
.x6f_c00426{left:266.544285px;}
.x2a_c00426{left:267.964935px;}
.x1e_c00426{left:268.999485px;}
.x67_c00426{left:270.340935px;}
.x40_c00426{left:278.354985px;}
.x8_c00426{left:280.206285px;}
.x37_c00426{left:287.596635px;}
.x82_c00426{left:288.997485px;}
.x41_c00426{left:290.056785px;}
.x5a_c00426{left:298.288635px;}
.x48_c00426{left:300.248835px;}
.x2b_c00426{left:301.674435px;}
.x8b_c00426{left:311.138835px;}
.x42_c00426{left:312.282285px;}
.x9_c00426{left:313.336635px;}
.x5b_c00426{left:321.068535px;}
.x38_c00426{left:322.855485px;}
.x1f_c00426{left:324.097935px;}
.x79_c00426{left:333.596985px;}
.x75_c00426{left:335.215635px;}
.x5e_c00426{left:343.501935px;}
.xa_c00426{left:345.308685px;}
.x78_c00426{left:348.461835px;}
.x49_c00426{left:355.273035px;}
.xb_c00426{left:356.475885px;}
.x68_c00426{left:367.212435px;}
.x8c_c00426{left:377.384685px;}
.xc_c00426{left:378.805335px;}
.x2c_c00426{left:389.195385px;}
.xd_c00426{left:390.398235px;}
.x5f_c00426{left:399.466635px;}
.x39_c00426{left:400.743735px;}
.x20_c00426{left:402.010935px;}
.x86_c00426{left:410.524935px;}
.xe_c00426{left:411.752535px;}
.x69_c00426{left:421.914885px;}
.x4a_c00426{left:423.122685px;}
.x5c_c00426{left:432.497985px;}
.x21_c00426{left:433.854285px;}
.x8d_c00426{left:440.670435px;}
.x70_c00426{left:441.917835px;}
.xf_c00426{left:443.655285px;}
.x2d_c00426{left:445.259085px;}
.x87_c00426{left:454.560135px;}
.x22_c00426{left:455.956035px;}
.x7a_c00426{left:465.915435px;}
.x10_c00426{left:467.380635px;}
.x2e_c00426{left:476.449035px;}
.x11_c00426{left:477.711285px;}
.x76_c00426{left:478.726035px;}
.x60_c00426{left:486.898485px;}
.x51_c00426{left:488.254785px;}
.x7b_c00426{left:498.040935px;}
.x23_c00426{left:499.857585px;}
.x6a_c00426{left:509.510085px;}
.x2f_c00426{left:510.851535px;}
.x61_c00426{left:519.573435px;}
.x4b_c00426{left:521.206935px;}
.x12_c00426{left:522.276135px;}
.x62_c00426{left:530.305035px;}
.x13_c00426{left:543.427485px;}
.x63_c00426{left:553.282935px;}
.x52_c00426{left:555.257985px;}
.x14_c00426{left:564.479835px;}
.x24_c00426{left:565.717335px;}
.x53_c00426{left:575.577735px;}
.x4c_c00426{left:576.805335px;}
.x74_c00426{left:584.487735px;}
.x3a_c00426{left:587.131035px;}
.x71_c00426{left:596.758785px;}
.x25_c00426{left:598.436835px;}
.x54_c00426{left:599.456535px;}
.x77_c00426{left:608.515035px;}
.x15_c00426{left:609.915885px;}
.x6b_c00426{left:619.241685px;}
.x3b_c00426{left:620.414835px;}
.x26_c00426{left:632.042385px;}
.x6c_c00426{left:638.507085px;}
.x16_c00426{left:642.244335px;}
.x72_c00426{left:645.640035px;}
.x73_c00426{left:649.887135px;}
.x7f_c00426{left:652.426485px;}
.x27_c00426{left:653.758035px;}
.x3c_c00426{left:664.638135px;}
.x88_c00426{left:666.454785px;}
.x43_c00426{left:675.146985px;}
.x64_c00426{left:684.596535px;}
.x30_c00426{left:686.210235px;}
.x44_c00426{left:687.353685px;}
.x8e_c00426{left:689.982135px;}
.x6d_c00426{left:695.877585px;}
.x55_c00426{left:698.134785px;}
.x8f_c00426{left:706.727985px;}
.x28_c00426{left:708.277335px;}
.x4d_c00426{left:710.579085px;}
.x80_c00426{left:712.321485px;}
.x3d_c00426{left:719.127735px;}
.x31_c00426{left:720.271185px;}
.x17_c00426{left:721.404735px;}
.x89_c00426{left:729.275235px;}
.x45_c00426{left:730.388985px;}
.x83_c00426{left:731.854185px;}
.x32_c00426{left:741.298785px;}
.x84_c00426{left:745.189485px;}
.x3e_c00426{left:752.485785px;}
.x85_c00426{left:760.405785px;}
.x8a_c00426{left:764.172735px;}
@media print{
.v0_c00426{vertical-align:0.000000pt;}
.v1_c00426{vertical-align:6.336000pt;}
.ls18_c00426{letter-spacing:-2.427046pt;}
.lsa_c00426{letter-spacing:-2.273046pt;}
.lse_c00426{letter-spacing:-2.123675pt;}
.lsd_c00426{letter-spacing:-2.032800pt;}
.ls15_c00426{letter-spacing:-1.322482pt;}
.ls1b_c00426{letter-spacing:-0.922207pt;}
.ls8_c00426{letter-spacing:-0.376676pt;}
.ls9_c00426{letter-spacing:0.000000pt;}
.ls14_c00426{letter-spacing:0.084427pt;}
.ls20_c00426{letter-spacing:0.467509pt;}
.ls17_c00426{letter-spacing:0.602608pt;}
.ls13_c00426{letter-spacing:0.935196pt;}
.ls19_c00426{letter-spacing:1.448255pt;}
.ls0_c00426{letter-spacing:1.798954pt;}
.ls4_c00426{letter-spacing:1.965568pt;}
.ls16_c00426{letter-spacing:2.226400pt;}
.ls5_c00426{letter-spacing:2.227585pt;}
.ls1c_c00426{letter-spacing:2.288000pt;}
.ls1d_c00426{letter-spacing:2.675200pt;}
.ls3_c00426{letter-spacing:2.903005pt;}
.ls1a_c00426{letter-spacing:3.039387pt;}
.lsc_c00426{letter-spacing:3.097609pt;}
.ls10_c00426{letter-spacing:3.168000pt;}
.ls12_c00426{letter-spacing:3.185609pt;}
.ls1f_c00426{letter-spacing:3.203209pt;}
.ls7_c00426{letter-spacing:3.247209pt;}
.ls11_c00426{letter-spacing:3.291209pt;}
.ls2_c00426{letter-spacing:6.364629pt;}
.ls6_c00426{letter-spacing:17.636256pt;}
.ls1_c00426{letter-spacing:18.213536pt;}
.lsf_c00426{letter-spacing:44.352176pt;}
.lsb_c00426{letter-spacing:45.619376pt;}
.ls1e_c00426{letter-spacing:50.688176pt;}
.wsa_c00426{word-spacing:-18.463629pt;}
.ws5_c00426{word-spacing:-18.034998pt;}
.ws2_c00426{word-spacing:-17.614080pt;}
.ws3_c00426{word-spacing:-17.171240pt;}
.ws4_c00426{word-spacing:-16.320471pt;}
.ws0_c00426{word-spacing:-16.236044pt;}
.ws8_c00426{word-spacing:-14.874112pt;}
.ws1_c00426{word-spacing:-2.402884pt;}
.wsb_c00426{word-spacing:0.000000pt;}
.ws6_c00426{word-spacing:4.441438pt;}
.ws9_c00426{word-spacing:9.221955pt;}
.ws7_c00426{word-spacing:9.546851pt;}
._19_c00426{margin-left:-14.417695pt;}
._3_c00426{margin-left:-9.286249pt;}
._1d_c00426{margin-left:-3.896651pt;}
._a_c00426{width:1.104136pt;}
._18_c00426{width:2.895556pt;}
._7_c00426{width:5.000072pt;}
._f_c00426{width:5.974066pt;}
._6_c00426{width:7.337528pt;}
._e_c00426{width:8.897250pt;}
._8_c00426{width:10.521016pt;}
._0_c00426{width:11.819896pt;}
._c_c00426{width:13.898652pt;}
._b_c00426{width:17.534792pt;}
._15_c00426{width:19.095061pt;}
._2_c00426{width:20.262460pt;}
._5_c00426{width:22.341039pt;}
._13_c00426{width:23.574799pt;}
._1b_c00426{width:25.003411pt;}
._11_c00426{width:26.439478pt;}
._10_c00426{width:28.121656pt;}
._1_c00426{width:29.744406pt;}
._12_c00426{width:31.083942pt;}
._14_c00426{width:32.174615pt;}
._17_c00426{width:33.618342pt;}
._16_c00426{width:34.577882pt;}
._9_c00426{width:35.747961pt;}
._1c_c00426{width:39.356348pt;}
._d_c00426{width:40.931875pt;}
._1a_c00426{width:43.524888pt;}
._4_c00426{width:45.525827pt;}
.fsd_c00426{font-size:18.128000pt;}
.fse_c00426{font-size:19.712000pt;}
.fsc_c00426{font-size:42.064000pt;}
.fs4_c00426{font-size:44.352176pt;}
.fs9_c00426{font-size:44.528000pt;}
.fs1_c00426{font-size:45.619376pt;}
.fsf_c00426{font-size:45.760000pt;}
.fs14_c00426{font-size:46.288000pt;}
.fs12_c00426{font-size:50.688176pt;}
.fs10_c00426{font-size:53.504000pt;}
.fs3_c00426{font-size:58.080000pt;}
.fsa_c00426{font-size:59.664176pt;}
.fs2_c00426{font-size:61.952176pt;}
.fs5_c00426{font-size:63.008000pt;}
.fs6_c00426{font-size:63.360000pt;}
.fs8_c00426{font-size:63.712176pt;}
.fs13_c00426{font-size:64.064176pt;}
.fs0_c00426{font-size:64.944176pt;}
.fs7_c00426{font-size:65.824176pt;}
.fsb_c00426{font-size:69.344176pt;}
.fs11_c00426{font-size:83.072176pt;}
.y0_c00426{bottom:0.000000pt;}
.y1_c00426{bottom:68.000000pt;}
.y17_c00426{bottom:114.286520pt;}
.y16_c00426{bottom:144.061320pt;}
.y14_c00426{bottom:177.646520pt;}
.y13_c00426{bottom:207.104520pt;}
.y15_c00426{bottom:222.310920pt;}
.y12_c00426{bottom:238.150920pt;}
.y11_c00426{bottom:257.163320pt;}
.y10_c00426{bottom:269.830920pt;}
.yf_c00426{bottom:315.771320pt;}
.ye_c00426{bottom:327.492920pt;}
.yd_c00426{bottom:357.272120pt;}
.yc_c00426{bottom:386.096520pt;}
.yb_c00426{bottom:471.636920pt;}
.ya_c00426{bottom:615.776520pt;}
.y9_c00426{bottom:645.876920pt;}
.y8_c00426{bottom:675.656120pt;}
.y6_c00426{bottom:704.478760pt;}
.y7_c00426{bottom:704.480520pt;}
.y5_c00426{bottom:733.947320pt;}
.y4_c00426{bottom:762.776120pt;}
.y3_c00426{bottom:792.238520pt;}
.y2_c00426{bottom:822.013320pt;}
.hd_c00426{height:18.906938pt;}
.he_c00426{height:20.559000pt;}
.h6_c00426{height:29.538549pt;}
.h3_c00426{height:30.382504pt;}
.h12_c00426{height:33.758325pt;}
.ha_c00426{height:43.701797pt;}
.hf_c00426{height:44.910938pt;}
.h10_c00426{height:55.803000pt;}
.h5_c00426{height:57.002344pt;}
.hb_c00426{height:58.557126pt;}
.h9_c00426{height:62.530016pt;}
.h2_c00426{height:63.739157pt;}
.h8_c00426{height:64.602829pt;}
.h4_c00426{height:64.614184pt;}
.h7_c00426{height:66.082500pt;}
.h13_c00426{height:66.816934pt;}
.hc_c00426{height:72.323809pt;}
.h11_c00426{height:86.641684pt;}
.h1_c00426{height:986.666667pt;}
.h0_c00426{height:1122.666667pt;}
.w1_c00426{width:689.333333pt;}
.w0_c00426{width:793.333333pt;}
.x0_c00426{left:0.000000pt;}
.x1_c00426{left:52.000000pt;}
.x2_c00426{left:71.541053pt;}
.x65_c00426{left:73.389053pt;}
.x33_c00426{left:82.202253pt;}
.x3_c00426{left:91.187053pt;}
.x18_c00426{left:93.241853pt;}
.x56_c00426{left:101.126653pt;}
.x7c_c00426{left:102.072653pt;}
.x34_c00426{left:110.195053pt;}
.x19_c00426{left:111.207053pt;}
.x4_c00426{left:112.100253pt;}
.x58_c00426{left:119.122653pt;}
.x4e_c00426{left:120.477853pt;}
.x1a_c00426{left:121.736253pt;}
.x7d_c00426{left:129.515453pt;}
.x35_c00426{left:130.589053pt;}
.x81_c00426{left:138.693853pt;}
.x5_c00426{left:141.122653pt;}
.x6e_c00426{left:148.268253pt;}
.x46_c00426{left:149.491453pt;}
.x1b_c00426{left:150.930253pt;}
.x5d_c00426{left:158.520253pt;}
.x4f_c00426{left:168.930653pt;}
.x1c_c00426{left:170.536653pt;}
.x66_c00426{left:178.500653pt;}
.x57_c00426{left:179.618253pt;}
.x6_c00426{left:180.696253pt;}
.x47_c00426{left:188.625053pt;}
.x1d_c00426{left:190.244253pt;}
.x7e_c00426{left:197.829853pt;}
.x50_c00426{left:199.017853pt;}
.x7_c00426{left:200.003453pt;}
.x29_c00426{left:208.438253pt;}
.x36_c00426{left:211.355453pt;}
.x3f_c00426{left:218.395453pt;}
.x59_c00426{left:227.745453pt;}
.x6f_c00426{left:236.928253pt;}
.x2a_c00426{left:238.191053pt;}
.x1e_c00426{left:239.110653pt;}
.x67_c00426{left:240.303053pt;}
.x40_c00426{left:247.426653pt;}
.x8_c00426{left:249.072253pt;}
.x37_c00426{left:255.641453pt;}
.x82_c00426{left:256.886653pt;}
.x41_c00426{left:257.828253pt;}
.x5a_c00426{left:265.145453pt;}
.x48_c00426{left:266.887853pt;}
.x2b_c00426{left:268.155053pt;}
.x8b_c00426{left:276.567853pt;}
.x42_c00426{left:277.584253pt;}
.x9_c00426{left:278.521453pt;}
.x5b_c00426{left:285.394253pt;}
.x38_c00426{left:286.982653pt;}
.x1f_c00426{left:288.087053pt;}
.x79_c00426{left:296.530653pt;}
.x75_c00426{left:297.969453pt;}
.x5e_c00426{left:305.335053pt;}
.xa_c00426{left:306.941053pt;}
.x78_c00426{left:309.743853pt;}
.x49_c00426{left:315.798253pt;}
.xb_c00426{left:316.867453pt;}
.x68_c00426{left:326.411053pt;}
.x8c_c00426{left:335.453053pt;}
.xc_c00426{left:336.715853pt;}
.x2c_c00426{left:345.951453pt;}
.xd_c00426{left:347.020653pt;}
.x5f_c00426{left:355.081453pt;}
.x39_c00426{left:356.216653pt;}
.x20_c00426{left:357.343053pt;}
.x86_c00426{left:364.911053pt;}
.xe_c00426{left:366.002253pt;}
.x69_c00426{left:375.035453pt;}
.x4a_c00426{left:376.109053pt;}
.x5c_c00426{left:384.442653pt;}
.x21_c00426{left:385.648253pt;}
.x8d_c00426{left:391.707053pt;}
.x70_c00426{left:392.815853pt;}
.xf_c00426{left:394.360253pt;}
.x2d_c00426{left:395.785853pt;}
.x87_c00426{left:404.053453pt;}
.x22_c00426{left:405.294253pt;}
.x7a_c00426{left:414.147053pt;}
.x10_c00426{left:415.449453pt;}
.x2e_c00426{left:423.510253pt;}
.x11_c00426{left:424.632253pt;}
.x76_c00426{left:425.534253pt;}
.x60_c00426{left:432.798653pt;}
.x51_c00426{left:434.004253pt;}
.x7b_c00426{left:442.703053pt;}
.x23_c00426{left:444.317853pt;}
.x6a_c00426{left:452.897853pt;}
.x2f_c00426{left:454.090253pt;}
.x61_c00426{left:461.843053pt;}
.x4b_c00426{left:463.295053pt;}
.x12_c00426{left:464.245453pt;}
.x62_c00426{left:471.382253pt;}
.x13_c00426{left:483.046653pt;}
.x63_c00426{left:491.807053pt;}
.x52_c00426{left:493.562653pt;}
.x14_c00426{left:501.759853pt;}
.x24_c00426{left:502.859853pt;}
.x53_c00426{left:511.624653pt;}
.x4c_c00426{left:512.715853pt;}
.x74_c00426{left:519.544653pt;}
.x3a_c00426{left:521.894253pt;}
.x71_c00426{left:530.452253pt;}
.x25_c00426{left:531.943853pt;}
.x54_c00426{left:532.850253pt;}
.x77_c00426{left:540.902253pt;}
.x15_c00426{left:542.147453pt;}
.x6b_c00426{left:550.437053pt;}
.x3b_c00426{left:551.479853pt;}
.x26_c00426{left:561.815453pt;}
.x6c_c00426{left:567.561853pt;}
.x16_c00426{left:570.883853pt;}
.x72_c00426{left:573.902253pt;}
.x73_c00426{left:577.677453pt;}
.x7f_c00426{left:579.934653pt;}
.x27_c00426{left:581.118253pt;}
.x3c_c00426{left:590.789453pt;}
.x88_c00426{left:592.404253pt;}
.x43_c00426{left:600.130653pt;}
.x64_c00426{left:608.530253pt;}
.x30_c00426{left:609.964653pt;}
.x44_c00426{left:610.981053pt;}
.x8e_c00426{left:613.317453pt;}
.x6d_c00426{left:618.557853pt;}
.x55_c00426{left:620.564253pt;}
.x8f_c00426{left:628.202653pt;}
.x28_c00426{left:629.579853pt;}
.x4d_c00426{left:631.625853pt;}
.x80_c00426{left:633.174653pt;}
.x3d_c00426{left:639.224653pt;}
.x31_c00426{left:640.241053pt;}
.x17_c00426{left:641.248653pt;}
.x89_c00426{left:648.244653pt;}
.x45_c00426{left:649.234653pt;}
.x83_c00426{left:650.537053pt;}
.x32_c00426{left:658.932253pt;}
.x84_c00426{left:662.390653pt;}
.x3e_c00426{left:668.876253pt;}
.x85_c00426{left:675.916253pt;}
.x8a_c00426{left:679.264653pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bc8ca806e0456bdc008b353d.woff2')format("woff");}.ff1_c00427{font-family:ff1_c00427;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00427;src:url('chunks/assets/font_2a5bbb5f327305b954a67c90.woff2')format("woff");}.ff2_c00427{font-family:ff2_c00427;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00427;src:url('chunks/assets/font_63f55a22ed8d921aa683854b.woff2')format("woff");}.ff3_c00427{font-family:ff3_c00427;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00427;src:url('chunks/assets/font_b16d24f2d73348382dadedd3.woff2')format("woff");}.ff4_c00427{font-family:ff4_c00427;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00427;src:url('chunks/assets/font_c855d06ba6864be1262a83b0.woff2')format("woff");}.ff5_c00427{font-family:ff5_c00427;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00427;src:url('chunks/assets/font_7c593ff8c9d599227c86c3a5.woff2')format("woff");}.ff6_c00427{font-family:ff6_c00427;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00427;src:url('chunks/assets/font_87a6dafd374ea137a98cc943.woff2')format("woff");}.ff7_c00427{font-family:ff7_c00427;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1f_c00427{transform:matrix(0.031251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.031251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.031251,0.000000,0.000000,0.250000,0,0);}
.m67_c00427{transform:matrix(0.051516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.051516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.051516,0.000000,0.000000,0.250000,0,0);}
.m68_c00427{transform:matrix(0.054545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054545,0.000000,0.000000,0.250000,0,0);}
.m8c_c00427{transform:matrix(0.073864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073864,0.000000,0.000000,0.250000,0,0);}
.m1d_c00427{transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);}
.m62_c00427{transform:matrix(0.086363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086363,0.000000,0.000000,0.250000,0,0);}
.m8d_c00427{transform:matrix(0.096592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096592,0.000000,0.000000,0.250000,0,0);}
.m69_c00427{transform:matrix(0.097728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097728,0.000000,0.000000,0.250000,0,0);}
.m7e_c00427{transform:matrix(0.100806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100806,0.000000,0.000000,0.250000,0,0);}
.m8b_c00427{transform:matrix(0.102273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102273,0.000000,0.000000,0.250000,0,0);}
.m7d_c00427{transform:matrix(0.110887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110887,0.000000,0.000000,0.250000,0,0);}
.m7f_c00427{transform:matrix(0.112903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112903,0.000000,0.000000,0.250000,0,0);}
.m71_c00427{transform:matrix(0.113247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113247,0.000000,0.000000,0.250000,0,0);}
.m85_c00427{transform:matrix(0.116477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116477,0.000000,0.000000,0.250000,0,0);}
.m79_c00427{transform:matrix(0.120967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120967,0.000000,0.000000,0.250000,0,0);}
.m6a_c00427{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);}
.m78_c00427{transform:matrix(0.132560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132560,0.000000,0.000000,0.250000,0,0);}
.m8e_c00427{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);}
.m8a_c00427{transform:matrix(0.142045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142045,0.000000,0.000000,0.250000,0,0);}
.m88_c00427{transform:matrix(0.144256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144256,0.000000,0.000000,0.250000,0,0);}
.m63_c00427{transform:matrix(0.146952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146952,0.000000,0.000000,0.250000,0,0);}
.m1e_c00427{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m73_c00427{transform:matrix(0.153846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153846,0.000000,0.000000,0.250000,0,0);}
.m20_c00427{transform:matrix(0.156249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156249,0.000000,0.000000,0.250000,0,0);}
.m82_c00427{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);}
.m89_c00427{transform:matrix(0.161933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161933,0.000000,0.000000,0.250000,0,0);}
.m76_c00427{transform:matrix(0.164835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164835,0.000000,0.000000,0.250000,0,0);}
.m81_c00427{transform:matrix(0.170455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170455,0.000000,0.000000,0.250000,0,0);}
.m84_c00427{transform:matrix(0.172079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172079,0.000000,0.000000,0.250000,0,0);}
.m21_c00427{transform:matrix(0.178125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178125,0.000000,0.000000,0.250000,0,0);}
.m11_c00427{transform:matrix(0.179563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179563,0.000000,0.000000,0.250000,0,0);}
.m13_c00427{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m77_c00427{transform:matrix(0.192307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192307,0.000000,0.000000,0.250000,0,0);}
.m72_c00427{transform:matrix(0.194139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194139,0.000000,0.000000,0.250000,0,0);}
.m12_c00427{transform:matrix(0.204861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204861,0.000000,0.000000,0.250000,0,0);}
.m98_c00427{transform:matrix(0.206789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206789,0.000000,0.000000,0.250000,0,0);}
.m60_c00427{transform:matrix(0.222627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222627,0.000000,0.000000,0.250000,0,0);}
.m3c_c00427{transform:matrix(0.226257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226257,0.000000,0.000000,0.250000,0,0);}
.m5e_c00427{transform:matrix(0.228816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228816,0.000000,0.000000,0.250000,0,0);}
.m9f_c00427{transform:matrix(0.230492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230492,0.000000,0.000000,0.250000,0,0);}
.m2a_c00427{transform:matrix(0.231018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231018,0.000000,0.000000,0.250000,0,0);}
.m5d_c00427{transform:matrix(0.234017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234017,0.000000,0.000000,0.250000,0,0);}
.m65_c00427{transform:matrix(0.240956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240956,0.000000,0.000000,0.250000,0,0);}
.m23_c00427{transform:matrix(0.242599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242599,0.000000,0.000000,0.250000,0,0);}
.m5f_c00427{transform:matrix(0.248219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248219,0.000000,0.000000,0.250000,0,0);}
.m1_c00427{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m14_c00427{transform:matrix(0.250600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250600,0.000000,0.000000,0.250000,0,0);}
.m30_c00427{transform:matrix(0.251690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251690,0.000000,0.000000,0.250000,0,0);}
.m4e_c00427{transform:matrix(0.251959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251959,0.000000,0.000000,0.250000,0,0);}
.m6b_c00427{transform:matrix(0.252025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252025,0.000000,0.000000,0.250000,0,0);}
.m22_c00427{transform:matrix(0.252196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252196,0.000000,0.000000,0.250000,0,0);}
.m6f_c00427{transform:matrix(0.254631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254631,0.000000,0.000000,0.250000,0,0);}
.m3b_c00427{transform:matrix(0.255114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255114,0.000000,0.000000,0.250000,0,0);}
.ma3_c00427{transform:matrix(0.255454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255454,0.000000,0.000000,0.250000,0,0);}
.mb_c00427{transform:matrix(0.257714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257714,0.000000,0.000000,0.250000,0,0);}
.m6c_c00427{transform:matrix(0.257939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257939,0.000000,0.000000,0.250000,0,0);}
.m96_c00427{transform:matrix(0.258596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258596,0.000000,0.000000,0.250000,0,0);}
.m64_c00427{transform:matrix(0.264412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264412,0.000000,0.000000,0.250000,0,0);}
.m83_c00427{transform:matrix(0.265152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265152,0.000000,0.000000,0.250000,0,0);}
.m2b_c00427{transform:matrix(0.265449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265449,0.000000,0.000000,0.250000,0,0);}
.m51_c00427{transform:matrix(0.267002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267002,0.000000,0.000000,0.250000,0,0);}
.ma8_c00427{transform:matrix(0.267821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267821,0.000000,0.000000,0.250000,0,0);}
.m9e_c00427{transform:matrix(0.267904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267904,0.000000,0.000000,0.250000,0,0);}
.m47_c00427{transform:matrix(0.268064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268064,0.000000,0.000000,0.250000,0,0);}
.m9d_c00427{transform:matrix(0.268444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268444,0.000000,0.000000,0.250000,0,0);}
.ma_c00427{transform:matrix(0.271261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271261,0.000000,0.000000,0.250000,0,0);}
.m97_c00427{transform:matrix(0.272751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272751,0.000000,0.000000,0.250000,0,0);}
.m53_c00427{transform:matrix(0.272874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272874,0.000000,0.000000,0.250000,0,0);}
.m9a_c00427{transform:matrix(0.274931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274931,0.000000,0.000000,0.250000,0,0);}
.m61_c00427{transform:matrix(0.276802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276802,0.000000,0.000000,0.250000,0,0);}
.m25_c00427{transform:matrix(0.277928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277928,0.000000,0.000000,0.250000,0,0);}
.m5b_c00427{transform:matrix(0.280949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280949,0.000000,0.000000,0.250000,0,0);}
.m45_c00427{transform:matrix(0.281958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281958,0.000000,0.000000,0.250000,0,0);}
.m9_c00427{transform:matrix(0.282079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282079,0.000000,0.000000,0.250000,0,0);}
.m4a_c00427{transform:matrix(0.282981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282981,0.000000,0.000000,0.250000,0,0);}
.m2_c00427{transform:matrix(0.283849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283849,0.000000,0.000000,0.250000,0,0);}
.md_c00427{transform:matrix(0.284178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284178,0.000000,0.000000,0.250000,0,0);}
.m94_c00427{transform:matrix(0.284682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284682,0.000000,0.000000,0.250000,0,0);}
.m7_c00427{transform:matrix(0.284887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284887,0.000000,0.000000,0.250000,0,0);}
.ma6_c00427{transform:matrix(0.288034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288034,0.000000,0.000000,0.250000,0,0);}
.mab_c00427{transform:matrix(0.288542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288542,0.000000,0.000000,0.250000,0,0);}
.m50_c00427{transform:matrix(0.288660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288660,0.000000,0.000000,0.250000,0,0);}
.m92_c00427{transform:matrix(0.289101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289101,0.000000,0.000000,0.250000,0,0);}
.m9c_c00427{transform:matrix(0.289619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289619,0.000000,0.000000,0.250000,0,0);}
.m99_c00427{transform:matrix(0.289686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289686,0.000000,0.000000,0.250000,0,0);}
.m86_c00427{transform:matrix(0.289729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289729,0.000000,0.000000,0.250000,0,0);}
.m35_c00427{transform:matrix(0.289885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289885,0.000000,0.000000,0.250000,0,0);}
.m46_c00427{transform:matrix(0.290642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290642,0.000000,0.000000,0.250000,0,0);}
.m39_c00427{transform:matrix(0.291659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291659,0.000000,0.000000,0.250000,0,0);}
.m87_c00427{transform:matrix(0.292760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292760,0.000000,0.000000,0.250000,0,0);}
.m24_c00427{transform:matrix(0.292779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292779,0.000000,0.000000,0.250000,0,0);}
.m28_c00427{transform:matrix(0.293633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293633,0.000000,0.000000,0.250000,0,0);}
.m0_c00427{transform:matrix(0.294196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294196,0.000000,0.000000,0.250000,0,0);}
.m26_c00427{transform:matrix(0.294460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294460,0.000000,0.000000,0.250000,0,0);}
.m3d_c00427{transform:matrix(0.294657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294657,0.000000,0.000000,0.250000,0,0);}
.m2c_c00427{transform:matrix(0.294884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294884,0.000000,0.000000,0.250000,0,0);}
.m18_c00427{transform:matrix(0.294911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294911,0.000000,0.000000,0.250000,0,0);}
.mc_c00427{transform:matrix(0.296568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296568,0.000000,0.000000,0.250000,0,0);}
.m3f_c00427{transform:matrix(0.296595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296595,0.000000,0.000000,0.250000,0,0);}
.m29_c00427{transform:matrix(0.297342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297342,0.000000,0.000000,0.250000,0,0);}
.m90_c00427{transform:matrix(0.298154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298154,0.000000,0.000000,0.250000,0,0);}
.m42_c00427{transform:matrix(0.299030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299030,0.000000,0.000000,0.250000,0,0);}
.m44_c00427{transform:matrix(0.299202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299202,0.000000,0.000000,0.250000,0,0);}
.m4d_c00427{transform:matrix(0.299279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299279,0.000000,0.000000,0.250000,0,0);}
.m10_c00427{transform:matrix(0.299580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299580,0.000000,0.000000,0.250000,0,0);}
.ma9_c00427{transform:matrix(0.300367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300367,0.000000,0.000000,0.250000,0,0);}
.m31_c00427{transform:matrix(0.301078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301078,0.000000,0.000000,0.250000,0,0);}
.m4_c00427{transform:matrix(0.301406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301406,0.000000,0.000000,0.250000,0,0);}
.m2f_c00427{transform:matrix(0.302715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302715,0.000000,0.000000,0.250000,0,0);}
.m6e_c00427{transform:matrix(0.304624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304624,0.000000,0.000000,0.250000,0,0);}
.m2e_c00427{transform:matrix(0.306102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306102,0.000000,0.000000,0.250000,0,0);}
.ma1_c00427{transform:matrix(0.307520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307520,0.000000,0.000000,0.250000,0,0);}
.m37_c00427{transform:matrix(0.307915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307915,0.000000,0.000000,0.250000,0,0);}
.m57_c00427{transform:matrix(0.308551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308551,0.000000,0.000000,0.250000,0,0);}
.m7a_c00427{transform:matrix(0.310301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310301,0.000000,0.000000,0.250000,0,0);}
.m52_c00427{transform:matrix(0.310473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310473,0.000000,0.000000,0.250000,0,0);}
.m5a_c00427{transform:matrix(0.311699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311699,0.000000,0.000000,0.250000,0,0);}
.m41_c00427{transform:matrix(0.315294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315294,0.000000,0.000000,0.250000,0,0);}
.m49_c00427{transform:matrix(0.316359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316359,0.000000,0.000000,0.250000,0,0);}
.m1a_c00427{transform:matrix(0.317158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317158,0.000000,0.000000,0.250000,0,0);}
.m6d_c00427{transform:matrix(0.319107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319107,0.000000,0.000000,0.250000,0,0);}
.ma0_c00427{transform:matrix(0.319278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319278,0.000000,0.000000,0.250000,0,0);}
.m9b_c00427{transform:matrix(0.321459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321459,0.000000,0.000000,0.250000,0,0);}
.maa_c00427{transform:matrix(0.324192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324192,0.000000,0.000000,0.250000,0,0);}
.m70_c00427{transform:matrix(0.324980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324980,0.000000,0.000000,0.250000,0,0);}
.m43_c00427{transform:matrix(0.325156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325156,0.000000,0.000000,0.250000,0,0);}
.m6_c00427{transform:matrix(0.325255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325255,0.000000,0.000000,0.250000,0,0);}
.m3a_c00427{transform:matrix(0.326555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326555,0.000000,0.000000,0.250000,0,0);}
.m56_c00427{transform:matrix(0.327199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327199,0.000000,0.000000,0.250000,0,0);}
.m58_c00427{transform:matrix(0.329941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329941,0.000000,0.000000,0.250000,0,0);}
.m4c_c00427{transform:matrix(0.331462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331462,0.000000,0.000000,0.250000,0,0);}
.mf_c00427{transform:matrix(0.331915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331915,0.000000,0.000000,0.250000,0,0);}
.m74_c00427{transform:matrix(0.332201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332201,0.000000,0.000000,0.250000,0,0);}
.m91_c00427{transform:matrix(0.333220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333220,0.000000,0.000000,0.250000,0,0);}
.ma5_c00427{transform:matrix(0.333872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333872,0.000000,0.000000,0.250000,0,0);}
.m34_c00427{transform:matrix(0.333971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333971,0.000000,0.000000,0.250000,0,0);}
.m36_c00427{transform:matrix(0.334225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334225,0.000000,0.000000,0.250000,0,0);}
.m55_c00427{transform:matrix(0.336138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336138,0.000000,0.000000,0.250000,0,0);}
.m5c_c00427{transform:matrix(0.337935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337935,0.000000,0.000000,0.250000,0,0);}
.m40_c00427{transform:matrix(0.338158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338158,0.000000,0.000000,0.250000,0,0);}
.m4b_c00427{transform:matrix(0.338210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338210,0.000000,0.000000,0.250000,0,0);}
.m8f_c00427{transform:matrix(0.338575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338575,0.000000,0.000000,0.250000,0,0);}
.m1c_c00427{transform:matrix(0.339615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339615,0.000000,0.000000,0.250000,0,0);}
.m1b_c00427{transform:matrix(0.340576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340576,0.000000,0.000000,0.250000,0,0);}
.m5_c00427{transform:matrix(0.341240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341240,0.000000,0.000000,0.250000,0,0);}
.m48_c00427{transform:matrix(0.345899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345899,0.000000,0.000000,0.250000,0,0);}
.m32_c00427{transform:matrix(0.347427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347427,0.000000,0.000000,0.250000,0,0);}
.mac_c00427{transform:matrix(0.347567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347567,0.000000,0.000000,0.250000,0,0);}
.m2d_c00427{transform:matrix(0.351417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351417,0.000000,0.000000,0.250000,0,0);}
.m3_c00427{transform:matrix(0.352612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352612,0.000000,0.000000,0.250000,0,0);}
.m95_c00427{transform:matrix(0.353405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353405,0.000000,0.000000,0.250000,0,0);}
.m54_c00427{transform:matrix(0.353982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353982,0.000000,0.000000,0.250000,0,0);}
.m3e_c00427{transform:matrix(0.354641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354641,0.000000,0.000000,0.250000,0,0);}
.m93_c00427{transform:matrix(0.354726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354726,0.000000,0.000000,0.250000,0,0);}
.ma7_c00427{transform:matrix(0.354753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354753,0.000000,0.000000,0.250000,0,0);}
.m16_c00427{transform:matrix(0.354953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354953,0.000000,0.000000,0.250000,0,0);}
.m19_c00427{transform:matrix(0.358193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358193,0.000000,0.000000,0.250000,0,0);}
.m8_c00427{transform:matrix(0.365168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365168,0.000000,0.000000,0.250000,0,0);}
.m38_c00427{transform:matrix(0.365176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365176,0.000000,0.000000,0.250000,0,0);}
.m33_c00427{transform:matrix(0.366923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366923,0.000000,0.000000,0.250000,0,0);}
.m59_c00427{transform:matrix(0.367098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367098,0.000000,0.000000,0.250000,0,0);}
.m7c_c00427{transform:matrix(0.375630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375630,0.000000,0.000000,0.250000,0,0);}
.m75_c00427{transform:matrix(0.377352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377352,0.000000,0.000000,0.250000,0,0);}
.m7b_c00427{transform:matrix(0.384450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384450,0.000000,0.000000,0.250000,0,0);}
.m27_c00427{transform:matrix(0.386380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386380,0.000000,0.000000,0.250000,0,0);}
.ma2_c00427{transform:matrix(0.390966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390966,0.000000,0.000000,0.250000,0,0);}
.m66_c00427{transform:matrix(0.392936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392936,0.000000,0.000000,0.250000,0,0);}
.m4f_c00427{transform:matrix(0.395114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395114,0.000000,0.000000,0.250000,0,0);}
.m17_c00427{transform:matrix(0.408881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408881,0.000000,0.000000,0.250000,0,0);}
.ma4_c00427{transform:matrix(0.416484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416484,0.000000,0.000000,0.250000,0,0);}
.me_c00427{transform:matrix(0.426256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426256,0.000000,0.000000,0.250000,0,0);}
.m80_c00427{transform:matrix(0.427419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427419,0.000000,0.000000,0.250000,0,0);}
.m15_c00427{transform:matrix(0.443406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443406,0.000000,0.000000,0.250000,0,0);}
.v0_c00427{vertical-align:0.000000px;}
.ls19_c00427{letter-spacing:-2.966040px;}
.lsa_c00427{letter-spacing:-2.610115px;}
.lsf_c00427{letter-spacing:-2.536380px;}
.lsd_c00427{letter-spacing:-2.515590px;}
.ls1a_c00427{letter-spacing:-2.314627px;}
.ls10_c00427{letter-spacing:-1.205586px;}
.ls7_c00427{letter-spacing:-1.158854px;}
.lse_c00427{letter-spacing:-0.949331px;}
.ls25_c00427{letter-spacing:-0.934837px;}
.ls4_c00427{letter-spacing:0.000000px;}
.ls1d_c00427{letter-spacing:1.183766px;}
.ls17_c00427{letter-spacing:1.587049px;}
.ls18_c00427{letter-spacing:1.990579px;}
.ls9_c00427{letter-spacing:2.415600px;}
.ls24_c00427{letter-spacing:2.455200px;}
.ls20_c00427{letter-spacing:2.480077px;}
.ls6_c00427{letter-spacing:2.692810px;}
.ls15_c00427{letter-spacing:2.851200px;}
.ls1f_c00427{letter-spacing:3.035468px;}
.ls2_c00427{letter-spacing:3.188592px;}
.ls1b_c00427{letter-spacing:3.306610px;}
.ls11_c00427{letter-spacing:3.405610px;}
.ls1_c00427{letter-spacing:3.413243px;}
.ls14_c00427{letter-spacing:3.544200px;}
.lsc_c00427{letter-spacing:3.593700px;}
.ls16_c00427{letter-spacing:3.603610px;}
.ls5_c00427{letter-spacing:3.623400px;}
.ls3_c00427{letter-spacing:3.702610px;}
.ls13_c00427{letter-spacing:3.841200px;}
.ls12_c00427{letter-spacing:3.920400px;}
.ls0_c00427{letter-spacing:20.218176px;}
.ls8_c00427{letter-spacing:51.321798px;}
.ls21_c00427{letter-spacing:55.598598px;}
.lsb_c00427{letter-spacing:57.024198px;}
.ls23_c00427{letter-spacing:62.726400px;}
.ls1e_c00427{letter-spacing:68.428998px;}
.ls1c_c00427{letter-spacing:78.408198px;}
.ls22_c00427{letter-spacing:88.387398px;}
.sc__c00427{text-shadow:none;}
.sc0_c00427{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00427{-webkit-text-stroke:0px transparent;}
.sc0_c00427{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00427{word-spacing:-21.530243px;}
.ws8_c00427{word-spacing:-21.305592px;}
.ws2_c00427{word-spacing:-18.117000px;}
.wsa_c00427{word-spacing:-17.182163px;}
.ws1_c00427{word-spacing:-17.167669px;}
.ws6_c00427{word-spacing:-16.533050px;}
.ws7_c00427{word-spacing:-3.913272px;}
.ws9_c00427{word-spacing:-3.115332px;}
.ws3_c00427{word-spacing:-2.486343px;}
.ws4_c00427{word-spacing:-0.797148px;}
.wsb_c00427{word-spacing:0.000000px;}
.ws5_c00427{word-spacing:3.623796px;}
._13_c00427{margin-left:-8.729567px;}
._b_c00427{margin-left:-5.652504px;}
._12_c00427{margin-left:-3.405639px;}
._16_c00427{margin-left:-1.884168px;}
._6_c00427{width:2.391444px;}
._a_c00427{width:6.087312px;}
._10_c00427{width:7.174332px;}
._7_c00427{width:8.840700px;}
._9_c00427{width:10.196248px;}
._e_c00427{width:12.174624px;}
._5_c00427{width:13.551516px;}
._c_c00427{width:14.928408px;}
._8_c00427{width:16.885044px;}
._1_c00427{width:22.465080px;}
._3_c00427{width:24.269731px;}
._14_c00427{width:25.364196px;}
._0_c00427{width:26.718952px;}
._15_c00427{width:33.015708px;}
._2_c00427{width:35.439624px;}
._4_c00427{width:38.118168px;}
._f_c00427{width:42.288800px;}
._d_c00427{width:47.505348px;}
._11_c00427{width:99.765072px;}
.fc0_c00427{color:transparent;}
.fs19_c00427{font-size:28.314000px;}
.fs5_c00427{font-size:48.312000px;}
.fs3_c00427{font-size:49.104000px;}
.fs4_c00427{font-size:51.321798px;}
.fs2_c00427{font-size:53.856198px;}
.fs16_c00427{font-size:55.598598px;}
.fse_c00427{font-size:57.024000px;}
.fs7_c00427{font-size:57.024198px;}
.fs15_c00427{font-size:60.786198px;}
.fs18_c00427{font-size:62.726400px;}
.fs11_c00427{font-size:65.538000px;}
.fs10_c00427{font-size:66.132198px;}
.fsa_c00427{font-size:66.330000px;}
.fs14_c00427{font-size:67.320000px;}
.fs9_c00427{font-size:68.112198px;}
.fs13_c00427{font-size:68.428998px;}
.fsd_c00427{font-size:70.884000px;}
.fs8_c00427{font-size:71.874000px;}
.fsf_c00427{font-size:72.072198px;}
.fs1_c00427{font-size:72.468000px;}
.fs0_c00427{font-size:74.052198px;}
.fsc_c00427{font-size:76.824000px;}
.fsb_c00427{font-size:78.408000px;}
.fs12_c00427{font-size:78.408198px;}
.fs6_c00427{font-size:84.744000px;}
.fs17_c00427{font-size:88.387398px;}
.y0_c00427{bottom:0.000000px;}
.y1_c00427{bottom:76.500000px;}
.y18_c00427{bottom:139.977135px;}
.y17_c00427{bottom:170.266185px;}
.y19_c00427{bottom:225.508185px;}
.y16_c00427{bottom:237.630735px;}
.y15_c00427{bottom:269.701785px;}
.y14_c00427{bottom:301.064985px;}
.y13_c00427{bottom:334.210185px;}
.y12_c00427{bottom:399.436335px;}
.y11_c00427{bottom:432.576585px;}
.y10_c00427{bottom:453.960585px;}
.yf_c00427{bottom:464.657535px;}
.yd_c00427{bottom:528.096735px;}
.yc_c00427{bottom:528.453135px;}
.ye_c00427{bottom:529.160985px;}
.yb_c00427{bottom:594.382185px;}
.ya_c00427{bottom:627.170985px;}
.y9_c00427{bottom:660.677535px;}
.y8_c00427{bottom:693.817785px;}
.y7_c00427{bottom:758.687535px;}
.y6_c00427{bottom:790.758585px;}
.y5_c00427{bottom:822.839535px;}
.y4_c00427{bottom:854.915535px;}
.y3_c00427{bottom:887.704335px;}
.y2_c00427{bottom:923.344335px;}
.h1c_c00427{height:29.530617px;}
.h5_c00427{height:34.180317px;}
.h18_c00427{height:37.028666px;}
.h8_c00427{height:37.978116px;}
.h1a_c00427{height:41.775782px;}
.h16_c00427{height:45.573713px;}
.h6_c00427{height:47.415586px;}
.h1b_c00427{height:51.213938px;}
.h13_c00427{height:52.219860px;}
.h4_c00427{height:52.856913px;}
.hf_c00427{height:55.965938px;}
.h19_c00427{height:58.866007px;}
.h17_c00427{height:63.398105px;}
.h11_c00427{height:64.905136px;}
.hb_c00427{height:65.099268px;}
.h14_c00427{height:66.648856px;}
.ha_c00427{height:66.848397px;}
.he_c00427{height:69.568770px;}
.h9_c00427{height:70.540400px;}
.h10_c00427{height:70.734921px;}
.h3_c00427{height:71.123379px;}
.h2_c00427{height:74.630731px;}
.hd_c00427{height:75.398555px;}
.hc_c00427{height:76.914879px;}
.h15_c00427{height:81.777094px;}
.h12_c00427{height:83.171602px;}
.h7_c00427{height:85.406063px;}
.h1_c00427{height:1110.000000px;}
.h0_c00427{height:1263.000000px;}
.w1_c00427{width:775.500000px;}
.w0_c00427{width:892.500000px;}
.x0_c00427{left:0.000000px;}
.x1_c00427{left:58.500000px;}
.x2_c00427{left:83.938785px;}
.x24_c00427{left:85.121835px;}
.x38_c00427{left:86.314785px;}
.x16_c00427{left:106.297935px;}
.x45_c00427{left:116.296935px;}
.x39_c00427{left:117.549285px;}
.x17_c00427{left:128.132385px;}
.x6e_c00427{left:137.448285px;}
.x25_c00427{left:138.750135px;}
.x3_c00427{left:140.898435px;}
.x6b_c00427{left:146.892885px;}
.x4_c00427{left:149.551035px;}
.x73_c00427{left:158.738235px;}
.x3a_c00427{left:159.941085px;}
.x65_c00427{left:163.222935px;}
.x58_c00427{left:170.157885px;}
.x46_c00427{left:171.187485px;}
.x3e_c00427{left:172.816035px;}
.x2f_c00427{left:181.572585px;}
.x5f_c00427{left:184.958385px;}
.x74_c00427{left:191.833935px;}
.x5_c00427{left:193.111035px;}
.x3f_c00427{left:203.421885px;}
.x6c_c00427{left:214.336635px;}
.x66_c00427{left:215.613735px;}
.x30_c00427{left:226.424535px;}
.x26_c00427{left:236.591835px;}
.x18_c00427{left:248.348085px;}
.x59_c00427{left:256.946235px;}
.x27_c00427{left:260.252835px;}
.x75_c00427{left:269.370735px;}
.x6_c00427{left:270.821085px;}
.x3b_c00427{left:279.755835px;}
.x31_c00427{left:282.032835px;}
.x5a_c00427{left:290.408235px;}
.x7_c00427{left:292.630785px;}
.x67_c00427{left:294.734535px;}
.x4a_c00427{left:303.055485px;}
.x32_c00427{left:314.509785px;}
.x40_c00427{left:318.405435px;}
.x8_c00427{left:324.964185px;}
.x6f_c00427{left:326.919435px;}
.x33_c00427{left:335.354235px;}
.x9_c00427{left:347.927235px;}
.x28_c00427{left:350.075535px;}
.x57_c00427{left:354.614685px;}
.x6d_c00427{left:357.975735px;}
.xa_c00427{left:359.035035px;}
.x34_c00427{left:369.524085px;}
.x4f_c00427{left:378.488535px;}
.x19_c00427{left:380.265585px;}
.x4b_c00427{left:381.428835px;}
.x29_c00427{left:390.601185px;}
.x3c_c00427{left:392.888085px;}
.x68_c00427{left:401.194185px;}
.xb_c00427{left:402.515835px;}
.x35_c00427{left:405.282885px;}
.x50_c00427{left:413.054385px;}
.x2a_c00427{left:414.128535px;}
.x2b_c00427{left:424.464135px;}
.x2c_c00427{left:427.315335px;}
.x76_c00427{left:434.364135px;}
.xc_c00427{left:435.532335px;}
.x60_c00427{left:437.170785px;}
.x51_c00427{left:440.413035px;}
.x1a_c00427{left:447.273735px;}
.x5b_c00427{left:456.891585px;}
.xd_c00427{left:458.074635px;}
.x41_c00427{left:468.316185px;}
.xe_c00427{left:478.597335px;}
.x5c_c00427{left:479.790285px;}
.x1b_c00427{left:491.110935px;}
.x69_c00427{left:500.857485px;}
.xf_c00427{left:502.312785px;}
.x52_c00427{left:503.624535px;}
.x77_c00427{left:510.311985px;}
.x1c_c00427{left:511.415835px;}
.x4d_c00427{left:516.058935px;}
.x1d_c00427{left:523.379985px;}
.x42_c00427{left:524.389785px;}
.x61_c00427{left:533.824485px;}
.x10_c00427{left:535.037235px;}
.x1e_c00427{left:536.086635px;}
.x5d_c00427{left:544.407585px;}
.x36_c00427{left:545.956935px;}
.x1f_c00427{left:556.411335px;}
.x11_c00427{left:557.544885px;}
.x53_c00427{left:566.578635px;}
.x70_c00427{left:577.171635px;}
.x47_c00427{left:578.552685px;}
.x12_c00427{left:589.769385px;}
.x54_c00427{left:595.892535px;}
.x20_c00427{left:600.139635px;}
.x2d_c00427{left:603.609585px;}
.x55_c00427{left:606.584535px;}
.x56_c00427{left:609.079335px;}
.x48_c00427{left:611.009835px;}
.x4e_c00427{left:621.815685px;}
.x2e_c00427{left:622.934385px;}
.x13_c00427{left:633.863985px;}
.x62_c00427{left:635.447985px;}
.x43_c00427{left:644.877735px;}
.x21_c00427{left:655.698435px;}
.x3d_c00427{left:666.430035px;}
.x22_c00427{left:677.419035px;}
.x44_c00427{left:678.621885px;}
.x63_c00427{left:687.125985px;}
.x49_c00427{left:688.393185px;}
.x64_c00427{left:698.535735px;}
.x6a_c00427{left:699.604935px;}
.x71_c00427{left:707.757585px;}
.x14_c00427{left:710.796885px;}
.x23_c00427{left:721.122585px;}
.x37_c00427{left:722.181885px;}
.x72_c00427{left:731.086935px;}
.x4c_c00427{left:732.170985px;}
.x5e_c00427{left:741.303735px;}
.x15_c00427{left:742.862985px;}
.x78_c00427{left:762.509535px;}
@media print{
.v0_c00427{vertical-align:0.000000pt;}
.ls19_c00427{letter-spacing:-2.636480pt;}
.lsa_c00427{letter-spacing:-2.320102pt;}
.lsf_c00427{letter-spacing:-2.254560pt;}
.lsd_c00427{letter-spacing:-2.236080pt;}
.ls1a_c00427{letter-spacing:-2.057446pt;}
.ls10_c00427{letter-spacing:-1.071632pt;}
.ls7_c00427{letter-spacing:-1.030093pt;}
.lse_c00427{letter-spacing:-0.843850pt;}
.ls25_c00427{letter-spacing:-0.830966pt;}
.ls4_c00427{letter-spacing:0.000000pt;}
.ls1d_c00427{letter-spacing:1.052237pt;}
.ls17_c00427{letter-spacing:1.410710pt;}
.ls18_c00427{letter-spacing:1.769404pt;}
.ls9_c00427{letter-spacing:2.147200pt;}
.ls24_c00427{letter-spacing:2.182400pt;}
.ls20_c00427{letter-spacing:2.204513pt;}
.ls6_c00427{letter-spacing:2.393609pt;}
.ls15_c00427{letter-spacing:2.534400pt;}
.ls1f_c00427{letter-spacing:2.698194pt;}
.ls2_c00427{letter-spacing:2.834304pt;}
.ls1b_c00427{letter-spacing:2.939209pt;}
.ls11_c00427{letter-spacing:3.027209pt;}
.ls1_c00427{letter-spacing:3.033994pt;}
.ls14_c00427{letter-spacing:3.150400pt;}
.lsc_c00427{letter-spacing:3.194400pt;}
.ls16_c00427{letter-spacing:3.203209pt;}
.ls5_c00427{letter-spacing:3.220800pt;}
.ls3_c00427{letter-spacing:3.291209pt;}
.ls13_c00427{letter-spacing:3.414400pt;}
.ls12_c00427{letter-spacing:3.484800pt;}
.ls0_c00427{letter-spacing:17.971712pt;}
.ls8_c00427{letter-spacing:45.619376pt;}
.ls21_c00427{letter-spacing:49.420976pt;}
.lsb_c00427{letter-spacing:50.688176pt;}
.ls23_c00427{letter-spacing:55.756800pt;}
.ls1e_c00427{letter-spacing:60.825776pt;}
.ls1c_c00427{letter-spacing:69.696176pt;}
.ls22_c00427{letter-spacing:78.566576pt;}
.ws0_c00427{word-spacing:-19.137994pt;}
.ws8_c00427{word-spacing:-18.938304pt;}
.ws2_c00427{word-spacing:-16.104000pt;}
.wsa_c00427{word-spacing:-15.273034pt;}
.ws1_c00427{word-spacing:-15.260150pt;}
.ws6_c00427{word-spacing:-14.696044pt;}
.ws7_c00427{word-spacing:-3.478464pt;}
.ws9_c00427{word-spacing:-2.769184pt;}
.ws3_c00427{word-spacing:-2.210082pt;}
.ws4_c00427{word-spacing:-0.708576pt;}
.wsb_c00427{word-spacing:0.000000pt;}
.ws5_c00427{word-spacing:3.221152pt;}
._13_c00427{margin-left:-7.759615pt;}
._b_c00427{margin-left:-5.024448pt;}
._12_c00427{margin-left:-3.027234pt;}
._16_c00427{margin-left:-1.674816pt;}
._6_c00427{width:2.125728pt;}
._a_c00427{width:5.410944pt;}
._10_c00427{width:6.377184pt;}
._7_c00427{width:7.858400pt;}
._9_c00427{width:9.063331pt;}
._e_c00427{width:10.821888pt;}
._5_c00427{width:12.045792pt;}
._c_c00427{width:13.269696pt;}
._8_c00427{width:15.008928pt;}
._1_c00427{width:19.968960pt;}
._3_c00427{width:21.573094pt;}
._14_c00427{width:22.545952pt;}
._0_c00427{width:23.750179pt;}
._15_c00427{width:29.347296pt;}
._2_c00427{width:31.501888pt;}
._4_c00427{width:33.882816pt;}
._f_c00427{width:37.590045pt;}
._d_c00427{width:42.226976pt;}
._11_c00427{width:88.680064pt;}
.fs19_c00427{font-size:25.168000pt;}
.fs5_c00427{font-size:42.944000pt;}
.fs3_c00427{font-size:43.648000pt;}
.fs4_c00427{font-size:45.619376pt;}
.fs2_c00427{font-size:47.872176pt;}
.fs16_c00427{font-size:49.420976pt;}
.fse_c00427{font-size:50.688000pt;}
.fs7_c00427{font-size:50.688176pt;}
.fs15_c00427{font-size:54.032176pt;}
.fs18_c00427{font-size:55.756800pt;}
.fs11_c00427{font-size:58.256000pt;}
.fs10_c00427{font-size:58.784176pt;}
.fsa_c00427{font-size:58.960000pt;}
.fs14_c00427{font-size:59.840000pt;}
.fs9_c00427{font-size:60.544176pt;}
.fs13_c00427{font-size:60.825776pt;}
.fsd_c00427{font-size:63.008000pt;}
.fs8_c00427{font-size:63.888000pt;}
.fsf_c00427{font-size:64.064176pt;}
.fs1_c00427{font-size:64.416000pt;}
.fs0_c00427{font-size:65.824176pt;}
.fsc_c00427{font-size:68.288000pt;}
.fsb_c00427{font-size:69.696000pt;}
.fs12_c00427{font-size:69.696176pt;}
.fs6_c00427{font-size:75.328000pt;}
.fs17_c00427{font-size:78.566576pt;}
.y0_c00427{bottom:0.000000pt;}
.y1_c00427{bottom:68.000000pt;}
.y18_c00427{bottom:124.424120pt;}
.y17_c00427{bottom:151.347720pt;}
.y19_c00427{bottom:200.451720pt;}
.y16_c00427{bottom:211.227320pt;}
.y15_c00427{bottom:239.734920pt;}
.y14_c00427{bottom:267.613320pt;}
.y13_c00427{bottom:297.075720pt;}
.y12_c00427{bottom:355.054520pt;}
.y11_c00427{bottom:384.512520pt;}
.y10_c00427{bottom:403.520520pt;}
.yf_c00427{bottom:413.028920pt;}
.yd_c00427{bottom:469.419320pt;}
.yc_c00427{bottom:469.736120pt;}
.ye_c00427{bottom:470.365320pt;}
.yb_c00427{bottom:528.339720pt;}
.ya_c00427{bottom:557.485320pt;}
.y9_c00427{bottom:587.268920pt;}
.y8_c00427{bottom:616.726920pt;}
.y7_c00427{bottom:674.388920pt;}
.y6_c00427{bottom:702.896520pt;}
.y5_c00427{bottom:731.412920pt;}
.y4_c00427{bottom:759.924920pt;}
.y3_c00427{bottom:789.070520pt;}
.y2_c00427{bottom:820.750520pt;}
.h1c_c00427{height:26.249438pt;}
.h5_c00427{height:30.382504pt;}
.h18_c00427{height:32.914370pt;}
.h8_c00427{height:33.758325pt;}
.h1a_c00427{height:37.134029pt;}
.h16_c00427{height:40.509967pt;}
.h6_c00427{height:42.147188pt;}
.h1b_c00427{height:45.523500pt;}
.h13_c00427{height:46.417653pt;}
.h4_c00427{height:46.983923pt;}
.hf_c00427{height:49.747500pt;}
.h19_c00427{height:52.325340pt;}
.h17_c00427{height:56.353871pt;}
.h11_c00427{height:57.693454pt;}
.hb_c00427{height:57.866016pt;}
.h14_c00427{height:59.243427pt;}
.ha_c00427{height:59.420798pt;}
.he_c00427{height:61.838906pt;}
.h9_c00427{height:62.702578pt;}
.h10_c00427{height:62.875485pt;}
.h3_c00427{height:63.220781pt;}
.h2_c00427{height:66.338427pt;}
.hd_c00427{height:67.020938pt;}
.hc_c00427{height:68.368781pt;}
.h15_c00427{height:72.690750pt;}
.h12_c00427{height:73.930313pt;}
.h7_c00427{height:75.916500pt;}
.h1_c00427{height:986.666667pt;}
.h0_c00427{height:1122.666667pt;}
.w1_c00427{width:689.333333pt;}
.w0_c00427{width:793.333333pt;}
.x0_c00427{left:0.000000pt;}
.x1_c00427{left:52.000000pt;}
.x2_c00427{left:74.612253pt;}
.x24_c00427{left:75.663853pt;}
.x38_c00427{left:76.724253pt;}
.x16_c00427{left:94.487053pt;}
.x45_c00427{left:103.375053pt;}
.x39_c00427{left:104.488253pt;}
.x17_c00427{left:113.895453pt;}
.x6e_c00427{left:122.176253pt;}
.x25_c00427{left:123.333453pt;}
.x3_c00427{left:125.243053pt;}
.x6b_c00427{left:130.571453pt;}
.x4_c00427{left:132.934253pt;}
.x73_c00427{left:141.100653pt;}
.x3a_c00427{left:142.169853pt;}
.x65_c00427{left:145.087053pt;}
.x58_c00427{left:151.251453pt;}
.x46_c00427{left:152.166653pt;}
.x3e_c00427{left:153.614253pt;}
.x2f_c00427{left:161.397853pt;}
.x5f_c00427{left:164.407453pt;}
.x74_c00427{left:170.519053pt;}
.x5_c00427{left:171.654253pt;}
.x3f_c00427{left:180.819453pt;}
.x6c_c00427{left:190.521453pt;}
.x66_c00427{left:191.656653pt;}
.x30_c00427{left:201.266253pt;}
.x26_c00427{left:210.303853pt;}
.x18_c00427{left:220.753853pt;}
.x59_c00427{left:228.396653pt;}
.x27_c00427{left:231.335853pt;}
.x75_c00427{left:239.440653pt;}
.x6_c00427{left:240.729853pt;}
.x3b_c00427{left:248.671853pt;}
.x31_c00427{left:250.695853pt;}
.x5a_c00427{left:258.140653pt;}
.x7_c00427{left:260.116253pt;}
.x67_c00427{left:261.986253pt;}
.x4a_c00427{left:269.382653pt;}
.x32_c00427{left:279.564253pt;}
.x40_c00427{left:283.027053pt;}
.x8_c00427{left:288.857053pt;}
.x6f_c00427{left:290.595053pt;}
.x33_c00427{left:298.092653pt;}
.x9_c00427{left:309.268653pt;}
.x28_c00427{left:311.178253pt;}
.x57_c00427{left:315.213053pt;}
.x6d_c00427{left:318.200653pt;}
.xa_c00427{left:319.142253pt;}
.x34_c00427{left:328.465853pt;}
.x4f_c00427{left:336.434253pt;}
.x19_c00427{left:338.013853pt;}
.x4b_c00427{left:339.047853pt;}
.x29_c00427{left:347.201053pt;}
.x3c_c00427{left:349.233853pt;}
.x68_c00427{left:356.617053pt;}
.xb_c00427{left:357.791853pt;}
.x35_c00427{left:360.251453pt;}
.x50_c00427{left:367.159453pt;}
.x2a_c00427{left:368.114253pt;}
.x2b_c00427{left:377.301453pt;}
.x2c_c00427{left:379.835853pt;}
.x76_c00427{left:386.101453pt;}
.xc_c00427{left:387.139853pt;}
.x60_c00427{left:388.596253pt;}
.x51_c00427{left:391.478253pt;}
.x1a_c00427{left:397.576653pt;}
.x5b_c00427{left:406.125853pt;}
.xd_c00427{left:407.177453pt;}
.x41_c00427{left:416.281053pt;}
.xe_c00427{left:425.419853pt;}
.x5c_c00427{left:426.480253pt;}
.x1b_c00427{left:436.543053pt;}
.x69_c00427{left:445.206653pt;}
.xf_c00427{left:446.500253pt;}
.x52_c00427{left:447.666253pt;}
.x77_c00427{left:453.610653pt;}
.x1c_c00427{left:454.591853pt;}
.x4d_c00427{left:458.719053pt;}
.x1d_c00427{left:465.226653pt;}
.x42_c00427{left:466.124253pt;}
.x61_c00427{left:474.510653pt;}
.x10_c00427{left:475.588653pt;}
.x1e_c00427{left:476.521453pt;}
.x5d_c00427{left:483.917853pt;}
.x36_c00427{left:485.295053pt;}
.x1f_c00427{left:494.587853pt;}
.x11_c00427{left:495.595453pt;}
.x53_c00427{left:503.625453pt;}
.x70_c00427{left:513.041453pt;}
.x47_c00427{left:514.269053pt;}
.x12_c00427{left:524.239453pt;}
.x54_c00427{left:529.682253pt;}
.x20_c00427{left:533.457453pt;}
.x2d_c00427{left:536.541853pt;}
.x55_c00427{left:539.186253pt;}
.x56_c00427{left:541.403853pt;}
.x48_c00427{left:543.119853pt;}
.x4e_c00427{left:552.725053pt;}
.x2e_c00427{left:553.719453pt;}
.x13_c00427{left:563.434653pt;}
.x62_c00427{left:564.842653pt;}
.x43_c00427{left:573.224653pt;}
.x21_c00427{left:582.843053pt;}
.x3d_c00427{left:592.382253pt;}
.x22_c00427{left:602.150253pt;}
.x44_c00427{left:603.219453pt;}
.x63_c00427{left:610.778653pt;}
.x49_c00427{left:611.905053pt;}
.x64_c00427{left:620.920653pt;}
.x6a_c00427{left:621.871053pt;}
.x71_c00427{left:629.117853pt;}
.x14_c00427{left:631.819453pt;}
.x23_c00427{left:640.997853pt;}
.x37_c00427{left:641.939453pt;}
.x72_c00427{left:649.855053pt;}
.x4c_c00427{left:650.818653pt;}
.x5e_c00427{left:658.936653pt;}
.x15_c00427{left:660.322653pt;}
.x78_c00427{left:677.786253pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_52b00f17255de6de69a20f8b.woff2')format("woff");}.ff1_c00428{font-family:ff1_c00428;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00428;src:url('chunks/assets/font_b32938d1e1ba21cbf06d2b8b.woff2')format("woff");}.ff2_c00428{font-family:ff2_c00428;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00428;src:url('chunks/assets/font_275ddbb21dca904e3bdbcf63.woff2')format("woff");}.ff3_c00428{font-family:ff3_c00428;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00428;src:url('chunks/assets/font_8a1f85e0ad9f554d5a423af7.woff2')format("woff");}.ff4_c00428{font-family:ff4_c00428;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00428;src:url('chunks/assets/font_940c00bdf29f1275af8536f6.woff2')format("woff");}.ff5_c00428{font-family:ff5_c00428;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00428;src:url('chunks/assets/font_53268abb9027999fdf078d0a.woff2')format("woff");}.ff6_c00428{font-family:ff6_c00428;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mb6_c00428{transform:matrix(0.021429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021429,0.000000,0.000000,0.250000,0,0);}
.mf3_c00428{transform:matrix(0.030489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030489,0.000000,0.000000,0.250000,0,0);}
.me8_c00428{transform:matrix(0.044118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.044118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.044118,0.000000,0.000000,0.250000,0,0);}
.ma5_c00428{transform:matrix(0.047620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.047620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.047620,0.000000,0.000000,0.250000,0,0);}
.mf4_c00428{transform:matrix(0.056910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056910,0.000000,0.000000,0.250000,0,0);}
.ma7_c00428{transform:matrix(0.065477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065477,0.000000,0.000000,0.250000,0,0);}
.m10d_c00428{transform:matrix(0.069445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.069445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.069445,0.000000,0.000000,0.250000,0,0);}
.ma3_c00428{transform:matrix(0.071428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071428,0.000000,0.000000,0.250000,0,0);}
.m10c_c00428{transform:matrix(0.072917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072917,0.000000,0.000000,0.250000,0,0);}
.mba_c00428{transform:matrix(0.078572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078572,0.000000,0.000000,0.250000,0,0);}
.mf2_c00428{transform:matrix(0.079269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.079269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.079269,0.000000,0.000000,0.250000,0,0);}
.m87_c00428{transform:matrix(0.085714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085714,0.000000,0.000000,0.250000,0,0);}
.m95_c00428{transform:matrix(0.092858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092858,0.000000,0.000000,0.250000,0,0);}
.m69_c00428{transform:matrix(0.093902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093902,0.000000,0.000000,0.250000,0,0);}
.m10b_c00428{transform:matrix(0.097222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097222,0.000000,0.000000,0.250000,0,0);}
.mc2_c00428{transform:matrix(0.106906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106906,0.000000,0.000000,0.250000,0,0);}
.m28_c00428{transform:matrix(0.106914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106914,0.000000,0.000000,0.250000,0,0);}
.m6c_c00428{transform:matrix(0.109757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109757,0.000000,0.000000,0.250000,0,0);}
.med_c00428{transform:matrix(0.113821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113821,0.000000,0.000000,0.250000,0,0);}
.mb8_c00428{transform:matrix(0.114286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114286,0.000000,0.000000,0.250000,0,0);}
.mc1_c00428{transform:matrix(0.115113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115113,0.000000,0.000000,0.250000,0,0);}
.m10a_c00428{transform:matrix(0.119791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119791,0.000000,0.000000,0.250000,0,0);}
.mf8_c00428{transform:matrix(0.121954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121954,0.000000,0.000000,0.250000,0,0);}
.m6b_c00428{transform:matrix(0.122629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122629,0.000000,0.000000,0.250000,0,0);}
.m43_c00428{transform:matrix(0.123747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123747,0.000000,0.000000,0.250000,0,0);}
.md2_c00428{transform:matrix(0.131757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131757,0.000000,0.000000,0.250000,0,0);}
.mf5_c00428{transform:matrix(0.134146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134146,0.000000,0.000000,0.250000,0,0);}
.m9d_c00428{transform:matrix(0.135847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135847,0.000000,0.000000,0.250000,0,0);}
.m64_c00428{transform:matrix(0.136561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136561,0.000000,0.000000,0.250000,0,0);}
.ma6_c00428{transform:matrix(0.139880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139880,0.000000,0.000000,0.250000,0,0);}
.mde_c00428{transform:matrix(0.143953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143953,0.000000,0.000000,0.250000,0,0);}
.m8a_c00428{transform:matrix(0.146297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146297,0.000000,0.000000,0.250000,0,0);}
.ma4_c00428{transform:matrix(0.148809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148809,0.000000,0.000000,0.250000,0,0);}
.m96_c00428{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00428{transform:matrix(0.155358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155358,0.000000,0.000000,0.250000,0,0);}
.m31_c00428{transform:matrix(0.155850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155850,0.000000,0.000000,0.250000,0,0);}
.m11_c00428{transform:matrix(0.156977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156977,0.000000,0.000000,0.250000,0,0);}
.m54_c00428{transform:matrix(0.159314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159314,0.000000,0.000000,0.250000,0,0);}
.m86_c00428{transform:matrix(0.161538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161538,0.000000,0.000000,0.250000,0,0);}
.m13_c00428{transform:matrix(0.162790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162790,0.000000,0.000000,0.250000,0,0);}
.mb9_c00428{transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);}
.mcc_c00428{transform:matrix(0.166228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166228,0.000000,0.000000,0.250000,0,0);}
.m6a_c00428{transform:matrix(0.167683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167683,0.000000,0.000000,0.250000,0,0);}
.mb7_c00428{transform:matrix(0.167856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167856,0.000000,0.000000,0.250000,0,0);}
.m101_c00428{transform:matrix(0.168918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168918,0.000000,0.000000,0.250000,0,0);}
.m14_c00428{transform:matrix(0.172965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172965,0.000000,0.000000,0.250000,0,0);}
.m4d_c00428{transform:matrix(0.174710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174710,0.000000,0.000000,0.250000,0,0);}
.ma2_c00428{transform:matrix(0.179658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179658,0.000000,0.000000,0.250000,0,0);}
.mf1_c00428{transform:matrix(0.180895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180895,0.000000,0.000000,0.250000,0,0);}
.me7_c00428{transform:matrix(0.181760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181760,0.000000,0.000000,0.250000,0,0);}
.m109_c00428{transform:matrix(0.184027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184027,0.000000,0.000000,0.250000,0,0);}
.m52_c00428{transform:matrix(0.191110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191110,0.000000,0.000000,0.250000,0,0);}
.m45_c00428{transform:matrix(0.191485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191485,0.000000,0.000000,0.250000,0,0);}
.m30_c00428{transform:matrix(0.192274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192274,0.000000,0.000000,0.250000,0,0);}
.ma0_c00428{transform:matrix(0.194427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194427,0.000000,0.000000,0.250000,0,0);}
.m83_c00428{transform:matrix(0.195238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195238,0.000000,0.000000,0.250000,0,0);}
.m94_c00428{transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);}
.m7f_c00428{transform:matrix(0.196508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196508,0.000000,0.000000,0.250000,0,0);}
.m8c_c00428{transform:matrix(0.203974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203974,0.000000,0.000000,0.250000,0,0);}
.m74_c00428{transform:matrix(0.207241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207241,0.000000,0.000000,0.250000,0,0);}
.m75_c00428{transform:matrix(0.213557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213557,0.000000,0.000000,0.250000,0,0);}
.mc7_c00428{transform:matrix(0.218268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218268,0.000000,0.000000,0.250000,0,0);}
.mcb_c00428{transform:matrix(0.220223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220223,0.000000,0.000000,0.250000,0,0);}
.m20_c00428{transform:matrix(0.220892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220892,0.000000,0.000000,0.250000,0,0);}
.me4_c00428{transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);}
.mfb_c00428{transform:matrix(0.232321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232321,0.000000,0.000000,0.250000,0,0);}
.mca_c00428{transform:matrix(0.233969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233969,0.000000,0.000000,0.250000,0,0);}
.mcf_c00428{transform:matrix(0.234932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234932,0.000000,0.000000,0.250000,0,0);}
.mbb_c00428{transform:matrix(0.235491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235491,0.000000,0.000000,0.250000,0,0);}
.m110_c00428{transform:matrix(0.239829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239829,0.000000,0.000000,0.250000,0,0);}
.m12_c00428{transform:matrix(0.240310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240310,0.000000,0.000000,0.250000,0,0);}
.mea_c00428{transform:matrix(0.240939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240939,0.000000,0.000000,0.250000,0,0);}
.m1_c00428{transform:matrix(0.241119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241119,0.000000,0.000000,0.250000,0,0);}
.m10e_c00428{transform:matrix(0.243876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243876,0.000000,0.000000,0.250000,0,0);}
.m41_c00428{transform:matrix(0.244128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244128,0.000000,0.000000,0.250000,0,0);}
.m6f_c00428{transform:matrix(0.246298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246298,0.000000,0.000000,0.250000,0,0);}
.m76_c00428{transform:matrix(0.248406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248406,0.000000,0.000000,0.250000,0,0);}
.m0_c00428{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m103_c00428{transform:matrix(0.250936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250936,0.000000,0.000000,0.250000,0,0);}
.mc4_c00428{transform:matrix(0.252684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252684,0.000000,0.000000,0.250000,0,0);}
.m10f_c00428{transform:matrix(0.256111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256111,0.000000,0.000000,0.250000,0,0);}
.md_c00428{transform:matrix(0.256273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256273,0.000000,0.000000,0.250000,0,0);}
.m8b_c00428{transform:matrix(0.256559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256559,0.000000,0.000000,0.250000,0,0);}
.m78_c00428{transform:matrix(0.257507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257507,0.000000,0.000000,0.250000,0,0);}
.m17_c00428{transform:matrix(0.258443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258443,0.000000,0.000000,0.250000,0,0);}
.meb_c00428{transform:matrix(0.259433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259433,0.000000,0.000000,0.250000,0,0);}
.m51_c00428{transform:matrix(0.259820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259820,0.000000,0.000000,0.250000,0,0);}
.md0_c00428{transform:matrix(0.261284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261284,0.000000,0.000000,0.250000,0,0);}
.mf6_c00428{transform:matrix(0.262087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262087,0.000000,0.000000,0.250000,0,0);}
.mf7_c00428{transform:matrix(0.264300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264300,0.000000,0.000000,0.250000,0,0);}
.m91_c00428{transform:matrix(0.265044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265044,0.000000,0.000000,0.250000,0,0);}
.mc8_c00428{transform:matrix(0.265072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265072,0.000000,0.000000,0.250000,0,0);}
.m48_c00428{transform:matrix(0.265319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265319,0.000000,0.000000,0.250000,0,0);}
.mb3_c00428{transform:matrix(0.265645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265645,0.000000,0.000000,0.250000,0,0);}
.m6_c00428{transform:matrix(0.265703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265703,0.000000,0.000000,0.250000,0,0);}
.m98_c00428{transform:matrix(0.266260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266260,0.000000,0.000000,0.250000,0,0);}
.mdc_c00428{transform:matrix(0.267365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267365,0.000000,0.000000,0.250000,0,0);}
.m8d_c00428{transform:matrix(0.267953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267953,0.000000,0.000000,0.250000,0,0);}
.mdd_c00428{transform:matrix(0.268432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268432,0.000000,0.000000,0.250000,0,0);}
.m79_c00428{transform:matrix(0.270620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270620,0.000000,0.000000,0.250000,0,0);}
.mec_c00428{transform:matrix(0.271086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271086,0.000000,0.000000,0.250000,0,0);}
.m71_c00428{transform:matrix(0.271538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271538,0.000000,0.000000,0.250000,0,0);}
.m2a_c00428{transform:matrix(0.272108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272108,0.000000,0.000000,0.250000,0,0);}
.mc3_c00428{transform:matrix(0.272717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272717,0.000000,0.000000,0.250000,0,0);}
.m3a_c00428{transform:matrix(0.273479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273479,0.000000,0.000000,0.250000,0,0);}
.m21_c00428{transform:matrix(0.273806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273806,0.000000,0.000000,0.250000,0,0);}
.mac_c00428{transform:matrix(0.274282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274282,0.000000,0.000000,0.250000,0,0);}
.m99_c00428{transform:matrix(0.274373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274373,0.000000,0.000000,0.250000,0,0);}
.m3f_c00428{transform:matrix(0.275305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275305,0.000000,0.000000,0.250000,0,0);}
.m36_c00428{transform:matrix(0.275622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275622,0.000000,0.000000,0.250000,0,0);}
.mda_c00428{transform:matrix(0.275930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275930,0.000000,0.000000,0.250000,0,0);}
.m5a_c00428{transform:matrix(0.276501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276501,0.000000,0.000000,0.250000,0,0);}
.m3d_c00428{transform:matrix(0.276801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276801,0.000000,0.000000,0.250000,0,0);}
.mb0_c00428{transform:matrix(0.278187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278187,0.000000,0.000000,0.250000,0,0);}
.m39_c00428{transform:matrix(0.278353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278353,0.000000,0.000000,0.250000,0,0);}
.m84_c00428{transform:matrix(0.278820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278820,0.000000,0.000000,0.250000,0,0);}
.mce_c00428{transform:matrix(0.279059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279059,0.000000,0.000000,0.250000,0,0);}
.mb4_c00428{transform:matrix(0.280121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280121,0.000000,0.000000,0.250000,0,0);}
.mfe_c00428{transform:matrix(0.281933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281933,0.000000,0.000000,0.250000,0,0);}
.maa_c00428{transform:matrix(0.282270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282270,0.000000,0.000000,0.250000,0,0);}
.m9b_c00428{transform:matrix(0.283925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283925,0.000000,0.000000,0.250000,0,0);}
.m32_c00428{transform:matrix(0.284492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284492,0.000000,0.000000,0.250000,0,0);}
.m49_c00428{transform:matrix(0.285380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285380,0.000000,0.000000,0.250000,0,0);}
.me_c00428{transform:matrix(0.286142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286142,0.000000,0.000000,0.250000,0,0);}
.m2e_c00428{transform:matrix(0.286281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286281,0.000000,0.000000,0.250000,0,0);}
.m2c_c00428{transform:matrix(0.286742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286742,0.000000,0.000000,0.250000,0,0);}
.m4e_c00428{transform:matrix(0.287763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287763,0.000000,0.000000,0.250000,0,0);}
.m50_c00428{transform:matrix(0.289304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289304,0.000000,0.000000,0.250000,0,0);}
.m6d_c00428{transform:matrix(0.290084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290084,0.000000,0.000000,0.250000,0,0);}
.m55_c00428{transform:matrix(0.290528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290528,0.000000,0.000000,0.250000,0,0);}
.mfa_c00428{transform:matrix(0.290603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290603,0.000000,0.000000,0.250000,0,0);}
.m8_c00428{transform:matrix(0.290712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290712,0.000000,0.000000,0.250000,0,0);}
.m15_c00428{transform:matrix(0.291252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291252,0.000000,0.000000,0.250000,0,0);}
.m100_c00428{transform:matrix(0.291444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291444,0.000000,0.000000,0.250000,0,0);}
.m3_c00428{transform:matrix(0.291536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291536,0.000000,0.000000,0.250000,0,0);}
.md1_c00428{transform:matrix(0.291634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291634,0.000000,0.000000,0.250000,0,0);}
.md7_c00428{transform:matrix(0.291941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291941,0.000000,0.000000,0.250000,0,0);}
.me6_c00428{transform:matrix(0.293739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293739,0.000000,0.000000,0.250000,0,0);}
.m9f_c00428{transform:matrix(0.294160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294160,0.000000,0.000000,0.250000,0,0);}
.m7b_c00428{transform:matrix(0.294470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294470,0.000000,0.000000,0.250000,0,0);}
.m58_c00428{transform:matrix(0.296362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296362,0.000000,0.000000,0.250000,0,0);}
.md8_c00428{transform:matrix(0.297841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297841,0.000000,0.000000,0.250000,0,0);}
.m8e_c00428{transform:matrix(0.298459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298459,0.000000,0.000000,0.250000,0,0);}
.m104_c00428{transform:matrix(0.299122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299122,0.000000,0.000000,0.250000,0,0);}
.mbf_c00428{transform:matrix(0.299636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299636,0.000000,0.000000,0.250000,0,0);}
.m73_c00428{transform:matrix(0.300194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300194,0.000000,0.000000,0.250000,0,0);}
.me9_c00428{transform:matrix(0.301505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301505,0.000000,0.000000,0.250000,0,0);}
.m40_c00428{transform:matrix(0.301848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301848,0.000000,0.000000,0.250000,0,0);}
.m4c_c00428{transform:matrix(0.302103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302103,0.000000,0.000000,0.250000,0,0);}
.md4_c00428{transform:matrix(0.302640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302640,0.000000,0.000000,0.250000,0,0);}
.mc0_c00428{transform:matrix(0.302934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302934,0.000000,0.000000,0.250000,0,0);}
.mc_c00428{transform:matrix(0.304746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304746,0.000000,0.000000,0.250000,0,0);}
.ma8_c00428{transform:matrix(0.304950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304950,0.000000,0.000000,0.250000,0,0);}
.m1a_c00428{transform:matrix(0.305376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305376,0.000000,0.000000,0.250000,0,0);}
.m1b_c00428{transform:matrix(0.305967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305967,0.000000,0.000000,0.250000,0,0);}
.mbe_c00428{transform:matrix(0.306043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306043,0.000000,0.000000,0.250000,0,0);}
.m7c_c00428{transform:matrix(0.306640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306640,0.000000,0.000000,0.250000,0,0);}
.mf9_c00428{transform:matrix(0.306770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306770,0.000000,0.000000,0.250000,0,0);}
.md3_c00428{transform:matrix(0.306837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306837,0.000000,0.000000,0.250000,0,0);}
.m82_c00428{transform:matrix(0.307084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307084,0.000000,0.000000,0.250000,0,0);}
.m1c_c00428{transform:matrix(0.308142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308142,0.000000,0.000000,0.250000,0,0);}
.m1d_c00428{transform:matrix(0.309439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309439,0.000000,0.000000,0.250000,0,0);}
.m8f_c00428{transform:matrix(0.309681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309681,0.000000,0.000000,0.250000,0,0);}
.me2_c00428{transform:matrix(0.309778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309778,0.000000,0.000000,0.250000,0,0);}
.mad_c00428{transform:matrix(0.310725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310725,0.000000,0.000000,0.250000,0,0);}
.mee_c00428{transform:matrix(0.311612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311612,0.000000,0.000000,0.250000,0,0);}
.m7a_c00428{transform:matrix(0.311899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311899,0.000000,0.000000,0.250000,0,0);}
.m108_c00428{transform:matrix(0.312336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312336,0.000000,0.000000,0.250000,0,0);}
.m24_c00428{transform:matrix(0.312943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312943,0.000000,0.000000,0.250000,0,0);}
.m102_c00428{transform:matrix(0.313429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313429,0.000000,0.000000,0.250000,0,0);}
.m77_c00428{transform:matrix(0.313645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313645,0.000000,0.000000,0.250000,0,0);}
.m57_c00428{transform:matrix(0.314050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314050,0.000000,0.000000,0.250000,0,0);}
.m38_c00428{transform:matrix(0.314246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314246,0.000000,0.000000,0.250000,0,0);}
.m2d_c00428{transform:matrix(0.314247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314247,0.000000,0.000000,0.250000,0,0);}
.mdf_c00428{transform:matrix(0.314251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314251,0.000000,0.000000,0.250000,0,0);}
.m19_c00428{transform:matrix(0.314739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314739,0.000000,0.000000,0.250000,0,0);}
.m5d_c00428{transform:matrix(0.314802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314802,0.000000,0.000000,0.250000,0,0);}
.m3e_c00428{transform:matrix(0.315239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315239,0.000000,0.000000,0.250000,0,0);}
.m16_c00428{transform:matrix(0.315240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315240,0.000000,0.000000,0.250000,0,0);}
.m105_c00428{transform:matrix(0.315297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315297,0.000000,0.000000,0.250000,0,0);}
.m9a_c00428{transform:matrix(0.316315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316315,0.000000,0.000000,0.250000,0,0);}
.m46_c00428{transform:matrix(0.317087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317087,0.000000,0.000000,0.250000,0,0);}
.m80_c00428{transform:matrix(0.317970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317970,0.000000,0.000000,0.250000,0,0);}
.md6_c00428{transform:matrix(0.318982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318982,0.000000,0.000000,0.250000,0,0);}
.m18_c00428{transform:matrix(0.320555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320555,0.000000,0.000000,0.250000,0,0);}
.me3_c00428{transform:matrix(0.320884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320884,0.000000,0.000000,0.250000,0,0);}
.m37_c00428{transform:matrix(0.321226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321226,0.000000,0.000000,0.250000,0,0);}
.m72_c00428{transform:matrix(0.321309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321309,0.000000,0.000000,0.250000,0,0);}
.m9_c00428{transform:matrix(0.321479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321479,0.000000,0.000000,0.250000,0,0);}
.mf0_c00428{transform:matrix(0.322608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322608,0.000000,0.000000,0.250000,0,0);}
.m22_c00428{transform:matrix(0.322774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322774,0.000000,0.000000,0.250000,0,0);}
.m5_c00428{transform:matrix(0.325114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325114,0.000000,0.000000,0.250000,0,0);}
.m6e_c00428{transform:matrix(0.325334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325334,0.000000,0.000000,0.250000,0,0);}
.m92_c00428{transform:matrix(0.326116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326116,0.000000,0.000000,0.250000,0,0);}
.m81_c00428{transform:matrix(0.326856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326856,0.000000,0.000000,0.250000,0,0);}
.mfd_c00428{transform:matrix(0.327087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327087,0.000000,0.000000,0.250000,0,0);}
.mef_c00428{transform:matrix(0.327233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327233,0.000000,0.000000,0.250000,0,0);}
.m53_c00428{transform:matrix(0.327573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327573,0.000000,0.000000,0.250000,0,0);}
.mbd_c00428{transform:matrix(0.327802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327802,0.000000,0.000000,0.250000,0,0);}
.mb_c00428{transform:matrix(0.328279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328279,0.000000,0.000000,0.250000,0,0);}
.m35_c00428{transform:matrix(0.328504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328504,0.000000,0.000000,0.250000,0,0);}
.ma_c00428{transform:matrix(0.328642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328642,0.000000,0.000000,0.250000,0,0);}
.m5b_c00428{transform:matrix(0.328767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328767,0.000000,0.000000,0.250000,0,0);}
.mb1_c00428{transform:matrix(0.328823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328823,0.000000,0.000000,0.250000,0,0);}
.m65_c00428{transform:matrix(0.329003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329003,0.000000,0.000000,0.250000,0,0);}
.m4b_c00428{transform:matrix(0.329803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329803,0.000000,0.000000,0.250000,0,0);}
.m5f_c00428{transform:matrix(0.330307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330307,0.000000,0.000000,0.250000,0,0);}
.m25_c00428{transform:matrix(0.330344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330344,0.000000,0.000000,0.250000,0,0);}
.mc9_c00428{transform:matrix(0.330604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330604,0.000000,0.000000,0.250000,0,0);}
.m89_c00428{transform:matrix(0.333371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333371,0.000000,0.000000,0.250000,0,0);}
.mcd_c00428{transform:matrix(0.334385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334385,0.000000,0.000000,0.250000,0,0);}
.m2f_c00428{transform:matrix(0.334473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334473,0.000000,0.000000,0.250000,0,0);}
.m4a_c00428{transform:matrix(0.334511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334511,0.000000,0.000000,0.250000,0,0);}
.m3b_c00428{transform:matrix(0.335688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335688,0.000000,0.000000,0.250000,0,0);}
.mc6_c00428{transform:matrix(0.337112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337112,0.000000,0.000000,0.250000,0,0);}
.m93_c00428{transform:matrix(0.337675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337675,0.000000,0.000000,0.250000,0,0);}
.m61_c00428{transform:matrix(0.338536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338536,0.000000,0.000000,0.250000,0,0);}
.m60_c00428{transform:matrix(0.339332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339332,0.000000,0.000000,0.250000,0,0);}
.m29_c00428{transform:matrix(0.340300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340300,0.000000,0.000000,0.250000,0,0);}
.m10_c00428{transform:matrix(0.340582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340582,0.000000,0.000000,0.250000,0,0);}
.me0_c00428{transform:matrix(0.340666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340666,0.000000,0.000000,0.250000,0,0);}
.m97_c00428{transform:matrix(0.341829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341829,0.000000,0.000000,0.250000,0,0);}
.m5c_c00428{transform:matrix(0.341985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341985,0.000000,0.000000,0.250000,0,0);}
.m7d_c00428{transform:matrix(0.342185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342185,0.000000,0.000000,0.250000,0,0);}
.mdb_c00428{transform:matrix(0.344299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344299,0.000000,0.000000,0.250000,0,0);}
.m70_c00428{transform:matrix(0.344495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344495,0.000000,0.000000,0.250000,0,0);}
.m88_c00428{transform:matrix(0.344518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344518,0.000000,0.000000,0.250000,0,0);}
.m9c_c00428{transform:matrix(0.345032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345032,0.000000,0.000000,0.250000,0,0);}
.m44_c00428{transform:matrix(0.345253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345253,0.000000,0.000000,0.250000,0,0);}
.me1_c00428{transform:matrix(0.345766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345766,0.000000,0.000000,0.250000,0,0);}
.mfc_c00428{transform:matrix(0.346020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346020,0.000000,0.000000,0.250000,0,0);}
.m1f_c00428{transform:matrix(0.346545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346545,0.000000,0.000000,0.250000,0,0);}
.maf_c00428{transform:matrix(0.346685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346685,0.000000,0.000000,0.250000,0,0);}
.mbc_c00428{transform:matrix(0.347091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347091,0.000000,0.000000,0.250000,0,0);}
.m56_c00428{transform:matrix(0.347241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347241,0.000000,0.000000,0.250000,0,0);}
.m68_c00428{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);}
.m63_c00428{transform:matrix(0.348659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348659,0.000000,0.000000,0.250000,0,0);}
.mff_c00428{transform:matrix(0.348741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348741,0.000000,0.000000,0.250000,0,0);}
.m107_c00428{transform:matrix(0.350296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350296,0.000000,0.000000,0.250000,0,0);}
.mc5_c00428{transform:matrix(0.350828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350828,0.000000,0.000000,0.250000,0,0);}
.m3c_c00428{transform:matrix(0.352731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352731,0.000000,0.000000,0.250000,0,0);}
.m4f_c00428{transform:matrix(0.359248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359248,0.000000,0.000000,0.250000,0,0);}
.m106_c00428{transform:matrix(0.360513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360513,0.000000,0.000000,0.250000,0,0);}
.m5e_c00428{transform:matrix(0.362216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362216,0.000000,0.000000,0.250000,0,0);}
.me5_c00428{transform:matrix(0.362403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362403,0.000000,0.000000,0.250000,0,0);}
.m47_c00428{transform:matrix(0.362529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362529,0.000000,0.000000,0.250000,0,0);}
.m59_c00428{transform:matrix(0.362885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362885,0.000000,0.000000,0.250000,0,0);}
.ma1_c00428{transform:matrix(0.363135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363135,0.000000,0.000000,0.250000,0,0);}
.m26_c00428{transform:matrix(0.364019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364019,0.000000,0.000000,0.250000,0,0);}
.m62_c00428{transform:matrix(0.365848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365848,0.000000,0.000000,0.250000,0,0);}
.m1e_c00428{transform:matrix(0.366379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366379,0.000000,0.000000,0.250000,0,0);}
.m23_c00428{transform:matrix(0.366394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366394,0.000000,0.000000,0.250000,0,0);}
.mf_c00428{transform:matrix(0.366899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366899,0.000000,0.000000,0.250000,0,0);}
.m9e_c00428{transform:matrix(0.368594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368594,0.000000,0.000000,0.250000,0,0);}
.m2_c00428{transform:matrix(0.369036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369036,0.000000,0.000000,0.250000,0,0);}
.m85_c00428{transform:matrix(0.373337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373337,0.000000,0.000000,0.250000,0,0);}
.ma9_c00428{transform:matrix(0.379717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379717,0.000000,0.000000,0.250000,0,0);}
.mab_c00428{transform:matrix(0.380824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380824,0.000000,0.000000,0.250000,0,0);}
.mb2_c00428{transform:matrix(0.390429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390429,0.000000,0.000000,0.250000,0,0);}
.m33_c00428{transform:matrix(0.392988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392988,0.000000,0.000000,0.250000,0,0);}
.m2b_c00428{transform:matrix(0.394994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394994,0.000000,0.000000,0.250000,0,0);}
.m7_c00428{transform:matrix(0.396322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396322,0.000000,0.000000,0.250000,0,0);}
.m67_c00428{transform:matrix(0.397185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397185,0.000000,0.000000,0.250000,0,0);}
.m34_c00428{transform:matrix(0.403943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403943,0.000000,0.000000,0.250000,0,0);}
.m66_c00428{transform:matrix(0.409557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409557,0.000000,0.000000,0.250000,0,0);}
.m7e_c00428{transform:matrix(0.411565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411565,0.000000,0.000000,0.250000,0,0);}
.m27_c00428{transform:matrix(0.443427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443427,0.000000,0.000000,0.250000,0,0);}
.m90_c00428{transform:matrix(0.451072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451072,0.000000,0.000000,0.250000,0,0);}
.m4_c00428{transform:matrix(0.453314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453314,0.000000,0.000000,0.250000,0,0);}
.m42_c00428{transform:matrix(0.469700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469700,0.000000,0.000000,0.250000,0,0);}
.mae_c00428{transform:matrix(0.475035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475035,0.000000,0.000000,0.250000,0,0);}
.md9_c00428{transform:matrix(0.476343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476343,0.000000,0.000000,0.250000,0,0);}
.md5_c00428{transform:matrix(0.495320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495320,0.000000,0.000000,0.250000,0,0);}
.v0_c00428{vertical-align:0.000000px;}
.v1_c00428{vertical-align:8.533800px;}
.ls18_c00428{letter-spacing:-3.631327px;}
.ls31_c00428{letter-spacing:-3.333330px;}
.lsb_c00428{letter-spacing:-2.688840px;}
.ls10_c00428{letter-spacing:-2.480940px;}
.ls37_c00428{letter-spacing:-2.363130px;}
.ls29_c00428{letter-spacing:-2.293830px;}
.ls16_c00428{letter-spacing:-2.252250px;}
.lsf_c00428{letter-spacing:-2.133608px;}
.ls11_c00428{letter-spacing:-1.614690px;}
.ls14_c00428{letter-spacing:-1.587802px;}
.ls1b_c00428{letter-spacing:-1.538183px;}
.ls27_c00428{letter-spacing:-0.924069px;}
.ls2d_c00428{letter-spacing:-0.830493px;}
.ls17_c00428{letter-spacing:-0.106326px;}
.lsa_c00428{letter-spacing:0.000000px;}
.lse_c00428{letter-spacing:0.595426px;}
.ls2_c00428{letter-spacing:0.800989px;}
.ls1_c00428{letter-spacing:0.878962px;}
.ls1e_c00428{letter-spacing:1.127056px;}
.ls12_c00428{letter-spacing:1.207800px;}
.ls13_c00428{letter-spacing:1.405800px;}
.ls33_c00428{letter-spacing:1.509572px;}
.ls5_c00428{letter-spacing:1.623244px;}
.ls23_c00428{letter-spacing:1.692900px;}
.ls2e_c00428{letter-spacing:1.715393px;}
.ls7_c00428{letter-spacing:2.119432px;}
.ls2f_c00428{letter-spacing:2.296810px;}
.ls1d_c00428{letter-spacing:2.366100px;}
.ls24_c00428{letter-spacing:2.385900px;}
.ls0_c00428{letter-spacing:2.434934px;}
.ls2b_c00428{letter-spacing:2.504700px;}
.ls21_c00428{letter-spacing:2.524500px;}
.ls15_c00428{letter-spacing:2.692810px;}
.ls1f_c00428{letter-spacing:3.040924px;}
.ls25_c00428{letter-spacing:3.088810px;}
.ls8_c00428{letter-spacing:3.125984px;}
.ls1a_c00428{letter-spacing:3.140161px;}
.ls32_c00428{letter-spacing:3.158100px;}
.ls4_c00428{letter-spacing:3.274841px;}
.ls30_c00428{letter-spacing:3.366000px;}
.ls34_c00428{letter-spacing:3.375900px;}
.ls35_c00428{letter-spacing:3.388255px;}
.ls2c_c00428{letter-spacing:3.466228px;}
.ls22_c00428{letter-spacing:3.494581px;}
.lsc_c00428{letter-spacing:3.544200px;}
.ls26_c00428{letter-spacing:3.554110px;}
.ls9_c00428{letter-spacing:10.136412px;}
.ls3_c00428{letter-spacing:14.602104px;}
.ls6_c00428{letter-spacing:20.131848px;}
.ls2a_c00428{letter-spacing:48.470598px;}
.ls1c_c00428{letter-spacing:49.896198px;}
.ls36_c00428{letter-spacing:51.321798px;}
.ls28_c00428{letter-spacing:52.747398px;}
.ls19_c00428{letter-spacing:58.449798px;}
.ls20_c00428{letter-spacing:59.875398px;}
.lsd_c00428{letter-spacing:61.300998px;}
.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;}
}
.ws8_c00428{word-spacing:-20.995841px;}
.wsa_c00428{word-spacing:-19.344244px;}
.ws5_c00428{word-spacing:-18.599962px;}
.ws7_c00428{word-spacing:-18.316426px;}
.ws3_c00428{word-spacing:-17.721000px;}
.ws6_c00428{word-spacing:-17.614674px;}
.wsb_c00428{word-spacing:-16.846481px;}
.ws4_c00428{word-spacing:-16.133198px;}
.wsc_c00428{word-spacing:-15.592500px;}
.ws2_c00428{word-spacing:-3.473316px;}
.ws0_c00428{word-spacing:-2.197404px;}
.wsf_c00428{word-spacing:0.000000px;}
.ws1_c00428{word-spacing:2.793226px;}
.wsd_c00428{word-spacing:6.521328px;}
.wse_c00428{word-spacing:7.939008px;}
.ws9_c00428{word-spacing:11.908908px;}
._19_c00428{margin-left:-17.201776px;}
._1e_c00428{margin-left:-7.230168px;}
._17_c00428{margin-left:-6.055988px;}
._18_c00428{margin-left:-1.919250px;}
._0_c00428{width:3.101868px;}
._1_c00428{width:4.431240px;}
._b_c00428{width:7.017120px;}
._13_c00428{width:8.222544px;}
._9_c00428{width:9.569340px;}
._f_c00428{width:11.064240px;}
._d_c00428{width:12.688236px;}
._6_c00428{width:13.822380px;}
._1c_c00428{width:16.097400px;}
._7_c00428{width:20.910780px;}
._16_c00428{width:23.101848px;}
._4_c00428{width:24.242328px;}
._a_c00428{width:25.801776px;}
._15_c00428{width:27.301784px;}
._1b_c00428{width:29.345976px;}
._10_c00428{width:30.581992px;}
._e_c00428{width:32.303304px;}
._5_c00428{width:34.095204px;}
._11_c00428{width:35.550504px;}
._12_c00428{width:37.922940px;}
._c_c00428{width:39.832848px;}
._2_c00428{width:40.906800px;}
._3_c00428{width:42.019560px;}
._8_c00428{width:43.947684px;}
._1a_c00428{width:45.071119px;}
._1d_c00428{width:46.076580px;}
._14_c00428{width:54.786600px;}
.fc0_c00428{color:transparent;}
.fs1b_c00428{font-size:22.176000px;}
.fs6_c00428{font-size:24.156000px;}
.fs8_c00428{font-size:28.116000px;}
.fs21_c00428{font-size:28.314000px;}
.fs1d_c00428{font-size:30.888000px;}
.fs9_c00428{font-size:32.472000px;}
.fs17_c00428{font-size:33.858000px;}
.fs16_c00428{font-size:36.432000px;}
.fs12_c00428{font-size:39.798000px;}
.fs7_c00428{font-size:40.986198px;}
.fs26_c00428{font-size:45.936198px;}
.fs5_c00428{font-size:46.134000px;}
.fs1a_c00428{font-size:46.332000px;}
.fs13_c00428{font-size:47.322000px;}
.fs20_c00428{font-size:47.520000px;}
.fs18_c00428{font-size:47.718000px;}
.fs22_c00428{font-size:48.470598px;}
.fsb_c00428{font-size:49.896198px;}
.fs24_c00428{font-size:50.094000px;}
.fs15_c00428{font-size:50.490000px;}
.fs2c_c00428{font-size:51.321798px;}
.fs1e_c00428{font-size:52.747398px;}
.fsc_c00428{font-size:53.856198px;}
.fs10_c00428{font-size:58.449798px;}
.fs14_c00428{font-size:59.875398px;}
.fs3_c00428{font-size:61.300998px;}
.fs19_c00428{font-size:61.776198px;}
.fsd_c00428{font-size:62.370000px;}
.fs2a_c00428{font-size:63.162000px;}
.fs23_c00428{font-size:63.558000px;}
.fse_c00428{font-size:64.350000px;}
.fs4_c00428{font-size:65.340000px;}
.fs1f_c00428{font-size:65.538000px;}
.fs27_c00428{font-size:67.320000px;}
.fs2b_c00428{font-size:67.518000px;}
.fs28_c00428{font-size:68.112198px;}
.fs1_c00428{font-size:70.884000px;}
.fs1c_c00428{font-size:71.082198px;}
.fs11_c00428{font-size:73.062198px;}
.fs2_c00428{font-size:73.854000px;}
.fs0_c00428{font-size:76.824000px;}
.fs25_c00428{font-size:77.616198px;}
.fsa_c00428{font-size:95.040000px;}
.fs29_c00428{font-size:95.238000px;}
.fsf_c00428{font-size:103.752198px;}
.y0_c00428{bottom:0.000000px;}
.y1_c00428{bottom:76.500000px;}
.y24_c00428{bottom:131.067135px;}
.y23_c00428{bottom:161.717535px;}
.y22_c00428{bottom:193.080735px;}
.y21_c00428{bottom:195.931935px;}
.y1f_c00428{bottom:228.715785px;}
.y20_c00428{bottom:228.720735px;}
.y1e_c00428{bottom:292.511385px;}
.y1d_c00428{bottom:314.613135px;}
.y1c_c00428{bottom:325.661535px;}
.y1b_c00428{bottom:359.514585px;}
.y19_c00428{bottom:392.664735px;}
.y1a_c00428{bottom:398.723535px;}
.y18_c00428{bottom:420.458985px;}
.y16_c00428{bottom:425.097135px;}
.y17_c00428{bottom:425.453535px;}
.y15_c00428{bottom:458.950185px;}
.y14_c00428{bottom:491.387535px;}
.y12_c00428{bottom:524.171385px;}
.y11_c00428{bottom:524.178315px;}
.y13_c00428{bottom:527.378985px;}
.y10_c00428{bottom:557.316585px;}
.yf_c00428{bottom:589.397535px;}
.ye_c00428{bottom:623.255535px;}
.yd_c00428{bottom:656.044335px;}
.yc_c00428{bottom:689.184585px;}
.yb_c00428{bottom:721.265535px;}
.ya_c00428{bottom:753.336585px;}
.y9_c00428{bottom:785.417535px;}
.y8_c00428{bottom:814.280985px;}
.y6_c00428{bottom:817.849935px;}
.y7_c00428{bottom:819.983385px;}
.y5_c00428{bottom:851.346585px;}
.y4_c00428{bottom:887.347935px;}
.y3_c00428{bottom:920.136735px;}
.y2_c00428{bottom:1074.452985px;}
.h1b_c00428{height:23.128875px;}
.h8_c00428{height:23.707793px;}
.ha_c00428{height:27.594316px;}
.h22_c00428{height:29.530617px;}
.h1e_c00428{height:32.215219px;}
.h23_c00428{height:32.281418px;}
.h12_c00428{height:33.230868px;}
.hb_c00428{height:33.867281px;}
.h2d_c00428{height:34.180317px;}
.h1f_c00428{height:35.129767px;}
.h18_c00428{height:35.312836px;}
.h11_c00428{height:38.927565px;}
.h14_c00428{height:39.059561px;}
.h16_c00428{height:39.877015px;}
.h9_c00428{height:40.225712px;}
.h5_c00428{height:40.826465px;}
.h15_c00428{height:46.443955px;}
.h27_c00428{height:47.910019px;}
.h7_c00428{height:48.116320px;}
.h17_c00428{height:49.528521px;}
.h21_c00428{height:49.561875px;}
.h19_c00428{height:49.768383px;}
.h25_c00428{height:52.246477px;}
.hd_c00428{height:52.856913px;}
.h1d_c00428{height:61.212744px;}
.h2b_c00428{height:61.990049px;}
.hf_c00428{height:63.156006px;}
.h20_c00428{height:64.321963px;}
.h1a_c00428{height:64.430644px;}
.he_c00428{height:65.049961px;}
.h28_c00428{height:66.070898px;}
.h2c_c00428{height:66.265225px;}
.h24_c00428{height:66.289008px;}
.h3_c00428{height:69.568770px;}
.h1c_c00428{height:69.763290px;}
.h29_c00428{height:71.038894px;}
.h13_c00428{height:71.706552px;}
.h4_c00428{height:74.430984px;}
.h2_c00428{height:75.398555px;}
.h26_c00428{height:76.176054px;}
.h6_c00428{height:76.681378px;}
.hc_c00428{height:93.276563px;}
.h2a_c00428{height:99.330258px;}
.h10_c00428{height:101.776448px;}
.h1_c00428{height:1110.000000px;}
.h0_c00428{height:1263.000000px;}
.w1_c00428{width:775.500000px;}
.w0_c00428{width:892.500000px;}
.x0_c00428{left:0.000000px;}
.x1_c00428{left:58.500000px;}
.x22_c00428{left:81.270735px;}
.x3e_c00428{left:82.493385px;}
.x4_c00428{left:83.562585px;}
.x83_c00428{left:84.864435px;}
.x72_c00428{left:86.591985px;}
.x5_c00428{left:94.155585px;}
.x3f_c00428{left:104.357535px;}
.x73_c00428{left:105.486135px;}
.x74_c00428{left:108.693735px;}
.x31_c00428{left:115.594035px;}
.x23_c00428{left:126.320685px;}
.x61_c00428{left:128.904585px;}
.x79_c00428{left:135.379185px;}
.x4f_c00428{left:137.002785px;}
.x18_c00428{left:138.022485px;}
.x8c_c00428{left:139.675785px;}
.x48_c00428{left:147.199785px;}
.x6_c00428{left:148.932285px;}
.x49_c00428{left:158.644185px;}
.x6f_c00428{left:168.638235px;}
.x32_c00428{left:170.192535px;}
.x7_c00428{left:171.207285px;}
.x6a_c00428{left:178.538235px;}
.x82_c00428{left:179.750985px;}
.x4a_c00428{left:180.849885px;}
.x56_c00428{left:191.165685px;}
.x24_c00428{left:192.215085px;}
.x7e_c00428{left:201.308235px;}
.x70_c00428{left:202.392285px;}
.x8_c00428{left:203.921835px;}
.x75_c00428{left:212.292285px;}
.x25_c00428{left:214.386135px;}
.x4b_c00428{left:221.504235px;}
.x9_c00428{left:224.870235px;}
.x26_c00428{left:236.319585px;}
.x84_c00428{left:237.354135px;}
.x71_c00428{left:247.174935px;}
.x19_c00428{left:250.318185px;}
.x40_c00428{left:258.396585px;}
.xa_c00428{left:260.495385px;}
.x27_c00428{left:268.672785px;}
.x57_c00428{left:269.865735px;}
.x85_c00428{left:271.702185px;}
.xb_c00428{left:279.374685px;}
.x28_c00428{left:280.587435px;}
.x65_c00428{left:284.042535px;}
.x1a_c00428{left:291.170535px;}
.x50_c00428{left:302.342685px;}
.x41_c00428{left:304.783035px;}
.x4c_c00428{left:313.128735px;}
.x86_c00428{left:315.024585px;}
.x5e_c00428{left:323.201985px;}
.xc_c00428{left:324.845385px;}
.x51_c00428{left:335.096835px;}
.x62_c00428{left:336.200685px;}
.x7a_c00428{left:337.972785px;}
.x58_c00428{left:344.977035px;}
.x29_c00428{left:346.021485px;}
.xd_c00428{left:347.427285px;}
.x33_c00428{left:357.253035px;}
.x42_c00428{left:368.172735px;}
.xe_c00428{left:369.385485px;}
.x6b_c00428{left:371.256585px;}
.x1b_c00428{left:379.201335px;}
.x4d_c00428{left:380.374485px;}
.x5b_c00428{left:381.517935px;}
.x89_c00428{left:389.507235px;}
.xf_c00428{left:390.625935px;}
.x76_c00428{left:393.452385px;}
.x2a_c00428{left:401.218935px;}
.x77_c00428{left:411.272385px;}
.x4e_c00428{left:412.297035px;}
.x7b_c00428{left:413.331585px;}
.x6c_c00428{left:414.910635px;}
.x1c_c00428{left:423.033585px;}
.x66_c00428{left:424.231485px;}
.x8a_c00428{left:431.047635px;}
.x1d_c00428{left:435.151185px;}
.x78_c00428{left:436.576785px;}
.x7f_c00428{left:441.917835px;}
.x2b_c00428{left:444.912585px;}
.x59_c00428{left:456.490635px;}
.x10_c00428{left:457.708335px;}
.x67_c00428{left:463.658235px;}
.x52_c00428{left:467.430135px;}
.x2c_c00428{left:478.800285px;}
.x1e_c00428{left:489.833835px;}
.x80_c00428{left:499.273485px;}
.x34_c00428{left:501.263385px;}
.x63_c00428{left:511.722735px;}
.x53_c00428{left:512.975085px;}
.x1f_c00428{left:522.721635px;}
.x35_c00428{left:533.542335px;}
.x6d_c00428{left:534.591735px;}
.x11_c00428{left:544.942185px;}
.x5a_c00428{left:555.411435px;}
.x5f_c00428{left:566.865735px;}
.x43_c00428{left:569.276385px;}
.x7c_c00428{left:576.226185px;}
.x6e_c00428{left:577.315185px;}
.x12_c00428{left:578.592285px;}
.x2d_c00428{left:587.660685px;}
.x44_c00428{left:588.908085px;}
.x20_c00428{left:591.328635px;}
.x13_c00428{left:599.956485px;}
.x45_c00428{left:602.500785px;}
.x81_c00428{left:609.584235px;}
.x36_c00428{left:610.648485px;}
.x8b_c00428{left:613.356135px;}
.x87_c00428{left:614.781735px;}
.x2e_c00428{left:621.929535px;}
.x8d_c00428{left:624.755985px;}
.x37_c00428{left:632.418585px;}
.x14_c00428{left:633.512535px;}
.x5c_c00428{left:637.591335px;}
.x68_c00428{left:643.214535px;}
.x15_c00428{left:644.486685px;}
.x8e_c00428{left:646.144935px;}
.x2f_c00428{left:654.822285px;}
.x60_c00428{left:659.257485px;}
.x16_c00428{left:662.677935px;}
.x64_c00428{left:664.113435px;}
.x21_c00428{left:665.984535px;}
.x38_c00428{left:668.137785px;}
.x7d_c00428{left:671.993835px;}
.x69_c00428{left:675.335085px;}
.x2_c00428{left:676.557735px;}
.x8f_c00428{left:680.507835px;}
.x30_c00428{left:687.150735px;}
.x3_c00428{left:688.467435px;}
.x54_c00428{left:689.600985px;}
.x17_c00428{left:698.689185px;}
.x46_c00428{left:701.302785px;}
.x39_c00428{left:709.410885px;}
.x55_c00428{left:713.761935px;}
.x3c_c00428{left:720.142485px;}
.x3a_c00428{left:726.315135px;}
.x47_c00428{left:731.126535px;}
.x3d_c00428{left:732.284835px;}
.x3b_c00428{left:738.091185px;}
.x88_c00428{left:753.505485px;}
.x5d_c00428{left:754.841985px;}
@media print{
.v0_c00428{vertical-align:0.000000pt;}
.v1_c00428{vertical-align:7.585600pt;}
.ls18_c00428{letter-spacing:-3.227846pt;}
.ls31_c00428{letter-spacing:-2.962960pt;}
.lsb_c00428{letter-spacing:-2.390080pt;}
.ls10_c00428{letter-spacing:-2.205280pt;}
.ls37_c00428{letter-spacing:-2.100560pt;}
.ls29_c00428{letter-spacing:-2.038960pt;}
.ls16_c00428{letter-spacing:-2.002000pt;}
.lsf_c00428{letter-spacing:-1.896541pt;}
.ls11_c00428{letter-spacing:-1.435280pt;}
.ls14_c00428{letter-spacing:-1.411379pt;}
.ls1b_c00428{letter-spacing:-1.367274pt;}
.ls27_c00428{letter-spacing:-0.821394pt;}
.ls2d_c00428{letter-spacing:-0.738216pt;}
.ls17_c00428{letter-spacing:-0.094512pt;}
.lsa_c00428{letter-spacing:0.000000pt;}
.lse_c00428{letter-spacing:0.529267pt;}
.ls2_c00428{letter-spacing:0.711990pt;}
.ls1_c00428{letter-spacing:0.781299pt;}
.ls1e_c00428{letter-spacing:1.001827pt;}
.ls12_c00428{letter-spacing:1.073600pt;}
.ls13_c00428{letter-spacing:1.249600pt;}
.ls33_c00428{letter-spacing:1.341842pt;}
.ls5_c00428{letter-spacing:1.442883pt;}
.ls23_c00428{letter-spacing:1.504800pt;}
.ls2e_c00428{letter-spacing:1.524794pt;}
.ls7_c00428{letter-spacing:1.883939pt;}
.ls2f_c00428{letter-spacing:2.041609pt;}
.ls1d_c00428{letter-spacing:2.103200pt;}
.ls24_c00428{letter-spacing:2.120800pt;}
.ls0_c00428{letter-spacing:2.164386pt;}
.ls2b_c00428{letter-spacing:2.226400pt;}
.ls21_c00428{letter-spacing:2.244000pt;}
.ls15_c00428{letter-spacing:2.393609pt;}
.ls1f_c00428{letter-spacing:2.703043pt;}
.ls25_c00428{letter-spacing:2.745609pt;}
.ls8_c00428{letter-spacing:2.778653pt;}
.ls1a_c00428{letter-spacing:2.791254pt;}
.ls32_c00428{letter-spacing:2.807200pt;}
.ls4_c00428{letter-spacing:2.910970pt;}
.ls30_c00428{letter-spacing:2.992000pt;}
.ls34_c00428{letter-spacing:3.000800pt;}
.ls35_c00428{letter-spacing:3.011782pt;}
.ls2c_c00428{letter-spacing:3.081091pt;}
.ls22_c00428{letter-spacing:3.106294pt;}
.lsc_c00428{letter-spacing:3.150400pt;}
.ls26_c00428{letter-spacing:3.159209pt;}
.ls9_c00428{letter-spacing:9.010144pt;}
.ls3_c00428{letter-spacing:12.979648pt;}
.ls6_c00428{letter-spacing:17.894976pt;}
.ls2a_c00428{letter-spacing:43.084976pt;}
.ls1c_c00428{letter-spacing:44.352176pt;}
.ls36_c00428{letter-spacing:45.619376pt;}
.ls28_c00428{letter-spacing:46.886576pt;}
.ls19_c00428{letter-spacing:51.955376pt;}
.ls20_c00428{letter-spacing:53.222576pt;}
.lsd_c00428{letter-spacing:54.489776pt;}
.ws8_c00428{word-spacing:-18.662970pt;}
.wsa_c00428{word-spacing:-17.194883pt;}
.ws5_c00428{word-spacing:-16.533299pt;}
.ws7_c00428{word-spacing:-16.281267pt;}
.ws3_c00428{word-spacing:-15.752000pt;}
.ws6_c00428{word-spacing:-15.657488pt;}
.wsb_c00428{word-spacing:-14.974650pt;}
.ws4_c00428{word-spacing:-14.340621pt;}
.wsc_c00428{word-spacing:-13.860000pt;}
.ws2_c00428{word-spacing:-3.087392pt;}
.ws0_c00428{word-spacing:-1.953248pt;}
.wsf_c00428{word-spacing:0.000000pt;}
.ws1_c00428{word-spacing:2.482867pt;}
.wsd_c00428{word-spacing:5.796736pt;}
.wse_c00428{word-spacing:7.056896pt;}
.ws9_c00428{word-spacing:10.585696pt;}
._19_c00428{margin-left:-15.290468pt;}
._1e_c00428{margin-left:-6.426816pt;}
._17_c00428{margin-left:-5.383101pt;}
._18_c00428{margin-left:-1.706000pt;}
._0_c00428{width:2.757216pt;}
._1_c00428{width:3.938880pt;}
._b_c00428{width:6.237440pt;}
._13_c00428{width:7.308928pt;}
._9_c00428{width:8.506080pt;}
._f_c00428{width:9.834880pt;}
._d_c00428{width:11.278432pt;}
._6_c00428{width:12.286560pt;}
._1c_c00428{width:14.308800pt;}
._7_c00428{width:18.587360pt;}
._16_c00428{width:20.534976pt;}
._4_c00428{width:21.548736pt;}
._a_c00428{width:22.934912pt;}
._15_c00428{width:24.268253pt;}
._1b_c00428{width:26.085312pt;}
._10_c00428{width:27.183993pt;}
._e_c00428{width:28.714048pt;}
._5_c00428{width:30.306848pt;}
._11_c00428{width:31.600448pt;}
._12_c00428{width:33.709280pt;}
._c_c00428{width:35.406976pt;}
._2_c00428{width:36.361600pt;}
._3_c00428{width:37.350720pt;}
._8_c00428{width:39.064608pt;}
._1a_c00428{width:40.063217pt;}
._1d_c00428{width:40.956960pt;}
._14_c00428{width:48.699200pt;}
.fs1b_c00428{font-size:19.712000pt;}
.fs6_c00428{font-size:21.472000pt;}
.fs8_c00428{font-size:24.992000pt;}
.fs21_c00428{font-size:25.168000pt;}
.fs1d_c00428{font-size:27.456000pt;}
.fs9_c00428{font-size:28.864000pt;}
.fs17_c00428{font-size:30.096000pt;}
.fs16_c00428{font-size:32.384000pt;}
.fs12_c00428{font-size:35.376000pt;}
.fs7_c00428{font-size:36.432176pt;}
.fs26_c00428{font-size:40.832176pt;}
.fs5_c00428{font-size:41.008000pt;}
.fs1a_c00428{font-size:41.184000pt;}
.fs13_c00428{font-size:42.064000pt;}
.fs20_c00428{font-size:42.240000pt;}
.fs18_c00428{font-size:42.416000pt;}
.fs22_c00428{font-size:43.084976pt;}
.fsb_c00428{font-size:44.352176pt;}
.fs24_c00428{font-size:44.528000pt;}
.fs15_c00428{font-size:44.880000pt;}
.fs2c_c00428{font-size:45.619376pt;}
.fs1e_c00428{font-size:46.886576pt;}
.fsc_c00428{font-size:47.872176pt;}
.fs10_c00428{font-size:51.955376pt;}
.fs14_c00428{font-size:53.222576pt;}
.fs3_c00428{font-size:54.489776pt;}
.fs19_c00428{font-size:54.912176pt;}
.fsd_c00428{font-size:55.440000pt;}
.fs2a_c00428{font-size:56.144000pt;}
.fs23_c00428{font-size:56.496000pt;}
.fse_c00428{font-size:57.200000pt;}
.fs4_c00428{font-size:58.080000pt;}
.fs1f_c00428{font-size:58.256000pt;}
.fs27_c00428{font-size:59.840000pt;}
.fs2b_c00428{font-size:60.016000pt;}
.fs28_c00428{font-size:60.544176pt;}
.fs1_c00428{font-size:63.008000pt;}
.fs1c_c00428{font-size:63.184176pt;}
.fs11_c00428{font-size:64.944176pt;}
.fs2_c00428{font-size:65.648000pt;}
.fs0_c00428{font-size:68.288000pt;}
.fs25_c00428{font-size:68.992176pt;}
.fsa_c00428{font-size:84.480000pt;}
.fs29_c00428{font-size:84.656000pt;}
.fsf_c00428{font-size:92.224176pt;}
.y0_c00428{bottom:0.000000pt;}
.y1_c00428{bottom:68.000000pt;}
.y24_c00428{bottom:116.504120pt;}
.y23_c00428{bottom:143.748920pt;}
.y22_c00428{bottom:171.627320pt;}
.y21_c00428{bottom:174.161720pt;}
.y1f_c00428{bottom:203.302920pt;}
.y20_c00428{bottom:203.307320pt;}
.y1e_c00428{bottom:260.010120pt;}
.y1d_c00428{bottom:279.656120pt;}
.y1c_c00428{bottom:289.476920pt;}
.y1b_c00428{bottom:319.568520pt;}
.y19_c00428{bottom:349.035320pt;}
.y1a_c00428{bottom:354.420920pt;}
.y18_c00428{bottom:373.741320pt;}
.y16_c00428{bottom:377.864120pt;}
.y17_c00428{bottom:378.180920pt;}
.y15_c00428{bottom:407.955720pt;}
.y14_c00428{bottom:436.788920pt;}
.y12_c00428{bottom:465.930120pt;}
.y11_c00428{bottom:465.936280pt;}
.y13_c00428{bottom:468.781320pt;}
.y10_c00428{bottom:495.392520pt;}
.yf_c00428{bottom:523.908920pt;}
.ye_c00428{bottom:554.004920pt;}
.yd_c00428{bottom:583.150520pt;}
.yc_c00428{bottom:612.608520pt;}
.yb_c00428{bottom:641.124920pt;}
.ya_c00428{bottom:669.632520pt;}
.y9_c00428{bottom:698.148920pt;}
.y8_c00428{bottom:723.805320pt;}
.y6_c00428{bottom:726.977720pt;}
.y7_c00428{bottom:728.874120pt;}
.y5_c00428{bottom:756.752520pt;}
.y4_c00428{bottom:788.753720pt;}
.y3_c00428{bottom:817.899320pt;}
.y2_c00428{bottom:955.069320pt;}
.h1b_c00428{height:20.559000pt;}
.h8_c00428{height:21.073594pt;}
.ha_c00428{height:24.528281pt;}
.h22_c00428{height:26.249438pt;}
.h1e_c00428{height:28.635750pt;}
.h23_c00428{height:28.694594pt;}
.h12_c00428{height:29.538549pt;}
.hb_c00428{height:30.104250pt;}
.h2d_c00428{height:30.382504pt;}
.h1f_c00428{height:31.226460pt;}
.h18_c00428{height:31.389188pt;}
.h11_c00428{height:34.602280pt;}
.h14_c00428{height:34.719609pt;}
.h16_c00428{height:35.446236pt;}
.h9_c00428{height:35.756188pt;}
.h5_c00428{height:36.290191pt;}
.h15_c00428{height:41.283516pt;}
.h27_c00428{height:42.586684pt;}
.h7_c00428{height:42.770063pt;}
.h17_c00428{height:44.025352pt;}
.h21_c00428{height:44.055000pt;}
.h19_c00428{height:44.238563pt;}
.h25_c00428{height:46.441313pt;}
.hd_c00428{height:46.983923pt;}
.h1d_c00428{height:54.411328pt;}
.h2b_c00428{height:55.102266pt;}
.hf_c00428{height:56.138672pt;}
.h20_c00428{height:57.175078pt;}
.h1a_c00428{height:57.271684pt;}
.he_c00428{height:57.822188pt;}
.h28_c00428{height:58.729688pt;}
.h2c_c00428{height:58.902422pt;}
.h24_c00428{height:58.923563pt;}
.h3_c00428{height:61.838906pt;}
.h1c_c00428{height:62.011813pt;}
.h29_c00428{height:63.145684pt;}
.h13_c00428{height:63.739157pt;}
.h4_c00428{height:66.160875pt;}
.h2_c00428{height:67.020938pt;}
.h26_c00428{height:67.712048pt;}
.h6_c00428{height:68.161225pt;}
.hc_c00428{height:82.912500pt;}
.h2a_c00428{height:88.293563pt;}
.h10_c00428{height:90.467954pt;}
.h1_c00428{height:986.666667pt;}
.h0_c00428{height:1122.666667pt;}
.w1_c00428{width:689.333333pt;}
.w0_c00428{width:793.333333pt;}
.x0_c00428{left:0.000000pt;}
.x1_c00428{left:52.000000pt;}
.x22_c00428{left:72.240653pt;}
.x3e_c00428{left:73.327453pt;}
.x4_c00428{left:74.277853pt;}
.x83_c00428{left:75.435053pt;}
.x72_c00428{left:76.970653pt;}
.x5_c00428{left:83.693853pt;}
.x3f_c00428{left:92.762253pt;}
.x73_c00428{left:93.765453pt;}
.x74_c00428{left:96.616653pt;}
.x31_c00428{left:102.750253pt;}
.x23_c00428{left:112.285053pt;}
.x61_c00428{left:114.581853pt;}
.x79_c00428{left:120.337053pt;}
.x4f_c00428{left:121.780253pt;}
.x18_c00428{left:122.686653pt;}
.x8c_c00428{left:124.156253pt;}
.x48_c00428{left:130.844253pt;}
.x6_c00428{left:132.384253pt;}
.x49_c00428{left:141.017053pt;}
.x6f_c00428{left:149.900653pt;}
.x32_c00428{left:151.282253pt;}
.x7_c00428{left:152.184253pt;}
.x6a_c00428{left:158.700653pt;}
.x82_c00428{left:159.778653pt;}
.x4a_c00428{left:160.755453pt;}
.x56_c00428{left:169.925053pt;}
.x24_c00428{left:170.857853pt;}
.x7e_c00428{left:178.940653pt;}
.x70_c00428{left:179.904253pt;}
.x8_c00428{left:181.263853pt;}
.x75_c00428{left:188.704253pt;}
.x25_c00428{left:190.565453pt;}
.x4b_c00428{left:196.892653pt;}
.x9_c00428{left:199.884653pt;}
.x26_c00428{left:210.061853pt;}
.x84_c00428{left:210.981453pt;}
.x71_c00428{left:219.711053pt;}
.x19_c00428{left:222.505053pt;}
.x40_c00428{left:229.685853pt;}
.xa_c00428{left:231.551453pt;}
.x27_c00428{left:238.820253pt;}
.x57_c00428{left:239.880653pt;}
.x85_c00428{left:241.513053pt;}
.xb_c00428{left:248.333053pt;}
.x28_c00428{left:249.411053pt;}
.x65_c00428{left:252.482253pt;}
.x1a_c00428{left:258.818253pt;}
.x50_c00428{left:268.749053pt;}
.x41_c00428{left:270.918253pt;}
.x4c_c00428{left:278.336653pt;}
.x86_c00428{left:280.021853pt;}
.x5e_c00428{left:287.290653pt;}
.xc_c00428{left:288.751453pt;}
.x51_c00428{left:297.863853pt;}
.x62_c00428{left:298.845053pt;}
.x7a_c00428{left:300.420253pt;}
.x58_c00428{left:306.646253pt;}
.x29_c00428{left:307.574653pt;}
.xd_c00428{left:308.824253pt;}
.x33_c00428{left:317.558253pt;}
.x42_c00428{left:327.264653pt;}
.xe_c00428{left:328.342653pt;}
.x6b_c00428{left:330.005853pt;}
.x1b_c00428{left:337.067853pt;}
.x4d_c00428{left:338.110653pt;}
.x5b_c00428{left:339.127053pt;}
.x89_c00428{left:346.228653pt;}
.xf_c00428{left:347.223053pt;}
.x76_c00428{left:349.735453pt;}
.x2a_c00428{left:356.639053pt;}
.x77_c00428{left:365.575453pt;}
.x4e_c00428{left:366.486253pt;}
.x7b_c00428{left:367.405853pt;}
.x6c_c00428{left:368.809453pt;}
.x1c_c00428{left:376.029853pt;}
.x66_c00428{left:377.094653pt;}
.x8a_c00428{left:383.153453pt;}
.x1d_c00428{left:386.801053pt;}
.x78_c00428{left:388.068253pt;}
.x7f_c00428{left:392.815853pt;}
.x2b_c00428{left:395.477853pt;}
.x59_c00428{left:405.769453pt;}
.x10_c00428{left:406.851853pt;}
.x67_c00428{left:412.140653pt;}
.x52_c00428{left:415.493453pt;}
.x2c_c00428{left:425.600253pt;}
.x1e_c00428{left:435.407853pt;}
.x80_c00428{left:443.798653pt;}
.x34_c00428{left:445.567453pt;}
.x63_c00428{left:454.864653pt;}
.x53_c00428{left:455.977853pt;}
.x1f_c00428{left:464.641453pt;}
.x35_c00428{left:474.259853pt;}
.x6d_c00428{left:475.192653pt;}
.x11_c00428{left:484.393053pt;}
.x5a_c00428{left:493.699053pt;}
.x5f_c00428{left:503.880653pt;}
.x43_c00428{left:506.023453pt;}
.x7c_c00428{left:512.201053pt;}
.x6e_c00428{left:513.169053pt;}
.x12_c00428{left:514.304253pt;}
.x2d_c00428{left:522.365053pt;}
.x44_c00428{left:523.473853pt;}
.x20_c00428{left:525.625453pt;}
.x13_c00428{left:533.294653pt;}
.x45_c00428{left:535.556253pt;}
.x81_c00428{left:541.852653pt;}
.x36_c00428{left:542.798653pt;}
.x8b_c00428{left:545.205453pt;}
.x87_c00428{left:546.472653pt;}
.x2e_c00428{left:552.826253pt;}
.x8d_c00428{left:555.338653pt;}
.x37_c00428{left:562.149853pt;}
.x14_c00428{left:563.122253pt;}
.x5c_c00428{left:566.747853pt;}
.x68_c00428{left:571.746253pt;}
.x15_c00428{left:572.877053pt;}
.x8e_c00428{left:574.351053pt;}
.x2f_c00428{left:582.064253pt;}
.x60_c00428{left:586.006653pt;}
.x16_c00428{left:589.047053pt;}
.x64_c00428{left:590.323053pt;}
.x21_c00428{left:591.986253pt;}
.x38_c00428{left:593.900253pt;}
.x7d_c00428{left:597.327853pt;}
.x69_c00428{left:600.297853pt;}
.x2_c00428{left:601.384653pt;}
.x8f_c00428{left:604.895853pt;}
.x30_c00428{left:610.800653pt;}
.x3_c00428{left:611.971053pt;}
.x54_c00428{left:612.978653pt;}
.x17_c00428{left:621.057053pt;}
.x46_c00428{left:623.380253pt;}
.x39_c00428{left:630.587453pt;}
.x55_c00428{left:634.455053pt;}
.x3c_c00428{left:640.126653pt;}
.x3a_c00428{left:645.613453pt;}
.x47_c00428{left:649.890253pt;}
.x3d_c00428{left:650.919853pt;}
.x3b_c00428{left:656.081053pt;}
.x88_c00428{left:669.782653pt;}
.x5d_c00428{left:670.970653pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3b53b7242117e25a91e2b458.woff2')format("woff");}.ff1_c00429{font-family:ff1_c00429;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00429;src:url('chunks/assets/font_30c7941642198adce16695c8.woff2')format("woff");}.ff2_c00429{font-family:ff2_c00429;line-height:1.401855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00429;src:url('chunks/assets/font_936f34ce9c833ce8862bb3a4.woff2')format("woff");}.ff3_c00429{font-family:ff3_c00429;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00429;src:url('chunks/assets/font_e6b83f5cb6ea6f646ef7a6ba.woff2')format("woff");}.ff4_c00429{font-family:ff4_c00429;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00429;src:url('chunks/assets/font_d4db478f20ceb401f46099ef.woff2')format("woff");}.ff5_c00429{font-family:ff5_c00429;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00429;src:url('chunks/assets/font_d384370eca6679ba54f9a1ee.woff2')format("woff");}.ff6_c00429{font-family:ff6_c00429;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00429;src:url('chunks/assets/font_e76283e239f1021565e2b2b8.woff2')format("woff");}.ff7_c00429{font-family:ff7_c00429;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mbb_c00429{transform:matrix(0.027779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.027779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.027779,0.000000,0.000000,0.250000,0,0);}
.md0_c00429{transform:matrix(0.055556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.055556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.055556,0.000000,0.000000,0.250000,0,0);}
.ma1_c00429{transform:matrix(0.062501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062501,0.000000,0.000000,0.250000,0,0);}
.ma2_c00429{transform:matrix(0.065973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065973,0.000000,0.000000,0.250000,0,0);}
.m46_c00429{transform:matrix(0.069445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.069445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.069445,0.000000,0.000000,0.250000,0,0);}
.m55_c00429{transform:matrix(0.070513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070513,0.000000,0.000000,0.250000,0,0);}
.m13_c00429{transform:matrix(0.092308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092308,0.000000,0.000000,0.250000,0,0);}
.m30_c00429{transform:matrix(0.108459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108459,0.000000,0.000000,0.250000,0,0);}
.m16_c00429{transform:matrix(0.108975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108975,0.000000,0.000000,0.250000,0,0);}
.m2b_c00429{transform:matrix(0.110715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110715,0.000000,0.000000,0.250000,0,0);}
.m38_c00429{transform:matrix(0.111486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111486,0.000000,0.000000,0.250000,0,0);}
.mf_c00429{transform:matrix(0.113247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113247,0.000000,0.000000,0.250000,0,0);}
.mba_c00429{transform:matrix(0.114583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114583,0.000000,0.000000,0.250000,0,0);}
.m51_c00429{transform:matrix(0.117395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117395,0.000000,0.000000,0.250000,0,0);}
.m65_c00429{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);}
.md1_c00429{transform:matrix(0.125772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125772,0.000000,0.000000,0.250000,0,0);}
.m9_c00429{transform:matrix(0.129411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129411,0.000000,0.000000,0.250000,0,0);}
.m9c_c00429{transform:matrix(0.134260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134260,0.000000,0.000000,0.250000,0,0);}
.m1_c00429{transform:matrix(0.142003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142003,0.000000,0.000000,0.250000,0,0);}
.mcf_c00429{transform:matrix(0.150463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150463,0.000000,0.000000,0.250000,0,0);}
.m54_c00429{transform:matrix(0.153846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153846,0.000000,0.000000,0.250000,0,0);}
.m45_c00429{transform:matrix(0.168749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168749,0.000000,0.000000,0.250000,0,0);}
.maf_c00429{transform:matrix(0.170731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170731,0.000000,0.000000,0.250000,0,0);}
.m10_c00429{transform:matrix(0.173077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173077,0.000000,0.000000,0.250000,0,0);}
.mbc_c00429{transform:matrix(0.173611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173611,0.000000,0.000000,0.250000,0,0);}
.m37_c00429{transform:matrix(0.175676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175676,0.000000,0.000000,0.250000,0,0);}
.mae_c00429{transform:matrix(0.176830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176830,0.000000,0.000000,0.250000,0,0);}
.m6f_c00429{transform:matrix(0.177632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177632,0.000000,0.000000,0.250000,0,0);}
.m39_c00429{transform:matrix(0.179053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179053,0.000000,0.000000,0.250000,0,0);}
.m8b_c00429{transform:matrix(0.179824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179824,0.000000,0.000000,0.250000,0,0);}
.m9f_c00429{transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);}
.m2a_c00429{transform:matrix(0.182143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182143,0.000000,0.000000,0.250000,0,0);}
.m77_c00429{transform:matrix(0.183594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183594,0.000000,0.000000,0.250000,0,0);}
.m6a_c00429{transform:matrix(0.187474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187474,0.000000,0.000000,0.250000,0,0);}
.mdd_c00429{transform:matrix(0.191352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191352,0.000000,0.000000,0.250000,0,0);}
.ma0_c00429{transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);}
.m9e_c00429{transform:matrix(0.203704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203704,0.000000,0.000000,0.250000,0,0);}
.m28_c00429{transform:matrix(0.205225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205225,0.000000,0.000000,0.250000,0,0);}
.m87_c00429{transform:matrix(0.208373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208373,0.000000,0.000000,0.250000,0,0);}
.m23_c00429{transform:matrix(0.209737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209737,0.000000,0.000000,0.250000,0,0);}
.md2_c00429{transform:matrix(0.210648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210648,0.000000,0.000000,0.250000,0,0);}
.m64_c00429{transform:matrix(0.211111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211111,0.000000,0.000000,0.250000,0,0);}
.m9d_c00429{transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);}
.md7_c00429{transform:matrix(0.227758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227758,0.000000,0.000000,0.250000,0,0);}
.mda_c00429{transform:matrix(0.228735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228735,0.000000,0.000000,0.250000,0,0);}
.mc4_c00429{transform:matrix(0.230873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230873,0.000000,0.000000,0.250000,0,0);}
.maa_c00429{transform:matrix(0.233175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233175,0.000000,0.000000,0.250000,0,0);}
.m94_c00429{transform:matrix(0.234286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234286,0.000000,0.000000,0.250000,0,0);}
.m7_c00429{transform:matrix(0.235423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235423,0.000000,0.000000,0.250000,0,0);}
.m8e_c00429{transform:matrix(0.235853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235853,0.000000,0.000000,0.250000,0,0);}
.m8d_c00429{transform:matrix(0.237026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237026,0.000000,0.000000,0.250000,0,0);}
.m26_c00429{transform:matrix(0.246546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246546,0.000000,0.000000,0.250000,0,0);}
.m9a_c00429{transform:matrix(0.246581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246581,0.000000,0.000000,0.250000,0,0);}
.m0_c00429{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00429{transform:matrix(0.251756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251756,0.000000,0.000000,0.250000,0,0);}
.ma3_c00429{transform:matrix(0.252459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252459,0.000000,0.000000,0.250000,0,0);}
.mbd_c00429{transform:matrix(0.252476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252476,0.000000,0.000000,0.250000,0,0);}
.m3f_c00429{transform:matrix(0.254018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254018,0.000000,0.000000,0.250000,0,0);}
.m8_c00429{transform:matrix(0.254402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254402,0.000000,0.000000,0.250000,0,0);}
.m82_c00429{transform:matrix(0.254774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254774,0.000000,0.000000,0.250000,0,0);}
.m59_c00429{transform:matrix(0.258908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258908,0.000000,0.000000,0.250000,0,0);}
.m2_c00429{transform:matrix(0.259345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259345,0.000000,0.000000,0.250000,0,0);}
.m2e_c00429{transform:matrix(0.259862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259862,0.000000,0.000000,0.250000,0,0);}
.me5_c00429{transform:matrix(0.260387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260387,0.000000,0.000000,0.250000,0,0);}
.m17_c00429{transform:matrix(0.261002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261002,0.000000,0.000000,0.250000,0,0);}
.md_c00429{transform:matrix(0.261838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261838,0.000000,0.000000,0.250000,0,0);}
.m34_c00429{transform:matrix(0.261860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261860,0.000000,0.000000,0.250000,0,0);}
.m53_c00429{transform:matrix(0.263974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263974,0.000000,0.000000,0.250000,0,0);}
.m8a_c00429{transform:matrix(0.265422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265422,0.000000,0.000000,0.250000,0,0);}
.mcc_c00429{transform:matrix(0.266341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266341,0.000000,0.000000,0.250000,0,0);}
.m18_c00429{transform:matrix(0.266614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266614,0.000000,0.000000,0.250000,0,0);}
.mcb_c00429{transform:matrix(0.267277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267277,0.000000,0.000000,0.250000,0,0);}
.m6_c00429{transform:matrix(0.267951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267951,0.000000,0.000000,0.250000,0,0);}
.mc3_c00429{transform:matrix(0.268566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268566,0.000000,0.000000,0.250000,0,0);}
.mc0_c00429{transform:matrix(0.268755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268755,0.000000,0.000000,0.250000,0,0);}
.m61_c00429{transform:matrix(0.270603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270603,0.000000,0.000000,0.250000,0,0);}
.m12_c00429{transform:matrix(0.271206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271206,0.000000,0.000000,0.250000,0,0);}
.mc1_c00429{transform:matrix(0.272435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272435,0.000000,0.000000,0.250000,0,0);}
.mc5_c00429{transform:matrix(0.273463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273463,0.000000,0.000000,0.250000,0,0);}
.m56_c00429{transform:matrix(0.273625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273625,0.000000,0.000000,0.250000,0,0);}
.mf2_c00429{transform:matrix(0.275136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275136,0.000000,0.000000,0.250000,0,0);}
.m75_c00429{transform:matrix(0.275574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275574,0.000000,0.000000,0.250000,0,0);}
.mb4_c00429{transform:matrix(0.276103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276103,0.000000,0.000000,0.250000,0,0);}
.me4_c00429{transform:matrix(0.276278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276278,0.000000,0.000000,0.250000,0,0);}
.mcd_c00429{transform:matrix(0.276821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276821,0.000000,0.000000,0.250000,0,0);}
.m89_c00429{transform:matrix(0.277264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277264,0.000000,0.000000,0.250000,0,0);}
.m68_c00429{transform:matrix(0.277895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277895,0.000000,0.000000,0.250000,0,0);}
.md6_c00429{transform:matrix(0.278158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278158,0.000000,0.000000,0.250000,0,0);}
.m20_c00429{transform:matrix(0.278775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278775,0.000000,0.000000,0.250000,0,0);}
.m7e_c00429{transform:matrix(0.280225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280225,0.000000,0.000000,0.250000,0,0);}
.me8_c00429{transform:matrix(0.280311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280311,0.000000,0.000000,0.250000,0,0);}
.me9_c00429{transform:matrix(0.281047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281047,0.000000,0.000000,0.250000,0,0);}
.m72_c00429{transform:matrix(0.281449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281449,0.000000,0.000000,0.250000,0,0);}
.mb9_c00429{transform:matrix(0.282201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282201,0.000000,0.000000,0.250000,0,0);}
.me0_c00429{transform:matrix(0.283846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283846,0.000000,0.000000,0.250000,0,0);}
.mb5_c00429{transform:matrix(0.284563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284563,0.000000,0.000000,0.250000,0,0);}
.ma4_c00429{transform:matrix(0.284673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284673,0.000000,0.000000,0.250000,0,0);}
.m5a_c00429{transform:matrix(0.284684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284684,0.000000,0.000000,0.250000,0,0);}
.m36_c00429{transform:matrix(0.286526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286526,0.000000,0.000000,0.250000,0,0);}
.m5c_c00429{transform:matrix(0.287241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287241,0.000000,0.000000,0.250000,0,0);}
.m67_c00429{transform:matrix(0.287544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287544,0.000000,0.000000,0.250000,0,0);}
.m22_c00429{transform:matrix(0.288105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288105,0.000000,0.000000,0.250000,0,0);}
.m41_c00429{transform:matrix(0.288691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288691,0.000000,0.000000,0.250000,0,0);}
.m97_c00429{transform:matrix(0.288960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288960,0.000000,0.000000,0.250000,0,0);}
.mb1_c00429{transform:matrix(0.289127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289127,0.000000,0.000000,0.250000,0,0);}
.m98_c00429{transform:matrix(0.289782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289782,0.000000,0.000000,0.250000,0,0);}
.m80_c00429{transform:matrix(0.290136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290136,0.000000,0.000000,0.250000,0,0);}
.m79_c00429{transform:matrix(0.290234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290234,0.000000,0.000000,0.250000,0,0);}
.m66_c00429{transform:matrix(0.290258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290258,0.000000,0.000000,0.250000,0,0);}
.m8c_c00429{transform:matrix(0.290344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290344,0.000000,0.000000,0.250000,0,0);}
.mb3_c00429{transform:matrix(0.291490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291490,0.000000,0.000000,0.250000,0,0);}
.m71_c00429{transform:matrix(0.292169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292169,0.000000,0.000000,0.250000,0,0);}
.m42_c00429{transform:matrix(0.292280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292280,0.000000,0.000000,0.250000,0,0);}
.m5b_c00429{transform:matrix(0.292782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292782,0.000000,0.000000,0.250000,0,0);}
.m85_c00429{transform:matrix(0.293044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293044,0.000000,0.000000,0.250000,0,0);}
.me7_c00429{transform:matrix(0.293220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293220,0.000000,0.000000,0.250000,0,0);}
.me3_c00429{transform:matrix(0.293517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293517,0.000000,0.000000,0.250000,0,0);}
.mb8_c00429{transform:matrix(0.293580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293580,0.000000,0.000000,0.250000,0,0);}
.m49_c00429{transform:matrix(0.294052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294052,0.000000,0.000000,0.250000,0,0);}
.ma8_c00429{transform:matrix(0.294159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294159,0.000000,0.000000,0.250000,0,0);}
.m91_c00429{transform:matrix(0.295509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295509,0.000000,0.000000,0.250000,0,0);}
.mc9_c00429{transform:matrix(0.296059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296059,0.000000,0.000000,0.250000,0,0);}
.m76_c00429{transform:matrix(0.296428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296428,0.000000,0.000000,0.250000,0,0);}
.md9_c00429{transform:matrix(0.296661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296661,0.000000,0.000000,0.250000,0,0);}
.mec_c00429{transform:matrix(0.296916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296916,0.000000,0.000000,0.250000,0,0);}
.m19_c00429{transform:matrix(0.298204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298204,0.000000,0.000000,0.250000,0,0);}
.m7d_c00429{transform:matrix(0.298310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298310,0.000000,0.000000,0.250000,0,0);}
.m5d_c00429{transform:matrix(0.298423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298423,0.000000,0.000000,0.250000,0,0);}
.ma6_c00429{transform:matrix(0.298471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298471,0.000000,0.000000,0.250000,0,0);}
.m14_c00429{transform:matrix(0.298961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298961,0.000000,0.000000,0.250000,0,0);}
.m4e_c00429{transform:matrix(0.299552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299552,0.000000,0.000000,0.250000,0,0);}
.m27_c00429{transform:matrix(0.299612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299612,0.000000,0.000000,0.250000,0,0);}
.ma5_c00429{transform:matrix(0.299618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299618,0.000000,0.000000,0.250000,0,0);}
.m31_c00429{transform:matrix(0.299806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299806,0.000000,0.000000,0.250000,0,0);}
.m57_c00429{transform:matrix(0.300477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300477,0.000000,0.000000,0.250000,0,0);}
.m74_c00429{transform:matrix(0.301288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301288,0.000000,0.000000,0.250000,0,0);}
.m63_c00429{transform:matrix(0.301753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301753,0.000000,0.000000,0.250000,0,0);}
.me_c00429{transform:matrix(0.304140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304140,0.000000,0.000000,0.250000,0,0);}
.m7b_c00429{transform:matrix(0.304344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304344,0.000000,0.000000,0.250000,0,0);}
.m24_c00429{transform:matrix(0.304766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304766,0.000000,0.000000,0.250000,0,0);}
.m4_c00429{transform:matrix(0.305071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305071,0.000000,0.000000,0.250000,0,0);}
.m83_c00429{transform:matrix(0.305899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305899,0.000000,0.000000,0.250000,0,0);}
.m90_c00429{transform:matrix(0.306157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306157,0.000000,0.000000,0.250000,0,0);}
.m62_c00429{transform:matrix(0.306521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306521,0.000000,0.000000,0.250000,0,0);}
.mee_c00429{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.md8_c00429{transform:matrix(0.307142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307142,0.000000,0.000000,0.250000,0,0);}
.mc2_c00429{transform:matrix(0.307314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307314,0.000000,0.000000,0.250000,0,0);}
.m15_c00429{transform:matrix(0.307531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307531,0.000000,0.000000,0.250000,0,0);}
.mab_c00429{transform:matrix(0.308002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308002,0.000000,0.000000,0.250000,0,0);}
.m95_c00429{transform:matrix(0.308451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308451,0.000000,0.000000,0.250000,0,0);}
.m7f_c00429{transform:matrix(0.309742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309742,0.000000,0.000000,0.250000,0,0);}
.mf0_c00429{transform:matrix(0.310983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310983,0.000000,0.000000,0.250000,0,0);}
.m3d_c00429{transform:matrix(0.311483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311483,0.000000,0.000000,0.250000,0,0);}
.m11_c00429{transform:matrix(0.312641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312641,0.000000,0.000000,0.250000,0,0);}
.mc_c00429{transform:matrix(0.313188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313188,0.000000,0.000000,0.250000,0,0);}
.mce_c00429{transform:matrix(0.313660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313660,0.000000,0.000000,0.250000,0,0);}
.m96_c00429{transform:matrix(0.314088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314088,0.000000,0.000000,0.250000,0,0);}
.ma7_c00429{transform:matrix(0.315588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315588,0.000000,0.000000,0.250000,0,0);}
.mf1_c00429{transform:matrix(0.316160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316160,0.000000,0.000000,0.250000,0,0);}
.m3a_c00429{transform:matrix(0.317222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317222,0.000000,0.000000,0.250000,0,0);}
.med_c00429{transform:matrix(0.317366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317366,0.000000,0.000000,0.250000,0,0);}
.m5_c00429{transform:matrix(0.317691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317691,0.000000,0.000000,0.250000,0,0);}
.m3e_c00429{transform:matrix(0.318051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318051,0.000000,0.000000,0.250000,0,0);}
.m5e_c00429{transform:matrix(0.318328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318328,0.000000,0.000000,0.250000,0,0);}
.m8f_c00429{transform:matrix(0.318396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318396,0.000000,0.000000,0.250000,0,0);}
.m44_c00429{transform:matrix(0.319112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319112,0.000000,0.000000,0.250000,0,0);}
.m52_c00429{transform:matrix(0.321428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321428,0.000000,0.000000,0.250000,0,0);}
.m4b_c00429{transform:matrix(0.321782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321782,0.000000,0.000000,0.250000,0,0);}
.m2f_c00429{transform:matrix(0.323642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323642,0.000000,0.000000,0.250000,0,0);}
.m73_c00429{transform:matrix(0.324116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324116,0.000000,0.000000,0.250000,0,0);}
.m92_c00429{transform:matrix(0.324221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324221,0.000000,0.000000,0.250000,0,0);}
.m21_c00429{transform:matrix(0.324300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324300,0.000000,0.000000,0.250000,0,0);}
.m7a_c00429{transform:matrix(0.324375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324375,0.000000,0.000000,0.250000,0,0);}
.m4c_c00429{transform:matrix(0.324462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324462,0.000000,0.000000,0.250000,0,0);}
.m81_c00429{transform:matrix(0.324558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324558,0.000000,0.000000,0.250000,0,0);}
.me6_c00429{transform:matrix(0.325058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325058,0.000000,0.000000,0.250000,0,0);}
.m7c_c00429{transform:matrix(0.326637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326637,0.000000,0.000000,0.250000,0,0);}
.m3c_c00429{transform:matrix(0.326699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326699,0.000000,0.000000,0.250000,0,0);}
.m47_c00429{transform:matrix(0.328008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328008,0.000000,0.000000,0.250000,0,0);}
.mb2_c00429{transform:matrix(0.328111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328111,0.000000,0.000000,0.250000,0,0);}
.m1a_c00429{transform:matrix(0.328513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328513,0.000000,0.000000,0.250000,0,0);}
.md5_c00429{transform:matrix(0.329066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329066,0.000000,0.000000,0.250000,0,0);}
.mb0_c00429{transform:matrix(0.329293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329293,0.000000,0.000000,0.250000,0,0);}
.mad_c00429{transform:matrix(0.329517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329517,0.000000,0.000000,0.250000,0,0);}
.m6b_c00429{transform:matrix(0.329616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329616,0.000000,0.000000,0.250000,0,0);}
.m84_c00429{transform:matrix(0.330300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330300,0.000000,0.000000,0.250000,0,0);}
.m50_c00429{transform:matrix(0.330800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330800,0.000000,0.000000,0.250000,0,0);}
.m4a_c00429{transform:matrix(0.331448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331448,0.000000,0.000000,0.250000,0,0);}
.m33_c00429{transform:matrix(0.331829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331829,0.000000,0.000000,0.250000,0,0);}
.m48_c00429{transform:matrix(0.331879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331879,0.000000,0.000000,0.250000,0,0);}
.mef_c00429{transform:matrix(0.332330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332330,0.000000,0.000000,0.250000,0,0);}
.mca_c00429{transform:matrix(0.333023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333023,0.000000,0.000000,0.250000,0,0);}
.m69_c00429{transform:matrix(0.333082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333082,0.000000,0.000000,0.250000,0,0);}
.m4f_c00429{transform:matrix(0.333408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333408,0.000000,0.000000,0.250000,0,0);}
.mbe_c00429{transform:matrix(0.336251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336251,0.000000,0.000000,0.250000,0,0);}
.m2c_c00429{transform:matrix(0.336305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336305,0.000000,0.000000,0.250000,0,0);}
.m1c_c00429{transform:matrix(0.336819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336819,0.000000,0.000000,0.250000,0,0);}
.m25_c00429{transform:matrix(0.342311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342311,0.000000,0.000000,0.250000,0,0);}
.mbf_c00429{transform:matrix(0.343122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343122,0.000000,0.000000,0.250000,0,0);}
.m4d_c00429{transform:matrix(0.344418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344418,0.000000,0.000000,0.250000,0,0);}
.m29_c00429{transform:matrix(0.345220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345220,0.000000,0.000000,0.250000,0,0);}
.m78_c00429{transform:matrix(0.345756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345756,0.000000,0.000000,0.250000,0,0);}
.m43_c00429{transform:matrix(0.346221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346221,0.000000,0.000000,0.250000,0,0);}
.m6e_c00429{transform:matrix(0.346511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346511,0.000000,0.000000,0.250000,0,0);}
.mdc_c00429{transform:matrix(0.346827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346827,0.000000,0.000000,0.250000,0,0);}
.mb_c00429{transform:matrix(0.347414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347414,0.000000,0.000000,0.250000,0,0);}
.m86_c00429{transform:matrix(0.347817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347817,0.000000,0.000000,0.250000,0,0);}
.mea_c00429{transform:matrix(0.349976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349976,0.000000,0.000000,0.250000,0,0);}
.mac_c00429{transform:matrix(0.350096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350096,0.000000,0.000000,0.250000,0,0);}
.m1d_c00429{transform:matrix(0.350614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350614,0.000000,0.000000,0.250000,0,0);}
.m6d_c00429{transform:matrix(0.351005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351005,0.000000,0.000000,0.250000,0,0);}
.mdf_c00429{transform:matrix(0.353979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353979,0.000000,0.000000,0.250000,0,0);}
.mde_c00429{transform:matrix(0.354300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354300,0.000000,0.000000,0.250000,0,0);}
.m5f_c00429{transform:matrix(0.354321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354321,0.000000,0.000000,0.250000,0,0);}
.m6c_c00429{transform:matrix(0.355342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355342,0.000000,0.000000,0.250000,0,0);}
.m40_c00429{transform:matrix(0.356405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356405,0.000000,0.000000,0.250000,0,0);}
.m9b_c00429{transform:matrix(0.356440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356440,0.000000,0.000000,0.250000,0,0);}
.me2_c00429{transform:matrix(0.356816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356816,0.000000,0.000000,0.250000,0,0);}
.ma9_c00429{transform:matrix(0.357051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357051,0.000000,0.000000,0.250000,0,0);}
.m58_c00429{transform:matrix(0.361884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361884,0.000000,0.000000,0.250000,0,0);}
.mc7_c00429{transform:matrix(0.362400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362400,0.000000,0.000000,0.250000,0,0);}
.m60_c00429{transform:matrix(0.363517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363517,0.000000,0.000000,0.250000,0,0);}
.mb6_c00429{transform:matrix(0.366724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366724,0.000000,0.000000,0.250000,0,0);}
.m99_c00429{transform:matrix(0.366926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366926,0.000000,0.000000,0.250000,0,0);}
.m3_c00429{transform:matrix(0.368194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368194,0.000000,0.000000,0.250000,0,0);}
.mb7_c00429{transform:matrix(0.370425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370425,0.000000,0.000000,0.250000,0,0);}
.meb_c00429{transform:matrix(0.371761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371761,0.000000,0.000000,0.250000,0,0);}
.m32_c00429{transform:matrix(0.372632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372632,0.000000,0.000000,0.250000,0,0);}
.m93_c00429{transform:matrix(0.372817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372817,0.000000,0.000000,0.250000,0,0);}
.m70_c00429{transform:matrix(0.374257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374257,0.000000,0.000000,0.250000,0,0);}
.m2d_c00429{transform:matrix(0.374487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374487,0.000000,0.000000,0.250000,0,0);}
.md4_c00429{transform:matrix(0.374923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374923,0.000000,0.000000,0.250000,0,0);}
.m3b_c00429{transform:matrix(0.375790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375790,0.000000,0.000000,0.250000,0,0);}
.me1_c00429{transform:matrix(0.381114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381114,0.000000,0.000000,0.250000,0,0);}
.mdb_c00429{transform:matrix(0.382943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382943,0.000000,0.000000,0.250000,0,0);}
.mc8_c00429{transform:matrix(0.383209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383209,0.000000,0.000000,0.250000,0,0);}
.m1f_c00429{transform:matrix(0.386769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386769,0.000000,0.000000,0.250000,0,0);}
.m88_c00429{transform:matrix(0.392559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392559,0.000000,0.000000,0.250000,0,0);}
.mc6_c00429{transform:matrix(0.446282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446282,0.000000,0.000000,0.250000,0,0);}
.m1e_c00429{transform:matrix(0.453151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453151,0.000000,0.000000,0.250000,0,0);}
.ma_c00429{transform:matrix(0.454042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454042,0.000000,0.000000,0.250000,0,0);}
.md3_c00429{transform:matrix(0.454152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454152,0.000000,0.000000,0.250000,0,0);}
.m35_c00429{transform:matrix(0.460706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460706,0.000000,0.000000,0.250000,0,0);}
.v0_c00429{vertical-align:0.000000px;}
.v2_c00429{vertical-align:4.257000px;}
.v1_c00429{vertical-align:5.702400px;}
.ls33_c00429{letter-spacing:-3.049200px;}
.lsd_c00429{letter-spacing:-2.515590px;}
.ls19_c00429{letter-spacing:-2.217600px;}
.ls38_c00429{letter-spacing:-2.065219px;}
.ls2f_c00429{letter-spacing:-1.961309px;}
.ls1a_c00429{letter-spacing:-1.645915px;}
.ls8_c00429{letter-spacing:-1.538467px;}
.ls36_c00429{letter-spacing:-1.510740px;}
.ls37_c00429{letter-spacing:-1.423105px;}
.ls22_c00429{letter-spacing:-1.343628px;}
.ls31_c00429{letter-spacing:-0.927175px;}
.lsb_c00429{letter-spacing:-0.742203px;}
.ls39_c00429{letter-spacing:-0.488743px;}
.ls7_c00429{letter-spacing:0.000000px;}
.ls32_c00429{letter-spacing:0.208435px;}
.ls18_c00429{letter-spacing:0.258746px;}
.ls24_c00429{letter-spacing:0.470448px;}
.ls35_c00429{letter-spacing:0.500702px;}
.ls3_c00429{letter-spacing:0.603742px;}
.ls23_c00429{letter-spacing:0.704365px;}
.ls4_c00429{letter-spacing:0.819364px;}
.ls0_c00429{letter-spacing:0.965609px;}
.ls5_c00429{letter-spacing:1.552478px;}
.ls2_c00429{letter-spacing:1.768100px;}
.ls17_c00429{letter-spacing:1.881000px;}
.ls1c_c00429{letter-spacing:1.883099px;}
.ls21_c00429{letter-spacing:1.940598px;}
.ls6_c00429{letter-spacing:2.033460px;}
.ls34_c00429{letter-spacing:2.158200px;}
.ls1_c00429{letter-spacing:2.296166px;}
.ls30_c00429{letter-spacing:2.376000px;}
.ls11_c00429{letter-spacing:2.425500px;}
.ls16_c00429{letter-spacing:2.455200px;}
.ls29_c00429{letter-spacing:2.494028px;}
.ls14_c00429{letter-spacing:2.494810px;}
.ls1d_c00429{letter-spacing:2.514600px;}
.lsf_c00429{letter-spacing:2.534400px;}
.ls26_c00429{letter-spacing:2.574000px;}
.ls2c_c00429{letter-spacing:2.601839px;}
.ls15_c00429{letter-spacing:2.692810px;}
.ls28_c00429{letter-spacing:3.078900px;}
.ls27_c00429{letter-spacing:3.088810px;}
.ls9_c00429{letter-spacing:3.207610px;}
.lsc_c00429{letter-spacing:3.227400px;}
.ls2e_c00429{letter-spacing:3.257110px;}
.ls2b_c00429{letter-spacing:3.370891px;}
.ls10_c00429{letter-spacing:3.465000px;}
.ls13_c00429{letter-spacing:3.573900px;}
.lsa_c00429{letter-spacing:3.593700px;}
.ls1f_c00429{letter-spacing:3.623400px;}
.ls25_c00429{letter-spacing:27.086400px;}
.lse_c00429{letter-spacing:48.470598px;}
.ls1b_c00429{letter-spacing:49.896198px;}
.ls20_c00429{letter-spacing:51.321798px;}
.ls1e_c00429{letter-spacing:52.747398px;}
.ls2a_c00429{letter-spacing:54.172998px;}
.ls12_c00429{letter-spacing:55.598598px;}
.ls2d_c00429{letter-spacing:58.449798px;}
.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;}
}
.ws3_c00429{word-spacing:-19.736600px;}
.ws5_c00429{word-spacing:-19.520978px;}
.ws4_c00429{word-spacing:-18.787864px;}
.ws8_c00429{word-spacing:-16.545395px;}
.ws6_c00429{word-spacing:-12.870000px;}
.ws1_c00429{word-spacing:-3.863218px;}
.wsa_c00429{word-spacing:0.000000px;}
.ws9_c00429{word-spacing:0.259776px;}
.ws0_c00429{word-spacing:1.172952px;}
.ws2_c00429{word-spacing:15.940474px;}
.ws7_c00429{word-spacing:22.784784px;}
._17_c00429{margin-left:-21.849696px;}
._16_c00429{margin-left:-5.452484px;}
._12_c00429{margin-left:-3.243240px;}
._15_c00429{margin-left:-1.480604px;}
._11_c00429{width:2.779920px;}
._3_c00429{width:4.548852px;}
._e_c00429{width:6.181560px;}
._9_c00429{width:7.675747px;}
._14_c00429{width:9.559242px;}
._a_c00429{width:11.140470px;}
._18_c00429{width:15.165414px;}
._2_c00429{width:19.647936px;}
._5_c00429{width:24.077790px;}
._4_c00429{width:25.515270px;}
._7_c00429{width:26.952948px;}
._c_c00429{width:30.332848px;}
._0_c00429{width:32.955015px;}
._1_c00429{width:34.574958px;}
._f_c00429{width:35.703716px;}
._b_c00429{width:36.812859px;}
._10_c00429{width:39.890664px;}
._6_c00429{width:42.979860px;}
._d_c00429{width:44.346258px;}
._8_c00429{width:45.640980px;}
._13_c00429{width:46.813338px;}
.fc0_c00429{color:transparent;}
.fs19_c00429{font-size:27.086400px;}
.fs24_c00429{font-size:27.720000px;}
.fs10_c00429{font-size:37.620000px;}
.fs25_c00429{font-size:39.204000px;}
.fs1_c00429{font-size:42.372000px;}
.fs18_c00429{font-size:42.768000px;}
.fs23_c00429{font-size:43.164000px;}
.fs0_c00429{font-size:43.956198px;}
.fs12_c00429{font-size:44.154000px;}
.fs1d_c00429{font-size:44.352000px;}
.fs21_c00429{font-size:47.520000px;}
.fs7_c00429{font-size:48.470598px;}
.fs4_c00429{font-size:48.510000px;}
.fsf_c00429{font-size:49.104000px;}
.fsd_c00429{font-size:49.896198px;}
.fs13_c00429{font-size:50.292000px;}
.fs5_c00429{font-size:50.688000px;}
.fs16_c00429{font-size:51.321798px;}
.fs17_c00429{font-size:51.480000px;}
.fs14_c00429{font-size:52.747398px;}
.fse_c00429{font-size:53.856198px;}
.fs1c_c00429{font-size:54.172998px;}
.fsa_c00429{font-size:55.598598px;}
.fs1e_c00429{font-size:58.449798px;}
.fs1b_c00429{font-size:61.578000px;}
.fs1a_c00429{font-size:61.776198px;}
.fs11_c00429{font-size:63.360000px;}
.fs2_c00429{font-size:64.152198px;}
.fs6_c00429{font-size:64.548000px;}
.fs20_c00429{font-size:64.944000px;}
.fs1f_c00429{font-size:65.142198px;}
.fs9_c00429{font-size:69.300000px;}
.fsb_c00429{font-size:71.478000px;}
.fs3_c00429{font-size:71.874000px;}
.fs15_c00429{font-size:72.468000px;}
.fsc_c00429{font-size:72.864000px;}
.fs8_c00429{font-size:76.032198px;}
.fs22_c00429{font-size:87.120000px;}
.y0_c00429{bottom:0.000000px;}
.y1b_c00429{bottom:46.852935px;}
.y1_c00429{bottom:75.000000px;}
.y1c_c00429{bottom:76.790535px;}
.y1a_c00429{bottom:125.617335px;}
.y19_c00429{bottom:155.911335px;}
.y18_c00429{bottom:191.189985px;}
.y17_c00429{bottom:223.983735px;}
.y16_c00429{bottom:256.411185px;}
.y15_c00429{bottom:320.206785px;}
.y14_c00429{bottom:354.421185px;}
.y13_c00429{bottom:386.853585px;}
.y12_c00429{bottom:421.780785px;}
.y11_c00429{bottom:453.856785px;}
.y10_c00429{bottom:468.830535px;}
.yf_c00429{bottom:485.937735px;}
.ye_c00429{bottom:518.365185px;}
.yd_c00429{bottom:550.446135px;}
.yc_c00429{bottom:576.814785px;}
.yb_c00429{bottom:583.234935px;}
.ya_c00429{bottom:615.667335px;}
.y9_c00429{bottom:679.462935px;}
.y8_c00429{bottom:712.608135px;}
.y7_c00429{bottom:745.748385px;}
.y6_c00429{bottom:779.254935px;}
.y5_c00429{bottom:812.751585px;}
.y4_c00429{bottom:846.609585px;}
.y3_c00429{bottom:881.180385px;}
.y2_c00429{bottom:1066.151985px;}
.h1d_c00429{height:18.039542px;}
.h28_c00429{height:28.911094px;}
.h8_c00429{height:32.281418px;}
.h15_c00429{height:33.230868px;}
.h1a_c00429{height:34.180317px;}
.h18_c00429{height:35.129767px;}
.h20_c00429{height:36.079217px;}
.hd_c00429{height:37.028666px;}
.h29_c00429{height:38.476582px;}
.h22_c00429{height:38.927565px;}
.h13_c00429{height:39.236484px;}
.h1c_c00429{height:41.974453px;}
.h3_c00429{height:42.703031px;}
.h2_c00429{height:44.299606px;}
.h26_c00429{height:45.018703px;}
.h16_c00429{height:46.051242px;}
.h21_c00429{height:46.257750px;}
.h10_c00429{height:48.970390px;}
.h17_c00429{height:49.358848px;}
.h24_c00429{height:49.561875px;}
.ha_c00429{height:49.747500px;}
.h1b_c00429{height:50.524805px;}
.hc_c00429{height:50.594414px;}
.h12_c00429{height:51.213938px;}
.h6_c00429{height:55.449900px;}
.h11_c00429{height:56.170332px;}
.h1f_c00429{height:60.435439px;}
.h1e_c00429{height:64.430644px;}
.h14_c00429{height:66.082500px;}
.h4_c00429{height:66.908738px;}
.h7_c00429{height:67.321547px;}
.h27_c00429{height:67.734563px;}
.h23_c00429{height:67.941277px;}
.hb_c00429{height:68.014160px;}
.he_c00429{height:70.151748px;}
.h5_c00429{height:70.540400px;}
.h19_c00429{height:71.123379px;}
.hf_c00429{height:71.512031px;}
.h9_c00429{height:74.621444px;}
.h25_c00429{height:85.460977px;}
.h1_c00429{height:1113.000000px;}
.h0_c00429{height:1263.000000px;}
.w1_c00429{width:784.500000px;}
.w0_c00429{width:892.500000px;}
.x0_c00429{left:0.000000px;}
.x1_c00429{left:54.000000px;}
.x4b_c00429{left:82.305735px;}
.x3a_c00429{left:83.434335px;}
.x5_c00429{left:84.562935px;}
.x5d_c00429{left:86.231085px;}
.x89_c00429{left:87.394335px;}
.x3b_c00429{left:101.967135px;}
.x17_c00429{left:105.531135px;}
.x78_c00429{left:108.515985px;}
.x26_c00429{left:116.718135px;}
.x69_c00429{left:117.955635px;}
.x6_c00429{left:126.835935px;}
.x5e_c00429{left:128.741685px;}
.x8a_c00429{left:130.241535px;}
.x18_c00429{left:138.478335px;}
.x75_c00429{left:139.943535px;}
.x6d_c00429{left:141.349335px;}
.x2d_c00429{left:148.962435px;}
.x64_c00429{left:150.244485px;}
.x7_c00429{left:159.367335px;}
.x7e_c00429{left:160.911735px;}
.x76_c00429{left:162.644235px;}
.x2e_c00429{left:170.915685px;}
.x27_c00429{left:181.241385px;}
.x6a_c00429{left:182.701635px;}
.x19_c00429{left:184.409385px;}
.x6e_c00429{left:192.779835px;}
.x82_c00429{left:194.408385px;}
.x44_c00429{left:203.328285px;}
.x2f_c00429{left:204.343035px;}
.x1a_c00429{left:207.100185px;}
.x8_c00429{left:215.178585px;}
.x30_c00429{left:225.647835px;}
.x4c_c00429{left:226.786335px;}
.x3c_c00429{left:228.553485px;}
.x45_c00429{left:236.968485px;}
.x71_c00429{left:238.309935px;}
.x9_c00429{left:247.838685px;}
.x3d_c00429{left:248.858385px;}
.x5f_c00429{left:250.650285px;}
.x4d_c00429{left:258.802935px;}
.x1b_c00429{left:270.682935px;}
.x65_c00429{left:273.053985px;}
.x46_c00429{left:280.672035px;}
.x6f_c00429{left:282.424335px;}
.x66_c00429{left:292.250085px;}
.x83_c00429{left:295.551735px;}
.x3e_c00429{left:303.169785px;}
.x60_c00429{left:314.752785px;}
.x67_c00429{left:316.450635px;}
.x1c_c00429{left:324.736935px;}
.x72_c00429{left:326.924835px;}
.x3f_c00429{left:336.265485px;}
.x58_c00429{left:337.319835px;}
.x31_c00429{left:338.750385px;}
.xa_c00429{left:346.111035px;}
.x54_c00429{left:348.006885px;}
.x32_c00429{left:349.635435px;}
.x7f_c00429{left:358.075185px;}
.x59_c00429{left:370.128435px;}
.x84_c00429{left:380.058135px;}
.x28_c00429{left:381.157035px;}
.x33_c00429{left:384.112185px;}
.x1d_c00429{left:393.145935px;}
.xb_c00429{left:402.407385px;}
.x5a_c00429{left:403.961685px;}
.x55_c00429{left:405.327885px;}
.x85_c00429{left:406.545585px;}
.x34_c00429{left:409.678935px;}
.x35_c00429{left:414.287385px;}
.x4e_c00429{left:423.910185px;}
.x1e_c00429{left:425.627835px;}
.x47_c00429{left:427.360335px;}
.xc_c00429{left:435.017985px;}
.x79_c00429{left:437.943435px;}
.x29_c00429{left:446.200035px;}
.x88_c00429{left:449.521485px;}
.x36_c00429{left:458.421585px;}
.x7a_c00429{left:466.346535px;}
.x2a_c00429{left:468.153285px;}
.x80_c00429{left:469.440285px;}
.x48_c00429{left:479.914485px;}
.xd_c00429{left:490.794585px;}
.x8c_c00429{left:498.170085px;}
.x4f_c00429{left:501.659835px;}
.x73_c00429{left:502.917135px;}
.x50_c00429{left:507.723585px;}
.x2b_c00429{left:512.713185px;}
.x8b_c00429{left:513.886335px;}
.x40_c00429{left:515.099085px;}
.x37_c00429{left:524.390235px;}
.xe_c00429{left:534.577335px;}
.x6b_c00429{left:545.071335px;}
.x1f_c00429{left:546.115785px;}
.x86_c00429{left:548.600685px;}
.x56_c00429{left:556.753335px;}
.x41_c00429{left:567.187935px;}
.x74_c00429{left:568.489785px;}
.x20_c00429{left:578.043285px;}
.x5b_c00429{left:583.513035px;}
.x6c_c00429{left:584.597085px;}
.x87_c00429{left:587.354235px;}
.x77_c00429{left:588.388785px;}
.x49_c00429{left:590.022285px;}
.x7c_c00429{left:592.437885px;}
.x21_c00429{left:595.160385px;}
.xf_c00429{left:600.526185px;}
.x38_c00429{left:610.535085px;}
.x42_c00429{left:612.148785px;}
.x10_c00429{left:622.400235px;}
.x7d_c00429{left:623.751585px;}
.x11_c00429{left:625.964235px;}
.x7b_c00429{left:627.295785px;}
.x22_c00429{left:628.701585px;}
.x2c_c00429{left:633.493185px;}
.x51_c00429{left:634.601985px;}
.x61_c00429{left:639.254985px;}
.x57_c00429{left:643.398135px;}
.x62_c00429{left:644.967285px;}
.x43_c00429{left:646.967085px;}
.x68_c00429{left:650.639985px;}
.x12_c00429{left:655.030635px;}
.x81_c00429{left:656.525535px;}
.x39_c00429{left:666.281985px;}
.x23_c00429{left:667.697685px;}
.x13_c00429{left:669.657885px;}
.x2_c00429{left:677.468985px;}
.x4a_c00429{left:679.755885px;}
.x5c_c00429{left:687.482835px;}
.x14_c00429{left:689.329185px;}
.x3_c00429{left:693.071385px;}
.x24_c00429{left:699.778635px;}
.x70_c00429{left:710.138985px;}
.x4_c00429{left:713.435685px;}
.x63_c00429{left:714.455385px;}
.x25_c00429{left:719.979585px;}
.x15_c00429{left:721.702185px;}
.x52_c00429{left:731.745735px;}
.x16_c00429{left:742.655535px;}
.x53_c00429{left:755.921535px;}
.x8d_c00429{left:768.628185px;}
@media print{
.v0_c00429{vertical-align:0.000000pt;}
.v2_c00429{vertical-align:3.784000pt;}
.v1_c00429{vertical-align:5.068800pt;}
.ls33_c00429{letter-spacing:-2.710400pt;}
.lsd_c00429{letter-spacing:-2.236080pt;}
.ls19_c00429{letter-spacing:-1.971200pt;}
.ls38_c00429{letter-spacing:-1.835750pt;}
.ls2f_c00429{letter-spacing:-1.743386pt;}
.ls1a_c00429{letter-spacing:-1.463035pt;}
.ls8_c00429{letter-spacing:-1.367526pt;}
.ls36_c00429{letter-spacing:-1.342880pt;}
.ls37_c00429{letter-spacing:-1.264982pt;}
.ls22_c00429{letter-spacing:-1.194336pt;}
.ls31_c00429{letter-spacing:-0.824155pt;}
.lsb_c00429{letter-spacing:-0.659736pt;}
.ls39_c00429{letter-spacing:-0.434438pt;}
.ls7_c00429{letter-spacing:0.000000pt;}
.ls32_c00429{letter-spacing:0.185275pt;}
.ls18_c00429{letter-spacing:0.229997pt;}
.ls24_c00429{letter-spacing:0.418176pt;}
.ls35_c00429{letter-spacing:0.445069pt;}
.ls3_c00429{letter-spacing:0.536659pt;}
.ls23_c00429{letter-spacing:0.626102pt;}
.ls4_c00429{letter-spacing:0.728323pt;}
.ls0_c00429{letter-spacing:0.858319pt;}
.ls5_c00429{letter-spacing:1.379981pt;}
.ls2_c00429{letter-spacing:1.571645pt;}
.ls17_c00429{letter-spacing:1.672000pt;}
.ls1c_c00429{letter-spacing:1.673866pt;}
.ls21_c00429{letter-spacing:1.724976pt;}
.ls6_c00429{letter-spacing:1.807520pt;}
.ls34_c00429{letter-spacing:1.918400pt;}
.ls1_c00429{letter-spacing:2.041037pt;}
.ls30_c00429{letter-spacing:2.112000pt;}
.ls11_c00429{letter-spacing:2.156000pt;}
.ls16_c00429{letter-spacing:2.182400pt;}
.ls29_c00429{letter-spacing:2.216914pt;}
.ls14_c00429{letter-spacing:2.217609pt;}
.ls1d_c00429{letter-spacing:2.235200pt;}
.lsf_c00429{letter-spacing:2.252800pt;}
.ls26_c00429{letter-spacing:2.288000pt;}
.ls2c_c00429{letter-spacing:2.312746pt;}
.ls15_c00429{letter-spacing:2.393609pt;}
.ls28_c00429{letter-spacing:2.736800pt;}
.ls27_c00429{letter-spacing:2.745609pt;}
.ls9_c00429{letter-spacing:2.851209pt;}
.lsc_c00429{letter-spacing:2.868800pt;}
.ls2e_c00429{letter-spacing:2.895209pt;}
.ls2b_c00429{letter-spacing:2.996347pt;}
.ls10_c00429{letter-spacing:3.080000pt;}
.ls13_c00429{letter-spacing:3.176800pt;}
.lsa_c00429{letter-spacing:3.194400pt;}
.ls1f_c00429{letter-spacing:3.220800pt;}
.ls25_c00429{letter-spacing:24.076800pt;}
.lse_c00429{letter-spacing:43.084976pt;}
.ls1b_c00429{letter-spacing:44.352176pt;}
.ls20_c00429{letter-spacing:45.619376pt;}
.ls1e_c00429{letter-spacing:46.886576pt;}
.ls2a_c00429{letter-spacing:48.153776pt;}
.ls12_c00429{letter-spacing:49.420976pt;}
.ls2d_c00429{letter-spacing:51.955376pt;}
.ws3_c00429{word-spacing:-17.543645pt;}
.ws5_c00429{word-spacing:-17.351981pt;}
.ws4_c00429{word-spacing:-16.700323pt;}
.ws8_c00429{word-spacing:-14.707018pt;}
.ws6_c00429{word-spacing:-11.440000pt;}
.ws1_c00429{word-spacing:-3.433971pt;}
.wsa_c00429{word-spacing:0.000000pt;}
.ws9_c00429{word-spacing:0.230912pt;}
.ws0_c00429{word-spacing:1.042624pt;}
.ws2_c00429{word-spacing:14.169310pt;}
.ws7_c00429{word-spacing:20.253142pt;}
._17_c00429{margin-left:-19.421952pt;}
._16_c00429{margin-left:-4.846653pt;}
._12_c00429{margin-left:-2.882880pt;}
._15_c00429{margin-left:-1.316093pt;}
._11_c00429{width:2.471040pt;}
._3_c00429{width:4.043424pt;}
._e_c00429{width:5.494720pt;}
._9_c00429{width:6.822886pt;}
._14_c00429{width:8.497104pt;}
._a_c00429{width:9.902640pt;}
._18_c00429{width:13.480368pt;}
._2_c00429{width:17.464832pt;}
._5_c00429{width:21.402480pt;}
._4_c00429{width:22.680240pt;}
._7_c00429{width:23.958176pt;}
._c_c00429{width:26.962531pt;}
._0_c00429{width:29.293347pt;}
._1_c00429{width:30.733296pt;}
._f_c00429{width:31.736637pt;}
._b_c00429{width:32.722541pt;}
._10_c00429{width:35.458368pt;}
._6_c00429{width:38.204320pt;}
._d_c00429{width:39.418896pt;}
._8_c00429{width:40.569760pt;}
._13_c00429{width:41.611856pt;}
.fs19_c00429{font-size:24.076800pt;}
.fs24_c00429{font-size:24.640000pt;}
.fs10_c00429{font-size:33.440000pt;}
.fs25_c00429{font-size:34.848000pt;}
.fs1_c00429{font-size:37.664000pt;}
.fs18_c00429{font-size:38.016000pt;}
.fs23_c00429{font-size:38.368000pt;}
.fs0_c00429{font-size:39.072176pt;}
.fs12_c00429{font-size:39.248000pt;}
.fs1d_c00429{font-size:39.424000pt;}
.fs21_c00429{font-size:42.240000pt;}
.fs7_c00429{font-size:43.084976pt;}
.fs4_c00429{font-size:43.120000pt;}
.fsf_c00429{font-size:43.648000pt;}
.fsd_c00429{font-size:44.352176pt;}
.fs13_c00429{font-size:44.704000pt;}
.fs5_c00429{font-size:45.056000pt;}
.fs16_c00429{font-size:45.619376pt;}
.fs17_c00429{font-size:45.760000pt;}
.fs14_c00429{font-size:46.886576pt;}
.fse_c00429{font-size:47.872176pt;}
.fs1c_c00429{font-size:48.153776pt;}
.fsa_c00429{font-size:49.420976pt;}
.fs1e_c00429{font-size:51.955376pt;}
.fs1b_c00429{font-size:54.736000pt;}
.fs1a_c00429{font-size:54.912176pt;}
.fs11_c00429{font-size:56.320000pt;}
.fs2_c00429{font-size:57.024176pt;}
.fs6_c00429{font-size:57.376000pt;}
.fs20_c00429{font-size:57.728000pt;}
.fs1f_c00429{font-size:57.904176pt;}
.fs9_c00429{font-size:61.600000pt;}
.fsb_c00429{font-size:63.536000pt;}
.fs3_c00429{font-size:63.888000pt;}
.fs15_c00429{font-size:64.416000pt;}
.fsc_c00429{font-size:64.768000pt;}
.fs8_c00429{font-size:67.584176pt;}
.fs22_c00429{font-size:77.440000pt;}
.y0_c00429{bottom:0.000000pt;}
.y1b_c00429{bottom:41.647053pt;}
.y1_c00429{bottom:66.666667pt;}
.y1c_c00429{bottom:68.258253pt;}
.y1a_c00429{bottom:111.659853pt;}
.y19_c00429{bottom:138.587853pt;}
.y18_c00429{bottom:169.946653pt;}
.y17_c00429{bottom:199.096653pt;}
.y16_c00429{bottom:227.921053pt;}
.y15_c00429{bottom:284.628253pt;}
.y14_c00429{bottom:315.041053pt;}
.y13_c00429{bottom:343.869853pt;}
.y12_c00429{bottom:374.916253pt;}
.y11_c00429{bottom:403.428253pt;}
.y10_c00429{bottom:416.738253pt;}
.yf_c00429{bottom:431.944653pt;}
.ye_c00429{bottom:460.769053pt;}
.yd_c00429{bottom:489.285453pt;}
.yc_c00429{bottom:512.724253pt;}
.yb_c00429{bottom:518.431053pt;}
.ya_c00429{bottom:547.259853pt;}
.y9_c00429{bottom:603.967053pt;}
.y8_c00429{bottom:633.429453pt;}
.y7_c00429{bottom:662.887453pt;}
.y6_c00429{bottom:692.671053pt;}
.y5_c00429{bottom:722.445853pt;}
.y4_c00429{bottom:752.541853pt;}
.y3_c00429{bottom:783.271453pt;}
.y2_c00429{bottom:947.690653pt;}
.h1d_c00429{height:16.035149pt;}
.h28_c00429{height:25.698750pt;}
.h8_c00429{height:28.694594pt;}
.h15_c00429{height:29.538549pt;}
.h1a_c00429{height:30.382504pt;}
.h18_c00429{height:31.226460pt;}
.h20_c00429{height:32.070415pt;}
.hd_c00429{height:32.914370pt;}
.h29_c00429{height:34.201406pt;}
.h22_c00429{height:34.602280pt;}
.h13_c00429{height:34.876875pt;}
.h1c_c00429{height:37.310625pt;}
.h3_c00429{height:37.958250pt;}
.h2_c00429{height:39.377427pt;}
.h26_c00429{height:40.016625pt;}
.h16_c00429{height:40.934438pt;}
.h21_c00429{height:41.118000pt;}
.h10_c00429{height:43.529235pt;}
.h17_c00429{height:43.874531pt;}
.h24_c00429{height:44.055000pt;}
.ha_c00429{height:44.220000pt;}
.h1b_c00429{height:44.910938pt;}
.hc_c00429{height:44.972813pt;}
.h12_c00429{height:45.523500pt;}
.h6_c00429{height:49.288800pt;}
.h11_c00429{height:49.929184pt;}
.h1f_c00429{height:53.720391pt;}
.h1e_c00429{height:57.271684pt;}
.h14_c00429{height:58.740000pt;}
.h4_c00429{height:59.474434pt;}
.h7_c00429{height:59.841375pt;}
.h27_c00429{height:60.208500pt;}
.h23_c00429{height:60.392246pt;}
.hb_c00429{height:60.457031pt;}
.he_c00429{height:62.357109pt;}
.h5_c00429{height:62.702578pt;}
.h19_c00429{height:63.220781pt;}
.hf_c00429{height:63.566250pt;}
.h9_c00429{height:66.330173pt;}
.h25_c00429{height:75.965313pt;}
.h1_c00429{height:989.333333pt;}
.h0_c00429{height:1122.666667pt;}
.w1_c00429{width:697.333333pt;}
.w0_c00429{width:793.333333pt;}
.x0_c00429{left:0.000000pt;}
.x1_c00429{left:48.000000pt;}
.x4b_c00429{left:73.160653pt;}
.x3a_c00429{left:74.163853pt;}
.x5_c00429{left:75.167053pt;}
.x5d_c00429{left:76.649853pt;}
.x89_c00429{left:77.683853pt;}
.x3b_c00429{left:90.637453pt;}
.x17_c00429{left:93.805453pt;}
.x78_c00429{left:96.458653pt;}
.x26_c00429{left:103.749453pt;}
.x69_c00429{left:104.849453pt;}
.x6_c00429{left:112.743053pt;}
.x5e_c00429{left:114.437053pt;}
.x8a_c00429{left:115.770253pt;}
.x18_c00429{left:123.091853pt;}
.x75_c00429{left:124.394253pt;}
.x6d_c00429{left:125.643853pt;}
.x2d_c00429{left:132.411053pt;}
.x64_c00429{left:133.550653pt;}
.x7_c00429{left:141.659853pt;}
.x7e_c00429{left:143.032653pt;}
.x76_c00429{left:144.572653pt;}
.x2e_c00429{left:151.925053pt;}
.x27_c00429{left:161.103453pt;}
.x6a_c00429{left:162.401453pt;}
.x19_c00429{left:163.919453pt;}
.x6e_c00429{left:171.359853pt;}
.x82_c00429{left:172.807453pt;}
.x44_c00429{left:180.736253pt;}
.x2f_c00429{left:181.638253pt;}
.x1a_c00429{left:184.089053pt;}
.x8_c00429{left:191.269853pt;}
.x30_c00429{left:200.575853pt;}
.x4c_c00429{left:201.587853pt;}
.x3c_c00429{left:203.158653pt;}
.x45_c00429{left:210.638653pt;}
.x71_c00429{left:211.831053pt;}
.x9_c00429{left:220.301053pt;}
.x3d_c00429{left:221.207453pt;}
.x5f_c00429{left:222.800253pt;}
.x4d_c00429{left:230.047053pt;}
.x1b_c00429{left:240.607053pt;}
.x65_c00429{left:242.714653pt;}
.x46_c00429{left:249.486253pt;}
.x6f_c00429{left:251.043853pt;}
.x66_c00429{left:259.777853pt;}
.x83_c00429{left:262.712653pt;}
.x3e_c00429{left:269.484253pt;}
.x60_c00429{left:279.780253pt;}
.x67_c00429{left:281.289453pt;}
.x1c_c00429{left:288.655053pt;}
.x72_c00429{left:290.599853pt;}
.x3f_c00429{left:298.902653pt;}
.x58_c00429{left:299.839853pt;}
.x31_c00429{left:301.111453pt;}
.xa_c00429{left:307.654253pt;}
.x54_c00429{left:309.339453pt;}
.x32_c00429{left:310.787053pt;}
.x7f_c00429{left:318.289053pt;}
.x59_c00429{left:329.003053pt;}
.x84_c00429{left:337.829453pt;}
.x28_c00429{left:338.806253pt;}
.x33_c00429{left:341.433053pt;}
.x1d_c00429{left:349.463053pt;}
.xb_c00429{left:357.695453pt;}
.x5a_c00429{left:359.077053pt;}
.x55_c00429{left:360.291453pt;}
.x85_c00429{left:361.373853pt;}
.x34_c00429{left:364.159053pt;}
.x35_c00429{left:368.255453pt;}
.x4e_c00429{left:376.809053pt;}
.x1e_c00429{left:378.335853pt;}
.x47_c00429{left:379.875853pt;}
.xc_c00429{left:386.682653pt;}
.x79_c00429{left:389.283053pt;}
.x29_c00429{left:396.622253pt;}
.x88_c00429{left:399.574653pt;}
.x36_c00429{left:407.485853pt;}
.x7a_c00429{left:414.530253pt;}
.x2a_c00429{left:416.136253pt;}
.x80_c00429{left:417.280253pt;}
.x48_c00429{left:426.590653pt;}
.xd_c00429{left:436.261853pt;}
.x8c_c00429{left:442.817853pt;}
.x4f_c00429{left:445.919853pt;}
.x73_c00429{left:447.037453pt;}
.x50_c00429{left:451.309853pt;}
.x2b_c00429{left:455.745053pt;}
.x8b_c00429{left:456.787853pt;}
.x40_c00429{left:457.865853pt;}
.x37_c00429{left:466.124653pt;}
.xe_c00429{left:475.179853pt;}
.x6b_c00429{left:484.507853pt;}
.x1f_c00429{left:485.436253pt;}
.x86_c00429{left:487.645053pt;}
.x56_c00429{left:494.891853pt;}
.x41_c00429{left:504.167053pt;}
.x74_c00429{left:505.324253pt;}
.x20_c00429{left:513.816253pt;}
.x5b_c00429{left:518.678253pt;}
.x6c_c00429{left:519.641853pt;}
.x87_c00429{left:522.092653pt;}
.x77_c00429{left:523.012253pt;}
.x49_c00429{left:524.464253pt;}
.x7c_c00429{left:526.611453pt;}
.x21_c00429{left:529.031453pt;}
.xf_c00429{left:533.801053pt;}
.x38_c00429{left:542.697853pt;}
.x42_c00429{left:544.132253pt;}
.x10_c00429{left:553.244653pt;}
.x7d_c00429{left:554.445853pt;}
.x11_c00429{left:556.412653pt;}
.x7b_c00429{left:557.596253pt;}
.x22_c00429{left:558.845853pt;}
.x2c_c00429{left:563.105053pt;}
.x51_c00429{left:564.090653pt;}
.x61_c00429{left:568.226653pt;}
.x57_c00429{left:571.909453pt;}
.x62_c00429{left:573.304253pt;}
.x43_c00429{left:575.081853pt;}
.x68_c00429{left:578.346653pt;}
.x12_c00429{left:582.249453pt;}
.x81_c00429{left:583.578253pt;}
.x39_c00429{left:592.250653pt;}
.x23_c00429{left:593.509053pt;}
.x13_c00429{left:595.251453pt;}
.x2_c00429{left:602.194653pt;}
.x4a_c00429{left:604.227453pt;}
.x5c_c00429{left:611.095853pt;}
.x14_c00429{left:612.737053pt;}
.x3_c00429{left:616.063453pt;}
.x24_c00429{left:622.025453pt;}
.x70_c00429{left:631.234653pt;}
.x4_c00429{left:634.165053pt;}
.x63_c00429{left:635.071453pt;}
.x25_c00429{left:639.981853pt;}
.x15_c00429{left:641.513053pt;}
.x52_c00429{left:650.440653pt;}
.x16_c00429{left:660.138253pt;}
.x53_c00429{left:671.930253pt;}
.x8d_c00429{left:683.225053pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c67ead4dd67a43cd45a0936b.woff2')format("woff");}.ff1_c00430{font-family:ff1_c00430;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00430;src:url('chunks/assets/font_e054195f75e98c2bed568b55.woff2')format("woff");}.ff2_c00430{font-family:ff2_c00430;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00430;src:url('chunks/assets/font_289a61165b06e002dd1b8031.woff2')format("woff");}.ff3_c00430{font-family:ff3_c00430;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00430;src:url('chunks/assets/font_e74a21413cf05825481c0373.woff2')format("woff");}.ff4_c00430{font-family:ff4_c00430;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00430;src:url('chunks/assets/font_1dddb141d6c4979b8715307a.woff2')format("woff");}.ff5_c00430{font-family:ff5_c00430;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m36_c00430{transform:matrix(0.027779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.027779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.027779,0.000000,0.000000,0.250000,0,0);}
.m52_c00430{transform:matrix(0.041668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.041668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.041668,0.000000,0.000000,0.250000,0,0);}
.m94_c00430{transform:matrix(0.050001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050001,0.000000,0.000000,0.250000,0,0);}
.m4e_c00430{transform:matrix(0.058824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.058824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.058824,0.000000,0.000000,0.250000,0,0);}
.m129_c00430{transform:matrix(0.067663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.067663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.067663,0.000000,0.000000,0.250000,0,0);}
.m37_c00430{transform:matrix(0.074075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.074075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.074075,0.000000,0.000000,0.250000,0,0);}
.m7f_c00430{transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);}
.m18_c00430{transform:matrix(0.075003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075003,0.000000,0.000000,0.250000,0,0);}
.ma7_c00430{transform:matrix(0.075660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075660,0.000000,0.000000,0.250000,0,0);}
.m65_c00430{transform:matrix(0.078949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078949,0.000000,0.000000,0.250000,0,0);}
.m15e_c00430{transform:matrix(0.086539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086539,0.000000,0.000000,0.250000,0,0);}
.mb4_c00430{transform:matrix(0.087721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087721,0.000000,0.000000,0.250000,0,0);}
.m27_c00430{transform:matrix(0.089288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089288,0.000000,0.000000,0.250000,0,0);}
.m50_c00430{transform:matrix(0.089584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089584,0.000000,0.000000,0.250000,0,0);}
.m54_c00430{transform:matrix(0.091668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091668,0.000000,0.000000,0.250000,0,0);}
.m4d_c00430{transform:matrix(0.095589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095589,0.000000,0.000000,0.250000,0,0);}
.m126_c00430{transform:matrix(0.098216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098216,0.000000,0.000000,0.250000,0,0);}
.m86_c00430{transform:matrix(0.099538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099538,0.000000,0.000000,0.250000,0,0);}
.m13_c00430{transform:matrix(0.104170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104170,0.000000,0.000000,0.250000,0,0);}
.m14_c00430{transform:matrix(0.104829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104829,0.000000,0.000000,0.250000,0,0);}
.med_c00430{transform:matrix(0.109196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109196,0.000000,0.000000,0.250000,0,0);}
.m111_c00430{transform:matrix(0.111168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111168,0.000000,0.000000,0.250000,0,0);}
.m4c_c00430{transform:matrix(0.112457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112457,0.000000,0.000000,0.250000,0,0);}
.m9e_c00430{transform:matrix(0.118280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118280,0.000000,0.000000,0.250000,0,0);}
.m51_c00430{transform:matrix(0.119792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119792,0.000000,0.000000,0.250000,0,0);}
.mb0_c00430{transform:matrix(0.122595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122595,0.000000,0.000000,0.250000,0,0);}
.m161_c00430{transform:matrix(0.124557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124557,0.000000,0.000000,0.250000,0,0);}
.m8f_c00430{transform:matrix(0.127605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127605,0.000000,0.000000,0.250000,0,0);}
.mef_c00430{transform:matrix(0.129411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129411,0.000000,0.000000,0.250000,0,0);}
.m150_c00430{transform:matrix(0.130631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130631,0.000000,0.000000,0.250000,0,0);}
.m45_c00430{transform:matrix(0.133068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133068,0.000000,0.000000,0.250000,0,0);}
.m70_c00430{transform:matrix(0.135150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135150,0.000000,0.000000,0.250000,0,0);}
.m77_c00430{transform:matrix(0.138703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138703,0.000000,0.000000,0.250000,0,0);}
.m9f_c00430{transform:matrix(0.139206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139206,0.000000,0.000000,0.250000,0,0);}
.m122_c00430{transform:matrix(0.139210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139210,0.000000,0.000000,0.250000,0,0);}
.m1a_c00430{transform:matrix(0.140757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140757,0.000000,0.000000,0.250000,0,0);}
.m7e_c00430{transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);}
.m19_c00430{transform:matrix(0.145836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145836,0.000000,0.000000,0.250000,0,0);}
.m32_c00430{transform:matrix(0.147188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147188,0.000000,0.000000,0.250000,0,0);}
.m83_c00430{transform:matrix(0.147593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147593,0.000000,0.000000,0.250000,0,0);}
.m8a_c00430{transform:matrix(0.148795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148795,0.000000,0.000000,0.250000,0,0);}
.m2c_c00430{transform:matrix(0.149431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149431,0.000000,0.000000,0.250000,0,0);}
.m53_c00430{transform:matrix(0.151042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151042,0.000000,0.000000,0.250000,0,0);}
.m10f_c00430{transform:matrix(0.151121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151121,0.000000,0.000000,0.250000,0,0);}
.mc7_c00430{transform:matrix(0.152298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152298,0.000000,0.000000,0.250000,0,0);}
.m93_c00430{transform:matrix(0.152781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152781,0.000000,0.000000,0.250000,0,0);}
.m107_c00430{transform:matrix(0.154776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154776,0.000000,0.000000,0.250000,0,0);}
.m2a_c00430{transform:matrix(0.157529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157529,0.000000,0.000000,0.250000,0,0);}
.m2d_c00430{transform:matrix(0.157895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157895,0.000000,0.000000,0.250000,0,0);}
.m105_c00430{transform:matrix(0.158489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158489,0.000000,0.000000,0.250000,0,0);}
.m9a_c00430{transform:matrix(0.159437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159437,0.000000,0.000000,0.250000,0,0);}
.m5d_c00430{transform:matrix(0.160232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160232,0.000000,0.000000,0.250000,0,0);}
.m90_c00430{transform:matrix(0.160843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160843,0.000000,0.000000,0.250000,0,0);}
.m5a_c00430{transform:matrix(0.161674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161674,0.000000,0.000000,0.250000,0,0);}
.m12a_c00430{transform:matrix(0.163846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163846,0.000000,0.000000,0.250000,0,0);}
.m128_c00430{transform:matrix(0.164173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164173,0.000000,0.000000,0.250000,0,0);}
.m1f_c00430{transform:matrix(0.164352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164352,0.000000,0.000000,0.250000,0,0);}
.m114_c00430{transform:matrix(0.165282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165282,0.000000,0.000000,0.250000,0,0);}
.m88_c00430{transform:matrix(0.165485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165485,0.000000,0.000000,0.250000,0,0);}
.mf0_c00430{transform:matrix(0.165741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165741,0.000000,0.000000,0.250000,0,0);}
.m139_c00430{transform:matrix(0.167361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167361,0.000000,0.000000,0.250000,0,0);}
.m98_c00430{transform:matrix(0.167470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167470,0.000000,0.000000,0.250000,0,0);}
.mbc_c00430{transform:matrix(0.168635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168635,0.000000,0.000000,0.250000,0,0);}
.m5b_c00430{transform:matrix(0.170456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170456,0.000000,0.000000,0.250000,0,0);}
.m30_c00430{transform:matrix(0.171033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171033,0.000000,0.000000,0.250000,0,0);}
.m6f_c00430{transform:matrix(0.172620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172620,0.000000,0.000000,0.250000,0,0);}
.m25_c00430{transform:matrix(0.174607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174607,0.000000,0.000000,0.250000,0,0);}
.m4b_c00430{transform:matrix(0.176471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176471,0.000000,0.000000,0.250000,0,0);}
.m125_c00430{transform:matrix(0.178109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178109,0.000000,0.000000,0.250000,0,0);}
.mb5_c00430{transform:matrix(0.178270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178270,0.000000,0.000000,0.250000,0,0);}
.m8e_c00430{transform:matrix(0.180069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180069,0.000000,0.000000,0.250000,0,0);}
.m34_c00430{transform:matrix(0.182095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182095,0.000000,0.000000,0.250000,0,0);}
.mca_c00430{transform:matrix(0.183519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183519,0.000000,0.000000,0.250000,0,0);}
.m79_c00430{transform:matrix(0.185492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185492,0.000000,0.000000,0.250000,0,0);}
.m142_c00430{transform:matrix(0.186158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186158,0.000000,0.000000,0.250000,0,0);}
.md2_c00430{transform:matrix(0.186497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186497,0.000000,0.000000,0.250000,0,0);}
.m101_c00430{transform:matrix(0.186886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186886,0.000000,0.000000,0.250000,0,0);}
.mfa_c00430{transform:matrix(0.187285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187285,0.000000,0.000000,0.250000,0,0);}
.m119_c00430{transform:matrix(0.187363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187363,0.000000,0.000000,0.250000,0,0);}
.mf6_c00430{transform:matrix(0.187799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187799,0.000000,0.000000,0.250000,0,0);}
.m67_c00430{transform:matrix(0.189446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189446,0.000000,0.000000,0.250000,0,0);}
.mb6_c00430{transform:matrix(0.189616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189616,0.000000,0.000000,0.250000,0,0);}
.m71_c00430{transform:matrix(0.189813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189813,0.000000,0.000000,0.250000,0,0);}
.m92_c00430{transform:matrix(0.190012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190012,0.000000,0.000000,0.250000,0,0);}
.m3d_c00430{transform:matrix(0.190301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190301,0.000000,0.000000,0.250000,0,0);}
.m133_c00430{transform:matrix(0.190723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190723,0.000000,0.000000,0.250000,0,0);}
.m2f_c00430{transform:matrix(0.192735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192735,0.000000,0.000000,0.250000,0,0);}
.md8_c00430{transform:matrix(0.192842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192842,0.000000,0.000000,0.250000,0,0);}
.m46_c00430{transform:matrix(0.194940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194940,0.000000,0.000000,0.250000,0,0);}
.mfd_c00430{transform:matrix(0.195571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195571,0.000000,0.000000,0.250000,0,0);}
.m62_c00430{transform:matrix(0.197368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197368,0.000000,0.000000,0.250000,0,0);}
.me6_c00430{transform:matrix(0.198065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198065,0.000000,0.000000,0.250000,0,0);}
.m69_c00430{transform:matrix(0.198739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198739,0.000000,0.000000,0.250000,0,0);}
.m1e_c00430{transform:matrix(0.199452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199452,0.000000,0.000000,0.250000,0,0);}
.mc2_c00430{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.me_c00430{transform:matrix(0.200348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200348,0.000000,0.000000,0.250000,0,0);}
.m102_c00430{transform:matrix(0.202053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202053,0.000000,0.000000,0.250000,0,0);}
.m2b_c00430{transform:matrix(0.202205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202205,0.000000,0.000000,0.250000,0,0);}
.ma6_c00430{transform:matrix(0.203949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203949,0.000000,0.000000,0.250000,0,0);}
.m28_c00430{transform:matrix(0.205593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205593,0.000000,0.000000,0.250000,0,0);}
.m132_c00430{transform:matrix(0.205719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205719,0.000000,0.000000,0.250000,0,0);}
.me1_c00430{transform:matrix(0.208761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208761,0.000000,0.000000,0.250000,0,0);}
.m2e_c00430{transform:matrix(0.209785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209785,0.000000,0.000000,0.250000,0,0);}
.mbe_c00430{transform:matrix(0.211800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211800,0.000000,0.000000,0.250000,0,0);}
.m31_c00430{transform:matrix(0.212266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212266,0.000000,0.000000,0.250000,0,0);}
.me9_c00430{transform:matrix(0.212312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212312,0.000000,0.000000,0.250000,0,0);}
.m95_c00430{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00430{transform:matrix(0.212550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212550,0.000000,0.000000,0.250000,0,0);}
.mf_c00430{transform:matrix(0.212593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212593,0.000000,0.000000,0.250000,0,0);}
.m8b_c00430{transform:matrix(0.215729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215729,0.000000,0.000000,0.250000,0,0);}
.m4f_c00430{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);}
.m1d_c00430{transform:matrix(0.221920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221920,0.000000,0.000000,0.250000,0,0);}
.m57_c00430{transform:matrix(0.222612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222612,0.000000,0.000000,0.250000,0,0);}
.m60_c00430{transform:matrix(0.223567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223567,0.000000,0.000000,0.250000,0,0);}
.m123_c00430{transform:matrix(0.225663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225663,0.000000,0.000000,0.250000,0,0);}
.mc0_c00430{transform:matrix(0.225979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225979,0.000000,0.000000,0.250000,0,0);}
.mae_c00430{transform:matrix(0.226111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226111,0.000000,0.000000,0.250000,0,0);}
.m131_c00430{transform:matrix(0.226501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226501,0.000000,0.000000,0.250000,0,0);}
.m29_c00430{transform:matrix(0.227043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227043,0.000000,0.000000,0.250000,0,0);}
.mce_c00430{transform:matrix(0.227424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227424,0.000000,0.000000,0.250000,0,0);}
.m26_c00430{transform:matrix(0.227679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227679,0.000000,0.000000,0.250000,0,0);}
.m5f_c00430{transform:matrix(0.228548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228548,0.000000,0.000000,0.250000,0,0);}
.m8d_c00430{transform:matrix(0.229525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229525,0.000000,0.000000,0.250000,0,0);}
.mdf_c00430{transform:matrix(0.232735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232735,0.000000,0.000000,0.250000,0,0);}
.mb7_c00430{transform:matrix(0.234348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234348,0.000000,0.000000,0.250000,0,0);}
.m3b_c00430{transform:matrix(0.234613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234613,0.000000,0.000000,0.250000,0,0);}
.m1b_c00430{transform:matrix(0.237283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237283,0.000000,0.000000,0.250000,0,0);}
.m15a_c00430{transform:matrix(0.237650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237650,0.000000,0.000000,0.250000,0,0);}
.mb9_c00430{transform:matrix(0.238433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238433,0.000000,0.000000,0.250000,0,0);}
.m76_c00430{transform:matrix(0.242749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242749,0.000000,0.000000,0.250000,0,0);}
.mf4_c00430{transform:matrix(0.242936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242936,0.000000,0.000000,0.250000,0,0);}
.m146_c00430{transform:matrix(0.244554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244554,0.000000,0.000000,0.250000,0,0);}
.m39_c00430{transform:matrix(0.245886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245886,0.000000,0.000000,0.250000,0,0);}
.mdb_c00430{transform:matrix(0.249472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249472,0.000000,0.000000,0.250000,0,0);}
.m0_c00430{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m80_c00430{transform:matrix(0.250443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250443,0.000000,0.000000,0.250000,0,0);}
.m121_c00430{transform:matrix(0.250511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250511,0.000000,0.000000,0.250000,0,0);}
.m21_c00430{transform:matrix(0.251237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251237,0.000000,0.000000,0.250000,0,0);}
.m11e_c00430{transform:matrix(0.252766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252766,0.000000,0.000000,0.250000,0,0);}
.m96_c00430{transform:matrix(0.253746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253746,0.000000,0.000000,0.250000,0,0);}
.m10_c00430{transform:matrix(0.254456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254456,0.000000,0.000000,0.250000,0,0);}
.mcd_c00430{transform:matrix(0.256483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256483,0.000000,0.000000,0.250000,0,0);}
.m7_c00430{transform:matrix(0.257020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257020,0.000000,0.000000,0.250000,0,0);}
.m12e_c00430{transform:matrix(0.257751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257751,0.000000,0.000000,0.250000,0,0);}
.m14f_c00430{transform:matrix(0.258693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258693,0.000000,0.000000,0.250000,0,0);}
.me3_c00430{transform:matrix(0.259965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259965,0.000000,0.000000,0.250000,0,0);}
.mcf_c00430{transform:matrix(0.260187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260187,0.000000,0.000000,0.250000,0,0);}
.m74_c00430{transform:matrix(0.261101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261101,0.000000,0.000000,0.250000,0,0);}
.m12f_c00430{transform:matrix(0.261102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261102,0.000000,0.000000,0.250000,0,0);}
.m8_c00430{transform:matrix(0.261289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261289,0.000000,0.000000,0.250000,0,0);}
.m144_c00430{transform:matrix(0.262918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262918,0.000000,0.000000,0.250000,0,0);}
.m10a_c00430{transform:matrix(0.263141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263141,0.000000,0.000000,0.250000,0,0);}
.ma8_c00430{transform:matrix(0.263160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263160,0.000000,0.000000,0.250000,0,0);}
.m11_c00430{transform:matrix(0.263889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263889,0.000000,0.000000,0.250000,0,0);}
.m10e_c00430{transform:matrix(0.266155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266155,0.000000,0.000000,0.250000,0,0);}
.m6e_c00430{transform:matrix(0.266610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266610,0.000000,0.000000,0.250000,0,0);}
.m5_c00430{transform:matrix(0.267679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267679,0.000000,0.000000,0.250000,0,0);}
.m109_c00430{transform:matrix(0.267818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267818,0.000000,0.000000,0.250000,0,0);}
.m73_c00430{transform:matrix(0.268471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268471,0.000000,0.000000,0.250000,0,0);}
.m13d_c00430{transform:matrix(0.268694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268694,0.000000,0.000000,0.250000,0,0);}
.m11d_c00430{transform:matrix(0.269209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269209,0.000000,0.000000,0.250000,0,0);}
.m7b_c00430{transform:matrix(0.269815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269815,0.000000,0.000000,0.250000,0,0);}
.m15d_c00430{transform:matrix(0.270333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270333,0.000000,0.000000,0.250000,0,0);}
.m136_c00430{transform:matrix(0.270925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270925,0.000000,0.000000,0.250000,0,0);}
.mf9_c00430{transform:matrix(0.271708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271708,0.000000,0.000000,0.250000,0,0);}
.mac_c00430{transform:matrix(0.272285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272285,0.000000,0.000000,0.250000,0,0);}
.m135_c00430{transform:matrix(0.273367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273367,0.000000,0.000000,0.250000,0,0);}
.m12b_c00430{transform:matrix(0.273587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273587,0.000000,0.000000,0.250000,0,0);}
.ma0_c00430{transform:matrix(0.274731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274731,0.000000,0.000000,0.250000,0,0);}
.m100_c00430{transform:matrix(0.275649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275649,0.000000,0.000000,0.250000,0,0);}
.m6d_c00430{transform:matrix(0.275759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275759,0.000000,0.000000,0.250000,0,0);}
.m13a_c00430{transform:matrix(0.275843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275843,0.000000,0.000000,0.250000,0,0);}
.mea_c00430{transform:matrix(0.276221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276221,0.000000,0.000000,0.250000,0,0);}
.mda_c00430{transform:matrix(0.276429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276429,0.000000,0.000000,0.250000,0,0);}
.md7_c00430{transform:matrix(0.278291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278291,0.000000,0.000000,0.250000,0,0);}
.me8_c00430{transform:matrix(0.279253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279253,0.000000,0.000000,0.250000,0,0);}
.m35_c00430{transform:matrix(0.279275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279275,0.000000,0.000000,0.250000,0,0);}
.ma2_c00430{transform:matrix(0.279628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279628,0.000000,0.000000,0.250000,0,0);}
.mb1_c00430{transform:matrix(0.280186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280186,0.000000,0.000000,0.250000,0,0);}
.m3e_c00430{transform:matrix(0.280713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280713,0.000000,0.000000,0.250000,0,0);}
.m78_c00430{transform:matrix(0.281131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281131,0.000000,0.000000,0.250000,0,0);}
.m40_c00430{transform:matrix(0.281854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281854,0.000000,0.000000,0.250000,0,0);}
.m6a_c00430{transform:matrix(0.282239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282239,0.000000,0.000000,0.250000,0,0);}
.mc1_c00430{transform:matrix(0.283091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283091,0.000000,0.000000,0.250000,0,0);}
.m137_c00430{transform:matrix(0.283551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283551,0.000000,0.000000,0.250000,0,0);}
.m15f_c00430{transform:matrix(0.284138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284138,0.000000,0.000000,0.250000,0,0);}
.me4_c00430{transform:matrix(0.285206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285206,0.000000,0.000000,0.250000,0,0);}
.md3_c00430{transform:matrix(0.285455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285455,0.000000,0.000000,0.250000,0,0);}
.m112_c00430{transform:matrix(0.285898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285898,0.000000,0.000000,0.250000,0,0);}
.m155_c00430{transform:matrix(0.286085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286085,0.000000,0.000000,0.250000,0,0);}
.mee_c00430{transform:matrix(0.286142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286142,0.000000,0.000000,0.250000,0,0);}
.m7a_c00430{transform:matrix(0.287026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287026,0.000000,0.000000,0.250000,0,0);}
.m113_c00430{transform:matrix(0.287573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287573,0.000000,0.000000,0.250000,0,0);}
.m84_c00430{transform:matrix(0.287668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287668,0.000000,0.000000,0.250000,0,0);}
.m7d_c00430{transform:matrix(0.287693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287693,0.000000,0.000000,0.250000,0,0);}
.m163_c00430{transform:matrix(0.289017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289017,0.000000,0.000000,0.250000,0,0);}
.m152_c00430{transform:matrix(0.289300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289300,0.000000,0.000000,0.250000,0,0);}
.m2_c00430{transform:matrix(0.289304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289304,0.000000,0.000000,0.250000,0,0);}
.m103_c00430{transform:matrix(0.289504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289504,0.000000,0.000000,0.250000,0,0);}
.mc6_c00430{transform:matrix(0.289514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289514,0.000000,0.000000,0.250000,0,0);}
.me7_c00430{transform:matrix(0.289685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289685,0.000000,0.000000,0.250000,0,0);}
.mb3_c00430{transform:matrix(0.289805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289805,0.000000,0.000000,0.250000,0,0);}
.m1_c00430{transform:matrix(0.291195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291195,0.000000,0.000000,0.250000,0,0);}
.mde_c00430{transform:matrix(0.291252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291252,0.000000,0.000000,0.250000,0,0);}
.m14d_c00430{transform:matrix(0.291983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291983,0.000000,0.000000,0.250000,0,0);}
.m85_c00430{transform:matrix(0.292088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292088,0.000000,0.000000,0.250000,0,0);}
.mc9_c00430{transform:matrix(0.293091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293091,0.000000,0.000000,0.250000,0,0);}
.m12c_c00430{transform:matrix(0.294235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294235,0.000000,0.000000,0.250000,0,0);}
.m68_c00430{transform:matrix(0.294834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294834,0.000000,0.000000,0.250000,0,0);}
.m13f_c00430{transform:matrix(0.296362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296362,0.000000,0.000000,0.250000,0,0);}
.ma4_c00430{transform:matrix(0.297269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297269,0.000000,0.000000,0.250000,0,0);}
.md5_c00430{transform:matrix(0.298704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298704,0.000000,0.000000,0.250000,0,0);}
.mbf_c00430{transform:matrix(0.299687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299687,0.000000,0.000000,0.250000,0,0);}
.m13e_c00430{transform:matrix(0.299805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299805,0.000000,0.000000,0.250000,0,0);}
.mc4_c00430{transform:matrix(0.300172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300172,0.000000,0.000000,0.250000,0,0);}
.m55_c00430{transform:matrix(0.300866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300866,0.000000,0.000000,0.250000,0,0);}
.mdd_c00430{transform:matrix(0.301041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301041,0.000000,0.000000,0.250000,0,0);}
.m91_c00430{transform:matrix(0.301342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301342,0.000000,0.000000,0.250000,0,0);}
.mf8_c00430{transform:matrix(0.301472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301472,0.000000,0.000000,0.250000,0,0);}
.m9_c00430{transform:matrix(0.301741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301741,0.000000,0.000000,0.250000,0,0);}
.m127_c00430{transform:matrix(0.301906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301906,0.000000,0.000000,0.250000,0,0);}
.mb2_c00430{transform:matrix(0.302633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302633,0.000000,0.000000,0.250000,0,0);}
.ma3_c00430{transform:matrix(0.302640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302640,0.000000,0.000000,0.250000,0,0);}
.m160_c00430{transform:matrix(0.303163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303163,0.000000,0.000000,0.250000,0,0);}
.m49_c00430{transform:matrix(0.303994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303994,0.000000,0.000000,0.250000,0,0);}
.mb_c00430{transform:matrix(0.304282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304282,0.000000,0.000000,0.250000,0,0);}
.m149_c00430{transform:matrix(0.305012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305012,0.000000,0.000000,0.250000,0,0);}
.m151_c00430{transform:matrix(0.305300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305300,0.000000,0.000000,0.250000,0,0);}
.mf5_c00430{transform:matrix(0.305496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305496,0.000000,0.000000,0.250000,0,0);}
.m7c_c00430{transform:matrix(0.305706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305706,0.000000,0.000000,0.250000,0,0);}
.me5_c00430{transform:matrix(0.305826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305826,0.000000,0.000000,0.250000,0,0);}
.m5e_c00430{transform:matrix(0.305968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305968,0.000000,0.000000,0.250000,0,0);}
.m14c_c00430{transform:matrix(0.306097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306097,0.000000,0.000000,0.250000,0,0);}
.m3f_c00430{transform:matrix(0.307614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307614,0.000000,0.000000,0.250000,0,0);}
.mcc_c00430{transform:matrix(0.308179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308179,0.000000,0.000000,0.250000,0,0);}
.me0_c00430{transform:matrix(0.308315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308315,0.000000,0.000000,0.250000,0,0);}
.m5c_c00430{transform:matrix(0.308633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308633,0.000000,0.000000,0.250000,0,0);}
.m12d_c00430{transform:matrix(0.309713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309713,0.000000,0.000000,0.250000,0,0);}
.mec_c00430{transform:matrix(0.309760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309760,0.000000,0.000000,0.250000,0,0);}
.md1_c00430{transform:matrix(0.310175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310175,0.000000,0.000000,0.250000,0,0);}
.m20_c00430{transform:matrix(0.310367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310367,0.000000,0.000000,0.250000,0,0);}
.m15c_c00430{transform:matrix(0.311168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311168,0.000000,0.000000,0.250000,0,0);}
.m81_c00430{transform:matrix(0.311822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311822,0.000000,0.000000,0.250000,0,0);}
.m10c_c00430{transform:matrix(0.312030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312030,0.000000,0.000000,0.250000,0,0);}
.m4a_c00430{transform:matrix(0.313208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313208,0.000000,0.000000,0.250000,0,0);}
.m42_c00430{transform:matrix(0.314911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314911,0.000000,0.000000,0.250000,0,0);}
.md4_c00430{transform:matrix(0.315640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315640,0.000000,0.000000,0.250000,0,0);}
.m134_c00430{transform:matrix(0.316084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316084,0.000000,0.000000,0.250000,0,0);}
.m75_c00430{transform:matrix(0.317303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317303,0.000000,0.000000,0.250000,0,0);}
.m108_c00430{transform:matrix(0.318309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318309,0.000000,0.000000,0.250000,0,0);}
.m158_c00430{transform:matrix(0.319035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319035,0.000000,0.000000,0.250000,0,0);}
.m15b_c00430{transform:matrix(0.319062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319062,0.000000,0.000000,0.250000,0,0);}
.m157_c00430{transform:matrix(0.320057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320057,0.000000,0.000000,0.250000,0,0);}
.m99_c00430{transform:matrix(0.320713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320713,0.000000,0.000000,0.250000,0,0);}
.m87_c00430{transform:matrix(0.321646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321646,0.000000,0.000000,0.250000,0,0);}
.mf7_c00430{transform:matrix(0.322008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322008,0.000000,0.000000,0.250000,0,0);}
.maf_c00430{transform:matrix(0.322146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322146,0.000000,0.000000,0.250000,0,0);}
.m145_c00430{transform:matrix(0.322146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322146,0.000000,0.000000,0.250000,0,0);}
.m61_c00430{transform:matrix(0.322755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322755,0.000000,0.000000,0.250000,0,0);}
.m8c_c00430{transform:matrix(0.323141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323141,0.000000,0.000000,0.250000,0,0);}
.m110_c00430{transform:matrix(0.323181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323181,0.000000,0.000000,0.250000,0,0);}
.m38_c00430{transform:matrix(0.323287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323287,0.000000,0.000000,0.250000,0,0);}
.mc5_c00430{transform:matrix(0.323883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323883,0.000000,0.000000,0.250000,0,0);}
.m141_c00430{transform:matrix(0.324763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324763,0.000000,0.000000,0.250000,0,0);}
.m153_c00430{transform:matrix(0.324839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324839,0.000000,0.000000,0.250000,0,0);}
.m148_c00430{transform:matrix(0.325779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325779,0.000000,0.000000,0.250000,0,0);}
.m130_c00430{transform:matrix(0.327129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327129,0.000000,0.000000,0.250000,0,0);}
.m44_c00430{transform:matrix(0.327580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327580,0.000000,0.000000,0.250000,0,0);}
.mdc_c00430{transform:matrix(0.327675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327675,0.000000,0.000000,0.250000,0,0);}
.m59_c00430{transform:matrix(0.327685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327685,0.000000,0.000000,0.250000,0,0);}
.m56_c00430{transform:matrix(0.327703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327703,0.000000,0.000000,0.250000,0,0);}
.m143_c00430{transform:matrix(0.328355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328355,0.000000,0.000000,0.250000,0,0);}
.mc3_c00430{transform:matrix(0.328526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328526,0.000000,0.000000,0.250000,0,0);}
.m13c_c00430{transform:matrix(0.328588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328588,0.000000,0.000000,0.250000,0,0);}
.m10b_c00430{transform:matrix(0.328786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328786,0.000000,0.000000,0.250000,0,0);}
.m124_c00430{transform:matrix(0.330813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330813,0.000000,0.000000,0.250000,0,0);}
.mfb_c00430{transform:matrix(0.330853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330853,0.000000,0.000000,0.250000,0,0);}
.m33_c00430{transform:matrix(0.332395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332395,0.000000,0.000000,0.250000,0,0);}
.m9b_c00430{transform:matrix(0.333232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333232,0.000000,0.000000,0.250000,0,0);}
.md0_c00430{transform:matrix(0.333950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333950,0.000000,0.000000,0.250000,0,0);}
.m120_c00430{transform:matrix(0.336013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336013,0.000000,0.000000,0.250000,0,0);}
.m14b_c00430{transform:matrix(0.336863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336863,0.000000,0.000000,0.250000,0,0);}
.m147_c00430{transform:matrix(0.337328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337328,0.000000,0.000000,0.250000,0,0);}
.m6_c00430{transform:matrix(0.337931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337931,0.000000,0.000000,0.250000,0,0);}
.m4_c00430{transform:matrix(0.338913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338913,0.000000,0.000000,0.250000,0,0);}
.mf1_c00430{transform:matrix(0.340649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340649,0.000000,0.000000,0.250000,0,0);}
.m6c_c00430{transform:matrix(0.341001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341001,0.000000,0.000000,0.250000,0,0);}
.m140_c00430{transform:matrix(0.341694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341694,0.000000,0.000000,0.250000,0,0);}
.mfe_c00430{transform:matrix(0.341919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341919,0.000000,0.000000,0.250000,0,0);}
.m43_c00430{transform:matrix(0.345034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345034,0.000000,0.000000,0.250000,0,0);}
.m14e_c00430{transform:matrix(0.345561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345561,0.000000,0.000000,0.250000,0,0);}
.ma5_c00430{transform:matrix(0.347858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347858,0.000000,0.000000,0.250000,0,0);}
.mf3_c00430{transform:matrix(0.347935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347935,0.000000,0.000000,0.250000,0,0);}
.m9d_c00430{transform:matrix(0.348838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348838,0.000000,0.000000,0.250000,0,0);}
.meb_c00430{transform:matrix(0.349994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349994,0.000000,0.000000,0.250000,0,0);}
.m138_c00430{transform:matrix(0.350694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350694,0.000000,0.000000,0.250000,0,0);}
.m1c_c00430{transform:matrix(0.352526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352526,0.000000,0.000000,0.250000,0,0);}
.m6b_c00430{transform:matrix(0.352553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352553,0.000000,0.000000,0.250000,0,0);}
.mff_c00430{transform:matrix(0.352894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352894,0.000000,0.000000,0.250000,0,0);}
.ma_c00430{transform:matrix(0.354785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354785,0.000000,0.000000,0.250000,0,0);}
.mf2_c00430{transform:matrix(0.355034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355034,0.000000,0.000000,0.250000,0,0);}
.ma1_c00430{transform:matrix(0.355191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355191,0.000000,0.000000,0.250000,0,0);}
.m89_c00430{transform:matrix(0.356133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356133,0.000000,0.000000,0.250000,0,0);}
.mc8_c00430{transform:matrix(0.357650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357650,0.000000,0.000000,0.250000,0,0);}
.m82_c00430{transform:matrix(0.357973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357973,0.000000,0.000000,0.250000,0,0);}
.m3_c00430{transform:matrix(0.362249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362249,0.000000,0.000000,0.250000,0,0);}
.m13b_c00430{transform:matrix(0.362375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362375,0.000000,0.000000,0.250000,0,0);}
.mbd_c00430{transform:matrix(0.364292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364292,0.000000,0.000000,0.250000,0,0);}
.m164_c00430{transform:matrix(0.364806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364806,0.000000,0.000000,0.250000,0,0);}
.m72_c00430{transform:matrix(0.365574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365574,0.000000,0.000000,0.250000,0,0);}
.m58_c00430{transform:matrix(0.366996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366996,0.000000,0.000000,0.250000,0,0);}
.m154_c00430{transform:matrix(0.368059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368059,0.000000,0.000000,0.250000,0,0);}
.m22_c00430{transform:matrix(0.368790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368790,0.000000,0.000000,0.250000,0,0);}
.mad_c00430{transform:matrix(0.368991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368991,0.000000,0.000000,0.250000,0,0);}
.me2_c00430{transform:matrix(0.371250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371250,0.000000,0.000000,0.250000,0,0);}
.m23_c00430{transform:matrix(0.371543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371543,0.000000,0.000000,0.250000,0,0);}
.md9_c00430{transform:matrix(0.371582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371582,0.000000,0.000000,0.250000,0,0);}
.m104_c00430{transform:matrix(0.373688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373688,0.000000,0.000000,0.250000,0,0);}
.m14a_c00430{transform:matrix(0.374993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374993,0.000000,0.000000,0.250000,0,0);}
.ma9_c00430{transform:matrix(0.375038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375038,0.000000,0.000000,0.250000,0,0);}
.m11a_c00430{transform:matrix(0.384654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384654,0.000000,0.000000,0.250000,0,0);}
.m17_c00430{transform:matrix(0.385145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385145,0.000000,0.000000,0.250000,0,0);}
.m10d_c00430{transform:matrix(0.399506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399506,0.000000,0.000000,0.250000,0,0);}
.m117_c00430{transform:matrix(0.399996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399996,0.000000,0.000000,0.250000,0,0);}
.m11c_c00430{transform:matrix(0.402348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402348,0.000000,0.000000,0.250000,0,0);}
.maa_c00430{transform:matrix(0.410689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410689,0.000000,0.000000,0.250000,0,0);}
.m41_c00430{transform:matrix(0.421510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421510,0.000000,0.000000,0.250000,0,0);}
.mcb_c00430{transform:matrix(0.426909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426909,0.000000,0.000000,0.250000,0,0);}
.md_c00430{transform:matrix(0.427926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427926,0.000000,0.000000,0.250000,0,0);}
.m12_c00430{transform:matrix(0.435287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435287,0.000000,0.000000,0.250000,0,0);}
.mba_c00430{transform:matrix(0.435449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435449,0.000000,0.000000,0.250000,0,0);}
.m16_c00430{transform:matrix(0.436860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436860,0.000000,0.000000,0.250000,0,0);}
.mab_c00430{transform:matrix(0.446847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446847,0.000000,0.000000,0.250000,0,0);}
.m97_c00430{transform:matrix(0.450002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450002,0.000000,0.000000,0.250000,0,0);}
.m162_c00430{transform:matrix(0.453314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453314,0.000000,0.000000,0.250000,0,0);}
.mfc_c00430{transform:matrix(0.458292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458292,0.000000,0.000000,0.250000,0,0);}
.md6_c00430{transform:matrix(0.458920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458920,0.000000,0.000000,0.250000,0,0);}
.m159_c00430{transform:matrix(0.458963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458963,0.000000,0.000000,0.250000,0,0);}
.m48_c00430{transform:matrix(0.461867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461867,0.000000,0.000000,0.250000,0,0);}
.m47_c00430{transform:matrix(0.462554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462554,0.000000,0.000000,0.250000,0,0);}
.m15_c00430{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);}
.m66_c00430{transform:matrix(0.466662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466662,0.000000,0.000000,0.250000,0,0);}
.m9c_c00430{transform:matrix(0.466693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466693,0.000000,0.000000,0.250000,0,0);}
.m11b_c00430{transform:matrix(0.466826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466826,0.000000,0.000000,0.250000,0,0);}
.m156_c00430{transform:matrix(0.491646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491646,0.000000,0.000000,0.250000,0,0);}
.m106_c00430{transform:matrix(0.493701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493701,0.000000,0.000000,0.250000,0,0);}
.m63_c00430{transform:matrix(0.496954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496954,0.000000,0.000000,0.250000,0,0);}
.mb8_c00430{transform:matrix(0.515221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515221,0.000000,0.000000,0.250000,0,0);}
.m64_c00430{transform:matrix(0.526485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526485,0.000000,0.000000,0.250000,0,0);}
.m11f_c00430{transform:matrix(0.535704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535704,0.000000,0.000000,0.250000,0,0);}
.m3a_c00430{transform:matrix(0.545721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545721,0.000000,0.000000,0.250000,0,0);}
.m116_c00430{transform:matrix(0.549992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549992,0.000000,0.000000,0.250000,0,0);}
.mc_c00430{transform:matrix(0.564641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564641,0.000000,0.000000,0.250000,0,0);}
.m118_c00430{transform:matrix(0.575302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575302,0.000000,0.000000,0.250000,0,0);}
.m3c_c00430{transform:matrix(0.666406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666406,0.000000,0.000000,0.250000,0,0);}
.m115_c00430{transform:matrix(0.808066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.808066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.808066,0.000000,0.000000,0.250000,0,0);}
.m24_c00430{transform:matrix(1.094332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.094332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.094332,0.000000,0.000000,0.250000,0,0);}
.vb_c00430{vertical-align:-24.215400px;}
.vc_c00430{vertical-align:-22.850784px;}
.v9_c00430{vertical-align:-7.147800px;}
.v2_c00430{vertical-align:-1.425600px;}
.v0_c00430{vertical-align:0.000000px;}
.v1_c00430{vertical-align:2.871000px;}
.v5_c00430{vertical-align:5.702400px;}
.v7_c00430{vertical-align:7.128000px;}
.v6_c00430{vertical-align:8.553600px;}
.v8_c00430{vertical-align:18.532800px;}
.v3_c00430{vertical-align:22.809600px;}
.ve_c00430{vertical-align:24.255000px;}
.v10_c00430{vertical-align:29.937600px;}
.v4_c00430{vertical-align:31.343400px;}
.va_c00430{vertical-align:34.194600px;}
.vf_c00430{vertical-align:41.342400px;}
.vd_c00430{vertical-align:51.301800px;}
.ls1f_c00430{letter-spacing:-3.769927px;}
.ls2a_c00430{letter-spacing:-2.744280px;}
.ls91_c00430{letter-spacing:-2.661127px;}
.ls2b_c00430{letter-spacing:-2.564100px;}
.lsb2_c00430{letter-spacing:-2.494800px;}
.ls74_c00430{letter-spacing:-2.480940px;}
.lsaf_c00430{letter-spacing:-2.439367px;}
.ls41_c00430{letter-spacing:-2.314627px;}
.lsb6_c00430{letter-spacing:-2.300767px;}
.ls94_c00430{letter-spacing:-2.286900px;}
.ls92_c00430{letter-spacing:-2.279977px;}
.ls63_c00430{letter-spacing:-2.259180px;}
.lsd3_c00430{letter-spacing:-2.245327px;}
.ls3f_c00430{letter-spacing:-2.155230px;}
.lsb5_c00430{letter-spacing:-2.134440px;}
.ls86_c00430{letter-spacing:-2.106720px;}
.ls65_c00430{letter-spacing:-2.092867px;}
.ls23_c00430{letter-spacing:-2.044350px;}
.lsbe_c00430{letter-spacing:-2.035129px;}
.lsb3_c00430{letter-spacing:-1.947330px;}
.ls7d_c00430{letter-spacing:-1.884967px;}
.lscc_c00430{letter-spacing:-1.829520px;}
.ls7f_c00430{letter-spacing:-1.815667px;}
.ls8c_c00430{letter-spacing:-1.718640px;}
.ls32_c00430{letter-spacing:-1.690920px;}
.ls3d_c00430{letter-spacing:-1.683990px;}
.lsca_c00430{letter-spacing:-1.670130px;}
.ls5e_c00430{letter-spacing:-1.635480px;}
.ls98_c00430{letter-spacing:-1.614690px;}
.lsa6_c00430{letter-spacing:-1.580040px;}
.lsc0_c00430{letter-spacing:-1.566180px;}
.ls85_c00430{letter-spacing:-1.524600px;}
.ls1e_c00430{letter-spacing:-1.496880px;}
.lse3_c00430{letter-spacing:-1.489950px;}
.lsbb_c00430{letter-spacing:-1.469167px;}
.ls6c_c00430{letter-spacing:-1.455300px;}
.lsb0_c00430{letter-spacing:-1.449681px;}
.ls73_c00430{letter-spacing:-1.441440px;}
.ls29_c00430{letter-spacing:-1.427580px;}
.ls90_c00430{letter-spacing:-1.413720px;}
.ls11_c00430{letter-spacing:-1.394953px;}
.ls38_c00430{letter-spacing:-1.379070px;}
.ls72_c00430{letter-spacing:-1.372140px;}
.ls50_c00430{letter-spacing:-1.323630px;}
.ls78_c00430{letter-spacing:-1.288980px;}
.ls3c_c00430{letter-spacing:-1.275120px;}
.ls5b_c00430{letter-spacing:-1.219680px;}
.lsd5_c00430{letter-spacing:-1.191805px;}
.ls9e_c00430{letter-spacing:-1.164240px;}
.ls5d_c00430{letter-spacing:-1.150380px;}
.ls66_c00430{letter-spacing:-1.112209px;}
.ls3a_c00430{letter-spacing:-0.997920px;}
.ls80_c00430{letter-spacing:-0.984060px;}
.ls56_c00430{letter-spacing:-0.928620px;}
.ls58_c00430{letter-spacing:-0.906682px;}
.lsad_c00430{letter-spacing:-0.887040px;}
.ls4a_c00430{letter-spacing:-0.880110px;}
.ls51_c00430{letter-spacing:-0.859320px;}
.ls96_c00430{letter-spacing:-0.831600px;}
.lsa4_c00430{letter-spacing:-0.819958px;}
.lsd4_c00430{letter-spacing:-0.810810px;}
.ls46_c00430{letter-spacing:-0.776160px;}
.ls3b_c00430{letter-spacing:-0.713790px;}
.lsb9_c00430{letter-spacing:-0.681932px;}
.lscf_c00430{letter-spacing:-0.595980px;}
.lse5_c00430{letter-spacing:-0.567072px;}
.ls9f_c00430{letter-spacing:-0.510385px;}
.lsa3_c00430{letter-spacing:-0.459103px;}
.ls26_c00430{letter-spacing:-0.398970px;}
.lsa8_c00430{letter-spacing:-0.357489px;}
.lsac_c00430{letter-spacing:-0.357034px;}
.lsc5_c00430{letter-spacing:-0.340644px;}
.lsc9_c00430{letter-spacing:-0.260251px;}
.ls2f_c00430{letter-spacing:-0.234749px;}
.lsa0_c00430{letter-spacing:-0.214315px;}
.ls12_c00430{letter-spacing:-0.153410px;}
.ls37_c00430{letter-spacing:-0.086684px;}
.ls99_c00430{letter-spacing:-0.059974px;}
.ls10_c00430{letter-spacing:0.000000px;}
.ls35_c00430{letter-spacing:0.082130px;}
.lse_c00430{letter-spacing:0.092664px;}
.ls57_c00430{letter-spacing:0.130007px;}
.ls43_c00430{letter-spacing:0.139194px;}
.ls95_c00430{letter-spacing:0.192456px;}
.lsd_c00430{letter-spacing:0.252509px;}
.ls6_c00430{letter-spacing:0.336956px;}
.lsda_c00430{letter-spacing:0.371963px;}
.ls89_c00430{letter-spacing:0.375685px;}
.ls28_c00430{letter-spacing:0.451282px;}
.lscd_c00430{letter-spacing:0.475210px;}
.ls16_c00430{letter-spacing:0.573329px;}
.ls1d_c00430{letter-spacing:0.603900px;}
.ls82_c00430{letter-spacing:0.624175px;}
.lsc4_c00430{letter-spacing:0.673210px;}
.ls70_c00430{letter-spacing:0.685714px;}
.ls36_c00430{letter-spacing:0.705296px;}
.lsb_c00430{letter-spacing:0.767923px;}
.ls30_c00430{letter-spacing:0.772210px;}
.ls22_c00430{letter-spacing:0.792000px;}
.lsc8_c00430{letter-spacing:0.806652px;}
.lsab_c00430{letter-spacing:0.812612px;}
.ls93_c00430{letter-spacing:0.841500px;}
.ls27_c00430{letter-spacing:0.851400px;}
.lsa1_c00430{letter-spacing:0.871200px;}
.ls79_c00430{letter-spacing:0.900900px;}
.ls1c_c00430{letter-spacing:0.910800px;}
.lsdb_c00430{letter-spacing:0.920700px;}
.lsd9_c00430{letter-spacing:0.950400px;}
.lsa2_c00430{letter-spacing:0.970200px;}
.lsd8_c00430{letter-spacing:1.029600px;}
.ls4e_c00430{letter-spacing:1.039500px;}
.ls6f_c00430{letter-spacing:1.098900px;}
.ls47_c00430{letter-spacing:1.108800px;}
.ls61_c00430{letter-spacing:1.128600px;}
.lsd0_c00430{letter-spacing:1.138500px;}
.ls8e_c00430{letter-spacing:1.158300px;}
.ls97_c00430{letter-spacing:1.188000px;}
.ls52_c00430{letter-spacing:1.227600px;}
.ls49_c00430{letter-spacing:1.257300px;}
.lsc7_c00430{letter-spacing:1.306800px;}
.ls55_c00430{letter-spacing:1.326600px;}
.ls24_c00430{letter-spacing:1.366200px;}
.ls81_c00430{letter-spacing:1.405800px;}
.ls40_c00430{letter-spacing:1.415700px;}
.lsc3_c00430{letter-spacing:1.425600px;}
.lsb8_c00430{letter-spacing:1.444885px;}
.ls60_c00430{letter-spacing:1.445400px;}
.ls7a_c00430{letter-spacing:1.524600px;}
.ls31_c00430{letter-spacing:1.526659px;}
.ls25_c00430{letter-spacing:1.534500px;}
.ls5c_c00430{letter-spacing:1.544400px;}
.lsa7_c00430{letter-spacing:1.554300px;}
.ls13_c00430{letter-spacing:1.564200px;}
.lsf_c00430{letter-spacing:1.582104px;}
.ls34_c00430{letter-spacing:1.613621px;}
.lse6_c00430{letter-spacing:1.623600px;}
.ls1b_c00430{letter-spacing:1.643400px;}
.ls45_c00430{letter-spacing:1.663200px;}
.ls8f_c00430{letter-spacing:1.702810px;}
.lsc2_c00430{letter-spacing:1.722600px;}
.ls4f_c00430{letter-spacing:1.732500px;}
.ls3_c00430{letter-spacing:1.741450px;}
.ls71_c00430{letter-spacing:1.782000px;}
.lsaa_c00430{letter-spacing:1.821600px;}
.ls67_c00430{letter-spacing:1.841400px;}
.ls1a_c00430{letter-spacing:1.861200px;}
.ls59_c00430{letter-spacing:1.890900px;}
.ls9a_c00430{letter-spacing:1.979149px;}
.lsc6_c00430{letter-spacing:1.980000px;}
.lse4_c00430{letter-spacing:2.019600px;}
.lsa5_c00430{letter-spacing:2.059200px;}
.ls9_c00430{letter-spacing:2.067278px;}
.ls6e_c00430{letter-spacing:2.079000px;}
.lsbc_c00430{letter-spacing:2.098810px;}
.ls5f_c00430{letter-spacing:2.138400px;}
.ls42_c00430{letter-spacing:2.158200px;}
.lsb4_c00430{letter-spacing:2.171030px;}
.ls64_c00430{letter-spacing:2.217600px;}
.ls69_c00430{letter-spacing:2.237400px;}
.ls19_c00430{letter-spacing:2.296810px;}
.ls68_c00430{letter-spacing:2.306700px;}
.ls88_c00430{letter-spacing:2.336400px;}
.lscb_c00430{letter-spacing:2.385900px;}
.ls8a_c00430{letter-spacing:2.395810px;}
.lsa9_c00430{letter-spacing:2.415600px;}
.ls8b_c00430{letter-spacing:2.455200px;}
.ls62_c00430{letter-spacing:2.484900px;}
.lse0_c00430{letter-spacing:2.524262px;}
.lsc1_c00430{letter-spacing:2.554200px;}
.ls7e_c00430{letter-spacing:2.593810px;}
.lsdc_c00430{letter-spacing:2.603700px;}
.ls7b_c00430{letter-spacing:2.665238px;}
.ls4b_c00430{letter-spacing:2.687263px;}
.lsae_c00430{letter-spacing:2.692810px;}
.ls3e_c00430{letter-spacing:2.771010px;}
.lsd6_c00430{letter-spacing:2.781900px;}
.ls6a_c00430{letter-spacing:2.989810px;}
.ls15_c00430{letter-spacing:3.009600px;}
.lse1_c00430{letter-spacing:3.026747px;}
.lsd7_c00430{letter-spacing:3.049200px;}
.ls5_c00430{letter-spacing:3.140161px;}
.ls4d_c00430{letter-spacing:3.168000px;}
.lsdd_c00430{letter-spacing:3.207610px;}
.ls9b_c00430{letter-spacing:3.247200px;}
.lsba_c00430{letter-spacing:3.257110px;}
.ls7c_c00430{letter-spacing:3.267000px;}
.lsb7_c00430{letter-spacing:3.286810px;}
.ls9d_c00430{letter-spacing:3.375900px;}
.lsb1_c00430{letter-spacing:3.474900px;}
.ls20_c00430{letter-spacing:3.484810px;}
.ls17_c00430{letter-spacing:3.514500px;}
.ls14_c00430{letter-spacing:3.544200px;}
.ls75_c00430{letter-spacing:3.564000px;}
.lsde_c00430{letter-spacing:3.603610px;}
.ls18_c00430{letter-spacing:3.643200px;}
.ls2d_c00430{letter-spacing:3.663000px;}
.ls77_c00430{letter-spacing:3.722400px;}
.ls4c_c00430{letter-spacing:3.732310px;}
.lsbf_c00430{letter-spacing:3.742200px;}
.lsbd_c00430{letter-spacing:3.781810px;}
.ls2e_c00430{letter-spacing:4.118400px;}
.lsce_c00430{letter-spacing:7.128198px;}
.lsd1_c00430{letter-spacing:9.979398px;}
.ls8_c00430{letter-spacing:11.342628px;}
.lsdf_c00430{letter-spacing:11.404998px;}
.ls21_c00430{letter-spacing:12.830598px;}
.ls2_c00430{letter-spacing:17.107200px;}
.ls48_c00430{letter-spacing:18.532998px;}
.ls33_c00430{letter-spacing:19.958400px;}
.ls0_c00430{letter-spacing:20.475906px;}
.ls84_c00430{letter-spacing:21.384000px;}
.ls7_c00430{letter-spacing:24.812117px;}
.ls6d_c00430{letter-spacing:25.660998px;}
.ls39_c00430{letter-spacing:27.086400px;}
.ls1_c00430{letter-spacing:28.512000px;}
.ls83_c00430{letter-spacing:28.512198px;}
.ls4_c00430{letter-spacing:29.741976px;}
.ls6b_c00430{letter-spacing:29.937798px;}
.ls54_c00430{letter-spacing:34.214598px;}
.ls8d_c00430{letter-spacing:37.065798px;}
.ls44_c00430{letter-spacing:38.491398px;}
.lsd2_c00430{letter-spacing:39.916800px;}
.ls9c_c00430{letter-spacing:41.342598px;}
.ls87_c00430{letter-spacing:44.193798px;}
.ls5a_c00430{letter-spacing:47.044800px;}
.ls53_c00430{letter-spacing:48.470598px;}
.ls2c_c00430{letter-spacing:51.321798px;}
.lse2_c00430{letter-spacing:52.747398px;}
.ls76_c00430{letter-spacing:57.024198px;}
.lsa_c00430{letter-spacing:118.080864px;}
.lsc_c00430{letter-spacing:228.006504px;}
.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;}
}
.ws4_c00430{word-spacing:-42.236166px;}
.ws0_c00430{word-spacing:-34.214400px;}
.wsa_c00430{word-spacing:-18.909050px;}
.wsf_c00430{word-spacing:-17.912664px;}
.wse_c00430{word-spacing:-17.820000px;}
.wsd_c00430{word-spacing:-17.721000px;}
.ws10_c00430{word-spacing:-17.572500px;}
.ws5_c00430{word-spacing:-17.424050px;}
.ws2_c00430{word-spacing:-17.118684px;}
.wsb_c00430{word-spacing:-16.232245px;}
.ws3_c00430{word-spacing:-12.825252px;}
.ws12_c00430{word-spacing:0.000000px;}
.ws6_c00430{word-spacing:6.119349px;}
.ws11_c00430{word-spacing:8.081568px;}
.ws7_c00430{word-spacing:9.579794px;}
.ws8_c00430{word-spacing:14.863662px;}
.ws1_c00430{word-spacing:15.260395px;}
.wsc_c00430{word-spacing:17.141414px;}
.ws9_c00430{word-spacing:71.633430px;}
._12_c00430{margin-left:-11.612700px;}
._26_c00430{margin-left:-9.789120px;}
._10_c00430{margin-left:-8.375466px;}
._b_c00430{margin-left:-6.352632px;}
._1_c00430{margin-left:-4.108500px;}
._7_c00430{margin-left:-2.493216px;}
._19_c00430{width:1.155726px;}
._8_c00430{width:2.257200px;}
._1e_c00430{width:3.354912px;}
._2_c00430{width:4.716360px;}
._1f_c00430{width:6.807339px;}
._6_c00430{width:9.298872px;}
._13_c00430{width:11.499840px;}
._28_c00430{width:12.687444px;}
._3_c00430{width:13.691304px;}
._a_c00430{width:17.247384px;}
._d_c00430{width:20.839896px;}
._1a_c00430{width:24.908400px;}
._14_c00430{width:29.862756px;}
._27_c00430{width:31.036500px;}
._5_c00430{width:33.216480px;}
._e_c00430{width:38.148264px;}
._25_c00430{width:42.157946px;}
._15_c00430{width:44.479512px;}
._1d_c00430{width:47.009556px;}
._18_c00430{width:52.988760px;}
._17_c00430{width:58.206931px;}
._1b_c00430{width:67.580172px;}
._20_c00430{width:93.772697px;}
._c_c00430{width:95.378976px;}
._11_c00430{width:109.751400px;}
._16_c00430{width:147.511188px;}
._4_c00430{width:170.104968px;}
._f_c00430{width:176.799744px;}
._24_c00430{width:247.570904px;}
._21_c00430{width:255.083400px;}
._9_c00430{width:296.392536px;}
._23_c00430{width:344.683152px;}
._29_c00430{width:400.261951px;}
._22_c00430{width:820.175400px;}
._1c_c00430{width:876.006252px;}
._0_c00430{width:1606.293216px;}
.fc0_c00430{color:transparent;}
.fs93_c00430{font-size:7.128198px;}
.fs92_c00430{font-size:9.504198px;}
.fs95_c00430{font-size:9.979398px;}
.fs16_c00430{font-size:10.890198px;}
.fs9e_c00430{font-size:11.404998px;}
.fs12_c00430{font-size:12.078000px;}
.fs17_c00430{font-size:12.830598px;}
.fs91_c00430{font-size:13.266000px;}
.fs46_c00430{font-size:13.464198px;}
.fs26_c00430{font-size:15.444198px;}
.fs18_c00430{font-size:15.840000px;}
.fs73_c00430{font-size:16.236000px;}
.fs72_c00430{font-size:16.830000px;}
.fs1e_c00430{font-size:17.028000px;}
.fs19_c00430{font-size:17.107200px;}
.fs1f_c00430{font-size:17.424000px;}
.fs5e_c00430{font-size:18.018000px;}
.fsf_c00430{font-size:18.216000px;}
.fs9a_c00430{font-size:18.414000px;}
.fs38_c00430{font-size:18.532998px;}
.fs99_c00430{font-size:19.008000px;}
.fs78_c00430{font-size:19.404000px;}
.fs29_c00430{font-size:19.958400px;}
.fs2d_c00430{font-size:20.394000px;}
.fs98_c00430{font-size:20.592000px;}
.fs3e_c00430{font-size:20.790000px;}
.fs65_c00430{font-size:21.384000px;}
.fsa0_c00430{font-size:21.582000px;}
.fs58_c00430{font-size:21.978000px;}
.fs37_c00430{font-size:22.176000px;}
.fs1_c00430{font-size:22.572000px;}
.fs94_c00430{font-size:22.770000px;}
.fs6d_c00430{font-size:23.166000px;}
.fs44_c00430{font-size:23.760000px;}
.fs42_c00430{font-size:24.552000px;}
.fs39_c00430{font-size:25.146000px;}
.fs7f_c00430{font-size:25.344000px;}
.fs57_c00430{font-size:25.660998px;}
.fs79_c00430{font-size:25.938000px;}
.fs8c_c00430{font-size:26.136000px;}
.fs48_c00430{font-size:26.532000px;}
.fs2b_c00430{font-size:27.086400px;}
.fs1c_c00430{font-size:27.324000px;}
.fs6a_c00430{font-size:27.720000px;}
.fs63_c00430{font-size:28.116000px;}
.fs0_c00430{font-size:28.314000px;}
.fs2c_c00430{font-size:28.512000px;}
.fs64_c00430{font-size:28.512198px;}
.fs4f_c00430{font-size:28.908000px;}
.fs5_c00430{font-size:29.502000px;}
.fs56_c00430{font-size:29.937798px;}
.fs5f_c00430{font-size:30.492000px;}
.fs1d_c00430{font-size:30.690000px;}
.fs10_c00430{font-size:30.888000px;}
.fs7c_c00430{font-size:31.086000px;}
.fs6_c00430{font-size:31.284000px;}
.fsa5_c00430{font-size:32.472000px;}
.fse_c00430{font-size:32.868000px;}
.fs36_c00430{font-size:33.264000px;}
.fs8f_c00430{font-size:33.462000px;}
.fsa3_c00430{font-size:33.660000px;}
.fs90_c00430{font-size:33.858000px;}
.fs6e_c00430{font-size:34.056198px;}
.fs45_c00430{font-size:34.214598px;}
.fs8a_c00430{font-size:34.452000px;}
.fs3f_c00430{font-size:34.650000px;}
.fs4b_c00430{font-size:34.848000px;}
.fs59_c00430{font-size:35.640000px;}
.fs2e_c00430{font-size:36.432000px;}
.fs34_c00430{font-size:36.630000px;}
.fs54_c00430{font-size:36.828000px;}
.fs6c_c00430{font-size:37.065798px;}
.fsd_c00430{font-size:37.224000px;}
.fs41_c00430{font-size:37.818000px;}
.fs35_c00430{font-size:38.491398px;}
.fs5a_c00430{font-size:39.204000px;}
.fs2a_c00430{font-size:39.402000px;}
.fs8b_c00430{font-size:39.600000px;}
.fs96_c00430{font-size:39.916800px;}
.fs25_c00430{font-size:40.392000px;}
.fs20_c00430{font-size:40.788000px;}
.fs5b_c00430{font-size:41.184000px;}
.fs76_c00430{font-size:41.342598px;}
.fs4a_c00430{font-size:41.580000px;}
.fs86_c00430{font-size:41.976198px;}
.fsa4_c00430{font-size:42.570000px;}
.fs13_c00430{font-size:42.768000px;}
.fs32_c00430{font-size:43.164000px;}
.fs66_c00430{font-size:43.560000px;}
.fs68_c00430{font-size:44.193798px;}
.fs52_c00430{font-size:44.352000px;}
.fs40_c00430{font-size:44.748000px;}
.fs27_c00430{font-size:45.144000px;}
.fs3c_c00430{font-size:45.342000px;}
.fs62_c00430{font-size:45.540000px;}
.fsc_c00430{font-size:45.936198px;}
.fs55_c00430{font-size:46.134000px;}
.fs7a_c00430{font-size:46.530000px;}
.fs4c_c00430{font-size:46.728000px;}
.fs49_c00430{font-size:47.044800px;}
.fs7b_c00430{font-size:47.124000px;}
.fs8d_c00430{font-size:47.718000px;}
.fs69_c00430{font-size:47.916198px;}
.fs2f_c00430{font-size:48.114000px;}
.fs28_c00430{font-size:48.312000px;}
.fs43_c00430{font-size:48.470598px;}
.fs6b_c00430{font-size:49.104000px;}
.fs50_c00430{font-size:49.698000px;}
.fs9_c00430{font-size:50.292000px;}
.fs9f_c00430{font-size:50.688000px;}
.fs89_c00430{font-size:51.084000px;}
.fs23_c00430{font-size:51.321798px;}
.fs61_c00430{font-size:51.876198px;}
.fs9b_c00430{font-size:52.074000px;}
.fs8e_c00430{font-size:52.272000px;}
.fsa2_c00430{font-size:52.747398px;}
.fs87_c00430{font-size:53.658000px;}
.fs11_c00430{font-size:53.856198px;}
.fs33_c00430{font-size:54.648000px;}
.fs3b_c00430{font-size:55.638000px;}
.fs47_c00430{font-size:55.836198px;}
.fs4e_c00430{font-size:56.628000px;}
.fs5c_c00430{font-size:57.024198px;}
.fs74_c00430{font-size:57.222000px;}
.fs1a_c00430{font-size:58.410000px;}
.fs53_c00430{font-size:59.796198px;}
.fs8_c00430{font-size:60.192000px;}
.fs84_c00430{font-size:60.984000px;}
.fs30_c00430{font-size:61.578000px;}
.fs80_c00430{font-size:63.162000px;}
.fs3d_c00430{font-size:63.360000px;}
.fs7e_c00430{font-size:63.558000px;}
.fs97_c00430{font-size:64.152198px;}
.fs51_c00430{font-size:64.548000px;}
.fs75_c00430{font-size:64.944000px;}
.fs71_c00430{font-size:65.142198px;}
.fs60_c00430{font-size:65.340000px;}
.fs85_c00430{font-size:65.736198px;}
.fs31_c00430{font-size:66.132198px;}
.fs3_c00430{font-size:66.330000px;}
.fs1b_c00430{font-size:66.528000px;}
.fs83_c00430{font-size:67.122198px;}
.fs77_c00430{font-size:67.518000px;}
.fs81_c00430{font-size:68.112198px;}
.fsa1_c00430{font-size:68.904000px;}
.fs82_c00430{font-size:69.498000px;}
.fs15_c00430{font-size:69.696198px;}
.fs7d_c00430{font-size:70.092198px;}
.fsa_c00430{font-size:70.290000px;}
.fs7_c00430{font-size:70.884000px;}
.fs4_c00430{font-size:71.280000px;}
.fs9c_c00430{font-size:72.072198px;}
.fsb_c00430{font-size:72.864000px;}
.fs22_c00430{font-size:73.260000px;}
.fs5d_c00430{font-size:74.448000px;}
.fs3a_c00430{font-size:74.646198px;}
.fs88_c00430{font-size:74.844000px;}
.fs4d_c00430{font-size:75.636198px;}
.fs70_c00430{font-size:76.032198px;}
.fs21_c00430{font-size:78.408000px;}
.fs9d_c00430{font-size:79.200000px;}
.fs2_c00430{font-size:81.576198px;}
.fs24_c00430{font-size:82.368000px;}
.fs67_c00430{font-size:93.456198px;}
.fs14_c00430{font-size:107.712198px;}
.fs6f_c00430{font-size:126.720000px;}
.y0_c00430{bottom:0.000000px;}
.y8e_c00430{bottom:66.558735px;}
.y1_c00430{bottom:76.500000px;}
.y8d_c00430{bottom:120.726585px;}
.y8a_c00430{bottom:132.849135px;}
.y89_c00430{bottom:133.561935px;}
.y8b_c00430{bottom:133.918335px;}
.y8c_c00430{bottom:139.264335px;}
.y88_c00430{bottom:153.520335px;}
.y86_c00430{bottom:156.727935px;}
.y87_c00430{bottom:162.781785px;}
.y85_c00430{bottom:163.138185px;}
.y84_c00430{bottom:191.650185px;}
.y80_c00430{bottom:195.219135px;}
.y83_c00430{bottom:197.713935px;}
.y7f_c00430{bottom:198.421785px;}
.y82_c00430{bottom:198.778185px;}
.y81_c00430{bottom:208.044585px;}
.y7e_c00430{bottom:265.424985px;}
.y7c_c00430{bottom:297.505935px;}
.y7d_c00430{bottom:297.857385px;}
.y7b_c00430{bottom:331.007535px;}
.y78_c00430{bottom:331.358985px;}
.y77_c00430{bottom:331.720335px;}
.y72_c00430{bottom:332.071785px;}
.y79_c00430{bottom:333.145935px;}
.y7a_c00430{bottom:334.210185px;}
.y74_c00430{bottom:336.704985px;}
.y76_c00430{bottom:337.417785px;}
.y75_c00430{bottom:339.204735px;}
.y73_c00430{bottom:340.268985px;}
.y71_c00430{bottom:360.940185px;}
.y64_c00430{bottom:362.014335px;}
.y6d_c00430{bottom:362.727135px;}
.y70_c00430{bottom:363.434985px;}
.y6f_c00430{bottom:363.796335px;}
.y63_c00430{bottom:365.573385px;}
.y67_c00430{bottom:365.934735px;}
.y68_c00430{bottom:366.286185px;}
.y6c_c00430{bottom:366.647535px;}
.y6e_c00430{bottom:367.360335px;}
.y6b_c00430{bottom:367.711785px;}
.y65_c00430{bottom:368.785935px;}
.y69_c00430{bottom:369.137385px;}
.y62_c00430{bottom:369.498735px;}
.y6a_c00430{bottom:371.637135px;}
.y66_c00430{bottom:373.057785px;}
.y61_c00430{bottom:398.718585px;}
.y5d_c00430{bottom:424.027935px;}
.y60_c00430{bottom:430.081785px;}
.y5c_c00430{bottom:430.443135px;}
.y5a_c00430{bottom:430.794585px;}
.y5f_c00430{bottom:431.155935px;}
.y5b_c00430{bottom:431.868735px;}
.y5e_c00430{bottom:440.778735px;}
.y59_c00430{bottom:456.098985px;}
.y58_c00430{bottom:463.944735px;}
.y48_c00430{bottom:492.100335px;}
.y49_c00430{bottom:493.525935px;}
.y4d_c00430{bottom:494.951535px;}
.y41_c00430{bottom:495.307935px;}
.y40_c00430{bottom:495.664335px;}
.y56_c00430{bottom:496.020735px;}
.y44_c00430{bottom:496.377135px;}
.y46_c00430{bottom:497.084985px;}
.y4a_c00430{bottom:497.446335px;}
.y43_c00430{bottom:498.510585px;}
.y42_c00430{bottom:498.512070px;}
.y45_c00430{bottom:499.223385px;}
.y57_c00430{bottom:499.584735px;}
.y47_c00430{bottom:500.648985px;}
.y3f_c00430{bottom:503.861535px;}
.y4b_c00430{bottom:505.287135px;}
.y55_c00430{bottom:505.638585px;}
.y3e_c00430{bottom:520.607385px;}
.y4c_c00430{bottom:525.240585px;}
.y54_c00430{bottom:527.383935px;}
.y3b_c00430{bottom:527.740335px;}
.y3a_c00430{bottom:528.091785px;}
.y3c_c00430{bottom:528.448185px;}
.y3d_c00430{bottom:533.081385px;}
.y53_c00430{bottom:560.529135px;}
.y39_c00430{bottom:561.236985px;}
.y52_c00430{bottom:568.008585px;}
.y38_c00430{bottom:594.738585px;}
.y37_c00430{bottom:602.227935px;}
.y36_c00430{bottom:626.458185px;}
.y51_c00430{bottom:627.883785px;}
.y34_c00430{bottom:628.601535px;}
.y33_c00430{bottom:630.378585px;}
.y35_c00430{bottom:631.809135px;}
.y32_c00430{bottom:658.182735px;}
.y29_c00430{bottom:658.890585px;}
.y30_c00430{bottom:659.608335px;}
.y2f_c00430{bottom:659.964735px;}
.y50_c00430{bottom:661.033935px;}
.y31_c00430{bottom:661.390335px;}
.y28_c00430{bottom:662.098185px;}
.y2e_c00430{bottom:663.885135px;}
.y27_c00430{bottom:667.449135px;}
.y26_c00430{bottom:723.760335px;}
.y2d_c00430{bottom:724.111785px;}
.y3_c00430{bottom:736.590735px;}
.y25_c00430{bottom:756.192735px;}
.y2c_c00430{bottom:758.326185px;}
.y2b_c00430{bottom:759.400335px;}
.y24_c00430{bottom:761.177385px;}
.y2a_c00430{bottom:763.677135px;}
.y22_c00430{bottom:791.114985px;}
.y20_c00430{bottom:792.189135px;}
.y23_c00430{bottom:792.540585px;}
.y21_c00430{bottom:793.966185px;}
.y4f_c00430{bottom:800.381385px;}
.y4e_c00430{bottom:818.919135px;}
.y18_c00430{bottom:826.047135px;}
.y19_c00430{bottom:826.754985px;}
.y1d_c00430{bottom:827.111385px;}
.y1f_c00430{bottom:828.536985px;}
.y1b_c00430{bottom:829.254735px;}
.y1e_c00430{bottom:829.606185px;}
.y1c_c00430{bottom:830.680335px;}
.y1a_c00430{bottom:836.739135px;}
.y17_c00430{bottom:859.543785px;}
.y14_c00430{bottom:859.905135px;}
.y16_c00430{bottom:860.617935px;}
.y15_c00430{bottom:870.597135px;}
.y2_c00430{bottom:875.230335px;}
.yc_c00430{bottom:891.624735px;}
.y11_c00430{bottom:893.050335px;}
.y8_c00430{bottom:893.401785px;}
.y9_c00430{bottom:893.758185px;}
.y10_c00430{bottom:894.475935px;}
.yd_c00430{bottom:894.827385px;}
.ya_c00430{bottom:895.183785px;}
.yb_c00430{bottom:895.901535px;}
.y13_c00430{bottom:897.678585px;}
.yf_c00430{bottom:899.109135px;}
.y12_c00430{bottom:900.886185px;}
.ye_c00430{bottom:904.093785px;}
.y5_c00430{bottom:926.546985px;}
.y7_c00430{bottom:926.908335px;}
.y6_c00430{bottom:927.264735px;}
.y4_c00430{bottom:1073.740185px;}
.ha5_c00430{height:4.747380px;}
.ha7_c00430{height:6.646279px;}
.hb6_c00430{height:7.595729px;}
.h18_c00430{height:8.545178px;}
.ha4_c00430{height:9.912582px;}
.h17_c00430{height:11.358136px;}
.h1a_c00430{height:11.393395px;}
.h13_c00430{height:11.853896px;}
.h39_c00430{height:12.342977px;}
.h2a_c00430{height:13.292294px;}
.h48_c00430{height:14.042738px;}
.h6c_c00430{height:14.241744px;}
.h27_c00430{height:16.107816px;}
.h7c_c00430{height:16.517725px;}
.h19_c00430{height:16.520625px;}
.h7d_c00430{height:16.933641px;}
.h5a_c00430{height:17.090225px;}
.h63_c00430{height:17.683682px;}
.h1f_c00430{height:17.759672px;}
.h2c_c00430{height:18.039542px;}
.hb0_c00430{height:18.072334px;}
.h20_c00430{height:18.172688px;}
.hae_c00430{height:18.655313px;}
.h6a_c00430{height:18.989124px;}
.h10_c00430{height:18.998719px;}
.h86_c00430{height:19.043965px;}
.h58_c00430{height:19.938573px;}
.h2e_c00430{height:20.015596px;}
.had_c00430{height:20.237766px;}
.hac_c00430{height:21.476813px;}
.h5b_c00430{height:21.570205px;}
.h3f_c00430{height:21.683320px;}
.h37_c00430{height:21.753703px;}
.h38_c00430{height:21.764531px;}
.h47_c00430{height:22.786922px;}
.h46_c00430{height:23.319141px;}
.h3_c00430{height:23.541891px;}
.ha6_c00430{height:23.748398px;}
.h9f_c00430{height:24.096445px;}
.h76_c00430{height:24.161414px;}
.h75_c00430{height:24.685821px;}
.h8f_c00430{height:24.873750px;}
.h87_c00430{height:25.456729px;}
.h43_c00430{height:25.606969px;}
.h35_c00430{height:25.635271px;}
.h4a_c00430{height:26.039707px;}
.h3a_c00430{height:26.226492px;}
.ha8_c00430{height:26.584589px;}
.h1d_c00430{height:26.817012px;}
.h9e_c00430{height:27.205664px;}
.h9d_c00430{height:27.259031px;}
.h81_c00430{height:27.534170px;}
.h99_c00430{height:27.580588px;}
.h69_c00430{height:27.594316px;}
.h9b_c00430{height:27.969047px;}
.h2d_c00430{height:27.982969px;}
.h73_c00430{height:28.911094px;}
.h6f_c00430{height:29.433069px;}
.h2_c00430{height:29.530617px;}
.h51_c00430{height:30.150141px;}
.h8b_c00430{height:30.509209px;}
.h70_c00430{height:30.688260px;}
.h6_c00430{height:30.703535px;}
.h85_c00430{height:30.769664px;}
.h4b_c00430{height:31.331837px;}
.h64_c00430{height:31.802203px;}
.h1e_c00430{height:32.008711px;}
.h11_c00430{height:32.215219px;}
.h45_c00430{height:32.281418px;}
.h84_c00430{height:32.646797px;}
.h83_c00430{height:33.424296px;}
.hbf_c00430{height:33.867281px;}
.h40_c00430{height:34.007080px;}
.h24_c00430{height:34.180317px;}
.h67_c00430{height:34.184391px;}
.h4d_c00430{height:34.201406px;}
.hf_c00430{height:34.280297px;}
.h36_c00430{height:34.693313px;}
.hbb_c00430{height:35.129767px;}
.h77_c00430{height:35.519550px;}
.h8d_c00430{height:35.738227px;}
.h3b_c00430{height:35.756016px;}
.h9a_c00430{height:35.932359px;}
.ha1_c00430{height:36.138867px;}
.h62_c00430{height:36.144668px;}
.h42_c00430{height:37.116299px;}
.h5c_c00430{height:37.171406px;}
.h60_c00430{height:37.978116px;}
.h2f_c00430{height:37.997438px;}
.h56_c00430{height:38.410453px;}
.h2b_c00430{height:38.670908px;}
.he_c00430{height:38.823469px;}
.haf_c00430{height:39.389006px;}
.haa_c00430{height:39.442992px;}
.hbe_c00430{height:39.642539px;}
.hb1_c00430{height:39.927591px;}
.h21_c00430{height:40.031191px;}
.h5e_c00430{height:40.419844px;}
.h59_c00430{height:40.808496px;}
.h5d_c00430{height:40.888547px;}
.h96_c00430{height:41.176847px;}
.h9c_c00430{height:41.301563px;}
.h14_c00430{height:41.974453px;}
.h79_c00430{height:42.127594px;}
.ha3_c00430{height:42.440836px;}
.h6d_c00430{height:42.751758px;}
.h89_c00430{height:42.953625px;}
.h4c_c00430{height:43.366641px;}
.h54_c00430{height:43.507406px;}
.hbd_c00430{height:44.399180px;}
.h33_c00430{height:45.018703px;}
.hd_c00430{height:45.083866px;}
.h71_c00430{height:46.257750px;}
.h41_c00430{height:46.670766px;}
.h72_c00430{height:47.027128px;}
.h8a_c00430{height:47.083781px;}
.h29_c00430{height:47.415586px;}
.h57_c00430{height:48.116320px;}
.h74_c00430{height:48.192891px;}
.h4e_c00430{height:48.735844px;}
.h52_c00430{height:48.775869px;}
.h88_c00430{height:49.148859px;}
.h9_c00430{height:49.358848px;}
.hb7_c00430{height:49.747500px;}
.ha0_c00430{height:49.768383px;}
.h98_c00430{height:50.111209px;}
.h30_c00430{height:50.181398px;}
.h68_c00430{height:50.913651px;}
.hb2_c00430{height:51.107783px;}
.ha2_c00430{height:51.302109px;}
.h12_c00430{height:52.856913px;}
.hc0_c00430{height:52.866000px;}
.h3d_c00430{height:54.605654px;}
.h49_c00430{height:54.800175px;}
.h50_c00430{height:55.577285px;}
.h7f_c00430{height:56.160264px;}
.hba_c00430{height:56.170332px;}
.h34_c00430{height:56.996156px;}
.hab_c00430{height:58.235410px;}
.h8_c00430{height:59.075156px;}
.h1b_c00430{height:60.919805px;}
.h90_c00430{height:61.959208px;}
.h55_c00430{height:62.365566px;}
.h66_c00430{height:62.778375px;}
.ha9_c00430{height:62.961874px;}
.h93_c00430{height:63.604406px;}
.h7b_c00430{height:63.933505px;}
.h65_c00430{height:64.127637px;}
.h31_c00430{height:64.223930px;}
.h94_c00430{height:64.516483px;}
.h26_c00430{height:64.937194px;}
.h3e_c00430{height:66.082500px;}
.h82_c00430{height:66.265225px;}
.h8e_c00430{height:66.289008px;}
.hb3_c00430{height:66.908738px;}
.h53_c00430{height:67.321547px;}
.hb9_c00430{height:67.625508px;}
.h80_c00430{height:67.734563px;}
.h95_c00430{height:67.941277px;}
.h6b_c00430{height:68.147578px;}
.h91_c00430{height:68.208486px;}
.h16_c00430{height:68.403007px;}
.h8c_c00430{height:68.757434px;}
.h32_c00430{height:68.973816px;}
.ha_c00430{height:68.985791px;}
.hc_c00430{height:69.180117px;}
.h28_c00430{height:69.386625px;}
.h7_c00430{height:69.568770px;}
.h5f_c00430{height:69.957422px;}
.h92_c00430{height:70.006355px;}
.hb4_c00430{height:70.734921px;}
.hb_c00430{height:71.512031px;}
.h23_c00430{height:71.900684px;}
.h61_c00430{height:73.066641px;}
.h3c_c00430{height:73.261161px;}
.h97_c00430{height:73.455293px;}
.h4f_c00430{height:74.232792px;}
.h7e_c00430{height:74.342813px;}
.h44_c00430{height:75.271170px;}
.h22_c00430{height:76.953164px;}
.h7a_c00430{height:79.299207px;}
.h25_c00430{height:80.839688px;}
.h4_c00430{height:82.933577px;}
.hbc_c00430{height:88.426181px;}
.hb8_c00430{height:93.823770px;}
.h5_c00430{height:95.726813px;}
.h6e_c00430{height:97.471894px;}
.h1c_c00430{height:100.730025px;}
.h15_c00430{height:105.713632px;}
.h78_c00430{height:124.368750px;}
.hb5_c00430{height:133.904925px;}
.h1_c00430{height:1110.000000px;}
.h0_c00430{height:1263.000000px;}
.w1_c00430{width:775.500000px;}
.w0_c00430{width:892.500000px;}
.x0_c00430{left:0.000000px;}
.x1_c00430{left:58.500000px;}
.x2_c00430{left:72.910185px;}
.x4_c00430{left:88.210635px;}
.x8e_c00430{left:89.804535px;}
.x96_c00430{left:91.012335px;}
.xb9_c00430{left:92.111235px;}
.x5_c00430{left:94.808985px;}
.x5d_c00430{left:99.783735px;}
.xae_c00430{left:101.357835px;}
.x64_c00430{left:109.277835px;}
.x6_c00430{left:110.366835px;}
.xba_c00430{left:112.143885px;}
.x65_c00430{left:113.539785px;}
.x5e_c00430{left:118.004685px;}
.x97_c00430{left:120.811335px;}
.x5f_c00430{left:122.236935px;}
.xc8_c00430{left:124.112985px;}
.x66_c00430{left:131.102385px;}
.xaf_c00430{left:132.740835px;}
.x60_c00430{left:134.537685px;}
.x95_c00430{left:136.022685px;}
.xd9_c00430{left:137.027535px;}
.x67_c00430{left:142.705185px;}
.xbb_c00430{left:143.774385px;}
.x7_c00430{left:144.813885px;}
.x61_c00430{left:146.110785px;}
.x53_c00430{left:153.897135px;}
.x27_c00430{left:155.382135px;}
.xd7_c00430{left:156.565185px;}
.x62_c00430{left:157.876935px;}
.x69_c00430{left:164.663385px;}
.x29_c00430{left:166.088985px;}
.x28_c00430{left:169.682685px;}
.x8_c00430{left:176.360235px;}
.x63_c00430{left:177.667035px;}
.x68_c00430{left:179.513385px;}
.xb0_c00430{left:187.834335px;}
.x2a_c00430{left:190.066785px;}
.x54_c00430{left:199.070835px;}
.xb4_c00430{left:200.986485px;}
.x2f_c00430{left:210.292485px;}
.xb1_c00430{left:211.866585px;}
.x78_c00430{left:213.262485px;}
.x79_c00430{left:219.707385px;}
.xb5_c00430{left:221.227035px;}
.xd8_c00430{left:222.459585px;}
.x7e_c00430{left:224.048535px;}
.x55_c00430{left:227.048235px;}
.x7f_c00430{left:231.131985px;}
.x30_c00430{left:232.750635px;}
.x81_c00430{left:235.022685px;}
.x98_c00430{left:236.024169px;}
.x6d_c00430{left:237.195735px;}
.xb6_c00430{left:240.626085px;}
.x99_c00430{left:241.823985px;}
.x80_c00430{left:244.422735px;}
.x6a_c00430{left:246.551235px;}
.x6e_c00430{left:248.471835px;}
.xb7_c00430{left:253.337685px;}
.x32_c00430{left:254.664285px;}
.x3a_c00430{left:255.768135px;}
.xbc_c00430{left:259.238085px;}
.x31_c00430{left:265.227585px;}
.x83_c00430{left:266.529435px;}
.x9a_c00430{left:268.514385px;}
.x58_c00430{left:270.009285px;}
.x6f_c00430{left:274.637535px;}
.x56_c00430{left:276.770985px;}
.x33_c00430{left:277.815435px;}
.x3_c00430{left:279.587535px;}
.xd2_c00430{left:281.047785px;}
.x9_c00430{left:287.532285px;}
.x3b_c00430{left:289.611285px;}
.x59_c00430{left:294.635535px;}
.x34_c00430{left:298.654935px;}
.x6b_c00430{left:309.896385px;}
.x3c_c00430{left:311.480385px;}
.xbd_c00430{left:312.703035px;}
.x85_c00430{left:315.064185px;}
.x35_c00430{left:317.539185px;}
.x57_c00430{left:320.588385px;}
.x70_c00430{left:321.593235px;}
.x3d_c00430{left:323.612835px;}
.xbe_c00430{left:331.032885px;}
.x36_c00430{left:332.404035px;}
.x6c_c00430{left:334.527585px;}
.x3e_c00430{left:336.071985px;}
.x37_c00430{left:342.779235px;}
.x84_c00430{left:344.269185px;}
.x72_c00430{left:346.447185px;}
.x3f_c00430{left:354.223635px;}
.x9b_c00430{left:358.243035px;}
.x40_c00430{left:364.549335px;}
.x7a_c00430{left:365.786835px;}
.x41_c00430{left:368.712285px;}
.x42_c00430{left:371.632785px;}
.x8f_c00430{left:374.657235px;}
.xbf_c00430{left:376.117485px;}
.x43_c00430{left:377.389635px;}
.x86_c00430{left:378.488535px;}
.x38_c00430{left:379.676535px;}
.xc0_c00430{left:386.566935px;}
.x44_c00430{left:387.591585px;}
.x39_c00430{left:388.675635px;}
.xc9_c00430{left:390.878385px;}
.xcd_c00430{left:396.917385px;}
.x87_c00430{left:398.258835px;}
.x82_c00430{left:399.342885px;}
.xca_c00430{left:401.293185px;}
.x5a_c00430{left:406.282785px;}
.x88_c00430{left:410.049735px;}
.x73_c00430{left:412.257435px;}
.x8a_c00430{left:415.747185px;}
.x9d_c00430{left:418.672635px;}
.xa_c00430{left:420.721935px;}
.x9e_c00430{left:424.691835px;}
.x9f_c00430{left:428.305335px;}
.xc_c00430{left:431.201085px;}
.x9c_c00430{left:432.933585px;}
.xa0_c00430{left:438.254835px;}
.x5b_c00430{left:441.922785px;}
.xb2_c00430{left:444.754185px;}
.xa1_c00430{left:453.476085px;}
.xd0_c00430{left:454.886835px;}
.x89_c00430{left:456.743085px;}
.x74_c00430{left:458.911185px;}
.xd_c00430{left:463.975035px;}
.x7b_c00430{left:465.098685px;}
.x90_c00430{left:466.365885px;}
.xe_c00430{left:474.572985px;}
.x94_c00430{left:475.577835px;}
.x2b_c00430{left:476.820285px;}
.x12_c00430{left:480.384285px;}
.x14_c00430{left:482.032635px;}
.xc1_c00430{left:484.849185px;}
.xb_c00430{left:486.339135px;}
.xf_c00430{left:487.660785px;}
.x15_c00430{left:490.284285px;}
.x71_c00430{left:494.462085px;}
.x8b_c00430{left:497.941935px;}
.x16_c00430{left:503.045385px;}
.x2c_c00430{left:508.381485px;}
.x10_c00430{left:509.821935px;}
.x17_c00430{left:516.133185px;}
.x11_c00430{left:519.845685px;}
.x13_c00430{left:521.291085px;}
.x4d_c00430{left:523.840335px;}
.x45_c00430{left:529.750635px;}
.x8c_c00430{left:532.181085px;}
.x7c_c00430{left:533.522535px;}
.x4e_c00430{left:535.180785px;}
.x5c_c00430{left:537.437985px;}
.x46_c00430{left:542.561235px;}
.xd3_c00430{left:543.571035px;}
.x75_c00430{left:544.892685px;}
.xc2_c00430{left:549.070485px;}
.x47_c00430{left:552.283035px;}
.x76_c00430{left:554.069985px;}
.x8d_c00430{left:557.401335px;}
.x4f_c00430{left:558.836835px;}
.x91_c00430{left:560.608935px;}
.x77_c00430{left:564.554085px;}
.xc7_c00430{left:568.038885px;}
.x18_c00430{left:574.107585px;}
.x92_c00430{left:575.572785px;}
.xd4_c00430{left:576.637035px;}
.x7d_c00430{left:577.914135px;}
.x48_c00430{left:586.492485px;}
.x93_c00430{left:588.408135px;}
.x50_c00430{left:592.684935px;}
.xd5_c00430{left:597.461685px;}
.xab_c00430{left:598.570485px;}
.xac_c00430{left:600.189135px;}
.x49_c00430{left:608.198235px;}
.xa4_c00430{left:609.569385px;}
.xc3_c00430{left:611.866185px;}
.x51_c00430{left:619.489185px;}
.x1a_c00430{left:620.835585px;}
.x1c_c00430{left:623.167035px;}
.xc6_c00430{left:624.350085px;}
.xd6_c00430{left:626.072685px;}
.x1b_c00430{left:630.725685px;}
.xc4_c00430{left:632.195835px;}
.x19_c00430{left:634.344135px;}
.x1d_c00430{left:636.353835px;}
.xa5_c00430{left:640.432635px;}
.x4a_c00430{left:642.442335px;}
.x52_c00430{left:644.942085px;}
.x1f_c00430{left:651.302835px;}
.x23_c00430{left:652.461135px;}
.xc5_c00430{left:654.267885px;}
.x4b_c00430{left:664.321335px;}
.x4c_c00430{left:665.746935px;}
.xa6_c00430{left:674.270835px;}
.x24_c00430{left:675.721185px;}
.xa3_c00430{left:677.864535px;}
.xa9_c00430{left:685.309335px;}
.x2d_c00430{left:686.368635px;}
.x25_c00430{left:689.269335px;}
.x20_c00430{left:691.274085px;}
.xce_c00430{left:696.540885px;}
.x26_c00430{left:697.763535px;}
.x21_c00430{left:699.867285px;}
.xa8_c00430{left:706.960635px;}
.x1e_c00430{left:708.505035px;}
.x22_c00430{left:713.078835px;}
.x2e_c00430{left:717.365535px;}
.xa2_c00430{left:718.677285px;}
.xa7_c00430{left:719.726685px;}
.xb8_c00430{left:729.141585px;}
.xcb_c00430{left:730.537485px;}
.xaa_c00430{left:732.463035px;}
.xcf_c00430{left:752.198685px;}
.xb3_c00430{left:753.213435px;}
.xd1_c00430{left:754.906335px;}
.xad_c00430{left:763.588635px;}
.xcc_c00430{left:774.434085px;}
@media print{
.vb_c00430{vertical-align:-21.524800pt;}
.vc_c00430{vertical-align:-20.311808pt;}
.v9_c00430{vertical-align:-6.353600pt;}
.v2_c00430{vertical-align:-1.267200pt;}
.v0_c00430{vertical-align:0.000000pt;}
.v1_c00430{vertical-align:2.552000pt;}
.v5_c00430{vertical-align:5.068800pt;}
.v7_c00430{vertical-align:6.336000pt;}
.v6_c00430{vertical-align:7.603200pt;}
.v8_c00430{vertical-align:16.473600pt;}
.v3_c00430{vertical-align:20.275200pt;}
.ve_c00430{vertical-align:21.560000pt;}
.v10_c00430{vertical-align:26.611200pt;}
.v4_c00430{vertical-align:27.860800pt;}
.va_c00430{vertical-align:30.395200pt;}
.vf_c00430{vertical-align:36.748800pt;}
.vd_c00430{vertical-align:45.601600pt;}
.ls1f_c00430{letter-spacing:-3.351046pt;}
.ls2a_c00430{letter-spacing:-2.439360pt;}
.ls91_c00430{letter-spacing:-2.365446pt;}
.ls2b_c00430{letter-spacing:-2.279200pt;}
.lsb2_c00430{letter-spacing:-2.217600pt;}
.ls74_c00430{letter-spacing:-2.205280pt;}
.lsaf_c00430{letter-spacing:-2.168326pt;}
.ls41_c00430{letter-spacing:-2.057446pt;}
.lsb6_c00430{letter-spacing:-2.045126pt;}
.ls94_c00430{letter-spacing:-2.032800pt;}
.ls92_c00430{letter-spacing:-2.026646pt;}
.ls63_c00430{letter-spacing:-2.008160pt;}
.lsd3_c00430{letter-spacing:-1.995846pt;}
.ls3f_c00430{letter-spacing:-1.915760pt;}
.lsb5_c00430{letter-spacing:-1.897280pt;}
.ls86_c00430{letter-spacing:-1.872640pt;}
.ls65_c00430{letter-spacing:-1.860326pt;}
.ls23_c00430{letter-spacing:-1.817200pt;}
.lsbe_c00430{letter-spacing:-1.809004pt;}
.lsb3_c00430{letter-spacing:-1.730960pt;}
.ls7d_c00430{letter-spacing:-1.675526pt;}
.lscc_c00430{letter-spacing:-1.626240pt;}
.ls7f_c00430{letter-spacing:-1.613926pt;}
.ls8c_c00430{letter-spacing:-1.527680pt;}
.ls32_c00430{letter-spacing:-1.503040pt;}
.ls3d_c00430{letter-spacing:-1.496880pt;}
.lsca_c00430{letter-spacing:-1.484560pt;}
.ls5e_c00430{letter-spacing:-1.453760pt;}
.ls98_c00430{letter-spacing:-1.435280pt;}
.lsa6_c00430{letter-spacing:-1.404480pt;}
.lsc0_c00430{letter-spacing:-1.392160pt;}
.ls85_c00430{letter-spacing:-1.355200pt;}
.ls1e_c00430{letter-spacing:-1.330560pt;}
.lse3_c00430{letter-spacing:-1.324400pt;}
.lsbb_c00430{letter-spacing:-1.305926pt;}
.ls6c_c00430{letter-spacing:-1.293600pt;}
.lsb0_c00430{letter-spacing:-1.288605pt;}
.ls73_c00430{letter-spacing:-1.281280pt;}
.ls29_c00430{letter-spacing:-1.268960pt;}
.ls90_c00430{letter-spacing:-1.256640pt;}
.ls11_c00430{letter-spacing:-1.239958pt;}
.ls38_c00430{letter-spacing:-1.225840pt;}
.ls72_c00430{letter-spacing:-1.219680pt;}
.ls50_c00430{letter-spacing:-1.176560pt;}
.ls78_c00430{letter-spacing:-1.145760pt;}
.ls3c_c00430{letter-spacing:-1.133440pt;}
.ls5b_c00430{letter-spacing:-1.084160pt;}
.lsd5_c00430{letter-spacing:-1.059382pt;}
.ls9e_c00430{letter-spacing:-1.034880pt;}
.ls5d_c00430{letter-spacing:-1.022560pt;}
.ls66_c00430{letter-spacing:-0.988630pt;}
.ls3a_c00430{letter-spacing:-0.887040pt;}
.ls80_c00430{letter-spacing:-0.874720pt;}
.ls56_c00430{letter-spacing:-0.825440pt;}
.ls58_c00430{letter-spacing:-0.805939pt;}
.lsad_c00430{letter-spacing:-0.788480pt;}
.ls4a_c00430{letter-spacing:-0.782320pt;}
.ls51_c00430{letter-spacing:-0.763840pt;}
.ls96_c00430{letter-spacing:-0.739200pt;}
.lsa4_c00430{letter-spacing:-0.728851pt;}
.lsd4_c00430{letter-spacing:-0.720720pt;}
.ls46_c00430{letter-spacing:-0.689920pt;}
.ls3b_c00430{letter-spacing:-0.634480pt;}
.lsb9_c00430{letter-spacing:-0.606162pt;}
.lscf_c00430{letter-spacing:-0.529760pt;}
.lse5_c00430{letter-spacing:-0.504064pt;}
.ls9f_c00430{letter-spacing:-0.453675pt;}
.lsa3_c00430{letter-spacing:-0.408091pt;}
.ls26_c00430{letter-spacing:-0.354640pt;}
.lsa8_c00430{letter-spacing:-0.317768pt;}
.lsac_c00430{letter-spacing:-0.317363pt;}
.lsc5_c00430{letter-spacing:-0.302795pt;}
.lsc9_c00430{letter-spacing:-0.231334pt;}
.ls2f_c00430{letter-spacing:-0.208666pt;}
.lsa0_c00430{letter-spacing:-0.190502pt;}
.ls12_c00430{letter-spacing:-0.136365pt;}
.ls37_c00430{letter-spacing:-0.077053pt;}
.ls99_c00430{letter-spacing:-0.053310pt;}
.ls10_c00430{letter-spacing:0.000000pt;}
.ls35_c00430{letter-spacing:0.073005pt;}
.lse_c00430{letter-spacing:0.082368pt;}
.ls57_c00430{letter-spacing:0.115562pt;}
.ls43_c00430{letter-spacing:0.123728pt;}
.ls95_c00430{letter-spacing:0.171072pt;}
.lsd_c00430{letter-spacing:0.224453pt;}
.ls6_c00430{letter-spacing:0.299517pt;}
.lsda_c00430{letter-spacing:0.330634pt;}
.ls89_c00430{letter-spacing:0.333942pt;}
.ls28_c00430{letter-spacing:0.401139pt;}
.lscd_c00430{letter-spacing:0.422409pt;}
.ls16_c00430{letter-spacing:0.509626pt;}
.ls1d_c00430{letter-spacing:0.536800pt;}
.ls82_c00430{letter-spacing:0.554822pt;}
.lsc4_c00430{letter-spacing:0.598409pt;}
.ls70_c00430{letter-spacing:0.609523pt;}
.ls36_c00430{letter-spacing:0.626930pt;}
.lsb_c00430{letter-spacing:0.682598pt;}
.ls30_c00430{letter-spacing:0.686409pt;}
.ls22_c00430{letter-spacing:0.704000pt;}
.lsc8_c00430{letter-spacing:0.717024pt;}
.lsab_c00430{letter-spacing:0.722322pt;}
.ls93_c00430{letter-spacing:0.748000pt;}
.ls27_c00430{letter-spacing:0.756800pt;}
.lsa1_c00430{letter-spacing:0.774400pt;}
.ls79_c00430{letter-spacing:0.800800pt;}
.ls1c_c00430{letter-spacing:0.809600pt;}
.lsdb_c00430{letter-spacing:0.818400pt;}
.lsd9_c00430{letter-spacing:0.844800pt;}
.lsa2_c00430{letter-spacing:0.862400pt;}
.lsd8_c00430{letter-spacing:0.915200pt;}
.ls4e_c00430{letter-spacing:0.924000pt;}
.ls6f_c00430{letter-spacing:0.976800pt;}
.ls47_c00430{letter-spacing:0.985600pt;}
.ls61_c00430{letter-spacing:1.003200pt;}
.lsd0_c00430{letter-spacing:1.012000pt;}
.ls8e_c00430{letter-spacing:1.029600pt;}
.ls97_c00430{letter-spacing:1.056000pt;}
.ls52_c00430{letter-spacing:1.091200pt;}
.ls49_c00430{letter-spacing:1.117600pt;}
.lsc7_c00430{letter-spacing:1.161600pt;}
.ls55_c00430{letter-spacing:1.179200pt;}
.ls24_c00430{letter-spacing:1.214400pt;}
.ls81_c00430{letter-spacing:1.249600pt;}
.ls40_c00430{letter-spacing:1.258400pt;}
.lsc3_c00430{letter-spacing:1.267200pt;}
.lsb8_c00430{letter-spacing:1.284342pt;}
.ls60_c00430{letter-spacing:1.284800pt;}
.ls7a_c00430{letter-spacing:1.355200pt;}
.ls31_c00430{letter-spacing:1.357030pt;}
.ls25_c00430{letter-spacing:1.364000pt;}
.ls5c_c00430{letter-spacing:1.372800pt;}
.lsa7_c00430{letter-spacing:1.381600pt;}
.ls13_c00430{letter-spacing:1.390400pt;}
.lsf_c00430{letter-spacing:1.406314pt;}
.ls34_c00430{letter-spacing:1.434330pt;}
.lse6_c00430{letter-spacing:1.443200pt;}
.ls1b_c00430{letter-spacing:1.460800pt;}
.ls45_c00430{letter-spacing:1.478400pt;}
.ls8f_c00430{letter-spacing:1.513609pt;}
.lsc2_c00430{letter-spacing:1.531200pt;}
.ls4f_c00430{letter-spacing:1.540000pt;}
.ls3_c00430{letter-spacing:1.547955pt;}
.ls71_c00430{letter-spacing:1.584000pt;}
.lsaa_c00430{letter-spacing:1.619200pt;}
.ls67_c00430{letter-spacing:1.636800pt;}
.ls1a_c00430{letter-spacing:1.654400pt;}
.ls59_c00430{letter-spacing:1.680800pt;}
.ls9a_c00430{letter-spacing:1.759243pt;}
.lsc6_c00430{letter-spacing:1.760000pt;}
.lse4_c00430{letter-spacing:1.795200pt;}
.lsa5_c00430{letter-spacing:1.830400pt;}
.ls9_c00430{letter-spacing:1.837581pt;}
.ls6e_c00430{letter-spacing:1.848000pt;}
.lsbc_c00430{letter-spacing:1.865609pt;}
.ls5f_c00430{letter-spacing:1.900800pt;}
.ls42_c00430{letter-spacing:1.918400pt;}
.lsb4_c00430{letter-spacing:1.929805pt;}
.ls64_c00430{letter-spacing:1.971200pt;}
.ls69_c00430{letter-spacing:1.988800pt;}
.ls19_c00430{letter-spacing:2.041609pt;}
.ls68_c00430{letter-spacing:2.050400pt;}
.ls88_c00430{letter-spacing:2.076800pt;}
.lscb_c00430{letter-spacing:2.120800pt;}
.ls8a_c00430{letter-spacing:2.129609pt;}
.lsa9_c00430{letter-spacing:2.147200pt;}
.ls8b_c00430{letter-spacing:2.182400pt;}
.ls62_c00430{letter-spacing:2.208800pt;}
.lse0_c00430{letter-spacing:2.243789pt;}
.lsc1_c00430{letter-spacing:2.270400pt;}
.ls7e_c00430{letter-spacing:2.305609pt;}
.lsdc_c00430{letter-spacing:2.314400pt;}
.ls7b_c00430{letter-spacing:2.369101pt;}
.ls4b_c00430{letter-spacing:2.388678pt;}
.lsae_c00430{letter-spacing:2.393609pt;}
.ls3e_c00430{letter-spacing:2.463120pt;}
.lsd6_c00430{letter-spacing:2.472800pt;}
.ls6a_c00430{letter-spacing:2.657609pt;}
.ls15_c00430{letter-spacing:2.675200pt;}
.lse1_c00430{letter-spacing:2.690442pt;}
.lsd7_c00430{letter-spacing:2.710400pt;}
.ls5_c00430{letter-spacing:2.791254pt;}
.ls4d_c00430{letter-spacing:2.816000pt;}
.lsdd_c00430{letter-spacing:2.851209pt;}
.ls9b_c00430{letter-spacing:2.886400pt;}
.lsba_c00430{letter-spacing:2.895209pt;}
.ls7c_c00430{letter-spacing:2.904000pt;}
.lsb7_c00430{letter-spacing:2.921609pt;}
.ls9d_c00430{letter-spacing:3.000800pt;}
.lsb1_c00430{letter-spacing:3.088800pt;}
.ls20_c00430{letter-spacing:3.097609pt;}
.ls17_c00430{letter-spacing:3.124000pt;}
.ls14_c00430{letter-spacing:3.150400pt;}
.ls75_c00430{letter-spacing:3.168000pt;}
.lsde_c00430{letter-spacing:3.203209pt;}
.ls18_c00430{letter-spacing:3.238400pt;}
.ls2d_c00430{letter-spacing:3.256000pt;}
.ls77_c00430{letter-spacing:3.308800pt;}
.ls4c_c00430{letter-spacing:3.317609pt;}
.lsbf_c00430{letter-spacing:3.326400pt;}
.lsbd_c00430{letter-spacing:3.361609pt;}
.ls2e_c00430{letter-spacing:3.660800pt;}
.lsce_c00430{letter-spacing:6.336176pt;}
.lsd1_c00430{letter-spacing:8.870576pt;}
.ls8_c00430{letter-spacing:10.082336pt;}
.lsdf_c00430{letter-spacing:10.137776pt;}
.ls21_c00430{letter-spacing:11.404976pt;}
.ls2_c00430{letter-spacing:15.206400pt;}
.ls48_c00430{letter-spacing:16.473776pt;}
.ls33_c00430{letter-spacing:17.740800pt;}
.ls0_c00430{letter-spacing:18.200805pt;}
.ls84_c00430{letter-spacing:19.008000pt;}
.ls7_c00430{letter-spacing:22.055215pt;}
.ls6d_c00430{letter-spacing:22.809776pt;}
.ls39_c00430{letter-spacing:24.076800pt;}
.ls1_c00430{letter-spacing:25.344000pt;}
.ls83_c00430{letter-spacing:25.344176pt;}
.ls4_c00430{letter-spacing:26.437312pt;}
.ls6b_c00430{letter-spacing:26.611376pt;}
.ls54_c00430{letter-spacing:30.412976pt;}
.ls8d_c00430{letter-spacing:32.947376pt;}
.ls44_c00430{letter-spacing:34.214576pt;}
.lsd2_c00430{letter-spacing:35.481600pt;}
.ls9c_c00430{letter-spacing:36.748976pt;}
.ls87_c00430{letter-spacing:39.283376pt;}
.ls5a_c00430{letter-spacing:41.817600pt;}
.ls53_c00430{letter-spacing:43.084976pt;}
.ls2c_c00430{letter-spacing:45.619376pt;}
.lse2_c00430{letter-spacing:46.886576pt;}
.ls76_c00430{letter-spacing:50.688176pt;}
.lsa_c00430{letter-spacing:104.960768pt;}
.lsc_c00430{letter-spacing:202.672448pt;}
.ws4_c00430{word-spacing:-37.543259pt;}
.ws0_c00430{word-spacing:-30.412800pt;}
.wsa_c00430{word-spacing:-16.808044pt;}
.wsf_c00430{word-spacing:-15.922368pt;}
.wse_c00430{word-spacing:-15.840000pt;}
.wsd_c00430{word-spacing:-15.752000pt;}
.ws10_c00430{word-spacing:-15.620000pt;}
.ws5_c00430{word-spacing:-15.488044pt;}
.ws2_c00430{word-spacing:-15.216608pt;}
.wsb_c00430{word-spacing:-14.428662pt;}
.ws3_c00430{word-spacing:-11.400224pt;}
.ws12_c00430{word-spacing:0.000000pt;}
.ws6_c00430{word-spacing:5.439421pt;}
.ws11_c00430{word-spacing:7.183616pt;}
.ws7_c00430{word-spacing:8.515373pt;}
.ws8_c00430{word-spacing:13.212144pt;}
.ws1_c00430{word-spacing:13.564795pt;}
.wsc_c00430{word-spacing:15.236813pt;}
.ws9_c00430{word-spacing:63.674160pt;}
._12_c00430{margin-left:-10.322400pt;}
._26_c00430{margin-left:-8.701440pt;}
._10_c00430{margin-left:-7.444859pt;}
._b_c00430{margin-left:-5.646784pt;}
._1_c00430{margin-left:-3.652000pt;}
._7_c00430{margin-left:-2.216192pt;}
._19_c00430{width:1.027312pt;}
._8_c00430{width:2.006400pt;}
._1e_c00430{width:2.982144pt;}
._2_c00430{width:4.192320pt;}
._1f_c00430{width:6.050968pt;}
._6_c00430{width:8.265664pt;}
._13_c00430{width:10.222080pt;}
._28_c00430{width:11.277728pt;}
._3_c00430{width:12.170048pt;}
._a_c00430{width:15.331008pt;}
._d_c00430{width:18.524352pt;}
._1a_c00430{width:22.140800pt;}
._14_c00430{width:26.544672pt;}
._27_c00430{width:27.588000pt;}
._5_c00430{width:29.525760pt;}
._e_c00430{width:33.909568pt;}
._25_c00430{width:37.473729pt;}
._15_c00430{width:39.537344pt;}
._1d_c00430{width:41.786272pt;}
._18_c00430{width:47.101120pt;}
._17_c00430{width:51.739494pt;}
._1b_c00430{width:60.071264pt;}
._20_c00430{width:83.353508pt;}
._c_c00430{width:84.781312pt;}
._11_c00430{width:97.556800pt;}
._16_c00430{width:131.121056pt;}
._4_c00430{width:151.204416pt;}
._f_c00430{width:157.155328pt;}
._24_c00430{width:220.063026pt;}
._21_c00430{width:226.740800pt;}
._9_c00430{width:263.460032pt;}
._23_c00430{width:306.385024pt;}
._29_c00430{width:355.788401pt;}
._22_c00430{width:729.044800pt;}
._1c_c00430{width:778.672224pt;}
._0_c00430{width:1427.816192pt;}
.fs93_c00430{font-size:6.336176pt;}
.fs92_c00430{font-size:8.448176pt;}
.fs95_c00430{font-size:8.870576pt;}
.fs16_c00430{font-size:9.680176pt;}
.fs9e_c00430{font-size:10.137776pt;}
.fs12_c00430{font-size:10.736000pt;}
.fs17_c00430{font-size:11.404976pt;}
.fs91_c00430{font-size:11.792000pt;}
.fs46_c00430{font-size:11.968176pt;}
.fs26_c00430{font-size:13.728176pt;}
.fs18_c00430{font-size:14.080000pt;}
.fs73_c00430{font-size:14.432000pt;}
.fs72_c00430{font-size:14.960000pt;}
.fs1e_c00430{font-size:15.136000pt;}
.fs19_c00430{font-size:15.206400pt;}
.fs1f_c00430{font-size:15.488000pt;}
.fs5e_c00430{font-size:16.016000pt;}
.fsf_c00430{font-size:16.192000pt;}
.fs9a_c00430{font-size:16.368000pt;}
.fs38_c00430{font-size:16.473776pt;}
.fs99_c00430{font-size:16.896000pt;}
.fs78_c00430{font-size:17.248000pt;}
.fs29_c00430{font-size:17.740800pt;}
.fs2d_c00430{font-size:18.128000pt;}
.fs98_c00430{font-size:18.304000pt;}
.fs3e_c00430{font-size:18.480000pt;}
.fs65_c00430{font-size:19.008000pt;}
.fsa0_c00430{font-size:19.184000pt;}
.fs58_c00430{font-size:19.536000pt;}
.fs37_c00430{font-size:19.712000pt;}
.fs1_c00430{font-size:20.064000pt;}
.fs94_c00430{font-size:20.240000pt;}
.fs6d_c00430{font-size:20.592000pt;}
.fs44_c00430{font-size:21.120000pt;}
.fs42_c00430{font-size:21.824000pt;}
.fs39_c00430{font-size:22.352000pt;}
.fs7f_c00430{font-size:22.528000pt;}
.fs57_c00430{font-size:22.809776pt;}
.fs79_c00430{font-size:23.056000pt;}
.fs8c_c00430{font-size:23.232000pt;}
.fs48_c00430{font-size:23.584000pt;}
.fs2b_c00430{font-size:24.076800pt;}
.fs1c_c00430{font-size:24.288000pt;}
.fs6a_c00430{font-size:24.640000pt;}
.fs63_c00430{font-size:24.992000pt;}
.fs0_c00430{font-size:25.168000pt;}
.fs2c_c00430{font-size:25.344000pt;}
.fs64_c00430{font-size:25.344176pt;}
.fs4f_c00430{font-size:25.696000pt;}
.fs5_c00430{font-size:26.224000pt;}
.fs56_c00430{font-size:26.611376pt;}
.fs5f_c00430{font-size:27.104000pt;}
.fs1d_c00430{font-size:27.280000pt;}
.fs10_c00430{font-size:27.456000pt;}
.fs7c_c00430{font-size:27.632000pt;}
.fs6_c00430{font-size:27.808000pt;}
.fsa5_c00430{font-size:28.864000pt;}
.fse_c00430{font-size:29.216000pt;}
.fs36_c00430{font-size:29.568000pt;}
.fs8f_c00430{font-size:29.744000pt;}
.fsa3_c00430{font-size:29.920000pt;}
.fs90_c00430{font-size:30.096000pt;}
.fs6e_c00430{font-size:30.272176pt;}
.fs45_c00430{font-size:30.412976pt;}
.fs8a_c00430{font-size:30.624000pt;}
.fs3f_c00430{font-size:30.800000pt;}
.fs4b_c00430{font-size:30.976000pt;}
.fs59_c00430{font-size:31.680000pt;}
.fs2e_c00430{font-size:32.384000pt;}
.fs34_c00430{font-size:32.560000pt;}
.fs54_c00430{font-size:32.736000pt;}
.fs6c_c00430{font-size:32.947376pt;}
.fsd_c00430{font-size:33.088000pt;}
.fs41_c00430{font-size:33.616000pt;}
.fs35_c00430{font-size:34.214576pt;}
.fs5a_c00430{font-size:34.848000pt;}
.fs2a_c00430{font-size:35.024000pt;}
.fs8b_c00430{font-size:35.200000pt;}
.fs96_c00430{font-size:35.481600pt;}
.fs25_c00430{font-size:35.904000pt;}
.fs20_c00430{font-size:36.256000pt;}
.fs5b_c00430{font-size:36.608000pt;}
.fs76_c00430{font-size:36.748976pt;}
.fs4a_c00430{font-size:36.960000pt;}
.fs86_c00430{font-size:37.312176pt;}
.fsa4_c00430{font-size:37.840000pt;}
.fs13_c00430{font-size:38.016000pt;}
.fs32_c00430{font-size:38.368000pt;}
.fs66_c00430{font-size:38.720000pt;}
.fs68_c00430{font-size:39.283376pt;}
.fs52_c00430{font-size:39.424000pt;}
.fs40_c00430{font-size:39.776000pt;}
.fs27_c00430{font-size:40.128000pt;}
.fs3c_c00430{font-size:40.304000pt;}
.fs62_c00430{font-size:40.480000pt;}
.fsc_c00430{font-size:40.832176pt;}
.fs55_c00430{font-size:41.008000pt;}
.fs7a_c00430{font-size:41.360000pt;}
.fs4c_c00430{font-size:41.536000pt;}
.fs49_c00430{font-size:41.817600pt;}
.fs7b_c00430{font-size:41.888000pt;}
.fs8d_c00430{font-size:42.416000pt;}
.fs69_c00430{font-size:42.592176pt;}
.fs2f_c00430{font-size:42.768000pt;}
.fs28_c00430{font-size:42.944000pt;}
.fs43_c00430{font-size:43.084976pt;}
.fs6b_c00430{font-size:43.648000pt;}
.fs50_c00430{font-size:44.176000pt;}
.fs9_c00430{font-size:44.704000pt;}
.fs9f_c00430{font-size:45.056000pt;}
.fs89_c00430{font-size:45.408000pt;}
.fs23_c00430{font-size:45.619376pt;}
.fs61_c00430{font-size:46.112176pt;}
.fs9b_c00430{font-size:46.288000pt;}
.fs8e_c00430{font-size:46.464000pt;}
.fsa2_c00430{font-size:46.886576pt;}
.fs87_c00430{font-size:47.696000pt;}
.fs11_c00430{font-size:47.872176pt;}
.fs33_c00430{font-size:48.576000pt;}
.fs3b_c00430{font-size:49.456000pt;}
.fs47_c00430{font-size:49.632176pt;}
.fs4e_c00430{font-size:50.336000pt;}
.fs5c_c00430{font-size:50.688176pt;}
.fs74_c00430{font-size:50.864000pt;}
.fs1a_c00430{font-size:51.920000pt;}
.fs53_c00430{font-size:53.152176pt;}
.fs8_c00430{font-size:53.504000pt;}
.fs84_c00430{font-size:54.208000pt;}
.fs30_c00430{font-size:54.736000pt;}
.fs80_c00430{font-size:56.144000pt;}
.fs3d_c00430{font-size:56.320000pt;}
.fs7e_c00430{font-size:56.496000pt;}
.fs97_c00430{font-size:57.024176pt;}
.fs51_c00430{font-size:57.376000pt;}
.fs75_c00430{font-size:57.728000pt;}
.fs71_c00430{font-size:57.904176pt;}
.fs60_c00430{font-size:58.080000pt;}
.fs85_c00430{font-size:58.432176pt;}
.fs31_c00430{font-size:58.784176pt;}
.fs3_c00430{font-size:58.960000pt;}
.fs1b_c00430{font-size:59.136000pt;}
.fs83_c00430{font-size:59.664176pt;}
.fs77_c00430{font-size:60.016000pt;}
.fs81_c00430{font-size:60.544176pt;}
.fsa1_c00430{font-size:61.248000pt;}
.fs82_c00430{font-size:61.776000pt;}
.fs15_c00430{font-size:61.952176pt;}
.fs7d_c00430{font-size:62.304176pt;}
.fsa_c00430{font-size:62.480000pt;}
.fs7_c00430{font-size:63.008000pt;}
.fs4_c00430{font-size:63.360000pt;}
.fs9c_c00430{font-size:64.064176pt;}
.fsb_c00430{font-size:64.768000pt;}
.fs22_c00430{font-size:65.120000pt;}
.fs5d_c00430{font-size:66.176000pt;}
.fs3a_c00430{font-size:66.352176pt;}
.fs88_c00430{font-size:66.528000pt;}
.fs4d_c00430{font-size:67.232176pt;}
.fs70_c00430{font-size:67.584176pt;}
.fs21_c00430{font-size:69.696000pt;}
.fs9d_c00430{font-size:70.400000pt;}
.fs2_c00430{font-size:72.512176pt;}
.fs24_c00430{font-size:73.216000pt;}
.fs67_c00430{font-size:83.072176pt;}
.fs14_c00430{font-size:95.744176pt;}
.fs6f_c00430{font-size:112.640000pt;}
.y0_c00430{bottom:0.000000pt;}
.y8e_c00430{bottom:59.163320pt;}
.y1_c00430{bottom:68.000000pt;}
.y8d_c00430{bottom:107.312520pt;}
.y8a_c00430{bottom:118.088120pt;}
.y89_c00430{bottom:118.721720pt;}
.y8b_c00430{bottom:119.038520pt;}
.y8c_c00430{bottom:123.790520pt;}
.y88_c00430{bottom:136.462520pt;}
.y86_c00430{bottom:139.313720pt;}
.y87_c00430{bottom:144.694920pt;}
.y85_c00430{bottom:145.011720pt;}
.y84_c00430{bottom:170.355720pt;}
.y80_c00430{bottom:173.528120pt;}
.y83_c00430{bottom:175.745720pt;}
.y7f_c00430{bottom:176.374920pt;}
.y82_c00430{bottom:176.691720pt;}
.y81_c00430{bottom:184.928520pt;}
.y7e_c00430{bottom:235.933320pt;}
.y7c_c00430{bottom:264.449720pt;}
.y7d_c00430{bottom:264.762120pt;}
.y7b_c00430{bottom:294.228920pt;}
.y78_c00430{bottom:294.541320pt;}
.y77_c00430{bottom:294.862520pt;}
.y72_c00430{bottom:295.174920pt;}
.y79_c00430{bottom:296.129720pt;}
.y7a_c00430{bottom:297.075720pt;}
.y74_c00430{bottom:299.293320pt;}
.y76_c00430{bottom:299.926920pt;}
.y75_c00430{bottom:301.515320pt;}
.y73_c00430{bottom:302.461320pt;}
.y71_c00430{bottom:320.835720pt;}
.y64_c00430{bottom:321.790520pt;}
.y6d_c00430{bottom:322.424120pt;}
.y70_c00430{bottom:323.053320pt;}
.y6f_c00430{bottom:323.374520pt;}
.y63_c00430{bottom:324.954120pt;}
.y67_c00430{bottom:325.275320pt;}
.y68_c00430{bottom:325.587720pt;}
.y6c_c00430{bottom:325.908920pt;}
.y6e_c00430{bottom:326.542520pt;}
.y6b_c00430{bottom:326.854920pt;}
.y65_c00430{bottom:327.809720pt;}
.y69_c00430{bottom:328.122120pt;}
.y62_c00430{bottom:328.443320pt;}
.y6a_c00430{bottom:330.344120pt;}
.y66_c00430{bottom:331.606920pt;}
.y61_c00430{bottom:354.416520pt;}
.y5d_c00430{bottom:376.913720pt;}
.y60_c00430{bottom:382.294920pt;}
.y5c_c00430{bottom:382.616120pt;}
.y5a_c00430{bottom:382.928520pt;}
.y5f_c00430{bottom:383.249720pt;}
.y5b_c00430{bottom:383.883320pt;}
.y5e_c00430{bottom:391.803320pt;}
.y59_c00430{bottom:405.421320pt;}
.y58_c00430{bottom:412.395320pt;}
.y48_c00430{bottom:437.422520pt;}
.y49_c00430{bottom:438.689720pt;}
.y4d_c00430{bottom:439.956920pt;}
.y41_c00430{bottom:440.273720pt;}
.y40_c00430{bottom:440.590520pt;}
.y56_c00430{bottom:440.907320pt;}
.y44_c00430{bottom:441.224120pt;}
.y46_c00430{bottom:441.853320pt;}
.y4a_c00430{bottom:442.174520pt;}
.y43_c00430{bottom:443.120520pt;}
.y42_c00430{bottom:443.121840pt;}
.y45_c00430{bottom:443.754120pt;}
.y57_c00430{bottom:444.075320pt;}
.y47_c00430{bottom:445.021320pt;}
.y3f_c00430{bottom:447.876920pt;}
.y4b_c00430{bottom:449.144120pt;}
.y55_c00430{bottom:449.456520pt;}
.y3e_c00430{bottom:462.762120pt;}
.y4c_c00430{bottom:466.880520pt;}
.y54_c00430{bottom:468.785720pt;}
.y3b_c00430{bottom:469.102520pt;}
.y3a_c00430{bottom:469.414920pt;}
.y3c_c00430{bottom:469.731720pt;}
.y3d_c00430{bottom:473.850120pt;}
.y53_c00430{bottom:498.248120pt;}
.y39_c00430{bottom:498.877320pt;}
.y52_c00430{bottom:504.896520pt;}
.y38_c00430{bottom:528.656520pt;}
.y37_c00430{bottom:535.313720pt;}
.y36_c00430{bottom:556.851720pt;}
.y51_c00430{bottom:558.118920pt;}
.y34_c00430{bottom:558.756920pt;}
.y33_c00430{bottom:560.336520pt;}
.y35_c00430{bottom:561.608120pt;}
.y32_c00430{bottom:585.051320pt;}
.y29_c00430{bottom:585.680520pt;}
.y30_c00430{bottom:586.318520pt;}
.y2f_c00430{bottom:586.635320pt;}
.y50_c00430{bottom:587.585720pt;}
.y31_c00430{bottom:587.902520pt;}
.y28_c00430{bottom:588.531720pt;}
.y2e_c00430{bottom:590.120120pt;}
.y27_c00430{bottom:593.288120pt;}
.y26_c00430{bottom:643.342520pt;}
.y2d_c00430{bottom:643.654920pt;}
.y3_c00430{bottom:654.747320pt;}
.y25_c00430{bottom:672.171320pt;}
.y2c_c00430{bottom:674.067720pt;}
.y2b_c00430{bottom:675.022520pt;}
.y24_c00430{bottom:676.602120pt;}
.y2a_c00430{bottom:678.824120pt;}
.y22_c00430{bottom:703.213320pt;}
.y20_c00430{bottom:704.168120pt;}
.y23_c00430{bottom:704.480520pt;}
.y21_c00430{bottom:705.747720pt;}
.y4f_c00430{bottom:711.450120pt;}
.y4e_c00430{bottom:727.928120pt;}
.y18_c00430{bottom:734.264120pt;}
.y19_c00430{bottom:734.893320pt;}
.y1d_c00430{bottom:735.210120pt;}
.y1f_c00430{bottom:736.477320pt;}
.y1b_c00430{bottom:737.115320pt;}
.y1e_c00430{bottom:737.427720pt;}
.y1c_c00430{bottom:738.382520pt;}
.y1a_c00430{bottom:743.768120pt;}
.y17_c00430{bottom:764.038920pt;}
.y14_c00430{bottom:764.360120pt;}
.y16_c00430{bottom:764.993720pt;}
.y15_c00430{bottom:773.864120pt;}
.y2_c00430{bottom:777.982520pt;}
.yc_c00430{bottom:792.555320pt;}
.y11_c00430{bottom:793.822520pt;}
.y8_c00430{bottom:794.134920pt;}
.y9_c00430{bottom:794.451720pt;}
.y10_c00430{bottom:795.089720pt;}
.yd_c00430{bottom:795.402120pt;}
.ya_c00430{bottom:795.718920pt;}
.yb_c00430{bottom:796.356920pt;}
.y13_c00430{bottom:797.936520pt;}
.yf_c00430{bottom:799.208120pt;}
.y12_c00430{bottom:800.787720pt;}
.ye_c00430{bottom:803.638920pt;}
.y5_c00430{bottom:823.597320pt;}
.y7_c00430{bottom:823.918520pt;}
.y6_c00430{bottom:824.235320pt;}
.y4_c00430{bottom:954.435720pt;}
.ha5_c00430{height:4.219893pt;}
.ha7_c00430{height:5.907804pt;}
.hb6_c00430{height:6.751759pt;}
.h18_c00430{height:7.595714pt;}
.ha4_c00430{height:8.811184pt;}
.h17_c00430{height:10.096121pt;}
.h1a_c00430{height:10.127462pt;}
.h13_c00430{height:10.536797pt;}
.h39_c00430{height:10.971535pt;}
.h2a_c00430{height:11.815373pt;}
.h48_c00430{height:12.482434pt;}
.h6c_c00430{height:12.659328pt;}
.h27_c00430{height:14.318059pt;}
.h7c_c00430{height:14.682422pt;}
.h19_c00430{height:14.685000pt;}
.h7d_c00430{height:15.052125pt;}
.h5a_c00430{height:15.191311pt;}
.h63_c00430{height:15.718828pt;}
.h1f_c00430{height:15.786375pt;}
.h2c_c00430{height:16.035149pt;}
.hb0_c00430{height:16.064297pt;}
.h20_c00430{height:16.153500pt;}
.hae_c00430{height:16.582500pt;}
.h6a_c00430{height:16.879221pt;}
.h10_c00430{height:16.887750pt;}
.h86_c00430{height:16.927969pt;}
.h58_c00430{height:17.723176pt;}
.h2e_c00430{height:17.791641pt;}
.had_c00430{height:17.989125pt;}
.hac_c00430{height:19.090500pt;}
.h5b_c00430{height:19.173516pt;}
.h3f_c00430{height:19.274063pt;}
.h37_c00430{height:19.336625pt;}
.h38_c00430{height:19.346250pt;}
.h47_c00430{height:20.255042pt;}
.h46_c00430{height:20.728125pt;}
.h3_c00430{height:20.926125pt;}
.ha6_c00430{height:21.109688pt;}
.h9f_c00430{height:21.419063pt;}
.h76_c00430{height:21.476813pt;}
.h75_c00430{height:21.942952pt;}
.h8f_c00430{height:22.110000pt;}
.h87_c00430{height:22.628203pt;}
.h43_c00430{height:22.761750pt;}
.h35_c00430{height:22.786908pt;}
.h4a_c00430{height:23.146406pt;}
.h3a_c00430{height:23.312438pt;}
.ha8_c00430{height:23.630746pt;}
.h1d_c00430{height:23.837344pt;}
.h9e_c00430{height:24.182813pt;}
.h9d_c00430{height:24.230250pt;}
.h81_c00430{height:24.474818pt;}
.h99_c00430{height:24.516078pt;}
.h69_c00430{height:24.528281pt;}
.h9b_c00430{height:24.861375pt;}
.h2d_c00430{height:24.873750pt;}
.h73_c00430{height:25.698750pt;}
.h6f_c00430{height:26.162728pt;}
.h2_c00430{height:26.249438pt;}
.h51_c00430{height:26.800125pt;}
.h8b_c00430{height:27.119297pt;}
.h70_c00430{height:27.278453pt;}
.h6_c00430{height:27.292031pt;}
.h85_c00430{height:27.350813pt;}
.h4b_c00430{height:27.850522pt;}
.h64_c00430{height:28.268625pt;}
.h1e_c00430{height:28.452188pt;}
.h11_c00430{height:28.635750pt;}
.h45_c00430{height:28.694594pt;}
.h84_c00430{height:29.019375pt;}
.h83_c00430{height:29.710485pt;}
.hbf_c00430{height:30.104250pt;}
.h40_c00430{height:30.228516pt;}
.h24_c00430{height:30.382504pt;}
.h67_c00430{height:30.386125pt;}
.h4d_c00430{height:30.401250pt;}
.hf_c00430{height:30.471375pt;}
.h36_c00430{height:30.838500pt;}
.hbb_c00430{height:31.226460pt;}
.h77_c00430{height:31.572934pt;}
.h8d_c00430{height:31.767313pt;}
.h3b_c00430{height:31.783125pt;}
.h9a_c00430{height:31.939875pt;}
.ha1_c00430{height:32.123438pt;}
.h62_c00430{height:32.128594pt;}
.h42_c00430{height:32.992266pt;}
.h5c_c00430{height:33.041250pt;}
.h60_c00430{height:33.758325pt;}
.h2f_c00430{height:33.775500pt;}
.h56_c00430{height:34.142625pt;}
.h2b_c00430{height:34.374141pt;}
.he_c00430{height:34.509750pt;}
.haf_c00430{height:35.012450pt;}
.haa_c00430{height:35.060438pt;}
.hbe_c00430{height:35.237813pt;}
.hb1_c00430{height:35.491192pt;}
.h21_c00430{height:35.583281pt;}
.h5e_c00430{height:35.928750pt;}
.h59_c00430{height:36.274219pt;}
.h5d_c00430{height:36.345375pt;}
.h96_c00430{height:36.601641pt;}
.h9c_c00430{height:36.712500pt;}
.h14_c00430{height:37.310625pt;}
.h79_c00430{height:37.446750pt;}
.ha3_c00430{height:37.725188pt;}
.h6d_c00430{height:38.001563pt;}
.h89_c00430{height:38.181000pt;}
.h4c_c00430{height:38.548125pt;}
.h54_c00430{height:38.673250pt;}
.hbd_c00430{height:39.465938pt;}
.h33_c00430{height:40.016625pt;}
.hd_c00430{height:40.074548pt;}
.h71_c00430{height:41.118000pt;}
.h41_c00430{height:41.485125pt;}
.h72_c00430{height:41.801891pt;}
.h8a_c00430{height:41.852250pt;}
.h29_c00430{height:42.147188pt;}
.h57_c00430{height:42.770063pt;}
.h74_c00430{height:42.838125pt;}
.h4e_c00430{height:43.320750pt;}
.h52_c00430{height:43.356328pt;}
.h88_c00430{height:43.687875pt;}
.h9_c00430{height:43.874531pt;}
.hb7_c00430{height:44.220000pt;}
.ha0_c00430{height:44.238563pt;}
.h98_c00430{height:44.543297pt;}
.h30_c00430{height:44.605688pt;}
.h68_c00430{height:45.256579pt;}
.hb2_c00430{height:45.429141pt;}
.ha2_c00430{height:45.601875pt;}
.h12_c00430{height:46.983923pt;}
.hc0_c00430{height:46.992000pt;}
.h3d_c00430{height:48.538359pt;}
.h49_c00430{height:48.711266pt;}
.h50_c00430{height:49.402031pt;}
.h7f_c00430{height:49.920234pt;}
.hba_c00430{height:49.929184pt;}
.h34_c00430{height:50.663250pt;}
.hab_c00430{height:51.764809pt;}
.h8_c00430{height:52.511250pt;}
.h1b_c00430{height:54.150938pt;}
.h90_c00430{height:55.074852pt;}
.h55_c00430{height:55.436059pt;}
.h66_c00430{height:55.803000pt;}
.ha9_c00430{height:55.966110pt;}
.h93_c00430{height:56.537250pt;}
.h7b_c00430{height:56.829782pt;}
.h65_c00430{height:57.002344pt;}
.h31_c00430{height:57.087938pt;}
.h94_c00430{height:57.347985pt;}
.h26_c00430{height:57.721950pt;}
.h3e_c00430{height:58.740000pt;}
.h82_c00430{height:58.902422pt;}
.h8e_c00430{height:58.923563pt;}
.hb3_c00430{height:59.474434pt;}
.h53_c00430{height:59.841375pt;}
.hb9_c00430{height:60.111562pt;}
.h80_c00430{height:60.208500pt;}
.h95_c00430{height:60.392246pt;}
.h6b_c00430{height:60.575625pt;}
.h91_c00430{height:60.629766pt;}
.h16_c00430{height:60.802673pt;}
.h8c_c00430{height:61.117720pt;}
.h32_c00430{height:61.310059pt;}
.ha_c00430{height:61.320703pt;}
.hc_c00430{height:61.493438pt;}
.h28_c00430{height:61.677000pt;}
.h7_c00430{height:61.838906pt;}
.h5f_c00430{height:62.184375pt;}
.h92_c00430{height:62.227871pt;}
.hb4_c00430{height:62.875485pt;}
.hb_c00430{height:63.566250pt;}
.h23_c00430{height:63.911719pt;}
.h61_c00430{height:64.948125pt;}
.h3c_c00430{height:65.121032pt;}
.h97_c00430{height:65.293594pt;}
.h4f_c00430{height:65.984704pt;}
.h7e_c00430{height:66.082500pt;}
.h44_c00430{height:66.907706pt;}
.h22_c00430{height:68.402813pt;}
.h7a_c00430{height:70.488184pt;}
.h25_c00430{height:71.857500pt;}
.h4_c00430{height:73.718735pt;}
.hbc_c00430{height:78.601050pt;}
.hb8_c00430{height:83.398906pt;}
.h5_c00430{height:85.090500pt;}
.h6e_c00430{height:86.641684pt;}
.h1c_c00430{height:89.537800pt;}
.h15_c00430{height:93.967673pt;}
.h78_c00430{height:110.550000pt;}
.hb5_c00430{height:119.026600pt;}
.h1_c00430{height:986.666667pt;}
.h0_c00430{height:1122.666667pt;}
.w1_c00430{width:689.333333pt;}
.w0_c00430{width:793.333333pt;}
.x0_c00430{left:0.000000pt;}
.x1_c00430{left:52.000000pt;}
.x2_c00430{left:64.809053pt;}
.x4_c00430{left:78.409453pt;}
.x8e_c00430{left:79.826253pt;}
.x96_c00430{left:80.899853pt;}
.xb9_c00430{left:81.876653pt;}
.x5_c00430{left:84.274653pt;}
.x5d_c00430{left:88.696653pt;}
.xae_c00430{left:90.095853pt;}
.x64_c00430{left:97.135853pt;}
.x6_c00430{left:98.103853pt;}
.xba_c00430{left:99.683453pt;}
.x65_c00430{left:100.924253pt;}
.x5e_c00430{left:104.893053pt;}
.x97_c00430{left:107.387853pt;}
.x5f_c00430{left:108.655053pt;}
.xc8_c00430{left:110.322653pt;}
.x66_c00430{left:116.535453pt;}
.xaf_c00430{left:117.991853pt;}
.x60_c00430{left:119.589053pt;}
.x95_c00430{left:120.909053pt;}
.xd9_c00430{left:121.802253pt;}
.x67_c00430{left:126.849053pt;}
.xbb_c00430{left:127.799453pt;}
.x7_c00430{left:128.723453pt;}
.x61_c00430{left:129.876253pt;}
.x53_c00430{left:136.797453pt;}
.x27_c00430{left:138.117453pt;}
.xd7_c00430{left:139.169053pt;}
.x62_c00430{left:140.335053pt;}
.x69_c00430{left:146.367453pt;}
.x29_c00430{left:147.634653pt;}
.x28_c00430{left:150.829053pt;}
.x8_c00430{left:156.764653pt;}
.x63_c00430{left:157.926253pt;}
.x68_c00430{left:159.567453pt;}
.xb0_c00430{left:166.963853pt;}
.x2a_c00430{left:168.948253pt;}
.x54_c00430{left:176.951853pt;}
.xb4_c00430{left:178.654653pt;}
.x2f_c00430{left:186.926653pt;}
.xb1_c00430{left:188.325853pt;}
.x78_c00430{left:189.566653pt;}
.x79_c00430{left:195.295453pt;}
.xb5_c00430{left:196.646253pt;}
.xd8_c00430{left:197.741853pt;}
.x7e_c00430{left:199.154253pt;}
.x55_c00430{left:201.820653pt;}
.x7f_c00430{left:205.450653pt;}
.x30_c00430{left:206.889453pt;}
.x81_c00430{left:208.909053pt;}
.x98_c00430{left:209.799261pt;}
.x6d_c00430{left:210.840653pt;}
.xb6_c00430{left:213.889853pt;}
.x99_c00430{left:214.954653pt;}
.x80_c00430{left:217.264653pt;}
.x6a_c00430{left:219.156653pt;}
.x6e_c00430{left:220.863853pt;}
.xb7_c00430{left:225.189053pt;}
.x32_c00430{left:226.368253pt;}
.x3a_c00430{left:227.349453pt;}
.xbc_c00430{left:230.433853pt;}
.x31_c00430{left:235.757853pt;}
.x83_c00430{left:236.915053pt;}
.x9a_c00430{left:238.679453pt;}
.x58_c00430{left:240.008253pt;}
.x6f_c00430{left:244.122253pt;}
.x56_c00430{left:246.018653pt;}
.x33_c00430{left:246.947053pt;}
.x3_c00430{left:248.522253pt;}
.xd2_c00430{left:249.820253pt;}
.x9_c00430{left:255.584253pt;}
.x3b_c00430{left:257.432253pt;}
.x59_c00430{left:261.898253pt;}
.x34_c00430{left:265.471053pt;}
.x6b_c00430{left:275.463453pt;}
.x3c_c00430{left:276.871453pt;}
.xbd_c00430{left:277.958253pt;}
.x85_c00430{left:280.057053pt;}
.x35_c00430{left:282.257053pt;}
.x57_c00430{left:284.967453pt;}
.x70_c00430{left:285.860653pt;}
.x3d_c00430{left:287.655853pt;}
.xbe_c00430{left:294.251453pt;}
.x36_c00430{left:295.470253pt;}
.x6c_c00430{left:297.357853pt;}
.x3e_c00430{left:298.730653pt;}
.x37_c00430{left:304.692653pt;}
.x84_c00430{left:306.017053pt;}
.x72_c00430{left:307.953053pt;}
.x3f_c00430{left:314.865453pt;}
.x9b_c00430{left:318.438253pt;}
.x40_c00430{left:324.043853pt;}
.x7a_c00430{left:325.143853pt;}
.x41_c00430{left:327.744253pt;}
.x42_c00430{left:330.340253pt;}
.x8f_c00430{left:333.028653pt;}
.xbf_c00430{left:334.326653pt;}
.x43_c00430{left:335.457453pt;}
.x86_c00430{left:336.434253pt;}
.x38_c00430{left:337.490253pt;}
.xc0_c00430{left:343.615053pt;}
.x44_c00430{left:344.525853pt;}
.x39_c00430{left:345.489453pt;}
.xc9_c00430{left:347.447453pt;}
.xcd_c00430{left:352.815453pt;}
.x87_c00430{left:354.007853pt;}
.x82_c00430{left:354.971453pt;}
.xca_c00430{left:356.705053pt;}
.x5a_c00430{left:361.140253pt;}
.x88_c00430{left:364.488653pt;}
.x73_c00430{left:366.451053pt;}
.x8a_c00430{left:369.553053pt;}
.x9d_c00430{left:372.153453pt;}
.xa_c00430{left:373.975053pt;}
.x9e_c00430{left:377.503853pt;}
.x9f_c00430{left:380.715853pt;}
.xc_c00430{left:383.289853pt;}
.x9c_c00430{left:384.829853pt;}
.xa0_c00430{left:389.559853pt;}
.x5b_c00430{left:392.820253pt;}
.xb2_c00430{left:395.337053pt;}
.xa1_c00430{left:403.089853pt;}
.xd0_c00430{left:404.343853pt;}
.x89_c00430{left:405.993853pt;}
.x74_c00430{left:407.921053pt;}
.xd_c00430{left:412.422253pt;}
.x7b_c00430{left:413.421053pt;}
.x90_c00430{left:414.547453pt;}
.xe_c00430{left:421.842653pt;}
.x94_c00430{left:422.735853pt;}
.x2b_c00430{left:423.840253pt;}
.x12_c00430{left:427.008253pt;}
.x14_c00430{left:428.473453pt;}
.xc1_c00430{left:430.977053pt;}
.xb_c00430{left:432.301453pt;}
.xf_c00430{left:433.476253pt;}
.x15_c00430{left:435.808253pt;}
.x71_c00430{left:439.521853pt;}
.x8b_c00430{left:442.615053pt;}
.x16_c00430{left:447.151453pt;}
.x2c_c00430{left:451.894653pt;}
.x10_c00430{left:453.175053pt;}
.x17_c00430{left:458.785053pt;}
.x11_c00430{left:462.085053pt;}
.x13_c00430{left:463.369853pt;}
.x4d_c00430{left:465.635853pt;}
.x45_c00430{left:470.889453pt;}
.x8c_c00430{left:473.049853pt;}
.x7c_c00430{left:474.242253pt;}
.x4e_c00430{left:475.716253pt;}
.x5c_c00430{left:477.722653pt;}
.x46_c00430{left:482.276653pt;}
.xd3_c00430{left:483.174253pt;}
.x75_c00430{left:484.349053pt;}
.xc2_c00430{left:488.062653pt;}
.x47_c00430{left:490.918253pt;}
.x76_c00430{left:492.506653pt;}
.x8d_c00430{left:495.467853pt;}
.x4f_c00430{left:496.743853pt;}
.x91_c00430{left:498.319053pt;}
.x77_c00430{left:501.825853pt;}
.xc7_c00430{left:504.923453pt;}
.x18_c00430{left:510.317853pt;}
.x92_c00430{left:511.620253pt;}
.xd4_c00430{left:512.566253pt;}
.x7d_c00430{left:513.701453pt;}
.x48_c00430{left:521.326653pt;}
.x93_c00430{left:523.029453pt;}
.x50_c00430{left:526.831053pt;}
.xd5_c00430{left:531.077053pt;}
.xab_c00430{left:532.062653pt;}
.xac_c00430{left:533.501453pt;}
.x49_c00430{left:540.620653pt;}
.xa4_c00430{left:541.839453pt;}
.xc3_c00430{left:543.881053pt;}
.x51_c00430{left:550.657053pt;}
.x1a_c00430{left:551.853853pt;}
.x1c_c00430{left:553.926253pt;}
.xc6_c00430{left:554.977853pt;}
.xd6_c00430{left:556.509053pt;}
.x1b_c00430{left:560.645053pt;}
.xc4_c00430{left:561.951853pt;}
.x19_c00430{left:563.861453pt;}
.x1d_c00430{left:565.647853pt;}
.xa5_c00430{left:569.273453pt;}
.x4a_c00430{left:571.059853pt;}
.x52_c00430{left:573.281853pt;}
.x1f_c00430{left:578.935853pt;}
.x23_c00430{left:579.965453pt;}
.xc5_c00430{left:581.571453pt;}
.x4b_c00430{left:590.507853pt;}
.x4c_c00430{left:591.775053pt;}
.xa6_c00430{left:599.351853pt;}
.x24_c00430{left:600.641053pt;}
.xa3_c00430{left:602.546253pt;}
.xa9_c00430{left:609.163853pt;}
.x2d_c00430{left:610.105453pt;}
.x25_c00430{left:612.683853pt;}
.x20_c00430{left:614.465853pt;}
.xce_c00430{left:619.147453pt;}
.x26_c00430{left:620.234253pt;}
.x21_c00430{left:622.104253pt;}
.xa8_c00430{left:628.409453pt;}
.x1e_c00430{left:629.782253pt;}
.x22_c00430{left:633.847853pt;}
.x2e_c00430{left:637.658253pt;}
.xa2_c00430{left:638.824253pt;}
.xa7_c00430{left:639.757053pt;}
.xb8_c00430{left:648.125853pt;}
.xcb_c00430{left:649.366653pt;}
.xaa_c00430{left:651.078253pt;}
.xcf_c00430{left:668.621053pt;}
.xb3_c00430{left:669.523053pt;}
.xd1_c00430{left:671.027853pt;}
.xad_c00430{left:678.745453pt;}
.xcc_c00430{left:688.385853pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_061e194d082337b2dc4dbf0c.woff2')format("woff");}.ff1_c00431{font-family:ff1_c00431;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00431;src:url('chunks/assets/font_c389249f3184729c85c82680.woff2')format("woff");}.ff2_c00431{font-family:ff2_c00431;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00431;src:url('chunks/assets/font_976cc7cb00df7e22b20b77ac.woff2')format("woff");}.ff3_c00431{font-family:ff3_c00431;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00431;src:url('chunks/assets/font_c10322ad6a2465d2640ad4d1.woff2')format("woff");}.ff4_c00431{font-family:ff4_c00431;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00431;src:url('chunks/assets/font_cdd870a1dbfb810e4b286eb1.woff2')format("woff");}.ff5_c00431{font-family:ff5_c00431;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m23_c00431{transform:matrix(0.051830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.051830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.051830,0.000000,0.000000,0.250000,0,0);}
.m9_c00431{transform:matrix(0.077043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077043,0.000000,0.000000,0.250000,0,0);}
.m2a_c00431{transform:matrix(0.081646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081646,0.000000,0.000000,0.250000,0,0);}
.m86_c00431{transform:matrix(0.114146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114146,0.000000,0.000000,0.250000,0,0);}
.m24_c00431{transform:matrix(0.118903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118903,0.000000,0.000000,0.250000,0,0);}
.m41_c00431{transform:matrix(0.148170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148170,0.000000,0.000000,0.250000,0,0);}
.m65_c00431{transform:matrix(0.159044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159044,0.000000,0.000000,0.250000,0,0);}
.m22_c00431{transform:matrix(0.161585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161585,0.000000,0.000000,0.250000,0,0);}
.m2_c00431{transform:matrix(0.166537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166537,0.000000,0.000000,0.250000,0,0);}
.m71_c00431{transform:matrix(0.173077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173077,0.000000,0.000000,0.250000,0,0);}
.mb_c00431{transform:matrix(0.213270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213270,0.000000,0.000000,0.250000,0,0);}
.m56_c00431{transform:matrix(0.228001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228001,0.000000,0.000000,0.250000,0,0);}
.m5f_c00431{transform:matrix(0.235863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235863,0.000000,0.000000,0.250000,0,0);}
.m15_c00431{transform:matrix(0.240306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240306,0.000000,0.000000,0.250000,0,0);}
.ma_c00431{transform:matrix(0.241553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241553,0.000000,0.000000,0.250000,0,0);}
.mc_c00431{transform:matrix(0.241864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241864,0.000000,0.000000,0.250000,0,0);}
.ma3_c00431{transform:matrix(0.245271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245271,0.000000,0.000000,0.250000,0,0);}
.m30_c00431{transform:matrix(0.246459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246459,0.000000,0.000000,0.250000,0,0);}
.mba_c00431{transform:matrix(0.247251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247251,0.000000,0.000000,0.250000,0,0);}
.m0_c00431{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m7_c00431{transform:matrix(0.251722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251722,0.000000,0.000000,0.250000,0,0);}
.mb7_c00431{transform:matrix(0.253435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253435,0.000000,0.000000,0.250000,0,0);}
.m7e_c00431{transform:matrix(0.253916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253916,0.000000,0.000000,0.250000,0,0);}
.m54_c00431{transform:matrix(0.257030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257030,0.000000,0.000000,0.250000,0,0);}
.m66_c00431{transform:matrix(0.257609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257609,0.000000,0.000000,0.250000,0,0);}
.m11_c00431{transform:matrix(0.258252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258252,0.000000,0.000000,0.250000,0,0);}
.m3_c00431{transform:matrix(0.258686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258686,0.000000,0.000000,0.250000,0,0);}
.m60_c00431{transform:matrix(0.260007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260007,0.000000,0.000000,0.250000,0,0);}
.m4e_c00431{transform:matrix(0.260245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260245,0.000000,0.000000,0.250000,0,0);}
.m26_c00431{transform:matrix(0.260278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260278,0.000000,0.000000,0.250000,0,0);}
.m72_c00431{transform:matrix(0.260940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260940,0.000000,0.000000,0.250000,0,0);}
.m8e_c00431{transform:matrix(0.261930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261930,0.000000,0.000000,0.250000,0,0);}
.me_c00431{transform:matrix(0.262005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262005,0.000000,0.000000,0.250000,0,0);}
.m6e_c00431{transform:matrix(0.263147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263147,0.000000,0.000000,0.250000,0,0);}
.m6b_c00431{transform:matrix(0.264926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264926,0.000000,0.000000,0.250000,0,0);}
.m55_c00431{transform:matrix(0.265008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265008,0.000000,0.000000,0.250000,0,0);}
.mc0_c00431{transform:matrix(0.265101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265101,0.000000,0.000000,0.250000,0,0);}
.mcf_c00431{transform:matrix(0.265156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265156,0.000000,0.000000,0.250000,0,0);}
.m4_c00431{transform:matrix(0.267399,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267399,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267399,0.000000,0.000000,0.250000,0,0);}
.m85_c00431{transform:matrix(0.267565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267565,0.000000,0.000000,0.250000,0,0);}
.md1_c00431{transform:matrix(0.268300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268300,0.000000,0.000000,0.250000,0,0);}
.mae_c00431{transform:matrix(0.269675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269675,0.000000,0.000000,0.250000,0,0);}
.m9f_c00431{transform:matrix(0.270008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270008,0.000000,0.000000,0.250000,0,0);}
.ma9_c00431{transform:matrix(0.270237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270237,0.000000,0.000000,0.250000,0,0);}
.m1b_c00431{transform:matrix(0.270429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270429,0.000000,0.000000,0.250000,0,0);}
.m80_c00431{transform:matrix(0.271918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271918,0.000000,0.000000,0.250000,0,0);}
.m70_c00431{transform:matrix(0.274914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274914,0.000000,0.000000,0.250000,0,0);}
.m1c_c00431{transform:matrix(0.275008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275008,0.000000,0.000000,0.250000,0,0);}
.m43_c00431{transform:matrix(0.275196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275196,0.000000,0.000000,0.250000,0,0);}
.m17_c00431{transform:matrix(0.275218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275218,0.000000,0.000000,0.250000,0,0);}
.m64_c00431{transform:matrix(0.275870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275870,0.000000,0.000000,0.250000,0,0);}
.m5_c00431{transform:matrix(0.276862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276862,0.000000,0.000000,0.250000,0,0);}
.m92_c00431{transform:matrix(0.278047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278047,0.000000,0.000000,0.250000,0,0);}
.m9c_c00431{transform:matrix(0.278291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278291,0.000000,0.000000,0.250000,0,0);}
.ma1_c00431{transform:matrix(0.278761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278761,0.000000,0.000000,0.250000,0,0);}
.m42_c00431{transform:matrix(0.278772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278772,0.000000,0.000000,0.250000,0,0);}
.mb3_c00431{transform:matrix(0.278775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278775,0.000000,0.000000,0.250000,0,0);}
.m19_c00431{transform:matrix(0.279151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279151,0.000000,0.000000,0.250000,0,0);}
.m88_c00431{transform:matrix(0.279287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279287,0.000000,0.000000,0.250000,0,0);}
.mb9_c00431{transform:matrix(0.279298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279298,0.000000,0.000000,0.250000,0,0);}
.mc3_c00431{transform:matrix(0.279302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279302,0.000000,0.000000,0.250000,0,0);}
.m49_c00431{transform:matrix(0.279922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279922,0.000000,0.000000,0.250000,0,0);}
.m40_c00431{transform:matrix(0.281807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281807,0.000000,0.000000,0.250000,0,0);}
.mc7_c00431{transform:matrix(0.282022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282022,0.000000,0.000000,0.250000,0,0);}
.m27_c00431{transform:matrix(0.282397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282397,0.000000,0.000000,0.250000,0,0);}
.m96_c00431{transform:matrix(0.284323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284323,0.000000,0.000000,0.250000,0,0);}
.m29_c00431{transform:matrix(0.284920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284920,0.000000,0.000000,0.250000,0,0);}
.m91_c00431{transform:matrix(0.285251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285251,0.000000,0.000000,0.250000,0,0);}
.mc8_c00431{transform:matrix(0.286393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286393,0.000000,0.000000,0.250000,0,0);}
.md0_c00431{transform:matrix(0.286615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286615,0.000000,0.000000,0.250000,0,0);}
.m9b_c00431{transform:matrix(0.286751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286751,0.000000,0.000000,0.250000,0,0);}
.m5c_c00431{transform:matrix(0.287022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287022,0.000000,0.000000,0.250000,0,0);}
.m18_c00431{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.maf_c00431{transform:matrix(0.288153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288153,0.000000,0.000000,0.250000,0,0);}
.m61_c00431{transform:matrix(0.288422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288422,0.000000,0.000000,0.250000,0,0);}
.m21_c00431{transform:matrix(0.288595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288595,0.000000,0.000000,0.250000,0,0);}
.mc1_c00431{transform:matrix(0.289434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289434,0.000000,0.000000,0.250000,0,0);}
.mb1_c00431{transform:matrix(0.289918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289918,0.000000,0.000000,0.250000,0,0);}
.mb6_c00431{transform:matrix(0.290111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290111,0.000000,0.000000,0.250000,0,0);}
.m33_c00431{transform:matrix(0.290224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290224,0.000000,0.000000,0.250000,0,0);}
.m5a_c00431{transform:matrix(0.290280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290280,0.000000,0.000000,0.250000,0,0);}
.m7d_c00431{transform:matrix(0.291654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291654,0.000000,0.000000,0.250000,0,0);}
.m7a_c00431{transform:matrix(0.291695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291695,0.000000,0.000000,0.250000,0,0);}
.ma5_c00431{transform:matrix(0.291735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291735,0.000000,0.000000,0.250000,0,0);}
.mb4_c00431{transform:matrix(0.291766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291766,0.000000,0.000000,0.250000,0,0);}
.m45_c00431{transform:matrix(0.292109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292109,0.000000,0.000000,0.250000,0,0);}
.m95_c00431{transform:matrix(0.292451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292451,0.000000,0.000000,0.250000,0,0);}
.m5b_c00431{transform:matrix(0.293291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293291,0.000000,0.000000,0.250000,0,0);}
.m3e_c00431{transform:matrix(0.293389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293389,0.000000,0.000000,0.250000,0,0);}
.m77_c00431{transform:matrix(0.293391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293391,0.000000,0.000000,0.250000,0,0);}
.m51_c00431{transform:matrix(0.294934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294934,0.000000,0.000000,0.250000,0,0);}
.m7c_c00431{transform:matrix(0.294938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294938,0.000000,0.000000,0.250000,0,0);}
.m8d_c00431{transform:matrix(0.295318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295318,0.000000,0.000000,0.250000,0,0);}
.m8c_c00431{transform:matrix(0.296044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296044,0.000000,0.000000,0.250000,0,0);}
.mc4_c00431{transform:matrix(0.296202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296202,0.000000,0.000000,0.250000,0,0);}
.m52_c00431{transform:matrix(0.296695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296695,0.000000,0.000000,0.250000,0,0);}
.m6d_c00431{transform:matrix(0.296851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296851,0.000000,0.000000,0.250000,0,0);}
.m6_c00431{transform:matrix(0.296916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296916,0.000000,0.000000,0.250000,0,0);}
.m13_c00431{transform:matrix(0.297476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297476,0.000000,0.000000,0.250000,0,0);}
.m4a_c00431{transform:matrix(0.299030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299030,0.000000,0.000000,0.250000,0,0);}
.m8_c00431{transform:matrix(0.299177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299177,0.000000,0.000000,0.250000,0,0);}
.m1e_c00431{transform:matrix(0.299739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299739,0.000000,0.000000,0.250000,0,0);}
.mbb_c00431{transform:matrix(0.300028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300028,0.000000,0.000000,0.250000,0,0);}
.m16_c00431{transform:matrix(0.301140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301140,0.000000,0.000000,0.250000,0,0);}
.mf_c00431{transform:matrix(0.302380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302380,0.000000,0.000000,0.250000,0,0);}
.mab_c00431{transform:matrix(0.302445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302445,0.000000,0.000000,0.250000,0,0);}
.m3c_c00431{transform:matrix(0.302869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302869,0.000000,0.000000,0.250000,0,0);}
.m78_c00431{transform:matrix(0.303237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303237,0.000000,0.000000,0.250000,0,0);}
.m58_c00431{transform:matrix(0.303932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303932,0.000000,0.000000,0.250000,0,0);}
.m93_c00431{transform:matrix(0.304598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304598,0.000000,0.000000,0.250000,0,0);}
.m48_c00431{transform:matrix(0.305049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305049,0.000000,0.000000,0.250000,0,0);}
.m12_c00431{transform:matrix(0.307197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307197,0.000000,0.000000,0.250000,0,0);}
.mbf_c00431{transform:matrix(0.307216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307216,0.000000,0.000000,0.250000,0,0);}
.m76_c00431{transform:matrix(0.307439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307439,0.000000,0.000000,0.250000,0,0);}
.ma2_c00431{transform:matrix(0.307679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307679,0.000000,0.000000,0.250000,0,0);}
.m4c_c00431{transform:matrix(0.308056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308056,0.000000,0.000000,0.250000,0,0);}
.m1d_c00431{transform:matrix(0.308105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308105,0.000000,0.000000,0.250000,0,0);}
.m6a_c00431{transform:matrix(0.308834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308834,0.000000,0.000000,0.250000,0,0);}
.m2d_c00431{transform:matrix(0.309615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309615,0.000000,0.000000,0.250000,0,0);}
.m10_c00431{transform:matrix(0.309775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309775,0.000000,0.000000,0.250000,0,0);}
.m3d_c00431{transform:matrix(0.310081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310081,0.000000,0.000000,0.250000,0,0);}
.m81_c00431{transform:matrix(0.310609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310609,0.000000,0.000000,0.250000,0,0);}
.mca_c00431{transform:matrix(0.310745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310745,0.000000,0.000000,0.250000,0,0);}
.mcc_c00431{transform:matrix(0.310880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310880,0.000000,0.000000,0.250000,0,0);}
.m73_c00431{transform:matrix(0.311122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311122,0.000000,0.000000,0.250000,0,0);}
.m14_c00431{transform:matrix(0.311828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311828,0.000000,0.000000,0.250000,0,0);}
.m57_c00431{transform:matrix(0.312278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312278,0.000000,0.000000,0.250000,0,0);}
.m36_c00431{transform:matrix(0.313460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313460,0.000000,0.000000,0.250000,0,0);}
.m79_c00431{transform:matrix(0.314148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314148,0.000000,0.000000,0.250000,0,0);}
.m98_c00431{transform:matrix(0.314193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314193,0.000000,0.000000,0.250000,0,0);}
.m9a_c00431{transform:matrix(0.314320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314320,0.000000,0.000000,0.250000,0,0);}
.m34_c00431{transform:matrix(0.314443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314443,0.000000,0.000000,0.250000,0,0);}
.m25_c00431{transform:matrix(0.314697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314697,0.000000,0.000000,0.250000,0,0);}
.m69_c00431{transform:matrix(0.315409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315409,0.000000,0.000000,0.250000,0,0);}
.mc9_c00431{transform:matrix(0.315978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315978,0.000000,0.000000,0.250000,0,0);}
.m4b_c00431{transform:matrix(0.316787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316787,0.000000,0.000000,0.250000,0,0);}
.m3f_c00431{transform:matrix(0.318550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318550,0.000000,0.000000,0.250000,0,0);}
.m2b_c00431{transform:matrix(0.320433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320433,0.000000,0.000000,0.250000,0,0);}
.mb2_c00431{transform:matrix(0.320567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320567,0.000000,0.000000,0.250000,0,0);}
.m1a_c00431{transform:matrix(0.321157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321157,0.000000,0.000000,0.250000,0,0);}
.m63_c00431{transform:matrix(0.321645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321645,0.000000,0.000000,0.250000,0,0);}
.m6c_c00431{transform:matrix(0.322349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322349,0.000000,0.000000,0.250000,0,0);}
.m53_c00431{transform:matrix(0.322688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322688,0.000000,0.000000,0.250000,0,0);}
.m31_c00431{transform:matrix(0.322841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322841,0.000000,0.000000,0.250000,0,0);}
.mac_c00431{transform:matrix(0.323789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323789,0.000000,0.000000,0.250000,0,0);}
.m7f_c00431{transform:matrix(0.324461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324461,0.000000,0.000000,0.250000,0,0);}
.mc2_c00431{transform:matrix(0.326409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326409,0.000000,0.000000,0.250000,0,0);}
.ma7_c00431{transform:matrix(0.326551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326551,0.000000,0.000000,0.250000,0,0);}
.maa_c00431{transform:matrix(0.327106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327106,0.000000,0.000000,0.250000,0,0);}
.m68_c00431{transform:matrix(0.328326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328326,0.000000,0.000000,0.250000,0,0);}
.m75_c00431{transform:matrix(0.330480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330480,0.000000,0.000000,0.250000,0,0);}
.mb8_c00431{transform:matrix(0.330612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330612,0.000000,0.000000,0.250000,0,0);}
.mad_c00431{transform:matrix(0.330648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330648,0.000000,0.000000,0.250000,0,0);}
.m37_c00431{transform:matrix(0.330925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330925,0.000000,0.000000,0.250000,0,0);}
.ma4_c00431{transform:matrix(0.331359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331359,0.000000,0.000000,0.250000,0,0);}
.mbc_c00431{transform:matrix(0.332480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332480,0.000000,0.000000,0.250000,0,0);}
.m83_c00431{transform:matrix(0.332608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332608,0.000000,0.000000,0.250000,0,0);}
.m84_c00431{transform:matrix(0.332914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332914,0.000000,0.000000,0.250000,0,0);}
.mcb_c00431{transform:matrix(0.333290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333290,0.000000,0.000000,0.250000,0,0);}
.m8b_c00431{transform:matrix(0.334296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334296,0.000000,0.000000,0.250000,0,0);}
.m5d_c00431{transform:matrix(0.334660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334660,0.000000,0.000000,0.250000,0,0);}
.m3b_c00431{transform:matrix(0.335316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335316,0.000000,0.000000,0.250000,0,0);}
.mbd_c00431{transform:matrix(0.336709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336709,0.000000,0.000000,0.250000,0,0);}
.m99_c00431{transform:matrix(0.337534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337534,0.000000,0.000000,0.250000,0,0);}
.m8f_c00431{transform:matrix(0.338050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338050,0.000000,0.000000,0.250000,0,0);}
.m7b_c00431{transform:matrix(0.338279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338279,0.000000,0.000000,0.250000,0,0);}
.ma8_c00431{transform:matrix(0.338318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338318,0.000000,0.000000,0.250000,0,0);}
.m87_c00431{transform:matrix(0.338905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338905,0.000000,0.000000,0.250000,0,0);}
.m97_c00431{transform:matrix(0.341726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341726,0.000000,0.000000,0.250000,0,0);}
.m89_c00431{transform:matrix(0.342474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342474,0.000000,0.000000,0.250000,0,0);}
.mb0_c00431{transform:matrix(0.342588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342588,0.000000,0.000000,0.250000,0,0);}
.ma6_c00431{transform:matrix(0.343473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343473,0.000000,0.000000,0.250000,0,0);}
.m50_c00431{transform:matrix(0.343646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343646,0.000000,0.000000,0.250000,0,0);}
.m47_c00431{transform:matrix(0.343671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343671,0.000000,0.000000,0.250000,0,0);}
.mc5_c00431{transform:matrix(0.346468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346468,0.000000,0.000000,0.250000,0,0);}
.m35_c00431{transform:matrix(0.347758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347758,0.000000,0.000000,0.250000,0,0);}
.mce_c00431{transform:matrix(0.348976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348976,0.000000,0.000000,0.250000,0,0);}
.m32_c00431{transform:matrix(0.349313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349313,0.000000,0.000000,0.250000,0,0);}
.m2c_c00431{transform:matrix(0.350155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350155,0.000000,0.000000,0.250000,0,0);}
.ma0_c00431{transform:matrix(0.350227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350227,0.000000,0.000000,0.250000,0,0);}
.mb5_c00431{transform:matrix(0.350296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350296,0.000000,0.000000,0.250000,0,0);}
.m9e_c00431{transform:matrix(0.351810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351810,0.000000,0.000000,0.250000,0,0);}
.m28_c00431{transform:matrix(0.352382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352382,0.000000,0.000000,0.250000,0,0);}
.m94_c00431{transform:matrix(0.353719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353719,0.000000,0.000000,0.250000,0,0);}
.m82_c00431{transform:matrix(0.355694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355694,0.000000,0.000000,0.250000,0,0);}
.m3a_c00431{transform:matrix(0.359139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359139,0.000000,0.000000,0.250000,0,0);}
.m5e_c00431{transform:matrix(0.360957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360957,0.000000,0.000000,0.250000,0,0);}
.m46_c00431{transform:matrix(0.367566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367566,0.000000,0.000000,0.250000,0,0);}
.md_c00431{transform:matrix(0.367905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367905,0.000000,0.000000,0.250000,0,0);}
.m4f_c00431{transform:matrix(0.368419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368419,0.000000,0.000000,0.250000,0,0);}
.m1f_c00431{transform:matrix(0.373564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373564,0.000000,0.000000,0.250000,0,0);}
.mcd_c00431{transform:matrix(0.373848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373848,0.000000,0.000000,0.250000,0,0);}
.m39_c00431{transform:matrix(0.375959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375959,0.000000,0.000000,0.250000,0,0);}
.m2f_c00431{transform:matrix(0.376285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376285,0.000000,0.000000,0.250000,0,0);}
.m59_c00431{transform:matrix(0.377316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377316,0.000000,0.000000,0.250000,0,0);}
.m90_c00431{transform:matrix(0.380183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380183,0.000000,0.000000,0.250000,0,0);}
.m4d_c00431{transform:matrix(0.380241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380241,0.000000,0.000000,0.250000,0,0);}
.m62_c00431{transform:matrix(0.380294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380294,0.000000,0.000000,0.250000,0,0);}
.mbe_c00431{transform:matrix(0.381648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381648,0.000000,0.000000,0.250000,0,0);}
.m74_c00431{transform:matrix(0.386739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386739,0.000000,0.000000,0.250000,0,0);}
.m9d_c00431{transform:matrix(0.390843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390843,0.000000,0.000000,0.250000,0,0);}
.m67_c00431{transform:matrix(0.393185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393185,0.000000,0.000000,0.250000,0,0);}
.m44_c00431{transform:matrix(0.393939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393939,0.000000,0.000000,0.250000,0,0);}
.m8a_c00431{transform:matrix(0.395528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395528,0.000000,0.000000,0.250000,0,0);}
.m6f_c00431{transform:matrix(0.398217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398217,0.000000,0.000000,0.250000,0,0);}
.m38_c00431{transform:matrix(0.401045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401045,0.000000,0.000000,0.250000,0,0);}
.m20_c00431{transform:matrix(0.408030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408030,0.000000,0.000000,0.250000,0,0);}
.md2_c00431{transform:matrix(0.415575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415575,0.000000,0.000000,0.250000,0,0);}
.m1_c00431{transform:matrix(0.444050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444050,0.000000,0.000000,0.250000,0,0);}
.m2e_c00431{transform:matrix(0.446203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446203,0.000000,0.000000,0.250000,0,0);}
.mc6_c00431{transform:matrix(0.452808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452808,0.000000,0.000000,0.250000,0,0);}
.v0_c00431{vertical-align:0.000000px;}
.lsc_c00431{letter-spacing:-2.564100px;}
.lse_c00431{letter-spacing:-2.425500px;}
.ls28_c00431{letter-spacing:-1.940400px;}
.lsa_c00431{letter-spacing:-1.552320px;}
.ls1e_c00431{letter-spacing:-0.593406px;}
.ls27_c00431{letter-spacing:-0.534798px;}
.ls22_c00431{letter-spacing:-0.117216px;}
.ls8_c00431{letter-spacing:0.000000px;}
.ls1b_c00431{letter-spacing:0.144461px;}
.ls0_c00431{letter-spacing:0.365667px;}
.ls19_c00431{letter-spacing:0.388278px;}
.ls3_c00431{letter-spacing:0.461538px;}
.lsd_c00431{letter-spacing:0.637362px;}
.ls7_c00431{letter-spacing:0.673992px;}
.ls1f_c00431{letter-spacing:0.761904px;}
.ls1d_c00431{letter-spacing:1.113552px;}
.ls4_c00431{letter-spacing:1.289376px;}
.ls6_c00431{letter-spacing:1.318680px;}
.ls18_c00431{letter-spacing:1.333332px;}
.ls23_c00431{letter-spacing:1.399266px;}
.ls15_c00431{letter-spacing:1.501830px;}
.ls9_c00431{letter-spacing:1.544400px;}
.ls16_c00431{letter-spacing:1.732500px;}
.ls2a_c00431{letter-spacing:1.875456px;}
.ls1c_c00431{letter-spacing:2.257200px;}
.ls1_c00431{letter-spacing:2.287620px;}
.ls11_c00431{letter-spacing:2.376000px;}
.ls24_c00431{letter-spacing:2.439558px;}
.ls26_c00431{letter-spacing:2.475000px;}
.ls1a_c00431{letter-spacing:2.534400px;}
.ls12_c00431{letter-spacing:2.578752px;}
.ls29_c00431{letter-spacing:2.772000px;}
.ls14_c00431{letter-spacing:3.286810px;}
.ls10_c00431{letter-spacing:3.385810px;}
.lsb_c00431{letter-spacing:3.663000px;}
.ls13_c00431{letter-spacing:3.702610px;}
.ls20_c00431{letter-spacing:3.722400px;}
.lsf_c00431{letter-spacing:3.781810px;}
.ls21_c00431{letter-spacing:3.979810px;}
.ls2_c00431{letter-spacing:9.963360px;}
.ls5_c00431{letter-spacing:22.344300px;}
.ls25_c00431{letter-spacing:55.598598px;}
.ls17_c00431{letter-spacing:58.449798px;}
.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;}
}
.ws8_c00431{word-spacing:-19.899050px;}
.ws9_c00431{word-spacing:-19.633680px;}
.ws5_c00431{word-spacing:-19.604376px;}
.ws4_c00431{word-spacing:-19.076904px;}
.wsa_c00431{word-spacing:-18.988992px;}
.ws2_c00431{word-spacing:-18.315000px;}
.ws7_c00431{word-spacing:-18.197784px;}
.ws6_c00431{word-spacing:-3.882780px;}
.ws0_c00431{word-spacing:-3.273024px;}
.ws1_c00431{word-spacing:-2.271060px;}
.ws3_c00431{word-spacing:-1.794870px;}
.wsb_c00431{word-spacing:0.000000px;}
._e_c00431{margin-left:-7.472520px;}
._1_c00431{margin-left:-4.029300px;}
._9_c00431{width:1.684980px;}
._0_c00431{width:3.198838px;}
._11_c00431{width:4.991481px;}
._17_c00431{width:6.959700px;}
._d_c00431{width:8.131860px;}
._4_c00431{width:9.743580px;}
._14_c00431{width:11.794860px;}
._f_c00431{width:13.699620px;}
._2_c00431{width:16.913160px;}
._8_c00431{width:19.853460px;}
._16_c00431{width:20.879100px;}
._a_c00431{width:22.344300px;}
._b_c00431{width:23.662980px;}
._7_c00431{width:25.128180px;}
._15_c00431{width:26.593380px;}
._6_c00431{width:28.058580px;}
._12_c00431{width:29.995812px;}
._5_c00431{width:31.956012px;}
._13_c00431{width:33.406560px;}
._10_c00431{width:36.190440px;}
._3_c00431{width:40.366260px;}
._c_c00431{width:41.758200px;}
._18_c00431{width:43.599600px;}
.fc0_c00431{color:transparent;}
.fs0_c00431{font-size:30.888000px;}
.fsd_c00431{font-size:33.660000px;}
.fsa_c00431{font-size:34.650000px;}
.fs11_c00431{font-size:39.600000px;}
.fs1_c00431{font-size:44.352000px;}
.fse_c00431{font-size:45.144000px;}
.fs7_c00431{font-size:47.520000px;}
.fs13_c00431{font-size:49.500000px;}
.fsc_c00431{font-size:50.688000px;}
.fs14_c00431{font-size:55.440000px;}
.fs12_c00431{font-size:55.598598px;}
.fsb_c00431{font-size:58.449798px;}
.fs8_c00431{font-size:60.192000px;}
.fs9_c00431{font-size:65.736198px;}
.fs3_c00431{font-size:67.716198px;}
.fs4_c00431{font-size:69.300000px;}
.fs2_c00431{font-size:73.260000px;}
.fs6_c00431{font-size:74.052198px;}
.fsf_c00431{font-size:74.448000px;}
.fs5_c00431{font-size:75.636198px;}
.fs10_c00431{font-size:79.596198px;}
.y0_c00431{bottom:0.000000px;}
.y1_c00431{bottom:61.500000px;}
.y1d_c00431{bottom:156.219570px;}
.y1c_c00431{bottom:186.518520px;}
.y1b_c00431{bottom:254.585970px;}
.y1a_c00431{bottom:287.023320px;}
.y19_c00431{bottom:320.163570px;}
.y18_c00431{bottom:353.670120px;}
.y17_c00431{bottom:386.458920px;}
.y16_c00431{bottom:418.886370px;}
.y15_c00431{bottom:454.887720px;}
.y14_c00431{bottom:486.963720px;}
.y13_c00431{bottom:519.747570px;}
.y12_c00431{bottom:560.020770px;}
.y11_c00431{bottom:584.260920px;}
.y10_c00431{bottom:618.831720px;}
.yf_c00431{bottom:650.902770px;}
.ye_c00431{bottom:651.264120px;}
.yd_c00431{bottom:683.335170px;}
.yc_c00431{bottom:716.485320px;}
.yb_c00431{bottom:747.848520px;}
.ya_c00431{bottom:811.282770px;}
.y9_c00431{bottom:833.740920px;}
.y8_c00431{bottom:843.363720px;}
.y6_c00431{bottom:876.865320px;}
.y7_c00431{bottom:882.206370px;}
.y5_c00431{bottom:912.143970px;}
.y4_c00431{bottom:947.427570px;}
.y3_c00431{bottom:1095.333570px;}
.y2_c00431{bottom:1103.887170px;}
.h2_c00431{height:32.215219px;}
.hf_c00431{height:33.035449px;}
.hc_c00431{height:36.138867px;}
.h14_c00431{height:37.028666px;}
.hd_c00431{height:38.927565px;}
.h13_c00431{height:41.301563px;}
.h3_c00431{height:43.529063px;}
.h10_c00431{height:47.083781px;}
.h9_c00431{height:49.561875px;}
.he_c00431{height:49.747500px;}
.h15_c00431{height:51.626953px;}
.h17_c00431{height:57.822188px;}
.ha_c00431{height:59.075156px;}
.h5_c00431{height:68.014160px;}
.hb_c00431{height:68.560800px;}
.h8_c00431{height:70.625878px;}
.h4_c00431{height:71.900684px;}
.h7_c00431{height:72.678183px;}
.h11_c00431{height:73.066641px;}
.h6_c00431{height:74.232792px;}
.h16_c00431{height:75.029625px;}
.h12_c00431{height:78.119315px;}
.h1_c00431{height:1140.000000px;}
.h0_c00431{height:1263.000000px;}
.w1_c00431{width:820.500000px;}
.w0_c00431{width:892.500000px;}
.x0_c00431{left:0.000000px;}
.x1_c00431{left:36.000000px;}
.x42_c00431{left:101.449185px;}
.x13_c00431{left:103.379685px;}
.x1f_c00431{left:104.686485px;}
.x2d_c00431{left:113.542035px;}
.x61_c00431{left:115.848735px;}
.x14_c00431{left:125.818035px;}
.x4b_c00431{left:135.094335px;}
.x20_c00431{left:136.712985px;}
.x15_c00431{left:146.459535px;}
.x5e_c00431{left:147.518835px;}
.x6_c00431{left:156.918885px;}
.x43_c00431{left:159.230535px;}
.x2e_c00431{left:167.690085px;}
.x44_c00431{left:178.882035px;}
.x7_c00431{left:189.979935px;}
.x2f_c00431{left:199.404735px;}
.x30_c00431{left:211.695585px;}
.x72_c00431{left:221.491635px;}
.x3a_c00431{left:222.828135px;}
.x16_c00431{left:224.134935px;}
.x45_c00431{left:232.223235px;}
.x21_c00431{left:234.381435px;}
.x31_c00431{left:245.192235px;}
.x73_c00431{left:254.641785px;}
.x62_c00431{left:255.671385px;}
.x4c_c00431{left:256.948485px;}
.x3b_c00431{left:266.784135px;}
.x55_c00431{left:276.416835px;}
.x4d_c00431{left:278.045385px;}
.x63_c00431{left:288.677985px;}
.x22_c00431{left:289.712535px;}
.x67_c00431{left:300.137235px;}
.x32_c00431{left:301.142085px;}
.x6e_c00431{left:307.755285px;}
.x58_c00431{left:309.527385px;}
.x8_c00431{left:311.150985px;}
.x3c_c00431{left:321.877635px;}
.x23_c00431{left:322.936935px;}
.x17_c00431{left:331.975635px;}
.x3d_c00431{left:333.203235px;}
.x46_c00431{left:343.429935px;}
.x9_c00431{left:344.969385px;}
.x33_c00431{left:350.161935px;}
.x4e_c00431{left:355.022835px;}
.x64_c00431{left:365.670285px;}
.x24_c00431{left:366.754335px;}
.x25_c00431{left:377.243385px;}
.x34_c00431{left:387.994785px;}
.x4f_c00431{left:389.172885px;}
.x3e_c00431{left:399.845085px;}
.x50_c00431{left:410.982585px;}
.x26_c00431{left:420.734085px;}
.xa_c00431{left:422.496285px;}
.x5d_c00431{left:423.585285px;}
.x18_c00431{left:432.232935px;}
.x35_c00431{left:433.312035px;}
.x47_c00431{left:443.736735px;}
.x6a_c00431{left:452.795235px;}
.x59_c00431{left:454.017885px;}
.x27_c00431{left:455.354385px;}
.x77_c00431{left:456.468135px;}
.x48_c00431{left:464.140635px;}
.x36_c00431{left:465.788985px;}
.x3f_c00431{left:475.976085px;}
.x19_c00431{left:477.188835px;}
.xb_c00431{left:487.573935px;}
.x71_c00431{left:489.969735px;}
.x40_c00431{left:498.404535px;}
.x51_c00431{left:509.304435px;}
.x65_c00431{left:511.066635px;}
.x41_c00431{left:520.719135px;}
.x6b_c00431{left:530.851785px;}
.x28_c00431{left:532.406085px;}
.x52_c00431{left:542.845635px;}
.xc_c00431{left:553.641585px;}
.x29_c00431{left:555.616635px;}
.x1a_c00431{left:564.125685px;}
.x68_c00431{left:565.244385px;}
.xd_c00431{left:570.397335px;}
.xe_c00431{left:574.684035px;}
.x6f_c00431{left:576.282885px;}
.x5a_c00431{left:577.688685px;}
.x6c_c00431{left:586.054185px;}
.x1b_c00431{left:596.023485px;}
.x53_c00431{left:597.503535px;}
.x2a_c00431{left:599.646885px;}
.x5b_c00431{left:605.349285px;}
.x75_c00431{left:606.799635px;}
.x37_c00431{left:609.086535px;}
.x56_c00431{left:617.848035px;}
.x1c_c00431{left:619.115235px;}
.x66_c00431{left:630.500235px;}
.x74_c00431{left:632.079285px;}
.x49_c00431{left:639.994335px;}
.x38_c00431{left:641.142735px;}
.xf_c00431{left:642.820785px;}
.x1d_c00431{left:644.097885px;}
.x6d_c00431{left:652.032735px;}
.x4a_c00431{left:653.250435px;}
.x2b_c00431{left:655.987785px;}
.x76_c00431{left:663.076185px;}
.x5f_c00431{left:666.526335px;}
.x10_c00431{left:674.332485px;}
.x69_c00431{left:675.772935px;}
.x70_c00431{left:679.371585px;}
.x2c_c00431{left:685.935285px;}
.x5c_c00431{left:687.746985px;}
.x2_c00431{left:695.944185px;}
.x54_c00431{left:697.102485px;}
.x78_c00431{left:705.908535px;}
.x4_c00431{left:707.626185px;}
.x3_c00431{left:710.071485px;}
.x11_c00431{left:719.050785px;}
.x12_c00431{left:729.000285px;}
.x5_c00431{left:731.767335px;}
.x57_c00431{left:740.504085px;}
.x1e_c00431{left:750.998085px;}
.x39_c00431{left:752.542485px;}
.x60_c00431{left:762.437535px;}
@media print{
.v0_c00431{vertical-align:0.000000pt;}
.lsc_c00431{letter-spacing:-2.279200pt;}
.lse_c00431{letter-spacing:-2.156000pt;}
.ls28_c00431{letter-spacing:-1.724800pt;}
.lsa_c00431{letter-spacing:-1.379840pt;}
.ls1e_c00431{letter-spacing:-0.527472pt;}
.ls27_c00431{letter-spacing:-0.475376pt;}
.ls22_c00431{letter-spacing:-0.104192pt;}
.ls8_c00431{letter-spacing:0.000000pt;}
.ls1b_c00431{letter-spacing:0.128410pt;}
.ls0_c00431{letter-spacing:0.325038pt;}
.ls19_c00431{letter-spacing:0.345136pt;}
.ls3_c00431{letter-spacing:0.410256pt;}
.lsd_c00431{letter-spacing:0.566544pt;}
.ls7_c00431{letter-spacing:0.599104pt;}
.ls1f_c00431{letter-spacing:0.677248pt;}
.ls1d_c00431{letter-spacing:0.989824pt;}
.ls4_c00431{letter-spacing:1.146112pt;}
.ls6_c00431{letter-spacing:1.172160pt;}
.ls18_c00431{letter-spacing:1.185184pt;}
.ls23_c00431{letter-spacing:1.243792pt;}
.ls15_c00431{letter-spacing:1.334960pt;}
.ls9_c00431{letter-spacing:1.372800pt;}
.ls16_c00431{letter-spacing:1.540000pt;}
.ls2a_c00431{letter-spacing:1.667072pt;}
.ls1c_c00431{letter-spacing:2.006400pt;}
.ls1_c00431{letter-spacing:2.033440pt;}
.ls11_c00431{letter-spacing:2.112000pt;}
.ls24_c00431{letter-spacing:2.168496pt;}
.ls26_c00431{letter-spacing:2.200000pt;}
.ls1a_c00431{letter-spacing:2.252800pt;}
.ls12_c00431{letter-spacing:2.292224pt;}
.ls29_c00431{letter-spacing:2.464000pt;}
.ls14_c00431{letter-spacing:2.921609pt;}
.ls10_c00431{letter-spacing:3.009609pt;}
.lsb_c00431{letter-spacing:3.256000pt;}
.ls13_c00431{letter-spacing:3.291209pt;}
.ls20_c00431{letter-spacing:3.308800pt;}
.lsf_c00431{letter-spacing:3.361609pt;}
.ls21_c00431{letter-spacing:3.537609pt;}
.ls2_c00431{letter-spacing:8.856320pt;}
.ls5_c00431{letter-spacing:19.861600pt;}
.ls25_c00431{letter-spacing:49.420976pt;}
.ls17_c00431{letter-spacing:51.955376pt;}
.ws8_c00431{word-spacing:-17.688044pt;}
.ws9_c00431{word-spacing:-17.452160pt;}
.ws5_c00431{word-spacing:-17.426112pt;}
.ws4_c00431{word-spacing:-16.957248pt;}
.wsa_c00431{word-spacing:-16.879104pt;}
.ws2_c00431{word-spacing:-16.280000pt;}
.ws7_c00431{word-spacing:-16.175808pt;}
.ws6_c00431{word-spacing:-3.451360pt;}
.ws0_c00431{word-spacing:-2.909354pt;}
.ws1_c00431{word-spacing:-2.018720pt;}
.ws3_c00431{word-spacing:-1.595440pt;}
.wsb_c00431{word-spacing:0.000000pt;}
._e_c00431{margin-left:-6.642240pt;}
._1_c00431{margin-left:-3.581600pt;}
._9_c00431{width:1.497760pt;}
._0_c00431{width:2.843412pt;}
._11_c00431{width:4.436872pt;}
._17_c00431{width:6.186400pt;}
._d_c00431{width:7.228320pt;}
._4_c00431{width:8.660960pt;}
._14_c00431{width:10.484320pt;}
._f_c00431{width:12.177440pt;}
._2_c00431{width:15.033920pt;}
._8_c00431{width:17.647520pt;}
._16_c00431{width:18.559200pt;}
._a_c00431{width:19.861600pt;}
._b_c00431{width:21.033760pt;}
._7_c00431{width:22.336160pt;}
._15_c00431{width:23.638560pt;}
._6_c00431{width:24.940960pt;}
._12_c00431{width:26.662944pt;}
._5_c00431{width:28.405344pt;}
._13_c00431{width:29.694720pt;}
._10_c00431{width:32.169280pt;}
._3_c00431{width:35.881120pt;}
._c_c00431{width:37.118400pt;}
._18_c00431{width:38.755200pt;}
.fs0_c00431{font-size:27.456000pt;}
.fsd_c00431{font-size:29.920000pt;}
.fsa_c00431{font-size:30.800000pt;}
.fs11_c00431{font-size:35.200000pt;}
.fs1_c00431{font-size:39.424000pt;}
.fse_c00431{font-size:40.128000pt;}
.fs7_c00431{font-size:42.240000pt;}
.fs13_c00431{font-size:44.000000pt;}
.fsc_c00431{font-size:45.056000pt;}
.fs14_c00431{font-size:49.280000pt;}
.fs12_c00431{font-size:49.420976pt;}
.fsb_c00431{font-size:51.955376pt;}
.fs8_c00431{font-size:53.504000pt;}
.fs9_c00431{font-size:58.432176pt;}
.fs3_c00431{font-size:60.192176pt;}
.fs4_c00431{font-size:61.600000pt;}
.fs2_c00431{font-size:65.120000pt;}
.fs6_c00431{font-size:65.824176pt;}
.fsf_c00431{font-size:66.176000pt;}
.fs5_c00431{font-size:67.232176pt;}
.fs10_c00431{font-size:70.752176pt;}
.y0_c00431{bottom:0.000000pt;}
.y1_c00431{bottom:54.666667pt;}
.y1d_c00431{bottom:138.861840pt;}
.y1c_c00431{bottom:165.794240pt;}
.y1b_c00431{bottom:226.298640pt;}
.y1a_c00431{bottom:255.131840pt;}
.y19_c00431{bottom:284.589840pt;}
.y18_c00431{bottom:314.373440pt;}
.y17_c00431{bottom:343.519040pt;}
.y16_c00431{bottom:372.343440pt;}
.y15_c00431{bottom:404.344640pt;}
.y14_c00431{bottom:432.856640pt;}
.y13_c00431{bottom:461.997840pt;}
.y12_c00431{bottom:497.796240pt;}
.y11_c00431{bottom:519.343040pt;}
.y10_c00431{bottom:550.072640pt;}
.yf_c00431{bottom:578.580240pt;}
.ye_c00431{bottom:578.901440pt;}
.yd_c00431{bottom:607.409040pt;}
.yc_c00431{bottom:636.875840pt;}
.yb_c00431{bottom:664.754240pt;}
.ya_c00431{bottom:721.140240pt;}
.y9_c00431{bottom:741.103040pt;}
.y8_c00431{bottom:749.656640pt;}
.y6_c00431{bottom:779.435840pt;}
.y7_c00431{bottom:784.183440pt;}
.y5_c00431{bottom:810.794640pt;}
.y4_c00431{bottom:842.157840pt;}
.y3_c00431{bottom:973.629840pt;}
.y2_c00431{bottom:981.233040pt;}
.h2_c00431{height:28.635750pt;}
.hf_c00431{height:29.364844pt;}
.hc_c00431{height:32.123438pt;}
.h14_c00431{height:32.914370pt;}
.hd_c00431{height:34.602280pt;}
.h13_c00431{height:36.712500pt;}
.h3_c00431{height:38.692500pt;}
.h10_c00431{height:41.852250pt;}
.h9_c00431{height:44.055000pt;}
.he_c00431{height:44.220000pt;}
.h15_c00431{height:45.890625pt;}
.h17_c00431{height:51.397500pt;}
.ha_c00431{height:52.511250pt;}
.h5_c00431{height:60.457031pt;}
.hb_c00431{height:60.942934pt;}
.h8_c00431{height:62.778559pt;}
.h4_c00431{height:63.911719pt;}
.h7_c00431{height:64.602829pt;}
.h11_c00431{height:64.948125pt;}
.h6_c00431{height:65.984704pt;}
.h16_c00431{height:66.693000pt;}
.h12_c00431{height:69.439391pt;}
.h1_c00431{height:1013.333333pt;}
.h0_c00431{height:1122.666667pt;}
.w1_c00431{width:729.333333pt;}
.w0_c00431{width:793.333333pt;}
.x0_c00431{left:0.000000pt;}
.x1_c00431{left:32.000000pt;}
.x42_c00431{left:90.177053pt;}
.x13_c00431{left:91.893053pt;}
.x1f_c00431{left:93.054653pt;}
.x2d_c00431{left:100.926253pt;}
.x61_c00431{left:102.976653pt;}
.x14_c00431{left:111.838253pt;}
.x4b_c00431{left:120.083853pt;}
.x20_c00431{left:121.522653pt;}
.x15_c00431{left:130.186253pt;}
.x5e_c00431{left:131.127853pt;}
.x6_c00431{left:139.483453pt;}
.x43_c00431{left:141.538253pt;}
.x2e_c00431{left:149.057853pt;}
.x44_c00431{left:159.006253pt;}
.x7_c00431{left:168.871053pt;}
.x2f_c00431{left:177.248653pt;}
.x30_c00431{left:188.173853pt;}
.x72_c00431{left:196.881453pt;}
.x3a_c00431{left:198.069453pt;}
.x16_c00431{left:199.231053pt;}
.x45_c00431{left:206.420653pt;}
.x21_c00431{left:208.339053pt;}
.x31_c00431{left:217.948653pt;}
.x73_c00431{left:226.348253pt;}
.x62_c00431{left:227.263453pt;}
.x4c_c00431{left:228.398653pt;}
.x3b_c00431{left:237.141453pt;}
.x55_c00431{left:245.703853pt;}
.x4d_c00431{left:247.151453pt;}
.x63_c00431{left:256.602653pt;}
.x22_c00431{left:257.522253pt;}
.x67_c00431{left:266.788653pt;}
.x32_c00431{left:267.681853pt;}
.x6e_c00431{left:273.560253pt;}
.x58_c00431{left:275.135453pt;}
.x8_c00431{left:276.578653pt;}
.x3c_c00431{left:286.113453pt;}
.x23_c00431{left:287.055053pt;}
.x17_c00431{left:295.089453pt;}
.x3d_c00431{left:296.180653pt;}
.x46_c00431{left:305.271053pt;}
.x9_c00431{left:306.639453pt;}
.x33_c00431{left:311.255053pt;}
.x4e_c00431{left:315.575853pt;}
.x64_c00431{left:325.040253pt;}
.x24_c00431{left:326.003853pt;}
.x25_c00431{left:335.327453pt;}
.x34_c00431{left:344.884253pt;}
.x4f_c00431{left:345.931453pt;}
.x3e_c00431{left:355.417853pt;}
.x50_c00431{left:365.317853pt;}
.x26_c00431{left:373.985853pt;}
.xa_c00431{left:375.552253pt;}
.x5d_c00431{left:376.520253pt;}
.x18_c00431{left:384.207053pt;}
.x35_c00431{left:385.166253pt;}
.x47_c00431{left:394.432653pt;}
.x6a_c00431{left:402.484653pt;}
.x59_c00431{left:403.571453pt;}
.x27_c00431{left:404.759453pt;}
.x77_c00431{left:405.749453pt;}
.x48_c00431{left:412.569453pt;}
.x36_c00431{left:414.034653pt;}
.x3f_c00431{left:423.089853pt;}
.x19_c00431{left:424.167853pt;}
.xb_c00431{left:433.399053pt;}
.x71_c00431{left:435.528653pt;}
.x40_c00431{left:443.026253pt;}
.x51_c00431{left:452.715053pt;}
.x65_c00431{left:454.281453pt;}
.x41_c00431{left:462.861453pt;}
.x6b_c00431{left:471.868253pt;}
.x28_c00431{left:473.249853pt;}
.x52_c00431{left:482.529453pt;}
.xc_c00431{left:492.125853pt;}
.x29_c00431{left:493.881453pt;}
.x1a_c00431{left:501.445053pt;}
.x68_c00431{left:502.439453pt;}
.xd_c00431{left:507.019853pt;}
.xe_c00431{left:510.830253pt;}
.x6f_c00431{left:512.251453pt;}
.x5a_c00431{left:513.501053pt;}
.x6c_c00431{left:520.937053pt;}
.x1b_c00431{left:529.798653pt;}
.x53_c00431{left:531.114253pt;}
.x2a_c00431{left:533.019453pt;}
.x5b_c00431{left:538.088253pt;}
.x75_c00431{left:539.377453pt;}
.x37_c00431{left:541.410253pt;}
.x56_c00431{left:549.198253pt;}
.x1c_c00431{left:550.324653pt;}
.x66_c00431{left:560.444653pt;}
.x74_c00431{left:561.848253pt;}
.x49_c00431{left:568.883853pt;}
.x38_c00431{left:569.904653pt;}
.xf_c00431{left:571.396253pt;}
.x1d_c00431{left:572.531453pt;}
.x6d_c00431{left:579.584653pt;}
.x4a_c00431{left:580.667053pt;}
.x2b_c00431{left:583.100253pt;}
.x76_c00431{left:589.401053pt;}
.x5f_c00431{left:592.467853pt;}
.x10_c00431{left:599.406653pt;}
.x69_c00431{left:600.687053pt;}
.x70_c00431{left:603.885853pt;}
.x2c_c00431{left:609.720253pt;}
.x5c_c00431{left:611.330653pt;}
.x2_c00431{left:618.617053pt;}
.x54_c00431{left:619.646653pt;}
.x78_c00431{left:627.474253pt;}
.x4_c00431{left:629.001053pt;}
.x3_c00431{left:631.174653pt;}
.x11_c00431{left:639.156253pt;}
.x12_c00431{left:648.000253pt;}
.x5_c00431{left:650.459853pt;}
.x57_c00431{left:658.225853pt;}
.x1e_c00431{left:667.553853pt;}
.x39_c00431{left:668.926653pt;}
.x60_c00431{left:677.722253pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_37ade7262cb849d1954e0e57.woff2')format("woff");}.ff1_c00432{font-family:ff1_c00432;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00432;src:url('chunks/assets/font_97517d04f263250d7c114c81.woff2')format("woff");}.ff2_c00432{font-family:ff2_c00432;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00432;src:url('chunks/assets/font_2d4cf5c13f1fa250f323cc32.woff2')format("woff");}.ff3_c00432{font-family:ff3_c00432;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00432;src:url('chunks/assets/font_078424c62c8fb9b7672a70ed.woff2')format("woff");}.ff4_c00432{font-family:ff4_c00432;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m7b_c00432{transform:matrix(0.034723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.034723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.034723,0.000000,0.000000,0.250000,0,0);}
.m7c_c00432{transform:matrix(0.069445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.069445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.069445,0.000000,0.000000,0.250000,0,0);}
.m100_c00432{transform:matrix(0.072369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072369,0.000000,0.000000,0.250000,0,0);}
.m46_c00432{transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);}
.m57_c00432{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);}
.m101_c00432{transform:matrix(0.091074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091074,0.000000,0.000000,0.250000,0,0);}
.m79_c00432{transform:matrix(0.098958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098958,0.000000,0.000000,0.250000,0,0);}
.m67_c00432{transform:matrix(0.108597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108597,0.000000,0.000000,0.250000,0,0);}
.m5a_c00432{transform:matrix(0.110119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110119,0.000000,0.000000,0.250000,0,0);}
.mff_c00432{transform:matrix(0.115789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115789,0.000000,0.000000,0.250000,0,0);}
.m45_c00432{transform:matrix(0.121875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121875,0.000000,0.000000,0.250000,0,0);}
.m41_c00432{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00432{transform:matrix(0.127051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127051,0.000000,0.000000,0.250000,0,0);}
.m44_c00432{transform:matrix(0.131250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131250,0.000000,0.000000,0.250000,0,0);}
.m42_c00432{transform:matrix(0.133036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133036,0.000000,0.000000,0.250000,0,0);}
.m72_c00432{transform:matrix(0.136943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136943,0.000000,0.000000,0.250000,0,0);}
.mc2_c00432{transform:matrix(0.138889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138889,0.000000,0.000000,0.250000,0,0);}
.m28_c00432{transform:matrix(0.142649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142649,0.000000,0.000000,0.250000,0,0);}
.m30_c00432{transform:matrix(0.144787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144787,0.000000,0.000000,0.250000,0,0);}
.mba_c00432{transform:matrix(0.147636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147636,0.000000,0.000000,0.250000,0,0);}
.m31_c00432{transform:matrix(0.148648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148648,0.000000,0.000000,0.250000,0,0);}
.m58_c00432{transform:matrix(0.149306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149306,0.000000,0.000000,0.250000,0,0);}
.mc3_c00432{transform:matrix(0.154605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154605,0.000000,0.000000,0.250000,0,0);}
.mdc_c00432{transform:matrix(0.155214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155214,0.000000,0.000000,0.250000,0,0);}
.m43_c00432{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.me3_c00432{transform:matrix(0.165951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165951,0.000000,0.000000,0.250000,0,0);}
.mf6_c00432{transform:matrix(0.168572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168572,0.000000,0.000000,0.250000,0,0);}
.mf8_c00432{transform:matrix(0.169999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169999,0.000000,0.000000,0.250000,0,0);}
.m104_c00432{transform:matrix(0.171747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171747,0.000000,0.000000,0.250000,0,0);}
.m40_c00432{transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);}
.m4b_c00432{transform:matrix(0.173058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173058,0.000000,0.000000,0.250000,0,0);}
.m1b_c00432{transform:matrix(0.173130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173130,0.000000,0.000000,0.250000,0,0);}
.m7d_c00432{transform:matrix(0.173610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173610,0.000000,0.000000,0.250000,0,0);}
.m2f_c00432{transform:matrix(0.175676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175676,0.000000,0.000000,0.250000,0,0);}
.me2_c00432{transform:matrix(0.176336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176336,0.000000,0.000000,0.250000,0,0);}
.m32_c00432{transform:matrix(0.182433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182433,0.000000,0.000000,0.250000,0,0);}
.m59_c00432{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00432{transform:matrix(0.190972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190972,0.000000,0.000000,0.250000,0,0);}
.m56_c00432{transform:matrix(0.192709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192709,0.000000,0.000000,0.250000,0,0);}
.mc5_c00432{transform:matrix(0.194771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194771,0.000000,0.000000,0.250000,0,0);}
.m8c_c00432{transform:matrix(0.196010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196010,0.000000,0.000000,0.250000,0,0);}
.mea_c00432{transform:matrix(0.202708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202708,0.000000,0.000000,0.250000,0,0);}
.mfe_c00432{transform:matrix(0.207482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207482,0.000000,0.000000,0.250000,0,0);}
.m7a_c00432{transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);}
.me1_c00432{transform:matrix(0.210356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210356,0.000000,0.000000,0.250000,0,0);}
.m103_c00432{transform:matrix(0.224568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224568,0.000000,0.000000,0.250000,0,0);}
.md0_c00432{transform:matrix(0.230693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230693,0.000000,0.000000,0.250000,0,0);}
.m9f_c00432{transform:matrix(0.232865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232865,0.000000,0.000000,0.250000,0,0);}
.m61_c00432{transform:matrix(0.233723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233723,0.000000,0.000000,0.250000,0,0);}
.m1_c00432{transform:matrix(0.234388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234388,0.000000,0.000000,0.250000,0,0);}
.m68_c00432{transform:matrix(0.236994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236994,0.000000,0.000000,0.250000,0,0);}
.m5e_c00432{transform:matrix(0.237747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237747,0.000000,0.000000,0.250000,0,0);}
.m97_c00432{transform:matrix(0.239954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239954,0.000000,0.000000,0.250000,0,0);}
.mce_c00432{transform:matrix(0.242634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242634,0.000000,0.000000,0.250000,0,0);}
.maf_c00432{transform:matrix(0.244024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244024,0.000000,0.000000,0.250000,0,0);}
.mec_c00432{transform:matrix(0.247884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247884,0.000000,0.000000,0.250000,0,0);}
.meb_c00432{transform:matrix(0.248264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248264,0.000000,0.000000,0.250000,0,0);}
.mda_c00432{transform:matrix(0.249357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249357,0.000000,0.000000,0.250000,0,0);}
.mde_c00432{transform:matrix(0.249808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249808,0.000000,0.000000,0.250000,0,0);}
.m6_c00432{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00432{transform:matrix(0.251091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251091,0.000000,0.000000,0.250000,0,0);}
.m19_c00432{transform:matrix(0.251542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251542,0.000000,0.000000,0.250000,0,0);}
.med_c00432{transform:matrix(0.253916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253916,0.000000,0.000000,0.250000,0,0);}
.mf_c00432{transform:matrix(0.254014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254014,0.000000,0.000000,0.250000,0,0);}
.m6c_c00432{transform:matrix(0.254735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254735,0.000000,0.000000,0.250000,0,0);}
.m9a_c00432{transform:matrix(0.255699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255699,0.000000,0.000000,0.250000,0,0);}
.m1a_c00432{transform:matrix(0.257001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257001,0.000000,0.000000,0.250000,0,0);}
.md_c00432{transform:matrix(0.257012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257012,0.000000,0.000000,0.250000,0,0);}
.m5c_c00432{transform:matrix(0.258713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258713,0.000000,0.000000,0.250000,0,0);}
.me7_c00432{transform:matrix(0.260220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260220,0.000000,0.000000,0.250000,0,0);}
.mb_c00432{transform:matrix(0.264146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264146,0.000000,0.000000,0.250000,0,0);}
.mb7_c00432{transform:matrix(0.267174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267174,0.000000,0.000000,0.250000,0,0);}
.mbb_c00432{transform:matrix(0.267247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267247,0.000000,0.000000,0.250000,0,0);}
.m21_c00432{transform:matrix(0.267670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267670,0.000000,0.000000,0.250000,0,0);}
.m74_c00432{transform:matrix(0.268554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268554,0.000000,0.000000,0.250000,0,0);}
.m80_c00432{transform:matrix(0.268862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268862,0.000000,0.000000,0.250000,0,0);}
.mee_c00432{transform:matrix(0.269325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269325,0.000000,0.000000,0.250000,0,0);}
.mb9_c00432{transform:matrix(0.269468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269468,0.000000,0.000000,0.250000,0,0);}
.m36_c00432{transform:matrix(0.269719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269719,0.000000,0.000000,0.250000,0,0);}
.md6_c00432{transform:matrix(0.270724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270724,0.000000,0.000000,0.250000,0,0);}
.mae_c00432{transform:matrix(0.271744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271744,0.000000,0.000000,0.250000,0,0);}
.m88_c00432{transform:matrix(0.272130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272130,0.000000,0.000000,0.250000,0,0);}
.m3e_c00432{transform:matrix(0.272133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272133,0.000000,0.000000,0.250000,0,0);}
.m4e_c00432{transform:matrix(0.272839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272839,0.000000,0.000000,0.250000,0,0);}
.mc8_c00432{transform:matrix(0.273001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273001,0.000000,0.000000,0.250000,0,0);}
.m34_c00432{transform:matrix(0.273002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273002,0.000000,0.000000,0.250000,0,0);}
.m54_c00432{transform:matrix(0.273391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273391,0.000000,0.000000,0.250000,0,0);}
.md5_c00432{transform:matrix(0.274715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274715,0.000000,0.000000,0.250000,0,0);}
.m78_c00432{transform:matrix(0.275751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275751,0.000000,0.000000,0.250000,0,0);}
.m2b_c00432{transform:matrix(0.276689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276689,0.000000,0.000000,0.250000,0,0);}
.m12_c00432{transform:matrix(0.276845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276845,0.000000,0.000000,0.250000,0,0);}
.m2d_c00432{transform:matrix(0.277170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277170,0.000000,0.000000,0.250000,0,0);}
.mad_c00432{transform:matrix(0.277621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277621,0.000000,0.000000,0.250000,0,0);}
.m75_c00432{transform:matrix(0.278296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278296,0.000000,0.000000,0.250000,0,0);}
.m8e_c00432{transform:matrix(0.278381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278381,0.000000,0.000000,0.250000,0,0);}
.m69_c00432{transform:matrix(0.279144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279144,0.000000,0.000000,0.250000,0,0);}
.mb0_c00432{transform:matrix(0.279872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279872,0.000000,0.000000,0.250000,0,0);}
.me6_c00432{transform:matrix(0.280566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280566,0.000000,0.000000,0.250000,0,0);}
.m5d_c00432{transform:matrix(0.280623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280623,0.000000,0.000000,0.250000,0,0);}
.mc9_c00432{transform:matrix(0.280982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280982,0.000000,0.000000,0.250000,0,0);}
.mfc_c00432{transform:matrix(0.281306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281306,0.000000,0.000000,0.250000,0,0);}
.m53_c00432{transform:matrix(0.281580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281580,0.000000,0.000000,0.250000,0,0);}
.m83_c00432{transform:matrix(0.281639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281639,0.000000,0.000000,0.250000,0,0);}
.m9_c00432{transform:matrix(0.282209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282209,0.000000,0.000000,0.250000,0,0);}
.me_c00432{transform:matrix(0.282341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282341,0.000000,0.000000,0.250000,0,0);}
.m39_c00432{transform:matrix(0.282473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282473,0.000000,0.000000,0.250000,0,0);}
.m0_c00432{transform:matrix(0.283036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283036,0.000000,0.000000,0.250000,0,0);}
.m2a_c00432{transform:matrix(0.284110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284110,0.000000,0.000000,0.250000,0,0);}
.m6b_c00432{transform:matrix(0.284111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284111,0.000000,0.000000,0.250000,0,0);}
.mb8_c00432{transform:matrix(0.284353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284353,0.000000,0.000000,0.250000,0,0);}
.mf2_c00432{transform:matrix(0.284482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284482,0.000000,0.000000,0.250000,0,0);}
.m8a_c00432{transform:matrix(0.284781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284781,0.000000,0.000000,0.250000,0,0);}
.md3_c00432{transform:matrix(0.286623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286623,0.000000,0.000000,0.250000,0,0);}
.mb3_c00432{transform:matrix(0.286646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286646,0.000000,0.000000,0.250000,0,0);}
.mbe_c00432{transform:matrix(0.286688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286688,0.000000,0.000000,0.250000,0,0);}
.m17_c00432{transform:matrix(0.287249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287249,0.000000,0.000000,0.250000,0,0);}
.m4a_c00432{transform:matrix(0.288215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288215,0.000000,0.000000,0.250000,0,0);}
.m85_c00432{transform:matrix(0.288693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288693,0.000000,0.000000,0.250000,0,0);}
.m7_c00432{transform:matrix(0.289094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289094,0.000000,0.000000,0.250000,0,0);}
.m27_c00432{transform:matrix(0.289368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289368,0.000000,0.000000,0.250000,0,0);}
.m66_c00432{transform:matrix(0.289661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289661,0.000000,0.000000,0.250000,0,0);}
.m1f_c00432{transform:matrix(0.289699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289699,0.000000,0.000000,0.250000,0,0);}
.m11_c00432{transform:matrix(0.290810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290810,0.000000,0.000000,0.250000,0,0);}
.mc7_c00432{transform:matrix(0.291582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291582,0.000000,0.000000,0.250000,0,0);}
.m33_c00432{transform:matrix(0.291656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291656,0.000000,0.000000,0.250000,0,0);}
.m99_c00432{transform:matrix(0.292103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292103,0.000000,0.000000,0.250000,0,0);}
.ma1_c00432{transform:matrix(0.292832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292832,0.000000,0.000000,0.250000,0,0);}
.m64_c00432{transform:matrix(0.292968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292968,0.000000,0.000000,0.250000,0,0);}
.md4_c00432{transform:matrix(0.292980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292980,0.000000,0.000000,0.250000,0,0);}
.mc4_c00432{transform:matrix(0.293065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293065,0.000000,0.000000,0.250000,0,0);}
.m95_c00432{transform:matrix(0.293459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293459,0.000000,0.000000,0.250000,0,0);}
.m23_c00432{transform:matrix(0.293657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293657,0.000000,0.000000,0.250000,0,0);}
.mf5_c00432{transform:matrix(0.293939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293939,0.000000,0.000000,0.250000,0,0);}
.m9d_c00432{transform:matrix(0.294228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294228,0.000000,0.000000,0.250000,0,0);}
.m96_c00432{transform:matrix(0.294353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294353,0.000000,0.000000,0.250000,0,0);}
.m91_c00432{transform:matrix(0.294711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294711,0.000000,0.000000,0.250000,0,0);}
.m63_c00432{transform:matrix(0.294864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294864,0.000000,0.000000,0.250000,0,0);}
.m4d_c00432{transform:matrix(0.295217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295217,0.000000,0.000000,0.250000,0,0);}
.mcb_c00432{transform:matrix(0.295333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295333,0.000000,0.000000,0.250000,0,0);}
.mfb_c00432{transform:matrix(0.296210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296210,0.000000,0.000000,0.250000,0,0);}
.m62_c00432{transform:matrix(0.296612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296612,0.000000,0.000000,0.250000,0,0);}
.me5_c00432{transform:matrix(0.296852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296852,0.000000,0.000000,0.250000,0,0);}
.me4_c00432{transform:matrix(0.297573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297573,0.000000,0.000000,0.250000,0,0);}
.m1d_c00432{transform:matrix(0.297797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297797,0.000000,0.000000,0.250000,0,0);}
.m2e_c00432{transform:matrix(0.298347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298347,0.000000,0.000000,0.250000,0,0);}
.m22_c00432{transform:matrix(0.298386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298386,0.000000,0.000000,0.250000,0,0);}
.m5b_c00432{transform:matrix(0.298463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298463,0.000000,0.000000,0.250000,0,0);}
.mdf_c00432{transform:matrix(0.298959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298959,0.000000,0.000000,0.250000,0,0);}
.mc0_c00432{transform:matrix(0.299028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299028,0.000000,0.000000,0.250000,0,0);}
.m50_c00432{transform:matrix(0.299064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299064,0.000000,0.000000,0.250000,0,0);}
.m84_c00432{transform:matrix(0.299527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299527,0.000000,0.000000,0.250000,0,0);}
.m48_c00432{transform:matrix(0.300037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300037,0.000000,0.000000,0.250000,0,0);}
.m51_c00432{transform:matrix(0.300046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300046,0.000000,0.000000,0.250000,0,0);}
.ma3_c00432{transform:matrix(0.300639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300639,0.000000,0.000000,0.250000,0,0);}
.mc_c00432{transform:matrix(0.301120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301120,0.000000,0.000000,0.250000,0,0);}
.m26_c00432{transform:matrix(0.301146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301146,0.000000,0.000000,0.250000,0,0);}
.mac_c00432{transform:matrix(0.301398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301398,0.000000,0.000000,0.250000,0,0);}
.m37_c00432{transform:matrix(0.301473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301473,0.000000,0.000000,0.250000,0,0);}
.ma8_c00432{transform:matrix(0.303413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303413,0.000000,0.000000,0.250000,0,0);}
.m102_c00432{transform:matrix(0.303775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303775,0.000000,0.000000,0.250000,0,0);}
.m5_c00432{transform:matrix(0.304095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304095,0.000000,0.000000,0.250000,0,0);}
.m6a_c00432{transform:matrix(0.304355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304355,0.000000,0.000000,0.250000,0,0);}
.ma5_c00432{transform:matrix(0.305180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305180,0.000000,0.000000,0.250000,0,0);}
.mf1_c00432{transform:matrix(0.305219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305219,0.000000,0.000000,0.250000,0,0);}
.m94_c00432{transform:matrix(0.305291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305291,0.000000,0.000000,0.250000,0,0);}
.m60_c00432{transform:matrix(0.306054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306054,0.000000,0.000000,0.250000,0,0);}
.m76_c00432{transform:matrix(0.306894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306894,0.000000,0.000000,0.250000,0,0);}
.mf7_c00432{transform:matrix(0.307326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307326,0.000000,0.000000,0.250000,0,0);}
.mcd_c00432{transform:matrix(0.307571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307571,0.000000,0.000000,0.250000,0,0);}
.mb5_c00432{transform:matrix(0.308144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308144,0.000000,0.000000,0.250000,0,0);}
.m16_c00432{transform:matrix(0.308268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308268,0.000000,0.000000,0.250000,0,0);}
.m3d_c00432{transform:matrix(0.309526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309526,0.000000,0.000000,0.250000,0,0);}
.m5f_c00432{transform:matrix(0.311301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311301,0.000000,0.000000,0.250000,0,0);}
.ma2_c00432{transform:matrix(0.311319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311319,0.000000,0.000000,0.250000,0,0);}
.mc6_c00432{transform:matrix(0.311357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311357,0.000000,0.000000,0.250000,0,0);}
.m87_c00432{transform:matrix(0.311918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311918,0.000000,0.000000,0.250000,0,0);}
.m9c_c00432{transform:matrix(0.312543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312543,0.000000,0.000000,0.250000,0,0);}
.m93_c00432{transform:matrix(0.313166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313166,0.000000,0.000000,0.250000,0,0);}
.m52_c00432{transform:matrix(0.313764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313764,0.000000,0.000000,0.250000,0,0);}
.m25_c00432{transform:matrix(0.314857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314857,0.000000,0.000000,0.250000,0,0);}
.mb4_c00432{transform:matrix(0.314983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314983,0.000000,0.000000,0.250000,0,0);}
.m77_c00432{transform:matrix(0.315496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315496,0.000000,0.000000,0.250000,0,0);}
.m86_c00432{transform:matrix(0.315729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315729,0.000000,0.000000,0.250000,0,0);}
.mb6_c00432{transform:matrix(0.317196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317196,0.000000,0.000000,0.250000,0,0);}
.m3_c00432{transform:matrix(0.317757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317757,0.000000,0.000000,0.250000,0,0);}
.m70_c00432{transform:matrix(0.318037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318037,0.000000,0.000000,0.250000,0,0);}
.m29_c00432{transform:matrix(0.319746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319746,0.000000,0.000000,0.250000,0,0);}
.md1_c00432{transform:matrix(0.320213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320213,0.000000,0.000000,0.250000,0,0);}
.mbf_c00432{transform:matrix(0.320582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320582,0.000000,0.000000,0.250000,0,0);}
.m90_c00432{transform:matrix(0.321738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321738,0.000000,0.000000,0.250000,0,0);}
.mb1_c00432{transform:matrix(0.322139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322139,0.000000,0.000000,0.250000,0,0);}
.maa_c00432{transform:matrix(0.322156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322156,0.000000,0.000000,0.250000,0,0);}
.m81_c00432{transform:matrix(0.322580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322580,0.000000,0.000000,0.250000,0,0);}
.mf9_c00432{transform:matrix(0.323586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323586,0.000000,0.000000,0.250000,0,0);}
.md2_c00432{transform:matrix(0.324368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324368,0.000000,0.000000,0.250000,0,0);}
.ma_c00432{transform:matrix(0.325471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325471,0.000000,0.000000,0.250000,0,0);}
.m89_c00432{transform:matrix(0.326270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326270,0.000000,0.000000,0.250000,0,0);}
.ma7_c00432{transform:matrix(0.326632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326632,0.000000,0.000000,0.250000,0,0);}
.m9e_c00432{transform:matrix(0.326787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326787,0.000000,0.000000,0.250000,0,0);}
.me9_c00432{transform:matrix(0.327113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327113,0.000000,0.000000,0.250000,0,0);}
.mc1_c00432{transform:matrix(0.327194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327194,0.000000,0.000000,0.250000,0,0);}
.mf4_c00432{transform:matrix(0.327943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327943,0.000000,0.000000,0.250000,0,0);}
.m105_c00432{transform:matrix(0.329393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329393,0.000000,0.000000,0.250000,0,0);}
.me8_c00432{transform:matrix(0.330274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330274,0.000000,0.000000,0.250000,0,0);}
.md9_c00432{transform:matrix(0.330739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330739,0.000000,0.000000,0.250000,0,0);}
.ma4_c00432{transform:matrix(0.330752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330752,0.000000,0.000000,0.250000,0,0);}
.m3b_c00432{transform:matrix(0.331467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331467,0.000000,0.000000,0.250000,0,0);}
.mcf_c00432{transform:matrix(0.332184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332184,0.000000,0.000000,0.250000,0,0);}
.m4f_c00432{transform:matrix(0.332639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332639,0.000000,0.000000,0.250000,0,0);}
.mcc_c00432{transform:matrix(0.332681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332681,0.000000,0.000000,0.250000,0,0);}
.ma6_c00432{transform:matrix(0.332961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332961,0.000000,0.000000,0.250000,0,0);}
.m55_c00432{transform:matrix(0.333060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333060,0.000000,0.000000,0.250000,0,0);}
.m49_c00432{transform:matrix(0.333595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333595,0.000000,0.000000,0.250000,0,0);}
.m10_c00432{transform:matrix(0.336051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336051,0.000000,0.000000,0.250000,0,0);}
.m15_c00432{transform:matrix(0.337226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337226,0.000000,0.000000,0.250000,0,0);}
.m2c_c00432{transform:matrix(0.338361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338361,0.000000,0.000000,0.250000,0,0);}
.m4c_c00432{transform:matrix(0.338579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338579,0.000000,0.000000,0.250000,0,0);}
.m35_c00432{transform:matrix(0.340079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340079,0.000000,0.000000,0.250000,0,0);}
.m6e_c00432{transform:matrix(0.340663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340663,0.000000,0.000000,0.250000,0,0);}
.m6f_c00432{transform:matrix(0.342464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342464,0.000000,0.000000,0.250000,0,0);}
.m1e_c00432{transform:matrix(0.343829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343829,0.000000,0.000000,0.250000,0,0);}
.m1c_c00432{transform:matrix(0.344461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344461,0.000000,0.000000,0.250000,0,0);}
.mbd_c00432{transform:matrix(0.345054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345054,0.000000,0.000000,0.250000,0,0);}
.m6d_c00432{transform:matrix(0.346280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346280,0.000000,0.000000,0.250000,0,0);}
.m20_c00432{transform:matrix(0.346479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346479,0.000000,0.000000,0.250000,0,0);}
.mdd_c00432{transform:matrix(0.348214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348214,0.000000,0.000000,0.250000,0,0);}
.m3c_c00432{transform:matrix(0.349513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349513,0.000000,0.000000,0.250000,0,0);}
.m3f_c00432{transform:matrix(0.349999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349999,0.000000,0.000000,0.250000,0,0);}
.mb2_c00432{transform:matrix(0.350213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350213,0.000000,0.000000,0.250000,0,0);}
.m3a_c00432{transform:matrix(0.350437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350437,0.000000,0.000000,0.250000,0,0);}
.m18_c00432{transform:matrix(0.351246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351246,0.000000,0.000000,0.250000,0,0);}
.m73_c00432{transform:matrix(0.351385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351385,0.000000,0.000000,0.250000,0,0);}
.mca_c00432{transform:matrix(0.353016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353016,0.000000,0.000000,0.250000,0,0);}
.m98_c00432{transform:matrix(0.353158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353158,0.000000,0.000000,0.250000,0,0);}
.m7f_c00432{transform:matrix(0.353242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353242,0.000000,0.000000,0.250000,0,0);}
.m71_c00432{transform:matrix(0.353985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353985,0.000000,0.000000,0.250000,0,0);}
.m9b_c00432{transform:matrix(0.355433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355433,0.000000,0.000000,0.250000,0,0);}
.mf3_c00432{transform:matrix(0.361111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361111,0.000000,0.000000,0.250000,0,0);}
.m14_c00432{transform:matrix(0.362502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362502,0.000000,0.000000,0.250000,0,0);}
.m8d_c00432{transform:matrix(0.363643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363643,0.000000,0.000000,0.250000,0,0);}
.md7_c00432{transform:matrix(0.365088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365088,0.000000,0.000000,0.250000,0,0);}
.mab_c00432{transform:matrix(0.365516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365516,0.000000,0.000000,0.250000,0,0);}
.mf0_c00432{transform:matrix(0.366035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366035,0.000000,0.000000,0.250000,0,0);}
.m4_c00432{transform:matrix(0.366239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366239,0.000000,0.000000,0.250000,0,0);}
.m92_c00432{transform:matrix(0.366391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366391,0.000000,0.000000,0.250000,0,0);}
.mfd_c00432{transform:matrix(0.368446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368446,0.000000,0.000000,0.250000,0,0);}
.me0_c00432{transform:matrix(0.370569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370569,0.000000,0.000000,0.250000,0,0);}
.m8b_c00432{transform:matrix(0.371062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371062,0.000000,0.000000,0.250000,0,0);}
.m8f_c00432{transform:matrix(0.375785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375785,0.000000,0.000000,0.250000,0,0);}
.m47_c00432{transform:matrix(0.376994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376994,0.000000,0.000000,0.250000,0,0);}
.mbc_c00432{transform:matrix(0.380853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380853,0.000000,0.000000,0.250000,0,0);}
.m2_c00432{transform:matrix(0.382291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382291,0.000000,0.000000,0.250000,0,0);}
.m65_c00432{transform:matrix(0.384954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384954,0.000000,0.000000,0.250000,0,0);}
.ma9_c00432{transform:matrix(0.389704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389704,0.000000,0.000000,0.250000,0,0);}
.m13_c00432{transform:matrix(0.389806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389806,0.000000,0.000000,0.250000,0,0);}
.md8_c00432{transform:matrix(0.399982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399982,0.000000,0.000000,0.250000,0,0);}
.m38_c00432{transform:matrix(0.403248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403248,0.000000,0.000000,0.250000,0,0);}
.mef_c00432{transform:matrix(0.404770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404770,0.000000,0.000000,0.250000,0,0);}
.mdb_c00432{transform:matrix(0.419678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419678,0.000000,0.000000,0.250000,0,0);}
.m24_c00432{transform:matrix(0.437249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437249,0.000000,0.000000,0.250000,0,0);}
.m82_c00432{transform:matrix(0.440009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440009,0.000000,0.000000,0.250000,0,0);}
.ma0_c00432{transform:matrix(0.471779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471779,0.000000,0.000000,0.250000,0,0);}
.v0_c00432{vertical-align:0.000000px;}
.v2_c00432{vertical-align:4.287294px;}
.v1_c00432{vertical-align:29.937600px;}
.ls9_c00432{letter-spacing:-2.924467px;}
.ls35_c00432{letter-spacing:-2.605680px;}
.lsd_c00432{letter-spacing:-2.543317px;}
.ls1b_c00432{letter-spacing:-2.342340px;}
.ls24_c00432{letter-spacing:-2.339852px;}
.ls33_c00432{letter-spacing:-2.210670px;}
.ls2b_c00432{letter-spacing:-2.189880px;}
.ls37_c00432{letter-spacing:-2.120580px;}
.ls2c_c00432{letter-spacing:-2.085930px;}
.ls28_c00432{letter-spacing:-1.743989px;}
.ls23_c00432{letter-spacing:-1.358858px;}
.ls27_c00432{letter-spacing:-1.171170px;}
.ls17_c00432{letter-spacing:-0.997564px;}
.ls31_c00432{letter-spacing:-0.741195px;}
.lsf_c00432{letter-spacing:-0.479597px;}
.ls14_c00432{letter-spacing:-0.178576px;}
.ls20_c00432{letter-spacing:-0.014533px;}
.lsb_c00432{letter-spacing:0.000000px;}
.ls16_c00432{letter-spacing:0.392397px;}
.ls7_c00432{letter-spacing:0.886528px;}
.ls4_c00432{letter-spacing:0.959194px;}
.ls34_c00432{letter-spacing:1.446057px;}
.ls6_c00432{letter-spacing:1.482390px;}
.ls0_c00432{letter-spacing:1.627723px;}
.ls2d_c00432{letter-spacing:1.903854px;}
.ls19_c00432{letter-spacing:1.918388px;}
.ls1_c00432{letter-spacing:2.209052px;}
.ls2f_c00432{letter-spacing:2.326500px;}
.ls30_c00432{letter-spacing:2.356200px;}
.lsc_c00432{letter-spacing:2.425500px;}
.ls12_c00432{letter-spacing:2.455200px;}
.ls1d_c00432{letter-spacing:2.465100px;}
.ls2_c00432{letter-spacing:2.536050px;}
.ls1e_c00432{letter-spacing:2.950248px;}
.ls15_c00432{letter-spacing:3.078900px;}
.ls26_c00432{letter-spacing:3.128400px;}
.ls22_c00432{letter-spacing:3.177900px;}
.ls11_c00432{letter-spacing:3.286810px;}
.ls1f_c00432{letter-spacing:3.326400px;}
.ls1a_c00432{letter-spacing:3.346200px;}
.ls2a_c00432{letter-spacing:3.445200px;}
.lse_c00432{letter-spacing:3.455110px;}
.ls25_c00432{letter-spacing:3.544200px;}
.lsa_c00432{letter-spacing:3.633310px;}
.ls1c_c00432{letter-spacing:3.653110px;}
.ls2e_c00432{letter-spacing:3.663000px;}
.ls36_c00432{letter-spacing:3.722400px;}
.ls8_c00432{letter-spacing:4.177810px;}
.ls3_c00432{letter-spacing:4.724181px;}
.ls5_c00432{letter-spacing:10.609346px;}
.ls21_c00432{letter-spacing:48.470598px;}
.ls32_c00432{letter-spacing:49.896198px;}
.ls18_c00432{letter-spacing:51.321798px;}
.ls10_c00432{letter-spacing:52.747398px;}
.ls29_c00432{letter-spacing:54.172998px;}
.ls13_c00432{letter-spacing:57.024198px;}
.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;}
}
.ws3_c00432{word-spacing:-20.702600px;}
.ws8_c00432{word-spacing:-19.125743px;}
.ws1_c00432{word-spacing:-18.166550px;}
.ws4_c00432{word-spacing:-18.152016px;}
.ws9_c00432{word-spacing:-16.422561px;}
.ws7_c00432{word-spacing:-15.826698px;}
.ws6_c00432{word-spacing:-2.754102px;}
.wsa_c00432{word-spacing:0.000000px;}
.ws2_c00432{word-spacing:2.450210px;}
.ws5_c00432{word-spacing:2.615861px;}
.ws0_c00432{word-spacing:7.120767px;}
._0_c00432{margin-left:-7.993309px;}
._1b_c00432{margin-left:-5.741362px;}
._3_c00432{margin-left:-4.359916px;}
._9_c00432{margin-left:-2.834106px;}
._12_c00432{width:3.167136px;}
._4_c00432{width:7.629842px;}
._2_c00432{width:9.011288px;}
._1d_c00432{width:10.031472px;}
._1_c00432{width:11.408661px;}
._1a_c00432{width:13.515975px;}
._1c_c00432{width:14.823985px;}
._18_c00432{width:15.847161px;}
._19_c00432{width:20.055926px;}
._c_c00432{width:21.738420px;}
._13_c00432{width:23.616582px;}
._8_c00432{width:25.287317px;}
._d_c00432{width:26.490673px;}
._e_c00432{width:27.685097px;}
._7_c00432{width:29.720512px;}
._15_c00432{width:32.895407px;}
._b_c00432{width:34.570800px;}
._11_c00432{width:36.728951px;}
._a_c00432{width:37.739059px;}
._16_c00432{width:39.422059px;}
._5_c00432{width:43.454961px;}
._14_c00432{width:46.796987px;}
._17_c00432{width:49.144287px;}
._6_c00432{width:53.554988px;}
._10_c00432{width:68.923008px;}
._f_c00432{width:140.174260px;}
.fc0_c00432{color:transparent;}
.fs25_c00432{font-size:22.176000px;}
.fsf_c00432{font-size:33.264000px;}
.fs18_c00432{font-size:33.462000px;}
.fs19_c00432{font-size:38.808000px;}
.fs24_c00432{font-size:44.946198px;}
.fs20_c00432{font-size:46.332000px;}
.fs1d_c00432{font-size:46.530000px;}
.fs1e_c00432{font-size:47.124000px;}
.fs14_c00432{font-size:48.470598px;}
.fs2_c00432{font-size:48.510000px;}
.fs6_c00432{font-size:49.104000px;}
.fs10_c00432{font-size:49.302000px;}
.fs1f_c00432{font-size:49.896198px;}
.fsb_c00432{font-size:51.321798px;}
.fs4_c00432{font-size:52.747398px;}
.fs1a_c00432{font-size:54.172998px;}
.fs7_c00432{font-size:57.024198px;}
.fs1c_c00432{font-size:59.598000px;}
.fs23_c00432{font-size:60.588000px;}
.fs8_c00432{font-size:61.578000px;}
.fs17_c00432{font-size:62.568000px;}
.fs21_c00432{font-size:63.162000px;}
.fs15_c00432{font-size:63.558000px;}
.fs13_c00432{font-size:64.548000px;}
.fs5_c00432{font-size:65.736198px;}
.fs12_c00432{font-size:66.528000px;}
.fsd_c00432{font-size:66.924000px;}
.fs1b_c00432{font-size:68.904000px;}
.fs3_c00432{font-size:69.102198px;}
.fsa_c00432{font-size:70.884000px;}
.fs1_c00432{font-size:72.666198px;}
.fs11_c00432{font-size:72.864000px;}
.fse_c00432{font-size:73.062198px;}
.fsc_c00432{font-size:73.260000px;}
.fs22_c00432{font-size:74.448000px;}
.fs9_c00432{font-size:76.032198px;}
.fs16_c00432{font-size:76.824000px;}
.fs0_c00432{font-size:83.556198px;}
.y0_c00432{bottom:0.000000px;}
.y1_c00432{bottom:76.500000px;}
.y20_c00432{bottom:128.923785px;}
.y1e_c00432{bottom:159.935535px;}
.y1f_c00432{bottom:161.361135px;}
.y1d_c00432{bottom:192.006585px;}
.y1c_c00432{bottom:223.374735px;}
.y1b_c00432{bottom:224.443935px;}
.y1a_c00432{bottom:256.514985px;}
.y19_c00432{bottom:288.947385px;}
.y21_c00432{bottom:294.654735px;}
.y18_c00432{bottom:321.023385px;}
.y16_c00432{bottom:345.258585px;}
.y17_c00432{bottom:353.460735px;}
.y14_c00432{bottom:353.817135px;}
.y15_c00432{bottom:354.168585px;}
.y13_c00432{bottom:389.100735px;}
.y12_c00432{bottom:452.896335px;}
.y11_c00432{bottom:486.754335px;}
.y10_c00432{bottom:519.181785px;}
.yf_c00432{bottom:551.619135px;}
.ye_c00432{bottom:586.541385px;}
.yd_c00432{bottom:620.399385px;}
.yc_c00432{bottom:652.831785px;}
.yb_c00432{bottom:687.402585px;}
.ya_c00432{bottom:687.408525px;}
.y9_c00432{bottom:719.127135px;}
.y8_c00432{bottom:753.341535px;}
.y7_c00432{bottom:787.907385px;}
.y6_c00432{bottom:821.052585px;}
.y5_c00432{bottom:856.336185px;}
.y4_c00432{bottom:888.417135px;}
.y3_c00432{bottom:923.339385px;}
.y2_c00432{bottom:1076.234985px;}
.h14_c00432{height:32.281418px;}
.h21_c00432{height:33.230868px;}
.hc_c00432{height:34.180317px;}
.h18_c00432{height:34.899820px;}
.h6_c00432{height:35.129767px;}
.h1a_c00432{height:36.079217px;}
.h9_c00432{height:37.978116px;}
.h19_c00432{height:40.475531px;}
.h26_c00432{height:44.112235px;}
.h1e_c00432{height:45.666650px;}
.h8_c00432{height:48.192891px;}
.h22_c00432{height:48.322828px;}
.h11_c00432{height:48.387217px;}
.h20_c00432{height:49.148859px;}
.h4_c00432{height:50.594414px;}
.h1f_c00432{height:51.213938px;}
.ha_c00432{height:60.435439px;}
.h23_c00432{height:61.990049px;}
.h1c_c00432{height:62.158852px;}
.h25_c00432{height:63.191391px;}
.h7_c00432{height:64.516483px;}
.h17_c00432{height:65.256469px;}
.h13_c00432{height:65.293594px;}
.hf_c00432{height:65.682246px;}
.h15_c00432{height:66.289008px;}
.h5_c00432{height:67.820028px;}
.he_c00432{height:69.568770px;}
.h3_c00432{height:71.317899px;}
.h12_c00432{height:71.512031px;}
.h10_c00432{height:71.706552px;}
.h1b_c00432{height:71.864719px;}
.hd_c00432{height:71.900684px;}
.h24_c00432{height:73.066641px;}
.hb_c00432{height:74.621444px;}
.h16_c00432{height:75.398555px;}
.h1d_c00432{height:75.605193px;}
.h2_c00432{height:82.005839px;}
.h1_c00432{height:1110.000000px;}
.h0_c00432{height:1263.000000px;}
.w1_c00432{width:775.500000px;}
.w0_c00432{width:892.500000px;}
.x0_c00432{left:0.000000px;}
.x1_c00432{left:58.500000px;}
.x46_c00432{left:81.929085px;}
.x4_c00432{left:83.760585px;}
.x54_c00432{left:93.135885px;}
.x4d_c00432{left:103.367535px;}
.x39_c00432{left:104.916885px;}
.x47_c00432{left:107.466135px;}
.x5b_c00432{left:114.896085px;}
.x91_c00432{left:116.950335px;}
.x55_c00432{left:125.588085px;}
.x3a_c00432{left:126.652335px;}
.x5_c00432{left:127.870035px;}
.x72_c00432{left:136.413735px;}
.x21_c00432{left:137.497785px;}
.x7d_c00432{left:145.531635px;}
.x6c_c00432{left:147.140385px;}
.x6f_c00432{left:148.382835px;}
.x66_c00432{left:149.476785px;}
.x56_c00432{left:157.827435px;}
.x30_c00432{left:159.451035px;}
.x3b_c00432{left:169.271835px;}
.x4e_c00432{left:170.816235px;}
.x62_c00432{left:180.478635px;}
.x6_c00432{left:182.904135px;}
.x57_c00432{left:190.967685px;}
.x15_c00432{left:193.120935px;}
.x3c_c00432{left:203.407035px;}
.x7_c00432{left:205.040535px;}
.x85_c00432{left:212.356635px;}
.x31_c00432{left:213.777285px;}
.x80_c00432{left:225.053385px;}
.x48_c00432{left:226.459185px;}
.x8_c00432{left:227.884785px;}
.x81_c00432{left:234.493035px;}
.x77_c00432{left:235.888935px;}
.x22_c00432{left:237.141285px;}
.x86_c00432{left:247.496685px;}
.x9_c00432{left:248.546085px;}
.x58_c00432{left:250.600335px;}
.x16_c00432{left:258.332235px;}
.x92_c00432{left:259.995435px;}
.x3d_c00432{left:269.915235px;}
.x23_c00432{left:271.642785px;}
.x17_c00432{left:281.107185px;}
.xa_c00432{left:283.389135px;}
.x3e_c00432{left:291.309135px;}
.x24_c00432{left:293.091135px;}
.x4f_c00432{left:302.238735px;}
.x32_c00432{left:303.773235px;}
.x5c_c00432{left:306.292785px;}
.x7e_c00432{left:312.930735px;}
.x49_c00432{left:314.138535px;}
.x73_c00432{left:315.821535px;}
.x18_c00432{left:324.998835px;}
.x5d_c00432{left:326.810535px;}
.x78_c00432{left:334.963185px;}
.x33_c00432{left:336.522435px;}
.x74_c00432{left:338.383635px;}
.x25_c00432{left:347.293635px;}
.x70_c00432{left:357.406485px;}
.xb_c00432{left:359.366685px;}
.x82_c00432{left:360.371535px;}
.x6a_c00432{left:368.162835px;}
.x3f_c00432{left:369.415185px;}
.x87_c00432{left:379.478535px;}
.x26_c00432{left:380.760585px;}
.x5e_c00432{left:383.324685px;}
.x89_c00432{left:390.804135px;}
.xc_c00432{left:391.818885px;}
.x6d_c00432{left:401.590185px;}
.x19_c00432{left:402.892035px;}
.x5f_c00432{left:412.722735px;}
.x4a_c00432{left:413.920635px;}
.x93_c00432{left:415.549185px;}
.x1a_c00432{left:424.033485px;}
.x8d_c00432{left:428.518185px;}
.xd_c00432{left:435.319485px;}
.x27_c00432{left:446.021385px;}
.x67_c00432{left:456.475785px;}
.xe_c00432{left:458.119185px;}
.x40_c00432{left:467.479635px;}
.xf_c00432{left:479.384385px;}
.x28_c00432{left:481.458435px;}
.x60_c00432{left:488.908185px;}
.x59_c00432{left:490.155585px;}
.x63_c00432{left:500.530785px;}
.x34_c00432{left:502.283085px;}
.x8a_c00432{left:507.366735px;}
.x1b_c00432{left:512.975085px;}
.x68_c00432{left:514.405635px;}
.x29_c00432{left:523.261185px;}
.x69_c00432{left:525.300585px;}
.x94_c00432{left:526.448985px;}
.x35_c00432{left:534.428385px;}
.x1c_c00432{left:543.269085px;}
.x8e_c00432{left:544.363035px;}
.x41_c00432{left:545.452035px;}
.x6e_c00432{left:547.481535px;}
.x79_c00432{left:554.495685px;}
.x2a_c00432{left:556.351935px;}
.x42_c00432{left:559.534785px;}
.x64_c00432{left:566.826135px;}
.x10_c00432{left:568.236885px;}
.x75_c00432{left:577.552785px;}
.x1d_c00432{left:578.621985px;}
.x50_c00432{left:581.987985px;}
.x7a_c00432{left:587.660685px;}
.x2b_c00432{left:589.254585px;}
.x84_c00432{left:590.284185px;}
.x43_c00432{left:599.100135px;}
.x11_c00432{left:600.258435px;}
.x4b_c00432{left:611.608785px;}
.x95_c00432{left:617.152785px;}
.x1e_c00432{left:621.850335px;}
.x6b_c00432{left:623.355135px;}
.x88_c00432{left:624.924285px;}
.x12_c00432{left:633.492735px;}
.x7b_c00432{left:634.883685px;}
.x51_c00432{left:636.111285px;}
.x36_c00432{left:645.075735px;}
.x52_c00432{left:646.501335px;}
.x7f_c00432{left:649.352535px;}
.x7c_c00432{left:655.193535px;}
.x13_c00432{left:656.629035px;}
.x5a_c00432{left:666.425085px;}
.x53_c00432{left:667.880385px;}
.x76_c00432{left:672.221535px;}
.x2c_c00432{left:676.785435px;}
.x2_c00432{left:678.641685px;}
.x8b_c00432{left:686.507235px;}
.x61_c00432{left:687.556635px;}
.x4c_c00432{left:689.447535px;}
.x14_c00432{left:696.011235px;}
.x71_c00432{left:698.704035px;}
.x8f_c00432{left:700.055385px;}
.x3_c00432{left:701.857185px;}
.x83_c00432{left:707.950635px;}
.x37_c00432{left:711.232485px;}
.x8c_c00432{left:712.920435px;}
.x65_c00432{left:714.930135px;}
.x90_c00432{left:719.098035px;}
.x2d_c00432{left:720.226635px;}
.x1f_c00432{left:721.469085px;}
.x44_c00432{left:726.691335px;}
.x20_c00432{left:731.156235px;}
.x2e_c00432{left:733.339185px;}
.x2f_c00432{left:742.862985px;}
.x45_c00432{left:745.219185px;}
.x38_c00432{left:753.980685px;}
.x96_c00432{left:766.519035px;}
@media print{
.v0_c00432{vertical-align:0.000000pt;}
.v2_c00432{vertical-align:3.810928pt;}
.v1_c00432{vertical-align:26.611200pt;}
.ls9_c00432{letter-spacing:-2.599526pt;}
.ls35_c00432{letter-spacing:-2.316160pt;}
.lsd_c00432{letter-spacing:-2.260726pt;}
.ls1b_c00432{letter-spacing:-2.082080pt;}
.ls24_c00432{letter-spacing:-2.079868pt;}
.ls33_c00432{letter-spacing:-1.965040pt;}
.ls2b_c00432{letter-spacing:-1.946560pt;}
.ls37_c00432{letter-spacing:-1.884960pt;}
.ls2c_c00432{letter-spacing:-1.854160pt;}
.ls28_c00432{letter-spacing:-1.550212pt;}
.ls23_c00432{letter-spacing:-1.207874pt;}
.ls27_c00432{letter-spacing:-1.041040pt;}
.ls17_c00432{letter-spacing:-0.886723pt;}
.ls31_c00432{letter-spacing:-0.658840pt;}
.lsf_c00432{letter-spacing:-0.426308pt;}
.ls14_c00432{letter-spacing:-0.158734pt;}
.ls20_c00432{letter-spacing:-0.012918pt;}
.lsb_c00432{letter-spacing:0.000000pt;}
.ls16_c00432{letter-spacing:0.348798pt;}
.ls7_c00432{letter-spacing:0.788025pt;}
.ls4_c00432{letter-spacing:0.852617pt;}
.ls34_c00432{letter-spacing:1.285384pt;}
.ls6_c00432{letter-spacing:1.317680pt;}
.ls0_c00432{letter-spacing:1.446865pt;}
.ls2d_c00432{letter-spacing:1.692315pt;}
.ls19_c00432{letter-spacing:1.705233pt;}
.ls1_c00432{letter-spacing:1.963602pt;}
.ls2f_c00432{letter-spacing:2.068000pt;}
.ls30_c00432{letter-spacing:2.094400pt;}
.lsc_c00432{letter-spacing:2.156000pt;}
.ls12_c00432{letter-spacing:2.182400pt;}
.ls1d_c00432{letter-spacing:2.191200pt;}
.ls2_c00432{letter-spacing:2.254267pt;}
.ls1e_c00432{letter-spacing:2.622442pt;}
.ls15_c00432{letter-spacing:2.736800pt;}
.ls26_c00432{letter-spacing:2.780800pt;}
.ls22_c00432{letter-spacing:2.824800pt;}
.ls11_c00432{letter-spacing:2.921609pt;}
.ls1f_c00432{letter-spacing:2.956800pt;}
.ls1a_c00432{letter-spacing:2.974400pt;}
.ls2a_c00432{letter-spacing:3.062400pt;}
.lse_c00432{letter-spacing:3.071209pt;}
.ls25_c00432{letter-spacing:3.150400pt;}
.lsa_c00432{letter-spacing:3.229609pt;}
.ls1c_c00432{letter-spacing:3.247209pt;}
.ls2e_c00432{letter-spacing:3.256000pt;}
.ls36_c00432{letter-spacing:3.308800pt;}
.ls8_c00432{letter-spacing:3.713609pt;}
.ls3_c00432{letter-spacing:4.199272pt;}
.ls5_c00432{letter-spacing:9.430530pt;}
.ls21_c00432{letter-spacing:43.084976pt;}
.ls32_c00432{letter-spacing:44.352176pt;}
.ls18_c00432{letter-spacing:45.619376pt;}
.ls10_c00432{letter-spacing:46.886576pt;}
.ls29_c00432{letter-spacing:48.153776pt;}
.ls13_c00432{letter-spacing:50.688176pt;}
.ws3_c00432{word-spacing:-18.402311pt;}
.ws8_c00432{word-spacing:-17.000661pt;}
.ws1_c00432{word-spacing:-16.148044pt;}
.ws4_c00432{word-spacing:-16.135126pt;}
.ws9_c00432{word-spacing:-14.597832pt;}
.ws7_c00432{word-spacing:-14.068176pt;}
.ws6_c00432{word-spacing:-2.448090pt;}
.wsa_c00432{word-spacing:0.000000pt;}
.ws2_c00432{word-spacing:2.177965pt;}
.ws5_c00432{word-spacing:2.325209pt;}
.ws0_c00432{word-spacing:6.329571pt;}
._0_c00432{margin-left:-7.105164pt;}
._1b_c00432{margin-left:-5.103433pt;}
._3_c00432{margin-left:-3.875481pt;}
._9_c00432{margin-left:-2.519205pt;}
._12_c00432{width:2.815232pt;}
._4_c00432{width:6.782082pt;}
._2_c00432{width:8.010034pt;}
._1d_c00432{width:8.916864pt;}
._1_c00432{width:10.141032pt;}
._1a_c00432{width:12.014200pt;}
._1c_c00432{width:13.176876pt;}
._18_c00432{width:14.086365pt;}
._19_c00432{width:17.827490pt;}
._c_c00432{width:19.323040pt;}
._13_c00432{width:20.992517pt;}
._8_c00432{width:22.477615pt;}
._d_c00432{width:23.547265pt;}
._e_c00432{width:24.608975pt;}
._7_c00432{width:26.418233pt;}
._15_c00432{width:29.240361pt;}
._b_c00432{width:30.729600pt;}
._11_c00432{width:32.647956pt;}
._a_c00432{width:33.545830pt;}
._16_c00432{width:35.041830pt;}
._5_c00432{width:38.626632pt;}
._14_c00432{width:41.597321pt;}
._17_c00432{width:43.683811pt;}
._6_c00432{width:47.604434pt;}
._10_c00432{width:61.264896pt;}
._f_c00432{width:124.599342pt;}
.fs25_c00432{font-size:19.712000pt;}
.fsf_c00432{font-size:29.568000pt;}
.fs18_c00432{font-size:29.744000pt;}
.fs19_c00432{font-size:34.496000pt;}
.fs24_c00432{font-size:39.952176pt;}
.fs20_c00432{font-size:41.184000pt;}
.fs1d_c00432{font-size:41.360000pt;}
.fs1e_c00432{font-size:41.888000pt;}
.fs14_c00432{font-size:43.084976pt;}
.fs2_c00432{font-size:43.120000pt;}
.fs6_c00432{font-size:43.648000pt;}
.fs10_c00432{font-size:43.824000pt;}
.fs1f_c00432{font-size:44.352176pt;}
.fsb_c00432{font-size:45.619376pt;}
.fs4_c00432{font-size:46.886576pt;}
.fs1a_c00432{font-size:48.153776pt;}
.fs7_c00432{font-size:50.688176pt;}
.fs1c_c00432{font-size:52.976000pt;}
.fs23_c00432{font-size:53.856000pt;}
.fs8_c00432{font-size:54.736000pt;}
.fs17_c00432{font-size:55.616000pt;}
.fs21_c00432{font-size:56.144000pt;}
.fs15_c00432{font-size:56.496000pt;}
.fs13_c00432{font-size:57.376000pt;}
.fs5_c00432{font-size:58.432176pt;}
.fs12_c00432{font-size:59.136000pt;}
.fsd_c00432{font-size:59.488000pt;}
.fs1b_c00432{font-size:61.248000pt;}
.fs3_c00432{font-size:61.424176pt;}
.fsa_c00432{font-size:63.008000pt;}
.fs1_c00432{font-size:64.592176pt;}
.fs11_c00432{font-size:64.768000pt;}
.fse_c00432{font-size:64.944176pt;}
.fsc_c00432{font-size:65.120000pt;}
.fs22_c00432{font-size:66.176000pt;}
.fs9_c00432{font-size:67.584176pt;}
.fs16_c00432{font-size:68.288000pt;}
.fs0_c00432{font-size:74.272176pt;}
.y0_c00432{bottom:0.000000pt;}
.y1_c00432{bottom:68.000000pt;}
.y20_c00432{bottom:114.598920pt;}
.y1e_c00432{bottom:142.164920pt;}
.y1f_c00432{bottom:143.432120pt;}
.y1d_c00432{bottom:170.672520pt;}
.y1c_c00432{bottom:198.555320pt;}
.y1b_c00432{bottom:199.505720pt;}
.y1a_c00432{bottom:228.013320pt;}
.y19_c00432{bottom:256.842120pt;}
.y21_c00432{bottom:261.915320pt;}
.y18_c00432{bottom:285.354120pt;}
.y16_c00432{bottom:306.896520pt;}
.y17_c00432{bottom:314.187320pt;}
.y14_c00432{bottom:314.504120pt;}
.y15_c00432{bottom:314.816520pt;}
.y13_c00432{bottom:345.867320pt;}
.y12_c00432{bottom:402.574520pt;}
.y11_c00432{bottom:432.670520pt;}
.y10_c00432{bottom:461.494920pt;}
.yf_c00432{bottom:490.328120pt;}
.ye_c00432{bottom:521.370120pt;}
.yd_c00432{bottom:551.466120pt;}
.yc_c00432{bottom:580.294920pt;}
.yb_c00432{bottom:611.024520pt;}
.ya_c00432{bottom:611.029800pt;}
.y9_c00432{bottom:639.224120pt;}
.y8_c00432{bottom:669.636920pt;}
.y7_c00432{bottom:700.362120pt;}
.y6_c00432{bottom:729.824520pt;}
.y5_c00432{bottom:761.187720pt;}
.y4_c00432{bottom:789.704120pt;}
.y3_c00432{bottom:820.746120pt;}
.y2_c00432{bottom:956.653320pt;}
.h14_c00432{height:28.694594pt;}
.h21_c00432{height:29.538549pt;}
.hc_c00432{height:30.382504pt;}
.h18_c00432{height:31.022063pt;}
.h6_c00432{height:31.226460pt;}
.h1a_c00432{height:32.070415pt;}
.h9_c00432{height:33.758325pt;}
.h19_c00432{height:35.978250pt;}
.h26_c00432{height:39.210876pt;}
.h1e_c00432{height:40.592578pt;}
.h8_c00432{height:42.838125pt;}
.h22_c00432{height:42.953625pt;}
.h11_c00432{height:43.010859pt;}
.h20_c00432{height:43.687875pt;}
.h4_c00432{height:44.972813pt;}
.h1f_c00432{height:45.523500pt;}
.ha_c00432{height:53.720391pt;}
.h23_c00432{height:55.102266pt;}
.h1c_c00432{height:55.252313pt;}
.h25_c00432{height:56.170125pt;}
.h7_c00432{height:57.347985pt;}
.h17_c00432{height:58.005750pt;}
.h13_c00432{height:58.038750pt;}
.hf_c00432{height:58.384219pt;}
.h15_c00432{height:58.923563pt;}
.h5_c00432{height:60.284470pt;}
.he_c00432{height:61.838906pt;}
.h3_c00432{height:63.393688pt;}
.h12_c00432{height:63.566250pt;}
.h10_c00432{height:63.739157pt;}
.h1b_c00432{height:63.879750pt;}
.hd_c00432{height:63.911719pt;}
.h24_c00432{height:64.948125pt;}
.hb_c00432{height:66.330173pt;}
.h16_c00432{height:67.020938pt;}
.h1d_c00432{height:67.204616pt;}
.h2_c00432{height:72.894079pt;}
.h1_c00432{height:986.666667pt;}
.h0_c00432{height:1122.666667pt;}
.w1_c00432{width:689.333333pt;}
.w0_c00432{width:793.333333pt;}
.x0_c00432{left:0.000000pt;}
.x1_c00432{left:52.000000pt;}
.x46_c00432{left:72.825853pt;}
.x4_c00432{left:74.453853pt;}
.x54_c00432{left:82.787453pt;}
.x4d_c00432{left:91.882253pt;}
.x39_c00432{left:93.259453pt;}
.x47_c00432{left:95.525453pt;}
.x5b_c00432{left:102.129853pt;}
.x91_c00432{left:103.955853pt;}
.x55_c00432{left:111.633853pt;}
.x3a_c00432{left:112.579853pt;}
.x5_c00432{left:113.662253pt;}
.x72_c00432{left:121.256653pt;}
.x21_c00432{left:122.220253pt;}
.x7d_c00432{left:129.361453pt;}
.x6c_c00432{left:130.791453pt;}
.x6f_c00432{left:131.895853pt;}
.x66_c00432{left:132.868253pt;}
.x56_c00432{left:140.291053pt;}
.x30_c00432{left:141.734253pt;}
.x3b_c00432{left:150.463853pt;}
.x4e_c00432{left:151.836653pt;}
.x62_c00432{left:160.425453pt;}
.x6_c00432{left:162.581453pt;}
.x57_c00432{left:169.749053pt;}
.x15_c00432{left:171.663053pt;}
.x3c_c00432{left:180.806253pt;}
.x7_c00432{left:182.258253pt;}
.x85_c00432{left:188.761453pt;}
.x31_c00432{left:190.024253pt;}
.x80_c00432{left:200.047453pt;}
.x48_c00432{left:201.297053pt;}
.x8_c00432{left:202.564253pt;}
.x81_c00432{left:208.438253pt;}
.x77_c00432{left:209.679053pt;}
.x22_c00432{left:210.792253pt;}
.x86_c00432{left:219.997053pt;}
.x9_c00432{left:220.929853pt;}
.x58_c00432{left:222.755853pt;}
.x16_c00432{left:229.628653pt;}
.x92_c00432{left:231.107053pt;}
.x3d_c00432{left:239.924653pt;}
.x23_c00432{left:241.460253pt;}
.x17_c00432{left:249.873053pt;}
.xa_c00432{left:251.901453pt;}
.x3e_c00432{left:258.941453pt;}
.x24_c00432{left:260.525453pt;}
.x4f_c00432{left:268.656653pt;}
.x32_c00432{left:270.020653pt;}
.x5c_c00432{left:272.260253pt;}
.x7e_c00432{left:278.160653pt;}
.x49_c00432{left:279.234253pt;}
.x73_c00432{left:280.730253pt;}
.x18_c00432{left:288.887853pt;}
.x5d_c00432{left:290.498253pt;}
.x78_c00432{left:297.745053pt;}
.x33_c00432{left:299.131053pt;}
.x74_c00432{left:300.785453pt;}
.x25_c00432{left:308.705453pt;}
.x70_c00432{left:317.694653pt;}
.xb_c00432{left:319.437053pt;}
.x82_c00432{left:320.330253pt;}
.x6a_c00432{left:327.255853pt;}
.x3f_c00432{left:328.369053pt;}
.x87_c00432{left:337.314253pt;}
.x26_c00432{left:338.453853pt;}
.x5e_c00432{left:340.733053pt;}
.x89_c00432{left:347.381453pt;}
.xc_c00432{left:348.283453pt;}
.x6d_c00432{left:356.969053pt;}
.x19_c00432{left:358.126253pt;}
.x5f_c00432{left:366.864653pt;}
.x4a_c00432{left:367.929453pt;}
.x93_c00432{left:369.377053pt;}
.x1a_c00432{left:376.918653pt;}
.x8d_c00432{left:380.905053pt;}
.xd_c00432{left:386.950653pt;}
.x27_c00432{left:396.463453pt;}
.x67_c00432{left:405.756253pt;}
.xe_c00432{left:407.217053pt;}
.x40_c00432{left:415.537453pt;}
.xf_c00432{left:426.119453pt;}
.x28_c00432{left:427.963053pt;}
.x60_c00432{left:434.585053pt;}
.x59_c00432{left:435.693853pt;}
.x63_c00432{left:444.916253pt;}
.x34_c00432{left:446.473853pt;}
.x8a_c00432{left:450.992653pt;}
.x1b_c00432{left:455.977853pt;}
.x68_c00432{left:457.249453pt;}
.x29_c00432{left:465.121053pt;}
.x69_c00432{left:466.933853pt;}
.x94_c00432{left:467.954653pt;}
.x35_c00432{left:475.047453pt;}
.x1c_c00432{left:482.905853pt;}
.x8e_c00432{left:483.878253pt;}
.x41_c00432{left:484.846253pt;}
.x6e_c00432{left:486.650253pt;}
.x79_c00432{left:492.885053pt;}
.x2a_c00432{left:494.535053pt;}
.x42_c00432{left:497.364253pt;}
.x64_c00432{left:503.845453pt;}
.x10_c00432{left:505.099453pt;}
.x75_c00432{left:513.380253pt;}
.x1d_c00432{left:514.330653pt;}
.x50_c00432{left:517.322653pt;}
.x7a_c00432{left:522.365053pt;}
.x2b_c00432{left:523.781853pt;}
.x84_c00432{left:524.697053pt;}
.x43_c00432{left:532.533453pt;}
.x11_c00432{left:533.563053pt;}
.x4b_c00432{left:543.652253pt;}
.x95_c00432{left:548.580253pt;}
.x1e_c00432{left:552.755853pt;}
.x6b_c00432{left:554.093453pt;}
.x88_c00432{left:555.488253pt;}
.x12_c00432{left:563.104653pt;}
.x7b_c00432{left:564.341053pt;}
.x51_c00432{left:565.432253pt;}
.x36_c00432{left:573.400653pt;}
.x52_c00432{left:574.667853pt;}
.x7f_c00432{left:577.202253pt;}
.x7c_c00432{left:582.394253pt;}
.x13_c00432{left:583.670253pt;}
.x5a_c00432{left:592.377853pt;}
.x53_c00432{left:593.671453pt;}
.x76_c00432{left:597.530253pt;}
.x2c_c00432{left:601.587053pt;}
.x2_c00432{left:603.237053pt;}
.x8b_c00432{left:610.228653pt;}
.x61_c00432{left:611.161453pt;}
.x4c_c00432{left:612.842253pt;}
.x14_c00432{left:618.676653pt;}
.x71_c00432{left:621.070253pt;}
.x8f_c00432{left:622.271453pt;}
.x3_c00432{left:623.873053pt;}
.x83_c00432{left:629.289453pt;}
.x37_c00432{left:632.206653pt;}
.x8c_c00432{left:633.707053pt;}
.x65_c00432{left:635.493453pt;}
.x90_c00432{left:639.198253pt;}
.x2d_c00432{left:640.201453pt;}
.x1f_c00432{left:641.305853pt;}
.x44_c00432{left:645.947853pt;}
.x20_c00432{left:649.916653pt;}
.x2e_c00432{left:651.857053pt;}
.x2f_c00432{left:660.322653pt;}
.x45_c00432{left:662.417053pt;}
.x38_c00432{left:670.205053pt;}
.x96_c00432{left:681.350253pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ab8c72832275abe64d439851.woff2')format("woff");}.ff1_c00433{font-family:ff1_c00433;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00433;src:url('chunks/assets/font_2977bea82c3eeb7017775bb4.woff2')format("woff");}.ff2_c00433{font-family:ff2_c00433;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00433;src:url('chunks/assets/font_8c1a1b7293a887ba15fac2d7.woff2')format("woff");}.ff3_c00433{font-family:ff3_c00433;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00433;src:url('chunks/assets/font_4a3fa06c6b7dea2ac26aa864.woff2')format("woff");}.ff4_c00433{font-family:ff4_c00433;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00433;src:url('chunks/assets/font_9f025910edc29b549c555e57.woff2')format("woff");}.ff5_c00433{font-family:ff5_c00433;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00433;src:url('chunks/assets/font_f37a9ac607fbf77a4ebe94bf.woff2')format("woff");}.ff6_c00433{font-family:ff6_c00433;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00433;src:url('chunks/assets/font_d3c596f233d611c2799c91b3.woff2')format("woff");}.ff7_c00433{font-family:ff7_c00433;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ma1_c00433{transform:matrix(0.035715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.035715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.035715,0.000000,0.000000,0.250000,0,0);}
.m31_c00433{transform:matrix(0.046053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.046053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.046053,0.000000,0.000000,0.250000,0,0);}
.m6d_c00433{transform:matrix(0.047795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.047795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.047795,0.000000,0.000000,0.250000,0,0);}
.m2f_c00433{transform:matrix(0.050439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050439,0.000000,0.000000,0.250000,0,0);}
.m30_c00433{transform:matrix(0.052632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.052632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.052632,0.000000,0.000000,0.250000,0,0);}
.mee_c00433{transform:matrix(0.055556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.055556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.055556,0.000000,0.000000,0.250000,0,0);}
.m26_c00433{transform:matrix(0.070513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070513,0.000000,0.000000,0.250000,0,0);}
.m7b_c00433{transform:matrix(0.071429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071429,0.000000,0.000000,0.250000,0,0);}
.me7_c00433{transform:matrix(0.075001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075001,0.000000,0.000000,0.250000,0,0);}
.mb9_c00433{transform:matrix(0.075659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075659,0.000000,0.000000,0.250000,0,0);}
.md4_c00433{transform:matrix(0.076390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076390,0.000000,0.000000,0.250000,0,0);}
.m98_c00433{transform:matrix(0.078572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078572,0.000000,0.000000,0.250000,0,0);}
.m6f_c00433{transform:matrix(0.080883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080883,0.000000,0.000000,0.250000,0,0);}
.me_c00433{transform:matrix(0.082653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.082653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.082653,0.000000,0.000000,0.250000,0,0);}
.m38_c00433{transform:matrix(0.085527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085527,0.000000,0.000000,0.250000,0,0);}
.mf6_c00433{transform:matrix(0.088541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088541,0.000000,0.000000,0.250000,0,0);}
.md2_c00433{transform:matrix(0.090278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090278,0.000000,0.000000,0.250000,0,0);}
.mec_c00433{transform:matrix(0.095487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095487,0.000000,0.000000,0.250000,0,0);}
.mb0_c00433{transform:matrix(0.107260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107260,0.000000,0.000000,0.250000,0,0);}
.m28_c00433{transform:matrix(0.111343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111343,0.000000,0.000000,0.250000,0,0);}
.m23_c00433{transform:matrix(0.111868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111868,0.000000,0.000000,0.250000,0,0);}
.me6_c00433{transform:matrix(0.114286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114286,0.000000,0.000000,0.250000,0,0);}
.m9e_c00433{transform:matrix(0.116569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116569,0.000000,0.000000,0.250000,0,0);}
.m16_c00433{transform:matrix(0.119915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119915,0.000000,0.000000,0.250000,0,0);}
.mb7_c00433{transform:matrix(0.120615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120615,0.000000,0.000000,0.250000,0,0);}
.m7a_c00433{transform:matrix(0.121429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121429,0.000000,0.000000,0.250000,0,0);}
.mef_c00433{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m25_c00433{transform:matrix(0.126069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126069,0.000000,0.000000,0.250000,0,0);}
.mf_c00433{transform:matrix(0.128572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128572,0.000000,0.000000,0.250000,0,0);}
.mca_c00433{transform:matrix(0.130902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130902,0.000000,0.000000,0.250000,0,0);}
.mb8_c00433{transform:matrix(0.131579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131579,0.000000,0.000000,0.250000,0,0);}
.m70_c00433{transform:matrix(0.134804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134804,0.000000,0.000000,0.250000,0,0);}
.m29_c00433{transform:matrix(0.137017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137017,0.000000,0.000000,0.250000,0,0);}
.m33_c00433{transform:matrix(0.141448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141448,0.000000,0.000000,0.250000,0,0);}
.m1a_c00433{transform:matrix(0.142361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142361,0.000000,0.000000,0.250000,0,0);}
.mdf_c00433{transform:matrix(0.142361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142361,0.000000,0.000000,0.250000,0,0);}
.mf1_c00433{transform:matrix(0.143627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143627,0.000000,0.000000,0.250000,0,0);}
.m24_c00433{transform:matrix(0.144231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144231,0.000000,0.000000,0.250000,0,0);}
.m18_c00433{transform:matrix(0.145834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145834,0.000000,0.000000,0.250000,0,0);}
.m32_c00433{transform:matrix(0.151316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151316,0.000000,0.000000,0.250000,0,0);}
.mb2_c00433{transform:matrix(0.155361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155361,0.000000,0.000000,0.250000,0,0);}
.ma0_c00433{transform:matrix(0.157142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157142,0.000000,0.000000,0.250000,0,0);}
.m34_c00433{transform:matrix(0.157895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157895,0.000000,0.000000,0.250000,0,0);}
.mc4_c00433{transform:matrix(0.158392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158392,0.000000,0.000000,0.250000,0,0);}
.mb1_c00433{transform:matrix(0.160605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160605,0.000000,0.000000,0.250000,0,0);}
.m36_c00433{transform:matrix(0.161185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161185,0.000000,0.000000,0.250000,0,0);}
.ma4_c00433{transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);}
.m50_c00433{transform:matrix(0.167432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167432,0.000000,0.000000,0.250000,0,0);}
.m7d_c00433{transform:matrix(0.167856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167856,0.000000,0.000000,0.250000,0,0);}
.m6b_c00433{transform:matrix(0.169118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169118,0.000000,0.000000,0.250000,0,0);}
.m37_c00433{transform:matrix(0.171053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171053,0.000000,0.000000,0.250000,0,0);}
.m7f_c00433{transform:matrix(0.171429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171429,0.000000,0.000000,0.250000,0,0);}
.m5a_c00433{transform:matrix(0.172602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172602,0.000000,0.000000,0.250000,0,0);}
.m35_c00433{transform:matrix(0.177632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177632,0.000000,0.000000,0.250000,0,0);}
.ma2_c00433{transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);}
.m17_c00433{transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);}
.m7e_c00433{transform:matrix(0.180952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180952,0.000000,0.000000,0.250000,0,0);}
.m54_c00433{transform:matrix(0.183823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183823,0.000000,0.000000,0.250000,0,0);}
.m63_c00433{transform:matrix(0.185764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185764,0.000000,0.000000,0.250000,0,0);}
.mde_c00433{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.mce_c00433{transform:matrix(0.186945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186945,0.000000,0.000000,0.250000,0,0);}
.md3_c00433{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00433{transform:matrix(0.189330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189330,0.000000,0.000000,0.250000,0,0);}
.md5_c00433{transform:matrix(0.189814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189814,0.000000,0.000000,0.250000,0,0);}
.ma9_c00433{transform:matrix(0.190798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190798,0.000000,0.000000,0.250000,0,0);}
.m19_c00433{transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);}
.me0_c00433{transform:matrix(0.195437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195437,0.000000,0.000000,0.250000,0,0);}
.m4e_c00433{transform:matrix(0.195731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195731,0.000000,0.000000,0.250000,0,0);}
.ma3_c00433{transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);}
.med_c00433{transform:matrix(0.196759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196759,0.000000,0.000000,0.250000,0,0);}
.me5_c00433{transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);}
.meb_c00433{transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);}
.m97_c00433{transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);}
.mcd_c00433{transform:matrix(0.208312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208312,0.000000,0.000000,0.250000,0,0);}
.mf5_c00433{transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);}
.m7_c00433{transform:matrix(0.208681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208681,0.000000,0.000000,0.250000,0,0);}
.m53_c00433{transform:matrix(0.210784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210784,0.000000,0.000000,0.250000,0,0);}
.mba_c00433{transform:matrix(0.211630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211630,0.000000,0.000000,0.250000,0,0);}
.m3a_c00433{transform:matrix(0.211685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211685,0.000000,0.000000,0.250000,0,0);}
.m6e_c00433{transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);}
.m5c_c00433{transform:matrix(0.214095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214095,0.000000,0.000000,0.250000,0,0);}
.m2e_c00433{transform:matrix(0.216324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216324,0.000000,0.000000,0.250000,0,0);}
.m39_c00433{transform:matrix(0.223459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223459,0.000000,0.000000,0.250000,0,0);}
.mff_c00433{transform:matrix(0.226607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226607,0.000000,0.000000,0.250000,0,0);}
.m4a_c00433{transform:matrix(0.231744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231744,0.000000,0.000000,0.250000,0,0);}
.m21_c00433{transform:matrix(0.232187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232187,0.000000,0.000000,0.250000,0,0);}
.ma7_c00433{transform:matrix(0.234455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234455,0.000000,0.000000,0.250000,0,0);}
.m44_c00433{transform:matrix(0.234570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234570,0.000000,0.000000,0.250000,0,0);}
.m3c_c00433{transform:matrix(0.235923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235923,0.000000,0.000000,0.250000,0,0);}
.mc7_c00433{transform:matrix(0.237342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237342,0.000000,0.000000,0.250000,0,0);}
.m2b_c00433{transform:matrix(0.243791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243791,0.000000,0.000000,0.250000,0,0);}
.m0_c00433{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00433{transform:matrix(0.250111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250111,0.000000,0.000000,0.250000,0,0);}
.ma8_c00433{transform:matrix(0.254709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254709,0.000000,0.000000,0.250000,0,0);}
.me1_c00433{transform:matrix(0.254843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254843,0.000000,0.000000,0.250000,0,0);}
.m1b_c00433{transform:matrix(0.255642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255642,0.000000,0.000000,0.250000,0,0);}
.m3f_c00433{transform:matrix(0.256118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256118,0.000000,0.000000,0.250000,0,0);}
.mf8_c00433{transform:matrix(0.258930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258930,0.000000,0.000000,0.250000,0,0);}
.m43_c00433{transform:matrix(0.259710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259710,0.000000,0.000000,0.250000,0,0);}
.ma_c00433{transform:matrix(0.260021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260021,0.000000,0.000000,0.250000,0,0);}
.m101_c00433{transform:matrix(0.264567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264567,0.000000,0.000000,0.250000,0,0);}
.m47_c00433{transform:matrix(0.264977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264977,0.000000,0.000000,0.250000,0,0);}
.mea_c00433{transform:matrix(0.265260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265260,0.000000,0.000000,0.250000,0,0);}
.m102_c00433{transform:matrix(0.267204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267204,0.000000,0.000000,0.250000,0,0);}
.mc6_c00433{transform:matrix(0.268794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268794,0.000000,0.000000,0.250000,0,0);}
.m71_c00433{transform:matrix(0.269204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269204,0.000000,0.000000,0.250000,0,0);}
.m5f_c00433{transform:matrix(0.269421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269421,0.000000,0.000000,0.250000,0,0);}
.mc_c00433{transform:matrix(0.270173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270173,0.000000,0.000000,0.250000,0,0);}
.m3_c00433{transform:matrix(0.270174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270174,0.000000,0.000000,0.250000,0,0);}
.m72_c00433{transform:matrix(0.270180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270180,0.000000,0.000000,0.250000,0,0);}
.m1_c00433{transform:matrix(0.270484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270484,0.000000,0.000000,0.250000,0,0);}
.m83_c00433{transform:matrix(0.271050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271050,0.000000,0.000000,0.250000,0,0);}
.mf9_c00433{transform:matrix(0.271499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271499,0.000000,0.000000,0.250000,0,0);}
.me9_c00433{transform:matrix(0.273285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273285,0.000000,0.000000,0.250000,0,0);}
.m4f_c00433{transform:matrix(0.273302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273302,0.000000,0.000000,0.250000,0,0);}
.mc0_c00433{transform:matrix(0.273357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273357,0.000000,0.000000,0.250000,0,0);}
.mf2_c00433{transform:matrix(0.275922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275922,0.000000,0.000000,0.250000,0,0);}
.m11_c00433{transform:matrix(0.276320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276320,0.000000,0.000000,0.250000,0,0);}
.me4_c00433{transform:matrix(0.277030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277030,0.000000,0.000000,0.250000,0,0);}
.m8d_c00433{transform:matrix(0.279998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279998,0.000000,0.000000,0.250000,0,0);}
.m8c_c00433{transform:matrix(0.281213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281213,0.000000,0.000000,0.250000,0,0);}
.m6c_c00433{transform:matrix(0.283088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283088,0.000000,0.000000,0.250000,0,0);}
.mfb_c00433{transform:matrix(0.284058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284058,0.000000,0.000000,0.250000,0,0);}
.mbf_c00433{transform:matrix(0.284096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284096,0.000000,0.000000,0.250000,0,0);}
.m84_c00433{transform:matrix(0.285822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285822,0.000000,0.000000,0.250000,0,0);}
.m48_c00433{transform:matrix(0.286421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286421,0.000000,0.000000,0.250000,0,0);}
.m5e_c00433{transform:matrix(0.286592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286592,0.000000,0.000000,0.250000,0,0);}
.ma6_c00433{transform:matrix(0.287047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287047,0.000000,0.000000,0.250000,0,0);}
.m73_c00433{transform:matrix(0.288981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288981,0.000000,0.000000,0.250000,0,0);}
.md8_c00433{transform:matrix(0.289683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289683,0.000000,0.000000,0.250000,0,0);}
.m62_c00433{transform:matrix(0.291019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291019,0.000000,0.000000,0.250000,0,0);}
.m79_c00433{transform:matrix(0.292026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292026,0.000000,0.000000,0.250000,0,0);}
.m15_c00433{transform:matrix(0.292208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292208,0.000000,0.000000,0.250000,0,0);}
.m7c_c00433{transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);}
.m69_c00433{transform:matrix(0.292374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292374,0.000000,0.000000,0.250000,0,0);}
.mb3_c00433{transform:matrix(0.292748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292748,0.000000,0.000000,0.250000,0,0);}
.m52_c00433{transform:matrix(0.292815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292815,0.000000,0.000000,0.250000,0,0);}
.m66_c00433{transform:matrix(0.293030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293030,0.000000,0.000000,0.250000,0,0);}
.m74_c00433{transform:matrix(0.293568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293568,0.000000,0.000000,0.250000,0,0);}
.mf3_c00433{transform:matrix(0.293579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293579,0.000000,0.000000,0.250000,0,0);}
.m51_c00433{transform:matrix(0.293864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293864,0.000000,0.000000,0.250000,0,0);}
.mae_c00433{transform:matrix(0.294126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294126,0.000000,0.000000,0.250000,0,0);}
.m5_c00433{transform:matrix(0.294235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294235,0.000000,0.000000,0.250000,0,0);}
.mad_c00433{transform:matrix(0.294641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294641,0.000000,0.000000,0.250000,0,0);}
.m68_c00433{transform:matrix(0.294964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294964,0.000000,0.000000,0.250000,0,0);}
.m2_c00433{transform:matrix(0.296216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296216,0.000000,0.000000,0.250000,0,0);}
.mb6_c00433{transform:matrix(0.296662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296662,0.000000,0.000000,0.250000,0,0);}
.m67_c00433{transform:matrix(0.296684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296684,0.000000,0.000000,0.250000,0,0);}
.m95_c00433{transform:matrix(0.297247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297247,0.000000,0.000000,0.250000,0,0);}
.mcf_c00433{transform:matrix(0.297943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297943,0.000000,0.000000,0.250000,0,0);}
.m93_c00433{transform:matrix(0.298222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298222,0.000000,0.000000,0.250000,0,0);}
.m80_c00433{transform:matrix(0.299489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299489,0.000000,0.000000,0.250000,0,0);}
.m56_c00433{transform:matrix(0.300604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300604,0.000000,0.000000,0.250000,0,0);}
.m77_c00433{transform:matrix(0.301413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301413,0.000000,0.000000,0.250000,0,0);}
.mfc_c00433{transform:matrix(0.302044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302044,0.000000,0.000000,0.250000,0,0);}
.m65_c00433{transform:matrix(0.302201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302201,0.000000,0.000000,0.250000,0,0);}
.mc1_c00433{transform:matrix(0.302459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302459,0.000000,0.000000,0.250000,0,0);}
.md7_c00433{transform:matrix(0.303623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303623,0.000000,0.000000,0.250000,0,0);}
.m96_c00433{transform:matrix(0.303952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303952,0.000000,0.000000,0.250000,0,0);}
.m78_c00433{transform:matrix(0.304333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304333,0.000000,0.000000,0.250000,0,0);}
.m9d_c00433{transform:matrix(0.304743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304743,0.000000,0.000000,0.250000,0,0);}
.m76_c00433{transform:matrix(0.305310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305310,0.000000,0.000000,0.250000,0,0);}
.m8a_c00433{transform:matrix(0.305324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305324,0.000000,0.000000,0.250000,0,0);}
.mf7_c00433{transform:matrix(0.305986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305986,0.000000,0.000000,0.250000,0,0);}
.m81_c00433{transform:matrix(0.306993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306993,0.000000,0.000000,0.250000,0,0);}
.md_c00433{transform:matrix(0.307039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307039,0.000000,0.000000,0.250000,0,0);}
.mbe_c00433{transform:matrix(0.307628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307628,0.000000,0.000000,0.250000,0,0);}
.mc8_c00433{transform:matrix(0.310363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310363,0.000000,0.000000,0.250000,0,0);}
.mdb_c00433{transform:matrix(0.311182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311182,0.000000,0.000000,0.250000,0,0);}
.mc9_c00433{transform:matrix(0.311348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311348,0.000000,0.000000,0.250000,0,0);}
.m88_c00433{transform:matrix(0.311645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311645,0.000000,0.000000,0.250000,0,0);}
.m89_c00433{transform:matrix(0.312030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312030,0.000000,0.000000,0.250000,0,0);}
.m104_c00433{transform:matrix(0.312171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312171,0.000000,0.000000,0.250000,0,0);}
.m10_c00433{transform:matrix(0.313068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313068,0.000000,0.000000,0.250000,0,0);}
.m60_c00433{transform:matrix(0.314114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314114,0.000000,0.000000,0.250000,0,0);}
.ma5_c00433{transform:matrix(0.314320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314320,0.000000,0.000000,0.250000,0,0);}
.m46_c00433{transform:matrix(0.314972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314972,0.000000,0.000000,0.250000,0,0);}
.mdd_c00433{transform:matrix(0.315864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315864,0.000000,0.000000,0.250000,0,0);}
.mfd_c00433{transform:matrix(0.316268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316268,0.000000,0.000000,0.250000,0,0);}
.m91_c00433{transform:matrix(0.318625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318625,0.000000,0.000000,0.250000,0,0);}
.me2_c00433{transform:matrix(0.318655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318655,0.000000,0.000000,0.250000,0,0);}
.m9a_c00433{transform:matrix(0.319910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319910,0.000000,0.000000,0.250000,0,0);}
.mf0_c00433{transform:matrix(0.319972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319972,0.000000,0.000000,0.250000,0,0);}
.m6_c00433{transform:matrix(0.320137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320137,0.000000,0.000000,0.250000,0,0);}
.m8_c00433{transform:matrix(0.320539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320539,0.000000,0.000000,0.250000,0,0);}
.m41_c00433{transform:matrix(0.320800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320800,0.000000,0.000000,0.250000,0,0);}
.mcb_c00433{transform:matrix(0.321491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321491,0.000000,0.000000,0.250000,0,0);}
.m103_c00433{transform:matrix(0.321732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321732,0.000000,0.000000,0.250000,0,0);}
.m59_c00433{transform:matrix(0.321918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321918,0.000000,0.000000,0.250000,0,0);}
.m57_c00433{transform:matrix(0.322680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322680,0.000000,0.000000,0.250000,0,0);}
.m13_c00433{transform:matrix(0.323631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323631,0.000000,0.000000,0.250000,0,0);}
.m4b_c00433{transform:matrix(0.324418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324418,0.000000,0.000000,0.250000,0,0);}
.me3_c00433{transform:matrix(0.325646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325646,0.000000,0.000000,0.250000,0,0);}
.mb4_c00433{transform:matrix(0.326075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326075,0.000000,0.000000,0.250000,0,0);}
.mc5_c00433{transform:matrix(0.326939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326939,0.000000,0.000000,0.250000,0,0);}
.m27_c00433{transform:matrix(0.328100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328100,0.000000,0.000000,0.250000,0,0);}
.mb5_c00433{transform:matrix(0.328275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328275,0.000000,0.000000,0.250000,0,0);}
.md9_c00433{transform:matrix(0.328405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328405,0.000000,0.000000,0.250000,0,0);}
.m4c_c00433{transform:matrix(0.328940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328940,0.000000,0.000000,0.250000,0,0);}
.mdc_c00433{transform:matrix(0.329049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329049,0.000000,0.000000,0.250000,0,0);}
.m1e_c00433{transform:matrix(0.329131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329131,0.000000,0.000000,0.250000,0,0);}
.m2c_c00433{transform:matrix(0.329444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329444,0.000000,0.000000,0.250000,0,0);}
.m8f_c00433{transform:matrix(0.329919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329919,0.000000,0.000000,0.250000,0,0);}
.m9c_c00433{transform:matrix(0.331779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331779,0.000000,0.000000,0.250000,0,0);}
.m45_c00433{transform:matrix(0.332640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332640,0.000000,0.000000,0.250000,0,0);}
.m2d_c00433{transform:matrix(0.332945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332945,0.000000,0.000000,0.250000,0,0);}
.m6a_c00433{transform:matrix(0.334103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334103,0.000000,0.000000,0.250000,0,0);}
.mbc_c00433{transform:matrix(0.334433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334433,0.000000,0.000000,0.250000,0,0);}
.m1d_c00433{transform:matrix(0.336005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336005,0.000000,0.000000,0.250000,0,0);}
.mfa_c00433{transform:matrix(0.336228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336228,0.000000,0.000000,0.250000,0,0);}
.me8_c00433{transform:matrix(0.337188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337188,0.000000,0.000000,0.250000,0,0);}
.m9b_c00433{transform:matrix(0.337635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337635,0.000000,0.000000,0.250000,0,0);}
.md0_c00433{transform:matrix(0.338996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338996,0.000000,0.000000,0.250000,0,0);}
.m64_c00433{transform:matrix(0.339084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339084,0.000000,0.000000,0.250000,0,0);}
.m85_c00433{transform:matrix(0.339923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339923,0.000000,0.000000,0.250000,0,0);}
.m4d_c00433{transform:matrix(0.340173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340173,0.000000,0.000000,0.250000,0,0);}
.m20_c00433{transform:matrix(0.340620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340620,0.000000,0.000000,0.250000,0,0);}
.m2a_c00433{transform:matrix(0.341340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341340,0.000000,0.000000,0.250000,0,0);}
.maf_c00433{transform:matrix(0.342372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342372,0.000000,0.000000,0.250000,0,0);}
.m3d_c00433{transform:matrix(0.342498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342498,0.000000,0.000000,0.250000,0,0);}
.m22_c00433{transform:matrix(0.345647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345647,0.000000,0.000000,0.250000,0,0);}
.m1f_c00433{transform:matrix(0.346472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346472,0.000000,0.000000,0.250000,0,0);}
.m42_c00433{transform:matrix(0.346997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346997,0.000000,0.000000,0.250000,0,0);}
.md6_c00433{transform:matrix(0.346999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346999,0.000000,0.000000,0.250000,0,0);}
.mda_c00433{transform:matrix(0.347387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347387,0.000000,0.000000,0.250000,0,0);}
.m40_c00433{transform:matrix(0.349902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349902,0.000000,0.000000,0.250000,0,0);}
.m82_c00433{transform:matrix(0.352772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352772,0.000000,0.000000,0.250000,0,0);}
.mbb_c00433{transform:matrix(0.354532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354532,0.000000,0.000000,0.250000,0,0);}
.m3e_c00433{transform:matrix(0.354571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354571,0.000000,0.000000,0.250000,0,0);}
.mac_c00433{transform:matrix(0.356209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356209,0.000000,0.000000,0.250000,0,0);}
.m4_c00433{transform:matrix(0.359200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359200,0.000000,0.000000,0.250000,0,0);}
.m86_c00433{transform:matrix(0.361036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361036,0.000000,0.000000,0.250000,0,0);}
.m49_c00433{transform:matrix(0.361083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361083,0.000000,0.000000,0.250000,0,0);}
.m3b_c00433{transform:matrix(0.361244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361244,0.000000,0.000000,0.250000,0,0);}
.mcc_c00433{transform:matrix(0.361364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361364,0.000000,0.000000,0.250000,0,0);}
.mc2_c00433{transform:matrix(0.361443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361443,0.000000,0.000000,0.250000,0,0);}
.maa_c00433{transform:matrix(0.363638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363638,0.000000,0.000000,0.250000,0,0);}
.m5b_c00433{transform:matrix(0.365817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365817,0.000000,0.000000,0.250000,0,0);}
.m8e_c00433{transform:matrix(0.367766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367766,0.000000,0.000000,0.250000,0,0);}
.m55_c00433{transform:matrix(0.368204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368204,0.000000,0.000000,0.250000,0,0);}
.m8b_c00433{transform:matrix(0.370543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370543,0.000000,0.000000,0.250000,0,0);}
.m14_c00433{transform:matrix(0.374763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374763,0.000000,0.000000,0.250000,0,0);}
.mab_c00433{transform:matrix(0.376436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376436,0.000000,0.000000,0.250000,0,0);}
.m1c_c00433{transform:matrix(0.377554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377554,0.000000,0.000000,0.250000,0,0);}
.m100_c00433{transform:matrix(0.380630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380630,0.000000,0.000000,0.250000,0,0);}
.m12_c00433{transform:matrix(0.391165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391165,0.000000,0.000000,0.250000,0,0);}
.mf4_c00433{transform:matrix(0.391554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391554,0.000000,0.000000,0.250000,0,0);}
.m58_c00433{transform:matrix(0.393996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393996,0.000000,0.000000,0.250000,0,0);}
.m75_c00433{transform:matrix(0.403076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403076,0.000000,0.000000,0.250000,0,0);}
.m87_c00433{transform:matrix(0.406345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406345,0.000000,0.000000,0.250000,0,0);}
.m61_c00433{transform:matrix(0.407262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407262,0.000000,0.000000,0.250000,0,0);}
.m90_c00433{transform:matrix(0.408397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408397,0.000000,0.000000,0.250000,0,0);}
.m92_c00433{transform:matrix(0.408708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408708,0.000000,0.000000,0.250000,0,0);}
.m94_c00433{transform:matrix(0.413238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413238,0.000000,0.000000,0.250000,0,0);}
.mfe_c00433{transform:matrix(0.415991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415991,0.000000,0.000000,0.250000,0,0);}
.mbd_c00433{transform:matrix(0.418579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418579,0.000000,0.000000,0.250000,0,0);}
.m9_c00433{transform:matrix(0.430965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430965,0.000000,0.000000,0.250000,0,0);}
.m5d_c00433{transform:matrix(0.450984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450984,0.000000,0.000000,0.250000,0,0);}
.md1_c00433{transform:matrix(0.455150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455150,0.000000,0.000000,0.250000,0,0);}
.mb_c00433{transform:matrix(0.475962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475962,0.000000,0.000000,0.250000,0,0);}
.m99_c00433{transform:matrix(0.479471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479471,0.000000,0.000000,0.250000,0,0);}
.v3_c00433{vertical-align:-9.967320px;}
.v0_c00433{vertical-align:0.000000px;}
.v2_c00433{vertical-align:1.393920px;}
.v1_c00433{vertical-align:7.128000px;}
.ls17_c00433{letter-spacing:-2.917530px;}
.ls1b_c00433{letter-spacing:-2.647267px;}
.ls2e_c00433{letter-spacing:-2.474017px;}
.lsf_c00433{letter-spacing:-2.439367px;}
.ls13_c00433{letter-spacing:-2.411640px;}
.ls1c_c00433{letter-spacing:-2.294270px;}
.ls34_c00433{letter-spacing:-2.189880px;}
.ls22_c00433{letter-spacing:-1.774080px;}
.ls18_c00433{letter-spacing:-1.718640px;}
.ls23_c00433{letter-spacing:-1.637861px;}
.ls1d_c00433{letter-spacing:-1.289380px;}
.ls2b_c00433{letter-spacing:-1.167827px;}
.ls3a_c00433{letter-spacing:-0.529691px;}
.ls35_c00433{letter-spacing:-0.049421px;}
.lsd_c00433{letter-spacing:0.000000px;}
.ls5_c00433{letter-spacing:0.090605px;}
.ls3_c00433{letter-spacing:0.206197px;}
.ls16_c00433{letter-spacing:0.473934px;}
.lsa_c00433{letter-spacing:0.543630px;}
.ls1_c00433{letter-spacing:0.585448px;}
.ls24_c00433{letter-spacing:0.655144px;}
.ls2a_c00433{letter-spacing:0.822415px;}
.ls4_c00433{letter-spacing:0.968777px;}
.ls31_c00433{letter-spacing:1.361884px;}
.ls1f_c00433{letter-spacing:1.895737px;}
.ls2d_c00433{letter-spacing:1.900810px;}
.lsb_c00433{letter-spacing:1.923615px;}
.ls38_c00433{letter-spacing:2.069977px;}
.ls30_c00433{letter-spacing:2.197810px;}
.ls1e_c00433{letter-spacing:2.227500px;}
.ls7_c00433{letter-spacing:2.239083px;}
.ls27_c00433{letter-spacing:2.244218px;}
.ls11_c00433{letter-spacing:2.316600px;}
.ls32_c00433{letter-spacing:2.356200px;}
.ls2c_c00433{letter-spacing:2.593810px;}
.ls26_c00433{letter-spacing:2.789483px;}
.ls1a_c00433{letter-spacing:2.794818px;}
.ls19_c00433{letter-spacing:2.970000px;}
.ls25_c00433{letter-spacing:3.078900px;}
.ls29_c00433{letter-spacing:3.088810px;}
.ls20_c00433{letter-spacing:3.118500px;}
.ls2_c00433{letter-spacing:3.192086px;}
.ls33_c00433{letter-spacing:3.227400px;}
.ls36_c00433{letter-spacing:3.247200px;}
.ls28_c00433{letter-spacing:3.326400px;}
.ls12_c00433{letter-spacing:3.445200px;}
.lse_c00433{letter-spacing:3.484810px;}
.ls2f_c00433{letter-spacing:3.534310px;}
.ls10_c00433{letter-spacing:3.583810px;}
.ls39_c00433{letter-spacing:3.643200px;}
.ls0_c00433{letter-spacing:3.801600px;}
.ls8_c00433{letter-spacing:5.784867px;}
.ls6_c00433{letter-spacing:7.246764px;}
.ls21_c00433{letter-spacing:48.470598px;}
.lsc_c00433{letter-spacing:49.896198px;}
.ls14_c00433{letter-spacing:51.321798px;}
.ls9_c00433{letter-spacing:54.172998px;}
.ls15_c00433{letter-spacing:55.598598px;}
.ls37_c00433{letter-spacing:57.024198px;}
.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;}
}
.ws6_c00433{word-spacing:-96.319597px;}
.wse_c00433{word-spacing:-87.704188px;}
.ws11_c00433{word-spacing:-87.293596px;}
.wsa_c00433{word-spacing:-19.577943px;}
.ws10_c00433{word-spacing:-19.347665px;}
.ws8_c00433{word-spacing:-18.392827px;}
.ws2_c00433{word-spacing:-17.897984px;}
.ws9_c00433{word-spacing:-17.514655px;}
.ws5_c00433{word-spacing:-17.424050px;}
.wsc_c00433{word-spacing:-17.118684px;}
.ws4_c00433{word-spacing:-16.513200px;}
.wsf_c00433{word-spacing:-0.000794px;}
.ws12_c00433{word-spacing:0.000000px;}
.ws1_c00433{word-spacing:0.543779px;}
.wsd_c00433{word-spacing:5.784851px;}
.ws3_c00433{word-spacing:6.941088px;}
.ws7_c00433{word-spacing:7.247477px;}
.ws0_c00433{word-spacing:9.269661px;}
.wsb_c00433{word-spacing:11.080767px;}
._17_c00433{margin-left:-9.409015px;}
._15_c00433{margin-left:-7.596215px;}
._4_c00433{margin-left:-4.669577px;}
._13_c00433{margin-left:-2.257200px;}
._1e_c00433{margin-left:-1.186218px;}
._7_c00433{width:1.260383px;}
._a_c00433{width:2.746529px;}
._20_c00433{width:3.833244px;}
._18_c00433{width:6.272585px;}
._3_c00433{width:7.855705px;}
._8_c00433{width:9.199971px;}
._0_c00433{width:10.524008px;}
._e_c00433{width:12.266430px;}
._5_c00433{width:13.381544px;}
._19_c00433{width:15.263534px;}
._1d_c00433{width:19.046995px;}
._b_c00433{width:20.072360px;}
._12_c00433{width:21.380832px;}
._23_c00433{width:23.277617px;}
._16_c00433{width:24.671537px;}
._c_c00433{width:26.003401px;}
._22_c00433{width:27.530063px;}
._2_c00433{width:30.710022px;}
._14_c00433{width:32.313600px;}
._21_c00433{width:33.722568px;}
._6_c00433{width:36.032975px;}
._1a_c00433{width:37.840622px;}
._f_c00433{width:39.475656px;}
._10_c00433{width:42.599014px;}
._9_c00433{width:43.878059px;}
._1_c00433{width:48.035487px;}
._11_c00433{width:51.400800px;}
._1b_c00433{width:55.060517px;}
._1c_c00433{width:56.924851px;}
._1f_c00433{width:80.715387px;}
._d_c00433{width:484.737127px;}
.fc0_c00433{color:transparent;}
.fs29_c00433{font-size:13.266000px;}
.fs0_c00433{font-size:27.720000px;}
.fs17_c00433{font-size:30.690000px;}
.fs2_c00433{font-size:34.848000px;}
.fs22_c00433{font-size:38.016198px;}
.fs24_c00433{font-size:43.956198px;}
.fs14_c00433{font-size:44.550000px;}
.fs7_c00433{font-size:46.332000px;}
.fs25_c00433{font-size:47.124000px;}
.fs18_c00433{font-size:48.470598px;}
.fsf_c00433{font-size:49.104000px;}
.fs6_c00433{font-size:49.896198px;}
.fsc_c00433{font-size:50.292000px;}
.fs19_c00433{font-size:50.688000px;}
.fs9_c00433{font-size:51.321798px;}
.fs21_c00433{font-size:51.876198px;}
.fs11_c00433{font-size:54.172998px;}
.fs1e_c00433{font-size:55.242000px;}
.fs1f_c00433{font-size:55.440000px;}
.fsa_c00433{font-size:55.598598px;}
.fs28_c00433{font-size:57.024198px;}
.fs10_c00433{font-size:59.400000px;}
.fs1a_c00433{font-size:61.578000px;}
.fs1b_c00433{font-size:61.776198px;}
.fs15_c00433{font-size:62.370000px;}
.fs26_c00433{font-size:62.568000px;}
.fs1c_c00433{font-size:64.152198px;}
.fsb_c00433{font-size:64.548000px;}
.fs27_c00433{font-size:64.944000px;}
.fse_c00433{font-size:66.528000px;}
.fs5_c00433{font-size:67.716198px;}
.fs8_c00433{font-size:68.904000px;}
.fs20_c00433{font-size:69.102198px;}
.fs1_c00433{font-size:69.696198px;}
.fs23_c00433{font-size:70.686198px;}
.fs4_c00433{font-size:71.676198px;}
.fs3_c00433{font-size:72.864000px;}
.fs12_c00433{font-size:75.636198px;}
.fs16_c00433{font-size:76.032198px;}
.fs1d_c00433{font-size:78.804000px;}
.fsd_c00433{font-size:83.358000px;}
.fs13_c00433{font-size:107.712198px;}
.y0_c00433{bottom:0.000000px;}
.y1_c00433{bottom:76.500000px;}
.y1f_c00433{bottom:155.653785px;}
.y1e_c00433{bottom:186.665535px;}
.y1d_c00433{bottom:220.167135px;}
.y1c_c00433{bottom:251.886735px;}
.y1b_c00433{bottom:285.031935px;}
.y1a_c00433{bottom:318.177135px;}
.y19_c00433{bottom:351.317385px;}
.y18_c00433{bottom:380.903535px;}
.y17_c00433{bottom:381.259935px;}
.y16_c00433{bottom:413.687385px;}
.y15_c00433{bottom:473.567535px;}
.y14_c00433{bottom:491.738985px;}
.y13_c00433{bottom:505.287135px;}
.y12_c00433{bottom:537.363135px;}
.y11_c00433{bottom:570.151935px;}
.y10_c00433{bottom:602.227935px;}
.ye_c00433{bottom:634.655385px;}
.yf_c00433{bottom:640.001385px;}
.yd_c00433{bottom:659.603385px;}
.yc_c00433{bottom:667.444185px;}
.yb_c00433{bottom:685.625535px;}
.ya_c00433{bottom:699.520185px;}
.y9_c00433{bottom:725.542335px;}
.y7_c00433{bottom:731.601135px;}
.y8_c00433{bottom:731.957535px;}
.y6_c00433{bottom:764.741385px;}
.y5_c00433{bottom:806.088735px;}
.y4_c00433{bottom:861.330735px;}
.y3_c00433{bottom:895.188735px;}
.y2_c00433{bottom:1098.688185px;}
.h2_c00433{height:28.911094px;}
.h17_c00433{height:30.120557px;}
.h18_c00433{height:32.281418px;}
.h7_c00433{height:33.230868px;}
.ha_c00433{height:34.180317px;}
.h11_c00433{height:36.079217px;}
.hc_c00433{height:37.028666px;}
.h29_c00433{height:37.978116px;}
.h22_c00433{height:39.649707px;}
.h24_c00433{height:44.299606px;}
.h14_c00433{height:46.464258px;}
.h8_c00433{height:48.322828px;}
.h25_c00433{height:49.148859px;}
.h21_c00433{height:50.913651px;}
.hf_c00433{height:51.213938px;}
.h19_c00433{height:52.866000px;}
.h1f_c00433{height:57.822188px;}
.h10_c00433{height:61.952344px;}
.h1a_c00433{height:64.223930px;}
.h1c_c00433{height:64.430644px;}
.h15_c00433{height:65.049961px;}
.h27_c00433{height:65.256469px;}
.h1b_c00433{height:65.293594px;}
.h1d_c00433{height:66.908738px;}
.h26_c00433{height:67.321547px;}
.h9_c00433{height:67.625508px;}
.h28_c00433{height:67.734563px;}
.h20_c00433{height:67.786287px;}
.h3_c00433{height:68.403007px;}
.h23_c00433{height:69.374638px;}
.he_c00433{height:69.386625px;}
.hb_c00433{height:69.796927px;}
.h5_c00433{height:70.346269px;}
.h6_c00433{height:70.625878px;}
.h4_c00433{height:71.512031px;}
.h12_c00433{height:74.232792px;}
.h1e_c00433{height:77.341816px;}
.h16_c00433{height:79.299207px;}
.hd_c00433{height:81.811318px;}
.h13_c00433{height:105.713632px;}
.h1_c00433{height:1110.000000px;}
.h0_c00433{height:1263.000000px;}
.w1_c00433{width:775.500000px;}
.w0_c00433{width:892.500000px;}
.x0_c00433{left:0.000000px;}
.x1_c00433{left:58.500000px;}
.x3b_c00433{left:74.791185px;}
.x2e_c00433{left:76.399935px;}
.x3_c00433{left:77.498835px;}
.x6f_c00433{left:78.508635px;}
.x2_c00433{left:79.711485px;}
.x8c_c00433{left:85.839585px;}
.x61_c00433{left:88.156185px;}
.x2f_c00433{left:98.872935px;}
.x4_c00433{left:100.298535px;}
.x4e_c00433{left:102.362685px;}
.x3c_c00433{left:107.971035px;}
.x86_c00433{left:109.218435px;}
.x74_c00433{left:110.634135px;}
.x1a_c00433{left:111.886485px;}
.x4f_c00433{left:118.861035px;}
.x5_c00433{left:120.247035px;}
.x70_c00433{left:124.340685px;}
.x1c_c00433{left:131.300385px;}
.x7c_c00433{left:133.334835px;}
.x62_c00433{left:141.428085px;}
.x6_c00433{left:152.189385px;}
.x56_c00433{left:153.941685px;}
.x71_c00433{left:159.292635px;}
.x5c_c00433{left:163.019985px;}
.x1d_c00433{left:165.351435px;}
.x1e_c00433{left:173.484285px;}
.x7_c00433{left:174.825735px;}
.x8d_c00433{left:177.003735px;}
.x48_c00433{left:185.582085px;}
.x63_c00433{left:195.798885px;}
.x49_c00433{left:196.823535px;}
.x50_c00433{left:207.515535px;}
.x8_c00433{left:208.792635px;}
.x6a_c00433{left:217.331385px;}
.x1f_c00433{left:218.633235px;}
.x4a_c00433{left:229.478685px;}
.x87_c00433{left:230.740935px;}
.x9_c00433{left:241.239885px;}
.x4b_c00433{left:251.431935px;}
.x7d_c00433{left:252.634785px;}
.x30_c00433{left:262.609035px;}
.xa_c00433{left:264.207885px;}
.x75_c00433{left:274.538535px;}
.x57_c00433{left:283.626735px;}
.x31_c00433{left:285.314685px;}
.x64_c00433{left:289.992435px;}
.x47_c00433{left:294.046485px;}
.xb_c00433{left:295.764135px;}
.x91_c00433{left:299.367735px;}
.x7e_c00433{left:301.412085px;}
.x6b_c00433{left:305.416635px;}
.x3d_c00433{left:307.396635px;}
.x32_c00433{left:316.034385px;}
.x92_c00433{left:318.415335px;}
.x88_c00433{left:323.464335px;}
.xc_c00433{left:329.141985px;}
.x72_c00433{left:330.230985px;}
.x33_c00433{left:339.596385px;}
.x3e_c00433{left:343.204935px;}
.x4c_c00433{left:344.828535px;}
.x3f_c00433{left:351.040785px;}
.xd_c00433{left:361.336785px;}
.x40_c00433{left:362.801985px;}
.x4d_c00433{left:372.499035px;}
.x20_c00433{left:374.013735px;}
.x7f_c00433{left:375.053235px;}
.x6c_c00433{left:384.156285px;}
.x34_c00433{left:385.220535px;}
.xe_c00433{left:395.501685px;}
.x21_c00433{left:405.594735px;}
.x41_c00433{left:406.644135px;}
.x93_c00433{left:412.658385px;}
.x36_c00433{left:415.712535px;}
.xf_c00433{left:417.143085px;}
.x65_c00433{left:419.469585px;}
.x10_c00433{left:427.147035px;}
.x76_c00433{left:428.740935px;}
.x37_c00433{left:434.344335px;}
.x51_c00433{left:438.541935px;}
.x80_c00433{left:441.011985px;}
.x77_c00433{left:444.773985px;}
.x35_c00433{left:449.763585px;}
.x22_c00433{left:452.337585px;}
.x8a_c00433{left:460.059585px;}
.x42_c00433{left:461.529735px;}
.x11_c00433{left:471.766335px;}
.x66_c00433{left:482.552385px;}
.x23_c00433{left:484.141335px;}
.x12_c00433{left:493.774035px;}
.x58_c00433{left:495.105585px;}
.x67_c00433{left:499.308135px;}
.x1b_c00433{left:505.253085px;}
.x73_c00433{left:515.346135px;}
.x43_c00433{left:517.128135px;}
.x78_c00433{left:526.533135px;}
.x13_c00433{left:527.978535px;}
.x44_c00433{left:530.671335px;}
.x5d_c00433{left:536.725185px;}
.x24_c00433{left:537.799335px;}
.x59_c00433{left:538.838835px;}
.x52_c00433{left:548.456685px;}
.x25_c00433{left:549.560535px;}
.x6e_c00433{left:552.188985px;}
.x81_c00433{left:555.055035px;}
.x26_c00433{left:560.252535px;}
.x5e_c00433{left:563.455185px;}
.x38_c00433{left:566.875635px;}
.x27_c00433{left:570.231735px;}
.x14_c00433{left:571.256385px;}
.x68_c00433{left:580.557435px;}
.x53_c00433{left:582.448335px;}
.x8f_c00433{left:588.759585px;}
.x15_c00433{left:592.234485px;}
.x5f_c00433{left:595.536135px;}
.x69_c00433{left:603.901635px;}
.x28_c00433{left:604.955985px;}
.x39_c00433{left:606.950835px;}
.x89_c00433{left:613.346235px;}
.x54_c00433{left:616.380585px;}
.x82_c00433{left:626.181585px;}
.x45_c00433{left:627.513135px;}
.x7b_c00433{left:635.136135px;}
.x79_c00433{left:636.393435px;}
.x29_c00433{left:637.561635px;}
.x83_c00433{left:641.511735px;}
.x6d_c00433{left:647.877435px;}
.x60_c00433{left:649.025835px;}
.x3a_c00433{left:656.579535px;}
.x2a_c00433{left:659.450535px;}
.x7a_c00433{left:670.221735px;}
.x16_c00433{left:672.518535px;}
.x2b_c00433{left:680.844435px;}
.x46_c00433{left:681.859185px;}
.x8b_c00433{left:684.507435px;}
.x2c_c00433{left:687.710085px;}
.x55_c00433{left:691.764135px;}
.x94_c00433{left:699.590085px;}
.x95_c00433{left:702.045285px;}
.x17_c00433{left:703.163985px;}
.x8e_c00433{left:707.945685px;}
.x5a_c00433{left:712.405635px;}
.x2d_c00433{left:714.697485px;}
.x84_c00433{left:723.087735px;}
.x18_c00433{left:724.265835px;}
.x5b_c00433{left:731.156235px;}
.x19_c00433{left:735.843885px;}
.x90_c00433{left:745.724085px;}
.x85_c00433{left:748.847535px;}
@media print{
.v3_c00433{vertical-align:-8.859840pt;}
.v0_c00433{vertical-align:0.000000pt;}
.v2_c00433{vertical-align:1.239040pt;}
.v1_c00433{vertical-align:6.336000pt;}
.ls17_c00433{letter-spacing:-2.593360pt;}
.ls1b_c00433{letter-spacing:-2.353126pt;}
.ls2e_c00433{letter-spacing:-2.199126pt;}
.lsf_c00433{letter-spacing:-2.168326pt;}
.ls13_c00433{letter-spacing:-2.143680pt;}
.ls1c_c00433{letter-spacing:-2.039351pt;}
.ls34_c00433{letter-spacing:-1.946560pt;}
.ls22_c00433{letter-spacing:-1.576960pt;}
.ls18_c00433{letter-spacing:-1.527680pt;}
.ls23_c00433{letter-spacing:-1.455876pt;}
.ls1d_c00433{letter-spacing:-1.146115pt;}
.ls2b_c00433{letter-spacing:-1.038069pt;}
.ls3a_c00433{letter-spacing:-0.470837pt;}
.ls35_c00433{letter-spacing:-0.043930pt;}
.lsd_c00433{letter-spacing:0.000000pt;}
.ls5_c00433{letter-spacing:0.080538pt;}
.ls3_c00433{letter-spacing:0.183286pt;}
.ls16_c00433{letter-spacing:0.421275pt;}
.lsa_c00433{letter-spacing:0.483227pt;}
.ls1_c00433{letter-spacing:0.520398pt;}
.ls24_c00433{letter-spacing:0.582350pt;}
.ls2a_c00433{letter-spacing:0.731036pt;}
.ls4_c00433{letter-spacing:0.861135pt;}
.ls31_c00433{letter-spacing:1.210563pt;}
.ls1f_c00433{letter-spacing:1.685099pt;}
.ls2d_c00433{letter-spacing:1.689609pt;}
.lsb_c00433{letter-spacing:1.709880pt;}
.ls38_c00433{letter-spacing:1.839980pt;}
.ls30_c00433{letter-spacing:1.953609pt;}
.ls1e_c00433{letter-spacing:1.980000pt;}
.ls7_c00433{letter-spacing:1.990296pt;}
.ls27_c00433{letter-spacing:1.994860pt;}
.ls11_c00433{letter-spacing:2.059200pt;}
.ls32_c00433{letter-spacing:2.094400pt;}
.ls2c_c00433{letter-spacing:2.305609pt;}
.ls26_c00433{letter-spacing:2.479541pt;}
.ls1a_c00433{letter-spacing:2.484282pt;}
.ls19_c00433{letter-spacing:2.640000pt;}
.ls25_c00433{letter-spacing:2.736800pt;}
.ls29_c00433{letter-spacing:2.745609pt;}
.ls20_c00433{letter-spacing:2.772000pt;}
.ls2_c00433{letter-spacing:2.837410pt;}
.ls33_c00433{letter-spacing:2.868800pt;}
.ls36_c00433{letter-spacing:2.886400pt;}
.ls28_c00433{letter-spacing:2.956800pt;}
.ls12_c00433{letter-spacing:3.062400pt;}
.lse_c00433{letter-spacing:3.097609pt;}
.ls2f_c00433{letter-spacing:3.141609pt;}
.ls10_c00433{letter-spacing:3.185609pt;}
.ls39_c00433{letter-spacing:3.238400pt;}
.ls0_c00433{letter-spacing:3.379200pt;}
.ls8_c00433{letter-spacing:5.142104pt;}
.ls6_c00433{letter-spacing:6.441568pt;}
.ls21_c00433{letter-spacing:43.084976pt;}
.lsc_c00433{letter-spacing:44.352176pt;}
.ls14_c00433{letter-spacing:45.619376pt;}
.ls9_c00433{letter-spacing:48.153776pt;}
.ls15_c00433{letter-spacing:49.420976pt;}
.ls37_c00433{letter-spacing:50.688176pt;}
.ws6_c00433{word-spacing:-85.617419pt;}
.wse_c00433{word-spacing:-77.959278pt;}
.ws11_c00433{word-spacing:-77.594308pt;}
.wsa_c00433{word-spacing:-17.402616pt;}
.ws10_c00433{word-spacing:-17.197924pt;}
.ws8_c00433{word-spacing:-16.349179pt;}
.ws2_c00433{word-spacing:-15.909319pt;}
.ws9_c00433{word-spacing:-15.568582pt;}
.ws5_c00433{word-spacing:-15.488044pt;}
.wsc_c00433{word-spacing:-15.216608pt;}
.ws4_c00433{word-spacing:-14.678400pt;}
.wsf_c00433{word-spacing:-0.000706pt;}
.ws12_c00433{word-spacing:0.000000pt;}
.ws1_c00433{word-spacing:0.483360pt;}
.wsd_c00433{word-spacing:5.142089pt;}
.ws3_c00433{word-spacing:6.169856pt;}
.ws7_c00433{word-spacing:6.442201pt;}
.ws0_c00433{word-spacing:8.239699pt;}
.wsb_c00433{word-spacing:9.849571pt;}
._17_c00433{margin-left:-8.363569pt;}
._15_c00433{margin-left:-6.752191pt;}
._4_c00433{margin-left:-4.150735pt;}
._13_c00433{margin-left:-2.006400pt;}
._1e_c00433{margin-left:-1.054416pt;}
._7_c00433{width:1.120340pt;}
._a_c00433{width:2.441360pt;}
._20_c00433{width:3.407328pt;}
._18_c00433{width:5.575631pt;}
._3_c00433{width:6.982849pt;}
._8_c00433{width:8.177752pt;}
._0_c00433{width:9.354674pt;}
._e_c00433{width:10.903493pt;}
._5_c00433{width:11.894706pt;}
._19_c00433{width:13.567586pt;}
._1d_c00433{width:16.930662pt;}
._b_c00433{width:17.842098pt;}
._12_c00433{width:19.005184pt;}
._23_c00433{width:20.691215pt;}
._16_c00433{width:21.930255pt;}
._c_c00433{width:23.114134pt;}
._22_c00433{width:24.471167pt;}
._2_c00433{width:27.297797pt;}
._14_c00433{width:28.723200pt;}
._21_c00433{width:29.975616pt;}
._6_c00433{width:32.029311pt;}
._1a_c00433{width:33.636108pt;}
._f_c00433{width:35.089472pt;}
._10_c00433{width:37.865790pt;}
._9_c00433{width:39.002720pt;}
._1_c00433{width:42.698211pt;}
._11_c00433{width:45.689600pt;}
._1b_c00433{width:48.942681pt;}
._1c_c00433{width:50.599868pt;}
._1f_c00433{width:71.747011pt;}
._d_c00433{width:430.877446pt;}
.fs29_c00433{font-size:11.792000pt;}
.fs0_c00433{font-size:24.640000pt;}
.fs17_c00433{font-size:27.280000pt;}
.fs2_c00433{font-size:30.976000pt;}
.fs22_c00433{font-size:33.792176pt;}
.fs24_c00433{font-size:39.072176pt;}
.fs14_c00433{font-size:39.600000pt;}
.fs7_c00433{font-size:41.184000pt;}
.fs25_c00433{font-size:41.888000pt;}
.fs18_c00433{font-size:43.084976pt;}
.fsf_c00433{font-size:43.648000pt;}
.fs6_c00433{font-size:44.352176pt;}
.fsc_c00433{font-size:44.704000pt;}
.fs19_c00433{font-size:45.056000pt;}
.fs9_c00433{font-size:45.619376pt;}
.fs21_c00433{font-size:46.112176pt;}
.fs11_c00433{font-size:48.153776pt;}
.fs1e_c00433{font-size:49.104000pt;}
.fs1f_c00433{font-size:49.280000pt;}
.fsa_c00433{font-size:49.420976pt;}
.fs28_c00433{font-size:50.688176pt;}
.fs10_c00433{font-size:52.800000pt;}
.fs1a_c00433{font-size:54.736000pt;}
.fs1b_c00433{font-size:54.912176pt;}
.fs15_c00433{font-size:55.440000pt;}
.fs26_c00433{font-size:55.616000pt;}
.fs1c_c00433{font-size:57.024176pt;}
.fsb_c00433{font-size:57.376000pt;}
.fs27_c00433{font-size:57.728000pt;}
.fse_c00433{font-size:59.136000pt;}
.fs5_c00433{font-size:60.192176pt;}
.fs8_c00433{font-size:61.248000pt;}
.fs20_c00433{font-size:61.424176pt;}
.fs1_c00433{font-size:61.952176pt;}
.fs23_c00433{font-size:62.832176pt;}
.fs4_c00433{font-size:63.712176pt;}
.fs3_c00433{font-size:64.768000pt;}
.fs12_c00433{font-size:67.232176pt;}
.fs16_c00433{font-size:67.584176pt;}
.fs1d_c00433{font-size:70.048000pt;}
.fsd_c00433{font-size:74.096000pt;}
.fs13_c00433{font-size:95.744176pt;}
.y0_c00433{bottom:0.000000pt;}
.y1_c00433{bottom:68.000000pt;}
.y1f_c00433{bottom:138.358920pt;}
.y1e_c00433{bottom:165.924920pt;}
.y1d_c00433{bottom:195.704120pt;}
.y1c_c00433{bottom:223.899320pt;}
.y1b_c00433{bottom:253.361720pt;}
.y1a_c00433{bottom:282.824120pt;}
.y19_c00433{bottom:312.282120pt;}
.y18_c00433{bottom:338.580920pt;}
.y17_c00433{bottom:338.897720pt;}
.y16_c00433{bottom:367.722120pt;}
.y15_c00433{bottom:420.948920pt;}
.y14_c00433{bottom:437.101320pt;}
.y13_c00433{bottom:449.144120pt;}
.y12_c00433{bottom:477.656120pt;}
.y11_c00433{bottom:506.801720pt;}
.y10_c00433{bottom:535.313720pt;}
.ye_c00433{bottom:564.138120pt;}
.yf_c00433{bottom:568.890120pt;}
.yd_c00433{bottom:586.314120pt;}
.yc_c00433{bottom:593.283720pt;}
.yb_c00433{bottom:609.444920pt;}
.ya_c00433{bottom:621.795720pt;}
.y9_c00433{bottom:644.926520pt;}
.y7_c00433{bottom:650.312120pt;}
.y8_c00433{bottom:650.628920pt;}
.y6_c00433{bottom:679.770120pt;}
.y5_c00433{bottom:716.523320pt;}
.y4_c00433{bottom:765.627320pt;}
.y3_c00433{bottom:795.723320pt;}
.y2_c00433{bottom:976.611720pt;}
.h2_c00433{height:25.698750pt;}
.h17_c00433{height:26.773828pt;}
.h18_c00433{height:28.694594pt;}
.h7_c00433{height:29.538549pt;}
.ha_c00433{height:30.382504pt;}
.h11_c00433{height:32.070415pt;}
.hc_c00433{height:32.914370pt;}
.h29_c00433{height:33.758325pt;}
.h22_c00433{height:35.244184pt;}
.h24_c00433{height:39.377427pt;}
.h14_c00433{height:41.301563pt;}
.h8_c00433{height:42.953625pt;}
.h25_c00433{height:43.687875pt;}
.h21_c00433{height:45.256579pt;}
.hf_c00433{height:45.523500pt;}
.h19_c00433{height:46.992000pt;}
.h1f_c00433{height:51.397500pt;}
.h10_c00433{height:55.068750pt;}
.h1a_c00433{height:57.087938pt;}
.h1c_c00433{height:57.271684pt;}
.h15_c00433{height:57.822188pt;}
.h27_c00433{height:58.005750pt;}
.h1b_c00433{height:58.038750pt;}
.h1d_c00433{height:59.474434pt;}
.h26_c00433{height:59.841375pt;}
.h9_c00433{height:60.111562pt;}
.h28_c00433{height:60.208500pt;}
.h20_c00433{height:60.254477pt;}
.h3_c00433{height:60.802673pt;}
.h23_c00433{height:61.666345pt;}
.he_c00433{height:61.677000pt;}
.hb_c00433{height:62.041713pt;}
.h5_c00433{height:62.530016pt;}
.h6_c00433{height:62.778559pt;}
.h4_c00433{height:63.566250pt;}
.h12_c00433{height:65.984704pt;}
.h1e_c00433{height:68.748281pt;}
.h16_c00433{height:70.488184pt;}
.hd_c00433{height:72.721172pt;}
.h13_c00433{height:93.967673pt;}
.h1_c00433{height:986.666667pt;}
.h0_c00433{height:1122.666667pt;}
.w1_c00433{width:689.333333pt;}
.w0_c00433{width:793.333333pt;}
.x0_c00433{left:0.000000pt;}
.x1_c00433{left:52.000000pt;}
.x3b_c00433{left:66.481053pt;}
.x2e_c00433{left:67.911053pt;}
.x3_c00433{left:68.887853pt;}
.x6f_c00433{left:69.785453pt;}
.x2_c00433{left:70.854653pt;}
.x8c_c00433{left:76.301853pt;}
.x61_c00433{left:78.361053pt;}
.x2f_c00433{left:87.887053pt;}
.x4_c00433{left:89.154253pt;}
.x4e_c00433{left:90.989053pt;}
.x3c_c00433{left:95.974253pt;}
.x86_c00433{left:97.083053pt;}
.x74_c00433{left:98.341453pt;}
.x1a_c00433{left:99.454653pt;}
.x4f_c00433{left:105.654253pt;}
.x5_c00433{left:106.886253pt;}
.x70_c00433{left:110.525053pt;}
.x1c_c00433{left:116.711453pt;}
.x7c_c00433{left:118.519853pt;}
.x62_c00433{left:125.713853pt;}
.x6_c00433{left:135.279453pt;}
.x56_c00433{left:136.837053pt;}
.x71_c00433{left:141.593453pt;}
.x5c_c00433{left:144.906653pt;}
.x1d_c00433{left:146.979053pt;}
.x1e_c00433{left:154.208253pt;}
.x7_c00433{left:155.400653pt;}
.x8d_c00433{left:157.336653pt;}
.x48_c00433{left:164.961853pt;}
.x63_c00433{left:174.043453pt;}
.x49_c00433{left:174.954253pt;}
.x50_c00433{left:184.458253pt;}
.x8_c00433{left:185.593453pt;}
.x6a_c00433{left:193.183453pt;}
.x1f_c00433{left:194.340653pt;}
.x4a_c00433{left:203.981053pt;}
.x87_c00433{left:205.103053pt;}
.x9_c00433{left:214.435453pt;}
.x4b_c00433{left:223.495053pt;}
.x7d_c00433{left:224.564253pt;}
.x30_c00433{left:233.430253pt;}
.xa_c00433{left:234.851453pt;}
.x75_c00433{left:244.034253pt;}
.x57_c00433{left:252.112653pt;}
.x31_c00433{left:253.613053pt;}
.x64_c00433{left:257.771053pt;}
.x47_c00433{left:261.374653pt;}
.xb_c00433{left:262.901453pt;}
.x91_c00433{left:266.104653pt;}
.x7e_c00433{left:267.921853pt;}
.x6b_c00433{left:271.481453pt;}
.x3d_c00433{left:273.241453pt;}
.x32_c00433{left:280.919453pt;}
.x92_c00433{left:283.035853pt;}
.x88_c00433{left:287.523853pt;}
.xc_c00433{left:292.570653pt;}
.x72_c00433{left:293.538653pt;}
.x33_c00433{left:301.863453pt;}
.x3e_c00433{left:305.071053pt;}
.x4c_c00433{left:306.514253pt;}
.x3f_c00433{left:312.036253pt;}
.xd_c00433{left:321.188253pt;}
.x40_c00433{left:322.490653pt;}
.x4d_c00433{left:331.110253pt;}
.x20_c00433{left:332.456653pt;}
.x7f_c00433{left:333.380653pt;}
.x6c_c00433{left:341.472253pt;}
.x34_c00433{left:342.418253pt;}
.xe_c00433{left:351.557053pt;}
.x21_c00433{left:360.528653pt;}
.x41_c00433{left:361.461453pt;}
.x93_c00433{left:366.807453pt;}
.x36_c00433{left:369.522253pt;}
.xf_c00433{left:370.793853pt;}
.x65_c00433{left:372.861853pt;}
.x10_c00433{left:379.686253pt;}
.x76_c00433{left:381.103053pt;}
.x37_c00433{left:386.083853pt;}
.x51_c00433{left:389.815053pt;}
.x80_c00433{left:392.010653pt;}
.x77_c00433{left:395.354653pt;}
.x35_c00433{left:399.789853pt;}
.x22_c00433{left:402.077853pt;}
.x8a_c00433{left:408.941853pt;}
.x42_c00433{left:410.248653pt;}
.x11_c00433{left:419.347853pt;}
.x66_c00433{left:428.935453pt;}
.x23_c00433{left:430.347853pt;}
.x12_c00433{left:438.910253pt;}
.x58_c00433{left:440.093853pt;}
.x67_c00433{left:443.829453pt;}
.x1b_c00433{left:449.113853pt;}
.x73_c00433{left:458.085453pt;}
.x43_c00433{left:459.669453pt;}
.x78_c00433{left:468.029453pt;}
.x13_c00433{left:469.314253pt;}
.x44_c00433{left:471.707853pt;}
.x5d_c00433{left:477.089053pt;}
.x24_c00433{left:478.043853pt;}
.x59_c00433{left:478.967853pt;}
.x52_c00433{left:487.517053pt;}
.x25_c00433{left:488.498253pt;}
.x6e_c00433{left:490.834653pt;}
.x81_c00433{left:493.382253pt;}
.x26_c00433{left:498.002253pt;}
.x5e_c00433{left:500.849053pt;}
.x38_c00433{left:503.889453pt;}
.x27_c00433{left:506.872653pt;}
.x14_c00433{left:507.783453pt;}
.x68_c00433{left:516.051053pt;}
.x53_c00433{left:517.731853pt;}
.x8f_c00433{left:523.341853pt;}
.x15_c00433{left:526.430653pt;}
.x5f_c00433{left:529.365453pt;}
.x69_c00433{left:536.801453pt;}
.x28_c00433{left:537.738653pt;}
.x39_c00433{left:539.511853pt;}
.x89_c00433{left:545.196653pt;}
.x54_c00433{left:547.893853pt;}
.x82_c00433{left:556.605853pt;}
.x45_c00433{left:557.789453pt;}
.x7b_c00433{left:564.565453pt;}
.x79_c00433{left:565.683053pt;}
.x29_c00433{left:566.721453pt;}
.x83_c00433{left:570.232653pt;}
.x6d_c00433{left:575.891053pt;}
.x60_c00433{left:576.911853pt;}
.x3a_c00433{left:583.626253pt;}
.x2a_c00433{left:586.178253pt;}
.x7a_c00433{left:595.752653pt;}
.x16_c00433{left:597.794253pt;}
.x2b_c00433{left:605.195053pt;}
.x46_c00433{left:606.097053pt;}
.x8b_c00433{left:608.451053pt;}
.x2c_c00433{left:611.297853pt;}
.x55_c00433{left:614.901453pt;}
.x94_c00433{left:621.857853pt;}
.x95_c00433{left:624.040253pt;}
.x17_c00433{left:625.034653pt;}
.x8e_c00433{left:629.285053pt;}
.x5a_c00433{left:633.249453pt;}
.x2d_c00433{left:635.286653pt;}
.x84_c00433{left:642.744653pt;}
.x18_c00433{left:643.791853pt;}
.x5b_c00433{left:649.916653pt;}
.x19_c00433{left:654.083453pt;}
.x90_c00433{left:662.865853pt;}
.x85_c00433{left:665.642253pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_dd88c4c1b920ae40fc4e9488.woff2')format("woff");}.ff1_c00434{font-family:ff1_c00434;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00434;src:url('chunks/assets/font_7e370c762f33a9dfc10c12f1.woff2')format("woff");}.ff2_c00434{font-family:ff2_c00434;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00434;src:url('chunks/assets/font_dd594ee1ba6b7377451d52f1.woff2')format("woff");}.ff3_c00434{font-family:ff3_c00434;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00434;src:url('chunks/assets/font_86a96d2651d4e8c07ff3417c.woff2')format("woff");}.ff4_c00434{font-family:ff4_c00434;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00434;src:url('chunks/assets/font_78e4caecd49a598cf99a1d1f.woff2')format("woff");}.ff5_c00434{font-family:ff5_c00434;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.md7_c00434{transform:matrix(0.041667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.041667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.041667,0.000000,0.000000,0.250000,0,0);}
.md9_c00434{transform:matrix(0.062501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062501,0.000000,0.000000,0.250000,0,0);}
.mb6_c00434{transform:matrix(0.068751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.068751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.068751,0.000000,0.000000,0.250000,0,0);}
.m62_c00434{transform:matrix(0.073170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073170,0.000000,0.000000,0.250000,0,0);}
.m35_c00434{transform:matrix(0.076390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076390,0.000000,0.000000,0.250000,0,0);}
.mc3_c00434{transform:matrix(0.090278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090278,0.000000,0.000000,0.250000,0,0);}
.me2_c00434{transform:matrix(0.100205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100205,0.000000,0.000000,0.250000,0,0);}
.m3b_c00434{transform:matrix(0.101795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101795,0.000000,0.000000,0.250000,0,0);}
.m82_c00434{transform:matrix(0.103572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103572,0.000000,0.000000,0.250000,0,0);}
.m31_c00434{transform:matrix(0.107555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107555,0.000000,0.000000,0.250000,0,0);}
.mc_c00434{transform:matrix(0.111439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111439,0.000000,0.000000,0.250000,0,0);}
.m46_c00434{transform:matrix(0.111884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111884,0.000000,0.000000,0.250000,0,0);}
.mc4_c00434{transform:matrix(0.116532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116532,0.000000,0.000000,0.250000,0,0);}
.mb7_c00434{transform:matrix(0.118750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00434{transform:matrix(0.121875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121875,0.000000,0.000000,0.250000,0,0);}
.mb8_c00434{transform:matrix(0.139063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139063,0.000000,0.000000,0.250000,0,0);}
.me1_c00434{transform:matrix(0.140023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140023,0.000000,0.000000,0.250000,0,0);}
.me5_c00434{transform:matrix(0.152777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152777,0.000000,0.000000,0.250000,0,0);}
.m81_c00434{transform:matrix(0.157142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157142,0.000000,0.000000,0.250000,0,0);}
.m99_c00434{transform:matrix(0.158392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158392,0.000000,0.000000,0.250000,0,0);}
.m4_c00434{transform:matrix(0.158929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158929,0.000000,0.000000,0.250000,0,0);}
.mb9_c00434{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00434{transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);}
.m44_c00434{transform:matrix(0.167257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167257,0.000000,0.000000,0.250000,0,0);}
.m66_c00434{transform:matrix(0.169512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169512,0.000000,0.000000,0.250000,0,0);}
.m52_c00434{transform:matrix(0.170333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170333,0.000000,0.000000,0.250000,0,0);}
.m23_c00434{transform:matrix(0.173666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173666,0.000000,0.000000,0.250000,0,0);}
.m61_c00434{transform:matrix(0.173781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173781,0.000000,0.000000,0.250000,0,0);}
.m1b_c00434{transform:matrix(0.176212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176212,0.000000,0.000000,0.250000,0,0);}
.me4_c00434{transform:matrix(0.184027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184027,0.000000,0.000000,0.250000,0,0);}
.m94_c00434{transform:matrix(0.184990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184990,0.000000,0.000000,0.250000,0,0);}
.mbc_c00434{transform:matrix(0.186432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186432,0.000000,0.000000,0.250000,0,0);}
.m37_c00434{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.mb_c00434{transform:matrix(0.191667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191667,0.000000,0.000000,0.250000,0,0);}
.m80_c00434{transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);}
.m6b_c00434{transform:matrix(0.196655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196655,0.000000,0.000000,0.250000,0,0);}
.mcf_c00434{transform:matrix(0.198594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198594,0.000000,0.000000,0.250000,0,0);}
.mc2_c00434{transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);}
.md_c00434{transform:matrix(0.203402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203402,0.000000,0.000000,0.250000,0,0);}
.m26_c00434{transform:matrix(0.209769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209769,0.000000,0.000000,0.250000,0,0);}
.md6_c00434{transform:matrix(0.210648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210648,0.000000,0.000000,0.250000,0,0);}
.m41_c00434{transform:matrix(0.211088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211088,0.000000,0.000000,0.250000,0,0);}
.md8_c00434{transform:matrix(0.211111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211111,0.000000,0.000000,0.250000,0,0);}
.mf3_c00434{transform:matrix(0.211669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211669,0.000000,0.000000,0.250000,0,0);}
.m36_c00434{transform:matrix(0.211806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211806,0.000000,0.000000,0.250000,0,0);}
.me6_c00434{transform:matrix(0.213542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213542,0.000000,0.000000,0.250000,0,0);}
.m79_c00434{transform:matrix(0.214554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214554,0.000000,0.000000,0.250000,0,0);}
.m8d_c00434{transform:matrix(0.217368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217368,0.000000,0.000000,0.250000,0,0);}
.m47_c00434{transform:matrix(0.220938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220938,0.000000,0.000000,0.250000,0,0);}
.mce_c00434{transform:matrix(0.222923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222923,0.000000,0.000000,0.250000,0,0);}
.mcb_c00434{transform:matrix(0.228390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228390,0.000000,0.000000,0.250000,0,0);}
.m6f_c00434{transform:matrix(0.229796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229796,0.000000,0.000000,0.250000,0,0);}
.m83_c00434{transform:matrix(0.231004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231004,0.000000,0.000000,0.250000,0,0);}
.mf4_c00434{transform:matrix(0.236404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236404,0.000000,0.000000,0.250000,0,0);}
.m9d_c00434{transform:matrix(0.236745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236745,0.000000,0.000000,0.250000,0,0);}
.m40_c00434{transform:matrix(0.240630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240630,0.000000,0.000000,0.250000,0,0);}
.mad_c00434{transform:matrix(0.244592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244592,0.000000,0.000000,0.250000,0,0);}
.ma2_c00434{transform:matrix(0.246057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246057,0.000000,0.000000,0.250000,0,0);}
.mbf_c00434{transform:matrix(0.247563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247563,0.000000,0.000000,0.250000,0,0);}
.m0_c00434{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00434{transform:matrix(0.250237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250237,0.000000,0.000000,0.250000,0,0);}
.m7a_c00434{transform:matrix(0.251085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251085,0.000000,0.000000,0.250000,0,0);}
.md3_c00434{transform:matrix(0.254842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254842,0.000000,0.000000,0.250000,0,0);}
.m87_c00434{transform:matrix(0.255116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255116,0.000000,0.000000,0.250000,0,0);}
.md2_c00434{transform:matrix(0.255201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255201,0.000000,0.000000,0.250000,0,0);}
.m5b_c00434{transform:matrix(0.255262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255262,0.000000,0.000000,0.250000,0,0);}
.mc1_c00434{transform:matrix(0.258908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258908,0.000000,0.000000,0.250000,0,0);}
.mc8_c00434{transform:matrix(0.259844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259844,0.000000,0.000000,0.250000,0,0);}
.m5_c00434{transform:matrix(0.261436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261436,0.000000,0.000000,0.250000,0,0);}
.me8_c00434{transform:matrix(0.261817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261817,0.000000,0.000000,0.250000,0,0);}
.m93_c00434{transform:matrix(0.261986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261986,0.000000,0.000000,0.250000,0,0);}
.mb4_c00434{transform:matrix(0.265045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265045,0.000000,0.000000,0.250000,0,0);}
.maa_c00434{transform:matrix(0.265209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265209,0.000000,0.000000,0.250000,0,0);}
.m38_c00434{transform:matrix(0.268410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268410,0.000000,0.000000,0.250000,0,0);}
.mec_c00434{transform:matrix(0.268907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268907,0.000000,0.000000,0.250000,0,0);}
.m1e_c00434{transform:matrix(0.270034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270034,0.000000,0.000000,0.250000,0,0);}
.m89_c00434{transform:matrix(0.270118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270118,0.000000,0.000000,0.250000,0,0);}
.m63_c00434{transform:matrix(0.271556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271556,0.000000,0.000000,0.250000,0,0);}
.mf_c00434{transform:matrix(0.274772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274772,0.000000,0.000000,0.250000,0,0);}
.m78_c00434{transform:matrix(0.275407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275407,0.000000,0.000000,0.250000,0,0);}
.m42_c00434{transform:matrix(0.276480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276480,0.000000,0.000000,0.250000,0,0);}
.mc7_c00434{transform:matrix(0.276559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276559,0.000000,0.000000,0.250000,0,0);}
.m33_c00434{transform:matrix(0.276595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276595,0.000000,0.000000,0.250000,0,0);}
.m5c_c00434{transform:matrix(0.276713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276713,0.000000,0.000000,0.250000,0,0);}
.m19_c00434{transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);}
.m10_c00434{transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);}
.mbb_c00434{transform:matrix(0.278214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278214,0.000000,0.000000,0.250000,0,0);}
.m75_c00434{transform:matrix(0.279335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279335,0.000000,0.000000,0.250000,0,0);}
.m90_c00434{transform:matrix(0.280225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280225,0.000000,0.000000,0.250000,0,0);}
.mda_c00434{transform:matrix(0.280503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280503,0.000000,0.000000,0.250000,0,0);}
.mdf_c00434{transform:matrix(0.280733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280733,0.000000,0.000000,0.250000,0,0);}
.mde_c00434{transform:matrix(0.280961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280961,0.000000,0.000000,0.250000,0,0);}
.m69_c00434{transform:matrix(0.281449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281449,0.000000,0.000000,0.250000,0,0);}
.mcd_c00434{transform:matrix(0.282201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282201,0.000000,0.000000,0.250000,0,0);}
.m70_c00434{transform:matrix(0.282565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282565,0.000000,0.000000,0.250000,0,0);}
.m6e_c00434{transform:matrix(0.282792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282792,0.000000,0.000000,0.250000,0,0);}
.ma3_c00434{transform:matrix(0.283178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283178,0.000000,0.000000,0.250000,0,0);}
.m45_c00434{transform:matrix(0.283515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283515,0.000000,0.000000,0.250000,0,0);}
.m57_c00434{transform:matrix(0.283824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283824,0.000000,0.000000,0.250000,0,0);}
.mdd_c00434{transform:matrix(0.284461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284461,0.000000,0.000000,0.250000,0,0);}
.m4e_c00434{transform:matrix(0.286526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286526,0.000000,0.000000,0.250000,0,0);}
.me3_c00434{transform:matrix(0.286538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286538,0.000000,0.000000,0.250000,0,0);}
.maf_c00434{transform:matrix(0.286591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286591,0.000000,0.000000,0.250000,0,0);}
.m3_c00434{transform:matrix(0.287241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287241,0.000000,0.000000,0.250000,0,0);}
.m5f_c00434{transform:matrix(0.287842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287842,0.000000,0.000000,0.250000,0,0);}
.mf6_c00434{transform:matrix(0.288240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288240,0.000000,0.000000,0.250000,0,0);}
.m85_c00434{transform:matrix(0.289806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289806,0.000000,0.000000,0.250000,0,0);}
.m59_c00434{transform:matrix(0.289848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289848,0.000000,0.000000,0.250000,0,0);}
.m72_c00434{transform:matrix(0.290366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290366,0.000000,0.000000,0.250000,0,0);}
.m9e_c00434{transform:matrix(0.290372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290372,0.000000,0.000000,0.250000,0,0);}
.m3a_c00434{transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);}
.m13_c00434{transform:matrix(0.291154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291154,0.000000,0.000000,0.250000,0,0);}
.m2b_c00434{transform:matrix(0.292280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292280,0.000000,0.000000,0.250000,0,0);}
.m29_c00434{transform:matrix(0.293044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293044,0.000000,0.000000,0.250000,0,0);}
.m58_c00434{transform:matrix(0.293070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293070,0.000000,0.000000,0.250000,0,0);}
.m4c_c00434{transform:matrix(0.293295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293295,0.000000,0.000000,0.250000,0,0);}
.m9f_c00434{transform:matrix(0.294225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294225,0.000000,0.000000,0.250000,0,0);}
.m8c_c00434{transform:matrix(0.295750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295750,0.000000,0.000000,0.250000,0,0);}
.m84_c00434{transform:matrix(0.296059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296059,0.000000,0.000000,0.250000,0,0);}
.m5d_c00434{transform:matrix(0.296090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296090,0.000000,0.000000,0.250000,0,0);}
.m30_c00434{transform:matrix(0.296232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296232,0.000000,0.000000,0.250000,0,0);}
.m5a_c00434{transform:matrix(0.297320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297320,0.000000,0.000000,0.250000,0,0);}
.m8a_c00434{transform:matrix(0.297328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297328,0.000000,0.000000,0.250000,0,0);}
.m15_c00434{transform:matrix(0.297585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297585,0.000000,0.000000,0.250000,0,0);}
.m2c_c00434{transform:matrix(0.297691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297691,0.000000,0.000000,0.250000,0,0);}
.mdc_c00434{transform:matrix(0.297736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297736,0.000000,0.000000,0.250000,0,0);}
.m71_c00434{transform:matrix(0.298114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298114,0.000000,0.000000,0.250000,0,0);}
.mbd_c00434{transform:matrix(0.298258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298258,0.000000,0.000000,0.250000,0,0);}
.m1f_c00434{transform:matrix(0.299046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299046,0.000000,0.000000,0.250000,0,0);}
.mc5_c00434{transform:matrix(0.299332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299332,0.000000,0.000000,0.250000,0,0);}
.mf0_c00434{transform:matrix(0.299668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299668,0.000000,0.000000,0.250000,0,0);}
.m2d_c00434{transform:matrix(0.300243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300243,0.000000,0.000000,0.250000,0,0);}
.m88_c00434{transform:matrix(0.300604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300604,0.000000,0.000000,0.250000,0,0);}
.m2a_c00434{transform:matrix(0.301041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301041,0.000000,0.000000,0.250000,0,0);}
.mf2_c00434{transform:matrix(0.301287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301287,0.000000,0.000000,0.250000,0,0);}
.m7e_c00434{transform:matrix(0.301753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301753,0.000000,0.000000,0.250000,0,0);}
.m77_c00434{transform:matrix(0.302416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302416,0.000000,0.000000,0.250000,0,0);}
.mae_c00434{transform:matrix(0.302850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302850,0.000000,0.000000,0.250000,0,0);}
.m43_c00434{transform:matrix(0.302890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302890,0.000000,0.000000,0.250000,0,0);}
.m24_c00434{transform:matrix(0.302933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302933,0.000000,0.000000,0.250000,0,0);}
.mab_c00434{transform:matrix(0.303509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303509,0.000000,0.000000,0.250000,0,0);}
.m56_c00434{transform:matrix(0.304121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304121,0.000000,0.000000,0.250000,0,0);}
.m2f_c00434{transform:matrix(0.306205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306205,0.000000,0.000000,0.250000,0,0);}
.ma5_c00434{transform:matrix(0.306668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306668,0.000000,0.000000,0.250000,0,0);}
.m1a_c00434{transform:matrix(0.307603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307603,0.000000,0.000000,0.250000,0,0);}
.m21_c00434{transform:matrix(0.307789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307789,0.000000,0.000000,0.250000,0,0);}
.meb_c00434{transform:matrix(0.309324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309324,0.000000,0.000000,0.250000,0,0);}
.m9_c00434{transform:matrix(0.309968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309968,0.000000,0.000000,0.250000,0,0);}
.ma6_c00434{transform:matrix(0.310826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310826,0.000000,0.000000,0.250000,0,0);}
.m6_c00434{transform:matrix(0.311659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311659,0.000000,0.000000,0.250000,0,0);}
.m6a_c00434{transform:matrix(0.313731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313731,0.000000,0.000000,0.250000,0,0);}
.m53_c00434{transform:matrix(0.313922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313922,0.000000,0.000000,0.250000,0,0);}
.m3e_c00434{transform:matrix(0.314588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314588,0.000000,0.000000,0.250000,0,0);}
.m95_c00434{transform:matrix(0.314789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314789,0.000000,0.000000,0.250000,0,0);}
.m3c_c00434{transform:matrix(0.315324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315324,0.000000,0.000000,0.250000,0,0);}
.m92_c00434{transform:matrix(0.315677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315677,0.000000,0.000000,0.250000,0,0);}
.md5_c00434{transform:matrix(0.316121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316121,0.000000,0.000000,0.250000,0,0);}
.m91_c00434{transform:matrix(0.316760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316760,0.000000,0.000000,0.250000,0,0);}
.m8_c00434{transform:matrix(0.316883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316883,0.000000,0.000000,0.250000,0,0);}
.m4a_c00434{transform:matrix(0.317967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317967,0.000000,0.000000,0.250000,0,0);}
.ma4_c00434{transform:matrix(0.318328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318328,0.000000,0.000000,0.250000,0,0);}
.m2e_c00434{transform:matrix(0.319166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319166,0.000000,0.000000,0.250000,0,0);}
.m18_c00434{transform:matrix(0.320351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320351,0.000000,0.000000,0.250000,0,0);}
.me_c00434{transform:matrix(0.321035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321035,0.000000,0.000000,0.250000,0,0);}
.m25_c00434{transform:matrix(0.321210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321210,0.000000,0.000000,0.250000,0,0);}
.m65_c00434{transform:matrix(0.321917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321917,0.000000,0.000000,0.250000,0,0);}
.me7_c00434{transform:matrix(0.322291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322291,0.000000,0.000000,0.250000,0,0);}
.ma7_c00434{transform:matrix(0.322678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322678,0.000000,0.000000,0.250000,0,0);}
.mac_c00434{transform:matrix(0.323296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323296,0.000000,0.000000,0.250000,0,0);}
.mb3_c00434{transform:matrix(0.324116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324116,0.000000,0.000000,0.250000,0,0);}
.mcc_c00434{transform:matrix(0.324117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324117,0.000000,0.000000,0.250000,0,0);}
.m1c_c00434{transform:matrix(0.324701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324701,0.000000,0.000000,0.250000,0,0);}
.m6d_c00434{transform:matrix(0.324994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324994,0.000000,0.000000,0.250000,0,0);}
.m64_c00434{transform:matrix(0.325681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325681,0.000000,0.000000,0.250000,0,0);}
.m28_c00434{transform:matrix(0.326588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326588,0.000000,0.000000,0.250000,0,0);}
.m54_c00434{transform:matrix(0.327346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327346,0.000000,0.000000,0.250000,0,0);}
.m98_c00434{transform:matrix(0.327803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327803,0.000000,0.000000,0.250000,0,0);}
.m74_c00434{transform:matrix(0.328605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328605,0.000000,0.000000,0.250000,0,0);}
.m55_c00434{transform:matrix(0.329866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329866,0.000000,0.000000,0.250000,0,0);}
.me9_c00434{transform:matrix(0.330222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330222,0.000000,0.000000,0.250000,0,0);}
.m32_c00434{transform:matrix(0.330718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330718,0.000000,0.000000,0.250000,0,0);}
.ma8_c00434{transform:matrix(0.331101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331101,0.000000,0.000000,0.250000,0,0);}
.m76_c00434{transform:matrix(0.331408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331408,0.000000,0.000000,0.250000,0,0);}
.m4f_c00434{transform:matrix(0.331972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331972,0.000000,0.000000,0.250000,0,0);}
.ma_c00434{transform:matrix(0.333414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333414,0.000000,0.000000,0.250000,0,0);}
.mee_c00434{transform:matrix(0.334731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334731,0.000000,0.000000,0.250000,0,0);}
.mb0_c00434{transform:matrix(0.334873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334873,0.000000,0.000000,0.250000,0,0);}
.m34_c00434{transform:matrix(0.335181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335181,0.000000,0.000000,0.250000,0,0);}
.m68_c00434{transform:matrix(0.335974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335974,0.000000,0.000000,0.250000,0,0);}
.m9b_c00434{transform:matrix(0.336305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336305,0.000000,0.000000,0.250000,0,0);}
.md1_c00434{transform:matrix(0.336348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336348,0.000000,0.000000,0.250000,0,0);}
.mc0_c00434{transform:matrix(0.336374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336374,0.000000,0.000000,0.250000,0,0);}
.mf5_c00434{transform:matrix(0.336513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336513,0.000000,0.000000,0.250000,0,0);}
.mea_c00434{transform:matrix(0.336731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336731,0.000000,0.000000,0.250000,0,0);}
.m67_c00434{transform:matrix(0.337215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337215,0.000000,0.000000,0.250000,0,0);}
.m22_c00434{transform:matrix(0.337557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337557,0.000000,0.000000,0.250000,0,0);}
.m49_c00434{transform:matrix(0.338029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338029,0.000000,0.000000,0.250000,0,0);}
.m60_c00434{transform:matrix(0.338964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338964,0.000000,0.000000,0.250000,0,0);}
.mc6_c00434{transform:matrix(0.340375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340375,0.000000,0.000000,0.250000,0,0);}
.m7b_c00434{transform:matrix(0.340617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340617,0.000000,0.000000,0.250000,0,0);}
.mb1_c00434{transform:matrix(0.341928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341928,0.000000,0.000000,0.250000,0,0);}
.mdb_c00434{transform:matrix(0.342083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342083,0.000000,0.000000,0.250000,0,0);}
.m1_c00434{transform:matrix(0.342610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342610,0.000000,0.000000,0.250000,0,0);}
.m73_c00434{transform:matrix(0.343359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343359,0.000000,0.000000,0.250000,0,0);}
.m7_c00434{transform:matrix(0.343492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343492,0.000000,0.000000,0.250000,0,0);}
.m17_c00434{transform:matrix(0.343857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343857,0.000000,0.000000,0.250000,0,0);}
.m11_c00434{transform:matrix(0.344061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344061,0.000000,0.000000,0.250000,0,0);}
.m2_c00434{transform:matrix(0.344996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344996,0.000000,0.000000,0.250000,0,0);}
.mca_c00434{transform:matrix(0.345224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345224,0.000000,0.000000,0.250000,0,0);}
.mef_c00434{transform:matrix(0.345283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345283,0.000000,0.000000,0.250000,0,0);}
.m16_c00434{transform:matrix(0.347393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347393,0.000000,0.000000,0.250000,0,0);}
.m39_c00434{transform:matrix(0.347953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347953,0.000000,0.000000,0.250000,0,0);}
.ma1_c00434{transform:matrix(0.348337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348337,0.000000,0.000000,0.250000,0,0);}
.ma9_c00434{transform:matrix(0.348411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348411,0.000000,0.000000,0.250000,0,0);}
.m96_c00434{transform:matrix(0.354020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354020,0.000000,0.000000,0.250000,0,0);}
.m50_c00434{transform:matrix(0.354321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354321,0.000000,0.000000,0.250000,0,0);}
.m7c_c00434{transform:matrix(0.354447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354447,0.000000,0.000000,0.250000,0,0);}
.m20_c00434{transform:matrix(0.354528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354528,0.000000,0.000000,0.250000,0,0);}
.md4_c00434{transform:matrix(0.355470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355470,0.000000,0.000000,0.250000,0,0);}
.m27_c00434{transform:matrix(0.356715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356715,0.000000,0.000000,0.250000,0,0);}
.m3d_c00434{transform:matrix(0.356907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356907,0.000000,0.000000,0.250000,0,0);}
.m4d_c00434{transform:matrix(0.357564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357564,0.000000,0.000000,0.250000,0,0);}
.m9a_c00434{transform:matrix(0.363014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363014,0.000000,0.000000,0.250000,0,0);}
.m14_c00434{transform:matrix(0.363517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363517,0.000000,0.000000,0.250000,0,0);}
.med_c00434{transform:matrix(0.363737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363737,0.000000,0.000000,0.250000,0,0);}
.m5e_c00434{transform:matrix(0.366717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366717,0.000000,0.000000,0.250000,0,0);}
.ma0_c00434{transform:matrix(0.366925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366925,0.000000,0.000000,0.250000,0,0);}
.mba_c00434{transform:matrix(0.367366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367366,0.000000,0.000000,0.250000,0,0);}
.m8e_c00434{transform:matrix(0.367652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367652,0.000000,0.000000,0.250000,0,0);}
.m86_c00434{transform:matrix(0.367834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367834,0.000000,0.000000,0.250000,0,0);}
.m8f_c00434{transform:matrix(0.368194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368194,0.000000,0.000000,0.250000,0,0);}
.mbe_c00434{transform:matrix(0.368804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368804,0.000000,0.000000,0.250000,0,0);}
.m97_c00434{transform:matrix(0.370983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370983,0.000000,0.000000,0.250000,0,0);}
.mf1_c00434{transform:matrix(0.374487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374487,0.000000,0.000000,0.250000,0,0);}
.m12_c00434{transform:matrix(0.378559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378559,0.000000,0.000000,0.250000,0,0);}
.m6c_c00434{transform:matrix(0.381057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381057,0.000000,0.000000,0.250000,0,0);}
.mc9_c00434{transform:matrix(0.387514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387514,0.000000,0.000000,0.250000,0,0);}
.m3f_c00434{transform:matrix(0.387649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387649,0.000000,0.000000,0.250000,0,0);}
.m1d_c00434{transform:matrix(0.394032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394032,0.000000,0.000000,0.250000,0,0);}
.md0_c00434{transform:matrix(0.398379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398379,0.000000,0.000000,0.250000,0,0);}
.m51_c00434{transform:matrix(0.401435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401435,0.000000,0.000000,0.250000,0,0);}
.m48_c00434{transform:matrix(0.401851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401851,0.000000,0.000000,0.250000,0,0);}
.m7d_c00434{transform:matrix(0.433227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433227,0.000000,0.000000,0.250000,0,0);}
.mb2_c00434{transform:matrix(0.438992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438992,0.000000,0.000000,0.250000,0,0);}
.m9c_c00434{transform:matrix(0.446385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446385,0.000000,0.000000,0.250000,0,0);}
.m8b_c00434{transform:matrix(0.471652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471652,0.000000,0.000000,0.250000,0,0);}
.m4b_c00434{transform:matrix(0.480074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480074,0.000000,0.000000,0.250000,0,0);}
.v0_c00434{vertical-align:0.000000px;}
.ls1d_c00434{letter-spacing:-2.647267px;}
.lsd_c00434{letter-spacing:-2.515590px;}
.ls17_c00434{letter-spacing:-2.474017px;}
.ls28_c00434{letter-spacing:-2.411640px;}
.ls12_c00434{letter-spacing:-2.224530px;}
.ls21_c00434{letter-spacing:-2.189880px;}
.ls1e_c00434{letter-spacing:-1.801800px;}
.ls1a_c00434{letter-spacing:-1.649340px;}
.ls26_c00434{letter-spacing:-1.387168px;}
.ls20_c00434{letter-spacing:-1.358280px;}
.lsc_c00434{letter-spacing:-0.869675px;}
.ls18_c00434{letter-spacing:-0.323433px;}
.lsf_c00434{letter-spacing:-0.100624px;}
.ls6_c00434{letter-spacing:0.000000px;}
.ls8_c00434{letter-spacing:0.155866px;}
.ls29_c00434{letter-spacing:0.258746px;}
.ls2_c00434{letter-spacing:0.740302px;}
.ls1c_c00434{letter-spacing:1.372793px;}
.ls15_c00434{letter-spacing:1.466230px;}
.lsb_c00434{letter-spacing:1.875911px;}
.ls24_c00434{letter-spacing:1.881000px;}
.ls1f_c00434{letter-spacing:1.940598px;}
.ls10_c00434{letter-spacing:2.091533px;}
.ls13_c00434{letter-spacing:2.218174px;}
.ls19_c00434{letter-spacing:2.356200px;}
.ls27_c00434{letter-spacing:2.653200px;}
.ls3_c00434{letter-spacing:2.659338px;}
.ls14_c00434{letter-spacing:2.772000px;}
.ls5_c00434{letter-spacing:2.968396px;}
.ls4_c00434{letter-spacing:3.104957px;}
.ls11_c00434{letter-spacing:3.177900px;}
.ls7_c00434{letter-spacing:3.247200px;}
.ls1_c00434{letter-spacing:3.342141px;}
.ls23_c00434{letter-spacing:3.455110px;}
.ls22_c00434{letter-spacing:3.544200px;}
.lse_c00434{letter-spacing:3.564000px;}
.ls9_c00434{letter-spacing:3.593700px;}
.ls0_c00434{letter-spacing:8.833572px;}
.lsa_c00434{letter-spacing:49.896198px;}
.ls16_c00434{letter-spacing:51.321798px;}
.ls25_c00434{letter-spacing:57.024198px;}
.ls1b_c00434{letter-spacing:58.449798px;}
.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;}
}
.ws1_c00434{word-spacing:-21.310641px;}
.ws9_c00434{word-spacing:-21.073457px;}
.ws4_c00434{word-spacing:-20.627838px;}
.ws3_c00434{word-spacing:-18.708802px;}
.ws0_c00434{word-spacing:-17.968500px;}
.ws8_c00434{word-spacing:-16.581332px;}
.ws6_c00434{word-spacing:-1.365606px;}
.wsa_c00434{word-spacing:0.000000px;}
.ws7_c00434{word-spacing:4.384314px;}
.ws5_c00434{word-spacing:4.671810px;}
.ws2_c00434{word-spacing:7.474896px;}
._6_c00434{margin-left:-20.037600px;}
._c_c00434{margin-left:-10.565478px;}
._12_c00434{margin-left:-8.445195px;}
._1b_c00434{margin-left:-5.491174px;}
._17_c00434{margin-left:-4.097214px;}
._5_c00434{margin-left:-2.730420px;}
._10_c00434{width:1.507968px;}
._13_c00434{width:2.731212px;}
._a_c00434{width:5.505192px;}
._14_c00434{width:7.460521px;}
._9_c00434{width:8.598150px;}
._0_c00434{width:9.631116px;}
._2_c00434{width:11.571714px;}
._19_c00434{width:13.440438px;}
._f_c00434{width:14.734368px;}
._8_c00434{width:21.274704px;}
._3_c00434{width:22.712184px;}
._11_c00434{width:24.618132px;}
._d_c00434{width:26.521506px;}
._1a_c00434{width:31.984524px;}
._1_c00434{width:34.140150px;}
._16_c00434{width:35.721378px;}
._b_c00434{width:37.086984px;}
._7_c00434{width:38.625444px;}
._1c_c00434{width:40.525056px;}
._15_c00434{width:43.797600px;}
._4_c00434{width:45.405756px;}
._e_c00434{width:50.358528px;}
._18_c00434{width:1395.282240px;}
.fc0_c00434{color:transparent;}
.fs14_c00434{font-size:15.840000px;}
.fs8_c00434{font-size:27.720000px;}
.fs7_c00434{font-size:33.264000px;}
.fs1d_c00434{font-size:33.660000px;}
.fs19_c00434{font-size:37.620000px;}
.fs15_c00434{font-size:38.808000px;}
.fs1c_c00434{font-size:39.600000px;}
.fsc_c00434{font-size:47.124000px;}
.fs13_c00434{font-size:48.312000px;}
.fs2_c00434{font-size:49.896198px;}
.fs9_c00434{font-size:51.321798px;}
.fs11_c00434{font-size:51.480000px;}
.fs1b_c00434{font-size:53.064000px;}
.fs6_c00434{font-size:55.440000px;}
.fs1a_c00434{font-size:57.024198px;}
.fsf_c00434{font-size:58.449798px;}
.fs16_c00434{font-size:62.568000px;}
.fs5_c00434{font-size:63.558000px;}
.fse_c00434{font-size:64.548000px;}
.fs0_c00434{font-size:64.944000px;}
.fsa_c00434{font-size:68.706198px;}
.fsd_c00434{font-size:68.904000px;}
.fs18_c00434{font-size:69.102198px;}
.fsb_c00434{font-size:70.686198px;}
.fs17_c00434{font-size:70.884000px;}
.fs3_c00434{font-size:71.280000px;}
.fs1_c00434{font-size:71.874000px;}
.fs4_c00434{font-size:72.864000px;}
.fs12_c00434{font-size:73.656198px;}
.fs10_c00434{font-size:75.636198px;}
.y0_c00434{bottom:0.000000px;}
.y1_c00434{bottom:76.500000px;}
.y1f_c00434{bottom:120.731535px;}
.y1e_c00434{bottom:150.669135px;}
.y1d_c00434{bottom:218.380185px;}
.y1c_c00434{bottom:245.822985px;}
.y1b_c00434{bottom:250.817535px;}
.y1a_c00434{bottom:282.532185px;}
.y19_c00434{bottom:314.608185px;}
.y20_c00434{bottom:326.017935px;}
.y18_c00434{bottom:348.471135px;}
.y17_c00434{bottom:381.259935px;}
.y16_c00434{bottom:414.043785px;}
.y13_c00434{bottom:446.119043px;}
.y14_c00434{bottom:446.119785px;}
.y15_c00434{bottom:446.481135px;}
.y12_c00434{bottom:478.552185px;}
.y11_c00434{bottom:510.628185px;}
.y10_c00434{bottom:542.709135px;}
.yf_c00434{bottom:575.849385px;}
.ye_c00434{bottom:605.786985px;}
.yd_c00434{bottom:638.219385px;}
.yc_c00434{bottom:670.656735px;}
.yb_c00434{bottom:705.940335px;}
.ya_c00434{bottom:759.756735px;}
.y9_c00434{bottom:771.161535px;}
.y8_c00434{bottom:780.427935px;}
.y7_c00434{bottom:805.732335px;}
.y6_c00434{bottom:838.164735px;}
.y4_c00434{bottom:871.660890px;}
.y5_c00434{bottom:871.661385px;}
.y3_c00434{bottom:904.093785px;}
.y2_c00434{bottom:1053.781785px;}
.h15_c00434{height:15.546094px;}
.ha_c00434{height:28.911094px;}
.h1f_c00434{height:33.035449px;}
.h4_c00434{height:33.230868px;}
.hb_c00434{height:34.180317px;}
.h9_c00434{height:34.693313px;}
.h1b_c00434{height:37.978116px;}
.h16_c00434{height:38.087930px;}
.h11_c00434{height:38.927565px;}
.h1a_c00434{height:39.236484px;}
.h1d_c00434{height:41.301563px;}
.he_c00434{height:46.249629px;}
.h13_c00434{height:50.524805px;}
.h1c_c00434{height:55.344094px;}
.h8_c00434{height:57.822188px;}
.h17_c00434{height:65.256469px;}
.h7_c00434{height:66.289008px;}
.h10_c00434{height:67.321547px;}
.hc_c00434{height:67.431376px;}
.hf_c00434{height:67.591863px;}
.h1e_c00434{height:67.625508px;}
.h2_c00434{height:67.734563px;}
.h19_c00434{height:67.820028px;}
.hd_c00434{height:69.374638px;}
.h5_c00434{height:69.957422px;}
.h3_c00434{height:70.540400px;}
.h18_c00434{height:71.437781px;}
.h6_c00434{height:71.512031px;}
.h14_c00434{height:72.289530px;}
.h12_c00434{height:74.232792px;}
.h1_c00434{height:1110.000000px;}
.h0_c00434{height:1263.000000px;}
.w1_c00434{width:775.500000px;}
.w0_c00434{width:892.500000px;}
.x0_c00434{left:0.000000px;}
.x1_c00434{left:58.500000px;}
.x35_c00434{left:80.849985px;}
.x5_c00434{left:82.191435px;}
.x6d_c00434{left:83.225985px;}
.x16_c00434{left:84.242567px;}
.x6e_c00434{left:94.210035px;}
.x17_c00434{left:103.179435px;}
.x75_c00434{left:104.382285px;}
.x18_c00434{left:107.055285px;}
.x34_c00434{left:108.203685px;}
.x40_c00434{left:112.148835px;}
.x26_c00434{left:113.569485px;}
.x64_c00434{left:115.237635px;}
.x41_c00434{left:123.617985px;}
.x6f_c00434{left:125.395035px;}
.x19_c00434{left:126.840435px;}
.x8c_c00434{left:128.033385px;}
.x80_c00434{left:130.057935px;}
.x37_c00434{left:134.240685px;}
.x6_c00434{left:135.587085px;}
.x86_c00434{left:136.661235px;}
.x8e_c00434{left:137.705685px;}
.x1a_c00434{left:145.665285px;}
.x6a_c00434{left:146.991885px;}
.x95_c00434{left:148.343235px;}
.x7_c00434{left:156.956235px;}
.x8f_c00434{left:158.431335px;}
.x58_c00434{left:166.905735px;}
.x30_c00434{left:168.227385px;}
.x7b_c00434{left:169.286685px;}
.x38_c00434{left:178.637235px;}
.x39_c00434{left:187.804635px;}
.x59_c00434{left:189.403485px;}
.x8_c00434{left:190.660785px;}
.x27_c00434{left:195.239535px;}
.x5a_c00434{left:200.788485px;}
.x42_c00434{left:205.075185px;}
.x1b_c00434{left:211.653735px;}
.x90_c00434{left:212.925885px;}
.x43_c00434{left:222.330885px;}
.x28_c00434{left:223.370385px;}
.x36_c00434{left:226.191885px;}
.x65_c00434{left:233.710935px;}
.x9_c00434{left:235.527585px;}
.x5b_c00434{left:244.675185px;}
.x1c_c00434{left:246.046335px;}
.x91_c00434{left:248.452035px;}
.x7c_c00434{left:255.124635px;}
.x29_c00434{left:256.208685px;}
.xa_c00434{left:266.529435px;}
.x4f_c00434{left:269.494485px;}
.x3a_c00434{left:278.137185px;}
.x96_c00434{left:282.260535px;}
.x44_c00434{left:287.977785px;}
.x1d_c00434{left:290.254785px;}
.x45_c00434{left:299.323185px;}
.xb_c00434{left:300.501285px;}
.x98_c00434{left:310.525035px;}
.x50_c00434{left:311.638785px;}
.x51_c00434{left:321.073485px;}
.x2a_c00434{left:322.256535px;}
.xc_c00434{left:333.418785px;}
.x1e_c00434{left:344.061285px;}
.x70_c00434{left:345.100785px;}
.x97_c00434{left:347.833185px;}
.x52_c00434{left:354.758235px;}
.x7d_c00434{left:356.188785px;}
.x66_c00434{left:358.168785px;}
.x46_c00434{left:365.940285px;}
.x5c_c00434{left:373.112835px;}
.x5d_c00434{left:376.666935px;}
.x87_c00434{left:377.939085px;}
.x7e_c00434{left:387.032235px;}
.xd_c00434{left:388.190535px;}
.x1f_c00434{left:389.601285px;}
.x81_c00434{left:398.946885px;}
.x47_c00434{left:400.035885px;}
.x67_c00434{left:401.654535px;}
.x71_c00434{left:409.866585px;}
.x3b_c00434{left:411.089235px;}
.x48_c00434{left:416.375835px;}
.x5e_c00434{left:420.152685px;}
.xe_c00434{left:421.454535px;}
.x76_c00434{left:422.479185px;}
.x49_c00434{left:427.166835px;}
.x20_c00434{left:433.131585px;}
.x6b_c00434{left:441.917835px;}
.x2b_c00434{left:443.873085px;}
.x88_c00434{left:445.912485px;}
.x82_c00434{left:452.966235px;}
.x99_c00434{left:454.921485px;}
.x68_c00434{left:457.094535px;}
.xf_c00434{left:465.113535px;}
.x3c_c00434{left:476.498535px;}
.x69_c00434{left:487.136085px;}
.x83_c00434{left:497.159835px;}
.x2c_c00434{left:498.337935px;}
.x92_c00434{left:499.580385px;}
.x5f_c00434{left:508.718085px;}
.x10_c00434{left:510.866385px;}
.x21_c00434{left:520.291185px;}
.x3d_c00434{left:521.399985px;}
.x4a_c00434{left:531.869235px;}
.x53_c00434{left:533.586885px;}
.x3e_c00434{left:541.630635px;}
.x31_c00434{left:542.952285px;}
.x60_c00434{left:552.550335px;}
.x11_c00434{left:553.792785px;}
.x22_c00434{left:564.341235px;}
.x23_c00434{left:575.147085px;}
.x77_c00434{left:576.290535px;}
.x61_c00434{left:586.136085px;}
.x2d_c00434{left:587.457735px;}
.x4b_c00434{left:592.645335px;}
.x78_c00434{left:594.110535px;}
.x32_c00434{left:596.239035px;}
.x12_c00434{left:598.293285px;}
.x84_c00434{left:606.881535px;}
.x13_c00434{left:608.480385px;}
.x54_c00434{left:619.365435px;}
.x2e_c00434{left:625.790535px;}
.x7f_c00434{left:629.710935px;}
.x24_c00434{left:631.131585px;}
.x4c_c00434{left:640.076235px;}
.x79_c00434{left:641.170185px;}
.x14_c00434{left:642.219585px;}
.x6c_c00434{left:643.264035px;}
.x62_c00434{left:647.392335px;}
.x55_c00434{left:652.693785px;}
.x8d_c00434{left:656.480535px;}
.x93_c00434{left:658.168485px;}
.x89_c00434{left:663.692685px;}
.x3f_c00434{left:674.226285px;}
.x2_c00434{left:676.993335px;}
.x25_c00434{left:678.359535px;}
.x56_c00434{left:681.284985px;}
.x57_c00434{left:683.517435px;}
.x33_c00434{left:684.873735px;}
.x3_c00434{left:688.823835px;}
.x63_c00434{left:695.808285px;}
.x2f_c00434{left:697.248735px;}
.x8a_c00434{left:706.688385px;}
.x15_c00434{left:707.767485px;}
.x4_c00434{left:709.178235px;}
.x4d_c00434{left:717.692235px;}
.x72_c00434{left:719.617785px;}
.x7a_c00434{left:720.696885px;}
.x8b_c00434{left:727.394235px;}
.x4e_c00434{left:728.800035px;}
.x73_c00434{left:729.829635px;}
.x85_c00434{left:735.170685px;}
.x74_c00434{left:742.521435px;}
.x9a_c00434{left:750.179085px;}
.x94_c00434{left:754.010385px;}
.x9b_c00434{left:764.687535px;}
@media print{
.v0_c00434{vertical-align:0.000000pt;}
.ls1d_c00434{letter-spacing:-2.353126pt;}
.lsd_c00434{letter-spacing:-2.236080pt;}
.ls17_c00434{letter-spacing:-2.199126pt;}
.ls28_c00434{letter-spacing:-2.143680pt;}
.ls12_c00434{letter-spacing:-1.977360pt;}
.ls21_c00434{letter-spacing:-1.946560pt;}
.ls1e_c00434{letter-spacing:-1.601600pt;}
.ls1a_c00434{letter-spacing:-1.466080pt;}
.ls26_c00434{letter-spacing:-1.233038pt;}
.ls20_c00434{letter-spacing:-1.207360pt;}
.lsc_c00434{letter-spacing:-0.773045pt;}
.ls18_c00434{letter-spacing:-0.287496pt;}
.lsf_c00434{letter-spacing:-0.089443pt;}
.ls6_c00434{letter-spacing:0.000000pt;}
.ls8_c00434{letter-spacing:0.138547pt;}
.ls29_c00434{letter-spacing:0.229997pt;}
.ls2_c00434{letter-spacing:0.658046pt;}
.ls1c_c00434{letter-spacing:1.220261pt;}
.ls15_c00434{letter-spacing:1.303315pt;}
.lsb_c00434{letter-spacing:1.667477pt;}
.ls24_c00434{letter-spacing:1.672000pt;}
.ls1f_c00434{letter-spacing:1.724976pt;}
.ls10_c00434{letter-spacing:1.859141pt;}
.ls13_c00434{letter-spacing:1.971710pt;}
.ls19_c00434{letter-spacing:2.094400pt;}
.ls27_c00434{letter-spacing:2.358400pt;}
.ls3_c00434{letter-spacing:2.363856pt;}
.ls14_c00434{letter-spacing:2.464000pt;}
.ls5_c00434{letter-spacing:2.638574pt;}
.ls4_c00434{letter-spacing:2.759962pt;}
.ls11_c00434{letter-spacing:2.824800pt;}
.ls7_c00434{letter-spacing:2.886400pt;}
.ls1_c00434{letter-spacing:2.970792pt;}
.ls23_c00434{letter-spacing:3.071209pt;}
.ls22_c00434{letter-spacing:3.150400pt;}
.lse_c00434{letter-spacing:3.168000pt;}
.ls9_c00434{letter-spacing:3.194400pt;}
.ls0_c00434{letter-spacing:7.852064pt;}
.lsa_c00434{letter-spacing:44.352176pt;}
.ls16_c00434{letter-spacing:45.619376pt;}
.ls25_c00434{letter-spacing:50.688176pt;}
.ls1b_c00434{letter-spacing:51.955376pt;}
.ws1_c00434{word-spacing:-18.942792pt;}
.ws9_c00434{word-spacing:-18.731962pt;}
.ws4_c00434{word-spacing:-18.335856pt;}
.ws3_c00434{word-spacing:-16.630046pt;}
.ws0_c00434{word-spacing:-15.972000pt;}
.ws8_c00434{word-spacing:-14.738962pt;}
.ws6_c00434{word-spacing:-1.213872pt;}
.wsa_c00434{word-spacing:0.000000pt;}
.ws7_c00434{word-spacing:3.897168pt;}
.ws5_c00434{word-spacing:4.152720pt;}
.ws2_c00434{word-spacing:6.644352pt;}
._6_c00434{margin-left:-17.811200pt;}
._c_c00434{margin-left:-9.391536pt;}
._12_c00434{margin-left:-7.506840pt;}
._1b_c00434{margin-left:-4.881043pt;}
._17_c00434{margin-left:-3.641968pt;}
._5_c00434{margin-left:-2.427040pt;}
._10_c00434{width:1.340416pt;}
._13_c00434{width:2.427744pt;}
._a_c00434{width:4.893504pt;}
._14_c00434{width:6.631574pt;}
._9_c00434{width:7.642800pt;}
._0_c00434{width:8.560992pt;}
._2_c00434{width:10.285968pt;}
._19_c00434{width:11.947056pt;}
._f_c00434{width:13.097216pt;}
._8_c00434{width:18.910848pt;}
._3_c00434{width:20.188608pt;}
._11_c00434{width:21.882784pt;}
._d_c00434{width:23.574672pt;}
._1a_c00434{width:28.430688pt;}
._1_c00434{width:30.346800pt;}
._16_c00434{width:31.752336pt;}
._b_c00434{width:32.966208pt;}
._7_c00434{width:34.333728pt;}
._1c_c00434{width:36.022272pt;}
._15_c00434{width:38.931200pt;}
._4_c00434{width:40.360672pt;}
._e_c00434{width:44.763136pt;}
._18_c00434{width:1240.250880pt;}
.fs14_c00434{font-size:14.080000pt;}
.fs8_c00434{font-size:24.640000pt;}
.fs7_c00434{font-size:29.568000pt;}
.fs1d_c00434{font-size:29.920000pt;}
.fs19_c00434{font-size:33.440000pt;}
.fs15_c00434{font-size:34.496000pt;}
.fs1c_c00434{font-size:35.200000pt;}
.fsc_c00434{font-size:41.888000pt;}
.fs13_c00434{font-size:42.944000pt;}
.fs2_c00434{font-size:44.352176pt;}
.fs9_c00434{font-size:45.619376pt;}
.fs11_c00434{font-size:45.760000pt;}
.fs1b_c00434{font-size:47.168000pt;}
.fs6_c00434{font-size:49.280000pt;}
.fs1a_c00434{font-size:50.688176pt;}
.fsf_c00434{font-size:51.955376pt;}
.fs16_c00434{font-size:55.616000pt;}
.fs5_c00434{font-size:56.496000pt;}
.fse_c00434{font-size:57.376000pt;}
.fs0_c00434{font-size:57.728000pt;}
.fsa_c00434{font-size:61.072176pt;}
.fsd_c00434{font-size:61.248000pt;}
.fs18_c00434{font-size:61.424176pt;}
.fsb_c00434{font-size:62.832176pt;}
.fs17_c00434{font-size:63.008000pt;}
.fs3_c00434{font-size:63.360000pt;}
.fs1_c00434{font-size:63.888000pt;}
.fs4_c00434{font-size:64.768000pt;}
.fs12_c00434{font-size:65.472176pt;}
.fs10_c00434{font-size:67.232176pt;}
.y0_c00434{bottom:0.000000pt;}
.y1_c00434{bottom:68.000000pt;}
.y1f_c00434{bottom:107.316920pt;}
.y1e_c00434{bottom:133.928120pt;}
.y1d_c00434{bottom:194.115720pt;}
.y1c_c00434{bottom:218.509320pt;}
.y1b_c00434{bottom:222.948920pt;}
.y1a_c00434{bottom:251.139720pt;}
.y19_c00434{bottom:279.651720pt;}
.y20_c00434{bottom:289.793720pt;}
.y18_c00434{bottom:309.752120pt;}
.y17_c00434{bottom:338.897720pt;}
.y16_c00434{bottom:368.038920pt;}
.y13_c00434{bottom:396.550260pt;}
.y14_c00434{bottom:396.550920pt;}
.y15_c00434{bottom:396.872120pt;}
.y12_c00434{bottom:425.379720pt;}
.y11_c00434{bottom:453.891720pt;}
.y10_c00434{bottom:482.408120pt;}
.yf_c00434{bottom:511.866120pt;}
.ye_c00434{bottom:538.477320pt;}
.yd_c00434{bottom:567.306120pt;}
.yc_c00434{bottom:596.139320pt;}
.yb_c00434{bottom:627.502520pt;}
.ya_c00434{bottom:675.339320pt;}
.y9_c00434{bottom:685.476920pt;}
.y8_c00434{bottom:693.713720pt;}
.y7_c00434{bottom:716.206520pt;}
.y6_c00434{bottom:745.035320pt;}
.y4_c00434{bottom:774.809680pt;}
.y5_c00434{bottom:774.810120pt;}
.y3_c00434{bottom:803.638920pt;}
.y2_c00434{bottom:936.694920pt;}
.h15_c00434{height:13.818750pt;}
.ha_c00434{height:25.698750pt;}
.h1f_c00434{height:29.364844pt;}
.h4_c00434{height:29.538549pt;}
.hb_c00434{height:30.382504pt;}
.h9_c00434{height:30.838500pt;}
.h1b_c00434{height:33.758325pt;}
.h16_c00434{height:33.855938pt;}
.h11_c00434{height:34.602280pt;}
.h1a_c00434{height:34.876875pt;}
.h1d_c00434{height:36.712500pt;}
.he_c00434{height:41.110781pt;}
.h13_c00434{height:44.910938pt;}
.h1c_c00434{height:49.194750pt;}
.h8_c00434{height:51.397500pt;}
.h17_c00434{height:58.005750pt;}
.h7_c00434{height:58.923563pt;}
.h10_c00434{height:59.841375pt;}
.hc_c00434{height:59.939001pt;}
.hf_c00434{height:60.081656pt;}
.h1e_c00434{height:60.111562pt;}
.h2_c00434{height:60.208500pt;}
.h19_c00434{height:60.284470pt;}
.hd_c00434{height:61.666345pt;}
.h5_c00434{height:62.184375pt;}
.h3_c00434{height:62.702578pt;}
.h18_c00434{height:63.500250pt;}
.h6_c00434{height:63.566250pt;}
.h14_c00434{height:64.257360pt;}
.h12_c00434{height:65.984704pt;}
.h1_c00434{height:986.666667pt;}
.h0_c00434{height:1122.666667pt;}
.w1_c00434{width:689.333333pt;}
.w0_c00434{width:793.333333pt;}
.x0_c00434{left:0.000000pt;}
.x1_c00434{left:52.000000pt;}
.x35_c00434{left:71.866653pt;}
.x5_c00434{left:73.059053pt;}
.x6d_c00434{left:73.978653pt;}
.x16_c00434{left:74.882281pt;}
.x6e_c00434{left:83.742253pt;}
.x17_c00434{left:91.715053pt;}
.x75_c00434{left:92.784253pt;}
.x18_c00434{left:95.160253pt;}
.x34_c00434{left:96.181053pt;}
.x40_c00434{left:99.687853pt;}
.x26_c00434{left:100.950653pt;}
.x64_c00434{left:102.433453pt;}
.x41_c00434{left:109.882653pt;}
.x6f_c00434{left:111.462253pt;}
.x19_c00434{left:112.747053pt;}
.x8c_c00434{left:113.807453pt;}
.x80_c00434{left:115.607053pt;}
.x37_c00434{left:119.325053pt;}
.x6_c00434{left:120.521853pt;}
.x86_c00434{left:121.476653pt;}
.x8e_c00434{left:122.405053pt;}
.x1a_c00434{left:129.480253pt;}
.x6a_c00434{left:130.659453pt;}
.x95_c00434{left:131.860653pt;}
.x7_c00434{left:139.516653pt;}
.x8f_c00434{left:140.827853pt;}
.x58_c00434{left:148.360653pt;}
.x30_c00434{left:149.535453pt;}
.x7b_c00434{left:150.477053pt;}
.x38_c00434{left:158.788653pt;}
.x39_c00434{left:166.937453pt;}
.x59_c00434{left:168.358653pt;}
.x8_c00434{left:169.476253pt;}
.x27_c00434{left:173.546253pt;}
.x5a_c00434{left:178.478653pt;}
.x42_c00434{left:182.289053pt;}
.x1b_c00434{left:188.136653pt;}
.x90_c00434{left:189.267453pt;}
.x43_c00434{left:197.627453pt;}
.x28_c00434{left:198.551453pt;}
.x36_c00434{left:201.059453pt;}
.x65_c00434{left:207.743053pt;}
.x9_c00434{left:209.357853pt;}
.x5b_c00434{left:217.489053pt;}
.x1c_c00434{left:218.707853pt;}
.x91_c00434{left:220.846253pt;}
.x7c_c00434{left:226.777453pt;}
.x29_c00434{left:227.741053pt;}
.xa_c00434{left:236.915053pt;}
.x4f_c00434{left:239.550653pt;}
.x3a_c00434{left:247.233053pt;}
.x96_c00434{left:250.898253pt;}
.x44_c00434{left:255.980253pt;}
.x1d_c00434{left:258.004253pt;}
.x45_c00434{left:266.065053pt;}
.xb_c00434{left:267.112253pt;}
.x98_c00434{left:276.022253pt;}
.x50_c00434{left:277.012253pt;}
.x51_c00434{left:285.398653pt;}
.x2a_c00434{left:286.450253pt;}
.xc_c00434{left:296.372253pt;}
.x1e_c00434{left:305.832253pt;}
.x70_c00434{left:306.756253pt;}
.x97_c00434{left:309.185053pt;}
.x52_c00434{left:315.340653pt;}
.x7d_c00434{left:316.612253pt;}
.x66_c00434{left:318.372253pt;}
.x46_c00434{left:325.280253pt;}
.x5c_c00434{left:331.655853pt;}
.x5d_c00434{left:334.815053pt;}
.x87_c00434{left:335.945853pt;}
.x7e_c00434{left:344.028653pt;}
.xd_c00434{left:345.058253pt;}
.x1f_c00434{left:346.312253pt;}
.x81_c00434{left:354.619453pt;}
.x47_c00434{left:355.587453pt;}
.x67_c00434{left:357.026253pt;}
.x71_c00434{left:364.325853pt;}
.x3b_c00434{left:365.412653pt;}
.x48_c00434{left:370.111853pt;}
.x5e_c00434{left:373.469053pt;}
.xe_c00434{left:374.626253pt;}
.x76_c00434{left:375.537053pt;}
.x49_c00434{left:379.703853pt;}
.x20_c00434{left:385.005853pt;}
.x6b_c00434{left:392.815853pt;}
.x2b_c00434{left:394.553853pt;}
.x88_c00434{left:396.366653pt;}
.x82_c00434{left:402.636653pt;}
.x99_c00434{left:404.374653pt;}
.x68_c00434{left:406.306253pt;}
.xf_c00434{left:413.434253pt;}
.x3c_c00434{left:423.554253pt;}
.x69_c00434{left:433.009853pt;}
.x83_c00434{left:441.919853pt;}
.x2c_c00434{left:442.967053pt;}
.x92_c00434{left:444.071453pt;}
.x5f_c00434{left:452.193853pt;}
.x10_c00434{left:454.103453pt;}
.x21_c00434{left:462.481053pt;}
.x3d_c00434{left:463.466653pt;}
.x4a_c00434{left:472.772653pt;}
.x53_c00434{left:474.299453pt;}
.x3e_c00434{left:481.449453pt;}
.x31_c00434{left:482.624253pt;}
.x60_c00434{left:491.155853pt;}
.x11_c00434{left:492.260253pt;}
.x22_c00434{left:501.636653pt;}
.x23_c00434{left:511.241853pt;}
.x77_c00434{left:512.258253pt;}
.x61_c00434{left:521.009853pt;}
.x2d_c00434{left:522.184653pt;}
.x4b_c00434{left:526.795853pt;}
.x78_c00434{left:528.098253pt;}
.x32_c00434{left:529.990253pt;}
.x12_c00434{left:531.816253pt;}
.x84_c00434{left:539.450253pt;}
.x13_c00434{left:540.871453pt;}
.x54_c00434{left:550.547053pt;}
.x2e_c00434{left:556.258253pt;}
.x7f_c00434{left:559.743053pt;}
.x24_c00434{left:561.005853pt;}
.x4c_c00434{left:568.956653pt;}
.x79_c00434{left:569.929053pt;}
.x14_c00434{left:570.861853pt;}
.x6c_c00434{left:571.790253pt;}
.x62_c00434{left:575.459853pt;}
.x55_c00434{left:580.172253pt;}
.x8d_c00434{left:583.538253pt;}
.x93_c00434{left:585.038653pt;}
.x89_c00434{left:589.949053pt;}
.x3f_c00434{left:599.312253pt;}
.x2_c00434{left:601.771853pt;}
.x25_c00434{left:602.986253pt;}
.x56_c00434{left:605.586653pt;}
.x57_c00434{left:607.571053pt;}
.x33_c00434{left:608.776653pt;}
.x3_c00434{left:612.287853pt;}
.x63_c00434{left:618.496253pt;}
.x2f_c00434{left:619.776653pt;}
.x8a_c00434{left:628.167453pt;}
.x15_c00434{left:629.126653pt;}
.x4_c00434{left:630.380653pt;}
.x4d_c00434{left:637.948653pt;}
.x72_c00434{left:639.660253pt;}
.x7a_c00434{left:640.619453pt;}
.x8b_c00434{left:646.572653pt;}
.x4e_c00434{left:647.822253pt;}
.x73_c00434{left:648.737453pt;}
.x85_c00434{left:653.485053pt;}
.x74_c00434{left:660.019053pt;}
.x9a_c00434{left:666.825853pt;}
.x94_c00434{left:670.231453pt;}
.x9b_c00434{left:679.722253pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_afe929d57b1654a22a150447.woff2')format("woff");}.ff1_c00435{font-family:ff1_c00435;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00435;src:url('chunks/assets/font_2cf7cde884dbf9a4e047d9c1.woff2')format("woff");}.ff2_c00435{font-family:ff2_c00435;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00435;src:url('chunks/assets/font_e2909b9020957d71b2b118a7.woff2')format("woff");}.ff3_c00435{font-family:ff3_c00435;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00435;src:url('chunks/assets/font_e693e22d92d6ed149e20c704.woff2')format("woff");}.ff4_c00435{font-family:ff4_c00435;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m61_c00435{transform:matrix(0.014287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.014287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.014287,0.000000,0.000000,0.250000,0,0);}
.m8c_c00435{transform:matrix(0.028572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.028572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.028572,0.000000,0.000000,0.250000,0,0);}
.mc0_c00435{transform:matrix(0.030304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030304,0.000000,0.000000,0.250000,0,0);}
.m5b_c00435{transform:matrix(0.035715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.035715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.035715,0.000000,0.000000,0.250000,0,0);}
.m24_c00435{transform:matrix(0.036766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036766,0.000000,0.000000,0.250000,0,0);}
.m4b_c00435{transform:matrix(0.039063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.039063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.039063,0.000000,0.000000,0.250000,0,0);}
.mcf_c00435{transform:matrix(0.053572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053572,0.000000,0.000000,0.250000,0,0);}
.m49_c00435{transform:matrix(0.054688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054688,0.000000,0.000000,0.250000,0,0);}
.m8b_c00435{transform:matrix(0.057144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.057144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.057144,0.000000,0.000000,0.250000,0,0);}
.mfe_c00435{transform:matrix(0.058824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.058824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.058824,0.000000,0.000000,0.250000,0,0);}
.me2_c00435{transform:matrix(0.058975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.058975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.058975,0.000000,0.000000,0.250000,0,0);}
.m57_c00435{transform:matrix(0.061906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.061906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.061906,0.000000,0.000000,0.250000,0,0);}
.mae_c00435{transform:matrix(0.066177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066177,0.000000,0.000000,0.250000,0,0);}
.m7e_c00435{transform:matrix(0.073719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073719,0.000000,0.000000,0.250000,0,0);}
.m5a_c00435{transform:matrix(0.078572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078572,0.000000,0.000000,0.250000,0,0);}
.mb5_c00435{transform:matrix(0.080883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080883,0.000000,0.000000,0.250000,0,0);}
.md1_c00435{transform:matrix(0.081846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081846,0.000000,0.000000,0.250000,0,0);}
.mb8_c00435{transform:matrix(0.084559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084559,0.000000,0.000000,0.250000,0,0);}
.m93_c00435{transform:matrix(0.085714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085714,0.000000,0.000000,0.250000,0,0);}
.m25_c00435{transform:matrix(0.088235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088235,0.000000,0.000000,0.250000,0,0);}
.m92_c00435{transform:matrix(0.090476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090476,0.000000,0.000000,0.250000,0,0);}
.mce_c00435{transform:matrix(0.101191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101191,0.000000,0.000000,0.250000,0,0);}
.m4c_c00435{transform:matrix(0.101563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101563,0.000000,0.000000,0.250000,0,0);}
.mfa_c00435{transform:matrix(0.104722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104722,0.000000,0.000000,0.250000,0,0);}
.m6f_c00435{transform:matrix(0.109211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109211,0.000000,0.000000,0.250000,0,0);}
.m41_c00435{transform:matrix(0.112638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112638,0.000000,0.000000,0.250000,0,0);}
.m51_c00435{transform:matrix(0.117187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117187,0.000000,0.000000,0.250000,0,0);}
.m53_c00435{transform:matrix(0.117915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117915,0.000000,0.000000,0.250000,0,0);}
.mb7_c00435{transform:matrix(0.122549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122549,0.000000,0.000000,0.250000,0,0);}
.m6b_c00435{transform:matrix(0.122807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122807,0.000000,0.000000,0.250000,0,0);}
.mbf_c00435{transform:matrix(0.131314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131314,0.000000,0.000000,0.250000,0,0);}
.m7f_c00435{transform:matrix(0.133835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133835,0.000000,0.000000,0.250000,0,0);}
.m9b_c00435{transform:matrix(0.134616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134616,0.000000,0.000000,0.250000,0,0);}
.maf_c00435{transform:matrix(0.134757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134757,0.000000,0.000000,0.250000,0,0);}
.m94_c00435{transform:matrix(0.135714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135714,0.000000,0.000000,0.250000,0,0);}
.mc5_c00435{transform:matrix(0.137959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137959,0.000000,0.000000,0.250000,0,0);}
.me0_c00435{transform:matrix(0.141025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141025,0.000000,0.000000,0.250000,0,0);}
.m8f_c00435{transform:matrix(0.145715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145715,0.000000,0.000000,0.250000,0,0);}
.me4_c00435{transform:matrix(0.145936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145936,0.000000,0.000000,0.250000,0,0);}
.m72_c00435{transform:matrix(0.146382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146382,0.000000,0.000000,0.250000,0,0);}
.mcb_c00435{transform:matrix(0.147283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147283,0.000000,0.000000,0.250000,0,0);}
.me1_c00435{transform:matrix(0.147436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147436,0.000000,0.000000,0.250000,0,0);}
.mb6_c00435{transform:matrix(0.148897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148897,0.000000,0.000000,0.250000,0,0);}
.me3_c00435{transform:matrix(0.149573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149573,0.000000,0.000000,0.250000,0,0);}
.m77_c00435{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m31_c00435{transform:matrix(0.150026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150026,0.000000,0.000000,0.250000,0,0);}
.ma3_c00435{transform:matrix(0.150997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150997,0.000000,0.000000,0.250000,0,0);}
.m60_c00435{transform:matrix(0.151191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151191,0.000000,0.000000,0.250000,0,0);}
.m6e_c00435{transform:matrix(0.151316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151316,0.000000,0.000000,0.250000,0,0);}
.m3a_c00435{transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00435{transform:matrix(0.152574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152574,0.000000,0.000000,0.250000,0,0);}
.m6c_c00435{transform:matrix(0.152778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152778,0.000000,0.000000,0.250000,0,0);}
.mcd_c00435{transform:matrix(0.162427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162427,0.000000,0.000000,0.250000,0,0);}
.m89_c00435{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00435{transform:matrix(0.162856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162856,0.000000,0.000000,0.250000,0,0);}
.m5f_c00435{transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);}
.mee_c00435{transform:matrix(0.166385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166385,0.000000,0.000000,0.250000,0,0);}
.mbe_c00435{transform:matrix(0.167562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167562,0.000000,0.000000,0.250000,0,0);}
.mad_c00435{transform:matrix(0.169118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169118,0.000000,0.000000,0.250000,0,0);}
.m48_c00435{transform:matrix(0.170313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170313,0.000000,0.000000,0.250000,0,0);}
.md0_c00435{transform:matrix(0.174603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174603,0.000000,0.000000,0.250000,0,0);}
.m1c_c00435{transform:matrix(0.175692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175692,0.000000,0.000000,0.250000,0,0);}
.m28_c00435{transform:matrix(0.177382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177382,0.000000,0.000000,0.250000,0,0);}
.mac_c00435{transform:matrix(0.184095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184095,0.000000,0.000000,0.250000,0,0);}
.mb0_c00435{transform:matrix(0.184240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184240,0.000000,0.000000,0.250000,0,0);}
.m62_c00435{transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185715,0.000000,0.000000,0.250000,0,0);}
.m9_c00435{transform:matrix(0.187390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187390,0.000000,0.000000,0.250000,0,0);}
.mc1_c00435{transform:matrix(0.189394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189394,0.000000,0.000000,0.250000,0,0);}
.mb_c00435{transform:matrix(0.191925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191925,0.000000,0.000000,0.250000,0,0);}
.m105_c00435{transform:matrix(0.192096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192096,0.000000,0.000000,0.250000,0,0);}
.ma7_c00435{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m3_c00435{transform:matrix(0.192696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192696,0.000000,0.000000,0.250000,0,0);}
.m75_c00435{transform:matrix(0.192718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192718,0.000000,0.000000,0.250000,0,0);}
.m3d_c00435{transform:matrix(0.193017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193017,0.000000,0.000000,0.250000,0,0);}
.m106_c00435{transform:matrix(0.194019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194019,0.000000,0.000000,0.250000,0,0);}
.m91_c00435{transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);}
.m4a_c00435{transform:matrix(0.197265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197265,0.000000,0.000000,0.250000,0,0);}
.m6d_c00435{transform:matrix(0.197368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197368,0.000000,0.000000,0.250000,0,0);}
.m58_c00435{transform:matrix(0.197618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197618,0.000000,0.000000,0.250000,0,0);}
.m85_c00435{transform:matrix(0.199292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199292,0.000000,0.000000,0.250000,0,0);}
.m8a_c00435{transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);}
.m3c_c00435{transform:matrix(0.200512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200512,0.000000,0.000000,0.250000,0,0);}
.m30_c00435{transform:matrix(0.201382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201382,0.000000,0.000000,0.250000,0,0);}
.m27_c00435{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);}
.m22_c00435{transform:matrix(0.206278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206278,0.000000,0.000000,0.250000,0,0);}
.mc7_c00435{transform:matrix(0.208208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208208,0.000000,0.000000,0.250000,0,0);}
.mba_c00435{transform:matrix(0.209420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209420,0.000000,0.000000,0.250000,0,0);}
.m70_c00435{transform:matrix(0.210888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210888,0.000000,0.000000,0.250000,0,0);}
.mc2_c00435{transform:matrix(0.212121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212121,0.000000,0.000000,0.250000,0,0);}
.m5c_c00435{transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);}
.mb4_c00435{transform:matrix(0.215686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215686,0.000000,0.000000,0.250000,0,0);}
.mc8_c00435{transform:matrix(0.216020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216020,0.000000,0.000000,0.250000,0,0);}
.ma9_c00435{transform:matrix(0.216598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216598,0.000000,0.000000,0.250000,0,0);}
.m2a_c00435{transform:matrix(0.220476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220476,0.000000,0.000000,0.250000,0,0);}
.m26_c00435{transform:matrix(0.220587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220587,0.000000,0.000000,0.250000,0,0);}
.mc6_c00435{transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);}
.m1a_c00435{transform:matrix(0.225070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225070,0.000000,0.000000,0.250000,0,0);}
.m19_c00435{transform:matrix(0.225433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225433,0.000000,0.000000,0.250000,0,0);}
.ma_c00435{transform:matrix(0.225441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225441,0.000000,0.000000,0.250000,0,0);}
.m54_c00435{transform:matrix(0.230675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230675,0.000000,0.000000,0.250000,0,0);}
.m44_c00435{transform:matrix(0.233691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233691,0.000000,0.000000,0.250000,0,0);}
.mc9_c00435{transform:matrix(0.234954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234954,0.000000,0.000000,0.250000,0,0);}
.mf7_c00435{transform:matrix(0.237550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237550,0.000000,0.000000,0.250000,0,0);}
.m50_c00435{transform:matrix(0.239583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239583,0.000000,0.000000,0.250000,0,0);}
.m47_c00435{transform:matrix(0.240890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240890,0.000000,0.000000,0.250000,0,0);}
.m45_c00435{transform:matrix(0.242640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242640,0.000000,0.000000,0.250000,0,0);}
.m4f_c00435{transform:matrix(0.246491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246491,0.000000,0.000000,0.250000,0,0);}
.m5d_c00435{transform:matrix(0.247080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247080,0.000000,0.000000,0.250000,0,0);}
.meb_c00435{transform:matrix(0.247142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247142,0.000000,0.000000,0.250000,0,0);}
.md8_c00435{transform:matrix(0.248020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248020,0.000000,0.000000,0.250000,0,0);}
.m66_c00435{transform:matrix(0.248764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248764,0.000000,0.000000,0.250000,0,0);}
.m0_c00435{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.md4_c00435{transform:matrix(0.250249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250249,0.000000,0.000000,0.250000,0,0);}
.mdf_c00435{transform:matrix(0.250961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250961,0.000000,0.000000,0.250000,0,0);}
.m12_c00435{transform:matrix(0.251699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251699,0.000000,0.000000,0.250000,0,0);}
.m71_c00435{transform:matrix(0.253201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253201,0.000000,0.000000,0.250000,0,0);}
.m2d_c00435{transform:matrix(0.254669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254669,0.000000,0.000000,0.250000,0,0);}
.mf5_c00435{transform:matrix(0.254782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254782,0.000000,0.000000,0.250000,0,0);}
.m86_c00435{transform:matrix(0.255113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255113,0.000000,0.000000,0.250000,0,0);}
.m52_c00435{transform:matrix(0.255293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255293,0.000000,0.000000,0.250000,0,0);}
.m3b_c00435{transform:matrix(0.260581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260581,0.000000,0.000000,0.250000,0,0);}
.mdb_c00435{transform:matrix(0.262383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262383,0.000000,0.000000,0.250000,0,0);}
.ma8_c00435{transform:matrix(0.262921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262921,0.000000,0.000000,0.250000,0,0);}
.mf2_c00435{transform:matrix(0.263990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263990,0.000000,0.000000,0.250000,0,0);}
.m63_c00435{transform:matrix(0.266123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266123,0.000000,0.000000,0.250000,0,0);}
.m4e_c00435{transform:matrix(0.267508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267508,0.000000,0.000000,0.250000,0,0);}
.m6_c00435{transform:matrix(0.267892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267892,0.000000,0.000000,0.250000,0,0);}
.m2e_c00435{transform:matrix(0.267904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267904,0.000000,0.000000,0.250000,0,0);}
.mb1_c00435{transform:matrix(0.268293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268293,0.000000,0.000000,0.250000,0,0);}
.me_c00435{transform:matrix(0.269148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269148,0.000000,0.000000,0.250000,0,0);}
.maa_c00435{transform:matrix(0.269622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269622,0.000000,0.000000,0.250000,0,0);}
.mc4_c00435{transform:matrix(0.270745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270745,0.000000,0.000000,0.250000,0,0);}
.md_c00435{transform:matrix(0.271558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271558,0.000000,0.000000,0.250000,0,0);}
.m5_c00435{transform:matrix(0.273524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273524,0.000000,0.000000,0.250000,0,0);}
.ma0_c00435{transform:matrix(0.274082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274082,0.000000,0.000000,0.250000,0,0);}
.m1f_c00435{transform:matrix(0.276640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276640,0.000000,0.000000,0.250000,0,0);}
.ma1_c00435{transform:matrix(0.279266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279266,0.000000,0.000000,0.250000,0,0);}
.m56_c00435{transform:matrix(0.279452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279452,0.000000,0.000000,0.250000,0,0);}
.m103_c00435{transform:matrix(0.280341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280341,0.000000,0.000000,0.250000,0,0);}
.m10_c00435{transform:matrix(0.280796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280796,0.000000,0.000000,0.250000,0,0);}
.m9a_c00435{transform:matrix(0.282665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282665,0.000000,0.000000,0.250000,0,0);}
.m8d_c00435{transform:matrix(0.283761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283761,0.000000,0.000000,0.250000,0,0);}
.mbc_c00435{transform:matrix(0.284271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284271,0.000000,0.000000,0.250000,0,0);}
.m99_c00435{transform:matrix(0.284536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284536,0.000000,0.000000,0.250000,0,0);}
.m8e_c00435{transform:matrix(0.284986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284986,0.000000,0.000000,0.250000,0,0);}
.md3_c00435{transform:matrix(0.285387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285387,0.000000,0.000000,0.250000,0,0);}
.m6a_c00435{transform:matrix(0.287221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287221,0.000000,0.000000,0.250000,0,0);}
.md6_c00435{transform:matrix(0.287238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287238,0.000000,0.000000,0.250000,0,0);}
.m46_c00435{transform:matrix(0.288885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288885,0.000000,0.000000,0.250000,0,0);}
.m104_c00435{transform:matrix(0.289006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289006,0.000000,0.000000,0.250000,0,0);}
.mcc_c00435{transform:matrix(0.289577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289577,0.000000,0.000000,0.250000,0,0);}
.m3e_c00435{transform:matrix(0.289805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289805,0.000000,0.000000,0.250000,0,0);}
.mb3_c00435{transform:matrix(0.290164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290164,0.000000,0.000000,0.250000,0,0);}
.m39_c00435{transform:matrix(0.291849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291849,0.000000,0.000000,0.250000,0,0);}
.m2_c00435{transform:matrix(0.292270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292270,0.000000,0.000000,0.250000,0,0);}
.m97_c00435{transform:matrix(0.293183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293183,0.000000,0.000000,0.250000,0,0);}
.m64_c00435{transform:matrix(0.295583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295583,0.000000,0.000000,0.250000,0,0);}
.mfc_c00435{transform:matrix(0.296322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296322,0.000000,0.000000,0.250000,0,0);}
.m20_c00435{transform:matrix(0.296429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296429,0.000000,0.000000,0.250000,0,0);}
.m17_c00435{transform:matrix(0.297061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297061,0.000000,0.000000,0.250000,0,0);}
.m2f_c00435{transform:matrix(0.297440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297440,0.000000,0.000000,0.250000,0,0);}
.m83_c00435{transform:matrix(0.297763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297763,0.000000,0.000000,0.250000,0,0);}
.m4d_c00435{transform:matrix(0.298075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298075,0.000000,0.000000,0.250000,0,0);}
.me7_c00435{transform:matrix(0.299572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299572,0.000000,0.000000,0.250000,0,0);}
.mbd_c00435{transform:matrix(0.300150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300150,0.000000,0.000000,0.250000,0,0);}
.m2c_c00435{transform:matrix(0.300343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300343,0.000000,0.000000,0.250000,0,0);}
.mf4_c00435{transform:matrix(0.300874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300874,0.000000,0.000000,0.250000,0,0);}
.mff_c00435{transform:matrix(0.302070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302070,0.000000,0.000000,0.250000,0,0);}
.m84_c00435{transform:matrix(0.302274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302274,0.000000,0.000000,0.250000,0,0);}
.mdc_c00435{transform:matrix(0.303057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303057,0.000000,0.000000,0.250000,0,0);}
.m37_c00435{transform:matrix(0.303063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303063,0.000000,0.000000,0.250000,0,0);}
.m33_c00435{transform:matrix(0.303322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303322,0.000000,0.000000,0.250000,0,0);}
.m7a_c00435{transform:matrix(0.305167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305167,0.000000,0.000000,0.250000,0,0);}
.m78_c00435{transform:matrix(0.305612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305612,0.000000,0.000000,0.250000,0,0);}
.m7d_c00435{transform:matrix(0.306343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306343,0.000000,0.000000,0.250000,0,0);}
.m9e_c00435{transform:matrix(0.307486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307486,0.000000,0.000000,0.250000,0,0);}
.m96_c00435{transform:matrix(0.307868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307868,0.000000,0.000000,0.250000,0,0);}
.m9f_c00435{transform:matrix(0.307915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307915,0.000000,0.000000,0.250000,0,0);}
.m8_c00435{transform:matrix(0.308979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308979,0.000000,0.000000,0.250000,0,0);}
.m40_c00435{transform:matrix(0.309159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309159,0.000000,0.000000,0.250000,0,0);}
.m95_c00435{transform:matrix(0.309270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309270,0.000000,0.000000,0.250000,0,0);}
.m107_c00435{transform:matrix(0.309355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309355,0.000000,0.000000,0.250000,0,0);}
.md7_c00435{transform:matrix(0.310580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310580,0.000000,0.000000,0.250000,0,0);}
.m1b_c00435{transform:matrix(0.311460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311460,0.000000,0.000000,0.250000,0,0);}
.m18_c00435{transform:matrix(0.312069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312069,0.000000,0.000000,0.250000,0,0);}
.m36_c00435{transform:matrix(0.314323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314323,0.000000,0.000000,0.250000,0,0);}
.m82_c00435{transform:matrix(0.315522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315522,0.000000,0.000000,0.250000,0,0);}
.mbb_c00435{transform:matrix(0.315728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315728,0.000000,0.000000,0.250000,0,0);}
.m67_c00435{transform:matrix(0.315744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315744,0.000000,0.000000,0.250000,0,0);}
.m16_c00435{transform:matrix(0.315858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315858,0.000000,0.000000,0.250000,0,0);}
.m7b_c00435{transform:matrix(0.316018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316018,0.000000,0.000000,0.250000,0,0);}
.m59_c00435{transform:matrix(0.316922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316922,0.000000,0.000000,0.250000,0,0);}
.m80_c00435{transform:matrix(0.319728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319728,0.000000,0.000000,0.250000,0,0);}
.me6_c00435{transform:matrix(0.319729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319729,0.000000,0.000000,0.250000,0,0);}
.ma5_c00435{transform:matrix(0.320759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320759,0.000000,0.000000,0.250000,0,0);}
.m90_c00435{transform:matrix(0.320868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320868,0.000000,0.000000,0.250000,0,0);}
.m9d_c00435{transform:matrix(0.322321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322321,0.000000,0.000000,0.250000,0,0);}
.m29_c00435{transform:matrix(0.322543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322543,0.000000,0.000000,0.250000,0,0);}
.ma2_c00435{transform:matrix(0.323099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323099,0.000000,0.000000,0.250000,0,0);}
.mec_c00435{transform:matrix(0.323136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323136,0.000000,0.000000,0.250000,0,0);}
.m4_c00435{transform:matrix(0.323727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323727,0.000000,0.000000,0.250000,0,0);}
.m13_c00435{transform:matrix(0.325601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325601,0.000000,0.000000,0.250000,0,0);}
.me5_c00435{transform:matrix(0.325681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325681,0.000000,0.000000,0.250000,0,0);}
.mda_c00435{transform:matrix(0.326922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326922,0.000000,0.000000,0.250000,0,0);}
.mf0_c00435{transform:matrix(0.327009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327009,0.000000,0.000000,0.250000,0,0);}
.ma6_c00435{transform:matrix(0.327354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327354,0.000000,0.000000,0.250000,0,0);}
.m15_c00435{transform:matrix(0.328682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328682,0.000000,0.000000,0.250000,0,0);}
.m65_c00435{transform:matrix(0.329387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329387,0.000000,0.000000,0.250000,0,0);}
.mef_c00435{transform:matrix(0.329558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329558,0.000000,0.000000,0.250000,0,0);}
.mca_c00435{transform:matrix(0.329682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329682,0.000000,0.000000,0.250000,0,0);}
.mc3_c00435{transform:matrix(0.330125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330125,0.000000,0.000000,0.250000,0,0);}
.ma4_c00435{transform:matrix(0.330759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330759,0.000000,0.000000,0.250000,0,0);}
.m1_c00435{transform:matrix(0.332127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332127,0.000000,0.000000,0.250000,0,0);}
.m9c_c00435{transform:matrix(0.334462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334462,0.000000,0.000000,0.250000,0,0);}
.mde_c00435{transform:matrix(0.335197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335197,0.000000,0.000000,0.250000,0,0);}
.m87_c00435{transform:matrix(0.335387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335387,0.000000,0.000000,0.250000,0,0);}
.m79_c00435{transform:matrix(0.336233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336233,0.000000,0.000000,0.250000,0,0);}
.mfb_c00435{transform:matrix(0.337420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337420,0.000000,0.000000,0.250000,0,0);}
.mdd_c00435{transform:matrix(0.339447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339447,0.000000,0.000000,0.250000,0,0);}
.m88_c00435{transform:matrix(0.341143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341143,0.000000,0.000000,0.250000,0,0);}
.md5_c00435{transform:matrix(0.341182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341182,0.000000,0.000000,0.250000,0,0);}
.m42_c00435{transform:matrix(0.344228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344228,0.000000,0.000000,0.250000,0,0);}
.mf_c00435{transform:matrix(0.344467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344467,0.000000,0.000000,0.250000,0,0);}
.mf9_c00435{transform:matrix(0.348244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348244,0.000000,0.000000,0.250000,0,0);}
.med_c00435{transform:matrix(0.350287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350287,0.000000,0.000000,0.250000,0,0);}
.m98_c00435{transform:matrix(0.352213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352213,0.000000,0.000000,0.250000,0,0);}
.mb9_c00435{transform:matrix(0.352374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352374,0.000000,0.000000,0.250000,0,0);}
.m74_c00435{transform:matrix(0.352665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352665,0.000000,0.000000,0.250000,0,0);}
.mfd_c00435{transform:matrix(0.353153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353153,0.000000,0.000000,0.250000,0,0);}
.m43_c00435{transform:matrix(0.353544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353544,0.000000,0.000000,0.250000,0,0);}
.m1e_c00435{transform:matrix(0.353751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353751,0.000000,0.000000,0.250000,0,0);}
.m34_c00435{transform:matrix(0.356794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356794,0.000000,0.000000,0.250000,0,0);}
.m69_c00435{transform:matrix(0.358449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358449,0.000000,0.000000,0.250000,0,0);}
.m100_c00435{transform:matrix(0.359558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359558,0.000000,0.000000,0.250000,0,0);}
.mf1_c00435{transform:matrix(0.360095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360095,0.000000,0.000000,0.250000,0,0);}
.me9_c00435{transform:matrix(0.360543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360543,0.000000,0.000000,0.250000,0,0);}
.m1d_c00435{transform:matrix(0.361246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361246,0.000000,0.000000,0.250000,0,0);}
.mea_c00435{transform:matrix(0.362274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362274,0.000000,0.000000,0.250000,0,0);}
.m7c_c00435{transform:matrix(0.362420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362420,0.000000,0.000000,0.250000,0,0);}
.m7_c00435{transform:matrix(0.363127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363127,0.000000,0.000000,0.250000,0,0);}
.mf8_c00435{transform:matrix(0.363321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363321,0.000000,0.000000,0.250000,0,0);}
.m11_c00435{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);}
.m73_c00435{transform:matrix(0.371636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371636,0.000000,0.000000,0.250000,0,0);}
.me8_c00435{transform:matrix(0.373145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373145,0.000000,0.000000,0.250000,0,0);}
.m38_c00435{transform:matrix(0.380293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380293,0.000000,0.000000,0.250000,0,0);}
.m3f_c00435{transform:matrix(0.387290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387290,0.000000,0.000000,0.250000,0,0);}
.md9_c00435{transform:matrix(0.389801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389801,0.000000,0.000000,0.250000,0,0);}
.m35_c00435{transform:matrix(0.392700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392700,0.000000,0.000000,0.250000,0,0);}
.m68_c00435{transform:matrix(0.400880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400880,0.000000,0.000000,0.250000,0,0);}
.m2b_c00435{transform:matrix(0.404040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404040,0.000000,0.000000,0.250000,0,0);}
.m14_c00435{transform:matrix(0.404068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404068,0.000000,0.000000,0.250000,0,0);}
.mf6_c00435{transform:matrix(0.419581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419581,0.000000,0.000000,0.250000,0,0);}
.mf3_c00435{transform:matrix(0.432289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432289,0.000000,0.000000,0.250000,0,0);}
.m102_c00435{transform:matrix(0.435320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435320,0.000000,0.000000,0.250000,0,0);}
.mab_c00435{transform:matrix(0.438071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438071,0.000000,0.000000,0.250000,0,0);}
.m21_c00435{transform:matrix(0.452270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452270,0.000000,0.000000,0.250000,0,0);}
.m32_c00435{transform:matrix(0.459124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459124,0.000000,0.000000,0.250000,0,0);}
.m101_c00435{transform:matrix(0.460068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460068,0.000000,0.000000,0.250000,0,0);}
.m81_c00435{transform:matrix(0.460272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460272,0.000000,0.000000,0.250000,0,0);}
.md2_c00435{transform:matrix(0.470357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470357,0.000000,0.000000,0.250000,0,0);}
.m23_c00435{transform:matrix(0.479067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479067,0.000000,0.000000,0.250000,0,0);}
.m76_c00435{transform:matrix(0.487777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487777,0.000000,0.000000,0.250000,0,0);}
.mc_c00435{transform:matrix(0.496487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496487,0.000000,0.000000,0.250000,0,0);}
.m55_c00435{transform:matrix(0.570402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570402,0.000000,0.000000,0.250000,0,0);}
.v2_c00435{vertical-align:-8.573400px;}
.v0_c00435{vertical-align:0.000000px;}
.v1_c00435{vertical-align:8.547660px;}
.ls14_c00435{letter-spacing:-2.882880px;}
.lsa_c00435{letter-spacing:-2.432430px;}
.ls40_c00435{letter-spacing:-2.363130px;}
.ls15_c00435{letter-spacing:-2.293830px;}
.lse_c00435{letter-spacing:-2.273040px;}
.ls27_c00435{letter-spacing:-2.259180px;}
.ls2c_c00435{letter-spacing:-2.189880px;}
.ls2e_c00435{letter-spacing:-2.162167px;}
.ls3c_c00435{letter-spacing:-2.147488px;}
.ls25_c00435{letter-spacing:-1.857240px;}
.ls24_c00435{letter-spacing:-1.753290px;}
.ls30_c00435{letter-spacing:-1.704780px;}
.ls33_c00435{letter-spacing:-1.663200px;}
.ls23_c00435{letter-spacing:-1.591504px;}
.ls21_c00435{letter-spacing:-1.077219px;}
.ls42_c00435{letter-spacing:-1.042470px;}
.ls8_c00435{letter-spacing:-1.024217px;}
.ls2f_c00435{letter-spacing:-0.796950px;}
.ls1c_c00435{letter-spacing:-0.382239px;}
.ls22_c00435{letter-spacing:-0.194594px;}
.lsb_c00435{letter-spacing:0.000000px;}
.ls41_c00435{letter-spacing:0.027799px;}
.ls38_c00435{letter-spacing:0.055598px;}
.ls1a_c00435{letter-spacing:0.083398px;}
.ls12_c00435{letter-spacing:0.722779px;}
.ls2_c00435{letter-spacing:0.833976px;}
.ls4_c00435{letter-spacing:0.945173px;}
.ls36_c00435{letter-spacing:1.015743px;}
.ls5_c00435{letter-spacing:1.041480px;}
.lsd_c00435{letter-spacing:1.640153px;}
.ls3e_c00435{letter-spacing:1.653310px;}
.ls28_c00435{letter-spacing:1.772100px;}
.ls6_c00435{letter-spacing:1.890346px;}
.ls3f_c00435{letter-spacing:2.019600px;}
.ls37_c00435{letter-spacing:2.168100px;}
.ls18_c00435{letter-spacing:2.197810px;}
.ls31_c00435{letter-spacing:2.316600px;}
.ls1_c00435{letter-spacing:2.321233px;}
.ls10_c00435{letter-spacing:2.385900px;}
.lsc_c00435{letter-spacing:2.405700px;}
.ls11_c00435{letter-spacing:2.425500px;}
.ls3d_c00435{letter-spacing:2.494810px;}
.ls3b_c00435{letter-spacing:2.536677px;}
.ls20_c00435{letter-spacing:2.692810px;}
.ls26_c00435{letter-spacing:2.953665px;}
.ls2a_c00435{letter-spacing:3.009600px;}
.ls13_c00435{letter-spacing:3.106561px;}
.ls1b_c00435{letter-spacing:3.128400px;}
.ls1e_c00435{letter-spacing:3.257110px;}
.ls2b_c00435{letter-spacing:3.276900px;}
.ls34_c00435{letter-spacing:3.384553px;}
.ls9_c00435{letter-spacing:3.474900px;}
.ls17_c00435{letter-spacing:3.564000px;}
.ls3a_c00435{letter-spacing:3.821400px;}
.ls7_c00435{letter-spacing:4.059000px;}
.ls3_c00435{letter-spacing:6.949800px;}
.ls35_c00435{letter-spacing:18.532998px;}
.ls0_c00435{letter-spacing:19.728258px;}
.ls2d_c00435{letter-spacing:25.660998px;}
.ls16_c00435{letter-spacing:45.619398px;}
.ls29_c00435{letter-spacing:47.044800px;}
.lsf_c00435{letter-spacing:48.470598px;}
.ls19_c00435{letter-spacing:49.896198px;}
.ls39_c00435{letter-spacing:52.747398px;}
.ls1d_c00435{letter-spacing:54.172998px;}
.ls1f_c00435{letter-spacing:55.598598px;}
.ls32_c00435{letter-spacing:59.875398px;}
.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;}
}
.ws8_c00435{word-spacing:-19.911177px;}
.ws1_c00435{word-spacing:-19.695733px;}
.ws2_c00435{word-spacing:-18.208476px;}
.ws0_c00435{word-spacing:-17.374500px;}
.ws7_c00435{word-spacing:-15.782996px;}
.ws3_c00435{word-spacing:-2.988414px;}
.ws9_c00435{word-spacing:-1.639559px;}
.ws6_c00435{word-spacing:-0.729729px;}
.wsc_c00435{word-spacing:0.000000px;}
.wsa_c00435{word-spacing:8.281152px;}
.ws4_c00435{word-spacing:11.606166px;}
.ws5_c00435{word-spacing:12.022560px;}
.wsb_c00435{word-spacing:30.393735px;}
._14_c00435{margin-left:-8.617752px;}
._f_c00435{margin-left:-4.586868px;}
._1b_c00435{width:1.667358px;}
._1a_c00435{width:3.973860px;}
._3_c00435{width:5.171443px;}
._1_c00435{width:6.810408px;}
._d_c00435{width:9.311940px;}
._0_c00435{width:10.633194px;}
._16_c00435{width:11.689128px;}
._a_c00435{width:13.399056px;}
._8_c00435{width:15.081660px;}
._18_c00435{width:16.123536px;}
._12_c00435{width:20.321730px;}
._6_c00435{width:21.961962px;}
._13_c00435{width:23.281830px;}
._e_c00435{width:24.741288px;}
._4_c00435{width:26.339544px;}
._5_c00435{width:30.717720px;}
._c_c00435{width:31.899780px;}
._2_c00435{width:33.403788px;}
._9_c00435{width:35.304588px;}
._17_c00435{width:37.515522px;}
._b_c00435{width:38.848788px;}
._11_c00435{width:40.169844px;}
._7_c00435{width:41.211720px;}
._10_c00435{width:45.839772px;}
._19_c00435{width:51.493266px;}
._15_c00435{width:53.757000px;}
.fc0_c00435{color:transparent;}
.fs24_c00435{font-size:18.532998px;}
.fs1f_c00435{font-size:22.770000px;}
.fs1d_c00435{font-size:25.660998px;}
.fs15_c00435{font-size:28.314000px;}
.fs1c_c00435{font-size:32.472000px;}
.fs2a_c00435{font-size:33.066198px;}
.fs2d_c00435{font-size:34.848000px;}
.fs19_c00435{font-size:35.442000px;}
.fs2b_c00435{font-size:40.392000px;}
.fs27_c00435{font-size:43.362000px;}
.fsd_c00435{font-size:43.956198px;}
.fsa_c00435{font-size:45.619398px;}
.fse_c00435{font-size:45.738000px;}
.fs20_c00435{font-size:46.332000px;}
.fs1a_c00435{font-size:47.044800px;}
.fs23_c00435{font-size:47.520000px;}
.fs5_c00435{font-size:47.718000px;}
.fs2_c00435{font-size:48.114000px;}
.fs4_c00435{font-size:48.470598px;}
.fs6_c00435{font-size:48.510000px;}
.fs21_c00435{font-size:48.708000px;}
.fsf_c00435{font-size:49.896198px;}
.fs16_c00435{font-size:50.094000px;}
.fs28_c00435{font-size:52.747398px;}
.fs17_c00435{font-size:53.064000px;}
.fsc_c00435{font-size:53.262000px;}
.fs14_c00435{font-size:53.856198px;}
.fs11_c00435{font-size:54.172998px;}
.fs13_c00435{font-size:55.598598px;}
.fs22_c00435{font-size:59.875398px;}
.fs1b_c00435{font-size:60.192000px;}
.fs1e_c00435{font-size:61.776198px;}
.fs7_c00435{font-size:62.568000px;}
.fs18_c00435{font-size:64.548000px;}
.fs3_c00435{font-size:64.944000px;}
.fs12_c00435{font-size:65.142198px;}
.fs9_c00435{font-size:65.538000px;}
.fs2c_c00435{font-size:67.518000px;}
.fs26_c00435{font-size:67.716198px;}
.fs1_c00435{font-size:69.498000px;}
.fs10_c00435{font-size:70.884000px;}
.fsb_c00435{font-size:71.280000px;}
.fs29_c00435{font-size:76.428000px;}
.fs8_c00435{font-size:82.368000px;}
.fs0_c00435{font-size:83.952198px;}
.fs25_c00435{font-size:107.712198px;}
.y0_c00435{bottom:0.000000px;}
.y1_c00435{bottom:76.500000px;}
.y1d_c00435{bottom:126.433935px;}
.y1b_c00435{bottom:155.653785px;}
.y1c_c00435{bottom:157.797135px;}
.y1a_c00435{bottom:224.087535px;}
.y19_c00435{bottom:256.514985px;}
.y18_c00435{bottom:286.808985px;}
.y16_c00435{bottom:288.234585px;}
.y17_c00435{bottom:288.595935px;}
.y15_c00435{bottom:321.736185px;}
.y14_c00435{bottom:327.794985px;}
.y13_c00435{bottom:354.886335px;}
.y12_c00435{bottom:386.605935px;}
.y11_c00435{bottom:487.110735px;}
.y10_c00435{bottom:519.899535px;}
.ye_c00435{bottom:555.539535px;}
.yd_c00435{bottom:587.610585px;}
.yc_c00435{bottom:619.691535px;}
.yb_c00435{bottom:652.480335px;}
.ya_c00435{bottom:685.269135px;}
.yf_c00435{bottom:714.493935px;}
.y8_c00435{bottom:748.702395px;}
.y9_c00435{bottom:748.708335px;}
.y7_c00435{bottom:781.140735px;}
.y6_c00435{bottom:813.568185px;}
.y5_c00435{bottom:847.782585px;}
.y4_c00435{bottom:881.289135px;}
.y3_c00435{bottom:914.429385px;}
.y2_c00435{bottom:1061.266185px;}
.h26_c00435{height:12.342977px;}
.h1f_c00435{height:17.090225px;}
.h21_c00435{height:23.748398px;}
.h17_c00435{height:29.530617px;}
.hd_c00435{height:30.382519px;}
.h1c_c00435{height:31.331837px;}
.h7_c00435{height:32.281418px;}
.h2d_c00435{height:32.452665px;}
.h11_c00435{height:33.230868px;}
.h1e_c00435{height:33.867281px;}
.h2a_c00435{height:35.129767px;}
.h13_c00435{height:36.079217px;}
.h1b_c00435{height:36.964898px;}
.h15_c00435{height:37.028666px;}
.h24_c00435{height:39.877015px;}
.h2e_c00435{height:42.127594px;}
.h29_c00435{height:45.225211px;}
.h10_c00435{height:45.844941px;}
.h8_c00435{height:46.832607px;}
.h23_c00435{height:47.804238px;}
.h22_c00435{height:48.322828px;}
.h2c_c00435{height:48.970390px;}
.h25_c00435{height:49.561875px;}
.h4_c00435{height:50.181398px;}
.h9_c00435{height:50.594414px;}
.h18_c00435{height:52.246477px;}
.hf_c00435{height:52.273740px;}
.h16_c00435{height:52.856913px;}
.h19_c00435{height:55.344094px;}
.h30_c00435{height:59.635086px;}
.h1d_c00435{height:62.778375px;}
.h14_c00435{height:63.933505px;}
.h20_c00435{height:64.430644px;}
.ha_c00435{height:65.256469px;}
.h2f_c00435{height:66.265225px;}
.h28_c00435{height:66.459745px;}
.h1a_c00435{height:67.321547px;}
.h6_c00435{height:67.734563px;}
.h3_c00435{height:68.208486px;}
.hc_c00435{height:68.354086px;}
.h12_c00435{height:69.568770px;}
.he_c00435{height:69.957422px;}
.h2b_c00435{height:75.009902px;}
.h5_c00435{height:76.756146px;}
.h2_c00435{height:82.394491px;}
.hb_c00435{height:83.011500px;}
.h27_c00435{height:112.340457px;}
.h1_c00435{height:1110.000000px;}
.h0_c00435{height:1263.000000px;}
.w1_c00435{width:775.500000px;}
.w0_c00435{width:892.500000px;}
.x0_c00435{left:0.000000px;}
.x1_c00435{left:58.500000px;}
.x8d_c00435{left:83.711085px;}
.x83_c00435{left:84.978285px;}
.x3_c00435{left:86.587035px;}
.x15_c00435{left:88.537335px;}
.x16_c00435{left:98.140335px;}
.x98_c00435{left:107.391885px;}
.x4e_c00435{left:108.852135px;}
.x63_c00435{left:110.228235px;}
.x82_c00435{left:111.817185px;}
.x9e_c00435{left:118.153185px;}
.x29_c00435{left:119.484735px;}
.x5d_c00435{left:120.806385px;}
.x8e_c00435{left:127.929435px;}
.x99_c00435{left:129.191685px;}
.x2a_c00435{left:130.340085px;}
.x56_c00435{left:131.493435px;}
.x81_c00435{left:133.998135px;}
.x42_c00435{left:140.418285px;}
.x70_c00435{left:141.482535px;}
.x64_c00435{left:142.710135px;}
.x4_c00435{left:152.134935px;}
.x8f_c00435{left:156.649335px;}
.xa2_c00435{left:158.847135px;}
.x34_c00435{left:162.599235px;}
.x6a_c00435{left:173.078385px;}
.x1e_c00435{left:174.370335px;}
.x84_c00435{left:183.735735px;}
.x3f_c00435{left:185.002935px;}
.x5_c00435{left:186.577035px;}
.x77_c00435{left:188.195685px;}
.x6b_c00435{left:191.220135px;}
.x85_c00435{left:195.061335px;}
.x6_c00435{left:196.467135px;}
.x65_c00435{left:206.723535px;}
.x43_c00435{left:208.287735px;}
.x90_c00435{left:217.851135px;}
.x17_c00435{left:219.301485px;}
.x1f_c00435{left:228.434235px;}
.x66_c00435{left:229.835085px;}
.x7_c00435{left:231.122085px;}
.x2b_c00435{left:232.364535px;}
.x2c_c00435{left:240.561735px;}
.x4f_c00435{left:242.848635px;}
.x57_c00435{left:251.644785px;}
.x44_c00435{left:252.674385px;}
.x86_c00435{left:255.530535px;}
.x78_c00435{left:262.524885px;}
.x8_c00435{left:263.886135px;}
.x40_c00435{left:272.236785px;}
.x20_c00435{left:273.855435px;}
.x79_c00435{left:275.003835px;}
.x9_c00435{left:278.112435px;}
.x50_c00435{left:284.552385px;}
.x45_c00435{left:290.452785px;}
.x7a_c00435{left:295.145385px;}
.x18_c00435{left:296.328435px;}
.x9a_c00435{left:304.555335px;}
.x5e_c00435{left:305.782935px;}
.x21_c00435{left:307.050135px;}
.x71_c00435{left:316.440285px;}
.xa_c00435{left:318.598485px;}
.x35_c00435{left:320.113185px;}
.x51_c00435{left:323.602935px;}
.x52_c00435{left:327.161985px;}
.x9f_c00435{left:328.171785px;}
.x2d_c00435{left:329.176635px;}
.x67_c00435{left:330.240885px;}
.x46_c00435{left:335.002785px;}
.x41_c00435{left:339.398385px;}
.x36_c00435{left:340.477485px;}
.x6c_c00435{left:342.135735px;}
.xb_c00435{left:349.748835px;}
.x22_c00435{left:350.852685px;}
.x19_c00435{left:353.614785px;}
.xa0_c00435{left:359.747835px;}
.x47_c00435{left:361.698135px;}
.x87_c00435{left:371.157585px;}
.x37_c00435{left:373.800885px;}
.x1a_c00435{left:375.087885px;}
.x88_c00435{left:382.864335px;}
.xc_c00435{left:384.161235px;}
.x23_c00435{left:393.878085px;}
.xd_c00435{left:395.368035px;}
.x91_c00435{left:403.792935px;}
.xe_c00435{left:406.609485px;}
.x5f_c00435{left:416.331285px;}
.x53_c00435{left:417.336135px;}
.xa3_c00435{left:420.444735px;}
.x92_c00435{left:421.964385px;}
.xf_c00435{left:427.201485px;}
.x2e_c00435{left:428.567685px;}
.x9b_c00435{left:438.185535px;}
.x1b_c00435{left:439.244835px;}
.x6d_c00435{left:447.976635px;}
.x2f_c00435{left:449.521035px;}
.x89_c00435{left:450.619935px;}
.x93_c00435{left:458.995335px;}
.x10_c00435{left:460.861485px;}
.x8a_c00435{left:470.964435px;}
.x38_c00435{left:472.281135px;}
.x7b_c00435{left:482.195985px;}
.x11_c00435{left:483.784935px;}
.x9c_c00435{left:491.467335px;}
.x60_c00435{left:493.358235px;}
.x7c_c00435{left:494.674935px;}
.x72_c00435{left:496.169835px;}
.x12_c00435{left:505.163985px;}
.x58_c00435{left:516.058935px;}
.x54_c00435{left:523.186935px;}
.x24_c00435{left:526.676685px;}
.x7d_c00435{left:527.820135px;}
.x94_c00435{left:529.092285px;}
.x7f_c00435{left:532.794885px;}
.x8b_c00435{left:536.512335px;}
.x39_c00435{left:537.596385px;}
.x48_c00435{left:540.645585px;}
.x13_c00435{left:549.273435px;}
.x68_c00435{left:554.901585px;}
.x95_c00435{left:557.366685px;}
.x49_c00435{left:559.505085px;}
.x3a_c00435{left:570.330735px;}
.x14_c00435{left:571.424685px;}
.x59_c00435{left:573.612585px;}
.x8c_c00435{left:579.993135px;}
.x25_c00435{left:581.740485px;}
.x80_c00435{left:589.115985px;}
.x9d_c00435{left:591.724635px;}
.x61_c00435{left:593.174985px;}
.x96_c00435{left:601.698885px;}
.x3b_c00435{left:602.985885px;}
.x73_c00435{left:604.188735px;}
.x4a_c00435{left:614.568885px;}
.x4b_c00435{left:620.498985px;}
.x30_c00435{left:625.236135px;}
.x26_c00435{left:627.102285px;}
.x7e_c00435{left:628.671435px;}
.x4c_c00435{left:630.349485px;}
.x5a_c00435{left:635.418285px;}
.x27_c00435{left:636.888435px;}
.x97_c00435{left:646.560735px;}
.x4d_c00435{left:648.011085px;}
.x62_c00435{left:653.371935px;}
.xa1_c00435{left:657.777435px;}
.x74_c00435{left:659.099085px;}
.x31_c00435{left:668.459535px;}
.x5b_c00435{left:669.855435px;}
.x1c_c00435{left:672.820485px;}
.x6e_c00435{left:679.304985px;}
.x2_c00435{left:681.883935px;}
.x5c_c00435{left:690.694935px;}
.x55_c00435{left:694.333185px;}
.x3c_c00435{left:701.971035px;}
.x32_c00435{left:703.045185px;}
.x33_c00435{left:712.861035px;}
.x3d_c00435{left:716.974485px;}
.x3e_c00435{left:718.766385px;}
.x75_c00435{left:723.444135px;}
.x6f_c00435{left:724.686585px;}
.x28_c00435{left:734.680635px;}
.x1d_c00435{left:737.101185px;}
.x76_c00435{left:745.664685px;}
.x69_c00435{left:761.083935px;}
@media print{
.v2_c00435{vertical-align:-7.620800pt;}
.v0_c00435{vertical-align:0.000000pt;}
.v1_c00435{vertical-align:7.597920pt;}
.ls14_c00435{letter-spacing:-2.562560pt;}
.lsa_c00435{letter-spacing:-2.162160pt;}
.ls40_c00435{letter-spacing:-2.100560pt;}
.ls15_c00435{letter-spacing:-2.038960pt;}
.lse_c00435{letter-spacing:-2.020480pt;}
.ls27_c00435{letter-spacing:-2.008160pt;}
.ls2c_c00435{letter-spacing:-1.946560pt;}
.ls2e_c00435{letter-spacing:-1.921926pt;}
.ls3c_c00435{letter-spacing:-1.908878pt;}
.ls25_c00435{letter-spacing:-1.650880pt;}
.ls24_c00435{letter-spacing:-1.558480pt;}
.ls30_c00435{letter-spacing:-1.515360pt;}
.ls33_c00435{letter-spacing:-1.478400pt;}
.ls23_c00435{letter-spacing:-1.414670pt;}
.ls21_c00435{letter-spacing:-0.957528pt;}
.ls42_c00435{letter-spacing:-0.926640pt;}
.ls8_c00435{letter-spacing:-0.910415pt;}
.ls2f_c00435{letter-spacing:-0.708400pt;}
.ls1c_c00435{letter-spacing:-0.339768pt;}
.ls22_c00435{letter-spacing:-0.172973pt;}
.lsb_c00435{letter-spacing:0.000000pt;}
.ls41_c00435{letter-spacing:0.024710pt;}
.ls38_c00435{letter-spacing:0.049421pt;}
.ls1a_c00435{letter-spacing:0.074131pt;}
.ls12_c00435{letter-spacing:0.642470pt;}
.ls2_c00435{letter-spacing:0.741312pt;}
.ls4_c00435{letter-spacing:0.840154pt;}
.ls36_c00435{letter-spacing:0.902883pt;}
.ls5_c00435{letter-spacing:0.925760pt;}
.lsd_c00435{letter-spacing:1.457914pt;}
.ls3e_c00435{letter-spacing:1.469609pt;}
.ls28_c00435{letter-spacing:1.575200pt;}
.ls6_c00435{letter-spacing:1.680307pt;}
.ls3f_c00435{letter-spacing:1.795200pt;}
.ls37_c00435{letter-spacing:1.927200pt;}
.ls18_c00435{letter-spacing:1.953609pt;}
.ls31_c00435{letter-spacing:2.059200pt;}
.ls1_c00435{letter-spacing:2.063318pt;}
.ls10_c00435{letter-spacing:2.120800pt;}
.lsc_c00435{letter-spacing:2.138400pt;}
.ls11_c00435{letter-spacing:2.156000pt;}
.ls3d_c00435{letter-spacing:2.217609pt;}
.ls3b_c00435{letter-spacing:2.254824pt;}
.ls20_c00435{letter-spacing:2.393609pt;}
.ls26_c00435{letter-spacing:2.625480pt;}
.ls2a_c00435{letter-spacing:2.675200pt;}
.ls13_c00435{letter-spacing:2.761387pt;}
.ls1b_c00435{letter-spacing:2.780800pt;}
.ls1e_c00435{letter-spacing:2.895209pt;}
.ls2b_c00435{letter-spacing:2.912800pt;}
.ls34_c00435{letter-spacing:3.008491pt;}
.ls9_c00435{letter-spacing:3.088800pt;}
.ls17_c00435{letter-spacing:3.168000pt;}
.ls3a_c00435{letter-spacing:3.396800pt;}
.ls7_c00435{letter-spacing:3.608000pt;}
.ls3_c00435{letter-spacing:6.177600pt;}
.ls35_c00435{letter-spacing:16.473776pt;}
.ls0_c00435{letter-spacing:17.536229pt;}
.ls2d_c00435{letter-spacing:22.809776pt;}
.ls16_c00435{letter-spacing:40.550576pt;}
.ls29_c00435{letter-spacing:41.817600pt;}
.lsf_c00435{letter-spacing:43.084976pt;}
.ls19_c00435{letter-spacing:44.352176pt;}
.ls39_c00435{letter-spacing:46.886576pt;}
.ls1d_c00435{letter-spacing:48.153776pt;}
.ls1f_c00435{letter-spacing:49.420976pt;}
.ls32_c00435{letter-spacing:53.222576pt;}
.ws8_c00435{word-spacing:-17.698824pt;}
.ws1_c00435{word-spacing:-17.507318pt;}
.ws2_c00435{word-spacing:-16.185312pt;}
.ws0_c00435{word-spacing:-15.444000pt;}
.ws7_c00435{word-spacing:-14.029330pt;}
.ws3_c00435{word-spacing:-2.656368pt;}
.ws9_c00435{word-spacing:-1.457386pt;}
.ws6_c00435{word-spacing:-0.648648pt;}
.wsc_c00435{word-spacing:0.000000pt;}
.wsa_c00435{word-spacing:7.361024pt;}
.ws4_c00435{word-spacing:10.316592pt;}
.ws5_c00435{word-spacing:10.686720pt;}
.wsb_c00435{word-spacing:27.016653pt;}
._14_c00435{margin-left:-7.660224pt;}
._f_c00435{margin-left:-4.077216pt;}
._1b_c00435{width:1.482096pt;}
._1a_c00435{width:3.532320pt;}
._3_c00435{width:4.596838pt;}
._1_c00435{width:6.053696pt;}
._d_c00435{width:8.277280pt;}
._0_c00435{width:9.451728pt;}
._16_c00435{width:10.390336pt;}
._a_c00435{width:11.910272pt;}
._8_c00435{width:13.405920pt;}
._18_c00435{width:14.332032pt;}
._12_c00435{width:18.063760pt;}
._6_c00435{width:19.521744pt;}
._13_c00435{width:20.694960pt;}
._e_c00435{width:21.992256pt;}
._4_c00435{width:23.412928pt;}
._5_c00435{width:27.304640pt;}
._c_c00435{width:28.355360pt;}
._2_c00435{width:29.692256pt;}
._9_c00435{width:31.381856pt;}
._17_c00435{width:33.347130pt;}
._b_c00435{width:34.532256pt;}
._11_c00435{width:35.706528pt;}
._7_c00435{width:36.632640pt;}
._10_c00435{width:40.746464pt;}
._19_c00435{width:45.771792pt;}
._15_c00435{width:47.784000pt;}
.fs24_c00435{font-size:16.473776pt;}
.fs1f_c00435{font-size:20.240000pt;}
.fs1d_c00435{font-size:22.809776pt;}
.fs15_c00435{font-size:25.168000pt;}
.fs1c_c00435{font-size:28.864000pt;}
.fs2a_c00435{font-size:29.392176pt;}
.fs2d_c00435{font-size:30.976000pt;}
.fs19_c00435{font-size:31.504000pt;}
.fs2b_c00435{font-size:35.904000pt;}
.fs27_c00435{font-size:38.544000pt;}
.fsd_c00435{font-size:39.072176pt;}
.fsa_c00435{font-size:40.550576pt;}
.fse_c00435{font-size:40.656000pt;}
.fs20_c00435{font-size:41.184000pt;}
.fs1a_c00435{font-size:41.817600pt;}
.fs23_c00435{font-size:42.240000pt;}
.fs5_c00435{font-size:42.416000pt;}
.fs2_c00435{font-size:42.768000pt;}
.fs4_c00435{font-size:43.084976pt;}
.fs6_c00435{font-size:43.120000pt;}
.fs21_c00435{font-size:43.296000pt;}
.fsf_c00435{font-size:44.352176pt;}
.fs16_c00435{font-size:44.528000pt;}
.fs28_c00435{font-size:46.886576pt;}
.fs17_c00435{font-size:47.168000pt;}
.fsc_c00435{font-size:47.344000pt;}
.fs14_c00435{font-size:47.872176pt;}
.fs11_c00435{font-size:48.153776pt;}
.fs13_c00435{font-size:49.420976pt;}
.fs22_c00435{font-size:53.222576pt;}
.fs1b_c00435{font-size:53.504000pt;}
.fs1e_c00435{font-size:54.912176pt;}
.fs7_c00435{font-size:55.616000pt;}
.fs18_c00435{font-size:57.376000pt;}
.fs3_c00435{font-size:57.728000pt;}
.fs12_c00435{font-size:57.904176pt;}
.fs9_c00435{font-size:58.256000pt;}
.fs2c_c00435{font-size:60.016000pt;}
.fs26_c00435{font-size:60.192176pt;}
.fs1_c00435{font-size:61.776000pt;}
.fs10_c00435{font-size:63.008000pt;}
.fsb_c00435{font-size:63.360000pt;}
.fs29_c00435{font-size:67.936000pt;}
.fs8_c00435{font-size:73.216000pt;}
.fs0_c00435{font-size:74.624176pt;}
.fs25_c00435{font-size:95.744176pt;}
.y0_c00435{bottom:0.000000pt;}
.y1_c00435{bottom:68.000000pt;}
.y1d_c00435{bottom:112.385720pt;}
.y1b_c00435{bottom:138.358920pt;}
.y1c_c00435{bottom:140.264120pt;}
.y1a_c00435{bottom:199.188920pt;}
.y19_c00435{bottom:228.013320pt;}
.y18_c00435{bottom:254.941320pt;}
.y16_c00435{bottom:256.208520pt;}
.y17_c00435{bottom:256.529720pt;}
.y15_c00435{bottom:285.987720pt;}
.y14_c00435{bottom:291.373320pt;}
.y13_c00435{bottom:315.454520pt;}
.y12_c00435{bottom:343.649720pt;}
.y11_c00435{bottom:432.987320pt;}
.y10_c00435{bottom:462.132920pt;}
.ye_c00435{bottom:493.812920pt;}
.yd_c00435{bottom:522.320520pt;}
.yc_c00435{bottom:550.836920pt;}
.yb_c00435{bottom:579.982520pt;}
.ya_c00435{bottom:609.128120pt;}
.yf_c00435{bottom:635.105720pt;}
.y8_c00435{bottom:665.513240pt;}
.y9_c00435{bottom:665.518520pt;}
.y7_c00435{bottom:694.347320pt;}
.y6_c00435{bottom:723.171720pt;}
.y5_c00435{bottom:753.584520pt;}
.y4_c00435{bottom:783.368120pt;}
.y3_c00435{bottom:812.826120pt;}
.y2_c00435{bottom:943.347720pt;}
.h26_c00435{height:10.971535pt;}
.h1f_c00435{height:15.191311pt;}
.h21_c00435{height:21.109688pt;}
.h17_c00435{height:26.249438pt;}
.hd_c00435{height:27.006684pt;}
.h1c_c00435{height:27.850522pt;}
.h7_c00435{height:28.694594pt;}
.h2d_c00435{height:28.846813pt;}
.h11_c00435{height:29.538549pt;}
.h1e_c00435{height:30.104250pt;}
.h2a_c00435{height:31.226460pt;}
.h13_c00435{height:32.070415pt;}
.h1b_c00435{height:32.857688pt;}
.h15_c00435{height:32.914370pt;}
.h24_c00435{height:35.446236pt;}
.h2e_c00435{height:37.446750pt;}
.h29_c00435{height:40.200188pt;}
.h10_c00435{height:40.751059pt;}
.h8_c00435{height:41.628984pt;}
.h23_c00435{height:42.492656pt;}
.h22_c00435{height:42.953625pt;}
.h2c_c00435{height:43.529235pt;}
.h25_c00435{height:44.055000pt;}
.h4_c00435{height:44.605688pt;}
.h9_c00435{height:44.972813pt;}
.h18_c00435{height:46.441313pt;}
.hf_c00435{height:46.465547pt;}
.h16_c00435{height:46.983923pt;}
.h19_c00435{height:49.194750pt;}
.h30_c00435{height:53.008966pt;}
.h1d_c00435{height:55.803000pt;}
.h14_c00435{height:56.829782pt;}
.h20_c00435{height:57.271684pt;}
.ha_c00435{height:58.005750pt;}
.h2f_c00435{height:58.902422pt;}
.h28_c00435{height:59.075329pt;}
.h1a_c00435{height:59.841375pt;}
.h6_c00435{height:60.208500pt;}
.h3_c00435{height:60.629766pt;}
.hc_c00435{height:60.759188pt;}
.h12_c00435{height:61.838906pt;}
.he_c00435{height:62.184375pt;}
.h2b_c00435{height:66.675469pt;}
.h5_c00435{height:68.227686pt;}
.h2_c00435{height:73.239548pt;}
.hb_c00435{height:73.788000pt;}
.h27_c00435{height:99.858184pt;}
.h1_c00435{height:986.666667pt;}
.h0_c00435{height:1122.666667pt;}
.w1_c00435{width:689.333333pt;}
.w0_c00435{width:793.333333pt;}
.x0_c00435{left:0.000000pt;}
.x1_c00435{left:52.000000pt;}
.x8d_c00435{left:74.409853pt;}
.x83_c00435{left:75.536253pt;}
.x3_c00435{left:76.966253pt;}
.x15_c00435{left:78.699853pt;}
.x16_c00435{left:87.235853pt;}
.x98_c00435{left:95.459453pt;}
.x4e_c00435{left:96.757453pt;}
.x63_c00435{left:97.980653pt;}
.x82_c00435{left:99.393053pt;}
.x9e_c00435{left:105.025053pt;}
.x29_c00435{left:106.208653pt;}
.x5d_c00435{left:107.383453pt;}
.x8e_c00435{left:113.715053pt;}
.x99_c00435{left:114.837053pt;}
.x2a_c00435{left:115.857853pt;}
.x56_c00435{left:116.883053pt;}
.x81_c00435{left:119.109453pt;}
.x42_c00435{left:124.816253pt;}
.x70_c00435{left:125.762253pt;}
.x64_c00435{left:126.853453pt;}
.x4_c00435{left:135.231053pt;}
.x8f_c00435{left:139.243853pt;}
.xa2_c00435{left:141.197453pt;}
.x34_c00435{left:144.532653pt;}
.x6a_c00435{left:153.847453pt;}
.x1e_c00435{left:154.995853pt;}
.x84_c00435{left:163.320653pt;}
.x3f_c00435{left:164.447053pt;}
.x5_c00435{left:165.846253pt;}
.x77_c00435{left:167.285053pt;}
.x6b_c00435{left:169.973453pt;}
.x85_c00435{left:173.387853pt;}
.x6_c00435{left:174.637453pt;}
.x65_c00435{left:183.754253pt;}
.x43_c00435{left:185.144653pt;}
.x90_c00435{left:193.645453pt;}
.x17_c00435{left:194.934653pt;}
.x1f_c00435{left:203.052653pt;}
.x66_c00435{left:204.297853pt;}
.x7_c00435{left:205.441853pt;}
.x2b_c00435{left:206.546253pt;}
.x2c_c00435{left:213.832653pt;}
.x4f_c00435{left:215.865453pt;}
.x57_c00435{left:223.684253pt;}
.x44_c00435{left:224.599453pt;}
.x86_c00435{left:227.138253pt;}
.x78_c00435{left:233.355453pt;}
.x8_c00435{left:234.565453pt;}
.x40_c00435{left:241.988253pt;}
.x20_c00435{left:243.427053pt;}
.x79_c00435{left:244.447853pt;}
.x9_c00435{left:247.211053pt;}
.x50_c00435{left:252.935453pt;}
.x45_c00435{left:258.180253pt;}
.x7a_c00435{left:262.351453pt;}
.x18_c00435{left:263.403053pt;}
.x9a_c00435{left:270.715853pt;}
.x5e_c00435{left:271.807053pt;}
.x21_c00435{left:272.933453pt;}
.x71_c00435{left:281.280253pt;}
.xa_c00435{left:283.198653pt;}
.x35_c00435{left:284.545053pt;}
.x51_c00435{left:287.647053pt;}
.x52_c00435{left:290.810653pt;}
.x9f_c00435{left:291.708253pt;}
.x2d_c00435{left:292.601453pt;}
.x67_c00435{left:293.547453pt;}
.x46_c00435{left:297.780253pt;}
.x41_c00435{left:301.687453pt;}
.x36_c00435{left:302.646653pt;}
.x6c_c00435{left:304.120653pt;}
.xb_c00435{left:310.887853pt;}
.x22_c00435{left:311.869053pt;}
.x19_c00435{left:314.324253pt;}
.xa0_c00435{left:319.775853pt;}
.x47_c00435{left:321.509453pt;}
.x87_c00435{left:329.917853pt;}
.x37_c00435{left:332.267453pt;}
.x1a_c00435{left:333.411453pt;}
.x88_c00435{left:340.323853pt;}
.xc_c00435{left:341.476653pt;}
.x23_c00435{left:350.113853pt;}
.xd_c00435{left:351.438253pt;}
.x91_c00435{left:358.927053pt;}
.xe_c00435{left:361.430653pt;}
.x5f_c00435{left:370.072253pt;}
.x53_c00435{left:370.965453pt;}
.xa3_c00435{left:373.728653pt;}
.x92_c00435{left:375.079453pt;}
.xf_c00435{left:379.734653pt;}
.x2e_c00435{left:380.949053pt;}
.x9b_c00435{left:389.498253pt;}
.x1b_c00435{left:390.439853pt;}
.x6d_c00435{left:398.201453pt;}
.x2f_c00435{left:399.574253pt;}
.x89_c00435{left:400.551053pt;}
.x93_c00435{left:407.995853pt;}
.x10_c00435{left:409.654653pt;}
.x8a_c00435{left:418.635053pt;}
.x38_c00435{left:419.805453pt;}
.x7b_c00435{left:428.618653pt;}
.x11_c00435{left:430.031053pt;}
.x9c_c00435{left:436.859853pt;}
.x60_c00435{left:438.540653pt;}
.x7c_c00435{left:439.711053pt;}
.x72_c00435{left:441.039853pt;}
.x12_c00435{left:449.034653pt;}
.x58_c00435{left:458.719053pt;}
.x54_c00435{left:465.055053pt;}
.x24_c00435{left:468.157053pt;}
.x7d_c00435{left:469.173453pt;}
.x94_c00435{left:470.304253pt;}
.x7f_c00435{left:473.595453pt;}
.x8b_c00435{left:476.899853pt;}
.x39_c00435{left:477.863453pt;}
.x48_c00435{left:480.573853pt;}
.x13_c00435{left:488.243053pt;}
.x68_c00435{left:493.245853pt;}
.x95_c00435{left:495.437053pt;}
.x49_c00435{left:497.337853pt;}
.x3a_c00435{left:506.960653pt;}
.x14_c00435{left:507.933053pt;}
.x59_c00435{left:509.877853pt;}
.x8c_c00435{left:515.549453pt;}
.x25_c00435{left:517.102653pt;}
.x80_c00435{left:523.658653pt;}
.x9d_c00435{left:525.977453pt;}
.x61_c00435{left:527.266653pt;}
.x96_c00435{left:534.843453pt;}
.x3b_c00435{left:535.987453pt;}
.x73_c00435{left:537.056653pt;}
.x4a_c00435{left:546.283453pt;}
.x4b_c00435{left:551.554653pt;}
.x30_c00435{left:555.765453pt;}
.x26_c00435{left:557.424253pt;}
.x7e_c00435{left:558.819053pt;}
.x4c_c00435{left:560.310653pt;}
.x5a_c00435{left:564.816253pt;}
.x27_c00435{left:566.123053pt;}
.x97_c00435{left:574.720653pt;}
.x4d_c00435{left:576.009853pt;}
.x62_c00435{left:580.775053pt;}
.xa1_c00435{left:584.691053pt;}
.x74_c00435{left:585.865853pt;}
.x31_c00435{left:594.186253pt;}
.x5b_c00435{left:595.427053pt;}
.x1c_c00435{left:598.062653pt;}
.x6e_c00435{left:603.826653pt;}
.x2_c00435{left:606.119053pt;}
.x5c_c00435{left:613.951053pt;}
.x55_c00435{left:617.185053pt;}
.x3c_c00435{left:623.974253pt;}
.x32_c00435{left:624.929053pt;}
.x33_c00435{left:633.654253pt;}
.x3d_c00435{left:637.310653pt;}
.x3e_c00435{left:638.903453pt;}
.x75_c00435{left:643.061453pt;}
.x6f_c00435{left:644.165853pt;}
.x28_c00435{left:653.049453pt;}
.x1d_c00435{left:655.201053pt;}
.x76_c00435{left:662.813053pt;}
.x69_c00435{left:676.519053pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_97a2810cc5ac5881c3ed616f.woff2')format("woff");}.ff1_c00436{font-family:ff1_c00436;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00436;src:url('chunks/assets/font_1943ab6953cbbe5f1c80ec8c.woff2')format("woff");}.ff2_c00436{font-family:ff2_c00436;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00436;src:url('chunks/assets/font_d7e28213285a0722a50001e3.woff2')format("woff");}.ff3_c00436{font-family:ff3_c00436;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00436;src:url('chunks/assets/font_d421b2a991bfd595bdbafb07.woff2')format("woff");}.ff4_c00436{font-family:ff4_c00436;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00436;src:url('chunks/assets/font_117a8b507dc8b1f655da4b2a.woff2')format("woff");}.ff5_c00436{font-family:ff5_c00436;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00436;src:url('chunks/assets/font_5518ed9001ff5c7fcfb83e6b.woff2')format("woff");}.ff6_c00436{font-family:ff6_c00436;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00436;src:url('chunks/assets/font_8573acdafe600961e9d80188.woff2')format("woff");}.ff7_c00436{font-family:ff7_c00436;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m36_c00436{transform:matrix(0.011906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011906,0.000000,0.000000,0.250000,0,0);}
.mb2_c00436{transform:matrix(0.025001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.025001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.025001,0.000000,0.000000,0.250000,0,0);}
.m4e_c00436{transform:matrix(0.028572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.028572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.028572,0.000000,0.000000,0.250000,0,0);}
.m73_c00436{transform:matrix(0.029413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.029413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.029413,0.000000,0.000000,0.250000,0,0);}
.mdf_c00436{transform:matrix(0.033785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.033785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.033785,0.000000,0.000000,0.250000,0,0);}
.m32_c00436{transform:matrix(0.034341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.034341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.034341,0.000000,0.000000,0.250000,0,0);}
.m27_c00436{transform:matrix(0.037203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.037203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.037203,0.000000,0.000000,0.250000,0,0);}
.m68_c00436{transform:matrix(0.043920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043920,0.000000,0.000000,0.250000,0,0);}
.m89_c00436{transform:matrix(0.048246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048246,0.000000,0.000000,0.250000,0,0);}
.m33_c00436{transform:matrix(0.048810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048810,0.000000,0.000000,0.250000,0,0);}
.m34_c00436{transform:matrix(0.049603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.049603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.049603,0.000000,0.000000,0.250000,0,0);}
.m2f_c00436{transform:matrix(0.050596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050596,0.000000,0.000000,0.250000,0,0);}
.m43_c00436{transform:matrix(0.059211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.059211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.059211,0.000000,0.000000,0.250000,0,0);}
.m38_c00436{transform:matrix(0.059524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.059524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.059524,0.000000,0.000000,0.250000,0,0);}
.m37_c00436{transform:matrix(0.062501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062501,0.000000,0.000000,0.250000,0,0);}
.mf_c00436{transform:matrix(0.078284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078284,0.000000,0.000000,0.250000,0,0);}
.m35_c00436{transform:matrix(0.078869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078869,0.000000,0.000000,0.250000,0,0);}
.m11_c00436{transform:matrix(0.079547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.079547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.079547,0.000000,0.000000,0.250000,0,0);}
.m88_c00436{transform:matrix(0.085527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085527,0.000000,0.000000,0.250000,0,0);}
.m29_c00436{transform:matrix(0.089286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089286,0.000000,0.000000,0.250000,0,0);}
.m8a_c00436{transform:matrix(0.090693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090693,0.000000,0.000000,0.250000,0,0);}
.m87_c00436{transform:matrix(0.092105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092105,0.000000,0.000000,0.250000,0,0);}
.m90_c00436{transform:matrix(0.094612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094612,0.000000,0.000000,0.250000,0,0);}
.m74_c00436{transform:matrix(0.099264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099264,0.000000,0.000000,0.250000,0,0);}
.m41_c00436{transform:matrix(0.103802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103802,0.000000,0.000000,0.250000,0,0);}
.md_c00436{transform:matrix(0.109171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109171,0.000000,0.000000,0.250000,0,0);}
.mc5_c00436{transform:matrix(0.113126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113126,0.000000,0.000000,0.250000,0,0);}
.m4d_c00436{transform:matrix(0.114286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114286,0.000000,0.000000,0.250000,0,0);}
.m91_c00436{transform:matrix(0.123171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123171,0.000000,0.000000,0.250000,0,0);}
.mbe_c00436{transform:matrix(0.129791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129791,0.000000,0.000000,0.250000,0,0);}
.m44_c00436{transform:matrix(0.131578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131578,0.000000,0.000000,0.250000,0,0);}
.m2a_c00436{transform:matrix(0.133042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133042,0.000000,0.000000,0.250000,0,0);}
.m8d_c00436{transform:matrix(0.134418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134418,0.000000,0.000000,0.250000,0,0);}
.me_c00436{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);}
.m28_c00436{transform:matrix(0.136905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136905,0.000000,0.000000,0.250000,0,0);}
.m5_c00436{transform:matrix(0.140792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140792,0.000000,0.000000,0.250000,0,0);}
.m65_c00436{transform:matrix(0.143823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143823,0.000000,0.000000,0.250000,0,0);}
.m7d_c00436{transform:matrix(0.147278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147278,0.000000,0.000000,0.250000,0,0);}
.m30_c00436{transform:matrix(0.148809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148809,0.000000,0.000000,0.250000,0,0);}
.m72_c00436{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m45_c00436{transform:matrix(0.151316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151316,0.000000,0.000000,0.250000,0,0);}
.m3a_c00436{transform:matrix(0.154722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154722,0.000000,0.000000,0.250000,0,0);}
.m66_c00436{transform:matrix(0.155406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155406,0.000000,0.000000,0.250000,0,0);}
.mb0_c00436{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m42_c00436{transform:matrix(0.157895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157895,0.000000,0.000000,0.250000,0,0);}
.m9f_c00436{transform:matrix(0.158118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158118,0.000000,0.000000,0.250000,0,0);}
.m31_c00436{transform:matrix(0.160715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160715,0.000000,0.000000,0.250000,0,0);}
.mb1_c00436{transform:matrix(0.160938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160938,0.000000,0.000000,0.250000,0,0);}
.mb4_c00436{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00436{transform:matrix(0.163769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163769,0.000000,0.000000,0.250000,0,0);}
.m24_c00436{transform:matrix(0.166694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166694,0.000000,0.000000,0.250000,0,0);}
.m2e_c00436{transform:matrix(0.168812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168812,0.000000,0.000000,0.250000,0,0);}
.m1a_c00436{transform:matrix(0.168954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168954,0.000000,0.000000,0.250000,0,0);}
.m19_c00436{transform:matrix(0.171037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171037,0.000000,0.000000,0.250000,0,0);}
.m4a_c00436{transform:matrix(0.172177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172177,0.000000,0.000000,0.250000,0,0);}
.m1f_c00436{transform:matrix(0.174983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174983,0.000000,0.000000,0.250000,0,0);}
.mc7_c00436{transform:matrix(0.175503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175503,0.000000,0.000000,0.250000,0,0);}
.me1_c00436{transform:matrix(0.175676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175676,0.000000,0.000000,0.250000,0,0);}
.me0_c00436{transform:matrix(0.177365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177365,0.000000,0.000000,0.250000,0,0);}
.md0_c00436{transform:matrix(0.177753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177753,0.000000,0.000000,0.250000,0,0);}
.m46_c00436{transform:matrix(0.184210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184210,0.000000,0.000000,0.250000,0,0);}
.m7_c00436{transform:matrix(0.184212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184212,0.000000,0.000000,0.250000,0,0);}
.mb3_c00436{transform:matrix(0.184375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184375,0.000000,0.000000,0.250000,0,0);}
.m10_c00436{transform:matrix(0.185607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185607,0.000000,0.000000,0.250000,0,0);}
.m76_c00436{transform:matrix(0.187502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187502,0.000000,0.000000,0.250000,0,0);}
.mc1_c00436{transform:matrix(0.190258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190258,0.000000,0.000000,0.250000,0,0);}
.m69_c00436{transform:matrix(0.192568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192568,0.000000,0.000000,0.250000,0,0);}
.m50_c00436{transform:matrix(0.192704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192704,0.000000,0.000000,0.250000,0,0);}
.m94_c00436{transform:matrix(0.197192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197192,0.000000,0.000000,0.250000,0,0);}
.m4c_c00436{transform:matrix(0.197618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197618,0.000000,0.000000,0.250000,0,0);}
.mde_c00436{transform:matrix(0.198198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198198,0.000000,0.000000,0.250000,0,0);}
.m67_c00436{transform:matrix(0.201013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201013,0.000000,0.000000,0.250000,0,0);}
.md1_c00436{transform:matrix(0.202183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202183,0.000000,0.000000,0.250000,0,0);}
.m59_c00436{transform:matrix(0.202861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202861,0.000000,0.000000,0.250000,0,0);}
.m86_c00436{transform:matrix(0.204888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204888,0.000000,0.000000,0.250000,0,0);}
.m22_c00436{transform:matrix(0.205923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205923,0.000000,0.000000,0.250000,0,0);}
.m14_c00436{transform:matrix(0.207613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207613,0.000000,0.000000,0.250000,0,0);}
.md5_c00436{transform:matrix(0.213640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213640,0.000000,0.000000,0.250000,0,0);}
.m2d_c00436{transform:matrix(0.215003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215003,0.000000,0.000000,0.250000,0,0);}
.m13_c00436{transform:matrix(0.219698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219698,0.000000,0.000000,0.250000,0,0);}
.md6_c00436{transform:matrix(0.222598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222598,0.000000,0.000000,0.250000,0,0);}
.m16_c00436{transform:matrix(0.236891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236891,0.000000,0.000000,0.250000,0,0);}
.mb5_c00436{transform:matrix(0.238469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238469,0.000000,0.000000,0.250000,0,0);}
.m7f_c00436{transform:matrix(0.239740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239740,0.000000,0.000000,0.250000,0,0);}
.m60_c00436{transform:matrix(0.240372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240372,0.000000,0.000000,0.250000,0,0);}
.m96_c00436{transform:matrix(0.240459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240459,0.000000,0.000000,0.250000,0,0);}
.m40_c00436{transform:matrix(0.240911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240911,0.000000,0.000000,0.250000,0,0);}
.mcf_c00436{transform:matrix(0.244529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244529,0.000000,0.000000,0.250000,0,0);}
.m2c_c00436{transform:matrix(0.245977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245977,0.000000,0.000000,0.250000,0,0);}
.m6f_c00436{transform:matrix(0.246754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246754,0.000000,0.000000,0.250000,0,0);}
.mb6_c00436{transform:matrix(0.247434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247434,0.000000,0.000000,0.250000,0,0);}
.m1c_c00436{transform:matrix(0.249176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249176,0.000000,0.000000,0.250000,0,0);}
.mae_c00436{transform:matrix(0.249213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249213,0.000000,0.000000,0.250000,0,0);}
.m0_c00436{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m18_c00436{transform:matrix(0.250592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250592,0.000000,0.000000,0.250000,0,0);}
.m5d_c00436{transform:matrix(0.251693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251693,0.000000,0.000000,0.250000,0,0);}
.m5e_c00436{transform:matrix(0.252493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252493,0.000000,0.000000,0.250000,0,0);}
.m1b_c00436{transform:matrix(0.255255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255255,0.000000,0.000000,0.250000,0,0);}
.mc8_c00436{transform:matrix(0.256157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256157,0.000000,0.000000,0.250000,0,0);}
.m23_c00436{transform:matrix(0.257090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257090,0.000000,0.000000,0.250000,0,0);}
.mbf_c00436{transform:matrix(0.257567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257567,0.000000,0.000000,0.250000,0,0);}
.m7a_c00436{transform:matrix(0.257617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257617,0.000000,0.000000,0.250000,0,0);}
.md9_c00436{transform:matrix(0.260415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260415,0.000000,0.000000,0.250000,0,0);}
.md7_c00436{transform:matrix(0.264886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264886,0.000000,0.000000,0.250000,0,0);}
.m3b_c00436{transform:matrix(0.265732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265732,0.000000,0.000000,0.250000,0,0);}
.m15_c00436{transform:matrix(0.267141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267141,0.000000,0.000000,0.250000,0,0);}
.ma4_c00436{transform:matrix(0.268628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268628,0.000000,0.000000,0.250000,0,0);}
.m85_c00436{transform:matrix(0.270034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270034,0.000000,0.000000,0.250000,0,0);}
.mdc_c00436{transform:matrix(0.270180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270180,0.000000,0.000000,0.250000,0,0);}
.ma0_c00436{transform:matrix(0.270621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270621,0.000000,0.000000,0.250000,0,0);}
.mc4_c00436{transform:matrix(0.271574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271574,0.000000,0.000000,0.250000,0,0);}
.m83_c00436{transform:matrix(0.272905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272905,0.000000,0.000000,0.250000,0,0);}
.mc0_c00436{transform:matrix(0.274407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274407,0.000000,0.000000,0.250000,0,0);}
.m6d_c00436{transform:matrix(0.274613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274613,0.000000,0.000000,0.250000,0,0);}
.mab_c00436{transform:matrix(0.274764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274764,0.000000,0.000000,0.250000,0,0);}
.mac_c00436{transform:matrix(0.275141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275141,0.000000,0.000000,0.250000,0,0);}
.m9c_c00436{transform:matrix(0.275644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275644,0.000000,0.000000,0.250000,0,0);}
.m52_c00436{transform:matrix(0.276764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276764,0.000000,0.000000,0.250000,0,0);}
.m82_c00436{transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);}
.mc9_c00436{transform:matrix(0.277908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277908,0.000000,0.000000,0.250000,0,0);}
.m92_c00436{transform:matrix(0.278479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278479,0.000000,0.000000,0.250000,0,0);}
.m17_c00436{transform:matrix(0.278584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278584,0.000000,0.000000,0.250000,0,0);}
.m7b_c00436{transform:matrix(0.279335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279335,0.000000,0.000000,0.250000,0,0);}
.m62_c00436{transform:matrix(0.279813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279813,0.000000,0.000000,0.250000,0,0);}
.mce_c00436{transform:matrix(0.281205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281205,0.000000,0.000000,0.250000,0,0);}
.mdb_c00436{transform:matrix(0.281591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281591,0.000000,0.000000,0.250000,0,0);}
.mbb_c00436{transform:matrix(0.282201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282201,0.000000,0.000000,0.250000,0,0);}
.ma9_c00436{transform:matrix(0.283518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283518,0.000000,0.000000,0.250000,0,0);}
.m6a_c00436{transform:matrix(0.283674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283674,0.000000,0.000000,0.250000,0,0);}
.m4b_c00436{transform:matrix(0.283955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283955,0.000000,0.000000,0.250000,0,0);}
.mdd_c00436{transform:matrix(0.285119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285119,0.000000,0.000000,0.250000,0,0);}
.md3_c00436{transform:matrix(0.285320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285320,0.000000,0.000000,0.250000,0,0);}
.m78_c00436{transform:matrix(0.285408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285408,0.000000,0.000000,0.250000,0,0);}
.m7c_c00436{transform:matrix(0.286526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286526,0.000000,0.000000,0.250000,0,0);}
.ma6_c00436{transform:matrix(0.286629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286629,0.000000,0.000000,0.250000,0,0);}
.m99_c00436{transform:matrix(0.287241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287241,0.000000,0.000000,0.250000,0,0);}
.m97_c00436{transform:matrix(0.288967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288967,0.000000,0.000000,0.250000,0,0);}
.m6b_c00436{transform:matrix(0.289871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289871,0.000000,0.000000,0.250000,0,0);}
.m9a_c00436{transform:matrix(0.290198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290198,0.000000,0.000000,0.250000,0,0);}
.mba_c00436{transform:matrix(0.290366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290366,0.000000,0.000000,0.250000,0,0);}
.m58_c00436{transform:matrix(0.292280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292280,0.000000,0.000000,0.250000,0,0);}
.m64_c00436{transform:matrix(0.293295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293295,0.000000,0.000000,0.250000,0,0);}
.m79_c00436{transform:matrix(0.295612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295612,0.000000,0.000000,0.250000,0,0);}
.m93_c00436{transform:matrix(0.296059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296059,0.000000,0.000000,0.250000,0,0);}
.m61_c00436{transform:matrix(0.297667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297667,0.000000,0.000000,0.250000,0,0);}
.mcb_c00436{transform:matrix(0.297691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297691,0.000000,0.000000,0.250000,0,0);}
.mbc_c00436{transform:matrix(0.298368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298368,0.000000,0.000000,0.250000,0,0);}
.m8f_c00436{transform:matrix(0.300818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300818,0.000000,0.000000,0.250000,0,0);}
.mc6_c00436{transform:matrix(0.302416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302416,0.000000,0.000000,0.250000,0,0);}
.m98_c00436{transform:matrix(0.304797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304797,0.000000,0.000000,0.250000,0,0);}
.m5b_c00436{transform:matrix(0.305794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305794,0.000000,0.000000,0.250000,0,0);}
.m3c_c00436{transform:matrix(0.308201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308201,0.000000,0.000000,0.250000,0,0);}
.m8c_c00436{transform:matrix(0.308550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308550,0.000000,0.000000,0.250000,0,0);}
.ma7_c00436{transform:matrix(0.308676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308676,0.000000,0.000000,0.250000,0,0);}
.m1d_c00436{transform:matrix(0.308867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308867,0.000000,0.000000,0.250000,0,0);}
.m84_c00436{transform:matrix(0.309324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309324,0.000000,0.000000,0.250000,0,0);}
.m9b_c00436{transform:matrix(0.310490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310490,0.000000,0.000000,0.250000,0,0);}
.m9d_c00436{transform:matrix(0.312719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312719,0.000000,0.000000,0.250000,0,0);}
.md2_c00436{transform:matrix(0.314799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314799,0.000000,0.000000,0.250000,0,0);}
.m75_c00436{transform:matrix(0.315767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315767,0.000000,0.000000,0.250000,0,0);}
.m20_c00436{transform:matrix(0.316946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316946,0.000000,0.000000,0.250000,0,0);}
.mbd_c00436{transform:matrix(0.317567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317567,0.000000,0.000000,0.250000,0,0);}
.m56_c00436{transform:matrix(0.320418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320418,0.000000,0.000000,0.250000,0,0);}
.md8_c00436{transform:matrix(0.321492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321492,0.000000,0.000000,0.250000,0,0);}
.mcd_c00436{transform:matrix(0.321815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321815,0.000000,0.000000,0.250000,0,0);}
.m47_c00436{transform:matrix(0.322842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322842,0.000000,0.000000,0.250000,0,0);}
.m48_c00436{transform:matrix(0.324117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324117,0.000000,0.000000,0.250000,0,0);}
.m57_c00436{transform:matrix(0.324300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324300,0.000000,0.000000,0.250000,0,0);}
.m71_c00436{transform:matrix(0.324712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324712,0.000000,0.000000,0.250000,0,0);}
.m9e_c00436{transform:matrix(0.325039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325039,0.000000,0.000000,0.250000,0,0);}
.ma2_c00436{transform:matrix(0.327044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327044,0.000000,0.000000,0.250000,0,0);}
.mcc_c00436{transform:matrix(0.327348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327348,0.000000,0.000000,0.250000,0,0);}
.mb8_c00436{transform:matrix(0.327871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327871,0.000000,0.000000,0.250000,0,0);}
.ma5_c00436{transform:matrix(0.329866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329866,0.000000,0.000000,0.250000,0,0);}
.maf_c00436{transform:matrix(0.330518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330518,0.000000,0.000000,0.250000,0,0);}
.m63_c00436{transform:matrix(0.331101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331101,0.000000,0.000000,0.250000,0,0);}
.m77_c00436{transform:matrix(0.332282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332282,0.000000,0.000000,0.250000,0,0);}
.mad_c00436{transform:matrix(0.332898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332898,0.000000,0.000000,0.250000,0,0);}
.m51_c00436{transform:matrix(0.334931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334931,0.000000,0.000000,0.250000,0,0);}
.m80_c00436{transform:matrix(0.335523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335523,0.000000,0.000000,0.250000,0,0);}
.m95_c00436{transform:matrix(0.336305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336305,0.000000,0.000000,0.250000,0,0);}
.md4_c00436{transform:matrix(0.336904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336904,0.000000,0.000000,0.250000,0,0);}
.mc_c00436{transform:matrix(0.337079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337079,0.000000,0.000000,0.250000,0,0);}
.m53_c00436{transform:matrix(0.338749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338749,0.000000,0.000000,0.250000,0,0);}
.mb_c00436{transform:matrix(0.339413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339413,0.000000,0.000000,0.250000,0,0);}
.m6c_c00436{transform:matrix(0.343114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343114,0.000000,0.000000,0.250000,0,0);}
.m3d_c00436{transform:matrix(0.344803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344803,0.000000,0.000000,0.250000,0,0);}
.m1e_c00436{transform:matrix(0.345533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345533,0.000000,0.000000,0.250000,0,0);}
.m5c_c00436{transform:matrix(0.345576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345576,0.000000,0.000000,0.250000,0,0);}
.mc3_c00436{transform:matrix(0.347817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347817,0.000000,0.000000,0.250000,0,0);}
.mca_c00436{transform:matrix(0.347978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347978,0.000000,0.000000,0.250000,0,0);}
.m49_c00436{transform:matrix(0.349744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349744,0.000000,0.000000,0.250000,0,0);}
.m12_c00436{transform:matrix(0.350298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350298,0.000000,0.000000,0.250000,0,0);}
.m9_c00436{transform:matrix(0.353279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353279,0.000000,0.000000,0.250000,0,0);}
.m3f_c00436{transform:matrix(0.353365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353365,0.000000,0.000000,0.250000,0,0);}
.maa_c00436{transform:matrix(0.353876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353876,0.000000,0.000000,0.250000,0,0);}
.m5a_c00436{transform:matrix(0.355202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355202,0.000000,0.000000,0.250000,0,0);}
.m6e_c00436{transform:matrix(0.356215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356215,0.000000,0.000000,0.250000,0,0);}
.mda_c00436{transform:matrix(0.356907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356907,0.000000,0.000000,0.250000,0,0);}
.ma1_c00436{transform:matrix(0.360722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360722,0.000000,0.000000,0.250000,0,0);}
.m55_c00436{transform:matrix(0.360809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360809,0.000000,0.000000,0.250000,0,0);}
.m6_c00436{transform:matrix(0.361385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361385,0.000000,0.000000,0.250000,0,0);}
.m3_c00436{transform:matrix(0.366800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366800,0.000000,0.000000,0.250000,0,0);}
.ma8_c00436{transform:matrix(0.368167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368167,0.000000,0.000000,0.250000,0,0);}
.m39_c00436{transform:matrix(0.370983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370983,0.000000,0.000000,0.250000,0,0);}
.m8b_c00436{transform:matrix(0.372649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372649,0.000000,0.000000,0.250000,0,0);}
.m8e_c00436{transform:matrix(0.376798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376798,0.000000,0.000000,0.250000,0,0);}
.ma3_c00436{transform:matrix(0.377461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377461,0.000000,0.000000,0.250000,0,0);}
.m4f_c00436{transform:matrix(0.379216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379216,0.000000,0.000000,0.250000,0,0);}
.m54_c00436{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);}
.mb9_c00436{transform:matrix(0.386733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386733,0.000000,0.000000,0.250000,0,0);}
.m3e_c00436{transform:matrix(0.387627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387627,0.000000,0.000000,0.250000,0,0);}
.ma_c00436{transform:matrix(0.394197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394197,0.000000,0.000000,0.250000,0,0);}
.m70_c00436{transform:matrix(0.394242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394242,0.000000,0.000000,0.250000,0,0);}
.m21_c00436{transform:matrix(0.403936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403936,0.000000,0.000000,0.250000,0,0);}
.mc2_c00436{transform:matrix(0.413413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413413,0.000000,0.000000,0.250000,0,0);}
.m7e_c00436{transform:matrix(0.435963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435963,0.000000,0.000000,0.250000,0,0);}
.m5f_c00436{transform:matrix(0.437319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437319,0.000000,0.000000,0.250000,0,0);}
.mb7_c00436{transform:matrix(0.437963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437963,0.000000,0.000000,0.250000,0,0);}
.m81_c00436{transform:matrix(0.458425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458425,0.000000,0.000000,0.250000,0,0);}
.m25_c00436{transform:matrix(0.463660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463660,0.000000,0.000000,0.250000,0,0);}
.m8_c00436{transform:matrix(0.593740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.593740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.593740,0.000000,0.000000,0.250000,0,0);}
.m26_c00436{transform:matrix(0.779847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779847,0.000000,0.000000,0.250000,0,0);}
.m4_c00436{transform:matrix(0.819932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.819932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.819932,0.000000,0.000000,0.250000,0,0);}
.m2_c00436{transform:matrix(1.171233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.171233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.171233,0.000000,0.000000,0.250000,0,0);}
.m1_c00436{transform:matrix(1.203483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.203483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.203483,0.000000,0.000000,0.250000,0,0);}
.v1_c00436{vertical-align:-9.999000px;}
.v0_c00436{vertical-align:0.000000px;}
.ls2c_c00436{letter-spacing:-3.672900px;}
.ls15_c00436{letter-spacing:-3.659040px;}
.ls10_c00436{letter-spacing:-2.515590px;}
.ls21_c00436{letter-spacing:-2.425500px;}
.ls24_c00436{letter-spacing:-2.349277px;}
.ls2f_c00436{letter-spacing:-2.328480px;}
.ls33_c00436{letter-spacing:-2.300767px;}
.ls12_c00436{letter-spacing:-1.988917px;}
.lsa_c00436{letter-spacing:-1.878030px;}
.ls3e_c00436{letter-spacing:-1.850317px;}
.ls31_c00436{letter-spacing:-1.781017px;}
.ls16_c00436{letter-spacing:-1.649340px;}
.ls34_c00436{letter-spacing:-1.642417px;}
.ls30_c00436{letter-spacing:-1.628358px;}
.ls1e_c00436{letter-spacing:-1.600830px;}
.ls19_c00436{letter-spacing:-1.434470px;}
.lsf_c00436{letter-spacing:-1.106860px;}
.ls1c_c00436{letter-spacing:-0.630630px;}
.ls37_c00436{letter-spacing:-0.586100px;}
.ls7_c00436{letter-spacing:0.000000px;}
.ls1_c00436{letter-spacing:0.035937px;}
.ls3d_c00436{letter-spacing:0.086249px;}
.ls1f_c00436{letter-spacing:0.683110px;}
.ls35_c00436{letter-spacing:0.773470px;}
.ls9_c00436{letter-spacing:0.910800px;}
.ls1b_c00436{letter-spacing:1.425600px;}
.ls23_c00436{letter-spacing:1.524600px;}
.lsb_c00436{letter-spacing:1.544400px;}
.ls29_c00436{letter-spacing:1.742400px;}
.ls0_c00436{letter-spacing:1.848528px;}
.ls8_c00436{letter-spacing:1.900810px;}
.ls4_c00436{letter-spacing:1.941826px;}
.ls1a_c00436{letter-spacing:1.980000px;}
.ls2a_c00436{letter-spacing:2.178000px;}
.ls1d_c00436{letter-spacing:2.286900px;}
.ls17_c00436{letter-spacing:2.356200px;}
.ls36_c00436{letter-spacing:2.405700px;}
.ls40_c00436{letter-spacing:2.465100px;}
.ls18_c00436{letter-spacing:2.534400px;}
.ls38_c00436{letter-spacing:2.544310px;}
.ls3f_c00436{letter-spacing:2.781524px;}
.ls13_c00436{letter-spacing:2.841310px;}
.ls22_c00436{letter-spacing:3.104957px;}
.ls2b_c00436{letter-spacing:3.227400px;}
.ls32_c00436{letter-spacing:3.286810px;}
.ls2e_c00436{letter-spacing:3.326400px;}
.ls28_c00436{letter-spacing:3.465000px;}
.ls6_c00436{letter-spacing:3.550576px;}
.ls3a_c00436{letter-spacing:3.573900px;}
.lse_c00436{letter-spacing:3.593700px;}
.ls41_c00436{letter-spacing:3.633310px;}
.ls39_c00436{letter-spacing:3.940200px;}
.ls14_c00436{letter-spacing:5.227200px;}
.ls26_c00436{letter-spacing:6.256810px;}
.ls3_c00436{letter-spacing:9.871950px;}
.lsd_c00436{letter-spacing:11.404998px;}
.ls5_c00436{letter-spacing:26.808408px;}
.lsc_c00436{letter-spacing:27.086400px;}
.ls11_c00436{letter-spacing:47.044800px;}
.ls2d_c00436{letter-spacing:48.470598px;}
.ls25_c00436{letter-spacing:49.896198px;}
.ls27_c00436{letter-spacing:52.747398px;}
.ls2_c00436{letter-spacing:54.172998px;}
.ls3b_c00436{letter-spacing:57.024198px;}
.ls3c_c00436{letter-spacing:58.449798px;}
.ls20_c00436{letter-spacing:59.875398px;}
.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;}
}
.ws3_c00436{word-spacing:-79.038511px;}
.ws6_c00436{word-spacing:-19.996258px;}
.ws2_c00436{word-spacing:-18.004437px;}
.ws5_c00436{word-spacing:-17.968500px;}
.ws1_c00436{word-spacing:-17.325000px;}
.ws7_c00436{word-spacing:-4.786214px;}
.ws8_c00436{word-spacing:0.000000px;}
.ws4_c00436{word-spacing:4.384314px;}
.ws0_c00436{word-spacing:38.852633px;}
._12_c00436{margin-left:-27.240840px;}
._d_c00436{margin-left:-22.383900px;}
._7_c00436{margin-left:-17.354304px;}
._c_c00436{margin-left:-14.899500px;}
._0_c00436{margin-left:-8.097489px;}
._1_c00436{margin-left:-6.956994px;}
._b_c00436{margin-left:-3.015540px;}
._15_c00436{width:1.150578px;}
._8_c00436{width:3.868603px;}
._1d_c00436{width:5.318676px;}
._10_c00436{width:6.899904px;}
._f_c00436{width:10.026423px;}
._3_c00436{width:11.499840px;}
._a_c00436{width:12.817728px;}
._6_c00436{width:14.375394px;}
._1b_c00436{width:19.381428px;}
._17_c00436{width:20.909988px;}
._16_c00436{width:24.324300px;}
._18_c00436{width:25.443396px;}
._4_c00436{width:27.383994px;}
._2_c00436{width:28.397886px;}
._1a_c00436{width:30.372784px;}
._11_c00436{width:32.422500px;}
._19_c00436{width:35.352702px;}
._13_c00436{width:37.805724px;}
._1c_c00436{width:39.421800px;}
._9_c00436{width:40.620492px;}
._5_c00436{width:43.627518px;}
._14_c00436{width:53.351303px;}
._e_c00436{width:777.683412px;}
.fc0_c00436{color:transparent;}
.fs6_c00436{font-size:11.404998px;}
.fs11_c00436{font-size:13.662198px;}
.fs17_c00436{font-size:16.236000px;}
.fsf_c00436{font-size:18.018000px;}
.fs1_c00436{font-size:18.216000px;}
.fs29_c00436{font-size:19.800000px;}
.fs4_c00436{font-size:27.086400px;}
.fs12_c00436{font-size:28.314000px;}
.fse_c00436{font-size:28.512000px;}
.fs15_c00436{font-size:30.492000px;}
.fs3_c00436{font-size:30.888000px;}
.fs23_c00436{font-size:34.848000px;}
.fs0_c00436{font-size:38.016198px;}
.fs18_c00436{font-size:38.808000px;}
.fsd_c00436{font-size:39.600000px;}
.fs25_c00436{font-size:43.560000px;}
.fs10_c00436{font-size:45.738000px;}
.fs2d_c00436{font-size:46.926198px;}
.fs8_c00436{font-size:47.044800px;}
.fsb_c00436{font-size:47.124000px;}
.fs19_c00436{font-size:47.520000px;}
.fs2e_c00436{font-size:48.114000px;}
.fs27_c00436{font-size:48.470598px;}
.fs37_c00436{font-size:49.302000px;}
.fs1d_c00436{font-size:49.896198px;}
.fsc_c00436{font-size:50.688000px;}
.fs2a_c00436{font-size:50.886198px;}
.fs21_c00436{font-size:52.747398px;}
.fs36_c00436{font-size:52.866198px;}
.fs2_c00436{font-size:53.658000px;}
.fs1b_c00436{font-size:54.172998px;}
.fs9_c00436{font-size:56.826198px;}
.fs33_c00436{font-size:57.024198px;}
.fs34_c00436{font-size:58.449798px;}
.fs2f_c00436{font-size:59.202000px;}
.fs13_c00436{font-size:59.875398px;}
.fsa_c00436{font-size:61.974000px;}
.fs22_c00436{font-size:64.548000px;}
.fs32_c00436{font-size:64.944000px;}
.fs2b_c00436{font-size:65.736198px;}
.fs20_c00436{font-size:66.330000px;}
.fs28_c00436{font-size:66.528000px;}
.fs1c_c00436{font-size:67.122198px;}
.fs14_c00436{font-size:69.300000px;}
.fs35_c00436{font-size:69.696198px;}
.fs24_c00436{font-size:70.884000px;}
.fs31_c00436{font-size:71.478000px;}
.fs2c_c00436{font-size:71.676198px;}
.fs7_c00436{font-size:71.874000px;}
.fs1e_c00436{font-size:72.072198px;}
.fs38_c00436{font-size:72.666198px;}
.fs1a_c00436{font-size:72.864000px;}
.fs30_c00436{font-size:78.804000px;}
.fs5_c00436{font-size:104.544000px;}
.fs26_c00436{font-size:104.940000px;}
.fs1f_c00436{font-size:125.136198px;}
.fs16_c00436{font-size:133.056198px;}
.y0_c00436{bottom:0.000000px;}
.y1_c00436{bottom:76.500000px;}
.y26_c00436{bottom:133.918335px;}
.y25_c00436{bottom:158.509935px;}
.y24_c00436{bottom:163.855935px;}
.y23_c00436{bottom:193.075785px;}
.y22_c00436{bottom:199.495935px;}
.y21_c00436{bottom:232.284735px;}
.y20_c00436{bottom:297.149535px;}
.y1f_c00436{bottom:331.363935px;}
.y1e_c00436{bottom:365.578335px;}
.y1c_c00436{bottom:398.362185px;}
.y1d_c00436{bottom:402.643935px;}
.y1b_c00436{bottom:428.661135px;}
.y1a_c00436{bottom:434.719935px;}
.y19_c00436{bottom:455.742585px;}
.y18_c00436{bottom:467.503785px;}
.y17_c00436{bottom:488.179935px;}
.y16_c00436{bottom:500.292585px;}
.y14_c00436{bottom:532.729935px;}
.y15_c00436{bottom:533.081385px;}
.y13_c00436{bottom:565.870185px;}
.y12_c00436{bottom:597.951135px;}
.y11_c00436{bottom:630.027135px;}
.y10_c00436{bottom:631.809135px;}
.yf_c00436{bottom:639.649935px;}
.yb_c00436{bottom:724.116735px;}
.yc_c00436{bottom:726.611535px;}
.ye_c00436{bottom:727.319385px;}
.yd_c00436{bottom:730.883385px;}
.ya_c00436{bottom:862.043535px;}
.y9_c00436{bottom:892.688985px;}
.y8_c00436{bottom:895.901535px;}
.y7_c00436{bottom:923.695785px;}
.y6_c00436{bottom:926.546985px;}
.y5_c00436{bottom:1071.958185px;}
.y4_c00436{bottom:1074.096585px;}
.y3_c00436{bottom:1079.798985px;}
.y2_c00436{bottom:1107.954585px;}
.h8_c00436{height:7.595729px;}
.h13_c00436{height:13.408700px;}
.h14_c00436{height:13.768934px;}
.h3_c00436{height:17.878008px;}
.h6_c00436{height:18.039542px;}
.h11_c00436{height:18.158766px;}
.h2b_c00436{height:20.650781px;}
.h10_c00436{height:27.982969px;}
.h15_c00436{height:29.530617px;}
.h1a_c00436{height:30.476531px;}
.ha_c00436{height:31.331837px;}
.h18_c00436{height:31.802203px;}
.h5_c00436{height:32.215219px;}
.h28_c00436{height:32.281418px;}
.h1e_c00436{height:33.230868px;}
.h24_c00436{height:34.201406px;}
.h22_c00436{height:35.129767px;}
.h1c_c00436{height:36.079217px;}
.h2_c00436{height:37.310819px;}
.h33_c00436{height:37.978116px;}
.h34_c00436{height:38.927565px;}
.h16_c00436{height:39.877015px;}
.hf_c00436{height:41.301563px;}
.h26_c00436{height:45.431719px;}
.h2f_c00436{height:46.055497px;}
.h12_c00436{height:46.095328px;}
.hd_c00436{height:46.249629px;}
.he_c00436{height:49.747500px;}
.h2c_c00436{height:49.942020px;}
.h30_c00436{height:50.181398px;}
.h37_c00436{height:51.420445px;}
.h36_c00436{height:55.137792px;}
.hb_c00436{height:55.771806px;}
.h4_c00436{height:55.963617px;}
.h2d_c00436{height:64.516483px;}
.hc_c00436{height:64.636945px;}
.h29_c00436{height:65.293594px;}
.h2a_c00436{height:67.047750px;}
.h23_c00436{height:67.321547px;}
.h17_c00436{height:68.014160px;}
.h21_c00436{height:69.180117px;}
.h25_c00436{height:69.534158px;}
.h1d_c00436{height:70.006355px;}
.h32_c00436{height:70.151748px;}
.h2e_c00436{height:70.346269px;}
.h9_c00436{height:70.540400px;}
.h1f_c00436{height:70.734921px;}
.h38_c00436{height:71.317899px;}
.h1b_c00436{height:71.512031px;}
.h35_c00436{height:72.690957px;}
.h31_c00436{height:77.341816px;}
.h7_c00436{height:102.604219px;}
.h27_c00436{height:102.992871px;}
.h20_c00436{height:122.814335px;}
.h19_c00436{height:138.773457px;}
.h1_c00436{height:1110.000000px;}
.h0_c00436{height:1263.000000px;}
.w1_c00436{width:775.500000px;}
.w0_c00436{width:892.500000px;}
.x0_c00436{left:0.000000px;}
.x1_c00436{left:58.500000px;}
.x6c_c00436{left:84.141735px;}
.x4d_c00436{left:86.186085px;}
.xf_c00436{left:88.532385px;}
.x22_c00436{left:98.036385px;}
.x10_c00436{left:104.189235px;}
.x6d_c00436{left:107.223585px;}
.x82_c00436{left:108.767985px;}
.x89_c00436{left:110.322285px;}
.x60_c00436{left:112.450785px;}
.x61_c00436{left:116.881035px;}
.x53_c00436{left:119.177835px;}
.x90_c00436{left:120.588585px;}
.x32_c00436{left:124.909935px;}
.x63_c00436{left:128.558085px;}
.x7d_c00436{left:129.919335px;}
.x83_c00436{left:131.636985px;}
.x33_c00436{left:138.269985px;}
.x54_c00436{left:140.586585px;}
.x4e_c00436{left:143.328885px;}
.x34_c00436{left:150.748935px;}
.x35_c00436{left:156.089985px;}
.x78_c00436{left:161.228085px;}
.x11_c00436{left:162.317085px;}
.x55_c00436{left:172.415085px;}
.x36_c00436{left:174.340635px;}
.x6e_c00436{left:178.548135px;}
.x37_c00436{left:182.626935px;}
.x8a_c00436{left:186.809685px;}
.x4f_c00436{left:194.680185px;}
.x64_c00436{left:205.624635px;}
.x91_c00436{left:206.872035px;}
.x5a_c00436{left:216.420585px;}
.x38_c00436{left:227.662035px;}
.x8b_c00436{left:229.290585px;}
.x23_c00436{left:237.779835px;}
.x12_c00436{left:238.878735px;}
.x39_c00436{left:244.828635px;}
.x65_c00436{left:250.347885px;}
.x3a_c00436{left:260.673585px;}
.x3b_c00436{left:262.831785px;}
.x6f_c00436{left:265.232535px;}
.x3c_c00436{left:272.098185px;}
.x13_c00436{left:273.375285px;}
.x3d_c00436{left:282.938685px;}
.x3e_c00436{left:289.784535px;}
.x5b_c00436{left:293.779185px;}
.x3f_c00436{left:297.937185px;}
.x40_c00436{left:305.070135px;}
.x41_c00436{left:307.559985px;}
.x79_c00436{left:315.044385px;}
.x2_c00436{left:321.702135px;}
.x5c_c00436{left:326.627385px;}
.x14_c00436{left:327.963885px;}
.x70_c00436{left:329.726085px;}
.x7a_c00436{left:331.087335px;}
.x24_c00436{left:332.557485px;}
.x66_c00436{left:337.368885px;}
.x50_c00436{left:338.571735px;}
.x25_c00436{left:347.516385px;}
.x15_c00436{left:349.847835px;}
.x3_c00436{left:352.981185px;}
.x42_c00436{left:360.668535px;}
.x16_c00436{left:371.716935px;}
.x43_c00436{left:382.582185px;}
.x17_c00436{left:392.383185px;}
.x44_c00436{left:393.808785px;}
.x26_c00436{left:399.204285px;}
.x4_c00436{left:402.179235px;}
.x18_c00436{left:404.505735px;}
.x45_c00436{left:413.836485px;}
.x7b_c00436{left:414.994785px;}
.x27_c00436{left:423.048435px;}
.x56_c00436{left:426.241185px;}
.x46_c00436{left:435.507585px;}
.x71_c00436{left:437.131185px;}
.x28_c00436{left:441.992085px;}
.x47_c00436{left:447.595485px;}
.x84_c00436{left:454.040385px;}
.x85_c00436{left:458.317185px;}
.x19_c00436{left:459.742785px;}
.x7e_c00436{left:461.237685px;}
.x57_c00436{left:469.321035px;}
.x29_c00436{left:470.900085px;}
.x87_c00436{left:472.236585px;}
.x51_c00436{left:480.057585px;}
.x8c_c00436{left:481.250535px;}
.x1a_c00436{left:482.275185px;}
.x5_c00436{left:484.522485px;}
.x2a_c00436{left:492.605835px;}
.x58_c00436{left:501.679185px;}
.x48_c00436{left:503.471085px;}
.x1b_c00436{left:512.841435px;}
.x52_c00436{left:513.920535px;}
.x2b_c00436{left:514.925385px;}
.x59_c00436{left:520.508985px;}
.x6_c00436{left:521.642535px;}
.x4a_c00436{left:525.176835px;}
.x49_c00436{left:528.829935px;}
.x92_c00436{left:531.344535px;}
.x2c_c00436{left:535.443135px;}
.x7_c00436{left:538.685385px;}
.x88_c00436{left:544.278885px;}
.x72_c00436{left:546.833085px;}
.x1c_c00436{left:558.114135px;}
.x67_c00436{left:560.722785px;}
.x2f_c00436{left:568.949685px;}
.x7f_c00436{left:580.324785px;}
.x68_c00436{left:590.289135px;}
.x2d_c00436{left:591.457335px;}
.x30_c00436{left:594.135285px;}
.x5d_c00436{left:600.144585px;}
.x1d_c00436{left:601.520685px;}
.x8d_c00436{left:602.901735px;}
.x73_c00436{left:612.578985px;}
.x1e_c00436{left:613.950135px;}
.x8e_c00436{left:618.325935px;}
.x1f_c00436{left:620.157435px;}
.x5e_c00436{left:623.820435px;}
.x69_c00436{left:624.993585px;}
.x8f_c00436{left:634.606485px;}
.x74_c00436{left:635.616285px;}
.x2e_c00436{left:646.798335px;}
.x5f_c00436{left:648.347685px;}
.x20_c00436{left:657.747735px;}
.x93_c00436{left:660.400935px;}
.x75_c00436{left:666.781485px;}
.x80_c00436{left:667.806135px;}
.x31_c00436{left:668.914935px;}
.x77_c00436{left:677.399235px;}
.xb_c00436{left:678.953535px;}
.x21_c00436{left:680.681085px;}
.x6a_c00436{left:689.071335px;}
.xc_c00436{left:690.185085px;}
.x8_c00436{left:693.328335px;}
.x86_c00436{left:700.159335px;}
.x4b_c00436{left:701.495835px;}
.x9_c00436{left:702.604635px;}
.xd_c00436{left:704.950935px;}
.x62_c00436{left:709.554435px;}
.x6b_c00436{left:711.316635px;}
.xa_c00436{left:714.489585px;}
.xe_c00436{left:716.088435px;}
.x81_c00436{left:722.978835px;}
.x76_c00436{left:733.596585px;}
.x4c_c00436{left:744.644985px;}
.x7c_c00436{left:770.177085px;}
@media print{
.v1_c00436{vertical-align:-8.888000pt;}
.v0_c00436{vertical-align:0.000000pt;}
.ls2c_c00436{letter-spacing:-3.264800pt;}
.ls15_c00436{letter-spacing:-3.252480pt;}
.ls10_c00436{letter-spacing:-2.236080pt;}
.ls21_c00436{letter-spacing:-2.156000pt;}
.ls24_c00436{letter-spacing:-2.088246pt;}
.ls2f_c00436{letter-spacing:-2.069760pt;}
.ls33_c00436{letter-spacing:-2.045126pt;}
.ls12_c00436{letter-spacing:-1.767926pt;}
.lsa_c00436{letter-spacing:-1.669360pt;}
.ls3e_c00436{letter-spacing:-1.644726pt;}
.ls31_c00436{letter-spacing:-1.583126pt;}
.ls16_c00436{letter-spacing:-1.466080pt;}
.ls34_c00436{letter-spacing:-1.459926pt;}
.ls30_c00436{letter-spacing:-1.447430pt;}
.ls1e_c00436{letter-spacing:-1.422960pt;}
.ls19_c00436{letter-spacing:-1.275085pt;}
.lsf_c00436{letter-spacing:-0.983875pt;}
.ls1c_c00436{letter-spacing:-0.560560pt;}
.ls37_c00436{letter-spacing:-0.520978pt;}
.ls7_c00436{letter-spacing:0.000000pt;}
.ls1_c00436{letter-spacing:0.031944pt;}
.ls3d_c00436{letter-spacing:0.076666pt;}
.ls1f_c00436{letter-spacing:0.607209pt;}
.ls35_c00436{letter-spacing:0.687529pt;}
.ls9_c00436{letter-spacing:0.809600pt;}
.ls1b_c00436{letter-spacing:1.267200pt;}
.ls23_c00436{letter-spacing:1.355200pt;}
.lsb_c00436{letter-spacing:1.372800pt;}
.ls29_c00436{letter-spacing:1.548800pt;}
.ls0_c00436{letter-spacing:1.643136pt;}
.ls8_c00436{letter-spacing:1.689609pt;}
.ls4_c00436{letter-spacing:1.726067pt;}
.ls1a_c00436{letter-spacing:1.760000pt;}
.ls2a_c00436{letter-spacing:1.936000pt;}
.ls1d_c00436{letter-spacing:2.032800pt;}
.ls17_c00436{letter-spacing:2.094400pt;}
.ls36_c00436{letter-spacing:2.138400pt;}
.ls40_c00436{letter-spacing:2.191200pt;}
.ls18_c00436{letter-spacing:2.252800pt;}
.ls38_c00436{letter-spacing:2.261609pt;}
.ls3f_c00436{letter-spacing:2.472466pt;}
.ls13_c00436{letter-spacing:2.525609pt;}
.ls22_c00436{letter-spacing:2.759962pt;}
.ls2b_c00436{letter-spacing:2.868800pt;}
.ls32_c00436{letter-spacing:2.921609pt;}
.ls2e_c00436{letter-spacing:2.956800pt;}
.ls28_c00436{letter-spacing:3.080000pt;}
.ls6_c00436{letter-spacing:3.156067pt;}
.ls3a_c00436{letter-spacing:3.176800pt;}
.lse_c00436{letter-spacing:3.194400pt;}
.ls41_c00436{letter-spacing:3.229609pt;}
.ls39_c00436{letter-spacing:3.502400pt;}
.ls14_c00436{letter-spacing:4.646400pt;}
.ls26_c00436{letter-spacing:5.561609pt;}
.ls3_c00436{letter-spacing:8.775067pt;}
.lsd_c00436{letter-spacing:10.137776pt;}
.ls5_c00436{letter-spacing:23.829696pt;}
.lsc_c00436{letter-spacing:24.076800pt;}
.ls11_c00436{letter-spacing:41.817600pt;}
.ls2d_c00436{letter-spacing:43.084976pt;}
.ls25_c00436{letter-spacing:44.352176pt;}
.ls27_c00436{letter-spacing:46.886576pt;}
.ls2_c00436{letter-spacing:48.153776pt;}
.ls3b_c00436{letter-spacing:50.688176pt;}
.ls3c_c00436{letter-spacing:51.955376pt;}
.ls20_c00436{letter-spacing:53.222576pt;}
.ws3_c00436{word-spacing:-70.256454pt;}
.ws6_c00436{word-spacing:-17.774451pt;}
.ws2_c00436{word-spacing:-16.003944pt;}
.ws5_c00436{word-spacing:-15.972000pt;}
.ws1_c00436{word-spacing:-15.400000pt;}
.ws7_c00436{word-spacing:-4.254413pt;}
.ws8_c00436{word-spacing:0.000000pt;}
.ws4_c00436{word-spacing:3.897168pt;}
.ws0_c00436{word-spacing:34.535673pt;}
._12_c00436{margin-left:-24.214080pt;}
._d_c00436{margin-left:-19.896800pt;}
._7_c00436{margin-left:-15.426048pt;}
._c_c00436{margin-left:-13.244000pt;}
._0_c00436{margin-left:-7.197768pt;}
._1_c00436{margin-left:-6.183995pt;}
._b_c00436{margin-left:-2.680480pt;}
._15_c00436{width:1.022736pt;}
._8_c00436{width:3.438758pt;}
._1d_c00436{width:4.727712pt;}
._10_c00436{width:6.133248pt;}
._f_c00436{width:8.912376pt;}
._3_c00436{width:10.222080pt;}
._a_c00436{width:11.393536pt;}
._6_c00436{width:12.778128pt;}
._1b_c00436{width:17.227936pt;}
._17_c00436{width:18.586656pt;}
._16_c00436{width:21.621600pt;}
._18_c00436{width:22.616352pt;}
._4_c00436{width:24.341328pt;}
._2_c00436{width:25.242565pt;}
._1a_c00436{width:26.998030pt;}
._11_c00436{width:28.820000pt;}
._19_c00436{width:31.424624pt;}
._13_c00436{width:33.605088pt;}
._1c_c00436{width:35.041600pt;}
._9_c00436{width:36.107104pt;}
._5_c00436{width:38.780016pt;}
._14_c00436{width:47.423381pt;}
._e_c00436{width:691.274144pt;}
.fs6_c00436{font-size:10.137776pt;}
.fs11_c00436{font-size:12.144176pt;}
.fs17_c00436{font-size:14.432000pt;}
.fsf_c00436{font-size:16.016000pt;}
.fs1_c00436{font-size:16.192000pt;}
.fs29_c00436{font-size:17.600000pt;}
.fs4_c00436{font-size:24.076800pt;}
.fs12_c00436{font-size:25.168000pt;}
.fse_c00436{font-size:25.344000pt;}
.fs15_c00436{font-size:27.104000pt;}
.fs3_c00436{font-size:27.456000pt;}
.fs23_c00436{font-size:30.976000pt;}
.fs0_c00436{font-size:33.792176pt;}
.fs18_c00436{font-size:34.496000pt;}
.fsd_c00436{font-size:35.200000pt;}
.fs25_c00436{font-size:38.720000pt;}
.fs10_c00436{font-size:40.656000pt;}
.fs2d_c00436{font-size:41.712176pt;}
.fs8_c00436{font-size:41.817600pt;}
.fsb_c00436{font-size:41.888000pt;}
.fs19_c00436{font-size:42.240000pt;}
.fs2e_c00436{font-size:42.768000pt;}
.fs27_c00436{font-size:43.084976pt;}
.fs37_c00436{font-size:43.824000pt;}
.fs1d_c00436{font-size:44.352176pt;}
.fsc_c00436{font-size:45.056000pt;}
.fs2a_c00436{font-size:45.232176pt;}
.fs21_c00436{font-size:46.886576pt;}
.fs36_c00436{font-size:46.992176pt;}
.fs2_c00436{font-size:47.696000pt;}
.fs1b_c00436{font-size:48.153776pt;}
.fs9_c00436{font-size:50.512176pt;}
.fs33_c00436{font-size:50.688176pt;}
.fs34_c00436{font-size:51.955376pt;}
.fs2f_c00436{font-size:52.624000pt;}
.fs13_c00436{font-size:53.222576pt;}
.fsa_c00436{font-size:55.088000pt;}
.fs22_c00436{font-size:57.376000pt;}
.fs32_c00436{font-size:57.728000pt;}
.fs2b_c00436{font-size:58.432176pt;}
.fs20_c00436{font-size:58.960000pt;}
.fs28_c00436{font-size:59.136000pt;}
.fs1c_c00436{font-size:59.664176pt;}
.fs14_c00436{font-size:61.600000pt;}
.fs35_c00436{font-size:61.952176pt;}
.fs24_c00436{font-size:63.008000pt;}
.fs31_c00436{font-size:63.536000pt;}
.fs2c_c00436{font-size:63.712176pt;}
.fs7_c00436{font-size:63.888000pt;}
.fs1e_c00436{font-size:64.064176pt;}
.fs38_c00436{font-size:64.592176pt;}
.fs1a_c00436{font-size:64.768000pt;}
.fs30_c00436{font-size:70.048000pt;}
.fs5_c00436{font-size:92.928000pt;}
.fs26_c00436{font-size:93.280000pt;}
.fs1f_c00436{font-size:111.232176pt;}
.fs16_c00436{font-size:118.272176pt;}
.y0_c00436{bottom:0.000000pt;}
.y1_c00436{bottom:68.000000pt;}
.y26_c00436{bottom:119.038520pt;}
.y25_c00436{bottom:140.897720pt;}
.y24_c00436{bottom:145.649720pt;}
.y23_c00436{bottom:171.622920pt;}
.y22_c00436{bottom:177.329720pt;}
.y21_c00436{bottom:206.475320pt;}
.y20_c00436{bottom:264.132920pt;}
.y1f_c00436{bottom:294.545720pt;}
.y1e_c00436{bottom:324.958520pt;}
.y1c_c00436{bottom:354.099720pt;}
.y1d_c00436{bottom:357.905720pt;}
.y1b_c00436{bottom:381.032120pt;}
.y1a_c00436{bottom:386.417720pt;}
.y19_c00436{bottom:405.104520pt;}
.y18_c00436{bottom:415.558920pt;}
.y17_c00436{bottom:433.937720pt;}
.y16_c00436{bottom:444.704520pt;}
.y14_c00436{bottom:473.537720pt;}
.y15_c00436{bottom:473.850120pt;}
.y13_c00436{bottom:502.995720pt;}
.y12_c00436{bottom:531.512120pt;}
.y11_c00436{bottom:560.024120pt;}
.y10_c00436{bottom:561.608120pt;}
.yf_c00436{bottom:568.577720pt;}
.yb_c00436{bottom:643.659320pt;}
.yc_c00436{bottom:645.876920pt;}
.ye_c00436{bottom:646.506120pt;}
.yd_c00436{bottom:649.674120pt;}
.ya_c00436{bottom:766.260920pt;}
.y9_c00436{bottom:793.501320pt;}
.y8_c00436{bottom:796.356920pt;}
.y7_c00436{bottom:821.062920pt;}
.y6_c00436{bottom:823.597320pt;}
.y5_c00436{bottom:952.851720pt;}
.y4_c00436{bottom:954.752520pt;}
.y3_c00436{bottom:959.821320pt;}
.y2_c00436{bottom:984.848520pt;}
.h8_c00436{height:6.751759pt;}
.h13_c00436{height:11.918845pt;}
.h14_c00436{height:12.239052pt;}
.h3_c00436{height:15.891563pt;}
.h6_c00436{height:16.035149pt;}
.h11_c00436{height:16.141125pt;}
.h2b_c00436{height:18.356250pt;}
.h10_c00436{height:24.873750pt;}
.h15_c00436{height:26.249438pt;}
.h1a_c00436{height:27.090250pt;}
.ha_c00436{height:27.850522pt;}
.h18_c00436{height:28.268625pt;}
.h5_c00436{height:28.635750pt;}
.h28_c00436{height:28.694594pt;}
.h1e_c00436{height:29.538549pt;}
.h24_c00436{height:30.401250pt;}
.h22_c00436{height:31.226460pt;}
.h1c_c00436{height:32.070415pt;}
.h2_c00436{height:33.165173pt;}
.h33_c00436{height:33.758325pt;}
.h34_c00436{height:34.602280pt;}
.h16_c00436{height:35.446236pt;}
.hf_c00436{height:36.712500pt;}
.h26_c00436{height:40.383750pt;}
.h2f_c00436{height:40.938220pt;}
.h12_c00436{height:40.973625pt;}
.hd_c00436{height:41.110781pt;}
.he_c00436{height:44.220000pt;}
.h2c_c00436{height:44.392907pt;}
.h30_c00436{height:44.605688pt;}
.h37_c00436{height:45.707063pt;}
.h36_c00436{height:49.011371pt;}
.hb_c00436{height:49.574938pt;}
.h4_c00436{height:49.745438pt;}
.h2d_c00436{height:57.347985pt;}
.hc_c00436{height:57.455063pt;}
.h29_c00436{height:58.038750pt;}
.h2a_c00436{height:59.598000pt;}
.h23_c00436{height:59.841375pt;}
.h17_c00436{height:60.457031pt;}
.h21_c00436{height:61.493438pt;}
.h25_c00436{height:61.808141pt;}
.h1d_c00436{height:62.227871pt;}
.h32_c00436{height:62.357109pt;}
.h2e_c00436{height:62.530016pt;}
.h9_c00436{height:62.702578pt;}
.h1f_c00436{height:62.875485pt;}
.h38_c00436{height:63.393688pt;}
.h1b_c00436{height:63.566250pt;}
.h35_c00436{height:64.614184pt;}
.h31_c00436{height:68.748281pt;}
.h7_c00436{height:91.203750pt;}
.h27_c00436{height:91.549219pt;}
.h20_c00436{height:109.168298pt;}
.h19_c00436{height:123.354184pt;}
.h1_c00436{height:986.666667pt;}
.h0_c00436{height:1122.666667pt;}
.w1_c00436{width:689.333333pt;}
.w0_c00436{width:793.333333pt;}
.x0_c00436{left:0.000000pt;}
.x1_c00436{left:52.000000pt;}
.x6c_c00436{left:74.792653pt;}
.x4d_c00436{left:76.609853pt;}
.xf_c00436{left:78.695453pt;}
.x22_c00436{left:87.143453pt;}
.x10_c00436{left:92.612653pt;}
.x6d_c00436{left:95.309853pt;}
.x82_c00436{left:96.682653pt;}
.x89_c00436{left:98.064253pt;}
.x60_c00436{left:99.956253pt;}
.x61_c00436{left:103.894253pt;}
.x53_c00436{left:105.935853pt;}
.x90_c00436{left:107.189853pt;}
.x32_c00436{left:111.031053pt;}
.x63_c00436{left:114.273853pt;}
.x7d_c00436{left:115.483853pt;}
.x83_c00436{left:117.010653pt;}
.x33_c00436{left:122.906653pt;}
.x54_c00436{left:124.965853pt;}
.x4e_c00436{left:127.403453pt;}
.x34_c00436{left:133.999053pt;}
.x35_c00436{left:138.746653pt;}
.x78_c00436{left:143.313853pt;}
.x11_c00436{left:144.281853pt;}
.x55_c00436{left:153.257853pt;}
.x36_c00436{left:154.969453pt;}
.x6e_c00436{left:158.709453pt;}
.x37_c00436{left:162.335053pt;}
.x8a_c00436{left:166.053053pt;}
.x4f_c00436{left:173.049053pt;}
.x64_c00436{left:182.777453pt;}
.x91_c00436{left:183.886253pt;}
.x5a_c00436{left:192.373853pt;}
.x38_c00436{left:202.366253pt;}
.x8b_c00436{left:203.813853pt;}
.x23_c00436{left:211.359853pt;}
.x12_c00436{left:212.336653pt;}
.x39_c00436{left:217.625453pt;}
.x65_c00436{left:222.531453pt;}
.x3a_c00436{left:231.709853pt;}
.x3b_c00436{left:233.628253pt;}
.x6f_c00436{left:235.762253pt;}
.x3c_c00436{left:241.865053pt;}
.x13_c00436{left:243.000253pt;}
.x3d_c00436{left:251.501053pt;}
.x3e_c00436{left:257.586253pt;}
.x5b_c00436{left:261.137053pt;}
.x3f_c00436{left:264.833053pt;}
.x40_c00436{left:271.173453pt;}
.x41_c00436{left:273.386653pt;}
.x79_c00436{left:280.039453pt;}
.x2_c00436{left:285.957453pt;}
.x5c_c00436{left:290.335453pt;}
.x14_c00436{left:291.523453pt;}
.x70_c00436{left:293.089853pt;}
.x7a_c00436{left:294.299853pt;}
.x24_c00436{left:295.606653pt;}
.x66_c00436{left:299.883453pt;}
.x50_c00436{left:300.952653pt;}
.x25_c00436{left:308.903453pt;}
.x15_c00436{left:310.975853pt;}
.x3_c00436{left:313.761053pt;}
.x42_c00436{left:320.594253pt;}
.x16_c00436{left:330.415053pt;}
.x43_c00436{left:340.073053pt;}
.x17_c00436{left:348.785053pt;}
.x44_c00436{left:350.052253pt;}
.x26_c00436{left:354.848253pt;}
.x4_c00436{left:357.492653pt;}
.x18_c00436{left:359.560653pt;}
.x45_c00436{left:367.854653pt;}
.x7b_c00436{left:368.884253pt;}
.x27_c00436{left:376.043053pt;}
.x56_c00436{left:378.881053pt;}
.x46_c00436{left:387.117853pt;}
.x71_c00436{left:388.561053pt;}
.x28_c00436{left:392.881853pt;}
.x47_c00436{left:397.862653pt;}
.x84_c00436{left:403.591453pt;}
.x85_c00436{left:407.393053pt;}
.x19_c00436{left:408.660253pt;}
.x7e_c00436{left:409.989053pt;}
.x57_c00436{left:417.174253pt;}
.x29_c00436{left:418.577853pt;}
.x87_c00436{left:419.765853pt;}
.x51_c00436{left:426.717853pt;}
.x8c_c00436{left:427.778253pt;}
.x1a_c00436{left:428.689053pt;}
.x5_c00436{left:430.686653pt;}
.x2a_c00436{left:437.871853pt;}
.x58_c00436{left:445.937053pt;}
.x48_c00436{left:447.529853pt;}
.x1b_c00436{left:455.859053pt;}
.x52_c00436{left:456.818253pt;}
.x2b_c00436{left:457.711453pt;}
.x59_c00436{left:462.674653pt;}
.x6_c00436{left:463.682253pt;}
.x4a_c00436{left:466.823853pt;}
.x49_c00436{left:470.071053pt;}
.x92_c00436{left:472.306253pt;}
.x2c_c00436{left:475.949453pt;}
.x7_c00436{left:478.831453pt;}
.x88_c00436{left:483.803453pt;}
.x72_c00436{left:486.073853pt;}
.x1c_c00436{left:496.101453pt;}
.x67_c00436{left:498.420253pt;}
.x2f_c00436{left:505.733053pt;}
.x7f_c00436{left:515.844253pt;}
.x68_c00436{left:524.701453pt;}
.x2d_c00436{left:525.739853pt;}
.x30_c00436{left:528.120253pt;}
.x5d_c00436{left:533.461853pt;}
.x1d_c00436{left:534.685053pt;}
.x8d_c00436{left:535.912653pt;}
.x73_c00436{left:544.514653pt;}
.x1e_c00436{left:545.733453pt;}
.x8e_c00436{left:549.623053pt;}
.x1f_c00436{left:551.251053pt;}
.x5e_c00436{left:554.507053pt;}
.x69_c00436{left:555.549853pt;}
.x8f_c00436{left:564.094653pt;}
.x74_c00436{left:564.992253pt;}
.x2e_c00436{left:574.931853pt;}
.x5f_c00436{left:576.309053pt;}
.x20_c00436{left:584.664653pt;}
.x93_c00436{left:587.023053pt;}
.x75_c00436{left:592.694653pt;}
.x80_c00436{left:593.605453pt;}
.x31_c00436{left:594.591053pt;}
.x77_c00436{left:602.132653pt;}
.xb_c00436{left:603.514253pt;}
.x21_c00436{left:605.049853pt;}
.x6a_c00436{left:612.507853pt;}
.xc_c00436{left:613.497853pt;}
.x8_c00436{left:616.291853pt;}
.x86_c00436{left:622.363853pt;}
.x4b_c00436{left:623.551853pt;}
.x9_c00436{left:624.537453pt;}
.xd_c00436{left:626.623053pt;}
.x62_c00436{left:630.715053pt;}
.x6b_c00436{left:632.281453pt;}
.xa_c00436{left:635.101853pt;}
.xe_c00436{left:636.523053pt;}
.x81_c00436{left:642.647853pt;}
.x76_c00436{left:652.085853pt;}
.x4c_c00436{left:661.906653pt;}
.x7c_c00436{left:684.601853pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_04864a86afbfe71b16a7efdb.woff2')format("woff");}.ff1_c00437{font-family:ff1_c00437;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00437;src:url('chunks/assets/font_e17a8cc6ffc3e842b334a7af.woff2')format("woff");}.ff2_c00437{font-family:ff2_c00437;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00437;src:url('chunks/assets/font_4f0cc29ef785d8f56b1e1a4b.woff2')format("woff");}.ff3_c00437{font-family:ff3_c00437;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00437;src:url('chunks/assets/font_642222b676e331b10dafb63a.woff2')format("woff");}.ff4_c00437{font-family:ff4_c00437;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00437;src:url('chunks/assets/font_ba4e1b21c6ddd05dd07d769a.woff2')format("woff");}.ff5_c00437{font-family:ff5_c00437;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mb2_c00437{transform:matrix(0.036586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036586,0.000000,0.000000,0.250000,0,0);}
.m49_c00437{transform:matrix(0.042858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042858,0.000000,0.000000,0.250000,0,0);}
.m21_c00437{transform:matrix(0.082144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.082144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.082144,0.000000,0.000000,0.250000,0,0);}
.m2b_c00437{transform:matrix(0.104798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104798,0.000000,0.000000,0.250000,0,0);}
.mc0_c00437{transform:matrix(0.109756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109756,0.000000,0.000000,0.250000,0,0);}
.mbf_c00437{transform:matrix(0.121952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121952,0.000000,0.000000,0.250000,0,0);}
.m4_c00437{transform:matrix(0.123327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123327,0.000000,0.000000,0.250000,0,0);}
.m65_c00437{transform:matrix(0.127007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127007,0.000000,0.000000,0.250000,0,0);}
.m32_c00437{transform:matrix(0.132907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132907,0.000000,0.000000,0.250000,0,0);}
.mc5_c00437{transform:matrix(0.135417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135417,0.000000,0.000000,0.250000,0,0);}
.mc4_c00437{transform:matrix(0.139323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139323,0.000000,0.000000,0.250000,0,0);}
.m23_c00437{transform:matrix(0.145448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145448,0.000000,0.000000,0.250000,0,0);}
.m3c_c00437{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00437{transform:matrix(0.152439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152439,0.000000,0.000000,0.250000,0,0);}
.m4a_c00437{transform:matrix(0.157142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157142,0.000000,0.000000,0.250000,0,0);}
.mc1_c00437{transform:matrix(0.158537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158537,0.000000,0.000000,0.250000,0,0);}
.m87_c00437{transform:matrix(0.162205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162205,0.000000,0.000000,0.250000,0,0);}
.m29_c00437{transform:matrix(0.162880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162880,0.000000,0.000000,0.250000,0,0);}
.m4b_c00437{transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);}
.m31_c00437{transform:matrix(0.169656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169656,0.000000,0.000000,0.250000,0,0);}
.m83_c00437{transform:matrix(0.170789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170789,0.000000,0.000000,0.250000,0,0);}
.m4c_c00437{transform:matrix(0.172856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172856,0.000000,0.000000,0.250000,0,0);}
.m55_c00437{transform:matrix(0.174999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174999,0.000000,0.000000,0.250000,0,0);}
.mb3_c00437{transform:matrix(0.176830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176830,0.000000,0.000000,0.250000,0,0);}
.m4d_c00437{transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);}
.mcb_c00437{transform:matrix(0.179331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179331,0.000000,0.000000,0.250000,0,0);}
.mc3_c00437{transform:matrix(0.179687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179687,0.000000,0.000000,0.250000,0,0);}
.m52_c00437{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m54_c00437{transform:matrix(0.183594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183594,0.000000,0.000000,0.250000,0,0);}
.m5e_c00437{transform:matrix(0.183756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183756,0.000000,0.000000,0.250000,0,0);}
.m0_c00437{transform:matrix(0.183823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183823,0.000000,0.000000,0.250000,0,0);}
.m56_c00437{transform:matrix(0.185417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185417,0.000000,0.000000,0.250000,0,0);}
.maf_c00437{transform:matrix(0.185690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185690,0.000000,0.000000,0.250000,0,0);}
.m20_c00437{transform:matrix(0.187256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187256,0.000000,0.000000,0.250000,0,0);}
.m6e_c00437{transform:matrix(0.190577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190577,0.000000,0.000000,0.250000,0,0);}
.m2a_c00437{transform:matrix(0.196971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196971,0.000000,0.000000,0.250000,0,0);}
.md0_c00437{transform:matrix(0.197917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197917,0.000000,0.000000,0.250000,0,0);}
.m48_c00437{transform:matrix(0.199107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199107,0.000000,0.000000,0.250000,0,0);}
.m14_c00437{transform:matrix(0.201256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201256,0.000000,0.000000,0.250000,0,0);}
.m28_c00437{transform:matrix(0.202745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202745,0.000000,0.000000,0.250000,0,0);}
.m1_c00437{transform:matrix(0.203431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203431,0.000000,0.000000,0.250000,0,0);}
.mbd_c00437{transform:matrix(0.204701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204701,0.000000,0.000000,0.250000,0,0);}
.m1f_c00437{transform:matrix(0.206924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206924,0.000000,0.000000,0.250000,0,0);}
.m45_c00437{transform:matrix(0.206949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206949,0.000000,0.000000,0.250000,0,0);}
.m78_c00437{transform:matrix(0.207904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207904,0.000000,0.000000,0.250000,0,0);}
.m15_c00437{transform:matrix(0.208264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208264,0.000000,0.000000,0.250000,0,0);}
.m7c_c00437{transform:matrix(0.209123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209123,0.000000,0.000000,0.250000,0,0);}
.md1_c00437{transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);}
.mba_c00437{transform:matrix(0.220377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220377,0.000000,0.000000,0.250000,0,0);}
.md7_c00437{transform:matrix(0.220962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220962,0.000000,0.000000,0.250000,0,0);}
.mad_c00437{transform:matrix(0.222543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222543,0.000000,0.000000,0.250000,0,0);}
.m73_c00437{transform:matrix(0.234915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234915,0.000000,0.000000,0.250000,0,0);}
.m50_c00437{transform:matrix(0.235191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235191,0.000000,0.000000,0.250000,0,0);}
.m10_c00437{transform:matrix(0.241245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241245,0.000000,0.000000,0.250000,0,0);}
.md4_c00437{transform:matrix(0.242022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242022,0.000000,0.000000,0.250000,0,0);}
.m81_c00437{transform:matrix(0.249081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249081,0.000000,0.000000,0.250000,0,0);}
.m3_c00437{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m35_c00437{transform:matrix(0.250908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250908,0.000000,0.000000,0.250000,0,0);}
.m47_c00437{transform:matrix(0.251148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251148,0.000000,0.000000,0.250000,0,0);}
.md5_c00437{transform:matrix(0.251569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251569,0.000000,0.000000,0.250000,0,0);}
.m2e_c00437{transform:matrix(0.252847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252847,0.000000,0.000000,0.250000,0,0);}
.m4e_c00437{transform:matrix(0.256736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256736,0.000000,0.000000,0.250000,0,0);}
.m98_c00437{transform:matrix(0.257222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257222,0.000000,0.000000,0.250000,0,0);}
.ma_c00437{transform:matrix(0.258207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258207,0.000000,0.000000,0.250000,0,0);}
.mbc_c00437{transform:matrix(0.259062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259062,0.000000,0.000000,0.250000,0,0);}
.m93_c00437{transform:matrix(0.259129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259129,0.000000,0.000000,0.250000,0,0);}
.m18_c00437{transform:matrix(0.259764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259764,0.000000,0.000000,0.250000,0,0);}
.m75_c00437{transform:matrix(0.260612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260612,0.000000,0.000000,0.250000,0,0);}
.m6f_c00437{transform:matrix(0.262340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262340,0.000000,0.000000,0.250000,0,0);}
.m30_c00437{transform:matrix(0.262566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262566,0.000000,0.000000,0.250000,0,0);}
.m5f_c00437{transform:matrix(0.262880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262880,0.000000,0.000000,0.250000,0,0);}
.m5b_c00437{transform:matrix(0.263430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263430,0.000000,0.000000,0.250000,0,0);}
.m7f_c00437{transform:matrix(0.268079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268079,0.000000,0.000000,0.250000,0,0);}
.mbe_c00437{transform:matrix(0.269833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269833,0.000000,0.000000,0.250000,0,0);}
.m9_c00437{transform:matrix(0.270329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270329,0.000000,0.000000,0.250000,0,0);}
.m8d_c00437{transform:matrix(0.270344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270344,0.000000,0.000000,0.250000,0,0);}
.mb9_c00437{transform:matrix(0.270902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270902,0.000000,0.000000,0.250000,0,0);}
.m3f_c00437{transform:matrix(0.271357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271357,0.000000,0.000000,0.250000,0,0);}
.ma4_c00437{transform:matrix(0.271611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271611,0.000000,0.000000,0.250000,0,0);}
.m9d_c00437{transform:matrix(0.271826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271826,0.000000,0.000000,0.250000,0,0);}
.m91_c00437{transform:matrix(0.272659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272659,0.000000,0.000000,0.250000,0,0);}
.m82_c00437{transform:matrix(0.272855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272855,0.000000,0.000000,0.250000,0,0);}
.m1b_c00437{transform:matrix(0.273225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273225,0.000000,0.000000,0.250000,0,0);}
.mc_c00437{transform:matrix(0.274271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274271,0.000000,0.000000,0.250000,0,0);}
.mac_c00437{transform:matrix(0.275215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275215,0.000000,0.000000,0.250000,0,0);}
.maa_c00437{transform:matrix(0.275644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275644,0.000000,0.000000,0.250000,0,0);}
.m2f_c00437{transform:matrix(0.276605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276605,0.000000,0.000000,0.250000,0,0);}
.m61_c00437{transform:matrix(0.276616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276616,0.000000,0.000000,0.250000,0,0);}
.m8a_c00437{transform:matrix(0.277021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277021,0.000000,0.000000,0.250000,0,0);}
.m34_c00437{transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);}
.m33_c00437{transform:matrix(0.277856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277856,0.000000,0.000000,0.250000,0,0);}
.m70_c00437{transform:matrix(0.278657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278657,0.000000,0.000000,0.250000,0,0);}
.m8e_c00437{transform:matrix(0.282201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282201,0.000000,0.000000,0.250000,0,0);}
.m85_c00437{transform:matrix(0.282260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282260,0.000000,0.000000,0.250000,0,0);}
.m76_c00437{transform:matrix(0.282261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282261,0.000000,0.000000,0.250000,0,0);}
.m9b_c00437{transform:matrix(0.282792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282792,0.000000,0.000000,0.250000,0,0);}
.m57_c00437{transform:matrix(0.283271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283271,0.000000,0.000000,0.250000,0,0);}
.m8c_c00437{transform:matrix(0.283335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283335,0.000000,0.000000,0.250000,0,0);}
.m77_c00437{transform:matrix(0.283406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283406,0.000000,0.000000,0.250000,0,0);}
.m79_c00437{transform:matrix(0.283515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283515,0.000000,0.000000,0.250000,0,0);}
.m37_c00437{transform:matrix(0.284129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284129,0.000000,0.000000,0.250000,0,0);}
.mc6_c00437{transform:matrix(0.284684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284684,0.000000,0.000000,0.250000,0,0);}
.m6_c00437{transform:matrix(0.285189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285189,0.000000,0.000000,0.250000,0,0);}
.m19_c00437{transform:matrix(0.285320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285320,0.000000,0.000000,0.250000,0,0);}
.m3d_c00437{transform:matrix(0.285969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285969,0.000000,0.000000,0.250000,0,0);}
.mce_c00437{transform:matrix(0.286483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286483,0.000000,0.000000,0.250000,0,0);}
.m38_c00437{transform:matrix(0.286711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286711,0.000000,0.000000,0.250000,0,0);}
.m46_c00437{transform:matrix(0.287241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287241,0.000000,0.000000,0.250000,0,0);}
.m53_c00437{transform:matrix(0.287461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287461,0.000000,0.000000,0.250000,0,0);}
.ma2_c00437{transform:matrix(0.287842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287842,0.000000,0.000000,0.250000,0,0);}
.m7e_c00437{transform:matrix(0.288520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288520,0.000000,0.000000,0.250000,0,0);}
.mab_c00437{transform:matrix(0.288887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288887,0.000000,0.000000,0.250000,0,0);}
.mb5_c00437{transform:matrix(0.289782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289782,0.000000,0.000000,0.250000,0,0);}
.m63_c00437{transform:matrix(0.290077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290077,0.000000,0.000000,0.250000,0,0);}
.m25_c00437{transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);}
.m5d_c00437{transform:matrix(0.292280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292280,0.000000,0.000000,0.250000,0,0);}
.mcc_c00437{transform:matrix(0.292342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292342,0.000000,0.000000,0.250000,0,0);}
.m42_c00437{transform:matrix(0.293295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293295,0.000000,0.000000,0.250000,0,0);}
.m9e_c00437{transform:matrix(0.294941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294941,0.000000,0.000000,0.250000,0,0);}
.mc7_c00437{transform:matrix(0.295145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295145,0.000000,0.000000,0.250000,0,0);}
.me_c00437{transform:matrix(0.295509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295509,0.000000,0.000000,0.250000,0,0);}
.md6_c00437{transform:matrix(0.295692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295692,0.000000,0.000000,0.250000,0,0);}
.m9a_c00437{transform:matrix(0.296094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296094,0.000000,0.000000,0.250000,0,0);}
.m8f_c00437{transform:matrix(0.296457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296457,0.000000,0.000000,0.250000,0,0);}
.m94_c00437{transform:matrix(0.296842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296842,0.000000,0.000000,0.250000,0,0);}
.mb8_c00437{transform:matrix(0.297691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297691,0.000000,0.000000,0.250000,0,0);}
.md2_c00437{transform:matrix(0.298416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298416,0.000000,0.000000,0.250000,0,0);}
.m95_c00437{transform:matrix(0.298945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298945,0.000000,0.000000,0.250000,0,0);}
.m8b_c00437{transform:matrix(0.300388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300388,0.000000,0.000000,0.250000,0,0);}
.m24_c00437{transform:matrix(0.301272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301272,0.000000,0.000000,0.250000,0,0);}
.m2_c00437{transform:matrix(0.301594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301594,0.000000,0.000000,0.250000,0,0);}
.m41_c00437{transform:matrix(0.301796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301796,0.000000,0.000000,0.250000,0,0);}
.mb4_c00437{transform:matrix(0.302217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302217,0.000000,0.000000,0.250000,0,0);}
.m3a_c00437{transform:matrix(0.302416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302416,0.000000,0.000000,0.250000,0,0);}
.m67_c00437{transform:matrix(0.302575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302575,0.000000,0.000000,0.250000,0,0);}
.m27_c00437{transform:matrix(0.302858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302858,0.000000,0.000000,0.250000,0,0);}
.mcf_c00437{transform:matrix(0.302992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302992,0.000000,0.000000,0.250000,0,0);}
.m1c_c00437{transform:matrix(0.303619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303619,0.000000,0.000000,0.250000,0,0);}
.m51_c00437{transform:matrix(0.305306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305306,0.000000,0.000000,0.250000,0,0);}
.m92_c00437{transform:matrix(0.306574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306574,0.000000,0.000000,0.250000,0,0);}
.m89_c00437{transform:matrix(0.306771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306771,0.000000,0.000000,0.250000,0,0);}
.mb7_c00437{transform:matrix(0.307446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307446,0.000000,0.000000,0.250000,0,0);}
.ma1_c00437{transform:matrix(0.309724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309724,0.000000,0.000000,0.250000,0,0);}
.m6c_c00437{transform:matrix(0.309831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309831,0.000000,0.000000,0.250000,0,0);}
.m69_c00437{transform:matrix(0.311241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311241,0.000000,0.000000,0.250000,0,0);}
.m17_c00437{transform:matrix(0.311659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311659,0.000000,0.000000,0.250000,0,0);}
.m80_c00437{transform:matrix(0.312791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312791,0.000000,0.000000,0.250000,0,0);}
.m13_c00437{transform:matrix(0.313571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313571,0.000000,0.000000,0.250000,0,0);}
.m11_c00437{transform:matrix(0.314046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314046,0.000000,0.000000,0.250000,0,0);}
.ma8_c00437{transform:matrix(0.315417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315417,0.000000,0.000000,0.250000,0,0);}
.m7a_c00437{transform:matrix(0.316707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316707,0.000000,0.000000,0.250000,0,0);}
.m68_c00437{transform:matrix(0.316883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316883,0.000000,0.000000,0.250000,0,0);}
.m66_c00437{transform:matrix(0.317840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317840,0.000000,0.000000,0.250000,0,0);}
.m2c_c00437{transform:matrix(0.318166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318166,0.000000,0.000000,0.250000,0,0);}
.ma9_c00437{transform:matrix(0.318338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318338,0.000000,0.000000,0.250000,0,0);}
.m62_c00437{transform:matrix(0.319236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319236,0.000000,0.000000,0.250000,0,0);}
.m88_c00437{transform:matrix(0.319427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319427,0.000000,0.000000,0.250000,0,0);}
.m99_c00437{transform:matrix(0.319461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319461,0.000000,0.000000,0.250000,0,0);}
.m1a_c00437{transform:matrix(0.323394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323394,0.000000,0.000000,0.250000,0,0);}
.m74_c00437{transform:matrix(0.324116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324116,0.000000,0.000000,0.250000,0,0);}
.md_c00437{transform:matrix(0.324481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324481,0.000000,0.000000,0.250000,0,0);}
.m36_c00437{transform:matrix(0.324501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324501,0.000000,0.000000,0.250000,0,0);}
.m2d_c00437{transform:matrix(0.325163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325163,0.000000,0.000000,0.250000,0,0);}
.m60_c00437{transform:matrix(0.327652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327652,0.000000,0.000000,0.250000,0,0);}
.m8_c00437{transform:matrix(0.328419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328419,0.000000,0.000000,0.250000,0,0);}
.m3e_c00437{transform:matrix(0.328520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328520,0.000000,0.000000,0.250000,0,0);}
.m6d_c00437{transform:matrix(0.329066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329066,0.000000,0.000000,0.250000,0,0);}
.m9c_c00437{transform:matrix(0.330659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330659,0.000000,0.000000,0.250000,0,0);}
.m26_c00437{transform:matrix(0.330718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330718,0.000000,0.000000,0.250000,0,0);}
.m58_c00437{transform:matrix(0.331317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331317,0.000000,0.000000,0.250000,0,0);}
.ma0_c00437{transform:matrix(0.332848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332848,0.000000,0.000000,0.250000,0,0);}
.mbb_c00437{transform:matrix(0.333414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333414,0.000000,0.000000,0.250000,0,0);}
.mc9_c00437{transform:matrix(0.333718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333718,0.000000,0.000000,0.250000,0,0);}
.m86_c00437{transform:matrix(0.335368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335368,0.000000,0.000000,0.250000,0,0);}
.md3_c00437{transform:matrix(0.336348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336348,0.000000,0.000000,0.250000,0,0);}
.m3b_c00437{transform:matrix(0.336731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336731,0.000000,0.000000,0.250000,0,0);}
.m71_c00437{transform:matrix(0.337121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337121,0.000000,0.000000,0.250000,0,0);}
.ma5_c00437{transform:matrix(0.337417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337417,0.000000,0.000000,0.250000,0,0);}
.ma7_c00437{transform:matrix(0.338268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338268,0.000000,0.000000,0.250000,0,0);}
.mc8_c00437{transform:matrix(0.338754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338754,0.000000,0.000000,0.250000,0,0);}
.m5_c00437{transform:matrix(0.339163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339163,0.000000,0.000000,0.250000,0,0);}
.m16_c00437{transform:matrix(0.340415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340415,0.000000,0.000000,0.250000,0,0);}
.m9f_c00437{transform:matrix(0.341479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341479,0.000000,0.000000,0.250000,0,0);}
.m6a_c00437{transform:matrix(0.342311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342311,0.000000,0.000000,0.250000,0,0);}
.m72_c00437{transform:matrix(0.343525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343525,0.000000,0.000000,0.250000,0,0);}
.mb0_c00437{transform:matrix(0.344407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344407,0.000000,0.000000,0.250000,0,0);}
.md8_c00437{transform:matrix(0.344548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344548,0.000000,0.000000,0.250000,0,0);}
.m7d_c00437{transform:matrix(0.346326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346326,0.000000,0.000000,0.250000,0,0);}
.m64_c00437{transform:matrix(0.346827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346827,0.000000,0.000000,0.250000,0,0);}
.m96_c00437{transform:matrix(0.347953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347953,0.000000,0.000000,0.250000,0,0);}
.mca_c00437{transform:matrix(0.348316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348316,0.000000,0.000000,0.250000,0,0);}
.m6b_c00437{transform:matrix(0.348549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348549,0.000000,0.000000,0.250000,0,0);}
.m1e_c00437{transform:matrix(0.350298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350298,0.000000,0.000000,0.250000,0,0);}
.m5c_c00437{transform:matrix(0.351545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351545,0.000000,0.000000,0.250000,0,0);}
.m84_c00437{transform:matrix(0.352645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352645,0.000000,0.000000,0.250000,0,0);}
.mae_c00437{transform:matrix(0.352704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352704,0.000000,0.000000,0.250000,0,0);}
.mb6_c00437{transform:matrix(0.352912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352912,0.000000,0.000000,0.250000,0,0);}
.m7b_c00437{transform:matrix(0.354624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354624,0.000000,0.000000,0.250000,0,0);}
.m39_c00437{transform:matrix(0.356907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356907,0.000000,0.000000,0.250000,0,0);}
.ma6_c00437{transform:matrix(0.357051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357051,0.000000,0.000000,0.250000,0,0);}
.mc2_c00437{transform:matrix(0.357351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357351,0.000000,0.000000,0.250000,0,0);}
.mcd_c00437{transform:matrix(0.358502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358502,0.000000,0.000000,0.250000,0,0);}
.m97_c00437{transform:matrix(0.359667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359667,0.000000,0.000000,0.250000,0,0);}
.m40_c00437{transform:matrix(0.361735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361735,0.000000,0.000000,0.250000,0,0);}
.mf_c00437{transform:matrix(0.363517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363517,0.000000,0.000000,0.250000,0,0);}
.m43_c00437{transform:matrix(0.365884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365884,0.000000,0.000000,0.250000,0,0);}
.m44_c00437{transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);}
.mb_c00437{transform:matrix(0.369955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369955,0.000000,0.000000,0.250000,0,0);}
.m1d_c00437{transform:matrix(0.372388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372388,0.000000,0.000000,0.250000,0,0);}
.m4f_c00437{transform:matrix(0.374654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374654,0.000000,0.000000,0.250000,0,0);}
.m22_c00437{transform:matrix(0.378559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378559,0.000000,0.000000,0.250000,0,0);}
.md9_c00437{transform:matrix(0.378903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378903,0.000000,0.000000,0.250000,0,0);}
.m12_c00437{transform:matrix(0.381057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381057,0.000000,0.000000,0.250000,0,0);}
.m5a_c00437{transform:matrix(0.389573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389573,0.000000,0.000000,0.250000,0,0);}
.m7_c00437{transform:matrix(0.398853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398853,0.000000,0.000000,0.250000,0,0);}
.m59_c00437{transform:matrix(0.428446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428446,0.000000,0.000000,0.250000,0,0);}
.m90_c00437{transform:matrix(0.432532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432532,0.000000,0.000000,0.250000,0,0);}
.ma3_c00437{transform:matrix(0.436815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436815,0.000000,0.000000,0.250000,0,0);}
.v2_c00437{vertical-align:-19.938600px;}
.v1_c00437{vertical-align:-11.404800px;}
.v3_c00437{vertical-align:-1.405800px;}
.v0_c00437{vertical-align:0.000000px;}
.ls16_c00437{letter-spacing:-3.388777px;}
.ls1f_c00437{letter-spacing:-2.557177px;}
.lsb_c00437{letter-spacing:-2.515590px;}
.ls25_c00437{letter-spacing:-2.245327px;}
.ls21_c00437{letter-spacing:-2.177782px;}
.ls2a_c00437{letter-spacing:-2.120580px;}
.ls1e_c00437{letter-spacing:-1.753726px;}
.ls11_c00437{letter-spacing:-1.653102px;}
.ls32_c00437{letter-spacing:-1.336856px;}
.ls28_c00437{letter-spacing:-0.977486px;}
.ls2f_c00437{letter-spacing:-0.852390px;}
.ls19_c00437{letter-spacing:-0.754677px;}
.lse_c00437{letter-spacing:-0.402494px;}
.ls7_c00437{letter-spacing:0.000000px;}
.ls27_c00437{letter-spacing:0.071874px;}
.ls2e_c00437{letter-spacing:0.287496px;}
.ls24_c00437{letter-spacing:0.373745px;}
.ls6_c00437{letter-spacing:0.503118px;}
.ls1_c00437{letter-spacing:0.639679px;}
.ls1d_c00437{letter-spacing:0.733115px;}
.ls23_c00437{letter-spacing:0.819364px;}
.ls2b_c00437{letter-spacing:1.300919px;}
.ls13_c00437{letter-spacing:1.559052px;}
.ls12_c00437{letter-spacing:1.674664px;}
.ls26_c00437{letter-spacing:1.732163px;}
.ls0_c00437{letter-spacing:1.940598px;}
.lsa_c00437{letter-spacing:1.947785px;}
.ls22_c00437{letter-spacing:2.059200px;}
.ls4_c00437{letter-spacing:2.091533px;}
.lsf_c00437{letter-spacing:2.217600px;}
.ls1b_c00437{letter-spacing:2.544310px;}
.ls29_c00437{letter-spacing:2.652151px;}
.ls20_c00437{letter-spacing:2.653200px;}
.ls3_c00437{letter-spacing:3.025895px;}
.lsd_c00437{letter-spacing:3.100926px;}
.ls31_c00437{letter-spacing:3.219955px;}
.lsc_c00437{letter-spacing:3.257110px;}
.ls1c_c00437{letter-spacing:3.524400px;}
.ls9_c00437{letter-spacing:3.593700px;}
.ls18_c00437{letter-spacing:3.653110px;}
.ls17_c00437{letter-spacing:4.593610px;}
.ls15_c00437{letter-spacing:4.841110px;}
.ls5_c00437{letter-spacing:7.165224px;}
.ls2_c00437{letter-spacing:10.410444px;}
.ls14_c00437{letter-spacing:47.044800px;}
.ls8_c00437{letter-spacing:48.470598px;}
.ls10_c00437{letter-spacing:49.896198px;}
.ls30_c00437{letter-spacing:51.321798px;}
.ls1a_c00437{letter-spacing:57.024198px;}
.ls2c_c00437{letter-spacing:58.449798px;}
.ls2d_c00437{letter-spacing:68.428998px;}
.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;}
}
.ws5_c00437{word-spacing:-20.060033px;}
.ws7_c00437{word-spacing:-18.471618px;}
.ws6_c00437{word-spacing:-17.968500px;}
.ws0_c00437{word-spacing:-17.566006px;}
.ws1_c00437{word-spacing:-16.315398px;}
.ws4_c00437{word-spacing:-16.214774px;}
.wsb_c00437{word-spacing:0.000000px;}
.ws9_c00437{word-spacing:4.528062px;}
.ws8_c00437{word-spacing:4.743684px;}
.ws2_c00437{word-spacing:5.317488px;}
.wsa_c00437{word-spacing:5.821794px;}
.ws3_c00437{word-spacing:8.984250px;}
._f_c00437{margin-left:-13.727142px;}
._1e_c00437{margin-left:-8.193636px;}
._6_c00437{margin-left:-6.540534px;}
._11_c00437{margin-left:-5.488164px;}
._d_c00437{margin-left:-2.954556px;}
._e_c00437{margin-left:-1.582020px;}
._13_c00437{width:1.509354px;}
._5_c00437{width:4.288165px;}
._9_c00437{width:5.821794px;}
._15_c00437{width:6.828030px;}
._21_c00437{width:8.096616px;}
._19_c00437{width:9.343026px;}
._3_c00437{width:10.709820px;}
._1a_c00437{width:11.859210px;}
._18_c00437{width:13.727340px;}
._b_c00437{width:15.884154px;}
._1d_c00437{width:16.979490px;}
._12_c00437{width:20.124720px;}
._4_c00437{width:21.202830px;}
._8_c00437{width:22.640310px;}
._16_c00437{width:24.077988px;}
._14_c00437{width:25.515468px;}
._20_c00437{width:27.458244px;}
._10_c00437{width:28.900535px;}
._2_c00437{width:32.148844px;}
._1_c00437{width:34.958682px;}
._7_c00437{width:36.698112px;}
._17_c00437{width:38.524464px;}
._c_c00437{width:40.752558px;}
._1f_c00437{width:42.926301px;}
._0_c00437{width:44.312400px;}
._a_c00437{width:46.438128px;}
._1c_c00437{width:48.993714px;}
._22_c00437{width:50.683842px;}
._1b_c00437{width:1078.145244px;}
.fc0_c00437{color:transparent;}
.fs5_c00437{font-size:22.176000px;}
.fs1e_c00437{font-size:24.354000px;}
.fs12_c00437{font-size:32.868000px;}
.fs13_c00437{font-size:33.264000px;}
.fs10_c00437{font-size:37.620000px;}
.fs14_c00437{font-size:41.184000px;}
.fs6_c00437{font-size:44.352000px;}
.fs20_c00437{font-size:44.748000px;}
.fs9_c00437{font-size:47.044800px;}
.fs1c_c00437{font-size:47.718000px;}
.fs0_c00437{font-size:48.470598px;}
.fs7_c00437{font-size:49.896198px;}
.fs8_c00437{font-size:50.292000px;}
.fse_c00437{font-size:50.886198px;}
.fs1f_c00437{font-size:51.321798px;}
.fs11_c00437{font-size:53.064000px;}
.fsd_c00437{font-size:57.024198px;}
.fs1b_c00437{font-size:58.449798px;}
.fs19_c00437{font-size:60.588000px;}
.fs17_c00437{font-size:62.568000px;}
.fs15_c00437{font-size:64.152198px;}
.fs1a_c00437{font-size:64.548000px;}
.fs2_c00437{font-size:65.142198px;}
.fs1d_c00437{font-size:68.428998px;}
.fsf_c00437{font-size:70.488000px;}
.fs4_c00437{font-size:70.884000px;}
.fs18_c00437{font-size:71.280000px;}
.fs1_c00437{font-size:71.874000px;}
.fsc_c00437{font-size:73.062198px;}
.fs3_c00437{font-size:73.656198px;}
.fs16_c00437{font-size:84.150000px;}
.fsb_c00437{font-size:91.872198px;}
.fsa_c00437{font-size:96.822198px;}
.y0_c00437{bottom:0.000000px;}
.y23_c00437{bottom:50.515785px;}
.y1_c00437{bottom:76.500000px;}
.y22_c00437{bottom:149.238585px;}
.y21_c00437{bottom:183.809385px;}
.y20_c00437{bottom:214.464735px;}
.y1e_c00437{bottom:217.315935px;}
.y1f_c00437{bottom:217.672335px;}
.y1d_c00437{bottom:250.817535px;}
.y1a_c00437{bottom:283.962735px;}
.y1c_c00437{bottom:284.319135px;}
.y1b_c00437{bottom:284.670585px;}
.y19_c00437{bottom:307.485135px;}
.y18_c00437{bottom:318.533535px;}
.y17_c00437{bottom:383.749785px;}
.y16_c00437{bottom:416.899935px;}
.y15_c00437{bottom:449.683785px;}
.y14_c00437{bottom:482.472585px;}
.y13_c00437{bottom:515.261385px;}
.y12_c00437{bottom:548.050185px;}
.y11_c00437{bottom:610.063785px;}
.yf_c00437{bottom:610.420185px;}
.y10_c00437{bottom:617.904585px;}
.yd_c00437{bottom:643.570335px;}
.ye_c00437{bottom:646.421535px;}
.yc_c00437{bottom:677.784735px;}
.yb_c00437{bottom:702.732735px;}
.ya_c00437{bottom:711.281385px;}
.y9_c00437{bottom:744.787935px;}
.y8_c00437{bottom:771.517935px;}
.y7_c00437{bottom:780.779385px;}
.y6_c00437{bottom:814.993785px;}
.y5_c00437{bottom:852.777135px;}
.y4_c00437{bottom:880.219935px;}
.y3_c00437{bottom:913.721535px;}
.y2_c00437{bottom:1063.048185px;}
.h7_c00437{height:23.128875px;}
.h1e_c00437{height:23.902119px;}
.hb_c00437{height:31.331837px;}
.h2_c00437{height:32.281418px;}
.h9_c00437{height:33.230868px;}
.h1f_c00437{height:34.180317px;}
.h15_c00437{height:34.693313px;}
.hf_c00437{height:37.978116px;}
.h1b_c00437{height:38.927565px;}
.h12_c00437{height:39.236484px;}
.h16_c00437{height:40.419844px;}
.h20_c00437{height:43.917715px;}
.h1d_c00437{height:45.573713px;}
.h8_c00437{height:46.257750px;}
.ha_c00437{height:49.358848px;}
.h1c_c00437{height:49.768383px;}
.h10_c00437{height:49.942020px;}
.h13_c00437{height:55.344094px;}
.h14_c00437{height:59.135600px;}
.h1a_c00437{height:59.463809px;}
.h17_c00437{height:66.908738px;}
.h4_c00437{height:67.941277px;}
.h11_c00437{height:69.180117px;}
.h6_c00437{height:69.568770px;}
.h3_c00437{height:70.540400px;}
.he_c00437{height:71.706552px;}
.h5_c00437{height:72.253565px;}
.h19_c00437{height:74.342813px;}
.h18_c00437{height:82.588623px;}
.hc_c00437{height:95.025692px;}
.hd_c00437{height:95.819832px;}
.h1_c00437{height:1110.000000px;}
.h0_c00437{height:1263.000000px;}
.w1_c00437{width:775.500000px;}
.w0_c00437{width:892.500000px;}
.x0_c00437{left:0.000000px;}
.x1_c00437{left:58.500000px;}
.x53_c00437{left:84.052635px;}
.x48_c00437{left:85.804935px;}
.x12_c00437{left:86.973135px;}
.x71_c00437{left:88.190835px;}
.x4_c00437{left:90.250035px;}
.x5b_c00437{left:98.090835px;}
.x7c_c00437{left:104.773335px;}
.x57_c00437{left:108.070035px;}
.x73_c00437{left:109.772835px;}
.x3e_c00437{left:117.509685px;}
.x49_c00437{left:118.806585px;}
.x13_c00437{left:120.296535px;}
.x21_c00437{left:126.068235px;}
.x5c_c00437{left:130.374735px;}
.x7d_c00437{left:132.656685px;}
.x22_c00437{left:139.670835px;}
.x2f_c00437{left:141.071685px;}
.x23_c00437{left:150.739035px;}
.x54_c00437{left:151.971585px;}
.x6e_c00437{left:161.327085px;}
.x5_c00437{left:162.455685px;}
.x86_c00437{left:164.212935px;}
.x82_c00437{left:166.786935px;}
.x3f_c00437{left:173.038785px;}
.x85_c00437{left:174.325785px;}
.x78_c00437{left:176.147385px;}
.x24_c00437{left:183.562485px;}
.x74_c00437{left:184.700985px;}
.x87_c00437{left:187.517535px;}
.x6_c00437{left:195.105885px;}
.x7_c00437{left:206.456235px;}
.x4a_c00437{left:217.469985px;}
.x62_c00437{left:227.909535px;}
.x14_c00437{left:229.275735px;}
.x79_c00437{left:231.354735px;}
.x6b_c00437{left:236.502735px;}
.x25_c00437{left:238.730235px;}
.x8_c00437{left:240.324135px;}
.x4b_c00437{left:250.620135px;}
.x7e_c00437{left:251.778435px;}
.x30_c00437{left:261.188385px;}
.x15_c00437{left:262.366485px;}
.x55_c00437{left:272.281335px;}
.x4c_c00437{left:282.567435px;}
.x69_c00437{left:283.651485px;}
.x16_c00437{left:295.625535px;}
.x40_c00437{left:297.001635px;}
.x41_c00437{left:304.693935px;}
.x7a_c00437{left:306.292785px;}
.x63_c00437{left:308.342085px;}
.x58_c00437{left:316.262085px;}
.x17_c00437{left:318.063885px;}
.x18_c00437{left:327.478785px;}
.x42_c00437{left:328.493535px;}
.x9_c00437{left:330.438885px;}
.x26_c00437{left:339.091485px;}
.x31_c00437{left:350.397285px;}
.x43_c00437{left:352.174335px;}
.x64_c00437{left:360.020085px;}
.x6a_c00437{left:361.208085px;}
.x27_c00437{left:367.578735px;}
.x19_c00437{left:372.038685px;}
.x32_c00437{left:382.710885px;}
.x6c_c00437{left:385.725435px;}
.x1a_c00437{left:394.279035px;}
.x4d_c00437{left:404.698785px;}
.x28_c00437{left:406.055085px;}
.x59_c00437{left:407.554935px;}
.x33_c00437{left:416.083785px;}
.x1b_c00437{left:426.201585px;}
.x77_c00437{left:436.715385px;}
.x29_c00437{left:438.383535px;}
.x6d_c00437{left:440.210085px;}
.x5d_c00437{left:448.892385px;}
.x7b_c00437{left:449.921985px;}
.x39_c00437{left:458.020185px;}
.x6f_c00437{left:459.277485px;}
.x2a_c00437{left:460.302135px;}
.x2b_c00437{left:470.033835px;}
.x7f_c00437{left:471.706935px;}
.x44_c00437{left:480.409035px;}
.x4e_c00437{left:481.636635px;}
.x34_c00437{left:493.378035px;}
.x1c_c00437{left:504.466035px;}
.x65_c00437{left:506.178735px;}
.x1d_c00437{left:515.098635px;}
.x52_c00437{left:518.776485px;}
.xa_c00437{left:525.978735px;}
.x80_c00437{left:529.013085px;}
.x1e_c00437{left:536.319285px;}
.x56_c00437{left:537.586485px;}
.x1f_c00437{left:547.615185px;}
.x3a_c00437{left:549.946635px;}
.xb_c00437{left:558.772485px;}
.x20_c00437{left:560.668335px;}
.x3b_c00437{left:568.494285px;}
.xc_c00437{left:570.023835px;}
.x35_c00437{left:573.280935px;}
.x5e_c00437{left:580.686135px;}
.x4f_c00437{left:581.992935px;}
.x5a_c00437{left:583.166085px;}
.x83_c00437{left:590.497035px;}
.x45_c00437{left:592.679985px;}
.x75_c00437{left:594.174885px;}
.x36_c00437{left:603.371985px;}
.x3c_c00437{left:605.668785px;}
.x66_c00437{left:612.989835px;}
.x2c_c00437{left:614.410485px;}
.xd_c00437{left:625.250985px;}
.x5f_c00437{left:628.324935px;}
.x37_c00437{left:635.452935px;}
.x70_c00437{left:636.898335px;}
.xe_c00437{left:641.689935px;}
.x46_c00437{left:645.803385px;}
.x67_c00437{left:646.813185px;}
.x2d_c00437{left:648.001185px;}
.x3d_c00437{left:649.382235px;}
.x81_c00437{left:657.757635px;}
.xf_c00437{left:658.782285px;}
.x50_c00437{left:664.316385px;}
.x51_c00437{left:669.310935px;}
.x2_c00437{left:679.646535px;}
.x10_c00437{left:680.661285px;}
.x68_c00437{left:685.413285px;}
.x38_c00437{left:689.566335px;}
.x3_c00437{left:691.046385px;}
.x76_c00437{left:701.174085px;}
.x72_c00437{left:712.925385px;}
.x60_c00437{left:715.865685px;}
.x2e_c00437{left:723.315435px;}
.x84_c00437{left:733.952985px;}
.x11_c00437{left:735.136035px;}
.x47_c00437{left:745.248885px;}
.x61_c00437{left:759.094035px;}
@media print{
.v2_c00437{vertical-align:-17.723200pt;}
.v1_c00437{vertical-align:-10.137600pt;}
.v3_c00437{vertical-align:-1.249600pt;}
.v0_c00437{vertical-align:0.000000pt;}
.ls16_c00437{letter-spacing:-3.012246pt;}
.ls1f_c00437{letter-spacing:-2.273046pt;}
.lsb_c00437{letter-spacing:-2.236080pt;}
.ls25_c00437{letter-spacing:-1.995846pt;}
.ls21_c00437{letter-spacing:-1.935806pt;}
.ls2a_c00437{letter-spacing:-1.884960pt;}
.ls1e_c00437{letter-spacing:-1.558867pt;}
.ls11_c00437{letter-spacing:-1.469424pt;}
.ls32_c00437{letter-spacing:-1.188317pt;}
.ls28_c00437{letter-spacing:-0.868877pt;}
.ls2f_c00437{letter-spacing:-0.757680pt;}
.ls19_c00437{letter-spacing:-0.670824pt;}
.lse_c00437{letter-spacing:-0.357773pt;}
.ls7_c00437{letter-spacing:0.000000pt;}
.ls27_c00437{letter-spacing:0.063888pt;}
.ls2e_c00437{letter-spacing:0.255552pt;}
.ls24_c00437{letter-spacing:0.332218pt;}
.ls6_c00437{letter-spacing:0.447216pt;}
.ls1_c00437{letter-spacing:0.568603pt;}
.ls1d_c00437{letter-spacing:0.651658pt;}
.ls23_c00437{letter-spacing:0.728323pt;}
.ls2b_c00437{letter-spacing:1.156373pt;}
.ls13_c00437{letter-spacing:1.385824pt;}
.ls12_c00437{letter-spacing:1.488590pt;}
.ls26_c00437{letter-spacing:1.539701pt;}
.ls0_c00437{letter-spacing:1.724976pt;}
.lsa_c00437{letter-spacing:1.731365pt;}
.ls22_c00437{letter-spacing:1.830400pt;}
.ls4_c00437{letter-spacing:1.859141pt;}
.lsf_c00437{letter-spacing:1.971200pt;}
.ls1b_c00437{letter-spacing:2.261609pt;}
.ls29_c00437{letter-spacing:2.357467pt;}
.ls20_c00437{letter-spacing:2.358400pt;}
.ls3_c00437{letter-spacing:2.689685pt;}
.lsd_c00437{letter-spacing:2.756379pt;}
.ls31_c00437{letter-spacing:2.862182pt;}
.lsc_c00437{letter-spacing:2.895209pt;}
.ls1c_c00437{letter-spacing:3.132800pt;}
.ls9_c00437{letter-spacing:3.194400pt;}
.ls18_c00437{letter-spacing:3.247209pt;}
.ls17_c00437{letter-spacing:4.083209pt;}
.ls15_c00437{letter-spacing:4.303209pt;}
.ls5_c00437{letter-spacing:6.369088pt;}
.ls2_c00437{letter-spacing:9.253728pt;}
.ls14_c00437{letter-spacing:41.817600pt;}
.ls8_c00437{letter-spacing:43.084976pt;}
.ls10_c00437{letter-spacing:44.352176pt;}
.ls30_c00437{letter-spacing:45.619376pt;}
.ls1a_c00437{letter-spacing:50.688176pt;}
.ls2c_c00437{letter-spacing:51.955376pt;}
.ls2d_c00437{letter-spacing:60.825776pt;}
.ws5_c00437{word-spacing:-17.831141pt;}
.ws7_c00437{word-spacing:-16.419216pt;}
.ws6_c00437{word-spacing:-15.972000pt;}
.ws0_c00437{word-spacing:-15.614227pt;}
.ws1_c00437{word-spacing:-14.502576pt;}
.ws4_c00437{word-spacing:-14.413133pt;}
.wsb_c00437{word-spacing:0.000000pt;}
.ws9_c00437{word-spacing:4.024944pt;}
.ws8_c00437{word-spacing:4.216608pt;}
.ws2_c00437{word-spacing:4.726656pt;}
.wsa_c00437{word-spacing:5.174928pt;}
.ws3_c00437{word-spacing:7.986000pt;}
._f_c00437{margin-left:-12.201904pt;}
._1e_c00437{margin-left:-7.283232pt;}
._6_c00437{margin-left:-5.813808pt;}
._11_c00437{margin-left:-4.878368pt;}
._d_c00437{margin-left:-2.626272pt;}
._e_c00437{margin-left:-1.406240pt;}
._13_c00437{width:1.341648pt;}
._5_c00437{width:3.811702pt;}
._9_c00437{width:5.174928pt;}
._15_c00437{width:6.069360pt;}
._21_c00437{width:7.196992pt;}
._19_c00437{width:8.304912pt;}
._3_c00437{width:9.519840pt;}
._1a_c00437{width:10.541520pt;}
._18_c00437{width:12.202080pt;}
._b_c00437{width:14.119248pt;}
._1d_c00437{width:15.092880pt;}
._12_c00437{width:17.888640pt;}
._4_c00437{width:18.846960pt;}
._8_c00437{width:20.124720pt;}
._16_c00437{width:21.402656pt;}
._14_c00437{width:22.680416pt;}
._20_c00437{width:24.407328pt;}
._10_c00437{width:25.689365pt;}
._2_c00437{width:28.576750pt;}
._1_c00437{width:31.074384pt;}
._7_c00437{width:32.620544pt;}
._17_c00437{width:34.243968pt;}
._c_c00437{width:36.224496pt;}
._1f_c00437{width:38.156712pt;}
._0_c00437{width:39.388800pt;}
._a_c00437{width:41.278336pt;}
._1c_c00437{width:43.549968pt;}
._22_c00437{width:45.052304pt;}
._1b_c00437{width:958.351328pt;}
.fs5_c00437{font-size:19.712000pt;}
.fs1e_c00437{font-size:21.648000pt;}
.fs12_c00437{font-size:29.216000pt;}
.fs13_c00437{font-size:29.568000pt;}
.fs10_c00437{font-size:33.440000pt;}
.fs14_c00437{font-size:36.608000pt;}
.fs6_c00437{font-size:39.424000pt;}
.fs20_c00437{font-size:39.776000pt;}
.fs9_c00437{font-size:41.817600pt;}
.fs1c_c00437{font-size:42.416000pt;}
.fs0_c00437{font-size:43.084976pt;}
.fs7_c00437{font-size:44.352176pt;}
.fs8_c00437{font-size:44.704000pt;}
.fse_c00437{font-size:45.232176pt;}
.fs1f_c00437{font-size:45.619376pt;}
.fs11_c00437{font-size:47.168000pt;}
.fsd_c00437{font-size:50.688176pt;}
.fs1b_c00437{font-size:51.955376pt;}
.fs19_c00437{font-size:53.856000pt;}
.fs17_c00437{font-size:55.616000pt;}
.fs15_c00437{font-size:57.024176pt;}
.fs1a_c00437{font-size:57.376000pt;}
.fs2_c00437{font-size:57.904176pt;}
.fs1d_c00437{font-size:60.825776pt;}
.fsf_c00437{font-size:62.656000pt;}
.fs4_c00437{font-size:63.008000pt;}
.fs18_c00437{font-size:63.360000pt;}
.fs1_c00437{font-size:63.888000pt;}
.fsc_c00437{font-size:64.944176pt;}
.fs3_c00437{font-size:65.472176pt;}
.fs16_c00437{font-size:74.800000pt;}
.fsb_c00437{font-size:81.664176pt;}
.fsa_c00437{font-size:86.064176pt;}
.y0_c00437{bottom:0.000000pt;}
.y23_c00437{bottom:44.902920pt;}
.y1_c00437{bottom:68.000000pt;}
.y22_c00437{bottom:132.656520pt;}
.y21_c00437{bottom:163.386120pt;}
.y20_c00437{bottom:190.635320pt;}
.y1e_c00437{bottom:193.169720pt;}
.y1f_c00437{bottom:193.486520pt;}
.y1d_c00437{bottom:222.948920pt;}
.y1a_c00437{bottom:252.411320pt;}
.y1c_c00437{bottom:252.728120pt;}
.y1b_c00437{bottom:253.040520pt;}
.y19_c00437{bottom:273.320120pt;}
.y18_c00437{bottom:283.140920pt;}
.y17_c00437{bottom:341.110920pt;}
.y16_c00437{bottom:370.577720pt;}
.y15_c00437{bottom:399.718920pt;}
.y14_c00437{bottom:428.864520pt;}
.y13_c00437{bottom:458.010120pt;}
.y12_c00437{bottom:487.155720pt;}
.y11_c00437{bottom:542.278920pt;}
.yf_c00437{bottom:542.595720pt;}
.y10_c00437{bottom:549.248520pt;}
.yd_c00437{bottom:572.062520pt;}
.ye_c00437{bottom:574.596920pt;}
.yc_c00437{bottom:602.475320pt;}
.yb_c00437{bottom:624.651320pt;}
.ya_c00437{bottom:632.250120pt;}
.y9_c00437{bottom:662.033720pt;}
.y8_c00437{bottom:685.793720pt;}
.y7_c00437{bottom:694.026120pt;}
.y6_c00437{bottom:724.438920pt;}
.y5_c00437{bottom:758.024120pt;}
.y4_c00437{bottom:782.417720pt;}
.y3_c00437{bottom:812.196920pt;}
.y2_c00437{bottom:944.931720pt;}
.h7_c00437{height:20.559000pt;}
.h1e_c00437{height:21.246328pt;}
.hb_c00437{height:27.850522pt;}
.h2_c00437{height:28.694594pt;}
.h9_c00437{height:29.538549pt;}
.h1f_c00437{height:30.382504pt;}
.h15_c00437{height:30.838500pt;}
.hf_c00437{height:33.758325pt;}
.h1b_c00437{height:34.602280pt;}
.h12_c00437{height:34.876875pt;}
.h16_c00437{height:35.928750pt;}
.h20_c00437{height:39.037969pt;}
.h1d_c00437{height:40.509967pt;}
.h8_c00437{height:41.118000pt;}
.ha_c00437{height:43.874531pt;}
.h1c_c00437{height:44.238563pt;}
.h10_c00437{height:44.392907pt;}
.h13_c00437{height:49.194750pt;}
.h14_c00437{height:52.564978pt;}
.h1a_c00437{height:52.856719pt;}
.h17_c00437{height:59.474434pt;}
.h4_c00437{height:60.392246pt;}
.h11_c00437{height:61.493438pt;}
.h6_c00437{height:61.838906pt;}
.h3_c00437{height:62.702578pt;}
.he_c00437{height:63.739157pt;}
.h5_c00437{height:64.225391pt;}
.h19_c00437{height:66.082500pt;}
.h18_c00437{height:73.412109pt;}
.hc_c00437{height:84.467282pt;}
.hd_c00437{height:85.173184pt;}
.h1_c00437{height:986.666667pt;}
.h0_c00437{height:1122.666667pt;}
.w1_c00437{width:689.333333pt;}
.w0_c00437{width:793.333333pt;}
.x0_c00437{left:0.000000pt;}
.x1_c00437{left:52.000000pt;}
.x53_c00437{left:74.713453pt;}
.x48_c00437{left:76.271053pt;}
.x12_c00437{left:77.309453pt;}
.x71_c00437{left:78.391853pt;}
.x4_c00437{left:80.222253pt;}
.x5b_c00437{left:87.191853pt;}
.x7c_c00437{left:93.131853pt;}
.x57_c00437{left:96.062253pt;}
.x73_c00437{left:97.575853pt;}
.x3e_c00437{left:104.453053pt;}
.x49_c00437{left:105.605853pt;}
.x13_c00437{left:106.930253pt;}
.x21_c00437{left:112.060653pt;}
.x5c_c00437{left:115.888653pt;}
.x7d_c00437{left:117.917053pt;}
.x22_c00437{left:124.151853pt;}
.x2f_c00437{left:125.397053pt;}
.x23_c00437{left:133.990253pt;}
.x54_c00437{left:135.085853pt;}
.x6e_c00437{left:143.401853pt;}
.x5_c00437{left:144.405053pt;}
.x86_c00437{left:145.967053pt;}
.x82_c00437{left:148.255053pt;}
.x3f_c00437{left:153.812253pt;}
.x85_c00437{left:154.956253pt;}
.x78_c00437{left:156.575453pt;}
.x24_c00437{left:163.166653pt;}
.x74_c00437{left:164.178653pt;}
.x87_c00437{left:166.682253pt;}
.x6_c00437{left:173.427453pt;}
.x7_c00437{left:183.516653pt;}
.x4a_c00437{left:193.306653pt;}
.x62_c00437{left:202.586253pt;}
.x14_c00437{left:203.800653pt;}
.x79_c00437{left:205.648653pt;}
.x6b_c00437{left:210.224653pt;}
.x25_c00437{left:212.204653pt;}
.x8_c00437{left:213.621453pt;}
.x4b_c00437{left:222.773453pt;}
.x7e_c00437{left:223.803053pt;}
.x30_c00437{left:232.167453pt;}
.x15_c00437{left:233.214653pt;}
.x55_c00437{left:242.027853pt;}
.x4c_c00437{left:251.171053pt;}
.x69_c00437{left:252.134653pt;}
.x16_c00437{left:262.778253pt;}
.x40_c00437{left:264.001453pt;}
.x41_c00437{left:270.839053pt;}
.x7a_c00437{left:272.260253pt;}
.x63_c00437{left:274.081853pt;}
.x58_c00437{left:281.121853pt;}
.x17_c00437{left:282.723453pt;}
.x18_c00437{left:291.092253pt;}
.x42_c00437{left:291.994253pt;}
.x9_c00437{left:293.723453pt;}
.x26_c00437{left:301.414653pt;}
.x31_c00437{left:311.464253pt;}
.x43_c00437{left:313.043853pt;}
.x64_c00437{left:320.017853pt;}
.x6a_c00437{left:321.073853pt;}
.x27_c00437{left:326.736653pt;}
.x19_c00437{left:330.701053pt;}
.x32_c00437{left:340.187453pt;}
.x6c_c00437{left:342.867053pt;}
.x1a_c00437{left:350.470253pt;}
.x4d_c00437{left:359.732253pt;}
.x28_c00437{left:360.937853pt;}
.x59_c00437{left:362.271053pt;}
.x33_c00437{left:369.852253pt;}
.x1b_c00437{left:378.845853pt;}
.x77_c00437{left:388.191453pt;}
.x29_c00437{left:389.674253pt;}
.x6d_c00437{left:391.297853pt;}
.x5d_c00437{left:399.015453pt;}
.x7b_c00437{left:399.930653pt;}
.x39_c00437{left:407.129053pt;}
.x6f_c00437{left:408.246653pt;}
.x2a_c00437{left:409.157453pt;}
.x2b_c00437{left:417.807853pt;}
.x7f_c00437{left:419.295053pt;}
.x44_c00437{left:427.030253pt;}
.x4e_c00437{left:428.121453pt;}
.x34_c00437{left:438.558253pt;}
.x1c_c00437{left:448.414253pt;}
.x65_c00437{left:449.936653pt;}
.x1d_c00437{left:457.865453pt;}
.x52_c00437{left:461.134653pt;}
.xa_c00437{left:467.536653pt;}
.x80_c00437{left:470.233853pt;}
.x1e_c00437{left:476.728253pt;}
.x56_c00437{left:477.854653pt;}
.x1f_c00437{left:486.769053pt;}
.x3a_c00437{left:488.841453pt;}
.xb_c00437{left:496.686653pt;}
.x20_c00437{left:498.371853pt;}
.x3b_c00437{left:505.328253pt;}
.xc_c00437{left:506.687853pt;}
.x35_c00437{left:509.583053pt;}
.x5e_c00437{left:516.165453pt;}
.x4f_c00437{left:517.327053pt;}
.x5a_c00437{left:518.369853pt;}
.x83_c00437{left:524.886253pt;}
.x45_c00437{left:526.826653pt;}
.x75_c00437{left:528.155453pt;}
.x36_c00437{left:536.330653pt;}
.x3c_c00437{left:538.372253pt;}
.x66_c00437{left:544.879853pt;}
.x2c_c00437{left:546.142653pt;}
.xd_c00437{left:555.778653pt;}
.x5f_c00437{left:558.511053pt;}
.x37_c00437{left:564.847053pt;}
.x70_c00437{left:566.131853pt;}
.xe_c00437{left:570.391053pt;}
.x46_c00437{left:574.047453pt;}
.x67_c00437{left:574.945053pt;}
.x2d_c00437{left:576.001053pt;}
.x3d_c00437{left:577.228653pt;}
.x81_c00437{left:584.673453pt;}
.xf_c00437{left:585.584253pt;}
.x50_c00437{left:590.503453pt;}
.x51_c00437{left:594.943053pt;}
.x2_c00437{left:604.130253pt;}
.x10_c00437{left:605.032253pt;}
.x68_c00437{left:609.256253pt;}
.x38_c00437{left:612.947853pt;}
.x3_c00437{left:614.263453pt;}
.x76_c00437{left:623.265853pt;}
.x72_c00437{left:633.711453pt;}
.x60_c00437{left:636.325053pt;}
.x2e_c00437{left:642.947053pt;}
.x84_c00437{left:652.402653pt;}
.x11_c00437{left:653.454253pt;}
.x47_c00437{left:662.443453pt;}
.x61_c00437{left:674.750253pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c3684cbd95e320e100e456ad.woff2')format("woff");}.ff1_c00438{font-family:ff1_c00438;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00438;src:url('chunks/assets/font_e4ee5ae808e8280e85831263.woff2')format("woff");}.ff2_c00438{font-family:ff2_c00438;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00438;src:url('chunks/assets/font_17c62c50464627c616e64296.woff2')format("woff");}.ff3_c00438{font-family:ff3_c00438;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00438;src:url('chunks/assets/font_d15fec01ec1128141cce504b.woff2')format("woff");}.ff4_c00438{font-family:ff4_c00438;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00438;src:url('chunks/assets/font_d3d206b46b93718e7182aafd.woff2')format("woff");}.ff5_c00438{font-family:ff5_c00438;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00438;src:url('chunks/assets/font_86774aed3148731dedd662a8.woff2')format("woff");}.ff6_c00438{font-family:ff6_c00438;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00438;src:url('chunks/assets/font_fda7ec429375dd5ad3c7ab7b.woff2')format("woff");}.ff7_c00438{font-family:ff7_c00438;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m43_c00438{transform:matrix(0.014707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.014707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.014707,0.000000,0.000000,0.250000,0,0);}
.m52_c00438{transform:matrix(0.025642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.025642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.025642,0.000000,0.000000,0.250000,0,0);}
.m2f_c00438{transform:matrix(0.026787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026787,0.000000,0.000000,0.250000,0,0);}
.m87_c00438{transform:matrix(0.044118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.044118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.044118,0.000000,0.000000,0.250000,0,0);}
.m26_c00438{transform:matrix(0.051787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.051787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.051787,0.000000,0.000000,0.250000,0,0);}
.mff_c00438{transform:matrix(0.057144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.057144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.057144,0.000000,0.000000,0.250000,0,0);}
.m2b_c00438{transform:matrix(0.062501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062501,0.000000,0.000000,0.250000,0,0);}
.mad_c00438{transform:matrix(0.064103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064103,0.000000,0.000000,0.250000,0,0);}
.mdf_c00438{transform:matrix(0.068183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.068183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.068183,0.000000,0.000000,0.250000,0,0);}
.m45_c00438{transform:matrix(0.073530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073530,0.000000,0.000000,0.250000,0,0);}
.mc2_c00438{transform:matrix(0.075001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075001,0.000000,0.000000,0.250000,0,0);}
.m21_c00438{transform:matrix(0.078126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078126,0.000000,0.000000,0.250000,0,0);}
.m8f_c00438{transform:matrix(0.084559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084559,0.000000,0.000000,0.250000,0,0);}
.mc8_c00438{transform:matrix(0.086771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086771,0.000000,0.000000,0.250000,0,0);}
.m1_c00438{transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);}
.mde_c00438{transform:matrix(0.094697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094697,0.000000,0.000000,0.250000,0,0);}
.m31_c00438{transform:matrix(0.102080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102080,0.000000,0.000000,0.250000,0,0);}
.mdd_c00438{transform:matrix(0.109850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109850,0.000000,0.000000,0.250000,0,0);}
.m76_c00438{transform:matrix(0.118244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118244,0.000000,0.000000,0.250000,0,0);}
.m27_c00438{transform:matrix(0.118304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118304,0.000000,0.000000,0.250000,0,0);}
.mf4_c00438{transform:matrix(0.118368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118368,0.000000,0.000000,0.250000,0,0);}
.m4f_c00438{transform:matrix(0.118590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118590,0.000000,0.000000,0.250000,0,0);}
.mfa_c00438{transform:matrix(0.121570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121570,0.000000,0.000000,0.250000,0,0);}
.m74_c00438{transform:matrix(0.128810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128810,0.000000,0.000000,0.250000,0,0);}
.m4a_c00438{transform:matrix(0.129202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129202,0.000000,0.000000,0.250000,0,0);}
.m46_c00438{transform:matrix(0.129901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129901,0.000000,0.000000,0.250000,0,0);}
.m40_c00438{transform:matrix(0.134146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134146,0.000000,0.000000,0.250000,0,0);}
.m1e_c00438{transform:matrix(0.134173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134173,0.000000,0.000000,0.250000,0,0);}
.m53_c00438{transform:matrix(0.134616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134616,0.000000,0.000000,0.250000,0,0);}
.md7_c00438{transform:matrix(0.135524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135524,0.000000,0.000000,0.250000,0,0);}
.md9_c00438{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);}
.m80_c00438{transform:matrix(0.136365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136365,0.000000,0.000000,0.250000,0,0);}
.m51_c00438{transform:matrix(0.137821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137821,0.000000,0.000000,0.250000,0,0);}
.m59_c00438{transform:matrix(0.139860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139860,0.000000,0.000000,0.250000,0,0);}
.m101_c00438{transform:matrix(0.139971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139971,0.000000,0.000000,0.250000,0,0);}
.mfe_c00438{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.maf_c00438{transform:matrix(0.143874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143874,0.000000,0.000000,0.250000,0,0);}
.m107_c00438{transform:matrix(0.144091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144091,0.000000,0.000000,0.250000,0,0);}
.m50_c00438{transform:matrix(0.147436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147436,0.000000,0.000000,0.250000,0,0);}
.meb_c00438{transform:matrix(0.147955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147955,0.000000,0.000000,0.250000,0,0);}
.m30_c00438{transform:matrix(0.149555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149555,0.000000,0.000000,0.250000,0,0);}
.m70_c00438{transform:matrix(0.151642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151642,0.000000,0.000000,0.250000,0,0);}
.mb6_c00438{transform:matrix(0.153395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153395,0.000000,0.000000,0.250000,0,0);}
.m23_c00438{transform:matrix(0.154150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154150,0.000000,0.000000,0.250000,0,0);}
.m86_c00438{transform:matrix(0.154412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154412,0.000000,0.000000,0.250000,0,0);}
.m17_c00438{transform:matrix(0.154446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154446,0.000000,0.000000,0.250000,0,0);}
.m6c_c00438{transform:matrix(0.154794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154794,0.000000,0.000000,0.250000,0,0);}
.mae_c00438{transform:matrix(0.155983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155983,0.000000,0.000000,0.250000,0,0);}
.m2_c00438{transform:matrix(0.158791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158791,0.000000,0.000000,0.250000,0,0);}
.m8e_c00438{transform:matrix(0.161764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161764,0.000000,0.000000,0.250000,0,0);}
.m42_c00438{transform:matrix(0.162990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162990,0.000000,0.000000,0.250000,0,0);}
.m2c_c00438{transform:matrix(0.163692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163692,0.000000,0.000000,0.250000,0,0);}
.m72_c00438{transform:matrix(0.165645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165645,0.000000,0.000000,0.250000,0,0);}
.m97_c00438{transform:matrix(0.168524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168524,0.000000,0.000000,0.250000,0,0);}
.mc9_c00438{transform:matrix(0.169118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169118,0.000000,0.000000,0.250000,0,0);}
.mce_c00438{transform:matrix(0.171874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171874,0.000000,0.000000,0.250000,0,0);}
.mc0_c00438{transform:matrix(0.173810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173810,0.000000,0.000000,0.250000,0,0);}
.m33_c00438{transform:matrix(0.176490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176490,0.000000,0.000000,0.250000,0,0);}
.mc7_c00438{transform:matrix(0.178922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178922,0.000000,0.000000,0.250000,0,0);}
.m6d_c00438{transform:matrix(0.185811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185811,0.000000,0.000000,0.250000,0,0);}
.mc1_c00438{transform:matrix(0.189285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189285,0.000000,0.000000,0.250000,0,0);}
.mdc_c00438{transform:matrix(0.189394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189394,0.000000,0.000000,0.250000,0,0);}
.m24_c00438{transform:matrix(0.192049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192049,0.000000,0.000000,0.250000,0,0);}
.mdb_c00438{transform:matrix(0.204547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204547,0.000000,0.000000,0.250000,0,0);}
.m29_c00438{transform:matrix(0.204704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204704,0.000000,0.000000,0.250000,0,0);}
.m8d_c00438{transform:matrix(0.205883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205883,0.000000,0.000000,0.250000,0,0);}
.mfd_c00438{transform:matrix(0.208094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208094,0.000000,0.000000,0.250000,0,0);}
.ma3_c00438{transform:matrix(0.209578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209578,0.000000,0.000000,0.250000,0,0);}
.mf2_c00438{transform:matrix(0.210432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210432,0.000000,0.000000,0.250000,0,0);}
.m10_c00438{transform:matrix(0.211720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211720,0.000000,0.000000,0.250000,0,0);}
.m44_c00438{transform:matrix(0.215074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215074,0.000000,0.000000,0.250000,0,0);}
.mb4_c00438{transform:matrix(0.215764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215764,0.000000,0.000000,0.250000,0,0);}
.m66_c00438{transform:matrix(0.217558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217558,0.000000,0.000000,0.250000,0,0);}
.mda_c00438{transform:matrix(0.219698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219698,0.000000,0.000000,0.250000,0,0);}
.mee_c00438{transform:matrix(0.221618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221618,0.000000,0.000000,0.250000,0,0);}
.m7f_c00438{transform:matrix(0.222223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222223,0.000000,0.000000,0.250000,0,0);}
.m79_c00438{transform:matrix(0.225126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225126,0.000000,0.000000,0.250000,0,0);}
.m2e_c00438{transform:matrix(0.227680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227680,0.000000,0.000000,0.250000,0,0);}
.m28_c00438{transform:matrix(0.230982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230982,0.000000,0.000000,0.250000,0,0);}
.m48_c00438{transform:matrix(0.231153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231153,0.000000,0.000000,0.250000,0,0);}
.m106_c00438{transform:matrix(0.231580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231580,0.000000,0.000000,0.250000,0,0);}
.md4_c00438{transform:matrix(0.232300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232300,0.000000,0.000000,0.250000,0,0);}
.m47_c00438{transform:matrix(0.234780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234780,0.000000,0.000000,0.250000,0,0);}
.m5c_c00438{transform:matrix(0.237361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237361,0.000000,0.000000,0.250000,0,0);}
.m32_c00438{transform:matrix(0.237813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237813,0.000000,0.000000,0.250000,0,0);}
.m7_c00438{transform:matrix(0.241800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241800,0.000000,0.000000,0.250000,0,0);}
.m25_c00438{transform:matrix(0.242143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242143,0.000000,0.000000,0.250000,0,0);}
.m35_c00438{transform:matrix(0.245251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245251,0.000000,0.000000,0.250000,0,0);}
.m0_c00438{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00438{transform:matrix(0.250755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250755,0.000000,0.000000,0.250000,0,0);}
.m64_c00438{transform:matrix(0.251484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251484,0.000000,0.000000,0.250000,0,0);}
.ma0_c00438{transform:matrix(0.252705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252705,0.000000,0.000000,0.250000,0,0);}
.m36_c00438{transform:matrix(0.253715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253715,0.000000,0.000000,0.250000,0,0);}
.mf3_c00438{transform:matrix(0.253780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253780,0.000000,0.000000,0.250000,0,0);}
.me2_c00438{transform:matrix(0.256245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256245,0.000000,0.000000,0.250000,0,0);}
.m7c_c00438{transform:matrix(0.256463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256463,0.000000,0.000000,0.250000,0,0);}
.me_c00438{transform:matrix(0.256726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256726,0.000000,0.000000,0.250000,0,0);}
.m4d_c00438{transform:matrix(0.258674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258674,0.000000,0.000000,0.250000,0,0);}
.ma2_c00438{transform:matrix(0.258819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258819,0.000000,0.000000,0.250000,0,0);}
.ma7_c00438{transform:matrix(0.260916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260916,0.000000,0.000000,0.250000,0,0);}
.m11_c00438{transform:matrix(0.261434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261434,0.000000,0.000000,0.250000,0,0);}
.me0_c00438{transform:matrix(0.261587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261587,0.000000,0.000000,0.250000,0,0);}
.m19_c00438{transform:matrix(0.262917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262917,0.000000,0.000000,0.250000,0,0);}
.m105_c00438{transform:matrix(0.263555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263555,0.000000,0.000000,0.250000,0,0);}
.ma9_c00438{transform:matrix(0.265160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265160,0.000000,0.000000,0.250000,0,0);}
.m92_c00438{transform:matrix(0.265218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265218,0.000000,0.000000,0.250000,0,0);}
.m6b_c00438{transform:matrix(0.267058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267058,0.000000,0.000000,0.250000,0,0);}
.mc6_c00438{transform:matrix(0.267062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267062,0.000000,0.000000,0.250000,0,0);}
.m5b_c00438{transform:matrix(0.267681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267681,0.000000,0.000000,0.250000,0,0);}
.m109_c00438{transform:matrix(0.268640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268640,0.000000,0.000000,0.250000,0,0);}
.md3_c00438{transform:matrix(0.269022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269022,0.000000,0.000000,0.250000,0,0);}
.mb8_c00438{transform:matrix(0.269749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269749,0.000000,0.000000,0.250000,0,0);}
.mcf_c00438{transform:matrix(0.272301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272301,0.000000,0.000000,0.250000,0,0);}
.me9_c00438{transform:matrix(0.272320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272320,0.000000,0.000000,0.250000,0,0);}
.m100_c00438{transform:matrix(0.273469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273469,0.000000,0.000000,0.250000,0,0);}
.mc_c00438{transform:matrix(0.274082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274082,0.000000,0.000000,0.250000,0,0);}
.mec_c00438{transform:matrix(0.276501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276501,0.000000,0.000000,0.250000,0,0);}
.m7b_c00438{transform:matrix(0.277235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277235,0.000000,0.000000,0.250000,0,0);}
.md8_c00438{transform:matrix(0.277553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277553,0.000000,0.000000,0.250000,0,0);}
.ma1_c00438{transform:matrix(0.279157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279157,0.000000,0.000000,0.250000,0,0);}
.m9d_c00438{transform:matrix(0.279180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279180,0.000000,0.000000,0.250000,0,0);}
.m96_c00438{transform:matrix(0.279494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279494,0.000000,0.000000,0.250000,0,0);}
.m38_c00438{transform:matrix(0.280372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280372,0.000000,0.000000,0.250000,0,0);}
.mbc_c00438{transform:matrix(0.281009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281009,0.000000,0.000000,0.250000,0,0);}
.m34_c00438{transform:matrix(0.281033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281033,0.000000,0.000000,0.250000,0,0);}
.m9a_c00438{transform:matrix(0.282740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282740,0.000000,0.000000,0.250000,0,0);}
.mbb_c00438{transform:matrix(0.283236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283236,0.000000,0.000000,0.250000,0,0);}
.m37_c00438{transform:matrix(0.283721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283721,0.000000,0.000000,0.250000,0,0);}
.m6f_c00438{transform:matrix(0.283925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283925,0.000000,0.000000,0.250000,0,0);}
.m9_c00438{transform:matrix(0.284152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284152,0.000000,0.000000,0.250000,0,0);}
.m61_c00438{transform:matrix(0.284226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284226,0.000000,0.000000,0.250000,0,0);}
.ma8_c00438{transform:matrix(0.285012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285012,0.000000,0.000000,0.250000,0,0);}
.m63_c00438{transform:matrix(0.286142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286142,0.000000,0.000000,0.250000,0,0);}
.m89_c00438{transform:matrix(0.286166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286166,0.000000,0.000000,0.250000,0,0);}
.mbe_c00438{transform:matrix(0.287170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287170,0.000000,0.000000,0.250000,0,0);}
.m1c_c00438{transform:matrix(0.287227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287227,0.000000,0.000000,0.250000,0,0);}
.mcb_c00438{transform:matrix(0.287553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287553,0.000000,0.000000,0.250000,0,0);}
.m1f_c00438{transform:matrix(0.287722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287722,0.000000,0.000000,0.250000,0,0);}
.m7d_c00438{transform:matrix(0.287956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287956,0.000000,0.000000,0.250000,0,0);}
.m60_c00438{transform:matrix(0.288119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288119,0.000000,0.000000,0.250000,0,0);}
.mbf_c00438{transform:matrix(0.288658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288658,0.000000,0.000000,0.250000,0,0);}
.m3b_c00438{transform:matrix(0.289304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289304,0.000000,0.000000,0.250000,0,0);}
.mab_c00438{transform:matrix(0.289970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289970,0.000000,0.000000,0.250000,0,0);}
.m20_c00438{transform:matrix(0.289995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289995,0.000000,0.000000,0.250000,0,0);}
.m3a_c00438{transform:matrix(0.290188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290188,0.000000,0.000000,0.250000,0,0);}
.m82_c00438{transform:matrix(0.290528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290528,0.000000,0.000000,0.250000,0,0);}
.m12_c00438{transform:matrix(0.291252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291252,0.000000,0.000000,0.250000,0,0);}
.mf7_c00438{transform:matrix(0.291560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291560,0.000000,0.000000,0.250000,0,0);}
.mb7_c00438{transform:matrix(0.292626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292626,0.000000,0.000000,0.250000,0,0);}
.m95_c00438{transform:matrix(0.293169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293169,0.000000,0.000000,0.250000,0,0);}
.ma6_c00438{transform:matrix(0.294427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294427,0.000000,0.000000,0.250000,0,0);}
.m9e_c00438{transform:matrix(0.294470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294470,0.000000,0.000000,0.250000,0,0);}
.m15_c00438{transform:matrix(0.294715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294715,0.000000,0.000000,0.250000,0,0);}
.mf0_c00438{transform:matrix(0.295540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295540,0.000000,0.000000,0.250000,0,0);}
.mb5_c00438{transform:matrix(0.295567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295567,0.000000,0.000000,0.250000,0,0);}
.m10c_c00438{transform:matrix(0.296355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296355,0.000000,0.000000,0.250000,0,0);}
.m77_c00438{transform:matrix(0.296362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296362,0.000000,0.000000,0.250000,0,0);}
.m104_c00438{transform:matrix(0.296574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296574,0.000000,0.000000,0.250000,0,0);}
.mb_c00438{transform:matrix(0.297057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297057,0.000000,0.000000,0.250000,0,0);}
.m84_c00438{transform:matrix(0.297271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297271,0.000000,0.000000,0.250000,0,0);}
.mb2_c00438{transform:matrix(0.298148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298148,0.000000,0.000000,0.250000,0,0);}
.m58_c00438{transform:matrix(0.298334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298334,0.000000,0.000000,0.250000,0,0);}
.m99_c00438{transform:matrix(0.298340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298340,0.000000,0.000000,0.250000,0,0);}
.m2a_c00438{transform:matrix(0.298571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298571,0.000000,0.000000,0.250000,0,0);}
.mf6_c00438{transform:matrix(0.298843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298843,0.000000,0.000000,0.250000,0,0);}
.m16_c00438{transform:matrix(0.300300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300300,0.000000,0.000000,0.250000,0,0);}
.m54_c00438{transform:matrix(0.301848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301848,0.000000,0.000000,0.250000,0,0);}
.ma5_c00438{transform:matrix(0.302277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302277,0.000000,0.000000,0.250000,0,0);}
.me4_c00438{transform:matrix(0.302468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302468,0.000000,0.000000,0.250000,0,0);}
.mea_c00438{transform:matrix(0.302762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302762,0.000000,0.000000,0.250000,0,0);}
.m49_c00438{transform:matrix(0.303120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303120,0.000000,0.000000,0.250000,0,0);}
.m3e_c00438{transform:matrix(0.303987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303987,0.000000,0.000000,0.250000,0,0);}
.ma4_c00438{transform:matrix(0.305806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305806,0.000000,0.000000,0.250000,0,0);}
.m4e_c00438{transform:matrix(0.305967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305967,0.000000,0.000000,0.250000,0,0);}
.m10a_c00438{transform:matrix(0.306886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306886,0.000000,0.000000,0.250000,0,0);}
.md2_c00438{transform:matrix(0.307121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307121,0.000000,0.000000,0.250000,0,0);}
.m103_c00438{transform:matrix(0.307377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307377,0.000000,0.000000,0.250000,0,0);}
.me5_c00438{transform:matrix(0.308929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308929,0.000000,0.000000,0.250000,0,0);}
.mf8_c00438{transform:matrix(0.309682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309682,0.000000,0.000000,0.250000,0,0);}
.m57_c00438{transform:matrix(0.311806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311806,0.000000,0.000000,0.250000,0,0);}
.m6e_c00438{transform:matrix(0.311882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311882,0.000000,0.000000,0.250000,0,0);}
.mbd_c00438{transform:matrix(0.313513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313513,0.000000,0.000000,0.250000,0,0);}
.mcd_c00438{transform:matrix(0.313864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313864,0.000000,0.000000,0.250000,0,0);}
.m4b_c00438{transform:matrix(0.314334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314334,0.000000,0.000000,0.250000,0,0);}
.m6a_c00438{transform:matrix(0.314554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314554,0.000000,0.000000,0.250000,0,0);}
.m9f_c00438{transform:matrix(0.314573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314573,0.000000,0.000000,0.250000,0,0);}
.m3f_c00438{transform:matrix(0.314690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314690,0.000000,0.000000,0.250000,0,0);}
.m5e_c00438{transform:matrix(0.314936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314936,0.000000,0.000000,0.250000,0,0);}
.mb1_c00438{transform:matrix(0.316783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316783,0.000000,0.000000,0.250000,0,0);}
.m5a_c00438{transform:matrix(0.316906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316906,0.000000,0.000000,0.250000,0,0);}
.m3c_c00438{transform:matrix(0.317203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317203,0.000000,0.000000,0.250000,0,0);}
.mac_c00438{transform:matrix(0.317778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317778,0.000000,0.000000,0.250000,0,0);}
.mfc_c00438{transform:matrix(0.319679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319679,0.000000,0.000000,0.250000,0,0);}
.m78_c00438{transform:matrix(0.320163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320163,0.000000,0.000000,0.250000,0,0);}
.m67_c00438{transform:matrix(0.320322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320322,0.000000,0.000000,0.250000,0,0);}
.m73_c00438{transform:matrix(0.320710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320710,0.000000,0.000000,0.250000,0,0);}
.mca_c00438{transform:matrix(0.321309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321309,0.000000,0.000000,0.250000,0,0);}
.m83_c00438{transform:matrix(0.321761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321761,0.000000,0.000000,0.250000,0,0);}
.m22_c00438{transform:matrix(0.321840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321840,0.000000,0.000000,0.250000,0,0);}
.mcc_c00438{transform:matrix(0.322084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322084,0.000000,0.000000,0.250000,0,0);}
.m3_c00438{transform:matrix(0.322446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322446,0.000000,0.000000,0.250000,0,0);}
.m13_c00438{transform:matrix(0.322960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322960,0.000000,0.000000,0.250000,0,0);}
.mfb_c00438{transform:matrix(0.323428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323428,0.000000,0.000000,0.250000,0,0);}
.m88_c00438{transform:matrix(0.323528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323528,0.000000,0.000000,0.250000,0,0);}
.m68_c00438{transform:matrix(0.323765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323765,0.000000,0.000000,0.250000,0,0);}
.mba_c00438{transform:matrix(0.324649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324649,0.000000,0.000000,0.250000,0,0);}
.m41_c00438{transform:matrix(0.324655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324655,0.000000,0.000000,0.250000,0,0);}
.mf5_c00438{transform:matrix(0.327351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327351,0.000000,0.000000,0.250000,0,0);}
.m4c_c00438{transform:matrix(0.329240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329240,0.000000,0.000000,0.250000,0,0);}
.m81_c00438{transform:matrix(0.330005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330005,0.000000,0.000000,0.250000,0,0);}
.m5d_c00438{transform:matrix(0.331029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331029,0.000000,0.000000,0.250000,0,0);}
.m7e_c00438{transform:matrix(0.331698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331698,0.000000,0.000000,0.250000,0,0);}
.m8_c00438{transform:matrix(0.332810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332810,0.000000,0.000000,0.250000,0,0);}
.m7a_c00438{transform:matrix(0.333184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333184,0.000000,0.000000,0.250000,0,0);}
.m39_c00438{transform:matrix(0.333997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333997,0.000000,0.000000,0.250000,0,0);}
.m65_c00438{transform:matrix(0.334844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334844,0.000000,0.000000,0.250000,0,0);}
.m3d_c00438{transform:matrix(0.335003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335003,0.000000,0.000000,0.250000,0,0);}
.m108_c00438{transform:matrix(0.335337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335337,0.000000,0.000000,0.250000,0,0);}
.m9b_c00438{transform:matrix(0.335409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335409,0.000000,0.000000,0.250000,0,0);}
.m90_c00438{transform:matrix(0.337314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337314,0.000000,0.000000,0.250000,0,0);}
.md_c00438{transform:matrix(0.339712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339712,0.000000,0.000000,0.250000,0,0);}
.mb0_c00438{transform:matrix(0.340858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340858,0.000000,0.000000,0.250000,0,0);}
.me6_c00438{transform:matrix(0.340867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340867,0.000000,0.000000,0.250000,0,0);}
.mc5_c00438{transform:matrix(0.341002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341002,0.000000,0.000000,0.250000,0,0);}
.m1a_c00438{transform:matrix(0.341787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341787,0.000000,0.000000,0.250000,0,0);}
.m1b_c00438{transform:matrix(0.342931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342931,0.000000,0.000000,0.250000,0,0);}
.m14_c00438{transform:matrix(0.343519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343519,0.000000,0.000000,0.250000,0,0);}
.md1_c00438{transform:matrix(0.343838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343838,0.000000,0.000000,0.250000,0,0);}
.m8b_c00438{transform:matrix(0.344073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344073,0.000000,0.000000,0.250000,0,0);}
.m9c_c00438{transform:matrix(0.344299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344299,0.000000,0.000000,0.250000,0,0);}
.m18_c00438{transform:matrix(0.346409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346409,0.000000,0.000000,0.250000,0,0);}
.m91_c00438{transform:matrix(0.346432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346432,0.000000,0.000000,0.250000,0,0);}
.m75_c00438{transform:matrix(0.346690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346690,0.000000,0.000000,0.250000,0,0);}
.me1_c00438{transform:matrix(0.347241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347241,0.000000,0.000000,0.250000,0,0);}
.mf_c00438{transform:matrix(0.347996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347996,0.000000,0.000000,0.250000,0,0);}
.mc4_c00438{transform:matrix(0.348489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348489,0.000000,0.000000,0.250000,0,0);}
.m10b_c00438{transform:matrix(0.349075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349075,0.000000,0.000000,0.250000,0,0);}
.me7_c00438{transform:matrix(0.352067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352067,0.000000,0.000000,0.250000,0,0);}
.m69_c00438{transform:matrix(0.352132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352132,0.000000,0.000000,0.250000,0,0);}
.m6_c00438{transform:matrix(0.354547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354547,0.000000,0.000000,0.250000,0,0);}
.m56_c00438{transform:matrix(0.355309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355309,0.000000,0.000000,0.250000,0,0);}
.me3_c00438{transform:matrix(0.355334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355334,0.000000,0.000000,0.250000,0,0);}
.mf1_c00438{transform:matrix(0.356709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356709,0.000000,0.000000,0.250000,0,0);}
.m94_c00438{transform:matrix(0.359648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359648,0.000000,0.000000,0.250000,0,0);}
.m5_c00438{transform:matrix(0.361524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361524,0.000000,0.000000,0.250000,0,0);}
.m5f_c00438{transform:matrix(0.361892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361892,0.000000,0.000000,0.250000,0,0);}
.mc3_c00438{transform:matrix(0.362139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362139,0.000000,0.000000,0.250000,0,0);}
.mf9_c00438{transform:matrix(0.362883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362883,0.000000,0.000000,0.250000,0,0);}
.m102_c00438{transform:matrix(0.366062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366062,0.000000,0.000000,0.250000,0,0);}
.m98_c00438{transform:matrix(0.366394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366394,0.000000,0.000000,0.250000,0,0);}
.ma_c00438{transform:matrix(0.366678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366678,0.000000,0.000000,0.250000,0,0);}
.md6_c00438{transform:matrix(0.370543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370543,0.000000,0.000000,0.250000,0,0);}
.md0_c00438{transform:matrix(0.371288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371288,0.000000,0.000000,0.250000,0,0);}
.me8_c00438{transform:matrix(0.374192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374192,0.000000,0.000000,0.250000,0,0);}
.m85_c00438{transform:matrix(0.378270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378270,0.000000,0.000000,0.250000,0,0);}
.m62_c00438{transform:matrix(0.379886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379886,0.000000,0.000000,0.250000,0,0);}
.med_c00438{transform:matrix(0.382328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382328,0.000000,0.000000,0.250000,0,0);}
.mb3_c00438{transform:matrix(0.384312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384312,0.000000,0.000000,0.250000,0,0);}
.m93_c00438{transform:matrix(0.387906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387906,0.000000,0.000000,0.250000,0,0);}
.m8a_c00438{transform:matrix(0.399607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399607,0.000000,0.000000,0.250000,0,0);}
.mef_c00438{transform:matrix(0.411565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411565,0.000000,0.000000,0.250000,0,0);}
.mb9_c00438{transform:matrix(0.419186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419186,0.000000,0.000000,0.250000,0,0);}
.m4_c00438{transform:matrix(0.419389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419389,0.000000,0.000000,0.250000,0,0);}
.m71_c00438{transform:matrix(0.420061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420061,0.000000,0.000000,0.250000,0,0);}
.m55_c00438{transform:matrix(0.445123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445123,0.000000,0.000000,0.250000,0,0);}
.maa_c00438{transform:matrix(0.467986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467986,0.000000,0.000000,0.250000,0,0);}
.md5_c00438{transform:matrix(0.472183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472183,0.000000,0.000000,0.250000,0,0);}
.m2d_c00438{transform:matrix(0.660699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660699,0.000000,0.000000,0.250000,0,0);}
.m1d_c00438{transform:matrix(0.882225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.882225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.882225,0.000000,0.000000,0.250000,0,0);}
.v0_c00438{vertical-align:0.000000px;}
.v1_c00438{vertical-align:18.513000px;}
.ls36_c00438{letter-spacing:-3.213309px;}
.ls1f_c00438{letter-spacing:-2.882880px;}
.ls2d_c00438{letter-spacing:-2.827440px;}
.ls1e_c00438{letter-spacing:-2.550240px;}
.ls45_c00438{letter-spacing:-2.522527px;}
.lse_c00438{letter-spacing:-2.480940px;}
.ls37_c00438{letter-spacing:-2.300767px;}
.ls34_c00438{letter-spacing:-2.058217px;}
.ls41_c00438{letter-spacing:-2.006017px;}
.ls16_c00438{letter-spacing:-1.954267px;}
.ls25_c00438{letter-spacing:-1.878426px;}
.ls1a_c00438{letter-spacing:-1.718640px;}
.ls30_c00438{letter-spacing:-1.701216px;}
.ls40_c00438{letter-spacing:-1.670130px;}
.ls1c_c00438{letter-spacing:-1.600830px;}
.ls2b_c00438{letter-spacing:-1.580040px;}
.ls10_c00438{letter-spacing:0.000000px;}
.ls29_c00438{letter-spacing:0.113414px;}
.ls21_c00438{letter-spacing:0.198475px;}
.ls4_c00438{letter-spacing:0.772636px;}
.lsa_c00438{letter-spacing:1.091871px;}
.ls6_c00438{letter-spacing:1.183763px;}
.ls9_c00438{letter-spacing:1.268824px;}
.ls35_c00438{letter-spacing:1.382238px;}
.ls1_c00438{letter-spacing:1.417680px;}
.ls1d_c00438{letter-spacing:1.445400px;}
.ls3f_c00438{letter-spacing:1.514700px;}
.ls17_c00438{letter-spacing:1.623600px;}
.ls2_c00438{letter-spacing:1.765012px;}
.ls20_c00438{letter-spacing:1.942222px;}
.lsc_c00438{letter-spacing:1.980792px;}
.ls2e_c00438{letter-spacing:2.059200px;}
.ls27_c00438{letter-spacing:2.088900px;}
.ls14_c00438{letter-spacing:2.108700px;}
.ls11_c00438{letter-spacing:2.138400px;}
.lsb_c00438{letter-spacing:2.171789px;}
.ls23_c00438{letter-spacing:2.178000px;}
.ls8_c00438{letter-spacing:2.205403px;}
.ls2a_c00438{letter-spacing:2.257200px;}
.ls12_c00438{letter-spacing:2.267100px;}
.ls3c_c00438{letter-spacing:2.296810px;}
.ls3a_c00438{letter-spacing:2.306700px;}
.ls42_c00438{letter-spacing:2.316600px;}
.ls5_c00438{letter-spacing:2.317907px;}
.ls2c_c00438{letter-spacing:2.405700px;}
.ls19_c00438{letter-spacing:2.455200px;}
.ls31_c00438{letter-spacing:2.475000px;}
.ls3d_c00438{letter-spacing:2.494810px;}
.ls13_c00438{letter-spacing:2.672327px;}
.ls15_c00438{letter-spacing:2.791810px;}
.ls39_c00438{letter-spacing:3.009600px;}
.ls46_c00438{letter-spacing:3.168000px;}
.ls26_c00438{letter-spacing:3.187810px;}
.ls33_c00438{letter-spacing:3.286810px;}
.ls43_c00438{letter-spacing:3.338636px;}
.ls44_c00438{letter-spacing:3.375900px;}
.ls24_c00438{letter-spacing:3.381167px;}
.ls3_c00438{letter-spacing:3.473316px;}
.lsf_c00438{letter-spacing:3.544200px;}
.ls38_c00438{letter-spacing:4.533408px;}
.ls0_c00438{letter-spacing:19.158480px;}
.ls3e_c00438{letter-spacing:34.214598px;}
.ls1b_c00438{letter-spacing:39.916800px;}
.ls18_c00438{letter-spacing:45.619398px;}
.ls32_c00438{letter-spacing:47.044800px;}
.ls7_c00438{letter-spacing:48.470598px;}
.ls3b_c00438{letter-spacing:49.896198px;}
.ls2f_c00438{letter-spacing:52.747398px;}
.lsd_c00438{letter-spacing:54.172998px;}
.ls28_c00438{letter-spacing:55.598598px;}
.ls22_c00438{letter-spacing:58.449798px;}
.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;}
}
.wsc_c00438{word-spacing:-86.422906px;}
.ws3_c00438{word-spacing:-19.486012px;}
.ws8_c00438{word-spacing:-18.904763px;}
.ws1_c00438{word-spacing:-17.919475px;}
.ws0_c00438{word-spacing:-17.721000px;}
.ws6_c00438{word-spacing:-16.019784px;}
.ws2_c00438{word-spacing:-15.842574px;}
.wse_c00438{word-spacing:-15.714983px;}
.ws5_c00438{word-spacing:-13.375692px;}
.wsb_c00438{word-spacing:-12.825252px;}
.ws7_c00438{word-spacing:-5.138694px;}
.wsd_c00438{word-spacing:-3.650526px;}
.wsf_c00438{word-spacing:-3.260664px;}
.wsa_c00438{word-spacing:-1.417680px;}
.ws4_c00438{word-spacing:-1.205424px;}
.ws9_c00438{word-spacing:-0.708840px;}
.ws11_c00438{word-spacing:0.000000px;}
.ws10_c00438{word-spacing:6.521328px;}
._1f_c00438{margin-left:-12.178865px;}
._16_c00438{margin-left:-9.923760px;}
._1b_c00438{margin-left:-8.636760px;}
._18_c00438{margin-left:-5.010984px;}
._0_c00438{margin-left:-3.260664px;}
._4_c00438{margin-left:-1.742499px;}
._20_c00438{width:2.268288px;}
._d_c00438{width:3.870163px;}
._1d_c00438{width:5.663632px;}
._17_c00438{width:7.088004px;}
._14_c00438{width:8.576964px;}
._c_c00438{width:9.810742px;}
._e_c00438{width:11.129184px;}
._1_c00438{width:12.830004px;}
._7_c00438{width:13.945536px;}
._8_c00438{width:19.917612px;}
._2_c00438{width:22.115808px;}
._15_c00438{width:24.384096px;}
._1c_c00438{width:25.801776px;}
._12_c00438{width:28.212228px;}
._10_c00438{width:29.381418px;}
._11_c00438{width:34.065504px;}
._19_c00438{width:36.500904px;}
._f_c00438{width:37.906704px;}
._1e_c00438{width:39.501000px;}
._b_c00438{width:41.112720px;}
._1a_c00438{width:69.940618px;}
._3_c00438{width:91.776404px;}
._5_c00438{width:103.529448px;}
._6_c00438{width:108.345600px;}
._a_c00438{width:155.564640px;}
._13_c00438{width:322.872154px;}
._9_c00438{width:801.723384px;}
.fc0_c00438{color:transparent;}
.fs4_c00438{font-size:26.532000px;}
.fs10_c00438{font-size:28.908000px;}
.fs30_c00438{font-size:30.294000px;}
.fsa_c00438{font-size:32.472000px;}
.fs2d_c00438{font-size:34.214598px;}
.fs3a_c00438{font-size:34.650000px;}
.fs16_c00438{font-size:39.600000px;}
.fse_c00438{font-size:39.916800px;}
.fs38_c00438{font-size:40.590000px;}
.fs1e_c00438{font-size:41.184000px;}
.fs18_c00438{font-size:41.778000px;}
.fs7_c00438{font-size:42.174000px;}
.fs3_c00438{font-size:42.768000px;}
.fs14_c00438{font-size:43.560000px;}
.fs1b_c00438{font-size:45.144000px;}
.fs6_c00438{font-size:45.342000px;}
.fsb_c00438{font-size:45.619398px;}
.fsf_c00438{font-size:45.738000px;}
.fs2a_c00438{font-size:45.936198px;}
.fs28_c00438{font-size:46.134000px;}
.fs32_c00438{font-size:46.332000px;}
.fs21_c00438{font-size:47.044800px;}
.fs2e_c00438{font-size:47.124000px;}
.fs31_c00438{font-size:47.718000px;}
.fs1c_c00438{font-size:48.114000px;}
.fs15_c00438{font-size:48.470598px;}
.fsd_c00438{font-size:49.104000px;}
.fs20_c00438{font-size:49.500000px;}
.fs29_c00438{font-size:49.896198px;}
.fs33_c00438{font-size:52.074000px;}
.fs1f_c00438{font-size:52.747398px;}
.fs1_c00438{font-size:54.172998px;}
.fs19_c00438{font-size:55.598598px;}
.fs9_c00438{font-size:55.836198px;}
.fs2c_c00438{font-size:56.628000px;}
.fs5_c00438{font-size:58.212000px;}
.fs13_c00438{font-size:58.449798px;}
.fs23_c00438{font-size:58.806198px;}
.fs27_c00438{font-size:60.192000px;}
.fs36_c00438{font-size:63.360000px;}
.fs17_c00438{font-size:63.756198px;}
.fs2f_c00438{font-size:64.548000px;}
.fs22_c00438{font-size:65.736198px;}
.fs1a_c00438{font-size:66.726198px;}
.fsc_c00438{font-size:67.320000px;}
.fs34_c00438{font-size:67.518000px;}
.fs37_c00438{font-size:68.112198px;}
.fs8_c00438{font-size:68.706198px;}
.fs2_c00438{font-size:70.884000px;}
.fs39_c00438{font-size:71.676198px;}
.fs35_c00438{font-size:72.072198px;}
.fs11_c00438{font-size:72.864000px;}
.fs1d_c00438{font-size:80.784000px;}
.fs0_c00438{font-size:81.180000px;}
.fs12_c00438{font-size:82.368000px;}
.fs24_c00438{font-size:93.456198px;}
.fs26_c00438{font-size:95.040000px;}
.fs25_c00438{font-size:99.792198px;}
.fs2b_c00438{font-size:107.712198px;}
.y0_c00438{bottom:0.000000px;}
.y1_c00438{bottom:76.500000px;}
.y23_c00438{bottom:172.053135px;}
.y22_c00438{bottom:205.554735px;}
.y21_c00438{bottom:239.769135px;}
.y20_c00438{bottom:273.622185px;}
.y1f_c00438{bottom:306.059535px;}
.y1d_c00438{bottom:403.708185px;}
.y1e_c00438{bottom:413.330985px;}
.y1c_c00438{bottom:436.858335px;}
.y1b_c00438{bottom:502.079535px;}
.y1a_c00438{bottom:534.863385px;}
.y19_c00438{bottom:557.677935px;}
.y18_c00438{bottom:567.657135px;}
.y17_c00438{bottom:604.009935px;}
.y16_c00438{bottom:638.219385px;}
.y15_c00438{bottom:675.289935px;}
.y14_c00438{bottom:708.073785px;}
.y13_c00438{bottom:741.580335px;}
.y12_c00438{bottom:776.858985px;}
.y11_c00438{bottom:807.865785px;}
.yd_c00438{bottom:809.291385px;}
.yf_c00438{bottom:809.652735px;}
.y10_c00438{bottom:819.983385px;}
.ye_c00438{bottom:842.441535px;}
.yc_c00438{bottom:842.797935px;}
.yb_c00438{bottom:871.309935px;}
.y8_c00438{bottom:874.161135px;}
.y7_c00438{bottom:874.512585px;}
.ya_c00438{bottom:875.230335px;}
.y9_c00438{bottom:878.789385px;}
.y6_c00438{bottom:906.949935px;}
.y3_c00438{bottom:939.382335px;}
.y5_c00438{bottom:941.515785px;}
.y4_c00438{bottom:942.941385px;}
.y2_c00438{bottom:1088.708985px;}
.h2f_c00438{height:22.786922px;}
.h6_c00438{height:26.039707px;}
.h10_c00438{height:26.584589px;}
.h31_c00438{height:29.731904px;}
.h12_c00438{height:30.150141px;}
.hd_c00438{height:30.382519px;}
.h24_c00438{height:31.331837px;}
.hc_c00438{height:31.869492px;}
.h17_c00438{height:32.281418px;}
.h2b_c00438{height:33.230868px;}
.h21_c00438{height:35.129767px;}
.h3_c00438{height:36.079217px;}
.h1b_c00438{height:37.028666px;}
.h15_c00438{height:38.927565px;}
.h18_c00438{height:41.301563px;}
.h9_c00438{height:41.391475px;}
.h5_c00438{height:41.974453px;}
.h16_c00438{height:42.751758px;}
.h20_c00438{height:42.953625px;}
.h1a_c00438{height:43.573148px;}
.h11_c00438{height:44.889346px;}
.h1d_c00438{height:47.083781px;}
.h8_c00438{height:47.290289px;}
.h2c_c00438{height:47.910019px;}
.h2a_c00438{height:48.116320px;}
.hf_c00438{height:48.192891px;}
.h33_c00438{height:48.322828px;}
.h32_c00438{height:49.768383px;}
.h1e_c00438{height:50.181398px;}
.h23_c00438{height:51.626953px;}
.h2e_c00438{height:52.040175px;}
.h7_c00438{height:57.131895px;}
.hb_c00438{height:58.235410px;}
.h26_c00438{height:61.333027px;}
.h29_c00438{height:62.778375px;}
.h36_c00438{height:66.082500px;}
.h34_c00438{height:66.265225px;}
.h19_c00438{height:66.495722px;}
.h1c_c00438{height:67.247496px;}
.h30_c00438{height:67.321547px;}
.h22_c00438{height:67.431376px;}
.h25_c00438{height:68.560800px;}
.h4_c00438{height:69.568770px;}
.he_c00438{height:70.212656px;}
.h38_c00438{height:70.346269px;}
.h35_c00438{height:70.734921px;}
.h37_c00438{height:71.038894px;}
.h13_c00438{height:75.994875px;}
.h2_c00438{height:79.673730px;}
.h14_c00438{height:83.011500px;}
.h1f_c00438{height:84.255188px;}
.ha_c00438{height:88.081770px;}
.h27_c00438{height:97.940585px;}
.h28_c00438{height:99.123750px;}
.h2d_c00438{height:112.340457px;}
.h1_c00438{height:1110.000000px;}
.h0_c00438{height:1263.000000px;}
.w1_c00438{width:775.500000px;}
.w0_c00438{width:892.500000px;}
.x0_c00438{left:0.000000px;}
.x1_c00438{left:58.500000px;}
.x5b_c00438{left:82.701285px;}
.x16_c00438{left:84.255585px;}
.x7a_c00438{left:86.329635px;}
.x7f_c00438{left:105.080235px;}
.x5c_c00438{left:114.376335px;}
.x26_c00438{left:115.985085px;}
.x9a_c00438{left:117.277035px;}
.x87_c00438{left:118.281885px;}
.x27_c00438{left:125.434635px;}
.x17_c00438{left:126.597885px;}
.xa0_c00438{left:128.424435px;}
.x5d_c00438{left:130.142085px;}
.x3_c00438{left:137.200785px;}
.x9b_c00438{left:139.467885px;}
.x5e_c00438{left:146.848335px;}
.x40_c00438{left:148.417485px;}
.x88_c00438{left:153.426885px;}
.x18_c00438{left:159.119385px;}
.x42_c00438{left:161.153835px;}
.x9c_c00438{left:162.223035px;}
.x4_c00438{left:169.519335px;}
.x6c_c00438{left:170.776635px;}
.x5_c00438{left:180.810285px;}
.x64_c00438{left:189.918285px;}
.x41_c00438{left:191.725035px;}
.x69_c00438{left:193.700085px;}
.x51_c00438{left:195.655335px;}
.x82_c00438{left:197.976885px;}
.x43_c00438{left:201.827985px;}
.x73_c00438{left:203.060535px;}
.x52_c00438{left:213.475335px;}
.x6_c00438{left:214.915785px;}
.x19_c00438{left:224.276235px;}
.x74_c00438{left:225.662235px;}
.x65_c00438{left:227.701635px;}
.x53_c00438{left:230.938935px;}
.x7b_c00438{left:235.176135px;}
.x7_c00438{left:236.433435px;}
.x3b_c00438{left:246.100785px;}
.x9d_c00438{left:247.462035px;}
.x83_c00438{left:248.828235px;}
.x8_c00438{left:252.441735px;}
.x76_c00438{left:257.426385px;}
.x9_c00438{left:258.470835px;}
.x44_c00438{left:261.554685px;}
.x1a_c00438{left:268.558935px;}
.x2c_c00438{left:279.671685px;}
.x95_c00438{left:280.993335px;}
.x1b_c00438{left:289.695435px;}
.x5f_c00438{left:291.700185px;}
.xa_c00438{left:293.947485px;}
.x6d_c00438{left:297.224385px;}
.x2d_c00438{left:301.030935px;}
.xb_c00438{left:302.352585px;}
.xa1_c00438{left:303.431685px;}
.x2e_c00438{left:312.831735px;}
.x28_c00438{left:314.890935px;}
.x54_c00438{left:323.766285px;}
.x9e_c00438{left:324.790935px;}
.x2f_c00438{left:331.290285px;}
.x6e_c00438{left:333.572235px;}
.x1c_c00438{left:335.180985px;}
.x45_c00438{left:336.868935px;}
.x30_c00438{left:345.308685px;}
.xc_c00438{left:348.620235px;}
.x1d_c00438{left:356.896635px;}
.x60_c00438{left:357.965835px;}
.x89_c00438{left:362.316885px;}
.xd_c00438{left:367.959885px;}
.x3c_c00438{left:370.697235px;}
.x55_c00438{left:379.300335px;}
.x4a_c00438{left:386.324385px;}
.x1e_c00438{left:389.556735px;}
.x8a_c00438{left:391.318935px;}
.x66_c00438{left:392.813835px;}
.xe_c00438{left:400.179435px;}
.x29_c00438{left:401.466435px;}
.x7c_c00438{left:406.045185px;}
.x31_c00438{left:411.990135px;}
.x80_c00438{left:422.899935px;}
.x78_c00438{left:424.087935px;}
.x79_c00438{left:430.651635px;}
.x77_c00438{left:432.651435px;}
.xf_c00438{left:434.532435px;}
.x6f_c00438{left:439.274535px;}
.x32_c00438{left:443.605785px;}
.x56_c00438{left:445.095735px;}
.x33_c00438{left:448.605285px;}
.x6a_c00438{left:449.808135px;}
.x84_c00438{left:452.253435px;}
.x67_c00438{left:455.560035px;}
.x99_c00438{left:465.083835px;}
.x1f_c00438{left:467.073735px;}
.x96_c00438{left:468.632985px;}
.x4b_c00438{left:472.221735px;}
.x46_c00438{left:476.760885px;}
.x70_c00438{left:478.087485px;}
.x10_c00438{left:480.522885px;}
.x2a_c00438{left:488.611185px;}
.x20_c00438{left:500.515935px;}
.x47_c00438{left:509.633835px;}
.x34_c00438{left:511.158435px;}
.x4c_c00438{left:521.211885px;}
.x11_c00438{left:525.201585px;}
.x8b_c00438{left:531.730635px;}
.x85_c00438{left:533.517585px;}
.x81_c00438{left:534.923385px;}
.x4d_c00438{left:542.422635px;}
.x2b_c00438{left:543.833385px;}
.x75_c00438{left:554.317485px;}
.x12_c00438{left:555.772785px;}
.x7d_c00438{left:557.114235px;}
.x8c_c00438{left:565.648035px;}
.x57_c00438{left:566.786535px;}
.x13_c00438{left:570.434685px;}
.x86_c00438{left:576.077685px;}
.x4e_c00438{left:577.141935px;}
.x14_c00438{left:586.616235px;}
.x8d_c00438{left:588.200235px;}
.x35_c00438{left:593.397735px;}
.x36_c00438{left:599.456535px;}
.x6b_c00438{left:601.837485px;}
.x4f_c00438{left:608.366535px;}
.x61_c00438{left:610.292085px;}
.x58_c00438{left:612.009735px;}
.x21_c00438{left:620.345535px;}
.x15_c00438{left:621.360285px;}
.x37_c00438{left:623.488785px;}
.x97_c00438{left:631.527585px;}
.x62_c00438{left:632.794785px;}
.x38_c00438{left:638.036835px;}
.x48_c00438{left:641.155335px;}
.x71_c00438{left:643.288785px;}
.x8f_c00438{left:644.714385px;}
.x68_c00438{left:653.272935px;}
.x72_c00438{left:654.698535px;}
.x49_c00438{left:658.094235px;}
.x7e_c00438{left:659.331735px;}
.x3d_c00438{left:661.871085px;}
.x90_c00438{left:664.549035px;}
.x22_c00438{left:665.613285px;}
.x9f_c00438{left:668.241735px;}
.x2_c00438{left:674.053035px;}
.x23_c00438{left:676.216185px;}
.x98_c00438{left:678.220935px;}
.x59_c00438{left:686.947785px;}
.x63_c00438{left:697.050735px;}
.x3e_c00438{left:700.708785px;}
.x8e_c00438{left:701.718585px;}
.x24_c00438{left:707.767485px;}
.x39_c00438{left:712.435335px;}
.x3a_c00438{left:714.568785px;}
.x5a_c00438{left:719.380185px;}
.x25_c00438{left:721.508685px;}
.x50_c00438{left:724.305435px;}
.x91_c00438{left:729.794985px;}
.x3f_c00438{left:734.581635px;}
.x92_c00438{left:741.521535px;}
.x93_c00438{left:753.337185px;}
.x94_c00438{left:763.286685px;}
@media print{
.v0_c00438{vertical-align:0.000000pt;}
.v1_c00438{vertical-align:16.456000pt;}
.ls36_c00438{letter-spacing:-2.856274pt;}
.ls1f_c00438{letter-spacing:-2.562560pt;}
.ls2d_c00438{letter-spacing:-2.513280pt;}
.ls1e_c00438{letter-spacing:-2.266880pt;}
.ls45_c00438{letter-spacing:-2.242246pt;}
.lse_c00438{letter-spacing:-2.205280pt;}
.ls37_c00438{letter-spacing:-2.045126pt;}
.ls34_c00438{letter-spacing:-1.829526pt;}
.ls41_c00438{letter-spacing:-1.783126pt;}
.ls16_c00438{letter-spacing:-1.737126pt;}
.ls25_c00438{letter-spacing:-1.669712pt;}
.ls1a_c00438{letter-spacing:-1.527680pt;}
.ls30_c00438{letter-spacing:-1.512192pt;}
.ls40_c00438{letter-spacing:-1.484560pt;}
.ls1c_c00438{letter-spacing:-1.422960pt;}
.ls2b_c00438{letter-spacing:-1.404480pt;}
.ls10_c00438{letter-spacing:0.000000pt;}
.ls29_c00438{letter-spacing:0.100813pt;}
.ls21_c00438{letter-spacing:0.176422pt;}
.ls4_c00438{letter-spacing:0.686787pt;}
.lsa_c00438{letter-spacing:0.970552pt;}
.ls6_c00438{letter-spacing:1.052234pt;}
.ls9_c00438{letter-spacing:1.127843pt;}
.ls35_c00438{letter-spacing:1.228656pt;}
.ls1_c00438{letter-spacing:1.260160pt;}
.ls1d_c00438{letter-spacing:1.284800pt;}
.ls3f_c00438{letter-spacing:1.346400pt;}
.ls17_c00438{letter-spacing:1.443200pt;}
.ls2_c00438{letter-spacing:1.568899pt;}
.ls20_c00438{letter-spacing:1.726419pt;}
.lsc_c00438{letter-spacing:1.760704pt;}
.ls2e_c00438{letter-spacing:1.830400pt;}
.ls27_c00438{letter-spacing:1.856800pt;}
.ls14_c00438{letter-spacing:1.874400pt;}
.ls11_c00438{letter-spacing:1.900800pt;}
.lsb_c00438{letter-spacing:1.930479pt;}
.ls23_c00438{letter-spacing:1.936000pt;}
.ls8_c00438{letter-spacing:1.960358pt;}
.ls2a_c00438{letter-spacing:2.006400pt;}
.ls12_c00438{letter-spacing:2.015200pt;}
.ls3c_c00438{letter-spacing:2.041609pt;}
.ls3a_c00438{letter-spacing:2.050400pt;}
.ls42_c00438{letter-spacing:2.059200pt;}
.ls5_c00438{letter-spacing:2.060362pt;}
.ls2c_c00438{letter-spacing:2.138400pt;}
.ls19_c00438{letter-spacing:2.182400pt;}
.ls31_c00438{letter-spacing:2.200000pt;}
.ls3d_c00438{letter-spacing:2.217609pt;}
.ls13_c00438{letter-spacing:2.375402pt;}
.ls15_c00438{letter-spacing:2.481609pt;}
.ls39_c00438{letter-spacing:2.675200pt;}
.ls46_c00438{letter-spacing:2.816000pt;}
.ls26_c00438{letter-spacing:2.833609pt;}
.ls33_c00438{letter-spacing:2.921609pt;}
.ls43_c00438{letter-spacing:2.967677pt;}
.ls44_c00438{letter-spacing:3.000800pt;}
.ls24_c00438{letter-spacing:3.005482pt;}
.ls3_c00438{letter-spacing:3.087392pt;}
.lsf_c00438{letter-spacing:3.150400pt;}
.ls38_c00438{letter-spacing:4.029696pt;}
.ls0_c00438{letter-spacing:17.029760pt;}
.ls3e_c00438{letter-spacing:30.412976pt;}
.ls1b_c00438{letter-spacing:35.481600pt;}
.ls18_c00438{letter-spacing:40.550576pt;}
.ls32_c00438{letter-spacing:41.817600pt;}
.ls7_c00438{letter-spacing:43.084976pt;}
.ls3b_c00438{letter-spacing:44.352176pt;}
.ls2f_c00438{letter-spacing:46.886576pt;}
.lsd_c00438{letter-spacing:48.153776pt;}
.ls28_c00438{letter-spacing:49.420976pt;}
.ls22_c00438{letter-spacing:51.955376pt;}
.wsc_c00438{word-spacing:-76.820361pt;}
.ws3_c00438{word-spacing:-17.320899pt;}
.ws8_c00438{word-spacing:-16.804234pt;}
.ws1_c00438{word-spacing:-15.928422pt;}
.ws0_c00438{word-spacing:-15.752000pt;}
.ws6_c00438{word-spacing:-14.239808pt;}
.ws2_c00438{word-spacing:-14.082288pt;}
.wse_c00438{word-spacing:-13.968874pt;}
.ws5_c00438{word-spacing:-11.889504pt;}
.wsb_c00438{word-spacing:-11.400224pt;}
.ws7_c00438{word-spacing:-4.567728pt;}
.wsd_c00438{word-spacing:-3.244912pt;}
.wsf_c00438{word-spacing:-2.898368pt;}
.wsa_c00438{word-spacing:-1.260160pt;}
.ws4_c00438{word-spacing:-1.071488pt;}
.ws9_c00438{word-spacing:-0.630080pt;}
.ws11_c00438{word-spacing:0.000000pt;}
.ws10_c00438{word-spacing:5.796736pt;}
._1f_c00438{margin-left:-10.825658pt;}
._16_c00438{margin-left:-8.821120pt;}
._1b_c00438{margin-left:-7.677120pt;}
._18_c00438{margin-left:-4.454208pt;}
._0_c00438{margin-left:-2.898368pt;}
._4_c00438{margin-left:-1.548888pt;}
._20_c00438{width:2.016256pt;}
._d_c00438{width:3.440145pt;}
._1d_c00438{width:5.034339pt;}
._17_c00438{width:6.300448pt;}
._14_c00438{width:7.623968pt;}
._c_c00438{width:8.720659pt;}
._e_c00438{width:9.892608pt;}
._1_c00438{width:11.404448pt;}
._7_c00438{width:12.396032pt;}
._8_c00438{width:17.704544pt;}
._2_c00438{width:19.658496pt;}
._15_c00438{width:21.674752pt;}
._1c_c00438{width:22.934912pt;}
._12_c00438{width:25.077536pt;}
._10_c00438{width:26.116816pt;}
._11_c00438{width:30.280448pt;}
._19_c00438{width:32.445248pt;}
._f_c00438{width:33.694848pt;}
._1e_c00438{width:35.112000pt;}
._b_c00438{width:36.544640pt;}
._1a_c00438{width:62.169438pt;}
._3_c00438{width:81.579026pt;}
._5_c00438{width:92.026176pt;}
._6_c00438{width:96.307200pt;}
._a_c00438{width:138.279680pt;}
._13_c00438{width:286.997470pt;}
._9_c00438{width:712.643008pt;}
.fs4_c00438{font-size:23.584000pt;}
.fs10_c00438{font-size:25.696000pt;}
.fs30_c00438{font-size:26.928000pt;}
.fsa_c00438{font-size:28.864000pt;}
.fs2d_c00438{font-size:30.412976pt;}
.fs3a_c00438{font-size:30.800000pt;}
.fs16_c00438{font-size:35.200000pt;}
.fse_c00438{font-size:35.481600pt;}
.fs38_c00438{font-size:36.080000pt;}
.fs1e_c00438{font-size:36.608000pt;}
.fs18_c00438{font-size:37.136000pt;}
.fs7_c00438{font-size:37.488000pt;}
.fs3_c00438{font-size:38.016000pt;}
.fs14_c00438{font-size:38.720000pt;}
.fs1b_c00438{font-size:40.128000pt;}
.fs6_c00438{font-size:40.304000pt;}
.fsb_c00438{font-size:40.550576pt;}
.fsf_c00438{font-size:40.656000pt;}
.fs2a_c00438{font-size:40.832176pt;}
.fs28_c00438{font-size:41.008000pt;}
.fs32_c00438{font-size:41.184000pt;}
.fs21_c00438{font-size:41.817600pt;}
.fs2e_c00438{font-size:41.888000pt;}
.fs31_c00438{font-size:42.416000pt;}
.fs1c_c00438{font-size:42.768000pt;}
.fs15_c00438{font-size:43.084976pt;}
.fsd_c00438{font-size:43.648000pt;}
.fs20_c00438{font-size:44.000000pt;}
.fs29_c00438{font-size:44.352176pt;}
.fs33_c00438{font-size:46.288000pt;}
.fs1f_c00438{font-size:46.886576pt;}
.fs1_c00438{font-size:48.153776pt;}
.fs19_c00438{font-size:49.420976pt;}
.fs9_c00438{font-size:49.632176pt;}
.fs2c_c00438{font-size:50.336000pt;}
.fs5_c00438{font-size:51.744000pt;}
.fs13_c00438{font-size:51.955376pt;}
.fs23_c00438{font-size:52.272176pt;}
.fs27_c00438{font-size:53.504000pt;}
.fs36_c00438{font-size:56.320000pt;}
.fs17_c00438{font-size:56.672176pt;}
.fs2f_c00438{font-size:57.376000pt;}
.fs22_c00438{font-size:58.432176pt;}
.fs1a_c00438{font-size:59.312176pt;}
.fsc_c00438{font-size:59.840000pt;}
.fs34_c00438{font-size:60.016000pt;}
.fs37_c00438{font-size:60.544176pt;}
.fs8_c00438{font-size:61.072176pt;}
.fs2_c00438{font-size:63.008000pt;}
.fs39_c00438{font-size:63.712176pt;}
.fs35_c00438{font-size:64.064176pt;}
.fs11_c00438{font-size:64.768000pt;}
.fs1d_c00438{font-size:71.808000pt;}
.fs0_c00438{font-size:72.160000pt;}
.fs12_c00438{font-size:73.216000pt;}
.fs24_c00438{font-size:83.072176pt;}
.fs26_c00438{font-size:84.480000pt;}
.fs25_c00438{font-size:88.704176pt;}
.fs2b_c00438{font-size:95.744176pt;}
.y0_c00438{bottom:0.000000pt;}
.y1_c00438{bottom:68.000000pt;}
.y23_c00438{bottom:152.936120pt;}
.y22_c00438{bottom:182.715320pt;}
.y21_c00438{bottom:213.128120pt;}
.y20_c00438{bottom:243.219720pt;}
.y1f_c00438{bottom:272.052920pt;}
.y1d_c00438{bottom:358.851720pt;}
.y1e_c00438{bottom:367.405320pt;}
.y1c_c00438{bottom:388.318520pt;}
.y1b_c00438{bottom:446.292920pt;}
.y1a_c00438{bottom:475.434120pt;}
.y19_c00438{bottom:495.713720pt;}
.y18_c00438{bottom:504.584120pt;}
.y17_c00438{bottom:536.897720pt;}
.y16_c00438{bottom:567.306120pt;}
.y15_c00438{bottom:600.257720pt;}
.y14_c00438{bottom:629.398920pt;}
.y13_c00438{bottom:659.182520pt;}
.y12_c00438{bottom:690.541320pt;}
.y11_c00438{bottom:718.102920pt;}
.yd_c00438{bottom:719.370120pt;}
.yf_c00438{bottom:719.691320pt;}
.y10_c00438{bottom:728.874120pt;}
.ye_c00438{bottom:748.836920pt;}
.yc_c00438{bottom:749.153720pt;}
.yb_c00438{bottom:774.497720pt;}
.y8_c00438{bottom:777.032120pt;}
.y7_c00438{bottom:777.344520pt;}
.ya_c00438{bottom:777.982520pt;}
.y9_c00438{bottom:781.146120pt;}
.y6_c00438{bottom:806.177720pt;}
.y3_c00438{bottom:835.006520pt;}
.y5_c00438{bottom:836.902920pt;}
.y4_c00438{bottom:838.170120pt;}
.y2_c00438{bottom:967.741320pt;}
.h2f_c00438{height:20.255042pt;}
.h6_c00438{height:23.146406pt;}
.h10_c00438{height:23.630746pt;}
.h31_c00438{height:26.428359pt;}
.h12_c00438{height:26.800125pt;}
.hd_c00438{height:27.006684pt;}
.h24_c00438{height:27.850522pt;}
.hc_c00438{height:28.328437pt;}
.h17_c00438{height:28.694594pt;}
.h2b_c00438{height:29.538549pt;}
.h21_c00438{height:31.226460pt;}
.h3_c00438{height:32.070415pt;}
.h1b_c00438{height:32.914370pt;}
.h15_c00438{height:34.602280pt;}
.h18_c00438{height:36.712500pt;}
.h9_c00438{height:36.792422pt;}
.h5_c00438{height:37.310625pt;}
.h16_c00438{height:38.001563pt;}
.h20_c00438{height:38.181000pt;}
.h1a_c00438{height:38.731688pt;}
.h11_c00438{height:39.901641pt;}
.h1d_c00438{height:41.852250pt;}
.h8_c00438{height:42.035813pt;}
.h2c_c00438{height:42.586684pt;}
.h2a_c00438{height:42.770063pt;}
.hf_c00438{height:42.838125pt;}
.h33_c00438{height:42.953625pt;}
.h32_c00438{height:44.238563pt;}
.h1e_c00438{height:44.605688pt;}
.h23_c00438{height:45.890625pt;}
.h2e_c00438{height:46.257934pt;}
.h7_c00438{height:50.783906pt;}
.hb_c00438{height:51.764809pt;}
.h26_c00438{height:54.518246pt;}
.h29_c00438{height:55.803000pt;}
.h36_c00438{height:58.740000pt;}
.h34_c00438{height:58.902422pt;}
.h19_c00438{height:59.107309pt;}
.h1c_c00438{height:59.775552pt;}
.h30_c00438{height:59.841375pt;}
.h22_c00438{height:59.939001pt;}
.h25_c00438{height:60.942934pt;}
.h4_c00438{height:61.838906pt;}
.he_c00438{height:62.411250pt;}
.h38_c00438{height:62.530016pt;}
.h35_c00438{height:62.875485pt;}
.h37_c00438{height:63.145684pt;}
.h13_c00438{height:67.551000pt;}
.h2_c00438{height:70.821094pt;}
.h14_c00438{height:73.788000pt;}
.h1f_c00438{height:74.893500pt;}
.ha_c00438{height:78.294906pt;}
.h27_c00438{height:87.058298pt;}
.h28_c00438{height:88.110000pt;}
.h2d_c00438{height:99.858184pt;}
.h1_c00438{height:986.666667pt;}
.h0_c00438{height:1122.666667pt;}
.w1_c00438{width:689.333333pt;}
.w0_c00438{width:793.333333pt;}
.x0_c00438{left:0.000000pt;}
.x1_c00438{left:52.000000pt;}
.x5b_c00438{left:73.512253pt;}
.x16_c00438{left:74.893853pt;}
.x7a_c00438{left:76.737453pt;}
.x7f_c00438{left:93.404653pt;}
.x5c_c00438{left:101.667853pt;}
.x26_c00438{left:103.097853pt;}
.x9a_c00438{left:104.246253pt;}
.x87_c00438{left:105.139453pt;}
.x27_c00438{left:111.497453pt;}
.x17_c00438{left:112.531453pt;}
.xa0_c00438{left:114.155053pt;}
.x5d_c00438{left:115.681853pt;}
.x3_c00438{left:121.956253pt;}
.x9b_c00438{left:123.971453pt;}
.x5e_c00438{left:130.531853pt;}
.x40_c00438{left:131.926653pt;}
.x88_c00438{left:136.379453pt;}
.x18_c00438{left:141.439453pt;}
.x42_c00438{left:143.247853pt;}
.x9c_c00438{left:144.198253pt;}
.x4_c00438{left:150.683853pt;}
.x6c_c00438{left:151.801453pt;}
.x5_c00438{left:160.720253pt;}
.x64_c00438{left:168.816253pt;}
.x41_c00438{left:170.422253pt;}
.x69_c00438{left:172.177853pt;}
.x51_c00438{left:173.915853pt;}
.x82_c00438{left:175.979453pt;}
.x43_c00438{left:179.402653pt;}
.x73_c00438{left:180.498253pt;}
.x52_c00438{left:189.755853pt;}
.x6_c00438{left:191.036253pt;}
.x19_c00438{left:199.356653pt;}
.x74_c00438{left:200.588653pt;}
.x65_c00438{left:202.401453pt;}
.x53_c00438{left:205.279053pt;}
.x7b_c00438{left:209.045453pt;}
.x7_c00438{left:210.163053pt;}
.x3b_c00438{left:218.756253pt;}
.x9d_c00438{left:219.966253pt;}
.x83_c00438{left:221.180653pt;}
.x8_c00438{left:224.392653pt;}
.x76_c00438{left:228.823453pt;}
.x9_c00438{left:229.751853pt;}
.x44_c00438{left:232.493053pt;}
.x1a_c00438{left:238.719053pt;}
.x2c_c00438{left:248.597053pt;}
.x95_c00438{left:249.771853pt;}
.x1b_c00438{left:257.507053pt;}
.x5f_c00438{left:259.289053pt;}
.xa_c00438{left:261.286653pt;}
.x6d_c00438{left:264.199453pt;}
.x2d_c00438{left:267.583053pt;}
.xb_c00438{left:268.757853pt;}
.xa1_c00438{left:269.717053pt;}
.x2e_c00438{left:278.072653pt;}
.x28_c00438{left:279.903053pt;}
.x54_c00438{left:287.792253pt;}
.x9e_c00438{left:288.703053pt;}
.x2f_c00438{left:294.480253pt;}
.x6e_c00438{left:296.508653pt;}
.x1c_c00438{left:297.938653pt;}
.x45_c00438{left:299.439053pt;}
.x30_c00438{left:306.941053pt;}
.xc_c00438{left:309.884653pt;}
.x1d_c00438{left:317.241453pt;}
.x60_c00438{left:318.191853pt;}
.x89_c00438{left:322.059453pt;}
.xd_c00438{left:327.075453pt;}
.x3c_c00438{left:329.508653pt;}
.x55_c00438{left:337.155853pt;}
.x4a_c00438{left:343.399453pt;}
.x1e_c00438{left:346.272653pt;}
.x8a_c00438{left:347.839053pt;}
.x66_c00438{left:349.167853pt;}
.xe_c00438{left:355.715053pt;}
.x29_c00438{left:356.859053pt;}
.x7c_c00438{left:360.929053pt;}
.x31_c00438{left:366.213453pt;}
.x80_c00438{left:375.911053pt;}
.x78_c00438{left:376.967053pt;}
.x79_c00438{left:382.801453pt;}
.x77_c00438{left:384.579053pt;}
.xf_c00438{left:386.251053pt;}
.x6f_c00438{left:390.466253pt;}
.x32_c00438{left:394.316253pt;}
.x56_c00438{left:395.640653pt;}
.x33_c00438{left:398.760253pt;}
.x6a_c00438{left:399.829453pt;}
.x84_c00438{left:402.003053pt;}
.x67_c00438{left:404.942253pt;}
.x99_c00438{left:413.407853pt;}
.x1f_c00438{left:415.176653pt;}
.x96_c00438{left:416.562653pt;}
.x4b_c00438{left:419.752653pt;}
.x46_c00438{left:423.787453pt;}
.x70_c00438{left:424.966653pt;}
.x10_c00438{left:427.131453pt;}
.x2a_c00438{left:434.321053pt;}
.x20_c00438{left:444.903053pt;}
.x47_c00438{left:453.007853pt;}
.x34_c00438{left:454.363053pt;}
.x4c_c00438{left:463.299453pt;}
.x11_c00438{left:466.845853pt;}
.x8b_c00438{left:472.649453pt;}
.x85_c00438{left:474.237853pt;}
.x81_c00438{left:475.487453pt;}
.x4d_c00438{left:482.153453pt;}
.x2b_c00438{left:483.407453pt;}
.x75_c00438{left:492.726653pt;}
.x12_c00438{left:494.020253pt;}
.x7d_c00438{left:495.212653pt;}
.x8c_c00438{left:502.798253pt;}
.x57_c00438{left:503.810253pt;}
.x13_c00438{left:507.053053pt;}
.x86_c00438{left:512.069053pt;}
.x4e_c00438{left:513.015053pt;}
.x14_c00438{left:521.436653pt;}
.x8d_c00438{left:522.844653pt;}
.x35_c00438{left:527.464653pt;}
.x36_c00438{left:532.850253pt;}
.x6b_c00438{left:534.966653pt;}
.x4f_c00438{left:540.770253pt;}
.x61_c00438{left:542.481853pt;}
.x58_c00438{left:544.008653pt;}
.x21_c00438{left:551.418253pt;}
.x15_c00438{left:552.320253pt;}
.x37_c00438{left:554.212253pt;}
.x97_c00438{left:561.357853pt;}
.x62_c00438{left:562.484253pt;}
.x38_c00438{left:567.143853pt;}
.x48_c00438{left:569.915853pt;}
.x71_c00438{left:571.812253pt;}
.x8f_c00438{left:573.079453pt;}
.x68_c00438{left:580.687053pt;}
.x72_c00438{left:581.954253pt;}
.x49_c00438{left:584.972653pt;}
.x7e_c00438{left:586.072653pt;}
.x3d_c00438{left:588.329853pt;}
.x90_c00438{left:590.710253pt;}
.x22_c00438{left:591.656253pt;}
.x9f_c00438{left:593.992653pt;}
.x2_c00438{left:599.158253pt;}
.x23_c00438{left:601.081053pt;}
.x98_c00438{left:602.863053pt;}
.x59_c00438{left:610.620253pt;}
.x63_c00438{left:619.600653pt;}
.x3e_c00438{left:622.852253pt;}
.x8e_c00438{left:623.749853pt;}
.x24_c00438{left:629.126653pt;}
.x39_c00438{left:633.275853pt;}
.x3a_c00438{left:635.172253pt;}
.x5a_c00438{left:639.449053pt;}
.x25_c00438{left:641.341053pt;}
.x50_c00438{left:643.827053pt;}
.x91_c00438{left:648.706653pt;}
.x3f_c00438{left:652.961453pt;}
.x92_c00438{left:659.130253pt;}
.x93_c00438{left:669.633053pt;}
.x94_c00438{left:678.477053pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4380020868cf896e5c076022.woff2')format("woff");}.ff1_c00439{font-family:ff1_c00439;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00439;src:url('chunks/assets/font_e1113dd1671276df0e415d78.woff2')format("woff");}.ff2_c00439{font-family:ff2_c00439;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00439;src:url('chunks/assets/font_99e6f85bf1443e05b3a24317.woff2')format("woff");}.ff3_c00439{font-family:ff3_c00439;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00439;src:url('chunks/assets/font_55f418763591c80cbdb771a0.woff2')format("woff");}.ff4_c00439{font-family:ff4_c00439;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00439;src:url('chunks/assets/font_1723b14182237b816ac08f50.woff2')format("woff");}.ff5_c00439{font-family:ff5_c00439;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00439;src:url('chunks/assets/font_fde8f244c303ab29885122ee.woff2')format("woff");}.ff6_c00439{font-family:ff6_c00439;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4e_c00439{transform:matrix(0.072917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072917,0.000000,0.000000,0.250000,0,0);}
.m23_c00439{transform:matrix(0.084559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084559,0.000000,0.000000,0.250000,0,0);}
.m4c_c00439{transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);}
.m4_c00439{transform:matrix(0.103382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103382,0.000000,0.000000,0.250000,0,0);}
.m29_c00439{transform:matrix(0.120371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120371,0.000000,0.000000,0.250000,0,0);}
.m3d_c00439{transform:matrix(0.130894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130894,0.000000,0.000000,0.250000,0,0);}
.m22_c00439{transform:matrix(0.139705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139705,0.000000,0.000000,0.250000,0,0);}
.m28_c00439{transform:matrix(0.145834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145834,0.000000,0.000000,0.250000,0,0);}
.m2f_c00439{transform:matrix(0.148980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148980,0.000000,0.000000,0.250000,0,0);}
.m40_c00439{transform:matrix(0.155674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155674,0.000000,0.000000,0.250000,0,0);}
.m4f_c00439{transform:matrix(0.161538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161538,0.000000,0.000000,0.250000,0,0);}
.m13_c00439{transform:matrix(0.167327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167327,0.000000,0.000000,0.250000,0,0);}
.m17_c00439{transform:matrix(0.168847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168847,0.000000,0.000000,0.250000,0,0);}
.m2a_c00439{transform:matrix(0.182871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182871,0.000000,0.000000,0.250000,0,0);}
.m1e_c00439{transform:matrix(0.186272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186272,0.000000,0.000000,0.250000,0,0);}
.m4d_c00439{transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);}
.m1c_c00439{transform:matrix(0.208620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208620,0.000000,0.000000,0.250000,0,0);}
.ma_c00439{transform:matrix(0.214962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214962,0.000000,0.000000,0.250000,0,0);}
.mf_c00439{transform:matrix(0.215262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215262,0.000000,0.000000,0.250000,0,0);}
.m41_c00439{transform:matrix(0.216050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216050,0.000000,0.000000,0.250000,0,0);}
.m59_c00439{transform:matrix(0.242882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242882,0.000000,0.000000,0.250000,0,0);}
.m5a_c00439{transform:matrix(0.246327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246327,0.000000,0.000000,0.250000,0,0);}
.m0_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);}
.m33_c00439{transform:matrix(0.253814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253814,0.000000,0.000000,0.250000,0,0);}
.m31_c00439{transform:matrix(0.260272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260272,0.000000,0.000000,0.250000,0,0);}
.m56_c00439{transform:matrix(0.261505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261505,0.000000,0.000000,0.250000,0,0);}
.m1f_c00439{transform:matrix(0.266055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266055,0.000000,0.000000,0.250000,0,0);}
.m54_c00439{transform:matrix(0.267194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267194,0.000000,0.000000,0.250000,0,0);}
.m51_c00439{transform:matrix(0.268555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268555,0.000000,0.000000,0.250000,0,0);}
.m2e_c00439{transform:matrix(0.268638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268638,0.000000,0.000000,0.250000,0,0);}
.mb_c00439{transform:matrix(0.269324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269324,0.000000,0.000000,0.250000,0,0);}
.m2c_c00439{transform:matrix(0.270538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270538,0.000000,0.000000,0.250000,0,0);}
.m32_c00439{transform:matrix(0.271138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271138,0.000000,0.000000,0.250000,0,0);}
.m47_c00439{transform:matrix(0.272055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272055,0.000000,0.000000,0.250000,0,0);}
.m46_c00439{transform:matrix(0.275242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275242,0.000000,0.000000,0.250000,0,0);}
.m1_c00439{transform:matrix(0.275483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275483,0.000000,0.000000,0.250000,0,0);}
.m4a_c00439{transform:matrix(0.276473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276473,0.000000,0.000000,0.250000,0,0);}
.m55_c00439{transform:matrix(0.278346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278346,0.000000,0.000000,0.250000,0,0);}
.m20_c00439{transform:matrix(0.278831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278831,0.000000,0.000000,0.250000,0,0);}
.m1a_c00439{transform:matrix(0.280197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280197,0.000000,0.000000,0.250000,0,0);}
.m3b_c00439{transform:matrix(0.280270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280270,0.000000,0.000000,0.250000,0,0);}
.m2_c00439{transform:matrix(0.280655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280655,0.000000,0.000000,0.250000,0,0);}
.m26_c00439{transform:matrix(0.281718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281718,0.000000,0.000000,0.250000,0,0);}
.m19_c00439{transform:matrix(0.282532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282532,0.000000,0.000000,0.250000,0,0);}
.md_c00439{transform:matrix(0.283756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283756,0.000000,0.000000,0.250000,0,0);}
.m36_c00439{transform:matrix(0.283888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283888,0.000000,0.000000,0.250000,0,0);}
.m57_c00439{transform:matrix(0.284237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284237,0.000000,0.000000,0.250000,0,0);}
.m10_c00439{transform:matrix(0.285462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285462,0.000000,0.000000,0.250000,0,0);}
.m4b_c00439{transform:matrix(0.285667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285667,0.000000,0.000000,0.250000,0,0);}
.m1d_c00439{transform:matrix(0.287738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287738,0.000000,0.000000,0.250000,0,0);}
.m25_c00439{transform:matrix(0.289005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289005,0.000000,0.000000,0.250000,0,0);}
.m9_c00439{transform:matrix(0.289014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289014,0.000000,0.000000,0.250000,0,0);}
.m24_c00439{transform:matrix(0.293632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293632,0.000000,0.000000,0.250000,0,0);}
.m3a_c00439{transform:matrix(0.294486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294486,0.000000,0.000000,0.250000,0,0);}
.m7_c00439{transform:matrix(0.295884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295884,0.000000,0.000000,0.250000,0,0);}
.mc_c00439{transform:matrix(0.296101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296101,0.000000,0.000000,0.250000,0,0);}
.m42_c00439{transform:matrix(0.303122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303122,0.000000,0.000000,0.250000,0,0);}
.m1b_c00439{transform:matrix(0.308130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308130,0.000000,0.000000,0.250000,0,0);}
.m3c_c00439{transform:matrix(0.310023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310023,0.000000,0.000000,0.250000,0,0);}
.m21_c00439{transform:matrix(0.311872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311872,0.000000,0.000000,0.250000,0,0);}
.m2d_c00439{transform:matrix(0.313947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313947,0.000000,0.000000,0.250000,0,0);}
.m2b_c00439{transform:matrix(0.315242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315242,0.000000,0.000000,0.250000,0,0);}
.m6_c00439{transform:matrix(0.315940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315940,0.000000,0.000000,0.250000,0,0);}
.m30_c00439{transform:matrix(0.316157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316157,0.000000,0.000000,0.250000,0,0);}
.m53_c00439{transform:matrix(0.316834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316834,0.000000,0.000000,0.250000,0,0);}
.m12_c00439{transform:matrix(0.317133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317133,0.000000,0.000000,0.250000,0,0);}
.m45_c00439{transform:matrix(0.322208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322208,0.000000,0.000000,0.250000,0,0);}
.m38_c00439{transform:matrix(0.322693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322693,0.000000,0.000000,0.250000,0,0);}
.m14_c00439{transform:matrix(0.324038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324038,0.000000,0.000000,0.250000,0,0);}
.m5b_c00439{transform:matrix(0.324443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324443,0.000000,0.000000,0.250000,0,0);}
.m39_c00439{transform:matrix(0.328906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328906,0.000000,0.000000,0.250000,0,0);}
.m16_c00439{transform:matrix(0.334133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334133,0.000000,0.000000,0.250000,0,0);}
.m3_c00439{transform:matrix(0.339697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339697,0.000000,0.000000,0.250000,0,0);}
.m44_c00439{transform:matrix(0.339717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339717,0.000000,0.000000,0.250000,0,0);}
.me_c00439{transform:matrix(0.339984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339984,0.000000,0.000000,0.250000,0,0);}
.m8_c00439{transform:matrix(0.350203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350203,0.000000,0.000000,0.250000,0,0);}
.m58_c00439{transform:matrix(0.354564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354564,0.000000,0.000000,0.250000,0,0);}
.m27_c00439{transform:matrix(0.354951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354951,0.000000,0.000000,0.250000,0,0);}
.m3f_c00439{transform:matrix(0.360691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360691,0.000000,0.000000,0.250000,0,0);}
.m52_c00439{transform:matrix(0.361525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361525,0.000000,0.000000,0.250000,0,0);}
.m50_c00439{transform:matrix(0.362595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362595,0.000000,0.000000,0.250000,0,0);}
.m15_c00439{transform:matrix(0.367520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367520,0.000000,0.000000,0.250000,0,0);}
.m37_c00439{transform:matrix(0.369522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369522,0.000000,0.000000,0.250000,0,0);}
.m43_c00439{transform:matrix(0.378386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378386,0.000000,0.000000,0.250000,0,0);}
.m3e_c00439{transform:matrix(0.384248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384248,0.000000,0.000000,0.250000,0,0);}
.m34_c00439{transform:matrix(0.388182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388182,0.000000,0.000000,0.250000,0,0);}
.m5_c00439{transform:matrix(0.396788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396788,0.000000,0.000000,0.250000,0,0);}
.m49_c00439{transform:matrix(0.402572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402572,0.000000,0.000000,0.250000,0,0);}
.m48_c00439{transform:matrix(0.450814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450814,0.000000,0.000000,0.250000,0,0);}
.m18_c00439{transform:matrix(0.452316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452316,0.000000,0.000000,0.250000,0,0);}
.m35_c00439{transform:matrix(0.472358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472358,0.000000,0.000000,0.250000,0,0);}
.m11_c00439{transform:matrix(0.477444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477444,0.000000,0.000000,0.250000,0,0);}
.v0_c00439{vertical-align:0.000000px;}
.v1_c00439{vertical-align:18.532800px;}
.ls7_c00439{letter-spacing:-2.557177px;}
.ls3_c00439{letter-spacing:-2.529450px;}
.ls1a_c00439{letter-spacing:-2.321550px;}
.ls1d_c00439{letter-spacing:-2.252250px;}
.lsa_c00439{letter-spacing:-2.245327px;}
.ls6_c00439{letter-spacing:-2.038014px;}
.ls8_c00439{letter-spacing:-1.669437px;}
.ls17_c00439{letter-spacing:-1.330567px;}
.lsb_c00439{letter-spacing:-1.120185px;}
.ls5_c00439{letter-spacing:-0.679338px;}
.ls16_c00439{letter-spacing:-0.238491px;}
.lsf_c00439{letter-spacing:-0.122859px;}
.ls0_c00439{letter-spacing:0.000000px;}
.ls14_c00439{letter-spacing:2.316600px;}
.ls19_c00439{letter-spacing:2.326500px;}
.ls4_c00439{letter-spacing:2.465100px;}
.lsc_c00439{letter-spacing:2.478861px;}
.ls12_c00439{letter-spacing:2.484900px;}
.ls18_c00439{letter-spacing:2.613600px;}
.ls10_c00439{letter-spacing:2.905254px;}
.ls13_c00439{letter-spacing:3.098700px;}
.ls9_c00439{letter-spacing:3.207610px;}
.ls1c_c00439{letter-spacing:3.217500px;}
.ls2_c00439{letter-spacing:3.613500px;}
.ls1_c00439{letter-spacing:3.692700px;}
.ls1b_c00439{letter-spacing:3.742200px;}
.ls15_c00439{letter-spacing:3.940200px;}
.lsd_c00439{letter-spacing:48.470598px;}
.ls11_c00439{letter-spacing:49.896198px;}
.lse_c00439{letter-spacing:51.321798px;}
.sc__c00439{text-shadow:none;}
.sc0_c00439{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00439{-webkit-text-stroke:0px transparent;}
.sc0_c00439{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00439{word-spacing:-18.067500px;}
.ws2_c00439{word-spacing:-2.964060px;}
.ws1_c00439{word-spacing:-2.263041px;}
.ws3_c00439{word-spacing:0.000000px;}
._6_c00439{margin-left:-14.676948px;}
._d_c00439{margin-left:-8.311050px;}
._11_c00439{margin-left:-7.009518px;}
._c_c00439{margin-left:-1.408572px;}
._12_c00439{width:1.229580px;}
._4_c00439{width:4.191660px;}
._3_c00439{width:8.021970px;}
._9_c00439{width:9.250560px;}
._1_c00439{width:10.840500px;}
._5_c00439{width:12.647250px;}
._7_c00439{width:14.387868px;}
._0_c00439{width:22.463826px;}
._8_c00439{width:23.993640px;}
._a_c00439{width:25.366770px;}
._2_c00439{width:34.547832px;}
._f_c00439{width:40.541808px;}
._b_c00439{width:49.141620px;}
._e_c00439{width:182.892600px;}
._10_c00439{width:219.033937px;}
.fc0_c00439{color:transparent;}
.fs13_c00439{font-size:25.740000px;}
.fs18_c00439{font-size:37.620000px;}
.fs12_c00439{font-size:38.016198px;}
.fsf_c00439{font-size:46.332000px;}
.fs15_c00439{font-size:46.530000px;}
.fs7_c00439{font-size:48.470598px;}
.fs3_c00439{font-size:49.302000px;}
.fsd_c00439{font-size:49.698000px;}
.fsc_c00439{font-size:49.896198px;}
.fs10_c00439{font-size:50.688000px;}
.fs9_c00439{font-size:51.321798px;}
.fs14_c00439{font-size:52.272000px;}
.fs8_c00439{font-size:61.776198px;}
.fsb_c00439{font-size:61.974000px;}
.fs5_c00439{font-size:64.152198px;}
.fs19_c00439{font-size:64.350000px;}
.fsa_c00439{font-size:66.330000px;}
.fs6_c00439{font-size:66.924000px;}
.fse_c00439{font-size:67.122198px;}
.fs16_c00439{font-size:71.478000px;}
.fs2_c00439{font-size:72.270000px;}
.fs4_c00439{font-size:73.062198px;}
.fs1_c00439{font-size:73.854000px;}
.fs17_c00439{font-size:74.844000px;}
.fs0_c00439{font-size:75.636198px;}
.fs11_c00439{font-size:78.804000px;}
.y0_c00439{bottom:0.000000px;}
.y1_c00439{bottom:76.500000px;}
.y12_c00439{bottom:566.231535px;}
.y13_c00439{bottom:566.587935px;}
.y11_c00439{bottom:591.535935px;}
.yf_c00439{bottom:598.658985px;}
.y10_c00439{bottom:599.376735px;}
.ye_c00439{bottom:632.516985px;}
.ya_c00439{bottom:666.731385px;}
.yd_c00439{bottom:667.800585px;}
.yb_c00439{bottom:669.582585px;}
.yc_c00439{bottom:672.433785px;}
.y9_c00439{bottom:697.738185px;}
.y7_c00439{bottom:699.520185px;}
.y8_c00439{bottom:699.881535px;}
.y6_c00439{bottom:734.452335px;}
.y5_c00439{bottom:767.592585px;}
.y4_c00439{bottom:799.673535px;}
.y3_c00439{bottom:832.462335px;}
.y2_c00439{bottom:1051.999785px;}
.h13_c00439{height:26.846016px;}
.h8_c00439{height:32.281418px;}
.hb_c00439{height:33.230868px;}
.ha_c00439{height:34.180317px;}
.h19_c00439{height:39.236484px;}
.h12_c00439{height:39.649707px;}
.hf_c00439{height:48.322828px;}
.h5_c00439{height:48.387217px;}
.h15_c00439{height:48.529336px;}
.hc_c00439{height:48.775869px;}
.h10_c00439{height:52.866000px;}
.h14_c00439{height:54.518063px;}
.h9_c00439{height:60.629960px;}
.hd_c00439{height:64.636945px;}
.h17_c00439{height:65.099268px;}
.h7_c00439{height:66.908738px;}
.h1a_c00439{height:67.115039px;}
.h16_c00439{height:70.151748px;}
.h4_c00439{height:70.929053px;}
.h18_c00439{height:73.455293px;}
.h6_c00439{height:73.632996px;}
.h2_c00439{height:74.232792px;}
.h3_c00439{height:77.027414px;}
.h11_c00439{height:79.419656px;}
.he_c00439{height:88.539155px;}
.h1_c00439{height:1110.000000px;}
.h0_c00439{height:1263.000000px;}
.w1_c00439{width:775.500000px;}
.w0_c00439{width:892.500000px;}
.x0_c00439{left:0.000000px;}
.x1_c00439{left:58.500000px;}
.x43_c00439{left:91.532085px;}
.x4_c00439{left:92.809185px;}
.x15_c00439{left:93.848685px;}
.x30_c00439{left:115.554435px;}
.x5_c00439{left:126.261285px;}
.x31_c00439{left:137.705685px;}
.x44_c00439{left:147.462135px;}
.x16_c00439{left:158.584785px;}
.x6_c00439{left:169.553985px;}
.x3c_c00439{left:179.993535px;}
.x7_c00439{left:181.132035px;}
.x8_c00439{left:191.027085px;}
.x45_c00439{left:193.338735px;}
.x26_c00439{left:203.619885px;}
.x32_c00439{left:213.316935px;}
.x9_c00439{left:223.444635px;}
.x33_c00439{left:225.236535px;}
.x34_c00439{left:238.066935px;}
.x3d_c00439{left:247.135335px;}
.x17_c00439{left:249.649935px;}
.x50_c00439{left:256.951185px;}
.x35_c00439{left:258.381735px;}
.x18_c00439{left:268.677735px;}
.x3e_c00439{left:280.631985px;}
.x27_c00439{left:284.591985px;}
.xa_c00439{left:291.328935px;}
.x36_c00439{left:302.055585px;}
.x19_c00439{left:312.599085px;}
.x28_c00439{left:314.103885px;}
.xb_c00439{left:322.508985px;}
.x51_c00439{left:324.191985px;}
.x37_c00439{left:334.250385px;}
.x1a_c00439{left:335.873985px;}
.x29_c00439{left:345.308685px;}
.x4a_c00439{left:346.759035px;}
.x52_c00439{left:356.678835px;}
.xc_c00439{left:367.949985px;}
.x46_c00439{left:369.365685px;}
.x58_c00439{left:379.013235px;}
.x3f_c00439{left:390.695235px;}
.x59_c00439{left:411.326835px;}
.x38_c00439{left:412.846485px;}
.x1b_c00439{left:421.221885px;}
.x4b_c00439{left:423.320685px;}
.x53_c00439{left:424.602735px;}
.xd_c00439{left:433.656285px;}
.x2a_c00439{left:434.928435px;}
.x1c_c00439{left:444.506685px;}
.x40_c00439{left:447.630135px;}
.x54_c00439{left:456.960885px;}
.x4c_c00439{left:459.005235px;}
.x1d_c00439{left:466.826235px;}
.x2b_c00439{left:478.082535px;}
.x1e_c00439{left:488.630985px;}
.x55_c00439{left:489.804135px;}
.xe_c00439{left:500.179335px;}
.x2c_c00439{left:512.262285px;}
.xf_c00439{left:521.904885px;}
.x1f_c00439{left:533.680935px;}
.x10_c00439{left:544.407585px;}
.x11_c00439{left:564.742185px;}
.x39_c00439{left:566.737035px;}
.x2d_c00439{left:576.958785px;}
.x56_c00439{left:578.211135px;}
.x41_c00439{left:579.918885px;}
.x20_c00439{left:587.833935px;}
.x12_c00439{left:599.204085px;}
.x21_c00439{left:610.188135px;}
.x13_c00439{left:621.370185px;}
.x22_c00439{left:631.948335px;}
.x4d_c00439{left:633.378885px;}
.x2e_c00439{left:635.096535px;}
.x4e_c00439{left:644.511435px;}
.x23_c00439{left:653.159085px;}
.x3a_c00439{left:665.202435px;}
.x14_c00439{left:666.271635px;}
.x24_c00439{left:676.018185px;}
.x2_c00439{left:686.898285px;}
.x3b_c00439{left:699.015885px;}
.x57_c00439{left:708.658485px;}
.x47_c00439{left:711.336435px;}
.x3_c00439{left:713.459985px;}
.x25_c00439{left:719.375235px;}
.x42_c00439{left:731.047335px;}
.x48_c00439{left:737.576385px;}
.x49_c00439{left:738.818835px;}
.x2f_c00439{left:741.437385px;}
.x4f_c00439{left:752.842185px;}
@media print{
.v0_c00439{vertical-align:0.000000pt;}
.v1_c00439{vertical-align:16.473600pt;}
.ls7_c00439{letter-spacing:-2.273046pt;}
.ls3_c00439{letter-spacing:-2.248400pt;}
.ls1a_c00439{letter-spacing:-2.063600pt;}
.ls1d_c00439{letter-spacing:-2.002000pt;}
.lsa_c00439{letter-spacing:-1.995846pt;}
.ls6_c00439{letter-spacing:-1.811568pt;}
.ls8_c00439{letter-spacing:-1.483944pt;}
.ls17_c00439{letter-spacing:-1.182726pt;}
.lsb_c00439{letter-spacing:-0.995720pt;}
.ls5_c00439{letter-spacing:-0.603856pt;}
.ls16_c00439{letter-spacing:-0.211992pt;}
.lsf_c00439{letter-spacing:-0.109208pt;}
.ls0_c00439{letter-spacing:0.000000pt;}
.ls14_c00439{letter-spacing:2.059200pt;}
.ls19_c00439{letter-spacing:2.068000pt;}
.ls4_c00439{letter-spacing:2.191200pt;}
.lsc_c00439{letter-spacing:2.203432pt;}
.ls12_c00439{letter-spacing:2.208800pt;}
.ls18_c00439{letter-spacing:2.323200pt;}
.ls10_c00439{letter-spacing:2.582448pt;}
.ls13_c00439{letter-spacing:2.754400pt;}
.ls9_c00439{letter-spacing:2.851209pt;}
.ls1c_c00439{letter-spacing:2.860000pt;}
.ls2_c00439{letter-spacing:3.212000pt;}
.ls1_c00439{letter-spacing:3.282400pt;}
.ls1b_c00439{letter-spacing:3.326400pt;}
.ls15_c00439{letter-spacing:3.502400pt;}
.lsd_c00439{letter-spacing:43.084976pt;}
.ls11_c00439{letter-spacing:44.352176pt;}
.lse_c00439{letter-spacing:45.619376pt;}
.ws0_c00439{word-spacing:-16.060000pt;}
.ws2_c00439{word-spacing:-2.634720pt;}
.ws1_c00439{word-spacing:-2.011592pt;}
.ws3_c00439{word-spacing:0.000000pt;}
._6_c00439{margin-left:-13.046176pt;}
._d_c00439{margin-left:-7.387600pt;}
._11_c00439{margin-left:-6.230682pt;}
._c_c00439{margin-left:-1.252064pt;}
._12_c00439{width:1.092960pt;}
._4_c00439{width:3.725920pt;}
._3_c00439{width:7.130640pt;}
._9_c00439{width:8.222720pt;}
._1_c00439{width:9.636000pt;}
._5_c00439{width:11.242000pt;}
._7_c00439{width:12.789216pt;}
._0_c00439{width:19.967845pt;}
._8_c00439{width:21.327680pt;}
._a_c00439{width:22.548240pt;}
._2_c00439{width:30.709184pt;}
._f_c00439{width:36.037162pt;}
._b_c00439{width:43.681440pt;}
._e_c00439{width:162.571200pt;}
._10_c00439{width:194.696833pt;}
.fs13_c00439{font-size:22.880000pt;}
.fs18_c00439{font-size:33.440000pt;}
.fs12_c00439{font-size:33.792176pt;}
.fsf_c00439{font-size:41.184000pt;}
.fs15_c00439{font-size:41.360000pt;}
.fs7_c00439{font-size:43.084976pt;}
.fs3_c00439{font-size:43.824000pt;}
.fsd_c00439{font-size:44.176000pt;}
.fsc_c00439{font-size:44.352176pt;}
.fs10_c00439{font-size:45.056000pt;}
.fs9_c00439{font-size:45.619376pt;}
.fs14_c00439{font-size:46.464000pt;}
.fs8_c00439{font-size:54.912176pt;}
.fsb_c00439{font-size:55.088000pt;}
.fs5_c00439{font-size:57.024176pt;}
.fs19_c00439{font-size:57.200000pt;}
.fsa_c00439{font-size:58.960000pt;}
.fs6_c00439{font-size:59.488000pt;}
.fse_c00439{font-size:59.664176pt;}
.fs16_c00439{font-size:63.536000pt;}
.fs2_c00439{font-size:64.240000pt;}
.fs4_c00439{font-size:64.944176pt;}
.fs1_c00439{font-size:65.648000pt;}
.fs17_c00439{font-size:66.528000pt;}
.fs0_c00439{font-size:67.232176pt;}
.fs11_c00439{font-size:70.048000pt;}
.y0_c00439{bottom:0.000000pt;}
.y1_c00439{bottom:68.000000pt;}
.y12_c00439{bottom:503.316920pt;}
.y13_c00439{bottom:503.633720pt;}
.y11_c00439{bottom:525.809720pt;}
.yf_c00439{bottom:532.141320pt;}
.y10_c00439{bottom:532.779320pt;}
.ye_c00439{bottom:562.237320pt;}
.ya_c00439{bottom:592.650120pt;}
.yd_c00439{bottom:593.600520pt;}
.yb_c00439{bottom:595.184520pt;}
.yc_c00439{bottom:597.718920pt;}
.y9_c00439{bottom:620.211720pt;}
.y7_c00439{bottom:621.795720pt;}
.y8_c00439{bottom:622.116920pt;}
.y6_c00439{bottom:652.846520pt;}
.y5_c00439{bottom:682.304520pt;}
.y4_c00439{bottom:710.820920pt;}
.y3_c00439{bottom:739.966520pt;}
.y2_c00439{bottom:935.110920pt;}
.h13_c00439{height:23.863125pt;}
.h8_c00439{height:28.694594pt;}
.hb_c00439{height:29.538549pt;}
.ha_c00439{height:30.382504pt;}
.h19_c00439{height:34.876875pt;}
.h12_c00439{height:35.244184pt;}
.hf_c00439{height:42.953625pt;}
.h5_c00439{height:43.010859pt;}
.h15_c00439{height:43.137188pt;}
.hc_c00439{height:43.356328pt;}
.h10_c00439{height:46.992000pt;}
.h14_c00439{height:48.460500pt;}
.h9_c00439{height:53.893298pt;}
.hd_c00439{height:57.455063pt;}
.h17_c00439{height:57.866016pt;}
.h7_c00439{height:59.474434pt;}
.h1a_c00439{height:59.657812pt;}
.h16_c00439{height:62.357109pt;}
.h4_c00439{height:63.048047pt;}
.h18_c00439{height:65.293594pt;}
.h6_c00439{height:65.451552pt;}
.h2_c00439{height:65.984704pt;}
.h3_c00439{height:68.468813pt;}
.h11_c00439{height:70.595250pt;}
.he_c00439{height:78.701471pt;}
.h1_c00439{height:986.666667pt;}
.h0_c00439{height:1122.666667pt;}
.w1_c00439{width:689.333333pt;}
.w0_c00439{width:793.333333pt;}
.x0_c00439{left:0.000000pt;}
.x1_c00439{left:52.000000pt;}
.x43_c00439{left:81.361853pt;}
.x4_c00439{left:82.497053pt;}
.x15_c00439{left:83.421053pt;}
.x30_c00439{left:102.715053pt;}
.x5_c00439{left:112.232253pt;}
.x31_c00439{left:122.405053pt;}
.x44_c00439{left:131.077453pt;}
.x16_c00439{left:140.964253pt;}
.x6_c00439{left:150.714653pt;}
.x3c_c00439{left:159.994253pt;}
.x7_c00439{left:161.006253pt;}
.x8_c00439{left:169.801853pt;}
.x45_c00439{left:171.856653pt;}
.x26_c00439{left:180.995453pt;}
.x32_c00439{left:189.615053pt;}
.x9_c00439{left:198.617453pt;}
.x33_c00439{left:200.210253pt;}
.x34_c00439{left:211.615053pt;}
.x3d_c00439{left:219.675853pt;}
.x17_c00439{left:221.911053pt;}
.x50_c00439{left:228.401053pt;}
.x35_c00439{left:229.672653pt;}
.x18_c00439{left:238.824653pt;}
.x3e_c00439{left:249.450653pt;}
.x27_c00439{left:252.970653pt;}
.xa_c00439{left:258.959053pt;}
.x36_c00439{left:268.493853pt;}
.x19_c00439{left:277.865853pt;}
.x28_c00439{left:279.203453pt;}
.xb_c00439{left:286.674653pt;}
.x51_c00439{left:288.170653pt;}
.x37_c00439{left:297.111453pt;}
.x1a_c00439{left:298.554653pt;}
.x29_c00439{left:306.941053pt;}
.x4a_c00439{left:308.230253pt;}
.x52_c00439{left:317.047853pt;}
.xc_c00439{left:327.066653pt;}
.x46_c00439{left:328.325053pt;}
.x58_c00439{left:336.900653pt;}
.x3f_c00439{left:347.284653pt;}
.x59_c00439{left:365.623853pt;}
.x38_c00439{left:366.974653pt;}
.x1b_c00439{left:374.419453pt;}
.x4b_c00439{left:376.285053pt;}
.x53_c00439{left:377.424653pt;}
.xd_c00439{left:385.472253pt;}
.x2a_c00439{left:386.603053pt;}
.x1c_c00439{left:395.117053pt;}
.x40_c00439{left:397.893453pt;}
.x54_c00439{left:406.187453pt;}
.x4c_c00439{left:408.004653pt;}
.x1d_c00439{left:414.956653pt;}
.x2b_c00439{left:424.962253pt;}
.x1e_c00439{left:434.338653pt;}
.x55_c00439{left:435.381453pt;}
.xe_c00439{left:444.603853pt;}
.x2c_c00439{left:455.344253pt;}
.xf_c00439{left:463.915453pt;}
.x1f_c00439{left:474.383053pt;}
.x10_c00439{left:483.917853pt;}
.x11_c00439{left:501.993053pt;}
.x39_c00439{left:503.766253pt;}
.x2d_c00439{left:512.852253pt;}
.x56_c00439{left:513.965453pt;}
.x41_c00439{left:515.483453pt;}
.x20_c00439{left:522.519053pt;}
.x12_c00439{left:532.625853pt;}
.x21_c00439{left:542.389453pt;}
.x13_c00439{left:552.329053pt;}
.x22_c00439{left:561.731853pt;}
.x4d_c00439{left:563.003453pt;}
.x2e_c00439{left:564.530253pt;}
.x4e_c00439{left:572.899053pt;}
.x23_c00439{left:580.585853pt;}
.x3a_c00439{left:591.291053pt;}
.x14_c00439{left:592.241453pt;}
.x24_c00439{left:600.905053pt;}
.x2_c00439{left:610.576253pt;}
.x3b_c00439{left:621.347453pt;}
.x57_c00439{left:629.918653pt;}
.x47_c00439{left:632.299053pt;}
.x3_c00439{left:634.186653pt;}
.x25_c00439{left:639.444653pt;}
.x42_c00439{left:649.819853pt;}
.x48_c00439{left:655.623453pt;}
.x49_c00439{left:656.727853pt;}
.x2f_c00439{left:659.055453pt;}
.x4f_c00439{left:669.193053pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_73a619632fa04343468e2439.woff2')format("woff");}.ff1_c00440{font-family:ff1_c00440;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00440;src:url('chunks/assets/font_bf8e79637015290d5f69b795.woff2')format("woff");}.ff2_c00440{font-family:ff2_c00440;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00440;src:url('chunks/assets/font_16dadd950d0ec42dfe9c18d0.woff2')format("woff");}.ff3_c00440{font-family:ff3_c00440;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00440;src:url('chunks/assets/font_b1d6ed54b39c1a4d6516fb3f.woff2')format("woff");}.ff4_c00440{font-family:ff4_c00440;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00440;src:url('chunks/assets/font_6cb4febfc80aa0b283ba5095.woff2')format("woff");}.ff5_c00440{font-family:ff5_c00440;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5_c00440{transform:matrix(0.121915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121915,0.000000,0.000000,0.250000,0,0);}
.m2_c00440{transform:matrix(0.126550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126550,0.000000,0.000000,0.250000,0,0);}
.m0_c00440{transform:matrix(0.195237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195237,0.000000,0.000000,0.250000,0,0);}
.m8_c00440{transform:matrix(0.235404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235404,0.000000,0.000000,0.250000,0,0);}
.ma_c00440{transform:matrix(0.235894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235894,0.000000,0.000000,0.250000,0,0);}
.m9_c00440{transform:matrix(0.241674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241674,0.000000,0.000000,0.250000,0,0);}
.m6_c00440{transform:matrix(0.249462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249462,0.000000,0.000000,0.250000,0,0);}
.m1_c00440{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m7_c00440{transform:matrix(0.259304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259304,0.000000,0.000000,0.250000,0,0);}
.m4_c00440{transform:matrix(0.296694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296694,0.000000,0.000000,0.250000,0,0);}
.m10_c00440{transform:matrix(0.303267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303267,0.000000,0.000000,0.250000,0,0);}
.m3_c00440{transform:matrix(0.422586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422586,0.000000,0.000000,0.250000,0,0);}
.mc_c00440{transform:matrix(0.561286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561286,0.000000,0.000000,0.250000,0,0);}
.md_c00440{transform:matrix(0.791740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.791740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.791740,0.000000,0.000000,0.250000,0,0);}
.me_c00440{transform:matrix(0.949310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.949310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.949310,0.000000,0.000000,0.250000,0,0);}
.mb_c00440{transform:matrix(1.353118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.353118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.353118,0.000000,0.000000,0.250000,0,0);}
.mf_c00440{transform:matrix(6.575117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(6.575117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(6.575117,0.000000,0.000000,0.250000,0,0);}
.v0_c00440{vertical-align:0.000000px;}
.ls3_c00440{letter-spacing:-4.656967px;}
.ls6_c00440{letter-spacing:-2.411640px;}
.ls5_c00440{letter-spacing:-1.081080px;}
.ls2_c00440{letter-spacing:0.000000px;}
.ls9_c00440{letter-spacing:0.326710px;}
.lsa_c00440{letter-spacing:0.544510px;}
.ls4_c00440{letter-spacing:0.801900px;}
.ls0_c00440{letter-spacing:0.930204px;}
.ls8_c00440{letter-spacing:3.004214px;}
.ls7_c00440{letter-spacing:3.445200px;}
.ls1_c00440{letter-spacing:49.896198px;}
.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;}
._1_c00440{width:31.769100px;}
._0_c00440{width:34.568820px;}
.fc0_c00440{color:transparent;}
.fs8_c00440{font-size:6.534198px;}
.fs9_c00440{font-size:10.890198px;}
.fs4_c00440{font-size:16.038000px;}
.fs6_c00440{font-size:22.176000px;}
.fs5_c00440{font-size:30.888000px;}
.fs1_c00440{font-size:31.284000px;}
.fs0_c00440{font-size:49.896198px;}
.fs7_c00440{font-size:68.904000px;}
.fs3_c00440{font-size:75.240000px;}
.fs2_c00440{font-size:133.056198px;}
.y0_c00440{bottom:0.000000px;}
.y1_c00440{bottom:76.500000px;}
.y9_c00440{bottom:294.649785px;}
.y5_c00440{bottom:296.788185px;}
.y4_c00440{bottom:297.500985px;}
.y2_c00440{bottom:297.862335px;}
.y8_c00440{bottom:298.213785px;}
.y3_c00440{bottom:304.633935px;}
.y7_c00440{bottom:701.303670px;}
.y6_c00440{bottom:1090.847385px;}
.ha_c00440{height:6.585246px;}
.hb_c00440{height:11.358136px;}
.h6_c00440{height:16.163297px;}
.h8_c00440{height:23.128875px;}
.h3_c00440{height:30.703535px;}
.h7_c00440{height:31.129313px;}
.h2_c00440{height:33.230868px;}
.h9_c00440{height:67.625508px;}
.h5_c00440{height:78.472969px;}
.h4_c00440{height:138.773457px;}
.h1_c00440{height:1110.000000px;}
.h0_c00440{height:1263.000000px;}
.w1_c00440{width:733.500000px;}
.w0_c00440{width:892.500000px;}
.x0_c00440{left:0.000000px;}
.x1_c00440{left:79.500000px;}
.x2_c00440{left:257.696535px;}
.x3_c00440{left:313.220685px;}
.x4_c00440{left:315.685785px;}
.x6_c00440{left:325.348185px;}
.x5_c00440{left:328.001385px;}
.x7_c00440{left:331.020885px;}
.x8_c00440{left:332.817735px;}
.xb_c00440{left:346.860885px;}
.x11_c00440{left:359.958585px;}
.x12_c00440{left:363.522585px;}
.x13_c00440{left:419.383335px;}
.xc_c00440{left:424.734285px;}
.x14_c00440{left:435.188685px;}
.x15_c00440{left:442.851285px;}
.xa_c00440{left:445.430235px;}
.xd_c00440{left:480.629685px;}
.x9_c00440{left:497.821035px;}
.x16_c00440{left:516.106335px;}
.xe_c00440{left:535.584585px;}
.xf_c00440{left:568.724835px;}
.x17_c00440{left:579.837585px;}
.x10_c00440{left:666.804135px;}
@media print{
.v0_c00440{vertical-align:0.000000pt;}
.ls3_c00440{letter-spacing:-4.139526pt;}
.ls6_c00440{letter-spacing:-2.143680pt;}
.ls5_c00440{letter-spacing:-0.960960pt;}
.ls2_c00440{letter-spacing:0.000000pt;}
.ls9_c00440{letter-spacing:0.290409pt;}
.lsa_c00440{letter-spacing:0.484009pt;}
.ls4_c00440{letter-spacing:0.712800pt;}
.ls0_c00440{letter-spacing:0.826848pt;}
.ls8_c00440{letter-spacing:2.670413pt;}
.ls7_c00440{letter-spacing:3.062400pt;}
.ls1_c00440{letter-spacing:44.352176pt;}
.ws0_c00440{word-spacing:0.000000pt;}
._1_c00440{width:28.239200pt;}
._0_c00440{width:30.727840pt;}
.fs8_c00440{font-size:5.808176pt;}
.fs9_c00440{font-size:9.680176pt;}
.fs4_c00440{font-size:14.256000pt;}
.fs6_c00440{font-size:19.712000pt;}
.fs5_c00440{font-size:27.456000pt;}
.fs1_c00440{font-size:27.808000pt;}
.fs0_c00440{font-size:44.352176pt;}
.fs7_c00440{font-size:61.248000pt;}
.fs3_c00440{font-size:66.880000pt;}
.fs2_c00440{font-size:118.272176pt;}
.y0_c00440{bottom:0.000000pt;}
.y1_c00440{bottom:68.000000pt;}
.y9_c00440{bottom:261.910920pt;}
.y5_c00440{bottom:263.811720pt;}
.y4_c00440{bottom:264.445320pt;}
.y2_c00440{bottom:264.766520pt;}
.y8_c00440{bottom:265.078920pt;}
.y3_c00440{bottom:270.785720pt;}
.y7_c00440{bottom:623.381040pt;}
.y6_c00440{bottom:969.642120pt;}
.ha_c00440{height:5.853552pt;}
.hb_c00440{height:10.096121pt;}
.h6_c00440{height:14.367375pt;}
.h8_c00440{height:20.559000pt;}
.h3_c00440{height:27.292031pt;}
.h7_c00440{height:27.670500pt;}
.h2_c00440{height:29.538549pt;}
.h9_c00440{height:60.111562pt;}
.h5_c00440{height:69.753750pt;}
.h4_c00440{height:123.354184pt;}
.h1_c00440{height:986.666667pt;}
.h0_c00440{height:1122.666667pt;}
.w1_c00440{width:652.000000pt;}
.w0_c00440{width:793.333333pt;}
.x0_c00440{left:0.000000pt;}
.x1_c00440{left:70.666667pt;}
.x2_c00440{left:229.063587pt;}
.x3_c00440{left:278.418387pt;}
.x4_c00440{left:280.609587pt;}
.x6_c00440{left:289.198387pt;}
.x5_c00440{left:291.556787pt;}
.x7_c00440{left:294.240787pt;}
.x8_c00440{left:295.837987pt;}
.xb_c00440{left:308.320787pt;}
.x11_c00440{left:319.963187pt;}
.x12_c00440{left:323.131187pt;}
.x13_c00440{left:372.785187pt;}
.xc_c00440{left:377.541587pt;}
.x14_c00440{left:386.834387pt;}
.x15_c00440{left:393.645587pt;}
.xa_c00440{left:395.937987pt;}
.xd_c00440{left:427.226387pt;}
.x9_c00440{left:442.507587pt;}
.x16_c00440{left:458.761187pt;}
.xe_c00440{left:476.075187pt;}
.xf_c00440{left:505.533187pt;}
.x17_c00440{left:515.411187pt;}
.x10_c00440{left:592.714787pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_70add404c6b00117aebd19c4.woff2')format("woff");}.ff1_c00441{font-family:ff1_c00441;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00441;src:url('chunks/assets/font_0782d495a8083cf494d71e3e.woff2')format("woff");}.ff2_c00441{font-family:ff2_c00441;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2f_c00441{transform:matrix(0.192209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192209,0.000000,0.000000,0.250000,0,0);}
.m3_c00441{transform:matrix(0.210305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210305,0.000000,0.000000,0.250000,0,0);}
.m14_c00441{transform:matrix(0.214898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214898,0.000000,0.000000,0.250000,0,0);}
.m2_c00441{transform:matrix(0.225495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225495,0.000000,0.000000,0.250000,0,0);}
.m42_c00441{transform:matrix(0.232223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232223,0.000000,0.000000,0.250000,0,0);}
.m4_c00441{transform:matrix(0.238171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238171,0.000000,0.000000,0.250000,0,0);}
.m0_c00441{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m32_c00441{transform:matrix(0.251552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251552,0.000000,0.000000,0.250000,0,0);}
.m33_c00441{transform:matrix(0.253560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253560,0.000000,0.000000,0.250000,0,0);}
.mc_c00441{transform:matrix(0.257338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257338,0.000000,0.000000,0.250000,0,0);}
.m25_c00441{transform:matrix(0.258587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258587,0.000000,0.000000,0.250000,0,0);}
.m57_c00441{transform:matrix(0.259128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259128,0.000000,0.000000,0.250000,0,0);}
.m48_c00441{transform:matrix(0.260308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260308,0.000000,0.000000,0.250000,0,0);}
.m64_c00441{transform:matrix(0.261448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261448,0.000000,0.000000,0.250000,0,0);}
.m72_c00441{transform:matrix(0.262233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262233,0.000000,0.000000,0.250000,0,0);}
.m37_c00441{transform:matrix(0.263376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263376,0.000000,0.000000,0.250000,0,0);}
.m6b_c00441{transform:matrix(0.264013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264013,0.000000,0.000000,0.250000,0,0);}
.m1_c00441{transform:matrix(0.266098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266098,0.000000,0.000000,0.250000,0,0);}
.m17_c00441{transform:matrix(0.267450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267450,0.000000,0.000000,0.250000,0,0);}
.m41_c00441{transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);}
.m45_c00441{transform:matrix(0.268726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268726,0.000000,0.000000,0.250000,0,0);}
.m19_c00441{transform:matrix(0.269417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269417,0.000000,0.000000,0.250000,0,0);}
.m65_c00441{transform:matrix(0.269728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269728,0.000000,0.000000,0.250000,0,0);}
.m6a_c00441{transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);}
.m8_c00441{transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);}
.m2e_c00441{transform:matrix(0.272274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272274,0.000000,0.000000,0.250000,0,0);}
.m74_c00441{transform:matrix(0.272842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272842,0.000000,0.000000,0.250000,0,0);}
.md_c00441{transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);}
.m10_c00441{transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);}
.m71_c00441{transform:matrix(0.278463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278463,0.000000,0.000000,0.250000,0,0);}
.m5b_c00441{transform:matrix(0.279789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279789,0.000000,0.000000,0.250000,0,0);}
.m4b_c00441{transform:matrix(0.280349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280349,0.000000,0.000000,0.250000,0,0);}
.m73_c00441{transform:matrix(0.280663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280663,0.000000,0.000000,0.250000,0,0);}
.m69_c00441{transform:matrix(0.281548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281548,0.000000,0.000000,0.250000,0,0);}
.m23_c00441{transform:matrix(0.283124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283124,0.000000,0.000000,0.250000,0,0);}
.m3e_c00441{transform:matrix(0.284330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284330,0.000000,0.000000,0.250000,0,0);}
.m38_c00441{transform:matrix(0.286836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286836,0.000000,0.000000,0.250000,0,0);}
.m63_c00441{transform:matrix(0.288781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288781,0.000000,0.000000,0.250000,0,0);}
.m66_c00441{transform:matrix(0.289035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289035,0.000000,0.000000,0.250000,0,0);}
.m18_c00441{transform:matrix(0.291495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291495,0.000000,0.000000,0.250000,0,0);}
.m4a_c00441{transform:matrix(0.291735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291735,0.000000,0.000000,0.250000,0,0);}
.m15_c00441{transform:matrix(0.292016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292016,0.000000,0.000000,0.250000,0,0);}
.m58_c00441{transform:matrix(0.292385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292385,0.000000,0.000000,0.250000,0,0);}
.m49_c00441{transform:matrix(0.293280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293280,0.000000,0.000000,0.250000,0,0);}
.m46_c00441{transform:matrix(0.293531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293531,0.000000,0.000000,0.250000,0,0);}
.m3a_c00441{transform:matrix(0.293938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293938,0.000000,0.000000,0.250000,0,0);}
.m36_c00441{transform:matrix(0.294509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294509,0.000000,0.000000,0.250000,0,0);}
.m6d_c00441{transform:matrix(0.294787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294787,0.000000,0.000000,0.250000,0,0);}
.m62_c00441{transform:matrix(0.295037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295037,0.000000,0.000000,0.250000,0,0);}
.m4f_c00441{transform:matrix(0.296335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296335,0.000000,0.000000,0.250000,0,0);}
.me_c00441{transform:matrix(0.296624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296624,0.000000,0.000000,0.250000,0,0);}
.m61_c00441{transform:matrix(0.297351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297351,0.000000,0.000000,0.250000,0,0);}
.m3b_c00441{transform:matrix(0.297652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297652,0.000000,0.000000,0.250000,0,0);}
.m2b_c00441{transform:matrix(0.297834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297834,0.000000,0.000000,0.250000,0,0);}
.m34_c00441{transform:matrix(0.299623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299623,0.000000,0.000000,0.250000,0,0);}
.m30_c00441{transform:matrix(0.300441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300441,0.000000,0.000000,0.250000,0,0);}
.m54_c00441{transform:matrix(0.303420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303420,0.000000,0.000000,0.250000,0,0);}
.ma_c00441{transform:matrix(0.303672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303672,0.000000,0.000000,0.250000,0,0);}
.m5f_c00441{transform:matrix(0.304113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304113,0.000000,0.000000,0.250000,0,0);}
.m59_c00441{transform:matrix(0.304713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304713,0.000000,0.000000,0.250000,0,0);}
.m5_c00441{transform:matrix(0.306031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306031,0.000000,0.000000,0.250000,0,0);}
.m53_c00441{transform:matrix(0.308201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308201,0.000000,0.000000,0.250000,0,0);}
.m20_c00441{transform:matrix(0.308567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308567,0.000000,0.000000,0.250000,0,0);}
.m47_c00441{transform:matrix(0.310777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310777,0.000000,0.000000,0.250000,0,0);}
.m6e_c00441{transform:matrix(0.311160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311160,0.000000,0.000000,0.250000,0,0);}
.m75_c00441{transform:matrix(0.313677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313677,0.000000,0.000000,0.250000,0,0);}
.m43_c00441{transform:matrix(0.314012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314012,0.000000,0.000000,0.250000,0,0);}
.m27_c00441{transform:matrix(0.314718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314718,0.000000,0.000000,0.250000,0,0);}
.m1d_c00441{transform:matrix(0.314985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314985,0.000000,0.000000,0.250000,0,0);}
.mb_c00441{transform:matrix(0.316157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316157,0.000000,0.000000,0.250000,0,0);}
.m5e_c00441{transform:matrix(0.316292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316292,0.000000,0.000000,0.250000,0,0);}
.m67_c00441{transform:matrix(0.316716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316716,0.000000,0.000000,0.250000,0,0);}
.m1a_c00441{transform:matrix(0.316946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316946,0.000000,0.000000,0.250000,0,0);}
.m6_c00441{transform:matrix(0.319902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319902,0.000000,0.000000,0.250000,0,0);}
.mf_c00441{transform:matrix(0.320654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320654,0.000000,0.000000,0.250000,0,0);}
.m40_c00441{transform:matrix(0.322121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322121,0.000000,0.000000,0.250000,0,0);}
.m24_c00441{transform:matrix(0.322172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322172,0.000000,0.000000,0.250000,0,0);}
.m31_c00441{transform:matrix(0.322417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322417,0.000000,0.000000,0.250000,0,0);}
.m44_c00441{transform:matrix(0.322661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322661,0.000000,0.000000,0.250000,0,0);}
.m70_c00441{transform:matrix(0.323082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323082,0.000000,0.000000,0.250000,0,0);}
.m68_c00441{transform:matrix(0.323557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323557,0.000000,0.000000,0.250000,0,0);}
.m13_c00441{transform:matrix(0.324849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324849,0.000000,0.000000,0.250000,0,0);}
.m3d_c00441{transform:matrix(0.324931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324931,0.000000,0.000000,0.250000,0,0);}
.m5c_c00441{transform:matrix(0.326072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326072,0.000000,0.000000,0.250000,0,0);}
.m4e_c00441{transform:matrix(0.326155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326155,0.000000,0.000000,0.250000,0,0);}
.m5a_c00441{transform:matrix(0.326213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326213,0.000000,0.000000,0.250000,0,0);}
.m3f_c00441{transform:matrix(0.327131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327131,0.000000,0.000000,0.250000,0,0);}
.m2c_c00441{transform:matrix(0.327207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327207,0.000000,0.000000,0.250000,0,0);}
.m55_c00441{transform:matrix(0.327361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327361,0.000000,0.000000,0.250000,0,0);}
.m1e_c00441{transform:matrix(0.328938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328938,0.000000,0.000000,0.250000,0,0);}
.m1b_c00441{transform:matrix(0.329811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329811,0.000000,0.000000,0.250000,0,0);}
.m22_c00441{transform:matrix(0.332874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332874,0.000000,0.000000,0.250000,0,0);}
.m3c_c00441{transform:matrix(0.333614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333614,0.000000,0.000000,0.250000,0,0);}
.m12_c00441{transform:matrix(0.334260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334260,0.000000,0.000000,0.250000,0,0);}
.m2d_c00441{transform:matrix(0.335268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335268,0.000000,0.000000,0.250000,0,0);}
.m1f_c00441{transform:matrix(0.335295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335295,0.000000,0.000000,0.250000,0,0);}
.m4c_c00441{transform:matrix(0.335576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335576,0.000000,0.000000,0.250000,0,0);}
.m6f_c00441{transform:matrix(0.336817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336817,0.000000,0.000000,0.250000,0,0);}
.m56_c00441{transform:matrix(0.337225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337225,0.000000,0.000000,0.250000,0,0);}
.m29_c00441{transform:matrix(0.337534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337534,0.000000,0.000000,0.250000,0,0);}
.m52_c00441{transform:matrix(0.337665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337665,0.000000,0.000000,0.250000,0,0);}
.m11_c00441{transform:matrix(0.339155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339155,0.000000,0.000000,0.250000,0,0);}
.m1c_c00441{transform:matrix(0.339739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339739,0.000000,0.000000,0.250000,0,0);}
.m50_c00441{transform:matrix(0.341192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341192,0.000000,0.000000,0.250000,0,0);}
.m5d_c00441{transform:matrix(0.341476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341476,0.000000,0.000000,0.250000,0,0);}
.m2a_c00441{transform:matrix(0.341726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341726,0.000000,0.000000,0.250000,0,0);}
.m26_c00441{transform:matrix(0.347358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347358,0.000000,0.000000,0.250000,0,0);}
.m60_c00441{transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);}
.m51_c00441{transform:matrix(0.354724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354724,0.000000,0.000000,0.250000,0,0);}
.m21_c00441{transform:matrix(0.355252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355252,0.000000,0.000000,0.250000,0,0);}
.m4d_c00441{transform:matrix(0.365629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365629,0.000000,0.000000,0.250000,0,0);}
.m28_c00441{transform:matrix(0.369816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369816,0.000000,0.000000,0.250000,0,0);}
.m7_c00441{transform:matrix(0.373524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373524,0.000000,0.000000,0.250000,0,0);}
.m39_c00441{transform:matrix(0.376936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376936,0.000000,0.000000,0.250000,0,0);}
.m35_c00441{transform:matrix(0.387076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387076,0.000000,0.000000,0.250000,0,0);}
.m9_c00441{transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);}
.m16_c00441{transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);}
.m6c_c00441{transform:matrix(0.400127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400127,0.000000,0.000000,0.250000,0,0);}
.v0_c00441{vertical-align:0.000000px;}
.ls5_c00441{letter-spacing:-2.647267px;}
.ls3_c00441{letter-spacing:-2.314627px;}
.ls4_c00441{letter-spacing:-1.399867px;}
.ls1_c00441{letter-spacing:0.000000px;}
.ls7_c00441{letter-spacing:1.263125px;}
.ls8_c00441{letter-spacing:2.140504px;}
.ls6_c00441{letter-spacing:2.712600px;}
.ls0_c00441{letter-spacing:3.781810px;}
.ls9_c00441{letter-spacing:3.950110px;}
.ls2_c00441{letter-spacing:3.999610px;}
.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:-18.909050px;}
.ws2_c00441{word-spacing:0.000000px;}
.ws1_c00441{word-spacing:3.705257px;}
._1_c00441{margin-left:-17.008348px;}
._2_c00441{margin-left:-13.282632px;}
._3_c00441{margin-left:-9.108148px;}
._9_c00441{width:4.916489px;}
._8_c00441{width:6.504608px;}
._4_c00441{width:12.782583px;}
._6_c00441{width:20.421773px;}
._b_c00441{width:22.255051px;}
._a_c00441{width:27.304937px;}
._5_c00441{width:28.742417px;}
._7_c00441{width:38.709000px;}
._0_c00441{width:65.900736px;}
.fc0_c00441{color:transparent;}
.fs14_c00441{font-size:36.828000px;}
.fs2_c00441{font-size:38.808000px;}
.fs0_c00441{font-size:39.600000px;}
.fs8_c00441{font-size:39.996198px;}
.fs13_c00441{font-size:40.986198px;}
.fs3_c00441{font-size:43.164000px;}
.fs15_c00441{font-size:45.144000px;}
.fs12_c00441{font-size:50.688000px;}
.fse_c00441{font-size:52.866198px;}
.fs7_c00441{font-size:53.262000px;}
.fsc_c00441{font-size:54.252000px;}
.fsf_c00441{font-size:63.558000px;}
.fs6_c00441{font-size:64.548000px;}
.fs4_c00441{font-size:66.132198px;}
.fs9_c00441{font-size:66.528000px;}
.fs11_c00441{font-size:73.656198px;}
.fsb_c00441{font-size:74.844000px;}
.fsa_c00441{font-size:75.636198px;}
.fs5_c00441{font-size:76.032198px;}
.fsd_c00441{font-size:79.002198px;}
.fs10_c00441{font-size:79.200000px;}
.fs1_c00441{font-size:79.992198px;}
.y0_c00441{bottom:0.000000px;}
.y1_c00441{bottom:76.500000px;}
.y12_c00441{bottom:154.228185px;}
.y11_c00441{bottom:188.091135px;}
.y1a_c00441{bottom:208.044585px;}
.y10_c00441{bottom:220.879935px;}
.yf_c00441{bottom:252.955935px;}
.ye_c00441{bottom:285.031935px;}
.yd_c00441{bottom:317.107935px;}
.yc_c00441{bottom:349.178985px;}
.yb_c00441{bottom:380.898585px;}
.ya_c00441{bottom:412.974585px;}
.y19_c00441{bottom:441.130185px;}
.y9_c00441{bottom:445.050585px;}
.y18_c00441{bottom:460.380735px;}
.y17_c00441{bottom:468.221535px;}
.y8_c00441{bottom:477.844335px;}
.y16_c00441{bottom:491.026185px;}
.y7_c00441{bottom:509.920335px;}
.y15_c00441{bottom:534.868335px;}
.y14_c00441{bottom:538.075935px;}
.y13_c00441{bottom:551.262735px;}
.y6_c00441{bottom:602.227935px;}
.y5_c00441{bottom:604.722735px;}
.y4_c00441{bottom:905.519385px;}
.y3_c00441{bottom:1056.989385px;}
.y2_c00441{bottom:1088.352585px;}
.h12_c00441{height:36.144668px;}
.h7_c00441{height:39.254081px;}
.h11_c00441{height:40.225712px;}
.h2_c00441{height:41.301563px;}
.h4_c00441{height:45.018703px;}
.h13_c00441{height:47.083781px;}
.hc_c00441{height:51.885282px;}
.h10_c00441{height:52.866000px;}
.ha_c00441{height:53.245371px;}
.hd_c00441{height:66.289008px;}
.h5_c00441{height:68.973816px;}
.h8_c00441{height:69.386625px;}
.h9_c00441{height:74.232792px;}
.h6_c00441{height:74.621444px;}
.hf_c00441{height:76.821113px;}
.hb_c00441{height:77.536337px;}
.h3_c00441{height:78.507968px;}
.he_c00441{height:82.603125px;}
.h1_c00441{height:1110.000000px;}
.h0_c00441{height:1263.000000px;}
.w1_c00441{width:781.500000px;}
.w0_c00441{width:892.500000px;}
.x0_c00441{left:0.000000px;}
.x1_c00441{left:55.500000px;}
.x56_c00441{left:87.597135px;}
.x16_c00441{left:88.819785px;}
.x3b_c00441{left:90.443385px;}
.x2c_c00441{left:120.722535px;}
.x21_c00441{left:132.454035px;}
.x3c_c00441{left:142.086735px;}
.x9_c00441{left:143.126235px;}
.x17_c00441{left:144.249885px;}
.x5_c00441{left:153.699435px;}
.x36_c00441{left:163.337085px;}
.x2d_c00441{left:164.549835px;}
.x43_c00441{left:174.375585px;}
.xa_c00441{left:177.365385px;}
.x53_c00441{left:197.709885px;}
.x59_c00441{left:207.159435px;}
.xb_c00441{left:208.599885px;}
.x18_c00441{left:210.401685px;}
.x49_c00441{left:219.435435px;}
.x54_c00441{left:230.528385px;}
.xc_c00441{left:231.904485px;}
.x37_c00441{left:241.349085px;}
.x2e_c00441{left:242.878635px;}
.x3d_c00441{left:251.724285px;}
.x19_c00441{left:254.060685px;}
.x6_c00441{left:266.534685px;}
.x1a_c00441{left:273.459735px;}
.x3e_c00441{left:275.311035px;}
.x4a_c00441{left:284.854635px;}
.x22_c00441{left:286.809885px;}
.x44_c00441{left:288.517635px;}
.x5a_c00441{left:296.734635px;}
.x1b_c00441{left:299.922435px;}
.x55_c00441{left:307.733535px;}
.x38_c00441{left:308.936385px;}
.x7_c00441{left:310.624335px;}
.x23_c00441{left:318.890835px;}
.xd_c00441{left:319.935285px;}
.x2f_c00441{left:330.295635px;}
.x39_c00441{left:351.857835px;}
.x30_c00441{left:353.129985px;}
.x8_c00441{left:354.847635px;}
.x3f_c00441{left:362.138985px;}
.x24_c00441{left:363.465585px;}
.x31_c00441{left:374.781285px;}
.x1c_c00441{left:384.780285px;}
.x2_c00441{left:386.587035px;}
.x4b_c00441{left:397.897785px;}
.x5b_c00441{left:406.896885px;}
.x25_c00441{left:408.604635px;}
.x1d_c00441{left:418.707585px;}
.xe_c00441{left:419.747085px;}
.x32_c00441{left:428.488785px;}
.x4c_c00441{left:440.730135px;}
.xf_c00441{left:451.432035px;}
.x26_c00441{left:462.000285px;}
.x1e_c00441{left:463.490235px;}
.x27_c00441{left:474.256485px;}
.x10_c00441{left:484.418835px;}
.x1f_c00441{left:495.853335px;}
.x45_c00441{left:505.609785px;}
.x5c_c00441{left:516.702735px;}
.x28_c00441{left:527.726385px;}
.x57_c00441{left:537.537285px;}
.x20_c00441{left:538.967835px;}
.x33_c00441{left:550.219185px;}
.x5d_c00441{left:559.322235px;}
.x4d_c00441{left:570.727035px;}
.x29_c00441{left:572.593185px;}
.x40_c00441{left:574.350435px;}
.x11_c00441{left:584.022735px;}
.x46_c00441{left:593.497035px;}
.x2a_c00441{left:595.095885px;}
.x3a_c00441{left:605.777985px;}
.x4e_c00441{left:616.088835px;}
.x12_c00441{left:617.172885px;}
.x47_c00441{left:637.571835px;}
.x41_c00441{left:648.169785px;}
.x13_c00441{left:649.293435px;}
.x3_c00441{left:665.989785px;}
.x4f_c00441{left:669.771585px;}
.x2b_c00441{left:671.167485px;}
.x42_c00441{left:680.107185px;}
.x14_c00441{left:681.760485px;}
.x58_c00441{left:690.833835px;}
.x50_c00441{left:693.061335px;}
.x48_c00441{left:702.595035px;}
.x34_c00441{left:704.174085px;}
.x15_c00441{left:714.682935px;}
.x51_c00441{left:725.171985px;}
.x35_c00441{left:736.863885px;}
.x4_c00441{left:754.446285px;}
.x52_c00441{left:757.970685px;}
.x5e_c00441{left:778.765635px;}
.x5f_c00441{left:780.161535px;}
@media print{
.v0_c00441{vertical-align:0.000000pt;}
.ls5_c00441{letter-spacing:-2.353126pt;}
.ls3_c00441{letter-spacing:-2.057446pt;}
.ls4_c00441{letter-spacing:-1.244326pt;}
.ls1_c00441{letter-spacing:0.000000pt;}
.ls7_c00441{letter-spacing:1.122777pt;}
.ls8_c00441{letter-spacing:1.902671pt;}
.ls6_c00441{letter-spacing:2.411200pt;}
.ls0_c00441{letter-spacing:3.361609pt;}
.ls9_c00441{letter-spacing:3.511209pt;}
.ls2_c00441{letter-spacing:3.555209pt;}
.ws0_c00441{word-spacing:-16.808044pt;}
.ws2_c00441{word-spacing:0.000000pt;}
.ws1_c00441{word-spacing:3.293561pt;}
._1_c00441{margin-left:-15.118532pt;}
._2_c00441{margin-left:-11.806784pt;}
._3_c00441{margin-left:-8.096132pt;}
._9_c00441{width:4.370212pt;}
._8_c00441{width:5.781874pt;}
._4_c00441{width:11.362296pt;}
._6_c00441{width:18.152688pt;}
._b_c00441{width:19.782268pt;}
._a_c00441{width:24.271055pt;}
._5_c00441{width:25.548815pt;}
._7_c00441{width:34.408000pt;}
._0_c00441{width:58.578432pt;}
.fs14_c00441{font-size:32.736000pt;}
.fs2_c00441{font-size:34.496000pt;}
.fs0_c00441{font-size:35.200000pt;}
.fs8_c00441{font-size:35.552176pt;}
.fs13_c00441{font-size:36.432176pt;}
.fs3_c00441{font-size:38.368000pt;}
.fs15_c00441{font-size:40.128000pt;}
.fs12_c00441{font-size:45.056000pt;}
.fse_c00441{font-size:46.992176pt;}
.fs7_c00441{font-size:47.344000pt;}
.fsc_c00441{font-size:48.224000pt;}
.fsf_c00441{font-size:56.496000pt;}
.fs6_c00441{font-size:57.376000pt;}
.fs4_c00441{font-size:58.784176pt;}
.fs9_c00441{font-size:59.136000pt;}
.fs11_c00441{font-size:65.472176pt;}
.fsb_c00441{font-size:66.528000pt;}
.fsa_c00441{font-size:67.232176pt;}
.fs5_c00441{font-size:67.584176pt;}
.fsd_c00441{font-size:70.224176pt;}
.fs10_c00441{font-size:70.400000pt;}
.fs1_c00441{font-size:71.104176pt;}
.y0_c00441{bottom:0.000000pt;}
.y1_c00441{bottom:68.000000pt;}
.y12_c00441{bottom:137.091720pt;}
.y11_c00441{bottom:167.192120pt;}
.y1a_c00441{bottom:184.928520pt;}
.y10_c00441{bottom:196.337720pt;}
.yf_c00441{bottom:224.849720pt;}
.ye_c00441{bottom:253.361720pt;}
.yd_c00441{bottom:281.873720pt;}
.yc_c00441{bottom:310.381320pt;}
.yb_c00441{bottom:338.576520pt;}
.ya_c00441{bottom:367.088520pt;}
.y19_c00441{bottom:392.115720pt;}
.y9_c00441{bottom:395.600520pt;}
.y18_c00441{bottom:409.227320pt;}
.y17_c00441{bottom:416.196920pt;}
.y8_c00441{bottom:424.750520pt;}
.y16_c00441{bottom:436.467720pt;}
.y7_c00441{bottom:453.262520pt;}
.y15_c00441{bottom:475.438520pt;}
.y14_c00441{bottom:478.289720pt;}
.y13_c00441{bottom:490.011320pt;}
.y6_c00441{bottom:535.313720pt;}
.y5_c00441{bottom:537.531320pt;}
.y4_c00441{bottom:804.906120pt;}
.y3_c00441{bottom:939.546120pt;}
.y2_c00441{bottom:967.424520pt;}
.h12_c00441{height:32.128594pt;}
.h7_c00441{height:34.892516pt;}
.h11_c00441{height:35.756188pt;}
.h2_c00441{height:36.712500pt;}
.h4_c00441{height:40.016625pt;}
.h13_c00441{height:41.852250pt;}
.hc_c00441{height:46.120251pt;}
.h10_c00441{height:46.992000pt;}
.ha_c00441{height:47.329219pt;}
.hd_c00441{height:58.923563pt;}
.h5_c00441{height:61.310059pt;}
.h8_c00441{height:61.677000pt;}
.h9_c00441{height:65.984704pt;}
.h6_c00441{height:66.330173pt;}
.hf_c00441{height:68.285434pt;}
.hb_c00441{height:68.921188pt;}
.h3_c00441{height:69.784860pt;}
.he_c00441{height:73.425000pt;}
.h1_c00441{height:986.666667pt;}
.h0_c00441{height:1122.666667pt;}
.w1_c00441{width:694.666667pt;}
.w0_c00441{width:793.333333pt;}
.x0_c00441{left:0.000000pt;}
.x1_c00441{left:49.333333pt;}
.x56_c00441{left:77.864120pt;}
.x16_c00441{left:78.950920pt;}
.x3b_c00441{left:80.394120pt;}
.x2c_c00441{left:107.308920pt;}
.x21_c00441{left:117.736920pt;}
.x3c_c00441{left:126.299320pt;}
.x9_c00441{left:127.223320pt;}
.x17_c00441{left:128.222120pt;}
.x5_c00441{left:136.621720pt;}
.x36_c00441{left:145.188520pt;}
.x2d_c00441{left:146.266520pt;}
.x43_c00441{left:155.000520pt;}
.xa_c00441{left:157.658120pt;}
.x53_c00441{left:175.742120pt;}
.x59_c00441{left:184.141720pt;}
.xb_c00441{left:185.422120pt;}
.x18_c00441{left:187.023720pt;}
.x49_c00441{left:195.053720pt;}
.x54_c00441{left:204.914120pt;}
.xc_c00441{left:206.137320pt;}
.x37_c00441{left:214.532520pt;}
.x2e_c00441{left:215.892120pt;}
.x3d_c00441{left:223.754920pt;}
.x19_c00441{left:225.831720pt;}
.x6_c00441{left:236.919720pt;}
.x1a_c00441{left:243.075320pt;}
.x3e_c00441{left:244.720920pt;}
.x4a_c00441{left:253.204120pt;}
.x22_c00441{left:254.942120pt;}
.x44_c00441{left:256.460120pt;}
.x5a_c00441{left:263.764120pt;}
.x1b_c00441{left:266.597720pt;}
.x55_c00441{left:273.540920pt;}
.x38_c00441{left:274.610120pt;}
.x7_c00441{left:276.110520pt;}
.x23_c00441{left:283.458520pt;}
.xd_c00441{left:284.386920pt;}
.x2f_c00441{left:293.596120pt;}
.x39_c00441{left:312.762520pt;}
.x30_c00441{left:313.893320pt;}
.x8_c00441{left:315.420120pt;}
.x3f_c00441{left:321.901320pt;}
.x24_c00441{left:323.080520pt;}
.x31_c00441{left:333.138920pt;}
.x1c_c00441{left:342.026920pt;}
.x2_c00441{left:343.632920pt;}
.x4b_c00441{left:353.686920pt;}
.x5b_c00441{left:361.686120pt;}
.x25_c00441{left:363.204120pt;}
.x1d_c00441{left:372.184520pt;}
.xe_c00441{left:373.108520pt;}
.x32_c00441{left:380.878920pt;}
.x4c_c00441{left:391.760120pt;}
.xf_c00441{left:401.272920pt;}
.x26_c00441{left:410.666920pt;}
.x1e_c00441{left:411.991320pt;}
.x27_c00441{left:421.561320pt;}
.x10_c00441{left:430.594520pt;}
.x1f_c00441{left:440.758520pt;}
.x45_c00441{left:449.430920pt;}
.x5c_c00441{left:459.291320pt;}
.x28_c00441{left:469.090120pt;}
.x57_c00441{left:477.810920pt;}
.x20_c00441{left:479.082520pt;}
.x33_c00441{left:489.083720pt;}
.x5d_c00441{left:497.175320pt;}
.x4d_c00441{left:507.312920pt;}
.x29_c00441{left:508.971720pt;}
.x40_c00441{left:510.533720pt;}
.x11_c00441{left:519.131320pt;}
.x46_c00441{left:527.552920pt;}
.x2a_c00441{left:528.974120pt;}
.x3a_c00441{left:538.469320pt;}
.x4e_c00441{left:547.634520pt;}
.x12_c00441{left:548.598120pt;}
.x47_c00441{left:566.730520pt;}
.x41_c00441{left:576.150920pt;}
.x13_c00441{left:577.149720pt;}
.x3_c00441{left:591.990920pt;}
.x4f_c00441{left:595.352520pt;}
.x2b_c00441{left:596.593320pt;}
.x42_c00441{left:604.539720pt;}
.x14_c00441{left:606.009320pt;}
.x58_c00441{left:614.074520pt;}
.x50_c00441{left:616.054520pt;}
.x48_c00441{left:624.528920pt;}
.x34_c00441{left:625.932520pt;}
.x15_c00441{left:635.273720pt;}
.x51_c00441{left:644.597320pt;}
.x35_c00441{left:654.990120pt;}
.x4_c00441{left:670.618920pt;}
.x52_c00441{left:673.751720pt;}
.x5e_c00441{left:692.236120pt;}
.x5f_c00441{left:693.476920pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a8759e51fe10ed38f75df100.woff2')format("woff");}.ff1_c00442{font-family:ff1_c00442;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00442;src:url('chunks/assets/font_362c80a98cebbccf89c44539.woff2')format("woff");}.ff2_c00442{font-family:ff2_c00442;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00442;src:url('chunks/assets/font_b371dcc39dd8ed381e2c2ca8.woff2')format("woff");}.ff3_c00442{font-family:ff3_c00442;line-height:0.666000;font-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_c00442{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);}
.m58_c00442{transform:matrix(0.214949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214949,0.000000,0.000000,0.250000,0,0);}
.m85_c00442{transform:matrix(0.225327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225327,0.000000,0.000000,0.250000,0,0);}
.m41_c00442{transform:matrix(0.239312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239312,0.000000,0.000000,0.250000,0,0);}
.m2_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);}
.m6a_c00442{transform:matrix(0.250358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250358,0.000000,0.000000,0.250000,0,0);}
.m7d_c00442{transform:matrix(0.250546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250546,0.000000,0.000000,0.250000,0,0);}
.m66_c00442{transform:matrix(0.250968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250968,0.000000,0.000000,0.250000,0,0);}
.m84_c00442{transform:matrix(0.251640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251640,0.000000,0.000000,0.250000,0,0);}
.m15_c00442{transform:matrix(0.252313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252313,0.000000,0.000000,0.250000,0,0);}
.m40_c00442{transform:matrix(0.252426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252426,0.000000,0.000000,0.250000,0,0);}
.m20_c00442{transform:matrix(0.254142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254142,0.000000,0.000000,0.250000,0,0);}
.m1f_c00442{transform:matrix(0.254533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254533,0.000000,0.000000,0.250000,0,0);}
.m14_c00442{transform:matrix(0.254636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254636,0.000000,0.000000,0.250000,0,0);}
.m31_c00442{transform:matrix(0.255017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255017,0.000000,0.000000,0.250000,0,0);}
.m24_c00442{transform:matrix(0.255101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255101,0.000000,0.000000,0.250000,0,0);}
.m5c_c00442{transform:matrix(0.255289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255289,0.000000,0.000000,0.250000,0,0);}
.m22_c00442{transform:matrix(0.256730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256730,0.000000,0.000000,0.250000,0,0);}
.m4_c00442{transform:matrix(0.256819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256819,0.000000,0.000000,0.250000,0,0);}
.m39_c00442{transform:matrix(0.256885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256885,0.000000,0.000000,0.250000,0,0);}
.m2b_c00442{transform:matrix(0.257425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257425,0.000000,0.000000,0.250000,0,0);}
.m11_c00442{transform:matrix(0.257712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257712,0.000000,0.000000,0.250000,0,0);}
.m86_c00442{transform:matrix(0.258108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258108,0.000000,0.000000,0.250000,0,0);}
.m81_c00442{transform:matrix(0.258140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258140,0.000000,0.000000,0.250000,0,0);}
.m55_c00442{transform:matrix(0.258377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258377,0.000000,0.000000,0.250000,0,0);}
.m6d_c00442{transform:matrix(0.259091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259091,0.000000,0.000000,0.250000,0,0);}
.m93_c00442{transform:matrix(0.259656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259656,0.000000,0.000000,0.250000,0,0);}
.m18_c00442{transform:matrix(0.260318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260318,0.000000,0.000000,0.250000,0,0);}
.m29_c00442{transform:matrix(0.261740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261740,0.000000,0.000000,0.250000,0,0);}
.m8e_c00442{transform:matrix(0.261937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261937,0.000000,0.000000,0.250000,0,0);}
.m0_c00442{transform:matrix(0.262215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262215,0.000000,0.000000,0.250000,0,0);}
.m7c_c00442{transform:matrix(0.262305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262305,0.000000,0.000000,0.250000,0,0);}
.m3f_c00442{transform:matrix(0.265020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265020,0.000000,0.000000,0.250000,0,0);}
.m77_c00442{transform:matrix(0.266010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266010,0.000000,0.000000,0.250000,0,0);}
.m19_c00442{transform:matrix(0.266788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266788,0.000000,0.000000,0.250000,0,0);}
.m35_c00442{transform:matrix(0.267334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267334,0.000000,0.000000,0.250000,0,0);}
.ma_c00442{transform:matrix(0.267451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267451,0.000000,0.000000,0.250000,0,0);}
.m5d_c00442{transform:matrix(0.267796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267796,0.000000,0.000000,0.250000,0,0);}
.m1e_c00442{transform:matrix(0.268266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268266,0.000000,0.000000,0.250000,0,0);}
.ma0_c00442{transform:matrix(0.268563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268563,0.000000,0.000000,0.250000,0,0);}
.m13_c00442{transform:matrix(0.268991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268991,0.000000,0.000000,0.250000,0,0);}
.m90_c00442{transform:matrix(0.269608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269608,0.000000,0.000000,0.250000,0,0);}
.m79_c00442{transform:matrix(0.269721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269721,0.000000,0.000000,0.250000,0,0);}
.m8f_c00442{transform:matrix(0.270820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270820,0.000000,0.000000,0.250000,0,0);}
.m33_c00442{transform:matrix(0.271069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271069,0.000000,0.000000,0.250000,0,0);}
.md_c00442{transform:matrix(0.271123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271123,0.000000,0.000000,0.250000,0,0);}
.m6c_c00442{transform:matrix(0.271436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271436,0.000000,0.000000,0.250000,0,0);}
.m61_c00442{transform:matrix(0.271684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271684,0.000000,0.000000,0.250000,0,0);}
.m5e_c00442{transform:matrix(0.271711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271711,0.000000,0.000000,0.250000,0,0);}
.m8_c00442{transform:matrix(0.272254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272254,0.000000,0.000000,0.250000,0,0);}
.m23_c00442{transform:matrix(0.272432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272432,0.000000,0.000000,0.250000,0,0);}
.m49_c00442{transform:matrix(0.272815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272815,0.000000,0.000000,0.250000,0,0);}
.m3d_c00442{transform:matrix(0.272995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272995,0.000000,0.000000,0.250000,0,0);}
.m64_c00442{transform:matrix(0.273280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273280,0.000000,0.000000,0.250000,0,0);}
.m25_c00442{transform:matrix(0.273470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273470,0.000000,0.000000,0.250000,0,0);}
.m2a_c00442{transform:matrix(0.273705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273705,0.000000,0.000000,0.250000,0,0);}
.m71_c00442{transform:matrix(0.274264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274264,0.000000,0.000000,0.250000,0,0);}
.m45_c00442{transform:matrix(0.274293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274293,0.000000,0.000000,0.250000,0,0);}
.m7f_c00442{transform:matrix(0.274629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274629,0.000000,0.000000,0.250000,0,0);}
.m4b_c00442{transform:matrix(0.274755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274755,0.000000,0.000000,0.250000,0,0);}
.m48_c00442{transform:matrix(0.275009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275009,0.000000,0.000000,0.250000,0,0);}
.m7_c00442{transform:matrix(0.275071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275071,0.000000,0.000000,0.250000,0,0);}
.m95_c00442{transform:matrix(0.275377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275377,0.000000,0.000000,0.250000,0,0);}
.m94_c00442{transform:matrix(0.275393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275393,0.000000,0.000000,0.250000,0,0);}
.m9a_c00442{transform:matrix(0.275944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275944,0.000000,0.000000,0.250000,0,0);}
.m59_c00442{transform:matrix(0.276005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276005,0.000000,0.000000,0.250000,0,0);}
.m7e_c00442{transform:matrix(0.276111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276111,0.000000,0.000000,0.250000,0,0);}
.m56_c00442{transform:matrix(0.278646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278646,0.000000,0.000000,0.250000,0,0);}
.m74_c00442{transform:matrix(0.278818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278818,0.000000,0.000000,0.250000,0,0);}
.m51_c00442{transform:matrix(0.279248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279248,0.000000,0.000000,0.250000,0,0);}
.m2d_c00442{transform:matrix(0.279321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279321,0.000000,0.000000,0.250000,0,0);}
.m80_c00442{transform:matrix(0.279439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279439,0.000000,0.000000,0.250000,0,0);}
.m10_c00442{transform:matrix(0.279463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279463,0.000000,0.000000,0.250000,0,0);}
.m70_c00442{transform:matrix(0.280433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280433,0.000000,0.000000,0.250000,0,0);}
.m82_c00442{transform:matrix(0.281567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281567,0.000000,0.000000,0.250000,0,0);}
.m63_c00442{transform:matrix(0.282047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282047,0.000000,0.000000,0.250000,0,0);}
.m26_c00442{transform:matrix(0.282117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282117,0.000000,0.000000,0.250000,0,0);}
.m1_c00442{transform:matrix(0.284050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284050,0.000000,0.000000,0.250000,0,0);}
.m5f_c00442{transform:matrix(0.284058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284058,0.000000,0.000000,0.250000,0,0);}
.m3c_c00442{transform:matrix(0.284403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284403,0.000000,0.000000,0.250000,0,0);}
.m42_c00442{transform:matrix(0.284970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284970,0.000000,0.000000,0.250000,0,0);}
.m9e_c00442{transform:matrix(0.285973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285973,0.000000,0.000000,0.250000,0,0);}
.me_c00442{transform:matrix(0.286183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286183,0.000000,0.000000,0.250000,0,0);}
.m4c_c00442{transform:matrix(0.286977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286977,0.000000,0.000000,0.250000,0,0);}
.m27_c00442{transform:matrix(0.287089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287089,0.000000,0.000000,0.250000,0,0);}
.m57_c00442{transform:matrix(0.287732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287732,0.000000,0.000000,0.250000,0,0);}
.m3_c00442{transform:matrix(0.287921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287921,0.000000,0.000000,0.250000,0,0);}
.m87_c00442{transform:matrix(0.287941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287941,0.000000,0.000000,0.250000,0,0);}
.m1b_c00442{transform:matrix(0.288587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288587,0.000000,0.000000,0.250000,0,0);}
.m8d_c00442{transform:matrix(0.289042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289042,0.000000,0.000000,0.250000,0,0);}
.m9c_c00442{transform:matrix(0.289454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289454,0.000000,0.000000,0.250000,0,0);}
.m5_c00442{transform:matrix(0.290210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290210,0.000000,0.000000,0.250000,0,0);}
.m9b_c00442{transform:matrix(0.291011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291011,0.000000,0.000000,0.250000,0,0);}
.m88_c00442{transform:matrix(0.291078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291078,0.000000,0.000000,0.250000,0,0);}
.m43_c00442{transform:matrix(0.291294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291294,0.000000,0.000000,0.250000,0,0);}
.m4a_c00442{transform:matrix(0.291353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291353,0.000000,0.000000,0.250000,0,0);}
.m99_c00442{transform:matrix(0.291804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291804,0.000000,0.000000,0.250000,0,0);}
.m73_c00442{transform:matrix(0.292633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292633,0.000000,0.000000,0.250000,0,0);}
.m68_c00442{transform:matrix(0.292767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292767,0.000000,0.000000,0.250000,0,0);}
.m5b_c00442{transform:matrix(0.292779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292779,0.000000,0.000000,0.250000,0,0);}
.m8b_c00442{transform:matrix(0.292939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292939,0.000000,0.000000,0.250000,0,0);}
.m3e_c00442{transform:matrix(0.293329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293329,0.000000,0.000000,0.250000,0,0);}
.m21_c00442{transform:matrix(0.293634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293634,0.000000,0.000000,0.250000,0,0);}
.m1d_c00442{transform:matrix(0.293703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293703,0.000000,0.000000,0.250000,0,0);}
.m4d_c00442{transform:matrix(0.293885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293885,0.000000,0.000000,0.250000,0,0);}
.m53_c00442{transform:matrix(0.294135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294135,0.000000,0.000000,0.250000,0,0);}
.m72_c00442{transform:matrix(0.294201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294201,0.000000,0.000000,0.250000,0,0);}
.m34_c00442{transform:matrix(0.294214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294214,0.000000,0.000000,0.250000,0,0);}
.mc_c00442{transform:matrix(0.297017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297017,0.000000,0.000000,0.250000,0,0);}
.m38_c00442{transform:matrix(0.297596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297596,0.000000,0.000000,0.250000,0,0);}
.m1a_c00442{transform:matrix(0.298664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298664,0.000000,0.000000,0.250000,0,0);}
.m65_c00442{transform:matrix(0.299470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299470,0.000000,0.000000,0.250000,0,0);}
.m37_c00442{transform:matrix(0.300108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300108,0.000000,0.000000,0.250000,0,0);}
.m1c_c00442{transform:matrix(0.300984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300984,0.000000,0.000000,0.250000,0,0);}
.ma1_c00442{transform:matrix(0.302453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302453,0.000000,0.000000,0.250000,0,0);}
.m9_c00442{transform:matrix(0.303042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303042,0.000000,0.000000,0.250000,0,0);}
.m46_c00442{transform:matrix(0.303214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303214,0.000000,0.000000,0.250000,0,0);}
.m3b_c00442{transform:matrix(0.303389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303389,0.000000,0.000000,0.250000,0,0);}
.mf_c00442{transform:matrix(0.303970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303970,0.000000,0.000000,0.250000,0,0);}
.m75_c00442{transform:matrix(0.304078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304078,0.000000,0.000000,0.250000,0,0);}
.m2f_c00442{transform:matrix(0.305156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305156,0.000000,0.000000,0.250000,0,0);}
.m8a_c00442{transform:matrix(0.305677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305677,0.000000,0.000000,0.250000,0,0);}
.m6f_c00442{transform:matrix(0.307995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307995,0.000000,0.000000,0.250000,0,0);}
.m6_c00442{transform:matrix(0.308067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308067,0.000000,0.000000,0.250000,0,0);}
.m36_c00442{transform:matrix(0.308090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308090,0.000000,0.000000,0.250000,0,0);}
.m6e_c00442{transform:matrix(0.308123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308123,0.000000,0.000000,0.250000,0,0);}
.m7a_c00442{transform:matrix(0.308755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308755,0.000000,0.000000,0.250000,0,0);}
.m8c_c00442{transform:matrix(0.309264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309264,0.000000,0.000000,0.250000,0,0);}
.m91_c00442{transform:matrix(0.310873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310873,0.000000,0.000000,0.250000,0,0);}
.m5a_c00442{transform:matrix(0.311181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311181,0.000000,0.000000,0.250000,0,0);}
.m32_c00442{transform:matrix(0.311482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311482,0.000000,0.000000,0.250000,0,0);}
.m12_c00442{transform:matrix(0.313359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313359,0.000000,0.000000,0.250000,0,0);}
.ma2_c00442{transform:matrix(0.313409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313409,0.000000,0.000000,0.250000,0,0);}
.m9f_c00442{transform:matrix(0.313530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313530,0.000000,0.000000,0.250000,0,0);}
.m97_c00442{transform:matrix(0.314503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314503,0.000000,0.000000,0.250000,0,0);}
.m69_c00442{transform:matrix(0.315746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315746,0.000000,0.000000,0.250000,0,0);}
.m89_c00442{transform:matrix(0.316907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316907,0.000000,0.000000,0.250000,0,0);}
.m98_c00442{transform:matrix(0.318018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318018,0.000000,0.000000,0.250000,0,0);}
.m28_c00442{transform:matrix(0.318948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318948,0.000000,0.000000,0.250000,0,0);}
.m96_c00442{transform:matrix(0.319020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319020,0.000000,0.000000,0.250000,0,0);}
.m9d_c00442{transform:matrix(0.319397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319397,0.000000,0.000000,0.250000,0,0);}
.m78_c00442{transform:matrix(0.321618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321618,0.000000,0.000000,0.250000,0,0);}
.m3a_c00442{transform:matrix(0.322200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322200,0.000000,0.000000,0.250000,0,0);}
.m83_c00442{transform:matrix(0.322237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322237,0.000000,0.000000,0.250000,0,0);}
.m4e_c00442{transform:matrix(0.323658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323658,0.000000,0.000000,0.250000,0,0);}
.m52_c00442{transform:matrix(0.325016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325016,0.000000,0.000000,0.250000,0,0);}
.m92_c00442{transform:matrix(0.325130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325130,0.000000,0.000000,0.250000,0,0);}
.m4f_c00442{transform:matrix(0.326798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326798,0.000000,0.000000,0.250000,0,0);}
.m50_c00442{transform:matrix(0.328111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328111,0.000000,0.000000,0.250000,0,0);}
.mb_c00442{transform:matrix(0.332112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332112,0.000000,0.000000,0.250000,0,0);}
.m60_c00442{transform:matrix(0.332903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332903,0.000000,0.000000,0.250000,0,0);}
.m54_c00442{transform:matrix(0.333756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333756,0.000000,0.000000,0.250000,0,0);}
.m44_c00442{transform:matrix(0.335089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335089,0.000000,0.000000,0.250000,0,0);}
.m17_c00442{transform:matrix(0.337284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337284,0.000000,0.000000,0.250000,0,0);}
.m6b_c00442{transform:matrix(0.337967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337967,0.000000,0.000000,0.250000,0,0);}
.m76_c00442{transform:matrix(0.339803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339803,0.000000,0.000000,0.250000,0,0);}
.m7b_c00442{transform:matrix(0.343183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343183,0.000000,0.000000,0.250000,0,0);}
.m67_c00442{transform:matrix(0.352869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352869,0.000000,0.000000,0.250000,0,0);}
.m30_c00442{transform:matrix(0.358321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358321,0.000000,0.000000,0.250000,0,0);}
.m47_c00442{transform:matrix(0.364195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364195,0.000000,0.000000,0.250000,0,0);}
.m2c_c00442{transform:matrix(0.370070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370070,0.000000,0.000000,0.250000,0,0);}
.m16_c00442{transform:matrix(0.375943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375943,0.000000,0.000000,0.250000,0,0);}
.m2e_c00442{transform:matrix(0.381818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381818,0.000000,0.000000,0.250000,0,0);}
.v0_c00442{vertical-align:0.000000px;}
.ls7_c00442{letter-spacing:-2.813580px;}
.ls2_c00442{letter-spacing:0.000000px;}
.ls5_c00442{letter-spacing:1.165626px;}
.ls4_c00442{letter-spacing:1.897157px;}
.ls6_c00442{letter-spacing:2.702700px;}
.ls3_c00442{letter-spacing:3.328063px;}
.ls9_c00442{letter-spacing:3.392374px;}
.lsb_c00442{letter-spacing:3.512956px;}
.ls1_c00442{letter-spacing:4.019400px;}
.ls8_c00442{letter-spacing:4.068900px;}
.ls0_c00442{letter-spacing:4.197610px;}
.lsa_c00442{letter-spacing:39.916800px;}
.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;}
._0_c00442{width:12.380148px;}
._1_c00442{width:33.679800px;}
.fc0_c00442{color:transparent;}
.fs4_c00442{font-size:27.720000px;}
.fs6_c00442{font-size:39.916800px;}
.fs5_c00442{font-size:44.748000px;}
.fs9_c00442{font-size:46.332000px;}
.fs2_c00442{font-size:54.054000px;}
.fs7_c00442{font-size:66.330000px;}
.fs8_c00442{font-size:72.864000px;}
.fs1_c00442{font-size:80.388000px;}
.fs3_c00442{font-size:81.378000px;}
.fs0_c00442{font-size:83.952198px;}
.y0_c00442{bottom:0.000000px;}
.y1_c00442{bottom:76.500000px;}
.y1c_c00442{bottom:119.662335px;}
.y1b_c00442{bottom:153.520335px;}
.y1a_c00442{bottom:187.378335px;}
.y19_c00442{bottom:221.231385px;}
.y18_c00442{bottom:221.232573px;}
.y17_c00442{bottom:253.307385px;}
.y16_c00442{bottom:317.820735px;}
.y15_c00442{bottom:349.540335px;}
.y14_c00442{bottom:381.967785px;}
.y1d_c00442{bottom:409.771935px;}
.y13_c00442{bottom:414.400185px;}
.y12_c00442{bottom:447.550335px;}
.y11_c00442{bottom:510.984585px;}
.y10_c00442{bottom:518.825385px;}
.yf_c00442{bottom:542.704185px;}
.ye_c00442{bottom:568.721385px;}
.yd_c00442{bottom:574.428735px;}
.yc_c00442{bottom:605.791935px;}
.yb_c00442{bottom:638.224335px;}
.ya_c00442{bottom:669.938985px;}
.y9_c00442{bottom:702.727785px;}
.y8_c00442{bottom:735.516585px;}
.y7_c00442{bottom:799.673535px;}
.y6_c00442{bottom:831.393135px;}
.y5_c00442{bottom:863.464185px;}
.y4_c00442{bottom:895.896585px;}
.y3_c00442{bottom:927.977535px;}
.y2_c00442{bottom:1063.760985px;}
.h8_c00442{height:26.584589px;}
.h6_c00442{height:28.911094px;}
.h7_c00442{height:43.917715px;}
.ha_c00442{height:48.322828px;}
.h4_c00442{height:53.051045px;}
.h9_c00442{height:69.180117px;}
.h3_c00442{height:78.896426px;}
.h5_c00442{height:79.868057px;}
.h2_c00442{height:82.394491px;}
.h1_c00442{height:1110.000000px;}
.h0_c00442{height:1263.000000px;}
.w1_c00442{width:781.500000px;}
.w0_c00442{width:892.500000px;}
.x0_c00442{left:0.000000px;}
.x1_c00442{left:55.500000px;}
.x6e_c00442{left:82.622880px;}
.x5c_c00442{left:83.835135px;}
.x48_c00442{left:84.919185px;}
.x45_c00442{left:86.795235px;}
.x3a_c00442{left:88.502985px;}
.x1f_c00442{left:90.685935px;}
.x17_c00442{left:92.586735px;}
.x3_c00442{left:94.304385px;}
.x6f_c00442{left:114.277635px;}
.x49_c00442{left:118.128735px;}
.x3b_c00442{left:119.485035px;}
.x81_c00442{left:123.766785px;}
.x56_c00442{left:127.127835px;}
.x27_c00442{left:133.201485px;}
.xf_c00442{left:134.785485px;}
.x5d_c00442{left:136.988235px;}
.x4f_c00442{left:138.636585px;}
.x2b_c00442{left:142.591635px;}
.x70_c00442{left:147.789135px;}
.x32_c00442{left:152.833185px;}
.x65_c00442{left:159.114735px;}
.x40_c00442{left:161.188785px;}
.x18_c00442{left:165.920985px;}
.x4_c00442{left:168.153435px;}
.x57_c00442{left:170.816535px;}
.x3c_c00442{left:172.949985px;}
.x4e_c00442{left:174.944835px;}
.x5e_c00442{left:181.127385px;}
.x33_c00442{left:183.973635px;}
.x10_c00442{left:187.403985px;}
.x5_c00442{left:188.413785px;}
.x7d_c00442{left:194.051835px;}
.x41_c00442{left:195.833835px;}
.x50_c00442{left:205.921935px;}
.x82_c00442{left:213.341985px;}
.x76_c00442{left:214.683435px;}
.x62_c00442{left:215.688285px;}
.x11_c00442{left:219.108735px;}
.x51_c00442{left:226.187235px;}
.x66_c00442{left:236.225835px;}
.x28_c00442{left:240.477885px;}
.x58_c00442{left:249.402735px;}
.x77_c00442{left:258.297885px;}
.x34_c00442{left:260.619435px;}
.x4a_c00442{left:270.603585px;}
.x6_c00442{left:274.004235px;}
.x67_c00442{left:280.038285px;}
.x2c_c00442{left:282.914235px;}
.x19_c00442{left:283.988385px;}
.x20_c00442{left:295.031835px;}
.x7_c00442{left:305.887185px;}
.x68_c00442{left:313.925985px;}
.x1a_c00442{left:316.351485px;}
.x21_c00442{left:326.904885px;}
.x29_c00442{left:328.048335px;}
.x52_c00442{left:337.760235px;}
.x83_c00442{left:345.645585px;}
.x71_c00442{left:346.868235px;}
.x12_c00442{left:349.892685px;}
.x69_c00442{left:356.491035px;}
.x22_c00442{left:360.748035px;}
.x59_c00442{left:370.593585px;}
.x78_c00442{left:379.087785px;}
.x35_c00442{left:381.934035px;}
.x2a_c00442{left:383.003235px;}
.x7e_c00442{left:389.319435px;}
.x6a_c00442{left:391.131135px;}
.x4b_c00442{left:393.269535px;}
.x8_c00442{left:395.378235px;}
.x5a_c00442{left:403.322985px;}
.x72_c00442{left:412.094385px;}
.x79_c00442{left:413.683335px;}
.x63_c00442{left:415.391085px;}
.x36_c00442{left:416.791935px;}
.x7f_c00442{left:434.705985px;}
.x31_c00442{left:437.042385px;}
.x53_c00442{left:448.239285px;}
.x13_c00442{left:449.912385px;}
.x23_c00442{left:459.787635px;}
.x42_c00442{left:470.345985px;}
.x4c_c00442{left:472.756635px;}
.x9_c00442{left:480.864735px;}
.x84_c00442{left:488.878785px;}
.x3d_c00442{left:491.566635px;}
.x14_c00442{left:492.809085px;}
.x5f_c00442{left:502.684335px;}
.xa_c00442{left:504.223785px;}
.x46_c00442{left:505.545435px;}
.x73_c00442{left:511.678485px;}
.x2d_c00442{left:513.435735px;}
.x24_c00442{left:514.574235px;}
.x6b_c00442{left:522.142785px;}
.x54_c00442{left:523.999035px;}
.x1b_c00442{left:525.612735px;}
.x7a_c00442{left:533.829735px;}
.x2e_c00442{left:547.496685px;}
.x25_c00442{left:557.866935px;}
.xb_c00442{left:559.431135px;}
.x4d_c00442{left:568.974735px;}
.x74_c00442{left:578.948985px;}
.x3e_c00442{left:590.789385px;}
.x1c_c00442{left:591.838785px;}
.x64_c00442{left:612.208035px;}
.x55_c00442{left:613.217835px;}
.x37_c00442{left:614.539485px;}
.x6c_c00442{left:622.122885px;}
.x3f_c00442{left:623.939535px;}
.xc_c00442{left:626.107635px;}
.x85_c00442{left:631.275435px;}
.x60_c00442{left:633.572235px;}
.xd_c00442{left:635.200785px;}
.x5b_c00442{left:646.679835px;}
.x6d_c00442{left:655.688835px;}
.x1d_c00442{left:657.490635px;}
.x38_c00442{left:658.505385px;}
.x75_c00442{left:664.460235px;}
.x15_c00442{left:666.955035px;}
.x2f_c00442{left:668.128185px;}
.x2_c00442{left:670.969485px;}
.x7b_c00442{left:676.384785px;}
.x61_c00442{left:678.290535px;}
.xe_c00442{left:679.815135px;}
.x1e_c00442{left:690.215085px;}
.x26_c00442{left:691.323885px;}
.x80_c00442{left:698.481585px;}
.x30_c00442{left:700.426935px;}
.x16_c00442{left:701.966385px;}
.x43_c00442{left:703.703835px;}
.x7c_c00442{left:709.143885px;}
.x39_c00442{left:712.381185px;}
.x44_c00442{left:723.399885px;}
.x47_c00442{left:735.279885px;}
.x86_c00442{left:780.686235px;}
@media print{
.v0_c00442{vertical-align:0.000000pt;}
.ls7_c00442{letter-spacing:-2.500960pt;}
.ls2_c00442{letter-spacing:0.000000pt;}
.ls5_c00442{letter-spacing:1.036112pt;}
.ls4_c00442{letter-spacing:1.686362pt;}
.ls6_c00442{letter-spacing:2.402400pt;}
.ls3_c00442{letter-spacing:2.958278pt;}
.ls9_c00442{letter-spacing:3.015443pt;}
.lsb_c00442{letter-spacing:3.122627pt;}
.ls1_c00442{letter-spacing:3.572800pt;}
.ls8_c00442{letter-spacing:3.616800pt;}
.ls0_c00442{letter-spacing:3.731209pt;}
.lsa_c00442{letter-spacing:35.481600pt;}
.ws0_c00442{word-spacing:0.000000pt;}
._0_c00442{width:11.004576pt;}
._1_c00442{width:29.937600pt;}
.fs4_c00442{font-size:24.640000pt;}
.fs6_c00442{font-size:35.481600pt;}
.fs5_c00442{font-size:39.776000pt;}
.fs9_c00442{font-size:41.184000pt;}
.fs2_c00442{font-size:48.048000pt;}
.fs7_c00442{font-size:58.960000pt;}
.fs8_c00442{font-size:64.768000pt;}
.fs1_c00442{font-size:71.456000pt;}
.fs3_c00442{font-size:72.336000pt;}
.fs0_c00442{font-size:74.624176pt;}
.y0_c00442{bottom:0.000000pt;}
.y1_c00442{bottom:68.000000pt;}
.y1c_c00442{bottom:106.366520pt;}
.y1b_c00442{bottom:136.462520pt;}
.y1a_c00442{bottom:166.558520pt;}
.y19_c00442{bottom:196.650120pt;}
.y18_c00442{bottom:196.651176pt;}
.y17_c00442{bottom:225.162120pt;}
.y16_c00442{bottom:282.507320pt;}
.y15_c00442{bottom:310.702520pt;}
.y14_c00442{bottom:339.526920pt;}
.y1d_c00442{bottom:364.241720pt;}
.y13_c00442{bottom:368.355720pt;}
.y12_c00442{bottom:397.822520pt;}
.y11_c00442{bottom:454.208520pt;}
.y10_c00442{bottom:461.178120pt;}
.yf_c00442{bottom:482.403720pt;}
.ye_c00442{bottom:505.530120pt;}
.yd_c00442{bottom:510.603320pt;}
.yc_c00442{bottom:538.481720pt;}
.yb_c00442{bottom:567.310520pt;}
.ya_c00442{bottom:595.501320pt;}
.y9_c00442{bottom:624.646920pt;}
.y8_c00442{bottom:653.792520pt;}
.y7_c00442{bottom:710.820920pt;}
.y6_c00442{bottom:739.016120pt;}
.y5_c00442{bottom:767.523720pt;}
.y4_c00442{bottom:796.352520pt;}
.y3_c00442{bottom:824.868920pt;}
.y2_c00442{bottom:945.565320pt;}
.h8_c00442{height:23.630746pt;}
.h6_c00442{height:25.698750pt;}
.h7_c00442{height:39.037969pt;}
.ha_c00442{height:42.953625pt;}
.h4_c00442{height:47.156484pt;}
.h9_c00442{height:61.493438pt;}
.h3_c00442{height:70.130156pt;}
.h5_c00442{height:70.993828pt;}
.h2_c00442{height:73.239548pt;}
.h1_c00442{height:986.666667pt;}
.h0_c00442{height:1122.666667pt;}
.w1_c00442{width:694.666667pt;}
.w0_c00442{width:793.333333pt;}
.x0_c00442{left:0.000000pt;}
.x1_c00442{left:49.333333pt;}
.x6e_c00442{left:73.442560pt;}
.x5c_c00442{left:74.520120pt;}
.x48_c00442{left:75.483720pt;}
.x45_c00442{left:77.151320pt;}
.x3a_c00442{left:78.669320pt;}
.x1f_c00442{left:80.609720pt;}
.x17_c00442{left:82.299320pt;}
.x3_c00442{left:83.826120pt;}
.x6f_c00442{left:101.580120pt;}
.x49_c00442{left:105.003320pt;}
.x3b_c00442{left:106.208920pt;}
.x81_c00442{left:110.014920pt;}
.x56_c00442{left:113.002520pt;}
.x27_c00442{left:118.401320pt;}
.xf_c00442{left:119.809320pt;}
.x5d_c00442{left:121.767320pt;}
.x4f_c00442{left:123.232520pt;}
.x2b_c00442{left:126.748120pt;}
.x70_c00442{left:131.368120pt;}
.x32_c00442{left:135.851720pt;}
.x65_c00442{left:141.435320pt;}
.x40_c00442{left:143.278920pt;}
.x18_c00442{left:147.485320pt;}
.x4_c00442{left:149.469720pt;}
.x57_c00442{left:151.836920pt;}
.x3c_c00442{left:153.733320pt;}
.x4e_c00442{left:155.506520pt;}
.x5e_c00442{left:161.002120pt;}
.x33_c00442{left:163.532120pt;}
.x10_c00442{left:166.581320pt;}
.x5_c00442{left:167.478920pt;}
.x7d_c00442{left:172.490520pt;}
.x41_c00442{left:174.074520pt;}
.x50_c00442{left:183.041720pt;}
.x82_c00442{left:189.637320pt;}
.x76_c00442{left:190.829720pt;}
.x62_c00442{left:191.722920pt;}
.x11_c00442{left:194.763320pt;}
.x51_c00442{left:201.055320pt;}
.x66_c00442{left:209.978520pt;}
.x28_c00442{left:213.758120pt;}
.x58_c00442{left:221.691320pt;}
.x77_c00442{left:229.598120pt;}
.x34_c00442{left:231.661720pt;}
.x4a_c00442{left:240.536520pt;}
.x6_c00442{left:243.559320pt;}
.x67_c00442{left:248.922920pt;}
.x2c_c00442{left:251.479320pt;}
.x19_c00442{left:252.434120pt;}
.x20_c00442{left:262.250520pt;}
.x7_c00442{left:271.899720pt;}
.x68_c00442{left:279.045320pt;}
.x1a_c00442{left:281.201320pt;}
.x21_c00442{left:290.582120pt;}
.x29_c00442{left:291.598520pt;}
.x52_c00442{left:300.231320pt;}
.x83_c00442{left:307.240520pt;}
.x71_c00442{left:308.327320pt;}
.x12_c00442{left:311.015720pt;}
.x69_c00442{left:316.880920pt;}
.x22_c00442{left:320.664920pt;}
.x59_c00442{left:329.416520pt;}
.x78_c00442{left:336.966920pt;}
.x35_c00442{left:339.496920pt;}
.x2a_c00442{left:340.447320pt;}
.x7e_c00442{left:346.061720pt;}
.x6a_c00442{left:347.672120pt;}
.x4b_c00442{left:349.572920pt;}
.x8_c00442{left:351.447320pt;}
.x5a_c00442{left:358.509320pt;}
.x72_c00442{left:366.306120pt;}
.x79_c00442{left:367.718520pt;}
.x63_c00442{left:369.236520pt;}
.x36_c00442{left:370.481720pt;}
.x7f_c00442{left:386.405320pt;}
.x31_c00442{left:388.482120pt;}
.x53_c00442{left:398.434920pt;}
.x13_c00442{left:399.922120pt;}
.x23_c00442{left:408.700120pt;}
.x42_c00442{left:418.085320pt;}
.x4c_c00442{left:420.228120pt;}
.x9_c00442{left:427.435320pt;}
.x84_c00442{left:434.558920pt;}
.x3d_c00442{left:436.948120pt;}
.x14_c00442{left:438.052520pt;}
.x5f_c00442{left:446.830520pt;}
.xa_c00442{left:448.198920pt;}
.x46_c00442{left:449.373720pt;}
.x73_c00442{left:454.825320pt;}
.x2d_c00442{left:456.387320pt;}
.x24_c00442{left:457.399320pt;}
.x6b_c00442{left:464.126920pt;}
.x54_c00442{left:465.776920pt;}
.x1b_c00442{left:467.211320pt;}
.x7a_c00442{left:474.515320pt;}
.x2e_c00442{left:486.663720pt;}
.x25_c00442{left:495.881720pt;}
.xb_c00442{left:497.272120pt;}
.x4d_c00442{left:505.755320pt;}
.x74_c00442{left:514.621320pt;}
.x3e_c00442{left:525.146120pt;}
.x1c_c00442{left:526.078920pt;}
.x64_c00442{left:544.184920pt;}
.x55_c00442{left:545.082520pt;}
.x37_c00442{left:546.257320pt;}
.x6c_c00442{left:552.998120pt;}
.x3f_c00442{left:554.612920pt;}
.xc_c00442{left:556.540120pt;}
.x85_c00442{left:561.133720pt;}
.x60_c00442{left:563.175320pt;}
.xd_c00442{left:564.622920pt;}
.x5b_c00442{left:574.826520pt;}
.x6d_c00442{left:582.834520pt;}
.x1d_c00442{left:584.436120pt;}
.x38_c00442{left:585.338120pt;}
.x75_c00442{left:590.631320pt;}
.x15_c00442{left:592.848920pt;}
.x2f_c00442{left:593.891720pt;}
.x2_c00442{left:596.417320pt;}
.x7b_c00442{left:601.230920pt;}
.x61_c00442{left:602.924920pt;}
.xe_c00442{left:604.280120pt;}
.x1e_c00442{left:613.524520pt;}
.x26_c00442{left:614.510120pt;}
.x80_c00442{left:620.872520pt;}
.x30_c00442{left:622.601720pt;}
.x16_c00442{left:623.970120pt;}
.x43_c00442{left:625.514520pt;}
.x7c_c00442{left:630.350120pt;}
.x39_c00442{left:633.227720pt;}
.x44_c00442{left:643.022120pt;}
.x47_c00442{left:653.582120pt;}
.x86_c00442{left:693.943320pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_334d0cd40539a48c8cb8fabd.woff2')format("woff");}.ff1_c00443{font-family:ff1_c00443;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00443;src:url('chunks/assets/font_d3ed0db326181ee2c96cec44.woff2')format("woff");}.ff2_c00443{font-family:ff2_c00443;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00443;src:url('chunks/assets/font_c6df81bb69aca6547aea7345.woff2')format("woff");}.ff3_c00443{font-family:ff3_c00443;line-height:0.666000;font-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_c00443{transform:matrix(0.185672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185672,0.000000,0.000000,0.250000,0,0);}
.m3b_c00443{transform:matrix(0.201517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201517,0.000000,0.000000,0.250000,0,0);}
.m2b_c00443{transform:matrix(0.228883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228883,0.000000,0.000000,0.250000,0,0);}
.m86_c00443{transform:matrix(0.230547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230547,0.000000,0.000000,0.250000,0,0);}
.m3e_c00443{transform:matrix(0.231322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231322,0.000000,0.000000,0.250000,0,0);}
.m1b_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);}
.mc_c00443{transform:matrix(0.250897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250897,0.000000,0.000000,0.250000,0,0);}
.m2e_c00443{transform:matrix(0.251504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251504,0.000000,0.000000,0.250000,0,0);}
.m1e_c00443{transform:matrix(0.251850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251850,0.000000,0.000000,0.250000,0,0);}
.m44_c00443{transform:matrix(0.253022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253022,0.000000,0.000000,0.250000,0,0);}
.m1_c00443{transform:matrix(0.253670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253670,0.000000,0.000000,0.250000,0,0);}
.m45_c00443{transform:matrix(0.253736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253736,0.000000,0.000000,0.250000,0,0);}
.me_c00443{transform:matrix(0.254778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254778,0.000000,0.000000,0.250000,0,0);}
.m2d_c00443{transform:matrix(0.255459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255459,0.000000,0.000000,0.250000,0,0);}
.m0_c00443{transform:matrix(0.256420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256420,0.000000,0.000000,0.250000,0,0);}
.m7b_c00443{transform:matrix(0.257566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257566,0.000000,0.000000,0.250000,0,0);}
.m7e_c00443{transform:matrix(0.257706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257706,0.000000,0.000000,0.250000,0,0);}
.m7_c00443{transform:matrix(0.258282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258282,0.000000,0.000000,0.250000,0,0);}
.m33_c00443{transform:matrix(0.260021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260021,0.000000,0.000000,0.250000,0,0);}
.m2_c00443{transform:matrix(0.260926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260926,0.000000,0.000000,0.250000,0,0);}
.m7d_c00443{transform:matrix(0.261450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261450,0.000000,0.000000,0.250000,0,0);}
.m10_c00443{transform:matrix(0.262894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262894,0.000000,0.000000,0.250000,0,0);}
.m77_c00443{transform:matrix(0.263081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263081,0.000000,0.000000,0.250000,0,0);}
.m70_c00443{transform:matrix(0.264583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264583,0.000000,0.000000,0.250000,0,0);}
.m56_c00443{transform:matrix(0.265269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265269,0.000000,0.000000,0.250000,0,0);}
.m6b_c00443{transform:matrix(0.265274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265274,0.000000,0.000000,0.250000,0,0);}
.m9_c00443{transform:matrix(0.266211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266211,0.000000,0.000000,0.250000,0,0);}
.m74_c00443{transform:matrix(0.267145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267145,0.000000,0.000000,0.250000,0,0);}
.m26_c00443{transform:matrix(0.267506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267506,0.000000,0.000000,0.250000,0,0);}
.m53_c00443{transform:matrix(0.269140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269140,0.000000,0.000000,0.250000,0,0);}
.m78_c00443{transform:matrix(0.270339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270339,0.000000,0.000000,0.250000,0,0);}
.m54_c00443{transform:matrix(0.271009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271009,0.000000,0.000000,0.250000,0,0);}
.m6a_c00443{transform:matrix(0.272118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272118,0.000000,0.000000,0.250000,0,0);}
.m41_c00443{transform:matrix(0.273494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273494,0.000000,0.000000,0.250000,0,0);}
.m80_c00443{transform:matrix(0.273701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273701,0.000000,0.000000,0.250000,0,0);}
.m7a_c00443{transform:matrix(0.274162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274162,0.000000,0.000000,0.250000,0,0);}
.m42_c00443{transform:matrix(0.274205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274205,0.000000,0.000000,0.250000,0,0);}
.m84_c00443{transform:matrix(0.274752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274752,0.000000,0.000000,0.250000,0,0);}
.m89_c00443{transform:matrix(0.276386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276386,0.000000,0.000000,0.250000,0,0);}
.m1c_c00443{transform:matrix(0.277194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277194,0.000000,0.000000,0.250000,0,0);}
.m3f_c00443{transform:matrix(0.277684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277684,0.000000,0.000000,0.250000,0,0);}
.m12_c00443{transform:matrix(0.278231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278231,0.000000,0.000000,0.250000,0,0);}
.m36_c00443{transform:matrix(0.278553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278553,0.000000,0.000000,0.250000,0,0);}
.m17_c00443{transform:matrix(0.279385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279385,0.000000,0.000000,0.250000,0,0);}
.m5e_c00443{transform:matrix(0.279728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279728,0.000000,0.000000,0.250000,0,0);}
.m35_c00443{transform:matrix(0.279777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279777,0.000000,0.000000,0.250000,0,0);}
.m8d_c00443{transform:matrix(0.280129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280129,0.000000,0.000000,0.250000,0,0);}
.m4d_c00443{transform:matrix(0.281201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281201,0.000000,0.000000,0.250000,0,0);}
.m55_c00443{transform:matrix(0.281375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281375,0.000000,0.000000,0.250000,0,0);}
.m3a_c00443{transform:matrix(0.282018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282018,0.000000,0.000000,0.250000,0,0);}
.m27_c00443{transform:matrix(0.282768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282768,0.000000,0.000000,0.250000,0,0);}
.m60_c00443{transform:matrix(0.282923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282923,0.000000,0.000000,0.250000,0,0);}
.m83_c00443{transform:matrix(0.283139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283139,0.000000,0.000000,0.250000,0,0);}
.m2a_c00443{transform:matrix(0.283234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283234,0.000000,0.000000,0.250000,0,0);}
.m81_c00443{transform:matrix(0.283544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283544,0.000000,0.000000,0.250000,0,0);}
.m6_c00443{transform:matrix(0.285178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285178,0.000000,0.000000,0.250000,0,0);}
.m88_c00443{transform:matrix(0.285203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285203,0.000000,0.000000,0.250000,0,0);}
.m40_c00443{transform:matrix(0.285220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285220,0.000000,0.000000,0.250000,0,0);}
.m63_c00443{transform:matrix(0.285399,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285399,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285399,0.000000,0.000000,0.250000,0,0);}
.m68_c00443{transform:matrix(0.285664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285664,0.000000,0.000000,0.250000,0,0);}
.m28_c00443{transform:matrix(0.285710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285710,0.000000,0.000000,0.250000,0,0);}
.m2f_c00443{transform:matrix(0.286282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286282,0.000000,0.000000,0.250000,0,0);}
.md_c00443{transform:matrix(0.288198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288198,0.000000,0.000000,0.250000,0,0);}
.m66_c00443{transform:matrix(0.288432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288432,0.000000,0.000000,0.250000,0,0);}
.m52_c00443{transform:matrix(0.289060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289060,0.000000,0.000000,0.250000,0,0);}
.m3c_c00443{transform:matrix(0.290027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290027,0.000000,0.000000,0.250000,0,0);}
.m76_c00443{transform:matrix(0.290134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290134,0.000000,0.000000,0.250000,0,0);}
.m69_c00443{transform:matrix(0.290199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290199,0.000000,0.000000,0.250000,0,0);}
.m43_c00443{transform:matrix(0.290889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290889,0.000000,0.000000,0.250000,0,0);}
.m14_c00443{transform:matrix(0.291035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291035,0.000000,0.000000,0.250000,0,0);}
.ma_c00443{transform:matrix(0.291319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291319,0.000000,0.000000,0.250000,0,0);}
.m58_c00443{transform:matrix(0.291570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291570,0.000000,0.000000,0.250000,0,0);}
.m1f_c00443{transform:matrix(0.292248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292248,0.000000,0.000000,0.250000,0,0);}
.m32_c00443{transform:matrix(0.292945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292945,0.000000,0.000000,0.250000,0,0);}
.m51_c00443{transform:matrix(0.293024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293024,0.000000,0.000000,0.250000,0,0);}
.m16_c00443{transform:matrix(0.293278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293278,0.000000,0.000000,0.250000,0,0);}
.mb_c00443{transform:matrix(0.293431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293431,0.000000,0.000000,0.250000,0,0);}
.m4b_c00443{transform:matrix(0.293647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293647,0.000000,0.000000,0.250000,0,0);}
.m39_c00443{transform:matrix(0.294459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294459,0.000000,0.000000,0.250000,0,0);}
.m71_c00443{transform:matrix(0.294589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294589,0.000000,0.000000,0.250000,0,0);}
.m59_c00443{transform:matrix(0.294648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294648,0.000000,0.000000,0.250000,0,0);}
.m87_c00443{transform:matrix(0.295032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295032,0.000000,0.000000,0.250000,0,0);}
.m5c_c00443{transform:matrix(0.295227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295227,0.000000,0.000000,0.250000,0,0);}
.m24_c00443{transform:matrix(0.296418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296418,0.000000,0.000000,0.250000,0,0);}
.m23_c00443{transform:matrix(0.297883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297883,0.000000,0.000000,0.250000,0,0);}
.m47_c00443{transform:matrix(0.299319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299319,0.000000,0.000000,0.250000,0,0);}
.m31_c00443{transform:matrix(0.300032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300032,0.000000,0.000000,0.250000,0,0);}
.m19_c00443{transform:matrix(0.300576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300576,0.000000,0.000000,0.250000,0,0);}
.m4a_c00443{transform:matrix(0.301307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301307,0.000000,0.000000,0.250000,0,0);}
.m2c_c00443{transform:matrix(0.301427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301427,0.000000,0.000000,0.250000,0,0);}
.m61_c00443{transform:matrix(0.301782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301782,0.000000,0.000000,0.250000,0,0);}
.m6d_c00443{transform:matrix(0.301963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301963,0.000000,0.000000,0.250000,0,0);}
.m25_c00443{transform:matrix(0.302709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302709,0.000000,0.000000,0.250000,0,0);}
.m1d_c00443{transform:matrix(0.303384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303384,0.000000,0.000000,0.250000,0,0);}
.m4_c00443{transform:matrix(0.304267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304267,0.000000,0.000000,0.250000,0,0);}
.m46_c00443{transform:matrix(0.305238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305238,0.000000,0.000000,0.250000,0,0);}
.m3_c00443{transform:matrix(0.305523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305523,0.000000,0.000000,0.250000,0,0);}
.m62_c00443{transform:matrix(0.306799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306799,0.000000,0.000000,0.250000,0,0);}
.mf_c00443{transform:matrix(0.307727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307727,0.000000,0.000000,0.250000,0,0);}
.m29_c00443{transform:matrix(0.307945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307945,0.000000,0.000000,0.250000,0,0);}
.m5_c00443{transform:matrix(0.308850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308850,0.000000,0.000000,0.250000,0,0);}
.m34_c00443{transform:matrix(0.309305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309305,0.000000,0.000000,0.250000,0,0);}
.m6f_c00443{transform:matrix(0.309767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309767,0.000000,0.000000,0.250000,0,0);}
.m4f_c00443{transform:matrix(0.310379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310379,0.000000,0.000000,0.250000,0,0);}
.m75_c00443{transform:matrix(0.312276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312276,0.000000,0.000000,0.250000,0,0);}
.m4e_c00443{transform:matrix(0.312410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312410,0.000000,0.000000,0.250000,0,0);}
.m73_c00443{transform:matrix(0.312647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312647,0.000000,0.000000,0.250000,0,0);}
.m1a_c00443{transform:matrix(0.315196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315196,0.000000,0.000000,0.250000,0,0);}
.m6c_c00443{transform:matrix(0.315225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315225,0.000000,0.000000,0.250000,0,0);}
.m20_c00443{transform:matrix(0.315678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315678,0.000000,0.000000,0.250000,0,0);}
.m85_c00443{transform:matrix(0.317626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317626,0.000000,0.000000,0.250000,0,0);}
.m22_c00443{transform:matrix(0.317760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317760,0.000000,0.000000,0.250000,0,0);}
.m8b_c00443{transform:matrix(0.318279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318279,0.000000,0.000000,0.250000,0,0);}
.m38_c00443{transform:matrix(0.318539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318539,0.000000,0.000000,0.250000,0,0);}
.m15_c00443{transform:matrix(0.318939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318939,0.000000,0.000000,0.250000,0,0);}
.m48_c00443{transform:matrix(0.319333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319333,0.000000,0.000000,0.250000,0,0);}
.m72_c00443{transform:matrix(0.319409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319409,0.000000,0.000000,0.250000,0,0);}
.m50_c00443{transform:matrix(0.319676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319676,0.000000,0.000000,0.250000,0,0);}
.m3d_c00443{transform:matrix(0.319683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319683,0.000000,0.000000,0.250000,0,0);}
.m5f_c00443{transform:matrix(0.320858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320858,0.000000,0.000000,0.250000,0,0);}
.m82_c00443{transform:matrix(0.321082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321082,0.000000,0.000000,0.250000,0,0);}
.m65_c00443{transform:matrix(0.322089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322089,0.000000,0.000000,0.250000,0,0);}
.m4c_c00443{transform:matrix(0.324237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324237,0.000000,0.000000,0.250000,0,0);}
.m49_c00443{transform:matrix(0.324749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324749,0.000000,0.000000,0.250000,0,0);}
.m13_c00443{transform:matrix(0.325887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325887,0.000000,0.000000,0.250000,0,0);}
.m5a_c00443{transform:matrix(0.326632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326632,0.000000,0.000000,0.250000,0,0);}
.m7f_c00443{transform:matrix(0.328204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328204,0.000000,0.000000,0.250000,0,0);}
.m8e_c00443{transform:matrix(0.329069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329069,0.000000,0.000000,0.250000,0,0);}
.m8_c00443{transform:matrix(0.330900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330900,0.000000,0.000000,0.250000,0,0);}
.m8c_c00443{transform:matrix(0.332960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332960,0.000000,0.000000,0.250000,0,0);}
.m64_c00443{transform:matrix(0.333593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333593,0.000000,0.000000,0.250000,0,0);}
.m11_c00443{transform:matrix(0.335052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335052,0.000000,0.000000,0.250000,0,0);}
.m18_c00443{transform:matrix(0.337095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337095,0.000000,0.000000,0.250000,0,0);}
.m7c_c00443{transform:matrix(0.338421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338421,0.000000,0.000000,0.250000,0,0);}
.m30_c00443{transform:matrix(0.341670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341670,0.000000,0.000000,0.250000,0,0);}
.m8f_c00443{transform:matrix(0.344032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344032,0.000000,0.000000,0.250000,0,0);}
.m67_c00443{transform:matrix(0.344757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344757,0.000000,0.000000,0.250000,0,0);}
.m6e_c00443{transform:matrix(0.347759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347759,0.000000,0.000000,0.250000,0,0);}
.m37_c00443{transform:matrix(0.362789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362789,0.000000,0.000000,0.250000,0,0);}
.m5b_c00443{transform:matrix(0.368736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368736,0.000000,0.000000,0.250000,0,0);}
.m21_c00443{transform:matrix(0.374684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374684,0.000000,0.000000,0.250000,0,0);}
.m8a_c00443{transform:matrix(0.378192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378192,0.000000,0.000000,0.250000,0,0);}
.m57_c00443{transform:matrix(0.380631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380631,0.000000,0.000000,0.250000,0,0);}
.m5d_c00443{transform:matrix(0.386579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386579,0.000000,0.000000,0.250000,0,0);}
.v0_c00443{vertical-align:0.000000px;}
.ls6_c00443{letter-spacing:-2.778930px;}
.lsa_c00443{letter-spacing:-2.628074px;}
.ls8_c00443{letter-spacing:-2.151686px;}
.ls9_c00443{letter-spacing:-1.040114px;}
.ls7_c00443{letter-spacing:-0.150856px;}
.ls5_c00443{letter-spacing:0.000000px;}
.ls4_c00443{letter-spacing:0.452569px;}
.ls0_c00443{letter-spacing:2.389880px;}
.lsd_c00443{letter-spacing:2.405759px;}
.lsf_c00443{letter-spacing:2.712600px;}
.ls3_c00443{letter-spacing:3.603610px;}
.lse_c00443{letter-spacing:3.722400px;}
.lsb_c00443{letter-spacing:3.801610px;}
.ls2_c00443{letter-spacing:3.969900px;}
.ls1_c00443{letter-spacing:4.257000px;}
.lsc_c00443{letter-spacing:54.172998px;}
.sc__c00443{text-shadow:none;}
.sc0_c00443{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00443{-webkit-text-stroke:0px transparent;}
.sc0_c00443{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00443{word-spacing:-22.239380px;}
.ws1_c00443{word-spacing:0.000000px;}
._0_c00443{margin-left:-5.213846px;}
._3_c00443{width:5.018013px;}
._4_c00443{width:11.862061px;}
._2_c00443{width:23.494036px;}
._1_c00443{width:39.142620px;}
.fc0_c00443{color:transparent;}
.fsa_c00443{font-size:24.354000px;}
.fsc_c00443{font-size:39.204000px;}
.fs4_c00443{font-size:39.600000px;}
.fs9_c00443{font-size:50.688000px;}
.fs3_c00443{font-size:53.856198px;}
.fs6_c00443{font-size:54.172998px;}
.fs8_c00443{font-size:54.252000px;}
.fsb_c00443{font-size:55.440000px;}
.fs2_c00443{font-size:72.072198px;}
.fs7_c00443{font-size:74.448000px;}
.fs5_c00443{font-size:76.032198px;}
.fs1_c00443{font-size:79.398000px;}
.fs0_c00443{font-size:85.140000px;}
.y0_c00443{bottom:0.000000px;}
.y1d_c00443{bottom:29.488185px;}
.y1c_c00443{bottom:53.366985px;}
.y1b_c00443{bottom:55.148985px;}
.y1a_c00443{bottom:65.133135px;}
.y1_c00443{bottom:76.500000px;}
.y17_c00443{bottom:92.575935px;}
.y16_c00443{bottom:125.721135px;}
.y15_c00443{bottom:158.509935px;}
.y19_c00443{bottom:204.841935px;}
.y14_c00443{bottom:256.876335px;}
.y13_c00443{bottom:415.825785px;}
.y18_c00443{bottom:430.081785px;}
.y12_c00443{bottom:447.550335px;}
.y11_c00443{bottom:478.913535px;}
.y10_c00443{bottom:511.340985px;}
.yf_c00443{bottom:543.421935px;}
.ye_c00443{bottom:575.497935px;}
.yd_c00443{bottom:607.568985px;}
.yc_c00443{bottom:639.649935px;}
.yb_c00443{bottom:671.720985px;}
.ya_c00443{bottom:704.153385px;}
.y8_c00443{bottom:768.305385px;}
.y7_c00443{bottom:800.386335px;}
.y6_c00443{bottom:831.744585px;}
.y5_c00443{bottom:863.464185px;}
.y4_c00443{bottom:895.545135px;}
.y9_c00443{bottom:921.562335px;}
.y3_c00443{bottom:927.621135px;}
.y2_c00443{bottom:1063.048185px;}
.hb_c00443{height:23.902119px;}
.h7_c00443{height:36.079217px;}
.hd_c00443{height:38.476582px;}
.he_c00443{height:41.301563px;}
.ha_c00443{height:52.866000px;}
.h9_c00443{height:53.245371px;}
.h5_c00443{height:56.170332px;}
.hc_c00443{height:57.822188px;}
.h4_c00443{height:70.734921px;}
.h8_c00443{height:73.066641px;}
.h6_c00443{height:74.621444px;}
.h3_c00443{height:77.924795px;}
.h2_c00443{height:83.560254px;}
.h1_c00443{height:1110.000000px;}
.h0_c00443{height:1263.000000px;}
.w1_c00443{width:781.500000px;}
.w0_c00443{width:892.500000px;}
.x0_c00443{left:0.000000px;}
.x1_c00443{left:55.500000px;}
.x50_c00443{left:94.324185px;}
.x24_c00443{left:95.591385px;}
.xd_c00443{left:97.224885px;}
.x3_c00443{left:98.992035px;}
.x2d_c00443{left:107.011035px;}
.x51_c00443{left:126.900135px;}
.x4_c00443{left:128.791035px;}
.x2e_c00443{left:139.126635px;}
.x16_c00443{left:140.903685px;}
.x5c_c00443{left:147.650535px;}
.x65_c00443{left:148.709835px;}
.x25_c00443{left:150.917535px;}
.x47_c00443{left:160.282935px;}
.x5_c00443{left:161.871885px;}
.x60_c00443{left:169.579035px;}
.x56_c00443{left:170.618535px;}
.x66_c00443{left:180.068085px;}
.x1d_c00443{left:182.706435px;}
.x34_c00443{left:183.785535px;}
.x3b_c00443{left:186.824835px;}
.x6c_c00443{left:192.358935px;}
.x41_c00443{left:193.759785px;}
.x2f_c00443{left:194.883435px;}
.x61_c00443{left:201.818385px;}
.x48_c00443{left:204.100335px;}
.xe_c00443{left:205.223985px;}
.x5d_c00443{left:212.545035px;}
.x3c_c00443{left:214.683435px;}
.x1e_c00443{left:215.787285px;}
.x62_c00443{left:224.182485px;}
.x17_c00443{left:227.182185px;}
.x30_c00443{left:228.315735px;}
.xf_c00443{left:236.745585px;}
.x26_c00443{left:238.364235px;}
.x6_c00443{left:249.051285px;}
.x27_c00443{left:250.145235px;}
.x4c_c00443{left:258.906735px;}
.x52_c00443{left:269.301735px;}
.x18_c00443{left:280.617435px;}
.x63_c00443{left:291.472785px;}
.x57_c00443{left:292.537035px;}
.x28_c00443{left:293.942835px;}
.x53_c00443{left:302.823135px;}
.x6d_c00443{left:312.440985px;}
.x5e_c00443{left:324.608085px;}
.x10_c00443{left:325.687185px;}
.x29_c00443{left:327.058335px;}
.x67_c00443{left:334.404135px;}
.x42_c00443{left:336.379185px;}
.x4d_c00443{left:347.056335px;}
.x19_c00443{left:349.061085px;}
.x49_c00443{left:357.208785px;}
.x1f_c00443{left:359.154135px;}
.x43_c00443{left:368.747235px;}
.x11_c00443{left:369.796635px;}
.x35_c00443{left:370.821285px;}
.x7_c00443{left:371.920185px;}
.x68_c00443{left:378.751185px;}
.x58_c00443{left:379.795635px;}
.x31_c00443{left:381.151935px;}
.x6e_c00443{left:389.497635px;}
.x4e_c00443{left:390.839085px;}
.x44_c00443{left:401.437035px;}
.x20_c00443{left:402.466635px;}
.x1a_c00443{left:414.049635px;}
.x4f_c00443{left:423.499185px;}
.x64_c00443{left:432.097335px;}
.x36_c00443{left:433.839735px;}
.x6f_c00443{left:444.165435px;}
.x2a_c00443{left:445.942485px;}
.x8_c00443{left:447.085935px;}
.x3d_c00443{left:457.911585px;}
.x32_c00443{left:458.956035px;}
.x37_c00443{left:460.287585px;}
.x69_c00443{left:467.856135px;}
.x38_c00443{left:479.587635px;}
.x3e_c00443{left:489.433185px;}
.x1b_c00443{left:492.081435px;}
.x6a_c00443{left:500.590485px;}
.x12_c00443{left:502.431885px;}
.x2b_c00443{left:512.584335px;}
.x73_c00443{left:522.325935px;}
.x5a_c00443{left:523.449585px;}
.x9_c00443{left:524.885085px;}
.x70_c00443{left:533.418885px;}
.x45_c00443{left:534.497985px;}
.x13_c00443{left:535.512735px;}
.x59_c00443{left:536.913585px;}
.x4a_c00443{left:547.961985px;}
.x5f_c00443{left:555.540435px;}
.xa_c00443{left:556.956135px;}
.x14_c00443{left:568.261935px;}
.x3f_c00443{left:577.825335px;}
.x5b_c00443{left:588.492585px;}
.x21_c00443{left:589.715235px;}
.xb_c00443{left:600.278535px;}
.x2c_c00443{left:612.232785px;}
.x22_c00443{left:622.568385px;}
.x54_c00443{left:633.032685px;}
.x15_c00443{left:644.432535px;}
.x40_c00443{left:654.481035px;}
.x1c_c00443{left:667.118385px;}
.x2_c00443{left:672.400035px;}
.x71_c00443{left:686.151135px;}
.x4b_c00443{left:688.725135px;}
.x39_c00443{left:698.649885px;}
.x46_c00443{left:700.214085px;}
.x72_c00443{left:708.297435px;}
.x23_c00443{left:710.401185px;}
.xc_c00443{left:711.633735px;}
.x6b_c00443{left:720.182385px;}
.x74_c00443{left:730.517985px;}
.x55_c00443{left:731.567385px;}
.x3a_c00443{left:733.641435px;}
.x33_c00443{left:751.416885px;}
.x75_c00443{left:778.914135px;}
.x76_c00443{left:781.052535px;}
@media print{
.v0_c00443{vertical-align:0.000000pt;}
.ls6_c00443{letter-spacing:-2.470160pt;}
.lsa_c00443{letter-spacing:-2.336066pt;}
.ls8_c00443{letter-spacing:-1.912610pt;}
.ls9_c00443{letter-spacing:-0.924546pt;}
.ls7_c00443{letter-spacing:-0.134094pt;}
.ls5_c00443{letter-spacing:0.000000pt;}
.ls4_c00443{letter-spacing:0.402283pt;}
.ls0_c00443{letter-spacing:2.124338pt;}
.lsd_c00443{letter-spacing:2.138453pt;}
.lsf_c00443{letter-spacing:2.411200pt;}
.ls3_c00443{letter-spacing:3.203209pt;}
.lse_c00443{letter-spacing:3.308800pt;}
.lsb_c00443{letter-spacing:3.379209pt;}
.ls2_c00443{letter-spacing:3.528800pt;}
.ls1_c00443{letter-spacing:3.784000pt;}
.lsc_c00443{letter-spacing:48.153776pt;}
.ws0_c00443{word-spacing:-19.768338pt;}
.ws1_c00443{word-spacing:0.000000pt;}
._0_c00443{margin-left:-4.634530pt;}
._3_c00443{width:4.460456pt;}
._4_c00443{width:10.544054pt;}
._2_c00443{width:20.883588pt;}
._1_c00443{width:34.793440pt;}
.fsa_c00443{font-size:21.648000pt;}
.fsc_c00443{font-size:34.848000pt;}
.fs4_c00443{font-size:35.200000pt;}
.fs9_c00443{font-size:45.056000pt;}
.fs3_c00443{font-size:47.872176pt;}
.fs6_c00443{font-size:48.153776pt;}
.fs8_c00443{font-size:48.224000pt;}
.fsb_c00443{font-size:49.280000pt;}
.fs2_c00443{font-size:64.064176pt;}
.fs7_c00443{font-size:66.176000pt;}
.fs5_c00443{font-size:67.584176pt;}
.fs1_c00443{font-size:70.576000pt;}
.fs0_c00443{font-size:75.680000pt;}
.y0_c00443{bottom:0.000000pt;}
.y1d_c00443{bottom:26.211720pt;}
.y1c_c00443{bottom:47.437320pt;}
.y1b_c00443{bottom:49.021320pt;}
.y1a_c00443{bottom:57.896120pt;}
.y1_c00443{bottom:68.000000pt;}
.y17_c00443{bottom:82.289720pt;}
.y16_c00443{bottom:111.752120pt;}
.y15_c00443{bottom:140.897720pt;}
.y19_c00443{bottom:182.081720pt;}
.y14_c00443{bottom:228.334520pt;}
.y13_c00443{bottom:369.622920pt;}
.y18_c00443{bottom:382.294920pt;}
.y12_c00443{bottom:397.822520pt;}
.y11_c00443{bottom:425.700920pt;}
.y10_c00443{bottom:454.525320pt;}
.yf_c00443{bottom:483.041720pt;}
.ye_c00443{bottom:511.553720pt;}
.yd_c00443{bottom:540.061320pt;}
.yc_c00443{bottom:568.577720pt;}
.yb_c00443{bottom:597.085320pt;}
.ya_c00443{bottom:625.914120pt;}
.y8_c00443{bottom:682.938120pt;}
.y7_c00443{bottom:711.454520pt;}
.y6_c00443{bottom:739.328520pt;}
.y5_c00443{bottom:767.523720pt;}
.y4_c00443{bottom:796.040120pt;}
.y9_c00443{bottom:819.166520pt;}
.y3_c00443{bottom:824.552120pt;}
.y2_c00443{bottom:944.931720pt;}
.hb_c00443{height:21.246328pt;}
.h7_c00443{height:32.070415pt;}
.hd_c00443{height:34.201406pt;}
.he_c00443{height:36.712500pt;}
.ha_c00443{height:46.992000pt;}
.h9_c00443{height:47.329219pt;}
.h5_c00443{height:49.929184pt;}
.hc_c00443{height:51.397500pt;}
.h4_c00443{height:62.875485pt;}
.h8_c00443{height:64.948125pt;}
.h6_c00443{height:66.330173pt;}
.h3_c00443{height:69.266484pt;}
.h2_c00443{height:74.275781pt;}
.h1_c00443{height:986.666667pt;}
.h0_c00443{height:1122.666667pt;}
.w1_c00443{width:694.666667pt;}
.w0_c00443{width:793.333333pt;}
.x0_c00443{left:0.000000pt;}
.x1_c00443{left:49.333333pt;}
.x50_c00443{left:83.843720pt;}
.x24_c00443{left:84.970120pt;}
.xd_c00443{left:86.422120pt;}
.x3_c00443{left:87.992920pt;}
.x2d_c00443{left:95.120920pt;}
.x51_c00443{left:112.800120pt;}
.x4_c00443{left:114.480920pt;}
.x2e_c00443{left:123.668120pt;}
.x16_c00443{left:125.247720pt;}
.x5c_c00443{left:131.244920pt;}
.x65_c00443{left:132.186520pt;}
.x25_c00443{left:134.148920pt;}
.x47_c00443{left:142.473720pt;}
.x5_c00443{left:143.886120pt;}
.x60_c00443{left:150.736920pt;}
.x56_c00443{left:151.660920pt;}
.x66_c00443{left:160.060520pt;}
.x1d_c00443{left:162.405720pt;}
.x34_c00443{left:163.364920pt;}
.x3b_c00443{left:166.066520pt;}
.x6c_c00443{left:170.985720pt;}
.x41_c00443{left:172.230920pt;}
.x2f_c00443{left:173.229720pt;}
.x61_c00443{left:179.394120pt;}
.x48_c00443{left:181.422520pt;}
.xe_c00443{left:182.421320pt;}
.x5d_c00443{left:188.928920pt;}
.x3c_c00443{left:190.829720pt;}
.x1e_c00443{left:191.810920pt;}
.x62_c00443{left:199.273320pt;}
.x17_c00443{left:201.939720pt;}
.x30_c00443{left:202.947320pt;}
.xf_c00443{left:210.440520pt;}
.x26_c00443{left:211.879320pt;}
.x6_c00443{left:221.378920pt;}
.x27_c00443{left:222.351320pt;}
.x4c_c00443{left:230.139320pt;}
.x52_c00443{left:239.379320pt;}
.x18_c00443{left:249.437720pt;}
.x63_c00443{left:259.086920pt;}
.x57_c00443{left:260.032920pt;}
.x28_c00443{left:261.282520pt;}
.x53_c00443{left:269.176120pt;}
.x6d_c00443{left:277.725320pt;}
.x5e_c00443{left:288.540520pt;}
.x10_c00443{left:289.499720pt;}
.x29_c00443{left:290.718520pt;}
.x67_c00443{left:297.248120pt;}
.x42_c00443{left:299.003720pt;}
.x4d_c00443{left:308.494520pt;}
.x19_c00443{left:310.276520pt;}
.x49_c00443{left:317.518920pt;}
.x1f_c00443{left:319.248120pt;}
.x43_c00443{left:327.775320pt;}
.x11_c00443{left:328.708120pt;}
.x35_c00443{left:329.618920pt;}
.x7_c00443{left:330.595720pt;}
.x68_c00443{left:336.667720pt;}
.x58_c00443{left:337.596120pt;}
.x31_c00443{left:338.801720pt;}
.x6e_c00443{left:346.220120pt;}
.x4e_c00443{left:347.412520pt;}
.x44_c00443{left:356.832920pt;}
.x20_c00443{left:357.748120pt;}
.x1a_c00443{left:368.044120pt;}
.x4f_c00443{left:376.443720pt;}
.x64_c00443{left:384.086520pt;}
.x36_c00443{left:385.635320pt;}
.x6f_c00443{left:394.813720pt;}
.x2a_c00443{left:396.393320pt;}
.x8_c00443{left:397.409720pt;}
.x3d_c00443{left:407.032520pt;}
.x32_c00443{left:407.960920pt;}
.x37_c00443{left:409.144520pt;}
.x69_c00443{left:415.872120pt;}
.x38_c00443{left:426.300120pt;}
.x3e_c00443{left:435.051720pt;}
.x1b_c00443{left:437.405720pt;}
.x6a_c00443{left:444.969320pt;}
.x12_c00443{left:446.606120pt;}
.x2b_c00443{left:455.630520pt;}
.x73_c00443{left:464.289720pt;}
.x5a_c00443{left:465.288520pt;}
.x9_c00443{left:466.564520pt;}
.x70_c00443{left:474.150120pt;}
.x45_c00443{left:475.109320pt;}
.x13_c00443{left:476.011320pt;}
.x59_c00443{left:477.256520pt;}
.x4a_c00443{left:487.077320pt;}
.x5f_c00443{left:493.813720pt;}
.xa_c00443{left:495.072120pt;}
.x14_c00443{left:505.121720pt;}
.x3f_c00443{left:513.622520pt;}
.x5b_c00443{left:523.104520pt;}
.x21_c00443{left:524.191320pt;}
.xb_c00443{left:533.580920pt;}
.x2c_c00443{left:544.206920pt;}
.x22_c00443{left:553.394120pt;}
.x54_c00443{left:562.695720pt;}
.x15_c00443{left:572.828920pt;}
.x40_c00443{left:581.760920pt;}
.x1c_c00443{left:592.994120pt;}
.x2_c00443{left:597.688920pt;}
.x71_c00443{left:609.912120pt;}
.x4b_c00443{left:612.200120pt;}
.x39_c00443{left:621.022120pt;}
.x46_c00443{left:622.412520pt;}
.x72_c00443{left:629.597720pt;}
.x23_c00443{left:631.467720pt;}
.xc_c00443{left:632.563320pt;}
.x6b_c00443{left:640.162120pt;}
.x74_c00443{left:649.349320pt;}
.x55_c00443{left:650.282120pt;}
.x3a_c00443{left:652.125720pt;}
.x33_c00443{left:667.926120pt;}
.x75_c00443{left:692.368120pt;}
.x76_c00443{left:694.268920pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5c83abdfce743ed2048847ca.woff2')format("woff");}.ff1_c00444{font-family:ff1_c00444;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00444;src:url('chunks/assets/font_7e52ca7d0d33a257d1dc7da6.woff2')format("woff");}.ff2_c00444{font-family:ff2_c00444;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00444;src:url('chunks/assets/font_c4314ecea0447e30dd93cf04.woff2')format("woff");}.ff3_c00444{font-family:ff3_c00444;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00444;src:url('chunks/assets/font_987f010ec33ec50b0a2b8f8e.woff2')format("woff");}.ff4_c00444{font-family:ff4_c00444;line-height:1.402354;font-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_c00444{transform:matrix(0.104129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104129,0.000000,0.000000,0.250000,0,0);}
.m83_c00444{transform:matrix(0.169047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169047,0.000000,0.000000,0.250000,0,0);}
.mc_c00444{transform:matrix(0.172619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172619,0.000000,0.000000,0.250000,0,0);}
.m10_c00444{transform:matrix(0.176020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176020,0.000000,0.000000,0.250000,0,0);}
.mf_c00444{transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);}
.m16_c00444{transform:matrix(0.181708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181708,0.000000,0.000000,0.250000,0,0);}
.m60_c00444{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m26_c00444{transform:matrix(0.220358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220358,0.000000,0.000000,0.250000,0,0);}
.m5c_c00444{transform:matrix(0.221572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221572,0.000000,0.000000,0.250000,0,0);}
.m37_c00444{transform:matrix(0.230689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230689,0.000000,0.000000,0.250000,0,0);}
.m1_c00444{transform:matrix(0.239140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239140,0.000000,0.000000,0.250000,0,0);}
.m3_c00444{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m90_c00444{transform:matrix(0.250214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250214,0.000000,0.000000,0.250000,0,0);}
.m19_c00444{transform:matrix(0.250546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250546,0.000000,0.000000,0.250000,0,0);}
.m2c_c00444{transform:matrix(0.251640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251640,0.000000,0.000000,0.250000,0,0);}
.ma_c00444{transform:matrix(0.252313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252313,0.000000,0.000000,0.250000,0,0);}
.m81_c00444{transform:matrix(0.253247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253247,0.000000,0.000000,0.250000,0,0);}
.me_c00444{transform:matrix(0.253890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253890,0.000000,0.000000,0.250000,0,0);}
.m45_c00444{transform:matrix(0.254533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254533,0.000000,0.000000,0.250000,0,0);}
.m21_c00444{transform:matrix(0.255101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255101,0.000000,0.000000,0.250000,0,0);}
.m41_c00444{transform:matrix(0.255291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255291,0.000000,0.000000,0.250000,0,0);}
.m8_c00444{transform:matrix(0.255453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255453,0.000000,0.000000,0.250000,0,0);}
.m7f_c00444{transform:matrix(0.255913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255913,0.000000,0.000000,0.250000,0,0);}
.m12_c00444{transform:matrix(0.256180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256180,0.000000,0.000000,0.250000,0,0);}
.m4e_c00444{transform:matrix(0.256819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256819,0.000000,0.000000,0.250000,0,0);}
.m48_c00444{transform:matrix(0.257015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257015,0.000000,0.000000,0.250000,0,0);}
.m40_c00444{transform:matrix(0.257155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257155,0.000000,0.000000,0.250000,0,0);}
.m47_c00444{transform:matrix(0.258430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258430,0.000000,0.000000,0.250000,0,0);}
.m3f_c00444{transform:matrix(0.259656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259656,0.000000,0.000000,0.250000,0,0);}
.m7a_c00444{transform:matrix(0.260137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260137,0.000000,0.000000,0.250000,0,0);}
.m56_c00444{transform:matrix(0.260399,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260399,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260399,0.000000,0.000000,0.250000,0,0);}
.m3d_c00444{transform:matrix(0.261937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261937,0.000000,0.000000,0.250000,0,0);}
.m28_c00444{transform:matrix(0.262273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262273,0.000000,0.000000,0.250000,0,0);}
.m2_c00444{transform:matrix(0.262512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262512,0.000000,0.000000,0.250000,0,0);}
.md_c00444{transform:matrix(0.263496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263496,0.000000,0.000000,0.250000,0,0);}
.m11_c00444{transform:matrix(0.263854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263854,0.000000,0.000000,0.250000,0,0);}
.m1c_c00444{transform:matrix(0.264211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264211,0.000000,0.000000,0.250000,0,0);}
.m15_c00444{transform:matrix(0.265253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265253,0.000000,0.000000,0.250000,0,0);}
.m6f_c00444{transform:matrix(0.266162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266162,0.000000,0.000000,0.250000,0,0);}
.m59_c00444{transform:matrix(0.266860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266860,0.000000,0.000000,0.250000,0,0);}
.m33_c00444{transform:matrix(0.267754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267754,0.000000,0.000000,0.250000,0,0);}
.m63_c00444{transform:matrix(0.268385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268385,0.000000,0.000000,0.250000,0,0);}
.m82_c00444{transform:matrix(0.268565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268565,0.000000,0.000000,0.250000,0,0);}
.m5_c00444{transform:matrix(0.268880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268880,0.000000,0.000000,0.250000,0,0);}
.m6_c00444{transform:matrix(0.269089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269089,0.000000,0.000000,0.250000,0,0);}
.m2f_c00444{transform:matrix(0.269209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269209,0.000000,0.000000,0.250000,0,0);}
.m8a_c00444{transform:matrix(0.269982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269982,0.000000,0.000000,0.250000,0,0);}
.m87_c00444{transform:matrix(0.270983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270983,0.000000,0.000000,0.250000,0,0);}
.m6d_c00444{transform:matrix(0.273190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273190,0.000000,0.000000,0.250000,0,0);}
.m29_c00444{transform:matrix(0.273280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273280,0.000000,0.000000,0.250000,0,0);}
.m6e_c00444{transform:matrix(0.273393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273393,0.000000,0.000000,0.250000,0,0);}
.m5a_c00444{transform:matrix(0.274121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274121,0.000000,0.000000,0.250000,0,0);}
.m7b_c00444{transform:matrix(0.275009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275009,0.000000,0.000000,0.250000,0,0);}
.m4f_c00444{transform:matrix(0.275302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275302,0.000000,0.000000,0.250000,0,0);}
.m57_c00444{transform:matrix(0.275747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275747,0.000000,0.000000,0.250000,0,0);}
.m22_c00444{transform:matrix(0.275944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275944,0.000000,0.000000,0.250000,0,0);}
.m35_c00444{transform:matrix(0.276513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276513,0.000000,0.000000,0.250000,0,0);}
.m4b_c00444{transform:matrix(0.276830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276830,0.000000,0.000000,0.250000,0,0);}
.m8b_c00444{transform:matrix(0.278356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278356,0.000000,0.000000,0.250000,0,0);}
.m88_c00444{transform:matrix(0.278748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278748,0.000000,0.000000,0.250000,0,0);}
.m54_c00444{transform:matrix(0.278818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278818,0.000000,0.000000,0.250000,0,0);}
.m7e_c00444{transform:matrix(0.279188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279188,0.000000,0.000000,0.250000,0,0);}
.m53_c00444{transform:matrix(0.279975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279975,0.000000,0.000000,0.250000,0,0);}
.m8d_c00444{transform:matrix(0.280208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280208,0.000000,0.000000,0.250000,0,0);}
.m36_c00444{transform:matrix(0.280953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280953,0.000000,0.000000,0.250000,0,0);}
.m7_c00444{transform:matrix(0.280995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280995,0.000000,0.000000,0.250000,0,0);}
.m0_c00444{transform:matrix(0.281276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281276,0.000000,0.000000,0.250000,0,0);}
.m1b_c00444{transform:matrix(0.281741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281741,0.000000,0.000000,0.250000,0,0);}
.m32_c00444{transform:matrix(0.282723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282723,0.000000,0.000000,0.250000,0,0);}
.m2b_c00444{transform:matrix(0.282809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282809,0.000000,0.000000,0.250000,0,0);}
.m1a_c00444{transform:matrix(0.283212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283212,0.000000,0.000000,0.250000,0,0);}
.m4_c00444{transform:matrix(0.283769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283769,0.000000,0.000000,0.250000,0,0);}
.m86_c00444{transform:matrix(0.283841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283841,0.000000,0.000000,0.250000,0,0);}
.m79_c00444{transform:matrix(0.283931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283931,0.000000,0.000000,0.250000,0,0);}
.m73_c00444{transform:matrix(0.285406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285406,0.000000,0.000000,0.250000,0,0);}
.m43_c00444{transform:matrix(0.287651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287651,0.000000,0.000000,0.250000,0,0);}
.m50_c00444{transform:matrix(0.287887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287887,0.000000,0.000000,0.250000,0,0);}
.m77_c00444{transform:matrix(0.287979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287979,0.000000,0.000000,0.250000,0,0);}
.m3c_c00444{transform:matrix(0.288023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288023,0.000000,0.000000,0.250000,0,0);}
.m25_c00444{transform:matrix(0.288701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288701,0.000000,0.000000,0.250000,0,0);}
.m84_c00444{transform:matrix(0.289643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289643,0.000000,0.000000,0.250000,0,0);}
.m2e_c00444{transform:matrix(0.290614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290614,0.000000,0.000000,0.250000,0,0);}
.m55_c00444{transform:matrix(0.290623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290623,0.000000,0.000000,0.250000,0,0);}
.m38_c00444{transform:matrix(0.290833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290833,0.000000,0.000000,0.250000,0,0);}
.m5d_c00444{transform:matrix(0.290937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290937,0.000000,0.000000,0.250000,0,0);}
.m6a_c00444{transform:matrix(0.290940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290940,0.000000,0.000000,0.250000,0,0);}
.m39_c00444{transform:matrix(0.291127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291127,0.000000,0.000000,0.250000,0,0);}
.m27_c00444{transform:matrix(0.292378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292378,0.000000,0.000000,0.250000,0,0);}
.mb_c00444{transform:matrix(0.294077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294077,0.000000,0.000000,0.250000,0,0);}
.m3a_c00444{transform:matrix(0.294433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294433,0.000000,0.000000,0.250000,0,0);}
.m51_c00444{transform:matrix(0.295328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295328,0.000000,0.000000,0.250000,0,0);}
.m75_c00444{transform:matrix(0.295567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295567,0.000000,0.000000,0.250000,0,0);}
.m61_c00444{transform:matrix(0.295568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295568,0.000000,0.000000,0.250000,0,0);}
.m18_c00444{transform:matrix(0.295659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295659,0.000000,0.000000,0.250000,0,0);}
.m17_c00444{transform:matrix(0.296010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296010,0.000000,0.000000,0.250000,0,0);}
.m13_c00444{transform:matrix(0.296807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296807,0.000000,0.000000,0.250000,0,0);}
.m42_c00444{transform:matrix(0.297097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297097,0.000000,0.000000,0.250000,0,0);}
.m6c_c00444{transform:matrix(0.297292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297292,0.000000,0.000000,0.250000,0,0);}
.m65_c00444{transform:matrix(0.297825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297825,0.000000,0.000000,0.250000,0,0);}
.m72_c00444{transform:matrix(0.298102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298102,0.000000,0.000000,0.250000,0,0);}
.m5b_c00444{transform:matrix(0.298547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298547,0.000000,0.000000,0.250000,0,0);}
.m64_c00444{transform:matrix(0.301138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301138,0.000000,0.000000,0.250000,0,0);}
.m1d_c00444{transform:matrix(0.301434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301434,0.000000,0.000000,0.250000,0,0);}
.m31_c00444{transform:matrix(0.301479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301479,0.000000,0.000000,0.250000,0,0);}
.m5e_c00444{transform:matrix(0.301916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301916,0.000000,0.000000,0.250000,0,0);}
.m67_c00444{transform:matrix(0.303771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303771,0.000000,0.000000,0.250000,0,0);}
.m68_c00444{transform:matrix(0.303850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303850,0.000000,0.000000,0.250000,0,0);}
.m66_c00444{transform:matrix(0.304842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304842,0.000000,0.000000,0.250000,0,0);}
.m1e_c00444{transform:matrix(0.305156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305156,0.000000,0.000000,0.250000,0,0);}
.m8c_c00444{transform:matrix(0.305426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305426,0.000000,0.000000,0.250000,0,0);}
.m3b_c00444{transform:matrix(0.305550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305550,0.000000,0.000000,0.250000,0,0);}
.m80_c00444{transform:matrix(0.305711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305711,0.000000,0.000000,0.250000,0,0);}
.m30_c00444{transform:matrix(0.305714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305714,0.000000,0.000000,0.250000,0,0);}
.m34_c00444{transform:matrix(0.306444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306444,0.000000,0.000000,0.250000,0,0);}
.m23_c00444{transform:matrix(0.306861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306861,0.000000,0.000000,0.250000,0,0);}
.m49_c00444{transform:matrix(0.307299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307299,0.000000,0.000000,0.250000,0,0);}
.m70_c00444{transform:matrix(0.309493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309493,0.000000,0.000000,0.250000,0,0);}
.m4d_c00444{transform:matrix(0.309859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309859,0.000000,0.000000,0.250000,0,0);}
.m89_c00444{transform:matrix(0.311825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311825,0.000000,0.000000,0.250000,0,0);}
.m3e_c00444{transform:matrix(0.311907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311907,0.000000,0.000000,0.250000,0,0);}
.m20_c00444{transform:matrix(0.311981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311981,0.000000,0.000000,0.250000,0,0);}
.m71_c00444{transform:matrix(0.312350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312350,0.000000,0.000000,0.250000,0,0);}
.m91_c00444{transform:matrix(0.313345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313345,0.000000,0.000000,0.250000,0,0);}
.m1f_c00444{transform:matrix(0.313790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313790,0.000000,0.000000,0.250000,0,0);}
.m24_c00444{transform:matrix(0.313968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313968,0.000000,0.000000,0.250000,0,0);}
.m8f_c00444{transform:matrix(0.315448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315448,0.000000,0.000000,0.250000,0,0);}
.m7c_c00444{transform:matrix(0.315746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315746,0.000000,0.000000,0.250000,0,0);}
.m44_c00444{transform:matrix(0.316775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316775,0.000000,0.000000,0.250000,0,0);}
.m14_c00444{transform:matrix(0.317506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317506,0.000000,0.000000,0.250000,0,0);}
.m5f_c00444{transform:matrix(0.325016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325016,0.000000,0.000000,0.250000,0,0);}
.m2d_c00444{transform:matrix(0.326506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326506,0.000000,0.000000,0.250000,0,0);}
.m6b_c00444{transform:matrix(0.327006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327006,0.000000,0.000000,0.250000,0,0);}
.m78_c00444{transform:matrix(0.330287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330287,0.000000,0.000000,0.250000,0,0);}
.m9_c00444{transform:matrix(0.330539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330539,0.000000,0.000000,0.250000,0,0);}
.m74_c00444{transform:matrix(0.330925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330925,0.000000,0.000000,0.250000,0,0);}
.m58_c00444{transform:matrix(0.331632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331632,0.000000,0.000000,0.250000,0,0);}
.m8e_c00444{transform:matrix(0.334253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334253,0.000000,0.000000,0.250000,0,0);}
.m46_c00444{transform:matrix(0.334825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334825,0.000000,0.000000,0.250000,0,0);}
.m69_c00444{transform:matrix(0.337967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337967,0.000000,0.000000,0.250000,0,0);}
.m76_c00444{transform:matrix(0.338717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338717,0.000000,0.000000,0.250000,0,0);}
.m2a_c00444{transform:matrix(0.364195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364195,0.000000,0.000000,0.250000,0,0);}
.m7d_c00444{transform:matrix(0.370070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370070,0.000000,0.000000,0.250000,0,0);}
.m4a_c00444{transform:matrix(0.372296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372296,0.000000,0.000000,0.250000,0,0);}
.m4c_c00444{transform:matrix(0.375943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375943,0.000000,0.000000,0.250000,0,0);}
.m85_c00444{transform:matrix(0.393566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393566,0.000000,0.000000,0.250000,0,0);}
.m62_c00444{transform:matrix(0.412658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412658,0.000000,0.000000,0.250000,0,0);}
.v0_c00444{vertical-align:0.000000px;}
.ls12_c00444{letter-spacing:-3.146227px;}
.ls2_c00444{letter-spacing:-2.813580px;}
.ls9_c00444{letter-spacing:-2.403601px;}
.ls14_c00444{letter-spacing:-1.816769px;}
.ls10_c00444{letter-spacing:-0.675259px;}
.ls6_c00444{letter-spacing:0.000000px;}
.lsf_c00444{letter-spacing:1.085238px;}
.lsc_c00444{letter-spacing:2.355368px;}
.lsa_c00444{letter-spacing:2.709076px;}
.ls7_c00444{letter-spacing:3.271792px;}
.ls4_c00444{letter-spacing:3.328063px;}
.ls0_c00444{letter-spacing:3.480800px;}
.lse_c00444{letter-spacing:3.484810px;}
.lsb_c00444{letter-spacing:3.529033px;}
.ls16_c00444{letter-spacing:3.553150px;}
.ls1a_c00444{letter-spacing:3.713926px;}
.ls15_c00444{letter-spacing:3.781810px;}
.ls1_c00444{letter-spacing:3.880810px;}
.ls17_c00444{letter-spacing:3.950110px;}
.ls11_c00444{letter-spacing:3.987245px;}
.ls3_c00444{letter-spacing:4.019400px;}
.ls18_c00444{letter-spacing:4.554000px;}
.ls5_c00444{letter-spacing:4.583700px;}
.ls13_c00444{letter-spacing:57.024198px;}
.lsd_c00444{letter-spacing:58.449798px;}
.ls8_c00444{letter-spacing:59.875398px;}
.ls19_c00444{letter-spacing:64.152198px;}
.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:-23.577800px;}
.ws1_c00444{word-spacing:-20.097000px;}
.ws3_c00444{word-spacing:0.000000px;}
.ws0_c00444{word-spacing:2.250864px;}
._3_c00444{margin-left:-8.842680px;}
._0_c00444{margin-left:-2.813184px;}
._5_c00444{width:2.331648px;}
._7_c00444{width:4.436626px;}
._1_c00444{width:5.868324px;}
._6_c00444{width:7.395300px;}
._2_c00444{width:9.003060px;}
._8_c00444{width:13.184028px;}
._4_c00444{width:57.802536px;}
.fc0_c00444{color:transparent;}
.fse_c00444{font-size:20.394000px;}
.fsa_c00444{font-size:45.738000px;}
.fs8_c00444{font-size:57.024198px;}
.fs4_c00444{font-size:58.449798px;}
.fs3_c00444{font-size:59.875398px;}
.fsd_c00444{font-size:64.152198px;}
.fs5_c00444{font-size:69.696198px;}
.fs7_c00444{font-size:73.656198px;}
.fs9_c00444{font-size:75.636198px;}
.fs0_c00444{font-size:77.616198px;}
.fsb_c00444{font-size:79.002198px;}
.fs1_c00444{font-size:80.388000px;}
.fs6_c00444{font-size:89.892198px;}
.fsc_c00444{font-size:91.080000px;}
.fs2_c00444{font-size:91.674000px;}
.y0_c00444{bottom:0.000000px;}
.y1_c00444{bottom:76.500000px;}
.y16_c00444{bottom:113.959935px;}
.y14_c00444{bottom:147.100185px;}
.y15_c00444{bottom:149.243535px;}
.y13_c00444{bottom:249.391935px;}
.y12_c00444{bottom:281.467935px;}
.y17_c00444{bottom:315.682335px;}
.y11_c00444{bottom:440.422335px;}
.y10_c00444{bottom:472.136985px;}
.yf_c00444{bottom:504.569385px;}
.ye_c00444{bottom:536.645385px;}
.yd_c00444{bottom:568.008585px;}
.yc_c00444{bottom:600.089535px;}
.yb_c00444{bottom:632.160585px;}
.ya_c00444{bottom:664.954335px;}
.y9_c00444{bottom:697.025385px;}
.y8_c00444{bottom:729.106335px;}
.y7_c00444{bottom:760.820985px;}
.y6_c00444{bottom:792.901935px;}
.y5_c00444{bottom:855.628335px;}
.y4_c00444{bottom:888.060735px;}
.y3_c00444{bottom:921.557385px;}
.y2_c00444{bottom:1061.978985px;}
.hf_c00444{height:20.961818px;}
.ha_c00444{height:37.978116px;}
.h6_c00444{height:38.927565px;}
.h5_c00444{height:39.877015px;}
.he_c00444{height:42.725364px;}
.h7_c00444{height:68.403007px;}
.h9_c00444{height:72.253565px;}
.hb_c00444{height:74.232792px;}
.h2_c00444{height:76.176054px;}
.hc_c00444{height:77.536337px;}
.h3_c00444{height:78.896426px;}
.h8_c00444{height:88.224276px;}
.hd_c00444{height:89.390039px;}
.h4_c00444{height:89.973018px;}
.h1_c00444{height:1110.000000px;}
.h0_c00444{height:1263.000000px;}
.w1_c00444{width:781.500000px;}
.w0_c00444{width:892.500000px;}
.x0_c00444{left:0.000000px;}
.x1_c00444{left:55.500000px;}
.x71_c00444{left:63.406485px;}
.x78_c00444{left:85.117185px;}
.x50_c00444{left:88.196085px;}
.x19_c00444{left:90.453285px;}
.x3_c00444{left:91.893735px;}
.x5f_c00444{left:118.455435px;}
.x4e_c00444{left:120.549285px;}
.x10_c00444{left:123.093585px;}
.x2f_c00444{left:125.311185px;}
.x79_c00444{left:126.608085px;}
.x65_c00444{left:130.736385px;}
.x1a_c00444{left:133.889535px;}
.x34_c00444{left:135.141885px;}
.x72_c00444{left:137.963385px;}
.x69_c00444{left:141.106635px;}
.x4_c00444{left:144.591435px;}
.x73_c00444{left:151.377885px;}
.x60_c00444{left:152.783685px;}
.x44_c00444{left:153.833085px;}
.x66_c00444{left:161.936235px;}
.x58_c00444{left:163.881585px;}
.x29_c00444{left:167.005035px;}
.x3e_c00444{left:177.395085px;}
.x21_c00444{left:178.459335px;}
.x45_c00444{left:187.384185px;}
.x59_c00444{left:195.913035px;}
.x2a_c00444{left:200.397735px;}
.x67_c00444{left:205.382385px;}
.x5_c00444{left:209.144385px;}
.x1c_c00444{left:210.213585px;}
.x6a_c00444{left:215.990235px;}
.x70_c00444{left:217.792035px;}
.x11_c00444{left:220.187835px;}
.x3f_c00444{left:241.027335px;}
.x6_c00444{left:242.591535px;}
.x6b_c00444{left:249.719535px;}
.x1b_c00444{left:253.610235px;}
.x35_c00444{left:255.397185px;}
.x7a_c00444{left:259.381935px;}
.x22_c00444{left:266.500035px;}
.x51_c00444{left:273.647835px;}
.x12_c00444{left:274.791285px;}
.x4f_c00444{left:276.246585px;}
.x68_c00444{left:283.240935px;}
.x2b_c00444{left:285.918885px;}
.x23_c00444{left:287.146485px;}
.x74_c00444{left:293.932935px;}
.x61_c00444{left:295.016985px;}
.x5a_c00444{left:306.565335px;}
.x40_c00444{left:308.183985px;}
.x1d_c00444{left:309.495735px;}
.x52_c00444{left:317.356335px;}
.x36_c00444{left:319.242285px;}
.x46_c00444{left:329.246235px;}
.x6c_c00444{left:338.433435px;}
.x13_c00444{left:341.012385px;}
.x5b_c00444{left:350.278785px;}
.x37_c00444{left:351.669735px;}
.x7_c00444{left:353.738835px;}
.x2c_c00444{left:363.470535px;}
.x75_c00444{left:369.796635px;}
.x53_c00444{left:372.479535px;}
.x14_c00444{left:373.801185px;}
.x30_c00444{left:376.345485px;}
.x5c_c00444{left:381.740985px;}
.x7b_c00444{left:391.843935px;}
.x38_c00444{left:394.992135px;}
.x54_c00444{left:405.387135px;}
.x24_c00444{left:406.857285px;}
.x8_c00444{left:408.253185px;}
.x39_c00444{left:417.598785px;}
.x31_c00444{left:428.310585px;}
.x62_c00444{left:436.676085px;}
.x9_c00444{left:440.398485px;}
.x6d_c00444{left:448.610535px;}
.x76_c00444{left:458.980785px;}
.x15_c00444{left:471.553785px;}
.x5d_c00444{left:473.400135px;}
.x6e_c00444{left:480.656835px;}
.x41_c00444{left:482.122035px;}
.x25_c00444{left:483.517935px;}
.x63_c00444{left:492.705135px;}
.x3a_c00444{left:494.224785px;}
.x16_c00444{left:505.411785px;}
.x1e_c00444{left:515.450385px;}
.x47_c00444{left:516.663135px;}
.x2d_c00444{left:537.710535px;}
.x7c_c00444{left:556.985835px;}
.x5e_c00444{left:558.248085px;}
.xa_c00444{left:560.005335px;}
.x48_c00444{left:568.247085px;}
.x32_c00444{left:570.405285px;}
.x49_c00444{left:575.865135px;}
.x4a_c00444{left:582.255585px;}
.x77_c00444{left:588.799485px;}
.x26_c00444{left:592.111035px;}
.x42_c00444{left:593.239635px;}
.xb_c00444{left:594.744435px;}
.x6f_c00444{left:600.570585px;}
.xc_c00444{left:604.357335px;}
.x7d_c00444{left:610.955685px;}
.x4b_c00444{left:614.371185px;}
.x17_c00444{left:617.068935px;}
.x33_c00444{left:624.513735px;}
.x1f_c00444{left:627.176835px;}
.x55_c00444{left:636.111585px;}
.x27_c00444{left:638.091585px;}
.x4c_c00444{left:645.571035px;}
.x64_c00444{left:646.709535px;}
.xd_c00444{left:648.585585px;}
.x20_c00444{left:659.143935px;}
.x56_c00444{left:668.524185px;}
.x3b_c00444{left:669.954735px;}
.x2_c00444{left:678.815235px;}
.x3c_c00444{left:679.919085px;}
.xe_c00444{left:682.379235px;}
.x7e_c00444{left:687.591585px;}
.x4d_c00444{left:690.076485px;}
.x28_c00444{left:692.016885px;}
.x18_c00444{left:705.866985px;}
.x43_c00444{left:712.311885px;}
.x2e_c00444{left:713.806785px;}
.x3d_c00444{left:734.314635px;}
.xf_c00444{left:753.679035px;}
.x57_c00444{left:777.835035px;}
@media print{
.v0_c00444{vertical-align:0.000000pt;}
.ls12_c00444{letter-spacing:-2.796646pt;}
.ls2_c00444{letter-spacing:-2.500960pt;}
.ls9_c00444{letter-spacing:-2.136534pt;}
.ls14_c00444{letter-spacing:-1.614906pt;}
.ls10_c00444{letter-spacing:-0.600230pt;}
.ls6_c00444{letter-spacing:0.000000pt;}
.lsf_c00444{letter-spacing:0.964656pt;}
.lsc_c00444{letter-spacing:2.093661pt;}
.lsa_c00444{letter-spacing:2.408067pt;}
.ls7_c00444{letter-spacing:2.908259pt;}
.ls4_c00444{letter-spacing:2.958278pt;}
.ls0_c00444{letter-spacing:3.094045pt;}
.lse_c00444{letter-spacing:3.097609pt;}
.lsb_c00444{letter-spacing:3.136918pt;}
.ls16_c00444{letter-spacing:3.158355pt;}
.ls1a_c00444{letter-spacing:3.301267pt;}
.ls15_c00444{letter-spacing:3.361609pt;}
.ls1_c00444{letter-spacing:3.449609pt;}
.ls17_c00444{letter-spacing:3.511209pt;}
.ls11_c00444{letter-spacing:3.544218pt;}
.ls3_c00444{letter-spacing:3.572800pt;}
.ls18_c00444{letter-spacing:4.048000pt;}
.ls5_c00444{letter-spacing:4.074400pt;}
.ls13_c00444{letter-spacing:50.688176pt;}
.lsd_c00444{letter-spacing:51.955376pt;}
.ls8_c00444{letter-spacing:53.222576pt;}
.ls19_c00444{letter-spacing:57.024176pt;}
.ws2_c00444{word-spacing:-20.958045pt;}
.ws1_c00444{word-spacing:-17.864000pt;}
.ws3_c00444{word-spacing:0.000000pt;}
.ws0_c00444{word-spacing:2.000768pt;}
._3_c00444{margin-left:-7.860160pt;}
._0_c00444{margin-left:-2.500608pt;}
._5_c00444{width:2.072576pt;}
._7_c00444{width:3.943667pt;}
._1_c00444{width:5.216288pt;}
._6_c00444{width:6.573600pt;}
._2_c00444{width:8.002720pt;}
._8_c00444{width:11.719136pt;}
._4_c00444{width:51.380032pt;}
.fse_c00444{font-size:18.128000pt;}
.fsa_c00444{font-size:40.656000pt;}
.fs8_c00444{font-size:50.688176pt;}
.fs4_c00444{font-size:51.955376pt;}
.fs3_c00444{font-size:53.222576pt;}
.fsd_c00444{font-size:57.024176pt;}
.fs5_c00444{font-size:61.952176pt;}
.fs7_c00444{font-size:65.472176pt;}
.fs9_c00444{font-size:67.232176pt;}
.fs0_c00444{font-size:68.992176pt;}
.fsb_c00444{font-size:70.224176pt;}
.fs1_c00444{font-size:71.456000pt;}
.fs6_c00444{font-size:79.904176pt;}
.fsc_c00444{font-size:80.960000pt;}
.fs2_c00444{font-size:81.488000pt;}
.y0_c00444{bottom:0.000000pt;}
.y1_c00444{bottom:68.000000pt;}
.y16_c00444{bottom:101.297720pt;}
.y14_c00444{bottom:130.755720pt;}
.y15_c00444{bottom:132.660920pt;}
.y13_c00444{bottom:221.681720pt;}
.y12_c00444{bottom:250.193720pt;}
.y17_c00444{bottom:280.606520pt;}
.y11_c00444{bottom:391.486520pt;}
.y10_c00444{bottom:419.677320pt;}
.yf_c00444{bottom:448.506120pt;}
.ye_c00444{bottom:477.018120pt;}
.yd_c00444{bottom:504.896520pt;}
.yc_c00444{bottom:533.412920pt;}
.yb_c00444{bottom:561.920520pt;}
.ya_c00444{bottom:591.070520pt;}
.y9_c00444{bottom:619.578120pt;}
.y8_c00444{bottom:648.094520pt;}
.y7_c00444{bottom:676.285320pt;}
.y6_c00444{bottom:704.801720pt;}
.y5_c00444{bottom:760.558520pt;}
.y4_c00444{bottom:789.387320pt;}
.y3_c00444{bottom:819.162120pt;}
.y2_c00444{bottom:943.981320pt;}
.hf_c00444{height:18.632727pt;}
.ha_c00444{height:33.758325pt;}
.h6_c00444{height:34.602280pt;}
.h5_c00444{height:35.446236pt;}
.he_c00444{height:37.978101pt;}
.h7_c00444{height:60.802673pt;}
.h9_c00444{height:64.225391pt;}
.hb_c00444{height:65.984704pt;}
.h2_c00444{height:67.712048pt;}
.hc_c00444{height:68.921188pt;}
.h3_c00444{height:70.130156pt;}
.h8_c00444{height:78.421579pt;}
.hd_c00444{height:79.457813pt;}
.h4_c00444{height:79.976016pt;}
.h1_c00444{height:986.666667pt;}
.h0_c00444{height:1122.666667pt;}
.w1_c00444{width:694.666667pt;}
.w0_c00444{width:793.333333pt;}
.x0_c00444{left:0.000000pt;}
.x1_c00444{left:49.333333pt;}
.x71_c00444{left:56.361320pt;}
.x78_c00444{left:75.659720pt;}
.x50_c00444{left:78.396520pt;}
.x19_c00444{left:80.402920pt;}
.x3_c00444{left:81.683320pt;}
.x5f_c00444{left:105.293720pt;}
.x4e_c00444{left:107.154920pt;}
.x10_c00444{left:109.416520pt;}
.x2f_c00444{left:111.387720pt;}
.x79_c00444{left:112.540520pt;}
.x65_c00444{left:116.210120pt;}
.x1a_c00444{left:119.012920pt;}
.x34_c00444{left:120.126120pt;}
.x72_c00444{left:122.634120pt;}
.x69_c00444{left:125.428120pt;}
.x4_c00444{left:128.525720pt;}
.x73_c00444{left:134.558120pt;}
.x60_c00444{left:135.807720pt;}
.x44_c00444{left:136.740520pt;}
.x66_c00444{left:143.943320pt;}
.x58_c00444{left:145.672520pt;}
.x29_c00444{left:148.448920pt;}
.x3e_c00444{left:157.684520pt;}
.x21_c00444{left:158.630520pt;}
.x45_c00444{left:166.563720pt;}
.x59_c00444{left:174.144920pt;}
.x2a_c00444{left:178.131320pt;}
.x67_c00444{left:182.562120pt;}
.x5_c00444{left:185.906120pt;}
.x1c_c00444{left:186.856520pt;}
.x6a_c00444{left:191.991320pt;}
.x70_c00444{left:193.592920pt;}
.x11_c00444{left:195.722520pt;}
.x3f_c00444{left:214.246520pt;}
.x6_c00444{left:215.636920pt;}
.x6b_c00444{left:221.972920pt;}
.x1b_c00444{left:225.431320pt;}
.x35_c00444{left:227.019720pt;}
.x7a_c00444{left:230.561720pt;}
.x22_c00444{left:236.888920pt;}
.x51_c00444{left:243.242520pt;}
.x12_c00444{left:244.258920pt;}
.x4f_c00444{left:245.552520pt;}
.x68_c00444{left:251.769720pt;}
.x2b_c00444{left:254.150120pt;}
.x23_c00444{left:255.241320pt;}
.x74_c00444{left:261.273720pt;}
.x61_c00444{left:262.237320pt;}
.x5a_c00444{left:272.502520pt;}
.x40_c00444{left:273.941320pt;}
.x1d_c00444{left:275.107320pt;}
.x52_c00444{left:282.094520pt;}
.x36_c00444{left:283.770920pt;}
.x46_c00444{left:292.663320pt;}
.x6c_c00444{left:300.829720pt;}
.x13_c00444{left:303.122120pt;}
.x5b_c00444{left:311.358920pt;}
.x37_c00444{left:312.595320pt;}
.x7_c00444{left:314.434520pt;}
.x2c_c00444{left:323.084920pt;}
.x75_c00444{left:328.708120pt;}
.x53_c00444{left:331.092920pt;}
.x14_c00444{left:332.267720pt;}
.x30_c00444{left:334.529320pt;}
.x5c_c00444{left:339.325320pt;}
.x7b_c00444{left:348.305720pt;}
.x38_c00444{left:351.104120pt;}
.x54_c00444{left:360.344120pt;}
.x24_c00444{left:361.650920pt;}
.x8_c00444{left:362.891720pt;}
.x39_c00444{left:371.198920pt;}
.x31_c00444{left:380.720520pt;}
.x62_c00444{left:388.156520pt;}
.x9_c00444{left:391.465320pt;}
.x6d_c00444{left:398.764920pt;}
.x76_c00444{left:407.982920pt;}
.x15_c00444{left:419.158920pt;}
.x5d_c00444{left:420.800120pt;}
.x6e_c00444{left:427.250520pt;}
.x41_c00444{left:428.552920pt;}
.x25_c00444{left:429.793720pt;}
.x63_c00444{left:437.960120pt;}
.x3a_c00444{left:439.310920pt;}
.x16_c00444{left:449.254920pt;}
.x1e_c00444{left:458.178120pt;}
.x47_c00444{left:459.256120pt;}
.x2d_c00444{left:477.964920pt;}
.x7c_c00444{left:495.098520pt;}
.x5e_c00444{left:496.220520pt;}
.xa_c00444{left:497.782520pt;}
.x48_c00444{left:505.108520pt;}
.x32_c00444{left:507.026920pt;}
.x49_c00444{left:511.880120pt;}
.x4a_c00444{left:517.560520pt;}
.x77_c00444{left:523.377320pt;}
.x26_c00444{left:526.320920pt;}
.x42_c00444{left:527.324120pt;}
.xb_c00444{left:528.661720pt;}
.x6f_c00444{left:533.840520pt;}
.xc_c00444{left:537.206520pt;}
.x7d_c00444{left:543.071720pt;}
.x4b_c00444{left:546.107720pt;}
.x17_c00444{left:548.505720pt;}
.x33_c00444{left:555.123320pt;}
.x1f_c00444{left:557.490520pt;}
.x55_c00444{left:565.432520pt;}
.x27_c00444{left:567.192520pt;}
.x4c_c00444{left:573.840920pt;}
.x64_c00444{left:574.852920pt;}
.xd_c00444{left:576.520520pt;}
.x20_c00444{left:585.905720pt;}
.x56_c00444{left:594.243720pt;}
.x3b_c00444{left:595.515320pt;}
.x2_c00444{left:603.391320pt;}
.x3c_c00444{left:604.372520pt;}
.xe_c00444{left:606.559320pt;}
.x7e_c00444{left:611.192520pt;}
.x4d_c00444{left:613.401320pt;}
.x28_c00444{left:615.126120pt;}
.x18_c00444{left:627.437320pt;}
.x43_c00444{left:633.166120pt;}
.x2e_c00444{left:634.494920pt;}
.x3d_c00444{left:652.724120pt;}
.xf_c00444{left:669.936920pt;}
.x57_c00444{left:691.408920pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_689a2426027cca2707b84920.woff2')format("woff");}.ff1_c00445{font-family:ff1_c00445;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00445;src:url('chunks/assets/font_763dac38cc0f1d42848e44ce.woff2')format("woff");}.ff2_c00445{font-family:ff2_c00445;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00445;src:url('chunks/assets/font_4c986858962d8c0ec3b56c0a.woff2')format("woff");}.ff3_c00445{font-family:ff3_c00445;line-height:0.666000;font-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_c00445{transform:matrix(0.174603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174603,0.000000,0.000000,0.250000,0,0);}
.m48_c00445{transform:matrix(0.176744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176744,0.000000,0.000000,0.250000,0,0);}
.m78_c00445{transform:matrix(0.211692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211692,0.000000,0.000000,0.250000,0,0);}
.mba_c00445{transform:matrix(0.215399,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215399,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215399,0.000000,0.000000,0.250000,0,0);}
.m44_c00445{transform:matrix(0.242141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242141,0.000000,0.000000,0.250000,0,0);}
.m6_c00445{transform:matrix(0.242827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242827,0.000000,0.000000,0.250000,0,0);}
.mb0_c00445{transform:matrix(0.249399,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249399,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249399,0.000000,0.000000,0.250000,0,0);}
.mbd_c00445{transform:matrix(0.249588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249588,0.000000,0.000000,0.250000,0,0);}
.m0_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);}
.m9d_c00445{transform:matrix(0.251738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251738,0.000000,0.000000,0.250000,0,0);}
.ma_c00445{transform:matrix(0.253798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253798,0.000000,0.000000,0.250000,0,0);}
.m76_c00445{transform:matrix(0.254949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254949,0.000000,0.000000,0.250000,0,0);}
.m1b_c00445{transform:matrix(0.257054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257054,0.000000,0.000000,0.250000,0,0);}
.mac_c00445{transform:matrix(0.257088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257088,0.000000,0.000000,0.250000,0,0);}
.m9c_c00445{transform:matrix(0.258008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258008,0.000000,0.000000,0.250000,0,0);}
.m2d_c00445{transform:matrix(0.258587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258587,0.000000,0.000000,0.250000,0,0);}
.mbc_c00445{transform:matrix(0.259394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259394,0.000000,0.000000,0.250000,0,0);}
.m7b_c00445{transform:matrix(0.261018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261018,0.000000,0.000000,0.250000,0,0);}
.m7d_c00445{transform:matrix(0.261328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261328,0.000000,0.000000,0.250000,0,0);}
.m2a_c00445{transform:matrix(0.261933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261933,0.000000,0.000000,0.250000,0,0);}
.m87_c00445{transform:matrix(0.262010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262010,0.000000,0.000000,0.250000,0,0);}
.m67_c00445{transform:matrix(0.262837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262837,0.000000,0.000000,0.250000,0,0);}
.md_c00445{transform:matrix(0.263763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263763,0.000000,0.000000,0.250000,0,0);}
.m80_c00445{transform:matrix(0.263927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263927,0.000000,0.000000,0.250000,0,0);}
.m4_c00445{transform:matrix(0.264013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264013,0.000000,0.000000,0.250000,0,0);}
.m54_c00445{transform:matrix(0.264376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264376,0.000000,0.000000,0.250000,0,0);}
.m1f_c00445{transform:matrix(0.264544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264544,0.000000,0.000000,0.250000,0,0);}
.ma4_c00445{transform:matrix(0.265009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265009,0.000000,0.000000,0.250000,0,0);}
.m7f_c00445{transform:matrix(0.266147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266147,0.000000,0.000000,0.250000,0,0);}
.m14_c00445{transform:matrix(0.267450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267450,0.000000,0.000000,0.250000,0,0);}
.m77_c00445{transform:matrix(0.267474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267474,0.000000,0.000000,0.250000,0,0);}
.m2b_c00445{transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);}
.m6e_c00445{transform:matrix(0.269092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269092,0.000000,0.000000,0.250000,0,0);}
.m17_c00445{transform:matrix(0.269645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269645,0.000000,0.000000,0.250000,0,0);}
.m66_c00445{transform:matrix(0.270073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270073,0.000000,0.000000,0.250000,0,0);}
.m24_c00445{transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);}
.m98_c00445{transform:matrix(0.270714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270714,0.000000,0.000000,0.250000,0,0);}
.m21_c00445{transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);}
.m15_c00445{transform:matrix(0.271211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271211,0.000000,0.000000,0.250000,0,0);}
.m4a_c00445{transform:matrix(0.271307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271307,0.000000,0.000000,0.250000,0,0);}
.m58_c00445{transform:matrix(0.271948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271948,0.000000,0.000000,0.250000,0,0);}
.m23_c00445{transform:matrix(0.272478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272478,0.000000,0.000000,0.250000,0,0);}
.mf_c00445{transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);}
.m86_c00445{transform:matrix(0.273239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273239,0.000000,0.000000,0.250000,0,0);}
.m38_c00445{transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);}
.m20_c00445{transform:matrix(0.274169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274169,0.000000,0.000000,0.250000,0,0);}
.m16_c00445{transform:matrix(0.274521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274521,0.000000,0.000000,0.250000,0,0);}
.m1e_c00445{transform:matrix(0.274610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274610,0.000000,0.000000,0.250000,0,0);}
.mb3_c00445{transform:matrix(0.274614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274614,0.000000,0.000000,0.250000,0,0);}
.m89_c00445{transform:matrix(0.275368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275368,0.000000,0.000000,0.250000,0,0);}
.ma7_c00445{transform:matrix(0.275391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275391,0.000000,0.000000,0.250000,0,0);}
.m62_c00445{transform:matrix(0.275540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275540,0.000000,0.000000,0.250000,0,0);}
.mb_c00445{transform:matrix(0.275774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275774,0.000000,0.000000,0.250000,0,0);}
.m8_c00445{transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);}
.m35_c00445{transform:matrix(0.276526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276526,0.000000,0.000000,0.250000,0,0);}
.m5a_c00445{transform:matrix(0.276724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276724,0.000000,0.000000,0.250000,0,0);}
.m8e_c00445{transform:matrix(0.276758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276758,0.000000,0.000000,0.250000,0,0);}
.m61_c00445{transform:matrix(0.276991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276991,0.000000,0.000000,0.250000,0,0);}
.m7e_c00445{transform:matrix(0.276997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276997,0.000000,0.000000,0.250000,0,0);}
.mae_c00445{transform:matrix(0.278468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278468,0.000000,0.000000,0.250000,0,0);}
.m3_c00445{transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);}
.m2_c00445{transform:matrix(0.282804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282804,0.000000,0.000000,0.250000,0,0);}
.m7a_c00445{transform:matrix(0.284090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284090,0.000000,0.000000,0.250000,0,0);}
.m99_c00445{transform:matrix(0.284203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284203,0.000000,0.000000,0.250000,0,0);}
.m96_c00445{transform:matrix(0.284471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284471,0.000000,0.000000,0.250000,0,0);}
.m34_c00445{transform:matrix(0.284709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284709,0.000000,0.000000,0.250000,0,0);}
.m5b_c00445{transform:matrix(0.285437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285437,0.000000,0.000000,0.250000,0,0);}
.m8f_c00445{transform:matrix(0.285915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285915,0.000000,0.000000,0.250000,0,0);}
.ma6_c00445{transform:matrix(0.286872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286872,0.000000,0.000000,0.250000,0,0);}
.m37_c00445{transform:matrix(0.287247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287247,0.000000,0.000000,0.250000,0,0);}
.m6c_c00445{transform:matrix(0.288065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288065,0.000000,0.000000,0.250000,0,0);}
.m2f_c00445{transform:matrix(0.288781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288781,0.000000,0.000000,0.250000,0,0);}
.maf_c00445{transform:matrix(0.288957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288957,0.000000,0.000000,0.250000,0,0);}
.m3c_c00445{transform:matrix(0.289251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289251,0.000000,0.000000,0.250000,0,0);}
.mc1_c00445{transform:matrix(0.290194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290194,0.000000,0.000000,0.250000,0,0);}
.m8b_c00445{transform:matrix(0.290229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290229,0.000000,0.000000,0.250000,0,0);}
.m9_c00445{transform:matrix(0.290426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290426,0.000000,0.000000,0.250000,0,0);}
.m53_c00445{transform:matrix(0.290667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290667,0.000000,0.000000,0.250000,0,0);}
.m39_c00445{transform:matrix(0.291495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291495,0.000000,0.000000,0.250000,0,0);}
.m19_c00445{transform:matrix(0.291728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291728,0.000000,0.000000,0.250000,0,0);}
.mc0_c00445{transform:matrix(0.291787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291787,0.000000,0.000000,0.250000,0,0);}
.m65_c00445{transform:matrix(0.292154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292154,0.000000,0.000000,0.250000,0,0);}
.m9e_c00445{transform:matrix(0.292325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292325,0.000000,0.000000,0.250000,0,0);}
.m92_c00445{transform:matrix(0.292377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292377,0.000000,0.000000,0.250000,0,0);}
.mb9_c00445{transform:matrix(0.292506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292506,0.000000,0.000000,0.250000,0,0);}
.mbe_c00445{transform:matrix(0.292571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292571,0.000000,0.000000,0.250000,0,0);}
.mb8_c00445{transform:matrix(0.293541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293541,0.000000,0.000000,0.250000,0,0);}
.mb1_c00445{transform:matrix(0.293915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293915,0.000000,0.000000,0.250000,0,0);}
.m72_c00445{transform:matrix(0.294208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294208,0.000000,0.000000,0.250000,0,0);}
.mb4_c00445{transform:matrix(0.294301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294301,0.000000,0.000000,0.250000,0,0);}
.m51_c00445{transform:matrix(0.294509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294509,0.000000,0.000000,0.250000,0,0);}
.mbf_c00445{transform:matrix(0.294658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294658,0.000000,0.000000,0.250000,0,0);}
.m63_c00445{transform:matrix(0.294819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294819,0.000000,0.000000,0.250000,0,0);}
.m73_c00445{transform:matrix(0.295050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295050,0.000000,0.000000,0.250000,0,0);}
.ma9_c00445{transform:matrix(0.295366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295366,0.000000,0.000000,0.250000,0,0);}
.m6b_c00445{transform:matrix(0.295658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295658,0.000000,0.000000,0.250000,0,0);}
.m12_c00445{transform:matrix(0.296335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296335,0.000000,0.000000,0.250000,0,0);}
.ma0_c00445{transform:matrix(0.296418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296418,0.000000,0.000000,0.250000,0,0);}
.m9b_c00445{transform:matrix(0.296723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296723,0.000000,0.000000,0.250000,0,0);}
.m10_c00445{transform:matrix(0.297455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297455,0.000000,0.000000,0.250000,0,0);}
.m8c_c00445{transform:matrix(0.297812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297812,0.000000,0.000000,0.250000,0,0);}
.m41_c00445{transform:matrix(0.297984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297984,0.000000,0.000000,0.250000,0,0);}
.m5f_c00445{transform:matrix(0.298787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298787,0.000000,0.000000,0.250000,0,0);}
.m31_c00445{transform:matrix(0.299200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299200,0.000000,0.000000,0.250000,0,0);}
.m4c_c00445{transform:matrix(0.300442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300442,0.000000,0.000000,0.250000,0,0);}
.m47_c00445{transform:matrix(0.300495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300495,0.000000,0.000000,0.250000,0,0);}
.m5e_c00445{transform:matrix(0.300565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300565,0.000000,0.000000,0.250000,0,0);}
.maa_c00445{transform:matrix(0.301284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301284,0.000000,0.000000,0.250000,0,0);}
.m90_c00445{transform:matrix(0.301798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301798,0.000000,0.000000,0.250000,0,0);}
.m8d_c00445{transform:matrix(0.302392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302392,0.000000,0.000000,0.250000,0,0);}
.m30_c00445{transform:matrix(0.302408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302408,0.000000,0.000000,0.250000,0,0);}
.m8a_c00445{transform:matrix(0.303113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303113,0.000000,0.000000,0.250000,0,0);}
.m43_c00445{transform:matrix(0.303248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303248,0.000000,0.000000,0.250000,0,0);}
.m5_c00445{transform:matrix(0.303291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303291,0.000000,0.000000,0.250000,0,0);}
.m4d_c00445{transform:matrix(0.303336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303336,0.000000,0.000000,0.250000,0,0);}
.m28_c00445{transform:matrix(0.303497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303497,0.000000,0.000000,0.250000,0,0);}
.mb6_c00445{transform:matrix(0.304007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304007,0.000000,0.000000,0.250000,0,0);}
.m70_c00445{transform:matrix(0.304615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304615,0.000000,0.000000,0.250000,0,0);}
.m74_c00445{transform:matrix(0.304633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304633,0.000000,0.000000,0.250000,0,0);}
.m3b_c00445{transform:matrix(0.304713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304713,0.000000,0.000000,0.250000,0,0);}
.m29_c00445{transform:matrix(0.304866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304866,0.000000,0.000000,0.250000,0,0);}
.mb2_c00445{transform:matrix(0.305603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305603,0.000000,0.000000,0.250000,0,0);}
.m45_c00445{transform:matrix(0.306031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306031,0.000000,0.000000,0.250000,0,0);}
.m3a_c00445{transform:matrix(0.306191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306191,0.000000,0.000000,0.250000,0,0);}
.m64_c00445{transform:matrix(0.306403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306403,0.000000,0.000000,0.250000,0,0);}
.m26_c00445{transform:matrix(0.307385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307385,0.000000,0.000000,0.250000,0,0);}
.mc_c00445{transform:matrix(0.308652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308652,0.000000,0.000000,0.250000,0,0);}
.m71_c00445{transform:matrix(0.309104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309104,0.000000,0.000000,0.250000,0,0);}
.m57_c00445{transform:matrix(0.311059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311059,0.000000,0.000000,0.250000,0,0);}
.mb7_c00445{transform:matrix(0.311603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311603,0.000000,0.000000,0.250000,0,0);}
.m69_c00445{transform:matrix(0.313127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313127,0.000000,0.000000,0.250000,0,0);}
.m55_c00445{transform:matrix(0.313351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313351,0.000000,0.000000,0.250000,0,0);}
.m60_c00445{transform:matrix(0.313494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313494,0.000000,0.000000,0.250000,0,0);}
.m49_c00445{transform:matrix(0.314566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314566,0.000000,0.000000,0.250000,0,0);}
.m1c_c00445{transform:matrix(0.314734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314734,0.000000,0.000000,0.250000,0,0);}
.m82_c00445{transform:matrix(0.314845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314845,0.000000,0.000000,0.250000,0,0);}
.m2e_c00445{transform:matrix(0.315336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315336,0.000000,0.000000,0.250000,0,0);}
.m32_c00445{transform:matrix(0.316292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316292,0.000000,0.000000,0.250000,0,0);}
.m22_c00445{transform:matrix(0.316981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316981,0.000000,0.000000,0.250000,0,0);}
.m6d_c00445{transform:matrix(0.318271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318271,0.000000,0.000000,0.250000,0,0);}
.m5c_c00445{transform:matrix(0.318355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318355,0.000000,0.000000,0.250000,0,0);}
.m40_c00445{transform:matrix(0.318839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318839,0.000000,0.000000,0.250000,0,0);}
.mc3_c00445{transform:matrix(0.319158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319158,0.000000,0.000000,0.250000,0,0);}
.m4f_c00445{transform:matrix(0.319887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319887,0.000000,0.000000,0.250000,0,0);}
.m83_c00445{transform:matrix(0.321912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321912,0.000000,0.000000,0.250000,0,0);}
.m1_c00445{transform:matrix(0.322054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322054,0.000000,0.000000,0.250000,0,0);}
.m42_c00445{transform:matrix(0.322353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322353,0.000000,0.000000,0.250000,0,0);}
.mad_c00445{transform:matrix(0.323186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323186,0.000000,0.000000,0.250000,0,0);}
.m93_c00445{transform:matrix(0.323538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323538,0.000000,0.000000,0.250000,0,0);}
.m7c_c00445{transform:matrix(0.324339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324339,0.000000,0.000000,0.250000,0,0);}
.m25_c00445{transform:matrix(0.324353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324353,0.000000,0.000000,0.250000,0,0);}
.m5d_c00445{transform:matrix(0.324920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324920,0.000000,0.000000,0.250000,0,0);}
.m94_c00445{transform:matrix(0.325892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325892,0.000000,0.000000,0.250000,0,0);}
.m36_c00445{transform:matrix(0.326977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326977,0.000000,0.000000,0.250000,0,0);}
.m79_c00445{transform:matrix(0.328533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328533,0.000000,0.000000,0.250000,0,0);}
.m95_c00445{transform:matrix(0.330819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330819,0.000000,0.000000,0.250000,0,0);}
.mbb_c00445{transform:matrix(0.331528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331528,0.000000,0.000000,0.250000,0,0);}
.m11_c00445{transform:matrix(0.331597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331597,0.000000,0.000000,0.250000,0,0);}
.m1a_c00445{transform:matrix(0.332420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332420,0.000000,0.000000,0.250000,0,0);}
.ma1_c00445{transform:matrix(0.332850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332850,0.000000,0.000000,0.250000,0,0);}
.m84_c00445{transform:matrix(0.332874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332874,0.000000,0.000000,0.250000,0,0);}
.m52_c00445{transform:matrix(0.333256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333256,0.000000,0.000000,0.250000,0,0);}
.m56_c00445{transform:matrix(0.334375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334375,0.000000,0.000000,0.250000,0,0);}
.m3f_c00445{transform:matrix(0.334914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334914,0.000000,0.000000,0.250000,0,0);}
.ma2_c00445{transform:matrix(0.335221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335221,0.000000,0.000000,0.250000,0,0);}
.m7_c00445{transform:matrix(0.335489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335489,0.000000,0.000000,0.250000,0,0);}
.m59_c00445{transform:matrix(0.335494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335494,0.000000,0.000000,0.250000,0,0);}
.m9a_c00445{transform:matrix(0.339674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339674,0.000000,0.000000,0.250000,0,0);}
.m3e_c00445{transform:matrix(0.340792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340792,0.000000,0.000000,0.250000,0,0);}
.mc2_c00445{transform:matrix(0.342481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342481,0.000000,0.000000,0.250000,0,0);}
.mab_c00445{transform:matrix(0.343871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343871,0.000000,0.000000,0.250000,0,0);}
.m33_c00445{transform:matrix(0.345742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345742,0.000000,0.000000,0.250000,0,0);}
.m81_c00445{transform:matrix(0.347549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347549,0.000000,0.000000,0.250000,0,0);}
.m4e_c00445{transform:matrix(0.349880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349880,0.000000,0.000000,0.250000,0,0);}
.ma5_c00445{transform:matrix(0.351305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351305,0.000000,0.000000,0.250000,0,0);}
.m75_c00445{transform:matrix(0.353832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353832,0.000000,0.000000,0.250000,0,0);}
.m46_c00445{transform:matrix(0.354786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354786,0.000000,0.000000,0.250000,0,0);}
.m1d_c00445{transform:matrix(0.355252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355252,0.000000,0.000000,0.250000,0,0);}
.m3d_c00445{transform:matrix(0.359755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359755,0.000000,0.000000,0.250000,0,0);}
.m13_c00445{transform:matrix(0.360601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360601,0.000000,0.000000,0.250000,0,0);}
.m18_c00445{transform:matrix(0.363427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363427,0.000000,0.000000,0.250000,0,0);}
.ma8_c00445{transform:matrix(0.366100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366100,0.000000,0.000000,0.250000,0,0);}
.ma3_c00445{transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);}
.m88_c00445{transform:matrix(0.368308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368308,0.000000,0.000000,0.250000,0,0);}
.m2c_c00445{transform:matrix(0.374294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374294,0.000000,0.000000,0.250000,0,0);}
.m4b_c00445{transform:matrix(0.380833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380833,0.000000,0.000000,0.250000,0,0);}
.m97_c00445{transform:matrix(0.383428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383428,0.000000,0.000000,0.250000,0,0);}
.me_c00445{transform:matrix(0.387076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387076,0.000000,0.000000,0.250000,0,0);}
.m27_c00445{transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);}
.m6f_c00445{transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);}
.m85_c00445{transform:matrix(0.401237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401237,0.000000,0.000000,0.250000,0,0);}
.m50_c00445{transform:matrix(0.415566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415566,0.000000,0.000000,0.250000,0,0);}
.m91_c00445{transform:matrix(0.421123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421123,0.000000,0.000000,0.250000,0,0);}
.m9f_c00445{transform:matrix(0.440189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440189,0.000000,0.000000,0.250000,0,0);}
.m68_c00445{transform:matrix(0.448192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448192,0.000000,0.000000,0.250000,0,0);}
.m6a_c00445{transform:matrix(0.464199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464199,0.000000,0.000000,0.250000,0,0);}
.v0_c00445{vertical-align:0.000000px;}
.ls5_c00445{letter-spacing:-2.647267px;}
.ls15_c00445{letter-spacing:-2.439367px;}
.ls10_c00445{letter-spacing:-2.170759px;}
.ls12_c00445{letter-spacing:-1.021089px;}
.ls17_c00445{letter-spacing:-0.670824px;}
.ls16_c00445{letter-spacing:-0.597526px;}
.lsf_c00445{letter-spacing:-0.015127px;}
.ls3_c00445{letter-spacing:0.000000px;}
.ls1_c00445{letter-spacing:0.136145px;}
.lsc_c00445{letter-spacing:1.081598px;}
.ls0_c00445{letter-spacing:1.316070px;}
.lsd_c00445{letter-spacing:1.981668px;}
.ls18_c00445{letter-spacing:2.148068px;}
.ls7_c00445{letter-spacing:2.534400px;}
.lsa_c00445{letter-spacing:3.010321px;}
.ls11_c00445{letter-spacing:3.259920px;}
.ls13_c00445{letter-spacing:3.286810px;}
.ls14_c00445{letter-spacing:3.484810px;}
.lsb_c00445{letter-spacing:3.524400px;}
.ls2_c00445{letter-spacing:3.534070px;}
.ls19_c00445{letter-spacing:3.668356px;}
.ls8_c00445{letter-spacing:3.672900px;}
.ls1a_c00445{letter-spacing:3.721301px;}
.ls9_c00445{letter-spacing:3.742200px;}
.ls6_c00445{letter-spacing:3.759119px;}
.ls4_c00445{letter-spacing:3.781810px;}
.ls1b_c00445{letter-spacing:59.875398px;}
.lse_c00445{letter-spacing:61.300998px;}
.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;}
}
.ws1_c00445{word-spacing:-21.057118px;}
.ws4_c00445{word-spacing:-20.225119px;}
.ws0_c00445{word-spacing:-19.375543px;}
.ws2_c00445{word-spacing:-4.431871px;}
.ws6_c00445{word-spacing:0.000000px;}
.ws3_c00445{word-spacing:6.504779px;}
.ws5_c00445{word-spacing:9.378957px;}
._1_c00445{margin-left:-9.531082px;}
._a_c00445{margin-left:-6.353869px;}
._0_c00445{margin-left:-3.926846px;}
._6_c00445{width:1.882474px;}
._2_c00445{width:4.160288px;}
._4_c00445{width:6.504608px;}
._7_c00445{width:11.193248px;}
._c_c00445{width:14.355768px;}
._9_c00445{width:26.183522px;}
._5_c00445{width:33.053019px;}
._3_c00445{width:37.116226px;}
._e_c00445{width:38.709000px;}
._d_c00445{width:40.995801px;}
._b_c00445{width:43.025400px;}
._8_c00445{width:87.587181px;}
.fc0_c00445{color:transparent;}
.fsd_c00445{font-size:27.720000px;}
.fs2_c00445{font-size:45.144000px;}
.fs4_c00445{font-size:50.688000px;}
.fs1_c00445{font-size:53.856198px;}
.fs10_c00445{font-size:59.875398px;}
.fsa_c00445{font-size:61.300998px;}
.fsb_c00445{font-size:65.736198px;}
.fs7_c00445{font-size:66.330000px;}
.fsc_c00445{font-size:69.696198px;}
.fs9_c00445{font-size:70.488000px;}
.fse_c00445{font-size:72.864000px;}
.fs5_c00445{font-size:73.458000px;}
.fs6_c00445{font-size:74.844000px;}
.fs3_c00445{font-size:75.636198px;}
.fsf_c00445{font-size:76.230000px;}
.fs8_c00445{font-size:84.744000px;}
.fs0_c00445{font-size:87.912198px;}
.y0_c00445{bottom:0.000000px;}
.y1_c00445{bottom:76.500000px;}
.y1c_c00445{bottom:120.731535px;}
.y1b_c00445{bottom:155.653785px;}
.y1a_c00445{bottom:189.873135px;}
.y19_c00445{bottom:223.374735px;}
.y18_c00445{bottom:255.089385px;}
.y17_c00445{bottom:286.101135px;}
.y16_c00445{bottom:349.183935px;}
.y15_c00445{bottom:381.967785px;}
.y14_c00445{bottom:414.405135px;}
.y13_c00445{bottom:446.832585px;}
.y12_c00445{bottom:472.498335px;}
.y11_c00445{bottom:478.557135px;}
.y10_c00445{bottom:509.915385px;}
.yf_c00445{bottom:542.347785px;}
.ye_c00445{bottom:574.067385px;}
.yd_c00445{bottom:606.856185px;}
.yc_c00445{bottom:671.013135px;}
.yb_c00445{bottom:702.727785px;}
.ya_c00445{bottom:734.447385px;}
.y9_c00445{bottom:765.454185px;}
.y8_c00445{bottom:765.457650px;}
.y7_c00445{bottom:797.886585px;}
.y6_c00445{bottom:829.967535px;}
.y5_c00445{bottom:894.119535px;}
.y4_c00445{bottom:926.908335px;}
.y3_c00445{bottom:952.920585px;}
.y2_c00445{bottom:1057.707135px;}
.hd_c00445{height:28.911094px;}
.hf_c00445{height:39.877015px;}
.ha_c00445{height:40.826465px;}
.h5_c00445{height:52.866000px;}
.h3_c00445{height:56.170332px;}
.hb_c00445{height:64.516483px;}
.h8_c00445{height:69.180117px;}
.h6_c00445{height:72.095010px;}
.hc_c00445{height:72.690957px;}
.h7_c00445{height:73.455293px;}
.h4_c00445{height:74.232792px;}
.he_c00445{height:79.505508px;}
.h9_c00445{height:83.171602px;}
.h2_c00445{height:86.281015px;}
.h1_c00445{height:1110.000000px;}
.h0_c00445{height:1263.000000px;}
.w1_c00445{width:775.500000px;}
.w0_c00445{width:892.500000px;}
.x0_c00445{left:0.000000px;}
.x1_c00445{left:58.500000px;}
.x89_c00445{left:87.631485px;}
.x57_c00445{left:89.037285px;}
.x44_c00445{left:90.794535px;}
.x20_c00445{left:92.294385px;}
.x10_c00445{left:96.536535px;}
.x4_c00445{left:98.061135px;}
.x83_c00445{left:109.361985px;}
.x2e_c00445{left:114.163485px;}
.x75_c00445{left:121.474635px;}
.x50_c00445{left:123.063585px;}
.x21_c00445{left:124.207035px;}
.x11_c00445{left:128.102685px;}
.x68_c00445{left:133.795185px;}
.x3b_c00445{left:134.849535px;}
.x70_c00445{left:142.873485px;}
.x4a_c00445{left:144.403035px;}
.x14_c00445{left:146.704785px;}
.x63_c00445{left:154.624785px;}
.x22_c00445{left:156.565185px;}
.x5_c00445{left:159.267885px;}
.x12_c00445{left:160.416285px;}
.x84_c00445{left:165.638535px;}
.x51_c00445{left:167.049285px;}
.x7b_c00445{left:175.241535px;}
.x38_c00445{left:177.691785px;}
.x15_c00445{left:179.354985px;}
.x6_c00445{left:181.181535px;}
.x90_c00445{left:187.616535px;}
.x52_c00445{left:190.423185px;}
.x13_c00445{left:200.956785px;}
.x7c_c00445{left:209.837085px;}
.x6c_c00445{left:211.104285px;}
.x16_c00445{left:212.554635px;}
.x76_c00445{left:220.563735px;}
.x64_c00445{left:221.821035px;}
.x5d_c00445{left:223.568385px;}
.x91_c00445{left:231.805185px;}
.x45_c00445{left:233.537685px;}
.x7_c00445{left:235.334535px;}
.x71_c00445{left:242.294235px;}
.x17_c00445{left:244.011885px;}
.x2f_c00445{left:245.343435px;}
.x23_c00445{left:247.026435px;}
.x85_c00445{left:252.986235px;}
.x53_c00445{left:255.980985px;}
.x77_c00445{left:265.653285px;}
.x8_c00445{left:266.880885px;}
.x6d_c00445{left:277.399635px;}
.x4b_c00445{left:278.468835px;}
.x8a_c00445{left:287.245185px;}
.x30_c00445{left:289.314285px;}
.x86_c00445{left:298.323285px;}
.x24_c00445{left:301.303185px;}
.x3c_c00445{left:310.361685px;}
.x5e_c00445{left:313.084185px;}
.x25_c00445{left:321.415035px;}
.x8b_c00445{left:332.265435px;}
.x39_c00445{left:333.681135px;}
.x9_c00445{left:335.171085px;}
.x18_c00445{left:345.937335px;}
.xa_c00445{left:354.911685px;}
.x31_c00445{left:356.159085px;}
.x3d_c00445{left:363.826635px;}
.x65_c00445{left:366.524385px;}
.x3e_c00445{left:378.255885px;}
.x66_c00445{left:387.002535px;}
.x32_c00445{left:388.937985px;}
.x69_c00445{left:390.066585px;}
.x72_c00445{left:399.243885px;}
.x4c_c00445{left:400.382385px;}
.x26_c00445{left:401.545635px;}
.x92_c00445{left:408.554835px;}
.x3f_c00445{left:410.356635px;}
.x19_c00445{left:421.246635px;}
.xb_c00445{left:422.345535px;}
.x8c_c00445{left:430.542735px;}
.x46_c00445{left:431.582235px;}
.x5f_c00445{left:433.492935px;}
.x78_c00445{left:440.759535px;}
.x58_c00445{left:444.145335px;}
.x7d_c00445{left:452.773185px;}
.x3a_c00445{left:454.134435px;}
.x40_c00445{left:455.857035px;}
.x33_c00445{left:465.182835px;}
.x1a_c00445{left:466.271835px;}
.x54_c00445{left:475.736235px;}
.x7e_c00445{left:485.527335px;}
.x41_c00445{left:487.670685px;}
.x27_c00445{left:488.759685px;}
.x28_c00445{left:497.996385px;}
.x47_c00445{left:499.461585px;}
.x79_c00445{left:507.114285px;}
.x59_c00445{left:510.099135px;}
.x6e_c00445{left:517.435035px;}
.x48_c00445{left:519.355635px;}
.x61_c00445{left:530.107035px;}
.x5a_c00445{left:531.760335px;}
.x87_c00445{left:540.477285px;}
.x29_c00445{left:541.680135px;}
.x4d_c00445{left:543.912585px;}
.x8d_c00445{left:551.362335px;}
.xc_c00445{left:553.446285px;}
.x42_c00445{left:563.771985px;}
.x55_c00445{left:565.385685px;}
.x6f_c00445{left:574.597635px;}
.x2a_c00445{left:575.953935px;}
.x73_c00445{left:584.081835px;}
.x60_c00445{left:585.962835px;}
.xd_c00445{left:587.398335px;}
.x7f_c00445{left:596.372685px;}
.x43_c00445{left:597.471585px;}
.x6a_c00445{left:607.921035px;}
.x34_c00445{left:609.178335px;}
.x49_c00445{left:618.959535px;}
.x1b_c00445{left:622.672035px;}
.x8e_c00445{left:627.211185px;}
.x80_c00445{left:628.488285px;}
.x2b_c00445{left:630.413835px;}
.x81_c00445{left:638.650635px;}
.x74_c00445{left:640.105935px;}
.x35_c00445{left:641.308785px;}
.x1c_c00445{left:642.368085px;}
.x88_c00445{left:649.669335px;}
.x2c_c00445{left:651.792885px;}
.x5b_c00445{left:653.277885px;}
.x8f_c00445{left:660.366285px;}
.x1d_c00445{left:663.915435px;}
.xe_c00445{left:665.157885px;}
.x36_c00445{left:672.775935px;}
.x5c_c00445{left:674.444085px;}
.x2_c00445{left:686.507235px;}
.x56_c00445{left:694.912335px;}
.xf_c00445{left:696.719085px;}
.x1e_c00445{left:698.228835px;}
.x7a_c00445{left:705.718185px;}
.x37_c00445{left:707.549685px;}
.x62_c00445{left:709.891035px;}
.x4e_c00445{left:718.157535px;}
.x82_c00445{left:727.359585px;}
.x6b_c00445{left:728.592135px;}
.x2d_c00445{left:731.730435px;}
.x67_c00445{left:740.358285px;}
.x1f_c00445{left:741.427485px;}
.x4f_c00445{left:751.406685px;}
.x3_c00445{left:756.257685px;}
@media print{
.v0_c00445{vertical-align:0.000000pt;}
.ls5_c00445{letter-spacing:-2.353126pt;}
.ls15_c00445{letter-spacing:-2.168326pt;}
.ls10_c00445{letter-spacing:-1.929563pt;}
.ls12_c00445{letter-spacing:-0.907634pt;}
.ls17_c00445{letter-spacing:-0.596288pt;}
.ls16_c00445{letter-spacing:-0.531134pt;}
.lsf_c00445{letter-spacing:-0.013446pt;}
.ls3_c00445{letter-spacing:0.000000pt;}
.ls1_c00445{letter-spacing:0.121018pt;}
.lsc_c00445{letter-spacing:0.961420pt;}
.ls0_c00445{letter-spacing:1.169840pt;}
.lsd_c00445{letter-spacing:1.761483pt;}
.ls18_c00445{letter-spacing:1.909394pt;}
.ls7_c00445{letter-spacing:2.252800pt;}
.lsa_c00445{letter-spacing:2.675841pt;}
.ls11_c00445{letter-spacing:2.897707pt;}
.ls13_c00445{letter-spacing:2.921609pt;}
.ls14_c00445{letter-spacing:3.097609pt;}
.lsb_c00445{letter-spacing:3.132800pt;}
.ls2_c00445{letter-spacing:3.141396pt;}
.ls19_c00445{letter-spacing:3.260761pt;}
.ls8_c00445{letter-spacing:3.264800pt;}
.ls1a_c00445{letter-spacing:3.307823pt;}
.ls9_c00445{letter-spacing:3.326400pt;}
.ls6_c00445{letter-spacing:3.341439pt;}
.ls4_c00445{letter-spacing:3.361609pt;}
.ls1b_c00445{letter-spacing:53.222576pt;}
.lse_c00445{letter-spacing:54.489776pt;}
.ws1_c00445{word-spacing:-18.717438pt;}
.ws4_c00445{word-spacing:-17.977884pt;}
.ws0_c00445{word-spacing:-17.222705pt;}
.ws2_c00445{word-spacing:-3.939441pt;}
.ws6_c00445{word-spacing:0.000000pt;}
.ws3_c00445{word-spacing:5.782025pt;}
.ws5_c00445{word-spacing:8.336851pt;}
._1_c00445{margin-left:-8.472073pt;}
._a_c00445{margin-left:-5.647884pt;}
._0_c00445{margin-left:-3.490530pt;}
._6_c00445{width:1.673310pt;}
._2_c00445{width:3.698034pt;}
._4_c00445{width:5.781874pt;}
._7_c00445{width:9.949554pt;}
._c_c00445{width:12.760683pt;}
._9_c00445{width:23.274241pt;}
._5_c00445{width:29.380461pt;}
._3_c00445{width:32.992201pt;}
._e_c00445{width:34.408000pt;}
._d_c00445{width:36.440712pt;}
._b_c00445{width:38.244800pt;}
._8_c00445{width:77.855272pt;}
.fsd_c00445{font-size:24.640000pt;}
.fs2_c00445{font-size:40.128000pt;}
.fs4_c00445{font-size:45.056000pt;}
.fs1_c00445{font-size:47.872176pt;}
.fs10_c00445{font-size:53.222576pt;}
.fsa_c00445{font-size:54.489776pt;}
.fsb_c00445{font-size:58.432176pt;}
.fs7_c00445{font-size:58.960000pt;}
.fsc_c00445{font-size:61.952176pt;}
.fs9_c00445{font-size:62.656000pt;}
.fse_c00445{font-size:64.768000pt;}
.fs5_c00445{font-size:65.296000pt;}
.fs6_c00445{font-size:66.528000pt;}
.fs3_c00445{font-size:67.232176pt;}
.fsf_c00445{font-size:67.760000pt;}
.fs8_c00445{font-size:75.328000pt;}
.fs0_c00445{font-size:78.144176pt;}
.y0_c00445{bottom:0.000000pt;}
.y1_c00445{bottom:68.000000pt;}
.y1c_c00445{bottom:107.316920pt;}
.y1b_c00445{bottom:138.358920pt;}
.y1a_c00445{bottom:168.776120pt;}
.y19_c00445{bottom:198.555320pt;}
.y18_c00445{bottom:226.746120pt;}
.y17_c00445{bottom:254.312120pt;}
.y16_c00445{bottom:310.385720pt;}
.y15_c00445{bottom:339.526920pt;}
.y14_c00445{bottom:368.360120pt;}
.y13_c00445{bottom:397.184520pt;}
.y12_c00445{bottom:419.998520pt;}
.y11_c00445{bottom:425.384120pt;}
.y10_c00445{bottom:453.258120pt;}
.yf_c00445{bottom:482.086920pt;}
.ye_c00445{bottom:510.282120pt;}
.yd_c00445{bottom:539.427720pt;}
.yc_c00445{bottom:596.456120pt;}
.yb_c00445{bottom:624.646920pt;}
.ya_c00445{bottom:652.842120pt;}
.y9_c00445{bottom:680.403720pt;}
.y8_c00445{bottom:680.406800pt;}
.y7_c00445{bottom:709.232520pt;}
.y6_c00445{bottom:737.748920pt;}
.y5_c00445{bottom:794.772920pt;}
.y4_c00445{bottom:823.918520pt;}
.y3_c00445{bottom:847.040520pt;}
.y2_c00445{bottom:940.184120pt;}
.hd_c00445{height:25.698750pt;}
.hf_c00445{height:35.446236pt;}
.ha_c00445{height:36.290191pt;}
.h5_c00445{height:46.992000pt;}
.h3_c00445{height:49.929184pt;}
.hb_c00445{height:57.347985pt;}
.h8_c00445{height:61.493438pt;}
.h6_c00445{height:64.084453pt;}
.hc_c00445{height:64.614184pt;}
.h7_c00445{height:65.293594pt;}
.h4_c00445{height:65.984704pt;}
.he_c00445{height:70.671563pt;}
.h9_c00445{height:73.930313pt;}
.h2_c00445{height:76.694235pt;}
.h1_c00445{height:986.666667pt;}
.h0_c00445{height:1122.666667pt;}
.w1_c00445{width:689.333333pt;}
.w0_c00445{width:793.333333pt;}
.x0_c00445{left:0.000000pt;}
.x1_c00445{left:52.000000pt;}
.x89_c00445{left:77.894653pt;}
.x57_c00445{left:79.144253pt;}
.x44_c00445{left:80.706253pt;}
.x20_c00445{left:82.039453pt;}
.x10_c00445{left:85.810253pt;}
.x4_c00445{left:87.165453pt;}
.x83_c00445{left:97.210653pt;}
.x2e_c00445{left:101.478653pt;}
.x75_c00445{left:107.977453pt;}
.x50_c00445{left:109.389853pt;}
.x21_c00445{left:110.406253pt;}
.x11_c00445{left:113.869053pt;}
.x68_c00445{left:118.929053pt;}
.x3b_c00445{left:119.866253pt;}
.x70_c00445{left:126.998653pt;}
.x4a_c00445{left:128.358253pt;}
.x14_c00445{left:130.404253pt;}
.x63_c00445{left:137.444253pt;}
.x22_c00445{left:139.169053pt;}
.x5_c00445{left:141.571453pt;}
.x12_c00445{left:142.592253pt;}
.x84_c00445{left:147.234253pt;}
.x51_c00445{left:148.488253pt;}
.x7b_c00445{left:155.770253pt;}
.x38_c00445{left:157.948253pt;}
.x15_c00445{left:159.426653pt;}
.x6_c00445{left:161.050253pt;}
.x90_c00445{left:166.770253pt;}
.x52_c00445{left:169.265053pt;}
.x13_c00445{left:178.628253pt;}
.x7c_c00445{left:186.521853pt;}
.x6c_c00445{left:187.648253pt;}
.x16_c00445{left:188.937453pt;}
.x76_c00445{left:196.056653pt;}
.x64_c00445{left:197.174253pt;}
.x5d_c00445{left:198.727453pt;}
.x91_c00445{left:206.049053pt;}
.x45_c00445{left:207.589053pt;}
.x7_c00445{left:209.186253pt;}
.x71_c00445{left:215.372653pt;}
.x17_c00445{left:216.899453pt;}
.x2f_c00445{left:218.083053pt;}
.x23_c00445{left:219.579053pt;}
.x85_c00445{left:224.876653pt;}
.x53_c00445{left:227.538653pt;}
.x77_c00445{left:236.136253pt;}
.x8_c00445{left:237.227453pt;}
.x6d_c00445{left:246.577453pt;}
.x4b_c00445{left:247.527853pt;}
.x8a_c00445{left:255.329053pt;}
.x30_c00445{left:257.168253pt;}
.x86_c00445{left:265.176253pt;}
.x24_c00445{left:267.825053pt;}
.x3c_c00445{left:275.877053pt;}
.x5e_c00445{left:278.297053pt;}
.x25_c00445{left:285.702253pt;}
.x8b_c00445{left:295.347053pt;}
.x39_c00445{left:296.605453pt;}
.x9_c00445{left:297.929853pt;}
.x18_c00445{left:307.499853pt;}
.xa_c00445{left:315.477053pt;}
.x31_c00445{left:316.585853pt;}
.x3d_c00445{left:323.401453pt;}
.x65_c00445{left:325.799453pt;}
.x3e_c00445{left:336.227453pt;}
.x66_c00445{left:344.002253pt;}
.x32_c00445{left:345.722653pt;}
.x69_c00445{left:346.725853pt;}
.x72_c00445{left:354.883453pt;}
.x4c_c00445{left:355.895453pt;}
.x26_c00445{left:356.929453pt;}
.x92_c00445{left:363.159853pt;}
.x3f_c00445{left:364.761453pt;}
.x19_c00445{left:374.441453pt;}
.xb_c00445{left:375.418253pt;}
.x8c_c00445{left:382.704653pt;}
.x46_c00445{left:383.628653pt;}
.x5f_c00445{left:385.327053pt;}
.x78_c00445{left:391.786253pt;}
.x58_c00445{left:394.795853pt;}
.x7d_c00445{left:402.465053pt;}
.x3a_c00445{left:403.675053pt;}
.x40_c00445{left:405.206253pt;}
.x33_c00445{left:413.495853pt;}
.x1a_c00445{left:414.463853pt;}
.x54_c00445{left:422.876653pt;}
.x7e_c00445{left:431.579853pt;}
.x41_c00445{left:433.485053pt;}
.x27_c00445{left:434.453053pt;}
.x28_c00445{left:442.663453pt;}
.x47_c00445{left:443.965853pt;}
.x79_c00445{left:450.768253pt;}
.x59_c00445{left:453.421453pt;}
.x6e_c00445{left:459.942253pt;}
.x48_c00445{left:461.649453pt;}
.x61_c00445{left:471.206253pt;}
.x5a_c00445{left:472.675853pt;}
.x87_c00445{left:480.424253pt;}
.x29_c00445{left:481.493453pt;}
.x4d_c00445{left:483.477853pt;}
.x8d_c00445{left:490.099853pt;}
.xc_c00445{left:491.952253pt;}
.x42_c00445{left:501.130653pt;}
.x55_c00445{left:502.565053pt;}
.x6f_c00445{left:510.753453pt;}
.x2a_c00445{left:511.959053pt;}
.x73_c00445{left:519.183853pt;}
.x60_c00445{left:520.855853pt;}
.xd_c00445{left:522.131853pt;}
.x7f_c00445{left:530.109053pt;}
.x43_c00445{left:531.085853pt;}
.x6a_c00445{left:540.374253pt;}
.x34_c00445{left:541.491853pt;}
.x49_c00445{left:550.186253pt;}
.x1b_c00445{left:553.486253pt;}
.x8e_c00445{left:557.521053pt;}
.x80_c00445{left:558.656253pt;}
.x2b_c00445{left:560.367853pt;}
.x81_c00445{left:567.689453pt;}
.x74_c00445{left:568.983053pt;}
.x35_c00445{left:570.052253pt;}
.x1c_c00445{left:570.993853pt;}
.x88_c00445{left:577.483853pt;}
.x2c_c00445{left:579.371453pt;}
.x5b_c00445{left:580.691453pt;}
.x8f_c00445{left:586.992253pt;}
.x1d_c00445{left:590.147053pt;}
.xe_c00445{left:591.251453pt;}
.x36_c00445{left:598.023053pt;}
.x5c_c00445{left:599.505853pt;}
.x2_c00445{left:610.228653pt;}
.x56_c00445{left:617.699853pt;}
.xf_c00445{left:619.305853pt;}
.x1e_c00445{left:620.647853pt;}
.x7a_c00445{left:627.305053pt;}
.x37_c00445{left:628.933053pt;}
.x62_c00445{left:631.014253pt;}
.x4e_c00445{left:638.362253pt;}
.x82_c00445{left:646.541853pt;}
.x6b_c00445{left:647.637453pt;}
.x2d_c00445{left:650.427053pt;}
.x67_c00445{left:658.096253pt;}
.x1f_c00445{left:659.046653pt;}
.x4f_c00445{left:667.917053pt;}
.x3_c00445{left:672.229053pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c040e16bdd2d9a5af19dcbfa.woff2')format("woff");}.ff1_c00446{font-family:ff1_c00446;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00446;src:url('chunks/assets/font_0e793fc5c934ac77941e0aca.woff2')format("woff");}.ff2_c00446{font-family:ff2_c00446;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00446;src:url('chunks/assets/font_c795486c1736f616e352d042.woff2')format("woff");}.ff3_c00446{font-family:ff3_c00446;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m12_c00446{transform:matrix(0.096154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096154,0.000000,0.000000,0.250000,0,0);}
.ma2_c00446{transform:matrix(0.165972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165972,0.000000,0.000000,0.250000,0,0);}
.ma_c00446{transform:matrix(0.179217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179217,0.000000,0.000000,0.250000,0,0);}
.m42_c00446{transform:matrix(0.193202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193202,0.000000,0.000000,0.250000,0,0);}
.maa_c00446{transform:matrix(0.202586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202586,0.000000,0.000000,0.250000,0,0);}
.m58_c00446{transform:matrix(0.214126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214126,0.000000,0.000000,0.250000,0,0);}
.m6b_c00446{transform:matrix(0.214949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214949,0.000000,0.000000,0.250000,0,0);}
.m28_c00446{transform:matrix(0.243635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243635,0.000000,0.000000,0.250000,0,0);}
.m34_c00446{transform:matrix(0.245489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245489,0.000000,0.000000,0.250000,0,0);}
.m16_c00446{transform:matrix(0.249722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249722,0.000000,0.000000,0.250000,0,0);}
.m0_c00446{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00446{transform:matrix(0.251562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251562,0.000000,0.000000,0.250000,0,0);}
.m7_c00446{transform:matrix(0.251640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251640,0.000000,0.000000,0.250000,0,0);}
.m6c_c00446{transform:matrix(0.252262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252262,0.000000,0.000000,0.250000,0,0);}
.m4_c00446{transform:matrix(0.252313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252313,0.000000,0.000000,0.250000,0,0);}
.m74_c00446{transform:matrix(0.253343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253343,0.000000,0.000000,0.250000,0,0);}
.m51_c00446{transform:matrix(0.254533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254533,0.000000,0.000000,0.250000,0,0);}
.m5e_c00446{transform:matrix(0.255101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255101,0.000000,0.000000,0.250000,0,0);}
.m60_c00446{transform:matrix(0.255289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255289,0.000000,0.000000,0.250000,0,0);}
.m29_c00446{transform:matrix(0.255433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255433,0.000000,0.000000,0.250000,0,0);}
.m3e_c00446{transform:matrix(0.256180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256180,0.000000,0.000000,0.250000,0,0);}
.m97_c00446{transform:matrix(0.256819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256819,0.000000,0.000000,0.250000,0,0);}
.m1b_c00446{transform:matrix(0.258084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258084,0.000000,0.000000,0.250000,0,0);}
.m10_c00446{transform:matrix(0.258132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258132,0.000000,0.000000,0.250000,0,0);}
.ma6_c00446{transform:matrix(0.259656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259656,0.000000,0.000000,0.250000,0,0);}
.m6f_c00446{transform:matrix(0.259733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259733,0.000000,0.000000,0.250000,0,0);}
.m1_c00446{transform:matrix(0.259914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259914,0.000000,0.000000,0.250000,0,0);}
.m3a_c00446{transform:matrix(0.259977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259977,0.000000,0.000000,0.250000,0,0);}
.m70_c00446{transform:matrix(0.260986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260986,0.000000,0.000000,0.250000,0,0);}
.mb5_c00446{transform:matrix(0.261350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261350,0.000000,0.000000,0.250000,0,0);}
.m22_c00446{transform:matrix(0.261773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261773,0.000000,0.000000,0.250000,0,0);}
.m71_c00446{transform:matrix(0.262002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262002,0.000000,0.000000,0.250000,0,0);}
.m4f_c00446{transform:matrix(0.262473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262473,0.000000,0.000000,0.250000,0,0);}
.m1a_c00446{transform:matrix(0.264211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264211,0.000000,0.000000,0.250000,0,0);}
.m3b_c00446{transform:matrix(0.264424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264424,0.000000,0.000000,0.250000,0,0);}
.m5_c00446{transform:matrix(0.265756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265756,0.000000,0.000000,0.250000,0,0);}
.m46_c00446{transform:matrix(0.266070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266070,0.000000,0.000000,0.250000,0,0);}
.m14_c00446{transform:matrix(0.266124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266124,0.000000,0.000000,0.250000,0,0);}
.m2a_c00446{transform:matrix(0.266643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266643,0.000000,0.000000,0.250000,0,0);}
.m2d_c00446{transform:matrix(0.266860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266860,0.000000,0.000000,0.250000,0,0);}
.m8b_c00446{transform:matrix(0.267222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267222,0.000000,0.000000,0.250000,0,0);}
.ma7_c00446{transform:matrix(0.267773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267773,0.000000,0.000000,0.250000,0,0);}
.m8a_c00446{transform:matrix(0.267885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267885,0.000000,0.000000,0.250000,0,0);}
.m43_c00446{transform:matrix(0.269089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269089,0.000000,0.000000,0.250000,0,0);}
.m17_c00446{transform:matrix(0.269475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269475,0.000000,0.000000,0.250000,0,0);}
.m50_c00446{transform:matrix(0.269616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269616,0.000000,0.000000,0.250000,0,0);}
.m64_c00446{transform:matrix(0.270193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270193,0.000000,0.000000,0.250000,0,0);}
.maf_c00446{transform:matrix(0.270648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270648,0.000000,0.000000,0.250000,0,0);}
.ma0_c00446{transform:matrix(0.270952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270952,0.000000,0.000000,0.250000,0,0);}
.m8c_c00446{transform:matrix(0.271711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271711,0.000000,0.000000,0.250000,0,0);}
.m92_c00446{transform:matrix(0.272082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272082,0.000000,0.000000,0.250000,0,0);}
.m11_c00446{transform:matrix(0.272095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272095,0.000000,0.000000,0.250000,0,0);}
.mb1_c00446{transform:matrix(0.272096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272096,0.000000,0.000000,0.250000,0,0);}
.m80_c00446{transform:matrix(0.273039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273039,0.000000,0.000000,0.250000,0,0);}
.m4e_c00446{transform:matrix(0.274209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274209,0.000000,0.000000,0.250000,0,0);}
.m7b_c00446{transform:matrix(0.274889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274889,0.000000,0.000000,0.250000,0,0);}
.m4c_c00446{transform:matrix(0.275158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275158,0.000000,0.000000,0.250000,0,0);}
.ma8_c00446{transform:matrix(0.275257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275257,0.000000,0.000000,0.250000,0,0);}
.ma5_c00446{transform:matrix(0.275764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275764,0.000000,0.000000,0.250000,0,0);}
.m9e_c00446{transform:matrix(0.275944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275944,0.000000,0.000000,0.250000,0,0);}
.m3c_c00446{transform:matrix(0.276055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276055,0.000000,0.000000,0.250000,0,0);}
.m7f_c00446{transform:matrix(0.276182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276182,0.000000,0.000000,0.250000,0,0);}
.m8_c00446{transform:matrix(0.276351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276351,0.000000,0.000000,0.250000,0,0);}
.ma3_c00446{transform:matrix(0.276424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276424,0.000000,0.000000,0.250000,0,0);}
.mb_c00446{transform:matrix(0.276861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276861,0.000000,0.000000,0.250000,0,0);}
.m78_c00446{transform:matrix(0.277095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277095,0.000000,0.000000,0.250000,0,0);}
.m5b_c00446{transform:matrix(0.277624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277624,0.000000,0.000000,0.250000,0,0);}
.m95_c00446{transform:matrix(0.278356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278356,0.000000,0.000000,0.250000,0,0);}
.m86_c00446{transform:matrix(0.278442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278442,0.000000,0.000000,0.250000,0,0);}
.m73_c00446{transform:matrix(0.278579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278579,0.000000,0.000000,0.250000,0,0);}
.m26_c00446{transform:matrix(0.279286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279286,0.000000,0.000000,0.250000,0,0);}
.m9b_c00446{transform:matrix(0.279439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279439,0.000000,0.000000,0.250000,0,0);}
.mb2_c00446{transform:matrix(0.279841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279841,0.000000,0.000000,0.250000,0,0);}
.m25_c00446{transform:matrix(0.280549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280549,0.000000,0.000000,0.250000,0,0);}
.m27_c00446{transform:matrix(0.280721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280721,0.000000,0.000000,0.250000,0,0);}
.m61_c00446{transform:matrix(0.281110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281110,0.000000,0.000000,0.250000,0,0);}
.md_c00446{transform:matrix(0.281757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281757,0.000000,0.000000,0.250000,0,0);}
.m6a_c00446{transform:matrix(0.282172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282172,0.000000,0.000000,0.250000,0,0);}
.m1f_c00446{transform:matrix(0.282794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282794,0.000000,0.000000,0.250000,0,0);}
.m18_c00446{transform:matrix(0.283244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283244,0.000000,0.000000,0.250000,0,0);}
.m5c_c00446{transform:matrix(0.283356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283356,0.000000,0.000000,0.250000,0,0);}
.m39_c00446{transform:matrix(0.283634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283634,0.000000,0.000000,0.250000,0,0);}
.m66_c00446{transform:matrix(0.283841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283841,0.000000,0.000000,0.250000,0,0);}
.m3d_c00446{transform:matrix(0.284094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284094,0.000000,0.000000,0.250000,0,0);}
.m6d_c00446{transform:matrix(0.284318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284318,0.000000,0.000000,0.250000,0,0);}
.m9_c00446{transform:matrix(0.284462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284462,0.000000,0.000000,0.250000,0,0);}
.m81_c00446{transform:matrix(0.284510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284510,0.000000,0.000000,0.250000,0,0);}
.m83_c00446{transform:matrix(0.285538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285538,0.000000,0.000000,0.250000,0,0);}
.mb3_c00446{transform:matrix(0.286996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286996,0.000000,0.000000,0.250000,0,0);}
.m24_c00446{transform:matrix(0.287190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287190,0.000000,0.000000,0.250000,0,0);}
.m8d_c00446{transform:matrix(0.287205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287205,0.000000,0.000000,0.250000,0,0);}
.m20_c00446{transform:matrix(0.287784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287784,0.000000,0.000000,0.250000,0,0);}
.ma4_c00446{transform:matrix(0.288341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288341,0.000000,0.000000,0.250000,0,0);}
.m6_c00446{transform:matrix(0.288677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288677,0.000000,0.000000,0.250000,0,0);}
.m6e_c00446{transform:matrix(0.289415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289415,0.000000,0.000000,0.250000,0,0);}
.m53_c00446{transform:matrix(0.289502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289502,0.000000,0.000000,0.250000,0,0);}
.m7a_c00446{transform:matrix(0.289747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289747,0.000000,0.000000,0.250000,0,0);}
.m72_c00446{transform:matrix(0.290230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290230,0.000000,0.000000,0.250000,0,0);}
.m1c_c00446{transform:matrix(0.290800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290800,0.000000,0.000000,0.250000,0,0);}
.m8f_c00446{transform:matrix(0.290930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290930,0.000000,0.000000,0.250000,0,0);}
.m89_c00446{transform:matrix(0.292674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292674,0.000000,0.000000,0.250000,0,0);}
.m33_c00446{transform:matrix(0.292825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292825,0.000000,0.000000,0.250000,0,0);}
.m56_c00446{transform:matrix(0.293083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293083,0.000000,0.000000,0.250000,0,0);}
.m2c_c00446{transform:matrix(0.293099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293099,0.000000,0.000000,0.250000,0,0);}
.m5a_c00446{transform:matrix(0.293247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293247,0.000000,0.000000,0.250000,0,0);}
.m52_c00446{transform:matrix(0.294074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294074,0.000000,0.000000,0.250000,0,0);}
.m68_c00446{transform:matrix(0.294317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294317,0.000000,0.000000,0.250000,0,0);}
.m2b_c00446{transform:matrix(0.295033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295033,0.000000,0.000000,0.250000,0,0);}
.m47_c00446{transform:matrix(0.295053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295053,0.000000,0.000000,0.250000,0,0);}
.ma1_c00446{transform:matrix(0.295085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295085,0.000000,0.000000,0.250000,0,0);}
.m37_c00446{transform:matrix(0.295262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295262,0.000000,0.000000,0.250000,0,0);}
.m31_c00446{transform:matrix(0.295568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295568,0.000000,0.000000,0.250000,0,0);}
.m9f_c00446{transform:matrix(0.297388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297388,0.000000,0.000000,0.250000,0,0);}
.m67_c00446{transform:matrix(0.297951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297951,0.000000,0.000000,0.250000,0,0);}
.m69_c00446{transform:matrix(0.299297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299297,0.000000,0.000000,0.250000,0,0);}
.m59_c00446{transform:matrix(0.299458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299458,0.000000,0.000000,0.250000,0,0);}
.m19_c00446{transform:matrix(0.299537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299537,0.000000,0.000000,0.250000,0,0);}
.m62_c00446{transform:matrix(0.299724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299724,0.000000,0.000000,0.250000,0,0);}
.m76_c00446{transform:matrix(0.299926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299926,0.000000,0.000000,0.250000,0,0);}
.mab_c00446{transform:matrix(0.299930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299930,0.000000,0.000000,0.250000,0,0);}
.m9c_c00446{transform:matrix(0.300028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300028,0.000000,0.000000,0.250000,0,0);}
.m7e_c00446{transform:matrix(0.300424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300424,0.000000,0.000000,0.250000,0,0);}
.m8e_c00446{transform:matrix(0.300748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300748,0.000000,0.000000,0.250000,0,0);}
.m2e_c00446{transform:matrix(0.300822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300822,0.000000,0.000000,0.250000,0,0);}
.m21_c00446{transform:matrix(0.300966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300966,0.000000,0.000000,0.250000,0,0);}
.m30_c00446{transform:matrix(0.301001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301001,0.000000,0.000000,0.250000,0,0);}
.m40_c00446{transform:matrix(0.301068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301068,0.000000,0.000000,0.250000,0,0);}
.m99_c00446{transform:matrix(0.303730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303730,0.000000,0.000000,0.250000,0,0);}
.m94_c00446{transform:matrix(0.304895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304895,0.000000,0.000000,0.250000,0,0);}
.m79_c00446{transform:matrix(0.305343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305343,0.000000,0.000000,0.250000,0,0);}
.m1e_c00446{transform:matrix(0.305532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305532,0.000000,0.000000,0.250000,0,0);}
.m96_c00446{transform:matrix(0.306109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306109,0.000000,0.000000,0.250000,0,0);}
.m85_c00446{transform:matrix(0.307155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307155,0.000000,0.000000,0.250000,0,0);}
.m15_c00446{transform:matrix(0.307240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307240,0.000000,0.000000,0.250000,0,0);}
.m5f_c00446{transform:matrix(0.307365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307365,0.000000,0.000000,0.250000,0,0);}
.m3f_c00446{transform:matrix(0.307670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307670,0.000000,0.000000,0.250000,0,0);}
.m41_c00446{transform:matrix(0.309948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309948,0.000000,0.000000,0.250000,0,0);}
.m4a_c00446{transform:matrix(0.310009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310009,0.000000,0.000000,0.250000,0,0);}
.m75_c00446{transform:matrix(0.310873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310873,0.000000,0.000000,0.250000,0,0);}
.m82_c00446{transform:matrix(0.311868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311868,0.000000,0.000000,0.250000,0,0);}
.m2f_c00446{transform:matrix(0.313344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313344,0.000000,0.000000,0.250000,0,0);}
.m87_c00446{transform:matrix(0.314943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314943,0.000000,0.000000,0.250000,0,0);}
.m49_c00446{transform:matrix(0.315025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315025,0.000000,0.000000,0.250000,0,0);}
.m5d_c00446{transform:matrix(0.315122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315122,0.000000,0.000000,0.250000,0,0);}
.m9a_c00446{transform:matrix(0.315475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315475,0.000000,0.000000,0.250000,0,0);}
.m44_c00446{transform:matrix(0.315948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315948,0.000000,0.000000,0.250000,0,0);}
.m32_c00446{transform:matrix(0.316256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316256,0.000000,0.000000,0.250000,0,0);}
.m65_c00446{transform:matrix(0.316901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316901,0.000000,0.000000,0.250000,0,0);}
.m93_c00446{transform:matrix(0.318014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318014,0.000000,0.000000,0.250000,0,0);}
.ma9_c00446{transform:matrix(0.318500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318500,0.000000,0.000000,0.250000,0,0);}
.m98_c00446{transform:matrix(0.319020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319020,0.000000,0.000000,0.250000,0,0);}
.mf_c00446{transform:matrix(0.319107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319107,0.000000,0.000000,0.250000,0,0);}
.m36_c00446{transform:matrix(0.319397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319397,0.000000,0.000000,0.250000,0,0);}
.m55_c00446{transform:matrix(0.320283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320283,0.000000,0.000000,0.250000,0,0);}
.me_c00446{transform:matrix(0.321740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321740,0.000000,0.000000,0.250000,0,0);}
.m77_c00446{transform:matrix(0.321761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321761,0.000000,0.000000,0.250000,0,0);}
.m3_c00446{transform:matrix(0.322087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322087,0.000000,0.000000,0.250000,0,0);}
.m23_c00446{transform:matrix(0.323422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323422,0.000000,0.000000,0.250000,0,0);}
.m9d_c00446{transform:matrix(0.323423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323423,0.000000,0.000000,0.250000,0,0);}
.mac_c00446{transform:matrix(0.324238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324238,0.000000,0.000000,0.250000,0,0);}
.m57_c00446{transform:matrix(0.324337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324337,0.000000,0.000000,0.250000,0,0);}
.m7c_c00446{transform:matrix(0.324507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324507,0.000000,0.000000,0.250000,0,0);}
.m63_c00446{transform:matrix(0.325016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325016,0.000000,0.000000,0.250000,0,0);}
.m90_c00446{transform:matrix(0.325290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325290,0.000000,0.000000,0.250000,0,0);}
.mad_c00446{transform:matrix(0.326520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326520,0.000000,0.000000,0.250000,0,0);}
.m4d_c00446{transform:matrix(0.327212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327212,0.000000,0.000000,0.250000,0,0);}
.m38_c00446{transform:matrix(0.327338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327338,0.000000,0.000000,0.250000,0,0);}
.m7d_c00446{transform:matrix(0.330539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330539,0.000000,0.000000,0.250000,0,0);}
.m84_c00446{transform:matrix(0.334253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334253,0.000000,0.000000,0.250000,0,0);}
.m35_c00446{transform:matrix(0.334825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334825,0.000000,0.000000,0.250000,0,0);}
.mb4_c00446{transform:matrix(0.340384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340384,0.000000,0.000000,0.250000,0,0);}
.m48_c00446{transform:matrix(0.340659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340659,0.000000,0.000000,0.250000,0,0);}
.m4b_c00446{transform:matrix(0.342152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342152,0.000000,0.000000,0.250000,0,0);}
.m45_c00446{transform:matrix(0.343445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343445,0.000000,0.000000,0.250000,0,0);}
.mae_c00446{transform:matrix(0.348865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348865,0.000000,0.000000,0.250000,0,0);}
.m13_c00446{transform:matrix(0.354308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354308,0.000000,0.000000,0.250000,0,0);}
.m88_c00446{transform:matrix(0.356405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356405,0.000000,0.000000,0.250000,0,0);}
.m54_c00446{transform:matrix(0.357820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357820,0.000000,0.000000,0.250000,0,0);}
.m1d_c00446{transform:matrix(0.358321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358321,0.000000,0.000000,0.250000,0,0);}
.m2_c00446{transform:matrix(0.364195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364195,0.000000,0.000000,0.250000,0,0);}
.mc_c00446{transform:matrix(0.370070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370070,0.000000,0.000000,0.250000,0,0);}
.m91_c00446{transform:matrix(0.375943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375943,0.000000,0.000000,0.250000,0,0);}
.v0_c00446{vertical-align:0.000000px;}
.ls5_c00446{letter-spacing:-2.813580px;}
.ls12_c00446{letter-spacing:-2.660843px;}
.ls9_c00446{letter-spacing:-2.633400px;}
.ls7_c00446{letter-spacing:-0.948578px;}
.lsa_c00446{letter-spacing:-0.072349px;}
.ls3_c00446{letter-spacing:0.000000px;}
.lsf_c00446{letter-spacing:0.369785px;}
.lsc_c00446{letter-spacing:1.910700px;}
.ls14_c00446{letter-spacing:2.415600px;}
.ls2_c00446{letter-spacing:2.584619px;}
.ls11_c00446{letter-spacing:3.311986px;}
.ls0_c00446{letter-spacing:3.328063px;}
.ls1_c00446{letter-spacing:3.456684px;}
.lsb_c00446{letter-spacing:3.623400px;}
.ls10_c00446{letter-spacing:3.713926px;}
.lse_c00446{letter-spacing:3.762000px;}
.ls8_c00446{letter-spacing:3.987245px;}
.ls4_c00446{letter-spacing:4.019400px;}
.lsd_c00446{letter-spacing:4.494610px;}
.ls6_c00446{letter-spacing:55.598598px;}
.ls13_c00446{letter-spacing:64.152198px;}
.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;}
}
.ws1_c00446{word-spacing:0.000000px;}
.ws0_c00446{word-spacing:3.697848px;}
._0_c00446{width:8.199576px;}
._6_c00446{width:12.621708px;}
._4_c00446{width:17.043048px;}
._3_c00446{width:18.248076px;}
._1_c00446{width:20.965190px;}
._2_c00446{width:25.965324px;}
._5_c00446{width:42.926400px;}
.fc0_c00446{color:transparent;}
.fsd_c00446{font-size:27.720000px;}
.fse_c00446{font-size:32.868000px;}
.fs7_c00446{font-size:38.214000px;}
.fsa_c00446{font-size:48.312000px;}
.fsb_c00446{font-size:50.688000px;}
.fsc_c00446{font-size:55.440000px;}
.fs2_c00446{font-size:55.598598px;}
.fs9_c00446{font-size:64.152198px;}
.fs4_c00446{font-size:66.330000px;}
.fs6_c00446{font-size:72.468000px;}
.fs5_c00446{font-size:74.844000px;}
.fs3_c00446{font-size:75.240000px;}
.fs1_c00446{font-size:80.388000px;}
.fs0_c00446{font-size:87.912198px;}
.fs8_c00446{font-size:89.892198px;}
.y0_c00446{bottom:0.000000px;}
.y21_c00446{bottom:1.337535px;}
.y20_c00446{bottom:9.529785px;}
.y1_c00446{bottom:76.500000px;}
.y1d_c00446{bottom:117.518985px;}
.y1c_c00446{bottom:151.025535px;}
.y1b_c00446{bottom:185.947785px;}
.y1a_c00446{bottom:252.243135px;}
.y19_c00446{bottom:283.606335px;}
.y18_c00446{bottom:315.682335px;}
.y17_c00446{bottom:348.109785px;}
.y16_c00446{bottom:379.829385px;}
.y15_c00446{bottom:412.618185px;}
.y14_c00446{bottom:444.694185px;}
.y13_c00446{bottom:476.413785px;}
.y12_c00446{bottom:508.138335px;}
.y11_c00446{bottom:539.852985px;}
.y1f_c00446{bottom:571.577535px;}
.yd_c00446{bottom:604.717785px;}
.y10_c00446{bottom:635.011785px;}
.yc_c00446{bottom:636.798735px;}
.yf_c00446{bottom:667.444185px;}
.yb_c00446{bottom:669.226185px;}
.ye_c00446{bottom:699.525135px;}
.ya_c00446{bottom:701.307135px;}
.y9_c00446{bottom:731.957535px;}
.y8_c00446{bottom:763.320735px;}
.y7_c00446{bottom:795.391785px;}
.y6_c00446{bottom:827.467785px;}
.y5_c00446{bottom:859.187385px;}
.y4_c00446{bottom:891.976185px;}
.y3_c00446{bottom:923.700735px;}
.y2_c00446{bottom:1055.920185px;}
.y1e_c00446{bottom:1076.591385px;}
.h10_c00446{height:28.911094px;}
.h11_c00446{height:34.280297px;}
.h4_c00446{height:37.028666px;}
.h9_c00446{height:39.856008px;}
.hc_c00446{height:42.725364px;}
.hd_c00446{height:47.415586px;}
.he_c00446{height:52.866000px;}
.hf_c00446{height:57.822188px;}
.h6_c00446{height:69.180117px;}
.h8_c00446{height:71.123379px;}
.h7_c00446{height:73.455293px;}
.hb_c00446{height:73.843945px;}
.h5_c00446{height:78.472969px;}
.h3_c00446{height:78.896426px;}
.h2_c00446{height:86.281015px;}
.ha_c00446{height:88.224276px;}
.h1_c00446{height:1110.000000px;}
.h0_c00446{height:1263.000000px;}
.w1_c00446{width:781.500000px;}
.w0_c00446{width:892.500000px;}
.x0_c00446{left:0.000000px;}
.x1_c00446{left:55.500000px;}
.x92_c00446{left:87.572385px;}
.x85_c00446{left:88.804935px;}
.x6a_c00446{left:90.765135px;}
.x53_c00446{left:91.859085px;}
.x1a_c00446{left:94.190535px;}
.xe_c00446{left:95.259735px;}
.x3a_c00446{left:96.467535px;}
.x86_c00446{left:119.881035px;}
.x54_c00446{left:122.692635px;}
.x3d_c00446{left:126.969435px;}
.xf_c00446{left:128.929635px;}
.x6e_c00446{left:132.661935px;}
.x2a_c00446{left:136.958535px;}
.x1b_c00446{left:138.671235px;}
.x8b_c00446{left:142.220385px;}
.x4a_c00446{left:144.680535px;}
.x3_c00446{left:149.041485px;}
.x4_c00446{left:150.491835px;}
.x78_c00446{left:155.303235px;}
.x31_c00446{left:161.272935px;}
.x87_c00446{left:163.673685px;}
.x72_c00446{left:164.742885px;}
.x2b_c00446{left:170.628435px;}
.x8c_c00446{left:174.415185px;}
.x7f_c00446{left:175.454685px;}
.x5c_c00446{left:177.004035px;}
.x42_c00446{left:179.434485px;}
.x10_c00446{left:182.414385px;}
.x9a_c00446{left:183.627135px;}
.x32_c00446{left:192.621285px;}
.x80_c00446{left:198.095985px;}
.x4b_c00446{left:200.531385px;}
.x73_c00446{left:208.585035px;}
.x64_c00446{left:209.659185px;}
.x5d_c00446{left:211.253085px;}
.x11_c00446{left:214.069635px;}
.x1c_c00446{left:225.533835px;}
.x5_c00446{left:226.949535px;}
.x88_c00446{left:229.944285px;}
.x55_c00446{left:232.889535px;}
.x4c_c00446{left:235.211085px;}
.x3b_c00446{left:236.577285px;}
.x3e_c00446{left:245.719935px;}
.x6_c00446{left:247.576185px;}
.x81_c00446{left:252.852885px;}
.x5e_c00446{left:265.678335px;}
.x22_c00446{left:269.375985px;}
.x9b_c00446{left:272.806335px;}
.x8d_c00446{left:274.142835px;}
.x4d_c00446{left:276.662385px;}
.x7_c00446{left:280.394685px;}
.x56_c00446{left:288.621585px;}
.x4e_c00446{left:299.798685px;}
.x6f_c00446{left:309.263085px;}
.x37_c00446{left:313.168635px;}
.x5f_c00446{left:320.143185px;}
.x3f_c00446{left:321.935085px;}
.x9c_c00446{left:328.181985px;}
.x8e_c00446{left:329.914485px;}
.x23_c00446{left:335.240685px;}
.x12_c00446{left:336.374235px;}
.x89_c00446{left:340.606485px;}
.x74_c00446{left:342.720135px;}
.x40_c00446{left:344.373435px;}
.x82_c00446{left:351.674685px;}
.x93_c00446{left:353.283435px;}
.x3c_c00446{left:355.075335px;}
.x13_c00446{left:357.203835px;}
.x2c_c00446{left:368.014635px;}
.x8_c00446{left:369.167985px;}
.x57_c00446{left:376.612785px;}
.x94_c00446{left:383.701185px;}
.x65_c00446{left:387.572085px;}
.x24_c00446{left:389.858985px;}
.x6b_c00446{left:397.546335px;}
.x2d_c00446{left:399.610485px;}
.x9_c00446{left:401.214285px;}
.x60_c00446{left:409.728285px;}
.x41_c00446{left:411.223185px;}
.x8f_c00446{left:417.262185px;}
.x25_c00446{left:422.642835px;}
.x66_c00446{left:431.181585px;}
.x33_c00446{left:433.458585px;}
.x14_c00446{left:435.374235px;}
.x75_c00446{left:443.234835px;}
.x43_c00446{left:444.279285px;}
.x1d_c00446{left:445.724685px;}
.x46_c00446{left:446.996835px;}
.x79_c00446{left:451.308285px;}
.x95_c00446{left:461.114235px;}
.x15_c00446{left:468.113535px;}
.x8a_c00446{left:472.098285px;}
.x7a_c00446{left:473.167485px;}
.x6c_c00446{left:475.652385px;}
.x26_c00446{left:477.320535px;}
.x9d_c00446{left:482.498235px;}
.x76_c00446{left:486.393885px;}
.x58_c00446{left:487.403685px;}
.xa_c00446{left:490.561785px;}
.x96_c00446{left:494.556435px;}
.x4f_c00446{left:498.184785px;}
.x34_c00446{left:500.595435px;}
.x7b_c00446{left:505.817685px;}
.x67_c00446{left:508.357035px;}
.x27_c00446{left:510.272685px;}
.x70_c00446{left:518.469885px;}
.x59_c00446{left:519.573735px;}
.x2e_c00446{left:521.573535px;}
.x9e_c00446{left:525.914685px;}
.x50_c00446{left:529.280685px;}
.x35_c00446{left:532.527885px;}
.x1e_c00446{left:533.790135px;}
.x90_c00446{left:537.180885px;}
.x61_c00446{left:540.398385px;}
.x44_c00446{left:543.724785px;}
.x68_c00446{left:551.961585px;}
.x16_c00446{left:555.921585px;}
.x9f_c00446{left:559.084635px;}
.x83_c00446{left:561.242835px;}
.x62_c00446{left:563.069385px;}
.x1f_c00446{left:565.371135px;}
.x6d_c00446{left:572.994135px;}
.xb_c00446{left:578.374785px;}
.x5a_c00446{left:585.859185px;}
.x38_c00446{left:587.596635px;}
.x7c_c00446{left:594.769185px;}
.x48_c00446{left:597.199635px;}
.x17_c00446{left:598.422285px;}
.x84_c00446{left:605.461185px;}
.x5b_c00446{left:618.519285px;}
.x2f_c00446{left:620.370585px;}
.x20_c00446{left:621.721935px;}
.xc_c00446{left:623.602935px;}
.x7d_c00446{left:626.805585px;}
.x49_c00446{left:629.141985px;}
.x51_c00446{left:630.181485px;}
.x28_c00446{left:632.532735px;}
.x69_c00446{left:639.289485px;}
.x97_c00446{left:648.248985px;}
.x77_c00446{left:649.521135px;}
.x63_c00446{left:651.238785px;}
.x29_c00446{left:653.906835px;}
.x91_c00446{left:659.143935px;}
.x18_c00446{left:664.470135px;}
.x7e_c00446{left:671.692185px;}
.x21_c00446{left:676.330335px;}
.x19_c00446{left:677.706435px;}
.x98_c00446{left:680.666535px;}
.x71_c00446{left:683.468235px;}
.x2_c00446{left:688.794435px;}
.x39_c00446{left:707.510385px;}
.x36_c00446{left:709.148835px;}
.xd_c00446{left:710.920935px;}
.x52_c00446{left:716.816385px;}
.x47_c00446{left:718.791435px;}
.x45_c00446{left:720.207135px;}
.x99_c00446{left:723.954285px;}
.x30_c00446{left:730.008135px;}
.xa0_c00446{left:776.062935px;}
@media print{
.v0_c00446{vertical-align:0.000000pt;}
.ls5_c00446{letter-spacing:-2.500960pt;}
.ls12_c00446{letter-spacing:-2.365194pt;}
.ls9_c00446{letter-spacing:-2.340800pt;}
.ls7_c00446{letter-spacing:-0.843181pt;}
.lsa_c00446{letter-spacing:-0.064310pt;}
.ls3_c00446{letter-spacing:0.000000pt;}
.lsf_c00446{letter-spacing:0.328698pt;}
.lsc_c00446{letter-spacing:1.698400pt;}
.ls14_c00446{letter-spacing:2.147200pt;}
.ls2_c00446{letter-spacing:2.297439pt;}
.ls11_c00446{letter-spacing:2.943987pt;}
.ls0_c00446{letter-spacing:2.958278pt;}
.ls1_c00446{letter-spacing:3.072608pt;}
.lsb_c00446{letter-spacing:3.220800pt;}
.ls10_c00446{letter-spacing:3.301267pt;}
.lse_c00446{letter-spacing:3.344000pt;}
.ls8_c00446{letter-spacing:3.544218pt;}
.ls4_c00446{letter-spacing:3.572800pt;}
.lsd_c00446{letter-spacing:3.995209pt;}
.ls6_c00446{letter-spacing:49.420976pt;}
.ls13_c00446{letter-spacing:57.024176pt;}
.ws1_c00446{word-spacing:0.000000pt;}
.ws0_c00446{word-spacing:3.286976pt;}
._0_c00446{width:7.288512pt;}
._6_c00446{width:11.219296pt;}
._4_c00446{width:15.149376pt;}
._3_c00446{width:16.220512pt;}
._1_c00446{width:18.635725pt;}
._2_c00446{width:23.080288pt;}
._5_c00446{width:38.156800pt;}
.fsd_c00446{font-size:24.640000pt;}
.fse_c00446{font-size:29.216000pt;}
.fs7_c00446{font-size:33.968000pt;}
.fsa_c00446{font-size:42.944000pt;}
.fsb_c00446{font-size:45.056000pt;}
.fsc_c00446{font-size:49.280000pt;}
.fs2_c00446{font-size:49.420976pt;}
.fs9_c00446{font-size:57.024176pt;}
.fs4_c00446{font-size:58.960000pt;}
.fs6_c00446{font-size:64.416000pt;}
.fs5_c00446{font-size:66.528000pt;}
.fs3_c00446{font-size:66.880000pt;}
.fs1_c00446{font-size:71.456000pt;}
.fs0_c00446{font-size:78.144176pt;}
.fs8_c00446{font-size:79.904176pt;}
.y0_c00446{bottom:0.000000pt;}
.y21_c00446{bottom:1.188920pt;}
.y20_c00446{bottom:8.470920pt;}
.y1_c00446{bottom:68.000000pt;}
.y1d_c00446{bottom:104.461320pt;}
.y1c_c00446{bottom:134.244920pt;}
.y1b_c00446{bottom:165.286920pt;}
.y1a_c00446{bottom:224.216120pt;}
.y19_c00446{bottom:252.094520pt;}
.y18_c00446{bottom:280.606520pt;}
.y17_c00446{bottom:309.430920pt;}
.y16_c00446{bottom:337.626120pt;}
.y15_c00446{bottom:366.771720pt;}
.y14_c00446{bottom:395.283720pt;}
.y13_c00446{bottom:423.478920pt;}
.y12_c00446{bottom:451.678520pt;}
.y11_c00446{bottom:479.869320pt;}
.y1f_c00446{bottom:508.068920pt;}
.yd_c00446{bottom:537.526920pt;}
.y10_c00446{bottom:564.454920pt;}
.yc_c00446{bottom:566.043320pt;}
.yf_c00446{bottom:593.283720pt;}
.yb_c00446{bottom:594.867720pt;}
.ye_c00446{bottom:621.800120pt;}
.ya_c00446{bottom:623.384120pt;}
.y9_c00446{bottom:650.628920pt;}
.y8_c00446{bottom:678.507320pt;}
.y7_c00446{bottom:707.014920pt;}
.y6_c00446{bottom:735.526920pt;}
.y5_c00446{bottom:763.722120pt;}
.y4_c00446{bottom:792.867720pt;}
.y3_c00446{bottom:821.067320pt;}
.y2_c00446{bottom:938.595720pt;}
.y1e_c00446{bottom:956.970120pt;}
.h10_c00446{height:25.698750pt;}
.h11_c00446{height:30.471375pt;}
.h4_c00446{height:32.914370pt;}
.h9_c00446{height:35.427563pt;}
.hc_c00446{height:37.978101pt;}
.hd_c00446{height:42.147188pt;}
.he_c00446{height:46.992000pt;}
.hf_c00446{height:51.397500pt;}
.h6_c00446{height:61.493438pt;}
.h8_c00446{height:63.220781pt;}
.h7_c00446{height:65.293594pt;}
.hb_c00446{height:65.639063pt;}
.h5_c00446{height:69.753750pt;}
.h3_c00446{height:70.130156pt;}
.h2_c00446{height:76.694235pt;}
.ha_c00446{height:78.421579pt;}
.h1_c00446{height:986.666667pt;}
.h0_c00446{height:1122.666667pt;}
.w1_c00446{width:694.666667pt;}
.w0_c00446{width:793.333333pt;}
.x0_c00446{left:0.000000pt;}
.x1_c00446{left:49.333333pt;}
.x92_c00446{left:77.842120pt;}
.x85_c00446{left:78.937720pt;}
.x6a_c00446{left:80.680120pt;}
.x53_c00446{left:81.652520pt;}
.x1a_c00446{left:83.724920pt;}
.xe_c00446{left:84.675320pt;}
.x3a_c00446{left:85.748920pt;}
.x86_c00446{left:106.560920pt;}
.x54_c00446{left:109.060120pt;}
.x3d_c00446{left:112.861720pt;}
.xf_c00446{left:114.604120pt;}
.x6e_c00446{left:117.921720pt;}
.x2a_c00446{left:121.740920pt;}
.x1b_c00446{left:123.263320pt;}
.x8b_c00446{left:126.418120pt;}
.x4a_c00446{left:128.604920pt;}
.x3_c00446{left:132.481320pt;}
.x4_c00446{left:133.770520pt;}
.x78_c00446{left:138.047320pt;}
.x31_c00446{left:143.353720pt;}
.x87_c00446{left:145.487720pt;}
.x72_c00446{left:146.438120pt;}
.x2b_c00446{left:151.669720pt;}
.x8c_c00446{left:155.035720pt;}
.x7f_c00446{left:155.959720pt;}
.x5c_c00446{left:157.336920pt;}
.x42_c00446{left:159.497320pt;}
.x10_c00446{left:162.146120pt;}
.x9a_c00446{left:163.224120pt;}
.x32_c00446{left:171.218920pt;}
.x80_c00446{left:176.085320pt;}
.x4b_c00446{left:178.250120pt;}
.x73_c00446{left:185.408920pt;}
.x64_c00446{left:186.363720pt;}
.x5d_c00446{left:187.780520pt;}
.x11_c00446{left:190.284120pt;}
.x1c_c00446{left:200.474520pt;}
.x5_c00446{left:201.732920pt;}
.x88_c00446{left:204.394920pt;}
.x55_c00446{left:207.012920pt;}
.x4c_c00446{left:209.076520pt;}
.x3b_c00446{left:210.290920pt;}
.x3e_c00446{left:218.417720pt;}
.x6_c00446{left:220.067720pt;}
.x81_c00446{left:224.758120pt;}
.x5e_c00446{left:236.158520pt;}
.x22_c00446{left:239.445320pt;}
.x9b_c00446{left:242.494520pt;}
.x8d_c00446{left:243.682520pt;}
.x4d_c00446{left:245.922120pt;}
.x7_c00446{left:249.239720pt;}
.x56_c00446{left:256.552520pt;}
.x4e_c00446{left:266.487720pt;}
.x6f_c00446{left:274.900520pt;}
.x37_c00446{left:278.372120pt;}
.x5f_c00446{left:284.571720pt;}
.x3f_c00446{left:286.164520pt;}
.x9c_c00446{left:291.717320pt;}
.x8e_c00446{left:293.257320pt;}
.x23_c00446{left:297.991720pt;}
.x12_c00446{left:298.999320pt;}
.x89_c00446{left:302.761320pt;}
.x74_c00446{left:304.640120pt;}
.x40_c00446{left:306.109720pt;}
.x82_c00446{left:312.599720pt;}
.x93_c00446{left:314.029720pt;}
.x3c_c00446{left:315.622520pt;}
.x13_c00446{left:317.514520pt;}
.x2c_c00446{left:327.124120pt;}
.x8_c00446{left:328.149320pt;}
.x57_c00446{left:334.766920pt;}
.x94_c00446{left:341.067720pt;}
.x65_c00446{left:344.508520pt;}
.x24_c00446{left:346.541320pt;}
.x6b_c00446{left:353.374520pt;}
.x2d_c00446{left:355.209320pt;}
.x9_c00446{left:356.634920pt;}
.x60_c00446{left:364.202920pt;}
.x41_c00446{left:365.531720pt;}
.x8f_c00446{left:370.899720pt;}
.x25_c00446{left:375.682520pt;}
.x66_c00446{left:383.272520pt;}
.x33_c00446{left:385.296520pt;}
.x14_c00446{left:386.999320pt;}
.x75_c00446{left:393.986520pt;}
.x43_c00446{left:394.914920pt;}
.x1d_c00446{left:396.199720pt;}
.x46_c00446{left:397.330520pt;}
.x79_c00446{left:401.162920pt;}
.x95_c00446{left:409.879320pt;}
.x15_c00446{left:416.100920pt;}
.x8a_c00446{left:419.642920pt;}
.x7a_c00446{left:420.593320pt;}
.x6c_c00446{left:422.802120pt;}
.x26_c00446{left:424.284920pt;}
.x9d_c00446{left:428.887320pt;}
.x76_c00446{left:432.350120pt;}
.x58_c00446{left:433.247720pt;}
.xa_c00446{left:436.054920pt;}
.x96_c00446{left:439.605720pt;}
.x4f_c00446{left:442.830920pt;}
.x34_c00446{left:444.973720pt;}
.x7b_c00446{left:449.615720pt;}
.x67_c00446{left:451.872920pt;}
.x27_c00446{left:453.575720pt;}
.x70_c00446{left:460.862120pt;}
.x59_c00446{left:461.843320pt;}
.x2e_c00446{left:463.620920pt;}
.x9e_c00446{left:467.479720pt;}
.x50_c00446{left:470.471720pt;}
.x35_c00446{left:473.358120pt;}
.x1e_c00446{left:474.480120pt;}
.x90_c00446{left:477.494120pt;}
.x61_c00446{left:480.354120pt;}
.x44_c00446{left:483.310920pt;}
.x68_c00446{left:490.632520pt;}
.x16_c00446{left:494.152520pt;}
.x9f_c00446{left:496.964120pt;}
.x83_c00446{left:498.882520pt;}
.x62_c00446{left:500.506120pt;}
.x1f_c00446{left:502.552120pt;}
.x6d_c00446{left:509.328120pt;}
.xb_c00446{left:514.110920pt;}
.x5a_c00446{left:520.763720pt;}
.x38_c00446{left:522.308120pt;}
.x7c_c00446{left:528.683720pt;}
.x48_c00446{left:530.844120pt;}
.x17_c00446{left:531.930920pt;}
.x84_c00446{left:538.187720pt;}
.x5b_c00446{left:549.794920pt;}
.x2f_c00446{left:551.440520pt;}
.x20_c00446{left:552.641720pt;}
.xc_c00446{left:554.313720pt;}
.x7d_c00446{left:557.160520pt;}
.x49_c00446{left:559.237320pt;}
.x51_c00446{left:560.161320pt;}
.x28_c00446{left:562.251320pt;}
.x69_c00446{left:568.257320pt;}
.x97_c00446{left:576.221320pt;}
.x77_c00446{left:577.352120pt;}
.x63_c00446{left:578.878920pt;}
.x29_c00446{left:581.250520pt;}
.x91_c00446{left:585.905720pt;}
.x18_c00446{left:590.640120pt;}
.x7e_c00446{left:597.059720pt;}
.x21_c00446{left:601.182520pt;}
.x19_c00446{left:602.405720pt;}
.x98_c00446{left:605.036920pt;}
.x71_c00446{left:607.527320pt;}
.x2_c00446{left:612.261720pt;}
.x39_c00446{left:628.898120pt;}
.x36_c00446{left:630.354520pt;}
.xd_c00446{left:631.929720pt;}
.x52_c00446{left:637.170120pt;}
.x47_c00446{left:638.925720pt;}
.x45_c00446{left:640.184120pt;}
.x99_c00446{left:643.514920pt;}
.x30_c00446{left:648.896120pt;}
.xa0_c00446{left:689.833720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f4de606f7c5215fe37b83f4b.woff2')format("woff");}.ff1_c00447{font-family:ff1_c00447;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00447;src:url('chunks/assets/font_154df248e62111f59d20f06a.woff2')format("woff");}.ff2_c00447{font-family:ff2_c00447;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00447;src:url('chunks/assets/font_0cf42376a7f8208240297b77.woff2')format("woff");}.ff3_c00447{font-family:ff3_c00447;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00447;src:url('chunks/assets/font_a3b27ae891a8258695fd92e0.woff2')format("woff");}.ff4_c00447{font-family:ff4_c00447;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00447;src:url('chunks/assets/font_d18560e63c5903ca62f08dae.woff2')format("woff");}.ff5_c00447{font-family:ff5_c00447;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00447;src:url('chunks/assets/font_cb606ab190c545ff0018ca56.woff2')format("woff");}.ff6_c00447{font-family:ff6_c00447;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m56_c00447{transform:matrix(0.068182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.068182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.068182,0.000000,0.000000,0.250000,0,0);}
.m57_c00447{transform:matrix(0.089489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089489,0.000000,0.000000,0.250000,0,0);}
.m7a_c00447{transform:matrix(0.113921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113921,0.000000,0.000000,0.250000,0,0);}
.m71_c00447{transform:matrix(0.119048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119048,0.000000,0.000000,0.250000,0,0);}
.m76_c00447{transform:matrix(0.144415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144415,0.000000,0.000000,0.250000,0,0);}
.m5b_c00447{transform:matrix(0.157671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157671,0.000000,0.000000,0.250000,0,0);}
.m55_c00447{transform:matrix(0.170455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170455,0.000000,0.000000,0.250000,0,0);}
.m77_c00447{transform:matrix(0.173472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173472,0.000000,0.000000,0.250000,0,0);}
.m64_c00447{transform:matrix(0.178354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178354,0.000000,0.000000,0.250000,0,0);}
.m78_c00447{transform:matrix(0.178838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178838,0.000000,0.000000,0.250000,0,0);}
.mb8_c00447{transform:matrix(0.190244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190244,0.000000,0.000000,0.250000,0,0);}
.mab_c00447{transform:matrix(0.213747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213747,0.000000,0.000000,0.250000,0,0);}
.m14_c00447{transform:matrix(0.226325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226325,0.000000,0.000000,0.250000,0,0);}
.ma9_c00447{transform:matrix(0.235831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235831,0.000000,0.000000,0.250000,0,0);}
.m90_c00447{transform:matrix(0.236836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236836,0.000000,0.000000,0.250000,0,0);}
.m33_c00447{transform:matrix(0.244704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244704,0.000000,0.000000,0.250000,0,0);}
.m0_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);}
.m97_c00447{transform:matrix(0.250708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250708,0.000000,0.000000,0.250000,0,0);}
.m49_c00447{transform:matrix(0.251078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251078,0.000000,0.000000,0.250000,0,0);}
.m9e_c00447{transform:matrix(0.254446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254446,0.000000,0.000000,0.250000,0,0);}
.mf_c00447{transform:matrix(0.262344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262344,0.000000,0.000000,0.250000,0,0);}
.m4c_c00447{transform:matrix(0.262603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262603,0.000000,0.000000,0.250000,0,0);}
.m4_c00447{transform:matrix(0.265137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265137,0.000000,0.000000,0.250000,0,0);}
.mb6_c00447{transform:matrix(0.265417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265417,0.000000,0.000000,0.250000,0,0);}
.ma5_c00447{transform:matrix(0.266163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266163,0.000000,0.000000,0.250000,0,0);}
.m6d_c00447{transform:matrix(0.266808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266808,0.000000,0.000000,0.250000,0,0);}
.m6e_c00447{transform:matrix(0.268540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268540,0.000000,0.000000,0.250000,0,0);}
.m24_c00447{transform:matrix(0.269104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269104,0.000000,0.000000,0.250000,0,0);}
.m18_c00447{transform:matrix(0.271003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271003,0.000000,0.000000,0.250000,0,0);}
.m1a_c00447{transform:matrix(0.272610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272610,0.000000,0.000000,0.250000,0,0);}
.ma0_c00447{transform:matrix(0.272967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272967,0.000000,0.000000,0.250000,0,0);}
.m3a_c00447{transform:matrix(0.273374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273374,0.000000,0.000000,0.250000,0,0);}
.m2a_c00447{transform:matrix(0.273387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273387,0.000000,0.000000,0.250000,0,0);}
.m1d_c00447{transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);}
.m46_c00447{transform:matrix(0.273997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273997,0.000000,0.000000,0.250000,0,0);}
.m16_c00447{transform:matrix(0.274142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274142,0.000000,0.000000,0.250000,0,0);}
.m75_c00447{transform:matrix(0.274257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274257,0.000000,0.000000,0.250000,0,0);}
.m83_c00447{transform:matrix(0.274622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274622,0.000000,0.000000,0.250000,0,0);}
.m52_c00447{transform:matrix(0.275156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275156,0.000000,0.000000,0.250000,0,0);}
.m22_c00447{transform:matrix(0.275843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275843,0.000000,0.000000,0.250000,0,0);}
.m6c_c00447{transform:matrix(0.276390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276390,0.000000,0.000000,0.250000,0,0);}
.m50_c00447{transform:matrix(0.277056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277056,0.000000,0.000000,0.250000,0,0);}
.m58_c00447{transform:matrix(0.277931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277931,0.000000,0.000000,0.250000,0,0);}
.m92_c00447{transform:matrix(0.278283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278283,0.000000,0.000000,0.250000,0,0);}
.md_c00447{transform:matrix(0.278890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278890,0.000000,0.000000,0.250000,0,0);}
.ma8_c00447{transform:matrix(0.279351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279351,0.000000,0.000000,0.250000,0,0);}
.m7_c00447{transform:matrix(0.279601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279601,0.000000,0.000000,0.250000,0,0);}
.m94_c00447{transform:matrix(0.280682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280682,0.000000,0.000000,0.250000,0,0);}
.m3e_c00447{transform:matrix(0.281410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281410,0.000000,0.000000,0.250000,0,0);}
.m5d_c00447{transform:matrix(0.281633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281633,0.000000,0.000000,0.250000,0,0);}
.mb9_c00447{transform:matrix(0.281797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281797,0.000000,0.000000,0.250000,0,0);}
.m11_c00447{transform:matrix(0.281904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281904,0.000000,0.000000,0.250000,0,0);}
.m73_c00447{transform:matrix(0.282772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282772,0.000000,0.000000,0.250000,0,0);}
.m62_c00447{transform:matrix(0.283288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283288,0.000000,0.000000,0.250000,0,0);}
.ma1_c00447{transform:matrix(0.285942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285942,0.000000,0.000000,0.250000,0,0);}
.m34_c00447{transform:matrix(0.286550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286550,0.000000,0.000000,0.250000,0,0);}
.m2b_c00447{transform:matrix(0.286616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286616,0.000000,0.000000,0.250000,0,0);}
.m8c_c00447{transform:matrix(0.288007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288007,0.000000,0.000000,0.250000,0,0);}
.m72_c00447{transform:matrix(0.288138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288138,0.000000,0.000000,0.250000,0,0);}
.m3d_c00447{transform:matrix(0.288396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288396,0.000000,0.000000,0.250000,0,0);}
.m30_c00447{transform:matrix(0.288675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288675,0.000000,0.000000,0.250000,0,0);}
.m67_c00447{transform:matrix(0.289654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289654,0.000000,0.000000,0.250000,0,0);}
.m79_c00447{transform:matrix(0.291092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291092,0.000000,0.000000,0.250000,0,0);}
.m88_c00447{transform:matrix(0.291575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291575,0.000000,0.000000,0.250000,0,0);}
.m41_c00447{transform:matrix(0.291976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291976,0.000000,0.000000,0.250000,0,0);}
.m93_c00447{transform:matrix(0.293516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293516,0.000000,0.000000,0.250000,0,0);}
.m17_c00447{transform:matrix(0.293571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293571,0.000000,0.000000,0.250000,0,0);}
.m9a_c00447{transform:matrix(0.294416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294416,0.000000,0.000000,0.250000,0,0);}
.maa_c00447{transform:matrix(0.294580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294580,0.000000,0.000000,0.250000,0,0);}
.m1f_c00447{transform:matrix(0.294899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294899,0.000000,0.000000,0.250000,0,0);}
.m42_c00447{transform:matrix(0.295646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295646,0.000000,0.000000,0.250000,0,0);}
.m74_c00447{transform:matrix(0.295661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295661,0.000000,0.000000,0.250000,0,0);}
.m5a_c00447{transform:matrix(0.296129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296129,0.000000,0.000000,0.250000,0,0);}
.m26_c00447{transform:matrix(0.296459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296459,0.000000,0.000000,0.250000,0,0);}
.ma_c00447{transform:matrix(0.297118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297118,0.000000,0.000000,0.250000,0,0);}
.m82_c00447{transform:matrix(0.298249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298249,0.000000,0.000000,0.250000,0,0);}
.m99_c00447{transform:matrix(0.298970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298970,0.000000,0.000000,0.250000,0,0);}
.m69_c00447{transform:matrix(0.299324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299324,0.000000,0.000000,0.250000,0,0);}
.mb2_c00447{transform:matrix(0.299374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299374,0.000000,0.000000,0.250000,0,0);}
.m8e_c00447{transform:matrix(0.300138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300138,0.000000,0.000000,0.250000,0,0);}
.m8_c00447{transform:matrix(0.300964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300964,0.000000,0.000000,0.250000,0,0);}
.m8d_c00447{transform:matrix(0.300977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300977,0.000000,0.000000,0.250000,0,0);}
.m80_c00447{transform:matrix(0.301811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301811,0.000000,0.000000,0.250000,0,0);}
.ma7_c00447{transform:matrix(0.301933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301933,0.000000,0.000000,0.250000,0,0);}
.mb0_c00447{transform:matrix(0.302337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302337,0.000000,0.000000,0.250000,0,0);}
.m2c_c00447{transform:matrix(0.302346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302346,0.000000,0.000000,0.250000,0,0);}
.m8b_c00447{transform:matrix(0.302835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302835,0.000000,0.000000,0.250000,0,0);}
.m5e_c00447{transform:matrix(0.303018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303018,0.000000,0.000000,0.250000,0,0);}
.m1b_c00447{transform:matrix(0.303747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303747,0.000000,0.000000,0.250000,0,0);}
.mac_c00447{transform:matrix(0.303763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303763,0.000000,0.000000,0.250000,0,0);}
.m4b_c00447{transform:matrix(0.303769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303769,0.000000,0.000000,0.250000,0,0);}
.m1e_c00447{transform:matrix(0.303787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303787,0.000000,0.000000,0.250000,0,0);}
.m7c_c00447{transform:matrix(0.304190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304190,0.000000,0.000000,0.250000,0,0);}
.m38_c00447{transform:matrix(0.304941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304941,0.000000,0.000000,0.250000,0,0);}
.mc_c00447{transform:matrix(0.305678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305678,0.000000,0.000000,0.250000,0,0);}
.m23_c00447{transform:matrix(0.305876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305876,0.000000,0.000000,0.250000,0,0);}
.me_c00447{transform:matrix(0.306024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306024,0.000000,0.000000,0.250000,0,0);}
.m51_c00447{transform:matrix(0.306448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306448,0.000000,0.000000,0.250000,0,0);}
.m95_c00447{transform:matrix(0.307134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307134,0.000000,0.000000,0.250000,0,0);}
.m9b_c00447{transform:matrix(0.307504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307504,0.000000,0.000000,0.250000,0,0);}
.mb_c00447{transform:matrix(0.307868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307868,0.000000,0.000000,0.250000,0,0);}
.m29_c00447{transform:matrix(0.308589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308589,0.000000,0.000000,0.250000,0,0);}
.m2e_c00447{transform:matrix(0.309024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309024,0.000000,0.000000,0.250000,0,0);}
.m4f_c00447{transform:matrix(0.309259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309259,0.000000,0.000000,0.250000,0,0);}
.mae_c00447{transform:matrix(0.310030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310030,0.000000,0.000000,0.250000,0,0);}
.m68_c00447{transform:matrix(0.310574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310574,0.000000,0.000000,0.250000,0,0);}
.m35_c00447{transform:matrix(0.311123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311123,0.000000,0.000000,0.250000,0,0);}
.m6b_c00447{transform:matrix(0.311507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311507,0.000000,0.000000,0.250000,0,0);}
.m47_c00447{transform:matrix(0.311728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311728,0.000000,0.000000,0.250000,0,0);}
.m9c_c00447{transform:matrix(0.311933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311933,0.000000,0.000000,0.250000,0,0);}
.m13_c00447{transform:matrix(0.312386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312386,0.000000,0.000000,0.250000,0,0);}
.m84_c00447{transform:matrix(0.312446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312446,0.000000,0.000000,0.250000,0,0);}
.m7d_c00447{transform:matrix(0.312584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312584,0.000000,0.000000,0.250000,0,0);}
.m96_c00447{transform:matrix(0.312638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312638,0.000000,0.000000,0.250000,0,0);}
.m20_c00447{transform:matrix(0.313992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313992,0.000000,0.000000,0.250000,0,0);}
.m2d_c00447{transform:matrix(0.314370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314370,0.000000,0.000000,0.250000,0,0);}
.m3_c00447{transform:matrix(0.314792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314792,0.000000,0.000000,0.250000,0,0);}
.m10_c00447{transform:matrix(0.316009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316009,0.000000,0.000000,0.250000,0,0);}
.ma3_c00447{transform:matrix(0.316478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316478,0.000000,0.000000,0.250000,0,0);}
.m70_c00447{transform:matrix(0.316943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316943,0.000000,0.000000,0.250000,0,0);}
.m7f_c00447{transform:matrix(0.317133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317133,0.000000,0.000000,0.250000,0,0);}
.mb4_c00447{transform:matrix(0.318265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318265,0.000000,0.000000,0.250000,0,0);}
.m19_c00447{transform:matrix(0.318522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318522,0.000000,0.000000,0.250000,0,0);}
.m2f_c00447{transform:matrix(0.318605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318605,0.000000,0.000000,0.250000,0,0);}
.m40_c00447{transform:matrix(0.319419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319419,0.000000,0.000000,0.250000,0,0);}
.m5c_c00447{transform:matrix(0.319467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319467,0.000000,0.000000,0.250000,0,0);}
.m89_c00447{transform:matrix(0.319640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319640,0.000000,0.000000,0.250000,0,0);}
.m9_c00447{transform:matrix(0.319680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319680,0.000000,0.000000,0.250000,0,0);}
.m12_c00447{transform:matrix(0.319858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319858,0.000000,0.000000,0.250000,0,0);}
.m7e_c00447{transform:matrix(0.320290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320290,0.000000,0.000000,0.250000,0,0);}
.mb3_c00447{transform:matrix(0.320336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320336,0.000000,0.000000,0.250000,0,0);}
.m39_c00447{transform:matrix(0.320784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320784,0.000000,0.000000,0.250000,0,0);}
.m59_c00447{transform:matrix(0.322082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322082,0.000000,0.000000,0.250000,0,0);}
.m6_c00447{transform:matrix(0.322582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322582,0.000000,0.000000,0.250000,0,0);}
.m61_c00447{transform:matrix(0.324087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324087,0.000000,0.000000,0.250000,0,0);}
.m87_c00447{transform:matrix(0.324123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324123,0.000000,0.000000,0.250000,0,0);}
.m4a_c00447{transform:matrix(0.324315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324315,0.000000,0.000000,0.250000,0,0);}
.ma2_c00447{transform:matrix(0.324841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324841,0.000000,0.000000,0.250000,0,0);}
.m31_c00447{transform:matrix(0.325521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325521,0.000000,0.000000,0.250000,0,0);}
.maf_c00447{transform:matrix(0.326905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326905,0.000000,0.000000,0.250000,0,0);}
.m3b_c00447{transform:matrix(0.327567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327567,0.000000,0.000000,0.250000,0,0);}
.m86_c00447{transform:matrix(0.328922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328922,0.000000,0.000000,0.250000,0,0);}
.m6f_c00447{transform:matrix(0.329002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329002,0.000000,0.000000,0.250000,0,0);}
.m2_c00447{transform:matrix(0.329613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329613,0.000000,0.000000,0.250000,0,0);}
.m8a_c00447{transform:matrix(0.329938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329938,0.000000,0.000000,0.250000,0,0);}
.m3c_c00447{transform:matrix(0.330712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330712,0.000000,0.000000,0.250000,0,0);}
.m63_c00447{transform:matrix(0.331190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331190,0.000000,0.000000,0.250000,0,0);}
.m54_c00447{transform:matrix(0.332185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332185,0.000000,0.000000,0.250000,0,0);}
.m45_c00447{transform:matrix(0.332814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332814,0.000000,0.000000,0.250000,0,0);}
.m1_c00447{transform:matrix(0.333467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333467,0.000000,0.000000,0.250000,0,0);}
.m36_c00447{transform:matrix(0.333675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333675,0.000000,0.000000,0.250000,0,0);}
.mb1_c00447{transform:matrix(0.334317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334317,0.000000,0.000000,0.250000,0,0);}
.m43_c00447{transform:matrix(0.334327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334327,0.000000,0.000000,0.250000,0,0);}
.m81_c00447{transform:matrix(0.334923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334923,0.000000,0.000000,0.250000,0,0);}
.m1c_c00447{transform:matrix(0.336296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336296,0.000000,0.000000,0.250000,0,0);}
.m5f_c00447{transform:matrix(0.336938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336938,0.000000,0.000000,0.250000,0,0);}
.m32_c00447{transform:matrix(0.337866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337866,0.000000,0.000000,0.250000,0,0);}
.m4d_c00447{transform:matrix(0.339494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339494,0.000000,0.000000,0.250000,0,0);}
.mb7_c00447{transform:matrix(0.340240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340240,0.000000,0.000000,0.250000,0,0);}
.m91_c00447{transform:matrix(0.340619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340619,0.000000,0.000000,0.250000,0,0);}
.m25_c00447{transform:matrix(0.342745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342745,0.000000,0.000000,0.250000,0,0);}
.mb5_c00447{transform:matrix(0.345146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345146,0.000000,0.000000,0.250000,0,0);}
.m3f_c00447{transform:matrix(0.345284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345284,0.000000,0.000000,0.250000,0,0);}
.m66_c00447{transform:matrix(0.345459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345459,0.000000,0.000000,0.250000,0,0);}
.m53_c00447{transform:matrix(0.345821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345821,0.000000,0.000000,0.250000,0,0);}
.m8f_c00447{transform:matrix(0.346180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346180,0.000000,0.000000,0.250000,0,0);}
.m98_c00447{transform:matrix(0.348332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348332,0.000000,0.000000,0.250000,0,0);}
.m27_c00447{transform:matrix(0.348508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348508,0.000000,0.000000,0.250000,0,0);}
.m85_c00447{transform:matrix(0.349091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349091,0.000000,0.000000,0.250000,0,0);}
.m4e_c00447{transform:matrix(0.355438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355438,0.000000,0.000000,0.250000,0,0);}
.m65_c00447{transform:matrix(0.356715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356715,0.000000,0.000000,0.250000,0,0);}
.m9f_c00447{transform:matrix(0.359757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359757,0.000000,0.000000,0.250000,0,0);}
.mad_c00447{transform:matrix(0.361786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361786,0.000000,0.000000,0.250000,0,0);}
.ma6_c00447{transform:matrix(0.362154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362154,0.000000,0.000000,0.250000,0,0);}
.m48_c00447{transform:matrix(0.363001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363001,0.000000,0.000000,0.250000,0,0);}
.m60_c00447{transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);}
.m5_c00447{transform:matrix(0.370493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370493,0.000000,0.000000,0.250000,0,0);}
.m9d_c00447{transform:matrix(0.373079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373079,0.000000,0.000000,0.250000,0,0);}
.m21_c00447{transform:matrix(0.374544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374544,0.000000,0.000000,0.250000,0,0);}
.ma4_c00447{transform:matrix(0.376960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376960,0.000000,0.000000,0.250000,0,0);}
.m6a_c00447{transform:matrix(0.378958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378958,0.000000,0.000000,0.250000,0,0);}
.m15_c00447{transform:matrix(0.386524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386524,0.000000,0.000000,0.250000,0,0);}
.m37_c00447{transform:matrix(0.397482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397482,0.000000,0.000000,0.250000,0,0);}
.m28_c00447{transform:matrix(0.403791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403791,0.000000,0.000000,0.250000,0,0);}
.m44_c00447{transform:matrix(0.413555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413555,0.000000,0.000000,0.250000,0,0);}
.m7b_c00447{transform:matrix(0.460268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460268,0.000000,0.000000,0.250000,0,0);}
.v0_c00447{vertical-align:0.000000px;}
.ls5_c00447{letter-spacing:-2.619540px;}
.ls18_c00447{letter-spacing:-2.079000px;}
.ls1a_c00447{letter-spacing:-1.746367px;}
.lse_c00447{letter-spacing:-0.258510px;}
.ls14_c00447{letter-spacing:-0.164657px;}
.ls0_c00447{letter-spacing:0.000000px;}
.ls1e_c00447{letter-spacing:0.358974px;}
.ls1b_c00447{letter-spacing:0.584110px;}
.ls17_c00447{letter-spacing:1.076806px;}
.lsc_c00447{letter-spacing:1.084568px;}
.ls1d_c00447{letter-spacing:1.190020px;}
.ls1f_c00447{letter-spacing:1.314089px;}
.ls15_c00447{letter-spacing:1.661537px;}
.ls6_c00447{letter-spacing:1.930500px;}
.ls3_c00447{letter-spacing:2.282742px;}
.ls19_c00447{letter-spacing:2.494810px;}
.lsd_c00447{letter-spacing:2.692810px;}
.ls20_c00447{letter-spacing:3.306610px;}
.ls8_c00447{letter-spacing:3.405610px;}
.lsa_c00447{letter-spacing:3.484810px;}
.ls1c_c00447{letter-spacing:3.510184px;}
.ls12_c00447{letter-spacing:3.524400px;}
.ls1_c00447{letter-spacing:3.534070px;}
.ls9_c00447{letter-spacing:3.643200px;}
.ls2_c00447{letter-spacing:3.742200px;}
.ls4_c00447{letter-spacing:3.801610px;}
.ls7_c00447{letter-spacing:3.880810px;}
.lsb_c00447{letter-spacing:3.940200px;}
.lsf_c00447{letter-spacing:4.039200px;}
.ls11_c00447{letter-spacing:4.078810px;}
.ls16_c00447{letter-spacing:29.937798px;}
.ls13_c00447{letter-spacing:58.449798px;}
.ls10_c00447{letter-spacing:62.726400px;}
.sc__c00447{text-shadow:none;}
.sc0_c00447{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00447{-webkit-text-stroke:0px transparent;}
.sc0_c00447{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00447{word-spacing:0.000000px;}
._1_c00447{margin-left:-13.424400px;}
._0_c00447{width:15.444000px;}
._2_c00447{width:32.838603px;}
._3_c00447{width:345.871372px;}
.fc0_c00447{color:transparent;}
.fs17_c00447{font-size:11.682198px;}
.fs0_c00447{font-size:22.176000px;}
.fs13_c00447{font-size:25.146000px;}
.fs14_c00447{font-size:29.937798px;}
.fs4_c00447{font-size:38.610000px;}
.fs18_c00447{font-size:39.402000px;}
.fs11_c00447{font-size:44.946198px;}
.fs16_c00447{font-size:49.896198px;}
.fsb_c00447{font-size:53.856198px;}
.fs10_c00447{font-size:58.449798px;}
.fs15_c00447{font-size:59.400000px;}
.fsd_c00447{font-size:62.726400px;}
.fsa_c00447{font-size:66.132198px;}
.fs12_c00447{font-size:67.320000px;}
.fs6_c00447{font-size:68.112198px;}
.fs8_c00447{font-size:69.696198px;}
.fsf_c00447{font-size:70.488000px;}
.fs7_c00447{font-size:72.864000px;}
.fs19_c00447{font-size:73.260000px;}
.fs2_c00447{font-size:74.844000px;}
.fs3_c00447{font-size:76.032198px;}
.fs5_c00447{font-size:77.616198px;}
.fs9_c00447{font-size:78.804000px;}
.fsc_c00447{font-size:80.784000px;}
.fse_c00447{font-size:81.576198px;}
.fs1_c00447{font-size:87.912198px;}
.fs1a_c00447{font-size:107.712198px;}
.y0_c00447{bottom:0.000000px;}
.y1_c00447{bottom:76.500000px;}
.y23_c00447{bottom:149.956335px;}
.y2_c00447{bottom:169.558335px;}
.y22_c00447{bottom:178.468335px;}
.y20_c00447{bottom:185.239935px;}
.y21_c00447{bottom:185.947785px;}
.y1f_c00447{bottom:219.092985px;}
.y1e_c00447{bottom:252.243135px;}
.y1d_c00447{bottom:284.314185px;}
.y1c_c00447{bottom:316.033785px;}
.y1b_c00447{bottom:348.109785px;}
.y19_c00447{bottom:374.839785px;}
.y17_c00447{bottom:379.477935px;}
.y1a_c00447{bottom:379.829385px;}
.y18_c00447{bottom:380.190735px;}
.y16_c00447{bottom:418.325535px;}
.y15_c00447{bottom:428.661135px;}
.y14_c00447{bottom:441.486585px;}
.y13_c00447{bottom:475.700985px;}
.y12_c00447{bottom:505.999935px;}
.y11_c00447{bottom:508.138335px;}
.y10_c00447{bottom:540.570735px;}
.yf_c00447{bottom:573.003135px;}
.ye_c00447{bottom:605.074185px;}
.yd_c00447{bottom:637.155135px;}
.yc_c00447{bottom:669.226185px;}
.yb_c00447{bottom:701.658585px;}
.ya_c00447{bottom:764.389935px;}
.y9_c00447{bottom:797.178735px;}
.y8_c00447{bottom:828.898335px;}
.y6_c00447{bottom:861.330735px;}
.y7_c00447{bottom:866.315385px;}
.y5_c00447{bottom:893.763135px;}
.y4_c00447{bottom:926.190585px;}
.y3_c00447{bottom:1059.127785px;}
.h1b_c00447{height:12.184167px;}
.h16_c00447{height:19.938573px;}
.h2_c00447{height:23.128875px;}
.h15_c00447{height:26.226492px;}
.h1c_c00447{height:38.670908px;}
.h12_c00447{height:38.927565px;}
.h6_c00447{height:40.269023px;}
.hf_c00447{height:41.775782px;}
.h13_c00447{height:44.112235px;}
.h1a_c00447{height:48.970390px;}
.h19_c00447{height:50.286012px;}
.hd_c00447{height:52.856913px;}
.h18_c00447{height:61.952344px;}
.h14_c00447{height:66.070898px;}
.ha_c00447{height:68.403007px;}
.hc_c00447{height:68.973816px;}
.h11_c00447{height:69.180117px;}
.h8_c00447{height:71.038894px;}
.h9_c00447{height:71.512031px;}
.h4_c00447{height:73.455293px;}
.h17_c00447{height:73.516781px;}
.h5_c00447{height:74.621444px;}
.h7_c00447{height:76.176054px;}
.h1d_c00447{height:76.407891px;}
.hb_c00447{height:77.341816px;}
.he_c00447{height:79.285078px;}
.h1f_c00447{height:79.299207px;}
.h10_c00447{height:80.062577px;}
.h3_c00447{height:86.281015px;}
.h1e_c00447{height:105.713632px;}
.h1_c00447{height:1110.000000px;}
.h0_c00447{height:1263.000000px;}
.w1_c00447{width:775.500000px;}
.w0_c00447{width:892.500000px;}
.x0_c00447{left:0.000000px;}
.x2_c00447{left:50.867835px;}
.x1_c00447{left:58.500000px;}
.x65_c00447{left:91.185585px;}
.x3a_c00447{left:92.428035px;}
.x29_c00447{left:94.210035px;}
.x20_c00447{left:95.249535px;}
.x17_c00447{left:96.328635px;}
.x4_c00447{left:98.051235px;}
.x21_c00447{left:126.107835px;}
.x46_c00447{left:135.903885px;}
.xe_c00447{left:138.596685px;}
.x32_c00447{left:146.897835px;}
.x31_c00447{left:148.367985px;}
.x2a_c00447{left:158.960985px;}
.xf_c00447{left:160.747935px;}
.x52_c00447{left:171.103335px;}
.x5_c00447{left:172.736835px;}
.x18_c00447{left:180.998385px;}
.x63_c00447{left:191.843835px;}
.x71_c00447{left:193.779285px;}
.x53_c00447{left:202.016085px;}
.x50_c00447{left:203.921835px;}
.x4a_c00447{left:212.292285px;}
.x22_c00447{left:213.797085px;}
.x64_c00447{left:223.340685px;}
.x47_c00447{left:224.459385px;}
.x2b_c00447{left:226.023585px;}
.x10_c00447{left:235.869135px;}
.x3b_c00447{left:237.507585px;}
.x6_c00447{left:249.209385px;}
.x42_c00447{left:256.906635px;}
.x3c_c00447{left:258.812385px;}
.x54_c00447{left:270.662685px;}
.x19_c00447{left:280.077585px;}
.x7_c00447{left:282.760485px;}
.x55_c00447{left:290.759685px;}
.x66_c00447{left:291.987285px;}
.x23_c00447{left:293.774235px;}
.x33_c00447{left:302.525835px;}
.x6d_c00447{left:312.901035px;}
.x4b_c00447{left:314.574135px;}
.x2c_c00447{left:325.533435px;}
.x3d_c00447{left:327.246135px;}
.x70_c00447{left:336.210585px;}
.x11_c00447{left:337.982685px;}
.x5c_c00447{left:344.675085px;}
.x37_c00447{left:347.263935px;}
.x6a_c00447{left:348.575685px;}
.x1a_c00447{left:350.387385px;}
.x2d_c00447{left:357.901485px;}
.x5d_c00447{left:363.415785px;}
.x74_c00447{left:369.014235px;}
.x12_c00447{left:371.127885px;}
.x1b_c00447{left:372.172335px;}
.x5e_c00447{left:373.449435px;}
.x6b_c00447{left:380.191335px;}
.x67_c00447{left:389.784435px;}
.x2e_c00447{left:390.917985px;}
.x43_c00447{left:392.091135px;}
.x5f_c00447{left:393.620685px;}
.x34_c00447{left:402.812835px;}
.x59_c00447{left:413.356335px;}
.x8_c00447{left:414.856185px;}
.x60_c00447{left:416.544135px;}
.x6e_c00447{left:423.335535px;}
.x44_c00447{left:424.840335px;}
.x4c_c00447{left:425.983785px;}
.x61_c00447{left:432.988035px;}
.x24_c00447{left:435.824385px;}
.x62_c00447{left:439.393335px;}
.x1c_c00447{left:446.526285px;}
.x48_c00447{left:458.247885px;}
.x9_c00447{left:469.761585px;}
.x13_c00447{left:481.092135px;}
.x51_c00447{left:491.279235px;}
.x5a_c00447{left:492.897885px;}
.x6c_c00447{left:500.600085px;}
.x3e_c00447{left:503.080035px;}
.x56_c00447{left:513.727485px;}
.x2f_c00447{left:522.434535px;}
.x49_c00447{left:523.498785px;}
.x6f_c00447{left:525.364935px;}
.x72_c00447{left:526.948935px;}
.xa_c00447{left:535.685685px;}
.x5b_c00447{left:543.377985px;}
.x25_c00447{left:546.625185px;}
.x1d_c00447{left:558.267585px;}
.x14_c00447{left:568.593285px;}
.x57_c00447{left:569.617935px;}
.x35_c00447{left:573.117585px;}
.x38_c00447{left:579.062535px;}
.xb_c00447{left:591.046485px;}
.x30_c00447{left:601.713735px;}
.x68_c00447{left:603.461085px;}
.x3f_c00447{left:611.861235px;}
.x26_c00447{left:613.148235px;}
.x75_c00447{left:623.107635px;}
.x4d_c00447{left:624.528285px;}
.x36_c00447{left:633.522435px;}
.xc_c00447{left:635.116335px;}
.x39_c00447{left:644.798535px;}
.x27_c00447{left:645.912285px;}
.x45_c00447{left:655.366785px;}
.x4e_c00447{left:657.272535px;}
.x15_c00447{left:659.064435px;}
.x69_c00447{left:667.999185px;}
.x40_c00447{left:678.329835px;}
.xd_c00447{left:679.755435px;}
.x1e_c00447{left:690.482085px;}
.x3_c00447{left:695.060835px;}
.x16_c00447{left:702.965985px;}
.x58_c00447{left:704.059935px;}
.x73_c00447{left:712.455135px;}
.x4f_c00447{left:713.499585px;}
.x41_c00447{left:722.018535px;}
.x1f_c00447{left:724.137135px;}
.x28_c00447{left:754.445985px;}
@media print{
.v0_c00447{vertical-align:0.000000pt;}
.ls5_c00447{letter-spacing:-2.328480pt;}
.ls18_c00447{letter-spacing:-1.848000pt;}
.ls1a_c00447{letter-spacing:-1.552326pt;}
.lse_c00447{letter-spacing:-0.229786pt;}
.ls14_c00447{letter-spacing:-0.146362pt;}
.ls0_c00447{letter-spacing:0.000000pt;}
.ls1e_c00447{letter-spacing:0.319088pt;}
.ls1b_c00447{letter-spacing:0.519209pt;}
.ls17_c00447{letter-spacing:0.957161pt;}
.lsc_c00447{letter-spacing:0.964060pt;}
.ls1d_c00447{letter-spacing:1.057795pt;}
.ls1f_c00447{letter-spacing:1.168079pt;}
.ls15_c00447{letter-spacing:1.476922pt;}
.ls6_c00447{letter-spacing:1.716000pt;}
.ls3_c00447{letter-spacing:2.029104pt;}
.ls19_c00447{letter-spacing:2.217609pt;}
.lsd_c00447{letter-spacing:2.393609pt;}
.ls20_c00447{letter-spacing:2.939209pt;}
.ls8_c00447{letter-spacing:3.027209pt;}
.lsa_c00447{letter-spacing:3.097609pt;}
.ls1c_c00447{letter-spacing:3.120163pt;}
.ls12_c00447{letter-spacing:3.132800pt;}
.ls1_c00447{letter-spacing:3.141396pt;}
.ls9_c00447{letter-spacing:3.238400pt;}
.ls2_c00447{letter-spacing:3.326400pt;}
.ls4_c00447{letter-spacing:3.379209pt;}
.ls7_c00447{letter-spacing:3.449609pt;}
.lsb_c00447{letter-spacing:3.502400pt;}
.lsf_c00447{letter-spacing:3.590400pt;}
.ls11_c00447{letter-spacing:3.625609pt;}
.ls16_c00447{letter-spacing:26.611376pt;}
.ls13_c00447{letter-spacing:51.955376pt;}
.ls10_c00447{letter-spacing:55.756800pt;}
.ws0_c00447{word-spacing:0.000000pt;}
._1_c00447{margin-left:-11.932800pt;}
._0_c00447{width:13.728000pt;}
._2_c00447{width:29.189869pt;}
._3_c00447{width:307.441220pt;}
.fs17_c00447{font-size:10.384176pt;}
.fs0_c00447{font-size:19.712000pt;}
.fs13_c00447{font-size:22.352000pt;}
.fs14_c00447{font-size:26.611376pt;}
.fs4_c00447{font-size:34.320000pt;}
.fs18_c00447{font-size:35.024000pt;}
.fs11_c00447{font-size:39.952176pt;}
.fs16_c00447{font-size:44.352176pt;}
.fsb_c00447{font-size:47.872176pt;}
.fs10_c00447{font-size:51.955376pt;}
.fs15_c00447{font-size:52.800000pt;}
.fsd_c00447{font-size:55.756800pt;}
.fsa_c00447{font-size:58.784176pt;}
.fs12_c00447{font-size:59.840000pt;}
.fs6_c00447{font-size:60.544176pt;}
.fs8_c00447{font-size:61.952176pt;}
.fsf_c00447{font-size:62.656000pt;}
.fs7_c00447{font-size:64.768000pt;}
.fs19_c00447{font-size:65.120000pt;}
.fs2_c00447{font-size:66.528000pt;}
.fs3_c00447{font-size:67.584176pt;}
.fs5_c00447{font-size:68.992176pt;}
.fs9_c00447{font-size:70.048000pt;}
.fsc_c00447{font-size:71.808000pt;}
.fse_c00447{font-size:72.512176pt;}
.fs1_c00447{font-size:78.144176pt;}
.fs1a_c00447{font-size:95.744176pt;}
.y0_c00447{bottom:0.000000pt;}
.y1_c00447{bottom:68.000000pt;}
.y23_c00447{bottom:133.294520pt;}
.y2_c00447{bottom:150.718520pt;}
.y22_c00447{bottom:158.638520pt;}
.y20_c00447{bottom:164.657720pt;}
.y21_c00447{bottom:165.286920pt;}
.y1f_c00447{bottom:194.749320pt;}
.y1e_c00447{bottom:224.216120pt;}
.y1d_c00447{bottom:252.723720pt;}
.y1c_c00447{bottom:280.918920pt;}
.y1b_c00447{bottom:309.430920pt;}
.y19_c00447{bottom:333.190920pt;}
.y17_c00447{bottom:337.313720pt;}
.y1a_c00447{bottom:337.626120pt;}
.y18_c00447{bottom:337.947320pt;}
.y16_c00447{bottom:371.844920pt;}
.y15_c00447{bottom:381.032120pt;}
.y14_c00447{bottom:392.432520pt;}
.y13_c00447{bottom:422.845320pt;}
.y12_c00447{bottom:449.777720pt;}
.y11_c00447{bottom:451.678520pt;}
.y10_c00447{bottom:480.507320pt;}
.yf_c00447{bottom:509.336120pt;}
.ye_c00447{bottom:537.843720pt;}
.yd_c00447{bottom:566.360120pt;}
.yc_c00447{bottom:594.867720pt;}
.yb_c00447{bottom:623.696520pt;}
.ya_c00447{bottom:679.457720pt;}
.y9_c00447{bottom:708.603320pt;}
.y8_c00447{bottom:736.798520pt;}
.y6_c00447{bottom:765.627320pt;}
.y7_c00447{bottom:770.058120pt;}
.y5_c00447{bottom:794.456120pt;}
.y4_c00447{bottom:823.280520pt;}
.y3_c00447{bottom:941.446920pt;}
.h1b_c00447{height:10.830371pt;}
.h16_c00447{height:17.723176pt;}
.h2_c00447{height:20.559000pt;}
.h15_c00447{height:23.312438pt;}
.h1c_c00447{height:34.374141pt;}
.h12_c00447{height:34.602280pt;}
.h6_c00447{height:35.794688pt;}
.hf_c00447{height:37.134029pt;}
.h13_c00447{height:39.210876pt;}
.h1a_c00447{height:43.529235pt;}
.h19_c00447{height:44.698677pt;}
.hd_c00447{height:46.983923pt;}
.h18_c00447{height:55.068750pt;}
.h14_c00447{height:58.729688pt;}
.ha_c00447{height:60.802673pt;}
.hc_c00447{height:61.310059pt;}
.h11_c00447{height:61.493438pt;}
.h8_c00447{height:63.145684pt;}
.h9_c00447{height:63.566250pt;}
.h4_c00447{height:65.293594pt;}
.h17_c00447{height:65.348250pt;}
.h5_c00447{height:66.330173pt;}
.h7_c00447{height:67.712048pt;}
.h1d_c00447{height:67.918125pt;}
.hb_c00447{height:68.748281pt;}
.he_c00447{height:70.475625pt;}
.h1f_c00447{height:70.488184pt;}
.h10_c00447{height:71.166735pt;}
.h3_c00447{height:76.694235pt;}
.h1e_c00447{height:93.967673pt;}
.h1_c00447{height:986.666667pt;}
.h0_c00447{height:1122.666667pt;}
.w1_c00447{width:689.333333pt;}
.w0_c00447{width:793.333333pt;}
.x0_c00447{left:0.000000pt;}
.x2_c00447{left:45.215853pt;}
.x1_c00447{left:52.000000pt;}
.x65_c00447{left:81.053853pt;}
.x3a_c00447{left:82.158253pt;}
.x29_c00447{left:83.742253pt;}
.x20_c00447{left:84.666253pt;}
.x17_c00447{left:85.625453pt;}
.x4_c00447{left:87.156653pt;}
.x21_c00447{left:112.095853pt;}
.x46_c00447{left:120.803453pt;}
.xe_c00447{left:123.197053pt;}
.x32_c00447{left:130.575853pt;}
.x31_c00447{left:131.882653pt;}
.x2a_c00447{left:141.298653pt;}
.xf_c00447{left:142.887053pt;}
.x52_c00447{left:152.091853pt;}
.x5_c00447{left:153.543853pt;}
.x18_c00447{left:160.887453pt;}
.x63_c00447{left:170.527853pt;}
.x71_c00447{left:172.248253pt;}
.x53_c00447{left:179.569853pt;}
.x50_c00447{left:181.263853pt;}
.x4a_c00447{left:188.704253pt;}
.x22_c00447{left:190.041853pt;}
.x64_c00447{left:198.525053pt;}
.x47_c00447{left:199.519453pt;}
.x2b_c00447{left:200.909853pt;}
.x10_c00447{left:209.661453pt;}
.x3b_c00447{left:211.117853pt;}
.x6_c00447{left:221.519453pt;}
.x42_c00447{left:228.361453pt;}
.x3c_c00447{left:230.055453pt;}
.x54_c00447{left:240.589053pt;}
.x19_c00447{left:248.957853pt;}
.x7_c00447{left:251.342653pt;}
.x55_c00447{left:258.453053pt;}
.x66_c00447{left:259.544253pt;}
.x23_c00447{left:261.132653pt;}
.x33_c00447{left:268.911853pt;}
.x6d_c00447{left:278.134253pt;}
.x4b_c00447{left:279.621453pt;}
.x2c_c00447{left:289.363053pt;}
.x3d_c00447{left:290.885453pt;}
.x70_c00447{left:298.853853pt;}
.x11_c00447{left:300.429053pt;}
.x5c_c00447{left:306.377853pt;}
.x37_c00447{left:308.679053pt;}
.x6a_c00447{left:309.845053pt;}
.x1a_c00447{left:311.455453pt;}
.x2d_c00447{left:318.134653pt;}
.x5d_c00447{left:323.036253pt;}
.x74_c00447{left:328.012653pt;}
.x12_c00447{left:329.891453pt;}
.x1b_c00447{left:330.819853pt;}
.x5e_c00447{left:331.955053pt;}
.x6b_c00447{left:337.947853pt;}
.x67_c00447{left:346.475053pt;}
.x2e_c00447{left:347.482653pt;}
.x43_c00447{left:348.525453pt;}
.x5f_c00447{left:349.885053pt;}
.x34_c00447{left:358.055853pt;}
.x59_c00447{left:367.427853pt;}
.x8_c00447{left:368.761053pt;}
.x60_c00447{left:370.261453pt;}
.x6e_c00447{left:376.298253pt;}
.x44_c00447{left:377.635853pt;}
.x4c_c00447{left:378.652253pt;}
.x61_c00447{left:384.878253pt;}
.x24_c00447{left:387.399453pt;}
.x62_c00447{left:390.571853pt;}
.x1c_c00447{left:396.912253pt;}
.x48_c00447{left:407.331453pt;}
.x9_c00447{left:417.565853pt;}
.x13_c00447{left:427.637453pt;}
.x51_c00447{left:436.692653pt;}
.x5a_c00447{left:438.131453pt;}
.x6c_c00447{left:444.977853pt;}
.x3e_c00447{left:447.182253pt;}
.x56_c00447{left:456.646653pt;}
.x2f_c00447{left:464.386253pt;}
.x49_c00447{left:465.332253pt;}
.x6f_c00447{left:466.991053pt;}
.x72_c00447{left:468.399053pt;}
.xa_c00447{left:476.165053pt;}
.x5b_c00447{left:483.002653pt;}
.x25_c00447{left:485.889053pt;}
.x1d_c00447{left:496.237853pt;}
.x14_c00447{left:505.416253pt;}
.x57_c00447{left:506.327053pt;}
.x35_c00447{left:509.437853pt;}
.x38_c00447{left:514.722253pt;}
.xb_c00447{left:525.374653pt;}
.x30_c00447{left:534.856653pt;}
.x68_c00447{left:536.409853pt;}
.x3f_c00447{left:543.876653pt;}
.x26_c00447{left:545.020653pt;}
.x75_c00447{left:553.873453pt;}
.x4d_c00447{left:555.136253pt;}
.x36_c00447{left:563.131053pt;}
.xc_c00447{left:564.547853pt;}
.x39_c00447{left:573.154253pt;}
.x27_c00447{left:574.144253pt;}
.x45_c00447{left:582.548253pt;}
.x4e_c00447{left:584.242253pt;}
.x15_c00447{left:585.835053pt;}
.x69_c00447{left:593.777053pt;}
.x40_c00447{left:602.959853pt;}
.xd_c00447{left:604.227053pt;}
.x1e_c00447{left:613.761853pt;}
.x3_c00447{left:617.831853pt;}
.x16_c00447{left:624.858653pt;}
.x58_c00447{left:625.831053pt;}
.x73_c00447{left:633.293453pt;}
.x4f_c00447{left:634.221853pt;}
.x41_c00447{left:641.794253pt;}
.x1f_c00447{left:643.677453pt;}
.x28_c00447{left:670.618653pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ae6d405fc54b020229a561d6.woff2')format("woff");}.ff1_c00448{font-family:ff1_c00448;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00448;src:url('chunks/assets/font_c0f02ab9e14b60eef0905623.woff2')format("woff");}.ff2_c00448{font-family:ff2_c00448;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00448;src:url('chunks/assets/font_35d93cf5cae54f6459944e13.woff2')format("woff");}.ff3_c00448{font-family:ff3_c00448;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00448;src:url('chunks/assets/font_fc5e99101c7c2fbe678b7b52.woff2')format("woff");}.ff4_c00448{font-family:ff4_c00448;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m37_c00448{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);}
.m35_c00448{transform:matrix(0.119047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119047,0.000000,0.000000,0.250000,0,0);}
.ma7_c00448{transform:matrix(0.176752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176752,0.000000,0.000000,0.250000,0,0);}
.m1e_c00448{transform:matrix(0.204633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204633,0.000000,0.000000,0.250000,0,0);}
.m11_c00448{transform:matrix(0.224728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224728,0.000000,0.000000,0.250000,0,0);}
.m31_c00448{transform:matrix(0.249722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249722,0.000000,0.000000,0.250000,0,0);}
.mc_c00448{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00448{transform:matrix(0.250546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250546,0.000000,0.000000,0.250000,0,0);}
.m79_c00448{transform:matrix(0.251640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251640,0.000000,0.000000,0.250000,0,0);}
.md_c00448{transform:matrix(0.251921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251921,0.000000,0.000000,0.250000,0,0);}
.m28_c00448{transform:matrix(0.252313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252313,0.000000,0.000000,0.250000,0,0);}
.m20_c00448{transform:matrix(0.252997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252997,0.000000,0.000000,0.250000,0,0);}
.m27_c00448{transform:matrix(0.254003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254003,0.000000,0.000000,0.250000,0,0);}
.m4a_c00448{transform:matrix(0.254438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254438,0.000000,0.000000,0.250000,0,0);}
.m47_c00448{transform:matrix(0.254533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254533,0.000000,0.000000,0.250000,0,0);}
.m81_c00448{transform:matrix(0.255101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255101,0.000000,0.000000,0.250000,0,0);}
.m74_c00448{transform:matrix(0.255270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255270,0.000000,0.000000,0.250000,0,0);}
.m64_c00448{transform:matrix(0.255835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255835,0.000000,0.000000,0.250000,0,0);}
.m6_c00448{transform:matrix(0.256819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256819,0.000000,0.000000,0.250000,0,0);}
.mae_c00448{transform:matrix(0.257031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257031,0.000000,0.000000,0.250000,0,0);}
.m4f_c00448{transform:matrix(0.257155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257155,0.000000,0.000000,0.250000,0,0);}
.ma4_c00448{transform:matrix(0.257425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257425,0.000000,0.000000,0.250000,0,0);}
.m60_c00448{transform:matrix(0.257712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257712,0.000000,0.000000,0.250000,0,0);}
.m87_c00448{transform:matrix(0.259083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259083,0.000000,0.000000,0.250000,0,0);}
.m54_c00448{transform:matrix(0.259216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259216,0.000000,0.000000,0.250000,0,0);}
.m5f_c00448{transform:matrix(0.259656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259656,0.000000,0.000000,0.250000,0,0);}
.m40_c00448{transform:matrix(0.260137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260137,0.000000,0.000000,0.250000,0,0);}
.m29_c00448{transform:matrix(0.261937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261937,0.000000,0.000000,0.250000,0,0);}
.m2_c00448{transform:matrix(0.262486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262486,0.000000,0.000000,0.250000,0,0);}
.ma3_c00448{transform:matrix(0.262605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262605,0.000000,0.000000,0.250000,0,0);}
.m7e_c00448{transform:matrix(0.264211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264211,0.000000,0.000000,0.250000,0,0);}
.m1f_c00448{transform:matrix(0.264512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264512,0.000000,0.000000,0.250000,0,0);}
.m51_c00448{transform:matrix(0.264817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264817,0.000000,0.000000,0.250000,0,0);}
.m2b_c00448{transform:matrix(0.264913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264913,0.000000,0.000000,0.250000,0,0);}
.m8a_c00448{transform:matrix(0.265289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265289,0.000000,0.000000,0.250000,0,0);}
.m0_c00448{transform:matrix(0.265742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265742,0.000000,0.000000,0.250000,0,0);}
.m18_c00448{transform:matrix(0.266523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266523,0.000000,0.000000,0.250000,0,0);}
.m3d_c00448{transform:matrix(0.266826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266826,0.000000,0.000000,0.250000,0,0);}
.ma6_c00448{transform:matrix(0.267779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267779,0.000000,0.000000,0.250000,0,0);}
.m16_c00448{transform:matrix(0.268474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268474,0.000000,0.000000,0.250000,0,0);}
.ma8_c00448{transform:matrix(0.268767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268767,0.000000,0.000000,0.250000,0,0);}
.m68_c00448{transform:matrix(0.268892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268892,0.000000,0.000000,0.250000,0,0);}
.m48_c00448{transform:matrix(0.269089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269089,0.000000,0.000000,0.250000,0,0);}
.m84_c00448{transform:matrix(0.269394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269394,0.000000,0.000000,0.250000,0,0);}
.m10_c00448{transform:matrix(0.269514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269514,0.000000,0.000000,0.250000,0,0);}
.m8d_c00448{transform:matrix(0.270369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270369,0.000000,0.000000,0.250000,0,0);}
.m57_c00448{transform:matrix(0.270387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270387,0.000000,0.000000,0.250000,0,0);}
.m6b_c00448{transform:matrix(0.270868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270868,0.000000,0.000000,0.250000,0,0);}
.me_c00448{transform:matrix(0.271209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271209,0.000000,0.000000,0.250000,0,0);}
.m3_c00448{transform:matrix(0.271711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271711,0.000000,0.000000,0.250000,0,0);}
.m8_c00448{transform:matrix(0.272610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272610,0.000000,0.000000,0.250000,0,0);}
.m89_c00448{transform:matrix(0.273195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273195,0.000000,0.000000,0.250000,0,0);}
.maf_c00448{transform:matrix(0.274651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274651,0.000000,0.000000,0.250000,0,0);}
.m19_c00448{transform:matrix(0.274804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274804,0.000000,0.000000,0.250000,0,0);}
.m75_c00448{transform:matrix(0.275944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275944,0.000000,0.000000,0.250000,0,0);}
.m7_c00448{transform:matrix(0.276555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276555,0.000000,0.000000,0.250000,0,0);}
.m72_c00448{transform:matrix(0.277283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277283,0.000000,0.000000,0.250000,0,0);}
.m86_c00448{transform:matrix(0.277630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277630,0.000000,0.000000,0.250000,0,0);}
.m3a_c00448{transform:matrix(0.278111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278111,0.000000,0.000000,0.250000,0,0);}
.m45_c00448{transform:matrix(0.278124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278124,0.000000,0.000000,0.250000,0,0);}
.m67_c00448{transform:matrix(0.278248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278248,0.000000,0.000000,0.250000,0,0);}
.ma9_c00448{transform:matrix(0.278356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278356,0.000000,0.000000,0.250000,0,0);}
.m58_c00448{transform:matrix(0.279582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279582,0.000000,0.000000,0.250000,0,0);}
.m13_c00448{transform:matrix(0.279841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279841,0.000000,0.000000,0.250000,0,0);}
.m95_c00448{transform:matrix(0.280208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280208,0.000000,0.000000,0.250000,0,0);}
.m80_c00448{transform:matrix(0.281154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281154,0.000000,0.000000,0.250000,0,0);}
.m88_c00448{transform:matrix(0.282120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282120,0.000000,0.000000,0.250000,0,0);}
.m3f_c00448{transform:matrix(0.282321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282321,0.000000,0.000000,0.250000,0,0);}
.m12_c00448{transform:matrix(0.282568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282568,0.000000,0.000000,0.250000,0,0);}
.m71_c00448{transform:matrix(0.282607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282607,0.000000,0.000000,0.250000,0,0);}
.m1b_c00448{transform:matrix(0.282722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282722,0.000000,0.000000,0.250000,0,0);}
.m8c_c00448{transform:matrix(0.282748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282748,0.000000,0.000000,0.250000,0,0);}
.m42_c00448{transform:matrix(0.282799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282799,0.000000,0.000000,0.250000,0,0);}
.m39_c00448{transform:matrix(0.283046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283046,0.000000,0.000000,0.250000,0,0);}
.maa_c00448{transform:matrix(0.283260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283260,0.000000,0.000000,0.250000,0,0);}
.m32_c00448{transform:matrix(0.283433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283433,0.000000,0.000000,0.250000,0,0);}
.m4_c00448{transform:matrix(0.284103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284103,0.000000,0.000000,0.250000,0,0);}
.m2e_c00448{transform:matrix(0.284479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284479,0.000000,0.000000,0.250000,0,0);}
.mab_c00448{transform:matrix(0.284671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284671,0.000000,0.000000,0.250000,0,0);}
.m1a_c00448{transform:matrix(0.284871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284871,0.000000,0.000000,0.250000,0,0);}
.m90_c00448{transform:matrix(0.284912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284912,0.000000,0.000000,0.250000,0,0);}
.m1d_c00448{transform:matrix(0.284942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284942,0.000000,0.000000,0.250000,0,0);}
.m6e_c00448{transform:matrix(0.285065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285065,0.000000,0.000000,0.250000,0,0);}
.m5b_c00448{transform:matrix(0.285406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285406,0.000000,0.000000,0.250000,0,0);}
.m49_c00448{transform:matrix(0.285656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285656,0.000000,0.000000,0.250000,0,0);}
.m24_c00448{transform:matrix(0.285811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285811,0.000000,0.000000,0.250000,0,0);}
.m17_c00448{transform:matrix(0.286191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286191,0.000000,0.000000,0.250000,0,0);}
.m78_c00448{transform:matrix(0.286701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286701,0.000000,0.000000,0.250000,0,0);}
.m1_c00448{transform:matrix(0.287268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287268,0.000000,0.000000,0.250000,0,0);}
.m9_c00448{transform:matrix(0.287463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287463,0.000000,0.000000,0.250000,0,0);}
.m15_c00448{transform:matrix(0.287941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287941,0.000000,0.000000,0.250000,0,0);}
.m38_c00448{transform:matrix(0.288671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288671,0.000000,0.000000,0.250000,0,0);}
.mac_c00448{transform:matrix(0.289502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289502,0.000000,0.000000,0.250000,0,0);}
.m7c_c00448{transform:matrix(0.289788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289788,0.000000,0.000000,0.250000,0,0);}
.m2f_c00448{transform:matrix(0.290085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290085,0.000000,0.000000,0.250000,0,0);}
.m70_c00448{transform:matrix(0.290445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290445,0.000000,0.000000,0.250000,0,0);}
.m7b_c00448{transform:matrix(0.290696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290696,0.000000,0.000000,0.250000,0,0);}
.m98_c00448{transform:matrix(0.290826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290826,0.000000,0.000000,0.250000,0,0);}
.m53_c00448{transform:matrix(0.291041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291041,0.000000,0.000000,0.250000,0,0);}
.m4b_c00448{transform:matrix(0.291156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291156,0.000000,0.000000,0.250000,0,0);}
.m94_c00448{transform:matrix(0.291488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291488,0.000000,0.000000,0.250000,0,0);}
.m92_c00448{transform:matrix(0.293124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293124,0.000000,0.000000,0.250000,0,0);}
.m50_c00448{transform:matrix(0.295539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295539,0.000000,0.000000,0.250000,0,0);}
.m5_c00448{transform:matrix(0.295839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295839,0.000000,0.000000,0.250000,0,0);}
.m7d_c00448{transform:matrix(0.296157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296157,0.000000,0.000000,0.250000,0,0);}
.m9b_c00448{transform:matrix(0.296961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296961,0.000000,0.000000,0.250000,0,0);}
.m3c_c00448{transform:matrix(0.297596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297596,0.000000,0.000000,0.250000,0,0);}
.m6c_c00448{transform:matrix(0.298981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298981,0.000000,0.000000,0.250000,0,0);}
.m5e_c00448{transform:matrix(0.299421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299421,0.000000,0.000000,0.250000,0,0);}
.m33_c00448{transform:matrix(0.300265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300265,0.000000,0.000000,0.250000,0,0);}
.m96_c00448{transform:matrix(0.300866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300866,0.000000,0.000000,0.250000,0,0);}
.m9d_c00448{transform:matrix(0.300961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300961,0.000000,0.000000,0.250000,0,0);}
.m4d_c00448{transform:matrix(0.301509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301509,0.000000,0.000000,0.250000,0,0);}
.m23_c00448{transform:matrix(0.301570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301570,0.000000,0.000000,0.250000,0,0);}
.m8b_c00448{transform:matrix(0.302110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302110,0.000000,0.000000,0.250000,0,0);}
.m59_c00448{transform:matrix(0.303021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303021,0.000000,0.000000,0.250000,0,0);}
.m30_c00448{transform:matrix(0.303417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303417,0.000000,0.000000,0.250000,0,0);}
.m4e_c00448{transform:matrix(0.303501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303501,0.000000,0.000000,0.250000,0,0);}
.m9e_c00448{transform:matrix(0.303914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303914,0.000000,0.000000,0.250000,0,0);}
.m85_c00448{transform:matrix(0.303970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303970,0.000000,0.000000,0.250000,0,0);}
.m52_c00448{transform:matrix(0.304391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304391,0.000000,0.000000,0.250000,0,0);}
.m14_c00448{transform:matrix(0.304943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304943,0.000000,0.000000,0.250000,0,0);}
.m61_c00448{transform:matrix(0.305041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305041,0.000000,0.000000,0.250000,0,0);}
.m97_c00448{transform:matrix(0.306583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306583,0.000000,0.000000,0.250000,0,0);}
.m22_c00448{transform:matrix(0.306781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306781,0.000000,0.000000,0.250000,0,0);}
.m69_c00448{transform:matrix(0.307299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307299,0.000000,0.000000,0.250000,0,0);}
.m66_c00448{transform:matrix(0.307365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307365,0.000000,0.000000,0.250000,0,0);}
.m6a_c00448{transform:matrix(0.308358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308358,0.000000,0.000000,0.250000,0,0);}
.m4c_c00448{transform:matrix(0.309035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309035,0.000000,0.000000,0.250000,0,0);}
.mb_c00448{transform:matrix(0.311260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311260,0.000000,0.000000,0.250000,0,0);}
.m91_c00448{transform:matrix(0.313714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313714,0.000000,0.000000,0.250000,0,0);}
.m9f_c00448{transform:matrix(0.313828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313828,0.000000,0.000000,0.250000,0,0);}
.m41_c00448{transform:matrix(0.313847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313847,0.000000,0.000000,0.250000,0,0);}
.m5a_c00448{transform:matrix(0.315450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315450,0.000000,0.000000,0.250000,0,0);}
.m83_c00448{transform:matrix(0.316282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316282,0.000000,0.000000,0.250000,0,0);}
.m76_c00448{transform:matrix(0.316382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316382,0.000000,0.000000,0.250000,0,0);}
.m62_c00448{transform:matrix(0.316437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316437,0.000000,0.000000,0.250000,0,0);}
.ma_c00448{transform:matrix(0.316775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316775,0.000000,0.000000,0.250000,0,0);}
.m3e_c00448{transform:matrix(0.319788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319788,0.000000,0.000000,0.250000,0,0);}
.m65_c00448{transform:matrix(0.319849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319849,0.000000,0.000000,0.250000,0,0);}
.m2d_c00448{transform:matrix(0.320124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320124,0.000000,0.000000,0.250000,0,0);}
.m9c_c00448{transform:matrix(0.321343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321343,0.000000,0.000000,0.250000,0,0);}
.m73_c00448{transform:matrix(0.322217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322217,0.000000,0.000000,0.250000,0,0);}
.m36_c00448{transform:matrix(0.322222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322222,0.000000,0.000000,0.250000,0,0);}
.m55_c00448{transform:matrix(0.322237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322237,0.000000,0.000000,0.250000,0,0);}
.m77_c00448{transform:matrix(0.322437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322437,0.000000,0.000000,0.250000,0,0);}
.m46_c00448{transform:matrix(0.322909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322909,0.000000,0.000000,0.250000,0,0);}
.m7f_c00448{transform:matrix(0.324082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324082,0.000000,0.000000,0.250000,0,0);}
.m44_c00448{transform:matrix(0.325016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325016,0.000000,0.000000,0.250000,0,0);}
.m2a_c00448{transform:matrix(0.325390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325390,0.000000,0.000000,0.250000,0,0);}
.m99_c00448{transform:matrix(0.325797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325797,0.000000,0.000000,0.250000,0,0);}
.m43_c00448{transform:matrix(0.325857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325857,0.000000,0.000000,0.250000,0,0);}
.mad_c00448{transform:matrix(0.326797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326797,0.000000,0.000000,0.250000,0,0);}
.m93_c00448{transform:matrix(0.326825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326825,0.000000,0.000000,0.250000,0,0);}
.m82_c00448{transform:matrix(0.327720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327720,0.000000,0.000000,0.250000,0,0);}
.m6d_c00448{transform:matrix(0.329075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329075,0.000000,0.000000,0.250000,0,0);}
.m25_c00448{transform:matrix(0.330925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330925,0.000000,0.000000,0.250000,0,0);}
.m56_c00448{transform:matrix(0.332678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332678,0.000000,0.000000,0.250000,0,0);}
.m5d_c00448{transform:matrix(0.334253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334253,0.000000,0.000000,0.250000,0,0);}
.m7a_c00448{transform:matrix(0.334507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334507,0.000000,0.000000,0.250000,0,0);}
.ma2_c00448{transform:matrix(0.336835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336835,0.000000,0.000000,0.250000,0,0);}
.m34_c00448{transform:matrix(0.339668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339668,0.000000,0.000000,0.250000,0,0);}
.m6f_c00448{transform:matrix(0.340652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340652,0.000000,0.000000,0.250000,0,0);}
.ma5_c00448{transform:matrix(0.346573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346573,0.000000,0.000000,0.250000,0,0);}
.ma1_c00448{transform:matrix(0.346593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346593,0.000000,0.000000,0.250000,0,0);}
.ma0_c00448{transform:matrix(0.352363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352363,0.000000,0.000000,0.250000,0,0);}
.m5c_c00448{transform:matrix(0.353324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353324,0.000000,0.000000,0.250000,0,0);}
.m3b_c00448{transform:matrix(0.358177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358177,0.000000,0.000000,0.250000,0,0);}
.mf_c00448{transform:matrix(0.360463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360463,0.000000,0.000000,0.250000,0,0);}
.m21_c00448{transform:matrix(0.364195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364195,0.000000,0.000000,0.250000,0,0);}
.m1c_c00448{transform:matrix(0.365980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365980,0.000000,0.000000,0.250000,0,0);}
.m2c_c00448{transform:matrix(0.366242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366242,0.000000,0.000000,0.250000,0,0);}
.m63_c00448{transform:matrix(0.368486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368486,0.000000,0.000000,0.250000,0,0);}
.m26_c00448{transform:matrix(0.370070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370070,0.000000,0.000000,0.250000,0,0);}
.m8f_c00448{transform:matrix(0.375943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375943,0.000000,0.000000,0.250000,0,0);}
.m8e_c00448{transform:matrix(0.381818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381818,0.000000,0.000000,0.250000,0,0);}
.v0_c00448{vertical-align:0.000000px;}
.ls4_c00448{letter-spacing:-2.813580px;}
.ls19_c00448{letter-spacing:-2.302344px;}
.ls17_c00448{letter-spacing:-0.959310px;}
.lsa_c00448{letter-spacing:-0.916423px;}
.lsc_c00448{letter-spacing:-0.393901px;}
.ls3_c00448{letter-spacing:0.000000px;}
.lsf_c00448{letter-spacing:0.329591px;}
.ls16_c00448{letter-spacing:0.884268px;}
.ls12_c00448{letter-spacing:1.037005px;}
.lse_c00448{letter-spacing:1.085238px;}
.ls11_c00448{letter-spacing:1.237975px;}
.ls10_c00448{letter-spacing:1.455023px;}
.lsb_c00448{letter-spacing:1.910700px;}
.ls9_c00448{letter-spacing:2.049894px;}
.ls5_c00448{letter-spacing:2.998472px;}
.ls18_c00448{letter-spacing:3.104244px;}
.ls14_c00448{letter-spacing:3.279830px;}
.ls0_c00448{letter-spacing:3.328063px;}
.ls7_c00448{letter-spacing:3.504610px;}
.ls15_c00448{letter-spacing:3.524400px;}
.ls13_c00448{letter-spacing:3.794314px;}
.ls6_c00448{letter-spacing:3.987245px;}
.ls2_c00448{letter-spacing:4.019400px;}
.ls1_c00448{letter-spacing:4.039200px;}
.ls8_c00448{letter-spacing:52.747398px;}
.lsd_c00448{letter-spacing:64.152198px;}
.sc__c00448{text-shadow:none;}
.sc0_c00448{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00448{-webkit-text-stroke:0px transparent;}
.sc0_c00448{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00448{word-spacing:0.000000px;}
._3_c00448{margin-left:-5.144832px;}
._0_c00448{width:4.420548px;}
._1_c00448{width:10.449648px;}
._2_c00448{width:21.624372px;}
.fc0_c00448{color:transparent;}
.fsd_c00448{font-size:27.720000px;}
.fs5_c00448{font-size:38.214000px;}
.fs4_c00448{font-size:52.747398px;}
.fse_c00448{font-size:56.628000px;}
.fsa_c00448{font-size:63.954000px;}
.fs6_c00448{font-size:64.152198px;}
.fs3_c00448{font-size:70.092198px;}
.fs9_c00448{font-size:70.488000px;}
.fsc_c00448{font-size:71.280000px;}
.fs2_c00448{font-size:72.864000px;}
.fsf_c00448{font-size:73.656198px;}
.fs7_c00448{font-size:74.844000px;}
.fs8_c00448{font-size:77.220000px;}
.fs1_c00448{font-size:80.388000px;}
.fs0_c00448{font-size:80.784000px;}
.fsb_c00448{font-size:92.664000px;}
.y0_c00448{bottom:0.000000px;}
.y1_c00448{bottom:76.500000px;}
.y1a_c00448{bottom:128.210985px;}
.y19_c00448{bottom:193.793535px;}
.y18_c00448{bottom:226.577385px;}
.y17_c00448{bottom:257.945535px;}
.y16_c00448{bottom:290.377935px;}
.y15_c00448{bottom:321.741135px;}
.y14_c00448{bottom:354.529935px;}
.y13_c00448{bottom:386.600985px;}
.y12_c00448{bottom:419.038335px;}
.y11_c00448{bottom:451.470735px;}
.y10_c00448{bottom:483.185385px;}
.yf_c00448{bottom:514.548585px;}
.y1d_c00448{bottom:524.884185px;}
.ye_c00448{bottom:545.911785px;}
.yd_c00448{bottom:577.987785px;}
.yc_c00448{bottom:609.707385px;}
.yb_c00448{bottom:642.139785px;}
.ya_c00448{bottom:674.220735px;}
.y9_c00448{bottom:706.653135px;}
.y8_c00448{bottom:770.087385px;}
.y7_c00448{bottom:802.168335px;}
.y6_c00448{bottom:833.882985px;}
.y5_c00448{bottom:866.315385px;}
.y4_c00448{bottom:898.396335px;}
.y3_c00448{bottom:930.467385px;}
.y1c_c00448{bottom:999.613935px;}
.y2_c00448{bottom:1057.707135px;}
.y1b_c00448{bottom:1096.549785px;}
.hf_c00448{height:28.911094px;}
.h6_c00448{height:35.129767px;}
.h7_c00448{height:39.856008px;}
.h8_c00448{height:42.725364px;}
.h10_c00448{height:59.061234px;}
.hc_c00448{height:62.767354px;}
.h5_c00448{height:68.791659px;}
.h4_c00448{height:71.512031px;}
.h9_c00448{height:73.455293px;}
.hb_c00448{height:73.516781px;}
.he_c00448{height:74.342813px;}
.ha_c00448{height:75.787207px;}
.h11_c00448{height:76.821113px;}
.h3_c00448{height:78.896426px;}
.h2_c00448{height:79.285078px;}
.hd_c00448{height:90.944648px;}
.h1_c00448{height:1110.000000px;}
.h0_c00448{height:1263.000000px;}
.w1_c00448{width:775.500000px;}
.w0_c00448{width:892.500000px;}
.x0_c00448{left:0.000000px;}
.x1_c00448{left:58.500000px;}
.x79_c00448{left:90.279735px;}
.x58_c00448{left:91.329135px;}
.x29_c00448{left:92.596335px;}
.xe_c00448{left:94.046685px;}
.x3_c00448{left:95.581185px;}
.xf_c00448{left:115.361385px;}
.x66_c00448{left:123.459585px;}
.x4b_c00448{left:124.672335px;}
.x21_c00448{left:126.281085px;}
.x3f_c00448{left:128.033385px;}
.x82_c00448{left:132.161685px;}
.x5c_c00448{left:133.770435px;}
.x1c_c00448{left:137.344335px;}
.x89_c00448{left:143.477385px;}
.x3b_c00448{left:148.823385px;}
.x7c_c00448{left:154.951485px;}
.x5d_c00448{left:167.425485px;}
.x10_c00448{left:169.054035px;}
.x4_c00448{left:170.138085px;}
.x83_c00448{left:176.345385px;}
.x59_c00448{left:177.924435px;}
.x34_c00448{left:180.701385px;}
.x3c_c00448{left:182.938785px;}
.x70_c00448{left:185.601885px;}
.x6a_c00448{left:187.963035px;}
.x52_c00448{left:188.997585px;}
.x2a_c00448{left:191.437935px;}
.x40_c00448{left:192.546735px;}
.x67_c00448{left:198.452085px;}
.x11_c00448{left:202.535835px;}
.x71_c00448{left:209.426235px;}
.x5a_c00448{left:210.574635px;}
.x7d_c00448{left:221.024085px;}
.x2b_c00448{left:223.043685px;}
.x22_c00448{left:224.523735px;}
.x87_c00448{left:231.023085px;}
.x4e_c00448{left:233.042685px;}
.x5_c00448{left:235.963185px;}
.x61_c00448{left:242.586285px;}
.x4f_c00448{left:255.297885px;}
.x1d_c00448{left:256.723485px;}
.x5e_c00448{left:264.742485px;}
.x6b_c00448{left:265.930485px;}
.x6_c00448{left:268.019385px;}
.x41_c00448{left:269.400435px;}
.x8a_c00448{left:273.875235px;}
.x76_c00448{left:276.647235px;}
.x2c_c00448{left:278.429235px;}
.x50_c00448{left:288.264885px;}
.x6c_c00448{left:297.531285px;}
.x62_c00448{left:298.748985px;}
.x12_c00448{left:300.704235px;}
.x8b_c00448{left:308.782635px;}
.x23_c00448{left:311.861535px;}
.x84_c00448{left:318.915285px;}
.x88_c00448{left:320.157735px;}
.x46_c00448{left:322.058535px;}
.x53_c00448{left:331.433835px;}
.x7_c00448{left:334.403835px;}
.x8c_c00448{left:341.155635px;}
.x13_c00448{left:344.219685px;}
.x3d_c00448{left:355.792785px;}
.x7e_c00448{left:364.257285px;}
.x54_c00448{left:365.583885px;}
.x35_c00448{left:366.875835px;}
.x8d_c00448{left:373.810785px;}
.x2d_c00448{left:376.671885px;}
.x14_c00448{left:388.433085px;}
.x24_c00448{left:389.675535px;}
.x77_c00448{left:397.105485px;}
.x6d_c00448{left:398.214285px;}
.x8_c00448{left:400.377435px;}
.x72_c00448{left:408.366735px;}
.x68_c00448{left:420.558585px;}
.x15_c00448{left:422.098035px;}
.x7a_c00448{left:430.117035px;}
.x2e_c00448{left:431.225835px;}
.x55_c00448{left:432.374235px;}
.x9_c00448{left:433.388985px;}
.x73_c00448{left:441.516885px;}
.x1e_c00448{left:444.927435px;}
.x8e_c00448{left:452.322735px;}
.x69_c00448{left:453.441435px;}
.x16_c00448{left:455.926335px;}
.x2f_c00448{left:465.014535px;}
.x1f_c00448{left:466.296585px;}
.x63_c00448{left:473.993835px;}
.x36_c00448{left:477.765735px;}
.x4c_c00448{left:486.606435px;}
.x5f_c00448{left:496.090635px;}
.x47_c00448{left:498.679485px;}
.x8f_c00448{left:506.936085px;}
.x3e_c00448{left:508.510185px;}
.x51_c00448{left:509.757585px;}
.x37_c00448{left:511.415835px;}
.x64_c00448{left:519.325935px;}
.x25_c00448{left:520.429785px;}
.xa_c00448{left:522.236535px;}
.x5b_c00448{left:529.191285px;}
.x30_c00448{left:531.517785px;}
.x38_c00448{left:533.299785px;}
.x85_c00448{left:540.086235px;}
.x42_c00448{left:542.170185px;}
.x20_c00448{left:543.293835px;}
.x26_c00448{left:554.995635px;}
.x6e_c00448{left:561.668235px;}
.x74_c00448{left:562.861185px;}
.x48_c00448{left:563.905635px;}
.x4d_c00448{left:565.633185px;}
.x31_c00448{left:574.597635px;}
.x17_c00448{left:575.953935px;}
.x86_c00448{left:583.522485px;}
.x7f_c00448{left:584.967885px;}
.xb_c00448{left:586.225185px;}
.x60_c00448{left:596.362785px;}
.x49_c00448{left:597.456735px;}
.x75_c00448{left:606.604335px;}
.x56_c00448{left:607.970535px;}
.x80_c00448{left:616.652835px;}
.x65_c00448{left:619.033785px;}
.x32_c00448{left:620.622735px;}
.x43_c00448{left:630.260385px;}
.x18_c00448{left:632.017635px;}
.x7b_c00448{left:639.457485px;}
.x27_c00448{left:640.734585px;}
.x39_c00448{left:642.575985px;}
.x81_c00448{left:650.154435px;}
.xc_c00448{left:653.045235px;}
.x44_c00448{left:662.668035px;}
.x19_c00448{left:664.068885px;}
.x78_c00448{left:672.538335px;}
.x57_c00448{left:673.741185px;}
.x3a_c00448{left:684.175785px;}
.xd_c00448{left:686.522085px;}
.x1a_c00448{left:687.546735px;}
.x2_c00448{left:689.363385px;}
.x45_c00448{left:696.189435px;}
.x33_c00448{left:706.698285px;}
.x6f_c00448{left:717.776385px;}
.x1b_c00448{left:719.657385px;}
.x4a_c00448{left:728.082285px;}
.x28_c00448{left:729.651435px;}
.x90_c00448{left:773.622285px;}
.x91_c00448{left:775.057785px;}
@media print{
.v0_c00448{vertical-align:0.000000pt;}
.ls4_c00448{letter-spacing:-2.500960pt;}
.ls19_c00448{letter-spacing:-2.046528pt;}
.ls17_c00448{letter-spacing:-0.852720pt;}
.lsa_c00448{letter-spacing:-0.814598pt;}
.lsc_c00448{letter-spacing:-0.350134pt;}
.ls3_c00448{letter-spacing:0.000000pt;}
.lsf_c00448{letter-spacing:0.292970pt;}
.ls16_c00448{letter-spacing:0.786016pt;}
.ls12_c00448{letter-spacing:0.921782pt;}
.lse_c00448{letter-spacing:0.964656pt;}
.ls11_c00448{letter-spacing:1.100422pt;}
.ls10_c00448{letter-spacing:1.293354pt;}
.lsb_c00448{letter-spacing:1.698400pt;}
.ls9_c00448{letter-spacing:1.822128pt;}
.ls5_c00448{letter-spacing:2.665309pt;}
.ls18_c00448{letter-spacing:2.759328pt;}
.ls14_c00448{letter-spacing:2.915405pt;}
.ls0_c00448{letter-spacing:2.958278pt;}
.ls7_c00448{letter-spacing:3.115209pt;}
.ls15_c00448{letter-spacing:3.132800pt;}
.ls13_c00448{letter-spacing:3.372723pt;}
.ls6_c00448{letter-spacing:3.544218pt;}
.ls2_c00448{letter-spacing:3.572800pt;}
.ls1_c00448{letter-spacing:3.590400pt;}
.ls8_c00448{letter-spacing:46.886576pt;}
.lsd_c00448{letter-spacing:57.024176pt;}
.ws0_c00448{word-spacing:0.000000pt;}
._3_c00448{margin-left:-4.573184pt;}
._0_c00448{width:3.929376pt;}
._1_c00448{width:9.288576pt;}
._2_c00448{width:19.221664pt;}
.fsd_c00448{font-size:24.640000pt;}
.fs5_c00448{font-size:33.968000pt;}
.fs4_c00448{font-size:46.886576pt;}
.fse_c00448{font-size:50.336000pt;}
.fsa_c00448{font-size:56.848000pt;}
.fs6_c00448{font-size:57.024176pt;}
.fs3_c00448{font-size:62.304176pt;}
.fs9_c00448{font-size:62.656000pt;}
.fsc_c00448{font-size:63.360000pt;}
.fs2_c00448{font-size:64.768000pt;}
.fsf_c00448{font-size:65.472176pt;}
.fs7_c00448{font-size:66.528000pt;}
.fs8_c00448{font-size:68.640000pt;}
.fs1_c00448{font-size:71.456000pt;}
.fs0_c00448{font-size:71.808000pt;}
.fsb_c00448{font-size:82.368000pt;}
.y0_c00448{bottom:0.000000pt;}
.y1_c00448{bottom:68.000000pt;}
.y1a_c00448{bottom:113.965320pt;}
.y19_c00448{bottom:172.260920pt;}
.y18_c00448{bottom:201.402120pt;}
.y17_c00448{bottom:229.284920pt;}
.y16_c00448{bottom:258.113720pt;}
.y15_c00448{bottom:285.992120pt;}
.y14_c00448{bottom:315.137720pt;}
.y13_c00448{bottom:343.645320pt;}
.y12_c00448{bottom:372.478520pt;}
.y11_c00448{bottom:401.307320pt;}
.y10_c00448{bottom:429.498120pt;}
.yf_c00448{bottom:457.376520pt;}
.y1d_c00448{bottom:466.563720pt;}
.ye_c00448{bottom:485.254920pt;}
.yd_c00448{bottom:513.766920pt;}
.yc_c00448{bottom:541.962120pt;}
.yb_c00448{bottom:570.790920pt;}
.ya_c00448{bottom:599.307320pt;}
.y9_c00448{bottom:628.136120pt;}
.y8_c00448{bottom:684.522120pt;}
.y7_c00448{bottom:713.038520pt;}
.y6_c00448{bottom:741.229320pt;}
.y5_c00448{bottom:770.058120pt;}
.y4_c00448{bottom:798.574520pt;}
.y3_c00448{bottom:827.082120pt;}
.y1c_c00448{bottom:888.545720pt;}
.y2_c00448{bottom:940.184120pt;}
.y1b_c00448{bottom:974.710920pt;}
.hf_c00448{height:25.698750pt;}
.h6_c00448{height:31.226460pt;}
.h7_c00448{height:35.427563pt;}
.h8_c00448{height:37.978101pt;}
.h10_c00448{height:52.498875pt;}
.hc_c00448{height:55.793203pt;}
.h5_c00448{height:61.148141pt;}
.h4_c00448{height:63.566250pt;}
.h9_c00448{height:65.293594pt;}
.hb_c00448{height:65.348250pt;}
.he_c00448{height:66.082500pt;}
.ha_c00448{height:67.366406pt;}
.h11_c00448{height:68.285434pt;}
.h3_c00448{height:70.130156pt;}
.h2_c00448{height:70.475625pt;}
.hd_c00448{height:80.839688pt;}
.h1_c00448{height:986.666667pt;}
.h0_c00448{height:1122.666667pt;}
.w1_c00448{width:689.333333pt;}
.w0_c00448{width:793.333333pt;}
.x0_c00448{left:0.000000pt;}
.x1_c00448{left:52.000000pt;}
.x79_c00448{left:80.248653pt;}
.x58_c00448{left:81.181453pt;}
.x29_c00448{left:82.307853pt;}
.xe_c00448{left:83.597053pt;}
.x3_c00448{left:84.961053pt;}
.xf_c00448{left:102.543453pt;}
.x66_c00448{left:109.741853pt;}
.x4b_c00448{left:110.819853pt;}
.x21_c00448{left:112.249853pt;}
.x3f_c00448{left:113.807453pt;}
.x82_c00448{left:117.477053pt;}
.x5c_c00448{left:118.907053pt;}
.x1c_c00448{left:122.083853pt;}
.x89_c00448{left:127.535453pt;}
.x3b_c00448{left:132.287453pt;}
.x7c_c00448{left:137.734653pt;}
.x5d_c00448{left:148.822653pt;}
.x10_c00448{left:150.270253pt;}
.x4_c00448{left:151.233853pt;}
.x83_c00448{left:156.751453pt;}
.x59_c00448{left:158.155053pt;}
.x34_c00448{left:160.623453pt;}
.x3c_c00448{left:162.612253pt;}
.x70_c00448{left:164.979453pt;}
.x6a_c00448{left:167.078253pt;}
.x52_c00448{left:167.997853pt;}
.x2a_c00448{left:170.167053pt;}
.x40_c00448{left:171.152653pt;}
.x67_c00448{left:176.401853pt;}
.x11_c00448{left:180.031853pt;}
.x71_c00448{left:186.156653pt;}
.x5a_c00448{left:187.177453pt;}
.x7d_c00448{left:196.465853pt;}
.x2b_c00448{left:198.261053pt;}
.x22_c00448{left:199.576653pt;}
.x87_c00448{left:205.353853pt;}
.x4e_c00448{left:207.149053pt;}
.x5_c00448{left:209.745053pt;}
.x61_c00448{left:215.632253pt;}
.x4f_c00448{left:226.931453pt;}
.x1d_c00448{left:228.198653pt;}
.x5e_c00448{left:235.326653pt;}
.x6b_c00448{left:236.382653pt;}
.x6_c00448{left:238.239453pt;}
.x41_c00448{left:239.467053pt;}
.x8a_c00448{left:243.444653pt;}
.x76_c00448{left:245.908653pt;}
.x2c_c00448{left:247.492653pt;}
.x50_c00448{left:256.235453pt;}
.x6c_c00448{left:264.472253pt;}
.x62_c00448{left:265.554653pt;}
.x12_c00448{left:267.292653pt;}
.x8b_c00448{left:274.473453pt;}
.x23_c00448{left:277.210253pt;}
.x84_c00448{left:283.480253pt;}
.x88_c00448{left:284.584653pt;}
.x46_c00448{left:286.274253pt;}
.x53_c00448{left:294.607853pt;}
.x7_c00448{left:297.247853pt;}
.x8c_c00448{left:303.249453pt;}
.x13_c00448{left:305.973053pt;}
.x3d_c00448{left:316.260253pt;}
.x7e_c00448{left:323.784253pt;}
.x54_c00448{left:324.963453pt;}
.x35_c00448{left:326.111853pt;}
.x8d_c00448{left:332.276253pt;}
.x2d_c00448{left:334.819453pt;}
.x14_c00448{left:345.273853pt;}
.x24_c00448{left:346.378253pt;}
.x77_c00448{left:352.982653pt;}
.x6d_c00448{left:353.968253pt;}
.x8_c00448{left:355.891053pt;}
.x72_c00448{left:362.992653pt;}
.x68_c00448{left:373.829853pt;}
.x15_c00448{left:375.198253pt;}
.x7a_c00448{left:382.326253pt;}
.x2e_c00448{left:383.311853pt;}
.x55_c00448{left:384.332653pt;}
.x9_c00448{left:385.234653pt;}
.x73_c00448{left:392.459453pt;}
.x1e_c00448{left:395.491053pt;}
.x8e_c00448{left:402.064653pt;}
.x69_c00448{left:403.059053pt;}
.x16_c00448{left:405.267853pt;}
.x2f_c00448{left:413.346253pt;}
.x1f_c00448{left:414.485853pt;}
.x63_c00448{left:421.327853pt;}
.x36_c00448{left:424.680653pt;}
.x4c_c00448{left:432.539053pt;}
.x5f_c00448{left:440.969453pt;}
.x47_c00448{left:443.270653pt;}
.x8f_c00448{left:450.609853pt;}
.x3e_c00448{left:452.009053pt;}
.x51_c00448{left:453.117853pt;}
.x37_c00448{left:454.591853pt;}
.x64_c00448{left:461.623053pt;}
.x25_c00448{left:462.604253pt;}
.xa_c00448{left:464.210253pt;}
.x5b_c00448{left:470.392253pt;}
.x30_c00448{left:472.460253pt;}
.x38_c00448{left:474.044253pt;}
.x85_c00448{left:480.076653pt;}
.x42_c00448{left:481.929053pt;}
.x20_c00448{left:482.927853pt;}
.x26_c00448{left:493.329453pt;}
.x6e_c00448{left:499.260653pt;}
.x74_c00448{left:500.321053pt;}
.x48_c00448{left:501.249453pt;}
.x4d_c00448{left:502.785053pt;}
.x31_c00448{left:510.753453pt;}
.x17_c00448{left:511.959053pt;}
.x86_c00448{left:518.686653pt;}
.x7f_c00448{left:519.971453pt;}
.xb_c00448{left:521.089053pt;}
.x60_c00448{left:530.100253pt;}
.x49_c00448{left:531.072653pt;}
.x75_c00448{left:539.203853pt;}
.x56_c00448{left:540.418253pt;}
.x80_c00448{left:548.135853pt;}
.x65_c00448{left:550.252253pt;}
.x32_c00448{left:551.664653pt;}
.x43_c00448{left:560.231453pt;}
.x18_c00448{left:561.793453pt;}
.x7b_c00448{left:568.406653pt;}
.x27_c00448{left:569.541853pt;}
.x39_c00448{left:571.178653pt;}
.x81_c00448{left:577.915053pt;}
.xc_c00448{left:580.484653pt;}
.x44_c00448{left:589.038253pt;}
.x19_c00448{left:590.283453pt;}
.x78_c00448{left:597.811853pt;}
.x57_c00448{left:598.881053pt;}
.x3a_c00448{left:608.156253pt;}
.xd_c00448{left:610.241853pt;}
.x1a_c00448{left:611.152653pt;}
.x2_c00448{left:612.767453pt;}
.x45_c00448{left:618.835053pt;}
.x33_c00448{left:628.176253pt;}
.x6f_c00448{left:638.023453pt;}
.x1b_c00448{left:639.695453pt;}
.x4a_c00448{left:647.184253pt;}
.x28_c00448{left:648.579053pt;}
.x90_c00448{left:687.664253pt;}
.x91_c00448{left:688.940253pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9c13651578485749b7054987.woff2')format("woff");}.ff1_c00449{font-family:ff1_c00449;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00449;src:url('chunks/assets/font_dead7eb6442ebcdce228b45a.woff2')format("woff");}.ff2_c00449{font-family:ff2_c00449;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00449;src:url('chunks/assets/font_66fb4dd7e71f91b0b07951cc.woff2')format("woff");}.ff3_c00449{font-family:ff3_c00449;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00449;src:url('chunks/assets/font_546bc4c50b02459b10a2b186.woff2')format("woff");}.ff4_c00449{font-family:ff4_c00449;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00449;src:url('chunks/assets/font_143a179da188e22d8fcc90ab.woff2')format("woff");}.ff5_c00449{font-family:ff5_c00449;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ma_c00449{transform:matrix(0.060549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060549,0.000000,0.000000,0.250000,0,0);}
.m5a_c00449{transform:matrix(0.066562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066562,0.000000,0.000000,0.250000,0,0);}
.m6_c00449{transform:matrix(0.090518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090518,0.000000,0.000000,0.250000,0,0);}
.m9_c00449{transform:matrix(0.092194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092194,0.000000,0.000000,0.250000,0,0);}
.m33_c00449{transform:matrix(0.118590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118590,0.000000,0.000000,0.250000,0,0);}
.m7_c00449{transform:matrix(0.120689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120689,0.000000,0.000000,0.250000,0,0);}
.m32_c00449{transform:matrix(0.131623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131623,0.000000,0.000000,0.250000,0,0);}
.m6d_c00449{transform:matrix(0.160705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160705,0.000000,0.000000,0.250000,0,0);}
.m54_c00449{transform:matrix(0.163209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163209,0.000000,0.000000,0.250000,0,0);}
.m57_c00449{transform:matrix(0.172516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172516,0.000000,0.000000,0.250000,0,0);}
.m8_c00449{transform:matrix(0.176650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176650,0.000000,0.000000,0.250000,0,0);}
.m6c_c00449{transform:matrix(0.178488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178488,0.000000,0.000000,0.250000,0,0);}
.mb_c00449{transform:matrix(0.186538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186538,0.000000,0.000000,0.250000,0,0);}
.m53_c00449{transform:matrix(0.216827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216827,0.000000,0.000000,0.250000,0,0);}
.m58_c00449{transform:matrix(0.217016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217016,0.000000,0.000000,0.250000,0,0);}
.m56_c00449{transform:matrix(0.222166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222166,0.000000,0.000000,0.250000,0,0);}
.m5_c00449{transform:matrix(0.227304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227304,0.000000,0.000000,0.250000,0,0);}
.mc_c00449{transform:matrix(0.238116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238116,0.000000,0.000000,0.250000,0,0);}
.m4_c00449{transform:matrix(0.249023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249023,0.000000,0.000000,0.250000,0,0);}
.m0_c00449{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m78_c00449{transform:matrix(0.252809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252809,0.000000,0.000000,0.250000,0,0);}
.m49_c00449{transform:matrix(0.258541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258541,0.000000,0.000000,0.250000,0,0);}
.m1_c00449{transform:matrix(0.258587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258587,0.000000,0.000000,0.250000,0,0);}
.m2b_c00449{transform:matrix(0.261436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261436,0.000000,0.000000,0.250000,0,0);}
.m47_c00449{transform:matrix(0.262093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262093,0.000000,0.000000,0.250000,0,0);}
.m3b_c00449{transform:matrix(0.262613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262613,0.000000,0.000000,0.250000,0,0);}
.m34_c00449{transform:matrix(0.263376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263376,0.000000,0.000000,0.250000,0,0);}
.md_c00449{transform:matrix(0.264376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264376,0.000000,0.000000,0.250000,0,0);}
.m5d_c00449{transform:matrix(0.267450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267450,0.000000,0.000000,0.250000,0,0);}
.m1d_c00449{transform:matrix(0.268154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268154,0.000000,0.000000,0.250000,0,0);}
.m6a_c00449{transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);}
.m17_c00449{transform:matrix(0.269504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269504,0.000000,0.000000,0.250000,0,0);}
.m36_c00449{transform:matrix(0.269738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269738,0.000000,0.000000,0.250000,0,0);}
.m25_c00449{transform:matrix(0.269868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269868,0.000000,0.000000,0.250000,0,0);}
.m4c_c00449{transform:matrix(0.270069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270069,0.000000,0.000000,0.250000,0,0);}
.m59_c00449{transform:matrix(0.270282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270282,0.000000,0.000000,0.250000,0,0);}
.m5b_c00449{transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);}
.m3_c00449{transform:matrix(0.272847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272847,0.000000,0.000000,0.250000,0,0);}
.m2f_c00449{transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);}
.m6e_c00449{transform:matrix(0.273271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273271,0.000000,0.000000,0.250000,0,0);}
.m2e_c00449{transform:matrix(0.273588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273588,0.000000,0.000000,0.250000,0,0);}
.m37_c00449{transform:matrix(0.274610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274610,0.000000,0.000000,0.250000,0,0);}
.mf_c00449{transform:matrix(0.275435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275435,0.000000,0.000000,0.250000,0,0);}
.m1f_c00449{transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);}
.m2a_c00449{transform:matrix(0.277728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277728,0.000000,0.000000,0.250000,0,0);}
.m62_c00449{transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);}
.m77_c00449{transform:matrix(0.277781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277781,0.000000,0.000000,0.250000,0,0);}
.m66_c00449{transform:matrix(0.278463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278463,0.000000,0.000000,0.250000,0,0);}
.m31_c00449{transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);}
.m50_c00449{transform:matrix(0.281060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281060,0.000000,0.000000,0.250000,0,0);}
.m26_c00449{transform:matrix(0.282002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282002,0.000000,0.000000,0.250000,0,0);}
.m2d_c00449{transform:matrix(0.282883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282883,0.000000,0.000000,0.250000,0,0);}
.m69_c00449{transform:matrix(0.283384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283384,0.000000,0.000000,0.250000,0,0);}
.m22_c00449{transform:matrix(0.285120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285120,0.000000,0.000000,0.250000,0,0);}
.m70_c00449{transform:matrix(0.285995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285995,0.000000,0.000000,0.250000,0,0);}
.m27_c00449{transform:matrix(0.286956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286956,0.000000,0.000000,0.250000,0,0);}
.m42_c00449{transform:matrix(0.287511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287511,0.000000,0.000000,0.250000,0,0);}
.m5e_c00449{transform:matrix(0.288432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288432,0.000000,0.000000,0.250000,0,0);}
.m55_c00449{transform:matrix(0.289264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289264,0.000000,0.000000,0.250000,0,0);}
.m4f_c00449{transform:matrix(0.289588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289588,0.000000,0.000000,0.250000,0,0);}
.m45_c00449{transform:matrix(0.289629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289629,0.000000,0.000000,0.250000,0,0);}
.m48_c00449{transform:matrix(0.290218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290218,0.000000,0.000000,0.250000,0,0);}
.m61_c00449{transform:matrix(0.291836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291836,0.000000,0.000000,0.250000,0,0);}
.m44_c00449{transform:matrix(0.291864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291864,0.000000,0.000000,0.250000,0,0);}
.m46_c00449{transform:matrix(0.292314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292314,0.000000,0.000000,0.250000,0,0);}
.m76_c00449{transform:matrix(0.292812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292812,0.000000,0.000000,0.250000,0,0);}
.m3e_c00449{transform:matrix(0.293378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293378,0.000000,0.000000,0.250000,0,0);}
.m6b_c00449{transform:matrix(0.293892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293892,0.000000,0.000000,0.250000,0,0);}
.m3d_c00449{transform:matrix(0.295054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295054,0.000000,0.000000,0.250000,0,0);}
.m1b_c00449{transform:matrix(0.295366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295366,0.000000,0.000000,0.250000,0,0);}
.m4b_c00449{transform:matrix(0.296696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296696,0.000000,0.000000,0.250000,0,0);}
.m1a_c00449{transform:matrix(0.296995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296995,0.000000,0.000000,0.250000,0,0);}
.m71_c00449{transform:matrix(0.297267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297267,0.000000,0.000000,0.250000,0,0);}
.m3f_c00449{transform:matrix(0.298071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298071,0.000000,0.000000,0.250000,0,0);}
.m2c_c00449{transform:matrix(0.299023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299023,0.000000,0.000000,0.250000,0,0);}
.me_c00449{transform:matrix(0.299694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299694,0.000000,0.000000,0.250000,0,0);}
.m28_c00449{transform:matrix(0.299952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299952,0.000000,0.000000,0.250000,0,0);}
.m75_c00449{transform:matrix(0.301023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301023,0.000000,0.000000,0.250000,0,0);}
.m68_c00449{transform:matrix(0.301544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301544,0.000000,0.000000,0.250000,0,0);}
.m4d_c00449{transform:matrix(0.302495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302495,0.000000,0.000000,0.250000,0,0);}
.m13_c00449{transform:matrix(0.302507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302507,0.000000,0.000000,0.250000,0,0);}
.m1e_c00449{transform:matrix(0.302603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302603,0.000000,0.000000,0.250000,0,0);}
.m30_c00449{transform:matrix(0.306112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306112,0.000000,0.000000,0.250000,0,0);}
.m12_c00449{transform:matrix(0.307137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307137,0.000000,0.000000,0.250000,0,0);}
.m5f_c00449{transform:matrix(0.307903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307903,0.000000,0.000000,0.250000,0,0);}
.m29_c00449{transform:matrix(0.312313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312313,0.000000,0.000000,0.250000,0,0);}
.m19_c00449{transform:matrix(0.312698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312698,0.000000,0.000000,0.250000,0,0);}
.m10_c00449{transform:matrix(0.313167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313167,0.000000,0.000000,0.250000,0,0);}
.m14_c00449{transform:matrix(0.313352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313352,0.000000,0.000000,0.250000,0,0);}
.m1c_c00449{transform:matrix(0.313448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313448,0.000000,0.000000,0.250000,0,0);}
.m38_c00449{transform:matrix(0.313494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313494,0.000000,0.000000,0.250000,0,0);}
.m2_c00449{transform:matrix(0.314035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314035,0.000000,0.000000,0.250000,0,0);}
.m21_c00449{transform:matrix(0.314141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314141,0.000000,0.000000,0.250000,0,0);}
.m15_c00449{transform:matrix(0.316121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316121,0.000000,0.000000,0.250000,0,0);}
.m41_c00449{transform:matrix(0.316142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316142,0.000000,0.000000,0.250000,0,0);}
.m73_c00449{transform:matrix(0.316285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316285,0.000000,0.000000,0.250000,0,0);}
.m4e_c00449{transform:matrix(0.318420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318420,0.000000,0.000000,0.250000,0,0);}
.m18_c00449{transform:matrix(0.319442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319442,0.000000,0.000000,0.250000,0,0);}
.m64_c00449{transform:matrix(0.319887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319887,0.000000,0.000000,0.250000,0,0);}
.m39_c00449{transform:matrix(0.321070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321070,0.000000,0.000000,0.250000,0,0);}
.m43_c00449{transform:matrix(0.321408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321408,0.000000,0.000000,0.250000,0,0);}
.m63_c00449{transform:matrix(0.321637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321637,0.000000,0.000000,0.250000,0,0);}
.m72_c00449{transform:matrix(0.321737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321737,0.000000,0.000000,0.250000,0,0);}
.m4a_c00449{transform:matrix(0.322585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322585,0.000000,0.000000,0.250000,0,0);}
.m35_c00449{transform:matrix(0.327721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327721,0.000000,0.000000,0.250000,0,0);}
.m65_c00449{transform:matrix(0.329842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329842,0.000000,0.000000,0.250000,0,0);}
.m51_c00449{transform:matrix(0.331712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331712,0.000000,0.000000,0.250000,0,0);}
.m23_c00449{transform:matrix(0.331974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331974,0.000000,0.000000,0.250000,0,0);}
.m40_c00449{transform:matrix(0.332277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332277,0.000000,0.000000,0.250000,0,0);}
.m52_c00449{transform:matrix(0.334830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334830,0.000000,0.000000,0.250000,0,0);}
.m60_c00449{transform:matrix(0.339063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339063,0.000000,0.000000,0.250000,0,0);}
.m11_c00449{transform:matrix(0.339155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339155,0.000000,0.000000,0.250000,0,0);}
.m5c_c00449{transform:matrix(0.351305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351305,0.000000,0.000000,0.250000,0,0);}
.m16_c00449{transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);}
.m6f_c00449{transform:matrix(0.355964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355964,0.000000,0.000000,0.250000,0,0);}
.m67_c00449{transform:matrix(0.359040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359040,0.000000,0.000000,0.250000,0,0);}
.m3a_c00449{transform:matrix(0.359755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359755,0.000000,0.000000,0.250000,0,0);}
.m24_c00449{transform:matrix(0.362103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362103,0.000000,0.000000,0.250000,0,0);}
.m3c_c00449{transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);}
.m20_c00449{transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);}
.m74_c00449{transform:matrix(0.412048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412048,0.000000,0.000000,0.250000,0,0);}
.v1_c00449{vertical-align:-11.404800px;}
.v0_c00449{vertical-align:0.000000px;}
.v2_c00449{vertical-align:24.235200px;}
.lsc_c00449{letter-spacing:-4.989600px;}
.ls1c_c00449{letter-spacing:-2.993767px;}
.lsa_c00449{letter-spacing:-2.882880px;}
.ls21_c00449{letter-spacing:-2.661127px;}
.ls20_c00449{letter-spacing:-2.647267px;}
.ls8_c00449{letter-spacing:-2.564100px;}
.ls1b_c00449{letter-spacing:-2.550240px;}
.lsd_c00449{letter-spacing:-1.926540px;}
.ls1e_c00449{letter-spacing:-0.553766px;}
.ls4_c00449{letter-spacing:0.000000px;}
.ls10_c00449{letter-spacing:0.136145px;}
.lse_c00449{letter-spacing:0.298742px;}
.ls3_c00449{letter-spacing:0.589962px;}
.lsf_c00449{letter-spacing:1.300943px;}
.ls1_c00449{letter-spacing:1.550542px;}
.ls13_c00449{letter-spacing:2.011923px;}
.ls15_c00449{letter-spacing:2.019600px;}
.lsb_c00449{letter-spacing:2.158042px;}
.ls0_c00449{letter-spacing:3.017884px;}
.ls5_c00449{letter-spacing:3.051734px;}
.ls1a_c00449{letter-spacing:3.207600px;}
.ls2_c00449{letter-spacing:3.227875px;}
.ls1d_c00449{letter-spacing:3.455110px;}
.ls11_c00449{letter-spacing:3.484810px;}
.ls14_c00449{letter-spacing:3.524400px;}
.ls17_c00449{letter-spacing:3.577622px;}
.ls19_c00449{letter-spacing:3.643200px;}
.ls16_c00449{letter-spacing:3.653110px;}
.ls6_c00449{letter-spacing:3.781810px;}
.ls7_c00449{letter-spacing:3.870900px;}
.ls22_c00449{letter-spacing:3.960000px;}
.ls18_c00449{letter-spacing:4.108500px;}
.ls12_c00449{letter-spacing:55.598598px;}
.ls1f_c00449{letter-spacing:75.556800px;}
.ls9_c00449{letter-spacing:82.684998px;}
.sc__c00449{text-shadow:none;}
.sc0_c00449{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00449{-webkit-text-stroke:0px transparent;}
.sc0_c00449{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00449{word-spacing:-20.459592px;}
.ws1_c00449{word-spacing:0.000000px;}
._7_c00449{margin-left:-12.328985px;}
._6_c00449{width:1.228287px;}
._4_c00449{width:4.576945px;}
._3_c00449{width:25.814978px;}
._2_c00449{width:41.970060px;}
._5_c00449{width:44.860860px;}
._0_c00449{width:49.591080px;}
._8_c00449{width:350.354595px;}
._1_c00449{width:1251.033300px;}
.fc0_c00449{color:transparent;}
.fs3_c00449{font-size:22.176000px;}
.fs0_c00449{font-size:22.374000px;}
.fs1_c00449{font-size:27.720000px;}
.fsd_c00449{font-size:38.808000px;}
.fs13_c00449{font-size:40.392000px;}
.fs1c_c00449{font-size:44.352000px;}
.fs14_c00449{font-size:51.876198px;}
.fsa_c00449{font-size:55.044000px;}
.fs11_c00449{font-size:55.598598px;}
.fsf_c00449{font-size:66.330000px;}
.fs19_c00449{font-size:69.102198px;}
.fsb_c00449{font-size:69.696198px;}
.fs12_c00449{font-size:70.488000px;}
.fse_c00449{font-size:72.864000px;}
.fs15_c00449{font-size:73.062198px;}
.fs6_c00449{font-size:73.260000px;}
.fs10_c00449{font-size:74.844000px;}
.fs1a_c00449{font-size:75.556800px;}
.fs4_c00449{font-size:75.636198px;}
.fs1b_c00449{font-size:76.032198px;}
.fs5_c00449{font-size:77.418000px;}
.fs17_c00449{font-size:79.200000px;}
.fsc_c00449{font-size:79.794000px;}
.fs16_c00449{font-size:82.170000px;}
.fs8_c00449{font-size:82.368000px;}
.fs7_c00449{font-size:82.684998px;}
.fs18_c00449{font-size:85.536198px;}
.fs2_c00449{font-size:90.288000px;}
.fs9_c00449{font-size:142.560000px;}
.y0_c00449{bottom:0.000000px;}
.y1_c00449{bottom:76.500000px;}
.y1c_c00449{bottom:96.496335px;}
.y1b_c00449{bottom:97.921935px;}
.y1a_c00449{bottom:132.136335px;}
.y19_c00449{bottom:165.632985px;}
.y18_c00449{bottom:297.500985px;}
.y17_c00449{bottom:360.583785px;}
.y16_c00449{bottom:393.021135px;}
.y3_c00449{bottom:451.470735px;}
.y13_c00449{bottom:488.892735px;}
.y14_c00449{bottom:494.233785px;}
.y15_c00449{bottom:494.595135px;}
.y12_c00449{bottom:521.320185px;}
.y11_c00449{bottom:552.326985px;}
.y2_c00449{bottom:554.108985px;}
.y10_c00449{bottom:585.477135px;}
.yf_c00449{bottom:617.904585px;}
.ye_c00449{bottom:649.980585px;}
.yd_c00449{bottom:682.417935px;}
.yc_c00449{bottom:746.569935px;}
.yb_c00449{bottom:776.151135px;}
.ya_c00449{bottom:810.716985px;}
.y9_c00449{bottom:874.868985px;}
.y8_c00449{bottom:878.437935px;}
.y7_c00449{bottom:906.593535px;}
.y6_c00449{bottom:936.882585px;}
.y5_c00449{bottom:983.932335px;}
.y4_c00449{bottom:1059.840585px;}
.h2_c00449{height:21.958857px;}
.h5_c00449{height:23.128875px;}
.h3_c00449{height:28.911094px;}
.h11_c00449{height:37.028666px;}
.h13_c00449{height:42.127594px;}
.h1c_c00449{height:50.320829px;}
.hc_c00449{height:54.022676px;}
.h14_c00449{height:54.105253px;}
.h9_c00449{height:55.068209px;}
.hd_c00449{height:68.403007px;}
.h12_c00449{height:69.180117px;}
.h16_c00449{height:71.476453px;}
.hf_c00449{height:71.512031px;}
.h8_c00449{height:71.900684px;}
.h1b_c00449{height:72.071433px;}
.h10_c00449{height:73.455293px;}
.h6_c00449{height:74.232792px;}
.h7_c00449{height:75.981533px;}
.h15_c00449{height:76.201589px;}
.h18_c00449{height:77.730469px;}
.he_c00449{height:78.313447px;}
.h1d_c00449{height:79.299207px;}
.ha_c00449{height:80.839688px;}
.h17_c00449{height:82.811953px;}
.h19_c00449{height:83.907335px;}
.h1a_c00449{height:83.949101px;}
.h4_c00449{height:88.612734px;}
.hb_c00449{height:148.685625px;}
.h1_c00449{height:1110.000000px;}
.h0_c00449{height:1263.000000px;}
.w1_c00449{width:775.500000px;}
.w0_c00449{width:892.500000px;}
.x0_c00449{left:0.000000px;}
.x2_c00449{left:31.617285px;}
.x3_c00449{left:35.161485px;}
.x1_c00449{left:58.500000px;}
.x3b_c00449{left:82.983435px;}
.x2d_c00449{left:85.547535px;}
.x6_c00449{left:88.180935px;}
.x57_c00449{left:114.871335px;}
.x7_c00449{left:119.851035px;}
.x40_c00449{left:126.538485px;}
.x18_c00449{left:131.983485px;}
.x46_c00449{left:137.017635px;}
.x66_c00449{left:157.154235px;}
.x58_c00449{left:159.099585px;}
.x2e_c00449{left:172.291335px;}
.x34_c00449{left:182.587335px;}
.x50_c00449{left:191.883435px;}
.x47_c00449{left:193.249635px;}
.x19_c00449{left:195.972135px;}
.x59_c00449{left:203.614935px;}
.x8_c00449{left:205.164285px;}
.x67_c00449{left:212.787285px;}
.x35_c00449{left:214.188135px;}
.x2f_c00449{left:226.261185px;}
.xb_c00449{left:227.983785px;}
.x48_c00449{left:236.052285px;}
.x1a_c00449{left:240.155835px;}
.xc_c00449{left:250.496385px;}
.x51_c00449{left:257.470935px;}
.x1d_c00449{left:261.292335px;}
.x49_c00449{left:268.890585px;}
.x5f_c00449{left:279.849885px;}
.x26_c00449{left:281.988285px;}
.xd_c00449{left:284.750385px;}
.x1e_c00449{left:292.541685px;}
.x52_c00449{left:294.343485px;}
.x4a_c00449{left:303.728685px;}
.x1b_c00449{left:306.565035px;}
.xe_c00449{left:312.554535px;}
.x5a_c00449{left:313.999935px;}
.x27_c00449{left:315.871035px;}
.x9_c00449{left:326.468985px;}
.x41_c00449{left:328.226235px;}
.x53_c00449{left:335.423535px;}
.x36_c00449{left:336.789735px;}
.xf_c00449{left:338.537085px;}
.x68_c00449{left:345.773985px;}
.x42_c00449{left:348.313335px;}
.x4b_c00449{left:358.257885px;}
.x1f_c00449{left:360.762585px;}
.x3c_c00449{left:370.093335px;}
.x17_c00449{left:372.083235px;}
.x10_c00449{left:375.944235px;}
.x43_c00449{left:379.547835px;}
.x4c_c00449{left:390.625935px;}
.x11_c00449{left:395.432385px;}
.x54_c00449{left:399.120135px;}
.x12_c00449{left:400.129935px;}
.xa_c00449{left:404.114685px;}
.x55_c00449{left:407.787585px;}
.x13_c00449{left:411.752535px;}
.x5b_c00449{left:413.183085px;}
.x37_c00449{left:414.994785px;}
.x14_c00449{left:419.712135px;}
.x28_c00449{left:425.043285px;}
.x15_c00449{left:437.665785px;}
.x16_c00449{left:449.011185px;}
.x29_c00449{left:458.633985px;}
.x20_c00449{left:459.866535px;}
.x69_c00449{left:479.077485px;}
.x44_c00449{left:483.369135px;}
.x60_c00449{left:489.551685px;}
.x4d_c00449{left:492.556335px;}
.x38_c00449{left:501.748485px;}
.x21_c00449{left:503.381985px;}
.x45_c00449{left:504.619485px;}
.x30_c00449{left:505.693635px;}
.x5c_c00449{left:512.994885px;}
.x3d_c00449{left:514.069035px;}
.x56_c00449{left:518.197335px;}
.x4e_c00449{left:524.756085px;}
.x61_c00449{left:535.101585px;}
.x3e_c00449{left:546.793485px;}
.x22_c00449{left:548.516085px;}
.x6a_c00449{left:556.841985px;}
.x1c_c00449{left:558.029985px;}
.x62_c00449{left:567.137985px;}
.x2a_c00449{left:568.915035px;}
.x5d_c00449{left:579.092235px;}
.x23_c00449{left:580.879185px;}
.x6b_c00449{left:600.545535px;}
.x2b_c00449{left:602.980935px;}
.x39_c00449{left:613.153185px;}
.x24_c00449{left:614.524335px;}
.x31_c00449{left:623.681835px;}
.x3f_c00449{left:635.576685px;}
.x5_c00449{left:638.571435px;}
.x4f_c00449{left:646.436985px;}
.x2c_c00449{left:657.495285px;}
.x63_c00449{left:668.667435px;}
.x64_c00449{left:681.735435px;}
.x5e_c00449{left:690.095985px;}
.x3a_c00449{left:692.125485px;}
.x4_c00449{left:696.476535px;}
.x25_c00449{left:701.708685px;}
.x65_c00449{left:711.673035px;}
.x32_c00449{left:713.653035px;}
.x33_c00449{left:735.195435px;}
@media print{
.v1_c00449{vertical-align:-10.137600pt;}
.v0_c00449{vertical-align:0.000000pt;}
.v2_c00449{vertical-align:21.542400pt;}
.lsc_c00449{letter-spacing:-4.435200pt;}
.ls1c_c00449{letter-spacing:-2.661126pt;}
.lsa_c00449{letter-spacing:-2.562560pt;}
.ls21_c00449{letter-spacing:-2.365446pt;}
.ls20_c00449{letter-spacing:-2.353126pt;}
.ls8_c00449{letter-spacing:-2.279200pt;}
.ls1b_c00449{letter-spacing:-2.266880pt;}
.lsd_c00449{letter-spacing:-1.712480pt;}
.ls1e_c00449{letter-spacing:-0.492237pt;}
.ls4_c00449{letter-spacing:0.000000pt;}
.ls10_c00449{letter-spacing:0.121018pt;}
.lse_c00449{letter-spacing:0.265549pt;}
.ls3_c00449{letter-spacing:0.524411pt;}
.lsf_c00449{letter-spacing:1.156393pt;}
.ls1_c00449{letter-spacing:1.378260pt;}
.ls13_c00449{letter-spacing:1.788376pt;}
.ls15_c00449{letter-spacing:1.795200pt;}
.lsb_c00449{letter-spacing:1.918259pt;}
.ls0_c00449{letter-spacing:2.682564pt;}
.ls5_c00449{letter-spacing:2.712653pt;}
.ls1a_c00449{letter-spacing:2.851200pt;}
.ls2_c00449{letter-spacing:2.869222pt;}
.ls1d_c00449{letter-spacing:3.071209pt;}
.ls11_c00449{letter-spacing:3.097609pt;}
.ls14_c00449{letter-spacing:3.132800pt;}
.ls17_c00449{letter-spacing:3.180109pt;}
.ls19_c00449{letter-spacing:3.238400pt;}
.ls16_c00449{letter-spacing:3.247209pt;}
.ls6_c00449{letter-spacing:3.361609pt;}
.ls7_c00449{letter-spacing:3.440800pt;}
.ls22_c00449{letter-spacing:3.520000pt;}
.ls18_c00449{letter-spacing:3.652000pt;}
.ls12_c00449{letter-spacing:49.420976pt;}
.ls1f_c00449{letter-spacing:67.161600pt;}
.ls9_c00449{letter-spacing:73.497776pt;}
.ws0_c00449{word-spacing:-18.186304pt;}
.ws1_c00449{word-spacing:0.000000pt;}
._7_c00449{margin-left:-10.959098pt;}
._6_c00449{width:1.091811pt;}
._4_c00449{width:4.068395pt;}
._3_c00449{width:22.946647pt;}
._2_c00449{width:37.306720pt;}
._5_c00449{width:39.876320pt;}
._0_c00449{width:44.080960pt;}
._8_c00449{width:311.426307pt;}
._1_c00449{width:1112.029600pt;}
.fs3_c00449{font-size:19.712000pt;}
.fs0_c00449{font-size:19.888000pt;}
.fs1_c00449{font-size:24.640000pt;}
.fsd_c00449{font-size:34.496000pt;}
.fs13_c00449{font-size:35.904000pt;}
.fs1c_c00449{font-size:39.424000pt;}
.fs14_c00449{font-size:46.112176pt;}
.fsa_c00449{font-size:48.928000pt;}
.fs11_c00449{font-size:49.420976pt;}
.fsf_c00449{font-size:58.960000pt;}
.fs19_c00449{font-size:61.424176pt;}
.fsb_c00449{font-size:61.952176pt;}
.fs12_c00449{font-size:62.656000pt;}
.fse_c00449{font-size:64.768000pt;}
.fs15_c00449{font-size:64.944176pt;}
.fs6_c00449{font-size:65.120000pt;}
.fs10_c00449{font-size:66.528000pt;}
.fs1a_c00449{font-size:67.161600pt;}
.fs4_c00449{font-size:67.232176pt;}
.fs1b_c00449{font-size:67.584176pt;}
.fs5_c00449{font-size:68.816000pt;}
.fs17_c00449{font-size:70.400000pt;}
.fsc_c00449{font-size:70.928000pt;}
.fs16_c00449{font-size:73.040000pt;}
.fs8_c00449{font-size:73.216000pt;}
.fs7_c00449{font-size:73.497776pt;}
.fs18_c00449{font-size:76.032176pt;}
.fs2_c00449{font-size:80.256000pt;}
.fs9_c00449{font-size:126.720000pt;}
.y0_c00449{bottom:0.000000pt;}
.y1_c00449{bottom:68.000000pt;}
.y1c_c00449{bottom:85.774520pt;}
.y1b_c00449{bottom:87.041720pt;}
.y1a_c00449{bottom:117.454520pt;}
.y19_c00449{bottom:147.229320pt;}
.y18_c00449{bottom:264.445320pt;}
.y17_c00449{bottom:320.518920pt;}
.y16_c00449{bottom:349.352120pt;}
.y3_c00449{bottom:401.307320pt;}
.y13_c00449{bottom:434.571320pt;}
.y14_c00449{bottom:439.318920pt;}
.y15_c00449{bottom:439.640120pt;}
.y12_c00449{bottom:463.395720pt;}
.y11_c00449{bottom:490.957320pt;}
.y2_c00449{bottom:492.541320pt;}
.y10_c00449{bottom:520.424120pt;}
.yf_c00449{bottom:549.248520pt;}
.ye_c00449{bottom:577.760520pt;}
.yd_c00449{bottom:606.593720pt;}
.yc_c00449{bottom:663.617720pt;}
.yb_c00449{bottom:689.912120pt;}
.ya_c00449{bottom:720.637320pt;}
.y9_c00449{bottom:777.661320pt;}
.y8_c00449{bottom:780.833720pt;}
.y7_c00449{bottom:805.860920pt;}
.y6_c00449{bottom:832.784520pt;}
.y5_c00449{bottom:874.606520pt;}
.y4_c00449{bottom:942.080520pt;}
.h2_c00449{height:19.518984pt;}
.h5_c00449{height:20.559000pt;}
.h3_c00449{height:25.698750pt;}
.h11_c00449{height:32.914370pt;}
.h13_c00449{height:37.446750pt;}
.h1c_c00449{height:44.729626pt;}
.hc_c00449{height:48.020156pt;}
.h14_c00449{height:48.093559pt;}
.h9_c00449{height:48.949519pt;}
.hd_c00449{height:60.802673pt;}
.h12_c00449{height:61.493438pt;}
.h16_c00449{height:63.534625pt;}
.hf_c00449{height:63.566250pt;}
.h8_c00449{height:63.911719pt;}
.h1b_c00449{height:64.063496pt;}
.h10_c00449{height:65.293594pt;}
.h6_c00449{height:65.984704pt;}
.h7_c00449{height:67.539141pt;}
.h15_c00449{height:67.734746pt;}
.h18_c00449{height:69.093750pt;}
.he_c00449{height:69.611953pt;}
.h1d_c00449{height:70.488184pt;}
.ha_c00449{height:71.857500pt;}
.h17_c00449{height:73.610625pt;}
.h19_c00449{height:74.584298pt;}
.h1a_c00449{height:74.621423pt;}
.h4_c00449{height:78.766875pt;}
.hb_c00449{height:132.165000pt;}
.h1_c00449{height:986.666667pt;}
.h0_c00449{height:1122.666667pt;}
.w1_c00449{width:689.333333pt;}
.w0_c00449{width:793.333333pt;}
.x0_c00449{left:0.000000pt;}
.x2_c00449{left:28.104253pt;}
.x3_c00449{left:31.254653pt;}
.x1_c00449{left:52.000000pt;}
.x3b_c00449{left:73.763053pt;}
.x2d_c00449{left:76.042253pt;}
.x6_c00449{left:78.383053pt;}
.x57_c00449{left:102.107853pt;}
.x7_c00449{left:106.534253pt;}
.x40_c00449{left:112.478653pt;}
.x18_c00449{left:117.318653pt;}
.x46_c00449{left:121.793453pt;}
.x66_c00449{left:139.692653pt;}
.x58_c00449{left:141.421853pt;}
.x2e_c00449{left:153.147853pt;}
.x34_c00449{left:162.299853pt;}
.x50_c00449{left:170.563053pt;}
.x47_c00449{left:171.777453pt;}
.x19_c00449{left:174.197453pt;}
.x59_c00449{left:180.991053pt;}
.x8_c00449{left:182.368253pt;}
.x67_c00449{left:189.144253pt;}
.x35_c00449{left:190.389453pt;}
.x2f_c00449{left:201.121053pt;}
.xb_c00449{left:202.652253pt;}
.x48_c00449{left:209.824253pt;}
.x1a_c00449{left:213.471853pt;}
.xc_c00449{left:222.663453pt;}
.x51_c00449{left:228.863053pt;}
.x1d_c00449{left:232.259853pt;}
.x49_c00449{left:239.013853pt;}
.x5f_c00449{left:248.755453pt;}
.x26_c00449{left:250.656253pt;}
.xd_c00449{left:253.111453pt;}
.x1e_c00449{left:260.037053pt;}
.x52_c00449{left:261.638653pt;}
.x4a_c00449{left:269.981053pt;}
.x1b_c00449{left:272.502253pt;}
.xe_c00449{left:277.826253pt;}
.x5a_c00449{left:279.111053pt;}
.x27_c00449{left:280.774253pt;}
.x9_c00449{left:290.194653pt;}
.x41_c00449{left:291.756653pt;}
.x53_c00449{left:298.154253pt;}
.x36_c00449{left:299.368653pt;}
.xf_c00449{left:300.921853pt;}
.x68_c00449{left:307.354653pt;}
.x42_c00449{left:309.611853pt;}
.x4b_c00449{left:318.451453pt;}
.x1f_c00449{left:320.677853pt;}
.x3c_c00449{left:328.971853pt;}
.x17_c00449{left:330.740653pt;}
.x10_c00449{left:334.172653pt;}
.x43_c00449{left:337.375853pt;}
.x4c_c00449{left:347.223053pt;}
.x11_c00449{left:351.495453pt;}
.x54_c00449{left:354.773453pt;}
.x12_c00449{left:355.671053pt;}
.xa_c00449{left:359.213053pt;}
.x55_c00449{left:362.477853pt;}
.x13_c00449{left:366.002253pt;}
.x5b_c00449{left:367.273853pt;}
.x37_c00449{left:368.884253pt;}
.x14_c00449{left:373.077453pt;}
.x28_c00449{left:377.816253pt;}
.x15_c00449{left:389.036253pt;}
.x16_c00449{left:399.121053pt;}
.x29_c00449{left:407.674653pt;}
.x20_c00449{left:408.770253pt;}
.x69_c00449{left:425.846653pt;}
.x44_c00449{left:429.661453pt;}
.x60_c00449{left:435.157053pt;}
.x4d_c00449{left:437.827853pt;}
.x38_c00449{left:445.998653pt;}
.x21_c00449{left:447.450653pt;}
.x45_c00449{left:448.550653pt;}
.x30_c00449{left:449.505453pt;}
.x5c_c00449{left:455.995453pt;}
.x3d_c00449{left:456.950253pt;}
.x56_c00449{left:460.619853pt;}
.x4e_c00449{left:466.449853pt;}
.x61_c00449{left:475.645853pt;}
.x3e_c00449{left:486.038653pt;}
.x22_c00449{left:487.569853pt;}
.x6a_c00449{left:494.970653pt;}
.x1c_c00449{left:496.026653pt;}
.x62_c00449{left:504.122653pt;}
.x2a_c00449{left:505.702253pt;}
.x5d_c00449{left:514.748653pt;}
.x23_c00449{left:516.337053pt;}
.x6b_c00449{left:533.818253pt;}
.x2b_c00449{left:535.983053pt;}
.x39_c00449{left:545.025053pt;}
.x24_c00449{left:546.243853pt;}
.x31_c00449{left:554.383853pt;}
.x3f_c00449{left:564.957053pt;}
.x5_c00449{left:567.619053pt;}
.x4f_c00449{left:574.610653pt;}
.x2c_c00449{left:584.440253pt;}
.x63_c00449{left:594.371053pt;}
.x64_c00449{left:605.987053pt;}
.x5e_c00449{left:613.418653pt;}
.x3a_c00449{left:615.222653pt;}
.x4_c00449{left:619.090253pt;}
.x25_c00449{left:623.741053pt;}
.x65_c00449{left:632.598253pt;}
.x32_c00449{left:634.358253pt;}
.x33_c00449{left:653.507053pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0ff43e891011ac313c112db2.woff2')format("woff");}.ff1_c00450{font-family:ff1_c00450;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00450;src:url('chunks/assets/font_362c80a98cebbccf89c44539.woff2')format("woff");}.ff2_c00450{font-family:ff2_c00450;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00450;src:url('chunks/assets/font_10d1be43a262c30b33e20d6c.woff2')format("woff");}.ff3_c00450{font-family:ff3_c00450;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00450;src:url('chunks/assets/font_1a37f74f4dd970df3f3f9a48.woff2')format("woff");}.ff4_c00450{font-family:ff4_c00450;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00450;src:url('chunks/assets/font_edcc006c864d99e56da12f3a.woff2')format("woff");}.ff5_c00450{font-family:ff5_c00450;line-height:0.689941;font-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_c00450{transform:matrix(0.073581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073581,0.000000,0.000000,0.250000,0,0);}
.m2_c00450{transform:matrix(0.113638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113638,0.000000,0.000000,0.250000,0,0);}
.m25_c00450{transform:matrix(0.139895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139895,0.000000,0.000000,0.250000,0,0);}
.m8e_c00450{transform:matrix(0.152439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152439,0.000000,0.000000,0.250000,0,0);}
.m8f_c00450{transform:matrix(0.172764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172764,0.000000,0.000000,0.250000,0,0);}
.m8d_c00450{transform:matrix(0.176830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176830,0.000000,0.000000,0.250000,0,0);}
.m34_c00450{transform:matrix(0.220377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220377,0.000000,0.000000,0.250000,0,0);}
.ma0_c00450{transform:matrix(0.238083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238083,0.000000,0.000000,0.250000,0,0);}
.m1_c00450{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0_c00450{transform:matrix(0.251341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251341,0.000000,0.000000,0.250000,0,0);}
.ma5_c00450{transform:matrix(0.251979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251979,0.000000,0.000000,0.250000,0,0);}
.m35_c00450{transform:matrix(0.252676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252676,0.000000,0.000000,0.250000,0,0);}
.mc_c00450{transform:matrix(0.252780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252780,0.000000,0.000000,0.250000,0,0);}
.m93_c00450{transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);}
.m9a_c00450{transform:matrix(0.254573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254573,0.000000,0.000000,0.250000,0,0);}
.m52_c00450{transform:matrix(0.256225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256225,0.000000,0.000000,0.250000,0,0);}
.m96_c00450{transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);}
.m14_c00450{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m3_c00450{transform:matrix(0.259889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259889,0.000000,0.000000,0.250000,0,0);}
.m7_c00450{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m1c_c00450{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.m2d_c00450{transform:matrix(0.262067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262067,0.000000,0.000000,0.250000,0,0);}
.m11_c00450{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m8_c00450{transform:matrix(0.264094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264094,0.000000,0.000000,0.250000,0,0);}
.m6d_c00450{transform:matrix(0.265295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265295,0.000000,0.000000,0.250000,0,0);}
.m4_c00450{transform:matrix(0.265462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265462,0.000000,0.000000,0.250000,0,0);}
.m57_c00450{transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);}
.m18_c00450{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m33_c00450{transform:matrix(0.266295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266295,0.000000,0.000000,0.250000,0,0);}
.m3c_c00450{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m9f_c00450{transform:matrix(0.267958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267958,0.000000,0.000000,0.250000,0,0);}
.m59_c00450{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.m24_c00450{transform:matrix(0.270184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270184,0.000000,0.000000,0.250000,0,0);}
.m66_c00450{transform:matrix(0.270371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270371,0.000000,0.000000,0.250000,0,0);}
.m22_c00450{transform:matrix(0.270390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270390,0.000000,0.000000,0.250000,0,0);}
.m89_c00450{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m26_c00450{transform:matrix(0.276338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276338,0.000000,0.000000,0.250000,0,0);}
.m2e_c00450{transform:matrix(0.276376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276376,0.000000,0.000000,0.250000,0,0);}
.m84_c00450{transform:matrix(0.276624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276624,0.000000,0.000000,0.250000,0,0);}
.m40_c00450{transform:matrix(0.276979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276979,0.000000,0.000000,0.250000,0,0);}
.m15_c00450{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.ma_c00450{transform:matrix(0.277610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277610,0.000000,0.000000,0.250000,0,0);}
.m71_c00450{transform:matrix(0.277902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277902,0.000000,0.000000,0.250000,0,0);}
.m2a_c00450{transform:matrix(0.278893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278893,0.000000,0.000000,0.250000,0,0);}
.m12_c00450{transform:matrix(0.279887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279887,0.000000,0.000000,0.250000,0,0);}
.m72_c00450{transform:matrix(0.280061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280061,0.000000,0.000000,0.250000,0,0);}
.m31_c00450{transform:matrix(0.281190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281190,0.000000,0.000000,0.250000,0,0);}
.m98_c00450{transform:matrix(0.281618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281618,0.000000,0.000000,0.250000,0,0);}
.m29_c00450{transform:matrix(0.282497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282497,0.000000,0.000000,0.250000,0,0);}
.m21_c00450{transform:matrix(0.282501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282501,0.000000,0.000000,0.250000,0,0);}
.m28_c00450{transform:matrix(0.282515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282515,0.000000,0.000000,0.250000,0,0);}
.m1e_c00450{transform:matrix(0.282984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282984,0.000000,0.000000,0.250000,0,0);}
.m7d_c00450{transform:matrix(0.283770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283770,0.000000,0.000000,0.250000,0,0);}
.m5b_c00450{transform:matrix(0.284015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284015,0.000000,0.000000,0.250000,0,0);}
.mf_c00450{transform:matrix(0.284092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284092,0.000000,0.000000,0.250000,0,0);}
.m3a_c00450{transform:matrix(0.285128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285128,0.000000,0.000000,0.250000,0,0);}
.m4c_c00450{transform:matrix(0.287049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287049,0.000000,0.000000,0.250000,0,0);}
.ma1_c00450{transform:matrix(0.287511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287511,0.000000,0.000000,0.250000,0,0);}
.ma4_c00450{transform:matrix(0.288037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288037,0.000000,0.000000,0.250000,0,0);}
.m94_c00450{transform:matrix(0.288522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288522,0.000000,0.000000,0.250000,0,0);}
.m74_c00450{transform:matrix(0.288806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288806,0.000000,0.000000,0.250000,0,0);}
.m38_c00450{transform:matrix(0.288814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288814,0.000000,0.000000,0.250000,0,0);}
.m6f_c00450{transform:matrix(0.289128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289128,0.000000,0.000000,0.250000,0,0);}
.m58_c00450{transform:matrix(0.289888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289888,0.000000,0.000000,0.250000,0,0);}
.m48_c00450{transform:matrix(0.289940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289940,0.000000,0.000000,0.250000,0,0);}
.m8a_c00450{transform:matrix(0.290787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290787,0.000000,0.000000,0.250000,0,0);}
.m7b_c00450{transform:matrix(0.290975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290975,0.000000,0.000000,0.250000,0,0);}
.m88_c00450{transform:matrix(0.291230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291230,0.000000,0.000000,0.250000,0,0);}
.m9c_c00450{transform:matrix(0.291970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291970,0.000000,0.000000,0.250000,0,0);}
.m9b_c00450{transform:matrix(0.292279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292279,0.000000,0.000000,0.250000,0,0);}
.m6e_c00450{transform:matrix(0.292305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292305,0.000000,0.000000,0.250000,0,0);}
.m76_c00450{transform:matrix(0.292439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292439,0.000000,0.000000,0.250000,0,0);}
.m8c_c00450{transform:matrix(0.293059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293059,0.000000,0.000000,0.250000,0,0);}
.m62_c00450{transform:matrix(0.294021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294021,0.000000,0.000000,0.250000,0,0);}
.m3b_c00450{transform:matrix(0.294400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294400,0.000000,0.000000,0.250000,0,0);}
.m65_c00450{transform:matrix(0.295251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295251,0.000000,0.000000,0.250000,0,0);}
.m3e_c00450{transform:matrix(0.296861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296861,0.000000,0.000000,0.250000,0,0);}
.m69_c00450{transform:matrix(0.297290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297290,0.000000,0.000000,0.250000,0,0);}
.m95_c00450{transform:matrix(0.297319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297319,0.000000,0.000000,0.250000,0,0);}
.m82_c00450{transform:matrix(0.298574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298574,0.000000,0.000000,0.250000,0,0);}
.m9_c00450{transform:matrix(0.298650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298650,0.000000,0.000000,0.250000,0,0);}
.m1a_c00450{transform:matrix(0.298802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298802,0.000000,0.000000,0.250000,0,0);}
.m41_c00450{transform:matrix(0.298968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298968,0.000000,0.000000,0.250000,0,0);}
.md_c00450{transform:matrix(0.299263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299263,0.000000,0.000000,0.250000,0,0);}
.m61_c00450{transform:matrix(0.299298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299298,0.000000,0.000000,0.250000,0,0);}
.m46_c00450{transform:matrix(0.300036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300036,0.000000,0.000000,0.250000,0,0);}
.m1f_c00450{transform:matrix(0.300464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300464,0.000000,0.000000,0.250000,0,0);}
.m10_c00450{transform:matrix(0.301042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301042,0.000000,0.000000,0.250000,0,0);}
.m1b_c00450{transform:matrix(0.301132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301132,0.000000,0.000000,0.250000,0,0);}
.m9e_c00450{transform:matrix(0.301516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301516,0.000000,0.000000,0.250000,0,0);}
.m60_c00450{transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);}
.m2f_c00450{transform:matrix(0.301711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301711,0.000000,0.000000,0.250000,0,0);}
.m4e_c00450{transform:matrix(0.301757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301757,0.000000,0.000000,0.250000,0,0);}
.m78_c00450{transform:matrix(0.302359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302359,0.000000,0.000000,0.250000,0,0);}
.m36_c00450{transform:matrix(0.302588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302588,0.000000,0.000000,0.250000,0,0);}
.m6_c00450{transform:matrix(0.302763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302763,0.000000,0.000000,0.250000,0,0);}
.m63_c00450{transform:matrix(0.304540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304540,0.000000,0.000000,0.250000,0,0);}
.m5_c00450{transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);}
.m7c_c00450{transform:matrix(0.305475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305475,0.000000,0.000000,0.250000,0,0);}
.m81_c00450{transform:matrix(0.305958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305958,0.000000,0.000000,0.250000,0,0);}
.m30_c00450{transform:matrix(0.306188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306188,0.000000,0.000000,0.250000,0,0);}
.m13_c00450{transform:matrix(0.306546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306546,0.000000,0.000000,0.250000,0,0);}
.m6a_c00450{transform:matrix(0.306893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306893,0.000000,0.000000,0.250000,0,0);}
.m85_c00450{transform:matrix(0.307482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307482,0.000000,0.000000,0.250000,0,0);}
.m99_c00450{transform:matrix(0.307588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307588,0.000000,0.000000,0.250000,0,0);}
.m4b_c00450{transform:matrix(0.307919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307919,0.000000,0.000000,0.250000,0,0);}
.mb_c00450{transform:matrix(0.308448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308448,0.000000,0.000000,0.250000,0,0);}
.m80_c00450{transform:matrix(0.308565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308565,0.000000,0.000000,0.250000,0,0);}
.m2b_c00450{transform:matrix(0.308571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308571,0.000000,0.000000,0.250000,0,0);}
.m51_c00450{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m73_c00450{transform:matrix(0.311199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311199,0.000000,0.000000,0.250000,0,0);}
.m75_c00450{transform:matrix(0.311683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311683,0.000000,0.000000,0.250000,0,0);}
.m50_c00450{transform:matrix(0.312862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312862,0.000000,0.000000,0.250000,0,0);}
.m55_c00450{transform:matrix(0.312949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312949,0.000000,0.000000,0.250000,0,0);}
.m56_c00450{transform:matrix(0.313023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313023,0.000000,0.000000,0.250000,0,0);}
.m67_c00450{transform:matrix(0.313839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313839,0.000000,0.000000,0.250000,0,0);}
.me_c00450{transform:matrix(0.314783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314783,0.000000,0.000000,0.250000,0,0);}
.m97_c00450{transform:matrix(0.315045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315045,0.000000,0.000000,0.250000,0,0);}
.m77_c00450{transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);}
.m4d_c00450{transform:matrix(0.315780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315780,0.000000,0.000000,0.250000,0,0);}
.m3f_c00450{transform:matrix(0.316652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316652,0.000000,0.000000,0.250000,0,0);}
.m6b_c00450{transform:matrix(0.316831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316831,0.000000,0.000000,0.250000,0,0);}
.m17_c00450{transform:matrix(0.316909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316909,0.000000,0.000000,0.250000,0,0);}
.m43_c00450{transform:matrix(0.317419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317419,0.000000,0.000000,0.250000,0,0);}
.m9d_c00450{transform:matrix(0.318255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318255,0.000000,0.000000,0.250000,0,0);}
.m47_c00450{transform:matrix(0.318690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318690,0.000000,0.000000,0.250000,0,0);}
.m83_c00450{transform:matrix(0.320003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320003,0.000000,0.000000,0.250000,0,0);}
.m92_c00450{transform:matrix(0.320292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320292,0.000000,0.000000,0.250000,0,0);}
.m6c_c00450{transform:matrix(0.321622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321622,0.000000,0.000000,0.250000,0,0);}
.m2c_c00450{transform:matrix(0.322979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322979,0.000000,0.000000,0.250000,0,0);}
.m54_c00450{transform:matrix(0.323218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323218,0.000000,0.000000,0.250000,0,0);}
.m23_c00450{transform:matrix(0.323442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323442,0.000000,0.000000,0.250000,0,0);}
.m68_c00450{transform:matrix(0.323581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323581,0.000000,0.000000,0.250000,0,0);}
.m27_c00450{transform:matrix(0.323962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323962,0.000000,0.000000,0.250000,0,0);}
.m70_c00450{transform:matrix(0.324242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324242,0.000000,0.000000,0.250000,0,0);}
.m5c_c00450{transform:matrix(0.324287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324287,0.000000,0.000000,0.250000,0,0);}
.m3d_c00450{transform:matrix(0.324775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324775,0.000000,0.000000,0.250000,0,0);}
.m7a_c00450{transform:matrix(0.324926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324926,0.000000,0.000000,0.250000,0,0);}
.m19_c00450{transform:matrix(0.327076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327076,0.000000,0.000000,0.250000,0,0);}
.m49_c00450{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m5e_c00450{transform:matrix(0.330042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330042,0.000000,0.000000,0.250000,0,0);}
.m8b_c00450{transform:matrix(0.330374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330374,0.000000,0.000000,0.250000,0,0);}
.m90_c00450{transform:matrix(0.331101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331101,0.000000,0.000000,0.250000,0,0);}
.m7f_c00450{transform:matrix(0.331554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331554,0.000000,0.000000,0.250000,0,0);}
.m5d_c00450{transform:matrix(0.332348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332348,0.000000,0.000000,0.250000,0,0);}
.m45_c00450{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m64_c00450{transform:matrix(0.333289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333289,0.000000,0.000000,0.250000,0,0);}
.m44_c00450{transform:matrix(0.333926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333926,0.000000,0.000000,0.250000,0,0);}
.m5f_c00450{transform:matrix(0.334419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334419,0.000000,0.000000,0.250000,0,0);}
.m91_c00450{transform:matrix(0.336351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336351,0.000000,0.000000,0.250000,0,0);}
.m32_c00450{transform:matrix(0.337164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337164,0.000000,0.000000,0.250000,0,0);}
.m53_c00450{transform:matrix(0.338773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338773,0.000000,0.000000,0.250000,0,0);}
.m5a_c00450{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m16_c00450{transform:matrix(0.340626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340626,0.000000,0.000000,0.250000,0,0);}
.m86_c00450{transform:matrix(0.342665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342665,0.000000,0.000000,0.250000,0,0);}
.m4a_c00450{transform:matrix(0.343252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343252,0.000000,0.000000,0.250000,0,0);}
.m39_c00450{transform:matrix(0.346501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346501,0.000000,0.000000,0.250000,0,0);}
.m20_c00450{transform:matrix(0.349288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349288,0.000000,0.000000,0.250000,0,0);}
.m79_c00450{transform:matrix(0.349571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349571,0.000000,0.000000,0.250000,0,0);}
.m37_c00450{transform:matrix(0.352319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352319,0.000000,0.000000,0.250000,0,0);}
.m87_c00450{transform:matrix(0.356286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356286,0.000000,0.000000,0.250000,0,0);}
.m7e_c00450{transform:matrix(0.359223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359223,0.000000,0.000000,0.250000,0,0);}
.m4f_c00450{transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);}
.ma3_c00450{transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);}
.m1d_c00450{transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);}
.m42_c00450{transform:matrix(0.385437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385437,0.000000,0.000000,0.250000,0,0);}
.v0_c00450{vertical-align:0.000000px;}
.lsa_c00450{letter-spacing:-2.744280px;}
.ls10_c00450{letter-spacing:-1.442707px;}
.lsf_c00450{letter-spacing:-0.486130px;}
.ls9_c00450{letter-spacing:-0.470448px;}
.ls11_c00450{letter-spacing:-0.187189px;}
.ls4_c00450{letter-spacing:0.000000px;}
.ls2_c00450{letter-spacing:1.427026px;}
.lsb_c00450{letter-spacing:1.952359px;}
.ls1_c00450{letter-spacing:3.293136px;}
.lsc_c00450{letter-spacing:3.306610px;}
.ls0_c00450{letter-spacing:3.379385px;}
.lse_c00450{letter-spacing:3.387226px;}
.ls13_c00450{letter-spacing:3.591086px;}
.lsd_c00450{letter-spacing:3.700858px;}
.ls7_c00450{letter-spacing:3.857674px;}
.ls14_c00450{letter-spacing:3.861000px;}
.ls6_c00450{letter-spacing:3.920400px;}
.ls8_c00450{letter-spacing:3.940200px;}
.ls3_c00450{letter-spacing:4.415400px;}
.ls5_c00450{letter-spacing:31.363200px;}
.ls12_c00450{letter-spacing:58.449798px;}
.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:-22.981385px;}
.ws2_c00450{word-spacing:-21.029026px;}
.ws1_c00450{word-spacing:-19.602000px;}
.ws3_c00450{word-spacing:-3.998808px;}
.ws4_c00450{word-spacing:0.000000px;}
._7_c00450{margin-left:-19.131552px;}
._0_c00450{margin-left:-8.726810px;}
._4_c00450{width:2.776435px;}
._5_c00450{width:10.506672px;}
._3_c00450{width:13.643388px;}
._2_c00450{width:19.704722px;}
._1_c00450{width:37.897200px;}
._6_c00450{width:44.454168px;}
.fc0_c00450{color:transparent;}
.fs2_c00450{font-size:25.146000px;}
.fs4_c00450{font-size:27.720000px;}
.fs3_c00450{font-size:31.363200px;}
.fsb_c00450{font-size:58.449798px;}
.fs9_c00450{font-size:64.548000px;}
.fsa_c00450{font-size:64.944000px;}
.fs8_c00450{font-size:66.132198px;}
.fs1_c00450{font-size:66.528000px;}
.fs7_c00450{font-size:74.844000px;}
.fsc_c00450{font-size:77.220000px;}
.fs5_c00450{font-size:78.408000px;}
.fs6_c00450{font-size:78.804000px;}
.fs0_c00450{font-size:88.308000px;}
.y0_c00450{bottom:0.000000px;}
.y1f_c00450{bottom:3.832335px;}
.y1_c00450{bottom:76.500000px;}
.y1d_c00450{bottom:122.864985px;}
.y1e_c00450{bottom:124.295535px;}
.y1c_c00450{bottom:189.868185px;}
.y1b_c00450{bottom:222.661935px;}
.y1a_c00450{bottom:254.737935px;}
.y19_c00450{bottom:286.101135px;}
.y18_c00450{bottom:317.820735px;}
.y17_c00450{bottom:349.896735px;}
.y16_c00450{bottom:382.324185px;}
.y15_c00450{bottom:414.756585px;}
.y14_c00450{bottom:447.193935px;}
.y13_c00450{bottom:479.264985px;}
.y12_c00450{bottom:511.345935px;}
.y11_c00450{bottom:574.780185px;}
.y10_c00450{bottom:607.212585px;}
.yf_c00450{bottom:638.937135px;}
.ye_c00450{bottom:671.008185px;}
.yd_c00450{bottom:702.371385px;}
.yc_c00450{bottom:734.452335px;}
.yb_c00450{bottom:766.523385px;}
.ya_c00450{bottom:831.036735px;}
.y9_c00450{bottom:863.469135px;}
.y8_c00450{bottom:895.540185px;}
.y7_c00450{bottom:927.621135px;}
.y6_c00450{bottom:994.267935px;}
.y5_c00450{bottom:1013.152185px;}
.y4_c00450{bottom:1023.844185px;}
.y3_c00450{bottom:1036.674585px;}
.y2_c00450{bottom:1050.930585px;}
.h5_c00450{height:20.887891px;}
.h4_c00450{height:26.226492px;}
.h6_c00450{height:28.911094px;}
.hc_c00450{height:38.927565px;}
.h9_c00450{height:64.905136px;}
.ha_c00450{height:67.321547px;}
.hb_c00450{height:67.734563px;}
.h3_c00450{height:69.386625px;}
.hd_c00450{height:75.787207px;}
.h7_c00450{height:76.953164px;}
.h8_c00450{height:77.341816px;}
.h2_c00450{height:86.669473px;}
.h1_c00450{height:1110.000000px;}
.h0_c00450{height:1263.000000px;}
.w1_c00450{width:775.500000px;}
.w0_c00450{width:892.500000px;}
.x0_c00450{left:0.000000px;}
.x1_c00450{left:58.500000px;}
.x6f_c00450{left:92.329035px;}
.x52_c00450{left:93.670485px;}
.x17_c00450{left:96.170235px;}
.x4_c00450{left:97.991835px;}
.x3c_c00450{left:100.709385px;}
.x56_c00450{left:126.622635px;}
.x5_c00450{left:129.671835px;}
.x37_c00450{left:130.894485px;}
.x53_c00450{left:138.037335px;}
.x2f_c00450{left:140.804385px;}
.x74_c00450{left:146.779035px;}
.x4b_c00450{left:148.843185px;}
.x26_c00450{left:150.258885px;}
.x70_c00450{left:157.817535px;}
.x5a_c00450{left:159.896535px;}
.x3d_c00450{left:161.955735px;}
.x43_c00450{left:163.287285px;}
.x5f_c00450{left:170.370735px;}
.x18_c00450{left:173.325885px;}
.x63_c00450{left:180.320235px;}
.x4c_c00450{left:182.547735px;}
.xe_c00450{left:183.913935px;}
.x30_c00450{left:185.106885px;}
.x6_c00450{left:195.793935px;}
.x7b_c00450{left:202.808085px;}
.x19_c00450{left:205.045485px;}
.x3_c00450{left:208.015485px;}
.x76_c00450{left:213.396135px;}
.x57_c00450{left:214.925685px;}
.xf_c00450{left:217.108635px;}
.x38_c00450{left:227.483835px;}
.x27_c00450{left:229.434135px;}
.x5b_c00450{left:237.477885px;}
.x1a_c00450{left:249.590535px;}
.x6a_c00450{left:257.302635px;}
.x60_c00450{left:258.490635px;}
.x47_c00450{left:260.277585px;}
.x3e_c00450{left:261.693285px;}
.x44_c00450{left:271.231935px;}
.x28_c00450{left:272.434785px;}
.x64_c00450{left:281.107185px;}
.x4d_c00450{left:282.399135px;}
.x31_c00450{left:283.795035px;}
.x10_c00450{left:294.754335px;}
.x5c_c00450{left:302.520885px;}
.x48_c00450{left:303.590085px;}
.x29_c00450{left:305.372085px;}
.x7c_c00450{left:314.440485px;}
.x4e_c00450{left:315.861135px;}
.x20_c00450{left:317.331285px;}
.x77_c00450{left:325.157235px;}
.x3f_c00450{left:326.894685px;}
.x21_c00450{left:337.948035px;}
.x7_c00450{left:339.041985px;}
.x11_c00450{left:340.101285px;}
.x71_c00450{left:347.214435px;}
.x1b_c00450{left:350.342835px;}
.x6b_c00450{left:357.772785px;}
.x40_c00450{left:359.549835px;}
.x65_c00450{left:369.187485px;}
.x22_c00450{left:370.593285px;}
.x72_c00450{left:381.805035px;}
.x8_c00450{left:383.141535px;}
.x7d_c00450{left:390.215085px;}
.x2a_c00450{left:392.709885px;}
.x66_c00450{left:393.793935px;}
.x78_c00450{left:402.743535px;}
.x49_c00450{left:404.624535px;}
.x45_c00450{left:415.281885px;}
.x7e_c00450{left:425.330385px;}
.x4f_c00450{left:426.661935px;}
.x39_c00450{left:437.259885px;}
.x32_c00450{left:447.209385px;}
.x46_c00450{left:448.882485px;}
.x12_c00450{left:450.273435px;}
.x73_c00450{left:457.559835px;}
.x2b_c00450{left:458.564685px;}
.x23_c00450{left:460.613985px;}
.x1c_c00450{left:472.345485px;}
.x79_c00450{left:479.626935px;}
.x13_c00450{left:483.215685px;}
.x61_c00450{left:491.066385px;}
.x33_c00450{left:492.170235px;}
.x24_c00450{left:493.378035px;}
.x1d_c00450{left:503.674035px;}
.x9_c00450{left:504.802635px;}
.x82_c00450{left:509.173485px;}
.x7f_c00450{left:513.687885px;}
.x5d_c00450{left:524.721435px;}
.x2c_c00450{left:527.250885px;}
.x67_c00450{left:534.898635px;}
.x50_c00450{left:536.462835px;}
.x1e_c00450{left:537.814185px;}
.x80_c00450{left:546.090585px;}
.x62_c00450{left:547.540935px;}
.xa_c00450{left:549.610035px;}
.x75_c00450{left:558.534885px;}
.x41_c00450{left:559.604085px;}
.x6c_c00450{left:568.672485px;}
.x14_c00450{left:570.187185px;}
.x68_c00450{left:580.230735px;}
.x2d_c00450{left:591.922635px;}
.x7a_c00450{left:602.070135px;}
.xb_c00450{left:604.040235px;}
.x25_c00450{left:605.634135px;}
.x34_c00450{left:613.667985px;}
.x51_c00450{left:614.925285px;}
.x1f_c00450{left:625.622235px;}
.x15_c00450{left:635.799435px;}
.x58_c00450{left:644.961885px;}
.x35_c00450{left:646.818135px;}
.x4a_c00450{left:657.143835px;}
.x3a_c00450{left:658.683285px;}
.x16_c00450{left:668.905035px;}
.xc_c00450{left:670.325685px;}
.x3b_c00450{left:680.379135px;}
.x6d_c00450{left:681.671085px;}
.x54_c00450{left:690.293985px;}
.x42_c00450{left:692.219535px;}
.x5e_c00450{left:702.169035px;}
.x2_c00450{left:706.460685px;}
.x59_c00450{left:711.979935px;}
.x81_c00450{left:722.538285px;}
.xd_c00450{left:724.844985px;}
.x2e_c00450{left:726.102285px;}
.x6e_c00450{left:734.650935px;}
.x36_c00450{left:735.977535px;}
.x69_c00450{left:746.689335px;}
.x55_c00450{left:759.415785px;}
@media print{
.v0_c00450{vertical-align:0.000000pt;}
.lsa_c00450{letter-spacing:-2.439360pt;}
.ls10_c00450{letter-spacing:-1.282406pt;}
.lsf_c00450{letter-spacing:-0.432115pt;}
.ls9_c00450{letter-spacing:-0.418176pt;}
.ls11_c00450{letter-spacing:-0.166390pt;}
.ls4_c00450{letter-spacing:0.000000pt;}
.ls2_c00450{letter-spacing:1.268467pt;}
.lsb_c00450{letter-spacing:1.735430pt;}
.ls1_c00450{letter-spacing:2.927232pt;}
.lsc_c00450{letter-spacing:2.939209pt;}
.ls0_c00450{letter-spacing:3.003898pt;}
.lse_c00450{letter-spacing:3.010867pt;}
.ls13_c00450{letter-spacing:3.192077pt;}
.lsd_c00450{letter-spacing:3.289651pt;}
.ls7_c00450{letter-spacing:3.429043pt;}
.ls14_c00450{letter-spacing:3.432000pt;}
.ls6_c00450{letter-spacing:3.484800pt;}
.ls8_c00450{letter-spacing:3.502400pt;}
.ls3_c00450{letter-spacing:3.924800pt;}
.ls5_c00450{letter-spacing:27.878400pt;}
.ls12_c00450{letter-spacing:51.955376pt;}
.ws0_c00450{word-spacing:-20.427898pt;}
.ws2_c00450{word-spacing:-18.692467pt;}
.ws1_c00450{word-spacing:-17.424000pt;}
.ws3_c00450{word-spacing:-3.554496pt;}
.ws4_c00450{word-spacing:0.000000pt;}
._7_c00450{margin-left:-17.005824pt;}
._0_c00450{margin-left:-7.757165pt;}
._4_c00450{width:2.467942pt;}
._5_c00450{width:9.339264pt;}
._3_c00450{width:12.127456pt;}
._2_c00450{width:17.515309pt;}
._1_c00450{width:33.686400pt;}
._6_c00450{width:39.514816pt;}
.fs2_c00450{font-size:22.352000pt;}
.fs4_c00450{font-size:24.640000pt;}
.fs3_c00450{font-size:27.878400pt;}
.fsb_c00450{font-size:51.955376pt;}
.fs9_c00450{font-size:57.376000pt;}
.fsa_c00450{font-size:57.728000pt;}
.fs8_c00450{font-size:58.784176pt;}
.fs1_c00450{font-size:59.136000pt;}
.fs7_c00450{font-size:66.528000pt;}
.fsc_c00450{font-size:68.640000pt;}
.fs5_c00450{font-size:69.696000pt;}
.fs6_c00450{font-size:70.048000pt;}
.fs0_c00450{font-size:78.496000pt;}
.y0_c00450{bottom:0.000000pt;}
.y1f_c00450{bottom:3.406520pt;}
.y1_c00450{bottom:68.000000pt;}
.y1d_c00450{bottom:109.213320pt;}
.y1e_c00450{bottom:110.484920pt;}
.y1c_c00450{bottom:168.771720pt;}
.y1b_c00450{bottom:197.921720pt;}
.y1a_c00450{bottom:226.433720pt;}
.y19_c00450{bottom:254.312120pt;}
.y18_c00450{bottom:282.507320pt;}
.y17_c00450{bottom:311.019320pt;}
.y16_c00450{bottom:339.843720pt;}
.y15_c00450{bottom:368.672520pt;}
.y14_c00450{bottom:397.505720pt;}
.y13_c00450{bottom:426.013320pt;}
.y12_c00450{bottom:454.529720pt;}
.y11_c00450{bottom:510.915720pt;}
.y10_c00450{bottom:539.744520pt;}
.yf_c00450{bottom:567.944120pt;}
.ye_c00450{bottom:596.451720pt;}
.yd_c00450{bottom:624.330120pt;}
.yc_c00450{bottom:652.846520pt;}
.yb_c00450{bottom:681.354120pt;}
.ya_c00450{bottom:738.699320pt;}
.y9_c00450{bottom:767.528120pt;}
.y8_c00450{bottom:796.035720pt;}
.y7_c00450{bottom:824.552120pt;}
.y6_c00450{bottom:883.793720pt;}
.y5_c00450{bottom:900.579720pt;}
.y4_c00450{bottom:910.083720pt;}
.y3_c00450{bottom:921.488520pt;}
.y2_c00450{bottom:934.160520pt;}
.h5_c00450{height:18.567014pt;}
.h4_c00450{height:23.312438pt;}
.h6_c00450{height:25.698750pt;}
.hc_c00450{height:34.602280pt;}
.h9_c00450{height:57.693454pt;}
.ha_c00450{height:59.841375pt;}
.hb_c00450{height:60.208500pt;}
.h3_c00450{height:61.677000pt;}
.hd_c00450{height:67.366406pt;}
.h7_c00450{height:68.402813pt;}
.h8_c00450{height:68.748281pt;}
.h2_c00450{height:77.039531pt;}
.h1_c00450{height:986.666667pt;}
.h0_c00450{height:1122.666667pt;}
.w1_c00450{width:689.333333pt;}
.w0_c00450{width:793.333333pt;}
.x0_c00450{left:0.000000pt;}
.x1_c00450{left:52.000000pt;}
.x6f_c00450{left:82.070253pt;}
.x52_c00450{left:83.262653pt;}
.x17_c00450{left:85.484653pt;}
.x4_c00450{left:87.103853pt;}
.x3c_c00450{left:89.519453pt;}
.x56_c00450{left:112.553453pt;}
.x5_c00450{left:115.263853pt;}
.x37_c00450{left:116.350653pt;}
.x53_c00450{left:122.699853pt;}
.x2f_c00450{left:125.159453pt;}
.x74_c00450{left:130.470253pt;}
.x4b_c00450{left:132.305053pt;}
.x26_c00450{left:133.563453pt;}
.x70_c00450{left:140.282253pt;}
.x5a_c00450{left:142.130253pt;}
.x3d_c00450{left:143.960653pt;}
.x43_c00450{left:145.144253pt;}
.x5f_c00450{left:151.440653pt;}
.x18_c00450{left:154.067453pt;}
.x63_c00450{left:160.284653pt;}
.x4c_c00450{left:162.264653pt;}
.xe_c00450{left:163.479053pt;}
.x30_c00450{left:164.539453pt;}
.x6_c00450{left:174.039053pt;}
.x7b_c00450{left:180.273853pt;}
.x19_c00450{left:182.262653pt;}
.x3_c00450{left:184.902653pt;}
.x76_c00450{left:189.685453pt;}
.x57_c00450{left:191.045053pt;}
.xf_c00450{left:192.985453pt;}
.x38_c00450{left:202.207853pt;}
.x27_c00450{left:203.941453pt;}
.x5b_c00450{left:211.091453pt;}
.x1a_c00450{left:221.858253pt;}
.x6a_c00450{left:228.713453pt;}
.x60_c00450{left:229.769453pt;}
.x47_c00450{left:231.357853pt;}
.x3e_c00450{left:232.616253pt;}
.x44_c00450{left:241.095053pt;}
.x28_c00450{left:242.164253pt;}
.x64_c00450{left:249.873053pt;}
.x4d_c00450{left:251.021453pt;}
.x31_c00450{left:252.262253pt;}
.x10_c00450{left:262.003853pt;}
.x5c_c00450{left:268.907453pt;}
.x48_c00450{left:269.857853pt;}
.x29_c00450{left:271.441853pt;}
.x7c_c00450{left:279.502653pt;}
.x4e_c00450{left:280.765453pt;}
.x20_c00450{left:282.072253pt;}
.x77_c00450{left:289.028653pt;}
.x3f_c00450{left:290.573053pt;}
.x21_c00450{left:300.398253pt;}
.x7_c00450{left:301.370653pt;}
.x11_c00450{left:302.312253pt;}
.x71_c00450{left:308.635053pt;}
.x1b_c00450{left:311.415853pt;}
.x6b_c00450{left:318.020253pt;}
.x40_c00450{left:319.599853pt;}
.x65_c00450{left:328.166653pt;}
.x22_c00450{left:329.416253pt;}
.x72_c00450{left:339.382253pt;}
.x8_c00450{left:340.570253pt;}
.x7d_c00450{left:346.857853pt;}
.x2a_c00450{left:349.075453pt;}
.x66_c00450{left:350.039053pt;}
.x78_c00450{left:357.994253pt;}
.x49_c00450{left:359.666253pt;}
.x45_c00450{left:369.139453pt;}
.x7e_c00450{left:378.071453pt;}
.x4f_c00450{left:379.255053pt;}
.x39_c00450{left:388.675453pt;}
.x32_c00450{left:397.519453pt;}
.x46_c00450{left:399.006653pt;}
.x12_c00450{left:400.243053pt;}
.x73_c00450{left:406.719853pt;}
.x2b_c00450{left:407.613053pt;}
.x23_c00450{left:409.434653pt;}
.x1c_c00450{left:419.862653pt;}
.x79_c00450{left:426.335053pt;}
.x13_c00450{left:429.525053pt;}
.x61_c00450{left:436.503453pt;}
.x33_c00450{left:437.484653pt;}
.x24_c00450{left:438.558253pt;}
.x1d_c00450{left:447.710253pt;}
.x9_c00450{left:448.713453pt;}
.x82_c00450{left:452.598653pt;}
.x7f_c00450{left:456.611453pt;}
.x5d_c00450{left:466.419053pt;}
.x2c_c00450{left:468.667453pt;}
.x67_c00450{left:475.465453pt;}
.x50_c00450{left:476.855853pt;}
.x1e_c00450{left:478.057053pt;}
.x80_c00450{left:485.413853pt;}
.x62_c00450{left:486.703053pt;}
.xa_c00450{left:488.542253pt;}
.x75_c00450{left:496.475453pt;}
.x41_c00450{left:497.425853pt;}
.x6c_c00450{left:505.486653pt;}
.x14_c00450{left:506.833053pt;}
.x68_c00450{left:515.760653pt;}
.x2d_c00450{left:526.153453pt;}
.x7a_c00450{left:535.173453pt;}
.xb_c00450{left:536.924653pt;}
.x25_c00450{left:538.341453pt;}
.x34_c00450{left:545.482653pt;}
.x51_c00450{left:546.600253pt;}
.x1f_c00450{left:556.108653pt;}
.x15_c00450{left:565.155053pt;}
.x58_c00450{left:573.299453pt;}
.x35_c00450{left:574.949453pt;}
.x4a_c00450{left:584.127853pt;}
.x3a_c00450{left:585.496253pt;}
.x16_c00450{left:594.582253pt;}
.xc_c00450{left:595.845053pt;}
.x3b_c00450{left:604.781453pt;}
.x6d_c00450{left:605.929853pt;}
.x54_c00450{left:613.594653pt;}
.x42_c00450{left:615.306253pt;}
.x5e_c00450{left:624.150253pt;}
.x2_c00450{left:627.965053pt;}
.x59_c00450{left:632.871053pt;}
.x81_c00450{left:642.256253pt;}
.xd_c00450{left:644.306653pt;}
.x2e_c00450{left:645.424253pt;}
.x6e_c00450{left:653.023053pt;}
.x36_c00450{left:654.202253pt;}
.x69_c00450{left:663.723853pt;}
.x55_c00450{left:675.036253pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b2e5df1b5ca1fe06203b4b03.woff2')format("woff");}.ff1_c00451{font-family:ff1_c00451;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00451;src:url('chunks/assets/font_9a28560baeab8fdb29c7e845.woff2')format("woff");}.ff2_c00451{font-family:ff2_c00451;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00451;src:url('chunks/assets/font_70da9ed464b56a36fa88f539.woff2')format("woff");}.ff3_c00451{font-family:ff3_c00451;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00451;src:url('chunks/assets/font_78706a845840a4597409de63.woff2')format("woff");}.ff4_c00451{font-family:ff4_c00451;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mbf_c00451{transform:matrix(0.143413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143413,0.000000,0.000000,0.250000,0,0);}
.m7b_c00451{transform:matrix(0.185714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185714,0.000000,0.000000,0.250000,0,0);}
.m66_c00451{transform:matrix(0.201737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201737,0.000000,0.000000,0.250000,0,0);}
.m67_c00451{transform:matrix(0.207432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207432,0.000000,0.000000,0.250000,0,0);}
.m64_c00451{transform:matrix(0.222973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222973,0.000000,0.000000,0.250000,0,0);}
.m83_c00451{transform:matrix(0.235492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235492,0.000000,0.000000,0.250000,0,0);}
.m2d_c00451{transform:matrix(0.236068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236068,0.000000,0.000000,0.250000,0,0);}
.m0_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);}
.ma_c00451{transform:matrix(0.250507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250507,0.000000,0.000000,0.250000,0,0);}
.m32_c00451{transform:matrix(0.251559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251559,0.000000,0.000000,0.250000,0,0);}
.m93_c00451{transform:matrix(0.252485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252485,0.000000,0.000000,0.250000,0,0);}
.m53_c00451{transform:matrix(0.258587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258587,0.000000,0.000000,0.250000,0,0);}
.m68_c00451{transform:matrix(0.261302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261302,0.000000,0.000000,0.250000,0,0);}
.m70_c00451{transform:matrix(0.262535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262535,0.000000,0.000000,0.250000,0,0);}
.m46_c00451{transform:matrix(0.262673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262673,0.000000,0.000000,0.250000,0,0);}
.m69_c00451{transform:matrix(0.262834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262834,0.000000,0.000000,0.250000,0,0);}
.m1_c00451{transform:matrix(0.263275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263275,0.000000,0.000000,0.250000,0,0);}
.m38_c00451{transform:matrix(0.263376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263376,0.000000,0.000000,0.250000,0,0);}
.m4d_c00451{transform:matrix(0.263838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263838,0.000000,0.000000,0.250000,0,0);}
.m9a_c00451{transform:matrix(0.266273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266273,0.000000,0.000000,0.250000,0,0);}
.m63_c00451{transform:matrix(0.266286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266286,0.000000,0.000000,0.250000,0,0);}
.m21_c00451{transform:matrix(0.266368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266368,0.000000,0.000000,0.250000,0,0);}
.m61_c00451{transform:matrix(0.266782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266782,0.000000,0.000000,0.250000,0,0);}
.m37_c00451{transform:matrix(0.267241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267241,0.000000,0.000000,0.250000,0,0);}
.mb9_c00451{transform:matrix(0.267450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267450,0.000000,0.000000,0.250000,0,0);}
.m9c_c00451{transform:matrix(0.267967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267967,0.000000,0.000000,0.250000,0,0);}
.me_c00451{transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);}
.m47_c00451{transform:matrix(0.270083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270083,0.000000,0.000000,0.250000,0,0);}
.m85_c00451{transform:matrix(0.270108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270108,0.000000,0.000000,0.250000,0,0);}
.m26_c00451{transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);}
.m1e_c00451{transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);}
.m6b_c00451{transform:matrix(0.271254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271254,0.000000,0.000000,0.250000,0,0);}
.m92_c00451{transform:matrix(0.272571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272571,0.000000,0.000000,0.250000,0,0);}
.m57_c00451{transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);}
.m4a_c00451{transform:matrix(0.273384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273384,0.000000,0.000000,0.250000,0,0);}
.m44_c00451{transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);}
.mbe_c00451{transform:matrix(0.273620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273620,0.000000,0.000000,0.250000,0,0);}
.m4f_c00451{transform:matrix(0.273808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273808,0.000000,0.000000,0.250000,0,0);}
.m9b_c00451{transform:matrix(0.274610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274610,0.000000,0.000000,0.250000,0,0);}
.ma4_c00451{transform:matrix(0.275368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275368,0.000000,0.000000,0.250000,0,0);}
.m23_c00451{transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);}
.mc0_c00451{transform:matrix(0.276480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276480,0.000000,0.000000,0.250000,0,0);}
.m73_c00451{transform:matrix(0.276559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276559,0.000000,0.000000,0.250000,0,0);}
.m7e_c00451{transform:matrix(0.276672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276672,0.000000,0.000000,0.250000,0,0);}
.m8c_c00451{transform:matrix(0.276739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276739,0.000000,0.000000,0.250000,0,0);}
.m79_c00451{transform:matrix(0.276991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276991,0.000000,0.000000,0.250000,0,0);}
.m5e_c00451{transform:matrix(0.279112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279112,0.000000,0.000000,0.250000,0,0);}
.m81_c00451{transform:matrix(0.279953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279953,0.000000,0.000000,0.250000,0,0);}
.m6_c00451{transform:matrix(0.280495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280495,0.000000,0.000000,0.250000,0,0);}
.m15_c00451{transform:matrix(0.280800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280800,0.000000,0.000000,0.250000,0,0);}
.m12_c00451{transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);}
.m3e_c00451{transform:matrix(0.281622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281622,0.000000,0.000000,0.250000,0,0);}
.m91_c00451{transform:matrix(0.281700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281700,0.000000,0.000000,0.250000,0,0);}
.m55_c00451{transform:matrix(0.282883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282883,0.000000,0.000000,0.250000,0,0);}
.ma7_c00451{transform:matrix(0.283536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283536,0.000000,0.000000,0.250000,0,0);}
.m13_c00451{transform:matrix(0.283625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283625,0.000000,0.000000,0.250000,0,0);}
.m18_c00451{transform:matrix(0.284987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284987,0.000000,0.000000,0.250000,0,0);}
.m59_c00451{transform:matrix(0.285375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285375,0.000000,0.000000,0.250000,0,0);}
.mba_c00451{transform:matrix(0.285557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285557,0.000000,0.000000,0.250000,0,0);}
.m48_c00451{transform:matrix(0.285631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285631,0.000000,0.000000,0.250000,0,0);}
.m88_c00451{transform:matrix(0.285644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285644,0.000000,0.000000,0.250000,0,0);}
.m62_c00451{transform:matrix(0.285804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285804,0.000000,0.000000,0.250000,0,0);}
.m95_c00451{transform:matrix(0.286919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286919,0.000000,0.000000,0.250000,0,0);}
.m50_c00451{transform:matrix(0.287155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287155,0.000000,0.000000,0.250000,0,0);}
.mbc_c00451{transform:matrix(0.287374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287374,0.000000,0.000000,0.250000,0,0);}
.m8a_c00451{transform:matrix(0.288016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288016,0.000000,0.000000,0.250000,0,0);}
.m98_c00451{transform:matrix(0.288188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288188,0.000000,0.000000,0.250000,0,0);}
.m56_c00451{transform:matrix(0.288298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288298,0.000000,0.000000,0.250000,0,0);}
.m8b_c00451{transform:matrix(0.288303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288303,0.000000,0.000000,0.250000,0,0);}
.m40_c00451{transform:matrix(0.288781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288781,0.000000,0.000000,0.250000,0,0);}
.m10_c00451{transform:matrix(0.288997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288997,0.000000,0.000000,0.250000,0,0);}
.ma6_c00451{transform:matrix(0.290353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290353,0.000000,0.000000,0.250000,0,0);}
.ma3_c00451{transform:matrix(0.290445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290445,0.000000,0.000000,0.250000,0,0);}
.m87_c00451{transform:matrix(0.290745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290745,0.000000,0.000000,0.250000,0,0);}
.m1c_c00451{transform:matrix(0.291495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291495,0.000000,0.000000,0.250000,0,0);}
.m99_c00451{transform:matrix(0.291935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291935,0.000000,0.000000,0.250000,0,0);}
.m5f_c00451{transform:matrix(0.293255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293255,0.000000,0.000000,0.250000,0,0);}
.m9d_c00451{transform:matrix(0.294056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294056,0.000000,0.000000,0.250000,0,0);}
.m7_c00451{transform:matrix(0.294958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294958,0.000000,0.000000,0.250000,0,0);}
.m5d_c00451{transform:matrix(0.296163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296163,0.000000,0.000000,0.250000,0,0);}
.m86_c00451{transform:matrix(0.297479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297479,0.000000,0.000000,0.250000,0,0);}
.m6d_c00451{transform:matrix(0.297564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297564,0.000000,0.000000,0.250000,0,0);}
.m71_c00451{transform:matrix(0.297725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297725,0.000000,0.000000,0.250000,0,0);}
.m8e_c00451{transform:matrix(0.298058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298058,0.000000,0.000000,0.250000,0,0);}
.mb1_c00451{transform:matrix(0.298453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298453,0.000000,0.000000,0.250000,0,0);}
.m4e_c00451{transform:matrix(0.298520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298520,0.000000,0.000000,0.250000,0,0);}
.m7a_c00451{transform:matrix(0.298698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298698,0.000000,0.000000,0.250000,0,0);}
.m2c_c00451{transform:matrix(0.299095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299095,0.000000,0.000000,0.250000,0,0);}
.m25_c00451{transform:matrix(0.299359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299359,0.000000,0.000000,0.250000,0,0);}
.m97_c00451{transform:matrix(0.300477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300477,0.000000,0.000000,0.250000,0,0);}
.m4_c00451{transform:matrix(0.300828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300828,0.000000,0.000000,0.250000,0,0);}
.mc3_c00451{transform:matrix(0.301004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301004,0.000000,0.000000,0.250000,0,0);}
.m6a_c00451{transform:matrix(0.301121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301121,0.000000,0.000000,0.250000,0,0);}
.m31_c00451{transform:matrix(0.301333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301333,0.000000,0.000000,0.250000,0,0);}
.m89_c00451{transform:matrix(0.301686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301686,0.000000,0.000000,0.250000,0,0);}
.m74_c00451{transform:matrix(0.301907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301907,0.000000,0.000000,0.250000,0,0);}
.mb5_c00451{transform:matrix(0.302187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302187,0.000000,0.000000,0.250000,0,0);}
.m17_c00451{transform:matrix(0.302392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302392,0.000000,0.000000,0.250000,0,0);}
.m11_c00451{transform:matrix(0.302575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302575,0.000000,0.000000,0.250000,0,0);}
.mb6_c00451{transform:matrix(0.303840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303840,0.000000,0.000000,0.250000,0,0);}
.m29_c00451{transform:matrix(0.303889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303889,0.000000,0.000000,0.250000,0,0);}
.maa_c00451{transform:matrix(0.304862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304862,0.000000,0.000000,0.250000,0,0);}
.mae_c00451{transform:matrix(0.305233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305233,0.000000,0.000000,0.250000,0,0);}
.m49_c00451{transform:matrix(0.305983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305983,0.000000,0.000000,0.250000,0,0);}
.m9f_c00451{transform:matrix(0.306447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306447,0.000000,0.000000,0.250000,0,0);}
.mbb_c00451{transform:matrix(0.308567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308567,0.000000,0.000000,0.250000,0,0);}
.m7f_c00451{transform:matrix(0.308838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308838,0.000000,0.000000,0.250000,0,0);}
.mb2_c00451{transform:matrix(0.309178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309178,0.000000,0.000000,0.250000,0,0);}
.m5c_c00451{transform:matrix(0.309215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309215,0.000000,0.000000,0.250000,0,0);}
.m5_c00451{transform:matrix(0.309371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309371,0.000000,0.000000,0.250000,0,0);}
.m80_c00451{transform:matrix(0.309448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309448,0.000000,0.000000,0.250000,0,0);}
.m96_c00451{transform:matrix(0.310023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310023,0.000000,0.000000,0.250000,0,0);}
.ma8_c00451{transform:matrix(0.310076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310076,0.000000,0.000000,0.250000,0,0);}
.m2a_c00451{transform:matrix(0.310625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310625,0.000000,0.000000,0.250000,0,0);}
.m3a_c00451{transform:matrix(0.311573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311573,0.000000,0.000000,0.250000,0,0);}
.m16_c00451{transform:matrix(0.311973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311973,0.000000,0.000000,0.250000,0,0);}
.m3f_c00451{transform:matrix(0.312230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312230,0.000000,0.000000,0.250000,0,0);}
.ma1_c00451{transform:matrix(0.312268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312268,0.000000,0.000000,0.250000,0,0);}
.mb3_c00451{transform:matrix(0.313163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313163,0.000000,0.000000,0.250000,0,0);}
.m4c_c00451{transform:matrix(0.313882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313882,0.000000,0.000000,0.250000,0,0);}
.m75_c00451{transform:matrix(0.314143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314143,0.000000,0.000000,0.250000,0,0);}
.mab_c00451{transform:matrix(0.314955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314955,0.000000,0.000000,0.250000,0,0);}
.m54_c00451{transform:matrix(0.315364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315364,0.000000,0.000000,0.250000,0,0);}
.m43_c00451{transform:matrix(0.316051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316051,0.000000,0.000000,0.250000,0,0);}
.m42_c00451{transform:matrix(0.316057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316057,0.000000,0.000000,0.250000,0,0);}
.m90_c00451{transform:matrix(0.316480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316480,0.000000,0.000000,0.250000,0,0);}
.m65_c00451{transform:matrix(0.316916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316916,0.000000,0.000000,0.250000,0,0);}
.m27_c00451{transform:matrix(0.317879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317879,0.000000,0.000000,0.250000,0,0);}
.mc1_c00451{transform:matrix(0.318644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318644,0.000000,0.000000,0.250000,0,0);}
.m30_c00451{transform:matrix(0.318956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318956,0.000000,0.000000,0.250000,0,0);}
.m8_c00451{transform:matrix(0.319307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319307,0.000000,0.000000,0.250000,0,0);}
.m52_c00451{transform:matrix(0.319733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319733,0.000000,0.000000,0.250000,0,0);}
.m6f_c00451{transform:matrix(0.319887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319887,0.000000,0.000000,0.250000,0,0);}
.m39_c00451{transform:matrix(0.320226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320226,0.000000,0.000000,0.250000,0,0);}
.m3c_c00451{transform:matrix(0.320571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320571,0.000000,0.000000,0.250000,0,0);}
.m35_c00451{transform:matrix(0.321442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321442,0.000000,0.000000,0.250000,0,0);}
.m1b_c00451{transform:matrix(0.322046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322046,0.000000,0.000000,0.250000,0,0);}
.m5a_c00451{transform:matrix(0.322807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322807,0.000000,0.000000,0.250000,0,0);}
.m7c_c00451{transform:matrix(0.322809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322809,0.000000,0.000000,0.250000,0,0);}
.md_c00451{transform:matrix(0.322904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322904,0.000000,0.000000,0.250000,0,0);}
.m5b_c00451{transform:matrix(0.323067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323067,0.000000,0.000000,0.250000,0,0);}
.ma2_c00451{transform:matrix(0.324167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324167,0.000000,0.000000,0.250000,0,0);}
.m22_c00451{transform:matrix(0.324506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324506,0.000000,0.000000,0.250000,0,0);}
.mc2_c00451{transform:matrix(0.324782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324782,0.000000,0.000000,0.250000,0,0);}
.m3b_c00451{transform:matrix(0.325300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325300,0.000000,0.000000,0.250000,0,0);}
.m19_c00451{transform:matrix(0.325974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325974,0.000000,0.000000,0.250000,0,0);}
.m78_c00451{transform:matrix(0.327586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327586,0.000000,0.000000,0.250000,0,0);}
.mc_c00451{transform:matrix(0.327760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327760,0.000000,0.000000,0.250000,0,0);}
.mb8_c00451{transform:matrix(0.327798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327798,0.000000,0.000000,0.250000,0,0);}
.m3_c00451{transform:matrix(0.328603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328603,0.000000,0.000000,0.250000,0,0);}
.m33_c00451{transform:matrix(0.329122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329122,0.000000,0.000000,0.250000,0,0);}
.m72_c00451{transform:matrix(0.330114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330114,0.000000,0.000000,0.250000,0,0);}
.maf_c00451{transform:matrix(0.330332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330332,0.000000,0.000000,0.250000,0,0);}
.m60_c00451{transform:matrix(0.331528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331528,0.000000,0.000000,0.250000,0,0);}
.m84_c00451{transform:matrix(0.332252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332252,0.000000,0.000000,0.250000,0,0);}
.mb4_c00451{transform:matrix(0.333172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333172,0.000000,0.000000,0.250000,0,0);}
.m94_c00451{transform:matrix(0.333323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333323,0.000000,0.000000,0.250000,0,0);}
.mf_c00451{transform:matrix(0.335295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335295,0.000000,0.000000,0.250000,0,0);}
.m6e_c00451{transform:matrix(0.335503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335503,0.000000,0.000000,0.250000,0,0);}
.m9e_c00451{transform:matrix(0.336101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336101,0.000000,0.000000,0.250000,0,0);}
.m8d_c00451{transform:matrix(0.336166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336166,0.000000,0.000000,0.250000,0,0);}
.m2e_c00451{transform:matrix(0.336760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336760,0.000000,0.000000,0.250000,0,0);}
.m20_c00451{transform:matrix(0.338082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338082,0.000000,0.000000,0.250000,0,0);}
.m7d_c00451{transform:matrix(0.338936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338936,0.000000,0.000000,0.250000,0,0);}
.m8f_c00451{transform:matrix(0.339063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339063,0.000000,0.000000,0.250000,0,0);}
.m6c_c00451{transform:matrix(0.339069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339069,0.000000,0.000000,0.250000,0,0);}
.m82_c00451{transform:matrix(0.339668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339668,0.000000,0.000000,0.250000,0,0);}
.ma9_c00451{transform:matrix(0.339737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339737,0.000000,0.000000,0.250000,0,0);}
.m41_c00451{transform:matrix(0.340618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340618,0.000000,0.000000,0.250000,0,0);}
.m45_c00451{transform:matrix(0.342072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342072,0.000000,0.000000,0.250000,0,0);}
.m24_c00451{transform:matrix(0.342534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342534,0.000000,0.000000,0.250000,0,0);}
.ma0_c00451{transform:matrix(0.342838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342838,0.000000,0.000000,0.250000,0,0);}
.m1a_c00451{transform:matrix(0.343588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343588,0.000000,0.000000,0.250000,0,0);}
.mc4_c00451{transform:matrix(0.344098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344098,0.000000,0.000000,0.250000,0,0);}
.m1f_c00451{transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);}
.m2b_c00451{transform:matrix(0.345669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345669,0.000000,0.000000,0.250000,0,0);}
.m77_c00451{transform:matrix(0.349617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349617,0.000000,0.000000,0.250000,0,0);}
.ma5_c00451{transform:matrix(0.350026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350026,0.000000,0.000000,0.250000,0,0);}
.m51_c00451{transform:matrix(0.351023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351023,0.000000,0.000000,0.250000,0,0);}
.m1d_c00451{transform:matrix(0.351901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351901,0.000000,0.000000,0.250000,0,0);}
.m34_c00451{transform:matrix(0.352000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352000,0.000000,0.000000,0.250000,0,0);}
.m14_c00451{transform:matrix(0.352033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352033,0.000000,0.000000,0.250000,0,0);}
.mb0_c00451{transform:matrix(0.353622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353622,0.000000,0.000000,0.250000,0,0);}
.m2f_c00451{transform:matrix(0.355252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355252,0.000000,0.000000,0.250000,0,0);}
.mbd_c00451{transform:matrix(0.356771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356771,0.000000,0.000000,0.250000,0,0);}
.mb_c00451{transform:matrix(0.357286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357286,0.000000,0.000000,0.250000,0,0);}
.m58_c00451{transform:matrix(0.357848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357848,0.000000,0.000000,0.250000,0,0);}
.m4b_c00451{transform:matrix(0.358140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358140,0.000000,0.000000,0.250000,0,0);}
.m76_c00451{transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);}
.m9_c00451{transform:matrix(0.368367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368367,0.000000,0.000000,0.250000,0,0);}
.m3d_c00451{transform:matrix(0.370938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370938,0.000000,0.000000,0.250000,0,0);}
.mad_c00451{transform:matrix(0.374893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374893,0.000000,0.000000,0.250000,0,0);}
.m28_c00451{transform:matrix(0.387076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387076,0.000000,0.000000,0.250000,0,0);}
.m2_c00451{transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);}
.mac_c00451{transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);}
.mb7_c00451{transform:matrix(0.405805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405805,0.000000,0.000000,0.250000,0,0);}
.m36_c00451{transform:matrix(0.407135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407135,0.000000,0.000000,0.250000,0,0);}
.v0_c00451{vertical-align:0.000000px;}
.v1_c00451{vertical-align:15.660216px;}
.ls16_c00451{letter-spacing:-2.882880px;}
.ls4_c00451{letter-spacing:-2.647267px;}
.ls14_c00451{letter-spacing:-2.095123px;}
.ls1_c00451{letter-spacing:0.000000px;}
.lsf_c00451{letter-spacing:1.081598px;}
.ls9_c00451{letter-spacing:1.558106px;}
.ls2_c00451{letter-spacing:1.634213px;}
.lsb_c00451{letter-spacing:1.910700px;}
.ls10_c00451{letter-spacing:2.019600px;}
.lsd_c00451{letter-spacing:2.110561px;}
.ls11_c00451{letter-spacing:2.594322px;}
.lsa_c00451{letter-spacing:3.346200px;}
.ls7_c00451{letter-spacing:3.524400px;}
.ls13_c00451{letter-spacing:3.702610px;}
.ls3_c00451{letter-spacing:3.781810px;}
.ls15_c00451{letter-spacing:3.841200px;}
.ls12_c00451{letter-spacing:3.851110px;}
.ls6_c00451{letter-spacing:4.088700px;}
.lse_c00451{letter-spacing:4.415400px;}
.lsc_c00451{letter-spacing:4.950000px;}
.ls0_c00451{letter-spacing:19.675656px;}
.ls5_c00451{letter-spacing:52.747398px;}
.ls8_c00451{letter-spacing:57.024198px;}
.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;}
}
.ws2_c00451{word-spacing:-20.443500px;}
.ws1_c00451{word-spacing:-18.909050px;}
.ws3_c00451{word-spacing:0.000000px;}
.ws0_c00451{word-spacing:5.597157px;}
._9_c00451{margin-left:-12.445488px;}
._8_c00451{margin-left:-2.151072px;}
._7_c00451{width:6.504608px;}
._6_c00451{width:7.714971px;}
._1_c00451{width:9.076628px;}
._0_c00451{width:13.084929px;}
._5_c00451{width:73.332666px;}
._4_c00451{width:75.894984px;}
._2_c00451{width:257.230908px;}
._3_c00451{width:385.487784px;}
.fc0_c00451{color:transparent;}
.fse_c00451{font-size:23.166000px;}
.fs0_c00451{font-size:27.720000px;}
.fs14_c00451{font-size:33.264000px;}
.fsb_c00451{font-size:38.214000px;}
.fs11_c00451{font-size:40.392000px;}
.fs4_c00451{font-size:52.747398px;}
.fs3_c00451{font-size:55.836198px;}
.fs9_c00451{font-size:57.024198px;}
.fs6_c00451{font-size:66.330000px;}
.fsa_c00451{font-size:66.924000px;}
.fs8_c00451{font-size:70.488000px;}
.fs5_c00451{font-size:72.864000px;}
.fs13_c00451{font-size:74.052198px;}
.fs17_c00451{font-size:74.844000px;}
.fs2_c00451{font-size:75.636198px;}
.fs15_c00451{font-size:76.824000px;}
.fs12_c00451{font-size:77.022198px;}
.fs10_c00451{font-size:78.804000px;}
.fs7_c00451{font-size:81.774000px;}
.fs16_c00451{font-size:82.368000px;}
.fsd_c00451{font-size:88.308000px;}
.fs1_c00451{font-size:90.288000px;}
.fsf_c00451{font-size:92.664000px;}
.fsc_c00451{font-size:99.000000px;}
.y0_c00451{bottom:0.000000px;}
.y1_c00451{bottom:76.500000px;}
.y2_c00451{bottom:143.541135px;}
.y20_c00451{bottom:159.579135px;}
.y1f_c00451{bottom:229.789935px;}
.y1e_c00451{bottom:257.940585px;}
.y1d_c00451{bottom:290.372985px;}
.y1b_c00451{bottom:322.097535px;}
.y1c_c00451{bottom:326.730735px;}
.y1a_c00451{bottom:354.529935px;}
.y19_c00451{bottom:386.605935px;}
.y18_c00451{bottom:403.713135px;}
.y17_c00451{bottom:419.033385px;}
.y14_c00451{bottom:450.752985px;}
.y16_c00451{bottom:451.470735px;}
.y15_c00451{bottom:454.673385px;}
.y12_c00451{bottom:482.828985px;}
.y13_c00451{bottom:483.903135px;}
.y11_c00451{bottom:516.335535px;}
.y10_c00451{bottom:578.344185px;}
.yf_c00451{bottom:610.776585px;}
.ye_c00451{bottom:642.857535px;}
.yd_c00451{bottom:674.933535px;}
.yc_c00451{bottom:707.004585px;}
.yb_c00451{bottom:739.793385px;}
.ya_c00451{bottom:771.874335px;}
.y9_c00451{bottom:804.306735px;}
.y8_c00451{bottom:836.734185px;}
.y7_c00451{bottom:869.166585px;}
.y5_c00451{bottom:901.247535px;}
.y6_c00451{bottom:904.098735px;}
.y4_c00451{bottom:933.323535px;}
.y3_c00451{bottom:1058.771385px;}
.h10_c00451{height:24.161414px;}
.h2_c00451{height:28.911094px;}
.h16_c00451{height:34.693313px;}
.h6_c00451{height:35.129767px;}
.ha_c00451{height:37.978116px;}
.hd_c00451{height:39.856008px;}
.h13_c00451{height:42.127594px;}
.h5_c00451{height:58.235410px;}
.h8_c00451{height:69.180117px;}
.hc_c00451{height:69.799641px;}
.h7_c00451{height:71.512031px;}
.h19_c00451{height:73.455293px;}
.h4_c00451{height:74.232792px;}
.h15_c00451{height:74.630731px;}
.h17_c00451{height:75.398555px;}
.h14_c00451{height:75.593075px;}
.h12_c00451{height:77.341816px;}
.h9_c00451{height:80.256709px;}
.h18_c00451{height:80.839688px;}
.hb_c00451{height:85.481241px;}
.hf_c00451{height:86.669473px;}
.h3_c00451{height:88.612734px;}
.h11_c00451{height:96.645656px;}
.he_c00451{height:99.773438px;}
.h1_c00451{height:1110.000000px;}
.h0_c00451{height:1263.000000px;}
.w1_c00451{width:775.500000px;}
.w0_c00451{width:892.500000px;}
.x0_c00451{left:0.000000px;}
.x2_c00451{left:54.763485px;}
.x1_c00451{left:58.500000px;}
.x62_c00451{left:96.175185px;}
.x66_c00451{left:97.566135px;}
.x17_c00451{left:98.585835px;}
.x38_c00451{left:99.729285px;}
.x4_c00451{left:100.798485px;}
.x44_c00451{left:102.080535px;}
.x56_c00451{left:109.500585px;}
.x5f_c00451{left:118.479885px;}
.xe_c00451{left:121.469685px;}
.x6d_c00451{left:128.973885px;}
.x18_c00451{left:131.102385px;}
.x20_c00451{left:132.280485px;}
.x45_c00451{left:133.379385px;}
.x6e_c00451{left:141.239985px;}
.x2e_c00451{left:144.680235px;}
.x57_c00451{left:151.674585px;}
.x5_c00451{left:154.402035px;}
.x21_c00451{left:164.242635px;}
.x46_c00451{left:165.316785px;}
.x3d_c00451{left:167.539335px;}
.x58_c00451{left:173.424885px;}
.x4f_c00451{left:175.825635px;}
.x59_c00451{left:184.562385px;}
.x67_c00451{left:185.700885px;}
.x6_c00451{left:187.482885px;}
.x78_c00451{left:195.021735px;}
.x7e_c00451{left:197.541285px;}
.xf_c00451{left:208.262985px;}
.x73_c00451{left:209.282685px;}
.x39_c00451{left:210.723135px;}
.x50_c00451{left:219.850935px;}
.x6b_c00451{left:228.028335px;}
.x79_c00451{left:229.290585px;}
.x29_c00451{left:230.463735px;}
.x5d_c00451{left:232.008135px;}
.x19_c00451{left:241.749735px;}
.x3a_c00451{left:243.447585px;}
.x68_c00451{left:251.377485px;}
.x10_c00451{left:253.119885px;}
.x22_c00451{left:262.970385px;}
.x3e_c00451{left:264.232635px;}
.x47_c00451{left:266.088885px;}
.x6f_c00451{left:273.291135px;}
.x1a_c00451{left:274.439535px;}
.x2f_c00451{left:276.993735px;}
.x48_c00451{left:284.745435px;}
.x5a_c00451{left:285.948285px;}
.x69_c00451{left:295.823535px;}
.x30_c00451{left:297.739185px;}
.x7_c00451{left:307.777785px;}
.x53_c00451{left:317.846085px;}
.x23_c00451{left:319.845885px;}
.x6c_c00451{left:329.077635px;}
.x31_c00451{left:330.468585px;}
.x8_c00451{left:341.442735px;}
.x70_c00451{left:351.550635px;}
.x24_c00451{left:352.951485px;}
.x1b_c00451{left:362.826735px;}
.x32_c00451{left:363.994935px;}
.x11_c00451{left:374.340435px;}
.x25_c00451{left:385.180935px;}
.x74_c00451{left:395.476935px;}
.x33_c00451{left:397.461885px;}
.x5b_c00451{left:407.733135px;}
.x3f_c00451{left:416.217435px;}
.x49_c00451{left:417.979635px;}
.x12_c00451{left:419.949735px;}
.x40_c00451{left:429.829935px;}
.x60_c00451{left:432.398985px;}
.x2a_c00451{left:441.596085px;}
.x63_c00451{left:450.545685px;}
.x7a_c00451{left:452.010885px;}
.x9_c00451{left:453.733485px;}
.x34_c00451{left:463.821585px;}
.x51_c00451{left:473.256285px;}
.x26_c00451{left:474.379935px;}
.x41_c00451{left:483.577035px;}
.xa_c00451{left:484.992735px;}
.x5e_c00451{left:495.174885px;}
.x42_c00451{left:496.605435px;}
.x61_c00451{left:497.872635px;}
.x7b_c00451{left:505.000635px;}
.x1c_c00451{left:507.272685px;}
.x54_c00451{left:508.331985px;}
.x3b_c00451{left:518.667585px;}
.x13_c00451{left:520.409985px;}
.x64_c00451{left:528.552735px;}
.x14_c00451{left:529.701135px;}
.x7c_c00451{left:538.462635px;}
.x35_c00451{left:540.076335px;}
.x4a_c00451{left:541.358385px;}
.x1d_c00451{left:551.090085px;}
.xb_c00451{left:562.341435px;}
.x27_c00451{left:572.875035px;}
.x36_c00451{left:583.438335px;}
.x4b_c00451{left:584.839185px;}
.x6a_c00451{left:586.235085px;}
.x75_c00451{left:594.061035px;}
.x15_c00451{left:596.011335px;}
.x5c_c00451{left:605.634135px;}
.x71_c00451{left:606.970635px;}
.x76_c00451{left:615.801435px;}
.x28_c00451{left:617.385435px;}
.xc_c00451{left:629.339685px;}
.x52_c00451{left:637.556685px;}
.x2b_c00451{left:638.774385px;}
.x1e_c00451{left:640.472235px;}
.x65_c00451{left:648.941685px;}
.x4c_c00451{left:650.005935px;}
.xd_c00451{left:660.707835px;}
.x16_c00451{left:661.945335px;}
.x77_c00451{left:671.177085px;}
.x1f_c00451{left:672.280935px;}
.x3c_c00451{left:682.443285px;}
.x2c_c00451{left:683.675835px;}
.x43_c00451{left:693.857985px;}
.x4d_c00451{left:695.100435px;}
.x7d_c00451{left:698.045685px;}
.x3_c00451{left:703.604535px;}
.x2d_c00451{left:705.683535px;}
.x55_c00451{left:716.731935px;}
.x4e_c00451{left:726.651735px;}
.x72_c00451{left:727.824885px;}
.x37_c00451{left:738.477285px;}
@media print{
.v0_c00451{vertical-align:0.000000pt;}
.v1_c00451{vertical-align:13.920192pt;}
.ls16_c00451{letter-spacing:-2.562560pt;}
.ls4_c00451{letter-spacing:-2.353126pt;}
.ls14_c00451{letter-spacing:-1.862331pt;}
.ls1_c00451{letter-spacing:0.000000pt;}
.lsf_c00451{letter-spacing:0.961420pt;}
.ls9_c00451{letter-spacing:1.384983pt;}
.ls2_c00451{letter-spacing:1.452634pt;}
.lsb_c00451{letter-spacing:1.698400pt;}
.ls10_c00451{letter-spacing:1.795200pt;}
.lsd_c00451{letter-spacing:1.876054pt;}
.ls11_c00451{letter-spacing:2.306064pt;}
.lsa_c00451{letter-spacing:2.974400pt;}
.ls7_c00451{letter-spacing:3.132800pt;}
.ls13_c00451{letter-spacing:3.291209pt;}
.ls3_c00451{letter-spacing:3.361609pt;}
.ls15_c00451{letter-spacing:3.414400pt;}
.ls12_c00451{letter-spacing:3.423209pt;}
.ls6_c00451{letter-spacing:3.634400pt;}
.lse_c00451{letter-spacing:3.924800pt;}
.lsc_c00451{letter-spacing:4.400000pt;}
.ls0_c00451{letter-spacing:17.489472pt;}
.ls5_c00451{letter-spacing:46.886576pt;}
.ls8_c00451{letter-spacing:50.688176pt;}
.ws2_c00451{word-spacing:-18.172000pt;}
.ws1_c00451{word-spacing:-16.808044pt;}
.ws3_c00451{word-spacing:0.000000pt;}
.ws0_c00451{word-spacing:4.975251pt;}
._9_c00451{margin-left:-11.062656pt;}
._8_c00451{margin-left:-1.912064pt;}
._7_c00451{width:5.781874pt;}
._6_c00451{width:6.857752pt;}
._1_c00451{width:8.068114pt;}
._0_c00451{width:11.631048pt;}
._5_c00451{width:65.184592pt;}
._4_c00451{width:67.462208pt;}
._2_c00451{width:228.649696pt;}
._3_c00451{width:342.655808pt;}
.fse_c00451{font-size:20.592000pt;}
.fs0_c00451{font-size:24.640000pt;}
.fs14_c00451{font-size:29.568000pt;}
.fsb_c00451{font-size:33.968000pt;}
.fs11_c00451{font-size:35.904000pt;}
.fs4_c00451{font-size:46.886576pt;}
.fs3_c00451{font-size:49.632176pt;}
.fs9_c00451{font-size:50.688176pt;}
.fs6_c00451{font-size:58.960000pt;}
.fsa_c00451{font-size:59.488000pt;}
.fs8_c00451{font-size:62.656000pt;}
.fs5_c00451{font-size:64.768000pt;}
.fs13_c00451{font-size:65.824176pt;}
.fs17_c00451{font-size:66.528000pt;}
.fs2_c00451{font-size:67.232176pt;}
.fs15_c00451{font-size:68.288000pt;}
.fs12_c00451{font-size:68.464176pt;}
.fs10_c00451{font-size:70.048000pt;}
.fs7_c00451{font-size:72.688000pt;}
.fs16_c00451{font-size:73.216000pt;}
.fsd_c00451{font-size:78.496000pt;}
.fs1_c00451{font-size:80.256000pt;}
.fsf_c00451{font-size:82.368000pt;}
.fsc_c00451{font-size:88.000000pt;}
.y0_c00451{bottom:0.000000pt;}
.y1_c00451{bottom:68.000000pt;}
.y2_c00451{bottom:127.592120pt;}
.y20_c00451{bottom:141.848120pt;}
.y1f_c00451{bottom:204.257720pt;}
.y1e_c00451{bottom:229.280520pt;}
.y1d_c00451{bottom:258.109320pt;}
.y1b_c00451{bottom:286.308920pt;}
.y1c_c00451{bottom:290.427320pt;}
.y1a_c00451{bottom:315.137720pt;}
.y19_c00451{bottom:343.649720pt;}
.y18_c00451{bottom:358.856120pt;}
.y17_c00451{bottom:372.474120pt;}
.y14_c00451{bottom:400.669320pt;}
.y16_c00451{bottom:401.307320pt;}
.y15_c00451{bottom:404.154120pt;}
.y12_c00451{bottom:429.181320pt;}
.y13_c00451{bottom:430.136120pt;}
.y11_c00451{bottom:458.964920pt;}
.y10_c00451{bottom:514.083720pt;}
.yf_c00451{bottom:542.912520pt;}
.ye_c00451{bottom:571.428920pt;}
.yd_c00451{bottom:599.940920pt;}
.yc_c00451{bottom:628.448520pt;}
.yb_c00451{bottom:657.594120pt;}
.ya_c00451{bottom:686.110520pt;}
.y9_c00451{bottom:714.939320pt;}
.y8_c00451{bottom:743.763720pt;}
.y7_c00451{bottom:772.592520pt;}
.y5_c00451{bottom:801.108920pt;}
.y6_c00451{bottom:803.643320pt;}
.y4_c00451{bottom:829.620920pt;}
.y3_c00451{bottom:941.130120pt;}
.h10_c00451{height:21.476813pt;}
.h2_c00451{height:25.698750pt;}
.h16_c00451{height:30.838500pt;}
.h6_c00451{height:31.226460pt;}
.ha_c00451{height:33.758325pt;}
.hd_c00451{height:35.427563pt;}
.h13_c00451{height:37.446750pt;}
.h5_c00451{height:51.764809pt;}
.h8_c00451{height:61.493438pt;}
.hc_c00451{height:62.044125pt;}
.h7_c00451{height:63.566250pt;}
.h19_c00451{height:65.293594pt;}
.h4_c00451{height:65.984704pt;}
.h15_c00451{height:66.338427pt;}
.h17_c00451{height:67.020938pt;}
.h14_c00451{height:67.193845pt;}
.h12_c00451{height:68.748281pt;}
.h9_c00451{height:71.339297pt;}
.h18_c00451{height:71.857500pt;}
.hb_c00451{height:75.983325pt;}
.hf_c00451{height:77.039531pt;}
.h3_c00451{height:78.766875pt;}
.h11_c00451{height:85.907250pt;}
.he_c00451{height:88.687500pt;}
.h1_c00451{height:986.666667pt;}
.h0_c00451{height:1122.666667pt;}
.w1_c00451{width:689.333333pt;}
.w0_c00451{width:793.333333pt;}
.x0_c00451{left:0.000000pt;}
.x2_c00451{left:48.678653pt;}
.x1_c00451{left:52.000000pt;}
.x62_c00451{left:85.489053pt;}
.x66_c00451{left:86.725453pt;}
.x17_c00451{left:87.631853pt;}
.x38_c00451{left:88.648253pt;}
.x4_c00451{left:89.598653pt;}
.x44_c00451{left:90.738253pt;}
.x56_c00451{left:97.333853pt;}
.x5f_c00451{left:105.315453pt;}
.xe_c00451{left:107.973053pt;}
.x6d_c00451{left:114.643453pt;}
.x18_c00451{left:116.535453pt;}
.x20_c00451{left:117.582653pt;}
.x45_c00451{left:118.559453pt;}
.x6e_c00451{left:125.546653pt;}
.x2e_c00451{left:128.604653pt;}
.x57_c00451{left:134.821853pt;}
.x5_c00451{left:137.246253pt;}
.x21_c00451{left:145.993453pt;}
.x46_c00451{left:146.948253pt;}
.x3d_c00451{left:148.923853pt;}
.x58_c00451{left:154.155453pt;}
.x4f_c00451{left:156.289453pt;}
.x59_c00451{left:164.055453pt;}
.x67_c00451{left:165.067453pt;}
.x6_c00451{left:166.651453pt;}
.x78_c00451{left:173.352653pt;}
.x7e_c00451{left:175.592253pt;}
.xf_c00451{left:185.122653pt;}
.x73_c00451{left:186.029053pt;}
.x39_c00451{left:187.309453pt;}
.x50_c00451{left:195.423053pt;}
.x6b_c00451{left:202.691853pt;}
.x79_c00451{left:203.813853pt;}
.x29_c00451{left:204.856653pt;}
.x5d_c00451{left:206.229453pt;}
.x19_c00451{left:214.888653pt;}
.x3a_c00451{left:216.397853pt;}
.x68_c00451{left:223.446653pt;}
.x10_c00451{left:224.995453pt;}
.x22_c00451{left:233.751453pt;}
.x3e_c00451{left:234.873453pt;}
.x47_c00451{left:236.523453pt;}
.x6f_c00451{left:242.925453pt;}
.x1a_c00451{left:243.946253pt;}
.x2f_c00451{left:246.216653pt;}
.x48_c00451{left:253.107053pt;}
.x5a_c00451{left:254.176253pt;}
.x69_c00451{left:262.954253pt;}
.x30_c00451{left:264.657053pt;}
.x7_c00451{left:273.580253pt;}
.x53_c00451{left:282.529853pt;}
.x23_c00451{left:284.307453pt;}
.x6c_c00451{left:292.513453pt;}
.x31_c00451{left:293.749853pt;}
.x8_c00451{left:303.504653pt;}
.x70_c00451{left:312.489453pt;}
.x24_c00451{left:313.734653pt;}
.x1b_c00451{left:322.512653pt;}
.x32_c00451{left:323.551053pt;}
.x11_c00451{left:332.747053pt;}
.x25_c00451{left:342.383053pt;}
.x74_c00451{left:351.535053pt;}
.x33_c00451{left:353.299453pt;}
.x5b_c00451{left:362.429453pt;}
.x3f_c00451{left:369.971053pt;}
.x49_c00451{left:371.537453pt;}
.x12_c00451{left:373.288653pt;}
.x40_c00451{left:382.071053pt;}
.x60_c00451{left:384.354653pt;}
.x2a_c00451{left:392.529853pt;}
.x63_c00451{left:400.485053pt;}
.x7a_c00451{left:401.787453pt;}
.x9_c00451{left:403.318653pt;}
.x34_c00451{left:412.285853pt;}
.x51_c00451{left:420.672253pt;}
.x26_c00451{left:421.671053pt;}
.x41_c00451{left:429.846253pt;}
.xa_c00451{left:431.104653pt;}
.x5e_c00451{left:440.155453pt;}
.x42_c00451{left:441.427053pt;}
.x61_c00451{left:442.553453pt;}
.x7b_c00451{left:448.889453pt;}
.x1c_c00451{left:450.909053pt;}
.x54_c00451{left:451.850653pt;}
.x3b_c00451{left:461.037853pt;}
.x13_c00451{left:462.586653pt;}
.x64_c00451{left:469.824653pt;}
.x14_c00451{left:470.845453pt;}
.x7c_c00451{left:478.633453pt;}
.x35_c00451{left:480.067853pt;}
.x4a_c00451{left:481.207453pt;}
.x1d_c00451{left:489.857853pt;}
.xb_c00451{left:499.859053pt;}
.x27_c00451{left:509.222253pt;}
.x36_c00451{left:518.611853pt;}
.x4b_c00451{left:519.857053pt;}
.x6a_c00451{left:521.097853pt;}
.x75_c00451{left:528.054253pt;}
.x15_c00451{left:529.787853pt;}
.x5c_c00451{left:538.341453pt;}
.x71_c00451{left:539.529453pt;}
.x76_c00451{left:547.379053pt;}
.x28_c00451{left:548.787053pt;}
.xc_c00451{left:559.413053pt;}
.x52_c00451{left:566.717053pt;}
.x2b_c00451{left:567.799453pt;}
.x1e_c00451{left:569.308653pt;}
.x65_c00451{left:576.837053pt;}
.x4c_c00451{left:577.783053pt;}
.xd_c00451{left:587.295853pt;}
.x16_c00451{left:588.395853pt;}
.x77_c00451{left:596.601853pt;}
.x1f_c00451{left:597.583053pt;}
.x3c_c00451{left:606.616253pt;}
.x2c_c00451{left:607.711853pt;}
.x43_c00451{left:616.762653pt;}
.x4d_c00451{left:617.867053pt;}
.x7d_c00451{left:620.485053pt;}
.x3_c00451{left:625.426253pt;}
.x2d_c00451{left:627.274253pt;}
.x55_c00451{left:637.095053pt;}
.x4e_c00451{left:645.912653pt;}
.x72_c00451{left:646.955453pt;}
.x37_c00451{left:656.424253pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_990ff3d293fb1c0d7bebb0f8.woff2')format("woff");}.ff1_c00452{font-family:ff1_c00452;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00452;src:url('chunks/assets/font_b868566442357373e036afac.woff2')format("woff");}.ff2_c00452{font-family:ff2_c00452;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00452;src:url('chunks/assets/font_4afc2813b7ce2d7d07585440.woff2')format("woff");}.ff3_c00452{font-family:ff3_c00452;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00452;src:url('chunks/assets/font_b346d99883632f090af842d6.woff2')format("woff");}.ff4_c00452{font-family:ff4_c00452;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00452;src:url('chunks/assets/font_95922d5b298eaaf6e7565adb.woff2')format("woff");}.ff5_c00452{font-family:ff5_c00452;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m79_c00452{transform:matrix(0.079269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.079269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.079269,0.000000,0.000000,0.250000,0,0);}
.m4_c00452{transform:matrix(0.084184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084184,0.000000,0.000000,0.250000,0,0);}
.m5_c00452{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);}
.m95_c00452{transform:matrix(0.116681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116681,0.000000,0.000000,0.250000,0,0);}
.m3_c00452{transform:matrix(0.123016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123016,0.000000,0.000000,0.250000,0,0);}
.m76_c00452{transform:matrix(0.145664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145664,0.000000,0.000000,0.250000,0,0);}
.m1f_c00452{transform:matrix(0.149219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149219,0.000000,0.000000,0.250000,0,0);}
.m20_c00452{transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);}
.m40_c00452{transform:matrix(0.169711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169711,0.000000,0.000000,0.250000,0,0);}
.m6_c00452{transform:matrix(0.170457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170457,0.000000,0.000000,0.250000,0,0);}
.m78_c00452{transform:matrix(0.189025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189025,0.000000,0.000000,0.250000,0,0);}
.m94_c00452{transform:matrix(0.210017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210017,0.000000,0.000000,0.250000,0,0);}
.m98_c00452{transform:matrix(0.224699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224699,0.000000,0.000000,0.250000,0,0);}
.m8d_c00452{transform:matrix(0.239270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239270,0.000000,0.000000,0.250000,0,0);}
.mb2_c00452{transform:matrix(0.241379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241379,0.000000,0.000000,0.250000,0,0);}
.m0_c00452{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00452{transform:matrix(0.250646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250646,0.000000,0.000000,0.250000,0,0);}
.m26_c00452{transform:matrix(0.252490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252490,0.000000,0.000000,0.250000,0,0);}
.m86_c00452{transform:matrix(0.252975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252975,0.000000,0.000000,0.250000,0,0);}
.mb0_c00452{transform:matrix(0.253342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253342,0.000000,0.000000,0.250000,0,0);}
.m99_c00452{transform:matrix(0.253670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253670,0.000000,0.000000,0.250000,0,0);}
.m85_c00452{transform:matrix(0.257206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257206,0.000000,0.000000,0.250000,0,0);}
.m70_c00452{transform:matrix(0.260377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260377,0.000000,0.000000,0.250000,0,0);}
.m46_c00452{transform:matrix(0.260634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260634,0.000000,0.000000,0.250000,0,0);}
.m50_c00452{transform:matrix(0.261166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261166,0.000000,0.000000,0.250000,0,0);}
.m3e_c00452{transform:matrix(0.261909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261909,0.000000,0.000000,0.250000,0,0);}
.m8e_c00452{transform:matrix(0.262222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262222,0.000000,0.000000,0.250000,0,0);}
.mc3_c00452{transform:matrix(0.262478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262478,0.000000,0.000000,0.250000,0,0);}
.mc6_c00452{transform:matrix(0.262610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262610,0.000000,0.000000,0.250000,0,0);}
.m92_c00452{transform:matrix(0.262891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262891,0.000000,0.000000,0.250000,0,0);}
.m59_c00452{transform:matrix(0.264753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264753,0.000000,0.000000,0.250000,0,0);}
.m18_c00452{transform:matrix(0.265460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265460,0.000000,0.000000,0.250000,0,0);}
.m27_c00452{transform:matrix(0.266617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266617,0.000000,0.000000,0.250000,0,0);}
.m96_c00452{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m36_c00452{transform:matrix(0.269567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269567,0.000000,0.000000,0.250000,0,0);}
.md_c00452{transform:matrix(0.270287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270287,0.000000,0.000000,0.250000,0,0);}
.m47_c00452{transform:matrix(0.271545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271545,0.000000,0.000000,0.250000,0,0);}
.m28_c00452{transform:matrix(0.272206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272206,0.000000,0.000000,0.250000,0,0);}
.m5b_c00452{transform:matrix(0.272549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272549,0.000000,0.000000,0.250000,0,0);}
.ma9_c00452{transform:matrix(0.272651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272651,0.000000,0.000000,0.250000,0,0);}
.m3f_c00452{transform:matrix(0.272665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272665,0.000000,0.000000,0.250000,0,0);}
.m2_c00452{transform:matrix(0.273274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273274,0.000000,0.000000,0.250000,0,0);}
.m5e_c00452{transform:matrix(0.275114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275114,0.000000,0.000000,0.250000,0,0);}
.m51_c00452{transform:matrix(0.275764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275764,0.000000,0.000000,0.250000,0,0);}
.ma7_c00452{transform:matrix(0.276071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276071,0.000000,0.000000,0.250000,0,0);}
.m72_c00452{transform:matrix(0.276158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276158,0.000000,0.000000,0.250000,0,0);}
.m54_c00452{transform:matrix(0.276313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276313,0.000000,0.000000,0.250000,0,0);}
.m84_c00452{transform:matrix(0.277515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277515,0.000000,0.000000,0.250000,0,0);}
.m12_c00452{transform:matrix(0.278154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278154,0.000000,0.000000,0.250000,0,0);}
.m60_c00452{transform:matrix(0.279184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279184,0.000000,0.000000,0.250000,0,0);}
.m42_c00452{transform:matrix(0.279646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279646,0.000000,0.000000,0.250000,0,0);}
.m8c_c00452{transform:matrix(0.279941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279941,0.000000,0.000000,0.250000,0,0);}
.m77_c00452{transform:matrix(0.280350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280350,0.000000,0.000000,0.250000,0,0);}
.m9_c00452{transform:matrix(0.280667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280667,0.000000,0.000000,0.250000,0,0);}
.m9e_c00452{transform:matrix(0.284391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284391,0.000000,0.000000,0.250000,0,0);}
.m29_c00452{transform:matrix(0.284841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284841,0.000000,0.000000,0.250000,0,0);}
.mc1_c00452{transform:matrix(0.285535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285535,0.000000,0.000000,0.250000,0,0);}
.m5f_c00452{transform:matrix(0.286379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286379,0.000000,0.000000,0.250000,0,0);}
.m53_c00452{transform:matrix(0.287217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287217,0.000000,0.000000,0.250000,0,0);}
.ma5_c00452{transform:matrix(0.287608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287608,0.000000,0.000000,0.250000,0,0);}
.m49_c00452{transform:matrix(0.287913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287913,0.000000,0.000000,0.250000,0,0);}
.m6c_c00452{transform:matrix(0.288022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288022,0.000000,0.000000,0.250000,0,0);}
.mbf_c00452{transform:matrix(0.288737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288737,0.000000,0.000000,0.250000,0,0);}
.m2b_c00452{transform:matrix(0.288912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288912,0.000000,0.000000,0.250000,0,0);}
.m87_c00452{transform:matrix(0.290225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290225,0.000000,0.000000,0.250000,0,0);}
.m69_c00452{transform:matrix(0.290439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290439,0.000000,0.000000,0.250000,0,0);}
.m6f_c00452{transform:matrix(0.290885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290885,0.000000,0.000000,0.250000,0,0);}
.mbc_c00452{transform:matrix(0.290976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290976,0.000000,0.000000,0.250000,0,0);}
.m6a_c00452{transform:matrix(0.291025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291025,0.000000,0.000000,0.250000,0,0);}
.m1_c00452{transform:matrix(0.292031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292031,0.000000,0.000000,0.250000,0,0);}
.maf_c00452{transform:matrix(0.292206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292206,0.000000,0.000000,0.250000,0,0);}
.m19_c00452{transform:matrix(0.292579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292579,0.000000,0.000000,0.250000,0,0);}
.m83_c00452{transform:matrix(0.292678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292678,0.000000,0.000000,0.250000,0,0);}
.mc_c00452{transform:matrix(0.294388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294388,0.000000,0.000000,0.250000,0,0);}
.m4e_c00452{transform:matrix(0.295857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295857,0.000000,0.000000,0.250000,0,0);}
.m9b_c00452{transform:matrix(0.296265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296265,0.000000,0.000000,0.250000,0,0);}
.ma0_c00452{transform:matrix(0.297299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297299,0.000000,0.000000,0.250000,0,0);}
.mb6_c00452{transform:matrix(0.297621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297621,0.000000,0.000000,0.250000,0,0);}
.m7c_c00452{transform:matrix(0.298862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298862,0.000000,0.000000,0.250000,0,0);}
.m1c_c00452{transform:matrix(0.299346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299346,0.000000,0.000000,0.250000,0,0);}
.m66_c00452{transform:matrix(0.299633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299633,0.000000,0.000000,0.250000,0,0);}
.m39_c00452{transform:matrix(0.300169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300169,0.000000,0.000000,0.250000,0,0);}
.m64_c00452{transform:matrix(0.300435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300435,0.000000,0.000000,0.250000,0,0);}
.mad_c00452{transform:matrix(0.301265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301265,0.000000,0.000000,0.250000,0,0);}
.mc5_c00452{transform:matrix(0.301366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301366,0.000000,0.000000,0.250000,0,0);}
.m2e_c00452{transform:matrix(0.301692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301692,0.000000,0.000000,0.250000,0,0);}
.m5a_c00452{transform:matrix(0.301716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301716,0.000000,0.000000,0.250000,0,0);}
.mb4_c00452{transform:matrix(0.301760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301760,0.000000,0.000000,0.250000,0,0);}
.mf_c00452{transform:matrix(0.301989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301989,0.000000,0.000000,0.250000,0,0);}
.m7d_c00452{transform:matrix(0.302505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302505,0.000000,0.000000,0.250000,0,0);}
.m71_c00452{transform:matrix(0.302944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302944,0.000000,0.000000,0.250000,0,0);}
.m4b_c00452{transform:matrix(0.303209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303209,0.000000,0.000000,0.250000,0,0);}
.m9c_c00452{transform:matrix(0.303387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303387,0.000000,0.000000,0.250000,0,0);}
.mb_c00452{transform:matrix(0.304022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304022,0.000000,0.000000,0.250000,0,0);}
.m10_c00452{transform:matrix(0.304606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304606,0.000000,0.000000,0.250000,0,0);}
.m4a_c00452{transform:matrix(0.304785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304785,0.000000,0.000000,0.250000,0,0);}
.m9f_c00452{transform:matrix(0.304814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304814,0.000000,0.000000,0.250000,0,0);}
.m2c_c00452{transform:matrix(0.305129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305129,0.000000,0.000000,0.250000,0,0);}
.mbb_c00452{transform:matrix(0.305229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305229,0.000000,0.000000,0.250000,0,0);}
.m2a_c00452{transform:matrix(0.305595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305595,0.000000,0.000000,0.250000,0,0);}
.m3d_c00452{transform:matrix(0.305914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305914,0.000000,0.000000,0.250000,0,0);}
.m5c_c00452{transform:matrix(0.305948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305948,0.000000,0.000000,0.250000,0,0);}
.m82_c00452{transform:matrix(0.306485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306485,0.000000,0.000000,0.250000,0,0);}
.m8b_c00452{transform:matrix(0.306553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306553,0.000000,0.000000,0.250000,0,0);}
.m22_c00452{transform:matrix(0.306861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306861,0.000000,0.000000,0.250000,0,0);}
.mbd_c00452{transform:matrix(0.307169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307169,0.000000,0.000000,0.250000,0,0);}
.m61_c00452{transform:matrix(0.307401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307401,0.000000,0.000000,0.250000,0,0);}
.mc0_c00452{transform:matrix(0.307451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307451,0.000000,0.000000,0.250000,0,0);}
.m16_c00452{transform:matrix(0.308938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308938,0.000000,0.000000,0.250000,0,0);}
.m6b_c00452{transform:matrix(0.309369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309369,0.000000,0.000000,0.250000,0,0);}
.m4c_c00452{transform:matrix(0.309811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309811,0.000000,0.000000,0.250000,0,0);}
.mc2_c00452{transform:matrix(0.309869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309869,0.000000,0.000000,0.250000,0,0);}
.mb9_c00452{transform:matrix(0.310126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310126,0.000000,0.000000,0.250000,0,0);}
.m9a_c00452{transform:matrix(0.310160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310160,0.000000,0.000000,0.250000,0,0);}
.mae_c00452{transform:matrix(0.310266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310266,0.000000,0.000000,0.250000,0,0);}
.m2f_c00452{transform:matrix(0.310441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310441,0.000000,0.000000,0.250000,0,0);}
.mb5_c00452{transform:matrix(0.310733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310733,0.000000,0.000000,0.250000,0,0);}
.m3a_c00452{transform:matrix(0.311076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311076,0.000000,0.000000,0.250000,0,0);}
.m9d_c00452{transform:matrix(0.311190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311190,0.000000,0.000000,0.250000,0,0);}
.m35_c00452{transform:matrix(0.311455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311455,0.000000,0.000000,0.250000,0,0);}
.m1e_c00452{transform:matrix(0.311924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311924,0.000000,0.000000,0.250000,0,0);}
.m24_c00452{transform:matrix(0.312252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312252,0.000000,0.000000,0.250000,0,0);}
.m30_c00452{transform:matrix(0.312439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312439,0.000000,0.000000,0.250000,0,0);}
.m3c_c00452{transform:matrix(0.312633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312633,0.000000,0.000000,0.250000,0,0);}
.ma8_c00452{transform:matrix(0.312645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312645,0.000000,0.000000,0.250000,0,0);}
.mb1_c00452{transform:matrix(0.312756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312756,0.000000,0.000000,0.250000,0,0);}
.m7f_c00452{transform:matrix(0.313143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313143,0.000000,0.000000,0.250000,0,0);}
.m44_c00452{transform:matrix(0.313710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313710,0.000000,0.000000,0.250000,0,0);}
.m15_c00452{transform:matrix(0.314885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314885,0.000000,0.000000,0.250000,0,0);}
.m4d_c00452{transform:matrix(0.314899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314899,0.000000,0.000000,0.250000,0,0);}
.m37_c00452{transform:matrix(0.314953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314953,0.000000,0.000000,0.250000,0,0);}
.m17_c00452{transform:matrix(0.315002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315002,0.000000,0.000000,0.250000,0,0);}
.m5d_c00452{transform:matrix(0.315728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315728,0.000000,0.000000,0.250000,0,0);}
.ma4_c00452{transform:matrix(0.317330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317330,0.000000,0.000000,0.250000,0,0);}
.m8_c00452{transform:matrix(0.317681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317681,0.000000,0.000000,0.250000,0,0);}
.mb8_c00452{transform:matrix(0.318623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318623,0.000000,0.000000,0.250000,0,0);}
.m91_c00452{transform:matrix(0.319365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319365,0.000000,0.000000,0.250000,0,0);}
.m1b_c00452{transform:matrix(0.319490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319490,0.000000,0.000000,0.250000,0,0);}
.m4f_c00452{transform:matrix(0.320080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320080,0.000000,0.000000,0.250000,0,0);}
.m1d_c00452{transform:matrix(0.320635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320635,0.000000,0.000000,0.250000,0,0);}
.m34_c00452{transform:matrix(0.321105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321105,0.000000,0.000000,0.250000,0,0);}
.mc7_c00452{transform:matrix(0.321302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321302,0.000000,0.000000,0.250000,0,0);}
.mb7_c00452{transform:matrix(0.321519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321519,0.000000,0.000000,0.250000,0,0);}
.m6e_c00452{transform:matrix(0.322176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322176,0.000000,0.000000,0.250000,0,0);}
.m7a_c00452{transform:matrix(0.322396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322396,0.000000,0.000000,0.250000,0,0);}
.m80_c00452{transform:matrix(0.323898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323898,0.000000,0.000000,0.250000,0,0);}
.ma2_c00452{transform:matrix(0.324607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324607,0.000000,0.000000,0.250000,0,0);}
.m2d_c00452{transform:matrix(0.326477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326477,0.000000,0.000000,0.250000,0,0);}
.m62_c00452{transform:matrix(0.326524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326524,0.000000,0.000000,0.250000,0,0);}
.m67_c00452{transform:matrix(0.326931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326931,0.000000,0.000000,0.250000,0,0);}
.maa_c00452{transform:matrix(0.327353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327353,0.000000,0.000000,0.250000,0,0);}
.m57_c00452{transform:matrix(0.327715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327715,0.000000,0.000000,0.250000,0,0);}
.m31_c00452{transform:matrix(0.328274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328274,0.000000,0.000000,0.250000,0,0);}
.m52_c00452{transform:matrix(0.328361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328361,0.000000,0.000000,0.250000,0,0);}
.m33_c00452{transform:matrix(0.329190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329190,0.000000,0.000000,0.250000,0,0);}
.m63_c00452{transform:matrix(0.330516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330516,0.000000,0.000000,0.250000,0,0);}
.m55_c00452{transform:matrix(0.330541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330541,0.000000,0.000000,0.250000,0,0);}
.m1a_c00452{transform:matrix(0.330764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330764,0.000000,0.000000,0.250000,0,0);}
.m88_c00452{transform:matrix(0.331664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331664,0.000000,0.000000,0.250000,0,0);}
.m14_c00452{transform:matrix(0.331909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331909,0.000000,0.000000,0.250000,0,0);}
.m38_c00452{transform:matrix(0.334152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334152,0.000000,0.000000,0.250000,0,0);}
.m32_c00452{transform:matrix(0.334206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334206,0.000000,0.000000,0.250000,0,0);}
.m89_c00452{transform:matrix(0.334371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334371,0.000000,0.000000,0.250000,0,0);}
.ma1_c00452{transform:matrix(0.335485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335485,0.000000,0.000000,0.250000,0,0);}
.m41_c00452{transform:matrix(0.336062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336062,0.000000,0.000000,0.250000,0,0);}
.m23_c00452{transform:matrix(0.336128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336128,0.000000,0.000000,0.250000,0,0);}
.m7e_c00452{transform:matrix(0.336250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336250,0.000000,0.000000,0.250000,0,0);}
.m65_c00452{transform:matrix(0.336988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336988,0.000000,0.000000,0.250000,0,0);}
.m75_c00452{transform:matrix(0.337522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337522,0.000000,0.000000,0.250000,0,0);}
.m56_c00452{transform:matrix(0.337919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337919,0.000000,0.000000,0.250000,0,0);}
.mba_c00452{transform:matrix(0.338311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338311,0.000000,0.000000,0.250000,0,0);}
.m97_c00452{transform:matrix(0.339341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339341,0.000000,0.000000,0.250000,0,0);}
.m58_c00452{transform:matrix(0.341746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341746,0.000000,0.000000,0.250000,0,0);}
.m43_c00452{transform:matrix(0.341839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341839,0.000000,0.000000,0.250000,0,0);}
.m11_c00452{transform:matrix(0.341843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341843,0.000000,0.000000,0.250000,0,0);}
.m7_c00452{transform:matrix(0.342399,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342399,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342399,0.000000,0.000000,0.250000,0,0);}
.mb3_c00452{transform:matrix(0.343708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343708,0.000000,0.000000,0.250000,0,0);}
.m7b_c00452{transform:matrix(0.344040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344040,0.000000,0.000000,0.250000,0,0);}
.m48_c00452{transform:matrix(0.344523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344523,0.000000,0.000000,0.250000,0,0);}
.m73_c00452{transform:matrix(0.345192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345192,0.000000,0.000000,0.250000,0,0);}
.mab_c00452{transform:matrix(0.345543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345543,0.000000,0.000000,0.250000,0,0);}
.m90_c00452{transform:matrix(0.345959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345959,0.000000,0.000000,0.250000,0,0);}
.ma6_c00452{transform:matrix(0.347071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347071,0.000000,0.000000,0.250000,0,0);}
.mac_c00452{transform:matrix(0.348054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348054,0.000000,0.000000,0.250000,0,0);}
.m25_c00452{transform:matrix(0.348169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348169,0.000000,0.000000,0.250000,0,0);}
.m74_c00452{transform:matrix(0.348289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348289,0.000000,0.000000,0.250000,0,0);}
.ma3_c00452{transform:matrix(0.349800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349800,0.000000,0.000000,0.250000,0,0);}
.m21_c00452{transform:matrix(0.350178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350178,0.000000,0.000000,0.250000,0,0);}
.m3b_c00452{transform:matrix(0.352423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352423,0.000000,0.000000,0.250000,0,0);}
.ma_c00452{transform:matrix(0.354500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354500,0.000000,0.000000,0.250000,0,0);}
.mbe_c00452{transform:matrix(0.357264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357264,0.000000,0.000000,0.250000,0,0);}
.m13_c00452{transform:matrix(0.358064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358064,0.000000,0.000000,0.250000,0,0);}
.m68_c00452{transform:matrix(0.358108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358108,0.000000,0.000000,0.250000,0,0);}
.mc4_c00452{transform:matrix(0.360830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360830,0.000000,0.000000,0.250000,0,0);}
.m93_c00452{transform:matrix(0.362126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362126,0.000000,0.000000,0.250000,0,0);}
.mc8_c00452{transform:matrix(0.363109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363109,0.000000,0.000000,0.250000,0,0);}
.m8f_c00452{transform:matrix(0.363454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363454,0.000000,0.000000,0.250000,0,0);}
.m45_c00452{transform:matrix(0.368735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368735,0.000000,0.000000,0.250000,0,0);}
.me_c00452{transform:matrix(0.390139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390139,0.000000,0.000000,0.250000,0,0);}
.m81_c00452{transform:matrix(0.402725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402725,0.000000,0.000000,0.250000,0,0);}
.m8a_c00452{transform:matrix(0.409017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409017,0.000000,0.000000,0.250000,0,0);}
.v1_c00452{vertical-align:-22.770000px;}
.v0_c00452{vertical-align:0.000000px;}
.ls13_c00452{letter-spacing:-2.626477px;}
.ls6_c00452{letter-spacing:-2.079000px;}
.ls1a_c00452{letter-spacing:-1.643424px;}
.ls16_c00452{letter-spacing:-1.288980px;}
.lsb_c00452{letter-spacing:-0.075042px;}
.ls7_c00452{letter-spacing:0.000000px;}
.ls3_c00452{letter-spacing:0.085338px;}
.ls12_c00452{letter-spacing:0.405228px;}
.ls17_c00452{letter-spacing:1.515852px;}
.ls1_c00452{letter-spacing:1.872288px;}
.lse_c00452{letter-spacing:2.145949px;}
.lsf_c00452{letter-spacing:2.401350px;}
.ls15_c00452{letter-spacing:2.593810px;}
.ls8_c00452{letter-spacing:3.084234px;}
.ls19_c00452{letter-spacing:3.326400px;}
.lsa_c00452{letter-spacing:3.354386px;}
.lsc_c00452{letter-spacing:3.587017px;}
.ls11_c00452{letter-spacing:3.603610px;}
.ls14_c00452{letter-spacing:3.643200px;}
.ls18_c00452{letter-spacing:3.663000px;}
.ls4_c00452{letter-spacing:3.752110px;}
.lsd_c00452{letter-spacing:3.989700px;}
.ls0_c00452{letter-spacing:16.383906px;}
.ls2_c00452{letter-spacing:30.690000px;}
.ls9_c00452{letter-spacing:57.024198px;}
.ls10_c00452{letter-spacing:58.449798px;}
.ls5_c00452{letter-spacing:59.875398px;}
.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;}
}
.ws1_c00452{word-spacing:-18.760550px;}
.ws2_c00452{word-spacing:0.000000px;}
.ws0_c00452{word-spacing:3.752183px;}
._a_c00452{margin-left:-10.657152px;}
._8_c00452{margin-left:-9.097308px;}
._e_c00452{margin-left:-6.828910px;}
._0_c00452{margin-left:-4.502601px;}
._4_c00452{width:1.575783px;}
._9_c00452{width:6.888420px;}
._c_c00452{width:8.577756px;}
._3_c00452{width:10.130769px;}
._1_c00452{width:14.182641px;}
._2_c00452{width:15.309085px;}
._7_c00452{width:22.288371px;}
._6_c00452{width:25.439423px;}
._d_c00452{width:29.825928px;}
._5_c00452{width:42.473884px;}
._b_c00452{width:52.823232px;}
._f_c00452{width:54.192600px;}
.fc0_c00452{color:transparent;}
.fsf_c00452{font-size:14.454198px;}
.fse_c00452{font-size:23.958000px;}
.fs17_c00452{font-size:27.720000px;}
.fsd_c00452{font-size:36.828000px;}
.fs6_c00452{font-size:39.402000px;}
.fs11_c00452{font-size:47.520000px;}
.fs14_c00452{font-size:49.500000px;}
.fsc_c00452{font-size:51.876198px;}
.fs4_c00452{font-size:57.024198px;}
.fsa_c00452{font-size:58.449798px;}
.fs3_c00452{font-size:59.400000px;}
.fs2_c00452{font-size:59.875398px;}
.fs10_c00452{font-size:60.588000px;}
.fs12_c00452{font-size:66.330000px;}
.fs16_c00452{font-size:66.528000px;}
.fs13_c00452{font-size:70.092198px;}
.fs9_c00452{font-size:70.884000px;}
.fsb_c00452{font-size:72.072198px;}
.fs5_c00452{font-size:72.864000px;}
.fs15_c00452{font-size:73.260000px;}
.fs1_c00452{font-size:75.042198px;}
.fs8_c00452{font-size:78.606198px;}
.fs7_c00452{font-size:79.794000px;}
.fs0_c00452{font-size:85.338000px;}
.y0_c00452{bottom:0.000000px;}
.y1f_c00452{bottom:14.524335px;}
.y1_c00452{bottom:76.500000px;}
.y1e_c00452{bottom:116.454735px;}
.y1c_c00452{bottom:149.599935px;}
.y1d_c00452{bottom:155.297385px;}
.y1b_c00452{bottom:186.665535px;}
.y1a_c00452{bottom:222.661935px;}
.y19_c00452{bottom:255.094335px;}
.y18_c00452{bottom:287.170335px;}
.y16_c00452{bottom:314.251785px;}
.y15_c00452{bottom:318.533535px;}
.y14_c00452{bottom:319.241385px;}
.y13_c00452{bottom:352.030185px;}
.y12_c00452{bottom:384.106185px;}
.y11_c00452{bottom:416.543535px;}
.y17_c00452{bottom:462.157785px;}
.y10_c00452{bottom:512.058735px;}
.yf_c00452{bottom:544.129785px;}
.ye_c00452{bottom:576.562185px;}
.yd_c00452{bottom:608.994585px;}
.yc_c00452{bottom:641.075535px;}
.yb_c00452{bottom:673.507935px;}
.ya_c00452{bottom:705.578985px;}
.y9_c00452{bottom:736.942185px;}
.y8_c00452{bottom:769.730985px;}
.y7_c00452{bottom:801.811935px;}
.y6_c00452{bottom:834.244335px;}
.y5_c00452{bottom:865.958985px;}
.y4_c00452{bottom:898.039935px;}
.y3_c00452{bottom:929.046735px;}
.y2_c00452{bottom:1060.553385px;}
.h10_c00452{height:14.186005px;}
.h17_c00452{height:28.911094px;}
.h6_c00452{height:37.978116px;}
.hf_c00452{height:38.410453px;}
.h8_c00452{height:38.670908px;}
.hc_c00452{height:38.927565px;}
.h4_c00452{height:39.877015px;}
.he_c00452{height:50.913651px;}
.h14_c00452{height:51.626953px;}
.h5_c00452{height:58.297852px;}
.h11_c00452{height:63.191391px;}
.h12_c00452{height:69.180117px;}
.h16_c00452{height:69.386625px;}
.hb_c00452{height:69.568770px;}
.hd_c00452{height:70.734921px;}
.h7_c00452{height:71.512031px;}
.h15_c00452{height:71.900684px;}
.h13_c00452{height:73.103972px;}
.h3_c00452{height:73.649813px;}
.ha_c00452{height:77.147685px;}
.h9_c00452{height:80.417391px;}
.h2_c00452{height:83.754580px;}
.h1_c00452{height:1110.000000px;}
.h0_c00452{height:1263.000000px;}
.w1_c00452{width:775.500000px;}
.w0_c00452{width:892.500000px;}
.x0_c00452{left:0.000000px;}
.x1_c00452{left:58.500000px;}
.x78_c00452{left:84.805035px;}
.x61_c00452{left:86.725635px;}
.x24_c00452{left:87.968085px;}
.x1c_c00452{left:89.032335px;}
.x3_c00452{left:91.606335px;}
.x80_c00452{left:95.853435px;}
.x88_c00452{left:106.510785px;}
.x25_c00452{left:119.192685px;}
.x3e_c00452{left:125.444535px;}
.x67_c00452{left:129.840135px;}
.x26_c00452{left:131.102385px;}
.x35_c00452{left:133.305135px;}
.x4a_c00452{left:134.507985px;}
.x5d_c00452{left:140.269785px;}
.x12_c00452{left:143.774385px;}
.x62_c00452{left:151.818135px;}
.x1d_c00452{left:154.109985px;}
.x45_c00452{left:155.896935px;}
.x2e_c00452{left:163.925835px;}
.x36_c00452{left:166.371135px;}
.x7c_c00452{left:173.221935px;}
.x13_c00452{left:175.790985px;}
.x4_c00452{left:177.246285px;}
.x37_c00452{left:178.652085px;}
.x79_c00452{left:183.136785px;}
.x1e_c00452{left:185.275185px;}
.x46_c00452{left:186.735435px;}
.x90_c00452{left:189.839085px;}
.x5_c00452{left:208.124385px;}
.x14_c00452{left:209.218335px;}
.x84_c00452{left:216.277035px;}
.x5a_c00452{left:217.875885px;}
.x2f_c00452{left:220.261785px;}
.x7d_c00452{left:228.726285px;}
.x51_c00452{left:230.008335px;}
.x31_c00452{left:232.800135px;}
.x6_c00452{left:238.423335px;}
.x8d_c00452{left:239.992485px;}
.x63_c00452{left:241.071585px;}
.x89_c00452{left:249.224235px;}
.x81_c00452{left:251.332935px;}
.x32_c00452{left:253.901985px;}
.x5b_c00452{left:262.970385px;}
.x3f_c00452{left:264.534585px;}
.x7_c00452{left:272.281335px;}
.x27_c00452{left:274.795935px;}
.x68_c00452{left:284.126685px;}
.x8_c00452{left:285.963135px;}
.x33_c00452{left:286.992735px;}
.x9_c00452{left:291.398235px;}
.x85_c00452{left:294.011835px;}
.x7e_c00452{left:295.729485px;}
.x15_c00452{left:297.605535px;}
.x8e_c00452{left:305.575035px;}
.x82_c00452{left:317.311485px;}
.x69_c00452{left:318.410385px;}
.x38_c00452{left:319.420185px;}
.x6e_c00452{left:329.092485px;}
.x47_c00452{left:330.750735px;}
.x4b_c00452{left:332.270385px;}
.x40_c00452{left:333.275235px;}
.x86_c00452{left:338.883585px;}
.x8a_c00452{left:340.462635px;}
.x8f_c00452{left:350.387385px;}
.x5c_c00452{left:351.882285px;}
.x39_c00452{left:353.129685px;}
.x5e_c00452{left:361.371435px;}
.x7a_c00452{left:362.930685px;}
.x34_c00452{left:364.935435px;}
.xa_c00452{left:375.053235px;}
.x6f_c00452{left:383.794935px;}
.x16_c00452{left:384.854235px;}
.x28_c00452{left:386.393685px;}
.x52_c00452{left:396.457035px;}
.x5f_c00452{left:406.609485px;}
.x1f_c00452{left:408.515235px;}
.x29_c00452{left:417.643035px;}
.x48_c00452{left:419.137935px;}
.xb_c00452{left:420.697185px;}
.x4e_c00452{left:429.062685px;}
.x41_c00452{left:430.319985px;}
.x7f_c00452{left:438.739935px;}
.x6a_c00452{left:440.640735px;}
.xc_c00452{left:442.036635px;}
.x8b_c00452{left:450.273435px;}
.x4f_c00452{left:451.674285px;}
.x3a_c00452{left:453.698835px;}
.x56_c00452{left:461.470335px;}
.x70_c00452{left:463.311735px;}
.x20_c00452{left:464.405685px;}
.x71_c00452{left:473.761185px;}
.x42_c00452{left:475.201635px;}
.x8c_c00452{left:483.136485px;}
.x2a_c00452{left:486.259935px;}
.x50_c00452{left:494.625435px;}
.x17_c00452{left:497.293485px;}
.x57_c00452{left:506.371785px;}
.x49_c00452{left:507.643935px;}
.x53_c00452{left:518.217135px;}
.x64_c00452{left:519.622935px;}
.x18_c00452{left:529.359585px;}
.x2b_c00452{left:531.131685px;}
.xd_c00452{left:541.145535px;}
.x65_c00452{left:550.119885px;}
.x43_c00452{left:552.124635px;}
.x54_c00452{left:561.801885px;}
.x6b_c00452{left:571.815735px;}
.x19_c00452{left:574.142235px;}
.x4c_c00452{left:575.815335px;}
.x2c_c00452{left:583.740285px;}
.xe_c00452{left:585.616335px;}
.x21_c00452{left:594.778785px;}
.x6c_c00452{left:603.639285px;}
.x3b_c00452{left:605.752935px;}
.x2d_c00452{left:607.074585px;}
.x60_c00452{left:616.152885px;}
.xf_c00452{left:617.266635px;}
.x83_c00452{left:618.415035px;}
.x1a_c00452{left:630.196035px;}
.x6d_c00452{left:638.615985px;}
.x30_c00452{left:640.105935px;}
.x55_c00452{left:650.085135px;}
.x22_c00452{left:660.757335px;}
.x10_c00452{left:663.351135px;}
.x73_c00452{left:670.484085px;}
.x3c_c00452{left:671.756235px;}
.x4d_c00452{left:673.627335px;}
.x74_c00452{left:676.686435px;}
.x87_c00452{left:682.948185px;}
.x44_c00452{left:685.017285px;}
.x58_c00452{left:693.867885px;}
.x1b_c00452{left:694.927185px;}
.x2_c00452{left:701.837385px;}
.x7b_c00452{left:705.460785px;}
.x75_c00452{left:713.752035px;}
.x59_c00452{left:715.593435px;}
.x11_c00452{left:718.261485px;}
.x76_c00452{left:721.825485px;}
.x72_c00452{left:727.874385px;}
.x23_c00452{left:729.186135px;}
.x66_c00452{left:738.576285px;}
.x3d_c00452{left:749.812785px;}
.x77_c00452{left:754.450935px;}
@media print{
.v1_c00452{vertical-align:-20.240000pt;}
.v0_c00452{vertical-align:0.000000pt;}
.ls13_c00452{letter-spacing:-2.334646pt;}
.ls6_c00452{letter-spacing:-1.848000pt;}
.ls1a_c00452{letter-spacing:-1.460821pt;}
.ls16_c00452{letter-spacing:-1.145760pt;}
.lsb_c00452{letter-spacing:-0.066704pt;}
.ls7_c00452{letter-spacing:0.000000pt;}
.ls3_c00452{letter-spacing:0.075856pt;}
.ls12_c00452{letter-spacing:0.360203pt;}
.ls17_c00452{letter-spacing:1.347424pt;}
.ls1_c00452{letter-spacing:1.664256pt;}
.lse_c00452{letter-spacing:1.907510pt;}
.lsf_c00452{letter-spacing:2.134534pt;}
.ls15_c00452{letter-spacing:2.305609pt;}
.ls8_c00452{letter-spacing:2.741542pt;}
.ls19_c00452{letter-spacing:2.956800pt;}
.lsa_c00452{letter-spacing:2.981677pt;}
.lsc_c00452{letter-spacing:3.188460pt;}
.ls11_c00452{letter-spacing:3.203209pt;}
.ls14_c00452{letter-spacing:3.238400pt;}
.ls18_c00452{letter-spacing:3.256000pt;}
.ls4_c00452{letter-spacing:3.335209pt;}
.lsd_c00452{letter-spacing:3.546400pt;}
.ls0_c00452{letter-spacing:14.563472pt;}
.ls2_c00452{letter-spacing:27.280000pt;}
.ls9_c00452{letter-spacing:50.688176pt;}
.ls10_c00452{letter-spacing:51.955376pt;}
.ls5_c00452{letter-spacing:53.222576pt;}
.ws1_c00452{word-spacing:-16.676044pt;}
.ws2_c00452{word-spacing:0.000000pt;}
.ws0_c00452{word-spacing:3.335273pt;}
._a_c00452{margin-left:-9.473024pt;}
._8_c00452{margin-left:-8.086496pt;}
._e_c00452{margin-left:-6.070142pt;}
._0_c00452{margin-left:-4.002312pt;}
._4_c00452{width:1.400696pt;}
._9_c00452{width:6.123040pt;}
._c_c00452{width:7.624672pt;}
._3_c00452{width:9.005128pt;}
._1_c00452{width:12.606792pt;}
._2_c00452{width:13.608076pt;}
._7_c00452{width:19.811885pt;}
._6_c00452{width:22.612821pt;}
._d_c00452{width:26.511936pt;}
._5_c00452{width:37.754564pt;}
._b_c00452{width:46.953984pt;}
._f_c00452{width:48.171200pt;}
.fsf_c00452{font-size:12.848176pt;}
.fse_c00452{font-size:21.296000pt;}
.fs17_c00452{font-size:24.640000pt;}
.fsd_c00452{font-size:32.736000pt;}
.fs6_c00452{font-size:35.024000pt;}
.fs11_c00452{font-size:42.240000pt;}
.fs14_c00452{font-size:44.000000pt;}
.fsc_c00452{font-size:46.112176pt;}
.fs4_c00452{font-size:50.688176pt;}
.fsa_c00452{font-size:51.955376pt;}
.fs3_c00452{font-size:52.800000pt;}
.fs2_c00452{font-size:53.222576pt;}
.fs10_c00452{font-size:53.856000pt;}
.fs12_c00452{font-size:58.960000pt;}
.fs16_c00452{font-size:59.136000pt;}
.fs13_c00452{font-size:62.304176pt;}
.fs9_c00452{font-size:63.008000pt;}
.fsb_c00452{font-size:64.064176pt;}
.fs5_c00452{font-size:64.768000pt;}
.fs15_c00452{font-size:65.120000pt;}
.fs1_c00452{font-size:66.704176pt;}
.fs8_c00452{font-size:69.872176pt;}
.fs7_c00452{font-size:70.928000pt;}
.fs0_c00452{font-size:75.856000pt;}
.y0_c00452{bottom:0.000000pt;}
.y1f_c00452{bottom:12.910520pt;}
.y1_c00452{bottom:68.000000pt;}
.y1e_c00452{bottom:103.515320pt;}
.y1c_c00452{bottom:132.977720pt;}
.y1d_c00452{bottom:138.042120pt;}
.y1b_c00452{bottom:165.924920pt;}
.y1a_c00452{bottom:197.921720pt;}
.y19_c00452{bottom:226.750520pt;}
.y18_c00452{bottom:255.262520pt;}
.y16_c00452{bottom:279.334920pt;}
.y15_c00452{bottom:283.140920pt;}
.y14_c00452{bottom:283.770120pt;}
.y13_c00452{bottom:312.915720pt;}
.y12_c00452{bottom:341.427720pt;}
.y11_c00452{bottom:370.260920pt;}
.y17_c00452{bottom:410.806920pt;}
.y10_c00452{bottom:455.163320pt;}
.yf_c00452{bottom:483.670920pt;}
.ye_c00452{bottom:512.499720pt;}
.yd_c00452{bottom:541.328520pt;}
.yc_c00452{bottom:569.844920pt;}
.yb_c00452{bottom:598.673720pt;}
.ya_c00452{bottom:627.181320pt;}
.y9_c00452{bottom:655.059720pt;}
.y8_c00452{bottom:684.205320pt;}
.y7_c00452{bottom:712.721720pt;}
.y6_c00452{bottom:741.550520pt;}
.y5_c00452{bottom:769.741320pt;}
.y4_c00452{bottom:798.257720pt;}
.y3_c00452{bottom:825.819320pt;}
.y2_c00452{bottom:942.714120pt;}
.h10_c00452{height:12.609782pt;}
.h17_c00452{height:25.698750pt;}
.h6_c00452{height:33.758325pt;}
.hf_c00452{height:34.142625pt;}
.h8_c00452{height:34.374141pt;}
.hc_c00452{height:34.602280pt;}
.h4_c00452{height:35.446236pt;}
.he_c00452{height:45.256579pt;}
.h14_c00452{height:45.890625pt;}
.h5_c00452{height:51.820313pt;}
.h11_c00452{height:56.170125pt;}
.h12_c00452{height:61.493438pt;}
.h16_c00452{height:61.677000pt;}
.hb_c00452{height:61.838906pt;}
.hd_c00452{height:62.875485pt;}
.h7_c00452{height:63.566250pt;}
.h15_c00452{height:63.911719pt;}
.h13_c00452{height:64.981309pt;}
.h3_c00452{height:65.466501pt;}
.ha_c00452{height:68.575720pt;}
.h9_c00452{height:71.482125pt;}
.h2_c00452{height:74.448516pt;}
.h1_c00452{height:986.666667pt;}
.h0_c00452{height:1122.666667pt;}
.w1_c00452{width:689.333333pt;}
.w0_c00452{width:793.333333pt;}
.x0_c00452{left:0.000000pt;}
.x1_c00452{left:52.000000pt;}
.x78_c00452{left:75.382253pt;}
.x61_c00452{left:77.089453pt;}
.x24_c00452{left:78.193853pt;}
.x1c_c00452{left:79.139853pt;}
.x3_c00452{left:81.427853pt;}
.x80_c00452{left:85.203053pt;}
.x88_c00452{left:94.676253pt;}
.x25_c00452{left:105.949053pt;}
.x3e_c00452{left:111.506253pt;}
.x67_c00452{left:115.413453pt;}
.x26_c00452{left:116.535453pt;}
.x35_c00452{left:118.493453pt;}
.x4a_c00452{left:119.562653pt;}
.x5d_c00452{left:124.684253pt;}
.x12_c00452{left:127.799453pt;}
.x62_c00452{left:134.949453pt;}
.x1d_c00452{left:136.986653pt;}
.x45_c00452{left:138.575053pt;}
.x2e_c00452{left:145.711853pt;}
.x36_c00452{left:147.885453pt;}
.x7c_c00452{left:153.975053pt;}
.x13_c00452{left:156.258653pt;}
.x4_c00452{left:157.552253pt;}
.x37_c00452{left:158.801853pt;}
.x79_c00452{left:162.788253pt;}
.x1e_c00452{left:164.689053pt;}
.x46_c00452{left:165.987053pt;}
.x90_c00452{left:168.745853pt;}
.x5_c00452{left:184.999453pt;}
.x14_c00452{left:185.971853pt;}
.x84_c00452{left:192.246253pt;}
.x5a_c00452{left:193.667453pt;}
.x2f_c00452{left:195.788253pt;}
.x7d_c00452{left:203.312253pt;}
.x51_c00452{left:204.451853pt;}
.x31_c00452{left:206.933453pt;}
.x6_c00452{left:211.931853pt;}
.x8d_c00452{left:213.326653pt;}
.x63_c00452{left:214.285853pt;}
.x89_c00452{left:221.532653pt;}
.x81_c00452{left:223.407053pt;}
.x32_c00452{left:225.690653pt;}
.x5b_c00452{left:233.751453pt;}
.x3f_c00452{left:235.141853pt;}
.x7_c00452{left:242.027853pt;}
.x27_c00452{left:244.263053pt;}
.x68_c00452{left:252.557053pt;}
.x8_c00452{left:254.189453pt;}
.x33_c00452{left:255.104653pt;}
.x9_c00452{left:259.020653pt;}
.x85_c00452{left:261.343853pt;}
.x7e_c00452{left:262.870653pt;}
.x15_c00452{left:264.538253pt;}
.x8e_c00452{left:271.622253pt;}
.x82_c00452{left:282.054653pt;}
.x69_c00452{left:283.031453pt;}
.x38_c00452{left:283.929053pt;}
.x6e_c00452{left:292.526653pt;}
.x47_c00452{left:294.000653pt;}
.x4b_c00452{left:295.351453pt;}
.x40_c00452{left:296.244653pt;}
.x86_c00452{left:301.229853pt;}
.x8a_c00452{left:302.633453pt;}
.x8f_c00452{left:311.455453pt;}
.x5c_c00452{left:312.784253pt;}
.x39_c00452{left:313.893053pt;}
.x5e_c00452{left:321.219053pt;}
.x7a_c00452{left:322.605053pt;}
.x34_c00452{left:324.387053pt;}
.xa_c00452{left:333.380653pt;}
.x6f_c00452{left:341.151053pt;}
.x16_c00452{left:342.092653pt;}
.x28_c00452{left:343.461053pt;}
.x52_c00452{left:352.406253pt;}
.x5f_c00452{left:361.430653pt;}
.x1f_c00452{left:363.124653pt;}
.x29_c00452{left:371.238253pt;}
.x48_c00452{left:372.567053pt;}
.xb_c00452{left:373.953053pt;}
.x4e_c00452{left:381.389053pt;}
.x41_c00452{left:382.506653pt;}
.x7f_c00452{left:389.991053pt;}
.x6a_c00452{left:391.680653pt;}
.xc_c00452{left:392.921453pt;}
.x8b_c00452{left:400.243053pt;}
.x4f_c00452{left:401.488253pt;}
.x3a_c00452{left:403.287853pt;}
.x56_c00452{left:410.195853pt;}
.x70_c00452{left:411.832653pt;}
.x20_c00452{left:412.805053pt;}
.x71_c00452{left:421.121053pt;}
.x42_c00452{left:422.401453pt;}
.x8c_c00452{left:429.454653pt;}
.x2a_c00452{left:432.231053pt;}
.x50_c00452{left:439.667053pt;}
.x17_c00452{left:442.038653pt;}
.x57_c00452{left:450.108253pt;}
.x49_c00452{left:451.239053pt;}
.x53_c00452{left:460.637453pt;}
.x64_c00452{left:461.887053pt;}
.x18_c00452{left:470.541853pt;}
.x2b_c00452{left:472.117053pt;}
.xd_c00452{left:481.018253pt;}
.x65_c00452{left:488.995453pt;}
.x43_c00452{left:490.777453pt;}
.x54_c00452{left:499.379453pt;}
.x6b_c00452{left:508.280653pt;}
.x19_c00452{left:510.348653pt;}
.x4c_c00452{left:511.835853pt;}
.x2c_c00452{left:518.880253pt;}
.xe_c00452{left:520.547853pt;}
.x21_c00452{left:528.692253pt;}
.x6c_c00452{left:536.568253pt;}
.x3b_c00452{left:538.447053pt;}
.x2d_c00452{left:539.621853pt;}
.x60_c00452{left:547.691453pt;}
.xf_c00452{left:548.681453pt;}
.x83_c00452{left:549.702253pt;}
.x1a_c00452{left:560.174253pt;}
.x6d_c00452{left:567.658653pt;}
.x30_c00452{left:568.983053pt;}
.x55_c00452{left:577.853453pt;}
.x22_c00452{left:587.339853pt;}
.x10_c00452{left:589.645453pt;}
.x73_c00452{left:595.985853pt;}
.x3c_c00452{left:597.116653pt;}
.x4d_c00452{left:598.779853pt;}
.x74_c00452{left:601.499053pt;}
.x87_c00452{left:607.065053pt;}
.x44_c00452{left:608.904253pt;}
.x58_c00452{left:616.771453pt;}
.x1b_c00452{left:617.713053pt;}
.x2_c00452{left:623.855453pt;}
.x7b_c00452{left:627.076253pt;}
.x75_c00452{left:634.446253pt;}
.x59_c00452{left:636.083053pt;}
.x11_c00452{left:638.454653pt;}
.x76_c00452{left:641.622653pt;}
.x72_c00452{left:646.999453pt;}
.x23_c00452{left:648.165453pt;}
.x66_c00452{left:656.512253pt;}
.x3d_c00452{left:666.500253pt;}
.x77_c00452{left:670.623053pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c8b866bd668b304ff46b5634.woff2')format("woff");}.ff1_c00453{font-family:ff1_c00453;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00453;src:url('chunks/assets/font_5bd6d7a2ece0a7e6a42d863c.woff2')format("woff");}.ff2_c00453{font-family:ff2_c00453;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00453;src:url('chunks/assets/font_96dbc9d4a7921987cbfe2c7e.woff2')format("woff");}.ff3_c00453{font-family:ff3_c00453;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00453;src:url('chunks/assets/font_9f23caf2b61200e4d7ccca82.woff2')format("woff");}.ff4_c00453{font-family:ff4_c00453;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00453;src:url('chunks/assets/font_b8fce431d38653aebb4730d0.woff2')format("woff");}.ff5_c00453{font-family:ff5_c00453;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4c_c00453{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00453{transform:matrix(0.112963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112963,0.000000,0.000000,0.250000,0,0);}
.m2_c00453{transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);}
.m58_c00453{transform:matrix(0.170635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170635,0.000000,0.000000,0.250000,0,0);}
.m89_c00453{transform:matrix(0.172764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172764,0.000000,0.000000,0.250000,0,0);}
.m88_c00453{transform:matrix(0.176830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176830,0.000000,0.000000,0.250000,0,0);}
.m15_c00453{transform:matrix(0.192307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192307,0.000000,0.000000,0.250000,0,0);}
.m70_c00453{transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);}
.m39_c00453{transform:matrix(0.200685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200685,0.000000,0.000000,0.250000,0,0);}
.m7_c00453{transform:matrix(0.205118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205118,0.000000,0.000000,0.250000,0,0);}
.m11_c00453{transform:matrix(0.210088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210088,0.000000,0.000000,0.250000,0,0);}
.m16_c00453{transform:matrix(0.219718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219718,0.000000,0.000000,0.250000,0,0);}
.m6f_c00453{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00453{transform:matrix(0.237937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237937,0.000000,0.000000,0.250000,0,0);}
.m74_c00453{transform:matrix(0.238569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238569,0.000000,0.000000,0.250000,0,0);}
.m1e_c00453{transform:matrix(0.241379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241379,0.000000,0.000000,0.250000,0,0);}
.m54_c00453{transform:matrix(0.241738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241738,0.000000,0.000000,0.250000,0,0);}
.m0_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);}
.m83_c00453{transform:matrix(0.252964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252964,0.000000,0.000000,0.250000,0,0);}
.m66_c00453{transform:matrix(0.253507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253507,0.000000,0.000000,0.250000,0,0);}
.m3a_c00453{transform:matrix(0.254257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254257,0.000000,0.000000,0.250000,0,0);}
.m96_c00453{transform:matrix(0.254857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254857,0.000000,0.000000,0.250000,0,0);}
.m79_c00453{transform:matrix(0.256336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256336,0.000000,0.000000,0.250000,0,0);}
.m98_c00453{transform:matrix(0.257901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257901,0.000000,0.000000,0.250000,0,0);}
.m19_c00453{transform:matrix(0.258634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258634,0.000000,0.000000,0.250000,0,0);}
.m6a_c00453{transform:matrix(0.259123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259123,0.000000,0.000000,0.250000,0,0);}
.m2c_c00453{transform:matrix(0.264753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264753,0.000000,0.000000,0.250000,0,0);}
.m1_c00453{transform:matrix(0.264970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264970,0.000000,0.000000,0.250000,0,0);}
.mb_c00453{transform:matrix(0.265460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265460,0.000000,0.000000,0.250000,0,0);}
.m85_c00453{transform:matrix(0.265558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265558,0.000000,0.000000,0.250000,0,0);}
.m38_c00453{transform:matrix(0.265766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265766,0.000000,0.000000,0.250000,0,0);}
.m5b_c00453{transform:matrix(0.267056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267056,0.000000,0.000000,0.250000,0,0);}
.m36_c00453{transform:matrix(0.270287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270287,0.000000,0.000000,0.250000,0,0);}
.m77_c00453{transform:matrix(0.270463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270463,0.000000,0.000000,0.250000,0,0);}
.m4d_c00453{transform:matrix(0.270566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270566,0.000000,0.000000,0.250000,0,0);}
.m29_c00453{transform:matrix(0.271628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271628,0.000000,0.000000,0.250000,0,0);}
.mb8_c00453{transform:matrix(0.272656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272656,0.000000,0.000000,0.250000,0,0);}
.m61_c00453{transform:matrix(0.272665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272665,0.000000,0.000000,0.250000,0,0);}
.m9d_c00453{transform:matrix(0.274357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274357,0.000000,0.000000,0.250000,0,0);}
.m7e_c00453{transform:matrix(0.275114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275114,0.000000,0.000000,0.250000,0,0);}
.maa_c00453{transform:matrix(0.275362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275362,0.000000,0.000000,0.250000,0,0);}
.m14_c00453{transform:matrix(0.275764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275764,0.000000,0.000000,0.250000,0,0);}
.m64_c00453{transform:matrix(0.278154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278154,0.000000,0.000000,0.250000,0,0);}
.m84_c00453{transform:matrix(0.278262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278262,0.000000,0.000000,0.250000,0,0);}
.m1b_c00453{transform:matrix(0.279967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279967,0.000000,0.000000,0.250000,0,0);}
.mac_c00453{transform:matrix(0.280053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280053,0.000000,0.000000,0.250000,0,0);}
.m5d_c00453{transform:matrix(0.280907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280907,0.000000,0.000000,0.250000,0,0);}
.m76_c00453{transform:matrix(0.281715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281715,0.000000,0.000000,0.250000,0,0);}
.m68_c00453{transform:matrix(0.281912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281912,0.000000,0.000000,0.250000,0,0);}
.m21_c00453{transform:matrix(0.282383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282383,0.000000,0.000000,0.250000,0,0);}
.m5e_c00453{transform:matrix(0.282569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282569,0.000000,0.000000,0.250000,0,0);}
.m25_c00453{transform:matrix(0.283033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283033,0.000000,0.000000,0.250000,0,0);}
.m30_c00453{transform:matrix(0.283474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283474,0.000000,0.000000,0.250000,0,0);}
.m72_c00453{transform:matrix(0.284542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284542,0.000000,0.000000,0.250000,0,0);}
.m73_c00453{transform:matrix(0.284762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284762,0.000000,0.000000,0.250000,0,0);}
.m47_c00453{transform:matrix(0.285123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285123,0.000000,0.000000,0.250000,0,0);}
.m9c_c00453{transform:matrix(0.286381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286381,0.000000,0.000000,0.250000,0,0);}
.m97_c00453{transform:matrix(0.287913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287913,0.000000,0.000000,0.250000,0,0);}
.m4f_c00453{transform:matrix(0.287970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287970,0.000000,0.000000,0.250000,0,0);}
.ma0_c00453{transform:matrix(0.288185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288185,0.000000,0.000000,0.250000,0,0);}
.m17_c00453{transform:matrix(0.288441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288441,0.000000,0.000000,0.250000,0,0);}
.m59_c00453{transform:matrix(0.290032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290032,0.000000,0.000000,0.250000,0,0);}
.m32_c00453{transform:matrix(0.290580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290580,0.000000,0.000000,0.250000,0,0);}
.m2e_c00453{transform:matrix(0.291146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291146,0.000000,0.000000,0.250000,0,0);}
.m2f_c00453{transform:matrix(0.291896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291896,0.000000,0.000000,0.250000,0,0);}
.m9a_c00453{transform:matrix(0.292064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292064,0.000000,0.000000,0.250000,0,0);}
.m33_c00453{transform:matrix(0.292817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292817,0.000000,0.000000,0.250000,0,0);}
.m45_c00453{transform:matrix(0.293802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293802,0.000000,0.000000,0.250000,0,0);}
.m9_c00453{transform:matrix(0.294096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294096,0.000000,0.000000,0.250000,0,0);}
.mae_c00453{transform:matrix(0.294630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294630,0.000000,0.000000,0.250000,0,0);}
.m91_c00453{transform:matrix(0.295856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295856,0.000000,0.000000,0.250000,0,0);}
.m65_c00453{transform:matrix(0.298070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298070,0.000000,0.000000,0.250000,0,0);}
.m28_c00453{transform:matrix(0.298283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298283,0.000000,0.000000,0.250000,0,0);}
.m4a_c00453{transform:matrix(0.298472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298472,0.000000,0.000000,0.250000,0,0);}
.m18_c00453{transform:matrix(0.298635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298635,0.000000,0.000000,0.250000,0,0);}
.m7f_c00453{transform:matrix(0.298681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298681,0.000000,0.000000,0.250000,0,0);}
.m8b_c00453{transform:matrix(0.299346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299346,0.000000,0.000000,0.250000,0,0);}
.m90_c00453{transform:matrix(0.299620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299620,0.000000,0.000000,0.250000,0,0);}
.m50_c00453{transform:matrix(0.300169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300169,0.000000,0.000000,0.250000,0,0);}
.mb1_c00453{transform:matrix(0.300887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300887,0.000000,0.000000,0.250000,0,0);}
.maf_c00453{transform:matrix(0.301545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301545,0.000000,0.000000,0.250000,0,0);}
.ma6_c00453{transform:matrix(0.301760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301760,0.000000,0.000000,0.250000,0,0);}
.m26_c00453{transform:matrix(0.301989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301989,0.000000,0.000000,0.250000,0,0);}
.m37_c00453{transform:matrix(0.303209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303209,0.000000,0.000000,0.250000,0,0);}
.m99_c00453{transform:matrix(0.303366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303366,0.000000,0.000000,0.250000,0,0);}
.m27_c00453{transform:matrix(0.305580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305580,0.000000,0.000000,0.250000,0,0);}
.m82_c00453{transform:matrix(0.305587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305587,0.000000,0.000000,0.250000,0,0);}
.mb4_c00453{transform:matrix(0.305941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305941,0.000000,0.000000,0.250000,0,0);}
.m8d_c00453{transform:matrix(0.306260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306260,0.000000,0.000000,0.250000,0,0);}
.m41_c00453{transform:matrix(0.306595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306595,0.000000,0.000000,0.250000,0,0);}
.mb0_c00453{transform:matrix(0.307307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307307,0.000000,0.000000,0.250000,0,0);}
.m57_c00453{transform:matrix(0.307316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307316,0.000000,0.000000,0.250000,0,0);}
.m55_c00453{transform:matrix(0.307373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307373,0.000000,0.000000,0.250000,0,0);}
.m81_c00453{transform:matrix(0.307429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307429,0.000000,0.000000,0.250000,0,0);}
.m6b_c00453{transform:matrix(0.307444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307444,0.000000,0.000000,0.250000,0,0);}
.m78_c00453{transform:matrix(0.308453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308453,0.000000,0.000000,0.250000,0,0);}
.mad_c00453{transform:matrix(0.309212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309212,0.000000,0.000000,0.250000,0,0);}
.m10_c00453{transform:matrix(0.309253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309253,0.000000,0.000000,0.250000,0,0);}
.m9e_c00453{transform:matrix(0.309311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309311,0.000000,0.000000,0.250000,0,0);}
.ma_c00453{transform:matrix(0.310032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310032,0.000000,0.000000,0.250000,0,0);}
.m7d_c00453{transform:matrix(0.310143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310143,0.000000,0.000000,0.250000,0,0);}
.m42_c00453{transform:matrix(0.310733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310733,0.000000,0.000000,0.250000,0,0);}
.m1d_c00453{transform:matrix(0.311455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311455,0.000000,0.000000,0.250000,0,0);}
.m2d_c00453{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.mab_c00453{transform:matrix(0.313208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313208,0.000000,0.000000,0.250000,0,0);}
.m34_c00453{transform:matrix(0.313401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313401,0.000000,0.000000,0.250000,0,0);}
.m13_c00453{transform:matrix(0.313663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313663,0.000000,0.000000,0.250000,0,0);}
.m80_c00453{transform:matrix(0.314197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314197,0.000000,0.000000,0.250000,0,0);}
.m12_c00453{transform:matrix(0.314220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314220,0.000000,0.000000,0.250000,0,0);}
.ma1_c00453{transform:matrix(0.314363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314363,0.000000,0.000000,0.250000,0,0);}
.m1f_c00453{transform:matrix(0.314519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314519,0.000000,0.000000,0.250000,0,0);}
.m3_c00453{transform:matrix(0.314616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314616,0.000000,0.000000,0.250000,0,0);}
.ma4_c00453{transform:matrix(0.314862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314862,0.000000,0.000000,0.250000,0,0);}
.ma2_c00453{transform:matrix(0.314892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314892,0.000000,0.000000,0.250000,0,0);}
.m8f_c00453{transform:matrix(0.316826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316826,0.000000,0.000000,0.250000,0,0);}
.m87_c00453{transform:matrix(0.316897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316897,0.000000,0.000000,0.250000,0,0);}
.m7a_c00453{transform:matrix(0.317952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317952,0.000000,0.000000,0.250000,0,0);}
.m6c_c00453{transform:matrix(0.318796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318796,0.000000,0.000000,0.250000,0,0);}
.m8a_c00453{transform:matrix(0.319712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319712,0.000000,0.000000,0.250000,0,0);}
.m93_c00453{transform:matrix(0.320094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320094,0.000000,0.000000,0.250000,0,0);}
.m67_c00453{transform:matrix(0.321568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321568,0.000000,0.000000,0.250000,0,0);}
.mb2_c00453{transform:matrix(0.321754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321754,0.000000,0.000000,0.250000,0,0);}
.m3d_c00453{transform:matrix(0.322031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322031,0.000000,0.000000,0.250000,0,0);}
.m56_c00453{transform:matrix(0.322419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322419,0.000000,0.000000,0.250000,0,0);}
.mb7_c00453{transform:matrix(0.322568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322568,0.000000,0.000000,0.250000,0,0);}
.m75_c00453{transform:matrix(0.323827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323827,0.000000,0.000000,0.250000,0,0);}
.m5a_c00453{transform:matrix(0.325094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325094,0.000000,0.000000,0.250000,0,0);}
.m35_c00453{transform:matrix(0.326365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326365,0.000000,0.000000,0.250000,0,0);}
.m5_c00453{transform:matrix(0.326646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326646,0.000000,0.000000,0.250000,0,0);}
.m7b_c00453{transform:matrix(0.326793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326793,0.000000,0.000000,0.250000,0,0);}
.m24_c00453{transform:matrix(0.327004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327004,0.000000,0.000000,0.250000,0,0);}
.me_c00453{transform:matrix(0.327899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327899,0.000000,0.000000,0.250000,0,0);}
.m52_c00453{transform:matrix(0.328819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328819,0.000000,0.000000,0.250000,0,0);}
.m40_c00453{transform:matrix(0.329417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329417,0.000000,0.000000,0.250000,0,0);}
.m4e_c00453{transform:matrix(0.329456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329456,0.000000,0.000000,0.250000,0,0);}
.m3f_c00453{transform:matrix(0.330087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330087,0.000000,0.000000,0.250000,0,0);}
.mc_c00453{transform:matrix(0.330184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330184,0.000000,0.000000,0.250000,0,0);}
.m48_c00453{transform:matrix(0.331099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331099,0.000000,0.000000,0.250000,0,0);}
.m23_c00453{transform:matrix(0.331664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331664,0.000000,0.000000,0.250000,0,0);}
.m8c_c00453{transform:matrix(0.332508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332508,0.000000,0.000000,0.250000,0,0);}
.m22_c00453{transform:matrix(0.332727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332727,0.000000,0.000000,0.250000,0,0);}
.m43_c00453{transform:matrix(0.333018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333018,0.000000,0.000000,0.250000,0,0);}
.m62_c00453{transform:matrix(0.333138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333138,0.000000,0.000000,0.250000,0,0);}
.ma3_c00453{transform:matrix(0.333263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333263,0.000000,0.000000,0.250000,0,0);}
.m71_c00453{transform:matrix(0.334152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334152,0.000000,0.000000,0.250000,0,0);}
.m44_c00453{transform:matrix(0.335009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335009,0.000000,0.000000,0.250000,0,0);}
.m5f_c00453{transform:matrix(0.335590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335590,0.000000,0.000000,0.250000,0,0);}
.m53_c00453{transform:matrix(0.336048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336048,0.000000,0.000000,0.250000,0,0);}
.m2a_c00453{transform:matrix(0.336813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336813,0.000000,0.000000,0.250000,0,0);}
.md_c00453{transform:matrix(0.337662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337662,0.000000,0.000000,0.250000,0,0);}
.mb5_c00453{transform:matrix(0.339120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339120,0.000000,0.000000,0.250000,0,0);}
.m9b_c00453{transform:matrix(0.339351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339351,0.000000,0.000000,0.250000,0,0);}
.m1c_c00453{transform:matrix(0.339989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339989,0.000000,0.000000,0.250000,0,0);}
.m8_c00453{transform:matrix(0.340640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340640,0.000000,0.000000,0.250000,0,0);}
.m8e_c00453{transform:matrix(0.340842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340842,0.000000,0.000000,0.250000,0,0);}
.m51_c00453{transform:matrix(0.340953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340953,0.000000,0.000000,0.250000,0,0);}
.m3b_c00453{transform:matrix(0.341081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341081,0.000000,0.000000,0.250000,0,0);}
.m20_c00453{transform:matrix(0.342156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342156,0.000000,0.000000,0.250000,0,0);}
.m6d_c00453{transform:matrix(0.342429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342429,0.000000,0.000000,0.250000,0,0);}
.mb3_c00453{transform:matrix(0.344674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344674,0.000000,0.000000,0.250000,0,0);}
.m94_c00453{transform:matrix(0.345171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345171,0.000000,0.000000,0.250000,0,0);}
.m2b_c00453{transform:matrix(0.345543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345543,0.000000,0.000000,0.250000,0,0);}
.m69_c00453{transform:matrix(0.347254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347254,0.000000,0.000000,0.250000,0,0);}
.m1a_c00453{transform:matrix(0.348169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348169,0.000000,0.000000,0.250000,0,0);}
.mf_c00453{transform:matrix(0.350078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350078,0.000000,0.000000,0.250000,0,0);}
.m86_c00453{transform:matrix(0.350408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350408,0.000000,0.000000,0.250000,0,0);}
.ma7_c00453{transform:matrix(0.350657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350657,0.000000,0.000000,0.250000,0,0);}
.m60_c00453{transform:matrix(0.351434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351434,0.000000,0.000000,0.250000,0,0);}
.m6e_c00453{transform:matrix(0.354500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00453{transform:matrix(0.354643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354643,0.000000,0.000000,0.250000,0,0);}
.mb6_c00453{transform:matrix(0.355419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355419,0.000000,0.000000,0.250000,0,0);}
.m3c_c00453{transform:matrix(0.357532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357532,0.000000,0.000000,0.250000,0,0);}
.m49_c00453{transform:matrix(0.358035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358035,0.000000,0.000000,0.250000,0,0);}
.m95_c00453{transform:matrix(0.359187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359187,0.000000,0.000000,0.250000,0,0);}
.m92_c00453{transform:matrix(0.361090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361090,0.000000,0.000000,0.250000,0,0);}
.ma9_c00453{transform:matrix(0.364969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364969,0.000000,0.000000,0.250000,0,0);}
.m9f_c00453{transform:matrix(0.371514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371514,0.000000,0.000000,0.250000,0,0);}
.m46_c00453{transform:matrix(0.373555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373555,0.000000,0.000000,0.250000,0,0);}
.m63_c00453{transform:matrix(0.375744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375744,0.000000,0.000000,0.250000,0,0);}
.m6_c00453{transform:matrix(0.383847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383847,0.000000,0.000000,0.250000,0,0);}
.m31_c00453{transform:matrix(0.386141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386141,0.000000,0.000000,0.250000,0,0);}
.m7c_c00453{transform:matrix(0.390139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390139,0.000000,0.000000,0.250000,0,0);}
.m3e_c00453{transform:matrix(0.396432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396432,0.000000,0.000000,0.250000,0,0);}
.m5c_c00453{transform:matrix(0.402725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402725,0.000000,0.000000,0.250000,0,0);}
.m4_c00453{transform:matrix(0.426896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426896,0.000000,0.000000,0.250000,0,0);}
.v0_c00453{vertical-align:0.000000px;}
.ls7_c00453{letter-spacing:-2.626477px;}
.lse_c00453{letter-spacing:-2.522527px;}
.ls13_c00453{letter-spacing:-0.345194px;}
.ls1_c00453{letter-spacing:0.000000px;}
.ls18_c00453{letter-spacing:0.652867px;}
.ls1a_c00453{letter-spacing:0.908011px;}
.ls11_c00453{letter-spacing:1.043087px;}
.ls8_c00453{letter-spacing:1.080608px;}
.ls6_c00453{letter-spacing:1.515852px;}
.lsf_c00453{letter-spacing:1.631540px;}
.lsa_c00453{letter-spacing:1.898127px;}
.ls0_c00453{letter-spacing:2.573947px;}
.ls5_c00453{letter-spacing:2.583900px;}
.ls10_c00453{letter-spacing:2.811600px;}
.ls16_c00453{letter-spacing:2.874116px;}
.ls12_c00453{letter-spacing:3.504610px;}
.lsc_c00453{letter-spacing:3.587017px;}
.ls4_c00453{letter-spacing:3.752110px;}
.ls9_c00453{letter-spacing:3.801610px;}
.ls1b_c00453{letter-spacing:4.059000px;}
.ls2_c00453{letter-spacing:4.395610px;}
.ls3_c00453{letter-spacing:31.363200px;}
.ls17_c00453{letter-spacing:49.896198px;}
.lsd_c00453{letter-spacing:52.747398px;}
.lsb_c00453{letter-spacing:55.598598px;}
.ls19_c00453{letter-spacing:58.449798px;}
.ls15_c00453{letter-spacing:59.875398px;}
.ls14_c00453{letter-spacing:64.152198px;}
.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:-18.760550px;}
.ws1_c00453{word-spacing:0.000000px;}
._1_c00453{margin-left:-22.775270px;}
._7_c00453{margin-left:-3.902129px;}
._3_c00453{width:1.500804px;}
._5_c00453{width:3.676811px;}
._0_c00453{width:8.104041px;}
._8_c00453{width:10.581824px;}
._2_c00453{width:28.891709px;}
._4_c00453{width:31.173599px;}
._6_c00453{width:37.746187px;}
.fc0_c00453{color:transparent;}
.fs3_c00453{font-size:24.552000px;}
.fs0_c00453{font-size:27.720000px;}
.fs4_c00453{font-size:31.363200px;}
.fs5_c00453{font-size:39.600000px;}
.fs16_c00453{font-size:48.114000px;}
.fs14_c00453{font-size:49.896198px;}
.fs7_c00453{font-size:51.678000px;}
.fsc_c00453{font-size:52.747398px;}
.fsa_c00453{font-size:55.598598px;}
.fsf_c00453{font-size:56.232000px;}
.fs1a_c00453{font-size:56.628000px;}
.fs17_c00453{font-size:58.449798px;}
.fs12_c00453{font-size:59.875398px;}
.fs13_c00453{font-size:60.192000px;}
.fs11_c00453{font-size:64.152198px;}
.fs15_c00453{font-size:66.330000px;}
.fs2_c00453{font-size:67.320000px;}
.fs10_c00453{font-size:70.092198px;}
.fse_c00453{font-size:71.874000px;}
.fsd_c00453{font-size:72.072198px;}
.fsb_c00453{font-size:72.864000px;}
.fs6_c00453{font-size:75.042198px;}
.fs8_c00453{font-size:76.032198px;}
.fs9_c00453{font-size:76.230000px;}
.fs19_c00453{font-size:78.804000px;}
.fs18_c00453{font-size:81.180000px;}
.fs1_c00453{font-size:87.912198px;}
.y0_c00453{bottom:0.000000px;}
.y24_c00453{bottom:62.994735px;}
.y1_c00453{bottom:76.500000px;}
.y23_c00453{bottom:115.024185px;}
.y22_c00453{bottom:147.461535px;}
.y21_c00453{bottom:183.814335px;}
.y20_c00453{bottom:219.092985px;}
.y1f_c00453{bottom:251.881785px;}
.y1e_c00453{bottom:283.957785px;}
.y1d_c00453{bottom:315.682335px;}
.y1c_c00453{bottom:348.114735px;}
.y1b_c00453{bottom:380.190735px;}
.y1a_c00453{bottom:411.910335px;}
.y19_c00453{bottom:442.912185px;}
.y18_c00453{bottom:475.344585px;}
.y17_c00453{bottom:500.648985px;}
.y16_c00453{bottom:507.069135px;}
.y15_c00453{bottom:507.420585px;}
.y14_c00453{bottom:538.432335px;}
.y13_c00453{bottom:596.520585px;}
.y12_c00453{bottom:603.653535px;}
.y11_c00453{bottom:635.729535px;}
.yf_c00453{bottom:667.800585px;}
.y10_c00453{bottom:668.156985px;}
.ye_c00453{bottom:700.232985px;}
.yd_c00453{bottom:731.596185px;}
.y2_c00453{bottom:757.256985px;}
.yc_c00453{bottom:764.033535px;}
.yb_c00453{bottom:795.040335px;}
.ya_c00453{bottom:827.829135px;}
.y9_c00453{bottom:891.268335px;}
.y8_c00453{bottom:924.057135px;}
.y7_c00453{bottom:997.826985px;}
.y6_c00453{bottom:1005.311385px;}
.y5_c00453{bottom:1016.359785px;}
.y4_c00453{bottom:1028.833785px;}
.y3_c00453{bottom:1058.058585px;}
.h6_c00453{height:20.887891px;}
.h5_c00453{height:24.096445px;}
.h2_c00453{height:28.911094px;}
.h17_c00453{height:33.230868px;}
.he_c00453{height:35.129767px;}
.hc_c00453{height:37.028666px;}
.h1a_c00453{height:38.927565px;}
.h15_c00453{height:39.877015px;}
.h7_c00453{height:41.301563px;}
.h14_c00453{height:42.725364px;}
.h19_c00453{height:47.221260px;}
.h9_c00453{height:50.719131px;}
.h11_c00453{height:58.648219px;}
.h1d_c00453{height:59.061234px;}
.h16_c00453{height:62.778375px;}
.h4_c00453{height:66.070898px;}
.h12_c00453{height:68.791659px;}
.h18_c00453{height:69.180117px;}
.hf_c00453{height:70.699729px;}
.hd_c00453{height:71.512031px;}
.h8_c00453{height:73.649813px;}
.ha_c00453{height:74.621444px;}
.hb_c00453{height:74.815576px;}
.h10_c00453{height:74.962336px;}
.h1c_c00453{height:77.341816px;}
.h13_c00453{height:79.299207px;}
.h1b_c00453{height:79.673730px;}
.h3_c00453{height:86.281015px;}
.h1_c00453{height:1110.000000px;}
.h0_c00453{height:1263.000000px;}
.w1_c00453{width:769.500000px;}
.w0_c00453{width:892.500000px;}
.x0_c00453{left:0.000000px;}
.x2_c00453{left:56.931285px;}
.x1_c00453{left:61.500000px;}
.x61_c00453{left:91.561485px;}
.x55_c00453{left:92.902935px;}
.x4a_c00453{left:94.392885px;}
.x3d_c00453{left:95.491785px;}
.x1c_c00453{left:97.496535px;}
.x8_c00453{left:98.813235px;}
.x47_c00453{left:116.024385px;}
.x80_c00453{left:124.038435px;}
.x5c_c00453{left:126.246135px;}
.x2c_c00453{left:127.919235px;}
.x75_c00453{left:135.047235px;}
.x3e_c00453{left:138.457785px;}
.x12_c00453{left:142.264335px;}
.x48_c00453{left:147.570735px;}
.x13_c00453{left:149.946735px;}
.x9_c00453{left:151.421835px;}
.x8e_c00453{left:158.020185px;}
.x34_c00453{left:159.955635px;}
.x3f_c00453{left:171.508935px;}
.x6f_c00453{left:179.636835px;}
.x88_c00453{left:180.780285px;}
.x56_c00453{left:181.894035px;}
.x14_c00453{left:183.646335px;}
.x81_c00453{left:190.650585px;}
.xa_c00453{left:195.110535px;}
.x8f_c00453{left:200.976285px;}
.x62_c00453{left:202.728585px;}
.x25_c00453{left:205.060035px;}
.x39_c00453{left:206.277735px;}
.x82_c00453{left:213.613635px;}
.x79_c00453{left:214.732335px;}
.x50_c00453{left:216.152985px;}
.x6b_c00453{left:224.904585px;}
.x40_c00453{left:225.934185px;}
.x2d_c00453{left:227.914185px;}
.x5d_c00453{left:235.952985px;}
.x4b_c00453{left:237.908235px;}
.x83_c00453{left:246.253935px;}
.x2e_c00453{left:248.555685px;}
.x51_c00453{left:259.208085px;}
.x66_c00453{left:268.890285px;}
.x6c_c00453{left:270.335685px;}
.x15_c00453{left:272.370135px;}
.x26_c00453{left:281.532585px;}
.x1d_c00453{left:285.220335px;}
.x2f_c00453{left:292.219635px;}
.xb_c00453{left:294.570885px;}
.x84_c00453{left:303.074985px;}
.x89_c00453{left:313.806585px;}
.x41_c00453{left:316.850835px;}
.x52_c00453{left:325.364835px;}
.x16_c00453{left:326.438985px;}
.x27_c00453{left:327.998235px;}
.x3a_c00453{left:338.017035px;}
.x6d_c00453{left:346.575585px;}
.x8a_c00453{left:347.620035px;}
.xc_c00453{left:349.392135px;}
.x1e_c00453{left:350.500935px;}
.x76_c00453{left:358.222935px;}
.x53_c00453{left:359.737635px;}
.x35_c00453{left:360.791985px;}
.x5e_c00453{left:369.919785px;}
.x30_c00453{left:371.053335px;}
.xd_c00453{left:382.616535px;}
.x85_c00453{left:391.724535px;}
.x28_c00453{left:405.010335px;}
.x70_c00453{left:413.039235px;}
.x1f_c00453{left:414.821235px;}
.x17_c00453{left:417.192285px;}
.x67_c00453{left:424.468785px;}
.x4c_c00453{left:426.389385px;}
.x7a_c00453{left:436.373535px;}
.x29_c00453{left:437.700135px;}
.xe_c00453{left:448.322835px;}
.x77_c00453{left:457.594185px;}
.x71_c00453{left:458.816835px;}
.x42_c00453{left:459.935535px;}
.x5f_c00453{left:468.632685px;}
.x36_c00453{left:470.850285px;}
.x68_c00453{left:472.567935px;}
.x63_c00453{left:480.943335px;}
.x20_c00453{left:483.428235px;}
.x31_c00453{left:492.174885px;}
.x18_c00453{left:493.298535px;}
.x8b_c00453{left:502.302585px;}
.x43_c00453{left:505.069635px;}
.x32_c00453{left:515.147835px;}
.x57_c00453{left:524.236035px;}
.x2a_c00453{left:525.730935px;}
.x3b_c00453{left:527.097135px;}
.x44_c00453{left:536.675385px;}
.x7b_c00453{left:546.664485px;}
.x21_c00453{left:547.768335px;}
.x72_c00453{left:557.519835px;}
.xf_c00453{left:559.727535px;}
.x69_c00453{left:567.756435px;}
.x58_c00453{left:569.667135px;}
.x64_c00453{left:579.977985px;}
.x54_c00453{left:581.027385px;}
.x4d_c00453{left:583.091535px;}
.x73_c00453{left:591.021435px;}
.x22_c00453{left:593.011335px;}
.x6a_c00453{left:600.857085px;}
.x10_c00453{left:603.366735px;}
.x19_c00453{left:604.579485px;}
.x7c_c00453{left:612.410385px;}
.x65_c00453{left:613.499385px;}
.x59_c00453{left:614.608185px;}
.x60_c00453{left:623.671635px;}
.x33_c00453{left:624.978435px;}
.x2b_c00453{left:626.597085px;}
.x8c_c00453{left:633.789435px;}
.x23_c00453{left:635.432835px;}
.x86_c00453{left:645.253635px;}
.x7d_c00453{left:646.273335px;}
.x11_c00453{left:648.980985px;}
.x37_c00453{left:656.465385px;}
.x3c_c00453{left:657.960285px;}
.x24_c00453{left:659.217585px;}
.x8d_c00453{left:667.677135px;}
.x45_c00453{left:668.909685px;}
.x1a_c00453{left:670.201635px;}
.x74_c00453{left:678.200835px;}
.x5a_c00453{left:679.774935px;}
.x4e_c00453{left:682.576635px;}
.x6e_c00453{left:688.892835px;}
.x87_c00453{left:691.105485px;}
.x49_c00453{left:700.965885px;}
.x4f_c00453{left:702.475635px;}
.x5_c00453{left:706.841535px;}
.x6_c00453{left:707.970135px;}
.x7_c00453{left:710.791635px;}
.x78_c00453{left:712.583535px;}
.x1b_c00453{left:713.890335px;}
.x3_c00453{left:715.761435px;}
.x7e_c00453{left:723.592335px;}
.x38_c00453{left:724.993185px;}
.x4_c00453{left:726.963285px;}
.x46_c00453{left:736.105935px;}
.x7f_c00453{left:746.476185px;}
.x5b_c00453{left:755.188185px;}
@media print{
.v0_c00453{vertical-align:0.000000pt;}
.ls7_c00453{letter-spacing:-2.334646pt;}
.lse_c00453{letter-spacing:-2.242246pt;}
.ls13_c00453{letter-spacing:-0.306839pt;}
.ls1_c00453{letter-spacing:0.000000pt;}
.ls18_c00453{letter-spacing:0.580326pt;}
.ls1a_c00453{letter-spacing:0.807121pt;}
.ls11_c00453{letter-spacing:0.927188pt;}
.ls8_c00453{letter-spacing:0.960540pt;}
.ls6_c00453{letter-spacing:1.347424pt;}
.lsf_c00453{letter-spacing:1.450258pt;}
.lsa_c00453{letter-spacing:1.687224pt;}
.ls0_c00453{letter-spacing:2.287953pt;}
.ls5_c00453{letter-spacing:2.296800pt;}
.ls10_c00453{letter-spacing:2.499200pt;}
.ls16_c00453{letter-spacing:2.554770pt;}
.ls12_c00453{letter-spacing:3.115209pt;}
.lsc_c00453{letter-spacing:3.188460pt;}
.ls4_c00453{letter-spacing:3.335209pt;}
.ls9_c00453{letter-spacing:3.379209pt;}
.ls1b_c00453{letter-spacing:3.608000pt;}
.ls2_c00453{letter-spacing:3.907209pt;}
.ls3_c00453{letter-spacing:27.878400pt;}
.ls17_c00453{letter-spacing:44.352176pt;}
.lsd_c00453{letter-spacing:46.886576pt;}
.lsb_c00453{letter-spacing:49.420976pt;}
.ls19_c00453{letter-spacing:51.955376pt;}
.ls15_c00453{letter-spacing:53.222576pt;}
.ls14_c00453{letter-spacing:57.024176pt;}
.ws0_c00453{word-spacing:-16.676044pt;}
.ws1_c00453{word-spacing:0.000000pt;}
._1_c00453{margin-left:-20.244684pt;}
._7_c00453{margin-left:-3.468559pt;}
._3_c00453{width:1.334048pt;}
._5_c00453{width:3.268276pt;}
._0_c00453{width:7.203592pt;}
._8_c00453{width:9.406066pt;}
._2_c00453{width:25.681519pt;}
._4_c00453{width:27.709865pt;}
._6_c00453{width:33.552166pt;}
.fs3_c00453{font-size:21.824000pt;}
.fs0_c00453{font-size:24.640000pt;}
.fs4_c00453{font-size:27.878400pt;}
.fs5_c00453{font-size:35.200000pt;}
.fs16_c00453{font-size:42.768000pt;}
.fs14_c00453{font-size:44.352176pt;}
.fs7_c00453{font-size:45.936000pt;}
.fsc_c00453{font-size:46.886576pt;}
.fsa_c00453{font-size:49.420976pt;}
.fsf_c00453{font-size:49.984000pt;}
.fs1a_c00453{font-size:50.336000pt;}
.fs17_c00453{font-size:51.955376pt;}
.fs12_c00453{font-size:53.222576pt;}
.fs13_c00453{font-size:53.504000pt;}
.fs11_c00453{font-size:57.024176pt;}
.fs15_c00453{font-size:58.960000pt;}
.fs2_c00453{font-size:59.840000pt;}
.fs10_c00453{font-size:62.304176pt;}
.fse_c00453{font-size:63.888000pt;}
.fsd_c00453{font-size:64.064176pt;}
.fsb_c00453{font-size:64.768000pt;}
.fs6_c00453{font-size:66.704176pt;}
.fs8_c00453{font-size:67.584176pt;}
.fs9_c00453{font-size:67.760000pt;}
.fs19_c00453{font-size:70.048000pt;}
.fs18_c00453{font-size:72.160000pt;}
.fs1_c00453{font-size:78.144176pt;}
.y0_c00453{bottom:0.000000pt;}
.y24_c00453{bottom:55.995320pt;}
.y1_c00453{bottom:68.000000pt;}
.y23_c00453{bottom:102.243720pt;}
.y22_c00453{bottom:131.076920pt;}
.y21_c00453{bottom:163.390520pt;}
.y20_c00453{bottom:194.749320pt;}
.y1f_c00453{bottom:223.894920pt;}
.y1e_c00453{bottom:252.406920pt;}
.y1d_c00453{bottom:280.606520pt;}
.y1c_c00453{bottom:309.435320pt;}
.y1b_c00453{bottom:337.947320pt;}
.y1a_c00453{bottom:366.142520pt;}
.y19_c00453{bottom:393.699720pt;}
.y18_c00453{bottom:422.528520pt;}
.y17_c00453{bottom:445.021320pt;}
.y16_c00453{bottom:450.728120pt;}
.y15_c00453{bottom:451.040520pt;}
.y14_c00453{bottom:478.606520pt;}
.y13_c00453{bottom:530.240520pt;}
.y12_c00453{bottom:536.580920pt;}
.y11_c00453{bottom:565.092920pt;}
.yf_c00453{bottom:593.600520pt;}
.y10_c00453{bottom:593.917320pt;}
.ye_c00453{bottom:622.429320pt;}
.yd_c00453{bottom:650.307720pt;}
.y2_c00453{bottom:673.117320pt;}
.yc_c00453{bottom:679.140920pt;}
.yb_c00453{bottom:706.702520pt;}
.ya_c00453{bottom:735.848120pt;}
.y9_c00453{bottom:792.238520pt;}
.y8_c00453{bottom:821.384120pt;}
.y7_c00453{bottom:886.957320pt;}
.y6_c00453{bottom:893.610120pt;}
.y5_c00453{bottom:903.430920pt;}
.y4_c00453{bottom:914.518920pt;}
.y3_c00453{bottom:940.496520pt;}
.h6_c00453{height:18.567014pt;}
.h5_c00453{height:21.419063pt;}
.h2_c00453{height:25.698750pt;}
.h17_c00453{height:29.538549pt;}
.he_c00453{height:31.226460pt;}
.hc_c00453{height:32.914370pt;}
.h1a_c00453{height:34.602280pt;}
.h15_c00453{height:35.446236pt;}
.h7_c00453{height:36.712500pt;}
.h14_c00453{height:37.978101pt;}
.h19_c00453{height:41.974453pt;}
.h9_c00453{height:45.083672pt;}
.h11_c00453{height:52.131750pt;}
.h1d_c00453{height:52.498875pt;}
.h16_c00453{height:55.803000pt;}
.h4_c00453{height:58.729688pt;}
.h12_c00453{height:61.148141pt;}
.h18_c00453{height:61.493438pt;}
.hf_c00453{height:62.844204pt;}
.hd_c00453{height:63.566250pt;}
.h8_c00453{height:65.466501pt;}
.ha_c00453{height:66.330173pt;}
.hb_c00453{height:66.502734pt;}
.h10_c00453{height:66.633188pt;}
.h1c_c00453{height:68.748281pt;}
.h13_c00453{height:70.488184pt;}
.h1b_c00453{height:70.821094pt;}
.h3_c00453{height:76.694235pt;}
.h1_c00453{height:986.666667pt;}
.h0_c00453{height:1122.666667pt;}
.w1_c00453{width:684.000000pt;}
.w0_c00453{width:793.333333pt;}
.x0_c00453{left:0.000000pt;}
.x2_c00453{left:50.605587pt;}
.x1_c00453{left:54.666667pt;}
.x61_c00453{left:81.387987pt;}
.x55_c00453{left:82.580387pt;}
.x4a_c00453{left:83.904787pt;}
.x3d_c00453{left:84.881587pt;}
.x1c_c00453{left:86.663587pt;}
.x8_c00453{left:87.833987pt;}
.x47_c00453{left:103.132787pt;}
.x80_c00453{left:110.256387pt;}
.x5c_c00453{left:112.218787pt;}
.x2c_c00453{left:113.705987pt;}
.x75_c00453{left:120.041987pt;}
.x3e_c00453{left:123.073587pt;}
.x12_c00453{left:126.457187pt;}
.x48_c00453{left:131.173987pt;}
.x13_c00453{left:133.285987pt;}
.x9_c00453{left:134.597187pt;}
.x8e_c00453{left:140.462387pt;}
.x34_c00453{left:142.182787pt;}
.x3f_c00453{left:152.452387pt;}
.x6f_c00453{left:159.677187pt;}
.x88_c00453{left:160.693587pt;}
.x56_c00453{left:161.683587pt;}
.x14_c00453{left:163.241187pt;}
.x81_c00453{left:169.467187pt;}
.xa_c00453{left:173.431587pt;}
.x8f_c00453{left:178.645587pt;}
.x62_c00453{left:180.203187pt;}
.x25_c00453{left:182.275587pt;}
.x39_c00453{left:183.357987pt;}
.x82_c00453{left:189.878787pt;}
.x79_c00453{left:190.873187pt;}
.x50_c00453{left:192.135987pt;}
.x6b_c00453{left:199.915187pt;}
.x40_c00453{left:200.830387pt;}
.x2d_c00453{left:202.590387pt;}
.x5d_c00453{left:209.735987pt;}
.x4b_c00453{left:211.473987pt;}
.x83_c00453{left:218.892387pt;}
.x2e_c00453{left:220.938387pt;}
.x51_c00453{left:230.407187pt;}
.x66_c00453{left:239.013587pt;}
.x6c_c00453{left:240.298387pt;}
.x15_c00453{left:242.106787pt;}
.x26_c00453{left:250.251187pt;}
.x1d_c00453{left:253.529187pt;}
.x2f_c00453{left:259.750787pt;}
.xb_c00453{left:261.840787pt;}
.x84_c00453{left:269.399987pt;}
.x89_c00453{left:278.939187pt;}
.x41_c00453{left:281.645187pt;}
.x52_c00453{left:289.213187pt;}
.x16_c00453{left:290.167987pt;}
.x27_c00453{left:291.553987pt;}
.x3a_c00453{left:300.459587pt;}
.x6d_c00453{left:308.067187pt;}
.x8a_c00453{left:308.995587pt;}
.xc_c00453{left:310.570787pt;}
.x1e_c00453{left:311.556387pt;}
.x76_c00453{left:318.420387pt;}
.x53_c00453{left:319.766787pt;}
.x35_c00453{left:320.703987pt;}
.x5e_c00453{left:328.817587pt;}
.x30_c00453{left:329.825187pt;}
.xd_c00453{left:340.103587pt;}
.x85_c00453{left:348.199587pt;}
.x28_c00453{left:360.009187pt;}
.x70_c00453{left:367.145987pt;}
.x1f_c00453{left:368.729987pt;}
.x17_c00453{left:370.837587pt;}
.x67_c00453{left:377.305587pt;}
.x4c_c00453{left:379.012787pt;}
.x7a_c00453{left:387.887587pt;}
.x29_c00453{left:389.066787pt;}
.xe_c00453{left:398.509187pt;}
.x77_c00453{left:406.750387pt;}
.x71_c00453{left:407.837187pt;}
.x42_c00453{left:408.831587pt;}
.x5f_c00453{left:416.562387pt;}
.x36_c00453{left:418.533587pt;}
.x68_c00453{left:420.060387pt;}
.x63_c00453{left:427.505187pt;}
.x20_c00453{left:429.713987pt;}
.x31_c00453{left:437.488787pt;}
.x18_c00453{left:438.487587pt;}
.x8b_c00453{left:446.491187pt;}
.x43_c00453{left:448.950787pt;}
.x32_c00453{left:457.909187pt;}
.x57_c00453{left:465.987587pt;}
.x2a_c00453{left:467.316387pt;}
.x3b_c00453{left:468.530787pt;}
.x44_c00453{left:477.044787pt;}
.x7b_c00453{left:485.923987pt;}
.x21_c00453{left:486.905187pt;}
.x72_c00453{left:495.573187pt;}
.xf_c00453{left:497.535587pt;}
.x69_c00453{left:504.672387pt;}
.x58_c00453{left:506.370787pt;}
.x64_c00453{left:515.535987pt;}
.x54_c00453{left:516.468787pt;}
.x4d_c00453{left:518.303587pt;}
.x73_c00453{left:525.352387pt;}
.x22_c00453{left:527.121187pt;}
.x6a_c00453{left:534.095187pt;}
.x10_c00453{left:536.325987pt;}
.x19_c00453{left:537.403987pt;}
.x7c_c00453{left:544.364787pt;}
.x65_c00453{left:545.332787pt;}
.x59_c00453{left:546.318387pt;}
.x60_c00453{left:554.374787pt;}
.x33_c00453{left:555.536387pt;}
.x2b_c00453{left:556.975187pt;}
.x8c_c00453{left:563.368387pt;}
.x23_c00453{left:564.829187pt;}
.x86_c00453{left:573.558787pt;}
.x7d_c00453{left:574.465187pt;}
.x11_c00453{left:576.871987pt;}
.x37_c00453{left:583.524787pt;}
.x3c_c00453{left:584.853587pt;}
.x24_c00453{left:585.971187pt;}
.x8d_c00453{left:593.490787pt;}
.x45_c00453{left:594.586387pt;}
.x1a_c00453{left:595.734787pt;}
.x74_c00453{left:602.845187pt;}
.x5a_c00453{left:604.244387pt;}
.x4e_c00453{left:606.734787pt;}
.x6e_c00453{left:612.349187pt;}
.x87_c00453{left:614.315987pt;}
.x49_c00453{left:623.080787pt;}
.x4f_c00453{left:624.422787pt;}
.x5_c00453{left:628.303587pt;}
.x6_c00453{left:629.306787pt;}
.x7_c00453{left:631.814787pt;}
.x78_c00453{left:633.407587pt;}
.x1b_c00453{left:634.569187pt;}
.x3_c00453{left:636.232387pt;}
.x7e_c00453{left:643.193187pt;}
.x38_c00453{left:644.438387pt;}
.x4_c00453{left:646.189587pt;}
.x46_c00453{left:654.316387pt;}
.x7f_c00453{left:663.534387pt;}
.x5b_c00453{left:671.278387pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_10d7b6be4ac26bae4a4747f0.woff2')format("woff");}.ff1_c00454{font-family:ff1_c00454;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00454;src:url('chunks/assets/font_c8dcb0c3448118a486e67d7a.woff2')format("woff");}.ff2_c00454{font-family:ff2_c00454;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00454;src:url('chunks/assets/font_cf5a7df5e07bdc4f74a92930.woff2')format("woff");}.ff3_c00454{font-family:ff3_c00454;line-height:0.666000;font-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_c00454{transform:matrix(0.026596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026596,0.000000,0.000000,0.250000,0,0);}
.m55_c00454{transform:matrix(0.075817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075817,0.000000,0.000000,0.250000,0,0);}
.m4f_c00454{transform:matrix(0.077451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077451,0.000000,0.000000,0.250000,0,0);}
.ma3_c00454{transform:matrix(0.083337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083337,0.000000,0.000000,0.250000,0,0);}
.m3b_c00454{transform:matrix(0.094416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094416,0.000000,0.000000,0.250000,0,0);}
.m25_c00454{transform:matrix(0.100926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100926,0.000000,0.000000,0.250000,0,0);}
.m3d_c00454{transform:matrix(0.125997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125997,0.000000,0.000000,0.250000,0,0);}
.m39_c00454{transform:matrix(0.130320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130320,0.000000,0.000000,0.250000,0,0);}
.m2b_c00454{transform:matrix(0.140046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140046,0.000000,0.000000,0.250000,0,0);}
.m4a_c00454{transform:matrix(0.143116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143116,0.000000,0.000000,0.250000,0,0);}
.m52_c00454{transform:matrix(0.158341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158341,0.000000,0.000000,0.250000,0,0);}
.m24_c00454{transform:matrix(0.161111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161111,0.000000,0.000000,0.250000,0,0);}
.m29_c00454{transform:matrix(0.162236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162236,0.000000,0.000000,0.250000,0,0);}
.m54_c00454{transform:matrix(0.177398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177398,0.000000,0.000000,0.250000,0,0);}
.m7e_c00454{transform:matrix(0.177760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177760,0.000000,0.000000,0.250000,0,0);}
.m93_c00454{transform:matrix(0.182926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182926,0.000000,0.000000,0.250000,0,0);}
.m23_c00454{transform:matrix(0.183333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183333,0.000000,0.000000,0.250000,0,0);}
.ma0_c00454{transform:matrix(0.183535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183535,0.000000,0.000000,0.250000,0,0);}
.m96_c00454{transform:matrix(0.193090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193090,0.000000,0.000000,0.250000,0,0);}
.ma4_c00454{transform:matrix(0.194440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194440,0.000000,0.000000,0.250000,0,0);}
.m50_c00454{transform:matrix(0.204293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204293,0.000000,0.000000,0.250000,0,0);}
.m14_c00454{transform:matrix(0.216195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216195,0.000000,0.000000,0.250000,0,0);}
.m53_c00454{transform:matrix(0.226858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226858,0.000000,0.000000,0.250000,0,0);}
.m2c_c00454{transform:matrix(0.237155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237155,0.000000,0.000000,0.250000,0,0);}
.m0_c00454{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00454{transform:matrix(0.250227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250227,0.000000,0.000000,0.250000,0,0);}
.m91_c00454{transform:matrix(0.251011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251011,0.000000,0.000000,0.250000,0,0);}
.maa_c00454{transform:matrix(0.251108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251108,0.000000,0.000000,0.250000,0,0);}
.m2a_c00454{transform:matrix(0.251410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251410,0.000000,0.000000,0.250000,0,0);}
.m1_c00454{transform:matrix(0.254542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254542,0.000000,0.000000,0.250000,0,0);}
.m8c_c00454{transform:matrix(0.257331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257331,0.000000,0.000000,0.250000,0,0);}
.m9_c00454{transform:matrix(0.257655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257655,0.000000,0.000000,0.250000,0,0);}
.m61_c00454{transform:matrix(0.258992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258992,0.000000,0.000000,0.250000,0,0);}
.m5_c00454{transform:matrix(0.259997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259997,0.000000,0.000000,0.250000,0,0);}
.m6c_c00454{transform:matrix(0.260709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260709,0.000000,0.000000,0.250000,0,0);}
.m5f_c00454{transform:matrix(0.260982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260982,0.000000,0.000000,0.250000,0,0);}
.m6f_c00454{transform:matrix(0.262306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262306,0.000000,0.000000,0.250000,0,0);}
.m7f_c00454{transform:matrix(0.262870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262870,0.000000,0.000000,0.250000,0,0);}
.m48_c00454{transform:matrix(0.264640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264640,0.000000,0.000000,0.250000,0,0);}
.mac_c00454{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00454{transform:matrix(0.265265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265265,0.000000,0.000000,0.250000,0,0);}
.m58_c00454{transform:matrix(0.266246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266246,0.000000,0.000000,0.250000,0,0);}
.mb3_c00454{transform:matrix(0.266947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266947,0.000000,0.000000,0.250000,0,0);}
.m6d_c00454{transform:matrix(0.267456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267456,0.000000,0.000000,0.250000,0,0);}
.mf_c00454{transform:matrix(0.267564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267564,0.000000,0.000000,0.250000,0,0);}
.m4b_c00454{transform:matrix(0.267932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267932,0.000000,0.000000,0.250000,0,0);}
.m3f_c00454{transform:matrix(0.268246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268246,0.000000,0.000000,0.250000,0,0);}
.m9b_c00454{transform:matrix(0.268310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268310,0.000000,0.000000,0.250000,0,0);}
.m63_c00454{transform:matrix(0.269283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269283,0.000000,0.000000,0.250000,0,0);}
.m35_c00454{transform:matrix(0.269987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269987,0.000000,0.000000,0.250000,0,0);}
.m20_c00454{transform:matrix(0.270611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270611,0.000000,0.000000,0.250000,0,0);}
.m38_c00454{transform:matrix(0.271732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271732,0.000000,0.000000,0.250000,0,0);}
.m2_c00454{transform:matrix(0.271767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271767,0.000000,0.000000,0.250000,0,0);}
.m77_c00454{transform:matrix(0.272247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272247,0.000000,0.000000,0.250000,0,0);}
.m40_c00454{transform:matrix(0.272258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272258,0.000000,0.000000,0.250000,0,0);}
.m7b_c00454{transform:matrix(0.272390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272390,0.000000,0.000000,0.250000,0,0);}
.m19_c00454{transform:matrix(0.273047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273047,0.000000,0.000000,0.250000,0,0);}
.md_c00454{transform:matrix(0.273133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273133,0.000000,0.000000,0.250000,0,0);}
.m30_c00454{transform:matrix(0.273926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273926,0.000000,0.000000,0.250000,0,0);}
.m3e_c00454{transform:matrix(0.274423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274423,0.000000,0.000000,0.250000,0,0);}
.m81_c00454{transform:matrix(0.274922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274922,0.000000,0.000000,0.250000,0,0);}
.m11_c00454{transform:matrix(0.275193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275193,0.000000,0.000000,0.250000,0,0);}
.m28_c00454{transform:matrix(0.275674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275674,0.000000,0.000000,0.250000,0,0);}
.m5c_c00454{transform:matrix(0.275843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275843,0.000000,0.000000,0.250000,0,0);}
.m45_c00454{transform:matrix(0.276952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276952,0.000000,0.000000,0.250000,0,0);}
.m8f_c00454{transform:matrix(0.277058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277058,0.000000,0.000000,0.250000,0,0);}
.ma2_c00454{transform:matrix(0.277777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277777,0.000000,0.000000,0.250000,0,0);}
.m41_c00454{transform:matrix(0.277836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277836,0.000000,0.000000,0.250000,0,0);}
.m88_c00454{transform:matrix(0.278483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278483,0.000000,0.000000,0.250000,0,0);}
.m59_c00454{transform:matrix(0.278711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278711,0.000000,0.000000,0.250000,0,0);}
.m84_c00454{transform:matrix(0.279236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279236,0.000000,0.000000,0.250000,0,0);}
.m70_c00454{transform:matrix(0.280532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280532,0.000000,0.000000,0.250000,0,0);}
.m5b_c00454{transform:matrix(0.280664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280664,0.000000,0.000000,0.250000,0,0);}
.maf_c00454{transform:matrix(0.281646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281646,0.000000,0.000000,0.250000,0,0);}
.m89_c00454{transform:matrix(0.283490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283490,0.000000,0.000000,0.250000,0,0);}
.m33_c00454{transform:matrix(0.284358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284358,0.000000,0.000000,0.250000,0,0);}
.m4d_c00454{transform:matrix(0.284986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284986,0.000000,0.000000,0.250000,0,0);}
.m9a_c00454{transform:matrix(0.285265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285265,0.000000,0.000000,0.250000,0,0);}
.m56_c00454{transform:matrix(0.286158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286158,0.000000,0.000000,0.250000,0,0);}
.m17_c00454{transform:matrix(0.286605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286605,0.000000,0.000000,0.250000,0,0);}
.mb1_c00454{transform:matrix(0.287677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287677,0.000000,0.000000,0.250000,0,0);}
.m21_c00454{transform:matrix(0.287949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287949,0.000000,0.000000,0.250000,0,0);}
.m26_c00454{transform:matrix(0.288058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288058,0.000000,0.000000,0.250000,0,0);}
.m98_c00454{transform:matrix(0.289117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289117,0.000000,0.000000,0.250000,0,0);}
.m74_c00454{transform:matrix(0.289347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289347,0.000000,0.000000,0.250000,0,0);}
.m9d_c00454{transform:matrix(0.289554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289554,0.000000,0.000000,0.250000,0,0);}
.m60_c00454{transform:matrix(0.290271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290271,0.000000,0.000000,0.250000,0,0);}
.mab_c00454{transform:matrix(0.290704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290704,0.000000,0.000000,0.250000,0,0);}
.m49_c00454{transform:matrix(0.291056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291056,0.000000,0.000000,0.250000,0,0);}
.mae_c00454{transform:matrix(0.291427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291427,0.000000,0.000000,0.250000,0,0);}
.m27_c00454{transform:matrix(0.292432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292432,0.000000,0.000000,0.250000,0,0);}
.mb4_c00454{transform:matrix(0.292448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292448,0.000000,0.000000,0.250000,0,0);}
.m13_c00454{transform:matrix(0.293282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293282,0.000000,0.000000,0.250000,0,0);}
.m73_c00454{transform:matrix(0.293567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293567,0.000000,0.000000,0.250000,0,0);}
.m12_c00454{transform:matrix(0.293947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293947,0.000000,0.000000,0.250000,0,0);}
.m2d_c00454{transform:matrix(0.294108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294108,0.000000,0.000000,0.250000,0,0);}
.m8e_c00454{transform:matrix(0.294653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294653,0.000000,0.000000,0.250000,0,0);}
.m6_c00454{transform:matrix(0.295158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295158,0.000000,0.000000,0.250000,0,0);}
.m51_c00454{transform:matrix(0.296308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296308,0.000000,0.000000,0.250000,0,0);}
.m9f_c00454{transform:matrix(0.296609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296609,0.000000,0.000000,0.250000,0,0);}
.m37_c00454{transform:matrix(0.296749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296749,0.000000,0.000000,0.250000,0,0);}
.m78_c00454{transform:matrix(0.297480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297480,0.000000,0.000000,0.250000,0,0);}
.m65_c00454{transform:matrix(0.298320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298320,0.000000,0.000000,0.250000,0,0);}
.m75_c00454{transform:matrix(0.299792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299792,0.000000,0.000000,0.250000,0,0);}
.m64_c00454{transform:matrix(0.299881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299881,0.000000,0.000000,0.250000,0,0);}
.m83_c00454{transform:matrix(0.300160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300160,0.000000,0.000000,0.250000,0,0);}
.m76_c00454{transform:matrix(0.300767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300767,0.000000,0.000000,0.250000,0,0);}
.m67_c00454{transform:matrix(0.302008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302008,0.000000,0.000000,0.250000,0,0);}
.m5d_c00454{transform:matrix(0.302327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302327,0.000000,0.000000,0.250000,0,0);}
.m36_c00454{transform:matrix(0.303437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303437,0.000000,0.000000,0.250000,0,0);}
.m8_c00454{transform:matrix(0.303678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303678,0.000000,0.000000,0.250000,0,0);}
.m9c_c00454{transform:matrix(0.304690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304690,0.000000,0.000000,0.250000,0,0);}
.m7c_c00454{transform:matrix(0.304990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304990,0.000000,0.000000,0.250000,0,0);}
.m5a_c00454{transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);}
.m92_c00454{transform:matrix(0.305133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305133,0.000000,0.000000,0.250000,0,0);}
.m72_c00454{transform:matrix(0.307041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307041,0.000000,0.000000,0.250000,0,0);}
.m44_c00454{transform:matrix(0.307870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307870,0.000000,0.000000,0.250000,0,0);}
.m3a_c00454{transform:matrix(0.308511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308511,0.000000,0.000000,0.250000,0,0);}
.m6a_c00454{transform:matrix(0.309164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309164,0.000000,0.000000,0.250000,0,0);}
.m4c_c00454{transform:matrix(0.311629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311629,0.000000,0.000000,0.250000,0,0);}
.mb0_c00454{transform:matrix(0.311823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311823,0.000000,0.000000,0.250000,0,0);}
.m5e_c00454{transform:matrix(0.311927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311927,0.000000,0.000000,0.250000,0,0);}
.m42_c00454{transform:matrix(0.312410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312410,0.000000,0.000000,0.250000,0,0);}
.m32_c00454{transform:matrix(0.312580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312580,0.000000,0.000000,0.250000,0,0);}
.m97_c00454{transform:matrix(0.313141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313141,0.000000,0.000000,0.250000,0,0);}
.mb2_c00454{transform:matrix(0.313630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313630,0.000000,0.000000,0.250000,0,0);}
.ma_c00454{transform:matrix(0.314890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314890,0.000000,0.000000,0.250000,0,0);}
.m94_c00454{transform:matrix(0.315110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315110,0.000000,0.000000,0.250000,0,0);}
.m66_c00454{transform:matrix(0.316760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316760,0.000000,0.000000,0.250000,0,0);}
.m82_c00454{transform:matrix(0.317811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317811,0.000000,0.000000,0.250000,0,0);}
.ma1_c00454{transform:matrix(0.318320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318320,0.000000,0.000000,0.250000,0,0);}
.m3_c00454{transform:matrix(0.318591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318591,0.000000,0.000000,0.250000,0,0);}
.m85_c00454{transform:matrix(0.319270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319270,0.000000,0.000000,0.250000,0,0);}
.m1e_c00454{transform:matrix(0.319849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319849,0.000000,0.000000,0.250000,0,0);}
.m90_c00454{transform:matrix(0.320953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320953,0.000000,0.000000,0.250000,0,0);}
.m47_c00454{transform:matrix(0.321698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321698,0.000000,0.000000,0.250000,0,0);}
.m4_c00454{transform:matrix(0.322843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322843,0.000000,0.000000,0.250000,0,0);}
.m99_c00454{transform:matrix(0.323140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323140,0.000000,0.000000,0.250000,0,0);}
.m10_c00454{transform:matrix(0.323335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323335,0.000000,0.000000,0.250000,0,0);}
.m22_c00454{transform:matrix(0.323403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323403,0.000000,0.000000,0.250000,0,0);}
.m86_c00454{transform:matrix(0.325011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325011,0.000000,0.000000,0.250000,0,0);}
.m6e_c00454{transform:matrix(0.325054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325054,0.000000,0.000000,0.250000,0,0);}
.m7a_c00454{transform:matrix(0.325788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325788,0.000000,0.000000,0.250000,0,0);}
.m6b_c00454{transform:matrix(0.326558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326558,0.000000,0.000000,0.250000,0,0);}
.m71_c00454{transform:matrix(0.326747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326747,0.000000,0.000000,0.250000,0,0);}
.m34_c00454{transform:matrix(0.326768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326768,0.000000,0.000000,0.250000,0,0);}
.m1b_c00454{transform:matrix(0.327703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327703,0.000000,0.000000,0.250000,0,0);}
.m1c_c00454{transform:matrix(0.328933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328933,0.000000,0.000000,0.250000,0,0);}
.m31_c00454{transform:matrix(0.330332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330332,0.000000,0.000000,0.250000,0,0);}
.m57_c00454{transform:matrix(0.330584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330584,0.000000,0.000000,0.250000,0,0);}
.mc_c00454{transform:matrix(0.331586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331586,0.000000,0.000000,0.250000,0,0);}
.m43_c00454{transform:matrix(0.332388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332388,0.000000,0.000000,0.250000,0,0);}
.m9e_c00454{transform:matrix(0.333475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333475,0.000000,0.000000,0.250000,0,0);}
.m7d_c00454{transform:matrix(0.334034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334034,0.000000,0.000000,0.250000,0,0);}
.m1a_c00454{transform:matrix(0.334186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334186,0.000000,0.000000,0.250000,0,0);}
.m62_c00454{transform:matrix(0.336342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336342,0.000000,0.000000,0.250000,0,0);}
.m15_c00454{transform:matrix(0.337160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337160,0.000000,0.000000,0.250000,0,0);}
.m8a_c00454{transform:matrix(0.337679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337679,0.000000,0.000000,0.250000,0,0);}
.m8d_c00454{transform:matrix(0.339224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339224,0.000000,0.000000,0.250000,0,0);}
.m2f_c00454{transform:matrix(0.340219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340219,0.000000,0.000000,0.250000,0,0);}
.m95_c00454{transform:matrix(0.341004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341004,0.000000,0.000000,0.250000,0,0);}
.me_c00454{transform:matrix(0.344207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344207,0.000000,0.000000,0.250000,0,0);}
.m1d_c00454{transform:matrix(0.347093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347093,0.000000,0.000000,0.250000,0,0);}
.m46_c00454{transform:matrix(0.347743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347743,0.000000,0.000000,0.250000,0,0);}
.ma6_c00454{transform:matrix(0.349095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349095,0.000000,0.000000,0.250000,0,0);}
.mb_c00454{transform:matrix(0.352087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352087,0.000000,0.000000,0.250000,0,0);}
.m87_c00454{transform:matrix(0.353182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353182,0.000000,0.000000,0.250000,0,0);}
.ma5_c00454{transform:matrix(0.354164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354164,0.000000,0.000000,0.250000,0,0);}
.mad_c00454{transform:matrix(0.357148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357148,0.000000,0.000000,0.250000,0,0);}
.m18_c00454{transform:matrix(0.358659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358659,0.000000,0.000000,0.250000,0,0);}
.m8b_c00454{transform:matrix(0.363181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363181,0.000000,0.000000,0.250000,0,0);}
.m7_c00454{transform:matrix(0.363762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363762,0.000000,0.000000,0.250000,0,0);}
.m68_c00454{transform:matrix(0.368980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368980,0.000000,0.000000,0.250000,0,0);}
.m79_c00454{transform:matrix(0.369365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369365,0.000000,0.000000,0.250000,0,0);}
.m80_c00454{transform:matrix(0.381340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381340,0.000000,0.000000,0.250000,0,0);}
.m16_c00454{transform:matrix(0.387392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387392,0.000000,0.000000,0.250000,0,0);}
.m69_c00454{transform:matrix(0.399498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399498,0.000000,0.000000,0.250000,0,0);}
.ma8_c00454{transform:matrix(0.457873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457873,0.000000,0.000000,0.250000,0,0);}
.m4e_c00454{transform:matrix(0.461956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461956,0.000000,0.000000,0.250000,0,0);}
.ma7_c00454{transform:matrix(0.494613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494613,0.000000,0.000000,0.250000,0,0);}
.ma9_c00454{transform:matrix(1.239763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.239763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.239763,0.000000,0.000000,0.250000,0,0);}
.v1_c00454{vertical-align:-24.215400px;}
.v0_c00454{vertical-align:0.000000px;}
.ls11_c00454{letter-spacing:-3.007627px;}
.ls7_c00454{letter-spacing:-2.952180px;}
.ls1c_c00454{letter-spacing:-2.827440px;}
.ls10_c00454{letter-spacing:-2.813580px;}
.ls5_c00454{letter-spacing:-2.730427px;}
.ls0_c00454{letter-spacing:0.000000px;}
.ls20_c00454{letter-spacing:0.351055px;}
.ls4_c00454{letter-spacing:0.483676px;}
.ls1f_c00454{letter-spacing:0.762300px;}
.ls1e_c00454{letter-spacing:0.831600px;}
.lsf_c00454{letter-spacing:1.019700px;}
.lsa_c00454{letter-spacing:2.617006px;}
.lsd_c00454{letter-spacing:2.691421px;}
.ls17_c00454{letter-spacing:3.206301px;}
.ls13_c00454{letter-spacing:3.221904px;}
.ls3_c00454{letter-spacing:3.316500px;}
.ls14_c00454{letter-spacing:3.504610px;}
.ls18_c00454{letter-spacing:3.623400px;}
.lsc_c00454{letter-spacing:3.653110px;}
.ls19_c00454{letter-spacing:3.801610px;}
.ls2_c00454{letter-spacing:3.900610px;}
.ls8_c00454{letter-spacing:3.940200px;}
.ls12_c00454{letter-spacing:3.950110px;}
.ls15_c00454{letter-spacing:4.118400px;}
.ls16_c00454{letter-spacing:4.296610px;}
.ls1_c00454{letter-spacing:4.395610px;}
.ls1d_c00454{letter-spacing:8.553798px;}
.ls1b_c00454{letter-spacing:58.449798px;}
.ls1a_c00454{letter-spacing:62.726400px;}
.ls6_c00454{letter-spacing:64.152198px;}
.lsb_c00454{letter-spacing:65.577798px;}
.ls9_c00454{letter-spacing:67.003200px;}
.lse_c00454{letter-spacing:72.705798px;}
.sc__c00454{text-shadow:none;}
.sc0_c00454{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00454{-webkit-text-stroke:0px transparent;}
.sc0_c00454{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00454{word-spacing:-19.503050px;}
.ws1_c00454{word-spacing:-4.623696px;}
.ws2_c00454{word-spacing:0.000000px;}
._2_c00454{width:2.527668px;}
._3_c00454{width:5.731704px;}
._4_c00454{width:7.425990px;}
._5_c00454{width:8.882082px;}
._7_c00454{width:11.250756px;}
._0_c00454{width:13.028103px;}
._8_c00454{width:14.589630px;}
._a_c00454{width:16.573986px;}
._6_c00454{width:19.057104px;}
._9_c00454{width:20.129076px;}
._1_c00454{width:23.325709px;}
._b_c00454{width:118.225800px;}
.fc0_c00454{color:transparent;}
.fs1c_c00454{font-size:8.553798px;}
.fs1e_c00454{font-size:15.246000px;}
.fs1d_c00454{font-size:16.632000px;}
.fse_c00454{font-size:20.394000px;}
.fs20_c00454{font-size:22.176000px;}
.fs4_c00454{font-size:22.572000px;}
.fs0_c00454{font-size:27.720000px;}
.fs1f_c00454{font-size:28.314000px;}
.fs18_c00454{font-size:33.264000px;}
.fs21_c00454{font-size:39.600000px;}
.fs7_c00454{font-size:39.798000px;}
.fs19_c00454{font-size:54.648000px;}
.fs1a_c00454{font-size:58.449798px;}
.fs17_c00454{font-size:62.726400px;}
.fs6_c00454{font-size:64.152198px;}
.fsc_c00454{font-size:65.577798px;}
.fs3_c00454{font-size:66.330000px;}
.fsa_c00454{font-size:67.003200px;}
.fs14_c00454{font-size:68.112198px;}
.fsb_c00454{font-size:68.508000px;}
.fs10_c00454{font-size:70.092198px;}
.fs15_c00454{font-size:72.468000px;}
.fsd_c00454{font-size:72.705798px;}
.fs5_c00454{font-size:73.062198px;}
.fs16_c00454{font-size:76.032198px;}
.fs2_c00454{font-size:78.012198px;}
.fs9_c00454{font-size:78.804000px;}
.fs12_c00454{font-size:79.002198px;}
.fsf_c00454{font-size:80.388000px;}
.fs1b_c00454{font-size:80.784000px;}
.fs13_c00454{font-size:82.368000px;}
.fs8_c00454{font-size:84.348000px;}
.fs11_c00454{font-size:85.932198px;}
.fs1_c00454{font-size:87.912198px;}
.y0_c00454{bottom:0.000000px;}
.y22_c00454{bottom:32.695785px;}
.y21_c00454{bottom:51.589935px;}
.y1_c00454{bottom:76.500000px;}
.y20_c00454{bottom:95.070735px;}
.y1f_c00454{bottom:148.882185px;}
.y1e_c00454{bottom:179.893935px;}
.y1d_c00454{bottom:184.522185px;}
.y1c_c00454{bottom:185.239935px;}
.y1b_c00454{bottom:251.886735px;}
.y19_c00454{bottom:283.249935px;}
.y1a_c00454{bottom:289.303785px;}
.y18_c00454{bottom:315.320985px;}
.y17_c00454{bottom:347.040585px;}
.y16_c00454{bottom:370.567935px;}
.y15_c00454{bottom:379.477935px;}
.y14_c00454{bottom:401.218335px;}
.y12_c00454{bottom:443.273535px;}
.y13_c00454{bottom:446.481135px;}
.y11_c00454{bottom:474.988185px;}
.y10_c00454{bottom:507.069135px;}
.yf_c00454{bottom:539.140185px;}
.ye_c00454{bottom:569.439135px;}
.yd_c00454{bottom:603.297135px;}
.y2_c00454{bottom:614.340585px;}
.yc_c00454{bottom:636.442335px;}
.yb_c00454{bottom:668.156985px;}
.ya_c00454{bottom:701.307135px;}
.y9_c00454{bottom:795.748185px;}
.y8_c00454{bottom:827.472735px;}
.y7_c00454{bottom:859.900185px;}
.y6_c00454{bottom:892.332585px;}
.y5_c00454{bottom:910.508985px;}
.y4_c00454{bottom:924.769935px;}
.y3_c00454{bottom:1060.553385px;}
.h1e_c00454{height:5.696829px;}
.h20_c00454{height:15.901102px;}
.h1f_c00454{height:17.346656px;}
.h10_c00454{height:20.015596px;}
.h22_c00454{height:23.128875px;}
.h6_c00454{height:23.541891px;}
.h2_c00454{height:28.911094px;}
.h21_c00454{height:29.530617px;}
.h1a_c00454{height:34.693313px;}
.h1c_c00454{height:38.927565px;}
.h23_c00454{height:41.301563px;}
.h9_c00454{height:41.508070px;}
.h19_c00454{height:41.775782px;}
.h8_c00454{height:42.725364px;}
.he_c00454{height:43.674813px;}
.hc_c00454{height:44.624131px;}
.hf_c00454{height:48.422061px;}
.h1b_c00454{height:56.996156px;}
.h5_c00454{height:69.180117px;}
.h16_c00454{height:71.038894px;}
.h17_c00454{height:71.123379px;}
.hd_c00454{height:71.451703px;}
.h7_c00454{height:71.706552px;}
.h12_c00454{height:73.103972px;}
.h18_c00454{height:74.621444px;}
.h4_c00454{height:76.564706px;}
.hb_c00454{height:77.341816px;}
.h14_c00454{height:77.536337px;}
.h1d_c00454{height:79.285078px;}
.h15_c00454{height:80.839688px;}
.ha_c00454{height:82.782949px;}
.h11_c00454{height:83.842172px;}
.h13_c00454{height:84.337753px;}
.h3_c00454{height:86.281015px;}
.h1_c00454{height:1110.000000px;}
.h0_c00454{height:1263.000000px;}
.w1_c00454{width:769.500000px;}
.w0_c00454{width:892.500000px;}
.x0_c00454{left:0.000000px;}
.x2_c00454{left:58.356885px;}
.x1_c00454{left:61.500000px;}
.x60_c00454{left:92.115885px;}
.x4d_c00454{left:93.397935px;}
.x29_c00454{left:94.571085px;}
.x10_c00454{left:95.630385px;}
.x35_c00454{left:97.798485px;}
.x86_c00454{left:101.278335px;}
.x87_c00454{left:113.836485px;}
.x52_c00454{left:125.785785px;}
.x21_c00454{left:127.359885px;}
.x36_c00454{left:130.864485px;}
.x55_c00454{left:135.443235px;}
.x1a_c00454{left:137.556885px;}
.x64_c00454{left:146.372835px;}
.x4_c00454{left:148.867635px;}
.x2b_c00454{left:150.986235px;}
.x4e_c00454{left:155.807535px;}
.x71_c00454{left:157.648935px;}
.x1b_c00454{left:159.416085px;}
.x37_c00454{left:160.747635px;}
.x61_c00454{left:168.900285px;}
.x47_c00454{left:171.598035px;}
.x2c_c00454{left:174.384885px;}
.x56_c00454{left:179.607135px;}
.xf_c00454{left:183.423585px;}
.x2d_c00454{left:184.735335px;}
.x5_c00454{left:192.848385px;}
.x2a_c00454{left:194.699685px;}
.x2e_c00454{left:196.501485px;}
.x11_c00454{left:203.634435px;}
.x22_c00454{left:205.777785px;}
.x76_c00454{left:211.475235px;}
.x40_c00454{left:215.395635px;}
.x6a_c00454{left:223.627485px;}
.x23_c00454{left:225.770835px;}
.x8f_c00454{left:232.304835px;}
.x7c_c00454{left:234.200685px;}
.x53_c00454{left:235.527285px;}
.x38_c00454{left:236.626185px;}
.x57_c00454{left:246.734085px;}
.x2f_c00454{left:248.219085px;}
.x72_c00454{left:256.035135px;}
.x6b_c00454{left:257.064735px;}
.x77_c00454{left:258.767535px;}
.x62_c00454{left:261.732585px;}
.x24_c00454{left:269.063535px;}
.x12_c00454{left:280.116885px;}
.x73_c00454{left:289.922835px;}
.x30_c00454{left:291.863235px;}
.x7d_c00454{left:300.060435px;}
.x13_c00454{left:301.124685px;}
.x6_c00454{left:302.144385px;}
.x25_c00454{left:304.411485px;}
.x41_c00454{left:313.776885px;}
.x39_c00454{left:316.237035px;}
.x6c_c00454{left:324.449085px;}
.x4f_c00454{left:334.363935px;}
.x7_c00454{left:336.616185px;}
.x58_c00454{left:345.516285px;}
.x1c_c00454{left:347.184435px;}
.x42_c00454{left:358.356585px;}
.x65_c00454{left:367.969485px;}
.x8_c00454{left:369.271335px;}
.x6d_c00454{left:379.017885px;}
.x5e_c00454{left:380.443485px;}
.x50_c00454{left:388.036785px;}
.x48_c00454{left:390.635535px;}
.x66_c00454{left:401.456235px;}
.x31_c00454{left:402.540285px;}
.x14_c00454{left:403.589685px;}
.x78_c00454{left:412.123485px;}
.x6e_c00454{left:413.568885px;}
.x9_c00454{left:414.811335px;}
.x3a_c00454{left:423.775785px;}
.x59_c00454{left:424.993485px;}
.x26_c00454{left:435.185535px;}
.x15_c00454{left:436.279485px;}
.x5a_c00454{left:445.268685px;}
.xa_c00454{left:446.966535px;}
.x27_c00454{left:448.367385px;}
.x3b_c00454{left:449.441535px;}
.x3c_c00454{left:451.579935px;}
.x74_c00454{left:456.693285px;}
.x1d_c00454{left:457.802085px;}
.x16_c00454{left:467.919885px;}
.x49_c00454{left:480.240435px;}
.x7e_c00454{left:489.590985px;}
.x1e_c00454{left:491.580885px;}
.x88_c00454{left:499.718685px;}
.xb_c00454{left:502.307535px;}
.x28_c00454{left:505.010235px;}
.x6f_c00454{left:510.643335px;}
.x32_c00454{left:513.321285px;}
.x89_c00454{left:522.652035px;}
.x17_c00454{left:524.661735px;}
.x79_c00454{left:534.680535px;}
.x5f_c00454{left:543.877635px;}
.x67_c00454{left:547.154535px;}
.x5b_c00454{left:556.173435px;}
.x1f_c00454{left:558.480135px;}
.x7a_c00454{left:564.197385px;}
.x8a_c00454{left:565.370535px;}
.x33_c00454{left:566.583285px;}
.xc_c00454{left:567.771285px;}
.x54_c00454{left:578.393985px;}
.x4a_c00454{left:580.270035px;}
.x8b_c00454{left:586.957485px;}
.x43_c00454{left:590.333385px;}
.x81_c00454{left:598.060335px;}
.x75_c00454{left:599.975985px;}
.x20_c00454{left:601.366935px;}
.x82_c00454{left:607.321785px;}
.x68_c00454{left:612.024285px;}
.x4b_c00454{left:613.380585px;}
.x83_c00454{left:614.806185px;}
.x44_c00454{left:622.924185px;}
.x18_c00454{left:624.810135px;}
.x84_c00454{left:629.275035px;}
.x7f_c00454{left:631.878735px;}
.x3d_c00454{left:633.502335px;}
.xd_c00454{left:635.205135px;}
.x7b_c00454{left:644.120085px;}
.x51_c00454{left:645.575385px;}
.x80_c00454{left:654.470535px;}
.x19_c00454{left:657.188085px;}
.x8c_c00454{left:666.231735px;}
.x34_c00454{left:668.147385px;}
.x4c_c00454{left:669.736335px;}
.x45_c00454{left:678.275085px;}
.x70_c00454{left:689.056185px;}
.xe_c00454{left:700.812435px;}
.x5c_c00454{left:702.881535px;}
.x8e_c00454{left:705.158535px;}
.x63_c00454{left:706.693035px;}
.x69_c00454{left:709.836285px;}
.x3_c00454{left:711.123285px;}
.x3e_c00454{left:712.583535px;}
.x85_c00454{left:716.578185px;}
.x5d_c00454{left:721.805385px;}
.x8d_c00454{left:732.581535px;}
.x3f_c00454{left:734.323935px;}
.x46_c00454{left:735.343635px;}
@media print{
.v1_c00454{vertical-align:-21.524800pt;}
.v0_c00454{vertical-align:0.000000pt;}
.ls11_c00454{letter-spacing:-2.673446pt;}
.ls7_c00454{letter-spacing:-2.624160pt;}
.ls1c_c00454{letter-spacing:-2.513280pt;}
.ls10_c00454{letter-spacing:-2.500960pt;}
.ls5_c00454{letter-spacing:-2.427046pt;}
.ls0_c00454{letter-spacing:0.000000pt;}
.ls20_c00454{letter-spacing:0.312049pt;}
.ls4_c00454{letter-spacing:0.429934pt;}
.ls1f_c00454{letter-spacing:0.677600pt;}
.ls1e_c00454{letter-spacing:0.739200pt;}
.lsf_c00454{letter-spacing:0.906400pt;}
.lsa_c00454{letter-spacing:2.326227pt;}
.lsd_c00454{letter-spacing:2.392374pt;}
.ls17_c00454{letter-spacing:2.850046pt;}
.ls13_c00454{letter-spacing:2.863914pt;}
.ls3_c00454{letter-spacing:2.948000pt;}
.ls14_c00454{letter-spacing:3.115209pt;}
.ls18_c00454{letter-spacing:3.220800pt;}
.lsc_c00454{letter-spacing:3.247209pt;}
.ls19_c00454{letter-spacing:3.379209pt;}
.ls2_c00454{letter-spacing:3.467209pt;}
.ls8_c00454{letter-spacing:3.502400pt;}
.ls12_c00454{letter-spacing:3.511209pt;}
.ls15_c00454{letter-spacing:3.660800pt;}
.ls16_c00454{letter-spacing:3.819209pt;}
.ls1_c00454{letter-spacing:3.907209pt;}
.ls1d_c00454{letter-spacing:7.603376pt;}
.ls1b_c00454{letter-spacing:51.955376pt;}
.ls1a_c00454{letter-spacing:55.756800pt;}
.ls6_c00454{letter-spacing:57.024176pt;}
.lsb_c00454{letter-spacing:58.291376pt;}
.ls9_c00454{letter-spacing:59.558400pt;}
.lse_c00454{letter-spacing:64.627376pt;}
.ws0_c00454{word-spacing:-17.336044pt;}
.ws1_c00454{word-spacing:-4.109952pt;}
.ws2_c00454{word-spacing:0.000000pt;}
._2_c00454{width:2.246816pt;}
._3_c00454{width:5.094848pt;}
._4_c00454{width:6.600880pt;}
._5_c00454{width:7.895184pt;}
._7_c00454{width:10.000672pt;}
._0_c00454{width:11.580536pt;}
._8_c00454{width:12.968560pt;}
._a_c00454{width:14.732432pt;}
._6_c00454{width:16.939648pt;}
._9_c00454{width:17.892512pt;}
._1_c00454{width:20.733964pt;}
._b_c00454{width:105.089600pt;}
.fs1c_c00454{font-size:7.603376pt;}
.fs1e_c00454{font-size:13.552000pt;}
.fs1d_c00454{font-size:14.784000pt;}
.fse_c00454{font-size:18.128000pt;}
.fs20_c00454{font-size:19.712000pt;}
.fs4_c00454{font-size:20.064000pt;}
.fs0_c00454{font-size:24.640000pt;}
.fs1f_c00454{font-size:25.168000pt;}
.fs18_c00454{font-size:29.568000pt;}
.fs21_c00454{font-size:35.200000pt;}
.fs7_c00454{font-size:35.376000pt;}
.fs19_c00454{font-size:48.576000pt;}
.fs1a_c00454{font-size:51.955376pt;}
.fs17_c00454{font-size:55.756800pt;}
.fs6_c00454{font-size:57.024176pt;}
.fsc_c00454{font-size:58.291376pt;}
.fs3_c00454{font-size:58.960000pt;}
.fsa_c00454{font-size:59.558400pt;}
.fs14_c00454{font-size:60.544176pt;}
.fsb_c00454{font-size:60.896000pt;}
.fs10_c00454{font-size:62.304176pt;}
.fs15_c00454{font-size:64.416000pt;}
.fsd_c00454{font-size:64.627376pt;}
.fs5_c00454{font-size:64.944176pt;}
.fs16_c00454{font-size:67.584176pt;}
.fs2_c00454{font-size:69.344176pt;}
.fs9_c00454{font-size:70.048000pt;}
.fs12_c00454{font-size:70.224176pt;}
.fsf_c00454{font-size:71.456000pt;}
.fs1b_c00454{font-size:71.808000pt;}
.fs13_c00454{font-size:73.216000pt;}
.fs8_c00454{font-size:74.976000pt;}
.fs11_c00454{font-size:76.384176pt;}
.fs1_c00454{font-size:78.144176pt;}
.y0_c00454{bottom:0.000000pt;}
.y22_c00454{bottom:29.062920pt;}
.y21_c00454{bottom:45.857720pt;}
.y1_c00454{bottom:68.000000pt;}
.y20_c00454{bottom:84.507320pt;}
.y1f_c00454{bottom:132.339720pt;}
.y1e_c00454{bottom:159.905720pt;}
.y1d_c00454{bottom:164.019720pt;}
.y1c_c00454{bottom:164.657720pt;}
.y1b_c00454{bottom:223.899320pt;}
.y19_c00454{bottom:251.777720pt;}
.y1a_c00454{bottom:257.158920pt;}
.y18_c00454{bottom:280.285320pt;}
.y17_c00454{bottom:308.480520pt;}
.y16_c00454{bottom:329.393720pt;}
.y15_c00454{bottom:337.313720pt;}
.y14_c00454{bottom:356.638520pt;}
.y12_c00454{bottom:394.020920pt;}
.y13_c00454{bottom:396.872120pt;}
.y11_c00454{bottom:422.211720pt;}
.y10_c00454{bottom:450.728120pt;}
.yf_c00454{bottom:479.235720pt;}
.ye_c00454{bottom:506.168120pt;}
.yd_c00454{bottom:536.264120pt;}
.y2_c00454{bottom:546.080520pt;}
.yc_c00454{bottom:565.726520pt;}
.yb_c00454{bottom:593.917320pt;}
.ya_c00454{bottom:623.384120pt;}
.y9_c00454{bottom:707.331720pt;}
.y8_c00454{bottom:735.531320pt;}
.y7_c00454{bottom:764.355720pt;}
.y6_c00454{bottom:793.184520pt;}
.y5_c00454{bottom:809.341320pt;}
.y4_c00454{bottom:822.017720pt;}
.y3_c00454{bottom:942.714120pt;}
.h1e_c00454{height:5.063848pt;}
.h20_c00454{height:14.134313pt;}
.h1f_c00454{height:15.419250pt;}
.h10_c00454{height:17.791641pt;}
.h22_c00454{height:20.559000pt;}
.h6_c00454{height:20.926125pt;}
.h2_c00454{height:25.698750pt;}
.h21_c00454{height:26.249438pt;}
.h1a_c00454{height:30.838500pt;}
.h1c_c00454{height:34.602280pt;}
.h23_c00454{height:36.712500pt;}
.h9_c00454{height:36.896063pt;}
.h19_c00454{height:37.134029pt;}
.h8_c00454{height:37.978101pt;}
.he_c00454{height:38.822056pt;}
.hc_c00454{height:39.665894pt;}
.hf_c00454{height:43.041832pt;}
.h1b_c00454{height:50.663250pt;}
.h5_c00454{height:61.493438pt;}
.h16_c00454{height:63.145684pt;}
.h17_c00454{height:63.220781pt;}
.hd_c00454{height:63.512625pt;}
.h7_c00454{height:63.739157pt;}
.h12_c00454{height:64.981309pt;}
.h18_c00454{height:66.330173pt;}
.h4_c00454{height:68.057516pt;}
.hb_c00454{height:68.748281pt;}
.h14_c00454{height:68.921188pt;}
.h1d_c00454{height:70.475625pt;}
.h15_c00454{height:71.857500pt;}
.ha_c00454{height:73.584844pt;}
.h11_c00454{height:74.526375pt;}
.h13_c00454{height:74.966891pt;}
.h3_c00454{height:76.694235pt;}
.h1_c00454{height:986.666667pt;}
.h0_c00454{height:1122.666667pt;}
.w1_c00454{width:684.000000pt;}
.w0_c00454{width:793.333333pt;}
.x0_c00454{left:0.000000pt;}
.x2_c00454{left:51.872787pt;}
.x1_c00454{left:54.666667pt;}
.x60_c00454{left:81.880787pt;}
.x4d_c00454{left:83.020387pt;}
.x29_c00454{left:84.063187pt;}
.x10_c00454{left:85.004787pt;}
.x35_c00454{left:86.931987pt;}
.x86_c00454{left:90.025187pt;}
.x87_c00454{left:101.187987pt;}
.x52_c00454{left:111.809587pt;}
.x21_c00454{left:113.208787pt;}
.x36_c00454{left:116.323987pt;}
.x55_c00454{left:120.393987pt;}
.x1a_c00454{left:122.272787pt;}
.x64_c00454{left:130.109187pt;}
.x4_c00454{left:132.326787pt;}
.x2b_c00454{left:134.209987pt;}
.x4e_c00454{left:138.495587pt;}
.x71_c00454{left:140.132387pt;}
.x1b_c00454{left:141.703187pt;}
.x37_c00454{left:142.886787pt;}
.x61_c00454{left:150.133587pt;}
.x47_c00454{left:152.531587pt;}
.x2c_c00454{left:155.008787pt;}
.x56_c00454{left:159.650787pt;}
.xf_c00454{left:163.043187pt;}
.x2d_c00454{left:164.209187pt;}
.x5_c00454{left:171.420787pt;}
.x2a_c00454{left:173.066387pt;}
.x2e_c00454{left:174.667987pt;}
.x11_c00454{left:181.008387pt;}
.x22_c00454{left:182.913587pt;}
.x76_c00454{left:187.977987pt;}
.x40_c00454{left:191.462787pt;}
.x6a_c00454{left:198.779987pt;}
.x23_c00454{left:200.685187pt;}
.x8f_c00454{left:206.493187pt;}
.x7c_c00454{left:208.178387pt;}
.x53_c00454{left:209.357587pt;}
.x38_c00454{left:210.334387pt;}
.x57_c00454{left:219.319187pt;}
.x2f_c00454{left:220.639187pt;}
.x72_c00454{left:227.586787pt;}
.x6b_c00454{left:228.501987pt;}
.x77_c00454{left:230.015587pt;}
.x62_c00454{left:232.651187pt;}
.x24_c00454{left:239.167587pt;}
.x12_c00454{left:248.992787pt;}
.x73_c00454{left:257.709187pt;}
.x30_c00454{left:259.433987pt;}
.x7d_c00454{left:266.720387pt;}
.x13_c00454{left:267.666387pt;}
.x6_c00454{left:268.572787pt;}
.x25_c00454{left:270.587987pt;}
.x41_c00454{left:278.912787pt;}
.x39_c00454{left:281.099587pt;}
.x6c_c00454{left:288.399187pt;}
.x4f_c00454{left:297.212387pt;}
.x7_c00454{left:299.214387pt;}
.x58_c00454{left:307.125587pt;}
.x1c_c00454{left:308.608387pt;}
.x42_c00454{left:318.539187pt;}
.x65_c00454{left:327.083987pt;}
.x8_c00454{left:328.241187pt;}
.x6d_c00454{left:336.904787pt;}
.x5e_c00454{left:338.171987pt;}
.x50_c00454{left:344.921587pt;}
.x48_c00454{left:347.231587pt;}
.x66_c00454{left:356.849987pt;}
.x31_c00454{left:357.813587pt;}
.x14_c00454{left:358.746387pt;}
.x78_c00454{left:366.331987pt;}
.x6e_c00454{left:367.616787pt;}
.x9_c00454{left:368.721187pt;}
.x3a_c00454{left:376.689587pt;}
.x59_c00454{left:377.771987pt;}
.x26_c00454{left:386.831587pt;}
.x15_c00454{left:387.803987pt;}
.x5a_c00454{left:395.794387pt;}
.xa_c00454{left:397.303587pt;}
.x27_c00454{left:398.548787pt;}
.x3b_c00454{left:399.503587pt;}
.x3c_c00454{left:401.404387pt;}
.x74_c00454{left:405.949587pt;}
.x1d_c00454{left:406.935187pt;}
.x16_c00454{left:415.928787pt;}
.x49_c00454{left:426.880387pt;}
.x7e_c00454{left:435.191987pt;}
.x1e_c00454{left:436.960787pt;}
.x88_c00454{left:444.194387pt;}
.xb_c00454{left:446.495587pt;}
.x28_c00454{left:448.897987pt;}
.x6f_c00454{left:453.905187pt;}
.x32_c00454{left:456.285587pt;}
.x89_c00454{left:464.579587pt;}
.x17_c00454{left:466.365987pt;}
.x79_c00454{left:475.271587pt;}
.x5f_c00454{left:483.446787pt;}
.x67_c00454{left:486.359587pt;}
.x5b_c00454{left:494.376387pt;}
.x1f_c00454{left:496.426787pt;}
.x7a_c00454{left:501.508787pt;}
.x8a_c00454{left:502.551587pt;}
.x33_c00454{left:503.629587pt;}
.xc_c00454{left:504.685587pt;}
.x54_c00454{left:514.127987pt;}
.x4a_c00454{left:515.795587pt;}
.x8b_c00454{left:521.739987pt;}
.x43_c00454{left:524.740787pt;}
.x81_c00454{left:531.609187pt;}
.x75_c00454{left:533.311987pt;}
.x20_c00454{left:534.548387pt;}
.x82_c00454{left:539.841587pt;}
.x68_c00454{left:544.021587pt;}
.x4b_c00454{left:545.227187pt;}
.x83_c00454{left:546.494387pt;}
.x44_c00454{left:553.710387pt;}
.x18_c00454{left:555.386787pt;}
.x84_c00454{left:559.355587pt;}
.x7f_c00454{left:561.669987pt;}
.x3d_c00454{left:563.113187pt;}
.xd_c00454{left:564.626787pt;}
.x7b_c00454{left:572.551187pt;}
.x51_c00454{left:573.844787pt;}
.x80_c00454{left:581.751587pt;}
.x19_c00454{left:584.167187pt;}
.x8c_c00454{left:592.205987pt;}
.x34_c00454{left:593.908787pt;}
.x4c_c00454{left:595.321187pt;}
.x45_c00454{left:602.911187pt;}
.x70_c00454{left:612.494387pt;}
.xe_c00454{left:622.944387pt;}
.x5c_c00454{left:624.783587pt;}
.x8e_c00454{left:626.807587pt;}
.x63_c00454{left:628.171587pt;}
.x69_c00454{left:630.965587pt;}
.x3_c00454{left:632.109587pt;}
.x3e_c00454{left:633.407587pt;}
.x85_c00454{left:636.958387pt;}
.x5d_c00454{left:641.604787pt;}
.x8d_c00454{left:651.183587pt;}
.x3f_c00454{left:652.732387pt;}
.x46_c00454{left:653.638787pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_deac4cea490e43b94b4f7978.woff2')format("woff");}.ff1_c00455{font-family:ff1_c00455;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00455;src:url('chunks/assets/font_9a97d3d3ce1fe0dc79dd079a.woff2')format("woff");}.ff2_c00455{font-family:ff2_c00455;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00455;src:url('chunks/assets/font_20de40f34c5fa5ef9feefa5d.woff2')format("woff");}.ff3_c00455{font-family:ff3_c00455;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00455;src:url('chunks/assets/font_efa0b1346c976311c7552144.woff2')format("woff");}.ff4_c00455{font-family:ff4_c00455;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.md_c00455{transform:matrix(0.026042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026042,0.000000,0.000000,0.250000,0,0);}
.m39_c00455{transform:matrix(0.036459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036459,0.000000,0.000000,0.250000,0,0);}
.ma_c00455{transform:matrix(0.072916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072916,0.000000,0.000000,0.250000,0,0);}
.mcb_c00455{transform:matrix(0.092241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092241,0.000000,0.000000,0.250000,0,0);}
.m38_c00455{transform:matrix(0.097222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097222,0.000000,0.000000,0.250000,0,0);}
.m3a_c00455{transform:matrix(0.100261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100261,0.000000,0.000000,0.250000,0,0);}
.m3b_c00455{transform:matrix(0.102431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102431,0.000000,0.000000,0.250000,0,0);}
.mb_c00455{transform:matrix(0.103693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103693,0.000000,0.000000,0.250000,0,0);}
.me_c00455{transform:matrix(0.113282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113282,0.000000,0.000000,0.250000,0,0);}
.m36_c00455{transform:matrix(0.126736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126736,0.000000,0.000000,0.250000,0,0);}
.m55_c00455{transform:matrix(0.147830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147830,0.000000,0.000000,0.250000,0,0);}
.mc_c00455{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.mda_c00455{transform:matrix(0.171313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171313,0.000000,0.000000,0.250000,0,0);}
.m8a_c00455{transform:matrix(0.172256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172256,0.000000,0.000000,0.250000,0,0);}
.mc4_c00455{transform:matrix(0.174107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174107,0.000000,0.000000,0.250000,0,0);}
.mc3_c00455{transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);}
.mc1_c00455{transform:matrix(0.184524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184524,0.000000,0.000000,0.250000,0,0);}
.m37_c00455{transform:matrix(0.209475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209475,0.000000,0.000000,0.250000,0,0);}
.mb4_c00455{transform:matrix(0.222924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222924,0.000000,0.000000,0.250000,0,0);}
.m8b_c00455{transform:matrix(0.227741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227741,0.000000,0.000000,0.250000,0,0);}
.m72_c00455{transform:matrix(0.228597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228597,0.000000,0.000000,0.250000,0,0);}
.md5_c00455{transform:matrix(0.242992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242992,0.000000,0.000000,0.250000,0,0);}
.m0_c00455{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00455{transform:matrix(0.251861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251861,0.000000,0.000000,0.250000,0,0);}
.m49_c00455{transform:matrix(0.252167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252167,0.000000,0.000000,0.250000,0,0);}
.m9b_c00455{transform:matrix(0.252788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252788,0.000000,0.000000,0.250000,0,0);}
.md0_c00455{transform:matrix(0.253876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253876,0.000000,0.000000,0.250000,0,0);}
.mc6_c00455{transform:matrix(0.254119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254119,0.000000,0.000000,0.250000,0,0);}
.m1d_c00455{transform:matrix(0.256809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256809,0.000000,0.000000,0.250000,0,0);}
.m9_c00455{transform:matrix(0.257384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257384,0.000000,0.000000,0.250000,0,0);}
.m33_c00455{transform:matrix(0.258225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258225,0.000000,0.000000,0.250000,0,0);}
.mb5_c00455{transform:matrix(0.258843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258843,0.000000,0.000000,0.250000,0,0);}
.mcf_c00455{transform:matrix(0.259042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259042,0.000000,0.000000,0.250000,0,0);}
.m88_c00455{transform:matrix(0.260874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260874,0.000000,0.000000,0.250000,0,0);}
.m45_c00455{transform:matrix(0.261019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261019,0.000000,0.000000,0.250000,0,0);}
.m77_c00455{transform:matrix(0.261305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261305,0.000000,0.000000,0.250000,0,0);}
.m24_c00455{transform:matrix(0.261981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261981,0.000000,0.000000,0.250000,0,0);}
.m57_c00455{transform:matrix(0.262600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262600,0.000000,0.000000,0.250000,0,0);}
.mab_c00455{transform:matrix(0.262711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262711,0.000000,0.000000,0.250000,0,0);}
.m73_c00455{transform:matrix(0.262989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262989,0.000000,0.000000,0.250000,0,0);}
.ma6_c00455{transform:matrix(0.263151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263151,0.000000,0.000000,0.250000,0,0);}
.m95_c00455{transform:matrix(0.263571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263571,0.000000,0.000000,0.250000,0,0);}
.mca_c00455{transform:matrix(0.264246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264246,0.000000,0.000000,0.250000,0,0);}
.m64_c00455{transform:matrix(0.264299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264299,0.000000,0.000000,0.250000,0,0);}
.m97_c00455{transform:matrix(0.264875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264875,0.000000,0.000000,0.250000,0,0);}
.m75_c00455{transform:matrix(0.265004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265004,0.000000,0.000000,0.250000,0,0);}
.m99_c00455{transform:matrix(0.265266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265266,0.000000,0.000000,0.250000,0,0);}
.m7a_c00455{transform:matrix(0.265320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265320,0.000000,0.000000,0.250000,0,0);}
.ma4_c00455{transform:matrix(0.265550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265550,0.000000,0.000000,0.250000,0,0);}
.m56_c00455{transform:matrix(0.265914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265914,0.000000,0.000000,0.250000,0,0);}
.m2d_c00455{transform:matrix(0.266577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266577,0.000000,0.000000,0.250000,0,0);}
.m80_c00455{transform:matrix(0.268047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268047,0.000000,0.000000,0.250000,0,0);}
.m54_c00455{transform:matrix(0.268430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268430,0.000000,0.000000,0.250000,0,0);}
.m6d_c00455{transform:matrix(0.268501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268501,0.000000,0.000000,0.250000,0,0);}
.m58_c00455{transform:matrix(0.268859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268859,0.000000,0.000000,0.250000,0,0);}
.m41_c00455{transform:matrix(0.269522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269522,0.000000,0.000000,0.250000,0,0);}
.m81_c00455{transform:matrix(0.270238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270238,0.000000,0.000000,0.250000,0,0);}
.m87_c00455{transform:matrix(0.271173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271173,0.000000,0.000000,0.250000,0,0);}
.m40_c00455{transform:matrix(0.271378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271378,0.000000,0.000000,0.250000,0,0);}
.m34_c00455{transform:matrix(0.271566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271566,0.000000,0.000000,0.250000,0,0);}
.mce_c00455{transform:matrix(0.271879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271879,0.000000,0.000000,0.250000,0,0);}
.m27_c00455{transform:matrix(0.272315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272315,0.000000,0.000000,0.250000,0,0);}
.m4e_c00455{transform:matrix(0.273208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273208,0.000000,0.000000,0.250000,0,0);}
.m3c_c00455{transform:matrix(0.273719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273719,0.000000,0.000000,0.250000,0,0);}
.m98_c00455{transform:matrix(0.273913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273913,0.000000,0.000000,0.250000,0,0);}
.mbc_c00455{transform:matrix(0.273919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273919,0.000000,0.000000,0.250000,0,0);}
.md4_c00455{transform:matrix(0.274169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274169,0.000000,0.000000,0.250000,0,0);}
.m17_c00455{transform:matrix(0.274552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274552,0.000000,0.000000,0.250000,0,0);}
.mc8_c00455{transform:matrix(0.275024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275024,0.000000,0.000000,0.250000,0,0);}
.m8_c00455{transform:matrix(0.275267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275267,0.000000,0.000000,0.250000,0,0);}
.m2b_c00455{transform:matrix(0.275624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275624,0.000000,0.000000,0.250000,0,0);}
.m4f_c00455{transform:matrix(0.276245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276245,0.000000,0.000000,0.250000,0,0);}
.m53_c00455{transform:matrix(0.276489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276489,0.000000,0.000000,0.250000,0,0);}
.m90_c00455{transform:matrix(0.276709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276709,0.000000,0.000000,0.250000,0,0);}
.mcd_c00455{transform:matrix(0.277180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277180,0.000000,0.000000,0.250000,0,0);}
.m14_c00455{transform:matrix(0.277213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277213,0.000000,0.000000,0.250000,0,0);}
.m89_c00455{transform:matrix(0.277472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277472,0.000000,0.000000,0.250000,0,0);}
.m4c_c00455{transform:matrix(0.277692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277692,0.000000,0.000000,0.250000,0,0);}
.m30_c00455{transform:matrix(0.278067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278067,0.000000,0.000000,0.250000,0,0);}
.m5e_c00455{transform:matrix(0.278258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278258,0.000000,0.000000,0.250000,0,0);}
.m43_c00455{transform:matrix(0.278816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278816,0.000000,0.000000,0.250000,0,0);}
.ma7_c00455{transform:matrix(0.279942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279942,0.000000,0.000000,0.250000,0,0);}
.m65_c00455{transform:matrix(0.280132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280132,0.000000,0.000000,0.250000,0,0);}
.m92_c00455{transform:matrix(0.280190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280190,0.000000,0.000000,0.250000,0,0);}
.m32_c00455{transform:matrix(0.280730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280730,0.000000,0.000000,0.250000,0,0);}
.m4d_c00455{transform:matrix(0.281307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281307,0.000000,0.000000,0.250000,0,0);}
.ma2_c00455{transform:matrix(0.281446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281446,0.000000,0.000000,0.250000,0,0);}
.mbb_c00455{transform:matrix(0.282097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282097,0.000000,0.000000,0.250000,0,0);}
.md8_c00455{transform:matrix(0.282122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282122,0.000000,0.000000,0.250000,0,0);}
.m91_c00455{transform:matrix(0.282671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282671,0.000000,0.000000,0.250000,0,0);}
.m94_c00455{transform:matrix(0.282857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282857,0.000000,0.000000,0.250000,0,0);}
.m68_c00455{transform:matrix(0.283453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283453,0.000000,0.000000,0.250000,0,0);}
.m84_c00455{transform:matrix(0.283841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283841,0.000000,0.000000,0.250000,0,0);}
.m2c_c00455{transform:matrix(0.283845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283845,0.000000,0.000000,0.250000,0,0);}
.m1f_c00455{transform:matrix(0.284040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284040,0.000000,0.000000,0.250000,0,0);}
.m10_c00455{transform:matrix(0.284351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284351,0.000000,0.000000,0.250000,0,0);}
.mf_c00455{transform:matrix(0.284590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284590,0.000000,0.000000,0.250000,0,0);}
.m6f_c00455{transform:matrix(0.284962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284962,0.000000,0.000000,0.250000,0,0);}
.mbd_c00455{transform:matrix(0.284994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284994,0.000000,0.000000,0.250000,0,0);}
.m5b_c00455{transform:matrix(0.285317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285317,0.000000,0.000000,0.250000,0,0);}
.m3_c00455{transform:matrix(0.285449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285449,0.000000,0.000000,0.250000,0,0);}
.m8d_c00455{transform:matrix(0.285840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285840,0.000000,0.000000,0.250000,0,0);}
.m21_c00455{transform:matrix(0.286055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286055,0.000000,0.000000,0.250000,0,0);}
.mc9_c00455{transform:matrix(0.286450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286450,0.000000,0.000000,0.250000,0,0);}
.m12_c00455{transform:matrix(0.286516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286516,0.000000,0.000000,0.250000,0,0);}
.ma9_c00455{transform:matrix(0.286850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286850,0.000000,0.000000,0.250000,0,0);}
.m6b_c00455{transform:matrix(0.287217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287217,0.000000,0.000000,0.250000,0,0);}
.m71_c00455{transform:matrix(0.287538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287538,0.000000,0.000000,0.250000,0,0);}
.m7b_c00455{transform:matrix(0.288393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288393,0.000000,0.000000,0.250000,0,0);}
.m1b_c00455{transform:matrix(0.289016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289016,0.000000,0.000000,0.250000,0,0);}
.m5d_c00455{transform:matrix(0.289513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289513,0.000000,0.000000,0.250000,0,0);}
.m2f_c00455{transform:matrix(0.289546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289546,0.000000,0.000000,0.250000,0,0);}
.m26_c00455{transform:matrix(0.290180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290180,0.000000,0.000000,0.250000,0,0);}
.md6_c00455{transform:matrix(0.290287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290287,0.000000,0.000000,0.250000,0,0);}
.m6_c00455{transform:matrix(0.290573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290573,0.000000,0.000000,0.250000,0,0);}
.mac_c00455{transform:matrix(0.290916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290916,0.000000,0.000000,0.250000,0,0);}
.ma8_c00455{transform:matrix(0.292398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292398,0.000000,0.000000,0.250000,0,0);}
.ma5_c00455{transform:matrix(0.292899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292899,0.000000,0.000000,0.250000,0,0);}
.m1_c00455{transform:matrix(0.293195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293195,0.000000,0.000000,0.250000,0,0);}
.m44_c00455{transform:matrix(0.293219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293219,0.000000,0.000000,0.250000,0,0);}
.m35_c00455{transform:matrix(0.293241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293241,0.000000,0.000000,0.250000,0,0);}
.m2_c00455{transform:matrix(0.293768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293768,0.000000,0.000000,0.250000,0,0);}
.m61_c00455{transform:matrix(0.293989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293989,0.000000,0.000000,0.250000,0,0);}
.m2a_c00455{transform:matrix(0.294028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294028,0.000000,0.000000,0.250000,0,0);}
.m1a_c00455{transform:matrix(0.294379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294379,0.000000,0.000000,0.250000,0,0);}
.m76_c00455{transform:matrix(0.295264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295264,0.000000,0.000000,0.250000,0,0);}
.mc0_c00455{transform:matrix(0.295322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295322,0.000000,0.000000,0.250000,0,0);}
.m62_c00455{transform:matrix(0.295489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295489,0.000000,0.000000,0.250000,0,0);}
.m5c_c00455{transform:matrix(0.295529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295529,0.000000,0.000000,0.250000,0,0);}
.m74_c00455{transform:matrix(0.295613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295613,0.000000,0.000000,0.250000,0,0);}
.m96_c00455{transform:matrix(0.295972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295972,0.000000,0.000000,0.250000,0,0);}
.md9_c00455{transform:matrix(0.296876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296876,0.000000,0.000000,0.250000,0,0);}
.m46_c00455{transform:matrix(0.296920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296920,0.000000,0.000000,0.250000,0,0);}
.mbf_c00455{transform:matrix(0.297030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297030,0.000000,0.000000,0.250000,0,0);}
.md7_c00455{transform:matrix(0.297185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297185,0.000000,0.000000,0.250000,0,0);}
.m79_c00455{transform:matrix(0.297771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297771,0.000000,0.000000,0.250000,0,0);}
.mb7_c00455{transform:matrix(0.298613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298613,0.000000,0.000000,0.250000,0,0);}
.m28_c00455{transform:matrix(0.298690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298690,0.000000,0.000000,0.250000,0,0);}
.m4b_c00455{transform:matrix(0.298974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298974,0.000000,0.000000,0.250000,0,0);}
.m3e_c00455{transform:matrix(0.300129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300129,0.000000,0.000000,0.250000,0,0);}
.m6c_c00455{transform:matrix(0.300708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300708,0.000000,0.000000,0.250000,0,0);}
.m8c_c00455{transform:matrix(0.300984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300984,0.000000,0.000000,0.250000,0,0);}
.m16_c00455{transform:matrix(0.303578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303578,0.000000,0.000000,0.250000,0,0);}
.mb0_c00455{transform:matrix(0.303906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303906,0.000000,0.000000,0.250000,0,0);}
.ma3_c00455{transform:matrix(0.304962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304962,0.000000,0.000000,0.250000,0,0);}
.m63_c00455{transform:matrix(0.305274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305274,0.000000,0.000000,0.250000,0,0);}
.m52_c00455{transform:matrix(0.305836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305836,0.000000,0.000000,0.250000,0,0);}
.m78_c00455{transform:matrix(0.306502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306502,0.000000,0.000000,0.250000,0,0);}
.m85_c00455{transform:matrix(0.306710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306710,0.000000,0.000000,0.250000,0,0);}
.m19_c00455{transform:matrix(0.306943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306943,0.000000,0.000000,0.250000,0,0);}
.m47_c00455{transform:matrix(0.308236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308236,0.000000,0.000000,0.250000,0,0);}
.m1e_c00455{transform:matrix(0.308803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308803,0.000000,0.000000,0.250000,0,0);}
.m93_c00455{transform:matrix(0.309456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309456,0.000000,0.000000,0.250000,0,0);}
.m5f_c00455{transform:matrix(0.309459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309459,0.000000,0.000000,0.250000,0,0);}
.m7_c00455{transform:matrix(0.309984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309984,0.000000,0.000000,0.250000,0,0);}
.mbe_c00455{transform:matrix(0.310212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310212,0.000000,0.000000,0.250000,0,0);}
.m31_c00455{transform:matrix(0.310385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310385,0.000000,0.000000,0.250000,0,0);}
.m51_c00455{transform:matrix(0.310901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310901,0.000000,0.000000,0.250000,0,0);}
.mc2_c00455{transform:matrix(0.311962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311962,0.000000,0.000000,0.250000,0,0);}
.m7c_c00455{transform:matrix(0.312104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312104,0.000000,0.000000,0.250000,0,0);}
.m83_c00455{transform:matrix(0.314276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314276,0.000000,0.000000,0.250000,0,0);}
.md1_c00455{transform:matrix(0.315239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315239,0.000000,0.000000,0.250000,0,0);}
.m9e_c00455{transform:matrix(0.315706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315706,0.000000,0.000000,0.250000,0,0);}
.m50_c00455{transform:matrix(0.316154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316154,0.000000,0.000000,0.250000,0,0);}
.m5a_c00455{transform:matrix(0.316199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316199,0.000000,0.000000,0.250000,0,0);}
.m6e_c00455{transform:matrix(0.316290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316290,0.000000,0.000000,0.250000,0,0);}
.m29_c00455{transform:matrix(0.316398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316398,0.000000,0.000000,0.250000,0,0);}
.mae_c00455{transform:matrix(0.316840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316840,0.000000,0.000000,0.250000,0,0);}
.m42_c00455{transform:matrix(0.317027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317027,0.000000,0.000000,0.250000,0,0);}
.m67_c00455{transform:matrix(0.317121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317121,0.000000,0.000000,0.250000,0,0);}
.m8f_c00455{transform:matrix(0.317236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317236,0.000000,0.000000,0.250000,0,0);}
.mb2_c00455{transform:matrix(0.318136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318136,0.000000,0.000000,0.250000,0,0);}
.mc5_c00455{transform:matrix(0.318396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318396,0.000000,0.000000,0.250000,0,0);}
.m66_c00455{transform:matrix(0.318476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318476,0.000000,0.000000,0.250000,0,0);}
.mb8_c00455{transform:matrix(0.318523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318523,0.000000,0.000000,0.250000,0,0);}
.m7d_c00455{transform:matrix(0.318888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318888,0.000000,0.000000,0.250000,0,0);}
.mc7_c00455{transform:matrix(0.319884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319884,0.000000,0.000000,0.250000,0,0);}
.md2_c00455{transform:matrix(0.320006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320006,0.000000,0.000000,0.250000,0,0);}
.m86_c00455{transform:matrix(0.320776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320776,0.000000,0.000000,0.250000,0,0);}
.mba_c00455{transform:matrix(0.320777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320777,0.000000,0.000000,0.250000,0,0);}
.m5_c00455{transform:matrix(0.321207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321207,0.000000,0.000000,0.250000,0,0);}
.m11_c00455{transform:matrix(0.321746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321746,0.000000,0.000000,0.250000,0,0);}
.m15_c00455{transform:matrix(0.322061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322061,0.000000,0.000000,0.250000,0,0);}
.m6a_c00455{transform:matrix(0.322203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322203,0.000000,0.000000,0.250000,0,0);}
.m48_c00455{transform:matrix(0.322359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322359,0.000000,0.000000,0.250000,0,0);}
.m9f_c00455{transform:matrix(0.322585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322585,0.000000,0.000000,0.250000,0,0);}
.m69_c00455{transform:matrix(0.323016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323016,0.000000,0.000000,0.250000,0,0);}
.m60_c00455{transform:matrix(0.323413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323413,0.000000,0.000000,0.250000,0,0);}
.md3_c00455{transform:matrix(0.324011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324011,0.000000,0.000000,0.250000,0,0);}
.ma1_c00455{transform:matrix(0.324044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324044,0.000000,0.000000,0.250000,0,0);}
.mcc_c00455{transform:matrix(0.324687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324687,0.000000,0.000000,0.250000,0,0);}
.m4a_c00455{transform:matrix(0.324989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324989,0.000000,0.000000,0.250000,0,0);}
.m22_c00455{transform:matrix(0.325433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325433,0.000000,0.000000,0.250000,0,0);}
.m59_c00455{transform:matrix(0.325521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325521,0.000000,0.000000,0.250000,0,0);}
.m9a_c00455{transform:matrix(0.326055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326055,0.000000,0.000000,0.250000,0,0);}
.m8e_c00455{transform:matrix(0.326214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326214,0.000000,0.000000,0.250000,0,0);}
.ma0_c00455{transform:matrix(0.326829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326829,0.000000,0.000000,0.250000,0,0);}
.mb1_c00455{transform:matrix(0.333321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333321,0.000000,0.000000,0.250000,0,0);}
.m25_c00455{transform:matrix(0.336280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336280,0.000000,0.000000,0.250000,0,0);}
.m20_c00455{transform:matrix(0.337577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337577,0.000000,0.000000,0.250000,0,0);}
.m13_c00455{transform:matrix(0.339668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339668,0.000000,0.000000,0.250000,0,0);}
.m23_c00455{transform:matrix(0.340317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340317,0.000000,0.000000,0.250000,0,0);}
.mb3_c00455{transform:matrix(0.341302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341302,0.000000,0.000000,0.250000,0,0);}
.m1c_c00455{transform:matrix(0.343606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343606,0.000000,0.000000,0.250000,0,0);}
.mb6_c00455{transform:matrix(0.344080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344080,0.000000,0.000000,0.250000,0,0);}
.m82_c00455{transform:matrix(0.344760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344760,0.000000,0.000000,0.250000,0,0);}
.maa_c00455{transform:matrix(0.346572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346572,0.000000,0.000000,0.250000,0,0);}
.mad_c00455{transform:matrix(0.348549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348549,0.000000,0.000000,0.250000,0,0);}
.maf_c00455{transform:matrix(0.348571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348571,0.000000,0.000000,0.250000,0,0);}
.m9d_c00455{transform:matrix(0.349466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349466,0.000000,0.000000,0.250000,0,0);}
.m7f_c00455{transform:matrix(0.349634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349634,0.000000,0.000000,0.250000,0,0);}
.m4_c00455{transform:matrix(0.355662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355662,0.000000,0.000000,0.250000,0,0);}
.m3d_c00455{transform:matrix(0.356632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356632,0.000000,0.000000,0.250000,0,0);}
.m18_c00455{transform:matrix(0.369365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369365,0.000000,0.000000,0.250000,0,0);}
.m9c_c00455{transform:matrix(0.371516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371516,0.000000,0.000000,0.250000,0,0);}
.m70_c00455{transform:matrix(0.383500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00455{transform:matrix(0.389492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389492,0.000000,0.000000,0.250000,0,0);}
.m3f_c00455{transform:matrix(0.391326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391326,0.000000,0.000000,0.250000,0,0);}
.mb9_c00455{transform:matrix(0.395484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395484,0.000000,0.000000,0.250000,0,0);}
.v0_c00455{vertical-align:0.000000px;}
.ls14_c00455{letter-spacing:-2.758140px;}
.lsd_c00455{letter-spacing:-2.356200px;}
.ls17_c00455{letter-spacing:-2.277436px;}
.ls18_c00455{letter-spacing:-1.881000px;}
.ls11_c00455{letter-spacing:-1.476090px;}
.ls20_c00455{letter-spacing:-1.434233px;}
.ls21_c00455{letter-spacing:-1.134778px;}
.lsa_c00455{letter-spacing:-0.764399px;}
.ls12_c00455{letter-spacing:-0.472824px;}
.ls4_c00455{letter-spacing:0.000000px;}
.ls1d_c00455{letter-spacing:0.118206px;}
.lsb_c00455{letter-spacing:0.354618px;}
.ls3_c00455{letter-spacing:0.402971px;}
.ls6_c00455{letter-spacing:1.386950px;}
.ls16_c00455{letter-spacing:1.481515px;}
.lsc_c00455{letter-spacing:1.811700px;}
.ls7_c00455{letter-spacing:2.145949px;}
.ls24_c00455{letter-spacing:2.411402px;}
.ls1c_c00455{letter-spacing:2.844824px;}
.ls26_c00455{letter-spacing:2.852705px;}
.ls1_c00455{letter-spacing:3.065476px;}
.lse_c00455{letter-spacing:3.088810px;}
.ls2_c00455{letter-spacing:3.096997px;}
.ls23_c00455{letter-spacing:3.405610px;}
.ls1e_c00455{letter-spacing:3.425400px;}
.ls1a_c00455{letter-spacing:3.445200px;}
.ls13_c00455{letter-spacing:3.506778px;}
.ls19_c00455{letter-spacing:3.581424px;}
.ls15_c00455{letter-spacing:3.601343px;}
.ls9_c00455{letter-spacing:3.623400px;}
.ls10_c00455{letter-spacing:3.742200px;}
.lsf_c00455{letter-spacing:3.762000px;}
.ls22_c00455{letter-spacing:3.801610px;}
.ls5_c00455{letter-spacing:3.940200px;}
.ls1f_c00455{letter-spacing:4.039200px;}
.ls0_c00455{letter-spacing:21.155838px;}
.ls1b_c00455{letter-spacing:58.449798px;}
.ls25_c00455{letter-spacing:59.875398px;}
.ls8_c00455{letter-spacing:68.428998px;}
.sc__c00455{text-shadow:none;}
.sc0_c00455{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00455{-webkit-text-stroke:0px transparent;}
.sc0_c00455{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00455{word-spacing:-22.797997px;}
.ws2_c00455{word-spacing:-19.701000px;}
.ws1_c00455{word-spacing:-16.929000px;}
.ws3_c00455{word-spacing:0.000000px;}
._9_c00455{margin-left:-13.537260px;}
._7_c00455{margin-left:-6.783084px;}
._1_c00455{margin-left:-1.417680px;}
._5_c00455{width:3.686760px;}
._3_c00455{width:5.776729px;}
._0_c00455{width:26.399340px;}
._4_c00455{width:27.408110px;}
._8_c00455{width:35.877600px;}
._2_c00455{width:58.680072px;}
._6_c00455{width:331.033151px;}
.fc0_c00455{color:transparent;}
.fs11_c00455{font-size:15.840000px;}
.fsf_c00455{font-size:22.176000px;}
.fs1b_c00455{font-size:22.374000px;}
.fsb_c00455{font-size:27.720000px;}
.fs1a_c00455{font-size:33.264000px;}
.fs1_c00455{font-size:33.660000px;}
.fs6_c00455{font-size:36.234000px;}
.fs7_c00455{font-size:39.600000px;}
.fse_c00455{font-size:42.174000px;}
.fs13_c00455{font-size:51.876198px;}
.fs12_c00455{font-size:58.449798px;}
.fs19_c00455{font-size:59.875398px;}
.fsa_c00455{font-size:61.776198px;}
.fs8_c00455{font-size:67.320000px;}
.fs18_c00455{font-size:68.112198px;}
.fs4_c00455{font-size:68.428998px;}
.fs14_c00455{font-size:68.508000px;}
.fs10_c00455{font-size:68.904000px;}
.fs16_c00455{font-size:70.092198px;}
.fs5_c00455{font-size:72.468000px;}
.fsd_c00455{font-size:74.844000px;}
.fsc_c00455{font-size:75.240000px;}
.fs17_c00455{font-size:76.032198px;}
.fs3_c00455{font-size:78.606198px;}
.fs2_c00455{font-size:78.804000px;}
.fs15_c00455{font-size:80.784000px;}
.fs0_c00455{font-size:83.952198px;}
.fs9_c00455{font-size:95.040000px;}
.y0_c00455{bottom:0.000000px;}
.y2a_c00455{bottom:13.098735px;}
.y29_c00455{bottom:34.834185px;}
.y1_c00455{bottom:76.500000px;}
.y28_c00455{bottom:79.027785px;}
.y27_c00455{bottom:123.939135px;}
.y26_c00455{bottom:148.887135px;}
.y25_c00455{bottom:157.084335px;}
.y24_c00455{bottom:157.797135px;}
.y23_c00455{bottom:185.239935px;}
.y22_c00455{bottom:192.362985px;}
.y21_c00455{bottom:225.864585px;}
.y20_c00455{bottom:259.014735px;}
.y1f_c00455{bottom:290.729385px;}
.y1e_c00455{bottom:322.810335px;}
.y1c_c00455{bottom:355.237785px;}
.y1d_c00455{bottom:360.232335px;}
.y1b_c00455{bottom:387.675135px;}
.y1a_c00455{bottom:416.543535px;}
.y19_c00455{bottom:419.746185px;}
.y18_c00455{bottom:452.183535px;}
.y17_c00455{bottom:484.615935px;}
.y16_c00455{bottom:509.920335px;}
.y15_c00455{bottom:548.411535px;}
.y14_c00455{bottom:580.843935px;}
.y13_c00455{bottom:596.876985px;}
.y12_c00455{bottom:613.271385px;}
.y11_c00455{bottom:645.352335px;}
.y10_c00455{bottom:674.577135px;}
.yf_c00455{bottom:677.784735px;}
.ye_c00455{bottom:709.499385px;}
.yd_c00455{bottom:726.611535px;}
.yb_c00455{bottom:741.223935px;}
.yc_c00455{bottom:742.649535px;}
.ya_c00455{bottom:771.512985px;}
.y9_c00455{bottom:805.019535px;}
.y8_c00455{bottom:822.121785px;}
.y7_c00455{bottom:837.446985px;}
.y6_c00455{bottom:868.815135px;}
.y5_c00455{bottom:899.460585px;}
.y4_c00455{bottom:933.323535px;}
.y3_c00455{bottom:1040.238585px;}
.y2_c00455{bottom:1059.840585px;}
.h12_c00455{height:15.963750px;}
.h1e_c00455{height:21.958857px;}
.h1d_c00455{height:23.128875px;}
.hd_c00455{height:28.911094px;}
.h3_c00455{height:33.035449px;}
.h1b_c00455{height:34.693313px;}
.h8_c00455{height:37.790930px;}
.h13_c00455{height:38.927565px;}
.h1a_c00455{height:39.877015px;}
.h9_c00455{height:41.301563px;}
.h10_c00455{height:43.986164px;}
.h6_c00455{height:45.573713px;}
.h14_c00455{height:54.105253px;}
.hc_c00455{height:60.629960px;}
.ha_c00455{height:70.212656px;}
.h19_c00455{height:71.038894px;}
.h7_c00455{height:71.123379px;}
.h15_c00455{height:71.451703px;}
.h11_c00455{height:71.864719px;}
.h17_c00455{height:73.103972px;}
.hf_c00455{height:73.455293px;}
.he_c00455{height:73.843945px;}
.h18_c00455{height:74.621444px;}
.h5_c00455{height:77.147685px;}
.h4_c00455{height:77.341816px;}
.h16_c00455{height:79.285078px;}
.h1c_c00455{height:79.299207px;}
.h2_c00455{height:82.394491px;}
.hb_c00455{height:93.276563px;}
.h1_c00455{height:1110.000000px;}
.h0_c00455{height:1263.000000px;}
.w1_c00455{width:769.500000px;}
.w0_c00455{width:892.500000px;}
.x0_c00455{left:0.000000px;}
.x1_c00455{left:61.500000px;}
.x66_c00455{left:96.110535px;}
.x2e_c00455{left:97.397535px;}
.x4_c00455{left:98.699385px;}
.x41_c00455{left:99.926985px;}
.x48_c00455{left:100.941735px;}
.x60_c00455{left:127.696485px;}
.x1e_c00455{left:130.255635px;}
.x2f_c00455{left:131.656485px;}
.x49_c00455{left:133.433535px;}
.x83_c00455{left:138.616185px;}
.x52_c00455{left:141.823785px;}
.x42_c00455{left:143.308785px;}
.x6a_c00455{left:148.268685px;}
.x5b_c00455{left:150.862485px;}
.x61_c00455{left:161.252535px;}
.x3b_c00455{left:164.697735px;}
.x84_c00455{left:171.048585px;}
.x6f_c00455{left:172.256385px;}
.x5_c00455{left:173.766135px;}
.x5c_c00455{left:184.067085px;}
.xe_c00455{left:185.146185px;}
.x3c_c00455{left:186.918285px;}
.x79_c00455{left:192.110835px;}
.x6b_c00455{left:194.615535px;}
.x27_c00455{left:196.917285px;}
.x70_c00455{left:203.832435px;}
.x6_c00455{left:205.975785px;}
.x3d_c00455{left:208.648785px;}
.xf_c00455{left:216.712335px;}
.x43_c00455{left:219.360585px;}
.x10_c00455{left:227.042985px;}
.x53_c00455{left:229.557585px;}
.x7a_c00455{left:237.759735px;}
.x19_c00455{left:239.992185px;}
.x30_c00455{left:242.209785px;}
.x62_c00455{left:248.738835px;}
.x67_c00455{left:250.298085px;}
.x44_c00455{left:251.362335px;}
.x1f_c00455{left:262.128585px;}
.x31_c00455{left:275.845035px;}
.x87_c00455{left:281.161335px;}
.x7_c00455{left:282.596835px;}
.x63_c00455{left:284.215485px;}
.x28_c00455{left:285.245085px;}
.x50_c00455{left:294.041235px;}
.x59_c00455{left:295.189635px;}
.x32_c00455{left:297.342885px;}
.x71_c00455{left:304.272885px;}
.x11_c00455{left:305.812335px;}
.x4a_c00455{left:307.000335px;}
.x12_c00455{left:316.860735px;}
.x13_c00455{left:318.286335px;}
.x5d_c00455{left:327.572535px;}
.x20_c00455{left:328.681335px;}
.x54_c00455{left:339.101085px;}
.x68_c00455{left:348.214035px;}
.x8_c00455{left:350.134635px;}
.x8b_c00455{left:358.153635px;}
.x72_c00455{left:359.232735px;}
.x21_c00455{left:360.717735px;}
.x55_c00455{left:371.855235px;}
.x29_c00455{left:382.463085px;}
.x88_c00455{left:383.962935px;}
.x14_c00455{left:392.660085px;}
.x4b_c00455{left:394.664835px;}
.x45_c00455{left:396.446835px;}
.x7b_c00455{left:404.960835px;}
.x1a_c00455{left:406.386435px;}
.x22_c00455{left:416.806185px;}
.x7d_c00455{left:426.186435px;}
.x33_c00455{left:427.290285px;}
.x3e_c00455{left:429.240585px;}
.x8c_c00455{left:435.888435px;}
.x2a_c00455{left:437.279385px;}
.x1b_c00455{left:439.190085px;}
.x64_c00455{left:440.269185px;}
.x7e_c00455{left:448.317885px;}
.x56_c00455{left:449.936535px;}
.x15_c00455{left:459.306885px;}
.x9_c00455{left:460.366185px;}
.x69_c00455{left:470.063235px;}
.x23_c00455{left:471.305685px;}
.x73_c00455{left:482.052135px;}
.x4c_c00455{left:492.511485px;}
.xa_c00455{left:494.387535px;}
.x82_c00455{left:504.119235px;}
.x5e_c00455{left:505.173585px;}
.x58_c00455{left:508.158435px;}
.x7f_c00455{left:514.261785px;}
.x6c_c00455{left:515.806185px;}
.x24_c00455{left:517.994085px;}
.x3f_c00455{left:524.988435px;}
.xb_c00455{left:526.706085px;}
.x8d_c00455{left:534.863685px;}
.x34_c00455{left:536.759535px;}
.x76_c00455{left:537.957435px;}
.x80_c00455{left:539.645385px;}
.x46_c00455{left:548.971185px;}
.x81_c00455{left:559.173135px;}
.x16_c00455{left:560.514585px;}
.x1c_c00455{left:561.964935px;}
.x35_c00455{left:563.103435px;}
.x3_c00455{left:564.776535px;}
.x40_c00455{left:569.137485px;}
.x6d_c00455{left:570.637335px;}
.x36_c00455{left:571.681785px;}
.x47_c00455{left:580.571985px;}
.x4d_c00455{left:581.606535px;}
.x37_c00455{left:590.575935px;}
.x2b_c00455{left:593.224185px;}
.xc_c00455{left:602.990535px;}
.x4e_c00455{left:606.435735px;}
.x8e_c00455{left:620.419485px;}
.x2c_c00455{left:624.730935px;}
.x57_c00455{left:626.918835px;}
.x85_c00455{left:635.561535px;}
.x6e_c00455{left:636.675285px;}
.x17_c00455{left:638.090985px;}
.x25_c00455{left:639.412635px;}
.x51_c00455{left:646.837635px;}
.x65_c00455{left:648.758235px;}
.x38_c00455{left:651.728235px;}
.x39_c00455{left:658.286985px;}
.x26_c00455{left:659.509635px;}
.x86_c00455{left:669.439335px;}
.xd_c00455{left:670.513485px;}
.x77_c00455{left:679.274985px;}
.x4f_c00455{left:681.868785px;}
.x8a_c00455{left:684.482385px;}
.x1d_c00455{left:692.526135px;}
.x74_c00455{left:702.970635px;}
.x18_c00455{left:704.336835px;}
.x78_c00455{left:713.192385px;}
.x2d_c00455{left:714.746685px;}
.x3a_c00455{left:717.033585px;}
.x2_c00455{left:721.117335px;}
.x89_c00455{left:723.409185px;}
.x7c_c00455{left:724.498185px;}
.x5a_c00455{left:735.229785px;}
.x75_c00455{left:738.585885px;}
.x5f_c00455{left:758.979885px;}
@media print{
.v0_c00455{vertical-align:0.000000pt;}
.ls14_c00455{letter-spacing:-2.451680pt;}
.lsd_c00455{letter-spacing:-2.094400pt;}
.ls17_c00455{letter-spacing:-2.024387pt;}
.ls18_c00455{letter-spacing:-1.672000pt;}
.ls11_c00455{letter-spacing:-1.312080pt;}
.ls20_c00455{letter-spacing:-1.274874pt;}
.ls21_c00455{letter-spacing:-1.008691pt;}
.lsa_c00455{letter-spacing:-0.679466pt;}
.ls12_c00455{letter-spacing:-0.420288pt;}
.ls4_c00455{letter-spacing:0.000000pt;}
.ls1d_c00455{letter-spacing:0.105072pt;}
.lsb_c00455{letter-spacing:0.315216pt;}
.ls3_c00455{letter-spacing:0.358196pt;}
.ls6_c00455{letter-spacing:1.232845pt;}
.ls16_c00455{letter-spacing:1.316902pt;}
.lsc_c00455{letter-spacing:1.610400pt;}
.ls7_c00455{letter-spacing:1.907510pt;}
.ls24_c00455{letter-spacing:2.143469pt;}
.ls1c_c00455{letter-spacing:2.528733pt;}
.ls26_c00455{letter-spacing:2.535738pt;}
.ls1_c00455{letter-spacing:2.724867pt;}
.lse_c00455{letter-spacing:2.745609pt;}
.ls2_c00455{letter-spacing:2.752886pt;}
.ls23_c00455{letter-spacing:3.027209pt;}
.ls1e_c00455{letter-spacing:3.044800pt;}
.ls1a_c00455{letter-spacing:3.062400pt;}
.ls13_c00455{letter-spacing:3.117136pt;}
.ls19_c00455{letter-spacing:3.183488pt;}
.ls15_c00455{letter-spacing:3.201194pt;}
.ls9_c00455{letter-spacing:3.220800pt;}
.ls10_c00455{letter-spacing:3.326400pt;}
.lsf_c00455{letter-spacing:3.344000pt;}
.ls22_c00455{letter-spacing:3.379209pt;}
.ls5_c00455{letter-spacing:3.502400pt;}
.ls1f_c00455{letter-spacing:3.590400pt;}
.ls0_c00455{letter-spacing:18.805189pt;}
.ls1b_c00455{letter-spacing:51.955376pt;}
.ls25_c00455{letter-spacing:53.222576pt;}
.ls8_c00455{letter-spacing:60.825776pt;}
.ws0_c00455{word-spacing:-20.264886pt;}
.ws2_c00455{word-spacing:-17.512000pt;}
.ws1_c00455{word-spacing:-15.048000pt;}
.ws3_c00455{word-spacing:0.000000pt;}
._9_c00455{margin-left:-12.033120pt;}
._7_c00455{margin-left:-6.029408pt;}
._1_c00455{margin-left:-1.260160pt;}
._5_c00455{width:3.277120pt;}
._3_c00455{width:5.134870pt;}
._0_c00455{width:23.466080pt;}
._4_c00455{width:24.362765pt;}
._8_c00455{width:31.891200pt;}
._2_c00455{width:52.160064pt;}
._6_c00455{width:294.251690pt;}
.fs11_c00455{font-size:14.080000pt;}
.fsf_c00455{font-size:19.712000pt;}
.fs1b_c00455{font-size:19.888000pt;}
.fsb_c00455{font-size:24.640000pt;}
.fs1a_c00455{font-size:29.568000pt;}
.fs1_c00455{font-size:29.920000pt;}
.fs6_c00455{font-size:32.208000pt;}
.fs7_c00455{font-size:35.200000pt;}
.fse_c00455{font-size:37.488000pt;}
.fs13_c00455{font-size:46.112176pt;}
.fs12_c00455{font-size:51.955376pt;}
.fs19_c00455{font-size:53.222576pt;}
.fsa_c00455{font-size:54.912176pt;}
.fs8_c00455{font-size:59.840000pt;}
.fs18_c00455{font-size:60.544176pt;}
.fs4_c00455{font-size:60.825776pt;}
.fs14_c00455{font-size:60.896000pt;}
.fs10_c00455{font-size:61.248000pt;}
.fs16_c00455{font-size:62.304176pt;}
.fs5_c00455{font-size:64.416000pt;}
.fsd_c00455{font-size:66.528000pt;}
.fsc_c00455{font-size:66.880000pt;}
.fs17_c00455{font-size:67.584176pt;}
.fs3_c00455{font-size:69.872176pt;}
.fs2_c00455{font-size:70.048000pt;}
.fs15_c00455{font-size:71.808000pt;}
.fs0_c00455{font-size:74.624176pt;}
.fs9_c00455{font-size:84.480000pt;}
.y0_c00455{bottom:0.000000pt;}
.y2a_c00455{bottom:11.643320pt;}
.y29_c00455{bottom:30.963720pt;}
.y1_c00455{bottom:68.000000pt;}
.y28_c00455{bottom:70.246920pt;}
.y27_c00455{bottom:110.168120pt;}
.y26_c00455{bottom:132.344120pt;}
.y25_c00455{bottom:139.630520pt;}
.y24_c00455{bottom:140.264120pt;}
.y23_c00455{bottom:164.657720pt;}
.y22_c00455{bottom:170.989320pt;}
.y21_c00455{bottom:200.768520pt;}
.y20_c00455{bottom:230.235320pt;}
.y1f_c00455{bottom:258.426120pt;}
.y1e_c00455{bottom:286.942520pt;}
.y1c_c00455{bottom:315.766920pt;}
.y1d_c00455{bottom:320.206520pt;}
.y1b_c00455{bottom:344.600120pt;}
.y1a_c00455{bottom:370.260920pt;}
.y19_c00455{bottom:373.107720pt;}
.y18_c00455{bottom:401.940920pt;}
.y17_c00455{bottom:430.769720pt;}
.y16_c00455{bottom:453.262520pt;}
.y15_c00455{bottom:487.476920pt;}
.y14_c00455{bottom:516.305720pt;}
.y13_c00455{bottom:530.557320pt;}
.y12_c00455{bottom:545.130120pt;}
.y11_c00455{bottom:573.646520pt;}
.y10_c00455{bottom:599.624120pt;}
.yf_c00455{bottom:602.475320pt;}
.ye_c00455{bottom:630.666120pt;}
.yd_c00455{bottom:645.876920pt;}
.yb_c00455{bottom:658.865720pt;}
.yc_c00455{bottom:660.132920pt;}
.ya_c00455{bottom:685.789320pt;}
.y9_c00455{bottom:715.572920pt;}
.y8_c00455{bottom:730.774920pt;}
.y7_c00455{bottom:744.397320pt;}
.y6_c00455{bottom:772.280120pt;}
.y5_c00455{bottom:799.520520pt;}
.y4_c00455{bottom:829.620920pt;}
.y3_c00455{bottom:924.656520pt;}
.y2_c00455{bottom:942.080520pt;}
.h12_c00455{height:14.190000pt;}
.h1e_c00455{height:19.518984pt;}
.h1d_c00455{height:20.559000pt;}
.hd_c00455{height:25.698750pt;}
.h3_c00455{height:29.364844pt;}
.h1b_c00455{height:30.838500pt;}
.h8_c00455{height:33.591938pt;}
.h13_c00455{height:34.602280pt;}
.h1a_c00455{height:35.446236pt;}
.h9_c00455{height:36.712500pt;}
.h10_c00455{height:39.098813pt;}
.h6_c00455{height:40.509967pt;}
.h14_c00455{height:48.093559pt;}
.hc_c00455{height:53.893298pt;}
.ha_c00455{height:62.411250pt;}
.h19_c00455{height:63.145684pt;}
.h7_c00455{height:63.220781pt;}
.h15_c00455{height:63.512625pt;}
.h11_c00455{height:63.879750pt;}
.h17_c00455{height:64.981309pt;}
.hf_c00455{height:65.293594pt;}
.he_c00455{height:65.639063pt;}
.h18_c00455{height:66.330173pt;}
.h5_c00455{height:68.575720pt;}
.h4_c00455{height:68.748281pt;}
.h16_c00455{height:70.475625pt;}
.h1c_c00455{height:70.488184pt;}
.h2_c00455{height:73.239548pt;}
.hb_c00455{height:82.912500pt;}
.h1_c00455{height:986.666667pt;}
.h0_c00455{height:1122.666667pt;}
.w1_c00455{width:684.000000pt;}
.w0_c00455{width:793.333333pt;}
.x0_c00455{left:0.000000pt;}
.x1_c00455{left:54.666667pt;}
.x66_c00455{left:85.431587pt;}
.x2e_c00455{left:86.575587pt;}
.x4_c00455{left:87.732787pt;}
.x41_c00455{left:88.823987pt;}
.x48_c00455{left:89.725987pt;}
.x60_c00455{left:113.507987pt;}
.x1e_c00455{left:115.782787pt;}
.x2f_c00455{left:117.027987pt;}
.x49_c00455{left:118.607587pt;}
.x83_c00455{left:123.214387pt;}
.x52_c00455{left:126.065587pt;}
.x42_c00455{left:127.385587pt;}
.x6a_c00455{left:131.794387pt;}
.x5b_c00455{left:134.099987pt;}
.x61_c00455{left:143.335587pt;}
.x3b_c00455{left:146.397987pt;}
.x84_c00455{left:152.043187pt;}
.x6f_c00455{left:153.116787pt;}
.x5_c00455{left:154.458787pt;}
.x5c_c00455{left:163.615187pt;}
.xe_c00455{left:164.574387pt;}
.x3c_c00455{left:166.149587pt;}
.x79_c00455{left:170.765187pt;}
.x6b_c00455{left:172.991587pt;}
.x27_c00455{left:175.037587pt;}
.x70_c00455{left:181.184387pt;}
.x6_c00455{left:183.089587pt;}
.x3d_c00455{left:185.465587pt;}
.xf_c00455{left:192.633187pt;}
.x43_c00455{left:194.987187pt;}
.x10_c00455{left:201.815987pt;}
.x53_c00455{left:204.051187pt;}
.x7a_c00455{left:211.341987pt;}
.x19_c00455{left:213.326387pt;}
.x30_c00455{left:215.297587pt;}
.x62_c00455{left:221.101187pt;}
.x67_c00455{left:222.487187pt;}
.x44_c00455{left:223.433187pt;}
.x1f_c00455{left:233.003187pt;}
.x31_c00455{left:245.195587pt;}
.x87_c00455{left:249.921187pt;}
.x7_c00455{left:251.197187pt;}
.x63_c00455{left:252.635987pt;}
.x28_c00455{left:253.551187pt;}
.x50_c00455{left:261.369987pt;}
.x59_c00455{left:262.390787pt;}
.x32_c00455{left:264.304787pt;}
.x71_c00455{left:270.464787pt;}
.x11_c00455{left:271.833187pt;}
.x4a_c00455{left:272.889187pt;}
.x12_c00455{left:281.653987pt;}
.x13_c00455{left:282.921187pt;}
.x5d_c00455{left:291.175587pt;}
.x20_c00455{left:292.161187pt;}
.x54_c00455{left:301.423187pt;}
.x68_c00455{left:309.523587pt;}
.x8_c00455{left:311.230787pt;}
.x8b_c00455{left:318.358787pt;}
.x72_c00455{left:319.317987pt;}
.x21_c00455{left:320.637987pt;}
.x55_c00455{left:330.537987pt;}
.x29_c00455{left:339.967187pt;}
.x88_c00455{left:341.300387pt;}
.x14_c00455{left:349.031187pt;}
.x4b_c00455{left:350.813187pt;}
.x45_c00455{left:352.397187pt;}
.x7b_c00455{left:359.965187pt;}
.x1a_c00455{left:361.232387pt;}
.x22_c00455{left:370.494387pt;}
.x7d_c00455{left:378.832387pt;}
.x33_c00455{left:379.813587pt;}
.x3e_c00455{left:381.547187pt;}
.x8c_c00455{left:387.456387pt;}
.x2a_c00455{left:388.692787pt;}
.x1b_c00455{left:390.391187pt;}
.x64_c00455{left:391.350387pt;}
.x7e_c00455{left:398.504787pt;}
.x56_c00455{left:399.943587pt;}
.x15_c00455{left:408.272787pt;}
.x9_c00455{left:409.214387pt;}
.x69_c00455{left:417.833987pt;}
.x23_c00455{left:418.938387pt;}
.x73_c00455{left:428.490787pt;}
.x4c_c00455{left:437.787987pt;}
.xa_c00455{left:439.455587pt;}
.x82_c00455{left:448.105987pt;}
.x5e_c00455{left:449.043187pt;}
.x58_c00455{left:451.696387pt;}
.x7f_c00455{left:457.121587pt;}
.x6c_c00455{left:458.494387pt;}
.x24_c00455{left:460.439187pt;}
.x3f_c00455{left:466.656387pt;}
.xb_c00455{left:468.183187pt;}
.x8d_c00455{left:475.434387pt;}
.x34_c00455{left:477.119587pt;}
.x76_c00455{left:478.184387pt;}
.x80_c00455{left:479.684787pt;}
.x46_c00455{left:487.974387pt;}
.x81_c00455{left:497.042787pt;}
.x16_c00455{left:498.235187pt;}
.x1c_c00455{left:499.524387pt;}
.x35_c00455{left:500.536387pt;}
.x3_c00455{left:502.023587pt;}
.x40_c00455{left:505.899987pt;}
.x6d_c00455{left:507.233187pt;}
.x36_c00455{left:508.161587pt;}
.x47_c00455{left:516.063987pt;}
.x4d_c00455{left:516.983587pt;}
.x37_c00455{left:524.956387pt;}
.x2b_c00455{left:527.310387pt;}
.xc_c00455{left:535.991587pt;}
.x4e_c00455{left:539.053987pt;}
.x8e_c00455{left:551.483987pt;}
.x2c_c00455{left:555.316387pt;}
.x57_c00455{left:557.261187pt;}
.x85_c00455{left:564.943587pt;}
.x6e_c00455{left:565.933587pt;}
.x17_c00455{left:567.191987pt;}
.x25_c00455{left:568.366787pt;}
.x51_c00455{left:574.966787pt;}
.x65_c00455{left:576.673987pt;}
.x38_c00455{left:579.313987pt;}
.x39_c00455{left:585.143987pt;}
.x26_c00455{left:586.230787pt;}
.x86_c00455{left:595.057187pt;}
.xd_c00455{left:596.011987pt;}
.x77_c00455{left:603.799987pt;}
.x4f_c00455{left:606.105587pt;}
.x8a_c00455{left:608.428787pt;}
.x1d_c00455{left:615.578787pt;}
.x74_c00455{left:624.862787pt;}
.x18_c00455{left:626.077187pt;}
.x78_c00455{left:633.948787pt;}
.x2d_c00455{left:635.330387pt;}
.x3a_c00455{left:637.363187pt;}
.x2_c00455{left:640.993187pt;}
.x89_c00455{left:643.030387pt;}
.x7c_c00455{left:643.998387pt;}
.x5a_c00455{left:653.537587pt;}
.x75_c00455{left:656.520787pt;}
.x5f_c00455{left:674.648787pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_24dfb01dfe587e87d96fccad.woff2')format("woff");}.ff1_c00456{font-family:ff1_c00456;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00456;src:url('chunks/assets/font_6b63667f6091cdacf5baaf15.woff2')format("woff");}.ff2_c00456{font-family:ff2_c00456;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00456;src:url('chunks/assets/font_0cb064e4d75cb70436e900c7.woff2')format("woff");}.ff3_c00456{font-family:ff3_c00456;line-height:0.666000;font-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_c00456{transform:matrix(0.092857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092857,0.000000,0.000000,0.250000,0,0);}
.m6d_c00456{transform:matrix(0.098089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098089,0.000000,0.000000,0.250000,0,0);}
.m75_c00456{transform:matrix(0.107008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107008,0.000000,0.000000,0.250000,0,0);}
.m77_c00456{transform:matrix(0.121213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121213,0.000000,0.000000,0.250000,0,0);}
.m1_c00456{transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);}
.mcc_c00456{transform:matrix(0.138888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138888,0.000000,0.000000,0.250000,0,0);}
.m2c_c00456{transform:matrix(0.144445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144445,0.000000,0.000000,0.250000,0,0);}
.m72_c00456{transform:matrix(0.149351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149351,0.000000,0.000000,0.250000,0,0);}
.m76_c00456{transform:matrix(0.154317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154317,0.000000,0.000000,0.250000,0,0);}
.mb1_c00456{transform:matrix(0.158670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158670,0.000000,0.000000,0.250000,0,0);}
.m2d_c00456{transform:matrix(0.161111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161111,0.000000,0.000000,0.250000,0,0);}
.mc4_c00456{transform:matrix(0.161585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161585,0.000000,0.000000,0.250000,0,0);}
.m74_c00456{transform:matrix(0.174243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174243,0.000000,0.000000,0.250000,0,0);}
.m54_c00456{transform:matrix(0.180469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180469,0.000000,0.000000,0.250000,0,0);}
.m11_c00456{transform:matrix(0.183720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183720,0.000000,0.000000,0.250000,0,0);}
.m73_c00456{transform:matrix(0.184703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184703,0.000000,0.000000,0.250000,0,0);}
.mba_c00456{transform:matrix(0.186992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186992,0.000000,0.000000,0.250000,0,0);}
.m85_c00456{transform:matrix(0.203563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203563,0.000000,0.000000,0.250000,0,0);}
.m7c_c00456{transform:matrix(0.225691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225691,0.000000,0.000000,0.250000,0,0);}
.m62_c00456{transform:matrix(0.231078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231078,0.000000,0.000000,0.250000,0,0);}
.m8d_c00456{transform:matrix(0.234355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234355,0.000000,0.000000,0.250000,0,0);}
.m2_c00456{transform:matrix(0.236568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236568,0.000000,0.000000,0.250000,0,0);}
.m84_c00456{transform:matrix(0.240835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240835,0.000000,0.000000,0.250000,0,0);}
.m21_c00456{transform:matrix(0.241127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241127,0.000000,0.000000,0.250000,0,0);}
.m39_c00456{transform:matrix(0.249798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249798,0.000000,0.000000,0.250000,0,0);}
.m0_c00456{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00456{transform:matrix(0.253871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253871,0.000000,0.000000,0.250000,0,0);}
.m2f_c00456{transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);}
.m69_c00456{transform:matrix(0.254249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254249,0.000000,0.000000,0.250000,0,0);}
.m4c_c00456{transform:matrix(0.258291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258291,0.000000,0.000000,0.250000,0,0);}
.m59_c00456{transform:matrix(0.258508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258508,0.000000,0.000000,0.250000,0,0);}
.m31_c00456{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m3b_c00456{transform:matrix(0.258816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258816,0.000000,0.000000,0.250000,0,0);}
.m16_c00456{transform:matrix(0.259494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259494,0.000000,0.000000,0.250000,0,0);}
.ma2_c00456{transform:matrix(0.259876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259876,0.000000,0.000000,0.250000,0,0);}
.md_c00456{transform:matrix(0.261294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261294,0.000000,0.000000,0.250000,0,0);}
.m8b_c00456{transform:matrix(0.261813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261813,0.000000,0.000000,0.250000,0,0);}
.m88_c00456{transform:matrix(0.261992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261992,0.000000,0.000000,0.250000,0,0);}
.m70_c00456{transform:matrix(0.262306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262306,0.000000,0.000000,0.250000,0,0);}
.m6c_c00456{transform:matrix(0.264297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264297,0.000000,0.000000,0.250000,0,0);}
.m19_c00456{transform:matrix(0.266671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266671,0.000000,0.000000,0.250000,0,0);}
.m55_c00456{transform:matrix(0.267208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267208,0.000000,0.000000,0.250000,0,0);}
.m6_c00456{transform:matrix(0.267301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267301,0.000000,0.000000,0.250000,0,0);}
.m47_c00456{transform:matrix(0.267449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267449,0.000000,0.000000,0.250000,0,0);}
.mbc_c00456{transform:matrix(0.268701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268701,0.000000,0.000000,0.250000,0,0);}
.m34_c00456{transform:matrix(0.269129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269129,0.000000,0.000000,0.250000,0,0);}
.mb7_c00456{transform:matrix(0.269618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269618,0.000000,0.000000,0.250000,0,0);}
.m4a_c00456{transform:matrix(0.271094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271094,0.000000,0.000000,0.250000,0,0);}
.m10_c00456{transform:matrix(0.271350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271350,0.000000,0.000000,0.250000,0,0);}
.ma9_c00456{transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);}
.ma1_c00456{transform:matrix(0.272512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272512,0.000000,0.000000,0.250000,0,0);}
.m4d_c00456{transform:matrix(0.272556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272556,0.000000,0.000000,0.250000,0,0);}
.m29_c00456{transform:matrix(0.273009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273009,0.000000,0.000000,0.250000,0,0);}
.m98_c00456{transform:matrix(0.273308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273308,0.000000,0.000000,0.250000,0,0);}
.mc3_c00456{transform:matrix(0.274162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274162,0.000000,0.000000,0.250000,0,0);}
.m78_c00456{transform:matrix(0.274337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274337,0.000000,0.000000,0.250000,0,0);}
.m57_c00456{transform:matrix(0.274347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274347,0.000000,0.000000,0.250000,0,0);}
.mbd_c00456{transform:matrix(0.274665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274665,0.000000,0.000000,0.250000,0,0);}
.m56_c00456{transform:matrix(0.275058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275058,0.000000,0.000000,0.250000,0,0);}
.mbf_c00456{transform:matrix(0.275231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275231,0.000000,0.000000,0.250000,0,0);}
.mb2_c00456{transform:matrix(0.275397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275397,0.000000,0.000000,0.250000,0,0);}
.m64_c00456{transform:matrix(0.276204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276204,0.000000,0.000000,0.250000,0,0);}
.m1a_c00456{transform:matrix(0.276837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276837,0.000000,0.000000,0.250000,0,0);}
.m27_c00456{transform:matrix(0.278210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278210,0.000000,0.000000,0.250000,0,0);}
.m48_c00456{transform:matrix(0.278930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278930,0.000000,0.000000,0.250000,0,0);}
.m66_c00456{transform:matrix(0.279077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279077,0.000000,0.000000,0.250000,0,0);}
.me_c00456{transform:matrix(0.279412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279412,0.000000,0.000000,0.250000,0,0);}
.m7f_c00456{transform:matrix(0.279523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279523,0.000000,0.000000,0.250000,0,0);}
.mc8_c00456{transform:matrix(0.279871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279871,0.000000,0.000000,0.250000,0,0);}
.m58_c00456{transform:matrix(0.280368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280368,0.000000,0.000000,0.250000,0,0);}
.m96_c00456{transform:matrix(0.281059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281059,0.000000,0.000000,0.250000,0,0);}
.m83_c00456{transform:matrix(0.281315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281315,0.000000,0.000000,0.250000,0,0);}
.mb0_c00456{transform:matrix(0.282987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282987,0.000000,0.000000,0.250000,0,0);}
.m5d_c00456{transform:matrix(0.283056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283056,0.000000,0.000000,0.250000,0,0);}
.m94_c00456{transform:matrix(0.283700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283700,0.000000,0.000000,0.250000,0,0);}
.m86_c00456{transform:matrix(0.284479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284479,0.000000,0.000000,0.250000,0,0);}
.m32_c00456{transform:matrix(0.284511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284511,0.000000,0.000000,0.250000,0,0);}
.mae_c00456{transform:matrix(0.284805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284805,0.000000,0.000000,0.250000,0,0);}
.m53_c00456{transform:matrix(0.285135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285135,0.000000,0.000000,0.250000,0,0);}
.m1c_c00456{transform:matrix(0.285580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285580,0.000000,0.000000,0.250000,0,0);}
.m8f_c00456{transform:matrix(0.286605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286605,0.000000,0.000000,0.250000,0,0);}
.ma5_c00456{transform:matrix(0.286700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286700,0.000000,0.000000,0.250000,0,0);}
.mbe_c00456{transform:matrix(0.287165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287165,0.000000,0.000000,0.250000,0,0);}
.mc5_c00456{transform:matrix(0.287187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287187,0.000000,0.000000,0.250000,0,0);}
.mad_c00456{transform:matrix(0.287372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287372,0.000000,0.000000,0.250000,0,0);}
.m52_c00456{transform:matrix(0.288554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288554,0.000000,0.000000,0.250000,0,0);}
.m6e_c00456{transform:matrix(0.289070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289070,0.000000,0.000000,0.250000,0,0);}
.m2a_c00456{transform:matrix(0.289231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289231,0.000000,0.000000,0.250000,0,0);}
.m17_c00456{transform:matrix(0.289515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289515,0.000000,0.000000,0.250000,0,0);}
.m92_c00456{transform:matrix(0.290123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290123,0.000000,0.000000,0.250000,0,0);}
.m60_c00456{transform:matrix(0.290258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290258,0.000000,0.000000,0.250000,0,0);}
.m79_c00456{transform:matrix(0.290573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290573,0.000000,0.000000,0.250000,0,0);}
.mcb_c00456{transform:matrix(0.291264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291264,0.000000,0.000000,0.250000,0,0);}
.mac_c00456{transform:matrix(0.291530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291530,0.000000,0.000000,0.250000,0,0);}
.m37_c00456{transform:matrix(0.291776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291776,0.000000,0.000000,0.250000,0,0);}
.ma3_c00456{transform:matrix(0.292341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292341,0.000000,0.000000,0.250000,0,0);}
.m81_c00456{transform:matrix(0.292619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292619,0.000000,0.000000,0.250000,0,0);}
.mb8_c00456{transform:matrix(0.292722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292722,0.000000,0.000000,0.250000,0,0);}
.ma6_c00456{transform:matrix(0.294538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294538,0.000000,0.000000,0.250000,0,0);}
.m30_c00456{transform:matrix(0.294733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294733,0.000000,0.000000,0.250000,0,0);}
.mc9_c00456{transform:matrix(0.294777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294777,0.000000,0.000000,0.250000,0,0);}
.m15_c00456{transform:matrix(0.294975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294975,0.000000,0.000000,0.250000,0,0);}
.m18_c00456{transform:matrix(0.295446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295446,0.000000,0.000000,0.250000,0,0);}
.m2e_c00456{transform:matrix(0.295626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295626,0.000000,0.000000,0.250000,0,0);}
.ma7_c00456{transform:matrix(0.296572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296572,0.000000,0.000000,0.250000,0,0);}
.m8_c00456{transform:matrix(0.296655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296655,0.000000,0.000000,0.250000,0,0);}
.ma0_c00456{transform:matrix(0.296859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296859,0.000000,0.000000,0.250000,0,0);}
.m1b_c00456{transform:matrix(0.297037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297037,0.000000,0.000000,0.250000,0,0);}
.m41_c00456{transform:matrix(0.297251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297251,0.000000,0.000000,0.250000,0,0);}
.m71_c00456{transform:matrix(0.297526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297526,0.000000,0.000000,0.250000,0,0);}
.m9_c00456{transform:matrix(0.297643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297643,0.000000,0.000000,0.250000,0,0);}
.m91_c00456{transform:matrix(0.297826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297826,0.000000,0.000000,0.250000,0,0);}
.m28_c00456{transform:matrix(0.297866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297866,0.000000,0.000000,0.250000,0,0);}
.m6b_c00456{transform:matrix(0.297876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297876,0.000000,0.000000,0.250000,0,0);}
.mb9_c00456{transform:matrix(0.297967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297967,0.000000,0.000000,0.250000,0,0);}
.m9e_c00456{transform:matrix(0.298593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298593,0.000000,0.000000,0.250000,0,0);}
.m3_c00456{transform:matrix(0.298987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298987,0.000000,0.000000,0.250000,0,0);}
.m46_c00456{transform:matrix(0.299027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299027,0.000000,0.000000,0.250000,0,0);}
.m3d_c00456{transform:matrix(0.299246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299246,0.000000,0.000000,0.250000,0,0);}
.m82_c00456{transform:matrix(0.300011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300011,0.000000,0.000000,0.250000,0,0);}
.m5e_c00456{transform:matrix(0.300318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300318,0.000000,0.000000,0.250000,0,0);}
.m89_c00456{transform:matrix(0.301287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301287,0.000000,0.000000,0.250000,0,0);}
.m67_c00456{transform:matrix(0.301887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301887,0.000000,0.000000,0.250000,0,0);}
.m51_c00456{transform:matrix(0.302182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302182,0.000000,0.000000,0.250000,0,0);}
.m36_c00456{transform:matrix(0.302456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302456,0.000000,0.000000,0.250000,0,0);}
.m7a_c00456{transform:matrix(0.302679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302679,0.000000,0.000000,0.250000,0,0);}
.mbb_c00456{transform:matrix(0.302694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302694,0.000000,0.000000,0.250000,0,0);}
.m33_c00456{transform:matrix(0.303248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303248,0.000000,0.000000,0.250000,0,0);}
.mb5_c00456{transform:matrix(0.303773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303773,0.000000,0.000000,0.250000,0,0);}
.m5a_c00456{transform:matrix(0.304326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304326,0.000000,0.000000,0.250000,0,0);}
.m7d_c00456{transform:matrix(0.304556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304556,0.000000,0.000000,0.250000,0,0);}
.m3f_c00456{transform:matrix(0.304986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304986,0.000000,0.000000,0.250000,0,0);}
.m7b_c00456{transform:matrix(0.305169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305169,0.000000,0.000000,0.250000,0,0);}
.m45_c00456{transform:matrix(0.305648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305648,0.000000,0.000000,0.250000,0,0);}
.m4_c00456{transform:matrix(0.305971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305971,0.000000,0.000000,0.250000,0,0);}
.maf_c00456{transform:matrix(0.307050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307050,0.000000,0.000000,0.250000,0,0);}
.m95_c00456{transform:matrix(0.307146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307146,0.000000,0.000000,0.250000,0,0);}
.m63_c00456{transform:matrix(0.307530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307530,0.000000,0.000000,0.250000,0,0);}
.mca_c00456{transform:matrix(0.307690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307690,0.000000,0.000000,0.250000,0,0);}
.m61_c00456{transform:matrix(0.307968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307968,0.000000,0.000000,0.250000,0,0);}
.mce_c00456{transform:matrix(0.308926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308926,0.000000,0.000000,0.250000,0,0);}
.m80_c00456{transform:matrix(0.309310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309310,0.000000,0.000000,0.250000,0,0);}
.m49_c00456{transform:matrix(0.309389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309389,0.000000,0.000000,0.250000,0,0);}
.ma_c00456{transform:matrix(0.309665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309665,0.000000,0.000000,0.250000,0,0);}
.m23_c00456{transform:matrix(0.309904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309904,0.000000,0.000000,0.250000,0,0);}
.mb4_c00456{transform:matrix(0.310578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310578,0.000000,0.000000,0.250000,0,0);}
.m4e_c00456{transform:matrix(0.310802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310802,0.000000,0.000000,0.250000,0,0);}
.mcd_c00456{transform:matrix(0.311368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311368,0.000000,0.000000,0.250000,0,0);}
.m90_c00456{transform:matrix(0.312224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312224,0.000000,0.000000,0.250000,0,0);}
.maa_c00456{transform:matrix(0.312633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312633,0.000000,0.000000,0.250000,0,0);}
.m6a_c00456{transform:matrix(0.312648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312648,0.000000,0.000000,0.250000,0,0);}
.m9a_c00456{transform:matrix(0.313146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313146,0.000000,0.000000,0.250000,0,0);}
.mb3_c00456{transform:matrix(0.313242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313242,0.000000,0.000000,0.250000,0,0);}
.m99_c00456{transform:matrix(0.313292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313292,0.000000,0.000000,0.250000,0,0);}
.m65_c00456{transform:matrix(0.314322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314322,0.000000,0.000000,0.250000,0,0);}
.m87_c00456{transform:matrix(0.315433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315433,0.000000,0.000000,0.250000,0,0);}
.m6f_c00456{transform:matrix(0.315724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315724,0.000000,0.000000,0.250000,0,0);}
.m9b_c00456{transform:matrix(0.318025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318025,0.000000,0.000000,0.250000,0,0);}
.mc0_c00456{transform:matrix(0.318749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318749,0.000000,0.000000,0.250000,0,0);}
.m97_c00456{transform:matrix(0.319425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319425,0.000000,0.000000,0.250000,0,0);}
.m38_c00456{transform:matrix(0.321081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321081,0.000000,0.000000,0.250000,0,0);}
.m5c_c00456{transform:matrix(0.321478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321478,0.000000,0.000000,0.250000,0,0);}
.mc_c00456{transform:matrix(0.322378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322378,0.000000,0.000000,0.250000,0,0);}
.m5b_c00456{transform:matrix(0.323572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323572,0.000000,0.000000,0.250000,0,0);}
.m8e_c00456{transform:matrix(0.324830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324830,0.000000,0.000000,0.250000,0,0);}
.m14_c00456{transform:matrix(0.325753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325753,0.000000,0.000000,0.250000,0,0);}
.mb_c00456{transform:matrix(0.325960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325960,0.000000,0.000000,0.250000,0,0);}
.m40_c00456{transform:matrix(0.327650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327650,0.000000,0.000000,0.250000,0,0);}
.m50_c00456{transform:matrix(0.327676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327676,0.000000,0.000000,0.250000,0,0);}
.mc1_c00456{transform:matrix(0.328801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328801,0.000000,0.000000,0.250000,0,0);}
.m13_c00456{transform:matrix(0.329348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329348,0.000000,0.000000,0.250000,0,0);}
.m9d_c00456{transform:matrix(0.329498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329498,0.000000,0.000000,0.250000,0,0);}
.m93_c00456{transform:matrix(0.329636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329636,0.000000,0.000000,0.250000,0,0);}
.m12_c00456{transform:matrix(0.330783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330783,0.000000,0.000000,0.250000,0,0);}
.m25_c00456{transform:matrix(0.331024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331024,0.000000,0.000000,0.250000,0,0);}
.ma4_c00456{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);}
.m8a_c00456{transform:matrix(0.331825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331825,0.000000,0.000000,0.250000,0,0);}
.m42_c00456{transform:matrix(0.332723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332723,0.000000,0.000000,0.250000,0,0);}
.m1e_c00456{transform:matrix(0.332744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332744,0.000000,0.000000,0.250000,0,0);}
.mc6_c00456{transform:matrix(0.332896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332896,0.000000,0.000000,0.250000,0,0);}
.m4b_c00456{transform:matrix(0.332948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332948,0.000000,0.000000,0.250000,0,0);}
.m44_c00456{transform:matrix(0.333472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333472,0.000000,0.000000,0.250000,0,0);}
.mab_c00456{transform:matrix(0.333648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333648,0.000000,0.000000,0.250000,0,0);}
.mb6_c00456{transform:matrix(0.333861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333861,0.000000,0.000000,0.250000,0,0);}
.m3c_c00456{transform:matrix(0.334515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334515,0.000000,0.000000,0.250000,0,0);}
.m9c_c00456{transform:matrix(0.334750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00456{transform:matrix(0.335735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335735,0.000000,0.000000,0.250000,0,0);}
.mc2_c00456{transform:matrix(0.335916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335916,0.000000,0.000000,0.250000,0,0);}
.m4f_c00456{transform:matrix(0.336402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336402,0.000000,0.000000,0.250000,0,0);}
.m3e_c00456{transform:matrix(0.337579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337579,0.000000,0.000000,0.250000,0,0);}
.m68_c00456{transform:matrix(0.338620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338620,0.000000,0.000000,0.250000,0,0);}
.m20_c00456{transform:matrix(0.339918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339918,0.000000,0.000000,0.250000,0,0);}
.m35_c00456{transform:matrix(0.343621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343621,0.000000,0.000000,0.250000,0,0);}
.m5_c00456{transform:matrix(0.343800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343800,0.000000,0.000000,0.250000,0,0);}
.m24_c00456{transform:matrix(0.349757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349757,0.000000,0.000000,0.250000,0,0);}
.m26_c00456{transform:matrix(0.350932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350932,0.000000,0.000000,0.250000,0,0);}
.m8c_c00456{transform:matrix(0.353822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353822,0.000000,0.000000,0.250000,0,0);}
.mc7_c00456{transform:matrix(0.354317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354317,0.000000,0.000000,0.250000,0,0);}
.m5f_c00456{transform:matrix(0.354789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354789,0.000000,0.000000,0.250000,0,0);}
.m7e_c00456{transform:matrix(0.363090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363090,0.000000,0.000000,0.250000,0,0);}
.m43_c00456{transform:matrix(0.365815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365815,0.000000,0.000000,0.250000,0,0);}
.mf_c00456{transform:matrix(0.366763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366763,0.000000,0.000000,0.250000,0,0);}
.m22_c00456{transform:matrix(0.373415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373415,0.000000,0.000000,0.250000,0,0);}
.m1f_c00456{transform:matrix(0.382492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382492,0.000000,0.000000,0.250000,0,0);}
.m1d_c00456{transform:matrix(0.386808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386808,0.000000,0.000000,0.250000,0,0);}
.m7_c00456{transform:matrix(0.390366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390366,0.000000,0.000000,0.250000,0,0);}
.m3a_c00456{transform:matrix(0.396465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396465,0.000000,0.000000,0.250000,0,0);}
.v0_c00456{vertical-align:0.000000px;}
.ls17_c00456{letter-spacing:-4.352040px;}
.ls1b_c00456{letter-spacing:-2.778930px;}
.ls4_c00456{letter-spacing:-2.709630px;}
.ls22_c00456{letter-spacing:-2.605680px;}
.ls18_c00456{letter-spacing:-2.536380px;}
.ls14_c00456{letter-spacing:-2.370067px;}
.ls1c_c00456{letter-spacing:-1.954267px;}
.ls24_c00456{letter-spacing:-1.680312px;}
.ls19_c00456{letter-spacing:-0.123869px;}
.ls2_c00456{letter-spacing:0.000000px;}
.lsb_c00456{letter-spacing:0.255479px;}
.ls1e_c00456{letter-spacing:1.432233px;}
.ls1f_c00456{letter-spacing:2.049310px;}
.ls12_c00456{letter-spacing:2.145949px;}
.ls9_c00456{letter-spacing:2.501928px;}
.ls1d_c00456{letter-spacing:3.220589px;}
.ls0_c00456{letter-spacing:3.282523px;}
.ls8_c00456{letter-spacing:3.346200px;}
.ls11_c00456{letter-spacing:3.375425px;}
.ls13_c00456{letter-spacing:3.385810px;}
.ls15_c00456{letter-spacing:3.484810px;}
.ls20_c00456{letter-spacing:3.544200px;}
.ls10_c00456{letter-spacing:3.564000px;}
.ls25_c00456{letter-spacing:3.599937px;}
.ls21_c00456{letter-spacing:3.722400px;}
.ls6_c00456{letter-spacing:3.791700px;}
.ls7_c00456{letter-spacing:3.801610px;}
.ls5_c00456{letter-spacing:3.870900px;}
.lsc_c00456{letter-spacing:3.920400px;}
.ls1a_c00456{letter-spacing:3.969900px;}
.ls1_c00456{letter-spacing:4.008796px;}
.lse_c00456{letter-spacing:4.039200px;}
.lsd_c00456{letter-spacing:4.118400px;}
.ls3_c00456{letter-spacing:31.363200px;}
.lsf_c00456{letter-spacing:57.024198px;}
.ls23_c00456{letter-spacing:58.449798px;}
.ls16_c00456{letter-spacing:62.726400px;}
.lsa_c00456{letter-spacing:64.152198px;}
.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;}
}
.ws1_c00456{word-spacing:-19.354500px;}
.ws0_c00456{word-spacing:-15.522463px;}
.ws2_c00456{word-spacing:0.000000px;}
._4_c00456{width:3.562020px;}
._1_c00456{width:6.923554px;}
._2_c00456{width:22.451220px;}
._3_c00456{width:40.623660px;}
._0_c00456{width:77.274410px;}
.fc0_c00456{color:transparent;}
.fs15_c00456{font-size:22.176000px;}
.fs20_c00456{font-size:22.374000px;}
.fs2_c00456{font-size:25.146000px;}
.fs21_c00456{font-size:27.720000px;}
.fs3_c00456{font-size:31.363200px;}
.fs1c_c00456{font-size:40.986198px;}
.fs5_c00456{font-size:41.580000px;}
.fs1e_c00456{font-size:55.440000px;}
.fs1a_c00456{font-size:55.836198px;}
.fsf_c00456{font-size:57.024198px;}
.fs1f_c00456{font-size:58.449798px;}
.fs16_c00456{font-size:62.726400px;}
.fsb_c00456{font-size:64.152198px;}
.fs1b_c00456{font-size:66.330000px;}
.fs1_c00456{font-size:66.528000px;}
.fs9_c00456{font-size:66.924000px;}
.fs13_c00456{font-size:67.716198px;}
.fs14_c00456{font-size:69.696198px;}
.fs11_c00456{font-size:70.884000px;}
.fs10_c00456{font-size:71.280000px;}
.fs18_c00456{font-size:72.468000px;}
.fs1d_c00456{font-size:74.448000px;}
.fs7_c00456{font-size:74.844000px;}
.fs6_c00456{font-size:75.834000px;}
.fs8_c00456{font-size:76.032198px;}
.fs4_c00456{font-size:77.418000px;}
.fsc_c00456{font-size:78.408000px;}
.fs12_c00456{font-size:78.606198px;}
.fs19_c00456{font-size:79.398000px;}
.fse_c00456{font-size:80.784000px;}
.fsd_c00456{font-size:82.368000px;}
.fs0_c00456{font-size:87.912198px;}
.fsa_c00456{font-size:96.228000px;}
.fs17_c00456{font-size:124.344000px;}
.y24_c00456{bottom:-1.870065px;}
.y0_c00456{bottom:0.000000px;}
.y23_c00456{bottom:1.332585px;}
.y1_c00456{bottom:76.500000px;}
.y22_c00456{bottom:119.662335px;}
.y21_c00456{bottom:153.163935px;}
.y20_c00456{bottom:177.399135px;}
.y1f_c00456{bottom:185.952735px;}
.y1e_c00456{bottom:245.466585px;}
.y1c_c00456{bottom:250.817535px;}
.y1d_c00456{bottom:256.158585px;}
.y1b_c00456{bottom:266.499135px;}
.y1a_c00456{bottom:283.244985px;}
.y19_c00456{bottom:314.964585px;}
.y18_c00456{bottom:347.040585px;}
.y17_c00456{bottom:379.834335px;}
.y16_c00456{bottom:411.910335px;}
.y15_c00456{bottom:443.986335px;}
.y14_c00456{bottom:474.280335px;}
.y13_c00456{bottom:499.223385px;}
.y12_c00456{bottom:507.776985px;}
.y11_c00456{bottom:539.501535px;}
.y10_c00456{bottom:571.933935px;}
.yf_c00456{bottom:603.648585px;}
.ye_c00456{bottom:636.085935px;}
.yd_c00456{bottom:668.156985px;}
.yc_c00456{bottom:699.881535px;}
.yb_c00456{bottom:763.320735px;}
.ya_c00456{bottom:795.748185px;}
.y9_c00456{bottom:827.829135px;}
.y8_c00456{bottom:860.261535px;}
.y7_c00456{bottom:892.332585px;}
.y6_c00456{bottom:924.408585px;}
.y5_c00456{bottom:1006.736985px;}
.y4_c00456{bottom:1017.428985px;}
.y3_c00456{bottom:1030.259385px;}
.y2_c00456{bottom:1061.978985px;}
.h5_c00456{height:20.887891px;}
.h22_c00456{height:21.958857px;}
.h17_c00456{height:23.128875px;}
.h4_c00456{height:26.226492px;}
.h23_c00456{height:28.911094px;}
.h11_c00456{height:37.978116px;}
.h21_c00456{height:38.927565px;}
.h18_c00456{height:41.775782px;}
.hd_c00456{height:42.725364px;}
.h1e_c00456{height:42.747324px;}
.h7_c00456{height:43.366641px;}
.h20_c00456{height:57.822188px;}
.h1c_c00456{height:58.235410px;}
.hb_c00456{height:65.682246px;}
.h1d_c00456{height:69.180117px;}
.h3_c00456{height:69.386625px;}
.h13_c00456{height:69.568770px;}
.h15_c00456{height:70.625878px;}
.h1a_c00456{height:71.123379px;}
.h16_c00456{height:72.690957px;}
.h1f_c00456{height:73.066641px;}
.h9_c00456{height:73.455293px;}
.h12_c00456{height:74.342813px;}
.h8_c00456{height:74.426924px;}
.ha_c00456{height:74.621444px;}
.h6_c00456{height:75.981533px;}
.he_c00456{height:76.953164px;}
.h14_c00456{height:77.147685px;}
.h1b_c00456{height:77.924795px;}
.h10_c00456{height:79.285078px;}
.hf_c00456{height:80.839688px;}
.h2_c00456{height:86.281015px;}
.hc_c00456{height:100.362797px;}
.h19_c00456{height:129.686906px;}
.h1_c00456{height:1110.000000px;}
.h0_c00456{height:1263.000000px;}
.w1_c00456{width:769.500000px;}
.w0_c00456{width:892.500000px;}
.x0_c00456{left:0.000000px;}
.x1_c00456{left:61.500000px;}
.x72_c00456{left:88.650885px;}
.x4c_c00456{left:90.853635px;}
.x1a_c00456{left:92.645535px;}
.xf_c00456{left:93.680085px;}
.x38_c00456{left:96.313485px;}
.x66_c00456{left:122.093085px;}
.x1b_c00456{left:125.261085px;}
.x2f_c00456{left:127.364835px;}
.x3e_c00456{left:128.745885px;}
.x6b_c00456{left:133.116735px;}
.x52_c00456{left:135.121485px;}
.x43_c00456{left:137.735085px;}
.x78_c00456{left:144.254235px;}
.x5_c00456{left:146.927235px;}
.x10_c00456{left:150.392235px;}
.x7c_c00456{left:155.787735px;}
.x1c_c00456{left:157.183635px;}
.x39_c00456{left:162.608835px;}
.x61_c00456{left:165.885735px;}
.x6c_c00456{left:166.935135px;}
.x11_c00456{left:169.108185px;}
.x2a_c00456{left:170.172435px;}
.x6_c00456{left:181.166385px;}
.x5b_c00456{left:188.428035px;}
.x73_c00456{left:189.863535px;}
.x47_c00456{left:191.229735px;}
.x79_c00456{left:199.619985px;}
.x3a_c00456{left:202.758285px;}
.x1d_c00456{left:203.787885px;}
.x7d_c00456{left:209.534835px;}
.x7f_c00456{left:211.128735px;}
.x7_c00456{left:212.390985px;}
.x12_c00456{left:214.252185px;}
.x4d_c00456{left:222.365235px;}
.x48_c00456{left:224.320485px;}
.x53_c00456{left:234.646185px;}
.x33_c00456{left:236.764785px;}
.x62_c00456{left:244.457085px;}
.x13_c00456{left:245.852985px;}
.x30_c00456{left:247.872585px;}
.x77_c00456{left:255.688635px;}
.x67_c00456{left:266.534085px;}
.x3f_c00456{left:267.756735px;}
.x31_c00456{left:281.695935px;}
.x23_c00456{left:289.739685px;}
.x3b_c00456{left:292.061235px;}
.x40_c00456{left:300.778185px;}
.x68_c00456{left:310.717785px;}
.x14_c00456{left:312.371085px;}
.x5c_c00456{left:321.805785px;}
.x8_c00456{left:322.865085px;}
.x24_c00456{left:324.691635px;}
.x54_c00456{left:333.730335px;}
.x15_c00456{left:344.615385px;}
.x2b_c00456{left:347.179485px;}
.x6e_c00456{left:354.589635px;}
.x49_c00456{left:356.000385px;}
.x3c_c00456{left:357.945735px;}
.x25_c00456{left:368.251635px;}
.x32_c00456{left:369.355485px;}
.x34_c00456{left:377.691285px;}
.x26_c00456{left:379.700985px;}
.x16_c00456{left:391.328535px;}
.x69_c00456{left:398.822835px;}
.x63_c00456{left:399.842535px;}
.x44_c00456{left:401.070135px;}
.x9_c00456{left:412.524435px;}
.x74_c00456{left:421.582935px;}
.x1e_c00456{left:423.562935px;}
.x5d_c00456{left:434.566785px;}
.x2c_c00456{left:446.941785px;}
.xa_c00456{left:456.297285px;}
.x3d_c00456{left:457.351635px;}
.x1f_c00456{left:466.489335px;}
.x4e_c00456{left:468.479235px;}
.x45_c00456{left:477.740685px;}
.x27_c00456{left:479.077185px;}
.x76_c00456{left:483.566835px;}
.xb_c00456{left:489.833535px;}
.x2d_c00456{left:501.114585px;}
.x81_c00456{left:504.569685px;}
.x28_c00456{left:511.049235px;}
.x5e_c00456{left:512.257035px;}
.x6f_c00456{left:522.295635px;}
.x4a_c00456{left:523.632135px;}
.x4f_c00456{left:532.779735px;}
.x64_c00456{left:534.408285px;}
.x80_c00456{left:540.234435px;}
.x57_c00456{left:542.546085px;}
.x55_c00456{left:544.179585px;}
.x46_c00456{left:555.950685px;}
.x7b_c00456{left:559.118685px;}
.x56_c00456{left:560.192835px;}
.x58_c00456{left:566.692185px;}
.x17_c00456{left:568.112835px;}
.xc_c00456{left:577.700985px;}
.x35_c00456{left:579.859185px;}
.x70_c00456{left:587.328735px;}
.x20_c00456{left:588.680085px;}
.x65_c00456{left:589.709685px;}
.x59_c00456{left:606.608985px;}
.x18_c00456{left:610.846185px;}
.x4b_c00456{left:612.019335px;}
.x41_c00456{left:620.736285px;}
.x50_c00456{left:621.879735px;}
.x36_c00456{left:643.758735px;}
.x21_c00456{left:645.025935px;}
.x6d_c00456{left:653.574585px;}
.x5f_c00456{left:654.891285px;}
.x29_c00456{left:656.292135px;}
.x71_c00456{left:664.979385px;}
.x42_c00456{left:666.221835px;}
.xd_c00456{left:667.291035px;}
.x51_c00456{left:677.656335px;}
.x22_c00456{left:678.948285px;}
.x7e_c00456{left:689.016585px;}
.x5a_c00456{left:691.199535px;}
.xe_c00456{left:698.911635px;}
.x7a_c00456{left:701.455935px;}
.x3_c00456{left:705.425835px;}
.x4_c00456{left:706.940535px;}
.x75_c00456{left:709.885785px;}
.x2_c00456{left:711.484635px;}
.x19_c00456{left:721.340085px;}
.x60_c00456{left:731.279685px;}
.x6a_c00456{left:732.373635px;}
.x37_c00456{left:733.635885px;}
.x2e_c00456{left:743.055735px;}
@media print{
.v0_c00456{vertical-align:0.000000pt;}
.ls17_c00456{letter-spacing:-3.868480pt;}
.ls1b_c00456{letter-spacing:-2.470160pt;}
.ls4_c00456{letter-spacing:-2.408560pt;}
.ls22_c00456{letter-spacing:-2.316160pt;}
.ls18_c00456{letter-spacing:-2.254560pt;}
.ls14_c00456{letter-spacing:-2.106726pt;}
.ls1c_c00456{letter-spacing:-1.737126pt;}
.ls24_c00456{letter-spacing:-1.493610pt;}
.ls19_c00456{letter-spacing:-0.110106pt;}
.ls2_c00456{letter-spacing:0.000000pt;}
.lsb_c00456{letter-spacing:0.227093pt;}
.ls1e_c00456{letter-spacing:1.273096pt;}
.ls1f_c00456{letter-spacing:1.821609pt;}
.ls12_c00456{letter-spacing:1.907510pt;}
.ls9_c00456{letter-spacing:2.223936pt;}
.ls1d_c00456{letter-spacing:2.862746pt;}
.ls0_c00456{letter-spacing:2.917798pt;}
.ls8_c00456{letter-spacing:2.974400pt;}
.ls11_c00456{letter-spacing:3.000378pt;}
.ls13_c00456{letter-spacing:3.009609pt;}
.ls15_c00456{letter-spacing:3.097609pt;}
.ls20_c00456{letter-spacing:3.150400pt;}
.ls10_c00456{letter-spacing:3.168000pt;}
.ls25_c00456{letter-spacing:3.199944pt;}
.ls21_c00456{letter-spacing:3.308800pt;}
.ls6_c00456{letter-spacing:3.370400pt;}
.ls7_c00456{letter-spacing:3.379209pt;}
.ls5_c00456{letter-spacing:3.440800pt;}
.lsc_c00456{letter-spacing:3.484800pt;}
.ls1a_c00456{letter-spacing:3.528800pt;}
.ls1_c00456{letter-spacing:3.563374pt;}
.lse_c00456{letter-spacing:3.590400pt;}
.lsd_c00456{letter-spacing:3.660800pt;}
.ls3_c00456{letter-spacing:27.878400pt;}
.lsf_c00456{letter-spacing:50.688176pt;}
.ls23_c00456{letter-spacing:51.955376pt;}
.ls16_c00456{letter-spacing:55.756800pt;}
.lsa_c00456{letter-spacing:57.024176pt;}
.ws1_c00456{word-spacing:-17.204000pt;}
.ws0_c00456{word-spacing:-13.797745pt;}
.ws2_c00456{word-spacing:0.000000pt;}
._4_c00456{width:3.166240pt;}
._1_c00456{width:6.154270pt;}
._2_c00456{width:19.956640pt;}
._3_c00456{width:36.109920pt;}
._0_c00456{width:68.688365pt;}
.fs15_c00456{font-size:19.712000pt;}
.fs20_c00456{font-size:19.888000pt;}
.fs2_c00456{font-size:22.352000pt;}
.fs21_c00456{font-size:24.640000pt;}
.fs3_c00456{font-size:27.878400pt;}
.fs1c_c00456{font-size:36.432176pt;}
.fs5_c00456{font-size:36.960000pt;}
.fs1e_c00456{font-size:49.280000pt;}
.fs1a_c00456{font-size:49.632176pt;}
.fsf_c00456{font-size:50.688176pt;}
.fs1f_c00456{font-size:51.955376pt;}
.fs16_c00456{font-size:55.756800pt;}
.fsb_c00456{font-size:57.024176pt;}
.fs1b_c00456{font-size:58.960000pt;}
.fs1_c00456{font-size:59.136000pt;}
.fs9_c00456{font-size:59.488000pt;}
.fs13_c00456{font-size:60.192176pt;}
.fs14_c00456{font-size:61.952176pt;}
.fs11_c00456{font-size:63.008000pt;}
.fs10_c00456{font-size:63.360000pt;}
.fs18_c00456{font-size:64.416000pt;}
.fs1d_c00456{font-size:66.176000pt;}
.fs7_c00456{font-size:66.528000pt;}
.fs6_c00456{font-size:67.408000pt;}
.fs8_c00456{font-size:67.584176pt;}
.fs4_c00456{font-size:68.816000pt;}
.fsc_c00456{font-size:69.696000pt;}
.fs12_c00456{font-size:69.872176pt;}
.fs19_c00456{font-size:70.576000pt;}
.fse_c00456{font-size:71.808000pt;}
.fsd_c00456{font-size:73.216000pt;}
.fs0_c00456{font-size:78.144176pt;}
.fsa_c00456{font-size:85.536000pt;}
.fs17_c00456{font-size:110.528000pt;}
.y24_c00456{bottom:-1.662280pt;}
.y0_c00456{bottom:0.000000pt;}
.y23_c00456{bottom:1.184520pt;}
.y1_c00456{bottom:68.000000pt;}
.y22_c00456{bottom:106.366520pt;}
.y21_c00456{bottom:136.145720pt;}
.y20_c00456{bottom:157.688120pt;}
.y1f_c00456{bottom:165.291320pt;}
.y1e_c00456{bottom:218.192520pt;}
.y1c_c00456{bottom:222.948920pt;}
.y1d_c00456{bottom:227.696520pt;}
.y1b_c00456{bottom:236.888120pt;}
.y1a_c00456{bottom:251.773320pt;}
.y19_c00456{bottom:279.968520pt;}
.y18_c00456{bottom:308.480520pt;}
.y17_c00456{bottom:337.630520pt;}
.y16_c00456{bottom:366.142520pt;}
.y15_c00456{bottom:394.654520pt;}
.y14_c00456{bottom:421.582520pt;}
.y13_c00456{bottom:443.754120pt;}
.y12_c00456{bottom:451.357320pt;}
.y11_c00456{bottom:479.556920pt;}
.y10_c00456{bottom:508.385720pt;}
.yf_c00456{bottom:536.576520pt;}
.ye_c00456{bottom:565.409720pt;}
.yd_c00456{bottom:593.917320pt;}
.yc_c00456{bottom:622.116920pt;}
.yb_c00456{bottom:678.507320pt;}
.ya_c00456{bottom:707.331720pt;}
.y9_c00456{bottom:735.848120pt;}
.y8_c00456{bottom:764.676920pt;}
.y7_c00456{bottom:793.184520pt;}
.y6_c00456{bottom:821.696520pt;}
.y5_c00456{bottom:894.877320pt;}
.y4_c00456{bottom:904.381320pt;}
.y3_c00456{bottom:915.786120pt;}
.y2_c00456{bottom:943.981320pt;}
.h5_c00456{height:18.567014pt;}
.h22_c00456{height:19.518984pt;}
.h17_c00456{height:20.559000pt;}
.h4_c00456{height:23.312438pt;}
.h23_c00456{height:25.698750pt;}
.h11_c00456{height:33.758325pt;}
.h21_c00456{height:34.602280pt;}
.h18_c00456{height:37.134029pt;}
.hd_c00456{height:37.978101pt;}
.h1e_c00456{height:37.997621pt;}
.h7_c00456{height:38.548125pt;}
.h20_c00456{height:51.397500pt;}
.h1c_c00456{height:51.764809pt;}
.hb_c00456{height:58.384219pt;}
.h1d_c00456{height:61.493438pt;}
.h3_c00456{height:61.677000pt;}
.h13_c00456{height:61.838906pt;}
.h15_c00456{height:62.778559pt;}
.h1a_c00456{height:63.220781pt;}
.h16_c00456{height:64.614184pt;}
.h1f_c00456{height:64.948125pt;}
.h9_c00456{height:65.293594pt;}
.h12_c00456{height:66.082500pt;}
.h8_c00456{height:66.157266pt;}
.ha_c00456{height:66.330173pt;}
.h6_c00456{height:67.539141pt;}
.he_c00456{height:68.402813pt;}
.h14_c00456{height:68.575720pt;}
.h1b_c00456{height:69.266484pt;}
.h10_c00456{height:70.475625pt;}
.hf_c00456{height:71.857500pt;}
.h2_c00456{height:76.694235pt;}
.hc_c00456{height:89.211375pt;}
.h19_c00456{height:115.277250pt;}
.h1_c00456{height:986.666667pt;}
.h0_c00456{height:1122.666667pt;}
.w1_c00456{width:684.000000pt;}
.w0_c00456{width:793.333333pt;}
.x0_c00456{left:0.000000pt;}
.x1_c00456{left:54.666667pt;}
.x72_c00456{left:78.800787pt;}
.x4c_c00456{left:80.758787pt;}
.x1a_c00456{left:82.351587pt;}
.xf_c00456{left:83.271187pt;}
.x38_c00456{left:85.611987pt;}
.x66_c00456{left:108.527187pt;}
.x1b_c00456{left:111.343187pt;}
.x2f_c00456{left:113.213187pt;}
.x3e_c00456{left:114.440787pt;}
.x6b_c00456{left:118.325987pt;}
.x52_c00456{left:120.107987pt;}
.x43_c00456{left:122.431187pt;}
.x78_c00456{left:128.225987pt;}
.x5_c00456{left:130.601987pt;}
.x10_c00456{left:133.681987pt;}
.x7c_c00456{left:138.477987pt;}
.x1c_c00456{left:139.718787pt;}
.x39_c00456{left:144.541187pt;}
.x61_c00456{left:147.453987pt;}
.x6c_c00456{left:148.386787pt;}
.x11_c00456{left:150.318387pt;}
.x2a_c00456{left:151.264387pt;}
.x6_c00456{left:161.036787pt;}
.x5b_c00456{left:167.491587pt;}
.x73_c00456{left:168.767587pt;}
.x47_c00456{left:169.981987pt;}
.x79_c00456{left:177.439987pt;}
.x3a_c00456{left:180.229587pt;}
.x1d_c00456{left:181.144787pt;}
.x7d_c00456{left:186.253187pt;}
.x7f_c00456{left:187.669987pt;}
.x7_c00456{left:188.791987pt;}
.x12_c00456{left:190.446387pt;}
.x4d_c00456{left:197.657987pt;}
.x48_c00456{left:199.395987pt;}
.x53_c00456{left:208.574387pt;}
.x33_c00456{left:210.457587pt;}
.x62_c00456{left:217.295187pt;}
.x13_c00456{left:218.535987pt;}
.x30_c00456{left:220.331187pt;}
.x77_c00456{left:227.278787pt;}
.x67_c00456{left:236.919187pt;}
.x3f_c00456{left:238.005987pt;}
.x31_c00456{left:250.396387pt;}
.x23_c00456{left:257.546387pt;}
.x3b_c00456{left:259.609987pt;}
.x40_c00456{left:267.358387pt;}
.x68_c00456{left:276.193587pt;}
.x14_c00456{left:277.663187pt;}
.x5c_c00456{left:286.049587pt;}
.x8_c00456{left:286.991187pt;}
.x24_c00456{left:288.614787pt;}
.x54_c00456{left:296.649187pt;}
.x15_c00456{left:306.324787pt;}
.x2b_c00456{left:308.603987pt;}
.x6e_c00456{left:315.190787pt;}
.x49_c00456{left:316.444787pt;}
.x3c_c00456{left:318.173987pt;}
.x25_c00456{left:327.334787pt;}
.x32_c00456{left:328.315987pt;}
.x34_c00456{left:335.725587pt;}
.x26_c00456{left:337.511987pt;}
.x16_c00456{left:347.847587pt;}
.x69_c00456{left:354.509187pt;}
.x63_c00456{left:355.415587pt;}
.x44_c00456{left:356.506787pt;}
.x9_c00456{left:366.688387pt;}
.x74_c00456{left:374.740387pt;}
.x1e_c00456{left:376.500387pt;}
.x5d_c00456{left:386.281587pt;}
.x2c_c00456{left:397.281587pt;}
.xa_c00456{left:405.597587pt;}
.x3d_c00456{left:406.534787pt;}
.x1f_c00456{left:414.657187pt;}
.x4e_c00456{left:416.425987pt;}
.x45_c00456{left:424.658387pt;}
.x27_c00456{left:425.846387pt;}
.x76_c00456{left:429.837187pt;}
.xb_c00456{left:435.407587pt;}
.x2d_c00456{left:445.435187pt;}
.x81_c00456{left:448.506387pt;}
.x28_c00456{left:454.265987pt;}
.x5e_c00456{left:455.339587pt;}
.x6f_c00456{left:464.262787pt;}
.x4a_c00456{left:465.450787pt;}
.x4f_c00456{left:473.581987pt;}
.x64_c00456{left:475.029587pt;}
.x80_c00456{left:480.208387pt;}
.x57_c00456{left:482.263187pt;}
.x55_c00456{left:483.715187pt;}
.x46_c00456{left:494.178387pt;}
.x7b_c00456{left:496.994387pt;}
.x56_c00456{left:497.949187pt;}
.x58_c00456{left:503.726387pt;}
.x17_c00456{left:504.989187pt;}
.xc_c00456{left:513.511987pt;}
.x35_c00456{left:515.430387pt;}
.x70_c00456{left:522.069987pt;}
.x20_c00456{left:523.271187pt;}
.x65_c00456{left:524.186387pt;}
.x59_c00456{left:539.207987pt;}
.x18_c00456{left:542.974387pt;}
.x4b_c00456{left:544.017187pt;}
.x41_c00456{left:551.765587pt;}
.x50_c00456{left:552.781987pt;}
.x36_c00456{left:572.229987pt;}
.x21_c00456{left:573.356387pt;}
.x6d_c00456{left:580.955187pt;}
.x5f_c00456{left:582.125587pt;}
.x29_c00456{left:583.370787pt;}
.x71_c00456{left:591.092787pt;}
.x42_c00456{left:592.197187pt;}
.xd_c00456{left:593.147587pt;}
.x51_c00456{left:602.361187pt;}
.x22_c00456{left:603.509587pt;}
.x7e_c00456{left:612.459187pt;}
.x5a_c00456{left:614.399587pt;}
.xe_c00456{left:621.254787pt;}
.x7a_c00456{left:623.516387pt;}
.x3_c00456{left:627.045187pt;}
.x4_c00456{left:628.391587pt;}
.x75_c00456{left:631.009587pt;}
.x2_c00456{left:632.430787pt;}
.x19_c00456{left:641.191187pt;}
.x60_c00456{left:650.026387pt;}
.x6a_c00456{left:650.998787pt;}
.x37_c00456{left:652.120787pt;}
.x2e_c00456{left:660.493987pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_af259e693104861e7b62b4d2.woff2')format("woff");}.ff1_c00457{font-family:ff1_c00457;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00457;src:url('chunks/assets/font_f31416bcea9835493d3d015d.woff2')format("woff");}.ff2_c00457{font-family:ff2_c00457;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00457;src:url('chunks/assets/font_c855aac4ccca662fa4526ebd.woff2')format("woff");}.ff3_c00457{font-family:ff3_c00457;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00457;src:url('chunks/assets/font_f31aac48d61f44939a208352.woff2')format("woff");}.ff4_c00457{font-family:ff4_c00457;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ma7_c00457{transform:matrix(0.018293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018293,0.000000,0.000000,0.250000,0,0);}
.ma6_c00457{transform:matrix(0.052846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.052846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.052846,0.000000,0.000000,0.250000,0,0);}
.ma9_c00457{transform:matrix(0.082317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.082317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.082317,0.000000,0.000000,0.250000,0,0);}
.ma5_c00457{transform:matrix(0.122387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122387,0.000000,0.000000,0.250000,0,0);}
.ma8_c00457{transform:matrix(0.140244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140244,0.000000,0.000000,0.250000,0,0);}
.m9f_c00457{transform:matrix(0.153503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153503,0.000000,0.000000,0.250000,0,0);}
.m2b_c00457{transform:matrix(0.164834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164834,0.000000,0.000000,0.250000,0,0);}
.m94_c00457{transform:matrix(0.168605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168605,0.000000,0.000000,0.250000,0,0);}
.m17_c00457{transform:matrix(0.181708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181708,0.000000,0.000000,0.250000,0,0);}
.mbf_c00457{transform:matrix(0.183537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183537,0.000000,0.000000,0.250000,0,0);}
.m71_c00457{transform:matrix(0.212355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212355,0.000000,0.000000,0.250000,0,0);}
.mad_c00457{transform:matrix(0.215681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215681,0.000000,0.000000,0.250000,0,0);}
.m5a_c00457{transform:matrix(0.232021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232021,0.000000,0.000000,0.250000,0,0);}
.m11_c00457{transform:matrix(0.239813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239813,0.000000,0.000000,0.250000,0,0);}
.mc0_c00457{transform:matrix(0.241602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241602,0.000000,0.000000,0.250000,0,0);}
.m9b_c00457{transform:matrix(0.243817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243817,0.000000,0.000000,0.250000,0,0);}
.m6d_c00457{transform:matrix(0.244970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244970,0.000000,0.000000,0.250000,0,0);}
.m0_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);}
.m23_c00457{transform:matrix(0.250219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250219,0.000000,0.000000,0.250000,0,0);}
.m29_c00457{transform:matrix(0.250495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250495,0.000000,0.000000,0.250000,0,0);}
.m95_c00457{transform:matrix(0.251211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251211,0.000000,0.000000,0.250000,0,0);}
.m73_c00457{transform:matrix(0.251823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251823,0.000000,0.000000,0.250000,0,0);}
.m50_c00457{transform:matrix(0.251838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251838,0.000000,0.000000,0.250000,0,0);}
.m38_c00457{transform:matrix(0.251853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251853,0.000000,0.000000,0.250000,0,0);}
.m1f_c00457{transform:matrix(0.252466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252466,0.000000,0.000000,0.250000,0,0);}
.m4c_c00457{transform:matrix(0.253062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253062,0.000000,0.000000,0.250000,0,0);}
.m5_c00457{transform:matrix(0.253197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253197,0.000000,0.000000,0.250000,0,0);}
.m81_c00457{transform:matrix(0.253315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253315,0.000000,0.000000,0.250000,0,0);}
.m6c_c00457{transform:matrix(0.253986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253986,0.000000,0.000000,0.250000,0,0);}
.ma3_c00457{transform:matrix(0.254313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254313,0.000000,0.000000,0.250000,0,0);}
.m92_c00457{transform:matrix(0.254914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254914,0.000000,0.000000,0.250000,0,0);}
.m1c_c00457{transform:matrix(0.255143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255143,0.000000,0.000000,0.250000,0,0);}
.m2_c00457{transform:matrix(0.255255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255255,0.000000,0.000000,0.250000,0,0);}
.mc3_c00457{transform:matrix(0.255857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255857,0.000000,0.000000,0.250000,0,0);}
.m9_c00457{transform:matrix(0.256895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256895,0.000000,0.000000,0.250000,0,0);}
.m6f_c00457{transform:matrix(0.258162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258162,0.000000,0.000000,0.250000,0,0);}
.m2f_c00457{transform:matrix(0.258775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258775,0.000000,0.000000,0.250000,0,0);}
.mb9_c00457{transform:matrix(0.259042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259042,0.000000,0.000000,0.250000,0,0);}
.m77_c00457{transform:matrix(0.259733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259733,0.000000,0.000000,0.250000,0,0);}
.m3f_c00457{transform:matrix(0.260079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260079,0.000000,0.000000,0.250000,0,0);}
.m14_c00457{transform:matrix(0.260423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260423,0.000000,0.000000,0.250000,0,0);}
.m1e_c00457{transform:matrix(0.260642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260642,0.000000,0.000000,0.250000,0,0);}
.m6a_c00457{transform:matrix(0.260756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260756,0.000000,0.000000,0.250000,0,0);}
.m1a_c00457{transform:matrix(0.261324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261324,0.000000,0.000000,0.250000,0,0);}
.m7e_c00457{transform:matrix(0.261614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261614,0.000000,0.000000,0.250000,0,0);}
.mae_c00457{transform:matrix(0.262151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262151,0.000000,0.000000,0.250000,0,0);}
.m4b_c00457{transform:matrix(0.262220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262220,0.000000,0.000000,0.250000,0,0);}
.m37_c00457{transform:matrix(0.262601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262601,0.000000,0.000000,0.250000,0,0);}
.m4a_c00457{transform:matrix(0.263045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263045,0.000000,0.000000,0.250000,0,0);}
.mc1_c00457{transform:matrix(0.263176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263176,0.000000,0.000000,0.250000,0,0);}
.m6e_c00457{transform:matrix(0.264961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264961,0.000000,0.000000,0.250000,0,0);}
.m9e_c00457{transform:matrix(0.265001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265001,0.000000,0.000000,0.250000,0,0);}
.m16_c00457{transform:matrix(0.265368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265368,0.000000,0.000000,0.250000,0,0);}
.mab_c00457{transform:matrix(0.266145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266145,0.000000,0.000000,0.250000,0,0);}
.m36_c00457{transform:matrix(0.266522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266522,0.000000,0.000000,0.250000,0,0);}
.mc2_c00457{transform:matrix(0.267202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267202,0.000000,0.000000,0.250000,0,0);}
.m65_c00457{transform:matrix(0.267372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267372,0.000000,0.000000,0.250000,0,0);}
.m4d_c00457{transform:matrix(0.267988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267988,0.000000,0.000000,0.250000,0,0);}
.m64_c00457{transform:matrix(0.268144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268144,0.000000,0.000000,0.250000,0,0);}
.m62_c00457{transform:matrix(0.268957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268957,0.000000,0.000000,0.250000,0,0);}
.m30_c00457{transform:matrix(0.269060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269060,0.000000,0.000000,0.250000,0,0);}
.m83_c00457{transform:matrix(0.269616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269616,0.000000,0.000000,0.250000,0,0);}
.m1_c00457{transform:matrix(0.269860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269860,0.000000,0.000000,0.250000,0,0);}
.mbd_c00457{transform:matrix(0.269953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269953,0.000000,0.000000,0.250000,0,0);}
.mf_c00457{transform:matrix(0.270003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270003,0.000000,0.000000,0.250000,0,0);}
.m8a_c00457{transform:matrix(0.270280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270280,0.000000,0.000000,0.250000,0,0);}
.m98_c00457{transform:matrix(0.271003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271003,0.000000,0.000000,0.250000,0,0);}
.m15_c00457{transform:matrix(0.271203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271203,0.000000,0.000000,0.250000,0,0);}
.m4_c00457{transform:matrix(0.271921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271921,0.000000,0.000000,0.250000,0,0);}
.m22_c00457{transform:matrix(0.272054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272054,0.000000,0.000000,0.250000,0,0);}
.m26_c00457{transform:matrix(0.272628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272628,0.000000,0.000000,0.250000,0,0);}
.m57_c00457{transform:matrix(0.273383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273383,0.000000,0.000000,0.250000,0,0);}
.m25_c00457{transform:matrix(0.274111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274111,0.000000,0.000000,0.250000,0,0);}
.m10_c00457{transform:matrix(0.274942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274942,0.000000,0.000000,0.250000,0,0);}
.m5d_c00457{transform:matrix(0.275051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275051,0.000000,0.000000,0.250000,0,0);}
.maa_c00457{transform:matrix(0.275641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275641,0.000000,0.000000,0.250000,0,0);}
.m5b_c00457{transform:matrix(0.276357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276357,0.000000,0.000000,0.250000,0,0);}
.m8e_c00457{transform:matrix(0.276474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276474,0.000000,0.000000,0.250000,0,0);}
.m84_c00457{transform:matrix(0.276636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276636,0.000000,0.000000,0.250000,0,0);}
.m58_c00457{transform:matrix(0.276697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276697,0.000000,0.000000,0.250000,0,0);}
.mb4_c00457{transform:matrix(0.276713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276713,0.000000,0.000000,0.250000,0,0);}
.m7d_c00457{transform:matrix(0.277286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277286,0.000000,0.000000,0.250000,0,0);}
.m70_c00457{transform:matrix(0.277485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277485,0.000000,0.000000,0.250000,0,0);}
.mba_c00457{transform:matrix(0.277517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277517,0.000000,0.000000,0.250000,0,0);}
.m88_c00457{transform:matrix(0.277932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277932,0.000000,0.000000,0.250000,0,0);}
.m13_c00457{transform:matrix(0.278212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278212,0.000000,0.000000,0.250000,0,0);}
.mb_c00457{transform:matrix(0.278622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278622,0.000000,0.000000,0.250000,0,0);}
.m44_c00457{transform:matrix(0.279744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279744,0.000000,0.000000,0.250000,0,0);}
.m31_c00457{transform:matrix(0.279941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279941,0.000000,0.000000,0.250000,0,0);}
.mb2_c00457{transform:matrix(0.280571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280571,0.000000,0.000000,0.250000,0,0);}
.m2d_c00457{transform:matrix(0.281031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281031,0.000000,0.000000,0.250000,0,0);}
.me_c00457{transform:matrix(0.281634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281634,0.000000,0.000000,0.250000,0,0);}
.ma1_c00457{transform:matrix(0.281800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281800,0.000000,0.000000,0.250000,0,0);}
.m8c_c00457{transform:matrix(0.282284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282284,0.000000,0.000000,0.250000,0,0);}
.m90_c00457{transform:matrix(0.282323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282323,0.000000,0.000000,0.250000,0,0);}
.m66_c00457{transform:matrix(0.282570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282570,0.000000,0.000000,0.250000,0,0);}
.md_c00457{transform:matrix(0.283555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283555,0.000000,0.000000,0.250000,0,0);}
.mbc_c00457{transform:matrix(0.283782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283782,0.000000,0.000000,0.250000,0,0);}
.m3_c00457{transform:matrix(0.284512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284512,0.000000,0.000000,0.250000,0,0);}
.m7b_c00457{transform:matrix(0.285950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285950,0.000000,0.000000,0.250000,0,0);}
.m54_c00457{transform:matrix(0.286191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286191,0.000000,0.000000,0.250000,0,0);}
.m39_c00457{transform:matrix(0.286613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286613,0.000000,0.000000,0.250000,0,0);}
.mb3_c00457{transform:matrix(0.286717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286717,0.000000,0.000000,0.250000,0,0);}
.m80_c00457{transform:matrix(0.286878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286878,0.000000,0.000000,0.250000,0,0);}
.mb0_c00457{transform:matrix(0.287025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287025,0.000000,0.000000,0.250000,0,0);}
.m74_c00457{transform:matrix(0.287102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287102,0.000000,0.000000,0.250000,0,0);}
.m8d_c00457{transform:matrix(0.287591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287591,0.000000,0.000000,0.250000,0,0);}
.m2a_c00457{transform:matrix(0.288275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288275,0.000000,0.000000,0.250000,0,0);}
.m97_c00457{transform:matrix(0.288756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288756,0.000000,0.000000,0.250000,0,0);}
.m8b_c00457{transform:matrix(0.288979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288979,0.000000,0.000000,0.250000,0,0);}
.m2c_c00457{transform:matrix(0.289782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289782,0.000000,0.000000,0.250000,0,0);}
.m53_c00457{transform:matrix(0.290257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290257,0.000000,0.000000,0.250000,0,0);}
.m78_c00457{transform:matrix(0.290615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290615,0.000000,0.000000,0.250000,0,0);}
.m5c_c00457{transform:matrix(0.291028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291028,0.000000,0.000000,0.250000,0,0);}
.m7f_c00457{transform:matrix(0.291397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291397,0.000000,0.000000,0.250000,0,0);}
.mb1_c00457{transform:matrix(0.291639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291639,0.000000,0.000000,0.250000,0,0);}
.m45_c00457{transform:matrix(0.291833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291833,0.000000,0.000000,0.250000,0,0);}
.m96_c00457{transform:matrix(0.292379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292379,0.000000,0.000000,0.250000,0,0);}
.m2e_c00457{transform:matrix(0.293169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293169,0.000000,0.000000,0.250000,0,0);}
.mb8_c00457{transform:matrix(0.293311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293311,0.000000,0.000000,0.250000,0,0);}
.mbe_c00457{transform:matrix(0.293457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293457,0.000000,0.000000,0.250000,0,0);}
.m41_c00457{transform:matrix(0.293785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293785,0.000000,0.000000,0.250000,0,0);}
.m56_c00457{transform:matrix(0.294038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294038,0.000000,0.000000,0.250000,0,0);}
.m49_c00457{transform:matrix(0.294831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294831,0.000000,0.000000,0.250000,0,0);}
.m63_c00457{transform:matrix(0.294834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294834,0.000000,0.000000,0.250000,0,0);}
.mc4_c00457{transform:matrix(0.294872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294872,0.000000,0.000000,0.250000,0,0);}
.m55_c00457{transform:matrix(0.295877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295877,0.000000,0.000000,0.250000,0,0);}
.m75_c00457{transform:matrix(0.295941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295941,0.000000,0.000000,0.250000,0,0);}
.m61_c00457{transform:matrix(0.296399,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296399,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296399,0.000000,0.000000,0.250000,0,0);}
.m76_c00457{transform:matrix(0.296850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296850,0.000000,0.000000,0.250000,0,0);}
.m19_c00457{transform:matrix(0.297558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297558,0.000000,0.000000,0.250000,0,0);}
.m69_c00457{transform:matrix(0.297879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297879,0.000000,0.000000,0.250000,0,0);}
.m43_c00457{transform:matrix(0.298319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298319,0.000000,0.000000,0.250000,0,0);}
.m3e_c00457{transform:matrix(0.299622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299622,0.000000,0.000000,0.250000,0,0);}
.m72_c00457{transform:matrix(0.299675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299675,0.000000,0.000000,0.250000,0,0);}
.m7a_c00457{transform:matrix(0.299992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299992,0.000000,0.000000,0.250000,0,0);}
.m3a_c00457{transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);}
.m8_c00457{transform:matrix(0.302913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302913,0.000000,0.000000,0.250000,0,0);}
.m60_c00457{transform:matrix(0.303127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303127,0.000000,0.000000,0.250000,0,0);}
.maf_c00457{transform:matrix(0.303640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303640,0.000000,0.000000,0.250000,0,0);}
.m68_c00457{transform:matrix(0.304353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304353,0.000000,0.000000,0.250000,0,0);}
.m4f_c00457{transform:matrix(0.304531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304531,0.000000,0.000000,0.250000,0,0);}
.m28_c00457{transform:matrix(0.305723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305723,0.000000,0.000000,0.250000,0,0);}
.m82_c00457{transform:matrix(0.305919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305919,0.000000,0.000000,0.250000,0,0);}
.m35_c00457{transform:matrix(0.307246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307246,0.000000,0.000000,0.250000,0,0);}
.m89_c00457{transform:matrix(0.307535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307535,0.000000,0.000000,0.250000,0,0);}
.m20_c00457{transform:matrix(0.310388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310388,0.000000,0.000000,0.250000,0,0);}
.m9c_c00457{transform:matrix(0.311493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311493,0.000000,0.000000,0.250000,0,0);}
.m93_c00457{transform:matrix(0.311905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311905,0.000000,0.000000,0.250000,0,0);}
.m34_c00457{transform:matrix(0.312531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312531,0.000000,0.000000,0.250000,0,0);}
.m12_c00457{transform:matrix(0.313536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313536,0.000000,0.000000,0.250000,0,0);}
.m3d_c00457{transform:matrix(0.313930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313930,0.000000,0.000000,0.250000,0,0);}
.m21_c00457{transform:matrix(0.314240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314240,0.000000,0.000000,0.250000,0,0);}
.m86_c00457{transform:matrix(0.315308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315308,0.000000,0.000000,0.250000,0,0);}
.m3b_c00457{transform:matrix(0.315383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315383,0.000000,0.000000,0.250000,0,0);}
.m5f_c00457{transform:matrix(0.315674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315674,0.000000,0.000000,0.250000,0,0);}
.m4e_c00457{transform:matrix(0.316268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316268,0.000000,0.000000,0.250000,0,0);}
.m7_c00457{transform:matrix(0.316824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316824,0.000000,0.000000,0.250000,0,0);}
.m99_c00457{transform:matrix(0.317097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317097,0.000000,0.000000,0.250000,0,0);}
.m8f_c00457{transform:matrix(0.317616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317616,0.000000,0.000000,0.250000,0,0);}
.m33_c00457{transform:matrix(0.318167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318167,0.000000,0.000000,0.250000,0,0);}
.m87_c00457{transform:matrix(0.318247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318247,0.000000,0.000000,0.250000,0,0);}
.mc_c00457{transform:matrix(0.318668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318668,0.000000,0.000000,0.250000,0,0);}
.m18_c00457{transform:matrix(0.321258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321258,0.000000,0.000000,0.250000,0,0);}
.m9a_c00457{transform:matrix(0.321491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321491,0.000000,0.000000,0.250000,0,0);}
.m3c_c00457{transform:matrix(0.322708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322708,0.000000,0.000000,0.250000,0,0);}
.ma4_c00457{transform:matrix(0.326438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326438,0.000000,0.000000,0.250000,0,0);}
.m1b_c00457{transform:matrix(0.328588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328588,0.000000,0.000000,0.250000,0,0);}
.m91_c00457{transform:matrix(0.330992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330992,0.000000,0.000000,0.250000,0,0);}
.m5e_c00457{transform:matrix(0.332238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332238,0.000000,0.000000,0.250000,0,0);}
.m85_c00457{transform:matrix(0.333585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333585,0.000000,0.000000,0.250000,0,0);}
.m32_c00457{transform:matrix(0.334924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334924,0.000000,0.000000,0.250000,0,0);}
.m52_c00457{transform:matrix(0.335266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335266,0.000000,0.000000,0.250000,0,0);}
.m47_c00457{transform:matrix(0.335681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335681,0.000000,0.000000,0.250000,0,0);}
.m59_c00457{transform:matrix(0.335890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335890,0.000000,0.000000,0.250000,0,0);}
.m1d_c00457{transform:matrix(0.336177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336177,0.000000,0.000000,0.250000,0,0);}
.m67_c00457{transform:matrix(0.336774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336774,0.000000,0.000000,0.250000,0,0);}
.m24_c00457{transform:matrix(0.336935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336935,0.000000,0.000000,0.250000,0,0);}
.mac_c00457{transform:matrix(0.339401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339401,0.000000,0.000000,0.250000,0,0);}
.m6b_c00457{transform:matrix(0.346926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346926,0.000000,0.000000,0.250000,0,0);}
.mbb_c00457{transform:matrix(0.347631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347631,0.000000,0.000000,0.250000,0,0);}
.mb6_c00457{transform:matrix(0.352006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352006,0.000000,0.000000,0.250000,0,0);}
.m9d_c00457{transform:matrix(0.352023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352023,0.000000,0.000000,0.250000,0,0);}
.m7c_c00457{transform:matrix(0.354358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354358,0.000000,0.000000,0.250000,0,0);}
.mb7_c00457{transform:matrix(0.354751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354751,0.000000,0.000000,0.250000,0,0);}
.mb5_c00457{transform:matrix(0.354964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354964,0.000000,0.000000,0.250000,0,0);}
.m42_c00457{transform:matrix(0.357259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357259,0.000000,0.000000,0.250000,0,0);}
.ma_c00457{transform:matrix(0.358022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358022,0.000000,0.000000,0.250000,0,0);}
.ma0_c00457{transform:matrix(0.360386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360386,0.000000,0.000000,0.250000,0,0);}
.m27_c00457{transform:matrix(0.363797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363797,0.000000,0.000000,0.250000,0,0);}
.m6_c00457{transform:matrix(0.369571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369571,0.000000,0.000000,0.250000,0,0);}
.ma2_c00457{transform:matrix(0.372276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372276,0.000000,0.000000,0.250000,0,0);}
.m48_c00457{transform:matrix(0.375346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375346,0.000000,0.000000,0.250000,0,0);}
.m46_c00457{transform:matrix(0.381120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381120,0.000000,0.000000,0.250000,0,0);}
.m51_c00457{transform:matrix(0.381582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381582,0.000000,0.000000,0.250000,0,0);}
.m79_c00457{transform:matrix(0.382975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382975,0.000000,0.000000,0.250000,0,0);}
.m40_c00457{transform:matrix(0.385437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385437,0.000000,0.000000,0.250000,0,0);}
.v0_c00457{vertical-align:0.000000px;}
.lsb_c00457{letter-spacing:-4.102567px;}
.ls14_c00457{letter-spacing:-2.869027px;}
.ls25_c00457{letter-spacing:-2.862090px;}
.ls6_c00457{letter-spacing:-2.841300px;}
.ls29_c00457{letter-spacing:-2.772000px;}
.ls27_c00457{letter-spacing:-2.037420px;}
.lse_c00457{letter-spacing:-1.826550px;}
.ls12_c00457{letter-spacing:-0.809563px;}
.lsc_c00457{letter-spacing:-0.621482px;}
.ls1_c00457{letter-spacing:0.000000px;}
.ls17_c00457{letter-spacing:0.251302px;}
.ls5_c00457{letter-spacing:1.128481px;}
.ls2_c00457{letter-spacing:1.634213px;}
.ls8_c00457{letter-spacing:1.875258px;}
.ls21_c00457{letter-spacing:1.881000px;}
.ls1c_c00457{letter-spacing:3.282531px;}
.ls16_c00457{letter-spacing:3.306610px;}
.ls4_c00457{letter-spacing:3.434508px;}
.ls26_c00457{letter-spacing:3.435310px;}
.lsa_c00457{letter-spacing:3.459040px;}
.ls22_c00457{letter-spacing:3.484810px;}
.lsf_c00457{letter-spacing:3.564000px;}
.ls24_c00457{letter-spacing:3.643200px;}
.ls11_c00457{letter-spacing:3.672900px;}
.ls18_c00457{letter-spacing:3.722400px;}
.ls20_c00457{letter-spacing:3.742200px;}
.lsd_c00457{letter-spacing:3.752110px;}
.ls15_c00457{letter-spacing:3.861000px;}
.ls1d_c00457{letter-spacing:3.861801px;}
.ls10_c00457{letter-spacing:3.920400px;}
.ls1e_c00457{letter-spacing:3.930310px;}
.ls13_c00457{letter-spacing:3.960000px;}
.ls0_c00457{letter-spacing:4.031458px;}
.ls28_c00457{letter-spacing:4.039200px;}
.ls9_c00457{letter-spacing:4.059000px;}
.ls1b_c00457{letter-spacing:4.068900px;}
.ls3_c00457{letter-spacing:4.088700px;}
.ls1f_c00457{letter-spacing:4.098610px;}
.ls19_c00457{letter-spacing:4.197610px;}
.ls1a_c00457{letter-spacing:52.747398px;}
.ls7_c00457{letter-spacing:58.449798px;}
.ls23_c00457{letter-spacing:61.300998px;}
.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:-19.633937px;}
.ws1_c00457{word-spacing:0.000000px;}
._1_c00457{margin-left:-1.005820px;}
._2_c00457{width:26.129525px;}
._0_c00457{width:29.275092px;}
.fc0_c00457{color:transparent;}
.fs2_c00457{font-size:22.176000px;}
.fs17_c00457{font-size:25.146000px;}
.fs0_c00457{font-size:27.720000px;}
.fs1a_c00457{font-size:37.620000px;}
.fs16_c00457{font-size:52.747398px;}
.fs1d_c00457{font-size:58.212000px;}
.fs8_c00457{font-size:58.449798px;}
.fs1c_c00457{font-size:61.300998px;}
.fs12_c00457{font-size:66.132198px;}
.fs5_c00457{font-size:68.706198px;}
.fs1b_c00457{font-size:69.696198px;}
.fsc_c00457{font-size:71.280000px;}
.fs18_c00457{font-size:72.072198px;}
.fs15_c00457{font-size:72.864000px;}
.fse_c00457{font-size:73.458000px;}
.fs13_c00457{font-size:74.448000px;}
.fs4_c00457{font-size:74.844000px;}
.fsa_c00457{font-size:75.042198px;}
.fs11_c00457{font-size:77.220000px;}
.fsd_c00457{font-size:78.408000px;}
.fs19_c00457{font-size:78.606198px;}
.fsf_c00457{font-size:79.200000px;}
.fs1e_c00457{font-size:80.784000px;}
.fs7_c00457{font-size:81.180000px;}
.fs6_c00457{font-size:81.378000px;}
.fs3_c00457{font-size:81.774000px;}
.fs10_c00457{font-size:81.972198px;}
.fs14_c00457{font-size:83.952198px;}
.fs1_c00457{font-size:90.288000px;}
.fsb_c00457{font-size:107.712198px;}
.fs9_c00457{font-size:117.216198px;}
.y0_c00457{bottom:0.000000px;}
.y1_c00457{bottom:76.500000px;}
.y25_c00457{bottom:117.518985px;}
.y24_c00457{bottom:126.433935px;}
.y2_c00457{bottom:146.743785px;}
.y23_c00457{bottom:158.153535px;}
.y22_c00457{bottom:191.293785px;}
.y20_c00457{bottom:223.731135px;}
.y21_c00457{bottom:229.433535px;}
.y1f_c00457{bottom:256.519935px;}
.y1d_c00457{bottom:288.590985px;}
.y1e_c00457{bottom:293.936985px;}
.y1c_c00457{bottom:320.666985px;}
.y1b_c00457{bottom:353.460735px;}
.y1a_c00457{bottom:385.888185px;}
.y19_c00457{bottom:395.872335px;}
.y18_c00457{bottom:407.277135px;}
.y17_c00457{bottom:418.676985px;}
.y16_c00457{bottom:483.546735px;}
.y15_c00457{bottom:515.266335px;}
.y14_c00457{bottom:546.980985px;}
.y13_c00457{bottom:578.700585px;}
.y12_c00457{bottom:610.425135px;}
.y11_c00457{bottom:642.139785px;}
.y10_c00457{bottom:673.864335px;}
.yf_c00457{bottom:698.099535px;}
.yc_c00457{bottom:706.291785px;}
.yb_c00457{bottom:706.300695px;}
.ye_c00457{bottom:707.009535px;}
.ya_c00457{bottom:738.724185px;}
.yd_c00457{bottom:739.798335px;}
.y9_c00457{bottom:802.519785px;}
.y8_c00457{bottom:834.957135px;}
.y7_c00457{bottom:866.671785px;}
.y6_c00457{bottom:899.104185px;}
.y5_c00457{bottom:931.185135px;}
.y4_c00457{bottom:980.368335px;}
.y3_c00457{bottom:1063.760985px;}
.h4_c00457{height:23.128875px;}
.h19_c00457{height:26.226492px;}
.h2_c00457{height:28.911094px;}
.h18_c00457{height:35.129767px;}
.ha_c00457{height:38.927565px;}
.h1c_c00457{height:39.236484px;}
.h1e_c00457{height:40.826465px;}
.h1f_c00457{height:57.131895px;}
.h14_c00457{height:68.973816px;}
.h17_c00457{height:71.512031px;}
.h7_c00457{height:71.658417px;}
.h10_c00457{height:72.095010px;}
.h1d_c00457{height:72.690957px;}
.h15_c00457{height:73.066641px;}
.h6_c00457{height:73.455293px;}
.hc_c00457{height:73.649813px;}
.he_c00457{height:74.342813px;}
.h1a_c00457{height:75.169050px;}
.h13_c00457{height:75.787207px;}
.hf_c00457{height:76.953164px;}
.h1b_c00457{height:77.147685px;}
.h11_c00457{height:77.730469px;}
.h20_c00457{height:79.285078px;}
.h9_c00457{height:79.673730px;}
.h21_c00457{height:79.818750px;}
.h8_c00457{height:79.868057px;}
.h5_c00457{height:80.256709px;}
.h12_c00457{height:80.451229px;}
.h16_c00457{height:82.394491px;}
.h3_c00457{height:88.612734px;}
.hd_c00457{height:105.713632px;}
.hb_c00457{height:115.041288px;}
.h1_c00457{height:1110.000000px;}
.h0_c00457{height:1263.000000px;}
.w1_c00457{width:769.500000px;}
.w0_c00457{width:892.500000px;}
.x0_c00457{left:0.000000px;}
.x2_c00457{left:56.218485px;}
.x1_c00457{left:61.500000px;}
.x50_c00457{left:92.625735px;}
.x1b_c00457{left:93.719685px;}
.xe_c00457{left:94.917585px;}
.x5_c00457{left:95.976885px;}
.x3a_c00457{left:97.070835px;}
.x1c_c00457{left:116.207535px;}
.x24_c00457{left:126.627285px;}
.xf_c00457{left:128.092485px;}
.x2c_c00457{left:129.419085px;}
.x42_c00457{left:131.225835px;}
.x76_c00457{left:136.670835px;}
.x5d_c00457{left:138.437985px;}
.x58_c00457{left:147.080685px;}
.x26_c00457{left:150.308085px;}
.x60_c00457{left:157.866735px;}
.x25_c00457{left:159.282435px;}
.x43_c00457{left:161.851485px;}
.x70_c00457{left:170.340735px;}
.x6c_c00457{left:179.473485px;}
.x5e_c00457{left:181.003035px;}
.x6_c00457{left:182.265285px;}
.x10_c00457{left:191.680185px;}
.x4a_c00457{left:193.679985px;}
.x51_c00457{left:203.312685px;}
.x2d_c00457{left:204.911535px;}
.x7_c00457{left:213.742335px;}
.x11_c00457{left:214.994685px;}
.x54_c00457{left:224.572935px;}
.x46_c00457{left:225.770835px;}
.x27_c00457{left:227.196435px;}
.x67_c00457{left:234.472935px;}
.x71_c00457{left:235.700535px;}
.x1d_c00457{left:236.730135px;}
.x3b_c00457{left:240.091185px;}
.x7a_c00457{left:246.244035px;}
.x16_c00457{left:257.648835px;}
.x2e_c00457{left:259.925835px;}
.x68_c00457{left:267.974535px;}
.x4b_c00457{left:269.474385px;}
.x12_c00457{left:270.899985px;}
.x64_c00457{left:279.463485px;}
.x1e_c00457{left:290.432685px;}
.x2f_c00457{left:294.189735px;}
.x28_c00457{left:303.277935px;}
.x8_c00457{left:312.905685px;}
.x6d_c00457{left:314.618385px;}
.x17_c00457{left:324.285735px;}
.x9_c00457{left:334.903485px;}
.x1f_c00457{left:336.210285px;}
.x3c_c00457{left:347.090385px;}
.x77_c00457{left:356.921085px;}
.x47_c00457{left:357.990285px;}
.x30_c00457{left:360.762285px;}
.x69_c00457{left:367.608135px;}
.x13_c00457{left:369.013935px;}
.x55_c00457{left:379.656435px;}
.x29_c00457{left:381.166185px;}
.x65_c00457{left:390.001935px;}
.x18_c00457{left:391.481985px;}
.x59_c00457{left:400.916685px;}
.x20_c00457{left:402.183885px;}
.x52_c00457{left:413.534235px;}
.x48_c00457{left:423.716385px;}
.x31_c00457{left:424.800435px;}
.x5f_c00457{left:434.784585px;}
.xa_c00457{left:436.398285px;}
.x72_c00457{left:444.808335px;}
.x3d_c00457{left:446.555685px;}
.x56_c00457{left:456.876435px;}
.x32_c00457{left:459.782085px;}
.x3e_c00457{left:469.528635px;}
.x21_c00457{left:478.611885px;}
.x49_c00457{left:479.879085px;}
.x6e_c00457{left:489.838485px;}
.x2a_c00457{left:490.927485px;}
.x4c_c00457{left:501.965985px;}
.x4_c00457{left:512.078835px;}
.x2b_c00457{left:524.018235px;}
.x6a_c00457{left:526.003185px;}
.x6f_c00457{left:534.046935px;}
.x19_c00457{left:535.121085px;}
.xb_c00457{left:545.946735px;}
.x73_c00457{left:555.292335px;}
.x33_c00457{left:557.549535px;}
.x61_c00457{left:567.281235px;}
.x1a_c00457{left:568.592985px;}
.x5a_c00457{left:577.705935px;}
.x22_c00457{left:579.205785px;}
.x14_c00457{left:589.110735px;}
.x36_c00457{left:590.966985px;}
.x44_c00457{left:600.154185px;}
.x62_c00457{left:601.738185px;}
.x78_c00457{left:611.717385px;}
.x3f_c00457{left:613.212285px;}
.x37_c00457{left:623.735985px;}
.x57_c00457{left:624.785385px;}
.x74_c00457{left:632.215335px;}
.xc_c00457{left:634.437885px;}
.x5b_c00457{left:644.392335px;}
.x40_c00457{left:645.951585px;}
.x66_c00457{left:647.109885px;}
.x4d_c00457{left:656.237685px;}
.x15_c00457{left:657.712785px;}
.x6b_c00457{left:666.994035px;}
.x79_c00457{left:678.987885px;}
.x23_c00457{left:689.798685px;}
.x63_c00457{left:699.594735px;}
.xd_c00457{left:701.203485px;}
.x7b_c00457{left:702.371685px;}
.x5c_c00457{left:705.757485px;}
.x3_c00457{left:707.197935px;}
.x45_c00457{left:711.341085px;}
.x41_c00457{left:712.484535px;}
.x53_c00457{left:722.052885px;}
.x38_c00457{left:723.295335px;}
.x39_c00457{left:727.101885px;}
.x75_c00457{left:731.621235px;}
.x4e_c00457{left:733.086435px;}
.x34_c00457{left:735.007035px;}
.x4f_c00457{left:756.762285px;}
.x35_c00457{left:758.821485px;}
@media print{
.v0_c00457{vertical-align:0.000000pt;}
.lsb_c00457{letter-spacing:-3.646726pt;}
.ls14_c00457{letter-spacing:-2.550246pt;}
.ls25_c00457{letter-spacing:-2.544080pt;}
.ls6_c00457{letter-spacing:-2.525600pt;}
.ls29_c00457{letter-spacing:-2.464000pt;}
.ls27_c00457{letter-spacing:-1.811040pt;}
.lse_c00457{letter-spacing:-1.623600pt;}
.ls12_c00457{letter-spacing:-0.719611pt;}
.lsc_c00457{letter-spacing:-0.552429pt;}
.ls1_c00457{letter-spacing:0.000000pt;}
.ls17_c00457{letter-spacing:0.223380pt;}
.ls5_c00457{letter-spacing:1.003094pt;}
.ls2_c00457{letter-spacing:1.452634pt;}
.ls8_c00457{letter-spacing:1.666896pt;}
.ls21_c00457{letter-spacing:1.672000pt;}
.ls1c_c00457{letter-spacing:2.917805pt;}
.ls16_c00457{letter-spacing:2.939209pt;}
.ls4_c00457{letter-spacing:3.052896pt;}
.ls26_c00457{letter-spacing:3.053609pt;}
.lsa_c00457{letter-spacing:3.074702pt;}
.ls22_c00457{letter-spacing:3.097609pt;}
.lsf_c00457{letter-spacing:3.168000pt;}
.ls24_c00457{letter-spacing:3.238400pt;}
.ls11_c00457{letter-spacing:3.264800pt;}
.ls18_c00457{letter-spacing:3.308800pt;}
.ls20_c00457{letter-spacing:3.326400pt;}
.lsd_c00457{letter-spacing:3.335209pt;}
.ls15_c00457{letter-spacing:3.432000pt;}
.ls1d_c00457{letter-spacing:3.432712pt;}
.ls10_c00457{letter-spacing:3.484800pt;}
.ls1e_c00457{letter-spacing:3.493609pt;}
.ls13_c00457{letter-spacing:3.520000pt;}
.ls0_c00457{letter-spacing:3.583518pt;}
.ls28_c00457{letter-spacing:3.590400pt;}
.ls9_c00457{letter-spacing:3.608000pt;}
.ls1b_c00457{letter-spacing:3.616800pt;}
.ls3_c00457{letter-spacing:3.634400pt;}
.ls1f_c00457{letter-spacing:3.643209pt;}
.ls19_c00457{letter-spacing:3.731209pt;}
.ls1a_c00457{letter-spacing:46.886576pt;}
.ls7_c00457{letter-spacing:51.955376pt;}
.ls23_c00457{letter-spacing:54.489776pt;}
.ws0_c00457{word-spacing:-17.452389pt;}
.ws1_c00457{word-spacing:0.000000pt;}
._1_c00457{margin-left:-0.894062pt;}
._2_c00457{width:23.226245pt;}
._0_c00457{width:26.022304pt;}
.fs2_c00457{font-size:19.712000pt;}
.fs17_c00457{font-size:22.352000pt;}
.fs0_c00457{font-size:24.640000pt;}
.fs1a_c00457{font-size:33.440000pt;}
.fs16_c00457{font-size:46.886576pt;}
.fs1d_c00457{font-size:51.744000pt;}
.fs8_c00457{font-size:51.955376pt;}
.fs1c_c00457{font-size:54.489776pt;}
.fs12_c00457{font-size:58.784176pt;}
.fs5_c00457{font-size:61.072176pt;}
.fs1b_c00457{font-size:61.952176pt;}
.fsc_c00457{font-size:63.360000pt;}
.fs18_c00457{font-size:64.064176pt;}
.fs15_c00457{font-size:64.768000pt;}
.fse_c00457{font-size:65.296000pt;}
.fs13_c00457{font-size:66.176000pt;}
.fs4_c00457{font-size:66.528000pt;}
.fsa_c00457{font-size:66.704176pt;}
.fs11_c00457{font-size:68.640000pt;}
.fsd_c00457{font-size:69.696000pt;}
.fs19_c00457{font-size:69.872176pt;}
.fsf_c00457{font-size:70.400000pt;}
.fs1e_c00457{font-size:71.808000pt;}
.fs7_c00457{font-size:72.160000pt;}
.fs6_c00457{font-size:72.336000pt;}
.fs3_c00457{font-size:72.688000pt;}
.fs10_c00457{font-size:72.864176pt;}
.fs14_c00457{font-size:74.624176pt;}
.fs1_c00457{font-size:80.256000pt;}
.fsb_c00457{font-size:95.744176pt;}
.fs9_c00457{font-size:104.192176pt;}
.y0_c00457{bottom:0.000000pt;}
.y1_c00457{bottom:68.000000pt;}
.y25_c00457{bottom:104.461320pt;}
.y24_c00457{bottom:112.385720pt;}
.y2_c00457{bottom:130.438920pt;}
.y23_c00457{bottom:140.580920pt;}
.y22_c00457{bottom:170.038920pt;}
.y20_c00457{bottom:198.872120pt;}
.y21_c00457{bottom:203.940920pt;}
.y1f_c00457{bottom:228.017720pt;}
.y1d_c00457{bottom:256.525320pt;}
.y1e_c00457{bottom:261.277320pt;}
.y1c_c00457{bottom:285.037320pt;}
.y1b_c00457{bottom:314.187320pt;}
.y1a_c00457{bottom:343.011720pt;}
.y19_c00457{bottom:351.886520pt;}
.y18_c00457{bottom:362.024120pt;}
.y17_c00457{bottom:372.157320pt;}
.y16_c00457{bottom:429.819320pt;}
.y15_c00457{bottom:458.014520pt;}
.y14_c00457{bottom:486.205320pt;}
.y13_c00457{bottom:514.400520pt;}
.y12_c00457{bottom:542.600120pt;}
.y11_c00457{bottom:570.790920pt;}
.y10_c00457{bottom:598.990520pt;}
.yf_c00457{bottom:620.532920pt;}
.yc_c00457{bottom:627.814920pt;}
.yb_c00457{bottom:627.822840pt;}
.ye_c00457{bottom:628.452920pt;}
.ya_c00457{bottom:656.643720pt;}
.yd_c00457{bottom:657.598520pt;}
.y9_c00457{bottom:713.350920pt;}
.y8_c00457{bottom:742.184120pt;}
.y7_c00457{bottom:770.374920pt;}
.y6_c00457{bottom:799.203720pt;}
.y5_c00457{bottom:827.720120pt;}
.y4_c00457{bottom:871.438520pt;}
.y3_c00457{bottom:945.565320pt;}
.h4_c00457{height:20.559000pt;}
.h19_c00457{height:23.312438pt;}
.h2_c00457{height:25.698750pt;}
.h18_c00457{height:31.226460pt;}
.ha_c00457{height:34.602280pt;}
.h1c_c00457{height:34.876875pt;}
.h1e_c00457{height:36.290191pt;}
.h1f_c00457{height:50.783906pt;}
.h14_c00457{height:61.310059pt;}
.h17_c00457{height:63.566250pt;}
.h7_c00457{height:63.696371pt;}
.h10_c00457{height:64.084453pt;}
.h1d_c00457{height:64.614184pt;}
.h15_c00457{height:64.948125pt;}
.h6_c00457{height:65.293594pt;}
.hc_c00457{height:65.466501pt;}
.he_c00457{height:66.082500pt;}
.h1a_c00457{height:66.816934pt;}
.h13_c00457{height:67.366406pt;}
.hf_c00457{height:68.402813pt;}
.h1b_c00457{height:68.575720pt;}
.h11_c00457{height:69.093750pt;}
.h20_c00457{height:70.475625pt;}
.h9_c00457{height:70.821094pt;}
.h21_c00457{height:70.950000pt;}
.h8_c00457{height:70.993828pt;}
.h5_c00457{height:71.339297pt;}
.h12_c00457{height:71.512204pt;}
.h16_c00457{height:73.239548pt;}
.h3_c00457{height:78.766875pt;}
.hd_c00457{height:93.967673pt;}
.hb_c00457{height:102.258923pt;}
.h1_c00457{height:986.666667pt;}
.h0_c00457{height:1122.666667pt;}
.w1_c00457{width:684.000000pt;}
.w0_c00457{width:793.333333pt;}
.x0_c00457{left:0.000000pt;}
.x2_c00457{left:49.971987pt;}
.x1_c00457{left:54.666667pt;}
.x50_c00457{left:82.333987pt;}
.x1b_c00457{left:83.306387pt;}
.xe_c00457{left:84.371187pt;}
.x5_c00457{left:85.312787pt;}
.x3a_c00457{left:86.285187pt;}
.x1c_c00457{left:103.295587pt;}
.x24_c00457{left:112.557587pt;}
.xf_c00457{left:113.859987pt;}
.x2c_c00457{left:115.039187pt;}
.x42_c00457{left:116.645187pt;}
.x76_c00457{left:121.485187pt;}
.x5d_c00457{left:123.055987pt;}
.x58_c00457{left:130.738387pt;}
.x26_c00457{left:133.607187pt;}
.x60_c00457{left:140.325987pt;}
.x25_c00457{left:141.584387pt;}
.x43_c00457{left:143.867987pt;}
.x70_c00457{left:151.413987pt;}
.x6c_c00457{left:159.531987pt;}
.x5e_c00457{left:160.891587pt;}
.x6_c00457{left:162.013587pt;}
.x10_c00457{left:170.382387pt;}
.x4a_c00457{left:172.159987pt;}
.x51_c00457{left:180.722387pt;}
.x2d_c00457{left:182.143587pt;}
.x7_c00457{left:189.993187pt;}
.x11_c00457{left:191.106387pt;}
.x54_c00457{left:199.620387pt;}
.x46_c00457{left:200.685187pt;}
.x27_c00457{left:201.952387pt;}
.x67_c00457{left:208.420387pt;}
.x71_c00457{left:209.511587pt;}
.x1d_c00457{left:210.426787pt;}
.x3b_c00457{left:213.414387pt;}
.x7a_c00457{left:218.883587pt;}
.x16_c00457{left:229.021187pt;}
.x2e_c00457{left:231.045187pt;}
.x68_c00457{left:238.199587pt;}
.x4b_c00457{left:239.532787pt;}
.x12_c00457{left:240.799987pt;}
.x64_c00457{left:248.411987pt;}
.x1e_c00457{left:258.162387pt;}
.x2f_c00457{left:261.501987pt;}
.x28_c00457{left:269.580387pt;}
.x8_c00457{left:278.138387pt;}
.x6d_c00457{left:279.660787pt;}
.x17_c00457{left:288.253987pt;}
.x9_c00457{left:297.691987pt;}
.x1f_c00457{left:298.853587pt;}
.x3c_c00457{left:308.524787pt;}
.x77_c00457{left:317.263187pt;}
.x47_c00457{left:318.213587pt;}
.x30_c00457{left:320.677587pt;}
.x69_c00457{left:326.762787pt;}
.x13_c00457{left:328.012387pt;}
.x55_c00457{left:337.472387pt;}
.x29_c00457{left:338.814387pt;}
.x65_c00457{left:346.668387pt;}
.x18_c00457{left:347.983987pt;}
.x59_c00457{left:356.370387pt;}
.x20_c00457{left:357.496787pt;}
.x52_c00457{left:367.585987pt;}
.x48_c00457{left:376.636787pt;}
.x31_c00457{left:377.600387pt;}
.x5f_c00457{left:386.475187pt;}
.xa_c00457{left:387.909587pt;}
.x72_c00457{left:395.385187pt;}
.x3d_c00457{left:396.938387pt;}
.x56_c00457{left:406.112387pt;}
.x32_c00457{left:408.695187pt;}
.x3e_c00457{left:417.358787pt;}
.x21_c00457{left:425.432787pt;}
.x49_c00457{left:426.559187pt;}
.x6e_c00457{left:435.411987pt;}
.x2a_c00457{left:436.379987pt;}
.x4c_c00457{left:446.191987pt;}
.x4_c00457{left:455.181187pt;}
.x2b_c00457{left:465.793987pt;}
.x6a_c00457{left:467.558387pt;}
.x6f_c00457{left:474.708387pt;}
.x19_c00457{left:475.663187pt;}
.xb_c00457{left:485.285987pt;}
.x73_c00457{left:493.593187pt;}
.x33_c00457{left:495.599587pt;}
.x61_c00457{left:504.249987pt;}
.x1a_c00457{left:505.415987pt;}
.x5a_c00457{left:513.516387pt;}
.x22_c00457{left:514.849587pt;}
.x14_c00457{left:523.653987pt;}
.x36_c00457{left:525.303987pt;}
.x44_c00457{left:533.470387pt;}
.x62_c00457{left:534.878387pt;}
.x78_c00457{left:543.748787pt;}
.x3f_c00457{left:545.077587pt;}
.x37_c00457{left:554.431987pt;}
.x57_c00457{left:555.364787pt;}
.x74_c00457{left:561.969187pt;}
.xc_c00457{left:563.944787pt;}
.x5b_c00457{left:572.793187pt;}
.x40_c00457{left:574.179187pt;}
.x66_c00457{left:575.208787pt;}
.x4d_c00457{left:583.322387pt;}
.x15_c00457{left:584.633587pt;}
.x6b_c00457{left:592.883587pt;}
.x79_c00457{left:603.544787pt;}
.x23_c00457{left:613.154387pt;}
.x63_c00457{left:621.861987pt;}
.xd_c00457{left:623.291987pt;}
.x7b_c00457{left:624.330387pt;}
.x5c_c00457{left:627.339987pt;}
.x3_c00457{left:628.620387pt;}
.x45_c00457{left:632.303187pt;}
.x41_c00457{left:633.319587pt;}
.x53_c00457{left:641.824787pt;}
.x38_c00457{left:642.929187pt;}
.x39_c00457{left:646.312787pt;}
.x75_c00457{left:650.329987pt;}
.x4e_c00457{left:651.632387pt;}
.x34_c00457{left:653.339587pt;}
.x4f_c00457{left:672.677587pt;}
.x35_c00457{left:674.507987pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9cd287157573604f93f21332.woff2')format("woff");}.ff1_c00458{font-family:ff1_c00458;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00458;src:url('chunks/assets/font_21ed48a41a0d58eb94f3b1b5.woff2')format("woff");}.ff2_c00458{font-family:ff2_c00458;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00458;src:url('chunks/assets/font_985a2a3aa7d2bc3aa7056b73.woff2')format("woff");}.ff3_c00458{font-family:ff3_c00458;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00458;src:url('chunks/assets/font_b9f18008ad20051168de0547.woff2')format("woff");}.ff4_c00458{font-family:ff4_c00458;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m7d_c00458{transform:matrix(0.155445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155445,0.000000,0.000000,0.250000,0,0);}
.m87_c00458{transform:matrix(0.165990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165990,0.000000,0.000000,0.250000,0,0);}
.mad_c00458{transform:matrix(0.177083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177083,0.000000,0.000000,0.250000,0,0);}
.m77_c00458{transform:matrix(0.178572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178572,0.000000,0.000000,0.250000,0,0);}
.m39_c00458{transform:matrix(0.188536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188536,0.000000,0.000000,0.250000,0,0);}
.m8d_c00458{transform:matrix(0.195107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195107,0.000000,0.000000,0.250000,0,0);}
.m75_c00458{transform:matrix(0.199405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199405,0.000000,0.000000,0.250000,0,0);}
.m8c_c00458{transform:matrix(0.215709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215709,0.000000,0.000000,0.250000,0,0);}
.m76_c00458{transform:matrix(0.217262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217262,0.000000,0.000000,0.250000,0,0);}
.m60_c00458{transform:matrix(0.231707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231707,0.000000,0.000000,0.250000,0,0);}
.mc6_c00458{transform:matrix(0.236068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236068,0.000000,0.000000,0.250000,0,0);}
.m34_c00458{transform:matrix(0.238905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238905,0.000000,0.000000,0.250000,0,0);}
.m5e_c00458{transform:matrix(0.239483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239483,0.000000,0.000000,0.250000,0,0);}
.m0_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);}
.m78_c00458{transform:matrix(0.250618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250618,0.000000,0.000000,0.250000,0,0);}
.m6e_c00458{transform:matrix(0.251516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251516,0.000000,0.000000,0.250000,0,0);}
.m86_c00458{transform:matrix(0.251559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251559,0.000000,0.000000,0.250000,0,0);}
.ma6_c00458{transform:matrix(0.252821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252821,0.000000,0.000000,0.250000,0,0);}
.ma0_c00458{transform:matrix(0.254222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254222,0.000000,0.000000,0.250000,0,0);}
.m7e_c00458{transform:matrix(0.255358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255358,0.000000,0.000000,0.250000,0,0);}
.mb9_c00458{transform:matrix(0.255762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255762,0.000000,0.000000,0.250000,0,0);}
.m91_c00458{transform:matrix(0.259376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259376,0.000000,0.000000,0.250000,0,0);}
.mc1_c00458{transform:matrix(0.259471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259471,0.000000,0.000000,0.250000,0,0);}
.m92_c00458{transform:matrix(0.259666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259666,0.000000,0.000000,0.250000,0,0);}
.m88_c00458{transform:matrix(0.260874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260874,0.000000,0.000000,0.250000,0,0);}
.m3d_c00458{transform:matrix(0.261476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261476,0.000000,0.000000,0.250000,0,0);}
.m21_c00458{transform:matrix(0.262654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262654,0.000000,0.000000,0.250000,0,0);}
.m61_c00458{transform:matrix(0.262767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262767,0.000000,0.000000,0.250000,0,0);}
.m62_c00458{transform:matrix(0.263026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263026,0.000000,0.000000,0.250000,0,0);}
.m11_c00458{transform:matrix(0.263376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263376,0.000000,0.000000,0.250000,0,0);}
.m8f_c00458{transform:matrix(0.263626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263626,0.000000,0.000000,0.250000,0,0);}
.m47_c00458{transform:matrix(0.264376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264376,0.000000,0.000000,0.250000,0,0);}
.ma4_c00458{transform:matrix(0.265396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265396,0.000000,0.000000,0.250000,0,0);}
.mba_c00458{transform:matrix(0.266423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266423,0.000000,0.000000,0.250000,0,0);}
.m41_c00458{transform:matrix(0.266528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266528,0.000000,0.000000,0.250000,0,0);}
.m79_c00458{transform:matrix(0.267061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267061,0.000000,0.000000,0.250000,0,0);}
.mcc_c00458{transform:matrix(0.267638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267638,0.000000,0.000000,0.250000,0,0);}
.m20_c00458{transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);}
.mca_c00458{transform:matrix(0.268287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268287,0.000000,0.000000,0.250000,0,0);}
.m31_c00458{transform:matrix(0.269092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269092,0.000000,0.000000,0.250000,0,0);}
.m5b_c00458{transform:matrix(0.269738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269738,0.000000,0.000000,0.250000,0,0);}
.m70_c00458{transform:matrix(0.269981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269981,0.000000,0.000000,0.250000,0,0);}
.m30_c00458{transform:matrix(0.270108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270108,0.000000,0.000000,0.250000,0,0);}
.m5d_c00458{transform:matrix(0.270327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270327,0.000000,0.000000,0.250000,0,0);}
.m29_c00458{transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);}
.m63_c00458{transform:matrix(0.270543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270543,0.000000,0.000000,0.250000,0,0);}
.m82_c00458{transform:matrix(0.270868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270868,0.000000,0.000000,0.250000,0,0);}
.m93_c00458{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.maf_c00458{transform:matrix(0.271327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271327,0.000000,0.000000,0.250000,0,0);}
.mc0_c00458{transform:matrix(0.272495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272495,0.000000,0.000000,0.250000,0,0);}
.m72_c00458{transform:matrix(0.272566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272566,0.000000,0.000000,0.250000,0,0);}
.m4c_c00458{transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);}
.m2b_c00458{transform:matrix(0.273162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273162,0.000000,0.000000,0.250000,0,0);}
.me_c00458{transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);}
.mbf_c00458{transform:matrix(0.274489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274489,0.000000,0.000000,0.250000,0,0);}
.mae_c00458{transform:matrix(0.274614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274614,0.000000,0.000000,0.250000,0,0);}
.m5c_c00458{transform:matrix(0.275842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275842,0.000000,0.000000,0.250000,0,0);}
.m36_c00458{transform:matrix(0.275871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275871,0.000000,0.000000,0.250000,0,0);}
.m2d_c00458{transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);}
.m9d_c00458{transform:matrix(0.276652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276652,0.000000,0.000000,0.250000,0,0);}
.m25_c00458{transform:matrix(0.276887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276887,0.000000,0.000000,0.250000,0,0);}
.mb8_c00458{transform:matrix(0.277131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277131,0.000000,0.000000,0.250000,0,0);}
.m14_c00458{transform:matrix(0.277406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277406,0.000000,0.000000,0.250000,0,0);}
.m1d_c00458{transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);}
.ma8_c00458{transform:matrix(0.278407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278407,0.000000,0.000000,0.250000,0,0);}
.mb2_c00458{transform:matrix(0.278468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278468,0.000000,0.000000,0.250000,0,0);}
.m18_c00458{transform:matrix(0.278815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278815,0.000000,0.000000,0.250000,0,0);}
.mc_c00458{transform:matrix(0.278873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278873,0.000000,0.000000,0.250000,0,0);}
.m90_c00458{transform:matrix(0.279476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279476,0.000000,0.000000,0.250000,0,0);}
.mb_c00458{transform:matrix(0.279903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279903,0.000000,0.000000,0.250000,0,0);}
.m71_c00458{transform:matrix(0.280763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280763,0.000000,0.000000,0.250000,0,0);}
.m52_c00458{transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);}
.m24_c00458{transform:matrix(0.281108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281108,0.000000,0.000000,0.250000,0,0);}
.mc4_c00458{transform:matrix(0.281436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281436,0.000000,0.000000,0.250000,0,0);}
.m85_c00458{transform:matrix(0.281556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281556,0.000000,0.000000,0.250000,0,0);}
.mbe_c00458{transform:matrix(0.281922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281922,0.000000,0.000000,0.250000,0,0);}
.m6b_c00458{transform:matrix(0.281977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281977,0.000000,0.000000,0.250000,0,0);}
.m9_c00458{transform:matrix(0.282147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282147,0.000000,0.000000,0.250000,0,0);}
.ma2_c00458{transform:matrix(0.283036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283036,0.000000,0.000000,0.250000,0,0);}
.mc9_c00458{transform:matrix(0.283186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283186,0.000000,0.000000,0.250000,0,0);}
.ma7_c00458{transform:matrix(0.284594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284594,0.000000,0.000000,0.250000,0,0);}
.m50_c00458{transform:matrix(0.285467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285467,0.000000,0.000000,0.250000,0,0);}
.maa_c00458{transform:matrix(0.285652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285652,0.000000,0.000000,0.250000,0,0);}
.m3e_c00458{transform:matrix(0.285722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285722,0.000000,0.000000,0.250000,0,0);}
.ma9_c00458{transform:matrix(0.285741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285741,0.000000,0.000000,0.250000,0,0);}
.m48_c00458{transform:matrix(0.285995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285995,0.000000,0.000000,0.250000,0,0);}
.m8b_c00458{transform:matrix(0.288579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288579,0.000000,0.000000,0.250000,0,0);}
.mc5_c00458{transform:matrix(0.288704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288704,0.000000,0.000000,0.250000,0,0);}
.m4_c00458{transform:matrix(0.288797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288797,0.000000,0.000000,0.250000,0,0);}
.m3_c00458{transform:matrix(0.288840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288840,0.000000,0.000000,0.250000,0,0);}
.m1f_c00458{transform:matrix(0.289192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289192,0.000000,0.000000,0.250000,0,0);}
.m27_c00458{transform:matrix(0.289372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289372,0.000000,0.000000,0.250000,0,0);}
.mb1_c00458{transform:matrix(0.289736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289736,0.000000,0.000000,0.250000,0,0);}
.m35_c00458{transform:matrix(0.289912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289912,0.000000,0.000000,0.250000,0,0);}
.mb7_c00458{transform:matrix(0.290214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290214,0.000000,0.000000,0.250000,0,0);}
.mab_c00458{transform:matrix(0.291103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291103,0.000000,0.000000,0.250000,0,0);}
.mbc_c00458{transform:matrix(0.291194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291194,0.000000,0.000000,0.250000,0,0);}
.mbb_c00458{transform:matrix(0.291398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291398,0.000000,0.000000,0.250000,0,0);}
.m7_c00458{transform:matrix(0.291698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291698,0.000000,0.000000,0.250000,0,0);}
.m96_c00458{transform:matrix(0.292598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292598,0.000000,0.000000,0.250000,0,0);}
.mac_c00458{transform:matrix(0.292967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292967,0.000000,0.000000,0.250000,0,0);}
.m3b_c00458{transform:matrix(0.293899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293899,0.000000,0.000000,0.250000,0,0);}
.m74_c00458{transform:matrix(0.294423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294423,0.000000,0.000000,0.250000,0,0);}
.m66_c00458{transform:matrix(0.294612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294612,0.000000,0.000000,0.250000,0,0);}
.m6_c00458{transform:matrix(0.295501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295501,0.000000,0.000000,0.250000,0,0);}
.m67_c00458{transform:matrix(0.295983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295983,0.000000,0.000000,0.250000,0,0);}
.m3f_c00458{transform:matrix(0.296239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296239,0.000000,0.000000,0.250000,0,0);}
.m81_c00458{transform:matrix(0.296828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296828,0.000000,0.000000,0.250000,0,0);}
.m16_c00458{transform:matrix(0.297455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297455,0.000000,0.000000,0.250000,0,0);}
.md_c00458{transform:matrix(0.297812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297812,0.000000,0.000000,0.250000,0,0);}
.m7b_c00458{transform:matrix(0.298126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298126,0.000000,0.000000,0.250000,0,0);}
.m94_c00458{transform:matrix(0.298471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298471,0.000000,0.000000,0.250000,0,0);}
.mbd_c00458{transform:matrix(0.298489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298489,0.000000,0.000000,0.250000,0,0);}
.m10_c00458{transform:matrix(0.299332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299332,0.000000,0.000000,0.250000,0,0);}
.m5_c00458{transform:matrix(0.300309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300309,0.000000,0.000000,0.250000,0,0);}
.m98_c00458{transform:matrix(0.300338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300338,0.000000,0.000000,0.250000,0,0);}
.m97_c00458{transform:matrix(0.300484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300484,0.000000,0.000000,0.250000,0,0);}
.m43_c00458{transform:matrix(0.301674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301674,0.000000,0.000000,0.250000,0,0);}
.m84_c00458{transform:matrix(0.302317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302317,0.000000,0.000000,0.250000,0,0);}
.m2a_c00458{transform:matrix(0.302495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302495,0.000000,0.000000,0.250000,0,0);}
.ma_c00458{transform:matrix(0.303209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303209,0.000000,0.000000,0.250000,0,0);}
.m4d_c00458{transform:matrix(0.303909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303909,0.000000,0.000000,0.250000,0,0);}
.m57_c00458{transform:matrix(0.303928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303928,0.000000,0.000000,0.250000,0,0);}
.m59_c00458{transform:matrix(0.304380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304380,0.000000,0.000000,0.250000,0,0);}
.m8a_c00458{transform:matrix(0.305035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305035,0.000000,0.000000,0.250000,0,0);}
.mc3_c00458{transform:matrix(0.305175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305175,0.000000,0.000000,0.250000,0,0);}
.m8_c00458{transform:matrix(0.305808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305808,0.000000,0.000000,0.250000,0,0);}
.m15_c00458{transform:matrix(0.305824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305824,0.000000,0.000000,0.250000,0,0);}
.m9c_c00458{transform:matrix(0.306924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306924,0.000000,0.000000,0.250000,0,0);}
.m1a_c00458{transform:matrix(0.307690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307690,0.000000,0.000000,0.250000,0,0);}
.mc2_c00458{transform:matrix(0.307761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307761,0.000000,0.000000,0.250000,0,0);}
.m23_c00458{transform:matrix(0.307982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307982,0.000000,0.000000,0.250000,0,0);}
.m44_c00458{transform:matrix(0.308633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308633,0.000000,0.000000,0.250000,0,0);}
.m22_c00458{transform:matrix(0.309816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309816,0.000000,0.000000,0.250000,0,0);}
.m64_c00458{transform:matrix(0.309836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309836,0.000000,0.000000,0.250000,0,0);}
.m2c_c00458{transform:matrix(0.310285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310285,0.000000,0.000000,0.250000,0,0);}
.m49_c00458{transform:matrix(0.310900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310900,0.000000,0.000000,0.250000,0,0);}
.m65_c00458{transform:matrix(0.311495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311495,0.000000,0.000000,0.250000,0,0);}
.m6d_c00458{transform:matrix(0.312549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312549,0.000000,0.000000,0.250000,0,0);}
.m56_c00458{transform:matrix(0.313799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313799,0.000000,0.000000,0.250000,0,0);}
.mb6_c00458{transform:matrix(0.314591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314591,0.000000,0.000000,0.250000,0,0);}
.m6a_c00458{transform:matrix(0.314608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314608,0.000000,0.000000,0.250000,0,0);}
.m5a_c00458{transform:matrix(0.315587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315587,0.000000,0.000000,0.250000,0,0);}
.m33_c00458{transform:matrix(0.316159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316159,0.000000,0.000000,0.250000,0,0);}
.m73_c00458{transform:matrix(0.316180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316180,0.000000,0.000000,0.250000,0,0);}
.m9f_c00458{transform:matrix(0.316918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316918,0.000000,0.000000,0.250000,0,0);}
.m99_c00458{transform:matrix(0.317410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317410,0.000000,0.000000,0.250000,0,0);}
.mc7_c00458{transform:matrix(0.317716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317716,0.000000,0.000000,0.250000,0,0);}
.m4a_c00458{transform:matrix(0.318315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318315,0.000000,0.000000,0.250000,0,0);}
.m80_c00458{transform:matrix(0.319189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319189,0.000000,0.000000,0.250000,0,0);}
.m54_c00458{transform:matrix(0.319442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319442,0.000000,0.000000,0.250000,0,0);}
.m2_c00458{transform:matrix(0.319867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319867,0.000000,0.000000,0.250000,0,0);}
.m55_c00458{transform:matrix(0.319873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319873,0.000000,0.000000,0.250000,0,0);}
.m2f_c00458{transform:matrix(0.319906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319906,0.000000,0.000000,0.250000,0,0);}
.m58_c00458{transform:matrix(0.321744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321744,0.000000,0.000000,0.250000,0,0);}
.m95_c00458{transform:matrix(0.321771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321771,0.000000,0.000000,0.250000,0,0);}
.m9e_c00458{transform:matrix(0.322028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322028,0.000000,0.000000,0.250000,0,0);}
.ma1_c00458{transform:matrix(0.322637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322637,0.000000,0.000000,0.250000,0,0);}
.mb4_c00458{transform:matrix(0.322872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322872,0.000000,0.000000,0.250000,0,0);}
.m46_c00458{transform:matrix(0.323067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323067,0.000000,0.000000,0.250000,0,0);}
.m4b_c00458{transform:matrix(0.325087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325087,0.000000,0.000000,0.250000,0,0);}
.m28_c00458{transform:matrix(0.327352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327352,0.000000,0.000000,0.250000,0,0);}
.m68_c00458{transform:matrix(0.327355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327355,0.000000,0.000000,0.250000,0,0);}
.m6f_c00458{transform:matrix(0.327495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327495,0.000000,0.000000,0.250000,0,0);}
.m37_c00458{transform:matrix(0.328097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328097,0.000000,0.000000,0.250000,0,0);}
.m9b_c00458{transform:matrix(0.328156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328156,0.000000,0.000000,0.250000,0,0);}
.m13_c00458{transform:matrix(0.328294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328294,0.000000,0.000000,0.250000,0,0);}
.m7a_c00458{transform:matrix(0.329447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329447,0.000000,0.000000,0.250000,0,0);}
.mf_c00458{transform:matrix(0.329648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329648,0.000000,0.000000,0.250000,0,0);}
.m45_c00458{transform:matrix(0.329706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329706,0.000000,0.000000,0.250000,0,0);}
.mb3_c00458{transform:matrix(0.331512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331512,0.000000,0.000000,0.250000,0,0);}
.m7f_c00458{transform:matrix(0.333563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333563,0.000000,0.000000,0.250000,0,0);}
.m17_c00458{transform:matrix(0.335221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335221,0.000000,0.000000,0.250000,0,0);}
.mc8_c00458{transform:matrix(0.335873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335873,0.000000,0.000000,0.250000,0,0);}
.m5f_c00458{transform:matrix(0.336318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336318,0.000000,0.000000,0.250000,0,0);}
.mcb_c00458{transform:matrix(0.336483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336483,0.000000,0.000000,0.250000,0,0);}
.m69_c00458{transform:matrix(0.336591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336591,0.000000,0.000000,0.250000,0,0);}
.m6c_c00458{transform:matrix(0.337829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337829,0.000000,0.000000,0.250000,0,0);}
.mb5_c00458{transform:matrix(0.338004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338004,0.000000,0.000000,0.250000,0,0);}
.m3c_c00458{transform:matrix(0.338351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338351,0.000000,0.000000,0.250000,0,0);}
.m1b_c00458{transform:matrix(0.339707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339707,0.000000,0.000000,0.250000,0,0);}
.m12_c00458{transform:matrix(0.339956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339956,0.000000,0.000000,0.250000,0,0);}
.m51_c00458{transform:matrix(0.343235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343235,0.000000,0.000000,0.250000,0,0);}
.m42_c00458{transform:matrix(0.343878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343878,0.000000,0.000000,0.250000,0,0);}
.ma3_c00458{transform:matrix(0.346458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346458,0.000000,0.000000,0.250000,0,0);}
.m83_c00458{transform:matrix(0.347422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347422,0.000000,0.000000,0.250000,0,0);}
.m1c_c00458{transform:matrix(0.348583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348583,0.000000,0.000000,0.250000,0,0);}
.m2e_c00458{transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);}
.m7c_c00458{transform:matrix(0.352020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352020,0.000000,0.000000,0.250000,0,0);}
.m38_c00458{transform:matrix(0.352767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352767,0.000000,0.000000,0.250000,0,0);}
.m4f_c00458{transform:matrix(0.353231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353231,0.000000,0.000000,0.250000,0,0);}
.mb0_c00458{transform:matrix(0.355407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355407,0.000000,0.000000,0.250000,0,0);}
.ma5_c00458{transform:matrix(0.358834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358834,0.000000,0.000000,0.250000,0,0);}
.m4e_c00458{transform:matrix(0.359020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359020,0.000000,0.000000,0.250000,0,0);}
.m26_c00458{transform:matrix(0.359199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359199,0.000000,0.000000,0.250000,0,0);}
.m53_c00458{transform:matrix(0.360412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360412,0.000000,0.000000,0.250000,0,0);}
.m89_c00458{transform:matrix(0.363147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363147,0.000000,0.000000,0.250000,0,0);}
.m3a_c00458{transform:matrix(0.366100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366100,0.000000,0.000000,0.250000,0,0);}
.m9a_c00458{transform:matrix(0.371161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371161,0.000000,0.000000,0.250000,0,0);}
.m1_c00458{transform:matrix(0.383497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383497,0.000000,0.000000,0.250000,0,0);}
.m8e_c00458{transform:matrix(0.389777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389777,0.000000,0.000000,0.250000,0,0);}
.m32_c00458{transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);}
.m19_c00458{transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);}
.m1e_c00458{transform:matrix(0.405805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405805,0.000000,0.000000,0.250000,0,0);}
.m40_c00458{transform:matrix(0.431793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431793,0.000000,0.000000,0.250000,0,0);}
.v0_c00458{vertical-align:0.000000px;}
.v1_c00458{vertical-align:18.532800px;}
.ls16_c00458{letter-spacing:-2.993767px;}
.lsb_c00458{letter-spacing:-2.765077px;}
.ls10_c00458{letter-spacing:-2.647267px;}
.ls1d_c00458{letter-spacing:-2.605680px;}
.lsc_c00458{letter-spacing:-1.427580px;}
.ls24_c00458{letter-spacing:-1.213344px;}
.ls18_c00458{letter-spacing:-1.028652px;}
.ls28_c00458{letter-spacing:-0.547986px;}
.ls5_c00458{letter-spacing:0.000000px;}
.ls0_c00458{letter-spacing:0.911909px;}
.ls23_c00458{letter-spacing:1.089871px;}
.ls6_c00458{letter-spacing:1.772100px;}
.ls2a_c00458{letter-spacing:2.217600px;}
.ls3_c00458{letter-spacing:2.611224px;}
.ls19_c00458{letter-spacing:2.622161px;}
.ls22_c00458{letter-spacing:2.851200px;}
.lsf_c00458{letter-spacing:3.405610px;}
.ls21_c00458{letter-spacing:3.435310px;}
.ls1b_c00458{letter-spacing:3.445200px;}
.lsd_c00458{letter-spacing:3.504610px;}
.ls12_c00458{letter-spacing:3.584196px;}
.ls9_c00458{letter-spacing:3.643200px;}
.ls29_c00458{letter-spacing:3.702610px;}
.ls1e_c00458{letter-spacing:3.722400px;}
.ls7_c00458{letter-spacing:3.742200px;}
.ls8_c00458{letter-spacing:3.781810px;}
.ls25_c00458{letter-spacing:3.791700px;}
.lse_c00458{letter-spacing:3.801610px;}
.ls1c_c00458{letter-spacing:3.861000px;}
.ls26_c00458{letter-spacing:3.880810px;}
.ls1f_c00458{letter-spacing:3.920400px;}
.ls27_c00458{letter-spacing:3.950110px;}
.ls2b_c00458{letter-spacing:4.039200px;}
.ls14_c00458{letter-spacing:4.098610px;}
.ls20_c00458{letter-spacing:4.118400px;}
.lsa_c00458{letter-spacing:4.158000px;}
.ls17_c00458{letter-spacing:4.276810px;}
.ls4_c00458{letter-spacing:16.056546px;}
.ls1_c00458{letter-spacing:22.686840px;}
.ls11_c00458{letter-spacing:58.449798px;}
.ls15_c00458{letter-spacing:59.875398px;}
.ls13_c00458{letter-spacing:61.300998px;}
.ls1a_c00458{letter-spacing:62.726400px;}
.ls2_c00458{letter-spacing:591.807678px;}
.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;}
}
.ws1_c00458{word-spacing:-18.909050px;}
.ws2_c00458{word-spacing:-17.880397px;}
.ws0_c00458{word-spacing:-15.910409px;}
.ws3_c00458{word-spacing:0.000000px;}
._a_c00458{margin-left:-33.204699px;}
._9_c00458{margin-left:-6.801932px;}
._6_c00458{margin-left:-4.833972px;}
._5_c00458{width:2.106720px;}
._7_c00458{width:5.249094px;}
._0_c00458{width:7.579163px;}
._3_c00458{width:12.121689px;}
._1_c00458{width:14.219480px;}
._4_c00458{width:15.978501px;}
._2_c00458{width:21.259656px;}
._c_c00458{width:27.304937px;}
._b_c00458{width:32.523541px;}
._8_c00458{width:35.969335px;}
.fc0_c00458{color:transparent;}
.fs4_c00458{font-size:35.442000px;}
.fs1_c00458{font-size:38.610000px;}
.fse_c00458{font-size:39.600000px;}
.fsd_c00458{font-size:40.788000px;}
.fs23_c00458{font-size:44.352000px;}
.fs1f_c00458{font-size:57.024000px;}
.fs11_c00458{font-size:58.449798px;}
.fs14_c00458{font-size:59.875398px;}
.fs0_c00458{font-size:59.994000px;}
.fs12_c00458{font-size:61.300998px;}
.fsf_c00458{font-size:61.974000px;}
.fs17_c00458{font-size:62.726400px;}
.fs1e_c00458{font-size:66.330000px;}
.fs10_c00458{font-size:68.112198px;}
.fs1d_c00458{font-size:68.706198px;}
.fs18_c00458{font-size:68.904000px;}
.fsb_c00458{font-size:70.092198px;}
.fs2_c00458{font-size:71.676198px;}
.fs9_c00458{font-size:72.864000px;}
.fs16_c00458{font-size:73.656198px;}
.fs22_c00458{font-size:74.052198px;}
.fs1a_c00458{font-size:74.448000px;}
.fs5_c00458{font-size:74.844000px;}
.fs6_c00458{font-size:75.636198px;}
.fs20_c00458{font-size:75.834000px;}
.fs7_c00458{font-size:76.032198px;}
.fs19_c00458{font-size:77.220000px;}
.fs21_c00458{font-size:77.616198px;}
.fs1b_c00458{font-size:78.408000px;}
.fsc_c00458{font-size:79.002198px;}
.fs24_c00458{font-size:80.784000px;}
.fs13_c00458{font-size:81.972198px;}
.fs1c_c00458{font-size:82.368000px;}
.fsa_c00458{font-size:83.160000px;}
.fs15_c00458{font-size:85.536198px;}
.fs8_c00458{font-size:91.872198px;}
.fs3_c00458{font-size:120.384000px;}
.y0_c00458{bottom:0.000000px;}
.y1_c00458{bottom:76.500000px;}
.y1e_c00458{bottom:119.662320px;}
.y1f_c00458{bottom:124.295520px;}
.y1d_c00458{bottom:153.163920px;}
.y1c_c00458{bottom:187.378320px;}
.y1b_c00458{bottom:221.236320px;}
.y1a_c00458{bottom:253.312320px;}
.y19_c00458{bottom:285.739770px;}
.y18_c00458{bottom:317.464320px;}
.y17_c00458{bottom:349.535370px;}
.y16_c00458{bottom:381.972720px;}
.y15_c00458{bottom:413.692320px;}
.y14_c00458{bottom:477.844320px;}
.y13_c00458{bottom:510.271770px;}
.y12_c00458{bottom:542.352720px;}
.y11_c00458{bottom:574.428720px;}
.y10_c00458{bottom:606.499770px;}
.yf_c00458{bottom:638.580720px;}
.ye_c00458{bottom:656.400720px;}
.yd_c00458{bottom:671.013120px;}
.yc_c00458{bottom:703.084170px;}
.yb_c00458{bottom:716.270970px;}
.ya_c00458{bottom:735.521520px;}
.y9_c00458{bottom:767.953920px;}
.y8_c00458{bottom:800.386320px;}
.y7_c00458{bottom:831.393120px;}
.y6_c00458{bottom:895.545120px;}
.y5_c00458{bottom:919.775370px;}
.y4_c00458{bottom:927.616170px;}
.y3_c00458{bottom:1064.117370px;}
.y2_c00458{bottom:1066.612170px;}
.h4_c00458{height:36.964898px;}
.h12_c00458{height:38.927565px;}
.h15_c00458{height:39.877015px;}
.hd_c00458{height:40.031191px;}
.h13_c00458{height:40.826465px;}
.hc_c00458{height:41.106656px;}
.h10_c00458{height:41.301563px;}
.h18_c00458{height:41.775782px;}
.h24_c00458{height:46.257750px;}
.h20_c00458{height:55.965938px;}
.h1f_c00458{height:69.180117px;}
.h11_c00458{height:71.038894px;}
.h8_c00458{height:71.512031px;}
.h1e_c00458{height:71.658417px;}
.h19_c00458{height:71.864719px;}
.h23_c00458{height:72.678183px;}
.h1b_c00458{height:73.066641px;}
.he_c00458{height:73.103972px;}
.h5_c00458{height:73.455293px;}
.h6_c00458{height:74.232792px;}
.h21_c00458{height:74.426924px;}
.hf_c00458{height:74.621444px;}
.h2_c00458{height:74.756035px;}
.h1a_c00458{height:75.787207px;}
.h22_c00458{height:76.176054px;}
.h17_c00458{height:76.821113px;}
.h1c_c00458{height:76.953164px;}
.ha_c00458{height:77.536337px;}
.hb_c00458{height:78.886191px;}
.h25_c00458{height:79.285078px;}
.h14_c00458{height:80.451229px;}
.h1d_c00458{height:80.839688px;}
.h9_c00458{height:81.616992px;}
.h16_c00458{height:83.949101px;}
.h7_c00458{height:95.819832px;}
.h3_c00458{height:125.556750px;}
.h1_c00458{height:1110.000000px;}
.h0_c00458{height:1263.000000px;}
.w1_c00458{width:769.500000px;}
.w0_c00458{width:892.500000px;}
.x0_c00458{left:0.000000px;}
.x1_c00458{left:61.500000px;}
.x5a_c00458{left:86.220435px;}
.x21_c00458{left:87.972735px;}
.x5_c00458{left:90.992235px;}
.x3a_c00458{left:112.331685px;}
.x6c_c00458{left:118.296435px;}
.x55_c00458{left:120.083385px;}
.x31_c00458{left:123.389985px;}
.x85_c00458{left:129.359685px;}
.x76_c00458{left:130.547685px;}
.xf_c00458{left:132.369285px;}
.x29_c00458{left:133.433535px;}
.x62_c00458{left:139.878435px;}
.x18_c00458{left:141.734685px;}
.x6_c00458{left:145.363035px;}
.x60_c00458{left:150.768435px;}
.x67_c00458{left:152.005935px;}
.x22_c00458{left:153.416685px;}
.x49_c00458{left:156.163935px;}
.x6d_c00458{left:161.465385px;}
.x68_c00458{left:163.400835px;}
.x3b_c00458{left:167.286585px;}
.x74_c00458{left:173.008785px;}
.x19_c00458{left:175.820385px;}
.x81_c00458{left:183.200835px;}
.x63_c00458{left:184.433385px;}
.x23_c00458{left:185.784735px;}
.x56_c00458{left:186.799485px;}
.x5b_c00458{left:195.293685px;}
.xe_c00458{left:197.283585px;}
.x10_c00458{left:198.986385px;}
.x7b_c00458{left:207.109335px;}
.x32_c00458{left:209.663535px;}
.x42_c00458{left:211.044585px;}
.x64_c00458{left:216.895485px;}
.x5c_c00458{left:218.939835px;}
.x24_c00458{left:220.385235px;}
.x7_c00458{left:229.701135px;}
.x71_c00458{left:239.353635px;}
.x11_c00458{left:241.264335px;}
.x3c_c00458{left:243.066135px;}
.x72_c00458{left:250.862385px;}
.x2a_c00458{left:252.659235px;}
.x88_c00458{left:260.896035px;}
.x57_c00458{left:262.638435px;}
.x69_c00458{left:264.370935px;}
.x7c_c00458{left:273.157185px;}
.x1a_c00458{left:274.241235px;}
.x12_c00458{left:285.160935px;}
.x25_c00458{left:286.363785px;}
.x4a_c00458{left:288.041835px;}
.x65_c00458{left:295.778685px;}
.x4f_c00458{left:297.001335px;}
.x4b_c00458{left:306.475635px;}
.x51_c00458{left:307.594335px;}
.x33_c00458{left:310.569285px;}
.x1b_c00458{left:317.103285px;}
.x58_c00458{left:318.434835px;}
.x26_c00458{left:320.102985px;}
.x3d_c00458{left:328.592235px;}
.x8_c00458{left:329.844585px;}
.x77_c00458{left:339.229785px;}
.x43_c00458{left:340.759335px;}
.x27_c00458{left:350.664285px;}
.x61_c00458{left:351.787935px;}
.x89_c00458{left:353.560035px;}
.x78_c00458{left:361.534485px;}
.x3e_c00458{left:362.767035px;}
.x13_c00458{left:373.632285px;}
.x2b_c00458{left:385.438035px;}
.x5d_c00458{left:394.501485px;}
.x6e_c00458{left:395.778585px;}
.x79_c00458{left:405.198435px;}
.x4c_c00458{left:407.435835px;}
.x52_c00458{left:416.949735px;}
.x1c_c00458{left:419.023785px;}
.x9_c00458{left:430.339485px;}
.x75_c00458{left:437.987235px;}
.x14_c00458{left:439.046535px;}
.x34_c00458{left:440.630535px;}
.x53_c00458{left:450.094935px;}
.x82_c00458{left:453.322335px;}
.xa_c00458{left:462.761985px;}
.x4d_c00458{left:482.180835px;}
.x44_c00458{left:484.096485px;}
.x6a_c00458{left:486.170535px;}
.x2c_c00458{left:493.981635px;}
.x1d_c00458{left:495.555735px;}
.x66_c00458{left:506.683335px;}
.x45_c00458{left:517.108035px;}
.x48_c00458{left:522.944085px;}
.x35_c00458{left:528.715785px;}
.x38_c00458{left:538.140585px;}
.x59_c00458{left:540.120585px;}
.x54_c00458{left:549.119685px;}
.x3f_c00458{left:551.074935px;}
.x36_c00458{left:561.499635px;}
.x5e_c00458{left:562.806435px;}
.xb_c00458{left:571.221435px;}
.x1e_c00458{left:572.483685px;}
.x15_c00458{left:573.622185px;}
.x7d_c00458{left:582.339135px;}
.x40_c00458{left:583.566735px;}
.x2d_c00458{left:584.640885px;}
.x1f_c00458{left:605.143785px;}
.x16_c00458{left:606.683235px;}
.x28_c00458{left:607.861335px;}
.x7e_c00458{left:616.256535px;}
.x2e_c00458{left:617.365335px;}
.x86_c00458{left:627.077235px;}
.x4e_c00458{left:628.082085px;}
.x37_c00458{left:637.922685px;}
.x5f_c00458{left:639.526485px;}
.x6f_c00458{left:646.956435px;}
.x46_c00458{left:648.302835px;}
.x2f_c00458{left:649.664085px;}
.x17_c00458{left:661.440135px;}
.x7f_c00458{left:671.236185px;}
.xc_c00458{left:672.830085px;}
.x6b_c00458{left:683.017185px;}
.x20_c00458{left:684.022035px;}
.x73_c00458{left:692.639985px;}
.x47_c00458{left:693.877485px;}
.x41_c00458{left:696.005985px;}
.x39_c00458{left:700.485735px;}
.x70_c00458{left:703.534935px;}
.x83_c00458{left:704.584335px;}
.x2_c00458{left:708.717585px;}
.x7a_c00458{left:714.147735px;}
.x50_c00458{left:715.578285px;}
.x30_c00458{left:718.929435px;}
.x3_c00458{left:723.760635px;}
.x80_c00458{left:727.898835px;}
.x4_c00458{left:732.051885px;}
.xd_c00458{left:740.219385px;}
.x84_c00458{left:748.862085px;}
.x87_c00458{left:762.766635px;}
@media print{
.v0_c00458{vertical-align:0.000000pt;}
.v1_c00458{vertical-align:16.473600pt;}
.ls16_c00458{letter-spacing:-2.661126pt;}
.lsb_c00458{letter-spacing:-2.457846pt;}
.ls10_c00458{letter-spacing:-2.353126pt;}
.ls1d_c00458{letter-spacing:-2.316160pt;}
.lsc_c00458{letter-spacing:-1.268960pt;}
.ls24_c00458{letter-spacing:-1.078528pt;}
.ls18_c00458{letter-spacing:-0.914358pt;}
.ls28_c00458{letter-spacing:-0.487099pt;}
.ls5_c00458{letter-spacing:0.000000pt;}
.ls0_c00458{letter-spacing:0.810586pt;}
.ls23_c00458{letter-spacing:0.968774pt;}
.ls6_c00458{letter-spacing:1.575200pt;}
.ls2a_c00458{letter-spacing:1.971200pt;}
.ls3_c00458{letter-spacing:2.321088pt;}
.ls19_c00458{letter-spacing:2.330809pt;}
.ls22_c00458{letter-spacing:2.534400pt;}
.lsf_c00458{letter-spacing:3.027209pt;}
.ls21_c00458{letter-spacing:3.053609pt;}
.ls1b_c00458{letter-spacing:3.062400pt;}
.lsd_c00458{letter-spacing:3.115209pt;}
.ls12_c00458{letter-spacing:3.185952pt;}
.ls9_c00458{letter-spacing:3.238400pt;}
.ls29_c00458{letter-spacing:3.291209pt;}
.ls1e_c00458{letter-spacing:3.308800pt;}
.ls7_c00458{letter-spacing:3.326400pt;}
.ls8_c00458{letter-spacing:3.361609pt;}
.ls25_c00458{letter-spacing:3.370400pt;}
.lse_c00458{letter-spacing:3.379209pt;}
.ls1c_c00458{letter-spacing:3.432000pt;}
.ls26_c00458{letter-spacing:3.449609pt;}
.ls1f_c00458{letter-spacing:3.484800pt;}
.ls27_c00458{letter-spacing:3.511209pt;}
.ls2b_c00458{letter-spacing:3.590400pt;}
.ls14_c00458{letter-spacing:3.643209pt;}
.ls20_c00458{letter-spacing:3.660800pt;}
.lsa_c00458{letter-spacing:3.696000pt;}
.ls17_c00458{letter-spacing:3.801609pt;}
.ls4_c00458{letter-spacing:14.272485pt;}
.ls1_c00458{letter-spacing:20.166080pt;}
.ls11_c00458{letter-spacing:51.955376pt;}
.ls15_c00458{letter-spacing:53.222576pt;}
.ls13_c00458{letter-spacing:54.489776pt;}
.ls1a_c00458{letter-spacing:55.756800pt;}
.ls2_c00458{letter-spacing:526.051269pt;}
.ws1_c00458{word-spacing:-16.808044pt;}
.ws2_c00458{word-spacing:-15.893686pt;}
.ws0_c00458{word-spacing:-14.142586pt;}
.ws3_c00458{word-spacing:0.000000pt;}
._a_c00458{margin-left:-29.515288pt;}
._9_c00458{margin-left:-6.046162pt;}
._6_c00458{margin-left:-4.296864pt;}
._5_c00458{width:1.872640pt;}
._7_c00458{width:4.665861pt;}
._0_c00458{width:6.737034pt;}
._3_c00458{width:10.774834pt;}
._1_c00458{width:12.639538pt;}
._4_c00458{width:14.203112pt;}
._2_c00458{width:18.897472pt;}
._c_c00458{width:24.271055pt;}
._b_c00458{width:28.909814pt;}
._8_c00458{width:31.972742pt;}
.fs4_c00458{font-size:31.504000pt;}
.fs1_c00458{font-size:34.320000pt;}
.fse_c00458{font-size:35.200000pt;}
.fsd_c00458{font-size:36.256000pt;}
.fs23_c00458{font-size:39.424000pt;}
.fs1f_c00458{font-size:50.688000pt;}
.fs11_c00458{font-size:51.955376pt;}
.fs14_c00458{font-size:53.222576pt;}
.fs0_c00458{font-size:53.328000pt;}
.fs12_c00458{font-size:54.489776pt;}
.fsf_c00458{font-size:55.088000pt;}
.fs17_c00458{font-size:55.756800pt;}
.fs1e_c00458{font-size:58.960000pt;}
.fs10_c00458{font-size:60.544176pt;}
.fs1d_c00458{font-size:61.072176pt;}
.fs18_c00458{font-size:61.248000pt;}
.fsb_c00458{font-size:62.304176pt;}
.fs2_c00458{font-size:63.712176pt;}
.fs9_c00458{font-size:64.768000pt;}
.fs16_c00458{font-size:65.472176pt;}
.fs22_c00458{font-size:65.824176pt;}
.fs1a_c00458{font-size:66.176000pt;}
.fs5_c00458{font-size:66.528000pt;}
.fs6_c00458{font-size:67.232176pt;}
.fs20_c00458{font-size:67.408000pt;}
.fs7_c00458{font-size:67.584176pt;}
.fs19_c00458{font-size:68.640000pt;}
.fs21_c00458{font-size:68.992176pt;}
.fs1b_c00458{font-size:69.696000pt;}
.fsc_c00458{font-size:70.224176pt;}
.fs24_c00458{font-size:71.808000pt;}
.fs13_c00458{font-size:72.864176pt;}
.fs1c_c00458{font-size:73.216000pt;}
.fsa_c00458{font-size:73.920000pt;}
.fs15_c00458{font-size:76.032176pt;}
.fs8_c00458{font-size:81.664176pt;}
.fs3_c00458{font-size:107.008000pt;}
.y0_c00458{bottom:0.000000pt;}
.y1_c00458{bottom:68.000000pt;}
.y1e_c00458{bottom:106.366507pt;}
.y1f_c00458{bottom:110.484907pt;}
.y1d_c00458{bottom:136.145707pt;}
.y1c_c00458{bottom:166.558507pt;}
.y1b_c00458{bottom:196.654507pt;}
.y1a_c00458{bottom:225.166507pt;}
.y19_c00458{bottom:253.990907pt;}
.y18_c00458{bottom:282.190507pt;}
.y17_c00458{bottom:310.698107pt;}
.y16_c00458{bottom:339.531307pt;}
.y15_c00458{bottom:367.726507pt;}
.y14_c00458{bottom:424.750507pt;}
.y13_c00458{bottom:453.574907pt;}
.y12_c00458{bottom:482.091307pt;}
.y11_c00458{bottom:510.603307pt;}
.y10_c00458{bottom:539.110907pt;}
.yf_c00458{bottom:567.627307pt;}
.ye_c00458{bottom:583.467307pt;}
.yd_c00458{bottom:596.456107pt;}
.yc_c00458{bottom:624.963707pt;}
.yb_c00458{bottom:636.685307pt;}
.ya_c00458{bottom:653.796907pt;}
.y9_c00458{bottom:682.625707pt;}
.y8_c00458{bottom:711.454507pt;}
.y7_c00458{bottom:739.016107pt;}
.y6_c00458{bottom:796.040107pt;}
.y5_c00458{bottom:817.578107pt;}
.y4_c00458{bottom:824.547707pt;}
.y3_c00458{bottom:945.882107pt;}
.y2_c00458{bottom:948.099707pt;}
.h4_c00458{height:32.857688pt;}
.h12_c00458{height:34.602280pt;}
.h15_c00458{height:35.446236pt;}
.hd_c00458{height:35.583281pt;}
.h13_c00458{height:36.290191pt;}
.hc_c00458{height:36.539250pt;}
.h10_c00458{height:36.712500pt;}
.h18_c00458{height:37.134029pt;}
.h24_c00458{height:41.118000pt;}
.h20_c00458{height:49.747500pt;}
.h1f_c00458{height:61.493438pt;}
.h11_c00458{height:63.145684pt;}
.h8_c00458{height:63.566250pt;}
.h1e_c00458{height:63.696371pt;}
.h19_c00458{height:63.879750pt;}
.h23_c00458{height:64.602829pt;}
.h1b_c00458{height:64.948125pt;}
.he_c00458{height:64.981309pt;}
.h5_c00458{height:65.293594pt;}
.h6_c00458{height:65.984704pt;}
.h21_c00458{height:66.157266pt;}
.hf_c00458{height:66.330173pt;}
.h2_c00458{height:66.449809pt;}
.h1a_c00458{height:67.366406pt;}
.h22_c00458{height:67.712048pt;}
.h17_c00458{height:68.285434pt;}
.h1c_c00458{height:68.402813pt;}
.ha_c00458{height:68.921188pt;}
.hb_c00458{height:70.121059pt;}
.h25_c00458{height:70.475625pt;}
.h14_c00458{height:71.512204pt;}
.h1d_c00458{height:71.857500pt;}
.h9_c00458{height:72.548438pt;}
.h16_c00458{height:74.621423pt;}
.h7_c00458{height:85.173184pt;}
.h3_c00458{height:111.606000pt;}
.h1_c00458{height:986.666667pt;}
.h0_c00458{height:1122.666667pt;}
.w1_c00458{width:684.000000pt;}
.w0_c00458{width:793.333333pt;}
.x0_c00458{left:0.000000pt;}
.x1_c00458{left:54.666667pt;}
.x5a_c00458{left:76.640387pt;}
.x21_c00458{left:78.197987pt;}
.x5_c00458{left:80.881987pt;}
.x3a_c00458{left:99.850387pt;}
.x6c_c00458{left:105.152387pt;}
.x55_c00458{left:106.740787pt;}
.x31_c00458{left:109.679987pt;}
.x85_c00458{left:114.986387pt;}
.x76_c00458{left:116.042387pt;}
.xf_c00458{left:117.661587pt;}
.x29_c00458{left:118.607587pt;}
.x62_c00458{left:124.336387pt;}
.x18_c00458{left:125.986387pt;}
.x6_c00458{left:129.211587pt;}
.x60_c00458{left:134.016387pt;}
.x67_c00458{left:135.116387pt;}
.x22_c00458{left:136.370387pt;}
.x49_c00458{left:138.812387pt;}
.x6d_c00458{left:143.524787pt;}
.x68_c00458{left:145.245187pt;}
.x3b_c00458{left:148.699187pt;}
.x74_c00458{left:153.785587pt;}
.x19_c00458{left:156.284787pt;}
.x81_c00458{left:162.845187pt;}
.x63_c00458{left:163.940787pt;}
.x23_c00458{left:165.141987pt;}
.x56_c00458{left:166.043987pt;}
.x5b_c00458{left:173.594387pt;}
.xe_c00458{left:175.363187pt;}
.x10_c00458{left:176.876787pt;}
.x7b_c00458{left:184.097187pt;}
.x32_c00458{left:186.367587pt;}
.x42_c00458{left:187.595187pt;}
.x64_c00458{left:192.795987pt;}
.x5c_c00458{left:194.613187pt;}
.x24_c00458{left:195.897987pt;}
.x7_c00458{left:204.178787pt;}
.x71_c00458{left:212.758787pt;}
.x11_c00458{left:214.457187pt;}
.x3c_c00458{left:216.058787pt;}
.x72_c00458{left:222.988787pt;}
.x2a_c00458{left:224.585987pt;}
.x88_c00458{left:231.907587pt;}
.x57_c00458{left:233.456387pt;}
.x69_c00458{left:234.996387pt;}
.x7c_c00458{left:242.806387pt;}
.x1a_c00458{left:243.769987pt;}
.x12_c00458{left:253.476387pt;}
.x25_c00458{left:254.545587pt;}
.x4a_c00458{left:256.037187pt;}
.x65_c00458{left:262.914387pt;}
.x4f_c00458{left:264.001187pt;}
.x4b_c00458{left:272.422787pt;}
.x51_c00458{left:273.417187pt;}
.x33_c00458{left:276.061587pt;}
.x1b_c00458{left:281.869587pt;}
.x58_c00458{left:283.053187pt;}
.x26_c00458{left:284.535987pt;}
.x3d_c00458{left:292.081987pt;}
.x8_c00458{left:293.195187pt;}
.x77_c00458{left:301.537587pt;}
.x43_c00458{left:302.897187pt;}
.x27_c00458{left:311.701587pt;}
.x61_c00458{left:312.700387pt;}
.x89_c00458{left:314.275587pt;}
.x78_c00458{left:321.363987pt;}
.x3e_c00458{left:322.459587pt;}
.x13_c00458{left:332.117587pt;}
.x2b_c00458{left:342.611587pt;}
.x5d_c00458{left:350.667987pt;}
.x6e_c00458{left:351.803187pt;}
.x79_c00458{left:360.176387pt;}
.x4c_c00458{left:362.165187pt;}
.x52_c00458{left:370.621987pt;}
.x1c_c00458{left:372.465587pt;}
.x9_c00458{left:382.523987pt;}
.x75_c00458{left:389.321987pt;}
.x14_c00458{left:390.263587pt;}
.x34_c00458{left:391.671587pt;}
.x53_c00458{left:400.084387pt;}
.x82_c00458{left:402.953187pt;}
.xa_c00458{left:411.343987pt;}
.x4d_c00458{left:428.605187pt;}
.x44_c00458{left:430.307987pt;}
.x6a_c00458{left:432.151587pt;}
.x2c_c00458{left:439.094787pt;}
.x1d_c00458{left:440.493987pt;}
.x66_c00458{left:450.385187pt;}
.x45_c00458{left:459.651587pt;}
.x48_c00458{left:464.839187pt;}
.x35_c00458{left:469.969587pt;}
.x38_c00458{left:478.347187pt;}
.x59_c00458{left:480.107187pt;}
.x54_c00458{left:488.106387pt;}
.x3f_c00458{left:489.844387pt;}
.x36_c00458{left:499.110787pt;}
.x5e_c00458{left:500.272387pt;}
.xb_c00458{left:507.752387pt;}
.x1e_c00458{left:508.874387pt;}
.x15_c00458{left:509.886387pt;}
.x7d_c00458{left:517.634787pt;}
.x40_c00458{left:518.725987pt;}
.x2d_c00458{left:519.680787pt;}
.x1f_c00458{left:537.905587pt;}
.x16_c00458{left:539.273987pt;}
.x28_c00458{left:540.321187pt;}
.x7e_c00458{left:547.783587pt;}
.x2e_c00458{left:548.769187pt;}
.x86_c00458{left:557.401987pt;}
.x4e_c00458{left:558.295187pt;}
.x37_c00458{left:567.042387pt;}
.x5f_c00458{left:568.467987pt;}
.x6f_c00458{left:575.072387pt;}
.x46_c00458{left:576.269187pt;}
.x2f_c00458{left:577.479187pt;}
.x17_c00458{left:587.946787pt;}
.x7f_c00458{left:596.654387pt;}
.xc_c00458{left:598.071187pt;}
.x6b_c00458{left:607.126387pt;}
.x20_c00458{left:608.019587pt;}
.x73_c00458{left:615.679987pt;}
.x47_c00458{left:616.779987pt;}
.x41_c00458{left:618.671987pt;}
.x39_c00458{left:622.653987pt;}
.x70_c00458{left:625.364387pt;}
.x83_c00458{left:626.297187pt;}
.x2_c00458{left:629.971187pt;}
.x7a_c00458{left:634.797987pt;}
.x50_c00458{left:636.069587pt;}
.x30_c00458{left:639.048387pt;}
.x3_c00458{left:643.342787pt;}
.x80_c00458{left:647.021187pt;}
.x4_c00458{left:650.712787pt;}
.xd_c00458{left:657.972787pt;}
.x84_c00458{left:665.655187pt;}
.x87_c00458{left:678.014787pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ee8724c708c48469f011f9f5.woff2')format("woff");}.ff1_c00459{font-family:ff1_c00459;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00459;src:url('chunks/assets/font_99ae80afe6abcd5f1e0f2536.woff2')format("woff");}.ff2_c00459{font-family:ff2_c00459;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00459;src:url('chunks/assets/font_45df6a5a54b212c6693a3507.woff2')format("woff");}.ff3_c00459{font-family:ff3_c00459;line-height:0.666000;font-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_c00459{transform:matrix(0.038890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.038890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.038890,0.000000,0.000000,0.250000,0,0);}
.m55_c00459{transform:matrix(0.072935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072935,0.000000,0.000000,0.250000,0,0);}
.m51_c00459{transform:matrix(0.073810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073810,0.000000,0.000000,0.250000,0,0);}
.m72_c00459{transform:matrix(0.076923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076923,0.000000,0.000000,0.250000,0,0);}
.m54_c00459{transform:matrix(0.088250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088250,0.000000,0.000000,0.250000,0,0);}
.m56_c00459{transform:matrix(0.092592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092592,0.000000,0.000000,0.250000,0,0);}
.m2_c00459{transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);}
.m53_c00459{transform:matrix(0.128703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128703,0.000000,0.000000,0.250000,0,0);}
.m2c_c00459{transform:matrix(0.134072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134072,0.000000,0.000000,0.250000,0,0);}
.m92_c00459{transform:matrix(0.167442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167442,0.000000,0.000000,0.250000,0,0);}
.m4f_c00459{transform:matrix(0.202015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202015,0.000000,0.000000,0.250000,0,0);}
.m60_c00459{transform:matrix(0.206834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206834,0.000000,0.000000,0.250000,0,0);}
.mca_c00459{transform:matrix(0.216366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216366,0.000000,0.000000,0.250000,0,0);}
.m9_c00459{transform:matrix(0.220940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220940,0.000000,0.000000,0.250000,0,0);}
.mc4_c00459{transform:matrix(0.224364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224364,0.000000,0.000000,0.250000,0,0);}
.m4e_c00459{transform:matrix(0.240254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240254,0.000000,0.000000,0.250000,0,0);}
.m57_c00459{transform:matrix(0.247670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247670,0.000000,0.000000,0.250000,0,0);}
.m0_c00459{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00459{transform:matrix(0.250837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250837,0.000000,0.000000,0.250000,0,0);}
.m74_c00459{transform:matrix(0.251927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251927,0.000000,0.000000,0.250000,0,0);}
.m39_c00459{transform:matrix(0.252999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252999,0.000000,0.000000,0.250000,0,0);}
.m1a_c00459{transform:matrix(0.253531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253531,0.000000,0.000000,0.250000,0,0);}
.mbc_c00459{transform:matrix(0.255043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255043,0.000000,0.000000,0.250000,0,0);}
.m26_c00459{transform:matrix(0.255749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255749,0.000000,0.000000,0.250000,0,0);}
.mb6_c00459{transform:matrix(0.257860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257860,0.000000,0.000000,0.250000,0,0);}
.mce_c00459{transform:matrix(0.258434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258434,0.000000,0.000000,0.250000,0,0);}
.ma3_c00459{transform:matrix(0.264227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264227,0.000000,0.000000,0.250000,0,0);}
.m9d_c00459{transform:matrix(0.264643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264643,0.000000,0.000000,0.250000,0,0);}
.m17_c00459{transform:matrix(0.265782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265782,0.000000,0.000000,0.250000,0,0);}
.m91_c00459{transform:matrix(0.265958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265958,0.000000,0.000000,0.250000,0,0);}
.ma8_c00459{transform:matrix(0.266057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266057,0.000000,0.000000,0.250000,0,0);}
.m71_c00459{transform:matrix(0.266710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266710,0.000000,0.000000,0.250000,0,0);}
.m1c_c00459{transform:matrix(0.266768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266768,0.000000,0.000000,0.250000,0,0);}
.mb5_c00459{transform:matrix(0.266773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266773,0.000000,0.000000,0.250000,0,0);}
.mc1_c00459{transform:matrix(0.267056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267056,0.000000,0.000000,0.250000,0,0);}
.mc0_c00459{transform:matrix(0.268011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268011,0.000000,0.000000,0.250000,0,0);}
.m96_c00459{transform:matrix(0.269115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269115,0.000000,0.000000,0.250000,0,0);}
.m21_c00459{transform:matrix(0.269448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269448,0.000000,0.000000,0.250000,0,0);}
.mb0_c00459{transform:matrix(0.269558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269558,0.000000,0.000000,0.250000,0,0);}
.m73_c00459{transform:matrix(0.269650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269650,0.000000,0.000000,0.250000,0,0);}
.m37_c00459{transform:matrix(0.269715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269715,0.000000,0.000000,0.250000,0,0);}
.mbb_c00459{transform:matrix(0.269779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269779,0.000000,0.000000,0.250000,0,0);}
.mbd_c00459{transform:matrix(0.269915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269915,0.000000,0.000000,0.250000,0,0);}
.m62_c00459{transform:matrix(0.270028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270028,0.000000,0.000000,0.250000,0,0);}
.m82_c00459{transform:matrix(0.270403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270403,0.000000,0.000000,0.250000,0,0);}
.m20_c00459{transform:matrix(0.270687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270687,0.000000,0.000000,0.250000,0,0);}
.mba_c00459{transform:matrix(0.271501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271501,0.000000,0.000000,0.250000,0,0);}
.m22_c00459{transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);}
.md1_c00459{transform:matrix(0.272173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272173,0.000000,0.000000,0.250000,0,0);}
.m27_c00459{transform:matrix(0.273109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273109,0.000000,0.000000,0.250000,0,0);}
.m9a_c00459{transform:matrix(0.273172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273172,0.000000,0.000000,0.250000,0,0);}
.m30_c00459{transform:matrix(0.273180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273180,0.000000,0.000000,0.250000,0,0);}
.ma1_c00459{transform:matrix(0.273512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273512,0.000000,0.000000,0.250000,0,0);}
.m49_c00459{transform:matrix(0.274532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274532,0.000000,0.000000,0.250000,0,0);}
.m5a_c00459{transform:matrix(0.274871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274871,0.000000,0.000000,0.250000,0,0);}
.ma9_c00459{transform:matrix(0.275600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275600,0.000000,0.000000,0.250000,0,0);}
.m1_c00459{transform:matrix(0.276116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276116,0.000000,0.000000,0.250000,0,0);}
.m6_c00459{transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);}
.m88_c00459{transform:matrix(0.276335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276335,0.000000,0.000000,0.250000,0,0);}
.md_c00459{transform:matrix(0.276465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276465,0.000000,0.000000,0.250000,0,0);}
.ma4_c00459{transform:matrix(0.276604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276604,0.000000,0.000000,0.250000,0,0);}
.m41_c00459{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m2f_c00459{transform:matrix(0.277236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277236,0.000000,0.000000,0.250000,0,0);}
.mab_c00459{transform:matrix(0.277727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277727,0.000000,0.000000,0.250000,0,0);}
.mb4_c00459{transform:matrix(0.278153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278153,0.000000,0.000000,0.250000,0,0);}
.ma7_c00459{transform:matrix(0.278528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278528,0.000000,0.000000,0.250000,0,0);}
.m46_c00459{transform:matrix(0.278638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278638,0.000000,0.000000,0.250000,0,0);}
.m6d_c00459{transform:matrix(0.278810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278810,0.000000,0.000000,0.250000,0,0);}
.m50_c00459{transform:matrix(0.278920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278920,0.000000,0.000000,0.250000,0,0);}
.m9e_c00459{transform:matrix(0.278941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278941,0.000000,0.000000,0.250000,0,0);}
.m85_c00459{transform:matrix(0.279055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279055,0.000000,0.000000,0.250000,0,0);}
.m1f_c00459{transform:matrix(0.279348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279348,0.000000,0.000000,0.250000,0,0);}
.mae_c00459{transform:matrix(0.280330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280330,0.000000,0.000000,0.250000,0,0);}
.mc8_c00459{transform:matrix(0.280458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280458,0.000000,0.000000,0.250000,0,0);}
.m66_c00459{transform:matrix(0.281059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281059,0.000000,0.000000,0.250000,0,0);}
.m48_c00459{transform:matrix(0.281340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281340,0.000000,0.000000,0.250000,0,0);}
.m19_c00459{transform:matrix(0.282257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282257,0.000000,0.000000,0.250000,0,0);}
.md2_c00459{transform:matrix(0.282319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282319,0.000000,0.000000,0.250000,0,0);}
.m4a_c00459{transform:matrix(0.282592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282592,0.000000,0.000000,0.250000,0,0);}
.m69_c00459{transform:matrix(0.283226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283226,0.000000,0.000000,0.250000,0,0);}
.m89_c00459{transform:matrix(0.283879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283879,0.000000,0.000000,0.250000,0,0);}
.m10_c00459{transform:matrix(0.284164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284164,0.000000,0.000000,0.250000,0,0);}
.m83_c00459{transform:matrix(0.284505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284505,0.000000,0.000000,0.250000,0,0);}
.m98_c00459{transform:matrix(0.284954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284954,0.000000,0.000000,0.250000,0,0);}
.mbf_c00459{transform:matrix(0.286037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286037,0.000000,0.000000,0.250000,0,0);}
.m38_c00459{transform:matrix(0.286447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286447,0.000000,0.000000,0.250000,0,0);}
.m4d_c00459{transform:matrix(0.286585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286585,0.000000,0.000000,0.250000,0,0);}
.m68_c00459{transform:matrix(0.287277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287277,0.000000,0.000000,0.250000,0,0);}
.m12_c00459{transform:matrix(0.287392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287392,0.000000,0.000000,0.250000,0,0);}
.m7c_c00459{transform:matrix(0.287685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287685,0.000000,0.000000,0.250000,0,0);}
.m63_c00459{transform:matrix(0.288081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288081,0.000000,0.000000,0.250000,0,0);}
.m64_c00459{transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);}
.m86_c00459{transform:matrix(0.288692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288692,0.000000,0.000000,0.250000,0,0);}
.mcb_c00459{transform:matrix(0.288871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288871,0.000000,0.000000,0.250000,0,0);}
.m81_c00459{transform:matrix(0.288980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288980,0.000000,0.000000,0.250000,0,0);}
.mbe_c00459{transform:matrix(0.289200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289200,0.000000,0.000000,0.250000,0,0);}
.m70_c00459{transform:matrix(0.289866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289866,0.000000,0.000000,0.250000,0,0);}
.mc5_c00459{transform:matrix(0.290344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290344,0.000000,0.000000,0.250000,0,0);}
.m61_c00459{transform:matrix(0.290964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290964,0.000000,0.000000,0.250000,0,0);}
.m29_c00459{transform:matrix(0.291014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291014,0.000000,0.000000,0.250000,0,0);}
.m77_c00459{transform:matrix(0.291073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291073,0.000000,0.000000,0.250000,0,0);}
.m13_c00459{transform:matrix(0.292538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292538,0.000000,0.000000,0.250000,0,0);}
.m18_c00459{transform:matrix(0.292969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292969,0.000000,0.000000,0.250000,0,0);}
.m24_c00459{transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);}
.m35_c00459{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);}
.m2d_c00459{transform:matrix(0.295135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295135,0.000000,0.000000,0.250000,0,0);}
.m99_c00459{transform:matrix(0.295448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295448,0.000000,0.000000,0.250000,0,0);}
.mc6_c00459{transform:matrix(0.295725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295725,0.000000,0.000000,0.250000,0,0);}
.m3d_c00459{transform:matrix(0.296081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296081,0.000000,0.000000,0.250000,0,0);}
.me_c00459{transform:matrix(0.296354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296354,0.000000,0.000000,0.250000,0,0);}
.m1d_c00459{transform:matrix(0.296786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296786,0.000000,0.000000,0.250000,0,0);}
.mc2_c00459{transform:matrix(0.297043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297043,0.000000,0.000000,0.250000,0,0);}
.m2a_c00459{transform:matrix(0.297156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297156,0.000000,0.000000,0.250000,0,0);}
.m97_c00459{transform:matrix(0.297214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297214,0.000000,0.000000,0.250000,0,0);}
.m80_c00459{transform:matrix(0.297276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297276,0.000000,0.000000,0.250000,0,0);}
.mcc_c00459{transform:matrix(0.297541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297541,0.000000,0.000000,0.250000,0,0);}
.m44_c00459{transform:matrix(0.298784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298784,0.000000,0.000000,0.250000,0,0);}
.m2e_c00459{transform:matrix(0.298951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298951,0.000000,0.000000,0.250000,0,0);}
.mcd_c00459{transform:matrix(0.298952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298952,0.000000,0.000000,0.250000,0,0);}
.m90_c00459{transform:matrix(0.299108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299108,0.000000,0.000000,0.250000,0,0);}
.mb_c00459{transform:matrix(0.299926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299926,0.000000,0.000000,0.250000,0,0);}
.m9f_c00459{transform:matrix(0.300004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300004,0.000000,0.000000,0.250000,0,0);}
.m3e_c00459{transform:matrix(0.300841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300841,0.000000,0.000000,0.250000,0,0);}
.m76_c00459{transform:matrix(0.300870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300870,0.000000,0.000000,0.250000,0,0);}
.m78_c00459{transform:matrix(0.301316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301316,0.000000,0.000000,0.250000,0,0);}
.m7_c00459{transform:matrix(0.301469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301469,0.000000,0.000000,0.250000,0,0);}
.ma5_c00459{transform:matrix(0.301651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301651,0.000000,0.000000,0.250000,0,0);}
.m31_c00459{transform:matrix(0.302103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302103,0.000000,0.000000,0.250000,0,0);}
.mb2_c00459{transform:matrix(0.302104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302104,0.000000,0.000000,0.250000,0,0);}
.mb7_c00459{transform:matrix(0.302215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302215,0.000000,0.000000,0.250000,0,0);}
.m6e_c00459{transform:matrix(0.302595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302595,0.000000,0.000000,0.250000,0,0);}
.m65_c00459{transform:matrix(0.302616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302616,0.000000,0.000000,0.250000,0,0);}
.m4b_c00459{transform:matrix(0.302872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302872,0.000000,0.000000,0.250000,0,0);}
.mb8_c00459{transform:matrix(0.303057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303057,0.000000,0.000000,0.250000,0,0);}
.ma_c00459{transform:matrix(0.303306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303306,0.000000,0.000000,0.250000,0,0);}
.mf_c00459{transform:matrix(0.303723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303723,0.000000,0.000000,0.250000,0,0);}
.m7a_c00459{transform:matrix(0.304437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304437,0.000000,0.000000,0.250000,0,0);}
.m36_c00459{transform:matrix(0.304502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304502,0.000000,0.000000,0.250000,0,0);}
.m42_c00459{transform:matrix(0.304940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304940,0.000000,0.000000,0.250000,0,0);}
.m84_c00459{transform:matrix(0.305178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305178,0.000000,0.000000,0.250000,0,0);}
.mc3_c00459{transform:matrix(0.305239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305239,0.000000,0.000000,0.250000,0,0);}
.m4_c00459{transform:matrix(0.307494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307494,0.000000,0.000000,0.250000,0,0);}
.m8b_c00459{transform:matrix(0.307828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307828,0.000000,0.000000,0.250000,0,0);}
.m95_c00459{transform:matrix(0.307925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307925,0.000000,0.000000,0.250000,0,0);}
.md3_c00459{transform:matrix(0.308045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308045,0.000000,0.000000,0.250000,0,0);}
.md0_c00459{transform:matrix(0.308150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308150,0.000000,0.000000,0.250000,0,0);}
.m3c_c00459{transform:matrix(0.309390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309390,0.000000,0.000000,0.250000,0,0);}
.m33_c00459{transform:matrix(0.310801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310801,0.000000,0.000000,0.250000,0,0);}
.maf_c00459{transform:matrix(0.311023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311023,0.000000,0.000000,0.250000,0,0);}
.m67_c00459{transform:matrix(0.311834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311834,0.000000,0.000000,0.250000,0,0);}
.m5b_c00459{transform:matrix(0.311935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311935,0.000000,0.000000,0.250000,0,0);}
.m5f_c00459{transform:matrix(0.312367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312367,0.000000,0.000000,0.250000,0,0);}
.ma0_c00459{transform:matrix(0.312506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312506,0.000000,0.000000,0.250000,0,0);}
.m47_c00459{transform:matrix(0.312806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312806,0.000000,0.000000,0.250000,0,0);}
.mc_c00459{transform:matrix(0.313375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313375,0.000000,0.000000,0.250000,0,0);}
.m3a_c00459{transform:matrix(0.314474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314474,0.000000,0.000000,0.250000,0,0);}
.m1b_c00459{transform:matrix(0.314747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314747,0.000000,0.000000,0.250000,0,0);}
.mc7_c00459{transform:matrix(0.315021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315021,0.000000,0.000000,0.250000,0,0);}
.m45_c00459{transform:matrix(0.315108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315108,0.000000,0.000000,0.250000,0,0);}
.m11_c00459{transform:matrix(0.315139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315139,0.000000,0.000000,0.250000,0,0);}
.mac_c00459{transform:matrix(0.316358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316358,0.000000,0.000000,0.250000,0,0);}
.maa_c00459{transform:matrix(0.316850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316850,0.000000,0.000000,0.250000,0,0);}
.m7f_c00459{transform:matrix(0.317084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317084,0.000000,0.000000,0.250000,0,0);}
.m43_c00459{transform:matrix(0.317247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317247,0.000000,0.000000,0.250000,0,0);}
.m94_c00459{transform:matrix(0.318221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318221,0.000000,0.000000,0.250000,0,0);}
.m8d_c00459{transform:matrix(0.318393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318393,0.000000,0.000000,0.250000,0,0);}
.m14_c00459{transform:matrix(0.318883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318883,0.000000,0.000000,0.250000,0,0);}
.m93_c00459{transform:matrix(0.318968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318968,0.000000,0.000000,0.250000,0,0);}
.m2b_c00459{transform:matrix(0.319443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319443,0.000000,0.000000,0.250000,0,0);}
.m5c_c00459{transform:matrix(0.320060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320060,0.000000,0.000000,0.250000,0,0);}
.mb1_c00459{transform:matrix(0.320522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320522,0.000000,0.000000,0.250000,0,0);}
.m3f_c00459{transform:matrix(0.320721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320721,0.000000,0.000000,0.250000,0,0);}
.mcf_c00459{transform:matrix(0.321624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321624,0.000000,0.000000,0.250000,0,0);}
.mb3_c00459{transform:matrix(0.321666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321666,0.000000,0.000000,0.250000,0,0);}
.m4c_c00459{transform:matrix(0.321700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321700,0.000000,0.000000,0.250000,0,0);}
.mb9_c00459{transform:matrix(0.321844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321844,0.000000,0.000000,0.250000,0,0);}
.m40_c00459{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m79_c00459{transform:matrix(0.324670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324670,0.000000,0.000000,0.250000,0,0);}
.m1e_c00459{transform:matrix(0.325351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325351,0.000000,0.000000,0.250000,0,0);}
.m5_c00459{transform:matrix(0.328179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328179,0.000000,0.000000,0.250000,0,0);}
.m58_c00459{transform:matrix(0.328213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328213,0.000000,0.000000,0.250000,0,0);}
.mad_c00459{transform:matrix(0.332679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332679,0.000000,0.000000,0.250000,0,0);}
.m28_c00459{transform:matrix(0.333549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333549,0.000000,0.000000,0.250000,0,0);}
.m6c_c00459{transform:matrix(0.333729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333729,0.000000,0.000000,0.250000,0,0);}
.m6a_c00459{transform:matrix(0.334925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334925,0.000000,0.000000,0.250000,0,0);}
.m9b_c00459{transform:matrix(0.336289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336289,0.000000,0.000000,0.250000,0,0);}
.m16_c00459{transform:matrix(0.336513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336513,0.000000,0.000000,0.250000,0,0);}
.m7e_c00459{transform:matrix(0.337184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337184,0.000000,0.000000,0.250000,0,0);}
.m5d_c00459{transform:matrix(0.338592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338592,0.000000,0.000000,0.250000,0,0);}
.m34_c00459{transform:matrix(0.341892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341892,0.000000,0.000000,0.250000,0,0);}
.m25_c00459{transform:matrix(0.343636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343636,0.000000,0.000000,0.250000,0,0);}
.m8_c00459{transform:matrix(0.344004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344004,0.000000,0.000000,0.250000,0,0);}
.m8c_c00459{transform:matrix(0.344194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344194,0.000000,0.000000,0.250000,0,0);}
.m6f_c00459{transform:matrix(0.344792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344792,0.000000,0.000000,0.250000,0,0);}
.m5e_c00459{transform:matrix(0.346737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346737,0.000000,0.000000,0.250000,0,0);}
.ma6_c00459{transform:matrix(0.346926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346926,0.000000,0.000000,0.250000,0,0);}
.m9c_c00459{transform:matrix(0.348306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348306,0.000000,0.000000,0.250000,0,0);}
.m59_c00459{transform:matrix(0.349884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349884,0.000000,0.000000,0.250000,0,0);}
.m23_c00459{transform:matrix(0.350605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350605,0.000000,0.000000,0.250000,0,0);}
.m7d_c00459{transform:matrix(0.351614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351614,0.000000,0.000000,0.250000,0,0);}
.m75_c00459{transform:matrix(0.353730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353730,0.000000,0.000000,0.250000,0,0);}
.m15_c00459{transform:matrix(0.354976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354976,0.000000,0.000000,0.250000,0,0);}
.m3_c00459{transform:matrix(0.357064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357064,0.000000,0.000000,0.250000,0,0);}
.md4_c00459{transform:matrix(0.358327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358327,0.000000,0.000000,0.250000,0,0);}
.m8a_c00459{transform:matrix(0.361256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361256,0.000000,0.000000,0.250000,0,0);}
.m8e_c00459{transform:matrix(0.362380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362380,0.000000,0.000000,0.250000,0,0);}
.ma2_c00459{transform:matrix(0.365021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365021,0.000000,0.000000,0.250000,0,0);}
.m6b_c00459{transform:matrix(0.365568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365568,0.000000,0.000000,0.250000,0,0);}
.mc9_c00459{transform:matrix(0.366449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366449,0.000000,0.000000,0.250000,0,0);}
.m7b_c00459{transform:matrix(0.390802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390802,0.000000,0.000000,0.250000,0,0);}
.m87_c00459{transform:matrix(0.391460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391460,0.000000,0.000000,0.250000,0,0);}
.m32_c00459{transform:matrix(0.403692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403692,0.000000,0.000000,0.250000,0,0);}
.m3b_c00459{transform:matrix(0.409902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409902,0.000000,0.000000,0.250000,0,0);}
.v0_c00459{vertical-align:0.000000px;}
.v1_c00459{vertical-align:7.108200px;}
.lsf_c00459{letter-spacing:-2.938327px;}
.ls5_c00459{letter-spacing:-2.661127px;}
.lsd_c00459{letter-spacing:-1.822590px;}
.lsb_c00459{letter-spacing:-1.656270px;}
.ls1c_c00459{letter-spacing:-1.476090px;}
.ls10_c00459{letter-spacing:-1.240470px;}
.ls1_c00459{letter-spacing:0.000000px;}
.ls16_c00459{letter-spacing:0.205920px;}
.ls13_c00459{letter-spacing:0.319335px;}
.ls1b_c00459{letter-spacing:1.842588px;}
.ls1d_c00459{letter-spacing:2.387880px;}
.ls18_c00459{letter-spacing:2.589602px;}
.ls8_c00459{letter-spacing:2.772000px;}
.ls11_c00459{letter-spacing:3.018478px;}
.ls0_c00459{letter-spacing:3.330210px;}
.ls7_c00459{letter-spacing:3.484810px;}
.ls19_c00459{letter-spacing:3.494700px;}
.lsa_c00459{letter-spacing:3.564000px;}
.ls14_c00459{letter-spacing:3.603610px;}
.lsc_c00459{letter-spacing:3.643200px;}
.ls9_c00459{letter-spacing:3.722400px;}
.ls1a_c00459{letter-spacing:3.755981px;}
.ls4_c00459{letter-spacing:3.801610px;}
.ls2_c00459{letter-spacing:3.920400px;}
.ls6_c00459{letter-spacing:4.068900px;}
.ls15_c00459{letter-spacing:4.118400px;}
.ls3_c00459{letter-spacing:31.363200px;}
.ls12_c00459{letter-spacing:55.598598px;}
.ls17_c00459{letter-spacing:61.300998px;}
.lse_c00459{letter-spacing:64.152198px;}
.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:-22.338260px;}
.ws0_c00459{word-spacing:-18.216000px;}
.ws2_c00459{word-spacing:0.000000px;}
._0_c00459{margin-left:-8.379360px;}
._1_c00459{width:2.248098px;}
.fc0_c00459{color:transparent;}
.fsd_c00459{font-size:22.176000px;}
.fs2_c00459{font-size:25.146000px;}
.fs0_c00459{font-size:27.720000px;}
.fs4_c00459{font-size:31.363200px;}
.fs14_c00459{font-size:35.442000px;}
.fs15_c00459{font-size:37.818000px;}
.fs1d_c00459{font-size:42.174000px;}
.fs1b_c00459{font-size:44.946198px;}
.fsc_c00459{font-size:47.322000px;}
.fs11_c00459{font-size:52.074000px;}
.fs1e_c00459{font-size:53.064000px;}
.fsf_c00459{font-size:54.648000px;}
.fs9_c00459{font-size:55.440000px;}
.fs16_c00459{font-size:55.598598px;}
.fs10_c00459{font-size:57.816198px;}
.fs19_c00459{font-size:61.300998px;}
.fs12_c00459{font-size:64.152198px;}
.fs1_c00459{font-size:67.320000px;}
.fs1a_c00459{font-size:68.508000px;}
.fs7_c00459{font-size:69.696198px;}
.fs1c_c00459{font-size:69.894000px;}
.fsb_c00459{font-size:71.280000px;}
.fs17_c00459{font-size:72.072198px;}
.fse_c00459{font-size:72.864000px;}
.fsa_c00459{font-size:74.448000px;}
.fs8_c00459{font-size:74.844000px;}
.fs5_c00459{font-size:76.032198px;}
.fs3_c00459{font-size:78.408000px;}
.fs6_c00459{font-size:81.378000px;}
.fs18_c00459{font-size:82.368000px;}
.fs13_c00459{font-size:83.952198px;}
.y0_c00459{bottom:0.000000px;}
.y24_c00459{bottom:21.290985px;}
.y23_c00459{bottom:40.541535px;}
.y1_c00459{bottom:76.500000px;}
.y22_c00459{bottom:115.741935px;}
.y21_c00459{bottom:148.882185px;}
.y20_c00459{bottom:184.522185px;}
.y1f_c00459{bottom:218.023785px;}
.y1e_c00459{bottom:250.461135px;}
.y1d_c00459{bottom:281.819385px;}
.y1c_c00459{bottom:314.256735px;}
.y1b_c00459{bottom:342.050985px;}
.y1a_c00459{bottom:345.619935px;}
.y19_c00459{bottom:378.052335px;}
.y18_c00459{bottom:442.199385px;}
.y17_c00459{bottom:474.636735px;}
.y16_c00459{bottom:506.712735px;}
.y15_c00459{bottom:538.783785px;}
.y14_c00459{bottom:570.864735px;}
.y12_c00459{bottom:602.935785px;}
.y13_c00459{bottom:607.930335px;}
.y11_c00459{bottom:633.591135px;}
.yf_c00459{bottom:666.379935px;}
.y10_c00459{bottom:668.874735px;}
.ye_c00459{bottom:697.386735px;}
.yd_c00459{bottom:729.819135px;}
.yc_c00459{bottom:772.587135px;}
.yb_c00459{bottom:779.353785px;}
.ya_c00459{bottom:792.896985px;}
.y2_c00459{bottom:797.173785px;}
.y9_c00459{bottom:825.329385px;}
.y8_c00459{bottom:857.766735px;}
.y7_c00459{bottom:889.842735px;}
.y6_c00459{bottom:922.270185px;}
.y5_c00459{bottom:1050.930585px;}
.y4_c00459{bottom:1061.266185px;}
.y3_c00459{bottom:1074.096585px;}
.h6_c00459{height:20.887891px;}
.hf_c00459{height:23.128875px;}
.h4_c00459{height:26.226492px;}
.h2_c00459{height:28.911094px;}
.h15_c00459{height:36.964898px;}
.h17_c00459{height:37.028666px;}
.h16_c00459{height:37.116299px;}
.h1a_c00459{height:40.826465px;}
.h13_c00459{height:42.725364px;}
.h1e_c00459{height:43.986164px;}
.h1c_c00459{height:44.112235px;}
.he_c00459{height:46.443955px;}
.h1f_c00459{height:52.079414px;}
.h12_c00459{height:54.311555px;}
.hb_c00459{height:54.411328px;}
.h11_c00459{height:60.300488px;}
.h3_c00459{height:66.070898px;}
.h1b_c00459{height:71.451703px;}
.h10_c00459{height:71.512031px;}
.h9_c00459{height:72.690957px;}
.h1d_c00459{height:72.897258px;}
.hc_c00459{height:73.066641px;}
.ha_c00459{height:73.455293px;}
.hd_c00459{height:74.342813px;}
.h7_c00459{height:74.621444px;}
.h18_c00459{height:75.169050px;}
.h5_c00459{height:76.953164px;}
.h8_c00459{height:79.868057px;}
.h19_c00459{height:80.839688px;}
.h14_c00459{height:87.559519px;}
.h1_c00459{height:1110.000000px;}
.h0_c00459{height:1263.000000px;}
.w1_c00459{width:769.500000px;}
.w0_c00459{width:892.500000px;}
.x0_c00459{left:0.000000px;}
.x2_c00459{left:51.228885px;}
.x1_c00459{left:61.500000px;}
.x77_c00459{left:87.136185px;}
.x4b_c00459{left:88.398435px;}
.x11_c00459{left:89.982435px;}
.x6_c00459{left:91.284285px;}
.x35_c00459{left:93.482085px;}
.x72_c00459{left:118.603335px;}
.x51_c00459{left:120.929835px;}
.x7_c00459{left:134.146335px;}
.x3a_c00459{left:135.933285px;}
.x78_c00459{left:140.531835px;}
.x61_c00459{left:142.957335px;}
.x2b_c00459{left:145.937235px;}
.x4c_c00459{left:153.515685px;}
.x1a_c00459{left:155.074935px;}
.x6d_c00459{left:163.762185px;}
.x12_c00459{left:166.049085px;}
.x3b_c00459{left:167.662785px;}
.x33_c00459{left:169.078485px;}
.x5c_c00459{left:174.909585px;}
.x8_c00459{left:177.255885px;}
.x66_c00459{left:184.854135px;}
.x21_c00459{left:188.343885px;}
.x6e_c00459{left:195.273885px;}
.x62_c00459{left:196.506435px;}
.x1b_c00459{left:198.402285px;}
.x48_c00459{left:199.664535px;}
.x2c_c00459{left:201.500985px;}
.x36_c00459{left:210.247635px;}
.x52_c00459{left:218.796285px;}
.x57_c00459{left:220.038735px;}
.x67_c00459{left:229.493235px;}
.x73_c00459{left:230.968335px;}
.x3c_c00459{left:232.057335px;}
.x2d_c00459{left:234.309585px;}
.x4d_c00459{left:243.110685px;}
.x7b_c00459{left:251.783085px;}
.x9_c00459{left:253.921485px;}
.x84_c00459{left:262.410735px;}
.x5d_c00459{left:264.024435px;}
.x13_c00459{left:265.296585px;}
.x29_c00459{left:268.118085px;}
.x1c_c00459{left:274.756035px;}
.x7c_c00459{left:286.596435px;}
.xa_c00459{left:288.368535px;}
.x6f_c00459{left:296.580585px;}
.x14_c00459{left:298.095285px;}
.x49_c00459{left:299.139735px;}
.x34_c00459{left:300.208935px;}
.x58_c00459{left:309.495135px;}
.x74_c00459{left:317.563635px;}
.x7d_c00459{left:319.108035px;}
.x3d_c00459{left:323.038335px;}
.x81_c00459{left:329.710935px;}
.xb_c00459{left:331.062285px;}
.x3e_c00459{left:333.091785px;}
.x59_c00459{left:340.373235px;}
.x15_c00459{left:343.392735px;}
.x68_c00459{left:352.614585px;}
.x6b_c00459{left:354.842085px;}
.x1d_c00459{left:363.999585px;}
.x22_c00459{left:365.123235px;}
.x53_c00459{left:366.890385px;}
.x2e_c00459{left:375.627135px;}
.x3f_c00459{left:386.304285px;}
.x37_c00459{left:388.224885px;}
.x87_c00459{left:396.224085px;}
.x69_c00459{left:397.525935px;}
.x23_c00459{left:398.619885px;}
.x4e_c00459{left:408.406035px;}
.x2f_c00459{left:409.643535px;}
.xc_c00459{left:411.846285px;}
.x5e_c00459{left:419.949435px;}
.x5a_c00459{left:421.315635px;}
.x40_c00459{left:430.146435px;}
.x38_c00459{left:432.834285px;}
.x1e_c00459{left:442.278885px;}
.x6c_c00459{left:452.787735px;}
.xd_c00459{left:454.030185px;}
.x16_c00459{left:464.910285px;}
.x24_c00459{left:475.834935px;}
.xe_c00459{left:486.106185px;}
.x17_c00459{left:496.436835px;}
.x1f_c00459{left:498.382185px;}
.x7e_c00459{left:505.742835px;}
.x30_c00459{left:508.188135px;}
.x86_c00459{left:509.584035px;}
.x25_c00459{left:520.785885px;}
.x70_c00459{left:529.235535px;}
.x63_c00459{left:530.750235px;}
.x18_c00459{left:533.393535px;}
.x7f_c00459{left:540.457185px;}
.x54_c00459{left:542.036235px;}
.x75_c00459{left:551.322435px;}
.x26_c00459{left:552.391635px;}
.x4f_c00459{left:553.648935px;}
.x71_c00459{left:562.024335px;}
.x5f_c00459{left:563.939985px;}
.x20_c00459{left:574.844835px;}
.x82_c00459{left:583.046985px;}
.xf_c00459{left:585.541785px;}
.x85_c00459{left:586.591185px;}
.x41_c00459{left:595.560585px;}
.x27_c00459{left:597.723735px;}
.x64_c00459{left:607.801935px;}
.x5b_c00459{left:608.915685px;}
.x19_c00459{left:620.211585px;}
.x42_c00459{left:629.067135px;}
.x43_c00459{left:631.200585px;}
.x79_c00459{left:639.778935px;}
.x39_c00459{left:644.026035px;}
.x83_c00459{left:651.644085px;}
.x50_c00459{left:653.381535px;}
.x76_c00459{left:661.034235px;}
.x65_c00459{left:662.509335px;}
.x31_c00459{left:664.514085px;}
.x6a_c00459{left:673.562685px;}
.x44_c00459{left:681.670785px;}
.x32_c00459{left:684.625935px;}
.x45_c00459{left:685.888185px;}
.x46_c00459{left:693.407235px;}
.x60_c00459{left:695.699085px;}
.x28_c00459{left:697.283085px;}
.x3_c00459{left:698.287935px;}
.x4_c00459{left:699.812535px;}
.x80_c00459{left:701.881635px;}
.x2a_c00459{left:706.628685px;}
.x10_c00459{left:708.559185px;}
.x5_c00459{left:712.197435px;}
.x7a_c00459{left:717.919635px;}
.x47_c00459{left:719.038335px;}
.x4a_c00459{left:720.746085px;}
.x55_c00459{left:754.064535px;}
.x56_c00459{left:765.211935px;}
@media print{
.v0_c00459{vertical-align:0.000000pt;}
.v1_c00459{vertical-align:6.318400pt;}
.lsf_c00459{letter-spacing:-2.611846pt;}
.ls5_c00459{letter-spacing:-2.365446pt;}
.lsd_c00459{letter-spacing:-1.620080pt;}
.lsb_c00459{letter-spacing:-1.472240pt;}
.ls1c_c00459{letter-spacing:-1.312080pt;}
.ls10_c00459{letter-spacing:-1.102640pt;}
.ls1_c00459{letter-spacing:0.000000pt;}
.ls16_c00459{letter-spacing:0.183040pt;}
.ls13_c00459{letter-spacing:0.283854pt;}
.ls1b_c00459{letter-spacing:1.637856pt;}
.ls1d_c00459{letter-spacing:2.122560pt;}
.ls18_c00459{letter-spacing:2.301869pt;}
.ls8_c00459{letter-spacing:2.464000pt;}
.ls11_c00459{letter-spacing:2.683092pt;}
.ls0_c00459{letter-spacing:2.960187pt;}
.ls7_c00459{letter-spacing:3.097609pt;}
.ls19_c00459{letter-spacing:3.106400pt;}
.lsa_c00459{letter-spacing:3.168000pt;}
.ls14_c00459{letter-spacing:3.203209pt;}
.lsc_c00459{letter-spacing:3.238400pt;}
.ls9_c00459{letter-spacing:3.308800pt;}
.ls1a_c00459{letter-spacing:3.338650pt;}
.ls4_c00459{letter-spacing:3.379209pt;}
.ls2_c00459{letter-spacing:3.484800pt;}
.ls6_c00459{letter-spacing:3.616800pt;}
.ls15_c00459{letter-spacing:3.660800pt;}
.ls3_c00459{letter-spacing:27.878400pt;}
.ls12_c00459{letter-spacing:49.420976pt;}
.ls17_c00459{letter-spacing:54.489776pt;}
.lse_c00459{letter-spacing:57.024176pt;}
.ws1_c00459{word-spacing:-19.856231pt;}
.ws0_c00459{word-spacing:-16.192000pt;}
.ws2_c00459{word-spacing:0.000000pt;}
._0_c00459{margin-left:-7.448320pt;}
._1_c00459{width:1.998309pt;}
.fsd_c00459{font-size:19.712000pt;}
.fs2_c00459{font-size:22.352000pt;}
.fs0_c00459{font-size:24.640000pt;}
.fs4_c00459{font-size:27.878400pt;}
.fs14_c00459{font-size:31.504000pt;}
.fs15_c00459{font-size:33.616000pt;}
.fs1d_c00459{font-size:37.488000pt;}
.fs1b_c00459{font-size:39.952176pt;}
.fsc_c00459{font-size:42.064000pt;}
.fs11_c00459{font-size:46.288000pt;}
.fs1e_c00459{font-size:47.168000pt;}
.fsf_c00459{font-size:48.576000pt;}
.fs9_c00459{font-size:49.280000pt;}
.fs16_c00459{font-size:49.420976pt;}
.fs10_c00459{font-size:51.392176pt;}
.fs19_c00459{font-size:54.489776pt;}
.fs12_c00459{font-size:57.024176pt;}
.fs1_c00459{font-size:59.840000pt;}
.fs1a_c00459{font-size:60.896000pt;}
.fs7_c00459{font-size:61.952176pt;}
.fs1c_c00459{font-size:62.128000pt;}
.fsb_c00459{font-size:63.360000pt;}
.fs17_c00459{font-size:64.064176pt;}
.fse_c00459{font-size:64.768000pt;}
.fsa_c00459{font-size:66.176000pt;}
.fs8_c00459{font-size:66.528000pt;}
.fs5_c00459{font-size:67.584176pt;}
.fs3_c00459{font-size:69.696000pt;}
.fs6_c00459{font-size:72.336000pt;}
.fs18_c00459{font-size:73.216000pt;}
.fs13_c00459{font-size:74.624176pt;}
.y0_c00459{bottom:0.000000pt;}
.y24_c00459{bottom:18.925320pt;}
.y23_c00459{bottom:36.036920pt;}
.y1_c00459{bottom:68.000000pt;}
.y22_c00459{bottom:102.881720pt;}
.y21_c00459{bottom:132.339720pt;}
.y20_c00459{bottom:164.019720pt;}
.y1f_c00459{bottom:193.798920pt;}
.y1e_c00459{bottom:222.632120pt;}
.y1d_c00459{bottom:250.506120pt;}
.y1c_c00459{bottom:279.339320pt;}
.y1b_c00459{bottom:304.045320pt;}
.y1a_c00459{bottom:307.217720pt;}
.y19_c00459{bottom:336.046520pt;}
.y18_c00459{bottom:393.066120pt;}
.y17_c00459{bottom:421.899320pt;}
.y16_c00459{bottom:450.411320pt;}
.y15_c00459{bottom:478.918920pt;}
.y14_c00459{bottom:507.435320pt;}
.y12_c00459{bottom:535.942920pt;}
.y13_c00459{bottom:540.382520pt;}
.y11_c00459{bottom:563.192120pt;}
.yf_c00459{bottom:592.337720pt;}
.y10_c00459{bottom:594.555320pt;}
.ye_c00459{bottom:619.899320pt;}
.yd_c00459{bottom:648.728120pt;}
.yc_c00459{bottom:686.744120pt;}
.yb_c00459{bottom:692.758920pt;}
.ya_c00459{bottom:704.797320pt;}
.y2_c00459{bottom:708.598920pt;}
.y9_c00459{bottom:733.626120pt;}
.y8_c00459{bottom:762.459320pt;}
.y7_c00459{bottom:790.971320pt;}
.y6_c00459{bottom:819.795720pt;}
.y5_c00459{bottom:934.160520pt;}
.y4_c00459{bottom:943.347720pt;}
.y3_c00459{bottom:954.752520pt;}
.h6_c00459{height:18.567014pt;}
.hf_c00459{height:20.559000pt;}
.h4_c00459{height:23.312438pt;}
.h2_c00459{height:25.698750pt;}
.h15_c00459{height:32.857688pt;}
.h17_c00459{height:32.914370pt;}
.h16_c00459{height:32.992266pt;}
.h1a_c00459{height:36.290191pt;}
.h13_c00459{height:37.978101pt;}
.h1e_c00459{height:39.098813pt;}
.h1c_c00459{height:39.210876pt;}
.he_c00459{height:41.283516pt;}
.h1f_c00459{height:46.292813pt;}
.h12_c00459{height:48.276938pt;}
.hb_c00459{height:48.365625pt;}
.h11_c00459{height:53.600434pt;}
.h3_c00459{height:58.729688pt;}
.h1b_c00459{height:63.512625pt;}
.h10_c00459{height:63.566250pt;}
.h9_c00459{height:64.614184pt;}
.h1d_c00459{height:64.797562pt;}
.hc_c00459{height:64.948125pt;}
.ha_c00459{height:65.293594pt;}
.hd_c00459{height:66.082500pt;}
.h7_c00459{height:66.330173pt;}
.h18_c00459{height:66.816934pt;}
.h5_c00459{height:68.402813pt;}
.h8_c00459{height:70.993828pt;}
.h19_c00459{height:71.857500pt;}
.h14_c00459{height:77.830684pt;}
.h1_c00459{height:986.666667pt;}
.h0_c00459{height:1122.666667pt;}
.w1_c00459{width:684.000000pt;}
.w0_c00459{width:793.333333pt;}
.x0_c00459{left:0.000000pt;}
.x2_c00459{left:45.536787pt;}
.x1_c00459{left:54.666667pt;}
.x77_c00459{left:77.454387pt;}
.x4b_c00459{left:78.576387pt;}
.x11_c00459{left:79.984387pt;}
.x6_c00459{left:81.141587pt;}
.x35_c00459{left:83.095187pt;}
.x72_c00459{left:105.425187pt;}
.x51_c00459{left:107.493187pt;}
.x7_c00459{left:119.241187pt;}
.x3a_c00459{left:120.829587pt;}
.x78_c00459{left:124.917187pt;}
.x61_c00459{left:127.073187pt;}
.x2b_c00459{left:129.721987pt;}
.x4c_c00459{left:136.458387pt;}
.x1a_c00459{left:137.844387pt;}
.x6d_c00459{left:145.566387pt;}
.x12_c00459{left:147.599187pt;}
.x3b_c00459{left:149.033587pt;}
.x33_c00459{left:150.291987pt;}
.x5c_c00459{left:155.475187pt;}
.x8_c00459{left:157.560787pt;}
.x66_c00459{left:164.314787pt;}
.x21_c00459{left:167.416787pt;}
.x6e_c00459{left:173.576787pt;}
.x62_c00459{left:174.672387pt;}
.x1b_c00459{left:176.357587pt;}
.x48_c00459{left:177.479587pt;}
.x2c_c00459{left:179.111987pt;}
.x36_c00459{left:186.886787pt;}
.x52_c00459{left:194.485587pt;}
.x57_c00459{left:195.589987pt;}
.x67_c00459{left:203.993987pt;}
.x73_c00459{left:205.305187pt;}
.x3c_c00459{left:206.273187pt;}
.x2d_c00459{left:208.275187pt;}
.x4d_c00459{left:216.098387pt;}
.x7b_c00459{left:223.807187pt;}
.x9_c00459{left:225.707987pt;}
.x84_c00459{left:233.253987pt;}
.x5d_c00459{left:234.688387pt;}
.x13_c00459{left:235.819187pt;}
.x29_c00459{left:238.327187pt;}
.x1c_c00459{left:244.227587pt;}
.x7c_c00459{left:254.752387pt;}
.xa_c00459{left:256.327587pt;}
.x6f_c00459{left:263.627187pt;}
.x14_c00459{left:264.973587pt;}
.x49_c00459{left:265.901987pt;}
.x34_c00459{left:266.852387pt;}
.x58_c00459{left:275.106787pt;}
.x74_c00459{left:282.278787pt;}
.x7d_c00459{left:283.651587pt;}
.x3d_c00459{left:287.145187pt;}
.x81_c00459{left:293.076387pt;}
.xb_c00459{left:294.277587pt;}
.x3e_c00459{left:296.081587pt;}
.x59_c00459{left:302.553987pt;}
.x15_c00459{left:305.237987pt;}
.x68_c00459{left:313.435187pt;}
.x6b_c00459{left:315.415187pt;}
.x1d_c00459{left:323.555187pt;}
.x22_c00459{left:324.553987pt;}
.x53_c00459{left:326.124787pt;}
.x2e_c00459{left:333.890787pt;}
.x3f_c00459{left:343.381587pt;}
.x37_c00459{left:345.088787pt;}
.x87_c00459{left:352.199187pt;}
.x69_c00459{left:353.356387pt;}
.x23_c00459{left:354.328787pt;}
.x4e_c00459{left:363.027587pt;}
.x2f_c00459{left:364.127587pt;}
.xc_c00459{left:366.085587pt;}
.x5e_c00459{left:373.288387pt;}
.x5a_c00459{left:374.502787pt;}
.x40_c00459{left:382.352387pt;}
.x38_c00459{left:384.741587pt;}
.x1e_c00459{left:393.136787pt;}
.x6c_c00459{left:402.477987pt;}
.xd_c00459{left:403.582387pt;}
.x16_c00459{left:413.253587pt;}
.x24_c00459{left:422.964387pt;}
.xe_c00459{left:432.094387pt;}
.x17_c00459{left:441.277187pt;}
.x1f_c00459{left:443.006387pt;}
.x7e_c00459{left:449.549187pt;}
.x30_c00459{left:451.722787pt;}
.x86_c00459{left:452.963587pt;}
.x25_c00459{left:462.920787pt;}
.x70_c00459{left:470.431587pt;}
.x63_c00459{left:471.777987pt;}
.x18_c00459{left:474.127587pt;}
.x7f_c00459{left:480.406387pt;}
.x54_c00459{left:481.809987pt;}
.x75_c00459{left:490.064387pt;}
.x26_c00459{left:491.014787pt;}
.x4f_c00459{left:492.132387pt;}
.x71_c00459{left:499.577187pt;}
.x5f_c00459{left:501.279987pt;}
.x20_c00459{left:510.973187pt;}
.x82_c00459{left:518.263987pt;}
.xf_c00459{left:520.481587pt;}
.x85_c00459{left:521.414387pt;}
.x41_c00459{left:529.387187pt;}
.x27_c00459{left:531.309987pt;}
.x64_c00459{left:540.268387pt;}
.x5b_c00459{left:541.258387pt;}
.x19_c00459{left:551.299187pt;}
.x42_c00459{left:559.170787pt;}
.x43_c00459{left:561.067187pt;}
.x79_c00459{left:568.692387pt;}
.x39_c00459{left:572.467587pt;}
.x83_c00459{left:579.239187pt;}
.x50_c00459{left:580.783587pt;}
.x76_c00459{left:587.585987pt;}
.x65_c00459{left:588.897187pt;}
.x31_c00459{left:590.679187pt;}
.x6a_c00459{left:598.722387pt;}
.x44_c00459{left:605.929587pt;}
.x32_c00459{left:608.556387pt;}
.x45_c00459{left:609.678387pt;}
.x46_c00459{left:616.361987pt;}
.x60_c00459{left:618.399187pt;}
.x28_c00459{left:619.807187pt;}
.x3_c00459{left:620.700387pt;}
.x4_c00459{left:622.055587pt;}
.x80_c00459{left:623.894787pt;}
.x2a_c00459{left:628.114387pt;}
.x10_c00459{left:629.830387pt;}
.x5_c00459{left:633.064387pt;}
.x7a_c00459{left:638.150787pt;}
.x47_c00459{left:639.145187pt;}
.x4a_c00459{left:640.663187pt;}
.x55_c00459{left:670.279587pt;}
.x56_c00459{left:680.188387pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ccf17b61cbb6b93b1fef2ff1.woff2')format("woff");}.ff1_c00460{font-family:ff1_c00460;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00460;src:url('chunks/assets/font_823b7dcdf1ae0b253e89df51.woff2')format("woff");}.ff2_c00460{font-family:ff2_c00460;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00460;src:url('chunks/assets/font_4a36092ffedcddee43e5534a.woff2')format("woff");}.ff3_c00460{font-family:ff3_c00460;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00460;src:url('chunks/assets/font_53f7e534faad0568cccad96c.woff2')format("woff");}.ff4_c00460{font-family:ff4_c00460;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mcb_c00460{transform:matrix(0.116168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116168,0.000000,0.000000,0.250000,0,0);}
.m89_c00460{transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);}
.mb_c00460{transform:matrix(0.155364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155364,0.000000,0.000000,0.250000,0,0);}
.m6a_c00460{transform:matrix(0.156177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156177,0.000000,0.000000,0.250000,0,0);}
.maf_c00460{transform:matrix(0.175064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175064,0.000000,0.000000,0.250000,0,0);}
.m5_c00460{transform:matrix(0.193660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193660,0.000000,0.000000,0.250000,0,0);}
.m14_c00460{transform:matrix(0.201796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201796,0.000000,0.000000,0.250000,0,0);}
.mc9_c00460{transform:matrix(0.203772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203772,0.000000,0.000000,0.250000,0,0);}
.mc7_c00460{transform:matrix(0.215186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215186,0.000000,0.000000,0.250000,0,0);}
.mca_c00460{transform:matrix(0.222611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222611,0.000000,0.000000,0.250000,0,0);}
.m96_c00460{transform:matrix(0.238626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238626,0.000000,0.000000,0.250000,0,0);}
.m32_c00460{transform:matrix(0.249037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249037,0.000000,0.000000,0.250000,0,0);}
.m0_c00460{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m47_c00460{transform:matrix(0.250102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250102,0.000000,0.000000,0.250000,0,0);}
.m3a_c00460{transform:matrix(0.250557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250557,0.000000,0.000000,0.250000,0,0);}
.m81_c00460{transform:matrix(0.251641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251641,0.000000,0.000000,0.250000,0,0);}
.mb4_c00460{transform:matrix(0.253335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253335,0.000000,0.000000,0.250000,0,0);}
.m1b_c00460{transform:matrix(0.253415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253415,0.000000,0.000000,0.250000,0,0);}
.m88_c00460{transform:matrix(0.255749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255749,0.000000,0.000000,0.250000,0,0);}
.m3c_c00460{transform:matrix(0.258314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258314,0.000000,0.000000,0.250000,0,0);}
.m38_c00460{transform:matrix(0.258918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258918,0.000000,0.000000,0.250000,0,0);}
.m44_c00460{transform:matrix(0.259128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259128,0.000000,0.000000,0.250000,0,0);}
.mc8_c00460{transform:matrix(0.260786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260786,0.000000,0.000000,0.250000,0,0);}
.m9e_c00460{transform:matrix(0.261249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261249,0.000000,0.000000,0.250000,0,0);}
.m67_c00460{transform:matrix(0.261387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261387,0.000000,0.000000,0.250000,0,0);}
.m50_c00460{transform:matrix(0.261622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261622,0.000000,0.000000,0.250000,0,0);}
.m6b_c00460{transform:matrix(0.261648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261648,0.000000,0.000000,0.250000,0,0);}
.m52_c00460{transform:matrix(0.262004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262004,0.000000,0.000000,0.250000,0,0);}
.ma1_c00460{transform:matrix(0.263166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263166,0.000000,0.000000,0.250000,0,0);}
.m90_c00460{transform:matrix(0.263189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263189,0.000000,0.000000,0.250000,0,0);}
.m19_c00460{transform:matrix(0.266504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266504,0.000000,0.000000,0.250000,0,0);}
.m16_c00460{transform:matrix(0.267269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267269,0.000000,0.000000,0.250000,0,0);}
.mae_c00460{transform:matrix(0.267775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267775,0.000000,0.000000,0.250000,0,0);}
.m9a_c00460{transform:matrix(0.268062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268062,0.000000,0.000000,0.250000,0,0);}
.m31_c00460{transform:matrix(0.268567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268567,0.000000,0.000000,0.250000,0,0);}
.m34_c00460{transform:matrix(0.269115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269115,0.000000,0.000000,0.250000,0,0);}
.mb2_c00460{transform:matrix(0.269915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269915,0.000000,0.000000,0.250000,0,0);}
.mcc_c00460{transform:matrix(0.270713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270713,0.000000,0.000000,0.250000,0,0);}
.m2e_c00460{transform:matrix(0.270792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270792,0.000000,0.000000,0.250000,0,0);}
.mcf_c00460{transform:matrix(0.271048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271048,0.000000,0.000000,0.250000,0,0);}
.m87_c00460{transform:matrix(0.271324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271324,0.000000,0.000000,0.250000,0,0);}
.m7_c00460{transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);}
.m48_c00460{transform:matrix(0.271605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271605,0.000000,0.000000,0.250000,0,0);}
.mbb_c00460{transform:matrix(0.271948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271948,0.000000,0.000000,0.250000,0,0);}
.m4f_c00460{transform:matrix(0.272173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272173,0.000000,0.000000,0.250000,0,0);}
.m5b_c00460{transform:matrix(0.273180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273180,0.000000,0.000000,0.250000,0,0);}
.ma0_c00460{transform:matrix(0.273689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273689,0.000000,0.000000,0.250000,0,0);}
.m4_c00460{transform:matrix(0.273902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273902,0.000000,0.000000,0.250000,0,0);}
.m8f_c00460{transform:matrix(0.273913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273913,0.000000,0.000000,0.250000,0,0);}
.m71_c00460{transform:matrix(0.274532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274532,0.000000,0.000000,0.250000,0,0);}
.m18_c00460{transform:matrix(0.274871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274871,0.000000,0.000000,0.250000,0,0);}
.m10_c00460{transform:matrix(0.275231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275231,0.000000,0.000000,0.250000,0,0);}
.m5d_c00460{transform:matrix(0.275297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275297,0.000000,0.000000,0.250000,0,0);}
.mcd_c00460{transform:matrix(0.275978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275978,0.000000,0.000000,0.250000,0,0);}
.mac_c00460{transform:matrix(0.276047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276047,0.000000,0.000000,0.250000,0,0);}
.m37_c00460{transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);}
.m2a_c00460{transform:matrix(0.276511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276511,0.000000,0.000000,0.250000,0,0);}
.m17_c00460{transform:matrix(0.277639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277639,0.000000,0.000000,0.250000,0,0);}
.ma3_c00460{transform:matrix(0.277936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277936,0.000000,0.000000,0.250000,0,0);}
.mc2_c00460{transform:matrix(0.278289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278289,0.000000,0.000000,0.250000,0,0);}
.m9c_c00460{transform:matrix(0.279113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279113,0.000000,0.000000,0.250000,0,0);}
.ma7_c00460{transform:matrix(0.279348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279348,0.000000,0.000000,0.250000,0,0);}
.m57_c00460{transform:matrix(0.280290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280290,0.000000,0.000000,0.250000,0,0);}
.mba_c00460{transform:matrix(0.280745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280745,0.000000,0.000000,0.250000,0,0);}
.m4b_c00460{transform:matrix(0.280786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280786,0.000000,0.000000,0.250000,0,0);}
.mbc_c00460{transform:matrix(0.281084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281084,0.000000,0.000000,0.250000,0,0);}
.m4d_c00460{transform:matrix(0.281858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281858,0.000000,0.000000,0.250000,0,0);}
.m1_c00460{transform:matrix(0.282780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282780,0.000000,0.000000,0.250000,0,0);}
.m85_c00460{transform:matrix(0.283168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283168,0.000000,0.000000,0.250000,0,0);}
.m9_c00460{transform:matrix(0.283414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283414,0.000000,0.000000,0.250000,0,0);}
.m2f_c00460{transform:matrix(0.284420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284420,0.000000,0.000000,0.250000,0,0);}
.m5a_c00460{transform:matrix(0.284564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284564,0.000000,0.000000,0.250000,0,0);}
.m35_c00460{transform:matrix(0.284865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284865,0.000000,0.000000,0.250000,0,0);}
.m3e_c00460{transform:matrix(0.284973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284973,0.000000,0.000000,0.250000,0,0);}
.m39_c00460{transform:matrix(0.285528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285528,0.000000,0.000000,0.250000,0,0);}
.m2_c00460{transform:matrix(0.286385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286385,0.000000,0.000000,0.250000,0,0);}
.m64_c00460{transform:matrix(0.286620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286620,0.000000,0.000000,0.250000,0,0);}
.m56_c00460{transform:matrix(0.287147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287147,0.000000,0.000000,0.250000,0,0);}
.m8_c00460{transform:matrix(0.287277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287277,0.000000,0.000000,0.250000,0,0);}
.m6e_c00460{transform:matrix(0.287999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287999,0.000000,0.000000,0.250000,0,0);}
.m93_c00460{transform:matrix(0.288128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288128,0.000000,0.000000,0.250000,0,0);}
.m30_c00460{transform:matrix(0.288579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288579,0.000000,0.000000,0.250000,0,0);}
.m9f_c00460{transform:matrix(0.289687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289687,0.000000,0.000000,0.250000,0,0);}
.mbf_c00460{transform:matrix(0.289780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289780,0.000000,0.000000,0.250000,0,0);}
.m84_c00460{transform:matrix(0.289964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289964,0.000000,0.000000,0.250000,0,0);}
.mc_c00460{transform:matrix(0.289976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289976,0.000000,0.000000,0.250000,0,0);}
.m73_c00460{transform:matrix(0.290728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290728,0.000000,0.000000,0.250000,0,0);}
.mc4_c00460{transform:matrix(0.290789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290789,0.000000,0.000000,0.250000,0,0);}
.m70_c00460{transform:matrix(0.291758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291758,0.000000,0.000000,0.250000,0,0);}
.m42_c00460{transform:matrix(0.292974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292974,0.000000,0.000000,0.250000,0,0);}
.m7e_c00460{transform:matrix(0.293299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293299,0.000000,0.000000,0.250000,0,0);}
.m29_c00460{transform:matrix(0.294466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294466,0.000000,0.000000,0.250000,0,0);}
.ma4_c00460{transform:matrix(0.295186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295186,0.000000,0.000000,0.250000,0,0);}
.mc0_c00460{transform:matrix(0.295255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295255,0.000000,0.000000,0.250000,0,0);}
.m8c_c00460{transform:matrix(0.295448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295448,0.000000,0.000000,0.250000,0,0);}
.m28_c00460{transform:matrix(0.295865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295865,0.000000,0.000000,0.250000,0,0);}
.mb7_c00460{transform:matrix(0.296346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296346,0.000000,0.000000,0.250000,0,0);}
.m49_c00460{transform:matrix(0.297235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297235,0.000000,0.000000,0.250000,0,0);}
.m9b_c00460{transform:matrix(0.297369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297369,0.000000,0.000000,0.250000,0,0);}
.ma_c00460{transform:matrix(0.297408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297408,0.000000,0.000000,0.250000,0,0);}
.ma6_c00460{transform:matrix(0.298293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298293,0.000000,0.000000,0.250000,0,0);}
.m75_c00460{transform:matrix(0.298326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298326,0.000000,0.000000,0.250000,0,0);}
.me_c00460{transform:matrix(0.299553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299553,0.000000,0.000000,0.250000,0,0);}
.mc5_c00460{transform:matrix(0.300069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300069,0.000000,0.000000,0.250000,0,0);}
.m79_c00460{transform:matrix(0.300351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300351,0.000000,0.000000,0.250000,0,0);}
.ma2_c00460{transform:matrix(0.300422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300422,0.000000,0.000000,0.250000,0,0);}
.m5e_c00460{transform:matrix(0.300918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300918,0.000000,0.000000,0.250000,0,0);}
.mb5_c00460{transform:matrix(0.300969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300969,0.000000,0.000000,0.250000,0,0);}
.m33_c00460{transform:matrix(0.300987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300987,0.000000,0.000000,0.250000,0,0);}
.mbd_c00460{transform:matrix(0.301029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301029,0.000000,0.000000,0.250000,0,0);}
.m26_c00460{transform:matrix(0.301237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301237,0.000000,0.000000,0.250000,0,0);}
.m63_c00460{transform:matrix(0.302471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302471,0.000000,0.000000,0.250000,0,0);}
.mab_c00460{transform:matrix(0.303442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303442,0.000000,0.000000,0.250000,0,0);}
.m77_c00460{transform:matrix(0.303909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303909,0.000000,0.000000,0.250000,0,0);}
.m1a_c00460{transform:matrix(0.304137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304137,0.000000,0.000000,0.250000,0,0);}
.m92_c00460{transform:matrix(0.304308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304308,0.000000,0.000000,0.250000,0,0);}
.m3d_c00460{transform:matrix(0.304422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304422,0.000000,0.000000,0.250000,0,0);}
.m6_c00460{transform:matrix(0.306156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306156,0.000000,0.000000,0.250000,0,0);}
.mc3_c00460{transform:matrix(0.306390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306390,0.000000,0.000000,0.250000,0,0);}
.m21_c00460{transform:matrix(0.306596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306596,0.000000,0.000000,0.250000,0,0);}
.m3b_c00460{transform:matrix(0.306788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306788,0.000000,0.000000,0.250000,0,0);}
.mbe_c00460{transform:matrix(0.307124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307124,0.000000,0.000000,0.250000,0,0);}
.mb1_c00460{transform:matrix(0.307129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307129,0.000000,0.000000,0.250000,0,0);}
.m15_c00460{transform:matrix(0.307185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307185,0.000000,0.000000,0.250000,0,0);}
.m8b_c00460{transform:matrix(0.307196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307196,0.000000,0.000000,0.250000,0,0);}
.m7f_c00460{transform:matrix(0.307462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307462,0.000000,0.000000,0.250000,0,0);}
.m74_c00460{transform:matrix(0.309792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309792,0.000000,0.000000,0.250000,0,0);}
.m12_c00460{transform:matrix(0.310661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310661,0.000000,0.000000,0.250000,0,0);}
.m55_c00460{transform:matrix(0.310809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310809,0.000000,0.000000,0.250000,0,0);}
.m68_c00460{transform:matrix(0.311245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311245,0.000000,0.000000,0.250000,0,0);}
.m9d_c00460{transform:matrix(0.312830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312830,0.000000,0.000000,0.250000,0,0);}
.m91_c00460{transform:matrix(0.312946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312946,0.000000,0.000000,0.250000,0,0);}
.m72_c00460{transform:matrix(0.313392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313392,0.000000,0.000000,0.250000,0,0);}
.m60_c00460{transform:matrix(0.313721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313721,0.000000,0.000000,0.250000,0,0);}
.m11_c00460{transform:matrix(0.313736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313736,0.000000,0.000000,0.250000,0,0);}
.m45_c00460{transform:matrix(0.314290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314290,0.000000,0.000000,0.250000,0,0);}
.m8e_c00460{transform:matrix(0.315021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315021,0.000000,0.000000,0.250000,0,0);}
.mc1_c00460{transform:matrix(0.315167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315167,0.000000,0.000000,0.250000,0,0);}
.md_c00460{transform:matrix(0.315480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315480,0.000000,0.000000,0.250000,0,0);}
.m2c_c00460{transform:matrix(0.315490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315490,0.000000,0.000000,0.250000,0,0);}
.m76_c00460{transform:matrix(0.316305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316305,0.000000,0.000000,0.250000,0,0);}
.maa_c00460{transform:matrix(0.316948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316948,0.000000,0.000000,0.250000,0,0);}
.m54_c00460{transform:matrix(0.317835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317835,0.000000,0.000000,0.250000,0,0);}
.m80_c00460{transform:matrix(0.317964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317964,0.000000,0.000000,0.250000,0,0);}
.m8d_c00460{transform:matrix(0.318206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318206,0.000000,0.000000,0.250000,0,0);}
.m7a_c00460{transform:matrix(0.318221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318221,0.000000,0.000000,0.250000,0,0);}
.m40_c00460{transform:matrix(0.318344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318344,0.000000,0.000000,0.250000,0,0);}
.m62_c00460{transform:matrix(0.319459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319459,0.000000,0.000000,0.250000,0,0);}
.mad_c00460{transform:matrix(0.319680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319680,0.000000,0.000000,0.250000,0,0);}
.m6f_c00460{transform:matrix(0.321284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321284,0.000000,0.000000,0.250000,0,0);}
.m41_c00460{transform:matrix(0.321796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321796,0.000000,0.000000,0.250000,0,0);}
.m94_c00460{transform:matrix(0.322177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322177,0.000000,0.000000,0.250000,0,0);}
.m6c_c00460{transform:matrix(0.322575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322575,0.000000,0.000000,0.250000,0,0);}
.m24_c00460{transform:matrix(0.323090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323090,0.000000,0.000000,0.250000,0,0);}
.m36_c00460{transform:matrix(0.323753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323753,0.000000,0.000000,0.250000,0,0);}
.m1c_c00460{transform:matrix(0.324119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324119,0.000000,0.000000,0.250000,0,0);}
.m97_c00460{transform:matrix(0.324212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324212,0.000000,0.000000,0.250000,0,0);}
.m8a_c00460{transform:matrix(0.324533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324533,0.000000,0.000000,0.250000,0,0);}
.m1d_c00460{transform:matrix(0.326023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326023,0.000000,0.000000,0.250000,0,0);}
.m99_c00460{transform:matrix(0.327760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327760,0.000000,0.000000,0.250000,0,0);}
.mb3_c00460{transform:matrix(0.327915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327915,0.000000,0.000000,0.250000,0,0);}
.m3f_c00460{transform:matrix(0.328021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328021,0.000000,0.000000,0.250000,0,0);}
.m25_c00460{transform:matrix(0.328738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328738,0.000000,0.000000,0.250000,0,0);}
.mb9_c00460{transform:matrix(0.330780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330780,0.000000,0.000000,0.250000,0,0);}
.m1e_c00460{transform:matrix(0.330997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330997,0.000000,0.000000,0.250000,0,0);}
.m4e_c00460{transform:matrix(0.331116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331116,0.000000,0.000000,0.250000,0,0);}
.m5c_c00460{transform:matrix(0.331213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331213,0.000000,0.000000,0.250000,0,0);}
.m7b_c00460{transform:matrix(0.332632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332632,0.000000,0.000000,0.250000,0,0);}
.m7d_c00460{transform:matrix(0.332953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332953,0.000000,0.000000,0.250000,0,0);}
.m59_c00460{transform:matrix(0.333073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333073,0.000000,0.000000,0.250000,0,0);}
.m13_c00460{transform:matrix(0.334367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334367,0.000000,0.000000,0.250000,0,0);}
.ma9_c00460{transform:matrix(0.334550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334550,0.000000,0.000000,0.250000,0,0);}
.m78_c00460{transform:matrix(0.335806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335806,0.000000,0.000000,0.250000,0,0);}
.mb0_c00460{transform:matrix(0.336237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336237,0.000000,0.000000,0.250000,0,0);}
.mb6_c00460{transform:matrix(0.337111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337111,0.000000,0.000000,0.250000,0,0);}
.m4c_c00460{transform:matrix(0.337164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337164,0.000000,0.000000,0.250000,0,0);}
.m2d_c00460{transform:matrix(0.337604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337604,0.000000,0.000000,0.250000,0,0);}
.m82_c00460{transform:matrix(0.338223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338223,0.000000,0.000000,0.250000,0,0);}
.ma5_c00460{transform:matrix(0.338744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338744,0.000000,0.000000,0.250000,0,0);}
.m83_c00460{transform:matrix(0.340544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340544,0.000000,0.000000,0.250000,0,0);}
.m2b_c00460{transform:matrix(0.340698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340698,0.000000,0.000000,0.250000,0,0);}
.md0_c00460{transform:matrix(0.341044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341044,0.000000,0.000000,0.250000,0,0);}
.m20_c00460{transform:matrix(0.343406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343406,0.000000,0.000000,0.250000,0,0);}
.m27_c00460{transform:matrix(0.343636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343636,0.000000,0.000000,0.250000,0,0);}
.m43_c00460{transform:matrix(0.344083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344083,0.000000,0.000000,0.250000,0,0);}
.m6d_c00460{transform:matrix(0.344792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344792,0.000000,0.000000,0.250000,0,0);}
.mb8_c00460{transform:matrix(0.345278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345278,0.000000,0.000000,0.250000,0,0);}
.m7c_c00460{transform:matrix(0.345549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345549,0.000000,0.000000,0.250000,0,0);}
.mf_c00460{transform:matrix(0.346472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346472,0.000000,0.000000,0.250000,0,0);}
.m66_c00460{transform:matrix(0.346907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346907,0.000000,0.000000,0.250000,0,0);}
.m23_c00460{transform:matrix(0.346914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346914,0.000000,0.000000,0.250000,0,0);}
.ma8_c00460{transform:matrix(0.347022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347022,0.000000,0.000000,0.250000,0,0);}
.m51_c00460{transform:matrix(0.349884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349884,0.000000,0.000000,0.250000,0,0);}
.m61_c00460{transform:matrix(0.350402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350402,0.000000,0.000000,0.250000,0,0);}
.m22_c00460{transform:matrix(0.351277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351277,0.000000,0.000000,0.250000,0,0);}
.m5f_c00460{transform:matrix(0.351765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351765,0.000000,0.000000,0.250000,0,0);}
.m95_c00460{transform:matrix(0.352877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352877,0.000000,0.000000,0.250000,0,0);}
.m86_c00460{transform:matrix(0.353402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353402,0.000000,0.000000,0.250000,0,0);}
.m4a_c00460{transform:matrix(0.356132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356132,0.000000,0.000000,0.250000,0,0);}
.m69_c00460{transform:matrix(0.362103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362103,0.000000,0.000000,0.250000,0,0);}
.mce_c00460{transform:matrix(0.364305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364305,0.000000,0.000000,0.250000,0,0);}
.m46_c00460{transform:matrix(0.376832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376832,0.000000,0.000000,0.250000,0,0);}
.m53_c00460{transform:matrix(0.378849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378849,0.000000,0.000000,0.250000,0,0);}
.m1f_c00460{transform:matrix(0.391270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391270,0.000000,0.000000,0.250000,0,0);}
.m3_c00460{transform:matrix(0.392138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392138,0.000000,0.000000,0.250000,0,0);}
.m58_c00460{transform:matrix(0.397481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397481,0.000000,0.000000,0.250000,0,0);}
.m98_c00460{transform:matrix(0.403692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403692,0.000000,0.000000,0.250000,0,0);}
.m65_c00460{transform:matrix(0.409902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409902,0.000000,0.000000,0.250000,0,0);}
.mc6_c00460{transform:matrix(0.422105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422105,0.000000,0.000000,0.250000,0,0);}
.v0_c00460{vertical-align:0.000000px;}
.ls25_c00460{letter-spacing:-3.714480px;}
.ls23_c00460{letter-spacing:-2.799727px;}
.ls6_c00460{letter-spacing:-2.661127px;}
.ls19_c00460{letter-spacing:-2.647267px;}
.ls4_c00460{letter-spacing:-2.494800px;}
.ls2a_c00460{letter-spacing:-1.718328px;}
.ls1e_c00460{letter-spacing:-0.872470px;}
.ls1b_c00460{letter-spacing:-0.631067px;}
.ls0_c00460{letter-spacing:0.000000px;}
.ls24_c00460{letter-spacing:0.358974px;}
.ls7_c00460{letter-spacing:0.830493px;}
.lse_c00460{letter-spacing:2.009700px;}
.ls20_c00460{letter-spacing:2.303776px;}
.ls1f_c00460{letter-spacing:2.692810px;}
.ls1_c00460{letter-spacing:3.051734px;}
.ls1d_c00460{letter-spacing:3.078900px;}
.ls29_c00460{letter-spacing:3.088810px;}
.ls15_c00460{letter-spacing:3.120587px;}
.ls26_c00460{letter-spacing:3.375830px;}
.lsd_c00460{letter-spacing:3.405610px;}
.ls3_c00460{letter-spacing:3.484810px;}
.ls1a_c00460{letter-spacing:3.504610px;}
.ls28_c00460{letter-spacing:3.583810px;}
.ls5_c00460{letter-spacing:3.626736px;}
.ls16_c00460{letter-spacing:3.682810px;}
.ls12_c00460{letter-spacing:3.695640px;}
.ls10_c00460{letter-spacing:3.722400px;}
.lsf_c00460{letter-spacing:3.742200px;}
.ls8_c00460{letter-spacing:3.762000px;}
.ls18_c00460{letter-spacing:3.781810px;}
.ls2_c00460{letter-spacing:3.801610px;}
.ls11_c00460{letter-spacing:3.821400px;}
.lsc_c00460{letter-spacing:3.880810px;}
.ls14_c00460{letter-spacing:3.950110px;}
.ls21_c00460{letter-spacing:3.960000px;}
.ls13_c00460{letter-spacing:3.999610px;}
.ls17_c00460{letter-spacing:4.039200px;}
.ls9_c00460{letter-spacing:4.118400px;}
.lsb_c00460{letter-spacing:4.177810px;}
.lsa_c00460{letter-spacing:4.375810px;}
.ls1c_c00460{letter-spacing:59.875398px;}
.ls22_c00460{letter-spacing:61.300998px;}
.ls27_c00460{letter-spacing:65.577798px;}
.sc__c00460{text-shadow:none;}
.sc0_c00460{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00460{-webkit-text-stroke:0px transparent;}
.sc0_c00460{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00460{word-spacing:-20.234543px;}
.ws1_c00460{word-spacing:-19.008050px;}
.ws2_c00460{word-spacing:0.000000px;}
._5_c00460{margin-left:-7.223089px;}
._0_c00460{width:4.781735px;}
._1_c00460{width:7.603310px;}
._3_c00460{width:9.199971px;}
._2_c00460{width:29.958055px;}
._4_c00460{width:34.363593px;}
.fc0_c00460{color:transparent;}
.fs0_c00460{font-size:22.572000px;}
.fs17_c00460{font-size:25.146000px;}
.fs1e_c00460{font-size:28.314000px;}
.fsb_c00460{font-size:40.194000px;}
.fs15_c00460{font-size:43.758000px;}
.fs1a_c00460{font-size:53.856198px;}
.fs16_c00460{font-size:59.875398px;}
.fs1c_c00460{font-size:61.300998px;}
.fs19_c00460{font-size:61.578000px;}
.fs23_c00460{font-size:61.776198px;}
.fs21_c00460{font-size:65.577798px;}
.fsa_c00460{font-size:68.112198px;}
.fs3_c00460{font-size:69.696198px;}
.fs14_c00460{font-size:70.092198px;}
.fs4_c00460{font-size:71.280000px;}
.fs22_c00460{font-size:71.676198px;}
.fs1d_c00460{font-size:72.864000px;}
.fs1f_c00460{font-size:73.260000px;}
.fs11_c00460{font-size:73.656198px;}
.fsd_c00460{font-size:74.448000px;}
.fsc_c00460{font-size:74.844000px;}
.fs6_c00460{font-size:75.240000px;}
.fs13_c00460{font-size:75.636198px;}
.fs2_c00460{font-size:76.032198px;}
.fse_c00460{font-size:76.428000px;}
.fs5_c00460{font-size:77.616198px;}
.fs10_c00460{font-size:79.002198px;}
.fs1b_c00460{font-size:79.200000px;}
.fsf_c00460{font-size:79.992198px;}
.fs12_c00460{font-size:80.784000px;}
.fs7_c00460{font-size:82.368000px;}
.fs9_c00460{font-size:83.556198px;}
.fs18_c00460{font-size:83.952198px;}
.fs8_c00460{font-size:87.516198px;}
.fs1_c00460{font-size:90.288000px;}
.fs20_c00460{font-size:106.128000px;}
.y0_c00460{bottom:0.000000px;}
.y23_c00460{bottom:50.875586px;}
.y22_c00460{bottom:68.692170px;}
.y1_c00460{bottom:76.500000px;}
.y21_c00460{bottom:122.869920px;}
.y20_c00460{bottom:145.318170px;}
.y1f_c00460{bottom:151.381920px;}
.y2_c00460{bottom:177.399120px;}
.y1e_c00460{bottom:188.447520px;}
.y1d_c00460{bottom:220.879920px;}
.y1c_c00460{bottom:253.312320px;}
.y1b_c00460{bottom:285.739770px;}
.y1a_c00460{bottom:317.464320px;}
.y19_c00460{bottom:350.248170px;}
.y18_c00460{bottom:381.972720px;}
.y17_c00460{bottom:414.761520px;}
.y16_c00460{bottom:422.240970px;}
.y15_c00460{bottom:434.719920px;}
.y14_c00460{bottom:443.268570px;}
.y13_c00460{bottom:446.481120px;}
.y12_c00460{bottom:478.908570px;}
.y11_c00460{bottom:510.989520px;}
.y10_c00460{bottom:543.421920px;}
.yf_c00460{bottom:575.492970px;}
.ye_c00460{bottom:607.217520px;}
.yd_c00460{bottom:638.932170px;}
.yc_c00460{bottom:670.651770px;}
.yb_c00460{bottom:702.732720px;}
.ya_c00460{bottom:766.879770px;}
.y9_c00460{bottom:798.960720px;}
.y7_c00460{bottom:830.675370px;}
.y8_c00460{bottom:831.749520px;}
.y6_c00460{bottom:863.112720px;}
.y5_c00460{bottom:895.545120px;}
.y4_c00460{bottom:928.685370px;}
.y3_c00460{bottom:1061.978970px;}
.h2_c00460{height:23.541891px;}
.h19_c00460{height:26.226492px;}
.h20_c00460{height:29.530617px;}
.h18_c00460{height:39.877015px;}
.h1e_c00460{height:40.826465px;}
.hd_c00460{height:41.921086px;}
.h17_c00460{height:42.946084px;}
.h23_c00460{height:43.674813px;}
.h1c_c00460{height:52.856913px;}
.h1b_c00460{height:60.435439px;}
.h25_c00460{height:60.629960px;}
.hc_c00460{height:66.848397px;}
.h13_c00460{height:72.289530px;}
.h5_c00460{height:72.690957px;}
.hf_c00460{height:73.066641px;}
.h16_c00460{height:73.103972px;}
.he_c00460{height:73.455293px;}
.h8_c00460{height:73.843945px;}
.h15_c00460{height:74.232792px;}
.h6_c00460{height:74.342813px;}
.h4_c00460{height:74.621444px;}
.h24_c00460{height:74.756035px;}
.h10_c00460{height:75.009902px;}
.h1f_c00460{height:75.994875px;}
.h7_c00460{height:76.176054px;}
.h21_c00460{height:76.407891px;}
.h12_c00460{height:77.536337px;}
.h1d_c00460{height:77.691797px;}
.h11_c00460{height:78.507968px;}
.h14_c00460{height:79.285078px;}
.h9_c00460{height:80.839688px;}
.hb_c00460{height:82.005839px;}
.h1a_c00460{height:82.394491px;}
.ha_c00460{height:85.892362px;}
.h3_c00460{height:88.612734px;}
.h22_c00460{height:104.158828px;}
.h1_c00460{height:1110.000000px;}
.h0_c00460{height:1263.000000px;}
.w1_c00460{width:769.500000px;}
.w0_c00460{width:892.500000px;}
.x0_c00460{left:0.000000px;}
.x2_c00460{left:51.199185px;}
.x1_c00460{left:61.500000px;}
.x5c_c00460{left:91.378335px;}
.x55_c00460{left:92.467335px;}
.x1a_c00460{left:93.551385px;}
.x4_c00460{left:95.273985px;}
.x73_c00460{left:111.886185px;}
.x69_c00460{left:123.795885px;}
.x21_c00460{left:125.567985px;}
.x11_c00460{left:126.656985px;}
.x2c_c00460{left:135.398685px;}
.x5_c00460{left:137.967735px;}
.x71_c00460{left:143.793885px;}
.x60_c00460{left:145.882785px;}
.x37_c00460{left:147.793485px;}
.x1b_c00460{left:149.649735px;}
.x32_c00460{left:158.762685px;}
.x40_c00460{left:161.257485px;}
.x66_c00460{left:167.677635px;}
.x46_c00460{left:170.533785px;}
.x76_c00460{left:177.344985px;}
.x58_c00460{left:179.072535px;}
.x6_c00460{left:180.567435px;}
.x6c_c00460{left:188.517135px;}
.x22_c00460{left:191.521785px;}
.x38_c00460{left:192.576135px;}
.x77_c00460{left:199.100235px;}
.x4c_c00460{left:200.634735px;}
.x47_c00460{left:202.198935px;}
.x78_c00460{left:209.990235px;}
.x41_c00460{left:212.737485px;}
.x12_c00460{left:215.059035px;}
.x6a_c00460{left:222.548385px;}
.x13_c00460{left:224.216535px;}
.x7_c00460{left:226.077735px;}
.x48_c00460{left:233.774985px;}
.x4d_c00460{left:235.987635px;}
.x51_c00460{left:245.526285px;}
.x23_c00460{left:247.075635px;}
.x33_c00460{left:248.506185px;}
.x6b_c00460{left:254.797635px;}
.x1c_c00460{left:255.916335px;}
.x59_c00460{left:266.242035px;}
.x14_c00460{left:267.796335px;}
.x42_c00460{left:279.453585px;}
.x75_c00460{left:288.526935px;}
.x72_c00460{left:290.155485px;}
.x43_c00460{left:292.016685px;}
.x34_c00460{left:293.704635px;}
.x15_c00460{left:301.679085px;}
.x6d_c00460{left:311.098935px;}
.x5a_c00460{left:312.178035px;}
.x24_c00460{left:313.370985px;}
.x35_c00460{left:315.192585px;}
.x2d_c00460{left:323.592735px;}
.x44_c00460{left:335.447985px;}
.x1d_c00460{left:345.684585px;}
.x8_c00460{left:347.001285px;}
.x6e_c00460{left:355.317285px;}
.x4e_c00460{left:356.916135px;}
.x52_c00460{left:366.830985px;}
.x9_c00460{left:367.845735px;}
.x6f_c00460{left:376.726035px;}
.x61_c00460{left:378.651585px;}
.x36_c00460{left:380.151435px;}
.x7e_c00460{left:385.113068px;}
.x79_c00460{left:400.228635px;}
.x39_c00460{left:401.436435px;}
.x1e_c00460{left:413.212485px;}
.x62_c00460{left:422.825385px;}
.x5b_c00460{left:433.715385px;}
.x16_c00460{left:434.848935px;}
.x7a_c00460{left:443.328285px;}
.x1f_c00460{left:444.763785px;}
.x3a_c00460{left:446.342835px;}
.xa_c00460{left:457.074435px;}
.x63_c00460{left:466.137885px;}
.x25_c00460{left:467.538735px;}
.x4f_c00460{left:468.944535px;}
.x67_c00460{left:477.230835px;}
.x7b_c00460{left:488.917785px;}
.xb_c00460{left:491.174985px;}
.x26_c00460{left:499.659285px;}
.x3b_c00460{left:501.589785px;}
.xc_c00460{left:521.741235px;}
.x17_c00460{left:522.988635px;}
.x20_c00460{left:532.789635px;}
.x56_c00460{left:534.744885px;}
.x2e_c00460{left:544.620135px;}
.x68_c00460{left:545.768535px;}
.x27_c00460{left:554.896335px;}
.x64_c00460{left:565.939785px;}
.x57_c00460{left:567.528735px;}
.x50_c00460{left:576.988185px;}
.x3c_c00460{left:578.532585px;}
.x49_c00460{left:588.586035px;}
.x5d_c00460{left:589.605735px;}
.xd_c00460{left:590.615535px;}
.x28_c00460{left:599.084985px;}
.x70_c00460{left:610.682835px;}
.x3d_c00460{left:611.831235px;}
.x4a_c00460{left:620.954085px;}
.x2f_c00460{left:622.087635px;}
.x29_c00460{left:633.007335px;}
.x18_c00460{left:634.017135px;}
.x3e_c00460{left:643.828035px;}
.x65_c00460{left:645.105135px;}
.x4b_c00460{left:654.821985px;}
.x19_c00460{left:656.262435px;}
.xe_c00460{left:657.296985px;}
.x53_c00460{left:661.247085px;}
.x30_c00460{left:665.880285px;}
.x5e_c00460{left:667.008885px;}
.x54_c00460{left:675.715935px;}
.x2a_c00460{left:676.948485px;}
.x3f_c00460{left:678.255285px;}
.x45_c00460{left:687.467235px;}
.x7d_c00460{left:696.248535px;}
.x5f_c00460{left:698.842335px;}
.xf_c00460{left:701.876685px;}
.x74_c00460{left:706.876185px;}
.x2b_c00460{left:710.603535px;}
.x10_c00460{left:712.336035px;}
.x3_c00460{left:713.969535px;}
.x7c_c00460{left:720.785685px;}
.x31_c00460{left:733.809135px;}
@media print{
.v0_c00460{vertical-align:0.000000pt;}
.ls25_c00460{letter-spacing:-3.301760pt;}
.ls23_c00460{letter-spacing:-2.488646pt;}
.ls6_c00460{letter-spacing:-2.365446pt;}
.ls19_c00460{letter-spacing:-2.353126pt;}
.ls4_c00460{letter-spacing:-2.217600pt;}
.ls2a_c00460{letter-spacing:-1.527402pt;}
.ls1e_c00460{letter-spacing:-0.775529pt;}
.ls1b_c00460{letter-spacing:-0.560949pt;}
.ls0_c00460{letter-spacing:0.000000pt;}
.ls24_c00460{letter-spacing:0.319088pt;}
.ls7_c00460{letter-spacing:0.738216pt;}
.lse_c00460{letter-spacing:1.786400pt;}
.ls20_c00460{letter-spacing:2.047801pt;}
.ls1f_c00460{letter-spacing:2.393609pt;}
.ls1_c00460{letter-spacing:2.712653pt;}
.ls1d_c00460{letter-spacing:2.736800pt;}
.ls29_c00460{letter-spacing:2.745609pt;}
.ls15_c00460{letter-spacing:2.773855pt;}
.ls26_c00460{letter-spacing:3.000737pt;}
.lsd_c00460{letter-spacing:3.027209pt;}
.ls3_c00460{letter-spacing:3.097609pt;}
.ls1a_c00460{letter-spacing:3.115209pt;}
.ls28_c00460{letter-spacing:3.185609pt;}
.ls5_c00460{letter-spacing:3.223765pt;}
.ls16_c00460{letter-spacing:3.273609pt;}
.ls12_c00460{letter-spacing:3.285013pt;}
.ls10_c00460{letter-spacing:3.308800pt;}
.lsf_c00460{letter-spacing:3.326400pt;}
.ls8_c00460{letter-spacing:3.344000pt;}
.ls18_c00460{letter-spacing:3.361609pt;}
.ls2_c00460{letter-spacing:3.379209pt;}
.ls11_c00460{letter-spacing:3.396800pt;}
.lsc_c00460{letter-spacing:3.449609pt;}
.ls14_c00460{letter-spacing:3.511209pt;}
.ls21_c00460{letter-spacing:3.520000pt;}
.ls13_c00460{letter-spacing:3.555209pt;}
.ls17_c00460{letter-spacing:3.590400pt;}
.ls9_c00460{letter-spacing:3.660800pt;}
.lsb_c00460{letter-spacing:3.713609pt;}
.lsa_c00460{letter-spacing:3.889609pt;}
.ls1c_c00460{letter-spacing:53.222576pt;}
.ls22_c00460{letter-spacing:54.489776pt;}
.ls27_c00460{letter-spacing:58.291376pt;}
.ws0_c00460{word-spacing:-17.986260pt;}
.ws1_c00460{word-spacing:-16.896044pt;}
.ws2_c00460{word-spacing:0.000000pt;}
._5_c00460{margin-left:-6.420524pt;}
._0_c00460{width:4.250431pt;}
._1_c00460{width:6.758498pt;}
._3_c00460{width:8.177752pt;}
._2_c00460{width:26.629382pt;}
._4_c00460{width:30.545416pt;}
.fs0_c00460{font-size:20.064000pt;}
.fs17_c00460{font-size:22.352000pt;}
.fs1e_c00460{font-size:25.168000pt;}
.fsb_c00460{font-size:35.728000pt;}
.fs15_c00460{font-size:38.896000pt;}
.fs1a_c00460{font-size:47.872176pt;}
.fs16_c00460{font-size:53.222576pt;}
.fs1c_c00460{font-size:54.489776pt;}
.fs19_c00460{font-size:54.736000pt;}
.fs23_c00460{font-size:54.912176pt;}
.fs21_c00460{font-size:58.291376pt;}
.fsa_c00460{font-size:60.544176pt;}
.fs3_c00460{font-size:61.952176pt;}
.fs14_c00460{font-size:62.304176pt;}
.fs4_c00460{font-size:63.360000pt;}
.fs22_c00460{font-size:63.712176pt;}
.fs1d_c00460{font-size:64.768000pt;}
.fs1f_c00460{font-size:65.120000pt;}
.fs11_c00460{font-size:65.472176pt;}
.fsd_c00460{font-size:66.176000pt;}
.fsc_c00460{font-size:66.528000pt;}
.fs6_c00460{font-size:66.880000pt;}
.fs13_c00460{font-size:67.232176pt;}
.fs2_c00460{font-size:67.584176pt;}
.fse_c00460{font-size:67.936000pt;}
.fs5_c00460{font-size:68.992176pt;}
.fs10_c00460{font-size:70.224176pt;}
.fs1b_c00460{font-size:70.400000pt;}
.fsf_c00460{font-size:71.104176pt;}
.fs12_c00460{font-size:71.808000pt;}
.fs7_c00460{font-size:73.216000pt;}
.fs9_c00460{font-size:74.272176pt;}
.fs18_c00460{font-size:74.624176pt;}
.fs8_c00460{font-size:77.792176pt;}
.fs1_c00460{font-size:80.256000pt;}
.fs20_c00460{font-size:94.336000pt;}
.y0_c00460{bottom:0.000000pt;}
.y23_c00460{bottom:45.222743pt;}
.y22_c00460{bottom:61.059707pt;}
.y1_c00460{bottom:68.000000pt;}
.y21_c00460{bottom:109.217707pt;}
.y20_c00460{bottom:129.171707pt;}
.y1f_c00460{bottom:134.561707pt;}
.y2_c00460{bottom:157.688107pt;}
.y1e_c00460{bottom:167.508907pt;}
.y1d_c00460{bottom:196.337707pt;}
.y1c_c00460{bottom:225.166507pt;}
.y1b_c00460{bottom:253.990907pt;}
.y1a_c00460{bottom:282.190507pt;}
.y19_c00460{bottom:311.331707pt;}
.y18_c00460{bottom:339.531307pt;}
.y17_c00460{bottom:368.676907pt;}
.y16_c00460{bottom:375.325307pt;}
.y15_c00460{bottom:386.417707pt;}
.y14_c00460{bottom:394.016507pt;}
.y13_c00460{bottom:396.872107pt;}
.y12_c00460{bottom:425.696507pt;}
.y11_c00460{bottom:454.212907pt;}
.y10_c00460{bottom:483.041707pt;}
.yf_c00460{bottom:511.549307pt;}
.ye_c00460{bottom:539.748907pt;}
.yd_c00460{bottom:567.939707pt;}
.yc_c00460{bottom:596.134907pt;}
.yb_c00460{bottom:624.651307pt;}
.ya_c00460{bottom:681.670907pt;}
.y9_c00460{bottom:710.187307pt;}
.y7_c00460{bottom:738.378107pt;}
.y8_c00460{bottom:739.332907pt;}
.y6_c00460{bottom:767.211307pt;}
.y5_c00460{bottom:796.040107pt;}
.y4_c00460{bottom:825.498107pt;}
.y3_c00460{bottom:943.981307pt;}
.h2_c00460{height:20.926125pt;}
.h19_c00460{height:23.312438pt;}
.h20_c00460{height:26.249438pt;}
.h18_c00460{height:35.446236pt;}
.h1e_c00460{height:36.290191pt;}
.hd_c00460{height:37.263188pt;}
.h17_c00460{height:38.174297pt;}
.h23_c00460{height:38.822056pt;}
.h1c_c00460{height:46.983923pt;}
.h1b_c00460{height:53.720391pt;}
.h25_c00460{height:53.893298pt;}
.hc_c00460{height:59.420798pt;}
.h13_c00460{height:64.257360pt;}
.h5_c00460{height:64.614184pt;}
.hf_c00460{height:64.948125pt;}
.h16_c00460{height:64.981309pt;}
.he_c00460{height:65.293594pt;}
.h8_c00460{height:65.639063pt;}
.h15_c00460{height:65.984704pt;}
.h6_c00460{height:66.082500pt;}
.h4_c00460{height:66.330173pt;}
.h24_c00460{height:66.449809pt;}
.h10_c00460{height:66.675469pt;}
.h1f_c00460{height:67.551000pt;}
.h7_c00460{height:67.712048pt;}
.h21_c00460{height:67.918125pt;}
.h12_c00460{height:68.921188pt;}
.h1d_c00460{height:69.059375pt;}
.h11_c00460{height:69.784860pt;}
.h14_c00460{height:70.475625pt;}
.h9_c00460{height:71.857500pt;}
.hb_c00460{height:72.894079pt;}
.h1a_c00460{height:73.239548pt;}
.ha_c00460{height:76.348766pt;}
.h3_c00460{height:78.766875pt;}
.h22_c00460{height:92.585625pt;}
.h1_c00460{height:986.666667pt;}
.h0_c00460{height:1122.666667pt;}
.w1_c00460{width:684.000000pt;}
.w0_c00460{width:793.333333pt;}
.x0_c00460{left:0.000000pt;}
.x2_c00460{left:45.510387pt;}
.x1_c00460{left:54.666667pt;}
.x5c_c00460{left:81.225187pt;}
.x55_c00460{left:82.193187pt;}
.x1a_c00460{left:83.156787pt;}
.x4_c00460{left:84.687987pt;}
.x73_c00460{left:99.454387pt;}
.x69_c00460{left:110.040787pt;}
.x21_c00460{left:111.615987pt;}
.x11_c00460{left:112.583987pt;}
.x2c_c00460{left:120.354387pt;}
.x5_c00460{left:122.637987pt;}
.x71_c00460{left:127.816787pt;}
.x60_c00460{left:129.673587pt;}
.x37_c00460{left:131.371987pt;}
.x1b_c00460{left:133.021987pt;}
.x32_c00460{left:141.122387pt;}
.x40_c00460{left:143.339987pt;}
.x66_c00460{left:149.046787pt;}
.x46_c00460{left:151.585587pt;}
.x76_c00460{left:157.639987pt;}
.x58_c00460{left:159.175587pt;}
.x6_c00460{left:160.504387pt;}
.x6c_c00460{left:167.570787pt;}
.x22_c00460{left:170.241587pt;}
.x38_c00460{left:171.178787pt;}
.x77_c00460{left:176.977987pt;}
.x4c_c00460{left:178.341987pt;}
.x47_c00460{left:179.732387pt;}
.x78_c00460{left:186.657987pt;}
.x41_c00460{left:189.099987pt;}
.x12_c00460{left:191.163587pt;}
.x6a_c00460{left:197.820787pt;}
.x13_c00460{left:199.303587pt;}
.x7_c00460{left:200.957987pt;}
.x48_c00460{left:207.799987pt;}
.x4d_c00460{left:209.766787pt;}
.x51_c00460{left:218.245587pt;}
.x23_c00460{left:219.622787pt;}
.x33_c00460{left:220.894387pt;}
.x6b_c00460{left:226.486787pt;}
.x1c_c00460{left:227.481187pt;}
.x59_c00460{left:236.659587pt;}
.x14_c00460{left:238.041187pt;}
.x42_c00460{left:248.403187pt;}
.x75_c00460{left:256.468387pt;}
.x72_c00460{left:257.915987pt;}
.x43_c00460{left:259.570387pt;}
.x34_c00460{left:261.070787pt;}
.x15_c00460{left:268.159187pt;}
.x6d_c00460{left:276.532387pt;}
.x5a_c00460{left:277.491587pt;}
.x24_c00460{left:278.551987pt;}
.x35_c00460{left:280.171187pt;}
.x2d_c00460{left:287.637987pt;}
.x44_c00460{left:298.175987pt;}
.x1d_c00460{left:307.275187pt;}
.x8_c00460{left:308.445587pt;}
.x6e_c00460{left:315.837587pt;}
.x4e_c00460{left:317.258787pt;}
.x52_c00460{left:326.071987pt;}
.x9_c00460{left:326.973987pt;}
.x6f_c00460{left:334.867587pt;}
.x61_c00460{left:336.579187pt;}
.x36_c00460{left:337.912387pt;}
.x7e_c00460{left:342.322727pt;}
.x79_c00460{left:355.758787pt;}
.x39_c00460{left:356.832387pt;}
.x1e_c00460{left:367.299987pt;}
.x62_c00460{left:375.844787pt;}
.x5b_c00460{left:385.524787pt;}
.x16_c00460{left:386.532387pt;}
.x7a_c00460{left:394.069587pt;}
.x1f_c00460{left:395.345587pt;}
.x3a_c00460{left:396.749187pt;}
.xa_c00460{left:406.288387pt;}
.x63_c00460{left:414.344787pt;}
.x25_c00460{left:415.589987pt;}
.x4f_c00460{left:416.839587pt;}
.x67_c00460{left:424.205187pt;}
.x7b_c00460{left:434.593587pt;}
.xb_c00460{left:436.599987pt;}
.x26_c00460{left:444.141587pt;}
.x3b_c00460{left:445.857587pt;}
.xc_c00460{left:463.769987pt;}
.x17_c00460{left:464.878787pt;}
.x20_c00460{left:473.590787pt;}
.x56_c00460{left:475.328787pt;}
.x2e_c00460{left:484.106787pt;}
.x68_c00460{left:485.127587pt;}
.x27_c00460{left:493.241187pt;}
.x64_c00460{left:503.057587pt;}
.x57_c00460{left:504.469987pt;}
.x50_c00460{left:512.878387pt;}
.x3c_c00460{left:514.251187pt;}
.x49_c00460{left:523.187587pt;}
.x5d_c00460{left:524.093987pt;}
.xd_c00460{left:524.991587pt;}
.x28_c00460{left:532.519987pt;}
.x70_c00460{left:542.829187pt;}
.x3d_c00460{left:543.849987pt;}
.x4a_c00460{left:551.959187pt;}
.x2f_c00460{left:552.966787pt;}
.x29_c00460{left:562.673187pt;}
.x18_c00460{left:563.570787pt;}
.x3e_c00460{left:572.291587pt;}
.x65_c00460{left:573.426787pt;}
.x4b_c00460{left:582.063987pt;}
.x19_c00460{left:583.344387pt;}
.xe_c00460{left:584.263987pt;}
.x53_c00460{left:587.775187pt;}
.x30_c00460{left:591.893587pt;}
.x5e_c00460{left:592.896787pt;}
.x54_c00460{left:600.636387pt;}
.x2a_c00460{left:601.731987pt;}
.x3f_c00460{left:602.893587pt;}
.x45_c00460{left:611.081987pt;}
.x7d_c00460{left:618.887587pt;}
.x5f_c00460{left:621.193187pt;}
.xf_c00460{left:623.890387pt;}
.x74_c00460{left:628.334387pt;}
.x2b_c00460{left:631.647587pt;}
.x10_c00460{left:633.187587pt;}
.x3_c00460{left:634.639587pt;}
.x7c_c00460{left:640.698387pt;}
.x31_c00460{left:652.274787pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f4010aac726a7a7026c0fd98.woff2')format("woff");}.ff1_c00461{font-family:ff1_c00461;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00461;src:url('chunks/assets/font_c66d1480a7d3204ad15986a2.woff2')format("woff");}.ff2_c00461{font-family:ff2_c00461;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00461;src:url('chunks/assets/font_89dd8d020f5452d3978e831c.woff2')format("woff");}.ff3_c00461{font-family:ff3_c00461;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4b_c00461{transform:matrix(0.014707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.014707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.014707,0.000000,0.000000,0.250000,0,0);}
.m61_c00461{transform:matrix(0.020409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020409,0.000000,0.000000,0.250000,0,0);}
.m63_c00461{transform:matrix(0.035715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.035715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.035715,0.000000,0.000000,0.250000,0,0);}
.m53_c00461{transform:matrix(0.039216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.039216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.039216,0.000000,0.000000,0.250000,0,0);}
.m4f_c00461{transform:matrix(0.044118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.044118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.044118,0.000000,0.000000,0.250000,0,0);}
.m66_c00461{transform:matrix(0.082848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.082848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.082848,0.000000,0.000000,0.250000,0,0);}
.m31_c00461{transform:matrix(0.083047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083047,0.000000,0.000000,0.250000,0,0);}
.m49_c00461{transform:matrix(0.085784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085784,0.000000,0.000000,0.250000,0,0);}
.m4e_c00461{transform:matrix(0.091176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091176,0.000000,0.000000,0.250000,0,0);}
.m54_c00461{transform:matrix(0.093514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093514,0.000000,0.000000,0.250000,0,0);}
.m4a_c00461{transform:matrix(0.095098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095098,0.000000,0.000000,0.250000,0,0);}
.m64_c00461{transform:matrix(0.095664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095664,0.000000,0.000000,0.250000,0,0);}
.m67_c00461{transform:matrix(0.100765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100765,0.000000,0.000000,0.250000,0,0);}
.m4d_c00461{transform:matrix(0.109586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109586,0.000000,0.000000,0.250000,0,0);}
.m51_c00461{transform:matrix(0.111291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111291,0.000000,0.000000,0.250000,0,0);}
.m4c_c00461{transform:matrix(0.112745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112745,0.000000,0.000000,0.250000,0,0);}
.m50_c00461{transform:matrix(0.117647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117647,0.000000,0.000000,0.250000,0,0);}
.m9e_c00461{transform:matrix(0.121348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121348,0.000000,0.000000,0.250000,0,0);}
.m68_c00461{transform:matrix(0.126984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126984,0.000000,0.000000,0.250000,0,0);}
.m62_c00461{transform:matrix(0.132653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132653,0.000000,0.000000,0.250000,0,0);}
.mae_c00461{transform:matrix(0.133170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133170,0.000000,0.000000,0.250000,0,0);}
.m52_c00461{transform:matrix(0.137255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137255,0.000000,0.000000,0.250000,0,0);}
.m48_c00461{transform:matrix(0.147058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147058,0.000000,0.000000,0.250000,0,0);}
.m13_c00461{transform:matrix(0.159884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159884,0.000000,0.000000,0.250000,0,0);}
.mc_c00461{transform:matrix(0.177558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177558,0.000000,0.000000,0.250000,0,0);}
.m5d_c00461{transform:matrix(0.179564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179564,0.000000,0.000000,0.250000,0,0);}
.m9f_c00461{transform:matrix(0.200644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200644,0.000000,0.000000,0.250000,0,0);}
.m65_c00461{transform:matrix(0.209676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209676,0.000000,0.000000,0.250000,0,0);}
.m0_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);}
.m5c_c00461{transform:matrix(0.250254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250254,0.000000,0.000000,0.250000,0,0);}
.m1f_c00461{transform:matrix(0.251237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251237,0.000000,0.000000,0.250000,0,0);}
.md_c00461{transform:matrix(0.251553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251553,0.000000,0.000000,0.250000,0,0);}
.m80_c00461{transform:matrix(0.255332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255332,0.000000,0.000000,0.250000,0,0);}
.m7e_c00461{transform:matrix(0.257712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257712,0.000000,0.000000,0.250000,0,0);}
.m9a_c00461{transform:matrix(0.259941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259941,0.000000,0.000000,0.250000,0,0);}
.m3e_c00461{transform:matrix(0.260203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260203,0.000000,0.000000,0.250000,0,0);}
.m79_c00461{transform:matrix(0.261937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261937,0.000000,0.000000,0.250000,0,0);}
.m1a_c00461{transform:matrix(0.262415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262415,0.000000,0.000000,0.250000,0,0);}
.m57_c00461{transform:matrix(0.262852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262852,0.000000,0.000000,0.250000,0,0);}
.ma0_c00461{transform:matrix(0.262924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262924,0.000000,0.000000,0.250000,0,0);}
.m10_c00461{transform:matrix(0.263166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263166,0.000000,0.000000,0.250000,0,0);}
.m75_c00461{transform:matrix(0.264660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264660,0.000000,0.000000,0.250000,0,0);}
.ma9_c00461{transform:matrix(0.265908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265908,0.000000,0.000000,0.250000,0,0);}
.m59_c00461{transform:matrix(0.266057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266057,0.000000,0.000000,0.250000,0,0);}
.mac_c00461{transform:matrix(0.266562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266562,0.000000,0.000000,0.250000,0,0);}
.m22_c00461{transform:matrix(0.266768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266768,0.000000,0.000000,0.250000,0,0);}
.m27_c00461{transform:matrix(0.268705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268705,0.000000,0.000000,0.250000,0,0);}
.m37_c00461{transform:matrix(0.269115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269115,0.000000,0.000000,0.250000,0,0);}
.m90_c00461{transform:matrix(0.269605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269605,0.000000,0.000000,0.250000,0,0);}
.m3d_c00461{transform:matrix(0.269727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269727,0.000000,0.000000,0.250000,0,0);}
.ma7_c00461{transform:matrix(0.269879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269879,0.000000,0.000000,0.250000,0,0);}
.m7a_c00461{transform:matrix(0.269914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269914,0.000000,0.000000,0.250000,0,0);}
.m9c_c00461{transform:matrix(0.270758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270758,0.000000,0.000000,0.250000,0,0);}
.m77_c00461{transform:matrix(0.271059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271059,0.000000,0.000000,0.250000,0,0);}
.m60_c00461{transform:matrix(0.271127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271127,0.000000,0.000000,0.250000,0,0);}
.m55_c00461{transform:matrix(0.271270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271270,0.000000,0.000000,0.250000,0,0);}
.m45_c00461{transform:matrix(0.271419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271419,0.000000,0.000000,0.250000,0,0);}
.m4_c00461{transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);}
.m2e_c00461{transform:matrix(0.271973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271973,0.000000,0.000000,0.250000,0,0);}
.m7f_c00461{transform:matrix(0.272163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272163,0.000000,0.000000,0.250000,0,0);}
.m14_c00461{transform:matrix(0.272173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272173,0.000000,0.000000,0.250000,0,0);}
.m7b_c00461{transform:matrix(0.272267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272267,0.000000,0.000000,0.250000,0,0);}
.maf_c00461{transform:matrix(0.272418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272418,0.000000,0.000000,0.250000,0,0);}
.m2f_c00461{transform:matrix(0.273934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273934,0.000000,0.000000,0.250000,0,0);}
.m81_c00461{transform:matrix(0.274105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274105,0.000000,0.000000,0.250000,0,0);}
.m47_c00461{transform:matrix(0.274532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274532,0.000000,0.000000,0.250000,0,0);}
.m87_c00461{transform:matrix(0.275231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275231,0.000000,0.000000,0.250000,0,0);}
.m98_c00461{transform:matrix(0.276274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276274,0.000000,0.000000,0.250000,0,0);}
.m70_c00461{transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);}
.m5b_c00461{transform:matrix(0.277012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277012,0.000000,0.000000,0.250000,0,0);}
.m32_c00461{transform:matrix(0.277090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277090,0.000000,0.000000,0.250000,0,0);}
.m7c_c00461{transform:matrix(0.277150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277150,0.000000,0.000000,0.250000,0,0);}
.m9d_c00461{transform:matrix(0.277422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277422,0.000000,0.000000,0.250000,0,0);}
.mbc_c00461{transform:matrix(0.278289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278289,0.000000,0.000000,0.250000,0,0);}
.ma6_c00461{transform:matrix(0.278517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278517,0.000000,0.000000,0.250000,0,0);}
.m86_c00461{transform:matrix(0.279348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279348,0.000000,0.000000,0.250000,0,0);}
.ma5_c00461{transform:matrix(0.279429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279429,0.000000,0.000000,0.250000,0,0);}
.m56_c00461{transform:matrix(0.280202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280202,0.000000,0.000000,0.250000,0,0);}
.m2c_c00461{transform:matrix(0.280799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280799,0.000000,0.000000,0.250000,0,0);}
.mf_c00461{transform:matrix(0.281410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281410,0.000000,0.000000,0.250000,0,0);}
.m93_c00461{transform:matrix(0.281471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281471,0.000000,0.000000,0.250000,0,0);}
.m7d_c00461{transform:matrix(0.281646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281646,0.000000,0.000000,0.250000,0,0);}
.m1_c00461{transform:matrix(0.282286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282286,0.000000,0.000000,0.250000,0,0);}
.m3_c00461{transform:matrix(0.282650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282650,0.000000,0.000000,0.250000,0,0);}
.m3f_c00461{transform:matrix(0.284129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284129,0.000000,0.000000,0.250000,0,0);}
.m8_c00461{transform:matrix(0.284164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284164,0.000000,0.000000,0.250000,0,0);}
.m9b_c00461{transform:matrix(0.284794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284794,0.000000,0.000000,0.250000,0,0);}
.mbd_c00461{transform:matrix(0.285128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285128,0.000000,0.000000,0.250000,0,0);}
.m6a_c00461{transform:matrix(0.286389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286389,0.000000,0.000000,0.250000,0,0);}
.m43_c00461{transform:matrix(0.286745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286745,0.000000,0.000000,0.250000,0,0);}
.m28_c00461{transform:matrix(0.286762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286762,0.000000,0.000000,0.250000,0,0);}
.m8a_c00461{transform:matrix(0.287231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287231,0.000000,0.000000,0.250000,0,0);}
.m24_c00461{transform:matrix(0.287319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287319,0.000000,0.000000,0.250000,0,0);}
.mad_c00461{transform:matrix(0.287345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287345,0.000000,0.000000,0.250000,0,0);}
.m2a_c00461{transform:matrix(0.288321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288321,0.000000,0.000000,0.250000,0,0);}
.mb3_c00461{transform:matrix(0.288702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288702,0.000000,0.000000,0.250000,0,0);}
.m2b_c00461{transform:matrix(0.288840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288840,0.000000,0.000000,0.250000,0,0);}
.m85_c00461{transform:matrix(0.288917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288917,0.000000,0.000000,0.250000,0,0);}
.m35_c00461{transform:matrix(0.289881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289881,0.000000,0.000000,0.250000,0,0);}
.m16_c00461{transform:matrix(0.292260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292260,0.000000,0.000000,0.250000,0,0);}
.m74_c00461{transform:matrix(0.292501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292501,0.000000,0.000000,0.250000,0,0);}
.m96_c00461{transform:matrix(0.292935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292935,0.000000,0.000000,0.250000,0,0);}
.m20_c00461{transform:matrix(0.292969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292969,0.000000,0.000000,0.250000,0,0);}
.m95_c00461{transform:matrix(0.295076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295076,0.000000,0.000000,0.250000,0,0);}
.m7_c00461{transform:matrix(0.295448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295448,0.000000,0.000000,0.250000,0,0);}
.mbb_c00461{transform:matrix(0.295549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295549,0.000000,0.000000,0.250000,0,0);}
.m97_c00461{transform:matrix(0.295721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295721,0.000000,0.000000,0.250000,0,0);}
.m3b_c00461{transform:matrix(0.296502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296502,0.000000,0.000000,0.250000,0,0);}
.m1b_c00461{transform:matrix(0.296518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296518,0.000000,0.000000,0.250000,0,0);}
.mb5_c00461{transform:matrix(0.297094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297094,0.000000,0.000000,0.250000,0,0);}
.m78_c00461{transform:matrix(0.297099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297099,0.000000,0.000000,0.250000,0,0);}
.ma8_c00461{transform:matrix(0.298946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298946,0.000000,0.000000,0.250000,0,0);}
.m88_c00461{transform:matrix(0.298999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298999,0.000000,0.000000,0.250000,0,0);}
.m5f_c00461{transform:matrix(0.299195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299195,0.000000,0.000000,0.250000,0,0);}
.mb7_c00461{transform:matrix(0.299404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299404,0.000000,0.000000,0.250000,0,0);}
.m6b_c00461{transform:matrix(0.299513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299513,0.000000,0.000000,0.250000,0,0);}
.m8b_c00461{transform:matrix(0.300913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300913,0.000000,0.000000,0.250000,0,0);}
.ma3_c00461{transform:matrix(0.300918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300918,0.000000,0.000000,0.250000,0,0);}
.mb4_c00461{transform:matrix(0.301892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301892,0.000000,0.000000,0.250000,0,0);}
.me_c00461{transform:matrix(0.302907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302907,0.000000,0.000000,0.250000,0,0);}
.m12_c00461{transform:matrix(0.303787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303787,0.000000,0.000000,0.250000,0,0);}
.m15_c00461{transform:matrix(0.304215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304215,0.000000,0.000000,0.250000,0,0);}
.m2_c00461{transform:matrix(0.304333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304333,0.000000,0.000000,0.250000,0,0);}
.mba_c00461{transform:matrix(0.304358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304358,0.000000,0.000000,0.250000,0,0);}
.m33_c00461{transform:matrix(0.305094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305094,0.000000,0.000000,0.250000,0,0);}
.m91_c00461{transform:matrix(0.306177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306177,0.000000,0.000000,0.250000,0,0);}
.m3c_c00461{transform:matrix(0.306323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306323,0.000000,0.000000,0.250000,0,0);}
.m8d_c00461{transform:matrix(0.307169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307169,0.000000,0.000000,0.250000,0,0);}
.m1e_c00461{transform:matrix(0.309873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309873,0.000000,0.000000,0.250000,0,0);}
.mb2_c00461{transform:matrix(0.310277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310277,0.000000,0.000000,0.250000,0,0);}
.m3a_c00461{transform:matrix(0.310577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310577,0.000000,0.000000,0.250000,0,0);}
.m69_c00461{transform:matrix(0.310696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310696,0.000000,0.000000,0.250000,0,0);}
.m29_c00461{transform:matrix(0.311283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311283,0.000000,0.000000,0.250000,0,0);}
.m38_c00461{transform:matrix(0.311914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311914,0.000000,0.000000,0.250000,0,0);}
.m5e_c00461{transform:matrix(0.311956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311956,0.000000,0.000000,0.250000,0,0);}
.mb0_c00461{transform:matrix(0.312004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312004,0.000000,0.000000,0.250000,0,0);}
.m17_c00461{transform:matrix(0.312635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312635,0.000000,0.000000,0.250000,0,0);}
.m21_c00461{transform:matrix(0.312830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312830,0.000000,0.000000,0.250000,0,0);}
.ma_c00461{transform:matrix(0.313358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313358,0.000000,0.000000,0.250000,0,0);}
.mb_c00461{transform:matrix(0.314645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314645,0.000000,0.000000,0.250000,0,0);}
.m99_c00461{transform:matrix(0.314776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314776,0.000000,0.000000,0.250000,0,0);}
.m89_c00461{transform:matrix(0.315354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315354,0.000000,0.000000,0.250000,0,0);}
.m76_c00461{transform:matrix(0.315797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315797,0.000000,0.000000,0.250000,0,0);}
.m92_c00461{transform:matrix(0.316823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316823,0.000000,0.000000,0.250000,0,0);}
.m8e_c00461{transform:matrix(0.317281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317281,0.000000,0.000000,0.250000,0,0);}
.m19_c00461{transform:matrix(0.317541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317541,0.000000,0.000000,0.250000,0,0);}
.m34_c00461{transform:matrix(0.317816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317816,0.000000,0.000000,0.250000,0,0);}
.m5a_c00461{transform:matrix(0.318086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318086,0.000000,0.000000,0.250000,0,0);}
.m6c_c00461{transform:matrix(0.318321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318321,0.000000,0.000000,0.250000,0,0);}
.m84_c00461{transform:matrix(0.319363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319363,0.000000,0.000000,0.250000,0,0);}
.m6_c00461{transform:matrix(0.319913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319913,0.000000,0.000000,0.250000,0,0);}
.mb8_c00461{transform:matrix(0.320059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320059,0.000000,0.000000,0.250000,0,0);}
.mab_c00461{transform:matrix(0.320610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320610,0.000000,0.000000,0.250000,0,0);}
.m94_c00461{transform:matrix(0.320747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320747,0.000000,0.000000,0.250000,0,0);}
.m6e_c00461{transform:matrix(0.322124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322124,0.000000,0.000000,0.250000,0,0);}
.ma4_c00461{transform:matrix(0.323053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323053,0.000000,0.000000,0.250000,0,0);}
.maa_c00461{transform:matrix(0.325059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325059,0.000000,0.000000,0.250000,0,0);}
.m58_c00461{transform:matrix(0.326731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326731,0.000000,0.000000,0.250000,0,0);}
.m40_c00461{transform:matrix(0.329144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329144,0.000000,0.000000,0.250000,0,0);}
.m83_c00461{transform:matrix(0.329372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329372,0.000000,0.000000,0.250000,0,0);}
.mb6_c00461{transform:matrix(0.329689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329689,0.000000,0.000000,0.250000,0,0);}
.m8f_c00461{transform:matrix(0.329801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329801,0.000000,0.000000,0.250000,0,0);}
.m36_c00461{transform:matrix(0.330002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330002,0.000000,0.000000,0.250000,0,0);}
.m46_c00461{transform:matrix(0.330153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330153,0.000000,0.000000,0.250000,0,0);}
.m18_c00461{transform:matrix(0.331101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331101,0.000000,0.000000,0.250000,0,0);}
.m42_c00461{transform:matrix(0.332489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332489,0.000000,0.000000,0.250000,0,0);}
.m23_c00461{transform:matrix(0.332869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332869,0.000000,0.000000,0.250000,0,0);}
.m25_c00461{transform:matrix(0.333188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333188,0.000000,0.000000,0.250000,0,0);}
.m41_c00461{transform:matrix(0.333475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333475,0.000000,0.000000,0.250000,0,0);}
.m9_c00461{transform:matrix(0.333549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333549,0.000000,0.000000,0.250000,0,0);}
.m8c_c00461{transform:matrix(0.334085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334085,0.000000,0.000000,0.250000,0,0);}
.mb9_c00461{transform:matrix(0.335351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335351,0.000000,0.000000,0.250000,0,0);}
.m1d_c00461{transform:matrix(0.338815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338815,0.000000,0.000000,0.250000,0,0);}
.ma1_c00461{transform:matrix(0.339788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339788,0.000000,0.000000,0.250000,0,0);}
.m1c_c00461{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00461{transform:matrix(0.340314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340314,0.000000,0.000000,0.250000,0,0);}
.m6d_c00461{transform:matrix(0.342720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342720,0.000000,0.000000,0.250000,0,0);}
.ma2_c00461{transform:matrix(0.344792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344792,0.000000,0.000000,0.250000,0,0);}
.m26_c00461{transform:matrix(0.348191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348191,0.000000,0.000000,0.250000,0,0);}
.m72_c00461{transform:matrix(0.349944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349944,0.000000,0.000000,0.250000,0,0);}
.m11_c00461{transform:matrix(0.351562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351562,0.000000,0.000000,0.250000,0,0);}
.m30_c00461{transform:matrix(0.353402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353402,0.000000,0.000000,0.250000,0,0);}
.m2d_c00461{transform:matrix(0.353445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353445,0.000000,0.000000,0.250000,0,0);}
.m39_c00461{transform:matrix(0.357328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357328,0.000000,0.000000,0.250000,0,0);}
.m71_c00461{transform:matrix(0.360565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360565,0.000000,0.000000,0.250000,0,0);}
.m82_c00461{transform:matrix(0.368812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368812,0.000000,0.000000,0.250000,0,0);}
.mb1_c00461{transform:matrix(0.391270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391270,0.000000,0.000000,0.250000,0,0);}
.m5_c00461{transform:matrix(0.397481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397481,0.000000,0.000000,0.250000,0,0);}
.m44_c00461{transform:matrix(0.403692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403692,0.000000,0.000000,0.250000,0,0);}
.m73_c00461{transform:matrix(0.420477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420477,0.000000,0.000000,0.250000,0,0);}
.v0_c00461{vertical-align:0.000000px;}
.ls10_c00461{letter-spacing:-3.236317px;}
.ls11_c00461{letter-spacing:-2.813580px;}
.ls20_c00461{letter-spacing:-2.772000px;}
.ls2_c00461{letter-spacing:-2.661127px;}
.lsa_c00461{letter-spacing:-2.448237px;}
.ls16_c00461{letter-spacing:-2.321550px;}
.ls23_c00461{letter-spacing:-2.217600px;}
.ls3_c00461{letter-spacing:-1.330563px;}
.ls1e_c00461{letter-spacing:-0.547432px;}
.ls5_c00461{letter-spacing:0.000000px;}
.ls8_c00461{letter-spacing:0.156499px;}
.ls14_c00461{letter-spacing:0.319335px;}
.ls18_c00461{letter-spacing:2.930400px;}
.ls0_c00461{letter-spacing:3.059344px;}
.ls1c_c00461{letter-spacing:3.405610px;}
.ls17_c00461{letter-spacing:3.445200px;}
.ls1a_c00461{letter-spacing:3.465000px;}
.lsc_c00461{letter-spacing:3.564000px;}
.ls24_c00461{letter-spacing:3.583810px;}
.ls19_c00461{letter-spacing:3.593700px;}
.lsd_c00461{letter-spacing:3.603610px;}
.ls1b_c00461{letter-spacing:3.672900px;}
.ls1_c00461{letter-spacing:3.801610px;}
.ls6_c00461{letter-spacing:3.920400px;}
.ls21_c00461{letter-spacing:3.950110px;}
.ls1d_c00461{letter-spacing:3.960000px;}
.ls12_c00461{letter-spacing:4.019400px;}
.ls22_c00461{letter-spacing:4.039200px;}
.ls7_c00461{letter-spacing:4.118400px;}
.lse_c00461{letter-spacing:4.128310px;}
.ls9_c00461{letter-spacing:4.197610px;}
.ls13_c00461{letter-spacing:59.875398px;}
.ls4_c00461{letter-spacing:61.300998px;}
.ls1f_c00461{letter-spacing:62.726400px;}
.lsb_c00461{letter-spacing:67.003200px;}
.ls15_c00461{letter-spacing:69.854598px;}
.lsf_c00461{letter-spacing:72.705798px;}
.sc__c00461{text-shadow:none;}
.sc0_c00461{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00461{-webkit-text-stroke:0px transparent;}
.sc0_c00461{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00461{word-spacing:0.000000px;}
.fc0_c00461{color:transparent;}
.fs5_c00461{font-size:20.394000px;}
.fsb_c00461{font-size:22.176000px;}
.fsa_c00461{font-size:33.660000px;}
.fs1a_c00461{font-size:49.500000px;}
.fs15_c00461{font-size:58.608000px;}
.fs11_c00461{font-size:59.875398px;}
.fs2_c00461{font-size:61.300998px;}
.fs1c_c00461{font-size:62.726400px;}
.fs1f_c00461{font-size:63.360000px;}
.fs12_c00461{font-size:66.330000px;}
.fs7_c00461{font-size:67.003200px;}
.fs19_c00461{font-size:68.112198px;}
.fs14_c00461{font-size:68.904000px;}
.fs17_c00461{font-size:69.300000px;}
.fs13_c00461{font-size:69.854598px;}
.fs8_c00461{font-size:71.280000px;}
.fs20_c00461{font-size:71.676198px;}
.fs16_c00461{font-size:71.874000px;}
.fs9_c00461{font-size:72.072198px;}
.fsd_c00461{font-size:72.705798px;}
.fs18_c00461{font-size:73.458000px;}
.fse_c00461{font-size:74.448000px;}
.fs1_c00461{font-size:76.032198px;}
.fs3_c00461{font-size:78.408000px;}
.fs1d_c00461{font-size:79.002198px;}
.fs1b_c00461{font-size:79.200000px;}
.fs10_c00461{font-size:80.388000px;}
.fs1e_c00461{font-size:80.784000px;}
.fs4_c00461{font-size:82.368000px;}
.fsc_c00461{font-size:82.566198px;}
.fs6_c00461{font-size:83.952198px;}
.fs0_c00461{font-size:87.912198px;}
.fsf_c00461{font-size:92.466198px;}
.y0_c00461{bottom:0.000000px;}
.y1_c00461{bottom:76.500000px;}
.y20_c00461{bottom:117.167535px;}
.y1e_c00461{bottom:118.236735px;}
.y1f_c00461{bottom:149.956335px;}
.y1d_c00461{bottom:151.025535px;}
.y1b_c00461{bottom:218.736585px;}
.y1c_c00461{bottom:219.810735px;}
.y1a_c00461{bottom:251.173935px;}
.y19_c00461{bottom:282.893535px;}
.y18_c00461{bottom:316.395135px;}
.y16_c00461{bottom:348.109785px;}
.y17_c00461{bottom:353.460735px;}
.y15_c00461{bottom:380.547135px;}
.y14_c00461{bottom:412.618185px;}
.y13_c00461{bottom:445.406985px;}
.y12_c00461{bottom:477.487935px;}
.y11_c00461{bottom:507.425535px;}
.y10_c00461{bottom:541.283535px;}
.yf_c00461{bottom:570.864735px;}
.ye_c00461{bottom:606.143385px;}
.yd_c00461{bottom:621.473535px;}
.yc_c00461{bottom:636.442335px;}
.yb_c00461{bottom:701.663535px;}
.ya_c00461{bottom:734.452335px;}
.y9_c00461{bottom:764.741385px;}
.y8_c00461{bottom:798.604335px;}
.y6_c00461{bottom:830.680335px;}
.y7_c00461{bottom:841.372335px;}
.y5_c00461{bottom:862.751385px;}
.y4_c00461{bottom:895.183785px;}
.y3_c00461{bottom:927.264735px;}
.y2_c00461{bottom:1063.404585px;}
.h7_c00461{height:20.015596px;}
.hd_c00461{height:23.128875px;}
.hc_c00461{height:33.035449px;}
.h13_c00461{height:39.877015px;}
.h4_c00461{height:40.826465px;}
.h1e_c00461{height:41.775782px;}
.h9_c00461{height:44.624131px;}
.h15_c00461{height:46.523162px;}
.hf_c00461{height:48.422061px;}
.h1c_c00461{height:51.626953px;}
.h17_c00461{height:57.520547px;}
.h21_c00461{height:62.184375px;}
.h16_c00461{height:67.625508px;}
.h14_c00461{height:69.180117px;}
.h18_c00461{height:70.540400px;}
.hb_c00461{height:70.734921px;}
.h1b_c00461{height:71.038894px;}
.h1a_c00461{height:72.095010px;}
.h19_c00461{height:72.277734px;}
.ha_c00461{height:74.342813px;}
.h3_c00461{height:74.621444px;}
.h22_c00461{height:74.756035px;}
.h5_c00461{height:76.953164px;}
.h1f_c00461{height:77.536337px;}
.h10_c00461{height:77.646938px;}
.h1d_c00461{height:77.730469px;}
.h12_c00461{height:78.896426px;}
.h20_c00461{height:79.285078px;}
.h6_c00461{height:80.839688px;}
.he_c00461{height:81.034208px;}
.h8_c00461{height:82.394491px;}
.h2_c00461{height:86.281015px;}
.h11_c00461{height:96.439355px;}
.h1_c00461{height:1110.000000px;}
.h0_c00461{height:1263.000000px;}
.w1_c00461{width:760.500000px;}
.w0_c00461{width:892.500000px;}
.x0_c00461{left:0.000000px;}
.x1_c00461{left:66.000000px;}
.x56_c00461{left:97.441635px;}
.x67_c00461{left:98.679135px;}
.xd_c00461{left:99.758235px;}
.x3_c00461{left:102.040185px;}
.x63_c00461{left:119.870085px;}
.x52_c00461{left:121.033335px;}
.x57_c00461{left:131.329335px;}
.x28_c00461{left:134.304285px;}
.x5e_c00461{left:140.872935px;}
.x64_c00461{left:142.140135px;}
.x2e_c00461{left:146.298135px;}
.x6b_c00461{left:151.550085px;}
.x4e_c00461{left:153.480585px;}
.x31_c00461{left:155.391285px;}
.x45_c00461{left:164.964585px;}
.x1c_c00461{left:166.157535px;}
.x69_c00461{left:175.260585px;}
.x58_c00461{left:185.071485px;}
.x53_c00461{left:187.769235px;}
.x32_c00461{left:189.140385px;}
.x6c_c00461{left:196.273335px;}
.x4_c00461{left:198.169185px;}
.x23_c00461{left:199.867035px;}
.x46_c00461{left:207.871185px;}
.x38_c00461{left:210.197685px;}
.x13_c00461{left:211.484685px;}
.x6a_c00461{left:219.102735px;}
.x65_c00461{left:230.517435px;}
.x5_c00461{left:232.284585px;}
.x39_c00461{left:241.080735px;}
.x33_c00461{left:252.030135px;}
.x47_c00461{left:253.693335px;}
.x14_c00461{left:254.980335px;}
.xe_c00461{left:266.454435px;}
.x48_c00461{left:273.864585px;}
.x49_c00461{left:274.938735px;}
.xf_c00461{left:276.527685px;}
.x4a_c00461{left:284.561535px;}
.x4f_c00461{left:286.838535px;}
.x15_c00461{left:287.912685px;}
.x2a_c00461{left:297.347385px;}
.x24_c00461{left:299.282835px;}
.x16_c00461{left:308.945235px;}
.x3a_c00461{left:314.855535px;}
.x6f_c00461{left:318.850185px;}
.x6_c00461{left:319.993635px;}
.x50_c00461{left:330.982635px;}
.x2b_c00461{left:332.066685px;}
.x54_c00461{left:333.130935px;}
.x6d_c00461{left:340.100535px;}
.x3b_c00461{left:341.585535px;}
.x7_c00461{left:352.718085px;}
.x34_c00461{left:354.292185px;}
.x1d_c00461{left:364.771335px;}
.x3c_c00461{left:374.809935px;}
.x3d_c00461{left:385.422735px;}
.x8_c00461{left:386.516685px;}
.x10_c00461{left:397.560135px;}
.x59_c00461{left:407.153235px;}
.x1e_c00461{left:408.895635px;}
.x17_c00461{left:419.924235px;}
.x35_c00461{left:429.606435px;}
.x55_c00461{left:430.705335px;}
.x5a_c00461{left:441.753735px;}
.x3e_c00461{left:450.643935px;}
.x2c_c00461{left:454.306935px;}
.x51_c00461{left:464.296035px;}
.x3f_c00461{left:467.201685px;}
.x6e_c00461{left:472.626885px;}
.x40_c00461{left:473.735685px;}
.x18_c00461{left:476.037435px;}
.x25_c00461{left:477.458085px;}
.x41_c00461{left:484.145535px;}
.x1f_c00461{left:486.437385px;}
.x5f_c00461{left:488.174835px;}
.x5b_c00461{left:495.852285px;}
.x70_c00461{left:497.084835px;}
.x4b_c00461{left:500.539935px;}
.x30_c00461{left:507.222435px;}
.x60_c00461{left:509.870685px;}
.x36_c00461{left:519.008385px;}
.x20_c00461{left:520.216185px;}
.x19_c00461{left:529.358835px;}
.x9_c00461{left:531.215085px;}
.x4c_c00461{left:539.387535px;}
.x26_c00461{left:541.615035px;}
.x11_c00461{left:551.138835px;}
.x5c_c00461{left:552.529785px;}
.xa_c00461{left:563.404935px;}
.x61_c00461{left:573.898935px;}
.x12_c00461{left:584.595885px;}
.x42_c00461{left:587.600535px;}
.x27_c00461{left:595.664085px;}
.x29_c00461{left:607.212435px;}
.x1a_c00461{left:618.661785px;}
.x21_c00461{left:628.655835px;}
.x4d_c00461{left:631.403085px;}
.x5d_c00461{left:638.446935px;}
.x37_c00461{left:640.718985px;}
.x43_c00461{left:642.481185px;}
.xb_c00461{left:652.123785px;}
.x66_c00461{left:662.162385px;}
.x1b_c00461{left:663.182085px;}
.x62_c00461{left:674.557185px;}
.x22_c00461{left:676.903485px;}
.xc_c00461{left:684.571035px;}
.x44_c00461{left:695.451135px;}
.x2f_c00461{left:699.628935px;}
.x2d_c00461{left:707.390535px;}
.x2_c00461{left:708.410235px;}
.x68_c00461{left:719.824935px;}
@media print{
.v0_c00461{vertical-align:0.000000pt;}
.ls10_c00461{letter-spacing:-2.876726pt;}
.ls11_c00461{letter-spacing:-2.500960pt;}
.ls20_c00461{letter-spacing:-2.464000pt;}
.ls2_c00461{letter-spacing:-2.365446pt;}
.lsa_c00461{letter-spacing:-2.176210pt;}
.ls16_c00461{letter-spacing:-2.063600pt;}
.ls23_c00461{letter-spacing:-1.971200pt;}
.ls3_c00461{letter-spacing:-1.182723pt;}
.ls1e_c00461{letter-spacing:-0.486606pt;}
.ls5_c00461{letter-spacing:0.000000pt;}
.ls8_c00461{letter-spacing:0.139110pt;}
.ls14_c00461{letter-spacing:0.283854pt;}
.ls18_c00461{letter-spacing:2.604800pt;}
.ls0_c00461{letter-spacing:2.719417pt;}
.ls1c_c00461{letter-spacing:3.027209pt;}
.ls17_c00461{letter-spacing:3.062400pt;}
.ls1a_c00461{letter-spacing:3.080000pt;}
.lsc_c00461{letter-spacing:3.168000pt;}
.ls24_c00461{letter-spacing:3.185609pt;}
.ls19_c00461{letter-spacing:3.194400pt;}
.lsd_c00461{letter-spacing:3.203209pt;}
.ls1b_c00461{letter-spacing:3.264800pt;}
.ls1_c00461{letter-spacing:3.379209pt;}
.ls6_c00461{letter-spacing:3.484800pt;}
.ls21_c00461{letter-spacing:3.511209pt;}
.ls1d_c00461{letter-spacing:3.520000pt;}
.ls12_c00461{letter-spacing:3.572800pt;}
.ls22_c00461{letter-spacing:3.590400pt;}
.ls7_c00461{letter-spacing:3.660800pt;}
.lse_c00461{letter-spacing:3.669609pt;}
.ls9_c00461{letter-spacing:3.731209pt;}
.ls13_c00461{letter-spacing:53.222576pt;}
.ls4_c00461{letter-spacing:54.489776pt;}
.ls1f_c00461{letter-spacing:55.756800pt;}
.lsb_c00461{letter-spacing:59.558400pt;}
.ls15_c00461{letter-spacing:62.092976pt;}
.lsf_c00461{letter-spacing:64.627376pt;}
.ws0_c00461{word-spacing:0.000000pt;}
.fs5_c00461{font-size:18.128000pt;}
.fsb_c00461{font-size:19.712000pt;}
.fsa_c00461{font-size:29.920000pt;}
.fs1a_c00461{font-size:44.000000pt;}
.fs15_c00461{font-size:52.096000pt;}
.fs11_c00461{font-size:53.222576pt;}
.fs2_c00461{font-size:54.489776pt;}
.fs1c_c00461{font-size:55.756800pt;}
.fs1f_c00461{font-size:56.320000pt;}
.fs12_c00461{font-size:58.960000pt;}
.fs7_c00461{font-size:59.558400pt;}
.fs19_c00461{font-size:60.544176pt;}
.fs14_c00461{font-size:61.248000pt;}
.fs17_c00461{font-size:61.600000pt;}
.fs13_c00461{font-size:62.092976pt;}
.fs8_c00461{font-size:63.360000pt;}
.fs20_c00461{font-size:63.712176pt;}
.fs16_c00461{font-size:63.888000pt;}
.fs9_c00461{font-size:64.064176pt;}
.fsd_c00461{font-size:64.627376pt;}
.fs18_c00461{font-size:65.296000pt;}
.fse_c00461{font-size:66.176000pt;}
.fs1_c00461{font-size:67.584176pt;}
.fs3_c00461{font-size:69.696000pt;}
.fs1d_c00461{font-size:70.224176pt;}
.fs1b_c00461{font-size:70.400000pt;}
.fs10_c00461{font-size:71.456000pt;}
.fs1e_c00461{font-size:71.808000pt;}
.fs4_c00461{font-size:73.216000pt;}
.fsc_c00461{font-size:73.392176pt;}
.fs6_c00461{font-size:74.624176pt;}
.fs0_c00461{font-size:78.144176pt;}
.fsf_c00461{font-size:82.192176pt;}
.y0_c00461{bottom:0.000000pt;}
.y1_c00461{bottom:68.000000pt;}
.y20_c00461{bottom:104.148920pt;}
.y1e_c00461{bottom:105.099320pt;}
.y1f_c00461{bottom:133.294520pt;}
.y1d_c00461{bottom:134.244920pt;}
.y1b_c00461{bottom:194.432520pt;}
.y1c_c00461{bottom:195.387320pt;}
.y1a_c00461{bottom:223.265720pt;}
.y19_c00461{bottom:251.460920pt;}
.y18_c00461{bottom:281.240120pt;}
.y16_c00461{bottom:309.430920pt;}
.y17_c00461{bottom:314.187320pt;}
.y15_c00461{bottom:338.264120pt;}
.y14_c00461{bottom:366.771720pt;}
.y13_c00461{bottom:395.917320pt;}
.y12_c00461{bottom:424.433720pt;}
.y11_c00461{bottom:451.044920pt;}
.y10_c00461{bottom:481.140920pt;}
.yf_c00461{bottom:507.435320pt;}
.ye_c00461{bottom:538.794120pt;}
.yd_c00461{bottom:552.420920pt;}
.yc_c00461{bottom:565.726520pt;}
.yb_c00461{bottom:623.700920pt;}
.ya_c00461{bottom:652.846520pt;}
.y9_c00461{bottom:679.770120pt;}
.y8_c00461{bottom:709.870520pt;}
.y6_c00461{bottom:738.382520pt;}
.y7_c00461{bottom:747.886520pt;}
.y5_c00461{bottom:766.890120pt;}
.y4_c00461{bottom:795.718920pt;}
.y3_c00461{bottom:824.235320pt;}
.y2_c00461{bottom:945.248520pt;}
.h7_c00461{height:17.791641pt;}
.hd_c00461{height:20.559000pt;}
.hc_c00461{height:29.364844pt;}
.h13_c00461{height:35.446236pt;}
.h4_c00461{height:36.290191pt;}
.h1e_c00461{height:37.134029pt;}
.h9_c00461{height:39.665894pt;}
.h15_c00461{height:41.353922pt;}
.hf_c00461{height:43.041832pt;}
.h1c_c00461{height:45.890625pt;}
.h17_c00461{height:51.129375pt;}
.h21_c00461{height:55.275000pt;}
.h16_c00461{height:60.111562pt;}
.h14_c00461{height:61.493438pt;}
.h18_c00461{height:62.702578pt;}
.hb_c00461{height:62.875485pt;}
.h1b_c00461{height:63.145684pt;}
.h1a_c00461{height:64.084453pt;}
.h19_c00461{height:64.246875pt;}
.ha_c00461{height:66.082500pt;}
.h3_c00461{height:66.330173pt;}
.h22_c00461{height:66.449809pt;}
.h5_c00461{height:68.402813pt;}
.h1f_c00461{height:68.921188pt;}
.h10_c00461{height:69.019500pt;}
.h1d_c00461{height:69.093750pt;}
.h12_c00461{height:70.130156pt;}
.h20_c00461{height:70.475625pt;}
.h6_c00461{height:71.857500pt;}
.he_c00461{height:72.030407pt;}
.h8_c00461{height:73.239548pt;}
.h2_c00461{height:76.694235pt;}
.h11_c00461{height:85.723871pt;}
.h1_c00461{height:986.666667pt;}
.h0_c00461{height:1122.666667pt;}
.w1_c00461{width:676.000000pt;}
.w0_c00461{width:793.333333pt;}
.x0_c00461{left:0.000000pt;}
.x1_c00461{left:58.666667pt;}
.x56_c00461{left:86.614787pt;}
.x67_c00461{left:87.714787pt;}
.xd_c00461{left:88.673987pt;}
.x3_c00461{left:90.702387pt;}
.x63_c00461{left:106.551187pt;}
.x52_c00461{left:107.585187pt;}
.x57_c00461{left:116.737187pt;}
.x28_c00461{left:119.381587pt;}
.x5e_c00461{left:125.220387pt;}
.x64_c00461{left:126.346787pt;}
.x2e_c00461{left:130.042787pt;}
.x6b_c00461{left:134.711187pt;}
.x4e_c00461{left:136.427187pt;}
.x31_c00461{left:138.125587pt;}
.x45_c00461{left:146.635187pt;}
.x1c_c00461{left:147.695587pt;}
.x69_c00461{left:155.787187pt;}
.x58_c00461{left:164.507987pt;}
.x53_c00461{left:166.905987pt;}
.x32_c00461{left:168.124787pt;}
.x6c_c00461{left:174.465187pt;}
.x4_c00461{left:176.150387pt;}
.x23_c00461{left:177.659587pt;}
.x46_c00461{left:184.774387pt;}
.x38_c00461{left:186.842387pt;}
.x13_c00461{left:187.986387pt;}
.x6a_c00461{left:194.757987pt;}
.x65_c00461{left:204.904387pt;}
.x5_c00461{left:206.475187pt;}
.x39_c00461{left:214.293987pt;}
.x33_c00461{left:224.026787pt;}
.x47_c00461{left:225.505187pt;}
.x14_c00461{left:226.649187pt;}
.xe_c00461{left:236.848387pt;}
.x48_c00461{left:243.435187pt;}
.x49_c00461{left:244.389987pt;}
.xf_c00461{left:245.802387pt;}
.x4a_c00461{left:252.943587pt;}
.x4f_c00461{left:254.967587pt;}
.x15_c00461{left:255.922387pt;}
.x2a_c00461{left:264.308787pt;}
.x24_c00461{left:266.029187pt;}
.x16_c00461{left:274.617987pt;}
.x3a_c00461{left:279.871587pt;}
.x6f_c00461{left:283.422387pt;}
.x6_c00461{left:284.438787pt;}
.x50_c00461{left:294.206787pt;}
.x2b_c00461{left:295.170387pt;}
.x54_c00461{left:296.116387pt;}
.x6d_c00461{left:302.311587pt;}
.x3b_c00461{left:303.631587pt;}
.x7_c00461{left:313.527187pt;}
.x34_c00461{left:314.926387pt;}
.x1d_c00461{left:324.241187pt;}
.x3c_c00461{left:333.164387pt;}
.x3d_c00461{left:342.597987pt;}
.x8_c00461{left:343.570387pt;}
.x10_c00461{left:353.386787pt;}
.x59_c00461{left:361.913987pt;}
.x1e_c00461{left:363.462787pt;}
.x17_c00461{left:373.265987pt;}
.x35_c00461{left:381.872387pt;}
.x55_c00461{left:382.849187pt;}
.x5a_c00461{left:392.669987pt;}
.x3e_c00461{left:400.572387pt;}
.x2c_c00461{left:403.828387pt;}
.x51_c00461{left:412.707587pt;}
.x3f_c00461{left:415.290387pt;}
.x6e_c00461{left:420.112787pt;}
.x40_c00461{left:421.098387pt;}
.x18_c00461{left:423.144387pt;}
.x25_c00461{left:424.407187pt;}
.x41_c00461{left:430.351587pt;}
.x1f_c00461{left:432.388787pt;}
.x5f_c00461{left:433.933187pt;}
.x5b_c00461{left:440.757587pt;}
.x70_c00461{left:441.853187pt;}
.x4b_c00461{left:444.924387pt;}
.x30_c00461{left:450.864387pt;}
.x60_c00461{left:453.218387pt;}
.x36_c00461{left:461.340787pt;}
.x20_c00461{left:462.414387pt;}
.x19_c00461{left:470.541187pt;}
.x9_c00461{left:472.191187pt;}
.x4c_c00461{left:479.455587pt;}
.x26_c00461{left:481.435587pt;}
.x11_c00461{left:489.901187pt;}
.x5c_c00461{left:491.137587pt;}
.xa_c00461{left:500.804387pt;}
.x61_c00461{left:510.132387pt;}
.x12_c00461{left:519.640787pt;}
.x42_c00461{left:522.311587pt;}
.x27_c00461{left:529.479187pt;}
.x29_c00461{left:539.744387pt;}
.x1a_c00461{left:549.921587pt;}
.x21_c00461{left:558.805187pt;}
.x4d_c00461{left:561.247187pt;}
.x5d_c00461{left:567.508387pt;}
.x37_c00461{left:569.527987pt;}
.x43_c00461{left:571.094387pt;}
.xb_c00461{left:579.665587pt;}
.x66_c00461{left:588.588787pt;}
.x1b_c00461{left:589.495187pt;}
.x62_c00461{left:599.606387pt;}
.x22_c00461{left:601.691987pt;}
.xc_c00461{left:608.507587pt;}
.x44_c00461{left:618.178787pt;}
.x2f_c00461{left:621.892387pt;}
.x2d_c00461{left:628.791587pt;}
.x2_c00461{left:629.697987pt;}
.x68_c00461{left:639.844387pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a383a23ebb5ea986cd5b711c.woff2')format("woff");}.ff1_c00462{font-family:ff1_c00462;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00462;src:url('chunks/assets/font_1e8bba6cbcc1951763b4a91a.woff2')format("woff");}.ff2_c00462{font-family:ff2_c00462;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00462;src:url('chunks/assets/font_6ad9a35364a965d145300bc8.woff2')format("woff");}.ff3_c00462{font-family:ff3_c00462;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00462;src:url('chunks/assets/font_73c1b3e029c4049c19d4b9f7.woff2')format("woff");}.ff4_c00462{font-family:ff4_c00462;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00462;src:url('chunks/assets/font_b2d28aed84624f8c902a9052.woff2')format("woff");}.ff5_c00462{font-family:ff5_c00462;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00462;src:url('chunks/assets/font_50a7f4074e8c28503da46d14.woff2')format("woff");}.ff6_c00462{font-family:ff6_c00462;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1c_c00462{transform:matrix(0.022223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.022223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.022223,0.000000,0.000000,0.250000,0,0);}
.m97_c00462{transform:matrix(0.025642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.025642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.025642,0.000000,0.000000,0.250000,0,0);}
.m51_c00462{transform:matrix(0.037501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.037501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.037501,0.000000,0.000000,0.250000,0,0);}
.m1d_c00462{transform:matrix(0.072223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072223,0.000000,0.000000,0.250000,0,0);}
.m1b_c00462{transform:matrix(0.103333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103333,0.000000,0.000000,0.250000,0,0);}
.m2_c00462{transform:matrix(0.113638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113638,0.000000,0.000000,0.250000,0,0);}
.m1e_c00462{transform:matrix(0.116666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116666,0.000000,0.000000,0.250000,0,0);}
.m50_c00462{transform:matrix(0.120313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120313,0.000000,0.000000,0.250000,0,0);}
.m42_c00462{transform:matrix(0.122071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122071,0.000000,0.000000,0.250000,0,0);}
.m5e_c00462{transform:matrix(0.122222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122222,0.000000,0.000000,0.250000,0,0);}
.m98_c00462{transform:matrix(0.123932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123932,0.000000,0.000000,0.250000,0,0);}
.m83_c00462{transform:matrix(0.124031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124031,0.000000,0.000000,0.250000,0,0);}
.m5f_c00462{transform:matrix(0.128703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128703,0.000000,0.000000,0.250000,0,0);}
.m5d_c00462{transform:matrix(0.140740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140740,0.000000,0.000000,0.250000,0,0);}
.m1f_c00462{transform:matrix(0.145796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145796,0.000000,0.000000,0.250000,0,0);}
.m49_c00462{transform:matrix(0.155364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155364,0.000000,0.000000,0.250000,0,0);}
.m60_c00462{transform:matrix(0.166666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166666,0.000000,0.000000,0.250000,0,0);}
.mb0_c00462{transform:matrix(0.169104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169104,0.000000,0.000000,0.250000,0,0);}
.m46_c00462{transform:matrix(0.222470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222470,0.000000,0.000000,0.250000,0,0);}
.m96_c00462{transform:matrix(0.223594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223594,0.000000,0.000000,0.250000,0,0);}
.m25_c00462{transform:matrix(0.245228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245228,0.000000,0.000000,0.250000,0,0);}
.m24_c00462{transform:matrix(0.246746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246746,0.000000,0.000000,0.250000,0,0);}
.m0_c00462{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.mac_c00462{transform:matrix(0.250060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250060,0.000000,0.000000,0.250000,0,0);}
.m1a_c00462{transform:matrix(0.250387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250387,0.000000,0.000000,0.250000,0,0);}
.m82_c00462{transform:matrix(0.255317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255317,0.000000,0.000000,0.250000,0,0);}
.m81_c00462{transform:matrix(0.255805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255805,0.000000,0.000000,0.250000,0,0);}
.m86_c00462{transform:matrix(0.256458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256458,0.000000,0.000000,0.250000,0,0);}
.m2e_c00462{transform:matrix(0.257934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257934,0.000000,0.000000,0.250000,0,0);}
.m3a_c00462{transform:matrix(0.258849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258849,0.000000,0.000000,0.250000,0,0);}
.ma4_c00462{transform:matrix(0.260034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260034,0.000000,0.000000,0.250000,0,0);}
.m8b_c00462{transform:matrix(0.261302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261302,0.000000,0.000000,0.250000,0,0);}
.m7a_c00462{transform:matrix(0.262004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262004,0.000000,0.000000,0.250000,0,0);}
.m36_c00462{transform:matrix(0.264100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264100,0.000000,0.000000,0.250000,0,0);}
.m1_c00462{transform:matrix(0.265392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265392,0.000000,0.000000,0.250000,0,0);}
.m64_c00462{transform:matrix(0.265552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265552,0.000000,0.000000,0.250000,0,0);}
.m31_c00462{transform:matrix(0.265977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265977,0.000000,0.000000,0.250000,0,0);}
.m3f_c00462{transform:matrix(0.266189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266189,0.000000,0.000000,0.250000,0,0);}
.ma1_c00462{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m94_c00462{transform:matrix(0.268178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268178,0.000000,0.000000,0.250000,0,0);}
.m71_c00462{transform:matrix(0.269715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269715,0.000000,0.000000,0.250000,0,0);}
.m11_c00462{transform:matrix(0.271307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271307,0.000000,0.000000,0.250000,0,0);}
.m2b_c00462{transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);}
.m89_c00462{transform:matrix(0.272417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272417,0.000000,0.000000,0.250000,0,0);}
.m54_c00462{transform:matrix(0.273512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273512,0.000000,0.000000,0.250000,0,0);}
.maa_c00462{transform:matrix(0.273590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273590,0.000000,0.000000,0.250000,0,0);}
.m4d_c00462{transform:matrix(0.273978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273978,0.000000,0.000000,0.250000,0,0);}
.m29_c00462{transform:matrix(0.274532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274532,0.000000,0.000000,0.250000,0,0);}
.maf_c00462{transform:matrix(0.274898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274898,0.000000,0.000000,0.250000,0,0);}
.me_c00462{transform:matrix(0.275231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275231,0.000000,0.000000,0.250000,0,0);}
.m44_c00462{transform:matrix(0.275258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275258,0.000000,0.000000,0.250000,0,0);}
.m65_c00462{transform:matrix(0.275780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275780,0.000000,0.000000,0.250000,0,0);}
.m8d_c00462{transform:matrix(0.275960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275960,0.000000,0.000000,0.250000,0,0);}
.m13_c00462{transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);}
.m3e_c00462{transform:matrix(0.276678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276678,0.000000,0.000000,0.250000,0,0);}
.mc_c00462{transform:matrix(0.277150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277150,0.000000,0.000000,0.250000,0,0);}
.m4e_c00462{transform:matrix(0.278075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278075,0.000000,0.000000,0.250000,0,0);}
.mb5_c00462{transform:matrix(0.279130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279130,0.000000,0.000000,0.250000,0,0);}
.m32_c00462{transform:matrix(0.279348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279348,0.000000,0.000000,0.250000,0,0);}
.ma_c00462{transform:matrix(0.279376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279376,0.000000,0.000000,0.250000,0,0);}
.m3b_c00462{transform:matrix(0.280121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280121,0.000000,0.000000,0.250000,0,0);}
.m58_c00462{transform:matrix(0.280822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280822,0.000000,0.000000,0.250000,0,0);}
.mb4_c00462{transform:matrix(0.281059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281059,0.000000,0.000000,0.250000,0,0);}
.m34_c00462{transform:matrix(0.281410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281410,0.000000,0.000000,0.250000,0,0);}
.m55_c00462{transform:matrix(0.282175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282175,0.000000,0.000000,0.250000,0,0);}
.m93_c00462{transform:matrix(0.282229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282229,0.000000,0.000000,0.250000,0,0);}
.m23_c00462{transform:matrix(0.282665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282665,0.000000,0.000000,0.250000,0,0);}
.m9d_c00462{transform:matrix(0.283484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283484,0.000000,0.000000,0.250000,0,0);}
.m17_c00462{transform:matrix(0.283695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283695,0.000000,0.000000,0.250000,0,0);}
.m7f_c00462{transform:matrix(0.284863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284863,0.000000,0.000000,0.250000,0,0);}
.ma6_c00462{transform:matrix(0.285732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285732,0.000000,0.000000,0.250000,0,0);}
.m69_c00462{transform:matrix(0.287398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287398,0.000000,0.000000,0.250000,0,0);}
.m45_c00462{transform:matrix(0.287779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287779,0.000000,0.000000,0.250000,0,0);}
.m10_c00462{transform:matrix(0.289078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289078,0.000000,0.000000,0.250000,0,0);}
.m5b_c00462{transform:matrix(0.289413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289413,0.000000,0.000000,0.250000,0,0);}
.m62_c00462{transform:matrix(0.289635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289635,0.000000,0.000000,0.250000,0,0);}
.mb1_c00462{transform:matrix(0.289648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289648,0.000000,0.000000,0.250000,0,0);}
.m4a_c00462{transform:matrix(0.289685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289685,0.000000,0.000000,0.250000,0,0);}
.m99_c00462{transform:matrix(0.290344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290344,0.000000,0.000000,0.250000,0,0);}
.m9a_c00462{transform:matrix(0.290594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290594,0.000000,0.000000,0.250000,0,0);}
.mae_c00462{transform:matrix(0.290671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290671,0.000000,0.000000,0.250000,0,0);}
.m68_c00462{transform:matrix(0.290844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290844,0.000000,0.000000,0.250000,0,0);}
.m61_c00462{transform:matrix(0.290959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290959,0.000000,0.000000,0.250000,0,0);}
.m18_c00462{transform:matrix(0.292081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292081,0.000000,0.000000,0.250000,0,0);}
.m84_c00462{transform:matrix(0.292182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292182,0.000000,0.000000,0.250000,0,0);}
.m3_c00462{transform:matrix(0.292438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292438,0.000000,0.000000,0.250000,0,0);}
.m77_c00462{transform:matrix(0.292768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292768,0.000000,0.000000,0.250000,0,0);}
.m41_c00462{transform:matrix(0.293174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293174,0.000000,0.000000,0.250000,0,0);}
.m9f_c00462{transform:matrix(0.293422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293422,0.000000,0.000000,0.250000,0,0);}
.mf_c00462{transform:matrix(0.293827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293827,0.000000,0.000000,0.250000,0,0);}
.m3c_c00462{transform:matrix(0.294119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294119,0.000000,0.000000,0.250000,0,0);}
.m7e_c00462{transform:matrix(0.294322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294322,0.000000,0.000000,0.250000,0,0);}
.m2d_c00462{transform:matrix(0.295726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295726,0.000000,0.000000,0.250000,0,0);}
.m2a_c00462{transform:matrix(0.297445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297445,0.000000,0.000000,0.250000,0,0);}
.m72_c00462{transform:matrix(0.297537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297537,0.000000,0.000000,0.250000,0,0);}
.ma7_c00462{transform:matrix(0.297613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297613,0.000000,0.000000,0.250000,0,0);}
.m8e_c00462{transform:matrix(0.297831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297831,0.000000,0.000000,0.250000,0,0);}
.ma9_c00462{transform:matrix(0.298646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298646,0.000000,0.000000,0.250000,0,0);}
.m73_c00462{transform:matrix(0.299753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299753,0.000000,0.000000,0.250000,0,0);}
.m4f_c00462{transform:matrix(0.300349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300349,0.000000,0.000000,0.250000,0,0);}
.mb_c00462{transform:matrix(0.300918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300918,0.000000,0.000000,0.250000,0,0);}
.m27_c00462{transform:matrix(0.301299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301299,0.000000,0.000000,0.250000,0,0);}
.m20_c00462{transform:matrix(0.301606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301606,0.000000,0.000000,0.250000,0,0);}
.m38_c00462{transform:matrix(0.301626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301626,0.000000,0.000000,0.250000,0,0);}
.m4_c00462{transform:matrix(0.302011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302011,0.000000,0.000000,0.250000,0,0);}
.m6c_c00462{transform:matrix(0.302019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302019,0.000000,0.000000,0.250000,0,0);}
.m8c_c00462{transform:matrix(0.303079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303079,0.000000,0.000000,0.250000,0,0);}
.m74_c00462{transform:matrix(0.303319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303319,0.000000,0.000000,0.250000,0,0);}
.m6b_c00462{transform:matrix(0.303577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303577,0.000000,0.000000,0.250000,0,0);}
.m39_c00462{transform:matrix(0.303991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303991,0.000000,0.000000,0.250000,0,0);}
.m9b_c00462{transform:matrix(0.304021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304021,0.000000,0.000000,0.250000,0,0);}
.m4b_c00462{transform:matrix(0.304333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304333,0.000000,0.000000,0.250000,0,0);}
.m57_c00462{transform:matrix(0.304477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304477,0.000000,0.000000,0.250000,0,0);}
.m7c_c00462{transform:matrix(0.305483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305483,0.000000,0.000000,0.250000,0,0);}
.m47_c00462{transform:matrix(0.306088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306088,0.000000,0.000000,0.250000,0,0);}
.mb6_c00462{transform:matrix(0.306390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306390,0.000000,0.000000,0.250000,0,0);}
.m48_c00462{transform:matrix(0.307407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307407,0.000000,0.000000,0.250000,0,0);}
.m3d_c00462{transform:matrix(0.307843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307843,0.000000,0.000000,0.250000,0,0);}
.m8_c00462{transform:matrix(0.307958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307958,0.000000,0.000000,0.250000,0,0);}
.m35_c00462{transform:matrix(0.308120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308120,0.000000,0.000000,0.250000,0,0);}
.m91_c00462{transform:matrix(0.308870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308870,0.000000,0.000000,0.250000,0,0);}
.m5a_c00462{transform:matrix(0.309036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309036,0.000000,0.000000,0.250000,0,0);}
.m2c_c00462{transform:matrix(0.309639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309639,0.000000,0.000000,0.250000,0,0);}
.ma3_c00462{transform:matrix(0.309898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309898,0.000000,0.000000,0.250000,0,0);}
.m6f_c00462{transform:matrix(0.312325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312325,0.000000,0.000000,0.250000,0,0);}
.m28_c00462{transform:matrix(0.312932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312932,0.000000,0.000000,0.250000,0,0);}
.ma0_c00462{transform:matrix(0.314405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314405,0.000000,0.000000,0.250000,0,0);}
.m75_c00462{transform:matrix(0.315986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315986,0.000000,0.000000,0.250000,0,0);}
.m6e_c00462{transform:matrix(0.316230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316230,0.000000,0.000000,0.250000,0,0);}
.m33_c00462{transform:matrix(0.316918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316918,0.000000,0.000000,0.250000,0,0);}
.m70_c00462{transform:matrix(0.319019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319019,0.000000,0.000000,0.250000,0,0);}
.m79_c00462{transform:matrix(0.320004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320004,0.000000,0.000000,0.250000,0,0);}
.m52_c00462{transform:matrix(0.320029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320029,0.000000,0.000000,0.250000,0,0);}
.m12_c00462{transform:matrix(0.320494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320494,0.000000,0.000000,0.250000,0,0);}
.ma5_c00462{transform:matrix(0.320589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320589,0.000000,0.000000,0.250000,0,0);}
.m6_c00462{transform:matrix(0.321796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321796,0.000000,0.000000,0.250000,0,0);}
.ma8_c00462{transform:matrix(0.322250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322250,0.000000,0.000000,0.250000,0,0);}
.m76_c00462{transform:matrix(0.322785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322785,0.000000,0.000000,0.250000,0,0);}
.mab_c00462{transform:matrix(0.322936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322936,0.000000,0.000000,0.250000,0,0);}
.m19_c00462{transform:matrix(0.323484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323484,0.000000,0.000000,0.250000,0,0);}
.m4c_c00462{transform:matrix(0.324014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324014,0.000000,0.000000,0.250000,0,0);}
.m26_c00462{transform:matrix(0.324330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324330,0.000000,0.000000,0.250000,0,0);}
.m21_c00462{transform:matrix(0.325433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325433,0.000000,0.000000,0.250000,0,0);}
.m5c_c00462{transform:matrix(0.327778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327778,0.000000,0.000000,0.250000,0,0);}
.m15_c00462{transform:matrix(0.328170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328170,0.000000,0.000000,0.250000,0,0);}
.m14_c00462{transform:matrix(0.329801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329801,0.000000,0.000000,0.250000,0,0);}
.m6d_c00462{transform:matrix(0.330560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330560,0.000000,0.000000,0.250000,0,0);}
.m63_c00462{transform:matrix(0.331551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331551,0.000000,0.000000,0.250000,0,0);}
.m88_c00462{transform:matrix(0.333044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333044,0.000000,0.000000,0.250000,0,0);}
.m90_c00462{transform:matrix(0.333272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333272,0.000000,0.000000,0.250000,0,0);}
.m85_c00462{transform:matrix(0.333559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333559,0.000000,0.000000,0.250000,0,0);}
.m22_c00462{transform:matrix(0.335605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335605,0.000000,0.000000,0.250000,0,0);}
.m67_c00462{transform:matrix(0.335622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335622,0.000000,0.000000,0.250000,0,0);}
.m9c_c00462{transform:matrix(0.335903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335903,0.000000,0.000000,0.250000,0,0);}
.md_c00462{transform:matrix(0.336159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336159,0.000000,0.000000,0.250000,0,0);}
.m59_c00462{transform:matrix(0.336833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336833,0.000000,0.000000,0.250000,0,0);}
.m7b_c00462{transform:matrix(0.337181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337181,0.000000,0.000000,0.250000,0,0);}
.m8f_c00462{transform:matrix(0.337469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337469,0.000000,0.000000,0.250000,0,0);}
.m66_c00462{transform:matrix(0.339017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339017,0.000000,0.000000,0.250000,0,0);}
.ma2_c00462{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m7d_c00462{transform:matrix(0.339744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339744,0.000000,0.000000,0.250000,0,0);}
.m6a_c00462{transform:matrix(0.340038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340038,0.000000,0.000000,0.250000,0,0);}
.mb3_c00462{transform:matrix(0.341200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341200,0.000000,0.000000,0.250000,0,0);}
.m30_c00462{transform:matrix(0.341848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341848,0.000000,0.000000,0.250000,0,0);}
.m43_c00462{transform:matrix(0.343636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343636,0.000000,0.000000,0.250000,0,0);}
.m92_c00462{transform:matrix(0.344325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344325,0.000000,0.000000,0.250000,0,0);}
.m7_c00462{transform:matrix(0.345224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345224,0.000000,0.000000,0.250000,0,0);}
.m95_c00462{transform:matrix(0.352042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352042,0.000000,0.000000,0.250000,0,0);}
.m37_c00462{transform:matrix(0.356799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356799,0.000000,0.000000,0.250000,0,0);}
.m16_c00462{transform:matrix(0.357264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357264,0.000000,0.000000,0.250000,0,0);}
.m53_c00462{transform:matrix(0.357328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357328,0.000000,0.000000,0.250000,0,0);}
.m80_c00462{transform:matrix(0.358085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358085,0.000000,0.000000,0.250000,0,0);}
.m87_c00462{transform:matrix(0.359320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359320,0.000000,0.000000,0.250000,0,0);}
.m5_c00462{transform:matrix(0.361256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361256,0.000000,0.000000,0.250000,0,0);}
.m8a_c00462{transform:matrix(0.362874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362874,0.000000,0.000000,0.250000,0,0);}
.m9e_c00462{transform:matrix(0.363469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363469,0.000000,0.000000,0.250000,0,0);}
.m2f_c00462{transform:matrix(0.368423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368423,0.000000,0.000000,0.250000,0,0);}
.m40_c00462{transform:matrix(0.369052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369052,0.000000,0.000000,0.250000,0,0);}
.m78_c00462{transform:matrix(0.391270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391270,0.000000,0.000000,0.250000,0,0);}
.m56_c00462{transform:matrix(0.397481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397481,0.000000,0.000000,0.250000,0,0);}
.mad_c00462{transform:matrix(0.397642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397642,0.000000,0.000000,0.250000,0,0);}
.mb2_c00462{transform:matrix(0.403692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403692,0.000000,0.000000,0.250000,0,0);}
.m9_c00462{transform:matrix(0.407115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407115,0.000000,0.000000,0.250000,0,0);}
.v1_c00462{vertical-align:-18.519732px;}
.v0_c00462{vertical-align:0.000000px;}
.v2_c00462{vertical-align:22.779900px;}
.lsd_c00462{letter-spacing:-2.661127px;}
.ls29_c00462{letter-spacing:-2.619540px;}
.ls17_c00462{letter-spacing:-2.224530px;}
.lse_c00462{letter-spacing:-1.774080px;}
.lsb_c00462{letter-spacing:-1.339668px;}
.lsf_c00462{letter-spacing:-1.126960px;}
.ls24_c00462{letter-spacing:-1.102467px;}
.ls22_c00462{letter-spacing:-0.851561px;}
.ls14_c00462{letter-spacing:-0.351628px;}
.ls2_c00462{letter-spacing:0.000000px;}
.ls11_c00462{letter-spacing:0.319335px;}
.ls13_c00462{letter-spacing:0.790735px;}
.ls19_c00462{letter-spacing:1.269738px;}
.ls20_c00462{letter-spacing:1.564200px;}
.ls5_c00462{letter-spacing:1.841697px;}
.ls25_c00462{letter-spacing:2.009700px;}
.ls23_c00462{letter-spacing:2.402617px;}
.ls1d_c00462{letter-spacing:2.836001px;}
.ls26_c00462{letter-spacing:3.009600px;}
.ls16_c00462{letter-spacing:3.177900px;}
.ls1a_c00462{letter-spacing:3.268267px;}
.ls12_c00462{letter-spacing:3.425400px;}
.ls1c_c00462{letter-spacing:3.564000px;}
.ls8_c00462{letter-spacing:3.663000px;}
.ls1b_c00462{letter-spacing:3.722400px;}
.ls28_c00462{letter-spacing:3.742200px;}
.ls1e_c00462{letter-spacing:3.781810px;}
.ls6_c00462{letter-spacing:3.801610px;}
.ls27_c00462{letter-spacing:3.861000px;}
.ls21_c00462{letter-spacing:3.920400px;}
.lsc_c00462{letter-spacing:3.940200px;}
.ls10_c00462{letter-spacing:3.950110px;}
.ls7_c00462{letter-spacing:3.960000px;}
.ls3_c00462{letter-spacing:4.078810px;}
.ls15_c00462{letter-spacing:4.088700px;}
.ls0_c00462{letter-spacing:17.896714px;}
.ls4_c00462{letter-spacing:31.363200px;}
.ls1_c00462{letter-spacing:36.938627px;}
.ls1f_c00462{letter-spacing:55.598598px;}
.ls18_c00462{letter-spacing:57.024198px;}
.lsa_c00462{letter-spacing:61.300998px;}
.ls9_c00462{letter-spacing:64.152198px;}
.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;}
}
.ws1_c00462{word-spacing:-17.905583px;}
.ws2_c00462{word-spacing:0.000000px;}
.ws0_c00462{word-spacing:1.061818px;}
._0_c00462{margin-left:-9.048650px;}
._1_c00462{width:8.109580px;}
._3_c00462{width:9.656923px;}
._2_c00462{width:35.877600px;}
.fc0_c00462{color:transparent;}
.fs1_c00462{font-size:22.176000px;}
.fs4_c00462{font-size:25.344000px;}
.fs0_c00462{font-size:28.314000px;}
.fs1c_c00462{font-size:31.284000px;}
.fs5_c00462{font-size:31.363200px;}
.fs1f_c00462{font-size:40.194000px;}
.fs1a_c00462{font-size:47.322000px;}
.fse_c00462{font-size:50.688000px;}
.fs18_c00462{font-size:51.876198px;}
.fs1b_c00462{font-size:55.598598px;}
.fs15_c00462{font-size:57.024198px;}
.fs20_c00462{font-size:60.192000px;}
.fsc_c00462{font-size:61.300998px;}
.fs14_c00462{font-size:63.558000px;}
.fsb_c00462{font-size:64.152198px;}
.fsf_c00462{font-size:65.142198px;}
.fs3_c00462{font-size:67.320000px;}
.fs12_c00462{font-size:68.508000px;}
.fs6_c00462{font-size:69.498000px;}
.fs1e_c00462{font-size:70.092198px;}
.fs17_c00462{font-size:71.280000px;}
.fs11_c00462{font-size:72.072198px;}
.fsa_c00462{font-size:73.260000px;}
.fs16_c00462{font-size:74.448000px;}
.fs8_c00462{font-size:74.844000px;}
.fs19_c00462{font-size:75.636198px;}
.fs7_c00462{font-size:76.032198px;}
.fs21_c00462{font-size:77.220000px;}
.fs1d_c00462{font-size:78.408000px;}
.fsd_c00462{font-size:78.804000px;}
.fs10_c00462{font-size:79.002198px;}
.fs9_c00462{font-size:79.200000px;}
.fs2_c00462{font-size:81.576198px;}
.fs13_c00462{font-size:81.774000px;}
.y0_c00462{bottom:0.000000px;}
.y23_c00462{bottom:13.093785px;}
.y1_c00462{bottom:76.500000px;}
.y22_c00462{bottom:137.477385px;}
.y20_c00462{bottom:201.634335px;}
.y1e_c00462{bottom:201.990735px;}
.y21_c00462{bottom:202.347135px;}
.y1f_c00462{bottom:207.688185px;}
.y1d_c00462{bottom:233.353935px;}
.y1c_c00462{bottom:265.068585px;}
.y1b_c00462{bottom:297.505935px;}
.y1a_c00462{bottom:329.220585px;}
.y19_c00462{bottom:361.657935px;}
.y2_c00462{bottom:389.100735px;}
.y18_c00462{bottom:393.377535px;}
.y17_c00462{bottom:424.740735px;}
.y16_c00462{bottom:455.747535px;}
.y14_c00462{bottom:487.467135px;}
.y15_c00462{bottom:492.100335px;}
.y13_c00462{bottom:517.756185px;}
.y12_c00462{bottom:549.480735px;}
.y11_c00462{bottom:612.914985px;}
.y10_c00462{bottom:708.435135px;}
.yf_c00462{bottom:737.298585px;}
.ye_c00462{bottom:740.154735px;}
.yd_c00462{bottom:771.517935px;}
.yc_c00462{bottom:803.950335px;}
.yb_c00462{bottom:834.957135px;}
.ya_c00462{bottom:865.963935px;}
.y9_c00462{bottom:898.752735px;}
.y8_c00462{bottom:931.185135px;}
.y7_c00462{bottom:1024.200585px;}
.y6_c00462{bottom:1034.892585px;}
.y5_c00462{bottom:1047.727935px;}
.y4_c00462{bottom:1065.547935px;}
.y3_c00462{bottom:1089.421785px;}
.h7_c00462{height:20.887891px;}
.h3_c00462{height:23.128875px;}
.h6_c00462{height:24.873750px;}
.h2_c00462{height:29.530617px;}
.h1f_c00462{height:32.628234px;}
.h1e_c00462{height:37.028666px;}
.h18_c00462{height:37.978116px;}
.he_c00462{height:40.826465px;}
.h22_c00462{height:41.921086px;}
.hd_c00462{height:42.725364px;}
.h1d_c00462{height:46.443955px;}
.h10_c00462{height:49.747500px;}
.h1b_c00462{height:54.105253px;}
.h23_c00462{height:62.778375px;}
.h11_c00462{height:63.901697px;}
.h5_c00462{height:66.070898px;}
.h16_c00462{height:66.289008px;}
.h8_c00462{height:68.208486px;}
.h1a_c00462{height:69.957422px;}
.h14_c00462{height:71.451703px;}
.hc_c00462{height:71.900684px;}
.h19_c00462{height:73.066641px;}
.ha_c00462{height:73.455293px;}
.h1c_c00462{height:74.232792px;}
.h9_c00462{height:74.621444px;}
.h13_c00462{height:75.169050px;}
.h24_c00462{height:75.787207px;}
.h17_c00462{height:76.626200px;}
.h20_c00462{height:76.953164px;}
.hf_c00462{height:77.341816px;}
.h12_c00462{height:77.536337px;}
.hb_c00462{height:77.730469px;}
.h4_c00462{height:80.062577px;}
.h15_c00462{height:80.256709px;}
.h21_c00462{height:95.883872px;}
.h1_c00462{height:1110.000000px;}
.h0_c00462{height:1263.000000px;}
.w1_c00462{width:760.500000px;}
.w0_c00462{width:892.500000px;}
.x0_c00462{left:0.000000px;}
.x1_c00462{left:66.000000px;}
.x2_c00462{left:67.335735px;}
.x55_c00462{left:86.036835px;}
.x20_c00462{left:87.828735px;}
.x7_c00462{left:89.566185px;}
.x31_c00462{left:90.778935px;}
.x6d_c00462{left:98.550435px;}
.x50_c00462{left:119.746335px;}
.x62_c00462{left:122.255985px;}
.x25_c00462{left:131.903535px;}
.x8_c00462{left:133.918185px;}
.x40_c00462{left:140.833335px;}
.x63_c00462{left:142.278735px;}
.x2e_c00462{left:143.437035px;}
.x56_c00462{left:153.530085px;}
.x37_c00462{left:154.633935px;}
.x5d_c00462{left:161.959935px;}
.x6c_c00462{left:165.870435px;}
.x38_c00462{left:167.013885px;}
.x6f_c00462{left:174.394335px;}
.x51_c00462{left:185.215035px;}
.x41_c00462{left:186.299085px;}
.x6e_c00462{left:187.343535px;}
.x32_c00462{left:189.828435px;}
.x5a_c00462{left:196.679235px;}
.x10_c00462{left:198.688935px;}
.x64_c00462{left:206.470335px;}
.x3c_c00462{left:207.791985px;}
.x48_c00462{left:209.024535px;}
.x57_c00462{left:219.805635px;}
.x9_c00462{left:221.191635px;}
.x6a_c00462{left:229.279935px;}
.x11_c00462{left:231.056985px;}
.x3d_c00462{left:240.857985px;}
.x49_c00462{left:241.887585px;}
.x52_c00462{left:251.718285px;}
.x42_c00462{left:252.985485px;}
.x19_c00462{left:263.425035px;}
.x5e_c00462{left:274.676385px;}
.x12_c00462{left:276.077235px;}
.x43_c00462{left:285.739635px;}
.x26_c00462{left:287.180085px;}
.x65_c00462{left:296.446485px;}
.x5b_c00462{left:298.253235px;}
.x3_c00462{left:308.351235px;}
.x2f_c00462{left:311.246985px;}
.x39_c00462{left:318.503685px;}
.x27_c00462{left:320.315385px;}
.x44_c00462{left:329.413485px;}
.x6b_c00462{left:331.373685px;}
.x53_c00462{left:341.100435px;}
.x4a_c00462{left:352.564635px;}
.x21_c00462{left:353.767485px;}
.xa_c00462{left:362.722035px;}
.x33_c00462{left:364.013985px;}
.x1a_c00462{left:374.305035px;}
.x13_c00462{left:385.566285px;}
.x66_c00462{left:395.396985px;}
.x5f_c00462{left:397.139385px;}
.x58_c00462{left:399.025335px;}
.xb_c00462{left:407.628435px;}
.x22_c00462{left:419.048085px;}
.x67_c00462{left:428.893635px;}
.x14_c00462{left:430.284585px;}
.x28_c00462{left:440.773635px;}
.x3a_c00462{left:442.100235px;}
.xc_c00462{left:452.396235px;}
.x15_c00462{left:463.494135px;}
.x4b_c00462{left:470.245935px;}
.x45_c00462{left:474.666285px;}
.x29_c00462{left:485.684985px;}
.x70_c00462{left:495.862185px;}
.x4c_c00462{left:497.688735px;}
.x54_c00462{left:499.297485px;}
.x71_c00462{left:505.440435px;}
.x60_c00462{left:506.544285px;}
.x46_c00462{left:507.752085px;}
.xd_c00462{left:518.864835px;}
.x5c_c00462{left:529.868685px;}
.xe_c00462{left:540.040935px;}
.x3e_c00462{left:551.500185px;}
.x34_c00462{left:552.975285px;}
.x1b_c00462{left:561.093285px;}
.x2a_c00462{left:563.286135px;}
.x3b_c00462{left:564.439485px;}
.x16_c00462{left:574.106835px;}
.x68_c00462{left:577.294635px;}
.x59_c00462{left:584.383035px;}
.x4d_c00462{left:588.565785px;}
.x17_c00462{left:594.941385px;}
.x2b_c00462{left:596.159085px;}
.x61_c00462{left:606.781785px;}
.x3f_c00462{left:608.167785px;}
.x1c_c00462{left:617.077785px;}
.x47_c00462{left:618.528135px;}
.x18_c00462{left:628.269735px;}
.xf_c00462{left:639.931935px;}
.x4e_c00462{left:641.317935px;}
.x30_c00462{left:651.440685px;}
.x23_c00462{left:662.573235px;}
.x2c_c00462{left:672.314835px;}
.x4f_c00462{left:675.235335px;}
.x1d_c00462{left:684.442335px;}
.x1e_c00462{left:687.649935px;}
.x1f_c00462{left:692.233635px;}
.x24_c00462{left:694.223535px;}
.x5_c00462{left:695.926335px;}
.x6_c00462{left:697.624185px;}
.x4_c00462{left:701.995035px;}
.x2d_c00462{left:705.771885px;}
.x35_c00462{left:708.068685px;}
.x69_c00462{left:718.092435px;}
.x36_c00462{left:729.497235px;}
@media print{
.v1_c00462{vertical-align:-16.461984pt;}
.v0_c00462{vertical-align:0.000000pt;}
.v2_c00462{vertical-align:20.248800pt;}
.lsd_c00462{letter-spacing:-2.365446pt;}
.ls29_c00462{letter-spacing:-2.328480pt;}
.ls17_c00462{letter-spacing:-1.977360pt;}
.lse_c00462{letter-spacing:-1.576960pt;}
.lsb_c00462{letter-spacing:-1.190816pt;}
.lsf_c00462{letter-spacing:-1.001742pt;}
.ls24_c00462{letter-spacing:-0.979971pt;}
.ls22_c00462{letter-spacing:-0.756943pt;}
.ls14_c00462{letter-spacing:-0.312558pt;}
.ls2_c00462{letter-spacing:0.000000pt;}
.ls11_c00462{letter-spacing:0.283854pt;}
.ls13_c00462{letter-spacing:0.702875pt;}
.ls19_c00462{letter-spacing:1.128656pt;}
.ls20_c00462{letter-spacing:1.390400pt;}
.ls5_c00462{letter-spacing:1.637064pt;}
.ls25_c00462{letter-spacing:1.786400pt;}
.ls23_c00462{letter-spacing:2.135660pt;}
.ls1d_c00462{letter-spacing:2.520890pt;}
.ls26_c00462{letter-spacing:2.675200pt;}
.ls16_c00462{letter-spacing:2.824800pt;}
.ls1a_c00462{letter-spacing:2.905126pt;}
.ls12_c00462{letter-spacing:3.044800pt;}
.ls1c_c00462{letter-spacing:3.168000pt;}
.ls8_c00462{letter-spacing:3.256000pt;}
.ls1b_c00462{letter-spacing:3.308800pt;}
.ls28_c00462{letter-spacing:3.326400pt;}
.ls1e_c00462{letter-spacing:3.361609pt;}
.ls6_c00462{letter-spacing:3.379209pt;}
.ls27_c00462{letter-spacing:3.432000pt;}
.ls21_c00462{letter-spacing:3.484800pt;}
.lsc_c00462{letter-spacing:3.502400pt;}
.ls10_c00462{letter-spacing:3.511209pt;}
.ls7_c00462{letter-spacing:3.520000pt;}
.ls3_c00462{letter-spacing:3.625609pt;}
.ls15_c00462{letter-spacing:3.634400pt;}
.ls0_c00462{letter-spacing:15.908190pt;}
.ls4_c00462{letter-spacing:27.878400pt;}
.ls1_c00462{letter-spacing:32.834335pt;}
.ls1f_c00462{letter-spacing:49.420976pt;}
.ls18_c00462{letter-spacing:50.688176pt;}
.lsa_c00462{letter-spacing:54.489776pt;}
.ls9_c00462{letter-spacing:57.024176pt;}
.ws1_c00462{word-spacing:-15.916073pt;}
.ws2_c00462{word-spacing:0.000000pt;}
.ws0_c00462{word-spacing:0.943838pt;}
._0_c00462{margin-left:-8.043244pt;}
._1_c00462{width:7.208516pt;}
._3_c00462{width:8.583931pt;}
._2_c00462{width:31.891200pt;}
.fs1_c00462{font-size:19.712000pt;}
.fs4_c00462{font-size:22.528000pt;}
.fs0_c00462{font-size:25.168000pt;}
.fs1c_c00462{font-size:27.808000pt;}
.fs5_c00462{font-size:27.878400pt;}
.fs1f_c00462{font-size:35.728000pt;}
.fs1a_c00462{font-size:42.064000pt;}
.fse_c00462{font-size:45.056000pt;}
.fs18_c00462{font-size:46.112176pt;}
.fs1b_c00462{font-size:49.420976pt;}
.fs15_c00462{font-size:50.688176pt;}
.fs20_c00462{font-size:53.504000pt;}
.fsc_c00462{font-size:54.489776pt;}
.fs14_c00462{font-size:56.496000pt;}
.fsb_c00462{font-size:57.024176pt;}
.fsf_c00462{font-size:57.904176pt;}
.fs3_c00462{font-size:59.840000pt;}
.fs12_c00462{font-size:60.896000pt;}
.fs6_c00462{font-size:61.776000pt;}
.fs1e_c00462{font-size:62.304176pt;}
.fs17_c00462{font-size:63.360000pt;}
.fs11_c00462{font-size:64.064176pt;}
.fsa_c00462{font-size:65.120000pt;}
.fs16_c00462{font-size:66.176000pt;}
.fs8_c00462{font-size:66.528000pt;}
.fs19_c00462{font-size:67.232176pt;}
.fs7_c00462{font-size:67.584176pt;}
.fs21_c00462{font-size:68.640000pt;}
.fs1d_c00462{font-size:69.696000pt;}
.fsd_c00462{font-size:70.048000pt;}
.fs10_c00462{font-size:70.224176pt;}
.fs9_c00462{font-size:70.400000pt;}
.fs2_c00462{font-size:72.512176pt;}
.fs13_c00462{font-size:72.688000pt;}
.y0_c00462{bottom:0.000000pt;}
.y23_c00462{bottom:11.638920pt;}
.y1_c00462{bottom:68.000000pt;}
.y22_c00462{bottom:122.202120pt;}
.y20_c00462{bottom:179.230520pt;}
.y1e_c00462{bottom:179.547320pt;}
.y21_c00462{bottom:179.864120pt;}
.y1f_c00462{bottom:184.611720pt;}
.y1d_c00462{bottom:207.425720pt;}
.y1c_c00462{bottom:235.616520pt;}
.y1b_c00462{bottom:264.449720pt;}
.y1a_c00462{bottom:292.640520pt;}
.y19_c00462{bottom:321.473720pt;}
.y2_c00462{bottom:345.867320pt;}
.y18_c00462{bottom:349.668920pt;}
.y17_c00462{bottom:377.547320pt;}
.y16_c00462{bottom:405.108920pt;}
.y14_c00462{bottom:433.304120pt;}
.y15_c00462{bottom:437.422520pt;}
.y13_c00462{bottom:460.227720pt;}
.y12_c00462{bottom:488.427320pt;}
.y11_c00462{bottom:544.813320pt;}
.y10_c00462{bottom:629.720120pt;}
.yf_c00462{bottom:655.376520pt;}
.ye_c00462{bottom:657.915320pt;}
.yd_c00462{bottom:685.793720pt;}
.yc_c00462{bottom:714.622520pt;}
.yb_c00462{bottom:742.184120pt;}
.ya_c00462{bottom:769.745720pt;}
.y9_c00462{bottom:798.891320pt;}
.y8_c00462{bottom:827.720120pt;}
.y7_c00462{bottom:910.400520pt;}
.y6_c00462{bottom:919.904520pt;}
.y5_c00462{bottom:931.313720pt;}
.y4_c00462{bottom:947.153720pt;}
.y3_c00462{bottom:968.374920pt;}
.h7_c00462{height:18.567014pt;}
.h3_c00462{height:20.559000pt;}
.h6_c00462{height:22.110000pt;}
.h2_c00462{height:26.249438pt;}
.h1f_c00462{height:29.002875pt;}
.h1e_c00462{height:32.914370pt;}
.h18_c00462{height:33.758325pt;}
.he_c00462{height:36.290191pt;}
.h22_c00462{height:37.263188pt;}
.hd_c00462{height:37.978101pt;}
.h1d_c00462{height:41.283516pt;}
.h10_c00462{height:44.220000pt;}
.h1b_c00462{height:48.093559pt;}
.h23_c00462{height:55.803000pt;}
.h11_c00462{height:56.801509pt;}
.h5_c00462{height:58.729688pt;}
.h16_c00462{height:58.923563pt;}
.h8_c00462{height:60.629766pt;}
.h1a_c00462{height:62.184375pt;}
.h14_c00462{height:63.512625pt;}
.hc_c00462{height:63.911719pt;}
.h19_c00462{height:64.948125pt;}
.ha_c00462{height:65.293594pt;}
.h1c_c00462{height:65.984704pt;}
.h9_c00462{height:66.330173pt;}
.h13_c00462{height:66.816934pt;}
.h24_c00462{height:67.366406pt;}
.h17_c00462{height:68.112177pt;}
.h20_c00462{height:68.402813pt;}
.hf_c00462{height:68.748281pt;}
.h12_c00462{height:68.921188pt;}
.hb_c00462{height:69.093750pt;}
.h4_c00462{height:71.166735pt;}
.h15_c00462{height:71.339297pt;}
.h21_c00462{height:85.230109pt;}
.h1_c00462{height:986.666667pt;}
.h0_c00462{height:1122.666667pt;}
.w1_c00462{width:676.000000pt;}
.w0_c00462{width:793.333333pt;}
.x0_c00462{left:0.000000pt;}
.x1_c00462{left:58.666667pt;}
.x2_c00462{left:59.853987pt;}
.x55_c00462{left:76.477187pt;}
.x20_c00462{left:78.069987pt;}
.x7_c00462{left:79.614387pt;}
.x31_c00462{left:80.692387pt;}
.x6d_c00462{left:87.600387pt;}
.x50_c00462{left:106.441187pt;}
.x62_c00462{left:108.671987pt;}
.x25_c00462{left:117.247587pt;}
.x8_c00462{left:119.038387pt;}
.x40_c00462{left:125.185187pt;}
.x63_c00462{left:126.469987pt;}
.x2e_c00462{left:127.499587pt;}
.x56_c00462{left:136.471187pt;}
.x37_c00462{left:137.452387pt;}
.x5d_c00462{left:143.964387pt;}
.x6c_c00462{left:147.440387pt;}
.x38_c00462{left:148.456787pt;}
.x6f_c00462{left:155.017187pt;}
.x51_c00462{left:164.635587pt;}
.x41_c00462{left:165.599187pt;}
.x6e_c00462{left:166.527587pt;}
.x32_c00462{left:168.736387pt;}
.x5a_c00462{left:174.825987pt;}
.x10_c00462{left:176.612387pt;}
.x64_c00462{left:183.529187pt;}
.x3c_c00462{left:184.703987pt;}
.x48_c00462{left:185.799587pt;}
.x57_c00462{left:195.382787pt;}
.x9_c00462{left:196.614787pt;}
.x6a_c00462{left:203.804387pt;}
.x11_c00462{left:205.383987pt;}
.x3d_c00462{left:214.095987pt;}
.x49_c00462{left:215.011187pt;}
.x52_c00462{left:223.749587pt;}
.x42_c00462{left:224.875987pt;}
.x19_c00462{left:234.155587pt;}
.x5e_c00462{left:244.156787pt;}
.x12_c00462{left:245.401987pt;}
.x43_c00462{left:253.990787pt;}
.x26_c00462{left:255.271187pt;}
.x65_c00462{left:263.507987pt;}
.x5b_c00462{left:265.113987pt;}
.x3_c00462{left:274.089987pt;}
.x2f_c00462{left:276.663987pt;}
.x39_c00462{left:283.114387pt;}
.x27_c00462{left:284.724787pt;}
.x44_c00462{left:292.811987pt;}
.x6b_c00462{left:294.554387pt;}
.x53_c00462{left:303.200387pt;}
.x4a_c00462{left:313.390787pt;}
.x21_c00462{left:314.459987pt;}
.xa_c00462{left:322.419587pt;}
.x33_c00462{left:323.567987pt;}
.x1a_c00462{left:332.715587pt;}
.x13_c00462{left:342.725587pt;}
.x66_c00462{left:351.463987pt;}
.x5f_c00462{left:353.012787pt;}
.x58_c00462{left:354.689187pt;}
.xb_c00462{left:362.336387pt;}
.x22_c00462{left:372.487187pt;}
.x67_c00462{left:381.238787pt;}
.x14_c00462{left:382.475187pt;}
.x28_c00462{left:391.798787pt;}
.x3a_c00462{left:392.977987pt;}
.xc_c00462{left:402.129987pt;}
.x15_c00462{left:411.994787pt;}
.x4b_c00462{left:417.996387pt;}
.x45_c00462{left:421.925587pt;}
.x29_c00462{left:431.719987pt;}
.x70_c00462{left:440.766387pt;}
.x4c_c00462{left:442.389987pt;}
.x54_c00462{left:443.819987pt;}
.x71_c00462{left:449.280387pt;}
.x60_c00462{left:450.261587pt;}
.x46_c00462{left:451.335187pt;}
.xd_c00462{left:461.213187pt;}
.x5c_c00462{left:470.994387pt;}
.xe_c00462{left:480.036387pt;}
.x3e_c00462{left:490.222387pt;}
.x34_c00462{left:491.533587pt;}
.x1b_c00462{left:498.749587pt;}
.x2a_c00462{left:500.698787pt;}
.x3b_c00462{left:501.723987pt;}
.x16_c00462{left:510.317187pt;}
.x68_c00462{left:513.150787pt;}
.x59_c00462{left:519.451587pt;}
.x4d_c00462{left:523.169587pt;}
.x17_c00462{left:528.836787pt;}
.x2b_c00462{left:529.919187pt;}
.x61_c00462{left:539.361587pt;}
.x3f_c00462{left:540.593587pt;}
.x1c_c00462{left:548.513587pt;}
.x47_c00462{left:549.802787pt;}
.x18_c00462{left:558.461987pt;}
.xf_c00462{left:568.828387pt;}
.x4e_c00462{left:570.060387pt;}
.x30_c00462{left:579.058387pt;}
.x23_c00462{left:588.953987pt;}
.x2c_c00462{left:597.613187pt;}
.x4f_c00462{left:600.209187pt;}
.x1d_c00462{left:608.393187pt;}
.x1e_c00462{left:611.244387pt;}
.x1f_c00462{left:615.318787pt;}
.x24_c00462{left:617.087587pt;}
.x5_c00462{left:618.601187pt;}
.x6_c00462{left:620.110387pt;}
.x4_c00462{left:623.995587pt;}
.x2d_c00462{left:627.352787pt;}
.x35_c00462{left:629.394387pt;}
.x69_c00462{left:638.304387pt;}
.x36_c00462{left:648.441987pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_12ae06e4bee72f8be91d0122.woff2')format("woff");}.ff1_c00463{font-family:ff1_c00463;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00463;src:url('chunks/assets/font_c8818293d86e6c5667876800.woff2')format("woff");}.ff2_c00463{font-family:ff2_c00463;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00463;src:url('chunks/assets/font_f3524d461a63c3f9efc03a40.woff2')format("woff");}.ff3_c00463{font-family:ff3_c00463;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00463;src:url('chunks/assets/font_4b2181d8dba5016492095f41.woff2')format("woff");}.ff4_c00463{font-family:ff4_c00463;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m84_c00463{transform:matrix(0.148256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148256,0.000000,0.000000,0.250000,0,0);}
.me_c00463{transform:matrix(0.149225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149225,0.000000,0.000000,0.250000,0,0);}
.m14_c00463{transform:matrix(0.162790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162790,0.000000,0.000000,0.250000,0,0);}
.m41_c00463{transform:matrix(0.177507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177507,0.000000,0.000000,0.250000,0,0);}
.m60_c00463{transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);}
.m9e_c00463{transform:matrix(0.178708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178708,0.000000,0.000000,0.250000,0,0);}
.m91_c00463{transform:matrix(0.201352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201352,0.000000,0.000000,0.250000,0,0);}
.m16_c00463{transform:matrix(0.206774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206774,0.000000,0.000000,0.250000,0,0);}
.m11_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);}
.mc_c00463{transform:matrix(0.252390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252390,0.000000,0.000000,0.250000,0,0);}
.m95_c00463{transform:matrix(0.253871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253871,0.000000,0.000000,0.250000,0,0);}
.m98_c00463{transform:matrix(0.254394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254394,0.000000,0.000000,0.250000,0,0);}
.m50_c00463{transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);}
.ma2_c00463{transform:matrix(0.256334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256334,0.000000,0.000000,0.250000,0,0);}
.m18_c00463{transform:matrix(0.256572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256572,0.000000,0.000000,0.250000,0,0);}
.m9c_c00463{transform:matrix(0.259362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259362,0.000000,0.000000,0.250000,0,0);}
.mb_c00463{transform:matrix(0.260157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260157,0.000000,0.000000,0.250000,0,0);}
.m9d_c00463{transform:matrix(0.261616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261616,0.000000,0.000000,0.250000,0,0);}
.m1d_c00463{transform:matrix(0.261992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261992,0.000000,0.000000,0.250000,0,0);}
.m6d_c00463{transform:matrix(0.263756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263756,0.000000,0.000000,0.250000,0,0);}
.m6a_c00463{transform:matrix(0.263891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263891,0.000000,0.000000,0.250000,0,0);}
.m8a_c00463{transform:matrix(0.264969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264969,0.000000,0.000000,0.250000,0,0);}
.m0_c00463{transform:matrix(0.265392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265392,0.000000,0.000000,0.250000,0,0);}
.m61_c00463{transform:matrix(0.265608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265608,0.000000,0.000000,0.250000,0,0);}
.ma0_c00463{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m19_c00463{transform:matrix(0.266603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266603,0.000000,0.000000,0.250000,0,0);}
.m29_c00463{transform:matrix(0.266671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266671,0.000000,0.000000,0.250000,0,0);}
.m8f_c00463{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.m46_c00463{transform:matrix(0.266922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266922,0.000000,0.000000,0.250000,0,0);}
.m24_c00463{transform:matrix(0.267092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267092,0.000000,0.000000,0.250000,0,0);}
.m9_c00463{transform:matrix(0.270304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270304,0.000000,0.000000,0.250000,0,0);}
.m21_c00463{transform:matrix(0.271350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271350,0.000000,0.000000,0.250000,0,0);}
.m51_c00463{transform:matrix(0.271351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271351,0.000000,0.000000,0.250000,0,0);}
.m3e_c00463{transform:matrix(0.272688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272688,0.000000,0.000000,0.250000,0,0);}
.m77_c00463{transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);}
.m2f_c00463{transform:matrix(0.273224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273224,0.000000,0.000000,0.250000,0,0);}
.ma1_c00463{transform:matrix(0.273415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273415,0.000000,0.000000,0.250000,0,0);}
.m15_c00463{transform:matrix(0.273779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273779,0.000000,0.000000,0.250000,0,0);}
.m20_c00463{transform:matrix(0.274089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274089,0.000000,0.000000,0.250000,0,0);}
.m5c_c00463{transform:matrix(0.274347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274347,0.000000,0.000000,0.250000,0,0);}
.m47_c00463{transform:matrix(0.275526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275526,0.000000,0.000000,0.250000,0,0);}
.m99_c00463{transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);}
.m6_c00463{transform:matrix(0.276028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276028,0.000000,0.000000,0.250000,0,0);}
.m7b_c00463{transform:matrix(0.276672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276672,0.000000,0.000000,0.250000,0,0);}
.m2e_c00463{transform:matrix(0.277280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277280,0.000000,0.000000,0.250000,0,0);}
.m43_c00463{transform:matrix(0.277283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277283,0.000000,0.000000,0.250000,0,0);}
.m23_c00463{transform:matrix(0.278342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278342,0.000000,0.000000,0.250000,0,0);}
.m58_c00463{transform:matrix(0.278624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278624,0.000000,0.000000,0.250000,0,0);}
.m1f_c00463{transform:matrix(0.278766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278766,0.000000,0.000000,0.250000,0,0);}
.m48_c00463{transform:matrix(0.278806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278806,0.000000,0.000000,0.250000,0,0);}
.m33_c00463{transform:matrix(0.280398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280398,0.000000,0.000000,0.250000,0,0);}
.m79_c00463{transform:matrix(0.281064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281064,0.000000,0.000000,0.250000,0,0);}
.m76_c00463{transform:matrix(0.281497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281497,0.000000,0.000000,0.250000,0,0);}
.m8c_c00463{transform:matrix(0.281570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281570,0.000000,0.000000,0.250000,0,0);}
.m31_c00463{transform:matrix(0.281890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281890,0.000000,0.000000,0.250000,0,0);}
.m35_c00463{transform:matrix(0.282284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282284,0.000000,0.000000,0.250000,0,0);}
.m38_c00463{transform:matrix(0.282884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282884,0.000000,0.000000,0.250000,0,0);}
.m8e_c00463{transform:matrix(0.284366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284366,0.000000,0.000000,0.250000,0,0);}
.m78_c00463{transform:matrix(0.285129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285129,0.000000,0.000000,0.250000,0,0);}
.m94_c00463{transform:matrix(0.285652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285652,0.000000,0.000000,0.250000,0,0);}
.m53_c00463{transform:matrix(0.287725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287725,0.000000,0.000000,0.250000,0,0);}
.m45_c00463{transform:matrix(0.288081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288081,0.000000,0.000000,0.250000,0,0);}
.m8_c00463{transform:matrix(0.289708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289708,0.000000,0.000000,0.250000,0,0);}
.m90_c00463{transform:matrix(0.290159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290159,0.000000,0.000000,0.250000,0,0);}
.m3b_c00463{transform:matrix(0.290577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290577,0.000000,0.000000,0.250000,0,0);}
.m67_c00463{transform:matrix(0.290958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290958,0.000000,0.000000,0.250000,0,0);}
.m5_c00463{transform:matrix(0.291195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291195,0.000000,0.000000,0.250000,0,0);}
.m64_c00463{transform:matrix(0.292669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292669,0.000000,0.000000,0.250000,0,0);}
.m1_c00463{transform:matrix(0.292703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292703,0.000000,0.000000,0.250000,0,0);}
.m44_c00463{transform:matrix(0.292728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292728,0.000000,0.000000,0.250000,0,0);}
.m2a_c00463{transform:matrix(0.293355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293355,0.000000,0.000000,0.250000,0,0);}
.m42_c00463{transform:matrix(0.293904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293904,0.000000,0.000000,0.250000,0,0);}
.m8d_c00463{transform:matrix(0.293950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293950,0.000000,0.000000,0.250000,0,0);}
.m81_c00463{transform:matrix(0.294191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294191,0.000000,0.000000,0.250000,0,0);}
.m6f_c00463{transform:matrix(0.295532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295532,0.000000,0.000000,0.250000,0,0);}
.m66_c00463{transform:matrix(0.296129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296129,0.000000,0.000000,0.250000,0,0);}
.m56_c00463{transform:matrix(0.296687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296687,0.000000,0.000000,0.250000,0,0);}
.m3d_c00463{transform:matrix(0.296939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296939,0.000000,0.000000,0.250000,0,0);}
.m52_c00463{transform:matrix(0.297307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297307,0.000000,0.000000,0.250000,0,0);}
.m59_c00463{transform:matrix(0.297423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297423,0.000000,0.000000,0.250000,0,0);}
.m97_c00463{transform:matrix(0.297897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297897,0.000000,0.000000,0.250000,0,0);}
.m88_c00463{transform:matrix(0.298449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298449,0.000000,0.000000,0.250000,0,0);}
.m13_c00463{transform:matrix(0.298994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298994,0.000000,0.000000,0.250000,0,0);}
.m9a_c00463{transform:matrix(0.299095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299095,0.000000,0.000000,0.250000,0,0);}
.m4e_c00463{transform:matrix(0.300905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300905,0.000000,0.000000,0.250000,0,0);}
.m6e_c00463{transform:matrix(0.300934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300934,0.000000,0.000000,0.250000,0,0);}
.m7c_c00463{transform:matrix(0.301038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301038,0.000000,0.000000,0.250000,0,0);}
.m92_c00463{transform:matrix(0.301157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301157,0.000000,0.000000,0.250000,0,0);}
.m57_c00463{transform:matrix(0.301350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301350,0.000000,0.000000,0.250000,0,0);}
.m5e_c00463{transform:matrix(0.301483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301483,0.000000,0.000000,0.250000,0,0);}
.m80_c00463{transform:matrix(0.301962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301962,0.000000,0.000000,0.250000,0,0);}
.m4a_c00463{transform:matrix(0.301990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301990,0.000000,0.000000,0.250000,0,0);}
.m73_c00463{transform:matrix(0.302191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302191,0.000000,0.000000,0.250000,0,0);}
.m26_c00463{transform:matrix(0.302559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302559,0.000000,0.000000,0.250000,0,0);}
.m4b_c00463{transform:matrix(0.302845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302845,0.000000,0.000000,0.250000,0,0);}
.m63_c00463{transform:matrix(0.303359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303359,0.000000,0.000000,0.250000,0,0);}
.m2b_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);}
.m4d_c00463{transform:matrix(0.306162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306162,0.000000,0.000000,0.250000,0,0);}
.m4f_c00463{transform:matrix(0.306835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306835,0.000000,0.000000,0.250000,0,0);}
.m3f_c00463{transform:matrix(0.307153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307153,0.000000,0.000000,0.250000,0,0);}
.m36_c00463{transform:matrix(0.307666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307666,0.000000,0.000000,0.250000,0,0);}
.m4_c00463{transform:matrix(0.309013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309013,0.000000,0.000000,0.250000,0,0);}
.m65_c00463{transform:matrix(0.309201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309201,0.000000,0.000000,0.250000,0,0);}
.m83_c00463{transform:matrix(0.310062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310062,0.000000,0.000000,0.250000,0,0);}
.md_c00463{transform:matrix(0.310180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310180,0.000000,0.000000,0.250000,0,0);}
.m9f_c00463{transform:matrix(0.310477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310477,0.000000,0.000000,0.250000,0,0);}
.m5a_c00463{transform:matrix(0.310813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310813,0.000000,0.000000,0.250000,0,0);}
.m1e_c00463{transform:matrix(0.310880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310880,0.000000,0.000000,0.250000,0,0);}
.m7e_c00463{transform:matrix(0.311028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311028,0.000000,0.000000,0.250000,0,0);}
.m30_c00463{transform:matrix(0.311171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311171,0.000000,0.000000,0.250000,0,0);}
.m2d_c00463{transform:matrix(0.311615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311615,0.000000,0.000000,0.250000,0,0);}
.m10_c00463{transform:matrix(0.311774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311774,0.000000,0.000000,0.250000,0,0);}
.m69_c00463{transform:matrix(0.312332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312332,0.000000,0.000000,0.250000,0,0);}
.m62_c00463{transform:matrix(0.312352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312352,0.000000,0.000000,0.250000,0,0);}
.m25_c00463{transform:matrix(0.312524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312524,0.000000,0.000000,0.250000,0,0);}
.m75_c00463{transform:matrix(0.313327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313327,0.000000,0.000000,0.250000,0,0);}
.m3a_c00463{transform:matrix(0.314921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314921,0.000000,0.000000,0.250000,0,0);}
.m74_c00463{transform:matrix(0.315191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315191,0.000000,0.000000,0.250000,0,0);}
.m6b_c00463{transform:matrix(0.316203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316203,0.000000,0.000000,0.250000,0,0);}
.ma5_c00463{transform:matrix(0.316884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316884,0.000000,0.000000,0.250000,0,0);}
.m34_c00463{transform:matrix(0.317404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317404,0.000000,0.000000,0.250000,0,0);}
.m5b_c00463{transform:matrix(0.319657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319657,0.000000,0.000000,0.250000,0,0);}
.m86_c00463{transform:matrix(0.319662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319662,0.000000,0.000000,0.250000,0,0);}
.ma3_c00463{transform:matrix(0.319957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319957,0.000000,0.000000,0.250000,0,0);}
.m82_c00463{transform:matrix(0.320282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320282,0.000000,0.000000,0.250000,0,0);}
.m8b_c00463{transform:matrix(0.321648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321648,0.000000,0.000000,0.250000,0,0);}
.m9b_c00463{transform:matrix(0.322393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322393,0.000000,0.000000,0.250000,0,0);}
.m27_c00463{transform:matrix(0.323882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323882,0.000000,0.000000,0.250000,0,0);}
.m7d_c00463{transform:matrix(0.323898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323898,0.000000,0.000000,0.250000,0,0);}
.m2c_c00463{transform:matrix(0.324696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324696,0.000000,0.000000,0.250000,0,0);}
.m89_c00463{transform:matrix(0.324893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324893,0.000000,0.000000,0.250000,0,0);}
.m7_c00463{transform:matrix(0.327578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327578,0.000000,0.000000,0.250000,0,0);}
.m28_c00463{transform:matrix(0.328015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328015,0.000000,0.000000,0.250000,0,0);}
.m1c_c00463{transform:matrix(0.329827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329827,0.000000,0.000000,0.250000,0,0);}
.m93_c00463{transform:matrix(0.330270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330270,0.000000,0.000000,0.250000,0,0);}
.m85_c00463{transform:matrix(0.331300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331300,0.000000,0.000000,0.250000,0,0);}
.ma4_c00463{transform:matrix(0.333122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333122,0.000000,0.000000,0.250000,0,0);}
.m55_c00463{transform:matrix(0.335372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335372,0.000000,0.000000,0.250000,0,0);}
.m5d_c00463{transform:matrix(0.335776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335776,0.000000,0.000000,0.250000,0,0);}
.m17_c00463{transform:matrix(0.336598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336598,0.000000,0.000000,0.250000,0,0);}
.m7a_c00463{transform:matrix(0.337301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337301,0.000000,0.000000,0.250000,0,0);}
.m4c_c00463{transform:matrix(0.337485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337485,0.000000,0.000000,0.250000,0,0);}
.m1b_c00463{transform:matrix(0.337600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337600,0.000000,0.000000,0.250000,0,0);}
.m96_c00463{transform:matrix(0.339394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339394,0.000000,0.000000,0.250000,0,0);}
.m32_c00463{transform:matrix(0.343621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343621,0.000000,0.000000,0.250000,0,0);}
.m3_c00463{transform:matrix(0.343719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343719,0.000000,0.000000,0.250000,0,0);}
.m1a_c00463{transform:matrix(0.344194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344194,0.000000,0.000000,0.250000,0,0);}
.m37_c00463{transform:matrix(0.347824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347824,0.000000,0.000000,0.250000,0,0);}
.m40_c00463{transform:matrix(0.349752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349752,0.000000,0.000000,0.250000,0,0);}
.m3c_c00463{transform:matrix(0.350932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350932,0.000000,0.000000,0.250000,0,0);}
.m7f_c00463{transform:matrix(0.351130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351130,0.000000,0.000000,0.250000,0,0);}
.m87_c00463{transform:matrix(0.354789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354789,0.000000,0.000000,0.250000,0,0);}
.m2_c00463{transform:matrix(0.356405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356405,0.000000,0.000000,0.250000,0,0);}
.ma_c00463{transform:matrix(0.356607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356607,0.000000,0.000000,0.250000,0,0);}
.m70_c00463{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_c00463{transform:matrix(0.360503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360503,0.000000,0.000000,0.250000,0,0);}
.m49_c00463{transform:matrix(0.363862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363862,0.000000,0.000000,0.250000,0,0);}
.m39_c00463{transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);}
.m22_c00463{transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);}
.m71_c00463{transform:matrix(0.379741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379741,0.000000,0.000000,0.250000,0,0);}
.m72_c00463{transform:matrix(0.380559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380559,0.000000,0.000000,0.250000,0,0);}
.m12_c00463{transform:matrix(0.384267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384267,0.000000,0.000000,0.250000,0,0);}
.m68_c00463{transform:matrix(0.386583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386583,0.000000,0.000000,0.250000,0,0);}
.mf_c00463{transform:matrix(0.390366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390366,0.000000,0.000000,0.250000,0,0);}
.m5f_c00463{transform:matrix(0.407337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407337,0.000000,0.000000,0.250000,0,0);}
.m54_c00463{transform:matrix(0.420477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420477,0.000000,0.000000,0.250000,0,0);}
.v0_c00463{vertical-align:0.000000px;}
.ls8_c00463{letter-spacing:-2.409264px;}
.ls5_c00463{letter-spacing:-2.342340px;}
.ls16_c00463{letter-spacing:-1.496880px;}
.ls4_c00463{letter-spacing:0.000000px;}
.ls7_c00463{letter-spacing:1.261913px;}
.ls17_c00463{letter-spacing:2.653200px;}
.ls10_c00463{letter-spacing:2.848355px;}
.ls13_c00463{letter-spacing:3.009600px;}
.lse_c00463{letter-spacing:3.405610px;}
.lsd_c00463{letter-spacing:3.465000px;}
.ls9_c00463{letter-spacing:3.524400px;}
.lsb_c00463{letter-spacing:3.593700px;}
.ls6_c00463{letter-spacing:3.603610px;}
.ls2_c00463{letter-spacing:3.623400px;}
.ls14_c00463{letter-spacing:3.643200px;}
.ls11_c00463{letter-spacing:3.682810px;}
.lsf_c00463{letter-spacing:3.781810px;}
.ls1_c00463{letter-spacing:3.870900px;}
.ls12_c00463{letter-spacing:3.920400px;}
.ls15_c00463{letter-spacing:3.979810px;}
.ls0_c00463{letter-spacing:4.078810px;}
.lsc_c00463{letter-spacing:52.747398px;}
.lsa_c00463{letter-spacing:58.449798px;}
.ls3_c00463{letter-spacing:61.300998px;}
.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:-16.895736px;}
.ws1_c00463{word-spacing:0.000000px;}
._0_c00463{margin-left:-2.038608px;}
.fc0_c00463{color:transparent;}
.fs11_c00463{font-size:22.572000px;}
.fs14_c00463{font-size:25.146000px;}
.fs1f_c00463{font-size:27.720000px;}
.fs12_c00463{font-size:32.472000px;}
.fs16_c00463{font-size:33.660000px;}
.fs1d_c00463{font-size:42.768000px;}
.fs5_c00463{font-size:45.144000px;}
.fsd_c00463{font-size:52.747398px;}
.fs1e_c00463{font-size:53.064000px;}
.fsb_c00463{font-size:58.449798px;}
.fs1a_c00463{font-size:60.192000px;}
.fs3_c00463{font-size:61.300998px;}
.fs6_c00463{font-size:66.924000px;}
.fs13_c00463{font-size:67.320000px;}
.fsf_c00463{font-size:68.112198px;}
.fse_c00463{font-size:69.300000px;}
.fsa_c00463{font-size:70.488000px;}
.fsc_c00463{font-size:71.874000px;}
.fs7_c00463{font-size:72.072198px;}
.fs2_c00463{font-size:72.468000px;}
.fs1b_c00463{font-size:72.864000px;}
.fs18_c00463{font-size:73.656198px;}
.fs10_c00463{font-size:74.844000px;}
.fs4_c00463{font-size:75.636198px;}
.fs9_c00463{font-size:77.220000px;}
.fs1_c00463{font-size:77.418000px;}
.fs15_c00463{font-size:77.616198px;}
.fs19_c00463{font-size:78.408000px;}
.fs1c_c00463{font-size:79.596198px;}
.fs0_c00463{font-size:81.576198px;}
.fs17_c00463{font-size:85.536198px;}
.fs8_c00463{font-size:91.872198px;}
.y0_c00463{bottom:0.000000px;}
.y20_c00463{bottom:3.117540px;}
.y1_c00463{bottom:76.500000px;}
.y1f_c00463{bottom:98.273370px;}
.y1e_c00463{bottom:140.689920px;}
.y1d_c00463{bottom:173.473770px;}
.y1c_c00463{bottom:205.198320px;}
.y1b_c00463{bottom:236.561520px;}
.y16_c00463{bottom:261.148170px;}
.y1a_c00463{bottom:375.552570px;}
.y19_c00463{bottom:375.913920px;}
.y18_c00463{bottom:388.031520px;}
.y17_c00463{bottom:400.856970px;}
.y15_c00463{bottom:427.235520px;}
.y14_c00463{bottom:442.204320px;}
.y13_c00463{bottom:458.955120px;}
.y12_c00463{bottom:490.669770px;}
.y11_c00463{bottom:522.032970px;}
.y10_c00463{bottom:553.757520px;}
.yf_c00463{bottom:586.184970px;}
.ye_c00463{bottom:617.909520px;}
.yd_c00463{bottom:649.980570px;}
.yc_c00463{bottom:680.630970px;}
.yb_c00463{bottom:712.711920px;}
.ya_c00463{bottom:743.718720px;}
.y9_c00463{bottom:806.801520px;}
.y8_c00463{bottom:830.323920px;}
.y7_c00463{bottom:838.877520px;}
.y6_c00463{bottom:870.592170px;}
.y5_c00463{bottom:899.460570px;}
.y4_c00463{bottom:902.311770px;}
.y3_c00463{bottom:934.744170px;}
.y2_c00463{bottom:1065.191520px;}
.h14_c00463{height:23.541891px;}
.h17_c00463{height:26.226492px;}
.h22_c00463{height:28.911094px;}
.h19_c00463{height:33.035449px;}
.h15_c00463{height:33.867281px;}
.hf_c00463{height:35.129767px;}
.hd_c00463{height:38.927565px;}
.h5_c00463{height:40.826465px;}
.h20_c00463{height:41.953570px;}
.h7_c00463{height:44.306367px;}
.h21_c00463{height:55.344094px;}
.h1d_c00463{height:62.778375px;}
.h16_c00463{height:66.070898px;}
.hc_c00463{height:69.180117px;}
.h8_c00463{height:69.799641px;}
.he_c00463{height:70.540400px;}
.h10_c00463{height:70.734921px;}
.h12_c00463{height:71.038894px;}
.h4_c00463{height:71.123379px;}
.h11_c00463{height:72.277734px;}
.h1b_c00463{height:72.289530px;}
.h13_c00463{height:73.455293px;}
.h6_c00463{height:74.232792px;}
.h9_c00463{height:75.169050px;}
.hb_c00463{height:75.787207px;}
.h3_c00463{height:75.981533px;}
.h1e_c00463{height:75.994875px;}
.h1c_c00463{height:76.953164px;}
.h1f_c00463{height:78.119315px;}
.h2_c00463{height:80.062577px;}
.h18_c00463{height:80.951269px;}
.h1a_c00463{height:83.949101px;}
.ha_c00463{height:95.819832px;}
.h1_c00463{height:1110.000000px;}
.h0_c00463{height:1263.000000px;}
.w1_c00463{width:760.500000px;}
.w0_c00463{width:892.500000px;}
.x0_c00463{left:0.000000px;}
.x1_c00463{left:66.000000px;}
.x46_c00463{left:92.407485px;}
.x14_c00463{left:94.238985px;}
.x3_c00463{left:95.773485px;}
.x27_c00463{left:96.847635px;}
.x5b_c00463{left:123.790485px;}
.xd_c00463{left:126.448635px;}
.x28_c00463{left:130.586835px;}
.x1e_c00463{left:137.482185px;}
.x56_c00463{left:146.634735px;}
.x20_c00463{left:148.654335px;}
.x47_c00463{left:158.519685px;}
.x1b_c00463{left:170.978835px;}
.x29_c00463{left:173.028135px;}
.x60_c00463{left:180.562035px;}
.x1f_c00463{left:182.294535px;}
.x21_c00463{left:183.774585px;}
.xe_c00463{left:191.491635px;}
.x4_c00463{left:203.737935px;}
.x4d_c00463{left:213.430035px;}
.x35_c00463{left:214.563585px;}
.x2f_c00463{left:216.568335px;}
.x5_c00463{left:235.422885px;}
.x40_c00463{left:236.506935px;}
.x57_c00463{left:244.481385px;}
.x5c_c00463{left:246.015885px;}
.x15_c00463{left:247.025685px;}
.x2a_c00463{left:248.515635px;}
.x22_c00463{left:258.534435px;}
.x3d_c00463{left:268.667085px;}
.x38_c00463{left:281.452935px;}
.x58_c00463{left:291.461835px;}
.x64_c00463{left:300.554985px;}
.x6_c00463{left:302.495385px;}
.x23_c00463{left:303.955635px;}
.x48_c00463{left:312.662685px;}
.x61_c00463{left:322.646835px;}
.x16_c00463{left:324.899085px;}
.x36_c00463{left:326.007885px;}
.x5d_c00463{left:335.051535px;}
.x24_c00463{left:336.685035px;}
.x4f_c00463{left:345.392085px;}
.x7_c00463{left:346.951335px;}
.x1d_c00463{left:350.272785px;}
.x2b_c00463{left:358.831335px;}
.xf_c00463{left:368.671935px;}
.x30_c00463{left:369.760935px;}
.x17_c00463{left:378.245235px;}
.x50_c00463{left:380.358885px;}
.x1c_c00463{left:391.922085px;}
.x62_c00463{left:399.995535px;}
.x4e_c00463{left:401.069685px;}
.x49_c00463{left:402.599235px;}
.x43_c00463{left:412.820985px;}
.x5e_c00463{left:423.166485px;}
.x18_c00463{left:424.646535px;}
.x8_c00463{left:435.462285px;}
.x25_c00463{left:445.961235px;}
.x44_c00463{left:447.099735px;}
.x65_c00463{left:455.935485px;}
.x2c_c00463{left:457.910535px;}
.x9_c00463{left:468.592635px;}
.x31_c00463{left:469.642035px;}
.x59_c00463{left:478.908435px;}
.x41_c00463{left:490.654785px;}
.x37_c00463{left:500.346885px;}
.x4a_c00463{left:501.752685px;}
.xa_c00463{left:512.612985px;}
.x42_c00463{left:523.349535px;}
.x45_c00463{left:524.502885px;}
.x3e_c00463{left:534.343485px;}
.x39_c00463{left:535.947285px;}
.x19_c00463{left:545.391885px;}
.x67_c00463{left:555.308715px;}
.x10_c00463{left:556.460085px;}
.x4b_c00463{left:567.142185px;}
.x3a_c00463{left:568.211385px;}
.x32_c00463{left:577.482735px;}
.x11_c00463{left:579.037035px;}
.x5a_c00463{left:590.110185px;}
.xb_c00463{left:600.831885px;}
.x5f_c00463{left:602.138685px;}
.x33_c00463{left:611.523885px;}
.x12_c00463{left:612.568335px;}
.x1a_c00463{left:624.190935px;}
.x3b_c00463{left:634.981935px;}
.x2d_c00463{left:643.778085px;}
.xc_c00463{left:644.827485px;}
.x26_c00463{left:645.975885px;}
.x63_c00463{left:655.172985px;}
.x51_c00463{left:657.098535px;}
.x3c_c00463{left:666.919335px;}
.x2e_c00463{left:679.472535px;}
.x34_c00463{left:690.258585px;}
.x52_c00463{left:696.089685px;}
.x66_c00463{left:697.158885px;}
.x2_c00463{left:699.856635px;}
.x53_c00463{left:701.272335px;}
.x54_c00463{left:703.153335px;}
.x55_c00463{left:704.618535px;}
.x4c_c00463{left:711.677235px;}
.x3f_c00463{left:712.974135px;}
.x13_c00463{left:714.954135px;}
@media print{
.v0_c00463{vertical-align:0.000000pt;}
.ls8_c00463{letter-spacing:-2.141568pt;}
.ls5_c00463{letter-spacing:-2.082080pt;}
.ls16_c00463{letter-spacing:-1.330560pt;}
.ls4_c00463{letter-spacing:0.000000pt;}
.ls7_c00463{letter-spacing:1.121701pt;}
.ls17_c00463{letter-spacing:2.358400pt;}
.ls10_c00463{letter-spacing:2.531871pt;}
.ls13_c00463{letter-spacing:2.675200pt;}
.lse_c00463{letter-spacing:3.027209pt;}
.lsd_c00463{letter-spacing:3.080000pt;}
.ls9_c00463{letter-spacing:3.132800pt;}
.lsb_c00463{letter-spacing:3.194400pt;}
.ls6_c00463{letter-spacing:3.203209pt;}
.ls2_c00463{letter-spacing:3.220800pt;}
.ls14_c00463{letter-spacing:3.238400pt;}
.ls11_c00463{letter-spacing:3.273609pt;}
.lsf_c00463{letter-spacing:3.361609pt;}
.ls1_c00463{letter-spacing:3.440800pt;}
.ls12_c00463{letter-spacing:3.484800pt;}
.ls15_c00463{letter-spacing:3.537609pt;}
.ls0_c00463{letter-spacing:3.625609pt;}
.lsc_c00463{letter-spacing:46.886576pt;}
.lsa_c00463{letter-spacing:51.955376pt;}
.ls3_c00463{letter-spacing:54.489776pt;}
.ws0_c00463{word-spacing:-15.018432pt;}
.ws1_c00463{word-spacing:0.000000pt;}
._0_c00463{margin-left:-1.812096pt;}
.fs11_c00463{font-size:20.064000pt;}
.fs14_c00463{font-size:22.352000pt;}
.fs1f_c00463{font-size:24.640000pt;}
.fs12_c00463{font-size:28.864000pt;}
.fs16_c00463{font-size:29.920000pt;}
.fs1d_c00463{font-size:38.016000pt;}
.fs5_c00463{font-size:40.128000pt;}
.fsd_c00463{font-size:46.886576pt;}
.fs1e_c00463{font-size:47.168000pt;}
.fsb_c00463{font-size:51.955376pt;}
.fs1a_c00463{font-size:53.504000pt;}
.fs3_c00463{font-size:54.489776pt;}
.fs6_c00463{font-size:59.488000pt;}
.fs13_c00463{font-size:59.840000pt;}
.fsf_c00463{font-size:60.544176pt;}
.fse_c00463{font-size:61.600000pt;}
.fsa_c00463{font-size:62.656000pt;}
.fsc_c00463{font-size:63.888000pt;}
.fs7_c00463{font-size:64.064176pt;}
.fs2_c00463{font-size:64.416000pt;}
.fs1b_c00463{font-size:64.768000pt;}
.fs18_c00463{font-size:65.472176pt;}
.fs10_c00463{font-size:66.528000pt;}
.fs4_c00463{font-size:67.232176pt;}
.fs9_c00463{font-size:68.640000pt;}
.fs1_c00463{font-size:68.816000pt;}
.fs15_c00463{font-size:68.992176pt;}
.fs19_c00463{font-size:69.696000pt;}
.fs1c_c00463{font-size:70.752176pt;}
.fs0_c00463{font-size:72.512176pt;}
.fs17_c00463{font-size:76.032176pt;}
.fs8_c00463{font-size:81.664176pt;}
.y0_c00463{bottom:0.000000pt;}
.y20_c00463{bottom:2.771147pt;}
.y1_c00463{bottom:68.000000pt;}
.y1f_c00463{bottom:87.354107pt;}
.y1e_c00463{bottom:125.057707pt;}
.y1d_c00463{bottom:154.198907pt;}
.y1c_c00463{bottom:182.398507pt;}
.y1b_c00463{bottom:210.276907pt;}
.y16_c00463{bottom:232.131707pt;}
.y1a_c00463{bottom:333.824507pt;}
.y19_c00463{bottom:334.145707pt;}
.y18_c00463{bottom:344.916907pt;}
.y17_c00463{bottom:356.317307pt;}
.y15_c00463{bottom:379.764907pt;}
.y14_c00463{bottom:393.070507pt;}
.y13_c00463{bottom:407.960107pt;}
.y12_c00463{bottom:436.150907pt;}
.y11_c00463{bottom:464.029307pt;}
.y10_c00463{bottom:492.228907pt;}
.yf_c00463{bottom:521.053307pt;}
.ye_c00463{bottom:549.252907pt;}
.yd_c00463{bottom:577.760507pt;}
.yc_c00463{bottom:605.005307pt;}
.yb_c00463{bottom:633.521707pt;}
.ya_c00463{bottom:661.083307pt;}
.y9_c00463{bottom:717.156907pt;}
.y8_c00463{bottom:738.065707pt;}
.y7_c00463{bottom:745.668907pt;}
.y6_c00463{bottom:773.859707pt;}
.y5_c00463{bottom:799.520507pt;}
.y4_c00463{bottom:802.054907pt;}
.y3_c00463{bottom:830.883707pt;}
.y2_c00463{bottom:946.836907pt;}
.h14_c00463{height:20.926125pt;}
.h17_c00463{height:23.312438pt;}
.h22_c00463{height:25.698750pt;}
.h19_c00463{height:29.364844pt;}
.h15_c00463{height:30.104250pt;}
.hf_c00463{height:31.226460pt;}
.hd_c00463{height:34.602280pt;}
.h5_c00463{height:36.290191pt;}
.h20_c00463{height:37.292063pt;}
.h7_c00463{height:39.383438pt;}
.h21_c00463{height:49.194750pt;}
.h1d_c00463{height:55.803000pt;}
.h16_c00463{height:58.729688pt;}
.hc_c00463{height:61.493438pt;}
.h8_c00463{height:62.044125pt;}
.he_c00463{height:62.702578pt;}
.h10_c00463{height:62.875485pt;}
.h12_c00463{height:63.145684pt;}
.h4_c00463{height:63.220781pt;}
.h11_c00463{height:64.246875pt;}
.h1b_c00463{height:64.257360pt;}
.h13_c00463{height:65.293594pt;}
.h6_c00463{height:65.984704pt;}
.h9_c00463{height:66.816934pt;}
.hb_c00463{height:67.366406pt;}
.h3_c00463{height:67.539141pt;}
.h1e_c00463{height:67.551000pt;}
.h1c_c00463{height:68.402813pt;}
.h1f_c00463{height:69.439391pt;}
.h2_c00463{height:71.166735pt;}
.h18_c00463{height:71.956684pt;}
.h1a_c00463{height:74.621423pt;}
.ha_c00463{height:85.173184pt;}
.h1_c00463{height:986.666667pt;}
.h0_c00463{height:1122.666667pt;}
.w1_c00463{width:676.000000pt;}
.w0_c00463{width:793.333333pt;}
.x0_c00463{left:0.000000pt;}
.x1_c00463{left:58.666667pt;}
.x46_c00463{left:82.139987pt;}
.x14_c00463{left:83.767987pt;}
.x3_c00463{left:85.131987pt;}
.x27_c00463{left:86.086787pt;}
.x5b_c00463{left:110.035987pt;}
.xd_c00463{left:112.398787pt;}
.x28_c00463{left:116.077187pt;}
.x1e_c00463{left:122.206387pt;}
.x56_c00463{left:130.341987pt;}
.x20_c00463{left:132.137187pt;}
.x47_c00463{left:140.906387pt;}
.x1b_c00463{left:151.981187pt;}
.x29_c00463{left:153.802787pt;}
.x60_c00463{left:160.499587pt;}
.x1f_c00463{left:162.039587pt;}
.x21_c00463{left:163.355187pt;}
.xe_c00463{left:170.214787pt;}
.x4_c00463{left:181.100387pt;}
.x4d_c00463{left:189.715587pt;}
.x35_c00463{left:190.723187pt;}
.x2f_c00463{left:192.505187pt;}
.x5_c00463{left:209.264787pt;}
.x40_c00463{left:210.228387pt;}
.x57_c00463{left:217.316787pt;}
.x5c_c00463{left:218.680787pt;}
.x15_c00463{left:219.578387pt;}
.x2a_c00463{left:220.902787pt;}
.x22_c00463{left:229.808387pt;}
.x3d_c00463{left:238.815187pt;}
.x38_c00463{left:250.180387pt;}
.x58_c00463{left:259.077187pt;}
.x64_c00463{left:267.159987pt;}
.x6_c00463{left:268.884787pt;}
.x23_c00463{left:270.182787pt;}
.x48_c00463{left:277.922387pt;}
.x61_c00463{left:286.797187pt;}
.x16_c00463{left:288.799187pt;}
.x36_c00463{left:289.784787pt;}
.x5d_c00463{left:297.823587pt;}
.x24_c00463{left:299.275587pt;}
.x4f_c00463{left:307.015187pt;}
.x7_c00463{left:308.401187pt;}
.x1d_c00463{left:311.353587pt;}
.x2b_c00463{left:318.961187pt;}
.xf_c00463{left:327.708387pt;}
.x30_c00463{left:328.676387pt;}
.x17_c00463{left:336.217987pt;}
.x50_c00463{left:338.096787pt;}
.x1c_c00463{left:348.375187pt;}
.x62_c00463{left:355.551587pt;}
.x4e_c00463{left:356.506387pt;}
.x49_c00463{left:357.865987pt;}
.x43_c00463{left:366.951987pt;}
.x5e_c00463{left:376.147987pt;}
.x18_c00463{left:377.463587pt;}
.x8_c00463{left:387.077587pt;}
.x25_c00463{left:396.409987pt;}
.x44_c00463{left:397.421987pt;}
.x65_c00463{left:405.275987pt;}
.x2c_c00463{left:407.031587pt;}
.x9_c00463{left:416.526787pt;}
.x31_c00463{left:417.459587pt;}
.x59_c00463{left:425.696387pt;}
.x41_c00463{left:436.137587pt;}
.x37_c00463{left:444.752787pt;}
.x4a_c00463{left:446.002387pt;}
.xa_c00463{left:455.655987pt;}
.x42_c00463{left:465.199587pt;}
.x45_c00463{left:466.224787pt;}
.x3e_c00463{left:474.971987pt;}
.x39_c00463{left:476.397587pt;}
.x19_c00463{left:484.792787pt;}
.x67_c00463{left:493.607747pt;}
.x10_c00463{left:494.631187pt;}
.x4b_c00463{left:504.126387pt;}
.x3a_c00463{left:505.076787pt;}
.x32_c00463{left:513.317987pt;}
.x11_c00463{left:514.699587pt;}
.x5a_c00463{left:524.542387pt;}
.xb_c00463{left:534.072787pt;}
.x5f_c00463{left:535.234387pt;}
.x33_c00463{left:543.576787pt;}
.x12_c00463{left:544.505187pt;}
.x1a_c00463{left:554.836387pt;}
.x3b_c00463{left:564.428387pt;}
.x2d_c00463{left:572.247187pt;}
.xc_c00463{left:573.179987pt;}
.x26_c00463{left:574.200787pt;}
.x63_c00463{left:582.375987pt;}
.x51_c00463{left:584.087587pt;}
.x3c_c00463{left:592.817187pt;}
.x2e_c00463{left:603.975587pt;}
.x34_c00463{left:613.563187pt;}
.x52_c00463{left:618.746387pt;}
.x66_c00463{left:619.696787pt;}
.x2_c00463{left:622.094787pt;}
.x53_c00463{left:623.353187pt;}
.x54_c00463{left:625.025187pt;}
.x55_c00463{left:626.327587pt;}
.x4c_c00463{left:632.601987pt;}
.x3f_c00463{left:633.754787pt;}
.x13_c00463{left:635.514787pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d09f30f06b31dda0ac1471e3.woff2')format("woff");}.ff1_c00464{font-family:ff1_c00464;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00464;src:url('chunks/assets/font_bfc9db75f48c42cfd6d1510c.woff2')format("woff");}.ff2_c00464{font-family:ff2_c00464;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00464;src:url('chunks/assets/font_9266a45fd94eb28296c9e72f.woff2')format("woff");}.ff3_c00464{font-family:ff3_c00464;line-height:0.666000;font-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_c00464{transform:matrix(0.140249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140249,0.000000,0.000000,0.250000,0,0);}
.m27_c00464{transform:matrix(0.153646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153646,0.000000,0.000000,0.250000,0,0);}
.m85_c00464{transform:matrix(0.161826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161826,0.000000,0.000000,0.250000,0,0);}
.m5c_c00464{transform:matrix(0.165743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165743,0.000000,0.000000,0.250000,0,0);}
.m23_c00464{transform:matrix(0.173702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173702,0.000000,0.000000,0.250000,0,0);}
.m72_c00464{transform:matrix(0.221364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221364,0.000000,0.000000,0.250000,0,0);}
.m1_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);}
.m59_c00464{transform:matrix(0.251554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251554,0.000000,0.000000,0.250000,0,0);}
.m1b_c00464{transform:matrix(0.251863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251863,0.000000,0.000000,0.250000,0,0);}
.m2f_c00464{transform:matrix(0.254708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254708,0.000000,0.000000,0.250000,0,0);}
.m6a_c00464{transform:matrix(0.256983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256983,0.000000,0.000000,0.250000,0,0);}
.m3d_c00464{transform:matrix(0.258274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258274,0.000000,0.000000,0.250000,0,0);}
.m16_c00464{transform:matrix(0.258942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258942,0.000000,0.000000,0.250000,0,0);}
.m73_c00464{transform:matrix(0.260732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260732,0.000000,0.000000,0.250000,0,0);}
.mc_c00464{transform:matrix(0.261598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261598,0.000000,0.000000,0.250000,0,0);}
.m70_c00464{transform:matrix(0.261602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261602,0.000000,0.000000,0.250000,0,0);}
.m51_c00464{transform:matrix(0.261782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261782,0.000000,0.000000,0.250000,0,0);}
.m3c_c00464{transform:matrix(0.261941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261941,0.000000,0.000000,0.250000,0,0);}
.m19_c00464{transform:matrix(0.263971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263971,0.000000,0.000000,0.250000,0,0);}
.m29_c00464{transform:matrix(0.264884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264884,0.000000,0.000000,0.250000,0,0);}
.m52_c00464{transform:matrix(0.265573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265573,0.000000,0.000000,0.250000,0,0);}
.m78_c00464{transform:matrix(0.267567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267567,0.000000,0.000000,0.250000,0,0);}
.m75_c00464{transform:matrix(0.268409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268409,0.000000,0.000000,0.250000,0,0);}
.m12_c00464{transform:matrix(0.268602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268602,0.000000,0.000000,0.250000,0,0);}
.m6b_c00464{transform:matrix(0.269413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269413,0.000000,0.000000,0.250000,0,0);}
.m93_c00464{transform:matrix(0.270128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270128,0.000000,0.000000,0.250000,0,0);}
.m1f_c00464{transform:matrix(0.270463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270463,0.000000,0.000000,0.250000,0,0);}
.m3a_c00464{transform:matrix(0.271569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271569,0.000000,0.000000,0.250000,0,0);}
.m6f_c00464{transform:matrix(0.271992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271992,0.000000,0.000000,0.250000,0,0);}
.m5_c00464{transform:matrix(0.272243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272243,0.000000,0.000000,0.250000,0,0);}
.m36_c00464{transform:matrix(0.273233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273233,0.000000,0.000000,0.250000,0,0);}
.md_c00464{transform:matrix(0.274021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274021,0.000000,0.000000,0.250000,0,0);}
.m20_c00464{transform:matrix(0.274645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274645,0.000000,0.000000,0.250000,0,0);}
.m49_c00464{transform:matrix(0.274764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274764,0.000000,0.000000,0.250000,0,0);}
.m53_c00464{transform:matrix(0.275354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275354,0.000000,0.000000,0.250000,0,0);}
.m6d_c00464{transform:matrix(0.275703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275703,0.000000,0.000000,0.250000,0,0);}
.mb_c00464{transform:matrix(0.275747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275747,0.000000,0.000000,0.250000,0,0);}
.m28_c00464{transform:matrix(0.276251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276251,0.000000,0.000000,0.250000,0,0);}
.m55_c00464{transform:matrix(0.276696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276696,0.000000,0.000000,0.250000,0,0);}
.m26_c00464{transform:matrix(0.277234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277234,0.000000,0.000000,0.250000,0,0);}
.m76_c00464{transform:matrix(0.278714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278714,0.000000,0.000000,0.250000,0,0);}
.m74_c00464{transform:matrix(0.279278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279278,0.000000,0.000000,0.250000,0,0);}
.m58_c00464{transform:matrix(0.279537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279537,0.000000,0.000000,0.250000,0,0);}
.m37_c00464{transform:matrix(0.280793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280793,0.000000,0.000000,0.250000,0,0);}
.m18_c00464{transform:matrix(0.280936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280936,0.000000,0.000000,0.250000,0,0);}
.m69_c00464{transform:matrix(0.281920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281920,0.000000,0.000000,0.250000,0,0);}
.m4_c00464{transform:matrix(0.282259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282259,0.000000,0.000000,0.250000,0,0);}
.m30_c00464{transform:matrix(0.282503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282503,0.000000,0.000000,0.250000,0,0);}
.m63_c00464{transform:matrix(0.284046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284046,0.000000,0.000000,0.250000,0,0);}
.m50_c00464{transform:matrix(0.284683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284683,0.000000,0.000000,0.250000,0,0);}
.me_c00464{transform:matrix(0.285051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285051,0.000000,0.000000,0.250000,0,0);}
.m87_c00464{transform:matrix(0.285257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285257,0.000000,0.000000,0.250000,0,0);}
.m44_c00464{transform:matrix(0.286490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286490,0.000000,0.000000,0.250000,0,0);}
.m32_c00464{transform:matrix(0.286770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286770,0.000000,0.000000,0.250000,0,0);}
.m68_c00464{transform:matrix(0.286811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286811,0.000000,0.000000,0.250000,0,0);}
.m14_c00464{transform:matrix(0.287090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287090,0.000000,0.000000,0.250000,0,0);}
.m95_c00464{transform:matrix(0.287221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287221,0.000000,0.000000,0.250000,0,0);}
.m67_c00464{transform:matrix(0.287753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287753,0.000000,0.000000,0.250000,0,0);}
.m7_c00464{transform:matrix(0.288028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288028,0.000000,0.000000,0.250000,0,0);}
.m43_c00464{transform:matrix(0.289252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289252,0.000000,0.000000,0.250000,0,0);}
.m0_c00464{transform:matrix(0.289398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289398,0.000000,0.000000,0.250000,0,0);}
.m91_c00464{transform:matrix(0.289523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289523,0.000000,0.000000,0.250000,0,0);}
.m94_c00464{transform:matrix(0.289936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289936,0.000000,0.000000,0.250000,0,0);}
.m54_c00464{transform:matrix(0.290670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290670,0.000000,0.000000,0.250000,0,0);}
.m7f_c00464{transform:matrix(0.290778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290778,0.000000,0.000000,0.250000,0,0);}
.m42_c00464{transform:matrix(0.291211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291211,0.000000,0.000000,0.250000,0,0);}
.m2c_c00464{transform:matrix(0.291289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291289,0.000000,0.000000,0.250000,0,0);}
.m84_c00464{transform:matrix(0.291516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291516,0.000000,0.000000,0.250000,0,0);}
.m3e_c00464{transform:matrix(0.292540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292540,0.000000,0.000000,0.250000,0,0);}
.m2_c00464{transform:matrix(0.293330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293330,0.000000,0.000000,0.250000,0,0);}
.m1a_c00464{transform:matrix(0.294239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294239,0.000000,0.000000,0.250000,0,0);}
.m2b_c00464{transform:matrix(0.295295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295295,0.000000,0.000000,0.250000,0,0);}
.ma_c00464{transform:matrix(0.295450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295450,0.000000,0.000000,0.250000,0,0);}
.m8e_c00464{transform:matrix(0.295533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295533,0.000000,0.000000,0.250000,0,0);}
.m79_c00464{transform:matrix(0.295708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295708,0.000000,0.000000,0.250000,0,0);}
.m8c_c00464{transform:matrix(0.295729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295729,0.000000,0.000000,0.250000,0,0);}
.mf_c00464{transform:matrix(0.295959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295959,0.000000,0.000000,0.250000,0,0);}
.m82_c00464{transform:matrix(0.296222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296222,0.000000,0.000000,0.250000,0,0);}
.m47_c00464{transform:matrix(0.297689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297689,0.000000,0.000000,0.250000,0,0);}
.m11_c00464{transform:matrix(0.298011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298011,0.000000,0.000000,0.250000,0,0);}
.m65_c00464{transform:matrix(0.298251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298251,0.000000,0.000000,0.250000,0,0);}
.m4c_c00464{transform:matrix(0.298683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298683,0.000000,0.000000,0.250000,0,0);}
.m39_c00464{transform:matrix(0.298900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298900,0.000000,0.000000,0.250000,0,0);}
.m4d_c00464{transform:matrix(0.300020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300020,0.000000,0.000000,0.250000,0,0);}
.m60_c00464{transform:matrix(0.301075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301075,0.000000,0.000000,0.250000,0,0);}
.m77_c00464{transform:matrix(0.301509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301509,0.000000,0.000000,0.250000,0,0);}
.m25_c00464{transform:matrix(0.302047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302047,0.000000,0.000000,0.250000,0,0);}
.m86_c00464{transform:matrix(0.302891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302891,0.000000,0.000000,0.250000,0,0);}
.m1d_c00464{transform:matrix(0.303322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303322,0.000000,0.000000,0.250000,0,0);}
.m8d_c00464{transform:matrix(0.305201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305201,0.000000,0.000000,0.250000,0,0);}
.m97_c00464{transform:matrix(0.305547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305547,0.000000,0.000000,0.250000,0,0);}
.m7e_c00464{transform:matrix(0.306249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306249,0.000000,0.000000,0.250000,0,0);}
.m7b_c00464{transform:matrix(0.306581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306581,0.000000,0.000000,0.250000,0,0);}
.m89_c00464{transform:matrix(0.308879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308879,0.000000,0.000000,0.250000,0,0);}
.m62_c00464{transform:matrix(0.308954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308954,0.000000,0.000000,0.250000,0,0);}
.m15_c00464{transform:matrix(0.309359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309359,0.000000,0.000000,0.250000,0,0);}
.m83_c00464{transform:matrix(0.309646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309646,0.000000,0.000000,0.250000,0,0);}
.m3f_c00464{transform:matrix(0.310212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310212,0.000000,0.000000,0.250000,0,0);}
.m48_c00464{transform:matrix(0.310763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310763,0.000000,0.000000,0.250000,0,0);}
.m13_c00464{transform:matrix(0.311005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311005,0.000000,0.000000,0.250000,0,0);}
.m33_c00464{transform:matrix(0.311094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311094,0.000000,0.000000,0.250000,0,0);}
.m57_c00464{transform:matrix(0.311682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311682,0.000000,0.000000,0.250000,0,0);}
.m6e_c00464{transform:matrix(0.311999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311999,0.000000,0.000000,0.250000,0,0);}
.m2e_c00464{transform:matrix(0.312028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312028,0.000000,0.000000,0.250000,0,0);}
.m8f_c00464{transform:matrix(0.312991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312991,0.000000,0.000000,0.250000,0,0);}
.m71_c00464{transform:matrix(0.313942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313942,0.000000,0.000000,0.250000,0,0);}
.m8_c00464{transform:matrix(0.314094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314094,0.000000,0.000000,0.250000,0,0);}
.m8a_c00464{transform:matrix(0.314634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314634,0.000000,0.000000,0.250000,0,0);}
.m24_c00464{transform:matrix(0.316546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316546,0.000000,0.000000,0.250000,0,0);}
.m17_c00464{transform:matrix(0.316555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316555,0.000000,0.000000,0.250000,0,0);}
.m5f_c00464{transform:matrix(0.317687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317687,0.000000,0.000000,0.250000,0,0);}
.m45_c00464{transform:matrix(0.317954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317954,0.000000,0.000000,0.250000,0,0);}
.m2a_c00464{transform:matrix(0.318246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318246,0.000000,0.000000,0.250000,0,0);}
.m38_c00464{transform:matrix(0.318290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318290,0.000000,0.000000,0.250000,0,0);}
.m7c_c00464{transform:matrix(0.319765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319765,0.000000,0.000000,0.250000,0,0);}
.m81_c00464{transform:matrix(0.320090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320090,0.000000,0.000000,0.250000,0,0);}
.m7d_c00464{transform:matrix(0.320421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320421,0.000000,0.000000,0.250000,0,0);}
.m64_c00464{transform:matrix(0.321001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321001,0.000000,0.000000,0.250000,0,0);}
.m88_c00464{transform:matrix(0.321070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321070,0.000000,0.000000,0.250000,0,0);}
.m5b_c00464{transform:matrix(0.321397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321397,0.000000,0.000000,0.250000,0,0);}
.m80_c00464{transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323655,0.000000,0.000000,0.250000,0,0);}
.m5d_c00464{transform:matrix(0.324232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324232,0.000000,0.000000,0.250000,0,0);}
.m35_c00464{transform:matrix(0.324708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324708,0.000000,0.000000,0.250000,0,0);}
.m41_c00464{transform:matrix(0.325071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325071,0.000000,0.000000,0.250000,0,0);}
.m4f_c00464{transform:matrix(0.326013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326013,0.000000,0.000000,0.250000,0,0);}
.m4b_c00464{transform:matrix(0.326473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326473,0.000000,0.000000,0.250000,0,0);}
.m6_c00464{transform:matrix(0.327005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327005,0.000000,0.000000,0.250000,0,0);}
.m21_c00464{transform:matrix(0.327904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327904,0.000000,0.000000,0.250000,0,0);}
.m22_c00464{transform:matrix(0.329376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329376,0.000000,0.000000,0.250000,0,0);}
.m34_c00464{transform:matrix(0.330059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330059,0.000000,0.000000,0.250000,0,0);}
.m2d_c00464{transform:matrix(0.330161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330161,0.000000,0.000000,0.250000,0,0);}
.m3_c00464{transform:matrix(0.331039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331039,0.000000,0.000000,0.250000,0,0);}
.m7a_c00464{transform:matrix(0.331211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331211,0.000000,0.000000,0.250000,0,0);}
.m40_c00464{transform:matrix(0.331357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331357,0.000000,0.000000,0.250000,0,0);}
.m46_c00464{transform:matrix(0.334067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334067,0.000000,0.000000,0.250000,0,0);}
.m1e_c00464{transform:matrix(0.334071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334071,0.000000,0.000000,0.250000,0,0);}
.m96_c00464{transform:matrix(0.334293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334293,0.000000,0.000000,0.250000,0,0);}
.m4a_c00464{transform:matrix(0.335191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335191,0.000000,0.000000,0.250000,0,0);}
.m9_c00464{transform:matrix(0.335397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335397,0.000000,0.000000,0.250000,0,0);}
.m61_c00464{transform:matrix(0.340141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340141,0.000000,0.000000,0.250000,0,0);}
.m6c_c00464{transform:matrix(0.343561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343561,0.000000,0.000000,0.250000,0,0);}
.m5e_c00464{transform:matrix(0.346926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346926,0.000000,0.000000,0.250000,0,0);}
.m4e_c00464{transform:matrix(0.347378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347378,0.000000,0.000000,0.250000,0,0);}
.m3b_c00464{transform:matrix(0.351196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351196,0.000000,0.000000,0.250000,0,0);}
.m5a_c00464{transform:matrix(0.352289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352289,0.000000,0.000000,0.250000,0,0);}
.m90_c00464{transform:matrix(0.366735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366735,0.000000,0.000000,0.250000,0,0);}
.m1c_c00464{transform:matrix(0.372639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372639,0.000000,0.000000,0.250000,0,0);}
.m8b_c00464{transform:matrix(0.374337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374337,0.000000,0.000000,0.250000,0,0);}
.m56_c00464{transform:matrix(0.380375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380375,0.000000,0.000000,0.250000,0,0);}
.m66_c00464{transform:matrix(0.386413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386413,0.000000,0.000000,0.250000,0,0);}
.m92_c00464{transform:matrix(0.392451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392451,0.000000,0.000000,0.250000,0,0);}
.m10_c00464{transform:matrix(0.399596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399596,0.000000,0.000000,0.250000,0,0);}
.v0_c00464{vertical-align:0.000000px;}
.ls9_c00464{letter-spacing:-2.737350px;}
.ls14_c00464{letter-spacing:-2.494800px;}
.ls11_c00464{letter-spacing:-0.805563px;}
.ls12_c00464{letter-spacing:-0.398871px;}
.ls1_c00464{letter-spacing:0.000000px;}
.lse_c00464{letter-spacing:1.923966px;}
.lsb_c00464{letter-spacing:2.009700px;}
.ls13_c00464{letter-spacing:2.526183px;}
.lsd_c00464{letter-spacing:2.653200px;}
.lsa_c00464{letter-spacing:3.230073px;}
.ls16_c00464{letter-spacing:3.415500px;}
.lsf_c00464{letter-spacing:3.605481px;}
.ls3_c00464{letter-spacing:3.722400px;}
.ls0_c00464{letter-spacing:3.771900px;}
.lsc_c00464{letter-spacing:3.801610px;}
.ls2_c00464{letter-spacing:3.910500px;}
.ls5_c00464{letter-spacing:3.920400px;}
.ls8_c00464{letter-spacing:3.950110px;}
.ls15_c00464{letter-spacing:3.960000px;}
.ls4_c00464{letter-spacing:4.118400px;}
.ls10_c00464{letter-spacing:58.449798px;}
.ls6_c00464{letter-spacing:62.726400px;}
.ls7_c00464{letter-spacing:68.428998px;}
.sc__c00464{text-shadow:none;}
.sc0_c00464{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00464{-webkit-text-stroke:0px transparent;}
.sc0_c00464{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00464{word-spacing:0.000000px;}
.fc0_c00464{color:transparent;}
.fs1_c00464{font-size:27.720000px;}
.fsa_c00464{font-size:40.194000px;}
.fsc_c00464{font-size:53.064000px;}
.fsd_c00464{font-size:58.449798px;}
.fs7_c00464{font-size:62.726400px;}
.fs10_c00464{font-size:68.310000px;}
.fs8_c00464{font-size:68.428998px;}
.fse_c00464{font-size:71.280000px;}
.fs3_c00464{font-size:74.448000px;}
.fs4_c00464{font-size:74.844000px;}
.fs0_c00464{font-size:75.438000px;}
.fsb_c00464{font-size:76.032198px;}
.fs2_c00464{font-size:78.210000px;}
.fs6_c00464{font-size:78.408000px;}
.fs11_c00464{font-size:78.804000px;}
.fs9_c00464{font-size:79.002198px;}
.fsf_c00464{font-size:79.200000px;}
.fs5_c00464{font-size:82.368000px;}
.y0_c00464{bottom:0.000000px;}
.y1a_c00464{bottom:72.970965px;}
.y1_c00464{bottom:76.500000px;}
.y19_c00464{bottom:80.101935px;}
.y18_c00464{bottom:137.482335px;}
.y17_c00464{bottom:169.914735px;}
.y16_c00464{bottom:201.629385px;}
.y15_c00464{bottom:233.710335px;}
.y14_c00464{bottom:265.786335px;}
.y13_c00464{bottom:298.213785px;}
.y12_c00464{bottom:330.651135px;}
.y11_c00464{bottom:362.009385px;}
.y10_c00464{bottom:394.085385px;}
.yf_c00464{bottom:457.529535px;}
.ye_c00464{bottom:488.536335px;}
.yd_c00464{bottom:520.255935px;}
.yc_c00464{bottom:551.619135px;}
.yb_c00464{bottom:583.690185px;}
.ya_c00464{bottom:646.060185px;}
.y9_c00464{bottom:678.848985px;}
.y8_c00464{bottom:710.929935px;}
.y7_c00464{bottom:742.644585px;}
.y6_c00464{bottom:774.369135px;}
.y5_c00464{bottom:900.891135px;}
.y4_c00464{bottom:932.967135px;}
.y3_c00464{bottom:1018.141785px;}
.y2_c00464{bottom:1069.463385px;}
.h3_c00464{height:28.911094px;}
.hf_c00464{height:38.927565px;}
.h9_c00464{height:41.775782px;}
.hc_c00464{height:41.921086px;}
.ha_c00464{height:45.573713px;}
.he_c00464{height:52.079414px;}
.h12_c00464{height:71.245195px;}
.h5_c00464{height:73.066641px;}
.h6_c00464{height:73.455293px;}
.h2_c00464{height:74.038271px;}
.h10_c00464{height:74.342813px;}
.hd_c00464{height:74.621444px;}
.h4_c00464{height:76.758838px;}
.h8_c00464{height:76.953164px;}
.h13_c00464{height:77.341816px;}
.hb_c00464{height:77.536337px;}
.h11_c00464{height:77.730469px;}
.h7_c00464{height:80.839688px;}
.h1_c00464{height:1110.000000px;}
.h0_c00464{height:1263.000000px;}
.w1_c00464{width:760.500000px;}
.w0_c00464{width:892.500000px;}
.x0_c00464{left:0.000000px;}
.x1_c00464{left:66.000000px;}
.x38_c00464{left:84.210285px;}
.x2f_c00464{left:85.655685px;}
.x4_c00464{left:86.833785px;}
.x12_c00464{left:88.977135px;}
.x30_c00464{left:107.900985px;}
.x4a_c00464{left:116.454585px;}
.x26_c00464{left:120.558135px;}
.xb_c00464{left:140.239335px;}
.x1f_c00464{left:142.224285px;}
.x53_c00464{left:150.332385px;}
.x1b_c00464{left:153.544935px;}
.x39_c00464{left:161.009535px;}
.x5_c00464{left:162.088635px;}
.x27_c00464{left:165.999135px;}
.x40_c00464{left:173.151885px;}
.x13_c00464{left:174.904185px;}
.x4f_c00464{left:182.240085px;}
.x45_c00464{left:183.759735px;}
.x28_c00464{left:186.467385px;}
.x35_c00464{left:194.768535px;}
.x57_c00464{left:196.505985px;}
.x3a_c00464{left:206.579235px;}
.x46_c00464{left:216.939585px;}
.xd_c00464{left:218.424585px;}
.x5c_c00464{left:227.329635px;}
.x3f_c00464{left:238.516635px;}
.x20_c00464{left:239.655135px;}
.x6_c00464{left:247.842435px;}
.xc_c00464{left:260.786685px;}
.x58_c00464{left:262.548885px;}
.x36_c00464{left:272.374635px;}
.x59_c00464{left:282.299385px;}
.x7_c00464{left:283.621035px;}
.x14_c00464{left:284.630835px;}
.x41_c00464{left:294.278385px;}
.x1c_c00464{left:295.748535px;}
.x29_c00464{left:308.371035px;}
.x2a_c00464{left:327.775035px;}
.xe_c00464{left:329.205585px;}
.x21_c00464{left:339.917385px;}
.x4b_c00464{left:350.936085px;}
.x8_c00464{left:360.544035px;}
.x37_c00464{left:361.890435px;}
.x22_c00464{left:372.379485px;}
.xf_c00464{left:395.149485px;}
.x42_c00464{left:396.822585px;}
.x5a_c00464{left:404.628735px;}
.x1d_c00464{left:405.836535px;}
.x23_c00464{left:416.023635px;}
.x54_c00464{left:428.690685px;}
.x50_c00464{left:438.902535px;}
.x4c_c00464{left:448.629285px;}
.x3b_c00464{left:450.431085px;}
.x31_c00464{left:461.474535px;}
.x3c_c00464{left:471.424035px;}
.x15_c00464{left:482.512035px;}
.x51_c00464{left:483.521835px;}
.x9_c00464{left:493.213935px;}
.x2b_c00464{left:504.410835px;}
.x16_c00464{left:516.236385px;}
.x3_c00464{left:520.740885px;}
.x10_c00464{left:526.646235px;}
.x32_c00464{left:528.358935px;}
.x4d_c00464{left:538.456935px;}
.x17_c00464{left:549.020235px;}
.x2c_c00464{left:550.114185px;}
.x11_c00464{left:560.083485px;}
.x33_c00464{left:561.221985px;}
.x48_c00464{left:570.839835px;}
.x24_c00464{left:582.170385px;}
.x5d_c00464{left:583.249485px;}
.x3d_c00464{left:593.347485px;}
.x5b_c00464{left:595.574985px;}
.x49_c00464{left:603.485085px;}
.x1e_c00464{left:605.727435px;}
.x18_c00464{left:614.196885px;}
.x2d_c00464{left:616.439235px;}
.x3e_c00464{left:625.576935px;}
.x19_c00464{left:636.407535px;}
.x2e_c00464{left:637.857885px;}
.xa_c00464{left:648.881535px;}
.x34_c00464{left:659.939835px;}
.x1a_c00464{left:669.428985px;}
.x52_c00464{left:670.666485px;}
.x43_c00464{left:671.691135px;}
.x4e_c00464{left:672.730635px;}
.x25_c00464{left:681.368385px;}
.x2_c00464{left:692.015835px;}
.x55_c00464{left:693.134535px;}
.x5e_c00464{left:701.435685px;}
.x44_c00464{left:704.781885px;}
.x47_c00464{left:714.820485px;}
.x56_c00464{left:726.225285px;}
@media print{
.v0_c00464{vertical-align:0.000000pt;}
.ls9_c00464{letter-spacing:-2.433200pt;}
.ls14_c00464{letter-spacing:-2.217600pt;}
.ls11_c00464{letter-spacing:-0.716056pt;}
.ls12_c00464{letter-spacing:-0.354552pt;}
.ls1_c00464{letter-spacing:0.000000pt;}
.lse_c00464{letter-spacing:1.710192pt;}
.lsb_c00464{letter-spacing:1.786400pt;}
.ls13_c00464{letter-spacing:2.245496pt;}
.lsd_c00464{letter-spacing:2.358400pt;}
.lsa_c00464{letter-spacing:2.871176pt;}
.ls16_c00464{letter-spacing:3.036000pt;}
.lsf_c00464{letter-spacing:3.204872pt;}
.ls3_c00464{letter-spacing:3.308800pt;}
.ls0_c00464{letter-spacing:3.352800pt;}
.lsc_c00464{letter-spacing:3.379209pt;}
.ls2_c00464{letter-spacing:3.476000pt;}
.ls5_c00464{letter-spacing:3.484800pt;}
.ls8_c00464{letter-spacing:3.511209pt;}
.ls15_c00464{letter-spacing:3.520000pt;}
.ls4_c00464{letter-spacing:3.660800pt;}
.ls10_c00464{letter-spacing:51.955376pt;}
.ls6_c00464{letter-spacing:55.756800pt;}
.ls7_c00464{letter-spacing:60.825776pt;}
.ws0_c00464{word-spacing:0.000000pt;}
.fs1_c00464{font-size:24.640000pt;}
.fsa_c00464{font-size:35.728000pt;}
.fsc_c00464{font-size:47.168000pt;}
.fsd_c00464{font-size:51.955376pt;}
.fs7_c00464{font-size:55.756800pt;}
.fs10_c00464{font-size:60.720000pt;}
.fs8_c00464{font-size:60.825776pt;}
.fse_c00464{font-size:63.360000pt;}
.fs3_c00464{font-size:66.176000pt;}
.fs4_c00464{font-size:66.528000pt;}
.fs0_c00464{font-size:67.056000pt;}
.fsb_c00464{font-size:67.584176pt;}
.fs2_c00464{font-size:69.520000pt;}
.fs6_c00464{font-size:69.696000pt;}
.fs11_c00464{font-size:70.048000pt;}
.fs9_c00464{font-size:70.224176pt;}
.fsf_c00464{font-size:70.400000pt;}
.fs5_c00464{font-size:73.216000pt;}
.y0_c00464{bottom:0.000000pt;}
.y1a_c00464{bottom:64.863080pt;}
.y1_c00464{bottom:68.000000pt;}
.y19_c00464{bottom:71.201720pt;}
.y18_c00464{bottom:122.206520pt;}
.y17_c00464{bottom:151.035320pt;}
.y16_c00464{bottom:179.226120pt;}
.y15_c00464{bottom:207.742520pt;}
.y14_c00464{bottom:236.254520pt;}
.y13_c00464{bottom:265.078920pt;}
.y12_c00464{bottom:293.912120pt;}
.y11_c00464{bottom:321.786120pt;}
.y10_c00464{bottom:350.298120pt;}
.yf_c00464{bottom:406.692920pt;}
.ye_c00464{bottom:434.254520pt;}
.yd_c00464{bottom:462.449720pt;}
.yc_c00464{bottom:490.328120pt;}
.yb_c00464{bottom:518.835720pt;}
.ya_c00464{bottom:574.275720pt;}
.y9_c00464{bottom:603.421320pt;}
.y8_c00464{bottom:631.937720pt;}
.y7_c00464{bottom:660.128520pt;}
.y6_c00464{bottom:688.328120pt;}
.y5_c00464{bottom:800.792120pt;}
.y4_c00464{bottom:829.304120pt;}
.y3_c00464{bottom:905.014920pt;}
.y2_c00464{bottom:950.634120pt;}
.h3_c00464{height:25.698750pt;}
.hf_c00464{height:34.602280pt;}
.h9_c00464{height:37.134029pt;}
.hc_c00464{height:37.263188pt;}
.ha_c00464{height:40.509967pt;}
.he_c00464{height:46.292813pt;}
.h12_c00464{height:63.329063pt;}
.h5_c00464{height:64.948125pt;}
.h6_c00464{height:65.293594pt;}
.h2_c00464{height:65.811797pt;}
.h10_c00464{height:66.082500pt;}
.hd_c00464{height:66.330173pt;}
.h4_c00464{height:68.230078pt;}
.h8_c00464{height:68.402813pt;}
.h13_c00464{height:68.748281pt;}
.hb_c00464{height:68.921188pt;}
.h11_c00464{height:69.093750pt;}
.h7_c00464{height:71.857500pt;}
.h1_c00464{height:986.666667pt;}
.h0_c00464{height:1122.666667pt;}
.w1_c00464{width:676.000000pt;}
.w0_c00464{width:793.333333pt;}
.x0_c00464{left:0.000000pt;}
.x1_c00464{left:58.666667pt;}
.x38_c00464{left:74.853587pt;}
.x2f_c00464{left:76.138387pt;}
.x4_c00464{left:77.185587pt;}
.x12_c00464{left:79.090787pt;}
.x30_c00464{left:95.911987pt;}
.x4a_c00464{left:103.515187pt;}
.x26_c00464{left:107.162787pt;}
.xb_c00464{left:124.657187pt;}
.x1f_c00464{left:126.421587pt;}
.x53_c00464{left:133.628787pt;}
.x1b_c00464{left:136.484387pt;}
.x39_c00464{left:143.119587pt;}
.x5_c00464{left:144.078787pt;}
.x27_c00464{left:147.554787pt;}
.x40_c00464{left:153.912787pt;}
.x13_c00464{left:155.470387pt;}
.x4f_c00464{left:161.991187pt;}
.x45_c00464{left:163.341987pt;}
.x28_c00464{left:165.748787pt;}
.x35_c00464{left:173.127587pt;}
.x57_c00464{left:174.671987pt;}
.x3a_c00464{left:183.625987pt;}
.x46_c00464{left:192.835187pt;}
.xd_c00464{left:194.155187pt;}
.x5c_c00464{left:202.070787pt;}
.x3f_c00464{left:212.014787pt;}
.x20_c00464{left:213.026787pt;}
.x6_c00464{left:220.304387pt;}
.xc_c00464{left:231.810387pt;}
.x58_c00464{left:233.376787pt;}
.x36_c00464{left:242.110787pt;}
.x59_c00464{left:250.932787pt;}
.x7_c00464{left:252.107587pt;}
.x14_c00464{left:253.005187pt;}
.x41_c00464{left:261.580787pt;}
.x1c_c00464{left:262.887587pt;}
.x29_c00464{left:274.107587pt;}
.x2a_c00464{left:291.355587pt;}
.xe_c00464{left:292.627187pt;}
.x21_c00464{left:302.148787pt;}
.x4b_c00464{left:311.943187pt;}
.x8_c00464{left:320.483587pt;}
.x37_c00464{left:321.680387pt;}
.x22_c00464{left:331.003987pt;}
.xf_c00464{left:351.243987pt;}
.x42_c00464{left:352.731187pt;}
.x5a_c00464{left:359.669987pt;}
.x1d_c00464{left:360.743587pt;}
.x23_c00464{left:369.798787pt;}
.x54_c00464{left:381.058387pt;}
.x50_c00464{left:390.135587pt;}
.x4c_c00464{left:398.781587pt;}
.x3b_c00464{left:400.383187pt;}
.x31_c00464{left:410.199587pt;}
.x3c_c00464{left:419.043587pt;}
.x15_c00464{left:428.899587pt;}
.x51_c00464{left:429.797187pt;}
.x9_c00464{left:438.412387pt;}
.x2b_c00464{left:448.365187pt;}
.x16_c00464{left:458.876787pt;}
.x3_c00464{left:462.880787pt;}
.x10_c00464{left:468.129987pt;}
.x32_c00464{left:469.652387pt;}
.x4d_c00464{left:478.628387pt;}
.x17_c00464{left:488.017987pt;}
.x2c_c00464{left:488.990387pt;}
.x11_c00464{left:497.851987pt;}
.x33_c00464{left:498.863987pt;}
.x48_c00464{left:507.413187pt;}
.x24_c00464{left:517.484787pt;}
.x5d_c00464{left:518.443987pt;}
.x3d_c00464{left:527.419987pt;}
.x5b_c00464{left:529.399987pt;}
.x49_c00464{left:536.431187pt;}
.x1e_c00464{left:538.424387pt;}
.x18_c00464{left:545.952787pt;}
.x2d_c00464{left:547.945987pt;}
.x3e_c00464{left:556.068387pt;}
.x19_c00464{left:565.695587pt;}
.x2e_c00464{left:566.984787pt;}
.xa_c00464{left:576.783587pt;}
.x34_c00464{left:586.613187pt;}
.x1a_c00464{left:595.047987pt;}
.x52_c00464{left:596.147987pt;}
.x43_c00464{left:597.058787pt;}
.x4e_c00464{left:597.982787pt;}
.x25_c00464{left:605.660787pt;}
.x2_c00464{left:615.125187pt;}
.x55_c00464{left:616.119587pt;}
.x5e_c00464{left:623.498387pt;}
.x44_c00464{left:626.472787pt;}
.x47_c00464{left:635.395987pt;}
.x56_c00464{left:645.533587pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_45dd0e93074c0c9552709c6b.woff2')format("woff");}.ff1_c00465{font-family:ff1_c00465;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00465;src:url('chunks/assets/font_05cfac71f9392a6f600dcc6f.woff2')format("woff");}.ff2_c00465{font-family:ff2_c00465;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00465;src:url('chunks/assets/font_e73595f0f7205ca161ced41e.woff2')format("woff");}.ff3_c00465{font-family:ff3_c00465;line-height:0.666000;font-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_c00465{transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);}
.mb6_c00465{transform:matrix(0.138664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138664,0.000000,0.000000,0.250000,0,0);}
.m12_c00465{transform:matrix(0.146557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146557,0.000000,0.000000,0.250000,0,0);}
.m43_c00465{transform:matrix(0.146757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146757,0.000000,0.000000,0.250000,0,0);}
.m44_c00465{transform:matrix(0.150007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150007,0.000000,0.000000,0.250000,0,0);}
.mb9_c00465{transform:matrix(0.157830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157830,0.000000,0.000000,0.250000,0,0);}
.m86_c00465{transform:matrix(0.163420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163420,0.000000,0.000000,0.250000,0,0);}
.ma9_c00465{transform:matrix(0.169104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169104,0.000000,0.000000,0.250000,0,0);}
.mab_c00465{transform:matrix(0.181636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181636,0.000000,0.000000,0.250000,0,0);}
.m93_c00465{transform:matrix(0.222012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222012,0.000000,0.000000,0.250000,0,0);}
.m57_c00465{transform:matrix(0.230712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230712,0.000000,0.000000,0.250000,0,0);}
.m2e_c00465{transform:matrix(0.238610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238610,0.000000,0.000000,0.250000,0,0);}
.m4a_c00465{transform:matrix(0.249048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249048,0.000000,0.000000,0.250000,0,0);}
.m0_c00465{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00465{transform:matrix(0.255399,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255399,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255399,0.000000,0.000000,0.250000,0,0);}
.m25_c00465{transform:matrix(0.261324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261324,0.000000,0.000000,0.250000,0,0);}
.mad_c00465{transform:matrix(0.265396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265396,0.000000,0.000000,0.250000,0,0);}
.m9f_c00465{transform:matrix(0.266908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266908,0.000000,0.000000,0.250000,0,0);}
.m81_c00465{transform:matrix(0.268093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268093,0.000000,0.000000,0.250000,0,0);}
.m67_c00465{transform:matrix(0.268631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268631,0.000000,0.000000,0.250000,0,0);}
.maa_c00465{transform:matrix(0.269035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269035,0.000000,0.000000,0.250000,0,0);}
.m10_c00465{transform:matrix(0.270272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270272,0.000000,0.000000,0.250000,0,0);}
.m82_c00465{transform:matrix(0.270347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270347,0.000000,0.000000,0.250000,0,0);}
.m5c_c00465{transform:matrix(0.270792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270792,0.000000,0.000000,0.250000,0,0);}
.m83_c00465{transform:matrix(0.270880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270880,0.000000,0.000000,0.250000,0,0);}
.mb3_c00465{transform:matrix(0.272839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272839,0.000000,0.000000,0.250000,0,0);}
.m34_c00465{transform:matrix(0.273692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273692,0.000000,0.000000,0.250000,0,0);}
.m2f_c00465{transform:matrix(0.275574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275574,0.000000,0.000000,0.250000,0,0);}
.m1a_c00465{transform:matrix(0.275843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275843,0.000000,0.000000,0.250000,0,0);}
.m71_c00465{transform:matrix(0.276494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276494,0.000000,0.000000,0.250000,0,0);}
.m47_c00465{transform:matrix(0.276655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276655,0.000000,0.000000,0.250000,0,0);}
.m3_c00465{transform:matrix(0.276802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276802,0.000000,0.000000,0.250000,0,0);}
.m14_c00465{transform:matrix(0.277517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277517,0.000000,0.000000,0.250000,0,0);}
.m4_c00465{transform:matrix(0.277854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277854,0.000000,0.000000,0.250000,0,0);}
.m1f_c00465{transform:matrix(0.278076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278076,0.000000,0.000000,0.250000,0,0);}
.m8c_c00465{transform:matrix(0.278602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278602,0.000000,0.000000,0.250000,0,0);}
.m7b_c00465{transform:matrix(0.278890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278890,0.000000,0.000000,0.250000,0,0);}
.me_c00465{transform:matrix(0.279601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279601,0.000000,0.000000,0.250000,0,0);}
.m9_c00465{transform:matrix(0.280682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280682,0.000000,0.000000,0.250000,0,0);}
.m73_c00465{transform:matrix(0.281443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281443,0.000000,0.000000,0.250000,0,0);}
.m19_c00465{transform:matrix(0.282017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282017,0.000000,0.000000,0.250000,0,0);}
.m39_c00465{transform:matrix(0.282707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282707,0.000000,0.000000,0.250000,0,0);}
.m18_c00465{transform:matrix(0.283257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283257,0.000000,0.000000,0.250000,0,0);}
.m3e_c00465{transform:matrix(0.283465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283465,0.000000,0.000000,0.250000,0,0);}
.m33_c00465{transform:matrix(0.283741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283741,0.000000,0.000000,0.250000,0,0);}
.m28_c00465{transform:matrix(0.283772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283772,0.000000,0.000000,0.250000,0,0);}
.m78_c00465{transform:matrix(0.283782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283782,0.000000,0.000000,0.250000,0,0);}
.m5_c00465{transform:matrix(0.285521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285521,0.000000,0.000000,0.250000,0,0);}
.m69_c00465{transform:matrix(0.285845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285845,0.000000,0.000000,0.250000,0,0);}
.mf_c00465{transform:matrix(0.286380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286380,0.000000,0.000000,0.250000,0,0);}
.m46_c00465{transform:matrix(0.287277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287277,0.000000,0.000000,0.250000,0,0);}
.m76_c00465{transform:matrix(0.288309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288309,0.000000,0.000000,0.250000,0,0);}
.m49_c00465{transform:matrix(0.288396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288396,0.000000,0.000000,0.250000,0,0);}
.m8d_c00465{transform:matrix(0.288596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288596,0.000000,0.000000,0.250000,0,0);}
.m87_c00465{transform:matrix(0.288675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288675,0.000000,0.000000,0.250000,0,0);}
.m9d_c00465{transform:matrix(0.288840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288840,0.000000,0.000000,0.250000,0,0);}
.m21_c00465{transform:matrix(0.289149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289149,0.000000,0.000000,0.250000,0,0);}
.m24_c00465{transform:matrix(0.289192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289192,0.000000,0.000000,0.250000,0,0);}
.maf_c00465{transform:matrix(0.289395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289395,0.000000,0.000000,0.250000,0,0);}
.mb4_c00465{transform:matrix(0.289595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289595,0.000000,0.000000,0.250000,0,0);}
.m6b_c00465{transform:matrix(0.290389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290389,0.000000,0.000000,0.250000,0,0);}
.m3d_c00465{transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);}
.m30_c00465{transform:matrix(0.290763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290763,0.000000,0.000000,0.250000,0,0);}
.m7d_c00465{transform:matrix(0.290765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290765,0.000000,0.000000,0.250000,0,0);}
.m8e_c00465{transform:matrix(0.290790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290790,0.000000,0.000000,0.250000,0,0);}
.m15_c00465{transform:matrix(0.290832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290832,0.000000,0.000000,0.250000,0,0);}
.m1d_c00465{transform:matrix(0.291200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291200,0.000000,0.000000,0.250000,0,0);}
.m8b_c00465{transform:matrix(0.291467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291467,0.000000,0.000000,0.250000,0,0);}
.m31_c00465{transform:matrix(0.291907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291907,0.000000,0.000000,0.250000,0,0);}
.mb8_c00465{transform:matrix(0.292142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292142,0.000000,0.000000,0.250000,0,0);}
.m8f_c00465{transform:matrix(0.292174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292174,0.000000,0.000000,0.250000,0,0);}
.m99_c00465{transform:matrix(0.292702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292702,0.000000,0.000000,0.250000,0,0);}
.m13_c00465{transform:matrix(0.292980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292980,0.000000,0.000000,0.250000,0,0);}
.m5d_c00465{transform:matrix(0.293994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293994,0.000000,0.000000,0.250000,0,0);}
.m6c_c00465{transform:matrix(0.294580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294580,0.000000,0.000000,0.250000,0,0);}
.m16_c00465{transform:matrix(0.295484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295484,0.000000,0.000000,0.250000,0,0);}
.mb2_c00465{transform:matrix(0.295765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295765,0.000000,0.000000,0.250000,0,0);}
.ma5_c00465{transform:matrix(0.296764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296764,0.000000,0.000000,0.250000,0,0);}
.m91_c00465{transform:matrix(0.297050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297050,0.000000,0.000000,0.250000,0,0);}
.m5a_c00465{transform:matrix(0.297142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297142,0.000000,0.000000,0.250000,0,0);}
.m72_c00465{transform:matrix(0.298938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298938,0.000000,0.000000,0.250000,0,0);}
.m2c_c00465{transform:matrix(0.299472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299472,0.000000,0.000000,0.250000,0,0);}
.m53_c00465{transform:matrix(0.300187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300187,0.000000,0.000000,0.250000,0,0);}
.m85_c00465{transform:matrix(0.301942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301942,0.000000,0.000000,0.250000,0,0);}
.ma8_c00465{transform:matrix(0.302130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302130,0.000000,0.000000,0.250000,0,0);}
.m9b_c00465{transform:matrix(0.303422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303422,0.000000,0.000000,0.250000,0,0);}
.m9c_c00465{transform:matrix(0.304095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304095,0.000000,0.000000,0.250000,0,0);}
.m51_c00465{transform:matrix(0.304308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304308,0.000000,0.000000,0.250000,0,0);}
.m7_c00465{transform:matrix(0.304505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304505,0.000000,0.000000,0.250000,0,0);}
.m98_c00465{transform:matrix(0.304548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304548,0.000000,0.000000,0.250000,0,0);}
.m9e_c00465{transform:matrix(0.304687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304687,0.000000,0.000000,0.250000,0,0);}
.m80_c00465{transform:matrix(0.304788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304788,0.000000,0.000000,0.250000,0,0);}
.m4b_c00465{transform:matrix(0.305015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305015,0.000000,0.000000,0.250000,0,0);}
.ma3_c00465{transform:matrix(0.305575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305575,0.000000,0.000000,0.250000,0,0);}
.m4d_c00465{transform:matrix(0.305646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305646,0.000000,0.000000,0.250000,0,0);}
.m56_c00465{transform:matrix(0.305758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305758,0.000000,0.000000,0.250000,0,0);}
.m75_c00465{transform:matrix(0.306341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306341,0.000000,0.000000,0.250000,0,0);}
.m2a_c00465{transform:matrix(0.307307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307307,0.000000,0.000000,0.250000,0,0);}
.m95_c00465{transform:matrix(0.307472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307472,0.000000,0.000000,0.250000,0,0);}
.m4e_c00465{transform:matrix(0.308983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308983,0.000000,0.000000,0.250000,0,0);}
.ma2_c00465{transform:matrix(0.309190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309190,0.000000,0.000000,0.250000,0,0);}
.m4c_c00465{transform:matrix(0.309270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309270,0.000000,0.000000,0.250000,0,0);}
.mb_c00465{transform:matrix(0.309905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309905,0.000000,0.000000,0.250000,0,0);}
.mba_c00465{transform:matrix(0.310054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310054,0.000000,0.000000,0.250000,0,0);}
.m58_c00465{transform:matrix(0.310868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310868,0.000000,0.000000,0.250000,0,0);}
.m64_c00465{transform:matrix(0.312206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312206,0.000000,0.000000,0.250000,0,0);}
.m50_c00465{transform:matrix(0.312487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312487,0.000000,0.000000,0.250000,0,0);}
.m3c_c00465{transform:matrix(0.312997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312997,0.000000,0.000000,0.250000,0,0);}
.m32_c00465{transform:matrix(0.313782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313782,0.000000,0.000000,0.250000,0,0);}
.m48_c00465{transform:matrix(0.313830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313830,0.000000,0.000000,0.250000,0,0);}
.m79_c00465{transform:matrix(0.314003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314003,0.000000,0.000000,0.250000,0,0);}
.m55_c00465{transform:matrix(0.314106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314106,0.000000,0.000000,0.250000,0,0);}
.m23_c00465{transform:matrix(0.314467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314467,0.000000,0.000000,0.250000,0,0);}
.m2d_c00465{transform:matrix(0.315450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315450,0.000000,0.000000,0.250000,0,0);}
.mb1_c00465{transform:matrix(0.315864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315864,0.000000,0.000000,0.250000,0,0);}
.mae_c00465{transform:matrix(0.316113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316113,0.000000,0.000000,0.250000,0,0);}
.m2b_c00465{transform:matrix(0.316342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316342,0.000000,0.000000,0.250000,0,0);}
.m59_c00465{transform:matrix(0.316931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316931,0.000000,0.000000,0.250000,0,0);}
.m66_c00465{transform:matrix(0.317116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317116,0.000000,0.000000,0.250000,0,0);}
.m92_c00465{transform:matrix(0.318150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318150,0.000000,0.000000,0.250000,0,0);}
.m17_c00465{transform:matrix(0.318457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318457,0.000000,0.000000,0.250000,0,0);}
.m6d_c00465{transform:matrix(0.318528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318528,0.000000,0.000000,0.250000,0,0);}
.m8_c00465{transform:matrix(0.318743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318743,0.000000,0.000000,0.250000,0,0);}
.m40_c00465{transform:matrix(0.318972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318972,0.000000,0.000000,0.250000,0,0);}
.m5b_c00465{transform:matrix(0.319083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319083,0.000000,0.000000,0.250000,0,0);}
.ma7_c00465{transform:matrix(0.319129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319129,0.000000,0.000000,0.250000,0,0);}
.m8a_c00465{transform:matrix(0.319640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319640,0.000000,0.000000,0.250000,0,0);}
.m5f_c00465{transform:matrix(0.320146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320146,0.000000,0.000000,0.250000,0,0);}
.m77_c00465{transform:matrix(0.320175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320175,0.000000,0.000000,0.250000,0,0);}
.ma1_c00465{transform:matrix(0.322531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322531,0.000000,0.000000,0.250000,0,0);}
.m7f_c00465{transform:matrix(0.323093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323093,0.000000,0.000000,0.250000,0,0);}
.m2_c00465{transform:matrix(0.323515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323515,0.000000,0.000000,0.250000,0,0);}
.m42_c00465{transform:matrix(0.323725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323725,0.000000,0.000000,0.250000,0,0);}
.mb7_c00465{transform:matrix(0.325543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325543,0.000000,0.000000,0.250000,0,0);}
.m3b_c00465{transform:matrix(0.325767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325767,0.000000,0.000000,0.250000,0,0);}
.m54_c00465{transform:matrix(0.326088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326088,0.000000,0.000000,0.250000,0,0);}
.m3f_c00465{transform:matrix(0.327002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327002,0.000000,0.000000,0.250000,0,0);}
.m70_c00465{transform:matrix(0.327037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327037,0.000000,0.000000,0.250000,0,0);}
.m29_c00465{transform:matrix(0.327121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327121,0.000000,0.000000,0.250000,0,0);}
.m45_c00465{transform:matrix(0.329764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329764,0.000000,0.000000,0.250000,0,0);}
.m9a_c00465{transform:matrix(0.333161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333161,0.000000,0.000000,0.250000,0,0);}
.m3a_c00465{transform:matrix(0.333521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333521,0.000000,0.000000,0.250000,0,0);}
.m90_c00465{transform:matrix(0.334259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334259,0.000000,0.000000,0.250000,0,0);}
.mc_c00465{transform:matrix(0.334429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334429,0.000000,0.000000,0.250000,0,0);}
.m22_c00465{transform:matrix(0.335037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335037,0.000000,0.000000,0.250000,0,0);}
.m1c_c00465{transform:matrix(0.335242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335242,0.000000,0.000000,0.250000,0,0);}
.m96_c00465{transform:matrix(0.335399,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335399,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335399,0.000000,0.000000,0.250000,0,0);}
.m11_c00465{transform:matrix(0.335755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335755,0.000000,0.000000,0.250000,0,0);}
.m52_c00465{transform:matrix(0.336397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336397,0.000000,0.000000,0.250000,0,0);}
.m68_c00465{transform:matrix(0.337608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337608,0.000000,0.000000,0.250000,0,0);}
.mb5_c00465{transform:matrix(0.338888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338888,0.000000,0.000000,0.250000,0,0);}
.m27_c00465{transform:matrix(0.340566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340566,0.000000,0.000000,0.250000,0,0);}
.md_c00465{transform:matrix(0.340675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340675,0.000000,0.000000,0.250000,0,0);}
.m1e_c00465{transform:matrix(0.341087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341087,0.000000,0.000000,0.250000,0,0);}
.m89_c00465{transform:matrix(0.341582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341582,0.000000,0.000000,0.250000,0,0);}
.m4f_c00465{transform:matrix(0.342325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342325,0.000000,0.000000,0.250000,0,0);}
.m6_c00465{transform:matrix(0.342651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342651,0.000000,0.000000,0.250000,0,0);}
.ma4_c00465{transform:matrix(0.343100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343100,0.000000,0.000000,0.250000,0,0);}
.m97_c00465{transform:matrix(0.343717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343717,0.000000,0.000000,0.250000,0,0);}
.ma6_c00465{transform:matrix(0.344945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344945,0.000000,0.000000,0.250000,0,0);}
.m60_c00465{transform:matrix(0.345463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345463,0.000000,0.000000,0.250000,0,0);}
.ma_c00465{transform:matrix(0.346375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346375,0.000000,0.000000,0.250000,0,0);}
.m41_c00465{transform:matrix(0.347312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347312,0.000000,0.000000,0.250000,0,0);}
.m65_c00465{transform:matrix(0.348550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348550,0.000000,0.000000,0.250000,0,0);}
.m74_c00465{transform:matrix(0.352058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352058,0.000000,0.000000,0.250000,0,0);}
.m6f_c00465{transform:matrix(0.353229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353229,0.000000,0.000000,0.250000,0,0);}
.m36_c00465{transform:matrix(0.354881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354881,0.000000,0.000000,0.250000,0,0);}
.m62_c00465{transform:matrix(0.356501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356501,0.000000,0.000000,0.250000,0,0);}
.m7a_c00465{transform:matrix(0.359911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359911,0.000000,0.000000,0.250000,0,0);}
.mac_c00465{transform:matrix(0.361024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361024,0.000000,0.000000,0.250000,0,0);}
.m38_c00465{transform:matrix(0.361685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361685,0.000000,0.000000,0.250000,0,0);}
.m84_c00465{transform:matrix(0.363001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363001,0.000000,0.000000,0.250000,0,0);}
.m6e_c00465{transform:matrix(0.363346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363346,0.000000,0.000000,0.250000,0,0);}
.m5e_c00465{transform:matrix(0.364062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364062,0.000000,0.000000,0.250000,0,0);}
.m61_c00465{transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);}
.ma0_c00465{transform:matrix(0.369711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369711,0.000000,0.000000,0.250000,0,0);}
.m1b_c00465{transform:matrix(0.378167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378167,0.000000,0.000000,0.250000,0,0);}
.m26_c00465{transform:matrix(0.378554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378554,0.000000,0.000000,0.250000,0,0);}
.m20_c00465{transform:matrix(0.380148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380148,0.000000,0.000000,0.250000,0,0);}
.m63_c00465{transform:matrix(0.380833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380833,0.000000,0.000000,0.250000,0,0);}
.m94_c00465{transform:matrix(0.382179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382179,0.000000,0.000000,0.250000,0,0);}
.m7c_c00465{transform:matrix(0.384599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384599,0.000000,0.000000,0.250000,0,0);}
.m7e_c00465{transform:matrix(0.397482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397482,0.000000,0.000000,0.250000,0,0);}
.m35_c00465{transform:matrix(0.403791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403791,0.000000,0.000000,0.250000,0,0);}
.m6a_c00465{transform:matrix(0.405805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405805,0.000000,0.000000,0.250000,0,0);}
.m88_c00465{transform:matrix(0.410101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410101,0.000000,0.000000,0.250000,0,0);}
.m37_c00465{transform:matrix(0.469112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469112,0.000000,0.000000,0.250000,0,0);}
.v1_c00465{vertical-align:-8.533800px;}
.v0_c00465{vertical-align:0.000000px;}
.ls1d_c00465{letter-spacing:-4.324327px;}
.ls10_c00465{letter-spacing:-2.758140px;}
.ls5_c00465{letter-spacing:-2.619540px;}
.ls1a_c00465{letter-spacing:-2.577967px;}
.ls12_c00465{letter-spacing:-2.550240px;}
.lse_c00465{letter-spacing:-2.321550px;}
.ls1c_c00465{letter-spacing:-1.167566px;}
.ls1_c00465{letter-spacing:0.000000px;}
.ls0_c00465{letter-spacing:0.329314px;}
.lsa_c00465{letter-spacing:0.755924px;}
.ls17_c00465{letter-spacing:0.975628px;}
.ls1b_c00465{letter-spacing:1.683990px;}
.lsc_c00465{letter-spacing:2.140538px;}
.lsb_c00465{letter-spacing:2.692810px;}
.ls7_c00465{letter-spacing:3.306610px;}
.ls16_c00465{letter-spacing:3.326400px;}
.ls9_c00465{letter-spacing:3.484810px;}
.ls14_c00465{letter-spacing:3.524400px;}
.ls13_c00465{letter-spacing:3.579691px;}
.ls8_c00465{letter-spacing:3.583810px;}
.ls11_c00465{letter-spacing:3.643200px;}
.lsf_c00465{letter-spacing:3.682810px;}
.ls19_c00465{letter-spacing:3.722400px;}
.ls4_c00465{letter-spacing:3.742200px;}
.ls2_c00465{letter-spacing:3.770752px;}
.ls15_c00465{letter-spacing:3.781810px;}
.lsd_c00465{letter-spacing:3.801610px;}
.ls6_c00465{letter-spacing:3.870900px;}
.ls3_c00465{letter-spacing:31.363200px;}
.ls1e_c00465{letter-spacing:54.172998px;}
.ls18_c00465{letter-spacing:59.875398px;}
.sc__c00465{text-shadow:none;}
.sc0_c00465{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00465{-webkit-text-stroke:0px transparent;}
.sc0_c00465{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00465{word-spacing:-9.207000px;}
.ws1_c00465{word-spacing:0.000000px;}
._0_c00465{margin-left:-2.118600px;}
._1_c00465{width:22.887295px;}
._2_c00465{width:91.565100px;}
.fc0_c00465{color:transparent;}
.fs1_c00465{font-size:22.572000px;}
.fs5_c00465{font-size:25.146000px;}
.fs0_c00465{font-size:28.314000px;}
.fs6_c00465{font-size:31.363200px;}
.fs7_c00465{font-size:33.660000px;}
.fs2_c00465{font-size:34.056198px;}
.fs15_c00465{font-size:36.828000px;}
.fs1a_c00465{font-size:37.818000px;}
.fsd_c00465{font-size:53.856198px;}
.fs1c_c00465{font-size:54.172998px;}
.fs18_c00465{font-size:59.875398px;}
.fsa_c00465{font-size:66.132198px;}
.fsf_c00465{font-size:66.330000px;}
.fs14_c00465{font-size:66.528000px;}
.fs16_c00465{font-size:68.706198px;}
.fsc_c00465{font-size:69.696198px;}
.fs12_c00465{font-size:70.488000px;}
.fsb_c00465{font-size:71.676198px;}
.fs4_c00465{font-size:72.864000px;}
.fs10_c00465{font-size:73.656198px;}
.fs19_c00465{font-size:74.448000px;}
.fs8_c00465{font-size:74.844000px;}
.fs13_c00465{font-size:75.636198px;}
.fse_c00465{font-size:76.032198px;}
.fs9_c00465{font-size:77.418000px;}
.fs11_c00465{font-size:78.804000px;}
.fs17_c00465{font-size:83.952198px;}
.fs3_c00465{font-size:88.308000px;}
.fs1b_c00465{font-size:123.552198px;}
.y0_c00465{bottom:0.000000px;}
.y4_c00465{bottom:10.242585px;}
.y3_c00465{bottom:54.079785px;}
.y1_c00465{bottom:76.500000px;}
.y22_c00465{bottom:168.845535px;}
.y21_c00465{bottom:199.490985px;}
.y20_c00465{bottom:231.928335px;}
.y1f_c00465{bottom:263.291535px;}
.y1e_c00465{bottom:295.367535px;}
.y1d_c00465{bottom:327.082185px;}
.y1c_c00465{bottom:359.514585px;}
.y1b_c00465{bottom:391.239135px;}
.y1a_c00465{bottom:422.958735px;}
.y19_c00465{bottom:453.609135px;}
.y17_c00465{bottom:485.328735px;}
.y18_c00465{bottom:487.462185px;}
.y16_c00465{bottom:517.043385px;}
.y15_c00465{bottom:579.413385px;}
.y14_c00465{bottom:611.845785px;}
.y13_c00465{bottom:643.208985px;}
.y12_c00465{bottom:675.646335px;}
.y11_c00465{bottom:707.722335px;}
.y2_c00465{bottom:734.808735px;}
.y10_c00465{bottom:739.793385px;}
.yf_c00465{bottom:771.156585px;}
.ye_c00465{bottom:802.881135px;}
.yd_c00465{bottom:834.952185px;}
.yc_c00465{bottom:897.678585px;}
.yb_c00465{bottom:928.685385px;}
.ya_c00465{bottom:970.745535px;}
.y9_c00465{bottom:981.081135px;}
.y8_c00465{bottom:991.773135px;}
.y7_c00465{bottom:1004.598585px;}
.y6_c00465{bottom:1048.435785px;}
.y5_c00465{bottom:1067.324985px;}
.h8_c00465{height:20.887891px;}
.h3_c00465{height:23.541891px;}
.h7_c00465{height:26.226492px;}
.h2_c00465{height:29.530617px;}
.h9_c00465{height:33.035449px;}
.h4_c00465{height:35.519550px;}
.h1c_c00465{height:36.079217px;}
.h19_c00465{height:39.877015px;}
.hf_c00465{height:52.856913px;}
.h16_c00465{height:64.921493px;}
.h15_c00465{height:65.293594px;}
.h17_c00465{height:67.431376px;}
.hc_c00465{height:68.973816px;}
.h11_c00465{height:69.180117px;}
.hd_c00465{height:70.346269px;}
.h6_c00465{height:71.512031px;}
.he_c00465{height:72.690957px;}
.h1a_c00465{height:73.066641px;}
.ha_c00465{height:73.455293px;}
.h14_c00465{height:74.232792px;}
.h10_c00465{height:74.621444px;}
.hb_c00465{height:75.981533px;}
.h12_c00465{height:76.821113px;}
.h13_c00465{height:82.190109px;}
.h18_c00465{height:82.394491px;}
.h5_c00465{height:86.669473px;}
.h1b_c00465{height:121.259726px;}
.h1_c00465{height:1110.000000px;}
.h0_c00465{height:1263.000000px;}
.w1_c00465{width:760.500000px;}
.w0_c00465{width:892.500000px;}
.x0_c00465{left:0.000000px;}
.x4_c00465{left:26.671485px;}
.x3_c00465{left:34.225185px;}
.x2_c00465{left:46.308135px;}
.x1_c00465{left:66.000000px;}
.x4c_c00465{left:85.789335px;}
.x22_c00465{left:87.492135px;}
.x38_c00465{left:88.620735px;}
.xa_c00465{left:90.026535px;}
.x6_c00465{left:100.124535px;}
.x43_c00465{left:108.282135px;}
.x4d_c00465{left:117.370335px;}
.x29_c00465{left:119.647335px;}
.x58_c00465{left:128.765235px;}
.x5f_c00465{left:130.349235px;}
.x68_c00465{left:131.769885px;}
.x39_c00465{left:140.259135px;}
.xb_c00465{left:141.635235px;}
.x69_c00465{left:150.807585px;}
.x2a_c00465{left:152.074785px;}
.x3a_c00465{left:162.588585px;}
.xc_c00465{left:174.389385px;}
.x49_c00465{left:184.522035px;}
.x14_c00465{left:185.937735px;}
.x1b_c00465{left:195.065535px;}
.x46_c00465{left:196.550535px;}
.x50_c00465{left:198.223635px;}
.x33_c00465{left:206.475285px;}
.x52_c00465{left:218.058285px;}
.x66_c00465{left:227.839485px;}
.x1c_c00465{left:228.918585px;}
.x23_c00465{left:230.215485px;}
.x2b_c00465{left:239.526435px;}
.x15_c00465{left:251.510385px;}
.xd_c00465{left:262.608285px;}
.x55_c00465{left:264.905085px;}
.x1d_c00465{left:272.434035px;}
.x2c_c00465{left:274.008135px;}
.x60_c00465{left:283.437885px;}
.x56_c00465{left:284.997135px;}
.xe_c00465{left:296.090085px;}
.x4e_c00465{left:297.446385px;}
.x5c_c00465{left:306.257385px;}
.x34_c00465{left:308.093835px;}
.x1e_c00465{left:318.181935px;}
.x16_c00465{left:329.255085px;}
.x59_c00465{left:330.740085px;}
.x44_c00465{left:339.080835px;}
.xf_c00465{left:341.338035px;}
.x24_c00465{left:350.812335px;}
.x47_c00465{left:352.074585px;}
.x35_c00465{left:362.197335px;}
.x62_c00465{left:363.424935px;}
.x3f_c00465{left:373.864485px;}
.x17_c00465{left:376.448385px;}
.x2d_c00465{left:384.853485px;}
.x4a_c00465{left:396.584985px;}
.x51_c00465{left:408.940185px;}
.x5a_c00465{left:417.464085px;}
.x2e_c00465{left:418.498635px;}
.x4f_c00465{left:428.868885px;}
.x53_c00465{left:430.705335px;}
.x36_c00465{left:432.076485px;}
.x25_c00465{left:440.808285px;}
.x1f_c00465{left:451.732935px;}
.x40_c00465{left:457.856085px;}
.x41_c00465{left:462.712035px;}
.x26_c00465{left:473.938635px;}
.x18_c00465{left:483.734685px;}
.x63_c00465{left:487.511535px;}
.x5b_c00465{left:495.144435px;}
.x3b_c00465{left:496.376985px;}
.x27_c00465{left:517.597635px;}
.x10_c00465{left:518.815335px;}
.x20_c00465{left:529.343985px;}
.x2f_c00465{left:540.926985px;}
.x54_c00465{left:550.025085px;}
.x19_c00465{left:551.995185px;}
.x3c_c00465{left:562.697085px;}
.x45_c00465{left:573.750435px;}
.x11_c00465{left:584.437485px;}
.x3d_c00465{left:594.263235px;}
.x4b_c00465{left:605.979885px;}
.x28_c00465{left:616.315485px;}
.x12_c00465{left:617.359935px;}
.x64_c00465{left:627.368835px;}
.x3e_c00465{left:629.329035px;}
.x5d_c00465{left:638.060835px;}
.x57_c00465{left:639.332985px;}
.x48_c00465{left:640.367535px;}
.x1a_c00465{left:641.436735px;}
.x21_c00465{left:650.683335px;}
.x30_c00465{left:660.875385px;}
.x65_c00465{left:662.296035px;}
.x5e_c00465{left:672.596985px;}
.x42_c00465{left:674.755185px;}
.x37_c00465{left:684.234435px;}
.x5_c00465{left:689.872485px;}
.x31_c00465{left:693.485985px;}
.x7_c00465{left:695.545185px;}
.x8_c00465{left:697.094535px;}
.x9_c00465{left:699.628935px;}
.x32_c00465{left:717.379635px;}
.x13_c00465{left:718.790385px;}
.x67_c00465{left:720.072435px;}
.x61_c00465{left:741.194085px;}
@media print{
.v1_c00465{vertical-align:-7.585600pt;}
.v0_c00465{vertical-align:0.000000pt;}
.ls1d_c00465{letter-spacing:-3.843846pt;}
.ls10_c00465{letter-spacing:-2.451680pt;}
.ls5_c00465{letter-spacing:-2.328480pt;}
.ls1a_c00465{letter-spacing:-2.291526pt;}
.ls12_c00465{letter-spacing:-2.266880pt;}
.lse_c00465{letter-spacing:-2.063600pt;}
.ls1c_c00465{letter-spacing:-1.037837pt;}
.ls1_c00465{letter-spacing:0.000000pt;}
.ls0_c00465{letter-spacing:0.292723pt;}
.lsa_c00465{letter-spacing:0.671933pt;}
.ls17_c00465{letter-spacing:0.867225pt;}
.ls1b_c00465{letter-spacing:1.496880pt;}
.lsc_c00465{letter-spacing:1.902701pt;}
.lsb_c00465{letter-spacing:2.393609pt;}
.ls7_c00465{letter-spacing:2.939209pt;}
.ls16_c00465{letter-spacing:2.956800pt;}
.ls9_c00465{letter-spacing:3.097609pt;}
.ls14_c00465{letter-spacing:3.132800pt;}
.ls13_c00465{letter-spacing:3.181948pt;}
.ls8_c00465{letter-spacing:3.185609pt;}
.ls11_c00465{letter-spacing:3.238400pt;}
.lsf_c00465{letter-spacing:3.273609pt;}
.ls19_c00465{letter-spacing:3.308800pt;}
.ls4_c00465{letter-spacing:3.326400pt;}
.ls2_c00465{letter-spacing:3.351779pt;}
.ls15_c00465{letter-spacing:3.361609pt;}
.lsd_c00465{letter-spacing:3.379209pt;}
.ls6_c00465{letter-spacing:3.440800pt;}
.ls3_c00465{letter-spacing:27.878400pt;}
.ls1e_c00465{letter-spacing:48.153776pt;}
.ls18_c00465{letter-spacing:53.222576pt;}
.ws0_c00465{word-spacing:-8.184000pt;}
.ws1_c00465{word-spacing:0.000000pt;}
._0_c00465{margin-left:-1.883200pt;}
._1_c00465{width:20.344262pt;}
._2_c00465{width:81.391200pt;}
.fs1_c00465{font-size:20.064000pt;}
.fs5_c00465{font-size:22.352000pt;}
.fs0_c00465{font-size:25.168000pt;}
.fs6_c00465{font-size:27.878400pt;}
.fs7_c00465{font-size:29.920000pt;}
.fs2_c00465{font-size:30.272176pt;}
.fs15_c00465{font-size:32.736000pt;}
.fs1a_c00465{font-size:33.616000pt;}
.fsd_c00465{font-size:47.872176pt;}
.fs1c_c00465{font-size:48.153776pt;}
.fs18_c00465{font-size:53.222576pt;}
.fsa_c00465{font-size:58.784176pt;}
.fsf_c00465{font-size:58.960000pt;}
.fs14_c00465{font-size:59.136000pt;}
.fs16_c00465{font-size:61.072176pt;}
.fsc_c00465{font-size:61.952176pt;}
.fs12_c00465{font-size:62.656000pt;}
.fsb_c00465{font-size:63.712176pt;}
.fs4_c00465{font-size:64.768000pt;}
.fs10_c00465{font-size:65.472176pt;}
.fs19_c00465{font-size:66.176000pt;}
.fs8_c00465{font-size:66.528000pt;}
.fs13_c00465{font-size:67.232176pt;}
.fse_c00465{font-size:67.584176pt;}
.fs9_c00465{font-size:68.816000pt;}
.fs11_c00465{font-size:70.048000pt;}
.fs17_c00465{font-size:74.624176pt;}
.fs3_c00465{font-size:78.496000pt;}
.fs1b_c00465{font-size:109.824176pt;}
.y0_c00465{bottom:0.000000pt;}
.y4_c00465{bottom:9.104520pt;}
.y3_c00465{bottom:48.070920pt;}
.y1_c00465{bottom:68.000000pt;}
.y22_c00465{bottom:150.084920pt;}
.y21_c00465{bottom:177.325320pt;}
.y20_c00465{bottom:206.158520pt;}
.y1f_c00465{bottom:234.036920pt;}
.y1e_c00465{bottom:262.548920pt;}
.y1d_c00465{bottom:290.739720pt;}
.y1c_c00465{bottom:319.568520pt;}
.y1b_c00465{bottom:347.768120pt;}
.y1a_c00465{bottom:375.963320pt;}
.y19_c00465{bottom:403.208120pt;}
.y17_c00465{bottom:431.403320pt;}
.y18_c00465{bottom:433.299720pt;}
.y16_c00465{bottom:459.594120pt;}
.y15_c00465{bottom:515.034120pt;}
.y14_c00465{bottom:543.862920pt;}
.y13_c00465{bottom:571.741320pt;}
.y12_c00465{bottom:600.574520pt;}
.y11_c00465{bottom:629.086520pt;}
.y2_c00465{bottom:653.163320pt;}
.y10_c00465{bottom:657.594120pt;}
.yf_c00465{bottom:685.472520pt;}
.ye_c00465{bottom:713.672120pt;}
.yd_c00465{bottom:742.179720pt;}
.yc_c00465{bottom:797.936520pt;}
.yb_c00465{bottom:825.498120pt;}
.ya_c00465{bottom:862.884920pt;}
.y9_c00465{bottom:872.072120pt;}
.y8_c00465{bottom:881.576120pt;}
.y7_c00465{bottom:892.976520pt;}
.y6_c00465{bottom:931.942920pt;}
.y5_c00465{bottom:948.733320pt;}
.h8_c00465{height:18.567014pt;}
.h3_c00465{height:20.926125pt;}
.h7_c00465{height:23.312438pt;}
.h2_c00465{height:26.249438pt;}
.h9_c00465{height:29.364844pt;}
.h4_c00465{height:31.572934pt;}
.h1c_c00465{height:32.070415pt;}
.h19_c00465{height:35.446236pt;}
.hf_c00465{height:46.983923pt;}
.h16_c00465{height:57.707994pt;}
.h15_c00465{height:58.038750pt;}
.h17_c00465{height:59.939001pt;}
.hc_c00465{height:61.310059pt;}
.h11_c00465{height:61.493438pt;}
.hd_c00465{height:62.530016pt;}
.h6_c00465{height:63.566250pt;}
.he_c00465{height:64.614184pt;}
.h1a_c00465{height:64.948125pt;}
.ha_c00465{height:65.293594pt;}
.h14_c00465{height:65.984704pt;}
.h10_c00465{height:66.330173pt;}
.hb_c00465{height:67.539141pt;}
.h12_c00465{height:68.285434pt;}
.h13_c00465{height:73.057875pt;}
.h18_c00465{height:73.239548pt;}
.h5_c00465{height:77.039531pt;}
.h1b_c00465{height:107.786423pt;}
.h1_c00465{height:986.666667pt;}
.h0_c00465{height:1122.666667pt;}
.w1_c00465{width:676.000000pt;}
.w0_c00465{width:793.333333pt;}
.x0_c00465{left:0.000000pt;}
.x4_c00465{left:23.707987pt;}
.x3_c00465{left:30.422387pt;}
.x2_c00465{left:41.162787pt;}
.x1_c00465{left:58.666667pt;}
.x4c_c00465{left:76.257187pt;}
.x22_c00465{left:77.770787pt;}
.x38_c00465{left:78.773987pt;}
.xa_c00465{left:80.023587pt;}
.x6_c00465{left:88.999587pt;}
.x43_c00465{left:96.250787pt;}
.x4d_c00465{left:104.329187pt;}
.x29_c00465{left:106.353187pt;}
.x58_c00465{left:114.457987pt;}
.x5f_c00465{left:115.865987pt;}
.x68_c00465{left:117.128787pt;}
.x39_c00465{left:124.674787pt;}
.xb_c00465{left:125.897987pt;}
.x69_c00465{left:134.051187pt;}
.x2a_c00465{left:135.177587pt;}
.x3a_c00465{left:144.523187pt;}
.xc_c00465{left:155.012787pt;}
.x49_c00465{left:164.019587pt;}
.x14_c00465{left:165.277987pt;}
.x1b_c00465{left:173.391587pt;}
.x46_c00465{left:174.711587pt;}
.x50_c00465{left:176.198787pt;}
.x33_c00465{left:183.533587pt;}
.x52_c00465{left:193.829587pt;}
.x66_c00465{left:202.523987pt;}
.x1c_c00465{left:203.483187pt;}
.x23_c00465{left:204.635987pt;}
.x2b_c00465{left:212.912387pt;}
.x15_c00465{left:223.564787pt;}
.xd_c00465{left:233.429587pt;}
.x55_c00465{left:235.471187pt;}
.x1d_c00465{left:242.163587pt;}
.x2c_c00465{left:243.562787pt;}
.x60_c00465{left:251.944787pt;}
.x56_c00465{left:253.330787pt;}
.xe_c00465{left:263.191187pt;}
.x4e_c00465{left:264.396787pt;}
.x5c_c00465{left:272.228787pt;}
.x34_c00465{left:273.861187pt;}
.x1e_c00465{left:282.828387pt;}
.x16_c00465{left:292.671187pt;}
.x59_c00465{left:293.991187pt;}
.x44_c00465{left:301.405187pt;}
.xf_c00465{left:303.411587pt;}
.x24_c00465{left:311.833187pt;}
.x47_c00465{left:312.955187pt;}
.x35_c00465{left:321.953187pt;}
.x62_c00465{left:323.044387pt;}
.x3f_c00465{left:332.323987pt;}
.x17_c00465{left:334.620787pt;}
.x2d_c00465{left:342.091987pt;}
.x4a_c00465{left:352.519987pt;}
.x51_c00465{left:363.502387pt;}
.x5a_c00465{left:371.079187pt;}
.x2e_c00465{left:371.998787pt;}
.x4f_c00465{left:381.216787pt;}
.x53_c00465{left:382.849187pt;}
.x36_c00465{left:384.067987pt;}
.x25_c00465{left:391.829587pt;}
.x1f_c00465{left:401.540387pt;}
.x40_c00465{left:406.983187pt;}
.x41_c00465{left:411.299587pt;}
.x26_c00465{left:421.278787pt;}
.x18_c00465{left:429.986387pt;}
.x63_c00465{left:433.343587pt;}
.x5b_c00465{left:440.128387pt;}
.x3b_c00465{left:441.223987pt;}
.x27_c00465{left:460.086787pt;}
.x10_c00465{left:461.169187pt;}
.x20_c00465{left:470.527987pt;}
.x2f_c00465{left:480.823987pt;}
.x54_c00465{left:488.911187pt;}
.x19_c00465{left:490.662387pt;}
.x3c_c00465{left:500.175187pt;}
.x45_c00465{left:510.000387pt;}
.x11_c00465{left:519.499987pt;}
.x3d_c00465{left:528.233987pt;}
.x4b_c00465{left:538.648787pt;}
.x28_c00465{left:547.835987pt;}
.x12_c00465{left:548.764387pt;}
.x64_c00465{left:557.661187pt;}
.x3e_c00465{left:559.403587pt;}
.x5d_c00465{left:567.165187pt;}
.x57_c00465{left:568.295987pt;}
.x48_c00465{left:569.215587pt;}
.x1a_c00465{left:570.165987pt;}
.x21_c00465{left:578.385187pt;}
.x30_c00465{left:587.444787pt;}
.x65_c00465{left:588.707587pt;}
.x5e_c00465{left:597.863987pt;}
.x42_c00465{left:599.782387pt;}
.x37_c00465{left:608.208387pt;}
.x5_c00465{left:613.219987pt;}
.x31_c00465{left:616.431987pt;}
.x7_c00465{left:618.262387pt;}
.x8_c00465{left:619.639587pt;}
.x9_c00465{left:621.892387pt;}
.x32_c00465{left:637.670787pt;}
.x13_c00465{left:638.924787pt;}
.x67_c00465{left:640.064387pt;}
.x61_c00465{left:658.839187pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3847bc9ca81d9c782dd203d4.woff2')format("woff");}.ff1_c00466{font-family:ff1_c00466;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00466;src:url('chunks/assets/font_8d46ed238342a333348ed889.woff2')format("woff");}.ff2_c00466{font-family:ff2_c00466;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00466;src:url('chunks/assets/font_413555e720fd1b959a3f6eed.woff2')format("woff");}.ff3_c00466{font-family:ff3_c00466;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00466;src:url('chunks/assets/font_803610963d52781ff0ec160a.woff2')format("woff");}.ff4_c00466{font-family:ff4_c00466;line-height:0.666000;font-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_c00466{transform:matrix(0.071428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071428,0.000000,0.000000,0.250000,0,0);}
.m43_c00466{transform:matrix(0.135733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135733,0.000000,0.000000,0.250000,0,0);}
.m44_c00466{transform:matrix(0.136974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136974,0.000000,0.000000,0.250000,0,0);}
.m55_c00466{transform:matrix(0.144805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144805,0.000000,0.000000,0.250000,0,0);}
.m51_c00466{transform:matrix(0.147728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147728,0.000000,0.000000,0.250000,0,0);}
.m45_c00466{transform:matrix(0.154041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154041,0.000000,0.000000,0.250000,0,0);}
.m7a_c00466{transform:matrix(0.159561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159561,0.000000,0.000000,0.250000,0,0);}
.m19_c00466{transform:matrix(0.166580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166580,0.000000,0.000000,0.250000,0,0);}
.m52_c00466{transform:matrix(0.170455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170455,0.000000,0.000000,0.250000,0,0);}
.ma1_c00466{transform:matrix(0.184960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184960,0.000000,0.000000,0.250000,0,0);}
.m94_c00466{transform:matrix(0.226377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226377,0.000000,0.000000,0.250000,0,0);}
.m38_c00466{transform:matrix(0.248170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248170,0.000000,0.000000,0.250000,0,0);}
.m0_c00466{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00466{transform:matrix(0.250171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250171,0.000000,0.000000,0.250000,0,0);}
.m1_c00466{transform:matrix(0.250321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250321,0.000000,0.000000,0.250000,0,0);}
.m28_c00466{transform:matrix(0.250440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250440,0.000000,0.000000,0.250000,0,0);}
.m4b_c00466{transform:matrix(0.251542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251542,0.000000,0.000000,0.250000,0,0);}
.m97_c00466{transform:matrix(0.251763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251763,0.000000,0.000000,0.250000,0,0);}
.ma_c00466{transform:matrix(0.252851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252851,0.000000,0.000000,0.250000,0,0);}
.m61_c00466{transform:matrix(0.252884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252884,0.000000,0.000000,0.250000,0,0);}
.m49_c00466{transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);}
.m6b_c00466{transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);}
.m78_c00466{transform:matrix(0.253836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253836,0.000000,0.000000,0.250000,0,0);}
.m3d_c00466{transform:matrix(0.254410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254410,0.000000,0.000000,0.250000,0,0);}
.m69_c00466{transform:matrix(0.254614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254614,0.000000,0.000000,0.250000,0,0);}
.m17_c00466{transform:matrix(0.255739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255739,0.000000,0.000000,0.250000,0,0);}
.m79_c00466{transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);}
.m53_c00466{transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);}
.m71_c00466{transform:matrix(0.257155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257155,0.000000,0.000000,0.250000,0,0);}
.m5f_c00466{transform:matrix(0.257331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257331,0.000000,0.000000,0.250000,0,0);}
.m41_c00466{transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);}
.m73_c00466{transform:matrix(0.258869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258869,0.000000,0.000000,0.250000,0,0);}
.m82_c00466{transform:matrix(0.259961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259961,0.000000,0.000000,0.250000,0,0);}
.mc_c00466{transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);}
.m8c_c00466{transform:matrix(0.261176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261176,0.000000,0.000000,0.250000,0,0);}
.m57_c00466{transform:matrix(0.261612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261612,0.000000,0.000000,0.250000,0,0);}
.m12_c00466{transform:matrix(0.261958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261958,0.000000,0.000000,0.250000,0,0);}
.m5a_c00466{transform:matrix(0.261981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261981,0.000000,0.000000,0.250000,0,0);}
.m10_c00466{transform:matrix(0.262914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262914,0.000000,0.000000,0.250000,0,0);}
.m4a_c00466{transform:matrix(0.263104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263104,0.000000,0.000000,0.250000,0,0);}
.m85_c00466{transform:matrix(0.263215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263215,0.000000,0.000000,0.250000,0,0);}
.m7f_c00466{transform:matrix(0.264359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264359,0.000000,0.000000,0.250000,0,0);}
.m67_c00466{transform:matrix(0.264473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264473,0.000000,0.000000,0.250000,0,0);}
.m9e_c00466{transform:matrix(0.264852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264852,0.000000,0.000000,0.250000,0,0);}
.m46_c00466{transform:matrix(0.264875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264875,0.000000,0.000000,0.250000,0,0);}
.m5b_c00466{transform:matrix(0.265062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265062,0.000000,0.000000,0.250000,0,0);}
.m26_c00466{transform:matrix(0.265606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265606,0.000000,0.000000,0.250000,0,0);}
.m18_c00466{transform:matrix(0.265937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265937,0.000000,0.000000,0.250000,0,0);}
.m2_c00466{transform:matrix(0.265947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265947,0.000000,0.000000,0.250000,0,0);}
.m39_c00466{transform:matrix(0.266153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266153,0.000000,0.000000,0.250000,0,0);}
.m87_c00466{transform:matrix(0.266767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266767,0.000000,0.000000,0.250000,0,0);}
.m2f_c00466{transform:matrix(0.267451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267451,0.000000,0.000000,0.250000,0,0);}
.m7_c00466{transform:matrix(0.267641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267641,0.000000,0.000000,0.250000,0,0);}
.m24_c00466{transform:matrix(0.267652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267652,0.000000,0.000000,0.250000,0,0);}
.m7b_c00466{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.m11_c00466{transform:matrix(0.269019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269019,0.000000,0.000000,0.250000,0,0);}
.m3_c00466{transform:matrix(0.269703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269703,0.000000,0.000000,0.250000,0,0);}
.m13_c00466{transform:matrix(0.269991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269991,0.000000,0.000000,0.250000,0,0);}
.m77_c00466{transform:matrix(0.271091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271091,0.000000,0.000000,0.250000,0,0);}
.m42_c00466{transform:matrix(0.271512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271512,0.000000,0.000000,0.250000,0,0);}
.m1a_c00466{transform:matrix(0.271718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271718,0.000000,0.000000,0.250000,0,0);}
.m4c_c00466{transform:matrix(0.271747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271747,0.000000,0.000000,0.250000,0,0);}
.m65_c00466{transform:matrix(0.272033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272033,0.000000,0.000000,0.250000,0,0);}
.m9d_c00466{transform:matrix(0.272398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272398,0.000000,0.000000,0.250000,0,0);}
.md_c00466{transform:matrix(0.272535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272535,0.000000,0.000000,0.250000,0,0);}
.m7e_c00466{transform:matrix(0.273110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273110,0.000000,0.000000,0.250000,0,0);}
.m75_c00466{transform:matrix(0.273565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273565,0.000000,0.000000,0.250000,0,0);}
.m14_c00466{transform:matrix(0.274757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274757,0.000000,0.000000,0.250000,0,0);}
.m5_c00466{transform:matrix(0.275369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275369,0.000000,0.000000,0.250000,0,0);}
.m6e_c00466{transform:matrix(0.275415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275415,0.000000,0.000000,0.250000,0,0);}
.m15_c00466{transform:matrix(0.276115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276115,0.000000,0.000000,0.250000,0,0);}
.m4_c00466{transform:matrix(0.276430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276430,0.000000,0.000000,0.250000,0,0);}
.m93_c00466{transform:matrix(0.276506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276506,0.000000,0.000000,0.250000,0,0);}
.m47_c00466{transform:matrix(0.277709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277709,0.000000,0.000000,0.250000,0,0);}
.m95_c00466{transform:matrix(0.277864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277864,0.000000,0.000000,0.250000,0,0);}
.m96_c00466{transform:matrix(0.277916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277916,0.000000,0.000000,0.250000,0,0);}
.m1f_c00466{transform:matrix(0.277965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277965,0.000000,0.000000,0.250000,0,0);}
.m83_c00466{transform:matrix(0.278521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278521,0.000000,0.000000,0.250000,0,0);}
.m8e_c00466{transform:matrix(0.278840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278840,0.000000,0.000000,0.250000,0,0);}
.m1e_c00466{transform:matrix(0.278999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278999,0.000000,0.000000,0.250000,0,0);}
.m36_c00466{transform:matrix(0.279291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279291,0.000000,0.000000,0.250000,0,0);}
.m6a_c00466{transform:matrix(0.279938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279938,0.000000,0.000000,0.250000,0,0);}
.m88_c00466{transform:matrix(0.279963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279963,0.000000,0.000000,0.250000,0,0);}
.m9c_c00466{transform:matrix(0.281957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281957,0.000000,0.000000,0.250000,0,0);}
.m9a_c00466{transform:matrix(0.282043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282043,0.000000,0.000000,0.250000,0,0);}
.ma3_c00466{transform:matrix(0.282283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282283,0.000000,0.000000,0.250000,0,0);}
.m4d_c00466{transform:matrix(0.283347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283347,0.000000,0.000000,0.250000,0,0);}
.m1b_c00466{transform:matrix(0.283747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283747,0.000000,0.000000,0.250000,0,0);}
.m3f_c00466{transform:matrix(0.284171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284171,0.000000,0.000000,0.250000,0,0);}
.m30_c00466{transform:matrix(0.284192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284192,0.000000,0.000000,0.250000,0,0);}
.m31_c00466{transform:matrix(0.284445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284445,0.000000,0.000000,0.250000,0,0);}
.m74_c00466{transform:matrix(0.285127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285127,0.000000,0.000000,0.250000,0,0);}
.m3e_c00466{transform:matrix(0.285235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285235,0.000000,0.000000,0.250000,0,0);}
.me_c00466{transform:matrix(0.285286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285286,0.000000,0.000000,0.250000,0,0);}
.m70_c00466{transform:matrix(0.285729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285729,0.000000,0.000000,0.250000,0,0);}
.m86_c00466{transform:matrix(0.285973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285973,0.000000,0.000000,0.250000,0,0);}
.m1c_c00466{transform:matrix(0.287398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287398,0.000000,0.000000,0.250000,0,0);}
.m8b_c00466{transform:matrix(0.288814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288814,0.000000,0.000000,0.250000,0,0);}
.m1d_c00466{transform:matrix(0.289020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289020,0.000000,0.000000,0.250000,0,0);}
.m2a_c00466{transform:matrix(0.289892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289892,0.000000,0.000000,0.250000,0,0);}
.m4e_c00466{transform:matrix(0.289954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289954,0.000000,0.000000,0.250000,0,0);}
.m21_c00466{transform:matrix(0.291493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291493,0.000000,0.000000,0.250000,0,0);}
.m6f_c00466{transform:matrix(0.291588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291588,0.000000,0.000000,0.250000,0,0);}
.m2c_c00466{transform:matrix(0.292105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292105,0.000000,0.000000,0.250000,0,0);}
.m68_c00466{transform:matrix(0.292174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292174,0.000000,0.000000,0.250000,0,0);}
.m76_c00466{transform:matrix(0.292377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292377,0.000000,0.000000,0.250000,0,0);}
.m3c_c00466{transform:matrix(0.292584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292584,0.000000,0.000000,0.250000,0,0);}
.m90_c00466{transform:matrix(0.293261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293261,0.000000,0.000000,0.250000,0,0);}
.m34_c00466{transform:matrix(0.293303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293303,0.000000,0.000000,0.250000,0,0);}
.m6d_c00466{transform:matrix(0.294733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294733,0.000000,0.000000,0.250000,0,0);}
.m9_c00466{transform:matrix(0.295749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295749,0.000000,0.000000,0.250000,0,0);}
.m37_c00466{transform:matrix(0.296307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296307,0.000000,0.000000,0.250000,0,0);}
.m22_c00466{transform:matrix(0.296594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296594,0.000000,0.000000,0.250000,0,0);}
.m59_c00466{transform:matrix(0.296943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296943,0.000000,0.000000,0.250000,0,0);}
.m89_c00466{transform:matrix(0.297034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297034,0.000000,0.000000,0.250000,0,0);}
.m6c_c00466{transform:matrix(0.297855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297855,0.000000,0.000000,0.250000,0,0);}
.m5d_c00466{transform:matrix(0.298413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298413,0.000000,0.000000,0.250000,0,0);}
.m56_c00466{transform:matrix(0.298927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298927,0.000000,0.000000,0.250000,0,0);}
.m3b_c00466{transform:matrix(0.299926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299926,0.000000,0.000000,0.250000,0,0);}
.m84_c00466{transform:matrix(0.300446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300446,0.000000,0.000000,0.250000,0,0);}
.m29_c00466{transform:matrix(0.300545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300545,0.000000,0.000000,0.250000,0,0);}
.m7c_c00466{transform:matrix(0.300925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300925,0.000000,0.000000,0.250000,0,0);}
.ma2_c00466{transform:matrix(0.301311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301311,0.000000,0.000000,0.250000,0,0);}
.m16_c00466{transform:matrix(0.301946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301946,0.000000,0.000000,0.250000,0,0);}
.m8f_c00466{transform:matrix(0.301970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301970,0.000000,0.000000,0.250000,0,0);}
.m5e_c00466{transform:matrix(0.302844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302844,0.000000,0.000000,0.250000,0,0);}
.m66_c00466{transform:matrix(0.305264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305264,0.000000,0.000000,0.250000,0,0);}
.m6_c00466{transform:matrix(0.305469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305469,0.000000,0.000000,0.250000,0,0);}
.m54_c00466{transform:matrix(0.305880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305880,0.000000,0.000000,0.250000,0,0);}
.m48_c00466{transform:matrix(0.306380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306380,0.000000,0.000000,0.250000,0,0);}
.m3a_c00466{transform:matrix(0.307278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307278,0.000000,0.000000,0.250000,0,0);}
.m23_c00466{transform:matrix(0.307505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307505,0.000000,0.000000,0.250000,0,0);}
.m81_c00466{transform:matrix(0.307715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307715,0.000000,0.000000,0.250000,0,0);}
.m35_c00466{transform:matrix(0.307994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307994,0.000000,0.000000,0.250000,0,0);}
.mf_c00466{transform:matrix(0.309206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309206,0.000000,0.000000,0.250000,0,0);}
.ma0_c00466{transform:matrix(0.309451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309451,0.000000,0.000000,0.250000,0,0);}
.mb_c00466{transform:matrix(0.310003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310003,0.000000,0.000000,0.250000,0,0);}
.m27_c00466{transform:matrix(0.310853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310853,0.000000,0.000000,0.250000,0,0);}
.m8d_c00466{transform:matrix(0.312161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312161,0.000000,0.000000,0.250000,0,0);}
.m5c_c00466{transform:matrix(0.312291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312291,0.000000,0.000000,0.250000,0,0);}
.m72_c00466{transform:matrix(0.313435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313435,0.000000,0.000000,0.250000,0,0);}
.m33_c00466{transform:matrix(0.313548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313548,0.000000,0.000000,0.250000,0,0);}
.m64_c00466{transform:matrix(0.315001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315001,0.000000,0.000000,0.250000,0,0);}
.ma4_c00466{transform:matrix(0.315723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315723,0.000000,0.000000,0.250000,0,0);}
.m2b_c00466{transform:matrix(0.318242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318242,0.000000,0.000000,0.250000,0,0);}
.m2d_c00466{transform:matrix(0.320282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320282,0.000000,0.000000,0.250000,0,0);}
.m50_c00466{transform:matrix(0.320559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320559,0.000000,0.000000,0.250000,0,0);}
.m63_c00466{transform:matrix(0.321791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321791,0.000000,0.000000,0.250000,0,0);}
.m99_c00466{transform:matrix(0.322065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322065,0.000000,0.000000,0.250000,0,0);}
.m25_c00466{transform:matrix(0.323241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323241,0.000000,0.000000,0.250000,0,0);}
.m8a_c00466{transform:matrix(0.324626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324626,0.000000,0.000000,0.250000,0,0);}
.m9f_c00466{transform:matrix(0.326105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326105,0.000000,0.000000,0.250000,0,0);}
.m92_c00466{transform:matrix(0.326429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326429,0.000000,0.000000,0.250000,0,0);}
.m40_c00466{transform:matrix(0.328490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328490,0.000000,0.000000,0.250000,0,0);}
.m2e_c00466{transform:matrix(0.328670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328670,0.000000,0.000000,0.250000,0,0);}
.m4f_c00466{transform:matrix(0.331929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331929,0.000000,0.000000,0.250000,0,0);}
.m60_c00466{transform:matrix(0.333044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333044,0.000000,0.000000,0.250000,0,0);}
.m58_c00466{transform:matrix(0.333522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333522,0.000000,0.000000,0.250000,0,0);}
.m91_c00466{transform:matrix(0.334094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334094,0.000000,0.000000,0.250000,0,0);}
.m62_c00466{transform:matrix(0.336992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336992,0.000000,0.000000,0.250000,0,0);}
.m80_c00466{transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);}
.m20_c00466{transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);}
.m8_c00466{transform:matrix(0.376256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376256,0.000000,0.000000,0.250000,0,0);}
.m7d_c00466{transform:matrix(0.390716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390716,0.000000,0.000000,0.250000,0,0);}
.m32_c00466{transform:matrix(0.412048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412048,0.000000,0.000000,0.250000,0,0);}
.v2_c00466{vertical-align:-15.699420px;}
.v0_c00466{vertical-align:0.000000px;}
.v1_c00466{vertical-align:12.810600px;}
.ls17_c00466{letter-spacing:-3.880800px;}
.ls11_c00466{letter-spacing:-2.855167px;}
.ls18_c00466{letter-spacing:-2.324922px;}
.lsa_c00466{letter-spacing:-2.162167px;}
.ls9_c00466{letter-spacing:-1.794676px;}
.ls7_c00466{letter-spacing:-1.256273px;}
.ls8_c00466{letter-spacing:-0.734186px;}
.ls20_c00466{letter-spacing:-0.320661px;}
.ls2_c00466{letter-spacing:0.000000px;}
.ls10_c00466{letter-spacing:0.505772px;}
.ls13_c00466{letter-spacing:0.791289px;}
.ls19_c00466{letter-spacing:0.799447px;}
.ls1_c00466{letter-spacing:0.995230px;}
.lsb_c00466{letter-spacing:1.003387px;}
.ls12_c00466{letter-spacing:1.951651px;}
.ls1d_c00466{letter-spacing:2.023090px;}
.ls21_c00466{letter-spacing:2.119491px;}
.ls1e_c00466{letter-spacing:3.311994px;}
.ls1c_c00466{letter-spacing:3.425400px;}
.lsd_c00466{letter-spacing:3.515934px;}
.ls14_c00466{letter-spacing:3.564880px;}
.ls6_c00466{letter-spacing:3.638298px;}
.lse_c00466{letter-spacing:3.682810px;}
.lsc_c00466{letter-spacing:3.722400px;}
.ls1b_c00466{letter-spacing:3.732310px;}
.lsf_c00466{letter-spacing:3.781810px;}
.ls4_c00466{letter-spacing:3.801610px;}
.ls1f_c00466{letter-spacing:3.910500px;}
.ls15_c00466{letter-spacing:3.940200px;}
.ls0_c00466{letter-spacing:4.076820px;}
.ls5_c00466{letter-spacing:4.078810px;}
.ls3_c00466{letter-spacing:4.395610px;}
.ls23_c00466{letter-spacing:58.449798px;}
.ls22_c00466{letter-spacing:59.875398px;}
.ls1a_c00466{letter-spacing:61.300998px;}
.ls16_c00466{letter-spacing:62.726400px;}
.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;}
}
.ws1_c00466{word-spacing:0.000000px;}
.ws0_c00466{word-spacing:12.154227px;}
._3_c00466{width:6.444455px;}
._0_c00466{width:21.138006px;}
._4_c00466{width:23.424885px;}
._1_c00466{width:36.155988px;}
._2_c00466{width:56.716594px;}
.fc0_c00466{color:transparent;}
.fsb_c00466{font-size:17.424000px;}
.fs0_c00466{font-size:22.176000px;}
.fs2_c00466{font-size:27.720000px;}
.fs12_c00466{font-size:33.660000px;}
.fsa_c00466{font-size:42.966198px;}
.fs17_c00466{font-size:58.449798px;}
.fs16_c00466{font-size:59.875398px;}
.fsf_c00466{font-size:60.984000px;}
.fs11_c00466{font-size:61.300998px;}
.fs6_c00466{font-size:61.776198px;}
.fsd_c00466{font-size:62.726400px;}
.fs14_c00466{font-size:68.508000px;}
.fs10_c00466{font-size:70.092198px;}
.fs8_c00466{font-size:73.656198px;}
.fs5_c00466{font-size:73.854000px;}
.fs7_c00466{font-size:74.448000px;}
.fs13_c00466{font-size:74.646198px;}
.fs9_c00466{font-size:75.636198px;}
.fs3_c00466{font-size:76.032198px;}
.fs15_c00466{font-size:78.210000px;}
.fsc_c00466{font-size:78.804000px;}
.fs4_c00466{font-size:81.576198px;}
.fs1_c00466{font-size:87.912198px;}
.fse_c00466{font-size:110.880000px;}
.y0_c00466{bottom:0.000000px;}
.y3_c00466{bottom:24.149511px;}
.y1_c00466{bottom:76.500000px;}
.y23_c00466{bottom:110.395935px;}
.y2_c00466{bottom:128.215935px;}
.y22_c00466{bottom:174.899385px;}
.y21_c00466{bottom:206.623935px;}
.y20_c00466{bottom:227.290185px;}
.y1f_c00466{bottom:237.982185px;}
.y1e_c00466{bottom:270.058185px;}
.y1d_c00466{bottom:301.782735px;}
.y1c_c00466{bottom:332.789535px;}
.y1b_c00466{bottom:365.216985px;}
.y1a_c00466{bottom:388.026585px;}
.y19_c00466{bottom:396.936585px;}
.y18_c00466{bottom:413.692335px;}
.y17_c00466{bottom:429.012585px;}
.y16_c00466{bottom:461.093535px;}
.y15_c00466{bottom:492.456735px;}
.y14_c00466{bottom:524.532735px;}
.y13_c00466{bottom:587.610585px;}
.y12_c00466{bottom:619.691535px;}
.y11_c00466{bottom:649.980585px;}
.y10_c00466{bottom:682.417935px;}
.ye_c00466{bottom:710.929935px;}
.yd_c00466{bottom:714.132585px;}
.yf_c00466{bottom:718.057935px;}
.yc_c00466{bottom:746.213535px;}
.yb_c00466{bottom:809.291385px;}
.ya_c00466{bottom:826.047135px;}
.y9_c00466{bottom:841.015935px;}
.y8_c00466{bottom:872.730585px;}
.y7_c00466{bottom:904.450185px;}
.y6_c00466{bottom:936.882585px;}
.y5_c00466{bottom:1014.934185px;}
.y4_c00466{bottom:1071.601785px;}
.hc_c00466{height:17.100703px;}
.h2_c00466{height:23.128875px;}
.h4_c00466{height:28.911094px;}
.h13_c00466{height:33.035449px;}
.h18_c00466{height:38.927565px;}
.h17_c00466{height:39.877015px;}
.h12_c00466{height:40.826465px;}
.he_c00466{height:41.775782px;}
.h11_c00466{height:63.604406px;}
.h7_c00466{height:64.430644px;}
.h15_c00466{height:67.236855px;}
.h9_c00466{height:72.289530px;}
.h8_c00466{height:73.066641px;}
.h14_c00466{height:73.261161px;}
.ha_c00466{height:74.232792px;}
.h5_c00466{height:74.584319px;}
.h16_c00466{height:76.758838px;}
.hd_c00466{height:77.341816px;}
.h10_c00466{height:79.299207px;}
.h6_c00466{height:80.062577px;}
.h3_c00466{height:86.281015px;}
.hb_c00466{height:92.873177px;}
.hf_c00466{height:108.822656px;}
.h1_c00466{height:1110.000000px;}
.h0_c00466{height:1263.000000px;}
.w1_c00466{width:760.500000px;}
.w0_c00466{width:892.500000px;}
.x0_c00466{left:0.000000px;}
.x3_c00466{left:4.341243px;}
.x2_c00466{left:52.812435px;}
.x1_c00466{left:66.000000px;}
.x4c_c00466{left:83.111385px;}
.x47_c00466{left:84.393435px;}
.x11_c00466{left:85.635885px;}
.x43_c00466{left:116.652585px;}
.x1a_c00466{left:118.142535px;}
.x5f_c00466{left:128.126685px;}
.x21_c00466{left:129.265185px;}
.x2d_c00466{left:137.947485px;}
.x4d_c00466{left:139.640385px;}
.x7_c00466{left:141.125385px;}
.x29_c00466{left:150.441285px;}
.x1b_c00466{left:160.524435px;}
.x3e_c00466{left:171.572835px;}
.x56_c00466{left:172.671735px;}
.x2e_c00466{left:183.437985px;}
.x22_c00466{left:193.625085px;}
.x5c_c00466{left:195.550635px;}
.x38_c00466{left:204.802185px;}
.x1c_c00466{left:205.920885px;}
.x4a_c00466{left:207.326685px;}
.x65_c00466{left:216.261435px;}
.x50_c00466{left:217.335585px;}
.x2a_c00466{left:228.987885px;}
.x8_c00466{left:238.175085px;}
.x51_c00466{left:239.754135px;}
.x12_c00466{left:250.822335px;}
.x2f_c00466{left:260.286735px;}
.x2b_c00466{left:261.707385px;}
.x13_c00466{left:284.591235px;}
.x30_c00466{left:294.317985px;}
.x23_c00466{left:295.713885px;}
.x4e_c00466{left:305.980185px;}
.x14_c00466{left:315.880185px;}
.x2c_c00466{left:317.672085px;}
.x9_c00466{left:327.567135px;}
.x52_c00466{left:337.981935px;}
.x39_c00466{left:339.204585px;}
.x57_c00466{left:349.386735px;}
.x1d_c00466{left:362.033985px;}
.x63_c00466{left:364.776285px;}
.x31_c00466{left:371.958735px;}
.x61_c00466{left:373.082385px;}
.x1e_c00466{left:382.160685px;}
.x3a_c00466{left:383.769435px;}
.x44_c00466{left:393.610035px;}
.x15_c00466{left:394.783185px;}
.x24_c00466{left:405.757335px;}
.x3f_c00466{left:416.028585px;}
.xa_c00466{left:417.879885px;}
.x45_c00466{left:427.472985px;}
.x32_c00466{left:438.120435px;}
.x4f_c00466{left:440.036085px;}
.xb_c00466{left:450.277635px;}
.x16_c00466{left:460.573635px;}
.x53_c00466{left:461.801235px;}
.x33_c00466{left:472.136835px;}
.x25_c00466{left:482.155635px;}
.x66_c00466{left:493.362435px;}
.x48_c00466{left:495.283035px;}
.x1f_c00466{left:504.044535px;}
.x69_c00466{left:505.514685px;}
.x46_c00466{left:513.721785px;}
.xc_c00466{left:516.612585px;}
.x3b_c00466{left:518.656935px;}
.x26_c00466{left:526.641285px;}
.x40_c00466{left:528.032235px;}
.x60_c00466{left:538.209435px;}
.x58_c00466{left:540.550785px;}
.x6_c00466{left:545.688885px;}
.x34_c00466{left:549.787485px;}
.x27_c00466{left:559.939935px;}
.x6a_c00466{left:569.325135px;}
.x62_c00466{left:571.196235px;}
.x35_c00466{left:581.937735px;}
.x59_c00466{left:592.446585px;}
.x54_c00466{left:593.669235px;}
.x20_c00466{left:599.851785px;}
.x41_c00466{left:603.980085px;}
.x3c_c00466{left:615.671985px;}
.x17_c00466{left:616.815435px;}
.x4b_c00466{left:618.176685px;}
.xd_c00466{left:626.141235px;}
.x5d_c00466{left:627.185685px;}
.x42_c00466{left:636.283785px;}
.x18_c00466{left:637.882635px;}
.x36_c00466{left:648.584535px;}
.xe_c00466{left:658.504335px;}
.x5a_c00466{left:659.999235px;}
.x67_c00466{left:663.058335px;}
.x28_c00466{left:670.656585px;}
.x19_c00466{left:681.333735px;}
.x37_c00466{left:682.769235px;}
.x4_c00466{left:685.952085px;}
.xf_c00466{left:692.713785px;}
.x64_c00466{left:693.802785px;}
.x5b_c00466{left:695.599635px;}
.x5e_c00466{left:699.272535px;}
.x68_c00466{left:700.747635px;}
.x49_c00466{left:704.187885px;}
.x55_c00466{left:715.859985px;}
.x5_c00466{left:719.265585px;}
.x10_c00466{left:725.532285px;}
.x3d_c00466{left:726.809385px;}
@media print{
.v2_c00466{vertical-align:-13.955040pt;}
.v0_c00466{vertical-align:0.000000pt;}
.v1_c00466{vertical-align:11.387200pt;}
.ls17_c00466{letter-spacing:-3.449600pt;}
.ls11_c00466{letter-spacing:-2.537926pt;}
.ls18_c00466{letter-spacing:-2.066597pt;}
.lsa_c00466{letter-spacing:-1.921926pt;}
.ls9_c00466{letter-spacing:-1.595268pt;}
.ls7_c00466{letter-spacing:-1.116688pt;}
.ls8_c00466{letter-spacing:-0.652610pt;}
.ls20_c00466{letter-spacing:-0.285032pt;}
.ls2_c00466{letter-spacing:0.000000pt;}
.ls10_c00466{letter-spacing:0.449575pt;}
.ls13_c00466{letter-spacing:0.703368pt;}
.ls19_c00466{letter-spacing:0.710619pt;}
.ls1_c00466{letter-spacing:0.884649pt;}
.lsb_c00466{letter-spacing:0.891900pt;}
.ls12_c00466{letter-spacing:1.734801pt;}
.ls1d_c00466{letter-spacing:1.798302pt;}
.ls21_c00466{letter-spacing:1.883992pt;}
.ls1e_c00466{letter-spacing:2.943994pt;}
.ls1c_c00466{letter-spacing:3.044800pt;}
.lsd_c00466{letter-spacing:3.125275pt;}
.ls14_c00466{letter-spacing:3.168782pt;}
.ls6_c00466{letter-spacing:3.234043pt;}
.lse_c00466{letter-spacing:3.273609pt;}
.lsc_c00466{letter-spacing:3.308800pt;}
.ls1b_c00466{letter-spacing:3.317609pt;}
.lsf_c00466{letter-spacing:3.361609pt;}
.ls4_c00466{letter-spacing:3.379209pt;}
.ls1f_c00466{letter-spacing:3.476000pt;}
.ls15_c00466{letter-spacing:3.502400pt;}
.ls0_c00466{letter-spacing:3.623840pt;}
.ls5_c00466{letter-spacing:3.625609pt;}
.ls3_c00466{letter-spacing:3.907209pt;}
.ls23_c00466{letter-spacing:51.955376pt;}
.ls22_c00466{letter-spacing:53.222576pt;}
.ls1a_c00466{letter-spacing:54.489776pt;}
.ls16_c00466{letter-spacing:55.756800pt;}
.ws1_c00466{word-spacing:0.000000pt;}
.ws0_c00466{word-spacing:10.803757pt;}
._3_c00466{width:5.728404pt;}
._0_c00466{width:18.789338pt;}
._4_c00466{width:20.822120pt;}
._1_c00466{width:32.138656pt;}
._2_c00466{width:50.414750pt;}
.fsb_c00466{font-size:15.488000pt;}
.fs0_c00466{font-size:19.712000pt;}
.fs2_c00466{font-size:24.640000pt;}
.fs12_c00466{font-size:29.920000pt;}
.fsa_c00466{font-size:38.192176pt;}
.fs17_c00466{font-size:51.955376pt;}
.fs16_c00466{font-size:53.222576pt;}
.fsf_c00466{font-size:54.208000pt;}
.fs11_c00466{font-size:54.489776pt;}
.fs6_c00466{font-size:54.912176pt;}
.fsd_c00466{font-size:55.756800pt;}
.fs14_c00466{font-size:60.896000pt;}
.fs10_c00466{font-size:62.304176pt;}
.fs8_c00466{font-size:65.472176pt;}
.fs5_c00466{font-size:65.648000pt;}
.fs7_c00466{font-size:66.176000pt;}
.fs13_c00466{font-size:66.352176pt;}
.fs9_c00466{font-size:67.232176pt;}
.fs3_c00466{font-size:67.584176pt;}
.fs15_c00466{font-size:69.520000pt;}
.fsc_c00466{font-size:70.048000pt;}
.fs4_c00466{font-size:72.512176pt;}
.fs1_c00466{font-size:78.144176pt;}
.fse_c00466{font-size:98.560000pt;}
.y0_c00466{bottom:0.000000pt;}
.y3_c00466{bottom:21.466232pt;}
.y1_c00466{bottom:68.000000pt;}
.y23_c00466{bottom:98.129720pt;}
.y2_c00466{bottom:113.969720pt;}
.y22_c00466{bottom:155.466120pt;}
.y21_c00466{bottom:183.665720pt;}
.y20_c00466{bottom:202.035720pt;}
.y1f_c00466{bottom:211.539720pt;}
.y1e_c00466{bottom:240.051720pt;}
.y1d_c00466{bottom:268.251320pt;}
.y1c_c00466{bottom:295.812920pt;}
.y1b_c00466{bottom:324.637320pt;}
.y1a_c00466{bottom:344.912520pt;}
.y19_c00466{bottom:352.832520pt;}
.y18_c00466{bottom:367.726520pt;}
.y17_c00466{bottom:381.344520pt;}
.y16_c00466{bottom:409.860920pt;}
.y15_c00466{bottom:437.739320pt;}
.y14_c00466{bottom:466.251320pt;}
.y13_c00466{bottom:522.320520pt;}
.y12_c00466{bottom:550.836920pt;}
.y11_c00466{bottom:577.760520pt;}
.y10_c00466{bottom:606.593720pt;}
.ye_c00466{bottom:631.937720pt;}
.yd_c00466{bottom:634.784520pt;}
.yf_c00466{bottom:638.273720pt;}
.yc_c00466{bottom:663.300920pt;}
.yb_c00466{bottom:719.370120pt;}
.ya_c00466{bottom:734.264120pt;}
.y9_c00466{bottom:747.569720pt;}
.y8_c00466{bottom:775.760520pt;}
.y7_c00466{bottom:803.955720pt;}
.y6_c00466{bottom:832.784520pt;}
.y5_c00466{bottom:902.163720pt;}
.y4_c00466{bottom:952.534920pt;}
.hc_c00466{height:15.200625pt;}
.h2_c00466{height:20.559000pt;}
.h4_c00466{height:25.698750pt;}
.h13_c00466{height:29.364844pt;}
.h18_c00466{height:34.602280pt;}
.h17_c00466{height:35.446236pt;}
.h12_c00466{height:36.290191pt;}
.he_c00466{height:37.134029pt;}
.h11_c00466{height:56.537250pt;}
.h7_c00466{height:57.271684pt;}
.h15_c00466{height:59.766094pt;}
.h9_c00466{height:64.257360pt;}
.h8_c00466{height:64.948125pt;}
.h14_c00466{height:65.121032pt;}
.ha_c00466{height:65.984704pt;}
.h5_c00466{height:66.297173pt;}
.h16_c00466{height:68.230078pt;}
.hd_c00466{height:68.748281pt;}
.h10_c00466{height:70.488184pt;}
.h6_c00466{height:71.166735pt;}
.h3_c00466{height:76.694235pt;}
.hb_c00466{height:82.553935pt;}
.hf_c00466{height:96.731250pt;}
.h1_c00466{height:986.666667pt;}
.h0_c00466{height:1122.666667pt;}
.w1_c00466{width:676.000000pt;}
.w0_c00466{width:793.333333pt;}
.x0_c00466{left:0.000000pt;}
.x3_c00466{left:3.858883pt;}
.x2_c00466{left:46.944387pt;}
.x1_c00466{left:58.666667pt;}
.x4c_c00466{left:73.876787pt;}
.x47_c00466{left:75.016387pt;}
.x11_c00466{left:76.120787pt;}
.x43_c00466{left:103.691187pt;}
.x1a_c00466{left:105.015587pt;}
.x5f_c00466{left:113.890387pt;}
.x21_c00466{left:114.902387pt;}
.x2d_c00466{left:122.619987pt;}
.x4d_c00466{left:124.124787pt;}
.x7_c00466{left:125.444787pt;}
.x29_c00466{left:133.725587pt;}
.x1b_c00466{left:142.688387pt;}
.x3e_c00466{left:152.509187pt;}
.x56_c00466{left:153.485987pt;}
.x2e_c00466{left:163.055987pt;}
.x22_c00466{left:172.111187pt;}
.x5c_c00466{left:173.822787pt;}
.x38_c00466{left:182.046387pt;}
.x1c_c00466{left:183.040787pt;}
.x4a_c00466{left:184.290387pt;}
.x65_c00466{left:192.232387pt;}
.x50_c00466{left:193.187187pt;}
.x2a_c00466{left:203.544787pt;}
.x8_c00466{left:211.711187pt;}
.x51_c00466{left:213.114787pt;}
.x12_c00466{left:222.953187pt;}
.x2f_c00466{left:231.365987pt;}
.x2b_c00466{left:232.628787pt;}
.x13_c00466{left:252.969987pt;}
.x30_c00466{left:261.615987pt;}
.x23_c00466{left:262.856787pt;}
.x4e_c00466{left:271.982387pt;}
.x14_c00466{left:280.782387pt;}
.x2c_c00466{left:282.375187pt;}
.x9_c00466{left:291.170787pt;}
.x52_c00466{left:300.428387pt;}
.x39_c00466{left:301.515187pt;}
.x57_c00466{left:310.565987pt;}
.x1d_c00466{left:321.807987pt;}
.x63_c00466{left:324.245587pt;}
.x31_c00466{left:330.629987pt;}
.x61_c00466{left:331.628787pt;}
.x1e_c00466{left:339.698387pt;}
.x3a_c00466{left:341.128387pt;}
.x44_c00466{left:349.875587pt;}
.x15_c00466{left:350.918387pt;}
.x24_c00466{left:360.673187pt;}
.x3f_c00466{left:369.803187pt;}
.xa_c00466{left:371.448787pt;}
.x45_c00466{left:379.975987pt;}
.x32_c00466{left:389.440387pt;}
.x4f_c00466{left:391.143187pt;}
.xb_c00466{left:400.246787pt;}
.x16_c00466{left:409.398787pt;}
.x53_c00466{left:410.489987pt;}
.x33_c00466{left:419.677187pt;}
.x25_c00466{left:428.582787pt;}
.x66_c00466{left:438.544387pt;}
.x48_c00466{left:440.251587pt;}
.x1f_c00466{left:448.039587pt;}
.x69_c00466{left:449.346387pt;}
.x46_c00466{left:456.641587pt;}
.xc_c00466{left:459.211187pt;}
.x3b_c00466{left:461.028387pt;}
.x26_c00466{left:468.125587pt;}
.x40_c00466{left:469.361987pt;}
.x60_c00466{left:478.408387pt;}
.x58_c00466{left:480.489587pt;}
.x6_c00466{left:485.056787pt;}
.x34_c00466{left:488.699987pt;}
.x27_c00466{left:497.724387pt;}
.x6a_c00466{left:506.066787pt;}
.x62_c00466{left:507.729987pt;}
.x35_c00466{left:517.277987pt;}
.x59_c00466{left:526.619187pt;}
.x54_c00466{left:527.705987pt;}
.x20_c00466{left:533.201587pt;}
.x41_c00466{left:536.871187pt;}
.x3c_c00466{left:547.263987pt;}
.x17_c00466{left:548.280387pt;}
.x4b_c00466{left:549.490387pt;}
.xd_c00466{left:556.569987pt;}
.x5d_c00466{left:557.498387pt;}
.x42_c00466{left:565.585587pt;}
.x18_c00466{left:567.006787pt;}
.x36_c00466{left:576.519587pt;}
.xe_c00466{left:585.337187pt;}
.x5a_c00466{left:586.665987pt;}
.x67_c00466{left:589.385187pt;}
.x28_c00466{left:596.139187pt;}
.x19_c00466{left:605.629987pt;}
.x37_c00466{left:606.905987pt;}
.x4_c00466{left:609.735187pt;}
.xf_c00466{left:615.745587pt;}
.x64_c00466{left:616.713587pt;}
.x5b_c00466{left:618.310787pt;}
.x5e_c00466{left:621.575587pt;}
.x68_c00466{left:622.886787pt;}
.x49_c00466{left:625.944787pt;}
.x55_c00466{left:636.319987pt;}
.x5_c00466{left:639.347187pt;}
.x10_c00466{left:644.917587pt;}
.x3d_c00466{left:646.052787pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0924ed2b5742e265872e8d5e.woff2')format("woff");}.ff1_c00467{font-family:ff1_c00467;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00467;src:url('chunks/assets/font_5a5d58245cd0617f1c56aff2.woff2')format("woff");}.ff2_c00467{font-family:ff2_c00467;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00467;src:url('chunks/assets/font_fc7b28e5bbf72cb0d6790cb7.woff2')format("woff");}.ff3_c00467{font-family:ff3_c00467;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m36_c00467{transform:matrix(0.061112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.061112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.061112,0.000000,0.000000,0.250000,0,0);}
.m2f_c00467{transform:matrix(0.062501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062501,0.000000,0.000000,0.250000,0,0);}
.m7d_c00467{transform:matrix(0.084746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084746,0.000000,0.000000,0.250000,0,0);}
.m6e_c00467{transform:matrix(0.098040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098040,0.000000,0.000000,0.250000,0,0);}
.m2e_c00467{transform:matrix(0.100751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100751,0.000000,0.000000,0.250000,0,0);}
.m78_c00467{transform:matrix(0.111703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111703,0.000000,0.000000,0.250000,0,0);}
.m7c_c00467{transform:matrix(0.118644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118644,0.000000,0.000000,0.250000,0,0);}
.m67_c00467{transform:matrix(0.130597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130597,0.000000,0.000000,0.250000,0,0);}
.m1_c00467{transform:matrix(0.134375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134375,0.000000,0.000000,0.250000,0,0);}
.m38_c00467{transform:matrix(0.141176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141176,0.000000,0.000000,0.250000,0,0);}
.m2_c00467{transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);}
.m37_c00467{transform:matrix(0.145238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145238,0.000000,0.000000,0.250000,0,0);}
.m46_c00467{transform:matrix(0.145512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145512,0.000000,0.000000,0.250000,0,0);}
.m93_c00467{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);}
.m80_c00467{transform:matrix(0.169804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169804,0.000000,0.000000,0.250000,0,0);}
.m35_c00467{transform:matrix(0.172222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172222,0.000000,0.000000,0.250000,0,0);}
.m96_c00467{transform:matrix(0.174988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174988,0.000000,0.000000,0.250000,0,0);}
.m23_c00467{transform:matrix(0.175925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175925,0.000000,0.000000,0.250000,0,0);}
.m39_c00467{transform:matrix(0.178295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178295,0.000000,0.000000,0.250000,0,0);}
.m68_c00467{transform:matrix(0.187381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187381,0.000000,0.000000,0.250000,0,0);}
.m6f_c00467{transform:matrix(0.189531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189531,0.000000,0.000000,0.250000,0,0);}
.m72_c00467{transform:matrix(0.190081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190081,0.000000,0.000000,0.250000,0,0);}
.m74_c00467{transform:matrix(0.192756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192756,0.000000,0.000000,0.250000,0,0);}
.m69_c00467{transform:matrix(0.200715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200715,0.000000,0.000000,0.250000,0,0);}
.m6a_c00467{transform:matrix(0.201145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201145,0.000000,0.000000,0.250000,0,0);}
.m82_c00467{transform:matrix(0.211455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211455,0.000000,0.000000,0.250000,0,0);}
.m77_c00467{transform:matrix(0.212425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212425,0.000000,0.000000,0.250000,0,0);}
.m75_c00467{transform:matrix(0.212867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212867,0.000000,0.000000,0.250000,0,0);}
.m64_c00467{transform:matrix(0.215817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215817,0.000000,0.000000,0.250000,0,0);}
.m6b_c00467{transform:matrix(0.218684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218684,0.000000,0.000000,0.250000,0,0);}
.m7e_c00467{transform:matrix(0.221273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221273,0.000000,0.000000,0.250000,0,0);}
.m6d_c00467{transform:matrix(0.223904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223904,0.000000,0.000000,0.250000,0,0);}
.m4_c00467{transform:matrix(0.225605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225605,0.000000,0.000000,0.250000,0,0);}
.m7b_c00467{transform:matrix(0.226004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226004,0.000000,0.000000,0.250000,0,0);}
.m70_c00467{transform:matrix(0.230731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230731,0.000000,0.000000,0.250000,0,0);}
.m65_c00467{transform:matrix(0.235921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235921,0.000000,0.000000,0.250000,0,0);}
.m1c_c00467{transform:matrix(0.241451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241451,0.000000,0.000000,0.250000,0,0);}
.m6_c00467{transform:matrix(0.242715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242715,0.000000,0.000000,0.250000,0,0);}
.m7f_c00467{transform:matrix(0.243851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243851,0.000000,0.000000,0.250000,0,0);}
.m81_c00467{transform:matrix(0.245710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245710,0.000000,0.000000,0.250000,0,0);}
.m30_c00467{transform:matrix(0.246082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246082,0.000000,0.000000,0.250000,0,0);}
.m83_c00467{transform:matrix(0.246602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246602,0.000000,0.000000,0.250000,0,0);}
.m7a_c00467{transform:matrix(0.249483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249483,0.000000,0.000000,0.250000,0,0);}
.m0_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);}
.m7_c00467{transform:matrix(0.251295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251295,0.000000,0.000000,0.250000,0,0);}
.m66_c00467{transform:matrix(0.251828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251828,0.000000,0.000000,0.250000,0,0);}
.m57_c00467{transform:matrix(0.252228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252228,0.000000,0.000000,0.250000,0,0);}
.ma9_c00467{transform:matrix(0.252409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252409,0.000000,0.000000,0.250000,0,0);}
.m15_c00467{transform:matrix(0.252798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252798,0.000000,0.000000,0.250000,0,0);}
.m62_c00467{transform:matrix(0.253513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253513,0.000000,0.000000,0.250000,0,0);}
.m2c_c00467{transform:matrix(0.253584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253584,0.000000,0.000000,0.250000,0,0);}
.m5c_c00467{transform:matrix(0.253760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253760,0.000000,0.000000,0.250000,0,0);}
.m34_c00467{transform:matrix(0.254313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254313,0.000000,0.000000,0.250000,0,0);}
.m32_c00467{transform:matrix(0.254742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254742,0.000000,0.000000,0.250000,0,0);}
.m5f_c00467{transform:matrix(0.254914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254914,0.000000,0.000000,0.250000,0,0);}
.m92_c00467{transform:matrix(0.255029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255029,0.000000,0.000000,0.250000,0,0);}
.me_c00467{transform:matrix(0.255857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255857,0.000000,0.000000,0.250000,0,0);}
.m48_c00467{transform:matrix(0.257123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257123,0.000000,0.000000,0.250000,0,0);}
.m85_c00467{transform:matrix(0.257778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257778,0.000000,0.000000,0.250000,0,0);}
.m43_c00467{transform:matrix(0.258775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258775,0.000000,0.000000,0.250000,0,0);}
.m99_c00467{transform:matrix(0.259870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259870,0.000000,0.000000,0.250000,0,0);}
.m51_c00467{transform:matrix(0.259970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259970,0.000000,0.000000,0.250000,0,0);}
.m8e_c00467{transform:matrix(0.260049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260049,0.000000,0.000000,0.250000,0,0);}
.m49_c00467{transform:matrix(0.261041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261041,0.000000,0.000000,0.250000,0,0);}
.m4c_c00467{transform:matrix(0.261715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261715,0.000000,0.000000,0.250000,0,0);}
.mc_c00467{transform:matrix(0.262522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262522,0.000000,0.000000,0.250000,0,0);}
.m42_c00467{transform:matrix(0.263077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263077,0.000000,0.000000,0.250000,0,0);}
.m73_c00467{transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);}
.m5a_c00467{transform:matrix(0.263237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263237,0.000000,0.000000,0.250000,0,0);}
.m8_c00467{transform:matrix(0.263566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263566,0.000000,0.000000,0.250000,0,0);}
.m58_c00467{transform:matrix(0.263888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263888,0.000000,0.000000,0.250000,0,0);}
.m50_c00467{transform:matrix(0.264699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264699,0.000000,0.000000,0.250000,0,0);}
.m22_c00467{transform:matrix(0.266023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266023,0.000000,0.000000,0.250000,0,0);}
.m3d_c00467{transform:matrix(0.266063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266063,0.000000,0.000000,0.250000,0,0);}
.m8f_c00467{transform:matrix(0.266145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266145,0.000000,0.000000,0.250000,0,0);}
.m3f_c00467{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00467{transform:matrix(0.266516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266516,0.000000,0.000000,0.250000,0,0);}
.m18_c00467{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00467{transform:matrix(0.266993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266993,0.000000,0.000000,0.250000,0,0);}
.ma0_c00467{transform:matrix(0.267486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267486,0.000000,0.000000,0.250000,0,0);}
.m71_c00467{transform:matrix(0.267698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267698,0.000000,0.000000,0.250000,0,0);}
.m6c_c00467{transform:matrix(0.269079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269079,0.000000,0.000000,0.250000,0,0);}
.ma2_c00467{transform:matrix(0.270752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270752,0.000000,0.000000,0.250000,0,0);}
.m2b_c00467{transform:matrix(0.271064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271064,0.000000,0.000000,0.250000,0,0);}
.ma_c00467{transform:matrix(0.271065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271065,0.000000,0.000000,0.250000,0,0);}
.m54_c00467{transform:matrix(0.272242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272242,0.000000,0.000000,0.250000,0,0);}
.m44_c00467{transform:matrix(0.272385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272385,0.000000,0.000000,0.250000,0,0);}
.m56_c00467{transform:matrix(0.273498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273498,0.000000,0.000000,0.250000,0,0);}
.m8a_c00467{transform:matrix(0.273610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273610,0.000000,0.000000,0.250000,0,0);}
.ma4_c00467{transform:matrix(0.274156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274156,0.000000,0.000000,0.250000,0,0);}
.m60_c00467{transform:matrix(0.275105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275105,0.000000,0.000000,0.250000,0,0);}
.m59_c00467{transform:matrix(0.275938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275938,0.000000,0.000000,0.250000,0,0);}
.mf_c00467{transform:matrix(0.276838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276838,0.000000,0.000000,0.250000,0,0);}
.m76_c00467{transform:matrix(0.277408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277408,0.000000,0.000000,0.250000,0,0);}
.m3a_c00467{transform:matrix(0.277596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277596,0.000000,0.000000,0.250000,0,0);}
.m28_c00467{transform:matrix(0.278154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278154,0.000000,0.000000,0.250000,0,0);}
.ma7_c00467{transform:matrix(0.278283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278283,0.000000,0.000000,0.250000,0,0);}
.m94_c00467{transform:matrix(0.278429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278429,0.000000,0.000000,0.250000,0,0);}
.m84_c00467{transform:matrix(0.278587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278587,0.000000,0.000000,0.250000,0,0);}
.m9e_c00467{transform:matrix(0.278670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278670,0.000000,0.000000,0.250000,0,0);}
.m2d_c00467{transform:matrix(0.279941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279941,0.000000,0.000000,0.250000,0,0);}
.m1f_c00467{transform:matrix(0.281337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281337,0.000000,0.000000,0.250000,0,0);}
.m86_c00467{transform:matrix(0.281837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281837,0.000000,0.000000,0.250000,0,0);}
.m9f_c00467{transform:matrix(0.282070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282070,0.000000,0.000000,0.250000,0,0);}
.mb_c00467{transform:matrix(0.283078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283078,0.000000,0.000000,0.250000,0,0);}
.m53_c00467{transform:matrix(0.285305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285305,0.000000,0.000000,0.250000,0,0);}
.m45_c00467{transform:matrix(0.285778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285778,0.000000,0.000000,0.250000,0,0);}
.m47_c00467{transform:matrix(0.286047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286047,0.000000,0.000000,0.250000,0,0);}
.m11_c00467{transform:matrix(0.286678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286678,0.000000,0.000000,0.250000,0,0);}
.m3c_c00467{transform:matrix(0.287040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287040,0.000000,0.000000,0.250000,0,0);}
.m33_c00467{transform:matrix(0.288541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288541,0.000000,0.000000,0.250000,0,0);}
.m97_c00467{transform:matrix(0.288787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288787,0.000000,0.000000,0.250000,0,0);}
.m13_c00467{transform:matrix(0.288958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288958,0.000000,0.000000,0.250000,0,0);}
.m4a_c00467{transform:matrix(0.289045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289045,0.000000,0.000000,0.250000,0,0);}
.m63_c00467{transform:matrix(0.289049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289049,0.000000,0.000000,0.250000,0,0);}
.m95_c00467{transform:matrix(0.290104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290104,0.000000,0.000000,0.250000,0,0);}
.m1a_c00467{transform:matrix(0.291446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291446,0.000000,0.000000,0.250000,0,0);}
.m21_c00467{transform:matrix(0.291777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291777,0.000000,0.000000,0.250000,0,0);}
.m9c_c00467{transform:matrix(0.292315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292315,0.000000,0.000000,0.250000,0,0);}
.ma8_c00467{transform:matrix(0.292684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292684,0.000000,0.000000,0.250000,0,0);}
.m91_c00467{transform:matrix(0.293396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293396,0.000000,0.000000,0.250000,0,0);}
.m3_c00467{transform:matrix(0.294237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294237,0.000000,0.000000,0.250000,0,0);}
.m41_c00467{transform:matrix(0.295266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295266,0.000000,0.000000,0.250000,0,0);}
.m3b_c00467{transform:matrix(0.295346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295346,0.000000,0.000000,0.250000,0,0);}
.m9b_c00467{transform:matrix(0.295546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295546,0.000000,0.000000,0.250000,0,0);}
.m1e_c00467{transform:matrix(0.295724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295724,0.000000,0.000000,0.250000,0,0);}
.m5_c00467{transform:matrix(0.296114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296114,0.000000,0.000000,0.250000,0,0);}
.m16_c00467{transform:matrix(0.297061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297061,0.000000,0.000000,0.250000,0,0);}
.m8d_c00467{transform:matrix(0.297210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297210,0.000000,0.000000,0.250000,0,0);}
.m9d_c00467{transform:matrix(0.297405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297405,0.000000,0.000000,0.250000,0,0);}
.m25_c00467{transform:matrix(0.297509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297509,0.000000,0.000000,0.250000,0,0);}
.m14_c00467{transform:matrix(0.297763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297763,0.000000,0.000000,0.250000,0,0);}
.m20_c00467{transform:matrix(0.298041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298041,0.000000,0.000000,0.250000,0,0);}
.m1d_c00467{transform:matrix(0.298640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298640,0.000000,0.000000,0.250000,0,0);}
.m27_c00467{transform:matrix(0.298692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298692,0.000000,0.000000,0.250000,0,0);}
.m52_c00467{transform:matrix(0.300037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300037,0.000000,0.000000,0.250000,0,0);}
.ma6_c00467{transform:matrix(0.301123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301123,0.000000,0.000000,0.250000,0,0);}
.m88_c00467{transform:matrix(0.301390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301390,0.000000,0.000000,0.250000,0,0);}
.md_c00467{transform:matrix(0.302098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302098,0.000000,0.000000,0.250000,0,0);}
.m31_c00467{transform:matrix(0.304356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304356,0.000000,0.000000,0.250000,0,0);}
.m8b_c00467{transform:matrix(0.304548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304548,0.000000,0.000000,0.250000,0,0);}
.m90_c00467{transform:matrix(0.305341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305341,0.000000,0.000000,0.250000,0,0);}
.m98_c00467{transform:matrix(0.305484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305484,0.000000,0.000000,0.250000,0,0);}
.ma5_c00467{transform:matrix(0.312026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312026,0.000000,0.000000,0.250000,0,0);}
.ma1_c00467{transform:matrix(0.314086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314086,0.000000,0.000000,0.250000,0,0);}
.m89_c00467{transform:matrix(0.314107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314107,0.000000,0.000000,0.250000,0,0);}
.m3e_c00467{transform:matrix(0.314476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314476,0.000000,0.000000,0.250000,0,0);}
.m8c_c00467{transform:matrix(0.315802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315802,0.000000,0.000000,0.250000,0,0);}
.m4e_c00467{transform:matrix(0.319407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319407,0.000000,0.000000,0.250000,0,0);}
.m29_c00467{transform:matrix(0.321845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321845,0.000000,0.000000,0.250000,0,0);}
.m12_c00467{transform:matrix(0.325361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325361,0.000000,0.000000,0.250000,0,0);}
.m4f_c00467{transform:matrix(0.326629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326629,0.000000,0.000000,0.250000,0,0);}
.m4b_c00467{transform:matrix(0.327454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327454,0.000000,0.000000,0.250000,0,0);}
.m9a_c00467{transform:matrix(0.327829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327829,0.000000,0.000000,0.250000,0,0);}
.m4d_c00467{transform:matrix(0.333549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333549,0.000000,0.000000,0.250000,0,0);}
.m19_c00467{transform:matrix(0.334670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334670,0.000000,0.000000,0.250000,0,0);}
.m2a_c00467{transform:matrix(0.336368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336368,0.000000,0.000000,0.250000,0,0);}
.m17_c00467{transform:matrix(0.342727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342727,0.000000,0.000000,0.250000,0,0);}
.m55_c00467{transform:matrix(0.342777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342777,0.000000,0.000000,0.250000,0,0);}
.m26_c00467{transform:matrix(0.347254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347254,0.000000,0.000000,0.250000,0,0);}
.m87_c00467{transform:matrix(0.351995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351995,0.000000,0.000000,0.250000,0,0);}
.m79_c00467{transform:matrix(0.357264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357264,0.000000,0.000000,0.250000,0,0);}
.m5e_c00467{transform:matrix(0.357454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357454,0.000000,0.000000,0.250000,0,0);}
.m1b_c00467{transform:matrix(0.358980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358980,0.000000,0.000000,0.250000,0,0);}
.m9_c00467{transform:matrix(0.360642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360642,0.000000,0.000000,0.250000,0,0);}
.m10_c00467{transform:matrix(0.372276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372276,0.000000,0.000000,0.250000,0,0);}
.m61_c00467{transform:matrix(0.373079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373079,0.000000,0.000000,0.250000,0,0);}
.m5b_c00467{transform:matrix(0.373690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373690,0.000000,0.000000,0.250000,0,0);}
.m24_c00467{transform:matrix(0.390139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390139,0.000000,0.000000,0.250000,0,0);}
.m40_c00467{transform:matrix(0.405939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405939,0.000000,0.000000,0.250000,0,0);}
.v0_c00467{vertical-align:0.000000px;}
.lsa_c00467{letter-spacing:-3.257100px;}
.ls1f_c00467{letter-spacing:-2.945250px;}
.ls5_c00467{letter-spacing:-2.841300px;}
.ls1d_c00467{letter-spacing:-2.557177px;}
.ls2c_c00467{letter-spacing:-2.508667px;}
.ls24_c00467{letter-spacing:-2.494800px;}
.ls21_c00467{letter-spacing:-2.425500px;}
.ls2e_c00467{letter-spacing:-2.335417px;}
.ls32_c00467{letter-spacing:-2.307690px;}
.ls27_c00467{letter-spacing:-2.217600px;}
.ls23_c00467{letter-spacing:-2.155230px;}
.ls30_c00467{letter-spacing:-2.099790px;}
.ls2b_c00467{letter-spacing:-2.092867px;}
.ls31_c00467{letter-spacing:-1.912086px;}
.ls15_c00467{letter-spacing:-1.530286px;}
.ls34_c00467{letter-spacing:-1.427580px;}
.ls37_c00467{letter-spacing:-0.974160px;}
.ls2a_c00467{letter-spacing:-0.382417px;}
.ls19_c00467{letter-spacing:-0.332838px;}
.ls1_c00467{letter-spacing:0.000000px;}
.ls0_c00467{letter-spacing:1.282644px;}
.ls1a_c00467{letter-spacing:1.396296px;}
.ls18_c00467{letter-spacing:2.216214px;}
.ls14_c00467{letter-spacing:2.589642px;}
.ls1b_c00467{letter-spacing:2.791810px;}
.ls2f_c00467{letter-spacing:2.855881px;}
.lsb_c00467{letter-spacing:3.276900px;}
.ls26_c00467{letter-spacing:3.296700px;}
.ls33_c00467{letter-spacing:3.306610px;}
.ls35_c00467{letter-spacing:3.360852px;}
.ls36_c00467{letter-spacing:3.405610px;}
.lsf_c00467{letter-spacing:3.458268px;}
.ls20_c00467{letter-spacing:3.465000px;}
.ls8_c00467{letter-spacing:3.474900px;}
.lse_c00467{letter-spacing:3.484810px;}
.ls1c_c00467{letter-spacing:3.524400px;}
.ls29_c00467{letter-spacing:3.663000px;}
.ls13_c00467{letter-spacing:3.722400px;}
.lsd_c00467{letter-spacing:3.752110px;}
.ls17_c00467{letter-spacing:3.791700px;}
.ls16_c00467{letter-spacing:3.839814px;}
.ls10_c00467{letter-spacing:3.880810px;}
.ls9_c00467{letter-spacing:3.945348px;}
.ls7_c00467{letter-spacing:4.010292px;}
.ls4_c00467{letter-spacing:4.026845px;}
.ls6_c00467{letter-spacing:4.059000px;}
.ls3_c00467{letter-spacing:4.415400px;}
.lsc_c00467{letter-spacing:51.321798px;}
.ls25_c00467{letter-spacing:54.172998px;}
.ls2_c00467{letter-spacing:57.024198px;}
.ls12_c00467{letter-spacing:61.300998px;}
.ls11_c00467{letter-spacing:64.152198px;}
.ls28_c00467{letter-spacing:67.003200px;}
.ls22_c00467{letter-spacing:72.705798px;}
.ls2d_c00467{letter-spacing:84.110598px;}
.ls1e_c00467{letter-spacing:95.515398px;}
.sc__c00467{text-shadow:none;}
.sc0_c00467{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00467{-webkit-text-stroke:0px transparent;}
.sc0_c00467{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00467{word-spacing:-21.577644px;}
.ws1_c00467{word-spacing:0.000000px;}
._1_c00467{margin-left:-12.033450px;}
._2_c00467{margin-left:-7.317849px;}
._0_c00467{margin-left:-5.553251px;}
._3_c00467{width:3.718044px;}
.fc0_c00467{color:transparent;}
.fs0_c00467{font-size:22.176000px;}
.fs1_c00467{font-size:22.572000px;}
.fs1b_c00467{font-size:27.720000px;}
.fs29_c00467{font-size:28.314000px;}
.fs8_c00467{font-size:40.788000px;}
.fs9_c00467{font-size:51.321798px;}
.fs1c_c00467{font-size:54.172998px;}
.fs12_c00467{font-size:55.836198px;}
.fs2_c00467{font-size:57.024198px;}
.fs21_c00467{font-size:59.796198px;}
.fs25_c00467{font-size:59.994000px;}
.fse_c00467{font-size:61.300998px;}
.fs19_c00467{font-size:61.578000px;}
.fs1e_c00467{font-size:63.360000px;}
.fsd_c00467{font-size:64.152198px;}
.fs7_c00467{font-size:65.538000px;}
.fs1d_c00467{font-size:65.934000px;}
.fs26_c00467{font-size:66.132198px;}
.fs24_c00467{font-size:66.726198px;}
.fs1f_c00467{font-size:67.003200px;}
.fs28_c00467{font-size:68.112198px;}
.fs17_c00467{font-size:69.300000px;}
.fs5_c00467{font-size:69.498000px;}
.fsb_c00467{font-size:69.696198px;}
.fs13_c00467{font-size:70.488000px;}
.fs1a_c00467{font-size:71.280000px;}
.fs22_c00467{font-size:71.676198px;}
.fs18_c00467{font-size:72.705798px;}
.fs14_c00467{font-size:73.062198px;}
.fs20_c00467{font-size:73.260000px;}
.fsf_c00467{font-size:74.448000px;}
.fs27_c00467{font-size:74.844000px;}
.fsa_c00467{font-size:75.042198px;}
.fs11_c00467{font-size:75.834000px;}
.fsc_c00467{font-size:77.616198px;}
.fs4_c00467{font-size:81.180000px;}
.fs23_c00467{font-size:84.110598px;}
.fs16_c00467{font-size:84.150000px;}
.fs10_c00467{font-size:84.546198px;}
.fs3_c00467{font-size:88.308000px;}
.fs6_c00467{font-size:93.060000px;}
.fs15_c00467{font-size:95.515398px;}
.y0_c00467{bottom:0.000000px;}
.y3_c00467{bottom:56.946585px;}
.y1_c00467{bottom:69.000000px;}
.y2b_c00467{bottom:83.681535px;}
.y2a_c00467{bottom:127.518735px;}
.y29_c00467{bottom:158.881935px;}
.y27_c00467{bottom:190.952985px;}
.y28_c00467{bottom:195.591135px;}
.y26_c00467{bottom:222.677535px;}
.y25_c00467{bottom:254.748585px;}
.y2_c00467{bottom:292.175535px;}
.y23_c00467{bottom:317.479935px;}
.y16_c00467{bottom:338.858985px;}
.y22_c00467{bottom:339.220335px;}
.y21_c00467{bottom:359.178735px;}
.y24_c00467{bottom:360.955785px;}
.y20_c00467{bottom:381.631935px;}
.y1f_c00467{bottom:393.744585px;}
.y15_c00467{bottom:400.159785px;}
.y1d_c00467{bottom:402.654585px;}
.y1e_c00467{bottom:403.728735px;}
.y1c_c00467{bottom:418.697535px;}
.y1b_c00467{bottom:427.958985px;}
.y19_c00467{bottom:448.991535px;}
.y18_c00467{bottom:477.498585px;}
.y1a_c00467{bottom:478.211385px;}
.y14_c00467{bottom:498.526185px;}
.y17_c00467{bottom:499.238985px;}
.y13_c00467{bottom:562.321785px;}
.y12_c00467{bottom:594.046335px;}
.y11_c00467{bottom:617.563785px;}
.y10_c00467{bottom:625.765935px;}
.yf_c00467{bottom:656.772735px;}
.ye_c00467{bottom:719.850585px;}
.yd_c00467{bottom:751.575135px;}
.yc_c00467{bottom:782.581935px;}
.yb_c00467{bottom:815.009385px;}
.ya_c00467{bottom:847.090335px;}
.y9_c00467{bottom:847.798185px;}
.y8_c00467{bottom:879.522735px;}
.y7_c00467{bottom:910.529535px;}
.y6_c00467{bottom:941.892735px;}
.y5_c00467{bottom:1040.966985px;}
.y4_c00467{bottom:1075.181385px;}
.h2_c00467{height:23.128875px;}
.h3_c00467{height:23.541891px;}
.h1d_c00467{height:28.911094px;}
.h2c_c00467{height:29.530617px;}
.hb_c00467{height:34.180317px;}
.h1e_c00467{height:36.079217px;}
.h4_c00467{height:37.978116px;}
.ha_c00467{height:40.031191px;}
.h10_c00467{height:40.826465px;}
.hf_c00467{height:42.725364px;}
.h21_c00467{height:44.624131px;}
.h1a_c00467{height:48.422061px;}
.h25_c00467{height:56.017658px;}
.h14_c00467{height:58.235410px;}
.h28_c00467{height:58.880830px;}
.h20_c00467{height:62.184375px;}
.h23_c00467{height:62.365566px;}
.h17_c00467{height:63.613255px;}
.h1b_c00467{height:64.223930px;}
.h19_c00467{height:68.014160px;}
.h7_c00467{height:68.208486px;}
.h9_c00467{height:68.354086px;}
.hd_c00467{height:68.403007px;}
.h1f_c00467{height:68.767102px;}
.h29_c00467{height:68.973816px;}
.h15_c00467{height:69.180117px;}
.h27_c00467{height:69.593339px;}
.h1c_c00467{height:69.957422px;}
.h24_c00467{height:70.346269px;}
.h2b_c00467{height:71.038894px;}
.h16_c00467{height:71.706552px;}
.h22_c00467{height:71.900684px;}
.h26_c00467{height:72.277734px;}
.h11_c00467{height:73.066641px;}
.h2a_c00467{height:73.455293px;}
.hc_c00467{height:73.649813px;}
.h13_c00467{height:74.426924px;}
.he_c00467{height:76.176054px;}
.h6_c00467{height:79.673730px;}
.h18_c00467{height:82.588623px;}
.h12_c00467{height:82.977470px;}
.h5_c00467{height:86.669473px;}
.h8_c00467{height:91.333301px;}
.h1_c00467{height:1125.000000px;}
.h0_c00467{height:1263.000000px;}
.w1_c00467{width:784.500000px;}
.w0_c00467{width:892.500000px;}
.x0_c00467{left:0.000000px;}
.x1_c00467{left:54.000000px;}
.x3_c00467{left:57.451785px;}
.x2_c00467{left:72.118635px;}
.x4f_c00467{left:98.180385px;}
.x1e_c00467{left:99.610935px;}
.x30_c00467{left:100.848435px;}
.xe_c00467{left:101.882985px;}
.x28_c00467{left:131.360235px;}
.x4a_c00467{left:132.766035px;}
.xf_c00467{left:133.963935px;}
.x44_c00467{left:143.621385px;}
.x3f_c00467{left:154.481685px;}
.x7_c00467{left:156.120135px;}
.x66_c00467{left:165.733035px;}
.x1f_c00467{left:166.757685px;}
.x60_c00467{left:176.029035px;}
.x19_c00467{left:177.137835px;}
.x37_c00467{left:178.513935px;}
.x31_c00467{left:188.191185px;}
.x20_c00467{left:198.086235px;}
.x50_c00467{left:199.516785px;}
.x67_c00467{left:201.189885px;}
.x8_c00467{left:210.931485px;}
.x32_c00467{left:211.980885px;}
.x4b_c00467{left:220.079085px;}
.x10_c00467{left:221.692785px;}
.x21_c00467{left:232.251135px;}
.x4c_c00467{left:241.977885px;}
.x38_c00467{left:243.388635px;}
.x9_c00467{left:254.041035px;}
.x6c_c00467{left:265.039935px;}
.x33_c00467{left:276.014085px;}
.x1a_c00467{left:277.286235px;}
.x68_c00467{left:278.855385px;}
.xa_c00467{left:289.007835px;}
.x61_c00467{left:298.878135px;}
.x51_c00467{left:308.139585px;}
.x1b_c00467{left:309.515685px;}
.x45_c00467{left:310.535385px;}
.x22_c00467{left:320.702685px;}
.x11_c00467{left:322.529235px;}
.x12_c00467{left:331.612485px;}
.x58_c00467{left:339.151335px;}
.x59_c00467{left:342.052035px;}
.x40_c00467{left:344.264685px;}
.x52_c00467{left:353.229135px;}
.x23_c00467{left:354.496335px;}
.x29_c00467{left:355.610085px;}
.x1c_c00467{left:365.114085px;}
.x13_c00467{left:366.698085px;}
.x53_c00467{left:375.929835px;}
.x3d_c00467{left:377.023785px;}
.x5c_c00467{left:387.265335px;}
.x2a_c00467{left:388.354335px;}
.x1d_c00467{left:398.779035px;}
.xb_c00467{left:399.882885px;}
.x14_c00467{left:409.322535px;}
.x34_c00467{left:410.579835px;}
.x2b_c00467{left:420.311535px;}
.x5f_c00467{left:421.549035px;}
.x35_c00467{left:442.502385px;}
.x15_c00467{left:443.705235px;}
.x41_c00467{left:454.545735px;}
.x2c_c00467{left:464.193285px;}
.x24_c00467{left:465.430785px;}
.x3e_c00467{left:467.202885px;}
.x54_c00467{left:468.880935px;}
.xc_c00467{left:475.954485px;}
.x5a_c00467{left:478.741335px;}
.x55_c00467{left:484.334835px;}
.x39_c00467{left:486.299985px;}
.x36_c00467{left:487.413735px;}
.x42_c00467{left:490.646085px;}
.x46_c00467{left:498.229485px;}
.x5d_c00467{left:500.907435px;}
.x5b_c00467{left:505.585185px;}
.x62_c00467{left:509.173935px;}
.x25_c00467{left:510.322335px;}
.x49_c00467{left:516.193035px;}
.x5e_c00467{left:518.762085px;}
.x56_c00467{left:520.459935px;}
.x43_c00467{left:530.840085px;}
.x4d_c00467{left:532.839885px;}
.x6_c00467{left:540.373785px;}
.x47_c00467{left:543.031935px;}
.x2d_c00467{left:553.847685px;}
.x57_c00467{left:555.728685px;}
.x16_c00467{left:564.836685px;}
.x26_c00467{left:566.786985px;}
.x2e_c00467{left:586.136535px;}
.x69_c00467{left:588.037335px;}
.x17_c00467{left:597.140385px;}
.x48_c00467{left:609.703485px;}
.xd_c00467{left:620.727135px;}
.x3a_c00467{left:623.523885px;}
.x63_c00467{left:631.221135px;}
.x3b_c00467{left:653.223885px;}
.x18_c00467{left:675.974085px;}
.x27_c00467{left:686.279985px;}
.x3c_c00467{left:687.463035px;}
.x6a_c00467{left:698.541135px;}
.x4_c00467{left:703.743585px;}
.x4e_c00467{left:708.886635px;}
.x6d_c00467{left:712.836735px;}
.x6b_c00467{left:719.935035px;}
.x2f_c00467{left:727.978785px;}
.x64_c00467{left:730.928985px;}
.x5_c00467{left:736.532385px;}
.x65_c00467{left:754.768185px;}
@media print{
.v0_c00467{vertical-align:0.000000pt;}
.lsa_c00467{letter-spacing:-2.895200pt;}
.ls1f_c00467{letter-spacing:-2.618000pt;}
.ls5_c00467{letter-spacing:-2.525600pt;}
.ls1d_c00467{letter-spacing:-2.273046pt;}
.ls2c_c00467{letter-spacing:-2.229926pt;}
.ls24_c00467{letter-spacing:-2.217600pt;}
.ls21_c00467{letter-spacing:-2.156000pt;}
.ls2e_c00467{letter-spacing:-2.075926pt;}
.ls32_c00467{letter-spacing:-2.051280pt;}
.ls27_c00467{letter-spacing:-1.971200pt;}
.ls23_c00467{letter-spacing:-1.915760pt;}
.ls30_c00467{letter-spacing:-1.866480pt;}
.ls2b_c00467{letter-spacing:-1.860326pt;}
.ls31_c00467{letter-spacing:-1.699632pt;}
.ls15_c00467{letter-spacing:-1.360254pt;}
.ls34_c00467{letter-spacing:-1.268960pt;}
.ls37_c00467{letter-spacing:-0.865920pt;}
.ls2a_c00467{letter-spacing:-0.339926pt;}
.ls19_c00467{letter-spacing:-0.295856pt;}
.ls1_c00467{letter-spacing:0.000000pt;}
.ls0_c00467{letter-spacing:1.140128pt;}
.ls1a_c00467{letter-spacing:1.241152pt;}
.ls18_c00467{letter-spacing:1.969968pt;}
.ls14_c00467{letter-spacing:2.301904pt;}
.ls1b_c00467{letter-spacing:2.481609pt;}
.ls2f_c00467{letter-spacing:2.538561pt;}
.lsb_c00467{letter-spacing:2.912800pt;}
.ls26_c00467{letter-spacing:2.930400pt;}
.ls33_c00467{letter-spacing:2.939209pt;}
.ls35_c00467{letter-spacing:2.987424pt;}
.ls36_c00467{letter-spacing:3.027209pt;}
.lsf_c00467{letter-spacing:3.074016pt;}
.ls20_c00467{letter-spacing:3.080000pt;}
.ls8_c00467{letter-spacing:3.088800pt;}
.lse_c00467{letter-spacing:3.097609pt;}
.ls1c_c00467{letter-spacing:3.132800pt;}
.ls29_c00467{letter-spacing:3.256000pt;}
.ls13_c00467{letter-spacing:3.308800pt;}
.lsd_c00467{letter-spacing:3.335209pt;}
.ls17_c00467{letter-spacing:3.370400pt;}
.ls16_c00467{letter-spacing:3.413168pt;}
.ls10_c00467{letter-spacing:3.449609pt;}
.ls9_c00467{letter-spacing:3.506976pt;}
.ls7_c00467{letter-spacing:3.564704pt;}
.ls4_c00467{letter-spacing:3.579418pt;}
.ls6_c00467{letter-spacing:3.608000pt;}
.ls3_c00467{letter-spacing:3.924800pt;}
.lsc_c00467{letter-spacing:45.619376pt;}
.ls25_c00467{letter-spacing:48.153776pt;}
.ls2_c00467{letter-spacing:50.688176pt;}
.ls12_c00467{letter-spacing:54.489776pt;}
.ls11_c00467{letter-spacing:57.024176pt;}
.ls28_c00467{letter-spacing:59.558400pt;}
.ls22_c00467{letter-spacing:64.627376pt;}
.ls2d_c00467{letter-spacing:74.764976pt;}
.ls1e_c00467{letter-spacing:84.902576pt;}
.ws0_c00467{word-spacing:-19.180128pt;}
.ws1_c00467{word-spacing:0.000000pt;}
._1_c00467{margin-left:-10.696400pt;}
._2_c00467{margin-left:-6.504755pt;}
._0_c00467{margin-left:-4.936223pt;}
._3_c00467{width:3.304928pt;}
.fs0_c00467{font-size:19.712000pt;}
.fs1_c00467{font-size:20.064000pt;}
.fs1b_c00467{font-size:24.640000pt;}
.fs29_c00467{font-size:25.168000pt;}
.fs8_c00467{font-size:36.256000pt;}
.fs9_c00467{font-size:45.619376pt;}
.fs1c_c00467{font-size:48.153776pt;}
.fs12_c00467{font-size:49.632176pt;}
.fs2_c00467{font-size:50.688176pt;}
.fs21_c00467{font-size:53.152176pt;}
.fs25_c00467{font-size:53.328000pt;}
.fse_c00467{font-size:54.489776pt;}
.fs19_c00467{font-size:54.736000pt;}
.fs1e_c00467{font-size:56.320000pt;}
.fsd_c00467{font-size:57.024176pt;}
.fs7_c00467{font-size:58.256000pt;}
.fs1d_c00467{font-size:58.608000pt;}
.fs26_c00467{font-size:58.784176pt;}
.fs24_c00467{font-size:59.312176pt;}
.fs1f_c00467{font-size:59.558400pt;}
.fs28_c00467{font-size:60.544176pt;}
.fs17_c00467{font-size:61.600000pt;}
.fs5_c00467{font-size:61.776000pt;}
.fsb_c00467{font-size:61.952176pt;}
.fs13_c00467{font-size:62.656000pt;}
.fs1a_c00467{font-size:63.360000pt;}
.fs22_c00467{font-size:63.712176pt;}
.fs18_c00467{font-size:64.627376pt;}
.fs14_c00467{font-size:64.944176pt;}
.fs20_c00467{font-size:65.120000pt;}
.fsf_c00467{font-size:66.176000pt;}
.fs27_c00467{font-size:66.528000pt;}
.fsa_c00467{font-size:66.704176pt;}
.fs11_c00467{font-size:67.408000pt;}
.fsc_c00467{font-size:68.992176pt;}
.fs4_c00467{font-size:72.160000pt;}
.fs23_c00467{font-size:74.764976pt;}
.fs16_c00467{font-size:74.800000pt;}
.fs10_c00467{font-size:75.152176pt;}
.fs3_c00467{font-size:78.496000pt;}
.fs6_c00467{font-size:82.720000pt;}
.fs15_c00467{font-size:84.902576pt;}
.y0_c00467{bottom:0.000000pt;}
.y3_c00467{bottom:50.619187pt;}
.y1_c00467{bottom:61.333333pt;}
.y2b_c00467{bottom:74.383587pt;}
.y2a_c00467{bottom:113.349987pt;}
.y29_c00467{bottom:141.228387pt;}
.y27_c00467{bottom:169.735987pt;}
.y28_c00467{bottom:173.858787pt;}
.y26_c00467{bottom:197.935587pt;}
.y25_c00467{bottom:226.443187pt;}
.y2_c00467{bottom:259.711587pt;}
.y23_c00467{bottom:282.204387pt;}
.y16_c00467{bottom:301.207987pt;}
.y22_c00467{bottom:301.529187pt;}
.y21_c00467{bottom:319.269987pt;}
.y24_c00467{bottom:320.849587pt;}
.y20_c00467{bottom:339.228387pt;}
.y1f_c00467{bottom:349.995187pt;}
.y15_c00467{bottom:355.697587pt;}
.y1d_c00467{bottom:357.915187pt;}
.y1e_c00467{bottom:358.869987pt;}
.y1c_c00467{bottom:372.175587pt;}
.y1b_c00467{bottom:380.407987pt;}
.y19_c00467{bottom:399.103587pt;}
.y18_c00467{bottom:424.443187pt;}
.y1a_c00467{bottom:425.076787pt;}
.y14_c00467{bottom:443.134387pt;}
.y17_c00467{bottom:443.767987pt;}
.y13_c00467{bottom:499.841587pt;}
.y12_c00467{bottom:528.041187pt;}
.y11_c00467{bottom:548.945587pt;}
.y10_c00467{bottom:556.236387pt;}
.yf_c00467{bottom:583.797987pt;}
.ye_c00467{bottom:639.867187pt;}
.yd_c00467{bottom:668.066787pt;}
.yc_c00467{bottom:695.628387pt;}
.yb_c00467{bottom:724.452787pt;}
.ya_c00467{bottom:752.969187pt;}
.y9_c00467{bottom:753.598387pt;}
.y8_c00467{bottom:781.797987pt;}
.y7_c00467{bottom:809.359587pt;}
.y6_c00467{bottom:837.237987pt;}
.y5_c00467{bottom:925.303987pt;}
.y4_c00467{bottom:955.716787pt;}
.h2_c00467{height:20.559000pt;}
.h3_c00467{height:20.926125pt;}
.h1d_c00467{height:25.698750pt;}
.h2c_c00467{height:26.249438pt;}
.hb_c00467{height:30.382504pt;}
.h1e_c00467{height:32.070415pt;}
.h4_c00467{height:33.758325pt;}
.ha_c00467{height:35.583281pt;}
.h10_c00467{height:36.290191pt;}
.hf_c00467{height:37.978101pt;}
.h21_c00467{height:39.665894pt;}
.h1a_c00467{height:43.041832pt;}
.h25_c00467{height:49.793474pt;}
.h14_c00467{height:51.764809pt;}
.h28_c00467{height:52.338516pt;}
.h20_c00467{height:55.275000pt;}
.h23_c00467{height:55.436059pt;}
.h17_c00467{height:56.545116pt;}
.h1b_c00467{height:57.087938pt;}
.h19_c00467{height:60.457031pt;}
.h7_c00467{height:60.629766pt;}
.h9_c00467{height:60.759188pt;}
.hd_c00467{height:60.802673pt;}
.h1f_c00467{height:61.126313pt;}
.h29_c00467{height:61.310059pt;}
.h15_c00467{height:61.493438pt;}
.h27_c00467{height:61.860746pt;}
.h1c_c00467{height:62.184375pt;}
.h24_c00467{height:62.530016pt;}
.h2b_c00467{height:63.145684pt;}
.h16_c00467{height:63.739157pt;}
.h22_c00467{height:63.911719pt;}
.h26_c00467{height:64.246875pt;}
.h11_c00467{height:64.948125pt;}
.h2a_c00467{height:65.293594pt;}
.hc_c00467{height:65.466501pt;}
.h13_c00467{height:66.157266pt;}
.he_c00467{height:67.712048pt;}
.h6_c00467{height:70.821094pt;}
.h18_c00467{height:73.412109pt;}
.h12_c00467{height:73.757751pt;}
.h5_c00467{height:77.039531pt;}
.h8_c00467{height:81.185156pt;}
.h1_c00467{height:1000.000000pt;}
.h0_c00467{height:1122.666667pt;}
.w1_c00467{width:697.333333pt;}
.w0_c00467{width:793.333333pt;}
.x0_c00467{left:0.000000pt;}
.x1_c00467{left:48.000000pt;}
.x3_c00467{left:51.068253pt;}
.x2_c00467{left:64.105453pt;}
.x4f_c00467{left:87.271453pt;}
.x1e_c00467{left:88.543053pt;}
.x30_c00467{left:89.643053pt;}
.xe_c00467{left:90.562653pt;}
.x28_c00467{left:116.764653pt;}
.x4a_c00467{left:118.014253pt;}
.xf_c00467{left:119.079053pt;}
.x44_c00467{left:127.663453pt;}
.x3f_c00467{left:137.317053pt;}
.x7_c00467{left:138.773453pt;}
.x66_c00467{left:147.318253pt;}
.x1f_c00467{left:148.229053pt;}
.x60_c00467{left:156.470253pt;}
.x19_c00467{left:157.455853pt;}
.x37_c00467{left:158.679053pt;}
.x31_c00467{left:167.281053pt;}
.x20_c00467{left:176.076653pt;}
.x50_c00467{left:177.348253pt;}
.x67_c00467{left:178.835453pt;}
.x8_c00467{left:187.494653pt;}
.x32_c00467{left:188.427453pt;}
.x4b_c00467{left:195.625853pt;}
.x10_c00467{left:197.060253pt;}
.x21_c00467{left:206.445453pt;}
.x4c_c00467{left:215.091453pt;}
.x38_c00467{left:216.345453pt;}
.x9_c00467{left:225.814253pt;}
.x6c_c00467{left:235.591053pt;}
.x33_c00467{left:245.345853pt;}
.x1a_c00467{left:246.476653pt;}
.x68_c00467{left:247.871453pt;}
.xa_c00467{left:256.895853pt;}
.x61_c00467{left:265.669453pt;}
.x51_c00467{left:273.901853pt;}
.x1b_c00467{left:275.125053pt;}
.x45_c00467{left:276.031453pt;}
.x22_c00467{left:285.069053pt;}
.x11_c00467{left:286.692653pt;}
.x12_c00467{left:294.766653pt;}
.x58_c00467{left:301.467853pt;}
.x59_c00467{left:304.046253pt;}
.x40_c00467{left:306.013053pt;}
.x52_c00467{left:313.981453pt;}
.x23_c00467{left:315.107853pt;}
.x29_c00467{left:316.097853pt;}
.x1c_c00467{left:324.545853pt;}
.x13_c00467{left:325.953853pt;}
.x53_c00467{left:334.159853pt;}
.x3d_c00467{left:335.132253pt;}
.x5c_c00467{left:344.235853pt;}
.x2a_c00467{left:345.203853pt;}
.x1d_c00467{left:354.470253pt;}
.xb_c00467{left:355.451453pt;}
.x14_c00467{left:363.842253pt;}
.x34_c00467{left:364.959853pt;}
.x2b_c00467{left:373.610253pt;}
.x5f_c00467{left:374.710253pt;}
.x35_c00467{left:393.335453pt;}
.x15_c00467{left:394.404653pt;}
.x41_c00467{left:404.040653pt;}
.x2c_c00467{left:412.616253pt;}
.x24_c00467{left:413.716253pt;}
.x3e_c00467{left:415.291453pt;}
.x54_c00467{left:416.783053pt;}
.xc_c00467{left:423.070653pt;}
.x5a_c00467{left:425.547853pt;}
.x55_c00467{left:430.519853pt;}
.x39_c00467{left:432.266653pt;}
.x36_c00467{left:433.256653pt;}
.x42_c00467{left:436.129853pt;}
.x46_c00467{left:442.870653pt;}
.x5d_c00467{left:445.251053pt;}
.x5b_c00467{left:449.409053pt;}
.x62_c00467{left:452.599053pt;}
.x25_c00467{left:453.619853pt;}
.x49_c00467{left:458.838253pt;}
.x5e_c00467{left:461.121853pt;}
.x56_c00467{left:462.631053pt;}
.x43_c00467{left:471.857853pt;}
.x4d_c00467{left:473.635453pt;}
.x6_c00467{left:480.332253pt;}
.x47_c00467{left:482.695053pt;}
.x2d_c00467{left:492.309053pt;}
.x57_c00467{left:493.981053pt;}
.x16_c00467{left:502.077053pt;}
.x26_c00467{left:503.810653pt;}
.x2e_c00467{left:521.010253pt;}
.x69_c00467{left:522.699853pt;}
.x17_c00467{left:530.791453pt;}
.x48_c00467{left:541.958653pt;}
.xd_c00467{left:551.757453pt;}
.x3a_c00467{left:554.243453pt;}
.x63_c00467{left:561.085453pt;}
.x3b_c00467{left:580.643453pt;}
.x18_c00467{left:600.865853pt;}
.x27_c00467{left:610.026653pt;}
.x3c_c00467{left:611.078253pt;}
.x6a_c00467{left:620.925453pt;}
.x4_c00467{left:625.549853pt;}
.x4e_c00467{left:630.121453pt;}
.x6d_c00467{left:633.632653pt;}
.x6b_c00467{left:639.942253pt;}
.x2f_c00467{left:647.092253pt;}
.x64_c00467{left:649.714653pt;}
.x5_c00467{left:654.695453pt;}
.x65_c00467{left:670.905053pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bcea79e7d0a7f0c9d758e4a9.woff2')format("woff");}.ff1_c00468{font-family:ff1_c00468;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00468;src:url('chunks/assets/font_0553509740648f4712ae4a50.woff2')format("woff");}.ff2_c00468{font-family:ff2_c00468;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00468;src:url('chunks/assets/font_40c92bdc7d649abbfe11c40b.woff2')format("woff");}.ff3_c00468{font-family:ff3_c00468;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00468{transform:matrix(0.113638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113638,0.000000,0.000000,0.250000,0,0);}
.m33_c00468{transform:matrix(0.181130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181130,0.000000,0.000000,0.250000,0,0);}
.m4d_c00468{transform:matrix(0.191071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191071,0.000000,0.000000,0.250000,0,0);}
.m14_c00468{transform:matrix(0.191921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191921,0.000000,0.000000,0.250000,0,0);}
.m7e_c00468{transform:matrix(0.210070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210070,0.000000,0.000000,0.250000,0,0);}
.m5f_c00468{transform:matrix(0.212797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212797,0.000000,0.000000,0.250000,0,0);}
.m84_c00468{transform:matrix(0.224509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224509,0.000000,0.000000,0.250000,0,0);}
.m12_c00468{transform:matrix(0.227238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227238,0.000000,0.000000,0.250000,0,0);}
.m16_c00468{transform:matrix(0.231740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231740,0.000000,0.000000,0.250000,0,0);}
.m13_c00468{transform:matrix(0.243585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243585,0.000000,0.000000,0.250000,0,0);}
.m0_c00468{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m87_c00468{transform:matrix(0.250459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250459,0.000000,0.000000,0.250000,0,0);}
.m29_c00468{transform:matrix(0.250825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250825,0.000000,0.000000,0.250000,0,0);}
.m26_c00468{transform:matrix(0.251385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251385,0.000000,0.000000,0.250000,0,0);}
.m27_c00468{transform:matrix(0.251954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251954,0.000000,0.000000,0.250000,0,0);}
.m4e_c00468{transform:matrix(0.252519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252519,0.000000,0.000000,0.250000,0,0);}
.mae_c00468{transform:matrix(0.252884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252884,0.000000,0.000000,0.250000,0,0);}
.m44_c00468{transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);}
.m1a_c00468{transform:matrix(0.253579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253579,0.000000,0.000000,0.250000,0,0);}
.m8_c00468{transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);}
.m8c_c00468{transform:matrix(0.254203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254203,0.000000,0.000000,0.250000,0,0);}
.m9e_c00468{transform:matrix(0.254475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254475,0.000000,0.000000,0.250000,0,0);}
.m4b_c00468{transform:matrix(0.255493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255493,0.000000,0.000000,0.250000,0,0);}
.me_c00468{transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);}
.mc_c00468{transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);}
.m90_c00468{transform:matrix(0.257334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257334,0.000000,0.000000,0.250000,0,0);}
.m3f_c00468{transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);}
.m8e_c00468{transform:matrix(0.258407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258407,0.000000,0.000000,0.250000,0,0);}
.m99_c00468{transform:matrix(0.258788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258788,0.000000,0.000000,0.250000,0,0);}
.m1d_c00468{transform:matrix(0.259283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259283,0.000000,0.000000,0.250000,0,0);}
.m2e_c00468{transform:matrix(0.259376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259376,0.000000,0.000000,0.250000,0,0);}
.m15_c00468{transform:matrix(0.259544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259544,0.000000,0.000000,0.250000,0,0);}
.m5a_c00468{transform:matrix(0.260353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260353,0.000000,0.000000,0.250000,0,0);}
.m6d_c00468{transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);}
.m98_c00468{transform:matrix(0.261425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261425,0.000000,0.000000,0.250000,0,0);}
.m5c_c00468{transform:matrix(0.261958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261958,0.000000,0.000000,0.250000,0,0);}
.m66_c00468{transform:matrix(0.262033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262033,0.000000,0.000000,0.250000,0,0);}
.m32_c00468{transform:matrix(0.262285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262285,0.000000,0.000000,0.250000,0,0);}
.m4c_c00468{transform:matrix(0.262658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262658,0.000000,0.000000,0.250000,0,0);}
.m70_c00468{transform:matrix(0.262973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262973,0.000000,0.000000,0.250000,0,0);}
.md_c00468{transform:matrix(0.263931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263931,0.000000,0.000000,0.250000,0,0);}
.m7c_c00468{transform:matrix(0.263979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263979,0.000000,0.000000,0.250000,0,0);}
.m7b_c00468{transform:matrix(0.264086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264086,0.000000,0.000000,0.250000,0,0);}
.m80_c00468{transform:matrix(0.264693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264693,0.000000,0.000000,0.250000,0,0);}
.m57_c00468{transform:matrix(0.264852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264852,0.000000,0.000000,0.250000,0,0);}
.m1f_c00468{transform:matrix(0.266448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266448,0.000000,0.000000,0.250000,0,0);}
.m8f_c00468{transform:matrix(0.266570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266570,0.000000,0.000000,0.250000,0,0);}
.m97_c00468{transform:matrix(0.268731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268731,0.000000,0.000000,0.250000,0,0);}
.ma4_c00468{transform:matrix(0.269390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269390,0.000000,0.000000,0.250000,0,0);}
.m61_c00468{transform:matrix(0.269496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269496,0.000000,0.000000,0.250000,0,0);}
.m2b_c00468{transform:matrix(0.271033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271033,0.000000,0.000000,0.250000,0,0);}
.m34_c00468{transform:matrix(0.271493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271493,0.000000,0.000000,0.250000,0,0);}
.m91_c00468{transform:matrix(0.271729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271729,0.000000,0.000000,0.250000,0,0);}
.m6c_c00468{transform:matrix(0.271747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271747,0.000000,0.000000,0.250000,0,0);}
.m77_c00468{transform:matrix(0.271851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271851,0.000000,0.000000,0.250000,0,0);}
.m5b_c00468{transform:matrix(0.272281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272281,0.000000,0.000000,0.250000,0,0);}
.m30_c00468{transform:matrix(0.272535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272535,0.000000,0.000000,0.250000,0,0);}
.m25_c00468{transform:matrix(0.272612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272612,0.000000,0.000000,0.250000,0,0);}
.m11_c00468{transform:matrix(0.273486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273486,0.000000,0.000000,0.250000,0,0);}
.m38_c00468{transform:matrix(0.273625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273625,0.000000,0.000000,0.250000,0,0);}
.m95_c00468{transform:matrix(0.274297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274297,0.000000,0.000000,0.250000,0,0);}
.m20_c00468{transform:matrix(0.274453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274453,0.000000,0.000000,0.250000,0,0);}
.m3a_c00468{transform:matrix(0.274757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274757,0.000000,0.000000,0.250000,0,0);}
.m28_c00468{transform:matrix(0.275303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275303,0.000000,0.000000,0.250000,0,0);}
.m58_c00468{transform:matrix(0.275836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275836,0.000000,0.000000,0.250000,0,0);}
.m22_c00468{transform:matrix(0.275854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275854,0.000000,0.000000,0.250000,0,0);}
.m50_c00468{transform:matrix(0.276456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276456,0.000000,0.000000,0.250000,0,0);}
.ma3_c00468{transform:matrix(0.276697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276697,0.000000,0.000000,0.250000,0,0);}
.mb_c00468{transform:matrix(0.277724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277724,0.000000,0.000000,0.250000,0,0);}
.m64_c00468{transform:matrix(0.277826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277826,0.000000,0.000000,0.250000,0,0);}
.m21_c00468{transform:matrix(0.278082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278082,0.000000,0.000000,0.250000,0,0);}
.m6e_c00468{transform:matrix(0.278394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278394,0.000000,0.000000,0.250000,0,0);}
.m56_c00468{transform:matrix(0.278443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278443,0.000000,0.000000,0.250000,0,0);}
.ma5_c00468{transform:matrix(0.278558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278558,0.000000,0.000000,0.250000,0,0);}
.m74_c00468{transform:matrix(0.279087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279087,0.000000,0.000000,0.250000,0,0);}
.m78_c00468{transform:matrix(0.279195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279195,0.000000,0.000000,0.250000,0,0);}
.mab_c00468{transform:matrix(0.279292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279292,0.000000,0.000000,0.250000,0,0);}
.m85_c00468{transform:matrix(0.279593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279593,0.000000,0.000000,0.250000,0,0);}
.m71_c00468{transform:matrix(0.280207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280207,0.000000,0.000000,0.250000,0,0);}
.ma8_c00468{transform:matrix(0.280373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280373,0.000000,0.000000,0.250000,0,0);}
.m55_c00468{transform:matrix(0.280468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280468,0.000000,0.000000,0.250000,0,0);}
.m7a_c00468{transform:matrix(0.280954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280954,0.000000,0.000000,0.250000,0,0);}
.m2d_c00468{transform:matrix(0.280981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280981,0.000000,0.000000,0.250000,0,0);}
.m2f_c00468{transform:matrix(0.281073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281073,0.000000,0.000000,0.250000,0,0);}
.m3c_c00468{transform:matrix(0.281139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281139,0.000000,0.000000,0.250000,0,0);}
.m49_c00468{transform:matrix(0.281249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281249,0.000000,0.000000,0.250000,0,0);}
.m69_c00468{transform:matrix(0.282079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282079,0.000000,0.000000,0.250000,0,0);}
.ma1_c00468{transform:matrix(0.283027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283027,0.000000,0.000000,0.250000,0,0);}
.m60_c00468{transform:matrix(0.283152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283152,0.000000,0.000000,0.250000,0,0);}
.m92_c00468{transform:matrix(0.283747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283747,0.000000,0.000000,0.250000,0,0);}
.m86_c00468{transform:matrix(0.283752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283752,0.000000,0.000000,0.250000,0,0);}
.m24_c00468{transform:matrix(0.284185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284185,0.000000,0.000000,0.250000,0,0);}
.m1c_c00468{transform:matrix(0.284485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284485,0.000000,0.000000,0.250000,0,0);}
.m6f_c00468{transform:matrix(0.285320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285320,0.000000,0.000000,0.250000,0,0);}
.m9b_c00468{transform:matrix(0.285447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285447,0.000000,0.000000,0.250000,0,0);}
.m23_c00468{transform:matrix(0.285467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285467,0.000000,0.000000,0.250000,0,0);}
.mad_c00468{transform:matrix(0.286217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286217,0.000000,0.000000,0.250000,0,0);}
.m9_c00468{transform:matrix(0.286268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286268,0.000000,0.000000,0.250000,0,0);}
.m6_c00468{transform:matrix(0.286503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286503,0.000000,0.000000,0.250000,0,0);}
.maa_c00468{transform:matrix(0.286993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286993,0.000000,0.000000,0.250000,0,0);}
.m31_c00468{transform:matrix(0.287350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287350,0.000000,0.000000,0.250000,0,0);}
.m51_c00468{transform:matrix(0.288363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288363,0.000000,0.000000,0.250000,0,0);}
.m53_c00468{transform:matrix(0.288567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288567,0.000000,0.000000,0.250000,0,0);}
.m40_c00468{transform:matrix(0.288735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288735,0.000000,0.000000,0.250000,0,0);}
.m42_c00468{transform:matrix(0.288889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288889,0.000000,0.000000,0.250000,0,0);}
.maf_c00468{transform:matrix(0.288989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288989,0.000000,0.000000,0.250000,0,0);}
.m18_c00468{transform:matrix(0.290169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290169,0.000000,0.000000,0.250000,0,0);}
.m47_c00468{transform:matrix(0.290517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290517,0.000000,0.000000,0.250000,0,0);}
.m7_c00468{transform:matrix(0.290693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290693,0.000000,0.000000,0.250000,0,0);}
.m6a_c00468{transform:matrix(0.291014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291014,0.000000,0.000000,0.250000,0,0);}
.m68_c00468{transform:matrix(0.291263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291263,0.000000,0.000000,0.250000,0,0);}
.mf_c00468{transform:matrix(0.291684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291684,0.000000,0.000000,0.250000,0,0);}
.m5e_c00468{transform:matrix(0.293880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293880,0.000000,0.000000,0.250000,0,0);}
.m1e_c00468{transform:matrix(0.294198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294198,0.000000,0.000000,0.250000,0,0);}
.m94_c00468{transform:matrix(0.294971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294971,0.000000,0.000000,0.250000,0,0);}
.ma2_c00468{transform:matrix(0.294973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294973,0.000000,0.000000,0.250000,0,0);}
.m3_c00468{transform:matrix(0.295013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295013,0.000000,0.000000,0.250000,0,0);}
.m63_c00468{transform:matrix(0.295415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295415,0.000000,0.000000,0.250000,0,0);}
.m3e_c00468{transform:matrix(0.296173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296173,0.000000,0.000000,0.250000,0,0);}
.m3d_c00468{transform:matrix(0.296595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296595,0.000000,0.000000,0.250000,0,0);}
.m39_c00468{transform:matrix(0.297477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297477,0.000000,0.000000,0.250000,0,0);}
.m67_c00468{transform:matrix(0.298286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298286,0.000000,0.000000,0.250000,0,0);}
.m7d_c00468{transform:matrix(0.298505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298505,0.000000,0.000000,0.250000,0,0);}
.m4f_c00468{transform:matrix(0.299450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299450,0.000000,0.000000,0.250000,0,0);}
.m35_c00468{transform:matrix(0.300497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300497,0.000000,0.000000,0.250000,0,0);}
.m96_c00468{transform:matrix(0.301905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301905,0.000000,0.000000,0.250000,0,0);}
.m54_c00468{transform:matrix(0.302358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302358,0.000000,0.000000,0.250000,0,0);}
.ma9_c00468{transform:matrix(0.303648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303648,0.000000,0.000000,0.250000,0,0);}
.m10_c00468{transform:matrix(0.304775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304775,0.000000,0.000000,0.250000,0,0);}
.m9f_c00468{transform:matrix(0.305767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305767,0.000000,0.000000,0.250000,0,0);}
.m8a_c00468{transform:matrix(0.306455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306455,0.000000,0.000000,0.250000,0,0);}
.m36_c00468{transform:matrix(0.306566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306566,0.000000,0.000000,0.250000,0,0);}
.m5d_c00468{transform:matrix(0.306605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306605,0.000000,0.000000,0.250000,0,0);}
.m4_c00468{transform:matrix(0.306931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306931,0.000000,0.000000,0.250000,0,0);}
.m73_c00468{transform:matrix(0.306965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306965,0.000000,0.000000,0.250000,0,0);}
.m89_c00468{transform:matrix(0.307760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307760,0.000000,0.000000,0.250000,0,0);}
.m72_c00468{transform:matrix(0.308539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308539,0.000000,0.000000,0.250000,0,0);}
.m9a_c00468{transform:matrix(0.308940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308940,0.000000,0.000000,0.250000,0,0);}
.m6b_c00468{transform:matrix(0.309519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309519,0.000000,0.000000,0.250000,0,0);}
.mac_c00468{transform:matrix(0.310115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310115,0.000000,0.000000,0.250000,0,0);}
.ma0_c00468{transform:matrix(0.310880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310880,0.000000,0.000000,0.250000,0,0);}
.mb0_c00468{transform:matrix(0.311315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311315,0.000000,0.000000,0.250000,0,0);}
.m2c_c00468{transform:matrix(0.311571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311571,0.000000,0.000000,0.250000,0,0);}
.m17_c00468{transform:matrix(0.312161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312161,0.000000,0.000000,0.250000,0,0);}
.m88_c00468{transform:matrix(0.312255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312255,0.000000,0.000000,0.250000,0,0);}
.m8b_c00468{transform:matrix(0.312938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312938,0.000000,0.000000,0.250000,0,0);}
.m83_c00468{transform:matrix(0.313016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313016,0.000000,0.000000,0.250000,0,0);}
.mb1_c00468{transform:matrix(0.313479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313479,0.000000,0.000000,0.250000,0,0);}
.m3b_c00468{transform:matrix(0.313764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313764,0.000000,0.000000,0.250000,0,0);}
.m43_c00468{transform:matrix(0.314208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314208,0.000000,0.000000,0.250000,0,0);}
.m46_c00468{transform:matrix(0.314269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314269,0.000000,0.000000,0.250000,0,0);}
.m37_c00468{transform:matrix(0.314374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314374,0.000000,0.000000,0.250000,0,0);}
.m48_c00468{transform:matrix(0.314374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314374,0.000000,0.000000,0.250000,0,0);}
.m79_c00468{transform:matrix(0.314798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314798,0.000000,0.000000,0.250000,0,0);}
.m65_c00468{transform:matrix(0.316440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316440,0.000000,0.000000,0.250000,0,0);}
.m1b_c00468{transform:matrix(0.317323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317323,0.000000,0.000000,0.250000,0,0);}
.m5_c00468{transform:matrix(0.317544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317544,0.000000,0.000000,0.250000,0,0);}
.m9d_c00468{transform:matrix(0.319585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319585,0.000000,0.000000,0.250000,0,0);}
.m59_c00468{transform:matrix(0.320391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320391,0.000000,0.000000,0.250000,0,0);}
.m93_c00468{transform:matrix(0.322037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322037,0.000000,0.000000,0.250000,0,0);}
.ma_c00468{transform:matrix(0.322065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322065,0.000000,0.000000,0.250000,0,0);}
.m75_c00468{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);}
.m8d_c00468{transform:matrix(0.324772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324772,0.000000,0.000000,0.250000,0,0);}
.m41_c00468{transform:matrix(0.326105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326105,0.000000,0.000000,0.250000,0,0);}
.m2_c00468{transform:matrix(0.326664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326664,0.000000,0.000000,0.250000,0,0);}
.m62_c00468{transform:matrix(0.326810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326810,0.000000,0.000000,0.250000,0,0);}
.m4a_c00468{transform:matrix(0.331929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331929,0.000000,0.000000,0.250000,0,0);}
.m45_c00468{transform:matrix(0.333044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333044,0.000000,0.000000,0.250000,0,0);}
.m76_c00468{transform:matrix(0.334128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334128,0.000000,0.000000,0.250000,0,0);}
.m9c_c00468{transform:matrix(0.334394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334394,0.000000,0.000000,0.250000,0,0);}
.m82_c00468{transform:matrix(0.335786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335786,0.000000,0.000000,0.250000,0,0);}
.ma6_c00468{transform:matrix(0.340449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340449,0.000000,0.000000,0.250000,0,0);}
.m81_c00468{transform:matrix(0.341477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341477,0.000000,0.000000,0.250000,0,0);}
.m7f_c00468{transform:matrix(0.341545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341545,0.000000,0.000000,0.250000,0,0);}
.m19_c00468{transform:matrix(0.344194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344194,0.000000,0.000000,0.250000,0,0);}
.ma7_c00468{transform:matrix(0.358891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358891,0.000000,0.000000,0.250000,0,0);}
.m52_c00468{transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);}
.m2a_c00468{transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);}
.v0_c00468{vertical-align:0.000000px;}
.lsa_c00468{letter-spacing:-4.712400px;}
.ls6_c00468{letter-spacing:-2.855167px;}
.ls13_c00468{letter-spacing:-2.488074px;}
.ls16_c00468{letter-spacing:-2.324922px;}
.ls9_c00468{letter-spacing:-1.558105px;}
.ls4_c00468{letter-spacing:-0.081576px;}
.ls1_c00468{letter-spacing:0.000000px;}
.ls12_c00468{letter-spacing:0.546561px;}
.ls15_c00468{letter-spacing:0.840235px;}
.ls11_c00468{letter-spacing:1.957829px;}
.lsc_c00468{letter-spacing:2.178084px;}
.ls5_c00468{letter-spacing:2.218873px;}
.ls0_c00468{letter-spacing:2.847009px;}
.ls8_c00468{letter-spacing:3.091738px;}
.ls10_c00468{letter-spacing:3.263048px;}
.lse_c00468{letter-spacing:3.311994px;}
.ls7_c00468{letter-spacing:3.603610px;}
.lsb_c00468{letter-spacing:3.638298px;}
.ls17_c00468{letter-spacing:4.021707px;}
.ls3_c00468{letter-spacing:4.078810px;}
.ls14_c00468{letter-spacing:4.395610px;}
.ls2_c00468{letter-spacing:31.363200px;}
.lsd_c00468{letter-spacing:49.896198px;}
.lsf_c00468{letter-spacing:51.321798px;}
.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;}
._1_c00468{width:17.922243px;}
._0_c00468{width:25.573788px;}
.fc0_c00468{color:transparent;}
.fs2_c00468{font-size:31.363200px;}
.fs1_c00468{font-size:34.650000px;}
.fs6_c00468{font-size:40.788000px;}
.fs9_c00468{font-size:49.896198px;}
.fsa_c00468{font-size:51.321798px;}
.fs0_c00468{font-size:66.528000px;}
.fs5_c00468{font-size:72.072198px;}
.fs7_c00468{font-size:74.844000px;}
.fs4_c00468{font-size:76.824000px;}
.fs3_c00468{font-size:81.576198px;}
.fsb_c00468{font-size:87.912198px;}
.fs8_c00468{font-size:134.640000px;}
.y0_c00468{bottom:0.000000px;}
.y1_c00468{bottom:76.500000px;}
.y1e_c00468{bottom:137.477370px;}
.y1d_c00468{bottom:169.914720px;}
.y1c_c00468{bottom:202.703520px;}
.y1b_c00468{bottom:234.774570px;}
.y1a_c00468{bottom:266.142720px;}
.y19_c00468{bottom:297.862320px;}
.y18_c00468{bottom:329.225520px;}
.y17_c00468{bottom:360.945120px;}
.y16_c00468{bottom:392.308320px;}
.y15_c00468{bottom:423.315120px;}
.y14_c00468{bottom:423.671520px;}
.y13_c00468{bottom:455.391120px;}
.y12_c00468{bottom:486.754320px;}
.y11_c00468{bottom:518.825370px;}
.y10_c00468{bottom:581.913120px;}
.yf_c00468{bottom:612.914970px;}
.ye_c00468{bottom:644.990970px;}
.yd_c00468{bottom:676.710570px;}
.yc_c00468{bottom:708.078720px;}
.yb_c00468{bottom:740.149770px;}
.ya_c00468{bottom:771.874320px;}
.y9_c00468{bottom:831.749520px;}
.y8_c00468{bottom:834.600720px;}
.y7_c00468{bottom:865.963920px;}
.y6_c00468{bottom:897.322170px;}
.y5_c00468{bottom:929.759520px;}
.y4_c00468{bottom:1022.774970px;}
.y3_c00468{bottom:1033.110570px;}
.y2_c00468{bottom:1045.940970px;}
.h4_c00468{height:20.887891px;}
.ha_c00468{height:33.230868px;}
.hb_c00468{height:34.180317px;}
.h3_c00468{height:36.138867px;}
.h8_c00468{height:40.031191px;}
.h2_c00468{height:69.386625px;}
.hd_c00468{height:73.455293px;}
.h7_c00468{height:75.169050px;}
.h6_c00468{height:75.398555px;}
.h5_c00468{height:80.062577px;}
.hc_c00468{height:86.281015px;}
.h9_c00468{height:132.141797px;}
.h1_c00468{height:1110.000000px;}
.h0_c00468{height:1263.000000px;}
.w1_c00468{width:760.500000px;}
.w0_c00468{width:892.500000px;}
.x0_c00468{left:0.000000px;}
.x29_c00468{left:50.075085px;}
.x1_c00468{left:66.000000px;}
.x36_c00468{left:81.017535px;}
.x21_c00468{left:82.853985px;}
.x4_c00468{left:85.363635px;}
.xe_c00468{left:115.390335px;}
.x37_c00468{left:123.414285px;}
.x3e_c00468{left:125.042835px;}
.x2a_c00468{left:135.442785px;}
.x22_c00468{left:145.912035px;}
.x30_c00468{left:157.816785px;}
.xf_c00468{left:158.876085px;}
.x5_c00468{left:168.677085px;}
.x23_c00468{left:179.794785px;}
.x1a_c00468{left:190.971885px;}
.x5b_c00468{left:192.239085px;}
.x6_c00468{left:201.475785px;}
.x43_c00468{left:202.673685px;}
.x4b_c00468{left:212.821185px;}
.x3c_c00468{left:214.142835px;}
.x10_c00468{left:224.117085px;}
.x1b_c00468{left:235.304085px;}
.x24_c00468{left:237.828585px;}
.x57_c00468{left:246.802935px;}
.x31_c00468{left:257.618685px;}
.x25_c00468{left:259.331385px;}
.x44_c00468{left:269.003685px;}
.x11_c00468{left:270.345135px;}
.x26_c00468{left:280.754985px;}
.x38_c00468{left:291.481635px;}
.x48_c00468{left:293.174535px;}
.x7_c00468{left:302.515185px;}
.x27_c00468{left:304.059585px;}
.x52_c00468{left:313.929885px;}
.x4c_c00468{left:315.875235px;}
.x28_c00468{left:324.854535px;}
.x2b_c00468{left:337.006785px;}
.x1c_c00468{left:347.372085px;}
.x3f_c00468{left:357.217635px;}
.x12_c00468{left:358.816485px;}
.x39_c00468{left:368.983785px;}
.x1d_c00468{left:378.967935px;}
.x45_c00468{left:380.546985px;}
.x13_c00468{left:391.050885px;}
.x53_c00468{left:401.886435px;}
.x49_c00468{left:412.142835px;}
.x46_c00468{left:413.989185px;}
.x8_c00468{left:423.522885px;}
.x2c_c00468{left:425.136585px;}
.x54_c00468{left:435.828585px;}
.x9_c00468{left:445.778085px;}
.x40_c00468{left:447.901635px;}
.x14_c00468{left:457.796685px;}
.x1e_c00468{left:469.508385px;}
.xa_c00468{left:479.527185px;}
.x56_c00468{left:490.149885px;}
.x32_c00468{left:491.303235px;}
.x2d_c00468{left:501.757635px;}
.x33_c00468{left:524.176185px;}
.x3a_c00468{left:533.675235px;}
.xb_c00468{left:535.199835px;}
.x15_c00468{left:545.822535px;}
.x4a_c00468{left:557.346135px;}
.x4f_c00468{left:568.750935px;}
.x2e_c00468{left:579.076635px;}
.x1f_c00468{left:580.987335px;}
.x47_c00468{left:590.139885px;}
.x5a_c00468{left:591.174435px;}
.x16_c00468{left:600.064635px;}
.x41_c00468{left:601.549635px;}
.x3d_c00468{left:612.593085px;}
.x4d_c00468{left:623.517735px;}
.x59_c00468{left:624.973035px;}
.x17_c00468{left:632.016885px;}
.xc_c00468{left:633.982035px;}
.x50_c00468{left:637.065885px;}
.x20_c00468{left:644.114685px;}
.x55_c00468{left:645.386835px;}
.x3b_c00468{left:656.375835px;}
.x34_c00468{left:666.256035px;}
.x2f_c00468{left:667.820235px;}
.x18_c00468{left:669.849735px;}
.xd_c00468{left:679.546785px;}
.x58_c00468{left:689.035935px;}
.x35_c00468{left:698.302335px;}
.x2_c00468{left:701.282235px;}
.x3_c00468{left:702.801885px;}
.x4e_c00468{left:711.969285px;}
.x51_c00468{left:713.256285px;}
.x42_c00468{left:723.997785px;}
.x19_c00468{left:733.293885px;}
@media print{
.v0_c00468{vertical-align:0.000000pt;}
.lsa_c00468{letter-spacing:-4.188800pt;}
.ls6_c00468{letter-spacing:-2.537926pt;}
.ls13_c00468{letter-spacing:-2.211621pt;}
.ls16_c00468{letter-spacing:-2.066597pt;}
.ls9_c00468{letter-spacing:-1.384983pt;}
.ls4_c00468{letter-spacing:-0.072512pt;}
.ls1_c00468{letter-spacing:0.000000pt;}
.ls12_c00468{letter-spacing:0.485832pt;}
.ls15_c00468{letter-spacing:0.746875pt;}
.ls11_c00468{letter-spacing:1.740292pt;}
.lsc_c00468{letter-spacing:1.936075pt;}
.ls5_c00468{letter-spacing:1.972331pt;}
.ls0_c00468{letter-spacing:2.530675pt;}
.ls8_c00468{letter-spacing:2.748211pt;}
.ls10_c00468{letter-spacing:2.900487pt;}
.lse_c00468{letter-spacing:2.943994pt;}
.ls7_c00468{letter-spacing:3.203209pt;}
.lsb_c00468{letter-spacing:3.234043pt;}
.ls17_c00468{letter-spacing:3.574850pt;}
.ls3_c00468{letter-spacing:3.625609pt;}
.ls14_c00468{letter-spacing:3.907209pt;}
.ls2_c00468{letter-spacing:27.878400pt;}
.lsd_c00468{letter-spacing:44.352176pt;}
.lsf_c00468{letter-spacing:45.619376pt;}
.ws0_c00468{word-spacing:0.000000pt;}
._1_c00468{width:15.930883pt;}
._0_c00468{width:22.732256pt;}
.fs2_c00468{font-size:27.878400pt;}
.fs1_c00468{font-size:30.800000pt;}
.fs6_c00468{font-size:36.256000pt;}
.fs9_c00468{font-size:44.352176pt;}
.fsa_c00468{font-size:45.619376pt;}
.fs0_c00468{font-size:59.136000pt;}
.fs5_c00468{font-size:64.064176pt;}
.fs7_c00468{font-size:66.528000pt;}
.fs4_c00468{font-size:68.288000pt;}
.fs3_c00468{font-size:72.512176pt;}
.fsb_c00468{font-size:78.144176pt;}
.fs8_c00468{font-size:119.680000pt;}
.y0_c00468{bottom:0.000000pt;}
.y1_c00468{bottom:68.000000pt;}
.y1e_c00468{bottom:122.202107pt;}
.y1d_c00468{bottom:151.035307pt;}
.y1c_c00468{bottom:180.180907pt;}
.y1b_c00468{bottom:208.688507pt;}
.y1a_c00468{bottom:236.571307pt;}
.y19_c00468{bottom:264.766507pt;}
.y18_c00468{bottom:292.644907pt;}
.y17_c00468{bottom:320.840107pt;}
.y16_c00468{bottom:348.718507pt;}
.y15_c00468{bottom:376.280107pt;}
.y14_c00468{bottom:376.596907pt;}
.y13_c00468{bottom:404.792107pt;}
.y12_c00468{bottom:432.670507pt;}
.y11_c00468{bottom:461.178107pt;}
.y10_c00468{bottom:517.256107pt;}
.yf_c00468{bottom:544.813307pt;}
.ye_c00468{bottom:573.325307pt;}
.yd_c00468{bottom:601.520507pt;}
.yc_c00468{bottom:629.403307pt;}
.yb_c00468{bottom:657.910907pt;}
.ya_c00468{bottom:686.110507pt;}
.y9_c00468{bottom:739.332907pt;}
.y8_c00468{bottom:741.867307pt;}
.y7_c00468{bottom:769.745707pt;}
.y6_c00468{bottom:797.619707pt;}
.y5_c00468{bottom:826.452907pt;}
.y4_c00468{bottom:909.133307pt;}
.y3_c00468{bottom:918.320507pt;}
.y2_c00468{bottom:929.725307pt;}
.h4_c00468{height:18.567014pt;}
.ha_c00468{height:29.538549pt;}
.hb_c00468{height:30.382504pt;}
.h3_c00468{height:32.123438pt;}
.h8_c00468{height:35.583281pt;}
.h2_c00468{height:61.677000pt;}
.hd_c00468{height:65.293594pt;}
.h7_c00468{height:66.816934pt;}
.h6_c00468{height:67.020938pt;}
.h5_c00468{height:71.166735pt;}
.hc_c00468{height:76.694235pt;}
.h9_c00468{height:117.459375pt;}
.h1_c00468{height:986.666667pt;}
.h0_c00468{height:1122.666667pt;}
.w1_c00468{width:676.000000pt;}
.w0_c00468{width:793.333333pt;}
.x0_c00468{left:0.000000pt;}
.x29_c00468{left:44.511187pt;}
.x1_c00468{left:58.666667pt;}
.x36_c00468{left:72.015587pt;}
.x21_c00468{left:73.647987pt;}
.x4_c00468{left:75.878787pt;}
.xe_c00468{left:102.569187pt;}
.x37_c00468{left:109.701587pt;}
.x3e_c00468{left:111.149187pt;}
.x2a_c00468{left:120.393587pt;}
.x22_c00468{left:129.699587pt;}
.x30_c00468{left:140.281587pt;}
.xf_c00468{left:141.223187pt;}
.x5_c00468{left:149.935187pt;}
.x23_c00468{left:159.817587pt;}
.x1a_c00468{left:169.752787pt;}
.x5b_c00468{left:170.879187pt;}
.x6_c00468{left:179.089587pt;}
.x43_c00468{left:180.154387pt;}
.x4b_c00468{left:189.174387pt;}
.x3c_c00468{left:190.349187pt;}
.x10_c00468{left:199.215187pt;}
.x1b_c00468{left:209.159187pt;}
.x24_c00468{left:211.403187pt;}
.x57_c00468{left:219.380387pt;}
.x31_c00468{left:228.994387pt;}
.x25_c00468{left:230.516787pt;}
.x44_c00468{left:239.114387pt;}
.x11_c00468{left:240.306787pt;}
.x26_c00468{left:249.559987pt;}
.x38_c00468{left:259.094787pt;}
.x48_c00468{left:260.599587pt;}
.x7_c00468{left:268.902387pt;}
.x27_c00468{left:270.275187pt;}
.x52_c00468{left:279.048787pt;}
.x4c_c00468{left:280.777987pt;}
.x28_c00468{left:288.759587pt;}
.x2b_c00468{left:299.561587pt;}
.x1c_c00468{left:308.775187pt;}
.x3f_c00468{left:317.526787pt;}
.x12_c00468{left:318.947987pt;}
.x39_c00468{left:327.985587pt;}
.x1d_c00468{left:336.860387pt;}
.x45_c00468{left:338.263987pt;}
.x13_c00468{left:347.600787pt;}
.x53_c00468{left:357.232387pt;}
.x49_c00468{left:366.349187pt;}
.x46_c00468{left:367.990387pt;}
.x8_c00468{left:376.464787pt;}
.x2c_c00468{left:377.899187pt;}
.x54_c00468{left:387.403187pt;}
.x9_c00468{left:396.247187pt;}
.x40_c00468{left:398.134787pt;}
.x14_c00468{left:406.930387pt;}
.x1e_c00468{left:417.340787pt;}
.xa_c00468{left:426.246387pt;}
.x56_c00468{left:435.688787pt;}
.x32_c00468{left:436.713987pt;}
.x2d_c00468{left:446.006787pt;}
.x33_c00468{left:465.934387pt;}
.x3a_c00468{left:474.377987pt;}
.xb_c00468{left:475.733187pt;}
.x15_c00468{left:485.175587pt;}
.x4a_c00468{left:495.418787pt;}
.x4f_c00468{left:505.556387pt;}
.x2e_c00468{left:514.734787pt;}
.x1f_c00468{left:516.433187pt;}
.x47_c00468{left:524.568787pt;}
.x5a_c00468{left:525.488387pt;}
.x16_c00468{left:533.390787pt;}
.x41_c00468{left:534.710787pt;}
.x3d_c00468{left:544.527187pt;}
.x4d_c00468{left:554.237987pt;}
.x59_c00468{left:555.531587pt;}
.x17_c00468{left:561.792787pt;}
.xc_c00468{left:563.539587pt;}
.x50_c00468{left:566.280787pt;}
.x20_c00468{left:572.546387pt;}
.x55_c00468{left:573.677187pt;}
.x3b_c00468{left:583.445187pt;}
.x34_c00468{left:592.227587pt;}
.x2f_c00468{left:593.617987pt;}
.x18_c00468{left:595.421987pt;}
.xd_c00468{left:604.041587pt;}
.x58_c00468{left:612.476387pt;}
.x35_c00468{left:620.713187pt;}
.x2_c00468{left:623.361987pt;}
.x3_c00468{left:624.712787pt;}
.x4e_c00468{left:632.861587pt;}
.x51_c00468{left:634.005587pt;}
.x42_c00468{left:643.553587pt;}
.x19_c00468{left:651.816787pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8f67e2b7e1a009c3c9f88863.woff2')format("woff");}.ff1_c00469{font-family:ff1_c00469;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00469;src:url('chunks/assets/font_9f743caf7d43863a410339e4.woff2')format("woff");}.ff2_c00469{font-family:ff2_c00469;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00469;src:url('chunks/assets/font_2958d12d9dcfb71ae0da4ed6.woff2')format("woff");}.ff3_c00469{font-family:ff3_c00469;line-height:0.666000;font-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_c00469{transform:matrix(0.160569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160569,0.000000,0.000000,0.250000,0,0);}
.ma8_c00469{transform:matrix(0.185961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185961,0.000000,0.000000,0.250000,0,0);}
.m31_c00469{transform:matrix(0.189895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189895,0.000000,0.000000,0.250000,0,0);}
.mb6_c00469{transform:matrix(0.206701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206701,0.000000,0.000000,0.250000,0,0);}
.m51_c00469{transform:matrix(0.208842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208842,0.000000,0.000000,0.250000,0,0);}
.m7e_c00469{transform:matrix(0.213691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213691,0.000000,0.000000,0.250000,0,0);}
.m66_c00469{transform:matrix(0.222046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222046,0.000000,0.000000,0.250000,0,0);}
.ma9_c00469{transform:matrix(0.225362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225362,0.000000,0.000000,0.250000,0,0);}
.m93_c00469{transform:matrix(0.238686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238686,0.000000,0.000000,0.250000,0,0);}
.m91_c00469{transform:matrix(0.246084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246084,0.000000,0.000000,0.250000,0,0);}
.m0_c00469{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00469{transform:matrix(0.251385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251385,0.000000,0.000000,0.250000,0,0);}
.m85_c00469{transform:matrix(0.252509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252509,0.000000,0.000000,0.250000,0,0);}
.m59_c00469{transform:matrix(0.252851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252851,0.000000,0.000000,0.250000,0,0);}
.mb_c00469{transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);}
.m2b_c00469{transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);}
.m89_c00469{transform:matrix(0.254657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254657,0.000000,0.000000,0.250000,0,0);}
.m41_c00469{transform:matrix(0.254780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254780,0.000000,0.000000,0.250000,0,0);}
.m1b_c00469{transform:matrix(0.255317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255317,0.000000,0.000000,0.250000,0,0);}
.m6c_c00469{transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);}
.m94_c00469{transform:matrix(0.256098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256098,0.000000,0.000000,0.250000,0,0);}
.m1_c00469{transform:matrix(0.256173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256173,0.000000,0.000000,0.250000,0,0);}
.mb5_c00469{transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);}
.m4b_c00469{transform:matrix(0.256791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256791,0.000000,0.000000,0.250000,0,0);}
.m2_c00469{transform:matrix(0.257038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257038,0.000000,0.000000,0.250000,0,0);}
.mb1_c00469{transform:matrix(0.257258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257258,0.000000,0.000000,0.250000,0,0);}
.m6e_c00469{transform:matrix(0.257292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257292,0.000000,0.000000,0.250000,0,0);}
.m15_c00469{transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);}
.m48_c00469{transform:matrix(0.258186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258186,0.000000,0.000000,0.250000,0,0);}
.m37_c00469{transform:matrix(0.258274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258274,0.000000,0.000000,0.250000,0,0);}
.mae_c00469{transform:matrix(0.258788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258788,0.000000,0.000000,0.250000,0,0);}
.m6a_c00469{transform:matrix(0.259376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259376,0.000000,0.000000,0.250000,0,0);}
.m87_c00469{transform:matrix(0.259465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259465,0.000000,0.000000,0.250000,0,0);}
.m30_c00469{transform:matrix(0.260353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260353,0.000000,0.000000,0.250000,0,0);}
.m1d_c00469{transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);}
.m98_c00469{transform:matrix(0.261201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261201,0.000000,0.000000,0.250000,0,0);}
.me_c00469{transform:matrix(0.261703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261703,0.000000,0.000000,0.250000,0,0);}
.m8_c00469{transform:matrix(0.261958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261958,0.000000,0.000000,0.250000,0,0);}
.m3e_c00469{transform:matrix(0.262227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262227,0.000000,0.000000,0.250000,0,0);}
.maa_c00469{transform:matrix(0.265091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265091,0.000000,0.000000,0.250000,0,0);}
.mad_c00469{transform:matrix(0.265283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265283,0.000000,0.000000,0.250000,0,0);}
.m8d_c00469{transform:matrix(0.265440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265440,0.000000,0.000000,0.250000,0,0);}
.m61_c00469{transform:matrix(0.266539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266539,0.000000,0.000000,0.250000,0,0);}
.m9b_c00469{transform:matrix(0.266754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266754,0.000000,0.000000,0.250000,0,0);}
.ma0_c00469{transform:matrix(0.266986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266986,0.000000,0.000000,0.250000,0,0);}
.m28_c00469{transform:matrix(0.267149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267149,0.000000,0.000000,0.250000,0,0);}
.m6_c00469{transform:matrix(0.267521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267521,0.000000,0.000000,0.250000,0,0);}
.m35_c00469{transform:matrix(0.268892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268892,0.000000,0.000000,0.250000,0,0);}
.m73_c00469{transform:matrix(0.268910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268910,0.000000,0.000000,0.250000,0,0);}
.m40_c00469{transform:matrix(0.269069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269069,0.000000,0.000000,0.250000,0,0);}
.m7d_c00469{transform:matrix(0.269863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269863,0.000000,0.000000,0.250000,0,0);}
.m7f_c00469{transform:matrix(0.269879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269879,0.000000,0.000000,0.250000,0,0);}
.mc_c00469{transform:matrix(0.270005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270005,0.000000,0.000000,0.250000,0,0);}
.ma_c00469{transform:matrix(0.270150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270150,0.000000,0.000000,0.250000,0,0);}
.m76_c00469{transform:matrix(0.270239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270239,0.000000,0.000000,0.250000,0,0);}
.m23_c00469{transform:matrix(0.270269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270269,0.000000,0.000000,0.250000,0,0);}
.m49_c00469{transform:matrix(0.270286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270286,0.000000,0.000000,0.250000,0,0);}
.mb0_c00469{transform:matrix(0.270394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270394,0.000000,0.000000,0.250000,0,0);}
.m74_c00469{transform:matrix(0.270618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270618,0.000000,0.000000,0.250000,0,0);}
.m9e_c00469{transform:matrix(0.270660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270660,0.000000,0.000000,0.250000,0,0);}
.m20_c00469{transform:matrix(0.270898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270898,0.000000,0.000000,0.250000,0,0);}
.m6d_c00469{transform:matrix(0.271747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271747,0.000000,0.000000,0.250000,0,0);}
.m8a_c00469{transform:matrix(0.271936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271936,0.000000,0.000000,0.250000,0,0);}
.mac_c00469{transform:matrix(0.272398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272398,0.000000,0.000000,0.250000,0,0);}
.m55_c00469{transform:matrix(0.273016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273016,0.000000,0.000000,0.250000,0,0);}
.m46_c00469{transform:matrix(0.273295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273295,0.000000,0.000000,0.250000,0,0);}
.m8c_c00469{transform:matrix(0.273406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273406,0.000000,0.000000,0.250000,0,0);}
.m54_c00469{transform:matrix(0.274011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274011,0.000000,0.000000,0.250000,0,0);}
.m7c_c00469{transform:matrix(0.274757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274757,0.000000,0.000000,0.250000,0,0);}
.ma5_c00469{transform:matrix(0.274905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274905,0.000000,0.000000,0.250000,0,0);}
.m58_c00469{transform:matrix(0.274999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274999,0.000000,0.000000,0.250000,0,0);}
.m53_c00469{transform:matrix(0.275149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275149,0.000000,0.000000,0.250000,0,0);}
.m64_c00469{transform:matrix(0.275152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275152,0.000000,0.000000,0.250000,0,0);}
.m19_c00469{transform:matrix(0.275564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275564,0.000000,0.000000,0.250000,0,0);}
.m95_c00469{transform:matrix(0.277421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277421,0.000000,0.000000,0.250000,0,0);}
.m80_c00469{transform:matrix(0.277439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277439,0.000000,0.000000,0.250000,0,0);}
.m50_c00469{transform:matrix(0.277703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277703,0.000000,0.000000,0.250000,0,0);}
.m2d_c00469{transform:matrix(0.277958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277958,0.000000,0.000000,0.250000,0,0);}
.m9a_c00469{transform:matrix(0.278044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278044,0.000000,0.000000,0.250000,0,0);}
.m60_c00469{transform:matrix(0.278821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278821,0.000000,0.000000,0.250000,0,0);}
.m78_c00469{transform:matrix(0.279510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279510,0.000000,0.000000,0.250000,0,0);}
.m1a_c00469{transform:matrix(0.279624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279624,0.000000,0.000000,0.250000,0,0);}
.m5_c00469{transform:matrix(0.279768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279768,0.000000,0.000000,0.250000,0,0);}
.m77_c00469{transform:matrix(0.279951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279951,0.000000,0.000000,0.250000,0,0);}
.m6f_c00469{transform:matrix(0.280220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280220,0.000000,0.000000,0.250000,0,0);}
.m4_c00469{transform:matrix(0.280468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280468,0.000000,0.000000,0.250000,0,0);}
.m17_c00469{transform:matrix(0.281278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281278,0.000000,0.000000,0.250000,0,0);}
.m7_c00469{transform:matrix(0.281427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281427,0.000000,0.000000,0.250000,0,0);}
.m75_c00469{transform:matrix(0.281828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281828,0.000000,0.000000,0.250000,0,0);}
.m5e_c00469{transform:matrix(0.281953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281953,0.000000,0.000000,0.250000,0,0);}
.m5c_c00469{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);}
.m5f_c00469{transform:matrix(0.282221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282221,0.000000,0.000000,0.250000,0,0);}
.ma2_c00469{transform:matrix(0.282307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282307,0.000000,0.000000,0.250000,0,0);}
.m56_c00469{transform:matrix(0.282922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282922,0.000000,0.000000,0.250000,0,0);}
.mb3_c00469{transform:matrix(0.283007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283007,0.000000,0.000000,0.250000,0,0);}
.m63_c00469{transform:matrix(0.283255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283255,0.000000,0.000000,0.250000,0,0);}
.mb4_c00469{transform:matrix(0.283316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283316,0.000000,0.000000,0.250000,0,0);}
.maf_c00469{transform:matrix(0.283747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283747,0.000000,0.000000,0.250000,0,0);}
.m18_c00469{transform:matrix(0.285329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285329,0.000000,0.000000,0.250000,0,0);}
.m22_c00469{transform:matrix(0.285447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285447,0.000000,0.000000,0.250000,0,0);}
.ma7_c00469{transform:matrix(0.285647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285647,0.000000,0.000000,0.250000,0,0);}
.m7b_c00469{transform:matrix(0.285808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285808,0.000000,0.000000,0.250000,0,0);}
.m38_c00469{transform:matrix(0.286194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286194,0.000000,0.000000,0.250000,0,0);}
.m9f_c00469{transform:matrix(0.286646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286646,0.000000,0.000000,0.250000,0,0);}
.m7a_c00469{transform:matrix(0.287051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287051,0.000000,0.000000,0.250000,0,0);}
.m3d_c00469{transform:matrix(0.287908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287908,0.000000,0.000000,0.250000,0,0);}
.ma6_c00469{transform:matrix(0.288038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288038,0.000000,0.000000,0.250000,0,0);}
.m96_c00469{transform:matrix(0.288465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288465,0.000000,0.000000,0.250000,0,0);}
.m8f_c00469{transform:matrix(0.288491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288491,0.000000,0.000000,0.250000,0,0);}
.m82_c00469{transform:matrix(0.288814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288814,0.000000,0.000000,0.250000,0,0);}
.m2a_c00469{transform:matrix(0.289409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289409,0.000000,0.000000,0.250000,0,0);}
.ma3_c00469{transform:matrix(0.290354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290354,0.000000,0.000000,0.250000,0,0);}
.mb2_c00469{transform:matrix(0.290379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290379,0.000000,0.000000,0.250000,0,0);}
.m4e_c00469{transform:matrix(0.290510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290510,0.000000,0.000000,0.250000,0,0);}
.m24_c00469{transform:matrix(0.290624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290624,0.000000,0.000000,0.250000,0,0);}
.m52_c00469{transform:matrix(0.290784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290784,0.000000,0.000000,0.250000,0,0);}
.m12_c00469{transform:matrix(0.290835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290835,0.000000,0.000000,0.250000,0,0);}
.ma4_c00469{transform:matrix(0.291926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291926,0.000000,0.000000,0.250000,0,0);}
.m3c_c00469{transform:matrix(0.292598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292598,0.000000,0.000000,0.250000,0,0);}
.m9_c00469{transform:matrix(0.292930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292930,0.000000,0.000000,0.250000,0,0);}
.m36_c00469{transform:matrix(0.293173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293173,0.000000,0.000000,0.250000,0,0);}
.m44_c00469{transform:matrix(0.293880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293880,0.000000,0.000000,0.250000,0,0);}
.m84_c00469{transform:matrix(0.294783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294783,0.000000,0.000000,0.250000,0,0);}
.m9d_c00469{transform:matrix(0.294951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294951,0.000000,0.000000,0.250000,0,0);}
.m34_c00469{transform:matrix(0.295056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295056,0.000000,0.000000,0.250000,0,0);}
.m4d_c00469{transform:matrix(0.295960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295960,0.000000,0.000000,0.250000,0,0);}
.m32_c00469{transform:matrix(0.296092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296092,0.000000,0.000000,0.250000,0,0);}
.m3b_c00469{transform:matrix(0.296594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296594,0.000000,0.000000,0.250000,0,0);}
.m5b_c00469{transform:matrix(0.297819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297819,0.000000,0.000000,0.250000,0,0);}
.m70_c00469{transform:matrix(0.299125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299125,0.000000,0.000000,0.250000,0,0);}
.m86_c00469{transform:matrix(0.300497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300497,0.000000,0.000000,0.250000,0,0);}
.mf_c00469{transform:matrix(0.301252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301252,0.000000,0.000000,0.250000,0,0);}
.m8b_c00469{transform:matrix(0.301613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301613,0.000000,0.000000,0.250000,0,0);}
.m79_c00469{transform:matrix(0.302445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302445,0.000000,0.000000,0.250000,0,0);}
.m92_c00469{transform:matrix(0.303367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303367,0.000000,0.000000,0.250000,0,0);}
.ma1_c00469{transform:matrix(0.303403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303403,0.000000,0.000000,0.250000,0,0);}
.mab_c00469{transform:matrix(0.303455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303455,0.000000,0.000000,0.250000,0,0);}
.m47_c00469{transform:matrix(0.304002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304002,0.000000,0.000000,0.250000,0,0);}
.m14_c00469{transform:matrix(0.304377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304377,0.000000,0.000000,0.250000,0,0);}
.m90_c00469{transform:matrix(0.305919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305919,0.000000,0.000000,0.250000,0,0);}
.m97_c00469{transform:matrix(0.307278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307278,0.000000,0.000000,0.250000,0,0);}
.m88_c00469{transform:matrix(0.307388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307388,0.000000,0.000000,0.250000,0,0);}
.m4c_c00469{transform:matrix(0.307587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307587,0.000000,0.000000,0.250000,0,0);}
.m3_c00469{transform:matrix(0.309145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309145,0.000000,0.000000,0.250000,0,0);}
.m5a_c00469{transform:matrix(0.310907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310907,0.000000,0.000000,0.250000,0,0);}
.m11_c00469{transform:matrix(0.311612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311612,0.000000,0.000000,0.250000,0,0);}
.m71_c00469{transform:matrix(0.311870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311870,0.000000,0.000000,0.250000,0,0);}
.m1e_c00469{transform:matrix(0.312161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312161,0.000000,0.000000,0.250000,0,0);}
.m1f_c00469{transform:matrix(0.312654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312654,0.000000,0.000000,0.250000,0,0);}
.m62_c00469{transform:matrix(0.313644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313644,0.000000,0.000000,0.250000,0,0);}
.m3a_c00469{transform:matrix(0.313673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313673,0.000000,0.000000,0.250000,0,0);}
.m3f_c00469{transform:matrix(0.314246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314246,0.000000,0.000000,0.250000,0,0);}
.m4a_c00469{transform:matrix(0.314374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314374,0.000000,0.000000,0.250000,0,0);}
.m13_c00469{transform:matrix(0.314459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314459,0.000000,0.000000,0.250000,0,0);}
.m72_c00469{transform:matrix(0.314465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314465,0.000000,0.000000,0.250000,0,0);}
.m45_c00469{transform:matrix(0.317544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317544,0.000000,0.000000,0.250000,0,0);}
.m6b_c00469{transform:matrix(0.318832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318832,0.000000,0.000000,0.250000,0,0);}
.m57_c00469{transform:matrix(0.319440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319440,0.000000,0.000000,0.250000,0,0);}
.m69_c00469{transform:matrix(0.320140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320140,0.000000,0.000000,0.250000,0,0);}
.m8e_c00469{transform:matrix(0.321897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321897,0.000000,0.000000,0.250000,0,0);}
.m5d_c00469{transform:matrix(0.322926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322926,0.000000,0.000000,0.250000,0,0);}
.m27_c00469{transform:matrix(0.323313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323313,0.000000,0.000000,0.250000,0,0);}
.m33_c00469{transform:matrix(0.324152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324152,0.000000,0.000000,0.250000,0,0);}
.m65_c00469{transform:matrix(0.324508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324508,0.000000,0.000000,0.250000,0,0);}
.m9c_c00469{transform:matrix(0.324772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324772,0.000000,0.000000,0.250000,0,0);}
.m68_c00469{transform:matrix(0.325725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325725,0.000000,0.000000,0.250000,0,0);}
.m10_c00469{transform:matrix(0.326105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326105,0.000000,0.000000,0.250000,0,0);}
.m39_c00469{transform:matrix(0.326789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326789,0.000000,0.000000,0.250000,0,0);}
.m99_c00469{transform:matrix(0.327245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327245,0.000000,0.000000,0.250000,0,0);}
.m26_c00469{transform:matrix(0.327951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327951,0.000000,0.000000,0.250000,0,0);}
.m42_c00469{transform:matrix(0.328275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328275,0.000000,0.000000,0.250000,0,0);}
.m4f_c00469{transform:matrix(0.329385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329385,0.000000,0.000000,0.250000,0,0);}
.m83_c00469{transform:matrix(0.330094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330094,0.000000,0.000000,0.250000,0,0);}
.md_c00469{transform:matrix(0.331929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331929,0.000000,0.000000,0.250000,0,0);}
.m81_c00469{transform:matrix(0.332267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332267,0.000000,0.000000,0.250000,0,0);}
.m1c_c00469{transform:matrix(0.334398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334398,0.000000,0.000000,0.250000,0,0);}
.m43_c00469{transform:matrix(0.340031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340031,0.000000,0.000000,0.250000,0,0);}
.m21_c00469{transform:matrix(0.340954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340954,0.000000,0.000000,0.250000,0,0);}
.m67_c00469{transform:matrix(0.343928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343928,0.000000,0.000000,0.250000,0,0);}
.m25_c00469{transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);}
.m2c_c00469{transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);}
.m16_c00469{transform:matrix(0.376256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376256,0.000000,0.000000,0.250000,0,0);}
.m29_c00469{transform:matrix(0.400352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400352,0.000000,0.000000,0.250000,0,0);}
.v0_c00469{vertical-align:0.000000px;}
.ls13_c00469{letter-spacing:-2.855167px;}
.ls10_c00469{letter-spacing:-2.634911px;}
.ls9_c00469{letter-spacing:-1.166540px;}
.ls8_c00469{letter-spacing:-1.011545px;}
.ls14_c00469{letter-spacing:-0.848392px;}
.ls19_c00469{letter-spacing:-0.081576px;}
.ls5_c00469{letter-spacing:0.000000px;}
.ls1c_c00469{letter-spacing:0.840235px;}
.ls1a_c00469{letter-spacing:1.346007px;}
.ls1_c00469{letter-spacing:1.558105px;}
.ls11_c00469{letter-spacing:1.835464px;}
.lsd_c00469{letter-spacing:2.096508px;}
.ls1d_c00469{letter-spacing:2.341237px;}
.lsa_c00469{letter-spacing:2.708330px;}
.ls4_c00469{letter-spacing:2.749118px;}
.ls2_c00469{letter-spacing:2.838852px;}
.ls12_c00469{letter-spacing:3.091738px;}
.lsb_c00469{letter-spacing:3.156999px;}
.ls1b_c00469{letter-spacing:3.425400px;}
.lsf_c00469{letter-spacing:3.581195px;}
.ls0_c00469{letter-spacing:3.630141px;}
.ls17_c00469{letter-spacing:3.670929px;}
.lse_c00469{letter-spacing:3.722400px;}
.ls15_c00469{letter-spacing:3.752505px;}
.ls7_c00469{letter-spacing:4.078810px;}
.ls16_c00469{letter-spacing:4.118400px;}
.ls6_c00469{letter-spacing:4.296610px;}
.ls3_c00469{letter-spacing:12.236312px;}
.ls18_c00469{letter-spacing:49.896198px;}
.lsc_c00469{letter-spacing:58.449798px;}
.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:-23.232901px;}
.ws1_c00469{word-spacing:0.000000px;}
._3_c00469{width:7.244317px;}
._6_c00469{width:10.540536px;}
._0_c00469{width:20.750400px;}
._5_c00469{width:23.900839px;}
._1_c00469{width:25.527650px;}
._2_c00469{width:29.497894px;}
._4_c00469{width:31.720277px;}
.fc0_c00469{color:transparent;}
.fs2_c00469{font-size:27.720000px;}
.fs1_c00469{font-size:33.660000px;}
.fs0_c00469{font-size:39.600000px;}
.fs4_c00469{font-size:44.352000px;}
.fs7_c00469{font-size:45.738000px;}
.fsd_c00469{font-size:49.896198px;}
.fs8_c00469{font-size:58.449798px;}
.fsf_c00469{font-size:68.508000px;}
.fsa_c00469{font-size:70.092198px;}
.fs10_c00469{font-size:73.260000px;}
.fs9_c00469{font-size:74.448000px;}
.fsb_c00469{font-size:74.844000px;}
.fse_c00469{font-size:77.220000px;}
.fs6_c00469{font-size:78.804000px;}
.fs5_c00469{font-size:81.576198px;}
.fsc_c00469{font-size:82.368000px;}
.fs11_c00469{font-size:83.952198px;}
.fs3_c00469{font-size:85.932198px;}
.y0_c00469{bottom:0.000000px;}
.y4_c00469{bottom:33.052185px;}
.y1_c00469{bottom:76.500000px;}
.y22_c00469{bottom:133.918335px;}
.y21_c00469{bottom:148.174335px;}
.y20_c00469{bottom:165.632985px;}
.y3_c00469{bottom:170.983935px;}
.y1f_c00469{bottom:198.070335px;}
.y1e_c00469{bottom:229.784985px;}
.y1d_c00469{bottom:261.860985px;}
.y1c_c00469{bottom:293.585535px;}
.y1b_c00469{bottom:325.305135px;}
.y1a_c00469{bottom:357.019785px;}
.y19_c00469{bottom:388.387935px;}
.y18_c00469{bottom:410.479785px;}
.y17_c00469{bottom:420.102585px;}
.y16_c00469{bottom:451.827135px;}
.y15_c00469{bottom:484.259535px;}
.y14_c00469{bottom:515.979135px;}
.y13_c00469{bottom:548.411535px;}
.y12_c00469{bottom:610.781535px;}
.y11_c00469{bottom:642.144735px;}
.y10_c00469{bottom:673.507935px;}
.yf_c00469{bottom:705.222585px;}
.ye_c00469{bottom:736.947135px;}
.yd_c00469{bottom:765.815535px;}
.yc_c00469{bottom:769.018185px;}
.yb_c00469{bottom:800.381385px;}
.ya_c00469{bottom:832.462335px;}
.y9_c00469{bottom:864.176985px;}
.y8_c00469{bottom:896.257935px;}
.y7_c00469{bottom:928.690335px;}
.y6_c00469{bottom:1035.605385px;}
.y5_c00469{bottom:1061.266185px;}
.y2_c00469{bottom:1082.650185px;}
.h4_c00469{height:28.911094px;}
.h3_c00469{height:33.035449px;}
.he_c00469{height:33.230868px;}
.ha_c00469{height:38.927565px;}
.h2_c00469{height:41.301563px;}
.h9_c00469{height:44.889346px;}
.h6_c00469{height:46.257750px;}
.h10_c00469{height:71.451703px;}
.hb_c00469{height:73.066641px;}
.hc_c00469{height:73.103972px;}
.hf_c00469{height:75.787207px;}
.h11_c00469{height:76.407891px;}
.h8_c00469{height:77.341816px;}
.h7_c00469{height:80.062577px;}
.hd_c00469{height:80.839688px;}
.h5_c00469{height:84.337753px;}
.h12_c00469{height:87.559519px;}
.h1_c00469{height:1110.000000px;}
.h0_c00469{height:1263.000000px;}
.w1_c00469{width:760.500000px;}
.w0_c00469{width:892.500000px;}
.x0_c00469{left:0.000000px;}
.x4_c00469{left:19.286085px;}
.x3_c00469{left:50.624535px;}
.x2_c00469{left:52.985685px;}
.x1_c00469{left:66.000000px;}
.x69_c00469{left:81.690735px;}
.x30_c00469{left:91.689735px;}
.x29_c00469{left:93.545985px;}
.x11_c00469{left:94.887435px;}
.x4f_c00469{left:124.270635px;}
.x36_c00469{left:125.334885px;}
.x1a_c00469{left:126.745635px;}
.x4b_c00469{left:135.611085px;}
.x3f_c00469{left:145.516035px;}
.x8_c00469{left:147.931635px;}
.x50_c00469{left:157.079235px;}
.x1b_c00469{left:158.494935px;}
.x41_c00469{left:168.835485px;}
.x45_c00469{left:178.651335px;}
.x12_c00469{left:180.997635px;}
.x65_c00469{left:189.368085px;}
.x9_c00469{left:191.991585px;}
.x31_c00469{left:193.644885px;}
.x39_c00469{left:201.634185px;}
.x7_c00469{left:205.262535px;}
.x13_c00469{left:212.504385px;}
.x6a_c00469{left:215.390235px;}
.x22_c00469{left:224.013135px;}
.x55_c00469{left:234.809085px;}
.x6b_c00469{left:235.903035px;}
.x37_c00469{left:237.442485px;}
.x3a_c00469{left:245.303085px;}
.x44_c00469{left:247.347435px;}
.x1c_c00469{left:257.262285px;}
.x2a_c00469{left:267.399885px;}
.x46_c00469{left:268.667085px;}
.xa_c00469{left:269.968935px;}
.x14_c00469{left:279.175935px;}
.x56_c00469{left:281.017335px;}
.x1d_c00469{left:290.343135px;}
.x47_c00469{left:301.752885px;}
.xb_c00469{left:303.193335px;}
.x57_c00469{left:312.637935px;}
.x32_c00469{left:313.900185px;}
.x3b_c00469{left:323.364585px;}
.x1e_c00469{left:324.958485px;}
.x6f_c00469{left:334.046685px;}
.x15_c00469{left:335.818785px;}
.x60_c00469{left:345.971235px;}
.x4c_c00469{left:356.866185px;}
.x23_c00469{left:358.390785px;}
.x51_c00469{left:367.236435px;}
.x2b_c00469{left:368.790735px;}
.x42_c00469{left:379.477785px;}
.x58_c00469{left:381.606285px;}
.x1f_c00469{left:390.882585px;}
.x33_c00469{left:391.961685px;}
.x3c_c00469{left:402.193335px;}
.xc_c00469{left:413.360535px;}
.x34_c00469{left:425.334585px;}
.x67_c00469{left:435.823635px;}
.x24_c00469{left:446.842335px;}
.x2c_c00469{left:457.796685px;}
.x4d_c00469{left:468.602535px;}
.x6c_c00469{left:470.627085px;}
.x25_c00469{left:479.284635px;}
.xd_c00469{left:480.348885px;}
.x61_c00469{left:490.674585px;}
.x59_c00469{left:501.386385px;}
.x38_c00469{left:502.415985px;}
.x26_c00469{left:512.608035px;}
.x62_c00469{left:521.488335px;}
.x16_c00469{left:522.602085px;}
.x5b_c00469{left:524.567235px;}
.x66_c00469{left:535.244385px;}
.x4e_c00469{left:545.565135px;}
.x17_c00469{left:546.574935px;}
.x20_c00469{left:556.098735px;}
.x3d_c00469{left:557.989635px;}
.xe_c00469{left:567.681735px;}
.x2d_c00469{left:568.731135px;}
.x5a_c00469{left:578.180685px;}
.x18_c00469{left:579.254835px;}
.x48_c00469{left:590.120085px;}
.xf_c00469{left:600.326985px;}
.x5e_c00469{left:603.445485px;}
.x63_c00469{left:610.618035px;}
.x52_c00469{left:611.687235px;}
.x3e_c00469{left:613.196985px;}
.x53_c00469{left:633.422685px;}
.x27_c00469{left:634.665135px;}
.x40_c00469{left:645.362085px;}
.x49_c00469{left:656.430285px;}
.x54_c00469{left:666.211485px;}
.x21_c00469{left:667.790535px;}
.x6d_c00469{left:677.631135px;}
.x10_c00469{left:679.457685px;}
.x2e_c00469{left:689.035935px;}
.x43_c00469{left:690.619935px;}
.x5_c00469{left:694.862085px;}
.x35_c00469{left:695.951085px;}
.x68_c00469{left:699.351735px;}
.x19_c00469{left:700.955535px;}
.x5c_c00469{left:705.687735px;}
.x6e_c00469{left:707.598435px;}
.x5d_c00469{left:710.806035px;}
.x64_c00469{left:712.261335px;}
.x28_c00469{left:721.795035px;}
.x2f_c00469{left:723.359235px;}
.x4a_c00469{left:734.442285px;}
.x6_c00469{left:743.144385px;}
.x5f_c00469{left:745.134285px;}
@media print{
.v0_c00469{vertical-align:0.000000pt;}
.ls13_c00469{letter-spacing:-2.537926pt;}
.ls10_c00469{letter-spacing:-2.342143pt;}
.ls9_c00469{letter-spacing:-1.036924pt;}
.ls8_c00469{letter-spacing:-0.899151pt;}
.ls14_c00469{letter-spacing:-0.754127pt;}
.ls19_c00469{letter-spacing:-0.072512pt;}
.ls5_c00469{letter-spacing:0.000000pt;}
.ls1c_c00469{letter-spacing:0.746875pt;}
.ls1a_c00469{letter-spacing:1.196451pt;}
.ls1_c00469{letter-spacing:1.384983pt;}
.ls11_c00469{letter-spacing:1.631524pt;}
.lsd_c00469{letter-spacing:1.863563pt;}
.ls1d_c00469{letter-spacing:2.081099pt;}
.lsa_c00469{letter-spacing:2.407404pt;}
.ls4_c00469{letter-spacing:2.443660pt;}
.ls2_c00469{letter-spacing:2.523424pt;}
.ls12_c00469{letter-spacing:2.748211pt;}
.lsb_c00469{letter-spacing:2.806221pt;}
.ls1b_c00469{letter-spacing:3.044800pt;}
.lsf_c00469{letter-spacing:3.183285pt;}
.ls0_c00469{letter-spacing:3.226792pt;}
.ls17_c00469{letter-spacing:3.263048pt;}
.lse_c00469{letter-spacing:3.308800pt;}
.ls15_c00469{letter-spacing:3.335560pt;}
.ls7_c00469{letter-spacing:3.625609pt;}
.ls16_c00469{letter-spacing:3.660800pt;}
.ls6_c00469{letter-spacing:3.819209pt;}
.ls3_c00469{letter-spacing:10.876722pt;}
.ls18_c00469{letter-spacing:44.352176pt;}
.lsc_c00469{letter-spacing:51.955376pt;}
.ws0_c00469{word-spacing:-20.651468pt;}
.ws1_c00469{word-spacing:0.000000pt;}
._3_c00469{width:6.439393pt;}
._6_c00469{width:9.369365pt;}
._0_c00469{width:18.444800pt;}
._5_c00469{width:21.245190pt;}
._1_c00469{width:22.691245pt;}
._2_c00469{width:26.220350pt;}
._4_c00469{width:28.195801pt;}
.fs2_c00469{font-size:24.640000pt;}
.fs1_c00469{font-size:29.920000pt;}
.fs0_c00469{font-size:35.200000pt;}
.fs4_c00469{font-size:39.424000pt;}
.fs7_c00469{font-size:40.656000pt;}
.fsd_c00469{font-size:44.352176pt;}
.fs8_c00469{font-size:51.955376pt;}
.fsf_c00469{font-size:60.896000pt;}
.fsa_c00469{font-size:62.304176pt;}
.fs10_c00469{font-size:65.120000pt;}
.fs9_c00469{font-size:66.176000pt;}
.fsb_c00469{font-size:66.528000pt;}
.fse_c00469{font-size:68.640000pt;}
.fs6_c00469{font-size:70.048000pt;}
.fs5_c00469{font-size:72.512176pt;}
.fsc_c00469{font-size:73.216000pt;}
.fs11_c00469{font-size:74.624176pt;}
.fs3_c00469{font-size:76.384176pt;}
.y0_c00469{bottom:0.000000pt;}
.y4_c00469{bottom:29.379720pt;}
.y1_c00469{bottom:68.000000pt;}
.y22_c00469{bottom:119.038520pt;}
.y21_c00469{bottom:131.710520pt;}
.y20_c00469{bottom:147.229320pt;}
.y3_c00469{bottom:151.985720pt;}
.y1f_c00469{bottom:176.062520pt;}
.y1e_c00469{bottom:204.253320pt;}
.y1d_c00469{bottom:232.765320pt;}
.y1c_c00469{bottom:260.964920pt;}
.y1b_c00469{bottom:289.160120pt;}
.y1a_c00469{bottom:317.350920pt;}
.y19_c00469{bottom:345.233720pt;}
.y18_c00469{bottom:364.870920pt;}
.y17_c00469{bottom:373.424520pt;}
.y16_c00469{bottom:401.624120pt;}
.y15_c00469{bottom:430.452920pt;}
.y14_c00469{bottom:458.648120pt;}
.y13_c00469{bottom:487.476920pt;}
.y12_c00469{bottom:542.916920pt;}
.y11_c00469{bottom:570.795320pt;}
.y10_c00469{bottom:598.673720pt;}
.yf_c00469{bottom:626.864520pt;}
.ye_c00469{bottom:655.064120pt;}
.yd_c00469{bottom:680.724920pt;}
.yc_c00469{bottom:683.571720pt;}
.yb_c00469{bottom:711.450120pt;}
.ya_c00469{bottom:739.966520pt;}
.y9_c00469{bottom:768.157320pt;}
.y8_c00469{bottom:796.673720pt;}
.y7_c00469{bottom:825.502520pt;}
.y6_c00469{bottom:920.538120pt;}
.y5_c00469{bottom:943.347720pt;}
.y2_c00469{bottom:962.355720pt;}
.h4_c00469{height:25.698750pt;}
.h3_c00469{height:29.364844pt;}
.he_c00469{height:29.538549pt;}
.ha_c00469{height:34.602280pt;}
.h2_c00469{height:36.712500pt;}
.h9_c00469{height:39.901641pt;}
.h6_c00469{height:41.118000pt;}
.h10_c00469{height:63.512625pt;}
.hb_c00469{height:64.948125pt;}
.hc_c00469{height:64.981309pt;}
.hf_c00469{height:67.366406pt;}
.h11_c00469{height:67.918125pt;}
.h8_c00469{height:68.748281pt;}
.h7_c00469{height:71.166735pt;}
.hd_c00469{height:71.857500pt;}
.h5_c00469{height:74.966891pt;}
.h12_c00469{height:77.830684pt;}
.h1_c00469{height:986.666667pt;}
.h0_c00469{height:1122.666667pt;}
.w1_c00469{width:676.000000pt;}
.w0_c00469{width:793.333333pt;}
.x0_c00469{left:0.000000pt;}
.x4_c00469{left:17.143187pt;}
.x3_c00469{left:44.999587pt;}
.x2_c00469{left:47.098387pt;}
.x1_c00469{left:58.666667pt;}
.x69_c00469{left:72.613987pt;}
.x30_c00469{left:81.501987pt;}
.x29_c00469{left:83.151987pt;}
.x11_c00469{left:84.344387pt;}
.x4f_c00469{left:110.462787pt;}
.x36_c00469{left:111.408787pt;}
.x1a_c00469{left:112.662787pt;}
.x4b_c00469{left:120.543187pt;}
.x3f_c00469{left:129.347587pt;}
.x8_c00469{left:131.494787pt;}
.x50_c00469{left:139.625987pt;}
.x1b_c00469{left:140.884387pt;}
.x41_c00469{left:150.075987pt;}
.x45_c00469{left:158.801187pt;}
.x12_c00469{left:160.886787pt;}
.x65_c00469{left:168.327187pt;}
.x9_c00469{left:170.659187pt;}
.x31_c00469{left:172.128787pt;}
.x39_c00469{left:179.230387pt;}
.x7_c00469{left:182.455587pt;}
.x13_c00469{left:188.892787pt;}
.x6a_c00469{left:191.457987pt;}
.x22_c00469{left:199.122787pt;}
.x55_c00469{left:208.719187pt;}
.x6b_c00469{left:209.691587pt;}
.x37_c00469{left:211.059987pt;}
.x3a_c00469{left:218.047187pt;}
.x44_c00469{left:219.864387pt;}
.x1c_c00469{left:228.677587pt;}
.x2a_c00469{left:237.688787pt;}
.x46_c00469{left:238.815187pt;}
.xa_c00469{left:239.972387pt;}
.x14_c00469{left:248.156387pt;}
.x56_c00469{left:249.793187pt;}
.x1d_c00469{left:258.082787pt;}
.x47_c00469{left:268.224787pt;}
.xb_c00469{left:269.505187pt;}
.x57_c00469{left:277.900387pt;}
.x32_c00469{left:279.022387pt;}
.x3b_c00469{left:287.435187pt;}
.x1e_c00469{left:288.851987pt;}
.x6f_c00469{left:296.930387pt;}
.x15_c00469{left:298.505587pt;}
.x60_c00469{left:307.529987pt;}
.x4c_c00469{left:317.214387pt;}
.x23_c00469{left:318.569587pt;}
.x51_c00469{left:326.432387pt;}
.x2b_c00469{left:327.813987pt;}
.x42_c00469{left:337.313587pt;}
.x58_c00469{left:339.205587pt;}
.x1f_c00469{left:347.451187pt;}
.x33_c00469{left:348.410387pt;}
.x3c_c00469{left:357.505187pt;}
.xc_c00469{left:367.431587pt;}
.x34_c00469{left:378.075187pt;}
.x67_c00469{left:387.398787pt;}
.x24_c00469{left:397.193187pt;}
.x2c_c00469{left:406.930387pt;}
.x4d_c00469{left:416.535587pt;}
.x6c_c00469{left:418.335187pt;}
.x25_c00469{left:426.030787pt;}
.xd_c00469{left:426.976787pt;}
.x61_c00469{left:436.155187pt;}
.x59_c00469{left:445.676787pt;}
.x38_c00469{left:446.591987pt;}
.x26_c00469{left:455.651587pt;}
.x62_c00469{left:463.545187pt;}
.x16_c00469{left:464.535187pt;}
.x5b_c00469{left:466.281987pt;}
.x66_c00469{left:475.772787pt;}
.x4e_c00469{left:484.946787pt;}
.x17_c00469{left:485.844387pt;}
.x20_c00469{left:494.309987pt;}
.x3d_c00469{left:495.990787pt;}
.xe_c00469{left:504.605987pt;}
.x2d_c00469{left:505.538787pt;}
.x5a_c00469{left:513.938387pt;}
.x18_c00469{left:514.893187pt;}
.x48_c00469{left:524.551187pt;}
.xf_c00469{left:533.623987pt;}
.x5e_c00469{left:536.395987pt;}
.x63_c00469{left:542.771587pt;}
.x52_c00469{left:543.721987pt;}
.x3e_c00469{left:545.063987pt;}
.x53_c00469{left:563.042387pt;}
.x27_c00469{left:564.146787pt;}
.x40_c00469{left:573.655187pt;}
.x49_c00469{left:583.493587pt;}
.x54_c00469{left:592.187987pt;}
.x21_c00469{left:593.591587pt;}
.x6d_c00469{left:602.338787pt;}
.x10_c00469{left:603.962387pt;}
.x2e_c00469{left:612.476387pt;}
.x43_c00469{left:613.884387pt;}
.x5_c00469{left:617.655187pt;}
.x35_c00469{left:618.623187pt;}
.x68_c00469{left:621.645987pt;}
.x19_c00469{left:623.071587pt;}
.x5c_c00469{left:627.277987pt;}
.x6e_c00469{left:628.976387pt;}
.x5d_c00469{left:631.827587pt;}
.x64_c00469{left:633.121187pt;}
.x28_c00469{left:641.595587pt;}
.x2f_c00469{left:642.985987pt;}
.x4a_c00469{left:652.837587pt;}
.x6_c00469{left:660.572787pt;}
.x5f_c00469{left:662.341587pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1d0f5f77bdb2dacaae8929b5.woff2')format("woff");}.ff1_c00470{font-family:ff1_c00470;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00470;src:url('chunks/assets/font_af8328bfdbb0608faf44d704.woff2')format("woff");}.ff2_c00470{font-family:ff2_c00470;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00470;src:url('chunks/assets/font_0e7d3e4b10f25986a0f32685.woff2')format("woff");}.ff3_c00470{font-family:ff3_c00470;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00470;src:url('chunks/assets/font_1a7e4153e8959ec7ae8ba297.woff2')format("woff");}.ff4_c00470{font-family:ff4_c00470;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00470;src:url('chunks/assets/font_0838f037944e5ac8938b6a3f.woff2')format("woff");}.ff5_c00470{font-family:ff5_c00470;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m9a_c00470{transform:matrix(0.069767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.069767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.069767,0.000000,0.000000,0.250000,0,0);}
.m2b_c00470{transform:matrix(0.070653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070653,0.000000,0.000000,0.250000,0,0);}
.m2a_c00470{transform:matrix(0.131521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131521,0.000000,0.000000,0.250000,0,0);}
.m91_c00470{transform:matrix(0.174391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174391,0.000000,0.000000,0.250000,0,0);}
.m88_c00470{transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);}
.m97_c00470{transform:matrix(0.244874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244874,0.000000,0.000000,0.250000,0,0);}
.m16_c00470{transform:matrix(0.245906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245906,0.000000,0.000000,0.250000,0,0);}
.m14_c00470{transform:matrix(0.246031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246031,0.000000,0.000000,0.250000,0,0);}
.m1f_c00470{transform:matrix(0.246902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246902,0.000000,0.000000,0.250000,0,0);}
.m0_c00470{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m36_c00470{transform:matrix(0.250249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250249,0.000000,0.000000,0.250000,0,0);}
.m22_c00470{transform:matrix(0.250470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250470,0.000000,0.000000,0.250000,0,0);}
.m5f_c00470{transform:matrix(0.252041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252041,0.000000,0.000000,0.250000,0,0);}
.m98_c00470{transform:matrix(0.253756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253756,0.000000,0.000000,0.250000,0,0);}
.maa_c00470{transform:matrix(0.254909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254909,0.000000,0.000000,0.250000,0,0);}
.m15_c00470{transform:matrix(0.256275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256275,0.000000,0.000000,0.250000,0,0);}
.m79_c00470{transform:matrix(0.257240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257240,0.000000,0.000000,0.250000,0,0);}
.m20_c00470{transform:matrix(0.258348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258348,0.000000,0.000000,0.250000,0,0);}
.m8_c00470{transform:matrix(0.258499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258499,0.000000,0.000000,0.250000,0,0);}
.m9_c00470{transform:matrix(0.259271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259271,0.000000,0.000000,0.250000,0,0);}
.m35_c00470{transform:matrix(0.259488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259488,0.000000,0.000000,0.250000,0,0);}
.m45_c00470{transform:matrix(0.262004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262004,0.000000,0.000000,0.250000,0,0);}
.ma_c00470{transform:matrix(0.262615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262615,0.000000,0.000000,0.250000,0,0);}
.m1_c00470{transform:matrix(0.264084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264084,0.000000,0.000000,0.250000,0,0);}
.m53_c00470{transform:matrix(0.264757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264757,0.000000,0.000000,0.250000,0,0);}
.m33_c00470{transform:matrix(0.265137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265137,0.000000,0.000000,0.250000,0,0);}
.m4_c00470{transform:matrix(0.265163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265163,0.000000,0.000000,0.250000,0,0);}
.m4b_c00470{transform:matrix(0.266057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266057,0.000000,0.000000,0.250000,0,0);}
.m72_c00470{transform:matrix(0.266768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266768,0.000000,0.000000,0.250000,0,0);}
.m3c_c00470{transform:matrix(0.268701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268701,0.000000,0.000000,0.250000,0,0);}
.m7b_c00470{transform:matrix(0.270180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270180,0.000000,0.000000,0.250000,0,0);}
.ma3_c00470{transform:matrix(0.271270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271270,0.000000,0.000000,0.250000,0,0);}
.m24_c00470{transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);}
.m1e_c00470{transform:matrix(0.272173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272173,0.000000,0.000000,0.250000,0,0);}
.ma4_c00470{transform:matrix(0.272417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272417,0.000000,0.000000,0.250000,0,0);}
.mb6_c00470{transform:matrix(0.272668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272668,0.000000,0.000000,0.250000,0,0);}
.ma1_c00470{transform:matrix(0.272848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272848,0.000000,0.000000,0.250000,0,0);}
.mb4_c00470{transform:matrix(0.272904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272904,0.000000,0.000000,0.250000,0,0);}
.m8a_c00470{transform:matrix(0.272967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272967,0.000000,0.000000,0.250000,0,0);}
.m5d_c00470{transform:matrix(0.273180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273180,0.000000,0.000000,0.250000,0,0);}
.mae_c00470{transform:matrix(0.273934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273934,0.000000,0.000000,0.250000,0,0);}
.m1c_c00470{transform:matrix(0.274532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274532,0.000000,0.000000,0.250000,0,0);}
.m40_c00470{transform:matrix(0.275231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275231,0.000000,0.000000,0.250000,0,0);}
.m10_c00470{transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);}
.m71_c00470{transform:matrix(0.277807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277807,0.000000,0.000000,0.250000,0,0);}
.m37_c00470{transform:matrix(0.278772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278772,0.000000,0.000000,0.250000,0,0);}
.mb1_c00470{transform:matrix(0.278796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278796,0.000000,0.000000,0.250000,0,0);}
.md_c00470{transform:matrix(0.279348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279348,0.000000,0.000000,0.250000,0,0);}
.mac_c00470{transform:matrix(0.280286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280286,0.000000,0.000000,0.250000,0,0);}
.m67_c00470{transform:matrix(0.281059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281059,0.000000,0.000000,0.250000,0,0);}
.m49_c00470{transform:matrix(0.283124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283124,0.000000,0.000000,0.250000,0,0);}
.m41_c00470{transform:matrix(0.283138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283138,0.000000,0.000000,0.250000,0,0);}
.mb2_c00470{transform:matrix(0.283484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283484,0.000000,0.000000,0.250000,0,0);}
.m50_c00470{transform:matrix(0.284441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284441,0.000000,0.000000,0.250000,0,0);}
.ma6_c00470{transform:matrix(0.284973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284973,0.000000,0.000000,0.250000,0,0);}
.m32_c00470{transform:matrix(0.285012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285012,0.000000,0.000000,0.250000,0,0);}
.mb5_c00470{transform:matrix(0.285358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285358,0.000000,0.000000,0.250000,0,0);}
.m30_c00470{transform:matrix(0.285415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285415,0.000000,0.000000,0.250000,0,0);}
.m7d_c00470{transform:matrix(0.285711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285711,0.000000,0.000000,0.250000,0,0);}
.m85_c00470{transform:matrix(0.285823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285823,0.000000,0.000000,0.250000,0,0);}
.m60_c00470{transform:matrix(0.286427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286427,0.000000,0.000000,0.250000,0,0);}
.m61_c00470{transform:matrix(0.286442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286442,0.000000,0.000000,0.250000,0,0);}
.m6e_c00470{transform:matrix(0.286745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286745,0.000000,0.000000,0.250000,0,0);}
.m29_c00470{transform:matrix(0.287510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287510,0.000000,0.000000,0.250000,0,0);}
.ma9_c00470{transform:matrix(0.287692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287692,0.000000,0.000000,0.250000,0,0);}
.m77_c00470{transform:matrix(0.287932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287932,0.000000,0.000000,0.250000,0,0);}
.m9b_c00470{transform:matrix(0.288035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288035,0.000000,0.000000,0.250000,0,0);}
.m5_c00470{transform:matrix(0.288901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288901,0.000000,0.000000,0.250000,0,0);}
.m9e_c00470{transform:matrix(0.288980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288980,0.000000,0.000000,0.250000,0,0);}
.m4c_c00470{transform:matrix(0.289976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289976,0.000000,0.000000,0.250000,0,0);}
.m17_c00470{transform:matrix(0.289995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289995,0.000000,0.000000,0.250000,0,0);}
.m13_c00470{transform:matrix(0.290034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290034,0.000000,0.000000,0.250000,0,0);}
.m66_c00470{transform:matrix(0.290589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290589,0.000000,0.000000,0.250000,0,0);}
.m57_c00470{transform:matrix(0.292407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292407,0.000000,0.000000,0.250000,0,0);}
.m56_c00470{transform:matrix(0.292489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292489,0.000000,0.000000,0.250000,0,0);}
.m83_c00470{transform:matrix(0.292969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292969,0.000000,0.000000,0.250000,0,0);}
.m7_c00470{transform:matrix(0.293077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293077,0.000000,0.000000,0.250000,0,0);}
.mb3_c00470{transform:matrix(0.293166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293166,0.000000,0.000000,0.250000,0,0);}
.m2c_c00470{transform:matrix(0.293239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293239,0.000000,0.000000,0.250000,0,0);}
.m9c_c00470{transform:matrix(0.293866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293866,0.000000,0.000000,0.250000,0,0);}
.m9f_c00470{transform:matrix(0.294189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294189,0.000000,0.000000,0.250000,0,0);}
.mf_c00470{transform:matrix(0.294193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294193,0.000000,0.000000,0.250000,0,0);}
.m2_c00470{transform:matrix(0.294458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294458,0.000000,0.000000,0.250000,0,0);}
.m23_c00470{transform:matrix(0.294965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294965,0.000000,0.000000,0.250000,0,0);}
.m8f_c00470{transform:matrix(0.295092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295092,0.000000,0.000000,0.250000,0,0);}
.m59_c00470{transform:matrix(0.295173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295173,0.000000,0.000000,0.250000,0,0);}
.m1a_c00470{transform:matrix(0.295448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295448,0.000000,0.000000,0.250000,0,0);}
.m6b_c00470{transform:matrix(0.296211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296211,0.000000,0.000000,0.250000,0,0);}
.mb_c00470{transform:matrix(0.296453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296453,0.000000,0.000000,0.250000,0,0);}
.m4d_c00470{transform:matrix(0.297093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297093,0.000000,0.000000,0.250000,0,0);}
.maf_c00470{transform:matrix(0.297831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297831,0.000000,0.000000,0.250000,0,0);}
.m74_c00470{transform:matrix(0.297927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297927,0.000000,0.000000,0.250000,0,0);}
.m54_c00470{transform:matrix(0.298174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298174,0.000000,0.000000,0.250000,0,0);}
.m3_c00470{transform:matrix(0.298454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298454,0.000000,0.000000,0.250000,0,0);}
.m5e_c00470{transform:matrix(0.298954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298954,0.000000,0.000000,0.250000,0,0);}
.m62_c00470{transform:matrix(0.300273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300273,0.000000,0.000000,0.250000,0,0);}
.m6d_c00470{transform:matrix(0.301368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301368,0.000000,0.000000,0.250000,0,0);}
.m87_c00470{transform:matrix(0.301442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301442,0.000000,0.000000,0.250000,0,0);}
.m26_c00470{transform:matrix(0.302796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302796,0.000000,0.000000,0.250000,0,0);}
.m42_c00470{transform:matrix(0.303602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303602,0.000000,0.000000,0.250000,0,0);}
.m47_c00470{transform:matrix(0.303907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303907,0.000000,0.000000,0.250000,0,0);}
.mc_c00470{transform:matrix(0.303998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303998,0.000000,0.000000,0.250000,0,0);}
.m5a_c00470{transform:matrix(0.304437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304437,0.000000,0.000000,0.250000,0,0);}
.m3f_c00470{transform:matrix(0.306039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306039,0.000000,0.000000,0.250000,0,0);}
.m96_c00470{transform:matrix(0.306829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306829,0.000000,0.000000,0.250000,0,0);}
.m76_c00470{transform:matrix(0.307251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307251,0.000000,0.000000,0.250000,0,0);}
.m80_c00470{transform:matrix(0.307699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307699,0.000000,0.000000,0.250000,0,0);}
.m11_c00470{transform:matrix(0.308805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308805,0.000000,0.000000,0.250000,0,0);}
.m64_c00470{transform:matrix(0.308840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308840,0.000000,0.000000,0.250000,0,0);}
.m1d_c00470{transform:matrix(0.309090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309090,0.000000,0.000000,0.250000,0,0);}
.m2f_c00470{transform:matrix(0.309831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309831,0.000000,0.000000,0.250000,0,0);}
.m28_c00470{transform:matrix(0.311267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311267,0.000000,0.000000,0.250000,0,0);}
.m84_c00470{transform:matrix(0.311997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311997,0.000000,0.000000,0.250000,0,0);}
.m18_c00470{transform:matrix(0.312074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312074,0.000000,0.000000,0.250000,0,0);}
.m2d_c00470{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m43_c00470{transform:matrix(0.312981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312981,0.000000,0.000000,0.250000,0,0);}
.ma5_c00470{transform:matrix(0.313145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313145,0.000000,0.000000,0.250000,0,0);}
.m34_c00470{transform:matrix(0.313431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313431,0.000000,0.000000,0.250000,0,0);}
.m4f_c00470{transform:matrix(0.313887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313887,0.000000,0.000000,0.250000,0,0);}
.m52_c00470{transform:matrix(0.314365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314365,0.000000,0.000000,0.250000,0,0);}
.m78_c00470{transform:matrix(0.315385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315385,0.000000,0.000000,0.250000,0,0);}
.m93_c00470{transform:matrix(0.316672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316672,0.000000,0.000000,0.250000,0,0);}
.m38_c00470{transform:matrix(0.316694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316694,0.000000,0.000000,0.250000,0,0);}
.m27_c00470{transform:matrix(0.316844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316844,0.000000,0.000000,0.250000,0,0);}
.m75_c00470{transform:matrix(0.317541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317541,0.000000,0.000000,0.250000,0,0);}
.m68_c00470{transform:matrix(0.318153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318153,0.000000,0.000000,0.250000,0,0);}
.m58_c00470{transform:matrix(0.318162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318162,0.000000,0.000000,0.250000,0,0);}
.m94_c00470{transform:matrix(0.318221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318221,0.000000,0.000000,0.250000,0,0);}
.m8d_c00470{transform:matrix(0.318349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318349,0.000000,0.000000,0.250000,0,0);}
.ma7_c00470{transform:matrix(0.318631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318631,0.000000,0.000000,0.250000,0,0);}
.m90_c00470{transform:matrix(0.319155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319155,0.000000,0.000000,0.250000,0,0);}
.m6_c00470{transform:matrix(0.319458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319458,0.000000,0.000000,0.250000,0,0);}
.m63_c00470{transform:matrix(0.319838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319838,0.000000,0.000000,0.250000,0,0);}
.m69_c00470{transform:matrix(0.320060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320060,0.000000,0.000000,0.250000,0,0);}
.m8b_c00470{transform:matrix(0.320260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320260,0.000000,0.000000,0.250000,0,0);}
.m95_c00470{transform:matrix(0.320866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320866,0.000000,0.000000,0.250000,0,0);}
.m3d_c00470{transform:matrix(0.321385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321385,0.000000,0.000000,0.250000,0,0);}
.m6f_c00470{transform:matrix(0.323284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323284,0.000000,0.000000,0.250000,0,0);}
.ma0_c00470{transform:matrix(0.323465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323465,0.000000,0.000000,0.250000,0,0);}
.mad_c00470{transform:matrix(0.325906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325906,0.000000,0.000000,0.250000,0,0);}
.m2e_c00470{transform:matrix(0.326053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326053,0.000000,0.000000,0.250000,0,0);}
.mab_c00470{transform:matrix(0.326929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326929,0.000000,0.000000,0.250000,0,0);}
.m99_c00470{transform:matrix(0.327509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327509,0.000000,0.000000,0.250000,0,0);}
.m39_c00470{transform:matrix(0.328801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328801,0.000000,0.000000,0.250000,0,0);}
.m1b_c00470{transform:matrix(0.328924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328924,0.000000,0.000000,0.250000,0,0);}
.m48_c00470{transform:matrix(0.329801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329801,0.000000,0.000000,0.250000,0,0);}
.m3a_c00470{transform:matrix(0.332379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332379,0.000000,0.000000,0.250000,0,0);}
.m8c_c00470{transform:matrix(0.333266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333266,0.000000,0.000000,0.250000,0,0);}
.m4a_c00470{transform:matrix(0.333533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333533,0.000000,0.000000,0.250000,0,0);}
.ma8_c00470{transform:matrix(0.334970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334970,0.000000,0.000000,0.250000,0,0);}
.m92_c00470{transform:matrix(0.336513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336513,0.000000,0.000000,0.250000,0,0);}
.m82_c00470{transform:matrix(0.336594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336594,0.000000,0.000000,0.250000,0,0);}
.m86_c00470{transform:matrix(0.337297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337297,0.000000,0.000000,0.250000,0,0);}
.m7c_c00470{transform:matrix(0.338744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338744,0.000000,0.000000,0.250000,0,0);}
.m6c_c00470{transform:matrix(0.339108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339108,0.000000,0.000000,0.250000,0,0);}
.m7e_c00470{transform:matrix(0.339189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339189,0.000000,0.000000,0.250000,0,0);}
.m55_c00470{transform:matrix(0.342064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342064,0.000000,0.000000,0.250000,0,0);}
.m8e_c00470{transform:matrix(0.342559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342559,0.000000,0.000000,0.250000,0,0);}
.m7f_c00470{transform:matrix(0.342733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342733,0.000000,0.000000,0.250000,0,0);}
.m5b_c00470{transform:matrix(0.342795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342795,0.000000,0.000000,0.250000,0,0);}
.m31_c00470{transform:matrix(0.343636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343636,0.000000,0.000000,0.250000,0,0);}
.m44_c00470{transform:matrix(0.344164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344164,0.000000,0.000000,0.250000,0,0);}
.m4e_c00470{transform:matrix(0.344792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344792,0.000000,0.000000,0.250000,0,0);}
.m21_c00470{transform:matrix(0.345607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345607,0.000000,0.000000,0.250000,0,0);}
.m70_c00470{transform:matrix(0.349884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349884,0.000000,0.000000,0.250000,0,0);}
.m81_c00470{transform:matrix(0.353321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353321,0.000000,0.000000,0.250000,0,0);}
.m73_c00470{transform:matrix(0.353485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353485,0.000000,0.000000,0.250000,0,0);}
.mb0_c00470{transform:matrix(0.355628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355628,0.000000,0.000000,0.250000,0,0);}
.me_c00470{transform:matrix(0.355753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355753,0.000000,0.000000,0.250000,0,0);}
.m6a_c00470{transform:matrix(0.356132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356132,0.000000,0.000000,0.250000,0,0);}
.m9d_c00470{transform:matrix(0.357175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357175,0.000000,0.000000,0.250000,0,0);}
.m89_c00470{transform:matrix(0.357328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357328,0.000000,0.000000,0.250000,0,0);}
.m3b_c00470{transform:matrix(0.359313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359313,0.000000,0.000000,0.250000,0,0);}
.m12_c00470{transform:matrix(0.361146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361146,0.000000,0.000000,0.250000,0,0);}
.m65_c00470{transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);}
.m19_c00470{transform:matrix(0.366449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366449,0.000000,0.000000,0.250000,0,0);}
.m5c_c00470{transform:matrix(0.378589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378589,0.000000,0.000000,0.250000,0,0);}
.m7a_c00470{transform:matrix(0.378849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378849,0.000000,0.000000,0.250000,0,0);}
.m3e_c00470{transform:matrix(0.385060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385060,0.000000,0.000000,0.250000,0,0);}
.m46_c00470{transform:matrix(0.391270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391270,0.000000,0.000000,0.250000,0,0);}
.m25_c00470{transform:matrix(0.397481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397481,0.000000,0.000000,0.250000,0,0);}
.m51_c00470{transform:matrix(0.403692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403692,0.000000,0.000000,0.250000,0,0);}
.ma2_c00470{transform:matrix(0.516546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516546,0.000000,0.000000,0.250000,0,0);}
.v1_c00470{vertical-align:-21.411720px;}
.v0_c00470{vertical-align:0.000000px;}
.ls8_c00470{letter-spacing:-2.661127px;}
.ls2_c00470{letter-spacing:0.000000px;}
.ls11_c00470{letter-spacing:1.207800px;}
.ls0_c00470{letter-spacing:1.556046px;}
.ls12_c00470{letter-spacing:2.144108px;}
.ls14_c00470{letter-spacing:2.265760px;}
.ls6_c00470{letter-spacing:2.395810px;}
.lsa_c00470{letter-spacing:2.752200px;}
.ls7_c00470{letter-spacing:3.405610px;}
.lsc_c00470{letter-spacing:3.459465px;}
.ls13_c00470{letter-spacing:3.465000px;}
.lsd_c00470{letter-spacing:3.524400px;}
.lsb_c00470{letter-spacing:3.702610px;}
.ls4_c00470{letter-spacing:3.801610px;}
.ls3_c00470{letter-spacing:4.167900px;}
.ls5_c00470{letter-spacing:4.197610px;}
.ls1_c00470{letter-spacing:15.402024px;}
.lsf_c00470{letter-spacing:58.449798px;}
.lse_c00470{letter-spacing:59.875398px;}
.ls10_c00470{letter-spacing:61.300998px;}
.ls9_c00470{letter-spacing:65.577798px;}
.sc__c00470{text-shadow:none;}
.sc0_c00470{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00470{-webkit-text-stroke:0px transparent;}
.sc0_c00470{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00470{word-spacing:0.000000px;}
._2_c00470{width:14.446080px;}
._0_c00470{width:33.851658px;}
._1_c00470{width:59.307732px;}
.fc0_c00470{color:transparent;}
.fs10_c00470{font-size:24.156000px;}
.fs0_c00470{font-size:27.720000px;}
.fsb_c00470{font-size:39.798000px;}
.fs5_c00470{font-size:47.916198px;}
.fs8_c00470{font-size:55.044000px;}
.fse_c00470{font-size:58.449798px;}
.fsd_c00470{font-size:59.875398px;}
.fsf_c00470{font-size:61.300998px;}
.fs7_c00470{font-size:65.577798px;}
.fs9_c00470{font-size:66.330000px;}
.fs6_c00470{font-size:68.112198px;}
.fs11_c00470{font-size:69.300000px;}
.fsc_c00470{font-size:70.488000px;}
.fsa_c00470{font-size:74.052198px;}
.fs2_c00470{font-size:76.032198px;}
.fs1_c00470{font-size:83.358000px;}
.fs3_c00470{font-size:83.952198px;}
.fs4_c00470{font-size:87.912198px;}
.y0_c00470{bottom:0.000000px;}
.y2_c00470{bottom:30.913785px;}
.y1_c00470{bottom:76.500000px;}
.y1d_c00470{bottom:133.918335px;}
.y1c_c00470{bottom:164.920185px;}
.y1b_c00470{bottom:197.713935px;}
.y1a_c00470{bottom:224.087535px;}
.y19_c00470{bottom:229.433535px;}
.y18_c00470{bottom:292.154985px;}
.y17_c00470{bottom:324.230985px;}
.y16_c00470{bottom:356.306985px;}
.y15_c00470{bottom:387.675135px;}
.y14_c00470{bottom:419.751135px;}
.y13_c00470{bottom:451.114335px;}
.y12_c00470{bottom:482.833935px;}
.y10_c00470{bottom:514.904985px;}
.y11_c00470{bottom:520.255935px;}
.yf_c00470{bottom:546.985935px;}
.ye_c00470{bottom:578.705535px;}
.yd_c00470{bottom:611.137935px;}
.yc_c00470{bottom:643.208985px;}
.yb_c00470{bottom:674.577135px;}
.ya_c00470{bottom:737.303535px;}
.y9_c00470{bottom:768.310335px;}
.y8_c00470{bottom:800.737785px;}
.y7_c00470{bottom:833.531535px;}
.y6_c00470{bottom:863.469135px;}
.y5_c00470{bottom:896.257935px;}
.y4_c00470{bottom:927.621135px;}
.y3_c00470{bottom:1063.404585px;}
.h12_c00470{height:23.695998px;}
.h11_c00470{height:23.707793px;}
.h2_c00470{height:28.911094px;}
.hf_c00470{height:38.927565px;}
.he_c00470{height:39.877015px;}
.h10_c00470{height:40.826465px;}
.h9_c00470{height:43.674813px;}
.h7_c00470{height:49.975097px;}
.hd_c00470{height:53.217644px;}
.ha_c00470{height:54.022676px;}
.hb_c00470{height:69.180117px;}
.h8_c00470{height:71.038894px;}
.h13_c00470{height:72.277734px;}
.hc_c00470{height:72.678183px;}
.h4_c00470{height:74.621444px;}
.h3_c00470{height:81.811318px;}
.h5_c00470{height:82.394491px;}
.h6_c00470{height:86.281015px;}
.h1_c00470{height:1110.000000px;}
.h0_c00470{height:1263.000000px;}
.w1_c00470{width:760.500000px;}
.w0_c00470{width:892.500000px;}
.x0_c00470{left:0.000000px;}
.x2_c00470{left:21.068085px;}
.x1_c00470{left:66.000000px;}
.x4d_c00470{left:85.244835px;}
.x14_c00470{left:86.512035px;}
.x4_c00470{left:89.209785px;}
.x3b_c00470{left:108.816735px;}
.x4e_c00470{left:118.246485px;}
.x6b_c00470{left:129.591885px;}
.x45_c00470{left:130.982835px;}
.x1a_c00470{left:139.828485px;}
.x24_c00470{left:140.882835px;}
.x3c_c00470{left:143.065785px;}
.x4f_c00470{left:150.347235px;}
.x41_c00470{left:152.490585px;}
.x64_c00470{left:161.623335px;}
.xc_c00470{left:162.831135px;}
.x1b_c00470{left:173.493435px;}
.x15_c00470{left:175.230885px;}
.x25_c00470{left:183.230085px;}
.x3d_c00470{left:184.507185px;}
.x50_c00470{left:193.639935px;}
.x36_c00470{left:195.412035px;}
.x49_c00470{left:205.564485px;}
.x5_c00470{left:206.965335px;}
.x42_c00470{left:216.964335px;}
.x16_c00470{left:218.677035px;}
.x2f_c00470{left:229.096785px;}
.x37_c00470{left:238.531485px;}
.x17_c00470{left:239.793735px;}
.x26_c00470{left:251.564835px;}
.x1c_c00470{left:262.251885px;}
.xd_c00470{left:272.711235px;}
.x18_c00470{left:274.265535px;}
.x27_c00470{left:283.576485px;}
.x69_c00470{left:285.373335px;}
.x6e_c00470{left:293.006235px;}
.x6c_c00470{left:294.486285px;}
.x54_c00470{left:296.664285px;}
.x5e_c00470{left:304.831785px;}
.x28_c00470{left:316.068285px;}
.x38_c00470{left:317.107785px;}
.x4a_c00470{left:326.913735px;}
.x46_c00470{left:328.062135px;}
.x55_c00470{left:339.882735px;}
.x5b_c00470{left:349.639185px;}
.x6_c00470{left:361.692435px;}
.x51_c00470{left:363.518985px;}
.x56_c00470{left:371.107335px;}
.x66_c00470{left:375.438585px;}
.x7_c00470{left:383.437785px;}
.x67_c00470{left:394.278285px;}
.x1d_c00470{left:395.347485px;}
.x30_c00470{left:404.257485px;}
.xe_c00470{left:405.499935px;}
.x43_c00470{left:406.569135px;}
.x6a_c00470{left:415.305885px;}
.x5f_c00470{left:416.805735px;}
.x62_c00470{left:419.156985px;}
.x6d_c00470{left:424.755435px;}
.x8_c00470{left:427.245285px;}
.x1e_c00470{left:428.928285px;}
.x39_c00470{left:439.026285px;}
.x29_c00470{left:449.950935px;}
.x4b_c00470{left:451.030035px;}
.x1f_c00470{left:460.905285px;}
.x60_c00470{left:471.760635px;}
.x3a_c00470{left:472.814985px;}
.x44_c00470{left:483.452535px;}
.x31_c00470{left:505.950285px;}
.x9_c00470{left:515.028585px;}
.x3e_c00470{left:517.399635px;}
.xf_c00470{left:527.388735px;}
.x32_c00470{left:538.694535px;}
.x2a_c00470{left:549.158835px;}
.x47_c00470{left:550.381485px;}
.x10_c00470{left:558.291585px;}
.x20_c00470{left:559.816185px;}
.x57_c00470{left:561.509085px;}
.x6f_c00470{left:569.211285px;}
.x48_c00470{left:571.394235px;}
.x68_c00470{left:572.557485px;}
.x2b_c00470{left:581.903085px;}
.x63_c00470{left:582.932685px;}
.x11_c00470{left:592.075335px;}
.x58_c00470{left:594.273135px;}
.x33_c00470{left:604.757235px;}
.x19_c00470{left:609.128085px;}
.x3f_c00470{left:614.672085px;}
.x5c_c00470{left:616.518435px;}
.x52_c00470{left:617.914335px;}
.x61_c00470{left:625.146285px;}
.x34_c00470{left:626.987685px;}
.x21_c00470{left:637.189635px;}
.x40_c00470{left:647.317335px;}
.x4c_c00470{left:649.252785px;}
.xa_c00470{left:658.380585px;}
.x35_c00470{left:660.306135px;}
.x2c_c00470{left:661.360485px;}
.x59_c00470{left:670.567485px;}
.x22_c00470{left:680.472435px;}
.x12_c00470{left:681.734685px;}
.x65_c00470{left:682.754385px;}
.x53_c00470{left:683.996835px;}
.xb_c00470{left:691.520835px;}
.x2d_c00470{left:692.990985px;}
.x3_c00470{left:696.287685px;}
.x5d_c00470{left:704.816535px;}
.x13_c00470{left:715.157085px;}
.x23_c00470{left:725.735235px;}
.x5a_c00470{left:726.908385px;}
.x2e_c00470{left:737.184585px;}
@media print{
.v1_c00470{vertical-align:-19.032640pt;}
.v0_c00470{vertical-align:0.000000pt;}
.ls8_c00470{letter-spacing:-2.365446pt;}
.ls2_c00470{letter-spacing:0.000000pt;}
.ls11_c00470{letter-spacing:1.073600pt;}
.ls0_c00470{letter-spacing:1.383152pt;}
.ls12_c00470{letter-spacing:1.905874pt;}
.ls14_c00470{letter-spacing:2.014008pt;}
.ls6_c00470{letter-spacing:2.129609pt;}
.lsa_c00470{letter-spacing:2.446400pt;}
.ls7_c00470{letter-spacing:3.027209pt;}
.lsc_c00470{letter-spacing:3.075080pt;}
.ls13_c00470{letter-spacing:3.080000pt;}
.lsd_c00470{letter-spacing:3.132800pt;}
.lsb_c00470{letter-spacing:3.291209pt;}
.ls4_c00470{letter-spacing:3.379209pt;}
.ls3_c00470{letter-spacing:3.704800pt;}
.ls5_c00470{letter-spacing:3.731209pt;}
.ls1_c00470{letter-spacing:13.690688pt;}
.lsf_c00470{letter-spacing:51.955376pt;}
.lse_c00470{letter-spacing:53.222576pt;}
.ls10_c00470{letter-spacing:54.489776pt;}
.ls9_c00470{letter-spacing:58.291376pt;}
.ws0_c00470{word-spacing:0.000000pt;}
._2_c00470{width:12.840960pt;}
._0_c00470{width:30.090362pt;}
._1_c00470{width:52.717984pt;}
.fs10_c00470{font-size:21.472000pt;}
.fs0_c00470{font-size:24.640000pt;}
.fsb_c00470{font-size:35.376000pt;}
.fs5_c00470{font-size:42.592176pt;}
.fs8_c00470{font-size:48.928000pt;}
.fse_c00470{font-size:51.955376pt;}
.fsd_c00470{font-size:53.222576pt;}
.fsf_c00470{font-size:54.489776pt;}
.fs7_c00470{font-size:58.291376pt;}
.fs9_c00470{font-size:58.960000pt;}
.fs6_c00470{font-size:60.544176pt;}
.fs11_c00470{font-size:61.600000pt;}
.fsc_c00470{font-size:62.656000pt;}
.fsa_c00470{font-size:65.824176pt;}
.fs2_c00470{font-size:67.584176pt;}
.fs1_c00470{font-size:74.096000pt;}
.fs3_c00470{font-size:74.624176pt;}
.fs4_c00470{font-size:78.144176pt;}
.y0_c00470{bottom:0.000000pt;}
.y2_c00470{bottom:27.478920pt;}
.y1_c00470{bottom:68.000000pt;}
.y1d_c00470{bottom:119.038520pt;}
.y1c_c00470{bottom:146.595720pt;}
.y1b_c00470{bottom:175.745720pt;}
.y1a_c00470{bottom:199.188920pt;}
.y19_c00470{bottom:203.940920pt;}
.y18_c00470{bottom:259.693320pt;}
.y17_c00470{bottom:288.205320pt;}
.y16_c00470{bottom:316.717320pt;}
.y15_c00470{bottom:344.600120pt;}
.y14_c00470{bottom:373.112120pt;}
.y13_c00470{bottom:400.990520pt;}
.y12_c00470{bottom:429.185720pt;}
.y10_c00470{bottom:457.693320pt;}
.y11_c00470{bottom:462.449720pt;}
.yf_c00470{bottom:486.209720pt;}
.ye_c00470{bottom:514.404920pt;}
.yd_c00470{bottom:543.233720pt;}
.yc_c00470{bottom:571.741320pt;}
.yb_c00470{bottom:599.624120pt;}
.ya_c00470{bottom:655.380920pt;}
.y9_c00470{bottom:682.942520pt;}
.y8_c00470{bottom:711.766920pt;}
.y7_c00470{bottom:740.916920pt;}
.y6_c00470{bottom:767.528120pt;}
.y5_c00470{bottom:796.673720pt;}
.y4_c00470{bottom:824.552120pt;}
.y3_c00470{bottom:945.248520pt;}
.h12_c00470{height:21.063109pt;}
.h11_c00470{height:21.073594pt;}
.h2_c00470{height:25.698750pt;}
.hf_c00470{height:34.602280pt;}
.he_c00470{height:35.446236pt;}
.h10_c00470{height:36.290191pt;}
.h9_c00470{height:38.822056pt;}
.h7_c00470{height:44.422309pt;}
.hd_c00470{height:47.304573pt;}
.ha_c00470{height:48.020156pt;}
.hb_c00470{height:61.493438pt;}
.h8_c00470{height:63.145684pt;}
.h13_c00470{height:64.246875pt;}
.hc_c00470{height:64.602829pt;}
.h4_c00470{height:66.330173pt;}
.h3_c00470{height:72.721172pt;}
.h5_c00470{height:73.239548pt;}
.h6_c00470{height:76.694235pt;}
.h1_c00470{height:986.666667pt;}
.h0_c00470{height:1122.666667pt;}
.w1_c00470{width:676.000000pt;}
.w0_c00470{width:793.333333pt;}
.x0_c00470{left:0.000000pt;}
.x2_c00470{left:18.727187pt;}
.x1_c00470{left:58.666667pt;}
.x4d_c00470{left:75.773187pt;}
.x14_c00470{left:76.899587pt;}
.x4_c00470{left:79.297587pt;}
.x3b_c00470{left:96.725987pt;}
.x4e_c00470{left:105.107987pt;}
.x6b_c00470{left:115.192787pt;}
.x45_c00470{left:116.429187pt;}
.x1a_c00470{left:124.291987pt;}
.x24_c00470{left:125.229187pt;}
.x3c_c00470{left:127.169587pt;}
.x4f_c00470{left:133.641987pt;}
.x41_c00470{left:135.547187pt;}
.x64_c00470{left:143.665187pt;}
.xc_c00470{left:144.738787pt;}
.x1b_c00470{left:154.216387pt;}
.x15_c00470{left:155.760787pt;}
.x25_c00470{left:162.871187pt;}
.x3d_c00470{left:164.006387pt;}
.x50_c00470{left:172.124387pt;}
.x36_c00470{left:173.699587pt;}
.x49_c00470{left:182.723987pt;}
.x5_c00470{left:183.969187pt;}
.x42_c00470{left:192.857187pt;}
.x16_c00470{left:194.379587pt;}
.x2f_c00470{left:203.641587pt;}
.x37_c00470{left:212.027987pt;}
.x17_c00470{left:213.149987pt;}
.x26_c00470{left:223.613187pt;}
.x1c_c00470{left:233.112787pt;}
.xd_c00470{left:242.409987pt;}
.x18_c00470{left:243.791587pt;}
.x27_c00470{left:252.067987pt;}
.x69_c00470{left:253.665187pt;}
.x6e_c00470{left:260.449987pt;}
.x6c_c00470{left:261.765587pt;}
.x54_c00470{left:263.701587pt;}
.x5e_c00470{left:270.961587pt;}
.x28_c00470{left:280.949587pt;}
.x38_c00470{left:281.873587pt;}
.x4a_c00470{left:290.589987pt;}
.x46_c00470{left:291.610787pt;}
.x55_c00470{left:302.117987pt;}
.x5b_c00470{left:310.790387pt;}
.x6_c00470{left:321.504387pt;}
.x51_c00470{left:323.127987pt;}
.x56_c00470{left:329.873187pt;}
.x66_c00470{left:333.723187pt;}
.x7_c00470{left:340.833587pt;}
.x67_c00470{left:350.469587pt;}
.x1d_c00470{left:351.419987pt;}
.x30_c00470{left:359.339987pt;}
.xe_c00470{left:360.444387pt;}
.x43_c00470{left:361.394787pt;}
.x6a_c00470{left:369.160787pt;}
.x5f_c00470{left:370.493987pt;}
.x62_c00470{left:372.583987pt;}
.x6d_c00470{left:377.560387pt;}
.x8_c00470{left:379.773587pt;}
.x1e_c00470{left:381.269587pt;}
.x39_c00470{left:390.245587pt;}
.x29_c00470{left:399.956387pt;}
.x4b_c00470{left:400.915587pt;}
.x1f_c00470{left:409.693587pt;}
.x60_c00470{left:419.342787pt;}
.x3a_c00470{left:420.279987pt;}
.x44_c00470{left:429.735587pt;}
.x31_c00470{left:449.733587pt;}
.x9_c00470{left:457.803187pt;}
.x3e_c00470{left:459.910787pt;}
.xf_c00470{left:468.789987pt;}
.x32_c00470{left:478.839587pt;}
.x2a_c00470{left:488.141187pt;}
.x47_c00470{left:489.227987pt;}
.x10_c00470{left:496.259187pt;}
.x20_c00470{left:497.614387pt;}
.x57_c00470{left:499.119187pt;}
.x6f_c00470{left:505.965587pt;}
.x48_c00470{left:507.905987pt;}
.x68_c00470{left:508.939987pt;}
.x2b_c00470{left:517.247187pt;}
.x63_c00470{left:518.162387pt;}
.x11_c00470{left:526.289187pt;}
.x58_c00470{left:528.242787pt;}
.x33_c00470{left:537.561987pt;}
.x19_c00470{left:541.447187pt;}
.x3f_c00470{left:546.375187pt;}
.x5c_c00470{left:548.016387pt;}
.x52_c00470{left:549.257187pt;}
.x61_c00470{left:555.685587pt;}
.x34_c00470{left:557.322387pt;}
.x21_c00470{left:566.390787pt;}
.x40_c00470{left:575.393187pt;}
.x4c_c00470{left:577.113587pt;}
.xa_c00470{left:585.227187pt;}
.x35_c00470{left:586.938787pt;}
.x2c_c00470{left:587.875987pt;}
.x59_c00470{left:596.059987pt;}
.x22_c00470{left:604.864387pt;}
.x12_c00470{left:605.986387pt;}
.x65_c00470{left:606.892787pt;}
.x53_c00470{left:607.997187pt;}
.xb_c00470{left:614.685187pt;}
.x2d_c00470{left:615.991987pt;}
.x3_c00470{left:618.922387pt;}
.x5d_c00470{left:626.503587pt;}
.x13_c00470{left:635.695187pt;}
.x23_c00470{left:645.097987pt;}
.x5a_c00470{left:646.140787pt;}
.x2e_c00470{left:655.275187pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_aa54f5d04e2cb89718c888dc.woff2')format("woff");}.ff1_c00471{font-family:ff1_c00471;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00471;src:url('chunks/assets/font_e262aea66b8350c9646c90e6.woff2')format("woff");}.ff2_c00471{font-family:ff2_c00471;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00471;src:url('chunks/assets/font_ecaa60f6d4cf91db7bae0ec1.woff2')format("woff");}.ff3_c00471{font-family:ff3_c00471;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00471;src:url('chunks/assets/font_99f46ba0d9724cbde4172da9.woff2')format("woff");}.ff4_c00471{font-family:ff4_c00471;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00471;src:url('chunks/assets/font_edcc006c864d99e56da12f3a.woff2')format("woff");}.ff5_c00471{font-family:ff5_c00471;line-height:0.689941;font-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_c00471{transform:matrix(0.077991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077991,0.000000,0.000000,0.250000,0,0);}
.mf_c00471{transform:matrix(0.081431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081431,0.000000,0.000000,0.250000,0,0);}
.m11_c00471{transform:matrix(0.087073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087073,0.000000,0.000000,0.250000,0,0);}
.m10_c00471{transform:matrix(0.088943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088943,0.000000,0.000000,0.250000,0,0);}
.m16_c00471{transform:matrix(0.113782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113782,0.000000,0.000000,0.250000,0,0);}
.m1_c00471{transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);}
.m15_c00471{transform:matrix(0.165381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165381,0.000000,0.000000,0.250000,0,0);}
.m14_c00471{transform:matrix(0.174419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174419,0.000000,0.000000,0.250000,0,0);}
.m13_c00471{transform:matrix(0.216238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216238,0.000000,0.000000,0.250000,0,0);}
.m50_c00471{transform:matrix(0.221098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221098,0.000000,0.000000,0.250000,0,0);}
.m80_c00471{transform:matrix(0.234722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234722,0.000000,0.000000,0.250000,0,0);}
.m0_c00471{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m18_c00471{transform:matrix(0.250376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250376,0.000000,0.000000,0.250000,0,0);}
.m57_c00471{transform:matrix(0.254979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254979,0.000000,0.000000,0.250000,0,0);}
.m3f_c00471{transform:matrix(0.257314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257314,0.000000,0.000000,0.250000,0,0);}
.m4f_c00471{transform:matrix(0.262004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262004,0.000000,0.000000,0.250000,0,0);}
.m1d_c00471{transform:matrix(0.263189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263189,0.000000,0.000000,0.250000,0,0);}
.m2c_c00471{transform:matrix(0.266914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266914,0.000000,0.000000,0.250000,0,0);}
.m7e_c00471{transform:matrix(0.269115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269115,0.000000,0.000000,0.250000,0,0);}
.m77_c00471{transform:matrix(0.269263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269263,0.000000,0.000000,0.250000,0,0);}
.mb_c00471{transform:matrix(0.269985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269985,0.000000,0.000000,0.250000,0,0);}
.m61_c00471{transform:matrix(0.270385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270385,0.000000,0.000000,0.250000,0,0);}
.m21_c00471{transform:matrix(0.270582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270582,0.000000,0.000000,0.250000,0,0);}
.m1b_c00471{transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);}
.m82_c00471{transform:matrix(0.272173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272173,0.000000,0.000000,0.250000,0,0);}
.m55_c00471{transform:matrix(0.272477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272477,0.000000,0.000000,0.250000,0,0);}
.m67_c00471{transform:matrix(0.274532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274532,0.000000,0.000000,0.250000,0,0);}
.m28_c00471{transform:matrix(0.274558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274558,0.000000,0.000000,0.250000,0,0);}
.m1a_c00471{transform:matrix(0.274934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274934,0.000000,0.000000,0.250000,0,0);}
.m46_c00471{transform:matrix(0.275231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275231,0.000000,0.000000,0.250000,0,0);}
.ma_c00471{transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);}
.m7_c00471{transform:matrix(0.277012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277012,0.000000,0.000000,0.250000,0,0);}
.m4e_c00471{transform:matrix(0.277335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277335,0.000000,0.000000,0.250000,0,0);}
.m49_c00471{transform:matrix(0.277674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277674,0.000000,0.000000,0.250000,0,0);}
.m4b_c00471{transform:matrix(0.278398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278398,0.000000,0.000000,0.250000,0,0);}
.m70_c00471{transform:matrix(0.278545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278545,0.000000,0.000000,0.250000,0,0);}
.m3_c00471{transform:matrix(0.279337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279337,0.000000,0.000000,0.250000,0,0);}
.m48_c00471{transform:matrix(0.279348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279348,0.000000,0.000000,0.250000,0,0);}
.m6d_c00471{transform:matrix(0.280090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280090,0.000000,0.000000,0.250000,0,0);}
.m22_c00471{transform:matrix(0.281059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281059,0.000000,0.000000,0.250000,0,0);}
.m6c_c00471{transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00471{transform:matrix(0.282619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282619,0.000000,0.000000,0.250000,0,0);}
.m73_c00471{transform:matrix(0.283635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283635,0.000000,0.000000,0.250000,0,0);}
.m84_c00471{transform:matrix(0.285119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285119,0.000000,0.000000,0.250000,0,0);}
.m1c_c00471{transform:matrix(0.285419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285419,0.000000,0.000000,0.250000,0,0);}
.m2b_c00471{transform:matrix(0.285866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285866,0.000000,0.000000,0.250000,0,0);}
.m43_c00471{transform:matrix(0.285877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285877,0.000000,0.000000,0.250000,0,0);}
.m24_c00471{transform:matrix(0.286726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286726,0.000000,0.000000,0.250000,0,0);}
.m66_c00471{transform:matrix(0.289265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289265,0.000000,0.000000,0.250000,0,0);}
.m7d_c00471{transform:matrix(0.291118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291118,0.000000,0.000000,0.250000,0,0);}
.m30_c00471{transform:matrix(0.292976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292976,0.000000,0.000000,0.250000,0,0);}
.m7c_c00471{transform:matrix(0.293060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293060,0.000000,0.000000,0.250000,0,0);}
.m39_c00471{transform:matrix(0.293677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293677,0.000000,0.000000,0.250000,0,0);}
.m6e_c00471{transform:matrix(0.294538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294538,0.000000,0.000000,0.250000,0,0);}
.m75_c00471{transform:matrix(0.295448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295448,0.000000,0.000000,0.250000,0,0);}
.m54_c00471{transform:matrix(0.296261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296261,0.000000,0.000000,0.250000,0,0);}
.m36_c00471{transform:matrix(0.297537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297537,0.000000,0.000000,0.250000,0,0);}
.m58_c00471{transform:matrix(0.297697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297697,0.000000,0.000000,0.250000,0,0);}
.m42_c00471{transform:matrix(0.298313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298313,0.000000,0.000000,0.250000,0,0);}
.m2_c00471{transform:matrix(0.298520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298520,0.000000,0.000000,0.250000,0,0);}
.m7f_c00471{transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);}
.m17_c00471{transform:matrix(0.299640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299640,0.000000,0.000000,0.250000,0,0);}
.m2d_c00471{transform:matrix(0.300870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300870,0.000000,0.000000,0.250000,0,0);}
.m5_c00471{transform:matrix(0.300918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300918,0.000000,0.000000,0.250000,0,0);}
.m4a_c00471{transform:matrix(0.302019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302019,0.000000,0.000000,0.250000,0,0);}
.m29_c00471{transform:matrix(0.302110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302110,0.000000,0.000000,0.250000,0,0);}
.m7a_c00471{transform:matrix(0.302254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302254,0.000000,0.000000,0.250000,0,0);}
.m4c_c00471{transform:matrix(0.302351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302351,0.000000,0.000000,0.250000,0,0);}
.m38_c00471{transform:matrix(0.303109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303109,0.000000,0.000000,0.250000,0,0);}
.m2e_c00471{transform:matrix(0.303828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303828,0.000000,0.000000,0.250000,0,0);}
.m32_c00471{transform:matrix(0.304437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304437,0.000000,0.000000,0.250000,0,0);}
.m79_c00471{transform:matrix(0.305249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305249,0.000000,0.000000,0.250000,0,0);}
.m7b_c00471{transform:matrix(0.306261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306261,0.000000,0.000000,0.250000,0,0);}
.m3e_c00471{transform:matrix(0.306390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306390,0.000000,0.000000,0.250000,0,0);}
.m3b_c00471{transform:matrix(0.306450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306450,0.000000,0.000000,0.250000,0,0);}
.me_c00471{transform:matrix(0.306808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306808,0.000000,0.000000,0.250000,0,0);}
.m4_c00471{transform:matrix(0.307699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307699,0.000000,0.000000,0.250000,0,0);}
.m5c_c00471{transform:matrix(0.308056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308056,0.000000,0.000000,0.250000,0,0);}
.m2f_c00471{transform:matrix(0.308735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308735,0.000000,0.000000,0.250000,0,0);}
.m86_c00471{transform:matrix(0.308870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308870,0.000000,0.000000,0.250000,0,0);}
.m6b_c00471{transform:matrix(0.308879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308879,0.000000,0.000000,0.250000,0,0);}
.m3a_c00471{transform:matrix(0.309310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309310,0.000000,0.000000,0.250000,0,0);}
.m3d_c00471{transform:matrix(0.309441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309441,0.000000,0.000000,0.250000,0,0);}
.m1e_c00471{transform:matrix(0.309557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309557,0.000000,0.000000,0.250000,0,0);}
.m44_c00471{transform:matrix(0.310084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310084,0.000000,0.000000,0.250000,0,0);}
.m37_c00471{transform:matrix(0.311060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311060,0.000000,0.000000,0.250000,0,0);}
.m83_c00471{transform:matrix(0.311861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311861,0.000000,0.000000,0.250000,0,0);}
.m1f_c00471{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);}
.m53_c00471{transform:matrix(0.313104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313104,0.000000,0.000000,0.250000,0,0);}
.m69_c00471{transform:matrix(0.313260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313260,0.000000,0.000000,0.250000,0,0);}
.mc_c00471{transform:matrix(0.313762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313762,0.000000,0.000000,0.250000,0,0);}
.m81_c00471{transform:matrix(0.314645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314645,0.000000,0.000000,0.250000,0,0);}
.m74_c00471{transform:matrix(0.316718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316718,0.000000,0.000000,0.250000,0,0);}
.m51_c00471{transform:matrix(0.318037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318037,0.000000,0.000000,0.250000,0,0);}
.m26_c00471{transform:matrix(0.318122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318122,0.000000,0.000000,0.250000,0,0);}
.m5e_c00471{transform:matrix(0.318221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318221,0.000000,0.000000,0.250000,0,0);}
.m76_c00471{transform:matrix(0.318831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318831,0.000000,0.000000,0.250000,0,0);}
.m35_c00471{transform:matrix(0.320282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320282,0.000000,0.000000,0.250000,0,0);}
.m33_c00471{transform:matrix(0.320510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320510,0.000000,0.000000,0.250000,0,0);}
.m31_c00471{transform:matrix(0.320910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320910,0.000000,0.000000,0.250000,0,0);}
.m52_c00471{transform:matrix(0.321104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321104,0.000000,0.000000,0.250000,0,0);}
.m64_c00471{transform:matrix(0.325964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325964,0.000000,0.000000,0.250000,0,0);}
.m59_c00471{transform:matrix(0.326168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326168,0.000000,0.000000,0.250000,0,0);}
.m78_c00471{transform:matrix(0.326306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326306,0.000000,0.000000,0.250000,0,0);}
.m9_c00471{transform:matrix(0.327544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327544,0.000000,0.000000,0.250000,0,0);}
.m62_c00471{transform:matrix(0.329276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329276,0.000000,0.000000,0.250000,0,0);}
.m2a_c00471{transform:matrix(0.332005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332005,0.000000,0.000000,0.250000,0,0);}
.m72_c00471{transform:matrix(0.336143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336143,0.000000,0.000000,0.250000,0,0);}
.m6f_c00471{transform:matrix(0.337184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337184,0.000000,0.000000,0.250000,0,0);}
.m25_c00471{transform:matrix(0.337970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337970,0.000000,0.000000,0.250000,0,0);}
.m5a_c00471{transform:matrix(0.339415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339415,0.000000,0.000000,0.250000,0,0);}
.m63_c00471{transform:matrix(0.340816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340816,0.000000,0.000000,0.250000,0,0);}
.m45_c00471{transform:matrix(0.340967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340967,0.000000,0.000000,0.250000,0,0);}
.m65_c00471{transform:matrix(0.341044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341044,0.000000,0.000000,0.250000,0,0);}
.m34_c00471{transform:matrix(0.343483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343483,0.000000,0.000000,0.250000,0,0);}
.m68_c00471{transform:matrix(0.343627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343627,0.000000,0.000000,0.250000,0,0);}
.m3c_c00471{transform:matrix(0.343636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343636,0.000000,0.000000,0.250000,0,0);}
.md_c00471{transform:matrix(0.344194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344194,0.000000,0.000000,0.250000,0,0);}
.m20_c00471{transform:matrix(0.349884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349884,0.000000,0.000000,0.250000,0,0);}
.m19_c00471{transform:matrix(0.350707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350707,0.000000,0.000000,0.250000,0,0);}
.m47_c00471{transform:matrix(0.351700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351700,0.000000,0.000000,0.250000,0,0);}
.m6_c00471{transform:matrix(0.352226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352226,0.000000,0.000000,0.250000,0,0);}
.m60_c00471{transform:matrix(0.353402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353402,0.000000,0.000000,0.250000,0,0);}
.m41_c00471{transform:matrix(0.353851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353851,0.000000,0.000000,0.250000,0,0);}
.m85_c00471{transform:matrix(0.356132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356132,0.000000,0.000000,0.250000,0,0);}
.m56_c00471{transform:matrix(0.356827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356827,0.000000,0.000000,0.250000,0,0);}
.m4d_c00471{transform:matrix(0.360217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360217,0.000000,0.000000,0.250000,0,0);}
.m6a_c00471{transform:matrix(0.366449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366449,0.000000,0.000000,0.250000,0,0);}
.m71_c00471{transform:matrix(0.369006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369006,0.000000,0.000000,0.250000,0,0);}
.m5b_c00471{transform:matrix(0.375214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375214,0.000000,0.000000,0.250000,0,0);}
.m40_c00471{transform:matrix(0.378589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378589,0.000000,0.000000,0.250000,0,0);}
.m23_c00471{transform:matrix(0.378849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378849,0.000000,0.000000,0.250000,0,0);}
.m8_c00471{transform:matrix(0.391270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391270,0.000000,0.000000,0.250000,0,0);}
.m27_c00471{transform:matrix(0.397481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397481,0.000000,0.000000,0.250000,0,0);}
.m5d_c00471{transform:matrix(0.403692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403692,0.000000,0.000000,0.250000,0,0);}
.v0_c00471{vertical-align:0.000000px;}
.lsb_c00471{letter-spacing:-2.688840px;}
.ls17_c00471{letter-spacing:-2.661127px;}
.ls19_c00471{letter-spacing:-1.186102px;}
.lsa_c00471{letter-spacing:-0.125453px;}
.ls3_c00471{letter-spacing:0.000000px;}
.lsf_c00471{letter-spacing:0.022810px;}
.ls2_c00471{letter-spacing:0.121652px;}
.ls10_c00471{letter-spacing:0.182477px;}
.lsc_c00471{letter-spacing:0.291456px;}
.ls1a_c00471{letter-spacing:1.018831px;}
.ls1_c00471{letter-spacing:1.674763px;}
.ls4_c00471{letter-spacing:2.117259px;}
.ls12_c00471{letter-spacing:2.457008px;}
.ls13_c00471{letter-spacing:2.843604px;}
.lse_c00471{letter-spacing:3.056494px;}
.lsd_c00471{letter-spacing:3.078900px;}
.ls18_c00471{letter-spacing:3.149784px;}
.ls14_c00471{letter-spacing:3.306610px;}
.ls15_c00471{letter-spacing:3.368226px;}
.ls8_c00471{letter-spacing:3.535497px;}
.ls7_c00471{letter-spacing:3.603610px;}
.ls16_c00471{letter-spacing:3.794007px;}
.ls6_c00471{letter-spacing:3.801610px;}
.ls11_c00471{letter-spacing:3.880810px;}
.ls1b_c00471{letter-spacing:3.920400px;}
.ls1c_c00471{letter-spacing:4.118400px;}
.ls0_c00471{letter-spacing:12.089011px;}
.ls5_c00471{letter-spacing:29.937798px;}
.ls1d_c00471{letter-spacing:51.321798px;}
.ls9_c00471{letter-spacing:74.131398px;}
.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:-22.543547px;}
.ws2_c00471{word-spacing:-22.064544px;}
.ws3_c00471{word-spacing:0.000000px;}
.ws1_c00471{word-spacing:2.612016px;}
._3_c00471{margin-left:-18.745056px;}
._2_c00471{margin-left:-15.922210px;}
._6_c00471{margin-left:-8.971831px;}
._4_c00471{margin-left:-6.550632px;}
._5_c00471{margin-left:-4.592349px;}
._1_c00471{width:10.264221px;}
._0_c00471{width:13.838009px;}
._8_c00471{width:32.695750px;}
._7_c00471{width:78.125256px;}
.fc0_c00471{color:transparent;}
.fs1_c00471{font-size:22.572000px;}
.fs3_c00471{font-size:25.344000px;}
.fs0_c00471{font-size:28.314000px;}
.fs4_c00471{font-size:29.937798px;}
.fse_c00471{font-size:37.224000px;}
.fsa_c00471{font-size:47.520000px;}
.fs15_c00471{font-size:51.321798px;}
.fs9_c00471{font-size:57.024000px;}
.fsf_c00471{font-size:61.578000px;}
.fs12_c00471{font-size:66.132198px;}
.fs6_c00471{font-size:72.072198px;}
.fs8_c00471{font-size:74.131398px;}
.fs5_c00471{font-size:76.032198px;}
.fsb_c00471{font-size:76.824000px;}
.fs11_c00471{font-size:77.022198px;}
.fs10_c00471{font-size:77.616198px;}
.fs13_c00471{font-size:78.408000px;}
.fs2_c00471{font-size:79.596198px;}
.fs14_c00471{font-size:82.368000px;}
.fsc_c00471{font-size:91.080000px;}
.fsd_c00471{font-size:103.356198px;}
.fs7_c00471{font-size:107.712198px;}
.y0_c00471{bottom:0.000000px;}
.y3_c00471{bottom:31.270185px;}
.y1_c00471{bottom:76.500000px;}
.y20_c00471{bottom:106.831935px;}
.y1f_c00471{bottom:139.264335px;}
.y1e_c00471{bottom:173.117385px;}
.y1d_c00471{bottom:236.917935px;}
.y1c_c00471{bottom:268.276185px;}
.y1b_c00471{bottom:299.287935px;}
.y1a_c00471{bottom:331.720335px;}
.y19_c00471{bottom:363.796335px;}
.y18_c00471{bottom:395.867385px;}
.y17_c00471{bottom:427.230585px;}
.y16_c00471{bottom:458.950185px;}
.y15_c00471{bottom:490.674735px;}
.y14_c00471{bottom:553.396185px;}
.y13_c00471{bottom:585.828585px;}
.y12_c00471{bottom:617.191785px;}
.y11_c00471{bottom:649.272735px;}
.yf_c00471{bottom:680.987385px;}
.y10_c00471{bottom:682.417935px;}
.yc_c00471{bottom:742.649535px;}
.ye_c00471{bottom:769.379535px;}
.yb_c00471{bottom:771.517935px;}
.ya_c00471{bottom:773.651385px;}
.yd_c00471{bottom:778.997385px;}
.y2_c00471{bottom:785.773935px;}
.y9_c00471{bottom:893.050335px;}
.y8_c00471{bottom:900.534735px;}
.y7_c00471{bottom:934.031385px;}
.y6_c00471{bottom:1040.951385px;}
.y5_c00471{bottom:1051.286985px;}
.y4_c00471{bottom:1064.830185px;}
.h6_c00471{height:19.938573px;}
.h3_c00471{height:23.541891px;}
.h5_c00471{height:24.873750px;}
.h2_c00471{height:29.530617px;}
.h1a_c00471{height:34.180317px;}
.h11_c00471{height:38.823469px;}
.hd_c00471{height:46.638281px;}
.hb_c00471{height:49.371511px;}
.hc_c00471{height:59.474250px;}
.h12_c00471{height:60.435439px;}
.h16_c00471{height:68.973816px;}
.h13_c00471{height:70.734921px;}
.h7_c00471{height:74.621444px;}
.h8_c00471{height:75.169050px;}
.he_c00471{height:75.398555px;}
.h15_c00471{height:75.593075px;}
.h14_c00471{height:76.176054px;}
.ha_c00471{height:76.626200px;}
.h18_c00471{height:76.953164px;}
.h4_c00471{height:78.119315px;}
.h17_c00471{height:80.125031px;}
.h19_c00471{height:80.839688px;}
.hf_c00471{height:94.993594px;}
.h9_c00471{height:105.713632px;}
.h10_c00471{height:107.797285px;}
.h1_c00471{height:1110.000000px;}
.h0_c00471{height:1263.000000px;}
.w1_c00471{width:760.500000px;}
.w0_c00471{width:892.500000px;}
.x0_c00471{left:0.000000px;}
.x3_c00471{left:24.245985px;}
.x2_c00471{left:48.090135px;}
.x1_c00471{left:66.000000px;}
.x57_c00471{left:88.843485px;}
.xf_c00471{left:89.863185px;}
.x6_c00471{left:92.036235px;}
.x58_c00471{left:121.637235px;}
.x34_c00471{left:123.587535px;}
.x2d_c00471{left:124.641885px;}
.x4f_c00471{left:134.338935px;}
.x10_c00471{left:144.417135px;}
.x24_c00471{left:146.243685px;}
.x4a_c00471{left:153.713235px;}
.x11_c00471{left:156.000135px;}
.x48_c00471{left:166.355535px;}
.x40_c00471{left:176.661435px;}
.x3f_c00471{left:187.907835px;}
.x25_c00471{left:190.194735px;}
.x7_c00471{left:198.184035px;}
.x5a_c00471{left:199.797735px;}
.x41_c00471{left:208.960185px;}
.x2e_c00471{left:211.568835px;}
.x12_c00471{left:221.562885px;}
.x21_c00471{left:223.374585px;}
.x8_c00471{left:231.056985px;}
.x55_c00471{left:232.190535px;}
.x4b_c00471{left:243.367635px;}
.x13_c00471{left:254.024985px;}
.x26_c00471{left:265.632735px;}
.x59_c00471{left:267.048435px;}
.x14_c00471{left:276.389085px;}
.x4c_c00471{left:277.829535px;}
.x42_c00471{left:288.274035px;}
.x47_c00471{left:297.738435px;}
.x51_c00471{left:299.287785px;}
.x9_c00471{left:310.598535px;}
.x15_c00471{left:321.627135px;}
.x35_c00471{left:330.586635px;}
.x2f_c00471{left:332.700285px;}
.xa_c00471{left:342.733935px;}
.x16_c00471{left:352.653735px;}
.x27_c00471{left:354.920835px;}
.x36_c00471{left:364.028835px;}
.x5d_c00471{left:365.939535px;}
.x49_c00471{left:376.591935px;}
.x28_c00471{left:388.293735px;}
.x17_c00471{left:396.827535px;}
.x53_c00471{left:399.282735px;}
.x37_c00471{left:408.959985px;}
.x5b_c00471{left:411.464685px;}
.xb_c00471{left:420.844935px;}
.x30_c00471{left:431.838885px;}
.x43_c00471{left:433.244685px;}
.x4d_c00471{left:443.822835px;}
.x60_c00471{left:454.356435px;}
.x3b_c00471{left:455.425635px;}
.x18_c00471{left:459.841035px;}
.xc_c00471{left:464.276235px;}
.x19_c00471{left:466.325535px;}
.x3c_c00471{left:476.388885px;}
.x38_c00471{left:477.472935px;}
.x29_c00471{left:488.516385px;}
.xd_c00471{left:498.144135px;}
.x4e_c00471{left:509.237085px;}
.x3d_c00471{left:510.271635px;}
.x52_c00471{left:511.543785px;}
.x1a_c00471{left:521.013135px;}
.x44_c00471{left:532.630785px;}
.x31_c00471{left:543.100035px;}
.x2a_c00471{left:553.663335px;}
.x50_c00471{left:564.498885px;}
.x45_c00471{left:565.563135px;}
.x32_c00471{left:575.626485px;}
.x1b_c00471{left:582.110985px;}
.x1c_c00471{left:586.650135px;}
.x5e_c00471{left:587.872785px;}
.x1d_c00471{left:596.560035px;}
.x61_c00471{left:598.247985px;}
.x1e_c00471{left:610.192335px;}
.x1f_c00471{left:626.349135px;}
.x62_c00471{left:631.002135px;}
.x39_c00471{left:632.110935px;}
.x2b_c00471{left:642.510885px;}
.x3e_c00471{left:652.866285px;}
.x5c_c00471{left:653.915685px;}
.x20_c00471{left:664.201785px;}
.xe_c00471{left:674.963085px;}
.x5f_c00471{left:676.012485px;}
.x33_c00471{left:686.328285px;}
.x54_c00471{left:687.417285px;}
.x4_c00471{left:693.109785px;}
.x5_c00471{left:695.842185px;}
.x3a_c00471{left:697.752885px;}
.x22_c00471{left:703.400835px;}
.x23_c00471{left:704.524485px;}
.x2c_c00471{left:719.864535px;}
.x56_c00471{left:731.150535px;}
.x46_c00471{left:736.249035px;}
@media print{
.v0_c00471{vertical-align:0.000000pt;}
.lsb_c00471{letter-spacing:-2.390080pt;}
.ls17_c00471{letter-spacing:-2.365446pt;}
.ls19_c00471{letter-spacing:-1.054313pt;}
.lsa_c00471{letter-spacing:-0.111514pt;}
.ls3_c00471{letter-spacing:0.000000pt;}
.lsf_c00471{letter-spacing:0.020275pt;}
.ls2_c00471{letter-spacing:0.108135pt;}
.ls10_c00471{letter-spacing:0.162202pt;}
.lsc_c00471{letter-spacing:0.259072pt;}
.ls1a_c00471{letter-spacing:0.905628pt;}
.ls1_c00471{letter-spacing:1.488678pt;}
.ls4_c00471{letter-spacing:1.882008pt;}
.ls12_c00471{letter-spacing:2.184007pt;}
.ls13_c00471{letter-spacing:2.527648pt;}
.lse_c00471{letter-spacing:2.716884pt;}
.lsd_c00471{letter-spacing:2.736800pt;}
.ls18_c00471{letter-spacing:2.799808pt;}
.ls14_c00471{letter-spacing:2.939209pt;}
.ls15_c00471{letter-spacing:2.993979pt;}
.ls8_c00471{letter-spacing:3.142664pt;}
.ls7_c00471{letter-spacing:3.203209pt;}
.ls16_c00471{letter-spacing:3.372450pt;}
.ls6_c00471{letter-spacing:3.379209pt;}
.ls11_c00471{letter-spacing:3.449609pt;}
.ls1b_c00471{letter-spacing:3.484800pt;}
.ls1c_c00471{letter-spacing:3.660800pt;}
.ls0_c00471{letter-spacing:10.745788pt;}
.ls5_c00471{letter-spacing:26.611376pt;}
.ls1d_c00471{letter-spacing:45.619376pt;}
.ls9_c00471{letter-spacing:65.894576pt;}
.ws0_c00471{word-spacing:-20.038708pt;}
.ws2_c00471{word-spacing:-19.612928pt;}
.ws3_c00471{word-spacing:0.000000pt;}
.ws1_c00471{word-spacing:2.321792pt;}
._3_c00471{margin-left:-16.662272pt;}
._2_c00471{margin-left:-14.153075pt;}
._6_c00471{margin-left:-7.974961pt;}
._4_c00471{margin-left:-5.822784pt;}
._5_c00471{margin-left:-4.082088pt;}
._1_c00471{width:9.123752pt;}
._0_c00471{width:12.300453pt;}
._8_c00471{width:29.062888pt;}
._7_c00471{width:69.444672pt;}
.fs1_c00471{font-size:20.064000pt;}
.fs3_c00471{font-size:22.528000pt;}
.fs0_c00471{font-size:25.168000pt;}
.fs4_c00471{font-size:26.611376pt;}
.fse_c00471{font-size:33.088000pt;}
.fsa_c00471{font-size:42.240000pt;}
.fs15_c00471{font-size:45.619376pt;}
.fs9_c00471{font-size:50.688000pt;}
.fsf_c00471{font-size:54.736000pt;}
.fs12_c00471{font-size:58.784176pt;}
.fs6_c00471{font-size:64.064176pt;}
.fs8_c00471{font-size:65.894576pt;}
.fs5_c00471{font-size:67.584176pt;}
.fsb_c00471{font-size:68.288000pt;}
.fs11_c00471{font-size:68.464176pt;}
.fs10_c00471{font-size:68.992176pt;}
.fs13_c00471{font-size:69.696000pt;}
.fs2_c00471{font-size:70.752176pt;}
.fs14_c00471{font-size:73.216000pt;}
.fsc_c00471{font-size:80.960000pt;}
.fsd_c00471{font-size:91.872176pt;}
.fs7_c00471{font-size:95.744176pt;}
.y0_c00471{bottom:0.000000pt;}
.y3_c00471{bottom:27.795720pt;}
.y1_c00471{bottom:68.000000pt;}
.y20_c00471{bottom:94.961720pt;}
.y1f_c00471{bottom:123.790520pt;}
.y1e_c00471{bottom:153.882120pt;}
.y1d_c00471{bottom:210.593720pt;}
.y1c_c00471{bottom:238.467720pt;}
.y1b_c00471{bottom:266.033720pt;}
.y1a_c00471{bottom:294.862520pt;}
.y19_c00471{bottom:323.374520pt;}
.y18_c00471{bottom:351.882120pt;}
.y17_c00471{bottom:379.760520pt;}
.y16_c00471{bottom:407.955720pt;}
.y15_c00471{bottom:436.155320pt;}
.y14_c00471{bottom:491.907720pt;}
.y13_c00471{bottom:520.736520pt;}
.y12_c00471{bottom:548.614920pt;}
.y11_c00471{bottom:577.131320pt;}
.yf_c00471{bottom:605.322120pt;}
.y10_c00471{bottom:606.593720pt;}
.yc_c00471{bottom:660.132920pt;}
.ye_c00471{bottom:683.892920pt;}
.yb_c00471{bottom:685.793720pt;}
.ya_c00471{bottom:687.690120pt;}
.yd_c00471{bottom:692.442120pt;}
.y2_c00471{bottom:698.465720pt;}
.y9_c00471{bottom:793.822520pt;}
.y8_c00471{bottom:800.475320pt;}
.y7_c00471{bottom:830.250120pt;}
.y6_c00471{bottom:925.290120pt;}
.y5_c00471{bottom:934.477320pt;}
.y4_c00471{bottom:946.515720pt;}
.h6_c00471{height:17.723176pt;}
.h3_c00471{height:20.926125pt;}
.h5_c00471{height:22.110000pt;}
.h2_c00471{height:26.249438pt;}
.h1a_c00471{height:30.382504pt;}
.h11_c00471{height:34.509750pt;}
.hd_c00471{height:41.456250pt;}
.hb_c00471{height:43.885788pt;}
.hc_c00471{height:52.866000pt;}
.h12_c00471{height:53.720391pt;}
.h16_c00471{height:61.310059pt;}
.h13_c00471{height:62.875485pt;}
.h7_c00471{height:66.330173pt;}
.h8_c00471{height:66.816934pt;}
.he_c00471{height:67.020938pt;}
.h15_c00471{height:67.193845pt;}
.h14_c00471{height:67.712048pt;}
.ha_c00471{height:68.112177pt;}
.h18_c00471{height:68.402813pt;}
.h4_c00471{height:69.439391pt;}
.h17_c00471{height:71.222250pt;}
.h19_c00471{height:71.857500pt;}
.hf_c00471{height:84.438750pt;}
.h9_c00471{height:93.967673pt;}
.h10_c00471{height:95.819809pt;}
.h1_c00471{height:986.666667pt;}
.h0_c00471{height:1122.666667pt;}
.w1_c00471{width:676.000000pt;}
.w0_c00471{width:793.333333pt;}
.x0_c00471{left:0.000000pt;}
.x3_c00471{left:21.551987pt;}
.x2_c00471{left:42.746787pt;}
.x1_c00471{left:58.666667pt;}
.x57_c00471{left:78.971987pt;}
.xf_c00471{left:79.878387pt;}
.x6_c00471{left:81.809987pt;}
.x58_c00471{left:108.121987pt;}
.x34_c00471{left:109.855587pt;}
.x2d_c00471{left:110.792787pt;}
.x4f_c00471{left:119.412387pt;}
.x10_c00471{left:128.370787pt;}
.x24_c00471{left:129.994387pt;}
.x4a_c00471{left:136.633987pt;}
.x11_c00471{left:138.666787pt;}
.x48_c00471{left:147.871587pt;}
.x40_c00471{left:157.032387pt;}
.x3f_c00471{left:167.029187pt;}
.x25_c00471{left:169.061987pt;}
.x7_c00471{left:176.163587pt;}
.x5a_c00471{left:177.597987pt;}
.x41_c00471{left:185.742387pt;}
.x2e_c00471{left:188.061187pt;}
.x12_c00471{left:196.944787pt;}
.x21_c00471{left:198.555187pt;}
.x8_c00471{left:205.383987pt;}
.x55_c00471{left:206.391587pt;}
.x4b_c00471{left:216.326787pt;}
.x13_c00471{left:225.799987pt;}
.x26_c00471{left:236.117987pt;}
.x59_c00471{left:237.376387pt;}
.x14_c00471{left:245.679187pt;}
.x4c_c00471{left:246.959587pt;}
.x42_c00471{left:256.243587pt;}
.x47_c00471{left:264.656387pt;}
.x51_c00471{left:266.033587pt;}
.x9_c00471{left:276.087587pt;}
.x15_c00471{left:285.890787pt;}
.x35_c00471{left:293.854787pt;}
.x2f_c00471{left:295.733587pt;}
.xa_c00471{left:304.652387pt;}
.x16_c00471{left:313.469987pt;}
.x27_c00471{left:315.485187pt;}
.x36_c00471{left:323.581187pt;}
.x5d_c00471{left:325.279587pt;}
.x49_c00471{left:334.748387pt;}
.x28_c00471{left:345.149987pt;}
.x17_c00471{left:352.735587pt;}
.x53_c00471{left:354.917987pt;}
.x37_c00471{left:363.519987pt;}
.x5b_c00471{left:365.746387pt;}
.xb_c00471{left:374.084387pt;}
.x30_c00471{left:383.856787pt;}
.x43_c00471{left:385.106387pt;}
.x4d_c00471{left:394.509187pt;}
.x60_c00471{left:403.872387pt;}
.x3b_c00471{left:404.822787pt;}
.x18_c00471{left:408.747587pt;}
.xc_c00471{left:412.689987pt;}
.x19_c00471{left:414.511587pt;}
.x3c_c00471{left:423.456787pt;}
.x38_c00471{left:424.420387pt;}
.x29_c00471{left:434.236787pt;}
.xd_c00471{left:442.794787pt;}
.x4e_c00471{left:452.655187pt;}
.x3d_c00471{left:453.574787pt;}
.x52_c00471{left:454.705587pt;}
.x1a_c00471{left:463.122787pt;}
.x44_c00471{left:473.449587pt;}
.x31_c00471{left:482.755587pt;}
.x2a_c00471{left:492.145187pt;}
.x50_c00471{left:501.776787pt;}
.x45_c00471{left:502.722787pt;}
.x32_c00471{left:511.667987pt;}
.x1b_c00471{left:517.431987pt;}
.x1c_c00471{left:521.466787pt;}
.x5e_c00471{left:522.553587pt;}
.x1d_c00471{left:530.275587pt;}
.x61_c00471{left:531.775987pt;}
.x1e_c00471{left:542.393187pt;}
.x1f_c00471{left:556.754787pt;}
.x62_c00471{left:560.890787pt;}
.x39_c00471{left:561.876387pt;}
.x2b_c00471{left:571.120787pt;}
.x3e_c00471{left:580.325587pt;}
.x5c_c00471{left:581.258387pt;}
.x20_c00471{left:590.401587pt;}
.xe_c00471{left:599.967187pt;}
.x5f_c00471{left:600.899987pt;}
.x33_c00471{left:610.069587pt;}
.x54_c00471{left:611.037587pt;}
.x4_c00471{left:616.097587pt;}
.x5_c00471{left:618.526387pt;}
.x3a_c00471{left:620.224787pt;}
.x22_c00471{left:625.245187pt;}
.x23_c00471{left:626.243987pt;}
.x2c_c00471{left:639.879587pt;}
.x56_c00471{left:649.911587pt;}
.x46_c00471{left:654.443587pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eb4a78edb1b0ab7cdb1b2a17.woff2')format("woff");}.ff1_c00472{font-family:ff1_c00472;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00472;src:url('chunks/assets/font_5bda851053847ad4158a6ea4.woff2')format("woff");}.ff2_c00472{font-family:ff2_c00472;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00472;src:url('chunks/assets/font_73ac3e8f109741f62602d4d0.woff2')format("woff");}.ff3_c00472{font-family:ff3_c00472;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00472;src:url('chunks/assets/font_08cb79062079c858a4e5948b.woff2')format("woff");}.ff4_c00472{font-family:ff4_c00472;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.maa_c00472{transform:matrix(0.112745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112745,0.000000,0.000000,0.250000,0,0);}
.m8b_c00472{transform:matrix(0.125001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125001,0.000000,0.000000,0.250000,0,0);}
.m75_c00472{transform:matrix(0.147322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147322,0.000000,0.000000,0.250000,0,0);}
.m5c_c00472{transform:matrix(0.155364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155364,0.000000,0.000000,0.250000,0,0);}
.m99_c00472{transform:matrix(0.155406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155406,0.000000,0.000000,0.250000,0,0);}
.mac_c00472{transform:matrix(0.160001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160001,0.000000,0.000000,0.250000,0,0);}
.m36_c00472{transform:matrix(0.167493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167493,0.000000,0.000000,0.250000,0,0);}
.m98_c00472{transform:matrix(0.175676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175676,0.000000,0.000000,0.250000,0,0);}
.m77_c00472{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00472{transform:matrix(0.186223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186223,0.000000,0.000000,0.250000,0,0);}
.m76_c00472{transform:matrix(0.187499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187499,0.000000,0.000000,0.250000,0,0);}
.ma8_c00472{transform:matrix(0.188102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188102,0.000000,0.000000,0.250000,0,0);}
.mb0_c00472{transform:matrix(0.201087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201087,0.000000,0.000000,0.250000,0,0);}
.mab_c00472{transform:matrix(0.202431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202431,0.000000,0.000000,0.250000,0,0);}
.ma9_c00472{transform:matrix(0.208225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208225,0.000000,0.000000,0.250000,0,0);}
.m97_c00472{transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);}
.m79_c00472{transform:matrix(0.216697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216697,0.000000,0.000000,0.250000,0,0);}
.m89_c00472{transform:matrix(0.229686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229686,0.000000,0.000000,0.250000,0,0);}
.m64_c00472{transform:matrix(0.238236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238236,0.000000,0.000000,0.250000,0,0);}
.m37_c00472{transform:matrix(0.244828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244828,0.000000,0.000000,0.250000,0,0);}
.m3_c00472{transform:matrix(0.246492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246492,0.000000,0.000000,0.250000,0,0);}
.maf_c00472{transform:matrix(0.249201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249201,0.000000,0.000000,0.250000,0,0);}
.mae_c00472{transform:matrix(0.249341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249341,0.000000,0.000000,0.250000,0,0);}
.m0_c00472{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00472{transform:matrix(0.250592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250592,0.000000,0.000000,0.250000,0,0);}
.m44_c00472{transform:matrix(0.253550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253550,0.000000,0.000000,0.250000,0,0);}
.m9a_c00472{transform:matrix(0.254401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254401,0.000000,0.000000,0.250000,0,0);}
.m5_c00472{transform:matrix(0.255380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255380,0.000000,0.000000,0.250000,0,0);}
.mad_c00472{transform:matrix(0.257454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257454,0.000000,0.000000,0.250000,0,0);}
.md_c00472{transform:matrix(0.258279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258279,0.000000,0.000000,0.250000,0,0);}
.m84_c00472{transform:matrix(0.261541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261541,0.000000,0.000000,0.250000,0,0);}
.m19_c00472{transform:matrix(0.263268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263268,0.000000,0.000000,0.250000,0,0);}
.m2b_c00472{transform:matrix(0.264058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264058,0.000000,0.000000,0.250000,0,0);}
.ma_c00472{transform:matrix(0.264312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264312,0.000000,0.000000,0.250000,0,0);}
.m21_c00472{transform:matrix(0.267685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267685,0.000000,0.000000,0.250000,0,0);}
.m1_c00472{transform:matrix(0.267806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267806,0.000000,0.000000,0.250000,0,0);}
.m9b_c00472{transform:matrix(0.268010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268010,0.000000,0.000000,0.250000,0,0);}
.ma4_c00472{transform:matrix(0.270677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270677,0.000000,0.000000,0.250000,0,0);}
.m28_c00472{transform:matrix(0.270784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270784,0.000000,0.000000,0.250000,0,0);}
.ma3_c00472{transform:matrix(0.271353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271353,0.000000,0.000000,0.250000,0,0);}
.m6_c00472{transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);}
.m5f_c00472{transform:matrix(0.272042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272042,0.000000,0.000000,0.250000,0,0);}
.m9_c00472{transform:matrix(0.272173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272173,0.000000,0.000000,0.250000,0,0);}
.m60_c00472{transform:matrix(0.273180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273180,0.000000,0.000000,0.250000,0,0);}
.m39_c00472{transform:matrix(0.273315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273315,0.000000,0.000000,0.250000,0,0);}
.m22_c00472{transform:matrix(0.273934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273934,0.000000,0.000000,0.250000,0,0);}
.m4e_c00472{transform:matrix(0.274324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274324,0.000000,0.000000,0.250000,0,0);}
.m15_c00472{transform:matrix(0.274616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274616,0.000000,0.000000,0.250000,0,0);}
.m3c_c00472{transform:matrix(0.275231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275231,0.000000,0.000000,0.250000,0,0);}
.me_c00472{transform:matrix(0.275297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275297,0.000000,0.000000,0.250000,0,0);}
.m68_c00472{transform:matrix(0.276147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276147,0.000000,0.000000,0.250000,0,0);}
.m42_c00472{transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);}
.m54_c00472{transform:matrix(0.276874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276874,0.000000,0.000000,0.250000,0,0);}
.m29_c00472{transform:matrix(0.276943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276943,0.000000,0.000000,0.250000,0,0);}
.m3b_c00472{transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);}
.m51_c00472{transform:matrix(0.278911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278911,0.000000,0.000000,0.250000,0,0);}
.m30_c00472{transform:matrix(0.279348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279348,0.000000,0.000000,0.250000,0,0);}
.m7f_c00472{transform:matrix(0.280090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280090,0.000000,0.000000,0.250000,0,0);}
.m49_c00472{transform:matrix(0.281426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281426,0.000000,0.000000,0.250000,0,0);}
.m34_c00472{transform:matrix(0.282148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282148,0.000000,0.000000,0.250000,0,0);}
.m1c_c00472{transform:matrix(0.283989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283989,0.000000,0.000000,0.250000,0,0);}
.m58_c00472{transform:matrix(0.284164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284164,0.000000,0.000000,0.250000,0,0);}
.m7d_c00472{transform:matrix(0.284502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284502,0.000000,0.000000,0.250000,0,0);}
.m91_c00472{transform:matrix(0.284631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284631,0.000000,0.000000,0.250000,0,0);}
.m4c_c00472{transform:matrix(0.285877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285877,0.000000,0.000000,0.250000,0,0);}
.m23_c00472{transform:matrix(0.286588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286588,0.000000,0.000000,0.250000,0,0);}
.m47_c00472{transform:matrix(0.287277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287277,0.000000,0.000000,0.250000,0,0);}
.m5d_c00472{transform:matrix(0.288402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288402,0.000000,0.000000,0.250000,0,0);}
.m3f_c00472{transform:matrix(0.289941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289941,0.000000,0.000000,0.250000,0,0);}
.m12_c00472{transform:matrix(0.290337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290337,0.000000,0.000000,0.250000,0,0);}
.m2f_c00472{transform:matrix(0.290586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290586,0.000000,0.000000,0.250000,0,0);}
.m5a_c00472{transform:matrix(0.290964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290964,0.000000,0.000000,0.250000,0,0);}
.m57_c00472{transform:matrix(0.291396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291396,0.000000,0.000000,0.250000,0,0);}
.m6b_c00472{transform:matrix(0.292297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292297,0.000000,0.000000,0.250000,0,0);}
.mc_c00472{transform:matrix(0.292407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292407,0.000000,0.000000,0.250000,0,0);}
.m74_c00472{transform:matrix(0.294119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294119,0.000000,0.000000,0.250000,0,0);}
.m38_c00472{transform:matrix(0.295448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295448,0.000000,0.000000,0.250000,0,0);}
.m81_c00472{transform:matrix(0.296053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296053,0.000000,0.000000,0.250000,0,0);}
.m27_c00472{transform:matrix(0.297211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297211,0.000000,0.000000,0.250000,0,0);}
.m16_c00472{transform:matrix(0.298109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298109,0.000000,0.000000,0.250000,0,0);}
.m1f_c00472{transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);}
.m87_c00472{transform:matrix(0.299295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299295,0.000000,0.000000,0.250000,0,0);}
.m41_c00472{transform:matrix(0.299738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299738,0.000000,0.000000,0.250000,0,0);}
.m8e_c00472{transform:matrix(0.300114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300114,0.000000,0.000000,0.250000,0,0);}
.m3e_c00472{transform:matrix(0.300298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300298,0.000000,0.000000,0.250000,0,0);}
.m35_c00472{transform:matrix(0.300396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300396,0.000000,0.000000,0.250000,0,0);}
.m70_c00472{transform:matrix(0.300870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300870,0.000000,0.000000,0.250000,0,0);}
.m61_c00472{transform:matrix(0.300918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300918,0.000000,0.000000,0.250000,0,0);}
.m7b_c00472{transform:matrix(0.302383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302383,0.000000,0.000000,0.250000,0,0);}
.m69_c00472{transform:matrix(0.303861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303861,0.000000,0.000000,0.250000,0,0);}
.m67_c00472{transform:matrix(0.304311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304311,0.000000,0.000000,0.250000,0,0);}
.m1b_c00472{transform:matrix(0.304333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304333,0.000000,0.000000,0.250000,0,0);}
.m31_c00472{transform:matrix(0.304798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304798,0.000000,0.000000,0.250000,0,0);}
.m17_c00472{transform:matrix(0.304814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304814,0.000000,0.000000,0.250000,0,0);}
.ma0_c00472{transform:matrix(0.304962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304962,0.000000,0.000000,0.250000,0,0);}
.m66_c00472{transform:matrix(0.305185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305185,0.000000,0.000000,0.250000,0,0);}
.m8d_c00472{transform:matrix(0.306390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306390,0.000000,0.000000,0.250000,0,0);}
.m9d_c00472{transform:matrix(0.307258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307258,0.000000,0.000000,0.250000,0,0);}
.m2_c00472{transform:matrix(0.307460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307460,0.000000,0.000000,0.250000,0,0);}
.m4b_c00472{transform:matrix(0.308626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308626,0.000000,0.000000,0.250000,0,0);}
.m48_c00472{transform:matrix(0.308853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308853,0.000000,0.000000,0.250000,0,0);}
.m6a_c00472{transform:matrix(0.309405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309405,0.000000,0.000000,0.250000,0,0);}
.m1a_c00472{transform:matrix(0.309448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309448,0.000000,0.000000,0.250000,0,0);}
.m13_c00472{transform:matrix(0.309873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309873,0.000000,0.000000,0.250000,0,0);}
.m82_c00472{transform:matrix(0.310305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310305,0.000000,0.000000,0.250000,0,0);}
.m94_c00472{transform:matrix(0.310656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310656,0.000000,0.000000,0.250000,0,0);}
.m4d_c00472{transform:matrix(0.310889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310889,0.000000,0.000000,0.250000,0,0);}
.m9c_c00472{transform:matrix(0.311496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311496,0.000000,0.000000,0.250000,0,0);}
.m9f_c00472{transform:matrix(0.313069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313069,0.000000,0.000000,0.250000,0,0);}
.m63_c00472{transform:matrix(0.313626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313626,0.000000,0.000000,0.250000,0,0);}
.m95_c00472{transform:matrix(0.313797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313797,0.000000,0.000000,0.250000,0,0);}
.mb_c00472{transform:matrix(0.314609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314609,0.000000,0.000000,0.250000,0,0);}
.m85_c00472{transform:matrix(0.314645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314645,0.000000,0.000000,0.250000,0,0);}
.m1e_c00472{transform:matrix(0.314683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314683,0.000000,0.000000,0.250000,0,0);}
.m86_c00472{transform:matrix(0.314824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314824,0.000000,0.000000,0.250000,0,0);}
.m4a_c00472{transform:matrix(0.315021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315021,0.000000,0.000000,0.250000,0,0);}
.m8c_c00472{transform:matrix(0.316387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316387,0.000000,0.000000,0.250000,0,0);}
.m10_c00472{transform:matrix(0.316813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316813,0.000000,0.000000,0.250000,0,0);}
.m20_c00472{transform:matrix(0.317014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317014,0.000000,0.000000,0.250000,0,0);}
.m6f_c00472{transform:matrix(0.317541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317541,0.000000,0.000000,0.250000,0,0);}
.m6c_c00472{transform:matrix(0.317848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317848,0.000000,0.000000,0.250000,0,0);}
.m1d_c00472{transform:matrix(0.318221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318221,0.000000,0.000000,0.250000,0,0);}
.m55_c00472{transform:matrix(0.319288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319288,0.000000,0.000000,0.250000,0,0);}
.m6d_c00472{transform:matrix(0.319713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319713,0.000000,0.000000,0.250000,0,0);}
.m93_c00472{transform:matrix(0.320589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320589,0.000000,0.000000,0.250000,0,0);}
.ma7_c00472{transform:matrix(0.321005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321005,0.000000,0.000000,0.250000,0,0);}
.m26_c00472{transform:matrix(0.321290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321290,0.000000,0.000000,0.250000,0,0);}
.ma5_c00472{transform:matrix(0.321779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321779,0.000000,0.000000,0.250000,0,0);}
.m9e_c00472{transform:matrix(0.322107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322107,0.000000,0.000000,0.250000,0,0);}
.m7e_c00472{transform:matrix(0.324043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324043,0.000000,0.000000,0.250000,0,0);}
.m56_c00472{transform:matrix(0.324400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324400,0.000000,0.000000,0.250000,0,0);}
.m43_c00472{transform:matrix(0.324419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324419,0.000000,0.000000,0.250000,0,0);}
.m90_c00472{transform:matrix(0.324652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324652,0.000000,0.000000,0.250000,0,0);}
.m2c_c00472{transform:matrix(0.325743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325743,0.000000,0.000000,0.250000,0,0);}
.m40_c00472{transform:matrix(0.327025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327025,0.000000,0.000000,0.250000,0,0);}
.m80_c00472{transform:matrix(0.327521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327521,0.000000,0.000000,0.250000,0,0);}
.m65_c00472{transform:matrix(0.327523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327523,0.000000,0.000000,0.250000,0,0);}
.m4f_c00472{transform:matrix(0.330106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330106,0.000000,0.000000,0.250000,0,0);}
.m2e_c00472{transform:matrix(0.331396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331396,0.000000,0.000000,0.250000,0,0);}
.m7c_c00472{transform:matrix(0.332036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332036,0.000000,0.000000,0.250000,0,0);}
.m50_c00472{transform:matrix(0.332840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332840,0.000000,0.000000,0.250000,0,0);}
.m25_c00472{transform:matrix(0.333519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333519,0.000000,0.000000,0.250000,0,0);}
.m6e_c00472{transform:matrix(0.334301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334301,0.000000,0.000000,0.250000,0,0);}
.m83_c00472{transform:matrix(0.334923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334923,0.000000,0.000000,0.250000,0,0);}
.m8_c00472{transform:matrix(0.335351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335351,0.000000,0.000000,0.250000,0,0);}
.ma1_c00472{transform:matrix(0.337284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337284,0.000000,0.000000,0.250000,0,0);}
.m46_c00472{transform:matrix(0.339017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339017,0.000000,0.000000,0.250000,0,0);}
.m11_c00472{transform:matrix(0.339888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339888,0.000000,0.000000,0.250000,0,0);}
.m52_c00472{transform:matrix(0.341431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341431,0.000000,0.000000,0.250000,0,0);}
.m96_c00472{transform:matrix(0.341947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341947,0.000000,0.000000,0.250000,0,0);}
.m88_c00472{transform:matrix(0.342126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342126,0.000000,0.000000,0.250000,0,0);}
.m92_c00472{transform:matrix(0.344792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344792,0.000000,0.000000,0.250000,0,0);}
.m59_c00472{transform:matrix(0.345351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345351,0.000000,0.000000,0.250000,0,0);}
.m71_c00472{transform:matrix(0.346297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346297,0.000000,0.000000,0.250000,0,0);}
.mf_c00472{transform:matrix(0.349884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349884,0.000000,0.000000,0.250000,0,0);}
.ma6_c00472{transform:matrix(0.350467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350467,0.000000,0.000000,0.250000,0,0);}
.m3a_c00472{transform:matrix(0.350889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350889,0.000000,0.000000,0.250000,0,0);}
.ma2_c00472{transform:matrix(0.352284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352284,0.000000,0.000000,0.250000,0,0);}
.m7_c00472{transform:matrix(0.353402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353402,0.000000,0.000000,0.250000,0,0);}
.m32_c00472{transform:matrix(0.355291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355291,0.000000,0.000000,0.250000,0,0);}
.m8f_c00472{transform:matrix(0.356132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356132,0.000000,0.000000,0.250000,0,0);}
.m33_c00472{transform:matrix(0.356495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356495,0.000000,0.000000,0.250000,0,0);}
.m24_c00472{transform:matrix(0.357328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357328,0.000000,0.000000,0.250000,0,0);}
.m53_c00472{transform:matrix(0.359120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359120,0.000000,0.000000,0.250000,0,0);}
.m3d_c00472{transform:matrix(0.360217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360217,0.000000,0.000000,0.250000,0,0);}
.m45_c00472{transform:matrix(0.361256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361256,0.000000,0.000000,0.250000,0,0);}
.m7a_c00472{transform:matrix(0.363328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363328,0.000000,0.000000,0.250000,0,0);}
.m4_c00472{transform:matrix(0.364260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364260,0.000000,0.000000,0.250000,0,0);}
.m2a_c00472{transform:matrix(0.364455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364455,0.000000,0.000000,0.250000,0,0);}
.m72_c00472{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);}
.m18_c00472{transform:matrix(0.369472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369472,0.000000,0.000000,0.250000,0,0);}
.m78_c00472{transform:matrix(0.370235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370235,0.000000,0.000000,0.250000,0,0);}
.m62_c00472{transform:matrix(0.384696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384696,0.000000,0.000000,0.250000,0,0);}
.m14_c00472{transform:matrix(0.397481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397481,0.000000,0.000000,0.250000,0,0);}
.m73_c00472{transform:matrix(0.403014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403014,0.000000,0.000000,0.250000,0,0);}
.m5e_c00472{transform:matrix(0.409902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409902,0.000000,0.000000,0.250000,0,0);}
.m8a_c00472{transform:matrix(0.476720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476720,0.000000,0.000000,0.250000,0,0);}
.v2_c00472{vertical-align:-49.896000px;}
.v0_c00472{vertical-align:0.000000px;}
.v1_c00472{vertical-align:41.322600px;}
.ls11_c00472{letter-spacing:-2.882880px;}
.ls4_c00472{letter-spacing:-2.661127px;}
.ls16_c00472{letter-spacing:-2.501730px;}
.lsc_c00472{letter-spacing:-1.774080px;}
.ls10_c00472{letter-spacing:-1.391389px;}
.lsb_c00472{letter-spacing:-0.558756px;}
.ls1_c00472{letter-spacing:0.000000px;}
.ls9_c00472{letter-spacing:1.117673px;}
.ls12_c00472{letter-spacing:1.153469px;}
.ls6_c00472{letter-spacing:2.019600px;}
.lsd_c00472{letter-spacing:2.534400px;}
.ls8_c00472{letter-spacing:2.615508px;}
.ls5_c00472{letter-spacing:3.269385px;}
.ls15_c00472{letter-spacing:3.573900px;}
.ls7_c00472{letter-spacing:3.682810px;}
.ls3_c00472{letter-spacing:3.801610px;}
.ls2_c00472{letter-spacing:4.415400px;}
.ls0_c00472{letter-spacing:5.398382px;}
.lse_c00472{letter-spacing:28.512198px;}
.ls14_c00472{letter-spacing:35.640000px;}
.lsf_c00472{letter-spacing:52.747398px;}
.lsa_c00472{letter-spacing:57.024198px;}
.ls13_c00472{letter-spacing:72.705798px;}
.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:-19.008050px;}
.ws2_c00472{word-spacing:-18.219564px;}
.ws1_c00472{word-spacing:-14.091264px;}
.ws3_c00472{word-spacing:0.000000px;}
._b_c00472{margin-left:-4.055436px;}
._e_c00472{margin-left:-1.769526px;}
._1_c00472{width:3.193641px;}
._0_c00472{width:5.740020px;}
._9_c00472{width:7.527861px;}
._2_c00472{width:9.579141px;}
._4_c00472{width:11.709027px;}
._3_c00472{width:20.755889px;}
._8_c00472{width:22.323455px;}
._c_c00472{width:25.622729px;}
._6_c00472{width:27.218609px;}
._d_c00472{width:28.404288px;}
._5_c00472{width:30.057055px;}
._7_c00472{width:32.785495px;}
._a_c00472{width:81.476851px;}
._f_c00472{width:1271.244744px;}
.fc0_c00472{color:transparent;}
.fs0_c00472{font-size:22.176000px;}
.fs11_c00472{font-size:24.552000px;}
.fs13_c00472{font-size:27.720000px;}
.fs9_c00472{font-size:28.512198px;}
.fs10_c00472{font-size:35.640000px;}
.fs3_c00472{font-size:40.392000px;}
.fs8_c00472{font-size:50.688000px;}
.fsa_c00472{font-size:52.747398px;}
.fs5_c00472{font-size:57.024198px;}
.fs7_c00472{font-size:61.776198px;}
.fse_c00472{font-size:65.538000px;}
.fsd_c00472{font-size:67.122198px;}
.fs6_c00472{font-size:67.320000px;}
.fsb_c00472{font-size:71.478000px;}
.fsf_c00472{font-size:72.705798px;}
.fs4_c00472{font-size:73.656198px;}
.fs12_c00472{font-size:75.240000px;}
.fs2_c00472{font-size:76.032198px;}
.fsc_c00472{font-size:82.368000px;}
.fs1_c00472{font-size:88.308000px;}
.y0_c00472{bottom:0.000000px;}
.y2_c00472{bottom:33.408585px;}
.y1_c00472{bottom:76.500000px;}
.y24_c00472{bottom:127.498185px;}
.y23_c00472{bottom:127.854585px;}
.y25_c00472{bottom:131.423535px;}
.y22_c00472{bottom:149.956335px;}
.y21_c00472{bottom:153.158985px;}
.y20_c00472{bottom:169.914735px;}
.y1f_c00472{bottom:171.335385px;}
.y1e_c00472{bottom:193.793535px;}
.y1d_c00472{bottom:211.613535px;}
.y1c_c00472{bottom:211.969935px;}
.y1b_c00472{bottom:264.360735px;}
.y1a_c00472{bottom:296.080335px;}
.y19_c00472{bottom:360.232335px;}
.y18_c00472{bottom:391.951935px;}
.y17_c00472{bottom:410.484735px;}
.y16_c00472{bottom:422.958735px;}
.y15_c00472{bottom:423.671535px;}
.y14_c00472{bottom:455.386185px;}
.y13_c00472{bottom:487.462185px;}
.y12_c00472{bottom:518.830335px;}
.y11_c00472{bottom:550.544985px;}
.y10_c00472{bottom:612.914985px;}
.yf_c00472{bottom:645.703785px;}
.ye_c00472{bottom:677.428335px;}
.yd_c00472{bottom:677.437740px;}
.yc_c00472{bottom:709.142985px;}
.yb_c00472{bottom:740.862585px;}
.ya_c00472{bottom:772.225785px;}
.y9_c00472{bottom:804.658185px;}
.y7_c00472{bottom:867.028185px;}
.y8_c00472{bottom:872.730585px;}
.y6_c00472{bottom:898.752735px;}
.y5_c00472{bottom:898.757190px;}
.y4_c00472{bottom:930.823785px;}
.y3_c00472{bottom:1059.840585px;}
.hb_c00472{height:18.989124px;}
.h2_c00472{height:23.128875px;}
.h12_c00472{height:23.736240px;}
.h13_c00472{height:28.576969px;}
.h14_c00472{height:28.911094px;}
.hc_c00472{height:35.129767px;}
.h7_c00472{height:37.978116px;}
.h5_c00472{height:42.127594px;}
.h11_c00472{height:48.422061px;}
.ha_c00472{height:52.866000px;}
.h8_c00472{height:66.070898px;}
.h10_c00472{height:68.354086px;}
.hf_c00472{height:70.006355px;}
.hd_c00472{height:70.151748px;}
.h6_c00472{height:72.289530px;}
.h4_c00472{height:74.621444px;}
.he_c00472{height:80.839688px;}
.h3_c00472{height:86.669473px;}
.h9_c00472{height:101.952560px;}
.h1_c00472{height:1110.000000px;}
.h0_c00472{height:1263.000000px;}
.w1_c00472{width:775.500000px;}
.w0_c00472{width:892.500000px;}
.x0_c00472{left:0.000000px;}
.x2_c00472{left:19.861035px;}
.x1_c00472{left:58.500000px;}
.x5b_c00472{left:89.354085px;}
.x27_c00472{left:91.358835px;}
.x5_c00472{left:92.675535px;}
.x63_c00472{left:112.747785px;}
.x10_c00472{left:114.425835px;}
.x28_c00472{left:123.415035px;}
.x33_c00472{left:124.494135px;}
.x19_c00472{left:135.928635px;}
.x1f_c00472{left:145.615785px;}
.x41_c00472{left:146.655285px;}
.x6_c00472{left:147.684885px;}
.x1a_c00472{left:157.634385px;}
.x29_c00472{left:168.662985px;}
.x42_c00472{left:178.657035px;}
.x7_c00472{left:180.602385px;}
.x58_c00472{left:189.448035px;}
.x34_c00472{left:191.140935px;}
.x3a_c00472{left:200.412285px;}
.x11_c00472{left:212.901135px;}
.x6d_c00472{left:222.345735px;}
.x43_c00472{left:223.543635px;}
.x59_c00472{left:224.553435px;}
.x77_c00472{left:232.711035px;}
.x51_c00472{left:234.879135px;}
.x2a_c00472{left:248.387685px;}
.x47_c00472{left:257.099685px;}
.x6f_c00472{left:258.837135px;}
.x20_c00472{left:268.474785px;}
.x8_c00472{left:270.830985px;}
.x5c_c00472{left:278.340135px;}
.x66_c00472{left:280.255785px;}
.x48_c00472{left:290.116185px;}
.x12_c00472{left:291.586335px;}
.x1b_c00472{left:293.021835px;}
.x4c_c00472{left:300.021135px;}
.x3b_c00472{left:301.293285px;}
.x2b_c00472{left:302.659485px;}
.x21_c00472{left:312.153585px;}
.x67_c00472{left:313.697985px;}
.x1c_c00472{left:314.801835px;}
.x78_c00472{left:317.539185px;}
.x74_c00472{left:322.484235px;}
.x9_c00472{left:324.464235px;}
.x70_c00472{left:325.790835px;}
.x52_c00472{left:335.740335px;}
.x75_c00472{left:344.224635px;}
.x3c_c00472{left:345.808635px;}
.xa_c00472{left:356.861985px;}
.x5d_c00472{left:357.891585px;}
.x53_c00472{left:366.717435px;}
.x4d_c00472{left:368.623185px;}
.x35_c00472{left:370.553685px;}
.x1d_c00472{left:378.013335px;}
.x3d_c00472{left:379.364685px;}
.x76_c00472{left:384.383985px;}
.x79_c00472{left:389.017185px;}
.x54_c00472{left:390.348735px;}
.x4e_c00472{left:400.219035px;}
.xb_c00472{left:401.748585px;}
.x5e_c00472{left:411.599085px;}
.x2c_c00472{left:424.053285px;}
.x1e_c00472{left:432.611835px;}
.x3e_c00472{left:433.671135px;}
.x13_c00472{left:435.076935px;}
.x6e_c00472{left:455.431335px;}
.x55_c00472{left:457.614285px;}
.x5f_c00472{left:468.093435px;}
.xc_c00472{left:478.785435px;}
.x68_c00472{left:488.606235px;}
.x22_c00472{left:490.853535px;}
.x56_c00472{left:499.971435px;}
.x14_c00472{left:501.921735px;}
.x44_c00472{left:511.801935px;}
.x4f_c00472{left:513.905685px;}
.xd_c00472{left:521.706885px;}
.x23_c00472{left:522.969135px;}
.x60_c00472{left:534.037335px;}
.x49_c00472{left:535.279785px;}
.x69_c00472{left:545.447085px;}
.x61_c00472{left:548.214135px;}
.x2d_c00472{left:555.253035px;}
.x71_c00472{left:556.426185px;}
.xe_c00472{left:557.762685px;}
.x64_c00472{left:565.900485px;}
.x45_c00472{left:566.974635px;}
.x3f_c00472{left:578.201235px;}
.x2e_c00472{left:589.135785px;}
.x72_c00472{left:599.050635px;}
.x15_c00472{left:600.976185px;}
.x2f_c00472{left:610.806885px;}
.x62_c00472{left:621.825585px;}
.x16_c00472{left:633.042285px;}
.x24_c00472{left:634.378785px;}
.x4a_c00472{left:643.224435px;}
.x6a_c00472{left:644.511435px;}
.x50_c00472{left:645.892485px;}
.x36_c00472{left:647.100285px;}
.x37_c00472{left:654.767835px;}
.x30_c00472{left:656.213235px;}
.xf_c00472{left:666.053835px;}
.x40_c00472{left:667.251735px;}
.x73_c00472{left:676.745835px;}
.x46_c00472{left:687.477435px;}
.x25_c00472{left:689.407935px;}
.x7a_c00472{left:697.709085px;}
.x31_c00472{left:699.817785px;}
.x57_c00472{left:701.149335px;}
.x6c_c00472{left:702.807585px;}
.x3_c00472{left:705.371685px;}
.x32_c00472{left:709.574235px;}
.x17_c00472{left:711.504735px;}
.x6b_c00472{left:717.815985px;}
.x38_c00472{left:721.667085px;}
.x26_c00472{left:722.934285px;}
.x4_c00472{left:725.735985px;}
.x18_c00472{left:733.230285px;}
.x39_c00472{left:734.309385px;}
.x65_c00472{left:745.031085px;}
.x4b_c00472{left:750.377085px;}
.x5a_c00472{left:755.510235px;}
@media print{
.v2_c00472{vertical-align:-44.352000pt;}
.v0_c00472{vertical-align:0.000000pt;}
.v1_c00472{vertical-align:36.731200pt;}
.ls11_c00472{letter-spacing:-2.562560pt;}
.ls4_c00472{letter-spacing:-2.365446pt;}
.ls16_c00472{letter-spacing:-2.223760pt;}
.lsc_c00472{letter-spacing:-1.576960pt;}
.ls10_c00472{letter-spacing:-1.236790pt;}
.lsb_c00472{letter-spacing:-0.496672pt;}
.ls1_c00472{letter-spacing:0.000000pt;}
.ls9_c00472{letter-spacing:0.993487pt;}
.ls12_c00472{letter-spacing:1.025306pt;}
.ls6_c00472{letter-spacing:1.795200pt;}
.lsd_c00472{letter-spacing:2.252800pt;}
.ls8_c00472{letter-spacing:2.324896pt;}
.ls5_c00472{letter-spacing:2.906120pt;}
.ls15_c00472{letter-spacing:3.176800pt;}
.ls7_c00472{letter-spacing:3.273609pt;}
.ls3_c00472{letter-spacing:3.379209pt;}
.ls2_c00472{letter-spacing:3.924800pt;}
.ls0_c00472{letter-spacing:4.798562pt;}
.lse_c00472{letter-spacing:25.344176pt;}
.ls14_c00472{letter-spacing:31.680000pt;}
.lsf_c00472{letter-spacing:46.886576pt;}
.lsa_c00472{letter-spacing:50.688176pt;}
.ls13_c00472{letter-spacing:64.627376pt;}
.ws0_c00472{word-spacing:-16.896044pt;}
.ws2_c00472{word-spacing:-16.195168pt;}
.ws1_c00472{word-spacing:-12.525568pt;}
.ws3_c00472{word-spacing:0.000000pt;}
._b_c00472{margin-left:-3.604832pt;}
._e_c00472{margin-left:-1.572912pt;}
._1_c00472{width:2.838792pt;}
._0_c00472{width:5.102240pt;}
._9_c00472{width:6.691432pt;}
._2_c00472{width:8.514792pt;}
._4_c00472{width:10.408024pt;}
._3_c00472{width:18.449679pt;}
._8_c00472{width:19.843071pt;}
._c_c00472{width:22.775759pt;}
._6_c00472{width:24.194319pt;}
._d_c00472{width:25.248256pt;}
._5_c00472{width:26.717382pt;}
._7_c00472{width:29.142662pt;}
._a_c00472{width:72.423868pt;}
._f_c00472{width:1129.995328pt;}
.fs0_c00472{font-size:19.712000pt;}
.fs11_c00472{font-size:21.824000pt;}
.fs13_c00472{font-size:24.640000pt;}
.fs9_c00472{font-size:25.344176pt;}
.fs10_c00472{font-size:31.680000pt;}
.fs3_c00472{font-size:35.904000pt;}
.fs8_c00472{font-size:45.056000pt;}
.fsa_c00472{font-size:46.886576pt;}
.fs5_c00472{font-size:50.688176pt;}
.fs7_c00472{font-size:54.912176pt;}
.fse_c00472{font-size:58.256000pt;}
.fsd_c00472{font-size:59.664176pt;}
.fs6_c00472{font-size:59.840000pt;}
.fsb_c00472{font-size:63.536000pt;}
.fsf_c00472{font-size:64.627376pt;}
.fs4_c00472{font-size:65.472176pt;}
.fs12_c00472{font-size:66.880000pt;}
.fs2_c00472{font-size:67.584176pt;}
.fsc_c00472{font-size:73.216000pt;}
.fs1_c00472{font-size:78.496000pt;}
.y0_c00472{bottom:0.000000pt;}
.y2_c00472{bottom:29.696520pt;}
.y1_c00472{bottom:68.000000pt;}
.y24_c00472{bottom:113.331720pt;}
.y23_c00472{bottom:113.648520pt;}
.y25_c00472{bottom:116.820920pt;}
.y22_c00472{bottom:133.294520pt;}
.y21_c00472{bottom:136.141320pt;}
.y20_c00472{bottom:151.035320pt;}
.y1f_c00472{bottom:152.298120pt;}
.y1e_c00472{bottom:172.260920pt;}
.y1d_c00472{bottom:188.100920pt;}
.y1c_c00472{bottom:188.417720pt;}
.y1b_c00472{bottom:234.987320pt;}
.y1a_c00472{bottom:263.182520pt;}
.y19_c00472{bottom:320.206520pt;}
.y18_c00472{bottom:348.401720pt;}
.y17_c00472{bottom:364.875320pt;}
.y16_c00472{bottom:375.963320pt;}
.y15_c00472{bottom:376.596920pt;}
.y14_c00472{bottom:404.787720pt;}
.y13_c00472{bottom:433.299720pt;}
.y12_c00472{bottom:461.182520pt;}
.y11_c00472{bottom:489.373320pt;}
.y10_c00472{bottom:544.813320pt;}
.yf_c00472{bottom:573.958920pt;}
.ye_c00472{bottom:602.158520pt;}
.yd_c00472{bottom:602.166880pt;}
.yc_c00472{bottom:630.349320pt;}
.yb_c00472{bottom:658.544520pt;}
.ya_c00472{bottom:686.422920pt;}
.y9_c00472{bottom:715.251720pt;}
.y7_c00472{bottom:770.691720pt;}
.y8_c00472{bottom:775.760520pt;}
.y6_c00472{bottom:798.891320pt;}
.y5_c00472{bottom:798.895280pt;}
.y4_c00472{bottom:827.398920pt;}
.y3_c00472{bottom:942.080520pt;}
.hb_c00472{height:16.879221pt;}
.h2_c00472{height:20.559000pt;}
.h12_c00472{height:21.098880pt;}
.h13_c00472{height:25.401750pt;}
.h14_c00472{height:25.698750pt;}
.hc_c00472{height:31.226460pt;}
.h7_c00472{height:33.758325pt;}
.h5_c00472{height:37.446750pt;}
.h11_c00472{height:43.041832pt;}
.ha_c00472{height:46.992000pt;}
.h8_c00472{height:58.729688pt;}
.h10_c00472{height:60.759188pt;}
.hf_c00472{height:62.227871pt;}
.hd_c00472{height:62.357109pt;}
.h6_c00472{height:64.257360pt;}
.h4_c00472{height:66.330173pt;}
.he_c00472{height:71.857500pt;}
.h3_c00472{height:77.039531pt;}
.h9_c00472{height:90.624498pt;}
.h1_c00472{height:986.666667pt;}
.h0_c00472{height:1122.666667pt;}
.w1_c00472{width:689.333333pt;}
.w0_c00472{width:793.333333pt;}
.x0_c00472{left:0.000000pt;}
.x2_c00472{left:17.654253pt;}
.x1_c00472{left:52.000000pt;}
.x5b_c00472{left:79.425853pt;}
.x27_c00472{left:81.207853pt;}
.x5_c00472{left:82.378253pt;}
.x63_c00472{left:100.220253pt;}
.x10_c00472{left:101.711853pt;}
.x28_c00472{left:109.702253pt;}
.x33_c00472{left:110.661453pt;}
.x19_c00472{left:120.825453pt;}
.x1f_c00472{left:129.436253pt;}
.x41_c00472{left:130.360253pt;}
.x6_c00472{left:131.275453pt;}
.x1a_c00472{left:140.119453pt;}
.x29_c00472{left:149.922653pt;}
.x42_c00472{left:158.806253pt;}
.x7_c00472{left:160.535453pt;}
.x58_c00472{left:168.398253pt;}
.x34_c00472{left:169.903053pt;}
.x3a_c00472{left:178.144253pt;}
.x11_c00472{left:189.245453pt;}
.x6d_c00472{left:197.640653pt;}
.x43_c00472{left:198.705453pt;}
.x59_c00472{left:199.603053pt;}
.x77_c00472{left:206.854253pt;}
.x51_c00472{left:208.781453pt;}
.x2a_c00472{left:220.789053pt;}
.x47_c00472{left:228.533053pt;}
.x6f_c00472{left:230.077453pt;}
.x20_c00472{left:238.644253pt;}
.x8_c00472{left:240.738653pt;}
.x5c_c00472{left:247.413453pt;}
.x66_c00472{left:249.116253pt;}
.x48_c00472{left:257.881053pt;}
.x12_c00472{left:259.187853pt;}
.x1b_c00472{left:260.463853pt;}
.x4c_c00472{left:266.685453pt;}
.x3b_c00472{left:267.816253pt;}
.x2b_c00472{left:269.030653pt;}
.x21_c00472{left:277.469853pt;}
.x67_c00472{left:278.842653pt;}
.x1c_c00472{left:279.823853pt;}
.x78_c00472{left:282.257053pt;}
.x74_c00472{left:286.652653pt;}
.x9_c00472{left:288.412653pt;}
.x70_c00472{left:289.591853pt;}
.x52_c00472{left:298.435853pt;}
.x75_c00472{left:305.977453pt;}
.x3c_c00472{left:307.385453pt;}
.xa_c00472{left:317.210653pt;}
.x5d_c00472{left:318.125853pt;}
.x53_c00472{left:325.971053pt;}
.x4d_c00472{left:327.665053pt;}
.x35_c00472{left:329.381053pt;}
.x1d_c00472{left:336.011853pt;}
.x3d_c00472{left:337.213053pt;}
.x76_c00472{left:341.674653pt;}
.x79_c00472{left:345.793053pt;}
.x54_c00472{left:346.976653pt;}
.x4e_c00472{left:355.750253pt;}
.xb_c00472{left:357.109853pt;}
.x5e_c00472{left:365.865853pt;}
.x2c_c00472{left:376.936253pt;}
.x1e_c00472{left:384.543853pt;}
.x3e_c00472{left:385.485453pt;}
.x13_c00472{left:386.735053pt;}
.x6e_c00472{left:404.827853pt;}
.x55_c00472{left:406.768253pt;}
.x5f_c00472{left:416.083053pt;}
.xc_c00472{left:425.587053pt;}
.x68_c00472{left:434.316653pt;}
.x22_c00472{left:436.314253pt;}
.x56_c00472{left:444.419053pt;}
.x14_c00472{left:446.152653pt;}
.x44_c00472{left:454.935053pt;}
.x4f_c00472{left:456.805053pt;}
.xd_c00472{left:463.739453pt;}
.x23_c00472{left:464.861453pt;}
.x60_c00472{left:474.699853pt;}
.x49_c00472{left:475.804253pt;}
.x69_c00472{left:484.841853pt;}
.x61_c00472{left:487.301453pt;}
.x2d_c00472{left:493.558253pt;}
.x71_c00472{left:494.601053pt;}
.xe_c00472{left:495.789053pt;}
.x64_c00472{left:503.022653pt;}
.x45_c00472{left:503.977453pt;}
.x3f_c00472{left:513.956653pt;}
.x2e_c00472{left:523.676253pt;}
.x72_c00472{left:532.489453pt;}
.x15_c00472{left:534.201053pt;}
.x2f_c00472{left:542.939453pt;}
.x62_c00472{left:552.733853pt;}
.x16_c00472{left:562.704253pt;}
.x24_c00472{left:563.892253pt;}
.x4a_c00472{left:571.755053pt;}
.x6a_c00472{left:572.899053pt;}
.x50_c00472{left:574.126653pt;}
.x36_c00472{left:575.200253pt;}
.x37_c00472{left:582.015853pt;}
.x30_c00472{left:583.300653pt;}
.xf_c00472{left:592.047853pt;}
.x40_c00472{left:593.112653pt;}
.x73_c00472{left:601.551853pt;}
.x46_c00472{left:611.091053pt;}
.x25_c00472{left:612.807053pt;}
.x7a_c00472{left:620.185853pt;}
.x31_c00472{left:622.060253pt;}
.x57_c00472{left:623.243853pt;}
.x6c_c00472{left:624.717853pt;}
.x3_c00472{left:626.997053pt;}
.x32_c00472{left:630.732653pt;}
.x17_c00472{left:632.448653pt;}
.x6b_c00472{left:638.058653pt;}
.x38_c00472{left:641.481853pt;}
.x26_c00472{left:642.608253pt;}
.x4_c00472{left:645.098653pt;}
.x18_c00472{left:651.760253pt;}
.x39_c00472{left:652.719453pt;}
.x65_c00472{left:662.249853pt;}
.x4b_c00472{left:667.001853pt;}
.x5a_c00472{left:671.564653pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2a42ea4f69849b7e7e5d479b.woff2')format("woff");}.ff1_c00473{font-family:ff1_c00473;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00473;src:url('chunks/assets/font_4b373ef0e99214e4af666df4.woff2')format("woff");}.ff2_c00473{font-family:ff2_c00473;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00473;src:url('chunks/assets/font_b8377e349c4a3c134195bcb9.woff2')format("woff");}.ff3_c00473{font-family:ff3_c00473;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00473;src:url('chunks/assets/font_8c0d07926f97ead7c47dbd96.woff2')format("woff");}.ff4_c00473{font-family:ff4_c00473;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3b_c00473{transform:matrix(0.144455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144455,0.000000,0.000000,0.250000,0,0);}
.ma2_c00473{transform:matrix(0.152974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152974,0.000000,0.000000,0.250000,0,0);}
.m4f_c00473{transform:matrix(0.154559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154559,0.000000,0.000000,0.250000,0,0);}
.m4c_c00473{transform:matrix(0.155002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155002,0.000000,0.000000,0.250000,0,0);}
.m91_c00473{transform:matrix(0.187205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187205,0.000000,0.000000,0.250000,0,0);}
.m72_c00473{transform:matrix(0.190178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190178,0.000000,0.000000,0.250000,0,0);}
.mad_c00473{transform:matrix(0.231996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231996,0.000000,0.000000,0.250000,0,0);}
.m96_c00473{transform:matrix(0.241270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241270,0.000000,0.000000,0.250000,0,0);}
.m80_c00473{transform:matrix(0.249331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249331,0.000000,0.000000,0.250000,0,0);}
.m0_c00473{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m71_c00473{transform:matrix(0.250197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250197,0.000000,0.000000,0.250000,0,0);}
.md_c00473{transform:matrix(0.250751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250751,0.000000,0.000000,0.250000,0,0);}
.m74_c00473{transform:matrix(0.251997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251997,0.000000,0.000000,0.250000,0,0);}
.m9_c00473{transform:matrix(0.252272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252272,0.000000,0.000000,0.250000,0,0);}
.m1b_c00473{transform:matrix(0.252466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252466,0.000000,0.000000,0.250000,0,0);}
.ma1_c00473{transform:matrix(0.253989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253989,0.000000,0.000000,0.250000,0,0);}
.m7b_c00473{transform:matrix(0.254399,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254399,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254399,0.000000,0.000000,0.250000,0,0);}
.m49_c00473{transform:matrix(0.255188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255188,0.000000,0.000000,0.250000,0,0);}
.m84_c00473{transform:matrix(0.255906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255906,0.000000,0.000000,0.250000,0,0);}
.m1_c00473{transform:matrix(0.256420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256420,0.000000,0.000000,0.250000,0,0);}
.m79_c00473{transform:matrix(0.256895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256895,0.000000,0.000000,0.250000,0,0);}
.m3a_c00473{transform:matrix(0.257140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257140,0.000000,0.000000,0.250000,0,0);}
.m31_c00473{transform:matrix(0.257387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257387,0.000000,0.000000,0.250000,0,0);}
.m18_c00473{transform:matrix(0.257860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257860,0.000000,0.000000,0.250000,0,0);}
.m51_c00473{transform:matrix(0.258383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258383,0.000000,0.000000,0.250000,0,0);}
.m7f_c00473{transform:matrix(0.258825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258825,0.000000,0.000000,0.250000,0,0);}
.m54_c00473{transform:matrix(0.259145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259145,0.000000,0.000000,0.250000,0,0);}
.m67_c00473{transform:matrix(0.259307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259307,0.000000,0.000000,0.250000,0,0);}
.m16_c00473{transform:matrix(0.259440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259440,0.000000,0.000000,0.250000,0,0);}
.m30_c00473{transform:matrix(0.259733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259733,0.000000,0.000000,0.250000,0,0);}
.m56_c00473{transform:matrix(0.260423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260423,0.000000,0.000000,0.250000,0,0);}
.m65_c00473{transform:matrix(0.261324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261324,0.000000,0.000000,0.250000,0,0);}
.m9f_c00473{transform:matrix(0.262544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262544,0.000000,0.000000,0.250000,0,0);}
.m2f_c00473{transform:matrix(0.263880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263880,0.000000,0.000000,0.250000,0,0);}
.m6f_c00473{transform:matrix(0.264139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264139,0.000000,0.000000,0.250000,0,0);}
.m20_c00473{transform:matrix(0.264211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264211,0.000000,0.000000,0.250000,0,0);}
.m27_c00473{transform:matrix(0.264361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264361,0.000000,0.000000,0.250000,0,0);}
.m47_c00473{transform:matrix(0.265783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265783,0.000000,0.000000,0.250000,0,0);}
.m43_c00473{transform:matrix(0.266323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266323,0.000000,0.000000,0.250000,0,0);}
.m97_c00473{transform:matrix(0.266482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266482,0.000000,0.000000,0.250000,0,0);}
.m69_c00473{transform:matrix(0.266986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266986,0.000000,0.000000,0.250000,0,0);}
.m4a_c00473{transform:matrix(0.267479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267479,0.000000,0.000000,0.250000,0,0);}
.m44_c00473{transform:matrix(0.267980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267980,0.000000,0.000000,0.250000,0,0);}
.m1c_c00473{transform:matrix(0.268492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268492,0.000000,0.000000,0.250000,0,0);}
.m36_c00473{transform:matrix(0.268957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268957,0.000000,0.000000,0.250000,0,0);}
.m61_c00473{transform:matrix(0.269134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269134,0.000000,0.000000,0.250000,0,0);}
.m5b_c00473{transform:matrix(0.269609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269609,0.000000,0.000000,0.250000,0,0);}
.m53_c00473{transform:matrix(0.270126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270126,0.000000,0.000000,0.250000,0,0);}
.m22_c00473{transform:matrix(0.270247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270247,0.000000,0.000000,0.250000,0,0);}
.m1e_c00473{transform:matrix(0.270439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270439,0.000000,0.000000,0.250000,0,0);}
.m3e_c00473{transform:matrix(0.270797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270797,0.000000,0.000000,0.250000,0,0);}
.m25_c00473{transform:matrix(0.271251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271251,0.000000,0.000000,0.250000,0,0);}
.m7_c00473{transform:matrix(0.272252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272252,0.000000,0.000000,0.250000,0,0);}
.m93_c00473{transform:matrix(0.272398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272398,0.000000,0.000000,0.250000,0,0);}
.me_c00473{transform:matrix(0.272597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272597,0.000000,0.000000,0.250000,0,0);}
.ma4_c00473{transform:matrix(0.273881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273881,0.000000,0.000000,0.250000,0,0);}
.m6e_c00473{transform:matrix(0.274538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274538,0.000000,0.000000,0.250000,0,0);}
.m32_c00473{transform:matrix(0.274637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274637,0.000000,0.000000,0.250000,0,0);}
.m8e_c00473{transform:matrix(0.274703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274703,0.000000,0.000000,0.250000,0,0);}
.m78_c00473{transform:matrix(0.274976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274976,0.000000,0.000000,0.250000,0,0);}
.ma8_c00473{transform:matrix(0.275051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275051,0.000000,0.000000,0.250000,0,0);}
.m3d_c00473{transform:matrix(0.275549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275549,0.000000,0.000000,0.250000,0,0);}
.m29_c00473{transform:matrix(0.275683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275683,0.000000,0.000000,0.250000,0,0);}
.m58_c00473{transform:matrix(0.276436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276436,0.000000,0.000000,0.250000,0,0);}
.m66_c00473{transform:matrix(0.276526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276526,0.000000,0.000000,0.250000,0,0);}
.m35_c00473{transform:matrix(0.276697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276697,0.000000,0.000000,0.250000,0,0);}
.ma9_c00473{transform:matrix(0.277090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277090,0.000000,0.000000,0.250000,0,0);}
.m5a_c00473{transform:matrix(0.277140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277140,0.000000,0.000000,0.250000,0,0);}
.m88_c00473{transform:matrix(0.277388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277388,0.000000,0.000000,0.250000,0,0);}
.m39_c00473{transform:matrix(0.278519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278519,0.000000,0.000000,0.250000,0,0);}
.m92_c00473{transform:matrix(0.278524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278524,0.000000,0.000000,0.250000,0,0);}
.m89_c00473{transform:matrix(0.278805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278805,0.000000,0.000000,0.250000,0,0);}
.m52_c00473{transform:matrix(0.279273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279273,0.000000,0.000000,0.250000,0,0);}
.m5e_c00473{transform:matrix(0.279929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279929,0.000000,0.000000,0.250000,0,0);}
.m62_c00473{transform:matrix(0.280851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280851,0.000000,0.000000,0.250000,0,0);}
.m9a_c00473{transform:matrix(0.281059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281059,0.000000,0.000000,0.250000,0,0);}
.m42_c00473{transform:matrix(0.281410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281410,0.000000,0.000000,0.250000,0,0);}
.m9b_c00473{transform:matrix(0.281415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281415,0.000000,0.000000,0.250000,0,0);}
.m10_c00473{transform:matrix(0.282358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282358,0.000000,0.000000,0.250000,0,0);}
.m2b_c00473{transform:matrix(0.282727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282727,0.000000,0.000000,0.250000,0,0);}
.m40_c00473{transform:matrix(0.283054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283054,0.000000,0.000000,0.250000,0,0);}
.mae_c00473{transform:matrix(0.283147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283147,0.000000,0.000000,0.250000,0,0);}
.m2a_c00473{transform:matrix(0.283338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283338,0.000000,0.000000,0.250000,0,0);}
.m75_c00473{transform:matrix(0.283346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283346,0.000000,0.000000,0.250000,0,0);}
.m95_c00473{transform:matrix(0.284269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284269,0.000000,0.000000,0.250000,0,0);}
.m6_c00473{transform:matrix(0.284361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284361,0.000000,0.000000,0.250000,0,0);}
.m23_c00473{transform:matrix(0.284910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284910,0.000000,0.000000,0.250000,0,0);}
.m2_c00473{transform:matrix(0.285393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285393,0.000000,0.000000,0.250000,0,0);}
.ma5_c00473{transform:matrix(0.285487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285487,0.000000,0.000000,0.250000,0,0);}
.m94_c00473{transform:matrix(0.285572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285572,0.000000,0.000000,0.250000,0,0);}
.m70_c00473{transform:matrix(0.285853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285853,0.000000,0.000000,0.250000,0,0);}
.m4_c00473{transform:matrix(0.286093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286093,0.000000,0.000000,0.250000,0,0);}
.m6a_c00473{transform:matrix(0.286577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286577,0.000000,0.000000,0.250000,0,0);}
.m99_c00473{transform:matrix(0.286892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286892,0.000000,0.000000,0.250000,0,0);}
.mb0_c00473{transform:matrix(0.287400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287400,0.000000,0.000000,0.250000,0,0);}
.m64_c00473{transform:matrix(0.287591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287591,0.000000,0.000000,0.250000,0,0);}
.m1a_c00473{transform:matrix(0.287665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287665,0.000000,0.000000,0.250000,0,0);}
.m4d_c00473{transform:matrix(0.287888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287888,0.000000,0.000000,0.250000,0,0);}
.ma7_c00473{transform:matrix(0.287969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287969,0.000000,0.000000,0.250000,0,0);}
.m33_c00473{transform:matrix(0.288115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288115,0.000000,0.000000,0.250000,0,0);}
.m48_c00473{transform:matrix(0.289045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289045,0.000000,0.000000,0.250000,0,0);}
.m6c_c00473{transform:matrix(0.289788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289788,0.000000,0.000000,0.250000,0,0);}
.m59_c00473{transform:matrix(0.289930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289930,0.000000,0.000000,0.250000,0,0);}
.m1d_c00473{transform:matrix(0.290462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290462,0.000000,0.000000,0.250000,0,0);}
.mc_c00473{transform:matrix(0.291286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291286,0.000000,0.000000,0.250000,0,0);}
.m2e_c00473{transform:matrix(0.292552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292552,0.000000,0.000000,0.250000,0,0);}
.ma3_c00473{transform:matrix(0.292622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292622,0.000000,0.000000,0.250000,0,0);}
.ma0_c00473{transform:matrix(0.292935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292935,0.000000,0.000000,0.250000,0,0);}
.m9d_c00473{transform:matrix(0.293283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293283,0.000000,0.000000,0.250000,0,0);}
.m5f_c00473{transform:matrix(0.294682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294682,0.000000,0.000000,0.250000,0,0);}
.m9e_c00473{transform:matrix(0.295211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295211,0.000000,0.000000,0.250000,0,0);}
.m7c_c00473{transform:matrix(0.295380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295380,0.000000,0.000000,0.250000,0,0);}
.m1f_c00473{transform:matrix(0.295424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295424,0.000000,0.000000,0.250000,0,0);}
.m24_c00473{transform:matrix(0.295877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295877,0.000000,0.000000,0.250000,0,0);}
.m2d_c00473{transform:matrix(0.296242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296242,0.000000,0.000000,0.250000,0,0);}
.m73_c00473{transform:matrix(0.296258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296258,0.000000,0.000000,0.250000,0,0);}
.maf_c00473{transform:matrix(0.296261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296261,0.000000,0.000000,0.250000,0,0);}
.m45_c00473{transform:matrix(0.296702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296702,0.000000,0.000000,0.250000,0,0);}
.m3f_c00473{transform:matrix(0.297192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297192,0.000000,0.000000,0.250000,0,0);}
.m60_c00473{transform:matrix(0.297464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297464,0.000000,0.000000,0.250000,0,0);}
.m26_c00473{transform:matrix(0.297518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297518,0.000000,0.000000,0.250000,0,0);}
.m4b_c00473{transform:matrix(0.299647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299647,0.000000,0.000000,0.250000,0,0);}
.m55_c00473{transform:matrix(0.299914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299914,0.000000,0.000000,0.250000,0,0);}
.m8c_c00473{transform:matrix(0.300007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300007,0.000000,0.000000,0.250000,0,0);}
.mb_c00473{transform:matrix(0.300586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300586,0.000000,0.000000,0.250000,0,0);}
.m68_c00473{transform:matrix(0.300921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300921,0.000000,0.000000,0.250000,0,0);}
.m8f_c00473{transform:matrix(0.301460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301460,0.000000,0.000000,0.250000,0,0);}
.ma6_c00473{transform:matrix(0.304356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304356,0.000000,0.000000,0.250000,0,0);}
.m5_c00473{transform:matrix(0.305604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305604,0.000000,0.000000,0.250000,0,0);}
.m6d_c00473{transform:matrix(0.305769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305769,0.000000,0.000000,0.250000,0,0);}
.m90_c00473{transform:matrix(0.306765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306765,0.000000,0.000000,0.250000,0,0);}
.m8_c00473{transform:matrix(0.307432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307432,0.000000,0.000000,0.250000,0,0);}
.m83_c00473{transform:matrix(0.308304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308304,0.000000,0.000000,0.250000,0,0);}
.m3_c00473{transform:matrix(0.309116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309116,0.000000,0.000000,0.250000,0,0);}
.m5c_c00473{transform:matrix(0.309383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309383,0.000000,0.000000,0.250000,0,0);}
.m41_c00473{transform:matrix(0.310066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310066,0.000000,0.000000,0.250000,0,0);}
.m14_c00473{transform:matrix(0.310101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310101,0.000000,0.000000,0.250000,0,0);}
.m7a_c00473{transform:matrix(0.310128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310128,0.000000,0.000000,0.250000,0,0);}
.m76_c00473{transform:matrix(0.310951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310951,0.000000,0.000000,0.250000,0,0);}
.mf_c00473{transform:matrix(0.311712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311712,0.000000,0.000000,0.250000,0,0);}
.m13_c00473{transform:matrix(0.311719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311719,0.000000,0.000000,0.250000,0,0);}
.m15_c00473{transform:matrix(0.312304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312304,0.000000,0.000000,0.250000,0,0);}
.m85_c00473{transform:matrix(0.313163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313163,0.000000,0.000000,0.250000,0,0);}
.mb1_c00473{transform:matrix(0.313508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313508,0.000000,0.000000,0.250000,0,0);}
.mac_c00473{transform:matrix(0.315034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315034,0.000000,0.000000,0.250000,0,0);}
.m7d_c00473{transform:matrix(0.316212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316212,0.000000,0.000000,0.250000,0,0);}
.m46_c00473{transform:matrix(0.316427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316427,0.000000,0.000000,0.250000,0,0);}
.m81_c00473{transform:matrix(0.317213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317213,0.000000,0.000000,0.250000,0,0);}
.m7e_c00473{transform:matrix(0.317469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317469,0.000000,0.000000,0.250000,0,0);}
.m82_c00473{transform:matrix(0.317898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317898,0.000000,0.000000,0.250000,0,0);}
.m5d_c00473{transform:matrix(0.318729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318729,0.000000,0.000000,0.250000,0,0);}
.m34_c00473{transform:matrix(0.319507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319507,0.000000,0.000000,0.250000,0,0);}
.m8d_c00473{transform:matrix(0.321522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321522,0.000000,0.000000,0.250000,0,0);}
.m12_c00473{transform:matrix(0.322870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322870,0.000000,0.000000,0.250000,0,0);}
.m8b_c00473{transform:matrix(0.324568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324568,0.000000,0.000000,0.250000,0,0);}
.m4e_c00473{transform:matrix(0.324806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324806,0.000000,0.000000,0.250000,0,0);}
.m50_c00473{transform:matrix(0.324835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324835,0.000000,0.000000,0.250000,0,0);}
.m57_c00473{transform:matrix(0.325317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325317,0.000000,0.000000,0.250000,0,0);}
.mab_c00473{transform:matrix(0.325372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325372,0.000000,0.000000,0.250000,0,0);}
.m17_c00473{transform:matrix(0.327542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327542,0.000000,0.000000,0.250000,0,0);}
.m8a_c00473{transform:matrix(0.328731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328731,0.000000,0.000000,0.250000,0,0);}
.m2c_c00473{transform:matrix(0.331053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331053,0.000000,0.000000,0.250000,0,0);}
.m21_c00473{transform:matrix(0.331126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331126,0.000000,0.000000,0.250000,0,0);}
.m38_c00473{transform:matrix(0.332574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332574,0.000000,0.000000,0.250000,0,0);}
.m37_c00473{transform:matrix(0.334409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334409,0.000000,0.000000,0.250000,0,0);}
.m9c_c00473{transform:matrix(0.335166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335166,0.000000,0.000000,0.250000,0,0);}
.m6b_c00473{transform:matrix(0.336774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336774,0.000000,0.000000,0.250000,0,0);}
.maa_c00473{transform:matrix(0.337517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337517,0.000000,0.000000,0.250000,0,0);}
.m77_c00473{transform:matrix(0.352386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352386,0.000000,0.000000,0.250000,0,0);}
.m11_c00473{transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);}
.ma_c00473{transform:matrix(0.366945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366945,0.000000,0.000000,0.250000,0,0);}
.m3c_c00473{transform:matrix(0.369039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369039,0.000000,0.000000,0.250000,0,0);}
.m19_c00473{transform:matrix(0.369571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369571,0.000000,0.000000,0.250000,0,0);}
.m86_c00473{transform:matrix(0.370072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370072,0.000000,0.000000,0.250000,0,0);}
.m63_c00473{transform:matrix(0.375346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375346,0.000000,0.000000,0.250000,0,0);}
.m28_c00473{transform:matrix(0.378137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378137,0.000000,0.000000,0.250000,0,0);}
.m98_c00473{transform:matrix(0.397481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397481,0.000000,0.000000,0.250000,0,0);}
.m87_c00473{transform:matrix(0.403692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403692,0.000000,0.000000,0.250000,0,0);}
.v0_c00473{vertical-align:0.000000px;}
.ls14_c00473{letter-spacing:-4.961887px;}
.ls23_c00473{letter-spacing:-3.173940px;}
.lsf_c00473{letter-spacing:-2.862090px;}
.ls21_c00473{letter-spacing:-2.702700px;}
.ls15_c00473{letter-spacing:-2.674980px;}
.ls1f_c00473{letter-spacing:-2.494800px;}
.ls20_c00473{letter-spacing:-2.397780px;}
.ls1e_c00473{letter-spacing:-1.375134px;}
.ls12_c00473{letter-spacing:-0.629660px;}
.ls1_c00473{letter-spacing:0.000000px;}
.ls19_c00473{letter-spacing:0.580595px;}
.ls0_c00473{letter-spacing:1.637064px;}
.ls16_c00473{letter-spacing:1.643657px;}
.lsc_c00473{letter-spacing:1.897157px;}
.ls5_c00473{letter-spacing:2.027995px;}
.ls1a_c00473{letter-spacing:3.311847px;}
.ls18_c00473{letter-spacing:3.425400px;}
.ls11_c00473{letter-spacing:3.484810px;}
.ls7_c00473{letter-spacing:3.524400px;}
.ls9_c00473{letter-spacing:3.643200px;}
.lsd_c00473{letter-spacing:3.647120px;}
.ls1c_c00473{letter-spacing:3.722400px;}
.lse_c00473{letter-spacing:3.742200px;}
.ls10_c00473{letter-spacing:3.801610px;}
.ls13_c00473{letter-spacing:3.821400px;}
.lsb_c00473{letter-spacing:3.861000px;}
.ls1d_c00473{letter-spacing:3.870900px;}
.ls22_c00473{letter-spacing:3.880810px;}
.lsa_c00473{letter-spacing:3.884265px;}
.ls17_c00473{letter-spacing:3.960000px;}
.ls6_c00473{letter-spacing:4.039200px;}
.ls3_c00473{letter-spacing:4.088700px;}
.ls8_c00473{letter-spacing:4.118400px;}
.ls2_c00473{letter-spacing:4.257000px;}
.ls4_c00473{letter-spacing:52.747398px;}
.ls1b_c00473{letter-spacing:57.024198px;}
.sc__c00473{text-shadow:none;}
.sc0_c00473{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00473{-webkit-text-stroke:0px transparent;}
.sc0_c00473{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00473{word-spacing:0.000000px;}
._1_c00473{width:11.709621px;}
._0_c00473{width:24.294600px;}
._2_c00473{width:284.105448px;}
.fc0_c00473{color:transparent;}
.fsd_c00473{font-size:22.176000px;}
.fs0_c00473{font-size:22.572000px;}
.fs3_c00473{font-size:52.747398px;}
.fs11_c00473{font-size:57.024198px;}
.fs10_c00473{font-size:68.508000px;}
.fs14_c00473{font-size:69.102198px;}
.fsb_c00473{font-size:69.696198px;}
.fs5_c00473{font-size:70.488000px;}
.fs15_c00473{font-size:71.280000px;}
.fs7_c00473{font-size:72.864000px;}
.fs12_c00473{font-size:74.448000px;}
.fs9_c00473{font-size:74.844000px;}
.fsa_c00473{font-size:76.032198px;}
.fse_c00473{font-size:76.428000px;}
.fs8_c00473{font-size:77.220000px;}
.fs13_c00473{font-size:77.418000px;}
.fs16_c00473{font-size:77.616198px;}
.fsc_c00473{font-size:79.200000px;}
.fs4_c00473{font-size:80.784000px;}
.fs2_c00473{font-size:81.774000px;}
.fs6_c00473{font-size:82.368000px;}
.fs1_c00473{font-size:85.140000px;}
.fs17_c00473{font-size:90.684000px;}
.fsf_c00473{font-size:141.768198px;}
.y0_c00473{bottom:0.000000px;}
.y1_c00473{bottom:76.500000px;}
.y19_c00473{bottom:161.361135px;}
.y18_c00473{bottom:192.719385px;}
.y17_c00473{bottom:288.952335px;}
.y16_c00473{bottom:320.666985px;}
.y15_c00473{bottom:353.099385px;}
.y14_c00473{bottom:385.175385px;}
.y13_c00473{bottom:416.899935px;}
.y2_c00473{bottom:429.373935px;}
.y12_c00473{bottom:448.619535px;}
.y11_c00473{bottom:479.977785px;}
.y10_c00473{bottom:542.347785px;}
.yf_c00473{bottom:574.785135px;}
.ye_c00473{bottom:606.499785px;}
.yd_c00473{bottom:628.952985px;}
.yc_c00473{bottom:638.580735px;}
.yb_c00473{bottom:670.651785px;}
.ya_c00473{bottom:702.727785px;}
.y9_c00473{bottom:734.808735px;}
.y8_c00473{bottom:798.242985px;}
.y7_c00473{bottom:829.249785px;}
.y6_c00473{bottom:860.974335px;}
.y5_c00473{bottom:892.693935px;}
.y4_c00473{bottom:923.700735px;}
.y3_c00473{bottom:1057.707135px;}
.hf_c00473{height:23.128875px;}
.h2_c00473{height:23.541891px;}
.h5_c00473{height:35.129767px;}
.h13_c00473{height:37.978116px;}
.hd_c00473{height:68.403007px;}
.h7_c00473{height:69.180117px;}
.h12_c00473{height:71.451703px;}
.h9_c00473{height:71.512031px;}
.h16_c00473{height:72.071433px;}
.h14_c00473{height:73.066641px;}
.h17_c00473{height:74.342813px;}
.hc_c00473{height:74.621444px;}
.h10_c00473{height:75.009902px;}
.ha_c00473{height:75.787207px;}
.h15_c00473{height:75.981533px;}
.h18_c00473{height:76.176054px;}
.he_c00473{height:77.730469px;}
.hb_c00473{height:78.059953px;}
.h6_c00473{height:79.285078px;}
.h4_c00473{height:80.256709px;}
.h8_c00473{height:80.839688px;}
.h3_c00473{height:83.560254px;}
.h19_c00473{height:94.580578px;}
.h11_c00473{height:147.859800px;}
.h1_c00473{height:1110.000000px;}
.h0_c00473{height:1263.000000px;}
.w1_c00473{width:760.500000px;}
.w0_c00473{width:892.500000px;}
.x0_c00473{left:0.000000px;}
.x2_c00473{left:32.443185px;}
.x1_c00473{left:66.000000px;}
.x37_c00473{left:93.476685px;}
.x29_c00473{left:94.714185px;}
.x13_c00473{left:95.793285px;}
.xd_c00473{left:96.842685px;}
.x43_c00473{left:128.210835px;}
.x2a_c00473{left:137.670285px;}
.x14_c00473{left:138.887985px;}
.x4_c00473{left:149.584935px;}
.x38_c00473{left:159.767085px;}
.x56_c00473{left:161.380785px;}
.x3b_c00473{left:172.760835px;}
.x60_c00473{left:174.537885px;}
.x23_c00473{left:183.393435px;}
.xe_c00473{left:185.081385px;}
.x4a_c00473{left:193.763685px;}
.x50_c00473{left:194.892285px;}
.x5a_c00473{left:204.124035px;}
.x30_c00473{left:205.460535px;}
.x15_c00473{left:216.231735px;}
.x44_c00473{left:217.701885px;}
.x5_c00473{left:228.235485px;}
.x45_c00473{left:237.808785px;}
.x31_c00473{left:250.129335px;}
.x1e_c00473{left:256.683135px;}
.x1f_c00473{left:260.737185px;}
.x6_c00473{left:271.815285px;}
.x32_c00473{left:276.824685px;}
.x33_c00473{left:283.046835px;}
.x20_c00473{left:294.317985px;}
.x5b_c00473{left:295.991085px;}
.x61_c00473{left:297.738435px;}
.xf_c00473{left:304.460535px;}
.x24_c00473{left:305.737635px;}
.x16_c00473{left:316.424685px;}
.x46_c00473{left:328.463085px;}
.x4b_c00473{left:337.976985px;}
.x25_c00473{left:339.575835px;}
.x10_c00473{left:349.525335px;}
.x7_c00473{left:350.842035px;}
.x34_c00473{left:360.058935px;}
.x51_c00473{left:361.291485px;}
.x4e_c00473{left:372.696285px;}
.x57_c00473{left:384.511935px;}
.x8_c00473{left:394.060485px;}
.x47_c00473{left:404.613885px;}
.x54_c00473{left:405.658335px;}
.x17_c00473{left:417.261135px;}
.x3c_c00473{left:427.072035px;}
.x2b_c00473{left:438.476835px;}
.x40_c00473{left:440.011335px;}
.x18_c00473{left:449.302485px;}
.x48_c00473{left:451.104285px;}
.x11_c00473{left:461.132985px;}
.x26_c00473{left:472.156635px;}
.x5c_c00473{left:473.661435px;}
.x9_c00473{left:483.724785px;}
.x3a_c00473{left:492.966435px;}
.x2c_c00473{left:494.575185px;}
.x49_c00473{left:504.900885px;}
.xa_c00473{left:515.503785px;}
.x52_c00473{left:518.889585px;}
.x27_c00473{left:528.339135px;}
.x41_c00473{left:538.798485px;}
.x3d_c00473{left:540.560685px;}
.x4c_c00473{left:549.832035px;}
.xb_c00473{left:558.935085px;}
.x2d_c00473{left:561.147735px;}
.x39_c00473{left:571.265535px;}
.x3e_c00473{left:572.418885px;}
.x19_c00473{left:582.660435px;}
.x58_c00473{left:583.690035px;}
.x4f_c00473{left:592.793085px;}
.x5e_c00473{left:595.421535px;}
.x5d_c00473{left:603.519735px;}
.x28_c00473{left:614.221635px;}
.x1a_c00473{left:615.766035px;}
.x55_c00473{left:625.581885px;}
.x12_c00473{left:627.497535px;}
.x2e_c00473{left:638.219235px;}
.x21_c00473{left:648.559785px;}
.x1b_c00473{left:649.569585px;}
.xc_c00473{left:659.499285px;}
.x35_c00473{left:660.652635px;}
.x1c_c00473{left:670.478385px;}
.x53_c00473{left:672.111885px;}
.x4d_c00473{left:682.472235px;}
.x22_c00473{left:693.461235px;}
.x59_c00473{left:704.158185px;}
.x3_c00473{left:707.341035px;}
.x1d_c00473{left:715.934235px;}
.x2f_c00473{left:717.488535px;}
.x36_c00473{left:725.774835px;}
.x3f_c00473{left:727.700385px;}
.x5f_c00473{left:737.808285px;}
.x42_c00473{left:738.991335px;}
@media print{
.v0_c00473{vertical-align:0.000000pt;}
.ls14_c00473{letter-spacing:-4.410566pt;}
.ls23_c00473{letter-spacing:-2.821280pt;}
.lsf_c00473{letter-spacing:-2.544080pt;}
.ls21_c00473{letter-spacing:-2.402400pt;}
.ls15_c00473{letter-spacing:-2.377760pt;}
.ls1f_c00473{letter-spacing:-2.217600pt;}
.ls20_c00473{letter-spacing:-2.131360pt;}
.ls1e_c00473{letter-spacing:-1.222341pt;}
.ls12_c00473{letter-spacing:-0.559698pt;}
.ls1_c00473{letter-spacing:0.000000pt;}
.ls19_c00473{letter-spacing:0.516085pt;}
.ls0_c00473{letter-spacing:1.455168pt;}
.ls16_c00473{letter-spacing:1.461029pt;}
.lsc_c00473{letter-spacing:1.686362pt;}
.ls5_c00473{letter-spacing:1.802662pt;}
.ls1a_c00473{letter-spacing:2.943864pt;}
.ls18_c00473{letter-spacing:3.044800pt;}
.ls11_c00473{letter-spacing:3.097609pt;}
.ls7_c00473{letter-spacing:3.132800pt;}
.ls9_c00473{letter-spacing:3.238400pt;}
.lsd_c00473{letter-spacing:3.241885pt;}
.ls1c_c00473{letter-spacing:3.308800pt;}
.lse_c00473{letter-spacing:3.326400pt;}
.ls10_c00473{letter-spacing:3.379209pt;}
.ls13_c00473{letter-spacing:3.396800pt;}
.lsb_c00473{letter-spacing:3.432000pt;}
.ls1d_c00473{letter-spacing:3.440800pt;}
.ls22_c00473{letter-spacing:3.449609pt;}
.lsa_c00473{letter-spacing:3.452680pt;}
.ls17_c00473{letter-spacing:3.520000pt;}
.ls6_c00473{letter-spacing:3.590400pt;}
.ls3_c00473{letter-spacing:3.634400pt;}
.ls8_c00473{letter-spacing:3.660800pt;}
.ls2_c00473{letter-spacing:3.784000pt;}
.ls4_c00473{letter-spacing:46.886576pt;}
.ls1b_c00473{letter-spacing:50.688176pt;}
.ws0_c00473{word-spacing:0.000000pt;}
._1_c00473{width:10.408552pt;}
._0_c00473{width:21.595200pt;}
._2_c00473{width:252.538176pt;}
.fsd_c00473{font-size:19.712000pt;}
.fs0_c00473{font-size:20.064000pt;}
.fs3_c00473{font-size:46.886576pt;}
.fs11_c00473{font-size:50.688176pt;}
.fs10_c00473{font-size:60.896000pt;}
.fs14_c00473{font-size:61.424176pt;}
.fsb_c00473{font-size:61.952176pt;}
.fs5_c00473{font-size:62.656000pt;}
.fs15_c00473{font-size:63.360000pt;}
.fs7_c00473{font-size:64.768000pt;}
.fs12_c00473{font-size:66.176000pt;}
.fs9_c00473{font-size:66.528000pt;}
.fsa_c00473{font-size:67.584176pt;}
.fse_c00473{font-size:67.936000pt;}
.fs8_c00473{font-size:68.640000pt;}
.fs13_c00473{font-size:68.816000pt;}
.fs16_c00473{font-size:68.992176pt;}
.fsc_c00473{font-size:70.400000pt;}
.fs4_c00473{font-size:71.808000pt;}
.fs2_c00473{font-size:72.688000pt;}
.fs6_c00473{font-size:73.216000pt;}
.fs1_c00473{font-size:75.680000pt;}
.fs17_c00473{font-size:80.608000pt;}
.fsf_c00473{font-size:126.016176pt;}
.y0_c00473{bottom:0.000000pt;}
.y1_c00473{bottom:68.000000pt;}
.y19_c00473{bottom:143.432120pt;}
.y18_c00473{bottom:171.306120pt;}
.y17_c00473{bottom:256.846520pt;}
.y16_c00473{bottom:285.037320pt;}
.y15_c00473{bottom:313.866120pt;}
.y14_c00473{bottom:342.378120pt;}
.y13_c00473{bottom:370.577720pt;}
.y2_c00473{bottom:381.665720pt;}
.y12_c00473{bottom:398.772920pt;}
.y11_c00473{bottom:426.646920pt;}
.y10_c00473{bottom:482.086920pt;}
.yf_c00473{bottom:510.920120pt;}
.ye_c00473{bottom:539.110920pt;}
.yd_c00473{bottom:559.069320pt;}
.yc_c00473{bottom:567.627320pt;}
.yb_c00473{bottom:596.134920pt;}
.ya_c00473{bottom:624.646920pt;}
.y9_c00473{bottom:653.163320pt;}
.y8_c00473{bottom:709.549320pt;}
.y7_c00473{bottom:737.110920pt;}
.y6_c00473{bottom:765.310520pt;}
.y5_c00473{bottom:793.505720pt;}
.y4_c00473{bottom:821.067320pt;}
.y3_c00473{bottom:940.184120pt;}
.hf_c00473{height:20.559000pt;}
.h2_c00473{height:20.926125pt;}
.h5_c00473{height:31.226460pt;}
.h13_c00473{height:33.758325pt;}
.hd_c00473{height:60.802673pt;}
.h7_c00473{height:61.493438pt;}
.h12_c00473{height:63.512625pt;}
.h9_c00473{height:63.566250pt;}
.h16_c00473{height:64.063496pt;}
.h14_c00473{height:64.948125pt;}
.h17_c00473{height:66.082500pt;}
.hc_c00473{height:66.330173pt;}
.h10_c00473{height:66.675469pt;}
.ha_c00473{height:67.366406pt;}
.h15_c00473{height:67.539141pt;}
.h18_c00473{height:67.712048pt;}
.he_c00473{height:69.093750pt;}
.hb_c00473{height:69.386625pt;}
.h6_c00473{height:70.475625pt;}
.h4_c00473{height:71.339297pt;}
.h8_c00473{height:71.857500pt;}
.h3_c00473{height:74.275781pt;}
.h19_c00473{height:84.071625pt;}
.h11_c00473{height:131.430934pt;}
.h1_c00473{height:986.666667pt;}
.h0_c00473{height:1122.666667pt;}
.w1_c00473{width:676.000000pt;}
.w0_c00473{width:793.333333pt;}
.x0_c00473{left:0.000000pt;}
.x2_c00473{left:28.838387pt;}
.x1_c00473{left:58.666667pt;}
.x37_c00473{left:83.090387pt;}
.x29_c00473{left:84.190387pt;}
.x13_c00473{left:85.149587pt;}
.xd_c00473{left:86.082387pt;}
.x43_c00473{left:113.965187pt;}
.x2a_c00473{left:122.373587pt;}
.x14_c00473{left:123.455987pt;}
.x4_c00473{left:132.964387pt;}
.x38_c00473{left:142.015187pt;}
.x56_c00473{left:143.449587pt;}
.x3b_c00473{left:153.565187pt;}
.x60_c00473{left:155.144787pt;}
.x23_c00473{left:163.016387pt;}
.xe_c00473{left:164.516787pt;}
.x4a_c00473{left:172.234387pt;}
.x50_c00473{left:173.237587pt;}
.x5a_c00473{left:181.443587pt;}
.x30_c00473{left:182.631587pt;}
.x15_c00473{left:192.205987pt;}
.x44_c00473{left:193.512787pt;}
.x5_c00473{left:202.875987pt;}
.x45_c00473{left:211.385587pt;}
.x31_c00473{left:222.337187pt;}
.x1e_c00473{left:228.162787pt;}
.x1f_c00473{left:231.766387pt;}
.x6_c00473{left:241.613587pt;}
.x32_c00473{left:246.066387pt;}
.x33_c00473{left:251.597187pt;}
.x20_c00473{left:261.615987pt;}
.x5b_c00473{left:263.103187pt;}
.x61_c00473{left:264.656387pt;}
.xf_c00473{left:270.631587pt;}
.x24_c00473{left:271.766787pt;}
.x16_c00473{left:281.266387pt;}
.x46_c00473{left:291.967187pt;}
.x4b_c00473{left:300.423987pt;}
.x25_c00473{left:301.845187pt;}
.x10_c00473{left:310.689187pt;}
.x7_c00473{left:311.859587pt;}
.x34_c00473{left:320.052387pt;}
.x51_c00473{left:321.147987pt;}
.x4e_c00473{left:331.285587pt;}
.x57_c00473{left:341.788387pt;}
.x8_c00473{left:350.275987pt;}
.x47_c00473{left:359.656787pt;}
.x54_c00473{left:360.585187pt;}
.x17_c00473{left:370.898787pt;}
.x3c_c00473{left:379.619587pt;}
.x2b_c00473{left:389.757187pt;}
.x40_c00473{left:391.121187pt;}
.x18_c00473{left:399.379987pt;}
.x48_c00473{left:400.981587pt;}
.x11_c00473{left:409.895987pt;}
.x26_c00473{left:419.694787pt;}
.x5c_c00473{left:421.032387pt;}
.x9_c00473{left:429.977587pt;}
.x3a_c00473{left:438.192387pt;}
.x2c_c00473{left:439.622387pt;}
.x49_c00473{left:448.800787pt;}
.xa_c00473{left:458.225587pt;}
.x52_c00473{left:461.235187pt;}
.x27_c00473{left:469.634787pt;}
.x41_c00473{left:478.931987pt;}
.x3d_c00473{left:480.498387pt;}
.x4c_c00473{left:488.739587pt;}
.xb_c00473{left:496.831187pt;}
.x2d_c00473{left:498.797987pt;}
.x39_c00473{left:507.791587pt;}
.x3e_c00473{left:508.816787pt;}
.x19_c00473{left:517.920387pt;}
.x58_c00473{left:518.835587pt;}
.x4f_c00473{left:526.927187pt;}
.x5e_c00473{left:529.263587pt;}
.x5d_c00473{left:536.461987pt;}
.x28_c00473{left:545.974787pt;}
.x1a_c00473{left:547.347587pt;}
.x55_c00473{left:556.072787pt;}
.x12_c00473{left:557.775587pt;}
.x2e_c00473{left:567.305987pt;}
.x21_c00473{left:576.497587pt;}
.x1b_c00473{left:577.395187pt;}
.xc_c00473{left:586.221587pt;}
.x35_c00473{left:587.246787pt;}
.x1c_c00473{left:595.980787pt;}
.x53_c00473{left:597.432787pt;}
.x4d_c00473{left:606.641987pt;}
.x22_c00473{left:616.409987pt;}
.x59_c00473{left:625.918387pt;}
.x3_c00473{left:628.747587pt;}
.x1d_c00473{left:636.385987pt;}
.x2f_c00473{left:637.767587pt;}
.x36_c00473{left:645.133187pt;}
.x3f_c00473{left:646.844787pt;}
.x5f_c00473{left:655.829587pt;}
.x42_c00473{left:656.881187pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a8473465517ec481ab75dbcd.woff2')format("woff");}.ff1_c00474{font-family:ff1_c00474;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00474;src:url('chunks/assets/font_ad930a0042d8e4959f056a9e.woff2')format("woff");}.ff2_c00474{font-family:ff2_c00474;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00474;src:url('chunks/assets/font_b21d1f14d0e6cde72877766f.woff2')format("woff");}.ff3_c00474{font-family:ff3_c00474;line-height:0.666000;font-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_c00474{transform:matrix(0.017858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017858,0.000000,0.000000,0.250000,0,0);}
.m1_c00474{transform:matrix(0.059524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.059524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.059524,0.000000,0.000000,0.250000,0,0);}
.m5d_c00474{transform:matrix(0.087302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087302,0.000000,0.000000,0.250000,0,0);}
.m5c_c00474{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);}
.m5e_c00474{transform:matrix(0.109127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109127,0.000000,0.000000,0.250000,0,0);}
.m60_c00474{transform:matrix(0.111608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111608,0.000000,0.000000,0.250000,0,0);}
.m6d_c00474{transform:matrix(0.160039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160039,0.000000,0.000000,0.250000,0,0);}
.m3_c00474{transform:matrix(0.172619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172619,0.000000,0.000000,0.250000,0,0);}
.ma4_c00474{transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);}
.m2a_c00474{transform:matrix(0.189749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189749,0.000000,0.000000,0.250000,0,0);}
.mad_c00474{transform:matrix(0.204704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204704,0.000000,0.000000,0.250000,0,0);}
.m1e_c00474{transform:matrix(0.225242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225242,0.000000,0.000000,0.250000,0,0);}
.m37_c00474{transform:matrix(0.228409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228409,0.000000,0.000000,0.250000,0,0);}
.m80_c00474{transform:matrix(0.234145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234145,0.000000,0.000000,0.250000,0,0);}
.m6b_c00474{transform:matrix(0.235533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235533,0.000000,0.000000,0.250000,0,0);}
.m5f_c00474{transform:matrix(0.238215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238215,0.000000,0.000000,0.250000,0,0);}
.m22_c00474{transform:matrix(0.239967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239967,0.000000,0.000000,0.250000,0,0);}
.ma_c00474{transform:matrix(0.245489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245489,0.000000,0.000000,0.250000,0,0);}
.m21_c00474{transform:matrix(0.246587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246587,0.000000,0.000000,0.250000,0,0);}
.m9e_c00474{transform:matrix(0.249650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249650,0.000000,0.000000,0.250000,0,0);}
.m0_c00474{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m44_c00474{transform:matrix(0.250219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250219,0.000000,0.000000,0.250000,0,0);}
.m40_c00474{transform:matrix(0.252466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252466,0.000000,0.000000,0.250000,0,0);}
.m4c_c00474{transform:matrix(0.252872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252872,0.000000,0.000000,0.250000,0,0);}
.m77_c00474{transform:matrix(0.253062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253062,0.000000,0.000000,0.250000,0,0);}
.m4a_c00474{transform:matrix(0.253485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253485,0.000000,0.000000,0.250000,0,0);}
.m76_c00474{transform:matrix(0.254700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254700,0.000000,0.000000,0.250000,0,0);}
.m7_c00474{transform:matrix(0.255255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255255,0.000000,0.000000,0.250000,0,0);}
.m19_c00474{transform:matrix(0.255387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255387,0.000000,0.000000,0.250000,0,0);}
.m14_c00474{transform:matrix(0.255906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255906,0.000000,0.000000,0.250000,0,0);}
.m30_c00474{transform:matrix(0.256895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256895,0.000000,0.000000,0.250000,0,0);}
.m2b_c00474{transform:matrix(0.258845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258845,0.000000,0.000000,0.250000,0,0);}
.m8e_c00474{transform:matrix(0.259058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259058,0.000000,0.000000,0.250000,0,0);}
.m13_c00474{transform:matrix(0.259307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259307,0.000000,0.000000,0.250000,0,0);}
.m55_c00474{transform:matrix(0.259723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259723,0.000000,0.000000,0.250000,0,0);}
.m24_c00474{transform:matrix(0.259733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259733,0.000000,0.000000,0.250000,0,0);}
.m4e_c00474{transform:matrix(0.260793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260793,0.000000,0.000000,0.250000,0,0);}
.m9c_c00474{transform:matrix(0.260979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260979,0.000000,0.000000,0.250000,0,0);}
.m16_c00474{transform:matrix(0.261324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261324,0.000000,0.000000,0.250000,0,0);}
.m7e_c00474{transform:matrix(0.261699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261699,0.000000,0.000000,0.250000,0,0);}
.m3c_c00474{transform:matrix(0.262872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262872,0.000000,0.000000,0.250000,0,0);}
.m39_c00474{transform:matrix(0.263214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263214,0.000000,0.000000,0.250000,0,0);}
.m92_c00474{transform:matrix(0.264003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264003,0.000000,0.000000,0.250000,0,0);}
.m61_c00474{transform:matrix(0.264482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264482,0.000000,0.000000,0.250000,0,0);}
.m26_c00474{transform:matrix(0.264674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264674,0.000000,0.000000,0.250000,0,0);}
.m8c_c00474{transform:matrix(0.264963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264963,0.000000,0.000000,0.250000,0,0);}
.m90_c00474{transform:matrix(0.265081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265081,0.000000,0.000000,0.250000,0,0);}
.m32_c00474{transform:matrix(0.265446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265446,0.000000,0.000000,0.250000,0,0);}
.m65_c00474{transform:matrix(0.265759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265759,0.000000,0.000000,0.250000,0,0);}
.m9f_c00474{transform:matrix(0.265804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265804,0.000000,0.000000,0.250000,0,0);}
.ma8_c00474{transform:matrix(0.266577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266577,0.000000,0.000000,0.250000,0,0);}
.mb_c00474{transform:matrix(0.266972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266972,0.000000,0.000000,0.250000,0,0);}
.m81_c00474{transform:matrix(0.267002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267002,0.000000,0.000000,0.250000,0,0);}
.maf_c00474{transform:matrix(0.267065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267065,0.000000,0.000000,0.250000,0,0);}
.mae_c00474{transform:matrix(0.267093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267093,0.000000,0.000000,0.250000,0,0);}
.ma0_c00474{transform:matrix(0.267139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267139,0.000000,0.000000,0.250000,0,0);}
.mb9_c00474{transform:matrix(0.267892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267892,0.000000,0.000000,0.250000,0,0);}
.ma6_c00474{transform:matrix(0.269226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269226,0.000000,0.000000,0.250000,0,0);}
.m4f_c00474{transform:matrix(0.269453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269453,0.000000,0.000000,0.250000,0,0);}
.m94_c00474{transform:matrix(0.269886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269886,0.000000,0.000000,0.250000,0,0);}
.m63_c00474{transform:matrix(0.270349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270349,0.000000,0.000000,0.250000,0,0);}
.m82_c00474{transform:matrix(0.270998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270998,0.000000,0.000000,0.250000,0,0);}
.m9_c00474{transform:matrix(0.271090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271090,0.000000,0.000000,0.250000,0,0);}
.m7f_c00474{transform:matrix(0.271854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271854,0.000000,0.000000,0.250000,0,0);}
.m71_c00474{transform:matrix(0.271876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271876,0.000000,0.000000,0.250000,0,0);}
.m35_c00474{transform:matrix(0.272173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272173,0.000000,0.000000,0.250000,0,0);}
.mb3_c00474{transform:matrix(0.272306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272306,0.000000,0.000000,0.250000,0,0);}
.m1d_c00474{transform:matrix(0.272460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272460,0.000000,0.000000,0.250000,0,0);}
.m79_c00474{transform:matrix(0.273639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273639,0.000000,0.000000,0.250000,0,0);}
.m96_c00474{transform:matrix(0.273728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273728,0.000000,0.000000,0.250000,0,0);}
.m70_c00474{transform:matrix(0.274597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274597,0.000000,0.000000,0.250000,0,0);}
.ma5_c00474{transform:matrix(0.274703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274703,0.000000,0.000000,0.250000,0,0);}
.m1a_c00474{transform:matrix(0.275068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275068,0.000000,0.000000,0.250000,0,0);}
.m87_c00474{transform:matrix(0.275098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275098,0.000000,0.000000,0.250000,0,0);}
.m27_c00474{transform:matrix(0.275305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275305,0.000000,0.000000,0.250000,0,0);}
.m9d_c00474{transform:matrix(0.275585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275585,0.000000,0.000000,0.250000,0,0);}
.m62_c00474{transform:matrix(0.276918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276918,0.000000,0.000000,0.250000,0,0);}
.m67_c00474{transform:matrix(0.277242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277242,0.000000,0.000000,0.250000,0,0);}
.m15_c00474{transform:matrix(0.277847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277847,0.000000,0.000000,0.250000,0,0);}
.m23_c00474{transform:matrix(0.278226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278226,0.000000,0.000000,0.250000,0,0);}
.m2f_c00474{transform:matrix(0.278248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278248,0.000000,0.000000,0.250000,0,0);}
.m9b_c00474{transform:matrix(0.279021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279021,0.000000,0.000000,0.250000,0,0);}
.m41_c00474{transform:matrix(0.279744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279744,0.000000,0.000000,0.250000,0,0);}
.m46_c00474{transform:matrix(0.279785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279785,0.000000,0.000000,0.250000,0,0);}
.m3b_c00474{transform:matrix(0.280567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280567,0.000000,0.000000,0.250000,0,0);}
.m86_c00474{transform:matrix(0.280632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280632,0.000000,0.000000,0.250000,0,0);}
.m2e_c00474{transform:matrix(0.280978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280978,0.000000,0.000000,0.250000,0,0);}
.mab_c00474{transform:matrix(0.281059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281059,0.000000,0.000000,0.250000,0,0);}
.m1b_c00474{transform:matrix(0.281266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281266,0.000000,0.000000,0.250000,0,0);}
.m59_c00474{transform:matrix(0.283001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283001,0.000000,0.000000,0.250000,0,0);}
.m48_c00474{transform:matrix(0.283067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283067,0.000000,0.000000,0.250000,0,0);}
.m28_c00474{transform:matrix(0.283553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283553,0.000000,0.000000,0.250000,0,0);}
.m47_c00474{transform:matrix(0.284572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284572,0.000000,0.000000,0.250000,0,0);}
.maa_c00474{transform:matrix(0.284878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284878,0.000000,0.000000,0.250000,0,0);}
.ma7_c00474{transform:matrix(0.285185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285185,0.000000,0.000000,0.250000,0,0);}
.mb2_c00474{transform:matrix(0.285854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285854,0.000000,0.000000,0.250000,0,0);}
.m56_c00474{transform:matrix(0.285883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285883,0.000000,0.000000,0.250000,0,0);}
.m75_c00474{transform:matrix(0.285981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285981,0.000000,0.000000,0.250000,0,0);}
.m6_c00474{transform:matrix(0.286029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286029,0.000000,0.000000,0.250000,0,0);}
.m4b_c00474{transform:matrix(0.286316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286316,0.000000,0.000000,0.250000,0,0);}
.m64_c00474{transform:matrix(0.286389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286389,0.000000,0.000000,0.250000,0,0);}
.m10_c00474{transform:matrix(0.286396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286396,0.000000,0.000000,0.250000,0,0);}
.m83_c00474{transform:matrix(0.286634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286634,0.000000,0.000000,0.250000,0,0);}
.m43_c00474{transform:matrix(0.286680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286680,0.000000,0.000000,0.250000,0,0);}
.mb0_c00474{transform:matrix(0.286880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286880,0.000000,0.000000,0.250000,0,0);}
.mac_c00474{transform:matrix(0.287104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287104,0.000000,0.000000,0.250000,0,0);}
.m11_c00474{transform:matrix(0.287593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287593,0.000000,0.000000,0.250000,0,0);}
.m3e_c00474{transform:matrix(0.287670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287670,0.000000,0.000000,0.250000,0,0);}
.m9a_c00474{transform:matrix(0.288115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288115,0.000000,0.000000,0.250000,0,0);}
.mc_c00474{transform:matrix(0.288512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288512,0.000000,0.000000,0.250000,0,0);}
.m33_c00474{transform:matrix(0.289219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289219,0.000000,0.000000,0.250000,0,0);}
.m38_c00474{transform:matrix(0.289221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289221,0.000000,0.000000,0.250000,0,0);}
.m5b_c00474{transform:matrix(0.289277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289277,0.000000,0.000000,0.250000,0,0);}
.m68_c00474{transform:matrix(0.289295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289295,0.000000,0.000000,0.250000,0,0);}
.m29_c00474{transform:matrix(0.289384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289384,0.000000,0.000000,0.250000,0,0);}
.m2d_c00474{transform:matrix(0.290338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290338,0.000000,0.000000,0.250000,0,0);}
.m6a_c00474{transform:matrix(0.290381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290381,0.000000,0.000000,0.250000,0,0);}
.ma2_c00474{transform:matrix(0.290558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290558,0.000000,0.000000,0.250000,0,0);}
.m72_c00474{transform:matrix(0.290992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290992,0.000000,0.000000,0.250000,0,0);}
.m54_c00474{transform:matrix(0.291032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291032,0.000000,0.000000,0.250000,0,0);}
.m4_c00474{transform:matrix(0.291553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291553,0.000000,0.000000,0.250000,0,0);}
.m57_c00474{transform:matrix(0.292552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292552,0.000000,0.000000,0.250000,0,0);}
.mb8_c00474{transform:matrix(0.292951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292951,0.000000,0.000000,0.250000,0,0);}
.ma1_c00474{transform:matrix(0.293050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293050,0.000000,0.000000,0.250000,0,0);}
.mb5_c00474{transform:matrix(0.293775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293775,0.000000,0.000000,0.250000,0,0);}
.m25_c00474{transform:matrix(0.293785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293785,0.000000,0.000000,0.250000,0,0);}
.m99_c00474{transform:matrix(0.294831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294831,0.000000,0.000000,0.250000,0,0);}
.m7c_c00474{transform:matrix(0.295678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295678,0.000000,0.000000,0.250000,0,0);}
.mb6_c00474{transform:matrix(0.295877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295877,0.000000,0.000000,0.250000,0,0);}
.m8d_c00474{transform:matrix(0.296464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296464,0.000000,0.000000,0.250000,0,0);}
.m66_c00474{transform:matrix(0.296964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296964,0.000000,0.000000,0.250000,0,0);}
.me_c00474{transform:matrix(0.297450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297450,0.000000,0.000000,0.250000,0,0);}
.m6c_c00474{transform:matrix(0.297537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297537,0.000000,0.000000,0.250000,0,0);}
.mb7_c00474{transform:matrix(0.298443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298443,0.000000,0.000000,0.250000,0,0);}
.m18_c00474{transform:matrix(0.299551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299551,0.000000,0.000000,0.250000,0,0);}
.md_c00474{transform:matrix(0.299675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299675,0.000000,0.000000,0.250000,0,0);}
.m51_c00474{transform:matrix(0.300582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300582,0.000000,0.000000,0.250000,0,0);}
.m84_c00474{transform:matrix(0.301278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301278,0.000000,0.000000,0.250000,0,0);}
.m53_c00474{transform:matrix(0.303131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303131,0.000000,0.000000,0.250000,0,0);}
.ma3_c00474{transform:matrix(0.303680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303680,0.000000,0.000000,0.250000,0,0);}
.m1f_c00474{transform:matrix(0.303841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303841,0.000000,0.000000,0.250000,0,0);}
.m34_c00474{transform:matrix(0.304683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304683,0.000000,0.000000,0.250000,0,0);}
.mb4_c00474{transform:matrix(0.304971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304971,0.000000,0.000000,0.250000,0,0);}
.m49_c00474{transform:matrix(0.305137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305137,0.000000,0.000000,0.250000,0,0);}
.m8b_c00474{transform:matrix(0.305261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305261,0.000000,0.000000,0.250000,0,0);}
.m97_c00474{transform:matrix(0.306305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306305,0.000000,0.000000,0.250000,0,0);}
.m45_c00474{transform:matrix(0.307362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307362,0.000000,0.000000,0.250000,0,0);}
.ma9_c00474{transform:matrix(0.307719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307719,0.000000,0.000000,0.250000,0,0);}
.m88_c00474{transform:matrix(0.309116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309116,0.000000,0.000000,0.250000,0,0);}
.m36_c00474{transform:matrix(0.309721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309721,0.000000,0.000000,0.250000,0,0);}
.mba_c00474{transform:matrix(0.310028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310028,0.000000,0.000000,0.250000,0,0);}
.m95_c00474{transform:matrix(0.310128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310128,0.000000,0.000000,0.250000,0,0);}
.m58_c00474{transform:matrix(0.310745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310745,0.000000,0.000000,0.250000,0,0);}
.mf_c00474{transform:matrix(0.311151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311151,0.000000,0.000000,0.250000,0,0);}
.m1c_c00474{transform:matrix(0.312212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312212,0.000000,0.000000,0.250000,0,0);}
.m3a_c00474{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m50_c00474{transform:matrix(0.312628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312628,0.000000,0.000000,0.250000,0,0);}
.m74_c00474{transform:matrix(0.313542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313542,0.000000,0.000000,0.250000,0,0);}
.m5_c00474{transform:matrix(0.313570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313570,0.000000,0.000000,0.250000,0,0);}
.m91_c00474{transform:matrix(0.313613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313613,0.000000,0.000000,0.250000,0,0);}
.m89_c00474{transform:matrix(0.314269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314269,0.000000,0.000000,0.250000,0,0);}
.m6e_c00474{transform:matrix(0.316189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316189,0.000000,0.000000,0.250000,0,0);}
.m20_c00474{transform:matrix(0.316775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316775,0.000000,0.000000,0.250000,0,0);}
.m73_c00474{transform:matrix(0.317886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317886,0.000000,0.000000,0.250000,0,0);}
.m98_c00474{transform:matrix(0.318157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318157,0.000000,0.000000,0.250000,0,0);}
.m8f_c00474{transform:matrix(0.319507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319507,0.000000,0.000000,0.250000,0,0);}
.m17_c00474{transform:matrix(0.320869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320869,0.000000,0.000000,0.250000,0,0);}
.m31_c00474{transform:matrix(0.324067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324067,0.000000,0.000000,0.250000,0,0);}
.m8a_c00474{transform:matrix(0.325317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325317,0.000000,0.000000,0.250000,0,0);}
.m42_c00474{transform:matrix(0.327323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327323,0.000000,0.000000,0.250000,0,0);}
.m4d_c00474{transform:matrix(0.329150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329150,0.000000,0.000000,0.250000,0,0);}
.m5a_c00474{transform:matrix(0.329499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329499,0.000000,0.000000,0.250000,0,0);}
.m78_c00474{transform:matrix(0.331126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331126,0.000000,0.000000,0.250000,0,0);}
.m8_c00474{transform:matrix(0.332238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332238,0.000000,0.000000,0.250000,0,0);}
.m7d_c00474{transform:matrix(0.334409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334409,0.000000,0.000000,0.250000,0,0);}
.m93_c00474{transform:matrix(0.334580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334580,0.000000,0.000000,0.250000,0,0);}
.m7b_c00474{transform:matrix(0.347028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347028,0.000000,0.000000,0.250000,0,0);}
.m3f_c00474{transform:matrix(0.347226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347226,0.000000,0.000000,0.250000,0,0);}
.m69_c00474{transform:matrix(0.348512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348512,0.000000,0.000000,0.250000,0,0);}
.mb1_c00474{transform:matrix(0.356405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356405,0.000000,0.000000,0.250000,0,0);}
.m85_c00474{transform:matrix(0.359647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359647,0.000000,0.000000,0.250000,0,0);}
.m6f_c00474{transform:matrix(0.363797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363797,0.000000,0.000000,0.250000,0,0);}
.m3d_c00474{transform:matrix(0.369571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369571,0.000000,0.000000,0.250000,0,0);}
.m2c_c00474{transform:matrix(0.374985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374985,0.000000,0.000000,0.250000,0,0);}
.m7a_c00474{transform:matrix(0.375346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375346,0.000000,0.000000,0.250000,0,0);}
.m52_c00474{transform:matrix(0.381120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381120,0.000000,0.000000,0.250000,0,0);}
.m12_c00474{transform:matrix(0.419320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419320,0.000000,0.000000,0.250000,0,0);}
.v0_c00474{vertical-align:0.000000px;}
.ls14_c00474{letter-spacing:-3.347190px;}
.lsa_c00474{letter-spacing:-3.284827px;}
.ls5_c00474{letter-spacing:-2.862090px;}
.ls18_c00474{letter-spacing:-2.469575px;}
.ls16_c00474{letter-spacing:-2.411640px;}
.lse_c00474{letter-spacing:-1.880802px;}
.ls1d_c00474{letter-spacing:-1.799028px;}
.lsb_c00474{letter-spacing:-1.496880px;}
.ls6_c00474{letter-spacing:-0.948578px;}
.ls11_c00474{letter-spacing:-0.842272px;}
.ls1_c00474{letter-spacing:0.000000px;}
.ls12_c00474{letter-spacing:0.220790px;}
.ls13_c00474{letter-spacing:2.269912px;}
.ls3_c00474{letter-spacing:2.347488px;}
.ls17_c00474{letter-spacing:2.592236px;}
.ls10_c00474{letter-spacing:2.992928px;}
.ls0_c00474{letter-spacing:3.058348px;}
.ls19_c00474{letter-spacing:3.316500px;}
.lsf_c00474{letter-spacing:3.385810px;}
.lsc_c00474{letter-spacing:3.425400px;}
.ls15_c00474{letter-spacing:3.442824px;}
.ls1a_c00474{letter-spacing:3.459040px;}
.ls1c_c00474{letter-spacing:3.565346px;}
.ls8_c00474{letter-spacing:3.603610px;}
.ls21_c00474{letter-spacing:3.623400px;}
.lsd_c00474{letter-spacing:3.801610px;}
.ls9_c00474{letter-spacing:3.821400px;}
.ls20_c00474{letter-spacing:3.900620px;}
.ls1e_c00474{letter-spacing:3.940200px;}
.ls1b_c00474{letter-spacing:4.059000px;}
.ls4_c00474{letter-spacing:4.088700px;}
.ls7_c00474{letter-spacing:4.118400px;}
.ls1f_c00474{letter-spacing:58.449798px;}
.ls2_c00474{letter-spacing:59.875398px;}
.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;}
}
.ws1_c00474{word-spacing:0.000000px;}
.ws0_c00474{word-spacing:0.994356px;}
._2_c00474{margin-left:-15.818616px;}
._1_c00474{width:4.333824px;}
._3_c00474{width:24.205104px;}
._0_c00474{width:86.665709px;}
.fc0_c00474{color:transparent;}
.fs2_c00474{font-size:22.176000px;}
.fs4_c00474{font-size:23.364000px;}
.fs0_c00474{font-size:33.264000px;}
.fs1_c00474{font-size:33.660000px;}
.fsc_c00474{font-size:42.768000px;}
.fs18_c00474{font-size:58.449798px;}
.fs5_c00474{font-size:59.875398px;}
.fs14_c00474{font-size:66.330000px;}
.fs3_c00474{font-size:66.528000px;}
.fs10_c00474{font-size:67.716198px;}
.fsd_c00474{font-size:68.508000px;}
.fs13_c00474{font-size:68.904000px;}
.fs12_c00474{font-size:71.280000px;}
.fs8_c00474{font-size:72.072198px;}
.fs19_c00474{font-size:72.468000px;}
.fse_c00474{font-size:72.864000px;}
.fs16_c00474{font-size:74.844000px;}
.fsf_c00474{font-size:76.032198px;}
.fsa_c00474{font-size:76.428000px;}
.fs17_c00474{font-size:78.804000px;}
.fs15_c00474{font-size:81.180000px;}
.fs7_c00474{font-size:81.774000px;}
.fs6_c00474{font-size:82.368000px;}
.fs9_c00474{font-size:83.556198px;}
.fsb_c00474{font-size:93.852198px;}
.fs11_c00474{font-size:95.634000px;}
.y0_c00474{bottom:0.000000px;}
.y4_c00474{bottom:31.626585px;}
.y1_c00474{bottom:76.500000px;}
.y23_c00474{bottom:172.048185px;}
.y22_c00474{bottom:204.485535px;}
.y21_c00474{bottom:236.200185px;}
.y20_c00474{bottom:267.924735px;}
.y1f_c00474{bottom:299.287935px;}
.y1e_c00474{bottom:331.007535px;}
.y1d_c00474{bottom:361.657935px;}
.y1c_c00474{bottom:426.166335px;}
.y1b_c00474{bottom:457.173135px;}
.y1a_c00474{bottom:489.249135px;}
.y19_c00474{bottom:520.250985px;}
.y18_c00474{bottom:551.975535px;}
.y16_c00474{bottom:582.618510px;}
.y17_c00474{bottom:582.620985px;}
.y3_c00474{bottom:608.999535px;}
.y15_c00474{bottom:615.409785px;}
.y14_c00474{bottom:647.134335px;}
.y13_c00474{bottom:678.497535px;}
.y12_c00474{bottom:710.568585px;}
.yd_c00474{bottom:742.293135px;}
.yf_c00474{bottom:770.448735px;}
.y11_c00474{bottom:773.299935px;}
.yc_c00474{bottom:773.656335px;}
.ye_c00474{bottom:774.007785px;}
.y10_c00474{bottom:787.912335px;}
.y2_c00474{bottom:810.004185px;}
.yb_c00474{bottom:836.734185px;}
.ya_c00474{bottom:868.458735px;}
.y9_c00474{bottom:900.529785px;}
.y8_c00474{bottom:932.254335px;}
.y7_c00474{bottom:1053.068985px;}
.y6_c00474{bottom:1071.245385px;}
.y5_c00474{bottom:1083.362985px;}
.h6_c00474{height:22.930488px;}
.h4_c00474{height:23.128875px;}
.h3_c00474{height:33.035449px;}
.h2_c00474{height:34.693313px;}
.h1a_c00474{height:38.927565px;}
.h7_c00474{height:39.877015px;}
.he_c00474{height:41.974453px;}
.h15_c00474{height:67.625508px;}
.h16_c00474{height:69.180117px;}
.h5_c00474{height:69.386625px;}
.h12_c00474{height:70.625878px;}
.ha_c00474{height:70.734921px;}
.h1b_c00474{height:71.123379px;}
.hf_c00474{height:71.451703px;}
.h18_c00474{height:73.455293px;}
.h14_c00474{height:74.342813px;}
.h11_c00474{height:74.621444px;}
.hc_c00474{height:75.009902px;}
.h10_c00474{height:75.994875px;}
.h19_c00474{height:77.341816px;}
.h17_c00474{height:79.673730px;}
.h9_c00474{height:80.256709px;}
.h8_c00474{height:80.839688px;}
.hb_c00474{height:82.005839px;}
.hd_c00474{height:92.110800px;}
.h13_c00474{height:93.859541px;}
.h1_c00474{height:1110.000000px;}
.h0_c00474{height:1263.000000px;}
.w1_c00474{width:760.500000px;}
.w0_c00474{width:892.500000px;}
.x0_c00474{left:0.000000px;}
.x3_c00474{left:13.202535px;}
.x4_c00474{left:19.310835px;}
.x2_c00474{left:48.847485px;}
.x1_c00474{left:66.000000px;}
.x28_c00474{left:87.779235px;}
.x12_c00474{left:89.744385px;}
.xa_c00474{left:91.397685px;}
.x54_c00474{left:120.558135px;}
.x29_c00474{left:122.419335px;}
.x13_c00474{left:131.557035px;}
.xb_c00474{left:133.150935px;}
.x24_c00474{left:143.293485px;}
.x5f_c00474{left:154.247835px;}
.x19_c00474{left:155.331885px;}
.x69_c00474{left:165.994185px;}
.x22_c00474{left:168.117735px;}
.x4d_c00474{left:175.849635px;}
.x25_c00474{left:177.720735px;}
.x5e_c00474{left:187.199985px;}
.x39_c00474{left:188.482035px;}
.x3e_c00474{left:199.500735px;}
.x1a_c00474{left:200.560035px;}
.x6a_c00474{left:209.672985px;}
.x23_c00474{left:211.895535px;}
.x3a_c00474{left:220.399635px;}
.x32_c00474{left:221.429235px;}
.x48_c00474{left:222.671685px;}
.x2a_c00474{left:232.126185px;}
.xc_c00474{left:233.333985px;}
.x55_c00474{left:254.351685px;}
.x14_c00474{left:255.717885px;}
.x26_c00474{left:266.152485px;}
.x33_c00474{left:267.266235px;}
.x1b_c00474{left:277.577085px;}
.x56_c00474{left:288.605685px;}
.x43_c00474{left:298.891785px;}
.x27_c00474{left:300.030285px;}
.x3f_c00474{left:309.108585px;}
.x1c_c00474{left:311.019285px;}
.x4e_c00474{left:321.770685px;}
.x44_c00474{left:332.626035px;}
.x59_c00474{left:334.056585px;}
.x40_c00474{left:343.025985px;}
.x2b_c00474{left:344.550585px;}
.x34_c00474{left:355.262385px;}
.x57_c00474{left:365.909835px;}
.x3b_c00474{left:367.612635px;}
.x1d_c00474{left:377.685885px;}
.x4f_c00474{left:388.650135px;}
.x5d_c00474{left:389.684685px;}
.x15_c00474{left:399.777735px;}
.x41_c00474{left:411.459735px;}
.x58_c00474{left:422.087385px;}
.x61_c00474{left:432.101235px;}
.xd_c00474{left:434.016885px;}
.x60_c00474{left:444.604935px;}
.xe_c00474{left:466.078035px;}
.x62_c00474{left:467.429385px;}
.x64_c00474{left:477.161085px;}
.x35_c00474{left:488.546085px;}
.x53_c00474{left:489.570735px;}
.x16_c00474{left:499.228185px;}
.x3c_c00474{left:500.307285px;}
.x65_c00474{left:508.727235px;}
.xf_c00474{left:510.296385px;}
.x49_c00474{left:522.745635px;}
.x1e_c00474{left:531.863535px;}
.x36_c00474{left:533.348535px;}
.x45_c00474{left:543.179235px;}
.x66_c00474{left:554.450385px;}
.x1f_c00474{left:555.475035px;}
.x10_c00474{left:566.266035px;}
.x6b_c00474{left:575.344335px;}
.x42_c00474{left:576.923385px;}
.x68_c00474{left:578.913285px;}
.x30_c00474{left:587.263935px;}
.x37_c00474{left:588.704385px;}
.x4a_c00474{left:596.362035px;}
.x50_c00474{left:598.139085px;}
.x5a_c00474{left:599.396385px;}
.x4b_c00474{left:608.880585px;}
.x20_c00474{left:610.078485px;}
.x2c_c00474{left:612.731685px;}
.x11_c00474{left:622.205985px;}
.x31_c00474{left:632.006985px;}
.x2d_c00474{left:633.308835px;}
.x63_c00474{left:641.619885px;}
.x38_c00474{left:643.248435px;}
.x17_c00474{left:655.316535px;}
.x2e_c00474{left:665.102685px;}
.x51_c00474{left:667.033185px;}
.x67_c00474{left:674.814585px;}
.x46_c00474{left:676.358985px;}
.x4c_c00474{left:686.526285px;}
.x6c_c00474{left:688.763685px;}
.x18_c00474{left:698.426085px;}
.x5_c00474{left:700.925835px;}
.x6_c00474{left:702.613785px;}
.x7_c00474{left:705.469935px;}
.x8_c00474{left:708.321135px;}
.x21_c00474{left:710.221935px;}
.x47_c00474{left:719.315085px;}
.x3d_c00474{left:721.527735px;}
.x9_c00474{left:730.541685px;}
.x5b_c00474{left:741.723735px;}
.x5c_c00474{left:744.139335px;}
.x52_c00474{left:751.811835px;}
.x2f_c00474{left:754.757085px;}
@media print{
.v0_c00474{vertical-align:0.000000pt;}
.ls14_c00474{letter-spacing:-2.975280pt;}
.lsa_c00474{letter-spacing:-2.919846pt;}
.ls5_c00474{letter-spacing:-2.544080pt;}
.ls18_c00474{letter-spacing:-2.195178pt;}
.ls16_c00474{letter-spacing:-2.143680pt;}
.lse_c00474{letter-spacing:-1.671824pt;}
.ls1d_c00474{letter-spacing:-1.599136pt;}
.lsb_c00474{letter-spacing:-1.330560pt;}
.ls6_c00474{letter-spacing:-0.843181pt;}
.ls11_c00474{letter-spacing:-0.748686pt;}
.ls1_c00474{letter-spacing:0.000000pt;}
.ls12_c00474{letter-spacing:0.196258pt;}
.ls13_c00474{letter-spacing:2.017699pt;}
.ls3_c00474{letter-spacing:2.086656pt;}
.ls17_c00474{letter-spacing:2.304210pt;}
.ls10_c00474{letter-spacing:2.660381pt;}
.ls0_c00474{letter-spacing:2.718531pt;}
.ls19_c00474{letter-spacing:2.948000pt;}
.lsf_c00474{letter-spacing:3.009609pt;}
.lsc_c00474{letter-spacing:3.044800pt;}
.ls15_c00474{letter-spacing:3.060288pt;}
.ls1a_c00474{letter-spacing:3.074702pt;}
.ls1c_c00474{letter-spacing:3.169197pt;}
.ls8_c00474{letter-spacing:3.203209pt;}
.ls21_c00474{letter-spacing:3.220800pt;}
.lsd_c00474{letter-spacing:3.379209pt;}
.ls9_c00474{letter-spacing:3.396800pt;}
.ls20_c00474{letter-spacing:3.467218pt;}
.ls1e_c00474{letter-spacing:3.502400pt;}
.ls1b_c00474{letter-spacing:3.608000pt;}
.ls4_c00474{letter-spacing:3.634400pt;}
.ls7_c00474{letter-spacing:3.660800pt;}
.ls1f_c00474{letter-spacing:51.955376pt;}
.ls2_c00474{letter-spacing:53.222576pt;}
.ws1_c00474{word-spacing:0.000000pt;}
.ws0_c00474{word-spacing:0.883872pt;}
._2_c00474{margin-left:-14.060992pt;}
._1_c00474{width:3.852288pt;}
._3_c00474{width:21.515648pt;}
._0_c00474{width:77.036186pt;}
.fs2_c00474{font-size:19.712000pt;}
.fs4_c00474{font-size:20.768000pt;}
.fs0_c00474{font-size:29.568000pt;}
.fs1_c00474{font-size:29.920000pt;}
.fsc_c00474{font-size:38.016000pt;}
.fs18_c00474{font-size:51.955376pt;}
.fs5_c00474{font-size:53.222576pt;}
.fs14_c00474{font-size:58.960000pt;}
.fs3_c00474{font-size:59.136000pt;}
.fs10_c00474{font-size:60.192176pt;}
.fsd_c00474{font-size:60.896000pt;}
.fs13_c00474{font-size:61.248000pt;}
.fs12_c00474{font-size:63.360000pt;}
.fs8_c00474{font-size:64.064176pt;}
.fs19_c00474{font-size:64.416000pt;}
.fse_c00474{font-size:64.768000pt;}
.fs16_c00474{font-size:66.528000pt;}
.fsf_c00474{font-size:67.584176pt;}
.fsa_c00474{font-size:67.936000pt;}
.fs17_c00474{font-size:70.048000pt;}
.fs15_c00474{font-size:72.160000pt;}
.fs7_c00474{font-size:72.688000pt;}
.fs6_c00474{font-size:73.216000pt;}
.fs9_c00474{font-size:74.272176pt;}
.fsb_c00474{font-size:83.424176pt;}
.fs11_c00474{font-size:85.008000pt;}
.y0_c00474{bottom:0.000000pt;}
.y4_c00474{bottom:28.112520pt;}
.y1_c00474{bottom:68.000000pt;}
.y23_c00474{bottom:152.931720pt;}
.y22_c00474{bottom:181.764920pt;}
.y21_c00474{bottom:209.955720pt;}
.y20_c00474{bottom:238.155320pt;}
.y1f_c00474{bottom:266.033720pt;}
.y1e_c00474{bottom:294.228920pt;}
.y1d_c00474{bottom:321.473720pt;}
.y1c_c00474{bottom:378.814520pt;}
.y1b_c00474{bottom:406.376120pt;}
.y1a_c00474{bottom:434.888120pt;}
.y19_c00474{bottom:462.445320pt;}
.y18_c00474{bottom:490.644920pt;}
.y16_c00474{bottom:517.883120pt;}
.y17_c00474{bottom:517.885320pt;}
.y3_c00474{bottom:541.332920pt;}
.y15_c00474{bottom:547.030920pt;}
.y14_c00474{bottom:575.230520pt;}
.y13_c00474{bottom:603.108920pt;}
.y12_c00474{bottom:631.616520pt;}
.yd_c00474{bottom:659.816120pt;}
.yf_c00474{bottom:684.843320pt;}
.y11_c00474{bottom:687.377720pt;}
.yc_c00474{bottom:687.694520pt;}
.ye_c00474{bottom:688.006920pt;}
.y10_c00474{bottom:700.366520pt;}
.y2_c00474{bottom:720.003720pt;}
.yb_c00474{bottom:743.763720pt;}
.ya_c00474{bottom:771.963320pt;}
.y9_c00474{bottom:800.470920pt;}
.y8_c00474{bottom:828.670520pt;}
.y7_c00474{bottom:936.061320pt;}
.y6_c00474{bottom:952.218120pt;}
.y5_c00474{bottom:962.989320pt;}
.h6_c00474{height:20.382656pt;}
.h4_c00474{height:20.559000pt;}
.h3_c00474{height:29.364844pt;}
.h2_c00474{height:30.838500pt;}
.h1a_c00474{height:34.602280pt;}
.h7_c00474{height:35.446236pt;}
.he_c00474{height:37.310625pt;}
.h15_c00474{height:60.111562pt;}
.h16_c00474{height:61.493438pt;}
.h5_c00474{height:61.677000pt;}
.h12_c00474{height:62.778559pt;}
.ha_c00474{height:62.875485pt;}
.h1b_c00474{height:63.220781pt;}
.hf_c00474{height:63.512625pt;}
.h18_c00474{height:65.293594pt;}
.h14_c00474{height:66.082500pt;}
.h11_c00474{height:66.330173pt;}
.hc_c00474{height:66.675469pt;}
.h10_c00474{height:67.551000pt;}
.h19_c00474{height:68.748281pt;}
.h17_c00474{height:70.821094pt;}
.h9_c00474{height:71.339297pt;}
.h8_c00474{height:71.857500pt;}
.hb_c00474{height:72.894079pt;}
.hd_c00474{height:81.876266pt;}
.h13_c00474{height:83.430703pt;}
.h1_c00474{height:986.666667pt;}
.h0_c00474{height:1122.666667pt;}
.w1_c00474{width:676.000000pt;}
.w0_c00474{width:793.333333pt;}
.x0_c00474{left:0.000000pt;}
.x3_c00474{left:11.735587pt;}
.x4_c00474{left:17.165187pt;}
.x2_c00474{left:43.419987pt;}
.x1_c00474{left:58.666667pt;}
.x28_c00474{left:78.025987pt;}
.x12_c00474{left:79.772787pt;}
.xa_c00474{left:81.242387pt;}
.x54_c00474{left:107.162787pt;}
.x29_c00474{left:108.817187pt;}
.x13_c00474{left:116.939587pt;}
.xb_c00474{left:118.356387pt;}
.x24_c00474{left:127.371987pt;}
.x5f_c00474{left:137.109187pt;}
.x19_c00474{left:138.072787pt;}
.x69_c00474{left:147.550387pt;}
.x22_c00474{left:149.437987pt;}
.x4d_c00474{left:156.310787pt;}
.x25_c00474{left:157.973987pt;}
.x5e_c00474{left:166.399987pt;}
.x39_c00474{left:167.539587pt;}
.x3e_c00474{left:177.333987pt;}
.x1a_c00474{left:178.275587pt;}
.x6a_c00474{left:186.375987pt;}
.x23_c00474{left:188.351587pt;}
.x3a_c00474{left:195.910787pt;}
.x32_c00474{left:196.825987pt;}
.x48_c00474{left:197.930387pt;}
.x2a_c00474{left:206.334387pt;}
.xc_c00474{left:207.407987pt;}
.x55_c00474{left:226.090387pt;}
.x14_c00474{left:227.304787pt;}
.x26_c00474{left:236.579987pt;}
.x33_c00474{left:237.569987pt;}
.x1b_c00474{left:246.735187pt;}
.x56_c00474{left:256.538387pt;}
.x43_c00474{left:265.681587pt;}
.x27_c00474{left:266.693587pt;}
.x3f_c00474{left:274.763187pt;}
.x1c_c00474{left:276.461587pt;}
.x4e_c00474{left:286.018387pt;}
.x44_c00474{left:295.667587pt;}
.x59_c00474{left:296.939187pt;}
.x40_c00474{left:304.911987pt;}
.x2b_c00474{left:306.267187pt;}
.x34_c00474{left:315.788787pt;}
.x57_c00474{left:325.253187pt;}
.x3b_c00474{left:326.766787pt;}
.x1d_c00474{left:335.720787pt;}
.x4f_c00474{left:345.466787pt;}
.x5d_c00474{left:346.386387pt;}
.x15_c00474{left:355.357987pt;}
.x41_c00474{left:365.741987pt;}
.x58_c00474{left:375.188787pt;}
.x61_c00474{left:384.089987pt;}
.xd_c00474{left:385.792787pt;}
.x60_c00474{left:395.204387pt;}
.xe_c00474{left:414.291587pt;}
.x62_c00474{left:415.492787pt;}
.x64_c00474{left:424.143187pt;}
.x35_c00474{left:434.263187pt;}
.x53_c00474{left:435.173987pt;}
.x16_c00474{left:443.758387pt;}
.x3c_c00474{left:444.717587pt;}
.x65_c00474{left:452.201987pt;}
.xf_c00474{left:453.596787pt;}
.x49_c00474{left:464.662787pt;}
.x1e_c00474{left:472.767587pt;}
.x36_c00474{left:474.087587pt;}
.x45_c00474{left:482.825987pt;}
.x66_c00474{left:492.844787pt;}
.x1f_c00474{left:493.755587pt;}
.x10_c00474{left:503.347587pt;}
.x6b_c00474{left:511.417187pt;}
.x42_c00474{left:512.820787pt;}
.x68_c00474{left:514.589587pt;}
.x30_c00474{left:522.012387pt;}
.x37_c00474{left:523.292787pt;}
.x4a_c00474{left:530.099587pt;}
.x50_c00474{left:531.679187pt;}
.x5a_c00474{left:532.796787pt;}
.x4b_c00474{left:541.227187pt;}
.x20_c00474{left:542.291987pt;}
.x2c_c00474{left:544.650387pt;}
.x11_c00474{left:553.071987pt;}
.x31_c00474{left:561.783987pt;}
.x2d_c00474{left:562.941187pt;}
.x63_c00474{left:570.328787pt;}
.x38_c00474{left:571.776387pt;}
.x17_c00474{left:582.503587pt;}
.x2e_c00474{left:591.202387pt;}
.x51_c00474{left:592.918387pt;}
.x67_c00474{left:599.835187pt;}
.x46_c00474{left:601.207987pt;}
.x4c_c00474{left:610.245587pt;}
.x6c_c00474{left:612.234387pt;}
.x18_c00474{left:620.823187pt;}
.x5_c00474{left:623.045187pt;}
.x6_c00474{left:624.545587pt;}
.x7_c00474{left:627.084387pt;}
.x8_c00474{left:629.618787pt;}
.x21_c00474{left:631.308387pt;}
.x47_c00474{left:639.391187pt;}
.x3d_c00474{left:641.357987pt;}
.x9_c00474{left:649.370387pt;}
.x5b_c00474{left:659.309987pt;}
.x5c_c00474{left:661.457187pt;}
.x52_c00474{left:668.277187pt;}
.x2f_c00474{left:670.895187pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_27c2c7b33ba912c539c8d670.woff2')format("woff");}.ff1_c00475{font-family:ff1_c00475;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00475;src:url('chunks/assets/font_95745963eef8017b54526538.woff2')format("woff");}.ff2_c00475{font-family:ff2_c00475;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00475;src:url('chunks/assets/font_94e60448a68045b1d8ea249a.woff2')format("woff");}.ff3_c00475{font-family:ff3_c00475;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00475;src:url('chunks/assets/font_2b4669e0122af6c52f2f2cca.woff2')format("woff");}.ff4_c00475{font-family:ff4_c00475;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00475;src:url('chunks/assets/font_d7e28213285a0722a50001e3.woff2')format("woff");}.ff5_c00475{font-family:ff5_c00475;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m71_c00475{transform:matrix(0.071428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071428,0.000000,0.000000,0.250000,0,0);}
.m9d_c00475{transform:matrix(0.084951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084951,0.000000,0.000000,0.250000,0,0);}
.maf_c00475{transform:matrix(0.091216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091216,0.000000,0.000000,0.250000,0,0);}
.m51_c00475{transform:matrix(0.114674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114674,0.000000,0.000000,0.250000,0,0);}
.m50_c00475{transform:matrix(0.117057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117057,0.000000,0.000000,0.250000,0,0);}
.m4e_c00475{transform:matrix(0.119565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119565,0.000000,0.000000,0.250000,0,0);}
.mb0_c00475{transform:matrix(0.121622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121622,0.000000,0.000000,0.250000,0,0);}
.m4b_c00475{transform:matrix(0.129695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129695,0.000000,0.000000,0.250000,0,0);}
.m4a_c00475{transform:matrix(0.144267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144267,0.000000,0.000000,0.250000,0,0);}
.m79_c00475{transform:matrix(0.152147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152147,0.000000,0.000000,0.250000,0,0);}
.m54_c00475{transform:matrix(0.155364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155364,0.000000,0.000000,0.250000,0,0);}
.m55_c00475{transform:matrix(0.159677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159677,0.000000,0.000000,0.250000,0,0);}
.m52_c00475{transform:matrix(0.160326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160326,0.000000,0.000000,0.250000,0,0);}
.m72_c00475{transform:matrix(0.161310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161310,0.000000,0.000000,0.250000,0,0);}
.m4f_c00475{transform:matrix(0.168478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168478,0.000000,0.000000,0.250000,0,0);}
.m74_c00475{transform:matrix(0.169643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169643,0.000000,0.000000,0.250000,0,0);}
.m4d_c00475{transform:matrix(0.172102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172102,0.000000,0.000000,0.250000,0,0);}
.m9e_c00475{transform:matrix(0.185925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185925,0.000000,0.000000,0.250000,0,0);}
.mae_c00475{transform:matrix(0.207957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207957,0.000000,0.000000,0.250000,0,0);}
.m70_c00475{transform:matrix(0.224535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224535,0.000000,0.000000,0.250000,0,0);}
.m76_c00475{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);}
.m86_c00475{transform:matrix(0.231051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231051,0.000000,0.000000,0.250000,0,0);}
.m1_c00475{transform:matrix(0.233809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233809,0.000000,0.000000,0.250000,0,0);}
.m48_c00475{transform:matrix(0.236311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236311,0.000000,0.000000,0.250000,0,0);}
.m43_c00475{transform:matrix(0.241923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241923,0.000000,0.000000,0.250000,0,0);}
.m94_c00475{transform:matrix(0.242723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242723,0.000000,0.000000,0.250000,0,0);}
.m6a_c00475{transform:matrix(0.243961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243961,0.000000,0.000000,0.250000,0,0);}
.m0_c00475{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00475{transform:matrix(0.250810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250810,0.000000,0.000000,0.250000,0,0);}
.mb6_c00475{transform:matrix(0.251545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251545,0.000000,0.000000,0.250000,0,0);}
.m61_c00475{transform:matrix(0.252999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252999,0.000000,0.000000,0.250000,0,0);}
.m75_c00475{transform:matrix(0.254896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254896,0.000000,0.000000,0.250000,0,0);}
.m80_c00475{transform:matrix(0.255423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255423,0.000000,0.000000,0.250000,0,0);}
.m6b_c00475{transform:matrix(0.255749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255749,0.000000,0.000000,0.250000,0,0);}
.m8f_c00475{transform:matrix(0.258288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258288,0.000000,0.000000,0.250000,0,0);}
.m77_c00475{transform:matrix(0.261231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261231,0.000000,0.000000,0.250000,0,0);}
.m60_c00475{transform:matrix(0.261572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261572,0.000000,0.000000,0.250000,0,0);}
.m1a_c00475{transform:matrix(0.262043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262043,0.000000,0.000000,0.250000,0,0);}
.m6f_c00475{transform:matrix(0.262417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262417,0.000000,0.000000,0.250000,0,0);}
.m1e_c00475{transform:matrix(0.262916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262916,0.000000,0.000000,0.250000,0,0);}
.m8a_c00475{transform:matrix(0.263657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263657,0.000000,0.000000,0.250000,0,0);}
.m27_c00475{transform:matrix(0.266768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266768,0.000000,0.000000,0.250000,0,0);}
.m8c_c00475{transform:matrix(0.268206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268206,0.000000,0.000000,0.250000,0,0);}
.m39_c00475{transform:matrix(0.268701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268701,0.000000,0.000000,0.250000,0,0);}
.m17_c00475{transform:matrix(0.269115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269115,0.000000,0.000000,0.250000,0,0);}
.m5e_c00475{transform:matrix(0.269129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269129,0.000000,0.000000,0.250000,0,0);}
.m29_c00475{transform:matrix(0.270264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270264,0.000000,0.000000,0.250000,0,0);}
.m45_c00475{transform:matrix(0.270624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270624,0.000000,0.000000,0.250000,0,0);}
.m40_c00475{transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);}
.m81_c00475{transform:matrix(0.272173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272173,0.000000,0.000000,0.250000,0,0);}
.m1f_c00475{transform:matrix(0.273266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273266,0.000000,0.000000,0.250000,0,0);}
.m9a_c00475{transform:matrix(0.273663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273663,0.000000,0.000000,0.250000,0,0);}
.ma3_c00475{transform:matrix(0.274532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274532,0.000000,0.000000,0.250000,0,0);}
.m90_c00475{transform:matrix(0.274674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274674,0.000000,0.000000,0.250000,0,0);}
.m91_c00475{transform:matrix(0.275231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275231,0.000000,0.000000,0.250000,0,0);}
.m98_c00475{transform:matrix(0.275502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275502,0.000000,0.000000,0.250000,0,0);}
.m2e_c00475{transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);}
.m64_c00475{transform:matrix(0.277012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277012,0.000000,0.000000,0.250000,0,0);}
.m56_c00475{transform:matrix(0.278954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278954,0.000000,0.000000,0.250000,0,0);}
.m6d_c00475{transform:matrix(0.279348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279348,0.000000,0.000000,0.250000,0,0);}
.m85_c00475{transform:matrix(0.279435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279435,0.000000,0.000000,0.250000,0,0);}
.m8d_c00475{transform:matrix(0.280090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280090,0.000000,0.000000,0.250000,0,0);}
.m7d_c00475{transform:matrix(0.281410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281410,0.000000,0.000000,0.250000,0,0);}
.m78_c00475{transform:matrix(0.281959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281959,0.000000,0.000000,0.250000,0,0);}
.m36_c00475{transform:matrix(0.281975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281975,0.000000,0.000000,0.250000,0,0);}
.m20_c00475{transform:matrix(0.282025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282025,0.000000,0.000000,0.250000,0,0);}
.m3b_c00475{transform:matrix(0.282070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282070,0.000000,0.000000,0.250000,0,0);}
.m7a_c00475{transform:matrix(0.282140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282140,0.000000,0.000000,0.250000,0,0);}
.m16_c00475{transform:matrix(0.282422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282422,0.000000,0.000000,0.250000,0,0);}
.m73_c00475{transform:matrix(0.283036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283036,0.000000,0.000000,0.250000,0,0);}
.m47_c00475{transform:matrix(0.283200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283200,0.000000,0.000000,0.250000,0,0);}
.m6e_c00475{transform:matrix(0.283635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283635,0.000000,0.000000,0.250000,0,0);}
.m6c_c00475{transform:matrix(0.283779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283779,0.000000,0.000000,0.250000,0,0);}
.m69_c00475{transform:matrix(0.284232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284232,0.000000,0.000000,0.250000,0,0);}
.m2c_c00475{transform:matrix(0.284570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284570,0.000000,0.000000,0.250000,0,0);}
.m15_c00475{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00475{transform:matrix(0.285206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285206,0.000000,0.000000,0.250000,0,0);}
.m7_c00475{transform:matrix(0.286583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286583,0.000000,0.000000,0.250000,0,0);}
.m28_c00475{transform:matrix(0.287277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287277,0.000000,0.000000,0.250000,0,0);}
.m10_c00475{transform:matrix(0.287608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287608,0.000000,0.000000,0.250000,0,0);}
.m2_c00475{transform:matrix(0.289116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289116,0.000000,0.000000,0.250000,0,0);}
.m84_c00475{transform:matrix(0.289329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289329,0.000000,0.000000,0.250000,0,0);}
.m46_c00475{transform:matrix(0.289592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289592,0.000000,0.000000,0.250000,0,0);}
.m8e_c00475{transform:matrix(0.290344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290344,0.000000,0.000000,0.250000,0,0);}
.m9b_c00475{transform:matrix(0.290632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290632,0.000000,0.000000,0.250000,0,0);}
.m58_c00475{transform:matrix(0.290830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290830,0.000000,0.000000,0.250000,0,0);}
.ma2_c00475{transform:matrix(0.291562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291562,0.000000,0.000000,0.250000,0,0);}
.m1d_c00475{transform:matrix(0.291711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291711,0.000000,0.000000,0.250000,0,0);}
.m2f_c00475{transform:matrix(0.292407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292407,0.000000,0.000000,0.250000,0,0);}
.m22_c00475{transform:matrix(0.292969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292969,0.000000,0.000000,0.250000,0,0);}
.m49_c00475{transform:matrix(0.294950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294950,0.000000,0.000000,0.250000,0,0);}
.ma0_c00475{transform:matrix(0.295350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295350,0.000000,0.000000,0.250000,0,0);}
.m68_c00475{transform:matrix(0.295448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295448,0.000000,0.000000,0.250000,0,0);}
.md_c00475{transform:matrix(0.295454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295454,0.000000,0.000000,0.250000,0,0);}
.m5a_c00475{transform:matrix(0.296261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296261,0.000000,0.000000,0.250000,0,0);}
.m13_c00475{transform:matrix(0.296468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296468,0.000000,0.000000,0.250000,0,0);}
.mc_c00475{transform:matrix(0.297034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297034,0.000000,0.000000,0.250000,0,0);}
.m14_c00475{transform:matrix(0.297670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297670,0.000000,0.000000,0.250000,0,0);}
.m3c_c00475{transform:matrix(0.297744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297744,0.000000,0.000000,0.250000,0,0);}
.m88_c00475{transform:matrix(0.297831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297831,0.000000,0.000000,0.250000,0,0);}
.m4_c00475{transform:matrix(0.297965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297965,0.000000,0.000000,0.250000,0,0);}
.m41_c00475{transform:matrix(0.299237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299237,0.000000,0.000000,0.250000,0,0);}
.ma_c00475{transform:matrix(0.299261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299261,0.000000,0.000000,0.250000,0,0);}
.m89_c00475{transform:matrix(0.299489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299489,0.000000,0.000000,0.250000,0,0);}
.m7b_c00475{transform:matrix(0.299553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299553,0.000000,0.000000,0.250000,0,0);}
.m26_c00475{transform:matrix(0.300642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300642,0.000000,0.000000,0.250000,0,0);}
.mb3_c00475{transform:matrix(0.301931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301931,0.000000,0.000000,0.250000,0,0);}
.m62_c00475{transform:matrix(0.302235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302235,0.000000,0.000000,0.250000,0,0);}
.m4c_c00475{transform:matrix(0.303391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303391,0.000000,0.000000,0.250000,0,0);}
.mf_c00475{transform:matrix(0.304090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304090,0.000000,0.000000,0.250000,0,0);}
.m5c_c00475{transform:matrix(0.304943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304943,0.000000,0.000000,0.250000,0,0);}
.m42_c00475{transform:matrix(0.304961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304961,0.000000,0.000000,0.250000,0,0);}
.m11_c00475{transform:matrix(0.305925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305925,0.000000,0.000000,0.250000,0,0);}
.mac_c00475{transform:matrix(0.306189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306189,0.000000,0.000000,0.250000,0,0);}
.m7e_c00475{transform:matrix(0.306261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306261,0.000000,0.000000,0.250000,0,0);}
.ma5_c00475{transform:matrix(0.306394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306394,0.000000,0.000000,0.250000,0,0);}
.m21_c00475{transform:matrix(0.306674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306674,0.000000,0.000000,0.250000,0,0);}
.m67_c00475{transform:matrix(0.307360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307360,0.000000,0.000000,0.250000,0,0);}
.m9c_c00475{transform:matrix(0.307719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307719,0.000000,0.000000,0.250000,0,0);}
.m2d_c00475{transform:matrix(0.308032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308032,0.000000,0.000000,0.250000,0,0);}
.m93_c00475{transform:matrix(0.308066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308066,0.000000,0.000000,0.250000,0,0);}
.m35_c00475{transform:matrix(0.308474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308474,0.000000,0.000000,0.250000,0,0);}
.m1c_c00475{transform:matrix(0.308549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308549,0.000000,0.000000,0.250000,0,0);}
.me_c00475{transform:matrix(0.308937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308937,0.000000,0.000000,0.250000,0,0);}
.m23_c00475{transform:matrix(0.309722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309722,0.000000,0.000000,0.250000,0,0);}
.m66_c00475{transform:matrix(0.309982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309982,0.000000,0.000000,0.250000,0,0);}
.ma1_c00475{transform:matrix(0.310986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310986,0.000000,0.000000,0.250000,0,0);}
.m3_c00475{transform:matrix(0.311654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311654,0.000000,0.000000,0.250000,0,0);}
.m5f_c00475{transform:matrix(0.312185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312185,0.000000,0.000000,0.250000,0,0);}
.m2a_c00475{transform:matrix(0.312447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312447,0.000000,0.000000,0.250000,0,0);}
.maa_c00475{transform:matrix(0.313096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313096,0.000000,0.000000,0.250000,0,0);}
.m57_c00475{transform:matrix(0.313518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313518,0.000000,0.000000,0.250000,0,0);}
.mb5_c00475{transform:matrix(0.314055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314055,0.000000,0.000000,0.250000,0,0);}
.m53_c00475{transform:matrix(0.316710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316710,0.000000,0.000000,0.250000,0,0);}
.m3a_c00475{transform:matrix(0.317111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317111,0.000000,0.000000,0.250000,0,0);}
.m99_c00475{transform:matrix(0.317541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317541,0.000000,0.000000,0.250000,0,0);}
.m59_c00475{transform:matrix(0.317838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317838,0.000000,0.000000,0.250000,0,0);}
.m83_c00475{transform:matrix(0.319072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319072,0.000000,0.000000,0.250000,0,0);}
.m82_c00475{transform:matrix(0.319399,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319399,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319399,0.000000,0.000000,0.250000,0,0);}
.m12_c00475{transform:matrix(0.319680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319680,0.000000,0.000000,0.250000,0,0);}
.m32_c00475{transform:matrix(0.320282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320282,0.000000,0.000000,0.250000,0,0);}
.m3f_c00475{transform:matrix(0.320661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320661,0.000000,0.000000,0.250000,0,0);}
.mab_c00475{transform:matrix(0.321600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321600,0.000000,0.000000,0.250000,0,0);}
.m25_c00475{transform:matrix(0.321999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321999,0.000000,0.000000,0.250000,0,0);}
.mb_c00475{transform:matrix(0.322710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322710,0.000000,0.000000,0.250000,0,0);}
.m87_c00475{transform:matrix(0.323646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323646,0.000000,0.000000,0.250000,0,0);}
.m3d_c00475{transform:matrix(0.325315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325315,0.000000,0.000000,0.250000,0,0);}
.ma9_c00475{transform:matrix(0.326053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326053,0.000000,0.000000,0.250000,0,0);}
.m5d_c00475{transform:matrix(0.326793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326793,0.000000,0.000000,0.250000,0,0);}
.ma4_c00475{transform:matrix(0.327187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327187,0.000000,0.000000,0.250000,0,0);}
.ma7_c00475{transform:matrix(0.327639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327639,0.000000,0.000000,0.250000,0,0);}
.m97_c00475{transform:matrix(0.327743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327743,0.000000,0.000000,0.250000,0,0);}
.m37_c00475{transform:matrix(0.329367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329367,0.000000,0.000000,0.250000,0,0);}
.m8_c00475{transform:matrix(0.329716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329716,0.000000,0.000000,0.250000,0,0);}
.m31_c00475{transform:matrix(0.330063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330063,0.000000,0.000000,0.250000,0,0);}
.m7f_c00475{transform:matrix(0.333186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333186,0.000000,0.000000,0.250000,0,0);}
.m7c_c00475{transform:matrix(0.333519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333519,0.000000,0.000000,0.250000,0,0);}
.mb4_c00475{transform:matrix(0.335530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335530,0.000000,0.000000,0.250000,0,0);}
.m33_c00475{transform:matrix(0.336552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336552,0.000000,0.000000,0.250000,0,0);}
.m63_c00475{transform:matrix(0.337517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337517,0.000000,0.000000,0.250000,0,0);}
.m8b_c00475{transform:matrix(0.337960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337960,0.000000,0.000000,0.250000,0,0);}
.m6_c00475{transform:matrix(0.340834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340834,0.000000,0.000000,0.250000,0,0);}
.m18_c00475{transform:matrix(0.341237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341237,0.000000,0.000000,0.250000,0,0);}
.mb1_c00475{transform:matrix(0.343187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343187,0.000000,0.000000,0.250000,0,0);}
.m44_c00475{transform:matrix(0.343785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343785,0.000000,0.000000,0.250000,0,0);}
.m3e_c00475{transform:matrix(0.349884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349884,0.000000,0.000000,0.250000,0,0);}
.m5_c00475{transform:matrix(0.349926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349926,0.000000,0.000000,0.250000,0,0);}
.m9_c00475{transform:matrix(0.352934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352934,0.000000,0.000000,0.250000,0,0);}
.m30_c00475{transform:matrix(0.355877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355877,0.000000,0.000000,0.250000,0,0);}
.m65_c00475{transform:matrix(0.356132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356132,0.000000,0.000000,0.250000,0,0);}
.mad_c00475{transform:matrix(0.359334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359334,0.000000,0.000000,0.250000,0,0);}
.m95_c00475{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_c00475{transform:matrix(0.360217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360217,0.000000,0.000000,0.250000,0,0);}
.m5b_c00475{transform:matrix(0.362380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362380,0.000000,0.000000,0.250000,0,0);}
.mb2_c00475{transform:matrix(0.362547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362547,0.000000,0.000000,0.250000,0,0);}
.ma6_c00475{transform:matrix(0.362885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362885,0.000000,0.000000,0.250000,0,0);}
.m19_c00475{transform:matrix(0.365791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365791,0.000000,0.000000,0.250000,0,0);}
.m92_c00475{transform:matrix(0.366428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366428,0.000000,0.000000,0.250000,0,0);}
.m38_c00475{transform:matrix(0.369365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369365,0.000000,0.000000,0.250000,0,0);}
.m24_c00475{transform:matrix(0.385060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385060,0.000000,0.000000,0.250000,0,0);}
.m2b_c00475{transform:matrix(0.391270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391270,0.000000,0.000000,0.250000,0,0);}
.m34_c00475{transform:matrix(0.397481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397481,0.000000,0.000000,0.250000,0,0);}
.m9f_c00475{transform:matrix(0.499996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499996,0.000000,0.000000,0.250000,0,0);}
.v2_c00475{vertical-align:-14.256000px;}
.v3_c00475{vertical-align:-12.850200px;}
.v1_c00475{vertical-align:-8.573400px;}
.v0_c00475{vertical-align:0.000000px;}
.ls19_c00475{letter-spacing:-3.659040px;}
.ls3_c00475{letter-spacing:-3.243240px;}
.ls15_c00475{letter-spacing:-3.187800px;}
.ls22_c00475{letter-spacing:-2.772000px;}
.ls13_c00475{letter-spacing:-2.661127px;}
.ls11_c00475{letter-spacing:-2.203740px;}
.ls12_c00475{letter-spacing:-1.586970px;}
.ls23_c00475{letter-spacing:-1.136520px;}
.ls1a_c00475{letter-spacing:-0.691893px;}
.ls24_c00475{letter-spacing:-0.187546px;}
.ls2_c00475{letter-spacing:0.000000px;}
.ls14_c00475{letter-spacing:0.218592px;}
.ls7_c00475{letter-spacing:0.790735px;}
.ls1_c00475{letter-spacing:1.193706px;}
.ls26_c00475{letter-spacing:1.269738px;}
.ls18_c00475{letter-spacing:2.144108px;}
.ls1e_c00475{letter-spacing:2.387411px;}
.ls1f_c00475{letter-spacing:2.509063px;}
.lse_c00475{letter-spacing:2.539475px;}
.ls20_c00475{letter-spacing:2.593810px;}
.ls27_c00475{letter-spacing:2.653200px;}
.ls21_c00475{letter-spacing:3.254178px;}
.ls17_c00475{letter-spacing:3.316500px;}
.lsa_c00475{letter-spacing:3.484810px;}
.ls5_c00475{letter-spacing:3.623400px;}
.lsc_c00475{letter-spacing:3.663000px;}
.ls9_c00475{letter-spacing:3.682810px;}
.ls10_c00475{letter-spacing:3.742200px;}
.lsb_c00475{letter-spacing:3.791700px;}
.ls4_c00475{letter-spacing:3.801610px;}
.ls6_c00475{letter-spacing:3.910500px;}
.ls8_c00475{letter-spacing:3.940200px;}
.lsd_c00475{letter-spacing:4.039200px;}
.lsf_c00475{letter-spacing:4.078810px;}
.ls1d_c00475{letter-spacing:4.554000px;}
.ls25_c00475{letter-spacing:11.404998px;}
.ls0_c00475{letter-spacing:19.760400px;}
.ls28_c00475{letter-spacing:52.747398px;}
.ls1b_c00475{letter-spacing:59.875398px;}
.ls1c_c00475{letter-spacing:62.726400px;}
.ls16_c00475{letter-spacing:65.577798px;}
.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:-3.411682px;}
.ws1_c00475{word-spacing:0.000000px;}
._3_c00475{margin-left:-29.463192px;}
._0_c00475{width:26.656214px;}
._2_c00475{width:40.309632px;}
._1_c00475{width:1484.220672px;}
.fc0_c00475{color:transparent;}
.fs21_c00475{font-size:11.404998px;}
.fs16_c00475{font-size:22.176000px;}
.fs20_c00475{font-size:25.344000px;}
.fs1e_c00475{font-size:26.928000px;}
.fs0_c00475{font-size:27.720000px;}
.fs1d_c00475{font-size:32.472000px;}
.fs15_c00475{font-size:39.798000px;}
.fs10_c00475{font-size:45.342000px;}
.fs24_c00475{font-size:48.114000px;}
.fs1b_c00475{font-size:51.876198px;}
.fs23_c00475{font-size:52.747398px;}
.fs22_c00475{font-size:53.064000px;}
.fs7_c00475{font-size:59.400000px;}
.fs19_c00475{font-size:59.875398px;}
.fs1a_c00475{font-size:62.726400px;}
.fsf_c00475{font-size:62.964000px;}
.fs12_c00475{font-size:65.577798px;}
.fs13_c00475{font-size:66.330000px;}
.fs9_c00475{font-size:69.696198px;}
.fs3_c00475{font-size:72.468000px;}
.fsb_c00475{font-size:73.260000px;}
.fs6_c00475{font-size:73.656198px;}
.fsd_c00475{font-size:74.844000px;}
.fsa_c00475{font-size:75.834000px;}
.fs2_c00475{font-size:76.032198px;}
.fs17_c00475{font-size:77.616198px;}
.fs4_c00475{font-size:78.210000px;}
.fs5_c00475{font-size:78.804000px;}
.fs1c_c00475{font-size:79.200000px;}
.fs1f_c00475{font-size:80.388000px;}
.fsc_c00475{font-size:80.784000px;}
.fse_c00475{font-size:81.576198px;}
.fs18_c00475{font-size:83.160000px;}
.fs8_c00475{font-size:85.932198px;}
.fs11_c00475{font-size:91.080000px;}
.fs1_c00475{font-size:92.664000px;}
.fs14_c00475{font-size:104.544000px;}
.y0_c00475{bottom:0.000000px;}
.y2_c00475{bottom:26.641935px;}
.y1_c00475{bottom:76.500000px;}
.y22_c00475{bottom:133.561935px;}
.y21_c00475{bottom:148.882185px;}
.y20_c00475{bottom:165.989385px;}
.y1f_c00475{bottom:198.070335px;}
.y1e_c00475{bottom:224.443935px;}
.y1d_c00475{bottom:230.146335px;}
.y1c_c00475{bottom:261.509535px;}
.y1b_c00475{bottom:293.229135px;}
.y1a_c00475{bottom:324.592335px;}
.y19_c00475{bottom:356.306985px;}
.y18_c00475{bottom:387.675135px;}
.y17_c00475{bottom:420.463935px;}
.y16_c00475{bottom:426.166335px;}
.y15_c00475{bottom:445.050585px;}
.y13_c00475{bottom:452.539935px;}
.y14_c00475{bottom:457.529535px;}
.y12_c00475{bottom:483.898185px;}
.y11_c00475{bottom:533.799135px;}
.y10_c00475{bottom:546.624585px;}
.yf_c00475{bottom:576.205785px;}
.yd_c00475{bottom:705.578985px;}
.ye_c00475{bottom:711.281385px;}
.yc_c00475{bottom:736.947135px;}
.yb_c00475{bottom:769.374585px;}
.ya_c00475{bottom:801.099135px;}
.y9_c00475{bottom:832.813785px;}
.y8_c00475{bottom:864.533385px;}
.y7_c00475{bottom:885.565935px;}
.y5_c00475{bottom:895.183785px;}
.y6_c00475{bottom:897.327135px;}
.y4_c00475{bottom:927.264735px;}
.y3_c00475{bottom:1044.158985px;}
.h1f_c00475{height:7.595729px;}
.h2_c00475{height:28.911094px;}
.h1d_c00475{height:33.867281px;}
.h21_c00475{height:35.129767px;}
.h19_c00475{height:39.877015px;}
.h16_c00475{height:41.508070px;}
.h1a_c00475{height:41.775782px;}
.h13_c00475{height:43.674813px;}
.h11_c00475{height:44.500693px;}
.h1b_c00475{height:50.888321px;}
.h20_c00475{height:55.344094px;}
.h10_c00475{height:61.795723px;}
.h14_c00475{height:65.099268px;}
.h17_c00475{height:66.695269px;}
.h5_c00475{height:71.123379px;}
.hc_c00475{height:71.900684px;}
.h8_c00475{height:72.289530px;}
.ha_c00475{height:72.690957px;}
.he_c00475{height:73.455293px;}
.hb_c00475{height:74.426924px;}
.h4_c00475{height:74.621444px;}
.h9_c00475{height:75.764353px;}
.h6_c00475{height:76.758838px;}
.h7_c00475{height:77.341816px;}
.hd_c00475{height:79.285078px;}
.hf_c00475{height:80.062577px;}
.h1c_c00475{height:82.603125px;}
.h1e_c00475{height:83.842172px;}
.h18_c00475{height:86.733281px;}
.h12_c00475{height:89.390039px;}
.h3_c00475{height:90.944648px;}
.h15_c00475{height:109.036125px;}
.h1_c00475{height:1110.000000px;}
.h0_c00475{height:1263.000000px;}
.w1_c00475{width:760.500000px;}
.w0_c00475{width:892.500000px;}
.x0_c00475{left:0.000000px;}
.x2_c00475{left:21.068085px;}
.x1_c00475{left:66.000000px;}
.x30_c00475{left:96.332835px;}
.x3a_c00475{left:97.471335px;}
.x17_c00475{left:98.540535px;}
.xc_c00475{left:99.634485px;}
.x27_c00475{left:131.403585px;}
.x5a_c00475{left:141.778785px;}
.x5_c00475{left:152.911335px;}
.x60_c00475{left:154.534935px;}
.x28_c00475{left:161.910435px;}
.x29_c00475{left:162.984585px;}
.x1f_c00475{left:165.632835px;}
.x3b_c00475{left:174.914085px;}
.x34_c00475{left:176.913885px;}
.x6_c00475{left:185.437785px;}
.x4c_c00475{left:196.471335px;}
.x50_c00475{left:208.440435px;}
.x64_c00475{left:210.583785px;}
.x3c_c00475{left:217.889985px;}
.x18_c00475{left:218.934435px;}
.xd_c00475{left:229.888785px;}
.x2a_c00475{left:230.898585px;}
.x51_c00475{left:241.456935px;}
.x35_c00475{left:251.733135px;}
.x58_c00475{left:252.896385px;}
.x49_c00475{left:262.786485px;}
.xe_c00475{left:264.335835px;}
.x5b_c00475{left:274.092285px;}
.x19_c00475{left:284.160585px;}
.x36_c00475{left:285.937635px;}
.x20_c00475{left:296.887035px;}
.x2b_c00475{left:298.238385px;}
.x5c_c00475{left:307.554285px;}
.x6e_c00475{left:309.276885px;}
.x1a_c00475{left:320.582685px;}
.x4b_c00475{left:325.384185px;}
.x56_c00475{left:327.953235px;}
.x4d_c00475{left:330.967785px;}
.x61_c00475{left:332.363685px;}
.x44_c00475{left:339.085785px;}
.xf_c00475{left:341.743935px;}
.x4a_c00475{left:343.471485px;}
.x3d_c00475{left:362.934885px;}
.x31_c00475{left:364.459485px;}
.x2c_c00475{left:374.339685px;}
.x5d_c00475{left:381.433035px;}
.x21_c00475{left:386.254335px;}
.x10_c00475{left:396.426585px;}
.x7_c00475{left:398.010585px;}
.x65_c00475{left:407.153235px;}
.x37_c00475{left:408.356085px;}
.x22_c00475{left:417.845235px;}
.x45_c00475{left:420.349935px;}
.x68_c00475{left:429.962835px;}
.x11_c00475{left:431.432985px;}
.x52_c00475{left:433.383285px;}
.x4e_c00475{left:442.496235px;}
.x23_c00475{left:451.322085px;}
.x3e_c00475{left:452.737785px;}
.x5e_c00475{left:458.841135px;}
.x8_c00475{left:464.271285px;}
.x12_c00475{left:473.998035px;}
.x4f_c00475{left:475.359285px;}
.x9_c00475{left:496.673985px;}
.x13_c00475{left:505.767135px;}
.x2d_c00475{left:507.400635px;}
.x66_c00475{left:509.143035px;}
.x1b_c00475{left:517.612485px;}
.x3f_c00475{left:519.092535px;}
.x24_c00475{left:529.858785px;}
.x46_c00475{left:531.541785px;}
.x2e_c00475{left:539.333085px;}
.x1c_c00475{left:541.124985px;}
.x6f_c00475{left:542.312985px;}
.x69_c00475{left:551.821935px;}
.x74_c00475{left:553.405935px;}
.xa_c00475{left:561.474435px;}
.x67_c00475{left:562.518885px;}
.x38_c00475{left:563.682135px;}
.x53_c00475{left:565.879935px;}
.x5f_c00475{left:572.785185px;}
.x70_c00475{left:574.265235px;}
.x14_c00475{left:575.641335px;}
.x54_c00475{left:584.600835px;}
.x1d_c00475{left:595.847235px;}
.x40_c00475{left:598.782585px;}
.xb_c00475{left:606.880785px;}
.x6a_c00475{left:609.004335px;}
.x32_c00475{left:617.404485px;}
.x47_c00475{left:618.656835px;}
.x41_c00475{left:620.013135px;}
.x25_c00475{left:629.220135px;}
.x1e_c00475{left:640.669485px;}
.x62_c00475{left:641.793135px;}
.x48_c00475{left:652.722735px;}
.x6b_c00475{left:662.043585px;}
.x59_c00475{left:663.206835px;}
.x42_c00475{left:664.246335px;}
.x6c_c00475{left:669.681435px;}
.x26_c00475{left:672.468285px;}
.x55_c00475{left:674.230485px;}
.x43_c00475{left:683.284035px;}
.x15_c00475{left:685.189785px;}
.x71_c00475{left:686.367885px;}
.x6d_c00475{left:690.313035px;}
.x2f_c00475{left:695.277885px;}
.x16_c00475{left:697.158885px;}
.x73_c00475{left:698.228085px;}
.x57_c00475{left:701.925735px;}
.x63_c00475{left:707.633085px;}
.x39_c00475{left:718.092435px;}
.x3_c00475{left:719.443785px;}
.x4_c00475{left:730.313985px;}
.x72_c00475{left:731.487135px;}
.x33_c00475{left:740.545635px;}
@media print{
.v2_c00475{vertical-align:-12.672000pt;}
.v3_c00475{vertical-align:-11.422400pt;}
.v1_c00475{vertical-align:-7.620800pt;}
.v0_c00475{vertical-align:0.000000pt;}
.ls19_c00475{letter-spacing:-3.252480pt;}
.ls3_c00475{letter-spacing:-2.882880pt;}
.ls15_c00475{letter-spacing:-2.833600pt;}
.ls22_c00475{letter-spacing:-2.464000pt;}
.ls13_c00475{letter-spacing:-2.365446pt;}
.ls11_c00475{letter-spacing:-1.958880pt;}
.ls12_c00475{letter-spacing:-1.410640pt;}
.ls23_c00475{letter-spacing:-1.010240pt;}
.ls1a_c00475{letter-spacing:-0.615016pt;}
.ls24_c00475{letter-spacing:-0.166707pt;}
.ls2_c00475{letter-spacing:0.000000pt;}
.ls14_c00475{letter-spacing:0.194304pt;}
.ls7_c00475{letter-spacing:0.702875pt;}
.ls1_c00475{letter-spacing:1.061072pt;}
.ls26_c00475{letter-spacing:1.128656pt;}
.ls18_c00475{letter-spacing:1.905874pt;}
.ls1e_c00475{letter-spacing:2.122143pt;}
.ls1f_c00475{letter-spacing:2.230278pt;}
.lse_c00475{letter-spacing:2.257311pt;}
.ls20_c00475{letter-spacing:2.305609pt;}
.ls27_c00475{letter-spacing:2.358400pt;}
.ls21_c00475{letter-spacing:2.892603pt;}
.ls17_c00475{letter-spacing:2.948000pt;}
.lsa_c00475{letter-spacing:3.097609pt;}
.ls5_c00475{letter-spacing:3.220800pt;}
.lsc_c00475{letter-spacing:3.256000pt;}
.ls9_c00475{letter-spacing:3.273609pt;}
.ls10_c00475{letter-spacing:3.326400pt;}
.lsb_c00475{letter-spacing:3.370400pt;}
.ls4_c00475{letter-spacing:3.379209pt;}
.ls6_c00475{letter-spacing:3.476000pt;}
.ls8_c00475{letter-spacing:3.502400pt;}
.lsd_c00475{letter-spacing:3.590400pt;}
.lsf_c00475{letter-spacing:3.625609pt;}
.ls1d_c00475{letter-spacing:4.048000pt;}
.ls25_c00475{letter-spacing:10.137776pt;}
.ls0_c00475{letter-spacing:17.564800pt;}
.ls28_c00475{letter-spacing:46.886576pt;}
.ls1b_c00475{letter-spacing:53.222576pt;}
.ls1c_c00475{letter-spacing:55.756800pt;}
.ls16_c00475{letter-spacing:58.291376pt;}
.ws0_c00475{word-spacing:-3.032607pt;}
.ws1_c00475{word-spacing:0.000000pt;}
._3_c00475{margin-left:-26.189504pt;}
._0_c00475{width:23.694412pt;}
._2_c00475{width:35.830784pt;}
._1_c00475{width:1319.307264pt;}
.fs21_c00475{font-size:10.137776pt;}
.fs16_c00475{font-size:19.712000pt;}
.fs20_c00475{font-size:22.528000pt;}
.fs1e_c00475{font-size:23.936000pt;}
.fs0_c00475{font-size:24.640000pt;}
.fs1d_c00475{font-size:28.864000pt;}
.fs15_c00475{font-size:35.376000pt;}
.fs10_c00475{font-size:40.304000pt;}
.fs24_c00475{font-size:42.768000pt;}
.fs1b_c00475{font-size:46.112176pt;}
.fs23_c00475{font-size:46.886576pt;}
.fs22_c00475{font-size:47.168000pt;}
.fs7_c00475{font-size:52.800000pt;}
.fs19_c00475{font-size:53.222576pt;}
.fs1a_c00475{font-size:55.756800pt;}
.fsf_c00475{font-size:55.968000pt;}
.fs12_c00475{font-size:58.291376pt;}
.fs13_c00475{font-size:58.960000pt;}
.fs9_c00475{font-size:61.952176pt;}
.fs3_c00475{font-size:64.416000pt;}
.fsb_c00475{font-size:65.120000pt;}
.fs6_c00475{font-size:65.472176pt;}
.fsd_c00475{font-size:66.528000pt;}
.fsa_c00475{font-size:67.408000pt;}
.fs2_c00475{font-size:67.584176pt;}
.fs17_c00475{font-size:68.992176pt;}
.fs4_c00475{font-size:69.520000pt;}
.fs5_c00475{font-size:70.048000pt;}
.fs1c_c00475{font-size:70.400000pt;}
.fs1f_c00475{font-size:71.456000pt;}
.fsc_c00475{font-size:71.808000pt;}
.fse_c00475{font-size:72.512176pt;}
.fs18_c00475{font-size:73.920000pt;}
.fs8_c00475{font-size:76.384176pt;}
.fs11_c00475{font-size:80.960000pt;}
.fs1_c00475{font-size:82.368000pt;}
.fs14_c00475{font-size:92.928000pt;}
.y0_c00475{bottom:0.000000pt;}
.y2_c00475{bottom:23.681720pt;}
.y1_c00475{bottom:68.000000pt;}
.y22_c00475{bottom:118.721720pt;}
.y21_c00475{bottom:132.339720pt;}
.y20_c00475{bottom:147.546120pt;}
.y1f_c00475{bottom:176.062520pt;}
.y1e_c00475{bottom:199.505720pt;}
.y1d_c00475{bottom:204.574520pt;}
.y1c_c00475{bottom:232.452920pt;}
.y1b_c00475{bottom:260.648120pt;}
.y1a_c00475{bottom:288.526520pt;}
.y19_c00475{bottom:316.717320pt;}
.y18_c00475{bottom:344.600120pt;}
.y17_c00475{bottom:373.745720pt;}
.y16_c00475{bottom:378.814520pt;}
.y15_c00475{bottom:395.600520pt;}
.y13_c00475{bottom:402.257720pt;}
.y14_c00475{bottom:406.692920pt;}
.y12_c00475{bottom:430.131720pt;}
.y11_c00475{bottom:474.488120pt;}
.y10_c00475{bottom:485.888520pt;}
.yf_c00475{bottom:512.182920pt;}
.yd_c00475{bottom:627.181320pt;}
.ye_c00475{bottom:632.250120pt;}
.yc_c00475{bottom:655.064120pt;}
.yb_c00475{bottom:683.888520pt;}
.ya_c00475{bottom:712.088120pt;}
.y9_c00475{bottom:740.278920pt;}
.y8_c00475{bottom:768.474120pt;}
.y7_c00475{bottom:787.169720pt;}
.y5_c00475{bottom:795.718920pt;}
.y6_c00475{bottom:797.624120pt;}
.y4_c00475{bottom:824.235320pt;}
.y3_c00475{bottom:928.141320pt;}
.h1f_c00475{height:6.751759pt;}
.h2_c00475{height:25.698750pt;}
.h1d_c00475{height:30.104250pt;}
.h21_c00475{height:31.226460pt;}
.h19_c00475{height:35.446236pt;}
.h16_c00475{height:36.896063pt;}
.h1a_c00475{height:37.134029pt;}
.h13_c00475{height:38.822056pt;}
.h11_c00475{height:39.556172pt;}
.h1b_c00475{height:45.234063pt;}
.h20_c00475{height:49.194750pt;}
.h10_c00475{height:54.929531pt;}
.h14_c00475{height:57.866016pt;}
.h17_c00475{height:59.284684pt;}
.h5_c00475{height:63.220781pt;}
.hc_c00475{height:63.911719pt;}
.h8_c00475{height:64.257360pt;}
.ha_c00475{height:64.614184pt;}
.he_c00475{height:65.293594pt;}
.hb_c00475{height:66.157266pt;}
.h4_c00475{height:66.330173pt;}
.h9_c00475{height:67.346091pt;}
.h6_c00475{height:68.230078pt;}
.h7_c00475{height:68.748281pt;}
.hd_c00475{height:70.475625pt;}
.hf_c00475{height:71.166735pt;}
.h1c_c00475{height:73.425000pt;}
.h1e_c00475{height:74.526375pt;}
.h18_c00475{height:77.096250pt;}
.h12_c00475{height:79.457813pt;}
.h3_c00475{height:80.839688pt;}
.h15_c00475{height:96.921000pt;}
.h1_c00475{height:986.666667pt;}
.h0_c00475{height:1122.666667pt;}
.w1_c00475{width:676.000000pt;}
.w0_c00475{width:793.333333pt;}
.x0_c00475{left:0.000000pt;}
.x2_c00475{left:18.727187pt;}
.x1_c00475{left:58.666667pt;}
.x30_c00475{left:85.629187pt;}
.x3a_c00475{left:86.641187pt;}
.x17_c00475{left:87.591587pt;}
.xc_c00475{left:88.563987pt;}
.x27_c00475{left:116.803187pt;}
.x5a_c00475{left:126.025587pt;}
.x5_c00475{left:135.921187pt;}
.x60_c00475{left:137.364387pt;}
.x28_c00475{left:143.920387pt;}
.x29_c00475{left:144.875187pt;}
.x1f_c00475{left:147.229187pt;}
.x3b_c00475{left:155.479187pt;}
.x34_c00475{left:157.256787pt;}
.x6_c00475{left:164.833587pt;}
.x4c_c00475{left:174.641187pt;}
.x50_c00475{left:185.280387pt;}
.x64_c00475{left:187.185587pt;}
.x3c_c00475{left:193.679987pt;}
.x18_c00475{left:194.608387pt;}
.xd_c00475{left:204.345587pt;}
.x2a_c00475{left:205.243187pt;}
.x51_c00475{left:214.628387pt;}
.x35_c00475{left:223.762787pt;}
.x58_c00475{left:224.796787pt;}
.x49_c00475{left:233.587987pt;}
.xe_c00475{left:234.965187pt;}
.x5b_c00475{left:243.637587pt;}
.x19_c00475{left:252.587187pt;}
.x36_c00475{left:254.166787pt;}
.x20_c00475{left:263.899587pt;}
.x2b_c00475{left:265.100787pt;}
.x5c_c00475{left:273.381587pt;}
.x6e_c00475{left:274.912787pt;}
.x1a_c00475{left:284.962387pt;}
.x4b_c00475{left:289.230387pt;}
.x56_c00475{left:291.513987pt;}
.x4d_c00475{left:294.193587pt;}
.x61_c00475{left:295.434387pt;}
.x44_c00475{left:301.409587pt;}
.xf_c00475{left:303.772387pt;}
.x4a_c00475{left:305.307987pt;}
.x3d_c00475{left:322.608787pt;}
.x31_c00475{left:323.963987pt;}
.x2c_c00475{left:332.746387pt;}
.x5d_c00475{left:339.051587pt;}
.x21_c00475{left:343.337187pt;}
.x10_c00475{left:352.379187pt;}
.x7_c00475{left:353.787187pt;}
.x65_c00475{left:361.913987pt;}
.x37_c00475{left:362.983187pt;}
.x22_c00475{left:371.417987pt;}
.x45_c00475{left:373.644387pt;}
.x68_c00475{left:382.189187pt;}
.x11_c00475{left:383.495987pt;}
.x52_c00475{left:385.229587pt;}
.x4e_c00475{left:393.329987pt;}
.x23_c00475{left:401.175187pt;}
.x3e_c00475{left:402.433587pt;}
.x5e_c00475{left:407.858787pt;}
.x8_c00475{left:412.685587pt;}
.x12_c00475{left:421.331587pt;}
.x4f_c00475{left:422.541587pt;}
.x9_c00475{left:441.487987pt;}
.x13_c00475{left:449.570787pt;}
.x2d_c00475{left:451.022787pt;}
.x66_c00475{left:452.571587pt;}
.x1b_c00475{left:460.099987pt;}
.x3f_c00475{left:461.415587pt;}
.x24_c00475{left:470.985587pt;}
.x46_c00475{left:472.481587pt;}
.x2e_c00475{left:479.407187pt;}
.x1c_c00475{left:480.999987pt;}
.x6f_c00475{left:482.055987pt;}
.x69_c00475{left:490.508387pt;}
.x74_c00475{left:491.916387pt;}
.xa_c00475{left:499.088387pt;}
.x67_c00475{left:500.016787pt;}
.x38_c00475{left:501.050787pt;}
.x53_c00475{left:503.004387pt;}
.x5f_c00475{left:509.142387pt;}
.x70_c00475{left:510.457987pt;}
.x14_c00475{left:511.681187pt;}
.x54_c00475{left:519.645187pt;}
.x1d_c00475{left:529.641987pt;}
.x40_c00475{left:532.251187pt;}
.xb_c00475{left:539.449587pt;}
.x6a_c00475{left:541.337187pt;}
.x32_c00475{left:548.803987pt;}
.x47_c00475{left:549.917187pt;}
.x41_c00475{left:551.122787pt;}
.x25_c00475{left:559.306787pt;}
.x1e_c00475{left:569.483987pt;}
.x62_c00475{left:570.482787pt;}
.x48_c00475{left:580.197987pt;}
.x6b_c00475{left:588.483187pt;}
.x59_c00475{left:589.517187pt;}
.x42_c00475{left:590.441187pt;}
.x6c_c00475{left:595.272387pt;}
.x26_c00475{left:597.749587pt;}
.x55_c00475{left:599.315987pt;}
.x43_c00475{left:607.363587pt;}
.x15_c00475{left:609.057587pt;}
.x71_c00475{left:610.104787pt;}
.x6d_c00475{left:613.611587pt;}
.x2f_c00475{left:618.024787pt;}
.x16_c00475{left:619.696787pt;}
.x73_c00475{left:620.647187pt;}
.x57_c00475{left:623.933987pt;}
.x63_c00475{left:629.007187pt;}
.x39_c00475{left:638.304387pt;}
.x3_c00475{left:639.505587pt;}
.x4_c00475{left:649.167987pt;}
.x72_c00475{left:650.210787pt;}
.x33_c00475{left:658.262787pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_aecbf00dcd528166e07ce04e.woff2')format("woff");}.ff1_c00476{font-family:ff1_c00476;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00476;src:url('chunks/assets/font_887952e0055a7fbed1413d92.woff2')format("woff");}.ff2_c00476{font-family:ff2_c00476;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00476;src:url('chunks/assets/font_c3216441ff37ca454d093600.woff2')format("woff");}.ff3_c00476{font-family:ff3_c00476;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00476;src:url('chunks/assets/font_0beef02938970f4f0c3c7846.woff2')format("woff");}.ff4_c00476{font-family:ff4_c00476;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1a_c00476{transform:matrix(0.112170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112170,0.000000,0.000000,0.250000,0,0);}
.m97_c00476{transform:matrix(0.120040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120040,0.000000,0.000000,0.250000,0,0);}
.m45_c00476{transform:matrix(0.131409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131409,0.000000,0.000000,0.250000,0,0);}
.ma4_c00476{transform:matrix(0.151786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151786,0.000000,0.000000,0.250000,0,0);}
.m96_c00476{transform:matrix(0.160294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160294,0.000000,0.000000,0.250000,0,0);}
.m85_c00476{transform:matrix(0.183397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183397,0.000000,0.000000,0.250000,0,0);}
.m2a_c00476{transform:matrix(0.198171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198171,0.000000,0.000000,0.250000,0,0);}
.m6d_c00476{transform:matrix(0.203668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203668,0.000000,0.000000,0.250000,0,0);}
.m53_c00476{transform:matrix(0.207639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207639,0.000000,0.000000,0.250000,0,0);}
.m84_c00476{transform:matrix(0.208845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208845,0.000000,0.000000,0.250000,0,0);}
.m40_c00476{transform:matrix(0.218345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218345,0.000000,0.000000,0.250000,0,0);}
.m39_c00476{transform:matrix(0.225521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225521,0.000000,0.000000,0.250000,0,0);}
.m87_c00476{transform:matrix(0.233591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233591,0.000000,0.000000,0.250000,0,0);}
.mb_c00476{transform:matrix(0.241091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241091,0.000000,0.000000,0.250000,0,0);}
.m92_c00476{transform:matrix(0.246919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246919,0.000000,0.000000,0.250000,0,0);}
.m48_c00476{transform:matrix(0.248170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248170,0.000000,0.000000,0.250000,0,0);}
.m0_c00476{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00476{transform:matrix(0.250144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250144,0.000000,0.000000,0.250000,0,0);}
.m73_c00476{transform:matrix(0.250825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250825,0.000000,0.000000,0.250000,0,0);}
.m14_c00476{transform:matrix(0.251385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251385,0.000000,0.000000,0.250000,0,0);}
.m13_c00476{transform:matrix(0.252073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252073,0.000000,0.000000,0.250000,0,0);}
.m8e_c00476{transform:matrix(0.252642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252642,0.000000,0.000000,0.250000,0,0);}
.m91_c00476{transform:matrix(0.253055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253055,0.000000,0.000000,0.250000,0,0);}
.m2_c00476{transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);}
.m86_c00476{transform:matrix(0.253387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253387,0.000000,0.000000,0.250000,0,0);}
.m64_c00476{transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);}
.m42_c00476{transform:matrix(0.253967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253967,0.000000,0.000000,0.250000,0,0);}
.m95_c00476{transform:matrix(0.255566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255566,0.000000,0.000000,0.250000,0,0);}
.m88_c00476{transform:matrix(0.256110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256110,0.000000,0.000000,0.250000,0,0);}
.m35_c00476{transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);}
.me_c00476{transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);}
.m94_c00476{transform:matrix(0.257689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257689,0.000000,0.000000,0.250000,0,0);}
.m6f_c00476{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m7b_c00476{transform:matrix(0.258789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258789,0.000000,0.000000,0.250000,0,0);}
.m29_c00476{transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);}
.m2c_c00476{transform:matrix(0.260989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260989,0.000000,0.000000,0.250000,0,0);}
.ma5_c00476{transform:matrix(0.261206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261206,0.000000,0.000000,0.250000,0,0);}
.m9c_c00476{transform:matrix(0.261958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261958,0.000000,0.000000,0.250000,0,0);}
.m7f_c00476{transform:matrix(0.262253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262253,0.000000,0.000000,0.250000,0,0);}
.m4b_c00476{transform:matrix(0.262792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262792,0.000000,0.000000,0.250000,0,0);}
.m8f_c00476{transform:matrix(0.263385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263385,0.000000,0.000000,0.250000,0,0);}
.m25_c00476{transform:matrix(0.264065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264065,0.000000,0.000000,0.250000,0,0);}
.ma7_c00476{transform:matrix(0.264344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264344,0.000000,0.000000,0.250000,0,0);}
.m4a_c00476{transform:matrix(0.264807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264807,0.000000,0.000000,0.250000,0,0);}
.m75_c00476{transform:matrix(0.265176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265176,0.000000,0.000000,0.250000,0,0);}
.m43_c00476{transform:matrix(0.265451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265451,0.000000,0.000000,0.250000,0,0);}
.m27_c00476{transform:matrix(0.265533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265533,0.000000,0.000000,0.250000,0,0);}
.m80_c00476{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m99_c00476{transform:matrix(0.266448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266448,0.000000,0.000000,0.250000,0,0);}
.m7d_c00476{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.m98_c00476{transform:matrix(0.266979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266979,0.000000,0.000000,0.250000,0,0);}
.m28_c00476{transform:matrix(0.267258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267258,0.000000,0.000000,0.250000,0,0);}
.m6_c00476{transform:matrix(0.267265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267265,0.000000,0.000000,0.250000,0,0);}
.m67_c00476{transform:matrix(0.268295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268295,0.000000,0.000000,0.250000,0,0);}
.m46_c00476{transform:matrix(0.269100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269100,0.000000,0.000000,0.250000,0,0);}
.m47_c00476{transform:matrix(0.269363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269363,0.000000,0.000000,0.250000,0,0);}
.m8d_c00476{transform:matrix(0.270746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270746,0.000000,0.000000,0.250000,0,0);}
.m4c_c00476{transform:matrix(0.270885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270885,0.000000,0.000000,0.250000,0,0);}
.m9_c00476{transform:matrix(0.272561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272561,0.000000,0.000000,0.250000,0,0);}
.m21_c00476{transform:matrix(0.272580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272580,0.000000,0.000000,0.250000,0,0);}
.m93_c00476{transform:matrix(0.273641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273641,0.000000,0.000000,0.250000,0,0);}
.m49_c00476{transform:matrix(0.273859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273859,0.000000,0.000000,0.250000,0,0);}
.m8b_c00476{transform:matrix(0.274905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274905,0.000000,0.000000,0.250000,0,0);}
.m6a_c00476{transform:matrix(0.274954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274954,0.000000,0.000000,0.250000,0,0);}
.m77_c00476{transform:matrix(0.275102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275102,0.000000,0.000000,0.250000,0,0);}
.m9a_c00476{transform:matrix(0.275315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275315,0.000000,0.000000,0.250000,0,0);}
.m9b_c00476{transform:matrix(0.275437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275437,0.000000,0.000000,0.250000,0,0);}
.m26_c00476{transform:matrix(0.276319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276319,0.000000,0.000000,0.250000,0,0);}
.m12_c00476{transform:matrix(0.276494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276494,0.000000,0.000000,0.250000,0,0);}
.m8c_c00476{transform:matrix(0.277286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277286,0.000000,0.000000,0.250000,0,0);}
.m83_c00476{transform:matrix(0.277433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277433,0.000000,0.000000,0.250000,0,0);}
.m5d_c00476{transform:matrix(0.277663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277663,0.000000,0.000000,0.250000,0,0);}
.m5f_c00476{transform:matrix(0.278798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278798,0.000000,0.000000,0.250000,0,0);}
.m32_c00476{transform:matrix(0.278900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278900,0.000000,0.000000,0.250000,0,0);}
.m50_c00476{transform:matrix(0.278984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278984,0.000000,0.000000,0.250000,0,0);}
.m4_c00476{transform:matrix(0.279002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279002,0.000000,0.000000,0.250000,0,0);}
.m72_c00476{transform:matrix(0.279198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279198,0.000000,0.000000,0.250000,0,0);}
.m3c_c00476{transform:matrix(0.279593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279593,0.000000,0.000000,0.250000,0,0);}
.m68_c00476{transform:matrix(0.279706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279706,0.000000,0.000000,0.250000,0,0);}
.m2d_c00476{transform:matrix(0.279908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279908,0.000000,0.000000,0.250000,0,0);}
.mc_c00476{transform:matrix(0.280468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280468,0.000000,0.000000,0.250000,0,0);}
.m22_c00476{transform:matrix(0.280712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280712,0.000000,0.000000,0.250000,0,0);}
.m7_c00476{transform:matrix(0.280987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280987,0.000000,0.000000,0.250000,0,0);}
.m5b_c00476{transform:matrix(0.281761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281761,0.000000,0.000000,0.250000,0,0);}
.m6e_c00476{transform:matrix(0.282991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282991,0.000000,0.000000,0.250000,0,0);}
.m23_c00476{transform:matrix(0.283754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283754,0.000000,0.000000,0.250000,0,0);}
.m24_c00476{transform:matrix(0.283785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283785,0.000000,0.000000,0.250000,0,0);}
.m18_c00476{transform:matrix(0.284210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284210,0.000000,0.000000,0.250000,0,0);}
.m38_c00476{transform:matrix(0.284371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284371,0.000000,0.000000,0.250000,0,0);}
.m36_c00476{transform:matrix(0.284485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284485,0.000000,0.000000,0.250000,0,0);}
.ma0_c00476{transform:matrix(0.284676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284676,0.000000,0.000000,0.250000,0,0);}
.ma_c00476{transform:matrix(0.285235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285235,0.000000,0.000000,0.250000,0,0);}
.m2b_c00476{transform:matrix(0.285286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285286,0.000000,0.000000,0.250000,0,0);}
.m55_c00476{transform:matrix(0.285348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285348,0.000000,0.000000,0.250000,0,0);}
.m57_c00476{transform:matrix(0.285760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285760,0.000000,0.000000,0.250000,0,0);}
.m5a_c00476{transform:matrix(0.286788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286788,0.000000,0.000000,0.250000,0,0);}
.m20_c00476{transform:matrix(0.288581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288581,0.000000,0.000000,0.250000,0,0);}
.m5_c00476{transform:matrix(0.288814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288814,0.000000,0.000000,0.250000,0,0);}
.m79_c00476{transform:matrix(0.288860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288860,0.000000,0.000000,0.250000,0,0);}
.m33_c00476{transform:matrix(0.290360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290360,0.000000,0.000000,0.250000,0,0);}
.m89_c00476{transform:matrix(0.290540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290540,0.000000,0.000000,0.250000,0,0);}
.m1c_c00476{transform:matrix(0.291389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291389,0.000000,0.000000,0.250000,0,0);}
.m7e_c00476{transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);}
.m15_c00476{transform:matrix(0.291838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291838,0.000000,0.000000,0.250000,0,0);}
.m2e_c00476{transform:matrix(0.292236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292236,0.000000,0.000000,0.250000,0,0);}
.m16_c00476{transform:matrix(0.292253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292253,0.000000,0.000000,0.250000,0,0);}
.m3e_c00476{transform:matrix(0.292341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292341,0.000000,0.000000,0.250000,0,0);}
.m5e_c00476{transform:matrix(0.293612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293612,0.000000,0.000000,0.250000,0,0);}
.m19_c00476{transform:matrix(0.293700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293700,0.000000,0.000000,0.250000,0,0);}
.m30_c00476{transform:matrix(0.294845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294845,0.000000,0.000000,0.250000,0,0);}
.m4e_c00476{transform:matrix(0.295461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295461,0.000000,0.000000,0.250000,0,0);}
.m9e_c00476{transform:matrix(0.295572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295572,0.000000,0.000000,0.250000,0,0);}
.m70_c00476{transform:matrix(0.295595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295595,0.000000,0.000000,0.250000,0,0);}
.ma9_c00476{transform:matrix(0.295960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295960,0.000000,0.000000,0.250000,0,0);}
.m69_c00476{transform:matrix(0.296869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296869,0.000000,0.000000,0.250000,0,0);}
.m37_c00476{transform:matrix(0.296899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296899,0.000000,0.000000,0.250000,0,0);}
.md_c00476{transform:matrix(0.296923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296923,0.000000,0.000000,0.250000,0,0);}
.m1_c00476{transform:matrix(0.298235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298235,0.000000,0.000000,0.250000,0,0);}
.m52_c00476{transform:matrix(0.298837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298837,0.000000,0.000000,0.250000,0,0);}
.mac_c00476{transform:matrix(0.298917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298917,0.000000,0.000000,0.250000,0,0);}
.m1d_c00476{transform:matrix(0.298975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298975,0.000000,0.000000,0.250000,0,0);}
.m1e_c00476{transform:matrix(0.299653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299653,0.000000,0.000000,0.250000,0,0);}
.m34_c00476{transform:matrix(0.299869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299869,0.000000,0.000000,0.250000,0,0);}
.m58_c00476{transform:matrix(0.299926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299926,0.000000,0.000000,0.250000,0,0);}
.ma8_c00476{transform:matrix(0.301159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301159,0.000000,0.000000,0.250000,0,0);}
.m63_c00476{transform:matrix(0.301946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301946,0.000000,0.000000,0.250000,0,0);}
.m6b_c00476{transform:matrix(0.303140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303140,0.000000,0.000000,0.250000,0,0);}
.m9f_c00476{transform:matrix(0.304249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304249,0.000000,0.000000,0.250000,0,0);}
.m9d_c00476{transform:matrix(0.304838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304838,0.000000,0.000000,0.250000,0,0);}
.m51_c00476{transform:matrix(0.305820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305820,0.000000,0.000000,0.250000,0,0);}
.mab_c00476{transform:matrix(0.306226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306226,0.000000,0.000000,0.250000,0,0);}
.m3_c00476{transform:matrix(0.306455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306455,0.000000,0.000000,0.250000,0,0);}
.m76_c00476{transform:matrix(0.307388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307388,0.000000,0.000000,0.250000,0,0);}
.m41_c00476{transform:matrix(0.307453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307453,0.000000,0.000000,0.250000,0,0);}
.m4f_c00476{transform:matrix(0.307801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307801,0.000000,0.000000,0.250000,0,0);}
.mad_c00476{transform:matrix(0.307862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307862,0.000000,0.000000,0.250000,0,0);}
.ma1_c00476{transform:matrix(0.309270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309270,0.000000,0.000000,0.250000,0,0);}
.m7c_c00476{transform:matrix(0.309952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309952,0.000000,0.000000,0.250000,0,0);}
.m6c_c00476{transform:matrix(0.310948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310948,0.000000,0.000000,0.250000,0,0);}
.m65_c00476{transform:matrix(0.314374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314374,0.000000,0.000000,0.250000,0,0);}
.m11_c00476{transform:matrix(0.314463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314463,0.000000,0.000000,0.250000,0,0);}
.m17_c00476{transform:matrix(0.315629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315629,0.000000,0.000000,0.250000,0,0);}
.maa_c00476{transform:matrix(0.316117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316117,0.000000,0.000000,0.250000,0,0);}
.m44_c00476{transform:matrix(0.316644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316644,0.000000,0.000000,0.250000,0,0);}
.m66_c00476{transform:matrix(0.316941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316941,0.000000,0.000000,0.250000,0,0);}
.m4d_c00476{transform:matrix(0.317480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317480,0.000000,0.000000,0.250000,0,0);}
.m3d_c00476{transform:matrix(0.317544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317544,0.000000,0.000000,0.250000,0,0);}
.m56_c00476{transform:matrix(0.318429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318429,0.000000,0.000000,0.250000,0,0);}
.m5c_c00476{transform:matrix(0.320282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320282,0.000000,0.000000,0.250000,0,0);}
.m10_c00476{transform:matrix(0.322824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322824,0.000000,0.000000,0.250000,0,0);}
.ma2_c00476{transform:matrix(0.323286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323286,0.000000,0.000000,0.250000,0,0);}
.m1b_c00476{transform:matrix(0.324082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324082,0.000000,0.000000,0.250000,0,0);}
.m7a_c00476{transform:matrix(0.324086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324086,0.000000,0.000000,0.250000,0,0);}
.m59_c00476{transform:matrix(0.325209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325209,0.000000,0.000000,0.250000,0,0);}
.m1f_c00476{transform:matrix(0.325725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325725,0.000000,0.000000,0.250000,0,0);}
.m54_c00476{transform:matrix(0.326105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326105,0.000000,0.000000,0.250000,0,0);}
.m81_c00476{transform:matrix(0.328522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328522,0.000000,0.000000,0.250000,0,0);}
.m61_c00476{transform:matrix(0.330403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330403,0.000000,0.000000,0.250000,0,0);}
.m31_c00476{transform:matrix(0.331929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331929,0.000000,0.000000,0.250000,0,0);}
.m71_c00476{transform:matrix(0.333044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333044,0.000000,0.000000,0.250000,0,0);}
.m8a_c00476{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.ma6_c00476{transform:matrix(0.333549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333549,0.000000,0.000000,0.250000,0,0);}
.m74_c00476{transform:matrix(0.341525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341525,0.000000,0.000000,0.250000,0,0);}
.m90_c00476{transform:matrix(0.345413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345413,0.000000,0.000000,0.250000,0,0);}
.m82_c00476{transform:matrix(0.347168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347168,0.000000,0.000000,0.250000,0,0);}
.m60_c00476{transform:matrix(0.358891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358891,0.000000,0.000000,0.250000,0,0);}
.m3f_c00476{transform:matrix(0.359449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359449,0.000000,0.000000,0.250000,0,0);}
.mf_c00476{transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);}
.m62_c00476{transform:matrix(0.370179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370179,0.000000,0.000000,0.250000,0,0);}
.m2f_c00476{transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);}
.m3a_c00476{transform:matrix(0.372494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372494,0.000000,0.000000,0.250000,0,0);}
.m8_c00476{transform:matrix(0.376256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376256,0.000000,0.000000,0.250000,0,0);}
.ma3_c00476{transform:matrix(0.397482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397482,0.000000,0.000000,0.250000,0,0);}
.m78_c00476{transform:matrix(0.420477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420477,0.000000,0.000000,0.250000,0,0);}
.v0_c00476{vertical-align:0.000000px;}
.lsf_c00476{letter-spacing:-3.146227px;}
.ls4_c00476{letter-spacing:-2.855167px;}
.ls3_c00476{letter-spacing:-2.838852px;}
.ls1c_c00476{letter-spacing:-2.834377px;}
.ls1e_c00476{letter-spacing:-2.798064px;}
.ls1a_c00476{letter-spacing:-2.202557px;}
.ls18_c00476{letter-spacing:-1.965986px;}
.ls10_c00476{letter-spacing:-0.562876px;}
.lsc_c00476{letter-spacing:-0.138680px;}
.ls6_c00476{letter-spacing:0.000000px;}
.lse_c00476{letter-spacing:0.539353px;}
.lsb_c00476{letter-spacing:1.148400px;}
.ls1f_c00476{letter-spacing:1.843622px;}
.ls1b_c00476{letter-spacing:2.653200px;}
.ls20_c00476{letter-spacing:3.116211px;}
.ls9_c00476{letter-spacing:3.336466px;}
.lsa_c00476{letter-spacing:3.405610px;}
.lsd_c00476{letter-spacing:3.445200px;}
.ls15_c00476{letter-spacing:3.573037px;}
.ls19_c00476{letter-spacing:3.593700px;}
.ls13_c00476{letter-spacing:3.638298px;}
.ls2_c00476{letter-spacing:3.662771px;}
.ls5_c00476{letter-spacing:3.742200px;}
.ls0_c00476{letter-spacing:3.766483px;}
.ls14_c00476{letter-spacing:3.781810px;}
.ls21_c00476{letter-spacing:3.801610px;}
.ls17_c00476{letter-spacing:3.920400px;}
.ls8_c00476{letter-spacing:3.960000px;}
.ls1_c00476{letter-spacing:4.078810px;}
.ls11_c00476{letter-spacing:4.494610px;}
.ls12_c00476{letter-spacing:51.321798px;}
.ls16_c00476{letter-spacing:52.747398px;}
.ls7_c00476{letter-spacing:58.449798px;}
.ls1d_c00476{letter-spacing:59.875398px;}
.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;}
._0_c00476{width:2.447588px;}
._1_c00476{width:29.640600px;}
.fc0_c00476{color:transparent;}
.fs7_c00476{font-size:22.968000px;}
.fs9_c00476{font-size:51.321798px;}
.fsb_c00476{font-size:52.747398px;}
.fse_c00476{font-size:53.064000px;}
.fs4_c00476{font-size:58.449798px;}
.fs10_c00476{font-size:59.875398px;}
.fs6_c00476{font-size:68.112198px;}
.fs8_c00476{font-size:68.904000px;}
.fs3_c00476{font-size:71.280000px;}
.fsd_c00476{font-size:71.874000px;}
.fs2_c00476{font-size:74.844000px;}
.fsa_c00476{font-size:75.636198px;}
.fs11_c00476{font-size:76.032198px;}
.fsc_c00476{font-size:78.408000px;}
.fs5_c00476{font-size:79.200000px;}
.fsf_c00476{font-size:80.982198px;}
.fs1_c00476{font-size:81.576198px;}
.fs0_c00476{font-size:89.892198px;}
.y0_c00476{bottom:0.000000px;}
.y1_c00476{bottom:76.500000px;}
.y1b_c00476{bottom:128.567385px;}
.y1a_c00476{bottom:160.648335px;}
.y19_c00476{bottom:192.719385px;}
.y18_c00476{bottom:223.374735px;}
.y17_c00476{bottom:287.878185px;}
.y16_c00476{bottom:318.889935px;}
.y15_c00476{bottom:351.322335px;}
.y14_c00476{bottom:383.398335px;}
.y13_c00476{bottom:414.761535px;}
.y12_c00476{bottom:447.193935px;}
.y11_c00476{bottom:478.557135px;}
.y10_c00476{bottom:510.628185px;}
.yf_c00476{bottom:542.709135px;}
.ye_c00476{bottom:605.079135px;}
.yd_c00476{bottom:636.442335px;}
.yc_c00476{bottom:668.513385px;}
.yb_c00476{bottom:699.881535px;}
.ya_c00476{bottom:731.601135px;}
.y9_c00476{bottom:757.256985px;}
.y7_c00476{bottom:764.033535px;}
.y8_c00476{bottom:764.389935px;}
.y6_c00476{bottom:795.748185px;}
.y5_c00476{bottom:827.829135px;}
.y4_c00476{bottom:859.900185px;}
.y3_c00476{bottom:923.695785px;}
.y2_c00476{bottom:1043.089785px;}
.h9_c00476{height:23.954906px;}
.hb_c00476{height:34.180317px;}
.hd_c00476{height:35.129767px;}
.h6_c00476{height:38.927565px;}
.h12_c00476{height:39.877015px;}
.h10_c00476{height:52.079414px;}
.hf_c00476{height:70.540400px;}
.h8_c00476{height:71.038894px;}
.ha_c00476{height:71.864719px;}
.h4_c00476{height:73.455293px;}
.hc_c00476{height:74.232792px;}
.h5_c00476{height:74.342813px;}
.h13_c00476{height:74.621444px;}
.he_c00476{height:76.953164px;}
.h7_c00476{height:77.730469px;}
.h3_c00476{height:80.062577px;}
.h11_c00476{height:84.461902px;}
.h2_c00476{height:88.224276px;}
.h1_c00476{height:1110.000000px;}
.h0_c00476{height:1263.000000px;}
.w1_c00476{width:760.500000px;}
.w0_c00476{width:892.500000px;}
.x0_c00476{left:0.000000px;}
.x1_c00476{left:66.000000px;}
.x1b_c00476{left:89.912685px;}
.x12_c00476{left:91.843185px;}
.x3_c00476{left:93.234135px;}
.x1c_c00476{left:113.147985px;}
.x59_c00476{left:122.770785px;}
.x5f_c00476{left:124.666635px;}
.x23_c00476{left:134.804235px;}
.x51_c00476{left:135.898185px;}
.x44_c00476{left:144.035985px;}
.x9_c00476{left:145.436835px;}
.x1d_c00476{left:156.212985px;}
.x3c_c00476{left:158.475135px;}
.x13_c00476{left:167.805885px;}
.x32_c00476{left:168.830535px;}
.x45_c00476{left:178.458285px;}
.xa_c00476{left:180.156135px;}
.x49_c00476{left:189.165135px;}
.x60_c00476{left:192.664785px;}
.x4_c00476{left:201.312435px;}
.x3d_c00476{left:202.693485px;}
.x2c_c00476{left:211.499535px;}
.x61_c00476{left:213.019185px;}
.x1e_c00476{left:216.662385px;}
.x1f_c00476{left:222.993435px;}
.x14_c00476{left:234.071535px;}
.x5_c00476{left:235.452585px;}
.x2d_c00476{left:244.600185px;}
.x62_c00476{left:246.981135px;}
.x24_c00476{left:256.554435px;}
.x38_c00476{left:266.687085px;}
.x5b_c00476{left:268.300785px;}
.x46_c00476{left:278.646285px;}
.x25_c00476{left:289.640235px;}
.x6_c00476{left:290.996535px;}
.xb_c00476{left:300.678735px;}
.x5c_c00476{left:303.312135px;}
.x4a_c00476{left:310.890585px;}
.x41_c00476{left:312.113235px;}
.x26_c00476{left:322.651785px;}
.x2e_c00476{left:323.914035px;}
.xc_c00476{left:335.190135px;}
.x54_c00476{left:344.897085px;}
.x20_c00476{left:356.930535px;}
.x39_c00476{left:367.389885px;}
.x55_c00476{left:377.215635px;}
.x50_c00476{left:378.418485px;}
.x33_c00476{left:381.046935px;}
.x4b_c00476{left:389.843085px;}
.x63_c00476{left:400.124235px;}
.x27_c00476{left:401.237985px;}
.x15_c00476{left:412.301235px;}
.x42_c00476{left:422.443785px;}
.x64_c00476{left:433.650585px;}
.x47_c00476{left:435.021735px;}
.x34_c00476{left:443.837685px;}
.x7_c00476{left:446.104785px;}
.xd_c00476{left:455.588985px;}
.x16_c00476{left:456.851235px;}
.x3e_c00476{left:467.706585px;}
.x3a_c00476{left:478.180785px;}
.x8_c00476{left:479.264835px;}
.x35_c00476{left:489.075735px;}
.x56_c00476{left:499.782585px;}
.x3f_c00476{left:501.386385px;}
.x2f_c00476{left:511.182435px;}
.x5a_c00476{left:512.405085px;}
.x21_c00476{left:534.779085px;}
.x4c_c00476{left:545.510685px;}
.x4d_c00476{left:555.519585px;}
.x17_c00476{left:557.331285px;}
.x43_c00476{left:566.058135px;}
.xe_c00476{left:567.335235px;}
.x5d_c00476{left:568.948935px;}
.x28_c00476{left:577.735185px;}
.x3b_c00476{left:579.076635px;}
.x4e_c00476{left:587.813385px;}
.x18_c00476{left:590.387385px;}
.xf_c00476{left:599.584485px;}
.x40_c00476{left:610.974435px;}
.x30_c00476{left:612.236685px;}
.x52_c00476{left:620.602185px;}
.x19_c00476{left:622.894035px;}
.x10_c00476{left:632.724735px;}
.x29_c00476{left:634.566135px;}
.x48_c00476{left:644.193885px;}
.x65_c00476{left:654.004785px;}
.x57_c00476{left:665.637285px;}
.x2a_c00476{left:667.102485px;}
.x22_c00476{left:676.200585px;}
.x2b_c00476{left:677.853885px;}
.x36_c00476{left:679.200285px;}
.x5e_c00476{left:686.452035px;}
.x11_c00476{left:689.451735px;}
.x1a_c00476{left:690.565485px;}
.x58_c00476{left:698.297385px;}
.x2_c00476{left:700.915935px;}
.x66_c00476{left:709.702185px;}
.x4f_c00476{left:710.820885px;}
.x37_c00476{left:712.904835px;}
.x53_c00476{left:721.260435px;}
.x31_c00476{left:722.275185px;}
@media print{
.v0_c00476{vertical-align:0.000000pt;}
.lsf_c00476{letter-spacing:-2.796646pt;}
.ls4_c00476{letter-spacing:-2.537926pt;}
.ls3_c00476{letter-spacing:-2.523424pt;}
.ls1c_c00476{letter-spacing:-2.519446pt;}
.ls1e_c00476{letter-spacing:-2.487168pt;}
.ls1a_c00476{letter-spacing:-1.957829pt;}
.ls18_c00476{letter-spacing:-1.747543pt;}
.ls10_c00476{letter-spacing:-0.500334pt;}
.lsc_c00476{letter-spacing:-0.123271pt;}
.ls6_c00476{letter-spacing:0.000000pt;}
.lse_c00476{letter-spacing:0.479425pt;}
.lsb_c00476{letter-spacing:1.020800pt;}
.ls1f_c00476{letter-spacing:1.638775pt;}
.ls1b_c00476{letter-spacing:2.358400pt;}
.ls20_c00476{letter-spacing:2.769965pt;}
.ls9_c00476{letter-spacing:2.965748pt;}
.lsa_c00476{letter-spacing:3.027209pt;}
.lsd_c00476{letter-spacing:3.062400pt;}
.ls15_c00476{letter-spacing:3.176033pt;}
.ls19_c00476{letter-spacing:3.194400pt;}
.ls13_c00476{letter-spacing:3.234043pt;}
.ls2_c00476{letter-spacing:3.255797pt;}
.ls5_c00476{letter-spacing:3.326400pt;}
.ls0_c00476{letter-spacing:3.347985pt;}
.ls14_c00476{letter-spacing:3.361609pt;}
.ls21_c00476{letter-spacing:3.379209pt;}
.ls17_c00476{letter-spacing:3.484800pt;}
.ls8_c00476{letter-spacing:3.520000pt;}
.ls1_c00476{letter-spacing:3.625609pt;}
.ls11_c00476{letter-spacing:3.995209pt;}
.ls12_c00476{letter-spacing:45.619376pt;}
.ls16_c00476{letter-spacing:46.886576pt;}
.ls7_c00476{letter-spacing:51.955376pt;}
.ls1d_c00476{letter-spacing:53.222576pt;}
.ws0_c00476{word-spacing:0.000000pt;}
._0_c00476{width:2.175634pt;}
._1_c00476{width:26.347200pt;}
.fs7_c00476{font-size:20.416000pt;}
.fs9_c00476{font-size:45.619376pt;}
.fsb_c00476{font-size:46.886576pt;}
.fse_c00476{font-size:47.168000pt;}
.fs4_c00476{font-size:51.955376pt;}
.fs10_c00476{font-size:53.222576pt;}
.fs6_c00476{font-size:60.544176pt;}
.fs8_c00476{font-size:61.248000pt;}
.fs3_c00476{font-size:63.360000pt;}
.fsd_c00476{font-size:63.888000pt;}
.fs2_c00476{font-size:66.528000pt;}
.fsa_c00476{font-size:67.232176pt;}
.fs11_c00476{font-size:67.584176pt;}
.fsc_c00476{font-size:69.696000pt;}
.fs5_c00476{font-size:70.400000pt;}
.fsf_c00476{font-size:71.984176pt;}
.fs1_c00476{font-size:72.512176pt;}
.fs0_c00476{font-size:79.904176pt;}
.y0_c00476{bottom:0.000000pt;}
.y1_c00476{bottom:68.000000pt;}
.y1b_c00476{bottom:114.282120pt;}
.y1a_c00476{bottom:142.798520pt;}
.y19_c00476{bottom:171.306120pt;}
.y18_c00476{bottom:198.555320pt;}
.y17_c00476{bottom:255.891720pt;}
.y16_c00476{bottom:283.457720pt;}
.y15_c00476{bottom:312.286520pt;}
.y14_c00476{bottom:340.798520pt;}
.y13_c00476{bottom:368.676920pt;}
.y12_c00476{bottom:397.505720pt;}
.y11_c00476{bottom:425.384120pt;}
.y10_c00476{bottom:453.891720pt;}
.yf_c00476{bottom:482.408120pt;}
.ye_c00476{bottom:537.848120pt;}
.yd_c00476{bottom:565.726520pt;}
.yc_c00476{bottom:594.234120pt;}
.yb_c00476{bottom:622.116920pt;}
.ya_c00476{bottom:650.312120pt;}
.y9_c00476{bottom:673.117320pt;}
.y7_c00476{bottom:679.140920pt;}
.y8_c00476{bottom:679.457720pt;}
.y6_c00476{bottom:707.331720pt;}
.y5_c00476{bottom:735.848120pt;}
.y4_c00476{bottom:764.355720pt;}
.y3_c00476{bottom:821.062920pt;}
.y2_c00476{bottom:927.190920pt;}
.h9_c00476{height:21.293250pt;}
.hb_c00476{height:30.382504pt;}
.hd_c00476{height:31.226460pt;}
.h6_c00476{height:34.602280pt;}
.h12_c00476{height:35.446236pt;}
.h10_c00476{height:46.292813pt;}
.hf_c00476{height:62.702578pt;}
.h8_c00476{height:63.145684pt;}
.ha_c00476{height:63.879750pt;}
.h4_c00476{height:65.293594pt;}
.hc_c00476{height:65.984704pt;}
.h5_c00476{height:66.082500pt;}
.h13_c00476{height:66.330173pt;}
.he_c00476{height:68.402813pt;}
.h7_c00476{height:69.093750pt;}
.h3_c00476{height:71.166735pt;}
.h11_c00476{height:75.077246pt;}
.h2_c00476{height:78.421579pt;}
.h1_c00476{height:986.666667pt;}
.h0_c00476{height:1122.666667pt;}
.w1_c00476{width:676.000000pt;}
.w0_c00476{width:793.333333pt;}
.x0_c00476{left:0.000000pt;}
.x1_c00476{left:58.666667pt;}
.x1b_c00476{left:79.922387pt;}
.x12_c00476{left:81.638387pt;}
.x3_c00476{left:82.874787pt;}
.x1c_c00476{left:100.575987pt;}
.x59_c00476{left:109.129587pt;}
.x5f_c00476{left:110.814787pt;}
.x23_c00476{left:119.825987pt;}
.x51_c00476{left:120.798387pt;}
.x44_c00476{left:128.031987pt;}
.x9_c00476{left:129.277187pt;}
.x1d_c00476{left:138.855987pt;}
.x3c_c00476{left:140.866787pt;}
.x13_c00476{left:149.160787pt;}
.x32_c00476{left:150.071587pt;}
.x45_c00476{left:158.629587pt;}
.xa_c00476{left:160.138787pt;}
.x49_c00476{left:168.146787pt;}
.x60_c00476{left:171.257587pt;}
.x4_c00476{left:178.944387pt;}
.x3d_c00476{left:180.171987pt;}
.x2c_c00476{left:187.999587pt;}
.x61_c00476{left:189.350387pt;}
.x1e_c00476{left:192.588787pt;}
.x1f_c00476{left:198.216387pt;}
.x14_c00476{left:208.063587pt;}
.x5_c00476{left:209.291187pt;}
.x2d_c00476{left:217.422387pt;}
.x62_c00476{left:219.538787pt;}
.x24_c00476{left:228.048387pt;}
.x38_c00476{left:237.055187pt;}
.x5b_c00476{left:238.489587pt;}
.x46_c00476{left:247.685587pt;}
.x25_c00476{left:257.457987pt;}
.x6_c00476{left:258.663587pt;}
.xb_c00476{left:267.269987pt;}
.x5c_c00476{left:269.610787pt;}
.x4a_c00476{left:276.347187pt;}
.x41_c00476{left:277.433987pt;}
.x26_c00476{left:286.801587pt;}
.x2e_c00476{left:287.923587pt;}
.xc_c00476{left:297.946787pt;}
.x54_c00476{left:306.575187pt;}
.x20_c00476{left:317.271587pt;}
.x39_c00476{left:326.568787pt;}
.x55_c00476{left:335.302787pt;}
.x50_c00476{left:336.371987pt;}
.x33_c00476{left:338.708387pt;}
.x4b_c00476{left:346.527187pt;}
.x63_c00476{left:355.665987pt;}
.x27_c00476{left:356.655987pt;}
.x15_c00476{left:366.489987pt;}
.x42_c00476{left:375.505587pt;}
.x64_c00476{left:385.467187pt;}
.x47_c00476{left:386.685987pt;}
.x34_c00476{left:394.522387pt;}
.x7_c00476{left:396.537587pt;}
.xd_c00476{left:404.967987pt;}
.x16_c00476{left:406.089987pt;}
.x3e_c00476{left:415.739187pt;}
.x3a_c00476{left:425.049587pt;}
.x8_c00476{left:426.013187pt;}
.x35_c00476{left:434.733987pt;}
.x56_c00476{left:444.251187pt;}
.x3f_c00476{left:445.676787pt;}
.x2f_c00476{left:454.384387pt;}
.x5a_c00476{left:455.471187pt;}
.x21_c00476{left:475.359187pt;}
.x4c_c00476{left:484.898387pt;}
.x4d_c00476{left:493.795187pt;}
.x17_c00476{left:495.405587pt;}
.x43_c00476{left:503.162787pt;}
.xe_c00476{left:504.297987pt;}
.x5d_c00476{left:505.732387pt;}
.x28_c00476{left:513.542387pt;}
.x3b_c00476{left:514.734787pt;}
.x4e_c00476{left:522.500787pt;}
.x18_c00476{left:524.788787pt;}
.xf_c00476{left:532.963987pt;}
.x40_c00476{left:543.088387pt;}
.x30_c00476{left:544.210387pt;}
.x52_c00476{left:551.646387pt;}
.x19_c00476{left:553.683587pt;}
.x10_c00476{left:562.421987pt;}
.x29_c00476{left:564.058787pt;}
.x48_c00476{left:572.616787pt;}
.x65_c00476{left:581.337587pt;}
.x57_c00476{left:591.677587pt;}
.x2a_c00476{left:592.979987pt;}
.x22_c00476{left:601.067187pt;}
.x2b_c00476{left:602.536787pt;}
.x36_c00476{left:603.733587pt;}
.x5e_c00476{left:610.179587pt;}
.x11_c00476{left:612.845987pt;}
.x1a_c00476{left:613.835987pt;}
.x58_c00476{left:620.708787pt;}
.x2_c00476{left:623.036387pt;}
.x66_c00476{left:630.846387pt;}
.x4f_c00476{left:631.840787pt;}
.x37_c00476{left:633.693187pt;}
.x53_c00476{left:641.120387pt;}
.x31_c00476{left:642.022387pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a1712adf0fa15865615f2496.woff2')format("woff");}.ff1_c00477{font-family:ff1_c00477;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00477;src:url('chunks/assets/font_1f27bf772571d0b8e104793b.woff2')format("woff");}.ff2_c00477{font-family:ff2_c00477;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00477;src:url('chunks/assets/font_79908e044273d84e34f2359a.woff2')format("woff");}.ff3_c00477{font-family:ff3_c00477;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00477;src:url('chunks/assets/font_dd5732bb6d7c2c387815f362.woff2')format("woff");}.ff4_c00477{font-family:ff4_c00477;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m9c_c00477{transform:matrix(0.019738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.019738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.019738,0.000000,0.000000,0.250000,0,0);}
.m88_c00477{transform:matrix(0.128876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128876,0.000000,0.000000,0.250000,0,0);}
.mb5_c00477{transform:matrix(0.138299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138299,0.000000,0.000000,0.250000,0,0);}
.m9b_c00477{transform:matrix(0.152960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152960,0.000000,0.000000,0.250000,0,0);}
.m4c_c00477{transform:matrix(0.161458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161458,0.000000,0.000000,0.250000,0,0);}
.m4b_c00477{transform:matrix(0.189844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189844,0.000000,0.000000,0.250000,0,0);}
.m9a_c00477{transform:matrix(0.192434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192434,0.000000,0.000000,0.250000,0,0);}
.m99_c00477{transform:matrix(0.195176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195176,0.000000,0.000000,0.250000,0,0);}
.m97_c00477{transform:matrix(0.198736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198736,0.000000,0.000000,0.250000,0,0);}
.m69_c00477{transform:matrix(0.211719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211719,0.000000,0.000000,0.250000,0,0);}
.m66_c00477{transform:matrix(0.214949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214949,0.000000,0.000000,0.250000,0,0);}
.m87_c00477{transform:matrix(0.245877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245877,0.000000,0.000000,0.250000,0,0);}
.m4_c00477{transform:matrix(0.248030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248030,0.000000,0.000000,0.250000,0,0);}
.m0_c00477{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m12_c00477{transform:matrix(0.250264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250264,0.000000,0.000000,0.250000,0,0);}
.mc_c00477{transform:matrix(0.250546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250546,0.000000,0.000000,0.250000,0,0);}
.m76_c00477{transform:matrix(0.251034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251034,0.000000,0.000000,0.250000,0,0);}
.m5e_c00477{transform:matrix(0.251564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251564,0.000000,0.000000,0.250000,0,0);}
.m98_c00477{transform:matrix(0.252251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252251,0.000000,0.000000,0.250000,0,0);}
.m82_c00477{transform:matrix(0.252313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252313,0.000000,0.000000,0.250000,0,0);}
.m3f_c00477{transform:matrix(0.252624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252624,0.000000,0.000000,0.250000,0,0);}
.ma8_c00477{transform:matrix(0.253199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253199,0.000000,0.000000,0.250000,0,0);}
.m9f_c00477{transform:matrix(0.253582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253582,0.000000,0.000000,0.250000,0,0);}
.m2e_c00477{transform:matrix(0.254161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254161,0.000000,0.000000,0.250000,0,0);}
.me_c00477{transform:matrix(0.254533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254533,0.000000,0.000000,0.250000,0,0);}
.m65_c00477{transform:matrix(0.255180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255180,0.000000,0.000000,0.250000,0,0);}
.ma7_c00477{transform:matrix(0.255630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255630,0.000000,0.000000,0.250000,0,0);}
.m14_c00477{transform:matrix(0.256819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256819,0.000000,0.000000,0.250000,0,0);}
.m3d_c00477{transform:matrix(0.257425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257425,0.000000,0.000000,0.250000,0,0);}
.m4d_c00477{transform:matrix(0.257794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257794,0.000000,0.000000,0.250000,0,0);}
.m83_c00477{transform:matrix(0.257994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257994,0.000000,0.000000,0.250000,0,0);}
.m7d_c00477{transform:matrix(0.258219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258219,0.000000,0.000000,0.250000,0,0);}
.m2c_c00477{transform:matrix(0.258377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258377,0.000000,0.000000,0.250000,0,0);}
.mb8_c00477{transform:matrix(0.258891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258891,0.000000,0.000000,0.250000,0,0);}
.m52_c00477{transform:matrix(0.259058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259058,0.000000,0.000000,0.250000,0,0);}
.m26_c00477{transform:matrix(0.259634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259634,0.000000,0.000000,0.250000,0,0);}
.m5_c00477{transform:matrix(0.259656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259656,0.000000,0.000000,0.250000,0,0);}
.ma6_c00477{transform:matrix(0.259829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259829,0.000000,0.000000,0.250000,0,0);}
.ma1_c00477{transform:matrix(0.260175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260175,0.000000,0.000000,0.250000,0,0);}
.m9d_c00477{transform:matrix(0.260318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260318,0.000000,0.000000,0.250000,0,0);}
.m1a_c00477{transform:matrix(0.260565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260565,0.000000,0.000000,0.250000,0,0);}
.m56_c00477{transform:matrix(0.260632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260632,0.000000,0.000000,0.250000,0,0);}
.m40_c00477{transform:matrix(0.260878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260878,0.000000,0.000000,0.250000,0,0);}
.m1c_c00477{transform:matrix(0.261325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261325,0.000000,0.000000,0.250000,0,0);}
.m6c_c00477{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.m27_c00477{transform:matrix(0.262827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262827,0.000000,0.000000,0.250000,0,0);}
.m2a_c00477{transform:matrix(0.262828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262828,0.000000,0.000000,0.250000,0,0);}
.m8_c00477{transform:matrix(0.262894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262894,0.000000,0.000000,0.250000,0,0);}
.m31_c00477{transform:matrix(0.263210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263210,0.000000,0.000000,0.250000,0,0);}
.mcf_c00477{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m18_c00477{transform:matrix(0.264211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264211,0.000000,0.000000,0.250000,0,0);}
.m23_c00477{transform:matrix(0.264857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264857,0.000000,0.000000,0.250000,0,0);}
.m22_c00477{transform:matrix(0.264913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264913,0.000000,0.000000,0.250000,0,0);}
.m72_c00477{transform:matrix(0.265402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265402,0.000000,0.000000,0.250000,0,0);}
.m7a_c00477{transform:matrix(0.265836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265836,0.000000,0.000000,0.250000,0,0);}
.m3e_c00477{transform:matrix(0.266609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266609,0.000000,0.000000,0.250000,0,0);}
.m7f_c00477{transform:matrix(0.266770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266770,0.000000,0.000000,0.250000,0,0);}
.m36_c00477{transform:matrix(0.267874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267874,0.000000,0.000000,0.250000,0,0);}
.m86_c00477{transform:matrix(0.268767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268767,0.000000,0.000000,0.250000,0,0);}
.m8a_c00477{transform:matrix(0.269957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269957,0.000000,0.000000,0.250000,0,0);}
.mc9_c00477{transform:matrix(0.270191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270191,0.000000,0.000000,0.250000,0,0);}
.m29_c00477{transform:matrix(0.270379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270379,0.000000,0.000000,0.250000,0,0);}
.m50_c00477{transform:matrix(0.270551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270551,0.000000,0.000000,0.250000,0,0);}
.m6_c00477{transform:matrix(0.271711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271711,0.000000,0.000000,0.250000,0,0);}
.ma9_c00477{transform:matrix(0.271897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271897,0.000000,0.000000,0.250000,0,0);}
.mb4_c00477{transform:matrix(0.271980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271980,0.000000,0.000000,0.250000,0,0);}
.mab_c00477{transform:matrix(0.272032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272032,0.000000,0.000000,0.250000,0,0);}
.m73_c00477{transform:matrix(0.272221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272221,0.000000,0.000000,0.250000,0,0);}
.m1b_c00477{transform:matrix(0.272254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272254,0.000000,0.000000,0.250000,0,0);}
.m51_c00477{transform:matrix(0.272450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272450,0.000000,0.000000,0.250000,0,0);}
.m74_c00477{transform:matrix(0.273309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273309,0.000000,0.000000,0.250000,0,0);}
.m3c_c00477{transform:matrix(0.273868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273868,0.000000,0.000000,0.250000,0,0);}
.mb0_c00477{transform:matrix(0.273988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273988,0.000000,0.000000,0.250000,0,0);}
.m24_c00477{transform:matrix(0.274242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274242,0.000000,0.000000,0.250000,0,0);}
.m17_c00477{transform:matrix(0.274375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274375,0.000000,0.000000,0.250000,0,0);}
.m93_c00477{transform:matrix(0.274814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274814,0.000000,0.000000,0.250000,0,0);}
.m91_c00477{transform:matrix(0.275547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275547,0.000000,0.000000,0.250000,0,0);}
.m25_c00477{transform:matrix(0.276694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276694,0.000000,0.000000,0.250000,0,0);}
.m1e_c00477{transform:matrix(0.277166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277166,0.000000,0.000000,0.250000,0,0);}
.mc5_c00477{transform:matrix(0.278066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278066,0.000000,0.000000,0.250000,0,0);}
.mbe_c00477{transform:matrix(0.278818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278818,0.000000,0.000000,0.250000,0,0);}
.m35_c00477{transform:matrix(0.279180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279180,0.000000,0.000000,0.250000,0,0);}
.m3b_c00477{transform:matrix(0.279439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279439,0.000000,0.000000,0.250000,0,0);}
.m3_c00477{transform:matrix(0.279702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279702,0.000000,0.000000,0.250000,0,0);}
.m37_c00477{transform:matrix(0.280240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280240,0.000000,0.000000,0.250000,0,0);}
.m13_c00477{transform:matrix(0.281080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281080,0.000000,0.000000,0.250000,0,0);}
.m42_c00477{transform:matrix(0.281355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281355,0.000000,0.000000,0.250000,0,0);}
.mb9_c00477{transform:matrix(0.281546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281546,0.000000,0.000000,0.250000,0,0);}
.m9e_c00477{transform:matrix(0.281974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281974,0.000000,0.000000,0.250000,0,0);}
.mb2_c00477{transform:matrix(0.282117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282117,0.000000,0.000000,0.250000,0,0);}
.ma3_c00477{transform:matrix(0.282334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282334,0.000000,0.000000,0.250000,0,0);}
.mbd_c00477{transform:matrix(0.282521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282521,0.000000,0.000000,0.250000,0,0);}
.ma0_c00477{transform:matrix(0.282659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282659,0.000000,0.000000,0.250000,0,0);}
.m7e_c00477{transform:matrix(0.282799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282799,0.000000,0.000000,0.250000,0,0);}
.m81_c00477{transform:matrix(0.283193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283193,0.000000,0.000000,0.250000,0,0);}
.mae_c00477{transform:matrix(0.283326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283326,0.000000,0.000000,0.250000,0,0);}
.m47_c00477{transform:matrix(0.283537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283537,0.000000,0.000000,0.250000,0,0);}
.m19_c00477{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m6b_c00477{transform:matrix(0.283746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283746,0.000000,0.000000,0.250000,0,0);}
.m45_c00477{transform:matrix(0.283943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283943,0.000000,0.000000,0.250000,0,0);}
.m1_c00477{transform:matrix(0.284385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284385,0.000000,0.000000,0.250000,0,0);}
.m6e_c00477{transform:matrix(0.284479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284479,0.000000,0.000000,0.250000,0,0);}
.mf_c00477{transform:matrix(0.284614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284614,0.000000,0.000000,0.250000,0,0);}
.m67_c00477{transform:matrix(0.284704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284704,0.000000,0.000000,0.250000,0,0);}
.m8f_c00477{transform:matrix(0.285246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285246,0.000000,0.000000,0.250000,0,0);}
.m6a_c00477{transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);}
.m1d_c00477{transform:matrix(0.285873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285873,0.000000,0.000000,0.250000,0,0);}
.mce_c00477{transform:matrix(0.285910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285910,0.000000,0.000000,0.250000,0,0);}
.m4a_c00477{transform:matrix(0.286058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286058,0.000000,0.000000,0.250000,0,0);}
.mba_c00477{transform:matrix(0.286090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286090,0.000000,0.000000,0.250000,0,0);}
.mb3_c00477{transform:matrix(0.286897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286897,0.000000,0.000000,0.250000,0,0);}
.ma4_c00477{transform:matrix(0.287214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287214,0.000000,0.000000,0.250000,0,0);}
.m53_c00477{transform:matrix(0.287592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287592,0.000000,0.000000,0.250000,0,0);}
.mc7_c00477{transform:matrix(0.287755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287755,0.000000,0.000000,0.250000,0,0);}
.m8b_c00477{transform:matrix(0.288940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288940,0.000000,0.000000,0.250000,0,0);}
.m49_c00477{transform:matrix(0.289446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289446,0.000000,0.000000,0.250000,0,0);}
.m28_c00477{transform:matrix(0.289666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289666,0.000000,0.000000,0.250000,0,0);}
.m2d_c00477{transform:matrix(0.289788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289788,0.000000,0.000000,0.250000,0,0);}
.m8e_c00477{transform:matrix(0.290033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290033,0.000000,0.000000,0.250000,0,0);}
.maa_c00477{transform:matrix(0.291099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291099,0.000000,0.000000,0.250000,0,0);}
.m59_c00477{transform:matrix(0.291837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291837,0.000000,0.000000,0.250000,0,0);}
.m1f_c00477{transform:matrix(0.292151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292151,0.000000,0.000000,0.250000,0,0);}
.mc4_c00477{transform:matrix(0.292582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292582,0.000000,0.000000,0.250000,0,0);}
.m90_c00477{transform:matrix(0.292625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292625,0.000000,0.000000,0.250000,0,0);}
.mca_c00477{transform:matrix(0.292825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292825,0.000000,0.000000,0.250000,0,0);}
.md0_c00477{transform:matrix(0.292936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292936,0.000000,0.000000,0.250000,0,0);}
.ma_c00477{transform:matrix(0.293209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293209,0.000000,0.000000,0.250000,0,0);}
.m5b_c00477{transform:matrix(0.293894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293894,0.000000,0.000000,0.250000,0,0);}
.m75_c00477{transform:matrix(0.294205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294205,0.000000,0.000000,0.250000,0,0);}
.m38_c00477{transform:matrix(0.294605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294605,0.000000,0.000000,0.250000,0,0);}
.mb1_c00477{transform:matrix(0.295604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295604,0.000000,0.000000,0.250000,0,0);}
.mc0_c00477{transform:matrix(0.295781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295781,0.000000,0.000000,0.250000,0,0);}
.m2b_c00477{transform:matrix(0.296262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296262,0.000000,0.000000,0.250000,0,0);}
.md1_c00477{transform:matrix(0.297073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297073,0.000000,0.000000,0.250000,0,0);}
.m48_c00477{transform:matrix(0.297292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297292,0.000000,0.000000,0.250000,0,0);}
.m32_c00477{transform:matrix(0.297437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297437,0.000000,0.000000,0.250000,0,0);}
.mac_c00477{transform:matrix(0.297596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297596,0.000000,0.000000,0.250000,0,0);}
.m77_c00477{transform:matrix(0.297951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297951,0.000000,0.000000,0.250000,0,0);}
.md3_c00477{transform:matrix(0.298908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298908,0.000000,0.000000,0.250000,0,0);}
.mc8_c00477{transform:matrix(0.300058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300058,0.000000,0.000000,0.250000,0,0);}
.m7b_c00477{transform:matrix(0.300125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300125,0.000000,0.000000,0.250000,0,0);}
.m70_c00477{transform:matrix(0.300378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300378,0.000000,0.000000,0.250000,0,0);}
.m62_c00477{transform:matrix(0.300554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300554,0.000000,0.000000,0.250000,0,0);}
.m71_c00477{transform:matrix(0.300978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300978,0.000000,0.000000,0.250000,0,0);}
.m5c_c00477{transform:matrix(0.301071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301071,0.000000,0.000000,0.250000,0,0);}
.mb6_c00477{transform:matrix(0.301236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301236,0.000000,0.000000,0.250000,0,0);}
.m84_c00477{transform:matrix(0.301268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301268,0.000000,0.000000,0.250000,0,0);}
.m57_c00477{transform:matrix(0.301610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301610,0.000000,0.000000,0.250000,0,0);}
.m89_c00477{transform:matrix(0.303345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303345,0.000000,0.000000,0.250000,0,0);}
.mad_c00477{transform:matrix(0.303480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303480,0.000000,0.000000,0.250000,0,0);}
.m5a_c00477{transform:matrix(0.303546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303546,0.000000,0.000000,0.250000,0,0);}
.m5d_c00477{transform:matrix(0.303624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303624,0.000000,0.000000,0.250000,0,0);}
.m44_c00477{transform:matrix(0.304012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304012,0.000000,0.000000,0.250000,0,0);}
.md2_c00477{transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);}
.m41_c00477{transform:matrix(0.305699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305699,0.000000,0.000000,0.250000,0,0);}
.m2_c00477{transform:matrix(0.305852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305852,0.000000,0.000000,0.250000,0,0);}
.m21_c00477{transform:matrix(0.306496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306496,0.000000,0.000000,0.250000,0,0);}
.m30_c00477{transform:matrix(0.307719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307719,0.000000,0.000000,0.250000,0,0);}
.m68_c00477{transform:matrix(0.307919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307919,0.000000,0.000000,0.250000,0,0);}
.m4f_c00477{transform:matrix(0.308667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308667,0.000000,0.000000,0.250000,0,0);}
.m79_c00477{transform:matrix(0.311187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311187,0.000000,0.000000,0.250000,0,0);}
.m8c_c00477{transform:matrix(0.313720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313720,0.000000,0.000000,0.250000,0,0);}
.m3a_c00477{transform:matrix(0.314578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314578,0.000000,0.000000,0.250000,0,0);}
.ma2_c00477{transform:matrix(0.314610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314610,0.000000,0.000000,0.250000,0,0);}
.mc3_c00477{transform:matrix(0.315447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315447,0.000000,0.000000,0.250000,0,0);}
.m43_c00477{transform:matrix(0.315475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315475,0.000000,0.000000,0.250000,0,0);}
.maf_c00477{transform:matrix(0.316256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316256,0.000000,0.000000,0.250000,0,0);}
.m7_c00477{transform:matrix(0.316591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316591,0.000000,0.000000,0.250000,0,0);}
.m60_c00477{transform:matrix(0.316882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316882,0.000000,0.000000,0.250000,0,0);}
.m85_c00477{transform:matrix(0.317005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317005,0.000000,0.000000,0.250000,0,0);}
.m34_c00477{transform:matrix(0.317563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317563,0.000000,0.000000,0.250000,0,0);}
.m33_c00477{transform:matrix(0.318283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318283,0.000000,0.000000,0.250000,0,0);}
.mc1_c00477{transform:matrix(0.318414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318414,0.000000,0.000000,0.250000,0,0);}
.md_c00477{transform:matrix(0.319107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319107,0.000000,0.000000,0.250000,0,0);}
.ma5_c00477{transform:matrix(0.320454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320454,0.000000,0.000000,0.250000,0,0);}
.m58_c00477{transform:matrix(0.320608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320608,0.000000,0.000000,0.250000,0,0);}
.m55_c00477{transform:matrix(0.321874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321874,0.000000,0.000000,0.250000,0,0);}
.m6d_c00477{transform:matrix(0.321961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321961,0.000000,0.000000,0.250000,0,0);}
.m94_c00477{transform:matrix(0.322092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322092,0.000000,0.000000,0.250000,0,0);}
.m16_c00477{transform:matrix(0.322905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322905,0.000000,0.000000,0.250000,0,0);}
.m2f_c00477{transform:matrix(0.322946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322946,0.000000,0.000000,0.250000,0,0);}
.m11_c00477{transform:matrix(0.323416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323416,0.000000,0.000000,0.250000,0,0);}
.mb_c00477{transform:matrix(0.324206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324206,0.000000,0.000000,0.250000,0,0);}
.m9_c00477{transform:matrix(0.325016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325016,0.000000,0.000000,0.250000,0,0);}
.mcc_c00477{transform:matrix(0.325042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325042,0.000000,0.000000,0.250000,0,0);}
.m15_c00477{transform:matrix(0.326110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326110,0.000000,0.000000,0.250000,0,0);}
.mcb_c00477{transform:matrix(0.327699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327699,0.000000,0.000000,0.250000,0,0);}
.m4e_c00477{transform:matrix(0.329405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329405,0.000000,0.000000,0.250000,0,0);}
.m96_c00477{transform:matrix(0.329682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329682,0.000000,0.000000,0.250000,0,0);}
.m54_c00477{transform:matrix(0.329978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329978,0.000000,0.000000,0.250000,0,0);}
.m63_c00477{transform:matrix(0.330796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330796,0.000000,0.000000,0.250000,0,0);}
.mbc_c00477{transform:matrix(0.330925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330925,0.000000,0.000000,0.250000,0,0);}
.m64_c00477{transform:matrix(0.330992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330992,0.000000,0.000000,0.250000,0,0);}
.m10_c00477{transform:matrix(0.331212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331212,0.000000,0.000000,0.250000,0,0);}
.m20_c00477{transform:matrix(0.334253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334253,0.000000,0.000000,0.250000,0,0);}
.m46_c00477{transform:matrix(0.334677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334677,0.000000,0.000000,0.250000,0,0);}
.m6f_c00477{transform:matrix(0.336835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336835,0.000000,0.000000,0.250000,0,0);}
.m61_c00477{transform:matrix(0.339836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339836,0.000000,0.000000,0.250000,0,0);}
.m95_c00477{transform:matrix(0.340699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340699,0.000000,0.000000,0.250000,0,0);}
.m5f_c00477{transform:matrix(0.342744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342744,0.000000,0.000000,0.250000,0,0);}
.m39_c00477{transform:matrix(0.344516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344516,0.000000,0.000000,0.250000,0,0);}
.m78_c00477{transform:matrix(0.346595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346595,0.000000,0.000000,0.250000,0,0);}
.m92_c00477{transform:matrix(0.347350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347350,0.000000,0.000000,0.250000,0,0);}
.m8d_c00477{transform:matrix(0.349011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349011,0.000000,0.000000,0.250000,0,0);}
.mcd_c00477{transform:matrix(0.356405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356405,0.000000,0.000000,0.250000,0,0);}
.mbb_c00477{transform:matrix(0.357696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357696,0.000000,0.000000,0.250000,0,0);}
.mbf_c00477{transform:matrix(0.361546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361546,0.000000,0.000000,0.250000,0,0);}
.m7c_c00477{transform:matrix(0.364195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364195,0.000000,0.000000,0.250000,0,0);}
.mc6_c00477{transform:matrix(0.365389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365389,0.000000,0.000000,0.250000,0,0);}
.mb7_c00477{transform:matrix(0.370070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370070,0.000000,0.000000,0.250000,0,0);}
.m80_c00477{transform:matrix(0.375943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375943,0.000000,0.000000,0.250000,0,0);}
.mc2_c00477{transform:matrix(0.401331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401331,0.000000,0.000000,0.250000,0,0);}
.v0_c00477{vertical-align:0.000000px;}
.ls4_c00477{letter-spacing:-2.813580px;}
.ls7_c00477{letter-spacing:-2.403601px;}
.ls12_c00477{letter-spacing:-2.390850px;}
.lsa_c00477{letter-spacing:-1.929312px;}
.ls10_c00477{letter-spacing:-1.422868px;}
.ls9_c00477{letter-spacing:-0.257242px;}
.ls1_c00477{letter-spacing:0.000000px;}
.lsb_c00477{letter-spacing:0.369785px;}
.ls19_c00477{letter-spacing:1.800691px;}
.lsd_c00477{letter-spacing:1.910700px;}
.ls17_c00477{letter-spacing:2.178000px;}
.lse_c00477{letter-spacing:3.326400px;}
.ls1b_c00477{letter-spacing:3.366000px;}
.ls14_c00477{letter-spacing:3.405610px;}
.lsf_c00477{letter-spacing:3.425400px;}
.ls11_c00477{letter-spacing:3.564000px;}
.ls1c_c00477{letter-spacing:3.623400px;}
.ls5_c00477{letter-spacing:3.643200px;}
.ls16_c00477{letter-spacing:3.682810px;}
.ls0_c00477{letter-spacing:3.746081px;}
.ls1a_c00477{letter-spacing:3.781810px;}
.ls6_c00477{letter-spacing:3.920400px;}
.ls3_c00477{letter-spacing:4.019400px;}
.ls8_c00477{letter-spacing:4.039200px;}
.ls2_c00477{letter-spacing:4.158000px;}
.ls15_c00477{letter-spacing:54.172998px;}
.lsc_c00477{letter-spacing:57.024198px;}
.ls13_c00477{letter-spacing:61.300998px;}
.ls18_c00477{letter-spacing:67.003200px;}
.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;}
._1_c00477{width:31.957596px;}
._0_c00477{width:38.808000px;}
._2_c00477{width:74.804281px;}
.fc0_c00477{color:transparent;}
.fs0_c00477{font-size:22.176000px;}
.fs4_c00477{font-size:28.314000px;}
.fs1_c00477{font-size:32.472000px;}
.fs17_c00477{font-size:33.264000px;}
.fs9_c00477{font-size:34.650000px;}
.fsf_c00477{font-size:38.214000px;}
.fs2_c00477{font-size:39.600000px;}
.fs19_c00477{font-size:43.560000px;}
.fs16_c00477{font-size:54.172998px;}
.fse_c00477{font-size:57.024198px;}
.fs13_c00477{font-size:61.300998px;}
.fs15_c00477{font-size:66.330000px;}
.fs10_c00477{font-size:66.528000px;}
.fs1a_c00477{font-size:67.003200px;}
.fs1d_c00477{font-size:67.320000px;}
.fs14_c00477{font-size:68.112198px;}
.fs12_c00477{font-size:68.310000px;}
.fsb_c00477{font-size:68.508000px;}
.fs8_c00477{font-size:70.884000px;}
.fs11_c00477{font-size:71.280000px;}
.fs1e_c00477{font-size:72.468000px;}
.fs6_c00477{font-size:72.864000px;}
.fs18_c00477{font-size:73.656198px;}
.fsd_c00477{font-size:74.844000px;}
.fs1c_c00477{font-size:75.636198px;}
.fs7_c00477{font-size:78.408000px;}
.fs5_c00477{font-size:80.388000px;}
.fsa_c00477{font-size:80.784000px;}
.fs1b_c00477{font-size:81.576198px;}
.fs3_c00477{font-size:83.160000px;}
.fsc_c00477{font-size:84.348000px;}
.y0_c00477{bottom:0.000000px;}
.y1_c00477{bottom:76.500000px;}
.y24_c00477{bottom:80.809785px;}
.y23_c00477{bottom:118.949535px;}
.y22_c00477{bottom:152.094735px;}
.y21_c00477{bottom:184.527135px;}
.y20_c00477{bottom:216.598185px;}
.y1e_c00477{bottom:249.035535px;}
.y1f_c00477{bottom:253.663785px;}
.y1d_c00477{bottom:280.393785px;}
.y1c_c00477{bottom:313.543935px;}
.y1b_c00477{bottom:337.774185px;}
.y1a_c00477{bottom:344.550735px;}
.y19_c00477{bottom:376.626735px;}
.y18_c00477{bottom:407.633535px;}
.y17_c00477{bottom:439.709535px;}
.y16_c00477{bottom:471.785535px;}
.y15_c00477{bottom:502.792335px;}
.y14_c00477{bottom:535.224735px;}
.y2_c00477{bottom:546.985935px;}
.y13_c00477{bottom:550.901385px;}
.y12_c00477{bottom:566.587935px;}
.y11_c00477{bottom:597.951135px;}
.yf_c00477{bottom:661.390335px;}
.y10_c00477{bottom:666.374985px;}
.ye_c00477{bottom:692.753535px;}
.yd_c00477{bottom:724.468185px;}
.yc_c00477{bottom:756.187785px;}
.yb_c00477{bottom:787.194585px;}
.ya_c00477{bottom:819.275535px;}
.y9_c00477{bottom:850.990185px;}
.y8_c00477{bottom:882.714735px;}
.y7_c00477{bottom:915.147135px;}
.y6_c00477{bottom:960.053535px;}
.y5_c00477{bottom:1044.871785px;}
.y4_c00477{bottom:1097.618985px;}
.y3_c00477{bottom:1104.034185px;}
.h2_c00477{height:23.128875px;}
.h6_c00477{height:29.530617px;}
.h3_c00477{height:33.867281px;}
.h19_c00477{height:34.693313px;}
.h18_c00477{height:36.079217px;}
.ha_c00477{height:36.138867px;}
.hf_c00477{height:37.978116px;}
.h10_c00477{height:39.856008px;}
.h15_c00477{height:40.826465px;}
.h4_c00477{height:41.301563px;}
.h1b_c00477{height:42.751758px;}
.h1c_c00477{height:44.624131px;}
.h14_c00477{height:67.042529px;}
.h17_c00477{height:69.180117px;}
.h11_c00477{height:69.386625px;}
.h1f_c00477{height:70.212656px;}
.h16_c00477{height:71.038894px;}
.h20_c00477{height:71.123379px;}
.hc_c00477{height:71.451703px;}
.h8_c00477{height:71.512031px;}
.h12_c00477{height:73.455293px;}
.h1e_c00477{height:74.232792px;}
.h13_c00477{height:74.342813px;}
.h1a_c00477{height:76.821113px;}
.h9_c00477{height:76.953164px;}
.h7_c00477{height:78.896426px;}
.hb_c00477{height:79.285078px;}
.h1d_c00477{height:80.062577px;}
.hd_c00477{height:81.016031px;}
.h5_c00477{height:81.616992px;}
.he_c00477{height:82.782949px;}
.h1_c00477{height:1110.000000px;}
.h0_c00477{height:1263.000000px;}
.w1_c00477{width:760.500000px;}
.w0_c00477{width:892.500000px;}
.x0_c00477{left:0.000000px;}
.x2_c00477{left:24.656835px;}
.x1_c00477{left:66.000000px;}
.x46_c00477{left:87.071385px;}
.x23_c00477{left:88.298985px;}
.x8_c00477{left:89.387985px;}
.x12_c00477{left:90.452235px;}
.x7a_c00477{left:91.768935px;}
.x5e_c00477{left:119.850285px;}
.x66_c00477{left:121.087785px;}
.x9_c00477{left:122.147085px;}
.x52_c00477{left:123.379635px;}
.x76_c00477{left:131.606535px;}
.x24_c00477{left:132.660885px;}
.x70_c00477{left:134.180535px;}
.x4d_c00477{left:143.362785px;}
.x13_c00477{left:154.980435px;}
.x67_c00477{left:165.543735px;}
.x77_c00477{left:167.414835px;}
.x1c_c00477{left:176.181285px;}
.x35_c00477{left:177.304935px;}
.x4e_c00477{left:186.150585px;}
.x2e_c00477{left:188.125635px;}
.xa_c00477{left:198.278085px;}
.x14_c00477{left:200.114535px;}
.x25_c00477{left:210.207585px;}
.x4f_c00477{left:221.567835px;}
.x15_c00477{left:231.759885px;}
.x64_c00477{left:232.883535px;}
.x53_c00477{left:243.243885px;}
.x4c_c00477{left:245.827785px;}
.x26_c00477{left:253.544835px;}
.x1d_c00477{left:255.099135px;}
.x47_c00477{left:264.954585px;}
.x36_c00477{left:267.568185px;}
.x5a_c00477{left:276.869235px;}
.x37_c00477{left:278.591835px;}
.xb_c00477{left:288.605685px;}
.x73_c00477{left:297.738435px;}
.x3f_c00477{left:299.282835px;}
.x68_c00477{left:309.593685px;}
.x38_c00477{left:311.187585px;}
.x69_c00477{left:320.117385px;}
.xc_c00477{left:322.374585px;}
.x48_c00477{left:333.452685px;}
.x5f_c00477{left:343.115085px;}
.x2f_c00477{left:344.159535px;}
.x39_c00477{left:353.287335px;}
.x40_c00477{left:354.544635px;}
.xd_c00477{left:355.569285px;}
.x16_c00477{left:356.871135px;}
.x49_c00477{left:364.385235px;}
.x74_c00477{left:365.390085px;}
.x58_c00477{left:376.626585px;}
.x3a_c00477{left:377.666085px;}
.x27_c00477{left:378.967935px;}
.x30_c00477{left:397.847235px;}
.x1e_c00477{left:399.109485px;}
.x71_c00477{left:408.890685px;}
.x41_c00477{left:410.291535px;}
.x28_c00477{left:412.271535px;}
.x59_c00477{left:420.117285px;}
.x3b_c00477{left:422.513085px;}
.x31_c00477{left:431.898285px;}
.x1f_c00477{left:433.289235px;}
.x6e_c00477{left:443.308035px;}
.x4a_c00477{left:444.332685px;}
.x17_c00477{left:453.816885px;}
.x54_c00477{left:455.044485px;}
.xe_c00477{left:456.643335px;}
.x6d_c00477{left:463.340685px;}
.x60_c00477{left:464.984085px;}
.x42_c00477{left:466.474035px;}
.x5b_c00477{left:467.884785px;}
.x6f_c00477{left:474.849435px;}
.x18_c00477{left:475.903785px;}
.x29_c00477{left:477.418485px;}
.x3c_c00477{left:487.145235px;}
.x50_c00477{left:498.158985px;}
.x61_c00477{left:499.213335px;}
.x4b_c00477{left:508.682685px;}
.x65_c00477{left:510.182535px;}
.x78_c00477{left:519.547935px;}
.xf_c00477{left:532.323885px;}
.x32_c00477{left:542.515935px;}
.x79_c00477{left:553.079235px;}
.x55_c00477{left:557.133285px;}
.x10_c00477{left:565.152285px;}
.x75_c00477{left:574.621635px;}
.x3d_c00477{left:575.700735px;}
.x20_c00477{left:581.556585px;}
.x2a_c00477{left:587.536185px;}
.x51_c00477{left:597.941085px;}
.x21_c00477{left:599.772585px;}
.x5c_c00477{left:608.638035px;}
.x43_c00477{left:610.271535px;}
.x2b_c00477{left:618.825135px;}
.x62_c00477{left:620.087385px;}
.x19_c00477{left:630.774435px;}
.x6a_c00477{left:640.956585px;}
.x44_c00477{left:643.317735px;}
.x33_c00477{left:651.970335px;}
.x63_c00477{left:654.331485px;}
.x1a_c00477{left:663.533535px;}
.x3e_c00477{left:664.860135px;}
.x11_c00477{left:665.973885px;}
.x22_c00477{left:675.463035px;}
.x6b_c00477{left:676.957935px;}
.x45_c00477{left:686.348085px;}
.x56_c00477{left:687.437085px;}
.x7b_c00477{left:689.342835px;}
.x2c_c00477{left:692.901885px;}
.x3_c00477{left:695.020485px;}
.x4_c00477{left:697.738035px;}
.x5_c00477{left:699.831885px;}
.x57_c00477{left:708.434985px;}
.x1b_c00477{left:710.697135px;}
.x5d_c00477{left:718.622085px;}
.x34_c00477{left:720.245685px;}
.x6_c00477{left:722.700885px;}
.x6c_c00477{left:729.789285px;}
.x72_c00477{left:731.501985px;}
.x7_c00477{left:738.793335px;}
.x2d_c00477{left:743.109735px;}
@media print{
.v0_c00477{vertical-align:0.000000pt;}
.ls4_c00477{letter-spacing:-2.500960pt;}
.ls7_c00477{letter-spacing:-2.136534pt;}
.ls12_c00477{letter-spacing:-2.125200pt;}
.lsa_c00477{letter-spacing:-1.714944pt;}
.ls10_c00477{letter-spacing:-1.264771pt;}
.ls9_c00477{letter-spacing:-0.228659pt;}
.ls1_c00477{letter-spacing:0.000000pt;}
.lsb_c00477{letter-spacing:0.328698pt;}
.ls19_c00477{letter-spacing:1.600614pt;}
.lsd_c00477{letter-spacing:1.698400pt;}
.ls17_c00477{letter-spacing:1.936000pt;}
.lse_c00477{letter-spacing:2.956800pt;}
.ls1b_c00477{letter-spacing:2.992000pt;}
.ls14_c00477{letter-spacing:3.027209pt;}
.lsf_c00477{letter-spacing:3.044800pt;}
.ls11_c00477{letter-spacing:3.168000pt;}
.ls1c_c00477{letter-spacing:3.220800pt;}
.ls5_c00477{letter-spacing:3.238400pt;}
.ls16_c00477{letter-spacing:3.273609pt;}
.ls0_c00477{letter-spacing:3.329850pt;}
.ls1a_c00477{letter-spacing:3.361609pt;}
.ls6_c00477{letter-spacing:3.484800pt;}
.ls3_c00477{letter-spacing:3.572800pt;}
.ls8_c00477{letter-spacing:3.590400pt;}
.ls2_c00477{letter-spacing:3.696000pt;}
.ls15_c00477{letter-spacing:48.153776pt;}
.lsc_c00477{letter-spacing:50.688176pt;}
.ls13_c00477{letter-spacing:54.489776pt;}
.ls18_c00477{letter-spacing:59.558400pt;}
.ws0_c00477{word-spacing:0.000000pt;}
._1_c00477{width:28.406752pt;}
._0_c00477{width:34.496000pt;}
._2_c00477{width:66.492694pt;}
.fs0_c00477{font-size:19.712000pt;}
.fs4_c00477{font-size:25.168000pt;}
.fs1_c00477{font-size:28.864000pt;}
.fs17_c00477{font-size:29.568000pt;}
.fs9_c00477{font-size:30.800000pt;}
.fsf_c00477{font-size:33.968000pt;}
.fs2_c00477{font-size:35.200000pt;}
.fs19_c00477{font-size:38.720000pt;}
.fs16_c00477{font-size:48.153776pt;}
.fse_c00477{font-size:50.688176pt;}
.fs13_c00477{font-size:54.489776pt;}
.fs15_c00477{font-size:58.960000pt;}
.fs10_c00477{font-size:59.136000pt;}
.fs1a_c00477{font-size:59.558400pt;}
.fs1d_c00477{font-size:59.840000pt;}
.fs14_c00477{font-size:60.544176pt;}
.fs12_c00477{font-size:60.720000pt;}
.fsb_c00477{font-size:60.896000pt;}
.fs8_c00477{font-size:63.008000pt;}
.fs11_c00477{font-size:63.360000pt;}
.fs1e_c00477{font-size:64.416000pt;}
.fs6_c00477{font-size:64.768000pt;}
.fs18_c00477{font-size:65.472176pt;}
.fsd_c00477{font-size:66.528000pt;}
.fs1c_c00477{font-size:67.232176pt;}
.fs7_c00477{font-size:69.696000pt;}
.fs5_c00477{font-size:71.456000pt;}
.fsa_c00477{font-size:71.808000pt;}
.fs1b_c00477{font-size:72.512176pt;}
.fs3_c00477{font-size:73.920000pt;}
.fsc_c00477{font-size:74.976000pt;}
.y0_c00477{bottom:0.000000pt;}
.y1_c00477{bottom:68.000000pt;}
.y24_c00477{bottom:71.830920pt;}
.y23_c00477{bottom:105.732920pt;}
.y22_c00477{bottom:135.195320pt;}
.y21_c00477{bottom:164.024120pt;}
.y20_c00477{bottom:192.531720pt;}
.y1e_c00477{bottom:221.364920pt;}
.y1f_c00477{bottom:225.478920pt;}
.y1d_c00477{bottom:249.238920pt;}
.y1c_c00477{bottom:278.705720pt;}
.y1b_c00477{bottom:300.243720pt;}
.y1a_c00477{bottom:306.267320pt;}
.y19_c00477{bottom:334.779320pt;}
.y18_c00477{bottom:362.340920pt;}
.y17_c00477{bottom:390.852920pt;}
.y16_c00477{bottom:419.364920pt;}
.y15_c00477{bottom:446.926520pt;}
.y14_c00477{bottom:475.755320pt;}
.y2_c00477{bottom:486.209720pt;}
.y13_c00477{bottom:489.690120pt;}
.y12_c00477{bottom:503.633720pt;}
.y11_c00477{bottom:531.512120pt;}
.yf_c00477{bottom:587.902520pt;}
.y10_c00477{bottom:592.333320pt;}
.ye_c00477{bottom:615.780920pt;}
.yd_c00477{bottom:643.971720pt;}
.yc_c00477{bottom:672.166920pt;}
.yb_c00477{bottom:699.728520pt;}
.ya_c00477{bottom:728.244920pt;}
.y9_c00477{bottom:756.435720pt;}
.y8_c00477{bottom:784.635320pt;}
.y7_c00477{bottom:813.464120pt;}
.y6_c00477{bottom:853.380920pt;}
.y5_c00477{bottom:928.774920pt;}
.y4_c00477{bottom:975.661320pt;}
.y3_c00477{bottom:981.363720pt;}
.h2_c00477{height:20.559000pt;}
.h6_c00477{height:26.249438pt;}
.h3_c00477{height:30.104250pt;}
.h19_c00477{height:30.838500pt;}
.h18_c00477{height:32.070415pt;}
.ha_c00477{height:32.123438pt;}
.hf_c00477{height:33.758325pt;}
.h10_c00477{height:35.427563pt;}
.h15_c00477{height:36.290191pt;}
.h4_c00477{height:36.712500pt;}
.h1b_c00477{height:38.001563pt;}
.h1c_c00477{height:39.665894pt;}
.h14_c00477{height:59.593359pt;}
.h17_c00477{height:61.493438pt;}
.h11_c00477{height:61.677000pt;}
.h1f_c00477{height:62.411250pt;}
.h16_c00477{height:63.145684pt;}
.h20_c00477{height:63.220781pt;}
.hc_c00477{height:63.512625pt;}
.h8_c00477{height:63.566250pt;}
.h12_c00477{height:65.293594pt;}
.h1e_c00477{height:65.984704pt;}
.h13_c00477{height:66.082500pt;}
.h1a_c00477{height:68.285434pt;}
.h9_c00477{height:68.402813pt;}
.h7_c00477{height:70.130156pt;}
.hb_c00477{height:70.475625pt;}
.h1d_c00477{height:71.166735pt;}
.hd_c00477{height:72.014250pt;}
.h5_c00477{height:72.548438pt;}
.he_c00477{height:73.584844pt;}
.h1_c00477{height:986.666667pt;}
.h0_c00477{height:1122.666667pt;}
.w1_c00477{width:676.000000pt;}
.w0_c00477{width:793.333333pt;}
.x0_c00477{left:0.000000pt;}
.x2_c00477{left:21.917187pt;}
.x1_c00477{left:58.666667pt;}
.x46_c00477{left:77.396787pt;}
.x23_c00477{left:78.487987pt;}
.x8_c00477{left:79.455987pt;}
.x12_c00477{left:80.401987pt;}
.x7a_c00477{left:81.572387pt;}
.x5e_c00477{left:106.533587pt;}
.x66_c00477{left:107.633587pt;}
.x9_c00477{left:108.575187pt;}
.x52_c00477{left:109.670787pt;}
.x76_c00477{left:116.983587pt;}
.x24_c00477{left:117.920787pt;}
.x70_c00477{left:119.271587pt;}
.x4d_c00477{left:127.433587pt;}
.x13_c00477{left:137.760387pt;}
.x67_c00477{left:147.149987pt;}
.x77_c00477{left:148.813187pt;}
.x1c_c00477{left:156.605587pt;}
.x35_c00477{left:157.604387pt;}
.x4e_c00477{left:165.467187pt;}
.x2e_c00477{left:167.222787pt;}
.xa_c00477{left:176.247187pt;}
.x14_c00477{left:177.879587pt;}
.x25_c00477{left:186.851187pt;}
.x4f_c00477{left:196.949187pt;}
.x15_c00477{left:206.008787pt;}
.x64_c00477{left:207.007587pt;}
.x53_c00477{left:216.216787pt;}
.x4c_c00477{left:218.513587pt;}
.x26_c00477{left:225.373187pt;}
.x1d_c00477{left:226.754787pt;}
.x47_c00477{left:235.515187pt;}
.x36_c00477{left:237.838387pt;}
.x5a_c00477{left:246.105987pt;}
.x37_c00477{left:247.637187pt;}
.xb_c00477{left:256.538387pt;}
.x73_c00477{left:264.656387pt;}
.x3f_c00477{left:266.029187pt;}
.x68_c00477{left:275.194387pt;}
.x38_c00477{left:276.611187pt;}
.x69_c00477{left:284.548787pt;}
.xc_c00477{left:286.555187pt;}
.x48_c00477{left:296.402387pt;}
.x5f_c00477{left:304.991187pt;}
.x2f_c00477{left:305.919587pt;}
.x39_c00477{left:314.033187pt;}
.x40_c00477{left:315.150787pt;}
.xd_c00477{left:316.061587pt;}
.x16_c00477{left:317.218787pt;}
.x49_c00477{left:323.897987pt;}
.x74_c00477{left:324.791187pt;}
.x58_c00477{left:334.779187pt;}
.x3a_c00477{left:335.703187pt;}
.x27_c00477{left:336.860387pt;}
.x30_c00477{left:353.641987pt;}
.x1e_c00477{left:354.763987pt;}
.x71_c00477{left:363.458387pt;}
.x41_c00477{left:364.703587pt;}
.x28_c00477{left:366.463587pt;}
.x59_c00477{left:373.437587pt;}
.x3b_c00477{left:375.567187pt;}
.x31_c00477{left:383.909587pt;}
.x1f_c00477{left:385.145987pt;}
.x6e_c00477{left:394.051587pt;}
.x4a_c00477{left:394.962387pt;}
.x17_c00477{left:403.392787pt;}
.x54_c00477{left:404.483987pt;}
.xe_c00477{left:405.905187pt;}
.x6d_c00477{left:411.858387pt;}
.x60_c00477{left:413.319187pt;}
.x42_c00477{left:414.643587pt;}
.x5b_c00477{left:415.897587pt;}
.x6f_c00477{left:422.088387pt;}
.x18_c00477{left:423.025587pt;}
.x29_c00477{left:424.371987pt;}
.x3c_c00477{left:433.017987pt;}
.x50_c00477{left:442.807987pt;}
.x61_c00477{left:443.745187pt;}
.x4b_c00477{left:452.162387pt;}
.x65_c00477{left:453.495587pt;}
.x78_c00477{left:461.820387pt;}
.xf_c00477{left:473.176787pt;}
.x32_c00477{left:482.236387pt;}
.x79_c00477{left:491.625987pt;}
.x55_c00477{left:495.229587pt;}
.x10_c00477{left:502.357587pt;}
.x75_c00477{left:510.774787pt;}
.x3d_c00477{left:511.733987pt;}
.x20_c00477{left:516.939187pt;}
.x2a_c00477{left:522.254387pt;}
.x51_c00477{left:531.503187pt;}
.x21_c00477{left:533.131187pt;}
.x5c_c00477{left:541.011587pt;}
.x43_c00477{left:542.463587pt;}
.x2b_c00477{left:550.066787pt;}
.x62_c00477{left:551.188787pt;}
.x19_c00477{left:560.688387pt;}
.x6a_c00477{left:569.739187pt;}
.x44_c00477{left:571.837987pt;}
.x33_c00477{left:579.529187pt;}
.x63_c00477{left:581.627987pt;}
.x1a_c00477{left:589.807587pt;}
.x3e_c00477{left:590.986787pt;}
.x11_c00477{left:591.976787pt;}
.x22_c00477{left:600.411587pt;}
.x6b_c00477{left:601.740387pt;}
.x45_c00477{left:610.087187pt;}
.x56_c00477{left:611.055187pt;}
.x7b_c00477{left:612.749187pt;}
.x2c_c00477{left:615.912787pt;}
.x3_c00477{left:617.795987pt;}
.x4_c00477{left:620.211587pt;}
.x5_c00477{left:622.072787pt;}
.x57_c00477{left:629.719987pt;}
.x1b_c00477{left:631.730787pt;}
.x5d_c00477{left:638.775187pt;}
.x34_c00477{left:640.218387pt;}
.x6_c00477{left:642.400787pt;}
.x6c_c00477{left:648.701587pt;}
.x72_c00477{left:650.223987pt;}
.x7_c00477{left:656.705187pt;}
.x2d_c00477{left:660.541987pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_96d65bcd646f9ec654020df5.woff2')format("woff");}.ff1_c00478{font-family:ff1_c00478;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00478;src:url('chunks/assets/font_2b0673232752a268a44deade.woff2')format("woff");}.ff2_c00478{font-family:ff2_c00478;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00478;src:url('chunks/assets/font_3fa788010ce71e4e3a6296c0.woff2')format("woff");}.ff3_c00478{font-family:ff3_c00478;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00478;src:url('chunks/assets/font_f770050701552bbb30d18438.woff2')format("woff");}.ff4_c00478{font-family:ff4_c00478;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m88_c00478{transform:matrix(0.012196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012196,0.000000,0.000000,0.250000,0,0);}
.mb5_c00478{transform:matrix(0.017046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017046,0.000000,0.000000,0.250000,0,0);}
.m87_c00478{transform:matrix(0.077236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077236,0.000000,0.000000,0.250000,0,0);}
.m13_c00478{transform:matrix(0.088069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088069,0.000000,0.000000,0.250000,0,0);}
.m1d_c00478{transform:matrix(0.088217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088217,0.000000,0.000000,0.250000,0,0);}
.mb6_c00478{transform:matrix(0.090910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090910,0.000000,0.000000,0.250000,0,0);}
.m8e_c00478{transform:matrix(0.103659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103659,0.000000,0.000000,0.250000,0,0);}
.m8d_c00478{transform:matrix(0.107723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107723,0.000000,0.000000,0.250000,0,0);}
.m1b_c00478{transform:matrix(0.118490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118490,0.000000,0.000000,0.250000,0,0);}
.m17_c00478{transform:matrix(0.120659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120659,0.000000,0.000000,0.250000,0,0);}
.m14_c00478{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);}
.m1c_c00478{transform:matrix(0.126071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126071,0.000000,0.000000,0.250000,0,0);}
.m5f_c00478{transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);}
.m96_c00478{transform:matrix(0.136069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136069,0.000000,0.000000,0.250000,0,0);}
.m85_c00478{transform:matrix(0.143359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143359,0.000000,0.000000,0.250000,0,0);}
.mb0_c00478{transform:matrix(0.150468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150468,0.000000,0.000000,0.250000,0,0);}
.m15_c00478{transform:matrix(0.157468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157468,0.000000,0.000000,0.250000,0,0);}
.m72_c00478{transform:matrix(0.163691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163691,0.000000,0.000000,0.250000,0,0);}
.m90_c00478{transform:matrix(0.164130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164130,0.000000,0.000000,0.250000,0,0);}
.m94_c00478{transform:matrix(0.164733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164733,0.000000,0.000000,0.250000,0,0);}
.maf_c00478{transform:matrix(0.167497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167497,0.000000,0.000000,0.250000,0,0);}
.m41_c00478{transform:matrix(0.167930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167930,0.000000,0.000000,0.250000,0,0);}
.m89_c00478{transform:matrix(0.168699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168699,0.000000,0.000000,0.250000,0,0);}
.mb4_c00478{transform:matrix(0.172079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172079,0.000000,0.000000,0.250000,0,0);}
.m8a_c00478{transform:matrix(0.172633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172633,0.000000,0.000000,0.250000,0,0);}
.m91_c00478{transform:matrix(0.179347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179347,0.000000,0.000000,0.250000,0,0);}
.m8f_c00478{transform:matrix(0.180895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180895,0.000000,0.000000,0.250000,0,0);}
.mb3_c00478{transform:matrix(0.209304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209304,0.000000,0.000000,0.250000,0,0);}
.m16_c00478{transform:matrix(0.211562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211562,0.000000,0.000000,0.250000,0,0);}
.m8b_c00478{transform:matrix(0.215108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215108,0.000000,0.000000,0.250000,0,0);}
.m93_c00478{transform:matrix(0.217294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217294,0.000000,0.000000,0.250000,0,0);}
.m8c_c00478{transform:matrix(0.218908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218908,0.000000,0.000000,0.250000,0,0);}
.m18_c00478{transform:matrix(0.220364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220364,0.000000,0.000000,0.250000,0,0);}
.m9a_c00478{transform:matrix(0.221063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221063,0.000000,0.000000,0.250000,0,0);}
.mb2_c00478{transform:matrix(0.221416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221416,0.000000,0.000000,0.250000,0,0);}
.m43_c00478{transform:matrix(0.226080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226080,0.000000,0.000000,0.250000,0,0);}
.m2f_c00478{transform:matrix(0.229447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229447,0.000000,0.000000,0.250000,0,0);}
.m92_c00478{transform:matrix(0.236407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236407,0.000000,0.000000,0.250000,0,0);}
.m86_c00478{transform:matrix(0.244964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244964,0.000000,0.000000,0.250000,0,0);}
.m0_c00478{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m36_c00478{transform:matrix(0.250444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250444,0.000000,0.000000,0.250000,0,0);}
.m67_c00478{transform:matrix(0.250825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250825,0.000000,0.000000,0.250000,0,0);}
.m30_c00478{transform:matrix(0.251773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251773,0.000000,0.000000,0.250000,0,0);}
.ma_c00478{transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);}
.me_c00478{transform:matrix(0.253283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253283,0.000000,0.000000,0.250000,0,0);}
.m11_c00478{transform:matrix(0.253471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253471,0.000000,0.000000,0.250000,0,0);}
.m37_c00478{transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);}
.m3b_c00478{transform:matrix(0.254614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254614,0.000000,0.000000,0.250000,0,0);}
.m99_c00478{transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);}
.m84_c00478{transform:matrix(0.255953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255953,0.000000,0.000000,0.250000,0,0);}
.m29_c00478{transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);}
.m62_c00478{transform:matrix(0.256637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256637,0.000000,0.000000,0.250000,0,0);}
.m12_c00478{transform:matrix(0.256783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256783,0.000000,0.000000,0.250000,0,0);}
.m3a_c00478{transform:matrix(0.256967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256967,0.000000,0.000000,0.250000,0,0);}
.m98_c00478{transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);}
.ma7_c00478{transform:matrix(0.258291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258291,0.000000,0.000000,0.250000,0,0);}
.ma9_c00478{transform:matrix(0.259376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259376,0.000000,0.000000,0.250000,0,0);}
.m5_c00478{transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);}
.m22_c00478{transform:matrix(0.262049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262049,0.000000,0.000000,0.250000,0,0);}
.m45_c00478{transform:matrix(0.262285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262285,0.000000,0.000000,0.250000,0,0);}
.m44_c00478{transform:matrix(0.263924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263924,0.000000,0.000000,0.250000,0,0);}
.m2a_c00478{transform:matrix(0.264852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264852,0.000000,0.000000,0.250000,0,0);}
.m3_c00478{transform:matrix(0.267754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267754,0.000000,0.000000,0.250000,0,0);}
.m50_c00478{transform:matrix(0.269224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269224,0.000000,0.000000,0.250000,0,0);}
.mad_c00478{transform:matrix(0.269672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269672,0.000000,0.000000,0.250000,0,0);}
.m77_c00478{transform:matrix(0.270559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270559,0.000000,0.000000,0.250000,0,0);}
.m4b_c00478{transform:matrix(0.270612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270612,0.000000,0.000000,0.250000,0,0);}
.m9c_c00478{transform:matrix(0.271023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271023,0.000000,0.000000,0.250000,0,0);}
.m60_c00478{transform:matrix(0.273178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273178,0.000000,0.000000,0.250000,0,0);}
.m3c_c00478{transform:matrix(0.273613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273613,0.000000,0.000000,0.250000,0,0);}
.m53_c00478{transform:matrix(0.274065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274065,0.000000,0.000000,0.250000,0,0);}
.m49_c00478{transform:matrix(0.274486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274486,0.000000,0.000000,0.250000,0,0);}
.m32_c00478{transform:matrix(0.274598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274598,0.000000,0.000000,0.250000,0,0);}
.mb_c00478{transform:matrix(0.274991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274991,0.000000,0.000000,0.250000,0,0);}
.m2e_c00478{transform:matrix(0.275103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275103,0.000000,0.000000,0.250000,0,0);}
.m4c_c00478{transform:matrix(0.275298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275298,0.000000,0.000000,0.250000,0,0);}
.m6a_c00478{transform:matrix(0.275369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275369,0.000000,0.000000,0.250000,0,0);}
.mab_c00478{transform:matrix(0.275433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275433,0.000000,0.000000,0.250000,0,0);}
.m4d_c00478{transform:matrix(0.275646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275646,0.000000,0.000000,0.250000,0,0);}
.m4_c00478{transform:matrix(0.275744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275744,0.000000,0.000000,0.250000,0,0);}
.m6b_c00478{transform:matrix(0.275785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275785,0.000000,0.000000,0.250000,0,0);}
.m23_c00478{transform:matrix(0.275943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275943,0.000000,0.000000,0.250000,0,0);}
.m74_c00478{transform:matrix(0.276127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276127,0.000000,0.000000,0.250000,0,0);}
.m1f_c00478{transform:matrix(0.276721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276721,0.000000,0.000000,0.250000,0,0);}
.m33_c00478{transform:matrix(0.276774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276774,0.000000,0.000000,0.250000,0,0);}
.m3d_c00478{transform:matrix(0.277151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277151,0.000000,0.000000,0.250000,0,0);}
.m34_c00478{transform:matrix(0.277419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277419,0.000000,0.000000,0.250000,0,0);}
.m5e_c00478{transform:matrix(0.277826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277826,0.000000,0.000000,0.250000,0,0);}
.m35_c00478{transform:matrix(0.277934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277934,0.000000,0.000000,0.250000,0,0);}
.m61_c00478{transform:matrix(0.278275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278275,0.000000,0.000000,0.250000,0,0);}
.mae_c00478{transform:matrix(0.278303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278303,0.000000,0.000000,0.250000,0,0);}
.m6f_c00478{transform:matrix(0.278394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278394,0.000000,0.000000,0.250000,0,0);}
.m73_c00478{transform:matrix(0.278714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278714,0.000000,0.000000,0.250000,0,0);}
.m9e_c00478{transform:matrix(0.278869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278869,0.000000,0.000000,0.250000,0,0);}
.m26_c00478{transform:matrix(0.279011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279011,0.000000,0.000000,0.250000,0,0);}
.m21_c00478{transform:matrix(0.279067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279067,0.000000,0.000000,0.250000,0,0);}
.m5b_c00478{transform:matrix(0.279195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279195,0.000000,0.000000,0.250000,0,0);}
.ma6_c00478{transform:matrix(0.280376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280376,0.000000,0.000000,0.250000,0,0);}
.m42_c00478{transform:matrix(0.280502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280502,0.000000,0.000000,0.250000,0,0);}
.m31_c00478{transform:matrix(0.280531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280531,0.000000,0.000000,0.250000,0,0);}
.m1_c00478{transform:matrix(0.280888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280888,0.000000,0.000000,0.250000,0,0);}
.m58_c00478{transform:matrix(0.281334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281334,0.000000,0.000000,0.250000,0,0);}
.m83_c00478{transform:matrix(0.281373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281373,0.000000,0.000000,0.250000,0,0);}
.m4f_c00478{transform:matrix(0.282164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282164,0.000000,0.000000,0.250000,0,0);}
.m54_c00478{transform:matrix(0.282621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282621,0.000000,0.000000,0.250000,0,0);}
.m7b_c00478{transform:matrix(0.282677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282677,0.000000,0.000000,0.250000,0,0);}
.m71_c00478{transform:matrix(0.283331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283331,0.000000,0.000000,0.250000,0,0);}
.m1e_c00478{transform:matrix(0.284101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284101,0.000000,0.000000,0.250000,0,0);}
.m9b_c00478{transform:matrix(0.284266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284266,0.000000,0.000000,0.250000,0,0);}
.maa_c00478{transform:matrix(0.285264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285264,0.000000,0.000000,0.250000,0,0);}
.m64_c00478{transform:matrix(0.285932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285932,0.000000,0.000000,0.250000,0,0);}
.mb1_c00478{transform:matrix(0.286426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286426,0.000000,0.000000,0.250000,0,0);}
.m78_c00478{transform:matrix(0.286940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286940,0.000000,0.000000,0.250000,0,0);}
.m3e_c00478{transform:matrix(0.287498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287498,0.000000,0.000000,0.250000,0,0);}
.m40_c00478{transform:matrix(0.288814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288814,0.000000,0.000000,0.250000,0,0);}
.m80_c00478{transform:matrix(0.289159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289159,0.000000,0.000000,0.250000,0,0);}
.m4e_c00478{transform:matrix(0.289264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289264,0.000000,0.000000,0.250000,0,0);}
.m19_c00478{transform:matrix(0.289280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289280,0.000000,0.000000,0.250000,0,0);}
.ma0_c00478{transform:matrix(0.290305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290305,0.000000,0.000000,0.250000,0,0);}
.mac_c00478{transform:matrix(0.290521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290521,0.000000,0.000000,0.250000,0,0);}
.m10_c00478{transform:matrix(0.291234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291234,0.000000,0.000000,0.250000,0,0);}
.m7c_c00478{transform:matrix(0.291264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291264,0.000000,0.000000,0.250000,0,0);}
.m52_c00478{transform:matrix(0.292308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292308,0.000000,0.000000,0.250000,0,0);}
.m59_c00478{transform:matrix(0.293105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293105,0.000000,0.000000,0.250000,0,0);}
.m9f_c00478{transform:matrix(0.293189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293189,0.000000,0.000000,0.250000,0,0);}
.m56_c00478{transform:matrix(0.293578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293578,0.000000,0.000000,0.250000,0,0);}
.m46_c00478{transform:matrix(0.293763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293763,0.000000,0.000000,0.250000,0,0);}
.ma4_c00478{transform:matrix(0.295851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295851,0.000000,0.000000,0.250000,0,0);}
.m6e_c00478{transform:matrix(0.296022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296022,0.000000,0.000000,0.250000,0,0);}
.m7a_c00478{transform:matrix(0.296351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296351,0.000000,0.000000,0.250000,0,0);}
.m20_c00478{transform:matrix(0.298039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298039,0.000000,0.000000,0.250000,0,0);}
.m5c_c00478{transform:matrix(0.298801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298801,0.000000,0.000000,0.250000,0,0);}
.m51_c00478{transform:matrix(0.299926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299926,0.000000,0.000000,0.250000,0,0);}
.m38_c00478{transform:matrix(0.300807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300807,0.000000,0.000000,0.250000,0,0);}
.mf_c00478{transform:matrix(0.301326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301326,0.000000,0.000000,0.250000,0,0);}
.m69_c00478{transform:matrix(0.301488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301488,0.000000,0.000000,0.250000,0,0);}
.m7d_c00478{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m97_c00478{transform:matrix(0.302561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302561,0.000000,0.000000,0.250000,0,0);}
.ma1_c00478{transform:matrix(0.302664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302664,0.000000,0.000000,0.250000,0,0);}
.m2b_c00478{transform:matrix(0.303858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303858,0.000000,0.000000,0.250000,0,0);}
.m9_c00478{transform:matrix(0.304325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304325,0.000000,0.000000,0.250000,0,0);}
.m5a_c00478{transform:matrix(0.304375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304375,0.000000,0.000000,0.250000,0,0);}
.m5d_c00478{transform:matrix(0.305070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305070,0.000000,0.000000,0.250000,0,0);}
.m7_c00478{transform:matrix(0.306313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306313,0.000000,0.000000,0.250000,0,0);}
.m8_c00478{transform:matrix(0.306359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306359,0.000000,0.000000,0.250000,0,0);}
.m9d_c00478{transform:matrix(0.306455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306455,0.000000,0.000000,0.250000,0,0);}
.m6c_c00478{transform:matrix(0.306770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306770,0.000000,0.000000,0.250000,0,0);}
.mc_c00478{transform:matrix(0.307010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307010,0.000000,0.000000,0.250000,0,0);}
.m1a_c00478{transform:matrix(0.307278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307278,0.000000,0.000000,0.250000,0,0);}
.m7e_c00478{transform:matrix(0.308192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308192,0.000000,0.000000,0.250000,0,0);}
.m95_c00478{transform:matrix(0.308636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308636,0.000000,0.000000,0.250000,0,0);}
.m4a_c00478{transform:matrix(0.309014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309014,0.000000,0.000000,0.250000,0,0);}
.m55_c00478{transform:matrix(0.309145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309145,0.000000,0.000000,0.250000,0,0);}
.m66_c00478{transform:matrix(0.309363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309363,0.000000,0.000000,0.250000,0,0);}
.m25_c00478{transform:matrix(0.310855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310855,0.000000,0.000000,0.250000,0,0);}
.m70_c00478{transform:matrix(0.310907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310907,0.000000,0.000000,0.250000,0,0);}
.m48_c00478{transform:matrix(0.310974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310974,0.000000,0.000000,0.250000,0,0);}
.m63_c00478{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00478{transform:matrix(0.312161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312161,0.000000,0.000000,0.250000,0,0);}
.m68_c00478{transform:matrix(0.312509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312509,0.000000,0.000000,0.250000,0,0);}
.m76_c00478{transform:matrix(0.316391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316391,0.000000,0.000000,0.250000,0,0);}
.m6d_c00478{transform:matrix(0.317866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317866,0.000000,0.000000,0.250000,0,0);}
.m28_c00478{transform:matrix(0.318852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318852,0.000000,0.000000,0.250000,0,0);}
.m6_c00478{transform:matrix(0.320282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320282,0.000000,0.000000,0.250000,0,0);}
.m2c_c00478{transform:matrix(0.320392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320392,0.000000,0.000000,0.250000,0,0);}
.m47_c00478{transform:matrix(0.320429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320429,0.000000,0.000000,0.250000,0,0);}
.ma5_c00478{transform:matrix(0.321825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321825,0.000000,0.000000,0.250000,0,0);}
.ma3_c00478{transform:matrix(0.324880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324880,0.000000,0.000000,0.250000,0,0);}
.m39_c00478{transform:matrix(0.326556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326556,0.000000,0.000000,0.250000,0,0);}
.ma8_c00478{transform:matrix(0.326893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326893,0.000000,0.000000,0.250000,0,0);}
.m27_c00478{transform:matrix(0.327397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327397,0.000000,0.000000,0.250000,0,0);}
.m65_c00478{transform:matrix(0.330408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330408,0.000000,0.000000,0.250000,0,0);}
.m2d_c00478{transform:matrix(0.330548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330548,0.000000,0.000000,0.250000,0,0);}
.m75_c00478{transform:matrix(0.331929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331929,0.000000,0.000000,0.250000,0,0);}
.m2_c00478{transform:matrix(0.333249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333249,0.000000,0.000000,0.250000,0,0);}
.m79_c00478{transform:matrix(0.335117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335117,0.000000,0.000000,0.250000,0,0);}
.ma2_c00478{transform:matrix(0.335736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335736,0.000000,0.000000,0.250000,0,0);}
.m24_c00478{transform:matrix(0.341545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341545,0.000000,0.000000,0.250000,0,0);}
.m7f_c00478{transform:matrix(0.349926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349926,0.000000,0.000000,0.250000,0,0);}
.m81_c00478{transform:matrix(0.352272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352272,0.000000,0.000000,0.250000,0,0);}
.m82_c00478{transform:matrix(0.355410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355410,0.000000,0.000000,0.250000,0,0);}
.md_c00478{transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);}
.m57_c00478{transform:matrix(0.369351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369351,0.000000,0.000000,0.250000,0,0);}
.v1_c00478{vertical-align:-5.710320px;}
.v0_c00478{vertical-align:0.000000px;}
.ls12_c00478{letter-spacing:-3.714480px;}
.ls2f_c00478{letter-spacing:-3.326400px;}
.ls27_c00478{letter-spacing:-3.284827px;}
.ls17_c00478{letter-spacing:-2.855167px;}
.ls25_c00478{letter-spacing:-2.737350px;}
.lsd_c00478{letter-spacing:-2.647267px;}
.ls2d_c00478{letter-spacing:-2.460150px;}
.ls1b_c00478{letter-spacing:-2.439128px;}
.ls11_c00478{letter-spacing:-2.425500px;}
.ls28_c00478{letter-spacing:-2.023567px;}
.ls10_c00478{letter-spacing:-1.968120px;}
.lse_c00478{letter-spacing:-0.367093px;}
.ls19_c00478{letter-spacing:-0.130522px;}
.ls7_c00478{letter-spacing:0.000000px;}
.ls0_c00478{letter-spacing:0.040788px;}
.ls20_c00478{letter-spacing:0.130522px;}
.ls3_c00478{letter-spacing:0.489457px;}
.ls2e_c00478{letter-spacing:0.723930px;}
.lsc_c00478{letter-spacing:0.742343px;}
.ls18_c00478{letter-spacing:0.840235px;}
.ls1d_c00478{letter-spacing:1.688627px;}
.ls2_c00478{letter-spacing:1.762046px;}
.ls2a_c00478{letter-spacing:2.218873px;}
.ls5_c00478{letter-spacing:2.602281px;}
.ls1a_c00478{letter-spacing:2.708330px;}
.ls1f_c00478{letter-spacing:2.855167px;}
.ls2c_c00478{letter-spacing:2.920428px;}
.ls1e_c00478{letter-spacing:2.953058px;}
.ls13_c00478{letter-spacing:3.091738px;}
.lsa_c00478{letter-spacing:3.326400px;}
.ls16_c00478{letter-spacing:3.336466px;}
.ls22_c00478{letter-spacing:3.573037px;}
.ls24_c00478{letter-spacing:3.605668px;}
.ls23_c00478{letter-spacing:3.623400px;}
.ls4_c00478{letter-spacing:3.638298px;}
.ls15_c00478{letter-spacing:3.643200px;}
.ls14_c00478{letter-spacing:3.653110px;}
.ls8_c00478{letter-spacing:3.821400px;}
.lsb_c00478{letter-spacing:3.861000px;}
.ls2b_c00478{letter-spacing:3.960000px;}
.ls9_c00478{letter-spacing:4.078810px;}
.ls6_c00478{letter-spacing:16.070384px;}
.ls1c_c00478{letter-spacing:29.937798px;}
.ls26_c00478{letter-spacing:58.449798px;}
.ls21_c00478{letter-spacing:59.875398px;}
.ls1_c00478{letter-spacing:62.726400px;}
.ls29_c00478{letter-spacing:65.577798px;}
.lsf_c00478{letter-spacing:68.428998px;}
.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:-125.452800px;}
.ws1_c00478{word-spacing:-22.996330px;}
.ws2_c00478{word-spacing:-20.394050px;}
.ws3_c00478{word-spacing:-17.954921px;}
.ws4_c00478{word-spacing:0.000000px;}
._1_c00478{margin-left:-55.657800px;}
._b_c00478{margin-left:-14.194180px;}
._3_c00478{margin-left:-12.935378px;}
._2_c00478{margin-left:-1.817244px;}
._c_c00478{width:4.278731px;}
._a_c00478{width:5.906077px;}
._d_c00478{width:10.907671px;}
._f_c00478{width:14.871951px;}
._7_c00478{width:20.084144px;}
._e_c00478{width:22.123346px;}
._8_c00478{width:27.083177px;}
._10_c00478{width:28.877974px;}
._6_c00478{width:30.326038px;}
._0_c00478{width:31.570010px;}
._9_c00478{width:34.098851px;}
._5_c00478{width:40.995900px;}
._4_c00478{width:44.712756px;}
.fc0_c00478{color:transparent;}
.fs1_c00478{font-size:22.572000px;}
.fs11_c00478{font-size:29.937798px;}
.fs5_c00478{font-size:33.660000px;}
.fs10_c00478{font-size:34.848000px;}
.fs9_c00478{font-size:39.798000px;}
.fs0_c00478{font-size:45.144000px;}
.fs17_c00478{font-size:57.816198px;}
.fs15_c00478{font-size:58.449798px;}
.fs12_c00478{font-size:59.875398px;}
.fs7_c00478{font-size:62.726400px;}
.fs18_c00478{font-size:65.577798px;}
.fs4_c00478{font-size:66.528000px;}
.fsb_c00478{font-size:68.428998px;}
.fsc_c00478{font-size:69.300000px;}
.fs8_c00478{font-size:69.894000px;}
.fs1a_c00478{font-size:70.290000px;}
.fs1b_c00478{font-size:71.676198px;}
.fs13_c00478{font-size:72.468000px;}
.fsf_c00478{font-size:72.864000px;}
.fse_c00478{font-size:73.062198px;}
.fsa_c00478{font-size:75.636198px;}
.fs2_c00478{font-size:76.428000px;}
.fs6_c00478{font-size:77.220000px;}
.fs14_c00478{font-size:78.210000px;}
.fs19_c00478{font-size:79.200000px;}
.fs3_c00478{font-size:81.576198px;}
.fs16_c00478{font-size:93.852198px;}
.fs1c_c00478{font-size:95.040000px;}
.fsd_c00478{font-size:106.128000px;}
.y0_c00478{bottom:0.000000px;}
.y3_c00478{bottom:26.993385px;}
.y1_c00478{bottom:76.500000px;}
.y1f_c00478{bottom:148.887135px;}
.y1e_c00478{bottom:182.388735px;}
.y1d_c00478{bottom:215.528985px;}
.y1c_c00478{bottom:247.966335px;}
.y2_c00478{bottom:255.450735px;}
.y1b_c00478{bottom:310.687785px;}
.y19_c00478{bottom:342.412335px;}
.y1a_c00478{bottom:343.832985px;}
.y18_c00478{bottom:375.557535px;}
.y16_c00478{bottom:406.911974px;}
.y17_c00478{bottom:406.920735px;}
.y15_c00478{bottom:438.991785px;}
.y14_c00478{bottom:470.003535px;}
.y13_c00478{bottom:493.525935px;}
.y12_c00478{bottom:501.723135px;}
.y11_c00478{bottom:520.255935px;}
.y10_c00478{bottom:532.373535px;}
.yf_c00478{bottom:564.805935px;}
.ye_c00478{bottom:596.520585px;}
.yd_c00478{bottom:628.245135px;}
.yc_c00478{bottom:660.316185px;}
.yb_c00478{bottom:691.679385px;}
.ya_c00478{bottom:723.403935px;}
.y9_c00478{bottom:752.985135px;}
.y8_c00478{bottom:786.838185px;}
.y7_c00478{bottom:858.835935px;}
.y6_c00478{bottom:881.289135px;}
.y5_c00478{bottom:913.721535px;}
.y4_c00478{bottom:1043.802585px;}
.h12_c00478{height:19.938573px;}
.h3_c00478{height:23.541891px;}
.h7_c00478{height:33.035449px;}
.h11_c00478{height:34.201406px;}
.h16_c00478{height:38.927565px;}
.h13_c00478{height:39.877015px;}
.h9_c00478{height:41.775782px;}
.h19_c00478{height:43.674813px;}
.hc_c00478{height:45.573713px;}
.h2_c00478{height:47.083781px;}
.h18_c00478{height:56.743437px;}
.h6_c00478{height:65.293594px;}
.ha_c00478{height:68.597139px;}
.h1c_c00478{height:70.346269px;}
.h14_c00478{height:71.123379px;}
.h10_c00478{height:71.512031px;}
.hf_c00478{height:71.706552px;}
.hd_c00478{height:72.277734px;}
.h1b_c00478{height:73.310273px;}
.h4_c00478{height:75.009902px;}
.h8_c00478{height:75.787207px;}
.h1a_c00478{height:77.730469px;}
.hb_c00478{height:78.886191px;}
.h5_c00478{height:80.062577px;}
.h15_c00478{height:81.570586px;}
.h17_c00478{height:92.110800px;}
.h1d_c00478{height:93.276563px;}
.he_c00478{height:104.158828px;}
.h1_c00478{height:1110.000000px;}
.h0_c00478{height:1263.000000px;}
.w1_c00478{width:760.500000px;}
.w0_c00478{width:892.500000px;}
.x0_c00478{left:0.000000px;}
.x3_c00478{left:27.097185px;}
.x2_c00478{left:46.204185px;}
.x1_c00478{left:66.000000px;}
.x1d_c00478{left:86.323935px;}
.x36_c00478{left:88.204935px;}
.x5_c00478{left:89.279085px;}
.x3c_c00478{left:121.790685px;}
.x43_c00478{left:132.834135px;}
.x6_c00478{left:143.917185px;}
.x57_c00478{left:154.970535px;}
.x7_c00478{left:166.627785px;}
.x6c_c00478{left:175.859535px;}
.x72_c00478{left:177.735585px;}
.x3d_c00478{left:186.853485px;}
.x2e_c00478{left:188.090985px;}
.x37_c00478{left:197.896935px;}
.x8_c00478{left:199.045335px;}
.x11_c00478{left:209.643285px;}
.x44_c00478{left:220.003635px;}
.x2f_c00478{left:221.914335px;}
.x51_c00478{left:231.764835px;}
.x63_c00478{left:233.007285px;}
.x15_c00478{left:242.026185px;}
.x73_c00478{left:244.421985px;}
.x1e_c00478{left:252.861735px;}
.x25_c00478{left:254.406135px;}
.x6f_c00478{left:255.445635px;}
.x1f_c00478{left:263.825985px;}
.x45_c00478{left:265.449585px;}
.x4c_c00478{left:266.484135px;}
.x30_c00478{left:275.953485px;}
.x16_c00478{left:277.141485px;}
.x12_c00478{left:287.917635px;}
.x70_c00478{left:288.971985px;}
.x20_c00478{left:290.387685px;}
.x74_c00478{left:294.654585px;}
.x48_c00478{left:300.020385px;}
.x46_c00478{left:309.143235px;}
.x17_c00478{left:310.242135px;}
.x71_c00478{left:311.385585px;}
.x75_c00478{left:317.226585px;}
.x3e_c00478{left:320.161935px;}
.x9_c00478{left:321.389535px;}
.x61_c00478{left:322.443885px;}
.x6d_c00478{left:341.501385px;}
.x5c_c00478{left:342.778485px;}
.x38_c00478{left:343.827885px;}
.x64_c00478{left:353.732835px;}
.xa_c00478{left:354.836685px;}
.x26_c00478{left:366.305835px;}
.x6e_c00478{left:377.814585px;}
.x5d_c00478{left:386.793885px;}
.xb_c00478{left:388.016535px;}
.x18_c00478{left:399.317385px;}
.x65_c00478{left:400.807335px;}
.x19_c00478{left:411.078585px;}
.x31_c00478{left:420.641985px;}
.x1a_c00478{left:421.775535px;}
.x13_c00478{left:431.348835px;}
.x27_c00478{left:432.487335px;}
.x4d_c00478{left:433.907985px;}
.x21_c00478{left:442.753635px;}
.x5f_c00478{left:444.347535px;}
.xc_c00478{left:454.697985px;}
.x1b_c00478{left:463.825785px;}
.x3f_c00478{left:467.459085px;}
.xd_c00478{left:474.458385px;}
.x32_c00478{left:476.453235px;}
.x52_c00478{left:477.492735px;}
.x66_c00478{left:486.991785px;}
.x39_c00478{left:499.218285px;}
.x49_c00478{left:500.455785px;}
.xe_c00478{left:509.227185px;}
.x53_c00478{left:510.271635px;}
.x58_c00478{left:520.102335px;}
.x28_c00478{left:521.324985px;}
.x40_c00478{left:531.319035px;}
.x59_c00478{left:532.338735px;}
.x1c_c00478{left:541.421985px;}
.x4e_c00478{left:543.045585px;}
.x47_c00478{left:552.891135px;}
.x33_c00478{left:554.287035px;}
.x29_c00478{left:555.385935px;}
.x41_c00478{left:564.484035px;}
.x5a_c00478{left:566.459085px;}
.x22_c00478{left:575.022585px;}
.x54_c00478{left:576.532335px;}
.x60_c00478{left:586.377885px;}
.x2a_c00478{left:587.447085px;}
.x76_c00478{left:596.263035px;}
.xf_c00478{left:597.629235px;}
.x77_c00478{left:599.277585px;}
.x23_c00478{left:607.529235px;}
.x42_c00478{left:609.335985px;}
.x24_c00478{left:619.572585px;}
.x4f_c00478{left:620.735835px;}
.x3a_c00478{left:629.873535px;}
.x10_c00478{left:631.096185px;}
.x67_c00478{left:637.798485px;}
.x2b_c00478{left:642.179235px;}
.x34_c00478{left:651.604035px;}
.x62_c00478{left:653.524635px;}
.x5e_c00478{left:655.286835px;}
.x68_c00478{left:658.509285px;}
.x3b_c00478{left:663.003885px;}
.x5b_c00478{left:664.231485px;}
.x69_c00478{left:665.909535px;}
.x2c_c00478{left:675.651135px;}
.x35_c00478{left:686.541135px;}
.x4a_c00478{left:688.075635px;}
.x6a_c00478{left:692.995935px;}
.x4_c00478{left:696.297585px;}
.x6b_c00478{left:698.341935px;}
.x50_c00478{left:700.034835px;}
.x56_c00478{left:701.549535px;}
.x14_c00478{left:703.905735px;}
.x2d_c00478{left:708.766635px;}
.x55_c00478{left:719.829885px;}
.x4b_c00478{left:731.234685px;}
@media print{
.v1_c00478{vertical-align:-5.075840pt;}
.v0_c00478{vertical-align:0.000000pt;}
.ls12_c00478{letter-spacing:-3.301760pt;}
.ls2f_c00478{letter-spacing:-2.956800pt;}
.ls27_c00478{letter-spacing:-2.919846pt;}
.ls17_c00478{letter-spacing:-2.537926pt;}
.ls25_c00478{letter-spacing:-2.433200pt;}
.lsd_c00478{letter-spacing:-2.353126pt;}
.ls2d_c00478{letter-spacing:-2.186800pt;}
.ls1b_c00478{letter-spacing:-2.168114pt;}
.ls11_c00478{letter-spacing:-2.156000pt;}
.ls28_c00478{letter-spacing:-1.798726pt;}
.ls10_c00478{letter-spacing:-1.749440pt;}
.lse_c00478{letter-spacing:-0.326305pt;}
.ls19_c00478{letter-spacing:-0.116019pt;}
.ls7_c00478{letter-spacing:0.000000pt;}
.ls0_c00478{letter-spacing:0.036256pt;}
.ls20_c00478{letter-spacing:0.116019pt;}
.ls3_c00478{letter-spacing:0.435073pt;}
.ls2e_c00478{letter-spacing:0.643493pt;}
.lsc_c00478{letter-spacing:0.659861pt;}
.ls18_c00478{letter-spacing:0.746875pt;}
.ls1d_c00478{letter-spacing:1.501002pt;}
.ls2_c00478{letter-spacing:1.566263pt;}
.ls2a_c00478{letter-spacing:1.972331pt;}
.ls5_c00478{letter-spacing:2.313138pt;}
.ls1a_c00478{letter-spacing:2.407404pt;}
.ls1f_c00478{letter-spacing:2.537926pt;}
.ls2c_c00478{letter-spacing:2.595936pt;}
.ls1e_c00478{letter-spacing:2.624941pt;}
.ls13_c00478{letter-spacing:2.748211pt;}
.lsa_c00478{letter-spacing:2.956800pt;}
.ls16_c00478{letter-spacing:2.965748pt;}
.ls22_c00478{letter-spacing:3.176033pt;}
.ls24_c00478{letter-spacing:3.205038pt;}
.ls23_c00478{letter-spacing:3.220800pt;}
.ls4_c00478{letter-spacing:3.234043pt;}
.ls15_c00478{letter-spacing:3.238400pt;}
.ls14_c00478{letter-spacing:3.247209pt;}
.ls8_c00478{letter-spacing:3.396800pt;}
.lsb_c00478{letter-spacing:3.432000pt;}
.ls2b_c00478{letter-spacing:3.520000pt;}
.ls9_c00478{letter-spacing:3.625609pt;}
.ls6_c00478{letter-spacing:14.284786pt;}
.ls1c_c00478{letter-spacing:26.611376pt;}
.ls26_c00478{letter-spacing:51.955376pt;}
.ls21_c00478{letter-spacing:53.222576pt;}
.ls1_c00478{letter-spacing:55.756800pt;}
.ls29_c00478{letter-spacing:58.291376pt;}
.lsf_c00478{letter-spacing:60.825776pt;}
.ws0_c00478{word-spacing:-111.513600pt;}
.ws1_c00478{word-spacing:-20.441182pt;}
.ws2_c00478{word-spacing:-18.128044pt;}
.ws3_c00478{word-spacing:-15.959930pt;}
.ws4_c00478{word-spacing:0.000000pt;}
._1_c00478{margin-left:-49.473600pt;}
._b_c00478{margin-left:-12.617049pt;}
._3_c00478{margin-left:-11.498114pt;}
._2_c00478{margin-left:-1.615328pt;}
._c_c00478{width:3.803316pt;}
._a_c00478{width:5.249846pt;}
._d_c00478{width:9.695708pt;}
._f_c00478{width:13.219512pt;}
._7_c00478{width:17.852573pt;}
._e_c00478{width:19.665197pt;}
._8_c00478{width:24.073935pt;}
._10_c00478{width:25.669310pt;}
._6_c00478{width:26.956478pt;}
._0_c00478{width:28.062231pt;}
._9_c00478{width:30.310089pt;}
._5_c00478{width:36.440800pt;}
._4_c00478{width:39.744672pt;}
.fs1_c00478{font-size:20.064000pt;}
.fs11_c00478{font-size:26.611376pt;}
.fs5_c00478{font-size:29.920000pt;}
.fs10_c00478{font-size:30.976000pt;}
.fs9_c00478{font-size:35.376000pt;}
.fs0_c00478{font-size:40.128000pt;}
.fs17_c00478{font-size:51.392176pt;}
.fs15_c00478{font-size:51.955376pt;}
.fs12_c00478{font-size:53.222576pt;}
.fs7_c00478{font-size:55.756800pt;}
.fs18_c00478{font-size:58.291376pt;}
.fs4_c00478{font-size:59.136000pt;}
.fsb_c00478{font-size:60.825776pt;}
.fsc_c00478{font-size:61.600000pt;}
.fs8_c00478{font-size:62.128000pt;}
.fs1a_c00478{font-size:62.480000pt;}
.fs1b_c00478{font-size:63.712176pt;}
.fs13_c00478{font-size:64.416000pt;}
.fsf_c00478{font-size:64.768000pt;}
.fse_c00478{font-size:64.944176pt;}
.fsa_c00478{font-size:67.232176pt;}
.fs2_c00478{font-size:67.936000pt;}
.fs6_c00478{font-size:68.640000pt;}
.fs14_c00478{font-size:69.520000pt;}
.fs19_c00478{font-size:70.400000pt;}
.fs3_c00478{font-size:72.512176pt;}
.fs16_c00478{font-size:83.424176pt;}
.fs1c_c00478{font-size:84.480000pt;}
.fsd_c00478{font-size:94.336000pt;}
.y0_c00478{bottom:0.000000pt;}
.y3_c00478{bottom:23.994120pt;}
.y1_c00478{bottom:68.000000pt;}
.y1f_c00478{bottom:132.344120pt;}
.y1e_c00478{bottom:162.123320pt;}
.y1d_c00478{bottom:191.581320pt;}
.y1c_c00478{bottom:220.414520pt;}
.y2_c00478{bottom:227.067320pt;}
.y1b_c00478{bottom:276.166920pt;}
.y19_c00478{bottom:304.366520pt;}
.y1a_c00478{bottom:305.629320pt;}
.y18_c00478{bottom:333.828920pt;}
.y16_c00478{bottom:361.699532pt;}
.y17_c00478{bottom:361.707320pt;}
.y15_c00478{bottom:390.214920pt;}
.y14_c00478{bottom:417.780920pt;}
.y13_c00478{bottom:438.689720pt;}
.y12_c00478{bottom:445.976120pt;}
.y11_c00478{bottom:462.449720pt;}
.y10_c00478{bottom:473.220920pt;}
.yf_c00478{bottom:502.049720pt;}
.ye_c00478{bottom:530.240520pt;}
.yd_c00478{bottom:558.440120pt;}
.yc_c00478{bottom:586.947720pt;}
.yb_c00478{bottom:614.826120pt;}
.ya_c00478{bottom:643.025720pt;}
.y9_c00478{bottom:669.320120pt;}
.y8_c00478{bottom:699.411720pt;}
.y7_c00478{bottom:763.409720pt;}
.y6_c00478{bottom:783.368120pt;}
.y5_c00478{bottom:812.196920pt;}
.y4_c00478{bottom:927.824520pt;}
.h12_c00478{height:17.723176pt;}
.h3_c00478{height:20.926125pt;}
.h7_c00478{height:29.364844pt;}
.h11_c00478{height:30.401250pt;}
.h16_c00478{height:34.602280pt;}
.h13_c00478{height:35.446236pt;}
.h9_c00478{height:37.134029pt;}
.h19_c00478{height:38.822056pt;}
.hc_c00478{height:40.509967pt;}
.h2_c00478{height:41.852250pt;}
.h18_c00478{height:50.438610pt;}
.h6_c00478{height:58.038750pt;}
.ha_c00478{height:60.975234pt;}
.h1c_c00478{height:62.530016pt;}
.h14_c00478{height:63.220781pt;}
.h10_c00478{height:63.566250pt;}
.hf_c00478{height:63.739157pt;}
.hd_c00478{height:64.246875pt;}
.h1b_c00478{height:65.164688pt;}
.h4_c00478{height:66.675469pt;}
.h8_c00478{height:67.366406pt;}
.h1a_c00478{height:69.093750pt;}
.hb_c00478{height:70.121059pt;}
.h5_c00478{height:71.166735pt;}
.h15_c00478{height:72.507188pt;}
.h17_c00478{height:81.876266pt;}
.h1d_c00478{height:82.912500pt;}
.he_c00478{height:92.585625pt;}
.h1_c00478{height:986.666667pt;}
.h0_c00478{height:1122.666667pt;}
.w1_c00478{width:676.000000pt;}
.w0_c00478{width:793.333333pt;}
.x0_c00478{left:0.000000pt;}
.x3_c00478{left:24.086387pt;}
.x2_c00478{left:41.070387pt;}
.x1_c00478{left:58.666667pt;}
.x1d_c00478{left:76.732387pt;}
.x36_c00478{left:78.404387pt;}
.x5_c00478{left:79.359187pt;}
.x3c_c00478{left:108.258387pt;}
.x43_c00478{left:118.074787pt;}
.x6_c00478{left:127.926387pt;}
.x57_c00478{left:137.751587pt;}
.x7_c00478{left:148.113587pt;}
.x6c_c00478{left:156.319587pt;}
.x72_c00478{left:157.987187pt;}
.x3d_c00478{left:166.091987pt;}
.x2e_c00478{left:167.191987pt;}
.x37_c00478{left:175.908387pt;}
.x8_c00478{left:176.929187pt;}
.x11_c00478{left:186.349587pt;}
.x44_c00478{left:195.558787pt;}
.x2f_c00478{left:197.257187pt;}
.x51_c00478{left:206.013187pt;}
.x63_c00478{left:207.117587pt;}
.x15_c00478{left:215.134387pt;}
.x73_c00478{left:217.263987pt;}
.x1e_c00478{left:224.765987pt;}
.x25_c00478{left:226.138787pt;}
.x6f_c00478{left:227.062787pt;}
.x1f_c00478{left:234.511987pt;}
.x45_c00478{left:235.955187pt;}
.x4c_c00478{left:236.874787pt;}
.x30_c00478{left:245.291987pt;}
.x16_c00478{left:246.347987pt;}
.x12_c00478{left:255.926787pt;}
.x70_c00478{left:256.863987pt;}
.x20_c00478{left:258.122387pt;}
.x74_c00478{left:261.915187pt;}
.x48_c00478{left:266.684787pt;}
.x46_c00478{left:274.793987pt;}
.x17_c00478{left:275.770787pt;}
.x71_c00478{left:276.787187pt;}
.x75_c00478{left:281.979187pt;}
.x3e_c00478{left:284.588387pt;}
.x9_c00478{left:285.679587pt;}
.x61_c00478{left:286.616787pt;}
.x6d_c00478{left:303.556787pt;}
.x5c_c00478{left:304.691987pt;}
.x38_c00478{left:305.624787pt;}
.x64_c00478{left:314.429187pt;}
.xa_c00478{left:315.410387pt;}
.x26_c00478{left:325.605187pt;}
.x6e_c00478{left:335.835187pt;}
.x5d_c00478{left:343.816787pt;}
.xb_c00478{left:344.903587pt;}
.x18_c00478{left:354.948787pt;}
.x65_c00478{left:356.273187pt;}
.x19_c00478{left:365.403187pt;}
.x31_c00478{left:373.903987pt;}
.x1a_c00478{left:374.911587pt;}
.x13_c00478{left:383.421187pt;}
.x27_c00478{left:384.433187pt;}
.x4d_c00478{left:385.695987pt;}
.x21_c00478{left:393.558787pt;}
.x5f_c00478{left:394.975587pt;}
.xc_c00478{left:404.175987pt;}
.x1b_c00478{left:412.289587pt;}
.x3f_c00478{left:415.519187pt;}
.xd_c00478{left:421.740787pt;}
.x32_c00478{left:423.513987pt;}
.x52_c00478{left:424.437987pt;}
.x66_c00478{left:432.881587pt;}
.x39_c00478{left:443.749587pt;}
.x49_c00478{left:444.849587pt;}
.xe_c00478{left:452.646387pt;}
.x53_c00478{left:453.574787pt;}
.x58_c00478{left:462.313187pt;}
.x28_c00478{left:463.399987pt;}
.x40_c00478{left:472.283587pt;}
.x59_c00478{left:473.189987pt;}
.x1c_c00478{left:481.263987pt;}
.x4e_c00478{left:482.707187pt;}
.x47_c00478{left:491.458787pt;}
.x33_c00478{left:492.699587pt;}
.x29_c00478{left:493.676387pt;}
.x41_c00478{left:501.763587pt;}
.x5a_c00478{left:503.519187pt;}
.x22_c00478{left:511.131187pt;}
.x54_c00478{left:512.473187pt;}
.x60_c00478{left:521.224787pt;}
.x2a_c00478{left:522.175187pt;}
.x76_c00478{left:530.011587pt;}
.xf_c00478{left:531.225987pt;}
.x77_c00478{left:532.691187pt;}
.x23_c00478{left:540.025987pt;}
.x42_c00478{left:541.631987pt;}
.x24_c00478{left:550.731187pt;}
.x4f_c00478{left:551.765187pt;}
.x3a_c00478{left:559.887587pt;}
.x10_c00478{left:560.974387pt;}
.x67_c00478{left:566.931987pt;}
.x2b_c00478{left:570.825987pt;}
.x34_c00478{left:579.203587pt;}
.x62_c00478{left:580.910787pt;}
.x5e_c00478{left:582.477187pt;}
.x68_c00478{left:585.341587pt;}
.x3b_c00478{left:589.336787pt;}
.x5b_c00478{left:590.427987pt;}
.x69_c00478{left:591.919587pt;}
.x2c_c00478{left:600.578787pt;}
.x35_c00478{left:610.258787pt;}
.x4a_c00478{left:611.622787pt;}
.x6a_c00478{left:615.996387pt;}
.x4_c00478{left:618.931187pt;}
.x6b_c00478{left:620.748387pt;}
.x50_c00478{left:622.253187pt;}
.x56_c00478{left:623.599587pt;}
.x14_c00478{left:625.693987pt;}
.x2d_c00478{left:630.014787pt;}
.x55_c00478{left:639.848787pt;}
.x4b_c00478{left:649.986387pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_583fe6393d2d37b637a221dd.woff2')format("woff");}.ff1_c00479{font-family:ff1_c00479;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00479;src:url('chunks/assets/font_47c2761c8358584217520e5a.woff2')format("woff");}.ff2_c00479{font-family:ff2_c00479;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00479;src:url('chunks/assets/font_21c7a0881df92c07a595b8ba.woff2')format("woff");}.ff3_c00479{font-family:ff3_c00479;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m99_c00479{transform:matrix(0.132577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132577,0.000000,0.000000,0.250000,0,0);}
.m6a_c00479{transform:matrix(0.152193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152193,0.000000,0.000000,0.250000,0,0);}
.maf_c00479{transform:matrix(0.155364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155364,0.000000,0.000000,0.250000,0,0);}
.m4_c00479{transform:matrix(0.188470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188470,0.000000,0.000000,0.250000,0,0);}
.m1e_c00479{transform:matrix(0.209877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209877,0.000000,0.000000,0.250000,0,0);}
.m11_c00479{transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);}
.m9e_c00479{transform:matrix(0.219612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219612,0.000000,0.000000,0.250000,0,0);}
.m53_c00479{transform:matrix(0.231929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231929,0.000000,0.000000,0.250000,0,0);}
.ma9_c00479{transform:matrix(0.234604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234604,0.000000,0.000000,0.250000,0,0);}
.m87_c00479{transform:matrix(0.242206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242206,0.000000,0.000000,0.250000,0,0);}
.m89_c00479{transform:matrix(0.246177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246177,0.000000,0.000000,0.250000,0,0);}
.m7f_c00479{transform:matrix(0.246974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246974,0.000000,0.000000,0.250000,0,0);}
.m48_c00479{transform:matrix(0.247185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247185,0.000000,0.000000,0.250000,0,0);}
.m0_c00479{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00479{transform:matrix(0.253817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253817,0.000000,0.000000,0.250000,0,0);}
.m60_c00479{transform:matrix(0.254565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254565,0.000000,0.000000,0.250000,0,0);}
.ma7_c00479{transform:matrix(0.260094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260094,0.000000,0.000000,0.250000,0,0);}
.mad_c00479{transform:matrix(0.261756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261756,0.000000,0.000000,0.250000,0,0);}
.m9c_c00479{transform:matrix(0.262479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262479,0.000000,0.000000,0.250000,0,0);}
.m4e_c00479{transform:matrix(0.263985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263985,0.000000,0.000000,0.250000,0,0);}
.m69_c00479{transform:matrix(0.265734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265734,0.000000,0.000000,0.250000,0,0);}
.m2_c00479{transform:matrix(0.266672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266672,0.000000,0.000000,0.250000,0,0);}
.m1c_c00479{transform:matrix(0.266768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266768,0.000000,0.000000,0.250000,0,0);}
.m21_c00479{transform:matrix(0.267152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267152,0.000000,0.000000,0.250000,0,0);}
.m1d_c00479{transform:matrix(0.267280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267280,0.000000,0.000000,0.250000,0,0);}
.m43_c00479{transform:matrix(0.267665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267665,0.000000,0.000000,0.250000,0,0);}
.m73_c00479{transform:matrix(0.268109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268109,0.000000,0.000000,0.250000,0,0);}
.m45_c00479{transform:matrix(0.268701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268701,0.000000,0.000000,0.250000,0,0);}
.m91_c00479{transform:matrix(0.268705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268705,0.000000,0.000000,0.250000,0,0);}
.m57_c00479{transform:matrix(0.269115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269115,0.000000,0.000000,0.250000,0,0);}
.m13_c00479{transform:matrix(0.270091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270091,0.000000,0.000000,0.250000,0,0);}
.mae_c00479{transform:matrix(0.270403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270403,0.000000,0.000000,0.250000,0,0);}
.mc_c00479{transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);}
.m51_c00479{transform:matrix(0.272173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272173,0.000000,0.000000,0.250000,0,0);}
.m78_c00479{transform:matrix(0.273180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273180,0.000000,0.000000,0.250000,0,0);}
.m77_c00479{transform:matrix(0.273184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273184,0.000000,0.000000,0.250000,0,0);}
.m22_c00479{transform:matrix(0.273254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273254,0.000000,0.000000,0.250000,0,0);}
.m5c_c00479{transform:matrix(0.273934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273934,0.000000,0.000000,0.250000,0,0);}
.m72_c00479{transform:matrix(0.274532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274532,0.000000,0.000000,0.250000,0,0);}
.m5f_c00479{transform:matrix(0.275231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275231,0.000000,0.000000,0.250000,0,0);}
.m9d_c00479{transform:matrix(0.275803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275803,0.000000,0.000000,0.250000,0,0);}
.m66_c00479{transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);}
.m40_c00479{transform:matrix(0.276729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276729,0.000000,0.000000,0.250000,0,0);}
.m54_c00479{transform:matrix(0.277012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277012,0.000000,0.000000,0.250000,0,0);}
.m39_c00479{transform:matrix(0.277424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277424,0.000000,0.000000,0.250000,0,0);}
.m83_c00479{transform:matrix(0.277969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277969,0.000000,0.000000,0.250000,0,0);}
.m8b_c00479{transform:matrix(0.278191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278191,0.000000,0.000000,0.250000,0,0);}
.ma0_c00479{transform:matrix(0.279165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279165,0.000000,0.000000,0.250000,0,0);}
.m4a_c00479{transform:matrix(0.279348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279348,0.000000,0.000000,0.250000,0,0);}
.m17_c00479{transform:matrix(0.279786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279786,0.000000,0.000000,0.250000,0,0);}
.m35_c00479{transform:matrix(0.281059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281059,0.000000,0.000000,0.250000,0,0);}
.m1_c00479{transform:matrix(0.281310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281310,0.000000,0.000000,0.250000,0,0);}
.m33_c00479{transform:matrix(0.281410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281410,0.000000,0.000000,0.250000,0,0);}
.m42_c00479{transform:matrix(0.283168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283168,0.000000,0.000000,0.250000,0,0);}
.m32_c00479{transform:matrix(0.284164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284164,0.000000,0.000000,0.250000,0,0);}
.me_c00479{transform:matrix(0.285128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285128,0.000000,0.000000,0.250000,0,0);}
.m2a_c00479{transform:matrix(0.285469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285469,0.000000,0.000000,0.250000,0,0);}
.m8_c00479{transform:matrix(0.285674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285674,0.000000,0.000000,0.250000,0,0);}
.m25_c00479{transform:matrix(0.285877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285877,0.000000,0.000000,0.250000,0,0);}
.m34_c00479{transform:matrix(0.286881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286881,0.000000,0.000000,0.250000,0,0);}
.m84_c00479{transform:matrix(0.288120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288120,0.000000,0.000000,0.250000,0,0);}
.m15_c00479{transform:matrix(0.288402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288402,0.000000,0.000000,0.250000,0,0);}
.m1a_c00479{transform:matrix(0.288812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288812,0.000000,0.000000,0.250000,0,0);}
.m19_c00479{transform:matrix(0.288904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288904,0.000000,0.000000,0.250000,0,0);}
.m2f_c00479{transform:matrix(0.288975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288975,0.000000,0.000000,0.250000,0,0);}
.m68_c00479{transform:matrix(0.289348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289348,0.000000,0.000000,0.250000,0,0);}
.ma5_c00479{transform:matrix(0.290391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290391,0.000000,0.000000,0.250000,0,0);}
.m29_c00479{transform:matrix(0.290651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290651,0.000000,0.000000,0.250000,0,0);}
.m80_c00479{transform:matrix(0.290964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290964,0.000000,0.000000,0.250000,0,0);}
.m59_c00479{transform:matrix(0.292969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292969,0.000000,0.000000,0.250000,0,0);}
.m2d_c00479{transform:matrix(0.293422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293422,0.000000,0.000000,0.250000,0,0);}
.m67_c00479{transform:matrix(0.294322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294322,0.000000,0.000000,0.250000,0,0);}
.m6e_c00479{transform:matrix(0.294538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294538,0.000000,0.000000,0.250000,0,0);}
.m3b_c00479{transform:matrix(0.294841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294841,0.000000,0.000000,0.250000,0,0);}
.mb_c00479{transform:matrix(0.294848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294848,0.000000,0.000000,0.250000,0,0);}
.m8f_c00479{transform:matrix(0.295026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295026,0.000000,0.000000,0.250000,0,0);}
.m94_c00479{transform:matrix(0.295211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295211,0.000000,0.000000,0.250000,0,0);}
.m7_c00479{transform:matrix(0.295448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295448,0.000000,0.000000,0.250000,0,0);}
.ma2_c00479{transform:matrix(0.295865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295865,0.000000,0.000000,0.250000,0,0);}
.m8e_c00479{transform:matrix(0.296230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296230,0.000000,0.000000,0.250000,0,0);}
.m97_c00479{transform:matrix(0.296892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296892,0.000000,0.000000,0.250000,0,0);}
.m82_c00479{transform:matrix(0.297537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297537,0.000000,0.000000,0.250000,0,0);}
.mab_c00479{transform:matrix(0.297622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297622,0.000000,0.000000,0.250000,0,0);}
.m58_c00479{transform:matrix(0.297661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297661,0.000000,0.000000,0.250000,0,0);}
.md_c00479{transform:matrix(0.297802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297802,0.000000,0.000000,0.250000,0,0);}
.ma1_c00479{transform:matrix(0.297842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297842,0.000000,0.000000,0.250000,0,0);}
.m8d_c00479{transform:matrix(0.298934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298934,0.000000,0.000000,0.250000,0,0);}
.m9f_c00479{transform:matrix(0.298946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298946,0.000000,0.000000,0.250000,0,0);}
.m6c_c00479{transform:matrix(0.299816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299816,0.000000,0.000000,0.250000,0,0);}
.m62_c00479{transform:matrix(0.300229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300229,0.000000,0.000000,0.250000,0,0);}
.m81_c00479{transform:matrix(0.300437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300437,0.000000,0.000000,0.250000,0,0);}
.m7b_c00479{transform:matrix(0.300640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300640,0.000000,0.000000,0.250000,0,0);}
.m2c_c00479{transform:matrix(0.300918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300918,0.000000,0.000000,0.250000,0,0);}
.m38_c00479{transform:matrix(0.301848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301848,0.000000,0.000000,0.250000,0,0);}
.m95_c00479{transform:matrix(0.302135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302135,0.000000,0.000000,0.250000,0,0);}
.m74_c00479{transform:matrix(0.303200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303200,0.000000,0.000000,0.250000,0,0);}
.m64_c00479{transform:matrix(0.303498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303498,0.000000,0.000000,0.250000,0,0);}
.m88_c00479{transform:matrix(0.304322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304322,0.000000,0.000000,0.250000,0,0);}
.m24_c00479{transform:matrix(0.304437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304437,0.000000,0.000000,0.250000,0,0);}
.m6f_c00479{transform:matrix(0.304966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304966,0.000000,0.000000,0.250000,0,0);}
.m20_c00479{transform:matrix(0.305038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305038,0.000000,0.000000,0.250000,0,0);}
.ma8_c00479{transform:matrix(0.305094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305094,0.000000,0.000000,0.250000,0,0);}
.m14_c00479{transform:matrix(0.305103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305103,0.000000,0.000000,0.250000,0,0);}
.m50_c00479{transform:matrix(0.305713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305713,0.000000,0.000000,0.250000,0,0);}
.m10_c00479{transform:matrix(0.306056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306056,0.000000,0.000000,0.250000,0,0);}
.m4f_c00479{transform:matrix(0.306410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306410,0.000000,0.000000,0.250000,0,0);}
.m26_c00479{transform:matrix(0.306648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306648,0.000000,0.000000,0.250000,0,0);}
.m3e_c00479{transform:matrix(0.307604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307604,0.000000,0.000000,0.250000,0,0);}
.ma6_c00479{transform:matrix(0.308688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308688,0.000000,0.000000,0.250000,0,0);}
.ma4_c00479{transform:matrix(0.308750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00479{transform:matrix(0.309635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309635,0.000000,0.000000,0.250000,0,0);}
.m71_c00479{transform:matrix(0.309986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309986,0.000000,0.000000,0.250000,0,0);}
.m65_c00479{transform:matrix(0.310242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310242,0.000000,0.000000,0.250000,0,0);}
.m47_c00479{transform:matrix(0.311070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311070,0.000000,0.000000,0.250000,0,0);}
.m6_c00479{transform:matrix(0.311532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311532,0.000000,0.000000,0.250000,0,0);}
.m5a_c00479{transform:matrix(0.313611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313611,0.000000,0.000000,0.250000,0,0);}
.m5_c00479{transform:matrix(0.314645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314645,0.000000,0.000000,0.250000,0,0);}
.m61_c00479{transform:matrix(0.314749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314749,0.000000,0.000000,0.250000,0,0);}
.maa_c00479{transform:matrix(0.315265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315265,0.000000,0.000000,0.250000,0,0);}
.m46_c00479{transform:matrix(0.315976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315976,0.000000,0.000000,0.250000,0,0);}
.m8c_c00479{transform:matrix(0.316875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316875,0.000000,0.000000,0.250000,0,0);}
.m30_c00479{transform:matrix(0.317541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317541,0.000000,0.000000,0.250000,0,0);}
.m86_c00479{transform:matrix(0.317550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317550,0.000000,0.000000,0.250000,0,0);}
.m92_c00479{transform:matrix(0.317644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317644,0.000000,0.000000,0.250000,0,0);}
.m31_c00479{transform:matrix(0.317898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317898,0.000000,0.000000,0.250000,0,0);}
.m1b_c00479{transform:matrix(0.318025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318025,0.000000,0.000000,0.250000,0,0);}
.m12_c00479{transform:matrix(0.318086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318086,0.000000,0.000000,0.250000,0,0);}
.ma3_c00479{transform:matrix(0.318103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318103,0.000000,0.000000,0.250000,0,0);}
.m75_c00479{transform:matrix(0.318209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318209,0.000000,0.000000,0.250000,0,0);}
.m5e_c00479{transform:matrix(0.318438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318438,0.000000,0.000000,0.250000,0,0);}
.m6d_c00479{transform:matrix(0.319687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319687,0.000000,0.000000,0.250000,0,0);}
.m52_c00479{transform:matrix(0.320196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320196,0.000000,0.000000,0.250000,0,0);}
.m56_c00479{transform:matrix(0.320589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320589,0.000000,0.000000,0.250000,0,0);}
.m7a_c00479{transform:matrix(0.320778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320778,0.000000,0.000000,0.250000,0,0);}
.m28_c00479{transform:matrix(0.320862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320862,0.000000,0.000000,0.250000,0,0);}
.m70_c00479{transform:matrix(0.321492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321492,0.000000,0.000000,0.250000,0,0);}
.mf_c00479{transform:matrix(0.321966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321966,0.000000,0.000000,0.250000,0,0);}
.m96_c00479{transform:matrix(0.323189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323189,0.000000,0.000000,0.250000,0,0);}
.m8a_c00479{transform:matrix(0.323953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323953,0.000000,0.000000,0.250000,0,0);}
.m4d_c00479{transform:matrix(0.324920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324920,0.000000,0.000000,0.250000,0,0);}
.m44_c00479{transform:matrix(0.325095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325095,0.000000,0.000000,0.250000,0,0);}
.m93_c00479{transform:matrix(0.325129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325129,0.000000,0.000000,0.250000,0,0);}
.m1f_c00479{transform:matrix(0.325789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325789,0.000000,0.000000,0.250000,0,0);}
.m37_c00479{transform:matrix(0.325910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325910,0.000000,0.000000,0.250000,0,0);}
.mac_c00479{transform:matrix(0.327467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327467,0.000000,0.000000,0.250000,0,0);}
.m4b_c00479{transform:matrix(0.328611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328611,0.000000,0.000000,0.250000,0,0);}
.m98_c00479{transform:matrix(0.328801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328801,0.000000,0.000000,0.250000,0,0);}
.m3a_c00479{transform:matrix(0.329698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329698,0.000000,0.000000,0.250000,0,0);}
.m5d_c00479{transform:matrix(0.329801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329801,0.000000,0.000000,0.250000,0,0);}
.m23_c00479{transform:matrix(0.335296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335296,0.000000,0.000000,0.250000,0,0);}
.m79_c00479{transform:matrix(0.336377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336377,0.000000,0.000000,0.250000,0,0);}
.m16_c00479{transform:matrix(0.336513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336513,0.000000,0.000000,0.250000,0,0);}
.m55_c00479{transform:matrix(0.337297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337297,0.000000,0.000000,0.250000,0,0);}
.m27_c00479{transform:matrix(0.337719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337719,0.000000,0.000000,0.250000,0,0);}
.m90_c00479{transform:matrix(0.340698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340698,0.000000,0.000000,0.250000,0,0);}
.m49_c00479{transform:matrix(0.341057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341057,0.000000,0.000000,0.250000,0,0);}
.m2e_c00479{transform:matrix(0.342552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342552,0.000000,0.000000,0.250000,0,0);}
.m9b_c00479{transform:matrix(0.342868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342868,0.000000,0.000000,0.250000,0,0);}
.m7e_c00479{transform:matrix(0.343636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343636,0.000000,0.000000,0.250000,0,0);}
.m3c_c00479{transform:matrix(0.344157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344157,0.000000,0.000000,0.250000,0,0);}
.m4c_c00479{transform:matrix(0.345519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345519,0.000000,0.000000,0.250000,0,0);}
.m36_c00479{transform:matrix(0.346297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346297,0.000000,0.000000,0.250000,0,0);}
.m2b_c00479{transform:matrix(0.347927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347927,0.000000,0.000000,0.250000,0,0);}
.m5b_c00479{transform:matrix(0.349884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349884,0.000000,0.000000,0.250000,0,0);}
.m3f_c00479{transform:matrix(0.350901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350901,0.000000,0.000000,0.250000,0,0);}
.ma_c00479{transform:matrix(0.353373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353373,0.000000,0.000000,0.250000,0,0);}
.m7c_c00479{transform:matrix(0.355741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355741,0.000000,0.000000,0.250000,0,0);}
.m7d_c00479{transform:matrix(0.357058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357058,0.000000,0.000000,0.250000,0,0);}
.m63_c00479{transform:matrix(0.365152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365152,0.000000,0.000000,0.250000,0,0);}
.m85_c00479{transform:matrix(0.365298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365298,0.000000,0.000000,0.250000,0,0);}
.m76_c00479{transform:matrix(0.366449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366449,0.000000,0.000000,0.250000,0,0);}
.m9a_c00479{transform:matrix(0.368423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368423,0.000000,0.000000,0.250000,0,0);}
.m18_c00479{transform:matrix(0.372638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372638,0.000000,0.000000,0.250000,0,0);}
.m41_c00479{transform:matrix(0.373448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373448,0.000000,0.000000,0.250000,0,0);}
.m9_c00479{transform:matrix(0.391270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391270,0.000000,0.000000,0.250000,0,0);}
.m3_c00479{transform:matrix(0.397481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397481,0.000000,0.000000,0.250000,0,0);}
.v0_c00479{vertical-align:0.000000px;}
.lsd_c00479{letter-spacing:-2.855167px;}
.ls12_c00479{letter-spacing:-2.716567px;}
.ls10_c00479{letter-spacing:-2.661127px;}
.ls1c_c00479{letter-spacing:-2.607904px;}
.ls16_c00479{letter-spacing:-2.439367px;}
.ls13_c00479{letter-spacing:-1.094864px;}
.lsc_c00479{letter-spacing:-0.048946px;}
.ls6_c00479{letter-spacing:0.000000px;}
.lsa_c00479{letter-spacing:0.261598px;}
.ls1_c00479{letter-spacing:0.334542px;}
.ls14_c00479{letter-spacing:0.790735px;}
.ls9_c00479{letter-spacing:0.821148px;}
.lsb_c00479{letter-spacing:0.861144px;}
.ls15_c00479{letter-spacing:1.269738px;}
.ls0_c00479{letter-spacing:1.741137px;}
.ls1d_c00479{letter-spacing:2.009700px;}
.ls1b_c00479{letter-spacing:2.663100px;}
.ls19_c00479{letter-spacing:2.691540px;}
.ls4_c00479{letter-spacing:2.701512px;}
.lse_c00479{letter-spacing:3.094510px;}
.ls17_c00479{letter-spacing:3.200956px;}
.ls18_c00479{letter-spacing:3.489878px;}
.ls2_c00479{letter-spacing:3.530261px;}
.lsf_c00479{letter-spacing:3.603926px;}
.ls3_c00479{letter-spacing:3.801610px;}
.ls11_c00479{letter-spacing:3.880810px;}
.ls8_c00479{letter-spacing:39.916800px;}
.ls7_c00479{letter-spacing:51.321798px;}
.ls5_c00479{letter-spacing:58.449798px;}
.ls1a_c00479{letter-spacing:62.726400px;}
.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:-19.342591px;}
.ws1_c00479{word-spacing:0.000000px;}
._5_c00479{margin-left:-8.218584px;}
._3_c00479{width:1.961689px;}
._2_c00479{width:13.097904px;}
._1_c00479{width:29.994706px;}
._4_c00479{width:34.974968px;}
._0_c00479{width:475.635600px;}
.fc0_c00479{color:transparent;}
.fs10_c00479{font-size:22.176000px;}
.fs5_c00479{font-size:33.660000px;}
.fs7_c00479{font-size:39.916800px;}
.fs11_c00479{font-size:40.194000px;}
.fs6_c00479{font-size:50.292000px;}
.fs4_c00479{font-size:51.321798px;}
.fs13_c00479{font-size:52.866198px;}
.fse_c00479{font-size:53.262000px;}
.fs3_c00479{font-size:58.449798px;}
.fsd_c00479{font-size:62.726400px;}
.fs9_c00479{font-size:65.736198px;}
.fsf_c00479{font-size:67.914000px;}
.fsc_c00479{font-size:69.696198px;}
.fs2_c00479{font-size:71.280000px;}
.fs8_c00479{font-size:72.666198px;}
.fs1_c00479{font-size:76.032198px;}
.fsb_c00479{font-size:77.616198px;}
.fsa_c00479{font-size:81.576198px;}
.fs0_c00479{font-size:90.288000px;}
.fs12_c00479{font-size:91.872198px;}
.y0_c00479{bottom:0.000000px;}
.y1d_c00479{bottom:48.733785px;}
.y1_c00479{bottom:76.500000px;}
.y1c_c00479{bottom:84.730185px;}
.y1b_c00479{bottom:148.530735px;}
.y1a_c00479{bottom:181.314585px;}
.y19_c00479{bottom:194.506335px;}
.y18_c00479{bottom:213.395535px;}
.y17_c00479{bottom:245.110185px;}
.y16_c00479{bottom:276.473385px;}
.y15_c00479{bottom:308.197935px;}
.y14_c00479{bottom:339.556185px;}
.y13_c00479{bottom:371.988585px;}
.y12_c00479{bottom:404.425935px;}
.y11_c00479{bottom:436.140585px;}
.y10_c00479{bottom:499.584735px;}
.yf_c00479{bottom:530.947935px;}
.ye_c00479{bottom:562.662585px;}
.yd_c00479{bottom:594.738585px;}
.yc_c00479{bottom:626.458185px;}
.yb_c00479{bottom:658.539135px;}
.ya_c00479{bottom:690.253785px;}
.y9_c00479{bottom:722.334735px;}
.y8_c00479{bottom:754.049385px;}
.y7_c00479{bottom:785.412585px;}
.y6_c00479{bottom:848.143935px;}
.y5_c00479{bottom:855.628335px;}
.y4_c00479{bottom:880.571385px;}
.y3_c00479{bottom:911.939535px;}
.y2_c00479{bottom:1050.217785px;}
.h10_c00479{height:23.128875px;}
.h8_c00479{height:26.584589px;}
.h6_c00479{height:34.180317px;}
.h5_c00479{height:38.927565px;}
.hd_c00479{height:41.775782px;}
.h11_c00479{height:41.921086px;}
.h7_c00479{height:49.358848px;}
.he_c00479{height:52.273740px;}
.h13_c00479{height:55.137792px;}
.hc_c00479{height:68.403007px;}
.hf_c00479{height:70.832180px;}
.h4_c00479{height:74.342813px;}
.h3_c00479{height:74.621444px;}
.h9_c00479{height:75.788574px;}
.hb_c00479{height:76.176054px;}
.ha_c00479{height:80.062577px;}
.h2_c00479{height:88.612734px;}
.h12_c00479{height:90.167538px;}
.h1_c00479{height:1110.000000px;}
.h0_c00479{height:1263.000000px;}
.w1_c00479{width:760.500000px;}
.w0_c00479{width:892.500000px;}
.x0_c00479{left:0.000000px;}
.x1_c00479{left:66.000000px;}
.x2a_c00479{left:82.829235px;}
.x1a_c00479{left:84.259785px;}
.x3_c00479{left:86.175435px;}
.x19_c00479{left:99.094935px;}
.x3a_c00479{left:106.529835px;}
.x5b_c00479{left:115.226985px;}
.x5f_c00479{left:116.405085px;}
.x2b_c00479{left:117.429735px;}
.x6d_c00479{left:126.404085px;}
.x48_c00479{left:127.864335px;}
.x72_c00479{left:137.873235px;}
.x1c_c00479{left:139.392885px;}
.x1b_c00479{left:140.595735px;}
.x42_c00479{left:149.931435px;}
.x32_c00479{left:152.361885px;}
.x6e_c00479{left:159.049335px;}
.x64_c00479{left:160.677885px;}
.x4d_c00479{left:182.774685px;}
.x4_c00479{left:183.987435px;}
.x22_c00479{left:194.001285px;}
.xf_c00479{left:195.966435px;}
.x69_c00479{left:203.648835px;}
.x33_c00479{left:205.821885px;}
.x44_c00479{left:207.480135px;}
.x3d_c00479{left:216.404985px;}
.x5_c00479{left:218.766135px;}
.x57_c00479{left:226.428735px;}
.x2c_c00479{left:227.829585px;}
.x10_c00479{left:229.789785px;}
.x6f_c00479{left:238.016685px;}
.x1d_c00479{left:239.457135px;}
.x65_c00479{left:248.109735px;}
.x49_c00479{left:249.772935px;}
.x4e_c00479{left:260.410485px;}
.x34_c00479{left:261.539085px;}
.x70_c00479{left:271.523235px;}
.x73_c00479{left:273.438885px;}
.x23_c00479{left:284.229885px;}
.x4a_c00479{left:293.956635px;}
.x6_c00479{left:294.981285px;}
.x60_c00479{left:304.123935px;}
.x45_c00479{left:316.786035px;}
.x11_c00479{left:318.201735px;}
.x66_c00479{left:327.280035px;}
.x7_c00479{left:329.111535px;}
.x58_c00479{left:337.630485px;}
.x4b_c00479{left:339.556035px;}
.x55_c00479{left:349.574835px;}
.x24_c00479{left:350.644035px;}
.x74_c00479{left:359.390685px;}
.x2d_c00479{left:361.613235px;}
.x5c_c00479{left:372.047835px;}
.x12_c00479{left:384.422835px;}
.x1e_c00479{left:394.431735px;}
.x4c_c00479{left:405.524685px;}
.x4f_c00479{left:416.573085px;}
.x25_c00479{left:417.592785px;}
.x71_c00479{left:425.646435px;}
.x1f_c00479{left:428.566935px;}
.x2e_c00479{left:439.367835px;}
.x61_c00479{left:448.099635px;}
.x35_c00479{left:449.208435px;}
.x50_c00479{left:450.411285px;}
.x13_c00479{left:451.505235px;}
.x46_c00479{left:459.900435px;}
.x53_c00479{left:461.093385px;}
.x8_c00479{left:462.162585px;}
.x14_c00479{left:472.468485px;}
.x3e_c00479{left:482.323935px;}
.x36_c00479{left:485.358285px;}
.x2f_c00479{left:493.708935px;}
.x59_c00479{left:504.544485px;}
.x43_c00479{left:505.588935px;}
.x9_c00479{left:506.697735px;}
.x3b_c00479{left:515.117685px;}
.x3f_c00479{left:517.033335px;}
.x54_c00479{left:526.507635px;}
.x20_c00479{left:549.742935px;}
.x26_c00479{left:552.208035px;}
.x5d_c00479{left:558.930135px;}
.x27_c00479{left:560.375535px;}
.x6a_c00479{left:561.860535px;}
.x56_c00479{left:571.265535px;}
.xa_c00479{left:573.626685px;}
.x67_c00479{left:580.373535px;}
.x37_c00479{left:582.101085px;}
.x6b_c00479{left:593.317785px;}
.x47_c00479{left:594.382035px;}
.xb_c00479{left:603.886035px;}
.x28_c00479{left:605.643285px;}
.x38_c00479{left:615.290835px;}
.x15_c00479{left:616.518435px;}
.x62_c00479{left:624.883935px;}
.x40_c00479{left:626.824335px;}
.x51_c00479{left:628.586535px;}
.x5e_c00479{left:636.273885px;}
.x5a_c00479{left:637.803435px;}
.x16_c00479{left:648.440985px;}
.xc_c00479{left:650.732835px;}
.x63_c00479{left:657.662835px;}
.x3c_c00479{left:659.083485px;}
.x29_c00479{left:660.390285px;}
.xd_c00479{left:671.344635px;}
.x52_c00479{left:672.428685px;}
.x30_c00479{left:681.551535px;}
.x41_c00479{left:692.783085px;}
.x17_c00479{left:694.584885px;}
.x2_c00479{left:695.926335px;}
.x6c_c00479{left:698.965635px;}
.x21_c00479{left:703.633485px;}
.xe_c00479{left:705.588735px;}
.x39_c00479{left:714.691785px;}
.x18_c00479{left:715.741185px;}
.x68_c00479{left:725.017485px;}
.x31_c00479{left:726.918285px;}
@media print{
.v0_c00479{vertical-align:0.000000pt;}
.lsd_c00479{letter-spacing:-2.537926pt;}
.ls12_c00479{letter-spacing:-2.414726pt;}
.ls10_c00479{letter-spacing:-2.365446pt;}
.ls1c_c00479{letter-spacing:-2.318137pt;}
.ls16_c00479{letter-spacing:-2.168326pt;}
.ls13_c00479{letter-spacing:-0.973212pt;}
.lsc_c00479{letter-spacing:-0.043507pt;}
.ls6_c00479{letter-spacing:0.000000pt;}
.lsa_c00479{letter-spacing:0.232532pt;}
.ls1_c00479{letter-spacing:0.297370pt;}
.ls14_c00479{letter-spacing:0.702875pt;}
.ls9_c00479{letter-spacing:0.729909pt;}
.lsb_c00479{letter-spacing:0.765462pt;}
.ls15_c00479{letter-spacing:1.128656pt;}
.ls0_c00479{letter-spacing:1.547678pt;}
.ls1d_c00479{letter-spacing:1.786400pt;}
.ls1b_c00479{letter-spacing:2.367200pt;}
.ls19_c00479{letter-spacing:2.392480pt;}
.ls4_c00479{letter-spacing:2.401344pt;}
.lse_c00479{letter-spacing:2.750676pt;}
.ls17_c00479{letter-spacing:2.845294pt;}
.ls18_c00479{letter-spacing:3.102114pt;}
.ls2_c00479{letter-spacing:3.138010pt;}
.lsf_c00479{letter-spacing:3.203490pt;}
.ls3_c00479{letter-spacing:3.379209pt;}
.ls11_c00479{letter-spacing:3.449609pt;}
.ls8_c00479{letter-spacing:35.481600pt;}
.ls7_c00479{letter-spacing:45.619376pt;}
.ls5_c00479{letter-spacing:51.955376pt;}
.ls1a_c00479{letter-spacing:55.756800pt;}
.ws0_c00479{word-spacing:-17.193414pt;}
.ws1_c00479{word-spacing:0.000000pt;}
._5_c00479{margin-left:-7.305408pt;}
._3_c00479{width:1.743724pt;}
._2_c00479{width:11.642581pt;}
._1_c00479{width:26.661961pt;}
._4_c00479{width:31.088860pt;}
._0_c00479{width:422.787200pt;}
.fs10_c00479{font-size:19.712000pt;}
.fs5_c00479{font-size:29.920000pt;}
.fs7_c00479{font-size:35.481600pt;}
.fs11_c00479{font-size:35.728000pt;}
.fs6_c00479{font-size:44.704000pt;}
.fs4_c00479{font-size:45.619376pt;}
.fs13_c00479{font-size:46.992176pt;}
.fse_c00479{font-size:47.344000pt;}
.fs3_c00479{font-size:51.955376pt;}
.fsd_c00479{font-size:55.756800pt;}
.fs9_c00479{font-size:58.432176pt;}
.fsf_c00479{font-size:60.368000pt;}
.fsc_c00479{font-size:61.952176pt;}
.fs2_c00479{font-size:63.360000pt;}
.fs8_c00479{font-size:64.592176pt;}
.fs1_c00479{font-size:67.584176pt;}
.fsb_c00479{font-size:68.992176pt;}
.fsa_c00479{font-size:72.512176pt;}
.fs0_c00479{font-size:80.256000pt;}
.fs12_c00479{font-size:81.664176pt;}
.y0_c00479{bottom:0.000000pt;}
.y1d_c00479{bottom:43.318920pt;}
.y1_c00479{bottom:68.000000pt;}
.y1c_c00479{bottom:75.315720pt;}
.y1b_c00479{bottom:132.027320pt;}
.y1a_c00479{bottom:161.168520pt;}
.y19_c00479{bottom:172.894520pt;}
.y18_c00479{bottom:189.684920pt;}
.y17_c00479{bottom:217.875720pt;}
.y16_c00479{bottom:245.754120pt;}
.y15_c00479{bottom:273.953720pt;}
.y14_c00479{bottom:301.827720pt;}
.y13_c00479{bottom:330.656520pt;}
.y12_c00479{bottom:359.489720pt;}
.y11_c00479{bottom:387.680520pt;}
.y10_c00479{bottom:444.075320pt;}
.yf_c00479{bottom:471.953720pt;}
.ye_c00479{bottom:500.144520pt;}
.yd_c00479{bottom:528.656520pt;}
.yc_c00479{bottom:556.851720pt;}
.yb_c00479{bottom:585.368120pt;}
.ya_c00479{bottom:613.558920pt;}
.y9_c00479{bottom:642.075320pt;}
.y8_c00479{bottom:670.266120pt;}
.y7_c00479{bottom:698.144520pt;}
.y6_c00479{bottom:753.905720pt;}
.y5_c00479{bottom:760.558520pt;}
.y4_c00479{bottom:782.730120pt;}
.y3_c00479{bottom:810.612920pt;}
.y2_c00479{bottom:933.526920pt;}
.h10_c00479{height:20.559000pt;}
.h8_c00479{height:23.630746pt;}
.h6_c00479{height:30.382504pt;}
.h5_c00479{height:34.602280pt;}
.hd_c00479{height:37.134029pt;}
.h11_c00479{height:37.263188pt;}
.h7_c00479{height:43.874531pt;}
.he_c00479{height:46.465547pt;}
.h13_c00479{height:49.011371pt;}
.hc_c00479{height:60.802673pt;}
.hf_c00479{height:62.961938pt;}
.h4_c00479{height:66.082500pt;}
.h3_c00479{height:66.330173pt;}
.h9_c00479{height:67.367621pt;}
.hb_c00479{height:67.712048pt;}
.ha_c00479{height:71.166735pt;}
.h2_c00479{height:78.766875pt;}
.h12_c00479{height:80.148923pt;}
.h1_c00479{height:986.666667pt;}
.h0_c00479{height:1122.666667pt;}
.w1_c00479{width:676.000000pt;}
.w0_c00479{width:793.333333pt;}
.x0_c00479{left:0.000000pt;}
.x1_c00479{left:58.666667pt;}
.x2a_c00479{left:73.625987pt;}
.x1a_c00479{left:74.897587pt;}
.x3_c00479{left:76.600387pt;}
.x19_c00479{left:88.084387pt;}
.x3a_c00479{left:94.693187pt;}
.x5b_c00479{left:102.423987pt;}
.x5f_c00479{left:103.471187pt;}
.x2b_c00479{left:104.381987pt;}
.x6d_c00479{left:112.359187pt;}
.x48_c00479{left:113.657187pt;}
.x72_c00479{left:122.553987pt;}
.x1c_c00479{left:123.904787pt;}
.x1b_c00479{left:124.973987pt;}
.x42_c00479{left:133.272387pt;}
.x32_c00479{left:135.432787pt;}
.x6e_c00479{left:141.377187pt;}
.x64_c00479{left:142.824787pt;}
.x4d_c00479{left:162.466387pt;}
.x4_c00479{left:163.544387pt;}
.x22_c00479{left:172.445587pt;}
.xf_c00479{left:174.192387pt;}
.x69_c00479{left:181.021187pt;}
.x33_c00479{left:182.952787pt;}
.x44_c00479{left:184.426787pt;}
.x3d_c00479{left:192.359987pt;}
.x5_c00479{left:194.458787pt;}
.x57_c00479{left:201.269987pt;}
.x2c_c00479{left:202.515187pt;}
.x10_c00479{left:204.257587pt;}
.x6f_c00479{left:211.570387pt;}
.x1d_c00479{left:212.850787pt;}
.x65_c00479{left:220.541987pt;}
.x49_c00479{left:222.020387pt;}
.x4e_c00479{left:231.475987pt;}
.x34_c00479{left:232.479187pt;}
.x70_c00479{left:241.353987pt;}
.x73_c00479{left:243.056787pt;}
.x23_c00479{left:252.648787pt;}
.x4a_c00479{left:261.294787pt;}
.x6_c00479{left:262.205587pt;}
.x60_c00479{left:270.332387pt;}
.x45_c00479{left:281.587587pt;}
.x11_c00479{left:282.845987pt;}
.x66_c00479{left:290.915587pt;}
.x7_c00479{left:292.543587pt;}
.x58_c00479{left:300.115987pt;}
.x4b_c00479{left:301.827587pt;}
.x55_c00479{left:310.733187pt;}
.x24_c00479{left:311.683587pt;}
.x74_c00479{left:319.458387pt;}
.x2d_c00479{left:321.433987pt;}
.x5c_c00479{left:330.709187pt;}
.x12_c00479{left:341.709187pt;}
.x1e_c00479{left:350.605987pt;}
.x4c_c00479{left:360.466387pt;}
.x4f_c00479{left:370.287187pt;}
.x25_c00479{left:371.193587pt;}
.x71_c00479{left:378.352387pt;}
.x1f_c00479{left:380.948387pt;}
.x2e_c00479{left:390.549187pt;}
.x61_c00479{left:398.310787pt;}
.x35_c00479{left:399.296387pt;}
.x50_c00479{left:400.365587pt;}
.x13_c00479{left:401.337987pt;}
.x46_c00479{left:408.800387pt;}
.x53_c00479{left:409.860787pt;}
.x8_c00479{left:410.811187pt;}
.x14_c00479{left:419.971987pt;}
.x3e_c00479{left:428.732387pt;}
.x36_c00479{left:431.429587pt;}
.x2f_c00479{left:438.852387pt;}
.x59_c00479{left:448.483987pt;}
.x43_c00479{left:449.412387pt;}
.x9_c00479{left:450.397987pt;}
.x3b_c00479{left:457.882387pt;}
.x3f_c00479{left:459.585187pt;}
.x54_c00479{left:468.006787pt;}
.x20_c00479{left:488.660387pt;}
.x26_c00479{left:490.851587pt;}
.x5d_c00479{left:496.826787pt;}
.x27_c00479{left:498.111587pt;}
.x6a_c00479{left:499.431587pt;}
.x56_c00479{left:507.791587pt;}
.xa_c00479{left:509.890387pt;}
.x67_c00479{left:515.887587pt;}
.x37_c00479{left:517.423187pt;}
.x6b_c00479{left:527.393587pt;}
.x47_c00479{left:528.339587pt;}
.xb_c00479{left:536.787587pt;}
.x28_c00479{left:538.349587pt;}
.x38_c00479{left:546.925187pt;}
.x15_c00479{left:548.016387pt;}
.x62_c00479{left:555.452387pt;}
.x40_c00479{left:557.177187pt;}
.x51_c00479{left:558.743587pt;}
.x5e_c00479{left:565.576787pt;}
.x5a_c00479{left:566.936387pt;}
.x16_c00479{left:576.391987pt;}
.xc_c00479{left:578.429187pt;}
.x63_c00479{left:584.589187pt;}
.x3c_c00479{left:585.851987pt;}
.x29_c00479{left:587.013587pt;}
.xd_c00479{left:596.750787pt;}
.x52_c00479{left:597.714387pt;}
.x30_c00479{left:605.823587pt;}
.x41_c00479{left:615.807187pt;}
.x17_c00479{left:617.408787pt;}
.x2_c00479{left:618.601187pt;}
.x6c_c00479{left:621.302787pt;}
.x21_c00479{left:625.451987pt;}
.xe_c00479{left:627.189987pt;}
.x39_c00479{left:635.281587pt;}
.x18_c00479{left:636.214387pt;}
.x68_c00479{left:644.459987pt;}
.x31_c00479{left:646.149587pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c1d67b2307dffaf82e7b6f12.woff2')format("woff");}.ff1_c00480{font-family:ff1_c00480;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00480;src:url('chunks/assets/font_ce09942a819e0843f4978b6f.woff2')format("woff");}.ff2_c00480{font-family:ff2_c00480;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00480;src:url('chunks/assets/font_d2a3bd77333b4027caa5b5af.woff2')format("woff");}.ff3_c00480{font-family:ff3_c00480;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00480;src:url('chunks/assets/font_3b65f2293306083d4aa09ee4.woff2')format("woff");}.ff4_c00480{font-family:ff4_c00480;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ma_c00480{transform:matrix(0.031251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.031251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.031251,0.000000,0.000000,0.250000,0,0);}
.mb_c00480{transform:matrix(0.048611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048611,0.000000,0.000000,0.250000,0,0);}
.m8_c00480{transform:matrix(0.065104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065104,0.000000,0.000000,0.250000,0,0);}
.m9_c00480{transform:matrix(0.065972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065972,0.000000,0.000000,0.250000,0,0);}
.m7_c00480{transform:matrix(0.085937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085937,0.000000,0.000000,0.250000,0,0);}
.m15_c00480{transform:matrix(0.120967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120967,0.000000,0.000000,0.250000,0,0);}
.m16_c00480{transform:matrix(0.123992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123992,0.000000,0.000000,0.250000,0,0);}
.mc_c00480{transform:matrix(0.151042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151042,0.000000,0.000000,0.250000,0,0);}
.m97_c00480{transform:matrix(0.169599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169599,0.000000,0.000000,0.250000,0,0);}
.m78_c00480{transform:matrix(0.177083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177083,0.000000,0.000000,0.250000,0,0);}
.m7a_c00480{transform:matrix(0.214949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214949,0.000000,0.000000,0.250000,0,0);}
.m3b_c00480{transform:matrix(0.224092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224092,0.000000,0.000000,0.250000,0,0);}
.m9d_c00480{transform:matrix(0.225327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225327,0.000000,0.000000,0.250000,0,0);}
.m1_c00480{transform:matrix(0.235417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235417,0.000000,0.000000,0.250000,0,0);}
.m5d_c00480{transform:matrix(0.244860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244860,0.000000,0.000000,0.250000,0,0);}
.m93_c00480{transform:matrix(0.245256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245256,0.000000,0.000000,0.250000,0,0);}
.m25_c00480{transform:matrix(0.246336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246336,0.000000,0.000000,0.250000,0,0);}
.mad_c00480{transform:matrix(0.246690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246690,0.000000,0.000000,0.250000,0,0);}
.m6f_c00480{transform:matrix(0.249722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249722,0.000000,0.000000,0.250000,0,0);}
.m0_c00480{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00480{transform:matrix(0.250319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250319,0.000000,0.000000,0.250000,0,0);}
.m13_c00480{transform:matrix(0.251012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251012,0.000000,0.000000,0.250000,0,0);}
.m1f_c00480{transform:matrix(0.251640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251640,0.000000,0.000000,0.250000,0,0);}
.m14_c00480{transform:matrix(0.252313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252313,0.000000,0.000000,0.250000,0,0);}
.m84_c00480{transform:matrix(0.252477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252477,0.000000,0.000000,0.250000,0,0);}
.m24_c00480{transform:matrix(0.253583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253583,0.000000,0.000000,0.250000,0,0);}
.m6a_c00480{transform:matrix(0.254145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254145,0.000000,0.000000,0.250000,0,0);}
.m75_c00480{transform:matrix(0.254533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254533,0.000000,0.000000,0.250000,0,0);}
.me_c00480{transform:matrix(0.255101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255101,0.000000,0.000000,0.250000,0,0);}
.m9f_c00480{transform:matrix(0.256014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256014,0.000000,0.000000,0.250000,0,0);}
.m33_c00480{transform:matrix(0.256368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256368,0.000000,0.000000,0.250000,0,0);}
.m32_c00480{transform:matrix(0.256819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256819,0.000000,0.000000,0.250000,0,0);}
.m5b_c00480{transform:matrix(0.257425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257425,0.000000,0.000000,0.250000,0,0);}
.m38_c00480{transform:matrix(0.258377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258377,0.000000,0.000000,0.250000,0,0);}
.m63_c00480{transform:matrix(0.260137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260137,0.000000,0.000000,0.250000,0,0);}
.m7c_c00480{transform:matrix(0.260237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260237,0.000000,0.000000,0.250000,0,0);}
.m8d_c00480{transform:matrix(0.260318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260318,0.000000,0.000000,0.250000,0,0);}
.mae_c00480{transform:matrix(0.260956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260956,0.000000,0.000000,0.250000,0,0);}
.m79_c00480{transform:matrix(0.261170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261170,0.000000,0.000000,0.250000,0,0);}
.m23_c00480{transform:matrix(0.261325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261325,0.000000,0.000000,0.250000,0,0);}
.m8c_c00480{transform:matrix(0.262002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262002,0.000000,0.000000,0.250000,0,0);}
.ma1_c00480{transform:matrix(0.263210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263210,0.000000,0.000000,0.250000,0,0);}
.m76_c00480{transform:matrix(0.263778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263778,0.000000,0.000000,0.250000,0,0);}
.m60_c00480{transform:matrix(0.264073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264073,0.000000,0.000000,0.250000,0,0);}
.m69_c00480{transform:matrix(0.264184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264184,0.000000,0.000000,0.250000,0,0);}
.m49_c00480{transform:matrix(0.264211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264211,0.000000,0.000000,0.250000,0,0);}
.m9b_c00480{transform:matrix(0.264253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264253,0.000000,0.000000,0.250000,0,0);}
.m5f_c00480{transform:matrix(0.266162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266162,0.000000,0.000000,0.250000,0,0);}
.m3f_c00480{transform:matrix(0.267060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267060,0.000000,0.000000,0.250000,0,0);}
.m55_c00480{transform:matrix(0.268636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268636,0.000000,0.000000,0.250000,0,0);}
.m1a_c00480{transform:matrix(0.269678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269678,0.000000,0.000000,0.250000,0,0);}
.m80_c00480{transform:matrix(0.271711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271711,0.000000,0.000000,0.250000,0,0);}
.m62_c00480{transform:matrix(0.273186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273186,0.000000,0.000000,0.250000,0,0);}
.m4e_c00480{transform:matrix(0.273344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273344,0.000000,0.000000,0.250000,0,0);}
.m20_c00480{transform:matrix(0.274264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274264,0.000000,0.000000,0.250000,0,0);}
.m43_c00480{transform:matrix(0.274961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274961,0.000000,0.000000,0.250000,0,0);}
.m5_c00480{transform:matrix(0.275122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275122,0.000000,0.000000,0.250000,0,0);}
.m88_c00480{transform:matrix(0.275818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275818,0.000000,0.000000,0.250000,0,0);}
.m66_c00480{transform:matrix(0.275903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275903,0.000000,0.000000,0.250000,0,0);}
.m6b_c00480{transform:matrix(0.276228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276228,0.000000,0.000000,0.250000,0,0);}
.ma0_c00480{transform:matrix(0.276586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276586,0.000000,0.000000,0.250000,0,0);}
.m17_c00480{transform:matrix(0.276733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276733,0.000000,0.000000,0.250000,0,0);}
.m72_c00480{transform:matrix(0.279297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279297,0.000000,0.000000,0.250000,0,0);}
.m64_c00480{transform:matrix(0.279446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279446,0.000000,0.000000,0.250000,0,0);}
.m6d_c00480{transform:matrix(0.280102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280102,0.000000,0.000000,0.250000,0,0);}
.m26_c00480{transform:matrix(0.280208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280208,0.000000,0.000000,0.250000,0,0);}
.m9a_c00480{transform:matrix(0.280451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280451,0.000000,0.000000,0.250000,0,0);}
.maa_c00480{transform:matrix(0.281006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281006,0.000000,0.000000,0.250000,0,0);}
.m8a_c00480{transform:matrix(0.281185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281185,0.000000,0.000000,0.250000,0,0);}
.m18_c00480{transform:matrix(0.281337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281337,0.000000,0.000000,0.250000,0,0);}
.m3e_c00480{transform:matrix(0.281693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281693,0.000000,0.000000,0.250000,0,0);}
.m4f_c00480{transform:matrix(0.282405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282405,0.000000,0.000000,0.250000,0,0);}
.m9e_c00480{transform:matrix(0.282847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282847,0.000000,0.000000,0.250000,0,0);}
.m47_c00480{transform:matrix(0.283303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283303,0.000000,0.000000,0.250000,0,0);}
.m51_c00480{transform:matrix(0.283321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283321,0.000000,0.000000,0.250000,0,0);}
.m83_c00480{transform:matrix(0.283437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283437,0.000000,0.000000,0.250000,0,0);}
.m91_c00480{transform:matrix(0.283594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283594,0.000000,0.000000,0.250000,0,0);}
.md_c00480{transform:matrix(0.283601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283601,0.000000,0.000000,0.250000,0,0);}
.m30_c00480{transform:matrix(0.283832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283832,0.000000,0.000000,0.250000,0,0);}
.ma8_c00480{transform:matrix(0.284567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284567,0.000000,0.000000,0.250000,0,0);}
.m3c_c00480{transform:matrix(0.284614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284614,0.000000,0.000000,0.250000,0,0);}
.m98_c00480{transform:matrix(0.284649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284649,0.000000,0.000000,0.250000,0,0);}
.m37_c00480{transform:matrix(0.285063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285063,0.000000,0.000000,0.250000,0,0);}
.m42_c00480{transform:matrix(0.285406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285406,0.000000,0.000000,0.250000,0,0);}
.m70_c00480{transform:matrix(0.287015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287015,0.000000,0.000000,0.250000,0,0);}
.m11_c00480{transform:matrix(0.287941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287941,0.000000,0.000000,0.250000,0,0);}
.m65_c00480{transform:matrix(0.288475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288475,0.000000,0.000000,0.250000,0,0);}
.m90_c00480{transform:matrix(0.288628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288628,0.000000,0.000000,0.250000,0,0);}
.m81_c00480{transform:matrix(0.288688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288688,0.000000,0.000000,0.250000,0,0);}
.m1c_c00480{transform:matrix(0.288966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288966,0.000000,0.000000,0.250000,0,0);}
.m4d_c00480{transform:matrix(0.289666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289666,0.000000,0.000000,0.250000,0,0);}
.m89_c00480{transform:matrix(0.290278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290278,0.000000,0.000000,0.250000,0,0);}
.m46_c00480{transform:matrix(0.290322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290322,0.000000,0.000000,0.250000,0,0);}
.ma9_c00480{transform:matrix(0.290677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290677,0.000000,0.000000,0.250000,0,0);}
.m34_c00480{transform:matrix(0.290868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290868,0.000000,0.000000,0.250000,0,0);}
.m82_c00480{transform:matrix(0.291353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291353,0.000000,0.000000,0.250000,0,0);}
.m35_c00480{transform:matrix(0.291356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291356,0.000000,0.000000,0.250000,0,0);}
.m4b_c00480{transform:matrix(0.291578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291578,0.000000,0.000000,0.250000,0,0);}
.m6_c00480{transform:matrix(0.291748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291748,0.000000,0.000000,0.250000,0,0);}
.m86_c00480{transform:matrix(0.292490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292490,0.000000,0.000000,0.250000,0,0);}
.m2f_c00480{transform:matrix(0.292674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292674,0.000000,0.000000,0.250000,0,0);}
.m5e_c00480{transform:matrix(0.293083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293083,0.000000,0.000000,0.250000,0,0);}
.m2_c00480{transform:matrix(0.293852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293852,0.000000,0.000000,0.250000,0,0);}
.m8e_c00480{transform:matrix(0.294038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294038,0.000000,0.000000,0.250000,0,0);}
.m87_c00480{transform:matrix(0.294127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294127,0.000000,0.000000,0.250000,0,0);}
.m74_c00480{transform:matrix(0.294135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294135,0.000000,0.000000,0.250000,0,0);}
.m2a_c00480{transform:matrix(0.294325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294325,0.000000,0.000000,0.250000,0,0);}
.m7f_c00480{transform:matrix(0.294488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294488,0.000000,0.000000,0.250000,0,0);}
.m73_c00480{transform:matrix(0.294618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294618,0.000000,0.000000,0.250000,0,0);}
.m7b_c00480{transform:matrix(0.294651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294651,0.000000,0.000000,0.250000,0,0);}
.ma7_c00480{transform:matrix(0.294746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294746,0.000000,0.000000,0.250000,0,0);}
.m59_c00480{transform:matrix(0.295305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295305,0.000000,0.000000,0.250000,0,0);}
.m9c_c00480{transform:matrix(0.295450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295450,0.000000,0.000000,0.250000,0,0);}
.m3_c00480{transform:matrix(0.295661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295661,0.000000,0.000000,0.250000,0,0);}
.m44_c00480{transform:matrix(0.296736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296736,0.000000,0.000000,0.250000,0,0);}
.m4c_c00480{transform:matrix(0.297281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297281,0.000000,0.000000,0.250000,0,0);}
.m94_c00480{transform:matrix(0.297562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297562,0.000000,0.000000,0.250000,0,0);}
.m40_c00480{transform:matrix(0.297578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297578,0.000000,0.000000,0.250000,0,0);}
.m58_c00480{transform:matrix(0.297596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297596,0.000000,0.000000,0.250000,0,0);}
.m1b_c00480{transform:matrix(0.298050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298050,0.000000,0.000000,0.250000,0,0);}
.maf_c00480{transform:matrix(0.298224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298224,0.000000,0.000000,0.250000,0,0);}
.mac_c00480{transform:matrix(0.298906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298906,0.000000,0.000000,0.250000,0,0);}
.m95_c00480{transform:matrix(0.299401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299401,0.000000,0.000000,0.250000,0,0);}
.m92_c00480{transform:matrix(0.299417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299417,0.000000,0.000000,0.250000,0,0);}
.m56_c00480{transform:matrix(0.299610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299610,0.000000,0.000000,0.250000,0,0);}
.m10_c00480{transform:matrix(0.299773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299773,0.000000,0.000000,0.250000,0,0);}
.m36_c00480{transform:matrix(0.299828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299828,0.000000,0.000000,0.250000,0,0);}
.ma6_c00480{transform:matrix(0.300335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300335,0.000000,0.000000,0.250000,0,0);}
.m29_c00480{transform:matrix(0.300978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300978,0.000000,0.000000,0.250000,0,0);}
.m85_c00480{transform:matrix(0.303128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303128,0.000000,0.000000,0.250000,0,0);}
.m2d_c00480{transform:matrix(0.303329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303329,0.000000,0.000000,0.250000,0,0);}
.m99_c00480{transform:matrix(0.304018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304018,0.000000,0.000000,0.250000,0,0);}
.m5c_c00480{transform:matrix(0.305904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305904,0.000000,0.000000,0.250000,0,0);}
.m77_c00480{transform:matrix(0.306109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306109,0.000000,0.000000,0.250000,0,0);}
.m41_c00480{transform:matrix(0.306267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306267,0.000000,0.000000,0.250000,0,0);}
.m3a_c00480{transform:matrix(0.307878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307878,0.000000,0.000000,0.250000,0,0);}
.m8f_c00480{transform:matrix(0.307883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307883,0.000000,0.000000,0.250000,0,0);}
.m68_c00480{transform:matrix(0.307950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307950,0.000000,0.000000,0.250000,0,0);}
.ma4_c00480{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);}
.m4_c00480{transform:matrix(0.308743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308743,0.000000,0.000000,0.250000,0,0);}
.m61_c00480{transform:matrix(0.309079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309079,0.000000,0.000000,0.250000,0,0);}
.m6c_c00480{transform:matrix(0.309472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309472,0.000000,0.000000,0.250000,0,0);}
.m53_c00480{transform:matrix(0.309600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309600,0.000000,0.000000,0.250000,0,0);}
.m48_c00480{transform:matrix(0.310424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310424,0.000000,0.000000,0.250000,0,0);}
.ma5_c00480{transform:matrix(0.311128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311128,0.000000,0.000000,0.250000,0,0);}
.ma3_c00480{transform:matrix(0.311525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311525,0.000000,0.000000,0.250000,0,0);}
.m22_c00480{transform:matrix(0.311850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311850,0.000000,0.000000,0.250000,0,0);}
.m52_c00480{transform:matrix(0.314105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314105,0.000000,0.000000,0.250000,0,0);}
.m7d_c00480{transform:matrix(0.314358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314358,0.000000,0.000000,0.250000,0,0);}
.m54_c00480{transform:matrix(0.315640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315640,0.000000,0.000000,0.250000,0,0);}
.m1e_c00480{transform:matrix(0.316704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316704,0.000000,0.000000,0.250000,0,0);}
.m6e_c00480{transform:matrix(0.318068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318068,0.000000,0.000000,0.250000,0,0);}
.mf_c00480{transform:matrix(0.320608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320608,0.000000,0.000000,0.250000,0,0);}
.m31_c00480{transform:matrix(0.321017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321017,0.000000,0.000000,0.250000,0,0);}
.m19_c00480{transform:matrix(0.321613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321613,0.000000,0.000000,0.250000,0,0);}
.m50_c00480{transform:matrix(0.322237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322237,0.000000,0.000000,0.250000,0,0);}
.m96_c00480{transform:matrix(0.324162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324162,0.000000,0.000000,0.250000,0,0);}
.m12_c00480{transform:matrix(0.325016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325016,0.000000,0.000000,0.250000,0,0);}
.m5a_c00480{transform:matrix(0.327699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327699,0.000000,0.000000,0.250000,0,0);}
.m71_c00480{transform:matrix(0.327970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327970,0.000000,0.000000,0.250000,0,0);}
.m67_c00480{transform:matrix(0.328107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328107,0.000000,0.000000,0.250000,0,0);}
.m57_c00480{transform:matrix(0.330429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330429,0.000000,0.000000,0.250000,0,0);}
.m27_c00480{transform:matrix(0.330925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330925,0.000000,0.000000,0.250000,0,0);}
.m28_c00480{transform:matrix(0.333137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333137,0.000000,0.000000,0.250000,0,0);}
.mab_c00480{transform:matrix(0.336617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336617,0.000000,0.000000,0.250000,0,0);}
.m7e_c00480{transform:matrix(0.337967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337967,0.000000,0.000000,0.250000,0,0);}
.m8b_c00480{transform:matrix(0.338546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338546,0.000000,0.000000,0.250000,0,0);}
.m39_c00480{transform:matrix(0.340699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340699,0.000000,0.000000,0.250000,0,0);}
.ma2_c00480{transform:matrix(0.341692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341692,0.000000,0.000000,0.250000,0,0);}
.m2c_c00480{transform:matrix(0.346573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346573,0.000000,0.000000,0.250000,0,0);}
.m3d_c00480{transform:matrix(0.350963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350963,0.000000,0.000000,0.250000,0,0);}
.m1d_c00480{transform:matrix(0.358321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358321,0.000000,0.000000,0.250000,0,0);}
.m4a_c00480{transform:matrix(0.370070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370070,0.000000,0.000000,0.250000,0,0);}
.m21_c00480{transform:matrix(0.375943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375943,0.000000,0.000000,0.250000,0,0);}
.m45_c00480{transform:matrix(0.381818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381818,0.000000,0.000000,0.250000,0,0);}
.m2e_c00480{transform:matrix(0.397571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397571,0.000000,0.000000,0.250000,0,0);}
.v1_c00480{vertical-align:-4.296600px;}
.v0_c00480{vertical-align:0.000000px;}
.ls6_c00480{letter-spacing:-2.813580px;}
.ls13_c00480{letter-spacing:-2.630714px;}
.ls11_c00480{letter-spacing:-2.403601px;}
.ls15_c00480{letter-spacing:-2.328480px;}
.ls5_c00480{letter-spacing:-1.228808px;}
.lsd_c00480{letter-spacing:-1.189742px;}
.ls4_c00480{letter-spacing:0.000000px;}
.ls18_c00480{letter-spacing:0.313513px;}
.lsb_c00480{letter-spacing:0.385862px;}
.ls3_c00480{letter-spacing:0.948578px;}
.lsf_c00480{letter-spacing:2.082049px;}
.ls17_c00480{letter-spacing:2.508106px;}
.lsa_c00480{letter-spacing:2.805541px;}
.lse_c00480{letter-spacing:3.425400px;}
.ls2_c00480{letter-spacing:3.593344px;}
.ls0_c00480{letter-spacing:3.705887px;}
.ls10_c00480{letter-spacing:3.801610px;}
.ls14_c00480{letter-spacing:3.900610px;}
.ls7_c00480{letter-spacing:4.019400px;}
.ls16_c00480{letter-spacing:4.316400px;}
.ls1_c00480{letter-spacing:24.116400px;}
.lsc_c00480{letter-spacing:55.598598px;}
.ls12_c00480{letter-spacing:57.024198px;}
.ls8_c00480{letter-spacing:68.428998px;}
.ls9_c00480{letter-spacing:88.387398px;}
.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;}
}
.ws1_c00480{word-spacing:-23.690344px;}
.ws2_c00480{word-spacing:0.000000px;}
.ws0_c00480{word-spacing:0.161766px;}
._0_c00480{margin-left:-17.006220px;}
._3_c00480{margin-left:-5.225220px;}
._2_c00480{width:7.000686px;}
._1_c00480{width:26.321407px;}
._4_c00480{width:32.791176px;}
._5_c00480{width:82.282464px;}
.fc0_c00480{color:transparent;}
.fs0_c00480{font-size:14.454198px;}
.fs1_c00480{font-size:26.928000px;}
.fsb_c00480{font-size:35.442000px;}
.fs6_c00480{font-size:55.598598px;}
.fs9_c00480{font-size:57.024198px;}
.fsc_c00480{font-size:66.330000px;}
.fsd_c00480{font-size:66.528000px;}
.fs4_c00480{font-size:68.428998px;}
.fs7_c00480{font-size:68.508000px;}
.fs10_c00480{font-size:71.676198px;}
.fsf_c00480{font-size:74.844000px;}
.fs8_c00480{font-size:76.032198px;}
.fsa_c00480{font-size:78.012198px;}
.fs3_c00480{font-size:80.388000px;}
.fs2_c00480{font-size:81.378000px;}
.fse_c00480{font-size:86.328000px;}
.fs5_c00480{font-size:88.387398px;}
.y0_c00480{bottom:0.000000px;}
.y1_c00480{bottom:76.500000px;}
.y1f_c00480{bottom:122.157135px;}
.y1e_c00480{bottom:153.876735px;}
.y1d_c00480{bottom:185.596335px;}
.y1c_c00480{bottom:218.023785px;}
.y1b_c00480{bottom:245.822985px;}
.y1a_c00480{bottom:250.104735px;}
.y19_c00480{bottom:250.461135px;}
.y18_c00480{bottom:281.824335px;}
.y17_c00480{bottom:313.543935px;}
.y16_c00480{bottom:345.263535px;}
.y15_c00480{bottom:375.201135px;}
.y14_c00480{bottom:377.690985px;}
.y13_c00480{bottom:378.052335px;}
.y12_c00480{bottom:410.479785px;}
.y11_c00480{bottom:473.562585px;}
.y10_c00480{bottom:504.930735px;}
.yf_c00480{bottom:535.581135px;}
.ye_c00480{bottom:567.295785px;}
.yd_c00480{bottom:598.658985px;}
.yc_c00480{bottom:630.734985px;}
.yb_c00480{bottom:662.098185px;}
.ya_c00480{bottom:725.185935px;}
.y9_c00480{bottom:757.256985px;}
.y8_c00480{bottom:788.981535px;}
.y7_c00480{bottom:821.052585px;}
.y6_c00480{bottom:852.777135px;}
.y5_c00480{bottom:884.140335px;}
.y2_c00480{bottom:914.077935px;}
.y4_c00480{bottom:1044.158985px;}
.y3_c00480{bottom:1059.840585px;}
.h2_c00480{height:14.186005px;}
.h3_c00480{height:28.085063px;}
.h8_c00480{height:37.028666px;}
.hb_c00480{height:37.978116px;}
.h6_c00480{height:45.573713px;}
.h7_c00480{height:58.866007px;}
.hf_c00480{height:65.293594px;}
.h9_c00480{height:67.236855px;}
.he_c00480{height:69.180117px;}
.h11_c00480{height:73.455293px;}
.ha_c00480{height:74.584319px;}
.hc_c00480{height:74.621444px;}
.hd_c00480{height:76.564706px;}
.h5_c00480{height:78.896426px;}
.h4_c00480{height:79.868057px;}
.h10_c00480{height:84.726211px;}
.h1_c00480{height:1110.000000px;}
.h0_c00480{height:1263.000000px;}
.w1_c00480{width:760.500000px;}
.w0_c00480{width:892.500000px;}
.x0_c00480{left:0.000000px;}
.x62_c00480{left:24.146985px;}
.x2_c00480{left:50.010735px;}
.x1_c00480{left:66.000000px;}
.x56_c00480{left:84.576585px;}
.x30_c00480{left:86.556585px;}
.x19_c00480{left:87.596085px;}
.x11_c00480{left:88.823685px;}
.x57_c00480{left:118.934535px;}
.x44_c00480{left:129.903735px;}
.x21_c00480{left:132.052035px;}
.x4b_c00480{left:139.818585px;}
.x5_c00480{left:141.080835px;}
.x40_c00480{left:151.708485px;}
.x2c_c00480{left:152.812335px;}
.x1a_c00480{left:153.866685px;}
.x27_c00480{left:163.331085px;}
.x22_c00480{left:164.959635px;}
.x4f_c00480{left:174.513135px;}
.x33_c00480{left:175.522935px;}
.x41_c00480{left:184.720035px;}
.x70_c00480{left:194.382435px;}
.x5f_c00480{left:196.669335px;}
.x6_c00480{left:197.748435px;}
.x34_c00480{left:207.494985px;}
.x31_c00480{left:218.231535px;}
.x4c_c00480{left:229.844235px;}
.x12_c00480{left:231.190635px;}
.x50_c00480{left:239.734335px;}
.x39_c00480{left:241.100535px;}
.x45_c00480{left:251.178735px;}
.x23_c00480{left:252.213285px;}
.x58_c00480{left:261.712335px;}
.x72_c00480{left:262.821135px;}
.x69_c00480{left:264.365535px;}
.x7_c00480{left:274.181385px;}
.x1b_c00480{left:275.433735px;}
.x46_c00480{left:285.066435px;}
.x24_c00480{left:286.477185px;}
.x73_c00480{left:306.089085px;}
.x6a_c00480{left:307.579035px;}
.x8_c00480{left:308.643285px;}
.x4d_c00480{left:319.191735px;}
.x71_c00480{left:328.774935px;}
.x28_c00480{left:330.650985px;}
.x3a_c00480{left:339.739185px;}
.x1c_c00480{left:341.699385px;}
.x4e_c00480{left:351.168735px;}
.x2d_c00480{left:352.426035px;}
.x51_c00480{left:363.395235px;}
.x35_c00480{left:373.295235px;}
.x29_c00480{left:374.750535px;}
.x60_c00480{left:383.586285px;}
.x9_c00480{left:384.952485px;}
.x32_c00480{left:387.486885px;}
.x59_c00480{left:395.510835px;}
.x42_c00480{left:396.609735px;}
.x49_c00480{left:407.633385px;}
.x13_c00480{left:408.682785px;}
.x36_c00480{left:417.800685px;}
.x63_c00480{left:428.482785px;}
.x1d_c00480{left:431.329035px;}
.x5a_c00480{left:440.773635px;}
.x14_c00480{left:442.154685px;}
.x6f_c00480{left:450.431085px;}
.x4a_c00480{left:452.792235px;}
.x25_c00480{left:463.083285px;}
.xa_c00480{left:465.677085px;}
.x6b_c00480{left:472.824885px;}
.x52_c00480{left:473.958435px;}
.x15_c00480{left:475.384035px;}
.x68_c00480{left:483.368385px;}
.x3e_c00480{left:485.348385px;}
.x3b_c00480{left:496.411635px;}
.x6c_c00480{left:505.692885px;}
.x2a_c00480{left:507.618435px;}
.x5b_c00480{left:517.790685px;}
.xb_c00480{left:529.046985px;}
.x1e_c00480{left:530.274585px;}
.x2e_c00480{left:540.050835px;}
.x3f_c00480{left:541.268535px;}
.x6d_c00480{left:549.688485px;}
.xc_c00480{left:551.856585px;}
.xd_c00480{left:562.192185px;}
.x26_c00480{left:563.746485px;}
.x6e_c00480{left:571.904085px;}
.x47_c00480{left:573.849435px;}
.x5c_c00480{left:582.823785px;}
.x2b_c00480{left:584.397885px;}
.x74_c00480{left:593.149485px;}
.x1f_c00480{left:596.540235px;}
.x64_c00480{left:605.816535px;}
.x16_c00480{left:607.256985px;}
.xe_c00480{left:617.077785px;}
.xf_c00480{left:619.221135px;}
.x61_c00480{left:626.977785px;}
.x2f_c00480{left:628.952835px;}
.x10_c00480{left:634.541385px;}
.x17_c00480{left:640.248735px;}
.x20_c00480{left:643.773135px;}
.x65_c00480{left:649.658685px;}
.x3c_c00480{left:650.727885px;}
.x53_c00480{left:661.756485px;}
.x37_c00480{left:663.167235px;}
.x5d_c00480{left:672.116835px;}
.x43_c00480{left:673.156335px;}
.x54_c00480{left:683.383035px;}
.x3d_c00480{left:684.462135px;}
.x66_c00480{left:693.787935px;}
.x18_c00480{left:695.485785px;}
.x4_c00480{left:698.094435px;}
.x3_c00480{left:704.217585px;}
.x48_c00480{left:706.563885px;}
.x55_c00480{left:715.394685px;}
.x5e_c00480{left:716.468835px;}
.x38_c00480{left:718.003335px;}
.x67_c00480{left:727.517235px;}
@media print{
.v1_c00480{vertical-align:-3.819200pt;}
.v0_c00480{vertical-align:0.000000pt;}
.ls6_c00480{letter-spacing:-2.500960pt;}
.ls13_c00480{letter-spacing:-2.338412pt;}
.ls11_c00480{letter-spacing:-2.136534pt;}
.ls15_c00480{letter-spacing:-2.069760pt;}
.ls5_c00480{letter-spacing:-1.092274pt;}
.lsd_c00480{letter-spacing:-1.057549pt;}
.ls4_c00480{letter-spacing:0.000000pt;}
.ls18_c00480{letter-spacing:0.278678pt;}
.lsb_c00480{letter-spacing:0.342989pt;}
.ls3_c00480{letter-spacing:0.843181pt;}
.lsf_c00480{letter-spacing:1.850710pt;}
.ls17_c00480{letter-spacing:2.229427pt;}
.lsa_c00480{letter-spacing:2.493814pt;}
.lse_c00480{letter-spacing:3.044800pt;}
.ls2_c00480{letter-spacing:3.194083pt;}
.ls0_c00480{letter-spacing:3.294122pt;}
.ls10_c00480{letter-spacing:3.379209pt;}
.ls14_c00480{letter-spacing:3.467209pt;}
.ls7_c00480{letter-spacing:3.572800pt;}
.ls16_c00480{letter-spacing:3.836800pt;}
.ls1_c00480{letter-spacing:21.436800pt;}
.lsc_c00480{letter-spacing:49.420976pt;}
.ls12_c00480{letter-spacing:50.688176pt;}
.ls8_c00480{letter-spacing:60.825776pt;}
.ls9_c00480{letter-spacing:78.566576pt;}
.ws1_c00480{word-spacing:-21.058083pt;}
.ws2_c00480{word-spacing:0.000000pt;}
.ws0_c00480{word-spacing:0.143792pt;}
._0_c00480{margin-left:-15.116640pt;}
._3_c00480{margin-left:-4.644640pt;}
._2_c00480{width:6.222832pt;}
._1_c00480{width:23.396806pt;}
._4_c00480{width:29.147712pt;}
._5_c00480{width:73.139968pt;}
.fs0_c00480{font-size:12.848176pt;}
.fs1_c00480{font-size:23.936000pt;}
.fsb_c00480{font-size:31.504000pt;}
.fs6_c00480{font-size:49.420976pt;}
.fs9_c00480{font-size:50.688176pt;}
.fsc_c00480{font-size:58.960000pt;}
.fsd_c00480{font-size:59.136000pt;}
.fs4_c00480{font-size:60.825776pt;}
.fs7_c00480{font-size:60.896000pt;}
.fs10_c00480{font-size:63.712176pt;}
.fsf_c00480{font-size:66.528000pt;}
.fs8_c00480{font-size:67.584176pt;}
.fsa_c00480{font-size:69.344176pt;}
.fs3_c00480{font-size:71.456000pt;}
.fs2_c00480{font-size:72.336000pt;}
.fse_c00480{font-size:76.736000pt;}
.fs5_c00480{font-size:78.566576pt;}
.y0_c00480{bottom:0.000000pt;}
.y1_c00480{bottom:68.000000pt;}
.y1f_c00480{bottom:108.584120pt;}
.y1e_c00480{bottom:136.779320pt;}
.y1d_c00480{bottom:164.974520pt;}
.y1c_c00480{bottom:193.798920pt;}
.y1b_c00480{bottom:218.509320pt;}
.y1a_c00480{bottom:222.315320pt;}
.y19_c00480{bottom:222.632120pt;}
.y18_c00480{bottom:250.510520pt;}
.y17_c00480{bottom:278.705720pt;}
.y16_c00480{bottom:306.900920pt;}
.y15_c00480{bottom:333.512120pt;}
.y14_c00480{bottom:335.725320pt;}
.y13_c00480{bottom:336.046520pt;}
.y12_c00480{bottom:364.870920pt;}
.y11_c00480{bottom:420.944520pt;}
.y10_c00480{bottom:448.827320pt;}
.yf_c00480{bottom:476.072120pt;}
.ye_c00480{bottom:504.262920pt;}
.yd_c00480{bottom:532.141320pt;}
.yc_c00480{bottom:560.653320pt;}
.yb_c00480{bottom:588.531720pt;}
.ya_c00480{bottom:644.609720pt;}
.y9_c00480{bottom:673.117320pt;}
.y8_c00480{bottom:701.316920pt;}
.y7_c00480{bottom:729.824520pt;}
.y6_c00480{bottom:758.024120pt;}
.y5_c00480{bottom:785.902520pt;}
.y2_c00480{bottom:812.513720pt;}
.y4_c00480{bottom:928.141320pt;}
.y3_c00480{bottom:942.080520pt;}
.h2_c00480{height:12.609782pt;}
.h3_c00480{height:24.964500pt;}
.h8_c00480{height:32.914370pt;}
.hb_c00480{height:33.758325pt;}
.h6_c00480{height:40.509967pt;}
.h7_c00480{height:52.325340pt;}
.hf_c00480{height:58.038750pt;}
.h9_c00480{height:59.766094pt;}
.he_c00480{height:61.493438pt;}
.h11_c00480{height:65.293594pt;}
.ha_c00480{height:66.297173pt;}
.hc_c00480{height:66.330173pt;}
.hd_c00480{height:68.057516pt;}
.h5_c00480{height:70.130156pt;}
.h4_c00480{height:70.993828pt;}
.h10_c00480{height:75.312188pt;}
.h1_c00480{height:986.666667pt;}
.h0_c00480{height:1122.666667pt;}
.w1_c00480{width:676.000000pt;}
.w0_c00480{width:793.333333pt;}
.x0_c00480{left:0.000000pt;}
.x62_c00480{left:21.463987pt;}
.x2_c00480{left:44.453987pt;}
.x1_c00480{left:58.666667pt;}
.x56_c00480{left:75.179187pt;}
.x30_c00480{left:76.939187pt;}
.x19_c00480{left:77.863187pt;}
.x11_c00480{left:78.954387pt;}
.x57_c00480{left:105.719587pt;}
.x44_c00480{left:115.469987pt;}
.x21_c00480{left:117.379587pt;}
.x4b_c00480{left:124.283187pt;}
.x5_c00480{left:125.405187pt;}
.x40_c00480{left:134.851987pt;}
.x2c_c00480{left:135.833187pt;}
.x1a_c00480{left:136.770387pt;}
.x27_c00480{left:145.183187pt;}
.x22_c00480{left:146.630787pt;}
.x4f_c00480{left:155.122787pt;}
.x33_c00480{left:156.020387pt;}
.x41_c00480{left:164.195587pt;}
.x70_c00480{left:172.784387pt;}
.x5f_c00480{left:174.817187pt;}
.x6_c00480{left:175.776387pt;}
.x34_c00480{left:184.439987pt;}
.x31_c00480{left:193.983587pt;}
.x4c_c00480{left:204.305987pt;}
.x12_c00480{left:205.502787pt;}
.x50_c00480{left:213.097187pt;}
.x39_c00480{left:214.311587pt;}
.x45_c00480{left:223.269987pt;}
.x23_c00480{left:224.189587pt;}
.x58_c00480{left:232.633187pt;}
.x72_c00480{left:233.618787pt;}
.x69_c00480{left:234.991587pt;}
.x7_c00480{left:243.716787pt;}
.x1b_c00480{left:244.829987pt;}
.x46_c00480{left:253.392387pt;}
.x24_c00480{left:254.646387pt;}
.x73_c00480{left:272.079187pt;}
.x6a_c00480{left:273.403587pt;}
.x8_c00480{left:274.349587pt;}
.x4d_c00480{left:283.725987pt;}
.x71_c00480{left:292.244387pt;}
.x28_c00480{left:293.911987pt;}
.x3a_c00480{left:301.990387pt;}
.x1c_c00480{left:303.732787pt;}
.x4e_c00480{left:312.149987pt;}
.x2d_c00480{left:313.267587pt;}
.x51_c00480{left:323.017987pt;}
.x35_c00480{left:331.817987pt;}
.x29_c00480{left:333.111587pt;}
.x60_c00480{left:340.965587pt;}
.x9_c00480{left:342.179987pt;}
.x32_c00480{left:344.432787pt;}
.x59_c00480{left:351.565187pt;}
.x42_c00480{left:352.541987pt;}
.x49_c00480{left:362.340787pt;}
.x13_c00480{left:363.273587pt;}
.x36_c00480{left:371.378387pt;}
.x63_c00480{left:380.873587pt;}
.x1d_c00480{left:383.403587pt;}
.x5a_c00480{left:391.798787pt;}
.x14_c00480{left:393.026387pt;}
.x6f_c00480{left:400.383187pt;}
.x4a_c00480{left:402.481987pt;}
.x25_c00480{left:411.629587pt;}
.xa_c00480{left:413.935187pt;}
.x6b_c00480{left:420.288787pt;}
.x52_c00480{left:421.296387pt;}
.x15_c00480{left:422.563587pt;}
.x68_c00480{left:429.660787pt;}
.x3e_c00480{left:431.420787pt;}
.x3b_c00480{left:441.254787pt;}
.x6c_c00480{left:449.504787pt;}
.x2a_c00480{left:451.216387pt;}
.x5b_c00480{left:460.258387pt;}
.xb_c00480{left:470.263987pt;}
.x1e_c00480{left:471.355187pt;}
.x2e_c00480{left:480.045187pt;}
.x3f_c00480{left:481.127587pt;}
.x6d_c00480{left:488.611987pt;}
.xc_c00480{left:490.539187pt;}
.xd_c00480{left:499.726387pt;}
.x26_c00480{left:501.107987pt;}
.x6e_c00480{left:508.359187pt;}
.x47_c00480{left:510.088387pt;}
.x5c_c00480{left:518.065587pt;}
.x2b_c00480{left:519.464787pt;}
.x74_c00480{left:527.243987pt;}
.x1f_c00480{left:530.257987pt;}
.x64_c00480{left:538.503587pt;}
.x16_c00480{left:539.783987pt;}
.xe_c00480{left:548.513587pt;}
.xf_c00480{left:550.418787pt;}
.x61_c00480{left:557.313587pt;}
.x2f_c00480{left:559.069187pt;}
.x10_c00480{left:564.036787pt;}
.x17_c00480{left:569.109987pt;}
.x20_c00480{left:572.242787pt;}
.x65_c00480{left:577.474387pt;}
.x3c_c00480{left:578.424787pt;}
.x53_c00480{left:588.227987pt;}
.x37_c00480{left:589.481987pt;}
.x5d_c00480{left:597.437187pt;}
.x43_c00480{left:598.361187pt;}
.x54_c00480{left:607.451587pt;}
.x3d_c00480{left:608.410787pt;}
.x66_c00480{left:616.700387pt;}
.x18_c00480{left:618.209587pt;}
.x4_c00480{left:620.528387pt;}
.x3_c00480{left:625.971187pt;}
.x48_c00480{left:628.056787pt;}
.x55_c00480{left:635.906387pt;}
.x5e_c00480{left:636.861187pt;}
.x38_c00480{left:638.225187pt;}
.x67_c00480{left:646.681987pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_68e5ab2fe4582a3f84021803.woff2')format("woff");}.ff1_c00481{font-family:ff1_c00481;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00481;src:url('chunks/assets/font_ce25ac763f56757aa339016a.woff2')format("woff");}.ff2_c00481{font-family:ff2_c00481;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00481;src:url('chunks/assets/font_37823b27d70bc5bd681a626b.woff2')format("woff");}.ff3_c00481{font-family:ff3_c00481;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00481;src:url('chunks/assets/font_b0f9d83d2c2d1d03f51ca26a.woff2')format("woff");}.ff4_c00481{font-family:ff4_c00481;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2e_c00481{transform:matrix(0.026317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026317,0.000000,0.000000,0.250000,0,0);}
.m30_c00481{transform:matrix(0.032896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032896,0.000000,0.000000,0.250000,0,0);}
.m32_c00481{transform:matrix(0.082895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.082895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.082895,0.000000,0.000000,0.250000,0,0);}
.ma4_c00481{transform:matrix(0.109814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109814,0.000000,0.000000,0.250000,0,0);}
.m79_c00481{transform:matrix(0.133013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133013,0.000000,0.000000,0.250000,0,0);}
.m23_c00481{transform:matrix(0.136585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136585,0.000000,0.000000,0.250000,0,0);}
.m63_c00481{transform:matrix(0.147336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147336,0.000000,0.000000,0.250000,0,0);}
.m2d_c00481{transform:matrix(0.151316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151316,0.000000,0.000000,0.250000,0,0);}
.m35_c00481{transform:matrix(0.157094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157094,0.000000,0.000000,0.250000,0,0);}
.m2f_c00481{transform:matrix(0.157895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157895,0.000000,0.000000,0.250000,0,0);}
.ma3_c00481{transform:matrix(0.170455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170455,0.000000,0.000000,0.250000,0,0);}
.m2c_c00481{transform:matrix(0.172946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172946,0.000000,0.000000,0.250000,0,0);}
.m34_c00481{transform:matrix(0.177632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177632,0.000000,0.000000,0.250000,0,0);}
.m61_c00481{transform:matrix(0.184889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184889,0.000000,0.000000,0.250000,0,0);}
.m31_c00481{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00481{transform:matrix(0.189374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189374,0.000000,0.000000,0.250000,0,0);}
.m36_c00481{transform:matrix(0.202702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202702,0.000000,0.000000,0.250000,0,0);}
.md1_c00481{transform:matrix(0.224361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224361,0.000000,0.000000,0.250000,0,0);}
.m33_c00481{transform:matrix(0.230263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230263,0.000000,0.000000,0.250000,0,0);}
.m9a_c00481{transform:matrix(0.239836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239836,0.000000,0.000000,0.250000,0,0);}
.mbc_c00481{transform:matrix(0.245104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245104,0.000000,0.000000,0.250000,0,0);}
.m0_c00481{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00481{transform:matrix(0.254871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254871,0.000000,0.000000,0.250000,0,0);}
.m44_c00481{transform:matrix(0.255112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255112,0.000000,0.000000,0.250000,0,0);}
.m78_c00481{transform:matrix(0.255305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255305,0.000000,0.000000,0.250000,0,0);}
.m56_c00481{transform:matrix(0.256092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256092,0.000000,0.000000,0.250000,0,0);}
.m4f_c00481{transform:matrix(0.257160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257160,0.000000,0.000000,0.250000,0,0);}
.m51_c00481{transform:matrix(0.257789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257789,0.000000,0.000000,0.250000,0,0);}
.m16_c00481{transform:matrix(0.258382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258382,0.000000,0.000000,0.250000,0,0);}
.m3f_c00481{transform:matrix(0.259828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259828,0.000000,0.000000,0.250000,0,0);}
.mc4_c00481{transform:matrix(0.259834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259834,0.000000,0.000000,0.250000,0,0);}
.mbe_c00481{transform:matrix(0.260498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260498,0.000000,0.000000,0.250000,0,0);}
.m1d_c00481{transform:matrix(0.260559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260559,0.000000,0.000000,0.250000,0,0);}
.mba_c00481{transform:matrix(0.263570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263570,0.000000,0.000000,0.250000,0,0);}
.md0_c00481{transform:matrix(0.265582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265582,0.000000,0.000000,0.250000,0,0);}
.m6d_c00481{transform:matrix(0.266448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266448,0.000000,0.000000,0.250000,0,0);}
.m7a_c00481{transform:matrix(0.268118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268118,0.000000,0.000000,0.250000,0,0);}
.m84_c00481{transform:matrix(0.268566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268566,0.000000,0.000000,0.250000,0,0);}
.mc8_c00481{transform:matrix(0.270764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270764,0.000000,0.000000,0.250000,0,0);}
.m85_c00481{transform:matrix(0.270805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270805,0.000000,0.000000,0.250000,0,0);}
.mca_c00481{transform:matrix(0.271342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271342,0.000000,0.000000,0.250000,0,0);}
.m58_c00481{transform:matrix(0.272444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272444,0.000000,0.000000,0.250000,0,0);}
.m4c_c00481{transform:matrix(0.273110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273110,0.000000,0.000000,0.250000,0,0);}
.m3_c00481{transform:matrix(0.274841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274841,0.000000,0.000000,0.250000,0,0);}
.ma6_c00481{transform:matrix(0.275977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275977,0.000000,0.000000,0.250000,0,0);}
.m4a_c00481{transform:matrix(0.276220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276220,0.000000,0.000000,0.250000,0,0);}
.md3_c00481{transform:matrix(0.276237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276237,0.000000,0.000000,0.250000,0,0);}
.mcb_c00481{transform:matrix(0.276247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276247,0.000000,0.000000,0.250000,0,0);}
.m38_c00481{transform:matrix(0.277310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277310,0.000000,0.000000,0.250000,0,0);}
.m9c_c00481{transform:matrix(0.277522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277522,0.000000,0.000000,0.250000,0,0);}
.m2a_c00481{transform:matrix(0.277965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277965,0.000000,0.000000,0.250000,0,0);}
.m8e_c00481{transform:matrix(0.278102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278102,0.000000,0.000000,0.250000,0,0);}
.m95_c00481{transform:matrix(0.278862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278862,0.000000,0.000000,0.250000,0,0);}
.m27_c00481{transform:matrix(0.278993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278993,0.000000,0.000000,0.250000,0,0);}
.mc9_c00481{transform:matrix(0.278997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278997,0.000000,0.000000,0.250000,0,0);}
.m4b_c00481{transform:matrix(0.279050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279050,0.000000,0.000000,0.250000,0,0);}
.m69_c00481{transform:matrix(0.279311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279311,0.000000,0.000000,0.250000,0,0);}
.mcf_c00481{transform:matrix(0.279938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279938,0.000000,0.000000,0.250000,0,0);}
.m8f_c00481{transform:matrix(0.280374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280374,0.000000,0.000000,0.250000,0,0);}
.m66_c00481{transform:matrix(0.280510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280510,0.000000,0.000000,0.250000,0,0);}
.m68_c00481{transform:matrix(0.281088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281088,0.000000,0.000000,0.250000,0,0);}
.m9d_c00481{transform:matrix(0.281629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281629,0.000000,0.000000,0.250000,0,0);}
.m47_c00481{transform:matrix(0.281902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281902,0.000000,0.000000,0.250000,0,0);}
.m8_c00481{transform:matrix(0.282175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282175,0.000000,0.000000,0.250000,0,0);}
.m6e_c00481{transform:matrix(0.282799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282799,0.000000,0.000000,0.250000,0,0);}
.mc2_c00481{transform:matrix(0.283687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283687,0.000000,0.000000,0.250000,0,0);}
.mcd_c00481{transform:matrix(0.284211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284211,0.000000,0.000000,0.250000,0,0);}
.m42_c00481{transform:matrix(0.284852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284852,0.000000,0.000000,0.250000,0,0);}
.mbd_c00481{transform:matrix(0.285560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285560,0.000000,0.000000,0.250000,0,0);}
.mc1_c00481{transform:matrix(0.286366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286366,0.000000,0.000000,0.250000,0,0);}
.m5d_c00481{transform:matrix(0.287376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287376,0.000000,0.000000,0.250000,0,0);}
.me_c00481{transform:matrix(0.287785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287785,0.000000,0.000000,0.250000,0,0);}
.m75_c00481{transform:matrix(0.290211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290211,0.000000,0.000000,0.250000,0,0);}
.m90_c00481{transform:matrix(0.290572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290572,0.000000,0.000000,0.250000,0,0);}
.m97_c00481{transform:matrix(0.290856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290856,0.000000,0.000000,0.250000,0,0);}
.m88_c00481{transform:matrix(0.290912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290912,0.000000,0.000000,0.250000,0,0);}
.mcc_c00481{transform:matrix(0.291018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291018,0.000000,0.000000,0.250000,0,0);}
.m7e_c00481{transform:matrix(0.291362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291362,0.000000,0.000000,0.250000,0,0);}
.mb_c00481{transform:matrix(0.291911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291911,0.000000,0.000000,0.250000,0,0);}
.m11_c00481{transform:matrix(0.293390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293390,0.000000,0.000000,0.250000,0,0);}
.m3d_c00481{transform:matrix(0.294076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294076,0.000000,0.000000,0.250000,0,0);}
.m19_c00481{transform:matrix(0.294350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294350,0.000000,0.000000,0.250000,0,0);}
.m8d_c00481{transform:matrix(0.294987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294987,0.000000,0.000000,0.250000,0,0);}
.m12_c00481{transform:matrix(0.295618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295618,0.000000,0.000000,0.250000,0,0);}
.mb7_c00481{transform:matrix(0.295840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295840,0.000000,0.000000,0.250000,0,0);}
.mb2_c00481{transform:matrix(0.296065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296065,0.000000,0.000000,0.250000,0,0);}
.m5e_c00481{transform:matrix(0.296147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296147,0.000000,0.000000,0.250000,0,0);}
.m1f_c00481{transform:matrix(0.296350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296350,0.000000,0.000000,0.250000,0,0);}
.m73_c00481{transform:matrix(0.297327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297327,0.000000,0.000000,0.250000,0,0);}
.m21_c00481{transform:matrix(0.298120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298120,0.000000,0.000000,0.250000,0,0);}
.m6c_c00481{transform:matrix(0.299203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299203,0.000000,0.000000,0.250000,0,0);}
.m4e_c00481{transform:matrix(0.299335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299335,0.000000,0.000000,0.250000,0,0);}
.m3c_c00481{transform:matrix(0.299413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299413,0.000000,0.000000,0.250000,0,0);}
.mad_c00481{transform:matrix(0.300769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300769,0.000000,0.000000,0.250000,0,0);}
.mb1_c00481{transform:matrix(0.301084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301084,0.000000,0.000000,0.250000,0,0);}
.m62_c00481{transform:matrix(0.301227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301227,0.000000,0.000000,0.250000,0,0);}
.m86_c00481{transform:matrix(0.301443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301443,0.000000,0.000000,0.250000,0,0);}
.m14_c00481{transform:matrix(0.301493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301493,0.000000,0.000000,0.250000,0,0);}
.m15_c00481{transform:matrix(0.301630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301630,0.000000,0.000000,0.250000,0,0);}
.m4_c00481{transform:matrix(0.301735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301735,0.000000,0.000000,0.250000,0,0);}
.m53_c00481{transform:matrix(0.302565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302565,0.000000,0.000000,0.250000,0,0);}
.mb0_c00481{transform:matrix(0.303762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303762,0.000000,0.000000,0.250000,0,0);}
.mab_c00481{transform:matrix(0.304345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304345,0.000000,0.000000,0.250000,0,0);}
.m8b_c00481{transform:matrix(0.304886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304886,0.000000,0.000000,0.250000,0,0);}
.m5_c00481{transform:matrix(0.304920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304920,0.000000,0.000000,0.250000,0,0);}
.m28_c00481{transform:matrix(0.305362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305362,0.000000,0.000000,0.250000,0,0);}
.ma5_c00481{transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305629,0.000000,0.000000,0.250000,0,0);}
.m45_c00481{transform:matrix(0.305941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305941,0.000000,0.000000,0.250000,0,0);}
.m65_c00481{transform:matrix(0.306221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306221,0.000000,0.000000,0.250000,0,0);}
.ma8_c00481{transform:matrix(0.306549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306549,0.000000,0.000000,0.250000,0,0);}
.mc6_c00481{transform:matrix(0.306658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306658,0.000000,0.000000,0.250000,0,0);}
.m64_c00481{transform:matrix(0.306830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306830,0.000000,0.000000,0.250000,0,0);}
.m6_c00481{transform:matrix(0.307392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307392,0.000000,0.000000,0.250000,0,0);}
.maa_c00481{transform:matrix(0.308057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308057,0.000000,0.000000,0.250000,0,0);}
.m9b_c00481{transform:matrix(0.310602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310602,0.000000,0.000000,0.250000,0,0);}
.m24_c00481{transform:matrix(0.310886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310886,0.000000,0.000000,0.250000,0,0);}
.m43_c00481{transform:matrix(0.310915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310915,0.000000,0.000000,0.250000,0,0);}
.md4_c00481{transform:matrix(0.311916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311916,0.000000,0.000000,0.250000,0,0);}
.mc3_c00481{transform:matrix(0.312601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312601,0.000000,0.000000,0.250000,0,0);}
.m96_c00481{transform:matrix(0.312910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312910,0.000000,0.000000,0.250000,0,0);}
.ma9_c00481{transform:matrix(0.313087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313087,0.000000,0.000000,0.250000,0,0);}
.m18_c00481{transform:matrix(0.313595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313595,0.000000,0.000000,0.250000,0,0);}
.m7c_c00481{transform:matrix(0.314247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314247,0.000000,0.000000,0.250000,0,0);}
.m71_c00481{transform:matrix(0.314381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314381,0.000000,0.000000,0.250000,0,0);}
.m5a_c00481{transform:matrix(0.314491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314491,0.000000,0.000000,0.250000,0,0);}
.maf_c00481{transform:matrix(0.314657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314657,0.000000,0.000000,0.250000,0,0);}
.ma2_c00481{transform:matrix(0.314683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314683,0.000000,0.000000,0.250000,0,0);}
.m93_c00481{transform:matrix(0.315012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315012,0.000000,0.000000,0.250000,0,0);}
.m46_c00481{transform:matrix(0.316025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316025,0.000000,0.000000,0.250000,0,0);}
.m72_c00481{transform:matrix(0.316031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316031,0.000000,0.000000,0.250000,0,0);}
.m77_c00481{transform:matrix(0.316106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316106,0.000000,0.000000,0.250000,0,0);}
.m87_c00481{transform:matrix(0.316467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316467,0.000000,0.000000,0.250000,0,0);}
.m92_c00481{transform:matrix(0.316749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316749,0.000000,0.000000,0.250000,0,0);}
.mbb_c00481{transform:matrix(0.317024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317024,0.000000,0.000000,0.250000,0,0);}
.m70_c00481{transform:matrix(0.317217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317217,0.000000,0.000000,0.250000,0,0);}
.m91_c00481{transform:matrix(0.317263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317263,0.000000,0.000000,0.250000,0,0);}
.m17_c00481{transform:matrix(0.317412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317412,0.000000,0.000000,0.250000,0,0);}
.m25_c00481{transform:matrix(0.317689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317689,0.000000,0.000000,0.250000,0,0);}
.m89_c00481{transform:matrix(0.318828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318828,0.000000,0.000000,0.250000,0,0);}
.ma_c00481{transform:matrix(0.319150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319150,0.000000,0.000000,0.250000,0,0);}
.ma7_c00481{transform:matrix(0.319329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319329,0.000000,0.000000,0.250000,0,0);}
.m5f_c00481{transform:matrix(0.320584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320584,0.000000,0.000000,0.250000,0,0);}
.m6a_c00481{transform:matrix(0.320798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320798,0.000000,0.000000,0.250000,0,0);}
.m29_c00481{transform:matrix(0.321974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321974,0.000000,0.000000,0.250000,0,0);}
.m81_c00481{transform:matrix(0.322439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322439,0.000000,0.000000,0.250000,0,0);}
.m57_c00481{transform:matrix(0.322755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322755,0.000000,0.000000,0.250000,0,0);}
.m4d_c00481{transform:matrix(0.322892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322892,0.000000,0.000000,0.250000,0,0);}
.m40_c00481{transform:matrix(0.324298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324298,0.000000,0.000000,0.250000,0,0);}
.md_c00481{transform:matrix(0.324398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324398,0.000000,0.000000,0.250000,0,0);}
.m48_c00481{transform:matrix(0.324724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324724,0.000000,0.000000,0.250000,0,0);}
.md6_c00481{transform:matrix(0.324992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324992,0.000000,0.000000,0.250000,0,0);}
.m41_c00481{transform:matrix(0.325245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325245,0.000000,0.000000,0.250000,0,0);}
.m8c_c00481{transform:matrix(0.326063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326063,0.000000,0.000000,0.250000,0,0);}
.m52_c00481{transform:matrix(0.326217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326217,0.000000,0.000000,0.250000,0,0);}
.mb4_c00481{transform:matrix(0.327314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327314,0.000000,0.000000,0.250000,0,0);}
.m49_c00481{transform:matrix(0.327478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327478,0.000000,0.000000,0.250000,0,0);}
.mb8_c00481{transform:matrix(0.327735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327735,0.000000,0.000000,0.250000,0,0);}
.m9f_c00481{transform:matrix(0.328444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328444,0.000000,0.000000,0.250000,0,0);}
.m67_c00481{transform:matrix(0.328461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328461,0.000000,0.000000,0.250000,0,0);}
.m7_c00481{transform:matrix(0.328817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328817,0.000000,0.000000,0.250000,0,0);}
.mae_c00481{transform:matrix(0.328957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328957,0.000000,0.000000,0.250000,0,0);}
.m82_c00481{transform:matrix(0.330334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330334,0.000000,0.000000,0.250000,0,0);}
.mac_c00481{transform:matrix(0.330366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330366,0.000000,0.000000,0.250000,0,0);}
.m10_c00481{transform:matrix(0.330900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330900,0.000000,0.000000,0.250000,0,0);}
.m94_c00481{transform:matrix(0.331308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331308,0.000000,0.000000,0.250000,0,0);}
.md5_c00481{transform:matrix(0.331576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331576,0.000000,0.000000,0.250000,0,0);}
.m60_c00481{transform:matrix(0.332085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332085,0.000000,0.000000,0.250000,0,0);}
.m7d_c00481{transform:matrix(0.332237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332237,0.000000,0.000000,0.250000,0,0);}
.md2_c00481{transform:matrix(0.332258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332258,0.000000,0.000000,0.250000,0,0);}
.m1a_c00481{transform:matrix(0.332440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332440,0.000000,0.000000,0.250000,0,0);}
.m20_c00481{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.mb6_c00481{transform:matrix(0.333572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333572,0.000000,0.000000,0.250000,0,0);}
.m3a_c00481{transform:matrix(0.333615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333615,0.000000,0.000000,0.250000,0,0);}
.m54_c00481{transform:matrix(0.334135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334135,0.000000,0.000000,0.250000,0,0);}
.m7b_c00481{transform:matrix(0.335529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335529,0.000000,0.000000,0.250000,0,0);}
.m76_c00481{transform:matrix(0.335642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335642,0.000000,0.000000,0.250000,0,0);}
.m55_c00481{transform:matrix(0.335797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335797,0.000000,0.000000,0.250000,0,0);}
.m8a_c00481{transform:matrix(0.335947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335947,0.000000,0.000000,0.250000,0,0);}
.mf_c00481{transform:matrix(0.336906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336906,0.000000,0.000000,0.250000,0,0);}
.m37_c00481{transform:matrix(0.338789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338789,0.000000,0.000000,0.250000,0,0);}
.mc_c00481{transform:matrix(0.339779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339779,0.000000,0.000000,0.250000,0,0);}
.m9e_c00481{transform:matrix(0.340646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340646,0.000000,0.000000,0.250000,0,0);}
.mb5_c00481{transform:matrix(0.341713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341713,0.000000,0.000000,0.250000,0,0);}
.mb9_c00481{transform:matrix(0.342050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342050,0.000000,0.000000,0.250000,0,0);}
.mc7_c00481{transform:matrix(0.342368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342368,0.000000,0.000000,0.250000,0,0);}
.m1e_c00481{transform:matrix(0.342587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342587,0.000000,0.000000,0.250000,0,0);}
.m7f_c00481{transform:matrix(0.343370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343370,0.000000,0.000000,0.250000,0,0);}
.m26_c00481{transform:matrix(0.343982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343982,0.000000,0.000000,0.250000,0,0);}
.md8_c00481{transform:matrix(0.344474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344474,0.000000,0.000000,0.250000,0,0);}
.m1c_c00481{transform:matrix(0.344509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344509,0.000000,0.000000,0.250000,0,0);}
.m22_c00481{transform:matrix(0.344568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344568,0.000000,0.000000,0.250000,0,0);}
.m2_c00481{transform:matrix(0.345063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345063,0.000000,0.000000,0.250000,0,0);}
.mbf_c00481{transform:matrix(0.346959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346959,0.000000,0.000000,0.250000,0,0);}
.ma0_c00481{transform:matrix(0.347292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347292,0.000000,0.000000,0.250000,0,0);}
.mb3_c00481{transform:matrix(0.347947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347947,0.000000,0.000000,0.250000,0,0);}
.m59_c00481{transform:matrix(0.350948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350948,0.000000,0.000000,0.250000,0,0);}
.m3e_c00481{transform:matrix(0.351251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351251,0.000000,0.000000,0.250000,0,0);}
.m1_c00481{transform:matrix(0.352902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352902,0.000000,0.000000,0.250000,0,0);}
.md7_c00481{transform:matrix(0.356346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356346,0.000000,0.000000,0.250000,0,0);}
.m2b_c00481{transform:matrix(0.357329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357329,0.000000,0.000000,0.250000,0,0);}
.mce_c00481{transform:matrix(0.357390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357390,0.000000,0.000000,0.250000,0,0);}
.mc5_c00481{transform:matrix(0.359166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359166,0.000000,0.000000,0.250000,0,0);}
.m3b_c00481{transform:matrix(0.359755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359755,0.000000,0.000000,0.250000,0,0);}
.m39_c00481{transform:matrix(0.360922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360922,0.000000,0.000000,0.250000,0,0);}
.m5b_c00481{transform:matrix(0.363710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363710,0.000000,0.000000,0.250000,0,0);}
.m13_c00481{transform:matrix(0.366642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366642,0.000000,0.000000,0.250000,0,0);}
.m9_c00481{transform:matrix(0.367316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367316,0.000000,0.000000,0.250000,0,0);}
.m1b_c00481{transform:matrix(0.373079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373079,0.000000,0.000000,0.250000,0,0);}
.m98_c00481{transform:matrix(0.374247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374247,0.000000,0.000000,0.250000,0,0);}
.m99_c00481{transform:matrix(0.383061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383061,0.000000,0.000000,0.250000,0,0);}
.m50_c00481{transform:matrix(0.388108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388108,0.000000,0.000000,0.250000,0,0);}
.mc0_c00481{transform:matrix(0.393253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393253,0.000000,0.000000,0.250000,0,0);}
.m5c_c00481{transform:matrix(0.393597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393597,0.000000,0.000000,0.250000,0,0);}
.m80_c00481{transform:matrix(0.399596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399596,0.000000,0.000000,0.250000,0,0);}
.m83_c00481{transform:matrix(0.405939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405939,0.000000,0.000000,0.250000,0,0);}
.m6f_c00481{transform:matrix(0.412282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412282,0.000000,0.000000,0.250000,0,0);}
.m74_c00481{transform:matrix(0.414712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414712,0.000000,0.000000,0.250000,0,0);}
.v0_c00481{vertical-align:0.000000px;}
.ls23_c00481{letter-spacing:-3.437280px;}
.ls9_c00481{letter-spacing:-3.042277px;}
.lsb_c00481{letter-spacing:-2.993767px;}
.ls20_c00481{letter-spacing:-2.626477px;}
.ls14_c00481{letter-spacing:-2.605680px;}
.ls1f_c00481{letter-spacing:-2.245327px;}
.lsa_c00481{letter-spacing:-1.999404px;}
.ls18_c00481{letter-spacing:-1.580040px;}
.ls13_c00481{letter-spacing:-1.434517px;}
.ls22_c00481{letter-spacing:-0.684922px;}
.ls6_c00481{letter-spacing:-0.459043px;}
.lsf_c00481{letter-spacing:-0.382140px;}
.ls1_c00481{letter-spacing:0.000000px;}
.ls17_c00481{letter-spacing:0.863597px;}
.ls12_c00481{letter-spacing:0.938045px;}
.ls11_c00481{letter-spacing:1.019938px;}
.ls8_c00481{letter-spacing:1.384733px;}
.ls1a_c00481{letter-spacing:1.890900px;}
.ls4_c00481{letter-spacing:1.910700px;}
.ls2_c00481{letter-spacing:2.103710px;}
.ls1c_c00481{letter-spacing:2.198280px;}
.ls0_c00481{letter-spacing:2.521181px;}
.ls21_c00481{letter-spacing:3.455110px;}
.ls24_c00481{letter-spacing:3.465000px;}
.ls5_c00481{letter-spacing:3.524400px;}
.ls19_c00481{letter-spacing:3.595838px;}
.ls25_c00481{letter-spacing:3.677731px;}
.ls10_c00481{letter-spacing:3.702610px;}
.ls3_c00481{letter-spacing:3.722400px;}
.ls1b_c00481{letter-spacing:3.752110px;}
.lse_c00481{letter-spacing:3.821400px;}
.ls7_c00481{letter-spacing:3.920400px;}
.ls16_c00481{letter-spacing:4.078810px;}
.ls1d_c00481{letter-spacing:4.583700px;}
.lsd_c00481{letter-spacing:52.747398px;}
.lsc_c00481{letter-spacing:54.172998px;}
.ls15_c00481{letter-spacing:57.024198px;}
.ls1e_c00481{letter-spacing:62.726400px;}
.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;}
._6_c00481{margin-left:-9.009000px;}
._2_c00481{margin-left:-4.094640px;}
._4_c00481{width:2.889051px;}
._5_c00481{width:4.663885px;}
._1_c00481{width:31.156488px;}
._7_c00481{width:38.887200px;}
._0_c00481{width:42.048710px;}
._3_c00481{width:43.499016px;}
.fc0_c00481{color:transparent;}
.fs0_c00481{font-size:22.176000px;}
.fs21_c00481{font-size:26.928000px;}
.fs1b_c00481{font-size:27.720000px;}
.fs26_c00481{font-size:33.660000px;}
.fs25_c00481{font-size:34.650000px;}
.fs1c_c00481{font-size:37.818000px;}
.fs5_c00481{font-size:38.214000px;}
.fs1_c00481{font-size:39.204000px;}
.fs10_c00481{font-size:39.996198px;}
.fs14_c00481{font-size:40.986198px;}
.fs19_c00481{font-size:45.144000px;}
.fsf_c00481{font-size:51.876198px;}
.fsc_c00481{font-size:52.747398px;}
.fsb_c00481{font-size:54.172998px;}
.fs16_c00481{font-size:57.024198px;}
.fs20_c00481{font-size:59.400000px;}
.fs15_c00481{font-size:60.984000px;}
.fs13_c00481{font-size:61.380000px;}
.fs1f_c00481{font-size:62.726400px;}
.fs12_c00481{font-size:64.152198px;}
.fs7_c00481{font-size:66.528000px;}
.fs4_c00481{font-size:68.112198px;}
.fs22_c00481{font-size:69.102198px;}
.fs24_c00481{font-size:69.300000px;}
.fs6_c00481{font-size:70.488000px;}
.fs11_c00481{font-size:74.052198px;}
.fs3_c00481{font-size:74.448000px;}
.fse_c00481{font-size:74.844000px;}
.fs1d_c00481{font-size:75.042198px;}
.fsd_c00481{font-size:76.428000px;}
.fs8_c00481{font-size:78.408000px;}
.fs18_c00481{font-size:78.804000px;}
.fs17_c00481{font-size:81.576198px;}
.fsa_c00481{font-size:85.536198px;}
.fs9_c00481{font-size:86.922198px;}
.fs2_c00481{font-size:90.288000px;}
.fs1e_c00481{font-size:91.674000px;}
.fs1a_c00481{font-size:93.456198px;}
.fs23_c00481{font-size:98.208000px;}
.y0_c00481{bottom:0.000000px;}
.y3_c00481{bottom:25.924185px;}
.y26_c00481{bottom:52.297785px;}
.y1_c00481{bottom:76.500000px;}
.y25_c00481{bottom:86.868585px;}
.y24_c00481{bottom:119.305935px;}
.y23_c00481{bottom:151.381935px;}
.y22_c00481{bottom:184.165785px;}
.y21_c00481{bottom:217.315935px;}
.y20_c00481{bottom:249.030585px;}
.y1f_c00481{bottom:280.755135px;}
.y1e_c00481{bottom:289.303785px;}
.y1d_c00481{bottom:296.436735px;}
.y1c_c00481{bottom:312.118335px;}
.y1b_c00481{bottom:344.189385px;}
.y1a_c00481{bottom:376.265385px;}
.y19_c00481{bottom:407.989935px;}
.y18_c00481{bottom:439.709535px;}
.y17_c00481{bottom:470.716335px;}
.y16_c00481{bottom:493.169535px;}
.y15_c00481{bottom:499.228335px;}
.y14_c00481{bottom:502.430985px;}
.y13_c00481{bottom:534.150585px;}
.y12_c00481{bottom:566.231535px;}
.y11_c00481{bottom:589.392585px;}
.y2_c00481{bottom:600.445935px;}
.yf_c00481{bottom:630.027135px;}
.y10_c00481{bottom:631.452735px;}
.ye_c00481{bottom:661.390335px;}
.yd_c00481{bottom:692.753535px;}
.yc_c00481{bottom:725.185935px;}
.yb_c00481{bottom:756.549135px;}
.ya_c00481{bottom:788.620185px;}
.y9_c00481{bottom:820.344735px;}
.y8_c00481{bottom:852.415785px;}
.y6_c00481{bottom:883.422585px;}
.y7_c00481{bottom:889.129935px;}
.y5_c00481{bottom:915.147135px;}
.y4_c00481{bottom:1045.940985px;}
.h2_c00481{height:23.128875px;}
.h22_c00481{height:28.085063px;}
.h1b_c00481{height:28.911094px;}
.h28_c00481{height:33.035449px;}
.he_c00481{height:35.129767px;}
.hd_c00481{height:36.079217px;}
.h27_c00481{height:36.138867px;}
.h16_c00481{height:37.978116px;}
.h3_c00481{height:38.476582px;}
.h1c_c00481{height:39.442992px;}
.h7_c00481{height:39.856008px;}
.h14_c00481{height:40.225712px;}
.h1f_c00481{height:41.775782px;}
.h19_c00481{height:47.083781px;}
.h11_c00481{height:54.105253px;}
.h20_c00481{height:58.297852px;}
.h13_c00481{height:60.241113px;}
.h15_c00481{height:63.604406px;}
.h21_c00481{height:66.908738px;}
.h26_c00481{height:68.014160px;}
.h8_c00481{height:69.180117px;}
.h9_c00481{height:69.386625px;}
.h6_c00481{height:71.038894px;}
.h23_c00481{height:72.071433px;}
.h12_c00481{height:72.678183px;}
.h5_c00481{height:73.066641px;}
.h10_c00481{height:73.455293px;}
.h1d_c00481{height:73.649813px;}
.hf_c00481{height:75.009902px;}
.h24_c00481{height:75.029625px;}
.ha_c00481{height:76.953164px;}
.h18_c00481{height:77.341816px;}
.h17_c00481{height:80.062577px;}
.hc_c00481{height:83.949101px;}
.h4_c00481{height:88.612734px;}
.h1e_c00481{height:89.973018px;}
.hb_c00481{height:90.657136px;}
.h25_c00481{height:96.385781px;}
.h1a_c00481{height:97.471894px;}
.h1_c00481{height:1110.000000px;}
.h0_c00481{height:1263.000000px;}
.w1_c00481{width:760.500000px;}
.w0_c00481{width:892.500000px;}
.x0_c00481{left:0.000000px;}
.x3_c00481{left:24.938985px;}
.x2_c00481{left:46.753635px;}
.x1_c00481{left:66.000000px;}
.x65_c00481{left:87.779235px;}
.x98_c00481{left:88.853385px;}
.x1b_c00481{left:89.887935px;}
.x5_c00481{left:91.155135px;}
.x66_c00481{left:120.568035px;}
.x60_c00481{left:122.513385px;}
.x38_c00481{left:123.825135px;}
.x5c_c00481{left:132.012435px;}
.x4a_c00481{left:133.596435px;}
.x6_c00481{left:134.962635px;}
.x87_c00481{left:142.674735px;}
.x8d_c00481{left:143.808285px;}
.x39_c00481{left:145.313085px;}
.x6b_c00481{left:154.757685px;}
.x44_c00481{left:156.049635px;}
.x3e_c00481{left:165.830835px;}
.x4b_c00481{left:167.236635px;}
.x76_c00481{left:176.359485px;}
.x1c_c00481{left:177.587085px;}
.x23_c00481{left:180.735285px;}
.x70_c00481{left:188.125635px;}
.x12_c00481{left:189.318585px;}
.x4c_c00481{left:198.619635px;}
.x1d_c00481{left:200.045235px;}
.x88_c00481{left:208.346385px;}
.x7_c00481{left:211.103535px;}
.x71_c00481{left:221.142135px;}
.x24_c00481{left:222.151935px;}
.x8_c00481{left:223.409235px;}
.x7f_c00481{left:231.408435px;}
.x67_c00481{left:232.670685px;}
.x3f_c00481{left:235.838685px;}
.x53_c00481{left:244.431885px;}
.x1e_c00481{left:246.169335px;}
.x77_c00481{left:254.579385px;}
.x25_c00481{left:256.742535px;}
.x68_c00481{left:264.914985px;}
.x4d_c00481{left:265.984185px;}
.x13_c00481{left:267.399885px;}
.x9_c00481{left:268.904685px;}
.x89_c00481{left:276.131685px;}
.x45_c00481{left:277.740435px;}
.x84_c00481{left:288.080985px;}
.x3a_c00481{left:289.699635px;}
.x91_c00481{left:299.228385px;}
.x4e_c00481{left:300.262935px;}
.xa_c00481{left:301.267785px;}
.x8a_c00481{left:309.291735px;}
.x54_c00481{left:310.846035px;}
.x14_c00481{left:312.108285px;}
.x26_c00481{left:313.192335px;}
.x3b_c00481{left:322.097385px;}
.x78_c00481{left:333.333885px;}
.xb_c00481{left:334.833735px;}
.x8e_c00481{left:338.209635px;}
.x4f_c00481{left:343.318035px;}
.x1f_c00481{left:346.599885px;}
.x99_c00481{left:353.816985px;}
.x57_c00481{left:354.915885px;}
.x46_c00481{left:355.985085px;}
.x95_c00481{left:363.989235px;}
.x79_c00481{left:365.058435px;}
.x3c_c00481{left:367.340385px;}
.x6c_c00481{left:376.101885px;}
.x20_c00481{left:378.314535px;}
.x61_c00481{left:387.526485px;}
.x2d_c00481{left:388.590735px;}
.x47_c00481{left:389.808435px;}
.x7a_c00481{left:397.852185px;}
.x80_c00481{left:399.376785px;}
.x58_c00481{left:400.450935px;}
.x62_c00481{left:409.974735px;}
.xc_c00481{left:411.865635px;}
.x92_c00481{left:420.285585px;}
.x27_c00481{left:423.621885px;}
.x7b_c00481{left:431.363685px;}
.x6d_c00481{left:432.972435px;}
.x59_c00481{left:434.026785px;}
.x48_c00481{left:443.476335px;}
.x15_c00481{left:444.500985px;}
.x40_c00481{left:447.020535px;}
.x8b_c00481{left:454.301985px;}
.x28_c00481{left:455.890935px;}
.x2e_c00481{left:457.172985px;}
.x6e_c00481{left:465.340485px;}
.x16_c00481{left:468.211485px;}
.x72_c00481{left:475.552335px;}
.xd_c00481{left:478.586685px;}
.x74_c00481{left:487.729335px;}
.x21_c00481{left:489.803385px;}
.x81_c00481{left:498.515385px;}
.x50_c00481{left:499.619235px;}
.x29_c00481{left:500.831985px;}
.x63_c00481{left:509.405385px;}
.x2f_c00481{left:511.024035px;}
.xe_c00481{left:512.612985px;}
.x93_c00481{left:519.552885px;}
.x8f_c00481{left:520.919085px;}
.x96_c00481{left:530.071635px;}
.x7c_c00481{left:531.665535px;}
.x69_c00481{left:532.675335px;}
.x41_c00481{left:533.779185px;}
.x85_c00481{left:542.377335px;}
.x5a_c00481{left:543.619785px;}
.xf_c00481{left:544.753335px;}
.x55_c00481{left:546.248235px;}
.x5d_c00481{left:553.940535px;}
.x30_c00481{left:555.841335px;}
.x17_c00481{left:556.885785px;}
.x3d_c00481{left:563.756385px;}
.x8c_c00481{left:565.172085px;}
.x6a_c00481{left:566.241285px;}
.x42_c00481{left:568.023285px;}
.x9a_c00481{left:574.794885px;}
.x49_c00481{left:576.760035px;}
.x43_c00481{left:578.898435px;}
.x97_c00481{left:585.674985px;}
.x31_c00481{left:587.006535px;}
.x18_c00481{left:588.154935px;}
.x10_c00481{left:598.495485px;}
.x51_c00481{left:600.406185px;}
.x75_c00481{left:609.652785px;}
.x2a_c00481{left:611.806035px;}
.x5e_c00481{left:619.899285px;}
.x32_c00481{left:621.715935px;}
.x33_c00481{left:630.269535px;}
.x34_c00481{left:631.338735px;}
.x5b_c00481{left:633.477135px;}
.x73_c00481{left:640.941735px;}
.x2b_c00481{left:642.505935px;}
.x90_c00481{left:651.613935px;}
.x7d_c00481{left:653.559285px;}
.x19_c00481{left:656.727285px;}
.x82_c00481{left:662.701935px;}
.x11_c00481{left:665.147235px;}
.x35_c00481{left:675.527385px;}
.x2c_c00481{left:676.853985px;}
.x1a_c00481{left:678.462735px;}
.x7e_c00481{left:686.749035px;}
.x56_c00481{left:695.366985px;}
.x64_c00481{left:696.446085px;}
.x4_c00481{left:698.064735px;}
.x52_c00481{left:699.767535px;}
.x6f_c00481{left:707.598435px;}
.x86_c00481{left:709.177485px;}
.x36_c00481{left:720.438735px;}
.x22_c00481{left:721.938585px;}
.x83_c00481{left:726.309435px;}
.x94_c00481{left:730.046685px;}
.x5f_c00481{left:731.071335px;}
.x37_c00481{left:732.912735px;}
@media print{
.v0_c00481{vertical-align:0.000000pt;}
.ls23_c00481{letter-spacing:-3.055360pt;}
.ls9_c00481{letter-spacing:-2.704246pt;}
.lsb_c00481{letter-spacing:-2.661126pt;}
.ls20_c00481{letter-spacing:-2.334646pt;}
.ls14_c00481{letter-spacing:-2.316160pt;}
.ls1f_c00481{letter-spacing:-1.995846pt;}
.lsa_c00481{letter-spacing:-1.777248pt;}
.ls18_c00481{letter-spacing:-1.404480pt;}
.ls13_c00481{letter-spacing:-1.275126pt;}
.ls22_c00481{letter-spacing:-0.608819pt;}
.ls6_c00481{letter-spacing:-0.408038pt;}
.lsf_c00481{letter-spacing:-0.339680pt;}
.ls1_c00481{letter-spacing:0.000000pt;}
.ls17_c00481{letter-spacing:0.767642pt;}
.ls12_c00481{letter-spacing:0.833818pt;}
.ls11_c00481{letter-spacing:0.906611pt;}
.ls8_c00481{letter-spacing:1.230874pt;}
.ls1a_c00481{letter-spacing:1.680800pt;}
.ls4_c00481{letter-spacing:1.698400pt;}
.ls2_c00481{letter-spacing:1.869965pt;}
.ls1c_c00481{letter-spacing:1.954027pt;}
.ls0_c00481{letter-spacing:2.241050pt;}
.ls21_c00481{letter-spacing:3.071209pt;}
.ls24_c00481{letter-spacing:3.080000pt;}
.ls5_c00481{letter-spacing:3.132800pt;}
.ls19_c00481{letter-spacing:3.196301pt;}
.ls25_c00481{letter-spacing:3.269094pt;}
.ls10_c00481{letter-spacing:3.291209pt;}
.ls3_c00481{letter-spacing:3.308800pt;}
.ls1b_c00481{letter-spacing:3.335209pt;}
.lse_c00481{letter-spacing:3.396800pt;}
.ls7_c00481{letter-spacing:3.484800pt;}
.ls16_c00481{letter-spacing:3.625609pt;}
.ls1d_c00481{letter-spacing:4.074400pt;}
.lsd_c00481{letter-spacing:46.886576pt;}
.lsc_c00481{letter-spacing:48.153776pt;}
.ls15_c00481{letter-spacing:50.688176pt;}
.ls1e_c00481{letter-spacing:55.756800pt;}
.ws0_c00481{word-spacing:0.000000pt;}
._6_c00481{margin-left:-8.008000pt;}
._2_c00481{margin-left:-3.639680pt;}
._4_c00481{width:2.568045pt;}
._5_c00481{width:4.145676pt;}
._1_c00481{width:27.694656pt;}
._7_c00481{width:34.566400pt;}
._0_c00481{width:37.376631pt;}
._3_c00481{width:38.665792pt;}
.fs0_c00481{font-size:19.712000pt;}
.fs21_c00481{font-size:23.936000pt;}
.fs1b_c00481{font-size:24.640000pt;}
.fs26_c00481{font-size:29.920000pt;}
.fs25_c00481{font-size:30.800000pt;}
.fs1c_c00481{font-size:33.616000pt;}
.fs5_c00481{font-size:33.968000pt;}
.fs1_c00481{font-size:34.848000pt;}
.fs10_c00481{font-size:35.552176pt;}
.fs14_c00481{font-size:36.432176pt;}
.fs19_c00481{font-size:40.128000pt;}
.fsf_c00481{font-size:46.112176pt;}
.fsc_c00481{font-size:46.886576pt;}
.fsb_c00481{font-size:48.153776pt;}
.fs16_c00481{font-size:50.688176pt;}
.fs20_c00481{font-size:52.800000pt;}
.fs15_c00481{font-size:54.208000pt;}
.fs13_c00481{font-size:54.560000pt;}
.fs1f_c00481{font-size:55.756800pt;}
.fs12_c00481{font-size:57.024176pt;}
.fs7_c00481{font-size:59.136000pt;}
.fs4_c00481{font-size:60.544176pt;}
.fs22_c00481{font-size:61.424176pt;}
.fs24_c00481{font-size:61.600000pt;}
.fs6_c00481{font-size:62.656000pt;}
.fs11_c00481{font-size:65.824176pt;}
.fs3_c00481{font-size:66.176000pt;}
.fse_c00481{font-size:66.528000pt;}
.fs1d_c00481{font-size:66.704176pt;}
.fsd_c00481{font-size:67.936000pt;}
.fs8_c00481{font-size:69.696000pt;}
.fs18_c00481{font-size:70.048000pt;}
.fs17_c00481{font-size:72.512176pt;}
.fsa_c00481{font-size:76.032176pt;}
.fs9_c00481{font-size:77.264176pt;}
.fs2_c00481{font-size:80.256000pt;}
.fs1e_c00481{font-size:81.488000pt;}
.fs1a_c00481{font-size:83.072176pt;}
.fs23_c00481{font-size:87.296000pt;}
.y0_c00481{bottom:0.000000pt;}
.y3_c00481{bottom:23.043720pt;}
.y26_c00481{bottom:46.486920pt;}
.y1_c00481{bottom:68.000000pt;}
.y25_c00481{bottom:77.216520pt;}
.y24_c00481{bottom:106.049720pt;}
.y23_c00481{bottom:134.561720pt;}
.y22_c00481{bottom:163.702920pt;}
.y21_c00481{bottom:193.169720pt;}
.y20_c00481{bottom:221.360520pt;}
.y1f_c00481{bottom:249.560120pt;}
.y1e_c00481{bottom:257.158920pt;}
.y1d_c00481{bottom:263.499320pt;}
.y1c_c00481{bottom:277.438520pt;}
.y1b_c00481{bottom:305.946120pt;}
.y1a_c00481{bottom:334.458120pt;}
.y19_c00481{bottom:362.657720pt;}
.y18_c00481{bottom:390.852920pt;}
.y17_c00481{bottom:418.414520pt;}
.y16_c00481{bottom:438.372920pt;}
.y15_c00481{bottom:443.758520pt;}
.y14_c00481{bottom:446.605320pt;}
.y13_c00481{bottom:474.800520pt;}
.y12_c00481{bottom:503.316920pt;}
.y11_c00481{bottom:523.904520pt;}
.y2_c00481{bottom:533.729720pt;}
.yf_c00481{bottom:560.024120pt;}
.y10_c00481{bottom:561.291320pt;}
.ye_c00481{bottom:587.902520pt;}
.yd_c00481{bottom:615.780920pt;}
.yc_c00481{bottom:644.609720pt;}
.yb_c00481{bottom:672.488120pt;}
.ya_c00481{bottom:700.995720pt;}
.y9_c00481{bottom:729.195320pt;}
.y8_c00481{bottom:757.702920pt;}
.y6_c00481{bottom:785.264520pt;}
.y7_c00481{bottom:790.337720pt;}
.y5_c00481{bottom:813.464120pt;}
.y4_c00481{bottom:929.725320pt;}
.h2_c00481{height:20.559000pt;}
.h22_c00481{height:24.964500pt;}
.h1b_c00481{height:25.698750pt;}
.h28_c00481{height:29.364844pt;}
.he_c00481{height:31.226460pt;}
.hd_c00481{height:32.070415pt;}
.h27_c00481{height:32.123438pt;}
.h16_c00481{height:33.758325pt;}
.h3_c00481{height:34.201406pt;}
.h1c_c00481{height:35.060438pt;}
.h7_c00481{height:35.427563pt;}
.h14_c00481{height:35.756188pt;}
.h1f_c00481{height:37.134029pt;}
.h19_c00481{height:41.852250pt;}
.h11_c00481{height:48.093559pt;}
.h20_c00481{height:51.820313pt;}
.h13_c00481{height:53.547656pt;}
.h15_c00481{height:56.537250pt;}
.h21_c00481{height:59.474434pt;}
.h26_c00481{height:60.457031pt;}
.h8_c00481{height:61.493438pt;}
.h9_c00481{height:61.677000pt;}
.h6_c00481{height:63.145684pt;}
.h23_c00481{height:64.063496pt;}
.h12_c00481{height:64.602829pt;}
.h5_c00481{height:64.948125pt;}
.h10_c00481{height:65.293594pt;}
.h1d_c00481{height:65.466501pt;}
.hf_c00481{height:66.675469pt;}
.h24_c00481{height:66.693000pt;}
.ha_c00481{height:68.402813pt;}
.h18_c00481{height:68.748281pt;}
.h17_c00481{height:71.166735pt;}
.hc_c00481{height:74.621423pt;}
.h4_c00481{height:78.766875pt;}
.h1e_c00481{height:79.976016pt;}
.hb_c00481{height:80.584121pt;}
.h25_c00481{height:85.676250pt;}
.h1a_c00481{height:86.641684pt;}
.h1_c00481{height:986.666667pt;}
.h0_c00481{height:1122.666667pt;}
.w1_c00481{width:676.000000pt;}
.w0_c00481{width:793.333333pt;}
.x0_c00481{left:0.000000pt;}
.x3_c00481{left:22.167987pt;}
.x2_c00481{left:41.558787pt;}
.x1_c00481{left:58.666667pt;}
.x65_c00481{left:78.025987pt;}
.x98_c00481{left:78.980787pt;}
.x1b_c00481{left:79.900387pt;}
.x5_c00481{left:81.026787pt;}
.x66_c00481{left:107.171587pt;}
.x60_c00481{left:108.900787pt;}
.x38_c00481{left:110.066787pt;}
.x5c_c00481{left:117.344387pt;}
.x4a_c00481{left:118.752387pt;}
.x6_c00481{left:119.966787pt;}
.x87_c00481{left:126.821987pt;}
.x8d_c00481{left:127.829587pt;}
.x39_c00481{left:129.167187pt;}
.x6b_c00481{left:137.562387pt;}
.x44_c00481{left:138.710787pt;}
.x3e_c00481{left:147.405187pt;}
.x4b_c00481{left:148.654787pt;}
.x76_c00481{left:156.763987pt;}
.x1c_c00481{left:157.855187pt;}
.x23_c00481{left:160.653587pt;}
.x70_c00481{left:167.222787pt;}
.x12_c00481{left:168.283187pt;}
.x4c_c00481{left:176.550787pt;}
.x1d_c00481{left:177.817987pt;}
.x88_c00481{left:185.196787pt;}
.x7_c00481{left:187.647587pt;}
.x71_c00481{left:196.570787pt;}
.x24_c00481{left:197.468387pt;}
.x8_c00481{left:198.585987pt;}
.x7f_c00481{left:205.696387pt;}
.x67_c00481{left:206.818387pt;}
.x3f_c00481{left:209.634387pt;}
.x53_c00481{left:217.272787pt;}
.x1e_c00481{left:218.817187pt;}
.x77_c00481{left:226.292787pt;}
.x25_c00481{left:228.215587pt;}
.x68_c00481{left:235.479987pt;}
.x4d_c00481{left:236.430387pt;}
.x13_c00481{left:237.688787pt;}
.x9_c00481{left:239.026387pt;}
.x89_c00481{left:245.450387pt;}
.x45_c00481{left:246.880387pt;}
.x84_c00481{left:256.071987pt;}
.x3a_c00481{left:257.510787pt;}
.x91_c00481{left:265.980787pt;}
.x4e_c00481{left:266.900387pt;}
.xa_c00481{left:267.793587pt;}
.x8a_c00481{left:274.925987pt;}
.x54_c00481{left:276.307587pt;}
.x14_c00481{left:277.429587pt;}
.x26_c00481{left:278.393187pt;}
.x3b_c00481{left:286.308787pt;}
.x78_c00481{left:296.296787pt;}
.xb_c00481{left:297.629987pt;}
.x8e_c00481{left:300.630787pt;}
.x4f_c00481{left:305.171587pt;}
.x1f_c00481{left:308.088787pt;}
.x99_c00481{left:314.503987pt;}
.x57_c00481{left:315.480787pt;}
.x46_c00481{left:316.431187pt;}
.x95_c00481{left:323.545987pt;}
.x79_c00481{left:324.496387pt;}
.x3c_c00481{left:326.524787pt;}
.x6c_c00481{left:334.312787pt;}
.x20_c00481{left:336.279587pt;}
.x61_c00481{left:344.467987pt;}
.x2d_c00481{left:345.413987pt;}
.x47_c00481{left:346.496387pt;}
.x7a_c00481{left:353.646387pt;}
.x80_c00481{left:355.001587pt;}
.x58_c00481{left:355.956387pt;}
.x62_c00481{left:364.421987pt;}
.xc_c00481{left:366.102787pt;}
.x92_c00481{left:373.587187pt;}
.x27_c00481{left:376.552787pt;}
.x7b_c00481{left:383.434387pt;}
.x6d_c00481{left:384.864387pt;}
.x59_c00481{left:385.801587pt;}
.x48_c00481{left:394.201187pt;}
.x15_c00481{left:395.111987pt;}
.x40_c00481{left:397.351587pt;}
.x8b_c00481{left:403.823987pt;}
.x28_c00481{left:405.236387pt;}
.x2e_c00481{left:406.375987pt;}
.x6e_c00481{left:413.635987pt;}
.x16_c00481{left:416.187987pt;}
.x72_c00481{left:422.713187pt;}
.xd_c00481{left:425.410387pt;}
.x74_c00481{left:433.537187pt;}
.x21_c00481{left:435.380787pt;}
.x81_c00481{left:443.124787pt;}
.x50_c00481{left:444.105987pt;}
.x29_c00481{left:445.183987pt;}
.x63_c00481{left:452.804787pt;}
.x2f_c00481{left:454.243587pt;}
.xe_c00481{left:455.655987pt;}
.x93_c00481{left:461.824787pt;}
.x8f_c00481{left:463.039187pt;}
.x96_c00481{left:471.174787pt;}
.x7c_c00481{left:472.591587pt;}
.x69_c00481{left:473.489187pt;}
.x41_c00481{left:474.470387pt;}
.x85_c00481{left:482.113187pt;}
.x5a_c00481{left:483.217587pt;}
.xf_c00481{left:484.225187pt;}
.x55_c00481{left:485.553987pt;}
.x5d_c00481{left:492.391587pt;}
.x30_c00481{left:494.081187pt;}
.x17_c00481{left:495.009587pt;}
.x3d_c00481{left:501.116787pt;}
.x8c_c00481{left:502.375187pt;}
.x6a_c00481{left:503.325587pt;}
.x42_c00481{left:504.909587pt;}
.x9a_c00481{left:510.928787pt;}
.x49_c00481{left:512.675587pt;}
.x43_c00481{left:514.576387pt;}
.x97_c00481{left:520.599987pt;}
.x31_c00481{left:521.783587pt;}
.x18_c00481{left:522.804387pt;}
.x10_c00481{left:531.995987pt;}
.x51_c00481{left:533.694387pt;}
.x75_c00481{left:541.913587pt;}
.x2a_c00481{left:543.827587pt;}
.x5e_c00481{left:551.021587pt;}
.x32_c00481{left:552.636387pt;}
.x33_c00481{left:560.239587pt;}
.x34_c00481{left:561.189987pt;}
.x5b_c00481{left:563.090787pt;}
.x73_c00481{left:569.725987pt;}
.x2b_c00481{left:571.116387pt;}
.x90_c00481{left:579.212387pt;}
.x7d_c00481{left:580.941587pt;}
.x19_c00481{left:583.757587pt;}
.x82_c00481{left:589.068387pt;}
.x11_c00481{left:591.241987pt;}
.x35_c00481{left:600.468787pt;}
.x2c_c00481{left:601.647987pt;}
.x1a_c00481{left:603.077987pt;}
.x7e_c00481{left:610.443587pt;}
.x56_c00481{left:618.103987pt;}
.x64_c00481{left:619.063187pt;}
.x4_c00481{left:620.501987pt;}
.x52_c00481{left:622.015587pt;}
.x6f_c00481{left:628.976387pt;}
.x86_c00481{left:630.379987pt;}
.x36_c00481{left:640.389987pt;}
.x22_c00481{left:641.723187pt;}
.x83_c00481{left:645.608387pt;}
.x94_c00481{left:648.930387pt;}
.x5f_c00481{left:649.841187pt;}
.x37_c00481{left:651.477987pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5ebad1b5435b1e0b89cee9e0.woff2')format("woff");}.ff1_c00482{font-family:ff1_c00482;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00482;src:url('chunks/assets/font_7cc9abd37af1570e90bde815.woff2')format("woff");}.ff2_c00482{font-family:ff2_c00482;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00482;src:url('chunks/assets/font_e3a9e35fd43cdedfe39e1941.woff2')format("woff");}.ff3_c00482{font-family:ff3_c00482;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00482;src:url('chunks/assets/font_33723aae311531ce22b30bcd.woff2')format("woff");}.ff4_c00482{font-family:ff4_c00482;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00482;src:url('chunks/assets/font_bb26201f4fd0c23243855e84.woff2')format("woff");}.ff5_c00482{font-family:ff5_c00482;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m9e_c00482{transform:matrix(0.108731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108731,0.000000,0.000000,0.250000,0,0);}
.m9f_c00482{transform:matrix(0.113096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113096,0.000000,0.000000,0.250000,0,0);}
.m4c_c00482{transform:matrix(0.126894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126894,0.000000,0.000000,0.250000,0,0);}
.mad_c00482{transform:matrix(0.127198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127198,0.000000,0.000000,0.250000,0,0);}
.mac_c00482{transform:matrix(0.150094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150094,0.000000,0.000000,0.250000,0,0);}
.m9b_c00482{transform:matrix(0.161841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161841,0.000000,0.000000,0.250000,0,0);}
.m75_c00482{transform:matrix(0.166666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166666,0.000000,0.000000,0.250000,0,0);}
.m89_c00482{transform:matrix(0.174999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174999,0.000000,0.000000,0.250000,0,0);}
.ma1_c00482{transform:matrix(0.177381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177381,0.000000,0.000000,0.250000,0,0);}
.ma2_c00482{transform:matrix(0.184068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184068,0.000000,0.000000,0.250000,0,0);}
.ma4_c00482{transform:matrix(0.184524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184524,0.000000,0.000000,0.250000,0,0);}
.ma5_c00482{transform:matrix(0.190171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190171,0.000000,0.000000,0.250000,0,0);}
.ma3_c00482{transform:matrix(0.190476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190476,0.000000,0.000000,0.250000,0,0);}
.m7a_c00482{transform:matrix(0.195176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195176,0.000000,0.000000,0.250000,0,0);}
.m4b_c00482{transform:matrix(0.219885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219885,0.000000,0.000000,0.250000,0,0);}
.m6c_c00482{transform:matrix(0.228453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228453,0.000000,0.000000,0.250000,0,0);}
.m93_c00482{transform:matrix(0.240973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240973,0.000000,0.000000,0.250000,0,0);}
.ma0_c00482{transform:matrix(0.241101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241101,0.000000,0.000000,0.250000,0,0);}
.m49_c00482{transform:matrix(0.245322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245322,0.000000,0.000000,0.250000,0,0);}
.ma_c00482{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.mae_c00482{transform:matrix(0.251345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251345,0.000000,0.000000,0.250000,0,0);}
.m57_c00482{transform:matrix(0.252123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252123,0.000000,0.000000,0.250000,0,0);}
.m99_c00482{transform:matrix(0.252662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252662,0.000000,0.000000,0.250000,0,0);}
.m69_c00482{transform:matrix(0.253539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253539,0.000000,0.000000,0.250000,0,0);}
.m78_c00482{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00482{transform:matrix(0.254365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254365,0.000000,0.000000,0.250000,0,0);}
.m3f_c00482{transform:matrix(0.254655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254655,0.000000,0.000000,0.250000,0,0);}
.m10_c00482{transform:matrix(0.257088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257088,0.000000,0.000000,0.250000,0,0);}
.m20_c00482{transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);}
.m67_c00482{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m66_c00482{transform:matrix(0.259429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259429,0.000000,0.000000,0.250000,0,0);}
.m26_c00482{transform:matrix(0.259823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259823,0.000000,0.000000,0.250000,0,0);}
.m73_c00482{transform:matrix(0.260840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260840,0.000000,0.000000,0.250000,0,0);}
.m90_c00482{transform:matrix(0.260872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260872,0.000000,0.000000,0.250000,0,0);}
.m12_c00482{transform:matrix(0.263543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263543,0.000000,0.000000,0.250000,0,0);}
.m5a_c00482{transform:matrix(0.265039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265039,0.000000,0.000000,0.250000,0,0);}
.m40_c00482{transform:matrix(0.265696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265696,0.000000,0.000000,0.250000,0,0);}
.m7f_c00482{transform:matrix(0.268088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268088,0.000000,0.000000,0.250000,0,0);}
.m54_c00482{transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);}
.m47_c00482{transform:matrix(0.268711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268711,0.000000,0.000000,0.250000,0,0);}
.m9a_c00482{transform:matrix(0.269411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269411,0.000000,0.000000,0.250000,0,0);}
.mc_c00482{transform:matrix(0.269413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269413,0.000000,0.000000,0.250000,0,0);}
.m85_c00482{transform:matrix(0.270154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270154,0.000000,0.000000,0.250000,0,0);}
.ma8_c00482{transform:matrix(0.270182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270182,0.000000,0.000000,0.250000,0,0);}
.mb_c00482{transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);}
.m79_c00482{transform:matrix(0.270998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270998,0.000000,0.000000,0.250000,0,0);}
.m9c_c00482{transform:matrix(0.271217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271217,0.000000,0.000000,0.250000,0,0);}
.m98_c00482{transform:matrix(0.271808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271808,0.000000,0.000000,0.250000,0,0);}
.m70_c00482{transform:matrix(0.272404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272404,0.000000,0.000000,0.250000,0,0);}
.m1_c00482{transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);}
.m77_c00482{transform:matrix(0.273311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273311,0.000000,0.000000,0.250000,0,0);}
.m11_c00482{transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);}
.m34_c00482{transform:matrix(0.273926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273926,0.000000,0.000000,0.250000,0,0);}
.maa_c00482{transform:matrix(0.274391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274391,0.000000,0.000000,0.250000,0,0);}
.me_c00482{transform:matrix(0.274610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274610,0.000000,0.000000,0.250000,0,0);}
.m92_c00482{transform:matrix(0.275445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275445,0.000000,0.000000,0.250000,0,0);}
.m22_c00482{transform:matrix(0.275890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275890,0.000000,0.000000,0.250000,0,0);}
.md_c00482{transform:matrix(0.275933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275933,0.000000,0.000000,0.250000,0,0);}
.m74_c00482{transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);}
.m5_c00482{transform:matrix(0.276156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276156,0.000000,0.000000,0.250000,0,0);}
.m2f_c00482{transform:matrix(0.276672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276672,0.000000,0.000000,0.250000,0,0);}
.m59_c00482{transform:matrix(0.276785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276785,0.000000,0.000000,0.250000,0,0);}
.m8f_c00482{transform:matrix(0.276976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276976,0.000000,0.000000,0.250000,0,0);}
.m4_c00482{transform:matrix(0.277257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277257,0.000000,0.000000,0.250000,0,0);}
.m3c_c00482{transform:matrix(0.277732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277732,0.000000,0.000000,0.250000,0,0);}
.m1b_c00482{transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);}
.m45_c00482{transform:matrix(0.277883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277883,0.000000,0.000000,0.250000,0,0);}
.m94_c00482{transform:matrix(0.279112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279112,0.000000,0.000000,0.250000,0,0);}
.m3b_c00482{transform:matrix(0.279746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279746,0.000000,0.000000,0.250000,0,0);}
.m3e_c00482{transform:matrix(0.280232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280232,0.000000,0.000000,0.250000,0,0);}
.m4a_c00482{transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);}
.m58_c00482{transform:matrix(0.280816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280816,0.000000,0.000000,0.250000,0,0);}
.m55_c00482{transform:matrix(0.281171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281171,0.000000,0.000000,0.250000,0,0);}
.m7c_c00482{transform:matrix(0.281531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281531,0.000000,0.000000,0.250000,0,0);}
.m7b_c00482{transform:matrix(0.281556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281556,0.000000,0.000000,0.250000,0,0);}
.m31_c00482{transform:matrix(0.282975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282975,0.000000,0.000000,0.250000,0,0);}
.m28_c00482{transform:matrix(0.283545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283545,0.000000,0.000000,0.250000,0,0);}
.m53_c00482{transform:matrix(0.283944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283944,0.000000,0.000000,0.250000,0,0);}
.m1d_c00482{transform:matrix(0.284724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284724,0.000000,0.000000,0.250000,0,0);}
.m8_c00482{transform:matrix(0.286050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286050,0.000000,0.000000,0.250000,0,0);}
.m5b_c00482{transform:matrix(0.287471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287471,0.000000,0.000000,0.250000,0,0);}
.m3d_c00482{transform:matrix(0.288008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288008,0.000000,0.000000,0.250000,0,0);}
.m5c_c00482{transform:matrix(0.288383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288383,0.000000,0.000000,0.250000,0,0);}
.m9_c00482{transform:matrix(0.290200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290200,0.000000,0.000000,0.250000,0,0);}
.m8a_c00482{transform:matrix(0.290624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290624,0.000000,0.000000,0.250000,0,0);}
.m6d_c00482{transform:matrix(0.291495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291495,0.000000,0.000000,0.250000,0,0);}
.m37_c00482{transform:matrix(0.292727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292727,0.000000,0.000000,0.250000,0,0);}
.m1a_c00482{transform:matrix(0.295139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295139,0.000000,0.000000,0.250000,0,0);}
.m72_c00482{transform:matrix(0.296158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296158,0.000000,0.000000,0.250000,0,0);}
.m50_c00482{transform:matrix(0.296213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296213,0.000000,0.000000,0.250000,0,0);}
.m16_c00482{transform:matrix(0.296335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296335,0.000000,0.000000,0.250000,0,0);}
.m91_c00482{transform:matrix(0.297613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297613,0.000000,0.000000,0.250000,0,0);}
.m87_c00482{transform:matrix(0.297966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297966,0.000000,0.000000,0.250000,0,0);}
.m27_c00482{transform:matrix(0.298686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298686,0.000000,0.000000,0.250000,0,0);}
.m29_c00482{transform:matrix(0.298965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298965,0.000000,0.000000,0.250000,0,0);}
.mab_c00482{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00482{transform:matrix(0.300910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300910,0.000000,0.000000,0.250000,0,0);}
.m71_c00482{transform:matrix(0.300951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300951,0.000000,0.000000,0.250000,0,0);}
.m2a_c00482{transform:matrix(0.301885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301885,0.000000,0.000000,0.250000,0,0);}
.m68_c00482{transform:matrix(0.302489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302489,0.000000,0.000000,0.250000,0,0);}
.m0_c00482{transform:matrix(0.302556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302556,0.000000,0.000000,0.250000,0,0);}
.m80_c00482{transform:matrix(0.302736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302736,0.000000,0.000000,0.250000,0,0);}
.m65_c00482{transform:matrix(0.303126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303126,0.000000,0.000000,0.250000,0,0);}
.m84_c00482{transform:matrix(0.303836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303836,0.000000,0.000000,0.250000,0,0);}
.m6e_c00482{transform:matrix(0.304175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304175,0.000000,0.000000,0.250000,0,0);}
.m32_c00482{transform:matrix(0.304429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304429,0.000000,0.000000,0.250000,0,0);}
.m8c_c00482{transform:matrix(0.305009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305009,0.000000,0.000000,0.250000,0,0);}
.m6b_c00482{transform:matrix(0.305054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305054,0.000000,0.000000,0.250000,0,0);}
.m8d_c00482{transform:matrix(0.305475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305475,0.000000,0.000000,0.250000,0,0);}
.m52_c00482{transform:matrix(0.305966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305966,0.000000,0.000000,0.250000,0,0);}
.mf_c00482{transform:matrix(0.306031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306031,0.000000,0.000000,0.250000,0,0);}
.m17_c00482{transform:matrix(0.307690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307690,0.000000,0.000000,0.250000,0,0);}
.m95_c00482{transform:matrix(0.307864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307864,0.000000,0.000000,0.250000,0,0);}
.m4d_c00482{transform:matrix(0.307994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307994,0.000000,0.000000,0.250000,0,0);}
.m23_c00482{transform:matrix(0.308160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308160,0.000000,0.000000,0.250000,0,0);}
.m5e_c00482{transform:matrix(0.308650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308650,0.000000,0.000000,0.250000,0,0);}
.m19_c00482{transform:matrix(0.308750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308750,0.000000,0.000000,0.250000,0,0);}
.m83_c00482{transform:matrix(0.309405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309405,0.000000,0.000000,0.250000,0,0);}
.m61_c00482{transform:matrix(0.309637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309637,0.000000,0.000000,0.250000,0,0);}
.m86_c00482{transform:matrix(0.310496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310496,0.000000,0.000000,0.250000,0,0);}
.m62_c00482{transform:matrix(0.311603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311603,0.000000,0.000000,0.250000,0,0);}
.m46_c00482{transform:matrix(0.313302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313302,0.000000,0.000000,0.250000,0,0);}
.m97_c00482{transform:matrix(0.313872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313872,0.000000,0.000000,0.250000,0,0);}
.m33_c00482{transform:matrix(0.314201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314201,0.000000,0.000000,0.250000,0,0);}
.m13_c00482{transform:matrix(0.315527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315527,0.000000,0.000000,0.250000,0,0);}
.m6a_c00482{transform:matrix(0.316301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316301,0.000000,0.000000,0.250000,0,0);}
.m51_c00482{transform:matrix(0.319203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319203,0.000000,0.000000,0.250000,0,0);}
.m88_c00482{transform:matrix(0.319887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319887,0.000000,0.000000,0.250000,0,0);}
.m7d_c00482{transform:matrix(0.319982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319982,0.000000,0.000000,0.250000,0,0);}
.m14_c00482{transform:matrix(0.320571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320571,0.000000,0.000000,0.250000,0,0);}
.m5f_c00482{transform:matrix(0.321067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321067,0.000000,0.000000,0.250000,0,0);}
.m82_c00482{transform:matrix(0.321860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321860,0.000000,0.000000,0.250000,0,0);}
.m44_c00482{transform:matrix(0.322843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322843,0.000000,0.000000,0.250000,0,0);}
.m18_c00482{transform:matrix(0.324396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324396,0.000000,0.000000,0.250000,0,0);}
.ma9_c00482{transform:matrix(0.324853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324853,0.000000,0.000000,0.250000,0,0);}
.m7e_c00482{transform:matrix(0.325614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325614,0.000000,0.000000,0.250000,0,0);}
.m63_c00482{transform:matrix(0.325664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325664,0.000000,0.000000,0.250000,0,0);}
.m76_c00482{transform:matrix(0.326483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326483,0.000000,0.000000,0.250000,0,0);}
.ma6_c00482{transform:matrix(0.326923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326923,0.000000,0.000000,0.250000,0,0);}
.m36_c00482{transform:matrix(0.327021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327021,0.000000,0.000000,0.250000,0,0);}
.m8e_c00482{transform:matrix(0.327286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327286,0.000000,0.000000,0.250000,0,0);}
.m48_c00482{transform:matrix(0.328282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328282,0.000000,0.000000,0.250000,0,0);}
.m1e_c00482{transform:matrix(0.328497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328497,0.000000,0.000000,0.250000,0,0);}
.m39_c00482{transform:matrix(0.328864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328864,0.000000,0.000000,0.250000,0,0);}
.m4f_c00482{transform:matrix(0.331581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331581,0.000000,0.000000,0.250000,0,0);}
.m1c_c00482{transform:matrix(0.335230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335230,0.000000,0.000000,0.250000,0,0);}
.m4e_c00482{transform:matrix(0.335396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335396,0.000000,0.000000,0.250000,0,0);}
.m6_c00482{transform:matrix(0.336416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336416,0.000000,0.000000,0.250000,0,0);}
.m2c_c00482{transform:matrix(0.337998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337998,0.000000,0.000000,0.250000,0,0);}
.m35_c00482{transform:matrix(0.339063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339063,0.000000,0.000000,0.250000,0,0);}
.m3_c00482{transform:matrix(0.339159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339159,0.000000,0.000000,0.250000,0,0);}
.m64_c00482{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m38_c00482{transform:matrix(0.341040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341040,0.000000,0.000000,0.250000,0,0);}
.m30_c00482{transform:matrix(0.341523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341523,0.000000,0.000000,0.250000,0,0);}
.m5d_c00482{transform:matrix(0.342830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342830,0.000000,0.000000,0.250000,0,0);}
.m8b_c00482{transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);}
.m6f_c00482{transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);}
.m3a_c00482{transform:matrix(0.345734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345734,0.000000,0.000000,0.250000,0,0);}
.m24_c00482{transform:matrix(0.346633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346633,0.000000,0.000000,0.250000,0,0);}
.m43_c00482{transform:matrix(0.347328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347328,0.000000,0.000000,0.250000,0,0);}
.m41_c00482{transform:matrix(0.347408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347408,0.000000,0.000000,0.250000,0,0);}
.m7_c00482{transform:matrix(0.350364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350364,0.000000,0.000000,0.250000,0,0);}
.m42_c00482{transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);}
.m21_c00482{transform:matrix(0.355252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355252,0.000000,0.000000,0.250000,0,0);}
.m81_c00482{transform:matrix(0.357032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357032,0.000000,0.000000,0.250000,0,0);}
.m9d_c00482{transform:matrix(0.359239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359239,0.000000,0.000000,0.250000,0,0);}
.m15_c00482{transform:matrix(0.359524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359524,0.000000,0.000000,0.250000,0,0);}
.ma7_c00482{transform:matrix(0.359755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359755,0.000000,0.000000,0.250000,0,0);}
.m1f_c00482{transform:matrix(0.359998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359998,0.000000,0.000000,0.250000,0,0);}
.m25_c00482{transform:matrix(0.363147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363147,0.000000,0.000000,0.250000,0,0);}
.m96_c00482{transform:matrix(0.371370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371370,0.000000,0.000000,0.250000,0,0);}
.m2d_c00482{transform:matrix(0.378805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378805,0.000000,0.000000,0.250000,0,0);}
.m56_c00482{transform:matrix(0.382011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382011,0.000000,0.000000,0.250000,0,0);}
.m2_c00482{transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);}
.m60_c00482{transform:matrix(0.414764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414764,0.000000,0.000000,0.250000,0,0);}
.v1_c00482{vertical-align:-14.236200px;}
.v0_c00482{vertical-align:0.000000px;}
.lsf_c00482{letter-spacing:-2.875950px;}
.ls1e_c00482{letter-spacing:-2.772000px;}
.ls14_c00482{letter-spacing:-2.647267px;}
.ls23_c00482{letter-spacing:-2.571030px;}
.ls25_c00482{letter-spacing:-2.418577px;}
.lse_c00482{letter-spacing:-2.223704px;}
.ls21_c00482{letter-spacing:-1.701814px;}
.ls13_c00482{letter-spacing:-0.030254px;}
.ls4_c00482{letter-spacing:0.000000px;}
.ls0_c00482{letter-spacing:0.058766px;}
.ls1_c00482{letter-spacing:0.537017px;}
.ls24_c00482{letter-spacing:1.565669px;}
.ls16_c00482{letter-spacing:1.830396px;}
.ls11_c00482{letter-spacing:2.034614px;}
.ls1a_c00482{letter-spacing:2.238831px;}
.lsa_c00482{letter-spacing:2.683857px;}
.lsc_c00482{letter-spacing:2.890810px;}
.ls26_c00482{letter-spacing:2.914560px;}
.ls2_c00482{letter-spacing:3.057912px;}
.ls20_c00482{letter-spacing:3.078900px;}
.ls1f_c00482{letter-spacing:3.306610px;}
.lsd_c00482{letter-spacing:3.316500px;}
.ls18_c00482{letter-spacing:3.494700px;}
.ls9_c00482{letter-spacing:3.524400px;}
.ls12_c00482{letter-spacing:3.643200px;}
.ls22_c00482{letter-spacing:3.672900px;}
.ls7_c00482{letter-spacing:3.702610px;}
.ls8_c00482{letter-spacing:3.762000px;}
.ls3_c00482{letter-spacing:3.781810px;}
.ls5_c00482{letter-spacing:3.801610px;}
.lsb_c00482{letter-spacing:3.900610px;}
.ls6_c00482{letter-spacing:3.920400px;}
.ls19_c00482{letter-spacing:3.960000px;}
.ls1d_c00482{letter-spacing:4.068900px;}
.ls1c_c00482{letter-spacing:4.118400px;}
.ls17_c00482{letter-spacing:54.172998px;}
.ls27_c00482{letter-spacing:55.598598px;}
.ls1b_c00482{letter-spacing:57.024198px;}
.ls15_c00482{letter-spacing:59.875398px;}
.ls10_c00482{letter-spacing:62.726400px;}
.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;}
}
.ws1_c00482{word-spacing:-22.659912px;}
.ws0_c00482{word-spacing:-3.055788px;}
.ws2_c00482{word-spacing:0.000000px;}
._2_c00482{margin-left:-5.823923px;}
._1_c00482{width:6.274973px;}
._3_c00482{width:10.802880px;}
._0_c00482{width:37.539497px;}
.fc0_c00482{color:transparent;}
.fs16_c00482{font-size:22.176000px;}
.fsb_c00482{font-size:25.146000px;}
.fs9_c00482{font-size:27.720000px;}
.fsf_c00482{font-size:33.264000px;}
.fs18_c00482{font-size:44.946198px;}
.fs13_c00482{font-size:54.172998px;}
.fs1d_c00482{font-size:55.440000px;}
.fs1f_c00482{font-size:55.598598px;}
.fs17_c00482{font-size:57.024198px;}
.fsa_c00482{font-size:57.816198px;}
.fs12_c00482{font-size:59.875398px;}
.fs1c_c00482{font-size:61.578000px;}
.fsd_c00482{font-size:62.568000px;}
.fs11_c00482{font-size:62.726400px;}
.fs1b_c00482{font-size:66.132198px;}
.fsc_c00482{font-size:66.330000px;}
.fs1e_c00482{font-size:69.102198px;}
.fs14_c00482{font-size:69.894000px;}
.fs20_c00482{font-size:70.092198px;}
.fs6_c00482{font-size:70.488000px;}
.fs2_c00482{font-size:72.864000px;}
.fse_c00482{font-size:73.458000px;}
.fs4_c00482{font-size:74.052198px;}
.fs5_c00482{font-size:75.240000px;}
.fs0_c00482{font-size:75.636198px;}
.fs1_c00482{font-size:76.032198px;}
.fs8_c00482{font-size:78.012198px;}
.fs3_c00482{font-size:78.408000px;}
.fs15_c00482{font-size:79.200000px;}
.fs1a_c00482{font-size:81.378000px;}
.fs7_c00482{font-size:81.576198px;}
.fs10_c00482{font-size:82.170000px;}
.fs19_c00482{font-size:82.368000px;}
.y0_c00482{bottom:0.000000px;}
.y1_c00482{bottom:76.500000px;}
.y1b_c00482{bottom:106.470585px;}
.y1a_c00482{bottom:107.188335px;}
.y19_c00482{bottom:170.271135px;}
.y18_c00482{bottom:269.345385px;}
.y17_c00482{bottom:308.549385px;}
.y16_c00482{bottom:340.625385px;}
.y15_c00482{bottom:356.668335px;}
.y14_c00482{bottom:372.349935px;}
.y13_c00482{bottom:403.708185px;}
.y12_c00482{bottom:436.140585px;}
.y11_c00482{bottom:467.865135px;}
.y10_c00482{bottom:499.228335px;}
.yf_c00482{bottom:531.655785px;}
.ye_c00482{bottom:562.311135px;}
.yd_c00482{bottom:600.084585px;}
.yc_c00482{bottom:626.814585px;}
.yb_c00482{bottom:646.060185px;}
.ya_c00482{bottom:658.182735px;}
.y9_c00482{bottom:683.843535px;}
.y8_c00482{bottom:689.902335px;}
.y7_c00482{bottom:721.616985px;}
.y6_c00482{bottom:785.061135px;}
.y5_c00482{bottom:816.419385px;}
.y4_c00482{bottom:848.500335px;}
.y3_c00482{bottom:880.219935px;}
.y2_c00482{bottom:911.934585px;}
.h16_c00482{height:23.128875px;}
.hc_c00482{height:26.226492px;}
.ha_c00482{height:28.911094px;}
.he_c00482{height:34.693313px;}
.h13_c00482{height:36.079217px;}
.h1f_c00482{height:37.028666px;}
.h17_c00482{height:37.978116px;}
.h12_c00482{height:39.877015px;}
.h10_c00482{height:41.775782px;}
.hb_c00482{height:56.743437px;}
.h1c_c00482{height:57.822188px;}
.h1b_c00482{height:60.435439px;}
.h1e_c00482{height:67.820028px;}
.h14_c00482{height:68.597139px;}
.h1a_c00482{height:68.973816px;}
.h7_c00482{height:69.180117px;}
.h11_c00482{height:71.512031px;}
.h1d_c00482{height:72.059142px;}
.h5_c00482{height:72.678183px;}
.h20_c00482{height:73.103972px;}
.h6_c00482{height:73.843945px;}
.h2_c00482{height:74.232792px;}
.h3_c00482{height:74.621444px;}
.h9_c00482{height:76.564706px;}
.hd_c00482{height:76.614398px;}
.h4_c00482{height:76.953164px;}
.h15_c00482{height:77.730469px;}
.h19_c00482{height:79.868057px;}
.h8_c00482{height:80.062577px;}
.hf_c00482{height:80.645361px;}
.h18_c00482{height:80.839688px;}
.h1_c00482{height:1110.000000px;}
.h0_c00482{height:1263.000000px;}
.w1_c00482{width:760.500000px;}
.w0_c00482{width:892.500000px;}
.x0_c00482{left:0.000000px;}
.x1_c00482{left:66.000000px;}
.x28_c00482{left:80.289885px;}
.xa_c00482{left:81.715485px;}
.x2_c00482{left:83.982585px;}
.x33_c00482{left:112.766835px;}
.x15_c00482{left:113.836035px;}
.x54_c00482{left:114.944835px;}
.x58_c00482{left:123.409335px;}
.x49_c00482{left:125.037885px;}
.x2b_c00482{left:135.908085px;}
.x5f_c00482{left:144.842835px;}
.x55_c00482{left:145.872435px;}
.x34_c00482{left:147.471285px;}
.xb_c00482{left:149.164185px;}
.x16_c00482{left:158.351385px;}
.x36_c00482{left:160.420485px;}
.x5a_c00482{left:169.087935px;}
.x29_c00482{left:171.656985px;}
.x5b_c00482{left:178.710735px;}
.x2c_c00482{left:179.735385px;}
.x20_c00482{left:181.715385px;}
.x37_c00482{left:191.303535px;}
.x3_c00482{left:192.758835px;}
.x3e_c00482{left:203.005335px;}
.x45_c00482{left:213.306285px;}
.xc_c00482{left:215.212035px;}
.x5c_c00482{left:222.854835px;}
.x4_c00482{left:225.488235px;}
.x60_c00482{left:234.269535px;}
.x2a_c00482{left:235.645635px;}
.x17_c00482{left:238.704735px;}
.x18_c00482{left:249.228435px;}
.x5_c00482{left:258.138435px;}
.x2d_c00482{left:259.237335px;}
.x38_c00482{left:269.023485px;}
.x21_c00482{left:270.092685px;}
.x19_c00482{left:282.294435px;}
.x3f_c00482{left:290.872785px;}
.xd_c00482{left:293.600235px;}
.x22_c00482{left:302.698335px;}
.x2e_c00482{left:303.935835px;}
.x39_c00482{left:313.533885px;}
.x46_c00482{left:314.612985px;}
.x61_c00482{left:323.849685px;}
.x4f_c00482{left:325.250535px;}
.x1a_c00482{left:326.354385px;}
.x23_c00482{left:336.353385px;}
.x4a_c00482{left:348.857085px;}
.x59_c00482{left:357.069135px;}
.x50_c00482{left:358.158135px;}
.x6_c00482{left:369.018435px;}
.x24_c00482{left:379.675785px;}
.x51_c00482{left:391.278585px;}
.x1b_c00482{left:392.575485px;}
.x64_c00482{left:400.742985px;}
.xe_c00482{left:402.490335px;}
.x2f_c00482{left:413.187285px;}
.x40_c00482{left:414.746535px;}
.x69_c00482{left:423.706035px;}
.x35_c00482{left:424.750485px;}
.xf_c00482{left:437.551185px;}
.x4b_c00482{left:446.134485px;}
.x56_c00482{left:447.243285px;}
.x43_c00482{left:459.177735px;}
.x52_c00482{left:467.696685px;}
.x10_c00482{left:468.770835px;}
.x3a_c00482{left:470.364735px;}
.x30_c00482{left:479.913285px;}
.x65_c00482{left:490.021185px;}
.x4c_c00482{left:491.367585px;}
.x25_c00482{left:492.407085px;}
.x1c_c00482{left:502.826835px;}
.x11_c00482{left:513.875235px;}
.x7_c00482{left:516.167085px;}
.x66_c00482{left:523.349535px;}
.x44_c00482{left:535.615635px;}
.x6a_c00482{left:536.892735px;}
.x62_c00482{left:545.050335px;}
.x5d_c00482{left:546.629385px;}
.x1d_c00482{left:547.654035px;}
.x12_c00482{left:557.197635px;}
.x3b_c00482{left:567.503535px;}
.x8_c00482{left:569.097435px;}
.x6b_c00482{left:570.186435px;}
.x67_c00482{left:585.155235px;}
.x4d_c00482{left:589.595385px;}
.x13_c00482{left:591.798135px;}
.x3c_c00482{left:600.277485px;}
.x26_c00482{left:602.846535px;}
.x68_c00482{left:611.375385px;}
.x1e_c00482{left:613.117785px;}
.x6c_c00482{left:621.324885px;}
.x4e_c00482{left:624.012735px;}
.x31_c00482{left:634.689885px;}
.x57_c00482{left:644.476035px;}
.x47_c00482{left:645.881835px;}
.x1f_c00482{left:657.143085px;}
.x41_c00482{left:659.489385px;}
.x5e_c00482{left:666.221385px;}
.x48_c00482{left:677.264835px;}
.x9_c00482{left:678.858735px;}
.x27_c00482{left:680.269485px;}
.x14_c00482{left:690.525885px;}
.x63_c00482{left:699.901185px;}
.x3d_c00482{left:701.371335px;}
.x53_c00482{left:712.350435px;}
.x32_c00482{left:713.375085px;}
.x6d_c00482{left:721.418835px;}
.x42_c00482{left:729.215085px;}
@media print{
.v1_c00482{vertical-align:-12.654400pt;}
.v0_c00482{vertical-align:0.000000pt;}
.lsf_c00482{letter-spacing:-2.556400pt;}
.ls1e_c00482{letter-spacing:-2.464000pt;}
.ls14_c00482{letter-spacing:-2.353126pt;}
.ls23_c00482{letter-spacing:-2.285360pt;}
.ls25_c00482{letter-spacing:-2.149846pt;}
.lse_c00482{letter-spacing:-1.976626pt;}
.ls21_c00482{letter-spacing:-1.512724pt;}
.ls13_c00482{letter-spacing:-0.026893pt;}
.ls4_c00482{letter-spacing:0.000000pt;}
.ls0_c00482{letter-spacing:0.052237pt;}
.ls1_c00482{letter-spacing:0.477348pt;}
.ls24_c00482{letter-spacing:1.391706pt;}
.ls16_c00482{letter-spacing:1.627019pt;}
.ls11_c00482{letter-spacing:1.808546pt;}
.ls1a_c00482{letter-spacing:1.990072pt;}
.lsa_c00482{letter-spacing:2.385651pt;}
.lsc_c00482{letter-spacing:2.569609pt;}
.ls26_c00482{letter-spacing:2.590720pt;}
.ls2_c00482{letter-spacing:2.718144pt;}
.ls20_c00482{letter-spacing:2.736800pt;}
.ls1f_c00482{letter-spacing:2.939209pt;}
.lsd_c00482{letter-spacing:2.948000pt;}
.ls18_c00482{letter-spacing:3.106400pt;}
.ls9_c00482{letter-spacing:3.132800pt;}
.ls12_c00482{letter-spacing:3.238400pt;}
.ls22_c00482{letter-spacing:3.264800pt;}
.ls7_c00482{letter-spacing:3.291209pt;}
.ls8_c00482{letter-spacing:3.344000pt;}
.ls3_c00482{letter-spacing:3.361609pt;}
.ls5_c00482{letter-spacing:3.379209pt;}
.lsb_c00482{letter-spacing:3.467209pt;}
.ls6_c00482{letter-spacing:3.484800pt;}
.ls19_c00482{letter-spacing:3.520000pt;}
.ls1d_c00482{letter-spacing:3.616800pt;}
.ls1c_c00482{letter-spacing:3.660800pt;}
.ls17_c00482{letter-spacing:48.153776pt;}
.ls27_c00482{letter-spacing:49.420976pt;}
.ls1b_c00482{letter-spacing:50.688176pt;}
.ls15_c00482{letter-spacing:53.222576pt;}
.ls10_c00482{letter-spacing:55.756800pt;}
.ws1_c00482{word-spacing:-20.142144pt;}
.ws0_c00482{word-spacing:-2.716256pt;}
.ws2_c00482{word-spacing:0.000000pt;}
._2_c00482{margin-left:-5.176820pt;}
._1_c00482{width:5.577754pt;}
._3_c00482{width:9.602560pt;}
._0_c00482{width:33.368441pt;}
.fs16_c00482{font-size:19.712000pt;}
.fsb_c00482{font-size:22.352000pt;}
.fs9_c00482{font-size:24.640000pt;}
.fsf_c00482{font-size:29.568000pt;}
.fs18_c00482{font-size:39.952176pt;}
.fs13_c00482{font-size:48.153776pt;}
.fs1d_c00482{font-size:49.280000pt;}
.fs1f_c00482{font-size:49.420976pt;}
.fs17_c00482{font-size:50.688176pt;}
.fsa_c00482{font-size:51.392176pt;}
.fs12_c00482{font-size:53.222576pt;}
.fs1c_c00482{font-size:54.736000pt;}
.fsd_c00482{font-size:55.616000pt;}
.fs11_c00482{font-size:55.756800pt;}
.fs1b_c00482{font-size:58.784176pt;}
.fsc_c00482{font-size:58.960000pt;}
.fs1e_c00482{font-size:61.424176pt;}
.fs14_c00482{font-size:62.128000pt;}
.fs20_c00482{font-size:62.304176pt;}
.fs6_c00482{font-size:62.656000pt;}
.fs2_c00482{font-size:64.768000pt;}
.fse_c00482{font-size:65.296000pt;}
.fs4_c00482{font-size:65.824176pt;}
.fs5_c00482{font-size:66.880000pt;}
.fs0_c00482{font-size:67.232176pt;}
.fs1_c00482{font-size:67.584176pt;}
.fs8_c00482{font-size:69.344176pt;}
.fs3_c00482{font-size:69.696000pt;}
.fs15_c00482{font-size:70.400000pt;}
.fs1a_c00482{font-size:72.336000pt;}
.fs7_c00482{font-size:72.512176pt;}
.fs10_c00482{font-size:73.040000pt;}
.fs19_c00482{font-size:73.216000pt;}
.y0_c00482{bottom:0.000000pt;}
.y1_c00482{bottom:68.000000pt;}
.y1b_c00482{bottom:94.640520pt;}
.y1a_c00482{bottom:95.278520pt;}
.y19_c00482{bottom:151.352120pt;}
.y18_c00482{bottom:239.418120pt;}
.y17_c00482{bottom:274.266120pt;}
.y16_c00482{bottom:302.778120pt;}
.y15_c00482{bottom:317.038520pt;}
.y14_c00482{bottom:330.977720pt;}
.y13_c00482{bottom:358.851720pt;}
.y12_c00482{bottom:387.680520pt;}
.y11_c00482{bottom:415.880120pt;}
.y10_c00482{bottom:443.758520pt;}
.yf_c00482{bottom:472.582920pt;}
.ye_c00482{bottom:499.832120pt;}
.yd_c00482{bottom:533.408520pt;}
.yc_c00482{bottom:557.168520pt;}
.yb_c00482{bottom:574.275720pt;}
.ya_c00482{bottom:585.051320pt;}
.y9_c00482{bottom:607.860920pt;}
.y8_c00482{bottom:613.246520pt;}
.y7_c00482{bottom:641.437320pt;}
.y6_c00482{bottom:697.832120pt;}
.y5_c00482{bottom:725.706120pt;}
.y4_c00482{bottom:754.222520pt;}
.y3_c00482{bottom:782.417720pt;}
.y2_c00482{bottom:810.608520pt;}
.h16_c00482{height:20.559000pt;}
.hc_c00482{height:23.312438pt;}
.ha_c00482{height:25.698750pt;}
.he_c00482{height:30.838500pt;}
.h13_c00482{height:32.070415pt;}
.h1f_c00482{height:32.914370pt;}
.h17_c00482{height:33.758325pt;}
.h12_c00482{height:35.446236pt;}
.h10_c00482{height:37.134029pt;}
.hb_c00482{height:50.438610pt;}
.h1c_c00482{height:51.397500pt;}
.h1b_c00482{height:53.720391pt;}
.h1e_c00482{height:60.284470pt;}
.h14_c00482{height:60.975234pt;}
.h1a_c00482{height:61.310059pt;}
.h7_c00482{height:61.493438pt;}
.h11_c00482{height:63.566250pt;}
.h1d_c00482{height:64.052570pt;}
.h5_c00482{height:64.602829pt;}
.h20_c00482{height:64.981309pt;}
.h6_c00482{height:65.639063pt;}
.h2_c00482{height:65.984704pt;}
.h3_c00482{height:66.330173pt;}
.h9_c00482{height:68.057516pt;}
.hd_c00482{height:68.101688pt;}
.h4_c00482{height:68.402813pt;}
.h15_c00482{height:69.093750pt;}
.h19_c00482{height:70.993828pt;}
.h8_c00482{height:71.166735pt;}
.hf_c00482{height:71.684766pt;}
.h18_c00482{height:71.857500pt;}
.h1_c00482{height:986.666667pt;}
.h0_c00482{height:1122.666667pt;}
.w1_c00482{width:676.000000pt;}
.w0_c00482{width:793.333333pt;}
.x0_c00482{left:0.000000pt;}
.x1_c00482{left:58.666667pt;}
.x28_c00482{left:71.368787pt;}
.xa_c00482{left:72.635987pt;}
.x2_c00482{left:74.651187pt;}
.x33_c00482{left:100.237187pt;}
.x15_c00482{left:101.187587pt;}
.x54_c00482{left:102.173187pt;}
.x58_c00482{left:109.697187pt;}
.x49_c00482{left:111.144787pt;}
.x2b_c00482{left:120.807187pt;}
.x5f_c00482{left:128.749187pt;}
.x55_c00482{left:129.664387pt;}
.x34_c00482{left:131.085587pt;}
.xb_c00482{left:132.590387pt;}
.x16_c00482{left:140.756787pt;}
.x36_c00482{left:142.595987pt;}
.x5a_c00482{left:150.300387pt;}
.x29_c00482{left:152.583987pt;}
.x5b_c00482{left:158.853987pt;}
.x2c_c00482{left:159.764787pt;}
.x20_c00482{left:161.524787pt;}
.x37_c00482{left:170.047587pt;}
.x3_c00482{left:171.341187pt;}
.x3e_c00482{left:180.449187pt;}
.x45_c00482{left:189.605587pt;}
.xc_c00482{left:191.299587pt;}
.x5c_c00482{left:198.093187pt;}
.x4_c00482{left:200.433987pt;}
.x60_c00482{left:208.239587pt;}
.x2a_c00482{left:209.462787pt;}
.x17_c00482{left:212.181987pt;}
.x18_c00482{left:221.536387pt;}
.x5_c00482{left:229.456387pt;}
.x2d_c00482{left:230.433187pt;}
.x38_c00482{left:239.131987pt;}
.x21_c00482{left:240.082387pt;}
.x19_c00482{left:250.928387pt;}
.x3f_c00482{left:258.553587pt;}
.xd_c00482{left:260.977987pt;}
.x22_c00482{left:269.065187pt;}
.x2e_c00482{left:270.165187pt;}
.x39_c00482{left:278.696787pt;}
.x46_c00482{left:279.655987pt;}
.x61_c00482{left:287.866387pt;}
.x4f_c00482{left:289.111587pt;}
.x1a_c00482{left:290.092787pt;}
.x23_c00482{left:298.980787pt;}
.x4a_c00482{left:310.095187pt;}
.x59_c00482{left:317.394787pt;}
.x50_c00482{left:318.362787pt;}
.x6_c00482{left:328.016387pt;}
.x24_c00482{left:337.489587pt;}
.x51_c00482{left:347.803187pt;}
.x1b_c00482{left:348.955987pt;}
.x64_c00482{left:356.215987pt;}
.xe_c00482{left:357.769187pt;}
.x2f_c00482{left:367.277587pt;}
.x40_c00482{left:368.663587pt;}
.x69_c00482{left:376.627587pt;}
.x35_c00482{left:377.555987pt;}
.xf_c00482{left:388.934387pt;}
.x4b_c00482{left:396.563987pt;}
.x56_c00482{left:397.549587pt;}
.x43_c00482{left:408.157987pt;}
.x52_c00482{left:415.730387pt;}
.x10_c00482{left:416.685187pt;}
.x3a_c00482{left:418.101987pt;}
.x30_c00482{left:426.589587pt;}
.x65_c00482{left:435.574387pt;}
.x4c_c00482{left:436.771187pt;}
.x25_c00482{left:437.695187pt;}
.x1c_c00482{left:446.957187pt;}
.x11_c00482{left:456.777987pt;}
.x7_c00482{left:458.815187pt;}
.x66_c00482{left:465.199587pt;}
.x44_c00482{left:476.102787pt;}
.x6a_c00482{left:477.237987pt;}
.x62_c00482{left:484.489187pt;}
.x5d_c00482{left:485.892787pt;}
.x1d_c00482{left:486.803587pt;}
.x12_c00482{left:495.286787pt;}
.x3b_c00482{left:504.447587pt;}
.x8_c00482{left:505.864387pt;}
.x6b_c00482{left:506.832387pt;}
.x67_c00482{left:520.137987pt;}
.x4d_c00482{left:524.084787pt;}
.x13_c00482{left:526.042787pt;}
.x3c_c00482{left:533.579987pt;}
.x26_c00482{left:535.863587pt;}
.x68_c00482{left:543.444787pt;}
.x1e_c00482{left:544.993587pt;}
.x6c_c00482{left:552.288787pt;}
.x4e_c00482{left:554.677987pt;}
.x31_c00482{left:564.168787pt;}
.x57_c00482{left:572.867587pt;}
.x47_c00482{left:574.117187pt;}
.x1f_c00482{left:584.127187pt;}
.x41_c00482{left:586.212787pt;}
.x5e_c00482{left:592.196787pt;}
.x48_c00482{left:602.013187pt;}
.x9_c00482{left:603.429987pt;}
.x27_c00482{left:604.683987pt;}
.x14_c00482{left:613.800787pt;}
.x63_c00482{left:622.134387pt;}
.x3d_c00482{left:623.441187pt;}
.x53_c00482{left:633.200387pt;}
.x32_c00482{left:634.111187pt;}
.x6d_c00482{left:641.261187pt;}
.x42_c00482{left:648.191187pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_061d77bb8fb8d5e9fa6e96c6.woff2')format("woff");}.ff1_c00483{font-family:ff1_c00483;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00483;src:url('chunks/assets/font_8573f572dbd30cea2edbb1b9.woff2')format("woff");}.ff2_c00483{font-family:ff2_c00483;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00483;src:url('chunks/assets/font_e65a916620f46d587b556648.woff2')format("woff");}.ff3_c00483{font-family:ff3_c00483;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00483;src:url('chunks/assets/font_8d9f54833248fb80bb9628fd.woff2')format("woff");}.ff4_c00483{font-family:ff4_c00483;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00483;src:url('chunks/assets/font_2bb40ec4f6767c77c32a6e96.woff2')format("woff");}.ff5_c00483{font-family:ff5_c00483;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m27_c00483{transform:matrix(0.106104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106104,0.000000,0.000000,0.250000,0,0);}
.m8e_c00483{transform:matrix(0.113638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113638,0.000000,0.000000,0.250000,0,0);}
.m4b_c00483{transform:matrix(0.145010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145010,0.000000,0.000000,0.250000,0,0);}
.m4e_c00483{transform:matrix(0.145349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145349,0.000000,0.000000,0.250000,0,0);}
.m6f_c00483{transform:matrix(0.183009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183009,0.000000,0.000000,0.250000,0,0);}
.m47_c00483{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00483{transform:matrix(0.189063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189063,0.000000,0.000000,0.250000,0,0);}
.m54_c00483{transform:matrix(0.203734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203734,0.000000,0.000000,0.250000,0,0);}
.m48_c00483{transform:matrix(0.204167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204167,0.000000,0.000000,0.250000,0,0);}
.m46_c00483{transform:matrix(0.216269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216269,0.000000,0.000000,0.250000,0,0);}
.m4f_c00483{transform:matrix(0.218163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218163,0.000000,0.000000,0.250000,0,0);}
.m25_c00483{transform:matrix(0.218378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218378,0.000000,0.000000,0.250000,0,0);}
.m4c_c00483{transform:matrix(0.225134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225134,0.000000,0.000000,0.250000,0,0);}
.m49_c00483{transform:matrix(0.227189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227189,0.000000,0.000000,0.250000,0,0);}
.m4a_c00483{transform:matrix(0.227308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227308,0.000000,0.000000,0.250000,0,0);}
.m52_c00483{transform:matrix(0.230485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230485,0.000000,0.000000,0.250000,0,0);}
.m3b_c00483{transform:matrix(0.238178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238178,0.000000,0.000000,0.250000,0,0);}
.m53_c00483{transform:matrix(0.242051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242051,0.000000,0.000000,0.250000,0,0);}
.m1_c00483{transform:matrix(0.246084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246084,0.000000,0.000000,0.250000,0,0);}
.m0_c00483{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00483{transform:matrix(0.250087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250087,0.000000,0.000000,0.250000,0,0);}
.m75_c00483{transform:matrix(0.250440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250440,0.000000,0.000000,0.250000,0,0);}
.m7_c00483{transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);}
.m28_c00483{transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);}
.m3d_c00483{transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);}
.m21_c00483{transform:matrix(0.257876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257876,0.000000,0.000000,0.250000,0,0);}
.m2a_c00483{transform:matrix(0.259376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259376,0.000000,0.000000,0.250000,0,0);}
.m73_c00483{transform:matrix(0.260353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260353,0.000000,0.000000,0.250000,0,0);}
.me_c00483{transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);}
.m33_c00483{transform:matrix(0.260847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260847,0.000000,0.000000,0.250000,0,0);}
.m58_c00483{transform:matrix(0.261958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261958,0.000000,0.000000,0.250000,0,0);}
.m15_c00483{transform:matrix(0.262285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262285,0.000000,0.000000,0.250000,0,0);}
.m6a_c00483{transform:matrix(0.263686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263686,0.000000,0.000000,0.250000,0,0);}
.m2e_c00483{transform:matrix(0.264359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264359,0.000000,0.000000,0.250000,0,0);}
.m5c_c00483{transform:matrix(0.264868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264868,0.000000,0.000000,0.250000,0,0);}
.m7e_c00483{transform:matrix(0.265953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265953,0.000000,0.000000,0.250000,0,0);}
.m31_c00483{transform:matrix(0.266822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266822,0.000000,0.000000,0.250000,0,0);}
.m66_c00483{transform:matrix(0.268539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268539,0.000000,0.000000,0.250000,0,0);}
.m1f_c00483{transform:matrix(0.269786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269786,0.000000,0.000000,0.250000,0,0);}
.mb_c00483{transform:matrix(0.269879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269879,0.000000,0.000000,0.250000,0,0);}
.m36_c00483{transform:matrix(0.270481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270481,0.000000,0.000000,0.250000,0,0);}
.m19_c00483{transform:matrix(0.270949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270949,0.000000,0.000000,0.250000,0,0);}
.m57_c00483{transform:matrix(0.271147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271147,0.000000,0.000000,0.250000,0,0);}
.m7b_c00483{transform:matrix(0.271207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271207,0.000000,0.000000,0.250000,0,0);}
.m3a_c00483{transform:matrix(0.273059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273059,0.000000,0.000000,0.250000,0,0);}
.m72_c00483{transform:matrix(0.273507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273507,0.000000,0.000000,0.250000,0,0);}
.m64_c00483{transform:matrix(0.274130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274130,0.000000,0.000000,0.250000,0,0);}
.m2_c00483{transform:matrix(0.274535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274535,0.000000,0.000000,0.250000,0,0);}
.m65_c00483{transform:matrix(0.274757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274757,0.000000,0.000000,0.250000,0,0);}
.m3f_c00483{transform:matrix(0.274951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274951,0.000000,0.000000,0.250000,0,0);}
.m17_c00483{transform:matrix(0.275249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275249,0.000000,0.000000,0.250000,0,0);}
.m23_c00483{transform:matrix(0.275292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275292,0.000000,0.000000,0.250000,0,0);}
.m68_c00483{transform:matrix(0.275369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275369,0.000000,0.000000,0.250000,0,0);}
.m13_c00483{transform:matrix(0.276638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276638,0.000000,0.000000,0.250000,0,0);}
.m6b_c00483{transform:matrix(0.277166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277166,0.000000,0.000000,0.250000,0,0);}
.m1d_c00483{transform:matrix(0.278211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278211,0.000000,0.000000,0.250000,0,0);}
.m1b_c00483{transform:matrix(0.278402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278402,0.000000,0.000000,0.250000,0,0);}
.m8a_c00483{transform:matrix(0.278680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278680,0.000000,0.000000,0.250000,0,0);}
.m10_c00483{transform:matrix(0.278693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278693,0.000000,0.000000,0.250000,0,0);}
.m56_c00483{transform:matrix(0.278923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278923,0.000000,0.000000,0.250000,0,0);}
.m6_c00483{transform:matrix(0.279133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279133,0.000000,0.000000,0.250000,0,0);}
.m50_c00483{transform:matrix(0.279352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279352,0.000000,0.000000,0.250000,0,0);}
.m39_c00483{transform:matrix(0.279718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279718,0.000000,0.000000,0.250000,0,0);}
.m1e_c00483{transform:matrix(0.280095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280095,0.000000,0.000000,0.250000,0,0);}
.m12_c00483{transform:matrix(0.280468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280468,0.000000,0.000000,0.250000,0,0);}
.m2f_c00483{transform:matrix(0.281659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281659,0.000000,0.000000,0.250000,0,0);}
.m4d_c00483{transform:matrix(0.283345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283345,0.000000,0.000000,0.250000,0,0);}
.m74_c00483{transform:matrix(0.283785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283785,0.000000,0.000000,0.250000,0,0);}
.m24_c00483{transform:matrix(0.283952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283952,0.000000,0.000000,0.250000,0,0);}
.m4_c00483{transform:matrix(0.284253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284253,0.000000,0.000000,0.250000,0,0);}
.m8c_c00483{transform:matrix(0.284587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284587,0.000000,0.000000,0.250000,0,0);}
.m63_c00483{transform:matrix(0.285655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285655,0.000000,0.000000,0.250000,0,0);}
.m5b_c00483{transform:matrix(0.285721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285721,0.000000,0.000000,0.250000,0,0);}
.m1c_c00483{transform:matrix(0.286391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286391,0.000000,0.000000,0.250000,0,0);}
.m70_c00483{transform:matrix(0.287812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287812,0.000000,0.000000,0.250000,0,0);}
.m44_c00483{transform:matrix(0.288979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288979,0.000000,0.000000,0.250000,0,0);}
.m7a_c00483{transform:matrix(0.289791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289791,0.000000,0.000000,0.250000,0,0);}
.m5a_c00483{transform:matrix(0.290466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290466,0.000000,0.000000,0.250000,0,0);}
.m3e_c00483{transform:matrix(0.290667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290667,0.000000,0.000000,0.250000,0,0);}
.m79_c00483{transform:matrix(0.291473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291473,0.000000,0.000000,0.250000,0,0);}
.m59_c00483{transform:matrix(0.291629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291629,0.000000,0.000000,0.250000,0,0);}
.m2d_c00483{transform:matrix(0.291673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291673,0.000000,0.000000,0.250000,0,0);}
.m7d_c00483{transform:matrix(0.292394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292394,0.000000,0.000000,0.250000,0,0);}
.m34_c00483{transform:matrix(0.293261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293261,0.000000,0.000000,0.250000,0,0);}
.md_c00483{transform:matrix(0.294467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294467,0.000000,0.000000,0.250000,0,0);}
.m67_c00483{transform:matrix(0.294758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294758,0.000000,0.000000,0.250000,0,0);}
.m43_c00483{transform:matrix(0.295575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295575,0.000000,0.000000,0.250000,0,0);}
.m9_c00483{transform:matrix(0.296096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296096,0.000000,0.000000,0.250000,0,0);}
.m89_c00483{transform:matrix(0.296417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296417,0.000000,0.000000,0.250000,0,0);}
.m81_c00483{transform:matrix(0.296594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296594,0.000000,0.000000,0.250000,0,0);}
.m61_c00483{transform:matrix(0.296724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296724,0.000000,0.000000,0.250000,0,0);}
.m2b_c00483{transform:matrix(0.297591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297591,0.000000,0.000000,0.250000,0,0);}
.m85_c00483{transform:matrix(0.297856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297856,0.000000,0.000000,0.250000,0,0);}
.m16_c00483{transform:matrix(0.299102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299102,0.000000,0.000000,0.250000,0,0);}
.m6c_c00483{transform:matrix(0.299125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299125,0.000000,0.000000,0.250000,0,0);}
.m14_c00483{transform:matrix(0.299249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299249,0.000000,0.000000,0.250000,0,0);}
.m86_c00483{transform:matrix(0.299926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299926,0.000000,0.000000,0.250000,0,0);}
.m8b_c00483{transform:matrix(0.300104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300104,0.000000,0.000000,0.250000,0,0);}
.m40_c00483{transform:matrix(0.301133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301133,0.000000,0.000000,0.250000,0,0);}
.m71_c00483{transform:matrix(0.301313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301313,0.000000,0.000000,0.250000,0,0);}
.m84_c00483{transform:matrix(0.302439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302439,0.000000,0.000000,0.250000,0,0);}
.m7f_c00483{transform:matrix(0.303605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303605,0.000000,0.000000,0.250000,0,0);}
.m30_c00483{transform:matrix(0.303648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303648,0.000000,0.000000,0.250000,0,0);}
.m51_c00483{transform:matrix(0.303894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303894,0.000000,0.000000,0.250000,0,0);}
.m6d_c00483{transform:matrix(0.303894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303894,0.000000,0.000000,0.250000,0,0);}
.m82_c00483{transform:matrix(0.305729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305729,0.000000,0.000000,0.250000,0,0);}
.m76_c00483{transform:matrix(0.306570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306570,0.000000,0.000000,0.250000,0,0);}
.m83_c00483{transform:matrix(0.307025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307025,0.000000,0.000000,0.250000,0,0);}
.m77_c00483{transform:matrix(0.307057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307057,0.000000,0.000000,0.250000,0,0);}
.mf_c00483{transform:matrix(0.309736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309736,0.000000,0.000000,0.250000,0,0);}
.m2c_c00483{transform:matrix(0.310880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310880,0.000000,0.000000,0.250000,0,0);}
.m3c_c00483{transform:matrix(0.312561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312561,0.000000,0.000000,0.250000,0,0);}
.m22_c00483{transform:matrix(0.314024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314024,0.000000,0.000000,0.250000,0,0);}
.m8d_c00483{transform:matrix(0.314204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314204,0.000000,0.000000,0.250000,0,0);}
.m60_c00483{transform:matrix(0.314374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314374,0.000000,0.000000,0.250000,0,0);}
.m42_c00483{transform:matrix(0.314627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314627,0.000000,0.000000,0.250000,0,0);}
.m5e_c00483{transform:matrix(0.316691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316691,0.000000,0.000000,0.250000,0,0);}
.m41_c00483{transform:matrix(0.317544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317544,0.000000,0.000000,0.250000,0,0);}
.m5_c00483{transform:matrix(0.318242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318242,0.000000,0.000000,0.250000,0,0);}
.m88_c00483{transform:matrix(0.318891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318891,0.000000,0.000000,0.250000,0,0);}
.m55_c00483{transform:matrix(0.319162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319162,0.000000,0.000000,0.250000,0,0);}
.ma_c00483{transform:matrix(0.319512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319512,0.000000,0.000000,0.250000,0,0);}
.m45_c00483{transform:matrix(0.320139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320139,0.000000,0.000000,0.250000,0,0);}
.m18_c00483{transform:matrix(0.320282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320282,0.000000,0.000000,0.250000,0,0);}
.m26_c00483{transform:matrix(0.320878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320878,0.000000,0.000000,0.250000,0,0);}
.m35_c00483{transform:matrix(0.322037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322037,0.000000,0.000000,0.250000,0,0);}
.mc_c00483{transform:matrix(0.325481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325481,0.000000,0.000000,0.250000,0,0);}
.m8_c00483{transform:matrix(0.325725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325725,0.000000,0.000000,0.250000,0,0);}
.m32_c00483{transform:matrix(0.326105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326105,0.000000,0.000000,0.250000,0,0);}
.m62_c00483{transform:matrix(0.326810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326810,0.000000,0.000000,0.250000,0,0);}
.m6e_c00483{transform:matrix(0.326826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326826,0.000000,0.000000,0.250000,0,0);}
.m20_c00483{transform:matrix(0.331929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331929,0.000000,0.000000,0.250000,0,0);}
.m80_c00483{transform:matrix(0.335526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335526,0.000000,0.000000,0.250000,0,0);}
.m69_c00483{transform:matrix(0.337326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337326,0.000000,0.000000,0.250000,0,0);}
.m87_c00483{transform:matrix(0.339770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339770,0.000000,0.000000,0.250000,0,0);}
.m78_c00483{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);}
.m37_c00483{transform:matrix(0.351692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351692,0.000000,0.000000,0.250000,0,0);}
.m11_c00483{transform:matrix(0.354195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354195,0.000000,0.000000,0.250000,0,0);}
.m3_c00483{transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);}
.m29_c00483{transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);}
.m1a_c00483{transform:matrix(0.379839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379839,0.000000,0.000000,0.250000,0,0);}
.m7c_c00483{transform:matrix(0.393622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393622,0.000000,0.000000,0.250000,0,0);}
.m38_c00483{transform:matrix(2.688813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.688813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.688813,0.000000,0.000000,0.250000,0,0);}
.v2_c00483{vertical-align:-28.492200px;}
.v0_c00483{vertical-align:0.000000px;}
.v1_c00483{vertical-align:1.386000px;}
.lsd_c00483{letter-spacing:-3.160080px;}
.ls3_c00483{letter-spacing:-2.855167px;}
.ls14_c00483{letter-spacing:-2.557177px;}
.lsf_c00483{letter-spacing:-2.515590px;}
.ls10_c00483{letter-spacing:-2.494800px;}
.ls11_c00483{letter-spacing:-2.383927px;}
.ls18_c00483{letter-spacing:-2.359368px;}
.ls5_c00483{letter-spacing:-2.324922px;}
.ls13_c00483{letter-spacing:-2.217600px;}
.ls17_c00483{letter-spacing:-1.744147px;}
.ls2_c00483{letter-spacing:0.000000px;}
.ls1f_c00483{letter-spacing:0.073419px;}
.ls1_c00483{letter-spacing:0.187625px;}
.ls7_c00483{letter-spacing:0.742343px;}
.lsc_c00483{letter-spacing:1.019700px;}
.lsa_c00483{letter-spacing:1.810992px;}
.ls1a_c00483{letter-spacing:2.373867px;}
.ls1d_c00483{letter-spacing:2.585965px;}
.lsb_c00483{letter-spacing:2.708330px;}
.ls1e_c00483{letter-spacing:2.757275px;}
.ls12_c00483{letter-spacing:3.366000px;}
.ls19_c00483{letter-spacing:3.564000px;}
.ls16_c00483{letter-spacing:3.603610px;}
.ls0_c00483{letter-spacing:3.638298px;}
.ls15_c00483{letter-spacing:3.653110px;}
.ls1c_c00483{letter-spacing:3.722400px;}
.ls6_c00483{letter-spacing:3.791700px;}
.ls4_c00483{letter-spacing:4.078810px;}
.ls8_c00483{letter-spacing:4.514400px;}
.ls20_c00483{letter-spacing:31.363200px;}
.lse_c00483{letter-spacing:51.321798px;}
.ls1b_c00483{letter-spacing:57.024198px;}
.ls9_c00483{letter-spacing:61.300998px;}
.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;}
}
.ws3_c00483{word-spacing:-22.980015px;}
.ws0_c00483{word-spacing:-20.394050px;}
.ws2_c00483{word-spacing:-18.612000px;}
.ws1_c00483{word-spacing:-17.820000px;}
.ws4_c00483{word-spacing:0.000000px;}
._8_c00483{margin-left:-18.562500px;}
._7_c00483{margin-left:-11.327552px;}
._9_c00483{margin-left:-10.033897px;}
._0_c00483{margin-left:-8.256699px;}
._4_c00483{margin-left:-5.534298px;}
._b_c00483{width:2.940300px;}
._d_c00483{width:6.199476px;}
._3_c00483{width:9.789439px;}
._e_c00483{width:17.927924px;}
._c_c00483{width:27.050135px;}
._5_c00483{width:35.818200px;}
._a_c00483{width:56.788776px;}
._2_c00483{width:115.528658px;}
._6_c00483{width:188.161380px;}
._1_c00483{width:203.287838px;}
.fc0_c00483{color:transparent;}
.fs5_c00483{font-size:20.394000px;}
.fs1a_c00483{font-size:23.958000px;}
.fs1c_c00483{font-size:25.146000px;}
.fs1d_c00483{font-size:31.363200px;}
.fs0_c00483{font-size:33.660000px;}
.fs15_c00483{font-size:38.808000px;}
.fs1e_c00483{font-size:39.204000px;}
.fs16_c00483{font-size:44.550000px;}
.fs6_c00483{font-size:51.321798px;}
.fs13_c00483{font-size:57.024198px;}
.fs4_c00483{font-size:61.300998px;}
.fs8_c00483{font-size:63.360000px;}
.fsf_c00483{font-size:65.538000px;}
.fs17_c00483{font-size:66.330000px;}
.fsb_c00483{font-size:67.320000px;}
.fsa_c00483{font-size:68.112198px;}
.fse_c00483{font-size:69.102198px;}
.fs12_c00483{font-size:69.300000px;}
.fs9_c00483{font-size:71.280000px;}
.fs7_c00483{font-size:71.874000px;}
.fs11_c00483{font-size:72.072198px;}
.fs10_c00483{font-size:73.062198px;}
.fsc_c00483{font-size:73.260000px;}
.fs18_c00483{font-size:74.448000px;}
.fs19_c00483{font-size:74.844000px;}
.fs2_c00483{font-size:75.834000px;}
.fs1b_c00483{font-size:76.032198px;}
.fsd_c00483{font-size:77.220000px;}
.fs14_c00483{font-size:78.804000px;}
.fs1_c00483{font-size:81.576198px;}
.fs3_c00483{font-size:90.288000px;}
.y0_c00483{bottom:0.000000px;}
.y28_c00483{bottom:2.406735px;}
.y27_c00483{bottom:13.098735px;}
.y26_c00483{bottom:23.785785px;}
.y25_c00483{bottom:36.259785px;}
.y1_c00483{bottom:76.500000px;}
.y24_c00483{bottom:110.039535px;}
.y23_c00483{bottom:117.167535px;}
.y22_c00483{bottom:149.243535px;}
.y20_c00483{bottom:181.314585px;}
.y21_c00483{bottom:184.883535px;}
.y1f_c00483{bottom:213.751935px;}
.y1e_c00483{bottom:244.753785px;}
.y1c_c00483{bottom:245.471535px;}
.y1d_c00483{bottom:253.307385px;}
.y1b_c00483{bottom:277.186185px;}
.y1a_c00483{bottom:309.262185px;}
.y19_c00483{bottom:373.770585px;}
.y16_c00483{bottom:435.789135px;}
.y18_c00483{bottom:437.214735px;}
.y17_c00483{bottom:438.278985px;}
.y14_c00483{bottom:473.206185px;}
.y15_c00483{bottom:474.631785px;}
.y13_c00483{bottom:499.584735px;}
.y11_c00483{bottom:500.297535px;}
.y12_c00483{bottom:509.207535px;}
.yf_c00483{bottom:530.586585px;}
.y10_c00483{bottom:537.714585px;}
.ye_c00483{bottom:563.736735px;}
.yd_c00483{bottom:627.170985px;}
.yc_c00483{bottom:658.534185px;}
.yb_c00483{bottom:687.758985px;}
.y9_c00483{bottom:690.966585px;}
.ya_c00483{bottom:691.684335px;}
.y8_c00483{bottom:754.762185px;}
.y7_c00483{bottom:785.417535px;}
.y6_c00483{bottom:817.849935px;}
.y5_c00483{bottom:849.564585px;}
.y4_c00483{bottom:880.219935px;}
.y3_c00483{bottom:912.652335px;}
.y2_c00483{bottom:1051.999785px;}
.h1d_c00483{height:20.887891px;}
.h8_c00483{height:21.270305px;}
.h19_c00483{height:24.987445px;}
.h1c_c00483{height:26.226492px;}
.h2_c00483{height:33.035449px;}
.h9_c00483{height:34.180317px;}
.h14_c00483{height:37.978116px;}
.h1e_c00483{height:38.476582px;}
.h7_c00483{height:40.826465px;}
.h16_c00483{height:43.723389px;}
.he_c00483{height:62.184375px;}
.h1b_c00483{height:66.070898px;}
.hb_c00483{height:66.082500px;}
.hd_c00483{height:66.848397px;}
.h11_c00483{height:68.354086px;}
.h17_c00483{height:69.180117px;}
.hc_c00483{height:69.957422px;}
.hf_c00483{height:70.212656px;}
.ha_c00483{height:70.540400px;}
.h13_c00483{height:70.734921px;}
.h12_c00483{height:71.706552px;}
.h18_c00483{height:73.066641px;}
.h4_c00483{height:74.426924px;}
.h10_c00483{height:76.407891px;}
.h15_c00483{height:77.341816px;}
.h1a_c00483{height:79.299207px;}
.h3_c00483{height:80.062577px;}
.h5_c00483{height:81.448577px;}
.h6_c00483{height:88.612734px;}
.h1_c00483{height:1110.000000px;}
.h0_c00483{height:1263.000000px;}
.w1_c00483{width:760.500000px;}
.w0_c00483{width:892.500000px;}
.x0_c00483{left:0.000000px;}
.x1_c00483{left:66.000000px;}
.x2_c00483{left:71.652135px;}
.x1f_c00483{left:80.933385px;}
.xf_c00483{left:82.423335px;}
.x3_c00483{left:83.700435px;}
.x4f_c00483{left:103.074735px;}
.x37_c00483{left:115.647735px;}
.x18_c00483{left:116.652585px;}
.x50_c00483{left:126.087285px;}
.x2c_c00483{left:136.521885px;}
.x4_c00483{left:139.170135px;}
.x65_c00483{left:157.905885px;}
.x20_c00483{left:159.707685px;}
.x10_c00483{left:161.306535px;}
.x53_c00483{left:169.389885px;}
.x2d_c00483{left:170.889735px;}
.x24_c00483{left:172.087635px;}
.x54_c00483{left:182.373735px;}
.x25_c00483{left:193.417185px;}
.x19_c00483{left:204.678435px;}
.x43_c00483{left:214.924935px;}
.x5_c00483{left:216.637635px;}
.x21_c00483{left:217.939485px;}
.x55_c00483{left:226.849485px;}
.x5c_c00483{left:236.006985px;}
.x3d_c00483{left:247.976085px;}
.x6_c00483{left:249.367035px;}
.x47_c00483{left:258.796785px;}
.x2e_c00483{left:259.994685px;}
.x38_c00483{left:270.805485px;}
.x11_c00483{left:271.840035px;}
.x4b_c00483{left:281.438085px;}
.x7_c00483{left:282.893385px;}
.x46_c00483{left:294.530835px;}
.x56_c00483{left:304.653585px;}
.x1a_c00483{left:314.845635px;}
.x2f_c00483{left:326.765235px;}
.x62_c00483{left:336.383085px;}
.x22_c00483{left:337.551285px;}
.x66_c00483{left:346.882035px;}
.x8_c00483{left:347.951235px;}
.x39_c00483{left:349.193685px;}
.x3f_c00483{left:358.514535px;}
.x30_c00483{left:360.009435px;}
.x48_c00483{left:370.166835px;}
.x9_c00483{left:372.721035px;}
.x40_c00483{left:381.215235px;}
.x63_c00483{left:382.239885px;}
.x12_c00483{left:383.403135px;}
.x42_c00483{left:386.368185px;}
.x4a_c00483{left:392.525985px;}
.xa_c00483{left:394.095135px;}
.x5d_c00483{left:403.198185px;}
.x26_c00483{left:404.311935px;}
.x35_c00483{left:413.944635px;}
.x13_c00483{left:415.805835px;}
.x3a_c00483{left:426.844335px;}
.x5f_c00483{left:428.215485px;}
.x31_c00483{left:437.768985px;}
.x44_c00483{left:446.164185px;}
.x14_c00483{left:448.460985px;}
.x3e_c00483{left:449.574735px;}
.x67_c00483{left:458.989635px;}
.x1b_c00483{left:461.103285px;}
.x27_c00483{left:471.795285px;}
.x45_c00483{left:474.418785px;}
.x41_c00483{left:479.799435px;}
.x57_c00483{left:481.061685px;}
.x36_c00483{left:484.561335px;}
.x3b_c00483{left:492.110085px;}
.x1c_c00483{left:493.476285px;}
.x28_c00483{left:503.475285px;}
.x49_c00483{left:513.558435px;}
.x3c_c00483{left:514.850385px;}
.xb_c00483{left:526.349235px;}
.x29_c00483{left:536.323485px;}
.x32_c00483{left:547.188735px;}
.x64_c00483{left:548.297535px;}
.x4c_c00483{left:557.880735px;}
.xc_c00483{left:559.464735px;}
.x15_c00483{left:571.572435px;}
.x5e_c00483{left:579.294435px;}
.x2a_c00483{left:581.581335px;}
.x60_c00483{left:590.313135px;}
.x4d_c00483{left:592.253535px;}
.xd_c00483{left:603.653385px;}
.x23_c00483{left:605.390835px;}
.x58_c00483{left:613.295985px;}
.x1d_c00483{left:614.325585px;}
.x33_c00483{left:625.695735px;}
.x1e_c00483{left:646.619385px;}
.x51_c00483{left:657.083685px;}
.x5a_c00483{left:658.088535px;}
.x16_c00483{left:669.973485px;}
.x4e_c00483{left:679.418085px;}
.x34_c00483{left:680.977335px;}
.x52_c00483{left:691.347585px;}
.x59_c00483{left:696.401535px;}
.xe_c00483{left:703.742385px;}
.x68_c00483{left:707.331135px;}
.x69_c00483{left:708.855735px;}
.x6a_c00483{left:711.721785px;}
.x2b_c00483{left:713.795835px;}
.x5b_c00483{left:724.854135px;}
.x17_c00483{left:726.071835px;}
.x61_c00483{left:758.207235px;}
@media print{
.v2_c00483{vertical-align:-25.326400pt;}
.v0_c00483{vertical-align:0.000000pt;}
.v1_c00483{vertical-align:1.232000pt;}
.lsd_c00483{letter-spacing:-2.808960pt;}
.ls3_c00483{letter-spacing:-2.537926pt;}
.ls14_c00483{letter-spacing:-2.273046pt;}
.lsf_c00483{letter-spacing:-2.236080pt;}
.ls10_c00483{letter-spacing:-2.217600pt;}
.ls11_c00483{letter-spacing:-2.119046pt;}
.ls18_c00483{letter-spacing:-2.097216pt;}
.ls5_c00483{letter-spacing:-2.066597pt;}
.ls13_c00483{letter-spacing:-1.971200pt;}
.ls17_c00483{letter-spacing:-1.550353pt;}
.ls2_c00483{letter-spacing:0.000000pt;}
.ls1f_c00483{letter-spacing:0.065261pt;}
.ls1_c00483{letter-spacing:0.166778pt;}
.ls7_c00483{letter-spacing:0.659861pt;}
.lsc_c00483{letter-spacing:0.906400pt;}
.lsa_c00483{letter-spacing:1.609770pt;}
.ls1a_c00483{letter-spacing:2.110104pt;}
.ls1d_c00483{letter-spacing:2.298636pt;}
.lsb_c00483{letter-spacing:2.407404pt;}
.ls1e_c00483{letter-spacing:2.450912pt;}
.ls12_c00483{letter-spacing:2.992000pt;}
.ls19_c00483{letter-spacing:3.168000pt;}
.ls16_c00483{letter-spacing:3.203209pt;}
.ls0_c00483{letter-spacing:3.234043pt;}
.ls15_c00483{letter-spacing:3.247209pt;}
.ls1c_c00483{letter-spacing:3.308800pt;}
.ls6_c00483{letter-spacing:3.370400pt;}
.ls4_c00483{letter-spacing:3.625609pt;}
.ls8_c00483{letter-spacing:4.012800pt;}
.ls20_c00483{letter-spacing:27.878400pt;}
.lse_c00483{letter-spacing:45.619376pt;}
.ls1b_c00483{letter-spacing:50.688176pt;}
.ls9_c00483{letter-spacing:54.489776pt;}
.ws3_c00483{word-spacing:-20.426680pt;}
.ws0_c00483{word-spacing:-18.128044pt;}
.ws2_c00483{word-spacing:-16.544000pt;}
.ws1_c00483{word-spacing:-15.840000pt;}
.ws4_c00483{word-spacing:0.000000pt;}
._8_c00483{margin-left:-16.500000pt;}
._7_c00483{margin-left:-10.068936pt;}
._9_c00483{margin-left:-8.919020pt;}
._0_c00483{margin-left:-7.339288pt;}
._4_c00483{margin-left:-4.919376pt;}
._b_c00483{width:2.613600pt;}
._d_c00483{width:5.510646pt;}
._3_c00483{width:8.701724pt;}
._e_c00483{width:15.935933pt;}
._c_c00483{width:24.044565pt;}
._5_c00483{width:31.838400pt;}
._a_c00483{width:50.478912pt;}
._2_c00483{width:102.692141pt;}
._6_c00483{width:167.254560pt;}
._1_c00483{width:180.700300pt;}
.fs5_c00483{font-size:18.128000pt;}
.fs1a_c00483{font-size:21.296000pt;}
.fs1c_c00483{font-size:22.352000pt;}
.fs1d_c00483{font-size:27.878400pt;}
.fs0_c00483{font-size:29.920000pt;}
.fs15_c00483{font-size:34.496000pt;}
.fs1e_c00483{font-size:34.848000pt;}
.fs16_c00483{font-size:39.600000pt;}
.fs6_c00483{font-size:45.619376pt;}
.fs13_c00483{font-size:50.688176pt;}
.fs4_c00483{font-size:54.489776pt;}
.fs8_c00483{font-size:56.320000pt;}
.fsf_c00483{font-size:58.256000pt;}
.fs17_c00483{font-size:58.960000pt;}
.fsb_c00483{font-size:59.840000pt;}
.fsa_c00483{font-size:60.544176pt;}
.fse_c00483{font-size:61.424176pt;}
.fs12_c00483{font-size:61.600000pt;}
.fs9_c00483{font-size:63.360000pt;}
.fs7_c00483{font-size:63.888000pt;}
.fs11_c00483{font-size:64.064176pt;}
.fs10_c00483{font-size:64.944176pt;}
.fsc_c00483{font-size:65.120000pt;}
.fs18_c00483{font-size:66.176000pt;}
.fs19_c00483{font-size:66.528000pt;}
.fs2_c00483{font-size:67.408000pt;}
.fs1b_c00483{font-size:67.584176pt;}
.fsd_c00483{font-size:68.640000pt;}
.fs14_c00483{font-size:70.048000pt;}
.fs1_c00483{font-size:72.512176pt;}
.fs3_c00483{font-size:80.256000pt;}
.y0_c00483{bottom:0.000000pt;}
.y28_c00483{bottom:2.139320pt;}
.y27_c00483{bottom:11.643320pt;}
.y26_c00483{bottom:21.142920pt;}
.y25_c00483{bottom:32.230920pt;}
.y1_c00483{bottom:68.000000pt;}
.y24_c00483{bottom:97.812920pt;}
.y23_c00483{bottom:104.148920pt;}
.y22_c00483{bottom:132.660920pt;}
.y20_c00483{bottom:161.168520pt;}
.y21_c00483{bottom:164.340920pt;}
.y1f_c00483{bottom:190.001720pt;}
.y1e_c00483{bottom:217.558920pt;}
.y1c_c00483{bottom:218.196920pt;}
.y1d_c00483{bottom:225.162120pt;}
.y1b_c00483{bottom:246.387720pt;}
.y1a_c00483{bottom:274.899720pt;}
.y19_c00483{bottom:332.240520pt;}
.y16_c00483{bottom:387.368120pt;}
.y18_c00483{bottom:388.635320pt;}
.y17_c00483{bottom:389.581320pt;}
.y14_c00483{bottom:420.627720pt;}
.y15_c00483{bottom:421.894920pt;}
.y13_c00483{bottom:444.075320pt;}
.y11_c00483{bottom:444.708920pt;}
.y12_c00483{bottom:452.628920pt;}
.yf_c00483{bottom:471.632520pt;}
.y10_c00483{bottom:477.968520pt;}
.ye_c00483{bottom:501.099320pt;}
.yd_c00483{bottom:557.485320pt;}
.yc_c00483{bottom:585.363720pt;}
.yb_c00483{bottom:611.341320pt;}
.y9_c00483{bottom:614.192520pt;}
.ya_c00483{bottom:614.830520pt;}
.y8_c00483{bottom:670.899720pt;}
.y7_c00483{bottom:698.148920pt;}
.y6_c00483{bottom:726.977720pt;}
.y5_c00483{bottom:755.168520pt;}
.y4_c00483{bottom:782.417720pt;}
.y3_c00483{bottom:811.246520pt;}
.y2_c00483{bottom:935.110920pt;}
.h1d_c00483{height:18.567014pt;}
.h8_c00483{height:18.906938pt;}
.h19_c00483{height:22.211063pt;}
.h1c_c00483{height:23.312438pt;}
.h2_c00483{height:29.364844pt;}
.h9_c00483{height:30.382504pt;}
.h14_c00483{height:33.758325pt;}
.h1e_c00483{height:34.201406pt;}
.h7_c00483{height:36.290191pt;}
.h16_c00483{height:38.865234pt;}
.he_c00483{height:55.275000pt;}
.h1b_c00483{height:58.729688pt;}
.hb_c00483{height:58.740000pt;}
.hd_c00483{height:59.420798pt;}
.h11_c00483{height:60.759188pt;}
.h17_c00483{height:61.493438pt;}
.hc_c00483{height:62.184375pt;}
.hf_c00483{height:62.411250pt;}
.ha_c00483{height:62.702578pt;}
.h13_c00483{height:62.875485pt;}
.h12_c00483{height:63.739157pt;}
.h18_c00483{height:64.948125pt;}
.h4_c00483{height:66.157266pt;}
.h10_c00483{height:67.918125pt;}
.h15_c00483{height:68.748281pt;}
.h1a_c00483{height:70.488184pt;}
.h3_c00483{height:71.166735pt;}
.h5_c00483{height:72.398735pt;}
.h6_c00483{height:78.766875pt;}
.h1_c00483{height:986.666667pt;}
.h0_c00483{height:1122.666667pt;}
.w1_c00483{width:676.000000pt;}
.w0_c00483{width:793.333333pt;}
.x0_c00483{left:0.000000pt;}
.x1_c00483{left:58.666667pt;}
.x2_c00483{left:63.690787pt;}
.x1f_c00483{left:71.940787pt;}
.xf_c00483{left:73.265187pt;}
.x3_c00483{left:74.400387pt;}
.x4f_c00483{left:91.621987pt;}
.x37_c00483{left:102.797987pt;}
.x18_c00483{left:103.691187pt;}
.x50_c00483{left:112.077587pt;}
.x2c_c00483{left:121.352787pt;}
.x4_c00483{left:123.706787pt;}
.x65_c00483{left:140.360787pt;}
.x20_c00483{left:141.962387pt;}
.x10_c00483{left:143.383587pt;}
.x53_c00483{left:150.568787pt;}
.x2d_c00483{left:151.901987pt;}
.x24_c00483{left:152.966787pt;}
.x54_c00483{left:162.109987pt;}
.x25_c00483{left:171.926387pt;}
.x19_c00483{left:181.936387pt;}
.x43_c00483{left:191.044387pt;}
.x5_c00483{left:192.566787pt;}
.x21_c00483{left:193.723987pt;}
.x55_c00483{left:201.643987pt;}
.x5c_c00483{left:209.783987pt;}
.x3d_c00483{left:220.423187pt;}
.x6_c00483{left:221.659587pt;}
.x47_c00483{left:230.041587pt;}
.x2e_c00483{left:231.106387pt;}
.x38_c00483{left:240.715987pt;}
.x11_c00483{left:241.635587pt;}
.x4b_c00483{left:250.167187pt;}
.x7_c00483{left:251.460787pt;}
.x46_c00483{left:261.805187pt;}
.x56_c00483{left:270.803187pt;}
.x1a_c00483{left:279.862787pt;}
.x2f_c00483{left:290.457987pt;}
.x62_c00483{left:299.007187pt;}
.x22_c00483{left:300.045587pt;}
.x66_c00483{left:308.339587pt;}
.x8_c00483{left:309.289987pt;}
.x39_c00483{left:310.394387pt;}
.x3f_c00483{left:318.679587pt;}
.x30_c00483{left:320.008387pt;}
.x48_c00483{left:329.037187pt;}
.x9_c00483{left:331.307587pt;}
.x40_c00483{left:338.857987pt;}
.x63_c00483{left:339.768787pt;}
.x12_c00483{left:340.802787pt;}
.x42_c00483{left:343.438387pt;}
.x4a_c00483{left:348.911987pt;}
.xa_c00483{left:350.306787pt;}
.x5d_c00483{left:358.398387pt;}
.x26_c00483{left:359.388387pt;}
.x35_c00483{left:367.950787pt;}
.x13_c00483{left:369.605187pt;}
.x3a_c00483{left:379.417187pt;}
.x5f_c00483{left:380.635987pt;}
.x31_c00483{left:389.127987pt;}
.x44_c00483{left:396.590387pt;}
.x14_c00483{left:398.631987pt;}
.x3e_c00483{left:399.621987pt;}
.x67_c00483{left:407.990787pt;}
.x1b_c00483{left:409.869587pt;}
.x27_c00483{left:419.373587pt;}
.x45_c00483{left:421.705587pt;}
.x41_c00483{left:426.488387pt;}
.x57_c00483{left:427.610387pt;}
.x36_c00483{left:430.721187pt;}
.x3b_c00483{left:437.431187pt;}
.x1c_c00483{left:438.645587pt;}
.x28_c00483{left:447.533587pt;}
.x49_c00483{left:456.496387pt;}
.x3c_c00483{left:457.644787pt;}
.xb_c00483{left:467.865987pt;}
.x29_c00483{left:476.731987pt;}
.x32_c00483{left:486.389987pt;}
.x64_c00483{left:487.375587pt;}
.x4c_c00483{left:495.893987pt;}
.xc_c00483{left:497.301987pt;}
.x15_c00483{left:508.064387pt;}
.x5e_c00483{left:514.928387pt;}
.x2a_c00483{left:516.961187pt;}
.x60_c00483{left:524.722787pt;}
.x4d_c00483{left:526.447587pt;}
.xd_c00483{left:536.580787pt;}
.x23_c00483{left:538.125187pt;}
.x58_c00483{left:545.151987pt;}
.x1d_c00483{left:546.067187pt;}
.x33_c00483{left:556.173987pt;}
.x1e_c00483{left:574.772787pt;}
.x51_c00483{left:584.074387pt;}
.x5a_c00483{left:584.967587pt;}
.x16_c00483{left:595.531987pt;}
.x4e_c00483{left:603.927187pt;}
.x34_c00483{left:605.313187pt;}
.x52_c00483{left:614.531187pt;}
.x59_c00483{left:619.023587pt;}
.xe_c00483{left:625.548787pt;}
.x68_c00483{left:628.738787pt;}
.x69_c00483{left:630.093987pt;}
.x6a_c00483{left:632.641587pt;}
.x2b_c00483{left:634.485187pt;}
.x5b_c00483{left:644.314787pt;}
.x17_c00483{left:645.397187pt;}
.x61_c00483{left:673.961987pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8a3148bca607eae4f414c3ec.woff2')format("woff");}.ff1_c00484{font-family:ff1_c00484;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00484;src:url('chunks/assets/font_3db75d58403f2ee0ef5260e1.woff2')format("woff");}.ff2_c00484{font-family:ff2_c00484;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00484;src:url('chunks/assets/font_2f71f7e3dfa6a8aff3592f9c.woff2')format("woff");}.ff3_c00484{font-family:ff3_c00484;line-height:0.666000;font-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_c00484{transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00484{transform:matrix(0.156249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156249,0.000000,0.000000,0.250000,0,0);}
.m60_c00484{transform:matrix(0.161151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161151,0.000000,0.000000,0.250000,0,0);}
.m27_c00484{transform:matrix(0.167734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167734,0.000000,0.000000,0.250000,0,0);}
.m5b_c00484{transform:matrix(0.187499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187499,0.000000,0.000000,0.250000,0,0);}
.m5e_c00484{transform:matrix(0.191434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191434,0.000000,0.000000,0.250000,0,0);}
.m61_c00484{transform:matrix(0.210662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210662,0.000000,0.000000,0.250000,0,0);}
.m5f_c00484{transform:matrix(0.219252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219252,0.000000,0.000000,0.250000,0,0);}
.m63_c00484{transform:matrix(0.220273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220273,0.000000,0.000000,0.250000,0,0);}
.m62_c00484{transform:matrix(0.225610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225610,0.000000,0.000000,0.250000,0,0);}
.m1_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);}
.m5d_c00484{transform:matrix(0.250347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250347,0.000000,0.000000,0.250000,0,0);}
.m4b_c00484{transform:matrix(0.250825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250825,0.000000,0.000000,0.250000,0,0);}
.m13_c00484{transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);}
.m1e_c00484{transform:matrix(0.253164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253164,0.000000,0.000000,0.250000,0,0);}
.m15_c00484{transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);}
.m3f_c00484{transform:matrix(0.254614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254614,0.000000,0.000000,0.250000,0,0);}
.m29_c00484{transform:matrix(0.255317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255317,0.000000,0.000000,0.250000,0,0);}
.m54_c00484{transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);}
.m3d_c00484{transform:matrix(0.256348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256348,0.000000,0.000000,0.250000,0,0);}
.m33_c00484{transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);}
.m4e_c00484{transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);}
.m76_c00484{transform:matrix(0.258122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258122,0.000000,0.000000,0.250000,0,0);}
.m0_c00484{transform:matrix(0.259486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259486,0.000000,0.000000,0.250000,0,0);}
.m1f_c00484{transform:matrix(0.259894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259894,0.000000,0.000000,0.250000,0,0);}
.m23_c00484{transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);}
.m75_c00484{transform:matrix(0.260408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260408,0.000000,0.000000,0.250000,0,0);}
.mb_c00484{transform:matrix(0.260847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260847,0.000000,0.000000,0.250000,0,0);}
.m7f_c00484{transform:matrix(0.262227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262227,0.000000,0.000000,0.250000,0,0);}
.m2a_c00484{transform:matrix(0.262285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262285,0.000000,0.000000,0.250000,0,0);}
.m72_c00484{transform:matrix(0.262635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262635,0.000000,0.000000,0.250000,0,0);}
.m8_c00484{transform:matrix(0.262973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262973,0.000000,0.000000,0.250000,0,0);}
.m7a_c00484{transform:matrix(0.265745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265745,0.000000,0.000000,0.250000,0,0);}
.m49_c00484{transform:matrix(0.265846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265846,0.000000,0.000000,0.250000,0,0);}
.m2d_c00484{transform:matrix(0.266067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266067,0.000000,0.000000,0.250000,0,0);}
.m24_c00484{transform:matrix(0.266448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266448,0.000000,0.000000,0.250000,0,0);}
.m39_c00484{transform:matrix(0.266834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266834,0.000000,0.000000,0.250000,0,0);}
.m44_c00484{transform:matrix(0.266873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266873,0.000000,0.000000,0.250000,0,0);}
.md_c00484{transform:matrix(0.268588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268588,0.000000,0.000000,0.250000,0,0);}
.m2f_c00484{transform:matrix(0.268665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268665,0.000000,0.000000,0.250000,0,0);}
.m56_c00484{transform:matrix(0.269536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269536,0.000000,0.000000,0.250000,0,0);}
.m4_c00484{transform:matrix(0.269616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269616,0.000000,0.000000,0.250000,0,0);}
.m4f_c00484{transform:matrix(0.270612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270612,0.000000,0.000000,0.250000,0,0);}
.m7e_c00484{transform:matrix(0.271491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271491,0.000000,0.000000,0.250000,0,0);}
.m6d_c00484{transform:matrix(0.271620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271620,0.000000,0.000000,0.250000,0,0);}
.m16_c00484{transform:matrix(0.271646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271646,0.000000,0.000000,0.250000,0,0);}
.m2b_c00484{transform:matrix(0.272398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272398,0.000000,0.000000,0.250000,0,0);}
.m7b_c00484{transform:matrix(0.272535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272535,0.000000,0.000000,0.250000,0,0);}
.m2c_c00484{transform:matrix(0.272872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272872,0.000000,0.000000,0.250000,0,0);}
.m35_c00484{transform:matrix(0.273346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273346,0.000000,0.000000,0.250000,0,0);}
.me_c00484{transform:matrix(0.273486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273486,0.000000,0.000000,0.250000,0,0);}
.m9_c00484{transform:matrix(0.273612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273612,0.000000,0.000000,0.250000,0,0);}
.m80_c00484{transform:matrix(0.275369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275369,0.000000,0.000000,0.250000,0,0);}
.m11_c00484{transform:matrix(0.277590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277590,0.000000,0.000000,0.250000,0,0);}
.m6a_c00484{transform:matrix(0.278285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278285,0.000000,0.000000,0.250000,0,0);}
.m83_c00484{transform:matrix(0.278704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278704,0.000000,0.000000,0.250000,0,0);}
.m14_c00484{transform:matrix(0.278773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278773,0.000000,0.000000,0.250000,0,0);}
.m82_c00484{transform:matrix(0.278780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278780,0.000000,0.000000,0.250000,0,0);}
.m73_c00484{transform:matrix(0.280660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280660,0.000000,0.000000,0.250000,0,0);}
.m4d_c00484{transform:matrix(0.281712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281712,0.000000,0.000000,0.250000,0,0);}
.m32_c00484{transform:matrix(0.283233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283233,0.000000,0.000000,0.250000,0,0);}
.m51_c00484{transform:matrix(0.284773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284773,0.000000,0.000000,0.250000,0,0);}
.m50_c00484{transform:matrix(0.285447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285447,0.000000,0.000000,0.250000,0,0);}
.m6b_c00484{transform:matrix(0.285567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285567,0.000000,0.000000,0.250000,0,0);}
.m65_c00484{transform:matrix(0.286045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286045,0.000000,0.000000,0.250000,0,0);}
.m3e_c00484{transform:matrix(0.286788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286788,0.000000,0.000000,0.250000,0,0);}
.m78_c00484{transform:matrix(0.287639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287639,0.000000,0.000000,0.250000,0,0);}
.m53_c00484{transform:matrix(0.288121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288121,0.000000,0.000000,0.250000,0,0);}
.m70_c00484{transform:matrix(0.289791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289791,0.000000,0.000000,0.250000,0,0);}
.m3b_c00484{transform:matrix(0.289929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289929,0.000000,0.000000,0.250000,0,0);}
.m31_c00484{transform:matrix(0.289939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289939,0.000000,0.000000,0.250000,0,0);}
.m10_c00484{transform:matrix(0.290468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290468,0.000000,0.000000,0.250000,0,0);}
.m6_c00484{transform:matrix(0.291960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291960,0.000000,0.000000,0.250000,0,0);}
.m6e_c00484{transform:matrix(0.292121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292121,0.000000,0.000000,0.250000,0,0);}
.m43_c00484{transform:matrix(0.292727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292727,0.000000,0.000000,0.250000,0,0);}
.m38_c00484{transform:matrix(0.293261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293261,0.000000,0.000000,0.250000,0,0);}
.m52_c00484{transform:matrix(0.293530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293530,0.000000,0.000000,0.250000,0,0);}
.m42_c00484{transform:matrix(0.293612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293612,0.000000,0.000000,0.250000,0,0);}
.m3c_c00484{transform:matrix(0.293672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293672,0.000000,0.000000,0.250000,0,0);}
.m34_c00484{transform:matrix(0.293923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293923,0.000000,0.000000,0.250000,0,0);}
.m21_c00484{transform:matrix(0.295535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295535,0.000000,0.000000,0.250000,0,0);}
.m47_c00484{transform:matrix(0.295572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295572,0.000000,0.000000,0.250000,0,0);}
.m6f_c00484{transform:matrix(0.295755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295755,0.000000,0.000000,0.250000,0,0);}
.m85_c00484{transform:matrix(0.296484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296484,0.000000,0.000000,0.250000,0,0);}
.mc_c00484{transform:matrix(0.296594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296594,0.000000,0.000000,0.250000,0,0);}
.m81_c00484{transform:matrix(0.297206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297206,0.000000,0.000000,0.250000,0,0);}
.m7d_c00484{transform:matrix(0.297911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297911,0.000000,0.000000,0.250000,0,0);}
.m58_c00484{transform:matrix(0.298039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298039,0.000000,0.000000,0.250000,0,0);}
.m45_c00484{transform:matrix(0.298209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298209,0.000000,0.000000,0.250000,0,0);}
.m6c_c00484{transform:matrix(0.298640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298640,0.000000,0.000000,0.250000,0,0);}
.m84_c00484{transform:matrix(0.298970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298970,0.000000,0.000000,0.250000,0,0);}
.m37_c00484{transform:matrix(0.299064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299064,0.000000,0.000000,0.250000,0,0);}
.m7c_c00484{transform:matrix(0.299362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299362,0.000000,0.000000,0.250000,0,0);}
.m4c_c00484{transform:matrix(0.301516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301516,0.000000,0.000000,0.250000,0,0);}
.m26_c00484{transform:matrix(0.302057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302057,0.000000,0.000000,0.250000,0,0);}
.m30_c00484{transform:matrix(0.304250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304250,0.000000,0.000000,0.250000,0,0);}
.m77_c00484{transform:matrix(0.304325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304325,0.000000,0.000000,0.250000,0,0);}
.m67_c00484{transform:matrix(0.306306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306306,0.000000,0.000000,0.250000,0,0);}
.m2_c00484{transform:matrix(0.306455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306455,0.000000,0.000000,0.250000,0,0);}
.m40_c00484{transform:matrix(0.306570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306570,0.000000,0.000000,0.250000,0,0);}
.m4a_c00484{transform:matrix(0.307424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307424,0.000000,0.000000,0.250000,0,0);}
.m59_c00484{transform:matrix(0.308935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308935,0.000000,0.000000,0.250000,0,0);}
.m3_c00484{transform:matrix(0.309243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309243,0.000000,0.000000,0.250000,0,0);}
.m46_c00484{transform:matrix(0.309570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309570,0.000000,0.000000,0.250000,0,0);}
.m2e_c00484{transform:matrix(0.309806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309806,0.000000,0.000000,0.250000,0,0);}
.m64_c00484{transform:matrix(0.309865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309865,0.000000,0.000000,0.250000,0,0);}
.m68_c00484{transform:matrix(0.311794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311794,0.000000,0.000000,0.250000,0,0);}
.m12_c00484{transform:matrix(0.311801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311801,0.000000,0.000000,0.250000,0,0);}
.m20_c00484{transform:matrix(0.314269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314269,0.000000,0.000000,0.250000,0,0);}
.m66_c00484{transform:matrix(0.314635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314635,0.000000,0.000000,0.250000,0,0);}
.m18_c00484{transform:matrix(0.315539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315539,0.000000,0.000000,0.250000,0,0);}
.m41_c00484{transform:matrix(0.315895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315895,0.000000,0.000000,0.250000,0,0);}
.m48_c00484{transform:matrix(0.316523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316523,0.000000,0.000000,0.250000,0,0);}
.m1c_c00484{transform:matrix(0.318617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318617,0.000000,0.000000,0.250000,0,0);}
.m55_c00484{transform:matrix(0.319042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319042,0.000000,0.000000,0.250000,0,0);}
.mf_c00484{transform:matrix(0.319440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319440,0.000000,0.000000,0.250000,0,0);}
.ma_c00484{transform:matrix(0.320282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320282,0.000000,0.000000,0.250000,0,0);}
.m3a_c00484{transform:matrix(0.320713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320713,0.000000,0.000000,0.250000,0,0);}
.m7_c00484{transform:matrix(0.321061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321061,0.000000,0.000000,0.250000,0,0);}
.m22_c00484{transform:matrix(0.321994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321994,0.000000,0.000000,0.250000,0,0);}
.m17_c00484{transform:matrix(0.326105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326105,0.000000,0.000000,0.250000,0,0);}
.m74_c00484{transform:matrix(0.328588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328588,0.000000,0.000000,0.250000,0,0);}
.m1a_c00484{transform:matrix(0.331655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331655,0.000000,0.000000,0.250000,0,0);}
.m19_c00484{transform:matrix(0.331714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331714,0.000000,0.000000,0.250000,0,0);}
.m25_c00484{transform:matrix(0.332245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332245,0.000000,0.000000,0.250000,0,0);}
.m71_c00484{transform:matrix(0.333044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333044,0.000000,0.000000,0.250000,0,0);}
.m1d_c00484{transform:matrix(0.336155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336155,0.000000,0.000000,0.250000,0,0);}
.m5_c00484{transform:matrix(0.339005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339005,0.000000,0.000000,0.250000,0,0);}
.m28_c00484{transform:matrix(0.345857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345857,0.000000,0.000000,0.250000,0,0);}
.m69_c00484{transform:matrix(0.352860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352860,0.000000,0.000000,0.250000,0,0);}
.m36_c00484{transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);}
.m1b_c00484{transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);}
.m79_c00484{transform:matrix(0.373079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373079,0.000000,0.000000,0.250000,0,0);}
.m57_c00484{transform:matrix(0.376256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376256,0.000000,0.000000,0.250000,0,0);}
.v0_c00484{vertical-align:0.000000px;}
.lsf_c00484{letter-spacing:-2.882880px;}
.ls10_c00484{letter-spacing:-2.286900px;}
.lsa_c00484{letter-spacing:-2.218873px;}
.ls11_c00484{letter-spacing:-1.989603px;}
.ls14_c00484{letter-spacing:-1.401266px;}
.ls18_c00484{letter-spacing:-0.864708px;}
.lsb_c00484{letter-spacing:-0.579191px;}
.ls1_c00484{letter-spacing:0.000000px;}
.ls13_c00484{letter-spacing:0.628137px;}
.ls19_c00484{letter-spacing:0.840235px;}
.ls4_c00484{letter-spacing:1.027860px;}
.lsc_c00484{letter-spacing:2.406498px;}
.ls5_c00484{letter-spacing:2.553335px;}
.lse_c00484{letter-spacing:3.158100px;}
.ls8_c00484{letter-spacing:3.425400px;}
.ls7_c00484{letter-spacing:3.499619px;}
.ls17_c00484{letter-spacing:3.524400px;}
.ls9_c00484{letter-spacing:3.593700px;}
.ls2_c00484{letter-spacing:3.638298px;}
.ls16_c00484{letter-spacing:3.817766px;}
.ls15_c00484{letter-spacing:4.005391px;}
.ls3_c00484{letter-spacing:4.078810px;}
.ls0_c00484{letter-spacing:4.276810px;}
.ls1a_c00484{letter-spacing:4.395610px;}
.ls6_c00484{letter-spacing:55.598598px;}
.lsd_c00484{letter-spacing:57.024198px;}
.ls12_c00484{letter-spacing:58.449798px;}
.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:-15.569433px;}
.ws1_c00484{word-spacing:0.000000px;}
._0_c00484{width:3.916044px;}
._1_c00484{width:25.532359px;}
.fc0_c00484{color:transparent;}
.fs3_c00484{font-size:22.176000px;}
.fs1_c00484{font-size:33.660000px;}
.fs5_c00484{font-size:55.598598px;}
.fsa_c00484{font-size:57.024198px;}
.fse_c00484{font-size:58.449798px;}
.fsb_c00484{font-size:63.162000px;}
.fs4_c00484{font-size:64.548000px;}
.fsd_c00484{font-size:65.340000px;}
.fs7_c00484{font-size:68.508000px;}
.fs10_c00484{font-size:70.488000px;}
.fs8_c00484{font-size:71.874000px;}
.fs9_c00484{font-size:74.844000px;}
.fsf_c00484{font-size:77.418000px;}
.fs6_c00484{font-size:78.804000px;}
.fs2_c00484{font-size:81.576198px;}
.fsc_c00484{font-size:82.368000px;}
.fs0_c00484{font-size:85.536198px;}
.fs11_c00484{font-size:87.912198px;}
.y0_c00484{bottom:0.000000px;}
.y1_c00484{bottom:76.500000px;}
.y1b_c00484{bottom:130.710720px;}
.y1a_c00484{bottom:162.073920px;}
.y19_c00484{bottom:194.506320px;}
.y18_c00484{bottom:225.864570px;}
.y17_c00484{bottom:257.584170px;}
.y16_c00484{bottom:331.715370px;}
.y14_c00484{bottom:332.076720px;}
.y15_c00484{bottom:348.471120px;}
.y13_c00484{bottom:373.775520px;}
.y12_c00484{bottom:395.510970px;}
.y11_c00484{bottom:460.380720px;}
.y10_c00484{bottom:533.794170px;}
.yf_c00484{bottom:564.800970px;}
.ye_c00484{bottom:596.164170px;}
.yd_c00484{bottom:626.819520px;}
.yc_c00484{bottom:658.890570px;}
.yb_c00484{bottom:690.971520px;}
.ya_c00484{bottom:723.403920px;}
.y9_c00484{bottom:755.118570px;}
.y7_c00484{bottom:817.844970px;}
.y8_c00484{bottom:822.121770px;}
.y6_c00484{bottom:849.920970px;}
.y5_c00484{bottom:881.640570px;}
.y4_c00484{bottom:913.365120px;}
.y3_c00484{bottom:988.921920px;}
.y2_c00484{bottom:1055.207370px;}
.h5_c00484{height:23.128875px;}
.h3_c00484{height:33.035449px;}
.h7_c00484{height:37.028666px;}
.hc_c00484{height:37.978116px;}
.h10_c00484{height:38.927565px;}
.hd_c00484{height:65.875992px;}
.h6_c00484{height:67.321547px;}
.hf_c00484{height:68.147578px;}
.h12_c00484{height:69.180117px;}
.ha_c00484{height:70.540400px;}
.h9_c00484{height:71.451703px;}
.hb_c00484{height:73.455293px;}
.h8_c00484{height:77.341816px;}
.h4_c00484{height:80.062577px;}
.h11_c00484{height:80.744555px;}
.he_c00484{height:80.839688px;}
.h2_c00484{height:83.949101px;}
.h13_c00484{height:86.281015px;}
.h1_c00484{height:1110.000000px;}
.h0_c00484{height:1263.000000px;}
.w1_c00484{width:760.500000px;}
.w0_c00484{width:892.500000px;}
.x0_c00484{left:0.000000px;}
.x1_c00484{left:66.000000px;}
.x37_c00484{left:88.487085px;}
.x29_c00484{left:89.556285px;}
.x4_c00484{left:91.184835px;}
.x58_c00484{left:111.791685px;}
.x55_c00484{left:122.033235px;}
.x5_c00484{left:124.255785px;}
.x31_c00484{left:134.274585px;}
.x21_c00484{left:144.724035px;}
.x45_c00484{left:146.045685px;}
.xf_c00484{left:156.727785px;}
.x38_c00484{left:168.132585px;}
.x46_c00484{left:178.275135px;}
.x6_c00484{left:179.497785px;}
.x2a_c00484{left:188.680035px;}
.x22_c00484{left:189.848235px;}
.x10_c00484{left:200.055135px;}
.x42_c00484{left:211.954935px;}
.x49_c00484{left:221.953935px;}
.x2b_c00484{left:223.191435px;}
.x7_c00484{left:224.359635px;}
.x59_c00484{left:235.403085px;}
.x56_c00484{left:245.144685px;}
.x4b_c00484{left:247.728585px;}
.x52_c00484{left:266.850435px;}
.x18_c00484{left:267.944385px;}
.x2c_c00484{left:279.364035px;}
.x3f_c00484{left:289.927335px;}
.x43_c00484{left:299.520435px;}
.x39_c00484{left:300.683685px;}
.x2d_c00484{left:311.246985px;}
.x11_c00484{left:312.380535px;}
.x57_c00484{left:323.839785px;}
.x3a_c00484{left:332.665635px;}
.x23_c00484{left:334.516935px;}
.x8_c00484{left:336.254385px;}
.x40_c00484{left:344.392185px;}
.x48_c00484{left:346.213785px;}
.x47_c00484{left:355.450485px;}
.x4f_c00484{left:357.281985px;}
.x32_c00484{left:367.216635px;}
.x12_c00484{left:368.449185px;}
.x9_c00484{left:378.601635px;}
.x13_c00484{left:390.120285px;}
.x4c_c00484{left:400.891485px;}
.x2e_c00484{left:411.751785px;}
.x53_c00484{left:423.656535px;}
.x19_c00484{left:435.021735px;}
.x14_c00484{left:445.773135px;}
.x33_c00484{left:456.816585px;}
.x24_c00484{left:465.959235px;}
.x1a_c00484{left:467.092785px;}
.xa_c00484{left:468.434235px;}
.x4a_c00484{left:479.150985px;}
.x50_c00484{left:488.927235px;}
.x25_c00484{left:500.594385px;}
.x4d_c00484{left:505.450335px;}
.x3b_c00484{left:511.182435px;}
.x5a_c00484{left:521.646735px;}
.x44_c00484{left:522.745635px;}
.x1b_c00484{left:533.368335px;}
.x15_c00484{left:545.500785px;}
.x2f_c00484{left:555.034485px;}
.x34_c00484{left:556.257135px;}
.x1c_c00484{left:567.300585px;}
.x26_c00484{left:577.948035px;}
.xb_c00484{left:578.987535px;}
.x35_c00484{left:589.050885px;}
.x4e_c00484{left:598.856835px;}
.x1d_c00484{left:610.395285px;}
.xc_c00484{left:611.870385px;}
.x3c_c00484{left:621.230835px;}
.x54_c00484{left:622.443585px;}
.x51_c00484{left:633.254385px;}
.x20_c00484{left:641.228835px;}
.x16_c00484{left:642.733635px;}
.x5b_c00484{left:643.961235px;}
.x1e_c00484{left:646.188735px;}
.x3d_c00484{left:654.103785px;}
.x41_c00484{left:665.642235px;}
.x30_c00484{left:666.731235px;}
.xd_c00484{left:667.968735px;}
.x27_c00484{left:676.522335px;}
.x36_c00484{left:688.095435px;}
.x17_c00484{left:689.412135px;}
.x3_c00484{left:696.064935px;}
.x28_c00484{left:698.698335px;}
.x1f_c00484{left:710.048685px;}
.x2_c00484{left:713.038485px;}
.xe_c00484{left:722.285085px;}
.x3e_c00484{left:731.803935px;}
@media print{
.v0_c00484{vertical-align:0.000000pt;}
.lsf_c00484{letter-spacing:-2.562560pt;}
.ls10_c00484{letter-spacing:-2.032800pt;}
.lsa_c00484{letter-spacing:-1.972331pt;}
.ls11_c00484{letter-spacing:-1.768536pt;}
.ls14_c00484{letter-spacing:-1.245570pt;}
.ls18_c00484{letter-spacing:-0.768629pt;}
.lsb_c00484{letter-spacing:-0.514836pt;}
.ls1_c00484{letter-spacing:0.000000pt;}
.ls13_c00484{letter-spacing:0.558344pt;}
.ls19_c00484{letter-spacing:0.746875pt;}
.ls4_c00484{letter-spacing:0.913653pt;}
.lsc_c00484{letter-spacing:2.139109pt;}
.ls5_c00484{letter-spacing:2.269631pt;}
.lse_c00484{letter-spacing:2.807200pt;}
.ls8_c00484{letter-spacing:3.044800pt;}
.ls7_c00484{letter-spacing:3.110772pt;}
.ls17_c00484{letter-spacing:3.132800pt;}
.ls9_c00484{letter-spacing:3.194400pt;}
.ls2_c00484{letter-spacing:3.234043pt;}
.ls16_c00484{letter-spacing:3.393570pt;}
.ls15_c00484{letter-spacing:3.560348pt;}
.ls3_c00484{letter-spacing:3.625609pt;}
.ls0_c00484{letter-spacing:3.801609pt;}
.ls1a_c00484{letter-spacing:3.907209pt;}
.ls6_c00484{letter-spacing:49.420976pt;}
.lsd_c00484{letter-spacing:50.688176pt;}
.ls12_c00484{letter-spacing:51.955376pt;}
.ws0_c00484{word-spacing:-13.839496pt;}
.ws1_c00484{word-spacing:0.000000pt;}
._0_c00484{width:3.480928pt;}
._1_c00484{width:22.695430pt;}
.fs3_c00484{font-size:19.712000pt;}
.fs1_c00484{font-size:29.920000pt;}
.fs5_c00484{font-size:49.420976pt;}
.fsa_c00484{font-size:50.688176pt;}
.fse_c00484{font-size:51.955376pt;}
.fsb_c00484{font-size:56.144000pt;}
.fs4_c00484{font-size:57.376000pt;}
.fsd_c00484{font-size:58.080000pt;}
.fs7_c00484{font-size:60.896000pt;}
.fs10_c00484{font-size:62.656000pt;}
.fs8_c00484{font-size:63.888000pt;}
.fs9_c00484{font-size:66.528000pt;}
.fsf_c00484{font-size:68.816000pt;}
.fs6_c00484{font-size:70.048000pt;}
.fs2_c00484{font-size:72.512176pt;}
.fsc_c00484{font-size:73.216000pt;}
.fs0_c00484{font-size:76.032176pt;}
.fs11_c00484{font-size:78.144176pt;}
.y0_c00484{bottom:0.000000pt;}
.y1_c00484{bottom:68.000000pt;}
.y1b_c00484{bottom:116.187307pt;}
.y1a_c00484{bottom:144.065707pt;}
.y19_c00484{bottom:172.894507pt;}
.y18_c00484{bottom:200.768507pt;}
.y17_c00484{bottom:228.963707pt;}
.y16_c00484{bottom:294.858107pt;}
.y14_c00484{bottom:295.179307pt;}
.y15_c00484{bottom:309.752107pt;}
.y13_c00484{bottom:332.244907pt;}
.y12_c00484{bottom:351.565307pt;}
.y11_c00484{bottom:409.227307pt;}
.y10_c00484{bottom:474.483707pt;}
.yf_c00484{bottom:502.045307pt;}
.ye_c00484{bottom:529.923707pt;}
.yd_c00484{bottom:557.172907pt;}
.yc_c00484{bottom:585.680507pt;}
.yb_c00484{bottom:614.196907pt;}
.ya_c00484{bottom:643.025707pt;}
.y9_c00484{bottom:671.216507pt;}
.y7_c00484{bottom:726.973307pt;}
.y8_c00484{bottom:730.774907pt;}
.y6_c00484{bottom:755.485307pt;}
.y5_c00484{bottom:783.680507pt;}
.y4_c00484{bottom:811.880107pt;}
.y3_c00484{bottom:879.041707pt;}
.y2_c00484{bottom:937.962107pt;}
.h5_c00484{height:20.559000pt;}
.h3_c00484{height:29.364844pt;}
.h7_c00484{height:32.914370pt;}
.hc_c00484{height:33.758325pt;}
.h10_c00484{height:34.602280pt;}
.hd_c00484{height:58.556438pt;}
.h6_c00484{height:59.841375pt;}
.hf_c00484{height:60.575625pt;}
.h12_c00484{height:61.493438pt;}
.ha_c00484{height:62.702578pt;}
.h9_c00484{height:63.512625pt;}
.hb_c00484{height:65.293594pt;}
.h8_c00484{height:68.748281pt;}
.h4_c00484{height:71.166735pt;}
.h11_c00484{height:71.772938pt;}
.he_c00484{height:71.857500pt;}
.h2_c00484{height:74.621423pt;}
.h13_c00484{height:76.694235pt;}
.h1_c00484{height:986.666667pt;}
.h0_c00484{height:1122.666667pt;}
.w1_c00484{width:676.000000pt;}
.w0_c00484{width:793.333333pt;}
.x0_c00484{left:0.000000pt;}
.x1_c00484{left:58.666667pt;}
.x37_c00484{left:78.655187pt;}
.x29_c00484{left:79.605587pt;}
.x4_c00484{left:81.053187pt;}
.x58_c00484{left:99.370387pt;}
.x55_c00484{left:108.473987pt;}
.x5_c00484{left:110.449587pt;}
.x31_c00484{left:119.355187pt;}
.x21_c00484{left:128.643587pt;}
.x45_c00484{left:129.818387pt;}
.xf_c00484{left:139.313587pt;}
.x38_c00484{left:149.451187pt;}
.x46_c00484{left:158.466787pt;}
.x6_c00484{left:159.553587pt;}
.x2a_c00484{left:167.715587pt;}
.x22_c00484{left:168.753987pt;}
.x10_c00484{left:177.826787pt;}
.x42_c00484{left:188.404387pt;}
.x49_c00484{left:197.292387pt;}
.x2b_c00484{left:198.392387pt;}
.x7_c00484{left:199.430787pt;}
.x59_c00484{left:209.247187pt;}
.x56_c00484{left:217.906387pt;}
.x4b_c00484{left:220.203187pt;}
.x52_c00484{left:237.200387pt;}
.x18_c00484{left:238.172787pt;}
.x2c_c00484{left:248.323587pt;}
.x3f_c00484{left:257.713187pt;}
.x43_c00484{left:266.240387pt;}
.x39_c00484{left:267.274387pt;}
.x2d_c00484{left:276.663987pt;}
.x11_c00484{left:277.671587pt;}
.x57_c00484{left:287.857587pt;}
.x3a_c00484{left:295.702787pt;}
.x23_c00484{left:297.348387pt;}
.x8_c00484{left:298.892787pt;}
.x40_c00484{left:306.126387pt;}
.x48_c00484{left:307.745587pt;}
.x47_c00484{left:315.955987pt;}
.x4f_c00484{left:317.583987pt;}
.x32_c00484{left:326.414787pt;}
.x12_c00484{left:327.510387pt;}
.x9_c00484{left:336.534787pt;}
.x13_c00484{left:346.773587pt;}
.x4c_c00484{left:356.347987pt;}
.x2e_c00484{left:366.001587pt;}
.x53_c00484{left:376.583587pt;}
.x19_c00484{left:386.685987pt;}
.x14_c00484{left:396.242787pt;}
.x33_c00484{left:406.059187pt;}
.x24_c00484{left:414.185987pt;}
.x1a_c00484{left:415.193587pt;}
.xa_c00484{left:416.385987pt;}
.x4a_c00484{left:425.911987pt;}
.x50_c00484{left:434.601987pt;}
.x25_c00484{left:444.972787pt;}
.x4d_c00484{left:449.289187pt;}
.x3b_c00484{left:454.384387pt;}
.x5a_c00484{left:463.685987pt;}
.x44_c00484{left:464.662787pt;}
.x1b_c00484{left:474.105187pt;}
.x15_c00484{left:484.889587pt;}
.x2f_c00484{left:493.363987pt;}
.x34_c00484{left:494.450787pt;}
.x1c_c00484{left:504.267187pt;}
.x26_c00484{left:513.731587pt;}
.xb_c00484{left:514.655587pt;}
.x35_c00484{left:523.600787pt;}
.x4e_c00484{left:532.317187pt;}
.x1d_c00484{left:542.573587pt;}
.xc_c00484{left:543.884787pt;}
.x3c_c00484{left:552.205187pt;}
.x54_c00484{left:553.283187pt;}
.x51_c00484{left:562.892787pt;}
.x20_c00484{left:569.981187pt;}
.x16_c00484{left:571.318787pt;}
.x5b_c00484{left:572.409987pt;}
.x1e_c00484{left:574.389987pt;}
.x3d_c00484{left:581.425587pt;}
.x41_c00484{left:591.681987pt;}
.x30_c00484{left:592.649987pt;}
.xd_c00484{left:593.749987pt;}
.x27_c00484{left:601.353187pt;}
.x36_c00484{left:611.640387pt;}
.x17_c00484{left:612.810787pt;}
.x3_c00484{left:618.724387pt;}
.x28_c00484{left:621.065187pt;}
.x1f_c00484{left:631.154387pt;}
.x2_c00484{left:633.811987pt;}
.xe_c00484{left:642.031187pt;}
.x3e_c00484{left:650.492387pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f9e7005520a0f927fcb46215.woff2')format("woff");}.ff1_c00485{font-family:ff1_c00485;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00485;src:url('chunks/assets/font_c37c8add458b4f547f5b0c33.woff2')format("woff");}.ff2_c00485{font-family:ff2_c00485;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00485;src:url('chunks/assets/font_e7c2c94ce0276a42fc0372aa.woff2')format("woff");}.ff3_c00485{font-family:ff3_c00485;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00485;src:url('chunks/assets/font_031c0f93d44bfc5413f3d889.woff2')format("woff");}.ff4_c00485{font-family:ff4_c00485;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m90_c00485{transform:matrix(0.045455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045455,0.000000,0.000000,0.250000,0,0);}
.m8f_c00485{transform:matrix(0.076705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076705,0.000000,0.000000,0.250000,0,0);}
.m76_c00485{transform:matrix(0.078947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078947,0.000000,0.000000,0.250000,0,0);}
.m1_c00485{transform:matrix(0.130631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130631,0.000000,0.000000,0.250000,0,0);}
.m91_c00485{transform:matrix(0.142993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142993,0.000000,0.000000,0.250000,0,0);}
.m5e_c00485{transform:matrix(0.161546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161546,0.000000,0.000000,0.250000,0,0);}
.m5a_c00485{transform:matrix(0.168400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168400,0.000000,0.000000,0.250000,0,0);}
.m74_c00485{transform:matrix(0.171053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171053,0.000000,0.000000,0.250000,0,0);}
.m2_c00485{transform:matrix(0.175676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175676,0.000000,0.000000,0.250000,0,0);}
.m80_c00485{transform:matrix(0.182292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182292,0.000000,0.000000,0.250000,0,0);}
.m65_c00485{transform:matrix(0.185937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185937,0.000000,0.000000,0.250000,0,0);}
.m75_c00485{transform:matrix(0.190790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190790,0.000000,0.000000,0.250000,0,0);}
.m73_c00485{transform:matrix(0.203948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203948,0.000000,0.000000,0.250000,0,0);}
.m5b_c00485{transform:matrix(0.245259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245259,0.000000,0.000000,0.250000,0,0);}
.m71_c00485{transform:matrix(0.246052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246052,0.000000,0.000000,0.250000,0,0);}
.m0_c00485{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m57_c00485{transform:matrix(0.250404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250404,0.000000,0.000000,0.250000,0,0);}
.m85_c00485{transform:matrix(0.251011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251011,0.000000,0.000000,0.250000,0,0);}
.m29_c00485{transform:matrix(0.252527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252527,0.000000,0.000000,0.250000,0,0);}
.m2d_c00485{transform:matrix(0.253919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253919,0.000000,0.000000,0.250000,0,0);}
.m41_c00485{transform:matrix(0.254039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254039,0.000000,0.000000,0.250000,0,0);}
.m2e_c00485{transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);}
.m86_c00485{transform:matrix(0.258598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258598,0.000000,0.000000,0.250000,0,0);}
.m28_c00485{transform:matrix(0.259764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259764,0.000000,0.000000,0.250000,0,0);}
.m44_c00485{transform:matrix(0.259809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259809,0.000000,0.000000,0.250000,0,0);}
.m3b_c00485{transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);}
.m4d_c00485{transform:matrix(0.262387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262387,0.000000,0.000000,0.250000,0,0);}
.m30_c00485{transform:matrix(0.262698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262698,0.000000,0.000000,0.250000,0,0);}
.m3f_c00485{transform:matrix(0.263124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263124,0.000000,0.000000,0.250000,0,0);}
.m19_c00485{transform:matrix(0.265908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265908,0.000000,0.000000,0.250000,0,0);}
.m66_c00485{transform:matrix(0.266469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266469,0.000000,0.000000,0.250000,0,0);}
.m4c_c00485{transform:matrix(0.268540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268540,0.000000,0.000000,0.250000,0,0);}
.m5_c00485{transform:matrix(0.271308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271308,0.000000,0.000000,0.250000,0,0);}
.m32_c00485{transform:matrix(0.271711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271711,0.000000,0.000000,0.250000,0,0);}
.m52_c00485{transform:matrix(0.271747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271747,0.000000,0.000000,0.250000,0,0);}
.m8b_c00485{transform:matrix(0.271860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271860,0.000000,0.000000,0.250000,0,0);}
.mb_c00485{transform:matrix(0.272030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272030,0.000000,0.000000,0.250000,0,0);}
.m15_c00485{transform:matrix(0.272827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272827,0.000000,0.000000,0.250000,0,0);}
.m1a_c00485{transform:matrix(0.273387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273387,0.000000,0.000000,0.250000,0,0);}
.m10_c00485{transform:matrix(0.274529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274529,0.000000,0.000000,0.250000,0,0);}
.m36_c00485{transform:matrix(0.274612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274612,0.000000,0.000000,0.250000,0,0);}
.m6c_c00485{transform:matrix(0.275372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275372,0.000000,0.000000,0.250000,0,0);}
.m8_c00485{transform:matrix(0.275505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275505,0.000000,0.000000,0.250000,0,0);}
.m9e_c00485{transform:matrix(0.275577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275577,0.000000,0.000000,0.250000,0,0);}
.m3e_c00485{transform:matrix(0.275843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275843,0.000000,0.000000,0.250000,0,0);}
.m25_c00485{transform:matrix(0.276494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276494,0.000000,0.000000,0.250000,0,0);}
.m11_c00485{transform:matrix(0.277517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277517,0.000000,0.000000,0.250000,0,0);}
.m89_c00485{transform:matrix(0.278227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278227,0.000000,0.000000,0.250000,0,0);}
.m7d_c00485{transform:matrix(0.278890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278890,0.000000,0.000000,0.250000,0,0);}
.m13_c00485{transform:matrix(0.279915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279915,0.000000,0.000000,0.250000,0,0);}
.m24_c00485{transform:matrix(0.280682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280682,0.000000,0.000000,0.250000,0,0);}
.m4b_c00485{transform:matrix(0.281410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281410,0.000000,0.000000,0.250000,0,0);}
.m88_c00485{transform:matrix(0.282088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282088,0.000000,0.000000,0.250000,0,0);}
.m3_c00485{transform:matrix(0.283130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283130,0.000000,0.000000,0.250000,0,0);}
.m6a_c00485{transform:matrix(0.283364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283364,0.000000,0.000000,0.250000,0,0);}
.m2c_c00485{transform:matrix(0.283687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283687,0.000000,0.000000,0.250000,0,0);}
.m68_c00485{transform:matrix(0.283782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283782,0.000000,0.000000,0.250000,0,0);}
.m35_c00485{transform:matrix(0.283792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283792,0.000000,0.000000,0.250000,0,0);}
.m21_c00485{transform:matrix(0.284536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284536,0.000000,0.000000,0.250000,0,0);}
.m9_c00485{transform:matrix(0.285521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285521,0.000000,0.000000,0.250000,0,0);}
.m34_c00485{transform:matrix(0.286267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286267,0.000000,0.000000,0.250000,0,0);}
.m81_c00485{transform:matrix(0.286284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286284,0.000000,0.000000,0.250000,0,0);}
.m7f_c00485{transform:matrix(0.287289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287289,0.000000,0.000000,0.250000,0,0);}
.m53_c00485{transform:matrix(0.288675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288675,0.000000,0.000000,0.250000,0,0);}
.m31_c00485{transform:matrix(0.290630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290630,0.000000,0.000000,0.250000,0,0);}
.m27_c00485{transform:matrix(0.290973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290973,0.000000,0.000000,0.250000,0,0);}
.m7c_c00485{transform:matrix(0.290994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290994,0.000000,0.000000,0.250000,0,0);}
.m16_c00485{transform:matrix(0.291420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291420,0.000000,0.000000,0.250000,0,0);}
.m67_c00485{transform:matrix(0.292536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292536,0.000000,0.000000,0.250000,0,0);}
.m5c_c00485{transform:matrix(0.292656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292656,0.000000,0.000000,0.250000,0,0);}
.m62_c00485{transform:matrix(0.293732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293732,0.000000,0.000000,0.250000,0,0);}
.m38_c00485{transform:matrix(0.294580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294580,0.000000,0.000000,0.250000,0,0);}
.me_c00485{transform:matrix(0.295154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295154,0.000000,0.000000,0.250000,0,0);}
.m4e_c00485{transform:matrix(0.295421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295421,0.000000,0.000000,0.250000,0,0);}
.m8e_c00485{transform:matrix(0.295606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295606,0.000000,0.000000,0.250000,0,0);}
.m7a_c00485{transform:matrix(0.295694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295694,0.000000,0.000000,0.250000,0,0);}
.m9d_c00485{transform:matrix(0.295929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295929,0.000000,0.000000,0.250000,0,0);}
.m58_c00485{transform:matrix(0.296190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296190,0.000000,0.000000,0.250000,0,0);}
.m8a_c00485{transform:matrix(0.296421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296421,0.000000,0.000000,0.250000,0,0);}
.m96_c00485{transform:matrix(0.296675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296675,0.000000,0.000000,0.250000,0,0);}
.m87_c00485{transform:matrix(0.296937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296937,0.000000,0.000000,0.250000,0,0);}
.m39_c00485{transform:matrix(0.297425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297425,0.000000,0.000000,0.250000,0,0);}
.m47_c00485{transform:matrix(0.298522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298522,0.000000,0.000000,0.250000,0,0);}
.m18_c00485{transform:matrix(0.300837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300837,0.000000,0.000000,0.250000,0,0);}
.m1d_c00485{transform:matrix(0.302604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302604,0.000000,0.000000,0.250000,0,0);}
.m9a_c00485{transform:matrix(0.302835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302835,0.000000,0.000000,0.250000,0,0);}
.m9b_c00485{transform:matrix(0.304308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304308,0.000000,0.000000,0.250000,0,0);}
.m4f_c00485{transform:matrix(0.304347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304347,0.000000,0.000000,0.250000,0,0);}
.m9f_c00485{transform:matrix(0.304776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304776,0.000000,0.000000,0.250000,0,0);}
.m26_c00485{transform:matrix(0.305668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305668,0.000000,0.000000,0.250000,0,0);}
.m12_c00485{transform:matrix(0.305696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305696,0.000000,0.000000,0.250000,0,0);}
.m6d_c00485{transform:matrix(0.305991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305991,0.000000,0.000000,0.250000,0,0);}
.m84_c00485{transform:matrix(0.306712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306712,0.000000,0.000000,0.250000,0,0);}
.m3d_c00485{transform:matrix(0.307365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307365,0.000000,0.000000,0.250000,0,0);}
.m4a_c00485{transform:matrix(0.307788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307788,0.000000,0.000000,0.250000,0,0);}
.m83_c00485{transform:matrix(0.308793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308793,0.000000,0.000000,0.250000,0,0);}
.m56_c00485{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m95_c00485{transform:matrix(0.310788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310788,0.000000,0.000000,0.250000,0,0);}
.m6e_c00485{transform:matrix(0.311254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311254,0.000000,0.000000,0.250000,0,0);}
.m40_c00485{transform:matrix(0.312200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312200,0.000000,0.000000,0.250000,0,0);}
.m1e_c00485{transform:matrix(0.312210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312210,0.000000,0.000000,0.250000,0,0);}
.m49_c00485{transform:matrix(0.312584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312584,0.000000,0.000000,0.250000,0,0);}
.m9c_c00485{transform:matrix(0.313295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313295,0.000000,0.000000,0.250000,0,0);}
.m79_c00485{transform:matrix(0.314222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314222,0.000000,0.000000,0.250000,0,0);}
.m70_c00485{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);}
.m97_c00485{transform:matrix(0.317462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317462,0.000000,0.000000,0.250000,0,0);}
.ma0_c00485{transform:matrix(0.317708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317708,0.000000,0.000000,0.250000,0,0);}
.m51_c00485{transform:matrix(0.317762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317762,0.000000,0.000000,0.250000,0,0);}
.m4_c00485{transform:matrix(0.317874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317874,0.000000,0.000000,0.250000,0,0);}
.m6f_c00485{transform:matrix(0.319978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319978,0.000000,0.000000,0.250000,0,0);}
.m2f_c00485{transform:matrix(0.320282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320282,0.000000,0.000000,0.250000,0,0);}
.m50_c00485{transform:matrix(0.320315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320315,0.000000,0.000000,0.250000,0,0);}
.m8d_c00485{transform:matrix(0.321326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321326,0.000000,0.000000,0.250000,0,0);}
.ma1_c00485{transform:matrix(0.321545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321545,0.000000,0.000000,0.250000,0,0);}
.mc_c00485{transform:matrix(0.321786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321786,0.000000,0.000000,0.250000,0,0);}
.m2b_c00485{transform:matrix(0.322687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322687,0.000000,0.000000,0.250000,0,0);}
.m92_c00485{transform:matrix(0.323190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323190,0.000000,0.000000,0.250000,0,0);}
.m5f_c00485{transform:matrix(0.323371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323371,0.000000,0.000000,0.250000,0,0);}
.m33_c00485{transform:matrix(0.325844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325844,0.000000,0.000000,0.250000,0,0);}
.m2a_c00485{transform:matrix(0.328028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328028,0.000000,0.000000,0.250000,0,0);}
.m7b_c00485{transform:matrix(0.328407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328407,0.000000,0.000000,0.250000,0,0);}
.m6b_c00485{transform:matrix(0.328628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328628,0.000000,0.000000,0.250000,0,0);}
.m6_c00485{transform:matrix(0.330145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330145,0.000000,0.000000,0.250000,0,0);}
.m20_c00485{transform:matrix(0.330313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330313,0.000000,0.000000,0.250000,0,0);}
.m23_c00485{transform:matrix(0.330548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330548,0.000000,0.000000,0.250000,0,0);}
.m42_c00485{transform:matrix(0.331229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331229,0.000000,0.000000,0.250000,0,0);}
.m54_c00485{transform:matrix(0.333044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333044,0.000000,0.000000,0.250000,0,0);}
.m59_c00485{transform:matrix(0.334695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334695,0.000000,0.000000,0.250000,0,0);}
.m17_c00485{transform:matrix(0.335691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335691,0.000000,0.000000,0.250000,0,0);}
.m22_c00485{transform:matrix(0.336673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336673,0.000000,0.000000,0.250000,0,0);}
.m1f_c00485{transform:matrix(0.337530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337530,0.000000,0.000000,0.250000,0,0);}
.m98_c00485{transform:matrix(0.338010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338010,0.000000,0.000000,0.250000,0,0);}
.m94_c00485{transform:matrix(0.338507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338507,0.000000,0.000000,0.250000,0,0);}
.m37_c00485{transform:matrix(0.338528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338528,0.000000,0.000000,0.250000,0,0);}
.m7_c00485{transform:matrix(0.338844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338844,0.000000,0.000000,0.250000,0,0);}
.m43_c00485{transform:matrix(0.340037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340037,0.000000,0.000000,0.250000,0,0);}
.m77_c00485{transform:matrix(0.341004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341004,0.000000,0.000000,0.250000,0,0);}
.mf_c00485{transform:matrix(0.341575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341575,0.000000,0.000000,0.250000,0,0);}
.m78_c00485{transform:matrix(0.341677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341677,0.000000,0.000000,0.250000,0,0);}
.md_c00485{transform:matrix(0.342875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342875,0.000000,0.000000,0.250000,0,0);}
.m72_c00485{transform:matrix(0.344253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344253,0.000000,0.000000,0.250000,0,0);}
.m8c_c00485{transform:matrix(0.346106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346106,0.000000,0.000000,0.250000,0,0);}
.m7e_c00485{transform:matrix(0.347001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347001,0.000000,0.000000,0.250000,0,0);}
.m93_c00485{transform:matrix(0.348092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348092,0.000000,0.000000,0.250000,0,0);}
.m1c_c00485{transform:matrix(0.348332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348332,0.000000,0.000000,0.250000,0,0);}
.m45_c00485{transform:matrix(0.352276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352276,0.000000,0.000000,0.250000,0,0);}
.m99_c00485{transform:matrix(0.358479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358479,0.000000,0.000000,0.250000,0,0);}
.m64_c00485{transform:matrix(0.359417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359417,0.000000,0.000000,0.250000,0,0);}
.m55_c00485{transform:matrix(0.359468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359468,0.000000,0.000000,0.250000,0,0);}
.m5d_c00485{transform:matrix(0.362525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362525,0.000000,0.000000,0.250000,0,0);}
.m82_c00485{transform:matrix(0.363051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363051,0.000000,0.000000,0.250000,0,0);}
.m46_c00485{transform:matrix(0.363427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363427,0.000000,0.000000,0.250000,0,0);}
.m14_c00485{transform:matrix(0.374133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374133,0.000000,0.000000,0.250000,0,0);}
.m3c_c00485{transform:matrix(0.376256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376256,0.000000,0.000000,0.250000,0,0);}
.m60_c00485{transform:matrix(0.376739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376739,0.000000,0.000000,0.250000,0,0);}
.m3a_c00485{transform:matrix(0.380737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380737,0.000000,0.000000,0.250000,0,0);}
.m1b_c00485{transform:matrix(0.382538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382538,0.000000,0.000000,0.250000,0,0);}
.m63_c00485{transform:matrix(0.383292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383292,0.000000,0.000000,0.250000,0,0);}
.m69_c00485{transform:matrix(0.391173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391173,0.000000,0.000000,0.250000,0,0);}
.m48_c00485{transform:matrix(0.397482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397482,0.000000,0.000000,0.250000,0,0);}
.ma_c00485{transform:matrix(0.403791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403791,0.000000,0.000000,0.250000,0,0);}
.m61_c00485{transform:matrix(0.412769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412769,0.000000,0.000000,0.250000,0,0);}
.v1_c00485{vertical-align:-14.256000px;}
.v0_c00485{vertical-align:0.000000px;}
.ls11_c00485{letter-spacing:-2.619540px;}
.ls14_c00485{letter-spacing:-2.321550px;}
.ls10_c00485{letter-spacing:-1.074150px;}
.ls1b_c00485{letter-spacing:-1.017878px;}
.ls16_c00485{letter-spacing:-0.648650px;}
.ls1_c00485{letter-spacing:0.000000px;}
.ls4_c00485{letter-spacing:0.890644px;}
.ls13_c00485{letter-spacing:1.429405px;}
.lsc_c00485{letter-spacing:1.605859px;}
.ls7_c00485{letter-spacing:1.661537px;}
.ls0_c00485{letter-spacing:3.066941px;}
.ls8_c00485{letter-spacing:3.484810px;}
.ls19_c00485{letter-spacing:3.524400px;}
.ls15_c00485{letter-spacing:3.603610px;}
.lse_c00485{letter-spacing:3.638298px;}
.ls5_c00485{letter-spacing:3.722400px;}
.ls3_c00485{letter-spacing:3.742200px;}
.ls12_c00485{letter-spacing:3.801610px;}
.ls6_c00485{letter-spacing:3.950110px;}
.lsb_c00485{letter-spacing:4.019400px;}
.lsa_c00485{letter-spacing:4.078810px;}
.lsd_c00485{letter-spacing:4.088700px;}
.ls9_c00485{letter-spacing:4.118400px;}
.lsf_c00485{letter-spacing:4.276810px;}
.ls2_c00485{letter-spacing:52.747398px;}
.ls18_c00485{letter-spacing:54.172998px;}
.ls17_c00485{letter-spacing:57.024198px;}
.ls1a_c00485{letter-spacing:62.726400px;}
.sc__c00485{text-shadow:none;}
.sc0_c00485{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00485{-webkit-text-stroke:0px transparent;}
.sc0_c00485{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00485{word-spacing:-20.437455px;}
.ws1_c00485{word-spacing:-19.698941px;}
.ws3_c00485{word-spacing:-17.622000px;}
.ws4_c00485{word-spacing:-2.395008px;}
.ws5_c00485{word-spacing:0.000000px;}
.ws2_c00485{word-spacing:1.565784px;}
._5_c00485{margin-left:-5.146416px;}
._3_c00485{margin-left:-3.171245px;}
._0_c00485{width:1.703087px;}
._1_c00485{width:2.874406px;}
._2_c00485{width:6.187104px;}
._7_c00485{width:8.831592px;}
._6_c00485{width:10.292040px;}
._4_c00485{width:13.546764px;}
.fc0_c00485{color:transparent;}
.fs0_c00485{font-size:22.176000px;}
.fs1_c00485{font-size:27.720000px;}
.fs10_c00485{font-size:30.690000px;}
.fs3_c00485{font-size:33.264000px;}
.fs18_c00485{font-size:38.016198px;}
.fsf_c00485{font-size:46.134000px;}
.fs15_c00485{font-size:48.114000px;}
.fs2_c00485{font-size:52.747398px;}
.fs16_c00485{font-size:54.172998px;}
.fsc_c00485{font-size:54.252000px;}
.fs14_c00485{font-size:57.024198px;}
.fs19_c00485{font-size:62.726400px;}
.fs12_c00485{font-size:66.330000px;}
.fs6_c00485{font-size:66.528000px;}
.fs8_c00485{font-size:69.696198px;}
.fs17_c00485{font-size:70.488000px;}
.fs13_c00485{font-size:72.072198px;}
.fs5_c00485{font-size:74.448000px;}
.fs4_c00485{font-size:74.844000px;}
.fs11_c00485{font-size:76.032198px;}
.fs7_c00485{font-size:79.002198px;}
.fsb_c00485{font-size:80.388000px;}
.fsa_c00485{font-size:81.576198px;}
.fsd_c00485{font-size:81.774000px;}
.fs9_c00485{font-size:82.368000px;}
.fse_c00485{font-size:85.536198px;}
.y0_c00485{bottom:0.000000px;}
.y1_c00485{bottom:76.500000px;}
.y1b_c00485{bottom:157.792185px;}
.y1a_c00485{bottom:190.229535px;}
.y19_c00485{bottom:221.592735px;}
.y18_c00485{bottom:248.679135px;}
.y17_c00485{bottom:253.312335px;}
.y16_c00485{bottom:284.670585px;}
.y15_c00485{bottom:316.395135px;}
.y14_c00485{bottom:347.758335px;}
.y13_c00485{bottom:379.829385px;}
.y12_c00485{bottom:392.659785px;}
.y11_c00485{bottom:398.362185px;}
.y10_c00485{bottom:411.905385px;}
.yf_c00485{bottom:475.700985px;}
.ye_c00485{bottom:507.776985px;}
.yd_c00485{bottom:539.140185px;}
.yc_c00485{bottom:570.864735px;}
.yb_c00485{bottom:602.579385px;}
.ya_c00485{bottom:633.942585px;}
.y9_c00485{bottom:665.667135px;}
.y8_c00485{bottom:689.184585px;}
.y2_c00485{bottom:855.623385px;}
.y7_c00485{bottom:887.347935px;}
.y6_c00485{bottom:919.062585px;}
.y5_c00485{bottom:1053.781785px;}
.y4_c00485{bottom:1059.127785px;}
.y3_c00485{bottom:1096.549785px;}
.h2_c00485{height:23.128875px;}
.h3_c00485{height:28.911094px;}
.h12_c00485{height:30.120557px;}
.h5_c00485{height:34.693313px;}
.h4_c00485{height:35.129767px;}
.h18_c00485{height:36.079217px;}
.h17_c00485{height:37.978116px;}
.h19_c00485{height:39.649707px;}
.h1a_c00485{height:41.775782px;}
.h11_c00485{height:48.116320px;}
.he_c00485{height:53.245371px;}
.h16_c00485{height:65.293594px;}
.ha_c00485{height:68.403007px;}
.h14_c00485{height:69.180117px;}
.h8_c00485{height:69.386625px;}
.h15_c00485{height:70.734921px;}
.h7_c00485{height:73.066641px;}
.h6_c00485{height:73.455293px;}
.h13_c00485{height:74.621444px;}
.h9_c00485{height:77.536337px;}
.hd_c00485{height:78.896426px;}
.hc_c00485{height:80.062577px;}
.hb_c00485{height:80.839688px;}
.hf_c00485{height:82.412859px;}
.h10_c00485{height:83.949101px;}
.h1_c00485{height:1110.000000px;}
.h0_c00485{height:1263.000000px;}
.w1_c00485{width:775.500000px;}
.w0_c00485{width:892.500000px;}
.x0_c00485{left:0.000000px;}
.x2_c00485{left:26.632635px;}
.x1b_c00485{left:56.852385px;}
.x1_c00485{left:58.500000px;}
.x47_c00485{left:84.042735px;}
.x39_c00485{left:85.087185px;}
.x18_c00485{left:86.186085px;}
.x7_c00485{left:88.829385px;}
.x63_c00485{left:96.655335px;}
.x31_c00485{left:118.054185px;}
.x10_c00485{left:120.237135px;}
.x4f_c00485{left:127.543335px;}
.x3a_c00485{left:129.127335px;}
.x11_c00485{left:131.290485px;}
.x48_c00485{left:138.240285px;}
.x74_c00485{left:139.888635px;}
.x19_c00485{left:142.596285px;}
.x2b_c00485{left:150.343035px;}
.x8_c00485{left:153.332835px;}
.x6b_c00485{left:159.886635px;}
.x3b_c00485{left:161.163735px;}
.x64_c00485{left:172.231935px;}
.x24_c00485{left:173.905035px;}
.x57_c00485{left:182.428935px;}
.x1c_c00485{left:184.384185px;}
.x49_c00485{left:194.338635px;}
.x3c_c00485{left:195.779085px;}
.x5d_c00485{left:204.530685px;}
.x71_c00485{left:216.747285px;}
.x58_c00485{left:217.781835px;}
.x12_c00485{left:218.890635px;}
.x42_c00485{left:228.176835px;}
.x32_c00485{left:251.060685px;}
.x43_c00485{left:260.475585px;}
.x65_c00485{left:261.569535px;}
.x25_c00485{left:273.127785px;}
.x3d_c00485{left:283.077285px;}
.x9_c00485{left:284.478135px;}
.x50_c00485{left:294.848385px;}
.x66_c00485{left:304.297935px;}
.x33_c00485{left:306.277935px;}
.x6c_c00485{left:307.485735px;}
.x72_c00485{left:316.593735px;}
.x1d_c00485{left:317.920335px;}
.x59_c00485{left:327.666885px;}
.x13_c00485{left:329.438985px;}
.x3e_c00485{left:338.314335px;}
.x44_c00485{left:339.428085px;}
.x6d_c00485{left:348.140085px;}
.x5e_c00485{left:350.120085px;}
.x2c_c00485{left:351.139785px;}
.xa_c00485{left:362.376285px;}
.x4a_c00485{left:371.825835px;}
.x45_c00485{left:373.162335px;}
.x73_c00485{left:382.502985px;}
.x26_c00485{left:383.760285px;}
.x14_c00485{left:385.596735px;}
.x1e_c00485{left:395.026485px;}
.x3_c00485{left:401.184285px;}
.x3f_c00485{left:404.852235px;}
.x75_c00485{left:410.163585px;}
.x34_c00485{left:417.445035px;}
.x51_c00485{left:426.592635px;}
.x15_c00485{left:429.577485px;}
.x67_c00485{left:438.829035px;}
.x35_c00485{left:449.045835px;}
.x40_c00485{left:450.629835px;}
.xb_c00485{left:461.846535px;}
.x4b_c00485{left:470.751585px;}
.x1f_c00485{left:472.305885px;}
.x36_c00485{left:483.374085px;}
.x2d_c00485{left:484.463085px;}
.x76_c00485{left:491.353485px;}
.x6e_c00485{left:493.016685px;}
.x27_c00485{left:494.462085px;}
.x20_c00485{left:505.807485px;}
.x2e_c00485{left:516.563835px;}
.x16_c00485{left:527.067735px;}
.x46_c00485{left:548.436885px;}
.x52_c00485{left:549.580335px;}
.x68_c00485{left:559.777335px;}
.xc_c00485{left:561.450435px;}
.x4c_c00485{left:562.494885px;}
.x5f_c00485{left:569.825835px;}
.x21_c00485{left:571.820685px;}
.x53_c00485{left:581.230635px;}
.x60_c00485{left:582.799785px;}
.x77_c00485{left:592.234485px;}
.x2f_c00485{left:593.358135px;}
.x17_c00485{left:595.308435px;}
.xd_c00485{left:604.391685px;}
.x69_c00485{left:613.539285px;}
.x28_c00485{left:616.598385px;}
.x6f_c00485{left:624.038235px;}
.x22_c00485{left:625.785585px;}
.x54_c00485{left:637.606185px;}
.x37_c00485{left:638.690235px;}
.x78_c00485{left:646.377585px;}
.x41_c00485{left:647.521035px;}
.x5a_c00485{left:659.118885px;}
.x30_c00485{left:669.969285px;}
.x38_c00485{left:671.196885px;}
.x6a_c00485{left:680.884035px;}
.x70_c00485{left:689.264385px;}
.x5b_c00485{left:692.209635px;}
.xe_c00485{left:693.684735px;}
.x29_c00485{left:696.709185px;}
.x1a_c00485{left:700.763235px;}
.x2a_c00485{left:702.802635px;}
.x4d_c00485{left:704.262885px;}
.x4e_c00485{left:709.559385px;}
.x4_c00485{left:712.435335px;}
.x23_c00485{left:714.529185px;}
.x61_c00485{left:715.642935px;}
.xf_c00485{left:726.419085px;}
.x6_c00485{left:728.696085px;}
.x5_c00485{left:735.239985px;}
.x55_c00485{left:736.794285px;}
.x62_c00485{left:750.926535px;}
.x5c_c00485{left:758.896035px;}
.x56_c00485{left:759.925635px;}
@media print{
.v1_c00485{vertical-align:-12.672000pt;}
.v0_c00485{vertical-align:0.000000pt;}
.ls11_c00485{letter-spacing:-2.328480pt;}
.ls14_c00485{letter-spacing:-2.063600pt;}
.ls10_c00485{letter-spacing:-0.954800pt;}
.ls1b_c00485{letter-spacing:-0.904781pt;}
.ls16_c00485{letter-spacing:-0.576578pt;}
.ls1_c00485{letter-spacing:0.000000pt;}
.ls4_c00485{letter-spacing:0.791683pt;}
.ls13_c00485{letter-spacing:1.270583pt;}
.lsc_c00485{letter-spacing:1.427430pt;}
.ls7_c00485{letter-spacing:1.476922pt;}
.ls0_c00485{letter-spacing:2.726170pt;}
.ls8_c00485{letter-spacing:3.097609pt;}
.ls19_c00485{letter-spacing:3.132800pt;}
.ls15_c00485{letter-spacing:3.203209pt;}
.lse_c00485{letter-spacing:3.234043pt;}
.ls5_c00485{letter-spacing:3.308800pt;}
.ls3_c00485{letter-spacing:3.326400pt;}
.ls12_c00485{letter-spacing:3.379209pt;}
.ls6_c00485{letter-spacing:3.511209pt;}
.lsb_c00485{letter-spacing:3.572800pt;}
.lsa_c00485{letter-spacing:3.625609pt;}
.lsd_c00485{letter-spacing:3.634400pt;}
.ls9_c00485{letter-spacing:3.660800pt;}
.lsf_c00485{letter-spacing:3.801609pt;}
.ls2_c00485{letter-spacing:46.886576pt;}
.ls18_c00485{letter-spacing:48.153776pt;}
.ls17_c00485{letter-spacing:50.688176pt;}
.ls1a_c00485{letter-spacing:55.756800pt;}
.ws0_c00485{word-spacing:-18.166627pt;}
.ws1_c00485{word-spacing:-17.510170pt;}
.ws3_c00485{word-spacing:-15.664000pt;}
.ws4_c00485{word-spacing:-2.128896pt;}
.ws5_c00485{word-spacing:0.000000pt;}
.ws2_c00485{word-spacing:1.391808pt;}
._5_c00485{margin-left:-4.574592pt;}
._3_c00485{margin-left:-2.818884pt;}
._0_c00485{width:1.513855pt;}
._1_c00485{width:2.555027pt;}
._2_c00485{width:5.499648pt;}
._7_c00485{width:7.850304pt;}
._6_c00485{width:9.148480pt;}
._4_c00485{width:12.041568pt;}
.fs0_c00485{font-size:19.712000pt;}
.fs1_c00485{font-size:24.640000pt;}
.fs10_c00485{font-size:27.280000pt;}
.fs3_c00485{font-size:29.568000pt;}
.fs18_c00485{font-size:33.792176pt;}
.fsf_c00485{font-size:41.008000pt;}
.fs15_c00485{font-size:42.768000pt;}
.fs2_c00485{font-size:46.886576pt;}
.fs16_c00485{font-size:48.153776pt;}
.fsc_c00485{font-size:48.224000pt;}
.fs14_c00485{font-size:50.688176pt;}
.fs19_c00485{font-size:55.756800pt;}
.fs12_c00485{font-size:58.960000pt;}
.fs6_c00485{font-size:59.136000pt;}
.fs8_c00485{font-size:61.952176pt;}
.fs17_c00485{font-size:62.656000pt;}
.fs13_c00485{font-size:64.064176pt;}
.fs5_c00485{font-size:66.176000pt;}
.fs4_c00485{font-size:66.528000pt;}
.fs11_c00485{font-size:67.584176pt;}
.fs7_c00485{font-size:70.224176pt;}
.fsb_c00485{font-size:71.456000pt;}
.fsa_c00485{font-size:72.512176pt;}
.fsd_c00485{font-size:72.688000pt;}
.fs9_c00485{font-size:73.216000pt;}
.fse_c00485{font-size:76.032176pt;}
.y0_c00485{bottom:0.000000pt;}
.y1_c00485{bottom:68.000000pt;}
.y1b_c00485{bottom:140.259720pt;}
.y1a_c00485{bottom:169.092920pt;}
.y19_c00485{bottom:196.971320pt;}
.y18_c00485{bottom:221.048120pt;}
.y17_c00485{bottom:225.166520pt;}
.y16_c00485{bottom:253.040520pt;}
.y15_c00485{bottom:281.240120pt;}
.y14_c00485{bottom:309.118520pt;}
.y13_c00485{bottom:337.626120pt;}
.y12_c00485{bottom:349.030920pt;}
.y11_c00485{bottom:354.099720pt;}
.y10_c00485{bottom:366.138120pt;}
.yf_c00485{bottom:422.845320pt;}
.ye_c00485{bottom:451.357320pt;}
.yd_c00485{bottom:479.235720pt;}
.yc_c00485{bottom:507.435320pt;}
.yb_c00485{bottom:535.626120pt;}
.ya_c00485{bottom:563.504520pt;}
.y9_c00485{bottom:591.704120pt;}
.y8_c00485{bottom:612.608520pt;}
.y2_c00485{bottom:760.554120pt;}
.y7_c00485{bottom:788.753720pt;}
.y6_c00485{bottom:816.944520pt;}
.y5_c00485{bottom:936.694920pt;}
.y4_c00485{bottom:941.446920pt;}
.y3_c00485{bottom:974.710920pt;}
.h2_c00485{height:20.559000pt;}
.h3_c00485{height:25.698750pt;}
.h12_c00485{height:26.773828pt;}
.h5_c00485{height:30.838500pt;}
.h4_c00485{height:31.226460pt;}
.h18_c00485{height:32.070415pt;}
.h17_c00485{height:33.758325pt;}
.h19_c00485{height:35.244184pt;}
.h1a_c00485{height:37.134029pt;}
.h11_c00485{height:42.770063pt;}
.he_c00485{height:47.329219pt;}
.h16_c00485{height:58.038750pt;}
.ha_c00485{height:60.802673pt;}
.h14_c00485{height:61.493438pt;}
.h8_c00485{height:61.677000pt;}
.h15_c00485{height:62.875485pt;}
.h7_c00485{height:64.948125pt;}
.h6_c00485{height:65.293594pt;}
.h13_c00485{height:66.330173pt;}
.h9_c00485{height:68.921188pt;}
.hd_c00485{height:70.130156pt;}
.hc_c00485{height:71.166735pt;}
.hb_c00485{height:71.857500pt;}
.hf_c00485{height:73.255875pt;}
.h10_c00485{height:74.621423pt;}
.h1_c00485{height:986.666667pt;}
.h0_c00485{height:1122.666667pt;}
.w1_c00485{width:689.333333pt;}
.w0_c00485{width:793.333333pt;}
.x0_c00485{left:0.000000pt;}
.x2_c00485{left:23.673453pt;}
.x1b_c00485{left:50.535453pt;}
.x1_c00485{left:52.000000pt;}
.x47_c00485{left:74.704653pt;}
.x39_c00485{left:75.633053pt;}
.x18_c00485{left:76.609853pt;}
.x7_c00485{left:78.959453pt;}
.x63_c00485{left:85.915853pt;}
.x31_c00485{left:104.937053pt;}
.x10_c00485{left:106.877453pt;}
.x4f_c00485{left:113.371853pt;}
.x3a_c00485{left:114.779853pt;}
.x11_c00485{left:116.702653pt;}
.x48_c00485{left:122.880253pt;}
.x74_c00485{left:124.345453pt;}
.x19_c00485{left:126.752253pt;}
.x2b_c00485{left:133.638253pt;}
.x8_c00485{left:136.295853pt;}
.x6b_c00485{left:142.121453pt;}
.x3b_c00485{left:143.256653pt;}
.x64_c00485{left:153.095053pt;}
.x24_c00485{left:154.582253pt;}
.x57_c00485{left:162.159053pt;}
.x1c_c00485{left:163.897053pt;}
.x49_c00485{left:172.745453pt;}
.x3c_c00485{left:174.025853pt;}
.x5d_c00485{left:181.805053pt;}
.x71_c00485{left:192.664253pt;}
.x58_c00485{left:193.583853pt;}
.x12_c00485{left:194.569453pt;}
.x42_c00485{left:202.823853pt;}
.x32_c00485{left:223.165053pt;}
.x43_c00485{left:231.533853pt;}
.x65_c00485{left:232.506253pt;}
.x25_c00485{left:242.780253pt;}
.x3d_c00485{left:251.624253pt;}
.x9_c00485{left:252.869453pt;}
.x50_c00485{left:262.087453pt;}
.x66_c00485{left:270.487053pt;}
.x33_c00485{left:272.247053pt;}
.x6c_c00485{left:273.320653pt;}
.x72_c00485{left:281.416653pt;}
.x1d_c00485{left:282.595853pt;}
.x59_c00485{left:291.259453pt;}
.x13_c00485{left:292.834653pt;}
.x3e_c00485{left:300.723853pt;}
.x44_c00485{left:301.713853pt;}
.x6d_c00485{left:309.457853pt;}
.x5e_c00485{left:311.217853pt;}
.x2c_c00485{left:312.124253pt;}
.xa_c00485{left:322.112253pt;}
.x4a_c00485{left:330.511853pt;}
.x45_c00485{left:331.699853pt;}
.x73_c00485{left:340.002653pt;}
.x26_c00485{left:341.120253pt;}
.x14_c00485{left:342.752653pt;}
.x1e_c00485{left:351.134653pt;}
.x3_c00485{left:356.608253pt;}
.x3f_c00485{left:359.868653pt;}
.x75_c00485{left:364.589853pt;}
.x34_c00485{left:371.062253pt;}
.x51_c00485{left:379.193453pt;}
.x15_c00485{left:381.846653pt;}
.x67_c00485{left:390.070253pt;}
.x35_c00485{left:399.151853pt;}
.x40_c00485{left:400.559853pt;}
.xb_c00485{left:410.530253pt;}
.x4b_c00485{left:418.445853pt;}
.x1f_c00485{left:419.827453pt;}
.x36_c00485{left:429.665853pt;}
.x2d_c00485{left:430.633853pt;}
.x76_c00485{left:436.758653pt;}
.x6e_c00485{left:438.237053pt;}
.x27_c00485{left:439.521853pt;}
.x20_c00485{left:449.606653pt;}
.x2e_c00485{left:459.167853pt;}
.x16_c00485{left:468.504653pt;}
.x46_c00485{left:487.499453pt;}
.x52_c00485{left:488.515853pt;}
.x68_c00485{left:497.579853pt;}
.xc_c00485{left:499.067053pt;}
.x4c_c00485{left:499.995453pt;}
.x5f_c00485{left:506.511853pt;}
.x21_c00485{left:508.285053pt;}
.x53_c00485{left:516.649453pt;}
.x60_c00485{left:518.044253pt;}
.x77_c00485{left:526.430653pt;}
.x2f_c00485{left:527.429453pt;}
.x17_c00485{left:529.163053pt;}
.xd_c00485{left:537.237053pt;}
.x69_c00485{left:545.368253pt;}
.x28_c00485{left:548.087453pt;}
.x6f_c00485{left:554.700653pt;}
.x22_c00485{left:556.253853pt;}
.x54_c00485{left:566.761053pt;}
.x37_c00485{left:567.724653pt;}
.x78_c00485{left:574.557853pt;}
.x41_c00485{left:575.574253pt;}
.x5a_c00485{left:585.883453pt;}
.x30_c00485{left:595.528253pt;}
.x38_c00485{left:596.619453pt;}
.x6a_c00485{left:605.230253pt;}
.x70_c00485{left:612.679453pt;}
.x5b_c00485{left:615.297453pt;}
.xe_c00485{left:616.608653pt;}
.x29_c00485{left:619.297053pt;}
.x1a_c00485{left:622.900653pt;}
.x2a_c00485{left:624.713453pt;}
.x4d_c00485{left:626.011453pt;}
.x4e_c00485{left:630.719453pt;}
.x4_c00485{left:633.275853pt;}
.x23_c00485{left:635.137053pt;}
.x61_c00485{left:636.127053pt;}
.xf_c00485{left:645.705853pt;}
.x6_c00485{left:647.729853pt;}
.x5_c00485{left:653.546653pt;}
.x55_c00485{left:654.928253pt;}
.x62_c00485{left:667.490253pt;}
.x5c_c00485{left:674.574253pt;}
.x56_c00485{left:675.489453pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_78fa633f96dbea8a5aa7cbe0.woff2')format("woff");}.ff1_c00486{font-family:ff1_c00486;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00486;src:url('chunks/assets/font_724197470fb8a7fb172920c1.woff2')format("woff");}.ff2_c00486{font-family:ff2_c00486;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00486;src:url('chunks/assets/font_db977c6c8eb00bba67e24400.woff2')format("woff");}.ff3_c00486{font-family:ff3_c00486;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00486;src:url('chunks/assets/font_d88851ff054b56b999865471.woff2')format("woff");}.ff4_c00486{font-family:ff4_c00486;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m32_c00486{transform:matrix(0.034092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.034092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.034092,0.000000,0.000000,0.250000,0,0);}
.mbb_c00486{transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);}
.ma_c00486{transform:matrix(0.158968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158968,0.000000,0.000000,0.250000,0,0);}
.m50_c00486{transform:matrix(0.172840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172840,0.000000,0.000000,0.250000,0,0);}
.m84_c00486{transform:matrix(0.172981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172981,0.000000,0.000000,0.250000,0,0);}
.m31_c00486{transform:matrix(0.173702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173702,0.000000,0.000000,0.250000,0,0);}
.m86_c00486{transform:matrix(0.176137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176137,0.000000,0.000000,0.250000,0,0);}
.m83_c00486{transform:matrix(0.180871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180871,0.000000,0.000000,0.250000,0,0);}
.ma2_c00486{transform:matrix(0.193609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193609,0.000000,0.000000,0.250000,0,0);}
.m51_c00486{transform:matrix(0.244525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244525,0.000000,0.000000,0.250000,0,0);}
.m30_c00486{transform:matrix(0.246084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246084,0.000000,0.000000,0.250000,0,0);}
.m79_c00486{transform:matrix(0.247919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247919,0.000000,0.000000,0.250000,0,0);}
.m60_c00486{transform:matrix(0.248170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248170,0.000000,0.000000,0.250000,0,0);}
.m7_c00486{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00486{transform:matrix(0.250010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250010,0.000000,0.000000,0.250000,0,0);}
.m93_c00486{transform:matrix(0.251385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251385,0.000000,0.000000,0.250000,0,0);}
.m8_c00486{transform:matrix(0.251864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251864,0.000000,0.000000,0.250000,0,0);}
.m8b_c00486{transform:matrix(0.252762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252762,0.000000,0.000000,0.250000,0,0);}
.m1b_c00486{transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);}
.m0_c00486{transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);}
.m16_c00486{transform:matrix(0.253783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253783,0.000000,0.000000,0.250000,0,0);}
.m1f_c00486{transform:matrix(0.253904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253904,0.000000,0.000000,0.250000,0,0);}
.m47_c00486{transform:matrix(0.254614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254614,0.000000,0.000000,0.250000,0,0);}
.mb7_c00486{transform:matrix(0.255057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255057,0.000000,0.000000,0.250000,0,0);}
.m9_c00486{transform:matrix(0.255279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255279,0.000000,0.000000,0.250000,0,0);}
.m69_c00486{transform:matrix(0.255299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255299,0.000000,0.000000,0.250000,0,0);}
.m40_c00486{transform:matrix(0.255399,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255399,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255399,0.000000,0.000000,0.250000,0,0);}
.m4a_c00486{transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);}
.m74_c00486{transform:matrix(0.256999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256999,0.000000,0.000000,0.250000,0,0);}
.m33_c00486{transform:matrix(0.257103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257103,0.000000,0.000000,0.250000,0,0);}
.m99_c00486{transform:matrix(0.257112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257112,0.000000,0.000000,0.250000,0,0);}
.m73_c00486{transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);}
.m65_c00486{transform:matrix(0.257944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257944,0.000000,0.000000,0.250000,0,0);}
.m15_c00486{transform:matrix(0.258062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258062,0.000000,0.000000,0.250000,0,0);}
.mb8_c00486{transform:matrix(0.258186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258186,0.000000,0.000000,0.250000,0,0);}
.m95_c00486{transform:matrix(0.259501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259501,0.000000,0.000000,0.250000,0,0);}
.m6_c00486{transform:matrix(0.259936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259936,0.000000,0.000000,0.250000,0,0);}
.mb6_c00486{transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);}
.me_c00486{transform:matrix(0.262398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262398,0.000000,0.000000,0.250000,0,0);}
.mb1_c00486{transform:matrix(0.262893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262893,0.000000,0.000000,0.250000,0,0);}
.m97_c00486{transform:matrix(0.263289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263289,0.000000,0.000000,0.250000,0,0);}
.m7d_c00486{transform:matrix(0.264255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264255,0.000000,0.000000,0.250000,0,0);}
.m5_c00486{transform:matrix(0.264852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264852,0.000000,0.000000,0.250000,0,0);}
.m21_c00486{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00486{transform:matrix(0.266025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266025,0.000000,0.000000,0.250000,0,0);}
.m78_c00486{transform:matrix(0.266448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266448,0.000000,0.000000,0.250000,0,0);}
.mb4_c00486{transform:matrix(0.267754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267754,0.000000,0.000000,0.250000,0,0);}
.m90_c00486{transform:matrix(0.267953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267953,0.000000,0.000000,0.250000,0,0);}
.m70_c00486{transform:matrix(0.269293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269293,0.000000,0.000000,0.250000,0,0);}
.m39_c00486{transform:matrix(0.269341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269341,0.000000,0.000000,0.250000,0,0);}
.m48_c00486{transform:matrix(0.270128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270128,0.000000,0.000000,0.250000,0,0);}
.m71_c00486{transform:matrix(0.272535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272535,0.000000,0.000000,0.250000,0,0);}
.m43_c00486{transform:matrix(0.273059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273059,0.000000,0.000000,0.250000,0,0);}
.m18_c00486{transform:matrix(0.273509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273509,0.000000,0.000000,0.250000,0,0);}
.m12_c00486{transform:matrix(0.273527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273527,0.000000,0.000000,0.250000,0,0);}
.mac_c00486{transform:matrix(0.274757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274757,0.000000,0.000000,0.250000,0,0);}
.m44_c00486{transform:matrix(0.274919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274919,0.000000,0.000000,0.250000,0,0);}
.m2d_c00486{transform:matrix(0.275369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275369,0.000000,0.000000,0.250000,0,0);}
.m9f_c00486{transform:matrix(0.276127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276127,0.000000,0.000000,0.250000,0,0);}
.m9a_c00486{transform:matrix(0.276366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276366,0.000000,0.000000,0.250000,0,0);}
.m76_c00486{transform:matrix(0.276421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276421,0.000000,0.000000,0.250000,0,0);}
.m8a_c00486{transform:matrix(0.276584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276584,0.000000,0.000000,0.250000,0,0);}
.m52_c00486{transform:matrix(0.277275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277275,0.000000,0.000000,0.250000,0,0);}
.m35_c00486{transform:matrix(0.277590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277590,0.000000,0.000000,0.250000,0,0);}
.ma1_c00486{transform:matrix(0.277670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277670,0.000000,0.000000,0.250000,0,0);}
.m75_c00486{transform:matrix(0.277785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277785,0.000000,0.000000,0.250000,0,0);}
.m1e_c00486{transform:matrix(0.277826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277826,0.000000,0.000000,0.250000,0,0);}
.m38_c00486{transform:matrix(0.277871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277871,0.000000,0.000000,0.250000,0,0);}
.m56_c00486{transform:matrix(0.278092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278092,0.000000,0.000000,0.250000,0,0);}
.m17_c00486{transform:matrix(0.278227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278227,0.000000,0.000000,0.250000,0,0);}
.m9e_c00486{transform:matrix(0.278714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278714,0.000000,0.000000,0.250000,0,0);}
.m54_c00486{transform:matrix(0.278771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278771,0.000000,0.000000,0.250000,0,0);}
.m5d_c00486{transform:matrix(0.278923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278923,0.000000,0.000000,0.250000,0,0);}
.m4d_c00486{transform:matrix(0.279010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279010,0.000000,0.000000,0.250000,0,0);}
.m6e_c00486{transform:matrix(0.279487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279487,0.000000,0.000000,0.250000,0,0);}
.m4e_c00486{transform:matrix(0.279656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279656,0.000000,0.000000,0.250000,0,0);}
.m6d_c00486{transform:matrix(0.280290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280290,0.000000,0.000000,0.250000,0,0);}
.m13_c00486{transform:matrix(0.280755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280755,0.000000,0.000000,0.250000,0,0);}
.m82_c00486{transform:matrix(0.281008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281008,0.000000,0.000000,0.250000,0,0);}
.m2b_c00486{transform:matrix(0.281247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281247,0.000000,0.000000,0.250000,0,0);}
.m5c_c00486{transform:matrix(0.281466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281466,0.000000,0.000000,0.250000,0,0);}
.m59_c00486{transform:matrix(0.281599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281599,0.000000,0.000000,0.250000,0,0);}
.mb_c00486{transform:matrix(0.282486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282486,0.000000,0.000000,0.250000,0,0);}
.mba_c00486{transform:matrix(0.282553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282553,0.000000,0.000000,0.250000,0,0);}
.m80_c00486{transform:matrix(0.282585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282585,0.000000,0.000000,0.250000,0,0);}
.m58_c00486{transform:matrix(0.282602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282602,0.000000,0.000000,0.250000,0,0);}
.m41_c00486{transform:matrix(0.282616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282616,0.000000,0.000000,0.250000,0,0);}
.mb0_c00486{transform:matrix(0.282701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282701,0.000000,0.000000,0.250000,0,0);}
.m8d_c00486{transform:matrix(0.283464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283464,0.000000,0.000000,0.250000,0,0);}
.ma0_c00486{transform:matrix(0.283467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283467,0.000000,0.000000,0.250000,0,0);}
.m29_c00486{transform:matrix(0.283551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283551,0.000000,0.000000,0.250000,0,0);}
.m7c_c00486{transform:matrix(0.284314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284314,0.000000,0.000000,0.250000,0,0);}
.m36_c00486{transform:matrix(0.284778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284778,0.000000,0.000000,0.250000,0,0);}
.m42_c00486{transform:matrix(0.284801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284801,0.000000,0.000000,0.250000,0,0);}
.m2_c00486{transform:matrix(0.285286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285286,0.000000,0.000000,0.250000,0,0);}
.m25_c00486{transform:matrix(0.285415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285415,0.000000,0.000000,0.250000,0,0);}
.m4b_c00486{transform:matrix(0.285567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285567,0.000000,0.000000,0.250000,0,0);}
.md_c00486{transform:matrix(0.285592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285592,0.000000,0.000000,0.250000,0,0);}
.m45_c00486{transform:matrix(0.285920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285920,0.000000,0.000000,0.250000,0,0);}
.m4f_c00486{transform:matrix(0.286268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286268,0.000000,0.000000,0.250000,0,0);}
.m2f_c00486{transform:matrix(0.287008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287008,0.000000,0.000000,0.250000,0,0);}
.mb3_c00486{transform:matrix(0.287200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287200,0.000000,0.000000,0.250000,0,0);}
.m1a_c00486{transform:matrix(0.288121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288121,0.000000,0.000000,0.250000,0,0);}
.m10_c00486{transform:matrix(0.288561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288561,0.000000,0.000000,0.250000,0,0);}
.m4c_c00486{transform:matrix(0.288632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288632,0.000000,0.000000,0.250000,0,0);}
.m53_c00486{transform:matrix(0.288994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288994,0.000000,0.000000,0.250000,0,0);}
.m5a_c00486{transform:matrix(0.289516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289516,0.000000,0.000000,0.250000,0,0);}
.m3b_c00486{transform:matrix(0.289971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289971,0.000000,0.000000,0.250000,0,0);}
.m5e_c00486{transform:matrix(0.290360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290360,0.000000,0.000000,0.250000,0,0);}
.maf_c00486{transform:matrix(0.290406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290406,0.000000,0.000000,0.250000,0,0);}
.m2a_c00486{transform:matrix(0.291422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291422,0.000000,0.000000,0.250000,0,0);}
.m3e_c00486{transform:matrix(0.291752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291752,0.000000,0.000000,0.250000,0,0);}
.m14_c00486{transform:matrix(0.291858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291858,0.000000,0.000000,0.250000,0,0);}
.m88_c00486{transform:matrix(0.292259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292259,0.000000,0.000000,0.250000,0,0);}
.m98_c00486{transform:matrix(0.292619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292619,0.000000,0.000000,0.250000,0,0);}
.m27_c00486{transform:matrix(0.292689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292689,0.000000,0.000000,0.250000,0,0);}
.m28_c00486{transform:matrix(0.292935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292935,0.000000,0.000000,0.250000,0,0);}
.ma5_c00486{transform:matrix(0.293053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293053,0.000000,0.000000,0.250000,0,0);}
.m63_c00486{transform:matrix(0.293261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293261,0.000000,0.000000,0.250000,0,0);}
.m4_c00486{transform:matrix(0.293323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293323,0.000000,0.000000,0.250000,0,0);}
.m55_c00486{transform:matrix(0.293512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293512,0.000000,0.000000,0.250000,0,0);}
.m34_c00486{transform:matrix(0.293880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293880,0.000000,0.000000,0.250000,0,0);}
.m7b_c00486{transform:matrix(0.294220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294220,0.000000,0.000000,0.250000,0,0);}
.m6c_c00486{transform:matrix(0.294497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294497,0.000000,0.000000,0.250000,0,0);}
.m20_c00486{transform:matrix(0.295450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295450,0.000000,0.000000,0.250000,0,0);}
.m57_c00486{transform:matrix(0.296594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296594,0.000000,0.000000,0.250000,0,0);}
.m24_c00486{transform:matrix(0.296869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296869,0.000000,0.000000,0.250000,0,0);}
.mab_c00486{transform:matrix(0.297418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297418,0.000000,0.000000,0.250000,0,0);}
.m72_c00486{transform:matrix(0.298149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298149,0.000000,0.000000,0.250000,0,0);}
.m91_c00486{transform:matrix(0.298640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298640,0.000000,0.000000,0.250000,0,0);}
.m92_c00486{transform:matrix(0.300598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300598,0.000000,0.000000,0.250000,0,0);}
.ma3_c00486{transform:matrix(0.301405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301405,0.000000,0.000000,0.250000,0,0);}
.m62_c00486{transform:matrix(0.303691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303691,0.000000,0.000000,0.250000,0,0);}
.m87_c00486{transform:matrix(0.304760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304760,0.000000,0.000000,0.250000,0,0);}
.m7a_c00486{transform:matrix(0.305141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305141,0.000000,0.000000,0.250000,0,0);}
.m67_c00486{transform:matrix(0.307011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307011,0.000000,0.000000,0.250000,0,0);}
.m26_c00486{transform:matrix(0.307388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307388,0.000000,0.000000,0.250000,0,0);}
.mb9_c00486{transform:matrix(0.307505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307505,0.000000,0.000000,0.250000,0,0);}
.mb5_c00486{transform:matrix(0.308287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308287,0.000000,0.000000,0.250000,0,0);}
.ma9_c00486{transform:matrix(0.308613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308613,0.000000,0.000000,0.250000,0,0);}
.m23_c00486{transform:matrix(0.309318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309318,0.000000,0.000000,0.250000,0,0);}
.m5f_c00486{transform:matrix(0.309340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309340,0.000000,0.000000,0.250000,0,0);}
.m8f_c00486{transform:matrix(0.309703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309703,0.000000,0.000000,0.250000,0,0);}
.m11_c00486{transform:matrix(0.310696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310696,0.000000,0.000000,0.250000,0,0);}
.m1c_c00486{transform:matrix(0.310971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310971,0.000000,0.000000,0.250000,0,0);}
.m6a_c00486{transform:matrix(0.313644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313644,0.000000,0.000000,0.250000,0,0);}
.m94_c00486{transform:matrix(0.314459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314459,0.000000,0.000000,0.250000,0,0);}
.m89_c00486{transform:matrix(0.314468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314468,0.000000,0.000000,0.250000,0,0);}
.mad_c00486{transform:matrix(0.314534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314534,0.000000,0.000000,0.250000,0,0);}
.m61_c00486{transform:matrix(0.314570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314570,0.000000,0.000000,0.250000,0,0);}
.ma8_c00486{transform:matrix(0.315196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315196,0.000000,0.000000,0.250000,0,0);}
.m9c_c00486{transform:matrix(0.315681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315681,0.000000,0.000000,0.250000,0,0);}
.m22_c00486{transform:matrix(0.316900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316900,0.000000,0.000000,0.250000,0,0);}
.mf_c00486{transform:matrix(0.316928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316928,0.000000,0.000000,0.250000,0,0);}
.m3c_c00486{transform:matrix(0.317874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317874,0.000000,0.000000,0.250000,0,0);}
.m49_c00486{transform:matrix(0.317951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317951,0.000000,0.000000,0.250000,0,0);}
.m81_c00486{transform:matrix(0.318010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318010,0.000000,0.000000,0.250000,0,0);}
.m3_c00486{transform:matrix(0.319440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319440,0.000000,0.000000,0.250000,0,0);}
.m66_c00486{transform:matrix(0.320282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320282,0.000000,0.000000,0.250000,0,0);}
.m3d_c00486{transform:matrix(0.321172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321172,0.000000,0.000000,0.250000,0,0);}
.m64_c00486{transform:matrix(0.321939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321939,0.000000,0.000000,0.250000,0,0);}
.m77_c00486{transform:matrix(0.322824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322824,0.000000,0.000000,0.250000,0,0);}
.mae_c00486{transform:matrix(0.323709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323709,0.000000,0.000000,0.250000,0,0);}
.m1d_c00486{transform:matrix(0.323922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323922,0.000000,0.000000,0.250000,0,0);}
.m6f_c00486{transform:matrix(0.324045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324045,0.000000,0.000000,0.250000,0,0);}
.m37_c00486{transform:matrix(0.325072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325072,0.000000,0.000000,0.250000,0,0);}
.m7f_c00486{transform:matrix(0.326105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326105,0.000000,0.000000,0.250000,0,0);}
.mc_c00486{transform:matrix(0.329948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329948,0.000000,0.000000,0.250000,0,0);}
.mb2_c00486{transform:matrix(0.330332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330332,0.000000,0.000000,0.250000,0,0);}
.m7e_c00486{transform:matrix(0.330417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330417,0.000000,0.000000,0.250000,0,0);}
.maa_c00486{transform:matrix(0.331929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331929,0.000000,0.000000,0.250000,0,0);}
.m5b_c00486{transform:matrix(0.333044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333044,0.000000,0.000000,0.250000,0,0);}
.m8c_c00486{transform:matrix(0.335786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335786,0.000000,0.000000,0.250000,0,0);}
.m85_c00486{transform:matrix(0.342858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342858,0.000000,0.000000,0.250000,0,0);}
.m68_c00486{transform:matrix(0.343384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343384,0.000000,0.000000,0.250000,0,0);}
.m19_c00486{transform:matrix(0.345536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345536,0.000000,0.000000,0.250000,0,0);}
.m9b_c00486{transform:matrix(0.348068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348068,0.000000,0.000000,0.250000,0,0);}
.m9d_c00486{transform:matrix(0.349789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349789,0.000000,0.000000,0.250000,0,0);}
.ma4_c00486{transform:matrix(0.349926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349926,0.000000,0.000000,0.250000,0,0);}
.m2e_c00486{transform:matrix(0.350285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350285,0.000000,0.000000,0.250000,0,0);}
.m46_c00486{transform:matrix(0.353240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353240,0.000000,0.000000,0.250000,0,0);}
.ma7_c00486{transform:matrix(0.358951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358951,0.000000,0.000000,0.250000,0,0);}
.ma6_c00486{transform:matrix(0.362885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362885,0.000000,0.000000,0.250000,0,0);}
.m96_c00486{transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);}
.m1_c00486{transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);}
.m6b_c00486{transform:matrix(0.376256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376256,0.000000,0.000000,0.250000,0,0);}
.m8e_c00486{transform:matrix(0.377945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377945,0.000000,0.000000,0.250000,0,0);}
.m3f_c00486{transform:matrix(0.390716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390716,0.000000,0.000000,0.250000,0,0);}
.v0_c00486{vertical-align:0.000000px;}
.lsb_c00486{letter-spacing:-2.855167px;}
.ls10_c00486{letter-spacing:-2.798064px;}
.ls11_c00486{letter-spacing:-1.386000px;}
.ls7_c00486{letter-spacing:-0.595506px;}
.ls8_c00486{letter-spacing:-0.065261px;}
.ls16_c00486{letter-spacing:-0.032630px;}
.ls5_c00486{letter-spacing:0.000000px;}
.ls15_c00486{letter-spacing:0.358974px;}
.lsa_c00486{letter-spacing:0.840235px;}
.ls18_c00486{letter-spacing:1.566263px;}
.ls1_c00486{letter-spacing:2.218873px;}
.ls13_c00486{letter-spacing:2.765433px;}
.ls9_c00486{letter-spacing:2.806221px;}
.lsf_c00486{letter-spacing:3.316500px;}
.ls12_c00486{letter-spacing:3.336466px;}
.lsd_c00486{letter-spacing:3.425400px;}
.ls19_c00486{letter-spacing:3.623400px;}
.lse_c00486{letter-spacing:3.638298px;}
.ls4_c00486{letter-spacing:3.801610px;}
.ls1a_c00486{letter-spacing:3.817766px;}
.ls6_c00486{letter-spacing:3.920400px;}
.ls14_c00486{letter-spacing:3.923815px;}
.ls0_c00486{letter-spacing:4.078810px;}
.ls2_c00486{letter-spacing:4.593610px;}
.ls1b_c00486{letter-spacing:29.937798px;}
.ls17_c00486{letter-spacing:54.172998px;}
.lsc_c00486{letter-spacing:62.726400px;}
.ls3_c00486{letter-spacing:65.577798px;}
.sc__c00486{text-shadow:none;}
.sc0_c00486{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00486{-webkit-text-stroke:0px transparent;}
.sc0_c00486{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00486{word-spacing:0.000000px;}
._0_c00486{margin-left:-2.932732px;}
._3_c00486{width:22.515037px;}
._1_c00486{width:30.427909px;}
._2_c00486{width:34.333101px;}
.fc0_c00486{color:transparent;}
.fs10_c00486{font-size:22.176000px;}
.fs14_c00486{font-size:22.374000px;}
.fs12_c00486{font-size:25.146000px;}
.fs13_c00486{font-size:29.937798px;}
.fsb_c00486{font-size:34.848000px;}
.fs9_c00486{font-size:39.600000px;}
.fse_c00486{font-size:54.172998px;}
.fs5_c00486{font-size:62.726400px;}
.fs8_c00486{font-size:63.756198px;}
.fs2_c00486{font-size:65.577798px;}
.fsa_c00486{font-size:66.330000px;}
.fs11_c00486{font-size:68.112198px;}
.fs6_c00486{font-size:68.508000px;}
.fsf_c00486{font-size:72.468000px;}
.fsd_c00486{font-size:73.260000px;}
.fsc_c00486{font-size:74.844000px;}
.fs3_c00486{font-size:76.032198px;}
.fs4_c00486{font-size:78.408000px;}
.fs7_c00486{font-size:78.804000px;}
.fs0_c00486{font-size:81.576198px;}
.fs1_c00486{font-size:91.872198px;}
.y0_c00486{bottom:0.000000px;}
.y20_c00486{bottom:1.694183px;}
.y1f_c00486{bottom:31.982985px;}
.y1e_c00486{bottom:47.664585px;}
.y1d_c00486{bottom:58.000185px;}
.y1_c00486{bottom:76.500000px;}
.y1c_c00486{bottom:76.537935px;}
.y1b_c00486{bottom:125.008335px;}
.y1a_c00486{bottom:156.722985px;}
.y19_c00486{bottom:180.250335px;}
.y18_c00486{bottom:189.516735px;}
.y17_c00486{bottom:221.949135px;}
.y16_c00486{bottom:253.663785px;}
.y15_c00486{bottom:285.388335px;}
.y14_c00486{bottom:317.107935px;}
.y13_c00486{bottom:348.471135px;}
.y12_c00486{bottom:348.477026px;}
.y11_c00486{bottom:380.903535px;}
.y10_c00486{bottom:443.629935px;}
.yf_c00486{bottom:474.636735px;}
.ye_c00486{bottom:506.356335px;}
.yd_c00486{bottom:538.432335px;}
.yc_c00486{bottom:570.503385px;}
.yb_c00486{bottom:602.579385px;}
.ya_c00486{bottom:634.660335px;}
.y9_c00486{bottom:665.667135px;}
.y8_c00486{bottom:697.030335px;}
.y7_c00486{bottom:729.819135px;}
.y6_c00486{bottom:792.189135px;}
.y5_c00486{bottom:824.977935px;}
.y4_c00486{bottom:856.692585px;}
.y3_c00486{bottom:888.055785px;}
.y2_c00486{bottom:919.780335px;}
.h15_c00486{height:19.938573px;}
.h16_c00486{height:21.958857px;}
.h12_c00486{height:23.128875px;}
.h14_c00486{height:26.226492px;}
.hd_c00486{height:34.201406px;}
.h10_c00486{height:36.079217px;}
.hc_c00486{height:41.301563px;}
.h7_c00486{height:41.775782px;}
.h4_c00486{height:43.674813px;}
.ha_c00486{height:62.573222px;}
.h8_c00486{height:67.236855px;}
.hb_c00486{height:69.180117px;}
.h13_c00486{height:71.038894px;}
.h11_c00486{height:71.123379px;}
.he_c00486{height:73.455293px;}
.h5_c00486{height:74.621444px;}
.hf_c00486{height:76.407891px;}
.h6_c00486{height:76.914879px;}
.h9_c00486{height:77.341816px;}
.h2_c00486{height:80.062577px;}
.h3_c00486{height:90.167538px;}
.h1_c00486{height:1110.000000px;}
.h0_c00486{height:1263.000000px;}
.w1_c00486{width:760.500000px;}
.w0_c00486{width:892.500000px;}
.x0_c00486{left:0.000000px;}
.x1_c00486{left:66.000000px;}
.x2_c00486{left:93.323235px;}
.x51_c00486{left:94.630035px;}
.x63_c00486{left:95.877435px;}
.x11_c00486{left:114.365685px;}
.x5b_c00486{left:116.726835px;}
.x52_c00486{left:126.423885px;}
.x23_c00486{left:128.057385px;}
.x3_c00486{left:137.452485px;}
.x68_c00486{left:138.828585px;}
.x26_c00486{left:147.481185px;}
.x19_c00486{left:148.921635px;}
.x4b_c00486{left:151.649085px;}
.x12_c00486{left:160.667985px;}
.x24_c00486{left:161.915385px;}
.x4_c00486{left:170.112585px;}
.x69_c00486{left:171.241185px;}
.x1a_c00486{left:182.344035px;}
.x25_c00486{left:183.769635px;}
.x27_c00486{left:192.739035px;}
.x4c_c00486{left:193.758735px;}
.x67_c00486{left:204.099285px;}
.x2f_c00486{left:205.109085px;}
.x57_c00486{left:206.410935px;}
.xd_c00486{left:215.177385px;}
.x3c_c00486{left:216.899985px;}
.x13_c00486{left:226.399035px;}
.x5f_c00486{left:227.572185px;}
.x4d_c00486{left:236.883135px;}
.x1b_c00486{left:237.887985px;}
.x6b_c00486{left:245.976285px;}
.x3d_c00486{left:247.748385px;}
.x5_c00486{left:249.342285px;}
.x4e_c00486{left:269.904585px;}
.x64_c00486{left:271.448985px;}
.x1c_c00486{left:280.631235px;}
.x6a_c00486{left:282.898335px;}
.x49_c00486{left:292.367685px;}
.x6_c00486{left:303.406185px;}
.x58_c00486{left:304.668435px;}
.xe_c00486{left:316.320735px;}
.x14_c00486{left:325.641585px;}
.x3e_c00486{left:326.987985px;}
.x1d_c00486{left:336.185085px;}
.x28_c00486{left:337.239435px;}
.x53_c00486{left:338.511585px;}
.x54_c00486{left:358.989735px;}
.x3f_c00486{left:360.588585px;}
.x60_c00486{left:371.617185px;}
.x45_c00486{left:381.715185px;}
.x7_c00486{left:393.377385px;}
.x34_c00486{left:404.777235px;}
.x4f_c00486{left:415.597935px;}
.x8_c00486{left:426.517635px;}
.x65_c00486{left:427.542285px;}
.x35_c00486{left:436.739385px;}
.x1e_c00486{left:437.962035px;}
.x29_c00486{left:439.674735px;}
.xf_c00486{left:447.743235px;}
.x1f_c00486{left:460.360785px;}
.x2a_c00486{left:469.849935px;}
.x62_c00486{left:471.696285px;}
.x15_c00486{left:481.437885px;}
.x47_c00486{left:483.096135px;}
.x9_c00486{left:492.847635px;}
.x5c_c00486{left:493.901985px;}
.x40_c00486{left:495.540435px;}
.x2b_c00486{left:503.509935px;}
.x36_c00486{left:514.716735px;}
.xa_c00486{left:524.364285px;}
.x10_c00486{left:525.948285px;}
.x37_c00486{left:536.655135px;}
.x61_c00486{left:538.085685px;}
.x2c_c00486{left:557.519385px;}
.x16_c00486{left:559.098435px;}
.x4a_c00486{left:560.459685px;}
.x46_c00486{left:568.958835px;}
.x5d_c00486{left:570.186435px;}
.x30_c00486{left:577.165935px;}
.x31_c00486{left:580.724985px;}
.x55_c00486{left:591.055635px;}
.x38_c00486{left:592.253535px;}
.x5e_c00486{left:601.703085px;}
.x3a_c00486{left:603.296985px;}
.x48_c00486{left:604.351335px;}
.x20_c00486{left:613.657335px;}
.x56_c00486{left:624.156285px;}
.xb_c00486{left:626.413485px;}
.x3b_c00486{left:634.536435px;}
.x41_c00486{left:636.778785px;}
.x59_c00486{left:647.396535px;}
.x32_c00486{left:658.157835px;}
.x17_c00486{left:659.781435px;}
.x2d_c00486{left:669.240885px;}
.x21_c00486{left:679.536885px;}
.x50_c00486{left:680.655585px;}
.x33_c00486{left:690.134835px;}
.xc_c00486{left:691.921785px;}
.x42_c00486{left:693.837435px;}
.x18_c00486{left:701.935635px;}
.x39_c00486{left:703.044435px;}
.x43_c00486{left:704.668035px;}
.x2e_c00486{left:712.543485px;}
.x22_c00486{left:713.756235px;}
.x66_c00486{left:721.775235px;}
.x44_c00486{left:724.591785px;}
.x5a_c00486{left:737.318235px;}
@media print{
.v0_c00486{vertical-align:0.000000pt;}
.lsb_c00486{letter-spacing:-2.537926pt;}
.ls10_c00486{letter-spacing:-2.487168pt;}
.ls11_c00486{letter-spacing:-1.232000pt;}
.ls7_c00486{letter-spacing:-0.529339pt;}
.ls8_c00486{letter-spacing:-0.058010pt;}
.ls16_c00486{letter-spacing:-0.029005pt;}
.ls5_c00486{letter-spacing:0.000000pt;}
.ls15_c00486{letter-spacing:0.319088pt;}
.lsa_c00486{letter-spacing:0.746875pt;}
.ls18_c00486{letter-spacing:1.392234pt;}
.ls1_c00486{letter-spacing:1.972331pt;}
.ls13_c00486{letter-spacing:2.458163pt;}
.ls9_c00486{letter-spacing:2.494419pt;}
.lsf_c00486{letter-spacing:2.948000pt;}
.ls12_c00486{letter-spacing:2.965748pt;}
.lsd_c00486{letter-spacing:3.044800pt;}
.ls19_c00486{letter-spacing:3.220800pt;}
.lse_c00486{letter-spacing:3.234043pt;}
.ls4_c00486{letter-spacing:3.379209pt;}
.ls1a_c00486{letter-spacing:3.393570pt;}
.ls6_c00486{letter-spacing:3.484800pt;}
.ls14_c00486{letter-spacing:3.487836pt;}
.ls0_c00486{letter-spacing:3.625609pt;}
.ls2_c00486{letter-spacing:4.083209pt;}
.ls1b_c00486{letter-spacing:26.611376pt;}
.ls17_c00486{letter-spacing:48.153776pt;}
.lsc_c00486{letter-spacing:55.756800pt;}
.ls3_c00486{letter-spacing:58.291376pt;}
.ws0_c00486{word-spacing:0.000000pt;}
._0_c00486{margin-left:-2.606873pt;}
._3_c00486{width:20.013366pt;}
._1_c00486{width:27.047030pt;}
._2_c00486{width:30.518312pt;}
.fs10_c00486{font-size:19.712000pt;}
.fs14_c00486{font-size:19.888000pt;}
.fs12_c00486{font-size:22.352000pt;}
.fs13_c00486{font-size:26.611376pt;}
.fsb_c00486{font-size:30.976000pt;}
.fs9_c00486{font-size:35.200000pt;}
.fse_c00486{font-size:48.153776pt;}
.fs5_c00486{font-size:55.756800pt;}
.fs8_c00486{font-size:56.672176pt;}
.fs2_c00486{font-size:58.291376pt;}
.fsa_c00486{font-size:58.960000pt;}
.fs11_c00486{font-size:60.544176pt;}
.fs6_c00486{font-size:60.896000pt;}
.fsf_c00486{font-size:64.416000pt;}
.fsd_c00486{font-size:65.120000pt;}
.fsc_c00486{font-size:66.528000pt;}
.fs3_c00486{font-size:67.584176pt;}
.fs4_c00486{font-size:69.696000pt;}
.fs7_c00486{font-size:70.048000pt;}
.fs0_c00486{font-size:72.512176pt;}
.fs1_c00486{font-size:81.664176pt;}
.y0_c00486{bottom:0.000000pt;}
.y20_c00486{bottom:1.505940pt;}
.y1f_c00486{bottom:28.429320pt;}
.y1e_c00486{bottom:42.368520pt;}
.y1d_c00486{bottom:51.555720pt;}
.y1_c00486{bottom:68.000000pt;}
.y1c_c00486{bottom:68.033720pt;}
.y1b_c00486{bottom:111.118520pt;}
.y1a_c00486{bottom:139.309320pt;}
.y19_c00486{bottom:160.222520pt;}
.y18_c00486{bottom:168.459320pt;}
.y17_c00486{bottom:197.288120pt;}
.y16_c00486{bottom:225.478920pt;}
.y15_c00486{bottom:253.678520pt;}
.y14_c00486{bottom:281.873720pt;}
.y13_c00486{bottom:309.752120pt;}
.y12_c00486{bottom:309.757356pt;}
.y11_c00486{bottom:338.580920pt;}
.y10_c00486{bottom:394.337720pt;}
.yf_c00486{bottom:421.899320pt;}
.ye_c00486{bottom:450.094520pt;}
.yd_c00486{bottom:478.606520pt;}
.yc_c00486{bottom:507.114120pt;}
.yb_c00486{bottom:535.626120pt;}
.ya_c00486{bottom:564.142520pt;}
.y9_c00486{bottom:591.704120pt;}
.y8_c00486{bottom:619.582520pt;}
.y7_c00486{bottom:648.728120pt;}
.y6_c00486{bottom:704.168120pt;}
.y5_c00486{bottom:733.313720pt;}
.y4_c00486{bottom:761.504520pt;}
.y3_c00486{bottom:789.382920pt;}
.y2_c00486{bottom:817.582520pt;}
.h15_c00486{height:17.723176pt;}
.h16_c00486{height:19.518984pt;}
.h12_c00486{height:20.559000pt;}
.h14_c00486{height:23.312438pt;}
.hd_c00486{height:30.401250pt;}
.h10_c00486{height:32.070415pt;}
.hc_c00486{height:36.712500pt;}
.h7_c00486{height:37.134029pt;}
.h4_c00486{height:38.822056pt;}
.ha_c00486{height:55.620641pt;}
.h8_c00486{height:59.766094pt;}
.hb_c00486{height:61.493438pt;}
.h13_c00486{height:63.145684pt;}
.h11_c00486{height:63.220781pt;}
.he_c00486{height:65.293594pt;}
.h5_c00486{height:66.330173pt;}
.hf_c00486{height:67.918125pt;}
.h6_c00486{height:68.368781pt;}
.h9_c00486{height:68.748281pt;}
.h2_c00486{height:71.166735pt;}
.h3_c00486{height:80.148923pt;}
.h1_c00486{height:986.666667pt;}
.h0_c00486{height:1122.666667pt;}
.w1_c00486{width:676.000000pt;}
.w0_c00486{width:793.333333pt;}
.x0_c00486{left:0.000000pt;}
.x1_c00486{left:58.666667pt;}
.x2_c00486{left:82.953987pt;}
.x51_c00486{left:84.115587pt;}
.x63_c00486{left:85.224387pt;}
.x11_c00486{left:101.658387pt;}
.x5b_c00486{left:103.757187pt;}
.x52_c00486{left:112.376787pt;}
.x23_c00486{left:113.828787pt;}
.x3_c00486{left:122.179987pt;}
.x68_c00486{left:123.403187pt;}
.x26_c00486{left:131.094387pt;}
.x19_c00486{left:132.374787pt;}
.x4b_c00486{left:134.799187pt;}
.x12_c00486{left:142.815987pt;}
.x24_c00486{left:143.924787pt;}
.x4_c00486{left:151.211187pt;}
.x69_c00486{left:152.214387pt;}
.x1a_c00486{left:162.083587pt;}
.x25_c00486{left:163.350787pt;}
.x27_c00486{left:171.323587pt;}
.x4c_c00486{left:172.229987pt;}
.x67_c00486{left:181.421587pt;}
.x2f_c00486{left:182.319187pt;}
.x57_c00486{left:183.476387pt;}
.xd_c00486{left:191.268787pt;}
.x3c_c00486{left:192.799987pt;}
.x13_c00486{left:201.243587pt;}
.x5f_c00486{left:202.286387pt;}
.x4d_c00486{left:210.562787pt;}
.x1b_c00486{left:211.455987pt;}
.x6b_c00486{left:218.645587pt;}
.x3d_c00486{left:220.220787pt;}
.x5_c00486{left:221.637587pt;}
.x4e_c00486{left:239.915187pt;}
.x64_c00486{left:241.287987pt;}
.x1c_c00486{left:249.449987pt;}
.x6a_c00486{left:251.465187pt;}
.x49_c00486{left:259.882387pt;}
.x6_c00486{left:269.694387pt;}
.x58_c00486{left:270.816387pt;}
.xe_c00486{left:281.173987pt;}
.x14_c00486{left:289.459187pt;}
.x3e_c00486{left:290.655987pt;}
.x1d_c00486{left:298.831187pt;}
.x28_c00486{left:299.768387pt;}
.x53_c00486{left:300.899187pt;}
.x54_c00486{left:319.101987pt;}
.x3f_c00486{left:320.523187pt;}
.x60_c00486{left:330.326387pt;}
.x45_c00486{left:339.302387pt;}
.x7_c00486{left:349.668787pt;}
.x34_c00486{left:359.801987pt;}
.x4f_c00486{left:369.420387pt;}
.x8_c00486{left:379.126787pt;}
.x65_c00486{left:380.037587pt;}
.x35_c00486{left:388.212787pt;}
.x1e_c00486{left:389.299587pt;}
.x29_c00486{left:390.821987pt;}
.xf_c00486{left:397.993987pt;}
.x1f_c00486{left:409.209587pt;}
.x2a_c00486{left:417.644387pt;}
.x62_c00486{left:419.285587pt;}
.x15_c00486{left:427.944787pt;}
.x47_c00486{left:429.418787pt;}
.x9_c00486{left:438.086787pt;}
.x5c_c00486{left:439.023987pt;}
.x40_c00486{left:440.480387pt;}
.x2b_c00486{left:447.564387pt;}
.x36_c00486{left:457.525987pt;}
.xa_c00486{left:466.101587pt;}
.x10_c00486{left:467.509587pt;}
.x37_c00486{left:477.026787pt;}
.x61_c00486{left:478.298387pt;}
.x2c_c00486{left:495.572787pt;}
.x16_c00486{left:496.976387pt;}
.x4a_c00486{left:498.186387pt;}
.x46_c00486{left:505.741187pt;}
.x5d_c00486{left:506.832387pt;}
.x30_c00486{left:513.036387pt;}
.x31_c00486{left:516.199987pt;}
.x55_c00486{left:525.382787pt;}
.x38_c00486{left:526.447587pt;}
.x5e_c00486{left:534.847187pt;}
.x3a_c00486{left:536.263987pt;}
.x48_c00486{left:537.201187pt;}
.x20_c00486{left:545.473187pt;}
.x56_c00486{left:554.805587pt;}
.xb_c00486{left:556.811987pt;}
.x3b_c00486{left:564.032387pt;}
.x41_c00486{left:566.025587pt;}
.x59_c00486{left:575.463587pt;}
.x32_c00486{left:585.029187pt;}
.x17_c00486{left:586.472387pt;}
.x2d_c00486{left:594.880787pt;}
.x21_c00486{left:604.032787pt;}
.x50_c00486{left:605.027187pt;}
.x33_c00486{left:613.453187pt;}
.xc_c00486{left:615.041587pt;}
.x42_c00486{left:616.744387pt;}
.x18_c00486{left:623.942787pt;}
.x39_c00486{left:624.928387pt;}
.x43_c00486{left:626.371587pt;}
.x2e_c00486{left:633.371987pt;}
.x22_c00486{left:634.449987pt;}
.x66_c00486{left:641.577987pt;}
.x44_c00486{left:644.081587pt;}
.x5a_c00486{left:655.393987pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_251365acc40153a9dfee4585.woff2')format("woff");}.ff1_c00487{font-family:ff1_c00487;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00487;src:url('chunks/assets/font_5acdb16dc22c19112b7219ed.woff2')format("woff");}.ff2_c00487{font-family:ff2_c00487;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00487;src:url('chunks/assets/font_0cd7e6506ace9bbe54db7dbe.woff2')format("woff");}.ff3_c00487{font-family:ff3_c00487;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m7d_c00487{transform:matrix(0.131250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131250,0.000000,0.000000,0.250000,0,0);}
.m32_c00487{transform:matrix(0.138151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138151,0.000000,0.000000,0.250000,0,0);}
.m7b_c00487{transform:matrix(0.150036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150036,0.000000,0.000000,0.250000,0,0);}
.m4a_c00487{transform:matrix(0.166406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166406,0.000000,0.000000,0.250000,0,0);}
.m79_c00487{transform:matrix(0.170031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170031,0.000000,0.000000,0.250000,0,0);}
.ma0_c00487{transform:matrix(0.180095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180095,0.000000,0.000000,0.250000,0,0);}
.m7c_c00487{transform:matrix(0.189522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189522,0.000000,0.000000,0.250000,0,0);}
.m46_c00487{transform:matrix(0.226887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226887,0.000000,0.000000,0.250000,0,0);}
.m26_c00487{transform:matrix(0.228137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228137,0.000000,0.000000,0.250000,0,0);}
.m1d_c00487{transform:matrix(0.231939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231939,0.000000,0.000000,0.250000,0,0);}
.m24_c00487{transform:matrix(0.235801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235801,0.000000,0.000000,0.250000,0,0);}
.m7a_c00487{transform:matrix(0.240158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240158,0.000000,0.000000,0.250000,0,0);}
.m78_c00487{transform:matrix(0.247039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247039,0.000000,0.000000,0.250000,0,0);}
.m0_c00487{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m6_c00487{transform:matrix(0.254090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254090,0.000000,0.000000,0.250000,0,0);}
.m2_c00487{transform:matrix(0.255459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255459,0.000000,0.000000,0.250000,0,0);}
.m25_c00487{transform:matrix(0.256318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256318,0.000000,0.000000,0.250000,0,0);}
.m20_c00487{transform:matrix(0.257310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257310,0.000000,0.000000,0.250000,0,0);}
.m21_c00487{transform:matrix(0.257330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257330,0.000000,0.000000,0.250000,0,0);}
.m4c_c00487{transform:matrix(0.257706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257706,0.000000,0.000000,0.250000,0,0);}
.m64_c00487{transform:matrix(0.258282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258282,0.000000,0.000000,0.250000,0,0);}
.m19_c00487{transform:matrix(0.260021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260021,0.000000,0.000000,0.250000,0,0);}
.m8a_c00487{transform:matrix(0.260635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260635,0.000000,0.000000,0.250000,0,0);}
.m10_c00487{transform:matrix(0.262014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262014,0.000000,0.000000,0.250000,0,0);}
.m69_c00487{transform:matrix(0.262322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262322,0.000000,0.000000,0.250000,0,0);}
.m9_c00487{transform:matrix(0.263357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263357,0.000000,0.000000,0.250000,0,0);}
.m49_c00487{transform:matrix(0.263564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263564,0.000000,0.000000,0.250000,0,0);}
.m13_c00487{transform:matrix(0.263731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263731,0.000000,0.000000,0.250000,0,0);}
.m14_c00487{transform:matrix(0.264092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264092,0.000000,0.000000,0.250000,0,0);}
.m58_c00487{transform:matrix(0.264583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264583,0.000000,0.000000,0.250000,0,0);}
.m51_c00487{transform:matrix(0.265344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265344,0.000000,0.000000,0.250000,0,0);}
.m12_c00487{transform:matrix(0.265888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265888,0.000000,0.000000,0.250000,0,0);}
.m2f_c00487{transform:matrix(0.265892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265892,0.000000,0.000000,0.250000,0,0);}
.m8c_c00487{transform:matrix(0.266604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266604,0.000000,0.000000,0.250000,0,0);}
.m4d_c00487{transform:matrix(0.267506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267506,0.000000,0.000000,0.250000,0,0);}
.m1_c00487{transform:matrix(0.268447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268447,0.000000,0.000000,0.250000,0,0);}
.m1c_c00487{transform:matrix(0.269305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269305,0.000000,0.000000,0.250000,0,0);}
.m67_c00487{transform:matrix(0.269933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269933,0.000000,0.000000,0.250000,0,0);}
.m34_c00487{transform:matrix(0.269958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269958,0.000000,0.000000,0.250000,0,0);}
.m44_c00487{transform:matrix(0.270187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270187,0.000000,0.000000,0.250000,0,0);}
.m54_c00487{transform:matrix(0.271731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271731,0.000000,0.000000,0.250000,0,0);}
.m3c_c00487{transform:matrix(0.272118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272118,0.000000,0.000000,0.250000,0,0);}
.m3a_c00487{transform:matrix(0.272930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272930,0.000000,0.000000,0.250000,0,0);}
.me_c00487{transform:matrix(0.273041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273041,0.000000,0.000000,0.250000,0,0);}
.m3_c00487{transform:matrix(0.273758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273758,0.000000,0.000000,0.250000,0,0);}
.m2c_c00487{transform:matrix(0.274088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274088,0.000000,0.000000,0.250000,0,0);}
.m15_c00487{transform:matrix(0.274562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274562,0.000000,0.000000,0.250000,0,0);}
.m2b_c00487{transform:matrix(0.275456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275456,0.000000,0.000000,0.250000,0,0);}
.m89_c00487{transform:matrix(0.276661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276661,0.000000,0.000000,0.250000,0,0);}
.m6a_c00487{transform:matrix(0.276752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276752,0.000000,0.000000,0.250000,0,0);}
.m8b_c00487{transform:matrix(0.277356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277356,0.000000,0.000000,0.250000,0,0);}
.m66_c00487{transform:matrix(0.277398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277398,0.000000,0.000000,0.250000,0,0);}
.m93_c00487{transform:matrix(0.277684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277684,0.000000,0.000000,0.250000,0,0);}
.m90_c00487{transform:matrix(0.278036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278036,0.000000,0.000000,0.250000,0,0);}
.m82_c00487{transform:matrix(0.278268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278268,0.000000,0.000000,0.250000,0,0);}
.m99_c00487{transform:matrix(0.278389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278389,0.000000,0.000000,0.250000,0,0);}
.m1f_c00487{transform:matrix(0.278647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278647,0.000000,0.000000,0.250000,0,0);}
.m83_c00487{transform:matrix(0.279086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279086,0.000000,0.000000,0.250000,0,0);}
.m4e_c00487{transform:matrix(0.279092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279092,0.000000,0.000000,0.250000,0,0);}
.m74_c00487{transform:matrix(0.279762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279762,0.000000,0.000000,0.250000,0,0);}
.m31_c00487{transform:matrix(0.280093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280093,0.000000,0.000000,0.250000,0,0);}
.m3b_c00487{transform:matrix(0.281226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281226,0.000000,0.000000,0.250000,0,0);}
.m97_c00487{transform:matrix(0.281640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281640,0.000000,0.000000,0.250000,0,0);}
.m5a_c00487{transform:matrix(0.281718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281718,0.000000,0.000000,0.250000,0,0);}
.m7_c00487{transform:matrix(0.282519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282519,0.000000,0.000000,0.250000,0,0);}
.m56_c00487{transform:matrix(0.285205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285205,0.000000,0.000000,0.250000,0,0);}
.m1e_c00487{transform:matrix(0.285458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285458,0.000000,0.000000,0.250000,0,0);}
.m4f_c00487{transform:matrix(0.286345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286345,0.000000,0.000000,0.250000,0,0);}
.m1b_c00487{transform:matrix(0.286395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286395,0.000000,0.000000,0.250000,0,0);}
.m76_c00487{transform:matrix(0.287154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287154,0.000000,0.000000,0.250000,0,0);}
.m75_c00487{transform:matrix(0.287979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287979,0.000000,0.000000,0.250000,0,0);}
.m77_c00487{transform:matrix(0.288046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288046,0.000000,0.000000,0.250000,0,0);}
.m8_c00487{transform:matrix(0.288163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288163,0.000000,0.000000,0.250000,0,0);}
.m4b_c00487{transform:matrix(0.288535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288535,0.000000,0.000000,0.250000,0,0);}
.m6d_c00487{transform:matrix(0.288703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288703,0.000000,0.000000,0.250000,0,0);}
.m4_c00487{transform:matrix(0.289423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289423,0.000000,0.000000,0.250000,0,0);}
.m53_c00487{transform:matrix(0.289832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289832,0.000000,0.000000,0.250000,0,0);}
.m80_c00487{transform:matrix(0.290999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290999,0.000000,0.000000,0.250000,0,0);}
.m8e_c00487{transform:matrix(0.291283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291283,0.000000,0.000000,0.250000,0,0);}
.m40_c00487{transform:matrix(0.291490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291490,0.000000,0.000000,0.250000,0,0);}
.m33_c00487{transform:matrix(0.291650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291650,0.000000,0.000000,0.250000,0,0);}
.m85_c00487{transform:matrix(0.291853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291853,0.000000,0.000000,0.250000,0,0);}
.mb_c00487{transform:matrix(0.292162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292162,0.000000,0.000000,0.250000,0,0);}
.m3f_c00487{transform:matrix(0.292999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292999,0.000000,0.000000,0.250000,0,0);}
.m7f_c00487{transform:matrix(0.293112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293112,0.000000,0.000000,0.250000,0,0);}
.m92_c00487{transform:matrix(0.293534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293534,0.000000,0.000000,0.250000,0,0);}
.m8d_c00487{transform:matrix(0.293886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293886,0.000000,0.000000,0.250000,0,0);}
.m35_c00487{transform:matrix(0.294209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294209,0.000000,0.000000,0.250000,0,0);}
.m5f_c00487{transform:matrix(0.294853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294853,0.000000,0.000000,0.250000,0,0);}
.m42_c00487{transform:matrix(0.295531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295531,0.000000,0.000000,0.250000,0,0);}
.m43_c00487{transform:matrix(0.295532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295532,0.000000,0.000000,0.250000,0,0);}
.m11_c00487{transform:matrix(0.295880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295880,0.000000,0.000000,0.250000,0,0);}
.m2e_c00487{transform:matrix(0.296776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296776,0.000000,0.000000,0.250000,0,0);}
.m84_c00487{transform:matrix(0.296814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296814,0.000000,0.000000,0.250000,0,0);}
.m41_c00487{transform:matrix(0.296840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296840,0.000000,0.000000,0.250000,0,0);}
.m45_c00487{transform:matrix(0.297421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297421,0.000000,0.000000,0.250000,0,0);}
.m9f_c00487{transform:matrix(0.297864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297864,0.000000,0.000000,0.250000,0,0);}
.m52_c00487{transform:matrix(0.299787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299787,0.000000,0.000000,0.250000,0,0);}
.m55_c00487{transform:matrix(0.299905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299905,0.000000,0.000000,0.250000,0,0);}
.m47_c00487{transform:matrix(0.300792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300792,0.000000,0.000000,0.250000,0,0);}
.m96_c00487{transform:matrix(0.300883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300883,0.000000,0.000000,0.250000,0,0);}
.m6e_c00487{transform:matrix(0.300887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300887,0.000000,0.000000,0.250000,0,0);}
.m48_c00487{transform:matrix(0.300946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300946,0.000000,0.000000,0.250000,0,0);}
.m2a_c00487{transform:matrix(0.300999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300999,0.000000,0.000000,0.250000,0,0);}
.m5c_c00487{transform:matrix(0.301307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301307,0.000000,0.000000,0.250000,0,0);}
.m16_c00487{transform:matrix(0.301600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301600,0.000000,0.000000,0.250000,0,0);}
.m28_c00487{transform:matrix(0.301666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301666,0.000000,0.000000,0.250000,0,0);}
.m36_c00487{transform:matrix(0.302606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302606,0.000000,0.000000,0.250000,0,0);}
.m86_c00487{transform:matrix(0.303345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303345,0.000000,0.000000,0.250000,0,0);}
.m9d_c00487{transform:matrix(0.304634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304634,0.000000,0.000000,0.250000,0,0);}
.m73_c00487{transform:matrix(0.305054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305054,0.000000,0.000000,0.250000,0,0);}
.m5d_c00487{transform:matrix(0.305206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305206,0.000000,0.000000,0.250000,0,0);}
.m87_c00487{transform:matrix(0.305776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305776,0.000000,0.000000,0.250000,0,0);}
.m23_c00487{transform:matrix(0.307256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307256,0.000000,0.000000,0.250000,0,0);}
.md_c00487{transform:matrix(0.307898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307898,0.000000,0.000000,0.250000,0,0);}
.m30_c00487{transform:matrix(0.308063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308063,0.000000,0.000000,0.250000,0,0);}
.m37_c00487{transform:matrix(0.308155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308155,0.000000,0.000000,0.250000,0,0);}
.m91_c00487{transform:matrix(0.308447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308447,0.000000,0.000000,0.250000,0,0);}
.m6f_c00487{transform:matrix(0.309149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309149,0.000000,0.000000,0.250000,0,0);}
.m5_c00487{transform:matrix(0.309648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309648,0.000000,0.000000,0.250000,0,0);}
.m72_c00487{transform:matrix(0.312150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312150,0.000000,0.000000,0.250000,0,0);}
.m98_c00487{transform:matrix(0.312276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312276,0.000000,0.000000,0.250000,0,0);}
.m63_c00487{transform:matrix(0.312367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312367,0.000000,0.000000,0.250000,0,0);}
.m2d_c00487{transform:matrix(0.313412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313412,0.000000,0.000000,0.250000,0,0);}
.m7e_c00487{transform:matrix(0.313749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313749,0.000000,0.000000,0.250000,0,0);}
.m22_c00487{transform:matrix(0.315002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315002,0.000000,0.000000,0.250000,0,0);}
.m61_c00487{transform:matrix(0.316047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316047,0.000000,0.000000,0.250000,0,0);}
.m57_c00487{transform:matrix(0.320355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320355,0.000000,0.000000,0.250000,0,0);}
.m17_c00487{transform:matrix(0.320725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320725,0.000000,0.000000,0.250000,0,0);}
.m94_c00487{transform:matrix(0.320976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320976,0.000000,0.000000,0.250000,0,0);}
.m39_c00487{transform:matrix(0.321151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321151,0.000000,0.000000,0.250000,0,0);}
.m9a_c00487{transform:matrix(0.322204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322204,0.000000,0.000000,0.250000,0,0);}
.m70_c00487{transform:matrix(0.322683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322683,0.000000,0.000000,0.250000,0,0);}
.m71_c00487{transform:matrix(0.322998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322998,0.000000,0.000000,0.250000,0,0);}
.m9b_c00487{transform:matrix(0.323122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323122,0.000000,0.000000,0.250000,0,0);}
.m95_c00487{transform:matrix(0.323259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323259,0.000000,0.000000,0.250000,0,0);}
.m59_c00487{transform:matrix(0.323550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323550,0.000000,0.000000,0.250000,0,0);}
.m9e_c00487{transform:matrix(0.326587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326587,0.000000,0.000000,0.250000,0,0);}
.m68_c00487{transform:matrix(0.327590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327590,0.000000,0.000000,0.250000,0,0);}
.m3e_c00487{transform:matrix(0.327996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327996,0.000000,0.000000,0.250000,0,0);}
.m5b_c00487{transform:matrix(0.328576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328576,0.000000,0.000000,0.250000,0,0);}
.mf_c00487{transform:matrix(0.329069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329069,0.000000,0.000000,0.250000,0,0);}
.m88_c00487{transform:matrix(0.329308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329308,0.000000,0.000000,0.250000,0,0);}
.m65_c00487{transform:matrix(0.330471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330471,0.000000,0.000000,0.250000,0,0);}
.m9c_c00487{transform:matrix(0.331275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331275,0.000000,0.000000,0.250000,0,0);}
.ma_c00487{transform:matrix(0.334661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334661,0.000000,0.000000,0.250000,0,0);}
.m8f_c00487{transform:matrix(0.336088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336088,0.000000,0.000000,0.250000,0,0);}
.m60_c00487{transform:matrix(0.337918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337918,0.000000,0.000000,0.250000,0,0);}
.m38_c00487{transform:matrix(0.340747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340747,0.000000,0.000000,0.250000,0,0);}
.m6b_c00487{transform:matrix(0.341848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341848,0.000000,0.000000,0.250000,0,0);}
.m29_c00487{transform:matrix(0.342590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342590,0.000000,0.000000,0.250000,0,0);}
.m62_c00487{transform:matrix(0.342959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342959,0.000000,0.000000,0.250000,0,0);}
.m6c_c00487{transform:matrix(0.344592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344592,0.000000,0.000000,0.250000,0,0);}
.m27_c00487{transform:matrix(0.346990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346990,0.000000,0.000000,0.250000,0,0);}
.m81_c00487{transform:matrix(0.362800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362800,0.000000,0.000000,0.250000,0,0);}
.m18_c00487{transform:matrix(0.366009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366009,0.000000,0.000000,0.250000,0,0);}
.mc_c00487{transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);}
.m3d_c00487{transform:matrix(0.368736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368736,0.000000,0.000000,0.250000,0,0);}
.m1a_c00487{transform:matrix(0.374684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374684,0.000000,0.000000,0.250000,0,0);}
.m50_c00487{transform:matrix(0.380631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380631,0.000000,0.000000,0.250000,0,0);}
.m5e_c00487{transform:matrix(0.392526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392526,0.000000,0.000000,0.250000,0,0);}
.v0_c00487{vertical-align:0.000000px;}
.ls14_c00487{letter-spacing:-3.132367px;}
.lsa_c00487{letter-spacing:-2.778930px;}
.ls13_c00487{letter-spacing:-2.467080px;}
.lsf_c00487{letter-spacing:-2.151686px;}
.ls16_c00487{letter-spacing:-1.699117px;}
.lsb_c00487{letter-spacing:-1.675298px;}
.lsc_c00487{letter-spacing:-1.198910px;}
.ls18_c00487{letter-spacing:-0.984060px;}
.ls3_c00487{letter-spacing:0.000000px;}
.ls9_c00487{letter-spacing:0.174676px;}
.ls1_c00487{letter-spacing:0.254074px;}
.ls0_c00487{letter-spacing:0.873378px;}
.ls11_c00487{letter-spacing:1.516502px;}
.ls7_c00487{letter-spacing:1.643539px;}
.ls17_c00487{letter-spacing:1.881733px;}
.ls12_c00487{letter-spacing:2.145949px;}
.lsd_c00487{letter-spacing:2.620134px;}
.ls10_c00487{letter-spacing:2.731291px;}
.ls6_c00487{letter-spacing:3.524400px;}
.ls5_c00487{letter-spacing:3.534070px;}
.ls2_c00487{letter-spacing:3.755525px;}
.ls8_c00487{letter-spacing:3.791700px;}
.ls4_c00487{letter-spacing:3.969900px;}
.lse_c00487{letter-spacing:57.024198px;}
.ls15_c00487{letter-spacing:64.152198px;}
.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:-20.103574px;}
.ws1_c00487{word-spacing:0.000000px;}
._1_c00487{width:11.338034px;}
._2_c00487{width:17.868748px;}
._0_c00487{width:27.831276px;}
.fc0_c00487{color:transparent;}
.fs1_c00487{font-size:22.176000px;}
.fs9_c00487{font-size:26.928000px;}
.fs0_c00487{font-size:27.720000px;}
.fsf_c00487{font-size:28.116000px;}
.fs3_c00487{font-size:38.808000px;}
.fs8_c00487{font-size:57.024198px;}
.fsd_c00487{font-size:64.152198px;}
.fs6_c00487{font-size:70.488000px;}
.fse_c00487{font-size:72.864000px;}
.fsa_c00487{font-size:74.844000px;}
.fs7_c00487{font-size:75.834000px;}
.fs5_c00487{font-size:77.022198px;}
.fsb_c00487{font-size:78.606198px;}
.fs2_c00487{font-size:79.398000px;}
.fs4_c00487{font-size:87.912198px;}
.fsc_c00487{font-size:89.496198px;}
.y0_c00487{bottom:0.000000px;}
.y1f_c00487{bottom:15.232185px;}
.y1_c00487{bottom:76.500000px;}
.y1e_c00487{bottom:167.419935px;}
.y1d_c00487{bottom:198.778185px;}
.y1c_c00487{bottom:231.928335px;}
.y1b_c00487{bottom:263.647935px;}
.y1a_c00487{bottom:296.080335px;}
.y19_c00487{bottom:326.730735px;}
.y18_c00487{bottom:423.310185px;}
.y17_c00487{bottom:453.960585px;}
.y16_c00487{bottom:485.680185px;}
.y15_c00487{bottom:517.404735px;}
.y14_c00487{bottom:549.480735px;}
.y13_c00487{bottom:612.558585px;}
.y12_c00487{bottom:630.027135px;}
.y11_c00487{bottom:644.278185px;}
.y10_c00487{bottom:675.641385px;}
.yf_c00487{bottom:707.717385px;}
.ye_c00487{bottom:738.729135px;}
.yd_c00487{bottom:770.443785px;}
.yc_c00487{bottom:802.168335px;}
.yb_c00487{bottom:833.887935px;}
.ya_c00487{bottom:865.963935px;}
.y5_c00487{bottom:907.301385px;}
.y4_c00487{bottom:928.333935px;}
.y7_c00487{bottom:1017.785385px;}
.y9_c00487{bottom:1023.844185px;}
.y2_c00487{bottom:1044.158985px;}
.y8_c00487{bottom:1049.148585px;}
.y6_c00487{bottom:1055.207385px;}
.y3_c00487{bottom:1069.463385px;}
.h3_c00487{height:23.128875px;}
.h10_c00487{height:27.594316px;}
.hb_c00487{height:28.085063px;}
.h2_c00487{height:28.911094px;}
.ha_c00487{height:37.978116px;}
.h5_c00487{height:40.475531px;}
.hf_c00487{height:42.725364px;}
.h8_c00487{height:69.180117px;}
.hc_c00487{height:73.455293px;}
.h9_c00487{height:74.426924px;}
.hd_c00487{height:77.147685px;}
.h4_c00487{height:77.924795px;}
.h7_c00487{height:80.331746px;}
.h6_c00487{height:86.281015px;}
.he_c00487{height:87.835624px;}
.h1_c00487{height:1110.000000px;}
.h0_c00487{height:1263.000000px;}
.w1_c00487{width:763.500000px;}
.w0_c00487{width:892.500000px;}
.x0_c00487{left:0.000000px;}
.x2_c00487{left:48.585285px;}
.x1_c00487{left:64.500000px;}
.x53_c00487{left:86.418135px;}
.x2f_c00487{left:87.695235px;}
.x4_c00487{left:89.368335px;}
.x16_c00487{left:121.186935px;}
.x66_c00487{left:130.765185px;}
.xd_c00487{left:142.600635px;}
.x50_c00487{left:143.981685px;}
.x1f_c00487{left:154.282635px;}
.x27_c00487{left:163.722285px;}
.x37_c00487{left:165.261735px;}
.x30_c00487{left:166.504185px;}
.x64_c00487{left:174.820185px;}
.x3f_c00487{left:175.884435px;}
.x5_c00487{left:177.156585px;}
.x62_c00487{left:185.190435px;}
.x20_c00487{left:186.581385px;}
.x54_c00487{left:197.402085px;}
.x31_c00487{left:200.490885px;}
.x6_c00487{left:208.712835px;}
.x28_c00487{left:210.168135px;}
.x46_c00487{left:220.959135px;}
.x32_c00487{left:222.701535px;}
.x55_c00487{left:230.770035px;}
.xe_c00487{left:232.715385px;}
.x4c_c00487{left:242.694585px;}
.x7_c00487{left:244.026135px;}
.x17_c00487{left:245.397285px;}
.x47_c00487{left:252.876735px;}
.x29_c00487{left:264.271635px;}
.x33_c00487{left:266.578335px;}
.x38_c00487{left:276.176385px;}
.x57_c00487{left:286.625835px;}
.xf_c00487{left:288.219735px;}
.x5f_c00487{left:297.590085px;}
.x18_c00487{left:299.258235px;}
.x40_c00487{left:308.940435px;}
.x39_c00487{left:310.004685px;}
.x10_c00487{left:321.132285px;}
.x21_c00487{left:323.062785px;}
.x3_c00487{left:330.878835px;}
.x63_c00487{left:341.046135px;}
.x41_c00487{left:342.838035px;}
.x58_c00487{left:346.006035px;}
.x59_c00487{left:352.074735px;}
.x34_c00487{left:353.287485px;}
.x11_c00487{left:364.944735px;}
.x19_c00487{left:375.121935px;}
.x5a_c00487{left:386.759385px;}
.x5b_c00487{left:395.827785px;}
.x22_c00487{left:397.565235px;}
.x35_c00487{left:399.134385px;}
.x42_c00487{left:409.524435px;}
.x12_c00487{left:410.549085px;}
.x5c_c00487{left:419.350185px;}
.x2a_c00487{left:420.533235px;}
.x3a_c00487{left:422.275635px;}
.x23_c00487{left:432.205335px;}
.x4d_c00487{left:441.882585px;}
.x51_c00487{left:443.016135px;}
.x1a_c00487{left:452.802285px;}
.x43_c00487{left:465.088185px;}
.x4e_c00487{left:476.473185px;}
.x8_c00487{left:485.888085px;}
.x36_c00487{left:487.214685px;}
.x9_c00487{left:488.338335px;}
.x60_c00487{left:495.921735px;}
.x3b_c00487{left:496.995885px;}
.x5d_c00487{left:499.248135px;}
.x48_c00487{left:519.587685px;}
.x1b_c00487{left:522.438885px;}
.x2b_c00487{left:530.155935px;}
.x44_c00487{left:531.408285px;}
.x4b_c00487{left:540.877635px;}
.x13_c00487{left:543.105135px;}
.x3c_c00487{left:551.525085px;}
.x24_c00487{left:553.737735px;}
.x5e_c00487{left:562.939785px;}
.x14_c00487{left:575.052435px;}
.x1c_c00487{left:587.427435px;}
.x65_c00487{left:595.367235px;}
.x2c_c00487{left:598.302585px;}
.x25_c00487{left:607.851135px;}
.x52_c00487{left:608.875785px;}
.x3d_c00487{left:620.028135px;}
.x4f_c00487{left:631.041885px;}
.x4a_c00487{left:636.571035px;}
.x1d_c00487{left:640.620135px;}
.x26_c00487{left:641.768535px;}
.x2d_c00487{left:652.366485px;}
.x45_c00487{left:664.201935px;}
.x56_c00487{left:673.072335px;}
.x3e_c00487{left:674.656335px;}
.x15_c00487{left:686.080935px;}
.xa_c00487{left:695.451285px;}
.x2e_c00487{left:696.649185px;}
.x67_c00487{left:698.332185px;}
.xc_c00487{left:704.445435px;}
.x49_c00487{left:708.192585px;}
.xb_c00487{left:709.197435px;}
.x1e_c00487{left:718.825185px;}
.x61_c00487{left:751.633785px;}
@media print{
.v0_c00487{vertical-align:0.000000pt;}
.ls14_c00487{letter-spacing:-2.784326pt;}
.lsa_c00487{letter-spacing:-2.470160pt;}
.ls13_c00487{letter-spacing:-2.192960pt;}
.lsf_c00487{letter-spacing:-1.912610pt;}
.ls16_c00487{letter-spacing:-1.510326pt;}
.lsb_c00487{letter-spacing:-1.489154pt;}
.lsc_c00487{letter-spacing:-1.065698pt;}
.ls18_c00487{letter-spacing:-0.874720pt;}
.ls3_c00487{letter-spacing:0.000000pt;}
.ls9_c00487{letter-spacing:0.155267pt;}
.ls1_c00487{letter-spacing:0.225843pt;}
.ls0_c00487{letter-spacing:0.776336pt;}
.ls11_c00487{letter-spacing:1.348002pt;}
.ls7_c00487{letter-spacing:1.460923pt;}
.ls17_c00487{letter-spacing:1.672651pt;}
.ls12_c00487{letter-spacing:1.907510pt;}
.lsd_c00487{letter-spacing:2.329008pt;}
.ls10_c00487{letter-spacing:2.427814pt;}
.ls6_c00487{letter-spacing:3.132800pt;}
.ls5_c00487{letter-spacing:3.141396pt;}
.ls2_c00487{letter-spacing:3.338245pt;}
.ls8_c00487{letter-spacing:3.370400pt;}
.ls4_c00487{letter-spacing:3.528800pt;}
.lse_c00487{letter-spacing:50.688176pt;}
.ls15_c00487{letter-spacing:57.024176pt;}
.ws0_c00487{word-spacing:-17.869843pt;}
.ws1_c00487{word-spacing:0.000000pt;}
._1_c00487{width:10.078253pt;}
._2_c00487{width:15.883331pt;}
._0_c00487{width:24.738912pt;}
.fs1_c00487{font-size:19.712000pt;}
.fs9_c00487{font-size:23.936000pt;}
.fs0_c00487{font-size:24.640000pt;}
.fsf_c00487{font-size:24.992000pt;}
.fs3_c00487{font-size:34.496000pt;}
.fs8_c00487{font-size:50.688176pt;}
.fsd_c00487{font-size:57.024176pt;}
.fs6_c00487{font-size:62.656000pt;}
.fse_c00487{font-size:64.768000pt;}
.fsa_c00487{font-size:66.528000pt;}
.fs7_c00487{font-size:67.408000pt;}
.fs5_c00487{font-size:68.464176pt;}
.fsb_c00487{font-size:69.872176pt;}
.fs2_c00487{font-size:70.576000pt;}
.fs4_c00487{font-size:78.144176pt;}
.fsc_c00487{font-size:79.552176pt;}
.y0_c00487{bottom:0.000000pt;}
.y1f_c00487{bottom:13.539720pt;}
.y1_c00487{bottom:68.000000pt;}
.y1e_c00487{bottom:148.817720pt;}
.y1d_c00487{bottom:176.691720pt;}
.y1c_c00487{bottom:206.158520pt;}
.y1b_c00487{bottom:234.353720pt;}
.y1a_c00487{bottom:263.182520pt;}
.y19_c00487{bottom:290.427320pt;}
.y18_c00487{bottom:376.275720pt;}
.y17_c00487{bottom:403.520520pt;}
.y16_c00487{bottom:431.715720pt;}
.y15_c00487{bottom:459.915320pt;}
.y14_c00487{bottom:488.427320pt;}
.y13_c00487{bottom:544.496520pt;}
.y12_c00487{bottom:560.024120pt;}
.y11_c00487{bottom:572.691720pt;}
.y10_c00487{bottom:600.570120pt;}
.yf_c00487{bottom:629.082120pt;}
.ye_c00487{bottom:656.648120pt;}
.yd_c00487{bottom:684.838920pt;}
.yc_c00487{bottom:713.038520pt;}
.yb_c00487{bottom:741.233720pt;}
.ya_c00487{bottom:769.745720pt;}
.y5_c00487{bottom:806.490120pt;}
.y4_c00487{bottom:825.185720pt;}
.y7_c00487{bottom:904.698120pt;}
.y9_c00487{bottom:910.083720pt;}
.y2_c00487{bottom:928.141320pt;}
.y8_c00487{bottom:932.576520pt;}
.y6_c00487{bottom:937.962120pt;}
.y3_c00487{bottom:950.634120pt;}
.h3_c00487{height:20.559000pt;}
.h10_c00487{height:24.528281pt;}
.hb_c00487{height:24.964500pt;}
.h2_c00487{height:25.698750pt;}
.ha_c00487{height:33.758325pt;}
.h5_c00487{height:35.978250pt;}
.hf_c00487{height:37.978101pt;}
.h8_c00487{height:61.493438pt;}
.hc_c00487{height:65.293594pt;}
.h9_c00487{height:66.157266pt;}
.hd_c00487{height:68.575720pt;}
.h4_c00487{height:69.266484pt;}
.h7_c00487{height:71.405996pt;}
.h6_c00487{height:76.694235pt;}
.he_c00487{height:78.076110pt;}
.h1_c00487{height:986.666667pt;}
.h0_c00487{height:1122.666667pt;}
.w1_c00487{width:678.666667pt;}
.w0_c00487{width:793.333333pt;}
.x0_c00487{left:0.000000pt;}
.x2_c00487{left:43.186920pt;}
.x1_c00487{left:57.333333pt;}
.x53_c00487{left:76.816120pt;}
.x2f_c00487{left:77.951320pt;}
.x4_c00487{left:79.438520pt;}
.x16_c00487{left:107.721720pt;}
.x66_c00487{left:116.235720pt;}
.xd_c00487{left:126.756120pt;}
.x50_c00487{left:127.983720pt;}
.x1f_c00487{left:137.140120pt;}
.x27_c00487{left:145.530920pt;}
.x37_c00487{left:146.899320pt;}
.x30_c00487{left:148.003720pt;}
.x64_c00487{left:155.395720pt;}
.x3f_c00487{left:156.341720pt;}
.x5_c00487{left:157.472520pt;}
.x62_c00487{left:164.613720pt;}
.x20_c00487{left:165.850120pt;}
.x54_c00487{left:175.468520pt;}
.x31_c00487{left:178.214120pt;}
.x6_c00487{left:185.522520pt;}
.x28_c00487{left:186.816120pt;}
.x46_c00487{left:196.408120pt;}
.x32_c00487{left:197.956920pt;}
.x55_c00487{left:205.128920pt;}
.xe_c00487{left:206.858120pt;}
.x4c_c00487{left:215.728520pt;}
.x7_c00487{left:216.912120pt;}
.x17_c00487{left:218.130920pt;}
.x47_c00487{left:224.779320pt;}
.x29_c00487{left:234.908120pt;}
.x33_c00487{left:236.958520pt;}
.x38_c00487{left:245.490120pt;}
.x57_c00487{left:254.778520pt;}
.xf_c00487{left:256.195320pt;}
.x5f_c00487{left:264.524520pt;}
.x18_c00487{left:266.007320pt;}
.x40_c00487{left:274.613720pt;}
.x39_c00487{left:275.559720pt;}
.x10_c00487{left:285.450920pt;}
.x21_c00487{left:287.166920pt;}
.x3_c00487{left:294.114520pt;}
.x63_c00487{left:303.152120pt;}
.x41_c00487{left:304.744920pt;}
.x58_c00487{left:307.560920pt;}
.x59_c00487{left:312.955320pt;}
.x34_c00487{left:314.033320pt;}
.x11_c00487{left:324.395320pt;}
.x19_c00487{left:333.441720pt;}
.x5a_c00487{left:343.786120pt;}
.x5b_c00487{left:351.846920pt;}
.x22_c00487{left:353.391320pt;}
.x35_c00487{left:354.786120pt;}
.x42_c00487{left:364.021720pt;}
.x12_c00487{left:364.932520pt;}
.x5c_c00487{left:372.755720pt;}
.x2a_c00487{left:373.807320pt;}
.x3a_c00487{left:375.356120pt;}
.x23_c00487{left:384.182520pt;}
.x4d_c00487{left:392.784520pt;}
.x51_c00487{left:393.792120pt;}
.x1a_c00487{left:402.490920pt;}
.x43_c00487{left:413.411720pt;}
.x4e_c00487{left:423.531720pt;}
.x8_c00487{left:431.900520pt;}
.x36_c00487{left:433.079720pt;}
.x9_c00487{left:434.078520pt;}
.x60_c00487{left:440.819320pt;}
.x3b_c00487{left:441.774120pt;}
.x5d_c00487{left:443.776120pt;}
.x48_c00487{left:461.855720pt;}
.x1b_c00487{left:464.390120pt;}
.x2b_c00487{left:471.249720pt;}
.x44_c00487{left:472.362920pt;}
.x4b_c00487{left:480.780120pt;}
.x13_c00487{left:482.760120pt;}
.x3c_c00487{left:490.244520pt;}
.x24_c00487{left:492.211320pt;}
.x5e_c00487{left:500.390920pt;}
.x14_c00487{left:511.157720pt;}
.x1c_c00487{left:522.157720pt;}
.x65_c00487{left:529.215320pt;}
.x2c_c00487{left:531.824520pt;}
.x25_c00487{left:540.312120pt;}
.x52_c00487{left:541.222920pt;}
.x3d_c00487{left:551.136120pt;}
.x4f_c00487{left:560.926120pt;}
.x4a_c00487{left:565.840920pt;}
.x1d_c00487{left:569.440120pt;}
.x26_c00487{left:570.460920pt;}
.x2d_c00487{left:579.881320pt;}
.x45_c00487{left:590.401720pt;}
.x56_c00487{left:598.286520pt;}
.x3e_c00487{left:599.694520pt;}
.x15_c00487{left:609.849720pt;}
.xa_c00487{left:618.178920pt;}
.x2e_c00487{left:619.243720pt;}
.x67_c00487{left:620.739720pt;}
.xc_c00487{left:626.173720pt;}
.x49_c00487{left:629.504520pt;}
.xb_c00487{left:630.397720pt;}
.x1e_c00487{left:638.955720pt;}
.x61_c00487{left:668.118920pt;}
}





    body { margin: 0; background: #f3f4f6; }
    #page-container { margin: 0 auto; }
    .pf_c00488 {
      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_c00488 {
      padding: 42px;
      color: #374151;
      font-size: 14px;
      line-height: 1.45;
    }
    .scieee-page-failed_c00488 b {
      display: block;
      margin-bottom: 8px;
      font-size: 18px;
      color: #111827;
    }
    .scieee-page-failed_c00488 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_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_64016b066565d12b36332654.woff2')format("woff");}.ff1_c00489{font-family:ff1_c00489;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00489;src:url('chunks/assets/font_d607f71a5697fdc83f674853.woff2')format("woff");}.ff2_c00489{font-family:ff2_c00489;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00489;src:url('chunks/assets/font_341c3d2895e29e3e01177471.woff2')format("woff");}.ff3_c00489{font-family:ff3_c00489;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00489;src:url('chunks/assets/font_303d0d411826a8e1b09288c5.woff2')format("woff");}.ff4_c00489{font-family:ff4_c00489;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mbd_c00489{transform:matrix(0.119048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119048,0.000000,0.000000,0.250000,0,0);}
.ma1_c00489{transform:matrix(0.136450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136450,0.000000,0.000000,0.250000,0,0);}
.ma4_c00489{transform:matrix(0.152340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152340,0.000000,0.000000,0.250000,0,0);}
.ma3_c00489{transform:matrix(0.155364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155364,0.000000,0.000000,0.250000,0,0);}
.ma0_c00489{transform:matrix(0.171914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171914,0.000000,0.000000,0.250000,0,0);}
.m5b_c00489{transform:matrix(0.182539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182539,0.000000,0.000000,0.250000,0,0);}
.ma2_c00489{transform:matrix(0.199762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199762,0.000000,0.000000,0.250000,0,0);}
.m67_c00489{transform:matrix(0.245202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245202,0.000000,0.000000,0.250000,0,0);}
.m0_c00489{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00489{transform:matrix(0.250421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250421,0.000000,0.000000,0.250000,0,0);}
.m35_c00489{transform:matrix(0.252313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252313,0.000000,0.000000,0.250000,0,0);}
.m1e_c00489{transform:matrix(0.253161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253161,0.000000,0.000000,0.250000,0,0);}
.m68_c00489{transform:matrix(0.254142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254142,0.000000,0.000000,0.250000,0,0);}
.m8_c00489{transform:matrix(0.254533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254533,0.000000,0.000000,0.250000,0,0);}
.m18_c00489{transform:matrix(0.255101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255101,0.000000,0.000000,0.250000,0,0);}
.m1c_c00489{transform:matrix(0.255289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255289,0.000000,0.000000,0.250000,0,0);}
.m40_c00489{transform:matrix(0.255374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255374,0.000000,0.000000,0.250000,0,0);}
.m6e_c00489{transform:matrix(0.255679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255679,0.000000,0.000000,0.250000,0,0);}
.mab_c00489{transform:matrix(0.255942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255942,0.000000,0.000000,0.250000,0,0);}
.mb8_c00489{transform:matrix(0.256815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256815,0.000000,0.000000,0.250000,0,0);}
.me_c00489{transform:matrix(0.256819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256819,0.000000,0.000000,0.250000,0,0);}
.m3d_c00489{transform:matrix(0.256938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256938,0.000000,0.000000,0.250000,0,0);}
.m4a_c00489{transform:matrix(0.257425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257425,0.000000,0.000000,0.250000,0,0);}
.m20_c00489{transform:matrix(0.257569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257569,0.000000,0.000000,0.250000,0,0);}
.m83_c00489{transform:matrix(0.258692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258692,0.000000,0.000000,0.250000,0,0);}
.m3_c00489{transform:matrix(0.259460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259460,0.000000,0.000000,0.250000,0,0);}
.m9_c00489{transform:matrix(0.259510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259510,0.000000,0.000000,0.250000,0,0);}
.m5f_c00489{transform:matrix(0.259656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259656,0.000000,0.000000,0.250000,0,0);}
.m75_c00489{transform:matrix(0.260280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260280,0.000000,0.000000,0.250000,0,0);}
.m98_c00489{transform:matrix(0.261325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261325,0.000000,0.000000,0.250000,0,0);}
.m73_c00489{transform:matrix(0.261590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261590,0.000000,0.000000,0.250000,0,0);}
.m28_c00489{transform:matrix(0.262002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262002,0.000000,0.000000,0.250000,0,0);}
.m91_c00489{transform:matrix(0.262076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262076,0.000000,0.000000,0.250000,0,0);}
.m53_c00489{transform:matrix(0.263091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263091,0.000000,0.000000,0.250000,0,0);}
.m60_c00489{transform:matrix(0.263210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263210,0.000000,0.000000,0.250000,0,0);}
.ma8_c00489{transform:matrix(0.264201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264201,0.000000,0.000000,0.250000,0,0);}
.m56_c00489{transform:matrix(0.264211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264211,0.000000,0.000000,0.250000,0,0);}
.m7b_c00489{transform:matrix(0.264913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264913,0.000000,0.000000,0.250000,0,0);}
.mb9_c00489{transform:matrix(0.265007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265007,0.000000,0.000000,0.250000,0,0);}
.m4b_c00489{transform:matrix(0.265181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265181,0.000000,0.000000,0.250000,0,0);}
.m43_c00489{transform:matrix(0.265867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265867,0.000000,0.000000,0.250000,0,0);}
.m2f_c00489{transform:matrix(0.266067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266067,0.000000,0.000000,0.250000,0,0);}
.m42_c00489{transform:matrix(0.266162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266162,0.000000,0.000000,0.250000,0,0);}
.m29_c00489{transform:matrix(0.266860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266860,0.000000,0.000000,0.250000,0,0);}
.m92_c00489{transform:matrix(0.266916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266916,0.000000,0.000000,0.250000,0,0);}
.m64_c00489{transform:matrix(0.267825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267825,0.000000,0.000000,0.250000,0,0);}
.m9d_c00489{transform:matrix(0.268196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268196,0.000000,0.000000,0.250000,0,0);}
.m1f_c00489{transform:matrix(0.268506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268506,0.000000,0.000000,0.250000,0,0);}
.m11_c00489{transform:matrix(0.268767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268767,0.000000,0.000000,0.250000,0,0);}
.m38_c00489{transform:matrix(0.270256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270256,0.000000,0.000000,0.250000,0,0);}
.m7c_c00489{transform:matrix(0.271256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271256,0.000000,0.000000,0.250000,0,0);}
.m41_c00489{transform:matrix(0.271475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271475,0.000000,0.000000,0.250000,0,0);}
.m77_c00489{transform:matrix(0.271711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271711,0.000000,0.000000,0.250000,0,0);}
.m9a_c00489{transform:matrix(0.271821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271821,0.000000,0.000000,0.250000,0,0);}
.m27_c00489{transform:matrix(0.272037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272037,0.000000,0.000000,0.250000,0,0);}
.m52_c00489{transform:matrix(0.272509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272509,0.000000,0.000000,0.250000,0,0);}
.ma5_c00489{transform:matrix(0.272836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272836,0.000000,0.000000,0.250000,0,0);}
.m17_c00489{transform:matrix(0.272924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272924,0.000000,0.000000,0.250000,0,0);}
.mbb_c00489{transform:matrix(0.273070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273070,0.000000,0.000000,0.250000,0,0);}
.m8b_c00489{transform:matrix(0.275423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275423,0.000000,0.000000,0.250000,0,0);}
.m8a_c00489{transform:matrix(0.276563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276563,0.000000,0.000000,0.250000,0,0);}
.m23_c00489{transform:matrix(0.278054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278054,0.000000,0.000000,0.250000,0,0);}
.m9c_c00489{transform:matrix(0.278421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278421,0.000000,0.000000,0.250000,0,0);}
.m14_c00489{transform:matrix(0.278619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278619,0.000000,0.000000,0.250000,0,0);}
.m6c_c00489{transform:matrix(0.279313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279313,0.000000,0.000000,0.250000,0,0);}
.m6f_c00489{transform:matrix(0.279369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279369,0.000000,0.000000,0.250000,0,0);}
.m55_c00489{transform:matrix(0.279439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279439,0.000000,0.000000,0.250000,0,0);}
.m71_c00489{transform:matrix(0.280440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280440,0.000000,0.000000,0.250000,0,0);}
.m3b_c00489{transform:matrix(0.281324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281324,0.000000,0.000000,0.250000,0,0);}
.m13_c00489{transform:matrix(0.281664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281664,0.000000,0.000000,0.250000,0,0);}
.m24_c00489{transform:matrix(0.281693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281693,0.000000,0.000000,0.250000,0,0);}
.m69_c00489{transform:matrix(0.282389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282389,0.000000,0.000000,0.250000,0,0);}
.m5a_c00489{transform:matrix(0.283046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283046,0.000000,0.000000,0.250000,0,0);}
.m2b_c00489{transform:matrix(0.283203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283203,0.000000,0.000000,0.250000,0,0);}
.m12_c00489{transform:matrix(0.283212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283212,0.000000,0.000000,0.250000,0,0);}
.m8d_c00489{transform:matrix(0.283852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283852,0.000000,0.000000,0.250000,0,0);}
.m5c_c00489{transform:matrix(0.284517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284517,0.000000,0.000000,0.250000,0,0);}
.m84_c00489{transform:matrix(0.284556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284556,0.000000,0.000000,0.250000,0,0);}
.mb4_c00489{transform:matrix(0.284567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284567,0.000000,0.000000,0.250000,0,0);}
.m1a_c00489{transform:matrix(0.284614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284614,0.000000,0.000000,0.250000,0,0);}
.m37_c00489{transform:matrix(0.285239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285239,0.000000,0.000000,0.250000,0,0);}
.m5d_c00489{transform:matrix(0.285654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285654,0.000000,0.000000,0.250000,0,0);}
.m7f_c00489{transform:matrix(0.286880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286880,0.000000,0.000000,0.250000,0,0);}
.m46_c00489{transform:matrix(0.286897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286897,0.000000,0.000000,0.250000,0,0);}
.m47_c00489{transform:matrix(0.287385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287385,0.000000,0.000000,0.250000,0,0);}
.m80_c00489{transform:matrix(0.287800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287800,0.000000,0.000000,0.250000,0,0);}
.m30_c00489{transform:matrix(0.287941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287941,0.000000,0.000000,0.250000,0,0);}
.mae_c00489{transform:matrix(0.288157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288157,0.000000,0.000000,0.250000,0,0);}
.m74_c00489{transform:matrix(0.288411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288411,0.000000,0.000000,0.250000,0,0);}
.mba_c00489{transform:matrix(0.289368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289368,0.000000,0.000000,0.250000,0,0);}
.m10_c00489{transform:matrix(0.289502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289502,0.000000,0.000000,0.250000,0,0);}
.m4f_c00489{transform:matrix(0.289706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289706,0.000000,0.000000,0.250000,0,0);}
.m16_c00489{transform:matrix(0.290033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290033,0.000000,0.000000,0.250000,0,0);}
.m66_c00489{transform:matrix(0.290095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290095,0.000000,0.000000,0.250000,0,0);}
.m33_c00489{transform:matrix(0.290833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290833,0.000000,0.000000,0.250000,0,0);}
.m6a_c00489{transform:matrix(0.291465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291465,0.000000,0.000000,0.250000,0,0);}
.m72_c00489{transform:matrix(0.291570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291570,0.000000,0.000000,0.250000,0,0);}
.m4d_c00489{transform:matrix(0.292564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292564,0.000000,0.000000,0.250000,0,0);}
.m87_c00489{transform:matrix(0.293242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293242,0.000000,0.000000,0.250000,0,0);}
.mb1_c00489{transform:matrix(0.293557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293557,0.000000,0.000000,0.250000,0,0);}
.m50_c00489{transform:matrix(0.294214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294214,0.000000,0.000000,0.250000,0,0);}
.ma7_c00489{transform:matrix(0.295626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295626,0.000000,0.000000,0.250000,0,0);}
.m45_c00489{transform:matrix(0.296228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296228,0.000000,0.000000,0.250000,0,0);}
.m2_c00489{transform:matrix(0.296730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296730,0.000000,0.000000,0.250000,0,0);}
.m1b_c00489{transform:matrix(0.297447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297447,0.000000,0.000000,0.250000,0,0);}
.m3f_c00489{transform:matrix(0.297574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297574,0.000000,0.000000,0.250000,0,0);}
.m59_c00489{transform:matrix(0.297578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297578,0.000000,0.000000,0.250000,0,0);}
.m1_c00489{transform:matrix(0.297596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297596,0.000000,0.000000,0.250000,0,0);}
.m4_c00489{transform:matrix(0.297783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297783,0.000000,0.000000,0.250000,0,0);}
.m86_c00489{transform:matrix(0.297951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297951,0.000000,0.000000,0.250000,0,0);}
.m65_c00489{transform:matrix(0.298002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298002,0.000000,0.000000,0.250000,0,0);}
.m2a_c00489{transform:matrix(0.298520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298520,0.000000,0.000000,0.250000,0,0);}
.m8e_c00489{transform:matrix(0.298849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298849,0.000000,0.000000,0.250000,0,0);}
.m63_c00489{transform:matrix(0.299100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299100,0.000000,0.000000,0.250000,0,0);}
.m7a_c00489{transform:matrix(0.299333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299333,0.000000,0.000000,0.250000,0,0);}
.m90_c00489{transform:matrix(0.299365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299365,0.000000,0.000000,0.250000,0,0);}
.m31_c00489{transform:matrix(0.299757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299757,0.000000,0.000000,0.250000,0,0);}
.m4e_c00489{transform:matrix(0.300127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300127,0.000000,0.000000,0.250000,0,0);}
.mbc_c00489{transform:matrix(0.300905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300905,0.000000,0.000000,0.250000,0,0);}
.m6_c00489{transform:matrix(0.301251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301251,0.000000,0.000000,0.250000,0,0);}
.m58_c00489{transform:matrix(0.301259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301259,0.000000,0.000000,0.250000,0,0);}
.m62_c00489{transform:matrix(0.301262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301262,0.000000,0.000000,0.250000,0,0);}
.maa_c00489{transform:matrix(0.301509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301509,0.000000,0.000000,0.250000,0,0);}
.m26_c00489{transform:matrix(0.301713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301713,0.000000,0.000000,0.250000,0,0);}
.m2c_c00489{transform:matrix(0.301891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301891,0.000000,0.000000,0.250000,0,0);}
.m3c_c00489{transform:matrix(0.301950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301950,0.000000,0.000000,0.250000,0,0);}
.m88_c00489{transform:matrix(0.302358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302358,0.000000,0.000000,0.250000,0,0);}
.m19_c00489{transform:matrix(0.302488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302488,0.000000,0.000000,0.250000,0,0);}
.m22_c00489{transform:matrix(0.303626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303626,0.000000,0.000000,0.250000,0,0);}
.m76_c00489{transform:matrix(0.304012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304012,0.000000,0.000000,0.250000,0,0);}
.m7e_c00489{transform:matrix(0.304360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304360,0.000000,0.000000,0.250000,0,0);}
.mb3_c00489{transform:matrix(0.305584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305584,0.000000,0.000000,0.250000,0,0);}
.m96_c00489{transform:matrix(0.306109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306109,0.000000,0.000000,0.250000,0,0);}
.mc_c00489{transform:matrix(0.306132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306132,0.000000,0.000000,0.250000,0,0);}
.m6d_c00489{transform:matrix(0.306238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306238,0.000000,0.000000,0.250000,0,0);}
.m57_c00489{transform:matrix(0.306277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306277,0.000000,0.000000,0.250000,0,0);}
.m8c_c00489{transform:matrix(0.307649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307649,0.000000,0.000000,0.250000,0,0);}
.m48_c00489{transform:matrix(0.308258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308258,0.000000,0.000000,0.250000,0,0);}
.m6b_c00489{transform:matrix(0.309212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309212,0.000000,0.000000,0.250000,0,0);}
.ma9_c00489{transform:matrix(0.311035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311035,0.000000,0.000000,0.250000,0,0);}
.m25_c00489{transform:matrix(0.311905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311905,0.000000,0.000000,0.250000,0,0);}
.mac_c00489{transform:matrix(0.312121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312121,0.000000,0.000000,0.250000,0,0);}
.m39_c00489{transform:matrix(0.312403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312403,0.000000,0.000000,0.250000,0,0);}
.m34_c00489{transform:matrix(0.312583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312583,0.000000,0.000000,0.250000,0,0);}
.m21_c00489{transform:matrix(0.313198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313198,0.000000,0.000000,0.250000,0,0);}
.m2d_c00489{transform:matrix(0.313720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313720,0.000000,0.000000,0.250000,0,0);}
.m54_c00489{transform:matrix(0.314154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314154,0.000000,0.000000,0.250000,0,0);}
.m2e_c00489{transform:matrix(0.314885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314885,0.000000,0.000000,0.250000,0,0);}
.ma6_c00489{transform:matrix(0.314951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314951,0.000000,0.000000,0.250000,0,0);}
.mb2_c00489{transform:matrix(0.315071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315071,0.000000,0.000000,0.250000,0,0);}
.md_c00489{transform:matrix(0.315473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315473,0.000000,0.000000,0.250000,0,0);}
.m49_c00489{transform:matrix(0.315475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315475,0.000000,0.000000,0.250000,0,0);}
.m9b_c00489{transform:matrix(0.316256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316256,0.000000,0.000000,0.250000,0,0);}
.m94_c00489{transform:matrix(0.316568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316568,0.000000,0.000000,0.250000,0,0);}
.m7_c00489{transform:matrix(0.317549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317549,0.000000,0.000000,0.250000,0,0);}
.m36_c00489{transform:matrix(0.319020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319020,0.000000,0.000000,0.250000,0,0);}
.m5e_c00489{transform:matrix(0.320234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320234,0.000000,0.000000,0.250000,0,0);}
.maf_c00489{transform:matrix(0.320615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320615,0.000000,0.000000,0.250000,0,0);}
.mad_c00489{transform:matrix(0.321526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321526,0.000000,0.000000,0.250000,0,0);}
.m78_c00489{transform:matrix(0.321913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321913,0.000000,0.000000,0.250000,0,0);}
.m61_c00489{transform:matrix(0.322237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322237,0.000000,0.000000,0.250000,0,0);}
.m5_c00489{transform:matrix(0.322565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322565,0.000000,0.000000,0.250000,0,0);}
.m89_c00489{transform:matrix(0.323089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323089,0.000000,0.000000,0.250000,0,0);}
.m1d_c00489{transform:matrix(0.323422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323422,0.000000,0.000000,0.250000,0,0);}
.mb5_c00489{transform:matrix(0.323957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323957,0.000000,0.000000,0.250000,0,0);}
.m32_c00489{transform:matrix(0.325016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325016,0.000000,0.000000,0.250000,0,0);}
.mb7_c00489{transform:matrix(0.326110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326110,0.000000,0.000000,0.250000,0,0);}
.m97_c00489{transform:matrix(0.326693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326693,0.000000,0.000000,0.250000,0,0);}
.m99_c00489{transform:matrix(0.326698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326698,0.000000,0.000000,0.250000,0,0);}
.mb_c00489{transform:matrix(0.328937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328937,0.000000,0.000000,0.250000,0,0);}
.m82_c00489{transform:matrix(0.330539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330539,0.000000,0.000000,0.250000,0,0);}
.m4c_c00489{transform:matrix(0.330925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330925,0.000000,0.000000,0.250000,0,0);}
.ma_c00489{transform:matrix(0.334253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334253,0.000000,0.000000,0.250000,0,0);}
.m79_c00489{transform:matrix(0.334781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334781,0.000000,0.000000,0.250000,0,0);}
.m85_c00489{transform:matrix(0.335392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335392,0.000000,0.000000,0.250000,0,0);}
.m7d_c00489{transform:matrix(0.336695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336695,0.000000,0.000000,0.250000,0,0);}
.m15_c00489{transform:matrix(0.336835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336835,0.000000,0.000000,0.250000,0,0);}
.m70_c00489{transform:matrix(0.337967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337967,0.000000,0.000000,0.250000,0,0);}
.m44_c00489{transform:matrix(0.338826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338826,0.000000,0.000000,0.250000,0,0);}
.mb6_c00489{transform:matrix(0.339836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339836,0.000000,0.000000,0.250000,0,0);}
.m93_c00489{transform:matrix(0.344194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344194,0.000000,0.000000,0.250000,0,0);}
.m81_c00489{transform:matrix(0.352344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352344,0.000000,0.000000,0.250000,0,0);}
.m3a_c00489{transform:matrix(0.352447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352447,0.000000,0.000000,0.250000,0,0);}
.m3e_c00489{transform:matrix(0.353012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353012,0.000000,0.000000,0.250000,0,0);}
.mf_c00489{transform:matrix(0.364195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364195,0.000000,0.000000,0.250000,0,0);}
.m8f_c00489{transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);}
.mb0_c00489{transform:matrix(0.370070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370070,0.000000,0.000000,0.250000,0,0);}
.m51_c00489{transform:matrix(0.375943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375943,0.000000,0.000000,0.250000,0,0);}
.m95_c00489{transform:matrix(0.381818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381818,0.000000,0.000000,0.250000,0,0);}
.m9e_c00489{transform:matrix(0.383861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383861,0.000000,0.000000,0.250000,0,0);}
.v0_c00489{vertical-align:0.000000px;}
.ls9_c00489{letter-spacing:-2.813580px;}
.ls13_c00489{letter-spacing:-2.443795px;}
.lsa_c00489{letter-spacing:-1.865952px;}
.lsf_c00489{letter-spacing:-1.330567px;}
.ls4_c00489{letter-spacing:-0.602910px;}
.lse_c00489{letter-spacing:-0.140660px;}
.ls0_c00489{letter-spacing:0.000000px;}
.ls10_c00489{letter-spacing:0.663300px;}
.ls6_c00489{letter-spacing:0.667220px;}
.ls11_c00489{letter-spacing:1.267200px;}
.ls12_c00489{letter-spacing:1.900810px;}
.ls5_c00489{letter-spacing:2.508106px;}
.ls3_c00489{letter-spacing:2.637902px;}
.ls2_c00489{letter-spacing:3.255714px;}
.lsd_c00489{letter-spacing:3.425400px;}
.lsb_c00489{letter-spacing:3.524400px;}
.lsc_c00489{letter-spacing:3.603610px;}
.ls1_c00489{letter-spacing:4.019400px;}
.ls7_c00489{letter-spacing:4.059000px;}
.ls14_c00489{letter-spacing:29.937798px;}
.ls8_c00489{letter-spacing:59.875398px;}
.sc__c00489{text-shadow:none;}
.sc0_c00489{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00489{-webkit-text-stroke:0px transparent;}
.sc0_c00489{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00489{word-spacing:0.000000px;}
._1_c00489{margin-left:-6.234575px;}
._5_c00489{margin-left:-5.120365px;}
._0_c00489{width:2.170080px;}
._2_c00489{width:41.758101px;}
._3_c00489{width:64.686451px;}
._4_c00489{width:229.298856px;}
.fc0_c00489{color:transparent;}
.fsf_c00489{font-size:9.108000px;}
.fsd_c00489{font-size:13.266000px;}
.fs2_c00489{font-size:22.176000px;}
.fs12_c00489{font-size:25.146000px;}
.fse_c00489{font-size:25.344000px;}
.fs13_c00489{font-size:29.937798px;}
.fs6_c00489{font-size:33.660000px;}
.fsc_c00489{font-size:38.016198px;}
.fs0_c00489{font-size:46.332000px;}
.fs7_c00489{font-size:59.875398px;}
.fs3_c00489{font-size:66.330000px;}
.fs11_c00489{font-size:66.528000px;}
.fs4_c00489{font-size:67.122198px;}
.fsb_c00489{font-size:68.508000px;}
.fs9_c00489{font-size:70.488000px;}
.fsa_c00489{font-size:72.072198px;}
.fs10_c00489{font-size:74.844000px;}
.fs8_c00489{font-size:75.240000px;}
.fs1_c00489{font-size:80.388000px;}
.fs5_c00489{font-size:81.180000px;}
.y0_c00489{bottom:0.000000px;}
.y20_c00489{bottom:39.472335px;}
.y1f_c00489{bottom:49.802985px;}
.y1e_c00489{bottom:62.638335px;}
.y1_c00489{bottom:76.500000px;}
.y1d_c00489{bottom:126.077535px;}
.y1c_c00489{bottom:158.153535px;}
.y1b_c00489{bottom:190.224585px;}
.y1a_c00489{bottom:250.817535px;}
.y19_c00489{bottom:254.020185px;}
.y18_c00489{bottom:286.096185px;}
.y17_c00489{bottom:318.177135px;}
.y16_c00489{bottom:349.891785px;}
.y15_c00489{bottom:381.611385px;}
.y14_c00489{bottom:413.335935px;}
.y13_c00489{bottom:444.337785px;}
.y12_c00489{bottom:507.425535px;}
.y11_c00489{bottom:539.140185px;}
.y10_c00489{bottom:571.577535px;}
.yf_c00489{bottom:603.292185px;}
.ye_c00489{bottom:635.724585px;}
.yd_c00489{bottom:658.895535px;}
.yc_c00489{bottom:667.444185px;}
.yb_c00489{bottom:699.520185px;}
.ya_c00489{bottom:731.239785px;}
.y9_c00489{bottom:763.320735px;}
.y8_c00489{bottom:794.327535px;}
.y7_c00489{bottom:826.403535px;}
.y6_c00489{bottom:857.405385px;}
.y5_c00489{bottom:881.284185px;}
.y4_c00489{bottom:889.129935px;}
.y3_c00489{bottom:920.844585px;}
.y2_c00489{bottom:1102.608585px;}
.h11_c00489{height:9.499359px;}
.hf_c00489{height:13.836023px;}
.h15_c00489{height:19.938573px;}
.h4_c00489{height:23.128875px;}
.h10_c00489{height:24.873750px;}
.h14_c00489{height:26.226492px;}
.h8_c00489{height:33.035449px;}
.he_c00489{height:37.310819px;}
.hd_c00489{height:38.313200px;}
.h9_c00489{height:39.877015px;}
.h2_c00489{height:48.322828px;}
.hc_c00489{height:67.236855px;}
.h5_c00489{height:69.180117px;}
.h13_c00489{height:69.386625px;}
.h6_c00489{height:70.006355px;}
.h12_c00489{height:73.455293px;}
.hb_c00489{height:75.169050px;}
.ha_c00489{height:78.472969px;}
.h3_c00489{height:78.896426px;}
.h7_c00489{height:79.673730px;}
.h1_c00489{height:1110.000000px;}
.h0_c00489{height:1263.000000px;}
.w1_c00489{width:763.500000px;}
.w0_c00489{width:892.500000px;}
.x0_c00489{left:0.000000px;}
.x1_c00489{left:64.500000px;}
.x56_c00489{left:84.685635px;}
.x2c_c00489{left:86.428035px;}
.x3_c00489{left:87.660585px;}
.x76_c00489{left:118.999035px;}
.x4a_c00489{left:120.454335px;}
.x2d_c00489{left:130.586985px;}
.x4_c00489{left:131.849235px;}
.x71_c00489{left:140.165235px;}
.x1e_c00489{left:142.199685px;}
.x53_c00489{left:151.436385px;}
.x62_c00489{left:152.530335px;}
.x2e_c00489{left:154.589535px;}
.x7c_c00489{left:163.613385px;}
.x4c_c00489{left:175.240935px;}
.x26_c00489{left:176.765535px;}
.x3b_c00489{left:185.145885px;}
.x5_c00489{left:187.358535px;}
.x67_c00489{left:195.204285px;}
.x63_c00489{left:196.763535px;}
.x13_c00489{left:198.332685px;}
.x68_c00489{left:207.673335px;}
.x1f_c00489{left:209.098935px;}
.x57_c00489{left:217.578285px;}
.x36_c00489{left:220.147335px;}
.x77_c00489{left:229.854285px;}
.x3c_c00489{left:230.968035px;}
.x5e_c00489{left:240.947235px;}
.xc_c00489{left:242.506485px;}
.x69_c00489{left:245.941785px;}
.x27_c00489{left:248.921685px;}
.x64_c00489{left:251.782785px;}
.x14_c00489{left:254.039985px;}
.x4d_c00489{left:262.846035px;}
.x20_c00489{left:264.613185px;}
.x6_c00489{left:266.108085px;}
.x51_c00489{left:274.409235px;}
.x2f_c00489{left:275.819985px;}
.x5f_c00489{left:285.833835px;}
.x15_c00489{left:287.150535px;}
.x6a_c00489{left:290.135385px;}
.x3d_c00489{left:296.699085px;}
.x43_c00489{left:297.921735px;}
.x28_c00489{left:299.287935px;}
.x6b_c00489{left:303.757785px;}
.x30_c00489{left:307.747485px;}
.x54_c00489{left:308.930535px;}
.x6c_c00489{left:310.222485px;}
.x60_c00489{left:319.290885px;}
.x58_c00489{left:321.062985px;}
.x29_c00489{left:331.250085px;}
.xd_c00489{left:341.254035px;}
.x21_c00489{left:342.862785px;}
.x44_c00489{left:353.767635px;}
.x72_c00489{left:361.920285px;}
.x3e_c00489{left:363.355785px;}
.x37_c00489{left:364.954635px;}
.x7_c00489{left:375.285285px;}
.x6d_c00489{left:380.849085px;}
.x59_c00489{left:385.294185px;}
.x22_c00489{left:387.402885px;}
.x16_c00489{left:398.367135px;}
.x6e_c00489{left:403.643835px;}
.x78_c00489{left:406.158435px;}
.x47_c00489{left:408.390885px;}
.x8_c00489{left:420.538185px;}
.x65_c00489{left:430.111485px;}
.x48_c00489{left:441.036135px;}
.x17_c00489{left:442.313235px;}
.x73_c00489{left:450.683685px;}
.x4e_c00489{left:452.624085px;}
.x23_c00489{left:453.920985px;}
.x66_c00489{left:462.098385px;}
.x4f_c00489{left:463.152735px;}
.xe_c00489{left:464.766435px;}
.x61_c00489{left:473.829885px;}
.x3f_c00489{left:475.092135px;}
.x6f_c00489{left:478.987785px;}
.x31_c00489{left:486.150435px;}
.x18_c00489{left:487.194885px;}
.x70_c00489{left:493.461585px;}
.x5a_c00489{left:495.208935px;}
.xf_c00489{left:497.500785px;}
.x12_c00489{left:499.812435px;}
.x9_c00489{left:508.222485px;}
.x46_c00489{left:513.306135px;}
.x38_c00489{left:518.379885px;}
.x19_c00489{left:519.914385px;}
.x7d_c00489{left:528.047235px;}
.x10_c00489{left:529.794585px;}
.x32_c00489{left:531.329085px;}
.x40_c00489{left:540.521235px;}
.x74_c00489{left:551.643885px;}
.x1a_c00489{left:552.752685px;}
.x79_c00489{left:561.345885px;}
.x5b_c00489{left:562.578435px;}
.x33_c00489{left:564.172335px;}
.x2a_c00489{left:574.324785px;}
.x24_c00489{left:575.572185px;}
.x52_c00489{left:585.546435px;}
.xa_c00489{left:596.990835px;}
.x7a_c00489{left:605.697885px;}
.x34_c00489{left:607.128435px;}
.x11_c00489{left:608.360985px;}
.x49_c00489{left:619.434135px;}
.x39_c00489{left:630.007335px;}
.x50_c00489{left:639.565785px;}
.x41_c00489{left:640.828035px;}
.xb_c00489{left:642.154635px;}
.x1b_c00489{left:650.663685px;}
.x2b_c00489{left:651.841785px;}
.x55_c00489{left:661.603185px;}
.x42_c00489{left:673.042635px;}
.x1c_c00489{left:674.557335px;}
.x7b_c00489{left:683.566335px;}
.x45_c00489{left:685.679985px;}
.x25_c00489{left:696.302685px;}
.x5c_c00489{left:701.906085px;}
.x4b_c00489{left:705.890835px;}
.x35_c00489{left:707.093685px;}
.x1d_c00489{left:708.400485px;}
.x7e_c00489{left:711.335835px;}
.x7f_c00489{left:713.206935px;}
.x3a_c00489{left:718.488585px;}
.x5d_c00489{left:729.809235px;}
.x75_c00489{left:740.446785px;}
.x2_c00489{left:762.241635px;}
@media print{
.v0_c00489{vertical-align:0.000000pt;}
.ls9_c00489{letter-spacing:-2.500960pt;}
.ls13_c00489{letter-spacing:-2.172262pt;}
.lsa_c00489{letter-spacing:-1.658624pt;}
.lsf_c00489{letter-spacing:-1.182726pt;}
.ls4_c00489{letter-spacing:-0.535920pt;}
.lse_c00489{letter-spacing:-0.125031pt;}
.ls0_c00489{letter-spacing:0.000000pt;}
.ls10_c00489{letter-spacing:0.589600pt;}
.ls6_c00489{letter-spacing:0.593085pt;}
.ls11_c00489{letter-spacing:1.126400pt;}
.ls12_c00489{letter-spacing:1.689609pt;}
.ls5_c00489{letter-spacing:2.229427pt;}
.ls3_c00489{letter-spacing:2.344802pt;}
.ls2_c00489{letter-spacing:2.893968pt;}
.lsd_c00489{letter-spacing:3.044800pt;}
.lsb_c00489{letter-spacing:3.132800pt;}
.lsc_c00489{letter-spacing:3.203209pt;}
.ls1_c00489{letter-spacing:3.572800pt;}
.ls7_c00489{letter-spacing:3.608000pt;}
.ls14_c00489{letter-spacing:26.611376pt;}
.ls8_c00489{letter-spacing:53.222576pt;}
.ws0_c00489{word-spacing:0.000000pt;}
._1_c00489{margin-left:-5.541844pt;}
._5_c00489{margin-left:-4.551436pt;}
._0_c00489{width:1.928960pt;}
._2_c00489{width:37.118312pt;}
._3_c00489{width:57.499068pt;}
._4_c00489{width:203.821205pt;}
.fsf_c00489{font-size:8.096000pt;}
.fsd_c00489{font-size:11.792000pt;}
.fs2_c00489{font-size:19.712000pt;}
.fs12_c00489{font-size:22.352000pt;}
.fse_c00489{font-size:22.528000pt;}
.fs13_c00489{font-size:26.611376pt;}
.fs6_c00489{font-size:29.920000pt;}
.fsc_c00489{font-size:33.792176pt;}
.fs0_c00489{font-size:41.184000pt;}
.fs7_c00489{font-size:53.222576pt;}
.fs3_c00489{font-size:58.960000pt;}
.fs11_c00489{font-size:59.136000pt;}
.fs4_c00489{font-size:59.664176pt;}
.fsb_c00489{font-size:60.896000pt;}
.fs9_c00489{font-size:62.656000pt;}
.fsa_c00489{font-size:64.064176pt;}
.fs10_c00489{font-size:66.528000pt;}
.fs8_c00489{font-size:66.880000pt;}
.fs1_c00489{font-size:71.456000pt;}
.fs5_c00489{font-size:72.160000pt;}
.y0_c00489{bottom:0.000000pt;}
.y20_c00489{bottom:35.086520pt;}
.y1f_c00489{bottom:44.269320pt;}
.y1e_c00489{bottom:55.678520pt;}
.y1_c00489{bottom:68.000000pt;}
.y1d_c00489{bottom:112.068920pt;}
.y1c_c00489{bottom:140.580920pt;}
.y1b_c00489{bottom:169.088520pt;}
.y1a_c00489{bottom:222.948920pt;}
.y19_c00489{bottom:225.795720pt;}
.y18_c00489{bottom:254.307720pt;}
.y17_c00489{bottom:282.824120pt;}
.y16_c00489{bottom:311.014920pt;}
.y15_c00489{bottom:339.210120pt;}
.y14_c00489{bottom:367.409720pt;}
.y13_c00489{bottom:394.966920pt;}
.y12_c00489{bottom:451.044920pt;}
.y11_c00489{bottom:479.235720pt;}
.y10_c00489{bottom:508.068920pt;}
.yf_c00489{bottom:536.259720pt;}
.ye_c00489{bottom:565.088520pt;}
.yd_c00489{bottom:585.684920pt;}
.yc_c00489{bottom:593.283720pt;}
.yb_c00489{bottom:621.795720pt;}
.ya_c00489{bottom:649.990920pt;}
.y9_c00489{bottom:678.507320pt;}
.y8_c00489{bottom:706.068920pt;}
.y7_c00489{bottom:734.580920pt;}
.y6_c00489{bottom:762.138120pt;}
.y5_c00489{bottom:783.363720pt;}
.y4_c00489{bottom:790.337720pt;}
.y3_c00489{bottom:818.528520pt;}
.y2_c00489{bottom:980.096520pt;}
.h11_c00489{height:8.443875pt;}
.hf_c00489{height:12.298688pt;}
.h15_c00489{height:17.723176pt;}
.h4_c00489{height:20.559000pt;}
.h10_c00489{height:22.110000pt;}
.h14_c00489{height:23.312438pt;}
.h8_c00489{height:29.364844pt;}
.he_c00489{height:33.165173pt;}
.hd_c00489{height:34.056177pt;}
.h9_c00489{height:35.446236pt;}
.h2_c00489{height:42.953625pt;}
.hc_c00489{height:59.766094pt;}
.h5_c00489{height:61.493438pt;}
.h13_c00489{height:61.677000pt;}
.h6_c00489{height:62.227871pt;}
.h12_c00489{height:65.293594pt;}
.hb_c00489{height:66.816934pt;}
.ha_c00489{height:69.753750pt;}
.h3_c00489{height:70.130156pt;}
.h7_c00489{height:70.821094pt;}
.h1_c00489{height:986.666667pt;}
.h0_c00489{height:1122.666667pt;}
.w1_c00489{width:678.666667pt;}
.w0_c00489{width:793.333333pt;}
.x0_c00489{left:0.000000pt;}
.x1_c00489{left:57.333333pt;}
.x56_c00489{left:75.276120pt;}
.x2c_c00489{left:76.824920pt;}
.x3_c00489{left:77.920520pt;}
.x76_c00489{left:105.776920pt;}
.x4a_c00489{left:107.070520pt;}
.x2d_c00489{left:116.077320pt;}
.x4_c00489{left:117.199320pt;}
.x71_c00489{left:124.591320pt;}
.x1e_c00489{left:126.399720pt;}
.x53_c00489{left:134.610120pt;}
.x62_c00489{left:135.582520pt;}
.x2e_c00489{left:137.412920pt;}
.x7c_c00489{left:145.434120pt;}
.x4c_c00489{left:155.769720pt;}
.x26_c00489{left:157.124920pt;}
.x3b_c00489{left:164.574120pt;}
.x5_c00489{left:166.540920pt;}
.x67_c00489{left:173.514920pt;}
.x63_c00489{left:174.900920pt;}
.x13_c00489{left:176.295720pt;}
.x68_c00489{left:184.598520pt;}
.x1f_c00489{left:185.865720pt;}
.x57_c00489{left:193.402920pt;}
.x36_c00489{left:195.686520pt;}
.x77_c00489{left:204.314920pt;}
.x3c_c00489{left:205.304920pt;}
.x5e_c00489{left:214.175320pt;}
.xc_c00489{left:215.561320pt;}
.x69_c00489{left:218.614920pt;}
.x27_c00489{left:221.263720pt;}
.x64_c00489{left:223.806920pt;}
.x14_c00489{left:225.813320pt;}
.x4d_c00489{left:233.640920pt;}
.x20_c00489{left:235.211720pt;}
.x6_c00489{left:236.540520pt;}
.x51_c00489{left:243.919320pt;}
.x2f_c00489{left:245.173320pt;}
.x5f_c00489{left:254.074520pt;}
.x15_c00489{left:255.244920pt;}
.x6a_c00489{left:257.898120pt;}
.x3d_c00489{left:263.732520pt;}
.x43_c00489{left:264.819320pt;}
.x28_c00489{left:266.033720pt;}
.x6b_c00489{left:270.006920pt;}
.x30_c00489{left:273.553320pt;}
.x54_c00489{left:274.604920pt;}
.x6c_c00489{left:275.753320pt;}
.x60_c00489{left:283.814120pt;}
.x58_c00489{left:285.389320pt;}
.x29_c00489{left:294.444520pt;}
.xd_c00489{left:303.336920pt;}
.x21_c00489{left:304.766920pt;}
.x44_c00489{left:314.460120pt;}
.x72_c00489{left:321.706920pt;}
.x3e_c00489{left:322.982920pt;}
.x37_c00489{left:324.404120pt;}
.x7_c00489{left:333.586920pt;}
.x6d_c00489{left:338.532520pt;}
.x59_c00489{left:342.483720pt;}
.x22_c00489{left:344.358120pt;}
.x16_c00489{left:354.104120pt;}
.x6e_c00489{left:358.794520pt;}
.x78_c00489{left:361.029720pt;}
.x47_c00489{left:363.014120pt;}
.x8_c00489{left:373.811720pt;}
.x65_c00489{left:382.321320pt;}
.x48_c00489{left:392.032120pt;}
.x17_c00489{left:393.167320pt;}
.x73_c00489{left:400.607720pt;}
.x4e_c00489{left:402.332520pt;}
.x23_c00489{left:403.485320pt;}
.x66_c00489{left:410.754120pt;}
.x4f_c00489{left:411.691320pt;}
.xe_c00489{left:413.125720pt;}
.x61_c00489{left:421.182120pt;}
.x3f_c00489{left:422.304120pt;}
.x6f_c00489{left:425.766920pt;}
.x31_c00489{left:432.133720pt;}
.x18_c00489{left:433.062120pt;}
.x70_c00489{left:438.632520pt;}
.x5a_c00489{left:440.185720pt;}
.xf_c00489{left:442.222920pt;}
.x12_c00489{left:444.277720pt;}
.x9_c00489{left:451.753320pt;}
.x46_c00489{left:456.272120pt;}
.x38_c00489{left:460.782120pt;}
.x19_c00489{left:462.146120pt;}
.x7d_c00489{left:469.375320pt;}
.x10_c00489{left:470.928520pt;}
.x32_c00489{left:472.292520pt;}
.x40_c00489{left:480.463320pt;}
.x74_c00489{left:490.350120pt;}
.x1a_c00489{left:491.335720pt;}
.x79_c00489{left:498.974120pt;}
.x5b_c00489{left:500.069720pt;}
.x33_c00489{left:501.486520pt;}
.x2a_c00489{left:510.510920pt;}
.x24_c00489{left:511.619720pt;}
.x52_c00489{left:520.485720pt;}
.xa_c00489{left:530.658520pt;}
.x7a_c00489{left:538.398120pt;}
.x34_c00489{left:539.669720pt;}
.x11_c00489{left:540.765320pt;}
.x49_c00489{left:550.608120pt;}
.x39_c00489{left:560.006520pt;}
.x50_c00489{left:568.502920pt;}
.x41_c00489{left:569.624920pt;}
.xb_c00489{left:570.804120pt;}
.x1b_c00489{left:578.367720pt;}
.x2b_c00489{left:579.414920pt;}
.x55_c00489{left:588.091720pt;}
.x42_c00489{left:598.260120pt;}
.x1c_c00489{left:599.606520pt;}
.x7b_c00489{left:607.614520pt;}
.x45_c00489{left:609.493320pt;}
.x25_c00489{left:618.935720pt;}
.x5c_c00489{left:623.916520pt;}
.x4b_c00489{left:627.458520pt;}
.x35_c00489{left:628.527720pt;}
.x1d_c00489{left:629.689320pt;}
.x7e_c00489{left:632.298520pt;}
.x7f_c00489{left:633.961720pt;}
.x3a_c00489{left:638.656520pt;}
.x5d_c00489{left:648.719320pt;}
.x75_c00489{left:658.174920pt;}
.x2_c00489{left:677.548120pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f09c6f77a48f9d5731a23ac8.woff2')format("woff");}.ff1_c00490{font-family:ff1_c00490;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00490;src:url('chunks/assets/font_ad488a2a52da1a7cee6cd21d.woff2')format("woff");}.ff2_c00490{font-family:ff2_c00490;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00490;src:url('chunks/assets/font_390118b168d08e4ac3735e02.woff2')format("woff");}.ff3_c00490{font-family:ff3_c00490;line-height:0.666000;font-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_c00490{transform:matrix(0.133334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133334,0.000000,0.000000,0.250000,0,0);}
.m5a_c00490{transform:matrix(0.181402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181402,0.000000,0.000000,0.250000,0,0);}
.m5d_c00490{transform:matrix(0.183689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183689,0.000000,0.000000,0.250000,0,0);}
.mb0_c00490{transform:matrix(0.191596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191596,0.000000,0.000000,0.250000,0,0);}
.m1_c00490{transform:matrix(0.220208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220208,0.000000,0.000000,0.250000,0,0);}
.m8e_c00490{transform:matrix(0.221256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221256,0.000000,0.000000,0.250000,0,0);}
.m5f_c00490{transform:matrix(0.245195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245195,0.000000,0.000000,0.250000,0,0);}
.m0_c00490{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00490{transform:matrix(0.250027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250027,0.000000,0.000000,0.250000,0,0);}
.m7b_c00490{transform:matrix(0.250897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250897,0.000000,0.000000,0.250000,0,0);}
.m69_c00490{transform:matrix(0.253192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253192,0.000000,0.000000,0.250000,0,0);}
.m6b_c00490{transform:matrix(0.254191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254191,0.000000,0.000000,0.250000,0,0);}
.m90_c00490{transform:matrix(0.254313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254313,0.000000,0.000000,0.250000,0,0);}
.m17_c00490{transform:matrix(0.254771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254771,0.000000,0.000000,0.250000,0,0);}
.m64_c00490{transform:matrix(0.255459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255459,0.000000,0.000000,0.250000,0,0);}
.m5_c00490{transform:matrix(0.255625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255625,0.000000,0.000000,0.250000,0,0);}
.m89_c00490{transform:matrix(0.257314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257314,0.000000,0.000000,0.250000,0,0);}
.m4f_c00490{transform:matrix(0.257330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257330,0.000000,0.000000,0.250000,0,0);}
.m63_c00490{transform:matrix(0.257487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257487,0.000000,0.000000,0.250000,0,0);}
.m91_c00490{transform:matrix(0.257706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257706,0.000000,0.000000,0.250000,0,0);}
.m6f_c00490{transform:matrix(0.258282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258282,0.000000,0.000000,0.250000,0,0);}
.m7c_c00490{transform:matrix(0.259822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259822,0.000000,0.000000,0.250000,0,0);}
.m23_c00490{transform:matrix(0.260021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260021,0.000000,0.000000,0.250000,0,0);}
.m24_c00490{transform:matrix(0.260635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260635,0.000000,0.000000,0.250000,0,0);}
.m55_c00490{transform:matrix(0.261599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261599,0.000000,0.000000,0.250000,0,0);}
.maf_c00490{transform:matrix(0.262186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262186,0.000000,0.000000,0.250000,0,0);}
.m44_c00490{transform:matrix(0.262894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262894,0.000000,0.000000,0.250000,0,0);}
.ma9_c00490{transform:matrix(0.263564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263564,0.000000,0.000000,0.250000,0,0);}
.m5c_c00490{transform:matrix(0.263868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263868,0.000000,0.000000,0.250000,0,0);}
.m95_c00490{transform:matrix(0.263878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263878,0.000000,0.000000,0.250000,0,0);}
.maa_c00490{transform:matrix(0.264131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264131,0.000000,0.000000,0.250000,0,0);}
.m53_c00490{transform:matrix(0.264222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264222,0.000000,0.000000,0.250000,0,0);}
.mc_c00490{transform:matrix(0.264583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264583,0.000000,0.000000,0.250000,0,0);}
.m9a_c00490{transform:matrix(0.265642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265642,0.000000,0.000000,0.250000,0,0);}
.m46_c00490{transform:matrix(0.265960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265960,0.000000,0.000000,0.250000,0,0);}
.m47_c00490{transform:matrix(0.266492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266492,0.000000,0.000000,0.250000,0,0);}
.ma5_c00490{transform:matrix(0.267297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267297,0.000000,0.000000,0.250000,0,0);}
.m2f_c00490{transform:matrix(0.267506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267506,0.000000,0.000000,0.250000,0,0);}
.m72_c00490{transform:matrix(0.268319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268319,0.000000,0.000000,0.250000,0,0);}
.m97_c00490{transform:matrix(0.268394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268394,0.000000,0.000000,0.250000,0,0);}
.m80_c00490{transform:matrix(0.268523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268523,0.000000,0.000000,0.250000,0,0);}
.m40_c00490{transform:matrix(0.269145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269145,0.000000,0.000000,0.250000,0,0);}
.ma2_c00490{transform:matrix(0.269459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269459,0.000000,0.000000,0.250000,0,0);}
.m74_c00490{transform:matrix(0.269481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269481,0.000000,0.000000,0.250000,0,0);}
.m5b_c00490{transform:matrix(0.269958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269958,0.000000,0.000000,0.250000,0,0);}
.mb1_c00490{transform:matrix(0.270450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270450,0.000000,0.000000,0.250000,0,0);}
.m8f_c00490{transform:matrix(0.270731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270731,0.000000,0.000000,0.250000,0,0);}
.m38_c00490{transform:matrix(0.271611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271611,0.000000,0.000000,0.250000,0,0);}
.m8b_c00490{transform:matrix(0.272118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272118,0.000000,0.000000,0.250000,0,0);}
.m7_c00490{transform:matrix(0.272456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272456,0.000000,0.000000,0.250000,0,0);}
.m94_c00490{transform:matrix(0.273301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273301,0.000000,0.000000,0.250000,0,0);}
.m59_c00490{transform:matrix(0.273479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273479,0.000000,0.000000,0.250000,0,0);}
.m16_c00490{transform:matrix(0.273706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273706,0.000000,0.000000,0.250000,0,0);}
.m6a_c00490{transform:matrix(0.273758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273758,0.000000,0.000000,0.250000,0,0);}
.m6e_c00490{transform:matrix(0.273906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273906,0.000000,0.000000,0.250000,0,0);}
.m6d_c00490{transform:matrix(0.274304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274304,0.000000,0.000000,0.250000,0,0);}
.m54_c00490{transform:matrix(0.274744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274744,0.000000,0.000000,0.250000,0,0);}
.m9e_c00490{transform:matrix(0.275094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275094,0.000000,0.000000,0.250000,0,0);}
.m28_c00490{transform:matrix(0.275099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275099,0.000000,0.000000,0.250000,0,0);}
.m9b_c00490{transform:matrix(0.276451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276451,0.000000,0.000000,0.250000,0,0);}
.m87_c00490{transform:matrix(0.276661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276661,0.000000,0.000000,0.250000,0,0);}
.ma0_c00490{transform:matrix(0.277188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277188,0.000000,0.000000,0.250000,0,0);}
.m6_c00490{transform:matrix(0.277684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277684,0.000000,0.000000,0.250000,0,0);}
.m37_c00490{transform:matrix(0.277889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277889,0.000000,0.000000,0.250000,0,0);}
.m31_c00490{transform:matrix(0.279488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279488,0.000000,0.000000,0.250000,0,0);}
.m3a_c00490{transform:matrix(0.279871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279871,0.000000,0.000000,0.250000,0,0);}
.m18_c00490{transform:matrix(0.280343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280343,0.000000,0.000000,0.250000,0,0);}
.m85_c00490{transform:matrix(0.280357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280357,0.000000,0.000000,0.250000,0,0);}
.m62_c00490{transform:matrix(0.280550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280550,0.000000,0.000000,0.250000,0,0);}
.m1c_c00490{transform:matrix(0.280821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280821,0.000000,0.000000,0.250000,0,0);}
.m9d_c00490{transform:matrix(0.281971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281971,0.000000,0.000000,0.250000,0,0);}
.m21_c00490{transform:matrix(0.282066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282066,0.000000,0.000000,0.250000,0,0);}
.m3c_c00490{transform:matrix(0.282173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282173,0.000000,0.000000,0.250000,0,0);}
.m20_c00490{transform:matrix(0.282295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282295,0.000000,0.000000,0.250000,0,0);}
.m4a_c00490{transform:matrix(0.282923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282923,0.000000,0.000000,0.250000,0,0);}
.m61_c00490{transform:matrix(0.283466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283466,0.000000,0.000000,0.250000,0,0);}
.mb_c00490{transform:matrix(0.283502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283502,0.000000,0.000000,0.250000,0,0);}
.mae_c00490{transform:matrix(0.284135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284135,0.000000,0.000000,0.250000,0,0);}
.m77_c00490{transform:matrix(0.285205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285205,0.000000,0.000000,0.250000,0,0);}
.m3b_c00490{transform:matrix(0.286325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286325,0.000000,0.000000,0.250000,0,0);}
.m50_c00490{transform:matrix(0.286743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286743,0.000000,0.000000,0.250000,0,0);}
.m73_c00490{transform:matrix(0.286837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286837,0.000000,0.000000,0.250000,0,0);}
.m84_c00490{transform:matrix(0.287328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287328,0.000000,0.000000,0.250000,0,0);}
.m33_c00490{transform:matrix(0.288127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288127,0.000000,0.000000,0.250000,0,0);}
.m15_c00490{transform:matrix(0.288163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288163,0.000000,0.000000,0.250000,0,0);}
.m78_c00490{transform:matrix(0.289051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289051,0.000000,0.000000,0.250000,0,0);}
.m2b_c00490{transform:matrix(0.289795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289795,0.000000,0.000000,0.250000,0,0);}
.m52_c00490{transform:matrix(0.289837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289837,0.000000,0.000000,0.250000,0,0);}
.m22_c00490{transform:matrix(0.290494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290494,0.000000,0.000000,0.250000,0,0);}
.m35_c00490{transform:matrix(0.290681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290681,0.000000,0.000000,0.250000,0,0);}
.m4b_c00490{transform:matrix(0.291519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291519,0.000000,0.000000,0.250000,0,0);}
.md_c00490{transform:matrix(0.292153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292153,0.000000,0.000000,0.250000,0,0);}
.m51_c00490{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m9_c00490{transform:matrix(0.292747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292747,0.000000,0.000000,0.250000,0,0);}
.mad_c00490{transform:matrix(0.292962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292962,0.000000,0.000000,0.250000,0,0);}
.m65_c00490{transform:matrix(0.293112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293112,0.000000,0.000000,0.250000,0,0);}
.m34_c00490{transform:matrix(0.293649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293649,0.000000,0.000000,0.250000,0,0);}
.m86_c00490{transform:matrix(0.294716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294716,0.000000,0.000000,0.250000,0,0);}
.m3e_c00490{transform:matrix(0.294969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294969,0.000000,0.000000,0.250000,0,0);}
.m8a_c00490{transform:matrix(0.295652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295652,0.000000,0.000000,0.250000,0,0);}
.m49_c00490{transform:matrix(0.296072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296072,0.000000,0.000000,0.250000,0,0);}
.m30_c00490{transform:matrix(0.296156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296156,0.000000,0.000000,0.250000,0,0);}
.m2c_c00490{transform:matrix(0.296189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296189,0.000000,0.000000,0.250000,0,0);}
.ma1_c00490{transform:matrix(0.296238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296238,0.000000,0.000000,0.250000,0,0);}
.ma7_c00490{transform:matrix(0.297189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297189,0.000000,0.000000,0.250000,0,0);}
.m71_c00490{transform:matrix(0.297935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297935,0.000000,0.000000,0.250000,0,0);}
.mf_c00490{transform:matrix(0.298175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298175,0.000000,0.000000,0.250000,0,0);}
.m67_c00490{transform:matrix(0.298314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298314,0.000000,0.000000,0.250000,0,0);}
.ma4_c00490{transform:matrix(0.298339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298339,0.000000,0.000000,0.250000,0,0);}
.m29_c00490{transform:matrix(0.298824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298824,0.000000,0.000000,0.250000,0,0);}
.m7d_c00490{transform:matrix(0.299517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299517,0.000000,0.000000,0.250000,0,0);}
.m1e_c00490{transform:matrix(0.300079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300079,0.000000,0.000000,0.250000,0,0);}
.m9f_c00490{transform:matrix(0.300177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300177,0.000000,0.000000,0.250000,0,0);}
.m2a_c00490{transform:matrix(0.300239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300239,0.000000,0.000000,0.250000,0,0);}
.m19_c00490{transform:matrix(0.300260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300260,0.000000,0.000000,0.250000,0,0);}
.mab_c00490{transform:matrix(0.300352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300352,0.000000,0.000000,0.250000,0,0);}
.m3d_c00490{transform:matrix(0.302064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302064,0.000000,0.000000,0.250000,0,0);}
.m3_c00490{transform:matrix(0.302239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302239,0.000000,0.000000,0.250000,0,0);}
.m1b_c00490{transform:matrix(0.302353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302353,0.000000,0.000000,0.250000,0,0);}
.m5e_c00490{transform:matrix(0.303643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303643,0.000000,0.000000,0.250000,0,0);}
.ma6_c00490{transform:matrix(0.303880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303880,0.000000,0.000000,0.250000,0,0);}
.m76_c00490{transform:matrix(0.304716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304716,0.000000,0.000000,0.250000,0,0);}
.m99_c00490{transform:matrix(0.305360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305360,0.000000,0.000000,0.250000,0,0);}
.m93_c00490{transform:matrix(0.305676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305676,0.000000,0.000000,0.250000,0,0);}
.mac_c00490{transform:matrix(0.306635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306635,0.000000,0.000000,0.250000,0,0);}
.m42_c00490{transform:matrix(0.306830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306830,0.000000,0.000000,0.250000,0,0);}
.m36_c00490{transform:matrix(0.307761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307761,0.000000,0.000000,0.250000,0,0);}
.m4c_c00490{transform:matrix(0.308071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308071,0.000000,0.000000,0.250000,0,0);}
.m56_c00490{transform:matrix(0.308542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308542,0.000000,0.000000,0.250000,0,0);}
.me_c00490{transform:matrix(0.311131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311131,0.000000,0.000000,0.250000,0,0);}
.m96_c00490{transform:matrix(0.311569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311569,0.000000,0.000000,0.250000,0,0);}
.m11_c00490{transform:matrix(0.312194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312194,0.000000,0.000000,0.250000,0,0);}
.m12_c00490{transform:matrix(0.313910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313910,0.000000,0.000000,0.250000,0,0);}
.m6c_c00490{transform:matrix(0.314003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314003,0.000000,0.000000,0.250000,0,0);}
.m10_c00490{transform:matrix(0.314029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314029,0.000000,0.000000,0.250000,0,0);}
.m1d_c00490{transform:matrix(0.314267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314267,0.000000,0.000000,0.250000,0,0);}
.m2e_c00490{transform:matrix(0.315241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315241,0.000000,0.000000,0.250000,0,0);}
.m88_c00490{transform:matrix(0.317012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317012,0.000000,0.000000,0.250000,0,0);}
.m57_c00490{transform:matrix(0.317252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317252,0.000000,0.000000,0.250000,0,0);}
.m27_c00490{transform:matrix(0.317391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317391,0.000000,0.000000,0.250000,0,0);}
.m75_c00490{transform:matrix(0.317479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317479,0.000000,0.000000,0.250000,0,0);}
.m13_c00490{transform:matrix(0.319502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319502,0.000000,0.000000,0.250000,0,0);}
.m82_c00490{transform:matrix(0.319935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319935,0.000000,0.000000,0.250000,0,0);}
.ma8_c00490{transform:matrix(0.320273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320273,0.000000,0.000000,0.250000,0,0);}
.m14_c00490{transform:matrix(0.322012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322012,0.000000,0.000000,0.250000,0,0);}
.m66_c00490{transform:matrix(0.322034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322034,0.000000,0.000000,0.250000,0,0);}
.m1f_c00490{transform:matrix(0.322248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322248,0.000000,0.000000,0.250000,0,0);}
.m4e_c00490{transform:matrix(0.322799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322799,0.000000,0.000000,0.250000,0,0);}
.m83_c00490{transform:matrix(0.323209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323209,0.000000,0.000000,0.250000,0,0);}
.m60_c00490{transform:matrix(0.324342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324342,0.000000,0.000000,0.250000,0,0);}
.m4_c00490{transform:matrix(0.325467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325467,0.000000,0.000000,0.250000,0,0);}
.m2d_c00490{transform:matrix(0.326001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326001,0.000000,0.000000,0.250000,0,0);}
.m58_c00490{transform:matrix(0.326255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326255,0.000000,0.000000,0.250000,0,0);}
.m81_c00490{transform:matrix(0.326399,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326399,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326399,0.000000,0.000000,0.250000,0,0);}
.m8_c00490{transform:matrix(0.326587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326587,0.000000,0.000000,0.250000,0,0);}
.m3f_c00490{transform:matrix(0.326820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326820,0.000000,0.000000,0.250000,0,0);}
.m26_c00490{transform:matrix(0.328028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328028,0.000000,0.000000,0.250000,0,0);}
.m7e_c00490{transform:matrix(0.328031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328031,0.000000,0.000000,0.250000,0,0);}
.m4d_c00490{transform:matrix(0.328204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328204,0.000000,0.000000,0.250000,0,0);}
.m39_c00490{transform:matrix(0.329069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329069,0.000000,0.000000,0.250000,0,0);}
.m7a_c00490{transform:matrix(0.329332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329332,0.000000,0.000000,0.250000,0,0);}
.m45_c00490{transform:matrix(0.330176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330176,0.000000,0.000000,0.250000,0,0);}
.ma3_c00490{transform:matrix(0.330471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330471,0.000000,0.000000,0.250000,0,0);}
.m8c_c00490{transform:matrix(0.331335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331335,0.000000,0.000000,0.250000,0,0);}
.m48_c00490{transform:matrix(0.335052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335052,0.000000,0.000000,0.250000,0,0);}
.m43_c00490{transform:matrix(0.337151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337151,0.000000,0.000000,0.250000,0,0);}
.m2_c00490{transform:matrix(0.337924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337924,0.000000,0.000000,0.250000,0,0);}
.m25_c00490{transform:matrix(0.341035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341035,0.000000,0.000000,0.250000,0,0);}
.m98_c00490{transform:matrix(0.342181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342181,0.000000,0.000000,0.250000,0,0);}
.m8d_c00490{transform:matrix(0.343195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343195,0.000000,0.000000,0.250000,0,0);}
.ma_c00490{transform:matrix(0.343926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343926,0.000000,0.000000,0.250000,0,0);}
.m92_c00490{transform:matrix(0.344947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344947,0.000000,0.000000,0.250000,0,0);}
.m7f_c00490{transform:matrix(0.345869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345869,0.000000,0.000000,0.250000,0,0);}
.m32_c00490{transform:matrix(0.347018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347018,0.000000,0.000000,0.250000,0,0);}
.m68_c00490{transform:matrix(0.363911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363911,0.000000,0.000000,0.250000,0,0);}
.m70_c00490{transform:matrix(0.368736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368736,0.000000,0.000000,0.250000,0,0);}
.m1a_c00490{transform:matrix(0.374684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374684,0.000000,0.000000,0.250000,0,0);}
.m41_c00490{transform:matrix(0.380631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380631,0.000000,0.000000,0.250000,0,0);}
.m9c_c00490{transform:matrix(0.386579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386579,0.000000,0.000000,0.250000,0,0);}
.v0_c00490{vertical-align:0.000000px;}
.ls2_c00490{letter-spacing:-3.160080px;}
.lsd_c00490{letter-spacing:-2.778930px;}
.ls4_c00490{letter-spacing:-1.699117px;}
.ls1_c00490{letter-spacing:0.000000px;}
.ls5_c00490{letter-spacing:0.293773px;}
.ls13_c00490{letter-spacing:1.151271px;}
.lsb_c00490{letter-spacing:1.881733px;}
.lse_c00490{letter-spacing:2.469278px;}
.ls9_c00490{letter-spacing:2.588375px;}
.ls6_c00490{letter-spacing:2.747171px;}
.ls7_c00490{letter-spacing:3.302957px;}
.ls11_c00490{letter-spacing:3.390295px;}
.lsf_c00490{letter-spacing:3.723766px;}
.ls8_c00490{letter-spacing:3.882562px;}
.ls3_c00490{letter-spacing:3.969900px;}
.ls12_c00490{letter-spacing:4.296610px;}
.lsa_c00490{letter-spacing:4.356000px;}
.ls0_c00490{letter-spacing:8.098596px;}
.ls14_c00490{letter-spacing:55.598598px;}
.ls10_c00490{letter-spacing:57.024198px;}
.lsc_c00490{letter-spacing:58.449798px;}
.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:-19.849500px;}
.ws1_c00490{word-spacing:0.000000px;}
._2_c00490{margin-left:-18.419940px;}
._3_c00490{width:3.176316px;}
._1_c00490{width:27.233514px;}
._0_c00490{width:31.839588px;}
.fc0_c00490{color:transparent;}
.fs0_c00490{font-size:27.720000px;}
.fs2_c00490{font-size:33.660000px;}
.fsb_c00490{font-size:55.440000px;}
.fsa_c00490{font-size:55.598598px;}
.fs8_c00490{font-size:57.024198px;}
.fs7_c00490{font-size:58.449798px;}
.fs4_c00490{font-size:66.330000px;}
.fs5_c00490{font-size:76.032198px;}
.fs3_c00490{font-size:79.398000px;}
.fs9_c00490{font-size:85.932198px;}
.fs6_c00490{font-size:87.120000px;}
.fs1_c00490{font-size:90.288000px;}
.y0_c00490{bottom:0.000000px;}
.y1_c00490{bottom:76.500000px;}
.y1f_c00490{bottom:104.337135px;}
.y1e_c00490{bottom:138.190185px;}
.y1d_c00490{bottom:169.558335px;}
.y1c_c00490{bottom:201.985785px;}
.y1b_c00490{bottom:265.786335px;}
.y1a_c00490{bottom:286.452585px;}
.y19_c00490{bottom:297.500985px;}
.y18_c00490{bottom:329.938335px;}
.y17_c00490{bottom:362.009385px;}
.y16_c00490{bottom:393.372585px;}
.y15_c00490{bottom:425.809935px;}
.y14_c00490{bottom:456.455385px;}
.y13_c00490{bottom:488.179935px;}
.y12_c00490{bottom:519.543135px;}
.y11_c00490{bottom:551.257785px;}
.y10_c00490{bottom:582.977385px;}
.yf_c00490{bottom:614.701935px;}
.ye_c00490{bottom:646.416585px;}
.yd_c00490{bottom:671.720985px;}
.yc_c00490{bottom:678.853935px;}
.yb_c00490{bottom:741.575385px;}
.ya_c00490{bottom:773.299935px;}
.y9_c00490{bottom:805.019535px;}
.y8_c00490{bottom:836.377785px;}
.y7_c00490{bottom:867.033135px;}
.y6_c00490{bottom:898.747785px;}
.y5_c00490{bottom:930.467385px;}
.y4_c00490{bottom:1013.157135px;}
.y2_c00490{bottom:1039.887135px;}
.y3_c00490{bottom:1051.286985px;}
.h2_c00490{height:28.911094px;}
.h4_c00490{height:33.035449px;}
.hc_c00490{height:37.028666px;}
.ha_c00490{height:37.978116px;}
.h9_c00490{height:38.927565px;}
.hd_c00490{height:57.822188px;}
.h6_c00490{height:69.180117px;}
.h5_c00490{height:77.924795px;}
.h7_c00490{height:79.299207px;}
.hb_c00490{height:84.337753px;}
.h8_c00490{height:85.503516px;}
.h3_c00490{height:88.612734px;}
.h1_c00490{height:1110.000000px;}
.h0_c00490{height:1263.000000px;}
.w1_c00490{width:763.500000px;}
.w0_c00490{width:892.500000px;}
.x0_c00490{left:0.000000px;}
.x2_c00490{left:47.159685px;}
.x1_c00490{left:64.500000px;}
.x48_c00490{left:75.379635px;}
.x25_c00490{left:76.438935px;}
.x5_c00490{left:78.013035px;}
.x70_c00490{left:86.432985px;}
.x55_c00490{left:108.524835px;}
.x3d_c00490{left:110.019735px;}
.x49_c00490{left:119.583135px;}
.x4e_c00490{left:121.107735px;}
.x69_c00490{left:130.913685px;}
.x37_c00490{left:132.344235px;}
.x1a_c00490{left:133.799535px;}
.x26_c00490{left:143.105535px;}
.x4f_c00490{left:152.713485px;}
.xf_c00490{left:155.049885px;}
.x60_c00490{left:164.133135px;}
.x44_c00490{left:165.261735px;}
.x27_c00490{left:166.415085px;}
.x71_c00490{left:175.344885px;}
.x6_c00490{left:176.582385px;}
.x4a_c00490{left:186.229935px;}
.x10_c00490{left:187.289235px;}
.x1b_c00490{left:188.784135px;}
.x58_c00490{left:196.595235px;}
.x63_c00490{left:198.530685px;}
.x61_c00490{left:208.490085px;}
.x30_c00490{left:210.281985px;}
.x64_c00490{left:219.523635px;}
.x38_c00490{left:220.771035px;}
.x1c_c00490{left:222.048135px;}
.x6a_c00490{left:230.953185px;}
.x31_c00490{left:232.022385px;}
.x3e_c00490{left:242.699535px;}
.x11_c00490{left:244.026135px;}
.x5e_c00490{left:252.520335px;}
.x1d_c00490{left:253.574685px;}
.x50_c00490{left:264.405285px;}
.x35_c00490{left:265.514085px;}
.x2e_c00490{left:277.171335px;}
.x45_c00490{left:287.501985px;}
.x51_c00490{left:297.421785px;}
.x7_c00490{left:309.544335px;}
.x4b_c00490{left:319.785885px;}
.x1e_c00490{left:321.082785px;}
.x12_c00490{left:331.641135px;}
.x8_c00490{left:333.200385px;}
.x6b_c00490{left:342.456885px;}
.x59_c00490{left:352.351935px;}
.x13_c00490{left:355.906035px;}
.x32_c00490{left:364.063635px;}
.x4c_c00490{left:365.325885px;}
.x36_c00490{left:375.829785px;}
.x28_c00490{left:377.379135px;}
.x5a_c00490{left:386.685135px;}
.x9_c00490{left:388.145385px;}
.x1f_c00490{left:398.243385px;}
.x14_c00490{left:399.515535px;}
.x65_c00490{left:407.940435px;}
.x3f_c00490{left:409.311585px;}
.x33_c00490{left:410.563935px;}
.x5d_c00490{left:418.988835px;}
.x29_c00490{left:420.058035px;}
.x20_c00490{left:422.211285px;}
.x6c_c00490{left:441.951885px;}
.x34_c00490{left:443.694285px;}
.x5b_c00490{left:454.079385px;}
.xa_c00490{left:455.737635px;}
.x53_c00490{left:464.632785px;}
.x2a_c00490{left:465.706935px;}
.x56_c00490{left:474.587235px;}
.x52_c00490{left:485.962335px;}
.xb_c00490{left:487.818585px;}
.x66_c00490{left:497.193885px;}
.x15_c00490{left:499.277835px;}
.x46_c00490{left:508.059135px;}
.x4d_c00490{left:509.608485px;}
.x68_c00490{left:516.182085px;}
.x40_c00490{left:520.637085px;}
.x3b_c00490{left:530.670735px;}
.x47_c00490{left:542.422035px;}
.x21_c00490{left:543.525885px;}
.x16_c00490{left:552.787335px;}
.x22_c00490{left:564.499035px;}
.x6d_c00490{left:574.141635px;}
.xc_c00490{left:575.225685px;}
.x41_c00490{left:576.265185px;}
.x39_c00490{left:586.036485px;}
.x23_c00490{left:596.797785px;}
.x17_c00490{left:598.347135px;}
.x54_c00490{left:608.717385px;}
.x6e_c00490{left:617.459085px;}
.x5c_c00490{left:618.538185px;}
.xd_c00490{left:619.775685px;}
.x42_c00490{left:630.492435px;}
.x62_c00490{left:639.956835px;}
.x2b_c00490{left:641.897235px;}
.x2f_c00490{left:652.391235px;}
.x18_c00490{left:653.435685px;}
.x3a_c00490{left:665.058285px;}
.x57_c00490{left:673.963335px;}
.x2c_c00490{left:675.042435px;}
.x67_c00490{left:684.100935px;}
.xe_c00490{left:686.372985px;}
.x4_c00490{left:694.000935px;}
.x43_c00490{left:696.718485px;}
.x3c_c00490{left:698.183685px;}
.x3_c00490{left:706.727385px;}
.x19_c00490{left:708.539085px;}
.x5f_c00490{left:714.385035px;}
.x72_c00490{left:716.899635px;}
.x24_c00490{left:718.275735px;}
.x2d_c00490{left:719.854785px;}
.x6f_c00490{left:729.423135px;}
@media print{
.v0_c00490{vertical-align:0.000000pt;}
.ls2_c00490{letter-spacing:-2.808960pt;}
.lsd_c00490{letter-spacing:-2.470160pt;}
.ls4_c00490{letter-spacing:-1.510326pt;}
.ls1_c00490{letter-spacing:0.000000pt;}
.ls5_c00490{letter-spacing:0.261131pt;}
.ls13_c00490{letter-spacing:1.023352pt;}
.lsb_c00490{letter-spacing:1.672651pt;}
.lse_c00490{letter-spacing:2.194914pt;}
.ls9_c00490{letter-spacing:2.300778pt;}
.ls6_c00490{letter-spacing:2.441930pt;}
.ls7_c00490{letter-spacing:2.935962pt;}
.ls11_c00490{letter-spacing:3.013595pt;}
.lsf_c00490{letter-spacing:3.310014pt;}
.ls8_c00490{letter-spacing:3.451166pt;}
.ls3_c00490{letter-spacing:3.528800pt;}
.ls12_c00490{letter-spacing:3.819209pt;}
.lsa_c00490{letter-spacing:3.872000pt;}
.ls0_c00490{letter-spacing:7.198752pt;}
.ls14_c00490{letter-spacing:49.420976pt;}
.ls10_c00490{letter-spacing:50.688176pt;}
.lsc_c00490{letter-spacing:51.955376pt;}
.ws0_c00490{word-spacing:-17.644000pt;}
.ws1_c00490{word-spacing:0.000000pt;}
._2_c00490{margin-left:-16.373280pt;}
._3_c00490{width:2.823392pt;}
._1_c00490{width:24.207568pt;}
._0_c00490{width:28.301856pt;}
.fs0_c00490{font-size:24.640000pt;}
.fs2_c00490{font-size:29.920000pt;}
.fsb_c00490{font-size:49.280000pt;}
.fsa_c00490{font-size:49.420976pt;}
.fs8_c00490{font-size:50.688176pt;}
.fs7_c00490{font-size:51.955376pt;}
.fs4_c00490{font-size:58.960000pt;}
.fs5_c00490{font-size:67.584176pt;}
.fs3_c00490{font-size:70.576000pt;}
.fs9_c00490{font-size:76.384176pt;}
.fs6_c00490{font-size:77.440000pt;}
.fs1_c00490{font-size:80.256000pt;}
.y0_c00490{bottom:0.000000pt;}
.y1_c00490{bottom:68.000000pt;}
.y1f_c00490{bottom:92.744120pt;}
.y1e_c00490{bottom:122.835720pt;}
.y1d_c00490{bottom:150.718520pt;}
.y1c_c00490{bottom:179.542920pt;}
.y1b_c00490{bottom:236.254520pt;}
.y1a_c00490{bottom:254.624520pt;}
.y19_c00490{bottom:264.445320pt;}
.y18_c00490{bottom:293.278520pt;}
.y17_c00490{bottom:321.786120pt;}
.y16_c00490{bottom:349.664520pt;}
.y15_c00490{bottom:378.497720pt;}
.y14_c00490{bottom:405.738120pt;}
.y13_c00490{bottom:433.937720pt;}
.y12_c00490{bottom:461.816120pt;}
.y11_c00490{bottom:490.006920pt;}
.y10_c00490{bottom:518.202120pt;}
.yf_c00490{bottom:546.401720pt;}
.ye_c00490{bottom:574.592520pt;}
.yd_c00490{bottom:597.085320pt;}
.yc_c00490{bottom:603.425720pt;}
.yb_c00490{bottom:659.178120pt;}
.ya_c00490{bottom:687.377720pt;}
.y9_c00490{bottom:715.572920pt;}
.y8_c00490{bottom:743.446920pt;}
.y7_c00490{bottom:770.696120pt;}
.y6_c00490{bottom:798.886920pt;}
.y5_c00490{bottom:827.082120pt;}
.y4_c00490{bottom:900.584120pt;}
.y2_c00490{bottom:924.344120pt;}
.y3_c00490{bottom:934.477320pt;}
.h2_c00490{height:25.698750pt;}
.h4_c00490{height:29.364844pt;}
.hc_c00490{height:32.914370pt;}
.ha_c00490{height:33.758325pt;}
.h9_c00490{height:34.602280pt;}
.hd_c00490{height:51.397500pt;}
.h6_c00490{height:61.493438pt;}
.h5_c00490{height:69.266484pt;}
.h7_c00490{height:70.488184pt;}
.hb_c00490{height:74.966891pt;}
.h8_c00490{height:76.003125pt;}
.h3_c00490{height:78.766875pt;}
.h1_c00490{height:986.666667pt;}
.h0_c00490{height:1122.666667pt;}
.w1_c00490{width:678.666667pt;}
.w0_c00490{width:793.333333pt;}
.x0_c00490{left:0.000000pt;}
.x2_c00490{left:41.919720pt;}
.x1_c00490{left:57.333333pt;}
.x48_c00490{left:67.004120pt;}
.x25_c00490{left:67.945720pt;}
.x5_c00490{left:69.344920pt;}
.x70_c00490{left:76.829320pt;}
.x55_c00490{left:96.466520pt;}
.x3d_c00490{left:97.795320pt;}
.x49_c00490{left:106.296120pt;}
.x4e_c00490{left:107.651320pt;}
.x69_c00490{left:116.367720pt;}
.x37_c00490{left:117.639320pt;}
.x1a_c00490{left:118.932920pt;}
.x26_c00490{left:127.204920pt;}
.x4f_c00490{left:135.745320pt;}
.xf_c00490{left:137.822120pt;}
.x60_c00490{left:145.896120pt;}
.x44_c00490{left:146.899320pt;}
.x27_c00490{left:147.924520pt;}
.x71_c00490{left:155.862120pt;}
.x6_c00490{left:156.962120pt;}
.x4a_c00490{left:165.537720pt;}
.x10_c00490{left:166.479320pt;}
.x1b_c00490{left:167.808120pt;}
.x58_c00490{left:174.751320pt;}
.x63_c00490{left:176.471720pt;}
.x61_c00490{left:185.324520pt;}
.x30_c00490{left:186.917320pt;}
.x64_c00490{left:195.132120pt;}
.x38_c00490{left:196.240920pt;}
.x1c_c00490{left:197.376120pt;}
.x6a_c00490{left:205.291720pt;}
.x31_c00490{left:206.242120pt;}
.x3e_c00490{left:215.732920pt;}
.x11_c00490{left:216.912120pt;}
.x5e_c00490{left:224.462520pt;}
.x1d_c00490{left:225.399720pt;}
.x50_c00490{left:235.026920pt;}
.x35_c00490{left:236.012520pt;}
.x2e_c00490{left:246.374520pt;}
.x45_c00490{left:255.557320pt;}
.x51_c00490{left:264.374920pt;}
.x7_c00490{left:275.150520pt;}
.x4b_c00490{left:284.254120pt;}
.x1e_c00490{left:285.406920pt;}
.x12_c00490{left:294.792120pt;}
.x8_c00490{left:296.178120pt;}
.x6b_c00490{left:304.406120pt;}
.x59_c00490{left:313.201720pt;}
.x13_c00490{left:316.360920pt;}
.x32_c00490{left:323.612120pt;}
.x4c_c00490{left:324.734120pt;}
.x36_c00490{left:334.070920pt;}
.x28_c00490{left:335.448120pt;}
.x5a_c00490{left:343.720120pt;}
.x9_c00490{left:345.018120pt;}
.x1f_c00490{left:353.994120pt;}
.x14_c00490{left:355.124920pt;}
.x65_c00490{left:362.613720pt;}
.x3f_c00490{left:363.832520pt;}
.x33_c00490{left:364.945720pt;}
.x5d_c00490{left:372.434520pt;}
.x29_c00490{left:373.384920pt;}
.x20_c00490{left:375.298920pt;}
.x6c_c00490{left:392.846120pt;}
.x34_c00490{left:394.394920pt;}
.x5b_c00490{left:403.626120pt;}
.xa_c00490{left:405.100120pt;}
.x53_c00490{left:413.006920pt;}
.x2a_c00490{left:413.961720pt;}
.x56_c00490{left:421.855320pt;}
.x52_c00490{left:431.966520pt;}
.xb_c00490{left:433.616520pt;}
.x66_c00490{left:441.950120pt;}
.x15_c00490{left:443.802520pt;}
.x46_c00490{left:451.608120pt;}
.x4d_c00490{left:452.985320pt;}
.x68_c00490{left:458.828520pt;}
.x40_c00490{left:462.788520pt;}
.x3b_c00490{left:471.707320pt;}
.x47_c00490{left:482.152920pt;}
.x21_c00490{left:483.134120pt;}
.x16_c00490{left:491.366520pt;}
.x22_c00490{left:501.776920pt;}
.x6d_c00490{left:510.348120pt;}
.xc_c00490{left:511.311720pt;}
.x41_c00490{left:512.235720pt;}
.x39_c00490{left:520.921320pt;}
.x23_c00490{left:530.486920pt;}
.x17_c00490{left:531.864120pt;}
.x54_c00490{left:541.082120pt;}
.x6e_c00490{left:548.852520pt;}
.x5c_c00490{left:549.811720pt;}
.xd_c00490{left:550.911720pt;}
.x42_c00490{left:560.437720pt;}
.x62_c00490{left:568.850520pt;}
.x2b_c00490{left:570.575320pt;}
.x2f_c00490{left:579.903320pt;}
.x18_c00490{left:580.831720pt;}
.x3a_c00490{left:591.162920pt;}
.x57_c00490{left:599.078520pt;}
.x2c_c00490{left:600.037720pt;}
.x67_c00490{left:608.089720pt;}
.xe_c00490{left:610.109320pt;}
.x4_c00490{left:616.889720pt;}
.x43_c00490{left:619.305320pt;}
.x3c_c00490{left:620.607720pt;}
.x3_c00490{left:628.202120pt;}
.x19_c00490{left:629.812520pt;}
.x5f_c00490{left:635.008920pt;}
.x72_c00490{left:637.244120pt;}
.x24_c00490{left:638.467320pt;}
.x2d_c00490{left:639.870920pt;}
.x6f_c00490{left:648.376120pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5180665006afb630d198512f.woff2')format("woff");}.ff1_c00491{font-family:ff1_c00491;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00491;src:url('chunks/assets/font_4c388e9cff4e4c65000570cc.woff2')format("woff");}.ff2_c00491{font-family:ff2_c00491;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00491;src:url('chunks/assets/font_0434a33b4aed986b4c350baf.woff2')format("woff");}.ff3_c00491{font-family:ff3_c00491;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m50_c00491{transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);}
.m62_c00491{transform:matrix(0.152193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152193,0.000000,0.000000,0.250000,0,0);}
.m4f_c00491{transform:matrix(0.155364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155364,0.000000,0.000000,0.250000,0,0);}
.m67_c00491{transform:matrix(0.174070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174070,0.000000,0.000000,0.250000,0,0);}
.m80_c00491{transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);}
.m4d_c00491{transform:matrix(0.209460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209460,0.000000,0.000000,0.250000,0,0);}
.m45_c00491{transform:matrix(0.235340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235340,0.000000,0.000000,0.250000,0,0);}
.m23_c00491{transform:matrix(0.241852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241852,0.000000,0.000000,0.250000,0,0);}
.m0_c00491{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.mad_c00491{transform:matrix(0.252344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252344,0.000000,0.000000,0.250000,0,0);}
.m75_c00491{transform:matrix(0.252498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252498,0.000000,0.000000,0.250000,0,0);}
.m3_c00491{transform:matrix(0.252999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252999,0.000000,0.000000,0.250000,0,0);}
.m7c_c00491{transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);}
.m1_c00491{transform:matrix(0.254056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254056,0.000000,0.000000,0.250000,0,0);}
.m37_c00491{transform:matrix(0.255749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255749,0.000000,0.000000,0.250000,0,0);}
.m30_c00491{transform:matrix(0.256870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256870,0.000000,0.000000,0.250000,0,0);}
.mab_c00491{transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);}
.ma_c00491{transform:matrix(0.258499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258499,0.000000,0.000000,0.250000,0,0);}
.m95_c00491{transform:matrix(0.260569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260569,0.000000,0.000000,0.250000,0,0);}
.m87_c00491{transform:matrix(0.260673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260673,0.000000,0.000000,0.250000,0,0);}
.m14_c00491{transform:matrix(0.260909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260909,0.000000,0.000000,0.250000,0,0);}
.m17_c00491{transform:matrix(0.262326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262326,0.000000,0.000000,0.250000,0,0);}
.mb0_c00491{transform:matrix(0.263702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263702,0.000000,0.000000,0.250000,0,0);}
.m28_c00491{transform:matrix(0.265297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265297,0.000000,0.000000,0.250000,0,0);}
.m96_c00491{transform:matrix(0.265976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265976,0.000000,0.000000,0.250000,0,0);}
.m42_c00491{transform:matrix(0.266057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266057,0.000000,0.000000,0.250000,0,0);}
.ma5_c00491{transform:matrix(0.266626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266626,0.000000,0.000000,0.250000,0,0);}
.m24_c00491{transform:matrix(0.266768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266768,0.000000,0.000000,0.250000,0,0);}
.m98_c00491{transform:matrix(0.267755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267755,0.000000,0.000000,0.250000,0,0);}
.m86_c00491{transform:matrix(0.267868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267868,0.000000,0.000000,0.250000,0,0);}
.m72_c00491{transform:matrix(0.268713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268713,0.000000,0.000000,0.250000,0,0);}
.me_c00491{transform:matrix(0.269115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269115,0.000000,0.000000,0.250000,0,0);}
.m57_c00491{transform:matrix(0.269715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269715,0.000000,0.000000,0.250000,0,0);}
.m5_c00491{transform:matrix(0.270242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270242,0.000000,0.000000,0.250000,0,0);}
.mac_c00491{transform:matrix(0.270612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270612,0.000000,0.000000,0.250000,0,0);}
.m18_c00491{transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);}
.m1d_c00491{transform:matrix(0.272173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272173,0.000000,0.000000,0.250000,0,0);}
.m7d_c00491{transform:matrix(0.273180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273180,0.000000,0.000000,0.250000,0,0);}
.m26_c00491{transform:matrix(0.274532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274532,0.000000,0.000000,0.250000,0,0);}
.m73_c00491{transform:matrix(0.274616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274616,0.000000,0.000000,0.250000,0,0);}
.m48_c00491{transform:matrix(0.275231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275231,0.000000,0.000000,0.250000,0,0);}
.m7e_c00491{transform:matrix(0.275369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275369,0.000000,0.000000,0.250000,0,0);}
.m15_c00491{transform:matrix(0.275961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275961,0.000000,0.000000,0.250000,0,0);}
.m6_c00491{transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);}
.m2a_c00491{transform:matrix(0.276545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276545,0.000000,0.000000,0.250000,0,0);}
.m40_c00491{transform:matrix(0.277052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277052,0.000000,0.000000,0.250000,0,0);}
.mb7_c00491{transform:matrix(0.277452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277452,0.000000,0.000000,0.250000,0,0);}
.m41_c00491{transform:matrix(0.277753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277753,0.000000,0.000000,0.250000,0,0);}
.m31_c00491{transform:matrix(0.279337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279337,0.000000,0.000000,0.250000,0,0);}
.mb_c00491{transform:matrix(0.279348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279348,0.000000,0.000000,0.250000,0,0);}
.m46_c00491{transform:matrix(0.280369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280369,0.000000,0.000000,0.250000,0,0);}
.mb9_c00491{transform:matrix(0.280401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280401,0.000000,0.000000,0.250000,0,0);}
.m52_c00491{transform:matrix(0.281226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281226,0.000000,0.000000,0.250000,0,0);}
.m44_c00491{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.m1c_c00491{transform:matrix(0.281962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281962,0.000000,0.000000,0.250000,0,0);}
.m6e_c00491{transform:matrix(0.282730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282730,0.000000,0.000000,0.250000,0,0);}
.m3d_c00491{transform:matrix(0.282866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282866,0.000000,0.000000,0.250000,0,0);}
.m4b_c00491{transform:matrix(0.282967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282967,0.000000,0.000000,0.250000,0,0);}
.m49_c00491{transform:matrix(0.283176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283176,0.000000,0.000000,0.250000,0,0);}
.mb3_c00491{transform:matrix(0.283635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283635,0.000000,0.000000,0.250000,0,0);}
.m6b_c00491{transform:matrix(0.283747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283747,0.000000,0.000000,0.250000,0,0);}
.m34_c00491{transform:matrix(0.283892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283892,0.000000,0.000000,0.250000,0,0);}
.m21_c00491{transform:matrix(0.284164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284164,0.000000,0.000000,0.250000,0,0);}
.m3b_c00491{transform:matrix(0.284287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284287,0.000000,0.000000,0.250000,0,0);}
.m13_c00491{transform:matrix(0.284505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284505,0.000000,0.000000,0.250000,0,0);}
.m59_c00491{transform:matrix(0.285439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285439,0.000000,0.000000,0.250000,0,0);}
.ma3_c00491{transform:matrix(0.287354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287354,0.000000,0.000000,0.250000,0,0);}
.m9b_c00491{transform:matrix(0.287684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287684,0.000000,0.000000,0.250000,0,0);}
.m4c_c00491{transform:matrix(0.287693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287693,0.000000,0.000000,0.250000,0,0);}
.mb4_c00491{transform:matrix(0.288385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288385,0.000000,0.000000,0.250000,0,0);}
.m6f_c00491{transform:matrix(0.288523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288523,0.000000,0.000000,0.250000,0,0);}
.maa_c00491{transform:matrix(0.289975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289975,0.000000,0.000000,0.250000,0,0);}
.m8f_c00491{transform:matrix(0.290267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290267,0.000000,0.000000,0.250000,0,0);}
.m12_c00491{transform:matrix(0.290340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290340,0.000000,0.000000,0.250000,0,0);}
.m65_c00491{transform:matrix(0.290747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290747,0.000000,0.000000,0.250000,0,0);}
.m36_c00491{transform:matrix(0.291287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291287,0.000000,0.000000,0.250000,0,0);}
.m61_c00491{transform:matrix(0.291339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291339,0.000000,0.000000,0.250000,0,0);}
.mbd_c00491{transform:matrix(0.292083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292083,0.000000,0.000000,0.250000,0,0);}
.m2_c00491{transform:matrix(0.292760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292760,0.000000,0.000000,0.250000,0,0);}
.m6a_c00491{transform:matrix(0.293428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293428,0.000000,0.000000,0.250000,0,0);}
.m90_c00491{transform:matrix(0.293594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293594,0.000000,0.000000,0.250000,0,0);}
.mb5_c00491{transform:matrix(0.293934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293934,0.000000,0.000000,0.250000,0,0);}
.mae_c00491{transform:matrix(0.294119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294119,0.000000,0.000000,0.250000,0,0);}
.m51_c00491{transform:matrix(0.294189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294189,0.000000,0.000000,0.250000,0,0);}
.m25_c00491{transform:matrix(0.294194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294194,0.000000,0.000000,0.250000,0,0);}
.m9_c00491{transform:matrix(0.294553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294553,0.000000,0.000000,0.250000,0,0);}
.m8_c00491{transform:matrix(0.294792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294792,0.000000,0.000000,0.250000,0,0);}
.m2b_c00491{transform:matrix(0.295026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295026,0.000000,0.000000,0.250000,0,0);}
.m5b_c00491{transform:matrix(0.295719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295719,0.000000,0.000000,0.250000,0,0);}
.m5a_c00491{transform:matrix(0.296030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296030,0.000000,0.000000,0.250000,0,0);}
.m47_c00491{transform:matrix(0.296136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296136,0.000000,0.000000,0.250000,0,0);}
.m76_c00491{transform:matrix(0.296518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296518,0.000000,0.000000,0.250000,0,0);}
.m5f_c00491{transform:matrix(0.297547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297547,0.000000,0.000000,0.250000,0,0);}
.ma8_c00491{transform:matrix(0.297831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297831,0.000000,0.000000,0.250000,0,0);}
.m35_c00491{transform:matrix(0.298609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298609,0.000000,0.000000,0.250000,0,0);}
.m5d_c00491{transform:matrix(0.298695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298695,0.000000,0.000000,0.250000,0,0);}
.m3e_c00491{transform:matrix(0.299033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299033,0.000000,0.000000,0.250000,0,0);}
.m6d_c00491{transform:matrix(0.300205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300205,0.000000,0.000000,0.250000,0,0);}
.m7b_c00491{transform:matrix(0.300598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300598,0.000000,0.000000,0.250000,0,0);}
.m68_c00491{transform:matrix(0.300858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300858,0.000000,0.000000,0.250000,0,0);}
.m43_c00491{transform:matrix(0.300918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300918,0.000000,0.000000,0.250000,0,0);}
.mb8_c00491{transform:matrix(0.301285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301285,0.000000,0.000000,0.250000,0,0);}
.ma7_c00491{transform:matrix(0.301501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301501,0.000000,0.000000,0.250000,0,0);}
.m77_c00491{transform:matrix(0.301656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301656,0.000000,0.000000,0.250000,0,0);}
.mb2_c00491{transform:matrix(0.301724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301724,0.000000,0.000000,0.250000,0,0);}
.m89_c00491{transform:matrix(0.302090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302090,0.000000,0.000000,0.250000,0,0);}
.m85_c00491{transform:matrix(0.302102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302102,0.000000,0.000000,0.250000,0,0);}
.m82_c00491{transform:matrix(0.302385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302385,0.000000,0.000000,0.250000,0,0);}
.ma0_c00491{transform:matrix(0.302662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302662,0.000000,0.000000,0.250000,0,0);}
.m8b_c00491{transform:matrix(0.303306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303306,0.000000,0.000000,0.250000,0,0);}
.m60_c00491{transform:matrix(0.304167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304167,0.000000,0.000000,0.250000,0,0);}
.m2f_c00491{transform:matrix(0.304426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304426,0.000000,0.000000,0.250000,0,0);}
.m66_c00491{transform:matrix(0.304934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304934,0.000000,0.000000,0.250000,0,0);}
.ma1_c00491{transform:matrix(0.305820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305820,0.000000,0.000000,0.250000,0,0);}
.m81_c00491{transform:matrix(0.305944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305944,0.000000,0.000000,0.250000,0,0);}
.m94_c00491{transform:matrix(0.306399,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306399,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306399,0.000000,0.000000,0.250000,0,0);}
.m8a_c00491{transform:matrix(0.306528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306528,0.000000,0.000000,0.250000,0,0);}
.m58_c00491{transform:matrix(0.306602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306602,0.000000,0.000000,0.250000,0,0);}
.m63_c00491{transform:matrix(0.308133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308133,0.000000,0.000000,0.250000,0,0);}
.m8c_c00491{transform:matrix(0.308594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308594,0.000000,0.000000,0.250000,0,0);}
.m8d_c00491{transform:matrix(0.308944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308944,0.000000,0.000000,0.250000,0,0);}
.m97_c00491{transform:matrix(0.309873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309873,0.000000,0.000000,0.250000,0,0);}
.m88_c00491{transform:matrix(0.309886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309886,0.000000,0.000000,0.250000,0,0);}
.m69_c00491{transform:matrix(0.309923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309923,0.000000,0.000000,0.250000,0,0);}
.m78_c00491{transform:matrix(0.310124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310124,0.000000,0.000000,0.250000,0,0);}
.m3a_c00491{transform:matrix(0.310375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310375,0.000000,0.000000,0.250000,0,0);}
.m38_c00491{transform:matrix(0.310513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310513,0.000000,0.000000,0.250000,0,0);}
.m99_c00491{transform:matrix(0.310750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00491{transform:matrix(0.310885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310885,0.000000,0.000000,0.250000,0,0);}
.m1f_c00491{transform:matrix(0.311129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311129,0.000000,0.000000,0.250000,0,0);}
.m79_c00491{transform:matrix(0.311660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311660,0.000000,0.000000,0.250000,0,0);}
.m1e_c00491{transform:matrix(0.311681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311681,0.000000,0.000000,0.250000,0,0);}
.m4a_c00491{transform:matrix(0.312432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312432,0.000000,0.000000,0.250000,0,0);}
.m9e_c00491{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);}
.m93_c00491{transform:matrix(0.313323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313323,0.000000,0.000000,0.250000,0,0);}
.mb1_c00491{transform:matrix(0.313937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313937,0.000000,0.000000,0.250000,0,0);}
.md_c00491{transform:matrix(0.314288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314288,0.000000,0.000000,0.250000,0,0);}
.m9f_c00491{transform:matrix(0.314573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314573,0.000000,0.000000,0.250000,0,0);}
.mbf_c00491{transform:matrix(0.314645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314645,0.000000,0.000000,0.250000,0,0);}
.m53_c00491{transform:matrix(0.314736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314736,0.000000,0.000000,0.250000,0,0);}
.m10_c00491{transform:matrix(0.315608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315608,0.000000,0.000000,0.250000,0,0);}
.ma9_c00491{transform:matrix(0.316239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316239,0.000000,0.000000,0.250000,0,0);}
.mc0_c00491{transform:matrix(0.316344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316344,0.000000,0.000000,0.250000,0,0);}
.m11_c00491{transform:matrix(0.316467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316467,0.000000,0.000000,0.250000,0,0);}
.m7_c00491{transform:matrix(0.317826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317826,0.000000,0.000000,0.250000,0,0);}
.ma2_c00491{transform:matrix(0.318221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318221,0.000000,0.000000,0.250000,0,0);}
.m3c_c00491{transform:matrix(0.319052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319052,0.000000,0.000000,0.250000,0,0);}
.m64_c00491{transform:matrix(0.319713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319713,0.000000,0.000000,0.250000,0,0);}
.ma6_c00491{transform:matrix(0.321138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321138,0.000000,0.000000,0.250000,0,0);}
.m91_c00491{transform:matrix(0.321562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321562,0.000000,0.000000,0.250000,0,0);}
.m5c_c00491{transform:matrix(0.322010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322010,0.000000,0.000000,0.250000,0,0);}
.m9d_c00491{transform:matrix(0.323556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323556,0.000000,0.000000,0.250000,0,0);}
.maf_c00491{transform:matrix(0.323793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323793,0.000000,0.000000,0.250000,0,0);}
.mbe_c00491{transform:matrix(0.324055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324055,0.000000,0.000000,0.250000,0,0);}
.m22_c00491{transform:matrix(0.325103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325103,0.000000,0.000000,0.250000,0,0);}
.m2d_c00491{transform:matrix(0.325300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325300,0.000000,0.000000,0.250000,0,0);}
.m56_c00491{transform:matrix(0.328700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328700,0.000000,0.000000,0.250000,0,0);}
.m4_c00491{transform:matrix(0.330243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330243,0.000000,0.000000,0.250000,0,0);}
.m54_c00491{transform:matrix(0.331116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331116,0.000000,0.000000,0.250000,0,0);}
.m2e_c00491{transform:matrix(0.331140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331140,0.000000,0.000000,0.250000,0,0);}
.m7f_c00491{transform:matrix(0.331825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331825,0.000000,0.000000,0.250000,0,0);}
.m71_c00491{transform:matrix(0.333646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333646,0.000000,0.000000,0.250000,0,0);}
.mba_c00491{transform:matrix(0.334373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334373,0.000000,0.000000,0.250000,0,0);}
.mb6_c00491{transform:matrix(0.334530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334530,0.000000,0.000000,0.250000,0,0);}
.m5e_c00491{transform:matrix(0.334704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334704,0.000000,0.000000,0.250000,0,0);}
.m55_c00491{transform:matrix(0.334853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334853,0.000000,0.000000,0.250000,0,0);}
.m84_c00491{transform:matrix(0.335351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335351,0.000000,0.000000,0.250000,0,0);}
.m1b_c00491{transform:matrix(0.335705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335705,0.000000,0.000000,0.250000,0,0);}
.m6c_c00491{transform:matrix(0.335786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335786,0.000000,0.000000,0.250000,0,0);}
.m20_c00491{transform:matrix(0.336099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336099,0.000000,0.000000,0.250000,0,0);}
.mc2_c00491{transform:matrix(0.336509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336509,0.000000,0.000000,0.250000,0,0);}
.m29_c00491{transform:matrix(0.337752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337752,0.000000,0.000000,0.250000,0,0);}
.mbb_c00491{transform:matrix(0.341230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341230,0.000000,0.000000,0.250000,0,0);}
.mc1_c00491{transform:matrix(0.342090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342090,0.000000,0.000000,0.250000,0,0);}
.m32_c00491{transform:matrix(0.342795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342795,0.000000,0.000000,0.250000,0,0);}
.m1a_c00491{transform:matrix(0.342888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342888,0.000000,0.000000,0.250000,0,0);}
.m9c_c00491{transform:matrix(0.345368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345368,0.000000,0.000000,0.250000,0,0);}
.ma4_c00491{transform:matrix(0.347470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347470,0.000000,0.000000,0.250000,0,0);}
.m74_c00491{transform:matrix(0.347946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347946,0.000000,0.000000,0.250000,0,0);}
.mf_c00491{transform:matrix(0.348569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348569,0.000000,0.000000,0.250000,0,0);}
.mc_c00491{transform:matrix(0.349884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349884,0.000000,0.000000,0.250000,0,0);}
.m7a_c00491{transform:matrix(0.350798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350798,0.000000,0.000000,0.250000,0,0);}
.m27_c00491{transform:matrix(0.356132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356132,0.000000,0.000000,0.250000,0,0);}
.m2c_c00491{transform:matrix(0.356405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356405,0.000000,0.000000,0.250000,0,0);}
.m83_c00491{transform:matrix(0.357328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357328,0.000000,0.000000,0.250000,0,0);}
.m3f_c00491{transform:matrix(0.362380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362380,0.000000,0.000000,0.250000,0,0);}
.mbc_c00491{transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);}
.m16_c00491{transform:matrix(0.369108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369108,0.000000,0.000000,0.250000,0,0);}
.m9a_c00491{transform:matrix(0.374100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374100,0.000000,0.000000,0.250000,0,0);}
.m33_c00491{transform:matrix(0.378589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378589,0.000000,0.000000,0.250000,0,0);}
.m4e_c00491{transform:matrix(0.381114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381114,0.000000,0.000000,0.250000,0,0);}
.m19_c00491{transform:matrix(0.391270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391270,0.000000,0.000000,0.250000,0,0);}
.m92_c00491{transform:matrix(0.397481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397481,0.000000,0.000000,0.250000,0,0);}
.m39_c00491{transform:matrix(0.403692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403692,0.000000,0.000000,0.250000,0,0);}
.m70_c00491{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);}
.v0_c00491{vertical-align:0.000000px;}
.ls7_c00491{letter-spacing:-3.104640px;}
.ls16_c00491{letter-spacing:-2.716567px;}
.ls11_c00491{letter-spacing:-2.661127px;}
.ls1a_c00491{letter-spacing:-2.334188px;}
.ls13_c00491{letter-spacing:-0.674923px;}
.ls1_c00491{letter-spacing:0.000000px;}
.lsb_c00491{letter-spacing:0.790735px;}
.lsf_c00491{letter-spacing:1.027860px;}
.ls1c_c00491{letter-spacing:1.215485px;}
.ls4_c00491{letter-spacing:1.269738px;}
.ls1d_c00491{letter-spacing:1.345770px;}
.ls14_c00491{letter-spacing:3.405610px;}
.ls1e_c00491{letter-spacing:3.524400px;}
.ls6_c00491{letter-spacing:3.603610px;}
.ls8_c00491{letter-spacing:3.623400px;}
.ls0_c00491{letter-spacing:3.638298px;}
.lse_c00491{letter-spacing:3.643200px;}
.ls18_c00491{letter-spacing:3.672900px;}
.ls9_c00491{letter-spacing:3.682810px;}
.ls1b_c00491{letter-spacing:3.722400px;}
.lsa_c00491{letter-spacing:3.791700px;}
.ls5_c00491{letter-spacing:3.794007px;}
.ls3_c00491{letter-spacing:3.801610px;}
.ls15_c00491{letter-spacing:3.880810px;}
.lsc_c00491{letter-spacing:4.039200px;}
.ls19_c00491{letter-spacing:4.078810px;}
.ls2_c00491{letter-spacing:4.296610px;}
.ls12_c00491{letter-spacing:31.363200px;}
.lsd_c00491{letter-spacing:51.321798px;}
.ls10_c00491{letter-spacing:52.747398px;}
.ls17_c00491{letter-spacing:62.726400px;}
.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:-19.008050px;}
.ws1_c00491{word-spacing:0.000000px;}
._0_c00491{margin-left:-9.884611px;}
._1_c00491{width:17.116124px;}
._3_c00491{width:29.788704px;}
._4_c00491{width:33.660655px;}
._2_c00491{width:37.917000px;}
.fc0_c00491{color:transparent;}
.fs16_c00491{font-size:22.176000px;}
.fs0_c00491{font-size:25.938000px;}
.fsd_c00491{font-size:28.908000px;}
.fse_c00491{font-size:31.363200px;}
.fs9_c00491{font-size:51.321798px;}
.fs10_c00491{font-size:52.272000px;}
.fsc_c00491{font-size:52.747398px;}
.fs12_c00491{font-size:62.726400px;}
.fsf_c00491{font-size:68.112198px;}
.fs17_c00491{font-size:70.488000px;}
.fs3_c00491{font-size:72.072198px;}
.fs5_c00491{font-size:72.468000px;}
.fsa_c00491{font-size:72.864000px;}
.fs14_c00491{font-size:73.260000px;}
.fs13_c00491{font-size:73.458000px;}
.fs6_c00491{font-size:73.656198px;}
.fs15_c00491{font-size:74.448000px;}
.fs7_c00491{font-size:75.834000px;}
.fs2_c00491{font-size:76.032198px;}
.fs11_c00491{font-size:77.616198px;}
.fs8_c00491{font-size:80.784000px;}
.fsb_c00491{font-size:81.576198px;}
.fs1_c00491{font-size:85.932198px;}
.fs4_c00491{font-size:88.704000px;}
.y0_c00491{bottom:0.000000px;}
.y1_c00491{bottom:76.500000px;}
.y1f_c00491{bottom:125.008335px;}
.y1e_c00491{bottom:156.366585px;}
.y1d_c00491{bottom:188.091135px;}
.y1c_c00491{bottom:220.518585px;}
.y1b_c00491{bottom:252.955935px;}
.y1a_c00491{bottom:283.962735px;}
.y19_c00491{bottom:300.000735px;}
.y18_c00491{bottom:316.395135px;}
.y17_c00491{bottom:347.396985px;}
.y16_c00491{bottom:380.190735px;}
.y15_c00491{bottom:399.792735px;}
.y2_c00491{bottom:417.969135px;}
.y14_c00491{bottom:443.986335px;}
.y13_c00491{bottom:475.349535px;}
.y12_c00491{bottom:506.712735px;}
.y11_c00491{bottom:537.358185px;}
.y10_c00491{bottom:569.790585px;}
.yf_c00491{bottom:601.153785px;}
.yc_c00491{bottom:664.241535px;}
.ye_c00491{bottom:668.874735px;}
.yd_c00491{bottom:679.210335px;}
.yb_c00491{bottom:697.386735px;}
.ya_c00491{bottom:729.101385px;}
.y9_c00491{bottom:760.825935px;}
.y8_c00491{bottom:792.189135px;}
.y7_c00491{bottom:823.552335px;}
.y6_c00491{bottom:855.266985px;}
.y5_c00491{bottom:886.630185px;}
.y4_c00491{bottom:918.711135px;}
.y3_c00491{bottom:1045.228185px;}
.h10_c00491{height:20.887891px;}
.h19_c00491{height:23.128875px;}
.h2_c00491{height:27.052523px;}
.hf_c00491{height:30.150141px;}
.hb_c00491{height:34.180317px;}
.he_c00491{height:35.129767px;}
.h15_c00491{height:41.775782px;}
.h13_c00491{height:54.518063px;}
.h1a_c00491{height:69.180117px;}
.h5_c00491{height:70.734921px;}
.h12_c00491{height:71.038894px;}
.h7_c00491{height:71.123379px;}
.h11_c00491{height:71.512031px;}
.h16_c00491{height:72.095010px;}
.h8_c00491{height:72.289530px;}
.h18_c00491{height:73.066641px;}
.h9_c00491{height:74.426924px;}
.h4_c00491{height:74.621444px;}
.hc_c00491{height:75.994875px;}
.h14_c00491{height:76.176054px;}
.h17_c00491{height:76.407891px;}
.ha_c00491{height:79.285078px;}
.hd_c00491{height:80.062577px;}
.h3_c00491{height:84.337753px;}
.h6_c00491{height:87.058125px;}
.h1_c00491{height:1110.000000px;}
.h0_c00491{height:1263.000000px;}
.w1_c00491{width:763.500000px;}
.w0_c00491{width:892.500000px;}
.x0_c00491{left:0.000000px;}
.x2_c00491{left:47.892300px;}
.x1_c00491{left:64.500000px;}
.x50_c00491{left:84.423300px;}
.x4_c00491{left:85.492500px;}
.x17_c00491{left:86.868600px;}
.x30_c00491{left:117.979350px;}
.xe_c00491{left:119.325750px;}
.x5_c00491{left:128.483250px;}
.x23_c00491{left:129.715800px;}
.x55_c00491{left:138.477300px;}
.x3e_c00491{left:139.798950px;}
.xf_c00491{left:150.580050px;}
.x36_c00491{left:161.633400px;}
.x24_c00491{left:163.162950px;}
.x6_c00491{left:173.899500px;}
.x2c_c00491{left:175.315200px;}
.x31_c00491{left:183.052050px;}
.x4a_c00491{left:193.085700px;}
.x53_c00491{left:194.427150px;}
.x25_c00491{left:195.634950px;}
.x4b_c00491{left:206.604150px;}
.x63_c00491{left:217.390200px;}
.x32_c00491{left:227.908950px;}
.x37_c00491{left:229.710750px;}
.x10_c00491{left:240.105750px;}
.x18_c00491{left:251.000700px;}
.x45_c00491{left:252.634200px;}
.x64_c00491{left:260.712600px;}
.x42_c00491{left:261.762000px;}
.x33_c00491{left:272.468850px;}
.x7_c00491{left:273.731100px;}
.x5a_c00491{left:283.650900px;}
.x19_c00491{left:285.408150px;}
.x26_c00491{left:294.555750px;}
.x4c_c00491{left:296.134800px;}
.x46_c00491{left:297.213900px;}
.x38_c00491{left:306.688200px;}
.x47_c00491{left:316.598100px;}
.x1a_c00491{left:317.919750px;}
.x65_c00491{left:328.215750px;}
.x27_c00491{left:329.339400px;}
.x3f_c00491{left:330.903600px;}
.x11_c00491{left:340.382850px;}
.x4d_c00491{left:350.688750px;}
.x54_c00491{left:361.257000px;}
.x8_c00491{left:362.474700px;}
.x60_c00491{left:372.419250px;}
.x1b_c00491{left:373.884450px;}
.x12_c00491{left:384.190350px;}
.x9_c00491{left:395.857500px;}
.x1c_c00491{left:406.613850px;}
.x40_c00491{left:407.955300px;}
.x61_c00491{left:417.592950px;}
.x43_c00491{left:427.542450px;}
.x66_c00491{left:428.775000px;}
.x1d_c00491{left:440.466900px;}
.x68_c00491{left:450.287700px;}
.x13_c00491{left:451.381650px;}
.x67_c00491{left:460.331250px;}
.x48_c00491{left:461.697450px;}
.x2d_c00491{left:463.623000px;}
.x51_c00491{left:471.983550px;}
.x39_c00491{left:483.096300px;}
.x5c_c00491{left:492.328050px;}
.x2e_c00491{left:495.288150px;}
.x5f_c00491{left:504.604050px;}
.x1e_c00491{left:506.430600px;}
.x14_c00491{left:517.147350px;}
.x34_c00491{left:527.779950px;}
.x28_c00491{left:529.255050px;}
.x62_c00491{left:538.481850px;}
.xa_c00491{left:539.620350px;}
.x56_c00491{left:541.293450px;}
.x1f_c00491{left:549.386700px;}
.x49_c00491{left:551.238000px;}
.x35_c00491{left:562.291350px;}
.x5d_c00491{left:572.270550px;}
.x44_c00491{left:581.838900px;}
.x5b_c00491{left:583.096200px;}
.x29_c00491{left:584.135700px;}
.xb_c00491{left:593.624850px;}
.x3a_c00491{left:595.060350px;}
.x15_c00491{left:605.544450px;}
.x3c_c00491{left:615.315750px;}
.x2a_c00491{left:616.855200px;}
.x20_c00491{left:627.641250px;}
.x59_c00491{left:637.412550px;}
.xc_c00491{left:639.273750px;}
.x2b_c00491{left:648.465900px;}
.x16_c00491{left:649.723200px;}
.x57_c00491{left:651.242850px;}
.x4e_c00491{left:659.786550px;}
.x2f_c00491{left:671.201250px;}
.x21_c00491{left:672.780300px;}
.x52_c00491{left:683.506950px;}
.x41_c00491{left:694.273200px;}
.x58_c00491{left:698.015400px;}
.x3d_c00491{left:702.490200px;}
.x22_c00491{left:705.301800px;}
.x3_c00491{left:707.415450px;}
.x3b_c00491{left:714.414750px;}
.xd_c00491{left:715.474050px;}
.x5e_c00491{left:716.746200px;}
.x4f_c00491{left:728.160900px;}
@media print{
.v0_c00491{vertical-align:0.000000pt;}
.ls7_c00491{letter-spacing:-2.759680pt;}
.ls16_c00491{letter-spacing:-2.414726pt;}
.ls11_c00491{letter-spacing:-2.365446pt;}
.ls1a_c00491{letter-spacing:-2.074834pt;}
.ls13_c00491{letter-spacing:-0.599931pt;}
.ls1_c00491{letter-spacing:0.000000pt;}
.lsb_c00491{letter-spacing:0.702875pt;}
.lsf_c00491{letter-spacing:0.913653pt;}
.ls1c_c00491{letter-spacing:1.080431pt;}
.ls4_c00491{letter-spacing:1.128656pt;}
.ls1d_c00491{letter-spacing:1.196240pt;}
.ls14_c00491{letter-spacing:3.027209pt;}
.ls1e_c00491{letter-spacing:3.132800pt;}
.ls6_c00491{letter-spacing:3.203209pt;}
.ls8_c00491{letter-spacing:3.220800pt;}
.ls0_c00491{letter-spacing:3.234043pt;}
.lse_c00491{letter-spacing:3.238400pt;}
.ls18_c00491{letter-spacing:3.264800pt;}
.ls9_c00491{letter-spacing:3.273609pt;}
.ls1b_c00491{letter-spacing:3.308800pt;}
.lsa_c00491{letter-spacing:3.370400pt;}
.ls5_c00491{letter-spacing:3.372450pt;}
.ls3_c00491{letter-spacing:3.379209pt;}
.ls15_c00491{letter-spacing:3.449609pt;}
.lsc_c00491{letter-spacing:3.590400pt;}
.ls19_c00491{letter-spacing:3.625609pt;}
.ls2_c00491{letter-spacing:3.819209pt;}
.ls12_c00491{letter-spacing:27.878400pt;}
.lsd_c00491{letter-spacing:45.619376pt;}
.ls10_c00491{letter-spacing:46.886576pt;}
.ls17_c00491{letter-spacing:55.756800pt;}
.ws0_c00491{word-spacing:-16.896044pt;}
.ws1_c00491{word-spacing:0.000000pt;}
._0_c00491{margin-left:-8.786321pt;}
._1_c00491{width:15.214333pt;}
._3_c00491{width:26.478848pt;}
._4_c00491{width:29.920582pt;}
._2_c00491{width:33.704000pt;}
.fs16_c00491{font-size:19.712000pt;}
.fs0_c00491{font-size:23.056000pt;}
.fsd_c00491{font-size:25.696000pt;}
.fse_c00491{font-size:27.878400pt;}
.fs9_c00491{font-size:45.619376pt;}
.fs10_c00491{font-size:46.464000pt;}
.fsc_c00491{font-size:46.886576pt;}
.fs12_c00491{font-size:55.756800pt;}
.fsf_c00491{font-size:60.544176pt;}
.fs17_c00491{font-size:62.656000pt;}
.fs3_c00491{font-size:64.064176pt;}
.fs5_c00491{font-size:64.416000pt;}
.fsa_c00491{font-size:64.768000pt;}
.fs14_c00491{font-size:65.120000pt;}
.fs13_c00491{font-size:65.296000pt;}
.fs6_c00491{font-size:65.472176pt;}
.fs15_c00491{font-size:66.176000pt;}
.fs7_c00491{font-size:67.408000pt;}
.fs2_c00491{font-size:67.584176pt;}
.fs11_c00491{font-size:68.992176pt;}
.fs8_c00491{font-size:71.808000pt;}
.fsb_c00491{font-size:72.512176pt;}
.fs1_c00491{font-size:76.384176pt;}
.fs4_c00491{font-size:78.848000pt;}
.y0_c00491{bottom:0.000000pt;}
.y1_c00491{bottom:68.000000pt;}
.y1f_c00491{bottom:111.118520pt;}
.y1e_c00491{bottom:138.992520pt;}
.y1d_c00491{bottom:167.192120pt;}
.y1c_c00491{bottom:196.016520pt;}
.y1b_c00491{bottom:224.849720pt;}
.y1a_c00491{bottom:252.411320pt;}
.y19_c00491{bottom:266.667320pt;}
.y18_c00491{bottom:281.240120pt;}
.y17_c00491{bottom:308.797320pt;}
.y16_c00491{bottom:337.947320pt;}
.y15_c00491{bottom:355.371320pt;}
.y2_c00491{bottom:371.528120pt;}
.y14_c00491{bottom:394.654520pt;}
.y13_c00491{bottom:422.532920pt;}
.y12_c00491{bottom:450.411320pt;}
.y11_c00491{bottom:477.651720pt;}
.y10_c00491{bottom:506.480520pt;}
.yf_c00491{bottom:534.358920pt;}
.yc_c00491{bottom:590.436920pt;}
.ye_c00491{bottom:594.555320pt;}
.yd_c00491{bottom:603.742520pt;}
.yb_c00491{bottom:619.899320pt;}
.ya_c00491{bottom:648.090120pt;}
.y9_c00491{bottom:676.289720pt;}
.y8_c00491{bottom:704.168120pt;}
.y7_c00491{bottom:732.046520pt;}
.y6_c00491{bottom:760.237320pt;}
.y5_c00491{bottom:788.115720pt;}
.y4_c00491{bottom:816.632120pt;}
.y3_c00491{bottom:929.091720pt;}
.h10_c00491{height:18.567014pt;}
.h19_c00491{height:20.559000pt;}
.h2_c00491{height:24.046688pt;}
.hf_c00491{height:26.800125pt;}
.hb_c00491{height:30.382504pt;}
.he_c00491{height:31.226460pt;}
.h15_c00491{height:37.134029pt;}
.h13_c00491{height:48.460500pt;}
.h1a_c00491{height:61.493438pt;}
.h5_c00491{height:62.875485pt;}
.h12_c00491{height:63.145684pt;}
.h7_c00491{height:63.220781pt;}
.h11_c00491{height:63.566250pt;}
.h16_c00491{height:64.084453pt;}
.h8_c00491{height:64.257360pt;}
.h18_c00491{height:64.948125pt;}
.h9_c00491{height:66.157266pt;}
.h4_c00491{height:66.330173pt;}
.hc_c00491{height:67.551000pt;}
.h14_c00491{height:67.712048pt;}
.h17_c00491{height:67.918125pt;}
.ha_c00491{height:70.475625pt;}
.hd_c00491{height:71.166735pt;}
.h3_c00491{height:74.966891pt;}
.h6_c00491{height:77.385000pt;}
.h1_c00491{height:986.666667pt;}
.h0_c00491{height:1122.666667pt;}
.w1_c00491{width:678.666667pt;}
.w0_c00491{width:793.333333pt;}
.x0_c00491{left:0.000000pt;}
.x2_c00491{left:42.570933pt;}
.x1_c00491{left:57.333333pt;}
.x50_c00491{left:75.042933pt;}
.x4_c00491{left:75.993333pt;}
.x17_c00491{left:77.216533pt;}
.x30_c00491{left:104.870533pt;}
.xe_c00491{left:106.067333pt;}
.x5_c00491{left:114.207333pt;}
.x23_c00491{left:115.302933pt;}
.x55_c00491{left:123.090933pt;}
.x3e_c00491{left:124.265733pt;}
.xf_c00491{left:133.848933pt;}
.x36_c00491{left:143.674133pt;}
.x24_c00491{left:145.033733pt;}
.x6_c00491{left:154.577333pt;}
.x2c_c00491{left:155.835733pt;}
.x31_c00491{left:162.712933pt;}
.x4a_c00491{left:171.631733pt;}
.x53_c00491{left:172.824133pt;}
.x25_c00491{left:173.897733pt;}
.x4b_c00491{left:183.648133pt;}
.x63_c00491{left:193.235733pt;}
.x32_c00491{left:202.585733pt;}
.x37_c00491{left:204.187333pt;}
.x10_c00491{left:213.427333pt;}
.x18_c00491{left:223.111733pt;}
.x45_c00491{left:224.563733pt;}
.x64_c00491{left:231.744533pt;}
.x42_c00491{left:232.677333pt;}
.x33_c00491{left:242.194533pt;}
.x7_c00491{left:243.316533pt;}
.x5a_c00491{left:252.134133pt;}
.x19_c00491{left:253.696133pt;}
.x26_c00491{left:261.827333pt;}
.x4c_c00491{left:263.230933pt;}
.x46_c00491{left:264.190133pt;}
.x38_c00491{left:272.611733pt;}
.x47_c00491{left:281.420533pt;}
.x1a_c00491{left:282.595333pt;}
.x65_c00491{left:291.747333pt;}
.x27_c00491{left:292.746133pt;}
.x3f_c00491{left:294.136533pt;}
.x11_c00491{left:302.562533pt;}
.x4d_c00491{left:311.723333pt;}
.x54_c00491{left:321.117333pt;}
.x8_c00491{left:322.199733pt;}
.x60_c00491{left:331.039333pt;}
.x1b_c00491{left:332.341733pt;}
.x12_c00491{left:341.502533pt;}
.x9_c00491{left:351.873333pt;}
.x1c_c00491{left:361.434533pt;}
.x40_c00491{left:362.626933pt;}
.x61_c00491{left:371.193733pt;}
.x43_c00491{left:380.037733pt;}
.x66_c00491{left:381.133333pt;}
.x1d_c00491{left:391.526133pt;}
.x68_c00491{left:400.255733pt;}
.x13_c00491{left:401.228133pt;}
.x67_c00491{left:409.183333pt;}
.x48_c00491{left:410.397733pt;}
.x2d_c00491{left:412.109333pt;}
.x51_c00491{left:419.540933pt;}
.x39_c00491{left:429.418933pt;}
.x5c_c00491{left:437.624933pt;}
.x2e_c00491{left:440.256133pt;}
.x5f_c00491{left:448.536933pt;}
.x1e_c00491{left:450.160533pt;}
.x14_c00491{left:459.686533pt;}
.x34_c00491{left:469.137733pt;}
.x28_c00491{left:470.448933pt;}
.x62_c00491{left:478.650533pt;}
.xa_c00491{left:479.662533pt;}
.x56_c00491{left:481.149733pt;}
.x1f_c00491{left:488.343733pt;}
.x49_c00491{left:489.989333pt;}
.x35_c00491{left:499.814533pt;}
.x5d_c00491{left:508.684933pt;}
.x44_c00491{left:517.190133pt;}
.x5b_c00491{left:518.307733pt;}
.x29_c00491{left:519.231733pt;}
.xb_c00491{left:527.666533pt;}
.x3a_c00491{left:528.942533pt;}
.x15_c00491{left:538.261733pt;}
.x3c_c00491{left:546.947333pt;}
.x2a_c00491{left:548.315733pt;}
.x20_c00491{left:557.903333pt;}
.x59_c00491{left:566.588933pt;}
.xc_c00491{left:568.243333pt;}
.x2b_c00491{left:576.414133pt;}
.x16_c00491{left:577.531733pt;}
.x57_c00491{left:578.882533pt;}
.x4e_c00491{left:586.476933pt;}
.x2f_c00491{left:596.623333pt;}
.x21_c00491{left:598.026933pt;}
.x52_c00491{left:607.561733pt;}
.x41_c00491{left:617.131733pt;}
.x58_c00491{left:620.458133pt;}
.x3d_c00491{left:624.435733pt;}
.x22_c00491{left:626.934933pt;}
.x3_c00491{left:628.813733pt;}
.x3b_c00491{left:635.035333pt;}
.xd_c00491{left:635.976933pt;}
.x5e_c00491{left:637.107733pt;}
.x4f_c00491{left:647.254133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d3363896bec767b1764784b9.woff2')format("woff");}.ff1_c00492{font-family:ff1_c00492;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00492;src:url('chunks/assets/font_4559be0d5df2a5d7917eedc6.woff2')format("woff");}.ff2_c00492{font-family:ff2_c00492;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00492;src:url('chunks/assets/font_6e2536054ce485209dcda7a5.woff2')format("woff");}.ff3_c00492{font-family:ff3_c00492;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00492;src:url('chunks/assets/font_acb2fb627cfc0b6426936003.woff2')format("woff");}.ff4_c00492{font-family:ff4_c00492;line-height:0.666000;font-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_c00492{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);}
.mac_c00492{transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);}
.m91_c00492{transform:matrix(0.128634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128634,0.000000,0.000000,0.250000,0,0);}
.m42_c00492{transform:matrix(0.150539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150539,0.000000,0.000000,0.250000,0,0);}
.m5a_c00492{transform:matrix(0.213492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213492,0.000000,0.000000,0.250000,0,0);}
.m57_c00492{transform:matrix(0.239571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239571,0.000000,0.000000,0.250000,0,0);}
.m9a_c00492{transform:matrix(0.249722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249722,0.000000,0.000000,0.250000,0,0);}
.m0_c00492{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m67_c00492{transform:matrix(0.250020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250020,0.000000,0.000000,0.250000,0,0);}
.ma7_c00492{transform:matrix(0.250262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250262,0.000000,0.000000,0.250000,0,0);}
.m41_c00492{transform:matrix(0.251308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251308,0.000000,0.000000,0.250000,0,0);}
.m7f_c00492{transform:matrix(0.251633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251633,0.000000,0.000000,0.250000,0,0);}
.m12_c00492{transform:matrix(0.252313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252313,0.000000,0.000000,0.250000,0,0);}
.m11_c00492{transform:matrix(0.252448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252448,0.000000,0.000000,0.250000,0,0);}
.m3a_c00492{transform:matrix(0.252842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252842,0.000000,0.000000,0.250000,0,0);}
.ma6_c00492{transform:matrix(0.254233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254233,0.000000,0.000000,0.250000,0,0);}
.m5_c00492{transform:matrix(0.254510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254510,0.000000,0.000000,0.250000,0,0);}
.m2c_c00492{transform:matrix(0.254533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254533,0.000000,0.000000,0.250000,0,0);}
.m37_c00492{transform:matrix(0.256765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256765,0.000000,0.000000,0.250000,0,0);}
.m35_c00492{transform:matrix(0.256819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256819,0.000000,0.000000,0.250000,0,0);}
.m43_c00492{transform:matrix(0.257425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257425,0.000000,0.000000,0.250000,0,0);}
.m56_c00492{transform:matrix(0.258212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258212,0.000000,0.000000,0.250000,0,0);}
.ma8_c00492{transform:matrix(0.259656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259656,0.000000,0.000000,0.250000,0,0);}
.m1e_c00492{transform:matrix(0.260318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260318,0.000000,0.000000,0.250000,0,0);}
.m6f_c00492{transform:matrix(0.261325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261325,0.000000,0.000000,0.250000,0,0);}
.md_c00492{transform:matrix(0.261633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261633,0.000000,0.000000,0.250000,0,0);}
.m3b_c00492{transform:matrix(0.262601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262601,0.000000,0.000000,0.250000,0,0);}
.m65_c00492{transform:matrix(0.263004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263004,0.000000,0.000000,0.250000,0,0);}
.m76_c00492{transform:matrix(0.263210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263210,0.000000,0.000000,0.250000,0,0);}
.m9b_c00492{transform:matrix(0.263321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263321,0.000000,0.000000,0.250000,0,0);}
.m89_c00492{transform:matrix(0.264211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264211,0.000000,0.000000,0.250000,0,0);}
.m85_c00492{transform:matrix(0.265825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265825,0.000000,0.000000,0.250000,0,0);}
.m8c_c00492{transform:matrix(0.266339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266339,0.000000,0.000000,0.250000,0,0);}
.ma5_c00492{transform:matrix(0.267039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267039,0.000000,0.000000,0.250000,0,0);}
.ma0_c00492{transform:matrix(0.267088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267088,0.000000,0.000000,0.250000,0,0);}
.m62_c00492{transform:matrix(0.268270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268270,0.000000,0.000000,0.250000,0,0);}
.m74_c00492{transform:matrix(0.268571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268571,0.000000,0.000000,0.250000,0,0);}
.m1a_c00492{transform:matrix(0.268767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268767,0.000000,0.000000,0.250000,0,0);}
.m2_c00492{transform:matrix(0.269060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269060,0.000000,0.000000,0.250000,0,0);}
.m20_c00492{transform:matrix(0.271208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271208,0.000000,0.000000,0.250000,0,0);}
.m5e_c00492{transform:matrix(0.271256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271256,0.000000,0.000000,0.250000,0,0);}
.m9f_c00492{transform:matrix(0.271388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271388,0.000000,0.000000,0.250000,0,0);}
.m7d_c00492{transform:matrix(0.271475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271475,0.000000,0.000000,0.250000,0,0);}
.m5b_c00492{transform:matrix(0.271970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271970,0.000000,0.000000,0.250000,0,0);}
.ma1_c00492{transform:matrix(0.272261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272261,0.000000,0.000000,0.250000,0,0);}
.m6_c00492{transform:matrix(0.272994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272994,0.000000,0.000000,0.250000,0,0);}
.m3e_c00492{transform:matrix(0.273159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273159,0.000000,0.000000,0.250000,0,0);}
.m55_c00492{transform:matrix(0.273344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273344,0.000000,0.000000,0.250000,0,0);}
.m77_c00492{transform:matrix(0.273424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273424,0.000000,0.000000,0.250000,0,0);}
.m58_c00492{transform:matrix(0.273430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273430,0.000000,0.000000,0.250000,0,0);}
.m7c_c00492{transform:matrix(0.274612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274612,0.000000,0.000000,0.250000,0,0);}
.m90_c00492{transform:matrix(0.274893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274893,0.000000,0.000000,0.250000,0,0);}
.m17_c00492{transform:matrix(0.275752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275752,0.000000,0.000000,0.250000,0,0);}
.m6e_c00492{transform:matrix(0.276523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276523,0.000000,0.000000,0.250000,0,0);}
.m8_c00492{transform:matrix(0.276563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276563,0.000000,0.000000,0.250000,0,0);}
.m1f_c00492{transform:matrix(0.276572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276572,0.000000,0.000000,0.250000,0,0);}
.m19_c00492{transform:matrix(0.277372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277372,0.000000,0.000000,0.250000,0,0);}
.maa_c00492{transform:matrix(0.278182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278182,0.000000,0.000000,0.250000,0,0);}
.m8d_c00492{transform:matrix(0.278289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278289,0.000000,0.000000,0.250000,0,0);}
.m92_c00492{transform:matrix(0.278449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278449,0.000000,0.000000,0.250000,0,0);}
.m4d_c00492{transform:matrix(0.278592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278592,0.000000,0.000000,0.250000,0,0);}
.m5c_c00492{transform:matrix(0.278667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278667,0.000000,0.000000,0.250000,0,0);}
.m66_c00492{transform:matrix(0.278818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278818,0.000000,0.000000,0.250000,0,0);}
.m4_c00492{transform:matrix(0.279361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279361,0.000000,0.000000,0.250000,0,0);}
.m59_c00492{transform:matrix(0.279439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279439,0.000000,0.000000,0.250000,0,0);}
.m4c_c00492{transform:matrix(0.279940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279940,0.000000,0.000000,0.250000,0,0);}
.m3f_c00492{transform:matrix(0.280427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280427,0.000000,0.000000,0.250000,0,0);}
.ma9_c00492{transform:matrix(0.281267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281267,0.000000,0.000000,0.250000,0,0);}
.m95_c00492{transform:matrix(0.281639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281639,0.000000,0.000000,0.250000,0,0);}
.m14_c00492{transform:matrix(0.281693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281693,0.000000,0.000000,0.250000,0,0);}
.m94_c00492{transform:matrix(0.282389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282389,0.000000,0.000000,0.250000,0,0);}
.m30_c00492{transform:matrix(0.282704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282704,0.000000,0.000000,0.250000,0,0);}
.m13_c00492{transform:matrix(0.282901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282901,0.000000,0.000000,0.250000,0,0);}
.m72_c00492{transform:matrix(0.283046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283046,0.000000,0.000000,0.250000,0,0);}
.m32_c00492{transform:matrix(0.283600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283600,0.000000,0.000000,0.250000,0,0);}
.m96_c00492{transform:matrix(0.284392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284392,0.000000,0.000000,0.250000,0,0);}
.m88_c00492{transform:matrix(0.284502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284502,0.000000,0.000000,0.250000,0,0);}
.m79_c00492{transform:matrix(0.284567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284567,0.000000,0.000000,0.250000,0,0);}
.m50_c00492{transform:matrix(0.284960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284960,0.000000,0.000000,0.250000,0,0);}
.m9d_c00492{transform:matrix(0.285618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285618,0.000000,0.000000,0.250000,0,0);}
.m48_c00492{transform:matrix(0.285876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285876,0.000000,0.000000,0.250000,0,0);}
.m40_c00492{transform:matrix(0.286440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286440,0.000000,0.000000,0.250000,0,0);}
.m3d_c00492{transform:matrix(0.286742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286742,0.000000,0.000000,0.250000,0,0);}
.me_c00492{transform:matrix(0.287586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287586,0.000000,0.000000,0.250000,0,0);}
.m73_c00492{transform:matrix(0.287654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287654,0.000000,0.000000,0.250000,0,0);}
.m53_c00492{transform:matrix(0.287941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287941,0.000000,0.000000,0.250000,0,0);}
.m82_c00492{transform:matrix(0.288050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288050,0.000000,0.000000,0.250000,0,0);}
.m51_c00492{transform:matrix(0.288555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288555,0.000000,0.000000,0.250000,0,0);}
.m6b_c00492{transform:matrix(0.288648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288648,0.000000,0.000000,0.250000,0,0);}
.m80_c00492{transform:matrix(0.288909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288909,0.000000,0.000000,0.250000,0,0);}
.m46_c00492{transform:matrix(0.288970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288970,0.000000,0.000000,0.250000,0,0);}
.m39_c00492{transform:matrix(0.290383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290383,0.000000,0.000000,0.250000,0,0);}
.m36_c00492{transform:matrix(0.291026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291026,0.000000,0.000000,0.250000,0,0);}
.m28_c00492{transform:matrix(0.291512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291512,0.000000,0.000000,0.250000,0,0);}
.m8f_c00492{transform:matrix(0.291784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291784,0.000000,0.000000,0.250000,0,0);}
.m7e_c00492{transform:matrix(0.291790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291790,0.000000,0.000000,0.250000,0,0);}
.m8a_c00492{transform:matrix(0.292192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292192,0.000000,0.000000,0.250000,0,0);}
.m70_c00492{transform:matrix(0.292625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292625,0.000000,0.000000,0.250000,0,0);}
.m34_c00492{transform:matrix(0.292640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292640,0.000000,0.000000,0.250000,0,0);}
.m24_c00492{transform:matrix(0.293344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293344,0.000000,0.000000,0.250000,0,0);}
.m2a_c00492{transform:matrix(0.293411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293411,0.000000,0.000000,0.250000,0,0);}
.m54_c00492{transform:matrix(0.293531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293531,0.000000,0.000000,0.250000,0,0);}
.m38_c00492{transform:matrix(0.294214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294214,0.000000,0.000000,0.250000,0,0);}
.m6a_c00492{transform:matrix(0.294226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294226,0.000000,0.000000,0.250000,0,0);}
.m2e_c00492{transform:matrix(0.294651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294651,0.000000,0.000000,0.250000,0,0);}
.m1d_c00492{transform:matrix(0.296949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296949,0.000000,0.000000,0.250000,0,0);}
.m2f_c00492{transform:matrix(0.297369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297369,0.000000,0.000000,0.250000,0,0);}
.m4f_c00492{transform:matrix(0.297596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297596,0.000000,0.000000,0.250000,0,0);}
.ma3_c00492{transform:matrix(0.297951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297951,0.000000,0.000000,0.250000,0,0);}
.m86_c00492{transform:matrix(0.298244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298244,0.000000,0.000000,0.250000,0,0);}
.ma2_c00492{transform:matrix(0.300270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300270,0.000000,0.000000,0.250000,0,0);}
.m4e_c00492{transform:matrix(0.300404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300404,0.000000,0.000000,0.250000,0,0);}
.m45_c00492{transform:matrix(0.300644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300644,0.000000,0.000000,0.250000,0,0);}
.m23_c00492{transform:matrix(0.300978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300978,0.000000,0.000000,0.250000,0,0);}
.m78_c00492{transform:matrix(0.301058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301058,0.000000,0.000000,0.250000,0,0);}
.m5f_c00492{transform:matrix(0.301702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301702,0.000000,0.000000,0.250000,0,0);}
.m68_c00492{transform:matrix(0.301732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301732,0.000000,0.000000,0.250000,0,0);}
.m9c_c00492{transform:matrix(0.302105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302105,0.000000,0.000000,0.250000,0,0);}
.m7_c00492{transform:matrix(0.302284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302284,0.000000,0.000000,0.250000,0,0);}
.m29_c00492{transform:matrix(0.302347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302347,0.000000,0.000000,0.250000,0,0);}
.m87_c00492{transform:matrix(0.302589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302589,0.000000,0.000000,0.250000,0,0);}
.m1c_c00492{transform:matrix(0.304081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304081,0.000000,0.000000,0.250000,0,0);}
.m9e_c00492{transform:matrix(0.304360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304360,0.000000,0.000000,0.250000,0,0);}
.m26_c00492{transform:matrix(0.304855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304855,0.000000,0.000000,0.250000,0,0);}
.m10_c00492{transform:matrix(0.304988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304988,0.000000,0.000000,0.250000,0,0);}
.m31_c00492{transform:matrix(0.306289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306289,0.000000,0.000000,0.250000,0,0);}
.m5d_c00492{transform:matrix(0.306600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306600,0.000000,0.000000,0.250000,0,0);}
.m6d_c00492{transform:matrix(0.308365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308365,0.000000,0.000000,0.250000,0,0);}
.m6c_c00492{transform:matrix(0.308746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308746,0.000000,0.000000,0.250000,0,0);}
.m52_c00492{transform:matrix(0.308828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308828,0.000000,0.000000,0.250000,0,0);}
.m16_c00492{transform:matrix(0.308961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308961,0.000000,0.000000,0.250000,0,0);}
.m75_c00492{transform:matrix(0.309290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309290,0.000000,0.000000,0.250000,0,0);}
.m1b_c00492{transform:matrix(0.309418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309418,0.000000,0.000000,0.250000,0,0);}
.m44_c00492{transform:matrix(0.311613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311613,0.000000,0.000000,0.250000,0,0);}
.m4b_c00492{transform:matrix(0.311931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311931,0.000000,0.000000,0.250000,0,0);}
.m99_c00492{transform:matrix(0.312260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312260,0.000000,0.000000,0.250000,0,0);}
.m47_c00492{transform:matrix(0.312267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312267,0.000000,0.000000,0.250000,0,0);}
.m7a_c00492{transform:matrix(0.314257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314257,0.000000,0.000000,0.250000,0,0);}
.m64_c00492{transform:matrix(0.314578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314578,0.000000,0.000000,0.250000,0,0);}
.m93_c00492{transform:matrix(0.315123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315123,0.000000,0.000000,0.250000,0,0);}
.m98_c00492{transform:matrix(0.315448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315448,0.000000,0.000000,0.250000,0,0);}
.m25_c00492{transform:matrix(0.315597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315597,0.000000,0.000000,0.250000,0,0);}
.m22_c00492{transform:matrix(0.315834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315834,0.000000,0.000000,0.250000,0,0);}
.m81_c00492{transform:matrix(0.316775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316775,0.000000,0.000000,0.250000,0,0);}
.m27_c00492{transform:matrix(0.317180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317180,0.000000,0.000000,0.250000,0,0);}
.m1_c00492{transform:matrix(0.318024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318024,0.000000,0.000000,0.250000,0,0);}
.m69_c00492{transform:matrix(0.318157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318157,0.000000,0.000000,0.250000,0,0);}
.mc_c00492{transform:matrix(0.318914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318914,0.000000,0.000000,0.250000,0,0);}
.m61_c00492{transform:matrix(0.319020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319020,0.000000,0.000000,0.250000,0,0);}
.m8b_c00492{transform:matrix(0.319249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319249,0.000000,0.000000,0.250000,0,0);}
.m63_c00492{transform:matrix(0.320619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320619,0.000000,0.000000,0.250000,0,0);}
.mb_c00492{transform:matrix(0.320732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320732,0.000000,0.000000,0.250000,0,0);}
.m7b_c00492{transform:matrix(0.321117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321117,0.000000,0.000000,0.250000,0,0);}
.m60_c00492{transform:matrix(0.322565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322565,0.000000,0.000000,0.250000,0,0);}
.m2d_c00492{transform:matrix(0.325016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325016,0.000000,0.000000,0.250000,0,0);}
.ma_c00492{transform:matrix(0.326278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326278,0.000000,0.000000,0.250000,0,0);}
.m9_c00492{transform:matrix(0.327339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327339,0.000000,0.000000,0.250000,0,0);}
.m83_c00492{transform:matrix(0.328988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328988,0.000000,0.000000,0.250000,0,0);}
.mf_c00492{transform:matrix(0.330925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330925,0.000000,0.000000,0.250000,0,0);}
.m4a_c00492{transform:matrix(0.331725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331725,0.000000,0.000000,0.250000,0,0);}
.m2b_c00492{transform:matrix(0.334253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334253,0.000000,0.000000,0.250000,0,0);}
.m84_c00492{transform:matrix(0.335329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335329,0.000000,0.000000,0.250000,0,0);}
.m97_c00492{transform:matrix(0.337967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337967,0.000000,0.000000,0.250000,0,0);}
.m15_c00492{transform:matrix(0.341681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341681,0.000000,0.000000,0.250000,0,0);}
.m3_c00492{transform:matrix(0.348654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348654,0.000000,0.000000,0.250000,0,0);}
.m71_c00492{transform:matrix(0.348804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348804,0.000000,0.000000,0.250000,0,0);}
.ma4_c00492{transform:matrix(0.358034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358034,0.000000,0.000000,0.250000,0,0);}
.m49_c00492{transform:matrix(0.359303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359303,0.000000,0.000000,0.250000,0,0);}
.mab_c00492{transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);}
.m33_c00492{transform:matrix(0.370070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370070,0.000000,0.000000,0.250000,0,0);}
.m18_c00492{transform:matrix(0.375943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375943,0.000000,0.000000,0.250000,0,0);}
.m3c_c00492{transform:matrix(0.380714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380714,0.000000,0.000000,0.250000,0,0);}
.m21_c00492{transform:matrix(0.381818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381818,0.000000,0.000000,0.250000,0,0);}
.v0_c00492{vertical-align:0.000000px;}
.ls18_c00492{letter-spacing:-2.952180px;}
.lsf_c00492{letter-spacing:-2.813580px;}
.lsc_c00492{letter-spacing:-2.550240px;}
.ls15_c00492{letter-spacing:-2.443795px;}
.lsd_c00492{letter-spacing:-2.403601px;}
.ls14_c00492{letter-spacing:-1.985584px;}
.ls11_c00492{letter-spacing:-1.929312px;}
.ls8_c00492{letter-spacing:-1.479139px;}
.ls0_c00492{letter-spacing:0.000000px;}
.ls16_c00492{letter-spacing:0.192931px;}
.ls1_c00492{letter-spacing:0.676013px;}
.lse_c00492{letter-spacing:1.430906px;}
.ls1a_c00492{letter-spacing:1.446984px;}
.ls3_c00492{letter-spacing:2.467912px;}
.ls12_c00492{letter-spacing:2.701037px;}
.ls4_c00492{letter-spacing:2.998472px;}
.ls7_c00492{letter-spacing:3.316500px;}
.ls19_c00492{letter-spacing:3.524400px;}
.lsa_c00492{letter-spacing:3.564000px;}
.ls5_c00492{letter-spacing:3.692700px;}
.lsb_c00492{letter-spacing:3.880810px;}
.ls2_c00492{letter-spacing:4.019400px;}
.ls13_c00492{letter-spacing:4.059000px;}
.ls6_c00492{letter-spacing:4.336200px;}
.ls9_c00492{letter-spacing:4.633200px;}
.ls1b_c00492{letter-spacing:31.363200px;}
.ls10_c00492{letter-spacing:49.896198px;}
.ls17_c00492{letter-spacing:58.449798px;}
.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:-20.097000px;}
.ws1_c00492{word-spacing:0.000000px;}
._2_c00492{width:31.394880px;}
._0_c00492{width:39.392100px;}
._1_c00492{width:43.045051px;}
.fc0_c00492{color:transparent;}
.fs8_c00492{font-size:22.176000px;}
.fs2_c00492{font-size:22.572000px;}
.fs13_c00492{font-size:26.928000px;}
.fs0_c00492{font-size:28.314000px;}
.fs14_c00492{font-size:31.363200px;}
.fsd_c00492{font-size:39.996198px;}
.fse_c00492{font-size:49.896198px;}
.fs10_c00492{font-size:58.449798px;}
.fs6_c00492{font-size:66.330000px;}
.fs12_c00492{font-size:67.320000px;}
.fs11_c00492{font-size:70.488000px;}
.fsa_c00492{font-size:71.280000px;}
.fsb_c00492{font-size:72.864000px;}
.fs4_c00492{font-size:73.854000px;}
.fsc_c00492{font-size:77.616198px;}
.fs1_c00492{font-size:78.606198px;}
.fs3_c00492{font-size:80.388000px;}
.fsf_c00492{font-size:81.180000px;}
.fs7_c00492{font-size:84.348000px;}
.fs5_c00492{font-size:86.724000px;}
.fs9_c00492{font-size:92.664000px;}
.y0_c00492{bottom:0.000000px;}
.y23_c00492{bottom:61.212735px;}
.y22_c00492{bottom:71.548335px;}
.y1_c00492{bottom:76.500000px;}
.y21_c00492{bottom:84.730185px;}
.y20_c00492{bottom:127.141785px;}
.y1f_c00492{bottom:159.222735px;}
.y1e_c00492{bottom:191.298735px;}
.y1d_c00492{bottom:223.013385px;}
.y1c_c00492{bottom:273.983535px;}
.y1b_c00492{bottom:286.096185px;}
.y1a_c00492{bottom:317.107935px;}
.y19_c00492{bottom:348.466185px;}
.y18_c00492{bottom:380.903535px;}
.y17_c00492{bottom:413.335935px;}
.y16_c00492{bottom:445.411935px;}
.y15_c00492{bottom:477.487935px;}
.y14_c00492{bottom:508.851135px;}
.y13_c00492{bottom:540.570735px;}
.y12_c00492{bottom:572.285385px;}
.y11_c00492{bottom:604.009935px;}
.y10_c00492{bottom:635.373135px;}
.yf_c00492{bottom:667.087785px;}
.ye_c00492{bottom:698.450985px;}
.yd_c00492{bottom:722.691135px;}
.yc_c00492{bottom:730.531935px;}
.yb_c00492{bottom:762.246585px;}
.ya_c00492{bottom:826.042185px;}
.y9_c00492{bottom:857.405385px;}
.y8_c00492{bottom:889.486335px;}
.y7_c00492{bottom:908.014185px;}
.y6_c00492{bottom:920.849535px;}
.y2_c00492{bottom:1032.397785px;}
.y5_c00492{bottom:1042.020585px;}
.y4_c00492{bottom:1050.930585px;}
.y3_c00492{bottom:1106.170110px;}
.h16_c00492{height:20.887891px;}
.ha_c00492{height:23.128875px;}
.h4_c00492{height:23.541891px;}
.h15_c00492{height:28.085063px;}
.h2_c00492{height:29.530617px;}
.h10_c00492{height:33.230868px;}
.h12_c00492{height:38.927565px;}
.h14_c00492{height:66.070898px;}
.h8_c00492{height:69.180117px;}
.he_c00492{height:71.512031px;}
.h6_c00492{height:72.483662px;}
.hd_c00492{height:74.342813px;}
.hf_c00492{height:76.176054px;}
.h3_c00492{height:77.147685px;}
.h5_c00492{height:78.896426px;}
.h11_c00492{height:79.673730px;}
.h9_c00492{height:82.782949px;}
.hc_c00492{height:85.072518px;}
.h7_c00492{height:85.114863px;}
.h13_c00492{height:87.972328px;}
.hb_c00492{height:90.944648px;}
.h1_c00492{height:1110.000000px;}
.h0_c00492{height:1263.000000px;}
.w1_c00492{width:763.500000px;}
.w0_c00492{width:892.500000px;}
.x0_c00492{left:0.000000px;}
.x1_c00492{left:64.500000px;}
.x34_c00492{left:87.635835px;}
.x5_c00492{left:88.660485px;}
.x11_c00492{left:91.001835px;}
.x66_c00492{left:109.767285px;}
.x55_c00492{left:119.256435px;}
.x1a_c00492{left:121.523535px;}
.x54_c00492{left:131.131485px;}
.x2e_c00492{left:132.245235px;}
.x12_c00492{left:134.027235px;}
.x28_c00492{left:142.739235px;}
.x50_c00492{left:144.298485px;}
.x42_c00492{left:154.342035px;}
.x6_c00492{left:155.396385px;}
.x58_c00492{left:164.162835px;}
.x29_c00492{left:165.667635px;}
.x1b_c00492{left:175.924035px;}
.x2f_c00492{left:177.423885px;}
.x4d_c00492{left:187.427835px;}
.x25_c00492{left:197.971335px;}
.x5a_c00492{left:199.218735px;}
.x5f_c00492{left:202.866885px;}
.x3a_c00492{left:209.678085px;}
.x30_c00492{left:210.960135px;}
.x1c_c00492{left:221.350185px;}
.x2a_c00492{left:231.111585px;}
.x13_c00492{left:232.576785px;}
.x51_c00492{left:243.080685px;}
.x1d_c00492{left:254.094435px;}
.x56_c00492{left:255.158685px;}
.x64_c00492{left:263.920185px;}
.x5b_c00492{left:265.321035px;}
.x4c_c00492{left:266.484285px;}
.x14_c00492{left:276.894135px;}
.x35_c00492{left:287.576235px;}
.x7_c00492{left:288.595935px;}
.x1e_c00492{left:299.629485px;}
.x46_c00492{left:309.336435px;}
.x8_c00492{left:320.592735px;}
.x57_c00492{left:330.913485px;}
.x31_c00492{left:331.992585px;}
.x52_c00492{left:333.126135px;}
.x2b_c00492{left:343.535985px;}
.x4e_c00492{left:365.692185px;}
.x5c_c00492{left:375.998085px;}
.x1f_c00492{left:377.111835px;}
.x26_c00492{left:387.001935px;}
.x15_c00492{left:388.081035px;}
.x32_c00492{left:398.634435px;}
.x36_c00492{left:400.525335px;}
.x9_c00492{left:409.697685px;}
.x43_c00492{left:410.940135px;}
.x67_c00492{left:419.345235px;}
.x27_c00492{left:421.265835px;}
.x3b_c00492{left:432.690435px;}
.x20_c00492{left:442.837935px;}
.x47_c00492{left:444.105135px;}
.xa_c00492{left:454.782285px;}
.x68_c00492{left:463.865535px;}
.x37_c00492{left:465.805935px;}
.x16_c00492{left:467.563185px;}
.x63_c00492{left:476.478135px;}
.x49_c00492{left:479.680785px;}
.x5d_c00492{left:487.907685px;}
.x60_c00492{left:497.906685px;}
.x3c_c00492{left:499.688685px;}
.x10_c00492{left:503.321985px;}
.x4a_c00492{left:508.766985px;}
.xb_c00492{left:510.009435px;}
.x59_c00492{left:519.449085px;}
.x61_c00492{left:531.017235px;}
.x17_c00492{left:532.809135px;}
.x65_c00492{left:540.833085px;}
.x2c_c00492{left:542.976435px;}
.x4f_c00492{left:554.579235px;}
.x21_c00492{left:563.687235px;}
.x48_c00492{left:564.850485px;}
.x18_c00492{left:565.894935px;}
.x62_c00492{left:575.552385px;}
.x3d_c00492{left:578.071935px;}
.x38_c00492{left:587.536335px;}
.xc_c00492{left:598.738185px;}
.x3e_c00492{left:600.168735px;}
.x4b_c00492{left:609.093585px;}
.x22_c00492{left:610.375635px;}
.x3f_c00492{left:612.048735px;}
.x2d_c00492{left:619.795485px;}
.x33_c00492{left:631.531935px;}
.x44_c00492{left:642.837735px;}
.x40_c00492{left:653.302035px;}
.xd_c00492{left:654.717735px;}
.x23_c00492{left:664.667235px;}
.x4_c00492{left:674.750385px;}
.x5e_c00492{left:675.755235px;}
.xe_c00492{left:677.062035px;}
.x53_c00492{left:686.155185px;}
.x45_c00492{left:695.594835px;}
.x19_c00492{left:696.931335px;}
.x41_c00492{left:698.084685px;}
.x6a_c00492{left:701.703135px;}
.x6b_c00492{left:703.212885px;}
.xf_c00492{left:707.984685px;}
.x39_c00492{left:710.004285px;}
.x3_c00492{left:711.716985px;}
.x69_c00492{left:719.231085px;}
.x24_c00492{left:720.265635px;}
.x2_c00492{left:737.799525px;}
@media print{
.v0_c00492{vertical-align:0.000000pt;}
.ls18_c00492{letter-spacing:-2.624160pt;}
.lsf_c00492{letter-spacing:-2.500960pt;}
.lsc_c00492{letter-spacing:-2.266880pt;}
.ls15_c00492{letter-spacing:-2.172262pt;}
.lsd_c00492{letter-spacing:-2.136534pt;}
.ls14_c00492{letter-spacing:-1.764963pt;}
.ls11_c00492{letter-spacing:-1.714944pt;}
.ls8_c00492{letter-spacing:-1.314790pt;}
.ls0_c00492{letter-spacing:0.000000pt;}
.ls16_c00492{letter-spacing:0.171494pt;}
.ls1_c00492{letter-spacing:0.600901pt;}
.lse_c00492{letter-spacing:1.271917pt;}
.ls1a_c00492{letter-spacing:1.286208pt;}
.ls3_c00492{letter-spacing:2.193699pt;}
.ls12_c00492{letter-spacing:2.400922pt;}
.ls4_c00492{letter-spacing:2.665309pt;}
.ls7_c00492{letter-spacing:2.948000pt;}
.ls19_c00492{letter-spacing:3.132800pt;}
.lsa_c00492{letter-spacing:3.168000pt;}
.ls5_c00492{letter-spacing:3.282400pt;}
.lsb_c00492{letter-spacing:3.449609pt;}
.ls2_c00492{letter-spacing:3.572800pt;}
.ls13_c00492{letter-spacing:3.608000pt;}
.ls6_c00492{letter-spacing:3.854400pt;}
.ls9_c00492{letter-spacing:4.118400pt;}
.ls1b_c00492{letter-spacing:27.878400pt;}
.ls10_c00492{letter-spacing:44.352176pt;}
.ls17_c00492{letter-spacing:51.955376pt;}
.ws0_c00492{word-spacing:-17.864000pt;}
.ws1_c00492{word-spacing:0.000000pt;}
._2_c00492{width:27.906560pt;}
._0_c00492{width:35.015200pt;}
._1_c00492{width:38.262268pt;}
.fs8_c00492{font-size:19.712000pt;}
.fs2_c00492{font-size:20.064000pt;}
.fs13_c00492{font-size:23.936000pt;}
.fs0_c00492{font-size:25.168000pt;}
.fs14_c00492{font-size:27.878400pt;}
.fsd_c00492{font-size:35.552176pt;}
.fse_c00492{font-size:44.352176pt;}
.fs10_c00492{font-size:51.955376pt;}
.fs6_c00492{font-size:58.960000pt;}
.fs12_c00492{font-size:59.840000pt;}
.fs11_c00492{font-size:62.656000pt;}
.fsa_c00492{font-size:63.360000pt;}
.fsb_c00492{font-size:64.768000pt;}
.fs4_c00492{font-size:65.648000pt;}
.fsc_c00492{font-size:68.992176pt;}
.fs1_c00492{font-size:69.872176pt;}
.fs3_c00492{font-size:71.456000pt;}
.fsf_c00492{font-size:72.160000pt;}
.fs7_c00492{font-size:74.976000pt;}
.fs5_c00492{font-size:77.088000pt;}
.fs9_c00492{font-size:82.368000pt;}
.y0_c00492{bottom:0.000000pt;}
.y23_c00492{bottom:54.411320pt;}
.y22_c00492{bottom:63.598520pt;}
.y1_c00492{bottom:68.000000pt;}
.y21_c00492{bottom:75.315720pt;}
.y20_c00492{bottom:113.014920pt;}
.y1f_c00492{bottom:141.531320pt;}
.y1e_c00492{bottom:170.043320pt;}
.y1d_c00492{bottom:198.234120pt;}
.y1c_c00492{bottom:243.540920pt;}
.y1b_c00492{bottom:254.307720pt;}
.y1a_c00492{bottom:281.873720pt;}
.y19_c00492{bottom:309.747720pt;}
.y18_c00492{bottom:338.580920pt;}
.y17_c00492{bottom:367.409720pt;}
.y16_c00492{bottom:395.921720pt;}
.y15_c00492{bottom:424.433720pt;}
.y14_c00492{bottom:452.312120pt;}
.y13_c00492{bottom:480.507320pt;}
.y12_c00492{bottom:508.698120pt;}
.y11_c00492{bottom:536.897720pt;}
.y10_c00492{bottom:564.776120pt;}
.yf_c00492{bottom:592.966920pt;}
.ye_c00492{bottom:620.845320pt;}
.yd_c00492{bottom:642.392120pt;}
.yc_c00492{bottom:649.361720pt;}
.yb_c00492{bottom:677.552520pt;}
.ya_c00492{bottom:734.259720pt;}
.y9_c00492{bottom:762.138120pt;}
.y8_c00492{bottom:790.654520pt;}
.y7_c00492{bottom:807.123720pt;}
.y6_c00492{bottom:818.532920pt;}
.y2_c00492{bottom:917.686920pt;}
.y5_c00492{bottom:926.240520pt;}
.y4_c00492{bottom:934.160520pt;}
.y3_c00492{bottom:983.262320pt;}
.h16_c00492{height:18.567014pt;}
.ha_c00492{height:20.559000pt;}
.h4_c00492{height:20.926125pt;}
.h15_c00492{height:24.964500pt;}
.h2_c00492{height:26.249438pt;}
.h10_c00492{height:29.538549pt;}
.h12_c00492{height:34.602280pt;}
.h14_c00492{height:58.729688pt;}
.h8_c00492{height:61.493438pt;}
.he_c00492{height:63.566250pt;}
.h6_c00492{height:64.429922pt;}
.hd_c00492{height:66.082500pt;}
.hf_c00492{height:67.712048pt;}
.h3_c00492{height:68.575720pt;}
.h5_c00492{height:70.130156pt;}
.h11_c00492{height:70.821094pt;}
.h9_c00492{height:73.584844pt;}
.hc_c00492{height:75.620016pt;}
.h7_c00492{height:75.657656pt;}
.h13_c00492{height:78.197625pt;}
.hb_c00492{height:80.839688pt;}
.h1_c00492{height:986.666667pt;}
.h0_c00492{height:1122.666667pt;}
.w1_c00492{width:678.666667pt;}
.w0_c00492{width:793.333333pt;}
.x0_c00492{left:0.000000pt;}
.x1_c00492{left:57.333333pt;}
.x34_c00492{left:77.898520pt;}
.x5_c00492{left:78.809320pt;}
.x11_c00492{left:80.890520pt;}
.x66_c00492{left:97.570920pt;}
.x55_c00492{left:106.005720pt;}
.x1a_c00492{left:108.020920pt;}
.x54_c00492{left:116.561320pt;}
.x2e_c00492{left:117.551320pt;}
.x12_c00492{left:119.135320pt;}
.x28_c00492{left:126.879320pt;}
.x50_c00492{left:128.265320pt;}
.x42_c00492{left:137.192920pt;}
.x6_c00492{left:138.130120pt;}
.x58_c00492{left:145.922520pt;}
.x29_c00492{left:147.260120pt;}
.x1b_c00492{left:156.376920pt;}
.x2f_c00492{left:157.710120pt;}
.x4d_c00492{left:166.602520pt;}
.x25_c00492{left:175.974520pt;}
.x5a_c00492{left:177.083320pt;}
.x5f_c00492{left:180.326120pt;}
.x3a_c00492{left:186.380520pt;}
.x30_c00492{left:187.520120pt;}
.x1c_c00492{left:196.755720pt;}
.x2a_c00492{left:205.432520pt;}
.x13_c00492{left:206.734920pt;}
.x51_c00492{left:216.071720pt;}
.x1d_c00492{left:225.861720pt;}
.x56_c00492{left:226.807720pt;}
.x64_c00492{left:234.595720pt;}
.x5b_c00492{left:235.840920pt;}
.x4c_c00492{left:236.874920pt;}
.x14_c00492{left:246.128120pt;}
.x35_c00492{left:255.623320pt;}
.x7_c00492{left:256.529720pt;}
.x1e_c00492{left:266.337320pt;}
.x46_c00492{left:274.965720pt;}
.x8_c00492{left:284.971320pt;}
.x57_c00492{left:294.145320pt;}
.x31_c00492{left:295.104520pt;}
.x52_c00492{left:296.112120pt;}
.x2b_c00492{left:305.365320pt;}
.x4e_c00492{left:325.059720pt;}
.x5c_c00492{left:334.220520pt;}
.x1f_c00492{left:335.210520pt;}
.x26_c00492{left:344.001720pt;}
.x15_c00492{left:344.960920pt;}
.x32_c00492{left:354.341720pt;}
.x36_c00492{left:356.022520pt;}
.x9_c00492{left:364.175720pt;}
.x43_c00492{left:365.280120pt;}
.x67_c00492{left:372.751320pt;}
.x27_c00492{left:374.458520pt;}
.x3b_c00492{left:384.613720pt;}
.x20_c00492{left:393.633720pt;}
.x47_c00492{left:394.760120pt;}
.xa_c00492{left:404.250920pt;}
.x68_c00492{left:412.324920pt;}
.x37_c00492{left:414.049720pt;}
.x16_c00492{left:415.611720pt;}
.x63_c00492{left:423.536120pt;}
.x49_c00492{left:426.382920pt;}
.x5d_c00492{left:433.695720pt;}
.x60_c00492{left:442.583720pt;}
.x3c_c00492{left:444.167720pt;}
.x10_c00492{left:447.397320pt;}
.x4a_c00492{left:452.237320pt;}
.xb_c00492{left:453.341720pt;}
.x59_c00492{left:461.732520pt;}
.x61_c00492{left:472.015320pt;}
.x17_c00492{left:473.608120pt;}
.x65_c00492{left:480.740520pt;}
.x2c_c00492{left:482.645720pt;}
.x4f_c00492{left:492.959320pt;}
.x21_c00492{left:501.055320pt;}
.x48_c00492{left:502.089320pt;}
.x18_c00492{left:503.017720pt;}
.x62_c00492{left:511.602120pt;}
.x3d_c00492{left:513.841720pt;}
.x38_c00492{left:522.254520pt;}
.xc_c00492{left:532.211720pt;}
.x3e_c00492{left:533.483320pt;}
.x4b_c00492{left:541.416520pt;}
.x22_c00492{left:542.556120pt;}
.x3f_c00492{left:544.043320pt;}
.x2d_c00492{left:550.929320pt;}
.x33_c00492{left:561.361720pt;}
.x44_c00492{left:571.411320pt;}
.x40_c00492{left:580.712920pt;}
.xd_c00492{left:581.971320pt;}
.x23_c00492{left:590.815320pt;}
.x4_c00492{left:599.778120pt;}
.x5e_c00492{left:600.671320pt;}
.xe_c00492{left:601.832920pt;}
.x53_c00492{left:609.915720pt;}
.x45_c00492{left:618.306520pt;}
.x19_c00492{left:619.494520pt;}
.x41_c00492{left:620.519720pt;}
.x6a_c00492{left:623.736120pt;}
.x6b_c00492{left:625.078120pt;}
.xf_c00492{left:629.319720pt;}
.x39_c00492{left:631.114920pt;}
.x3_c00492{left:632.637320pt;}
.x69_c00492{left:639.316520pt;}
.x24_c00492{left:640.236120pt;}
.x2_c00492{left:655.821800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_35bcfb8d41b8fb8dd24a1d54.woff2')format("woff");}.ff1_c00493{font-family:ff1_c00493;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00493;src:url('chunks/assets/font_b8ac0ae1f2b1c8e6def1eefd.woff2')format("woff");}.ff2_c00493{font-family:ff2_c00493;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00493;src:url('chunks/assets/font_ea1f409d85927e4a4891f3fd.woff2')format("woff");}.ff3_c00493{font-family:ff3_c00493;line-height:0.666000;font-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_c00493{transform:matrix(0.017858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017858,0.000000,0.000000,0.250000,0,0);}
.ma6_c00493{transform:matrix(0.111306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111306,0.000000,0.000000,0.250000,0,0);}
.m2_c00493{transform:matrix(0.112501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112501,0.000000,0.000000,0.250000,0,0);}
.m8d_c00493{transform:matrix(0.135417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135417,0.000000,0.000000,0.250000,0,0);}
.m8c_c00493{transform:matrix(0.166666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166666,0.000000,0.000000,0.250000,0,0);}
.m74_c00493{transform:matrix(0.190678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190678,0.000000,0.000000,0.250000,0,0);}
.m37_c00493{transform:matrix(0.199562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199562,0.000000,0.000000,0.250000,0,0);}
.m0_c00493{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m88_c00493{transform:matrix(0.250897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250897,0.000000,0.000000,0.250000,0,0);}
.m79_c00493{transform:matrix(0.251047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251047,0.000000,0.000000,0.250000,0,0);}
.m9f_c00493{transform:matrix(0.254778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254778,0.000000,0.000000,0.250000,0,0);}
.m97_c00493{transform:matrix(0.255428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255428,0.000000,0.000000,0.250000,0,0);}
.m26_c00493{transform:matrix(0.255459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255459,0.000000,0.000000,0.250000,0,0);}
.m44_c00493{transform:matrix(0.255599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255599,0.000000,0.000000,0.250000,0,0);}
.m67_c00493{transform:matrix(0.256404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256404,0.000000,0.000000,0.250000,0,0);}
.m2c_c00493{transform:matrix(0.257310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257310,0.000000,0.000000,0.250000,0,0);}
.m31_c00493{transform:matrix(0.257706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257706,0.000000,0.000000,0.250000,0,0);}
.m78_c00493{transform:matrix(0.258282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258282,0.000000,0.000000,0.250000,0,0);}
.m7c_c00493{transform:matrix(0.259374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259374,0.000000,0.000000,0.250000,0,0);}
.m33_c00493{transform:matrix(0.259623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259623,0.000000,0.000000,0.250000,0,0);}
.m39_c00493{transform:matrix(0.259706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259706,0.000000,0.000000,0.250000,0,0);}
.m8_c00493{transform:matrix(0.260021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260021,0.000000,0.000000,0.250000,0,0);}
.m42_c00493{transform:matrix(0.260069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260069,0.000000,0.000000,0.250000,0,0);}
.m36_c00493{transform:matrix(0.260635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260635,0.000000,0.000000,0.250000,0,0);}
.ma4_c00493{transform:matrix(0.260801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260801,0.000000,0.000000,0.250000,0,0);}
.m3e_c00493{transform:matrix(0.261041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261041,0.000000,0.000000,0.250000,0,0);}
.m4_c00493{transform:matrix(0.261599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261599,0.000000,0.000000,0.250000,0,0);}
.m76_c00493{transform:matrix(0.261917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261917,0.000000,0.000000,0.250000,0,0);}
.md_c00493{transform:matrix(0.262142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262142,0.000000,0.000000,0.250000,0,0);}
.m7f_c00493{transform:matrix(0.262858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262858,0.000000,0.000000,0.250000,0,0);}
.m4a_c00493{transform:matrix(0.262894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262894,0.000000,0.000000,0.250000,0,0);}
.m4d_c00493{transform:matrix(0.263361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263361,0.000000,0.000000,0.250000,0,0);}
.m38_c00493{transform:matrix(0.264094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264094,0.000000,0.000000,0.250000,0,0);}
.m1b_c00493{transform:matrix(0.264583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264583,0.000000,0.000000,0.250000,0,0);}
.m16_c00493{transform:matrix(0.266262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266262,0.000000,0.000000,0.250000,0,0);}
.m21_c00493{transform:matrix(0.266989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266989,0.000000,0.000000,0.250000,0,0);}
.m28_c00493{transform:matrix(0.267506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267506,0.000000,0.000000,0.250000,0,0);}
.m12_c00493{transform:matrix(0.267784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267784,0.000000,0.000000,0.250000,0,0);}
.m6_c00493{transform:matrix(0.268217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268217,0.000000,0.000000,0.250000,0,0);}
.m9e_c00493{transform:matrix(0.269140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269140,0.000000,0.000000,0.250000,0,0);}
.ma0_c00493{transform:matrix(0.269481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269481,0.000000,0.000000,0.250000,0,0);}
.m9d_c00493{transform:matrix(0.270418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270418,0.000000,0.000000,0.250000,0,0);}
.m61_c00493{transform:matrix(0.270450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270450,0.000000,0.000000,0.250000,0,0);}
.m8b_c00493{transform:matrix(0.270708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270708,0.000000,0.000000,0.250000,0,0);}
.m2f_c00493{transform:matrix(0.271853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271853,0.000000,0.000000,0.250000,0,0);}
.m6f_c00493{transform:matrix(0.272118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272118,0.000000,0.000000,0.250000,0,0);}
.m1_c00493{transform:matrix(0.272921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272921,0.000000,0.000000,0.250000,0,0);}
.m35_c00493{transform:matrix(0.273580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273580,0.000000,0.000000,0.250000,0,0);}
.m94_c00493{transform:matrix(0.274245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274245,0.000000,0.000000,0.250000,0,0);}
.m56_c00493{transform:matrix(0.274304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274304,0.000000,0.000000,0.250000,0,0);}
.ma1_c00493{transform:matrix(0.274458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274458,0.000000,0.000000,0.250000,0,0);}
.m18_c00493{transform:matrix(0.274865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274865,0.000000,0.000000,0.250000,0,0);}
.m5f_c00493{transform:matrix(0.275013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275013,0.000000,0.000000,0.250000,0,0);}
.m10_c00493{transform:matrix(0.277188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277188,0.000000,0.000000,0.250000,0,0);}
.m8f_c00493{transform:matrix(0.277684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277684,0.000000,0.000000,0.250000,0,0);}
.m29_c00493{transform:matrix(0.278036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278036,0.000000,0.000000,0.250000,0,0);}
.m40_c00493{transform:matrix(0.278703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278703,0.000000,0.000000,0.250000,0,0);}
.m1e_c00493{transform:matrix(0.279202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279202,0.000000,0.000000,0.250000,0,0);}
.m7_c00493{transform:matrix(0.279488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279488,0.000000,0.000000,0.250000,0,0);}
.m3c_c00493{transform:matrix(0.279847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279847,0.000000,0.000000,0.250000,0,0);}
.m95_c00493{transform:matrix(0.280161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280161,0.000000,0.000000,0.250000,0,0);}
.m98_c00493{transform:matrix(0.281723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281723,0.000000,0.000000,0.250000,0,0);}
.m49_c00493{transform:matrix(0.282166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282166,0.000000,0.000000,0.250000,0,0);}
.m15_c00493{transform:matrix(0.282923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282923,0.000000,0.000000,0.250000,0,0);}
.m27_c00493{transform:matrix(0.283438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283438,0.000000,0.000000,0.250000,0,0);}
.ma3_c00493{transform:matrix(0.283502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283502,0.000000,0.000000,0.250000,0,0);}
.m25_c00493{transform:matrix(0.283890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283890,0.000000,0.000000,0.250000,0,0);}
.m93_c00493{transform:matrix(0.284442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284442,0.000000,0.000000,0.250000,0,0);}
.m5c_c00493{transform:matrix(0.284504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284504,0.000000,0.000000,0.250000,0,0);}
.m53_c00493{transform:matrix(0.285670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285670,0.000000,0.000000,0.250000,0,0);}
.m5b_c00493{transform:matrix(0.285721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285721,0.000000,0.000000,0.250000,0,0);}
.mf_c00493{transform:matrix(0.286587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286587,0.000000,0.000000,0.250000,0,0);}
.m7d_c00493{transform:matrix(0.287521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287521,0.000000,0.000000,0.250000,0,0);}
.m4e_c00493{transform:matrix(0.288163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288163,0.000000,0.000000,0.250000,0,0);}
.m8a_c00493{transform:matrix(0.289133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289133,0.000000,0.000000,0.250000,0,0);}
.me_c00493{transform:matrix(0.289179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289179,0.000000,0.000000,0.250000,0,0);}
.m2d_c00493{transform:matrix(0.289342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289342,0.000000,0.000000,0.250000,0,0);}
.m80_c00493{transform:matrix(0.291047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291047,0.000000,0.000000,0.250000,0,0);}
.m64_c00493{transform:matrix(0.291432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291432,0.000000,0.000000,0.250000,0,0);}
.ma5_c00493{transform:matrix(0.291531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291531,0.000000,0.000000,0.250000,0,0);}
.m73_c00493{transform:matrix(0.292002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292002,0.000000,0.000000,0.250000,0,0);}
.m3a_c00493{transform:matrix(0.292162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292162,0.000000,0.000000,0.250000,0,0);}
.m24_c00493{transform:matrix(0.292247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292247,0.000000,0.000000,0.250000,0,0);}
.m51_c00493{transform:matrix(0.292320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292320,0.000000,0.000000,0.250000,0,0);}
.m1a_c00493{transform:matrix(0.292543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292543,0.000000,0.000000,0.250000,0,0);}
.m2a_c00493{transform:matrix(0.293278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293278,0.000000,0.000000,0.250000,0,0);}
.m47_c00493{transform:matrix(0.293296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293296,0.000000,0.000000,0.250000,0,0);}
.m50_c00493{transform:matrix(0.293534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293534,0.000000,0.000000,0.250000,0,0);}
.m3_c00493{transform:matrix(0.294024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294024,0.000000,0.000000,0.250000,0,0);}
.m19_c00493{transform:matrix(0.294059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294059,0.000000,0.000000,0.250000,0,0);}
.m20_c00493{transform:matrix(0.294820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294820,0.000000,0.000000,0.250000,0,0);}
.m1d_c00493{transform:matrix(0.294884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294884,0.000000,0.000000,0.250000,0,0);}
.m32_c00493{transform:matrix(0.295127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295127,0.000000,0.000000,0.250000,0,0);}
.m87_c00493{transform:matrix(0.295310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295310,0.000000,0.000000,0.250000,0,0);}
.m81_c00493{transform:matrix(0.295465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295465,0.000000,0.000000,0.250000,0,0);}
.m65_c00493{transform:matrix(0.295777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295777,0.000000,0.000000,0.250000,0,0);}
.m5_c00493{transform:matrix(0.295987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295987,0.000000,0.000000,0.250000,0,0);}
.m69_c00493{transform:matrix(0.296840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296840,0.000000,0.000000,0.250000,0,0);}
.m4c_c00493{transform:matrix(0.297052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297052,0.000000,0.000000,0.250000,0,0);}
.m70_c00493{transform:matrix(0.297862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297862,0.000000,0.000000,0.250000,0,0);}
.m22_c00493{transform:matrix(0.297908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297908,0.000000,0.000000,0.250000,0,0);}
.m5e_c00493{transform:matrix(0.298618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298618,0.000000,0.000000,0.250000,0,0);}
.m23_c00493{transform:matrix(0.298824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298824,0.000000,0.000000,0.250000,0,0);}
.m63_c00493{transform:matrix(0.298947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298947,0.000000,0.000000,0.250000,0,0);}
.m59_c00493{transform:matrix(0.299256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299256,0.000000,0.000000,0.250000,0,0);}
.m54_c00493{transform:matrix(0.299675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299675,0.000000,0.000000,0.250000,0,0);}
.m57_c00493{transform:matrix(0.300685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300685,0.000000,0.000000,0.250000,0,0);}
.m9a_c00493{transform:matrix(0.301251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301251,0.000000,0.000000,0.250000,0,0);}
.m3f_c00493{transform:matrix(0.301307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301307,0.000000,0.000000,0.250000,0,0);}
.m91_c00493{transform:matrix(0.301510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301510,0.000000,0.000000,0.250000,0,0);}
.ma_c00493{transform:matrix(0.301666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301666,0.000000,0.000000,0.250000,0,0);}
.m46_c00493{transform:matrix(0.303809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303809,0.000000,0.000000,0.250000,0,0);}
.m55_c00493{transform:matrix(0.304307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304307,0.000000,0.000000,0.250000,0,0);}
.m71_c00493{transform:matrix(0.304716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304716,0.000000,0.000000,0.250000,0,0);}
.m3b_c00493{transform:matrix(0.304911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304911,0.000000,0.000000,0.250000,0,0);}
.m85_c00493{transform:matrix(0.305140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305140,0.000000,0.000000,0.250000,0,0);}
.m90_c00493{transform:matrix(0.305638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305638,0.000000,0.000000,0.250000,0,0);}
.m9b_c00493{transform:matrix(0.307251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307251,0.000000,0.000000,0.250000,0,0);}
.m92_c00493{transform:matrix(0.308614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308614,0.000000,0.000000,0.250000,0,0);}
.m43_c00493{transform:matrix(0.308763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308763,0.000000,0.000000,0.250000,0,0);}
.m41_c00493{transform:matrix(0.309399,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309399,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309399,0.000000,0.000000,0.250000,0,0);}
.m4f_c00493{transform:matrix(0.309608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309608,0.000000,0.000000,0.250000,0,0);}
.m6a_c00493{transform:matrix(0.309925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309925,0.000000,0.000000,0.250000,0,0);}
.m6c_c00493{transform:matrix(0.314433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314433,0.000000,0.000000,0.250000,0,0);}
.m48_c00493{transform:matrix(0.315117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315117,0.000000,0.000000,0.250000,0,0);}
.m58_c00493{transform:matrix(0.315300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315300,0.000000,0.000000,0.250000,0,0);}
.m45_c00493{transform:matrix(0.315503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315503,0.000000,0.000000,0.250000,0,0);}
.m14_c00493{transform:matrix(0.316153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316153,0.000000,0.000000,0.250000,0,0);}
.m9_c00493{transform:matrix(0.316389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316389,0.000000,0.000000,0.250000,0,0);}
.m7a_c00493{transform:matrix(0.317216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317216,0.000000,0.000000,0.250000,0,0);}
.m6e_c00493{transform:matrix(0.317759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317759,0.000000,0.000000,0.250000,0,0);}
.m77_c00493{transform:matrix(0.318366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318366,0.000000,0.000000,0.250000,0,0);}
.m13_c00493{transform:matrix(0.319381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319381,0.000000,0.000000,0.250000,0,0);}
.m4b_c00493{transform:matrix(0.319409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319409,0.000000,0.000000,0.250000,0,0);}
.m2b_c00493{transform:matrix(0.319709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319709,0.000000,0.000000,0.250000,0,0);}
.ma2_c00493{transform:matrix(0.320440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320440,0.000000,0.000000,0.250000,0,0);}
.m5d_c00493{transform:matrix(0.320744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320744,0.000000,0.000000,0.250000,0,0);}
.m34_c00493{transform:matrix(0.322998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322998,0.000000,0.000000,0.250000,0,0);}
.m17_c00493{transform:matrix(0.324334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324334,0.000000,0.000000,0.250000,0,0);}
.m11_c00493{transform:matrix(0.325467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325467,0.000000,0.000000,0.250000,0,0);}
.m66_c00493{transform:matrix(0.325536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325536,0.000000,0.000000,0.250000,0,0);}
.m99_c00493{transform:matrix(0.326097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326097,0.000000,0.000000,0.250000,0,0);}
.m68_c00493{transform:matrix(0.326239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326239,0.000000,0.000000,0.250000,0,0);}
.m89_c00493{transform:matrix(0.326587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326587,0.000000,0.000000,0.250000,0,0);}
.mc_c00493{transform:matrix(0.327781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327781,0.000000,0.000000,0.250000,0,0);}
.m83_c00493{transform:matrix(0.328455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328455,0.000000,0.000000,0.250000,0,0);}
.m96_c00493{transform:matrix(0.329069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329069,0.000000,0.000000,0.250000,0,0);}
.m1c_c00493{transform:matrix(0.330176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330176,0.000000,0.000000,0.250000,0,0);}
.m7e_c00493{transform:matrix(0.330857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330857,0.000000,0.000000,0.250000,0,0);}
.m84_c00493{transform:matrix(0.330872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330872,0.000000,0.000000,0.250000,0,0);}
.m30_c00493{transform:matrix(0.333254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333254,0.000000,0.000000,0.250000,0,0);}
.m6b_c00493{transform:matrix(0.333753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333753,0.000000,0.000000,0.250000,0,0);}
.m82_c00493{transform:matrix(0.334784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334784,0.000000,0.000000,0.250000,0,0);}
.m3d_c00493{transform:matrix(0.335052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335052,0.000000,0.000000,0.250000,0,0);}
.m6d_c00493{transform:matrix(0.337127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337127,0.000000,0.000000,0.250000,0,0);}
.m7b_c00493{transform:matrix(0.337226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337226,0.000000,0.000000,0.250000,0,0);}
.m72_c00493{transform:matrix(0.337918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337918,0.000000,0.000000,0.250000,0,0);}
.m75_c00493{transform:matrix(0.338421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338421,0.000000,0.000000,0.250000,0,0);}
.m5a_c00493{transform:matrix(0.340736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340736,0.000000,0.000000,0.250000,0,0);}
.m1f_c00493{transform:matrix(0.344194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344194,0.000000,0.000000,0.250000,0,0);}
.m62_c00493{transform:matrix(0.346193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346193,0.000000,0.000000,0.250000,0,0);}
.m2e_c00493{transform:matrix(0.346926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346926,0.000000,0.000000,0.250000,0,0);}
.m86_c00493{transform:matrix(0.350915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350915,0.000000,0.000000,0.250000,0,0);}
.mb_c00493{transform:matrix(0.374684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374684,0.000000,0.000000,0.250000,0,0);}
.m52_c00493{transform:matrix(0.380631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380631,0.000000,0.000000,0.250000,0,0);}
.m60_c00493{transform:matrix(0.392526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392526,0.000000,0.000000,0.250000,0,0);}
.m9c_c00493{transform:matrix(0.425279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425279,0.000000,0.000000,0.250000,0,0);}
.v1_c00493{vertical-align:-28.512000px;}
.v0_c00493{vertical-align:0.000000px;}
.lse_c00493{letter-spacing:-2.778930px;}
.ls11_c00493{letter-spacing:-2.270783px;}
.ls4_c00493{letter-spacing:-2.151686px;}
.ls16_c00493{letter-spacing:-1.857240px;}
.ls15_c00493{letter-spacing:-1.222729px;}
.ls14_c00493{letter-spacing:-0.494328px;}
.ls12_c00493{letter-spacing:-0.285833px;}
.ls0_c00493{letter-spacing:0.000000px;}
.lsf_c00493{letter-spacing:0.358974px;}
.lsb_c00493{letter-spacing:1.834094px;}
.ls6_c00493{letter-spacing:2.350181px;}
.ls10_c00493{letter-spacing:2.588375px;}
.lsd_c00493{letter-spacing:3.183860px;}
.ls8_c00493{letter-spacing:3.493512px;}
.lsa_c00493{letter-spacing:3.504610px;}
.ls5_c00493{letter-spacing:3.603610px;}
.ls7_c00493{letter-spacing:3.722400px;}
.lsc_c00493{letter-spacing:3.898442px;}
.ls3_c00493{letter-spacing:3.969900px;}
.ls1_c00493{letter-spacing:3.999610px;}
.ls2_c00493{letter-spacing:28.512198px;}
.ls9_c00493{letter-spacing:54.172998px;}
.ls13_c00493{letter-spacing:59.875398px;}
.sc__c00493{text-shadow:none;}
.sc0_c00493{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00493{-webkit-text-stroke:0px transparent;}
.sc0_c00493{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00493{word-spacing:-17.578717px;}
.ws1_c00493{word-spacing:0.000000px;}
._2_c00493{margin-left:-8.594942px;}
._3_c00493{width:26.480915px;}
._5_c00493{width:30.250440px;}
._1_c00493{width:36.921060px;}
._4_c00493{width:45.846751px;}
._0_c00493{width:149.826600px;}
.fc0_c00493{color:transparent;}
.fs1_c00493{font-size:22.176000px;}
.fs0_c00493{font-size:27.720000px;}
.fs3_c00493{font-size:28.512198px;}
.fs4_c00493{font-size:33.660000px;}
.fsf_c00493{font-size:42.966198px;}
.fs10_c00493{font-size:53.064000px;}
.fsa_c00493{font-size:54.172998px;}
.fsd_c00493{font-size:59.875398px;}
.fs6_c00493{font-size:66.330000px;}
.fse_c00493{font-size:67.716198px;}
.fsb_c00493{font-size:70.092198px;}
.fs7_c00493{font-size:72.072198px;}
.fsc_c00493{font-size:73.260000px;}
.fs9_c00493{font-size:74.448000px;}
.fs8_c00493{font-size:74.844000px;}
.fs5_c00493{font-size:79.398000px;}
.fs2_c00493{font-size:79.992198px;}
.y0_c00493{bottom:0.000000px;}
.y20_c00493{bottom:19.865385px;}
.y1f_c00493{bottom:30.205935px;}
.y1_c00493{bottom:76.500000px;}
.y1e_c00493{bottom:127.498185px;}
.y1d_c00493{bottom:159.222735px;}
.y1c_c00493{bottom:191.650185px;}
.y1b_c00493{bottom:223.731135px;}
.y1a_c00493{bottom:256.163535px;}
.y19_c00493{bottom:319.602735px;}
.y18_c00493{bottom:350.960985px;}
.y17_c00493{bottom:383.036985px;}
.y16_c00493{bottom:414.756585px;}
.y15_c00493{bottom:446.832585px;}
.y14_c00493{bottom:477.844335px;}
.y13_c00493{bottom:509.558985px;}
.y12_c00493{bottom:541.283535px;}
.y11_c00493{bottom:572.646735px;}
.y10_c00493{bottom:636.085935px;}
.yf_c00493{bottom:667.805535px;}
.ye_c00493{bottom:699.163785px;}
.yd_c00493{bottom:731.244735px;}
.yc_c00493{bottom:763.315785px;}
.yb_c00493{bottom:794.678985px;}
.ya_c00493{bottom:809.647785px;}
.y9_c00493{bottom:826.754985px;}
.y8_c00493{bottom:889.124985px;}
.y7_c00493{bottom:920.136735px;}
.y6_c00493{bottom:1039.882185px;}
.y5_c00493{bottom:1047.010185px;}
.y4_c00493{bottom:1056.276585px;}
.y2_c00493{bottom:1065.542985px;}
.y3_c00493{bottom:1091.203785px;}
.h5_c00493{height:18.989124px;}
.h3_c00493{height:23.128875px;}
.h2_c00493{height:28.911094px;}
.h6_c00493{height:33.035449px;}
.hc_c00493{height:36.079217px;}
.hf_c00493{height:39.877015px;}
.h10_c00493{height:52.079414px;}
.hd_c00493{height:68.791659px;}
.h8_c00493{height:69.180117px;}
.hb_c00493{height:73.066641px;}
.ha_c00493{height:73.455293px;}
.h9_c00493{height:75.169050px;}
.he_c00493{height:76.407891px;}
.h7_c00493{height:77.924795px;}
.h4_c00493{height:78.507968px;}
.h1_c00493{height:1110.000000px;}
.h0_c00493{height:1263.000000px;}
.w1_c00493{width:763.500000px;}
.w0_c00493{width:892.500000px;}
.x0_c00493{left:0.000000px;}
.x2_c00493{left:47.516085px;}
.x1_c00493{left:64.500000px;}
.x3d_c00493{left:83.571885px;}
.x1c_c00493{left:85.190535px;}
.x7_c00493{left:86.225085px;}
.x4d_c00493{left:107.252685px;}
.x42_c00493{left:117.969435px;}
.x29_c00493{left:119.291085px;}
.x37_c00493{left:129.398985px;}
.x59_c00493{left:139.145535px;}
.x12_c00493{left:140.180085px;}
.x10_c00493{left:141.462135px;}
.x60_c00493{left:149.505885px;}
.x3e_c00493{left:151.456185px;}
.x38_c00493{left:162.474885px;}
.x8_c00493{left:173.043135px;}
.x22_c00493{left:174.171735px;}
.x13_c00493{left:185.650785px;}
.x1d_c00493{left:195.684435px;}
.x5a_c00493{left:206.312085px;}
.x9_c00493{left:207.410985px;}
.x2f_c00493{left:217.216935px;}
.x11_c00493{left:229.681035px;}
.x2a_c00493{left:238.650435px;}
.x14_c00493{left:240.462135px;}
.x49_c00493{left:250.921485px;}
.x1e_c00493{left:261.410535px;}
.x1b_c00493{left:265.276485px;}
.x2b_c00493{left:274.671585px;}
.x30_c00493{left:283.512285px;}
.xa_c00493{left:285.125985px;}
.x39_c00493{left:286.497135px;}
.x23_c00493{left:297.174285px;}
.x61_c00493{left:305.297235px;}
.x4e_c00493{left:306.326835px;}
.x40_c00493{left:308.158335px;}
.x15_c00493{left:318.231585px;}
.x4f_c00493{left:328.591935px;}
.x3_c00493{left:329.809635px;}
.x5c_c00493{left:340.585785px;}
.x24_c00493{left:351.218385px;}
.x3a_c00493{left:362.746935px;}
.x31_c00493{left:373.399335px;}
.x43_c00493{left:384.932835px;}
.x51_c00493{left:394.709085px;}
.x16_c00493{left:395.748585px;}
.x5d_c00493{left:405.811935px;}
.xb_c00493{left:407.386035px;}
.x17_c00493{left:418.033485px;}
.x2c_c00493{left:428.230485px;}
.x44_c00493{left:429.710535px;}
.xc_c00493{left:439.976835px;}
.x2d_c00493{left:450.322335px;}
.x25_c00493{left:452.233035px;}
.x32_c00493{left:462.286485px;}
.x45_c00493{left:463.543785px;}
.x4a_c00493{left:473.864535px;}
.x26_c00493{left:484.596135px;}
.x3b_c00493{left:495.382185px;}
.x4c_c00493{left:506.044485px;}
.x18_c00493{left:507.410685px;}
.x41_c00493{left:516.607785px;}
.x55_c00493{left:517.874985px;}
.x46_c00493{left:527.443335px;}
.x53_c00493{left:528.854085px;}
.x19_c00493{left:539.600535px;}
.x56_c00493{left:540.654885px;}
.x1f_c00493{left:551.010285px;}
.x33_c00493{left:560.994435px;}
.xd_c00493{left:562.291335px;}
.x58_c00493{left:571.493385px;}
.x57_c00493{left:573.022935px;}
.x20_c00493{left:583.417935px;}
.x5e_c00493{left:594.367335px;}
.x27_c00493{left:605.485035px;}
.x34_c00493{left:606.821535px;}
.xe_c00493{left:616.533435px;}
.x3c_c00493{left:617.657085px;}
.x21_c00493{left:628.225335px;}
.x47_c00493{left:637.768935px;}
.x28_c00493{left:639.050985px;}
.xf_c00493{left:649.713285px;}
.x52_c00493{left:651.104235px;}
.x4b_c00493{left:661.850685px;}
.x50_c00493{left:671.275485px;}
.x2e_c00493{left:672.334785px;}
.x5b_c00493{left:682.502085px;}
.x35_c00493{left:683.962335px;}
.x6_c00493{left:694.357335px;}
.x3f_c00493{left:695.852235px;}
.x54_c00493{left:699.059835px;}
.x62_c00493{left:700.109235px;}
.x4_c00493{left:703.435635px;}
.x5f_c00493{left:704.975085px;}
.x1a_c00493{left:705.994785px;}
.x5_c00493{left:713.117835px;}
.x36_c00493{left:716.736285px;}
.x48_c00493{left:727.368885px;}
.x63_c00493{left:734.996835px;}
@media print{
.v1_c00493{vertical-align:-25.344000pt;}
.v0_c00493{vertical-align:0.000000pt;}
.lse_c00493{letter-spacing:-2.470160pt;}
.ls11_c00493{letter-spacing:-2.018474pt;}
.ls4_c00493{letter-spacing:-1.912610pt;}
.ls16_c00493{letter-spacing:-1.650880pt;}
.ls15_c00493{letter-spacing:-1.086870pt;}
.ls14_c00493{letter-spacing:-0.439403pt;}
.ls12_c00493{letter-spacing:-0.254074pt;}
.ls0_c00493{letter-spacing:0.000000pt;}
.lsf_c00493{letter-spacing:0.319088pt;}
.lsb_c00493{letter-spacing:1.630306pt;}
.ls6_c00493{letter-spacing:2.089050pt;}
.ls10_c00493{letter-spacing:2.300778pt;}
.lsd_c00493{letter-spacing:2.830098pt;}
.ls8_c00493{letter-spacing:3.105344pt;}
.lsa_c00493{letter-spacing:3.115209pt;}
.ls5_c00493{letter-spacing:3.203209pt;}
.ls7_c00493{letter-spacing:3.308800pt;}
.lsc_c00493{letter-spacing:3.465282pt;}
.ls3_c00493{letter-spacing:3.528800pt;}
.ls1_c00493{letter-spacing:3.555209pt;}
.ls2_c00493{letter-spacing:25.344176pt;}
.ls9_c00493{letter-spacing:48.153776pt;}
.ls13_c00493{letter-spacing:53.222576pt;}
.ws0_c00493{word-spacing:-15.625526pt;}
.ws1_c00493{word-spacing:0.000000pt;}
._2_c00493{margin-left:-7.639949pt;}
._3_c00493{width:23.538591pt;}
._5_c00493{width:26.889280pt;}
._1_c00493{width:32.818720pt;}
._4_c00493{width:40.752668pt;}
._0_c00493{width:133.179200pt;}
.fs1_c00493{font-size:19.712000pt;}
.fs0_c00493{font-size:24.640000pt;}
.fs3_c00493{font-size:25.344176pt;}
.fs4_c00493{font-size:29.920000pt;}
.fsf_c00493{font-size:38.192176pt;}
.fs10_c00493{font-size:47.168000pt;}
.fsa_c00493{font-size:48.153776pt;}
.fsd_c00493{font-size:53.222576pt;}
.fs6_c00493{font-size:58.960000pt;}
.fse_c00493{font-size:60.192176pt;}
.fsb_c00493{font-size:62.304176pt;}
.fs7_c00493{font-size:64.064176pt;}
.fsc_c00493{font-size:65.120000pt;}
.fs9_c00493{font-size:66.176000pt;}
.fs8_c00493{font-size:66.528000pt;}
.fs5_c00493{font-size:70.576000pt;}
.fs2_c00493{font-size:71.104176pt;}
.y0_c00493{bottom:0.000000pt;}
.y20_c00493{bottom:17.658120pt;}
.y1f_c00493{bottom:26.849720pt;}
.y1_c00493{bottom:68.000000pt;}
.y1e_c00493{bottom:113.331720pt;}
.y1d_c00493{bottom:141.531320pt;}
.y1c_c00493{bottom:170.355720pt;}
.y1b_c00493{bottom:198.872120pt;}
.y1a_c00493{bottom:227.700920pt;}
.y19_c00493{bottom:284.091320pt;}
.y18_c00493{bottom:311.965320pt;}
.y17_c00493{bottom:340.477320pt;}
.y16_c00493{bottom:368.672520pt;}
.y15_c00493{bottom:397.184520pt;}
.y14_c00493{bottom:424.750520pt;}
.y13_c00493{bottom:452.941320pt;}
.y12_c00493{bottom:481.140920pt;}
.y11_c00493{bottom:509.019320pt;}
.y10_c00493{bottom:565.409720pt;}
.yf_c00493{bottom:593.604920pt;}
.ye_c00493{bottom:621.478920pt;}
.yd_c00493{bottom:649.995320pt;}
.yc_c00493{bottom:678.502920pt;}
.yb_c00493{bottom:706.381320pt;}
.ya_c00493{bottom:719.686920pt;}
.y9_c00493{bottom:734.893320pt;}
.y8_c00493{bottom:790.333320pt;}
.y7_c00493{bottom:817.899320pt;}
.y6_c00493{bottom:924.339720pt;}
.y5_c00493{bottom:930.675720pt;}
.y4_c00493{bottom:938.912520pt;}
.y2_c00493{bottom:947.149320pt;}
.y3_c00493{bottom:969.958920pt;}
.h5_c00493{height:16.879221pt;}
.h3_c00493{height:20.559000pt;}
.h2_c00493{height:25.698750pt;}
.h6_c00493{height:29.364844pt;}
.hc_c00493{height:32.070415pt;}
.hf_c00493{height:35.446236pt;}
.h10_c00493{height:46.292813pt;}
.hd_c00493{height:61.148141pt;}
.h8_c00493{height:61.493438pt;}
.hb_c00493{height:64.948125pt;}
.ha_c00493{height:65.293594pt;}
.h9_c00493{height:66.816934pt;}
.he_c00493{height:67.918125pt;}
.h7_c00493{height:69.266484pt;}
.h4_c00493{height:69.784860pt;}
.h1_c00493{height:986.666667pt;}
.h0_c00493{height:1122.666667pt;}
.w1_c00493{width:678.666667pt;}
.w0_c00493{width:793.333333pt;}
.x0_c00493{left:0.000000pt;}
.x2_c00493{left:42.236520pt;}
.x1_c00493{left:57.333333pt;}
.x3d_c00493{left:74.286120pt;}
.x1c_c00493{left:75.724920pt;}
.x7_c00493{left:76.644520pt;}
.x4d_c00493{left:95.335720pt;}
.x42_c00493{left:104.861720pt;}
.x29_c00493{left:106.036520pt;}
.x37_c00493{left:115.021320pt;}
.x59_c00493{left:123.684920pt;}
.x12_c00493{left:124.604520pt;}
.x10_c00493{left:125.744120pt;}
.x60_c00493{left:132.894120pt;}
.x3e_c00493{left:134.627720pt;}
.x38_c00493{left:144.422120pt;}
.x8_c00493{left:153.816120pt;}
.x22_c00493{left:154.819320pt;}
.x13_c00493{left:165.022920pt;}
.x1d_c00493{left:173.941720pt;}
.x5a_c00493{left:183.388520pt;}
.x9_c00493{left:184.365320pt;}
.x2f_c00493{left:193.081720pt;}
.x11_c00493{left:204.160920pt;}
.x2a_c00493{left:212.133720pt;}
.x14_c00493{left:213.744120pt;}
.x49_c00493{left:223.041320pt;}
.x1e_c00493{left:232.364920pt;}
.x1b_c00493{left:235.801320pt;}
.x2b_c00493{left:244.152520pt;}
.x30_c00493{left:252.010920pt;}
.xa_c00493{left:253.445320pt;}
.x39_c00493{left:254.664120pt;}
.x23_c00493{left:264.154920pt;}
.x61_c00493{left:271.375320pt;}
.x4e_c00493{left:272.290520pt;}
.x40_c00493{left:273.918520pt;}
.x15_c00493{left:282.872520pt;}
.x4f_c00493{left:292.081720pt;}
.x3_c00493{left:293.164120pt;}
.x5c_c00493{left:302.742920pt;}
.x24_c00493{left:312.194120pt;}
.x3a_c00493{left:322.441720pt;}
.x31_c00493{left:331.910520pt;}
.x43_c00493{left:342.162520pt;}
.x51_c00493{left:350.852520pt;}
.x16_c00493{left:351.776520pt;}
.x5d_c00493{left:360.721720pt;}
.xb_c00493{left:362.120920pt;}
.x17_c00493{left:371.585320pt;}
.x2c_c00493{left:380.649320pt;}
.x44_c00493{left:381.964920pt;}
.xc_c00493{left:391.090520pt;}
.x2d_c00493{left:400.286520pt;}
.x25_c00493{left:401.984920pt;}
.x32_c00493{left:410.921320pt;}
.x45_c00493{left:412.038920pt;}
.x4a_c00493{left:421.212920pt;}
.x26_c00493{left:430.752120pt;}
.x3b_c00493{left:440.339720pt;}
.x4c_c00493{left:449.817320pt;}
.x18_c00493{left:451.031720pt;}
.x41_c00493{left:459.206920pt;}
.x55_c00493{left:460.333320pt;}
.x46_c00493{left:468.838520pt;}
.x53_c00493{left:470.092520pt;}
.x19_c00493{left:479.644920pt;}
.x56_c00493{left:480.582120pt;}
.x1f_c00493{left:489.786920pt;}
.x33_c00493{left:498.661720pt;}
.xd_c00493{left:499.814520pt;}
.x58_c00493{left:507.994120pt;}
.x57_c00493{left:509.353720pt;}
.x20_c00493{left:518.593720pt;}
.x5e_c00493{left:528.326520pt;}
.x27_c00493{left:538.208920pt;}
.x34_c00493{left:539.396920pt;}
.xe_c00493{left:548.029720pt;}
.x3c_c00493{left:549.028520pt;}
.x21_c00493{left:558.422520pt;}
.x47_c00493{left:566.905720pt;}
.x28_c00493{left:568.045320pt;}
.xf_c00493{left:577.522920pt;}
.x52_c00493{left:578.759320pt;}
.x4b_c00493{left:588.311720pt;}
.x50_c00493{left:596.689320pt;}
.x2e_c00493{left:597.630920pt;}
.x5b_c00493{left:606.668520pt;}
.x35_c00493{left:607.966520pt;}
.x6_c00493{left:617.206520pt;}
.x3f_c00493{left:618.535320pt;}
.x54_c00493{left:621.386520pt;}
.x62_c00493{left:622.319320pt;}
.x4_c00493{left:625.276120pt;}
.x5f_c00493{left:626.644520pt;}
.x1a_c00493{left:627.550920pt;}
.x5_c00493{left:633.882520pt;}
.x36_c00493{left:637.098920pt;}
.x48_c00493{left:646.550120pt;}
.x63_c00493{left:653.330520pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_160c01a35cedcf08e0e7051e.woff2')format("woff");}.ff1_c00494{font-family:ff1_c00494;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00494;src:url('chunks/assets/font_e414a7e2ebdcbda7b51e10cb.woff2')format("woff");}.ff2_c00494{font-family:ff2_c00494;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00494;src:url('chunks/assets/font_dab11ba7df022f74a179369d.woff2')format("woff");}.ff3_c00494{font-family:ff3_c00494;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00494;src:url('chunks/assets/font_90ab66ff9615574acc138d25.woff2')format("woff");}.ff4_c00494{font-family:ff4_c00494;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m8e_c00494{transform:matrix(0.119231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119231,0.000000,0.000000,0.250000,0,0);}
.ma1_c00494{transform:matrix(0.121598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121598,0.000000,0.000000,0.250000,0,0);}
.m82_c00494{transform:matrix(0.153125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153125,0.000000,0.000000,0.250000,0,0);}
.m48_c00494{transform:matrix(0.172222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172222,0.000000,0.000000,0.250000,0,0);}
.m49_c00494{transform:matrix(0.174999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174999,0.000000,0.000000,0.250000,0,0);}
.m1a_c00494{transform:matrix(0.176830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176830,0.000000,0.000000,0.250000,0,0);}
.m9f_c00494{transform:matrix(0.188492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188492,0.000000,0.000000,0.250000,0,0);}
.m6a_c00494{transform:matrix(0.190625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190625,0.000000,0.000000,0.250000,0,0);}
.m56_c00494{transform:matrix(0.195869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195869,0.000000,0.000000,0.250000,0,0);}
.ma0_c00494{transform:matrix(0.216226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216226,0.000000,0.000000,0.250000,0,0);}
.m5a_c00494{transform:matrix(0.219047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219047,0.000000,0.000000,0.250000,0,0);}
.m3e_c00494{transform:matrix(0.219587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219587,0.000000,0.000000,0.250000,0,0);}
.m96_c00494{transform:matrix(0.226852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226852,0.000000,0.000000,0.250000,0,0);}
.m64_c00494{transform:matrix(0.230259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230259,0.000000,0.000000,0.250000,0,0);}
.m6_c00494{transform:matrix(0.234477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234477,0.000000,0.000000,0.250000,0,0);}
.m4d_c00494{transform:matrix(0.242074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242074,0.000000,0.000000,0.250000,0,0);}
.m9_c00494{transform:matrix(0.248206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248206,0.000000,0.000000,0.250000,0,0);}
.m2b_c00494{transform:matrix(0.248233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248233,0.000000,0.000000,0.250000,0,0);}
.m0_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);}
.m4e_c00494{transform:matrix(0.250897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250897,0.000000,0.000000,0.250000,0,0);}
.m6d_c00494{transform:matrix(0.252607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252607,0.000000,0.000000,0.250000,0,0);}
.m10_c00494{transform:matrix(0.254778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254778,0.000000,0.000000,0.250000,0,0);}
.m4a_c00494{transform:matrix(0.255441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255441,0.000000,0.000000,0.250000,0,0);}
.m47_c00494{transform:matrix(0.255459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255459,0.000000,0.000000,0.250000,0,0);}
.m1e_c00494{transform:matrix(0.256488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256488,0.000000,0.000000,0.250000,0,0);}
.m37_c00494{transform:matrix(0.257310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257310,0.000000,0.000000,0.250000,0,0);}
.m22_c00494{transform:matrix(0.257706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257706,0.000000,0.000000,0.250000,0,0);}
.m36_c00494{transform:matrix(0.258146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258146,0.000000,0.000000,0.250000,0,0);}
.m20_c00494{transform:matrix(0.260021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260021,0.000000,0.000000,0.250000,0,0);}
.m59_c00494{transform:matrix(0.260261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260261,0.000000,0.000000,0.250000,0,0);}
.m8d_c00494{transform:matrix(0.260635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260635,0.000000,0.000000,0.250000,0,0);}
.m51_c00494{transform:matrix(0.261008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261008,0.000000,0.000000,0.250000,0,0);}
.m6c_c00494{transform:matrix(0.261519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261519,0.000000,0.000000,0.250000,0,0);}
.m73_c00494{transform:matrix(0.262535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262535,0.000000,0.000000,0.250000,0,0);}
.m17_c00494{transform:matrix(0.262894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262894,0.000000,0.000000,0.250000,0,0);}
.mc_c00494{transform:matrix(0.264583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264583,0.000000,0.000000,0.250000,0,0);}
.m7a_c00494{transform:matrix(0.265269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265269,0.000000,0.000000,0.250000,0,0);}
.m7d_c00494{transform:matrix(0.266442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266442,0.000000,0.000000,0.250000,0,0);}
.m80_c00494{transform:matrix(0.266448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266448,0.000000,0.000000,0.250000,0,0);}
.m60_c00494{transform:matrix(0.267468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267468,0.000000,0.000000,0.250000,0,0);}
.m95_c00494{transform:matrix(0.267506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267506,0.000000,0.000000,0.250000,0,0);}
.m2d_c00494{transform:matrix(0.267902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267902,0.000000,0.000000,0.250000,0,0);}
.m94_c00494{transform:matrix(0.268302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268302,0.000000,0.000000,0.250000,0,0);}
.m7e_c00494{transform:matrix(0.269462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269462,0.000000,0.000000,0.250000,0,0);}
.m74_c00494{transform:matrix(0.269538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269538,0.000000,0.000000,0.250000,0,0);}
.m4c_c00494{transform:matrix(0.271220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271220,0.000000,0.000000,0.250000,0,0);}
.m5f_c00494{transform:matrix(0.272834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272834,0.000000,0.000000,0.250000,0,0);}
.m5c_c00494{transform:matrix(0.273140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273140,0.000000,0.000000,0.250000,0,0);}
.m13_c00494{transform:matrix(0.273620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273620,0.000000,0.000000,0.250000,0,0);}
.m6b_c00494{transform:matrix(0.274391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274391,0.000000,0.000000,0.250000,0,0);}
.m67_c00494{transform:matrix(0.274817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274817,0.000000,0.000000,0.250000,0,0);}
.m2_c00494{transform:matrix(0.274914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274914,0.000000,0.000000,0.250000,0,0);}
.m9b_c00494{transform:matrix(0.275099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275099,0.000000,0.000000,0.250000,0,0);}
.m69_c00494{transform:matrix(0.275763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275763,0.000000,0.000000,0.250000,0,0);}
.m25_c00494{transform:matrix(0.275982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275982,0.000000,0.000000,0.250000,0,0);}
.ma4_c00494{transform:matrix(0.276732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276732,0.000000,0.000000,0.250000,0,0);}
.m16_c00494{transform:matrix(0.276976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276976,0.000000,0.000000,0.250000,0,0);}
.m54_c00494{transform:matrix(0.277684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277684,0.000000,0.000000,0.250000,0,0);}
.m65_c00494{transform:matrix(0.277887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277887,0.000000,0.000000,0.250000,0,0);}
.m38_c00494{transform:matrix(0.277897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277897,0.000000,0.000000,0.250000,0,0);}
.m72_c00494{transform:matrix(0.277926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277926,0.000000,0.000000,0.250000,0,0);}
.m9d_c00494{transform:matrix(0.279807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279807,0.000000,0.000000,0.250000,0,0);}
.m7b_c00494{transform:matrix(0.280012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280012,0.000000,0.000000,0.250000,0,0);}
.m33_c00494{transform:matrix(0.281651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281651,0.000000,0.000000,0.250000,0,0);}
.m18_c00494{transform:matrix(0.282052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282052,0.000000,0.000000,0.250000,0,0);}
.m57_c00494{transform:matrix(0.282529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282529,0.000000,0.000000,0.250000,0,0);}
.m14_c00494{transform:matrix(0.282923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282923,0.000000,0.000000,0.250000,0,0);}
.m11_c00494{transform:matrix(0.283110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283110,0.000000,0.000000,0.250000,0,0);}
.m2e_c00494{transform:matrix(0.283191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283191,0.000000,0.000000,0.250000,0,0);}
.m50_c00494{transform:matrix(0.284137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284137,0.000000,0.000000,0.250000,0,0);}
.m3d_c00494{transform:matrix(0.284278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284278,0.000000,0.000000,0.250000,0,0);}
.m99_c00494{transform:matrix(0.284349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284349,0.000000,0.000000,0.250000,0,0);}
.m98_c00494{transform:matrix(0.285077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285077,0.000000,0.000000,0.250000,0,0);}
.ma2_c00494{transform:matrix(0.285205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285205,0.000000,0.000000,0.250000,0,0);}
.me_c00494{transform:matrix(0.285689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285689,0.000000,0.000000,0.250000,0,0);}
.m4_c00494{transform:matrix(0.286552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286552,0.000000,0.000000,0.250000,0,0);}
.m52_c00494{transform:matrix(0.286735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286735,0.000000,0.000000,0.250000,0,0);}
.m4b_c00494{transform:matrix(0.287079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287079,0.000000,0.000000,0.250000,0,0);}
.m3c_c00494{transform:matrix(0.288333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288333,0.000000,0.000000,0.250000,0,0);}
.m93_c00494{transform:matrix(0.288685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288685,0.000000,0.000000,0.250000,0,0);}
.m5d_c00494{transform:matrix(0.288816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288816,0.000000,0.000000,0.250000,0,0);}
.m45_c00494{transform:matrix(0.289133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289133,0.000000,0.000000,0.250000,0,0);}
.m24_c00494{transform:matrix(0.289845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289845,0.000000,0.000000,0.250000,0,0);}
.m9c_c00494{transform:matrix(0.290406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290406,0.000000,0.000000,0.250000,0,0);}
.m6f_c00494{transform:matrix(0.290965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290965,0.000000,0.000000,0.250000,0,0);}
.m39_c00494{transform:matrix(0.291469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291469,0.000000,0.000000,0.250000,0,0);}
.m46_c00494{transform:matrix(0.291531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291531,0.000000,0.000000,0.250000,0,0);}
.m7f_c00494{transform:matrix(0.291828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291828,0.000000,0.000000,0.250000,0,0);}
.mf_c00494{transform:matrix(0.292312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292312,0.000000,0.000000,0.250000,0,0);}
.m68_c00494{transform:matrix(0.292585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292585,0.000000,0.000000,0.250000,0,0);}
.m85_c00494{transform:matrix(0.292597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292597,0.000000,0.000000,0.250000,0,0);}
.ma3_c00494{transform:matrix(0.293112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293112,0.000000,0.000000,0.250000,0,0);}
.m28_c00494{transform:matrix(0.293223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293223,0.000000,0.000000,0.250000,0,0);}
.m1b_c00494{transform:matrix(0.293401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293401,0.000000,0.000000,0.250000,0,0);}
.m53_c00494{transform:matrix(0.293534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293534,0.000000,0.000000,0.250000,0,0);}
.m40_c00494{transform:matrix(0.293822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293822,0.000000,0.000000,0.250000,0,0);}
.m81_c00494{transform:matrix(0.293947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293947,0.000000,0.000000,0.250000,0,0);}
.mb_c00494{transform:matrix(0.294082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294082,0.000000,0.000000,0.250000,0,0);}
.m26_c00494{transform:matrix(0.294501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294501,0.000000,0.000000,0.250000,0,0);}
.m83_c00494{transform:matrix(0.294655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294655,0.000000,0.000000,0.250000,0,0);}
.m8b_c00494{transform:matrix(0.294959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294959,0.000000,0.000000,0.250000,0,0);}
.m12_c00494{transform:matrix(0.295231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295231,0.000000,0.000000,0.250000,0,0);}
.m5_c00494{transform:matrix(0.296279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296279,0.000000,0.000000,0.250000,0,0);}
.m1c_c00494{transform:matrix(0.296334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296334,0.000000,0.000000,0.250000,0,0);}
.m31_c00494{transform:matrix(0.296737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296737,0.000000,0.000000,0.250000,0,0);}
.m79_c00494{transform:matrix(0.296829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296829,0.000000,0.000000,0.250000,0,0);}
.m29_c00494{transform:matrix(0.299253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299253,0.000000,0.000000,0.250000,0,0);}
.m9a_c00494{transform:matrix(0.299915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299915,0.000000,0.000000,0.250000,0,0);}
.m3b_c00494{transform:matrix(0.300576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300576,0.000000,0.000000,0.250000,0,0);}
.m21_c00494{transform:matrix(0.300581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300581,0.000000,0.000000,0.250000,0,0);}
.m19_c00494{transform:matrix(0.300693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300693,0.000000,0.000000,0.250000,0,0);}
.m32_c00494{transform:matrix(0.300703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300703,0.000000,0.000000,0.250000,0,0);}
.m42_c00494{transform:matrix(0.301307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301307,0.000000,0.000000,0.250000,0,0);}
.m1d_c00494{transform:matrix(0.301387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301387,0.000000,0.000000,0.250000,0,0);}
.m5b_c00494{transform:matrix(0.301499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301499,0.000000,0.000000,0.250000,0,0);}
.m8c_c00494{transform:matrix(0.303894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303894,0.000000,0.000000,0.250000,0,0);}
.m91_c00494{transform:matrix(0.305269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305269,0.000000,0.000000,0.250000,0,0);}
.m87_c00494{transform:matrix(0.306811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306811,0.000000,0.000000,0.250000,0,0);}
.m9e_c00494{transform:matrix(0.308191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308191,0.000000,0.000000,0.250000,0,0);}
.m63_c00494{transform:matrix(0.308993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308993,0.000000,0.000000,0.250000,0,0);}
.m2f_c00494{transform:matrix(0.309394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309394,0.000000,0.000000,0.250000,0,0);}
.m1f_c00494{transform:matrix(0.310315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310315,0.000000,0.000000,0.250000,0,0);}
.m7_c00494{transform:matrix(0.311056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311056,0.000000,0.000000,0.250000,0,0);}
.m7c_c00494{transform:matrix(0.314196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314196,0.000000,0.000000,0.250000,0,0);}
.ma_c00494{transform:matrix(0.315016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315016,0.000000,0.000000,0.250000,0,0);}
.m66_c00494{transform:matrix(0.315650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315650,0.000000,0.000000,0.250000,0,0);}
.m35_c00494{transform:matrix(0.315820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315820,0.000000,0.000000,0.250000,0,0);}
.m34_c00494{transform:matrix(0.316160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316160,0.000000,0.000000,0.250000,0,0);}
.m58_c00494{transform:matrix(0.316185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316185,0.000000,0.000000,0.250000,0,0);}
.m86_c00494{transform:matrix(0.316499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316499,0.000000,0.000000,0.250000,0,0);}
.m30_c00494{transform:matrix(0.316688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316688,0.000000,0.000000,0.250000,0,0);}
.m15_c00494{transform:matrix(0.318269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318269,0.000000,0.000000,0.250000,0,0);}
.m6e_c00494{transform:matrix(0.319163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319163,0.000000,0.000000,0.250000,0,0);}
.m71_c00494{transform:matrix(0.319477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319477,0.000000,0.000000,0.250000,0,0);}
.m55_c00494{transform:matrix(0.321300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321300,0.000000,0.000000,0.250000,0,0);}
.m97_c00494{transform:matrix(0.322534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322534,0.000000,0.000000,0.250000,0,0);}
.m8_c00494{transform:matrix(0.323086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323086,0.000000,0.000000,0.250000,0,0);}
.m3a_c00494{transform:matrix(0.325010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325010,0.000000,0.000000,0.250000,0,0);}
.m90_c00494{transform:matrix(0.325420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325420,0.000000,0.000000,0.250000,0,0);}
.m84_c00494{transform:matrix(0.325602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325602,0.000000,0.000000,0.250000,0,0);}
.m3f_c00494{transform:matrix(0.327003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327003,0.000000,0.000000,0.250000,0,0);}
.m41_c00494{transform:matrix(0.327172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327172,0.000000,0.000000,0.250000,0,0);}
.m43_c00494{transform:matrix(0.331807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331807,0.000000,0.000000,0.250000,0,0);}
.m89_c00494{transform:matrix(0.332137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332137,0.000000,0.000000,0.250000,0,0);}
.m3_c00494{transform:matrix(0.335052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335052,0.000000,0.000000,0.250000,0,0);}
.m4f_c00494{transform:matrix(0.338736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338736,0.000000,0.000000,0.250000,0,0);}
.m92_c00494{transform:matrix(0.341035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341035,0.000000,0.000000,0.250000,0,0);}
.m2c_c00494{transform:matrix(0.346580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346580,0.000000,0.000000,0.250000,0,0);}
.m8f_c00494{transform:matrix(0.349926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349926,0.000000,0.000000,0.250000,0,0);}
.m88_c00494{transform:matrix(0.350312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350312,0.000000,0.000000,0.250000,0,0);}
.m61_c00494{transform:matrix(0.354150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354150,0.000000,0.000000,0.250000,0,0);}
.m23_c00494{transform:matrix(0.356842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356842,0.000000,0.000000,0.250000,0,0);}
.m5e_c00494{transform:matrix(0.357702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357702,0.000000,0.000000,0.250000,0,0);}
.m27_c00494{transform:matrix(0.358207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358207,0.000000,0.000000,0.250000,0,0);}
.m70_c00494{transform:matrix(0.364205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364205,0.000000,0.000000,0.250000,0,0);}
.m62_c00494{transform:matrix(0.368736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368736,0.000000,0.000000,0.250000,0,0);}
.m1_c00494{transform:matrix(0.372953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372953,0.000000,0.000000,0.250000,0,0);}
.m8a_c00494{transform:matrix(0.374684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374684,0.000000,0.000000,0.250000,0,0);}
.ma5_c00494{transform:matrix(0.378557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378557,0.000000,0.000000,0.250000,0,0);}
.md_c00494{transform:matrix(0.380631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380631,0.000000,0.000000,0.250000,0,0);}
.m76_c00494{transform:matrix(0.386074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386074,0.000000,0.000000,0.250000,0,0);}
.m2a_c00494{transform:matrix(0.386579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386579,0.000000,0.000000,0.250000,0,0);}
.m44_c00494{transform:matrix(0.386786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386786,0.000000,0.000000,0.250000,0,0);}
.m78_c00494{transform:matrix(0.420709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420709,0.000000,0.000000,0.250000,0,0);}
.m75_c00494{transform:matrix(0.487128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487128,0.000000,0.000000,0.250000,0,0);}
.m77_c00494{transform:matrix(0.567130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567130,0.000000,0.000000,0.250000,0,0);}
.v0_c00494{vertical-align:0.000000px;}
.ls5_c00494{letter-spacing:-2.778930px;}
.lse_c00494{letter-spacing:-2.550240px;}
.ls1f_c00494{letter-spacing:-2.356200px;}
.lsd_c00494{letter-spacing:-1.675298px;}
.ls7_c00494{letter-spacing:-1.635599px;}
.ls10_c00494{letter-spacing:-0.150856px;}
.ls3_c00494{letter-spacing:0.000000px;}
.ls15_c00494{letter-spacing:0.562162px;}
.ls6_c00494{letter-spacing:0.919769px;}
.ls1a_c00494{letter-spacing:0.970200px;}
.ls19_c00494{letter-spacing:1.787544px;}
.ls2_c00494{letter-spacing:2.469278px;}
.ls11_c00494{letter-spacing:2.712600px;}
.ls16_c00494{letter-spacing:3.405610px;}
.ls0_c00494{letter-spacing:3.509392px;}
.ls1c_c00494{letter-spacing:3.623400px;}
.lsf_c00494{letter-spacing:3.643200px;}
.lsc_c00494{letter-spacing:3.663000px;}
.ls17_c00494{letter-spacing:3.755525px;}
.ls18_c00494{letter-spacing:3.762000px;}
.lsb_c00494{letter-spacing:3.801610px;}
.ls8_c00494{letter-spacing:3.831310px;}
.ls4_c00494{letter-spacing:3.969900px;}
.lsa_c00494{letter-spacing:4.237200px;}
.ls1_c00494{letter-spacing:5.478660px;}
.ls14_c00494{letter-spacing:49.896198px;}
.ls1d_c00494{letter-spacing:51.321798px;}
.ls13_c00494{letter-spacing:55.598598px;}
.ls12_c00494{letter-spacing:57.024198px;}
.ls9_c00494{letter-spacing:58.449798px;}
.ls1e_c00494{letter-spacing:59.875398px;}
.ls1b_c00494{letter-spacing:92.664198px;}
.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:-22.318778px;}
.ws1_c00494{word-spacing:-0.659736px;}
.ws2_c00494{word-spacing:0.000000px;}
._5_c00494{width:2.037420px;}
._2_c00494{width:9.178092px;}
._4_c00494{width:10.439352px;}
._6_c00494{width:15.641208px;}
._0_c00494{width:32.696096px;}
._3_c00494{width:99.525888px;}
._1_c00494{width:783.796354px;}
.fc0_c00494{color:transparent;}
.fs1a_c00494{font-size:19.404000px;}
.fs1_c00494{font-size:22.176000px;}
.fs1b_c00494{font-size:23.166000px;}
.fs11_c00494{font-size:33.264000px;}
.fs0_c00494{font-size:33.660000px;}
.fs12_c00494{font-size:34.056198px;}
.fsb_c00494{font-size:37.818000px;}
.fs14_c00494{font-size:39.600000px;}
.fs15_c00494{font-size:49.896198px;}
.fs1e_c00494{font-size:51.321798px;}
.fs16_c00494{font-size:54.054000px;}
.fsd_c00494{font-size:54.252000px;}
.fs10_c00494{font-size:55.598598px;}
.fse_c00494{font-size:57.024198px;}
.fs5_c00494{font-size:58.449798px;}
.fs1f_c00494{font-size:59.875398px;}
.fsf_c00494{font-size:61.776198px;}
.fs20_c00494{font-size:67.320000px;}
.fs17_c00494{font-size:68.112198px;}
.fs1d_c00494{font-size:72.468000px;}
.fsc_c00494{font-size:72.864000px;}
.fsa_c00494{font-size:73.260000px;}
.fs13_c00494{font-size:73.656198px;}
.fs7_c00494{font-size:74.844000px;}
.fs19_c00494{font-size:75.240000px;}
.fs8_c00494{font-size:76.032198px;}
.fs4_c00494{font-size:76.626198px;}
.fs18_c00494{font-size:77.220000px;}
.fs9_c00494{font-size:79.200000px;}
.fs2_c00494{font-size:79.398000px;}
.fs6_c00494{font-size:84.744000px;}
.fs3_c00494{font-size:89.298000px;}
.fs1c_c00494{font-size:92.664198px;}
.y0_c00494{bottom:0.000000px;}
.y1_c00494{bottom:76.500000px;}
.y1f_c00494{bottom:124.295535px;}
.y1e_c00494{bottom:219.810735px;}
.y1d_c00494{bottom:251.530335px;}
.y1c_c00494{bottom:282.180735px;}
.y2_c00494{bottom:311.044185px;}
.y1b_c00494{bottom:314.256735px;}
.y19_c00494{bottom:339.561135px;}
.y18_c00494{bottom:341.699535px;}
.y17_c00494{bottom:345.971385px;}
.y1a_c00494{bottom:346.332735px;}
.y16_c00494{bottom:411.192585px;}
.y15_c00494{bottom:442.917135px;}
.y14_c00494{bottom:474.275385px;}
.y13_c00494{bottom:505.994985px;}
.y11_c00494{bottom:537.714585px;}
.y12_c00494{bottom:551.257785px;}
.y10_c00494{bottom:556.252335px;}
.yf_c00494{bottom:562.311135px;}
.ye_c00494{bottom:569.795535px;}
.yd_c00494{bottom:587.966985px;}
.yc_c00494{bottom:600.802335px;}
.yb_c00494{bottom:633.234735px;}
.ya_c00494{bottom:726.967935px;}
.y9_c00494{bottom:758.682585px;}
.y8_c00494{bottom:790.407135px;}
.y7_c00494{bottom:822.126735px;}
.y6_c00494{bottom:854.197785px;}
.y5_c00494{bottom:885.922335px;}
.y4_c00494{bottom:917.285535px;}
.y3_c00494{bottom:987.847785px;}
.h1c_c00494{height:19.043965px;}
.h1d_c00494{height:19.555594px;}
.h1e_c00494{height:22.736162px;}
.h3_c00494{height:23.128875px;}
.h2_c00494{height:33.035449px;}
.h16_c00494{height:33.230868px;}
.h21_c00494{height:34.180317px;}
.h13_c00494{height:34.693313px;}
.h14_c00494{height:35.519550px;}
.h12_c00494{height:37.028666px;}
.hd_c00494{height:37.116299px;}
.h10_c00494{height:37.978116px;}
.h7_c00494{height:38.927565px;}
.h22_c00494{height:39.877015px;}
.h17_c00494{height:53.051045px;}
.hf_c00494{height:53.245371px;}
.h11_c00494{height:60.629960px;}
.h1f_c00494{height:61.714356px;}
.h23_c00494{height:70.212656px;}
.h18_c00494{height:71.038894px;}
.h20_c00494{height:71.123379px;}
.hc_c00494{height:71.900684px;}
.he_c00494{height:73.433250px;}
.h9_c00494{height:73.455293px;}
.h1a_c00494{height:73.843945px;}
.ha_c00494{height:74.621444px;}
.h6_c00494{height:75.204423px;}
.h19_c00494{height:75.787207px;}
.h1b_c00494{height:76.407891px;}
.h15_c00494{height:76.821113px;}
.hb_c00494{height:77.730469px;}
.h4_c00494{height:77.924795px;}
.h8_c00494{height:83.171602px;}
.h5_c00494{height:87.641104px;}
.h1_c00494{height:1110.000000px;}
.h0_c00494{height:1263.000000px;}
.w1_c00494{width:763.500000px;}
.w0_c00494{width:892.500000px;}
.x0_c00494{left:0.000000px;}
.x2_c00494{left:51.411735px;}
.x1_c00494{left:64.500000px;}
.x55_c00494{left:70.726635px;}
.x25_c00494{left:77.141835px;}
.x4_c00494{left:84.329235px;}
.x1e_c00494{left:85.853835px;}
.x41_c00494{left:117.771435px;}
.x62_c00494{left:119.013885px;}
.xf_c00494{left:130.458285px;}
.x58_c00494{left:139.501935px;}
.x5_c00494{left:140.670135px;}
.x10_c00494{left:152.431335px;}
.x33_c00494{left:161.856135px;}
.x18_c00494{left:163.841085px;}
.x59_c00494{left:171.909585px;}
.x26_c00494{left:173.538135px;}
.x39_c00494{left:174.602385px;}
.x68_c00494{left:180.918585px;}
.x42_c00494{left:184.997385px;}
.x5b_c00494{left:186.066585px;}
.x6_c00494{left:196.664535px;}
.x5c_c00494{left:203.678685px;}
.x56_c00494{left:206.534835px;}
.x31_c00494{left:207.717885px;}
.x5d_c00494{left:209.450385px;}
.x43_c00494{left:218.112885px;}
.x5e_c00494{left:219.711735px;}
.x5a_c00494{left:227.735685px;}
.x7_c00494{left:229.770135px;}
.x3a_c00494{left:231.819435px;}
.x27_c00494{left:238.982085px;}
.x3b_c00494{left:240.085935px;}
.x5f_c00494{left:241.264035px;}
.x34_c00494{left:251.371935px;}
.x57_c00494{left:261.410535px;}
.x11_c00494{left:262.682685px;}
.x2d_c00494{left:273.359835px;}
.x60_c00494{left:278.473185px;}
.x67_c00494{left:283.873635px;}
.x64_c00494{left:285.502185px;}
.x1f_c00494{left:294.605235px;}
.x12_c00494{left:295.768485px;}
.x8_c00494{left:307.594035px;}
.x44_c00494{left:318.290985px;}
.x4f_c00494{left:327.285135px;}
.x13_c00494{left:328.784985px;}
.x32_c00494{left:330.274935px;}
.x3c_c00494{left:333.749835px;}
.x35_c00494{left:341.377785px;}
.x45_c00494{left:351.738135px;}
.x3d_c00494{left:373.339935px;}
.x53_c00494{left:374.602185px;}
.x28_c00494{left:384.150735px;}
.x19_c00494{left:385.264485px;}
.x49_c00494{left:395.347635px;}
.x2e_c00494{left:407.737485px;}
.x20_c00494{left:418.078035px;}
.x1a_c00494{left:419.379885px;}
.x2f_c00494{left:428.750235px;}
.x14_c00494{left:431.596485px;}
.x9_c00494{left:439.466985px;}
.x36_c00494{left:440.496585px;}
.x21_c00494{left:450.297585px;}
.x29_c00494{left:451.376685px;}
.x1b_c00494{left:461.044035px;}
.x3e_c00494{left:462.855735px;}
.x15_c00494{left:473.458635px;}
.x37_c00494{left:483.457635px;}
.x50_c00494{left:484.660485px;}
.x2a_c00494{left:486.323685px;}
.x69_c00494{left:494.639685px;}
.xa_c00494{left:495.703935px;}
.x54_c00494{left:506.994885px;}
.x2b_c00494{left:508.202685px;}
.x46_c00494{left:518.414535px;}
.x6a_c00494{left:527.641335px;}
.x61_c00494{left:530.551935px;}
.x65_c00494{left:540.293535px;}
.x30_c00494{left:549.757935px;}
.x1c_c00494{left:550.861785px;}
.x48_c00494{left:553.613985px;}
.x22_c00494{left:561.350835px;}
.x66_c00494{left:571.532985px;}
.x2c_c00494{left:583.898085px;}
.x51_c00494{left:593.956485px;}
.xb_c00494{left:595.486035px;}
.x16_c00494{left:605.905785px;}
.x4a_c00494{left:615.691935px;}
.x52_c00494{left:617.261085px;}
.xc_c00494{left:627.373935px;}
.x47_c00494{left:628.561935px;}
.x23_c00494{left:639.021285px;}
.x17_c00494{left:649.965735px;}
.x3_c00494{left:655.559235px;}
.x1d_c00494{left:660.568635px;}
.x4b_c00494{left:662.781285px;}
.xd_c00494{left:670.513185px;}
.x4d_c00494{left:672.552585px;}
.x38_c00494{left:682.705035px;}
.x3f_c00494{left:683.818785px;}
.x63_c00494{left:695.203785px;}
.x4e_c00494{left:698.094585px;}
.x40_c00494{left:702.079335px;}
.x24_c00494{left:705.994785px;}
.xe_c00494{left:716.706585px;}
.x4c_c00494{left:727.368885px;}
@media print{
.v0_c00494{vertical-align:0.000000pt;}
.ls5_c00494{letter-spacing:-2.470160pt;}
.lse_c00494{letter-spacing:-2.266880pt;}
.ls1f_c00494{letter-spacing:-2.094400pt;}
.lsd_c00494{letter-spacing:-1.489154pt;}
.ls7_c00494{letter-spacing:-1.453866pt;}
.ls10_c00494{letter-spacing:-0.134094pt;}
.ls3_c00494{letter-spacing:0.000000pt;}
.ls15_c00494{letter-spacing:0.499699pt;}
.ls6_c00494{letter-spacing:0.817573pt;}
.ls1a_c00494{letter-spacing:0.862400pt;}
.ls19_c00494{letter-spacing:1.588928pt;}
.ls2_c00494{letter-spacing:2.194914pt;}
.ls11_c00494{letter-spacing:2.411200pt;}
.ls16_c00494{letter-spacing:3.027209pt;}
.ls0_c00494{letter-spacing:3.119459pt;}
.ls1c_c00494{letter-spacing:3.220800pt;}
.lsf_c00494{letter-spacing:3.238400pt;}
.lsc_c00494{letter-spacing:3.256000pt;}
.ls17_c00494{letter-spacing:3.338245pt;}
.ls18_c00494{letter-spacing:3.344000pt;}
.lsb_c00494{letter-spacing:3.379209pt;}
.ls8_c00494{letter-spacing:3.405609pt;}
.ls4_c00494{letter-spacing:3.528800pt;}
.lsa_c00494{letter-spacing:3.766400pt;}
.ls1_c00494{letter-spacing:4.869920pt;}
.ls14_c00494{letter-spacing:44.352176pt;}
.ls1d_c00494{letter-spacing:45.619376pt;}
.ls13_c00494{letter-spacing:49.420976pt;}
.ls12_c00494{letter-spacing:50.688176pt;}
.ls9_c00494{letter-spacing:51.955376pt;}
.ls1e_c00494{letter-spacing:53.222576pt;}
.ls1b_c00494{letter-spacing:82.368176pt;}
.ws0_c00494{word-spacing:-19.838914pt;}
.ws1_c00494{word-spacing:-0.586432pt;}
.ws2_c00494{word-spacing:0.000000pt;}
._5_c00494{width:1.811040pt;}
._2_c00494{width:8.158304pt;}
._4_c00494{width:9.279424pt;}
._6_c00494{width:13.903296pt;}
._0_c00494{width:29.063197pt;}
._3_c00494{width:88.467456pt;}
._1_c00494{width:696.707870pt;}
.fs1a_c00494{font-size:17.248000pt;}
.fs1_c00494{font-size:19.712000pt;}
.fs1b_c00494{font-size:20.592000pt;}
.fs11_c00494{font-size:29.568000pt;}
.fs0_c00494{font-size:29.920000pt;}
.fs12_c00494{font-size:30.272176pt;}
.fsb_c00494{font-size:33.616000pt;}
.fs14_c00494{font-size:35.200000pt;}
.fs15_c00494{font-size:44.352176pt;}
.fs1e_c00494{font-size:45.619376pt;}
.fs16_c00494{font-size:48.048000pt;}
.fsd_c00494{font-size:48.224000pt;}
.fs10_c00494{font-size:49.420976pt;}
.fse_c00494{font-size:50.688176pt;}
.fs5_c00494{font-size:51.955376pt;}
.fs1f_c00494{font-size:53.222576pt;}
.fsf_c00494{font-size:54.912176pt;}
.fs20_c00494{font-size:59.840000pt;}
.fs17_c00494{font-size:60.544176pt;}
.fs1d_c00494{font-size:64.416000pt;}
.fsc_c00494{font-size:64.768000pt;}
.fsa_c00494{font-size:65.120000pt;}
.fs13_c00494{font-size:65.472176pt;}
.fs7_c00494{font-size:66.528000pt;}
.fs19_c00494{font-size:66.880000pt;}
.fs8_c00494{font-size:67.584176pt;}
.fs4_c00494{font-size:68.112176pt;}
.fs18_c00494{font-size:68.640000pt;}
.fs9_c00494{font-size:70.400000pt;}
.fs2_c00494{font-size:70.576000pt;}
.fs6_c00494{font-size:75.328000pt;}
.fs3_c00494{font-size:79.376000pt;}
.fs1c_c00494{font-size:82.368176pt;}
.y0_c00494{bottom:0.000000pt;}
.y1_c00494{bottom:68.000000pt;}
.y1f_c00494{bottom:110.484920pt;}
.y1e_c00494{bottom:195.387320pt;}
.y1d_c00494{bottom:223.582520pt;}
.y1c_c00494{bottom:250.827320pt;}
.y2_c00494{bottom:276.483720pt;}
.y1b_c00494{bottom:279.339320pt;}
.y19_c00494{bottom:301.832120pt;}
.y18_c00494{bottom:303.732920pt;}
.y17_c00494{bottom:307.530120pt;}
.y1a_c00494{bottom:307.851320pt;}
.y16_c00494{bottom:365.504520pt;}
.y15_c00494{bottom:393.704120pt;}
.y14_c00494{bottom:421.578120pt;}
.y13_c00494{bottom:449.773320pt;}
.y11_c00494{bottom:477.968520pt;}
.y12_c00494{bottom:490.006920pt;}
.y10_c00494{bottom:494.446520pt;}
.yf_c00494{bottom:499.832120pt;}
.ye_c00494{bottom:506.484920pt;}
.yd_c00494{bottom:522.637320pt;}
.yc_c00494{bottom:534.046520pt;}
.yb_c00494{bottom:562.875320pt;}
.ya_c00494{bottom:646.193720pt;}
.y9_c00494{bottom:674.384520pt;}
.y8_c00494{bottom:702.584120pt;}
.y7_c00494{bottom:730.779320pt;}
.y6_c00494{bottom:759.286920pt;}
.y5_c00494{bottom:787.486520pt;}
.y4_c00494{bottom:815.364920pt;}
.y3_c00494{bottom:878.086920pt;}
.h1c_c00494{height:16.927969pt;}
.h1d_c00494{height:17.382750pt;}
.h1e_c00494{height:20.209922pt;}
.h3_c00494{height:20.559000pt;}
.h2_c00494{height:29.364844pt;}
.h16_c00494{height:29.538549pt;}
.h21_c00494{height:30.382504pt;}
.h13_c00494{height:30.838500pt;}
.h14_c00494{height:31.572934pt;}
.h12_c00494{height:32.914370pt;}
.hd_c00494{height:32.992266pt;}
.h10_c00494{height:33.758325pt;}
.h7_c00494{height:34.602280pt;}
.h22_c00494{height:35.446236pt;}
.h17_c00494{height:47.156484pt;}
.hf_c00494{height:47.329219pt;}
.h11_c00494{height:53.893298pt;}
.h1f_c00494{height:54.857205pt;}
.h23_c00494{height:62.411250pt;}
.h18_c00494{height:63.145684pt;}
.h20_c00494{height:63.220781pt;}
.hc_c00494{height:63.911719pt;}
.he_c00494{height:65.274000pt;}
.h9_c00494{height:65.293594pt;}
.h1a_c00494{height:65.639063pt;}
.ha_c00494{height:66.330173pt;}
.h6_c00494{height:66.848376pt;}
.h19_c00494{height:67.366406pt;}
.h1b_c00494{height:67.918125pt;}
.h15_c00494{height:68.285434pt;}
.hb_c00494{height:69.093750pt;}
.h4_c00494{height:69.266484pt;}
.h8_c00494{height:73.930313pt;}
.h5_c00494{height:77.903203pt;}
.h1_c00494{height:986.666667pt;}
.h0_c00494{height:1122.666667pt;}
.w1_c00494{width:678.666667pt;}
.w0_c00494{width:793.333333pt;}
.x0_c00494{left:0.000000pt;}
.x2_c00494{left:45.699320pt;}
.x1_c00494{left:57.333333pt;}
.x55_c00494{left:62.868120pt;}
.x25_c00494{left:68.570520pt;}
.x4_c00494{left:74.959320pt;}
.x1e_c00494{left:76.314520pt;}
.x41_c00494{left:104.685720pt;}
.x62_c00494{left:105.790120pt;}
.xf_c00494{left:115.962920pt;}
.x58_c00494{left:124.001720pt;}
.x5_c00494{left:125.040120pt;}
.x10_c00494{left:135.494520pt;}
.x33_c00494{left:143.872120pt;}
.x18_c00494{left:145.636520pt;}
.x59_c00494{left:152.808520pt;}
.x26_c00494{left:154.256120pt;}
.x39_c00494{left:155.202120pt;}
.x68_c00494{left:160.816520pt;}
.x42_c00494{left:164.442120pt;}
.x5b_c00494{left:165.392520pt;}
.x6_c00494{left:174.812920pt;}
.x5c_c00494{left:181.047720pt;}
.x56_c00494{left:183.586520pt;}
.x31_c00494{left:184.638120pt;}
.x5d_c00494{left:186.178120pt;}
.x43_c00494{left:193.878120pt;}
.x5e_c00494{left:195.299320pt;}
.x5a_c00494{left:202.431720pt;}
.x7_c00494{left:204.240120pt;}
.x3a_c00494{left:206.061720pt;}
.x27_c00494{left:212.428520pt;}
.x3b_c00494{left:213.409720pt;}
.x5f_c00494{left:214.456920pt;}
.x34_c00494{left:223.441720pt;}
.x57_c00494{left:232.364920pt;}
.x11_c00494{left:233.495720pt;}
.x2d_c00494{left:242.986520pt;}
.x60_c00494{left:247.531720pt;}
.x67_c00494{left:252.332120pt;}
.x64_c00494{left:253.779720pt;}
.x1f_c00494{left:261.871320pt;}
.x12_c00494{left:262.905320pt;}
.x8_c00494{left:273.416920pt;}
.x44_c00494{left:282.925320pt;}
.x4f_c00494{left:290.920120pt;}
.x13_c00494{left:292.253320pt;}
.x32_c00494{left:293.577720pt;}
.x3c_c00494{left:296.666520pt;}
.x35_c00494{left:303.446920pt;}
.x45_c00494{left:312.656120pt;}
.x3d_c00494{left:331.857720pt;}
.x53_c00494{left:332.979720pt;}
.x28_c00494{left:341.467320pt;}
.x19_c00494{left:342.457320pt;}
.x49_c00494{left:351.420120pt;}
.x2e_c00494{left:362.433320pt;}
.x20_c00494{left:371.624920pt;}
.x1a_c00494{left:372.782120pt;}
.x2f_c00494{left:381.111320pt;}
.x14_c00494{left:383.641320pt;}
.x9_c00494{left:390.637320pt;}
.x36_c00494{left:391.552520pt;}
.x21_c00494{left:400.264520pt;}
.x29_c00494{left:401.223720pt;}
.x1b_c00494{left:409.816920pt;}
.x3e_c00494{left:411.427320pt;}
.x15_c00494{left:420.852120pt;}
.x37_c00494{left:429.740120pt;}
.x50_c00494{left:430.809320pt;}
.x2a_c00494{left:432.287720pt;}
.x69_c00494{left:439.679720pt;}
.xa_c00494{left:440.625720pt;}
.x54_c00494{left:450.662120pt;}
.x2b_c00494{left:451.735720pt;}
.x46_c00494{left:460.812920pt;}
.x6a_c00494{left:469.014520pt;}
.x61_c00494{left:471.601720pt;}
.x65_c00494{left:480.260920pt;}
.x30_c00494{left:488.673720pt;}
.x1c_c00494{left:489.654920pt;}
.x48_c00494{left:492.101320pt;}
.x22_c00494{left:498.978520pt;}
.x66_c00494{left:508.029320pt;}
.x2c_c00494{left:519.020520pt;}
.x51_c00494{left:527.961320pt;}
.xb_c00494{left:529.320920pt;}
.x16_c00494{left:538.582920pt;}
.x4a_c00494{left:547.281720pt;}
.x52_c00494{left:548.676520pt;}
.xc_c00494{left:557.665720pt;}
.x47_c00494{left:558.721720pt;}
.x23_c00494{left:568.018920pt;}
.x17_c00494{left:577.747320pt;}
.x3_c00494{left:582.719320pt;}
.x1d_c00494{left:587.172120pt;}
.x4b_c00494{left:589.138920pt;}
.xd_c00494{left:596.011720pt;}
.x4d_c00494{left:597.824520pt;}
.x38_c00494{left:606.848920pt;}
.x3f_c00494{left:607.838920pt;}
.x63_c00494{left:617.958920pt;}
.x4e_c00494{left:620.528520pt;}
.x40_c00494{left:624.070520pt;}
.x24_c00494{left:627.550920pt;}
.xe_c00494{left:637.072520pt;}
.x4c_c00494{left:646.550120pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a68806377dda3896ee41b6db.woff2')format("woff");}.ff1_c00495{font-family:ff1_c00495;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00495;src:url('chunks/assets/font_073ea51fd2707b8db161ebec.woff2')format("woff");}.ff2_c00495{font-family:ff2_c00495;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00495;src:url('chunks/assets/font_6ccec35facc8964cbc5e7d10.woff2')format("woff");}.ff3_c00495{font-family:ff3_c00495;line-height:0.666000;font-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_c00495{transform:matrix(0.134462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134462,0.000000,0.000000,0.250000,0,0);}
.m26_c00495{transform:matrix(0.158730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158730,0.000000,0.000000,0.250000,0,0);}
.m5b_c00495{transform:matrix(0.172833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172833,0.000000,0.000000,0.250000,0,0);}
.m5f_c00495{transform:matrix(0.174107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174107,0.000000,0.000000,0.250000,0,0);}
.m25_c00495{transform:matrix(0.196428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196428,0.000000,0.000000,0.250000,0,0);}
.m81_c00495{transform:matrix(0.214026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214026,0.000000,0.000000,0.250000,0,0);}
.m91_c00495{transform:matrix(0.215348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215348,0.000000,0.000000,0.250000,0,0);}
.m87_c00495{transform:matrix(0.221355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221355,0.000000,0.000000,0.250000,0,0);}
.mb1_c00495{transform:matrix(0.221925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221925,0.000000,0.000000,0.250000,0,0);}
.m28_c00495{transform:matrix(0.229014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229014,0.000000,0.000000,0.250000,0,0);}
.m5c_c00495{transform:matrix(0.229447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229447,0.000000,0.000000,0.250000,0,0);}
.ma8_c00495{transform:matrix(0.230247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230247,0.000000,0.000000,0.250000,0,0);}
.m1_c00495{transform:matrix(0.232686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232686,0.000000,0.000000,0.250000,0,0);}
.m64_c00495{transform:matrix(0.233956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233956,0.000000,0.000000,0.250000,0,0);}
.mc_c00495{transform:matrix(0.248170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248170,0.000000,0.000000,0.250000,0,0);}
.m0_c00495{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.me_c00495{transform:matrix(0.251385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251385,0.000000,0.000000,0.250000,0,0);}
.m48_c00495{transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);}
.m10_c00495{transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);}
.mc4_c00495{transform:matrix(0.253870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253870,0.000000,0.000000,0.250000,0,0);}
.mc8_c00495{transform:matrix(0.254284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254284,0.000000,0.000000,0.250000,0,0);}
.mab_c00495{transform:matrix(0.254614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254614,0.000000,0.000000,0.250000,0,0);}
.m60_c00495{transform:matrix(0.255186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255186,0.000000,0.000000,0.250000,0,0);}
.m7c_c00495{transform:matrix(0.255734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255734,0.000000,0.000000,0.250000,0,0);}
.m95_c00495{transform:matrix(0.255805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255805,0.000000,0.000000,0.250000,0,0);}
.m6f_c00495{transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);}
.m80_c00495{transform:matrix(0.255928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255928,0.000000,0.000000,0.250000,0,0);}
.m90_c00495{transform:matrix(0.255953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255953,0.000000,0.000000,0.250000,0,0);}
.m21_c00495{transform:matrix(0.256348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256348,0.000000,0.000000,0.250000,0,0);}
.m7a_c00495{transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);}
.m98_c00495{transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);}
.m47_c00495{transform:matrix(0.258471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258471,0.000000,0.000000,0.250000,0,0);}
.m6a_c00495{transform:matrix(0.258785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258785,0.000000,0.000000,0.250000,0,0);}
.m2e_c00495{transform:matrix(0.258939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258939,0.000000,0.000000,0.250000,0,0);}
.m16_c00495{transform:matrix(0.259292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259292,0.000000,0.000000,0.250000,0,0);}
.m24_c00495{transform:matrix(0.259376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259376,0.000000,0.000000,0.250000,0,0);}
.m41_c00495{transform:matrix(0.259936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259936,0.000000,0.000000,0.250000,0,0);}
.m31_c00495{transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);}
.m50_c00495{transform:matrix(0.261247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261247,0.000000,0.000000,0.250000,0,0);}
.m67_c00495{transform:matrix(0.261430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261430,0.000000,0.000000,0.250000,0,0);}
.mc6_c00495{transform:matrix(0.261649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261649,0.000000,0.000000,0.250000,0,0);}
.m75_c00495{transform:matrix(0.261958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261958,0.000000,0.000000,0.250000,0,0);}
.mc7_c00495{transform:matrix(0.262285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262285,0.000000,0.000000,0.250000,0,0);}
.m2b_c00495{transform:matrix(0.262973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262973,0.000000,0.000000,0.250000,0,0);}
.m4c_c00495{transform:matrix(0.264437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264437,0.000000,0.000000,0.250000,0,0);}
.m83_c00495{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.maa_c00495{transform:matrix(0.266768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266768,0.000000,0.000000,0.250000,0,0);}
.m6b_c00495{transform:matrix(0.266869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266869,0.000000,0.000000,0.250000,0,0);}
.m69_c00495{transform:matrix(0.267064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267064,0.000000,0.000000,0.250000,0,0);}
.m9e_c00495{transform:matrix(0.267394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267394,0.000000,0.000000,0.250000,0,0);}
.m13_c00495{transform:matrix(0.267754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267754,0.000000,0.000000,0.250000,0,0);}
.mb0_c00495{transform:matrix(0.267917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267917,0.000000,0.000000,0.250000,0,0);}
.m7b_c00495{transform:matrix(0.268937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268937,0.000000,0.000000,0.250000,0,0);}
.m8e_c00495{transform:matrix(0.270269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270269,0.000000,0.000000,0.250000,0,0);}
.m9d_c00495{transform:matrix(0.270746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270746,0.000000,0.000000,0.250000,0,0);}
.m27_c00495{transform:matrix(0.271106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271106,0.000000,0.000000,0.250000,0,0);}
.m88_c00495{transform:matrix(0.271190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271190,0.000000,0.000000,0.250000,0,0);}
.m22_c00495{transform:matrix(0.271261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271261,0.000000,0.000000,0.250000,0,0);}
.m79_c00495{transform:matrix(0.271634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271634,0.000000,0.000000,0.250000,0,0);}
.m89_c00495{transform:matrix(0.272081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272081,0.000000,0.000000,0.250000,0,0);}
.m5e_c00495{transform:matrix(0.272402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272402,0.000000,0.000000,0.250000,0,0);}
.m1d_c00495{transform:matrix(0.272535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272535,0.000000,0.000000,0.250000,0,0);}
.m3f_c00495{transform:matrix(0.273169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273169,0.000000,0.000000,0.250000,0,0);}
.mbd_c00495{transform:matrix(0.273227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273227,0.000000,0.000000,0.250000,0,0);}
.m11_c00495{transform:matrix(0.273238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273238,0.000000,0.000000,0.250000,0,0);}
.m1a_c00495{transform:matrix(0.274176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274176,0.000000,0.000000,0.250000,0,0);}
.m7_c00495{transform:matrix(0.274393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274393,0.000000,0.000000,0.250000,0,0);}
.m4_c00495{transform:matrix(0.274505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274505,0.000000,0.000000,0.250000,0,0);}
.mbb_c00495{transform:matrix(0.274804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274804,0.000000,0.000000,0.250000,0,0);}
.mbe_c00495{transform:matrix(0.275051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275051,0.000000,0.000000,0.250000,0,0);}
.m44_c00495{transform:matrix(0.275104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275104,0.000000,0.000000,0.250000,0,0);}
.m84_c00495{transform:matrix(0.276276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276276,0.000000,0.000000,0.250000,0,0);}
.ma5_c00495{transform:matrix(0.276783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276783,0.000000,0.000000,0.250000,0,0);}
.mb5_c00495{transform:matrix(0.277017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277017,0.000000,0.000000,0.250000,0,0);}
.m54_c00495{transform:matrix(0.277316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277316,0.000000,0.000000,0.250000,0,0);}
.m46_c00495{transform:matrix(0.277590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277590,0.000000,0.000000,0.250000,0,0);}
.m18_c00495{transform:matrix(0.277715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277715,0.000000,0.000000,0.250000,0,0);}
.m36_c00495{transform:matrix(0.278061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278061,0.000000,0.000000,0.250000,0,0);}
.m3_c00495{transform:matrix(0.278275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278275,0.000000,0.000000,0.250000,0,0);}
.m43_c00495{transform:matrix(0.278660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278660,0.000000,0.000000,0.250000,0,0);}
.m23_c00495{transform:matrix(0.278680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278680,0.000000,0.000000,0.250000,0,0);}
.mb9_c00495{transform:matrix(0.278923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278923,0.000000,0.000000,0.250000,0,0);}
.m97_c00495{transform:matrix(0.279626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279626,0.000000,0.000000,0.250000,0,0);}
.ma0_c00495{transform:matrix(0.279906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279906,0.000000,0.000000,0.250000,0,0);}
.mc9_c00495{transform:matrix(0.280098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280098,0.000000,0.000000,0.250000,0,0);}
.md_c00495{transform:matrix(0.280369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280369,0.000000,0.000000,0.250000,0,0);}
.mb3_c00495{transform:matrix(0.280468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280468,0.000000,0.000000,0.250000,0,0);}
.m5d_c00495{transform:matrix(0.280502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280502,0.000000,0.000000,0.250000,0,0);}
.m92_c00495{transform:matrix(0.280689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280689,0.000000,0.000000,0.250000,0,0);}
.m8a_c00495{transform:matrix(0.281411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281411,0.000000,0.000000,0.250000,0,0);}
.m2f_c00495{transform:matrix(0.281812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281812,0.000000,0.000000,0.250000,0,0);}
.m1e_c00495{transform:matrix(0.282263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282263,0.000000,0.000000,0.250000,0,0);}
.ma7_c00495{transform:matrix(0.282296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282296,0.000000,0.000000,0.250000,0,0);}
.m52_c00495{transform:matrix(0.282886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282886,0.000000,0.000000,0.250000,0,0);}
.m7d_c00495{transform:matrix(0.283007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283007,0.000000,0.000000,0.250000,0,0);}
.mbc_c00495{transform:matrix(0.283747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283747,0.000000,0.000000,0.250000,0,0);}
.m78_c00495{transform:matrix(0.284443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284443,0.000000,0.000000,0.250000,0,0);}
.m5a_c00495{transform:matrix(0.284467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284467,0.000000,0.000000,0.250000,0,0);}
.m77_c00495{transform:matrix(0.284483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284483,0.000000,0.000000,0.250000,0,0);}
.m3b_c00495{transform:matrix(0.284607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284607,0.000000,0.000000,0.250000,0,0);}
.m8c_c00495{transform:matrix(0.284698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284698,0.000000,0.000000,0.250000,0,0);}
.m8f_c00495{transform:matrix(0.284773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284773,0.000000,0.000000,0.250000,0,0);}
.m1c_c00495{transform:matrix(0.285041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285041,0.000000,0.000000,0.250000,0,0);}
.ma6_c00495{transform:matrix(0.285055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285055,0.000000,0.000000,0.250000,0,0);}
.maf_c00495{transform:matrix(0.285118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285118,0.000000,0.000000,0.250000,0,0);}
.m33_c00495{transform:matrix(0.285288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285288,0.000000,0.000000,0.250000,0,0);}
.m6_c00495{transform:matrix(0.285415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285415,0.000000,0.000000,0.250000,0,0);}
.m40_c00495{transform:matrix(0.285467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285467,0.000000,0.000000,0.250000,0,0);}
.m9a_c00495{transform:matrix(0.285618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285618,0.000000,0.000000,0.250000,0,0);}
.m3c_c00495{transform:matrix(0.286436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286436,0.000000,0.000000,0.250000,0,0);}
.mb8_c00495{transform:matrix(0.287137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287137,0.000000,0.000000,0.250000,0,0);}
.m20_c00495{transform:matrix(0.287498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287498,0.000000,0.000000,0.250000,0,0);}
.m3d_c00495{transform:matrix(0.288814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288814,0.000000,0.000000,0.250000,0,0);}
.m12_c00495{transform:matrix(0.288903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288903,0.000000,0.000000,0.250000,0,0);}
.m3e_c00495{transform:matrix(0.288959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288959,0.000000,0.000000,0.250000,0,0);}
.ma_c00495{transform:matrix(0.289306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289306,0.000000,0.000000,0.250000,0,0);}
.m66_c00495{transform:matrix(0.289514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289514,0.000000,0.000000,0.250000,0,0);}
.ma1_c00495{transform:matrix(0.289581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289581,0.000000,0.000000,0.250000,0,0);}
.m6d_c00495{transform:matrix(0.289701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289701,0.000000,0.000000,0.250000,0,0);}
.m37_c00495{transform:matrix(0.291239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291239,0.000000,0.000000,0.250000,0,0);}
.m53_c00495{transform:matrix(0.291263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291263,0.000000,0.000000,0.250000,0,0);}
.mae_c00495{transform:matrix(0.292408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292408,0.000000,0.000000,0.250000,0,0);}
.m63_c00495{transform:matrix(0.292962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292962,0.000000,0.000000,0.250000,0,0);}
.mb7_c00495{transform:matrix(0.293261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293261,0.000000,0.000000,0.250000,0,0);}
.mc5_c00495{transform:matrix(0.293328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293328,0.000000,0.000000,0.250000,0,0);}
.mb6_c00495{transform:matrix(0.293382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293382,0.000000,0.000000,0.250000,0,0);}
.ma2_c00495{transform:matrix(0.293573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293573,0.000000,0.000000,0.250000,0,0);}
.m71_c00495{transform:matrix(0.294718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294718,0.000000,0.000000,0.250000,0,0);}
.m68_c00495{transform:matrix(0.294793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294793,0.000000,0.000000,0.250000,0,0);}
.mca_c00495{transform:matrix(0.294970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294970,0.000000,0.000000,0.250000,0,0);}
.mc0_c00495{transform:matrix(0.295281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295281,0.000000,0.000000,0.250000,0,0);}
.mac_c00495{transform:matrix(0.295459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295459,0.000000,0.000000,0.250000,0,0);}
.m73_c00495{transform:matrix(0.297980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297980,0.000000,0.000000,0.250000,0,0);}
.m2a_c00495{transform:matrix(0.297985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297985,0.000000,0.000000,0.250000,0,0);}
.mba_c00495{transform:matrix(0.298106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298106,0.000000,0.000000,0.250000,0,0);}
.m61_c00495{transform:matrix(0.298182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298182,0.000000,0.000000,0.250000,0,0);}
.m86_c00495{transform:matrix(0.298870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298870,0.000000,0.000000,0.250000,0,0);}
.m6e_c00495{transform:matrix(0.299059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299059,0.000000,0.000000,0.250000,0,0);}
.m74_c00495{transform:matrix(0.299653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299653,0.000000,0.000000,0.250000,0,0);}
.m93_c00495{transform:matrix(0.300327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300327,0.000000,0.000000,0.250000,0,0);}
.m62_c00495{transform:matrix(0.300410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300410,0.000000,0.000000,0.250000,0,0);}
.mc1_c00495{transform:matrix(0.301380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301380,0.000000,0.000000,0.250000,0,0);}
.ma9_c00495{transform:matrix(0.302781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302781,0.000000,0.000000,0.250000,0,0);}
.m15_c00495{transform:matrix(0.302846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302846,0.000000,0.000000,0.250000,0,0);}
.m99_c00495{transform:matrix(0.303344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303344,0.000000,0.000000,0.250000,0,0);}
.m32_c00495{transform:matrix(0.305717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305717,0.000000,0.000000,0.250000,0,0);}
.m2_c00495{transform:matrix(0.307006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307006,0.000000,0.000000,0.250000,0,0);}
.m9f_c00495{transform:matrix(0.307278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307278,0.000000,0.000000,0.250000,0,0);}
.m1b_c00495{transform:matrix(0.307383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307383,0.000000,0.000000,0.250000,0,0);}
.ma3_c00495{transform:matrix(0.307505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307505,0.000000,0.000000,0.250000,0,0);}
.m4b_c00495{transform:matrix(0.308377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308377,0.000000,0.000000,0.250000,0,0);}
.m38_c00495{transform:matrix(0.308940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308940,0.000000,0.000000,0.250000,0,0);}
.mc2_c00495{transform:matrix(0.310115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310115,0.000000,0.000000,0.250000,0,0);}
.m30_c00495{transform:matrix(0.310767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310767,0.000000,0.000000,0.250000,0,0);}
.m58_c00495{transform:matrix(0.310808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310808,0.000000,0.000000,0.250000,0,0);}
.m2c_c00495{transform:matrix(0.310946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310946,0.000000,0.000000,0.250000,0,0);}
.m1f_c00495{transform:matrix(0.310969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310969,0.000000,0.000000,0.250000,0,0);}
.m49_c00495{transform:matrix(0.310971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310971,0.000000,0.000000,0.250000,0,0);}
.mb4_c00495{transform:matrix(0.311100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311100,0.000000,0.000000,0.250000,0,0);}
.m9c_c00495{transform:matrix(0.311707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311707,0.000000,0.000000,0.250000,0,0);}
.m39_c00495{transform:matrix(0.311853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311853,0.000000,0.000000,0.250000,0,0);}
.m45_c00495{transform:matrix(0.313016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313016,0.000000,0.000000,0.250000,0,0);}
.m8b_c00495{transform:matrix(0.313059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313059,0.000000,0.000000,0.250000,0,0);}
.m2d_c00495{transform:matrix(0.313644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313644,0.000000,0.000000,0.250000,0,0);}
.m19_c00495{transform:matrix(0.313831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313831,0.000000,0.000000,0.250000,0,0);}
.m82_c00495{transform:matrix(0.313880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313880,0.000000,0.000000,0.250000,0,0);}
.m94_c00495{transform:matrix(0.314209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314209,0.000000,0.000000,0.250000,0,0);}
.m8d_c00495{transform:matrix(0.314269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314269,0.000000,0.000000,0.250000,0,0);}
.m5_c00495{transform:matrix(0.314579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314579,0.000000,0.000000,0.250000,0,0);}
.m51_c00495{transform:matrix(0.314911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314911,0.000000,0.000000,0.250000,0,0);}
.m8_c00495{transform:matrix(0.315708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315708,0.000000,0.000000,0.250000,0,0);}
.mbf_c00495{transform:matrix(0.316259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316259,0.000000,0.000000,0.250000,0,0);}
.m34_c00495{transform:matrix(0.317544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317544,0.000000,0.000000,0.250000,0,0);}
.m42_c00495{transform:matrix(0.319250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319250,0.000000,0.000000,0.250000,0,0);}
.m65_c00495{transform:matrix(0.319585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319585,0.000000,0.000000,0.250000,0,0);}
.mf_c00495{transform:matrix(0.320282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320282,0.000000,0.000000,0.250000,0,0);}
.m56_c00495{transform:matrix(0.321121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321121,0.000000,0.000000,0.250000,0,0);}
.m17_c00495{transform:matrix(0.321647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321647,0.000000,0.000000,0.250000,0,0);}
.mb2_c00495{transform:matrix(0.322527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322527,0.000000,0.000000,0.250000,0,0);}
.m59_c00495{transform:matrix(0.322740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322740,0.000000,0.000000,0.250000,0,0);}
.m3a_c00495{transform:matrix(0.323172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323172,0.000000,0.000000,0.250000,0,0);}
.m4a_c00495{transform:matrix(0.323215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323215,0.000000,0.000000,0.250000,0,0);}
.m70_c00495{transform:matrix(0.326105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326105,0.000000,0.000000,0.250000,0,0);}
.m4f_c00495{transform:matrix(0.326727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326727,0.000000,0.000000,0.250000,0,0);}
.ma4_c00495{transform:matrix(0.327832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327832,0.000000,0.000000,0.250000,0,0);}
.m55_c00495{transform:matrix(0.329528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329528,0.000000,0.000000,0.250000,0,0);}
.m14_c00495{transform:matrix(0.329635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329635,0.000000,0.000000,0.250000,0,0);}
.m57_c00495{transform:matrix(0.330094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330094,0.000000,0.000000,0.250000,0,0);}
.m9b_c00495{transform:matrix(0.333044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333044,0.000000,0.000000,0.250000,0,0);}
.mb_c00495{transform:matrix(0.333345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333345,0.000000,0.000000,0.250000,0,0);}
.m4e_c00495{transform:matrix(0.335786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335786,0.000000,0.000000,0.250000,0,0);}
.m96_c00495{transform:matrix(0.339027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339027,0.000000,0.000000,0.250000,0,0);}
.m7e_c00495{transform:matrix(0.339483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339483,0.000000,0.000000,0.250000,0,0);}
.m4d_c00495{transform:matrix(0.345007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345007,0.000000,0.000000,0.250000,0,0);}
.m9_c00495{transform:matrix(0.353102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353102,0.000000,0.000000,0.250000,0,0);}
.m72_c00495{transform:matrix(0.358891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358891,0.000000,0.000000,0.250000,0,0);}
.m35_c00495{transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);}
.mc3_c00495{transform:matrix(0.366873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366873,0.000000,0.000000,0.250000,0,0);}
.m7f_c00495{transform:matrix(0.370152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370152,0.000000,0.000000,0.250000,0,0);}
.m76_c00495{transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);}
.m85_c00495{transform:matrix(0.372391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372391,0.000000,0.000000,0.250000,0,0);}
.mad_c00495{transform:matrix(0.380897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380897,0.000000,0.000000,0.250000,0,0);}
.m29_c00495{transform:matrix(0.460081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460081,0.000000,0.000000,0.250000,0,0);}
.v1_c00495{vertical-align:-37.065600px;}
.v0_c00495{vertical-align:0.000000px;}
.ls3_c00495{letter-spacing:-3.104640px;}
.ls6_c00495{letter-spacing:-2.855167px;}
.ls5_c00495{letter-spacing:-2.798064px;}
.ls1a_c00495{letter-spacing:-2.683857px;}
.ls16_c00495{letter-spacing:-2.096508px;}
.ls9_c00495{letter-spacing:-1.566263px;}
.lsd_c00495{letter-spacing:-1.533633px;}
.ls1c_c00495{letter-spacing:-1.443899px;}
.ls19_c00495{letter-spacing:-1.261267px;}
.ls15_c00495{letter-spacing:-0.693398px;}
.lsf_c00495{letter-spacing:-0.285517px;}
.ls18_c00495{letter-spacing:-0.073419px;}
.ls2_c00495{letter-spacing:0.000000px;}
.ls11_c00495{letter-spacing:0.130522px;}
.ls1_c00495{letter-spacing:0.897338px;}
.ls8_c00495{letter-spacing:0.929969px;}
.ls12_c00495{letter-spacing:1.558105px;}
.lse_c00495{letter-spacing:2.129139px;}
.ls10_c00495{letter-spacing:2.218873px;}
.ls0_c00495{letter-spacing:2.463601px;}
.lsb_c00495{letter-spacing:2.577808px;}
.ls17_c00495{letter-spacing:3.425400px;}
.ls1b_c00495{letter-spacing:3.573037px;}
.ls1d_c00495{letter-spacing:3.583810px;}
.ls7_c00495{letter-spacing:3.593700px;}
.lsa_c00495{letter-spacing:3.638298px;}
.ls14_c00495{letter-spacing:3.760663px;}
.ls4_c00495{letter-spacing:4.078810px;}
.lsc_c00495{letter-spacing:59.875398px;}
.ls13_c00495{letter-spacing:61.300998px;}
.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;}
}
.ws1_c00495{word-spacing:-21.291388px;}
.ws0_c00495{word-spacing:-19.700652px;}
.ws3_c00495{word-spacing:0.000000px;}
.ws2_c00495{word-spacing:3.710899px;}
._4_c00495{margin-left:-6.228304px;}
._3_c00495{margin-left:-4.097923px;}
._6_c00495{margin-left:-1.060398px;}
._5_c00495{width:8.810270px;}
._1_c00495{width:32.501208px;}
._2_c00495{width:40.257516px;}
._0_c00495{width:1232.706816px;}
.fc0_c00495{color:transparent;}
.fs3_c00495{font-size:22.572000px;}
.fsc_c00495{font-size:27.720000px;}
.fs1_c00495{font-size:28.314000px;}
.fsf_c00495{font-size:29.304000px;}
.fsb_c00495{font-size:36.036198px;}
.fs0_c00495{font-size:38.808000px;}
.fs7_c00495{font-size:59.875398px;}
.fs9_c00495{font-size:61.300998px;}
.fs10_c00495{font-size:66.528000px;}
.fs6_c00495{font-size:68.112198px;}
.fsa_c00495{font-size:68.508000px;}
.fse_c00495{font-size:71.676198px;}
.fs5_c00495{font-size:71.874000px;}
.fs8_c00495{font-size:74.844000px;}
.fsd_c00495{font-size:78.804000px;}
.fs4_c00495{font-size:81.576198px;}
.fs2_c00495{font-size:88.704000px;}
.y0_c00495{bottom:0.000000px;}
.y22_c00495{bottom:11.311785px;}
.y1_c00495{bottom:76.500000px;}
.y21_c00495{bottom:91.863135px;}
.y2_c00495{bottom:98.634735px;}
.y20_c00495{bottom:123.582735px;}
.y1f_c00495{bottom:155.297385px;}
.y1e_c00495{bottom:187.378335px;}
.y1d_c00495{bottom:220.167135px;}
.y1c_c00495{bottom:252.243135px;}
.y1b_c00495{bottom:284.319135px;}
.y1a_c00495{bottom:301.777785px;}
.y19_c00495{bottom:315.677385px;}
.y18_c00495{bottom:348.114735px;}
.y17_c00495{bottom:379.834335px;}
.y16_c00495{bottom:443.273535px;}
.y15_c00495{bottom:473.918985px;}
.y14_c00495{bottom:505.999935px;}
.y13_c00495{bottom:537.006735px;}
.y12_c00495{bottom:569.077785px;}
.y11_c00495{bottom:600.802335px;}
.y10_c00495{bottom:633.229785px;}
.yf_c00495{bottom:664.597935px;}
.ye_c00495{bottom:696.668985px;}
.yd_c00495{bottom:728.032185px;}
.yc_c00495{bottom:759.756735px;}
.yb_c00495{bottom:792.184185px;}
.ya_c00495{bottom:823.552335px;}
.y9_c00495{bottom:855.271935px;}
.y8_c00495{bottom:886.986585px;}
.y7_c00495{bottom:918.711135px;}
.y6_c00495{bottom:990.347535px;}
.y5_c00495{bottom:1035.961785px;}
.y4_c00495{bottom:1059.127785px;}
.y3_c00495{bottom:1068.394185px;}
.h5_c00495{height:23.541891px;}
.h12_c00495{height:28.760273px;}
.hf_c00495{height:28.911094px;}
.h6_c00495{height:29.530617px;}
.he_c00495{height:35.367558px;}
.ha_c00495{height:39.877015px;}
.h2_c00495{height:40.475531px;}
.hc_c00495{height:40.826465px;}
.h3_c00495{height:49.992525px;}
.hd_c00495{height:67.236855px;}
.h13_c00495{height:69.386625px;}
.h11_c00495{height:70.346269px;}
.h8_c00495{height:70.540400px;}
.h9_c00495{height:71.038894px;}
.hb_c00495{height:73.455293px;}
.h10_c00495{height:77.341816px;}
.h7_c00495{height:80.062577px;}
.h4_c00495{height:87.058125px;}
.h1_c00495{height:1110.000000px;}
.h0_c00495{height:1263.000000px;}
.w1_c00495{width:763.500000px;}
.w0_c00495{width:892.500000px;}
.x0_c00495{left:0.000000px;}
.x2_c00495{left:37.492335px;}
.x1_c00495{left:64.500000px;}
.x53_c00495{left:75.023235px;}
.x26_c00495{left:76.082535px;}
.x8_c00495{left:77.617035px;}
.x1d_c00495{left:79.201035px;}
.x6b_c00495{left:83.156085px;}
.x6c_c00495{left:107.470485px;}
.x3a_c00495{left:109.460385px;}
.x12_c00495{left:110.504835px;}
.x7f_c00495{left:119.741535px;}
.x9_c00495{left:121.360185px;}
.x6d_c00495{left:130.443435px;}
.x4f_c00495{left:131.661135px;}
.x6f_c00495{left:141.868035px;}
.x5d_c00495{left:152.357085px;}
.x1e_c00495{left:153.426285px;}
.xa_c00495{left:155.643885px;}
.x7c_c00495{left:163.187685px;}
.x48_c00495{left:164.444985px;}
.x30_c00495{left:166.088385px;}
.x13_c00495{left:167.850585px;}
.x58_c00495{left:175.726035px;}
.x3f_c00495{left:186.477435px;}
.x27_c00495{left:188.185185px;}
.x7_c00495{left:195.714135px;}
.x64_c00495{left:197.743635px;}
.x49_c00495{left:198.802935px;}
.x14_c00495{left:208.668285px;}
.x62_c00495{left:210.935385px;}
.x31_c00495{left:220.434435px;}
.x1f_c00495{left:231.972885px;}
.x63_c00495{left:233.042085px;}
.x3b_c00495{left:242.179785px;}
.x28_c00495{left:243.313335px;}
.xb_c00495{left:254.485485px;}
.x54_c00495{left:264.984435px;}
.x32_c00495{left:275.334885px;}
.x59_c00495{left:277.191135px;}
.x5c_c00495{left:286.903035px;}
.x29_c00495{left:287.912835px;}
.x20_c00495{left:298.094985px;}
.x33_c00495{left:299.327535px;}
.x6a_c00495{left:308.267235px;}
.xc_c00495{left:310.366035px;}
.x55_c00495{left:319.206735px;}
.x40_c00495{left:320.419485px;}
.x21_c00495{left:321.815385px;}
.x5e_c00495{left:331.339185px;}
.x2a_c00495{left:333.883485px;}
.x34_c00495{left:341.981685px;}
.x15_c00495{left:343.862685px;}
.x67_c00495{left:353.183535px;}
.x4a_c00495{left:364.915035px;}
.x80_c00495{left:373.013235px;}
.x35_c00495{left:375.102135px;}
.x16_c00495{left:376.735635px;}
.x68_c00495{left:386.482185px;}
.x3_c00495{left:394.585335px;}
.x70_c00495{left:395.738685px;}
.x76_c00495{left:397.208835px;}
.x5f_c00495{left:398.763135px;}
.x41_c00495{left:400.188735px;}
.x81_c00495{left:407.970135px;}
.x2b_c00495{left:409.247235px;}
.x17_c00495{left:419.201685px;}
.x22_c00495{left:420.879735px;}
.xd_c00495{left:422.988435px;}
.x3c_c00495{left:432.274635px;}
.x36_c00495{left:440.407485px;}
.x2c_c00495{left:442.105335px;}
.x37_c00495{left:443.303235px;}
.x71_c00495{left:451.549935px;}
.x4b_c00495{left:453.069585px;}
.x65_c00495{left:454.668435px;}
.x50_c00495{left:463.801185px;}
.x42_c00495{left:465.350535px;}
.x18_c00495{left:475.067385px;}
.x77_c00495{left:484.521885px;}
.x56_c00495{left:487.155285px;}
.x72_c00495{left:496.292985px;}
.xe_c00495{left:498.005685px;}
.x23_c00495{left:508.014585px;}
.x5a_c00495{left:520.003485px;}
.x2d_c00495{left:521.028135px;}
.x38_c00495{left:530.487585px;}
.x24_c00495{left:531.640935px;}
.x51_c00495{left:540.828135px;}
.x73_c00495{left:550.827135px;}
.xf_c00495{left:553.168485px;}
.x60_c00495{left:562.152735px;}
.x69_c00495{left:563.484285px;}
.x57_c00495{left:564.845535px;}
.x7d_c00495{left:573.691185px;}
.x19_c00495{left:575.765235px;}
.x78_c00495{left:584.680185px;}
.x3d_c00495{left:585.922635px;}
.x2e_c00495{left:596.129535px;}
.x43_c00495{left:597.307635px;}
.x4c_c00495{left:608.039235px;}
.x10_c00495{left:609.053985px;}
.x66_c00495{left:617.825385px;}
.x61_c00495{left:619.899435px;}
.x46_c00495{left:628.863885px;}
.x5b_c00495{left:632.566485px;}
.x74_c00495{left:640.471635px;}
.x11_c00495{left:642.218985px;}
.x1a_c00495{left:643.307985px;}
.x2f_c00495{left:651.841785px;}
.x4d_c00495{left:653.178285px;}
.x44_c00495{left:662.721885px;}
.x3e_c00495{left:663.964335px;}
.x1b_c00495{left:665.305785px;}
.x79_c00495{left:672.715935px;}
.x75_c00495{left:674.671185px;}
.x25_c00495{left:675.680985px;}
.x7b_c00495{left:684.620685px;}
.x4e_c00495{left:685.699785px;}
.x47_c00495{left:687.828285px;}
.x82_c00495{left:695.941335px;}
.x1c_c00495{left:697.649085px;}
.x52_c00495{left:699.440985px;}
.x83_c00495{left:702.782235px;}
.x7e_c00495{left:706.697685px;}
.x7a_c00495{left:707.702535px;}
.x45_c00495{left:708.816285px;}
.x4_c00495{left:718.275735px;}
.x6e_c00495{left:729.913185px;}
.x39_c00495{left:731.338785px;}
.x5_c00495{left:741.268485px;}
.x6_c00495{left:742.466385px;}
@media print{
.v1_c00495{vertical-align:-32.947200pt;}
.v0_c00495{vertical-align:0.000000pt;}
.ls3_c00495{letter-spacing:-2.759680pt;}
.ls6_c00495{letter-spacing:-2.537926pt;}
.ls5_c00495{letter-spacing:-2.487168pt;}
.ls1a_c00495{letter-spacing:-2.385651pt;}
.ls16_c00495{letter-spacing:-1.863563pt;}
.ls9_c00495{letter-spacing:-1.392234pt;}
.lsd_c00495{letter-spacing:-1.363229pt;}
.ls1c_c00495{letter-spacing:-1.283466pt;}
.ls19_c00495{letter-spacing:-1.121126pt;}
.ls15_c00495{letter-spacing:-0.616353pt;}
.lsf_c00495{letter-spacing:-0.253793pt;}
.ls18_c00495{letter-spacing:-0.065261pt;}
.ls2_c00495{letter-spacing:0.000000pt;}
.ls11_c00495{letter-spacing:0.116019pt;}
.ls1_c00495{letter-spacing:0.797634pt;}
.ls8_c00495{letter-spacing:0.826639pt;}
.ls12_c00495{letter-spacing:1.384983pt;}
.lse_c00495{letter-spacing:1.892568pt;}
.ls10_c00495{letter-spacing:1.972331pt;}
.ls0_c00495{letter-spacing:2.189868pt;}
.lsb_c00495{letter-spacing:2.291385pt;}
.ls17_c00495{letter-spacing:3.044800pt;}
.ls1b_c00495{letter-spacing:3.176033pt;}
.ls1d_c00495{letter-spacing:3.185609pt;}
.ls7_c00495{letter-spacing:3.194400pt;}
.lsa_c00495{letter-spacing:3.234043pt;}
.ls14_c00495{letter-spacing:3.342811pt;}
.ls4_c00495{letter-spacing:3.625609pt;}
.lsc_c00495{letter-spacing:53.222576pt;}
.ls13_c00495{letter-spacing:54.489776pt;}
.ws1_c00495{word-spacing:-18.925678pt;}
.ws0_c00495{word-spacing:-17.511691pt;}
.ws3_c00495{word-spacing:0.000000pt;}
.ws2_c00495{word-spacing:3.298577pt;}
._4_c00495{margin-left:-5.536270pt;}
._3_c00495{margin-left:-3.642599pt;}
._6_c00495{margin-left:-0.942576pt;}
._5_c00495{width:7.831351pt;}
._1_c00495{width:28.889962pt;}
._2_c00495{width:35.784459pt;}
._0_c00495{width:1095.739392pt;}
.fs3_c00495{font-size:20.064000pt;}
.fsc_c00495{font-size:24.640000pt;}
.fs1_c00495{font-size:25.168000pt;}
.fsf_c00495{font-size:26.048000pt;}
.fsb_c00495{font-size:32.032176pt;}
.fs0_c00495{font-size:34.496000pt;}
.fs7_c00495{font-size:53.222576pt;}
.fs9_c00495{font-size:54.489776pt;}
.fs10_c00495{font-size:59.136000pt;}
.fs6_c00495{font-size:60.544176pt;}
.fsa_c00495{font-size:60.896000pt;}
.fse_c00495{font-size:63.712176pt;}
.fs5_c00495{font-size:63.888000pt;}
.fs8_c00495{font-size:66.528000pt;}
.fsd_c00495{font-size:70.048000pt;}
.fs4_c00495{font-size:72.512176pt;}
.fs2_c00495{font-size:78.848000pt;}
.y0_c00495{bottom:0.000000pt;}
.y22_c00495{bottom:10.054920pt;}
.y1_c00495{bottom:68.000000pt;}
.y21_c00495{bottom:81.656120pt;}
.y2_c00495{bottom:87.675320pt;}
.y20_c00495{bottom:109.851320pt;}
.y1f_c00495{bottom:138.042120pt;}
.y1e_c00495{bottom:166.558520pt;}
.y1d_c00495{bottom:195.704120pt;}
.y1c_c00495{bottom:224.216120pt;}
.y1b_c00495{bottom:252.728120pt;}
.y1a_c00495{bottom:268.246920pt;}
.y19_c00495{bottom:280.602120pt;}
.y18_c00495{bottom:309.435320pt;}
.y17_c00495{bottom:337.630520pt;}
.y16_c00495{bottom:394.020920pt;}
.y15_c00495{bottom:421.261320pt;}
.y14_c00495{bottom:449.777720pt;}
.y13_c00495{bottom:477.339320pt;}
.y12_c00495{bottom:505.846920pt;}
.y11_c00495{bottom:534.046520pt;}
.y10_c00495{bottom:562.870920pt;}
.yf_c00495{bottom:590.753720pt;}
.ye_c00495{bottom:619.261320pt;}
.yd_c00495{bottom:647.139720pt;}
.yc_c00495{bottom:675.339320pt;}
.yb_c00495{bottom:704.163720pt;}
.ya_c00495{bottom:732.046520pt;}
.y9_c00495{bottom:760.241720pt;}
.y8_c00495{bottom:788.432520pt;}
.y7_c00495{bottom:816.632120pt;}
.y6_c00495{bottom:880.308920pt;}
.y5_c00495{bottom:920.854920pt;}
.y4_c00495{bottom:941.446920pt;}
.y3_c00495{bottom:949.683720pt;}
.h5_c00495{height:20.926125pt;}
.h12_c00495{height:25.564688pt;}
.hf_c00495{height:25.698750pt;}
.h6_c00495{height:26.249438pt;}
.he_c00495{height:31.437829pt;}
.ha_c00495{height:35.446236pt;}
.h2_c00495{height:35.978250pt;}
.hc_c00495{height:36.290191pt;}
.h3_c00495{height:44.437800pt;}
.hd_c00495{height:59.766094pt;}
.h13_c00495{height:61.677000pt;}
.h11_c00495{height:62.530016pt;}
.h8_c00495{height:62.702578pt;}
.h9_c00495{height:63.145684pt;}
.hb_c00495{height:65.293594pt;}
.h10_c00495{height:68.748281pt;}
.h7_c00495{height:71.166735pt;}
.h4_c00495{height:77.385000pt;}
.h1_c00495{height:986.666667pt;}
.h0_c00495{height:1122.666667pt;}
.w1_c00495{width:678.666667pt;}
.w0_c00495{width:793.333333pt;}
.x0_c00495{left:0.000000pt;}
.x2_c00495{left:33.326520pt;}
.x1_c00495{left:57.333333pt;}
.x53_c00495{left:66.687320pt;}
.x26_c00495{left:67.628920pt;}
.x8_c00495{left:68.992920pt;}
.x1d_c00495{left:70.400920pt;}
.x6b_c00495{left:73.916520pt;}
.x6c_c00495{left:95.529320pt;}
.x3a_c00495{left:97.298120pt;}
.x12_c00495{left:98.226520pt;}
.x7f_c00495{left:106.436920pt;}
.x9_c00495{left:107.875720pt;}
.x6d_c00495{left:115.949720pt;}
.x4f_c00495{left:117.032120pt;}
.x6f_c00495{left:126.104920pt;}
.x5d_c00495{left:135.428520pt;}
.x1e_c00495{left:136.378920pt;}
.xa_c00495{left:138.350120pt;}
.x7c_c00495{left:145.055720pt;}
.x48_c00495{left:146.173320pt;}
.x30_c00495{left:147.634120pt;}
.x13_c00495{left:149.200520pt;}
.x58_c00495{left:156.200920pt;}
.x3f_c00495{left:165.757720pt;}
.x27_c00495{left:167.275720pt;}
.x7_c00495{left:173.968120pt;}
.x64_c00495{left:175.772120pt;}
.x49_c00495{left:176.713720pt;}
.x14_c00495{left:185.482920pt;}
.x62_c00495{left:187.498120pt;}
.x31_c00495{left:195.941720pt;}
.x1f_c00495{left:206.198120pt;}
.x63_c00495{left:207.148520pt;}
.x3b_c00495{left:215.270920pt;}
.x28_c00495{left:216.278520pt;}
.xb_c00495{left:226.209320pt;}
.x54_c00495{left:235.541720pt;}
.x32_c00495{left:244.742120pt;}
.x59_c00495{left:246.392120pt;}
.x5c_c00495{left:255.024920pt;}
.x29_c00495{left:255.922520pt;}
.x20_c00495{left:264.973320pt;}
.x33_c00495{left:266.068920pt;}
.x6a_c00495{left:274.015320pt;}
.xc_c00495{left:275.880920pt;}
.x55_c00495{left:283.739320pt;}
.x40_c00495{left:284.817320pt;}
.x21_c00495{left:286.058120pt;}
.x5e_c00495{left:294.523720pt;}
.x2a_c00495{left:296.785320pt;}
.x34_c00495{left:303.983720pt;}
.x15_c00495{left:305.655720pt;}
.x67_c00495{left:313.940920pt;}
.x4a_c00495{left:324.368920pt;}
.x80_c00495{left:331.567320pt;}
.x35_c00495{left:333.424120pt;}
.x16_c00495{left:334.876120pt;}
.x68_c00495{left:343.539720pt;}
.x3_c00495{left:350.742520pt;}
.x70_c00495{left:351.767720pt;}
.x76_c00495{left:353.074520pt;}
.x5f_c00495{left:354.456120pt;}
.x41_c00495{left:355.723320pt;}
.x81_c00495{left:362.640120pt;}
.x2b_c00495{left:363.775320pt;}
.x17_c00495{left:372.623720pt;}
.x22_c00495{left:374.115320pt;}
.xd_c00495{left:375.989720pt;}
.x3c_c00495{left:384.244120pt;}
.x36_c00495{left:391.473320pt;}
.x2c_c00495{left:392.982520pt;}
.x37_c00495{left:394.047320pt;}
.x71_c00495{left:401.377720pt;}
.x4b_c00495{left:402.728520pt;}
.x65_c00495{left:404.149720pt;}
.x50_c00495{left:412.267720pt;}
.x42_c00495{left:413.644920pt;}
.x18_c00495{left:422.282120pt;}
.x77_c00495{left:430.686120pt;}
.x56_c00495{left:433.026920pt;}
.x72_c00495{left:441.149320pt;}
.xe_c00495{left:442.671720pt;}
.x23_c00495{left:451.568520pt;}
.x5a_c00495{left:462.225320pt;}
.x2d_c00495{left:463.136120pt;}
.x38_c00495{left:471.544520pt;}
.x24_c00495{left:472.569720pt;}
.x51_c00495{left:480.736120pt;}
.x73_c00495{left:489.624120pt;}
.xf_c00495{left:491.705320pt;}
.x60_c00495{left:499.691320pt;}
.x69_c00495{left:500.874920pt;}
.x57_c00495{left:502.084920pt;}
.x7d_c00495{left:509.947720pt;}
.x19_c00495{left:511.791320pt;}
.x78_c00495{left:519.715720pt;}
.x3d_c00495{left:520.820120pt;}
.x2e_c00495{left:529.892920pt;}
.x43_c00495{left:530.940120pt;}
.x4c_c00495{left:540.479320pt;}
.x10_c00495{left:541.381320pt;}
.x66_c00495{left:549.178120pt;}
.x61_c00495{left:551.021720pt;}
.x46_c00495{left:558.990120pt;}
.x5b_c00495{left:562.281320pt;}
.x74_c00495{left:569.308120pt;}
.x11_c00495{left:570.861320pt;}
.x1a_c00495{left:571.829320pt;}
.x2f_c00495{left:579.414920pt;}
.x4d_c00495{left:580.602920pt;}
.x44_c00495{left:589.086120pt;}
.x3e_c00495{left:590.190520pt;}
.x1b_c00495{left:591.382920pt;}
.x79_c00495{left:597.969720pt;}
.x75_c00495{left:599.707720pt;}
.x25_c00495{left:600.605320pt;}
.x7b_c00495{left:608.551720pt;}
.x4e_c00495{left:609.510920pt;}
.x47_c00495{left:611.402920pt;}
.x82_c00495{left:618.614520pt;}
.x1c_c00495{left:620.132520pt;}
.x52_c00495{left:621.725320pt;}
.x83_c00495{left:624.695320pt;}
.x7e_c00495{left:628.175720pt;}
.x7a_c00495{left:629.068920pt;}
.x45_c00495{left:630.058920pt;}
.x4_c00495{left:638.467320pt;}
.x6e_c00495{left:648.811720pt;}
.x39_c00495{left:650.078920pt;}
.x5_c00495{left:658.905320pt;}
.x6_c00495{left:659.970120pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b451606108ccd9d48644be96.woff2')format("woff");}.ff1_c00496{font-family:ff1_c00496;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00496;src:url('chunks/assets/font_f18039e0330ebfb412e9c10e.woff2')format("woff");}.ff2_c00496{font-family:ff2_c00496;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00496;src:url('chunks/assets/font_8f96208565e4a0468fecc389.woff2')format("woff");}.ff3_c00496{font-family:ff3_c00496;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m15_c00496{transform:matrix(0.089940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089940,0.000000,0.000000,0.250000,0,0);}
.m16_c00496{transform:matrix(0.108087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108087,0.000000,0.000000,0.250000,0,0);}
.m68_c00496{transform:matrix(0.134462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134462,0.000000,0.000000,0.250000,0,0);}
.m4d_c00496{transform:matrix(0.144805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144805,0.000000,0.000000,0.250000,0,0);}
.m6f_c00496{transform:matrix(0.189836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189836,0.000000,0.000000,0.250000,0,0);}
.m17_c00496{transform:matrix(0.221623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221623,0.000000,0.000000,0.250000,0,0);}
.m1_c00496{transform:matrix(0.231399,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231399,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231399,0.000000,0.000000,0.250000,0,0);}
.ma1_c00496{transform:matrix(0.232021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232021,0.000000,0.000000,0.250000,0,0);}
.ma2_c00496{transform:matrix(0.239657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239657,0.000000,0.000000,0.250000,0,0);}
.m86_c00496{transform:matrix(0.240813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240813,0.000000,0.000000,0.250000,0,0);}
.m48_c00496{transform:matrix(0.246397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246397,0.000000,0.000000,0.250000,0,0);}
.m0_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);}
.m8e_c00496{transform:matrix(0.250440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250440,0.000000,0.000000,0.250000,0,0);}
.mad_c00496{transform:matrix(0.250612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250612,0.000000,0.000000,0.250000,0,0);}
.ma4_c00496{transform:matrix(0.251385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251385,0.000000,0.000000,0.250000,0,0);}
.m39_c00496{transform:matrix(0.251596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251596,0.000000,0.000000,0.250000,0,0);}
.m83_c00496{transform:matrix(0.251817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251817,0.000000,0.000000,0.250000,0,0);}
.m11_c00496{transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);}
.mf_c00496{transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);}
.m3e_c00496{transform:matrix(0.254017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254017,0.000000,0.000000,0.250000,0,0);}
.m7b_c00496{transform:matrix(0.254614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254614,0.000000,0.000000,0.250000,0,0);}
.m26_c00496{transform:matrix(0.255285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255285,0.000000,0.000000,0.250000,0,0);}
.m9b_c00496{transform:matrix(0.255317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255317,0.000000,0.000000,0.250000,0,0);}
.m29_c00496{transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);}
.m13_c00496{transform:matrix(0.256704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256704,0.000000,0.000000,0.250000,0,0);}
.m1b_c00496{transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);}
.m32_c00496{transform:matrix(0.258186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258186,0.000000,0.000000,0.250000,0,0);}
.m9e_c00496{transform:matrix(0.258788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258788,0.000000,0.000000,0.250000,0,0);}
.m6a_c00496{transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);}
.m70_c00496{transform:matrix(0.260681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260681,0.000000,0.000000,0.250000,0,0);}
.m52_c00496{transform:matrix(0.262788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262788,0.000000,0.000000,0.250000,0,0);}
.m6d_c00496{transform:matrix(0.262844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262844,0.000000,0.000000,0.250000,0,0);}
.m93_c00496{transform:matrix(0.263209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263209,0.000000,0.000000,0.250000,0,0);}
.m88_c00496{transform:matrix(0.264762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264762,0.000000,0.000000,0.250000,0,0);}
.m43_c00496{transform:matrix(0.264837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264837,0.000000,0.000000,0.250000,0,0);}
.ma_c00496{transform:matrix(0.264852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264852,0.000000,0.000000,0.250000,0,0);}
.m89_c00496{transform:matrix(0.265090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265090,0.000000,0.000000,0.250000,0,0);}
.ma5_c00496{transform:matrix(0.265846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265846,0.000000,0.000000,0.250000,0,0);}
.mb_c00496{transform:matrix(0.266448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266448,0.000000,0.000000,0.250000,0,0);}
.m62_c00496{transform:matrix(0.266975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266975,0.000000,0.000000,0.250000,0,0);}
.m72_c00496{transform:matrix(0.268308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268308,0.000000,0.000000,0.250000,0,0);}
.m81_c00496{transform:matrix(0.268394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268394,0.000000,0.000000,0.250000,0,0);}
.m47_c00496{transform:matrix(0.268539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268539,0.000000,0.000000,0.250000,0,0);}
.m3d_c00496{transform:matrix(0.269185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269185,0.000000,0.000000,0.250000,0,0);}
.m5c_c00496{transform:matrix(0.269209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269209,0.000000,0.000000,0.250000,0,0);}
.m6b_c00496{transform:matrix(0.270128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270128,0.000000,0.000000,0.250000,0,0);}
.ma8_c00496{transform:matrix(0.270269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270269,0.000000,0.000000,0.250000,0,0);}
.m28_c00496{transform:matrix(0.270838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270838,0.000000,0.000000,0.250000,0,0);}
.ma3_c00496{transform:matrix(0.271271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271271,0.000000,0.000000,0.250000,0,0);}
.m36_c00496{transform:matrix(0.272118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272118,0.000000,0.000000,0.250000,0,0);}
.m1f_c00496{transform:matrix(0.272295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272295,0.000000,0.000000,0.250000,0,0);}
.m71_c00496{transform:matrix(0.272544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272544,0.000000,0.000000,0.250000,0,0);}
.m57_c00496{transform:matrix(0.272614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272614,0.000000,0.000000,0.250000,0,0);}
.m2f_c00496{transform:matrix(0.273059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273059,0.000000,0.000000,0.250000,0,0);}
.m5b_c00496{transform:matrix(0.273462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273462,0.000000,0.000000,0.250000,0,0);}
.m40_c00496{transform:matrix(0.273481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273481,0.000000,0.000000,0.250000,0,0);}
.m24_c00496{transform:matrix(0.273781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273781,0.000000,0.000000,0.250000,0,0);}
.m50_c00496{transform:matrix(0.275314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275314,0.000000,0.000000,0.250000,0,0);}
.m2c_c00496{transform:matrix(0.275437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275437,0.000000,0.000000,0.250000,0,0);}
.m5e_c00496{transform:matrix(0.275573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275573,0.000000,0.000000,0.250000,0,0);}
.m1a_c00496{transform:matrix(0.276639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276639,0.000000,0.000000,0.250000,0,0);}
.m4_c00496{transform:matrix(0.277015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277015,0.000000,0.000000,0.250000,0,0);}
.m98_c00496{transform:matrix(0.277239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277239,0.000000,0.000000,0.250000,0,0);}
.m6c_c00496{transform:matrix(0.277509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277509,0.000000,0.000000,0.250000,0,0);}
.m49_c00496{transform:matrix(0.277563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277563,0.000000,0.000000,0.250000,0,0);}
.m25_c00496{transform:matrix(0.277590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277590,0.000000,0.000000,0.250000,0,0);}
.m9a_c00496{transform:matrix(0.277867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277867,0.000000,0.000000,0.250000,0,0);}
.m6e_c00496{transform:matrix(0.278207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278207,0.000000,0.000000,0.250000,0,0);}
.m8c_c00496{transform:matrix(0.278923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278923,0.000000,0.000000,0.250000,0,0);}
.m5a_c00496{transform:matrix(0.279300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279300,0.000000,0.000000,0.250000,0,0);}
.m95_c00496{transform:matrix(0.279494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279494,0.000000,0.000000,0.250000,0,0);}
.ma6_c00496{transform:matrix(0.279923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279923,0.000000,0.000000,0.250000,0,0);}
.m97_c00496{transform:matrix(0.280089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280089,0.000000,0.000000,0.250000,0,0);}
.md_c00496{transform:matrix(0.280273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280273,0.000000,0.000000,0.250000,0,0);}
.m20_c00496{transform:matrix(0.280290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280290,0.000000,0.000000,0.250000,0,0);}
.m7c_c00496{transform:matrix(0.280468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280468,0.000000,0.000000,0.250000,0,0);}
.m7f_c00496{transform:matrix(0.280698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280698,0.000000,0.000000,0.250000,0,0);}
.m55_c00496{transform:matrix(0.280856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280856,0.000000,0.000000,0.250000,0,0);}
.mab_c00496{transform:matrix(0.280943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280943,0.000000,0.000000,0.250000,0,0);}
.m3_c00496{transform:matrix(0.281218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281218,0.000000,0.000000,0.250000,0,0);}
.m73_c00496{transform:matrix(0.281493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281493,0.000000,0.000000,0.250000,0,0);}
.m80_c00496{transform:matrix(0.282089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282089,0.000000,0.000000,0.250000,0,0);}
.m64_c00496{transform:matrix(0.282148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282148,0.000000,0.000000,0.250000,0,0);}
.m5d_c00496{transform:matrix(0.282219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282219,0.000000,0.000000,0.250000,0,0);}
.m4c_c00496{transform:matrix(0.283196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283196,0.000000,0.000000,0.250000,0,0);}
.m4f_c00496{transform:matrix(0.283521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283521,0.000000,0.000000,0.250000,0,0);}
.m74_c00496{transform:matrix(0.283747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283747,0.000000,0.000000,0.250000,0,0);}
.m35_c00496{transform:matrix(0.283913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283913,0.000000,0.000000,0.250000,0,0);}
.m9d_c00496{transform:matrix(0.284352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284352,0.000000,0.000000,0.250000,0,0);}
.m63_c00496{transform:matrix(0.284439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284439,0.000000,0.000000,0.250000,0,0);}
.m10_c00496{transform:matrix(0.284662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284662,0.000000,0.000000,0.250000,0,0);}
.m90_c00496{transform:matrix(0.285447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285447,0.000000,0.000000,0.250000,0,0);}
.m3f_c00496{transform:matrix(0.285567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285567,0.000000,0.000000,0.250000,0,0);}
.m5f_c00496{transform:matrix(0.285772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285772,0.000000,0.000000,0.250000,0,0);}
.m82_c00496{transform:matrix(0.285808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285808,0.000000,0.000000,0.250000,0,0);}
.m54_c00496{transform:matrix(0.285880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285880,0.000000,0.000000,0.250000,0,0);}
.m1d_c00496{transform:matrix(0.286176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286176,0.000000,0.000000,0.250000,0,0);}
.m75_c00496{transform:matrix(0.287619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287619,0.000000,0.000000,0.250000,0,0);}
.m61_c00496{transform:matrix(0.287767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287767,0.000000,0.000000,0.250000,0,0);}
.ma7_c00496{transform:matrix(0.287930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287930,0.000000,0.000000,0.250000,0,0);}
.m4e_c00496{transform:matrix(0.287933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287933,0.000000,0.000000,0.250000,0,0);}
.m96_c00496{transform:matrix(0.290036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290036,0.000000,0.000000,0.250000,0,0);}
.m77_c00496{transform:matrix(0.291263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291263,0.000000,0.000000,0.250000,0,0);}
.m5_c00496{transform:matrix(0.292283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292283,0.000000,0.000000,0.250000,0,0);}
.m33_c00496{transform:matrix(0.292596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292596,0.000000,0.000000,0.250000,0,0);}
.m7a_c00496{transform:matrix(0.292888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292888,0.000000,0.000000,0.250000,0,0);}
.m34_c00496{transform:matrix(0.292929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292929,0.000000,0.000000,0.250000,0,0);}
.m60_c00496{transform:matrix(0.292939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292939,0.000000,0.000000,0.250000,0,0);}
.m2b_c00496{transform:matrix(0.293261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293261,0.000000,0.000000,0.250000,0,0);}
.m2_c00496{transform:matrix(0.293336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293336,0.000000,0.000000,0.250000,0,0);}
.mae_c00496{transform:matrix(0.294385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294385,0.000000,0.000000,0.250000,0,0);}
.m8b_c00496{transform:matrix(0.294598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294598,0.000000,0.000000,0.250000,0,0);}
.m41_c00496{transform:matrix(0.296502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296502,0.000000,0.000000,0.250000,0,0);}
.m23_c00496{transform:matrix(0.296594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296594,0.000000,0.000000,0.250000,0,0);}
.m31_c00496{transform:matrix(0.296730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296730,0.000000,0.000000,0.250000,0,0);}
.m69_c00496{transform:matrix(0.297979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297979,0.000000,0.000000,0.250000,0,0);}
.m4b_c00496{transform:matrix(0.298133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298133,0.000000,0.000000,0.250000,0,0);}
.m85_c00496{transform:matrix(0.298863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298863,0.000000,0.000000,0.250000,0,0);}
.m18_c00496{transform:matrix(0.298948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298948,0.000000,0.000000,0.250000,0,0);}
.m45_c00496{transform:matrix(0.299059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299059,0.000000,0.000000,0.250000,0,0);}
.m9_c00496{transform:matrix(0.299129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299129,0.000000,0.000000,0.250000,0,0);}
.m58_c00496{transform:matrix(0.299200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299200,0.000000,0.000000,0.250000,0,0);}
.m22_c00496{transform:matrix(0.299325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299325,0.000000,0.000000,0.250000,0,0);}
.m53_c00496{transform:matrix(0.299810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299810,0.000000,0.000000,0.250000,0,0);}
.ma0_c00496{transform:matrix(0.299853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299853,0.000000,0.000000,0.250000,0,0);}
.mac_c00496{transform:matrix(0.299926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299926,0.000000,0.000000,0.250000,0,0);}
.m27_c00496{transform:matrix(0.300748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300748,0.000000,0.000000,0.250000,0,0);}
.m76_c00496{transform:matrix(0.301046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301046,0.000000,0.000000,0.250000,0,0);}
.mc_c00496{transform:matrix(0.302588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302588,0.000000,0.000000,0.250000,0,0);}
.m8f_c00496{transform:matrix(0.303209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303209,0.000000,0.000000,0.250000,0,0);}
.m3c_c00496{transform:matrix(0.303224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303224,0.000000,0.000000,0.250000,0,0);}
.m84_c00496{transform:matrix(0.303259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303259,0.000000,0.000000,0.250000,0,0);}
.m3a_c00496{transform:matrix(0.304232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304232,0.000000,0.000000,0.250000,0,0);}
.m67_c00496{transform:matrix(0.304540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304540,0.000000,0.000000,0.250000,0,0);}
.m8_c00496{transform:matrix(0.304578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304578,0.000000,0.000000,0.250000,0,0);}
.m1e_c00496{transform:matrix(0.304842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304842,0.000000,0.000000,0.250000,0,0);}
.m14_c00496{transform:matrix(0.306821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306821,0.000000,0.000000,0.250000,0,0);}
.m7e_c00496{transform:matrix(0.306829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306829,0.000000,0.000000,0.250000,0,0);}
.m6_c00496{transform:matrix(0.306957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306957,0.000000,0.000000,0.250000,0,0);}
.m94_c00496{transform:matrix(0.307278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307278,0.000000,0.000000,0.250000,0,0);}
.m1c_c00496{transform:matrix(0.307388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307388,0.000000,0.000000,0.250000,0,0);}
.m99_c00496{transform:matrix(0.307505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307505,0.000000,0.000000,0.250000,0,0);}
.m4a_c00496{transform:matrix(0.308867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308867,0.000000,0.000000,0.250000,0,0);}
.m44_c00496{transform:matrix(0.312273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312273,0.000000,0.000000,0.250000,0,0);}
.m65_c00496{transform:matrix(0.315210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315210,0.000000,0.000000,0.250000,0,0);}
.m3b_c00496{transform:matrix(0.315261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315261,0.000000,0.000000,0.250000,0,0);}
.m91_c00496{transform:matrix(0.317958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317958,0.000000,0.000000,0.250000,0,0);}
.m8d_c00496{transform:matrix(0.318360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318360,0.000000,0.000000,0.250000,0,0);}
.m9f_c00496{transform:matrix(0.318852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318852,0.000000,0.000000,0.250000,0,0);}
.ma9_c00496{transform:matrix(0.320082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320082,0.000000,0.000000,0.250000,0,0);}
.m9c_c00496{transform:matrix(0.320282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320282,0.000000,0.000000,0.250000,0,0);}
.m38_c00496{transform:matrix(0.322243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322243,0.000000,0.000000,0.250000,0,0);}
.m2d_c00496{transform:matrix(0.323880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323880,0.000000,0.000000,0.250000,0,0);}
.m12_c00496{transform:matrix(0.325067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325067,0.000000,0.000000,0.250000,0,0);}
.m42_c00496{transform:matrix(0.325503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325503,0.000000,0.000000,0.250000,0,0);}
.m37_c00496{transform:matrix(0.325807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325807,0.000000,0.000000,0.250000,0,0);}
.m92_c00496{transform:matrix(0.326105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326105,0.000000,0.000000,0.250000,0,0);}
.m87_c00496{transform:matrix(0.331929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331929,0.000000,0.000000,0.250000,0,0);}
.maa_c00496{transform:matrix(0.333044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333044,0.000000,0.000000,0.250000,0,0);}
.m2a_c00496{transform:matrix(0.335778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335778,0.000000,0.000000,0.250000,0,0);}
.m7d_c00496{transform:matrix(0.336715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336715,0.000000,0.000000,0.250000,0,0);}
.m2e_c00496{transform:matrix(0.337960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337960,0.000000,0.000000,0.250000,0,0);}
.m79_c00496{transform:matrix(0.338672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338672,0.000000,0.000000,0.250000,0,0);}
.me_c00496{transform:matrix(0.339551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339551,0.000000,0.000000,0.250000,0,0);}
.m59_c00496{transform:matrix(0.341525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341525,0.000000,0.000000,0.250000,0,0);}
.m30_c00496{transform:matrix(0.342134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342134,0.000000,0.000000,0.250000,0,0);}
.m56_c00496{transform:matrix(0.348581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348581,0.000000,0.000000,0.250000,0,0);}
.m46_c00496{transform:matrix(0.350668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350668,0.000000,0.000000,0.250000,0,0);}
.m51_c00496{transform:matrix(0.358227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358227,0.000000,0.000000,0.250000,0,0);}
.m78_c00496{transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);}
.m21_c00496{transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);}
.m7_c00496{transform:matrix(0.373079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373079,0.000000,0.000000,0.250000,0,0);}
.m19_c00496{transform:matrix(0.376256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376256,0.000000,0.000000,0.250000,0,0);}
.m8a_c00496{transform:matrix(0.383051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383051,0.000000,0.000000,0.250000,0,0);}
.m66_c00496{transform:matrix(0.397481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397481,0.000000,0.000000,0.250000,0,0);}
.v0_c00496{vertical-align:0.000000px;}
.ls7_c00496{letter-spacing:-2.855167px;}
.ls10_c00496{letter-spacing:-2.798064px;}
.ls8_c00496{letter-spacing:-2.781748px;}
.ls2_c00496{letter-spacing:-2.633400px;}
.ls17_c00496{letter-spacing:-2.324922px;}
.lsd_c00496{letter-spacing:-1.843622px;}
.ls11_c00496{letter-spacing:-0.416039px;}
.ls1_c00496{letter-spacing:0.000000px;}
.ls5_c00496{letter-spacing:0.073419px;}
.ls13_c00496{letter-spacing:2.009700px;}
.ls15_c00496{letter-spacing:2.218873px;}
.lsf_c00496{letter-spacing:2.504700px;}
.ls12_c00496{letter-spacing:2.692810px;}
.ls16_c00496{letter-spacing:2.822536px;}
.ls18_c00496{letter-spacing:3.222260px;}
.lsb_c00496{letter-spacing:3.484810px;}
.ls1d_c00496{letter-spacing:3.515934px;}
.ls4_c00496{letter-spacing:3.524400px;}
.ls1b_c00496{letter-spacing:3.573037px;}
.lsa_c00496{letter-spacing:3.638298px;}
.lse_c00496{letter-spacing:3.643200px;}
.ls1a_c00496{letter-spacing:3.662771px;}
.ls9_c00496{letter-spacing:3.682810px;}
.ls0_c00496{letter-spacing:3.695402px;}
.ls19_c00496{letter-spacing:3.771900px;}
.ls14_c00496{letter-spacing:3.801610px;}
.ls1c_c00496{letter-spacing:4.068900px;}
.ls3_c00496{letter-spacing:4.078810px;}
.lsc_c00496{letter-spacing:4.118400px;}
.ls6_c00496{letter-spacing:58.449798px;}
.sc__c00496{text-shadow:none;}
.sc0_c00496{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00496{-webkit-text-stroke:0px transparent;}
.sc0_c00496{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00496{word-spacing:-20.394050px;}
.ws1_c00496{word-spacing:0.000000px;}
._0_c00496{margin-left:-15.499489px;}
.fc0_c00496{color:transparent;}
.fs0_c00496{font-size:27.720000px;}
.fs10_c00496{font-size:37.422000px;}
.fse_c00496{font-size:40.194000px;}
.fs11_c00496{font-size:42.966198px;}
.fsb_c00496{font-size:50.094000px;}
.fsd_c00496{font-size:53.856198px;}
.fs4_c00496{font-size:58.449798px;}
.fs7_c00496{font-size:69.696198px;}
.fs3_c00496{font-size:70.488000px;}
.fsc_c00496{font-size:71.280000px;}
.fsa_c00496{font-size:72.864000px;}
.fs6_c00496{font-size:73.656198px;}
.fs8_c00496{font-size:74.844000px;}
.fs1_c00496{font-size:75.240000px;}
.fs12_c00496{font-size:75.438000px;}
.fsf_c00496{font-size:76.032198px;}
.fs14_c00496{font-size:81.378000px;}
.fs2_c00496{font-size:81.576198px;}
.fs9_c00496{font-size:82.368000px;}
.fs13_c00496{font-size:89.100000px;}
.fs5_c00496{font-size:102.168000px;}
.y0_c00496{bottom:0.000000px;}
.y1_c00496{bottom:76.500000px;}
.y1e_c00496{bottom:125.721135px;}
.y1d_c00496{bottom:156.727935px;}
.y1c_c00496{bottom:157.079385px;}
.y1b_c00496{bottom:219.810735px;}
.y1a_c00496{bottom:251.525385px;}
.y19_c00496{bottom:283.249935px;}
.y18_c00496{bottom:314.969535px;}
.y17_c00496{bottom:346.684185px;}
.y16_c00496{bottom:379.121535px;}
.y15_c00496{bottom:411.553935px;}
.y14_c00496{bottom:439.348185px;}
.y13_c00496{bottom:442.199385px;}
.y12_c00496{bottom:443.629935px;}
.y11_c00496{bottom:507.069135px;}
.y10_c00496{bottom:538.432335px;}
.ye_c00496{bottom:570.503385px;}
.yf_c00496{bottom:575.497935px;}
.yd_c00496{bottom:602.227935px;}
.yc_c00496{bottom:633.942585px;}
.yb_c00496{bottom:665.662185px;}
.ya_c00496{bottom:697.386735px;}
.y9_c00496{bottom:729.101385px;}
.y8_c00496{bottom:760.825935px;}
.y7_c00496{bottom:792.189135px;}
.y6_c00496{bottom:855.623385px;}
.y5_c00496{bottom:887.699385px;}
.y4_c00496{bottom:919.062585px;}
.y3_c00496{bottom:1059.840585px;}
.y2_c00496{bottom:1095.124185px;}
.h2_c00496{height:28.911094px;}
.h6_c00496{height:38.927565px;}
.h12_c00496{height:39.029977px;}
.h10_c00496{height:41.921086px;}
.h13_c00496{height:42.168974px;}
.hd_c00496{height:52.246477px;}
.hf_c00496{height:52.856913px;}
.h5_c00496{height:69.180117px;}
.hc_c00496{height:71.512031px;}
.h8_c00496{height:72.289530px;}
.h9_c00496{height:72.690957px;}
.ha_c00496{height:73.455293px;}
.he_c00496{height:74.342813px;}
.h11_c00496{height:74.621444px;}
.h3_c00496{height:78.472969px;}
.h14_c00496{height:78.679477px;}
.h16_c00496{height:79.868057px;}
.h4_c00496{height:80.062577px;}
.hb_c00496{height:80.839688px;}
.h15_c00496{height:92.928516px;}
.h7_c00496{height:100.272305px;}
.h1_c00496{height:1110.000000px;}
.h0_c00496{height:1263.000000px;}
.w1_c00496{width:763.500000px;}
.w0_c00496{width:892.500000px;}
.x0_c00496{left:0.000000px;}
.x1_c00496{left:64.500000px;}
.x14_c00496{left:89.987100px;}
.x4_c00496{left:91.887900px;}
.x24_c00496{left:123.686700px;}
.x3b_c00496{left:133.824300px;}
.x1d_c00496{left:135.096450px;}
.x67_c00496{left:143.724300px;}
.x16_c00496{left:144.927150px;}
.x5c_c00496{left:155.559750px;}
.x2b_c00496{left:157.183350px;}
.x31_c00496{left:166.969500px;}
.x15_c00496{left:168.048600px;}
.xc_c00496{left:169.276200px;}
.x57_c00496{left:178.537650px;}
.x17_c00496{left:185.576550px;}
.x55_c00496{left:189.977100px;}
.x3c_c00496{left:191.016600px;}
.x68_c00496{left:199.565250px;}
.xd_c00496{left:200.872050px;}
.x1e_c00496{left:201.975900px;}
.x60_c00496{left:211.177950px;}
.x65_c00496{left:212.346150px;}
.x18_c00496{left:213.870750px;}
.x5e_c00496{left:223.087650px;}
.x42_c00496{left:224.181600px;}
.x5_c00496{left:225.493350px;}
.x19_c00496{left:233.695500px;}
.xe_c00496{left:235.378500px;}
.x32_c00496{left:245.026050px;}
.x43_c00496{left:246.134850px;}
.x6c_c00496{left:255.916050px;}
.x4d_c00496{left:257.123850px;}
.x36_c00496{left:268.028700px;}
.x61_c00496{left:278.171250px;}
.x25_c00496{left:279.666150px;}
.x4a_c00496{left:289.704750px;}
.x6_c00496{left:292.234200px;}
.x58_c00496{left:301.495650px;}
.xf_c00496{left:302.554950px;}
.x4e_c00496{left:312.558900px;}
.x37_c00496{left:322.760850px;}
.x2c_c00496{left:324.339900px;}
.x66_c00496{left:333.066750px;}
.x1a_c00496{left:334.611150px;}
.x26_c00496{left:345.525900px;}
.x1f_c00496{left:357.099000px;}
.x4f_c00496{left:359.430450px;}
.x69_c00496{left:366.197100px;}
.x56_c00496{left:368.053350px;}
.x7_c00496{left:369.191850px;}
.x33_c00496{left:378.334500px;}
.x62_c00496{left:390.858000px;}
.x44_c00496{left:392.446950px;}
.x20_c00496{left:401.911350px;}
.x3d_c00496{left:412.732050px;}
.x45_c00496{left:423.132000px;}
.x4c_c00496{left:424.493250px;}
.x6d_c00496{left:433.363650px;}
.x27_c00496{left:435.150600px;}
.x8_c00496{left:446.035650px;}
.x3e_c00496{left:448.104750px;}
.x50_c00496{left:455.648550px;}
.x10_c00496{left:457.242450px;}
.x38_c00496{left:467.771100px;}
.x2_c00496{left:473.770500px;}
.x6e_c00496{left:477.923550px;}
.x34_c00496{left:479.017500px;}
.x2d_c00496{left:480.403500px;}
.x64_c00496{left:489.313500px;}
.x1b_c00496{left:490.422300px;}
.x6a_c00496{left:500.292600px;}
.x3f_c00496{left:501.703350px;}
.x46_c00496{left:503.193300px;}
.x59_c00496{left:510.553950px;}
.x28_c00496{left:512.751750px;}
.x21_c00496{left:521.988450px;}
.x1c_c00496{left:523.196250px;}
.x47_c00496{left:524.928750px;}
.x11_c00496{left:534.620850px;}
.x5a_c00496{left:545.540550px;}
.x29_c00496{left:555.445500px;}
.x51_c00496{left:556.717650px;}
.x22_c00496{left:566.137500px;}
.x9_c00496{left:568.761000px;}
.x5b_c00496{left:577.869000px;}
.x12_c00496{left:579.136200px;}
.x52_c00496{left:587.868000px;}
.x40_c00496{left:589.506450px;}
.x48_c00496{left:590.640000px;}
.xa_c00496{left:599.995500px;}
.x5f_c00496{left:609.994500px;}
.x63_c00496{left:621.849750px;}
.x2e_c00496{left:622.993200px;}
.x6f_c00496{left:631.002300px;}
.x41_c00496{left:632.378400px;}
.x23_c00496{left:633.576300px;}
.x53_c00496{left:643.298100px;}
.x2a_c00496{left:655.371150px;}
.x13_c00496{left:656.509650px;}
.x35_c00496{left:667.533300px;}
.x6b_c00496{left:686.645250px;}
.x2f_c00496{left:688.367850px;}
.xb_c00496{left:689.887500px;}
.x49_c00496{left:699.589500px;}
.x39_c00496{left:709.326150px;}
.x4b_c00496{left:711.197250px;}
.x3_c00496{left:718.206450px;}
.x30_c00496{left:722.755500px;}
.x5d_c00496{left:733.145550px;}
.x3a_c00496{left:734.571150px;}
.x54_c00496{left:735.709650px;}
@media print{
.v0_c00496{vertical-align:0.000000pt;}
.ls7_c00496{letter-spacing:-2.537926pt;}
.ls10_c00496{letter-spacing:-2.487168pt;}
.ls8_c00496{letter-spacing:-2.472665pt;}
.ls2_c00496{letter-spacing:-2.340800pt;}
.ls17_c00496{letter-spacing:-2.066597pt;}
.lsd_c00496{letter-spacing:-1.638775pt;}
.ls11_c00496{letter-spacing:-0.369812pt;}
.ls1_c00496{letter-spacing:0.000000pt;}
.ls5_c00496{letter-spacing:0.065261pt;}
.ls13_c00496{letter-spacing:1.786400pt;}
.ls15_c00496{letter-spacing:1.972331pt;}
.lsf_c00496{letter-spacing:2.226400pt;}
.ls12_c00496{letter-spacing:2.393609pt;}
.ls16_c00496{letter-spacing:2.508921pt;}
.ls18_c00496{letter-spacing:2.864231pt;}
.lsb_c00496{letter-spacing:3.097609pt;}
.ls1d_c00496{letter-spacing:3.125275pt;}
.ls4_c00496{letter-spacing:3.132800pt;}
.ls1b_c00496{letter-spacing:3.176033pt;}
.lsa_c00496{letter-spacing:3.234043pt;}
.lse_c00496{letter-spacing:3.238400pt;}
.ls1a_c00496{letter-spacing:3.255797pt;}
.ls9_c00496{letter-spacing:3.273609pt;}
.ls0_c00496{letter-spacing:3.284802pt;}
.ls19_c00496{letter-spacing:3.352800pt;}
.ls14_c00496{letter-spacing:3.379209pt;}
.ls1c_c00496{letter-spacing:3.616800pt;}
.ls3_c00496{letter-spacing:3.625609pt;}
.lsc_c00496{letter-spacing:3.660800pt;}
.ls6_c00496{letter-spacing:51.955376pt;}
.ws0_c00496{word-spacing:-18.128044pt;}
.ws1_c00496{word-spacing:0.000000pt;}
._0_c00496{margin-left:-13.777324pt;}
.fs0_c00496{font-size:24.640000pt;}
.fs10_c00496{font-size:33.264000pt;}
.fse_c00496{font-size:35.728000pt;}
.fs11_c00496{font-size:38.192176pt;}
.fsb_c00496{font-size:44.528000pt;}
.fsd_c00496{font-size:47.872176pt;}
.fs4_c00496{font-size:51.955376pt;}
.fs7_c00496{font-size:61.952176pt;}
.fs3_c00496{font-size:62.656000pt;}
.fsc_c00496{font-size:63.360000pt;}
.fsa_c00496{font-size:64.768000pt;}
.fs6_c00496{font-size:65.472176pt;}
.fs8_c00496{font-size:66.528000pt;}
.fs1_c00496{font-size:66.880000pt;}
.fs12_c00496{font-size:67.056000pt;}
.fsf_c00496{font-size:67.584176pt;}
.fs14_c00496{font-size:72.336000pt;}
.fs2_c00496{font-size:72.512176pt;}
.fs9_c00496{font-size:73.216000pt;}
.fs13_c00496{font-size:79.200000pt;}
.fs5_c00496{font-size:90.816000pt;}
.y0_c00496{bottom:0.000000pt;}
.y1_c00496{bottom:68.000000pt;}
.y1e_c00496{bottom:111.752120pt;}
.y1d_c00496{bottom:139.313720pt;}
.y1c_c00496{bottom:139.626120pt;}
.y1b_c00496{bottom:195.387320pt;}
.y1a_c00496{bottom:223.578120pt;}
.y19_c00496{bottom:251.777720pt;}
.y18_c00496{bottom:279.972920pt;}
.y17_c00496{bottom:308.163720pt;}
.y16_c00496{bottom:336.996920pt;}
.y15_c00496{bottom:365.825720pt;}
.y14_c00496{bottom:390.531720pt;}
.y13_c00496{bottom:393.066120pt;}
.y12_c00496{bottom:394.337720pt;}
.y11_c00496{bottom:450.728120pt;}
.y10_c00496{bottom:478.606520pt;}
.ye_c00496{bottom:507.114120pt;}
.yf_c00496{bottom:511.553720pt;}
.yd_c00496{bottom:535.313720pt;}
.yc_c00496{bottom:563.504520pt;}
.yb_c00496{bottom:591.699720pt;}
.ya_c00496{bottom:619.899320pt;}
.y9_c00496{bottom:648.090120pt;}
.y8_c00496{bottom:676.289720pt;}
.y7_c00496{bottom:704.168120pt;}
.y6_c00496{bottom:760.554120pt;}
.y5_c00496{bottom:789.066120pt;}
.y4_c00496{bottom:816.944520pt;}
.y3_c00496{bottom:942.080520pt;}
.y2_c00496{bottom:973.443720pt;}
.h2_c00496{height:25.698750pt;}
.h6_c00496{height:34.602280pt;}
.h12_c00496{height:34.693313pt;}
.h10_c00496{height:37.263188pt;}
.h13_c00496{height:37.483532pt;}
.hd_c00496{height:46.441313pt;}
.hf_c00496{height:46.983923pt;}
.h5_c00496{height:61.493438pt;}
.hc_c00496{height:63.566250pt;}
.h8_c00496{height:64.257360pt;}
.h9_c00496{height:64.614184pt;}
.ha_c00496{height:65.293594pt;}
.he_c00496{height:66.082500pt;}
.h11_c00496{height:66.330173pt;}
.h3_c00496{height:69.753750pt;}
.h14_c00496{height:69.937313pt;}
.h16_c00496{height:70.993828pt;}
.h4_c00496{height:71.166735pt;}
.hb_c00496{height:71.857500pt;}
.h15_c00496{height:82.603125pt;}
.h7_c00496{height:89.130938pt;}
.h1_c00496{height:986.666667pt;}
.h0_c00496{height:1122.666667pt;}
.w1_c00496{width:678.666667pt;}
.w0_c00496{width:793.333333pt;}
.x0_c00496{left:0.000000pt;}
.x1_c00496{left:57.333333pt;}
.x14_c00496{left:79.988533pt;}
.x4_c00496{left:81.678133pt;}
.x24_c00496{left:109.943733pt;}
.x3b_c00496{left:118.954933pt;}
.x1d_c00496{left:120.085733pt;}
.x67_c00496{left:127.754933pt;}
.x16_c00496{left:128.824133pt;}
.x5c_c00496{left:138.275333pt;}
.x2b_c00496{left:139.718533pt;}
.x31_c00496{left:148.417333pt;}
.x15_c00496{left:149.376533pt;}
.xc_c00496{left:150.467733pt;}
.x57_c00496{left:158.700133pt;}
.x17_c00496{left:164.956933pt;}
.x55_c00496{left:168.868533pt;}
.x3c_c00496{left:169.792533pt;}
.x68_c00496{left:177.391333pt;}
.xd_c00496{left:178.552933pt;}
.x1e_c00496{left:179.534133pt;}
.x60_c00496{left:187.713733pt;}
.x65_c00496{left:188.752133pt;}
.x18_c00496{left:190.107333pt;}
.x5e_c00496{left:198.300133pt;}
.x42_c00496{left:199.272533pt;}
.x5_c00496{left:200.438533pt;}
.x19_c00496{left:207.729333pt;}
.xe_c00496{left:209.225333pt;}
.x32_c00496{left:217.800933pt;}
.x43_c00496{left:218.786533pt;}
.x6c_c00496{left:227.480933pt;}
.x4d_c00496{left:228.554533pt;}
.x36_c00496{left:238.247733pt;}
.x61_c00496{left:247.263333pt;}
.x25_c00496{left:248.592133pt;}
.x4a_c00496{left:257.515333pt;}
.x6_c00496{left:259.763733pt;}
.x58_c00496{left:267.996133pt;}
.xf_c00496{left:268.937733pt;}
.x4e_c00496{left:277.830133pt;}
.x37_c00496{left:286.898533pt;}
.x2c_c00496{left:288.302133pt;}
.x66_c00496{left:296.059333pt;}
.x1a_c00496{left:297.432133pt;}
.x26_c00496{left:307.134133pt;}
.x1f_c00496{left:317.421333pt;}
.x4f_c00496{left:319.493733pt;}
.x69_c00496{left:325.508533pt;}
.x56_c00496{left:327.158533pt;}
.x7_c00496{left:328.170533pt;}
.x33_c00496{left:336.297333pt;}
.x62_c00496{left:347.429333pt;}
.x44_c00496{left:348.841733pt;}
.x20_c00496{left:357.254533pt;}
.x3d_c00496{left:366.872933pt;}
.x45_c00496{left:376.117333pt;}
.x4c_c00496{left:377.327333pt;}
.x6d_c00496{left:385.212133pt;}
.x27_c00496{left:386.800533pt;}
.x8_c00496{left:396.476133pt;}
.x3e_c00496{left:398.315333pt;}
.x50_c00496{left:405.020933pt;}
.x10_c00496{left:406.437733pt;}
.x38_c00496{left:415.796533pt;}
.x2_c00496{left:421.129333pt;}
.x6e_c00496{left:424.820933pt;}
.x34_c00496{left:425.793333pt;}
.x2d_c00496{left:427.025333pt;}
.x64_c00496{left:434.945333pt;}
.x1b_c00496{left:435.930933pt;}
.x6a_c00496{left:444.704533pt;}
.x3f_c00496{left:445.958533pt;}
.x46_c00496{left:447.282933pt;}
.x59_c00496{left:453.825733pt;}
.x28_c00496{left:455.779333pt;}
.x21_c00496{left:463.989733pt;}
.x1c_c00496{left:465.063333pt;}
.x47_c00496{left:466.603333pt;}
.x11_c00496{left:475.218533pt;}
.x5a_c00496{left:484.924933pt;}
.x29_c00496{left:493.729333pt;}
.x51_c00496{left:494.860133pt;}
.x22_c00496{left:503.233333pt;}
.x9_c00496{left:505.565333pt;}
.x5b_c00496{left:513.661333pt;}
.x12_c00496{left:514.787733pt;}
.x52_c00496{left:522.549333pt;}
.x40_c00496{left:524.005733pt;}
.x48_c00496{left:525.013333pt;}
.xa_c00496{left:533.329333pt;}
.x5f_c00496{left:542.217333pt;}
.x63_c00496{left:552.755333pt;}
.x2e_c00496{left:553.771733pt;}
.x6f_c00496{left:560.890933pt;}
.x41_c00496{left:562.114133pt;}
.x23_c00496{left:563.178933pt;}
.x53_c00496{left:571.820533pt;}
.x2a_c00496{left:582.552133pt;}
.x13_c00496{left:583.564133pt;}
.x35_c00496{left:593.362933pt;}
.x6b_c00496{left:610.351333pt;}
.x2f_c00496{left:611.882533pt;}
.xb_c00496{left:613.233333pt;}
.x49_c00496{left:621.857333pt;}
.x39_c00496{left:630.512133pt;}
.x4b_c00496{left:632.175333pt;}
.x3_c00496{left:638.405733pt;}
.x30_c00496{left:642.449333pt;}
.x5d_c00496{left:651.684933pt;}
.x3a_c00496{left:652.952133pt;}
.x54_c00496{left:653.964133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_231518dc27d85575ac0550b4.woff2')format("woff");}.ff1_c00497{font-family:ff1_c00497;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00497;src:url('chunks/assets/font_a4121876eb8bf3107540621e.woff2')format("woff");}.ff2_c00497{font-family:ff2_c00497;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00497;src:url('chunks/assets/font_d64c1e8f489cc1a0030152a2.woff2')format("woff");}.ff3_c00497{font-family:ff3_c00497;line-height:0.666000;font-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_c00497{transform:matrix(0.131548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131548,0.000000,0.000000,0.250000,0,0);}
.m2_c00497{transform:matrix(0.142856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142856,0.000000,0.000000,0.250000,0,0);}
.m2c_c00497{transform:matrix(0.165063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165063,0.000000,0.000000,0.250000,0,0);}
.m7b_c00497{transform:matrix(0.175249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175249,0.000000,0.000000,0.250000,0,0);}
.m50_c00497{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m0_c00497{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m74_c00497{transform:matrix(0.250897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250897,0.000000,0.000000,0.250000,0,0);}
.m68_c00497{transform:matrix(0.252405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252405,0.000000,0.000000,0.250000,0,0);}
.m52_c00497{transform:matrix(0.253171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253171,0.000000,0.000000,0.250000,0,0);}
.m6b_c00497{transform:matrix(0.253448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253448,0.000000,0.000000,0.250000,0,0);}
.m61_c00497{transform:matrix(0.255176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255176,0.000000,0.000000,0.250000,0,0);}
.m4_c00497{transform:matrix(0.255459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255459,0.000000,0.000000,0.250000,0,0);}
.m19_c00497{transform:matrix(0.256830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256830,0.000000,0.000000,0.250000,0,0);}
.m5b_c00497{transform:matrix(0.257706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257706,0.000000,0.000000,0.250000,0,0);}
.m7c_c00497{transform:matrix(0.259771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259771,0.000000,0.000000,0.250000,0,0);}
.m24_c00497{transform:matrix(0.260021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260021,0.000000,0.000000,0.250000,0,0);}
.m63_c00497{transform:matrix(0.261599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261599,0.000000,0.000000,0.250000,0,0);}
.m42_c00497{transform:matrix(0.262142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262142,0.000000,0.000000,0.250000,0,0);}
.m62_c00497{transform:matrix(0.262269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262269,0.000000,0.000000,0.250000,0,0);}
.m3a_c00497{transform:matrix(0.262894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262894,0.000000,0.000000,0.250000,0,0);}
.m3d_c00497{transform:matrix(0.263330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263330,0.000000,0.000000,0.250000,0,0);}
.m15_c00497{transform:matrix(0.263525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263525,0.000000,0.000000,0.250000,0,0);}
.m38_c00497{transform:matrix(0.263564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263564,0.000000,0.000000,0.250000,0,0);}
.m22_c00497{transform:matrix(0.264583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264583,0.000000,0.000000,0.250000,0,0);}
.m2d_c00497{transform:matrix(0.264779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264779,0.000000,0.000000,0.250000,0,0);}
.m1f_c00497{transform:matrix(0.265269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265269,0.000000,0.000000,0.250000,0,0);}
.m1_c00497{transform:matrix(0.267051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267051,0.000000,0.000000,0.250000,0,0);}
.m37_c00497{transform:matrix(0.267325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267325,0.000000,0.000000,0.250000,0,0);}
.m9_c00497{transform:matrix(0.267506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267506,0.000000,0.000000,0.250000,0,0);}
.m7d_c00497{transform:matrix(0.267736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267736,0.000000,0.000000,0.250000,0,0);}
.m6f_c00497{transform:matrix(0.268217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268217,0.000000,0.000000,0.250000,0,0);}
.m64_c00497{transform:matrix(0.268318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268318,0.000000,0.000000,0.250000,0,0);}
.m47_c00497{transform:matrix(0.268438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268438,0.000000,0.000000,0.250000,0,0);}
.m29_c00497{transform:matrix(0.269481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269481,0.000000,0.000000,0.250000,0,0);}
.m3b_c00497{transform:matrix(0.269521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269521,0.000000,0.000000,0.250000,0,0);}
.m76_c00497{transform:matrix(0.270388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270388,0.000000,0.000000,0.250000,0,0);}
.m60_c00497{transform:matrix(0.271059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271059,0.000000,0.000000,0.250000,0,0);}
.m75_c00497{transform:matrix(0.272106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272106,0.000000,0.000000,0.250000,0,0);}
.m8f_c00497{transform:matrix(0.272118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272118,0.000000,0.000000,0.250000,0,0);}
.m77_c00497{transform:matrix(0.272546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272546,0.000000,0.000000,0.250000,0,0);}
.m53_c00497{transform:matrix(0.272874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272874,0.000000,0.000000,0.250000,0,0);}
.m5_c00497{transform:matrix(0.273758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273758,0.000000,0.000000,0.250000,0,0);}
.m49_c00497{transform:matrix(0.275013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275013,0.000000,0.000000,0.250000,0,0);}
.m17_c00497{transform:matrix(0.275099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275099,0.000000,0.000000,0.250000,0,0);}
.m1e_c00497{transform:matrix(0.275525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275525,0.000000,0.000000,0.250000,0,0);}
.m28_c00497{transform:matrix(0.276686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276686,0.000000,0.000000,0.250000,0,0);}
.m8_c00497{transform:matrix(0.276752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276752,0.000000,0.000000,0.250000,0,0);}
.mb_c00497{transform:matrix(0.277279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277279,0.000000,0.000000,0.250000,0,0);}
.m1a_c00497{transform:matrix(0.279202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279202,0.000000,0.000000,0.250000,0,0);}
.m6c_c00497{transform:matrix(0.279728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279728,0.000000,0.000000,0.250000,0,0);}
.m51_c00497{transform:matrix(0.280550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280550,0.000000,0.000000,0.250000,0,0);}
.m1b_c00497{transform:matrix(0.282018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282018,0.000000,0.000000,0.250000,0,0);}
.m5a_c00497{transform:matrix(0.282066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282066,0.000000,0.000000,0.250000,0,0);}
.m1c_c00497{transform:matrix(0.282203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282203,0.000000,0.000000,0.250000,0,0);}
.m93_c00497{transform:matrix(0.282923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282923,0.000000,0.000000,0.250000,0,0);}
.m5c_c00497{transform:matrix(0.283352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283352,0.000000,0.000000,0.250000,0,0);}
.m89_c00497{transform:matrix(0.284184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284184,0.000000,0.000000,0.250000,0,0);}
.m8c_c00497{transform:matrix(0.284924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284924,0.000000,0.000000,0.250000,0,0);}
.ma_c00497{transform:matrix(0.285205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285205,0.000000,0.000000,0.250000,0,0);}
.m2e_c00497{transform:matrix(0.285299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285299,0.000000,0.000000,0.250000,0,0);}
.m10_c00497{transform:matrix(0.285910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285910,0.000000,0.000000,0.250000,0,0);}
.m4b_c00497{transform:matrix(0.286052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286052,0.000000,0.000000,0.250000,0,0);}
.m7_c00497{transform:matrix(0.286255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286255,0.000000,0.000000,0.250000,0,0);}
.m18_c00497{transform:matrix(0.286552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286552,0.000000,0.000000,0.250000,0,0);}
.m8d_c00497{transform:matrix(0.286569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286569,0.000000,0.000000,0.250000,0,0);}
.m3e_c00497{transform:matrix(0.286575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286575,0.000000,0.000000,0.250000,0,0);}
.m40_c00497{transform:matrix(0.286819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286819,0.000000,0.000000,0.250000,0,0);}
.m6a_c00497{transform:matrix(0.287032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287032,0.000000,0.000000,0.250000,0,0);}
.m57_c00497{transform:matrix(0.287211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287211,0.000000,0.000000,0.250000,0,0);}
.m7e_c00497{transform:matrix(0.288115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288115,0.000000,0.000000,0.250000,0,0);}
.m66_c00497{transform:matrix(0.288315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288315,0.000000,0.000000,0.250000,0,0);}
.m69_c00497{transform:matrix(0.288453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288453,0.000000,0.000000,0.250000,0,0);}
.m27_c00497{transform:matrix(0.288471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288471,0.000000,0.000000,0.250000,0,0);}
.m2a_c00497{transform:matrix(0.288656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288656,0.000000,0.000000,0.250000,0,0);}
.m12_c00497{transform:matrix(0.288759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288759,0.000000,0.000000,0.250000,0,0);}
.m39_c00497{transform:matrix(0.290669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290669,0.000000,0.000000,0.250000,0,0);}
.m7a_c00497{transform:matrix(0.292247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292247,0.000000,0.000000,0.250000,0,0);}
.m80_c00497{transform:matrix(0.292910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292910,0.000000,0.000000,0.250000,0,0);}
.m82_c00497{transform:matrix(0.294095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294095,0.000000,0.000000,0.250000,0,0);}
.m8e_c00497{transform:matrix(0.295121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295121,0.000000,0.000000,0.250000,0,0);}
.m35_c00497{transform:matrix(0.295163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295163,0.000000,0.000000,0.250000,0,0);}
.m11_c00497{transform:matrix(0.295910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295910,0.000000,0.000000,0.250000,0,0);}
.m44_c00497{transform:matrix(0.296483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296483,0.000000,0.000000,0.250000,0,0);}
.m4f_c00497{transform:matrix(0.296737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296737,0.000000,0.000000,0.250000,0,0);}
.m16_c00497{transform:matrix(0.297289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297289,0.000000,0.000000,0.250000,0,0);}
.m14_c00497{transform:matrix(0.297526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297526,0.000000,0.000000,0.250000,0,0);}
.m71_c00497{transform:matrix(0.297836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297836,0.000000,0.000000,0.250000,0,0);}
.m79_c00497{transform:matrix(0.298778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298778,0.000000,0.000000,0.250000,0,0);}
.m26_c00497{transform:matrix(0.299609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299609,0.000000,0.000000,0.250000,0,0);}
.m21_c00497{transform:matrix(0.299621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299621,0.000000,0.000000,0.250000,0,0);}
.md_c00497{transform:matrix(0.300253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300253,0.000000,0.000000,0.250000,0,0);}
.m67_c00497{transform:matrix(0.301307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301307,0.000000,0.000000,0.250000,0,0);}
.me_c00497{transform:matrix(0.301827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301827,0.000000,0.000000,0.250000,0,0);}
.m31_c00497{transform:matrix(0.303580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303580,0.000000,0.000000,0.250000,0,0);}
.m32_c00497{transform:matrix(0.304140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304140,0.000000,0.000000,0.250000,0,0);}
.m58_c00497{transform:matrix(0.304731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304731,0.000000,0.000000,0.250000,0,0);}
.m85_c00497{transform:matrix(0.304902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304902,0.000000,0.000000,0.250000,0,0);}
.m92_c00497{transform:matrix(0.305690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305690,0.000000,0.000000,0.250000,0,0);}
.m1d_c00497{transform:matrix(0.305714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305714,0.000000,0.000000,0.250000,0,0);}
.m3f_c00497{transform:matrix(0.307829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307829,0.000000,0.000000,0.250000,0,0);}
.m2b_c00497{transform:matrix(0.308121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308121,0.000000,0.000000,0.250000,0,0);}
.m4c_c00497{transform:matrix(0.308155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308155,0.000000,0.000000,0.250000,0,0);}
.m55_c00497{transform:matrix(0.310310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310310,0.000000,0.000000,0.250000,0,0);}
.m83_c00497{transform:matrix(0.310456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310456,0.000000,0.000000,0.250000,0,0);}
.m70_c00497{transform:matrix(0.313625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313625,0.000000,0.000000,0.250000,0,0);}
.mc_c00497{transform:matrix(0.315156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315156,0.000000,0.000000,0.250000,0,0);}
.m88_c00497{transform:matrix(0.316440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316440,0.000000,0.000000,0.250000,0,0);}
.m25_c00497{transform:matrix(0.317080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317080,0.000000,0.000000,0.250000,0,0);}
.m94_c00497{transform:matrix(0.317544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317544,0.000000,0.000000,0.250000,0,0);}
.m59_c00497{transform:matrix(0.317668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317668,0.000000,0.000000,0.250000,0,0);}
.m91_c00497{transform:matrix(0.319174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319174,0.000000,0.000000,0.250000,0,0);}
.m2f_c00497{transform:matrix(0.319180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319180,0.000000,0.000000,0.250000,0,0);}
.m6_c00497{transform:matrix(0.319542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319542,0.000000,0.000000,0.250000,0,0);}
.m5e_c00497{transform:matrix(0.320408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320408,0.000000,0.000000,0.250000,0,0);}
.m84_c00497{transform:matrix(0.320725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320725,0.000000,0.000000,0.250000,0,0);}
.m36_c00497{transform:matrix(0.321676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321676,0.000000,0.000000,0.250000,0,0);}
.m6d_c00497{transform:matrix(0.321777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321777,0.000000,0.000000,0.250000,0,0);}
.m41_c00497{transform:matrix(0.322998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322998,0.000000,0.000000,0.250000,0,0);}
.m46_c00497{transform:matrix(0.323209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323209,0.000000,0.000000,0.250000,0,0);}
.m4d_c00497{transform:matrix(0.324426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324426,0.000000,0.000000,0.250000,0,0);}
.m54_c00497{transform:matrix(0.324789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324789,0.000000,0.000000,0.250000,0,0);}
.m5f_c00497{transform:matrix(0.324960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324960,0.000000,0.000000,0.250000,0,0);}
.m72_c00497{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);}
.m56_c00497{transform:matrix(0.329069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329069,0.000000,0.000000,0.250000,0,0);}
.m33_c00497{transform:matrix(0.335052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335052,0.000000,0.000000,0.250000,0,0);}
.m34_c00497{transform:matrix(0.335226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335226,0.000000,0.000000,0.250000,0,0);}
.m45_c00497{transform:matrix(0.335861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335861,0.000000,0.000000,0.250000,0,0);}
.m13_c00497{transform:matrix(0.336870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336870,0.000000,0.000000,0.250000,0,0);}
.m65_c00497{transform:matrix(0.336999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336999,0.000000,0.000000,0.250000,0,0);}
.m86_c00497{transform:matrix(0.338421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338421,0.000000,0.000000,0.250000,0,0);}
.m81_c00497{transform:matrix(0.339394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339394,0.000000,0.000000,0.250000,0,0);}
.m4e_c00497{transform:matrix(0.339527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339527,0.000000,0.000000,0.250000,0,0);}
.m8b_c00497{transform:matrix(0.340160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340160,0.000000,0.000000,0.250000,0,0);}
.m30_c00497{transform:matrix(0.341035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341035,0.000000,0.000000,0.250000,0,0);}
.m78_c00497{transform:matrix(0.342181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342181,0.000000,0.000000,0.250000,0,0);}
.m3_c00497{transform:matrix(0.342209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342209,0.000000,0.000000,0.250000,0,0);}
.m48_c00497{transform:matrix(0.344194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344194,0.000000,0.000000,0.250000,0,0);}
.m87_c00497{transform:matrix(0.346788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346788,0.000000,0.000000,0.250000,0,0);}
.m73_c00497{transform:matrix(0.346808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346808,0.000000,0.000000,0.250000,0,0);}
.m6e_c00497{transform:matrix(0.351132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351132,0.000000,0.000000,0.250000,0,0);}
.m90_c00497{transform:matrix(0.353001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353001,0.000000,0.000000,0.250000,0,0);}
.m4a_c00497{transform:matrix(0.353371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353371,0.000000,0.000000,0.250000,0,0);}
.m5d_c00497{transform:matrix(0.354203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354203,0.000000,0.000000,0.250000,0,0);}
.m8a_c00497{transform:matrix(0.355339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355339,0.000000,0.000000,0.250000,0,0);}
.m3c_c00497{transform:matrix(0.365283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365283,0.000000,0.000000,0.250000,0,0);}
.m43_c00497{transform:matrix(0.374684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374684,0.000000,0.000000,0.250000,0,0);}
.mf_c00497{transform:matrix(0.380631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380631,0.000000,0.000000,0.250000,0,0);}
.m20_c00497{transform:matrix(0.386579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386579,0.000000,0.000000,0.250000,0,0);}
.m7f_c00497{transform:matrix(0.415734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415734,0.000000,0.000000,0.250000,0,0);}
.v1_c00497{vertical-align:-18.532800px;}
.v0_c00497{vertical-align:0.000000px;}
.lsa_c00497{letter-spacing:-4.989600px;}
.ls7_c00497{letter-spacing:-2.628074px;}
.ls13_c00497{letter-spacing:-2.421639px;}
.lse_c00497{letter-spacing:-1.675298px;}
.ls10_c00497{letter-spacing:-1.429164px;}
.ls6_c00497{letter-spacing:-0.746341px;}
.ls9_c00497{letter-spacing:-0.277893px;}
.ls2_c00497{letter-spacing:0.000000px;}
.ls0_c00497{letter-spacing:1.580020px;}
.lsb_c00497{letter-spacing:1.635599px;}
.ls11_c00497{letter-spacing:1.849973px;}
.lsf_c00497{letter-spacing:2.826569px;}
.ls1_c00497{letter-spacing:2.953606px;}
.lsc_c00497{letter-spacing:3.603610px;}
.ls5_c00497{letter-spacing:3.969900px;}
.ls3_c00497{letter-spacing:4.019400px;}
.ls4_c00497{letter-spacing:29.937798px;}
.lsd_c00497{letter-spacing:57.024198px;}
.ls8_c00497{letter-spacing:59.875398px;}
.ls12_c00497{letter-spacing:61.300998px;}
.sc__c00497{text-shadow:none;}
.sc0_c00497{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00497{-webkit-text-stroke:0px transparent;}
.sc0_c00497{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00497{word-spacing:-19.849500px;}
.ws1_c00497{word-spacing:-18.420336px;}
.ws2_c00497{word-spacing:0.000000px;}
._1_c00497{margin-left:-1.350360px;}
._0_c00497{width:5.716458px;}
._2_c00497{width:24.733269px;}
._3_c00497{width:1267.825165px;}
.fc0_c00497{color:transparent;}
.fs1_c00497{font-size:22.176000px;}
.fs3_c00497{font-size:25.146000px;}
.fs0_c00497{font-size:27.720000px;}
.fs4_c00497{font-size:29.937798px;}
.fsb_c00497{font-size:57.024198px;}
.fs8_c00497{font-size:59.875398px;}
.fse_c00497{font-size:61.300998px;}
.fsd_c00497{font-size:62.964000px;}
.fs6_c00497{font-size:70.884000px;}
.fsa_c00497{font-size:72.072198px;}
.fsc_c00497{font-size:74.844000px;}
.fs7_c00497{font-size:76.824000px;}
.fs5_c00497{font-size:79.398000px;}
.fs2_c00497{font-size:80.388000px;}
.fs9_c00497{font-size:142.560000px;}
.y0_c00497{bottom:0.000000px;}
.y21_c00497{bottom:36.259785px;}
.y20_c00497{bottom:48.738735px;}
.y1_c00497{bottom:76.500000px;}
.y1f_c00497{bottom:142.828335px;}
.y1e_c00497{bottom:175.617135px;}
.y3_c00497{bottom:185.596335px;}
.y1d_c00497{bottom:208.400985px;}
.y1c_c00497{bottom:240.838335px;}
.y1b_c00497{bottom:271.845135px;}
.y1a_c00497{bottom:303.208335px;}
.y19_c00497{bottom:373.057785px;}
.y18_c00497{bottom:377.690985px;}
.y17_c00497{bottom:408.697785px;}
.y16_c00497{bottom:535.576185px;}
.y15_c00497{bottom:566.944335px;}
.y14_c00497{bottom:598.663935px;}
.y12_c00497{bottom:630.739935px;}
.y13_c00497{bottom:632.160585px;}
.y11_c00497{bottom:662.103135px;}
.y10_c00497{bottom:694.174185px;}
.yf_c00497{bottom:725.898735px;}
.ye_c00497{bottom:757.969785px;}
.yd_c00497{bottom:788.625135px;}
.y2_c00497{bottom:791.827785px;}
.yc_c00497{bottom:819.988335px;}
.yb_c00497{bottom:852.420735px;}
.ya_c00497{bottom:883.783935px;}
.y9_c00497{bottom:915.498585px;}
.y8_c00497{bottom:990.348030px;}
.y7_c00497{bottom:1037.743785px;}
.y6_c00497{bottom:1047.722985px;}
.y5_c00497{bottom:1058.058585px;}
.y4_c00497{bottom:1067.681385px;}
.h6_c00497{height:19.938573px;}
.h3_c00497{height:23.128875px;}
.h5_c00497{height:26.226492px;}
.h2_c00497{height:28.911094px;}
.hd_c00497{height:37.978116px;}
.ha_c00497{height:39.877015px;}
.h10_c00497{height:40.826465px;}
.hf_c00497{height:65.669484px;}
.h8_c00497{height:69.568770px;}
.he_c00497{height:73.455293px;}
.hc_c00497{height:75.169050px;}
.h9_c00497{height:75.398555px;}
.h7_c00497{height:77.924795px;}
.h4_c00497{height:78.896426px;}
.hb_c00497{height:139.914844px;}
.h1_c00497{height:1110.000000px;}
.h0_c00497{height:1263.000000px;}
.w1_c00497{width:763.500000px;}
.w0_c00497{width:892.500000px;}
.x0_c00497{left:0.000000px;}
.x3_c00497{left:43.620435px;}
.x2_c00497{left:47.516085px;}
.x1_c00497{left:64.500000px;}
.x37_c00497{left:72.152235px;}
.x2d_c00497{left:89.982135px;}
.x9_c00497{left:91.848285px;}
.x1c_c00497{left:93.313485px;}
.x27_c00497{left:123.483735px;}
.x14_c00497{left:126.617085px;}
.x59_c00497{left:134.012385px;}
.x3f_c00497{left:135.373635px;}
.x58_c00497{left:144.031185px;}
.x4c_c00497{left:145.412235px;}
.x1d_c00497{left:157.544685px;}
.x45_c00497{left:168.543585px;}
.x38_c00497{left:170.483985px;}
.x63_c00497{left:177.310035px;}
.x3c_c00497{left:178.997985px;}
.xa_c00497{left:180.364185px;}
.x15_c00497{left:190.155285px;}
.x69_c00497{left:199.956285px;}
.x46_c00497{left:202.658985px;}
.x53_c00497{left:206.826885px;}
.x64_c00497{left:210.816585px;}
.xb_c00497{left:211.920435px;}
.x1e_c00497{left:213.801435px;}
.x32_c00497{left:222.157035px;}
.x4a_c00497{left:223.448985px;}
.x2e_c00497{left:224.884485px;}
.x54_c00497{left:232.705485px;}
.x28_c00497{left:234.462735px;}
.xc_c00497{left:245.382435px;}
.x4d_c00497{left:256.208085px;}
.x4b_c00497{left:268.345485px;}
.x29_c00497{left:269.409735px;}
.x33_c00497{left:278.686035px;}
.x7_c00497{left:280.626435px;}
.x4e_c00497{left:292.328235px;}
.x52_c00497{left:299.911635px;}
.xd_c00497{left:301.693635px;}
.x16_c00497{left:304.124085px;}
.x55_c00497{left:312.192585px;}
.x65_c00497{left:322.523235px;}
.x47_c00497{left:324.216135px;}
.x1f_c00497{left:325.300185px;}
.x6d_c00497{left:333.502335px;}
.x17_c00497{left:336.106035px;}
.x56_c00497{left:356.425785px;}
.x20_c00497{left:357.717735px;}
.x2f_c00497{left:367.261335px;}
.x6a_c00497{left:368.820585px;}
.x5c_c00497{left:378.136485px;}
.x2a_c00497{left:379.225485px;}
.x40_c00497{left:380.235285px;}
.x18_c00497{left:390.570885px;}
.x8_c00497{left:396.102411px;}
.x48_c00497{left:400.411485px;}
.xe_c00497{left:402.401385px;}
.x2b_c00497{left:411.870735px;}
.x41_c00497{left:413.454735px;}
.x5d_c00497{left:423.270585px;}
.x19_c00497{left:424.656585px;}
.x21_c00497{left:434.269485px;}
.xf_c00497{left:436.204935px;}
.x30_c00497{left:445.006035px;}
.x34_c00497{left:446.139585px;}
.x39_c00497{left:447.253335px;}
.x6f_c00497{left:452.742885px;}
.x3d_c00497{left:456.544485px;}
.x1a_c00497{left:457.965135px;}
.x66_c00497{left:467.612685px;}
.x31_c00497{left:478.829385px;}
.x57_c00497{left:488.377935px;}
.x42_c00497{left:489.516435px;}
.x22_c00497{left:500.579685px;}
.x70_c00497{left:511.930035px;}
.x5e_c00497{left:513.187335px;}
.x5a_c00497{left:521.592435px;}
.x23_c00497{left:523.201185px;}
.x2c_c00497{left:534.348585px;}
.x5b_c00497{left:544.367385px;}
.x10_c00497{left:545.654385px;}
.x1b_c00497{left:556.074135px;}
.x5f_c00497{left:566.335485px;}
.x24_c00497{left:579.759885px;}
.x67_c00497{left:588.437235px;}
.x3a_c00497{left:589.610385px;}
.x6b_c00497{left:599.455935px;}
.x4f_c00497{left:600.559785px;}
.x11_c00497{left:601.594335px;}
.x49_c00497{left:621.389385px;}
.x35_c00497{left:622.918935px;}
.x12_c00497{left:632.472435px;}
.x50_c00497{left:633.883185px;}
.x60_c00497{left:643.669335px;}
.x25_c00497{left:644.887035px;}
.x36_c00497{left:654.881085px;}
.x3e_c00497{left:656.118585px;}
.x68_c00497{left:665.543385px;}
.x43_c00497{left:677.854035px;}
.x13_c00497{left:678.923235px;}
.x61_c00497{left:686.645235px;}
.x3b_c00497{left:688.456935px;}
.x4_c00497{left:696.916485px;}
.x6_c00497{left:698.594535px;}
.x6c_c00497{left:699.629085px;}
.x26_c00497{left:700.668585px;}
.x6e_c00497{left:708.742035px;}
.x5_c00497{left:713.479185px;}
.x51_c00497{left:721.547685px;}
.x44_c00497{left:723.077235px;}
.x62_c00497{left:731.977335px;}
@media print{
.v1_c00497{vertical-align:-16.473600pt;}
.v0_c00497{vertical-align:0.000000pt;}
.lsa_c00497{letter-spacing:-4.435200pt;}
.ls7_c00497{letter-spacing:-2.336066pt;}
.ls13_c00497{letter-spacing:-2.152568pt;}
.lse_c00497{letter-spacing:-1.489154pt;}
.ls10_c00497{letter-spacing:-1.270368pt;}
.ls6_c00497{letter-spacing:-0.663414pt;}
.ls9_c00497{letter-spacing:-0.247016pt;}
.ls2_c00497{letter-spacing:0.000000pt;}
.ls0_c00497{letter-spacing:1.404462pt;}
.lsb_c00497{letter-spacing:1.453866pt;}
.ls11_c00497{letter-spacing:1.644421pt;}
.lsf_c00497{letter-spacing:2.512506pt;}
.ls1_c00497{letter-spacing:2.625427pt;}
.lsc_c00497{letter-spacing:3.203209pt;}
.ls5_c00497{letter-spacing:3.528800pt;}
.ls3_c00497{letter-spacing:3.572800pt;}
.ls4_c00497{letter-spacing:26.611376pt;}
.lsd_c00497{letter-spacing:50.688176pt;}
.ls8_c00497{letter-spacing:53.222576pt;}
.ls12_c00497{letter-spacing:54.489776pt;}
.ws0_c00497{word-spacing:-17.644000pt;}
.ws1_c00497{word-spacing:-16.373632pt;}
.ws2_c00497{word-spacing:0.000000pt;}
._1_c00497{margin-left:-1.200320pt;}
._0_c00497{width:5.081296pt;}
._2_c00497{width:21.985128pt;}
._3_c00497{width:1126.955702pt;}
.fs1_c00497{font-size:19.712000pt;}
.fs3_c00497{font-size:22.352000pt;}
.fs0_c00497{font-size:24.640000pt;}
.fs4_c00497{font-size:26.611376pt;}
.fsb_c00497{font-size:50.688176pt;}
.fs8_c00497{font-size:53.222576pt;}
.fse_c00497{font-size:54.489776pt;}
.fsd_c00497{font-size:55.968000pt;}
.fs6_c00497{font-size:63.008000pt;}
.fsa_c00497{font-size:64.064176pt;}
.fsc_c00497{font-size:66.528000pt;}
.fs7_c00497{font-size:68.288000pt;}
.fs5_c00497{font-size:70.576000pt;}
.fs2_c00497{font-size:71.456000pt;}
.fs9_c00497{font-size:126.720000pt;}
.y0_c00497{bottom:0.000000pt;}
.y21_c00497{bottom:32.230920pt;}
.y20_c00497{bottom:43.323320pt;}
.y1_c00497{bottom:68.000000pt;}
.y1f_c00497{bottom:126.958520pt;}
.y1e_c00497{bottom:156.104120pt;}
.y3_c00497{bottom:164.974520pt;}
.y1d_c00497{bottom:185.245320pt;}
.y1c_c00497{bottom:214.078520pt;}
.y1b_c00497{bottom:241.640120pt;}
.y1a_c00497{bottom:269.518520pt;}
.y19_c00497{bottom:331.606920pt;}
.y18_c00497{bottom:335.725320pt;}
.y17_c00497{bottom:363.286920pt;}
.y16_c00497{bottom:476.067720pt;}
.y15_c00497{bottom:503.950520pt;}
.y14_c00497{bottom:532.145720pt;}
.y12_c00497{bottom:560.657720pt;}
.y13_c00497{bottom:561.920520pt;}
.y11_c00497{bottom:588.536120pt;}
.y10_c00497{bottom:617.043720pt;}
.yf_c00497{bottom:645.243320pt;}
.ye_c00497{bottom:673.750920pt;}
.yd_c00497{bottom:701.000120pt;}
.y2_c00497{bottom:703.846920pt;}
.yc_c00497{bottom:728.878520pt;}
.yb_c00497{bottom:757.707320pt;}
.ya_c00497{bottom:785.585720pt;}
.y9_c00497{bottom:813.776520pt;}
.y8_c00497{bottom:880.309360pt;}
.y7_c00497{bottom:922.438920pt;}
.y6_c00497{bottom:931.309320pt;}
.y5_c00497{bottom:940.496520pt;}
.y4_c00497{bottom:949.050120pt;}
.h6_c00497{height:17.723176pt;}
.h3_c00497{height:20.559000pt;}
.h5_c00497{height:23.312438pt;}
.h2_c00497{height:25.698750pt;}
.hd_c00497{height:33.758325pt;}
.ha_c00497{height:35.446236pt;}
.h10_c00497{height:36.290191pt;}
.hf_c00497{height:58.372875pt;}
.h8_c00497{height:61.838906pt;}
.he_c00497{height:65.293594pt;}
.hc_c00497{height:66.816934pt;}
.h9_c00497{height:67.020938pt;}
.h7_c00497{height:69.266484pt;}
.h4_c00497{height:70.130156pt;}
.hb_c00497{height:124.368750pt;}
.h1_c00497{height:986.666667pt;}
.h0_c00497{height:1122.666667pt;}
.w1_c00497{width:678.666667pt;}
.w0_c00497{width:793.333333pt;}
.x0_c00497{left:0.000000pt;}
.x3_c00497{left:38.773720pt;}
.x2_c00497{left:42.236520pt;}
.x1_c00497{left:57.333333pt;}
.x37_c00497{left:64.135320pt;}
.x2d_c00497{left:79.984120pt;}
.x9_c00497{left:81.642920pt;}
.x1c_c00497{left:82.945320pt;}
.x27_c00497{left:109.763320pt;}
.x14_c00497{left:112.548520pt;}
.x59_c00497{left:119.122120pt;}
.x3f_c00497{left:120.332120pt;}
.x58_c00497{left:128.027720pt;}
.x4c_c00497{left:129.255320pt;}
.x1d_c00497{left:140.039720pt;}
.x45_c00497{left:149.816520pt;}
.x38_c00497{left:151.541320pt;}
.x63_c00497{left:157.608920pt;}
.x3c_c00497{left:159.109320pt;}
.xa_c00497{left:160.323720pt;}
.x15_c00497{left:169.026920pt;}
.x69_c00497{left:177.738920pt;}
.x46_c00497{left:180.141320pt;}
.x53_c00497{left:183.846120pt;}
.x64_c00497{left:187.392520pt;}
.xb_c00497{left:188.373720pt;}
.x1e_c00497{left:190.045720pt;}
.x32_c00497{left:197.472920pt;}
.x4a_c00497{left:198.621320pt;}
.x2e_c00497{left:199.897320pt;}
.x54_c00497{left:206.849320pt;}
.x28_c00497{left:208.411320pt;}
.xc_c00497{left:218.117720pt;}
.x4d_c00497{left:227.740520pt;}
.x4b_c00497{left:238.529320pt;}
.x29_c00497{left:239.475320pt;}
.x33_c00497{left:247.720920pt;}
.x7_c00497{left:249.445720pt;}
.x4e_c00497{left:259.847320pt;}
.x52_c00497{left:266.588120pt;}
.xd_c00497{left:268.172120pt;}
.x16_c00497{left:270.332520pt;}
.x55_c00497{left:277.504520pt;}
.x65_c00497{left:286.687320pt;}
.x47_c00497{left:288.192120pt;}
.x1f_c00497{left:289.155720pt;}
.x6d_c00497{left:296.446520pt;}
.x17_c00497{left:298.760920pt;}
.x56_c00497{left:316.822920pt;}
.x20_c00497{left:317.971320pt;}
.x2f_c00497{left:326.454520pt;}
.x6a_c00497{left:327.840520pt;}
.x5c_c00497{left:336.121320pt;}
.x2a_c00497{left:337.089320pt;}
.x40_c00497{left:337.986920pt;}
.x18_c00497{left:347.174120pt;}
.x8_c00497{left:352.091032pt;}
.x48_c00497{left:355.921320pt;}
.xe_c00497{left:357.690120pt;}
.x2b_c00497{left:366.107320pt;}
.x41_c00497{left:367.515320pt;}
.x5d_c00497{left:376.240520pt;}
.x19_c00497{left:377.472520pt;}
.x21_c00497{left:386.017320pt;}
.xf_c00497{left:387.737720pt;}
.x30_c00497{left:395.560920pt;}
.x34_c00497{left:396.568520pt;}
.x39_c00497{left:397.558520pt;}
.x6f_c00497{left:402.438120pt;}
.x3d_c00497{left:405.817320pt;}
.x1a_c00497{left:407.080120pt;}
.x66_c00497{left:415.655720pt;}
.x31_c00497{left:425.626120pt;}
.x57_c00497{left:434.113720pt;}
.x42_c00497{left:435.125720pt;}
.x22_c00497{left:444.959720pt;}
.x70_c00497{left:455.048920pt;}
.x5e_c00497{left:456.166520pt;}
.x5a_c00497{left:463.637720pt;}
.x23_c00497{left:465.067720pt;}
.x2c_c00497{left:474.976520pt;}
.x5b_c00497{left:483.882120pt;}
.x10_c00497{left:485.026120pt;}
.x1b_c00497{left:494.288120pt;}
.x5f_c00497{left:503.409320pt;}
.x24_c00497{left:515.342120pt;}
.x67_c00497{left:523.055320pt;}
.x3a_c00497{left:524.098120pt;}
.x6b_c00497{left:532.849720pt;}
.x4f_c00497{left:533.830920pt;}
.x11_c00497{left:534.750520pt;}
.x49_c00497{left:552.346120pt;}
.x35_c00497{left:553.705720pt;}
.x12_c00497{left:562.197720pt;}
.x50_c00497{left:563.451720pt;}
.x60_c00497{left:572.150520pt;}
.x25_c00497{left:573.232920pt;}
.x36_c00497{left:582.116520pt;}
.x3e_c00497{left:583.216520pt;}
.x68_c00497{left:591.594120pt;}
.x43_c00497{left:602.536920pt;}
.x13_c00497{left:603.487320pt;}
.x61_c00497{left:610.351320pt;}
.x3b_c00497{left:611.961720pt;}
.x4_c00497{left:619.481320pt;}
.x6_c00497{left:620.972920pt;}
.x6c_c00497{left:621.892520pt;}
.x26_c00497{left:622.816520pt;}
.x6e_c00497{left:629.992920pt;}
.x5_c00497{left:634.203720pt;}
.x51_c00497{left:641.375720pt;}
.x44_c00497{left:642.735320pt;}
.x62_c00497{left:650.646520pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1d49fb71beecf499ff390d98.woff2')format("woff");}.ff1_c00498{font-family:ff1_c00498;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00498;src:url('chunks/assets/font_949a326e3040cb626af13cc0.woff2')format("woff");}.ff2_c00498{font-family:ff2_c00498;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00498;src:url('chunks/assets/font_743095b186c4d08f2580381c.woff2')format("woff");}.ff3_c00498{font-family:ff3_c00498;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m9e_c00498{transform:matrix(0.023810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.023810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.023810,0.000000,0.000000,0.250000,0,0);}
.m6b_c00498{transform:matrix(0.094444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094444,0.000000,0.000000,0.250000,0,0);}
.m9d_c00498{transform:matrix(0.109127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109127,0.000000,0.000000,0.250000,0,0);}
.m6c_c00498{transform:matrix(0.125803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125803,0.000000,0.000000,0.250000,0,0);}
.m6d_c00498{transform:matrix(0.129408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129408,0.000000,0.000000,0.250000,0,0);}
.m9f_c00498{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);}
.m54_c00498{transform:matrix(0.143395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143395,0.000000,0.000000,0.250000,0,0);}
.m7a_c00498{transform:matrix(0.160410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160410,0.000000,0.000000,0.250000,0,0);}
.m8e_c00498{transform:matrix(0.238766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238766,0.000000,0.000000,0.250000,0,0);}
.m0_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);}
.m50_c00498{transform:matrix(0.250550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250550,0.000000,0.000000,0.250000,0,0);}
.m8c_c00498{transform:matrix(0.251484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251484,0.000000,0.000000,0.250000,0,0);}
.m7c_c00498{transform:matrix(0.254079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254079,0.000000,0.000000,0.250000,0,0);}
.m8_c00498{transform:matrix(0.254167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254167,0.000000,0.000000,0.250000,0,0);}
.m46_c00498{transform:matrix(0.255749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255749,0.000000,0.000000,0.250000,0,0);}
.m6a_c00498{transform:matrix(0.256923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256923,0.000000,0.000000,0.250000,0,0);}
.m8b_c00498{transform:matrix(0.258699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258699,0.000000,0.000000,0.250000,0,0);}
.m33_c00498{transform:matrix(0.259076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259076,0.000000,0.000000,0.250000,0,0);}
.m7b_c00498{transform:matrix(0.260939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260939,0.000000,0.000000,0.250000,0,0);}
.m77_c00498{transform:matrix(0.261518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261518,0.000000,0.000000,0.250000,0,0);}
.m47_c00498{transform:matrix(0.261633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261633,0.000000,0.000000,0.250000,0,0);}
.m3d_c00498{transform:matrix(0.262459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262459,0.000000,0.000000,0.250000,0,0);}
.m5_c00498{transform:matrix(0.266057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266057,0.000000,0.000000,0.250000,0,0);}
.m60_c00498{transform:matrix(0.266205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266205,0.000000,0.000000,0.250000,0,0);}
.m2_c00498{transform:matrix(0.266768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266768,0.000000,0.000000,0.250000,0,0);}
.m6f_c00498{transform:matrix(0.266941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266941,0.000000,0.000000,0.250000,0,0);}
.m3e_c00498{transform:matrix(0.268885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268885,0.000000,0.000000,0.250000,0,0);}
.m2e_c00498{transform:matrix(0.269115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269115,0.000000,0.000000,0.250000,0,0);}
.m3b_c00498{transform:matrix(0.270005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270005,0.000000,0.000000,0.250000,0,0);}
.m76_c00498{transform:matrix(0.270275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270275,0.000000,0.000000,0.250000,0,0);}
.m55_c00498{transform:matrix(0.270844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270844,0.000000,0.000000,0.250000,0,0);}
.m51_c00498{transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);}
.m11_c00498{transform:matrix(0.271624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271624,0.000000,0.000000,0.250000,0,0);}
.m83_c00498{transform:matrix(0.272173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272173,0.000000,0.000000,0.250000,0,0);}
.m43_c00498{transform:matrix(0.274324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274324,0.000000,0.000000,0.250000,0,0);}
.m12_c00498{transform:matrix(0.274434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274434,0.000000,0.000000,0.250000,0,0);}
.m9_c00498{transform:matrix(0.274532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274532,0.000000,0.000000,0.250000,0,0);}
.m17_c00498{transform:matrix(0.275231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275231,0.000000,0.000000,0.250000,0,0);}
.m69_c00498{transform:matrix(0.275244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275244,0.000000,0.000000,0.250000,0,0);}
.m53_c00498{transform:matrix(0.276200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276200,0.000000,0.000000,0.250000,0,0);}
.m4e_c00498{transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);}
.m3f_c00498{transform:matrix(0.277658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277658,0.000000,0.000000,0.250000,0,0);}
.m7e_c00498{transform:matrix(0.278672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278672,0.000000,0.000000,0.250000,0,0);}
.m1c_c00498{transform:matrix(0.279348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279348,0.000000,0.000000,0.250000,0,0);}
.m39_c00498{transform:matrix(0.280090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280090,0.000000,0.000000,0.250000,0,0);}
.m98_c00498{transform:matrix(0.280741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280741,0.000000,0.000000,0.250000,0,0);}
.m9a_c00498{transform:matrix(0.281993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281993,0.000000,0.000000,0.250000,0,0);}
.m7d_c00498{transform:matrix(0.282137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282137,0.000000,0.000000,0.250000,0,0);}
.m97_c00498{transform:matrix(0.283635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283635,0.000000,0.000000,0.250000,0,0);}
.m5d_c00498{transform:matrix(0.283808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283808,0.000000,0.000000,0.250000,0,0);}
.m93_c00498{transform:matrix(0.284014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284014,0.000000,0.000000,0.250000,0,0);}
.m2f_c00498{transform:matrix(0.284177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284177,0.000000,0.000000,0.250000,0,0);}
.m56_c00498{transform:matrix(0.285012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285012,0.000000,0.000000,0.250000,0,0);}
.m2c_c00498{transform:matrix(0.285823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285823,0.000000,0.000000,0.250000,0,0);}
.m73_c00498{transform:matrix(0.285848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285848,0.000000,0.000000,0.250000,0,0);}
.m71_c00498{transform:matrix(0.286858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286858,0.000000,0.000000,0.250000,0,0);}
.m75_c00498{transform:matrix(0.287277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287277,0.000000,0.000000,0.250000,0,0);}
.m89_c00498{transform:matrix(0.287632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287632,0.000000,0.000000,0.250000,0,0);}
.m2a_c00498{transform:matrix(0.288217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288217,0.000000,0.000000,0.250000,0,0);}
.m3c_c00498{transform:matrix(0.289769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289769,0.000000,0.000000,0.250000,0,0);}
.m95_c00498{transform:matrix(0.289815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289815,0.000000,0.000000,0.250000,0,0);}
.m14_c00498{transform:matrix(0.289880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289880,0.000000,0.000000,0.250000,0,0);}
.mb_c00498{transform:matrix(0.290248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290248,0.000000,0.000000,0.250000,0,0);}
.m84_c00498{transform:matrix(0.290267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290267,0.000000,0.000000,0.250000,0,0);}
.m72_c00498{transform:matrix(0.290701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290701,0.000000,0.000000,0.250000,0,0);}
.m3_c00498{transform:matrix(0.291347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291347,0.000000,0.000000,0.250000,0,0);}
.m66_c00498{transform:matrix(0.292056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292056,0.000000,0.000000,0.250000,0,0);}
.m4f_c00498{transform:matrix(0.292111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292111,0.000000,0.000000,0.250000,0,0);}
.m49_c00498{transform:matrix(0.292691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292691,0.000000,0.000000,0.250000,0,0);}
.me_c00498{transform:matrix(0.292969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292969,0.000000,0.000000,0.250000,0,0);}
.m36_c00498{transform:matrix(0.293456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293456,0.000000,0.000000,0.250000,0,0);}
.m70_c00498{transform:matrix(0.294136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294136,0.000000,0.000000,0.250000,0,0);}
.m88_c00498{transform:matrix(0.295211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295211,0.000000,0.000000,0.250000,0,0);}
.m5f_c00498{transform:matrix(0.295350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295350,0.000000,0.000000,0.250000,0,0);}
.m9c_c00498{transform:matrix(0.295448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295448,0.000000,0.000000,0.250000,0,0);}
.m52_c00498{transform:matrix(0.295913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295913,0.000000,0.000000,0.250000,0,0);}
.m62_c00498{transform:matrix(0.297666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297666,0.000000,0.000000,0.250000,0,0);}
.m79_c00498{transform:matrix(0.298004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298004,0.000000,0.000000,0.250000,0,0);}
.m61_c00498{transform:matrix(0.298237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298237,0.000000,0.000000,0.250000,0,0);}
.m10_c00498{transform:matrix(0.298908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298908,0.000000,0.000000,0.250000,0,0);}
.m4d_c00498{transform:matrix(0.299188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299188,0.000000,0.000000,0.250000,0,0);}
.m24_c00498{transform:matrix(0.299223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299223,0.000000,0.000000,0.250000,0,0);}
.m59_c00498{transform:matrix(0.299284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299284,0.000000,0.000000,0.250000,0,0);}
.m1b_c00498{transform:matrix(0.299603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299603,0.000000,0.000000,0.250000,0,0);}
.m1e_c00498{transform:matrix(0.299687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299687,0.000000,0.000000,0.250000,0,0);}
.m1f_c00498{transform:matrix(0.300343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300343,0.000000,0.000000,0.250000,0,0);}
.m57_c00498{transform:matrix(0.300870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300870,0.000000,0.000000,0.250000,0,0);}
.m92_c00498{transform:matrix(0.302516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302516,0.000000,0.000000,0.250000,0,0);}
.m67_c00498{transform:matrix(0.302743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302743,0.000000,0.000000,0.250000,0,0);}
.m35_c00498{transform:matrix(0.302803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302803,0.000000,0.000000,0.250000,0,0);}
.m25_c00498{transform:matrix(0.303795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303795,0.000000,0.000000,0.250000,0,0);}
.m90_c00498{transform:matrix(0.303909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303909,0.000000,0.000000,0.250000,0,0);}
.m19_c00498{transform:matrix(0.304437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304437,0.000000,0.000000,0.250000,0,0);}
.m28_c00498{transform:matrix(0.305060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305060,0.000000,0.000000,0.250000,0,0);}
.m45_c00498{transform:matrix(0.308113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308113,0.000000,0.000000,0.250000,0,0);}
.m1a_c00498{transform:matrix(0.308431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308431,0.000000,0.000000,0.250000,0,0);}
.m68_c00498{transform:matrix(0.308626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308626,0.000000,0.000000,0.250000,0,0);}
.m8f_c00498{transform:matrix(0.308664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308664,0.000000,0.000000,0.250000,0,0);}
.m42_c00498{transform:matrix(0.308879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308879,0.000000,0.000000,0.250000,0,0);}
.m74_c00498{transform:matrix(0.309805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309805,0.000000,0.000000,0.250000,0,0);}
.m99_c00498{transform:matrix(0.309873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309873,0.000000,0.000000,0.250000,0,0);}
.m65_c00498{transform:matrix(0.310378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310378,0.000000,0.000000,0.250000,0,0);}
.md_c00498{transform:matrix(0.310556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310556,0.000000,0.000000,0.250000,0,0);}
.m85_c00498{transform:matrix(0.311060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311060,0.000000,0.000000,0.250000,0,0);}
.m7_c00498{transform:matrix(0.311532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311532,0.000000,0.000000,0.250000,0,0);}
.m40_c00498{transform:matrix(0.311861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311861,0.000000,0.000000,0.250000,0,0);}
.m6e_c00498{transform:matrix(0.312932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312932,0.000000,0.000000,0.250000,0,0);}
.m82_c00498{transform:matrix(0.313306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313306,0.000000,0.000000,0.250000,0,0);}
.m27_c00498{transform:matrix(0.313622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313622,0.000000,0.000000,0.250000,0,0);}
.m37_c00498{transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);}
.m18_c00498{transform:matrix(0.317696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317696,0.000000,0.000000,0.250000,0,0);}
.m22_c00498{transform:matrix(0.317734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317734,0.000000,0.000000,0.250000,0,0);}
.m4c_c00498{transform:matrix(0.318122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318122,0.000000,0.000000,0.250000,0,0);}
.mc_c00498{transform:matrix(0.318221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318221,0.000000,0.000000,0.250000,0,0);}
.m30_c00498{transform:matrix(0.319399,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319399,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319399,0.000000,0.000000,0.250000,0,0);}
.m5e_c00498{transform:matrix(0.322413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322413,0.000000,0.000000,0.250000,0,0);}
.m8a_c00498{transform:matrix(0.322589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322589,0.000000,0.000000,0.250000,0,0);}
.m32_c00498{transform:matrix(0.323006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323006,0.000000,0.000000,0.250000,0,0);}
.m96_c00498{transform:matrix(0.323692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323692,0.000000,0.000000,0.250000,0,0);}
.m63_c00498{transform:matrix(0.324235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324235,0.000000,0.000000,0.250000,0,0);}
.m5b_c00498{transform:matrix(0.325609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325609,0.000000,0.000000,0.250000,0,0);}
.m9b_c00498{transform:matrix(0.325788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325788,0.000000,0.000000,0.250000,0,0);}
.m38_c00498{transform:matrix(0.326495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326495,0.000000,0.000000,0.250000,0,0);}
.m86_c00498{transform:matrix(0.327148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327148,0.000000,0.000000,0.250000,0,0);}
.ma_c00498{transform:matrix(0.329302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329302,0.000000,0.000000,0.250000,0,0);}
.m21_c00498{transform:matrix(0.329398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329398,0.000000,0.000000,0.250000,0,0);}
.m5a_c00498{transform:matrix(0.329481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329481,0.000000,0.000000,0.250000,0,0);}
.m2b_c00498{transform:matrix(0.329558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329558,0.000000,0.000000,0.250000,0,0);}
.m7f_c00498{transform:matrix(0.330543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330543,0.000000,0.000000,0.250000,0,0);}
.m94_c00498{transform:matrix(0.330603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330603,0.000000,0.000000,0.250000,0,0);}
.m23_c00498{transform:matrix(0.331098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331098,0.000000,0.000000,0.250000,0,0);}
.m1_c00498{transform:matrix(0.332261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332261,0.000000,0.000000,0.250000,0,0);}
.m29_c00498{transform:matrix(0.332728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332728,0.000000,0.000000,0.250000,0,0);}
.m80_c00498{transform:matrix(0.333764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333764,0.000000,0.000000,0.250000,0,0);}
.m31_c00498{transform:matrix(0.335351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335351,0.000000,0.000000,0.250000,0,0);}
.m4b_c00498{transform:matrix(0.337338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337338,0.000000,0.000000,0.250000,0,0);}
.m8d_c00498{transform:matrix(0.337517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337517,0.000000,0.000000,0.250000,0,0);}
.m81_c00498{transform:matrix(0.341044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341044,0.000000,0.000000,0.250000,0,0);}
.m4_c00498{transform:matrix(0.342011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342011,0.000000,0.000000,0.250000,0,0);}
.m6_c00498{transform:matrix(0.343636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343636,0.000000,0.000000,0.250000,0,0);}
.m1d_c00498{transform:matrix(0.345519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345519,0.000000,0.000000,0.250000,0,0);}
.m4a_c00498{transform:matrix(0.345945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345945,0.000000,0.000000,0.250000,0,0);}
.m2d_c00498{transform:matrix(0.346472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346472,0.000000,0.000000,0.250000,0,0);}
.m78_c00498{transform:matrix(0.346859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346859,0.000000,0.000000,0.250000,0,0);}
.m20_c00498{transform:matrix(0.349884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349884,0.000000,0.000000,0.250000,0,0);}
.m5c_c00498{transform:matrix(0.349926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349926,0.000000,0.000000,0.250000,0,0);}
.m16_c00498{transform:matrix(0.350640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350640,0.000000,0.000000,0.250000,0,0);}
.m91_c00498{transform:matrix(0.351471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351471,0.000000,0.000000,0.250000,0,0);}
.m26_c00498{transform:matrix(0.356132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356132,0.000000,0.000000,0.250000,0,0);}
.m13_c00498{transform:matrix(0.360577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360577,0.000000,0.000000,0.250000,0,0);}
.m34_c00498{transform:matrix(0.361903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361903,0.000000,0.000000,0.250000,0,0);}
.m64_c00498{transform:matrix(0.363653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363653,0.000000,0.000000,0.250000,0,0);}
.mf_c00498{transform:matrix(0.366449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366449,0.000000,0.000000,0.250000,0,0);}
.m3a_c00498{transform:matrix(0.367179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367179,0.000000,0.000000,0.250000,0,0);}
.m44_c00498{transform:matrix(0.369006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369006,0.000000,0.000000,0.250000,0,0);}
.m41_c00498{transform:matrix(0.372529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372529,0.000000,0.000000,0.250000,0,0);}
.m58_c00498{transform:matrix(0.383657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383657,0.000000,0.000000,0.250000,0,0);}
.m87_c00498{transform:matrix(0.386524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386524,0.000000,0.000000,0.250000,0,0);}
.m15_c00498{transform:matrix(0.397481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397481,0.000000,0.000000,0.250000,0,0);}
.m48_c00498{transform:matrix(0.403692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403692,0.000000,0.000000,0.250000,0,0);}
.v0_c00498{vertical-align:0.000000px;}
.lse_c00498{letter-spacing:-3.132367px;}
.lsf_c00498{letter-spacing:-3.118500px;}
.ls15_c00498{letter-spacing:-2.744280px;}
.ls11_c00498{letter-spacing:-2.661127px;}
.ls6_c00498{letter-spacing:-1.094864px;}
.ls7_c00498{letter-spacing:-0.425780px;}
.ls0_c00498{letter-spacing:0.000000px;}
.ls18_c00498{letter-spacing:0.266113px;}
.ls8_c00498{letter-spacing:0.395367px;}
.ls4_c00498{letter-spacing:1.269738px;}
.ls3_c00498{letter-spacing:1.741137px;}
.ls12_c00498{letter-spacing:1.930500px;}
.ls5_c00498{letter-spacing:1.976837px;}
.lsc_c00498{letter-spacing:2.692810px;}
.ls14_c00498{letter-spacing:3.088810px;}
.ls10_c00498{letter-spacing:3.269385px;}
.ls16_c00498{letter-spacing:3.455110px;}
.lsb_c00498{letter-spacing:3.623400px;}
.ls17_c00498{letter-spacing:3.679958px;}
.ls1_c00498{letter-spacing:3.801610px;}
.lsa_c00498{letter-spacing:3.880810px;}
.ls13_c00498{letter-spacing:4.098610px;}
.ls2_c00498{letter-spacing:51.321798px;}
.ls19_c00498{letter-spacing:59.875398px;}
.lsd_c00498{letter-spacing:64.152198px;}
.ls9_c00498{letter-spacing:65.577798px;}
.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;}
._2_c00498{width:12.943519px;}
._0_c00498{width:22.721394px;}
._1_c00498{width:32.908255px;}
.fc0_c00498{color:transparent;}
.fs4_c00498{font-size:22.176000px;}
.fs0_c00498{font-size:27.720000px;}
.fs15_c00498{font-size:33.264000px;}
.fse_c00498{font-size:38.610000px;}
.fs3_c00498{font-size:39.600000px;}
.fsd_c00498{font-size:50.094000px;}
.fs2_c00498{font-size:51.321798px;}
.fs8_c00498{font-size:53.856198px;}
.fs14_c00498{font-size:59.875398px;}
.fs10_c00498{font-size:61.776198px;}
.fs9_c00498{font-size:64.152198px;}
.fs5_c00498{font-size:65.577798px;}
.fs13_c00498{font-size:69.102198px;}
.fs12_c00498{font-size:70.092198px;}
.fsb_c00498{font-size:71.676198px;}
.fs7_c00498{font-size:72.468000px;}
.fs1_c00498{font-size:76.032198px;}
.fs6_c00498{font-size:77.616198px;}
.fs11_c00498{font-size:78.408000px;}
.fsf_c00498{font-size:81.972198px;}
.fsc_c00498{font-size:89.100000px;}
.fsa_c00498{font-size:89.496198px;}
.y0_c00498{bottom:0.000000px;}
.y1b_c00498{bottom:54.436185px;}
.y1_c00498{bottom:76.500000px;}
.y1a_c00498{bottom:137.120985px;}
.y19_c00498{bottom:170.271135px;}
.y17_c00498{bottom:201.985785px;}
.y18_c00498{bottom:207.693135px;}
.y16_c00498{bottom:234.066735px;}
.y15_c00498{bottom:266.137785px;}
.y14_c00498{bottom:298.213785px;}
.y13_c00498{bottom:328.156335px;}
.y12_c00498{bottom:347.396985px;}
.y2_c00498{bottom:352.035135px;}
.y11_c00498{bottom:360.945135px;}
.y10_c00498{bottom:392.659785px;}
.yf_c00498{bottom:423.315135px;}
.ye_c00498{bottom:456.455385px;}
.yd_c00498{bottom:635.373135px;}
.yc_c00498{bottom:678.497535px;}
.yb_c00498{bottom:710.568585px;}
.ya_c00498{bottom:743.000985px;}
.y9_c00498{bottom:774.364185px;}
.y8_c00498{bottom:791.119935px;}
.y7_c00498{bottom:806.445135px;}
.y6_c00498{bottom:837.808335px;}
.y5_c00498{bottom:869.166585px;}
.y4_c00498{bottom:900.529785px;}
.y3_c00498{bottom:931.892985px;}
.h6_c00498{height:23.128875px;}
.h2_c00498{height:28.911094px;}
.h4_c00498{height:34.180317px;}
.h16_c00498{height:34.693313px;}
.h15_c00498{height:39.877015px;}
.hf_c00498{height:40.269023px;}
.h5_c00498{height:41.301563px;}
.hb_c00498{height:42.725364px;}
.h7_c00498{height:43.674813px;}
.he_c00498{height:52.246477px;}
.ha_c00498{height:56.170332px;}
.h11_c00498{height:60.629960px;}
.h9_c00498{height:71.123379px;}
.h14_c00498{height:72.071433px;}
.h13_c00498{height:73.103972px;}
.h3_c00498{height:74.621444px;}
.h8_c00498{height:76.176054px;}
.h12_c00498{height:76.953164px;}
.h10_c00498{height:80.451229px;}
.hd_c00498{height:92.928516px;}
.hc_c00498{height:93.341738px;}
.h1_c00498{height:1110.000000px;}
.h0_c00498{height:1263.000000px;}
.w1_c00498{width:763.500000px;}
.w0_c00498{width:892.500000px;}
.x0_c00498{left:0.000000px;}
.x2_c00498{left:18.647685px;}
.x1_c00498{left:64.500000px;}
.x48_c00498{left:91.457235px;}
.x39_c00498{left:92.838285px;}
.xd_c00498{left:93.981735px;}
.x3_c00498{left:95.372685px;}
.x2d_c00498{left:127.166535px;}
.x28_c00498{left:137.596185px;}
.x15_c00498{left:138.992085px;}
.x3d_c00498{left:146.966535px;}
.x1c_c00498{left:149.684085px;}
.x44_c00498{left:159.688035px;}
.x4_c00498{left:160.762185px;}
.xe_c00498{left:171.414585px;}
.x5b_c00498{left:172.795635px;}
.x27_c00498{left:177.443685px;}
.x3a_c00498{left:192.278835px;}
.x5_c00498{left:194.219235px;}
.x16_c00498{left:204.747885px;}
.x49_c00498{left:215.266635px;}
.xf_c00498{left:216.296235px;}
.x31_c00498{left:226.676385px;}
.x2e_c00498{left:236.462535px;}
.x1d_c00498{left:237.749535px;}
.x63_c00498{left:246.491235px;}
.x5c_c00498{left:259.049385px;}
.x57_c00498{left:260.128485px;}
.x4f_c00498{left:270.167085px;}
.x3e_c00498{left:282.165885px;}
.x64_c00498{left:292.397535px;}
.x1e_c00498{left:294.278535px;}
.x17_c00498{left:304.025085px;}
.x4e_c00498{left:313.034085px;}
.x6_c00498{left:315.231885px;}
.x4d_c00498{left:325.706085px;}
.x53_c00498{left:327.958335px;}
.x4a_c00498{left:336.269385px;}
.x29_c00498{left:337.764285px;}
.x5d_c00498{left:347.837535px;}
.x18_c00498{left:349.169085px;}
.x45_c00498{left:358.559235px;}
.x32_c00498{left:359.786835px;}
.x10_c00498{left:360.851085px;}
.x54_c00498{left:369.043335px;}
.x2f_c00498{left:370.612485px;}
.x51_c00498{left:372.958785px;}
.x5e_c00498{left:380.997585px;}
.x3f_c00498{left:382.343985px;}
.x11_c00498{left:393.649785px;}
.x30_c00498{left:404.123985px;}
.x1f_c00498{left:405.514935px;}
.x40_c00498{left:413.999235px;}
.x33_c00498{left:415.845585px;}
.x20_c00498{left:436.754385px;}
.x58_c00498{left:438.036435px;}
.x34_c00498{left:447.456285px;}
.x7_c00498{left:449.446185px;}
.x41_c00498{left:459.771885px;}
.x67_c00498{left:461.004435px;}
.x55_c00498{left:468.746235px;}
.x19_c00498{left:469.909485px;}
.x5f_c00498{left:481.779585px;}
.x12_c00498{left:487.021635px;}
.x2a_c00498{left:492.867585px;}
.x8_c00498{left:493.907085px;}
.x46_c00498{left:502.396335px;}
.x21_c00498{left:503.416035px;}
.x3c_c00498{left:505.158435px;}
.x60_c00498{left:513.038835px;}
.x4b_c00498{left:514.108035px;}
.x35_c00498{left:524.809935px;}
.x42_c00498{left:526.017735px;}
.x9_c00498{left:527.086935px;}
.x65_c00498{left:546.500835px;}
.x24_c00498{left:559.836135px;}
.x3b_c00498{left:561.246885px;}
.x68_c00498{left:568.805535px;}
.x2b_c00498{left:571.270635px;}
.x13_c00498{left:582.022035px;}
.x36_c00498{left:591.130035px;}
.xa_c00498{left:592.204185px;}
.x66_c00498{left:602.282385px;}
.x22_c00498{left:603.539685px;}
.x50_c00498{left:612.875385px;}
.x61_c00498{left:614.018835px;}
.x1a_c00498{left:615.498885px;}
.x59_c00498{left:624.790035px;}
.x4c_c00498{left:626.507685px;}
.x52_c00498{left:634.927635px;}
.x47_c00498{left:637.922385px;}
.x69_c00498{left:646.535385px;}
.x43_c00498{left:656.618535px;}
.x5a_c00498{left:668.082735px;}
.x25_c00498{left:669.330135px;}
.xb_c00498{left:670.740885px;}
.x23_c00498{left:680.180535px;}
.x37_c00498{left:682.031835px;}
.x14_c00498{left:692.080335px;}
.x56_c00498{left:701.227935px;}
.x26_c00498{left:702.455535px;}
.xc_c00498{left:704.460285px;}
.x2c_c00498{left:713.201985px;}
.x1b_c00498{left:714.929535px;}
.x62_c00498{left:723.314835px;}
.x6a_c00498{left:724.428585px;}
.x38_c00498{left:736.927335px;}
.x6b_c00498{left:744.035535px;}
.x6c_c00498{left:747.243135px;}
@media print{
.v0_c00498{vertical-align:0.000000pt;}
.lse_c00498{letter-spacing:-2.784326pt;}
.lsf_c00498{letter-spacing:-2.772000pt;}
.ls15_c00498{letter-spacing:-2.439360pt;}
.ls11_c00498{letter-spacing:-2.365446pt;}
.ls6_c00498{letter-spacing:-0.973212pt;}
.ls7_c00498{letter-spacing:-0.378471pt;}
.ls0_c00498{letter-spacing:0.000000pt;}
.ls18_c00498{letter-spacing:0.236545pt;}
.ls8_c00498{letter-spacing:0.351438pt;}
.ls4_c00498{letter-spacing:1.128656pt;}
.ls3_c00498{letter-spacing:1.547678pt;}
.ls12_c00498{letter-spacing:1.716000pt;}
.ls5_c00498{letter-spacing:1.757189pt;}
.lsc_c00498{letter-spacing:2.393609pt;}
.ls14_c00498{letter-spacing:2.745609pt;}
.ls10_c00498{letter-spacing:2.906120pt;}
.ls16_c00498{letter-spacing:3.071209pt;}
.lsb_c00498{letter-spacing:3.220800pt;}
.ls17_c00498{letter-spacing:3.271074pt;}
.ls1_c00498{letter-spacing:3.379209pt;}
.lsa_c00498{letter-spacing:3.449609pt;}
.ls13_c00498{letter-spacing:3.643209pt;}
.ls2_c00498{letter-spacing:45.619376pt;}
.ls19_c00498{letter-spacing:53.222576pt;}
.lsd_c00498{letter-spacing:57.024176pt;}
.ls9_c00498{letter-spacing:58.291376pt;}
.ws0_c00498{word-spacing:0.000000pt;}
._2_c00498{width:11.505350pt;}
._0_c00498{width:20.196795pt;}
._1_c00498{width:29.251782pt;}
.fs4_c00498{font-size:19.712000pt;}
.fs0_c00498{font-size:24.640000pt;}
.fs15_c00498{font-size:29.568000pt;}
.fse_c00498{font-size:34.320000pt;}
.fs3_c00498{font-size:35.200000pt;}
.fsd_c00498{font-size:44.528000pt;}
.fs2_c00498{font-size:45.619376pt;}
.fs8_c00498{font-size:47.872176pt;}
.fs14_c00498{font-size:53.222576pt;}
.fs10_c00498{font-size:54.912176pt;}
.fs9_c00498{font-size:57.024176pt;}
.fs5_c00498{font-size:58.291376pt;}
.fs13_c00498{font-size:61.424176pt;}
.fs12_c00498{font-size:62.304176pt;}
.fsb_c00498{font-size:63.712176pt;}
.fs7_c00498{font-size:64.416000pt;}
.fs1_c00498{font-size:67.584176pt;}
.fs6_c00498{font-size:68.992176pt;}
.fs11_c00498{font-size:69.696000pt;}
.fsf_c00498{font-size:72.864176pt;}
.fsc_c00498{font-size:79.200000pt;}
.fsa_c00498{font-size:79.552176pt;}
.y0_c00498{bottom:0.000000pt;}
.y1b_c00498{bottom:48.387720pt;}
.y1_c00498{bottom:68.000000pt;}
.y1a_c00498{bottom:121.885320pt;}
.y19_c00498{bottom:151.352120pt;}
.y17_c00498{bottom:179.542920pt;}
.y18_c00498{bottom:184.616120pt;}
.y16_c00498{bottom:208.059320pt;}
.y15_c00498{bottom:236.566920pt;}
.y14_c00498{bottom:265.078920pt;}
.y13_c00498{bottom:291.694520pt;}
.y12_c00498{bottom:308.797320pt;}
.y2_c00498{bottom:312.920120pt;}
.y11_c00498{bottom:320.840120pt;}
.y10_c00498{bottom:349.030920pt;}
.yf_c00498{bottom:376.280120pt;}
.ye_c00498{bottom:405.738120pt;}
.yd_c00498{bottom:564.776120pt;}
.yc_c00498{bottom:603.108920pt;}
.yb_c00498{bottom:631.616520pt;}
.ya_c00498{bottom:660.445320pt;}
.y9_c00498{bottom:688.323720pt;}
.y8_c00498{bottom:703.217720pt;}
.y7_c00498{bottom:716.840120pt;}
.y6_c00498{bottom:744.718520pt;}
.y5_c00498{bottom:772.592520pt;}
.y4_c00498{bottom:800.470920pt;}
.y3_c00498{bottom:828.349320pt;}
.h6_c00498{height:20.559000pt;}
.h2_c00498{height:25.698750pt;}
.h4_c00498{height:30.382504pt;}
.h16_c00498{height:30.838500pt;}
.h15_c00498{height:35.446236pt;}
.hf_c00498{height:35.794688pt;}
.h5_c00498{height:36.712500pt;}
.hb_c00498{height:37.978101pt;}
.h7_c00498{height:38.822056pt;}
.he_c00498{height:46.441313pt;}
.ha_c00498{height:49.929184pt;}
.h11_c00498{height:53.893298pt;}
.h9_c00498{height:63.220781pt;}
.h14_c00498{height:64.063496pt;}
.h13_c00498{height:64.981309pt;}
.h3_c00498{height:66.330173pt;}
.h8_c00498{height:67.712048pt;}
.h12_c00498{height:68.402813pt;}
.h10_c00498{height:71.512204pt;}
.hd_c00498{height:82.603125pt;}
.hc_c00498{height:82.970434pt;}
.h1_c00498{height:986.666667pt;}
.h0_c00498{height:1122.666667pt;}
.w1_c00498{width:678.666667pt;}
.w0_c00498{width:793.333333pt;}
.x0_c00498{left:0.000000pt;}
.x2_c00498{left:16.575720pt;}
.x1_c00498{left:57.333333pt;}
.x48_c00498{left:81.295320pt;}
.x39_c00498{left:82.522920pt;}
.xd_c00498{left:83.539320pt;}
.x3_c00498{left:84.775720pt;}
.x2d_c00498{left:113.036920pt;}
.x28_c00498{left:122.307720pt;}
.x15_c00498{left:123.548520pt;}
.x3d_c00498{left:130.636920pt;}
.x1c_c00498{left:133.052520pt;}
.x44_c00498{left:141.944920pt;}
.x4_c00498{left:142.899720pt;}
.xe_c00498{left:152.368520pt;}
.x5b_c00498{left:153.596120pt;}
.x27_c00498{left:157.727720pt;}
.x3a_c00498{left:170.914520pt;}
.x5_c00498{left:172.639320pt;}
.x16_c00498{left:181.998120pt;}
.x49_c00498{left:191.348120pt;}
.xf_c00498{left:192.263320pt;}
.x31_c00498{left:201.490120pt;}
.x2e_c00498{left:210.188920pt;}
.x1d_c00498{left:211.332920pt;}
.x63_c00498{left:219.103320pt;}
.x5c_c00498{left:230.266120pt;}
.x57_c00498{left:231.225320pt;}
.x4f_c00498{left:240.148520pt;}
.x3e_c00498{left:250.814120pt;}
.x64_c00498{left:259.908920pt;}
.x1e_c00498{left:261.580920pt;}
.x17_c00498{left:270.244520pt;}
.x4e_c00498{left:278.252520pt;}
.x6_c00498{left:280.206120pt;}
.x4d_c00498{left:289.516520pt;}
.x53_c00498{left:291.518520pt;}
.x4a_c00498{left:298.906120pt;}
.x29_c00498{left:300.234920pt;}
.x5d_c00498{left:309.188920pt;}
.x18_c00498{left:310.372520pt;}
.x45_c00498{left:318.719320pt;}
.x32_c00498{left:319.810520pt;}
.x10_c00498{left:320.756520pt;}
.x54_c00498{left:328.038520pt;}
.x2f_c00498{left:329.433320pt;}
.x51_c00498{left:331.518920pt;}
.x5e_c00498{left:338.664520pt;}
.x3f_c00498{left:339.861320pt;}
.x11_c00498{left:349.910920pt;}
.x30_c00498{left:359.221320pt;}
.x1f_c00498{left:360.457720pt;}
.x40_c00498{left:367.999320pt;}
.x33_c00498{left:369.640520pt;}
.x20_c00498{left:388.226120pt;}
.x58_c00498{left:389.365720pt;}
.x34_c00498{left:397.738920pt;}
.x7_c00498{left:399.507720pt;}
.x41_c00498{left:408.686120pt;}
.x67_c00498{left:409.781720pt;}
.x55_c00498{left:416.663320pt;}
.x19_c00498{left:417.697320pt;}
.x5f_c00498{left:428.248520pt;}
.x12_c00498{left:432.908120pt;}
.x2a_c00498{left:438.104520pt;}
.x8_c00498{left:439.028520pt;}
.x46_c00498{left:446.574520pt;}
.x21_c00498{left:447.480920pt;}
.x3c_c00498{left:449.029720pt;}
.x60_c00498{left:456.034520pt;}
.x4b_c00498{left:456.984920pt;}
.x35_c00498{left:466.497720pt;}
.x42_c00498{left:467.571320pt;}
.x9_c00498{left:468.521720pt;}
.x65_c00498{left:485.778520pt;}
.x24_c00498{left:497.632120pt;}
.x3b_c00498{left:498.886120pt;}
.x68_c00498{left:505.604920pt;}
.x2b_c00498{left:507.796120pt;}
.x13_c00498{left:517.352920pt;}
.x36_c00498{left:525.448920pt;}
.xa_c00498{left:526.403720pt;}
.x66_c00498{left:535.362120pt;}
.x22_c00498{left:536.479720pt;}
.x50_c00498{left:544.778120pt;}
.x61_c00498{left:545.794520pt;}
.x1a_c00498{left:547.110120pt;}
.x59_c00498{left:555.368920pt;}
.x4c_c00498{left:556.895720pt;}
.x52_c00498{left:564.380120pt;}
.x47_c00498{left:567.042120pt;}
.x69_c00498{left:574.698120pt;}
.x43_c00498{left:583.660920pt;}
.x5a_c00498{left:593.851320pt;}
.x25_c00498{left:594.960120pt;}
.xb_c00498{left:596.214120pt;}
.x23_c00498{left:604.604920pt;}
.x37_c00498{left:606.250520pt;}
.x14_c00498{left:615.182520pt;}
.x56_c00498{left:623.313720pt;}
.x26_c00498{left:624.404920pt;}
.xc_c00498{left:626.186920pt;}
.x2c_c00498{left:633.957320pt;}
.x1b_c00498{left:635.492920pt;}
.x62_c00498{left:642.946520pt;}
.x6a_c00498{left:643.936520pt;}
.x38_c00498{left:655.046520pt;}
.x6b_c00498{left:661.364920pt;}
.x6c_c00498{left:664.216120pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3bb77eb27f1c2ab687184686.woff2')format("woff");}.ff1_c00499{font-family:ff1_c00499;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00499;src:url('chunks/assets/font_dd4ef3d51277a8e48420e463.woff2')format("woff");}.ff2_c00499{font-family:ff2_c00499;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00499;src:url('chunks/assets/font_4eea3d2ec1dc3916fbfe8107.woff2')format("woff");}.ff3_c00499{font-family:ff3_c00499;line-height:0.666000;font-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_c00499{transform:matrix(0.120116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120116,0.000000,0.000000,0.250000,0,0);}
.m32_c00499{transform:matrix(0.145918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145918,0.000000,0.000000,0.250000,0,0);}
.ma2_c00499{transform:matrix(0.147585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147585,0.000000,0.000000,0.250000,0,0);}
.m27_c00499{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00499{transform:matrix(0.159723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159723,0.000000,0.000000,0.250000,0,0);}
.m15_c00499{transform:matrix(0.167087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167087,0.000000,0.000000,0.250000,0,0);}
.m5d_c00499{transform:matrix(0.189182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189182,0.000000,0.000000,0.250000,0,0);}
.m43_c00499{transform:matrix(0.189670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189670,0.000000,0.000000,0.250000,0,0);}
.m57_c00499{transform:matrix(0.195267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195267,0.000000,0.000000,0.250000,0,0);}
.mc4_c00499{transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);}
.m31_c00499{transform:matrix(0.229032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229032,0.000000,0.000000,0.250000,0,0);}
.m6c_c00499{transform:matrix(0.234541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234541,0.000000,0.000000,0.250000,0,0);}
.m74_c00499{transform:matrix(0.243474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243474,0.000000,0.000000,0.250000,0,0);}
.m0_c00499{transform:matrix(0.244427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244427,0.000000,0.000000,0.250000,0,0);}
.m2d_c00499{transform:matrix(0.246052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246052,0.000000,0.000000,0.250000,0,0);}
.m8_c00499{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00499{transform:matrix(0.250507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250507,0.000000,0.000000,0.250000,0,0);}
.mb6_c00499{transform:matrix(0.251346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251346,0.000000,0.000000,0.250000,0,0);}
.m85_c00499{transform:matrix(0.252123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252123,0.000000,0.000000,0.250000,0,0);}
.m2b_c00499{transform:matrix(0.257088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257088,0.000000,0.000000,0.250000,0,0);}
.m58_c00499{transform:matrix(0.257488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257488,0.000000,0.000000,0.250000,0,0);}
.mb_c00499{transform:matrix(0.261375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261375,0.000000,0.000000,0.250000,0,0);}
.m84_c00499{transform:matrix(0.261410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261410,0.000000,0.000000,0.250000,0,0);}
.m89_c00499{transform:matrix(0.263376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263376,0.000000,0.000000,0.250000,0,0);}
.m82_c00499{transform:matrix(0.264746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264746,0.000000,0.000000,0.250000,0,0);}
.m23_c00499{transform:matrix(0.267442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267442,0.000000,0.000000,0.250000,0,0);}
.mc1_c00499{transform:matrix(0.267565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267565,0.000000,0.000000,0.250000,0,0);}
.m67_c00499{transform:matrix(0.267864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267864,0.000000,0.000000,0.250000,0,0);}
.mc_c00499{transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);}
.m59_c00499{transform:matrix(0.268284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268284,0.000000,0.000000,0.250000,0,0);}
.mc2_c00499{transform:matrix(0.268325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268325,0.000000,0.000000,0.250000,0,0);}
.m7b_c00499{transform:matrix(0.269066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269066,0.000000,0.000000,0.250000,0,0);}
.m50_c00499{transform:matrix(0.270108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270108,0.000000,0.000000,0.250000,0,0);}
.m94_c00499{transform:matrix(0.270124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270124,0.000000,0.000000,0.250000,0,0);}
.m35_c00499{transform:matrix(0.272155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272155,0.000000,0.000000,0.250000,0,0);}
.m47_c00499{transform:matrix(0.272336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272336,0.000000,0.000000,0.250000,0,0);}
.m7d_c00499{transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);}
.m34_c00499{transform:matrix(0.273170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273170,0.000000,0.000000,0.250000,0,0);}
.m2f_c00499{transform:matrix(0.273190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273190,0.000000,0.000000,0.250000,0,0);}
.m37_c00499{transform:matrix(0.273340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273340,0.000000,0.000000,0.250000,0,0);}
.m75_c00499{transform:matrix(0.273588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273588,0.000000,0.000000,0.250000,0,0);}
.m26_c00499{transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);}
.ma3_c00499{transform:matrix(0.273725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273725,0.000000,0.000000,0.250000,0,0);}
.m4c_c00499{transform:matrix(0.273989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273989,0.000000,0.000000,0.250000,0,0);}
.m9d_c00499{transform:matrix(0.274275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274275,0.000000,0.000000,0.250000,0,0);}
.m12_c00499{transform:matrix(0.275094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275094,0.000000,0.000000,0.250000,0,0);}
.m4e_c00499{transform:matrix(0.275368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275368,0.000000,0.000000,0.250000,0,0);}
.mbb_c00499{transform:matrix(0.275866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275866,0.000000,0.000000,0.250000,0,0);}
.m87_c00499{transform:matrix(0.275905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275905,0.000000,0.000000,0.250000,0,0);}
.m7_c00499{transform:matrix(0.276432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276432,0.000000,0.000000,0.250000,0,0);}
.m71_c00499{transform:matrix(0.276672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276672,0.000000,0.000000,0.250000,0,0);}
.m2e_c00499{transform:matrix(0.277741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277741,0.000000,0.000000,0.250000,0,0);}
.m40_c00499{transform:matrix(0.279112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279112,0.000000,0.000000,0.250000,0,0);}
.m69_c00499{transform:matrix(0.282704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282704,0.000000,0.000000,0.250000,0,0);}
.m79_c00499{transform:matrix(0.284136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284136,0.000000,0.000000,0.250000,0,0);}
.m16_c00499{transform:matrix(0.285026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285026,0.000000,0.000000,0.250000,0,0);}
.m54_c00499{transform:matrix(0.285245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285245,0.000000,0.000000,0.250000,0,0);}
.m97_c00499{transform:matrix(0.285652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285652,0.000000,0.000000,0.250000,0,0);}
.m1b_c00499{transform:matrix(0.286365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286365,0.000000,0.000000,0.250000,0,0);}
.m4_c00499{transform:matrix(0.287487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287487,0.000000,0.000000,0.250000,0,0);}
.m61_c00499{transform:matrix(0.288137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288137,0.000000,0.000000,0.250000,0,0);}
.m7a_c00499{transform:matrix(0.288247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288247,0.000000,0.000000,0.250000,0,0);}
.m68_c00499{transform:matrix(0.288378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288378,0.000000,0.000000,0.250000,0,0);}
.m10_c00499{transform:matrix(0.288531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288531,0.000000,0.000000,0.250000,0,0);}
.m73_c00499{transform:matrix(0.288533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288533,0.000000,0.000000,0.250000,0,0);}
.m28_c00499{transform:matrix(0.289629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289629,0.000000,0.000000,0.250000,0,0);}
.m52_c00499{transform:matrix(0.290254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290254,0.000000,0.000000,0.250000,0,0);}
.ma7_c00499{transform:matrix(0.291071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291071,0.000000,0.000000,0.250000,0,0);}
.m1c_c00499{transform:matrix(0.291194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291194,0.000000,0.000000,0.250000,0,0);}
.m60_c00499{transform:matrix(0.291864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291864,0.000000,0.000000,0.250000,0,0);}
.m5e_c00499{transform:matrix(0.292039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292039,0.000000,0.000000,0.250000,0,0);}
.m80_c00499{transform:matrix(0.292487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292487,0.000000,0.000000,0.250000,0,0);}
.mac_c00499{transform:matrix(0.292661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292661,0.000000,0.000000,0.250000,0,0);}
.m9a_c00499{transform:matrix(0.293309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293309,0.000000,0.000000,0.250000,0,0);}
.m33_c00499{transform:matrix(0.293765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293765,0.000000,0.000000,0.250000,0,0);}
.m51_c00499{transform:matrix(0.294302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294302,0.000000,0.000000,0.250000,0,0);}
.m55_c00499{transform:matrix(0.294401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294401,0.000000,0.000000,0.250000,0,0);}
.ma1_c00499{transform:matrix(0.294503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294503,0.000000,0.000000,0.250000,0,0);}
.m3d_c00499{transform:matrix(0.294739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294739,0.000000,0.000000,0.250000,0,0);}
.m41_c00499{transform:matrix(0.294788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294788,0.000000,0.000000,0.250000,0,0);}
.mb2_c00499{transform:matrix(0.295260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295260,0.000000,0.000000,0.250000,0,0);}
.m81_c00499{transform:matrix(0.295530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295530,0.000000,0.000000,0.250000,0,0);}
.m21_c00499{transform:matrix(0.295652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295652,0.000000,0.000000,0.250000,0,0);}
.m5c_c00499{transform:matrix(0.296544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296544,0.000000,0.000000,0.250000,0,0);}
.m99_c00499{transform:matrix(0.297343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297343,0.000000,0.000000,0.250000,0,0);}
.m6e_c00499{transform:matrix(0.297422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297422,0.000000,0.000000,0.250000,0,0);}
.m3c_c00499{transform:matrix(0.297499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297499,0.000000,0.000000,0.250000,0,0);}
.m44_c00499{transform:matrix(0.297564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297564,0.000000,0.000000,0.250000,0,0);}
.mb1_c00499{transform:matrix(0.298516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298516,0.000000,0.000000,0.250000,0,0);}
.m78_c00499{transform:matrix(0.298687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298687,0.000000,0.000000,0.250000,0,0);}
.m63_c00499{transform:matrix(0.298836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298836,0.000000,0.000000,0.250000,0,0);}
.mb3_c00499{transform:matrix(0.299067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299067,0.000000,0.000000,0.250000,0,0);}
.ma6_c00499{transform:matrix(0.299956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299956,0.000000,0.000000,0.250000,0,0);}
.m9b_c00499{transform:matrix(0.301121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301121,0.000000,0.000000,0.250000,0,0);}
.m4f_c00499{transform:matrix(0.301721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301721,0.000000,0.000000,0.250000,0,0);}
.m24_c00499{transform:matrix(0.301777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301777,0.000000,0.000000,0.250000,0,0);}
.mb9_c00499{transform:matrix(0.302384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302384,0.000000,0.000000,0.250000,0,0);}
.m3e_c00499{transform:matrix(0.302495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302495,0.000000,0.000000,0.250000,0,0);}
.m5f_c00499{transform:matrix(0.302665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302665,0.000000,0.000000,0.250000,0,0);}
.ma9_c00499{transform:matrix(0.304893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304893,0.000000,0.000000,0.250000,0,0);}
.maa_c00499{transform:matrix(0.306039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306039,0.000000,0.000000,0.250000,0,0);}
.ma0_c00499{transform:matrix(0.307864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307864,0.000000,0.000000,0.250000,0,0);}
.m2a_c00499{transform:matrix(0.308502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308502,0.000000,0.000000,0.250000,0,0);}
.m1e_c00499{transform:matrix(0.308924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308924,0.000000,0.000000,0.250000,0,0);}
.m8d_c00499{transform:matrix(0.310027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310027,0.000000,0.000000,0.250000,0,0);}
.m1_c00499{transform:matrix(0.310186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310186,0.000000,0.000000,0.250000,0,0);}
.m9c_c00499{transform:matrix(0.310930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310930,0.000000,0.000000,0.250000,0,0);}
.m2c_c00499{transform:matrix(0.311123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311123,0.000000,0.000000,0.250000,0,0);}
.m8b_c00499{transform:matrix(0.311160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311160,0.000000,0.000000,0.250000,0,0);}
.mc5_c00499{transform:matrix(0.311229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311229,0.000000,0.000000,0.250000,0,0);}
.md_c00499{transform:matrix(0.311398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311398,0.000000,0.000000,0.250000,0,0);}
.mc0_c00499{transform:matrix(0.311495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311495,0.000000,0.000000,0.250000,0,0);}
.m17_c00499{transform:matrix(0.312706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312706,0.000000,0.000000,0.250000,0,0);}
.m72_c00499{transform:matrix(0.312867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312867,0.000000,0.000000,0.250000,0,0);}
.mb4_c00499{transform:matrix(0.313103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313103,0.000000,0.000000,0.250000,0,0);}
.mbd_c00499{transform:matrix(0.313172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313172,0.000000,0.000000,0.250000,0,0);}
.m66_c00499{transform:matrix(0.313589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313589,0.000000,0.000000,0.250000,0,0);}
.m83_c00499{transform:matrix(0.313638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313638,0.000000,0.000000,0.250000,0,0);}
.m64_c00499{transform:matrix(0.314053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314053,0.000000,0.000000,0.250000,0,0);}
.mb8_c00499{transform:matrix(0.314137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314137,0.000000,0.000000,0.250000,0,0);}
.m9e_c00499{transform:matrix(0.314213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314213,0.000000,0.000000,0.250000,0,0);}
.m3f_c00499{transform:matrix(0.314746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314746,0.000000,0.000000,0.250000,0,0);}
.m62_c00499{transform:matrix(0.314749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314749,0.000000,0.000000,0.250000,0,0);}
.m46_c00499{transform:matrix(0.315101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315101,0.000000,0.000000,0.250000,0,0);}
.maf_c00499{transform:matrix(0.315338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315338,0.000000,0.000000,0.250000,0,0);}
.m7e_c00499{transform:matrix(0.315372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315372,0.000000,0.000000,0.250000,0,0);}
.m8e_c00499{transform:matrix(0.315701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315701,0.000000,0.000000,0.250000,0,0);}
.m13_c00499{transform:matrix(0.316292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316292,0.000000,0.000000,0.250000,0,0);}
.m3_c00499{transform:matrix(0.316746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316746,0.000000,0.000000,0.250000,0,0);}
.m77_c00499{transform:matrix(0.316807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316807,0.000000,0.000000,0.250000,0,0);}
.m70_c00499{transform:matrix(0.317088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317088,0.000000,0.000000,0.250000,0,0);}
.m4a_c00499{transform:matrix(0.318157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318157,0.000000,0.000000,0.250000,0,0);}
.ma4_c00499{transform:matrix(0.318435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318435,0.000000,0.000000,0.250000,0,0);}
.mb5_c00499{transform:matrix(0.319174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319174,0.000000,0.000000,0.250000,0,0);}
.me_c00499{transform:matrix(0.319176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319176,0.000000,0.000000,0.250000,0,0);}
.m36_c00499{transform:matrix(0.319385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319385,0.000000,0.000000,0.250000,0,0);}
.mb7_c00499{transform:matrix(0.319473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319473,0.000000,0.000000,0.250000,0,0);}
.m5_c00499{transform:matrix(0.319873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319873,0.000000,0.000000,0.250000,0,0);}
.m3b_c00499{transform:matrix(0.319887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319887,0.000000,0.000000,0.250000,0,0);}
.mab_c00499{transform:matrix(0.320366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320366,0.000000,0.000000,0.250000,0,0);}
.mad_c00499{transform:matrix(0.320744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320744,0.000000,0.000000,0.250000,0,0);}
.m56_c00499{transform:matrix(0.321790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321790,0.000000,0.000000,0.250000,0,0);}
.m6_c00499{transform:matrix(0.322004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322004,0.000000,0.000000,0.250000,0,0);}
.m38_c00499{transform:matrix(0.323637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323637,0.000000,0.000000,0.250000,0,0);}
.mbf_c00499{transform:matrix(0.324339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324339,0.000000,0.000000,0.250000,0,0);}
.mf_c00499{transform:matrix(0.324603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324603,0.000000,0.000000,0.250000,0,0);}
.m6a_c00499{transform:matrix(0.324913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324913,0.000000,0.000000,0.250000,0,0);}
.m93_c00499{transform:matrix(0.325184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325184,0.000000,0.000000,0.250000,0,0);}
.m2_c00499{transform:matrix(0.325339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325339,0.000000,0.000000,0.250000,0,0);}
.m14_c00499{transform:matrix(0.325388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325388,0.000000,0.000000,0.250000,0,0);}
.m20_c00499{transform:matrix(0.326455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326455,0.000000,0.000000,0.250000,0,0);}
.m91_c00499{transform:matrix(0.326630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326630,0.000000,0.000000,0.250000,0,0);}
.m8a_c00499{transform:matrix(0.327721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327721,0.000000,0.000000,0.250000,0,0);}
.m42_c00499{transform:matrix(0.327976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327976,0.000000,0.000000,0.250000,0,0);}
.m18_c00499{transform:matrix(0.328587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328587,0.000000,0.000000,0.250000,0,0);}
.m8c_c00499{transform:matrix(0.329620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329620,0.000000,0.000000,0.250000,0,0);}
.ma5_c00499{transform:matrix(0.329897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329897,0.000000,0.000000,0.250000,0,0);}
.m9_c00499{transform:matrix(0.330646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330646,0.000000,0.000000,0.250000,0,0);}
.m7f_c00499{transform:matrix(0.330965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330965,0.000000,0.000000,0.250000,0,0);}
.mae_c00499{transform:matrix(0.331011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331011,0.000000,0.000000,0.250000,0,0);}
.m65_c00499{transform:matrix(0.331612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331612,0.000000,0.000000,0.250000,0,0);}
.m30_c00499{transform:matrix(0.333900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333900,0.000000,0.000000,0.250000,0,0);}
.m53_c00499{transform:matrix(0.335054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335054,0.000000,0.000000,0.250000,0,0);}
.mba_c00499{transform:matrix(0.338050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338050,0.000000,0.000000,0.250000,0,0);}
.mbe_c00499{transform:matrix(0.338826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338826,0.000000,0.000000,0.250000,0,0);}
.m7c_c00499{transform:matrix(0.339052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339052,0.000000,0.000000,0.250000,0,0);}
.m6d_c00499{transform:matrix(0.339740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339740,0.000000,0.000000,0.250000,0,0);}
.m29_c00499{transform:matrix(0.340561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340561,0.000000,0.000000,0.250000,0,0);}
.m90_c00499{transform:matrix(0.340618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340618,0.000000,0.000000,0.250000,0,0);}
.m45_c00499{transform:matrix(0.341967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341967,0.000000,0.000000,0.250000,0,0);}
.mbc_c00499{transform:matrix(0.342830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342830,0.000000,0.000000,0.250000,0,0);}
.m1d_c00499{transform:matrix(0.344455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344455,0.000000,0.000000,0.250000,0,0);}
.m6f_c00499{transform:matrix(0.344527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344527,0.000000,0.000000,0.250000,0,0);}
.m3a_c00499{transform:matrix(0.344565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344565,0.000000,0.000000,0.250000,0,0);}
.m11_c00499{transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);}
.m5b_c00499{transform:matrix(0.346907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346907,0.000000,0.000000,0.250000,0,0);}
.m98_c00499{transform:matrix(0.347072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347072,0.000000,0.000000,0.250000,0,0);}
.m88_c00499{transform:matrix(0.347852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347852,0.000000,0.000000,0.250000,0,0);}
.m86_c00499{transform:matrix(0.349572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349572,0.000000,0.000000,0.250000,0,0);}
.m95_c00499{transform:matrix(0.349905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349905,0.000000,0.000000,0.250000,0,0);}
.m4b_c00499{transform:matrix(0.350869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350869,0.000000,0.000000,0.250000,0,0);}
.m8f_c00499{transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);}
.m92_c00499{transform:matrix(0.354170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354170,0.000000,0.000000,0.250000,0,0);}
.m96_c00499{transform:matrix(0.355796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355796,0.000000,0.000000,0.250000,0,0);}
.ma_c00499{transform:matrix(0.357996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357996,0.000000,0.000000,0.250000,0,0);}
.m76_c00499{transform:matrix(0.362103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362103,0.000000,0.000000,0.250000,0,0);}
.m1f_c00499{transform:matrix(0.364277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364277,0.000000,0.000000,0.250000,0,0);}
.ma8_c00499{transform:matrix(0.368308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368308,0.000000,0.000000,0.250000,0,0);}
.m4d_c00499{transform:matrix(0.368367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368367,0.000000,0.000000,0.250000,0,0);}
.mb0_c00499{transform:matrix(0.372654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372654,0.000000,0.000000,0.250000,0,0);}
.m19_c00499{transform:matrix(0.375189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375189,0.000000,0.000000,0.250000,0,0);}
.m6b_c00499{transform:matrix(0.375216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375216,0.000000,0.000000,0.250000,0,0);}
.m9f_c00499{transform:matrix(0.382011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382011,0.000000,0.000000,0.250000,0,0);}
.m5a_c00499{transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);}
.m39_c00499{transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);}
.m25_c00499{transform:matrix(0.402367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402367,0.000000,0.000000,0.250000,0,0);}
.m22_c00499{transform:matrix(0.405805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405805,0.000000,0.000000,0.250000,0,0);}
.m48_c00499{transform:matrix(0.472219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472219,0.000000,0.000000,0.250000,0,0);}
.v0_c00499{vertical-align:0.000000px;}
.ls1_c00499{letter-spacing:-2.661127px;}
.ls12_c00499{letter-spacing:-2.647267px;}
.lsc_c00499{letter-spacing:-2.619540px;}
.ls14_c00499{letter-spacing:-2.494800px;}
.ls18_c00499{letter-spacing:-2.432430px;}
.lsd_c00499{letter-spacing:-2.092867px;}
.ls6_c00499{letter-spacing:-1.503817px;}
.ls15_c00499{letter-spacing:-1.358280px;}
.ls1d_c00499{letter-spacing:-1.164797px;}
.ls11_c00499{letter-spacing:-0.779053px;}
.ls3_c00499{letter-spacing:0.000000px;}
.ls16_c00499{letter-spacing:0.358974px;}
.ls0_c00499{letter-spacing:0.453817px;}
.ls5_c00499{letter-spacing:0.726108px;}
.ls21_c00499{letter-spacing:1.300943px;}
.ls1b_c00499{letter-spacing:1.558106px;}
.ls20_c00499{letter-spacing:1.681416px;}
.ls1e_c00499{letter-spacing:1.801810px;}
.ls1f_c00499{letter-spacing:2.435486px;}
.ls22_c00499{letter-spacing:2.443049px;}
.lse_c00499{letter-spacing:2.504700px;}
.ls4_c00499{letter-spacing:3.247200px;}
.ls19_c00499{letter-spacing:3.282611px;}
.ls17_c00499{letter-spacing:3.474900px;}
.lsf_c00499{letter-spacing:3.564000px;}
.lsb_c00499{letter-spacing:3.742200px;}
.ls8_c00499{letter-spacing:3.762000px;}
.ls2_c00499{letter-spacing:3.781810px;}
.ls10_c00499{letter-spacing:3.801610px;}
.ls7_c00499{letter-spacing:3.880810px;}
.ls1a_c00499{letter-spacing:3.960000px;}
.ls9_c00499{letter-spacing:4.059000px;}
.ls13_c00499{letter-spacing:12.830598px;}
.ls1c_c00499{letter-spacing:17.107200px;}
.ls23_c00499{letter-spacing:51.321798px;}
.lsa_c00499{letter-spacing:57.024198px;}
.sc__c00499{text-shadow:none;}
.sc0_c00499{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00499{-webkit-text-stroke:0px transparent;}
.sc0_c00499{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00499{word-spacing:-21.136951px;}
.ws1_c00499{word-spacing:-18.909050px;}
.ws2_c00499{word-spacing:0.000000px;}
._9_c00499{width:1.285911px;}
._6_c00499{width:3.100988px;}
._8_c00499{width:4.160090px;}
._1_c00499{width:5.551018px;}
._5_c00499{width:9.151461px;}
._2_c00499{width:11.345521px;}
._3_c00499{width:13.161368px;}
._0_c00499{width:29.149594px;}
._4_c00499{width:36.951029px;}
._7_c00499{width:88.872791px;}
.fc0_c00499{color:transparent;}
.fsd_c00499{font-size:12.830598px;}
.fs13_c00499{font-size:17.107200px;}
.fs19_c00499{font-size:22.176000px;}
.fs10_c00499{font-size:27.720000px;}
.fs1a_c00499{font-size:33.264000px;}
.fs16_c00499{font-size:36.036198px;}
.fse_c00499{font-size:38.808000px;}
.fs15_c00499{font-size:39.600000px;}
.fsc_c00499{font-size:40.986198px;}
.fs3_c00499{font-size:42.966198px;}
.fsa_c00499{font-size:50.094000px;}
.fs18_c00499{font-size:51.321798px;}
.fs7_c00499{font-size:57.024198px;}
.fs9_c00499{font-size:59.796198px;}
.fs14_c00499{font-size:60.192000px;}
.fs2_c00499{font-size:64.944000px;}
.fs11_c00499{font-size:69.498000px;}
.fsb_c00499{font-size:71.280000px;}
.fsf_c00499{font-size:73.260000px;}
.fs8_c00499{font-size:74.844000px;}
.fs5_c00499{font-size:75.240000px;}
.fs1_c00499{font-size:75.636198px;}
.fs0_c00499{font-size:76.032198px;}
.fs17_c00499{font-size:76.428000px;}
.fs4_c00499{font-size:77.616198px;}
.fs12_c00499{font-size:79.200000px;}
.fs6_c00499{font-size:81.180000px;}
.y0_c00499{bottom:0.000000px;}
.y25_c00499{bottom:30.555009px;}
.y24_c00499{bottom:58.712985px;}
.y1_c00499{bottom:76.500000px;}
.y23_c00499{bottom:95.783535px;}
.y22_c00499{bottom:128.928735px;}
.y21_c00499{bottom:161.004735px;}
.y20_c00499{bottom:193.080735px;}
.y1f_c00499{bottom:218.741535px;}
.y1e_c00499{bottom:225.508185px;}
.y1d_c00499{bottom:226.220985px;}
.y1c_c00499{bottom:257.584185px;}
.y1b_c00499{bottom:276.116985px;}
.y1a_c00499{bottom:288.590985px;}
.y19_c00499{bottom:320.666985px;}
.y18_c00499{bottom:347.396985px;}
.y17_c00499{bottom:352.035135px;}
.y16_c00499{bottom:384.462585px;}
.y15_c00499{bottom:447.906735px;}
.y14_c00499{bottom:479.982735px;}
.y13_c00499{bottom:511.345935px;}
.y12_c00499{bottom:542.347785px;}
.y11_c00499{bottom:574.072335px;}
.y10_c00499{bottom:598.302585px;}
.yf_c00499{bottom:606.143385px;}
.ye_c00499{bottom:637.511535px;}
.yd_c00499{bottom:665.662185px;}
.yb_c00499{bottom:666.379935px;}
.yc_c00499{bottom:669.231135px;}
.ya_c00499{bottom:669.582585px;}
.y9_c00499{bottom:701.302185px;}
.y8_c00499{bottom:733.378185px;}
.y7_c00499{bottom:765.097785px;}
.y6_c00499{bottom:797.178735px;}
.y5_c00499{bottom:860.617935px;}
.y4_c00499{bottom:891.981135px;}
.y3_c00499{bottom:922.987935px;}
.y2_c00499{bottom:1066.612185px;}
.hf_c00499{height:8.545178px;}
.h15_c00499{height:11.393395px;}
.h1b_c00499{height:23.128875px;}
.h12_c00499{height:28.911094px;}
.h1a_c00499{height:34.180317px;}
.h1c_c00499{height:34.693313px;}
.h18_c00499{height:37.584628px;}
.h9_c00499{height:37.978116px;}
.h10_c00499{height:38.087930px;}
.h17_c00499{height:41.301563px;}
.h5_c00499{height:42.168974px;}
.he_c00499{height:42.747324px;}
.hc_c00499{height:52.246477px;}
.hb_c00499{height:62.365566px;}
.h16_c00499{height:62.778375px;}
.h4_c00499{height:63.738984px;}
.h13_c00499{height:68.208486px;}
.ha_c00499{height:73.455293px;}
.h7_c00499{height:73.843945px;}
.h3_c00499{height:74.232792px;}
.hd_c00499{height:74.342813px;}
.h19_c00499{height:75.009902px;}
.h6_c00499{height:76.176054px;}
.h11_c00499{height:76.407891px;}
.h14_c00499{height:77.730469px;}
.h2_c00499{height:79.299207px;}
.h8_c00499{height:79.673730px;}
.h1_c00499{height:1110.000000px;}
.h0_c00499{height:1263.000000px;}
.w1_c00499{width:763.500000px;}
.w0_c00499{width:892.500000px;}
.x0_c00499{left:0.000000px;}
.x1_c00499{left:64.500000px;}
.x5e_c00499{left:85.715250px;}
.x23_c00499{left:86.794350px;}
.x3_c00499{left:88.685250px;}
.x15_c00499{left:109.594050px;}
.x72_c00499{left:117.791250px;}
.x3b_c00499{left:119.563350px;}
.x51_c00499{left:126.379500px;}
.x2b_c00499{left:130.978050px;}
.x4_c00499{left:133.274850px;}
.x16_c00499{left:135.408300px;}
.x61_c00499{left:140.902800px;}
.x19_c00499{left:142.635300px;}
.x77_c00499{left:154.876650px;}
.x17_c00499{left:156.772500px;}
.xd_c00499{left:166.108200px;}
.x67_c00499{left:173.751000px;}
.x5f_c00499{left:174.973650px;}
.x83_c00499{left:176.018100px;}
.x2c_c00499{left:177.374400px;}
.x62_c00499{left:184.942950px;}
.x73_c00499{left:186.284400px;}
.x4a_c00499{left:187.818900px;}
.x57_c00499{left:189.105900px;}
.x3c_c00499{left:197.278350px;}
.x5_c00499{left:199.901850px;}
.x5b_c00499{left:208.742550px;}
.x24_c00499{left:209.945400px;}
.x52_c00499{left:211.267050px;}
.x7c_c00499{left:217.954500px;}
.x8b_c00499{left:219.127650px;}
.x18_c00499{left:220.365150px;}
.x2d_c00499{left:231.141300px;}
.x7d_c00499{left:240.902700px;}
.x25_c00499{left:242.303550px;}
.x2e_c00499{left:252.866850px;}
.x84_c00499{left:263.494500px;}
.x37_c00499{left:264.761700px;}
.x1a_c00499{left:266.241750px;}
.x26_c00499{left:275.315100px;}
.x43_c00499{left:276.948600px;}
.x63_c00499{left:284.942850px;}
.x2f_c00499{left:287.076300px;}
.x1b_c00499{left:288.853350px;}
.x3d_c00499{left:289.927500px;}
.x53_c00499{left:296.743650px;}
.x38_c00499{left:298.629600px;}
.x85_c00499{left:307.821750px;}
.x3e_c00499{left:310.049250px;}
.x64_c00499{left:318.444450px;}
.x1c_c00499{left:320.226450px;}
.x74_c00499{left:329.131500px;}
.x44_c00499{left:330.562050px;}
.x30_c00499{left:332.185650px;}
.x68_c00499{left:340.887750px;}
.x6_c00499{left:342.362850px;}
.xe_c00499{left:343.951800px;}
.x78_c00499{left:352.084650px;}
.x7e_c00499{left:363.900300px;}
.x4b_c00499{left:365.296200px;}
.x50_c00499{left:369.701700px;}
.x58_c00499{left:375.661500px;}
.xf_c00499{left:376.963350px;}
.x65_c00499{left:385.774350px;}
.x1d_c00499{left:388.739400px;}
.x86_c00499{left:397.025700px;}
.x45_c00499{left:399.178950px;}
.x6d_c00499{left:419.147250px;}
.x39_c00499{left:421.251000px;}
.x7_c00499{left:422.290500px;}
.x7f_c00499{left:430.873800px;}
.x54_c00499{left:431.982600px;}
.x31_c00499{left:433.244850px;}
.x69_c00499{left:441.763800px;}
.x46_c00499{left:443.323050px;}
.x10_c00499{left:444.392250px;}
.x3f_c00499{left:445.704000px;}
.x8c_c00499{left:452.292450px;}
.x5c_c00499{left:453.356700px;}
.x27_c00499{left:456.767250px;}
.x6e_c00499{left:462.469650px;}
.x55_c00499{left:465.053550px;}
.x8_c00499{left:466.117800px;}
.x79_c00499{left:473.483400px;}
.x75_c00499{left:475.404000px;}
.x1e_c00499{left:476.755350px;}
.x87_c00499{left:485.358450px;}
.x40_c00499{left:488.610600px;}
.x66_c00499{left:495.921750px;}
.x59_c00499{left:498.174000px;}
.x6f_c00499{left:506.989950px;}
.x32_c00499{left:508.158150px;}
.x28_c00499{left:509.608500px;}
.x80_c00499{left:518.211600px;}
.x41_c00499{left:520.661850px;}
.x1f_c00499{left:521.731050px;}
.x8d_c00499{left:529.502550px;}
.x4c_c00499{left:530.903400px;}
.x11_c00499{left:532.472550px;}
.x70_c00499{left:541.620150px;}
.x3a_c00499{left:542.793300px;}
.x47_c00499{left:552.965550px;}
.x9_c00499{left:565.622700px;}
.x33_c00499{left:567.330450px;}
.x20_c00499{left:576.552300px;}
.x81_c00499{left:585.185100px;}
.xa_c00499{left:588.432300px;}
.x88_c00499{left:595.208850px;}
.x56_c00499{left:596.782950px;}
.x12_c00499{left:599.401500px;}
.x71_c00499{left:607.128450px;}
.x4d_c00499{left:608.167950px;}
.xb_c00499{left:609.954900px;}
.x48_c00499{left:619.251000px;}
.x6b_c00499{left:621.062700px;}
.x6a_c00499{left:630.126150px;}
.x13_c00499{left:631.883400px;}
.x8e_c00499{left:639.367800px;}
.x76_c00499{left:640.738950px;}
.x4e_c00499{left:641.837850px;}
.x7b_c00499{left:643.743600px;}
.x34_c00499{left:652.529850px;}
.x21_c00499{left:653.559450px;}
.x5d_c00499{left:663.098100px;}
.x29_c00499{left:664.142550px;}
.x89_c00499{left:672.166500px;}
.x35_c00499{left:673.918800px;}
.x4f_c00499{left:675.334500px;}
.xc_c00499{left:676.374000px;}
.x7a_c00499{left:684.472200px;}
.x22_c00499{left:686.249250px;}
.x60_c00499{left:696.560100px;}
.x14_c00499{left:698.173800px;}
.x90_c00499{left:699.708300px;}
.x8f_c00499{left:701.178450px;}
.x2_c00499{left:704.653350px;}
.x36_c00499{left:708.351000px;}
.x2a_c00499{left:709.534050px;}
.x42_c00499{left:713.147550px;}
.x8a_c00499{left:717.815400px;}
.x49_c00499{left:719.077650px;}
.x5a_c00499{left:720.666600px;}
.x82_c00499{left:726.883800px;}
.x6c_c00499{left:729.576600px;}
@media print{
.v0_c00499{vertical-align:0.000000pt;}
.ls1_c00499{letter-spacing:-2.365446pt;}
.ls12_c00499{letter-spacing:-2.353126pt;}
.lsc_c00499{letter-spacing:-2.328480pt;}
.ls14_c00499{letter-spacing:-2.217600pt;}
.ls18_c00499{letter-spacing:-2.162160pt;}
.lsd_c00499{letter-spacing:-1.860326pt;}
.ls6_c00499{letter-spacing:-1.336726pt;}
.ls15_c00499{letter-spacing:-1.207360pt;}
.ls1d_c00499{letter-spacing:-1.035376pt;}
.ls11_c00499{letter-spacing:-0.692491pt;}
.ls3_c00499{letter-spacing:0.000000pt;}
.ls16_c00499{letter-spacing:0.319088pt;}
.ls0_c00499{letter-spacing:0.403393pt;}
.ls5_c00499{letter-spacing:0.645429pt;}
.ls21_c00499{letter-spacing:1.156393pt;}
.ls1b_c00499{letter-spacing:1.384983pt;}
.ls20_c00499{letter-spacing:1.494592pt;}
.ls1e_c00499{letter-spacing:1.601609pt;}
.ls1f_c00499{letter-spacing:2.164876pt;}
.ls22_c00499{letter-spacing:2.171599pt;}
.lse_c00499{letter-spacing:2.226400pt;}
.ls4_c00499{letter-spacing:2.886400pt;}
.ls19_c00499{letter-spacing:2.917876pt;}
.ls17_c00499{letter-spacing:3.088800pt;}
.lsf_c00499{letter-spacing:3.168000pt;}
.lsb_c00499{letter-spacing:3.326400pt;}
.ls8_c00499{letter-spacing:3.344000pt;}
.ls2_c00499{letter-spacing:3.361609pt;}
.ls10_c00499{letter-spacing:3.379209pt;}
.ls7_c00499{letter-spacing:3.449609pt;}
.ls1a_c00499{letter-spacing:3.520000pt;}
.ls9_c00499{letter-spacing:3.608000pt;}
.ls13_c00499{letter-spacing:11.404976pt;}
.ls1c_c00499{letter-spacing:15.206400pt;}
.ls23_c00499{letter-spacing:45.619376pt;}
.lsa_c00499{letter-spacing:50.688176pt;}
.ws0_c00499{word-spacing:-18.788401pt;}
.ws1_c00499{word-spacing:-16.808044pt;}
.ws2_c00499{word-spacing:0.000000pt;}
._9_c00499{width:1.143032pt;}
._6_c00499{width:2.756434pt;}
._8_c00499{width:3.697858pt;}
._1_c00499{width:4.934238pt;}
._5_c00499{width:8.134632pt;}
._2_c00499{width:10.084908pt;}
._3_c00499{width:11.698994pt;}
._0_c00499{width:25.910750pt;}
._4_c00499{width:32.845360pt;}
._7_c00499{width:78.998037pt;}
.fsd_c00499{font-size:11.404976pt;}
.fs13_c00499{font-size:15.206400pt;}
.fs19_c00499{font-size:19.712000pt;}
.fs10_c00499{font-size:24.640000pt;}
.fs1a_c00499{font-size:29.568000pt;}
.fs16_c00499{font-size:32.032176pt;}
.fse_c00499{font-size:34.496000pt;}
.fs15_c00499{font-size:35.200000pt;}
.fsc_c00499{font-size:36.432176pt;}
.fs3_c00499{font-size:38.192176pt;}
.fsa_c00499{font-size:44.528000pt;}
.fs18_c00499{font-size:45.619376pt;}
.fs7_c00499{font-size:50.688176pt;}
.fs9_c00499{font-size:53.152176pt;}
.fs14_c00499{font-size:53.504000pt;}
.fs2_c00499{font-size:57.728000pt;}
.fs11_c00499{font-size:61.776000pt;}
.fsb_c00499{font-size:63.360000pt;}
.fsf_c00499{font-size:65.120000pt;}
.fs8_c00499{font-size:66.528000pt;}
.fs5_c00499{font-size:66.880000pt;}
.fs1_c00499{font-size:67.232176pt;}
.fs0_c00499{font-size:67.584176pt;}
.fs17_c00499{font-size:67.936000pt;}
.fs4_c00499{font-size:68.992176pt;}
.fs12_c00499{font-size:70.400000pt;}
.fs6_c00499{font-size:72.160000pt;}
.y0_c00499{bottom:0.000000pt;}
.y25_c00499{bottom:27.160008pt;}
.y24_c00499{bottom:52.189320pt;}
.y1_c00499{bottom:68.000000pt;}
.y23_c00499{bottom:85.140920pt;}
.y22_c00499{bottom:114.603320pt;}
.y21_c00499{bottom:143.115320pt;}
.y20_c00499{bottom:171.627320pt;}
.y1f_c00499{bottom:194.436920pt;}
.y1e_c00499{bottom:200.451720pt;}
.y1d_c00499{bottom:201.085320pt;}
.y1c_c00499{bottom:228.963720pt;}
.y1b_c00499{bottom:245.437320pt;}
.y1a_c00499{bottom:256.525320pt;}
.y19_c00499{bottom:285.037320pt;}
.y18_c00499{bottom:308.797320pt;}
.y17_c00499{bottom:312.920120pt;}
.y16_c00499{bottom:341.744520pt;}
.y15_c00499{bottom:398.139320pt;}
.y14_c00499{bottom:426.651320pt;}
.y13_c00499{bottom:454.529720pt;}
.y12_c00499{bottom:482.086920pt;}
.y11_c00499{bottom:510.286520pt;}
.y10_c00499{bottom:531.824520pt;}
.yf_c00499{bottom:538.794120pt;}
.ye_c00499{bottom:566.676920pt;}
.yd_c00499{bottom:591.699720pt;}
.yb_c00499{bottom:592.337720pt;}
.yc_c00499{bottom:594.872120pt;}
.ya_c00499{bottom:595.184520pt;}
.y9_c00499{bottom:623.379720pt;}
.y8_c00499{bottom:651.891720pt;}
.y7_c00499{bottom:680.086920pt;}
.y6_c00499{bottom:708.603320pt;}
.y5_c00499{bottom:764.993720pt;}
.y4_c00499{bottom:792.872120pt;}
.y3_c00499{bottom:820.433720pt;}
.y2_c00499{bottom:948.099720pt;}
.hf_c00499{height:7.595714pt;}
.h15_c00499{height:10.127462pt;}
.h1b_c00499{height:20.559000pt;}
.h12_c00499{height:25.698750pt;}
.h1a_c00499{height:30.382504pt;}
.h1c_c00499{height:30.838500pt;}
.h18_c00499{height:33.408559pt;}
.h9_c00499{height:33.758325pt;}
.h10_c00499{height:33.855938pt;}
.h17_c00499{height:36.712500pt;}
.h5_c00499{height:37.483532pt;}
.he_c00499{height:37.997621pt;}
.hc_c00499{height:46.441313pt;}
.hb_c00499{height:55.436059pt;}
.h16_c00499{height:55.803000pt;}
.h4_c00499{height:56.656875pt;}
.h13_c00499{height:60.629766pt;}
.ha_c00499{height:65.293594pt;}
.h7_c00499{height:65.639063pt;}
.h3_c00499{height:65.984704pt;}
.hd_c00499{height:66.082500pt;}
.h19_c00499{height:66.675469pt;}
.h6_c00499{height:67.712048pt;}
.h11_c00499{height:67.918125pt;}
.h14_c00499{height:69.093750pt;}
.h2_c00499{height:70.488184pt;}
.h8_c00499{height:70.821094pt;}
.h1_c00499{height:986.666667pt;}
.h0_c00499{height:1122.666667pt;}
.w1_c00499{width:678.666667pt;}
.w0_c00499{width:793.333333pt;}
.x0_c00499{left:0.000000pt;}
.x1_c00499{left:57.333333pt;}
.x5e_c00499{left:76.191333pt;}
.x23_c00499{left:77.150533pt;}
.x3_c00499{left:78.831333pt;}
.x15_c00499{left:97.416933pt;}
.x72_c00499{left:104.703333pt;}
.x3b_c00499{left:106.278533pt;}
.x51_c00499{left:112.337333pt;}
.x2b_c00499{left:116.424933pt;}
.x4_c00499{left:118.466533pt;}
.x16_c00499{left:120.362933pt;}
.x61_c00499{left:125.246933pt;}
.x19_c00499{left:126.786933pt;}
.x77_c00499{left:137.668133pt;}
.x17_c00499{left:139.353333pt;}
.xd_c00499{left:147.651733pt;}
.x67_c00499{left:154.445333pt;}
.x5f_c00499{left:155.532133pt;}
.x83_c00499{left:156.460533pt;}
.x2c_c00499{left:157.666133pt;}
.x62_c00499{left:164.393733pt;}
.x73_c00499{left:165.586133pt;}
.x4a_c00499{left:166.950133pt;}
.x57_c00499{left:168.094133pt;}
.x3c_c00499{left:175.358533pt;}
.x5_c00499{left:177.690533pt;}
.x5b_c00499{left:185.548933pt;}
.x24_c00499{left:186.618133pt;}
.x52_c00499{left:187.792933pt;}
.x7c_c00499{left:193.737333pt;}
.x8b_c00499{left:194.780133pt;}
.x18_c00499{left:195.880133pt;}
.x2d_c00499{left:205.458933pt;}
.x7d_c00499{left:214.135733pt;}
.x25_c00499{left:215.380933pt;}
.x2e_c00499{left:224.770533pt;}
.x84_c00499{left:234.217333pt;}
.x37_c00499{left:235.343733pt;}
.x1a_c00499{left:236.659333pt;}
.x26_c00499{left:244.724533pt;}
.x43_c00499{left:246.176533pt;}
.x63_c00499{left:253.282533pt;}
.x2f_c00499{left:255.178933pt;}
.x1b_c00499{left:256.758533pt;}
.x3d_c00499{left:257.713333pt;}
.x53_c00499{left:263.772133pt;}
.x38_c00499{left:265.448533pt;}
.x85_c00499{left:273.619333pt;}
.x3e_c00499{left:275.599333pt;}
.x64_c00499{left:283.061733pt;}
.x1c_c00499{left:284.645733pt;}
.x74_c00499{left:292.561333pt;}
.x44_c00499{left:293.832933pt;}
.x30_c00499{left:295.276133pt;}
.x68_c00499{left:303.011333pt;}
.x6_c00499{left:304.322533pt;}
.xe_c00499{left:305.734933pt;}
.x78_c00499{left:312.964133pt;}
.x7e_c00499{left:323.466933pt;}
.x4b_c00499{left:324.707733pt;}
.x50_c00499{left:328.623733pt;}
.x58_c00499{left:333.921333pt;}
.xf_c00499{left:335.078533pt;}
.x65_c00499{left:342.910533pt;}
.x1d_c00499{left:345.546133pt;}
.x86_c00499{left:352.911733pt;}
.x45_c00499{left:354.825733pt;}
.x6d_c00499{left:372.575333pt;}
.x39_c00499{left:374.445333pt;}
.x7_c00499{left:375.369333pt;}
.x7f_c00499{left:382.998933pt;}
.x54_c00499{left:383.984533pt;}
.x31_c00499{left:385.106533pt;}
.x69_c00499{left:392.678933pt;}
.x46_c00499{left:394.064933pt;}
.x10_c00499{left:395.015333pt;}
.x3f_c00499{left:396.181333pt;}
.x8c_c00499{left:402.037733pt;}
.x5c_c00499{left:402.983733pt;}
.x27_c00499{left:406.015333pt;}
.x6e_c00499{left:411.084133pt;}
.x55_c00499{left:413.380933pt;}
.x8_c00499{left:414.326933pt;}
.x79_c00499{left:420.874133pt;}
.x75_c00499{left:422.581333pt;}
.x1e_c00499{left:423.782533pt;}
.x87_c00499{left:431.429733pt;}
.x40_c00499{left:434.320533pt;}
.x66_c00499{left:440.819333pt;}
.x59_c00499{left:442.821333pt;}
.x6f_c00499{left:450.657733pt;}
.x32_c00499{left:451.696133pt;}
.x28_c00499{left:452.985333pt;}
.x80_c00499{left:460.632533pt;}
.x41_c00499{left:462.810533pt;}
.x1f_c00499{left:463.760933pt;}
.x8d_c00499{left:470.668933pt;}
.x4c_c00499{left:471.914133pt;}
.x11_c00499{left:473.308933pt;}
.x70_c00499{left:481.440133pt;}
.x3a_c00499{left:482.482933pt;}
.x47_c00499{left:491.524933pt;}
.x9_c00499{left:502.775733pt;}
.x33_c00499{left:504.293733pt;}
.x20_c00499{left:512.490933pt;}
.x81_c00499{left:520.164533pt;}
.xa_c00499{left:523.050933pt;}
.x88_c00499{left:529.074533pt;}
.x56_c00499{left:530.473733pt;}
.x12_c00499{left:532.801333pt;}
.x71_c00499{left:539.669733pt;}
.x4d_c00499{left:540.593733pt;}
.xb_c00499{left:542.182133pt;}
.x48_c00499{left:550.445333pt;}
.x6b_c00499{left:552.055733pt;}
.x6a_c00499{left:560.112133pt;}
.x13_c00499{left:561.674133pt;}
.x8e_c00499{left:568.326933pt;}
.x76_c00499{left:569.545733pt;}
.x4e_c00499{left:570.522533pt;}
.x7b_c00499{left:572.216533pt;}
.x34_c00499{left:580.026533pt;}
.x21_c00499{left:580.941733pt;}
.x5d_c00499{left:589.420533pt;}
.x29_c00499{left:590.348933pt;}
.x89_c00499{left:597.481333pt;}
.x35_c00499{left:599.038933pt;}
.x4f_c00499{left:600.297333pt;}
.xc_c00499{left:601.221333pt;}
.x7a_c00499{left:608.419733pt;}
.x22_c00499{left:609.999333pt;}
.x60_c00499{left:619.164533pt;}
.x14_c00499{left:620.598933pt;}
.x90_c00499{left:621.962933pt;}
.x8f_c00499{left:623.269733pt;}
.x2_c00499{left:626.358533pt;}
.x36_c00499{left:629.645333pt;}
.x2a_c00499{left:630.696933pt;}
.x42_c00499{left:633.908933pt;}
.x8a_c00499{left:638.058133pt;}
.x49_c00499{left:639.180133pt;}
.x5a_c00499{left:640.592533pt;}
.x82_c00499{left:646.118933pt;}
.x6c_c00499{left:648.512533pt;}
}





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

.ir_c01000:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01000{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01000;src:url('chunks/assets/font_9a829666376375f38dd1f7fb.woff2')format("woff");}.ff1_c01000{font-family:ff1_c01000;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01000;src:url('chunks/assets/font_567d914652b343505ab7e9db.woff2')format("woff");}.ff2_c01000{font-family:ff2_c01000;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01000;src:url('chunks/assets/font_f70653e41e85bfc447adb420.woff2')format("woff");}.ff3_c01000{font-family:ff3_c01000;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01000;src:url('chunks/assets/font_3e5343530b934a975ecb511e.woff2')format("woff");}.ff4_c01000{font-family:ff4_c01000;line-height:0.666000;font-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_c01000{transform:matrix(0.038890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.038890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.038890,0.000000,0.000000,0.250000,0,0);}
.m79_c01000{transform:matrix(0.139895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139895,0.000000,0.000000,0.250000,0,0);}
.m32_c01000{transform:matrix(0.172268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172268,0.000000,0.000000,0.250000,0,0);}
.m77_c01000{transform:matrix(0.175159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175159,0.000000,0.000000,0.250000,0,0);}
.m44_c01000{transform:matrix(0.195006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195006,0.000000,0.000000,0.250000,0,0);}
.m73_c01000{transform:matrix(0.215534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215534,0.000000,0.000000,0.250000,0,0);}
.m34_c01000{transform:matrix(0.216318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216318,0.000000,0.000000,0.250000,0,0);}
.m30_c01000{transform:matrix(0.227440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227440,0.000000,0.000000,0.250000,0,0);}
.m33_c01000{transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);}
.m70_c01000{transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);}
.m0_c01000{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m97_c01000{transform:matrix(0.253027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253027,0.000000,0.000000,0.250000,0,0);}
.m66_c01000{transform:matrix(0.254672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254672,0.000000,0.000000,0.250000,0,0);}
.m5d_c01000{transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);}
.m39_c01000{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m2a_c01000{transform:matrix(0.259613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259613,0.000000,0.000000,0.250000,0,0);}
.m47_c01000{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.ma_c01000{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.m6c_c01000{transform:matrix(0.261972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261972,0.000000,0.000000,0.250000,0,0);}
.m41_c01000{transform:matrix(0.262371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262371,0.000000,0.000000,0.250000,0,0);}
.m58_c01000{transform:matrix(0.263212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263212,0.000000,0.000000,0.250000,0,0);}
.m55_c01000{transform:matrix(0.263272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263272,0.000000,0.000000,0.250000,0,0);}
.m40_c01000{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m6f_c01000{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m2e_c01000{transform:matrix(0.264404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264404,0.000000,0.000000,0.250000,0,0);}
.m1e_c01000{transform:matrix(0.264902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264902,0.000000,0.000000,0.250000,0,0);}
.m1b_c01000{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m7_c01000{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.m2_c01000{transform:matrix(0.267266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267266,0.000000,0.000000,0.250000,0,0);}
.m6a_c01000{transform:matrix(0.267371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267371,0.000000,0.000000,0.250000,0,0);}
.m57_c01000{transform:matrix(0.267902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267902,0.000000,0.000000,0.250000,0,0);}
.m21_c01000{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m24_c01000{transform:matrix(0.268177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268177,0.000000,0.000000,0.250000,0,0);}
.m3e_c01000{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.m86_c01000{transform:matrix(0.269245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269245,0.000000,0.000000,0.250000,0,0);}
.m7b_c01000{transform:matrix(0.269276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269276,0.000000,0.000000,0.250000,0,0);}
.m71_c01000{transform:matrix(0.269813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269813,0.000000,0.000000,0.250000,0,0);}
.m7e_c01000{transform:matrix(0.269943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269943,0.000000,0.000000,0.250000,0,0);}
.m26_c01000{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m3d_c01000{transform:matrix(0.271716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271716,0.000000,0.000000,0.250000,0,0);}
.m4a_c01000{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m6b_c01000{transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);}
.m9a_c01000{transform:matrix(0.277878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277878,0.000000,0.000000,0.250000,0,0);}
.m9f_c01000{transform:matrix(0.279482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279482,0.000000,0.000000,0.250000,0,0);}
.m31_c01000{transform:matrix(0.279874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279874,0.000000,0.000000,0.250000,0,0);}
.m10_c01000{transform:matrix(0.279891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279891,0.000000,0.000000,0.250000,0,0);}
.m78_c01000{transform:matrix(0.281246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281246,0.000000,0.000000,0.250000,0,0);}
.m95_c01000{transform:matrix(0.281787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281787,0.000000,0.000000,0.250000,0,0);}
.m7d_c01000{transform:matrix(0.282559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282559,0.000000,0.000000,0.250000,0,0);}
.m1a_c01000{transform:matrix(0.283206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283206,0.000000,0.000000,0.250000,0,0);}
.m92_c01000{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m8d_c01000{transform:matrix(0.284092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284092,0.000000,0.000000,0.250000,0,0);}
.m4b_c01000{transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);}
.m61_c01000{transform:matrix(0.286062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286062,0.000000,0.000000,0.250000,0,0);}
.m9d_c01000{transform:matrix(0.286496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286496,0.000000,0.000000,0.250000,0,0);}
.m9_c01000{transform:matrix(0.287929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287929,0.000000,0.000000,0.250000,0,0);}
.m28_c01000{transform:matrix(0.287963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287963,0.000000,0.000000,0.250000,0,0);}
.m89_c01000{transform:matrix(0.287971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287971,0.000000,0.000000,0.250000,0,0);}
.m4d_c01000{transform:matrix(0.288071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288071,0.000000,0.000000,0.250000,0,0);}
.m85_c01000{transform:matrix(0.289029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289029,0.000000,0.000000,0.250000,0,0);}
.m8a_c01000{transform:matrix(0.289260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289260,0.000000,0.000000,0.250000,0,0);}
.m6e_c01000{transform:matrix(0.289410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289410,0.000000,0.000000,0.250000,0,0);}
.m87_c01000{transform:matrix(0.290045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290045,0.000000,0.000000,0.250000,0,0);}
.m90_c01000{transform:matrix(0.290170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290170,0.000000,0.000000,0.250000,0,0);}
.m3_c01000{transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);}
.m14_c01000{transform:matrix(0.290232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290232,0.000000,0.000000,0.250000,0,0);}
.m48_c01000{transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);}
.m18_c01000{transform:matrix(0.291837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291837,0.000000,0.000000,0.250000,0,0);}
.m62_c01000{transform:matrix(0.292432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292432,0.000000,0.000000,0.250000,0,0);}
.m96_c01000{transform:matrix(0.292612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292612,0.000000,0.000000,0.250000,0,0);}
.m72_c01000{transform:matrix(0.293046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293046,0.000000,0.000000,0.250000,0,0);}
.m4e_c01000{transform:matrix(0.293141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293141,0.000000,0.000000,0.250000,0,0);}
.m63_c01000{transform:matrix(0.293533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293533,0.000000,0.000000,0.250000,0,0);}
.m54_c01000{transform:matrix(0.293742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293742,0.000000,0.000000,0.250000,0,0);}
.m43_c01000{transform:matrix(0.294571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294571,0.000000,0.000000,0.250000,0,0);}
.mf_c01000{transform:matrix(0.295150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295150,0.000000,0.000000,0.250000,0,0);}
.m91_c01000{transform:matrix(0.295202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295202,0.000000,0.000000,0.250000,0,0);}
.m15_c01000{transform:matrix(0.295212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295212,0.000000,0.000000,0.250000,0,0);}
.m38_c01000{transform:matrix(0.295285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295285,0.000000,0.000000,0.250000,0,0);}
.m52_c01000{transform:matrix(0.295421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295421,0.000000,0.000000,0.250000,0,0);}
.m29_c01000{transform:matrix(0.295898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295898,0.000000,0.000000,0.250000,0,0);}
.m3b_c01000{transform:matrix(0.295992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295992,0.000000,0.000000,0.250000,0,0);}
.m5c_c01000{transform:matrix(0.296319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296319,0.000000,0.000000,0.250000,0,0);}
.m2f_c01000{transform:matrix(0.297236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297236,0.000000,0.000000,0.250000,0,0);}
.m42_c01000{transform:matrix(0.298095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298095,0.000000,0.000000,0.250000,0,0);}
.m51_c01000{transform:matrix(0.298277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298277,0.000000,0.000000,0.250000,0,0);}
.m65_c01000{transform:matrix(0.298384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298384,0.000000,0.000000,0.250000,0,0);}
.m5_c01000{transform:matrix(0.298854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298854,0.000000,0.000000,0.250000,0,0);}
.m69_c01000{transform:matrix(0.298937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298937,0.000000,0.000000,0.250000,0,0);}
.m27_c01000{transform:matrix(0.299335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299335,0.000000,0.000000,0.250000,0,0);}
.m2c_c01000{transform:matrix(0.299645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299645,0.000000,0.000000,0.250000,0,0);}
.m25_c01000{transform:matrix(0.299660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299660,0.000000,0.000000,0.250000,0,0);}
.m46_c01000{transform:matrix(0.299938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299938,0.000000,0.000000,0.250000,0,0);}
.m4_c01000{transform:matrix(0.300064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300064,0.000000,0.000000,0.250000,0,0);}
.m7f_c01000{transform:matrix(0.300103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300103,0.000000,0.000000,0.250000,0,0);}
.m13_c01000{transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);}
.m8c_c01000{transform:matrix(0.300790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300790,0.000000,0.000000,0.250000,0,0);}
.m5b_c01000{transform:matrix(0.301508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301508,0.000000,0.000000,0.250000,0,0);}
.m17_c01000{transform:matrix(0.301510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301510,0.000000,0.000000,0.250000,0,0);}
.m11_c01000{transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);}
.m9c_c01000{transform:matrix(0.301888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301888,0.000000,0.000000,0.250000,0,0);}
.m12_c01000{transform:matrix(0.302081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302081,0.000000,0.000000,0.250000,0,0);}
.m9b_c01000{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m8e_c01000{transform:matrix(0.303256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303256,0.000000,0.000000,0.250000,0,0);}
.m5f_c01000{transform:matrix(0.303324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303324,0.000000,0.000000,0.250000,0,0);}
.m1d_c01000{transform:matrix(0.303438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303438,0.000000,0.000000,0.250000,0,0);}
.m56_c01000{transform:matrix(0.304020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304020,0.000000,0.000000,0.250000,0,0);}
.m8f_c01000{transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);}
.m49_c01000{transform:matrix(0.305280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305280,0.000000,0.000000,0.250000,0,0);}
.m83_c01000{transform:matrix(0.305807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305807,0.000000,0.000000,0.250000,0,0);}
.m64_c01000{transform:matrix(0.307101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307101,0.000000,0.000000,0.250000,0,0);}
.m76_c01000{transform:matrix(0.308285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308285,0.000000,0.000000,0.250000,0,0);}
.m53_c01000{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m88_c01000{transform:matrix(0.309410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309410,0.000000,0.000000,0.250000,0,0);}
.m2d_c01000{transform:matrix(0.309893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309893,0.000000,0.000000,0.250000,0,0);}
.m98_c01000{transform:matrix(0.310119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310119,0.000000,0.000000,0.250000,0,0);}
.m81_c01000{transform:matrix(0.310633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310633,0.000000,0.000000,0.250000,0,0);}
.me_c01000{transform:matrix(0.310804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310804,0.000000,0.000000,0.250000,0,0);}
.m9e_c01000{transform:matrix(0.310944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310944,0.000000,0.000000,0.250000,0,0);}
.m3c_c01000{transform:matrix(0.312391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312391,0.000000,0.000000,0.250000,0,0);}
.m3a_c01000{transform:matrix(0.312516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312516,0.000000,0.000000,0.250000,0,0);}
.m23_c01000{transform:matrix(0.313681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313681,0.000000,0.000000,0.250000,0,0);}
.m6_c01000{transform:matrix(0.313838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313838,0.000000,0.000000,0.250000,0,0);}
.m75_c01000{transform:matrix(0.314287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314287,0.000000,0.000000,0.250000,0,0);}
.m16_c01000{transform:matrix(0.315482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315482,0.000000,0.000000,0.250000,0,0);}
.m7a_c01000{transform:matrix(0.315708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315708,0.000000,0.000000,0.250000,0,0);}
.m74_c01000{transform:matrix(0.315783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315783,0.000000,0.000000,0.250000,0,0);}
.ma0_c01000{transform:matrix(0.316622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316622,0.000000,0.000000,0.250000,0,0);}
.md_c01000{transform:matrix(0.318723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318723,0.000000,0.000000,0.250000,0,0);}
.m1c_c01000{transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);}
.m93_c01000{transform:matrix(0.318864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318864,0.000000,0.000000,0.250000,0,0);}
.m82_c01000{transform:matrix(0.319808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319808,0.000000,0.000000,0.250000,0,0);}
.ma2_c01000{transform:matrix(0.321597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321597,0.000000,0.000000,0.250000,0,0);}
.m6d_c01000{transform:matrix(0.321791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321791,0.000000,0.000000,0.250000,0,0);}
.m35_c01000{transform:matrix(0.322251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322251,0.000000,0.000000,0.250000,0,0);}
.m45_c01000{transform:matrix(0.323216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323216,0.000000,0.000000,0.250000,0,0);}
.mc_c01000{transform:matrix(0.323414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323414,0.000000,0.000000,0.250000,0,0);}
.m1_c01000{transform:matrix(0.324203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324203,0.000000,0.000000,0.250000,0,0);}
.m4f_c01000{transform:matrix(0.328522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328522,0.000000,0.000000,0.250000,0,0);}
.m50_c01000{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);}
.m1f_c01000{transform:matrix(0.332348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332348,0.000000,0.000000,0.250000,0,0);}
.m5e_c01000{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m3f_c01000{transform:matrix(0.334345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334345,0.000000,0.000000,0.250000,0,0);}
.m67_c01000{transform:matrix(0.335050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335050,0.000000,0.000000,0.250000,0,0);}
.m20_c01000{transform:matrix(0.335847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335847,0.000000,0.000000,0.250000,0,0);}
.m68_c01000{transform:matrix(0.338655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338655,0.000000,0.000000,0.250000,0,0);}
.m2b_c01000{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m5a_c01000{transform:matrix(0.340015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340015,0.000000,0.000000,0.250000,0,0);}
.m19_c01000{transform:matrix(0.340545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340545,0.000000,0.000000,0.250000,0,0);}
.mb_c01000{transform:matrix(0.342694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342694,0.000000,0.000000,0.250000,0,0);}
.m7c_c01000{transform:matrix(0.343129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343129,0.000000,0.000000,0.250000,0,0);}
.m8_c01000{transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);}
.m8b_c01000{transform:matrix(0.346176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346176,0.000000,0.000000,0.250000,0,0);}
.m84_c01000{transform:matrix(0.350261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350261,0.000000,0.000000,0.250000,0,0);}
.m60_c01000{transform:matrix(0.351271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351271,0.000000,0.000000,0.250000,0,0);}
.ma3_c01000{transform:matrix(0.353499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353499,0.000000,0.000000,0.250000,0,0);}
.m94_c01000{transform:matrix(0.355345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355345,0.000000,0.000000,0.250000,0,0);}
.m4c_c01000{transform:matrix(0.359561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359561,0.000000,0.000000,0.250000,0,0);}
.m99_c01000{transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);}
.m22_c01000{transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);}
.m59_c01000{transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);}
.m80_c01000{transform:matrix(0.385437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385437,0.000000,0.000000,0.250000,0,0);}
.ma1_c01000{transform:matrix(0.391460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391460,0.000000,0.000000,0.250000,0,0);}
.m37_c01000{transform:matrix(0.397482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397482,0.000000,0.000000,0.250000,0,0);}
.v0_c01000{vertical-align:0.000000px;}
.ls8_c01000{letter-spacing:-2.744280px;}
.ls5_c01000{letter-spacing:-1.999404px;}
.ls16_c01000{letter-spacing:-1.897474px;}
.ls7_c01000{letter-spacing:-1.884967px;}
.ls14_c01000{letter-spacing:-1.434517px;}
.ls18_c01000{letter-spacing:-0.470448px;}
.lsf_c01000{letter-spacing:-0.399881px;}
.lse_c01000{letter-spacing:-0.352836px;}
.ls1_c01000{letter-spacing:0.000000px;}
.ls2_c01000{letter-spacing:0.218117px;}
.ls10_c01000{letter-spacing:0.358974px;}
.ls0_c01000{letter-spacing:3.253932px;}
.ls13_c01000{letter-spacing:3.418589px;}
.ls17_c01000{letter-spacing:3.524400px;}
.ls6_c01000{letter-spacing:3.643200px;}
.ls4_c01000{letter-spacing:3.708698px;}
.lsd_c01000{letter-spacing:3.801610px;}
.ls3_c01000{letter-spacing:3.920400px;}
.ls11_c01000{letter-spacing:3.940200px;}
.ls15_c01000{letter-spacing:3.979810px;}
.ls12_c01000{letter-spacing:4.118400px;}
.lsa_c01000{letter-spacing:4.197610px;}
.lsc_c01000{letter-spacing:4.435200px;}
.lsb_c01000{letter-spacing:55.598598px;}
.ls9_c01000{letter-spacing:64.152198px;}
.sc__c01000{text-shadow:none;}
.sc0_c01000{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01000{-webkit-text-stroke:0px transparent;}
.sc0_c01000{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01000{word-spacing:0.000000px;}
._0_c01000{margin-left:-11.857032px;}
._1_c01000{width:22.189464px;}
.fc0_c01000{color:transparent;}
.fs4_c01000{font-size:25.146000px;}
.fs0_c01000{font-size:27.720000px;}
.fs1_c01000{font-size:33.264000px;}
.fsb_c01000{font-size:33.660000px;}
.fs8_c01000{font-size:39.204000px;}
.fs12_c01000{font-size:40.986198px;}
.fs6_c01000{font-size:53.856198px;}
.fs15_c01000{font-size:55.440000px;}
.fsa_c01000{font-size:55.598598px;}
.fs7_c01000{font-size:64.152198px;}
.fse_c01000{font-size:70.092198px;}
.fs14_c01000{font-size:70.488000px;}
.fs5_c01000{font-size:72.864000px;}
.fsf_c01000{font-size:73.260000px;}
.fsd_c01000{font-size:76.032198px;}
.fs3_c01000{font-size:78.408000px;}
.fs10_c01000{font-size:78.804000px;}
.fs13_c01000{font-size:79.596198px;}
.fs2_c01000{font-size:80.784000px;}
.fs11_c01000{font-size:82.368000px;}
.fs9_c01000{font-size:83.952198px;}
.fsc_c01000{font-size:88.704000px;}
.y0_c01000{bottom:0.000000px;}
.y1_c01000{bottom:76.500000px;}
.y1e_c01000{bottom:110.752335px;}
.y1d_c01000{bottom:144.966735px;}
.y1c_c01000{bottom:179.537535px;}
.y1b_c01000{bottom:212.677785px;}
.y1a_c01000{bottom:243.689535px;}
.y19_c01000{bottom:275.765535px;}
.y18_c01000{bottom:307.485135px;}
.y17_c01000{bottom:338.848335px;}
.y16_c01000{bottom:369.855135px;}
.y15_c01000{bottom:401.569785px;}
.y14_c01000{bottom:432.937935px;}
.y13_c01000{bottom:464.652585px;}
.y12_c01000{bottom:496.733535px;}
.ye_c01000{bottom:591.887385px;}
.y11_c01000{bottom:608.999535px;}
.y10_c01000{bottom:637.158105px;}
.y2_c01000{bottom:637.862985px;}
.yf_c01000{bottom:640.006335px;}
.yd_c01000{bottom:644.990985px;}
.yc_c01000{bottom:729.457785px;}
.yb_c01000{bottom:760.113135px;}
.ya_c01000{bottom:792.901935px;}
.y9_c01000{bottom:824.616585px;}
.y8_c01000{bottom:855.979785px;}
.y7_c01000{bottom:886.986585px;}
.y6_c01000{bottom:899.104185px;}
.y5_c01000{bottom:918.706185px;}
.y4_c01000{bottom:1055.920185px;}
.y3_c01000{bottom:1089.778185px;}
.h7_c01000{height:26.226492px;}
.h2_c01000{height:28.911094px;}
.he_c01000{height:33.035449px;}
.h3_c01000{height:34.693313px;}
.hd_c01000{height:37.028666px;}
.hb_c01000{height:38.476582px;}
.h15_c01000{height:40.225712px;}
.ha_c01000{height:42.725364px;}
.h9_c01000{height:56.170332px;}
.h18_c01000{height:57.822188px;}
.h17_c01000{height:69.180117px;}
.h8_c01000{height:71.512031px;}
.h11_c01000{height:73.103972px;}
.h10_c01000{height:74.621444px;}
.h12_c01000{height:76.407891px;}
.h5_c01000{height:76.953164px;}
.h13_c01000{height:77.341816px;}
.h16_c01000{height:78.119315px;}
.h6_c01000{height:79.020563px;}
.h4_c01000{height:79.285078px;}
.h14_c01000{height:80.839688px;}
.hc_c01000{height:84.608075px;}
.hf_c01000{height:87.058125px;}
.h1_c01000{height:1110.000000px;}
.h0_c01000{height:1263.000000px;}
.w1_c01000{width:763.500000px;}
.w0_c01000{width:892.500000px;}
.x0_c01000{left:0.000000px;}
.x2_c01000{left:50.010885px;}
.x1_c01000{left:64.500000px;}
.x27_c01000{left:75.681585px;}
.x5_c01000{left:77.255685px;}
.x63_c01000{left:88.348635px;}
.x11_c01000{left:109.044585px;}
.x28_c01000{left:120.607785px;}
.x1c_c01000{left:129.923685px;}
.x16_c01000{left:131.502735px;}
.x6_c01000{left:143.546085px;}
.x12_c01000{left:153.574785px;}
.x30_c01000{left:162.865935px;}
.x42_c01000{left:164.098485px;}
.x5a_c01000{left:173.934135px;}
.x55_c01000{left:176.374485px;}
.x4b_c01000{left:186.002235px;}
.x1d_c01000{left:187.056585px;}
.x39_c01000{left:188.665335px;}
.x31_c01000{left:198.139635px;}
.x56_c01000{left:207.594135px;}
.x3f_c01000{left:218.637585px;}
.x4c_c01000{left:220.073085px;}
.x64_c01000{left:230.398785px;}
.x29_c01000{left:231.646185px;}
.x7_c01000{left:232.804485px;}
.x3_c01000{left:241.021485px;}
.x1e_c01000{left:242.585685px;}
.x5b_c01000{left:243.941985px;}
.x43_c01000{left:252.158985px;}
.x47_c01000{left:253.747935px;}
.x5e_c01000{left:263.212335px;}
.x8_c01000{left:274.869585px;}
.x5c_c01000{left:277.968285px;}
.x48_c01000{left:285.997185px;}
.x17_c01000{left:287.224785px;}
.x2a_c01000{left:295.862535px;}
.x3a_c01000{left:297.392085px;}
.x52_c01000{left:299.926485px;}
.x9_c01000{left:310.044285px;}
.x18_c01000{left:319.988835px;}
.x1f_c01000{left:329.859135px;}
.x32_c01000{left:331.799535px;}
.x60_c01000{left:342.392535px;}
.x5d_c01000{left:343.917135px;}
.x4d_c01000{left:352.134135px;}
.x40_c01000{left:353.896335px;}
.x33_c01000{left:362.232135px;}
.x20_c01000{left:364.533885px;}
.xa_c01000{left:374.389335px;}
.x3b_c01000{left:375.686235px;}
.x19_c01000{left:386.328735px;}
.x13_c01000{left:398.065185px;}
.x2b_c01000{left:408.093885px;}
.x57_c01000{left:409.118535px;}
.x34_c01000{left:410.336235px;}
.x21_c01000{left:419.473935px;}
.x49_c01000{left:420.899535px;}
.x4e_c01000{left:430.492635px;}
.x62_c01000{left:431.908335px;}
.x14_c01000{left:441.941985px;}
.xb_c01000{left:443.021085px;}
.x35_c01000{left:452.099385px;}
.x2c_c01000{left:453.272535px;}
.xc_c01000{left:464.014035px;}
.x3c_c01000{left:475.092135px;}
.x2d_c01000{left:485.244585px;}
.x1a_c01000{left:486.477135px;}
.x5f_c01000{left:497.292885px;}
.x4a_c01000{left:507.514635px;}
.x44_c01000{left:508.925385px;}
.x22_c01000{left:518.884785px;}
.xd_c01000{left:529.982685px;}
.x61_c01000{left:531.027135px;}
.x45_c01000{left:540.521235px;}
.x23_c01000{left:552.430935px;}
.x3d_c01000{left:563.489235px;}
.x58_c01000{left:573.235785px;}
.xe_c01000{left:574.799985px;}
.x36_c01000{left:575.809785px;}
.x2e_c01000{left:585.462285px;}
.x3e_c01000{left:595.891935px;}
.x53_c01000{left:597.218535px;}
.x24_c01000{left:606.455235px;}
.xf_c01000{left:608.717385px;}
.x37_c01000{left:617.454135px;}
.x46_c01000{left:618.736185px;}
.x51_c01000{left:630.046935px;}
.x4f_c01000{left:639.100485px;}
.x25_c01000{left:640.273635px;}
.x15_c01000{left:650.970585px;}
.x1b_c01000{left:662.464485px;}
.x4_c01000{left:673.933635px;}
.x59_c01000{left:685.729485px;}
.x2f_c01000{left:696.782835px;}
.x41_c01000{left:700.084485px;}
.x10_c01000{left:703.584135px;}
.x65_c01000{left:706.202685px;}
.x50_c01000{left:707.479785px;}
.x54_c01000{left:717.741135px;}
.x38_c01000{left:718.884585px;}
.x26_c01000{left:730.254735px;}
@media print{
.v0_c01000{vertical-align:0.000000pt;}
.ls8_c01000{letter-spacing:-2.439360pt;}
.ls5_c01000{letter-spacing:-1.777248pt;}
.ls16_c01000{letter-spacing:-1.686643pt;}
.ls7_c01000{letter-spacing:-1.675526pt;}
.ls14_c01000{letter-spacing:-1.275126pt;}
.ls18_c01000{letter-spacing:-0.418176pt;}
.lsf_c01000{letter-spacing:-0.355450pt;}
.lse_c01000{letter-spacing:-0.313632pt;}
.ls1_c01000{letter-spacing:0.000000pt;}
.ls2_c01000{letter-spacing:0.193882pt;}
.ls10_c01000{letter-spacing:0.319088pt;}
.ls0_c01000{letter-spacing:2.892384pt;}
.ls13_c01000{letter-spacing:3.038746pt;}
.ls17_c01000{letter-spacing:3.132800pt;}
.ls6_c01000{letter-spacing:3.238400pt;}
.ls4_c01000{letter-spacing:3.296621pt;}
.lsd_c01000{letter-spacing:3.379209pt;}
.ls3_c01000{letter-spacing:3.484800pt;}
.ls11_c01000{letter-spacing:3.502400pt;}
.ls15_c01000{letter-spacing:3.537609pt;}
.ls12_c01000{letter-spacing:3.660800pt;}
.lsa_c01000{letter-spacing:3.731209pt;}
.lsc_c01000{letter-spacing:3.942400pt;}
.lsb_c01000{letter-spacing:49.420976pt;}
.ls9_c01000{letter-spacing:57.024176pt;}
.ws0_c01000{word-spacing:0.000000pt;}
._0_c01000{margin-left:-10.539584pt;}
._1_c01000{width:19.723968pt;}
.fs4_c01000{font-size:22.352000pt;}
.fs0_c01000{font-size:24.640000pt;}
.fs1_c01000{font-size:29.568000pt;}
.fsb_c01000{font-size:29.920000pt;}
.fs8_c01000{font-size:34.848000pt;}
.fs12_c01000{font-size:36.432176pt;}
.fs6_c01000{font-size:47.872176pt;}
.fs15_c01000{font-size:49.280000pt;}
.fsa_c01000{font-size:49.420976pt;}
.fs7_c01000{font-size:57.024176pt;}
.fse_c01000{font-size:62.304176pt;}
.fs14_c01000{font-size:62.656000pt;}
.fs5_c01000{font-size:64.768000pt;}
.fsf_c01000{font-size:65.120000pt;}
.fsd_c01000{font-size:67.584176pt;}
.fs3_c01000{font-size:69.696000pt;}
.fs10_c01000{font-size:70.048000pt;}
.fs13_c01000{font-size:70.752176pt;}
.fs2_c01000{font-size:71.808000pt;}
.fs11_c01000{font-size:73.216000pt;}
.fs9_c01000{font-size:74.624176pt;}
.fsc_c01000{font-size:78.848000pt;}
.y0_c01000{bottom:0.000000pt;}
.y1_c01000{bottom:68.000000pt;}
.y1e_c01000{bottom:98.446520pt;}
.y1d_c01000{bottom:128.859320pt;}
.y1c_c01000{bottom:159.588920pt;}
.y1b_c01000{bottom:189.046920pt;}
.y1a_c01000{bottom:216.612920pt;}
.y19_c01000{bottom:245.124920pt;}
.y18_c01000{bottom:273.320120pt;}
.y17_c01000{bottom:301.198520pt;}
.y16_c01000{bottom:328.760120pt;}
.y15_c01000{bottom:356.950920pt;}
.y14_c01000{bottom:384.833720pt;}
.y13_c01000{bottom:413.024520pt;}
.y12_c01000{bottom:441.540920pt;}
.ye_c01000{bottom:526.122120pt;}
.y11_c01000{bottom:541.332920pt;}
.y10_c01000{bottom:566.362760pt;}
.y2_c01000{bottom:566.989320pt;}
.yf_c01000{bottom:568.894520pt;}
.yd_c01000{bottom:573.325320pt;}
.yc_c01000{bottom:648.406920pt;}
.yb_c01000{bottom:675.656120pt;}
.ya_c01000{bottom:704.801720pt;}
.y9_c01000{bottom:732.992520pt;}
.y8_c01000{bottom:760.870920pt;}
.y7_c01000{bottom:788.432520pt;}
.y6_c01000{bottom:799.203720pt;}
.y5_c01000{bottom:816.627720pt;}
.y4_c01000{bottom:938.595720pt;}
.y3_c01000{bottom:968.691720pt;}
.h7_c01000{height:23.312438pt;}
.h2_c01000{height:25.698750pt;}
.he_c01000{height:29.364844pt;}
.h3_c01000{height:30.838500pt;}
.hd_c01000{height:32.914370pt;}
.hb_c01000{height:34.201406pt;}
.h15_c01000{height:35.756188pt;}
.ha_c01000{height:37.978101pt;}
.h9_c01000{height:49.929184pt;}
.h18_c01000{height:51.397500pt;}
.h17_c01000{height:61.493438pt;}
.h8_c01000{height:63.566250pt;}
.h11_c01000{height:64.981309pt;}
.h10_c01000{height:66.330173pt;}
.h12_c01000{height:67.918125pt;}
.h5_c01000{height:68.402813pt;}
.h13_c01000{height:68.748281pt;}
.h16_c01000{height:69.439391pt;}
.h6_c01000{height:70.240500pt;}
.h4_c01000{height:70.475625pt;}
.h14_c01000{height:71.857500pt;}
.hc_c01000{height:75.207177pt;}
.hf_c01000{height:77.385000pt;}
.h1_c01000{height:986.666667pt;}
.h0_c01000{height:1122.666667pt;}
.w1_c01000{width:678.666667pt;}
.w0_c01000{width:793.333333pt;}
.x0_c01000{left:0.000000pt;}
.x2_c01000{left:44.454120pt;}
.x1_c01000{left:57.333333pt;}
.x27_c01000{left:67.272520pt;}
.x5_c01000{left:68.671720pt;}
.x63_c01000{left:78.532120pt;}
.x11_c01000{left:96.928520pt;}
.x28_c01000{left:107.206920pt;}
.x1c_c01000{left:115.487720pt;}
.x16_c01000{left:116.891320pt;}
.x6_c01000{left:127.596520pt;}
.x12_c01000{left:136.510920pt;}
.x30_c01000{left:144.769720pt;}
.x42_c01000{left:145.865320pt;}
.x5a_c01000{left:154.608120pt;}
.x55_c01000{left:156.777320pt;}
.x4b_c01000{left:165.335320pt;}
.x1d_c01000{left:166.272520pt;}
.x39_c01000{left:167.702520pt;}
.x31_c01000{left:176.124120pt;}
.x56_c01000{left:184.528120pt;}
.x3f_c01000{left:194.344520pt;}
.x4c_c01000{left:195.620520pt;}
.x64_c01000{left:204.798920pt;}
.x29_c01000{left:205.907720pt;}
.x7_c01000{left:206.937320pt;}
.x3_c01000{left:214.241320pt;}
.x1e_c01000{left:215.631720pt;}
.x5b_c01000{left:216.837320pt;}
.x43_c01000{left:224.141320pt;}
.x47_c01000{left:225.553720pt;}
.x5e_c01000{left:233.966520pt;}
.x8_c01000{left:244.328520pt;}
.x5c_c01000{left:247.082920pt;}
.x48_c01000{left:254.219720pt;}
.x17_c01000{left:255.310920pt;}
.x2a_c01000{left:262.988920pt;}
.x3a_c01000{left:264.348520pt;}
.x52_c01000{left:266.601320pt;}
.x9_c01000{left:275.594920pt;}
.x18_c01000{left:284.434520pt;}
.x1f_c01000{left:293.208120pt;}
.x32_c01000{left:294.932920pt;}
.x60_c01000{left:304.348920pt;}
.x5d_c01000{left:305.704120pt;}
.x4d_c01000{left:313.008120pt;}
.x40_c01000{left:314.574520pt;}
.x33_c01000{left:321.984120pt;}
.x20_c01000{left:324.030120pt;}
.xa_c01000{left:332.790520pt;}
.x3b_c01000{left:333.943320pt;}
.x19_c01000{left:343.403320pt;}
.x13_c01000{left:353.835720pt;}
.x2b_c01000{left:362.750120pt;}
.x57_c01000{left:363.660920pt;}
.x34_c01000{left:364.743320pt;}
.x21_c01000{left:372.865720pt;}
.x49_c01000{left:374.132920pt;}
.x4e_c01000{left:382.660120pt;}
.x62_c01000{left:383.918520pt;}
.x14_c01000{left:392.837320pt;}
.xb_c01000{left:393.796520pt;}
.x35_c01000{left:401.866120pt;}
.x2c_c01000{left:402.908920pt;}
.xc_c01000{left:412.456920pt;}
.x3c_c01000{left:422.304120pt;}
.x2d_c01000{left:431.328520pt;}
.x1a_c01000{left:432.424120pt;}
.x5f_c01000{left:442.038120pt;}
.x4a_c01000{left:451.124120pt;}
.x44_c01000{left:452.378120pt;}
.x22_c01000{left:461.230920pt;}
.xd_c01000{left:471.095720pt;}
.x61_c01000{left:472.024120pt;}
.x45_c01000{left:480.463320pt;}
.x23_c01000{left:491.049720pt;}
.x3d_c01000{left:500.879320pt;}
.x58_c01000{left:509.542920pt;}
.xe_c01000{left:510.933320pt;}
.x36_c01000{left:511.830920pt;}
.x2e_c01000{left:520.410920pt;}
.x3e_c01000{left:529.681720pt;}
.x53_c01000{left:530.860920pt;}
.x24_c01000{left:539.071320pt;}
.xf_c01000{left:541.082120pt;}
.x37_c01000{left:548.848120pt;}
.x46_c01000{left:549.987720pt;}
.x51_c01000{left:560.041720pt;}
.x4f_c01000{left:568.089320pt;}
.x25_c01000{left:569.132120pt;}
.x15_c01000{left:578.640520pt;}
.x1b_c01000{left:588.857320pt;}
.x4_c01000{left:599.052120pt;}
.x59_c01000{left:609.537320pt;}
.x2f_c01000{left:619.362520pt;}
.x41_c01000{left:622.297320pt;}
.x10_c01000{left:625.408120pt;}
.x65_c01000{left:627.735720pt;}
.x50_c01000{left:628.870920pt;}
.x54_c01000{left:637.992120pt;}
.x38_c01000{left:639.008520pt;}
.x26_c01000{left:649.115320pt;}
}





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

.ir_c01001:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01001{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01001;src:url('chunks/assets/font_fddcc3ca8a8368ca428c5a70.woff2')format("woff");}.ff1_c01001{font-family:ff1_c01001;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01001;src:url('chunks/assets/font_8784b48df3a791089805eb75.woff2')format("woff");}.ff2_c01001{font-family:ff2_c01001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01001;src:url('chunks/assets/font_ae46d552ec47c2dd6369aa70.woff2')format("woff");}.ff3_c01001{font-family:ff3_c01001;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01001;src:url('chunks/assets/font_349f213186177bdb20754107.woff2')format("woff");}.ff4_c01001{font-family:ff4_c01001;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5f_c01001{transform:matrix(0.017858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017858,0.000000,0.000000,0.250000,0,0);}
.m84_c01001{transform:matrix(0.060976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060976,0.000000,0.000000,0.250000,0,0);}
.m66_c01001{transform:matrix(0.079070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.079070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.079070,0.000000,0.000000,0.250000,0,0);}
.m67_c01001{transform:matrix(0.109012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109012,0.000000,0.000000,0.250000,0,0);}
.m14_c01001{transform:matrix(0.127375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127375,0.000000,0.000000,0.250000,0,0);}
.m61_c01001{transform:matrix(0.133721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133721,0.000000,0.000000,0.250000,0,0);}
.m60_c01001{transform:matrix(0.138392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138392,0.000000,0.000000,0.250000,0,0);}
.m68_c01001{transform:matrix(0.139535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139535,0.000000,0.000000,0.250000,0,0);}
.m83_c01001{transform:matrix(0.184451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184451,0.000000,0.000000,0.250000,0,0);}
.m5e_c01001{transform:matrix(0.184524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184524,0.000000,0.000000,0.250000,0,0);}
.m96_c01001{transform:matrix(0.189024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189024,0.000000,0.000000,0.250000,0,0);}
.m2b_c01001{transform:matrix(0.233978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233978,0.000000,0.000000,0.250000,0,0);}
.m0_c01001{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m81_c01001{transform:matrix(0.254323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254323,0.000000,0.000000,0.250000,0,0);}
.ma5_c01001{transform:matrix(0.255133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255133,0.000000,0.000000,0.250000,0,0);}
.m56_c01001{transform:matrix(0.258563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258563,0.000000,0.000000,0.250000,0,0);}
.mb_c01001{transform:matrix(0.265381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265381,0.000000,0.000000,0.250000,0,0);}
.m5d_c01001{transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);}
.m43_c01001{transform:matrix(0.268311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268311,0.000000,0.000000,0.250000,0,0);}
.m13_c01001{transform:matrix(0.269193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269193,0.000000,0.000000,0.250000,0,0);}
.m91_c01001{transform:matrix(0.269413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269413,0.000000,0.000000,0.250000,0,0);}
.m87_c01001{transform:matrix(0.270108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270108,0.000000,0.000000,0.250000,0,0);}
.mc_c01001{transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);}
.m69_c01001{transform:matrix(0.270538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270538,0.000000,0.000000,0.250000,0,0);}
.m2c_c01001{transform:matrix(0.271546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271546,0.000000,0.000000,0.250000,0,0);}
.m2f_c01001{transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);}
.m77_c01001{transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);}
.m2_c01001{transform:matrix(0.274307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274307,0.000000,0.000000,0.250000,0,0);}
.m31_c01001{transform:matrix(0.275368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275368,0.000000,0.000000,0.250000,0,0);}
.m5a_c01001{transform:matrix(0.276272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276272,0.000000,0.000000,0.250000,0,0);}
.m5b_c01001{transform:matrix(0.276480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276480,0.000000,0.000000,0.250000,0,0);}
.m21_c01001{transform:matrix(0.276672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276672,0.000000,0.000000,0.250000,0,0);}
.m1b_c01001{transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);}
.mad_c01001{transform:matrix(0.278463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278463,0.000000,0.000000,0.250000,0,0);}
.mf_c01001{transform:matrix(0.280800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280800,0.000000,0.000000,0.250000,0,0);}
.m3f_c01001{transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);}
.m16_c01001{transform:matrix(0.281003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281003,0.000000,0.000000,0.250000,0,0);}
.ma0_c01001{transform:matrix(0.282308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282308,0.000000,0.000000,0.250000,0,0);}
.m73_c01001{transform:matrix(0.282883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282883,0.000000,0.000000,0.250000,0,0);}
.m1e_c01001{transform:matrix(0.283010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283010,0.000000,0.000000,0.250000,0,0);}
.m23_c01001{transform:matrix(0.283967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283967,0.000000,0.000000,0.250000,0,0);}
.m74_c01001{transform:matrix(0.284293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284293,0.000000,0.000000,0.250000,0,0);}
.m97_c01001{transform:matrix(0.284543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284543,0.000000,0.000000,0.250000,0,0);}
.ma8_c01001{transform:matrix(0.284574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284574,0.000000,0.000000,0.250000,0,0);}
.m15_c01001{transform:matrix(0.284785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284785,0.000000,0.000000,0.250000,0,0);}
.m92_c01001{transform:matrix(0.285639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285639,0.000000,0.000000,0.250000,0,0);}
.m4c_c01001{transform:matrix(0.285652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285652,0.000000,0.000000,0.250000,0,0);}
.m46_c01001{transform:matrix(0.285764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285764,0.000000,0.000000,0.250000,0,0);}
.m4_c01001{transform:matrix(0.286620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286620,0.000000,0.000000,0.250000,0,0);}
.m80_c01001{transform:matrix(0.286824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286824,0.000000,0.000000,0.250000,0,0);}
.m6b_c01001{transform:matrix(0.287374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287374,0.000000,0.000000,0.250000,0,0);}
.mb0_c01001{transform:matrix(0.288089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288089,0.000000,0.000000,0.250000,0,0);}
.m30_c01001{transform:matrix(0.288107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288107,0.000000,0.000000,0.250000,0,0);}
.m6_c01001{transform:matrix(0.288736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288736,0.000000,0.000000,0.250000,0,0);}
.mab_c01001{transform:matrix(0.288781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288781,0.000000,0.000000,0.250000,0,0);}
.m41_c01001{transform:matrix(0.289082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289082,0.000000,0.000000,0.250000,0,0);}
.m86_c01001{transform:matrix(0.289158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289158,0.000000,0.000000,0.250000,0,0);}
.m5c_c01001{transform:matrix(0.289200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289200,0.000000,0.000000,0.250000,0,0);}
.m34_c01001{transform:matrix(0.290493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290493,0.000000,0.000000,0.250000,0,0);}
.m78_c01001{transform:matrix(0.291495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291495,0.000000,0.000000,0.250000,0,0);}
.m62_c01001{transform:matrix(0.291629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291629,0.000000,0.000000,0.250000,0,0);}
.m82_c01001{transform:matrix(0.291652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291652,0.000000,0.000000,0.250000,0,0);}
.m53_c01001{transform:matrix(0.292269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292269,0.000000,0.000000,0.250000,0,0);}
.ma1_c01001{transform:matrix(0.294895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294895,0.000000,0.000000,0.250000,0,0);}
.m93_c01001{transform:matrix(0.294958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294958,0.000000,0.000000,0.250000,0,0);}
.m35_c01001{transform:matrix(0.295375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295375,0.000000,0.000000,0.250000,0,0);}
.m94_c01001{transform:matrix(0.296044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296044,0.000000,0.000000,0.250000,0,0);}
.ma7_c01001{transform:matrix(0.296335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296335,0.000000,0.000000,0.250000,0,0);}
.m4a_c01001{transform:matrix(0.296995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296995,0.000000,0.000000,0.250000,0,0);}
.m18_c01001{transform:matrix(0.297059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297059,0.000000,0.000000,0.250000,0,0);}
.me_c01001{transform:matrix(0.297080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297080,0.000000,0.000000,0.250000,0,0);}
.m40_c01001{transform:matrix(0.297370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297370,0.000000,0.000000,0.250000,0,0);}
.m57_c01001{transform:matrix(0.297686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297686,0.000000,0.000000,0.250000,0,0);}
.m72_c01001{transform:matrix(0.297812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297812,0.000000,0.000000,0.250000,0,0);}
.m79_c01001{transform:matrix(0.298199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298199,0.000000,0.000000,0.250000,0,0);}
.m2e_c01001{transform:matrix(0.298270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298270,0.000000,0.000000,0.250000,0,0);}
.m1_c01001{transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);}
.m95_c01001{transform:matrix(0.299095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299095,0.000000,0.000000,0.250000,0,0);}
.m65_c01001{transform:matrix(0.299390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299390,0.000000,0.000000,0.250000,0,0);}
.m47_c01001{transform:matrix(0.299474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299474,0.000000,0.000000,0.250000,0,0);}
.m42_c01001{transform:matrix(0.300041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300041,0.000000,0.000000,0.250000,0,0);}
.m6d_c01001{transform:matrix(0.300730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300730,0.000000,0.000000,0.250000,0,0);}
.ma2_c01001{transform:matrix(0.300828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300828,0.000000,0.000000,0.250000,0,0);}
.m4d_c01001{transform:matrix(0.302392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302392,0.000000,0.000000,0.250000,0,0);}
.m98_c01001{transform:matrix(0.303205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303205,0.000000,0.000000,0.250000,0,0);}
.m70_c01001{transform:matrix(0.303612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303612,0.000000,0.000000,0.250000,0,0);}
.m54_c01001{transform:matrix(0.303732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303732,0.000000,0.000000,0.250000,0,0);}
.m4e_c01001{transform:matrix(0.305050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305050,0.000000,0.000000,0.250000,0,0);}
.m3_c01001{transform:matrix(0.305055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305055,0.000000,0.000000,0.250000,0,0);}
.m39_c01001{transform:matrix(0.305633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305633,0.000000,0.000000,0.250000,0,0);}
.m63_c01001{transform:matrix(0.306031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306031,0.000000,0.000000,0.250000,0,0);}
.ma4_c01001{transform:matrix(0.306453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306453,0.000000,0.000000,0.250000,0,0);}
.m1d_c01001{transform:matrix(0.306824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306824,0.000000,0.000000,0.250000,0,0);}
.m8a_c01001{transform:matrix(0.307300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307300,0.000000,0.000000,0.250000,0,0);}
.m85_c01001{transform:matrix(0.307633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307633,0.000000,0.000000,0.250000,0,0);}
.m7b_c01001{transform:matrix(0.308778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308778,0.000000,0.000000,0.250000,0,0);}
.m2a_c01001{transform:matrix(0.309319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309319,0.000000,0.000000,0.250000,0,0);}
.m4f_c01001{transform:matrix(0.309761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309761,0.000000,0.000000,0.250000,0,0);}
.m59_c01001{transform:matrix(0.309939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309939,0.000000,0.000000,0.250000,0,0);}
.m12_c01001{transform:matrix(0.310929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310929,0.000000,0.000000,0.250000,0,0);}
.m25_c01001{transform:matrix(0.311160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311160,0.000000,0.000000,0.250000,0,0);}
.m99_c01001{transform:matrix(0.311985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311985,0.000000,0.000000,0.250000,0,0);}
.m50_c01001{transform:matrix(0.312249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312249,0.000000,0.000000,0.250000,0,0);}
.m32_c01001{transform:matrix(0.313003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313003,0.000000,0.000000,0.250000,0,0);}
.md_c01001{transform:matrix(0.313058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313058,0.000000,0.000000,0.250000,0,0);}
.ma3_c01001{transform:matrix(0.313151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313151,0.000000,0.000000,0.250000,0,0);}
.m88_c01001{transform:matrix(0.314009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314009,0.000000,0.000000,0.250000,0,0);}
.m9a_c01001{transform:matrix(0.314137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314137,0.000000,0.000000,0.250000,0,0);}
.m90_c01001{transform:matrix(0.314631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314631,0.000000,0.000000,0.250000,0,0);}
.m9e_c01001{transform:matrix(0.315305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315305,0.000000,0.000000,0.250000,0,0);}
.m71_c01001{transform:matrix(0.315832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315832,0.000000,0.000000,0.250000,0,0);}
.m3b_c01001{transform:matrix(0.316049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316049,0.000000,0.000000,0.250000,0,0);}
.m6f_c01001{transform:matrix(0.316292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316292,0.000000,0.000000,0.250000,0,0);}
.m2d_c01001{transform:matrix(0.316472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316472,0.000000,0.000000,0.250000,0,0);}
.m8f_c01001{transform:matrix(0.316713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316713,0.000000,0.000000,0.250000,0,0);}
.m4b_c01001{transform:matrix(0.317052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317052,0.000000,0.000000,0.250000,0,0);}
.m49_c01001{transform:matrix(0.317951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317951,0.000000,0.000000,0.250000,0,0);}
.m7c_c01001{transform:matrix(0.318355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318355,0.000000,0.000000,0.250000,0,0);}
.m36_c01001{transform:matrix(0.319787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319787,0.000000,0.000000,0.250000,0,0);}
.m7_c01001{transform:matrix(0.319887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319887,0.000000,0.000000,0.250000,0,0);}
.m9b_c01001{transform:matrix(0.320974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320974,0.000000,0.000000,0.250000,0,0);}
.m3c_c01001{transform:matrix(0.321608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321608,0.000000,0.000000,0.250000,0,0);}
.m58_c01001{transform:matrix(0.321737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321737,0.000000,0.000000,0.250000,0,0);}
.m33_c01001{transform:matrix(0.322455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322455,0.000000,0.000000,0.250000,0,0);}
.m6c_c01001{transform:matrix(0.323350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323350,0.000000,0.000000,0.250000,0,0);}
.m8_c01001{transform:matrix(0.324205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324205,0.000000,0.000000,0.250000,0,0);}
.m3e_c01001{transform:matrix(0.325516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325516,0.000000,0.000000,0.250000,0,0);}
.m19_c01001{transform:matrix(0.326277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326277,0.000000,0.000000,0.250000,0,0);}
.m38_c01001{transform:matrix(0.326352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326352,0.000000,0.000000,0.250000,0,0);}
.m20_c01001{transform:matrix(0.327072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327072,0.000000,0.000000,0.250000,0,0);}
.m6e_c01001{transform:matrix(0.327542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327542,0.000000,0.000000,0.250000,0,0);}
.ma6_c01001{transform:matrix(0.328436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328436,0.000000,0.000000,0.250000,0,0);}
.m6a_c01001{transform:matrix(0.329047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329047,0.000000,0.000000,0.250000,0,0);}
.mac_c01001{transform:matrix(0.329051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329051,0.000000,0.000000,0.250000,0,0);}
.m7e_c01001{transform:matrix(0.330813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330813,0.000000,0.000000,0.250000,0,0);}
.maf_c01001{transform:matrix(0.331412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331412,0.000000,0.000000,0.250000,0,0);}
.m7a_c01001{transform:matrix(0.331522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331522,0.000000,0.000000,0.250000,0,0);}
.m17_c01001{transform:matrix(0.331528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331528,0.000000,0.000000,0.250000,0,0);}
.mae_c01001{transform:matrix(0.331848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331848,0.000000,0.000000,0.250000,0,0);}
.m22_c01001{transform:matrix(0.332473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332473,0.000000,0.000000,0.250000,0,0);}
.m27_c01001{transform:matrix(0.333873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333873,0.000000,0.000000,0.250000,0,0);}
.m28_c01001{transform:matrix(0.334398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334398,0.000000,0.000000,0.250000,0,0);}
.m24_c01001{transform:matrix(0.334591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334591,0.000000,0.000000,0.250000,0,0);}
.m9f_c01001{transform:matrix(0.335295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335295,0.000000,0.000000,0.250000,0,0);}
.ma9_c01001{transform:matrix(0.336209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336209,0.000000,0.000000,0.250000,0,0);}
.m45_c01001{transform:matrix(0.336281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336281,0.000000,0.000000,0.250000,0,0);}
.ma_c01001{transform:matrix(0.337124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337124,0.000000,0.000000,0.250000,0,0);}
.m1a_c01001{transform:matrix(0.337637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337637,0.000000,0.000000,0.250000,0,0);}
.m76_c01001{transform:matrix(0.339052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339052,0.000000,0.000000,0.250000,0,0);}
.m10_c01001{transform:matrix(0.339236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339236,0.000000,0.000000,0.250000,0,0);}
.m48_c01001{transform:matrix(0.339668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339668,0.000000,0.000000,0.250000,0,0);}
.m9_c01001{transform:matrix(0.339850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339850,0.000000,0.000000,0.250000,0,0);}
.m9d_c01001{transform:matrix(0.339876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339876,0.000000,0.000000,0.250000,0,0);}
.m55_c01001{transform:matrix(0.340517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340517,0.000000,0.000000,0.250000,0,0);}
.m26_c01001{transform:matrix(0.341006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341006,0.000000,0.000000,0.250000,0,0);}
.m1f_c01001{transform:matrix(0.341726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341726,0.000000,0.000000,0.250000,0,0);}
.m44_c01001{transform:matrix(0.344684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344684,0.000000,0.000000,0.250000,0,0);}
.m52_c01001{transform:matrix(0.344715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344715,0.000000,0.000000,0.250000,0,0);}
.m51_c01001{transform:matrix(0.345553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345553,0.000000,0.000000,0.250000,0,0);}
.m64_c01001{transform:matrix(0.345734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345734,0.000000,0.000000,0.250000,0,0);}
.m11_c01001{transform:matrix(0.346907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346907,0.000000,0.000000,0.250000,0,0);}
.m7f_c01001{transform:matrix(0.351305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351305,0.000000,0.000000,0.250000,0,0);}
.m3a_c01001{transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);}
.maa_c01001{transform:matrix(0.352030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352030,0.000000,0.000000,0.250000,0,0);}
.m37_c01001{transform:matrix(0.357996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357996,0.000000,0.000000,0.250000,0,0);}
.m5_c01001{transform:matrix(0.359199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359199,0.000000,0.000000,0.250000,0,0);}
.m7d_c01001{transform:matrix(0.375403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375403,0.000000,0.000000,0.250000,0,0);}
.m1c_c01001{transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);}
.m3d_c01001{transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);}
.m9c_c01001{transform:matrix(0.404996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404996,0.000000,0.000000,0.250000,0,0);}
.m29_c01001{transform:matrix(0.405805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405805,0.000000,0.000000,0.250000,0,0);}
.m75_c01001{transform:matrix(0.439111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439111,0.000000,0.000000,0.250000,0,0);}
.m8d_c01001{transform:matrix(0.454607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454607,0.000000,0.000000,0.250000,0,0);}
.m89_c01001{transform:matrix(0.742862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.742862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.742862,0.000000,0.000000,0.250000,0,0);}
.m8e_c01001{transform:matrix(0.779671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779671,0.000000,0.000000,0.250000,0,0);}
.m8b_c01001{transform:matrix(1.101583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.101583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.101583,0.000000,0.000000,0.250000,0,0);}
.m8c_c01001{transform:matrix(1.196789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.196789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.196789,0.000000,0.000000,0.250000,0,0);}
.v0_c01001{vertical-align:0.000000px;}
.ls4_c01001{letter-spacing:-2.647267px;}
.ls3_c01001{letter-spacing:-2.252250px;}
.lsf_c01001{letter-spacing:-0.393308px;}
.ls6_c01001{letter-spacing:-0.325236px;}
.ls0_c01001{letter-spacing:0.000000px;}
.ls8_c01001{letter-spacing:0.605090px;}
.ls11_c01001{letter-spacing:0.693000px;}
.ls10_c01001{letter-spacing:0.732610px;}
.ls7_c01001{letter-spacing:1.910700px;}
.ls1_c01001{letter-spacing:2.581286px;}
.ls12_c01001{letter-spacing:2.813667px;}
.ls9_c01001{letter-spacing:3.316500px;}
.ls5_c01001{letter-spacing:3.539774px;}
.lsd_c01001{letter-spacing:3.679958px;}
.ls2_c01001{letter-spacing:3.781810px;}
.lsc_c01001{letter-spacing:3.801610px;}
.lse_c01001{letter-spacing:58.449798px;}
.lsa_c01001{letter-spacing:59.875398px;}
.lsb_c01001{letter-spacing:61.300998px;}
.sc__c01001{text-shadow:none;}
.sc0_c01001{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01001{-webkit-text-stroke:0px transparent;}
.sc0_c01001{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01001{word-spacing:-18.909050px;}
.ws1_c01001{word-spacing:-0.908133px;}
.ws2_c01001{word-spacing:0.000000px;}
._0_c01001{width:4.160288px;}
._2_c01001{width:12.707541px;}
._3_c01001{width:20.152440px;}
._5_c01001{width:21.898800px;}
._1_c01001{width:55.221408px;}
._4_c01001{width:100.801492px;}
.fc0_c01001{color:transparent;}
.fse_c01001{font-size:13.860000px;}
.fsd_c01001{font-size:14.652198px;}
.fs5_c01001{font-size:17.028000px;}
.fs2_c01001{font-size:22.176000px;}
.fs0_c01001{font-size:32.472000px;}
.fs6_c01001{font-size:38.214000px;}
.fsf_c01001{font-size:39.204000px;}
.fs7_c01001{font-size:48.114000px;}
.fsc_c01001{font-size:58.449798px;}
.fs9_c01001{font-size:59.875398px;}
.fsa_c01001{font-size:61.300998px;}
.fs4_c01001{font-size:64.350000px;}
.fs8_c01001{font-size:66.330000px;}
.fs10_c01001{font-size:74.844000px;}
.fs3_c01001{font-size:75.636198px;}
.fsb_c01001{font-size:76.032198px;}
.fs1_c01001{font-size:88.704000px;}
.y0_c01001{bottom:0.000000px;}
.y1f_c01001{bottom:5.614335px;}
.y2_c01001{bottom:31.987935px;}
.y1_c01001{bottom:76.500000px;}
.y1e_c01001{bottom:132.136335px;}
.y1d_c01001{bottom:164.563785px;}
.y1c_c01001{bottom:199.134585px;}
.y1b_c01001{bottom:228.720735px;}
.y1a_c01001{bottom:260.078985px;}
.y19_c01001{bottom:292.516335px;}
.y18_c01001{bottom:320.671935px;}
.y17_c01001{bottom:323.523135px;}
.y16_c01001{bottom:386.605935px;}
.y15_c01001{bottom:418.681935px;}
.y14_c01001{bottom:449.688735px;}
.y13_c01001{bottom:481.051935px;}
.y12_c01001{bottom:513.479385px;}
.y11_c01001{bottom:545.560335px;}
.y10_c01001{bottom:609.355935px;}
.yf_c01001{bottom:641.070585px;}
.ye_c01001{bottom:672.433785px;}
.yd_c01001{bottom:704.158335px;}
.yc_c01001{bottom:720.909135px;}
.yb_c01001{bottom:734.803785px;}
.ya_c01001{bottom:750.490335px;}
.y9_c01001{bottom:766.884735px;}
.y8_c01001{bottom:798.247935px;}
.y7_c01001{bottom:830.323935px;}
.y6_c01001{bottom:893.758185px;}
.y5_c01001{bottom:926.190585px;}
.y4_c01001{bottom:951.494985px;}
.y3_c01001{bottom:1062.335385px;}
.hf_c01001{height:13.968281px;}
.he_c01001{height:14.766668px;}
.h7_c01001{height:17.759672px;}
.h4_c01001{height:23.128875px;}
.h2_c01001{height:33.867281px;}
.h10_c01001{height:38.476582px;}
.hd_c01001{height:38.927565px;}
.h8_c01001{height:39.856008px;}
.ha_c01001{height:39.877015px;}
.hb_c01001{height:40.826465px;}
.h6_c01001{height:63.156006px;}
.h9_c01001{height:69.180117px;}
.h11_c01001{height:73.455293px;}
.h5_c01001{height:74.232792px;}
.hc_c01001{height:74.621444px;}
.h3_c01001{height:87.058125px;}
.h1_c01001{height:1110.000000px;}
.h0_c01001{height:1263.000000px;}
.w1_c01001{width:763.500000px;}
.w0_c01001{width:892.500000px;}
.x0_c01001{left:0.000000px;}
.x2_c01001{left:55.356885px;}
.x1_c01001{left:64.500000px;}
.x1a_c01001{left:73.746135px;}
.x4_c01001{left:74.795535px;}
.x36_c01001{left:106.525035px;}
.x10_c01001{left:118.310985px;}
.x13_c01001{left:128.047635px;}
.x30_c01001{left:129.354435px;}
.x37_c01001{left:138.823785px;}
.x43_c01001{left:140.670135px;}
.x72_c01001{left:151.129485px;}
.x22_c01001{left:152.208585px;}
.x11_c01001{left:161.821485px;}
.x5_c01001{left:162.895635px;}
.x5f_c01001{left:171.652185px;}
.x23_c01001{left:173.171835px;}
.x2b_c01001{left:175.587435px;}
.x1b_c01001{left:184.081635px;}
.x56_c01001{left:185.586435px;}
.x2f_c01001{left:205.406235px;}
.x24_c01001{left:206.688285px;}
.x57_c01001{left:217.216935px;}
.x6_c01001{left:218.300985px;}
.x71_c01001{left:219.677085px;}
.x14_c01001{left:228.765285px;}
.x31_c01001{left:239.516685px;}
.x6e_c01001{left:249.698835px;}
.x2c_c01001{left:250.916535px;}
.x12_c01001{left:262.494585px;}
.x3e_c01001{left:264.479535px;}
.x25_c01001{left:274.018185px;}
.x32_c01001{left:284.660685px;}
.x15_c01001{left:294.397335px;}
.x1c_c01001{left:295.827885px;}
.x58_c01001{left:296.906985px;}
.x4c_c01001{left:305.653635px;}
.x7_c01001{left:307.227735px;}
.x59_c01001{left:317.375235px;}
.x48_c01001{left:318.954285px;}
.x1d_c01001{left:328.918635px;}
.x65_c01001{left:337.675185px;}
.x44_c01001{left:339.605685px;}
.x66_c01001{left:348.287985px;}
.x4d_c01001{left:349.857135px;}
.x2d_c01001{left:352.148985px;}
.x67_c01001{left:355.163535px;}
.x1e_c01001{left:361.573785px;}
.x68_c01001{left:369.429435px;}
.x45_c01001{left:371.909385px;}
.x8_c01001{left:373.132035px;}
.x4e_c01001{left:374.448735px;}
.x69_c01001{left:382.106385px;}
.x33_c01001{left:384.838785px;}
.x6a_c01001{left:394.421985px;}
.x38_c01001{left:396.307935px;}
.x60_c01001{left:406.638585px;}
.x3f_c01001{left:407.707785px;}
.x6b_c01001{left:411.039135px;}
.x5a_c01001{left:416.800935px;}
.x9_c01001{left:418.152285px;}
.x39_c01001{left:429.101685px;}
.x6c_c01001{left:431.834085px;}
.x5e_c01001{left:439.264035px;}
.x16_c01001{left:447.575085px;}
.x49_c01001{left:450.663885px;}
.x61_c01001{left:451.921185px;}
.x17_c01001{left:460.816335px;}
.x1f_c01001{left:462.430035px;}
.x6f_c01001{left:463.578435px;}
.xa_c01001{left:484.333785px;}
.x4f_c01001{left:494.827785px;}
.x2e_c01001{left:496.099935px;}
.x62_c01001{left:505.564335px;}
.x26_c01001{left:507.093885px;}
.x40_c01001{left:508.445235px;}
.x50_c01001{left:518.137335px;}
.x41_c01001{left:519.820335px;}
.xb_c01001{left:528.339285px;}
.x73_c01001{left:539.838135px;}
.x63_c01001{left:540.917235px;}
.x34_c01001{left:551.282535px;}
.x3a_c01001{left:552.732885px;}
.x18_c01001{left:562.410135px;}
.x46_c01001{left:572.532885px;}
.x70_c01001{left:573.701085px;}
.x35_c01001{left:582.536835px;}
.x20_c01001{left:583.764435px;}
.xc_c01001{left:595.203885px;}
.x3b_c01001{left:596.530485px;}
.xd_c01001{left:607.153185px;}
.x52_c01001{left:616.820535px;}
.x3c_c01001{left:617.949135px;}
.x19_c01001{left:627.265035px;}
.x27_c01001{left:628.289685px;}
.x5b_c01001{left:637.793685px;}
.x47_c01001{left:638.966835px;}
.xe_c01001{left:650.223135px;}
.x53_c01001{left:659.915235px;}
.x5c_c01001{left:661.108185px;}
.x42_c01001{left:662.424885px;}
.x4a_c01001{left:671.324985px;}
.x3_c01001{left:672.483285px;}
.xf_c01001{left:681.967485px;}
.x4b_c01001{left:683.803935px;}
.x2a_c01001{left:689.753835px;}
.x21_c01001{left:694.283085px;}
.x5d_c01001{left:698.366835px;}
.x74_c01001{left:702.222885px;}
.x6d_c01001{left:703.722735px;}
.x28_c01001{left:705.267135px;}
.x3d_c01001{left:715.513635px;}
.x51_c01001{left:716.973885px;}
.x64_c01001{left:727.829235px;}
.x29_c01001{left:728.893485px;}
.x54_c01001{left:734.754285px;}
.x55_c01001{left:739.466685px;}
@media print{
.v0_c01001{vertical-align:0.000000pt;}
.ls4_c01001{letter-spacing:-2.353126pt;}
.ls3_c01001{letter-spacing:-2.002000pt;}
.lsf_c01001{letter-spacing:-0.349607pt;}
.ls6_c01001{letter-spacing:-0.289098pt;}
.ls0_c01001{letter-spacing:0.000000pt;}
.ls8_c01001{letter-spacing:0.537857pt;}
.ls11_c01001{letter-spacing:0.616000pt;}
.ls10_c01001{letter-spacing:0.651209pt;}
.ls7_c01001{letter-spacing:1.698400pt;}
.ls1_c01001{letter-spacing:2.294477pt;}
.ls12_c01001{letter-spacing:2.501037pt;}
.ls9_c01001{letter-spacing:2.948000pt;}
.ls5_c01001{letter-spacing:3.146466pt;}
.lsd_c01001{letter-spacing:3.271074pt;}
.ls2_c01001{letter-spacing:3.361609pt;}
.lsc_c01001{letter-spacing:3.379209pt;}
.lse_c01001{letter-spacing:51.955376pt;}
.lsa_c01001{letter-spacing:53.222576pt;}
.lsb_c01001{letter-spacing:54.489776pt;}
.ws0_c01001{word-spacing:-16.808044pt;}
.ws1_c01001{word-spacing:-0.807229pt;}
.ws2_c01001{word-spacing:0.000000pt;}
._0_c01001{width:3.698034pt;}
._2_c01001{width:11.295592pt;}
._3_c01001{width:17.913280pt;}
._5_c01001{width:19.465600pt;}
._1_c01001{width:49.085696pt;}
._4_c01001{width:89.601326pt;}
.fse_c01001{font-size:12.320000pt;}
.fsd_c01001{font-size:13.024176pt;}
.fs5_c01001{font-size:15.136000pt;}
.fs2_c01001{font-size:19.712000pt;}
.fs0_c01001{font-size:28.864000pt;}
.fs6_c01001{font-size:33.968000pt;}
.fsf_c01001{font-size:34.848000pt;}
.fs7_c01001{font-size:42.768000pt;}
.fsc_c01001{font-size:51.955376pt;}
.fs9_c01001{font-size:53.222576pt;}
.fsa_c01001{font-size:54.489776pt;}
.fs4_c01001{font-size:57.200000pt;}
.fs8_c01001{font-size:58.960000pt;}
.fs10_c01001{font-size:66.528000pt;}
.fs3_c01001{font-size:67.232176pt;}
.fsb_c01001{font-size:67.584176pt;}
.fs1_c01001{font-size:78.848000pt;}
.y0_c01001{bottom:0.000000pt;}
.y1f_c01001{bottom:4.990520pt;}
.y2_c01001{bottom:28.433720pt;}
.y1_c01001{bottom:68.000000pt;}
.y1e_c01001{bottom:117.454520pt;}
.y1d_c01001{bottom:146.278920pt;}
.y1c_c01001{bottom:177.008520pt;}
.y1b_c01001{bottom:203.307320pt;}
.y1a_c01001{bottom:231.181320pt;}
.y19_c01001{bottom:260.014520pt;}
.y18_c01001{bottom:285.041720pt;}
.y17_c01001{bottom:287.576120pt;}
.y16_c01001{bottom:343.649720pt;}
.y15_c01001{bottom:372.161720pt;}
.y14_c01001{bottom:399.723320pt;}
.y13_c01001{bottom:427.601720pt;}
.y12_c01001{bottom:456.426120pt;}
.y11_c01001{bottom:484.942520pt;}
.y10_c01001{bottom:541.649720pt;}
.yf_c01001{bottom:569.840520pt;}
.ye_c01001{bottom:597.718920pt;}
.yd_c01001{bottom:625.918520pt;}
.yc_c01001{bottom:640.808120pt;}
.yb_c01001{bottom:653.158920pt;}
.ya_c01001{bottom:667.102520pt;}
.y9_c01001{bottom:681.675320pt;}
.y8_c01001{bottom:709.553720pt;}
.y7_c01001{bottom:738.065720pt;}
.y6_c01001{bottom:794.451720pt;}
.y5_c01001{bottom:823.280520pt;}
.y4_c01001{bottom:845.773320pt;}
.y3_c01001{bottom:944.298120pt;}
.hf_c01001{height:12.416250pt;}
.he_c01001{height:13.125927pt;}
.h7_c01001{height:15.786375pt;}
.h4_c01001{height:20.559000pt;}
.h2_c01001{height:30.104250pt;}
.h10_c01001{height:34.201406pt;}
.hd_c01001{height:34.602280pt;}
.h8_c01001{height:35.427563pt;}
.ha_c01001{height:35.446236pt;}
.hb_c01001{height:36.290191pt;}
.h6_c01001{height:56.138672pt;}
.h9_c01001{height:61.493438pt;}
.h11_c01001{height:65.293594pt;}
.h5_c01001{height:65.984704pt;}
.hc_c01001{height:66.330173pt;}
.h3_c01001{height:77.385000pt;}
.h1_c01001{height:986.666667pt;}
.h0_c01001{height:1122.666667pt;}
.w1_c01001{width:678.666667pt;}
.w0_c01001{width:793.333333pt;}
.x0_c01001{left:0.000000pt;}
.x2_c01001{left:49.206120pt;}
.x1_c01001{left:57.333333pt;}
.x1a_c01001{left:65.552120pt;}
.x4_c01001{left:66.484920pt;}
.x36_c01001{left:94.688920pt;}
.x10_c01001{left:105.165320pt;}
.x13_c01001{left:113.820120pt;}
.x30_c01001{left:114.981720pt;}
.x37_c01001{left:123.398920pt;}
.x43_c01001{left:125.040120pt;}
.x72_c01001{left:134.337320pt;}
.x22_c01001{left:135.296520pt;}
.x11_c01001{left:143.841320pt;}
.x5_c01001{left:144.796120pt;}
.x5f_c01001{left:152.579720pt;}
.x23_c01001{left:153.930520pt;}
.x2b_c01001{left:156.077720pt;}
.x1b_c01001{left:163.628120pt;}
.x56_c01001{left:164.965720pt;}
.x2f_c01001{left:182.583320pt;}
.x24_c01001{left:183.722920pt;}
.x57_c01001{left:193.081720pt;}
.x6_c01001{left:194.045320pt;}
.x71_c01001{left:195.268520pt;}
.x14_c01001{left:203.346920pt;}
.x31_c01001{left:212.903720pt;}
.x6e_c01001{left:221.954520pt;}
.x2c_c01001{left:223.036920pt;}
.x12_c01001{left:233.328520pt;}
.x3e_c01001{left:235.092920pt;}
.x25_c01001{left:243.571720pt;}
.x32_c01001{left:253.031720pt;}
.x15_c01001{left:261.686520pt;}
.x1c_c01001{left:262.958120pt;}
.x58_c01001{left:263.917320pt;}
.x4c_c01001{left:271.692120pt;}
.x7_c01001{left:273.091320pt;}
.x59_c01001{left:282.111320pt;}
.x48_c01001{left:283.514920pt;}
.x1d_c01001{left:292.372120pt;}
.x65_c01001{left:300.155720pt;}
.x44_c01001{left:301.871720pt;}
.x66_c01001{left:309.589320pt;}
.x4d_c01001{left:310.984120pt;}
.x2d_c01001{left:313.021320pt;}
.x67_c01001{left:315.700920pt;}
.x1e_c01001{left:321.398920pt;}
.x68_c01001{left:328.381720pt;}
.x45_c01001{left:330.586120pt;}
.x8_c01001{left:331.672920pt;}
.x4e_c01001{left:332.843320pt;}
.x69_c01001{left:339.650120pt;}
.x33_c01001{left:342.078920pt;}
.x6a_c01001{left:350.597320pt;}
.x38_c01001{left:352.273720pt;}
.x60_c01001{left:361.456520pt;}
.x3f_c01001{left:362.406920pt;}
.x6b_c01001{left:365.368120pt;}
.x5a_c01001{left:370.489720pt;}
.x9_c01001{left:371.690920pt;}
.x39_c01001{left:381.423720pt;}
.x6c_c01001{left:383.852520pt;}
.x5e_c01001{left:390.456920pt;}
.x16_c01001{left:397.844520pt;}
.x49_c01001{left:400.590120pt;}
.x61_c01001{left:401.707720pt;}
.x17_c01001{left:409.614520pt;}
.x1f_c01001{left:411.048920pt;}
.x6f_c01001{left:412.069720pt;}
.xa_c01001{left:430.518920pt;}
.x4f_c01001{left:439.846920pt;}
.x2e_c01001{left:440.977720pt;}
.x62_c01001{left:449.390520pt;}
.x26_c01001{left:450.750120pt;}
.x40_c01001{left:451.951320pt;}
.x50_c01001{left:460.566520pt;}
.x41_c01001{left:462.062520pt;}
.xb_c01001{left:469.634920pt;}
.x73_c01001{left:479.856120pt;}
.x63_c01001{left:480.815320pt;}
.x34_c01001{left:490.028920pt;}
.x3a_c01001{left:491.318120pt;}
.x18_c01001{left:499.920120pt;}
.x46_c01001{left:508.918120pt;}
.x70_c01001{left:509.956520pt;}
.x35_c01001{left:517.810520pt;}
.x20_c01001{left:518.901720pt;}
.xc_c01001{left:529.070120pt;}
.x3b_c01001{left:530.249320pt;}
.xd_c01001{left:539.691720pt;}
.x52_c01001{left:548.284920pt;}
.x3c_c01001{left:549.288120pt;}
.x19_c01001{left:557.568920pt;}
.x27_c01001{left:558.479720pt;}
.x5b_c01001{left:566.927720pt;}
.x47_c01001{left:567.970520pt;}
.xe_c01001{left:577.976120pt;}
.x53_c01001{left:586.591320pt;}
.x5c_c01001{left:587.651720pt;}
.x42_c01001{left:588.822120pt;}
.x4a_c01001{left:596.733320pt;}
.x3_c01001{left:597.762920pt;}
.xf_c01001{left:606.193320pt;}
.x4b_c01001{left:607.825720pt;}
.x2a_c01001{left:613.114520pt;}
.x21_c01001{left:617.140520pt;}
.x5d_c01001{left:620.770520pt;}
.x74_c01001{left:624.198120pt;}
.x6d_c01001{left:625.531320pt;}
.x28_c01001{left:626.904120pt;}
.x3d_c01001{left:636.012120pt;}
.x51_c01001{left:637.310120pt;}
.x64_c01001{left:646.959320pt;}
.x29_c01001{left:647.905320pt;}
.x54_c01001{left:653.114920pt;}
.x55_c01001{left:657.303720pt;}
}





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

.ir_c01002:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01002{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01002;src:url('chunks/assets/font_fb885d7c1ac481143d35ad91.woff2')format("woff");}.ff1_c01002{font-family:ff1_c01002;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01002;src:url('chunks/assets/font_0215decc4faf8ea635fa9380.woff2')format("woff");}.ff2_c01002{font-family:ff2_c01002;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01002;src:url('chunks/assets/font_3a81fd997a2dc1543bbaa8ab.woff2')format("woff");}.ff3_c01002{font-family:ff3_c01002;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01002;src:url('chunks/assets/font_4b2181d8dba5016492095f41.woff2')format("woff");}.ff4_c01002{font-family:ff4_c01002;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1a_c01002{transform:matrix(0.146046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146046,0.000000,0.000000,0.250000,0,0);}
.m8f_c01002{transform:matrix(0.161325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161325,0.000000,0.000000,0.250000,0,0);}
.m8b_c01002{transform:matrix(0.192307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192307,0.000000,0.000000,0.250000,0,0);}
.m90_c01002{transform:matrix(0.192309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192309,0.000000,0.000000,0.250000,0,0);}
.ma0_c01002{transform:matrix(0.197954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197954,0.000000,0.000000,0.250000,0,0);}
.m3d_c01002{transform:matrix(0.211965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211965,0.000000,0.000000,0.250000,0,0);}
.m8e_c01002{transform:matrix(0.212475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212475,0.000000,0.000000,0.250000,0,0);}
.m40_c01002{transform:matrix(0.235069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235069,0.000000,0.000000,0.250000,0,0);}
.m47_c01002{transform:matrix(0.242568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242568,0.000000,0.000000,0.250000,0,0);}
.m9d_c01002{transform:matrix(0.246461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246461,0.000000,0.000000,0.250000,0,0);}
.m0_c01002{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m7b_c01002{transform:matrix(0.250666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250666,0.000000,0.000000,0.250000,0,0);}
.m56_c01002{transform:matrix(0.252893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252893,0.000000,0.000000,0.250000,0,0);}
.m93_c01002{transform:matrix(0.254420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254420,0.000000,0.000000,0.250000,0,0);}
.m4_c01002{transform:matrix(0.255038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255038,0.000000,0.000000,0.250000,0,0);}
.m69_c01002{transform:matrix(0.257934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257934,0.000000,0.000000,0.250000,0,0);}
.m2_c01002{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m2c_c01002{transform:matrix(0.258826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258826,0.000000,0.000000,0.250000,0,0);}
.m4a_c01002{transform:matrix(0.260462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260462,0.000000,0.000000,0.250000,0,0);}
.m6_c01002{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m9a_c01002{transform:matrix(0.261460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261460,0.000000,0.000000,0.250000,0,0);}
.m35_c01002{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.mf_c01002{transform:matrix(0.262220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262220,0.000000,0.000000,0.250000,0,0);}
.m27_c01002{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m4c_c01002{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m59_c01002{transform:matrix(0.264071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264071,0.000000,0.000000,0.250000,0,0);}
.m45_c01002{transform:matrix(0.264073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264073,0.000000,0.000000,0.250000,0,0);}
.m18_c01002{transform:matrix(0.264902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264902,0.000000,0.000000,0.250000,0,0);}
.m85_c01002{transform:matrix(0.265295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265295,0.000000,0.000000,0.250000,0,0);}
.m52_c01002{transform:matrix(0.266473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266473,0.000000,0.000000,0.250000,0,0);}
.m1d_c01002{transform:matrix(0.266542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266542,0.000000,0.000000,0.250000,0,0);}
.m43_c01002{transform:matrix(0.266596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266596,0.000000,0.000000,0.250000,0,0);}
.m7f_c01002{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.m55_c01002{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m9f_c01002{transform:matrix(0.268662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268662,0.000000,0.000000,0.250000,0,0);}
.m19_c01002{transform:matrix(0.269568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269568,0.000000,0.000000,0.250000,0,0);}
.m1c_c01002{transform:matrix(0.270040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270040,0.000000,0.000000,0.250000,0,0);}
.me_c01002{transform:matrix(0.270604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270604,0.000000,0.000000,0.250000,0,0);}
.m1e_c01002{transform:matrix(0.271808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271808,0.000000,0.000000,0.250000,0,0);}
.m5a_c01002{transform:matrix(0.271897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271897,0.000000,0.000000,0.250000,0,0);}
.m67_c01002{transform:matrix(0.271989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271989,0.000000,0.000000,0.250000,0,0);}
.m63_c01002{transform:matrix(0.272477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272477,0.000000,0.000000,0.250000,0,0);}
.m89_c01002{transform:matrix(0.273247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273247,0.000000,0.000000,0.250000,0,0);}
.m7_c01002{transform:matrix(0.273864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273864,0.000000,0.000000,0.250000,0,0);}
.m9e_c01002{transform:matrix(0.274421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274421,0.000000,0.000000,0.250000,0,0);}
.m37_c01002{transform:matrix(0.275021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275021,0.000000,0.000000,0.250000,0,0);}
.m79_c01002{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m7d_c01002{transform:matrix(0.277016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277016,0.000000,0.000000,0.250000,0,0);}
.ma1_c01002{transform:matrix(0.277093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277093,0.000000,0.000000,0.250000,0,0);}
.m3_c01002{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m8a_c01002{transform:matrix(0.277690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277690,0.000000,0.000000,0.250000,0,0);}
.m97_c01002{transform:matrix(0.277919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277919,0.000000,0.000000,0.250000,0,0);}
.m2f_c01002{transform:matrix(0.278218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278218,0.000000,0.000000,0.250000,0,0);}
.m8d_c01002{transform:matrix(0.278569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278569,0.000000,0.000000,0.250000,0,0);}
.m16_c01002{transform:matrix(0.279663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279663,0.000000,0.000000,0.250000,0,0);}
.m6e_c01002{transform:matrix(0.281190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281190,0.000000,0.000000,0.250000,0,0);}
.m60_c01002{transform:matrix(0.281274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281274,0.000000,0.000000,0.250000,0,0);}
.m11_c01002{transform:matrix(0.283405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283405,0.000000,0.000000,0.250000,0,0);}
.m70_c01002{transform:matrix(0.283586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283586,0.000000,0.000000,0.250000,0,0);}
.m21_c01002{transform:matrix(0.283629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283629,0.000000,0.000000,0.250000,0,0);}
.m49_c01002{transform:matrix(0.284207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284207,0.000000,0.000000,0.250000,0,0);}
.m24_c01002{transform:matrix(0.284681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284681,0.000000,0.000000,0.250000,0,0);}
.m3e_c01002{transform:matrix(0.285777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285777,0.000000,0.000000,0.250000,0,0);}
.m41_c01002{transform:matrix(0.286336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286336,0.000000,0.000000,0.250000,0,0);}
.m6b_c01002{transform:matrix(0.286583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286583,0.000000,0.000000,0.250000,0,0);}
.m91_c01002{transform:matrix(0.287725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287725,0.000000,0.000000,0.250000,0,0);}
.m36_c01002{transform:matrix(0.287862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287862,0.000000,0.000000,0.250000,0,0);}
.m5f_c01002{transform:matrix(0.288282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288282,0.000000,0.000000,0.250000,0,0);}
.m2a_c01002{transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);}
.m82_c01002{transform:matrix(0.288532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288532,0.000000,0.000000,0.250000,0,0);}
.m6c_c01002{transform:matrix(0.288698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288698,0.000000,0.000000,0.250000,0,0);}
.m7e_c01002{transform:matrix(0.288804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288804,0.000000,0.000000,0.250000,0,0);}
.m95_c01002{transform:matrix(0.288806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288806,0.000000,0.000000,0.250000,0,0);}
.m39_c01002{transform:matrix(0.288910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288910,0.000000,0.000000,0.250000,0,0);}
.m6f_c01002{transform:matrix(0.289520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289520,0.000000,0.000000,0.250000,0,0);}
.m8c_c01002{transform:matrix(0.289669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289669,0.000000,0.000000,0.250000,0,0);}
.m12_c01002{transform:matrix(0.290219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290219,0.000000,0.000000,0.250000,0,0);}
.m5d_c01002{transform:matrix(0.290272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290272,0.000000,0.000000,0.250000,0,0);}
.m17_c01002{transform:matrix(0.290705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290705,0.000000,0.000000,0.250000,0,0);}
.m13_c01002{transform:matrix(0.290956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290956,0.000000,0.000000,0.250000,0,0);}
.m1_c01002{transform:matrix(0.291578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291578,0.000000,0.000000,0.250000,0,0);}
.m65_c01002{transform:matrix(0.291777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291777,0.000000,0.000000,0.250000,0,0);}
.m34_c01002{transform:matrix(0.292600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292600,0.000000,0.000000,0.250000,0,0);}
.m86_c01002{transform:matrix(0.293098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293098,0.000000,0.000000,0.250000,0,0);}
.m7a_c01002{transform:matrix(0.293496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293496,0.000000,0.000000,0.250000,0,0);}
.m38_c01002{transform:matrix(0.294157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294157,0.000000,0.000000,0.250000,0,0);}
.m62_c01002{transform:matrix(0.295212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295212,0.000000,0.000000,0.250000,0,0);}
.m4b_c01002{transform:matrix(0.295723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295723,0.000000,0.000000,0.250000,0,0);}
.m73_c01002{transform:matrix(0.296554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296554,0.000000,0.000000,0.250000,0,0);}
.m51_c01002{transform:matrix(0.296665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296665,0.000000,0.000000,0.250000,0,0);}
.m31_c01002{transform:matrix(0.296683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296683,0.000000,0.000000,0.250000,0,0);}
.m48_c01002{transform:matrix(0.296925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296925,0.000000,0.000000,0.250000,0,0);}
.m87_c01002{transform:matrix(0.297097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297097,0.000000,0.000000,0.250000,0,0);}
.m76_c01002{transform:matrix(0.297306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297306,0.000000,0.000000,0.250000,0,0);}
.m66_c01002{transform:matrix(0.300396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300396,0.000000,0.000000,0.250000,0,0);}
.m78_c01002{transform:matrix(0.301020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301020,0.000000,0.000000,0.250000,0,0);}
.m3a_c01002{transform:matrix(0.301042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301042,0.000000,0.000000,0.250000,0,0);}
.m22_c01002{transform:matrix(0.301600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301600,0.000000,0.000000,0.250000,0,0);}
.m58_c01002{transform:matrix(0.301915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301915,0.000000,0.000000,0.250000,0,0);}
.m46_c01002{transform:matrix(0.302227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302227,0.000000,0.000000,0.250000,0,0);}
.m23_c01002{transform:matrix(0.302504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302504,0.000000,0.000000,0.250000,0,0);}
.m42_c01002{transform:matrix(0.302578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302578,0.000000,0.000000,0.250000,0,0);}
.m9b_c01002{transform:matrix(0.303084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303084,0.000000,0.000000,0.250000,0,0);}
.mb_c01002{transform:matrix(0.303194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303194,0.000000,0.000000,0.250000,0,0);}
.m33_c01002{transform:matrix(0.303969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303969,0.000000,0.000000,0.250000,0,0);}
.m54_c01002{transform:matrix(0.304158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304158,0.000000,0.000000,0.250000,0,0);}
.m15_c01002{transform:matrix(0.304800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304800,0.000000,0.000000,0.250000,0,0);}
.m2e_c01002{transform:matrix(0.304895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304895,0.000000,0.000000,0.250000,0,0);}
.m6d_c01002{transform:matrix(0.305036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305036,0.000000,0.000000,0.250000,0,0);}
.m53_c01002{transform:matrix(0.305475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305475,0.000000,0.000000,0.250000,0,0);}
.m57_c01002{transform:matrix(0.306601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306601,0.000000,0.000000,0.250000,0,0);}
.m5b_c01002{transform:matrix(0.306963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306963,0.000000,0.000000,0.250000,0,0);}
.m71_c01002{transform:matrix(0.306982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306982,0.000000,0.000000,0.250000,0,0);}
.m26_c01002{transform:matrix(0.308561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308561,0.000000,0.000000,0.250000,0,0);}
.m8_c01002{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m4e_c01002{transform:matrix(0.309598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309598,0.000000,0.000000,0.250000,0,0);}
.m9_c01002{transform:matrix(0.310673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310673,0.000000,0.000000,0.250000,0,0);}
.m6a_c01002{transform:matrix(0.310714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310714,0.000000,0.000000,0.250000,0,0);}
.m44_c01002{transform:matrix(0.311266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311266,0.000000,0.000000,0.250000,0,0);}
.m3f_c01002{transform:matrix(0.311496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311496,0.000000,0.000000,0.250000,0,0);}
.mc_c01002{transform:matrix(0.312403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312403,0.000000,0.000000,0.250000,0,0);}
.m5e_c01002{transform:matrix(0.314312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314312,0.000000,0.000000,0.250000,0,0);}
.m10_c01002{transform:matrix(0.314476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314476,0.000000,0.000000,0.250000,0,0);}
.m5c_c01002{transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);}
.m3b_c01002{transform:matrix(0.316516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316516,0.000000,0.000000,0.250000,0,0);}
.m64_c01002{transform:matrix(0.316622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316622,0.000000,0.000000,0.250000,0,0);}
.m96_c01002{transform:matrix(0.316729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316729,0.000000,0.000000,0.250000,0,0);}
.m50_c01002{transform:matrix(0.318366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318366,0.000000,0.000000,0.250000,0,0);}
.m88_c01002{transform:matrix(0.319227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319227,0.000000,0.000000,0.250000,0,0);}
.m74_c01002{transform:matrix(0.319854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319854,0.000000,0.000000,0.250000,0,0);}
.m2b_c01002{transform:matrix(0.320236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320236,0.000000,0.000000,0.250000,0,0);}
.m81_c01002{transform:matrix(0.320819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320819,0.000000,0.000000,0.250000,0,0);}
.m5_c01002{transform:matrix(0.327518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327518,0.000000,0.000000,0.250000,0,0);}
.m7c_c01002{transform:matrix(0.327862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327862,0.000000,0.000000,0.250000,0,0);}
.m94_c01002{transform:matrix(0.328523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328523,0.000000,0.000000,0.250000,0,0);}
.m29_c01002{transform:matrix(0.332674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332674,0.000000,0.000000,0.250000,0,0);}
.m75_c01002{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m84_c01002{transform:matrix(0.334644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334644,0.000000,0.000000,0.250000,0,0);}
.md_c01002{transform:matrix(0.335561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335561,0.000000,0.000000,0.250000,0,0);}
.m3c_c01002{transform:matrix(0.335974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335974,0.000000,0.000000,0.250000,0,0);}
.m32_c01002{transform:matrix(0.336444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336444,0.000000,0.000000,0.250000,0,0);}
.m20_c01002{transform:matrix(0.337468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337468,0.000000,0.000000,0.250000,0,0);}
.m1f_c01002{transform:matrix(0.339761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339761,0.000000,0.000000,0.250000,0,0);}
.m4f_c01002{transform:matrix(0.340289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340289,0.000000,0.000000,0.250000,0,0);}
.m77_c01002{transform:matrix(0.342694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342694,0.000000,0.000000,0.250000,0,0);}
.m14_c01002{transform:matrix(0.343186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343186,0.000000,0.000000,0.250000,0,0);}
.m72_c01002{transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);}
.m92_c01002{transform:matrix(0.345590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345590,0.000000,0.000000,0.250000,0,0);}
.m2d_c01002{transform:matrix(0.355345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355345,0.000000,0.000000,0.250000,0,0);}
.m9c_c01002{transform:matrix(0.361388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361388,0.000000,0.000000,0.250000,0,0);}
.m28_c01002{transform:matrix(0.361640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361640,0.000000,0.000000,0.250000,0,0);}
.m68_c01002{transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);}
.m80_c01002{transform:matrix(0.372527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372527,0.000000,0.000000,0.250000,0,0);}
.m99_c01002{transform:matrix(0.372868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372868,0.000000,0.000000,0.250000,0,0);}
.m30_c01002{transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);}
.m25_c01002{transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);}
.ma_c01002{transform:matrix(0.385437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385437,0.000000,0.000000,0.250000,0,0);}
.ma2_c01002{transform:matrix(0.390408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390408,0.000000,0.000000,0.250000,0,0);}
.m4d_c01002{transform:matrix(0.391460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391460,0.000000,0.000000,0.250000,0,0);}
.m83_c01002{transform:matrix(0.407021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407021,0.000000,0.000000,0.250000,0,0);}
.m61_c01002{transform:matrix(0.408030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408030,0.000000,0.000000,0.250000,0,0);}
.m98_c01002{transform:matrix(0.430648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430648,0.000000,0.000000,0.250000,0,0);}
.m1b_c01002{transform:matrix(0.678304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.678304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.678304,0.000000,0.000000,0.250000,0,0);}
.v0_c01002{vertical-align:0.000000px;}
.v1_c01002{vertical-align:9.983952px;}
.ls6_c01002{letter-spacing:-2.744280px;}
.ls18_c01002{letter-spacing:-2.529450px;}
.ls19_c01002{letter-spacing:-1.351350px;}
.lsb_c01002{letter-spacing:-0.948737px;}
.ls16_c01002{letter-spacing:-0.470448px;}
.ls3_c01002{letter-spacing:0.000000px;}
.ls0_c01002{letter-spacing:1.003622px;}
.ls7_c01002{letter-spacing:1.643400px;}
.ls10_c01002{letter-spacing:1.732500px;}
.lsd_c01002{letter-spacing:1.960200px;}
.lsa_c01002{letter-spacing:2.650190px;}
.ls2_c01002{letter-spacing:2.914560px;}
.ls8_c01002{letter-spacing:3.306610px;}
.lsc_c01002{letter-spacing:3.465000px;}
.ls12_c01002{letter-spacing:3.524400px;}
.ls17_c01002{letter-spacing:3.613500px;}
.lsf_c01002{letter-spacing:3.682810px;}
.ls4_c01002{letter-spacing:3.712500px;}
.ls9_c01002{letter-spacing:3.791700px;}
.ls11_c01002{letter-spacing:3.801610px;}
.ls13_c01002{letter-spacing:3.910500px;}
.ls5_c01002{letter-spacing:3.920400px;}
.ls15_c01002{letter-spacing:3.999610px;}
.lse_c01002{letter-spacing:4.395610px;}
.ls1_c01002{letter-spacing:11.383218px;}
.ls14_c01002{letter-spacing:55.598598px;}
.sc__c01002{text-shadow:none;}
.sc0_c01002{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01002{-webkit-text-stroke:0px transparent;}
.sc0_c01002{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01002{word-spacing:-19.602000px;}
.ws1_c01002{word-spacing:0.000000px;}
._5_c01002{margin-left:-14.718583px;}
._2_c01002{margin-left:-9.644580px;}
._1_c01002{width:2.195028px;}
._4_c01002{width:10.742688px;}
._3_c01002{width:12.152448px;}
._0_c01002{width:14.034636px;}
._8_c01002{width:21.352320px;}
._7_c01002{width:24.689333px;}
._6_c01002{width:86.213853px;}
.fc0_c01002{color:transparent;}
.fs0_c01002{font-size:27.720000px;}
.fs4_c01002{font-size:32.868000px;}
.fsb_c01002{font-size:34.650000px;}
.fs13_c01002{font-size:37.818000px;}
.fs16_c01002{font-size:38.610000px;}
.fs10_c01002{font-size:45.144000px;}
.fs6_c01002{font-size:51.876198px;}
.fs11_c01002{font-size:55.598598px;}
.fs5_c01002{font-size:66.132198px;}
.fs8_c01002{font-size:69.300000px;}
.fsd_c01002{font-size:70.488000px;}
.fs15_c01002{font-size:72.270000px;}
.fsa_c01002{font-size:73.656198px;}
.fs1_c01002{font-size:74.250000px;}
.fs3_c01002{font-size:74.844000px;}
.fs7_c01002{font-size:75.834000px;}
.fsc_c01002{font-size:76.032198px;}
.fsf_c01002{font-size:78.210000px;}
.fs2_c01002{font-size:78.408000px;}
.fse_c01002{font-size:78.804000px;}
.fs14_c01002{font-size:79.200000px;}
.fs12_c01002{font-size:79.992198px;}
.fs9_c01002{font-size:87.912198px;}
.y0_c01002{bottom:0.000000px;}
.y1_c01002{bottom:76.500000px;}
.y1c_c01002{bottom:123.939135px;}
.y1b_c01002{bottom:155.653785px;}
.y1a_c01002{bottom:235.135935px;}
.y19_c01002{bottom:248.322735px;}
.y18_c01002{bottom:250.817535px;}
.y17_c01002{bottom:288.590985px;}
.y16_c01002{bottom:378.403785px;}
.y15_c01002{bottom:410.128335px;}
.y14_c01002{bottom:441.847935px;}
.y13_c01002{bottom:473.562585px;}
.y12_c01002{bottom:505.643535px;}
.y10_c01002{bottom:537.714585px;}
.y11_c01002{bottom:543.773385px;}
.yf_c01002{bottom:569.790585px;}
.ye_c01002{bottom:633.234735px;}
.yd_c01002{bottom:664.597935px;}
.yc_c01002{bottom:695.961135px;}
.yb_c01002{bottom:727.319385px;}
.ya_c01002{bottom:759.038985px;}
.y9_c01002{bottom:790.407135px;}
.y7_c01002{bottom:822.478185px;}
.y8_c01002{bottom:827.829135px;}
.y6_c01002{bottom:854.559135px;}
.y5_c01002{bottom:886.273785px;}
.y4_c01002{bottom:917.636985px;}
.y3_c01002{bottom:1053.068985px;}
.y2_c01002{bottom:1074.096585px;}
.h2_c01002{height:28.911094px;}
.h6_c01002{height:34.280297px;}
.hd_c01002{height:36.138867px;}
.h13_c01002{height:37.028666px;}
.h18_c01002{height:37.874751px;}
.h12_c01002{height:47.083781px;}
.h15_c01002{height:49.426944px;}
.h8_c01002{height:54.105253px;}
.h7_c01002{height:68.973816px;}
.hf_c01002{height:69.180117px;}
.h17_c01002{height:70.929053px;}
.ha_c01002{height:72.277734px;}
.h3_c01002{height:72.872314px;}
.h5_c01002{height:73.455293px;}
.h9_c01002{height:74.426924px;}
.he_c01002{height:74.621444px;}
.h11_c01002{height:76.758838px;}
.hc_c01002{height:76.821113px;}
.h4_c01002{height:76.953164px;}
.h10_c01002{height:77.341816px;}
.h16_c01002{height:77.730469px;}
.h14_c01002{height:78.507968px;}
.hb_c01002{height:86.281015px;}
.h1_c01002{height:1110.000000px;}
.h0_c01002{height:1263.000000px;}
.w1_c01002{width:763.500000px;}
.w0_c01002{width:892.500000px;}
.x0_c01002{left:0.000000px;}
.x1_c01002{left:64.500000px;}
.x4b_c01002{left:78.220950px;}
.x16_c01002{left:79.270350px;}
.x4_c01002{left:80.572200px;}
.x5_c01002{left:112.128450px;}
.xf_c01002{left:113.687700px;}
.x56_c01002{left:122.424450px;}
.x30_c01002{left:124.048050px;}
.x46_c01002{left:134.086650px;}
.x2a_c01002{left:135.685500px;}
.x22_c01002{left:137.185350px;}
.x34_c01002{left:145.432050px;}
.x6_c01002{left:146.491350px;}
.x31_c01002{left:156.782400px;}
.x17_c01002{left:159.143550px;}
.x2b_c01002{left:167.687250px;}
.x59_c01002{left:178.512900px;}
.x44_c01002{left:179.517750px;}
.x4c_c01002{left:181.205700px;}
.x3e_c01002{left:189.457350px;}
.x32_c01002{left:190.922550px;}
.x2_c01002{left:198.629700px;}
.x18_c01002{left:201.124500px;}
.x23_c01002{left:203.173800px;}
.x39_c01002{left:211.163100px;}
.x3f_c01002{left:212.400600px;}
.x7_c01002{left:213.425250px;}
.x61_c01002{left:222.211500px;}
.x24_c01002{left:224.968650px;}
.x45_c01002{left:234.111300px;}
.x47_c01002{left:246.867450px;}
.x48_c01002{left:251.441250px;}
.x19_c01002{left:257.658450px;}
.x2c_c01002{left:267.400050px;}
.x25_c01002{left:279.240450px;}
.x51_c01002{left:289.590900px;}
.x4d_c01002{left:292.560900px;}
.x8_c01002{left:301.891650px;}
.x4e_c01002{left:303.663750px;}
.x52_c01002{left:311.356050px;}
.x1a_c01002{left:323.087550px;}
.x5a_c01002{left:333.809250px;}
.x3a_c01002{left:335.338800px;}
.x10_c01002{left:337.224750px;}
.x40_c01002{left:345.303150px;}
.x9_c01002{left:346.605000px;}
.x49_c01002{left:355.529850px;}
.x1b_c01002{left:357.361350px;}
.x35_c01002{left:367.439550px;}
.x33_c01002{left:368.870100px;}
.x5d_c01002{left:370.498650px;}
.x65_c01002{left:377.200950px;}
.x41_c01002{left:379.106700px;}
.x54_c01002{left:389.016600px;}
.x2d_c01002{left:390.150150px;}
.xa_c01002{left:401.649000px;}
.x26_c01002{left:412.316250px;}
.x3b_c01002{left:413.430000px;}
.x60_c01002{left:419.954100px;}
.x5b_c01002{left:423.424050px;}
.x62_c01002{left:432.888450px;}
.x11_c01002{left:434.779350px;}
.x1c_c01002{left:437.031600px;}
.xb_c01002{left:446.367300px;}
.x1d_c01002{left:447.426600px;}
.x3c_c01002{left:456.925650px;}
.x1e_c01002{left:458.559150px;}
.x42_c01002{left:468.592800px;}
.x66_c01002{left:469.711500px;}
.x63_c01002{left:478.096800px;}
.x1f_c01002{left:479.789700px;}
.x5e_c01002{left:488.061150px;}
.x36_c01002{left:489.853050px;}
.x20_c01002{left:500.381700px;}
.xc_c01002{left:512.103300px;}
.x67_c01002{left:514.212000px;}
.x2e_c01002{left:523.562550px;}
.x68_c01002{left:534.625800px;}
.x4a_c01002{left:545.298000px;}
.xd_c01002{left:546.322650px;}
.x55_c01002{left:555.445500px;}
.x12_c01002{left:556.499850px;}
.x4f_c01002{left:567.993750px;}
.x5f_c01002{left:569.077800px;}
.x64_c01002{left:588.957000px;}
.x27_c01002{left:590.570700px;}
.x3d_c01002{left:599.287650px;}
.x21_c01002{left:600.718200px;}
.x53_c01002{left:601.861650px;}
.x13_c01002{left:611.063700px;}
.x2f_c01002{left:622.597200px;}
.x14_c01002{left:633.323850px;}
.x57_c01002{left:655.079100px;}
.x28_c01002{left:656.153250px;}
.x50_c01002{left:665.929500px;}
.x3_c01002{left:667.855050px;}
.xe_c01002{left:678.472800px;}
.x29_c01002{left:689.610300px;}
.x5c_c01002{left:697.777800px;}
.x37_c01002{left:699.079650px;}
.x58_c01002{left:701.193300px;}
.x15_c01002{left:711.721950px;}
.x38_c01002{left:722.409000px;}
.x43_c01002{left:732.224850px;}
@media print{
.v0_c01002{vertical-align:0.000000pt;}
.v1_c01002{vertical-align:8.874624pt;}
.ls6_c01002{letter-spacing:-2.439360pt;}
.ls18_c01002{letter-spacing:-2.248400pt;}
.ls19_c01002{letter-spacing:-1.201200pt;}
.lsb_c01002{letter-spacing:-0.843322pt;}
.ls16_c01002{letter-spacing:-0.418176pt;}
.ls3_c01002{letter-spacing:0.000000pt;}
.ls0_c01002{letter-spacing:0.892109pt;}
.ls7_c01002{letter-spacing:1.460800pt;}
.ls10_c01002{letter-spacing:1.540000pt;}
.lsd_c01002{letter-spacing:1.742400pt;}
.lsa_c01002{letter-spacing:2.355725pt;}
.ls2_c01002{letter-spacing:2.590720pt;}
.ls8_c01002{letter-spacing:2.939209pt;}
.lsc_c01002{letter-spacing:3.080000pt;}
.ls12_c01002{letter-spacing:3.132800pt;}
.ls17_c01002{letter-spacing:3.212000pt;}
.lsf_c01002{letter-spacing:3.273609pt;}
.ls4_c01002{letter-spacing:3.300000pt;}
.ls9_c01002{letter-spacing:3.370400pt;}
.ls11_c01002{letter-spacing:3.379209pt;}
.ls13_c01002{letter-spacing:3.476000pt;}
.ls5_c01002{letter-spacing:3.484800pt;}
.ls15_c01002{letter-spacing:3.555209pt;}
.lse_c01002{letter-spacing:3.907209pt;}
.ls1_c01002{letter-spacing:10.118416pt;}
.ls14_c01002{letter-spacing:49.420976pt;}
.ws0_c01002{word-spacing:-17.424000pt;}
.ws1_c01002{word-spacing:0.000000pt;}
._5_c01002{margin-left:-13.083185pt;}
._2_c01002{margin-left:-8.572960pt;}
._1_c01002{width:1.951136pt;}
._4_c01002{width:9.549056pt;}
._3_c01002{width:10.802176pt;}
._0_c01002{width:12.475232pt;}
._8_c01002{width:18.979840pt;}
._7_c01002{width:21.946074pt;}
._6_c01002{width:76.634536pt;}
.fs0_c01002{font-size:24.640000pt;}
.fs4_c01002{font-size:29.216000pt;}
.fsb_c01002{font-size:30.800000pt;}
.fs13_c01002{font-size:33.616000pt;}
.fs16_c01002{font-size:34.320000pt;}
.fs10_c01002{font-size:40.128000pt;}
.fs6_c01002{font-size:46.112176pt;}
.fs11_c01002{font-size:49.420976pt;}
.fs5_c01002{font-size:58.784176pt;}
.fs8_c01002{font-size:61.600000pt;}
.fsd_c01002{font-size:62.656000pt;}
.fs15_c01002{font-size:64.240000pt;}
.fsa_c01002{font-size:65.472176pt;}
.fs1_c01002{font-size:66.000000pt;}
.fs3_c01002{font-size:66.528000pt;}
.fs7_c01002{font-size:67.408000pt;}
.fsc_c01002{font-size:67.584176pt;}
.fsf_c01002{font-size:69.520000pt;}
.fs2_c01002{font-size:69.696000pt;}
.fse_c01002{font-size:70.048000pt;}
.fs14_c01002{font-size:70.400000pt;}
.fs12_c01002{font-size:71.104176pt;}
.fs9_c01002{font-size:78.144176pt;}
.y0_c01002{bottom:0.000000pt;}
.y1_c01002{bottom:68.000000pt;}
.y1c_c01002{bottom:110.168120pt;}
.y1b_c01002{bottom:138.358920pt;}
.y1a_c01002{bottom:209.009720pt;}
.y19_c01002{bottom:220.731320pt;}
.y18_c01002{bottom:222.948920pt;}
.y17_c01002{bottom:256.525320pt;}
.y16_c01002{bottom:336.358920pt;}
.y15_c01002{bottom:364.558520pt;}
.y14_c01002{bottom:392.753720pt;}
.y13_c01002{bottom:420.944520pt;}
.y12_c01002{bottom:449.460920pt;}
.y10_c01002{bottom:477.968520pt;}
.y11_c01002{bottom:483.354120pt;}
.yf_c01002{bottom:506.480520pt;}
.ye_c01002{bottom:562.875320pt;}
.yd_c01002{bottom:590.753720pt;}
.yc_c01002{bottom:618.632120pt;}
.yb_c01002{bottom:646.506120pt;}
.ya_c01002{bottom:674.701320pt;}
.y9_c01002{bottom:702.584120pt;}
.y7_c01002{bottom:731.091720pt;}
.y8_c01002{bottom:735.848120pt;}
.y6_c01002{bottom:759.608120pt;}
.y5_c01002{bottom:787.798920pt;}
.y4_c01002{bottom:815.677320pt;}
.y3_c01002{bottom:936.061320pt;}
.y2_c01002{bottom:954.752520pt;}
.h2_c01002{height:25.698750pt;}
.h6_c01002{height:30.471375pt;}
.hd_c01002{height:32.123438pt;}
.h13_c01002{height:32.914370pt;}
.h18_c01002{height:33.666445pt;}
.h12_c01002{height:41.852250pt;}
.h15_c01002{height:43.935062pt;}
.h8_c01002{height:48.093559pt;}
.h7_c01002{height:61.310059pt;}
.hf_c01002{height:61.493438pt;}
.h17_c01002{height:63.048047pt;}
.ha_c01002{height:64.246875pt;}
.h3_c01002{height:64.775391pt;}
.h5_c01002{height:65.293594pt;}
.h9_c01002{height:66.157266pt;}
.he_c01002{height:66.330173pt;}
.h11_c01002{height:68.230078pt;}
.hc_c01002{height:68.285434pt;}
.h4_c01002{height:68.402813pt;}
.h10_c01002{height:68.748281pt;}
.h16_c01002{height:69.093750pt;}
.h14_c01002{height:69.784860pt;}
.hb_c01002{height:76.694235pt;}
.h1_c01002{height:986.666667pt;}
.h0_c01002{height:1122.666667pt;}
.w1_c01002{width:678.666667pt;}
.w0_c01002{width:793.333333pt;}
.x0_c01002{left:0.000000pt;}
.x1_c01002{left:57.333333pt;}
.x4b_c01002{left:69.529733pt;}
.x16_c01002{left:70.462533pt;}
.x4_c01002{left:71.619733pt;}
.x5_c01002{left:99.669733pt;}
.xf_c01002{left:101.055733pt;}
.x56_c01002{left:108.821733pt;}
.x30_c01002{left:110.264933pt;}
.x46_c01002{left:119.188133pt;}
.x2a_c01002{left:120.609333pt;}
.x22_c01002{left:121.942533pt;}
.x34_c01002{left:129.272933pt;}
.x6_c01002{left:130.214533pt;}
.x31_c01002{left:139.362133pt;}
.x17_c01002{left:141.460933pt;}
.x2b_c01002{left:149.055333pt;}
.x59_c01002{left:158.678133pt;}
.x44_c01002{left:159.571333pt;}
.x4c_c01002{left:161.071733pt;}
.x3e_c01002{left:168.406533pt;}
.x32_c01002{left:169.708933pt;}
.x2_c01002{left:176.559733pt;}
.x18_c01002{left:178.777333pt;}
.x23_c01002{left:180.598933pt;}
.x39_c01002{left:187.700533pt;}
.x3f_c01002{left:188.800533pt;}
.x7_c01002{left:189.711333pt;}
.x61_c01002{left:197.521333pt;}
.x24_c01002{left:199.972133pt;}
.x45_c01002{left:208.098933pt;}
.x47_c01002{left:219.437733pt;}
.x48_c01002{left:223.503333pt;}
.x19_c01002{left:229.029733pt;}
.x2c_c01002{left:237.688933pt;}
.x25_c01002{left:248.213733pt;}
.x51_c01002{left:257.414133pt;}
.x4d_c01002{left:260.054133pt;}
.x8_c01002{left:268.348133pt;}
.x4e_c01002{left:269.923333pt;}
.x52_c01002{left:276.760933pt;}
.x1a_c01002{left:287.188933pt;}
.x5a_c01002{left:296.719333pt;}
.x3a_c01002{left:298.078933pt;}
.x10_c01002{left:299.755333pt;}
.x40_c01002{left:306.936133pt;}
.x9_c01002{left:308.093333pt;}
.x49_c01002{left:316.026533pt;}
.x1b_c01002{left:317.654533pt;}
.x35_c01002{left:326.612933pt;}
.x33_c01002{left:327.884533pt;}
.x5d_c01002{left:329.332133pt;}
.x65_c01002{left:335.289733pt;}
.x41_c01002{left:336.983733pt;}
.x54_c01002{left:345.792533pt;}
.x2d_c01002{left:346.800133pt;}
.xa_c01002{left:357.021333pt;}
.x26_c01002{left:366.503333pt;}
.x3b_c01002{left:367.493333pt;}
.x60_c01002{left:373.292533pt;}
.x5b_c01002{left:376.376933pt;}
.x62_c01002{left:384.789733pt;}
.x11_c01002{left:386.470533pt;}
.x1c_c01002{left:388.472533pt;}
.xb_c01002{left:396.770933pt;}
.x1d_c01002{left:397.712533pt;}
.x3c_c01002{left:406.156133pt;}
.x1e_c01002{left:407.608133pt;}
.x42_c01002{left:416.526933pt;}
.x66_c01002{left:417.521333pt;}
.x63_c01002{left:424.974933pt;}
.x1f_c01002{left:426.479733pt;}
.x5e_c01002{left:433.832133pt;}
.x36_c01002{left:435.424933pt;}
.x20_c01002{left:444.783733pt;}
.xc_c01002{left:455.202933pt;}
.x67_c01002{left:457.077333pt;}
.x2e_c01002{left:465.388933pt;}
.x68_c01002{left:475.222933pt;}
.x4a_c01002{left:484.709333pt;}
.xd_c01002{left:485.620133pt;}
.x55_c01002{left:493.729333pt;}
.x12_c01002{left:494.666533pt;}
.x4f_c01002{left:504.883333pt;}
.x5f_c01002{left:505.846933pt;}
.x64_c01002{left:523.517333pt;}
.x27_c01002{left:524.951733pt;}
.x3d_c01002{left:532.700133pt;}
.x21_c01002{left:533.971733pt;}
.x53_c01002{left:534.988133pt;}
.x13_c01002{left:543.167733pt;}
.x2f_c01002{left:553.419733pt;}
.x14_c01002{left:562.954533pt;}
.x57_c01002{left:582.292533pt;}
.x28_c01002{left:583.247333pt;}
.x50_c01002{left:591.937333pt;}
.x3_c01002{left:593.648933pt;}
.xe_c01002{left:603.086933pt;}
.x29_c01002{left:612.986933pt;}
.x5c_c01002{left:620.246933pt;}
.x37_c01002{left:621.404133pt;}
.x58_c01002{left:623.282933pt;}
.x15_c01002{left:632.641733pt;}
.x38_c01002{left:642.141333pt;}
.x43_c01002{left:650.866533pt;}
}





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

.ir_c01003:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01003{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01003;src:url('chunks/assets/font_8c49574e17341ed902c3af80.woff2')format("woff");}.ff1_c01003{font-family:ff1_c01003;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01003;src:url('chunks/assets/font_41b5b9dbd6a0c816807d8670.woff2')format("woff");}.ff2_c01003{font-family:ff2_c01003;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01003;src:url('chunks/assets/font_b0ba60183bd4ca1c289bf72b.woff2')format("woff");}.ff3_c01003{font-family:ff3_c01003;line-height:0.666000;font-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_c01003{transform:matrix(0.139895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139895,0.000000,0.000000,0.250000,0,0);}
.m3f_c01003{transform:matrix(0.144532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144532,0.000000,0.000000,0.250000,0,0);}
.m31_c01003{transform:matrix(0.159977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159977,0.000000,0.000000,0.250000,0,0);}
.md_c01003{transform:matrix(0.183023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183023,0.000000,0.000000,0.250000,0,0);}
.m25_c01003{transform:matrix(0.216327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216327,0.000000,0.000000,0.250000,0,0);}
.m0_c01003{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.ma6_c01003{transform:matrix(0.250141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250141,0.000000,0.000000,0.250000,0,0);}
.m87_c01003{transform:matrix(0.253253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253253,0.000000,0.000000,0.250000,0,0);}
.m2b_c01003{transform:matrix(0.254439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254439,0.000000,0.000000,0.250000,0,0);}
.m9a_c01003{transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);}
.m26_c01003{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m53_c01003{transform:matrix(0.259554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259554,0.000000,0.000000,0.250000,0,0);}
.m70_c01003{transform:matrix(0.260559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260559,0.000000,0.000000,0.250000,0,0);}
.m3a_c01003{transform:matrix(0.260818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260818,0.000000,0.000000,0.250000,0,0);}
.m22_c01003{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m58_c01003{transform:matrix(0.263039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263039,0.000000,0.000000,0.250000,0,0);}
.m20_c01003{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m3_c01003{transform:matrix(0.263368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263368,0.000000,0.000000,0.250000,0,0);}
.m4_c01003{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m62_c01003{transform:matrix(0.263947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263947,0.000000,0.000000,0.250000,0,0);}
.m78_c01003{transform:matrix(0.264902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264902,0.000000,0.000000,0.250000,0,0);}
.m90_c01003{transform:matrix(0.265323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265323,0.000000,0.000000,0.250000,0,0);}
.ma5_c01003{transform:matrix(0.265404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265404,0.000000,0.000000,0.250000,0,0);}
.m84_c01003{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.mc_c01003{transform:matrix(0.267066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267066,0.000000,0.000000,0.250000,0,0);}
.m8_c01003{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m5c_c01003{transform:matrix(0.269169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269169,0.000000,0.000000,0.250000,0,0);}
.ma1_c01003{transform:matrix(0.269513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269513,0.000000,0.000000,0.250000,0,0);}
.m6d_c01003{transform:matrix(0.270873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270873,0.000000,0.000000,0.250000,0,0);}
.m13_c01003{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.mab_c01003{transform:matrix(0.272304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272304,0.000000,0.000000,0.250000,0,0);}
.m5_c01003{transform:matrix(0.272841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272841,0.000000,0.000000,0.250000,0,0);}
.m24_c01003{transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);}
.m17_c01003{transform:matrix(0.273418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273418,0.000000,0.000000,0.250000,0,0);}
.m44_c01003{transform:matrix(0.273782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273782,0.000000,0.000000,0.250000,0,0);}
.m36_c01003{transform:matrix(0.273832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273832,0.000000,0.000000,0.250000,0,0);}
.m5a_c01003{transform:matrix(0.274533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274533,0.000000,0.000000,0.250000,0,0);}
.m29_c01003{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m40_c01003{transform:matrix(0.275619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275619,0.000000,0.000000,0.250000,0,0);}
.m23_c01003{transform:matrix(0.276166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276166,0.000000,0.000000,0.250000,0,0);}
.m57_c01003{transform:matrix(0.276320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276320,0.000000,0.000000,0.250000,0,0);}
.m9b_c01003{transform:matrix(0.276588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276588,0.000000,0.000000,0.250000,0,0);}
.m81_c01003{transform:matrix(0.276789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276789,0.000000,0.000000,0.250000,0,0);}
.m94_c01003{transform:matrix(0.278074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278074,0.000000,0.000000,0.250000,0,0);}
.m1c_c01003{transform:matrix(0.278259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278259,0.000000,0.000000,0.250000,0,0);}
.m27_c01003{transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);}
.m3e_c01003{transform:matrix(0.279020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279020,0.000000,0.000000,0.250000,0,0);}
.m80_c01003{transform:matrix(0.279571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279571,0.000000,0.000000,0.250000,0,0);}
.m67_c01003{transform:matrix(0.279679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279679,0.000000,0.000000,0.250000,0,0);}
.m1a_c01003{transform:matrix(0.280778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280778,0.000000,0.000000,0.250000,0,0);}
.m10_c01003{transform:matrix(0.280900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280900,0.000000,0.000000,0.250000,0,0);}
.m2_c01003{transform:matrix(0.281008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281008,0.000000,0.000000,0.250000,0,0);}
.m79_c01003{transform:matrix(0.281190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281190,0.000000,0.000000,0.250000,0,0);}
.m89_c01003{transform:matrix(0.281499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281499,0.000000,0.000000,0.250000,0,0);}
.m96_c01003{transform:matrix(0.282610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282610,0.000000,0.000000,0.250000,0,0);}
.m6b_c01003{transform:matrix(0.282808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282808,0.000000,0.000000,0.250000,0,0);}
.m82_c01003{transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);}
.m2e_c01003{transform:matrix(0.283506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283506,0.000000,0.000000,0.250000,0,0);}
.m19_c01003{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m33_c01003{transform:matrix(0.284276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284276,0.000000,0.000000,0.250000,0,0);}
.ma4_c01003{transform:matrix(0.284669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284669,0.000000,0.000000,0.250000,0,0);}
.ma7_c01003{transform:matrix(0.285092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285092,0.000000,0.000000,0.250000,0,0);}
.m6a_c01003{transform:matrix(0.286496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286496,0.000000,0.000000,0.250000,0,0);}
.m37_c01003{transform:matrix(0.288728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288728,0.000000,0.000000,0.250000,0,0);}
.m56_c01003{transform:matrix(0.288806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288806,0.000000,0.000000,0.250000,0,0);}
.m3c_c01003{transform:matrix(0.288974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288974,0.000000,0.000000,0.250000,0,0);}
.m4c_c01003{transform:matrix(0.289026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289026,0.000000,0.000000,0.250000,0,0);}
.m48_c01003{transform:matrix(0.289520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289520,0.000000,0.000000,0.250000,0,0);}
.ma9_c01003{transform:matrix(0.289777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289777,0.000000,0.000000,0.250000,0,0);}
.m21_c01003{transform:matrix(0.290180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290180,0.000000,0.000000,0.250000,0,0);}
.m15_c01003{transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);}
.mb_c01003{transform:matrix(0.290843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290843,0.000000,0.000000,0.250000,0,0);}
.m4e_c01003{transform:matrix(0.290942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290942,0.000000,0.000000,0.250000,0,0);}
.m2f_c01003{transform:matrix(0.291184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291184,0.000000,0.000000,0.250000,0,0);}
.m51_c01003{transform:matrix(0.291234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291234,0.000000,0.000000,0.250000,0,0);}
.m38_c01003{transform:matrix(0.291294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291294,0.000000,0.000000,0.250000,0,0);}
.m9f_c01003{transform:matrix(0.291530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291530,0.000000,0.000000,0.250000,0,0);}
.m1_c01003{transform:matrix(0.291578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291578,0.000000,0.000000,0.250000,0,0);}
.m5f_c01003{transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);}
.m3d_c01003{transform:matrix(0.291879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291879,0.000000,0.000000,0.250000,0,0);}
.m6c_c01003{transform:matrix(0.292375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292375,0.000000,0.000000,0.250000,0,0);}
.m7b_c01003{transform:matrix(0.294116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294116,0.000000,0.000000,0.250000,0,0);}
.m6e_c01003{transform:matrix(0.294600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294600,0.000000,0.000000,0.250000,0,0);}
.me_c01003{transform:matrix(0.295212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295212,0.000000,0.000000,0.250000,0,0);}
.ma_c01003{transform:matrix(0.296813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296813,0.000000,0.000000,0.250000,0,0);}
.m5e_c01003{transform:matrix(0.296854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296854,0.000000,0.000000,0.250000,0,0);}
.m3b_c01003{transform:matrix(0.296862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296862,0.000000,0.000000,0.250000,0,0);}
.m7c_c01003{transform:matrix(0.298155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298155,0.000000,0.000000,0.250000,0,0);}
.mf_c01003{transform:matrix(0.298568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298568,0.000000,0.000000,0.250000,0,0);}
.m34_c01003{transform:matrix(0.299063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299063,0.000000,0.000000,0.250000,0,0);}
.mac_c01003{transform:matrix(0.299102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299102,0.000000,0.000000,0.250000,0,0);}
.m61_c01003{transform:matrix(0.299262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299262,0.000000,0.000000,0.250000,0,0);}
.ma0_c01003{transform:matrix(0.299503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299503,0.000000,0.000000,0.250000,0,0);}
.m7a_c01003{transform:matrix(0.300671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300671,0.000000,0.000000,0.250000,0,0);}
.m1b_c01003{transform:matrix(0.301253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301253,0.000000,0.000000,0.250000,0,0);}
.m4f_c01003{transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);}
.m32_c01003{transform:matrix(0.301958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301958,0.000000,0.000000,0.250000,0,0);}
.m86_c01003{transform:matrix(0.302705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302705,0.000000,0.000000,0.250000,0,0);}
.m12_c01003{transform:matrix(0.303125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303125,0.000000,0.000000,0.250000,0,0);}
.m66_c01003{transform:matrix(0.303896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303896,0.000000,0.000000,0.250000,0,0);}
.m8d_c01003{transform:matrix(0.304737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304737,0.000000,0.000000,0.250000,0,0);}
.m2a_c01003{transform:matrix(0.305054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305054,0.000000,0.000000,0.250000,0,0);}
.m4a_c01003{transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);}
.m6_c01003{transform:matrix(0.305149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305149,0.000000,0.000000,0.250000,0,0);}
.m9d_c01003{transform:matrix(0.305306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305306,0.000000,0.000000,0.250000,0,0);}
.m76_c01003{transform:matrix(0.306108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306108,0.000000,0.000000,0.250000,0,0);}
.maa_c01003{transform:matrix(0.306657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306657,0.000000,0.000000,0.250000,0,0);}
.m4b_c01003{transform:matrix(0.306661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306661,0.000000,0.000000,0.250000,0,0);}
.m28_c01003{transform:matrix(0.307176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307176,0.000000,0.000000,0.250000,0,0);}
.m5b_c01003{transform:matrix(0.307409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307409,0.000000,0.000000,0.250000,0,0);}
.m7f_c01003{transform:matrix(0.307487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307487,0.000000,0.000000,0.250000,0,0);}
.m6f_c01003{transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307717,0.000000,0.000000,0.250000,0,0);}
.m50_c01003{transform:matrix(0.308070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308070,0.000000,0.000000,0.250000,0,0);}
.m88_c01003{transform:matrix(0.308326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308326,0.000000,0.000000,0.250000,0,0);}
.m18_c01003{transform:matrix(0.308564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308564,0.000000,0.000000,0.250000,0,0);}
.m99_c01003{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m54_c01003{transform:matrix(0.308662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308662,0.000000,0.000000,0.250000,0,0);}
.m75_c01003{transform:matrix(0.310131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310131,0.000000,0.000000,0.250000,0,0);}
.m85_c01003{transform:matrix(0.311640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311640,0.000000,0.000000,0.250000,0,0);}
.m83_c01003{transform:matrix(0.312870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312870,0.000000,0.000000,0.250000,0,0);}
.m42_c01003{transform:matrix(0.313301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313301,0.000000,0.000000,0.250000,0,0);}
.m93_c01003{transform:matrix(0.313766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313766,0.000000,0.000000,0.250000,0,0);}
.m64_c01003{transform:matrix(0.313782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313782,0.000000,0.000000,0.250000,0,0);}
.m9c_c01003{transform:matrix(0.314241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314241,0.000000,0.000000,0.250000,0,0);}
.m52_c01003{transform:matrix(0.314576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314576,0.000000,0.000000,0.250000,0,0);}
.m7_c01003{transform:matrix(0.314742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314742,0.000000,0.000000,0.250000,0,0);}
.m74_c01003{transform:matrix(0.314792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314792,0.000000,0.000000,0.250000,0,0);}
.ma2_c01003{transform:matrix(0.314815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314815,0.000000,0.000000,0.250000,0,0);}
.m41_c01003{transform:matrix(0.314821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314821,0.000000,0.000000,0.250000,0,0);}
.m4d_c01003{transform:matrix(0.315264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315264,0.000000,0.000000,0.250000,0,0);}
.m8b_c01003{transform:matrix(0.315281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315281,0.000000,0.000000,0.250000,0,0);}
.m45_c01003{transform:matrix(0.316677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316677,0.000000,0.000000,0.250000,0,0);}
.m91_c01003{transform:matrix(0.316886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316886,0.000000,0.000000,0.250000,0,0);}
.m47_c01003{transform:matrix(0.317242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317242,0.000000,0.000000,0.250000,0,0);}
.m2c_c01003{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);}
.m49_c01003{transform:matrix(0.318352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318352,0.000000,0.000000,0.250000,0,0);}
.m65_c01003{transform:matrix(0.319751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319751,0.000000,0.000000,0.250000,0,0);}
.m8e_c01003{transform:matrix(0.320153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320153,0.000000,0.000000,0.250000,0,0);}
.m5d_c01003{transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);}
.m98_c01003{transform:matrix(0.321807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321807,0.000000,0.000000,0.250000,0,0);}
.m35_c01003{transform:matrix(0.323442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323442,0.000000,0.000000,0.250000,0,0);}
.m68_c01003{transform:matrix(0.324827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324827,0.000000,0.000000,0.250000,0,0);}
.m2d_c01003{transform:matrix(0.325177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325177,0.000000,0.000000,0.250000,0,0);}
.m1d_c01003{transform:matrix(0.327244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327244,0.000000,0.000000,0.250000,0,0);}
.ma3_c01003{transform:matrix(0.327290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327290,0.000000,0.000000,0.250000,0,0);}
.m14_c01003{transform:matrix(0.327407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327407,0.000000,0.000000,0.250000,0,0);}
.m97_c01003{transform:matrix(0.327718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327718,0.000000,0.000000,0.250000,0,0);}
.m73_c01003{transform:matrix(0.328844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328844,0.000000,0.000000,0.250000,0,0);}
.m39_c01003{transform:matrix(0.329405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329405,0.000000,0.000000,0.250000,0,0);}
.m1e_c01003{transform:matrix(0.329705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329705,0.000000,0.000000,0.250000,0,0);}
.m71_c01003{transform:matrix(0.330220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330220,0.000000,0.000000,0.250000,0,0);}
.m8f_c01003{transform:matrix(0.330354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330354,0.000000,0.000000,0.250000,0,0);}
.m30_c01003{transform:matrix(0.330710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330710,0.000000,0.000000,0.250000,0,0);}
.m95_c01003{transform:matrix(0.331735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331735,0.000000,0.000000,0.250000,0,0);}
.m9e_c01003{transform:matrix(0.331934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331934,0.000000,0.000000,0.250000,0,0);}
.m77_c01003{transform:matrix(0.332408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332408,0.000000,0.000000,0.250000,0,0);}
.m7d_c01003{transform:matrix(0.335035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335035,0.000000,0.000000,0.250000,0,0);}
.m55_c01003{transform:matrix(0.335458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335458,0.000000,0.000000,0.250000,0,0);}
.m59_c01003{transform:matrix(0.336789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336789,0.000000,0.000000,0.250000,0,0);}
.m46_c01003{transform:matrix(0.338886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338886,0.000000,0.000000,0.250000,0,0);}
.m43_c01003{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m72_c01003{transform:matrix(0.342843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342843,0.000000,0.000000,0.250000,0,0);}
.m63_c01003{transform:matrix(0.346501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346501,0.000000,0.000000,0.250000,0,0);}
.m92_c01003{transform:matrix(0.351400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351400,0.000000,0.000000,0.250000,0,0);}
.m7e_c01003{transform:matrix(0.359755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359755,0.000000,0.000000,0.250000,0,0);}
.m60_c01003{transform:matrix(0.361241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361241,0.000000,0.000000,0.250000,0,0);}
.m8c_c01003{transform:matrix(0.369083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369083,0.000000,0.000000,0.250000,0,0);}
.m8a_c01003{transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);}
.m1f_c01003{transform:matrix(0.378960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378960,0.000000,0.000000,0.250000,0,0);}
.m11_c01003{transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);}
.m9_c01003{transform:matrix(0.385437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385437,0.000000,0.000000,0.250000,0,0);}
.m69_c01003{transform:matrix(0.391460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391460,0.000000,0.000000,0.250000,0,0);}
.ma8_c01003{transform:matrix(0.412670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412670,0.000000,0.000000,0.250000,0,0);}
.v0_c01003{vertical-align:0.000000px;}
.v1_c01003{vertical-align:24.235200px;}
.ls8_c01003{letter-spacing:-2.744280px;}
.ls7_c01003{letter-spacing:-1.427580px;}
.lsf_c01003{letter-spacing:-1.238846px;}
.lse_c01003{letter-spacing:-0.948737px;}
.ls3_c01003{letter-spacing:0.000000px;}
.lsd_c01003{letter-spacing:0.358974px;}
.ls0_c01003{letter-spacing:0.454766px;}
.ls1_c01003{letter-spacing:1.983722px;}
.lsa_c01003{letter-spacing:2.258150px;}
.ls17_c01003{letter-spacing:2.532578px;}
.ls12_c01003{letter-spacing:2.613600px;}
.ls13_c01003{letter-spacing:2.642350px;}
.ls14_c01003{letter-spacing:2.854051px;}
.ls11_c01003{letter-spacing:2.940300px;}
.ls16_c01003{letter-spacing:3.465000px;}
.ls10_c01003{letter-spacing:3.524400px;}
.ls4_c01003{letter-spacing:3.712500px;}
.ls15_c01003{letter-spacing:3.849833px;}
.lsb_c01003{letter-spacing:3.896878px;}
.ls5_c01003{letter-spacing:3.920400px;}
.ls6_c01003{letter-spacing:4.055990px;}
.ls2_c01003{letter-spacing:33.758901px;}
.ls9_c01003{letter-spacing:49.896198px;}
.lsc_c01003{letter-spacing:57.024198px;}
.sc__c01003{text-shadow:none;}
.sc0_c01003{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01003{-webkit-text-stroke:0px transparent;}
.sc0_c01003{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01003{word-spacing:-20.056766px;}
.ws1_c01003{word-spacing:-19.602000px;}
.ws2_c01003{word-spacing:0.000000px;}
._7_c01003{margin-left:-10.663488px;}
._1_c01003{margin-left:-4.579027px;}
._5_c01003{width:4.390848px;}
._0_c01003{width:6.900300px;}
._2_c01003{width:11.289960px;}
._8_c01003{width:12.780504px;}
._6_c01003{width:18.504288px;}
._4_c01003{width:24.957266px;}
._3_c01003{width:31.114908px;}
.fc0_c01003{color:transparent;}
.fs0_c01003{font-size:22.176000px;}
.fs13_c01003{font-size:34.848000px;}
.fs7_c01003{font-size:40.788000px;}
.fse_c01003{font-size:45.144000px;}
.fs12_c01003{font-size:48.906198px;}
.fs8_c01003{font-size:49.896198px;}
.fsf_c01003{font-size:52.272000px;}
.fsa_c01003{font-size:57.024198px;}
.fs2_c01003{font-size:61.776198px;}
.fs6_c01003{font-size:66.330000px;}
.fs11_c01003{font-size:69.300000px;}
.fsd_c01003{font-size:70.488000px;}
.fs10_c01003{font-size:72.864000px;}
.fsc_c01003{font-size:73.260000px;}
.fs1_c01003{font-size:74.250000px;}
.fs9_c01003{font-size:74.844000px;}
.fsb_c01003{font-size:75.240000px;}
.fs3_c01003{font-size:78.408000px;}
.fs5_c01003{font-size:80.388000px;}
.fs4_c01003{font-size:98.208000px;}
.y0_c01003{bottom:0.000000px;}
.y1_c01003{bottom:76.500000px;}
.y20_c01003{bottom:89.006970px;}
.y1f_c01003{bottom:236.200170px;}
.y1e_c01003{bottom:249.748320px;}
.y1d_c01003{bottom:275.765520px;}
.y1c_c01003{bottom:281.824320px;}
.y1b_c01003{bottom:312.831120px;}
.y1a_c01003{bottom:344.194320px;}
.y19_c01003{bottom:375.913920px;}
.y18_c01003{bottom:407.272170px;}
.y17_c01003{bottom:427.586970px;}
.y16_c01003{bottom:438.283920px;}
.y15_c01003{bottom:470.359920px;}
.y14_c01003{bottom:501.718170px;}
.y13_c01003{bottom:533.442720px;}
.y12_c01003{bottom:565.518720px;}
.y11_c01003{bottom:597.238320px;}
.ye_c01003{bottom:629.314320px;}
.y10_c01003{bottom:645.708720px;}
.yf_c01003{bottom:660.677520px;}
.yd_c01003{bottom:661.033920px;}
.y2_c01003{bottom:663.885120px;}
.yc_c01003{bottom:692.748570px;}
.yb_c01003{bottom:724.111770px;}
.ya_c01003{bottom:755.836320px;}
.y9_c01003{bottom:787.199520px;}
.y8_c01003{bottom:818.206320px;}
.y7_c01003{bottom:849.213120px;}
.y6_c01003{bottom:881.640570px;}
.y5_c01003{bottom:913.365120px;}
.y4_c01003{bottom:938.669520px;}
.y3_c01003{bottom:1051.999770px;}
.h2_c01003{height:23.128875px;}
.h9_c01003{height:33.230868px;}
.h13_c01003{height:34.201406px;}
.hb_c01003{height:37.978116px;}
.h8_c01003{height:40.031191px;}
.hf_c01003{height:47.083781px;}
.h10_c01003{height:51.302109px;}
.h4_c01003{height:60.629960px;}
.he_c01003{height:69.180117px;}
.h11_c01003{height:72.277734px;}
.h3_c01003{height:72.872314px;}
.ha_c01003{height:73.455293px;}
.hd_c01003{height:76.407891px;}
.h5_c01003{height:76.953164px;}
.hc_c01003{height:78.472969px;}
.h7_c01003{height:78.896426px;}
.h6_c01003{height:96.385781px;}
.h12_c01003{height:101.188364px;}
.h1_c01003{height:1110.000000px;}
.h0_c01003{height:1263.000000px;}
.w1_c01003{width:763.500000px;}
.w0_c01003{width:892.500000px;}
.x0_c01003{left:0.000000px;}
.x2_c01003{left:47.897235px;}
.x1_c01003{left:64.500000px;}
.x2a_c01003{left:74.666835px;}
.x5_c01003{left:76.226085px;}
.x17_c01003{left:107.807085px;}
.x4d_c01003{left:109.415835px;}
.x10_c01003{left:118.885185px;}
.x62_c01003{left:120.068235px;}
.x5c_c01003{left:121.478985px;}
.x30_c01003{left:131.131485px;}
.x21_c01003{left:142.204635px;}
.x59_c01003{left:152.015535px;}
.x6_c01003{left:154.792485px;}
.x11_c01003{left:155.886435px;}
.x3c_c01003{left:163.672785px;}
.x2b_c01003{left:174.142035px;}
.x12_c01003{left:176.027985px;}
.x35_c01003{left:186.418035px;}
.x18_c01003{left:187.422885px;}
.x68_c01003{left:189.031635px;}
.x3d_c01003{left:197.416935px;}
.x47_c01003{left:207.599085px;}
.x13_c01003{left:208.871235px;}
.x36_c01003{left:219.503835px;}
.x57_c01003{left:231.319485px;}
.x7_c01003{left:242.016435px;}
.x22_c01003{left:253.391535px;}
.x5f_c01003{left:262.836135px;}
.x48_c01003{left:264.118185px;}
.x31_c01003{left:274.240935px;}
.x19_c01003{left:276.225885px;}
.x23_c01003{left:286.150635px;}
.x8_c01003{left:287.269335px;}
.x1a_c01003{left:298.565235px;}
.x3e_c01003{left:309.306735px;}
.x24_c01003{left:319.711635px;}
.x5a_c01003{left:320.998635px;}
.x44_c01003{left:330.210585px;}
.x1b_c01003{left:331.433235px;}
.x58_c01003{left:342.105435px;}
.x60_c01003{left:343.204335px;}
.x9_c01003{left:353.173635px;}
.x25_c01003{left:364.068585px;}
.x4e_c01003{left:365.202135px;}
.x32_c01003{left:374.933835px;}
.x50_c01003{left:376.314885px;}
.x65_c01003{left:385.447635px;}
.x14_c01003{left:397.347435px;}
.x5d_c01003{left:399.035385px;}
.x3f_c01003{left:408.955185px;}
.x37_c01003{left:410.108535px;}
.x26_c01003{left:418.632435px;}
.x49_c01003{left:420.874785px;}
.xa_c01003{left:430.858935px;}
.x1c_c01003{left:431.928135px;}
.x63_c01003{left:441.412335px;}
.x2c_c01003{left:442.907235px;}
.x4a_c01003{left:452.134035px;}
.x27_c01003{left:453.208185px;}
.x55_c01003{left:465.439635px;}
.x2d_c01003{left:475.686135px;}
.x40_c01003{left:485.779185px;}
.x4b_c01003{left:487.541385px;}
.x33_c01003{left:492.897285px;}
.x34_c01003{left:497.787885px;}
.x51_c01003{left:508.603635px;}
.x1d_c01003{left:520.335135px;}
.x38_c01003{left:531.007335px;}
.xb_c01003{left:541.743885px;}
.x5b_c01003{left:543.110085px;}
.x41_c01003{left:552.797235px;}
.x52_c01003{left:554.173335px;}
.x2e_c01003{left:562.568535px;}
.x45_c01003{left:564.073335px;}
.xc_c01003{left:574.116885px;}
.x28_c01003{left:575.849385px;}
.x42_c01003{left:585.912735px;}
.x39_c01003{left:596.094885px;}
.x64_c01003{left:598.055085px;}
.xd_c01003{left:606.776985px;}
.x61_c01003{left:607.826385px;}
.x67_c01003{left:610.296435px;}
.x3a_c01003{left:620.042985px;}
.x43_c01003{left:629.581635px;}
.x1e_c01003{left:631.348785px;}
.x1f_c01003{left:640.446885px;}
.x2f_c01003{left:651.495285px;}
.x69_c01003{left:652.940685px;}
.x15_c01003{left:663.152535px;}
.x5e_c01003{left:664.300935px;}
.x3b_c01003{left:674.532585px;}
.x53_c01003{left:675.725535px;}
.x3_c01003{left:684.249435px;}
.xe_c01003{left:686.704635px;}
.x66_c01003{left:693.288135px;}
.x29_c01003{left:696.386835px;}
.x56_c01003{left:697.446135px;}
.x4_c01003{left:700.297335px;}
.x20_c01003{left:707.415435px;}
.x46_c01003{left:717.973785px;}
.x4c_c01003{left:719.236035px;}
.xf_c01003{left:730.160685px;}
.x4f_c01003{left:731.348685px;}
.x16_c01003{left:742.728735px;}
.x54_c01003{left:749.861685px;}
@media print{
.v0_c01003{vertical-align:0.000000pt;}
.v1_c01003{vertical-align:21.542400pt;}
.ls8_c01003{letter-spacing:-2.439360pt;}
.ls7_c01003{letter-spacing:-1.268960pt;}
.lsf_c01003{letter-spacing:-1.101197pt;}
.lse_c01003{letter-spacing:-0.843322pt;}
.ls3_c01003{letter-spacing:0.000000pt;}
.lsd_c01003{letter-spacing:0.319088pt;}
.ls0_c01003{letter-spacing:0.404237pt;}
.ls1_c01003{letter-spacing:1.763309pt;}
.lsa_c01003{letter-spacing:2.007245pt;}
.ls17_c01003{letter-spacing:2.251181pt;}
.ls12_c01003{letter-spacing:2.323200pt;}
.ls13_c01003{letter-spacing:2.348755pt;}
.ls14_c01003{letter-spacing:2.536934pt;}
.ls11_c01003{letter-spacing:2.613600pt;}
.ls16_c01003{letter-spacing:3.080000pt;}
.ls10_c01003{letter-spacing:3.132800pt;}
.ls4_c01003{letter-spacing:3.300000pt;}
.ls15_c01003{letter-spacing:3.422074pt;}
.lsb_c01003{letter-spacing:3.463891pt;}
.ls5_c01003{letter-spacing:3.484800pt;}
.ls6_c01003{letter-spacing:3.605325pt;}
.ls2_c01003{letter-spacing:30.007912pt;}
.ls9_c01003{letter-spacing:44.352176pt;}
.lsc_c01003{letter-spacing:50.688176pt;}
.ws0_c01003{word-spacing:-17.828237pt;}
.ws1_c01003{word-spacing:-17.424000pt;}
.ws2_c01003{word-spacing:0.000000pt;}
._7_c01003{margin-left:-9.478656pt;}
._1_c01003{margin-left:-4.070246pt;}
._5_c01003{width:3.902976pt;}
._0_c01003{width:6.133600pt;}
._2_c01003{width:10.035520pt;}
._8_c01003{width:11.360448pt;}
._6_c01003{width:16.448256pt;}
._4_c01003{width:22.184237pt;}
._3_c01003{width:27.657696pt;}
.fs0_c01003{font-size:19.712000pt;}
.fs13_c01003{font-size:30.976000pt;}
.fs7_c01003{font-size:36.256000pt;}
.fse_c01003{font-size:40.128000pt;}
.fs12_c01003{font-size:43.472176pt;}
.fs8_c01003{font-size:44.352176pt;}
.fsf_c01003{font-size:46.464000pt;}
.fsa_c01003{font-size:50.688176pt;}
.fs2_c01003{font-size:54.912176pt;}
.fs6_c01003{font-size:58.960000pt;}
.fs11_c01003{font-size:61.600000pt;}
.fsd_c01003{font-size:62.656000pt;}
.fs10_c01003{font-size:64.768000pt;}
.fsc_c01003{font-size:65.120000pt;}
.fs1_c01003{font-size:66.000000pt;}
.fs9_c01003{font-size:66.528000pt;}
.fsb_c01003{font-size:66.880000pt;}
.fs3_c01003{font-size:69.696000pt;}
.fs5_c01003{font-size:71.456000pt;}
.fs4_c01003{font-size:87.296000pt;}
.y0_c01003{bottom:0.000000pt;}
.y1_c01003{bottom:68.000000pt;}
.y20_c01003{bottom:79.117307pt;}
.y1f_c01003{bottom:209.955707pt;}
.y1e_c01003{bottom:221.998507pt;}
.y1d_c01003{bottom:245.124907pt;}
.y1c_c01003{bottom:250.510507pt;}
.y1b_c01003{bottom:278.072107pt;}
.y1a_c01003{bottom:305.950507pt;}
.y19_c01003{bottom:334.145707pt;}
.y18_c01003{bottom:362.019707pt;}
.y17_c01003{bottom:380.077307pt;}
.y16_c01003{bottom:389.585707pt;}
.y15_c01003{bottom:418.097707pt;}
.y14_c01003{bottom:445.971707pt;}
.y13_c01003{bottom:474.171307pt;}
.y12_c01003{bottom:502.683307pt;}
.y11_c01003{bottom:530.878507pt;}
.ye_c01003{bottom:559.390507pt;}
.y10_c01003{bottom:573.963307pt;}
.yf_c01003{bottom:587.268907pt;}
.yd_c01003{bottom:587.585707pt;}
.y2_c01003{bottom:590.120107pt;}
.yc_c01003{bottom:615.776507pt;}
.yb_c01003{bottom:643.654907pt;}
.ya_c01003{bottom:671.854507pt;}
.y9_c01003{bottom:699.732907pt;}
.y8_c01003{bottom:727.294507pt;}
.y7_c01003{bottom:754.856107pt;}
.y6_c01003{bottom:783.680507pt;}
.y5_c01003{bottom:811.880107pt;}
.y4_c01003{bottom:834.372907pt;}
.y3_c01003{bottom:935.110907pt;}
.h2_c01003{height:20.559000pt;}
.h9_c01003{height:29.538549pt;}
.h13_c01003{height:30.401250pt;}
.hb_c01003{height:33.758325pt;}
.h8_c01003{height:35.583281pt;}
.hf_c01003{height:41.852250pt;}
.h10_c01003{height:45.601875pt;}
.h4_c01003{height:53.893298pt;}
.he_c01003{height:61.493438pt;}
.h11_c01003{height:64.246875pt;}
.h3_c01003{height:64.775391pt;}
.ha_c01003{height:65.293594pt;}
.hd_c01003{height:67.918125pt;}
.h5_c01003{height:68.402813pt;}
.hc_c01003{height:69.753750pt;}
.h7_c01003{height:70.130156pt;}
.h6_c01003{height:85.676250pt;}
.h12_c01003{height:89.945213pt;}
.h1_c01003{height:986.666667pt;}
.h0_c01003{height:1122.666667pt;}
.w1_c01003{width:678.666667pt;}
.w0_c01003{width:793.333333pt;}
.x0_c01003{left:0.000000pt;}
.x2_c01003{left:42.575320pt;}
.x1_c01003{left:57.333333pt;}
.x2a_c01003{left:66.370520pt;}
.x5_c01003{left:67.756520pt;}
.x17_c01003{left:95.828520pt;}
.x4d_c01003{left:97.258520pt;}
.x10_c01003{left:105.675720pt;}
.x62_c01003{left:106.727320pt;}
.x5c_c01003{left:107.981320pt;}
.x30_c01003{left:116.561320pt;}
.x21_c01003{left:126.404120pt;}
.x59_c01003{left:135.124920pt;}
.x6_c01003{left:137.593320pt;}
.x11_c01003{left:138.565720pt;}
.x3c_c01003{left:145.486920pt;}
.x2b_c01003{left:154.792920pt;}
.x12_c01003{left:156.469320pt;}
.x35_c01003{left:165.704920pt;}
.x18_c01003{left:166.598120pt;}
.x68_c01003{left:168.028120pt;}
.x3d_c01003{left:175.481720pt;}
.x47_c01003{left:184.532520pt;}
.x13_c01003{left:185.663320pt;}
.x36_c01003{left:195.114520pt;}
.x57_c01003{left:205.617320pt;}
.x7_c01003{left:215.125720pt;}
.x22_c01003{left:225.236920pt;}
.x5f_c01003{left:233.632120pt;}
.x48_c01003{left:234.771720pt;}
.x31_c01003{left:243.769720pt;}
.x19_c01003{left:245.534120pt;}
.x23_c01003{left:254.356120pt;}
.x8_c01003{left:255.350520pt;}
.x1a_c01003{left:265.391320pt;}
.x3e_c01003{left:274.939320pt;}
.x24_c01003{left:284.188120pt;}
.x5a_c01003{left:285.332120pt;}
.x44_c01003{left:293.520520pt;}
.x1b_c01003{left:294.607320pt;}
.x58_c01003{left:304.093720pt;}
.x60_c01003{left:305.070520pt;}
.x9_c01003{left:313.932120pt;}
.x25_c01003{left:323.616520pt;}
.x4e_c01003{left:324.624120pt;}
.x32_c01003{left:333.274520pt;}
.x50_c01003{left:334.502120pt;}
.x65_c01003{left:342.620120pt;}
.x14_c01003{left:353.197720pt;}
.x5d_c01003{left:354.698120pt;}
.x3f_c01003{left:363.515720pt;}
.x37_c01003{left:364.540920pt;}
.x26_c01003{left:372.117720pt;}
.x49_c01003{left:374.110920pt;}
.xa_c01003{left:382.985720pt;}
.x1c_c01003{left:383.936120pt;}
.x63_c01003{left:392.366520pt;}
.x2c_c01003{left:393.695320pt;}
.x4a_c01003{left:401.896920pt;}
.x27_c01003{left:402.851720pt;}
.x55_c01003{left:413.724120pt;}
.x2d_c01003{left:422.832120pt;}
.x40_c01003{left:431.803720pt;}
.x4b_c01003{left:433.370120pt;}
.x33_c01003{left:438.130920pt;}
.x34_c01003{left:442.478120pt;}
.x51_c01003{left:452.092120pt;}
.x1d_c01003{left:462.520120pt;}
.x38_c01003{left:472.006520pt;}
.xb_c01003{left:481.550120pt;}
.x5b_c01003{left:482.764520pt;}
.x41_c01003{left:491.375320pt;}
.x52_c01003{left:492.598520pt;}
.x2e_c01003{left:500.060920pt;}
.x45_c01003{left:501.398520pt;}
.xc_c01003{left:510.326120pt;}
.x28_c01003{left:511.866120pt;}
.x42_c01003{left:520.811320pt;}
.x39_c01003{left:529.862120pt;}
.x64_c01003{left:531.604520pt;}
.xd_c01003{left:539.357320pt;}
.x61_c01003{left:540.290120pt;}
.x67_c01003{left:542.485720pt;}
.x3a_c01003{left:551.149320pt;}
.x43_c01003{left:559.628120pt;}
.x1e_c01003{left:561.198920pt;}
.x1f_c01003{left:569.286120pt;}
.x2f_c01003{left:579.106920pt;}
.x69_c01003{left:580.391720pt;}
.x15_c01003{left:589.468920pt;}
.x5e_c01003{left:590.489720pt;}
.x3b_c01003{left:599.584520pt;}
.x53_c01003{left:600.644920pt;}
.x3_c01003{left:608.221720pt;}
.xe_c01003{left:610.404120pt;}
.x66_c01003{left:616.256120pt;}
.x29_c01003{left:619.010520pt;}
.x56_c01003{left:619.952120pt;}
.x4_c01003{left:622.486520pt;}
.x20_c01003{left:628.813720pt;}
.x46_c01003{left:638.198920pt;}
.x4c_c01003{left:639.320920pt;}
.xf_c01003{left:649.031720pt;}
.x4f_c01003{left:650.087720pt;}
.x16_c01003{left:660.203320pt;}
.x54_c01003{left:666.543720pt;}
}





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

.ir_c01004:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01004{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01004;src:url('chunks/assets/font_06e0b439f21481bc0ed08752.woff2')format("woff");}.ff1_c01004{font-family:ff1_c01004;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01004;src:url('chunks/assets/font_713b3bed529d7898323bee38.woff2')format("woff");}.ff2_c01004{font-family:ff2_c01004;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01004;src:url('chunks/assets/font_edcc006c864d99e56da12f3a.woff2')format("woff");}.ff3_c01004{font-family:ff3_c01004;line-height:0.689941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01004;src:url('chunks/assets/font_45aecd8bc100dc565d027fbb.woff2')format("woff");}.ff4_c01004{font-family:ff4_c01004;line-height:0.666000;font-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_c01004{transform:matrix(0.157072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157072,0.000000,0.000000,0.250000,0,0);}
.m64_c01004{transform:matrix(0.186586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186586,0.000000,0.000000,0.250000,0,0);}
.mc0_c01004{transform:matrix(0.193610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193610,0.000000,0.000000,0.250000,0,0);}
.m1b_c01004{transform:matrix(0.206015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206015,0.000000,0.000000,0.250000,0,0);}
.m0_c01004{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m85_c01004{transform:matrix(0.250385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250385,0.000000,0.000000,0.250000,0,0);}
.m6a_c01004{transform:matrix(0.250825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250825,0.000000,0.000000,0.250000,0,0);}
.m38_c01004{transform:matrix(0.251385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251385,0.000000,0.000000,0.250000,0,0);}
.m5d_c01004{transform:matrix(0.252117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252117,0.000000,0.000000,0.250000,0,0);}
.m7_c01004{transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);}
.mf_c01004{transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);}
.m8d_c01004{transform:matrix(0.254039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254039,0.000000,0.000000,0.250000,0,0);}
.m2a_c01004{transform:matrix(0.254614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254614,0.000000,0.000000,0.250000,0,0);}
.m53_c01004{transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);}
.m26_c01004{transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);}
.ma3_c01004{transform:matrix(0.256822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256822,0.000000,0.000000,0.250000,0,0);}
.m7b_c01004{transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);}
.m8f_c01004{transform:matrix(0.258122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258122,0.000000,0.000000,0.250000,0,0);}
.m58_c01004{transform:matrix(0.258148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258148,0.000000,0.000000,0.250000,0,0);}
.m40_c01004{transform:matrix(0.258186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258186,0.000000,0.000000,0.250000,0,0);}
.m16_c01004{transform:matrix(0.258430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258430,0.000000,0.000000,0.250000,0,0);}
.m91_c01004{transform:matrix(0.259223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259223,0.000000,0.000000,0.250000,0,0);}
.m75_c01004{transform:matrix(0.259291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259291,0.000000,0.000000,0.250000,0,0);}
.m78_c01004{transform:matrix(0.260103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260103,0.000000,0.000000,0.250000,0,0);}
.mc_c01004{transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);}
.mae_c01004{transform:matrix(0.261055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261055,0.000000,0.000000,0.250000,0,0);}
.m1e_c01004{transform:matrix(0.261390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261390,0.000000,0.000000,0.250000,0,0);}
.m70_c01004{transform:matrix(0.261484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261484,0.000000,0.000000,0.250000,0,0);}
.m4b_c01004{transform:matrix(0.261958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261958,0.000000,0.000000,0.250000,0,0);}
.m3e_c01004{transform:matrix(0.262191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262191,0.000000,0.000000,0.250000,0,0);}
.m66_c01004{transform:matrix(0.262285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262285,0.000000,0.000000,0.250000,0,0);}
.m51_c01004{transform:matrix(0.262924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262924,0.000000,0.000000,0.250000,0,0);}
.m7c_c01004{transform:matrix(0.262979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262979,0.000000,0.000000,0.250000,0,0);}
.m63_c01004{transform:matrix(0.263278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263278,0.000000,0.000000,0.250000,0,0);}
.m62_c01004{transform:matrix(0.263427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263427,0.000000,0.000000,0.250000,0,0);}
.m19_c01004{transform:matrix(0.264321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264321,0.000000,0.000000,0.250000,0,0);}
.m23_c01004{transform:matrix(0.264495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264495,0.000000,0.000000,0.250000,0,0);}
.m2c_c01004{transform:matrix(0.264852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264852,0.000000,0.000000,0.250000,0,0);}
.m4_c01004{transform:matrix(0.265618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265618,0.000000,0.000000,0.250000,0,0);}
.m10_c01004{transform:matrix(0.266448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266448,0.000000,0.000000,0.250000,0,0);}
.m5f_c01004{transform:matrix(0.267085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267085,0.000000,0.000000,0.250000,0,0);}
.m8e_c01004{transform:matrix(0.267521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267521,0.000000,0.000000,0.250000,0,0);}
.m5c_c01004{transform:matrix(0.267754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267754,0.000000,0.000000,0.250000,0,0);}
.m68_c01004{transform:matrix(0.268189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268189,0.000000,0.000000,0.250000,0,0);}
.m24_c01004{transform:matrix(0.269786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269786,0.000000,0.000000,0.250000,0,0);}
.m81_c01004{transform:matrix(0.269863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269863,0.000000,0.000000,0.250000,0,0);}
.m12_c01004{transform:matrix(0.270049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270049,0.000000,0.000000,0.250000,0,0);}
.m72_c01004{transform:matrix(0.270540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270540,0.000000,0.000000,0.250000,0,0);}
.m88_c01004{transform:matrix(0.271294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271294,0.000000,0.000000,0.250000,0,0);}
.m99_c01004{transform:matrix(0.271800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271800,0.000000,0.000000,0.250000,0,0);}
.m48_c01004{transform:matrix(0.272535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272535,0.000000,0.000000,0.250000,0,0);}
.mbf_c01004{transform:matrix(0.273058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273058,0.000000,0.000000,0.250000,0,0);}
.m8b_c01004{transform:matrix(0.273462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273462,0.000000,0.000000,0.250000,0,0);}
.m14_c01004{transform:matrix(0.273513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273513,0.000000,0.000000,0.250000,0,0);}
.m98_c01004{transform:matrix(0.273738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273738,0.000000,0.000000,0.250000,0,0);}
.m7a_c01004{transform:matrix(0.274087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274087,0.000000,0.000000,0.250000,0,0);}
.ma1_c01004{transform:matrix(0.274130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274130,0.000000,0.000000,0.250000,0,0);}
.m3d_c01004{transform:matrix(0.274668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274668,0.000000,0.000000,0.250000,0,0);}
.mb_c01004{transform:matrix(0.274727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274727,0.000000,0.000000,0.250000,0,0);}
.mab_c01004{transform:matrix(0.274899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274899,0.000000,0.000000,0.250000,0,0);}
.mb4_c01004{transform:matrix(0.275097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275097,0.000000,0.000000,0.250000,0,0);}
.m1c_c01004{transform:matrix(0.275232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275232,0.000000,0.000000,0.250000,0,0);}
.m3b_c01004{transform:matrix(0.275369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275369,0.000000,0.000000,0.250000,0,0);}
.mb0_c01004{transform:matrix(0.276127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276127,0.000000,0.000000,0.250000,0,0);}
.m8c_c01004{transform:matrix(0.276550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276550,0.000000,0.000000,0.250000,0,0);}
.m54_c01004{transform:matrix(0.277316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277316,0.000000,0.000000,0.250000,0,0);}
.maf_c01004{transform:matrix(0.277433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277433,0.000000,0.000000,0.250000,0,0);}
.m25_c01004{transform:matrix(0.277719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277719,0.000000,0.000000,0.250000,0,0);}
.m29_c01004{transform:matrix(0.278169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278169,0.000000,0.000000,0.250000,0,0);}
.m3c_c01004{transform:matrix(0.278222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278222,0.000000,0.000000,0.250000,0,0);}
.m80_c01004{transform:matrix(0.278834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278834,0.000000,0.000000,0.250000,0,0);}
.m84_c01004{transform:matrix(0.279155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279155,0.000000,0.000000,0.250000,0,0);}
.m1a_c01004{transform:matrix(0.279414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279414,0.000000,0.000000,0.250000,0,0);}
.m3_c01004{transform:matrix(0.279931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279931,0.000000,0.000000,0.250000,0,0);}
.m74_c01004{transform:matrix(0.280463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280463,0.000000,0.000000,0.250000,0,0);}
.m2d_c01004{transform:matrix(0.280468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280468,0.000000,0.000000,0.250000,0,0);}
.m93_c01004{transform:matrix(0.281118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281118,0.000000,0.000000,0.250000,0,0);}
.mb9_c01004{transform:matrix(0.281214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281214,0.000000,0.000000,0.250000,0,0);}
.mac_c01004{transform:matrix(0.281416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281416,0.000000,0.000000,0.250000,0,0);}
.m55_c01004{transform:matrix(0.281659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281659,0.000000,0.000000,0.250000,0,0);}
.m96_c01004{transform:matrix(0.281815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281815,0.000000,0.000000,0.250000,0,0);}
.mbd_c01004{transform:matrix(0.281871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281871,0.000000,0.000000,0.250000,0,0);}
.m52_c01004{transform:matrix(0.281915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281915,0.000000,0.000000,0.250000,0,0);}
.m5b_c01004{transform:matrix(0.281954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281954,0.000000,0.000000,0.250000,0,0);}
.m8a_c01004{transform:matrix(0.282090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282090,0.000000,0.000000,0.250000,0,0);}
.ma0_c01004{transform:matrix(0.282308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282308,0.000000,0.000000,0.250000,0,0);}
.m87_c01004{transform:matrix(0.283027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283027,0.000000,0.000000,0.250000,0,0);}
.m4a_c01004{transform:matrix(0.283259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283259,0.000000,0.000000,0.250000,0,0);}
.m43_c01004{transform:matrix(0.283747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283747,0.000000,0.000000,0.250000,0,0);}
.m11_c01004{transform:matrix(0.284113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284113,0.000000,0.000000,0.250000,0,0);}
.mbe_c01004{transform:matrix(0.284144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284144,0.000000,0.000000,0.250000,0,0);}
.m1d_c01004{transform:matrix(0.285286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285286,0.000000,0.000000,0.250000,0,0);}
.m9_c01004{transform:matrix(0.285721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285721,0.000000,0.000000,0.250000,0,0);}
.m37_c01004{transform:matrix(0.286023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286023,0.000000,0.000000,0.250000,0,0);}
.ma5_c01004{transform:matrix(0.286154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286154,0.000000,0.000000,0.250000,0,0);}
.m65_c01004{transform:matrix(0.286638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286638,0.000000,0.000000,0.250000,0,0);}
.m67_c01004{transform:matrix(0.286737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286737,0.000000,0.000000,0.250000,0,0);}
.mb8_c01004{transform:matrix(0.286890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286890,0.000000,0.000000,0.250000,0,0);}
.m9d_c01004{transform:matrix(0.287093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287093,0.000000,0.000000,0.250000,0,0);}
.m30_c01004{transform:matrix(0.287811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287811,0.000000,0.000000,0.250000,0,0);}
.m1_c01004{transform:matrix(0.288029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288029,0.000000,0.000000,0.250000,0,0);}
.m2b_c01004{transform:matrix(0.288220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288220,0.000000,0.000000,0.250000,0,0);}
.mb1_c01004{transform:matrix(0.288934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288934,0.000000,0.000000,0.250000,0,0);}
.m47_c01004{transform:matrix(0.289053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289053,0.000000,0.000000,0.250000,0,0);}
.m3a_c01004{transform:matrix(0.289247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289247,0.000000,0.000000,0.250000,0,0);}
.mad_c01004{transform:matrix(0.289590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289590,0.000000,0.000000,0.250000,0,0);}
.m32_c01004{transform:matrix(0.289929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289929,0.000000,0.000000,0.250000,0,0);}
.mb5_c01004{transform:matrix(0.290176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290176,0.000000,0.000000,0.250000,0,0);}
.m6_c01004{transform:matrix(0.290556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290556,0.000000,0.000000,0.250000,0,0);}
.m20_c01004{transform:matrix(0.290667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290667,0.000000,0.000000,0.250000,0,0);}
.m49_c01004{transform:matrix(0.290845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290845,0.000000,0.000000,0.250000,0,0);}
.m33_c01004{transform:matrix(0.291199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291199,0.000000,0.000000,0.250000,0,0);}
.me_c01004{transform:matrix(0.291589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291589,0.000000,0.000000,0.250000,0,0);}
.m3f_c01004{transform:matrix(0.292825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292825,0.000000,0.000000,0.250000,0,0);}
.m6b_c01004{transform:matrix(0.293129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293129,0.000000,0.000000,0.250000,0,0);}
.m4e_c01004{transform:matrix(0.293261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293261,0.000000,0.000000,0.250000,0,0);}
.m35_c01004{transform:matrix(0.293424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293424,0.000000,0.000000,0.250000,0,0);}
.m5a_c01004{transform:matrix(0.293874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293874,0.000000,0.000000,0.250000,0,0);}
.m45_c01004{transform:matrix(0.295697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295697,0.000000,0.000000,0.250000,0,0);}
.m56_c01004{transform:matrix(0.296235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296235,0.000000,0.000000,0.250000,0,0);}
.mb7_c01004{transform:matrix(0.296328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296328,0.000000,0.000000,0.250000,0,0);}
.mba_c01004{transform:matrix(0.296351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296351,0.000000,0.000000,0.250000,0,0);}
.m7f_c01004{transform:matrix(0.296594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296594,0.000000,0.000000,0.250000,0,0);}
.mb6_c01004{transform:matrix(0.296869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296869,0.000000,0.000000,0.250000,0,0);}
.ma2_c01004{transform:matrix(0.296923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296923,0.000000,0.000000,0.250000,0,0);}
.m17_c01004{transform:matrix(0.297635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297635,0.000000,0.000000,0.250000,0,0);}
.m71_c01004{transform:matrix(0.298075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298075,0.000000,0.000000,0.250000,0,0);}
.m50_c01004{transform:matrix(0.298379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298379,0.000000,0.000000,0.250000,0,0);}
.m76_c01004{transform:matrix(0.299346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299346,0.000000,0.000000,0.250000,0,0);}
.m94_c01004{transform:matrix(0.299926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299926,0.000000,0.000000,0.250000,0,0);}
.ma9_c01004{transform:matrix(0.300086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300086,0.000000,0.000000,0.250000,0,0);}
.m73_c01004{transform:matrix(0.300190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300190,0.000000,0.000000,0.250000,0,0);}
.m39_c01004{transform:matrix(0.300341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300341,0.000000,0.000000,0.250000,0,0);}
.m9e_c01004{transform:matrix(0.300402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300402,0.000000,0.000000,0.250000,0,0);}
.m9b_c01004{transform:matrix(0.300556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300556,0.000000,0.000000,0.250000,0,0);}
.m42_c01004{transform:matrix(0.300778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300778,0.000000,0.000000,0.250000,0,0);}
.m79_c01004{transform:matrix(0.300841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300841,0.000000,0.000000,0.250000,0,0);}
.m18_c01004{transform:matrix(0.301129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301129,0.000000,0.000000,0.250000,0,0);}
.m7d_c01004{transform:matrix(0.301315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301315,0.000000,0.000000,0.250000,0,0);}
.m6e_c01004{transform:matrix(0.302823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302823,0.000000,0.000000,0.250000,0,0);}
.m59_c01004{transform:matrix(0.304356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304356,0.000000,0.000000,0.250000,0,0);}
.mb2_c01004{transform:matrix(0.304570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304570,0.000000,0.000000,0.250000,0,0);}
.mb3_c01004{transform:matrix(0.304675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304675,0.000000,0.000000,0.250000,0,0);}
.m9c_c01004{transform:matrix(0.305069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305069,0.000000,0.000000,0.250000,0,0);}
.m34_c01004{transform:matrix(0.305112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305112,0.000000,0.000000,0.250000,0,0);}
.m41_c01004{transform:matrix(0.306455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306455,0.000000,0.000000,0.250000,0,0);}
.m36_c01004{transform:matrix(0.306891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306891,0.000000,0.000000,0.250000,0,0);}
.m2_c01004{transform:matrix(0.307048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307048,0.000000,0.000000,0.250000,0,0);}
.m2f_c01004{transform:matrix(0.307375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307375,0.000000,0.000000,0.250000,0,0);}
.m44_c01004{transform:matrix(0.307988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307988,0.000000,0.000000,0.250000,0,0);}
.m97_c01004{transform:matrix(0.308238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308238,0.000000,0.000000,0.250000,0,0);}
.m89_c01004{transform:matrix(0.309108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309108,0.000000,0.000000,0.250000,0,0);}
.m6f_c01004{transform:matrix(0.310316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310316,0.000000,0.000000,0.250000,0,0);}
.md_c01004{transform:matrix(0.310325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310325,0.000000,0.000000,0.250000,0,0);}
.m28_c01004{transform:matrix(0.312076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312076,0.000000,0.000000,0.250000,0,0);}
.m1f_c01004{transform:matrix(0.312561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312561,0.000000,0.000000,0.250000,0,0);}
.m77_c01004{transform:matrix(0.312630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312630,0.000000,0.000000,0.250000,0,0);}
.m86_c01004{transform:matrix(0.312874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312874,0.000000,0.000000,0.250000,0,0);}
.m46_c01004{transform:matrix(0.314374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314374,0.000000,0.000000,0.250000,0,0);}
.m15_c01004{transform:matrix(0.314579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314579,0.000000,0.000000,0.250000,0,0);}
.m9f_c01004{transform:matrix(0.315765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315765,0.000000,0.000000,0.250000,0,0);}
.mbb_c01004{transform:matrix(0.315942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315942,0.000000,0.000000,0.250000,0,0);}
.m82_c01004{transform:matrix(0.316485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316485,0.000000,0.000000,0.250000,0,0);}
.m27_c01004{transform:matrix(0.316843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316843,0.000000,0.000000,0.250000,0,0);}
.ma_c01004{transform:matrix(0.318051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318051,0.000000,0.000000,0.250000,0,0);}
.m61_c01004{transform:matrix(0.318660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318660,0.000000,0.000000,0.250000,0,0);}
.m9a_c01004{transform:matrix(0.319534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319534,0.000000,0.000000,0.250000,0,0);}
.m4d_c01004{transform:matrix(0.319786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319786,0.000000,0.000000,0.250000,0,0);}
.m22_c01004{transform:matrix(0.319918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319918,0.000000,0.000000,0.250000,0,0);}
.m92_c01004{transform:matrix(0.320282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320282,0.000000,0.000000,0.250000,0,0);}
.maa_c01004{transform:matrix(0.321360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321360,0.000000,0.000000,0.250000,0,0);}
.mbc_c01004{transform:matrix(0.321969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321969,0.000000,0.000000,0.250000,0,0);}
.m7e_c01004{transform:matrix(0.322243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322243,0.000000,0.000000,0.250000,0,0);}
.m90_c01004{transform:matrix(0.323046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323046,0.000000,0.000000,0.250000,0,0);}
.m6d_c01004{transform:matrix(0.325503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325503,0.000000,0.000000,0.250000,0,0);}
.m95_c01004{transform:matrix(0.325587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325587,0.000000,0.000000,0.250000,0,0);}
.m8_c01004{transform:matrix(0.325725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325725,0.000000,0.000000,0.250000,0,0);}
.ma8_c01004{transform:matrix(0.326075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326075,0.000000,0.000000,0.250000,0,0);}
.ma4_c01004{transform:matrix(0.326105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326105,0.000000,0.000000,0.250000,0,0);}
.m31_c01004{transform:matrix(0.326893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326893,0.000000,0.000000,0.250000,0,0);}
.ma7_c01004{transform:matrix(0.331791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331791,0.000000,0.000000,0.250000,0,0);}
.m60_c01004{transform:matrix(0.331929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331929,0.000000,0.000000,0.250000,0,0);}
.m21_c01004{transform:matrix(0.332058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332058,0.000000,0.000000,0.250000,0,0);}
.m4f_c01004{transform:matrix(0.337307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337307,0.000000,0.000000,0.250000,0,0);}
.m83_c01004{transform:matrix(0.339027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339027,0.000000,0.000000,0.250000,0,0);}
.m2e_c01004{transform:matrix(0.345851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345851,0.000000,0.000000,0.250000,0,0);}
.m5e_c01004{transform:matrix(0.346926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346926,0.000000,0.000000,0.250000,0,0);}
.m5_c01004{transform:matrix(0.358891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358891,0.000000,0.000000,0.250000,0,0);}
.ma6_c01004{transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);}
.m13_c01004{transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);}
.m4c_c01004{transform:matrix(0.376256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376256,0.000000,0.000000,0.250000,0,0);}
.m6c_c01004{transform:matrix(0.382045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382045,0.000000,0.000000,0.250000,0,0);}
.m69_c01004{transform:matrix(0.385236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385236,0.000000,0.000000,0.250000,0,0);}
.v1_c01004{vertical-align:-14.256000px;}
.v0_c01004{vertical-align:0.000000px;}
.v2_c01004{vertical-align:44.173800px;}
.ls7_c01004{letter-spacing:-2.855167px;}
.lse_c01004{letter-spacing:-2.827440px;}
.lsc_c01004{letter-spacing:-2.798064px;}
.ls16_c01004{letter-spacing:-1.655997px;}
.ls15_c01004{letter-spacing:-1.517317px;}
.ls1d_c01004{letter-spacing:-1.240470px;}
.ls3_c01004{letter-spacing:0.000000px;}
.ls19_c01004{letter-spacing:0.130522px;}
.ls2_c01004{letter-spacing:0.220256px;}
.ls1b_c01004{letter-spacing:0.840235px;}
.ls17_c01004{letter-spacing:1.215485px;}
.lsb_c01004{letter-spacing:1.639682px;}
.ls8_c01004{letter-spacing:1.655997px;}
.ls6_c01004{letter-spacing:1.843622px;}
.ls0_c01004{letter-spacing:1.957829px;}
.ls1_c01004{letter-spacing:2.904113px;}
.ls1a_c01004{letter-spacing:3.067265px;}
.ls9_c01004{letter-spacing:3.227400px;}
.ls11_c01004{letter-spacing:3.385412px;}
.ls13_c01004{letter-spacing:3.638298px;}
.lsa_c01004{letter-spacing:3.643200px;}
.ls12_c01004{letter-spacing:3.722400px;}
.ls18_c01004{letter-spacing:3.728032px;}
.ls4_c01004{letter-spacing:3.821400px;}
.ls10_c01004{letter-spacing:3.880810px;}
.lsd_c01004{letter-spacing:3.960000px;}
.ls1c_c01004{letter-spacing:3.969900px;}
.lsf_c01004{letter-spacing:4.039200px;}
.ls5_c01004{letter-spacing:4.078810px;}
.ls14_c01004{letter-spacing:58.449798px;}
.sc__c01004{text-shadow:none;}
.sc0_c01004{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01004{-webkit-text-stroke:0px transparent;}
.sc0_c01004{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01004{word-spacing:-22.351878px;}
.ws1_c01004{word-spacing:-4.119984px;}
.ws2_c01004{word-spacing:0.000000px;}
._2_c01004{margin-left:-19.711296px;}
._0_c01004{margin-left:-3.670956px;}
._1_c01004{width:12.438514px;}
._6_c01004{width:18.070954px;}
._4_c01004{width:27.185780px;}
._5_c01004{width:32.344653px;}
._3_c01004{width:33.609394px;}
.fc0_c01004{color:transparent;}
.fs0_c01004{font-size:22.176000px;}
.fs1_c01004{font-size:28.314000px;}
.fsf_c01004{font-size:34.056198px;}
.fs12_c01004{font-size:34.650000px;}
.fs13_c01004{font-size:35.442000px;}
.fs6_c01004{font-size:42.966198px;}
.fs7_c01004{font-size:50.292000px;}
.fsc_c01004{font-size:58.449798px;}
.fs4_c01004{font-size:64.548000px;}
.fsd_c01004{font-size:67.320000px;}
.fs5_c01004{font-size:72.864000px;}
.fse_c01004{font-size:73.656198px;}
.fsb_c01004{font-size:74.448000px;}
.fs2_c01004{font-size:76.428000px;}
.fsa_c01004{font-size:77.616198px;}
.fs10_c01004{font-size:78.804000px;}
.fs8_c01004{font-size:79.200000px;}
.fs11_c01004{font-size:79.398000px;}
.fs9_c01004{font-size:80.784000px;}
.fs3_c01004{font-size:81.576198px;}
.y0_c01004{bottom:0.000000px;}
.y26_c01004{bottom:29.849535px;}
.y27_c01004{bottom:35.190585px;}
.y3_c01004{bottom:61.207785px;}
.y1_c01004{bottom:76.500000px;}
.y25_c01004{bottom:124.651935px;}
.y24_c01004{bottom:156.366585px;}
.y2_c01004{bottom:180.606735px;}
.y23_c01004{bottom:188.091135px;}
.y22_c01004{bottom:220.167135px;}
.y21_c01004{bottom:252.243135px;}
.y20_c01004{bottom:284.314185px;}
.y1f_c01004{bottom:307.485135px;}
.y1e_c01004{bottom:311.756985px;}
.y1a_c01004{bottom:316.033785px;}
.y1d_c01004{bottom:316.395135px;}
.y1c_c01004{bottom:329.938335px;}
.y19_c01004{bottom:347.396985px;}
.y1b_c01004{bottom:347.758335px;}
.y18_c01004{bottom:380.190735px;}
.y17_c01004{bottom:411.905385px;}
.y16_c01004{bottom:443.629935px;}
.y15_c01004{bottom:474.275385px;}
.y14_c01004{bottom:505.999935px;}
.y13_c01004{bottom:537.363135px;}
.y12_c01004{bottom:568.369935px;}
.y11_c01004{bottom:632.878335px;}
.y10_c01004{bottom:652.831785px;}
.yf_c01004{bottom:665.310735px;}
.ye_c01004{bottom:697.381785px;}
.yd_c01004{bottom:729.106335px;}
.yc_c01004{bottom:760.113135px;}
.yb_c01004{bottom:792.184185px;}
.ya_c01004{bottom:813.929535px;}
.y9_c01004{bottom:823.547385px;}
.y8_c01004{bottom:855.271935px;}
.y7_c01004{bottom:886.635135px;}
.y6_c01004{bottom:917.998335px;}
.y5_c01004{bottom:934.744185px;}
.y4_c01004{bottom:1055.563785px;}
.h2_c01004{height:23.128875px;}
.h3_c01004{height:29.530617px;}
.h10_c01004{height:35.519550px;}
.h14_c01004{height:36.964898px;}
.hd_c01004{height:38.927565px;}
.h8_c01004{height:49.358848px;}
.he_c01004{height:66.070898px;}
.h6_c01004{height:67.321547px;}
.h7_c01004{height:71.512031px;}
.hc_c01004{height:73.066641px;}
.h4_c01004{height:75.009902px;}
.hb_c01004{height:76.176054px;}
.hf_c01004{height:76.821113px;}
.h11_c01004{height:77.341816px;}
.h9_c01004{height:77.730469px;}
.h12_c01004{height:77.924795px;}
.ha_c01004{height:79.285078px;}
.h5_c01004{height:80.062577px;}
.h13_c01004{height:80.312667px;}
.h1_c01004{height:1110.000000px;}
.h0_c01004{height:1263.000000px;}
.w1_c01004{width:763.500000px;}
.w0_c01004{width:892.500000px;}
.x0_c01004{left:0.000000px;}
.x2_c01004{left:24.018435px;}
.x3_c01004{left:53.154135px;}
.x1_c01004{left:64.500000px;}
.x20_c01004{left:77.513085px;}
.x6_c01004{left:79.042635px;}
.x18_c01004{left:110.702835px;}
.x2f_c01004{left:112.232385px;}
.x7_c01004{left:122.587785px;}
.x66_c01004{left:123.661935px;}
.x3f_c01004{left:130.463235px;}
.x42_c01004{left:133.824285px;}
.x68_c01004{left:144.511335px;}
.x8_c01004{left:145.659735px;}
.x19_c01004{left:156.124035px;}
.x5c_c01004{left:157.163535px;}
.x37_c01004{left:166.618035px;}
.x4a_c01004{left:168.098085px;}
.x2a_c01004{left:177.310035px;}
.xf_c01004{left:178.889085px;}
.x1a_c01004{left:188.848485px;}
.x21_c01004{left:189.942435px;}
.x53_c01004{left:201.723435px;}
.x3c_c01004{left:212.019435px;}
.x1b_c01004{left:223.072785px;}
.x69_c01004{left:234.848835px;}
.x4e_c01004{left:243.946935px;}
.x30_c01004{left:245.189385px;}
.x9_c01004{left:255.901185px;}
.x57_c01004{left:257.326785px;}
.x67_c01004{left:266.776335px;}
.x4f_c01004{left:268.008885px;}
.x22_c01004{left:276.710985px;}
.x31_c01004{left:277.948485px;}
.x58_c01004{left:279.676035px;}
.x3d_c01004{left:290.075985px;}
.x54_c01004{left:291.457035px;}
.x2b_c01004{left:300.693735px;}
.x39_c01004{left:301.767885px;}
.x59_c01004{left:310.950135px;}
.x10_c01004{left:312.197535px;}
.x40_c01004{left:321.335235px;}
.x23_c01004{left:322.364835px;}
.x44_c01004{left:323.919135px;}
.x48_c01004{left:333.046935px;}
.x3a_c01004{left:334.348785px;}
.x11_c01004{left:344.605185px;}
.x32_c01004{left:356.292135px;}
.x5f_c01004{left:357.405885px;}
.x63_c01004{left:367.795935px;}
.x24_c01004{left:377.780085px;}
.x5a_c01004{left:380.542185px;}
.x33_c01004{left:388.976985px;}
.x5_c01004{left:391.377735px;}
.x2c_c01004{left:400.253085px;}
.x50_c01004{left:412.375635px;}
.x1c_c01004{left:421.439085px;}
.x12_c01004{left:423.424035px;}
.x25_c01004{left:432.497385px;}
.x4b_c01004{left:434.427885px;}
.xa_c01004{left:444.397185px;}
.x13_c01004{left:445.471335px;}
.x34_c01004{left:455.856435px;}
.x3e_c01004{left:457.133535px;}
.x29_c01004{left:467.290935px;}
.xb_c01004{left:478.616535px;}
.x3b_c01004{left:488.783835px;}
.x35_c01004{left:490.006485px;}
.x1d_c01004{left:500.015385px;}
.x26_c01004{left:510.816285px;}
.x5b_c01004{left:512.499285px;}
.x45_c01004{left:523.121985px;}
.x38_c01004{left:531.923085px;}
.x2d_c01004{left:533.140785px;}
.x14_c01004{left:544.570335px;}
.x46_c01004{left:555.089085px;}
.x60_c01004{left:566.137485px;}
.x4c_c01004{left:567.741285px;}
.x15_c01004{left:577.032435px;}
.x43_c01004{left:579.799485px;}
.x2e_c01004{left:587.531385px;}
.xc_c01004{left:588.793635px;}
.x4d_c01004{left:598.614435px;}
.x51_c01004{left:600.841935px;}
.x27_c01004{left:610.479585px;}
.x16_c01004{left:620.354835px;}
.xd_c01004{left:621.552735px;}
.x1e_c01004{left:632.432835px;}
.x47_c01004{left:633.932685px;}
.x6a_c01004{left:642.407085px;}
.x36_c01004{left:644.263335px;}
.x17_c01004{left:654.702885px;}
.x49_c01004{left:655.796835px;}
.x55_c01004{left:657.455085px;}
.xe_c01004{left:664.870185px;}
.x64_c01004{left:666.077985px;}
.x56_c01004{left:677.151135px;}
.x4_c01004{left:687.808485px;}
.x65_c01004{left:689.243985px;}
.x61_c01004{left:699.896385px;}
.x5e_c01004{left:702.772335px;}
.x62_c01004{left:705.687885px;}
.x6b_c01004{left:708.222285px;}
.x1f_c01004{left:710.326035px;}
.x5d_c01004{left:720.146835px;}
.x28_c01004{left:721.513035px;}
.x41_c01004{left:723.463335px;}
.x52_c01004{left:733.719735px;}
@media print{
.v1_c01004{vertical-align:-12.672000pt;}
.v0_c01004{vertical-align:0.000000pt;}
.v2_c01004{vertical-align:39.265600pt;}
.ls7_c01004{letter-spacing:-2.537926pt;}
.lse_c01004{letter-spacing:-2.513280pt;}
.lsc_c01004{letter-spacing:-2.487168pt;}
.ls16_c01004{letter-spacing:-1.471997pt;}
.ls15_c01004{letter-spacing:-1.348726pt;}
.ls1d_c01004{letter-spacing:-1.102640pt;}
.ls3_c01004{letter-spacing:0.000000pt;}
.ls19_c01004{letter-spacing:0.116019pt;}
.ls2_c01004{letter-spacing:0.195783pt;}
.ls1b_c01004{letter-spacing:0.746875pt;}
.ls17_c01004{letter-spacing:1.080431pt;}
.lsb_c01004{letter-spacing:1.457495pt;}
.ls8_c01004{letter-spacing:1.471997pt;}
.ls6_c01004{letter-spacing:1.638775pt;}
.ls0_c01004{letter-spacing:1.740292pt;}
.ls1_c01004{letter-spacing:2.581433pt;}
.ls1a_c01004{letter-spacing:2.726458pt;}
.ls9_c01004{letter-spacing:2.868800pt;}
.ls11_c01004{letter-spacing:3.009255pt;}
.ls13_c01004{letter-spacing:3.234043pt;}
.lsa_c01004{letter-spacing:3.238400pt;}
.ls12_c01004{letter-spacing:3.308800pt;}
.ls18_c01004{letter-spacing:3.313806pt;}
.ls4_c01004{letter-spacing:3.396800pt;}
.ls10_c01004{letter-spacing:3.449609pt;}
.lsd_c01004{letter-spacing:3.520000pt;}
.ls1c_c01004{letter-spacing:3.528800pt;}
.lsf_c01004{letter-spacing:3.590400pt;}
.ls5_c01004{letter-spacing:3.625609pt;}
.ls14_c01004{letter-spacing:51.955376pt;}
.ws0_c01004{word-spacing:-19.868336pt;}
.ws1_c01004{word-spacing:-3.662208pt;}
.ws2_c01004{word-spacing:0.000000pt;}
._2_c01004{margin-left:-17.521152pt;}
._0_c01004{margin-left:-3.263072pt;}
._1_c01004{width:11.056457pt;}
._6_c01004{width:16.063070pt;}
._4_c01004{width:24.165138pt;}
._5_c01004{width:28.750803pt;}
._3_c01004{width:29.875017pt;}
.fs0_c01004{font-size:19.712000pt;}
.fs1_c01004{font-size:25.168000pt;}
.fsf_c01004{font-size:30.272176pt;}
.fs12_c01004{font-size:30.800000pt;}
.fs13_c01004{font-size:31.504000pt;}
.fs6_c01004{font-size:38.192176pt;}
.fs7_c01004{font-size:44.704000pt;}
.fsc_c01004{font-size:51.955376pt;}
.fs4_c01004{font-size:57.376000pt;}
.fsd_c01004{font-size:59.840000pt;}
.fs5_c01004{font-size:64.768000pt;}
.fse_c01004{font-size:65.472176pt;}
.fsb_c01004{font-size:66.176000pt;}
.fs2_c01004{font-size:67.936000pt;}
.fsa_c01004{font-size:68.992176pt;}
.fs10_c01004{font-size:70.048000pt;}
.fs8_c01004{font-size:70.400000pt;}
.fs11_c01004{font-size:70.576000pt;}
.fs9_c01004{font-size:71.808000pt;}
.fs3_c01004{font-size:72.512176pt;}
.y0_c01004{bottom:0.000000pt;}
.y26_c01004{bottom:26.532920pt;}
.y27_c01004{bottom:31.280520pt;}
.y3_c01004{bottom:54.406920pt;}
.y1_c01004{bottom:68.000000pt;}
.y25_c01004{bottom:110.801720pt;}
.y24_c01004{bottom:138.992520pt;}
.y2_c01004{bottom:160.539320pt;}
.y23_c01004{bottom:167.192120pt;}
.y22_c01004{bottom:195.704120pt;}
.y21_c01004{bottom:224.216120pt;}
.y20_c01004{bottom:252.723720pt;}
.y1f_c01004{bottom:273.320120pt;}
.y1e_c01004{bottom:277.117320pt;}
.y1a_c01004{bottom:280.918920pt;}
.y1d_c01004{bottom:281.240120pt;}
.y1c_c01004{bottom:293.278520pt;}
.y19_c01004{bottom:308.797320pt;}
.y1b_c01004{bottom:309.118520pt;}
.y18_c01004{bottom:337.947320pt;}
.y17_c01004{bottom:366.138120pt;}
.y16_c01004{bottom:394.337720pt;}
.y15_c01004{bottom:421.578120pt;}
.y14_c01004{bottom:449.777720pt;}
.y13_c01004{bottom:477.656120pt;}
.y12_c01004{bottom:505.217720pt;}
.y11_c01004{bottom:562.558520pt;}
.y10_c01004{bottom:580.294920pt;}
.yf_c01004{bottom:591.387320pt;}
.ye_c01004{bottom:619.894920pt;}
.yd_c01004{bottom:648.094520pt;}
.yc_c01004{bottom:675.656120pt;}
.yb_c01004{bottom:704.163720pt;}
.ya_c01004{bottom:723.492920pt;}
.y9_c01004{bottom:732.042120pt;}
.y8_c01004{bottom:760.241720pt;}
.y7_c01004{bottom:788.120120pt;}
.y6_c01004{bottom:815.998520pt;}
.y5_c01004{bottom:830.883720pt;}
.y4_c01004{bottom:938.278920pt;}
.h2_c01004{height:20.559000pt;}
.h3_c01004{height:26.249438pt;}
.h10_c01004{height:31.572934pt;}
.h14_c01004{height:32.857688pt;}
.hd_c01004{height:34.602280pt;}
.h8_c01004{height:43.874531pt;}
.he_c01004{height:58.729688pt;}
.h6_c01004{height:59.841375pt;}
.h7_c01004{height:63.566250pt;}
.hc_c01004{height:64.948125pt;}
.h4_c01004{height:66.675469pt;}
.hb_c01004{height:67.712048pt;}
.hf_c01004{height:68.285434pt;}
.h11_c01004{height:68.748281pt;}
.h9_c01004{height:69.093750pt;}
.h12_c01004{height:69.266484pt;}
.ha_c01004{height:70.475625pt;}
.h5_c01004{height:71.166735pt;}
.h13_c01004{height:71.389038pt;}
.h1_c01004{height:986.666667pt;}
.h0_c01004{height:1122.666667pt;}
.w1_c01004{width:678.666667pt;}
.w0_c01004{width:793.333333pt;}
.x0_c01004{left:0.000000pt;}
.x2_c01004{left:21.349720pt;}
.x3_c01004{left:47.248120pt;}
.x1_c01004{left:57.333333pt;}
.x20_c01004{left:68.900520pt;}
.x6_c01004{left:70.260120pt;}
.x18_c01004{left:98.402520pt;}
.x2f_c01004{left:99.762120pt;}
.x7_c01004{left:108.966920pt;}
.x66_c01004{left:109.921720pt;}
.x3f_c01004{left:115.967320pt;}
.x42_c01004{left:118.954920pt;}
.x68_c01004{left:128.454520pt;}
.x8_c01004{left:129.475320pt;}
.x19_c01004{left:138.776920pt;}
.x5c_c01004{left:139.700920pt;}
.x37_c01004{left:148.104920pt;}
.x4a_c01004{left:149.420520pt;}
.x2a_c01004{left:157.608920pt;}
.xf_c01004{left:159.012520pt;}
.x1a_c01004{left:167.865320pt;}
.x21_c01004{left:168.837720pt;}
.x53_c01004{left:179.309720pt;}
.x3c_c01004{left:188.461720pt;}
.x1b_c01004{left:198.286920pt;}
.x69_c01004{left:208.754520pt;}
.x4e_c01004{left:216.841720pt;}
.x30_c01004{left:217.946120pt;}
.x9_c01004{left:227.467720pt;}
.x57_c01004{left:228.734920pt;}
.x67_c01004{left:237.134520pt;}
.x4f_c01004{left:238.230120pt;}
.x22_c01004{left:245.965320pt;}
.x31_c01004{left:247.065320pt;}
.x58_c01004{left:248.600920pt;}
.x3d_c01004{left:257.845320pt;}
.x54_c01004{left:259.072920pt;}
.x2b_c01004{left:267.283320pt;}
.x39_c01004{left:268.238120pt;}
.x59_c01004{left:276.400120pt;}
.x10_c01004{left:277.508920pt;}
.x40_c01004{left:285.631320pt;}
.x23_c01004{left:286.546520pt;}
.x44_c01004{left:287.928120pt;}
.x48_c01004{left:296.041720pt;}
.x3a_c01004{left:297.198920pt;}
.x11_c01004{left:306.315720pt;}
.x32_c01004{left:316.704120pt;}
.x5f_c01004{left:317.694120pt;}
.x63_c01004{left:326.929720pt;}
.x24_c01004{left:335.804520pt;}
.x5a_c01004{left:338.259720pt;}
.x33_c01004{left:345.757320pt;}
.x5_c01004{left:347.891320pt;}
.x2c_c01004{left:355.780520pt;}
.x50_c01004{left:366.556120pt;}
.x1c_c01004{left:374.612520pt;}
.x12_c01004{left:376.376920pt;}
.x25_c01004{left:384.442120pt;}
.x4b_c01004{left:386.158120pt;}
.xa_c01004{left:395.019720pt;}
.x13_c01004{left:395.974520pt;}
.x34_c01004{left:405.205720pt;}
.x3e_c01004{left:406.340920pt;}
.x29_c01004{left:415.369720pt;}
.xb_c01004{left:425.436920pt;}
.x3b_c01004{left:434.474520pt;}
.x35_c01004{left:435.561320pt;}
.x1d_c01004{left:444.458120pt;}
.x26_c01004{left:454.058920pt;}
.x5b_c01004{left:455.554920pt;}
.x45_c01004{left:464.997320pt;}
.x38_c01004{left:472.820520pt;}
.x2d_c01004{left:473.902920pt;}
.x14_c01004{left:484.062520pt;}
.x46_c01004{left:493.412520pt;}
.x60_c01004{left:503.233320pt;}
.x4c_c01004{left:504.658920pt;}
.x15_c01004{left:512.917720pt;}
.x43_c01004{left:515.377320pt;}
.x2e_c01004{left:522.250120pt;}
.xc_c01004{left:523.372120pt;}
.x4d_c01004{left:532.101720pt;}
.x51_c01004{left:534.081720pt;}
.x27_c01004{left:542.648520pt;}
.x16_c01004{left:551.426520pt;}
.xd_c01004{left:552.491320pt;}
.x1e_c01004{left:562.162520pt;}
.x47_c01004{left:563.495720pt;}
.x6a_c01004{left:571.028520pt;}
.x36_c01004{left:572.678520pt;}
.x17_c01004{left:581.958120pt;}
.x49_c01004{left:582.930520pt;}
.x55_c01004{left:584.404520pt;}
.xe_c01004{left:590.995720pt;}
.x64_c01004{left:592.069320pt;}
.x56_c01004{left:601.912120pt;}
.x4_c01004{left:611.385320pt;}
.x65_c01004{left:612.661320pt;}
.x61_c01004{left:622.130120pt;}
.x5e_c01004{left:624.686520pt;}
.x62_c01004{left:627.278120pt;}
.x6b_c01004{left:629.530920pt;}
.x1f_c01004{left:631.400920pt;}
.x5d_c01004{left:640.130520pt;}
.x28_c01004{left:641.344920pt;}
.x41_c01004{left:643.078520pt;}
.x52_c01004{left:652.195320pt;}
}





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

.ir_c01005:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01005{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01005;src:url('chunks/assets/font_eb20cac222fecb2d09491fb3.woff2')format("woff");}.ff1_c01005{font-family:ff1_c01005;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01005;src:url('chunks/assets/font_b14248d0d963729cbc0ebf11.woff2')format("woff");}.ff2_c01005{font-family:ff2_c01005;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01005;src:url('chunks/assets/font_a8cdc4d355b5f54898faefd2.woff2')format("woff");}.ff3_c01005{font-family:ff3_c01005;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m6b_c01005{transform:matrix(0.038565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.038565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.038565,0.000000,0.000000,0.250000,0,0);}
.m6c_c01005{transform:matrix(0.103724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103724,0.000000,0.000000,0.250000,0,0);}
.m69_c01005{transform:matrix(0.107270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107270,0.000000,0.000000,0.250000,0,0);}
.m6d_c01005{transform:matrix(0.115958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115958,0.000000,0.000000,0.250000,0,0);}
.m2_c01005{transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);}
.m28_c01005{transform:matrix(0.177982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177982,0.000000,0.000000,0.250000,0,0);}
.m88_c01005{transform:matrix(0.180060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180060,0.000000,0.000000,0.250000,0,0);}
.m6a_c01005{transform:matrix(0.180852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180852,0.000000,0.000000,0.250000,0,0);}
.m7a_c01005{transform:matrix(0.184669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184669,0.000000,0.000000,0.250000,0,0);}
.m9_c01005{transform:matrix(0.243474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243474,0.000000,0.000000,0.250000,0,0);}
.m0_c01005{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m5c_c01005{transform:matrix(0.251559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251559,0.000000,0.000000,0.250000,0,0);}
.m1_c01005{transform:matrix(0.255584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255584,0.000000,0.000000,0.250000,0,0);}
.m19_c01005{transform:matrix(0.255627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255627,0.000000,0.000000,0.250000,0,0);}
.m6_c01005{transform:matrix(0.257088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257088,0.000000,0.000000,0.250000,0,0);}
.m61_c01005{transform:matrix(0.259308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259308,0.000000,0.000000,0.250000,0,0);}
.m58_c01005{transform:matrix(0.260490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260490,0.000000,0.000000,0.250000,0,0);}
.m2a_c01005{transform:matrix(0.262217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262217,0.000000,0.000000,0.250000,0,0);}
.m27_c01005{transform:matrix(0.262345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262345,0.000000,0.000000,0.250000,0,0);}
.m8d_c01005{transform:matrix(0.263376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263376,0.000000,0.000000,0.250000,0,0);}
.ma3_c01005{transform:matrix(0.263716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263716,0.000000,0.000000,0.250000,0,0);}
.m45_c01005{transform:matrix(0.267946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267946,0.000000,0.000000,0.250000,0,0);}
.m33_c01005{transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);}
.m54_c01005{transform:matrix(0.268402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268402,0.000000,0.000000,0.250000,0,0);}
.m13_c01005{transform:matrix(0.269748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269748,0.000000,0.000000,0.250000,0,0);}
.m91_c01005{transform:matrix(0.270325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270325,0.000000,0.000000,0.250000,0,0);}
.m84_c01005{transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);}
.m30_c01005{transform:matrix(0.272274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272274,0.000000,0.000000,0.250000,0,0);}
.m96_c01005{transform:matrix(0.272906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272906,0.000000,0.000000,0.250000,0,0);}
.mae_c01005{transform:matrix(0.272912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272912,0.000000,0.000000,0.250000,0,0);}
.m10_c01005{transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);}
.m8_c01005{transform:matrix(0.273533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273533,0.000000,0.000000,0.250000,0,0);}
.mc_c01005{transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);}
.m59_c01005{transform:matrix(0.274275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274275,0.000000,0.000000,0.250000,0,0);}
.mb0_c01005{transform:matrix(0.274610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274610,0.000000,0.000000,0.250000,0,0);}
.m67_c01005{transform:matrix(0.275333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275333,0.000000,0.000000,0.250000,0,0);}
.m89_c01005{transform:matrix(0.275368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275368,0.000000,0.000000,0.250000,0,0);}
.m3d_c01005{transform:matrix(0.276672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276672,0.000000,0.000000,0.250000,0,0);}
.m5d_c01005{transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);}
.ma4_c01005{transform:matrix(0.278201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278201,0.000000,0.000000,0.250000,0,0);}
.m4b_c01005{transform:matrix(0.278328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278328,0.000000,0.000000,0.250000,0,0);}
.m11_c01005{transform:matrix(0.278701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278701,0.000000,0.000000,0.250000,0,0);}
.ma2_c01005{transform:matrix(0.279260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279260,0.000000,0.000000,0.250000,0,0);}
.m1d_c01005{transform:matrix(0.280067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280067,0.000000,0.000000,0.250000,0,0);}
.m57_c01005{transform:matrix(0.280349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280349,0.000000,0.000000,0.250000,0,0);}
.m40_c01005{transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);}
.mab_c01005{transform:matrix(0.281568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281568,0.000000,0.000000,0.250000,0,0);}
.m4a_c01005{transform:matrix(0.282883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282883,0.000000,0.000000,0.250000,0,0);}
.m9a_c01005{transform:matrix(0.284499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284499,0.000000,0.000000,0.250000,0,0);}
.m62_c01005{transform:matrix(0.284574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284574,0.000000,0.000000,0.250000,0,0);}
.m8b_c01005{transform:matrix(0.284703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284703,0.000000,0.000000,0.250000,0,0);}
.m4f_c01005{transform:matrix(0.285652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285652,0.000000,0.000000,0.250000,0,0);}
.m7c_c01005{transform:matrix(0.287165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287165,0.000000,0.000000,0.250000,0,0);}
.m22_c01005{transform:matrix(0.288929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288929,0.000000,0.000000,0.250000,0,0);}
.m76_c01005{transform:matrix(0.289866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289866,0.000000,0.000000,0.250000,0,0);}
.m29_c01005{transform:matrix(0.290353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290353,0.000000,0.000000,0.250000,0,0);}
.m4c_c01005{transform:matrix(0.290517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290517,0.000000,0.000000,0.250000,0,0);}
.m3b_c01005{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);}
.m8f_c01005{transform:matrix(0.291843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291843,0.000000,0.000000,0.250000,0,0);}
.mb3_c01005{transform:matrix(0.292307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292307,0.000000,0.000000,0.250000,0,0);}
.m98_c01005{transform:matrix(0.293270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293270,0.000000,0.000000,0.250000,0,0);}
.m5e_c01005{transform:matrix(0.293280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293280,0.000000,0.000000,0.250000,0,0);}
.m74_c01005{transform:matrix(0.294964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294964,0.000000,0.000000,0.250000,0,0);}
.m48_c01005{transform:matrix(0.295116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295116,0.000000,0.000000,0.250000,0,0);}
.m83_c01005{transform:matrix(0.295659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295659,0.000000,0.000000,0.250000,0,0);}
.m2b_c01005{transform:matrix(0.295729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295729,0.000000,0.000000,0.250000,0,0);}
.m56_c01005{transform:matrix(0.296335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296335,0.000000,0.000000,0.250000,0,0);}
.m81_c01005{transform:matrix(0.296955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296955,0.000000,0.000000,0.250000,0,0);}
.maf_c01005{transform:matrix(0.296995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296995,0.000000,0.000000,0.250000,0,0);}
.m75_c01005{transform:matrix(0.297204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297204,0.000000,0.000000,0.250000,0,0);}
.m71_c01005{transform:matrix(0.297265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297265,0.000000,0.000000,0.250000,0,0);}
.m7d_c01005{transform:matrix(0.297717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297717,0.000000,0.000000,0.250000,0,0);}
.m79_c01005{transform:matrix(0.297885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297885,0.000000,0.000000,0.250000,0,0);}
.m8e_c01005{transform:matrix(0.297926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297926,0.000000,0.000000,0.250000,0,0);}
.m50_c01005{transform:matrix(0.299073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299073,0.000000,0.000000,0.250000,0,0);}
.mb_c01005{transform:matrix(0.299078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299078,0.000000,0.000000,0.250000,0,0);}
.m46_c01005{transform:matrix(0.299095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299095,0.000000,0.000000,0.250000,0,0);}
.m1f_c01005{transform:matrix(0.300115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300115,0.000000,0.000000,0.250000,0,0);}
.m9b_c01005{transform:matrix(0.300369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300369,0.000000,0.000000,0.250000,0,0);}
.ma5_c01005{transform:matrix(0.300565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300565,0.000000,0.000000,0.250000,0,0);}
.me_c01005{transform:matrix(0.300739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300739,0.000000,0.000000,0.250000,0,0);}
.m64_c01005{transform:matrix(0.301004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301004,0.000000,0.000000,0.250000,0,0);}
.ma7_c01005{transform:matrix(0.301042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301042,0.000000,0.000000,0.250000,0,0);}
.m77_c01005{transform:matrix(0.301121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301121,0.000000,0.000000,0.250000,0,0);}
.m8c_c01005{transform:matrix(0.301673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301673,0.000000,0.000000,0.250000,0,0);}
.m3e_c01005{transform:matrix(0.302495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302495,0.000000,0.000000,0.250000,0,0);}
.m6e_c01005{transform:matrix(0.304356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304356,0.000000,0.000000,0.250000,0,0);}
.m65_c01005{transform:matrix(0.304451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304451,0.000000,0.000000,0.250000,0,0);}
.m1a_c01005{transform:matrix(0.305012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305012,0.000000,0.000000,0.250000,0,0);}
.mf_c01005{transform:matrix(0.305566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305566,0.000000,0.000000,0.250000,0,0);}
.m92_c01005{transform:matrix(0.305927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305927,0.000000,0.000000,0.250000,0,0);}
.m15_c01005{transform:matrix(0.306031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306031,0.000000,0.000000,0.250000,0,0);}
.m23_c01005{transform:matrix(0.307005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307005,0.000000,0.000000,0.250000,0,0);}
.m9c_c01005{transform:matrix(0.307152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307152,0.000000,0.000000,0.250000,0,0);}
.m72_c01005{transform:matrix(0.307690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307690,0.000000,0.000000,0.250000,0,0);}
.m87_c01005{transform:matrix(0.307724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307724,0.000000,0.000000,0.250000,0,0);}
.m97_c01005{transform:matrix(0.308747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308747,0.000000,0.000000,0.250000,0,0);}
.m1c_c01005{transform:matrix(0.308986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308986,0.000000,0.000000,0.250000,0,0);}
.m5a_c01005{transform:matrix(0.310229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310229,0.000000,0.000000,0.250000,0,0);}
.m68_c01005{transform:matrix(0.310266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310266,0.000000,0.000000,0.250000,0,0);}
.m2c_c01005{transform:matrix(0.310523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310523,0.000000,0.000000,0.250000,0,0);}
.ma0_c01005{transform:matrix(0.310715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310715,0.000000,0.000000,0.250000,0,0);}
.m55_c01005{transform:matrix(0.311002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311002,0.000000,0.000000,0.250000,0,0);}
.m93_c01005{transform:matrix(0.311061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311061,0.000000,0.000000,0.250000,0,0);}
.m52_c01005{transform:matrix(0.311261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311261,0.000000,0.000000,0.250000,0,0);}
.ma9_c01005{transform:matrix(0.311404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311404,0.000000,0.000000,0.250000,0,0);}
.m7_c01005{transform:matrix(0.311642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311642,0.000000,0.000000,0.250000,0,0);}
.m80_c01005{transform:matrix(0.311673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311673,0.000000,0.000000,0.250000,0,0);}
.m21_c01005{transform:matrix(0.311875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311875,0.000000,0.000000,0.250000,0,0);}
.m78_c01005{transform:matrix(0.313163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313163,0.000000,0.000000,0.250000,0,0);}
.m90_c01005{transform:matrix(0.314648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314648,0.000000,0.000000,0.250000,0,0);}
.m3f_c01005{transform:matrix(0.314817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314817,0.000000,0.000000,0.250000,0,0);}
.m3a_c01005{transform:matrix(0.314932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314932,0.000000,0.000000,0.250000,0,0);}
.m82_c01005{transform:matrix(0.315447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315447,0.000000,0.000000,0.250000,0,0);}
.m18_c01005{transform:matrix(0.316292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316292,0.000000,0.000000,0.250000,0,0);}
.m7f_c01005{transform:matrix(0.316670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316670,0.000000,0.000000,0.250000,0,0);}
.m70_c01005{transform:matrix(0.317052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317052,0.000000,0.000000,0.250000,0,0);}
.m63_c01005{transform:matrix(0.317928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317928,0.000000,0.000000,0.250000,0,0);}
.m17_c01005{transform:matrix(0.318091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318091,0.000000,0.000000,0.250000,0,0);}
.m73_c01005{transform:matrix(0.318830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318830,0.000000,0.000000,0.250000,0,0);}
.m85_c01005{transform:matrix(0.318843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318843,0.000000,0.000000,0.250000,0,0);}
.mac_c01005{transform:matrix(0.319480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319480,0.000000,0.000000,0.250000,0,0);}
.m14_c01005{transform:matrix(0.319690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319690,0.000000,0.000000,0.250000,0,0);}
.mb6_c01005{transform:matrix(0.319709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319709,0.000000,0.000000,0.250000,0,0);}
.m5_c01005{transform:matrix(0.319809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319809,0.000000,0.000000,0.250000,0,0);}
.m5b_c01005{transform:matrix(0.320067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320067,0.000000,0.000000,0.250000,0,0);}
.m66_c01005{transform:matrix(0.320366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320366,0.000000,0.000000,0.250000,0,0);}
.m94_c01005{transform:matrix(0.321444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321444,0.000000,0.000000,0.250000,0,0);}
.m25_c01005{transform:matrix(0.321515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321515,0.000000,0.000000,0.250000,0,0);}
.m4e_c01005{transform:matrix(0.321936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321936,0.000000,0.000000,0.250000,0,0);}
.m3_c01005{transform:matrix(0.322313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322313,0.000000,0.000000,0.250000,0,0);}
.m1e_c01005{transform:matrix(0.322426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322426,0.000000,0.000000,0.250000,0,0);}
.m51_c01005{transform:matrix(0.323940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323940,0.000000,0.000000,0.250000,0,0);}
.mb5_c01005{transform:matrix(0.325141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325141,0.000000,0.000000,0.250000,0,0);}
.m43_c01005{transform:matrix(0.325208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325208,0.000000,0.000000,0.250000,0,0);}
.m53_c01005{transform:matrix(0.325628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325628,0.000000,0.000000,0.250000,0,0);}
.m4_c01005{transform:matrix(0.326257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326257,0.000000,0.000000,0.250000,0,0);}
.maa_c01005{transform:matrix(0.326405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326405,0.000000,0.000000,0.250000,0,0);}
.m60_c01005{transform:matrix(0.326474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326474,0.000000,0.000000,0.250000,0,0);}
.m20_c01005{transform:matrix(0.326745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326745,0.000000,0.000000,0.250000,0,0);}
.m99_c01005{transform:matrix(0.327387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327387,0.000000,0.000000,0.250000,0,0);}
.m9f_c01005{transform:matrix(0.328143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328143,0.000000,0.000000,0.250000,0,0);}
.m38_c01005{transform:matrix(0.328499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328499,0.000000,0.000000,0.250000,0,0);}
.m9d_c01005{transform:matrix(0.329880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329880,0.000000,0.000000,0.250000,0,0);}
.m47_c01005{transform:matrix(0.330251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330251,0.000000,0.000000,0.250000,0,0);}
.mad_c01005{transform:matrix(0.330669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330669,0.000000,0.000000,0.250000,0,0);}
.m2f_c01005{transform:matrix(0.331089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331089,0.000000,0.000000,0.250000,0,0);}
.ma8_c01005{transform:matrix(0.331528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331528,0.000000,0.000000,0.250000,0,0);}
.m7b_c01005{transform:matrix(0.331567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331567,0.000000,0.000000,0.250000,0,0);}
.m32_c01005{transform:matrix(0.332221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332221,0.000000,0.000000,0.250000,0,0);}
.m42_c01005{transform:matrix(0.333633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333633,0.000000,0.000000,0.250000,0,0);}
.m24_c01005{transform:matrix(0.335295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335295,0.000000,0.000000,0.250000,0,0);}
.m2e_c01005{transform:matrix(0.337107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337107,0.000000,0.000000,0.250000,0,0);}
.m7e_c01005{transform:matrix(0.338540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338540,0.000000,0.000000,0.250000,0,0);}
.m1b_c01005{transform:matrix(0.339063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339063,0.000000,0.000000,0.250000,0,0);}
.ma1_c01005{transform:matrix(0.339157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339157,0.000000,0.000000,0.250000,0,0);}
.m39_c01005{transform:matrix(0.339284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339284,0.000000,0.000000,0.250000,0,0);}
.mb2_c01005{transform:matrix(0.339739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339739,0.000000,0.000000,0.250000,0,0);}
.m12_c01005{transform:matrix(0.341084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341084,0.000000,0.000000,0.250000,0,0);}
.m4d_c01005{transform:matrix(0.341476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341476,0.000000,0.000000,0.250000,0,0);}
.m86_c01005{transform:matrix(0.342468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342468,0.000000,0.000000,0.250000,0,0);}
.mb1_c01005{transform:matrix(0.342481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342481,0.000000,0.000000,0.250000,0,0);}
.m26_c01005{transform:matrix(0.342830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342830,0.000000,0.000000,0.250000,0,0);}
.m5f_c01005{transform:matrix(0.343894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343894,0.000000,0.000000,0.250000,0,0);}
.m31_c01005{transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);}
.m49_c01005{transform:matrix(0.347217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347217,0.000000,0.000000,0.250000,0,0);}
.m16_c01005{transform:matrix(0.348286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348286,0.000000,0.000000,0.250000,0,0);}
.m3c_c01005{transform:matrix(0.349316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349316,0.000000,0.000000,0.250000,0,0);}
.m36_c01005{transform:matrix(0.350203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350203,0.000000,0.000000,0.250000,0,0);}
.m37_c01005{transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);}
.m35_c01005{transform:matrix(0.352307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352307,0.000000,0.000000,0.250000,0,0);}
.md_c01005{transform:matrix(0.356018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356018,0.000000,0.000000,0.250000,0,0);}
.m2d_c01005{transform:matrix(0.359199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359199,0.000000,0.000000,0.250000,0,0);}
.ma_c01005{transform:matrix(0.360955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360955,0.000000,0.000000,0.250000,0,0);}
.ma6_c01005{transform:matrix(0.361882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361882,0.000000,0.000000,0.250000,0,0);}
.m8a_c01005{transform:matrix(0.368057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368057,0.000000,0.000000,0.250000,0,0);}
.mb4_c01005{transform:matrix(0.368367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368367,0.000000,0.000000,0.250000,0,0);}
.m6f_c01005{transform:matrix(0.370445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370445,0.000000,0.000000,0.250000,0,0);}
.m9e_c01005{transform:matrix(0.374592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374592,0.000000,0.000000,0.250000,0,0);}
.m95_c01005{transform:matrix(0.383861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383861,0.000000,0.000000,0.250000,0,0);}
.m41_c01005{transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);}
.m44_c01005{transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);}
.m34_c01005{transform:matrix(0.405805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405805,0.000000,0.000000,0.250000,0,0);}
.v0_c01005{vertical-align:0.000000px;}
.ls6_c01005{letter-spacing:-2.647267px;}
.lsa_c01005{letter-spacing:-1.275120px;}
.lsd_c01005{letter-spacing:-1.164797px;}
.lse_c01005{letter-spacing:-0.521890px;}
.ls2_c01005{letter-spacing:0.000000px;}
.ls15_c01005{letter-spacing:1.066470px;}
.ls11_c01005{letter-spacing:2.034614px;}
.lsb_c01005{letter-spacing:2.458176px;}
.ls1_c01005{letter-spacing:2.601126px;}
.ls0_c01005{letter-spacing:2.701512px;}
.lsc_c01005{letter-spacing:2.813667px;}
.ls8_c01005{letter-spacing:3.088810px;}
.ls14_c01005{letter-spacing:3.425400px;}
.ls9_c01005{letter-spacing:3.471701px;}
.ls5_c01005{letter-spacing:3.781810px;}
.ls10_c01005{letter-spacing:3.880810px;}
.ls7_c01005{letter-spacing:3.950110px;}
.ls3_c01005{letter-spacing:4.306500px;}
.ls4_c01005{letter-spacing:31.363200px;}
.ls12_c01005{letter-spacing:58.449798px;}
.ls13_c01005{letter-spacing:59.875398px;}
.lsf_c01005{letter-spacing:67.003200px;}
.sc__c01005{text-shadow:none;}
.sc0_c01005{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01005{-webkit-text-stroke:0px transparent;}
.sc0_c01005{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01005{word-spacing:-24.133626px;}
.ws1_c01005{word-spacing:0.000000px;}
._1_c01005{margin-left:-5.064444px;}
._0_c01005{width:19.009584px;}
._2_c01005{width:31.207409px;}
.fc0_c01005{color:transparent;}
.fs0_c01005{font-size:22.176000px;}
.fs3_c01005{font-size:25.344000px;}
.fs9_c01005{font-size:27.720000px;}
.fs4_c01005{font-size:31.363200px;}
.fsa_c01005{font-size:33.264000px;}
.fs8_c01005{font-size:36.432000px;}
.fse_c01005{font-size:58.449798px;}
.fs10_c01005{font-size:59.875398px;}
.fs7_c01005{font-size:61.776198px;}
.fsf_c01005{font-size:66.330000px;}
.fsc_c01005{font-size:67.003200px;}
.fs2_c01005{font-size:67.320000px;}
.fs12_c01005{font-size:68.508000px;}
.fs11_c01005{font-size:70.884000px;}
.fsb_c01005{font-size:71.280000px;}
.fs5_c01005{font-size:75.636198px;}
.fsd_c01005{font-size:77.616198px;}
.fs6_c01005{font-size:79.002198px;}
.fs1_c01005{font-size:86.130000px;}
.y0_c01005{bottom:0.000000px;}
.y1_c01005{bottom:76.500000px;}
.y21_c01005{bottom:131.418585px;}
.y20_c01005{bottom:163.499535px;}
.y1f_c01005{bottom:195.219135px;}
.y1e_c01005{bottom:227.646585px;}
.y1d_c01005{bottom:258.658335px;}
.y1c_c01005{bottom:321.741135px;}
.y1b_c01005{bottom:353.460735px;}
.y1a_c01005{bottom:384.111135px;}
.y19_c01005{bottom:416.543535px;}
.y18_c01005{bottom:448.619535px;}
.y17_c01005{bottom:466.078185px;}
.y16_c01005{bottom:478.913535px;}
.y15_c01005{bottom:512.053785px;}
.y3_c01005{bottom:563.378850px;}
.y14_c01005{bottom:568.013535px;}
.y13_c01005{bottom:589.748985px;}
.y12_c01005{bottom:606.143385px;}
.y11_c01005{bottom:638.219385px;}
.y10_c01005{bottom:669.938985px;}
.yf_c01005{bottom:701.663535px;}
.y2_c01005{bottom:702.732735px;}
.ye_c01005{bottom:733.026735px;}
.yd_c01005{bottom:764.741385px;}
.yc_c01005{bottom:796.822335px;}
.yb_c01005{bottom:828.536985px;}
.ya_c01005{bottom:859.543785px;}
.y9_c01005{bottom:891.263385px;}
.y8_c01005{bottom:922.631535px;}
.y7_c01005{bottom:951.143535px;}
.y6_c01005{bottom:961.830585px;}
.y5_c01005{bottom:974.665935px;}
.y4_c01005{bottom:1054.138185px;}
.h6_c01005{height:20.887891px;}
.h2_c01005{height:23.128875px;}
.h5_c01005{height:24.873750px;}
.hb_c01005{height:28.911094px;}
.hc_c01005{height:34.693313px;}
.ha_c01005{height:37.997438px;}
.hf_c01005{height:38.927565px;}
.h11_c01005{height:39.877015px;}
.hd_c01005{height:44.624131px;}
.h9_c01005{height:60.629960px;}
.h4_c01005{height:66.070898px;}
.h13_c01005{height:67.236855px;}
.h10_c01005{height:69.180117px;}
.h12_c01005{height:69.568770px;}
.h7_c01005{height:74.232792px;}
.he_c01005{height:76.176054px;}
.h8_c01005{height:77.536337px;}
.h3_c01005{height:84.531885px;}
.h1_c01005{height:1110.000000px;}
.h0_c01005{height:1263.000000px;}
.w1_c01005{width:763.500000px;}
.w0_c01005{width:892.500000px;}
.x0_c01005{left:0.000000px;}
.x2_c01005{left:49.322850px;}
.x1_c01005{left:64.500000px;}
.x5c_c01005{left:79.240650px;}
.x18_c01005{left:80.369250px;}
.x6_c01005{left:81.547350px;}
.x69_c01005{left:83.438250px;}
.x1f_c01005{left:113.153100px;}
.x41_c01005{left:114.162900px;}
.xf_c01005{left:125.473650px;}
.x4b_c01005{left:135.868650px;}
.x7_c01005{left:137.224950px;}
.x5e_c01005{left:145.932000px;}
.x50_c01005{left:147.540750px;}
.x2f_c01005{left:158.886150px;}
.x4c_c01005{left:160.084050px;}
.x10_c01005{left:170.152350px;}
.x28_c01005{left:181.072050px;}
.x19_c01005{left:192.085800px;}
.x65_c01005{left:202.812450px;}
.x8_c01005{left:204.243000px;}
.x29_c01005{left:213.464850px;}
.x6a_c01005{left:214.806300px;}
.x9_c01005{left:225.399300px;}
.x1a_c01005{left:235.759650px;}
.x66_c01005{left:237.630750px;}
.x51_c01005{left:245.689350px;}
.x35_c01005{left:247.278300px;}
.x20_c01005{left:258.391050px;}
.x5d_c01005{left:268.231650px;}
.x59_c01005{left:270.048300px;}
.x11_c01005{left:280.834350px;}
.x45_c01005{left:291.912450px;}
.x57_c01005{left:301.733250px;}
.x21_c01005{left:303.193500px;}
.x3b_c01005{left:313.138050px;}
.xa_c01005{left:315.093300px;}
.x6b_c01005{left:323.800350px;}
.x36_c01005{left:325.735800px;}
.xb_c01005{left:335.551650px;}
.x2a_c01005{left:336.769350px;}
.x3c_c01005{left:346.600050px;}
.x12_c01005{left:347.867250px;}
.x62_c01005{left:358.554300px;}
.x30_c01005{left:368.686950px;}
.x4d_c01005{left:370.191750px;}
.x13_c01005{left:379.740300px;}
.xc_c01005{left:381.309450px;}
.x42_c01005{left:392.387550px;}
.x52_c01005{left:401.891550px;}
.x31_c01005{left:403.089450px;}
.x58_c01005{left:413.251800px;}
.x3d_c01005{left:414.514050px;}
.x14_c01005{left:424.636800px;}
.x43_c01005{left:425.696100px;}
.x53_c01005{left:437.531550px;}
.x68_c01005{left:446.001000px;}
.x2b_c01005{left:448.010700px;}
.x4e_c01005{left:458.291850px;}
.x22_c01005{left:468.137400px;}
.x37_c01005{left:469.335300px;}
.x5f_c01005{left:470.444100px;}
.x49_c01005{left:480.898500px;}
.x61_c01005{left:482.507250px;}
.x63_c01005{left:490.714350px;}
.x4f_c01005{left:492.080550px;}
.x23_c01005{left:493.209150px;}
.x5a_c01005{left:501.673650px;}
.x38_c01005{left:503.604150px;}
.x1b_c01005{left:514.914900px;}
.x15_c01005{left:524.270400px;}
.x2c_c01005{left:525.319800px;}
.x3e_c01005{left:535.675200px;}
.x44_c01005{left:536.749350px;}
.x24_c01005{left:538.892700px;}
.x6c_c01005{left:546.891900px;}
.x5b_c01005{left:548.723400px;}
.x1c_c01005{left:558.489750px;}
.x25_c01005{left:560.217300px;}
.x2d_c01005{left:568.637250px;}
.xd_c01005{left:571.488450px;}
.x46_c01005{left:579.878700px;}
.x54_c01005{left:581.937900px;}
.x32_c01005{left:590.729100px;}
.x3f_c01005{left:591.931950px;}
.x60_c01005{left:602.604150px;}
.x47_c01005{left:612.157650px;}
.x16_c01005{left:613.677300px;}
.x26_c01005{left:623.488200px;}
.x39_c01005{left:624.666300px;}
.x56_c01005{left:631.299300px;}
.x33_c01005{left:634.036650px;}
.x2e_c01005{left:635.487000px;}
.x1d_c01005{left:645.624600px;}
.x48_c01005{left:657.197700px;}
.x3a_c01005{left:658.232250px;}
.xe_c01005{left:667.360050px;}
.x67_c01005{left:668.577750px;}
.x3_c01005{left:669.632100px;}
.x1e_c01005{left:678.769800px;}
.x55_c01005{left:689.946900px;}
.x34_c01005{left:691.664550px;}
.x4a_c01005{left:698.282700px;}
.x17_c01005{left:701.386350px;}
.x4_c01005{left:702.772350px;}
.x5_c01005{left:704.113800px;}
.x27_c01005{left:712.890150px;}
.x64_c01005{left:723.092100px;}
.x40_c01005{left:735.595800px;}
@media print{
.v0_c01005{vertical-align:0.000000pt;}
.ls6_c01005{letter-spacing:-2.353126pt;}
.lsa_c01005{letter-spacing:-1.133440pt;}
.lsd_c01005{letter-spacing:-1.035376pt;}
.lse_c01005{letter-spacing:-0.463902pt;}
.ls2_c01005{letter-spacing:0.000000pt;}
.ls15_c01005{letter-spacing:0.947974pt;}
.ls11_c01005{letter-spacing:1.808546pt;}
.lsb_c01005{letter-spacing:2.185046pt;}
.ls1_c01005{letter-spacing:2.312112pt;}
.ls0_c01005{letter-spacing:2.401344pt;}
.lsc_c01005{letter-spacing:2.501037pt;}
.ls8_c01005{letter-spacing:2.745609pt;}
.ls14_c01005{letter-spacing:3.044800pt;}
.ls9_c01005{letter-spacing:3.085957pt;}
.ls5_c01005{letter-spacing:3.361609pt;}
.ls10_c01005{letter-spacing:3.449609pt;}
.ls7_c01005{letter-spacing:3.511209pt;}
.ls3_c01005{letter-spacing:3.828000pt;}
.ls4_c01005{letter-spacing:27.878400pt;}
.ls12_c01005{letter-spacing:51.955376pt;}
.ls13_c01005{letter-spacing:53.222576pt;}
.lsf_c01005{letter-spacing:59.558400pt;}
.ws0_c01005{word-spacing:-21.452112pt;}
.ws1_c01005{word-spacing:0.000000pt;}
._1_c01005{margin-left:-4.501728pt;}
._0_c01005{width:16.897408pt;}
._2_c01005{width:27.739919pt;}
.fs0_c01005{font-size:19.712000pt;}
.fs3_c01005{font-size:22.528000pt;}
.fs9_c01005{font-size:24.640000pt;}
.fs4_c01005{font-size:27.878400pt;}
.fsa_c01005{font-size:29.568000pt;}
.fs8_c01005{font-size:32.384000pt;}
.fse_c01005{font-size:51.955376pt;}
.fs10_c01005{font-size:53.222576pt;}
.fs7_c01005{font-size:54.912176pt;}
.fsf_c01005{font-size:58.960000pt;}
.fsc_c01005{font-size:59.558400pt;}
.fs2_c01005{font-size:59.840000pt;}
.fs12_c01005{font-size:60.896000pt;}
.fs11_c01005{font-size:63.008000pt;}
.fsb_c01005{font-size:63.360000pt;}
.fs5_c01005{font-size:67.232176pt;}
.fsd_c01005{font-size:68.992176pt;}
.fs6_c01005{font-size:70.224176pt;}
.fs1_c01005{font-size:76.560000pt;}
.y0_c01005{bottom:0.000000pt;}
.y1_c01005{bottom:68.000000pt;}
.y21_c01005{bottom:116.816520pt;}
.y20_c01005{bottom:145.332920pt;}
.y1f_c01005{bottom:173.528120pt;}
.y1e_c01005{bottom:202.352520pt;}
.y1d_c01005{bottom:229.918520pt;}
.y1c_c01005{bottom:285.992120pt;}
.y1b_c01005{bottom:314.187320pt;}
.y1a_c01005{bottom:341.432120pt;}
.y19_c01005{bottom:370.260920pt;}
.y18_c01005{bottom:398.772920pt;}
.y17_c01005{bottom:414.291720pt;}
.y16_c01005{bottom:425.700920pt;}
.y15_c01005{bottom:455.158920pt;}
.y3_c01005{bottom:500.781200pt;}
.y14_c01005{bottom:504.900920pt;}
.y13_c01005{bottom:524.221320pt;}
.y12_c01005{bottom:538.794120pt;}
.y11_c01005{bottom:567.306120pt;}
.y10_c01005{bottom:595.501320pt;}
.yf_c01005{bottom:623.700920pt;}
.y2_c01005{bottom:624.651320pt;}
.ye_c01005{bottom:651.579320pt;}
.yd_c01005{bottom:679.770120pt;}
.yc_c01005{bottom:708.286520pt;}
.yb_c01005{bottom:736.477320pt;}
.ya_c01005{bottom:764.038920pt;}
.y9_c01005{bottom:792.234120pt;}
.y8_c01005{bottom:820.116920pt;}
.y7_c01005{bottom:845.460920pt;}
.y6_c01005{bottom:854.960520pt;}
.y5_c01005{bottom:866.369720pt;}
.y4_c01005{bottom:937.011720pt;}
.h6_c01005{height:18.567014pt;}
.h2_c01005{height:20.559000pt;}
.h5_c01005{height:22.110000pt;}
.hb_c01005{height:25.698750pt;}
.hc_c01005{height:30.838500pt;}
.ha_c01005{height:33.775500pt;}
.hf_c01005{height:34.602280pt;}
.h11_c01005{height:35.446236pt;}
.hd_c01005{height:39.665894pt;}
.h9_c01005{height:53.893298pt;}
.h4_c01005{height:58.729688pt;}
.h13_c01005{height:59.766094pt;}
.h10_c01005{height:61.493438pt;}
.h12_c01005{height:61.838906pt;}
.h7_c01005{height:65.984704pt;}
.he_c01005{height:67.712048pt;}
.h8_c01005{height:68.921188pt;}
.h3_c01005{height:75.139453pt;}
.h1_c01005{height:986.666667pt;}
.h0_c01005{height:1122.666667pt;}
.w1_c01005{width:678.666667pt;}
.w0_c01005{width:793.333333pt;}
.x0_c01005{left:0.000000pt;}
.x2_c01005{left:43.842533pt;}
.x1_c01005{left:57.333333pt;}
.x5c_c01005{left:70.436133pt;}
.x18_c01005{left:71.439333pt;}
.x6_c01005{left:72.486533pt;}
.x69_c01005{left:74.167333pt;}
.x1f_c01005{left:100.580533pt;}
.x41_c01005{left:101.478133pt;}
.xf_c01005{left:111.532133pt;}
.x4b_c01005{left:120.772133pt;}
.x7_c01005{left:121.977733pt;}
.x5e_c01005{left:129.717333pt;}
.x50_c01005{left:131.147333pt;}
.x2f_c01005{left:141.232133pt;}
.x4c_c01005{left:142.296933pt;}
.x10_c01005{left:151.246533pt;}
.x28_c01005{left:160.952933pt;}
.x19_c01005{left:170.742933pt;}
.x65_c01005{left:180.277733pt;}
.x8_c01005{left:181.549333pt;}
.x29_c01005{left:189.746533pt;}
.x6a_c01005{left:190.938933pt;}
.x9_c01005{left:200.354933pt;}
.x1a_c01005{left:209.564133pt;}
.x66_c01005{left:211.227333pt;}
.x51_c01005{left:218.390533pt;}
.x35_c01005{left:219.802933pt;}
.x20_c01005{left:229.680933pt;}
.x5d_c01005{left:238.428133pt;}
.x59_c01005{left:240.042933pt;}
.x11_c01005{left:249.630533pt;}
.x45_c01005{left:259.477733pt;}
.x57_c01005{left:268.207333pt;}
.x21_c01005{left:269.505333pt;}
.x3b_c01005{left:278.344933pt;}
.xa_c01005{left:280.082933pt;}
.x6b_c01005{left:287.822533pt;}
.x36_c01005{left:289.542933pt;}
.xb_c01005{left:298.268133pt;}
.x2a_c01005{left:299.350533pt;}
.x3c_c01005{left:308.088933pt;}
.x12_c01005{left:309.215333pt;}
.x62_c01005{left:318.714933pt;}
.x30_c01005{left:327.721733pt;}
.x4d_c01005{left:329.059333pt;}
.x13_c01005{left:337.546933pt;}
.xc_c01005{left:338.941733pt;}
.x42_c01005{left:348.788933pt;}
.x52_c01005{left:357.236933pt;}
.x31_c01005{left:358.301733pt;}
.x58_c01005{left:367.334933pt;}
.x3d_c01005{left:368.456933pt;}
.x14_c01005{left:377.454933pt;}
.x43_c01005{left:378.396533pt;}
.x53_c01005{left:388.916933pt;}
.x68_c01005{left:396.445333pt;}
.x2b_c01005{left:398.231733pt;}
.x4e_c01005{left:407.370533pt;}
.x22_c01005{left:416.122133pt;}
.x37_c01005{left:417.186933pt;}
.x5f_c01005{left:418.172533pt;}
.x49_c01005{left:427.465333pt;}
.x61_c01005{left:428.895333pt;}
.x63_c01005{left:436.190533pt;}
.x4f_c01005{left:437.404933pt;}
.x23_c01005{left:438.408133pt;}
.x5a_c01005{left:445.932133pt;}
.x38_c01005{left:447.648133pt;}
.x1b_c01005{left:457.702133pt;}
.x15_c01005{left:466.018133pt;}
.x2c_c01005{left:466.950933pt;}
.x3e_c01005{left:476.155733pt;}
.x44_c01005{left:477.110533pt;}
.x24_c01005{left:479.015733pt;}
.x6c_c01005{left:486.126133pt;}
.x5b_c01005{left:487.754133pt;}
.x1c_c01005{left:496.435333pt;}
.x25_c01005{left:497.970933pt;}
.x2d_c01005{left:505.455333pt;}
.xd_c01005{left:507.989733pt;}
.x46_c01005{left:515.447733pt;}
.x54_c01005{left:517.278133pt;}
.x32_c01005{left:525.092533pt;}
.x3f_c01005{left:526.161733pt;}
.x60_c01005{left:535.648133pt;}
.x47_c01005{left:544.140133pt;}
.x16_c01005{left:545.490933pt;}
.x26_c01005{left:554.211733pt;}
.x39_c01005{left:555.258933pt;}
.x56_c01005{left:561.154933pt;}
.x33_c01005{left:563.588133pt;}
.x2e_c01005{left:564.877333pt;}
.x1d_c01005{left:573.888533pt;}
.x48_c01005{left:584.175733pt;}
.x3a_c01005{left:585.095333pt;}
.xe_c01005{left:593.208933pt;}
.x67_c01005{left:594.291333pt;}
.x3_c01005{left:595.228533pt;}
.x1e_c01005{left:603.350933pt;}
.x55_c01005{left:613.286133pt;}
.x34_c01005{left:614.812933pt;}
.x4a_c01005{left:620.695733pt;}
.x17_c01005{left:623.454533pt;}
.x4_c01005{left:624.686533pt;}
.x5_c01005{left:625.878933pt;}
.x27_c01005{left:633.680133pt;}
.x64_c01005{left:642.748533pt;}
.x40_c01005{left:653.862933pt;}
}





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

.ir_c01006:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01006{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01006;src:url('chunks/assets/font_aa5b79ef47d08972bf68957c.woff2')format("woff");}.ff1_c01006{font-family:ff1_c01006;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01006;src:url('chunks/assets/font_96dfe2e46c5a994ad6d4492a.woff2')format("woff");}.ff2_c01006{font-family:ff2_c01006;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01006;src:url('chunks/assets/font_4f5bae05974df54c50f81efc.woff2')format("woff");}.ff3_c01006{font-family:ff3_c01006;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4_c01006{transform:matrix(0.172965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172965,0.000000,0.000000,0.250000,0,0);}
.m55_c01006{transform:matrix(0.179878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179878,0.000000,0.000000,0.250000,0,0);}
.m57_c01006{transform:matrix(0.215053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215053,0.000000,0.000000,0.250000,0,0);}
.m52_c01006{transform:matrix(0.224050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224050,0.000000,0.000000,0.250000,0,0);}
.m1_c01006{transform:matrix(0.227535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227535,0.000000,0.000000,0.250000,0,0);}
.m7c_c01006{transform:matrix(0.227723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227723,0.000000,0.000000,0.250000,0,0);}
.m93_c01006{transform:matrix(0.229751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229751,0.000000,0.000000,0.250000,0,0);}
.m35_c01006{transform:matrix(0.243955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243955,0.000000,0.000000,0.250000,0,0);}
.m10_c01006{transform:matrix(0.245230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245230,0.000000,0.000000,0.250000,0,0);}
.m36_c01006{transform:matrix(0.248508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248508,0.000000,0.000000,0.250000,0,0);}
.m0_c01006{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m72_c01006{transform:matrix(0.252600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252600,0.000000,0.000000,0.250000,0,0);}
.mba_c01006{transform:matrix(0.252759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252759,0.000000,0.000000,0.250000,0,0);}
.m90_c01006{transform:matrix(0.253253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253253,0.000000,0.000000,0.250000,0,0);}
.m14_c01006{transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);}
.m8c_c01006{transform:matrix(0.256727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256727,0.000000,0.000000,0.250000,0,0);}
.m47_c01006{transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);}
.m3d_c01006{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m9a_c01006{transform:matrix(0.259533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259533,0.000000,0.000000,0.250000,0,0);}
.mc1_c01006{transform:matrix(0.259986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259986,0.000000,0.000000,0.250000,0,0);}
.me_c01006{transform:matrix(0.260563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260563,0.000000,0.000000,0.250000,0,0);}
.m69_c01006{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m2d_c01006{transform:matrix(0.261109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261109,0.000000,0.000000,0.250000,0,0);}
.m13_c01006{transform:matrix(0.261307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261307,0.000000,0.000000,0.250000,0,0);}
.m51_c01006{transform:matrix(0.261624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261624,0.000000,0.000000,0.250000,0,0);}
.mb5_c01006{transform:matrix(0.262041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262041,0.000000,0.000000,0.250000,0,0);}
.m74_c01006{transform:matrix(0.262391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262391,0.000000,0.000000,0.250000,0,0);}
.m9_c01006{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m19_c01006{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.ma9_c01006{transform:matrix(0.264902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264902,0.000000,0.000000,0.250000,0,0);}
.mae_c01006{transform:matrix(0.265145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265145,0.000000,0.000000,0.250000,0,0);}
.ma3_c01006{transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);}
.m8f_c01006{transform:matrix(0.266061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266061,0.000000,0.000000,0.250000,0,0);}
.m15_c01006{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m1a_c01006{transform:matrix(0.266351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266351,0.000000,0.000000,0.250000,0,0);}
.ma8_c01006{transform:matrix(0.266418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266418,0.000000,0.000000,0.250000,0,0);}
.m44_c01006{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m37_c01006{transform:matrix(0.269251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269251,0.000000,0.000000,0.250000,0,0);}
.m8_c01006{transform:matrix(0.269769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269769,0.000000,0.000000,0.250000,0,0);}
.mc6_c01006{transform:matrix(0.269857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269857,0.000000,0.000000,0.250000,0,0);}
.m20_c01006{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m21_c01006{transform:matrix(0.270968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270968,0.000000,0.000000,0.250000,0,0);}
.m3e_c01006{transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);}
.m2c_c01006{transform:matrix(0.274341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274341,0.000000,0.000000,0.250000,0,0);}
.mbf_c01006{transform:matrix(0.275362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275362,0.000000,0.000000,0.250000,0,0);}
.m65_c01006{transform:matrix(0.276309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276309,0.000000,0.000000,0.250000,0,0);}
.m4f_c01006{transform:matrix(0.277054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277054,0.000000,0.000000,0.250000,0,0);}
.m5f_c01006{transform:matrix(0.277585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277585,0.000000,0.000000,0.250000,0,0);}
.ma0_c01006{transform:matrix(0.278564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278564,0.000000,0.000000,0.250000,0,0);}
.m5c_c01006{transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);}
.m88_c01006{transform:matrix(0.278701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278701,0.000000,0.000000,0.250000,0,0);}
.mb7_c01006{transform:matrix(0.279473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279473,0.000000,0.000000,0.250000,0,0);}
.m28_c01006{transform:matrix(0.280211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280211,0.000000,0.000000,0.250000,0,0);}
.m63_c01006{transform:matrix(0.280224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280224,0.000000,0.000000,0.250000,0,0);}
.m31_c01006{transform:matrix(0.280247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280247,0.000000,0.000000,0.250000,0,0);}
.m67_c01006{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.m11_c01006{transform:matrix(0.282404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282404,0.000000,0.000000,0.250000,0,0);}
.ma4_c01006{transform:matrix(0.282749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282749,0.000000,0.000000,0.250000,0,0);}
.m83_c01006{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.mb6_c01006{transform:matrix(0.284059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284059,0.000000,0.000000,0.250000,0,0);}
.m32_c01006{transform:matrix(0.284092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284092,0.000000,0.000000,0.250000,0,0);}
.m34_c01006{transform:matrix(0.284330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284330,0.000000,0.000000,0.250000,0,0);}
.m70_c01006{transform:matrix(0.284462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284462,0.000000,0.000000,0.250000,0,0);}
.m42_c01006{transform:matrix(0.284874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284874,0.000000,0.000000,0.250000,0,0);}
.m6a_c01006{transform:matrix(0.284924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284924,0.000000,0.000000,0.250000,0,0);}
.m53_c01006{transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);}
.m2e_c01006{transform:matrix(0.286030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286030,0.000000,0.000000,0.250000,0,0);}
.m6b_c01006{transform:matrix(0.286061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286061,0.000000,0.000000,0.250000,0,0);}
.m7f_c01006{transform:matrix(0.286186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286186,0.000000,0.000000,0.250000,0,0);}
.m1e_c01006{transform:matrix(0.286496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286496,0.000000,0.000000,0.250000,0,0);}
.m50_c01006{transform:matrix(0.286929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286929,0.000000,0.000000,0.250000,0,0);}
.m24_c01006{transform:matrix(0.288044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288044,0.000000,0.000000,0.250000,0,0);}
.mb9_c01006{transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);}
.m26_c01006{transform:matrix(0.288570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288570,0.000000,0.000000,0.250000,0,0);}
.m17_c01006{transform:matrix(0.288806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288806,0.000000,0.000000,0.250000,0,0);}
.m8d_c01006{transform:matrix(0.289026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289026,0.000000,0.000000,0.250000,0,0);}
.m27_c01006{transform:matrix(0.289770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289770,0.000000,0.000000,0.250000,0,0);}
.m2a_c01006{transform:matrix(0.290029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290029,0.000000,0.000000,0.250000,0,0);}
.m41_c01006{transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);}
.m99_c01006{transform:matrix(0.290402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290402,0.000000,0.000000,0.250000,0,0);}
.m9e_c01006{transform:matrix(0.290636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290636,0.000000,0.000000,0.250000,0,0);}
.m84_c01006{transform:matrix(0.290999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290999,0.000000,0.000000,0.250000,0,0);}
.m56_c01006{transform:matrix(0.291008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291008,0.000000,0.000000,0.250000,0,0);}
.m48_c01006{transform:matrix(0.291783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291783,0.000000,0.000000,0.250000,0,0);}
.m73_c01006{transform:matrix(0.292782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292782,0.000000,0.000000,0.250000,0,0);}
.m2_c01006{transform:matrix(0.293941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293941,0.000000,0.000000,0.250000,0,0);}
.m91_c01006{transform:matrix(0.294403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294403,0.000000,0.000000,0.250000,0,0);}
.m59_c01006{transform:matrix(0.294463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294463,0.000000,0.000000,0.250000,0,0);}
.m1b_c01006{transform:matrix(0.295212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295212,0.000000,0.000000,0.250000,0,0);}
.m46_c01006{transform:matrix(0.296813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296813,0.000000,0.000000,0.250000,0,0);}
.m8a_c01006{transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);}
.mbd_c01006{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.mc5_c01006{transform:matrix(0.297532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297532,0.000000,0.000000,0.250000,0,0);}
.m71_c01006{transform:matrix(0.297533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297533,0.000000,0.000000,0.250000,0,0);}
.m66_c01006{transform:matrix(0.297571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297571,0.000000,0.000000,0.250000,0,0);}
.m3b_c01006{transform:matrix(0.298080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298080,0.000000,0.000000,0.250000,0,0);}
.m6c_c01006{transform:matrix(0.298155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298155,0.000000,0.000000,0.250000,0,0);}
.m82_c01006{transform:matrix(0.298376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298376,0.000000,0.000000,0.250000,0,0);}
.m43_c01006{transform:matrix(0.298444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298444,0.000000,0.000000,0.250000,0,0);}
.m5b_c01006{transform:matrix(0.298934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298934,0.000000,0.000000,0.250000,0,0);}
.m9d_c01006{transform:matrix(0.298980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298980,0.000000,0.000000,0.250000,0,0);}
.m3a_c01006{transform:matrix(0.300223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300223,0.000000,0.000000,0.250000,0,0);}
.m89_c01006{transform:matrix(0.300577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300577,0.000000,0.000000,0.250000,0,0);}
.mb_c01006{transform:matrix(0.301331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301331,0.000000,0.000000,0.250000,0,0);}
.m86_c01006{transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);}
.mab_c01006{transform:matrix(0.302060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302060,0.000000,0.000000,0.250000,0,0);}
.mb2_c01006{transform:matrix(0.302092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302092,0.000000,0.000000,0.250000,0,0);}
.m4b_c01006{transform:matrix(0.302504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302504,0.000000,0.000000,0.250000,0,0);}
.m4e_c01006{transform:matrix(0.302640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302640,0.000000,0.000000,0.250000,0,0);}
.mbe_c01006{transform:matrix(0.302888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302888,0.000000,0.000000,0.250000,0,0);}
.md_c01006{transform:matrix(0.303014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303014,0.000000,0.000000,0.250000,0,0);}
.m60_c01006{transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);}
.m4c_c01006{transform:matrix(0.303069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303069,0.000000,0.000000,0.250000,0,0);}
.mb4_c01006{transform:matrix(0.303179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303179,0.000000,0.000000,0.250000,0,0);}
.m7d_c01006{transform:matrix(0.303298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303298,0.000000,0.000000,0.250000,0,0);}
.m5_c01006{transform:matrix(0.303450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303450,0.000000,0.000000,0.250000,0,0);}
.m29_c01006{transform:matrix(0.303483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303483,0.000000,0.000000,0.250000,0,0);}
.m4a_c01006{transform:matrix(0.303734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303734,0.000000,0.000000,0.250000,0,0);}
.m7b_c01006{transform:matrix(0.304034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304034,0.000000,0.000000,0.250000,0,0);}
.m5a_c01006{transform:matrix(0.304223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304223,0.000000,0.000000,0.250000,0,0);}
.m96_c01006{transform:matrix(0.304289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304289,0.000000,0.000000,0.250000,0,0);}
.m6d_c01006{transform:matrix(0.304363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304363,0.000000,0.000000,0.250000,0,0);}
.m1c_c01006{transform:matrix(0.304819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304819,0.000000,0.000000,0.250000,0,0);}
.m77_c01006{transform:matrix(0.305114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305114,0.000000,0.000000,0.250000,0,0);}
.m58_c01006{transform:matrix(0.305244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305244,0.000000,0.000000,0.250000,0,0);}
.m94_c01006{transform:matrix(0.305434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305434,0.000000,0.000000,0.250000,0,0);}
.ma6_c01006{transform:matrix(0.305543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305543,0.000000,0.000000,0.250000,0,0);}
.m95_c01006{transform:matrix(0.305755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305755,0.000000,0.000000,0.250000,0,0);}
.m68_c01006{transform:matrix(0.306147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306147,0.000000,0.000000,0.250000,0,0);}
.m9f_c01006{transform:matrix(0.306485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306485,0.000000,0.000000,0.250000,0,0);}
.ma2_c01006{transform:matrix(0.307567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307567,0.000000,0.000000,0.250000,0,0);}
.m80_c01006{transform:matrix(0.308321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308321,0.000000,0.000000,0.250000,0,0);}
.m16_c01006{transform:matrix(0.308513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308513,0.000000,0.000000,0.250000,0,0);}
.m33_c01006{transform:matrix(0.309374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309374,0.000000,0.000000,0.250000,0,0);}
.mc2_c01006{transform:matrix(0.309492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309492,0.000000,0.000000,0.250000,0,0);}
.m3f_c01006{transform:matrix(0.309614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309614,0.000000,0.000000,0.250000,0,0);}
.mb1_c01006{transform:matrix(0.309763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309763,0.000000,0.000000,0.250000,0,0);}
.m22_c01006{transform:matrix(0.311776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311776,0.000000,0.000000,0.250000,0,0);}
.m7e_c01006{transform:matrix(0.311905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311905,0.000000,0.000000,0.250000,0,0);}
.m4d_c01006{transform:matrix(0.312051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312051,0.000000,0.000000,0.250000,0,0);}
.m97_c01006{transform:matrix(0.313171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313171,0.000000,0.000000,0.250000,0,0);}
.m6f_c01006{transform:matrix(0.313884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313884,0.000000,0.000000,0.250000,0,0);}
.m8e_c01006{transform:matrix(0.313943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313943,0.000000,0.000000,0.250000,0,0);}
.m9c_c01006{transform:matrix(0.314182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314182,0.000000,0.000000,0.250000,0,0);}
.m76_c01006{transform:matrix(0.315048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315048,0.000000,0.000000,0.250000,0,0);}
.m5d_c01006{transform:matrix(0.315086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315086,0.000000,0.000000,0.250000,0,0);}
.m54_c01006{transform:matrix(0.315917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315917,0.000000,0.000000,0.250000,0,0);}
.m3_c01006{transform:matrix(0.316439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316439,0.000000,0.000000,0.250000,0,0);}
.m92_c01006{transform:matrix(0.317822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317822,0.000000,0.000000,0.250000,0,0);}
.m62_c01006{transform:matrix(0.318760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318760,0.000000,0.000000,0.250000,0,0);}
.m23_c01006{transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);}
.maf_c01006{transform:matrix(0.318888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318888,0.000000,0.000000,0.250000,0,0);}
.m49_c01006{transform:matrix(0.318958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318958,0.000000,0.000000,0.250000,0,0);}
.mac_c01006{transform:matrix(0.319176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319176,0.000000,0.000000,0.250000,0,0);}
.mc3_c01006{transform:matrix(0.319281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319281,0.000000,0.000000,0.250000,0,0);}
.m78_c01006{transform:matrix(0.319289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319289,0.000000,0.000000,0.250000,0,0);}
.mc_c01006{transform:matrix(0.319808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319808,0.000000,0.000000,0.250000,0,0);}
.m87_c01006{transform:matrix(0.320544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320544,0.000000,0.000000,0.250000,0,0);}
.m1f_c01006{transform:matrix(0.321083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321083,0.000000,0.000000,0.250000,0,0);}
.m61_c01006{transform:matrix(0.321473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321473,0.000000,0.000000,0.250000,0,0);}
.maa_c01006{transform:matrix(0.324455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324455,0.000000,0.000000,0.250000,0,0);}
.ma_c01006{transform:matrix(0.324663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324663,0.000000,0.000000,0.250000,0,0);}
.m6e_c01006{transform:matrix(0.325289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325289,0.000000,0.000000,0.250000,0,0);}
.mc4_c01006{transform:matrix(0.325384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325384,0.000000,0.000000,0.250000,0,0);}
.m7a_c01006{transform:matrix(0.325701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325701,0.000000,0.000000,0.250000,0,0);}
.m8b_c01006{transform:matrix(0.327016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327016,0.000000,0.000000,0.250000,0,0);}
.mb8_c01006{transform:matrix(0.327083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327083,0.000000,0.000000,0.250000,0,0);}
.mc0_c01006{transform:matrix(0.328660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328660,0.000000,0.000000,0.250000,0,0);}
.m85_c01006{transform:matrix(0.328833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328833,0.000000,0.000000,0.250000,0,0);}
.m75_c01006{transform:matrix(0.328850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328850,0.000000,0.000000,0.250000,0,0);}
.m5e_c01006{transform:matrix(0.329238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329238,0.000000,0.000000,0.250000,0,0);}
.mbc_c01006{transform:matrix(0.329458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329458,0.000000,0.000000,0.250000,0,0);}
.ma7_c01006{transform:matrix(0.329646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329646,0.000000,0.000000,0.250000,0,0);}
.ma5_c01006{transform:matrix(0.330374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330374,0.000000,0.000000,0.250000,0,0);}
.m79_c01006{transform:matrix(0.330710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330710,0.000000,0.000000,0.250000,0,0);}
.m25_c01006{transform:matrix(0.332170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332170,0.000000,0.000000,0.250000,0,0);}
.mb0_c01006{transform:matrix(0.332788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332788,0.000000,0.000000,0.250000,0,0);}
.m12_c01006{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m40_c01006{transform:matrix(0.336028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336028,0.000000,0.000000,0.250000,0,0);}
.m3c_c01006{transform:matrix(0.337244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337244,0.000000,0.000000,0.250000,0,0);}
.m30_c01006{transform:matrix(0.337878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337878,0.000000,0.000000,0.250000,0,0);}
.m18_c01006{transform:matrix(0.338655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338655,0.000000,0.000000,0.250000,0,0);}
.m2b_c01006{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.mb3_c01006{transform:matrix(0.342694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342694,0.000000,0.000000,0.250000,0,0);}
.m7_c01006{transform:matrix(0.344895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344895,0.000000,0.000000,0.250000,0,0);}
.m9b_c01006{transform:matrix(0.345039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345039,0.000000,0.000000,0.250000,0,0);}
.mad_c01006{transform:matrix(0.345160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345160,0.000000,0.000000,0.250000,0,0);}
.m39_c01006{transform:matrix(0.345988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345988,0.000000,0.000000,0.250000,0,0);}
.mf_c01006{transform:matrix(0.348612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348612,0.000000,0.000000,0.250000,0,0);}
.m98_c01006{transform:matrix(0.348765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348765,0.000000,0.000000,0.250000,0,0);}
.m64_c01006{transform:matrix(0.351400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351400,0.000000,0.000000,0.250000,0,0);}
.mbb_c01006{transform:matrix(0.353894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353894,0.000000,0.000000,0.250000,0,0);}
.m1d_c01006{transform:matrix(0.355345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355345,0.000000,0.000000,0.250000,0,0);}
.m38_c01006{transform:matrix(0.355348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355348,0.000000,0.000000,0.250000,0,0);}
.ma1_c01006{transform:matrix(0.373079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373079,0.000000,0.000000,0.250000,0,0);}
.m81_c01006{transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);}
.m6_c01006{transform:matrix(0.385437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385437,0.000000,0.000000,0.250000,0,0);}
.m45_c01006{transform:matrix(0.391460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391460,0.000000,0.000000,0.250000,0,0);}
.m2f_c01006{transform:matrix(0.431836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431836,0.000000,0.000000,0.250000,0,0);}
.v0_c01006{vertical-align:0.000000px;}
.ls1_c01006{letter-spacing:-2.744280px;}
.ls11_c01006{letter-spacing:-2.085653px;}
.lsf_c01006{letter-spacing:-1.685772px;}
.lsb_c01006{letter-spacing:-1.427026px;}
.ls10_c01006{letter-spacing:-1.062270px;}
.ls9_c01006{letter-spacing:-0.948737px;}
.ls12_c01006{letter-spacing:-0.737035px;}
.ls6_c01006{letter-spacing:-0.415562px;}
.ls5_c01006{letter-spacing:0.000000px;}
.ls4_c01006{letter-spacing:1.717135px;}
.ls7_c01006{letter-spacing:2.132698px;}
.ls0_c01006{letter-spacing:2.576059px;}
.lsd_c01006{letter-spacing:3.387226px;}
.lsa_c01006{letter-spacing:3.484810px;}
.lse_c01006{letter-spacing:3.524400px;}
.ls13_c01006{letter-spacing:3.781810px;}
.lsc_c01006{letter-spacing:3.801610px;}
.ls2_c01006{letter-spacing:3.920400px;}
.ls8_c01006{letter-spacing:58.449798px;}
.ls3_c01006{letter-spacing:61.300998px;}
.sc__c01006{text-shadow:none;}
.sc0_c01006{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01006{-webkit-text-stroke:0px transparent;}
.sc0_c01006{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01006{word-spacing:-19.186438px;}
.ws1_c01006{word-spacing:0.000000px;}
._0_c01006{width:5.660662px;}
.fc0_c01006{color:transparent;}
.fs9_c01006{font-size:25.344000px;}
.fsb_c01006{font-size:28.314000px;}
.fs12_c01006{font-size:33.264000px;}
.fs3_c01006{font-size:34.056198px;}
.fs4_c01006{font-size:37.818000px;}
.fsc_c01006{font-size:49.500000px;}
.fs13_c01006{font-size:50.292000px;}
.fsf_c01006{font-size:51.876198px;}
.fs5_c01006{font-size:58.449798px;}
.fs2_c01006{font-size:61.300998px;}
.fs8_c01006{font-size:67.320000px;}
.fs10_c01006{font-size:68.112198px;}
.fs6_c01006{font-size:69.696198px;}
.fsd_c01006{font-size:70.488000px;}
.fse_c01006{font-size:73.260000px;}
.fsa_c01006{font-size:73.656198px;}
.fs11_c01006{font-size:75.636198px;}
.fs7_c01006{font-size:76.032198px;}
.fs1_c01006{font-size:78.408000px;}
.fs0_c01006{font-size:92.664000px;}
.y0_c01006{bottom:0.000000px;}
.y24_c01006{bottom:24.503535px;}
.y23_c01006{bottom:32.695785px;}
.y22_c01006{bottom:67.984335px;}
.y1_c01006{bottom:76.500000px;}
.y21_c01006{bottom:126.072585px;}
.y20_c01006{bottom:157.797135px;}
.y1e_c01006{bottom:189.868185px;}
.y1f_c01006{bottom:194.506335px;}
.y1d_c01006{bottom:222.305535px;}
.y1c_c01006{bottom:254.020185px;}
.y1b_c01006{bottom:286.457535px;}
.y1a_c01006{bottom:317.820735px;}
.y19_c01006{bottom:345.976335px;}
.y18_c01006{bottom:350.253135px;}
.y17_c01006{bottom:355.599135px;}
.y16_c01006{bottom:368.429535px;}
.y15_c01006{bottom:381.616335px;}
.y14_c01006{bottom:412.979535px;}
.y13_c01006{bottom:444.699135px;}
.y12_c01006{bottom:476.062335px;}
.y11_c01006{bottom:508.133385px;}
.y10_c01006{bottom:539.140185px;}
.yf_c01006{bottom:570.859785px;}
.ye_c01006{bottom:602.222985px;}
.yd_c01006{bottom:634.655385px;}
.yc_c01006{bottom:665.310735px;}
.yb_c01006{bottom:666.736335px;}
.ya_c01006{bottom:730.175535px;}
.y9_c01006{bottom:750.846735px;}
.y8_c01006{bottom:761.538735px;}
.y7_c01006{bottom:793.609785px;}
.y6_c01006{bottom:825.334335px;}
.y5_c01006{bottom:857.405385px;}
.y4_c01006{bottom:888.412185px;}
.y3_c01006{bottom:920.849535px;}
.y2_c01006{bottom:1055.920185px;}
.hb_c01006{height:24.873750px;}
.hd_c01006{height:29.530617px;}
.h14_c01006{height:34.693313px;}
.h5_c01006{height:35.519550px;}
.h7_c01006{height:38.927565px;}
.h6_c01006{height:39.442992px;}
.h4_c01006{height:40.826465px;}
.h15_c01006{height:49.358848px;}
.he_c01006{height:51.626953px;}
.h11_c01006{height:54.105253px;}
.ha_c01006{height:66.070898px;}
.hf_c01006{height:69.180117px;}
.h12_c01006{height:71.038894px;}
.h8_c01006{height:72.690957px;}
.h13_c01006{height:74.232792px;}
.h10_c01006{height:76.407891px;}
.hc_c01006{height:76.821113px;}
.h3_c01006{height:76.953164px;}
.h9_c01006{height:79.299207px;}
.h2_c01006{height:90.944648px;}
.h1_c01006{height:1110.000000px;}
.h0_c01006{height:1263.000000px;}
.w1_c01006{width:763.500000px;}
.w0_c01006{width:892.500000px;}
.x0_c01006{left:0.000000px;}
.x1_c01006{left:64.500000px;}
.x42_c01006{left:77.201235px;}
.xe_c01006{left:78.592185px;}
.x3_c01006{left:79.844535px;}
.x6d_c01006{left:82.136385px;}
.x6c_c01006{left:101.926485px;}
.x3d_c01006{left:111.376035px;}
.x17_c01006{left:112.974885px;}
.x4_c01006{left:122.785785px;}
.x37_c01006{left:133.378785px;}
.x21_c01006{left:134.675685px;}
.x4c_c01006{left:143.288685px;}
.x35_c01006{left:144.506385px;}
.x18_c01006{left:145.639935px;}
.x53_c01006{left:152.015535px;}
.x49_c01006{left:156.099285px;}
.x5_c01006{left:157.153635px;}
.x54_c01006{left:166.756635px;}
.xf_c01006{left:168.182235px;}
.x43_c01006{left:177.314985px;}
.x26_c01006{left:178.884135px;}
.x2e_c01006{left:187.952535px;}
.x22_c01006{left:189.269235px;}
.x55_c01006{left:199.411785px;}
.x36_c01006{left:200.678985px;}
.x6_c01006{left:211.925385px;}
.x19_c01006{left:221.543235px;}
.x68_c01006{left:223.132185px;}
.x65_c01006{left:232.096635px;}
.x23_c01006{left:234.457785px;}
.x34_c01006{left:238.447485px;}
.x38_c01006{left:245.525985px;}
.x3e_c01006{left:255.346785px;}
.x60_c01006{left:266.043735px;}
.x7_c01006{left:267.068385px;}
.x2f_c01006{left:277.997985px;}
.x56_c01006{left:279.057285px;}
.x24_c01006{left:289.778985px;}
.x10_c01006{left:299.545335px;}
.x27_c01006{left:300.609585px;}
.x57_c01006{left:301.757985px;}
.x5d_c01006{left:310.608585px;}
.x3f_c01006{left:312.098535px;}
.x11_c01006{left:322.374735px;}
.x6e_c01006{left:323.508285px;}
.x4f_c01006{left:333.586485px;}
.x4a_c01006{left:334.630935px;}
.x30_c01006{left:345.139785px;}
.x12_c01006{left:356.351535px;}
.x8_c01006{left:357.757335px;}
.x1a_c01006{left:367.112835px;}
.x39_c01006{left:377.735535px;}
.x28_c01006{left:388.788885px;}
.x25_c01006{left:400.886685px;}
.x3a_c01006{left:410.756985px;}
.x1b_c01006{left:412.276635px;}
.x44_c01006{left:420.904485px;}
.x9_c01006{left:422.290485px;}
.x31_c01006{left:423.394335px;}
.x61_c01006{left:424.988235px;}
.x46_c01006{left:435.888135px;}
.x29_c01006{left:445.169385px;}
.xa_c01006{left:456.841485px;}
.x1c_c01006{left:467.563185px;}
.x13_c01006{left:478.448235px;}
.x58_c01006{left:479.943135px;}
.x3b_c01006{left:481.319235px;}
.x66_c01006{left:488.085885px;}
.x50_c01006{left:489.655035px;}
.x62_c01006{left:491.813235px;}
.x4d_c01006{left:499.629285px;}
.x1d_c01006{left:500.703435px;}
.x32_c01006{left:511.756785px;}
.x2a_c01006{left:521.691435px;}
.x5e_c01006{left:523.379385px;}
.x4e_c01006{left:532.324035px;}
.x40_c01006{left:533.903085px;}
.x3c_c01006{left:544.931685px;}
.x41_c01006{left:554.386185px;}
.x2b_c01006{left:555.559335px;}
.x69_c01006{left:565.068285px;}
.x59_c01006{left:567.280935px;}
.x63_c01006{left:577.334385px;}
.x14_c01006{left:578.373885px;}
.xb_c01006{left:587.521485px;}
.x45_c01006{left:589.748985px;}
.x47_c01006{left:599.282685px;}
.x15_c01006{left:610.890435px;}
.x67_c01006{left:613.058535px;}
.x51_c01006{left:620.676585px;}
.x1e_c01006{left:622.092285px;}
.x2c_c01006{left:632.259585px;}
.x33_c01006{left:643.619835px;}
.x1f_c01006{left:655.673085px;}
.x6a_c01006{left:656.821485px;}
.x48_c01006{left:664.548435px;}
.xc_c01006{left:666.132435px;}
.x2_c01006{left:676.750185px;}
.x6b_c01006{left:678.537135px;}
.x52_c01006{left:686.902635px;}
.x20_c01006{left:688.006485px;}
.x5f_c01006{left:698.005485px;}
.xd_c01006{left:699.436035px;}
.x5a_c01006{left:703.128735px;}
.x5b_c01006{left:704.470185px;}
.x5c_c01006{left:706.078935px;}
.x64_c01006{left:709.905285px;}
.x16_c01006{left:711.023985px;}
.x2d_c01006{left:720.884385px;}
.x4b_c01006{left:722.686185px;}
@media print{
.v0_c01006{vertical-align:0.000000pt;}
.ls1_c01006{letter-spacing:-2.439360pt;}
.ls11_c01006{letter-spacing:-1.853914pt;}
.lsf_c01006{letter-spacing:-1.498464pt;}
.lsb_c01006{letter-spacing:-1.268467pt;}
.ls10_c01006{letter-spacing:-0.944240pt;}
.ls9_c01006{letter-spacing:-0.843322pt;}
.ls12_c01006{letter-spacing:-0.655142pt;}
.ls6_c01006{letter-spacing:-0.369389pt;}
.ls5_c01006{letter-spacing:0.000000pt;}
.ls4_c01006{letter-spacing:1.526342pt;}
.ls7_c01006{letter-spacing:1.895731pt;}
.ls0_c01006{letter-spacing:2.289830pt;}
.lsd_c01006{letter-spacing:3.010867pt;}
.lsa_c01006{letter-spacing:3.097609pt;}
.lse_c01006{letter-spacing:3.132800pt;}
.ls13_c01006{letter-spacing:3.361609pt;}
.lsc_c01006{letter-spacing:3.379209pt;}
.ls2_c01006{letter-spacing:3.484800pt;}
.ls8_c01006{letter-spacing:51.955376pt;}
.ls3_c01006{letter-spacing:54.489776pt;}
.ws0_c01006{word-spacing:-17.054611pt;}
.ws1_c01006{word-spacing:0.000000pt;}
._0_c01006{width:5.031699pt;}
.fs9_c01006{font-size:22.528000pt;}
.fsb_c01006{font-size:25.168000pt;}
.fs12_c01006{font-size:29.568000pt;}
.fs3_c01006{font-size:30.272176pt;}
.fs4_c01006{font-size:33.616000pt;}
.fsc_c01006{font-size:44.000000pt;}
.fs13_c01006{font-size:44.704000pt;}
.fsf_c01006{font-size:46.112176pt;}
.fs5_c01006{font-size:51.955376pt;}
.fs2_c01006{font-size:54.489776pt;}
.fs8_c01006{font-size:59.840000pt;}
.fs10_c01006{font-size:60.544176pt;}
.fs6_c01006{font-size:61.952176pt;}
.fsd_c01006{font-size:62.656000pt;}
.fse_c01006{font-size:65.120000pt;}
.fsa_c01006{font-size:65.472176pt;}
.fs11_c01006{font-size:67.232176pt;}
.fs7_c01006{font-size:67.584176pt;}
.fs1_c01006{font-size:69.696000pt;}
.fs0_c01006{font-size:82.368000pt;}
.y0_c01006{bottom:0.000000pt;}
.y24_c01006{bottom:21.780920pt;}
.y23_c01006{bottom:29.062920pt;}
.y22_c01006{bottom:60.430520pt;}
.y1_c01006{bottom:68.000000pt;}
.y21_c01006{bottom:112.064520pt;}
.y20_c01006{bottom:140.264120pt;}
.y1e_c01006{bottom:168.771720pt;}
.y1f_c01006{bottom:172.894520pt;}
.y1d_c01006{bottom:197.604920pt;}
.y1c_c01006{bottom:225.795720pt;}
.y1b_c01006{bottom:254.628920pt;}
.y1a_c01006{bottom:282.507320pt;}
.y19_c01006{bottom:307.534520pt;}
.y18_c01006{bottom:311.336120pt;}
.y17_c01006{bottom:316.088120pt;}
.y16_c01006{bottom:327.492920pt;}
.y15_c01006{bottom:339.214520pt;}
.y14_c01006{bottom:367.092920pt;}
.y13_c01006{bottom:395.288120pt;}
.y12_c01006{bottom:423.166520pt;}
.y11_c01006{bottom:451.674120pt;}
.y10_c01006{bottom:479.235720pt;}
.yf_c01006{bottom:507.430920pt;}
.ye_c01006{bottom:535.309320pt;}
.yd_c01006{bottom:564.138120pt;}
.yc_c01006{bottom:591.387320pt;}
.yb_c01006{bottom:592.654520pt;}
.ya_c01006{bottom:649.044920pt;}
.y9_c01006{bottom:667.419320pt;}
.y8_c01006{bottom:676.923320pt;}
.y7_c01006{bottom:705.430920pt;}
.y6_c01006{bottom:733.630520pt;}
.y5_c01006{bottom:762.138120pt;}
.y4_c01006{bottom:789.699720pt;}
.y3_c01006{bottom:818.532920pt;}
.y2_c01006{bottom:938.595720pt;}
.hb_c01006{height:22.110000pt;}
.hd_c01006{height:26.249438pt;}
.h14_c01006{height:30.838500pt;}
.h5_c01006{height:31.572934pt;}
.h7_c01006{height:34.602280pt;}
.h6_c01006{height:35.060438pt;}
.h4_c01006{height:36.290191pt;}
.h15_c01006{height:43.874531pt;}
.he_c01006{height:45.890625pt;}
.h11_c01006{height:48.093559pt;}
.ha_c01006{height:58.729688pt;}
.hf_c01006{height:61.493438pt;}
.h12_c01006{height:63.145684pt;}
.h8_c01006{height:64.614184pt;}
.h13_c01006{height:65.984704pt;}
.h10_c01006{height:67.918125pt;}
.hc_c01006{height:68.285434pt;}
.h3_c01006{height:68.402813pt;}
.h9_c01006{height:70.488184pt;}
.h2_c01006{height:80.839688pt;}
.h1_c01006{height:986.666667pt;}
.h0_c01006{height:1122.666667pt;}
.w1_c01006{width:678.666667pt;}
.w0_c01006{width:793.333333pt;}
.x0_c01006{left:0.000000pt;}
.x1_c01006{left:57.333333pt;}
.x42_c01006{left:68.623320pt;}
.xe_c01006{left:69.859720pt;}
.x3_c01006{left:70.972920pt;}
.x6d_c01006{left:73.010120pt;}
.x6c_c01006{left:90.601320pt;}
.x3d_c01006{left:99.000920pt;}
.x17_c01006{left:100.422120pt;}
.x4_c01006{left:109.142920pt;}
.x37_c01006{left:118.558920pt;}
.x21_c01006{left:119.711720pt;}
.x4c_c01006{left:127.367720pt;}
.x35_c01006{left:128.450120pt;}
.x18_c01006{left:129.457720pt;}
.x53_c01006{left:135.124920pt;}
.x49_c01006{left:138.754920pt;}
.x5_c01006{left:139.692120pt;}
.x54_c01006{left:148.228120pt;}
.xf_c01006{left:149.495320pt;}
.x43_c01006{left:157.613320pt;}
.x26_c01006{left:159.008120pt;}
.x2e_c01006{left:167.068920pt;}
.x22_c01006{left:168.239320pt;}
.x55_c01006{left:177.254920pt;}
.x36_c01006{left:178.381320pt;}
.x6_c01006{left:188.378120pt;}
.x19_c01006{left:196.927320pt;}
.x68_c01006{left:198.339720pt;}
.x65_c01006{left:206.308120pt;}
.x23_c01006{left:208.406920pt;}
.x34_c01006{left:211.953320pt;}
.x38_c01006{left:218.245320pt;}
.x3e_c01006{left:226.974920pt;}
.x60_c01006{left:236.483320pt;}
.x7_c01006{left:237.394120pt;}
.x2f_c01006{left:247.109320pt;}
.x56_c01006{left:248.050920pt;}
.x24_c01006{left:257.581320pt;}
.x10_c01006{left:266.262520pt;}
.x27_c01006{left:267.208520pt;}
.x57_c01006{left:268.229320pt;}
.x5d_c01006{left:276.096520pt;}
.x3f_c01006{left:277.420920pt;}
.x11_c01006{left:286.555320pt;}
.x6e_c01006{left:287.562920pt;}
.x4f_c01006{left:296.521320pt;}
.x4a_c01006{left:297.449720pt;}
.x30_c01006{left:306.790920pt;}
.x12_c01006{left:316.756920pt;}
.x8_c01006{left:318.006520pt;}
.x1a_c01006{left:326.322520pt;}
.x39_c01006{left:335.764920pt;}
.x28_c01006{left:345.590120pt;}
.x25_c01006{left:356.343720pt;}
.x3a_c01006{left:365.117320pt;}
.x1b_c01006{left:366.468120pt;}
.x44_c01006{left:374.137320pt;}
.x9_c01006{left:375.369320pt;}
.x31_c01006{left:376.350520pt;}
.x61_c01006{left:377.767320pt;}
.x46_c01006{left:387.456120pt;}
.x29_c01006{left:395.706120pt;}
.xa_c01006{left:406.081320pt;}
.x1c_c01006{left:415.611720pt;}
.x13_c01006{left:425.287320pt;}
.x58_c01006{left:426.616120pt;}
.x3b_c01006{left:427.839320pt;}
.x66_c01006{left:433.854120pt;}
.x50_c01006{left:435.248920pt;}
.x62_c01006{left:437.167320pt;}
.x4d_c01006{left:444.114920pt;}
.x1d_c01006{left:445.069720pt;}
.x32_c01006{left:454.894920pt;}
.x2a_c01006{left:463.725720pt;}
.x5e_c01006{left:465.226120pt;}
.x4e_c01006{left:473.176920pt;}
.x40_c01006{left:474.580520pt;}
.x3c_c01006{left:484.383720pt;}
.x41_c01006{left:492.787720pt;}
.x2b_c01006{left:493.830520pt;}
.x69_c01006{left:502.282920pt;}
.x59_c01006{left:504.249720pt;}
.x63_c01006{left:513.186120pt;}
.x14_c01006{left:514.110120pt;}
.xb_c01006{left:522.241320pt;}
.x45_c01006{left:524.221320pt;}
.x47_c01006{left:532.695720pt;}
.x15_c01006{left:543.013720pt;}
.x67_c01006{left:544.940920pt;}
.x51_c01006{left:551.712520pt;}
.x1e_c01006{left:552.970920pt;}
.x2c_c01006{left:562.008520pt;}
.x33_c01006{left:572.106520pt;}
.x1f_c01006{left:582.820520pt;}
.x6a_c01006{left:583.841320pt;}
.x48_c01006{left:590.709720pt;}
.xc_c01006{left:592.117720pt;}
.x2_c01006{left:601.555720pt;}
.x6b_c01006{left:603.144120pt;}
.x52_c01006{left:610.580120pt;}
.x20_c01006{left:611.561320pt;}
.x5f_c01006{left:620.449320pt;}
.xd_c01006{left:621.720920pt;}
.x5a_c01006{left:625.003320pt;}
.x5b_c01006{left:626.195720pt;}
.x5c_c01006{left:627.625720pt;}
.x64_c01006{left:631.026920pt;}
.x16_c01006{left:632.021320pt;}
.x2d_c01006{left:640.786120pt;}
.x4b_c01006{left:642.387720pt;}
}





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

.ir_c01007:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01007{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01007;src:url('chunks/assets/font_30432a596ab9dc0724d82e53.woff2')format("woff");}.ff1_c01007{font-family:ff1_c01007;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01007;src:url('chunks/assets/font_e132846183d66e2e2f75f3ea.woff2')format("woff");}.ff2_c01007{font-family:ff2_c01007;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01007;src:url('chunks/assets/font_676c9bb5e49f11a43aa206dd.woff2')format("woff");}.ff3_c01007{font-family:ff3_c01007;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01007;src:url('chunks/assets/font_ad588c10f45006d63bb1c466.woff2')format("woff");}.ff4_c01007{font-family:ff4_c01007;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m48_c01007{transform:matrix(0.086046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086046,0.000000,0.000000,0.250000,0,0);}
.mb5_c01007{transform:matrix(0.123543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123543,0.000000,0.000000,0.250000,0,0);}
.m4a_c01007{transform:matrix(0.127731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127731,0.000000,0.000000,0.250000,0,0);}
.m84_c01007{transform:matrix(0.172890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172890,0.000000,0.000000,0.250000,0,0);}
.m1b_c01007{transform:matrix(0.180612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180612,0.000000,0.000000,0.250000,0,0);}
.m75_c01007{transform:matrix(0.180953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180953,0.000000,0.000000,0.250000,0,0);}
.m49_c01007{transform:matrix(0.191860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191860,0.000000,0.000000,0.250000,0,0);}
.m5f_c01007{transform:matrix(0.192709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192709,0.000000,0.000000,0.250000,0,0);}
.m98_c01007{transform:matrix(0.212133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212133,0.000000,0.000000,0.250000,0,0);}
.m7a_c01007{transform:matrix(0.224335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224335,0.000000,0.000000,0.250000,0,0);}
.m7e_c01007{transform:matrix(0.228137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228137,0.000000,0.000000,0.250000,0,0);}
.m8e_c01007{transform:matrix(0.231684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231684,0.000000,0.000000,0.250000,0,0);}
.mb4_c01007{transform:matrix(0.235601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235601,0.000000,0.000000,0.250000,0,0);}
.m3b_c01007{transform:matrix(0.235741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235741,0.000000,0.000000,0.250000,0,0);}
.mab_c01007{transform:matrix(0.243346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243346,0.000000,0.000000,0.250000,0,0);}
.m6b_c01007{transform:matrix(0.244911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244911,0.000000,0.000000,0.250000,0,0);}
.m0_c01007{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m89_c01007{transform:matrix(0.250897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250897,0.000000,0.000000,0.250000,0,0);}
.m38_c01007{transform:matrix(0.251112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251112,0.000000,0.000000,0.250000,0,0);}
.m42_c01007{transform:matrix(0.252010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252010,0.000000,0.000000,0.250000,0,0);}
.m76_c01007{transform:matrix(0.252662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252662,0.000000,0.000000,0.250000,0,0);}
.m8a_c01007{transform:matrix(0.253026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253026,0.000000,0.000000,0.250000,0,0);}
.ma0_c01007{transform:matrix(0.253335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253335,0.000000,0.000000,0.250000,0,0);}
.maf_c01007{transform:matrix(0.254778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254778,0.000000,0.000000,0.250000,0,0);}
.m20_c01007{transform:matrix(0.255459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255459,0.000000,0.000000,0.250000,0,0);}
.m8d_c01007{transform:matrix(0.255497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255497,0.000000,0.000000,0.250000,0,0);}
.m7c_c01007{transform:matrix(0.255994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255994,0.000000,0.000000,0.250000,0,0);}
.ma4_c01007{transform:matrix(0.256164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256164,0.000000,0.000000,0.250000,0,0);}
.m95_c01007{transform:matrix(0.256179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256179,0.000000,0.000000,0.250000,0,0);}
.m67_c01007{transform:matrix(0.256648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256648,0.000000,0.000000,0.250000,0,0);}
.m13_c01007{transform:matrix(0.257706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257706,0.000000,0.000000,0.250000,0,0);}
.m39_c01007{transform:matrix(0.257865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257865,0.000000,0.000000,0.250000,0,0);}
.m80_c01007{transform:matrix(0.258202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258202,0.000000,0.000000,0.250000,0,0);}
.m51_c01007{transform:matrix(0.258282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258282,0.000000,0.000000,0.250000,0,0);}
.m1f_c01007{transform:matrix(0.259976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259976,0.000000,0.000000,0.250000,0,0);}
.md_c01007{transform:matrix(0.260021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260021,0.000000,0.000000,0.250000,0,0);}
.m74_c01007{transform:matrix(0.260635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260635,0.000000,0.000000,0.250000,0,0);}
.m96_c01007{transform:matrix(0.260764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260764,0.000000,0.000000,0.250000,0,0);}
.m6d_c01007{transform:matrix(0.261072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261072,0.000000,0.000000,0.250000,0,0);}
.m3a_c01007{transform:matrix(0.261599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261599,0.000000,0.000000,0.250000,0,0);}
.m36_c01007{transform:matrix(0.262894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262894,0.000000,0.000000,0.250000,0,0);}
.ma1_c01007{transform:matrix(0.264346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264346,0.000000,0.000000,0.250000,0,0);}
.m10_c01007{transform:matrix(0.264583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264583,0.000000,0.000000,0.250000,0,0);}
.m81_c01007{transform:matrix(0.266629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266629,0.000000,0.000000,0.250000,0,0);}
.mad_c01007{transform:matrix(0.268789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268789,0.000000,0.000000,0.250000,0,0);}
.m26_c01007{transform:matrix(0.269413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269413,0.000000,0.000000,0.250000,0,0);}
.m21_c01007{transform:matrix(0.270187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270187,0.000000,0.000000,0.250000,0,0);}
.m43_c01007{transform:matrix(0.270610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270610,0.000000,0.000000,0.250000,0,0);}
.m2b_c01007{transform:matrix(0.273195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273195,0.000000,0.000000,0.250000,0,0);}
.m46_c01007{transform:matrix(0.274304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274304,0.000000,0.000000,0.250000,0,0);}
.m53_c01007{transform:matrix(0.274835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274835,0.000000,0.000000,0.250000,0,0);}
.m11_c01007{transform:matrix(0.275418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275418,0.000000,0.000000,0.250000,0,0);}
.m2c_c01007{transform:matrix(0.275654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275654,0.000000,0.000000,0.250000,0,0);}
.m63_c01007{transform:matrix(0.275714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275714,0.000000,0.000000,0.250000,0,0);}
.mac_c01007{transform:matrix(0.275867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275867,0.000000,0.000000,0.250000,0,0);}
.m7d_c01007{transform:matrix(0.275906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275906,0.000000,0.000000,0.250000,0,0);}
.m4d_c01007{transform:matrix(0.276798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276798,0.000000,0.000000,0.250000,0,0);}
.m31_c01007{transform:matrix(0.277164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277164,0.000000,0.000000,0.250000,0,0);}
.m19_c01007{transform:matrix(0.277188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277188,0.000000,0.000000,0.250000,0,0);}
.m69_c01007{transform:matrix(0.277310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277310,0.000000,0.000000,0.250000,0,0);}
.m35_c01007{transform:matrix(0.277539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277539,0.000000,0.000000,0.250000,0,0);}
.m9b_c01007{transform:matrix(0.277684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277684,0.000000,0.000000,0.250000,0,0);}
.m82_c01007{transform:matrix(0.278630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278630,0.000000,0.000000,0.250000,0,0);}
.m40_c01007{transform:matrix(0.279450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279450,0.000000,0.000000,0.250000,0,0);}
.m9f_c01007{transform:matrix(0.279847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279847,0.000000,0.000000,0.250000,0,0);}
.m92_c01007{transform:matrix(0.280093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280093,0.000000,0.000000,0.250000,0,0);}
.m32_c01007{transform:matrix(0.280537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280537,0.000000,0.000000,0.250000,0,0);}
.m4_c01007{transform:matrix(0.280663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280663,0.000000,0.000000,0.250000,0,0);}
.m68_c01007{transform:matrix(0.281135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281135,0.000000,0.000000,0.250000,0,0);}
.m34_c01007{transform:matrix(0.282018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282018,0.000000,0.000000,0.250000,0,0);}
.m7_c01007{transform:matrix(0.282068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282068,0.000000,0.000000,0.250000,0,0);}
.m4f_c01007{transform:matrix(0.282295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282295,0.000000,0.000000,0.250000,0,0);}
.m70_c01007{transform:matrix(0.283182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283182,0.000000,0.000000,0.250000,0,0);}
.m15_c01007{transform:matrix(0.283426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283426,0.000000,0.000000,0.250000,0,0);}
.m91_c01007{transform:matrix(0.283668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283668,0.000000,0.000000,0.250000,0,0);}
.m3f_c01007{transform:matrix(0.283732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283732,0.000000,0.000000,0.250000,0,0);}
.m77_c01007{transform:matrix(0.285501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285501,0.000000,0.000000,0.250000,0,0);}
.m23_c01007{transform:matrix(0.285860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285860,0.000000,0.000000,0.250000,0,0);}
.m9d_c01007{transform:matrix(0.286428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286428,0.000000,0.000000,0.250000,0,0);}
.m86_c01007{transform:matrix(0.286971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286971,0.000000,0.000000,0.250000,0,0);}
.m18_c01007{transform:matrix(0.287589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287589,0.000000,0.000000,0.250000,0,0);}
.m4c_c01007{transform:matrix(0.288163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288163,0.000000,0.000000,0.250000,0,0);}
.m4b_c01007{transform:matrix(0.288320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288320,0.000000,0.000000,0.250000,0,0);}
.m9a_c01007{transform:matrix(0.288413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288413,0.000000,0.000000,0.250000,0,0);}
.m88_c01007{transform:matrix(0.288610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288610,0.000000,0.000000,0.250000,0,0);}
.m29_c01007{transform:matrix(0.289683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289683,0.000000,0.000000,0.250000,0,0);}
.m44_c01007{transform:matrix(0.290030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290030,0.000000,0.000000,0.250000,0,0);}
.m57_c01007{transform:matrix(0.291432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291432,0.000000,0.000000,0.250000,0,0);}
.m61_c01007{transform:matrix(0.291960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291960,0.000000,0.000000,0.250000,0,0);}
.m5b_c01007{transform:matrix(0.291981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291981,0.000000,0.000000,0.250000,0,0);}
.ma_c01007{transform:matrix(0.292585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292585,0.000000,0.000000,0.250000,0,0);}
.ma5_c01007{transform:matrix(0.293401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293401,0.000000,0.000000,0.250000,0,0);}
.m4e_c01007{transform:matrix(0.294004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294004,0.000000,0.000000,0.250000,0,0);}
.m8b_c01007{transform:matrix(0.294476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294476,0.000000,0.000000,0.250000,0,0);}
.m99_c01007{transform:matrix(0.294564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294564,0.000000,0.000000,0.250000,0,0);}
.m64_c01007{transform:matrix(0.295325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295325,0.000000,0.000000,0.250000,0,0);}
.m12_c01007{transform:matrix(0.295937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295937,0.000000,0.000000,0.250000,0,0);}
.mb1_c01007{transform:matrix(0.296418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296418,0.000000,0.000000,0.250000,0,0);}
.m5d_c01007{transform:matrix(0.297090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297090,0.000000,0.000000,0.250000,0,0);}
.m78_c01007{transform:matrix(0.298052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298052,0.000000,0.000000,0.250000,0,0);}
.m56_c01007{transform:matrix(0.298118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298118,0.000000,0.000000,0.250000,0,0);}
.m65_c01007{transform:matrix(0.298417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298417,0.000000,0.000000,0.250000,0,0);}
.m33_c01007{transform:matrix(0.298671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298671,0.000000,0.000000,0.250000,0,0);}
.ma6_c01007{transform:matrix(0.298837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298837,0.000000,0.000000,0.250000,0,0);}
.m24_c01007{transform:matrix(0.299229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299229,0.000000,0.000000,0.250000,0,0);}
.m25_c01007{transform:matrix(0.299253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299253,0.000000,0.000000,0.250000,0,0);}
.maa_c01007{transform:matrix(0.301142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301142,0.000000,0.000000,0.250000,0,0);}
.m14_c01007{transform:matrix(0.301178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301178,0.000000,0.000000,0.250000,0,0);}
.m72_c01007{transform:matrix(0.301327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301327,0.000000,0.000000,0.250000,0,0);}
.m59_c01007{transform:matrix(0.301943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301943,0.000000,0.000000,0.250000,0,0);}
.m8c_c01007{transform:matrix(0.301996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301996,0.000000,0.000000,0.250000,0,0);}
.m83_c01007{transform:matrix(0.302011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302011,0.000000,0.000000,0.250000,0,0);}
.m3c_c01007{transform:matrix(0.302570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302570,0.000000,0.000000,0.250000,0,0);}
.m16_c01007{transform:matrix(0.303844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303844,0.000000,0.000000,0.250000,0,0);}
.mae_c01007{transform:matrix(0.303916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303916,0.000000,0.000000,0.250000,0,0);}
.m1d_c01007{transform:matrix(0.304402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304402,0.000000,0.000000,0.250000,0,0);}
.m9c_c01007{transform:matrix(0.304716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304716,0.000000,0.000000,0.250000,0,0);}
.m93_c01007{transform:matrix(0.304731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304731,0.000000,0.000000,0.250000,0,0);}
.m7f_c01007{transform:matrix(0.305101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305101,0.000000,0.000000,0.250000,0,0);}
.m5_c01007{transform:matrix(0.305268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305268,0.000000,0.000000,0.250000,0,0);}
.mb_c01007{transform:matrix(0.305714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305714,0.000000,0.000000,0.250000,0,0);}
.m94_c01007{transform:matrix(0.305983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305983,0.000000,0.000000,0.250000,0,0);}
.m6f_c01007{transform:matrix(0.307271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307271,0.000000,0.000000,0.250000,0,0);}
.m41_c01007{transform:matrix(0.307352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307352,0.000000,0.000000,0.250000,0,0);}
.m5e_c01007{transform:matrix(0.308155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308155,0.000000,0.000000,0.250000,0,0);}
.ma8_c01007{transform:matrix(0.309355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309355,0.000000,0.000000,0.250000,0,0);}
.m3e_c01007{transform:matrix(0.310077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310077,0.000000,0.000000,0.250000,0,0);}
.m60_c01007{transform:matrix(0.310643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310643,0.000000,0.000000,0.250000,0,0);}
.m28_c01007{transform:matrix(0.310805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310805,0.000000,0.000000,0.250000,0,0);}
.m58_c01007{transform:matrix(0.310890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310890,0.000000,0.000000,0.250000,0,0);}
.m54_c01007{transform:matrix(0.311410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311410,0.000000,0.000000,0.250000,0,0);}
.m2d_c01007{transform:matrix(0.312835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312835,0.000000,0.000000,0.250000,0,0);}
.m3_c01007{transform:matrix(0.313155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313155,0.000000,0.000000,0.250000,0,0);}
.m90_c01007{transform:matrix(0.313283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313283,0.000000,0.000000,0.250000,0,0);}
.m66_c01007{transform:matrix(0.313616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313616,0.000000,0.000000,0.250000,0,0);}
.m50_c01007{transform:matrix(0.313824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313824,0.000000,0.000000,0.250000,0,0);}
.m47_c01007{transform:matrix(0.316160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316160,0.000000,0.000000,0.250000,0,0);}
.m2a_c01007{transform:matrix(0.316548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316548,0.000000,0.000000,0.250000,0,0);}
.m71_c01007{transform:matrix(0.316554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316554,0.000000,0.000000,0.250000,0,0);}
.ma9_c01007{transform:matrix(0.317479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317479,0.000000,0.000000,0.250000,0,0);}
.m8_c01007{transform:matrix(0.317852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317852,0.000000,0.000000,0.250000,0,0);}
.m6_c01007{transform:matrix(0.318408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318408,0.000000,0.000000,0.250000,0,0);}
.m9e_c01007{transform:matrix(0.318426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318426,0.000000,0.000000,0.250000,0,0);}
.mb2_c01007{transform:matrix(0.319382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319382,0.000000,0.000000,0.250000,0,0);}
.ma2_c01007{transform:matrix(0.319383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319383,0.000000,0.000000,0.250000,0,0);}
.m73_c01007{transform:matrix(0.320725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320725,0.000000,0.000000,0.250000,0,0);}
.m87_c01007{transform:matrix(0.321248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321248,0.000000,0.000000,0.250000,0,0);}
.m37_c01007{transform:matrix(0.323467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323467,0.000000,0.000000,0.250000,0,0);}
.m3d_c01007{transform:matrix(0.324508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324508,0.000000,0.000000,0.250000,0,0);}
.m22_c01007{transform:matrix(0.325350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325350,0.000000,0.000000,0.250000,0,0);}
.m1a_c01007{transform:matrix(0.325467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325467,0.000000,0.000000,0.250000,0,0);}
.m62_c01007{transform:matrix(0.325826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325826,0.000000,0.000000,0.250000,0,0);}
.m6a_c01007{transform:matrix(0.327043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327043,0.000000,0.000000,0.250000,0,0);}
.mb3_c01007{transform:matrix(0.327640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327640,0.000000,0.000000,0.250000,0,0);}
.m6c_c01007{transform:matrix(0.327776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327776,0.000000,0.000000,0.250000,0,0);}
.m85_c01007{transform:matrix(0.328052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328052,0.000000,0.000000,0.250000,0,0);}
.m6e_c01007{transform:matrix(0.328123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328123,0.000000,0.000000,0.250000,0,0);}
.m5c_c01007{transform:matrix(0.328204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328204,0.000000,0.000000,0.250000,0,0);}
.m2f_c01007{transform:matrix(0.328661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328661,0.000000,0.000000,0.250000,0,0);}
.m8f_c01007{transform:matrix(0.329069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329069,0.000000,0.000000,0.250000,0,0);}
.mc_c01007{transform:matrix(0.331418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331418,0.000000,0.000000,0.250000,0,0);}
.m97_c01007{transform:matrix(0.332584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332584,0.000000,0.000000,0.250000,0,0);}
.mf_c01007{transform:matrix(0.333726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333726,0.000000,0.000000,0.250000,0,0);}
.m2_c01007{transform:matrix(0.334661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334661,0.000000,0.000000,0.250000,0,0);}
.m9_c01007{transform:matrix(0.335052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335052,0.000000,0.000000,0.250000,0,0);}
.m7b_c01007{transform:matrix(0.335187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335187,0.000000,0.000000,0.250000,0,0);}
.m45_c01007{transform:matrix(0.335920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335920,0.000000,0.000000,0.250000,0,0);}
.me_c01007{transform:matrix(0.338421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338421,0.000000,0.000000,0.250000,0,0);}
.ma3_c01007{transform:matrix(0.340116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340116,0.000000,0.000000,0.250000,0,0);}
.m17_c01007{transform:matrix(0.344947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344947,0.000000,0.000000,0.250000,0,0);}
.m1_c01007{transform:matrix(0.345897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345897,0.000000,0.000000,0.250000,0,0);}
.m1c_c01007{transform:matrix(0.347018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347018,0.000000,0.000000,0.250000,0,0);}
.m27_c01007{transform:matrix(0.350915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350915,0.000000,0.000000,0.250000,0,0);}
.ma7_c01007{transform:matrix(0.351198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351198,0.000000,0.000000,0.250000,0,0);}
.mb0_c01007{transform:matrix(0.356405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356405,0.000000,0.000000,0.250000,0,0);}
.m79_c01007{transform:matrix(0.357413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357413,0.000000,0.000000,0.250000,0,0);}
.m1e_c01007{transform:matrix(0.357702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357702,0.000000,0.000000,0.250000,0,0);}
.m2e_c01007{transform:matrix(0.370152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370152,0.000000,0.000000,0.250000,0,0);}
.m52_c01007{transform:matrix(0.374684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374684,0.000000,0.000000,0.250000,0,0);}
.m30_c01007{transform:matrix(0.377007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377007,0.000000,0.000000,0.250000,0,0);}
.m55_c01007{transform:matrix(0.380631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380631,0.000000,0.000000,0.250000,0,0);}
.m5a_c01007{transform:matrix(0.386579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386579,0.000000,0.000000,0.250000,0,0);}
.v1_c01007{vertical-align:-5.722200px;}
.v0_c01007{vertical-align:0.000000px;}
.lsc_c01007{letter-spacing:-2.778930px;}
.ls9_c01007{letter-spacing:-2.151686px;}
.lse_c01007{letter-spacing:-1.619719px;}
.ls1e_c01007{letter-spacing:-1.434517px;}
.ls16_c01007{letter-spacing:-0.984535px;}
.lsa_c01007{letter-spacing:-0.587545px;}
.ls5_c01007{letter-spacing:0.000000px;}
.ls1c_c01007{letter-spacing:0.903912px;}
.ls8_c01007{letter-spacing:1.278308px;}
.ls17_c01007{letter-spacing:1.881733px;}
.ls1b_c01007{letter-spacing:2.048468px;}
.ls19_c01007{letter-spacing:2.207264px;}
.ls10_c01007{letter-spacing:2.246963px;}
.ls3_c01007{letter-spacing:3.060288px;}
.ls14_c01007{letter-spacing:3.078900px;}
.ls2_c01007{letter-spacing:3.302957px;}
.ls7_c01007{letter-spacing:3.405610px;}
.lsb_c01007{letter-spacing:3.425400px;}
.ls1d_c01007{letter-spacing:3.623400px;}
.lsf_c01007{letter-spacing:3.702610px;}
.lsd_c01007{letter-spacing:3.722400px;}
.ls15_c01007{letter-spacing:3.752110px;}
.ls4_c01007{letter-spacing:3.969900px;}
.ls1a_c01007{letter-spacing:4.435200px;}
.ls1_c01007{letter-spacing:4.526533px;}
.ls0_c01007{letter-spacing:9.675684px;}
.ls6_c01007{letter-spacing:49.896198px;}
.ls12_c01007{letter-spacing:57.024198px;}
.ls13_c01007{letter-spacing:59.875398px;}
.ls11_c01007{letter-spacing:61.300998px;}
.ls18_c01007{letter-spacing:62.726400px;}
.sc__c01007{text-shadow:none;}
.sc0_c01007{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01007{-webkit-text-stroke:0px transparent;}
.sc0_c01007{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01007{word-spacing:-26.581550px;}
.ws0_c01007{word-spacing:-19.849500px;}
.ws2_c01007{word-spacing:0.000000px;}
._5_c01007{margin-left:-28.283827px;}
._6_c01007{margin-left:-13.397101px;}
._4_c01007{margin-left:-10.123740px;}
._3_c01007{margin-left:-1.350360px;}
._b_c01007{width:1.009701px;}
._2_c01007{width:5.557068px;}
._0_c01007{width:6.651216px;}
._8_c01007{width:10.957320px;}
._d_c01007{width:25.137407px;}
._a_c01007{width:27.611892px;}
._9_c01007{width:29.059668px;}
._c_c01007{width:46.222952px;}
._1_c01007{width:96.327000px;}
._7_c01007{width:2068.169400px;}
.fc0_c01007{color:transparent;}
.fse_c01007{font-size:22.176000px;}
.fs7_c01007{font-size:34.848000px;}
.fsc_c01007{font-size:39.600000px;}
.fs1a_c01007{font-size:40.986198px;}
.fs14_c01007{font-size:42.966198px;}
.fs1b_c01007{font-size:44.748000px;}
.fs2_c01007{font-size:49.896198px;}
.fsf_c01007{font-size:57.024198px;}
.fs10_c01007{font-size:59.875398px;}
.fs9_c01007{font-size:61.300998px;}
.fs11_c01007{font-size:61.578000px;}
.fs19_c01007{font-size:61.776198px;}
.fs15_c01007{font-size:62.726400px;}
.fs5_c01007{font-size:66.330000px;}
.fs3_c01007{font-size:68.112198px;}
.fs4_c01007{font-size:68.508000px;}
.fsb_c01007{font-size:70.092198px;}
.fs18_c01007{font-size:72.468000px;}
.fs8_c01007{font-size:74.052198px;}
.fs6_c01007{font-size:74.448000px;}
.fs13_c01007{font-size:75.042198px;}
.fs12_c01007{font-size:77.616198px;}
.fs17_c01007{font-size:78.012198px;}
.fsd_c01007{font-size:79.200000px;}
.fs1_c01007{font-size:79.398000px;}
.fs16_c01007{font-size:79.992198px;}
.fs0_c01007{font-size:88.704000px;}
.fsa_c01007{font-size:106.326198px;}
.y0_c01007{bottom:0.000000px;}
.y20_c01007{bottom:13.450185px;}
.y1f_c01007{bottom:25.924185px;}
.y1e_c01007{bottom:34.121385px;}
.y1_c01007{bottom:76.500000px;}
.y1d_c01007{bottom:151.025535px;}
.y1c_c01007{bottom:158.153535px;}
.y1b_c01007{bottom:189.873135px;}
.y1a_c01007{bottom:222.305535px;}
.y19_c01007{bottom:253.668735px;}
.y18_c01007{bottom:285.744735px;}
.y17_c01007{bottom:316.751535px;}
.y16_c01007{bottom:348.827535px;}
.y15_c01007{bottom:380.190735px;}
.y14_c01007{bottom:412.261785px;}
.y13_c01007{bottom:443.981385px;}
.y12_c01007{bottom:476.418735px;}
.y11_c01007{bottom:508.489785px;}
.yf_c01007{bottom:572.285385px;}
.y10_c01007{bottom:576.923535px;}
.ye_c01007{bottom:599.376735px;}
.yd_c01007{bottom:603.653535px;}
.yc_c01007{bottom:635.724585px;}
.yb_c01007{bottom:667.444185px;}
.ya_c01007{bottom:698.812335px;}
.y9_c01007{bottom:729.814185px;}
.y7_c01007{bottom:761.182335px;}
.y8_c01007{bottom:761.538735px;}
.y6_c01007{bottom:793.609785px;}
.y5_c01007{bottom:856.341135px;}
.y4_c01007{bottom:888.773535px;}
.y3_c01007{bottom:920.493135px;}
.y2_c01007{bottom:1055.920185px;}
.he_c01007{height:23.128875px;}
.h4_c01007{height:33.230868px;}
.hf_c01007{height:37.978116px;}
.h10_c01007{height:39.877015px;}
.h18_c01007{height:40.225712px;}
.ha_c01007{height:40.826465px;}
.h13_c01007{height:41.775782px;}
.h19_c01007{height:43.917715px;}
.h11_c01007{height:60.435439px;}
.h17_c01007{height:60.629960px;}
.h6_c01007{height:67.236855px;}
.h7_c01007{height:69.180117px;}
.h5_c01007{height:71.038894px;}
.h16_c01007{height:71.123379px;}
.h9_c01007{height:72.678183px;}
.h8_c01007{height:73.066641px;}
.hc_c01007{height:73.103972px;}
.h12_c01007{height:73.649813px;}
.h15_c01007{height:76.564706px;}
.h3_c01007{height:77.924795px;}
.h14_c01007{height:78.507968px;}
.hd_c01007{height:82.603125px;}
.h2_c01007{height:87.058125px;}
.hb_c01007{height:104.301432px;}
.h1_c01007{height:1110.000000px;}
.h0_c01007{height:1263.000000px;}
.w1_c01007{width:775.500000px;}
.w0_c01007{width:892.500000px;}
.x0_c01007{left:0.000000px;}
.x1_c01007{left:58.500000px;}
.xf_c01007{left:77.964135px;}
.x3_c01007{left:79.162035px;}
.x52_c01007{left:99.006585px;}
.x18_c01007{left:110.584635px;}
.x21_c01007{left:111.965685px;}
.x34_c01007{left:121.439985px;}
.x4_c01007{left:133.047735px;}
.x5b_c01007{left:135.334635px;}
.x49_c01007{left:142.898235px;}
.x19_c01007{left:144.789135px;}
.x3c_c01007{left:166.806735px;}
.x5_c01007{left:177.256185px;}
.x1a_c01007{left:178.285785px;}
.x45_c01007{left:179.369835px;}
.x10_c01007{left:188.675835px;}
.x69_c01007{left:199.179735px;}
.x4d_c01007{left:201.689385px;}
.x46_c01007{left:210.351885px;}
.x22_c01007{left:211.802235px;}
.x5f_c01007{left:212.846685px;}
.x11_c01007{left:221.429985px;}
.x53_c01007{left:223.810935px;}
.x1b_c01007{left:233.077335px;}
.x6_c01007{left:234.938535px;}
.x30_c01007{left:244.412835px;}
.x5c_c01007{left:255.322635px;}
.x3d_c01007{left:265.103835px;}
.x12_c01007{left:266.663085px;}
.x4a_c01007{left:276.498735px;}
.x35_c01007{left:279.844935px;}
.x56_c01007{left:287.953035px;}
.x29_c01007{left:289.190535px;}
.x7_c01007{left:298.867785px;}
.x31_c01007{left:300.917085px;}
.x1c_c01007{left:311.178435px;}
.x23_c01007{left:313.589085px;}
.x54_c01007{left:321.068535px;}
.x4e_c01007{left:322.979235px;}
.x57_c01007{left:332.473335px;}
.x2a_c01007{left:333.730635px;}
.x1d_c01007{left:343.516785px;}
.x24_c01007{left:356.124435px;}
.x66_c01007{left:357.540135px;}
.x8_c01007{left:359.886435px;}
.x9_c01007{left:366.212535px;}
.x36_c01007{left:367.311435px;}
.x60_c01007{left:376.657035px;}
.x2b_c01007{left:378.211335px;}
.x13_c01007{left:388.254885px;}
.x64_c01007{left:389.626035px;}
.x6a_c01007{left:399.471585px;}
.x58_c01007{left:413.143485px;}
.x14_c01007{left:421.914885px;}
.x2c_c01007{left:423.122685px;}
.xa_c01007{left:432.166335px;}
.x47_c01007{left:433.522635px;}
.x25_c01007{left:444.442335px;}
.x4f_c01007{left:445.635285px;}
.x2d_c01007{left:455.164035px;}
.x55_c01007{left:456.683685px;}
.x3e_c01007{left:466.301535px;}
.x4b_c01007{left:467.593485px;}
.x42_c01007{left:476.488635px;}
.x61_c01007{left:477.716235px;}
.x59_c01007{left:478.844835px;}
.x37_c01007{left:489.472485px;}
.x26_c01007{left:498.184485px;}
.x67_c01007{left:499.813035px;}
.x38_c01007{left:509.277435px;}
.xb_c01007{left:510.787185px;}
.x3f_c01007{left:521.112885px;}
.x2e_c01007{left:522.196935px;}
.x32_c01007{left:532.596885px;}
.x27_c01007{left:543.650235px;}
.xc_c01007{left:554.965935px;}
.x62_c01007{left:556.916235px;}
.x39_c01007{left:566.390535px;}
.x50_c01007{left:577.141935px;}
.x5d_c01007{left:586.576635px;}
.xd_c01007{left:587.715135px;}
.x3a_c01007{left:597.620085px;}
.x1e_c01007{left:599.189235px;}
.x15_c01007{left:609.584235px;}
.x4c_c01007{left:619.761435px;}
.x2f_c01007{left:620.989035px;}
.x1f_c01007{left:632.032485px;}
.x51_c01007{left:633.071985px;}
.x33_c01007{left:641.462235px;}
.x48_c01007{left:642.689835px;}
.x68_c01007{left:643.734285px;}
.x5e_c01007{left:652.867035px;}
.x16_c01007{left:654.431235px;}
.x6c_c01007{left:659.500035px;}
.x65_c01007{left:665.440035px;}
.x2_c01007{left:675.810285px;}
.x5a_c01007{left:677.508135px;}
.x40_c01007{left:686.061735px;}
.x43_c01007{left:688.066485px;}
.x41_c01007{left:697.040835px;}
.xe_c01007{left:698.293185px;}
.x3b_c01007{left:699.372285px;}
.x6b_c01007{left:704.693535px;}
.x17_c01007{left:708.475335px;}
.x28_c01007{left:720.751335px;}
.x20_c01007{left:732.190785px;}
.x63_c01007{left:733.542135px;}
.x44_c01007{left:743.229285px;}
@media print{
.v1_c01007{vertical-align:-5.086400pt;}
.v0_c01007{vertical-align:0.000000pt;}
.lsc_c01007{letter-spacing:-2.470160pt;}
.ls9_c01007{letter-spacing:-1.912610pt;}
.lse_c01007{letter-spacing:-1.439750pt;}
.ls1e_c01007{letter-spacing:-1.275126pt;}
.ls16_c01007{letter-spacing:-0.875142pt;}
.lsa_c01007{letter-spacing:-0.522262pt;}
.ls5_c01007{letter-spacing:0.000000pt;}
.ls1c_c01007{letter-spacing:0.803477pt;}
.ls8_c01007{letter-spacing:1.136274pt;}
.ls17_c01007{letter-spacing:1.672651pt;}
.ls1b_c01007{letter-spacing:1.820861pt;}
.ls19_c01007{letter-spacing:1.962013pt;}
.ls10_c01007{letter-spacing:1.997301pt;}
.ls3_c01007{letter-spacing:2.720256pt;}
.ls14_c01007{letter-spacing:2.736800pt;}
.ls2_c01007{letter-spacing:2.935962pt;}
.ls7_c01007{letter-spacing:3.027209pt;}
.lsb_c01007{letter-spacing:3.044800pt;}
.ls1d_c01007{letter-spacing:3.220800pt;}
.lsf_c01007{letter-spacing:3.291209pt;}
.lsd_c01007{letter-spacing:3.308800pt;}
.ls15_c01007{letter-spacing:3.335209pt;}
.ls4_c01007{letter-spacing:3.528800pt;}
.ls1a_c01007{letter-spacing:3.942400pt;}
.ls1_c01007{letter-spacing:4.023585pt;}
.ls0_c01007{letter-spacing:8.600608pt;}
.ls6_c01007{letter-spacing:44.352176pt;}
.ls12_c01007{letter-spacing:50.688176pt;}
.ls13_c01007{letter-spacing:53.222576pt;}
.ls11_c01007{letter-spacing:54.489776pt;}
.ls18_c01007{letter-spacing:55.756800pt;}
.ws1_c01007{word-spacing:-23.628044pt;}
.ws0_c01007{word-spacing:-17.644000pt;}
.ws2_c01007{word-spacing:0.000000pt;}
._5_c01007{margin-left:-25.141180pt;}
._6_c01007{margin-left:-11.908534pt;}
._4_c01007{margin-left:-8.998880pt;}
._3_c01007{margin-left:-1.200320pt;}
._b_c01007{width:0.897512pt;}
._2_c01007{width:4.939616pt;}
._0_c01007{width:5.912192pt;}
._8_c01007{width:9.739840pt;}
._d_c01007{width:22.344362pt;}
._a_c01007{width:24.543904pt;}
._9_c01007{width:25.830816pt;}
._c_c01007{width:41.087068pt;}
._1_c01007{width:85.624000pt;}
._7_c01007{width:1838.372800pt;}
.fse_c01007{font-size:19.712000pt;}
.fs7_c01007{font-size:30.976000pt;}
.fsc_c01007{font-size:35.200000pt;}
.fs1a_c01007{font-size:36.432176pt;}
.fs14_c01007{font-size:38.192176pt;}
.fs1b_c01007{font-size:39.776000pt;}
.fs2_c01007{font-size:44.352176pt;}
.fsf_c01007{font-size:50.688176pt;}
.fs10_c01007{font-size:53.222576pt;}
.fs9_c01007{font-size:54.489776pt;}
.fs11_c01007{font-size:54.736000pt;}
.fs19_c01007{font-size:54.912176pt;}
.fs15_c01007{font-size:55.756800pt;}
.fs5_c01007{font-size:58.960000pt;}
.fs3_c01007{font-size:60.544176pt;}
.fs4_c01007{font-size:60.896000pt;}
.fsb_c01007{font-size:62.304176pt;}
.fs18_c01007{font-size:64.416000pt;}
.fs8_c01007{font-size:65.824176pt;}
.fs6_c01007{font-size:66.176000pt;}
.fs13_c01007{font-size:66.704176pt;}
.fs12_c01007{font-size:68.992176pt;}
.fs17_c01007{font-size:69.344176pt;}
.fsd_c01007{font-size:70.400000pt;}
.fs1_c01007{font-size:70.576000pt;}
.fs16_c01007{font-size:71.104176pt;}
.fs0_c01007{font-size:78.848000pt;}
.fsa_c01007{font-size:94.512176pt;}
.y0_c01007{bottom:0.000000pt;}
.y20_c01007{bottom:11.955720pt;}
.y1f_c01007{bottom:23.043720pt;}
.y1e_c01007{bottom:30.330120pt;}
.y1_c01007{bottom:68.000000pt;}
.y1d_c01007{bottom:134.244920pt;}
.y1c_c01007{bottom:140.580920pt;}
.y1b_c01007{bottom:168.776120pt;}
.y1a_c01007{bottom:197.604920pt;}
.y19_c01007{bottom:225.483320pt;}
.y18_c01007{bottom:253.995320pt;}
.y17_c01007{bottom:281.556920pt;}
.y16_c01007{bottom:310.068920pt;}
.y15_c01007{bottom:337.947320pt;}
.y14_c01007{bottom:366.454920pt;}
.y13_c01007{bottom:394.650120pt;}
.y12_c01007{bottom:423.483320pt;}
.y11_c01007{bottom:451.990920pt;}
.yf_c01007{bottom:508.698120pt;}
.y10_c01007{bottom:512.820920pt;}
.ye_c01007{bottom:532.779320pt;}
.yd_c01007{bottom:536.580920pt;}
.yc_c01007{bottom:565.088520pt;}
.yb_c01007{bottom:593.283720pt;}
.ya_c01007{bottom:621.166520pt;}
.y9_c01007{bottom:648.723720pt;}
.y7_c01007{bottom:676.606520pt;}
.y8_c01007{bottom:676.923320pt;}
.y6_c01007{bottom:705.430920pt;}
.y5_c01007{bottom:761.192120pt;}
.y4_c01007{bottom:790.020920pt;}
.y3_c01007{bottom:818.216120pt;}
.y2_c01007{bottom:938.595720pt;}
.he_c01007{height:20.559000pt;}
.h4_c01007{height:29.538549pt;}
.hf_c01007{height:33.758325pt;}
.h10_c01007{height:35.446236pt;}
.h18_c01007{height:35.756188pt;}
.ha_c01007{height:36.290191pt;}
.h13_c01007{height:37.134029pt;}
.h19_c01007{height:39.037969pt;}
.h11_c01007{height:53.720391pt;}
.h17_c01007{height:53.893298pt;}
.h6_c01007{height:59.766094pt;}
.h7_c01007{height:61.493438pt;}
.h5_c01007{height:63.145684pt;}
.h16_c01007{height:63.220781pt;}
.h9_c01007{height:64.602829pt;}
.h8_c01007{height:64.948125pt;}
.hc_c01007{height:64.981309pt;}
.h12_c01007{height:65.466501pt;}
.h15_c01007{height:68.057516pt;}
.h3_c01007{height:69.266484pt;}
.h14_c01007{height:69.784860pt;}
.hd_c01007{height:73.425000pt;}
.h2_c01007{height:77.385000pt;}
.hb_c01007{height:92.712384pt;}
.h1_c01007{height:986.666667pt;}
.h0_c01007{height:1122.666667pt;}
.w1_c01007{width:689.333333pt;}
.w0_c01007{width:793.333333pt;}
.x0_c01007{left:0.000000pt;}
.x1_c01007{left:52.000000pt;}
.xf_c01007{left:69.301453pt;}
.x3_c01007{left:70.366253pt;}
.x52_c01007{left:88.005853pt;}
.x18_c01007{left:98.297453pt;}
.x21_c01007{left:99.525053pt;}
.x34_c01007{left:107.946653pt;}
.x4_c01007{left:118.264653pt;}
.x5b_c01007{left:120.297453pt;}
.x49_c01007{left:127.020653pt;}
.x19_c01007{left:128.701453pt;}
.x3c_c01007{left:148.272653pt;}
.x5_c01007{left:157.561053pt;}
.x1a_c01007{left:158.476253pt;}
.x45_c01007{left:159.439853pt;}
.x10_c01007{left:167.711853pt;}
.x69_c01007{left:177.048653pt;}
.x4d_c01007{left:179.279453pt;}
.x46_c01007{left:186.979453pt;}
.x22_c01007{left:188.268653pt;}
.x5f_c01007{left:189.197053pt;}
.x11_c01007{left:196.826653pt;}
.x53_c01007{left:198.943053pt;}
.x1b_c01007{left:207.179853pt;}
.x6_c01007{left:208.834253pt;}
.x30_c01007{left:217.255853pt;}
.x5c_c01007{left:226.953453pt;}
.x3d_c01007{left:235.647853pt;}
.x12_c01007{left:237.033853pt;}
.x4a_c01007{left:245.776653pt;}
.x35_c01007{left:248.751053pt;}
.x56_c01007{left:255.958253pt;}
.x29_c01007{left:257.058253pt;}
.x7_c01007{left:265.660253pt;}
.x31_c01007{left:267.481853pt;}
.x1c_c01007{left:276.603053pt;}
.x23_c01007{left:278.745853pt;}
.x54_c01007{left:285.394253pt;}
.x4e_c01007{left:287.092653pt;}
.x57_c01007{left:295.531853pt;}
.x2a_c01007{left:296.649453pt;}
.x1d_c01007{left:305.348253pt;}
.x24_c01007{left:316.555053pt;}
.x66_c01007{left:317.813453pt;}
.x8_c01007{left:319.899053pt;}
.x9_c01007{left:325.522253pt;}
.x36_c01007{left:326.499053pt;}
.x60_c01007{left:334.806253pt;}
.x2b_c01007{left:336.187853pt;}
.x13_c01007{left:345.115453pt;}
.x64_c01007{left:346.334253pt;}
.x6a_c01007{left:355.085853pt;}
.x58_c01007{left:367.238653pt;}
.x14_c01007{left:375.035453pt;}
.x2c_c01007{left:376.109053pt;}
.xa_c01007{left:384.147853pt;}
.x47_c01007{left:385.353453pt;}
.x25_c01007{left:395.059853pt;}
.x4f_c01007{left:396.120253pt;}
.x2d_c01007{left:404.590253pt;}
.x55_c01007{left:405.941053pt;}
.x3e_c01007{left:414.490253pt;}
.x4b_c01007{left:415.638653pt;}
.x42_c01007{left:423.545453pt;}
.x61_c01007{left:424.636653pt;}
.x59_c01007{left:425.639853pt;}
.x37_c01007{left:435.086653pt;}
.x26_c01007{left:442.830653pt;}
.x67_c01007{left:444.278253pt;}
.x38_c01007{left:452.691053pt;}
.xb_c01007{left:454.033053pt;}
.x3f_c01007{left:463.211453pt;}
.x2e_c01007{left:464.175053pt;}
.x32_c01007{left:473.419453pt;}
.x27_c01007{left:483.244653pt;}
.xc_c01007{left:493.303053pt;}
.x62_c01007{left:495.036653pt;}
.x39_c01007{left:503.458253pt;}
.x50_c01007{left:513.015053pt;}
.x5d_c01007{left:521.401453pt;}
.xd_c01007{left:522.413453pt;}
.x3a_c01007{left:531.217853pt;}
.x1e_c01007{left:532.612653pt;}
.x15_c01007{left:541.852653pt;}
.x4c_c01007{left:550.899053pt;}
.x2f_c01007{left:551.990253pt;}
.x1f_c01007{left:561.806653pt;}
.x51_c01007{left:562.730653pt;}
.x33_c01007{left:570.188653pt;}
.x48_c01007{left:571.279853pt;}
.x68_c01007{left:572.208253pt;}
.x5e_c01007{left:580.326253pt;}
.x16_c01007{left:581.716653pt;}
.x6c_c01007{left:586.222253pt;}
.x65_c01007{left:591.502253pt;}
.x2_c01007{left:600.720253pt;}
.x5a_c01007{left:602.229453pt;}
.x40_c01007{left:609.832653pt;}
.x43_c01007{left:611.614653pt;}
.x41_c01007{left:619.591853pt;}
.xe_c01007{left:620.705053pt;}
.x3b_c01007{left:621.664253pt;}
.x6b_c01007{left:626.394253pt;}
.x17_c01007{left:629.755853pt;}
.x28_c01007{left:640.667853pt;}
.x20_c01007{left:650.836253pt;}
.x63_c01007{left:652.037453pt;}
.x44_c01007{left:660.648253pt;}
}





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

.ir_c01008:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01008{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01008;src:url('chunks/assets/font_03acc45a51f0fd164e965966.woff2')format("woff");}.ff1_c01008{font-family:ff1_c01008;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01008;src:url('chunks/assets/font_fab9865496a3b98ed8dd540f.woff2')format("woff");}.ff2_c01008{font-family:ff2_c01008;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01008;src:url('chunks/assets/font_89af183d37838fcb447f53bd.woff2')format("woff");}.ff3_c01008{font-family:ff3_c01008;line-height:0.666000;font-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_c01008{transform:matrix(0.031251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.031251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.031251,0.000000,0.000000,0.250000,0,0);}
.m76_c01008{transform:matrix(0.139895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139895,0.000000,0.000000,0.250000,0,0);}
.m5e_c01008{transform:matrix(0.150656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150656,0.000000,0.000000,0.250000,0,0);}
.m89_c01008{transform:matrix(0.157013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157013,0.000000,0.000000,0.250000,0,0);}
.m88_c01008{transform:matrix(0.176181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176181,0.000000,0.000000,0.250000,0,0);}
.ma9_c01008{transform:matrix(0.177084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177084,0.000000,0.000000,0.250000,0,0);}
.mcd_c01008{transform:matrix(0.186806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186806,0.000000,0.000000,0.250000,0,0);}
.m85_c01008{transform:matrix(0.190921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190921,0.000000,0.000000,0.250000,0,0);}
.m10_c01008{transform:matrix(0.192307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192307,0.000000,0.000000,0.250000,0,0);}
.m9e_c01008{transform:matrix(0.199807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199807,0.000000,0.000000,0.250000,0,0);}
.m60_c01008{transform:matrix(0.222093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222093,0.000000,0.000000,0.250000,0,0);}
.m40_c01008{transform:matrix(0.223845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223845,0.000000,0.000000,0.250000,0,0);}
.m0_c01008{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01008{transform:matrix(0.250758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250758,0.000000,0.000000,0.250000,0,0);}
.m8d_c01008{transform:matrix(0.252709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252709,0.000000,0.000000,0.250000,0,0);}
.m39_c01008{transform:matrix(0.255434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255434,0.000000,0.000000,0.250000,0,0);}
.mb2_c01008{transform:matrix(0.256811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256811,0.000000,0.000000,0.250000,0,0);}
.m7c_c01008{transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);}
.m8b_c01008{transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);}
.m27_c01008{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m50_c01008{transform:matrix(0.258853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258853,0.000000,0.000000,0.250000,0,0);}
.m35_c01008{transform:matrix(0.260405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260405,0.000000,0.000000,0.250000,0,0);}
.mf_c01008{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.mb5_c01008{transform:matrix(0.261104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261104,0.000000,0.000000,0.250000,0,0);}
.m4d_c01008{transform:matrix(0.261429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261429,0.000000,0.000000,0.250000,0,0);}
.m3_c01008{transform:matrix(0.262391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262391,0.000000,0.000000,0.250000,0,0);}
.m5f_c01008{transform:matrix(0.262528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262528,0.000000,0.000000,0.250000,0,0);}
.m33_c01008{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.mc0_c01008{transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);}
.m1a_c01008{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m1e_c01008{transform:matrix(0.264902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264902,0.000000,0.000000,0.250000,0,0);}
.m6c_c01008{transform:matrix(0.264987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264987,0.000000,0.000000,0.250000,0,0);}
.m1_c01008{transform:matrix(0.265392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265392,0.000000,0.000000,0.250000,0,0);}
.m55_c01008{transform:matrix(0.265497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265497,0.000000,0.000000,0.250000,0,0);}
.mbc_c01008{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m97_c01008{transform:matrix(0.266295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266295,0.000000,0.000000,0.250000,0,0);}
.m9b_c01008{transform:matrix(0.266706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266706,0.000000,0.000000,0.250000,0,0);}
.m57_c01008{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.m58_c01008{transform:matrix(0.267061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267061,0.000000,0.000000,0.250000,0,0);}
.m4b_c01008{transform:matrix(0.267324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267324,0.000000,0.000000,0.250000,0,0);}
.m2b_c01008{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.mc6_c01008{transform:matrix(0.268433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268433,0.000000,0.000000,0.250000,0,0);}
.m2f_c01008{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.m16_c01008{transform:matrix(0.269459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269459,0.000000,0.000000,0.250000,0,0);}
.m2e_c01008{transform:matrix(0.270229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270229,0.000000,0.000000,0.250000,0,0);}
.m70_c01008{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m56_c01008{transform:matrix(0.271989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271989,0.000000,0.000000,0.250000,0,0);}
.m52_c01008{transform:matrix(0.272025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272025,0.000000,0.000000,0.250000,0,0);}
.m15_c01008{transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);}
.mae_c01008{transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);}
.mb7_c01008{transform:matrix(0.275542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275542,0.000000,0.000000,0.250000,0,0);}
.ma1_c01008{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m8a_c01008{transform:matrix(0.275730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275730,0.000000,0.000000,0.250000,0,0);}
.m32_c01008{transform:matrix(0.276265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276265,0.000000,0.000000,0.250000,0,0);}
.m44_c01008{transform:matrix(0.276488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276488,0.000000,0.000000,0.250000,0,0);}
.m82_c01008{transform:matrix(0.277168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277168,0.000000,0.000000,0.250000,0,0);}
.ma8_c01008{transform:matrix(0.278568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278568,0.000000,0.000000,0.250000,0,0);}
.m21_c01008{transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);}
.m3d_c01008{transform:matrix(0.278896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278896,0.000000,0.000000,0.250000,0,0);}
.m2c_c01008{transform:matrix(0.279768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279768,0.000000,0.000000,0.250000,0,0);}
.m74_c01008{transform:matrix(0.279941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279941,0.000000,0.000000,0.250000,0,0);}
.mc8_c01008{transform:matrix(0.280114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280114,0.000000,0.000000,0.250000,0,0);}
.mcf_c01008{transform:matrix(0.280407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280407,0.000000,0.000000,0.250000,0,0);}
.mb9_c01008{transform:matrix(0.280572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280572,0.000000,0.000000,0.250000,0,0);}
.m46_c01008{transform:matrix(0.280910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280910,0.000000,0.000000,0.250000,0,0);}
.m61_c01008{transform:matrix(0.281190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281190,0.000000,0.000000,0.250000,0,0);}
.m37_c01008{transform:matrix(0.283282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283282,0.000000,0.000000,0.250000,0,0);}
.m41_c01008{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m7_c01008{transform:matrix(0.283727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283727,0.000000,0.000000,0.250000,0,0);}
.m98_c01008{transform:matrix(0.284092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284092,0.000000,0.000000,0.250000,0,0);}
.m59_c01008{transform:matrix(0.284380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284380,0.000000,0.000000,0.250000,0,0);}
.ma7_c01008{transform:matrix(0.284412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284412,0.000000,0.000000,0.250000,0,0);}
.m3c_c01008{transform:matrix(0.285019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285019,0.000000,0.000000,0.250000,0,0);}
.m29_c01008{transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);}
.m91_c01008{transform:matrix(0.285870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285870,0.000000,0.000000,0.250000,0,0);}
.mba_c01008{transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);}
.m75_c01008{transform:matrix(0.286405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286405,0.000000,0.000000,0.250000,0,0);}
.m73_c01008{transform:matrix(0.286496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286496,0.000000,0.000000,0.250000,0,0);}
.m86_c01008{transform:matrix(0.286738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286738,0.000000,0.000000,0.250000,0,0);}
.ma6_c01008{transform:matrix(0.287190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287190,0.000000,0.000000,0.250000,0,0);}
.m8e_c01008{transform:matrix(0.287282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287282,0.000000,0.000000,0.250000,0,0);}
.ma3_c01008{transform:matrix(0.287549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287549,0.000000,0.000000,0.250000,0,0);}
.m17_c01008{transform:matrix(0.287905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287905,0.000000,0.000000,0.250000,0,0);}
.m8c_c01008{transform:matrix(0.288081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288081,0.000000,0.000000,0.250000,0,0);}
.mc_c01008{transform:matrix(0.288138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288138,0.000000,0.000000,0.250000,0,0);}
.mc9_c01008{transform:matrix(0.288306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288306,0.000000,0.000000,0.250000,0,0);}
.m5d_c01008{transform:matrix(0.288396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288396,0.000000,0.000000,0.250000,0,0);}
.m99_c01008{transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);}
.m2_c01008{transform:matrix(0.288772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288772,0.000000,0.000000,0.250000,0,0);}
.maa_c01008{transform:matrix(0.288884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288884,0.000000,0.000000,0.250000,0,0);}
.m94_c01008{transform:matrix(0.289287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289287,0.000000,0.000000,0.250000,0,0);}
.m1b_c01008{transform:matrix(0.289360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289360,0.000000,0.000000,0.250000,0,0);}
.m26_c01008{transform:matrix(0.289811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289811,0.000000,0.000000,0.250000,0,0);}
.m54_c01008{transform:matrix(0.289940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289940,0.000000,0.000000,0.250000,0,0);}
.m23_c01008{transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);}
.m93_c01008{transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);}
.m64_c01008{transform:matrix(0.290787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290787,0.000000,0.000000,0.250000,0,0);}
.m77_c01008{transform:matrix(0.291097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291097,0.000000,0.000000,0.250000,0,0);}
.m63_c01008{transform:matrix(0.291753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291753,0.000000,0.000000,0.250000,0,0);}
.m51_c01008{transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);}
.m12_c01008{transform:matrix(0.291949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291949,0.000000,0.000000,0.250000,0,0);}
.m6d_c01008{transform:matrix(0.292102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292102,0.000000,0.000000,0.250000,0,0);}
.m30_c01008{transform:matrix(0.292329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292329,0.000000,0.000000,0.250000,0,0);}
.m4_c01008{transform:matrix(0.292581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292581,0.000000,0.000000,0.250000,0,0);}
.mc2_c01008{transform:matrix(0.292793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292793,0.000000,0.000000,0.250000,0,0);}
.ma4_c01008{transform:matrix(0.293095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293095,0.000000,0.000000,0.250000,0,0);}
.m47_c01008{transform:matrix(0.293301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293301,0.000000,0.000000,0.250000,0,0);}
.mb_c01008{transform:matrix(0.293716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293716,0.000000,0.000000,0.250000,0,0);}
.m81_c01008{transform:matrix(0.293724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293724,0.000000,0.000000,0.250000,0,0);}
.mb1_c01008{transform:matrix(0.294116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294116,0.000000,0.000000,0.250000,0,0);}
.m9a_c01008{transform:matrix(0.294179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294179,0.000000,0.000000,0.250000,0,0);}
.mb3_c01008{transform:matrix(0.294386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294386,0.000000,0.000000,0.250000,0,0);}
.m4e_c01008{transform:matrix(0.294443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294443,0.000000,0.000000,0.250000,0,0);}
.m9d_c01008{transform:matrix(0.294520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294520,0.000000,0.000000,0.250000,0,0);}
.m31_c01008{transform:matrix(0.294965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294965,0.000000,0.000000,0.250000,0,0);}
.m2d_c01008{transform:matrix(0.294977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294977,0.000000,0.000000,0.250000,0,0);}
.m28_c01008{transform:matrix(0.295867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295867,0.000000,0.000000,0.250000,0,0);}
.m90_c01008{transform:matrix(0.296089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296089,0.000000,0.000000,0.250000,0,0);}
.ma2_c01008{transform:matrix(0.296376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296376,0.000000,0.000000,0.250000,0,0);}
.m45_c01008{transform:matrix(0.296970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296970,0.000000,0.000000,0.250000,0,0);}
.m62_c01008{transform:matrix(0.297459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297459,0.000000,0.000000,0.250000,0,0);}
.m87_c01008{transform:matrix(0.298473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298473,0.000000,0.000000,0.250000,0,0);}
.m66_c01008{transform:matrix(0.298789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298789,0.000000,0.000000,0.250000,0,0);}
.mc3_c01008{transform:matrix(0.298846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298846,0.000000,0.000000,0.250000,0,0);}
.maf_c01008{transform:matrix(0.298917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298917,0.000000,0.000000,0.250000,0,0);}
.ma0_c01008{transform:matrix(0.299298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299298,0.000000,0.000000,0.250000,0,0);}
.m83_c01008{transform:matrix(0.299367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299367,0.000000,0.000000,0.250000,0,0);}
.m65_c01008{transform:matrix(0.299520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299520,0.000000,0.000000,0.250000,0,0);}
.m3f_c01008{transform:matrix(0.299772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299772,0.000000,0.000000,0.250000,0,0);}
.m49_c01008{transform:matrix(0.300484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300484,0.000000,0.000000,0.250000,0,0);}
.m3e_c01008{transform:matrix(0.300753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300753,0.000000,0.000000,0.250000,0,0);}
.mb6_c01008{transform:matrix(0.301610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301610,0.000000,0.000000,0.250000,0,0);}
.m6b_c01008{transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);}
.m7b_c01008{transform:matrix(0.301652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301652,0.000000,0.000000,0.250000,0,0);}
.m43_c01008{transform:matrix(0.301847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301847,0.000000,0.000000,0.250000,0,0);}
.m7e_c01008{transform:matrix(0.303572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303572,0.000000,0.000000,0.250000,0,0);}
.mb0_c01008{transform:matrix(0.304910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304910,0.000000,0.000000,0.250000,0,0);}
.m9f_c01008{transform:matrix(0.305054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305054,0.000000,0.000000,0.250000,0,0);}
.m18_c01008{transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);}
.m25_c01008{transform:matrix(0.305755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305755,0.000000,0.000000,0.250000,0,0);}
.m22_c01008{transform:matrix(0.307214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307214,0.000000,0.000000,0.250000,0,0);}
.m3a_c01008{transform:matrix(0.307344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307344,0.000000,0.000000,0.250000,0,0);}
.m19_c01008{transform:matrix(0.307487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307487,0.000000,0.000000,0.250000,0,0);}
.mb8_c01008{transform:matrix(0.307937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307937,0.000000,0.000000,0.250000,0,0);}
.m6e_c01008{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m6a_c01008{transform:matrix(0.308952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308952,0.000000,0.000000,0.250000,0,0);}
.m1c_c01008{transform:matrix(0.309092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309092,0.000000,0.000000,0.250000,0,0);}
.mac_c01008{transform:matrix(0.311256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311256,0.000000,0.000000,0.250000,0,0);}
.m4c_c01008{transform:matrix(0.311646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311646,0.000000,0.000000,0.250000,0,0);}
.m1f_c01008{transform:matrix(0.311968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311968,0.000000,0.000000,0.250000,0,0);}
.m53_c01008{transform:matrix(0.313915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313915,0.000000,0.000000,0.250000,0,0);}
.m13_c01008{transform:matrix(0.314182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314182,0.000000,0.000000,0.250000,0,0);}
.m71_c01008{transform:matrix(0.315313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315313,0.000000,0.000000,0.250000,0,0);}
.m24_c01008{transform:matrix(0.316886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316886,0.000000,0.000000,0.250000,0,0);}
.m80_c01008{transform:matrix(0.317103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317103,0.000000,0.000000,0.250000,0,0);}
.mbb_c01008{transform:matrix(0.317259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317259,0.000000,0.000000,0.250000,0,0);}
.mcb_c01008{transform:matrix(0.317419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317419,0.000000,0.000000,0.250000,0,0);}
.m7a_c01008{transform:matrix(0.318723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318723,0.000000,0.000000,0.250000,0,0);}
.ma_c01008{transform:matrix(0.318861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318861,0.000000,0.000000,0.250000,0,0);}
.m48_c01008{transform:matrix(0.318876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318876,0.000000,0.000000,0.250000,0,0);}
.m8_c01008{transform:matrix(0.319291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319291,0.000000,0.000000,0.250000,0,0);}
.m95_c01008{transform:matrix(0.319566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319566,0.000000,0.000000,0.250000,0,0);}
.m4a_c01008{transform:matrix(0.319959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319959,0.000000,0.000000,0.250000,0,0);}
.ma5_c01008{transform:matrix(0.321083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321083,0.000000,0.000000,0.250000,0,0);}
.m78_c01008{transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);}
.m79_c01008{transform:matrix(0.322508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322508,0.000000,0.000000,0.250000,0,0);}
.mad_c01008{transform:matrix(0.322539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322539,0.000000,0.000000,0.250000,0,0);}
.m1d_c01008{transform:matrix(0.323414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323414,0.000000,0.000000,0.250000,0,0);}
.m2a_c01008{transform:matrix(0.324400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324400,0.000000,0.000000,0.250000,0,0);}
.me_c01008{transform:matrix(0.324775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324775,0.000000,0.000000,0.250000,0,0);}
.m5a_c01008{transform:matrix(0.325737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325737,0.000000,0.000000,0.250000,0,0);}
.md_c01008{transform:matrix(0.326146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326146,0.000000,0.000000,0.250000,0,0);}
.m11_c01008{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m92_c01008{transform:matrix(0.328833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328833,0.000000,0.000000,0.250000,0,0);}
.m7f_c01008{transform:matrix(0.329226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329226,0.000000,0.000000,0.250000,0,0);}
.mbd_c01008{transform:matrix(0.329646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329646,0.000000,0.000000,0.250000,0,0);}
.m5_c01008{transform:matrix(0.330710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330710,0.000000,0.000000,0.250000,0,0);}
.m69_c01008{transform:matrix(0.330718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330718,0.000000,0.000000,0.250000,0,0);}
.m34_c01008{transform:matrix(0.331420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331420,0.000000,0.000000,0.250000,0,0);}
.m72_c01008{transform:matrix(0.332170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332170,0.000000,0.000000,0.250000,0,0);}
.mbe_c01008{transform:matrix(0.332499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332499,0.000000,0.000000,0.250000,0,0);}
.m67_c01008{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m20_c01008{transform:matrix(0.333511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333511,0.000000,0.000000,0.250000,0,0);}
.m9c_c01008{transform:matrix(0.334644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334644,0.000000,0.000000,0.250000,0,0);}
.m5b_c01008{transform:matrix(0.334985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334985,0.000000,0.000000,0.250000,0,0);}
.mc7_c01008{transform:matrix(0.335090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335090,0.000000,0.000000,0.250000,0,0);}
.m4f_c01008{transform:matrix(0.336028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336028,0.000000,0.000000,0.250000,0,0);}
.m14_c01008{transform:matrix(0.337641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337641,0.000000,0.000000,0.250000,0,0);}
.m3b_c01008{transform:matrix(0.338008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338008,0.000000,0.000000,0.250000,0,0);}
.mcc_c01008{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m84_c01008{transform:matrix(0.339504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339504,0.000000,0.000000,0.250000,0,0);}
.m7d_c01008{transform:matrix(0.340102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340102,0.000000,0.000000,0.250000,0,0);}
.mb4_c01008{transform:matrix(0.340595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340595,0.000000,0.000000,0.250000,0,0);}
.mca_c01008{transform:matrix(0.342191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342191,0.000000,0.000000,0.250000,0,0);}
.m68_c01008{transform:matrix(0.343448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343448,0.000000,0.000000,0.250000,0,0);}
.m6_c01008{transform:matrix(0.345988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345988,0.000000,0.000000,0.250000,0,0);}
.m96_c01008{transform:matrix(0.348181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348181,0.000000,0.000000,0.250000,0,0);}
.mab_c01008{transform:matrix(0.348695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348695,0.000000,0.000000,0.250000,0,0);}
.m8f_c01008{transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);}
.mc5_c01008{transform:matrix(0.351631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351631,0.000000,0.000000,0.250000,0,0);}
.mc1_c01008{transform:matrix(0.357127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357127,0.000000,0.000000,0.250000,0,0);}
.mc4_c01008{transform:matrix(0.359826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359826,0.000000,0.000000,0.250000,0,0);}
.m42_c01008{transform:matrix(0.361926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361926,0.000000,0.000000,0.250000,0,0);}
.m5c_c01008{transform:matrix(0.367343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367343,0.000000,0.000000,0.250000,0,0);}
.m38_c01008{transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);}
.m36_c01008{transform:matrix(0.373839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373839,0.000000,0.000000,0.250000,0,0);}
.m9_c01008{transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);}
.mbf_c01008{transform:matrix(0.386524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386524,0.000000,0.000000,0.250000,0,0);}
.v1_c01008{vertical-align:-31.379040px;}
.v0_c01008{vertical-align:0.000000px;}
.ls6_c01008{letter-spacing:-2.744280px;}
.ls10_c01008{letter-spacing:-2.286900px;}
.lse_c01008{letter-spacing:-1.898820px;}
.lsf_c01008{letter-spacing:-1.763190px;}
.ls14_c01008{letter-spacing:-1.427026px;}
.ls17_c01008{letter-spacing:-0.948737px;}
.ls9_c01008{letter-spacing:-0.509652px;}
.ls1_c01008{letter-spacing:0.000000px;}
.ls16_c01008{letter-spacing:1.074190px;}
.ls7_c01008{letter-spacing:1.231006px;}
.lsb_c01008{letter-spacing:1.811700px;}
.ls18_c01008{letter-spacing:1.930500px;}
.ls0_c01008{letter-spacing:1.960200px;}
.ls8_c01008{letter-spacing:3.246091px;}
.ls12_c01008{letter-spacing:3.326400px;}
.ls5_c01008{letter-spacing:3.425400px;}
.lsa_c01008{letter-spacing:3.484810px;}
.lsd_c01008{letter-spacing:3.779266px;}
.ls3_c01008{letter-spacing:3.920400px;}
.ls2_c01008{letter-spacing:4.078810px;}
.lsc_c01008{letter-spacing:4.435200px;}
.ls13_c01008{letter-spacing:52.747398px;}
.ls4_c01008{letter-spacing:55.598598px;}
.ls19_c01008{letter-spacing:57.024198px;}
.ls11_c01008{letter-spacing:58.449798px;}
.ls15_c01008{letter-spacing:62.726400px;}
.sc__c01008{text-shadow:none;}
.sc0_c01008{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01008{-webkit-text-stroke:0px transparent;}
.sc0_c01008{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01008{word-spacing:0.000000px;}
._1_c01008{margin-left:-11.682792px;}
._0_c01008{width:23.051952px;}
._2_c01008{width:1579.884372px;}
.fc0_c01008{color:transparent;}
.fs4_c01008{font-size:22.176000px;}
.fs0_c01008{font-size:27.720000px;}
.fs15_c01008{font-size:33.264000px;}
.fs3_c01008{font-size:33.660000px;}
.fs9_c01008{font-size:36.234000px;}
.fs12_c01008{font-size:38.610000px;}
.fs10_c01008{font-size:52.747398px;}
.fsc_c01008{font-size:54.252000px;}
.fs6_c01008{font-size:55.598598px;}
.fs13_c01008{font-size:57.024198px;}
.fsf_c01008{font-size:58.449798px;}
.fs11_c01008{font-size:62.726400px;}
.fse_c01008{font-size:65.340000px;}
.fsb_c01008{font-size:66.132198px;}
.fs2_c01008{font-size:66.528000px;}
.fs7_c01008{font-size:68.508000px;}
.fs8_c01008{font-size:69.696198px;}
.fsd_c01008{font-size:70.884000px;}
.fs14_c01008{font-size:74.844000px;}
.fs5_c01008{font-size:78.408000px;}
.fs1_c01008{font-size:81.576198px;}
.fsa_c01008{font-size:88.704000px;}
.y0_c01008{bottom:0.000000px;}
.y26_c01008{bottom:61.561215px;}
.y1_c01008{bottom:76.500000px;}
.y25_c01008{bottom:101.124585px;}
.y23_c01008{bottom:127.854585px;}
.y24_c01008{bottom:154.584585px;}
.y22_c01008{bottom:159.935535px;}
.y21_c01008{bottom:190.942335px;}
.y20_c01008{bottom:192.362985px;}
.y1f_c01008{bottom:224.438985px;}
.y1e_c01008{bottom:256.163535px;}
.y1d_c01008{bottom:288.234585px;}
.y1c_c01008{bottom:312.474735px;}
.y1b_c01008{bottom:319.959135px;}
.y1a_c01008{bottom:352.035135px;}
.y19_c01008{bottom:383.754735px;}
.y18_c01008{bottom:415.830735px;}
.y17_c01008{bottom:447.550335px;}
.y16_c01008{bottom:478.552185px;}
.y15_c01008{bottom:540.927135px;}
.y14_c01008{bottom:572.641785px;}
.y13_c01008{bottom:604.004985px;}
.y11_c01008{bottom:636.085935px;}
.y12_c01008{bottom:641.426985px;}
.y10_c01008{bottom:668.156985px;}
.yf_c01008{bottom:699.881535px;}
.ye_c01008{bottom:724.829535px;}
.yd_c01008{bottom:731.596185px;}
.yc_c01008{bottom:762.959385px;}
.yb_c01008{bottom:794.322585px;}
.ya_c01008{bottom:826.047135px;}
.y9_c01008{bottom:857.761785px;}
.y8_c01008{bottom:889.124985px;}
.y7_c01008{bottom:921.913785px;}
.y6_c01008{bottom:964.681785px;}
.y5_c01008{bottom:993.555135px;}
.y4_c01008{bottom:1027.408185px;}
.y3_c01008{bottom:1058.058585px;}
.y2_c01008{bottom:1098.688185px;}
.h6_c01008{height:23.128875px;}
.h2_c01008{height:28.911094px;}
.h5_c01008{height:33.035449px;}
.h17_c01008{height:34.693313px;}
.h12_c01008{height:35.129767px;}
.h8_c01008{height:37.028666px;}
.hb_c01008{height:37.790930px;}
.h15_c01008{height:37.978116px;}
.h11_c01008{height:38.927565px;}
.h14_c01008{height:40.269023px;}
.h13_c01008{height:41.775782px;}
.he_c01008{height:56.583141px;}
.h10_c01008{height:64.127637px;}
.hd_c01008{height:68.973816px;}
.h4_c01008{height:69.386625px;}
.hf_c01008{height:69.568770px;}
.h9_c01008{height:71.451703px;}
.ha_c01008{height:72.690957px;}
.h16_c01008{height:73.455293px;}
.h7_c01008{height:76.953164px;}
.h3_c01008{height:80.062577px;}
.hc_c01008{height:87.058125px;}
.h1_c01008{height:1110.000000px;}
.h0_c01008{height:1263.000000px;}
.w1_c01008{width:763.500000px;}
.w0_c01008{width:892.500000px;}
.x0_c01008{left:0.000000px;}
.x1_c01008{left:64.500000px;}
.x26_c01008{left:76.844850px;}
.xf_c01008{left:78.042750px;}
.x66_c01008{left:79.270350px;}
.x3a_c01008{left:100.302900px;}
.x68_c01008{left:103.480800px;}
.x4f_c01008{left:110.994900px;}
.x19_c01008{left:112.103700px;}
.x7_c01008{left:133.408500px;}
.x3e_c01008{left:143.947050px;}
.x43_c01008{left:155.757750px;}
.x2c_c01008{left:166.806150px;}
.x1a_c01008{left:176.597250px;}
.x4b_c01008{left:178.814850px;}
.x64_c01008{left:187.606050px;}
.x3b_c01008{left:188.902950px;}
.x10_c01008{left:199.396950px;}
.x8_c01008{left:200.659200px;}
.x2d_c01008{left:209.405850px;}
.x22_c01008{left:210.653250px;}
.x3f_c01008{left:212.281800px;}
.x1b_c01008{left:220.830450px;}
.x50_c01008{left:222.384750px;}
.x54_c01008{left:233.735100px;}
.x27_c01008{left:242.877750px;}
.x23_c01008{left:253.945950px;}
.x1c_c01008{left:255.554700px;}
.x33_c01008{left:265.865550px;}
.x51_c01008{left:267.306000px;}
.x44_c01008{left:278.319750px;}
.x24_c01008{left:288.506850px;}
.x9_c01008{left:290.001750px;}
.x4c_c01008{left:298.525650px;}
.x11_c01008{left:300.817500px;}
.x2e_c01008{left:311.385750px;}
.x12_c01008{left:322.156950px;}
.x55_c01008{left:332.715300px;}
.x34_c01008{left:333.962700px;}
.x52_c01008{left:343.402350px;}
.x6_c01008{left:345.491250px;}
.xa_c01008{left:354.970500px;}
.x1d_c01008{left:356.069400px;}
.x5d_c01008{left:358.054350px;}
.x69_c01008{left:366.390150px;}
.x2f_c01008{left:377.448450px;}
.x45_c01008{left:387.937500px;}
.x56_c01008{left:390.165000px;}
.xb_c01008{left:399.669000px;}
.x57_c01008{left:401.277750px;}
.x13_c01008{left:410.573850px;}
.x4d_c01008{left:422.572650px;}
.x1e_c01008{left:433.012200px;}
.x14_c01008{left:444.095250px;}
.x28_c01008{left:445.352550px;}
.xc_c01008{left:455.727750px;}
.x58_c01008{left:456.905850px;}
.x59_c01008{left:465.632700px;}
.x30_c01008{left:467.241450px;}
.x3c_c01008{left:468.865050px;}
.x1f_c01008{left:478.180950px;}
.x15_c01008{left:489.204600px;}
.x2_c01008{left:494.798100px;}
.x31_c01008{left:498.926400px;}
.x65_c01008{left:500.277750px;}
.x29_c01008{left:510.380700px;}
.x46_c01008{left:520.562850px;}
.x62_c01008{left:521.790450px;}
.x4e_c01008{left:523.087350px;}
.x61_c01008{left:531.834000px;}
.x40_c01008{left:532.843800px;}
.x32_c01008{left:534.551550px;}
.x6a_c01008{left:540.169800px;}
.x2a_c01008{left:544.114950px;}
.x47_c01008{left:553.321950px;}
.xd_c01008{left:554.891100px;}
.x63_c01008{left:555.965250px;}
.x16_c01008{left:565.627650px;}
.x5e_c01008{left:575.834550px;}
.x60_c01008{left:577.626450px;}
.x67_c01008{left:587.665050px;}
.x35_c01008{left:588.788700px;}
.x25_c01008{left:598.480800px;}
.x41_c01008{left:600.069750px;}
.x36_c01008{left:609.786600px;}
.x17_c01008{left:610.811250px;}
.xe_c01008{left:620.810250px;}
.x5f_c01008{left:621.894300px;}
.x20_c01008{left:631.918050px;}
.x42_c01008{left:632.967450px;}
.x18_c01008{left:642.045750px;}
.x3d_c01008{left:643.624800px;}
.x3_c01008{left:653.955450px;}
.x5a_c01008{left:656.029500px;}
.x53_c01008{left:665.776050px;}
.x21_c01008{left:677.052150px;}
.x2b_c01008{left:688.174800px;}
.x48_c01008{left:689.961750px;}
.x4_c01008{left:693.872250px;}
.x39_c01008{left:696.876900px;}
.x5_c01008{left:698.634150px;}
.x37_c01008{left:699.733050px;}
.x6c_c01008{left:707.192700px;}
.x6d_c01008{left:708.281700px;}
.x6b_c01008{left:710.108250px;}
.x49_c01008{left:712.033800px;}
.x5b_c01008{left:726.755100px;}
.x38_c01008{left:733.016850px;}
.x5c_c01008{left:745.213650px;}
.x4a_c01008{left:756.257100px;}
@media print{
.v1_c01008{vertical-align:-27.892480pt;}
.v0_c01008{vertical-align:0.000000pt;}
.ls6_c01008{letter-spacing:-2.439360pt;}
.ls10_c01008{letter-spacing:-2.032800pt;}
.lse_c01008{letter-spacing:-1.687840pt;}
.lsf_c01008{letter-spacing:-1.567280pt;}
.ls14_c01008{letter-spacing:-1.268467pt;}
.ls17_c01008{letter-spacing:-0.843322pt;}
.ls9_c01008{letter-spacing:-0.453024pt;}
.ls1_c01008{letter-spacing:0.000000pt;}
.ls16_c01008{letter-spacing:0.954835pt;}
.ls7_c01008{letter-spacing:1.094227pt;}
.lsb_c01008{letter-spacing:1.610400pt;}
.ls18_c01008{letter-spacing:1.716000pt;}
.ls0_c01008{letter-spacing:1.742400pt;}
.ls8_c01008{letter-spacing:2.885414pt;}
.ls12_c01008{letter-spacing:2.956800pt;}
.ls5_c01008{letter-spacing:3.044800pt;}
.lsa_c01008{letter-spacing:3.097609pt;}
.lsd_c01008{letter-spacing:3.359347pt;}
.ls3_c01008{letter-spacing:3.484800pt;}
.ls2_c01008{letter-spacing:3.625609pt;}
.lsc_c01008{letter-spacing:3.942400pt;}
.ls13_c01008{letter-spacing:46.886576pt;}
.ls4_c01008{letter-spacing:49.420976pt;}
.ls19_c01008{letter-spacing:50.688176pt;}
.ls11_c01008{letter-spacing:51.955376pt;}
.ls15_c01008{letter-spacing:55.756800pt;}
.ws0_c01008{word-spacing:0.000000pt;}
._1_c01008{margin-left:-10.384704pt;}
._0_c01008{width:20.490624pt;}
._2_c01008{width:1404.341664pt;}
.fs4_c01008{font-size:19.712000pt;}
.fs0_c01008{font-size:24.640000pt;}
.fs15_c01008{font-size:29.568000pt;}
.fs3_c01008{font-size:29.920000pt;}
.fs9_c01008{font-size:32.208000pt;}
.fs12_c01008{font-size:34.320000pt;}
.fs10_c01008{font-size:46.886576pt;}
.fsc_c01008{font-size:48.224000pt;}
.fs6_c01008{font-size:49.420976pt;}
.fs13_c01008{font-size:50.688176pt;}
.fsf_c01008{font-size:51.955376pt;}
.fs11_c01008{font-size:55.756800pt;}
.fse_c01008{font-size:58.080000pt;}
.fsb_c01008{font-size:58.784176pt;}
.fs2_c01008{font-size:59.136000pt;}
.fs7_c01008{font-size:60.896000pt;}
.fs8_c01008{font-size:61.952176pt;}
.fsd_c01008{font-size:63.008000pt;}
.fs14_c01008{font-size:66.528000pt;}
.fs5_c01008{font-size:69.696000pt;}
.fs1_c01008{font-size:72.512176pt;}
.fsa_c01008{font-size:78.848000pt;}
.y0_c01008{bottom:0.000000pt;}
.y26_c01008{bottom:54.721080pt;}
.y1_c01008{bottom:68.000000pt;}
.y25_c01008{bottom:89.888520pt;}
.y23_c01008{bottom:113.648520pt;}
.y24_c01008{bottom:137.408520pt;}
.y22_c01008{bottom:142.164920pt;}
.y21_c01008{bottom:169.726520pt;}
.y20_c01008{bottom:170.989320pt;}
.y1f_c01008{bottom:199.501320pt;}
.y1e_c01008{bottom:227.700920pt;}
.y1d_c01008{bottom:256.208520pt;}
.y1c_c01008{bottom:277.755320pt;}
.y1b_c01008{bottom:284.408120pt;}
.y1a_c01008{bottom:312.920120pt;}
.y19_c01008{bottom:341.115320pt;}
.y18_c01008{bottom:369.627320pt;}
.y17_c01008{bottom:397.822520pt;}
.y16_c01008{bottom:425.379720pt;}
.y15_c01008{bottom:480.824120pt;}
.y14_c01008{bottom:509.014920pt;}
.y13_c01008{bottom:536.893320pt;}
.y11_c01008{bottom:565.409720pt;}
.y12_c01008{bottom:570.157320pt;}
.y10_c01008{bottom:593.917320pt;}
.yf_c01008{bottom:622.116920pt;}
.ye_c01008{bottom:644.292920pt;}
.yd_c01008{bottom:650.307720pt;}
.yc_c01008{bottom:678.186120pt;}
.yb_c01008{bottom:706.064520pt;}
.ya_c01008{bottom:734.264120pt;}
.y9_c01008{bottom:762.454920pt;}
.y8_c01008{bottom:790.333320pt;}
.y7_c01008{bottom:819.478920pt;}
.y6_c01008{bottom:857.494920pt;}
.y5_c01008{bottom:883.160120pt;}
.y4_c01008{bottom:913.251720pt;}
.y3_c01008{bottom:940.496520pt;}
.y2_c01008{bottom:976.611720pt;}
.h6_c01008{height:20.559000pt;}
.h2_c01008{height:25.698750pt;}
.h5_c01008{height:29.364844pt;}
.h17_c01008{height:30.838500pt;}
.h12_c01008{height:31.226460pt;}
.h8_c01008{height:32.914370pt;}
.hb_c01008{height:33.591938pt;}
.h15_c01008{height:33.758325pt;}
.h11_c01008{height:34.602280pt;}
.h14_c01008{height:35.794688pt;}
.h13_c01008{height:37.134029pt;}
.he_c01008{height:50.296125pt;}
.h10_c01008{height:57.002344pt;}
.hd_c01008{height:61.310059pt;}
.h4_c01008{height:61.677000pt;}
.hf_c01008{height:61.838906pt;}
.h9_c01008{height:63.512625pt;}
.ha_c01008{height:64.614184pt;}
.h16_c01008{height:65.293594pt;}
.h7_c01008{height:68.402813pt;}
.h3_c01008{height:71.166735pt;}
.hc_c01008{height:77.385000pt;}
.h1_c01008{height:986.666667pt;}
.h0_c01008{height:1122.666667pt;}
.w1_c01008{width:678.666667pt;}
.w0_c01008{width:793.333333pt;}
.x0_c01008{left:0.000000pt;}
.x1_c01008{left:57.333333pt;}
.x26_c01008{left:68.306533pt;}
.xf_c01008{left:69.371333pt;}
.x66_c01008{left:70.462533pt;}
.x3a_c01008{left:89.158133pt;}
.x68_c01008{left:91.982933pt;}
.x4f_c01008{left:98.662133pt;}
.x19_c01008{left:99.647733pt;}
.x7_c01008{left:118.585333pt;}
.x3e_c01008{left:127.952933pt;}
.x43_c01008{left:138.451333pt;}
.x2c_c01008{left:148.272133pt;}
.x1a_c01008{left:156.975333pt;}
.x4b_c01008{left:158.946533pt;}
.x64_c01008{left:166.760933pt;}
.x3b_c01008{left:167.913733pt;}
.x10_c01008{left:177.241733pt;}
.x8_c01008{left:178.363733pt;}
.x2d_c01008{left:186.138533pt;}
.x22_c01008{left:187.247333pt;}
.x3f_c01008{left:188.694933pt;}
.x1b_c01008{left:196.293733pt;}
.x50_c01008{left:197.675333pt;}
.x54_c01008{left:207.764533pt;}
.x27_c01008{left:215.891333pt;}
.x23_c01008{left:225.729733pt;}
.x1c_c01008{left:227.159733pt;}
.x33_c01008{left:236.324933pt;}
.x51_c01008{left:237.605333pt;}
.x44_c01008{left:247.395333pt;}
.x24_c01008{left:256.450533pt;}
.x9_c01008{left:257.779333pt;}
.x4c_c01008{left:265.356133pt;}
.x11_c01008{left:267.393333pt;}
.x2e_c01008{left:276.787333pt;}
.x12_c01008{left:286.361733pt;}
.x55_c01008{left:295.746933pt;}
.x34_c01008{left:296.855733pt;}
.x52_c01008{left:305.246533pt;}
.x6_c01008{left:307.103333pt;}
.xa_c01008{left:315.529333pt;}
.x1d_c01008{left:316.506133pt;}
.x5d_c01008{left:318.270533pt;}
.x69_c01008{left:325.680133pt;}
.x2f_c01008{left:335.509733pt;}
.x45_c01008{left:344.833333pt;}
.x56_c01008{left:346.813333pt;}
.xb_c01008{left:355.261333pt;}
.x57_c01008{left:356.691333pt;}
.x13_c01008{left:364.954533pt;}
.x4d_c01008{left:375.620133pt;}
.x1e_c01008{left:384.899733pt;}
.x14_c01008{left:394.751333pt;}
.x28_c01008{left:395.868933pt;}
.xc_c01008{left:405.091333pt;}
.x58_c01008{left:406.138533pt;}
.x59_c01008{left:413.895733pt;}
.x30_c01008{left:415.325733pt;}
.x3c_c01008{left:416.768933pt;}
.x1f_c01008{left:425.049733pt;}
.x15_c01008{left:434.848533pt;}
.x2_c01008{left:439.820533pt;}
.x31_c01008{left:443.490133pt;}
.x65_c01008{left:444.691333pt;}
.x29_c01008{left:453.671733pt;}
.x46_c01008{left:462.722533pt;}
.x62_c01008{left:463.813733pt;}
.x4e_c01008{left:464.966533pt;}
.x61_c01008{left:472.741333pt;}
.x40_c01008{left:473.638933pt;}
.x32_c01008{left:475.156933pt;}
.x6a_c01008{left:480.150933pt;}
.x2a_c01008{left:483.657733pt;}
.x47_c01008{left:491.841733pt;}
.xd_c01008{left:493.236533pt;}
.x63_c01008{left:494.191333pt;}
.x16_c01008{left:502.780133pt;}
.x5e_c01008{left:511.852933pt;}
.x60_c01008{left:513.445733pt;}
.x67_c01008{left:522.368933pt;}
.x35_c01008{left:523.367733pt;}
.x25_c01008{left:531.982933pt;}
.x41_c01008{left:533.395333pt;}
.x36_c01008{left:542.032533pt;}
.x17_c01008{left:542.943333pt;}
.xe_c01008{left:551.831333pt;}
.x5f_c01008{left:552.794933pt;}
.x20_c01008{left:561.704933pt;}
.x42_c01008{left:562.637733pt;}
.x18_c01008{left:570.707333pt;}
.x3d_c01008{left:572.110933pt;}
.x3_c01008{left:581.293733pt;}
.x5a_c01008{left:583.137333pt;}
.x53_c01008{left:591.800933pt;}
.x21_c01008{left:601.824133pt;}
.x2b_c01008{left:611.710933pt;}
.x48_c01008{left:613.299333pt;}
.x4_c01008{left:616.775333pt;}
.x39_c01008{left:619.446133pt;}
.x5_c01008{left:621.008133pt;}
.x37_c01008{left:621.984933pt;}
.x6c_c01008{left:628.615733pt;}
.x6d_c01008{left:629.583733pt;}
.x6b_c01008{left:631.207333pt;}
.x49_c01008{left:632.918933pt;}
.x5b_c01008{left:646.004533pt;}
.x38_c01008{left:651.570533pt;}
.x5c_c01008{left:662.412133pt;}
.x4a_c01008{left:672.228533pt;}
}





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

.ir_c01009:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01009{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01009;src:url('chunks/assets/font_a2f5908c224b5af08e2c622f.woff2')format("woff");}.ff1_c01009{font-family:ff1_c01009;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01009;src:url('chunks/assets/font_7b6c4597e20b17993f350cfd.woff2')format("woff");}.ff2_c01009{font-family:ff2_c01009;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01009;src:url('chunks/assets/font_bdc5c3f21bc1a8766c3d6599.woff2')format("woff");}.ff3_c01009{font-family:ff3_c01009;line-height:0.666000;font-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_c01009{transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);}
.m6b_c01009{transform:matrix(0.196545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196545,0.000000,0.000000,0.250000,0,0);}
.m85_c01009{transform:matrix(0.197675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197675,0.000000,0.000000,0.250000,0,0);}
.m6a_c01009{transform:matrix(0.202067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202067,0.000000,0.000000,0.250000,0,0);}
.m69_c01009{transform:matrix(0.202303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202303,0.000000,0.000000,0.250000,0,0);}
.m97_c01009{transform:matrix(0.222916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222916,0.000000,0.000000,0.250000,0,0);}
.m1c_c01009{transform:matrix(0.243955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243955,0.000000,0.000000,0.250000,0,0);}
.m5a_c01009{transform:matrix(0.244760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244760,0.000000,0.000000,0.250000,0,0);}
.m9a_c01009{transform:matrix(0.248291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248291,0.000000,0.000000,0.250000,0,0);}
.m1d_c01009{transform:matrix(0.248508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248508,0.000000,0.000000,0.250000,0,0);}
.m0_c01009{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2_c01009{transform:matrix(0.250604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250604,0.000000,0.000000,0.250000,0,0);}
.m43_c01009{transform:matrix(0.251240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251240,0.000000,0.000000,0.250000,0,0);}
.mc1_c01009{transform:matrix(0.251742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251742,0.000000,0.000000,0.250000,0,0);}
.m62_c01009{transform:matrix(0.252836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252836,0.000000,0.000000,0.250000,0,0);}
.m1f_c01009{transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);}
.m8d_c01009{transform:matrix(0.254446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254446,0.000000,0.000000,0.250000,0,0);}
.m1_c01009{transform:matrix(0.254998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254998,0.000000,0.000000,0.250000,0,0);}
.m48_c01009{transform:matrix(0.255016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255016,0.000000,0.000000,0.250000,0,0);}
.m77_c01009{transform:matrix(0.256118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256118,0.000000,0.000000,0.250000,0,0);}
.m96_c01009{transform:matrix(0.256225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256225,0.000000,0.000000,0.250000,0,0);}
.ma2_c01009{transform:matrix(0.256389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256389,0.000000,0.000000,0.250000,0,0);}
.m88_c01009{transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);}
.m8_c01009{transform:matrix(0.257373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257373,0.000000,0.000000,0.250000,0,0);}
.m19_c01009{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m86_c01009{transform:matrix(0.259076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259076,0.000000,0.000000,0.250000,0,0);}
.m2e_c01009{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m3e_c01009{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.m9b_c01009{transform:matrix(0.263237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263237,0.000000,0.000000,0.250000,0,0);}
.m9_c01009{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m15_c01009{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m84_c01009{transform:matrix(0.264902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264902,0.000000,0.000000,0.250000,0,0);}
.m6c_c01009{transform:matrix(0.265497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265497,0.000000,0.000000,0.250000,0,0);}
.m81_c01009{transform:matrix(0.265600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265600,0.000000,0.000000,0.250000,0,0);}
.m7e_c01009{transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);}
.m24_c01009{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.mbd_c01009{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.m54_c01009{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m13_c01009{transform:matrix(0.268513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268513,0.000000,0.000000,0.250000,0,0);}
.m6f_c01009{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.m25_c01009{transform:matrix(0.268624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268624,0.000000,0.000000,0.250000,0,0);}
.m7a_c01009{transform:matrix(0.269245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269245,0.000000,0.000000,0.250000,0,0);}
.m12_c01009{transform:matrix(0.269769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269769,0.000000,0.000000,0.250000,0,0);}
.m3d_c01009{transform:matrix(0.269850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269850,0.000000,0.000000,0.250000,0,0);}
.m56_c01009{transform:matrix(0.270900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270900,0.000000,0.000000,0.250000,0,0);}
.m91_c01009{transform:matrix(0.271612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271612,0.000000,0.000000,0.250000,0,0);}
.m82_c01009{transform:matrix(0.271712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271712,0.000000,0.000000,0.250000,0,0);}
.mc6_c01009{transform:matrix(0.272119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272119,0.000000,0.000000,0.250000,0,0);}
.m78_c01009{transform:matrix(0.273311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273311,0.000000,0.000000,0.250000,0,0);}
.mb0_c01009{transform:matrix(0.273342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273342,0.000000,0.000000,0.250000,0,0);}
.m53_c01009{transform:matrix(0.273394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273394,0.000000,0.000000,0.250000,0,0);}
.m33_c01009{transform:matrix(0.274278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274278,0.000000,0.000000,0.250000,0,0);}
.m14_c01009{transform:matrix(0.275628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275628,0.000000,0.000000,0.250000,0,0);}
.m44_c01009{transform:matrix(0.276330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276330,0.000000,0.000000,0.250000,0,0);}
.m2b_c01009{transform:matrix(0.276460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276460,0.000000,0.000000,0.250000,0,0);}
.ma0_c01009{transform:matrix(0.276776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276776,0.000000,0.000000,0.250000,0,0);}
.m74_c01009{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m7d_c01009{transform:matrix(0.277548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277548,0.000000,0.000000,0.250000,0,0);}
.m30_c01009{transform:matrix(0.277608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277608,0.000000,0.000000,0.250000,0,0);}
.mc3_c01009{transform:matrix(0.277907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277907,0.000000,0.000000,0.250000,0,0);}
.m29_c01009{transform:matrix(0.277996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277996,0.000000,0.000000,0.250000,0,0);}
.m8b_c01009{transform:matrix(0.278911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278911,0.000000,0.000000,0.250000,0,0);}
.m72_c01009{transform:matrix(0.279941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279941,0.000000,0.000000,0.250000,0,0);}
.m10_c01009{transform:matrix(0.280247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280247,0.000000,0.000000,0.250000,0,0);}
.m47_c01009{transform:matrix(0.280476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280476,0.000000,0.000000,0.250000,0,0);}
.m7_c01009{transform:matrix(0.281190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281190,0.000000,0.000000,0.250000,0,0);}
.mf_c01009{transform:matrix(0.282045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282045,0.000000,0.000000,0.250000,0,0);}
.m4f_c01009{transform:matrix(0.282148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282148,0.000000,0.000000,0.250000,0,0);}
.m5b_c01009{transform:matrix(0.283107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283107,0.000000,0.000000,0.250000,0,0);}
.m63_c01009{transform:matrix(0.283174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283174,0.000000,0.000000,0.250000,0,0);}
.m9c_c01009{transform:matrix(0.283230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283230,0.000000,0.000000,0.250000,0,0);}
.mc5_c01009{transform:matrix(0.283310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283310,0.000000,0.000000,0.250000,0,0);}
.m2c_c01009{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.mb2_c01009{transform:matrix(0.284092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284092,0.000000,0.000000,0.250000,0,0);}
.m61_c01009{transform:matrix(0.284669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284669,0.000000,0.000000,0.250000,0,0);}
.m35_c01009{transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);}
.m26_c01009{transform:matrix(0.285387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285387,0.000000,0.000000,0.250000,0,0);}
.m20_c01009{transform:matrix(0.285539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285539,0.000000,0.000000,0.250000,0,0);}
.m32_c01009{transform:matrix(0.285799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285799,0.000000,0.000000,0.250000,0,0);}
.m39_c01009{transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);}
.mb4_c01009{transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);}
.m40_c01009{transform:matrix(0.285962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285962,0.000000,0.000000,0.250000,0,0);}
.m71_c01009{transform:matrix(0.286086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286086,0.000000,0.000000,0.250000,0,0);}
.m60_c01009{transform:matrix(0.286199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286199,0.000000,0.000000,0.250000,0,0);}
.m8a_c01009{transform:matrix(0.286496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286496,0.000000,0.000000,0.250000,0,0);}
.m5e_c01009{transform:matrix(0.286891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286891,0.000000,0.000000,0.250000,0,0);}
.m70_c01009{transform:matrix(0.287167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287167,0.000000,0.000000,0.250000,0,0);}
.mae_c01009{transform:matrix(0.287521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287521,0.000000,0.000000,0.250000,0,0);}
.mc7_c01009{transform:matrix(0.288131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288131,0.000000,0.000000,0.250000,0,0);}
.m5_c01009{transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);}
.m93_c01009{transform:matrix(0.289162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289162,0.000000,0.000000,0.250000,0,0);}
.mc8_c01009{transform:matrix(0.289312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289312,0.000000,0.000000,0.250000,0,0);}
.mbf_c01009{transform:matrix(0.289775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289775,0.000000,0.000000,0.250000,0,0);}
.m2f_c01009{transform:matrix(0.289940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289940,0.000000,0.000000,0.250000,0,0);}
.m3_c01009{transform:matrix(0.290727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290727,0.000000,0.000000,0.250000,0,0);}
.m98_c01009{transform:matrix(0.291326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291326,0.000000,0.000000,0.250000,0,0);}
.m75_c01009{transform:matrix(0.291694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291694,0.000000,0.000000,0.250000,0,0);}
.m17_c01009{transform:matrix(0.291702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291702,0.000000,0.000000,0.250000,0,0);}
.ma9_c01009{transform:matrix(0.291753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291753,0.000000,0.000000,0.250000,0,0);}
.m52_c01009{transform:matrix(0.291795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291795,0.000000,0.000000,0.250000,0,0);}
.m8e_c01009{transform:matrix(0.292023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292023,0.000000,0.000000,0.250000,0,0);}
.m2a_c01009{transform:matrix(0.292612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292612,0.000000,0.000000,0.250000,0,0);}
.m6_c01009{transform:matrix(0.292828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292828,0.000000,0.000000,0.250000,0,0);}
.m1b_c01009{transform:matrix(0.293689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293689,0.000000,0.000000,0.250000,0,0);}
.m99_c01009{transform:matrix(0.293937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293937,0.000000,0.000000,0.250000,0,0);}
.m58_c01009{transform:matrix(0.294460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294460,0.000000,0.000000,0.250000,0,0);}
.maa_c01009{transform:matrix(0.294624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294624,0.000000,0.000000,0.250000,0,0);}
.mb_c01009{transform:matrix(0.295150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295150,0.000000,0.000000,0.250000,0,0);}
.maf_c01009{transform:matrix(0.296267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296267,0.000000,0.000000,0.250000,0,0);}
.md_c01009{transform:matrix(0.296965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296965,0.000000,0.000000,0.250000,0,0);}
.mb8_c01009{transform:matrix(0.297357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297357,0.000000,0.000000,0.250000,0,0);}
.m50_c01009{transform:matrix(0.297993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297993,0.000000,0.000000,0.250000,0,0);}
.m41_c01009{transform:matrix(0.298085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298085,0.000000,0.000000,0.250000,0,0);}
.m94_c01009{transform:matrix(0.298534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298534,0.000000,0.000000,0.250000,0,0);}
.mba_c01009{transform:matrix(0.299039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299039,0.000000,0.000000,0.250000,0,0);}
.m1e_c01009{transform:matrix(0.300484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300484,0.000000,0.000000,0.250000,0,0);}
.m5f_c01009{transform:matrix(0.301407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301407,0.000000,0.000000,0.250000,0,0);}
.me_c01009{transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);}
.m83_c01009{transform:matrix(0.302071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302071,0.000000,0.000000,0.250000,0,0);}
.m64_c01009{transform:matrix(0.303513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303513,0.000000,0.000000,0.250000,0,0);}
.m92_c01009{transform:matrix(0.303836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303836,0.000000,0.000000,0.250000,0,0);}
.m18_c01009{transform:matrix(0.304763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304763,0.000000,0.000000,0.250000,0,0);}
.m68_c01009{transform:matrix(0.305050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305050,0.000000,0.000000,0.250000,0,0);}
.m46_c01009{transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);}
.mb5_c01009{transform:matrix(0.305432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305432,0.000000,0.000000,0.250000,0,0);}
.mbb_c01009{transform:matrix(0.305814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305814,0.000000,0.000000,0.250000,0,0);}
.ma3_c01009{transform:matrix(0.306102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306102,0.000000,0.000000,0.250000,0,0);}
.m7c_c01009{transform:matrix(0.306179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306179,0.000000,0.000000,0.250000,0,0);}
.mc0_c01009{transform:matrix(0.306236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306236,0.000000,0.000000,0.250000,0,0);}
.m34_c01009{transform:matrix(0.306262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306262,0.000000,0.000000,0.250000,0,0);}
.m9f_c01009{transform:matrix(0.306474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306474,0.000000,0.000000,0.250000,0,0);}
.m87_c01009{transform:matrix(0.306742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306742,0.000000,0.000000,0.250000,0,0);}
.m5c_c01009{transform:matrix(0.307160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307160,0.000000,0.000000,0.250000,0,0);}
.mad_c01009{transform:matrix(0.308095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308095,0.000000,0.000000,0.250000,0,0);}
.m6d_c01009{transform:matrix(0.308408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308408,0.000000,0.000000,0.250000,0,0);}
.ma8_c01009{transform:matrix(0.308415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308415,0.000000,0.000000,0.250000,0,0);}
.m4_c01009{transform:matrix(0.308564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308564,0.000000,0.000000,0.250000,0,0);}
.m79_c01009{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m80_c01009{transform:matrix(0.308636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308636,0.000000,0.000000,0.250000,0,0);}
.m6e_c01009{transform:matrix(0.308946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308946,0.000000,0.000000,0.250000,0,0);}
.m3b_c01009{transform:matrix(0.309537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309537,0.000000,0.000000,0.250000,0,0);}
.mb6_c01009{transform:matrix(0.309614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309614,0.000000,0.000000,0.250000,0,0);}
.ma6_c01009{transform:matrix(0.309895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309895,0.000000,0.000000,0.250000,0,0);}
.m4e_c01009{transform:matrix(0.310340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310340,0.000000,0.000000,0.250000,0,0);}
.m73_c01009{transform:matrix(0.310365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310365,0.000000,0.000000,0.250000,0,0);}
.m3a_c01009{transform:matrix(0.310383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310383,0.000000,0.000000,0.250000,0,0);}
.mbe_c01009{transform:matrix(0.311002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311002,0.000000,0.000000,0.250000,0,0);}
.m49_c01009{transform:matrix(0.311211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311211,0.000000,0.000000,0.250000,0,0);}
.m45_c01009{transform:matrix(0.311889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311889,0.000000,0.000000,0.250000,0,0);}
.mb3_c01009{transform:matrix(0.312064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312064,0.000000,0.000000,0.250000,0,0);}
.mb1_c01009{transform:matrix(0.312604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312604,0.000000,0.000000,0.250000,0,0);}
.m8f_c01009{transform:matrix(0.313540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313540,0.000000,0.000000,0.250000,0,0);}
.m4a_c01009{transform:matrix(0.313622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313622,0.000000,0.000000,0.250000,0,0);}
.m3c_c01009{transform:matrix(0.314304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314304,0.000000,0.000000,0.250000,0,0);}
.m67_c01009{transform:matrix(0.315370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315370,0.000000,0.000000,0.250000,0,0);}
.m89_c01009{transform:matrix(0.316144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316144,0.000000,0.000000,0.250000,0,0);}
.m66_c01009{transform:matrix(0.318694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318694,0.000000,0.000000,0.250000,0,0);}
.m27_c01009{transform:matrix(0.318980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318980,0.000000,0.000000,0.250000,0,0);}
.m4b_c01009{transform:matrix(0.319176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319176,0.000000,0.000000,0.250000,0,0);}
.mc2_c01009{transform:matrix(0.321107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321107,0.000000,0.000000,0.250000,0,0);}
.m23_c01009{transform:matrix(0.321679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321679,0.000000,0.000000,0.250000,0,0);}
.m4c_c01009{transform:matrix(0.321787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321787,0.000000,0.000000,0.250000,0,0);}
.mbc_c01009{transform:matrix(0.322386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322386,0.000000,0.000000,0.250000,0,0);}
.m38_c01009{transform:matrix(0.322522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322522,0.000000,0.000000,0.250000,0,0);}
.m2d_c01009{transform:matrix(0.324330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324330,0.000000,0.000000,0.250000,0,0);}
.m9e_c01009{transform:matrix(0.324562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324562,0.000000,0.000000,0.250000,0,0);}
.ma_c01009{transform:matrix(0.325569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325569,0.000000,0.000000,0.250000,0,0);}
.m5d_c01009{transform:matrix(0.326774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326774,0.000000,0.000000,0.250000,0,0);}
.mab_c01009{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.ma5_c01009{transform:matrix(0.327290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327290,0.000000,0.000000,0.250000,0,0);}
.m76_c01009{transform:matrix(0.327730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327730,0.000000,0.000000,0.250000,0,0);}
.mac_c01009{transform:matrix(0.328074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328074,0.000000,0.000000,0.250000,0,0);}
.m59_c01009{transform:matrix(0.328833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328833,0.000000,0.000000,0.250000,0,0);}
.m51_c01009{transform:matrix(0.329003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329003,0.000000,0.000000,0.250000,0,0);}
.m36_c01009{transform:matrix(0.330299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330299,0.000000,0.000000,0.250000,0,0);}
.mc4_c01009{transform:matrix(0.332307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332307,0.000000,0.000000,0.250000,0,0);}
.m1a_c01009{transform:matrix(0.332348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332348,0.000000,0.000000,0.250000,0,0);}
.m3f_c01009{transform:matrix(0.332499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332499,0.000000,0.000000,0.250000,0,0);}
.ma7_c01009{transform:matrix(0.334247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334247,0.000000,0.000000,0.250000,0,0);}
.m21_c01009{transform:matrix(0.335869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335869,0.000000,0.000000,0.250000,0,0);}
.mb7_c01009{transform:matrix(0.335996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335996,0.000000,0.000000,0.250000,0,0);}
.mc_c01009{transform:matrix(0.336297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336297,0.000000,0.000000,0.250000,0,0);}
.m37_c01009{transform:matrix(0.337061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337061,0.000000,0.000000,0.250000,0,0);}
.m31_c01009{transform:matrix(0.337511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337511,0.000000,0.000000,0.250000,0,0);}
.ma1_c01009{transform:matrix(0.338886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338886,0.000000,0.000000,0.250000,0,0);}
.m57_c01009{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m95_c01009{transform:matrix(0.340088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340088,0.000000,0.000000,0.250000,0,0);}
.m9d_c01009{transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);}
.mb9_c01009{transform:matrix(0.342184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342184,0.000000,0.000000,0.250000,0,0);}
.m4d_c01009{transform:matrix(0.349169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349169,0.000000,0.000000,0.250000,0,0);}
.m7f_c01009{transform:matrix(0.353158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353158,0.000000,0.000000,0.250000,0,0);}
.m55_c01009{transform:matrix(0.353653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353653,0.000000,0.000000,0.250000,0,0);}
.m7b_c01009{transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355325,0.000000,0.000000,0.250000,0,0);}
.m28_c01009{transform:matrix(0.359826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359826,0.000000,0.000000,0.250000,0,0);}
.m8c_c01009{transform:matrix(0.361926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361926,0.000000,0.000000,0.250000,0,0);}
.ma4_c01009{transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);}
.m22_c01009{transform:matrix(0.368933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368933,0.000000,0.000000,0.250000,0,0);}
.m11_c01009{transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);}
.m42_c01009{transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);}
.m16_c01009{transform:matrix(0.385437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385437,0.000000,0.000000,0.250000,0,0);}
.m65_c01009{transform:matrix(0.391460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391460,0.000000,0.000000,0.250000,0,0);}
.v0_c01009{vertical-align:0.000000px;}
.ls3_c01009{letter-spacing:-2.744280px;}
.lse_c01009{letter-spacing:-0.948737px;}
.ls0_c01009{letter-spacing:0.000000px;}
.ls8_c01009{letter-spacing:1.654409px;}
.lsb_c01009{letter-spacing:1.960200px;}
.ls10_c01009{letter-spacing:2.783484px;}
.ls7_c01009{letter-spacing:3.246091px;}
.ls11_c01009{letter-spacing:3.293136px;}
.ls5_c01009{letter-spacing:3.564000px;}
.ls12_c01009{letter-spacing:3.623400px;}
.ls6_c01009{letter-spacing:3.667950px;}
.lsc_c01009{letter-spacing:3.801610px;}
.ls2_c01009{letter-spacing:3.920400px;}
.ls4_c01009{letter-spacing:3.979810px;}
.ls1_c01009{letter-spacing:4.316400px;}
.ls9_c01009{letter-spacing:54.172998px;}
.lsf_c01009{letter-spacing:57.024198px;}
.lsd_c01009{letter-spacing:59.875398px;}
.lsa_c01009{letter-spacing:61.300998px;}
.sc__c01009{text-shadow:none;}
.sc0_c01009{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01009{-webkit-text-stroke:0px transparent;}
.sc0_c01009{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01009{word-spacing:-19.899050px;}
.ws1_c01009{word-spacing:0.000000px;}
._0_c01009{width:1.989999px;}
.fc0_c01009{color:transparent;}
.fs0_c01009{font-size:22.176000px;}
.fsd_c01009{font-size:27.720000px;}
.fs12_c01009{font-size:33.660000px;}
.fsc_c01009{font-size:38.808000px;}
.fs7_c01009{font-size:54.172998px;}
.fse_c01009{font-size:57.024198px;}
.fsb_c01009{font-size:59.875398px;}
.fs8_c01009{font-size:61.300998px;}
.fs5_c01009{font-size:64.548000px;}
.fsa_c01009{font-size:66.528000px;}
.fs4_c01009{font-size:71.280000px;}
.fs10_c01009{font-size:72.468000px;}
.fsf_c01009{font-size:74.844000px;}
.fs9_c01009{font-size:76.032198px;}
.fs6_c01009{font-size:77.220000px;}
.fs11_c01009{font-size:77.616198px;}
.fs2_c01009{font-size:78.408000px;}
.fs3_c01009{font-size:79.596198px;}
.fs1_c01009{font-size:86.328000px;}
.y0_c01009{bottom:0.000000px;}
.y22_c01009{bottom:30.557370px;}
.y1_c01009{bottom:76.500000px;}
.y21_c01009{bottom:91.150320px;}
.y20_c01009{bottom:101.842320px;}
.y1f_c01009{bottom:123.226320px;}
.y1e_c01009{bottom:154.584570px;}
.y1d_c01009{bottom:186.665520px;}
.y1c_c01009{bottom:219.097920px;}
.y1b_c01009{bottom:250.817520px;}
.y1a_c01009{bottom:282.180720px;}
.y19_c01009{bottom:314.256720px;}
.y18_c01009{bottom:346.684170px;}
.y17_c01009{bottom:360.232320px;}
.y16_c01009{bottom:368.068170px;}
.y15_c01009{bottom:378.052320px;}
.y14_c01009{bottom:393.733920px;}
.y13_c01009{bottom:410.128320px;}
.y12_c01009{bottom:441.491520px;}
.y11_c01009{bottom:472.498320px;}
.y10_c01009{bottom:503.861520px;}
.yf_c01009{bottom:567.300720px;}
.ye_c01009{bottom:599.733120px;}
.yd_c01009{bottom:631.452720px;}
.yc_c01009{bottom:663.528720px;}
.yb_c01009{bottom:695.599770px;}
.ya_c01009{bottom:727.324320px;}
.y9_c01009{bottom:759.043920px;}
.y8_c01009{bottom:790.758570px;}
.y7_c01009{bottom:822.483120px;}
.y6_c01009{bottom:853.484970px;}
.y5_c01009{bottom:885.209520px;}
.y4_c01009{bottom:917.641920px;}
.y3_c01009{bottom:1053.425370px;}
.y2_c01009{bottom:1097.975370px;}
.h2_c01009{height:23.128875px;}
.hf_c01009{height:28.911094px;}
.h14_c01009{height:33.035449px;}
.h9_c01009{height:36.079217px;}
.h10_c01009{height:37.978116px;}
.hd_c01009{height:39.877015px;}
.he_c01009{height:40.475531px;}
.ha_c01009{height:40.826465px;}
.h7_c01009{height:67.321547px;}
.hc_c01009{height:69.386625px;}
.h6_c01009{height:69.957422px;}
.h12_c01009{height:71.123379px;}
.h11_c01009{height:73.455293px;}
.hb_c01009{height:74.621444px;}
.h8_c01009{height:75.787207px;}
.h13_c01009{height:76.176054px;}
.h4_c01009{height:76.953164px;}
.h5_c01009{height:78.119315px;}
.h3_c01009{height:84.726211px;}
.h1_c01009{height:1110.000000px;}
.h0_c01009{height:1263.000000px;}
.w1_c01009{width:763.500000px;}
.w0_c01009{width:892.500000px;}
.x0_c01009{left:0.000000px;}
.x1_c01009{left:64.500000px;}
.x27_c01009{left:76.488435px;}
.xc_c01009{left:78.017985px;}
.x14_c01009{left:79.795035px;}
.x6f_c01009{left:99.040635px;}
.x64_c01009{left:108.881235px;}
.x1e_c01009{left:111.222585px;}
.x65_c01009{left:119.924685px;}
.xd_c01009{left:121.335435px;}
.x4_c01009{left:132.235335px;}
.x67_c01009{left:133.289685px;}
.x1f_c01009{left:143.155035px;}
.x45_c01009{left:144.338085px;}
.x56_c01009{left:145.377585px;}
.x6a_c01009{left:153.792585px;}
.x20_c01009{left:155.346885px;}
.x4a_c01009{left:165.241935px;}
.x68_c01009{left:166.454685px;}
.x51_c01009{left:176.760585px;}
.x2f_c01009{left:178.196085px;}
.x6d_c01009{left:187.422885px;}
.xe_c01009{left:188.858385px;}
.x71_c01009{left:198.085185px;}
.x28_c01009{left:199.609785px;}
.x4e_c01009{left:209.296935px;}
.x5_c01009{left:210.390885px;}
.x21_c01009{left:221.315535px;}
.x5e_c01009{left:231.388785px;}
.x29_c01009{left:233.081685px;}
.x30_c01009{left:242.536185px;}
.x70_c01009{left:243.739035px;}
.x15_c01009{left:254.426085px;}
.x52_c01009{left:264.637935px;}
.x59_c01009{left:266.603085px;}
.x2a_c01009{left:277.527735px;}
.x41_c01009{left:279.017685px;}
.x16_c01009{left:288.932535px;}
.x53_c01009{left:298.639485px;}
.x6_c01009{left:300.045285px;}
.x4b_c01009{left:310.296735px;}
.x5a_c01009{left:320.221485px;}
.x22_c01009{left:322.161885px;}
.x5f_c01009{left:331.636185px;}
.x2b_c01009{left:333.962685px;}
.xf_c01009{left:344.263635px;}
.x31_c01009{left:354.708135px;}
.x2c_c01009{left:355.945635px;}
.x3f_c01009{left:357.306885px;}
.x54_c01009{left:366.271335px;}
.x38_c01009{left:367.444485px;}
.x69_c01009{left:375.151635px;}
.x17_c01009{left:376.522785px;}
.x4f_c01009{left:379.641285px;}
.x32_c01009{left:387.586035px;}
.x7_c01009{left:389.085885px;}
.x39_c01009{left:399.124485px;}
.x5b_c01009{left:400.218435px;}
.x33_c01009{left:410.207535px;}
.x6b_c01009{left:411.539085px;}
.x8_c01009{left:420.364935px;}
.x10_c01009{left:421.627185px;}
.x60_c01009{left:431.106435px;}
.x3a_c01009{left:432.982485px;}
.x6c_c01009{left:443.337885px;}
.x47_c01009{left:444.783285px;}
.x55_c01009{left:453.515085px;}
.x50_c01009{left:464.608035px;}
.x18_c01009{left:466.553385px;}
.x11_c01009{left:477.948285px;}
.x4c_c01009{left:488.556135px;}
.x2_c01009{left:498.030435px;}
.x19_c01009{left:499.609485px;}
.x23_c01009{left:500.658885px;}
.x6e_c01009{left:510.004485px;}
.x4d_c01009{left:520.528185px;}
.x42_c01009{left:522.097335px;}
.x12_c01009{left:531.210285px;}
.x24_c01009{left:533.066535px;}
.x34_c01009{left:541.946835px;}
.x2d_c01009{left:543.174435px;}
.x1a_c01009{left:553.673385px;}
.x9_c01009{left:555.529635px;}
.x46_c01009{left:564.850485px;}
.x3b_c01009{left:566.295885px;}
.x66_c01009{left:575.423685px;}
.x48_c01009{left:586.100835px;}
.xa_c01009{left:587.952135px;}
.x35_c01009{left:589.239135px;}
.x3c_c01009{left:598.000635px;}
.x61_c01009{left:599.337135px;}
.x13_c01009{left:608.237235px;}
.x25_c01009{left:610.014285px;}
.x2e_c01009{left:620.879535px;}
.x3d_c01009{left:630.294435px;}
.x1b_c01009{left:631.561635px;}
.x57_c01009{left:641.699235px;}
.xb_c01009{left:642.966435px;}
.x26_c01009{left:652.762485px;}
.x36_c01009{left:654.504885px;}
.x1c_c01009{left:663.390135px;}
.x43_c01009{left:664.701885px;}
.x3_c01009{left:676.047285px;}
.x62_c01009{left:686.674935px;}
.x49_c01009{left:694.787985px;}
.x3e_c01009{left:696.579885px;}
.x44_c01009{left:698.094585px;}
.x40_c01009{left:699.114285px;}
.x58_c01009{left:700.643835px;}
.x5c_c01009{left:703.603935px;}
.x5d_c01009{left:705.074085px;}
.x72_c01009{left:707.747085px;}
.x1d_c01009{left:709.415235px;}
.x37_c01009{left:720.305235px;}
.x63_c01009{left:742.367385px;}
@media print{
.v0_c01009{vertical-align:0.000000pt;}
.ls3_c01009{letter-spacing:-2.439360pt;}
.lse_c01009{letter-spacing:-0.843322pt;}
.ls0_c01009{letter-spacing:0.000000pt;}
.ls8_c01009{letter-spacing:1.470586pt;}
.lsb_c01009{letter-spacing:1.742400pt;}
.ls10_c01009{letter-spacing:2.474208pt;}
.ls7_c01009{letter-spacing:2.885414pt;}
.ls11_c01009{letter-spacing:2.927232pt;}
.ls5_c01009{letter-spacing:3.168000pt;}
.ls12_c01009{letter-spacing:3.220800pt;}
.ls6_c01009{letter-spacing:3.260400pt;}
.lsc_c01009{letter-spacing:3.379209pt;}
.ls2_c01009{letter-spacing:3.484800pt;}
.ls4_c01009{letter-spacing:3.537609pt;}
.ls1_c01009{letter-spacing:3.836800pt;}
.ls9_c01009{letter-spacing:48.153776pt;}
.lsf_c01009{letter-spacing:50.688176pt;}
.lsd_c01009{letter-spacing:53.222576pt;}
.lsa_c01009{letter-spacing:54.489776pt;}
.ws0_c01009{word-spacing:-17.688044pt;}
.ws1_c01009{word-spacing:0.000000pt;}
._0_c01009{width:1.768888pt;}
.fs0_c01009{font-size:19.712000pt;}
.fsd_c01009{font-size:24.640000pt;}
.fs12_c01009{font-size:29.920000pt;}
.fsc_c01009{font-size:34.496000pt;}
.fs7_c01009{font-size:48.153776pt;}
.fse_c01009{font-size:50.688176pt;}
.fsb_c01009{font-size:53.222576pt;}
.fs8_c01009{font-size:54.489776pt;}
.fs5_c01009{font-size:57.376000pt;}
.fsa_c01009{font-size:59.136000pt;}
.fs4_c01009{font-size:63.360000pt;}
.fs10_c01009{font-size:64.416000pt;}
.fsf_c01009{font-size:66.528000pt;}
.fs9_c01009{font-size:67.584176pt;}
.fs6_c01009{font-size:68.640000pt;}
.fs11_c01009{font-size:68.992176pt;}
.fs2_c01009{font-size:69.696000pt;}
.fs3_c01009{font-size:70.752176pt;}
.fs1_c01009{font-size:76.736000pt;}
.y0_c01009{bottom:0.000000pt;}
.y22_c01009{bottom:27.162107pt;}
.y1_c01009{bottom:68.000000pt;}
.y21_c01009{bottom:81.022507pt;}
.y20_c01009{bottom:90.526507pt;}
.y1f_c01009{bottom:109.534507pt;}
.y1e_c01009{bottom:137.408507pt;}
.y1d_c01009{bottom:165.924907pt;}
.y1c_c01009{bottom:194.753707pt;}
.y1b_c01009{bottom:222.948907pt;}
.y1a_c01009{bottom:250.827307pt;}
.y19_c01009{bottom:279.339307pt;}
.y18_c01009{bottom:308.163707pt;}
.y17_c01009{bottom:320.206507pt;}
.y16_c01009{bottom:327.171707pt;}
.y15_c01009{bottom:336.046507pt;}
.y14_c01009{bottom:349.985707pt;}
.y13_c01009{bottom:364.558507pt;}
.y12_c01009{bottom:392.436907pt;}
.y11_c01009{bottom:419.998507pt;}
.y10_c01009{bottom:447.876907pt;}
.yf_c01009{bottom:504.267307pt;}
.ye_c01009{bottom:533.096107pt;}
.yd_c01009{bottom:561.291307pt;}
.yc_c01009{bottom:589.803307pt;}
.yb_c01009{bottom:618.310907pt;}
.ya_c01009{bottom:646.510507pt;}
.y9_c01009{bottom:674.705707pt;}
.y8_c01009{bottom:702.896507pt;}
.y7_c01009{bottom:731.096107pt;}
.y6_c01009{bottom:758.653307pt;}
.y5_c01009{bottom:786.852907pt;}
.y4_c01009{bottom:815.681707pt;}
.y3_c01009{bottom:936.378107pt;}
.y2_c01009{bottom:975.978107pt;}
.h2_c01009{height:20.559000pt;}
.hf_c01009{height:25.698750pt;}
.h14_c01009{height:29.364844pt;}
.h9_c01009{height:32.070415pt;}
.h10_c01009{height:33.758325pt;}
.hd_c01009{height:35.446236pt;}
.he_c01009{height:35.978250pt;}
.ha_c01009{height:36.290191pt;}
.h7_c01009{height:59.841375pt;}
.hc_c01009{height:61.677000pt;}
.h6_c01009{height:62.184375pt;}
.h12_c01009{height:63.220781pt;}
.h11_c01009{height:65.293594pt;}
.hb_c01009{height:66.330173pt;}
.h8_c01009{height:67.366406pt;}
.h13_c01009{height:67.712048pt;}
.h4_c01009{height:68.402813pt;}
.h5_c01009{height:69.439391pt;}
.h3_c01009{height:75.312188pt;}
.h1_c01009{height:986.666667pt;}
.h0_c01009{height:1122.666667pt;}
.w1_c01009{width:678.666667pt;}
.w0_c01009{width:793.333333pt;}
.x0_c01009{left:0.000000pt;}
.x1_c01009{left:57.333333pt;}
.x27_c01009{left:67.989720pt;}
.xc_c01009{left:69.349320pt;}
.x14_c01009{left:70.928920pt;}
.x6f_c01009{left:88.036120pt;}
.x64_c01009{left:96.783320pt;}
.x1e_c01009{left:98.864520pt;}
.x65_c01009{left:106.599720pt;}
.xd_c01009{left:107.853720pt;}
.x4_c01009{left:117.542520pt;}
.x67_c01009{left:118.479720pt;}
.x1f_c01009{left:127.248920pt;}
.x45_c01009{left:128.300520pt;}
.x56_c01009{left:129.224520pt;}
.x6a_c01009{left:136.704520pt;}
.x20_c01009{left:138.086120pt;}
.x4a_c01009{left:146.881720pt;}
.x68_c01009{left:147.959720pt;}
.x51_c01009{left:157.120520pt;}
.x2f_c01009{left:158.396520pt;}
.x6d_c01009{left:166.598120pt;}
.xe_c01009{left:167.874120pt;}
.x71_c01009{left:176.075720pt;}
.x28_c01009{left:177.430920pt;}
.x4e_c01009{left:186.041720pt;}
.x5_c01009{left:187.014120pt;}
.x21_c01009{left:196.724920pt;}
.x5e_c01009{left:205.678920pt;}
.x29_c01009{left:207.183720pt;}
.x30_c01009{left:215.587720pt;}
.x70_c01009{left:216.656920pt;}
.x15_c01009{left:226.156520pt;}
.x52_c01009{left:235.233720pt;}
.x59_c01009{left:236.980520pt;}
.x2a_c01009{left:246.691320pt;}
.x41_c01009{left:248.015720pt;}
.x16_c01009{left:256.828920pt;}
.x53_c01009{left:265.457320pt;}
.x6_c01009{left:266.706920pt;}
.x4b_c01009{left:275.819320pt;}
.x5a_c01009{left:284.641320pt;}
.x22_c01009{left:286.366120pt;}
.x5f_c01009{left:294.787720pt;}
.x2b_c01009{left:296.855720pt;}
.xf_c01009{left:306.012120pt;}
.x31_c01009{left:315.296120pt;}
.x2c_c01009{left:316.396120pt;}
.x3f_c01009{left:317.606120pt;}
.x54_c01009{left:325.574520pt;}
.x38_c01009{left:326.617320pt;}
.x69_c01009{left:333.468120pt;}
.x17_c01009{left:334.686920pt;}
.x4f_c01009{left:337.458920pt;}
.x32_c01009{left:344.520920pt;}
.x7_c01009{left:345.854120pt;}
.x39_c01009{left:354.777320pt;}
.x5b_c01009{left:355.749720pt;}
.x33_c01009{left:364.628920pt;}
.x6b_c01009{left:365.812520pt;}
.x8_c01009{left:373.657720pt;}
.x10_c01009{left:374.779720pt;}
.x60_c01009{left:383.205720pt;}
.x3a_c01009{left:384.873320pt;}
.x6c_c01009{left:394.078120pt;}
.x47_c01009{left:395.362920pt;}
.x55_c01009{left:403.124520pt;}
.x50_c01009{left:412.984920pt;}
.x18_c01009{left:414.714120pt;}
.x11_c01009{left:424.842920pt;}
.x4c_c01009{left:434.272120pt;}
.x2_c01009{left:442.693720pt;}
.x19_c01009{left:444.097320pt;}
.x23_c01009{left:445.030120pt;}
.x6e_c01009{left:453.337320pt;}
.x4d_c01009{left:462.691720pt;}
.x42_c01009{left:464.086520pt;}
.x12_c01009{left:472.186920pt;}
.x24_c01009{left:473.836920pt;}
.x34_c01009{left:481.730520pt;}
.x2d_c01009{left:482.821720pt;}
.x1a_c01009{left:492.154120pt;}
.x9_c01009{left:493.804120pt;}
.x46_c01009{left:502.089320pt;}
.x3b_c01009{left:503.374120pt;}
.x66_c01009{left:511.487720pt;}
.x48_c01009{left:520.978520pt;}
.xa_c01009{left:522.624120pt;}
.x35_c01009{left:523.768120pt;}
.x3c_c01009{left:531.556120pt;}
.x61_c01009{left:532.744120pt;}
.x13_c01009{left:540.655320pt;}
.x25_c01009{left:542.234920pt;}
.x2e_c01009{left:551.892920pt;}
.x3d_c01009{left:560.261720pt;}
.x1b_c01009{left:561.388120pt;}
.x57_c01009{left:570.399320pt;}
.xb_c01009{left:571.525720pt;}
.x26_c01009{left:580.233320pt;}
.x36_c01009{left:581.782120pt;}
.x1c_c01009{left:589.680120pt;}
.x43_c01009{left:590.846120pt;}
.x3_c01009{left:600.930920pt;}
.x62_c01009{left:610.377720pt;}
.x49_c01009{left:617.589320pt;}
.x3e_c01009{left:619.182120pt;}
.x44_c01009{left:620.528520pt;}
.x40_c01009{left:621.434920pt;}
.x58_c01009{left:622.794520pt;}
.x5c_c01009{left:625.425720pt;}
.x5d_c01009{left:626.732520pt;}
.x72_c01009{left:629.108520pt;}
.x1d_c01009{left:630.591320pt;}
.x37_c01009{left:640.271320pt;}
.x63_c01009{left:659.882120pt;}
}





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

.ir_c01010:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01010{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01010;src:url('chunks/assets/font_8cf54f8b5946a9d1d46c25fe.woff2')format("woff");}.ff1_c01010{font-family:ff1_c01010;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01010;src:url('chunks/assets/font_1c841f44f4217f8590367790.woff2')format("woff");}.ff2_c01010{font-family:ff2_c01010;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01010;src:url('chunks/assets/font_1a41d23460b9bf9aceb7a49d.woff2')format("woff");}.ff3_c01010{font-family:ff3_c01010;line-height:0.666000;font-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_c01010{transform:matrix(0.094594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094594,0.000000,0.000000,0.250000,0,0);}
.m12_c01010{transform:matrix(0.162947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162947,0.000000,0.000000,0.250000,0,0);}
.m76_c01010{transform:matrix(0.176369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176369,0.000000,0.000000,0.250000,0,0);}
.mf_c01010{transform:matrix(0.182822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182822,0.000000,0.000000,0.250000,0,0);}
.m1e_c01010{transform:matrix(0.184122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184122,0.000000,0.000000,0.250000,0,0);}
.mb7_c01010{transform:matrix(0.187499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187499,0.000000,0.000000,0.250000,0,0);}
.m84_c01010{transform:matrix(0.203668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203668,0.000000,0.000000,0.250000,0,0);}
.m7f_c01010{transform:matrix(0.210304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210304,0.000000,0.000000,0.250000,0,0);}
.m1c_c01010{transform:matrix(0.231322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231322,0.000000,0.000000,0.250000,0,0);}
.m4d_c01010{transform:matrix(0.240291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240291,0.000000,0.000000,0.250000,0,0);}
.m3a_c01010{transform:matrix(0.241888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241888,0.000000,0.000000,0.250000,0,0);}
.m11_c01010{transform:matrix(0.246704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246704,0.000000,0.000000,0.250000,0,0);}
.m0_c01010{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m60_c01010{transform:matrix(0.251723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251723,0.000000,0.000000,0.250000,0,0);}
.m17_c01010{transform:matrix(0.252371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252371,0.000000,0.000000,0.250000,0,0);}
.m43_c01010{transform:matrix(0.254778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254778,0.000000,0.000000,0.250000,0,0);}
.mc0_c01010{transform:matrix(0.255248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255248,0.000000,0.000000,0.250000,0,0);}
.m23_c01010{transform:matrix(0.255459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255459,0.000000,0.000000,0.250000,0,0);}
.m3b_c01010{transform:matrix(0.255520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255520,0.000000,0.000000,0.250000,0,0);}
.m2_c01010{transform:matrix(0.257684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257684,0.000000,0.000000,0.250000,0,0);}
.m29_c01010{transform:matrix(0.257706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257706,0.000000,0.000000,0.250000,0,0);}
.m8b_c01010{transform:matrix(0.258084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258084,0.000000,0.000000,0.250000,0,0);}
.m52_c01010{transform:matrix(0.259640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259640,0.000000,0.000000,0.250000,0,0);}
.ma_c01010{transform:matrix(0.260021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260021,0.000000,0.000000,0.250000,0,0);}
.m1_c01010{transform:matrix(0.260048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260048,0.000000,0.000000,0.250000,0,0);}
.m1b_c01010{transform:matrix(0.260635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260635,0.000000,0.000000,0.250000,0,0);}
.m34_c01010{transform:matrix(0.262015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262015,0.000000,0.000000,0.250000,0,0);}
.m6c_c01010{transform:matrix(0.262894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262894,0.000000,0.000000,0.250000,0,0);}
.m51_c01010{transform:matrix(0.262973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262973,0.000000,0.000000,0.250000,0,0);}
.m45_c01010{transform:matrix(0.263022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263022,0.000000,0.000000,0.250000,0,0);}
.mb3_c01010{transform:matrix(0.263564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263564,0.000000,0.000000,0.250000,0,0);}
.m70_c01010{transform:matrix(0.264583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264583,0.000000,0.000000,0.250000,0,0);}
.m68_c01010{transform:matrix(0.264834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264834,0.000000,0.000000,0.250000,0,0);}
.m83_c01010{transform:matrix(0.265269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265269,0.000000,0.000000,0.250000,0,0);}
.m15_c01010{transform:matrix(0.266343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266343,0.000000,0.000000,0.250000,0,0);}
.m5f_c01010{transform:matrix(0.266744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266744,0.000000,0.000000,0.250000,0,0);}
.m7e_c01010{transform:matrix(0.267496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267496,0.000000,0.000000,0.250000,0,0);}
.m50_c01010{transform:matrix(0.268023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268023,0.000000,0.000000,0.250000,0,0);}
.m2c_c01010{transform:matrix(0.268217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268217,0.000000,0.000000,0.250000,0,0);}
.ma8_c01010{transform:matrix(0.268311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268311,0.000000,0.000000,0.250000,0,0);}
.m5a_c01010{transform:matrix(0.268883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268883,0.000000,0.000000,0.250000,0,0);}
.m54_c01010{transform:matrix(0.269481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269481,0.000000,0.000000,0.250000,0,0);}
.m9_c01010{transform:matrix(0.269711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269711,0.000000,0.000000,0.250000,0,0);}
.m2e_c01010{transform:matrix(0.270154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270154,0.000000,0.000000,0.250000,0,0);}
.m2f_c01010{transform:matrix(0.270678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270678,0.000000,0.000000,0.250000,0,0);}
.m77_c01010{transform:matrix(0.271270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271270,0.000000,0.000000,0.250000,0,0);}
.m66_c01010{transform:matrix(0.272820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272820,0.000000,0.000000,0.250000,0,0);}
.mb0_c01010{transform:matrix(0.272966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272966,0.000000,0.000000,0.250000,0,0);}
.m85_c01010{transform:matrix(0.273082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273082,0.000000,0.000000,0.250000,0,0);}
.m14_c01010{transform:matrix(0.273758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273758,0.000000,0.000000,0.250000,0,0);}
.m6b_c01010{transform:matrix(0.274080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274080,0.000000,0.000000,0.250000,0,0);}
.ma5_c01010{transform:matrix(0.274597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274597,0.000000,0.000000,0.250000,0,0);}
.m22_c01010{transform:matrix(0.274860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274860,0.000000,0.000000,0.250000,0,0);}
.m7a_c01010{transform:matrix(0.275217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275217,0.000000,0.000000,0.250000,0,0);}
.m8_c01010{transform:matrix(0.275489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275489,0.000000,0.000000,0.250000,0,0);}
.m4b_c01010{transform:matrix(0.276596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276596,0.000000,0.000000,0.250000,0,0);}
.m9e_c01010{transform:matrix(0.276717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276717,0.000000,0.000000,0.250000,0,0);}
.m8a_c01010{transform:matrix(0.276730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276730,0.000000,0.000000,0.250000,0,0);}
.m3_c01010{transform:matrix(0.276837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276837,0.000000,0.000000,0.250000,0,0);}
.m88_c01010{transform:matrix(0.277282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277282,0.000000,0.000000,0.250000,0,0);}
.m44_c01010{transform:matrix(0.277394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277394,0.000000,0.000000,0.250000,0,0);}
.m2a_c01010{transform:matrix(0.277684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277684,0.000000,0.000000,0.250000,0,0);}
.ma1_c01010{transform:matrix(0.278268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278268,0.000000,0.000000,0.250000,0,0);}
.m1d_c01010{transform:matrix(0.279011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279011,0.000000,0.000000,0.250000,0,0);}
.m4f_c01010{transform:matrix(0.279269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279269,0.000000,0.000000,0.250000,0,0);}
.m3f_c01010{transform:matrix(0.279506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279506,0.000000,0.000000,0.250000,0,0);}
.m19_c01010{transform:matrix(0.279871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279871,0.000000,0.000000,0.250000,0,0);}
.m82_c01010{transform:matrix(0.279989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279989,0.000000,0.000000,0.250000,0,0);}
.m9c_c01010{transform:matrix(0.280408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280408,0.000000,0.000000,0.250000,0,0);}
.m41_c01010{transform:matrix(0.280550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280550,0.000000,0.000000,0.250000,0,0);}
.ma3_c01010{transform:matrix(0.280568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280568,0.000000,0.000000,0.250000,0,0);}
.m92_c01010{transform:matrix(0.280663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280663,0.000000,0.000000,0.250000,0,0);}
.m74_c01010{transform:matrix(0.280840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280840,0.000000,0.000000,0.250000,0,0);}
.m40_c01010{transform:matrix(0.281119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281119,0.000000,0.000000,0.250000,0,0);}
.m86_c01010{transform:matrix(0.281142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281142,0.000000,0.000000,0.250000,0,0);}
.m33_c01010{transform:matrix(0.281212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281212,0.000000,0.000000,0.250000,0,0);}
.m7_c01010{transform:matrix(0.282295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282295,0.000000,0.000000,0.250000,0,0);}
.m89_c01010{transform:matrix(0.282511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282511,0.000000,0.000000,0.250000,0,0);}
.mb4_c01010{transform:matrix(0.282923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282923,0.000000,0.000000,0.250000,0,0);}
.m16_c01010{transform:matrix(0.283520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283520,0.000000,0.000000,0.250000,0,0);}
.m6f_c01010{transform:matrix(0.283873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283873,0.000000,0.000000,0.250000,0,0);}
.m78_c01010{transform:matrix(0.284536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284536,0.000000,0.000000,0.250000,0,0);}
.m26_c01010{transform:matrix(0.285205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285205,0.000000,0.000000,0.250000,0,0);}
.m7c_c01010{transform:matrix(0.285422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285422,0.000000,0.000000,0.250000,0,0);}
.m31_c01010{transform:matrix(0.286257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286257,0.000000,0.000000,0.250000,0,0);}
.m62_c01010{transform:matrix(0.286325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286325,0.000000,0.000000,0.250000,0,0);}
.ma6_c01010{transform:matrix(0.287006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287006,0.000000,0.000000,0.250000,0,0);}
.m73_c01010{transform:matrix(0.287259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287259,0.000000,0.000000,0.250000,0,0);}
.m1a_c01010{transform:matrix(0.287497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287497,0.000000,0.000000,0.250000,0,0);}
.m37_c01010{transform:matrix(0.288163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288163,0.000000,0.000000,0.250000,0,0);}
.m39_c01010{transform:matrix(0.288471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288471,0.000000,0.000000,0.250000,0,0);}
.m20_c01010{transform:matrix(0.288723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288723,0.000000,0.000000,0.250000,0,0);}
.m3d_c01010{transform:matrix(0.288849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288849,0.000000,0.000000,0.250000,0,0);}
.m35_c01010{transform:matrix(0.289247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289247,0.000000,0.000000,0.250000,0,0);}
.m93_c01010{transform:matrix(0.289386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289386,0.000000,0.000000,0.250000,0,0);}
.m57_c01010{transform:matrix(0.289637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289637,0.000000,0.000000,0.250000,0,0);}
.m98_c01010{transform:matrix(0.289692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289692,0.000000,0.000000,0.250000,0,0);}
.ma0_c01010{transform:matrix(0.290006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290006,0.000000,0.000000,0.250000,0,0);}
.maf_c01010{transform:matrix(0.290224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290224,0.000000,0.000000,0.250000,0,0);}
.m81_c01010{transform:matrix(0.290365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290365,0.000000,0.000000,0.250000,0,0);}
.m8f_c01010{transform:matrix(0.290887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290887,0.000000,0.000000,0.250000,0,0);}
.m69_c01010{transform:matrix(0.290974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290974,0.000000,0.000000,0.250000,0,0);}
.m4_c01010{transform:matrix(0.291531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291531,0.000000,0.000000,0.250000,0,0);}
.mae_c01010{transform:matrix(0.292307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292307,0.000000,0.000000,0.250000,0,0);}
.m13_c01010{transform:matrix(0.292379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292379,0.000000,0.000000,0.250000,0,0);}
.m21_c01010{transform:matrix(0.293278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293278,0.000000,0.000000,0.250000,0,0);}
.m8d_c01010{transform:matrix(0.293401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293401,0.000000,0.000000,0.250000,0,0);}
.mb6_c01010{transform:matrix(0.293721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293721,0.000000,0.000000,0.250000,0,0);}
.m87_c01010{transform:matrix(0.294163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294163,0.000000,0.000000,0.250000,0,0);}
.mc_c01010{transform:matrix(0.294959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294959,0.000000,0.000000,0.250000,0,0);}
.m4e_c01010{transform:matrix(0.294986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294986,0.000000,0.000000,0.250000,0,0);}
.m72_c01010{transform:matrix(0.295038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295038,0.000000,0.000000,0.250000,0,0);}
.mba_c01010{transform:matrix(0.295171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295171,0.000000,0.000000,0.250000,0,0);}
.m9d_c01010{transform:matrix(0.295539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295539,0.000000,0.000000,0.250000,0,0);}
.m9f_c01010{transform:matrix(0.295937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295937,0.000000,0.000000,0.250000,0,0);}
.mbe_c01010{transform:matrix(0.296610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296610,0.000000,0.000000,0.250000,0,0);}
.m75_c01010{transform:matrix(0.296720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296720,0.000000,0.000000,0.250000,0,0);}
.mb5_c01010{transform:matrix(0.297675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297675,0.000000,0.000000,0.250000,0,0);}
.mb2_c01010{transform:matrix(0.298387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298387,0.000000,0.000000,0.250000,0,0);}
.mbd_c01010{transform:matrix(0.298487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298487,0.000000,0.000000,0.250000,0,0);}
.m6_c01010{transform:matrix(0.299253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299253,0.000000,0.000000,0.250000,0,0);}
.m63_c01010{transform:matrix(0.299630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299630,0.000000,0.000000,0.250000,0,0);}
.ma4_c01010{transform:matrix(0.299655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299655,0.000000,0.000000,0.250000,0,0);}
.m25_c01010{transform:matrix(0.299927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299927,0.000000,0.000000,0.250000,0,0);}
.m47_c01010{transform:matrix(0.300078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300078,0.000000,0.000000,0.250000,0,0);}
.mb8_c01010{transform:matrix(0.300156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300156,0.000000,0.000000,0.250000,0,0);}
.m61_c01010{transform:matrix(0.300430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300430,0.000000,0.000000,0.250000,0,0);}
.m5_c01010{transform:matrix(0.300494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300494,0.000000,0.000000,0.250000,0,0);}
.m3e_c01010{transform:matrix(0.300758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300758,0.000000,0.000000,0.250000,0,0);}
.m53_c01010{transform:matrix(0.301108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301108,0.000000,0.000000,0.250000,0,0);}
.m6a_c01010{transform:matrix(0.302099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302099,0.000000,0.000000,0.250000,0,0);}
.m71_c01010{transform:matrix(0.302345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302345,0.000000,0.000000,0.250000,0,0);}
.mbb_c01010{transform:matrix(0.303020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303020,0.000000,0.000000,0.250000,0,0);}
.mbc_c01010{transform:matrix(0.303486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303486,0.000000,0.000000,0.250000,0,0);}
.m79_c01010{transform:matrix(0.304544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304544,0.000000,0.000000,0.250000,0,0);}
.md_c01010{transform:matrix(0.304731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304731,0.000000,0.000000,0.250000,0,0);}
.ma9_c01010{transform:matrix(0.304822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304822,0.000000,0.000000,0.250000,0,0);}
.mac_c01010{transform:matrix(0.304852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304852,0.000000,0.000000,0.250000,0,0);}
.me_c01010{transform:matrix(0.305206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305206,0.000000,0.000000,0.250000,0,0);}
.m2b_c01010{transform:matrix(0.305859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305859,0.000000,0.000000,0.250000,0,0);}
.m90_c01010{transform:matrix(0.306334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306334,0.000000,0.000000,0.250000,0,0);}
.m6e_c01010{transform:matrix(0.307554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307554,0.000000,0.000000,0.250000,0,0);}
.m48_c01010{transform:matrix(0.307574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307574,0.000000,0.000000,0.250000,0,0);}
.m65_c01010{transform:matrix(0.307761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307761,0.000000,0.000000,0.250000,0,0);}
.m32_c01010{transform:matrix(0.308155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308155,0.000000,0.000000,0.250000,0,0);}
.m91_c01010{transform:matrix(0.308362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308362,0.000000,0.000000,0.250000,0,0);}
.m2d_c01010{transform:matrix(0.309572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309572,0.000000,0.000000,0.250000,0,0);}
.maa_c01010{transform:matrix(0.310408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310408,0.000000,0.000000,0.250000,0,0);}
.m46_c01010{transform:matrix(0.311032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311032,0.000000,0.000000,0.250000,0,0);}
.m7b_c01010{transform:matrix(0.311179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311179,0.000000,0.000000,0.250000,0,0);}
.m38_c01010{transform:matrix(0.311230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311230,0.000000,0.000000,0.250000,0,0);}
.m7d_c01010{transform:matrix(0.312248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312248,0.000000,0.000000,0.250000,0,0);}
.m6d_c01010{transform:matrix(0.312934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312934,0.000000,0.000000,0.250000,0,0);}
.m1f_c01010{transform:matrix(0.313166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313166,0.000000,0.000000,0.250000,0,0);}
.m97_c01010{transform:matrix(0.313984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313984,0.000000,0.000000,0.250000,0,0);}
.mbf_c01010{transform:matrix(0.314339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314339,0.000000,0.000000,0.250000,0,0);}
.m49_c01010{transform:matrix(0.314862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314862,0.000000,0.000000,0.250000,0,0);}
.m67_c01010{transform:matrix(0.316243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316243,0.000000,0.000000,0.250000,0,0);}
.m4c_c01010{transform:matrix(0.318782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318782,0.000000,0.000000,0.250000,0,0);}
.m5d_c01010{transform:matrix(0.319144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319144,0.000000,0.000000,0.250000,0,0);}
.m3c_c01010{transform:matrix(0.319466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319466,0.000000,0.000000,0.250000,0,0);}
.m94_c01010{transform:matrix(0.319468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319468,0.000000,0.000000,0.250000,0,0);}
.m4a_c01010{transform:matrix(0.319473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319473,0.000000,0.000000,0.250000,0,0);}
.m8c_c01010{transform:matrix(0.320024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320024,0.000000,0.000000,0.250000,0,0);}
.mad_c01010{transform:matrix(0.320199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320199,0.000000,0.000000,0.250000,0,0);}
.m36_c01010{transform:matrix(0.321151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321151,0.000000,0.000000,0.250000,0,0);}
.m64_c01010{transform:matrix(0.322002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322002,0.000000,0.000000,0.250000,0,0);}
.m24_c01010{transform:matrix(0.324479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324479,0.000000,0.000000,0.250000,0,0);}
.m55_c01010{transform:matrix(0.326095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326095,0.000000,0.000000,0.250000,0,0);}
.m42_c01010{transform:matrix(0.326255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326255,0.000000,0.000000,0.250000,0,0);}
.m18_c01010{transform:matrix(0.326399,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326399,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326399,0.000000,0.000000,0.250000,0,0);}
.ma7_c01010{transform:matrix(0.329069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329069,0.000000,0.000000,0.250000,0,0);}
.m5b_c01010{transform:matrix(0.330873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330873,0.000000,0.000000,0.250000,0,0);}
.mb9_c01010{transform:matrix(0.332137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332137,0.000000,0.000000,0.250000,0,0);}
.m5c_c01010{transform:matrix(0.334166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334166,0.000000,0.000000,0.250000,0,0);}
.m9b_c01010{transform:matrix(0.334526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334526,0.000000,0.000000,0.250000,0,0);}
.m96_c01010{transform:matrix(0.335052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335052,0.000000,0.000000,0.250000,0,0);}
.m5e_c01010{transform:matrix(0.337918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337918,0.000000,0.000000,0.250000,0,0);}
.m95_c01010{transform:matrix(0.340663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340663,0.000000,0.000000,0.250000,0,0);}
.m27_c01010{transform:matrix(0.340736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340736,0.000000,0.000000,0.250000,0,0);}
.mb1_c01010{transform:matrix(0.342959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342959,0.000000,0.000000,0.250000,0,0);}
.m8e_c01010{transform:matrix(0.343605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343605,0.000000,0.000000,0.250000,0,0);}
.ma2_c01010{transform:matrix(0.344416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344416,0.000000,0.000000,0.250000,0,0);}
.m58_c01010{transform:matrix(0.345594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345594,0.000000,0.000000,0.250000,0,0);}
.m99_c01010{transform:matrix(0.347018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347018,0.000000,0.000000,0.250000,0,0);}
.m28_c01010{transform:matrix(0.349647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349647,0.000000,0.000000,0.250000,0,0);}
.mab_c01010{transform:matrix(0.350915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350915,0.000000,0.000000,0.250000,0,0);}
.m9a_c01010{transform:matrix(0.351046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351046,0.000000,0.000000,0.250000,0,0);}
.m10_c01010{transform:matrix(0.351190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351190,0.000000,0.000000,0.250000,0,0);}
.m59_c01010{transform:matrix(0.359542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359542,0.000000,0.000000,0.250000,0,0);}
.mb_c01010{transform:matrix(0.368736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368736,0.000000,0.000000,0.250000,0,0);}
.m30_c01010{transform:matrix(0.374684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374684,0.000000,0.000000,0.250000,0,0);}
.m56_c01010{transform:matrix(0.380631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380631,0.000000,0.000000,0.250000,0,0);}
.v0_c01010{vertical-align:0.000000px;}
.ls5_c01010{letter-spacing:-2.778930px;}
.lsf_c01010{letter-spacing:-1.503817px;}
.ls15_c01010{letter-spacing:-1.198910px;}
.ls1_c01010{letter-spacing:0.000000px;}
.lsc_c01010{letter-spacing:0.468448px;}
.ls0_c01010{letter-spacing:0.605406px;}
.lsd_c01010{letter-spacing:1.341826px;}
.ls12_c01010{letter-spacing:1.730876px;}
.ls4_c01010{letter-spacing:1.898127px;}
.lse_c01010{letter-spacing:2.437519px;}
.ls11_c01010{letter-spacing:3.025064px;}
.lsb_c01010{letter-spacing:3.415500px;}
.ls7_c01010{letter-spacing:3.643200px;}
.ls13_c01010{letter-spacing:3.667950px;}
.ls9_c01010{letter-spacing:3.722400px;}
.ls14_c01010{letter-spacing:3.732310px;}
.lsa_c01010{letter-spacing:3.801610px;}
.ls3_c01010{letter-spacing:3.969900px;}
.ls10_c01010{letter-spacing:4.098610px;}
.ls2_c01010{letter-spacing:4.197610px;}
.ls8_c01010{letter-spacing:52.747398px;}
.ls6_c01010{letter-spacing:59.875398px;}
.sc__c01010{text-shadow:none;}
.sc0_c01010{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01010{-webkit-text-stroke:0px transparent;}
.sc0_c01010{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01010{word-spacing:-19.849500px;}
.ws1_c01010{word-spacing:0.000000px;}
._4_c01010{margin-left:-11.432520px;}
._1_c01010{width:13.860000px;}
._2_c01010{width:27.710496px;}
._3_c01010{width:43.728665px;}
._0_c01010{width:133.393788px;}
.fc0_c01010{color:transparent;}
.fs12_c01010{font-size:22.176000px;}
.fsc_c01010{font-size:26.928000px;}
.fs0_c01010{font-size:27.720000px;}
.fsb_c01010{font-size:39.600000px;}
.fse_c01010{font-size:42.966198px;}
.fsa_c01010{font-size:43.164000px;}
.fs6_c01010{font-size:52.747398px;}
.fs4_c01010{font-size:59.875398px;}
.fsd_c01010{font-size:66.330000px;}
.fs9_c01010{font-size:68.310000px;}
.fs15_c01010{font-size:70.092198px;}
.fs5_c01010{font-size:72.864000px;}
.fs7_c01010{font-size:74.448000px;}
.fs14_c01010{font-size:74.646198px;}
.fs11_c01010{font-size:74.844000px;}
.fs8_c01010{font-size:76.032198px;}
.fs3_c01010{font-size:76.230000px;}
.fs13_c01010{font-size:77.220000px;}
.fs10_c01010{font-size:77.616198px;}
.fs2_c01010{font-size:79.398000px;}
.fsf_c01010{font-size:81.972198px;}
.fs1_c01010{font-size:83.952198px;}
.y0_c01010{bottom:0.000000px;}
.y1_c01010{bottom:76.500000px;}
.y20_c01010{bottom:81.522585px;}
.y1f_c01010{bottom:135.700335px;}
.y1e_c01010{bottom:167.063535px;}
.y1d_c01010{bottom:198.783135px;}
.y1c_c01010{bottom:230.146335px;}
.y1b_c01010{bottom:251.173935px;}
.y1a_c01010{bottom:261.860985px;}
.y19_c01010{bottom:293.585535px;}
.y18_c01010{bottom:324.943785px;}
.y17_c01010{bottom:357.381135px;}
.y16_c01010{bottom:389.813535px;}
.y2_c01010{bottom:399.787785px;}
.y15_c01010{bottom:453.604185px;}
.y14_c01010{bottom:485.685135px;}
.y13_c01010{bottom:516.691935px;}
.y12_c01010{bottom:548.762985px;}
.y11_c01010{bottom:580.487535px;}
.y10_c01010{bottom:606.499785px;}
.yf_c01010{bottom:612.207135px;}
.ye_c01010{bottom:644.283135px;}
.yd_c01010{bottom:675.289935px;}
.yc_c01010{bottom:707.717385px;}
.yb_c01010{bottom:738.724185px;}
.ya_c01010{bottom:770.805135px;}
.y9_c01010{bottom:802.519785px;}
.y8_c01010{bottom:833.882985px;}
.y7_c01010{bottom:896.970735px;}
.y6_c01010{bottom:929.759535px;}
.y5_c01010{bottom:1029.902985px;}
.y4_c01010{bottom:1068.037785px;}
.y3_c01010{bottom:1100.112795px;}
.h12_c01010{height:23.128875px;}
.h2_c01010{height:28.911094px;}
.h8_c01010{height:35.129767px;}
.h6_c01010{height:39.877015px;}
.he_c01010{height:42.168974px;}
.hc_c01010{height:45.018703px;}
.hb_c01010{height:67.042529px;}
.hd_c01010{height:69.180117px;}
.h7_c01010{height:71.512031px;}
.h9_c01010{height:73.066641px;}
.h15_c01010{height:73.103972px;}
.h14_c01010{height:73.261161px;}
.h11_c01010{height:73.455293px;}
.ha_c01010{height:74.621444px;}
.h5_c01010{height:74.815576px;}
.h13_c01010{height:75.787207px;}
.h4_c01010{height:77.924795px;}
.hf_c01010{height:80.451229px;}
.h10_c01010{height:80.951269px;}
.h3_c01010{height:82.394491px;}
.h1_c01010{height:1110.000000px;}
.h0_c01010{height:1263.000000px;}
.w1_c01010{width:763.500000px;}
.w0_c01010{width:892.500000px;}
.x0_c01010{left:0.000000px;}
.x2_c01010{left:40.388085px;}
.x1_c01010{left:64.500000px;}
.x2e_c01010{left:74.656935px;}
.x6_c01010{left:75.929085px;}
.x50_c01010{left:98.258535px;}
.xf_c01010{left:108.594135px;}
.x37_c01010{left:119.642535px;}
.x28_c01010{left:121.078035px;}
.x53_c01010{left:129.567285px;}
.x7_c01010{left:131.156235px;}
.x3f_c01010{left:141.249285px;}
.x63_c01010{left:143.100585px;}
.x29_c01010{left:152.792685px;}
.x13_c01010{left:163.014435px;}
.x68_c01010{left:165.266685px;}
.x58_c01010{left:166.667535px;}
.x64_c01010{left:174.820185px;}
.x49_c01010{left:176.250735px;}
.x21_c01010{left:186.640785px;}
.x40_c01010{left:197.110035px;}
.x14_c01010{left:198.807885px;}
.x2f_c01010{left:207.613935px;}
.x54_c01010{left:209.163285px;}
.x45_c01010{left:217.979235px;}
.x15_c01010{left:219.058335px;}
.x30_c01010{left:230.245335px;}
.x5c_c01010{left:231.284835px;}
.x16_c01010{left:240.922485px;}
.x10_c01010{left:242.065935px;}
.x11_c01010{left:252.673785px;}
.x38_c01010{left:253.742985px;}
.x22_c01010{left:262.529235px;}
.x46_c01010{left:264.038985px;}
.x8_c01010{left:275.463585px;}
.x31_c01010{left:286.437735px;}
.x1c_c01010{left:296.362485px;}
.x12_c01010{left:297.491085px;}
.x41_c01010{left:299.896785px;}
.x9_c01010{left:307.400985px;}
.x44_c01010{left:308.717685px;}
.x69_c01010{left:310.083885px;}
.x39_c01010{left:318.785985px;}
.x4a_c01010{left:319.879935px;}
.x1d_c01010{left:330.210585px;}
.x34_c01010{left:340.902585px;}
.x47_c01010{left:342.442035px;}
.x59_c01010{left:351.985635px;}
.x23_c01010{left:364.266585px;}
.x48_c01010{left:374.042835px;}
.x55_c01010{left:375.112035px;}
.x3a_c01010{left:386.996985px;}
.x17_c01010{left:397.213785px;}
.x24_c01010{left:398.406735px;}
.x60_c01010{left:407.806785px;}
.x4b_c01010{left:409.158135px;}
.x65_c01010{left:410.554035px;}
.xa_c01010{left:419.731335px;}
.x51_c01010{left:422.295435px;}
.x1e_c01010{left:431.616285px;}
.x18_c01010{left:440.372835px;}
.x3b_c01010{left:442.234035px;}
.x52_c01010{left:444.045735px;}
.x1f_c01010{left:451.777635px;}
.x5e_c01010{left:464.286285px;}
.xb_c01010{left:473.518035px;}
.x19_c01010{left:475.428735px;}
.x42_c01010{left:486.808785px;}
.x2a_c01010{left:488.229435px;}
.x20_c01010{left:497.045385px;}
.x3_c01010{left:499.431285px;}
.x4c_c01010{left:508.564035px;}
.xc_c01010{left:518.018535px;}
.x32_c01010{left:519.968835px;}
.x6a_c01010{left:521.701335px;}
.x4e_c01010{left:530.017335px;}
.x56_c01010{left:531.284535px;}
.x2b_c01010{left:541.333035px;}
.x5_c01010{left:544.337685px;}
.x35_c01010{left:552.668535px;}
.x4d_c01010{left:564.152535px;}
.x5d_c01010{left:565.741485px;}
.x62_c01010{left:572.161635px;}
.x2c_c01010{left:575.567235px;}
.xd_c01010{left:585.571185px;}
.x5a_c01010{left:586.620585px;}
.x25_c01010{left:596.634435px;}
.x3c_c01010{left:606.677985px;}
.x57_c01010{left:619.320285px;}
.x26_c01010{left:628.195635px;}
.x36_c01010{left:629.784585px;}
.x1a_c01010{left:639.600435px;}
.x6b_c01010{left:642.035835px;}
.x61_c01010{left:651.861585px;}
.x4_c01010{left:662.865435px;}
.x3d_c01010{left:672.904035px;}
.x1b_c01010{left:674.270235px;}
.x66_c01010{left:683.749485px;}
.x2d_c01010{left:685.338435px;}
.x33_c01010{left:687.348135px;}
.x4f_c01010{left:696.297735px;}
.x5b_c01010{left:706.212585px;}
.x27_c01010{left:707.271885px;}
.x5f_c01010{left:709.677585px;}
.xe_c01010{left:718.523235px;}
.x3e_c01010{left:729.373635px;}
.x43_c01010{left:741.317985px;}
.x6c_c01010{left:751.282335px;}
.x67_c01010{left:762.766335px;}
@media print{
.v0_c01010{vertical-align:0.000000pt;}
.ls5_c01010{letter-spacing:-2.470160pt;}
.lsf_c01010{letter-spacing:-1.336726pt;}
.ls15_c01010{letter-spacing:-1.065698pt;}
.ls1_c01010{letter-spacing:0.000000pt;}
.lsc_c01010{letter-spacing:0.416398pt;}
.ls0_c01010{letter-spacing:0.538139pt;}
.lsd_c01010{letter-spacing:1.192734pt;}
.ls12_c01010{letter-spacing:1.538557pt;}
.ls4_c01010{letter-spacing:1.687224pt;}
.lse_c01010{letter-spacing:2.166683pt;}
.ls11_c01010{letter-spacing:2.688946pt;}
.lsb_c01010{letter-spacing:3.036000pt;}
.ls7_c01010{letter-spacing:3.238400pt;}
.ls13_c01010{letter-spacing:3.260400pt;}
.ls9_c01010{letter-spacing:3.308800pt;}
.ls14_c01010{letter-spacing:3.317609pt;}
.lsa_c01010{letter-spacing:3.379209pt;}
.ls3_c01010{letter-spacing:3.528800pt;}
.ls10_c01010{letter-spacing:3.643209pt;}
.ls2_c01010{letter-spacing:3.731209pt;}
.ls8_c01010{letter-spacing:46.886576pt;}
.ls6_c01010{letter-spacing:53.222576pt;}
.ws0_c01010{word-spacing:-17.644000pt;}
.ws1_c01010{word-spacing:0.000000pt;}
._4_c01010{margin-left:-10.162240pt;}
._1_c01010{width:12.320000pt;}
._2_c01010{width:24.631552pt;}
._3_c01010{width:38.869925pt;}
._0_c01010{width:118.572256pt;}
.fs12_c01010{font-size:19.712000pt;}
.fsc_c01010{font-size:23.936000pt;}
.fs0_c01010{font-size:24.640000pt;}
.fsb_c01010{font-size:35.200000pt;}
.fse_c01010{font-size:38.192176pt;}
.fsa_c01010{font-size:38.368000pt;}
.fs6_c01010{font-size:46.886576pt;}
.fs4_c01010{font-size:53.222576pt;}
.fsd_c01010{font-size:58.960000pt;}
.fs9_c01010{font-size:60.720000pt;}
.fs15_c01010{font-size:62.304176pt;}
.fs5_c01010{font-size:64.768000pt;}
.fs7_c01010{font-size:66.176000pt;}
.fs14_c01010{font-size:66.352176pt;}
.fs11_c01010{font-size:66.528000pt;}
.fs8_c01010{font-size:67.584176pt;}
.fs3_c01010{font-size:67.760000pt;}
.fs13_c01010{font-size:68.640000pt;}
.fs10_c01010{font-size:68.992176pt;}
.fs2_c01010{font-size:70.576000pt;}
.fsf_c01010{font-size:72.864176pt;}
.fs1_c01010{font-size:74.624176pt;}
.y0_c01010{bottom:0.000000pt;}
.y1_c01010{bottom:68.000000pt;}
.y20_c01010{bottom:72.464520pt;}
.y1f_c01010{bottom:120.622520pt;}
.y1e_c01010{bottom:148.500920pt;}
.y1d_c01010{bottom:176.696120pt;}
.y1c_c01010{bottom:204.574520pt;}
.y1b_c01010{bottom:223.265720pt;}
.y1a_c01010{bottom:232.765320pt;}
.y19_c01010{bottom:260.964920pt;}
.y18_c01010{bottom:288.838920pt;}
.y17_c01010{bottom:317.672120pt;}
.y16_c01010{bottom:346.500920pt;}
.y2_c01010{bottom:355.366920pt;}
.y15_c01010{bottom:403.203720pt;}
.y14_c01010{bottom:431.720120pt;}
.y13_c01010{bottom:459.281720pt;}
.y12_c01010{bottom:487.789320pt;}
.y11_c01010{bottom:515.988920pt;}
.y10_c01010{bottom:539.110920pt;}
.yf_c01010{bottom:544.184120pt;}
.ye_c01010{bottom:572.696120pt;}
.yd_c01010{bottom:600.257720pt;}
.yc_c01010{bottom:629.082120pt;}
.yb_c01010{bottom:656.643720pt;}
.ya_c01010{bottom:685.160120pt;}
.y9_c01010{bottom:713.350920pt;}
.y8_c01010{bottom:741.229320pt;}
.y7_c01010{bottom:797.307320pt;}
.y6_c01010{bottom:826.452920pt;}
.y5_c01010{bottom:915.469320pt;}
.y4_c01010{bottom:949.366920pt;}
.y3_c01010{bottom:977.878040pt;}
.h12_c01010{height:20.559000pt;}
.h2_c01010{height:25.698750pt;}
.h8_c01010{height:31.226460pt;}
.h6_c01010{height:35.446236pt;}
.he_c01010{height:37.483532pt;}
.hc_c01010{height:40.016625pt;}
.hb_c01010{height:59.593359pt;}
.hd_c01010{height:61.493438pt;}
.h7_c01010{height:63.566250pt;}
.h9_c01010{height:64.948125pt;}
.h15_c01010{height:64.981309pt;}
.h14_c01010{height:65.121032pt;}
.h11_c01010{height:65.293594pt;}
.ha_c01010{height:66.330173pt;}
.h5_c01010{height:66.502734pt;}
.h13_c01010{height:67.366406pt;}
.h4_c01010{height:69.266484pt;}
.hf_c01010{height:71.512204pt;}
.h10_c01010{height:71.956684pt;}
.h3_c01010{height:73.239548pt;}
.h1_c01010{height:986.666667pt;}
.h0_c01010{height:1122.666667pt;}
.w1_c01010{width:678.666667pt;}
.w0_c01010{width:793.333333pt;}
.x0_c01010{left:0.000000pt;}
.x2_c01010{left:35.900520pt;}
.x1_c01010{left:57.333333pt;}
.x2e_c01010{left:66.361720pt;}
.x6_c01010{left:67.492520pt;}
.x50_c01010{left:87.340920pt;}
.xf_c01010{left:96.528120pt;}
.x37_c01010{left:106.348920pt;}
.x28_c01010{left:107.624920pt;}
.x53_c01010{left:115.170920pt;}
.x7_c01010{left:116.583320pt;}
.x3f_c01010{left:125.554920pt;}
.x63_c01010{left:127.200520pt;}
.x29_c01010{left:135.815720pt;}
.x13_c01010{left:144.901720pt;}
.x68_c01010{left:146.903720pt;}
.x58_c01010{left:148.148920pt;}
.x64_c01010{left:155.395720pt;}
.x49_c01010{left:156.667320pt;}
.x21_c01010{left:165.902920pt;}
.x40_c01010{left:175.208920pt;}
.x14_c01010{left:176.718120pt;}
.x2f_c01010{left:184.545720pt;}
.x54_c01010{left:185.922920pt;}
.x45_c01010{left:193.759320pt;}
.x15_c01010{left:194.718520pt;}
.x30_c01010{left:204.662520pt;}
.x5c_c01010{left:205.586520pt;}
.x16_c01010{left:214.153320pt;}
.x10_c01010{left:215.169720pt;}
.x11_c01010{left:224.598920pt;}
.x38_c01010{left:225.549320pt;}
.x22_c01010{left:233.359320pt;}
.x46_c01010{left:234.701320pt;}
.x8_c01010{left:244.856520pt;}
.x31_c01010{left:254.611320pt;}
.x1c_c01010{left:263.433320pt;}
.x12_c01010{left:264.436520pt;}
.x41_c01010{left:266.574920pt;}
.x9_c01010{left:273.245320pt;}
.x44_c01010{left:274.415720pt;}
.x69_c01010{left:275.630120pt;}
.x39_c01010{left:283.365320pt;}
.x4a_c01010{left:284.337720pt;}
.x1d_c01010{left:293.520520pt;}
.x34_c01010{left:303.024520pt;}
.x47_c01010{left:304.392920pt;}
.x59_c01010{left:312.876120pt;}
.x23_c01010{left:323.792520pt;}
.x48_c01010{left:332.482520pt;}
.x55_c01010{left:333.432920pt;}
.x3a_c01010{left:343.997320pt;}
.x17_c01010{left:353.078920pt;}
.x24_c01010{left:354.139320pt;}
.x60_c01010{left:362.494920pt;}
.x4b_c01010{left:363.696120pt;}
.x65_c01010{left:364.936920pt;}
.xa_c01010{left:373.094520pt;}
.x51_c01010{left:375.373720pt;}
.x1e_c01010{left:383.658920pt;}
.x18_c01010{left:391.442520pt;}
.x3b_c01010{left:393.096920pt;}
.x52_c01010{left:394.707320pt;}
.x1f_c01010{left:401.580120pt;}
.x5e_c01010{left:412.698920pt;}
.xb_c01010{left:420.904920pt;}
.x19_c01010{left:422.603320pt;}
.x42_c01010{left:432.718920pt;}
.x2a_c01010{left:433.981720pt;}
.x20_c01010{left:441.818120pt;}
.x3_c01010{left:443.938920pt;}
.x4c_c01010{left:452.056920pt;}
.xc_c01010{left:460.460920pt;}
.x32_c01010{left:462.194520pt;}
.x6a_c01010{left:463.734520pt;}
.x4e_c01010{left:471.126520pt;}
.x56_c01010{left:472.252920pt;}
.x2b_c01010{left:481.184920pt;}
.x5_c01010{left:483.855720pt;}
.x35_c01010{left:491.260920pt;}
.x4d_c01010{left:501.468920pt;}
.x5d_c01010{left:502.881320pt;}
.x62_c01010{left:508.588120pt;}
.x2c_c01010{left:511.615320pt;}
.xd_c01010{left:520.507720pt;}
.x5a_c01010{left:521.440520pt;}
.x25_c01010{left:530.341720pt;}
.x3c_c01010{left:539.269320pt;}
.x57_c01010{left:550.506920pt;}
.x26_c01010{left:558.396120pt;}
.x36_c01010{left:559.808520pt;}
.x1a_c01010{left:568.533720pt;}
.x6b_c01010{left:570.698520pt;}
.x61_c01010{left:579.432520pt;}
.x4_c01010{left:589.213720pt;}
.x3d_c01010{left:598.136920pt;}
.x1b_c01010{left:599.351320pt;}
.x66_c01010{left:607.777320pt;}
.x2d_c01010{left:609.189720pt;}
.x33_c01010{left:610.976120pt;}
.x4f_c01010{left:618.931320pt;}
.x5b_c01010{left:627.744520pt;}
.x27_c01010{left:628.686120pt;}
.x5f_c01010{left:630.824520pt;}
.xe_c01010{left:638.687320pt;}
.x3e_c01010{left:648.332120pt;}
.x43_c01010{left:658.949320pt;}
.x6c_c01010{left:667.806520pt;}
.x67_c01010{left:678.014520pt;}
}





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

.ir_c01011:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01011{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01011;src:url('chunks/assets/font_cb9db084235d878b9643c312.woff2')format("woff");}.ff1_c01011{font-family:ff1_c01011;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01011;src:url('chunks/assets/font_c0fb6c11fe81abd15412125b.woff2')format("woff");}.ff2_c01011{font-family:ff2_c01011;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01011;src:url('chunks/assets/font_b811db8e25d4d0b355628ae2.woff2')format("woff");}.ff3_c01011{font-family:ff3_c01011;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01011;src:url('chunks/assets/font_0678366add3da5044498d1c5.woff2')format("woff");}.ff4_c01011{font-family:ff4_c01011;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01011;src:url('chunks/assets/font_19e40395632404ac180cb47f.woff2')format("woff");}.ff5_c01011{font-family:ff5_c01011;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01011;src:url('chunks/assets/font_0c6d2b1d6e8fb379ac345d99.woff2')format("woff");}.ff6_c01011{font-family:ff6_c01011;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m38_c01011{transform:matrix(0.109680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109680,0.000000,0.000000,0.250000,0,0);}
.m1_c01011{transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);}
.m58_c01011{transform:matrix(0.174418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174418,0.000000,0.000000,0.250000,0,0);}
.m48_c01011{transform:matrix(0.196716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196716,0.000000,0.000000,0.250000,0,0);}
.mb3_c01011{transform:matrix(0.218749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218749,0.000000,0.000000,0.250000,0,0);}
.ma1_c01011{transform:matrix(0.226633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226633,0.000000,0.000000,0.250000,0,0);}
.m3f_c01011{transform:matrix(0.241149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241149,0.000000,0.000000,0.250000,0,0);}
.m59_c01011{transform:matrix(0.242247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242247,0.000000,0.000000,0.250000,0,0);}
.m0_c01011{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m81_c01011{transform:matrix(0.252028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252028,0.000000,0.000000,0.250000,0,0);}
.m72_c01011{transform:matrix(0.255273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255273,0.000000,0.000000,0.250000,0,0);}
.mba_c01011{transform:matrix(0.256815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256815,0.000000,0.000000,0.250000,0,0);}
.m98_c01011{transform:matrix(0.258441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258441,0.000000,0.000000,0.250000,0,0);}
.m43_c01011{transform:matrix(0.261220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261220,0.000000,0.000000,0.250000,0,0);}
.mb0_c01011{transform:matrix(0.263784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263784,0.000000,0.000000,0.250000,0,0);}
.m80_c01011{transform:matrix(0.264763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264763,0.000000,0.000000,0.250000,0,0);}
.m9_c01011{transform:matrix(0.265076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265076,0.000000,0.000000,0.250000,0,0);}
.m5c_c01011{transform:matrix(0.265403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265403,0.000000,0.000000,0.250000,0,0);}
.m11_c01011{transform:matrix(0.268858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268858,0.000000,0.000000,0.250000,0,0);}
.m53_c01011{transform:matrix(0.269576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269576,0.000000,0.000000,0.250000,0,0);}
.ma3_c01011{transform:matrix(0.271137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271137,0.000000,0.000000,0.250000,0,0);}
.m8b_c01011{transform:matrix(0.271442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271442,0.000000,0.000000,0.250000,0,0);}
.m61_c01011{transform:matrix(0.271948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271948,0.000000,0.000000,0.250000,0,0);}
.m44_c01011{transform:matrix(0.272555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272555,0.000000,0.000000,0.250000,0,0);}
.m3b_c01011{transform:matrix(0.272847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272847,0.000000,0.000000,0.250000,0,0);}
.m6b_c01011{transform:matrix(0.273120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273120,0.000000,0.000000,0.250000,0,0);}
.m6_c01011{transform:matrix(0.274391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274391,0.000000,0.000000,0.250000,0,0);}
.mbc_c01011{transform:matrix(0.274779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274779,0.000000,0.000000,0.250000,0,0);}
.m16_c01011{transform:matrix(0.275039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275039,0.000000,0.000000,0.250000,0,0);}
.m5_c01011{transform:matrix(0.275053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275053,0.000000,0.000000,0.250000,0,0);}
.m75_c01011{transform:matrix(0.275743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275743,0.000000,0.000000,0.250000,0,0);}
.m83_c01011{transform:matrix(0.276482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276482,0.000000,0.000000,0.250000,0,0);}
.m71_c01011{transform:matrix(0.276506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276506,0.000000,0.000000,0.250000,0,0);}
.mb2_c01011{transform:matrix(0.276818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276818,0.000000,0.000000,0.250000,0,0);}
.mf_c01011{transform:matrix(0.277422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277422,0.000000,0.000000,0.250000,0,0);}
.mb8_c01011{transform:matrix(0.277802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277802,0.000000,0.000000,0.250000,0,0);}
.m4f_c01011{transform:matrix(0.278129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278129,0.000000,0.000000,0.250000,0,0);}
.m2e_c01011{transform:matrix(0.278491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278491,0.000000,0.000000,0.250000,0,0);}
.m73_c01011{transform:matrix(0.279171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279171,0.000000,0.000000,0.250000,0,0);}
.mb_c01011{transform:matrix(0.279205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279205,0.000000,0.000000,0.250000,0,0);}
.mb9_c01011{transform:matrix(0.279255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279255,0.000000,0.000000,0.250000,0,0);}
.m36_c01011{transform:matrix(0.279859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279859,0.000000,0.000000,0.250000,0,0);}
.m26_c01011{transform:matrix(0.279929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279929,0.000000,0.000000,0.250000,0,0);}
.m8c_c01011{transform:matrix(0.279950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279950,0.000000,0.000000,0.250000,0,0);}
.m20_c01011{transform:matrix(0.281780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281780,0.000000,0.000000,0.250000,0,0);}
.m78_c01011{transform:matrix(0.282186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282186,0.000000,0.000000,0.250000,0,0);}
.m1c_c01011{transform:matrix(0.282289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282289,0.000000,0.000000,0.250000,0,0);}
.m62_c01011{transform:matrix(0.282311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282311,0.000000,0.000000,0.250000,0,0);}
.m57_c01011{transform:matrix(0.282849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282849,0.000000,0.000000,0.250000,0,0);}
.m8e_c01011{transform:matrix(0.283039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283039,0.000000,0.000000,0.250000,0,0);}
.m2_c01011{transform:matrix(0.284306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284306,0.000000,0.000000,0.250000,0,0);}
.m14_c01011{transform:matrix(0.285547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285547,0.000000,0.000000,0.250000,0,0);}
.m56_c01011{transform:matrix(0.286434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286434,0.000000,0.000000,0.250000,0,0);}
.me_c01011{transform:matrix(0.286843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286843,0.000000,0.000000,0.250000,0,0);}
.m3e_c01011{transform:matrix(0.287061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287061,0.000000,0.000000,0.250000,0,0);}
.ma8_c01011{transform:matrix(0.287157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287157,0.000000,0.000000,0.250000,0,0);}
.m50_c01011{transform:matrix(0.287794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287794,0.000000,0.000000,0.250000,0,0);}
.m65_c01011{transform:matrix(0.288130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288130,0.000000,0.000000,0.250000,0,0);}
.m5f_c01011{transform:matrix(0.288464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288464,0.000000,0.000000,0.250000,0,0);}
.mc_c01011{transform:matrix(0.288887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288887,0.000000,0.000000,0.250000,0,0);}
.m85_c01011{transform:matrix(0.290302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290302,0.000000,0.000000,0.250000,0,0);}
.ma4_c01011{transform:matrix(0.290639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290639,0.000000,0.000000,0.250000,0,0);}
.m8f_c01011{transform:matrix(0.291880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291880,0.000000,0.000000,0.250000,0,0);}
.m45_c01011{transform:matrix(0.292532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292532,0.000000,0.000000,0.250000,0,0);}
.m12_c01011{transform:matrix(0.293030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293030,0.000000,0.000000,0.250000,0,0);}
.m1b_c01011{transform:matrix(0.293965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293965,0.000000,0.000000,0.250000,0,0);}
.mac_c01011{transform:matrix(0.293968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293968,0.000000,0.000000,0.250000,0,0);}
.m34_c01011{transform:matrix(0.295524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295524,0.000000,0.000000,0.250000,0,0);}
.m28_c01011{transform:matrix(0.295578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295578,0.000000,0.000000,0.250000,0,0);}
.m4_c01011{transform:matrix(0.296174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296174,0.000000,0.000000,0.250000,0,0);}
.mb7_c01011{transform:matrix(0.296517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296517,0.000000,0.000000,0.250000,0,0);}
.m3c_c01011{transform:matrix(0.296655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296655,0.000000,0.000000,0.250000,0,0);}
.m5e_c01011{transform:matrix(0.296813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296813,0.000000,0.000000,0.250000,0,0);}
.m8_c01011{transform:matrix(0.296864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296864,0.000000,0.000000,0.250000,0,0);}
.m7d_c01011{transform:matrix(0.297033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297033,0.000000,0.000000,0.250000,0,0);}
.ma_c01011{transform:matrix(0.297330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297330,0.000000,0.000000,0.250000,0,0);}
.m5b_c01011{transform:matrix(0.297895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297895,0.000000,0.000000,0.250000,0,0);}
.m77_c01011{transform:matrix(0.298559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298559,0.000000,0.000000,0.250000,0,0);}
.m94_c01011{transform:matrix(0.299278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299278,0.000000,0.000000,0.250000,0,0);}
.m1d_c01011{transform:matrix(0.300670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300670,0.000000,0.000000,0.250000,0,0);}
.m52_c01011{transform:matrix(0.300966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300966,0.000000,0.000000,0.250000,0,0);}
.m47_c01011{transform:matrix(0.301002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301002,0.000000,0.000000,0.250000,0,0);}
.m22_c01011{transform:matrix(0.301405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301405,0.000000,0.000000,0.250000,0,0);}
.m1e_c01011{transform:matrix(0.301595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301595,0.000000,0.000000,0.250000,0,0);}
.ma5_c01011{transform:matrix(0.301600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301600,0.000000,0.000000,0.250000,0,0);}
.m91_c01011{transform:matrix(0.302199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302199,0.000000,0.000000,0.250000,0,0);}
.mbd_c01011{transform:matrix(0.302251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302251,0.000000,0.000000,0.250000,0,0);}
.m79_c01011{transform:matrix(0.304038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304038,0.000000,0.000000,0.250000,0,0);}
.m33_c01011{transform:matrix(0.305150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305150,0.000000,0.000000,0.250000,0,0);}
.ma2_c01011{transform:matrix(0.306507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306507,0.000000,0.000000,0.250000,0,0);}
.m70_c01011{transform:matrix(0.306920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306920,0.000000,0.000000,0.250000,0,0);}
.m9b_c01011{transform:matrix(0.307264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307264,0.000000,0.000000,0.250000,0,0);}
.m49_c01011{transform:matrix(0.307577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307577,0.000000,0.000000,0.250000,0,0);}
.m46_c01011{transform:matrix(0.307683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307683,0.000000,0.000000,0.250000,0,0);}
.m40_c01011{transform:matrix(0.308233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308233,0.000000,0.000000,0.250000,0,0);}
.ma7_c01011{transform:matrix(0.308341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308341,0.000000,0.000000,0.250000,0,0);}
.m32_c01011{transform:matrix(0.308397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308397,0.000000,0.000000,0.250000,0,0);}
.m8a_c01011{transform:matrix(0.308554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308554,0.000000,0.000000,0.250000,0,0);}
.m7c_c01011{transform:matrix(0.308556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308556,0.000000,0.000000,0.250000,0,0);}
.mae_c01011{transform:matrix(0.308747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308747,0.000000,0.000000,0.250000,0,0);}
.m2f_c01011{transform:matrix(0.309559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309559,0.000000,0.000000,0.250000,0,0);}
.m6c_c01011{transform:matrix(0.309772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309772,0.000000,0.000000,0.250000,0,0);}
.md_c01011{transform:matrix(0.309877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309877,0.000000,0.000000,0.250000,0,0);}
.m3d_c01011{transform:matrix(0.309986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309986,0.000000,0.000000,0.250000,0,0);}
.m3a_c01011{transform:matrix(0.310130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310130,0.000000,0.000000,0.250000,0,0);}
.m88_c01011{transform:matrix(0.310375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310375,0.000000,0.000000,0.250000,0,0);}
.m93_c01011{transform:matrix(0.311047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311047,0.000000,0.000000,0.250000,0,0);}
.maa_c01011{transform:matrix(0.311318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311318,0.000000,0.000000,0.250000,0,0);}
.m89_c01011{transform:matrix(0.311739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311739,0.000000,0.000000,0.250000,0,0);}
.m74_c01011{transform:matrix(0.312497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312497,0.000000,0.000000,0.250000,0,0);}
.m9d_c01011{transform:matrix(0.312655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312655,0.000000,0.000000,0.250000,0,0);}
.ma6_c01011{transform:matrix(0.313197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313197,0.000000,0.000000,0.250000,0,0);}
.m1a_c01011{transform:matrix(0.313233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313233,0.000000,0.000000,0.250000,0,0);}
.m15_c01011{transform:matrix(0.313442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313442,0.000000,0.000000,0.250000,0,0);}
.mbb_c01011{transform:matrix(0.313957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313957,0.000000,0.000000,0.250000,0,0);}
.m76_c01011{transform:matrix(0.313968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313968,0.000000,0.000000,0.250000,0,0);}
.m21_c01011{transform:matrix(0.314324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314324,0.000000,0.000000,0.250000,0,0);}
.ma9_c01011{transform:matrix(0.314345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314345,0.000000,0.000000,0.250000,0,0);}
.m7_c01011{transform:matrix(0.314938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314938,0.000000,0.000000,0.250000,0,0);}
.m13_c01011{transform:matrix(0.315710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315710,0.000000,0.000000,0.250000,0,0);}
.m9e_c01011{transform:matrix(0.315876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315876,0.000000,0.000000,0.250000,0,0);}
.ma0_c01011{transform:matrix(0.316179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316179,0.000000,0.000000,0.250000,0,0);}
.m30_c01011{transform:matrix(0.316261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316261,0.000000,0.000000,0.250000,0,0);}
.m4d_c01011{transform:matrix(0.317034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317034,0.000000,0.000000,0.250000,0,0);}
.m6f_c01011{transform:matrix(0.319059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319059,0.000000,0.000000,0.250000,0,0);}
.m51_c01011{transform:matrix(0.320710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320710,0.000000,0.000000,0.250000,0,0);}
.mb5_c01011{transform:matrix(0.320801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320801,0.000000,0.000000,0.250000,0,0);}
.m4b_c01011{transform:matrix(0.320909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320909,0.000000,0.000000,0.250000,0,0);}
.m42_c01011{transform:matrix(0.321067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321067,0.000000,0.000000,0.250000,0,0);}
.m92_c01011{transform:matrix(0.321571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321571,0.000000,0.000000,0.250000,0,0);}
.m69_c01011{transform:matrix(0.323626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323626,0.000000,0.000000,0.250000,0,0);}
.mbe_c01011{transform:matrix(0.323832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323832,0.000000,0.000000,0.250000,0,0);}
.m5a_c01011{transform:matrix(0.323991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323991,0.000000,0.000000,0.250000,0,0);}
.m31_c01011{transform:matrix(0.324163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324163,0.000000,0.000000,0.250000,0,0);}
.m5d_c01011{transform:matrix(0.324197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324197,0.000000,0.000000,0.250000,0,0);}
.m4a_c01011{transform:matrix(0.324513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324513,0.000000,0.000000,0.250000,0,0);}
.m6e_c01011{transform:matrix(0.324766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324766,0.000000,0.000000,0.250000,0,0);}
.m7b_c01011{transform:matrix(0.324887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324887,0.000000,0.000000,0.250000,0,0);}
.m7f_c01011{transform:matrix(0.325451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325451,0.000000,0.000000,0.250000,0,0);}
.m2a_c01011{transform:matrix(0.327343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327343,0.000000,0.000000,0.250000,0,0);}
.m55_c01011{transform:matrix(0.328032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328032,0.000000,0.000000,0.250000,0,0);}
.m18_c01011{transform:matrix(0.328765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328765,0.000000,0.000000,0.250000,0,0);}
.m67_c01011{transform:matrix(0.329251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329251,0.000000,0.000000,0.250000,0,0);}
.m41_c01011{transform:matrix(0.329352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329352,0.000000,0.000000,0.250000,0,0);}
.m60_c01011{transform:matrix(0.329486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329486,0.000000,0.000000,0.250000,0,0);}
.maf_c01011{transform:matrix(0.329504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329504,0.000000,0.000000,0.250000,0,0);}
.m9f_c01011{transform:matrix(0.329957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329957,0.000000,0.000000,0.250000,0,0);}
.m82_c01011{transform:matrix(0.330957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330957,0.000000,0.000000,0.250000,0,0);}
.m39_c01011{transform:matrix(0.331822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331822,0.000000,0.000000,0.250000,0,0);}
.m66_c01011{transform:matrix(0.333271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333271,0.000000,0.000000,0.250000,0,0);}
.m9c_c01011{transform:matrix(0.333274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333274,0.000000,0.000000,0.250000,0,0);}
.m87_c01011{transform:matrix(0.334918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334918,0.000000,0.000000,0.250000,0,0);}
.m2c_c01011{transform:matrix(0.335028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335028,0.000000,0.000000,0.250000,0,0);}
.m1f_c01011{transform:matrix(0.336454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336454,0.000000,0.000000,0.250000,0,0);}
.m29_c01011{transform:matrix(0.337061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337061,0.000000,0.000000,0.250000,0,0);}
.m96_c01011{transform:matrix(0.337894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337894,0.000000,0.000000,0.250000,0,0);}
.mb4_c01011{transform:matrix(0.338469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338469,0.000000,0.000000,0.250000,0,0);}
.m27_c01011{transform:matrix(0.338866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338866,0.000000,0.000000,0.250000,0,0);}
.m97_c01011{transform:matrix(0.339878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339878,0.000000,0.000000,0.250000,0,0);}
.m24_c01011{transform:matrix(0.340835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340835,0.000000,0.000000,0.250000,0,0);}
.m86_c01011{transform:matrix(0.342355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342355,0.000000,0.000000,0.250000,0,0);}
.m68_c01011{transform:matrix(0.342441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342441,0.000000,0.000000,0.250000,0,0);}
.mad_c01011{transform:matrix(0.343274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343274,0.000000,0.000000,0.250000,0,0);}
.mab_c01011{transform:matrix(0.343322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343322,0.000000,0.000000,0.250000,0,0);}
.m64_c01011{transform:matrix(0.343776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343776,0.000000,0.000000,0.250000,0,0);}
.m9a_c01011{transform:matrix(0.344546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344546,0.000000,0.000000,0.250000,0,0);}
.mbf_c01011{transform:matrix(0.345246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345246,0.000000,0.000000,0.250000,0,0);}
.m7a_c01011{transform:matrix(0.345910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345910,0.000000,0.000000,0.250000,0,0);}
.m19_c01011{transform:matrix(0.346156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346156,0.000000,0.000000,0.250000,0,0);}
.m3_c01011{transform:matrix(0.346600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346600,0.000000,0.000000,0.250000,0,0);}
.m17_c01011{transform:matrix(0.347254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347254,0.000000,0.000000,0.250000,0,0);}
.m95_c01011{transform:matrix(0.347563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347563,0.000000,0.000000,0.250000,0,0);}
.m23_c01011{transform:matrix(0.350430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350430,0.000000,0.000000,0.250000,0,0);}
.m7e_c01011{transform:matrix(0.352416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352416,0.000000,0.000000,0.250000,0,0);}
.mb6_c01011{transform:matrix(0.352977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352977,0.000000,0.000000,0.250000,0,0);}
.m54_c01011{transform:matrix(0.353155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353155,0.000000,0.000000,0.250000,0,0);}
.m10_c01011{transform:matrix(0.353568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353568,0.000000,0.000000,0.250000,0,0);}
.m2d_c01011{transform:matrix(0.354422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354422,0.000000,0.000000,0.250000,0,0);}
.mb1_c01011{transform:matrix(0.354484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354484,0.000000,0.000000,0.250000,0,0);}
.m25_c01011{transform:matrix(0.355700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355700,0.000000,0.000000,0.250000,0,0);}
.m84_c01011{transform:matrix(0.359245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359245,0.000000,0.000000,0.250000,0,0);}
.m6d_c01011{transform:matrix(0.359270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359270,0.000000,0.000000,0.250000,0,0);}
.m4e_c01011{transform:matrix(0.362545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362545,0.000000,0.000000,0.250000,0,0);}
.m99_c01011{transform:matrix(0.363016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363016,0.000000,0.000000,0.250000,0,0);}
.m4c_c01011{transform:matrix(0.367193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367193,0.000000,0.000000,0.250000,0,0);}
.m63_c01011{transform:matrix(0.373079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373079,0.000000,0.000000,0.250000,0,0);}
.m8d_c01011{transform:matrix(0.388886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388886,0.000000,0.000000,0.250000,0,0);}
.m2b_c01011{transform:matrix(0.395390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395390,0.000000,0.000000,0.250000,0,0);}
.m37_c01011{transform:matrix(0.401666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401666,0.000000,0.000000,0.250000,0,0);}
.m6a_c01011{transform:matrix(0.407942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407942,0.000000,0.000000,0.250000,0,0);}
.m35_c01011{transform:matrix(0.427070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427070,0.000000,0.000000,0.250000,0,0);}
.m90_c01011{transform:matrix(0.440107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440107,0.000000,0.000000,0.250000,0,0);}
.v0_c01011{vertical-align:0.000000px;}
.ls9_c01011{letter-spacing:-2.855167px;}
.ls12_c01011{letter-spacing:-2.633400px;}
.lsa_c01011{letter-spacing:-1.392930px;}
.ls7_c01011{letter-spacing:-1.330567px;}
.ls10_c01011{letter-spacing:-0.805068px;}
.lse_c01011{letter-spacing:-0.149688px;}
.ls1_c01011{letter-spacing:0.000000px;}
.ls8_c01011{letter-spacing:1.218888px;}
.ls5_c01011{letter-spacing:2.015086px;}
.lsf_c01011{letter-spacing:2.106720px;}
.ls6_c01011{letter-spacing:2.820510px;}
.lsd_c01011{letter-spacing:3.069792px;}
.ls4_c01011{letter-spacing:3.324499px;}
.lsc_c01011{letter-spacing:3.524400px;}
.ls11_c01011{letter-spacing:3.596472px;}
.ls3_c01011{letter-spacing:3.762000px;}
.ls0_c01011{letter-spacing:3.832972px;}
.ls2_c01011{letter-spacing:31.363200px;}
.ls13_c01011{letter-spacing:51.321798px;}
.lsb_c01011{letter-spacing:61.300998px;}
.sc__c01011{text-shadow:none;}
.sc0_c01011{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01011{-webkit-text-stroke:0px transparent;}
.sc0_c01011{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01011{word-spacing:0.000000px;}
.ws0_c01011{word-spacing:0.752400px;}
._0_c01011{margin-left:-3.536280px;}
._1_c01011{width:17.530920px;}
.fc0_c01011{color:transparent;}
.fs12_c01011{font-size:17.028000px;}
.fs2_c01011{font-size:22.374000px;}
.fs17_c01011{font-size:22.572000px;}
.fs14_c01011{font-size:28.314000px;}
.fsd_c01011{font-size:28.512000px;}
.fs3_c01011{font-size:31.363200px;}
.fs9_c01011{font-size:32.868000px;}
.fsa_c01011{font-size:38.016198px;}
.fs11_c01011{font-size:38.412000px;}
.fsc_c01011{font-size:39.798000px;}
.fs15_c01011{font-size:51.321798px;}
.fse_c01011{font-size:61.300998px;}
.fs16_c01011{font-size:62.568000px;}
.fs1_c01011{font-size:68.112198px;}
.fs8_c01011{font-size:69.300000px;}
.fs6_c01011{font-size:69.696198px;}
.fsf_c01011{font-size:70.488000px;}
.fs13_c01011{font-size:70.884000px;}
.fs10_c01011{font-size:71.280000px;}
.fs4_c01011{font-size:75.240000px;}
.fs5_c01011{font-size:78.408000px;}
.fs7_c01011{font-size:78.804000px;}
.fsb_c01011{font-size:81.576198px;}
.fs0_c01011{font-size:87.912198px;}
.y0_c01011{bottom:0.000000px;}
.y25_c01011{bottom:7.747785px;}
.y1_c01011{bottom:76.500000px;}
.y24_c01011{bottom:126.433935px;}
.y23_c01011{bottom:180.606735px;}
.y22_c01011{bottom:190.937385px;}
.y21_c01011{bottom:217.310985px;}
.y20_c01011{bottom:223.018335px;}
.y1f_c01011{bottom:254.732985px;}
.y1e_c01011{bottom:286.096185px;}
.y1d_c01011{bottom:317.820735px;}
.y1c_c01011{bottom:349.178985px;}
.y1b_c01011{bottom:366.286185px;}
.y1a_c01011{bottom:381.259935px;}
.y19_c01011{bottom:411.910335px;}
.y18_c01011{bottom:444.337785px;}
.y17_c01011{bottom:475.705935px;}
.y16_c01011{bottom:538.432335px;}
.y15_c01011{bottom:570.151935px;}
.y14_c01011{bottom:601.510185px;}
.y13_c01011{bottom:633.229785px;}
.y12_c01011{bottom:665.310735px;}
.y11_c01011{bottom:680.992335px;}
.y10_c01011{bottom:696.668985px;}
.yf_c01011{bottom:729.457785px;}
.ye_c01011{bottom:746.569935px;}
.yd_c01011{bottom:752.980185px;}
.yc_c01011{bottom:760.820985px;}
.yb_c01011{bottom:792.901935px;}
.ya_c01011{bottom:823.908735px;}
.y9_c01011{bottom:855.623385px;}
.y8_c01011{bottom:887.347935px;}
.y7_c01011{bottom:910.508985px;}
.y6_c01011{bottom:919.067535px;}
.y5_c01011{bottom:1017.785385px;}
.y4_c01011{bottom:1028.477385px;}
.y3_c01011{bottom:1047.010185px;}
.y2_c01011{bottom:1055.920185px;}
.h14_c01011{height:17.759672px;}
.h5_c01011{height:20.887891px;}
.h4_c01011{height:23.335383px;}
.h19_c01011{height:23.541891px;}
.h16_c01011{height:29.530617px;}
.hf_c01011{height:29.737125px;}
.h17_c01011{height:34.180317px;}
.hb_c01011{height:34.280297px;}
.hc_c01011{height:37.310819px;}
.h13_c01011{height:37.680521px;}
.h10_c01011{height:40.826465px;}
.he_c01011{height:41.508070px;}
.h18_c01011{height:65.256469px;}
.h11_c01011{height:69.180117px;}
.h15_c01011{height:69.568770px;}
.h3_c01011{height:71.038894px;}
.ha_c01011{height:72.277734px;}
.h8_c01011{height:72.554831px;}
.h6_c01011{height:73.843945px;}
.h12_c01011{height:74.342813px;}
.h7_c01011{height:76.953164px;}
.h9_c01011{height:77.341816px;}
.hd_c01011{height:80.062577px;}
.h2_c01011{height:86.238089px;}
.h1_c01011{height:1110.000000px;}
.h0_c01011{height:1263.000000px;}
.w1_c01011{width:763.500000px;}
.w0_c01011{width:892.500000px;}
.x0_c01011{left:0.000000px;}
.x1_c01011{left:64.500000px;}
.x22_c01011{left:71.459235px;}
.x5_c01011{left:73.028385px;}
.x51_c01011{left:104.277735px;}
.x1b_c01011{left:105.747885px;}
.x23_c01011{left:115.311285px;}
.x56_c01011{left:116.553735px;}
.xe_c01011{left:127.607085px;}
.x1c_c01011{left:137.383335px;}
.x24_c01011{left:138.591135px;}
.x63_c01011{left:139.610835px;}
.xd_c01011{left:148.550535px;}
.x6_c01011{left:149.837535px;}
.xf_c01011{left:159.529635px;}
.x52_c01011{left:162.455085px;}
.x17_c01011{left:172.736235px;}
.x4b_c01011{left:181.626435px;}
.x5b_c01011{left:183.126285px;}
.x34_c01011{left:192.996585px;}
.x10_c01011{left:194.486535px;}
.x2a_c01011{left:204.683535px;}
.x46_c01011{left:216.231885px;}
.x57_c01011{left:225.379485px;}
.x2b_c01011{left:226.483335px;}
.x53_c01011{left:227.993085px;}
.x3b_c01011{left:238.452435px;}
.x25_c01011{left:249.847335px;}
.x1d_c01011{left:261.197685px;}
.x7_c01011{left:262.974735px;}
.x3c_c01011{left:271.538235px;}
.x31_c01011{left:272.651985px;}
.x5c_c01011{left:282.735135px;}
.x26_c01011{left:293.496435px;}
.x11_c01011{left:305.054685px;}
.x66_c01011{left:306.099135px;}
.x35_c01011{left:316.835685px;}
.x58_c01011{left:319.122585px;}
.x8_c01011{left:326.319885px;}
.x5e_c01011{left:327.502935px;}
.x4c_c01011{left:338.962185px;}
.x69_c01011{left:348.065235px;}
.x18_c01011{left:349.921485px;}
.x36_c01011{left:352.153935px;}
.x62_c01011{left:359.470035px;}
.x4f_c01011{left:361.054035px;}
.x4d_c01011{left:371.325285px;}
.x9_c01011{left:382.794435px;}
.x6a_c01011{left:385.051635px;}
.x37_c01011{left:393.649785px;}
.x27_c01011{left:395.149635px;}
.x4e_c01011{left:405.212985px;}
.x41_c01011{left:406.272285px;}
.xa_c01011{left:416.098035px;}
.x64_c01011{left:417.370185px;}
.x1e_c01011{left:426.438585px;}
.x5f_c01011{left:427.671135px;}
.x5d_c01011{left:437.472135px;}
.x3e_c01011{left:439.377885px;}
.x3a_c01011{left:443.516085px;}
.x12_c01011{left:449.708535px;}
.x28_c01011{left:460.113435px;}
.x54_c01011{left:461.435085px;}
.x42_c01011{left:463.330935px;}
.x38_c01011{left:471.889485px;}
.x13_c01011{left:482.591385px;}
.x1f_c01011{left:493.273485px;}
.xb_c01011{left:504.059535px;}
.x50_c01011{left:505.722735px;}
.x65_c01011{left:510.058935px;}
.x3d_c01011{left:515.726685px;}
.x60_c01011{left:516.741435px;}
.x20_c01011{left:526.230585px;}
.x14_c01011{left:527.730435px;}
.x2c_c01011{left:537.264135px;}
.x43_c01011{left:539.258985px;}
.x19_c01011{left:548.322435px;}
.x15_c01011{left:559.014435px;}
.x67_c01011{left:560.301435px;}
.x55_c01011{left:571.330035px;}
.x3f_c01011{left:572.602185px;}
.x29_c01011{left:580.769685px;}
.x47_c01011{left:583.021935px;}
.x2d_c01011{left:593.110035px;}
.xc_c01011{left:603.628785px;}
.x61_c01011{left:605.148435px;}
.x1a_c01011{left:615.127635px;}
.x39_c01011{left:617.211585px;}
.x48_c01011{left:624.770235px;}
.x16_c01011{left:637.174935px;}
.x44_c01011{left:648.564885px;}
.x2e_c01011{left:657.776835px;}
.x21_c01011{left:659.628135px;}
.x32_c01011{left:668.142135px;}
.x2_c01011{left:670.082535px;}
.x59_c01011{left:671.364585px;}
.x40_c01011{left:681.665535px;}
.x3_c01011{left:692.644635px;}
.x4_c01011{left:694.490985px;}
.x30_c01011{left:702.460485px;}
.x5a_c01011{left:704.188035px;}
.x68_c01011{left:708.360885px;}
.x2f_c01011{left:714.182085px;}
.x33_c01011{left:715.285935px;}
.x49_c01011{left:725.581935px;}
.x45_c01011{left:727.002585px;}
.x4a_c01011{left:749.787435px;}
@media print{
.v0_c01011{vertical-align:0.000000pt;}
.ls9_c01011{letter-spacing:-2.537926pt;}
.ls12_c01011{letter-spacing:-2.340800pt;}
.lsa_c01011{letter-spacing:-1.238160pt;}
.ls7_c01011{letter-spacing:-1.182726pt;}
.ls10_c01011{letter-spacing:-0.715616pt;}
.lse_c01011{letter-spacing:-0.133056pt;}
.ls1_c01011{letter-spacing:0.000000pt;}
.ls8_c01011{letter-spacing:1.083456pt;}
.ls5_c01011{letter-spacing:1.791187pt;}
.lsf_c01011{letter-spacing:1.872640pt;}
.ls6_c01011{letter-spacing:2.507120pt;}
.lsd_c01011{letter-spacing:2.728704pt;}
.ls4_c01011{letter-spacing:2.955110pt;}
.lsc_c01011{letter-spacing:3.132800pt;}
.ls11_c01011{letter-spacing:3.196864pt;}
.ls3_c01011{letter-spacing:3.344000pt;}
.ls0_c01011{letter-spacing:3.407086pt;}
.ls2_c01011{letter-spacing:27.878400pt;}
.ls13_c01011{letter-spacing:45.619376pt;}
.lsb_c01011{letter-spacing:54.489776pt;}
.ws1_c01011{word-spacing:0.000000pt;}
.ws0_c01011{word-spacing:0.668800pt;}
._0_c01011{margin-left:-3.143360pt;}
._1_c01011{width:15.583040pt;}
.fs12_c01011{font-size:15.136000pt;}
.fs2_c01011{font-size:19.888000pt;}
.fs17_c01011{font-size:20.064000pt;}
.fs14_c01011{font-size:25.168000pt;}
.fsd_c01011{font-size:25.344000pt;}
.fs3_c01011{font-size:27.878400pt;}
.fs9_c01011{font-size:29.216000pt;}
.fsa_c01011{font-size:33.792176pt;}
.fs11_c01011{font-size:34.144000pt;}
.fsc_c01011{font-size:35.376000pt;}
.fs15_c01011{font-size:45.619376pt;}
.fse_c01011{font-size:54.489776pt;}
.fs16_c01011{font-size:55.616000pt;}
.fs1_c01011{font-size:60.544176pt;}
.fs8_c01011{font-size:61.600000pt;}
.fs6_c01011{font-size:61.952176pt;}
.fsf_c01011{font-size:62.656000pt;}
.fs13_c01011{font-size:63.008000pt;}
.fs10_c01011{font-size:63.360000pt;}
.fs4_c01011{font-size:66.880000pt;}
.fs5_c01011{font-size:69.696000pt;}
.fs7_c01011{font-size:70.048000pt;}
.fsb_c01011{font-size:72.512176pt;}
.fs0_c01011{font-size:78.144176pt;}
.y0_c01011{bottom:0.000000pt;}
.y25_c01011{bottom:6.886920pt;}
.y1_c01011{bottom:68.000000pt;}
.y24_c01011{bottom:112.385720pt;}
.y23_c01011{bottom:160.539320pt;}
.y22_c01011{bottom:169.722120pt;}
.y21_c01011{bottom:193.165320pt;}
.y20_c01011{bottom:198.238520pt;}
.y1f_c01011{bottom:226.429320pt;}
.y1e_c01011{bottom:254.307720pt;}
.y1d_c01011{bottom:282.507320pt;}
.y1c_c01011{bottom:310.381320pt;}
.y1b_c01011{bottom:325.587720pt;}
.y1a_c01011{bottom:338.897720pt;}
.y19_c01011{bottom:366.142520pt;}
.y18_c01011{bottom:394.966920pt;}
.y17_c01011{bottom:422.849720pt;}
.y16_c01011{bottom:478.606520pt;}
.y15_c01011{bottom:506.801720pt;}
.y14_c01011{bottom:534.675720pt;}
.y13_c01011{bottom:562.870920pt;}
.y12_c01011{bottom:591.387320pt;}
.y11_c01011{bottom:605.326520pt;}
.y10_c01011{bottom:619.261320pt;}
.yf_c01011{bottom:648.406920pt;}
.ye_c01011{bottom:663.617720pt;}
.yd_c01011{bottom:669.315720pt;}
.yc_c01011{bottom:676.285320pt;}
.yb_c01011{bottom:704.801720pt;}
.ya_c01011{bottom:732.363320pt;}
.y9_c01011{bottom:760.554120pt;}
.y8_c01011{bottom:788.753720pt;}
.y7_c01011{bottom:809.341320pt;}
.y6_c01011{bottom:816.948920pt;}
.y5_c01011{bottom:904.698120pt;}
.y4_c01011{bottom:914.202120pt;}
.y3_c01011{bottom:930.675720pt;}
.y2_c01011{bottom:938.595720pt;}
.h14_c01011{height:15.786375pt;}
.h5_c01011{height:18.567014pt;}
.h4_c01011{height:20.742563pt;}
.h19_c01011{height:20.926125pt;}
.h16_c01011{height:26.249438pt;}
.hf_c01011{height:26.433000pt;}
.h17_c01011{height:30.382504pt;}
.hb_c01011{height:30.471375pt;}
.hc_c01011{height:33.165173pt;}
.h13_c01011{height:33.493797pt;}
.h10_c01011{height:36.290191pt;}
.he_c01011{height:36.896063pt;}
.h18_c01011{height:58.005750pt;}
.h11_c01011{height:61.493438pt;}
.h15_c01011{height:61.838906pt;}
.h3_c01011{height:63.145684pt;}
.ha_c01011{height:64.246875pt;}
.h8_c01011{height:64.493183pt;}
.h6_c01011{height:65.639063pt;}
.h12_c01011{height:66.082500pt;}
.h7_c01011{height:68.402813pt;}
.h9_c01011{height:68.748281pt;}
.hd_c01011{height:71.166735pt;}
.h2_c01011{height:76.656079pt;}
.h1_c01011{height:986.666667pt;}
.h0_c01011{height:1122.666667pt;}
.w1_c01011{width:678.666667pt;}
.w0_c01011{width:793.333333pt;}
.x0_c01011{left:0.000000pt;}
.x1_c01011{left:57.333333pt;}
.x22_c01011{left:63.519320pt;}
.x5_c01011{left:64.914120pt;}
.x51_c01011{left:92.691320pt;}
.x1b_c01011{left:93.998120pt;}
.x23_c01011{left:102.498920pt;}
.x56_c01011{left:103.603320pt;}
.xe_c01011{left:113.428520pt;}
.x1c_c01011{left:122.118520pt;}
.x24_c01011{left:123.192120pt;}
.x63_c01011{left:124.098520pt;}
.xd_c01011{left:132.044920pt;}
.x6_c01011{left:133.188920pt;}
.xf_c01011{left:141.804120pt;}
.x52_c01011{left:144.404520pt;}
.x17_c01011{left:153.543320pt;}
.x4b_c01011{left:161.445720pt;}
.x5b_c01011{left:162.778920pt;}
.x34_c01011{left:171.552520pt;}
.x10_c01011{left:172.876920pt;}
.x2a_c01011{left:181.940920pt;}
.x46_c01011{left:192.206120pt;}
.x57_c01011{left:200.337320pt;}
.x2b_c01011{left:201.318520pt;}
.x53_c01011{left:202.660520pt;}
.x3b_c01011{left:211.957720pt;}
.x25_c01011{left:222.086520pt;}
.x1d_c01011{left:232.175720pt;}
.x7_c01011{left:233.755320pt;}
.x3c_c01011{left:241.367320pt;}
.x31_c01011{left:242.357320pt;}
.x5c_c01011{left:251.320120pt;}
.x26_c01011{left:260.885720pt;}
.x11_c01011{left:271.159720pt;}
.x66_c01011{left:272.088120pt;}
.x35_c01011{left:281.631720pt;}
.x58_c01011{left:283.664520pt;}
.x8_c01011{left:290.062120pt;}
.x5e_c01011{left:291.113720pt;}
.x4c_c01011{left:301.299720pt;}
.x69_c01011{left:309.391320pt;}
.x18_c01011{left:311.041320pt;}
.x36_c01011{left:313.025720pt;}
.x62_c01011{left:319.528920pt;}
.x4f_c01011{left:320.936920pt;}
.x4d_c01011{left:330.066920pt;}
.x9_c01011{left:340.261720pt;}
.x6a_c01011{left:342.268120pt;}
.x37_c01011{left:349.910920pt;}
.x27_c01011{left:351.244120pt;}
.x4e_c01011{left:360.189320pt;}
.x41_c01011{left:361.130920pt;}
.xa_c01011{left:369.864920pt;}
.x64_c01011{left:370.995720pt;}
.x1e_c01011{left:379.056520pt;}
.x5f_c01011{left:380.152120pt;}
.x5d_c01011{left:388.864120pt;}
.x3e_c01011{left:390.558120pt;}
.x3a_c01011{left:394.236520pt;}
.x12_c01011{left:399.740920pt;}
.x28_c01011{left:408.989720pt;}
.x54_c01011{left:410.164520pt;}
.x42_c01011{left:411.849720pt;}
.x38_c01011{left:419.457320pt;}
.x13_c01011{left:428.970120pt;}
.x1f_c01011{left:438.465320pt;}
.xb_c01011{left:448.052920pt;}
.x50_c01011{left:449.531320pt;}
.x65_c01011{left:453.385720pt;}
.x3d_c01011{left:458.423720pt;}
.x60_c01011{left:459.325720pt;}
.x20_c01011{left:467.760520pt;}
.x14_c01011{left:469.093720pt;}
.x2c_c01011{left:477.568120pt;}
.x43_c01011{left:479.341320pt;}
.x19_c01011{left:487.397720pt;}
.x15_c01011{left:496.901720pt;}
.x67_c01011{left:498.045720pt;}
.x55_c01011{left:507.848920pt;}
.x3f_c01011{left:508.979720pt;}
.x29_c01011{left:516.239720pt;}
.x47_c01011{left:518.241720pt;}
.x2d_c01011{left:527.208920pt;}
.xc_c01011{left:536.558920pt;}
.x61_c01011{left:537.909720pt;}
.x1a_c01011{left:546.780120pt;}
.x39_c01011{left:548.632520pt;}
.x48_c01011{left:555.351320pt;}
.x16_c01011{left:566.377720pt;}
.x44_c01011{left:576.502120pt;}
.x2e_c01011{left:584.690520pt;}
.x21_c01011{left:586.336120pt;}
.x32_c01011{left:593.904120pt;}
.x2_c01011{left:595.628920pt;}
.x59_c01011{left:596.768520pt;}
.x40_c01011{left:605.924920pt;}
.x3_c01011{left:615.684120pt;}
.x4_c01011{left:617.325320pt;}
.x30_c01011{left:624.409320pt;}
.x5a_c01011{left:625.944920pt;}
.x68_c01011{left:629.654120pt;}
.x2f_c01011{left:634.828520pt;}
.x33_c01011{left:635.809720pt;}
.x49_c01011{left:644.961720pt;}
.x45_c01011{left:646.224520pt;}
.x4a_c01011{left:666.477720pt;}
}





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

.ir_c01012:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01012{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01012;src:url('chunks/assets/font_4357ea0451e6197fd03011ce.woff2')format("woff");}.ff1_c01012{font-family:ff1_c01012;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01012;src:url('chunks/assets/font_f88c143b01ab4bf98d0bb41a.woff2')format("woff");}.ff2_c01012{font-family:ff2_c01012;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01012;src:url('chunks/assets/font_e0a0c69b3e47a1a22adc389d.woff2')format("woff");}.ff3_c01012{font-family:ff3_c01012;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m6d_c01012{transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);}
.mb3_c01012{transform:matrix(0.145022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145022,0.000000,0.000000,0.250000,0,0);}
.m92_c01012{transform:matrix(0.157544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157544,0.000000,0.000000,0.250000,0,0);}
.m48_c01012{transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);}
.m52_c01012{transform:matrix(0.196933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196933,0.000000,0.000000,0.250000,0,0);}
.m5d_c01012{transform:matrix(0.206826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206826,0.000000,0.000000,0.250000,0,0);}
.m2b_c01012{transform:matrix(0.233361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233361,0.000000,0.000000,0.250000,0,0);}
.m63_c01012{transform:matrix(0.233450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233450,0.000000,0.000000,0.250000,0,0);}
.m4d_c01012{transform:matrix(0.234648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234648,0.000000,0.000000,0.250000,0,0);}
.m6a_c01012{transform:matrix(0.240934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240934,0.000000,0.000000,0.250000,0,0);}
.m7c_c01012{transform:matrix(0.245452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245452,0.000000,0.000000,0.250000,0,0);}
.ma_c01012{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.mad_c01012{transform:matrix(0.250692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250692,0.000000,0.000000,0.250000,0,0);}
.mc8_c01012{transform:matrix(0.252149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252149,0.000000,0.000000,0.250000,0,0);}
.m94_c01012{transform:matrix(0.252801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252801,0.000000,0.000000,0.250000,0,0);}
.m58_c01012{transform:matrix(0.253285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253285,0.000000,0.000000,0.250000,0,0);}
.m14_c01012{transform:matrix(0.254323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254323,0.000000,0.000000,0.250000,0,0);}
.m19_c01012{transform:matrix(0.255470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255470,0.000000,0.000000,0.250000,0,0);}
.mb4_c01012{transform:matrix(0.257042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257042,0.000000,0.000000,0.250000,0,0);}
.ma2_c01012{transform:matrix(0.257933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257933,0.000000,0.000000,0.250000,0,0);}
.m5b_c01012{transform:matrix(0.262535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262535,0.000000,0.000000,0.250000,0,0);}
.m46_c01012{transform:matrix(0.263700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263700,0.000000,0.000000,0.250000,0,0);}
.m3d_c01012{transform:matrix(0.267450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267450,0.000000,0.000000,0.250000,0,0);}
.m37_c01012{transform:matrix(0.267599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267599,0.000000,0.000000,0.250000,0,0);}
.mf_c01012{transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);}
.m2f_c01012{transform:matrix(0.268679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268679,0.000000,0.000000,0.250000,0,0);}
.m55_c01012{transform:matrix(0.268840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268840,0.000000,0.000000,0.250000,0,0);}
.ma8_c01012{transform:matrix(0.269082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269082,0.000000,0.000000,0.250000,0,0);}
.m6b_c01012{transform:matrix(0.269987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269987,0.000000,0.000000,0.250000,0,0);}
.m2e_c01012{transform:matrix(0.270190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270190,0.000000,0.000000,0.250000,0,0);}
.mc9_c01012{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m15_c01012{transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);}
.m9b_c01012{transform:matrix(0.271690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271690,0.000000,0.000000,0.250000,0,0);}
.mbb_c01012{transform:matrix(0.272274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272274,0.000000,0.000000,0.250000,0,0);}
.m1e_c01012{transform:matrix(0.272474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272474,0.000000,0.000000,0.250000,0,0);}
.m22_c01012{transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);}
.mb_c01012{transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);}
.m7b_c01012{transform:matrix(0.273725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273725,0.000000,0.000000,0.250000,0,0);}
.m1d_c01012{transform:matrix(0.273760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273760,0.000000,0.000000,0.250000,0,0);}
.mb6_c01012{transform:matrix(0.275028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275028,0.000000,0.000000,0.250000,0,0);}
.m4f_c01012{transform:matrix(0.275368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275368,0.000000,0.000000,0.250000,0,0);}
.m62_c01012{transform:matrix(0.275823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275823,0.000000,0.000000,0.250000,0,0);}
.m8a_c01012{transform:matrix(0.275827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275827,0.000000,0.000000,0.250000,0,0);}
.m9c_c01012{transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);}
.m81_c01012{transform:matrix(0.276672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276672,0.000000,0.000000,0.250000,0,0);}
.m11_c01012{transform:matrix(0.277502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277502,0.000000,0.000000,0.250000,0,0);}
.m6_c01012{transform:matrix(0.278463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278463,0.000000,0.000000,0.250000,0,0);}
.m32_c01012{transform:matrix(0.279207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279207,0.000000,0.000000,0.250000,0,0);}
.m66_c01012{transform:matrix(0.279307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279307,0.000000,0.000000,0.250000,0,0);}
.m7e_c01012{transform:matrix(0.280175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280175,0.000000,0.000000,0.250000,0,0);}
.mac_c01012{transform:matrix(0.280542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280542,0.000000,0.000000,0.250000,0,0);}
.m41_c01012{transform:matrix(0.280716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280716,0.000000,0.000000,0.250000,0,0);}
.m8f_c01012{transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);}
.m6c_c01012{transform:matrix(0.281556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281556,0.000000,0.000000,0.250000,0,0);}
.m1_c01012{transform:matrix(0.281669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281669,0.000000,0.000000,0.250000,0,0);}
.m34_c01012{transform:matrix(0.282883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282883,0.000000,0.000000,0.250000,0,0);}
.ma6_c01012{transform:matrix(0.282890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282890,0.000000,0.000000,0.250000,0,0);}
.m26_c01012{transform:matrix(0.283279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283279,0.000000,0.000000,0.250000,0,0);}
.m38_c01012{transform:matrix(0.283332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283332,0.000000,0.000000,0.250000,0,0);}
.mc3_c01012{transform:matrix(0.283685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283685,0.000000,0.000000,0.250000,0,0);}
.m24_c01012{transform:matrix(0.283976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283976,0.000000,0.000000,0.250000,0,0);}
.mba_c01012{transform:matrix(0.284313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284313,0.000000,0.000000,0.250000,0,0);}
.m95_c01012{transform:matrix(0.284887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284887,0.000000,0.000000,0.250000,0,0);}
.mb9_c01012{transform:matrix(0.285444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285444,0.000000,0.000000,0.250000,0,0);}
.m77_c01012{transform:matrix(0.285652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285652,0.000000,0.000000,0.250000,0,0);}
.m60_c01012{transform:matrix(0.287054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287054,0.000000,0.000000,0.250000,0,0);}
.m96_c01012{transform:matrix(0.287374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287374,0.000000,0.000000,0.250000,0,0);}
.m5e_c01012{transform:matrix(0.288158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288158,0.000000,0.000000,0.250000,0,0);}
.m33_c01012{transform:matrix(0.288569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288569,0.000000,0.000000,0.250000,0,0);}
.m75_c01012{transform:matrix(0.288717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288717,0.000000,0.000000,0.250000,0,0);}
.m9a_c01012{transform:matrix(0.288781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288781,0.000000,0.000000,0.250000,0,0);}
.ma7_c01012{transform:matrix(0.289122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289122,0.000000,0.000000,0.250000,0,0);}
.mb5_c01012{transform:matrix(0.289629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289629,0.000000,0.000000,0.250000,0,0);}
.m3a_c01012{transform:matrix(0.290353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290353,0.000000,0.000000,0.250000,0,0);}
.m78_c01012{transform:matrix(0.290929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290929,0.000000,0.000000,0.250000,0,0);}
.m2_c01012{transform:matrix(0.291495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291495,0.000000,0.000000,0.250000,0,0);}
.mc5_c01012{transform:matrix(0.291787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291787,0.000000,0.000000,0.250000,0,0);}
.m54_c01012{transform:matrix(0.291864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291864,0.000000,0.000000,0.250000,0,0);}
.m8d_c01012{transform:matrix(0.292385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292385,0.000000,0.000000,0.250000,0,0);}
.m6f_c01012{transform:matrix(0.292957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292957,0.000000,0.000000,0.250000,0,0);}
.m9e_c01012{transform:matrix(0.293088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293088,0.000000,0.000000,0.250000,0,0);}
.m0_c01012{transform:matrix(0.293450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293450,0.000000,0.000000,0.250000,0,0);}
.m5_c01012{transform:matrix(0.293466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293466,0.000000,0.000000,0.250000,0,0);}
.m50_c01012{transform:matrix(0.293938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293938,0.000000,0.000000,0.250000,0,0);}
.m89_c01012{transform:matrix(0.294036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294036,0.000000,0.000000,0.250000,0,0);}
.mbd_c01012{transform:matrix(0.294194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294194,0.000000,0.000000,0.250000,0,0);}
.m4_c01012{transform:matrix(0.294503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294503,0.000000,0.000000,0.250000,0,0);}
.m3c_c01012{transform:matrix(0.294964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294964,0.000000,0.000000,0.250000,0,0);}
.m30_c01012{transform:matrix(0.295101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295101,0.000000,0.000000,0.250000,0,0);}
.m21_c01012{transform:matrix(0.295135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295135,0.000000,0.000000,0.250000,0,0);}
.m1c_c01012{transform:matrix(0.295831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295831,0.000000,0.000000,0.250000,0,0);}
.m9_c01012{transform:matrix(0.296093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296093,0.000000,0.000000,0.250000,0,0);}
.md_c01012{transform:matrix(0.296335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296335,0.000000,0.000000,0.250000,0,0);}
.m3_c01012{transform:matrix(0.296896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296896,0.000000,0.000000,0.250000,0,0);}
.m71_c01012{transform:matrix(0.297097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297097,0.000000,0.000000,0.250000,0,0);}
.m23_c01012{transform:matrix(0.297146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297146,0.000000,0.000000,0.250000,0,0);}
.m44_c01012{transform:matrix(0.297348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297348,0.000000,0.000000,0.250000,0,0);}
.m3f_c01012{transform:matrix(0.297390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297390,0.000000,0.000000,0.250000,0,0);}
.m18_c01012{transform:matrix(0.299095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299095,0.000000,0.000000,0.250000,0,0);}
.m31_c01012{transform:matrix(0.300129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300129,0.000000,0.000000,0.250000,0,0);}
.m57_c01012{transform:matrix(0.300442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300442,0.000000,0.000000,0.250000,0,0);}
.m8b_c01012{transform:matrix(0.300520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300520,0.000000,0.000000,0.250000,0,0);}
.mc_c01012{transform:matrix(0.300565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300565,0.000000,0.000000,0.250000,0,0);}
.mc0_c01012{transform:matrix(0.300769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300769,0.000000,0.000000,0.250000,0,0);}
.mc7_c01012{transform:matrix(0.301015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301015,0.000000,0.000000,0.250000,0,0);}
.m20_c01012{transform:matrix(0.301358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301358,0.000000,0.000000,0.250000,0,0);}
.m64_c01012{transform:matrix(0.302445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302445,0.000000,0.000000,0.250000,0,0);}
.m79_c01012{transform:matrix(0.302495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302495,0.000000,0.000000,0.250000,0,0);}
.m4c_c01012{transform:matrix(0.302851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302851,0.000000,0.000000,0.250000,0,0);}
.m91_c01012{transform:matrix(0.303180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303180,0.000000,0.000000,0.250000,0,0);}
.mb0_c01012{transform:matrix(0.303779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303779,0.000000,0.000000,0.250000,0,0);}
.maa_c01012{transform:matrix(0.304698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304698,0.000000,0.000000,0.250000,0,0);}
.m3e_c01012{transform:matrix(0.304894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304894,0.000000,0.000000,0.250000,0,0);}
.m8_c01012{transform:matrix(0.305077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305077,0.000000,0.000000,0.250000,0,0);}
.m1a_c01012{transform:matrix(0.305785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305785,0.000000,0.000000,0.250000,0,0);}
.m29_c01012{transform:matrix(0.306031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306031,0.000000,0.000000,0.250000,0,0);}
.m59_c01012{transform:matrix(0.306093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306093,0.000000,0.000000,0.250000,0,0);}
.m12_c01012{transform:matrix(0.306504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306504,0.000000,0.000000,0.250000,0,0);}
.m9d_c01012{transform:matrix(0.306543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306543,0.000000,0.000000,0.250000,0,0);}
.mb8_c01012{transform:matrix(0.306824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306824,0.000000,0.000000,0.250000,0,0);}
.ma0_c01012{transform:matrix(0.306967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306967,0.000000,0.000000,0.250000,0,0);}
.m83_c01012{transform:matrix(0.307133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307133,0.000000,0.000000,0.250000,0,0);}
.me_c01012{transform:matrix(0.307474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307474,0.000000,0.000000,0.250000,0,0);}
.m82_c01012{transform:matrix(0.307994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307994,0.000000,0.000000,0.250000,0,0);}
.m68_c01012{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);}
.mbf_c01012{transform:matrix(0.310014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310014,0.000000,0.000000,0.250000,0,0);}
.mb2_c01012{transform:matrix(0.310338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310338,0.000000,0.000000,0.250000,0,0);}
.m3b_c01012{transform:matrix(0.311068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311068,0.000000,0.000000,0.250000,0,0);}
.m2d_c01012{transform:matrix(0.311366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311366,0.000000,0.000000,0.250000,0,0);}
.m93_c01012{transform:matrix(0.311495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311495,0.000000,0.000000,0.250000,0,0);}
.m99_c01012{transform:matrix(0.311592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311592,0.000000,0.000000,0.250000,0,0);}
.m7f_c01012{transform:matrix(0.311620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311620,0.000000,0.000000,0.250000,0,0);}
.m2a_c01012{transform:matrix(0.311700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311700,0.000000,0.000000,0.250000,0,0);}
.m4e_c01012{transform:matrix(0.311972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311972,0.000000,0.000000,0.250000,0,0);}
.mc4_c01012{transform:matrix(0.312068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312068,0.000000,0.000000,0.250000,0,0);}
.m4b_c01012{transform:matrix(0.315359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315359,0.000000,0.000000,0.250000,0,0);}
.mc2_c01012{transform:matrix(0.315372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315372,0.000000,0.000000,0.250000,0,0);}
.m86_c01012{transform:matrix(0.315921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315921,0.000000,0.000000,0.250000,0,0);}
.m61_c01012{transform:matrix(0.316292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316292,0.000000,0.000000,0.250000,0,0);}
.ma9_c01012{transform:matrix(0.317059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317059,0.000000,0.000000,0.250000,0,0);}
.m5a_c01012{transform:matrix(0.318091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318091,0.000000,0.000000,0.250000,0,0);}
.m51_c01012{transform:matrix(0.318261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318261,0.000000,0.000000,0.250000,0,0);}
.m45_c01012{transform:matrix(0.318309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318309,0.000000,0.000000,0.250000,0,0);}
.m13_c01012{transform:matrix(0.318882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318882,0.000000,0.000000,0.250000,0,0);}
.m85_c01012{transform:matrix(0.319736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319736,0.000000,0.000000,0.250000,0,0);}
.mab_c01012{transform:matrix(0.319873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319873,0.000000,0.000000,0.250000,0,0);}
.m72_c01012{transform:matrix(0.319887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319887,0.000000,0.000000,0.250000,0,0);}
.m16_c01012{transform:matrix(0.321071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321071,0.000000,0.000000,0.250000,0,0);}
.mbe_c01012{transform:matrix(0.321354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321354,0.000000,0.000000,0.250000,0,0);}
.ma4_c01012{transform:matrix(0.322616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322616,0.000000,0.000000,0.250000,0,0);}
.m28_c01012{transform:matrix(0.322781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322781,0.000000,0.000000,0.250000,0,0);}
.m9f_c01012{transform:matrix(0.322832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322832,0.000000,0.000000,0.250000,0,0);}
.m97_c01012{transform:matrix(0.324236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324236,0.000000,0.000000,0.250000,0,0);}
.mb1_c01012{transform:matrix(0.325340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325340,0.000000,0.000000,0.250000,0,0);}
.m4a_c01012{transform:matrix(0.326853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326853,0.000000,0.000000,0.250000,0,0);}
.m53_c01012{transform:matrix(0.327021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327021,0.000000,0.000000,0.250000,0,0);}
.m56_c01012{transform:matrix(0.327872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327872,0.000000,0.000000,0.250000,0,0);}
.m43_c01012{transform:matrix(0.330932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330932,0.000000,0.000000,0.250000,0,0);}
.m76_c01012{transform:matrix(0.331872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331872,0.000000,0.000000,0.250000,0,0);}
.ma5_c01012{transform:matrix(0.331974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331974,0.000000,0.000000,0.250000,0,0);}
.m80_c01012{transform:matrix(0.332784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332784,0.000000,0.000000,0.250000,0,0);}
.m6e_c01012{transform:matrix(0.333467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333467,0.000000,0.000000,0.250000,0,0);}
.m49_c01012{transform:matrix(0.333738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333738,0.000000,0.000000,0.250000,0,0);}
.m74_c01012{transform:matrix(0.335295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335295,0.000000,0.000000,0.250000,0,0);}
.m73_c01012{transform:matrix(0.336622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336622,0.000000,0.000000,0.250000,0,0);}
.m2c_c01012{transform:matrix(0.336676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336676,0.000000,0.000000,0.250000,0,0);}
.m67_c01012{transform:matrix(0.336770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336770,0.000000,0.000000,0.250000,0,0);}
.m69_c01012{transform:matrix(0.336817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336817,0.000000,0.000000,0.250000,0,0);}
.m47_c01012{transform:matrix(0.337593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337593,0.000000,0.000000,0.250000,0,0);}
.ma3_c01012{transform:matrix(0.337972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337972,0.000000,0.000000,0.250000,0,0);}
.mae_c01012{transform:matrix(0.338050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338050,0.000000,0.000000,0.250000,0,0);}
.mc1_c01012{transform:matrix(0.338230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338230,0.000000,0.000000,0.250000,0,0);}
.m1b_c01012{transform:matrix(0.339155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339155,0.000000,0.000000,0.250000,0,0);}
.mbc_c01012{transform:matrix(0.339284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339284,0.000000,0.000000,0.250000,0,0);}
.m8e_c01012{transform:matrix(0.339520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339520,0.000000,0.000000,0.250000,0,0);}
.m90_c01012{transform:matrix(0.340970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340970,0.000000,0.000000,0.250000,0,0);}
.m10_c01012{transform:matrix(0.341731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341731,0.000000,0.000000,0.250000,0,0);}
.m1f_c01012{transform:matrix(0.342481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342481,0.000000,0.000000,0.250000,0,0);}
.m7d_c01012{transform:matrix(0.342830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342830,0.000000,0.000000,0.250000,0,0);}
.m35_c01012{transform:matrix(0.343438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343438,0.000000,0.000000,0.250000,0,0);}
.m36_c01012{transform:matrix(0.343742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343742,0.000000,0.000000,0.250000,0,0);}
.m8c_c01012{transform:matrix(0.344434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344434,0.000000,0.000000,0.250000,0,0);}
.m25_c01012{transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);}
.m88_c01012{transform:matrix(0.345553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345553,0.000000,0.000000,0.250000,0,0);}
.mb7_c01012{transform:matrix(0.347328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347328,0.000000,0.000000,0.250000,0,0);}
.m65_c01012{transform:matrix(0.347429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347429,0.000000,0.000000,0.250000,0,0);}
.mc6_c01012{transform:matrix(0.348177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348177,0.000000,0.000000,0.250000,0,0);}
.m7_c01012{transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);}
.m40_c01012{transform:matrix(0.352476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352476,0.000000,0.000000,0.250000,0,0);}
.ma1_c01012{transform:matrix(0.354343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354343,0.000000,0.000000,0.250000,0,0);}
.m42_c01012{transform:matrix(0.357032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357032,0.000000,0.000000,0.250000,0,0);}
.m87_c01012{transform:matrix(0.357996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357996,0.000000,0.000000,0.250000,0,0);}
.m5f_c01012{transform:matrix(0.362885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362885,0.000000,0.000000,0.250000,0,0);}
.m5c_c01012{transform:matrix(0.364423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364423,0.000000,0.000000,0.250000,0,0);}
.m39_c01012{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);}
.m7a_c01012{transform:matrix(0.374479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374479,0.000000,0.000000,0.250000,0,0);}
.m98_c01012{transform:matrix(0.379475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379475,0.000000,0.000000,0.250000,0,0);}
.m27_c01012{transform:matrix(0.387076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387076,0.000000,0.000000,0.250000,0,0);}
.maf_c01012{transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);}
.m17_c01012{transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);}
.m70_c01012{transform:matrix(0.405805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405805,0.000000,0.000000,0.250000,0,0);}
.m84_c01012{transform:matrix(0.407135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407135,0.000000,0.000000,0.250000,0,0);}
.v0_c01012{vertical-align:0.000000px;}
.lsf_c01012{letter-spacing:-2.869027px;}
.lsa_c01012{letter-spacing:-2.654190px;}
.ls3_c01012{letter-spacing:-2.647267px;}
.ls11_c01012{letter-spacing:-0.635344px;}
.ls4_c01012{letter-spacing:-0.347927px;}
.ls2_c01012{letter-spacing:0.000000px;}
.ls0_c01012{letter-spacing:1.081598px;}
.ls10_c01012{letter-spacing:1.098427px;}
.lsd_c01012{letter-spacing:1.210179px;}
.lse_c01012{letter-spacing:1.910700px;}
.ls5_c01012{letter-spacing:1.930500px;}
.lsb_c01012{letter-spacing:3.623400px;}
.ls1_c01012{letter-spacing:3.781810px;}
.ls9_c01012{letter-spacing:3.979810px;}
.ls8_c01012{letter-spacing:4.227310px;}
.lsc_c01012{letter-spacing:29.937798px;}
.ls7_c01012{letter-spacing:54.172998px;}
.ls6_c01012{letter-spacing:57.024198px;}
.sc__c01012{text-shadow:none;}
.sc0_c01012{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01012{-webkit-text-stroke:0px transparent;}
.sc0_c01012{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01012{word-spacing:-18.909050px;}
.ws1_c01012{word-spacing:0.000000px;}
._4_c01012{width:3.403521px;}
._0_c01012{width:7.034060px;}
._3_c01012{width:9.151461px;}
._6_c01012{width:10.514108px;}
._1_c01012{width:18.684017px;}
._2_c01012{width:23.320292px;}
._5_c01012{width:29.460510px;}
._7_c01012{width:47.143800px;}
.fc0_c01012{color:transparent;}
.fse_c01012{font-size:22.572000px;}
.fsd_c01012{font-size:29.937798px;}
.fsf_c01012{font-size:38.214000px;}
.fs4_c01012{font-size:38.610000px;}
.fs6_c01012{font-size:54.172998px;}
.fs5_c01012{font-size:57.024198px;}
.fs1_c01012{font-size:66.330000px;}
.fsb_c01012{font-size:66.528000px;}
.fsa_c01012{font-size:72.468000px;}
.fs10_c01012{font-size:72.864000px;}
.fs3_c01012{font-size:74.844000px;}
.fs0_c01012{font-size:75.636198px;}
.fs7_c01012{font-size:75.834000px;}
.fsc_c01012{font-size:76.032198px;}
.fs2_c01012{font-size:79.200000px;}
.fs9_c01012{font-size:79.596198px;}
.fs11_c01012{font-size:81.972198px;}
.fs8_c01012{font-size:84.546198px;}
.y0_c01012{bottom:0.000000px;}
.y1_c01012{bottom:76.500000px;}
.y1f_c01012{bottom:123.226335px;}
.y1e_c01012{bottom:154.945935px;}
.y1d_c01012{bottom:187.021935px;}
.y1c_c01012{bottom:250.817535px;}
.y1b_c01012{bottom:283.249935px;}
.y1a_c01012{bottom:314.969535px;}
.y19_c01012{bottom:346.689135px;}
.y18_c01012{bottom:378.403785px;}
.y17_c01012{bottom:410.841135px;}
.y16_c01012{bottom:442.199385px;}
.y15_c01012{bottom:471.072735px;}
.y14_c01012{bottom:504.930735px;}
.y13_c01012{bottom:536.288985px;}
.y12_c01012{bottom:559.459935px;}
.y11_c01012{bottom:568.369935px;}
.y10_c01012{bottom:580.838985px;}
.yf_c01012{bottom:600.084585px;}
.ye_c01012{bottom:632.160585px;}
.yd_c01012{bottom:663.880185px;}
.yc_c01012{bottom:695.604735px;}
.yb_c01012{bottom:727.675785px;}
.y9_c01012{bottom:759.400335px;}
.ya_c01012{bottom:764.741385px;}
.y7_c01012{bottom:791.119935px;}
.y8_c01012{bottom:791.832735px;}
.y6_c01012{bottom:822.478185px;}
.y5_c01012{bottom:854.202735px;}
.y4_c01012{bottom:885.922335px;}
.y3_c01012{bottom:917.636985px;}
.y2_c01012{bottom:1054.138185px;}
.hf_c01012{height:19.938573px;}
.h10_c01012{height:23.541891px;}
.h8_c01012{height:36.079217px;}
.h7_c01012{height:37.978116px;}
.h11_c01012{height:39.856008px;}
.h6_c01012{height:40.269023px;}
.h3_c01012{height:69.180117px;}
.hd_c01012{height:69.386625px;}
.hc_c01012{height:71.123379px;}
.h5_c01012{height:73.455293px;}
.h2_c01012{height:74.232792px;}
.h4_c01012{height:77.730469px;}
.h9_c01012{height:79.092492px;}
.he_c01012{height:79.299207px;}
.h12_c01012{height:80.451229px;}
.ha_c01012{height:82.977470px;}
.hb_c01012{height:83.016347px;}
.h1_c01012{height:1110.000000px;}
.h0_c01012{height:1263.000000px;}
.w1_c01012{width:763.500000px;}
.w0_c01012{width:892.500000px;}
.x0_c01012{left:0.000000px;}
.x1_c01012{left:64.500000px;}
.x5f_c01012{left:69.325800px;}
.xf_c01012{left:70.429650px;}
.x3_c01012{left:73.741200px;}
.x23_c01012{left:92.630400px;}
.x44_c01012{left:102.822450px;}
.x2e_c01012{left:104.401500px;}
.x56_c01012{left:114.747000px;}
.x10_c01012{left:115.796400px;}
.x6f_c01012{left:124.577700px;}
.x24_c01012{left:125.632050px;}
.x4_c01012{left:128.206050px;}
.x2f_c01012{left:136.878450px;}
.x6c_c01012{left:138.808950px;}
.x40_c01012{left:148.555500px;}
.x5b_c01012{left:158.594100px;}
.x5_c01012{left:159.668250px;}
.x70_c01012{left:168.746550px;}
.x4d_c01012{left:170.389950px;}
.x30_c01012{left:181.591800px;}
.x57_c01012{left:191.902650px;}
.x6_c01012{left:193.060950px;}
.x60_c01012{left:202.896600px;}
.x11_c01012{left:204.243000px;}
.x45_c01012{left:213.618300px;}
.x31_c01012{left:215.623050px;}
.x1f_c01012{left:227.008050px;}
.x46_c01012{left:235.086450px;}
.x7_c01012{left:236.809050px;}
.x12_c01012{left:238.026750px;}
.x5c_c01012{left:246.491250px;}
.x69_c01012{left:248.100000px;}
.x18_c01012{left:259.059300px;}
.x71_c01012{left:260.074050px;}
.x47_c01012{left:269.256300px;}
.x25_c01012{left:271.196700px;}
.x3b_c01012{left:281.443200px;}
.x41_c01012{left:291.625350px;}
.x19_c01012{left:293.669700px;}
.x32_c01012{left:304.257750px;}
.x58_c01012{left:313.494450px;}
.x3c_c01012{left:315.068550px;}
.x65_c01012{left:320.964000px;}
.x6a_c01012{left:326.458500px;}
.x37_c01012{left:336.823800px;}
.x66_c01012{left:337.873200px;}
.x54_c01012{left:347.441550px;}
.x8_c01012{left:348.570150px;}
.x6b_c01012{left:357.688050px;}
.x13_c01012{left:369.775950px;}
.x1a_c01012{left:370.874850px;}
.x55_c01012{left:380.091750px;}
.x73_c01012{left:391.159950px;}
.x48_c01012{left:392.219250px;}
.x9_c01012{left:393.397350px;}
.x26_c01012{left:395.317950px;}
.x6d_c01012{left:402.559800px;}
.x1b_c01012{left:404.049750px;}
.x5d_c01012{left:414.509100px;}
.x61_c01012{left:417.043500px;}
.xa_c01012{left:425.047650px;}
.x50_c01012{left:426.196050px;}
.x20_c01012{left:427.309800px;}
.x59_c01012{left:435.338700px;}
.x27_c01012{left:436.947450px;}
.x38_c01012{left:447.604800px;}
.x33_c01012{left:458.682900px;}
.x62_c01012{left:459.742200px;}
.x67_c01012{left:468.845250px;}
.x28_c01012{left:470.434200px;}
.x14_c01012{left:481.878600px;}
.x5e_c01012{left:492.209250px;}
.xb_c01012{left:502.336950px;}
.x1c_c01012{left:504.247650px;}
.x49_c01012{left:514.281300px;}
.x15_c01012{left:515.598000px;}
.x34_c01012{left:525.715800px;}
.x63_c01012{left:534.066450px;}
.x42_c01012{left:536.392950px;}
.x1d_c01012{left:538.061100px;}
.x29_c01012{left:547.188900px;}
.x35_c01012{left:558.628350px;}
.x51_c01012{left:568.647150px;}
.x4a_c01012{left:570.201450px;}
.x2a_c01012{left:580.462800px;}
.x21_c01012{left:592.629900px;}
.x64_c01012{left:593.916900px;}
.x3d_c01012{left:601.465650px;}
.x4b_c01012{left:602.920950px;}
.x6e_c01012{left:604.445550px;}
.x43_c01012{left:613.187250px;}
.x39_c01012{left:624.780150px;}
.x22_c01012{left:626.086950px;}
.xc_c01012{left:635.249400px;}
.x1e_c01012{left:636.892800px;}
.x3e_c01012{left:645.669150px;}
.x16_c01012{left:646.698750px;}
.x2b_c01012{left:647.970900px;}
.xd_c01012{left:657.935250px;}
.x4e_c01012{left:667.756050px;}
.x2c_c01012{left:668.958900px;}
.x17_c01012{left:670.280550px;}
.x68_c01012{left:678.804450px;}
.x2_c01012{left:680.324100px;}
.x74_c01012{left:682.205100px;}
.x52_c01012{left:690.209250px;}
.x5a_c01012{left:696.134400px;}
.x4f_c01012{left:698.505450px;}
.x53_c01012{left:699.837000px;}
.x2d_c01012{left:701.569500px;}
.xe_c01012{left:703.861350px;}
.x36_c01012{left:705.272100px;}
.x3a_c01012{left:713.825700px;}
.x3f_c01012{left:724.527600px;}
.x72_c01012{left:735.991800px;}
.x4c_c01012{left:755.187900px;}
@media print{
.v0_c01012{vertical-align:0.000000pt;}
.lsf_c01012{letter-spacing:-2.550246pt;}
.lsa_c01012{letter-spacing:-2.359280pt;}
.ls3_c01012{letter-spacing:-2.353126pt;}
.ls11_c01012{letter-spacing:-0.564750pt;}
.ls4_c01012{letter-spacing:-0.309268pt;}
.ls2_c01012{letter-spacing:0.000000pt;}
.ls0_c01012{letter-spacing:0.961420pt;}
.ls10_c01012{letter-spacing:0.976380pt;}
.lsd_c01012{letter-spacing:1.075715pt;}
.lse_c01012{letter-spacing:1.698400pt;}
.ls5_c01012{letter-spacing:1.716000pt;}
.lsb_c01012{letter-spacing:3.220800pt;}
.ls1_c01012{letter-spacing:3.361609pt;}
.ls9_c01012{letter-spacing:3.537609pt;}
.ls8_c01012{letter-spacing:3.757609pt;}
.lsc_c01012{letter-spacing:26.611376pt;}
.ls7_c01012{letter-spacing:48.153776pt;}
.ls6_c01012{letter-spacing:50.688176pt;}
.ws0_c01012{word-spacing:-16.808044pt;}
.ws1_c01012{word-spacing:0.000000pt;}
._4_c01012{width:3.025352pt;}
._0_c01012{width:6.252498pt;}
._3_c01012{width:8.134632pt;}
._6_c01012{width:9.345874pt;}
._1_c01012{width:16.608015pt;}
._2_c01012{width:20.729148pt;}
._5_c01012{width:26.187120pt;}
._7_c01012{width:41.905600pt;}
.fse_c01012{font-size:20.064000pt;}
.fsd_c01012{font-size:26.611376pt;}
.fsf_c01012{font-size:33.968000pt;}
.fs4_c01012{font-size:34.320000pt;}
.fs6_c01012{font-size:48.153776pt;}
.fs5_c01012{font-size:50.688176pt;}
.fs1_c01012{font-size:58.960000pt;}
.fsb_c01012{font-size:59.136000pt;}
.fsa_c01012{font-size:64.416000pt;}
.fs10_c01012{font-size:64.768000pt;}
.fs3_c01012{font-size:66.528000pt;}
.fs0_c01012{font-size:67.232176pt;}
.fs7_c01012{font-size:67.408000pt;}
.fsc_c01012{font-size:67.584176pt;}
.fs2_c01012{font-size:70.400000pt;}
.fs9_c01012{font-size:70.752176pt;}
.fs11_c01012{font-size:72.864176pt;}
.fs8_c01012{font-size:75.152176pt;}
.y0_c01012{bottom:0.000000pt;}
.y1_c01012{bottom:68.000000pt;}
.y1f_c01012{bottom:109.534520pt;}
.y1e_c01012{bottom:137.729720pt;}
.y1d_c01012{bottom:166.241720pt;}
.y1c_c01012{bottom:222.948920pt;}
.y1b_c01012{bottom:251.777720pt;}
.y1a_c01012{bottom:279.972920pt;}
.y19_c01012{bottom:308.168120pt;}
.y18_c01012{bottom:336.358920pt;}
.y17_c01012{bottom:365.192120pt;}
.y16_c01012{bottom:393.066120pt;}
.y15_c01012{bottom:418.731320pt;}
.y14_c01012{bottom:448.827320pt;}
.y13_c01012{bottom:476.701320pt;}
.y12_c01012{bottom:497.297720pt;}
.y11_c01012{bottom:505.217720pt;}
.y10_c01012{bottom:516.301320pt;}
.yf_c01012{bottom:533.408520pt;}
.ye_c01012{bottom:561.920520pt;}
.yd_c01012{bottom:590.115720pt;}
.yc_c01012{bottom:618.315320pt;}
.yb_c01012{bottom:646.822920pt;}
.y9_c01012{bottom:675.022520pt;}
.ya_c01012{bottom:679.770120pt;}
.y7_c01012{bottom:703.217720pt;}
.y8_c01012{bottom:703.851320pt;}
.y6_c01012{bottom:731.091720pt;}
.y5_c01012{bottom:759.291320pt;}
.y4_c01012{bottom:787.486520pt;}
.y3_c01012{bottom:815.677320pt;}
.y2_c01012{bottom:937.011720pt;}
.hf_c01012{height:17.723176pt;}
.h10_c01012{height:20.926125pt;}
.h8_c01012{height:32.070415pt;}
.h7_c01012{height:33.758325pt;}
.h11_c01012{height:35.427563pt;}
.h6_c01012{height:35.794688pt;}
.h3_c01012{height:61.493438pt;}
.hd_c01012{height:61.677000pt;}
.hc_c01012{height:63.220781pt;}
.h5_c01012{height:65.293594pt;}
.h2_c01012{height:65.984704pt;}
.h4_c01012{height:69.093750pt;}
.h9_c01012{height:70.304438pt;}
.he_c01012{height:70.488184pt;}
.h12_c01012{height:71.512204pt;}
.ha_c01012{height:73.757751pt;}
.hb_c01012{height:73.792309pt;}
.h1_c01012{height:986.666667pt;}
.h0_c01012{height:1122.666667pt;}
.w1_c01012{width:678.666667pt;}
.w0_c01012{width:793.333333pt;}
.x0_c01012{left:0.000000pt;}
.x1_c01012{left:57.333333pt;}
.x5f_c01012{left:61.622933pt;}
.xf_c01012{left:62.604133pt;}
.x3_c01012{left:65.547733pt;}
.x23_c01012{left:82.338133pt;}
.x44_c01012{left:91.397733pt;}
.x2e_c01012{left:92.801333pt;}
.x56_c01012{left:101.997333pt;}
.x10_c01012{left:102.930133pt;}
.x6f_c01012{left:110.735733pt;}
.x24_c01012{left:111.672933pt;}
.x4_c01012{left:113.960933pt;}
.x2f_c01012{left:121.669733pt;}
.x6c_c01012{left:123.385733pt;}
.x40_c01012{left:132.049333pt;}
.x5b_c01012{left:140.972533pt;}
.x5_c01012{left:141.927333pt;}
.x70_c01012{left:149.996933pt;}
.x4d_c01012{left:151.457733pt;}
.x30_c01012{left:161.414933pt;}
.x57_c01012{left:170.580133pt;}
.x6_c01012{left:171.609733pt;}
.x60_c01012{left:180.352533pt;}
.x11_c01012{left:181.549333pt;}
.x45_c01012{left:189.882933pt;}
.x31_c01012{left:191.664933pt;}
.x1f_c01012{left:201.784933pt;}
.x46_c01012{left:208.965733pt;}
.x7_c01012{left:210.496933pt;}
.x12_c01012{left:211.579333pt;}
.x5c_c01012{left:219.103333pt;}
.x69_c01012{left:220.533333pt;}
.x18_c01012{left:230.274933pt;}
.x71_c01012{left:231.176933pt;}
.x47_c01012{left:239.338933pt;}
.x25_c01012{left:241.063733pt;}
.x3b_c01012{left:250.171733pt;}
.x41_c01012{left:259.222533pt;}
.x19_c01012{left:261.039733pt;}
.x32_c01012{left:270.451333pt;}
.x58_c01012{left:278.661733pt;}
.x3c_c01012{left:280.060933pt;}
.x65_c01012{left:285.301333pt;}
.x6a_c01012{left:290.185333pt;}
.x37_c01012{left:299.398933pt;}
.x66_c01012{left:300.331733pt;}
.x54_c01012{left:308.836933pt;}
.x8_c01012{left:309.840133pt;}
.x6b_c01012{left:317.944933pt;}
.x13_c01012{left:328.689733pt;}
.x1a_c01012{left:329.666533pt;}
.x55_c01012{left:337.859333pt;}
.x73_c01012{left:347.697733pt;}
.x48_c01012{left:348.639333pt;}
.x9_c01012{left:349.686533pt;}
.x26_c01012{left:351.393733pt;}
.x6d_c01012{left:357.830933pt;}
.x1b_c01012{left:359.155333pt;}
.x5d_c01012{left:368.452533pt;}
.x61_c01012{left:370.705333pt;}
.xa_c01012{left:377.820133pt;}
.x50_c01012{left:378.840933pt;}
.x20_c01012{left:379.830933pt;}
.x59_c01012{left:386.967733pt;}
.x27_c01012{left:388.397733pt;}
.x38_c01012{left:397.870933pt;}
.x33_c01012{left:407.718133pt;}
.x62_c01012{left:408.659733pt;}
.x67_c01012{left:416.751333pt;}
.x28_c01012{left:418.163733pt;}
.x14_c01012{left:428.336533pt;}
.x5e_c01012{left:437.519333pt;}
.xb_c01012{left:446.521733pt;}
.x1c_c01012{left:448.220133pt;}
.x49_c01012{left:457.138933pt;}
.x15_c01012{left:458.309333pt;}
.x34_c01012{left:467.302933pt;}
.x63_c01012{left:474.725733pt;}
.x42_c01012{left:476.793733pt;}
.x1d_c01012{left:478.276533pt;}
.x29_c01012{left:486.390133pt;}
.x35_c01012{left:496.558533pt;}
.x51_c01012{left:505.464133pt;}
.x4a_c01012{left:506.845733pt;}
.x2a_c01012{left:515.966933pt;}
.x21_c01012{left:526.782133pt;}
.x64_c01012{left:527.926133pt;}
.x3d_c01012{left:534.636133pt;}
.x4b_c01012{left:535.929733pt;}
.x6e_c01012{left:537.284933pt;}
.x43_c01012{left:545.055333pt;}
.x39_c01012{left:555.360133pt;}
.x22_c01012{left:556.521733pt;}
.xc_c01012{left:564.666133pt;}
.x1e_c01012{left:566.126933pt;}
.x3e_c01012{left:573.928133pt;}
.x16_c01012{left:574.843333pt;}
.x2b_c01012{left:575.974133pt;}
.xd_c01012{left:584.831333pt;}
.x4e_c01012{left:593.560933pt;}
.x2c_c01012{left:594.630133pt;}
.x17_c01012{left:595.804933pt;}
.x68_c01012{left:603.381733pt;}
.x2_c01012{left:604.732533pt;}
.x74_c01012{left:606.404533pt;}
.x52_c01012{left:613.519333pt;}
.x5a_c01012{left:618.786133pt;}
.x4f_c01012{left:620.893733pt;}
.x53_c01012{left:622.077333pt;}
.x2d_c01012{left:623.617333pt;}
.xe_c01012{left:625.654533pt;}
.x36_c01012{left:626.908533pt;}
.x3a_c01012{left:634.511733pt;}
.x3f_c01012{left:644.024533pt;}
.x72_c01012{left:654.214933pt;}
.x4c_c01012{left:671.278133pt;}
}





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

.ir_c01013:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01013{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01013;src:url('chunks/assets/font_e0064f35d050198b3f296693.woff2')format("woff");}.ff1_c01013{font-family:ff1_c01013;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01013;src:url('chunks/assets/font_2c0d84f4b40487375db686a7.woff2')format("woff");}.ff2_c01013{font-family:ff2_c01013;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01013;src:url('chunks/assets/font_443c0ad411a8310c259f79fa.woff2')format("woff");}.ff3_c01013{font-family:ff3_c01013;line-height:0.666000;font-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_c01013{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);}
.m58_c01013{transform:matrix(0.126894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126894,0.000000,0.000000,0.250000,0,0);}
.m56_c01013{transform:matrix(0.135882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135882,0.000000,0.000000,0.250000,0,0);}
.m8d_c01013{transform:matrix(0.139744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139744,0.000000,0.000000,0.250000,0,0);}
.m9e_c01013{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);}
.m22_c01013{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m45_c01013{transform:matrix(0.196417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196417,0.000000,0.000000,0.250000,0,0);}
.m55_c01013{transform:matrix(0.226798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226798,0.000000,0.000000,0.250000,0,0);}
.m1d_c01013{transform:matrix(0.232693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232693,0.000000,0.000000,0.250000,0,0);}
.m7d_c01013{transform:matrix(0.236598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236598,0.000000,0.000000,0.250000,0,0);}
.m74_c01013{transform:matrix(0.236775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236775,0.000000,0.000000,0.250000,0,0);}
.mb0_c01013{transform:matrix(0.240029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240029,0.000000,0.000000,0.250000,0,0);}
.m87_c01013{transform:matrix(0.241359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241359,0.000000,0.000000,0.250000,0,0);}
.m39_c01013{transform:matrix(0.245747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245747,0.000000,0.000000,0.250000,0,0);}
.m2_c01013{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.ma1_c01013{transform:matrix(0.250068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250068,0.000000,0.000000,0.250000,0,0);}
.m7f_c01013{transform:matrix(0.252006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252006,0.000000,0.000000,0.250000,0,0);}
.m1b_c01013{transform:matrix(0.252777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252777,0.000000,0.000000,0.250000,0,0);}
.mb2_c01013{transform:matrix(0.253545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253545,0.000000,0.000000,0.250000,0,0);}
.ma2_c01013{transform:matrix(0.253729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253729,0.000000,0.000000,0.250000,0,0);}
.m50_c01013{transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);}
.maf_c01013{transform:matrix(0.256222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256222,0.000000,0.000000,0.250000,0,0);}
.m4a_c01013{transform:matrix(0.256635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256635,0.000000,0.000000,0.250000,0,0);}
.m40_c01013{transform:matrix(0.258435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258435,0.000000,0.000000,0.250000,0,0);}
.m21_c01013{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m3c_c01013{transform:matrix(0.259035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259035,0.000000,0.000000,0.250000,0,0);}
.m2b_c01013{transform:matrix(0.259155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259155,0.000000,0.000000,0.250000,0,0);}
.m18_c01013{transform:matrix(0.260559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260559,0.000000,0.000000,0.250000,0,0);}
.ma0_c01013{transform:matrix(0.260579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260579,0.000000,0.000000,0.250000,0,0);}
.m7b_c01013{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m9f_c01013{transform:matrix(0.261418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261418,0.000000,0.000000,0.250000,0,0);}
.ma9_c01013{transform:matrix(0.261462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261462,0.000000,0.000000,0.250000,0,0);}
.m28_c01013{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.m52_c01013{transform:matrix(0.261757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261757,0.000000,0.000000,0.250000,0,0);}
.m5d_c01013{transform:matrix(0.261836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261836,0.000000,0.000000,0.250000,0,0);}
.m78_c01013{transform:matrix(0.262545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262545,0.000000,0.000000,0.250000,0,0);}
.m7_c01013{transform:matrix(0.263128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263128,0.000000,0.000000,0.250000,0,0);}
.mc_c01013{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m67_c01013{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m5c_c01013{transform:matrix(0.264965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264965,0.000000,0.000000,0.250000,0,0);}
.m2c_c01013{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m4e_c01013{transform:matrix(0.266706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266706,0.000000,0.000000,0.250000,0,0);}
.m24_c01013{transform:matrix(0.267311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267311,0.000000,0.000000,0.250000,0,0);}
.m15_c01013{transform:matrix(0.267921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267921,0.000000,0.000000,0.250000,0,0);}
.m8b_c01013{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m64_c01013{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.mab_c01013{transform:matrix(0.269857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269857,0.000000,0.000000,0.250000,0,0);}
.m36_c01013{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m20_c01013{transform:matrix(0.272806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272806,0.000000,0.000000,0.250000,0,0);}
.m3a_c01013{transform:matrix(0.273271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273271,0.000000,0.000000,0.250000,0,0);}
.m9c_c01013{transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);}
.mb_c01013{transform:matrix(0.274438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274438,0.000000,0.000000,0.250000,0,0);}
.ma3_c01013{transform:matrix(0.276488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276488,0.000000,0.000000,0.250000,0,0);}
.m99_c01013{transform:matrix(0.276504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276504,0.000000,0.000000,0.250000,0,0);}
.m1f_c01013{transform:matrix(0.277150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277150,0.000000,0.000000,0.250000,0,0);}
.m11_c01013{transform:matrix(0.277767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277767,0.000000,0.000000,0.250000,0,0);}
.me_c01013{transform:matrix(0.278968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278968,0.000000,0.000000,0.250000,0,0);}
.m51_c01013{transform:matrix(0.279240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279240,0.000000,0.000000,0.250000,0,0);}
.mae_c01013{transform:matrix(0.279325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279325,0.000000,0.000000,0.250000,0,0);}
.m83_c01013{transform:matrix(0.280634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280634,0.000000,0.000000,0.250000,0,0);}
.m90_c01013{transform:matrix(0.281190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281190,0.000000,0.000000,0.250000,0,0);}
.m5f_c01013{transform:matrix(0.281954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281954,0.000000,0.000000,0.250000,0,0);}
.m34_c01013{transform:matrix(0.282020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282020,0.000000,0.000000,0.250000,0,0);}
.m19_c01013{transform:matrix(0.282334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282334,0.000000,0.000000,0.250000,0,0);}
.ma6_c01013{transform:matrix(0.282795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282795,0.000000,0.000000,0.250000,0,0);}
.ma7_c01013{transform:matrix(0.282926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282926,0.000000,0.000000,0.250000,0,0);}
.m61_c01013{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m7c_c01013{transform:matrix(0.284169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284169,0.000000,0.000000,0.250000,0,0);}
.m14_c01013{transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);}
.m95_c01013{transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);}
.m94_c01013{transform:matrix(0.286088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286088,0.000000,0.000000,0.250000,0,0);}
.m6a_c01013{transform:matrix(0.286496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286496,0.000000,0.000000,0.250000,0,0);}
.mb1_c01013{transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);}
.m70_c01013{transform:matrix(0.287284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287284,0.000000,0.000000,0.250000,0,0);}
.m1c_c01013{transform:matrix(0.287456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287456,0.000000,0.000000,0.250000,0,0);}
.m8f_c01013{transform:matrix(0.287957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287957,0.000000,0.000000,0.250000,0,0);}
.md_c01013{transform:matrix(0.288806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288806,0.000000,0.000000,0.250000,0,0);}
.m4_c01013{transform:matrix(0.288817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288817,0.000000,0.000000,0.250000,0,0);}
.maa_c01013{transform:matrix(0.289734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289734,0.000000,0.000000,0.250000,0,0);}
.m62_c01013{transform:matrix(0.289900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289900,0.000000,0.000000,0.250000,0,0);}
.ma8_c01013{transform:matrix(0.290045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290045,0.000000,0.000000,0.250000,0,0);}
.m69_c01013{transform:matrix(0.290156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290156,0.000000,0.000000,0.250000,0,0);}
.m4d_c01013{transform:matrix(0.290357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290357,0.000000,0.000000,0.250000,0,0);}
.m38_c01013{transform:matrix(0.290479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290479,0.000000,0.000000,0.250000,0,0);}
.m42_c01013{transform:matrix(0.290585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290585,0.000000,0.000000,0.250000,0,0);}
.m3_c01013{transform:matrix(0.290838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290838,0.000000,0.000000,0.250000,0,0);}
.m0_c01013{transform:matrix(0.290924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290924,0.000000,0.000000,0.250000,0,0);}
.m47_c01013{transform:matrix(0.293012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293012,0.000000,0.000000,0.250000,0,0);}
.m96_c01013{transform:matrix(0.293314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293314,0.000000,0.000000,0.250000,0,0);}
.m85_c01013{transform:matrix(0.293400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293400,0.000000,0.000000,0.250000,0,0);}
.m71_c01013{transform:matrix(0.293496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293496,0.000000,0.000000,0.250000,0,0);}
.m63_c01013{transform:matrix(0.293682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293682,0.000000,0.000000,0.250000,0,0);}
.m79_c01013{transform:matrix(0.294136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294136,0.000000,0.000000,0.250000,0,0);}
.m60_c01013{transform:matrix(0.294443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294443,0.000000,0.000000,0.250000,0,0);}
.m76_c01013{transform:matrix(0.294459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294459,0.000000,0.000000,0.250000,0,0);}
.m2a_c01013{transform:matrix(0.294552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294552,0.000000,0.000000,0.250000,0,0);}
.m13_c01013{transform:matrix(0.295251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295251,0.000000,0.000000,0.250000,0,0);}
.m30_c01013{transform:matrix(0.295694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295694,0.000000,0.000000,0.250000,0,0);}
.m86_c01013{transform:matrix(0.295931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295931,0.000000,0.000000,0.250000,0,0);}
.m66_c01013{transform:matrix(0.296989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296989,0.000000,0.000000,0.250000,0,0);}
.m59_c01013{transform:matrix(0.297015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297015,0.000000,0.000000,0.250000,0,0);}
.m2d_c01013{transform:matrix(0.297357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297357,0.000000,0.000000,0.250000,0,0);}
.m82_c01013{transform:matrix(0.297583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297583,0.000000,0.000000,0.250000,0,0);}
.m2f_c01013{transform:matrix(0.298438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298438,0.000000,0.000000,0.250000,0,0);}
.m9d_c01013{transform:matrix(0.300496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300496,0.000000,0.000000,0.250000,0,0);}
.m93_c01013{transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);}
.m98_c01013{transform:matrix(0.301234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301234,0.000000,0.000000,0.250000,0,0);}
.m3f_c01013{transform:matrix(0.301589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301589,0.000000,0.000000,0.250000,0,0);}
.m41_c01013{transform:matrix(0.301814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301814,0.000000,0.000000,0.250000,0,0);}
.m6f_c01013{transform:matrix(0.302092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302092,0.000000,0.000000,0.250000,0,0);}
.m27_c01013{transform:matrix(0.302288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302288,0.000000,0.000000,0.250000,0,0);}
.m84_c01013{transform:matrix(0.302304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302304,0.000000,0.000000,0.250000,0,0);}
.m46_c01013{transform:matrix(0.302350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302350,0.000000,0.000000,0.250000,0,0);}
.m31_c01013{transform:matrix(0.302363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302363,0.000000,0.000000,0.250000,0,0);}
.m5e_c01013{transform:matrix(0.302737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302737,0.000000,0.000000,0.250000,0,0);}
.mb4_c01013{transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);}
.m9b_c01013{transform:matrix(0.303266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303266,0.000000,0.000000,0.250000,0,0);}
.m4c_c01013{transform:matrix(0.303812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303812,0.000000,0.000000,0.250000,0,0);}
.m6e_c01013{transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);}
.m9_c01013{transform:matrix(0.306206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306206,0.000000,0.000000,0.250000,0,0);}
.mb3_c01013{transform:matrix(0.306809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306809,0.000000,0.000000,0.250000,0,0);}
.m5a_c01013{transform:matrix(0.307034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307034,0.000000,0.000000,0.250000,0,0);}
.m43_c01013{transform:matrix(0.307411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307411,0.000000,0.000000,0.250000,0,0);}
.m5_c01013{transform:matrix(0.307694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307694,0.000000,0.000000,0.250000,0,0);}
.m3b_c01013{transform:matrix(0.307806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307806,0.000000,0.000000,0.250000,0,0);}
.m6b_c01013{transform:matrix(0.308099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308099,0.000000,0.000000,0.250000,0,0);}
.m72_c01013{transform:matrix(0.310368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310368,0.000000,0.000000,0.250000,0,0);}
.m1_c01013{transform:matrix(0.310523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310523,0.000000,0.000000,0.250000,0,0);}
.m6_c01013{transform:matrix(0.310696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310696,0.000000,0.000000,0.250000,0,0);}
.mad_c01013{transform:matrix(0.311060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311060,0.000000,0.000000,0.250000,0,0);}
.m81_c01013{transform:matrix(0.311211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311211,0.000000,0.000000,0.250000,0,0);}
.m8a_c01013{transform:matrix(0.312477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312477,0.000000,0.000000,0.250000,0,0);}
.ma5_c01013{transform:matrix(0.312531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312531,0.000000,0.000000,0.250000,0,0);}
.m54_c01013{transform:matrix(0.313295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313295,0.000000,0.000000,0.250000,0,0);}
.m65_c01013{transform:matrix(0.313862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313862,0.000000,0.000000,0.250000,0,0);}
.m10_c01013{transform:matrix(0.314298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314298,0.000000,0.000000,0.250000,0,0);}
.m91_c01013{transform:matrix(0.315664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315664,0.000000,0.000000,0.250000,0,0);}
.m23_c01013{transform:matrix(0.315996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315996,0.000000,0.000000,0.250000,0,0);}
.m4b_c01013{transform:matrix(0.316796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316796,0.000000,0.000000,0.250000,0,0);}
.m1e_c01013{transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);}
.mac_c01013{transform:matrix(0.319176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319176,0.000000,0.000000,0.250000,0,0);}
.m16_c01013{transform:matrix(0.319797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319797,0.000000,0.000000,0.250000,0,0);}
.m44_c01013{transform:matrix(0.319997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319997,0.000000,0.000000,0.250000,0,0);}
.m35_c01013{transform:matrix(0.320491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320491,0.000000,0.000000,0.250000,0,0);}
.m68_c01013{transform:matrix(0.321066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321066,0.000000,0.000000,0.250000,0,0);}
.m1a_c01013{transform:matrix(0.322386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322386,0.000000,0.000000,0.250000,0,0);}
.m29_c01013{transform:matrix(0.322830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322830,0.000000,0.000000,0.250000,0,0);}
.m7a_c01013{transform:matrix(0.323414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323414,0.000000,0.000000,0.250000,0,0);}
.m7e_c01013{transform:matrix(0.323442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323442,0.000000,0.000000,0.250000,0,0);}
.m2e_c01013{transform:matrix(0.323539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323539,0.000000,0.000000,0.250000,0,0);}
.m5b_c01013{transform:matrix(0.324729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324729,0.000000,0.000000,0.250000,0,0);}
.m49_c01013{transform:matrix(0.325190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325190,0.000000,0.000000,0.250000,0,0);}
.m33_c01013{transform:matrix(0.327076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327076,0.000000,0.000000,0.250000,0,0);}
.m6d_c01013{transform:matrix(0.327169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327169,0.000000,0.000000,0.250000,0,0);}
.m25_c01013{transform:matrix(0.327290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327290,0.000000,0.000000,0.250000,0,0);}
.m80_c01013{transform:matrix(0.327664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327664,0.000000,0.000000,0.250000,0,0);}
.m8e_c01013{transform:matrix(0.327730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327730,0.000000,0.000000,0.250000,0,0);}
.m17_c01013{transform:matrix(0.327810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327810,0.000000,0.000000,0.250000,0,0);}
.m75_c01013{transform:matrix(0.328100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328100,0.000000,0.000000,0.250000,0,0);}
.m4f_c01013{transform:matrix(0.328304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328304,0.000000,0.000000,0.250000,0,0);}
.m3e_c01013{transform:matrix(0.330280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330280,0.000000,0.000000,0.250000,0,0);}
.m3d_c01013{transform:matrix(0.330780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330780,0.000000,0.000000,0.250000,0,0);}
.m8c_c01013{transform:matrix(0.332205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332205,0.000000,0.000000,0.250000,0,0);}
.m88_c01013{transform:matrix(0.333729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333729,0.000000,0.000000,0.250000,0,0);}
.m26_c01013{transform:matrix(0.337752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337752,0.000000,0.000000,0.250000,0,0);}
.m92_c01013{transform:matrix(0.337826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337826,0.000000,0.000000,0.250000,0,0);}
.m37_c01013{transform:matrix(0.338886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338886,0.000000,0.000000,0.250000,0,0);}
.ma_c01013{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m32_c01013{transform:matrix(0.339860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339860,0.000000,0.000000,0.250000,0,0);}
.m8_c01013{transform:matrix(0.342184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342184,0.000000,0.000000,0.250000,0,0);}
.m53_c01013{transform:matrix(0.342694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342694,0.000000,0.000000,0.250000,0,0);}
.m12_c01013{transform:matrix(0.345977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345977,0.000000,0.000000,0.250000,0,0);}
.m48_c01013{transform:matrix(0.346501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346501,0.000000,0.000000,0.250000,0,0);}
.m97_c01013{transform:matrix(0.347013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347013,0.000000,0.000000,0.250000,0,0);}
.m73_c01013{transform:matrix(0.350030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350030,0.000000,0.000000,0.250000,0,0);}
.m89_c01013{transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);}
.m9a_c01013{transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);}
.mf_c01013{transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);}
.m6c_c01013{transform:matrix(0.385437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385437,0.000000,0.000000,0.250000,0,0);}
.m77_c01013{transform:matrix(0.391460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391460,0.000000,0.000000,0.250000,0,0);}
.ma4_c01013{transform:matrix(0.424701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424701,0.000000,0.000000,0.250000,0,0);}
.v0_c01013{vertical-align:0.000000px;}
.ls7_c01013{letter-spacing:-2.744280px;}
.lse_c01013{letter-spacing:-1.701454px;}
.lsa_c01013{letter-spacing:-1.685772px;}
.ls5_c01013{letter-spacing:-0.948737px;}
.ls4_c01013{letter-spacing:-0.470448px;}
.ls2_c01013{letter-spacing:0.000000px;}
.ls6_c01013{letter-spacing:2.759962px;}
.ls12_c01013{letter-spacing:3.081434px;}
.ls13_c01013{letter-spacing:3.682810px;}
.lsc_c01013{letter-spacing:3.692700px;}
.ls0_c01013{letter-spacing:3.752110px;}
.ls3_c01013{letter-spacing:3.801610px;}
.ls1_c01013{letter-spacing:3.920400px;}
.lsb_c01013{letter-spacing:3.979810px;}
.ls9_c01013{letter-spacing:4.158000px;}
.ls11_c01013{letter-spacing:4.455000px;}
.lsf_c01013{letter-spacing:55.598598px;}
.ls8_c01013{letter-spacing:57.024198px;}
.lsd_c01013{letter-spacing:62.726400px;}
.ls10_c01013{letter-spacing:64.152198px;}
.sc__c01013{text-shadow:none;}
.sc0_c01013{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01013{-webkit-text-stroke:0px transparent;}
.sc0_c01013{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01013{word-spacing:0.000000px;}
._0_c01013{width:28.775736px;}
.fc0_c01013{color:transparent;}
.fsc_c01013{font-size:55.598598px;}
.fs4_c01013{font-size:57.024198px;}
.fsa_c01013{font-size:62.726400px;}
.fsd_c01013{font-size:64.152198px;}
.fs2_c01013{font-size:66.330000px;}
.fs6_c01013{font-size:72.864000px;}
.fsf_c01013{font-size:73.656198px;}
.fs9_c01013{font-size:73.854000px;}
.fsb_c01013{font-size:74.844000px;}
.fs0_c01013{font-size:75.042198px;}
.fs3_c01013{font-size:76.032198px;}
.fs7_c01013{font-size:76.824000px;}
.fs1_c01013{font-size:78.408000px;}
.fs8_c01013{font-size:79.596198px;}
.fs5_c01013{font-size:83.160000px;}
.fse_c01013{font-size:89.100000px;}
.y0_c01013{bottom:0.000000px;}
.y1_c01013{bottom:76.500000px;}
.y19_c01013{bottom:127.859535px;}
.y18_c01013{bottom:159.222735px;}
.y17_c01013{bottom:191.293785px;}
.y16_c01013{bottom:223.374735px;}
.y15_c01013{bottom:255.450735px;}
.y14_c01013{bottom:287.526735px;}
.y13_c01013{bottom:383.749785px;}
.y12_c01013{bottom:415.117935px;}
.y11_c01013{bottom:446.119785px;}
.y10_c01013{bottom:477.839385px;}
.yf_c01013{bottom:509.202585px;}
.ye_c01013{bottom:540.927135px;}
.yd_c01013{bottom:571.928985px;}
.yc_c01013{bottom:604.361385px;}
.yb_c01013{bottom:636.442335px;}
.ya_c01013{bottom:668.874735px;}
.y9_c01013{bottom:700.945785px;}
.y8_c01013{bottom:764.033535px;}
.y7_c01013{bottom:796.104585px;}
.y6_c01013{bottom:827.829135px;}
.y5_c01013{bottom:858.835935px;}
.y4_c01013{bottom:891.263385px;}
.y3_c01013{bottom:922.631535px;}
.y2_c01013{bottom:1059.840585px;}
.he_c01013{height:37.028666px;}
.h6_c01013{height:37.978116px;}
.hc_c01013{height:41.775782px;}
.hf_c01013{height:42.725364px;}
.h4_c01013{height:69.180117px;}
.h8_c01013{height:71.512031px;}
.h11_c01013{height:72.289530px;}
.hd_c01013{height:73.455293px;}
.h2_c01013{height:73.649813px;}
.h5_c01013{height:74.621444px;}
.h9_c01013{height:75.398555px;}
.h3_c01013{height:76.953164px;}
.hb_c01013{height:77.027414px;}
.ha_c01013{height:78.119315px;}
.h7_c01013{height:81.616992px;}
.h10_c01013{height:87.446777px;}
.h1_c01013{height:1110.000000px;}
.h0_c01013{height:1263.000000px;}
.w1_c01013{width:763.500000px;}
.w0_c01013{width:892.500000px;}
.x0_c01013{left:0.000000px;}
.x1_c01013{left:64.500000px;}
.x42_c01013{left:76.107300px;}
.x3_c01013{left:77.146800px;}
.x5f_c01013{left:78.206100px;}
.x43_c01013{left:98.709000px;}
.x2b_c01013{left:110.376150px;}
.x33_c01013{left:121.835400px;}
.x2e_c01013{left:130.992900px;}
.x24_c01013{left:132.878850px;}
.xd_c01013{left:144.630150px;}
.x5b_c01013{left:154.480650px;}
.x18_c01013{left:155.762700px;}
.x39_c01013{left:156.955650px;}
.x4a_c01013{left:165.202350px;}
.x1d_c01013{left:167.137800px;}
.x3e_c01013{left:175.453800px;}
.x4_c01013{left:176.562600px;}
.xe_c01013{left:177.755550px;}
.x5_c01013{left:199.055400px;}
.x4b_c01013{left:200.223600px;}
.x2f_c01013{left:209.559300px;}
.x19_c01013{left:220.429500px;}
.x56_c01013{left:242.125350px;}
.x25_c01013{left:244.065750px;}
.x30_c01013{left:254.440950px;}
.x5e_c01013{left:256.193250px;}
.xf_c01013{left:266.251650px;}
.x34_c01013{left:277.087200px;}
.x44_c01013{left:286.917900px;}
.x4c_c01013{left:288.219750px;}
.x10_c01013{left:298.169250px;}
.x6_c01013{left:300.431400px;}
.x1a_c01013{left:310.935300px;}
.x2c_c01013{left:322.518300px;}
.x1e_c01013{left:332.655900px;}
.x58_c01013{left:333.809250px;}
.x45_c01013{left:341.328300px;}
.x11_c01013{left:344.620050px;}
.x46_c01013{left:355.198200px;}
.x3f_c01013{left:363.994350px;}
.x52_c01013{left:365.261550px;}
.x7_c01013{left:366.751500px;}
.x31_c01013{left:377.730600px;}
.x47_c01013{left:387.987000px;}
.x61_c01013{left:397.931550px;}
.x8_c01013{left:399.540300px;}
.x3a_c01013{left:409.757100px;}
.x12_c01013{left:410.955000px;}
.x1f_c01013{left:420.726300px;}
.x50_c01013{left:421.869750px;}
.x26_c01013{left:432.467700px;}
.x35_c01013{left:444.421950px;}
.x2d_c01013{left:454.747650px;}
.x60_c01013{left:464.608050px;}
.x13_c01013{left:465.776250px;}
.x5c_c01013{left:476.334600px;}
.x36_c01013{left:477.829500px;}
.x9_c01013{left:478.938300px;}
.x40_c01013{left:487.298850px;}
.x4d_c01013{left:488.595750px;}
.x14_c01013{left:498.431400px;}
.x1b_c01013{left:499.614450px;}
.x27_c01013{left:508.767000px;}
.x20_c01013{left:510.707400px;}
.x37_c01013{left:520.523250px;}
.xa_c01013{left:543.758550px;}
.x48_c01013{left:545.476200px;}
.x21_c01013{left:554.584200px;}
.x4f_c01013{left:565.404900px;}
.x53_c01013{left:575.933550px;}
.x54_c01013{left:576.968100px;}
.x3b_c01013{left:578.022450px;}
.x32_c01013{left:586.462200px;}
.x15_c01013{left:587.714550px;}
.x28_c01013{left:598.777800px;}
.x57_c01013{left:608.890650px;}
.x49_c01013{left:610.469700px;}
.x5d_c01013{left:617.449200px;}
.x1c_c01013{left:619.612350px;}
.x22_c01013{left:621.429000px;}
.x29_c01013{left:631.373550px;}
.x3c_c01013{left:641.857650px;}
.x16_c01013{left:643.674300px;}
.xb_c01013{left:653.663400px;}
.x2_c01013{left:665.003850px;}
.x2a_c01013{left:676.799700px;}
.x59_c01013{left:685.576050px;}
.x3d_c01013{left:686.749200px;}
.x38_c01013{left:696.936300px;}
.x4e_c01013{left:698.178750px;}
.x23_c01013{left:709.514250px;}
.xc_c01013{left:710.850750px;}
.x17_c01013{left:720.102300px;}
.x41_c01013{left:722.300100px;}
.x5a_c01013{left:731.932800px;}
.x55_c01013{left:733.279200px;}
.x51_c01013{left:741.798150px;}
@media print{
.v0_c01013{vertical-align:0.000000pt;}
.ls7_c01013{letter-spacing:-2.439360pt;}
.lse_c01013{letter-spacing:-1.512403pt;}
.lsa_c01013{letter-spacing:-1.498464pt;}
.ls5_c01013{letter-spacing:-0.843322pt;}
.ls4_c01013{letter-spacing:-0.418176pt;}
.ls2_c01013{letter-spacing:0.000000pt;}
.ls6_c01013{letter-spacing:2.453299pt;}
.ls12_c01013{letter-spacing:2.739053pt;}
.ls13_c01013{letter-spacing:3.273609pt;}
.lsc_c01013{letter-spacing:3.282400pt;}
.ls0_c01013{letter-spacing:3.335209pt;}
.ls3_c01013{letter-spacing:3.379209pt;}
.ls1_c01013{letter-spacing:3.484800pt;}
.lsb_c01013{letter-spacing:3.537609pt;}
.ls9_c01013{letter-spacing:3.696000pt;}
.ls11_c01013{letter-spacing:3.960000pt;}
.lsf_c01013{letter-spacing:49.420976pt;}
.ls8_c01013{letter-spacing:50.688176pt;}
.lsd_c01013{letter-spacing:55.756800pt;}
.ls10_c01013{letter-spacing:57.024176pt;}
.ws0_c01013{word-spacing:0.000000pt;}
._0_c01013{width:25.578432pt;}
.fsc_c01013{font-size:49.420976pt;}
.fs4_c01013{font-size:50.688176pt;}
.fsa_c01013{font-size:55.756800pt;}
.fsd_c01013{font-size:57.024176pt;}
.fs2_c01013{font-size:58.960000pt;}
.fs6_c01013{font-size:64.768000pt;}
.fsf_c01013{font-size:65.472176pt;}
.fs9_c01013{font-size:65.648000pt;}
.fsb_c01013{font-size:66.528000pt;}
.fs0_c01013{font-size:66.704176pt;}
.fs3_c01013{font-size:67.584176pt;}
.fs7_c01013{font-size:68.288000pt;}
.fs1_c01013{font-size:69.696000pt;}
.fs8_c01013{font-size:70.752176pt;}
.fs5_c01013{font-size:73.920000pt;}
.fse_c01013{font-size:79.200000pt;}
.y0_c01013{bottom:0.000000pt;}
.y1_c01013{bottom:68.000000pt;}
.y19_c01013{bottom:113.652920pt;}
.y18_c01013{bottom:141.531320pt;}
.y17_c01013{bottom:170.038920pt;}
.y16_c01013{bottom:198.555320pt;}
.y15_c01013{bottom:227.067320pt;}
.y14_c01013{bottom:255.579320pt;}
.y13_c01013{bottom:341.110920pt;}
.y12_c01013{bottom:368.993720pt;}
.y11_c01013{bottom:396.550920pt;}
.y10_c01013{bottom:424.746120pt;}
.yf_c01013{bottom:452.624520pt;}
.ye_c01013{bottom:480.824120pt;}
.yd_c01013{bottom:508.381320pt;}
.yc_c01013{bottom:537.210120pt;}
.yb_c01013{bottom:565.726520pt;}
.ya_c01013{bottom:594.555320pt;}
.y9_c01013{bottom:623.062920pt;}
.y8_c01013{bottom:679.140920pt;}
.y7_c01013{bottom:707.648520pt;}
.y6_c01013{bottom:735.848120pt;}
.y5_c01013{bottom:763.409720pt;}
.y4_c01013{bottom:792.234120pt;}
.y3_c01013{bottom:820.116920pt;}
.y2_c01013{bottom:942.080520pt;}
.he_c01013{height:32.914370pt;}
.h6_c01013{height:33.758325pt;}
.hc_c01013{height:37.134029pt;}
.hf_c01013{height:37.978101pt;}
.h4_c01013{height:61.493438pt;}
.h8_c01013{height:63.566250pt;}
.h11_c01013{height:64.257360pt;}
.hd_c01013{height:65.293594pt;}
.h2_c01013{height:65.466501pt;}
.h5_c01013{height:66.330173pt;}
.h9_c01013{height:67.020938pt;}
.h3_c01013{height:68.402813pt;}
.hb_c01013{height:68.468813pt;}
.ha_c01013{height:69.439391pt;}
.h7_c01013{height:72.548438pt;}
.h10_c01013{height:77.730469pt;}
.h1_c01013{height:986.666667pt;}
.h0_c01013{height:1122.666667pt;}
.w1_c01013{width:678.666667pt;}
.w0_c01013{width:793.333333pt;}
.x0_c01013{left:0.000000pt;}
.x1_c01013{left:57.333333pt;}
.x42_c01013{left:67.650933pt;}
.x3_c01013{left:68.574933pt;}
.x5f_c01013{left:69.516533pt;}
.x43_c01013{left:87.741333pt;}
.x2b_c01013{left:98.112133pt;}
.x33_c01013{left:108.298133pt;}
.x2e_c01013{left:116.438133pt;}
.x24_c01013{left:118.114533pt;}
.xd_c01013{left:128.560133pt;}
.x5b_c01013{left:137.316133pt;}
.x18_c01013{left:138.455733pt;}
.x39_c01013{left:139.516133pt;}
.x4a_c01013{left:146.846533pt;}
.x1d_c01013{left:148.566933pt;}
.x3e_c01013{left:155.958933pt;}
.x4_c01013{left:156.944533pt;}
.xe_c01013{left:158.004933pt;}
.x5_c01013{left:176.938133pt;}
.x4b_c01013{left:177.976533pt;}
.x2f_c01013{left:186.274933pt;}
.x19_c01013{left:195.937333pt;}
.x56_c01013{left:215.222533pt;}
.x25_c01013{left:216.947333pt;}
.x30_c01013{left:226.169733pt;}
.x5e_c01013{left:227.727333pt;}
.xf_c01013{left:236.668133pt;}
.x34_c01013{left:246.299733pt;}
.x44_c01013{left:255.038133pt;}
.x4c_c01013{left:256.195333pt;}
.x10_c01013{left:265.039333pt;}
.x6_c01013{left:267.050133pt;}
.x1a_c01013{left:276.386933pt;}
.x2c_c01013{left:286.682933pt;}
.x1e_c01013{left:295.694133pt;}
.x58_c01013{left:296.719333pt;}
.x45_c01013{left:303.402933pt;}
.x11_c01013{left:306.328933pt;}
.x46_c01013{left:315.731733pt;}
.x3f_c01013{left:323.550533pt;}
.x52_c01013{left:324.676933pt;}
.x7_c01013{left:326.001333pt;}
.x31_c01013{left:335.760533pt;}
.x47_c01013{left:344.877333pt;}
.x61_c01013{left:353.716933pt;}
.x8_c01013{left:355.146933pt;}
.x3a_c01013{left:364.228533pt;}
.x12_c01013{left:365.293333pt;}
.x1f_c01013{left:373.978933pt;}
.x50_c01013{left:374.995333pt;}
.x26_c01013{left:384.415733pt;}
.x35_c01013{left:395.041733pt;}
.x2d_c01013{left:404.220133pt;}
.x60_c01013{left:412.984933pt;}
.x13_c01013{left:414.023333pt;}
.x5c_c01013{left:423.408533pt;}
.x36_c01013{left:424.737333pt;}
.x9_c01013{left:425.722933pt;}
.x40_c01013{left:433.154533pt;}
.x4d_c01013{left:434.307333pt;}
.x14_c01013{left:443.050133pt;}
.x1b_c01013{left:444.101733pt;}
.x27_c01013{left:452.237333pt;}
.x20_c01013{left:453.962133pt;}
.x37_c01013{left:462.687333pt;}
.xa_c01013{left:483.340933pt;}
.x48_c01013{left:484.867733pt;}
.x21_c01013{left:492.963733pt;}
.x4f_c01013{left:502.582133pt;}
.x53_c01013{left:511.940933pt;}
.x54_c01013{left:512.860533pt;}
.x3b_c01013{left:513.797733pt;}
.x32_c01013{left:521.299733pt;}
.x15_c01013{left:522.412933pt;}
.x28_c01013{left:532.246933pt;}
.x57_c01013{left:541.236133pt;}
.x49_c01013{left:542.639733pt;}
.x5d_c01013{left:548.843733pt;}
.x1c_c01013{left:550.766533pt;}
.x22_c01013{left:552.381333pt;}
.x29_c01013{left:561.220933pt;}
.x3c_c01013{left:570.540133pt;}
.x16_c01013{left:572.154933pt;}
.xb_c01013{left:581.034133pt;}
.x2_c01013{left:591.114533pt;}
.x2a_c01013{left:601.599733pt;}
.x59_c01013{left:609.400933pt;}
.x3d_c01013{left:610.443733pt;}
.x38_c01013{left:619.498933pt;}
.x4e_c01013{left:620.603333pt;}
.x23_c01013{left:630.679333pt;}
.xc_c01013{left:631.867333pt;}
.x17_c01013{left:640.090933pt;}
.x41_c01013{left:642.044533pt;}
.x5a_c01013{left:650.606933pt;}
.x55_c01013{left:651.803733pt;}
.x51_c01013{left:659.376133pt;}
}





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

.ir_c01014:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01014{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01014;src:url('chunks/assets/font_d37f9bebb3ff9758b7d1d352.woff2')format("woff");}.ff1_c01014{font-family:ff1_c01014;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01014;src:url('chunks/assets/font_e51b6014ca645d6c4697d6df.woff2')format("woff");}.ff2_c01014{font-family:ff2_c01014;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01014;src:url('chunks/assets/font_8e515e0490f3fcfa18da9611.woff2')format("woff");}.ff3_c01014{font-family:ff3_c01014;line-height:0.666000;font-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_c01014{transform:matrix(0.081395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081395,0.000000,0.000000,0.250000,0,0);}
.m33_c01014{transform:matrix(0.087209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087209,0.000000,0.000000,0.250000,0,0);}
.m32_c01014{transform:matrix(0.177003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177003,0.000000,0.000000,0.250000,0,0);}
.m51_c01014{transform:matrix(0.183721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183721,0.000000,0.000000,0.250000,0,0);}
.m4f_c01014{transform:matrix(0.191860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191860,0.000000,0.000000,0.250000,0,0);}
.m74_c01014{transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);}
.m52_c01014{transform:matrix(0.218879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218879,0.000000,0.000000,0.250000,0,0);}
.m62_c01014{transform:matrix(0.225714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225714,0.000000,0.000000,0.250000,0,0);}
.m7b_c01014{transform:matrix(0.242063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242063,0.000000,0.000000,0.250000,0,0);}
.m44_c01014{transform:matrix(0.245586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245586,0.000000,0.000000,0.250000,0,0);}
.m63_c01014{transform:matrix(0.246819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246819,0.000000,0.000000,0.250000,0,0);}
.m2_c01014{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01014{transform:matrix(0.250825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250825,0.000000,0.000000,0.250000,0,0);}
.m22_c01014{transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);}
.m1d_c01014{transform:matrix(0.253396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253396,0.000000,0.000000,0.250000,0,0);}
.m58_c01014{transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);}
.m92_c01014{transform:matrix(0.254485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254485,0.000000,0.000000,0.250000,0,0);}
.m85_c01014{transform:matrix(0.254693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254693,0.000000,0.000000,0.250000,0,0);}
.m84_c01014{transform:matrix(0.254748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254748,0.000000,0.000000,0.250000,0,0);}
.m27_c01014{transform:matrix(0.255840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255840,0.000000,0.000000,0.250000,0,0);}
.m41_c01014{transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);}
.m25_c01014{transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);}
.me_c01014{transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);}
.m6e_c01014{transform:matrix(0.258715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258715,0.000000,0.000000,0.250000,0,0);}
.m64_c01014{transform:matrix(0.259662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259662,0.000000,0.000000,0.250000,0,0);}
.m5b_c01014{transform:matrix(0.259774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259774,0.000000,0.000000,0.250000,0,0);}
.m72_c01014{transform:matrix(0.260353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260353,0.000000,0.000000,0.250000,0,0);}
.m95_c01014{transform:matrix(0.260587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260587,0.000000,0.000000,0.250000,0,0);}
.m8f_c01014{transform:matrix(0.261055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261055,0.000000,0.000000,0.250000,0,0);}
.m1e_c01014{transform:matrix(0.262726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262726,0.000000,0.000000,0.250000,0,0);}
.m94_c01014{transform:matrix(0.263771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263771,0.000000,0.000000,0.250000,0,0);}
.m70_c01014{transform:matrix(0.264852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264852,0.000000,0.000000,0.250000,0,0);}
.m7f_c01014{transform:matrix(0.265254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265254,0.000000,0.000000,0.250000,0,0);}
.m3f_c01014{transform:matrix(0.265578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265578,0.000000,0.000000,0.250000,0,0);}
.m61_c01014{transform:matrix(0.267384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267384,0.000000,0.000000,0.250000,0,0);}
.m30_c01014{transform:matrix(0.267754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267754,0.000000,0.000000,0.250000,0,0);}
.m80_c01014{transform:matrix(0.268157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268157,0.000000,0.000000,0.250000,0,0);}
.ma2_c01014{transform:matrix(0.268231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268231,0.000000,0.000000,0.250000,0,0);}
.m50_c01014{transform:matrix(0.269209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269209,0.000000,0.000000,0.250000,0,0);}
.m87_c01014{transform:matrix(0.269625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269625,0.000000,0.000000,0.250000,0,0);}
.m55_c01014{transform:matrix(0.270656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270656,0.000000,0.000000,0.250000,0,0);}
.m53_c01014{transform:matrix(0.270879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270879,0.000000,0.000000,0.250000,0,0);}
.m19_c01014{transform:matrix(0.271587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271587,0.000000,0.000000,0.250000,0,0);}
.m78_c01014{transform:matrix(0.272535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272535,0.000000,0.000000,0.250000,0,0);}
.m12_c01014{transform:matrix(0.273059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273059,0.000000,0.000000,0.250000,0,0);}
.m57_c01014{transform:matrix(0.273146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273146,0.000000,0.000000,0.250000,0,0);}
.m71_c01014{transform:matrix(0.273234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273234,0.000000,0.000000,0.250000,0,0);}
.m1f_c01014{transform:matrix(0.274241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274241,0.000000,0.000000,0.250000,0,0);}
.m8c_c01014{transform:matrix(0.274576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274576,0.000000,0.000000,0.250000,0,0);}
.m49_c01014{transform:matrix(0.274757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274757,0.000000,0.000000,0.250000,0,0);}
.m3c_c01014{transform:matrix(0.276355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276355,0.000000,0.000000,0.250000,0,0);}
.m6c_c01014{transform:matrix(0.276550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276550,0.000000,0.000000,0.250000,0,0);}
.m9a_c01014{transform:matrix(0.276856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276856,0.000000,0.000000,0.250000,0,0);}
.m2a_c01014{transform:matrix(0.277036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277036,0.000000,0.000000,0.250000,0,0);}
.m43_c01014{transform:matrix(0.277460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277460,0.000000,0.000000,0.250000,0,0);}
.m16_c01014{transform:matrix(0.277590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277590,0.000000,0.000000,0.250000,0,0);}
.m73_c01014{transform:matrix(0.277711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277711,0.000000,0.000000,0.250000,0,0);}
.m5e_c01014{transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);}
.m4c_c01014{transform:matrix(0.278275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278275,0.000000,0.000000,0.250000,0,0);}
.m15_c01014{transform:matrix(0.278780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278780,0.000000,0.000000,0.250000,0,0);}
.m86_c01014{transform:matrix(0.279195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279195,0.000000,0.000000,0.250000,0,0);}
.m2f_c01014{transform:matrix(0.279888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279888,0.000000,0.000000,0.250000,0,0);}
.m21_c01014{transform:matrix(0.279920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279920,0.000000,0.000000,0.250000,0,0);}
.m9d_c01014{transform:matrix(0.279997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279997,0.000000,0.000000,0.250000,0,0);}
.m38_c01014{transform:matrix(0.280422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280422,0.000000,0.000000,0.250000,0,0);}
.m26_c01014{transform:matrix(0.280468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280468,0.000000,0.000000,0.250000,0,0);}
.m65_c01014{transform:matrix(0.280981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280981,0.000000,0.000000,0.250000,0,0);}
.m7a_c01014{transform:matrix(0.281058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281058,0.000000,0.000000,0.250000,0,0);}
.m8e_c01014{transform:matrix(0.281129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281129,0.000000,0.000000,0.250000,0,0);}
.m6d_c01014{transform:matrix(0.281493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281493,0.000000,0.000000,0.250000,0,0);}
.m93_c01014{transform:matrix(0.282422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282422,0.000000,0.000000,0.250000,0,0);}
.m28_c01014{transform:matrix(0.282693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282693,0.000000,0.000000,0.250000,0,0);}
.m2b_c01014{transform:matrix(0.282903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282903,0.000000,0.000000,0.250000,0,0);}
.m3a_c01014{transform:matrix(0.283030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283030,0.000000,0.000000,0.250000,0,0);}
.m9f_c01014{transform:matrix(0.283051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283051,0.000000,0.000000,0.250000,0,0);}
.m10_c01014{transform:matrix(0.283195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283195,0.000000,0.000000,0.250000,0,0);}
.mf_c01014{transform:matrix(0.283259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283259,0.000000,0.000000,0.250000,0,0);}
.m9c_c01014{transform:matrix(0.284065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284065,0.000000,0.000000,0.250000,0,0);}
.m36_c01014{transform:matrix(0.284514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284514,0.000000,0.000000,0.250000,0,0);}
.m7_c01014{transform:matrix(0.285399,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285399,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285399,0.000000,0.000000,0.250000,0,0);}
.m5d_c01014{transform:matrix(0.285749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285749,0.000000,0.000000,0.250000,0,0);}
.m47_c01014{transform:matrix(0.285808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285808,0.000000,0.000000,0.250000,0,0);}
.m37_c01014{transform:matrix(0.286850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286850,0.000000,0.000000,0.250000,0,0);}
.m59_c01014{transform:matrix(0.287109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287109,0.000000,0.000000,0.250000,0,0);}
.m0_c01014{transform:matrix(0.290285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290285,0.000000,0.000000,0.250000,0,0);}
.m1b_c01014{transform:matrix(0.290356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290356,0.000000,0.000000,0.250000,0,0);}
.ma4_c01014{transform:matrix(0.291292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291292,0.000000,0.000000,0.250000,0,0);}
.m81_c01014{transform:matrix(0.291618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291618,0.000000,0.000000,0.250000,0,0);}
.ma_c01014{transform:matrix(0.293261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293261,0.000000,0.000000,0.250000,0,0);}
.m75_c01014{transform:matrix(0.294136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294136,0.000000,0.000000,0.250000,0,0);}
.m76_c01014{transform:matrix(0.295976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295976,0.000000,0.000000,0.250000,0,0);}
.m91_c01014{transform:matrix(0.296084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296084,0.000000,0.000000,0.250000,0,0);}
.m46_c01014{transform:matrix(0.296594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296594,0.000000,0.000000,0.250000,0,0);}
.m4b_c01014{transform:matrix(0.296633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296633,0.000000,0.000000,0.250000,0,0);}
.m45_c01014{transform:matrix(0.296840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296840,0.000000,0.000000,0.250000,0,0);}
.m96_c01014{transform:matrix(0.297551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297551,0.000000,0.000000,0.250000,0,0);}
.m13_c01014{transform:matrix(0.297813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297813,0.000000,0.000000,0.250000,0,0);}
.m29_c01014{transform:matrix(0.298173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298173,0.000000,0.000000,0.250000,0,0);}
.m4a_c01014{transform:matrix(0.298655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298655,0.000000,0.000000,0.250000,0,0);}
.m4e_c01014{transform:matrix(0.298673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298673,0.000000,0.000000,0.250000,0,0);}
.m8d_c01014{transform:matrix(0.299281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299281,0.000000,0.000000,0.250000,0,0);}
.m6a_c01014{transform:matrix(0.299346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299346,0.000000,0.000000,0.250000,0,0);}
.m5c_c01014{transform:matrix(0.299818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299818,0.000000,0.000000,0.250000,0,0);}
.m60_c01014{transform:matrix(0.299926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299926,0.000000,0.000000,0.250000,0,0);}
.m1a_c01014{transform:matrix(0.300402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300402,0.000000,0.000000,0.250000,0,0);}
.m40_c01014{transform:matrix(0.300460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300460,0.000000,0.000000,0.250000,0,0);}
.m3b_c01014{transform:matrix(0.300562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300562,0.000000,0.000000,0.250000,0,0);}
.m2c_c01014{transform:matrix(0.300657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300657,0.000000,0.000000,0.250000,0,0);}
.m8_c01014{transform:matrix(0.301533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301533,0.000000,0.000000,0.250000,0,0);}
.m56_c01014{transform:matrix(0.301669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301669,0.000000,0.000000,0.250000,0,0);}
.m2e_c01014{transform:matrix(0.302567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302567,0.000000,0.000000,0.250000,0,0);}
.m20_c01014{transform:matrix(0.302901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302901,0.000000,0.000000,0.250000,0,0);}
.m6f_c01014{transform:matrix(0.303648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303648,0.000000,0.000000,0.250000,0,0);}
.m4d_c01014{transform:matrix(0.304011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304011,0.000000,0.000000,0.250000,0,0);}
.m54_c01014{transform:matrix(0.305646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305646,0.000000,0.000000,0.250000,0,0);}
.m97_c01014{transform:matrix(0.305968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305968,0.000000,0.000000,0.250000,0,0);}
.m5_c01014{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m24_c01014{transform:matrix(0.306023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306023,0.000000,0.000000,0.250000,0,0);}
.m67_c01014{transform:matrix(0.306473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306473,0.000000,0.000000,0.250000,0,0);}
.m3d_c01014{transform:matrix(0.306597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306597,0.000000,0.000000,0.250000,0,0);}
.m35_c01014{transform:matrix(0.306881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306881,0.000000,0.000000,0.250000,0,0);}
.ma3_c01014{transform:matrix(0.307061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307061,0.000000,0.000000,0.250000,0,0);}
.m9b_c01014{transform:matrix(0.307388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307388,0.000000,0.000000,0.250000,0,0);}
.m5f_c01014{transform:matrix(0.308430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308430,0.000000,0.000000,0.250000,0,0);}
.m69_c01014{transform:matrix(0.308642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308642,0.000000,0.000000,0.250000,0,0);}
.m68_c01014{transform:matrix(0.308796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308796,0.000000,0.000000,0.250000,0,0);}
.m7d_c01014{transform:matrix(0.308999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308999,0.000000,0.000000,0.250000,0,0);}
.m66_c01014{transform:matrix(0.309684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309684,0.000000,0.000000,0.250000,0,0);}
.m79_c01014{transform:matrix(0.309983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309983,0.000000,0.000000,0.250000,0,0);}
.m9e_c01014{transform:matrix(0.310070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310070,0.000000,0.000000,0.250000,0,0);}
.m8b_c01014{transform:matrix(0.310880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310880,0.000000,0.000000,0.250000,0,0);}
.m77_c01014{transform:matrix(0.311628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311628,0.000000,0.000000,0.250000,0,0);}
.m6_c01014{transform:matrix(0.312584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312584,0.000000,0.000000,0.250000,0,0);}
.m8a_c01014{transform:matrix(0.313644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313644,0.000000,0.000000,0.250000,0,0);}
.m82_c01014{transform:matrix(0.313871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313871,0.000000,0.000000,0.250000,0,0);}
.m1_c01014{transform:matrix(0.314459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314459,0.000000,0.000000,0.250000,0,0);}
.m4_c01014{transform:matrix(0.314826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314826,0.000000,0.000000,0.250000,0,0);}
.m39_c01014{transform:matrix(0.316044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316044,0.000000,0.000000,0.250000,0,0);}
.m99_c01014{transform:matrix(0.316440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316440,0.000000,0.000000,0.250000,0,0);}
.m9_c01014{transform:matrix(0.316843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316843,0.000000,0.000000,0.250000,0,0);}
.ma0_c01014{transform:matrix(0.317164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317164,0.000000,0.000000,0.250000,0,0);}
.m90_c01014{transform:matrix(0.317866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317866,0.000000,0.000000,0.250000,0,0);}
.m14_c01014{transform:matrix(0.317968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317968,0.000000,0.000000,0.250000,0,0);}
.m3_c01014{transform:matrix(0.323440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323440,0.000000,0.000000,0.250000,0,0);}
.m2d_c01014{transform:matrix(0.323596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323596,0.000000,0.000000,0.250000,0,0);}
.m83_c01014{transform:matrix(0.323709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323709,0.000000,0.000000,0.250000,0,0);}
.m89_c01014{transform:matrix(0.324617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324617,0.000000,0.000000,0.250000,0,0);}
.m17_c01014{transform:matrix(0.325559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325559,0.000000,0.000000,0.250000,0,0);}
.m18_c01014{transform:matrix(0.326105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326105,0.000000,0.000000,0.250000,0,0);}
.m23_c01014{transform:matrix(0.329385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329385,0.000000,0.000000,0.250000,0,0);}
.m31_c01014{transform:matrix(0.331798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331798,0.000000,0.000000,0.250000,0,0);}
.m3e_c01014{transform:matrix(0.331929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331929,0.000000,0.000000,0.250000,0,0);}
.m98_c01014{transform:matrix(0.332551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332551,0.000000,0.000000,0.250000,0,0);}
.m11_c01014{transform:matrix(0.332809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332809,0.000000,0.000000,0.250000,0,0);}
.m5a_c01014{transform:matrix(0.333044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333044,0.000000,0.000000,0.250000,0,0);}
.m7e_c01014{transform:matrix(0.333062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333062,0.000000,0.000000,0.250000,0,0);}
.m48_c01014{transform:matrix(0.336212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336212,0.000000,0.000000,0.250000,0,0);}
.mc_c01014{transform:matrix(0.337405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337405,0.000000,0.000000,0.250000,0,0);}
.mb_c01014{transform:matrix(0.343111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343111,0.000000,0.000000,0.250000,0,0);}
.m7c_c01014{transform:matrix(0.343735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343735,0.000000,0.000000,0.250000,0,0);}
.ma1_c01014{transform:matrix(0.343928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343928,0.000000,0.000000,0.250000,0,0);}
.m6b_c01014{transform:matrix(0.347168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347168,0.000000,0.000000,0.250000,0,0);}
.md_c01014{transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);}
.m42_c01014{transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);}
.m88_c01014{transform:matrix(0.376256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376256,0.000000,0.000000,0.250000,0,0);}
.v0_c01014{vertical-align:0.000000px;}
.ls11_c01014{letter-spacing:-2.966040px;}
.lsf_c01014{letter-spacing:-2.855167px;}
.lse_c01014{letter-spacing:-1.468372px;}
.ls3_c01014{letter-spacing:-0.848392px;}
.ls4_c01014{letter-spacing:0.000000px;}
.lsd_c01014{letter-spacing:0.358974px;}
.lsa_c01014{letter-spacing:0.709713px;}
.ls12_c01014{letter-spacing:1.158382px;}
.ls17_c01014{letter-spacing:2.235188px;}
.ls5_c01014{letter-spacing:2.300449px;}
.ls14_c01014{letter-spacing:2.496232px;}
.ls0_c01014{letter-spacing:2.520705px;}
.ls9_c01014{letter-spacing:2.651226px;}
.ls16_c01014{letter-spacing:2.667542px;}
.ls7_c01014{letter-spacing:3.091738px;}
.lsb_c01014{letter-spacing:3.246733px;}
.ls15_c01014{letter-spacing:3.385810px;}
.ls8_c01014{letter-spacing:3.638298px;}
.ls10_c01014{letter-spacing:3.667950px;}
.ls1_c01014{letter-spacing:3.791700px;}
.ls6_c01014{letter-spacing:3.793293px;}
.ls2_c01014{letter-spacing:4.078810px;}
.ls13_c01014{letter-spacing:51.321798px;}
.lsc_c01014{letter-spacing:61.300998px;}
.sc__c01014{text-shadow:none;}
.sc0_c01014{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01014{-webkit-text-stroke:0px transparent;}
.sc0_c01014{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01014{word-spacing:0.000000px;}
._0_c01014{width:20.589797px;}
.fc0_c01014{color:transparent;}
.fs6_c01014{font-size:33.264000px;}
.fsa_c01014{font-size:51.321798px;}
.fs4_c01014{font-size:61.300998px;}
.fsb_c01014{font-size:67.716198px;}
.fs2_c01014{font-size:68.112198px;}
.fs5_c01014{font-size:73.260000px;}
.fs3_c01014{font-size:74.844000px;}
.fs0_c01014{font-size:75.834000px;}
.fs8_c01014{font-size:77.220000px;}
.fs7_c01014{font-size:78.804000px;}
.fs1_c01014{font-size:81.576198px;}
.fs9_c01014{font-size:84.744000px;}
.y0_c01014{bottom:0.000000px;}
.y1_c01014{bottom:76.500000px;}
.y1a_c01014{bottom:127.141770px;}
.y19_c01014{bottom:159.579120px;}
.y18_c01014{bottom:191.650170px;}
.y17_c01014{bottom:224.087520px;}
.y16_c01014{bottom:255.802170px;}
.y15_c01014{bottom:287.878170px;}
.y14_c01014{bottom:319.241370px;}
.y13_c01014{bottom:350.960970px;}
.y12_c01014{bottom:382.685520px;}
.y11_c01014{bottom:414.405120px;}
.y10_c01014{bottom:477.131520px;}
.yf_c01014{bottom:509.563920px;}
.ye_c01014{bottom:573.710970px;}
.yd_c01014{bottom:605.074170px;}
.yc_c01014{bottom:631.096320px;}
.yb_c01014{bottom:637.862970px;}
.ya_c01014{bottom:669.226170px;}
.y9_c01014{bottom:700.594320px;}
.y8_c01014{bottom:731.957520px;}
.y7_c01014{bottom:763.672170px;}
.y6_c01014{bottom:795.391770px;}
.y5_c01014{bottom:826.042170px;}
.y4_c01014{bottom:858.479520px;}
.y3_c01014{bottom:922.275120px;}
.y2_c01014{bottom:1058.414970px;}
.hc_c01014{height:34.180317px;}
.h8_c01014{height:34.693313px;}
.h6_c01014{height:40.826465px;}
.hd_c01014{height:70.625878px;}
.h4_c01014{height:71.038894px;}
.h5_c01014{height:73.455293px;}
.h2_c01014{height:74.426924px;}
.ha_c01014{height:75.787207px;}
.h7_c01014{height:76.407891px;}
.h9_c01014{height:77.341816px;}
.h3_c01014{height:80.062577px;}
.hb_c01014{height:83.171602px;}
.h1_c01014{height:1110.000000px;}
.h0_c01014{height:1263.000000px;}
.w1_c01014{width:763.500000px;}
.w0_c01014{width:892.500000px;}
.x0_c01014{left:0.000000px;}
.x1_c01014{left:64.500000px;}
.x3f_c01014{left:73.958985px;}
.x17_c01014{left:74.988585px;}
.x3_c01014{left:77.636835px;}
.x4_c01014{left:108.519885px;}
.x40_c01014{left:117.806085px;}
.x26_c01014{left:119.726685px;}
.xd_c01014{left:129.210885px;}
.x2a_c01014{left:131.770035px;}
.x32_c01014{left:139.878135px;}
.x41_c01014{left:141.155235px;}
.x20_c01014{left:151.654185px;}
.xe_c01014{left:153.188685px;}
.x4a_c01014{left:162.474885px;}
.x18_c01014{left:163.836135px;}
.x42_c01014{left:172.716435px;}
.x5_c01014{left:174.914235px;}
.x5a_c01014{left:184.081635px;}
.x52_c01014{left:185.527035px;}
.x66_c01014{left:186.799185px;}
.x4b_c01014{left:196.342785px;}
.x46_c01014{left:207.643635px;}
.xf_c01014{left:208.856385px;}
.x6_c01014{left:218.617785px;}
.x56_c01014{left:228.973185px;}
.x21_c01014{left:230.255235px;}
.x60_c01014{left:239.338485px;}
.x7_c01014{left:241.937235px;}
.x2b_c01014{left:252.356985px;}
.x4c_c01014{left:263.044035px;}
.x33_c01014{left:264.083535px;}
.x62_c01014{left:272.830185px;}
.x22_c01014{left:274.770585px;}
.x57_c01014{left:285.373485px;}
.x19_c01014{left:286.566435px;}
.x5f_c01014{left:294.917085px;}
.x5b_c01014{left:296.545635px;}
.x4e_c01014{left:307.594035px;}
.x47_c01014{left:308.663235px;}
.x27_c01014{left:320.325435px;}
.x48_c01014{left:328.770135px;}
.x10_c01014{left:330.368985px;}
.x1a_c01014{left:341.392635px;}
.x34_c01014{left:350.916435px;}
.x8_c01014{left:351.946035px;}
.x35_c01014{left:362.603385px;}
.x2c_c01014{left:363.776535px;}
.x11_c01014{left:374.364585px;}
.x53_c01014{left:384.734835px;}
.x36_c01014{left:386.264385px;}
.x4f_c01014{left:396.139635px;}
.x23_c01014{left:397.411785px;}
.x49_c01014{left:407.192985px;}
.x43_c01014{left:408.455235px;}
.x61_c01014{left:419.736285px;}
.x37_c01014{left:421.275735px;}
.x5c_c01014{left:428.864085px;}
.x1b_c01014{left:430.522335px;}
.x63_c01014{left:440.323335px;}
.x50_c01014{left:441.828135px;}
.x44_c01014{left:442.872585px;}
.x12_c01014{left:452.089485px;}
.x3b_c01014{left:462.469635px;}
.x2d_c01014{left:464.296185px;}
.x54_c01014{left:473.161635px;}
.x68_c01014{left:475.804935px;}
.x9_c01014{left:485.026785px;}
.x4d_c01014{left:496.352385px;}
.x2e_c01014{left:497.471085px;}
.x58_c01014{left:506.544435px;}
.x3c_c01014{left:507.767085px;}
.x55_c01014{left:518.894685px;}
.x67_c01014{left:529.274835px;}
.x1c_c01014{left:530.611335px;}
.x13_c01014{left:540.976635px;}
.x45_c01014{left:551.668635px;}
.x2f_c01014{left:563.825835px;}
.xa_c01014{left:573.260535px;}
.x64_c01014{left:575.591985px;}
.x24_c01014{left:584.680185px;}
.x51_c01014{left:595.901835px;}
.x28_c01014{left:606.252285px;}
.x14_c01014{left:607.267035px;}
.x38_c01014{left:617.597685px;}
.x1d_c01014{left:619.424235px;}
.x3d_c01014{left:629.061885px;}
.x65_c01014{left:639.753885px;}
.x15_c01014{left:641.154735px;}
.xb_c01014{left:650.574585px;}
.x1e_c01014{left:652.143735px;}
.x59_c01014{left:661.791285px;}
.x2_c01014{left:663.216885px;}
.xc_c01014{left:672.710985px;}
.x29_c01014{left:683.581185px;}
.x1f_c01014{left:685.363185px;}
.x3e_c01014{left:694.362285px;}
.x39_c01014{left:700.727985px;}
.x5d_c01014{left:705.133485px;}
.x16_c01014{left:707.801535px;}
.x3a_c01014{left:718.122285px;}
.x30_c01014{left:720.156735px;}
.x25_c01014{left:729.571635px;}
.x31_c01014{left:739.679535px;}
.x5e_c01014{left:741.471435px;}
@media print{
.v0_c01014{vertical-align:0.000000pt;}
.ls11_c01014{letter-spacing:-2.636480pt;}
.lsf_c01014{letter-spacing:-2.537926pt;}
.lse_c01014{letter-spacing:-1.305219pt;}
.ls3_c01014{letter-spacing:-0.754127pt;}
.ls4_c01014{letter-spacing:0.000000pt;}
.lsd_c01014{letter-spacing:0.319088pt;}
.lsa_c01014{letter-spacing:0.630856pt;}
.ls12_c01014{letter-spacing:1.029673pt;}
.ls17_c01014{letter-spacing:1.986834pt;}
.ls5_c01014{letter-spacing:2.044843pt;}
.ls14_c01014{letter-spacing:2.218873pt;}
.ls0_c01014{letter-spacing:2.240626pt;}
.ls9_c01014{letter-spacing:2.356646pt;}
.ls16_c01014{letter-spacing:2.371148pt;}
.ls7_c01014{letter-spacing:2.748211pt;}
.lsb_c01014{letter-spacing:2.885985pt;}
.ls15_c01014{letter-spacing:3.009609pt;}
.ls8_c01014{letter-spacing:3.234043pt;}
.ls10_c01014{letter-spacing:3.260400pt;}
.ls1_c01014{letter-spacing:3.370400pt;}
.ls6_c01014{letter-spacing:3.371816pt;}
.ls2_c01014{letter-spacing:3.625609pt;}
.ls13_c01014{letter-spacing:45.619376pt;}
.lsc_c01014{letter-spacing:54.489776pt;}
.ws0_c01014{word-spacing:0.000000pt;}
._0_c01014{width:18.302041pt;}
.fs6_c01014{font-size:29.568000pt;}
.fsa_c01014{font-size:45.619376pt;}
.fs4_c01014{font-size:54.489776pt;}
.fsb_c01014{font-size:60.192176pt;}
.fs2_c01014{font-size:60.544176pt;}
.fs5_c01014{font-size:65.120000pt;}
.fs3_c01014{font-size:66.528000pt;}
.fs0_c01014{font-size:67.408000pt;}
.fs8_c01014{font-size:68.640000pt;}
.fs7_c01014{font-size:70.048000pt;}
.fs1_c01014{font-size:72.512176pt;}
.fs9_c01014{font-size:75.328000pt;}
.y0_c01014{bottom:0.000000pt;}
.y1_c01014{bottom:68.000000pt;}
.y1a_c01014{bottom:113.014907pt;}
.y19_c01014{bottom:141.848107pt;}
.y18_c01014{bottom:170.355707pt;}
.y17_c01014{bottom:199.188907pt;}
.y16_c01014{bottom:227.379707pt;}
.y15_c01014{bottom:255.891707pt;}
.y14_c01014{bottom:283.770107pt;}
.y13_c01014{bottom:311.965307pt;}
.y12_c01014{bottom:340.164907pt;}
.y11_c01014{bottom:368.360107pt;}
.y10_c01014{bottom:424.116907pt;}
.yf_c01014{bottom:452.945707pt;}
.ye_c01014{bottom:509.965307pt;}
.yd_c01014{bottom:537.843707pt;}
.yc_c01014{bottom:560.974507pt;}
.yb_c01014{bottom:566.989307pt;}
.ya_c01014{bottom:594.867707pt;}
.y9_c01014{bottom:622.750507pt;}
.y8_c01014{bottom:650.628907pt;}
.y7_c01014{bottom:678.819707pt;}
.y6_c01014{bottom:707.014907pt;}
.y5_c01014{bottom:734.259707pt;}
.y4_c01014{bottom:763.092907pt;}
.y3_c01014{bottom:819.800107pt;}
.y2_c01014{bottom:940.813307pt;}
.hc_c01014{height:30.382504pt;}
.h8_c01014{height:30.838500pt;}
.h6_c01014{height:36.290191pt;}
.hd_c01014{height:62.778559pt;}
.h4_c01014{height:63.145684pt;}
.h5_c01014{height:65.293594pt;}
.h2_c01014{height:66.157266pt;}
.ha_c01014{height:67.366406pt;}
.h7_c01014{height:67.918125pt;}
.h9_c01014{height:68.748281pt;}
.h3_c01014{height:71.166735pt;}
.hb_c01014{height:73.930313pt;}
.h1_c01014{height:986.666667pt;}
.h0_c01014{height:1122.666667pt;}
.w1_c01014{width:678.666667pt;}
.w0_c01014{width:793.333333pt;}
.x0_c01014{left:0.000000pt;}
.x1_c01014{left:57.333333pt;}
.x3f_c01014{left:65.741320pt;}
.x17_c01014{left:66.656520pt;}
.x3_c01014{left:69.010520pt;}
.x4_c01014{left:96.462120pt;}
.x40_c01014{left:104.716520pt;}
.x26_c01014{left:106.423720pt;}
.xd_c01014{left:114.854120pt;}
.x2a_c01014{left:117.128920pt;}
.x32_c01014{left:124.336120pt;}
.x41_c01014{left:125.471320pt;}
.x20_c01014{left:134.803720pt;}
.xe_c01014{left:136.167720pt;}
.x4a_c01014{left:144.422120pt;}
.x18_c01014{left:145.632120pt;}
.x42_c01014{left:153.525720pt;}
.x5_c01014{left:155.479320pt;}
.x5a_c01014{left:163.628120pt;}
.x52_c01014{left:164.912920pt;}
.x66_c01014{left:166.043720pt;}
.x4b_c01014{left:174.526920pt;}
.x46_c01014{left:184.572120pt;}
.xf_c01014{left:185.650120pt;}
.x6_c01014{left:194.326920pt;}
.x56_c01014{left:203.531720pt;}
.x21_c01014{left:204.671320pt;}
.x60_c01014{left:212.745320pt;}
.x7_c01014{left:215.055320pt;}
.x2b_c01014{left:224.317320pt;}
.x4c_c01014{left:233.816920pt;}
.x33_c01014{left:234.740920pt;}
.x62_c01014{left:242.515720pt;}
.x22_c01014{left:244.240520pt;}
.x57_c01014{left:253.665320pt;}
.x19_c01014{left:254.725720pt;}
.x5f_c01014{left:262.148520pt;}
.x5b_c01014{left:263.596120pt;}
.x4e_c01014{left:273.416920pt;}
.x47_c01014{left:274.367320pt;}
.x27_c01014{left:284.733720pt;}
.x48_c01014{left:292.240120pt;}
.x10_c01014{left:293.661320pt;}
.x1a_c01014{left:303.460120pt;}
.x34_c01014{left:311.925720pt;}
.x8_c01014{left:312.840920pt;}
.x35_c01014{left:322.314120pt;}
.x2c_c01014{left:323.356920pt;}
.x11_c01014{left:332.768520pt;}
.x53_c01014{left:341.986520pt;}
.x36_c01014{left:343.346120pt;}
.x4f_c01014{left:352.124120pt;}
.x23_c01014{left:353.254920pt;}
.x49_c01014{left:361.949320pt;}
.x43_c01014{left:363.071320pt;}
.x61_c01014{left:373.098920pt;}
.x37_c01014{left:374.467320pt;}
.x5c_c01014{left:381.212520pt;}
.x1b_c01014{left:382.686520pt;}
.x63_c01014{left:391.398520pt;}
.x50_c01014{left:392.736120pt;}
.x44_c01014{left:393.664520pt;}
.x12_c01014{left:401.857320pt;}
.x3b_c01014{left:411.084120pt;}
.x2d_c01014{left:412.707720pt;}
.x54_c01014{left:420.588120pt;}
.x68_c01014{left:422.937720pt;}
.x9_c01014{left:431.134920pt;}
.x4d_c01014{left:441.202120pt;}
.x2e_c01014{left:442.196520pt;}
.x58_c01014{left:450.261720pt;}
.x3c_c01014{left:451.348520pt;}
.x55_c01014{left:461.239720pt;}
.x67_c01014{left:470.466520pt;}
.x1c_c01014{left:471.654520pt;}
.x13_c01014{left:480.868120pt;}
.x45_c01014{left:490.372120pt;}
.x2f_c01014{left:501.178520pt;}
.xa_c01014{left:509.564920pt;}
.x64_c01014{left:511.637320pt;}
.x24_c01014{left:519.715720pt;}
.x51_c01014{left:529.690520pt;}
.x28_c01014{left:538.890920pt;}
.x14_c01014{left:539.792920pt;}
.x38_c01014{left:548.975720pt;}
.x1d_c01014{left:550.599320pt;}
.x3d_c01014{left:559.166120pt;}
.x65_c01014{left:568.670120pt;}
.x15_c01014{left:569.915320pt;}
.xb_c01014{left:578.288520pt;}
.x1e_c01014{left:579.683320pt;}
.x59_c01014{left:588.258920pt;}
.x2_c01014{left:589.526120pt;}
.xc_c01014{left:597.965320pt;}
.x29_c01014{left:607.627720pt;}
.x1f_c01014{left:609.211720pt;}
.x3e_c01014{left:617.210920pt;}
.x39_c01014{left:622.869320pt;}
.x5d_c01014{left:626.785320pt;}
.x16_c01014{left:629.156920pt;}
.x3a_c01014{left:638.330920pt;}
.x30_c01014{left:640.139320pt;}
.x25_c01014{left:648.508120pt;}
.x31_c01014{left:657.492920pt;}
.x5e_c01014{left:659.085720pt;}
}





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

.ir_c01015:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01015{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01015;src:url('chunks/assets/font_92f842ae9e481adeb989a4b2.woff2')format("woff");}.ff1_c01015{font-family:ff1_c01015;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01015;src:url('chunks/assets/font_3146f47f2131dc7c0584ac99.woff2')format("woff");}.ff2_c01015{font-family:ff2_c01015;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01015;src:url('chunks/assets/font_7442bed238460f7ae91ac487.woff2')format("woff");}.ff3_c01015{font-family:ff3_c01015;line-height:0.666000;font-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_c01015{transform:matrix(0.155128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155128,0.000000,0.000000,0.250000,0,0);}
.m91_c01015{transform:matrix(0.164402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164402,0.000000,0.000000,0.250000,0,0);}
.m8a_c01015{transform:matrix(0.179761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179761,0.000000,0.000000,0.250000,0,0);}
.m4a_c01015{transform:matrix(0.229751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229751,0.000000,0.000000,0.250000,0,0);}
.ma0_c01015{transform:matrix(0.246549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246549,0.000000,0.000000,0.250000,0,0);}
.m0_c01015{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01015{transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);}
.m2a_c01015{transform:matrix(0.255011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255011,0.000000,0.000000,0.250000,0,0);}
.m81_c01015{transform:matrix(0.257128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257128,0.000000,0.000000,0.250000,0,0);}
.m8b_c01015{transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);}
.m32_c01015{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m89_c01015{transform:matrix(0.259282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259282,0.000000,0.000000,0.250000,0,0);}
.m3a_c01015{transform:matrix(0.259554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259554,0.000000,0.000000,0.250000,0,0);}
.m78_c01015{transform:matrix(0.260559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260559,0.000000,0.000000,0.250000,0,0);}
.mf_c01015{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m8_c01015{transform:matrix(0.262391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262391,0.000000,0.000000,0.250000,0,0);}
.m66_c01015{transform:matrix(0.262649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262649,0.000000,0.000000,0.250000,0,0);}
.mc_c01015{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m44_c01015{transform:matrix(0.263720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263720,0.000000,0.000000,0.250000,0,0);}
.m5e_c01015{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m3_c01015{transform:matrix(0.264902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264902,0.000000,0.000000,0.250000,0,0);}
.m18_c01015{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m7d_c01015{transform:matrix(0.266362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266362,0.000000,0.000000,0.250000,0,0);}
.m9a_c01015{transform:matrix(0.266516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266516,0.000000,0.000000,0.250000,0,0);}
.m2b_c01015{transform:matrix(0.266734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266734,0.000000,0.000000,0.250000,0,0);}
.m4_c01015{transform:matrix(0.267061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267061,0.000000,0.000000,0.250000,0,0);}
.m64_c01015{transform:matrix(0.267590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267590,0.000000,0.000000,0.250000,0,0);}
.m24_c01015{transform:matrix(0.267678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267678,0.000000,0.000000,0.250000,0,0);}
.m5_c01015{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m5b_c01015{transform:matrix(0.268484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268484,0.000000,0.000000,0.250000,0,0);}
.m58_c01015{transform:matrix(0.269763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269763,0.000000,0.000000,0.250000,0,0);}
.m7a_c01015{transform:matrix(0.270873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270873,0.000000,0.000000,0.250000,0,0);}
.m70_c01015{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m46_c01015{transform:matrix(0.271993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271993,0.000000,0.000000,0.250000,0,0);}
.m21_c01015{transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);}
.m72_c01015{transform:matrix(0.273916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273916,0.000000,0.000000,0.250000,0,0);}
.m62_c01015{transform:matrix(0.273972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273972,0.000000,0.000000,0.250000,0,0);}
.m92_c01015{transform:matrix(0.275470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275470,0.000000,0.000000,0.250000,0,0);}
.m8d_c01015{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m2d_c01015{transform:matrix(0.276764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276764,0.000000,0.000000,0.250000,0,0);}
.m8e_c01015{transform:matrix(0.276921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276921,0.000000,0.000000,0.250000,0,0);}
.m19_c01015{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m2c_c01015{transform:matrix(0.277241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277241,0.000000,0.000000,0.250000,0,0);}
.m6c_c01015{transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);}
.m50_c01015{transform:matrix(0.278992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278992,0.000000,0.000000,0.250000,0,0);}
.m7f_c01015{transform:matrix(0.279211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279211,0.000000,0.000000,0.250000,0,0);}
.m1a_c01015{transform:matrix(0.281360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281360,0.000000,0.000000,0.250000,0,0);}
.ma_c01015{transform:matrix(0.281782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281782,0.000000,0.000000,0.250000,0,0);}
.m6e_c01015{transform:matrix(0.282134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282134,0.000000,0.000000,0.250000,0,0);}
.m54_c01015{transform:matrix(0.282422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282422,0.000000,0.000000,0.250000,0,0);}
.m56_c01015{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m3c_c01015{transform:matrix(0.284404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284404,0.000000,0.000000,0.250000,0,0);}
.m4e_c01015{transform:matrix(0.284924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284924,0.000000,0.000000,0.250000,0,0);}
.m71_c01015{transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);}
.m3d_c01015{transform:matrix(0.285946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285946,0.000000,0.000000,0.250000,0,0);}
.m39_c01015{transform:matrix(0.285967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285967,0.000000,0.000000,0.250000,0,0);}
.m5f_c01015{transform:matrix(0.286496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286496,0.000000,0.000000,0.250000,0,0);}
.m55_c01015{transform:matrix(0.287571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287571,0.000000,0.000000,0.250000,0,0);}
.m69_c01015{transform:matrix(0.287725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287725,0.000000,0.000000,0.250000,0,0);}
.m28_c01015{transform:matrix(0.288048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288048,0.000000,0.000000,0.250000,0,0);}
.m38_c01015{transform:matrix(0.288578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288578,0.000000,0.000000,0.250000,0,0);}
.m3e_c01015{transform:matrix(0.288806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288806,0.000000,0.000000,0.250000,0,0);}
.m12_c01015{transform:matrix(0.289956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289956,0.000000,0.000000,0.250000,0,0);}
.m11_c01015{transform:matrix(0.290480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290480,0.000000,0.000000,0.250000,0,0);}
.m97_c01015{transform:matrix(0.290781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290781,0.000000,0.000000,0.250000,0,0);}
.m6f_c01015{transform:matrix(0.291248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291248,0.000000,0.000000,0.250000,0,0);}
.m42_c01015{transform:matrix(0.291753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291753,0.000000,0.000000,0.250000,0,0);}
.m82_c01015{transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);}
.m7_c01015{transform:matrix(0.293124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293124,0.000000,0.000000,0.250000,0,0);}
.m6d_c01015{transform:matrix(0.293146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293146,0.000000,0.000000,0.250000,0,0);}
.m15_c01015{transform:matrix(0.293394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293394,0.000000,0.000000,0.250000,0,0);}
.m35_c01015{transform:matrix(0.294108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294108,0.000000,0.000000,0.250000,0,0);}
.m60_c01015{transform:matrix(0.294116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294116,0.000000,0.000000,0.250000,0,0);}
.m4b_c01015{transform:matrix(0.294443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294443,0.000000,0.000000,0.250000,0,0);}
.m4f_c01015{transform:matrix(0.295023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295023,0.000000,0.000000,0.250000,0,0);}
.m2_c01015{transform:matrix(0.296686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296686,0.000000,0.000000,0.250000,0,0);}
.m10_c01015{transform:matrix(0.297030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297030,0.000000,0.000000,0.250000,0,0);}
.m86_c01015{transform:matrix(0.297357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297357,0.000000,0.000000,0.250000,0,0);}
.ma2_c01015{transform:matrix(0.298376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298376,0.000000,0.000000,0.250000,0,0);}
.m94_c01015{transform:matrix(0.299054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299054,0.000000,0.000000,0.250000,0,0);}
.m30_c01015{transform:matrix(0.299731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299731,0.000000,0.000000,0.250000,0,0);}
.m5c_c01015{transform:matrix(0.300360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300360,0.000000,0.000000,0.250000,0,0);}
.ma1_c01015{transform:matrix(0.300419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300419,0.000000,0.000000,0.250000,0,0);}
.m7c_c01015{transform:matrix(0.300484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300484,0.000000,0.000000,0.250000,0,0);}
.m99_c01015{transform:matrix(0.300559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300559,0.000000,0.000000,0.250000,0,0);}
.m1e_c01015{transform:matrix(0.300824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300824,0.000000,0.000000,0.250000,0,0);}
.m95_c01015{transform:matrix(0.300875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300875,0.000000,0.000000,0.250000,0,0);}
.m93_c01015{transform:matrix(0.302248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302248,0.000000,0.000000,0.250000,0,0);}
.m22_c01015{transform:matrix(0.302763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302763,0.000000,0.000000,0.250000,0,0);}
.m37_c01015{transform:matrix(0.302944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302944,0.000000,0.000000,0.250000,0,0);}
.m5a_c01015{transform:matrix(0.303723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303723,0.000000,0.000000,0.250000,0,0);}
.m48_c01015{transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);}
.m77_c01015{transform:matrix(0.305795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305795,0.000000,0.000000,0.250000,0,0);}
.m9e_c01015{transform:matrix(0.306108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306108,0.000000,0.000000,0.250000,0,0);}
.m4d_c01015{transform:matrix(0.306147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306147,0.000000,0.000000,0.250000,0,0);}
.m90_c01015{transform:matrix(0.306388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306388,0.000000,0.000000,0.250000,0,0);}
.m52_c01015{transform:matrix(0.307014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307014,0.000000,0.000000,0.250000,0,0);}
.m53_c01015{transform:matrix(0.307249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307249,0.000000,0.000000,0.250000,0,0);}
.m47_c01015{transform:matrix(0.307412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307412,0.000000,0.000000,0.250000,0,0);}
.m17_c01015{transform:matrix(0.308070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308070,0.000000,0.000000,0.250000,0,0);}
.m7e_c01015{transform:matrix(0.308239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308239,0.000000,0.000000,0.250000,0,0);}
.m63_c01015{transform:matrix(0.308491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308491,0.000000,0.000000,0.250000,0,0);}
.m14_c01015{transform:matrix(0.308557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308557,0.000000,0.000000,0.250000,0,0);}
.m8c_c01015{transform:matrix(0.308703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308703,0.000000,0.000000,0.250000,0,0);}
.m27_c01015{transform:matrix(0.308789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308789,0.000000,0.000000,0.250000,0,0);}
.m65_c01015{transform:matrix(0.310857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310857,0.000000,0.000000,0.250000,0,0);}
.m96_c01015{transform:matrix(0.311047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311047,0.000000,0.000000,0.250000,0,0);}
.m85_c01015{transform:matrix(0.311398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311398,0.000000,0.000000,0.250000,0,0);}
.m40_c01015{transform:matrix(0.311662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311662,0.000000,0.000000,0.250000,0,0);}
.m9b_c01015{transform:matrix(0.311761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311761,0.000000,0.000000,0.250000,0,0);}
.m9f_c01015{transform:matrix(0.313681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313681,0.000000,0.000000,0.250000,0,0);}
.m87_c01015{transform:matrix(0.314236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314236,0.000000,0.000000,0.250000,0,0);}
.m7b_c01015{transform:matrix(0.314318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314318,0.000000,0.000000,0.250000,0,0);}
.m57_c01015{transform:matrix(0.314869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314869,0.000000,0.000000,0.250000,0,0);}
.m3f_c01015{transform:matrix(0.315495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315495,0.000000,0.000000,0.250000,0,0);}
.mb_c01015{transform:matrix(0.315578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315578,0.000000,0.000000,0.250000,0,0);}
.m2f_c01015{transform:matrix(0.316543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316543,0.000000,0.000000,0.250000,0,0);}
.m31_c01015{transform:matrix(0.317890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317890,0.000000,0.000000,0.250000,0,0);}
.m13_c01015{transform:matrix(0.318114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318114,0.000000,0.000000,0.250000,0,0);}
.m98_c01015{transform:matrix(0.318152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318152,0.000000,0.000000,0.250000,0,0);}
.m45_c01015{transform:matrix(0.318287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318287,0.000000,0.000000,0.250000,0,0);}
.m36_c01015{transform:matrix(0.319808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319808,0.000000,0.000000,0.250000,0,0);}
.m6b_c01015{transform:matrix(0.320122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320122,0.000000,0.000000,0.250000,0,0);}
.m80_c01015{transform:matrix(0.320840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320840,0.000000,0.000000,0.250000,0,0);}
.m6a_c01015{transform:matrix(0.321083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321083,0.000000,0.000000,0.250000,0,0);}
.m79_c01015{transform:matrix(0.321128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321128,0.000000,0.000000,0.250000,0,0);}
.m88_c01015{transform:matrix(0.323442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323442,0.000000,0.000000,0.250000,0,0);}
.m43_c01015{transform:matrix(0.324007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324007,0.000000,0.000000,0.250000,0,0);}
.m20_c01015{transform:matrix(0.324215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324215,0.000000,0.000000,0.250000,0,0);}
.m84_c01015{transform:matrix(0.324794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324794,0.000000,0.000000,0.250000,0,0);}
.m2e_c01015{transform:matrix(0.324872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324872,0.000000,0.000000,0.250000,0,0);}
.m76_c01015{transform:matrix(0.325469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325469,0.000000,0.000000,0.250000,0,0);}
.m51_c01015{transform:matrix(0.327076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327076,0.000000,0.000000,0.250000,0,0);}
.m3b_c01015{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m16_c01015{transform:matrix(0.328247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328247,0.000000,0.000000,0.250000,0,0);}
.m83_c01015{transform:matrix(0.328695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328695,0.000000,0.000000,0.250000,0,0);}
.m6_c01015{transform:matrix(0.329368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329368,0.000000,0.000000,0.250000,0,0);}
.m41_c01015{transform:matrix(0.330220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330220,0.000000,0.000000,0.250000,0,0);}
.m29_c01015{transform:matrix(0.330230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330230,0.000000,0.000000,0.250000,0,0);}
.m67_c01015{transform:matrix(0.330710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330710,0.000000,0.000000,0.250000,0,0);}
.m59_c01015{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m1d_c01015{transform:matrix(0.333405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333405,0.000000,0.000000,0.250000,0,0);}
.m1b_c01015{transform:matrix(0.334664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334664,0.000000,0.000000,0.250000,0,0);}
.m34_c01015{transform:matrix(0.334800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334800,0.000000,0.000000,0.250000,0,0);}
.m49_c01015{transform:matrix(0.335112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335112,0.000000,0.000000,0.250000,0,0);}
.m9d_c01015{transform:matrix(0.335883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335883,0.000000,0.000000,0.250000,0,0);}
.m1c_c01015{transform:matrix(0.338138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338138,0.000000,0.000000,0.250000,0,0);}
.m68_c01015{transform:matrix(0.338349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338349,0.000000,0.000000,0.250000,0,0);}
.me_c01015{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m5d_c01015{transform:matrix(0.339569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339569,0.000000,0.000000,0.250000,0,0);}
.m9c_c01015{transform:matrix(0.339853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339853,0.000000,0.000000,0.250000,0,0);}
.md_c01015{transform:matrix(0.339867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339867,0.000000,0.000000,0.250000,0,0);}
.m33_c01015{transform:matrix(0.342694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342694,0.000000,0.000000,0.250000,0,0);}
.m4c_c01015{transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);}
.m9_c01015{transform:matrix(0.346277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346277,0.000000,0.000000,0.250000,0,0);}
.m1_c01015{transform:matrix(0.346501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346501,0.000000,0.000000,0.250000,0,0);}
.m73_c01015{transform:matrix(0.349374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349374,0.000000,0.000000,0.250000,0,0);}
.m75_c01015{transform:matrix(0.373039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373039,0.000000,0.000000,0.250000,0,0);}
.m8f_c01015{transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);}
.m25_c01015{transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);}
.m1f_c01015{transform:matrix(0.385437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385437,0.000000,0.000000,0.250000,0,0);}
.m23_c01015{transform:matrix(0.432348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432348,0.000000,0.000000,0.250000,0,0);}
.m61_c01015{transform:matrix(0.440068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440068,0.000000,0.000000,0.250000,0,0);}
.v0_c01015{vertical-align:0.000000px;}
.ls5_c01015{letter-spacing:-2.744280px;}
.lsc_c01015{letter-spacing:-1.427026px;}
.ls4_c01015{letter-spacing:0.000000px;}
.ls3_c01015{letter-spacing:0.666468px;}
.lsb_c01015{letter-spacing:1.834747px;}
.lsa_c01015{letter-spacing:2.893255px;}
.ls6_c01015{letter-spacing:2.989810px;}
.ls0_c01015{letter-spacing:3.171168px;}
.ls2_c01015{letter-spacing:3.747902px;}
.ls1_c01015{letter-spacing:3.920400px;}
.ls7_c01015{letter-spacing:55.598598px;}
.ls8_c01015{letter-spacing:59.875398px;}
.ls9_c01015{letter-spacing:65.577798px;}
.sc__c01015{text-shadow:none;}
.sc0_c01015{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01015{-webkit-text-stroke:0px transparent;}
.sc0_c01015{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01015{word-spacing:-19.602000px;}
.ws1_c01015{word-spacing:0.000000px;}
._1_c01015{width:9.330948px;}
._2_c01015{width:26.109468px;}
._0_c01015{width:33.950268px;}
.fc0_c01015{color:transparent;}
.fs2_c01015{font-size:22.572000px;}
.fsb_c01015{font-size:28.314000px;}
.fsa_c01015{font-size:34.056198px;}
.fs7_c01015{font-size:55.598598px;}
.fs5_c01015{font-size:59.796198px;}
.fs8_c01015{font-size:59.875398px;}
.fs9_c01015{font-size:65.577798px;}
.fs6_c01015{font-size:66.330000px;}
.fs4_c01015{font-size:70.884000px;}
.fs3_c01015{font-size:74.844000px;}
.fs1_c01015{font-size:78.408000px;}
.fs0_c01015{font-size:90.090000px;}
.y0_c01015{bottom:0.000000px;}
.y1c_c01015{bottom:13.806585px;}
.y1_c01015{bottom:76.500000px;}
.y1b_c01015{bottom:128.923785px;}
.y1a_c01015{bottom:193.437135px;}
.y19_c01015{bottom:225.513135px;}
.y18_c01015{bottom:257.589135px;}
.y17_c01015{bottom:283.249935px;}
.y16_c01015{bottom:290.021535px;}
.y15_c01015{bottom:321.384735px;}
.y14_c01015{bottom:353.460735px;}
.y13_c01015{bottom:384.818985px;}
.y12_c01015{bottom:416.899935px;}
.y11_c01015{bottom:447.550335px;}
.y10_c01015{bottom:479.269935px;}
.yf_c01015{bottom:510.984585px;}
.ye_c01015{bottom:543.065535px;}
.yd_c01015{bottom:606.861135px;}
.yc_c01015{bottom:638.932185px;}
.yb_c01015{bottom:670.656735px;}
.ya_c01015{bottom:701.663535px;}
.y9_c01015{bottom:733.026735px;}
.y8_c01015{bottom:765.097785px;}
.y7_c01015{bottom:782.209935px;}
.y6_c01015{bottom:796.460985px;}
.y5_c01015{bottom:859.548735px;}
.y4_c01015{bottom:891.619785px;}
.y3_c01015{bottom:922.987935px;}
.y2_c01015{bottom:1058.771385px;}
.h4_c01015{height:23.541891px;}
.hd_c01015{height:29.530617px;}
.hc_c01015{height:35.519550px;}
.h9_c01015{height:37.028666px;}
.ha_c01015{height:39.877015px;}
.hb_c01015{height:43.674813px;}
.h7_c01015{height:58.686698px;}
.h8_c01015{height:69.180117px;}
.h6_c01015{height:69.568770px;}
.h5_c01015{height:73.455293px;}
.h3_c01015{height:76.953164px;}
.h2_c01015{height:88.418408px;}
.h1_c01015{height:1110.000000px;}
.h0_c01015{height:1263.000000px;}
.w1_c01015{width:763.500000px;}
.w0_c01015{width:892.500000px;}
.x0_c01015{left:0.000000px;}
.x1_c01015{left:64.500000px;}
.x2f_c01015{left:70.563285px;}
.x46_c01015{left:72.884835px;}
.x21_c01015{left:73.924335px;}
.x37_c01015{left:76.300335px;}
.x32_c01015{left:106.921035px;}
.x30_c01015{left:118.647585px;}
.x17_c01015{left:128.735685px;}
.x41_c01015{left:140.086035px;}
.x29_c01015{left:142.150185px;}
.x38_c01015{left:150.263235px;}
.x22_c01015{left:152.144235px;}
.x57_c01015{left:160.955235px;}
.x4b_c01015{left:162.539235px;}
.x3d_c01015{left:163.831185px;}
.x3_c01015{left:184.240035px;}
.xc_c01015{left:185.333985px;}
.x39_c01015{left:196.030935px;}
.x47_c01015{left:206.732835px;}
.xd_c01015{left:218.444535px;}
.x15_c01015{left:227.512935px;}
.x55_c01015{left:228.770235px;}
.x4_c01015{left:230.210685px;}
.x4c_c01015{left:239.848335px;}
.x18_c01015{left:241.234335px;}
.x31_c01015{left:251.223435px;}
.x48_c01015{left:252.584685px;}
.x56_c01015{left:261.430335px;}
.x23_c01015{left:263.044035px;}
.x5f_c01015{left:272.062935px;}
.x51_c01015{left:273.542985px;}
.x42_c01015{left:282.131235px;}
.xe_c01015{left:285.497235px;}
.x24_c01015{left:295.768485px;}
.x16_c01015{left:306.247635px;}
.x2a_c01015{left:308.301885px;}
.x59_c01015{left:317.385135px;}
.xf_c01015{left:319.172085px;}
.x5_c01015{left:328.433535px;}
.x19_c01015{left:329.923485px;}
.x25_c01015{left:341.075835px;}
.x3e_c01015{left:351.762885px;}
.x3c_c01015{left:353.104335px;}
.x5d_c01015{left:362.469735px;}
.x6_c01015{left:364.162635px;}
.x60_c01015{left:373.528035px;}
.x52_c01015{left:384.031935px;}
.x26_c01015{left:385.289235px;}
.x7_c01015{left:407.381085px;}
.x27_c01015{left:417.563235px;}
.x49_c01015{left:419.498685px;}
.x33_c01015{left:430.066935px;}
.x8_c01015{left:439.620435px;}
.x1a_c01015{left:441.219285px;}
.x5a_c01015{left:450.658935px;}
.x28_c01015{left:451.807335px;}
.x10_c01015{left:462.984435px;}
.x1b_c01015{left:472.448835px;}
.x4d_c01015{left:473.810085px;}
.x58_c01015{left:483.452685px;}
.x34_c01015{left:496.134585px;}
.x2b_c01015{left:506.282085px;}
.x1c_c01015{left:507.514635px;}
.x53_c01015{left:516.880035px;}
.x11_c01015{left:518.493735px;}
.x9_c01015{left:528.651135px;}
.x2c_c01015{left:530.586585px;}
.x4e_c01015{left:540.323235px;}
.x12_c01015{left:551.371635px;}
.x43_c01015{left:562.806135px;}
.x1d_c01015{left:574.106985px;}
.x4f_c01015{left:583.962435px;}
.x35_c01015{left:585.100935px;}
.x13_c01015{left:595.877085px;}
.x4a_c01015{left:605.331585px;}
.x44_c01015{left:607.242285px;}
.x3a_c01015{left:616.409685px;}
.x3f_c01015{left:617.637285px;}
.xa_c01015{left:628.695585px;}
.x3b_c01015{left:638.174835px;}
.x2d_c01015{left:639.902385px;}
.x5e_c01015{left:651.158685px;}
.x40_c01015{left:662.083335px;}
.x2_c01015{left:672.478335px;}
.x54_c01015{left:673.517835px;}
.x14_c01015{left:683.576235px;}
.x45_c01015{left:685.001835px;}
.x20_c01015{left:693.283185px;}
.x5b_c01015{left:694.847385px;}
.x61_c01015{left:703.584135px;}
.x1e_c01015{left:706.346235px;}
.x5c_c01015{left:707.469885px;}
.xb_c01015{left:716.864985px;}
.x50_c01015{left:718.052985px;}
.x2e_c01015{left:729.136035px;}
.x36_c01015{left:739.550835px;}
.x1f_c01015{left:758.227185px;}
@media print{
.v0_c01015{vertical-align:0.000000pt;}
.ls5_c01015{letter-spacing:-2.439360pt;}
.lsc_c01015{letter-spacing:-1.268467pt;}
.ls4_c01015{letter-spacing:0.000000pt;}
.ls3_c01015{letter-spacing:0.592416pt;}
.lsb_c01015{letter-spacing:1.630886pt;}
.lsa_c01015{letter-spacing:2.571782pt;}
.ls6_c01015{letter-spacing:2.657609pt;}
.ls0_c01015{letter-spacing:2.818816pt;}
.ls2_c01015{letter-spacing:3.331469pt;}
.ls1_c01015{letter-spacing:3.484800pt;}
.ls7_c01015{letter-spacing:49.420976pt;}
.ls8_c01015{letter-spacing:53.222576pt;}
.ls9_c01015{letter-spacing:58.291376pt;}
.ws0_c01015{word-spacing:-17.424000pt;}
.ws1_c01015{word-spacing:0.000000pt;}
._1_c01015{width:8.294176pt;}
._2_c01015{width:23.208416pt;}
._0_c01015{width:30.178016pt;}
.fs2_c01015{font-size:20.064000pt;}
.fsb_c01015{font-size:25.168000pt;}
.fsa_c01015{font-size:30.272176pt;}
.fs7_c01015{font-size:49.420976pt;}
.fs5_c01015{font-size:53.152176pt;}
.fs8_c01015{font-size:53.222576pt;}
.fs9_c01015{font-size:58.291376pt;}
.fs6_c01015{font-size:58.960000pt;}
.fs4_c01015{font-size:63.008000pt;}
.fs3_c01015{font-size:66.528000pt;}
.fs1_c01015{font-size:69.696000pt;}
.fs0_c01015{font-size:80.080000pt;}
.y0_c01015{bottom:0.000000pt;}
.y1c_c01015{bottom:12.272520pt;}
.y1_c01015{bottom:68.000000pt;}
.y1b_c01015{bottom:114.598920pt;}
.y1a_c01015{bottom:171.944120pt;}
.y19_c01015{bottom:200.456120pt;}
.y18_c01015{bottom:228.968120pt;}
.y17_c01015{bottom:251.777720pt;}
.y16_c01015{bottom:257.796920pt;}
.y15_c01015{bottom:285.675320pt;}
.y14_c01015{bottom:314.187320pt;}
.y13_c01015{bottom:342.061320pt;}
.y12_c01015{bottom:370.577720pt;}
.y11_c01015{bottom:397.822520pt;}
.y10_c01015{bottom:426.017720pt;}
.yf_c01015{bottom:454.208520pt;}
.ye_c01015{bottom:482.724920pt;}
.yd_c01015{bottom:539.432120pt;}
.yc_c01015{bottom:567.939720pt;}
.yb_c01015{bottom:596.139320pt;}
.ya_c01015{bottom:623.700920pt;}
.y9_c01015{bottom:651.579320pt;}
.y8_c01015{bottom:680.086920pt;}
.y7_c01015{bottom:695.297720pt;}
.y6_c01015{bottom:707.965320pt;}
.y5_c01015{bottom:764.043320pt;}
.y4_c01015{bottom:792.550920pt;}
.y3_c01015{bottom:820.433720pt;}
.y2_c01015{bottom:941.130120pt;}
.h4_c01015{height:20.926125pt;}
.hd_c01015{height:26.249438pt;}
.hc_c01015{height:31.572934pt;}
.h9_c01015{height:32.914370pt;}
.ha_c01015{height:35.446236pt;}
.hb_c01015{height:38.822056pt;}
.h7_c01015{height:52.165954pt;}
.h8_c01015{height:61.493438pt;}
.h6_c01015{height:61.838906pt;}
.h5_c01015{height:65.293594pt;}
.h3_c01015{height:68.402813pt;}
.h2_c01015{height:78.594141pt;}
.h1_c01015{height:986.666667pt;}
.h0_c01015{height:1122.666667pt;}
.w1_c01015{width:678.666667pt;}
.w0_c01015{width:793.333333pt;}
.x0_c01015{left:0.000000pt;}
.x1_c01015{left:57.333333pt;}
.x2f_c01015{left:62.722920pt;}
.x46_c01015{left:64.786520pt;}
.x21_c01015{left:65.710520pt;}
.x37_c01015{left:67.822520pt;}
.x32_c01015{left:95.040920pt;}
.x30_c01015{left:105.464520pt;}
.x17_c01015{left:114.431720pt;}
.x41_c01015{left:124.520920pt;}
.x29_c01015{left:126.355720pt;}
.x38_c01015{left:133.567320pt;}
.x22_c01015{left:135.239320pt;}
.x57_c01015{left:143.071320pt;}
.x4b_c01015{left:144.479320pt;}
.x3d_c01015{left:145.627720pt;}
.x3_c01015{left:163.768920pt;}
.xc_c01015{left:164.741320pt;}
.x39_c01015{left:174.249720pt;}
.x47_c01015{left:183.762520pt;}
.xd_c01015{left:194.172920pt;}
.x15_c01015{left:202.233720pt;}
.x55_c01015{left:203.351320pt;}
.x4_c01015{left:204.631720pt;}
.x4c_c01015{left:213.198520pt;}
.x18_c01015{left:214.430520pt;}
.x31_c01015{left:223.309720pt;}
.x48_c01015{left:224.519720pt;}
.x56_c01015{left:232.382520pt;}
.x23_c01015{left:233.816920pt;}
.x5f_c01015{left:241.833720pt;}
.x51_c01015{left:243.149320pt;}
.x42_c01015{left:250.783320pt;}
.xe_c01015{left:253.775320pt;}
.x24_c01015{left:262.905320pt;}
.x16_c01015{left:272.220120pt;}
.x2a_c01015{left:274.046120pt;}
.x59_c01015{left:282.120120pt;}
.xf_c01015{left:283.708520pt;}
.x5_c01015{left:291.940920pt;}
.x19_c01015{left:293.265320pt;}
.x25_c01015{left:303.178520pt;}
.x3e_c01015{left:312.678120pt;}
.x3c_c01015{left:313.870520pt;}
.x5d_c01015{left:322.195320pt;}
.x6_c01015{left:323.700120pt;}
.x60_c01015{left:332.024920pt;}
.x52_c01015{left:341.361720pt;}
.x26_c01015{left:342.479320pt;}
.x7_c01015{left:362.116520pt;}
.x27_c01015{left:371.167320pt;}
.x49_c01015{left:372.887720pt;}
.x33_c01015{left:382.281720pt;}
.x8_c01015{left:390.773720pt;}
.x1a_c01015{left:392.194920pt;}
.x5a_c01015{left:400.585720pt;}
.x28_c01015{left:401.606520pt;}
.x10_c01015{left:411.541720pt;}
.x1b_c01015{left:419.954520pt;}
.x4d_c01015{left:421.164520pt;}
.x58_c01015{left:429.735720pt;}
.x34_c01015{left:441.008520pt;}
.x2b_c01015{left:450.028520pt;}
.x1c_c01015{left:451.124120pt;}
.x53_c01015{left:459.448920pt;}
.x11_c01015{left:460.883320pt;}
.x9_c01015{left:469.912120pt;}
.x2c_c01015{left:471.632520pt;}
.x4e_c01015{left:480.287320pt;}
.x12_c01015{left:490.108120pt;}
.x43_c01015{left:500.272120pt;}
.x1d_c01015{left:510.317320pt;}
.x4f_c01015{left:519.077720pt;}
.x35_c01015{left:520.089720pt;}
.x13_c01015{left:529.668520pt;}
.x4a_c01015{left:538.072520pt;}
.x44_c01015{left:539.770920pt;}
.x3a_c01015{left:547.919720pt;}
.x3f_c01015{left:549.010920pt;}
.xa_c01015{left:558.840520pt;}
.x3b_c01015{left:567.266520pt;}
.x2d_c01015{left:568.802120pt;}
.x5e_c01015{left:578.807720pt;}
.x40_c01015{left:588.518520pt;}
.x2_c01015{left:597.758520pt;}
.x54_c01015{left:598.682520pt;}
.x14_c01015{left:607.623320pt;}
.x45_c01015{left:608.890520pt;}
.x20_c01015{left:616.251720pt;}
.x5b_c01015{left:617.642120pt;}
.x61_c01015{left:625.408120pt;}
.x1e_c01015{left:627.863320pt;}
.x5c_c01015{left:628.862120pt;}
.xb_c01015{left:637.213320pt;}
.x50_c01015{left:638.269320pt;}
.x2e_c01015{left:648.120920pt;}
.x36_c01015{left:657.378520pt;}
.x1f_c01015{left:673.979720pt;}
}





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

.ir_c01016:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01016{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01016;src:url('chunks/assets/font_d7a8bec137d6d37444efa2c9.woff2')format("woff");}.ff1_c01016{font-family:ff1_c01016;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01016;src:url('chunks/assets/font_2f3cdce53be9e8eb8a004d87.woff2')format("woff");}.ff2_c01016{font-family:ff2_c01016;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01016;src:url('chunks/assets/font_deedbb64b17ed32ed8c07379.woff2')format("woff");}.ff3_c01016{font-family:ff3_c01016;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01016;src:url('chunks/assets/font_819d8510e3ddf489b156a486.woff2')format("woff");}.ff4_c01016{font-family:ff4_c01016;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01016;src:url('chunks/assets/font_265ebce262cb2998d7af6693.woff2')format("woff");}.ff5_c01016{font-family:ff5_c01016;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m6a_c01016{transform:matrix(0.036586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036586,0.000000,0.000000,0.250000,0,0);}
.m6b_c01016{transform:matrix(0.121952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121952,0.000000,0.000000,0.250000,0,0);}
.m9f_c01016{transform:matrix(0.177982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177982,0.000000,0.000000,0.250000,0,0);}
.m69_c01016{transform:matrix(0.182926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182926,0.000000,0.000000,0.250000,0,0);}
.maa_c01016{transform:matrix(0.195267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195267,0.000000,0.000000,0.250000,0,0);}
.m37_c01016{transform:matrix(0.229549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229549,0.000000,0.000000,0.250000,0,0);}
.mb9_c01016{transform:matrix(0.236136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236136,0.000000,0.000000,0.250000,0,0);}
.m5c_c01016{transform:matrix(0.245747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245747,0.000000,0.000000,0.250000,0,0);}
.m0_c01016{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01016{transform:matrix(0.250321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250321,0.000000,0.000000,0.250000,0,0);}
.mba_c01016{transform:matrix(0.250432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250432,0.000000,0.000000,0.250000,0,0);}
.m5b_c01016{transform:matrix(0.255854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255854,0.000000,0.000000,0.250000,0,0);}
.ma3_c01016{transform:matrix(0.256622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256622,0.000000,0.000000,0.250000,0,0);}
.m54_c01016{transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);}
.m41_c01016{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m91_c01016{transform:matrix(0.258686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258686,0.000000,0.000000,0.250000,0,0);}
.m17_c01016{transform:matrix(0.259977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259977,0.000000,0.000000,0.250000,0,0);}
.m9b_c01016{transform:matrix(0.260220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260220,0.000000,0.000000,0.250000,0,0);}
.ma2_c01016{transform:matrix(0.260341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260341,0.000000,0.000000,0.250000,0,0);}
.m4a_c01016{transform:matrix(0.260359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260359,0.000000,0.000000,0.250000,0,0);}
.m31_c01016{transform:matrix(0.260559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260559,0.000000,0.000000,0.250000,0,0);}
.m5a_c01016{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m3e_c01016{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.m26_c01016{transform:matrix(0.263039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263039,0.000000,0.000000,0.250000,0,0);}
.mf_c01016{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m1d_c01016{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m6e_c01016{transform:matrix(0.264304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264304,0.000000,0.000000,0.250000,0,0);}
.m78_c01016{transform:matrix(0.264696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264696,0.000000,0.000000,0.250000,0,0);}
.ma7_c01016{transform:matrix(0.264902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264902,0.000000,0.000000,0.250000,0,0);}
.m1b_c01016{transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);}
.m85_c01016{transform:matrix(0.265756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265756,0.000000,0.000000,0.250000,0,0);}
.m7d_c01016{transform:matrix(0.265770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265770,0.000000,0.000000,0.250000,0,0);}
.m3a_c01016{transform:matrix(0.266177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266177,0.000000,0.000000,0.250000,0,0);}
.m49_c01016{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m64_c01016{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.m8_c01016{transform:matrix(0.267680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267680,0.000000,0.000000,0.250000,0,0);}
.m11_c01016{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m5e_c01016{transform:matrix(0.268648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268648,0.000000,0.000000,0.250000,0,0);}
.mb7_c01016{transform:matrix(0.269044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269044,0.000000,0.000000,0.250000,0,0);}
.m38_c01016{transform:matrix(0.270150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270150,0.000000,0.000000,0.250000,0,0);}
.m53_c01016{transform:matrix(0.270670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270670,0.000000,0.000000,0.250000,0,0);}
.m51_c01016{transform:matrix(0.270746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270746,0.000000,0.000000,0.250000,0,0);}
.m61_c01016{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m33_c01016{transform:matrix(0.270886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270886,0.000000,0.000000,0.250000,0,0);}
.m8c_c01016{transform:matrix(0.272725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272725,0.000000,0.000000,0.250000,0,0);}
.m25_c01016{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m9c_c01016{transform:matrix(0.273271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273271,0.000000,0.000000,0.250000,0,0);}
.ma5_c01016{transform:matrix(0.274033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274033,0.000000,0.000000,0.250000,0,0);}
.m60_c01016{transform:matrix(0.274070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274070,0.000000,0.000000,0.250000,0,0);}
.m10_c01016{transform:matrix(0.274422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274422,0.000000,0.000000,0.250000,0,0);}
.ma0_c01016{transform:matrix(0.274429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274429,0.000000,0.000000,0.250000,0,0);}
.m5_c01016{transform:matrix(0.275368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275368,0.000000,0.000000,0.250000,0,0);}
.mb5_c01016{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m2c_c01016{transform:matrix(0.275786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275786,0.000000,0.000000,0.250000,0,0);}
.me_c01016{transform:matrix(0.276542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276542,0.000000,0.000000,0.250000,0,0);}
.m9d_c01016{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m81_c01016{transform:matrix(0.277523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277523,0.000000,0.000000,0.250000,0,0);}
.m74_c01016{transform:matrix(0.277767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277767,0.000000,0.000000,0.250000,0,0);}
.m5d_c01016{transform:matrix(0.279134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279134,0.000000,0.000000,0.250000,0,0);}
.m52_c01016{transform:matrix(0.279566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279566,0.000000,0.000000,0.250000,0,0);}
.m9a_c01016{transform:matrix(0.280439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280439,0.000000,0.000000,0.250000,0,0);}
.m84_c01016{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.m75_c01016{transform:matrix(0.281636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281636,0.000000,0.000000,0.250000,0,0);}
.m34_c01016{transform:matrix(0.281783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281783,0.000000,0.000000,0.250000,0,0);}
.mb3_c01016{transform:matrix(0.283756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283756,0.000000,0.000000,0.250000,0,0);}
.m8d_c01016{transform:matrix(0.283783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283783,0.000000,0.000000,0.250000,0,0);}
.m94_c01016{transform:matrix(0.283984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283984,0.000000,0.000000,0.250000,0,0);}
.m6_c01016{transform:matrix(0.284924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284924,0.000000,0.000000,0.250000,0,0);}
.mad_c01016{transform:matrix(0.284968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284968,0.000000,0.000000,0.250000,0,0);}
.m24_c01016{transform:matrix(0.285404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285404,0.000000,0.000000,0.250000,0,0);}
.m2_c01016{transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);}
.m32_c01016{transform:matrix(0.286496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286496,0.000000,0.000000,0.250000,0,0);}
.mbb_c01016{transform:matrix(0.286698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286698,0.000000,0.000000,0.250000,0,0);}
.m7_c01016{transform:matrix(0.287254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287254,0.000000,0.000000,0.250000,0,0);}
.m9e_c01016{transform:matrix(0.287280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287280,0.000000,0.000000,0.250000,0,0);}
.m7e_c01016{transform:matrix(0.287533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287533,0.000000,0.000000,0.250000,0,0);}
.m15_c01016{transform:matrix(0.288208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288208,0.000000,0.000000,0.250000,0,0);}
.m79_c01016{transform:matrix(0.288213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288213,0.000000,0.000000,0.250000,0,0);}
.m7a_c01016{transform:matrix(0.288806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288806,0.000000,0.000000,0.250000,0,0);}
.ma8_c01016{transform:matrix(0.289083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289083,0.000000,0.000000,0.250000,0,0);}
.m36_c01016{transform:matrix(0.289347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289347,0.000000,0.000000,0.250000,0,0);}
.mc_c01016{transform:matrix(0.289464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289464,0.000000,0.000000,0.250000,0,0);}
.m40_c01016{transform:matrix(0.289801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289801,0.000000,0.000000,0.250000,0,0);}
.ma4_c01016{transform:matrix(0.289940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289940,0.000000,0.000000,0.250000,0,0);}
.m71_c01016{transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);}
.m1a_c01016{transform:matrix(0.290886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290886,0.000000,0.000000,0.250000,0,0);}
.m65_c01016{transform:matrix(0.291292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291292,0.000000,0.000000,0.250000,0,0);}
.m3_c01016{transform:matrix(0.291590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291590,0.000000,0.000000,0.250000,0,0);}
.m80_c01016{transform:matrix(0.291753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291753,0.000000,0.000000,0.250000,0,0);}
.m29_c01016{transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);}
.m56_c01016{transform:matrix(0.292801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292801,0.000000,0.000000,0.250000,0,0);}
.m48_c01016{transform:matrix(0.293270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293270,0.000000,0.000000,0.250000,0,0);}
.m73_c01016{transform:matrix(0.293564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293564,0.000000,0.000000,0.250000,0,0);}
.m76_c01016{transform:matrix(0.293983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293983,0.000000,0.000000,0.250000,0,0);}
.m90_c01016{transform:matrix(0.294588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294588,0.000000,0.000000,0.250000,0,0);}
.m4f_c01016{transform:matrix(0.294805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294805,0.000000,0.000000,0.250000,0,0);}
.m62_c01016{transform:matrix(0.295150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295150,0.000000,0.000000,0.250000,0,0);}
.m6f_c01016{transform:matrix(0.295212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295212,0.000000,0.000000,0.250000,0,0);}
.m30_c01016{transform:matrix(0.295860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295860,0.000000,0.000000,0.250000,0,0);}
.m4_c01016{transform:matrix(0.296237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296237,0.000000,0.000000,0.250000,0,0);}
.m59_c01016{transform:matrix(0.296436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296436,0.000000,0.000000,0.250000,0,0);}
.m92_c01016{transform:matrix(0.296582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296582,0.000000,0.000000,0.250000,0,0);}
.m2d_c01016{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m96_c01016{transform:matrix(0.297290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297290,0.000000,0.000000,0.250000,0,0);}
.m43_c01016{transform:matrix(0.297395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297395,0.000000,0.000000,0.250000,0,0);}
.m89_c01016{transform:matrix(0.297631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297631,0.000000,0.000000,0.250000,0,0);}
.m1f_c01016{transform:matrix(0.298376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298376,0.000000,0.000000,0.250000,0,0);}
.m99_c01016{transform:matrix(0.299090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299090,0.000000,0.000000,0.250000,0,0);}
.m67_c01016{transform:matrix(0.300023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300023,0.000000,0.000000,0.250000,0,0);}
.m45_c01016{transform:matrix(0.300081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300081,0.000000,0.000000,0.250000,0,0);}
.maf_c01016{transform:matrix(0.300111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300111,0.000000,0.000000,0.250000,0,0);}
.m50_c01016{transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);}
.m35_c01016{transform:matrix(0.302197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302197,0.000000,0.000000,0.250000,0,0);}
.m4b_c01016{transform:matrix(0.302281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302281,0.000000,0.000000,0.250000,0,0);}
.m97_c01016{transform:matrix(0.302359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302359,0.000000,0.000000,0.250000,0,0);}
.mab_c01016{transform:matrix(0.302390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302390,0.000000,0.000000,0.250000,0,0);}
.m2b_c01016{transform:matrix(0.302463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302463,0.000000,0.000000,0.250000,0,0);}
.mb0_c01016{transform:matrix(0.302597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302597,0.000000,0.000000,0.250000,0,0);}
.m63_c01016{transform:matrix(0.302902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302902,0.000000,0.000000,0.250000,0,0);}
.m3b_c01016{transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);}
.m70_c01016{transform:matrix(0.303127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303127,0.000000,0.000000,0.250000,0,0);}
.m55_c01016{transform:matrix(0.305061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305061,0.000000,0.000000,0.250000,0,0);}
.m4d_c01016{transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);}
.m82_c01016{transform:matrix(0.305280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305280,0.000000,0.000000,0.250000,0,0);}
.ma_c01016{transform:matrix(0.305768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305768,0.000000,0.000000,0.250000,0,0);}
.m4e_c01016{transform:matrix(0.306147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306147,0.000000,0.000000,0.250000,0,0);}
.m8e_c01016{transform:matrix(0.306189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306189,0.000000,0.000000,0.250000,0,0);}
.mb_c01016{transform:matrix(0.306884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306884,0.000000,0.000000,0.250000,0,0);}
.m46_c01016{transform:matrix(0.307312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307312,0.000000,0.000000,0.250000,0,0);}
.mb2_c01016{transform:matrix(0.307496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307496,0.000000,0.000000,0.250000,0,0);}
.m6c_c01016{transform:matrix(0.307681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307681,0.000000,0.000000,0.250000,0,0);}
.m2e_c01016{transform:matrix(0.307806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307806,0.000000,0.000000,0.250000,0,0);}
.mb8_c01016{transform:matrix(0.308302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308302,0.000000,0.000000,0.250000,0,0);}
.m5f_c01016{transform:matrix(0.309234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309234,0.000000,0.000000,0.250000,0,0);}
.m9_c01016{transform:matrix(0.309632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309632,0.000000,0.000000,0.250000,0,0);}
.m2a_c01016{transform:matrix(0.309721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309721,0.000000,0.000000,0.250000,0,0);}
.mbe_c01016{transform:matrix(0.309960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309960,0.000000,0.000000,0.250000,0,0);}
.m22_c01016{transform:matrix(0.310470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310470,0.000000,0.000000,0.250000,0,0);}
.mbf_c01016{transform:matrix(0.310494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310494,0.000000,0.000000,0.250000,0,0);}
.m8f_c01016{transform:matrix(0.311166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311166,0.000000,0.000000,0.250000,0,0);}
.m7c_c01016{transform:matrix(0.312561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312561,0.000000,0.000000,0.250000,0,0);}
.m23_c01016{transform:matrix(0.313242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313242,0.000000,0.000000,0.250000,0,0);}
.m3c_c01016{transform:matrix(0.313264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313264,0.000000,0.000000,0.250000,0,0);}
.m19_c01016{transform:matrix(0.313862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313862,0.000000,0.000000,0.250000,0,0);}
.mbd_c01016{transform:matrix(0.315164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315164,0.000000,0.000000,0.250000,0,0);}
.mb1_c01016{transform:matrix(0.315313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315313,0.000000,0.000000,0.250000,0,0);}
.m3d_c01016{transform:matrix(0.316121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316121,0.000000,0.000000,0.250000,0,0);}
.m95_c01016{transform:matrix(0.316992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316992,0.000000,0.000000,0.250000,0,0);}
.m8b_c01016{transform:matrix(0.317203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317203,0.000000,0.000000,0.250000,0,0);}
.m39_c01016{transform:matrix(0.318082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318082,0.000000,0.000000,0.250000,0,0);}
.m4c_c01016{transform:matrix(0.318379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318379,0.000000,0.000000,0.250000,0,0);}
.md_c01016{transform:matrix(0.319808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319808,0.000000,0.000000,0.250000,0,0);}
.m47_c01016{transform:matrix(0.320521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320521,0.000000,0.000000,0.250000,0,0);}
.mb4_c01016{transform:matrix(0.320908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320908,0.000000,0.000000,0.250000,0,0);}
.m98_c01016{transform:matrix(0.323442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323442,0.000000,0.000000,0.250000,0,0);}
.mc0_c01016{transform:matrix(0.324879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324879,0.000000,0.000000,0.250000,0,0);}
.m6d_c01016{transform:matrix(0.325602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325602,0.000000,0.000000,0.250000,0,0);}
.m7b_c01016{transform:matrix(0.326045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326045,0.000000,0.000000,0.250000,0,0);}
.m20_c01016{transform:matrix(0.326100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326100,0.000000,0.000000,0.250000,0,0);}
.m83_c01016{transform:matrix(0.326848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326848,0.000000,0.000000,0.250000,0,0);}
.ma9_c01016{transform:matrix(0.327076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327076,0.000000,0.000000,0.250000,0,0);}
.m72_c01016{transform:matrix(0.327596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327596,0.000000,0.000000,0.250000,0,0);}
.m88_c01016{transform:matrix(0.328544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328544,0.000000,0.000000,0.250000,0,0);}
.m21_c01016{transform:matrix(0.329646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329646,0.000000,0.000000,0.250000,0,0);}
.m28_c01016{transform:matrix(0.330002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330002,0.000000,0.000000,0.250000,0,0);}
.m57_c01016{transform:matrix(0.330205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330205,0.000000,0.000000,0.250000,0,0);}
.m87_c01016{transform:matrix(0.330710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330710,0.000000,0.000000,0.250000,0,0);}
.m86_c01016{transform:matrix(0.332318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332318,0.000000,0.000000,0.250000,0,0);}
.m13_c01016{transform:matrix(0.332340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332340,0.000000,0.000000,0.250000,0,0);}
.m27_c01016{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.mb6_c01016{transform:matrix(0.336789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336789,0.000000,0.000000,0.250000,0,0);}
.m18_c01016{transform:matrix(0.338886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338886,0.000000,0.000000,0.250000,0,0);}
.m2f_c01016{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.mbc_c01016{transform:matrix(0.339556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339556,0.000000,0.000000,0.250000,0,0);}
.m12_c01016{transform:matrix(0.340828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340828,0.000000,0.000000,0.250000,0,0);}
.m1c_c01016{transform:matrix(0.342694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342694,0.000000,0.000000,0.250000,0,0);}
.m7f_c01016{transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);}
.m14_c01016{transform:matrix(0.346751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346751,0.000000,0.000000,0.250000,0,0);}
.m68_c01016{transform:matrix(0.347015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347015,0.000000,0.000000,0.250000,0,0);}
.m3f_c01016{transform:matrix(0.347047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347047,0.000000,0.000000,0.250000,0,0);}
.m8a_c01016{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m66_c01016{transform:matrix(0.349926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349926,0.000000,0.000000,0.250000,0,0);}
.m44_c01016{transform:matrix(0.351038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351038,0.000000,0.000000,0.250000,0,0);}
.m93_c01016{transform:matrix(0.353367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353367,0.000000,0.000000,0.250000,0,0);}
.m16_c01016{transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355275,0.000000,0.000000,0.250000,0,0);}
.m77_c01016{transform:matrix(0.357458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357458,0.000000,0.000000,0.250000,0,0);}
.ma6_c01016{transform:matrix(0.357856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357856,0.000000,0.000000,0.250000,0,0);}
.ma1_c01016{transform:matrix(0.360238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360238,0.000000,0.000000,0.250000,0,0);}
.m42_c01016{transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);}
.mac_c01016{transform:matrix(0.374773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374773,0.000000,0.000000,0.250000,0,0);}
.m1e_c01016{transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);}
.mae_c01016{transform:matrix(0.385437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385437,0.000000,0.000000,0.250000,0,0);}
.m58_c01016{transform:matrix(0.391460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391460,0.000000,0.000000,0.250000,0,0);}
.v0_c01016{vertical-align:0.000000px;}
.ls8_c01016{letter-spacing:-2.744280px;}
.ls7_c01016{letter-spacing:-2.217600px;}
.ls13_c01016{letter-spacing:-1.358280px;}
.ls11_c01016{letter-spacing:-1.275120px;}
.lse_c01016{letter-spacing:-0.948737px;}
.ls6_c01016{letter-spacing:-0.470448px;}
.lsd_c01016{letter-spacing:-0.258746px;}
.ls0_c01016{letter-spacing:0.000000px;}
.lsf_c01016{letter-spacing:0.384199px;}
.ls9_c01016{letter-spacing:0.893851px;}
.ls5_c01016{letter-spacing:1.027145px;}
.ls10_c01016{letter-spacing:1.246687px;}
.ls4_c01016{letter-spacing:2.534400px;}
.ls3_c01016{letter-spacing:3.405610px;}
.ls12_c01016{letter-spacing:3.614609px;}
.lsa_c01016{letter-spacing:3.623400px;}
.ls2_c01016{letter-spacing:3.920400px;}
.lsc_c01016{letter-spacing:4.217400px;}
.ls1_c01016{letter-spacing:4.395610px;}
.lsb_c01016{letter-spacing:58.449798px;}
.sc__c01016{text-shadow:none;}
.sc0_c01016{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01016{-webkit-text-stroke:0px transparent;}
.sc0_c01016{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01016{word-spacing:0.000000px;}
._3_c01016{margin-left:-3.919608px;}
._1_c01016{width:1.488960px;}
._2_c01016{width:9.801000px;}
._0_c01016{width:31.180248px;}
.fc0_c01016{color:transparent;}
.fs7_c01016{font-size:26.928000px;}
.fs3_c01016{font-size:27.720000px;}
.fs0_c01016{font-size:28.512000px;}
.fs1_c01016{font-size:33.660000px;}
.fsd_c01016{font-size:36.432000px;}
.fse_c01016{font-size:38.808000px;}
.fs6_c01016{font-size:50.688000px;}
.fsa_c01016{font-size:58.449798px;}
.fs8_c01016{font-size:63.360000px;}
.fs5_c01016{font-size:68.112198px;}
.fs9_c01016{font-size:72.468000px;}
.fsf_c01016{font-size:72.864000px;}
.fsc_c01016{font-size:74.844000px;}
.fs4_c01016{font-size:78.408000px;}
.fsb_c01016{font-size:84.348000px;}
.fs2_c01016{font-size:87.912198px;}
.y0_c01016{bottom:0.000000px;}
.y1_c01016{bottom:76.500000px;}
.y21_c01016{bottom:86.512185px;}
.y20_c01016{bottom:123.939135px;}
.y1f_c01016{bottom:187.021935px;}
.y1e_c01016{bottom:219.449385px;}
.y1d_c01016{bottom:235.135935px;}
.y1c_c01016{bottom:251.173935px;}
.y1b_c01016{bottom:276.478335px;}
.y1a_c01016{bottom:283.249935px;}
.y19_c01016{bottom:314.256735px;}
.y18_c01016{bottom:347.040585px;}
.y17_c01016{bottom:378.765135px;}
.y16_c01016{bottom:410.841135px;}
.y15_c01016{bottom:442.199385px;}
.y14_c01016{bottom:473.923935px;}
.y13_c01016{bottom:537.358185px;}
.y12_c01016{bottom:569.082735px;}
.y11_c01016{bottom:600.802335px;}
.y10_c01016{bottom:633.591135px;}
.yf_c01016{bottom:664.597935px;}
.ye_c01016{bottom:695.961135px;}
.yd_c01016{bottom:726.967935px;}
.yc_c01016{bottom:759.038985px;}
.yb_c01016{bottom:790.407135px;}
.ya_c01016{bottom:821.770335px;}
.y9_c01016{bottom:853.841385px;}
.y8_c01016{bottom:870.597135px;}
.y7_c01016{bottom:885.922335px;}
.y6_c01016{bottom:917.993385px;}
.y5_c01016{bottom:981.788985px;}
.y4_c01016{bottom:1053.068985px;}
.y3_c01016{bottom:1074.096585px;}
.y2_c01016{bottom:1103.677785px;}
.h9_c01016{height:28.085063px;}
.h5_c01016{height:28.911094px;}
.h2_c01016{height:29.737125px;}
.h3_c01016{height:33.035449px;}
.hf_c01016{height:37.997438px;}
.h10_c01016{height:38.087930px;}
.hc_c01016{height:38.927565px;}
.h8_c01016{height:52.866000px;}
.ha_c01016{height:62.184375px;}
.h7_c01016{height:71.038894px;}
.hb_c01016{height:71.123379px;}
.h11_c01016{height:71.512031px;}
.he_c01016{height:73.455293px;}
.h6_c01016{height:76.953164px;}
.hd_c01016{height:85.006969px;}
.h4_c01016{height:86.281015px;}
.h1_c01016{height:1110.000000px;}
.h0_c01016{height:1263.000000px;}
.w1_c01016{width:763.500000px;}
.w0_c01016{width:892.500000px;}
.x2_c01016{left:-1.271100px;}
.x0_c01016{left:0.000000px;}
.x1_c01016{left:64.500000px;}
.x7_c01016{left:78.626850px;}
.x12_c01016{left:80.205900px;}
.x63_c01016{left:81.646350px;}
.x67_c01016{left:103.545150px;}
.x26_c01016{left:111.737400px;}
.x30_c01016{left:112.945200px;}
.x8_c01016{left:124.053000px;}
.x50_c01016{left:133.487700px;}
.x54_c01016{left:135.784500px;}
.x48_c01016{left:145.248900px;}
.x1d_c01016{left:147.179400px;}
.x2b_c01016{left:158.133750px;}
.x55_c01016{left:167.014050px;}
.x49_c01016{left:168.449550px;}
.x6d_c01016{left:189.026700px;}
.x59_c01016{left:190.125600px;}
.x27_c01016{left:191.328450px;}
.x4a_c01016{left:193.036200px;}
.x41_c01016{left:201.901650px;}
.x4b_c01016{left:212.752050px;}
.x3_c01016{left:214.999350px;}
.x1e_c01016{left:223.963800px;}
.x31_c01016{left:233.987550px;}
.x13_c01016{left:235.828950px;}
.x4c_c01016{left:237.719850px;}
.x56_c01016{left:245.189400px;}
.x9_c01016{left:246.520950px;}
.x60_c01016{left:248.679150px;}
.x39_c01016{left:256.435800px;}
.x51_c01016{left:257.569350px;}
.x4d_c01016{left:267.162450px;}
.x32_c01016{left:269.335500px;}
.x42_c01016{left:279.012750px;}
.x6_c01016{left:288.086100px;}
.x38_c01016{left:289.615650px;}
.x2c_c01016{left:290.848200px;}
.x14_c01016{left:301.515450px;}
.x28_c01016{left:302.876700px;}
.x1f_c01016{left:314.004300px;}
.x3c_c01016{left:324.973500px;}
.x6c_c01016{left:333.710250px;}
.x20_c01016{left:335.007150px;}
.x68_c01016{left:336.254550px;}
.x4e_c01016{left:345.535800px;}
.x15_c01016{left:346.669350px;}
.x29_c01016{left:357.623700px;}
.xa_c01016{left:378.690900px;}
.x21_c01016{left:379.720500px;}
.x64_c01016{left:382.076700px;}
.x52_c01016{left:391.575750px;}
.x65_c01016{left:393.466650px;}
.xb_c01016{left:400.767900px;}
.x33_c01016{left:402.267750px;}
.x3e_c01016{left:403.757700px;}
.x4f_c01016{left:406.816800px;}
.x43_c01016{left:413.088450px;}
.x5a_c01016{left:423.240900px;}
.x34_c01016{left:425.062500px;}
.x3a_c01016{left:435.130800px;}
.x61_c01016{left:445.362450px;}
.x2d_c01016{left:446.585100px;}
.x66_c01016{left:448.713600px;}
.x44_c01016{left:455.881200px;}
.x16_c01016{left:457.638450px;}
.xc_c01016{left:468.493800px;}
.x22_c01016{left:479.715450px;}
.x17_c01016{left:491.011350px;}
.xd_c01016{left:501.841950px;}
.x46_c01016{left:512.875500px;}
.x5b_c01016{left:522.701250px;}
.x35_c01016{left:524.235750px;}
.x5c_c01016{left:535.917750px;}
.xe_c01016{left:545.896950px;}
.x69_c01016{left:547.089900px;}
.x18_c01016{left:556.712700px;}
.x3f_c01016{left:559.192650px;}
.x62_c01016{left:568.800600px;}
.x2e_c01016{left:579.037200px;}
.x19_c01016{left:588.932250px;}
.x57_c01016{left:590.016300px;}
.x23_c01016{left:600.901350px;}
.x2a_c01016{left:611.400300px;}
.x3d_c01016{left:612.548700px;}
.x53_c01016{left:613.702050px;}
.x36_c01016{left:618.859950px;}
.x3b_c01016{left:623.003100px;}
.x47_c01016{left:624.369300px;}
.x1c_c01016{left:629.086650px;}
.xf_c01016{left:632.734800px;}
.x45_c01016{left:634.378200px;}
.x24_c01016{left:644.357400px;}
.x6e_c01016{left:646.159200px;}
.x1a_c01016{left:654.900900px;}
.x40_c01016{left:656.267100px;}
.x10_c01016{left:667.553100px;}
.x6a_c01016{left:669.993450px;}
.x4_c01016{left:677.472900px;}
.x1b_c01016{left:678.522300px;}
.x11_c01016{left:687.640200px;}
.x25_c01016{left:688.942050px;}
.x2f_c01016{left:690.006300px;}
.x5d_c01016{left:691.021050px;}
.x5e_c01016{left:699.064800px;}
.x5f_c01016{left:702.351600px;}
.x6f_c01016{left:703.623750px;}
.x5_c01016{left:711.142800px;}
.x6b_c01016{left:712.464450px;}
.x37_c01016{left:722.443650px;}
.x58_c01016{left:745.575000px;}
@media print{
.v0_c01016{vertical-align:0.000000pt;}
.ls8_c01016{letter-spacing:-2.439360pt;}
.ls7_c01016{letter-spacing:-1.971200pt;}
.ls13_c01016{letter-spacing:-1.207360pt;}
.ls11_c01016{letter-spacing:-1.133440pt;}
.lse_c01016{letter-spacing:-0.843322pt;}
.ls6_c01016{letter-spacing:-0.418176pt;}
.lsd_c01016{letter-spacing:-0.229997pt;}
.ls0_c01016{letter-spacing:0.000000pt;}
.lsf_c01016{letter-spacing:0.341510pt;}
.ls9_c01016{letter-spacing:0.794534pt;}
.ls5_c01016{letter-spacing:0.913018pt;}
.ls10_c01016{letter-spacing:1.108166pt;}
.ls4_c01016{letter-spacing:2.252800pt;}
.ls3_c01016{letter-spacing:3.027209pt;}
.ls12_c01016{letter-spacing:3.212986pt;}
.lsa_c01016{letter-spacing:3.220800pt;}
.ls2_c01016{letter-spacing:3.484800pt;}
.lsc_c01016{letter-spacing:3.748800pt;}
.ls1_c01016{letter-spacing:3.907209pt;}
.lsb_c01016{letter-spacing:51.955376pt;}
.ws0_c01016{word-spacing:0.000000pt;}
._3_c01016{margin-left:-3.484096pt;}
._1_c01016{width:1.323520pt;}
._2_c01016{width:8.712000pt;}
._0_c01016{width:27.715776pt;}
.fs7_c01016{font-size:23.936000pt;}
.fs3_c01016{font-size:24.640000pt;}
.fs0_c01016{font-size:25.344000pt;}
.fs1_c01016{font-size:29.920000pt;}
.fsd_c01016{font-size:32.384000pt;}
.fse_c01016{font-size:34.496000pt;}
.fs6_c01016{font-size:45.056000pt;}
.fsa_c01016{font-size:51.955376pt;}
.fs8_c01016{font-size:56.320000pt;}
.fs5_c01016{font-size:60.544176pt;}
.fs9_c01016{font-size:64.416000pt;}
.fsf_c01016{font-size:64.768000pt;}
.fsc_c01016{font-size:66.528000pt;}
.fs4_c01016{font-size:69.696000pt;}
.fsb_c01016{font-size:74.976000pt;}
.fs2_c01016{font-size:78.144176pt;}
.y0_c01016{bottom:0.000000pt;}
.y1_c01016{bottom:68.000000pt;}
.y21_c01016{bottom:76.899720pt;}
.y20_c01016{bottom:110.168120pt;}
.y1f_c01016{bottom:166.241720pt;}
.y1e_c01016{bottom:195.066120pt;}
.y1d_c01016{bottom:209.009720pt;}
.y1c_c01016{bottom:223.265720pt;}
.y1b_c01016{bottom:245.758520pt;}
.y1a_c01016{bottom:251.777720pt;}
.y19_c01016{bottom:279.339320pt;}
.y18_c01016{bottom:308.480520pt;}
.y17_c01016{bottom:336.680120pt;}
.y16_c01016{bottom:365.192120pt;}
.y15_c01016{bottom:393.066120pt;}
.y14_c01016{bottom:421.265720pt;}
.y13_c01016{bottom:477.651720pt;}
.y12_c01016{bottom:505.851320pt;}
.y11_c01016{bottom:534.046520pt;}
.y10_c01016{bottom:563.192120pt;}
.yf_c01016{bottom:590.753720pt;}
.ye_c01016{bottom:618.632120pt;}
.yd_c01016{bottom:646.193720pt;}
.yc_c01016{bottom:674.701320pt;}
.yb_c01016{bottom:702.584120pt;}
.ya_c01016{bottom:730.462520pt;}
.y9_c01016{bottom:758.970120pt;}
.y8_c01016{bottom:773.864120pt;}
.y7_c01016{bottom:787.486520pt;}
.y6_c01016{bottom:815.994120pt;}
.y5_c01016{bottom:872.701320pt;}
.y4_c01016{bottom:936.061320pt;}
.y3_c01016{bottom:954.752520pt;}
.y2_c01016{bottom:981.046920pt;}
.h9_c01016{height:24.964500pt;}
.h5_c01016{height:25.698750pt;}
.h2_c01016{height:26.433000pt;}
.h3_c01016{height:29.364844pt;}
.hf_c01016{height:33.775500pt;}
.h10_c01016{height:33.855938pt;}
.hc_c01016{height:34.602280pt;}
.h8_c01016{height:46.992000pt;}
.ha_c01016{height:55.275000pt;}
.h7_c01016{height:63.145684pt;}
.hb_c01016{height:63.220781pt;}
.h11_c01016{height:63.566250pt;}
.he_c01016{height:65.293594pt;}
.h6_c01016{height:68.402813pt;}
.hd_c01016{height:75.561750pt;}
.h4_c01016{height:76.694235pt;}
.h1_c01016{height:986.666667pt;}
.h0_c01016{height:1122.666667pt;}
.w1_c01016{width:678.666667pt;}
.w0_c01016{width:793.333333pt;}
.x2_c01016{left:-1.129867pt;}
.x0_c01016{left:0.000000pt;}
.x1_c01016{left:57.333333pt;}
.x7_c01016{left:69.890533pt;}
.x12_c01016{left:71.294133pt;}
.x63_c01016{left:72.574533pt;}
.x67_c01016{left:92.040133pt;}
.x26_c01016{left:99.322133pt;}
.x30_c01016{left:100.395733pt;}
.x8_c01016{left:110.269333pt;}
.x50_c01016{left:118.655733pt;}
.x54_c01016{left:120.697333pt;}
.x48_c01016{left:129.110133pt;}
.x1d_c01016{left:130.826133pt;}
.x2b_c01016{left:140.563333pt;}
.x55_c01016{left:148.456933pt;}
.x49_c01016{left:149.732933pt;}
.x6d_c01016{left:168.023733pt;}
.x59_c01016{left:169.000533pt;}
.x27_c01016{left:170.069733pt;}
.x4a_c01016{left:171.587733pt;}
.x41_c01016{left:179.468133pt;}
.x4b_c01016{left:189.112933pt;}
.x3_c01016{left:191.110533pt;}
.x1e_c01016{left:199.078933pt;}
.x31_c01016{left:207.988933pt;}
.x13_c01016{left:209.625733pt;}
.x4c_c01016{left:211.306533pt;}
.x56_c01016{left:217.946133pt;}
.x9_c01016{left:219.129733pt;}
.x60_c01016{left:221.048133pt;}
.x39_c01016{left:227.942933pt;}
.x51_c01016{left:228.950533pt;}
.x4d_c01016{left:237.477733pt;}
.x32_c01016{left:239.409333pt;}
.x42_c01016{left:248.011333pt;}
.x6_c01016{left:256.076533pt;}
.x38_c01016{left:257.436133pt;}
.x2c_c01016{left:258.531733pt;}
.x14_c01016{left:268.013733pt;}
.x28_c01016{left:269.223733pt;}
.x1f_c01016{left:279.114933pt;}
.x3c_c01016{left:288.865333pt;}
.x6c_c01016{left:296.631333pt;}
.x20_c01016{left:297.784133pt;}
.x68_c01016{left:298.892933pt;}
.x4e_c01016{left:307.142933pt;}
.x15_c01016{left:308.150533pt;}
.x29_c01016{left:317.887733pt;}
.xa_c01016{left:336.614133pt;}
.x21_c01016{left:337.529333pt;}
.x64_c01016{left:339.623733pt;}
.x52_c01016{left:348.067333pt;}
.x65_c01016{left:349.748133pt;}
.xb_c01016{left:356.238133pt;}
.x33_c01016{left:357.571333pt;}
.x3e_c01016{left:358.895733pt;}
.x4f_c01016{left:361.614933pt;}
.x43_c01016{left:367.189733pt;}
.x5a_c01016{left:376.214133pt;}
.x34_c01016{left:377.833333pt;}
.x3a_c01016{left:386.782933pt;}
.x61_c01016{left:395.877733pt;}
.x2d_c01016{left:396.964533pt;}
.x66_c01016{left:398.856533pt;}
.x44_c01016{left:405.227733pt;}
.x16_c01016{left:406.789733pt;}
.xc_c01016{left:416.438933pt;}
.x22_c01016{left:426.413733pt;}
.x17_c01016{left:436.454533pt;}
.xd_c01016{left:446.081733pt;}
.x46_c01016{left:455.889333pt;}
.x5b_c01016{left:464.623333pt;}
.x35_c01016{left:465.987333pt;}
.x5c_c01016{left:476.371333pt;}
.xe_c01016{left:485.241733pt;}
.x69_c01016{left:486.302133pt;}
.x18_c01016{left:494.855733pt;}
.x3f_c01016{left:497.060133pt;}
.x62_c01016{left:505.600533pt;}
.x2e_c01016{left:514.699733pt;}
.x19_c01016{left:523.495333pt;}
.x57_c01016{left:524.458933pt;}
.x23_c01016{left:534.134533pt;}
.x2a_c01016{left:543.466933pt;}
.x3d_c01016{left:544.487733pt;}
.x53_c01016{left:545.512933pt;}
.x36_c01016{left:550.097733pt;}
.x3b_c01016{left:553.780533pt;}
.x47_c01016{left:554.994933pt;}
.x1c_c01016{left:559.188133pt;}
.xf_c01016{left:562.430933pt;}
.x45_c01016{left:563.891733pt;}
.x24_c01016{left:572.762133pt;}
.x6e_c01016{left:574.363733pt;}
.x1a_c01016{left:582.134133pt;}
.x40_c01016{left:583.348533pt;}
.x10_c01016{left:593.380533pt;}
.x6a_c01016{left:595.549733pt;}
.x4_c01016{left:602.198133pt;}
.x1b_c01016{left:603.130933pt;}
.x11_c01016{left:611.235733pt;}
.x25_c01016{left:612.392933pt;}
.x2f_c01016{left:613.338933pt;}
.x5d_c01016{left:614.240933pt;}
.x5e_c01016{left:621.390933pt;}
.x5f_c01016{left:624.312533pt;}
.x6f_c01016{left:625.443333pt;}
.x5_c01016{left:632.126933pt;}
.x6b_c01016{left:633.301733pt;}
.x37_c01016{left:642.172133pt;}
.x58_c01016{left:662.733333pt;}
}





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

.ir_c01017:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01017{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01017;src:url('chunks/assets/font_abef3601fb418c62720fe9e3.woff2')format("woff");}.ff1_c01017{font-family:ff1_c01017;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01017;src:url('chunks/assets/font_566790d1259605e60c250943.woff2')format("woff");}.ff2_c01017{font-family:ff2_c01017;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01017;src:url('chunks/assets/font_d1900f3fbf60601add2eee8b.woff2')format("woff");}.ff3_c01017{font-family:ff3_c01017;line-height:0.666000;font-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_c01017{transform:matrix(0.067709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.067709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.067709,0.000000,0.000000,0.250000,0,0);}
.m4d_c01017{transform:matrix(0.119792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119792,0.000000,0.000000,0.250000,0,0);}
.m4e_c01017{transform:matrix(0.161459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161459,0.000000,0.000000,0.250000,0,0);}
.m7f_c01017{transform:matrix(0.226965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226965,0.000000,0.000000,0.250000,0,0);}
.ma4_c01017{transform:matrix(0.227723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227723,0.000000,0.000000,0.250000,0,0);}
.m8e_c01017{transform:matrix(0.243955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243955,0.000000,0.000000,0.250000,0,0);}
.m0_c01017{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m6d_c01017{transform:matrix(0.250205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250205,0.000000,0.000000,0.250000,0,0);}
.m1_c01017{transform:matrix(0.250938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250938,0.000000,0.000000,0.250000,0,0);}
.mbe_c01017{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.m7c_c01017{transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);}
.ma0_c01017{transform:matrix(0.255557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255557,0.000000,0.000000,0.250000,0,0);}
.m37_c01017{transform:matrix(0.256924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256924,0.000000,0.000000,0.250000,0,0);}
.mad_c01017{transform:matrix(0.257306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257306,0.000000,0.000000,0.250000,0,0);}
.m83_c01017{transform:matrix(0.257322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257322,0.000000,0.000000,0.250000,0,0);}
.me_c01017{transform:matrix(0.257626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257626,0.000000,0.000000,0.250000,0,0);}
.mbd_c01017{transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);}
.m46_c01017{transform:matrix(0.258503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258503,0.000000,0.000000,0.250000,0,0);}
.m15_c01017{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m67_c01017{transform:matrix(0.259554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259554,0.000000,0.000000,0.250000,0,0);}
.m2f_c01017{transform:matrix(0.259914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259914,0.000000,0.000000,0.250000,0,0);}
.m21_c01017{transform:matrix(0.259988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259988,0.000000,0.000000,0.250000,0,0);}
.m47_c01017{transform:matrix(0.260559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260559,0.000000,0.000000,0.250000,0,0);}
.m53_c01017{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m8f_c01017{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.m3d_c01017{transform:matrix(0.263068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263068,0.000000,0.000000,0.250000,0,0);}
.m10_c01017{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m33_c01017{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m22_c01017{transform:matrix(0.264487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264487,0.000000,0.000000,0.250000,0,0);}
.m78_c01017{transform:matrix(0.264902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264902,0.000000,0.000000,0.250000,0,0);}
.mb9_c01017{transform:matrix(0.265799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265799,0.000000,0.000000,0.250000,0,0);}
.m4f_c01017{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m50_c01017{transform:matrix(0.266706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266706,0.000000,0.000000,0.250000,0,0);}
.m73_c01017{transform:matrix(0.267579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267579,0.000000,0.000000,0.250000,0,0);}
.m69_c01017{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m49_c01017{transform:matrix(0.268552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268552,0.000000,0.000000,0.250000,0,0);}
.m6e_c01017{transform:matrix(0.270873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270873,0.000000,0.000000,0.250000,0,0);}
.m64_c01017{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m32_c01017{transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);}
.m30_c01017{transform:matrix(0.272153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272153,0.000000,0.000000,0.250000,0,0);}
.m1e_c01017{transform:matrix(0.273739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273739,0.000000,0.000000,0.250000,0,0);}
.m8c_c01017{transform:matrix(0.273779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273779,0.000000,0.000000,0.250000,0,0);}
.m29_c01017{transform:matrix(0.273807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273807,0.000000,0.000000,0.250000,0,0);}
.m38_c01017{transform:matrix(0.275040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275040,0.000000,0.000000,0.250000,0,0);}
.m2d_c01017{transform:matrix(0.276693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276693,0.000000,0.000000,0.250000,0,0);}
.ma1_c01017{transform:matrix(0.277033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277033,0.000000,0.000000,0.250000,0,0);}
.mac_c01017{transform:matrix(0.277549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277549,0.000000,0.000000,0.250000,0,0);}
.m8d_c01017{transform:matrix(0.278064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278064,0.000000,0.000000,0.250000,0,0);}
.m3c_c01017{transform:matrix(0.278106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278106,0.000000,0.000000,0.250000,0,0);}
.ma6_c01017{transform:matrix(0.278326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278326,0.000000,0.000000,0.250000,0,0);}
.m16_c01017{transform:matrix(0.278976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278976,0.000000,0.000000,0.250000,0,0);}
.m45_c01017{transform:matrix(0.279390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279390,0.000000,0.000000,0.250000,0,0);}
.mbc_c01017{transform:matrix(0.280648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280648,0.000000,0.000000,0.250000,0,0);}
.m12_c01017{transform:matrix(0.280862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280862,0.000000,0.000000,0.250000,0,0);}
.m41_c01017{transform:matrix(0.281190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281190,0.000000,0.000000,0.250000,0,0);}
.m4_c01017{transform:matrix(0.281846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281846,0.000000,0.000000,0.250000,0,0);}
.m82_c01017{transform:matrix(0.283950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283950,0.000000,0.000000,0.250000,0,0);}
.mc_c01017{transform:matrix(0.285840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285840,0.000000,0.000000,0.250000,0,0);}
.m9c_c01017{transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);}
.m43_c01017{transform:matrix(0.286086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286086,0.000000,0.000000,0.250000,0,0);}
.mba_c01017{transform:matrix(0.286340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286340,0.000000,0.000000,0.250000,0,0);}
.m54_c01017{transform:matrix(0.286496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286496,0.000000,0.000000,0.250000,0,0);}
.m5e_c01017{transform:matrix(0.286568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286568,0.000000,0.000000,0.250000,0,0);}
.m3b_c01017{transform:matrix(0.286842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286842,0.000000,0.000000,0.250000,0,0);}
.m93_c01017{transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);}
.m95_c01017{transform:matrix(0.287761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287761,0.000000,0.000000,0.250000,0,0);}
.m1a_c01017{transform:matrix(0.288699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288699,0.000000,0.000000,0.250000,0,0);}
.m44_c01017{transform:matrix(0.288806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288806,0.000000,0.000000,0.250000,0,0);}
.m88_c01017{transform:matrix(0.289203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289203,0.000000,0.000000,0.250000,0,0);}
.m7b_c01017{transform:matrix(0.289703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289703,0.000000,0.000000,0.250000,0,0);}
.m1f_c01017{transform:matrix(0.289821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289821,0.000000,0.000000,0.250000,0,0);}
.m85_c01017{transform:matrix(0.290530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290530,0.000000,0.000000,0.250000,0,0);}
.m62_c01017{transform:matrix(0.290852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290852,0.000000,0.000000,0.250000,0,0);}
.m1b_c01017{transform:matrix(0.291220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291220,0.000000,0.000000,0.250000,0,0);}
.m99_c01017{transform:matrix(0.291541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291541,0.000000,0.000000,0.250000,0,0);}
.m9_c01017{transform:matrix(0.291574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291574,0.000000,0.000000,0.250000,0,0);}
.m3_c01017{transform:matrix(0.291611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291611,0.000000,0.000000,0.250000,0,0);}
.m8a_c01017{transform:matrix(0.291795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291795,0.000000,0.000000,0.250000,0,0);}
.m34_c01017{transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);}
.m89_c01017{transform:matrix(0.291977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291977,0.000000,0.000000,0.250000,0,0);}
.m9d_c01017{transform:matrix(0.293394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293394,0.000000,0.000000,0.250000,0,0);}
.maf_c01017{transform:matrix(0.294174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294174,0.000000,0.000000,0.250000,0,0);}
.m66_c01017{transform:matrix(0.294394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294394,0.000000,0.000000,0.250000,0,0);}
.m4a_c01017{transform:matrix(0.294443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294443,0.000000,0.000000,0.250000,0,0);}
.m70_c01017{transform:matrix(0.295212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295212,0.000000,0.000000,0.250000,0,0);}
.m58_c01017{transform:matrix(0.295641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295641,0.000000,0.000000,0.250000,0,0);}
.m24_c01017{transform:matrix(0.297340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297340,0.000000,0.000000,0.250000,0,0);}
.mb7_c01017{transform:matrix(0.297419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297419,0.000000,0.000000,0.250000,0,0);}
.m81_c01017{transform:matrix(0.297473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297473,0.000000,0.000000,0.250000,0,0);}
.m52_c01017{transform:matrix(0.298655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298655,0.000000,0.000000,0.250000,0,0);}
.m2b_c01017{transform:matrix(0.298920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298920,0.000000,0.000000,0.250000,0,0);}
.m57_c01017{transform:matrix(0.299102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299102,0.000000,0.000000,0.250000,0,0);}
.m39_c01017{transform:matrix(0.299897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299897,0.000000,0.000000,0.250000,0,0);}
.m72_c01017{transform:matrix(0.299927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299927,0.000000,0.000000,0.250000,0,0);}
.mb6_c01017{transform:matrix(0.300173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300173,0.000000,0.000000,0.250000,0,0);}
.m48_c01017{transform:matrix(0.300484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300484,0.000000,0.000000,0.250000,0,0);}
.m79_c01017{transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);}
.m68_c01017{transform:matrix(0.300691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300691,0.000000,0.000000,0.250000,0,0);}
.m26_c01017{transform:matrix(0.300855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300855,0.000000,0.000000,0.250000,0,0);}
.m7e_c01017{transform:matrix(0.301285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301285,0.000000,0.000000,0.250000,0,0);}
.mb1_c01017{transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);}
.m4b_c01017{transform:matrix(0.301757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301757,0.000000,0.000000,0.250000,0,0);}
.m9a_c01017{transform:matrix(0.302025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302025,0.000000,0.000000,0.250000,0,0);}
.mb2_c01017{transform:matrix(0.302092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302092,0.000000,0.000000,0.250000,0,0);}
.m86_c01017{transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);}
.m17_c01017{transform:matrix(0.303769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303769,0.000000,0.000000,0.250000,0,0);}
.m13_c01017{transform:matrix(0.303799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303799,0.000000,0.000000,0.250000,0,0);}
.m35_c01017{transform:matrix(0.303808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303808,0.000000,0.000000,0.250000,0,0);}
.m14_c01017{transform:matrix(0.303829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303829,0.000000,0.000000,0.250000,0,0);}
.m5f_c01017{transform:matrix(0.304223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304223,0.000000,0.000000,0.250000,0,0);}
.m56_c01017{transform:matrix(0.304307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304307,0.000000,0.000000,0.250000,0,0);}
.mb0_c01017{transform:matrix(0.304372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304372,0.000000,0.000000,0.250000,0,0);}
.m8_c01017{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);}
.mb3_c01017{transform:matrix(0.304800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304800,0.000000,0.000000,0.250000,0,0);}
.ma3_c01017{transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);}
.m5a_c01017{transform:matrix(0.305317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305317,0.000000,0.000000,0.250000,0,0);}
.m74_c01017{transform:matrix(0.305475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305475,0.000000,0.000000,0.250000,0,0);}
.m6c_c01017{transform:matrix(0.305755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305755,0.000000,0.000000,0.250000,0,0);}
.m60_c01017{transform:matrix(0.307518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307518,0.000000,0.000000,0.250000,0,0);}
.m71_c01017{transform:matrix(0.308448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308448,0.000000,0.000000,0.250000,0,0);}
.m3a_c01017{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m25_c01017{transform:matrix(0.308588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308588,0.000000,0.000000,0.250000,0,0);}
.m3e_c01017{transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);}
.m55_c01017{transform:matrix(0.308983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308983,0.000000,0.000000,0.250000,0,0);}
.m51_c01017{transform:matrix(0.309249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309249,0.000000,0.000000,0.250000,0,0);}
.ma_c01017{transform:matrix(0.309355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309355,0.000000,0.000000,0.250000,0,0);}
.m1c_c01017{transform:matrix(0.309429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309429,0.000000,0.000000,0.250000,0,0);}
.m6_c01017{transform:matrix(0.309561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309561,0.000000,0.000000,0.250000,0,0);}
.mab_c01017{transform:matrix(0.309623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309623,0.000000,0.000000,0.250000,0,0);}
.m63_c01017{transform:matrix(0.310529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310529,0.000000,0.000000,0.250000,0,0);}
.m6b_c01017{transform:matrix(0.311110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311110,0.000000,0.000000,0.250000,0,0);}
.m96_c01017{transform:matrix(0.311469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311469,0.000000,0.000000,0.250000,0,0);}
.m11_c01017{transform:matrix(0.313023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313023,0.000000,0.000000,0.250000,0,0);}
.m7_c01017{transform:matrix(0.313229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313229,0.000000,0.000000,0.250000,0,0);}
.m97_c01017{transform:matrix(0.313329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313329,0.000000,0.000000,0.250000,0,0);}
.m5d_c01017{transform:matrix(0.313593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313593,0.000000,0.000000,0.250000,0,0);}
.ma9_c01017{transform:matrix(0.314047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314047,0.000000,0.000000,0.250000,0,0);}
.m94_c01017{transform:matrix(0.315059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315059,0.000000,0.000000,0.250000,0,0);}
.m84_c01017{transform:matrix(0.315664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315664,0.000000,0.000000,0.250000,0,0);}
.m2e_c01017{transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);}
.m76_c01017{transform:matrix(0.317194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317194,0.000000,0.000000,0.250000,0,0);}
.mc0_c01017{transform:matrix(0.317812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317812,0.000000,0.000000,0.250000,0,0);}
.m42_c01017{transform:matrix(0.317829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317829,0.000000,0.000000,0.250000,0,0);}
.ma2_c01017{transform:matrix(0.317949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317949,0.000000,0.000000,0.250000,0,0);}
.m80_c01017{transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);}
.m40_c01017{transform:matrix(0.319176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319176,0.000000,0.000000,0.250000,0,0);}
.m87_c01017{transform:matrix(0.319713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319713,0.000000,0.000000,0.250000,0,0);}
.m36_c01017{transform:matrix(0.319808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319808,0.000000,0.000000,0.250000,0,0);}
.mb4_c01017{transform:matrix(0.319845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319845,0.000000,0.000000,0.250000,0,0);}
.m20_c01017{transform:matrix(0.320198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320198,0.000000,0.000000,0.250000,0,0);}
.m77_c01017{transform:matrix(0.321863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321863,0.000000,0.000000,0.250000,0,0);}
.m1d_c01017{transform:matrix(0.322016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322016,0.000000,0.000000,0.250000,0,0);}
.m5c_c01017{transform:matrix(0.322935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322935,0.000000,0.000000,0.250000,0,0);}
.m9e_c01017{transform:matrix(0.323208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323208,0.000000,0.000000,0.250000,0,0);}
.mb5_c01017{transform:matrix(0.323442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323442,0.000000,0.000000,0.250000,0,0);}
.m7d_c01017{transform:matrix(0.323810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323810,0.000000,0.000000,0.250000,0,0);}
.mb8_c01017{transform:matrix(0.324073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324073,0.000000,0.000000,0.250000,0,0);}
.m19_c01017{transform:matrix(0.324243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324243,0.000000,0.000000,0.250000,0,0);}
.m28_c01017{transform:matrix(0.324775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324775,0.000000,0.000000,0.250000,0,0);}
.m91_c01017{transform:matrix(0.327022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327022,0.000000,0.000000,0.250000,0,0);}
.m3f_c01017{transform:matrix(0.327076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327076,0.000000,0.000000,0.250000,0,0);}
.m92_c01017{transform:matrix(0.327083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327083,0.000000,0.000000,0.250000,0,0);}
.m75_c01017{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m27_c01017{transform:matrix(0.327734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327734,0.000000,0.000000,0.250000,0,0);}
.m6f_c01017{transform:matrix(0.328208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328208,0.000000,0.000000,0.250000,0,0);}
.m2_c01017{transform:matrix(0.328449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328449,0.000000,0.000000,0.250000,0,0);}
.m23_c01017{transform:matrix(0.329242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329242,0.000000,0.000000,0.250000,0,0);}
.m2c_c01017{transform:matrix(0.330710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330710,0.000000,0.000000,0.250000,0,0);}
.m65_c01017{transform:matrix(0.332525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332525,0.000000,0.000000,0.250000,0,0);}
.m90_c01017{transform:matrix(0.335050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335050,0.000000,0.000000,0.250000,0,0);}
.m2a_c01017{transform:matrix(0.335078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335078,0.000000,0.000000,0.250000,0,0);}
.m6a_c01017{transform:matrix(0.335806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335806,0.000000,0.000000,0.250000,0,0);}
.mb_c01017{transform:matrix(0.336095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336095,0.000000,0.000000,0.250000,0,0);}
.mbb_c01017{transform:matrix(0.336465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336465,0.000000,0.000000,0.250000,0,0);}
.maa_c01017{transform:matrix(0.336730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336730,0.000000,0.000000,0.250000,0,0);}
.ma7_c01017{transform:matrix(0.337418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337418,0.000000,0.000000,0.250000,0,0);}
.m9b_c01017{transform:matrix(0.338312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338312,0.000000,0.000000,0.250000,0,0);}
.ma5_c01017{transform:matrix(0.338948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338948,0.000000,0.000000,0.250000,0,0);}
.m31_c01017{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m18_c01017{transform:matrix(0.340806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340806,0.000000,0.000000,0.250000,0,0);}
.m61_c01017{transform:matrix(0.340871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340871,0.000000,0.000000,0.250000,0,0);}
.mf_c01017{transform:matrix(0.343551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343551,0.000000,0.000000,0.250000,0,0);}
.mae_c01017{transform:matrix(0.344064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344064,0.000000,0.000000,0.250000,0,0);}
.ma8_c01017{transform:matrix(0.344852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344852,0.000000,0.000000,0.250000,0,0);}
.m98_c01017{transform:matrix(0.345635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345635,0.000000,0.000000,0.250000,0,0);}
.mbf_c01017{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m59_c01017{transform:matrix(0.352319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352319,0.000000,0.000000,0.250000,0,0);}
.m5_c01017{transform:matrix(0.353379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353379,0.000000,0.000000,0.250000,0,0);}
.mc1_c01017{transform:matrix(0.355345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355345,0.000000,0.000000,0.250000,0,0);}
.m9f_c01017{transform:matrix(0.359204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359204,0.000000,0.000000,0.250000,0,0);}
.m7a_c01017{transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);}
.m5b_c01017{transform:matrix(0.385437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385437,0.000000,0.000000,0.250000,0,0);}
.md_c01017{transform:matrix(0.400876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400876,0.000000,0.000000,0.250000,0,0);}
.m8b_c01017{transform:matrix(0.821417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.821417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.821417,0.000000,0.000000,0.250000,0,0);}
.v0_c01017{vertical-align:0.000000px;}
.lsa_c01017{letter-spacing:-3.104640px;}
.lsc_c01017{letter-spacing:-2.744280px;}
.ls8_c01017{letter-spacing:-0.478289px;}
.lsf_c01017{letter-spacing:-0.274428px;}
.ls1_c01017{letter-spacing:0.000000px;}
.ls5_c01017{letter-spacing:1.889633px;}
.ls10_c01017{letter-spacing:1.960200px;}
.lsd_c01017{letter-spacing:2.783484px;}
.ls11_c01017{letter-spacing:3.026549px;}
.ls4_c01017{letter-spacing:3.089275px;}
.ls7_c01017{letter-spacing:3.152002px;}
.ls9_c01017{letter-spacing:3.387226px;}
.ls0_c01017{letter-spacing:3.559723px;}
.ls3_c01017{letter-spacing:3.920400px;}
.lse_c01017{letter-spacing:4.078810px;}
.ls2_c01017{letter-spacing:4.435200px;}
.lsb_c01017{letter-spacing:9.979398px;}
.ls6_c01017{letter-spacing:68.428998px;}
.sc__c01017{text-shadow:none;}
.sc0_c01017{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01017{-webkit-text-stroke:0px transparent;}
.sc0_c01017{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01017{word-spacing:-19.602000px;}
.ws1_c01017{word-spacing:0.000000px;}
._6_c01017{margin-left:-10.271844px;}
._2_c01017{margin-left:-7.862679px;}
._0_c01017{width:21.693830px;}
._5_c01017{width:25.913844px;}
._4_c01017{width:27.991656px;}
._1_c01017{width:35.126784px;}
._3_c01017{width:37.831860px;}
.fc0_c01017{color:transparent;}
.fsc_c01017{font-size:9.979398px;}
.fs6_c01017{font-size:22.374000px;}
.fs0_c01017{font-size:27.720000px;}
.fs2_c01017{font-size:33.264000px;}
.fs8_c01017{font-size:38.808000px;}
.fs9_c01017{font-size:66.330000px;}
.fs7_c01017{font-size:68.428998px;}
.fs5_c01017{font-size:74.844000px;}
.fs3_c01017{font-size:78.408000px;}
.fs4_c01017{font-size:78.804000px;}
.fsb_c01017{font-size:79.200000px;}
.fsd_c01017{font-size:81.576198px;}
.fs1_c01017{font-size:88.704000px;}
.fsa_c01017{font-size:107.712198px;}
.y0_c01017{bottom:0.000000px;}
.y1_c01017{bottom:76.500000px;}
.y21_c01017{bottom:98.986185px;}
.y20_c01017{bottom:127.503135px;}
.y1f_c01017{bottom:159.222735px;}
.y1e_c01017{bottom:190.580985px;}
.y1d_c01017{bottom:221.949135px;}
.y1c_c01017{bottom:254.020185px;}
.y1b_c01017{bottom:285.744735px;}
.y1a_c01017{bottom:333.858735px;}
.y19_c01017{bottom:348.827535px;}
.y18_c01017{bottom:358.801785px;}
.y2_c01017{bottom:363.791385px;}
.y17_c01017{bottom:381.967785px;}
.y16_c01017{bottom:413.687385px;}
.y15_c01017{bottom:445.763385px;}
.y14_c01017{bottom:477.131535px;}
.y13_c01017{bottom:508.851135px;}
.y12_c01017{bottom:533.437785px;}
.y11_c01017{bottom:540.570735px;}
.y10_c01017{bottom:571.577535px;}
.yf_c01017{bottom:603.653535px;}
.ye_c01017{bottom:623.963385px;}
.yd_c01017{bottom:635.373135px;}
.yc_c01017{bottom:698.450985px;}
.yb_c01017{bottom:730.175535px;}
.ya_c01017{bottom:762.246585px;}
.y9_c01017{bottom:793.609785px;}
.y8_c01017{bottom:824.977935px;}
.y7_c01017{bottom:856.697535px;}
.y6_c01017{bottom:888.773535px;}
.y5_c01017{bottom:920.493135px;}
.y4_c01017{bottom:1006.024185px;}
.y3_c01017{bottom:1058.058585px;}
.he_c01017{height:6.646279px;}
.h8_c01017{height:23.335383px;}
.h2_c01017{height:28.911094px;}
.h4_c01017{height:34.693313px;}
.ha_c01017{height:40.475531px;}
.h9_c01017{height:45.573713px;}
.hb_c01017{height:69.180117px;}
.h7_c01017{height:73.455293px;}
.h5_c01017{height:76.953164px;}
.h6_c01017{height:77.341816px;}
.hf_c01017{height:80.062577px;}
.hd_c01017{height:82.603125px;}
.h3_c01017{height:87.058125px;}
.hc_c01017{height:105.713632px;}
.h1_c01017{height:1110.000000px;}
.h0_c01017{height:1263.000000px;}
.w1_c01017{width:763.500000px;}
.w0_c01017{width:892.500000px;}
.x0_c01017{left:0.000000px;}
.x2_c01017{left:49.298085px;}
.x1_c01017{left:64.500000px;}
.x51_c01017{left:72.568035px;}
.x48_c01017{left:73.592685px;}
.x3e_c01017{left:75.815235px;}
.x60_c01017{left:88.432785px;}
.x3f_c01017{left:107.099235px;}
.x52_c01017{left:118.281285px;}
.x38_c01017{left:128.042685px;}
.x65_c01017{left:130.423635px;}
.x47_c01017{left:141.145335px;}
.x57_c01017{left:152.183835px;}
.x39_c01017{left:162.895635px;}
.x4a_c01017{left:173.934135px;}
.x6_c01017{left:185.239935px;}
.x19_c01017{left:186.299235px;}
.x66_c01017{left:196.624935px;}
.x53_c01017{left:206.143785px;}
.x21_c01017{left:207.787185px;}
.x49_c01017{left:218.073285px;}
.x2c_c01017{left:219.097935px;}
.x54_c01017{left:229.809735px;}
.x40_c01017{left:239.363235px;}
.x1e_c01017{left:240.501735px;}
.x67_c01017{left:241.645185px;}
.x36_c01017{left:251.624385px;}
.x7_c01017{left:252.668835px;}
.x2a_c01017{left:262.138185px;}
.x5d_c01017{left:263.311335px;}
.x6b_c01017{left:274.775535px;}
.x6e_c01017{left:276.042735px;}
.x2d_c01017{left:285.111135px;}
.x58_c01017{left:286.160535px;}
.x68_c01017{left:295.318035px;}
.x37_c01017{left:296.545635px;}
.x1a_c01017{left:297.565335px;}
.x4b_c01017{left:307.920735px;}
.x6f_c01017{left:309.979935px;}
.xe_c01017{left:317.746485px;}
.x62_c01017{left:319.627485px;}
.x41_c01017{left:328.775085px;}
.x2e_c01017{left:329.849235px;}
.x63_c01017{left:331.037235px;}
.xf_c01017{left:341.753985px;}
.x71_c01017{left:350.203635px;}
.x22_c01017{left:351.594585px;}
.x8_c01017{left:363.009285px;}
.x5e_c01017{left:372.973635px;}
.x1f_c01017{left:374.216085px;}
.x4c_c01017{left:375.295185px;}
.x9_c01017{left:385.274385px;}
.x42_c01017{left:395.416935px;}
.x69_c01017{left:397.342485px;}
.x4d_c01017{left:398.500785px;}
.x2f_c01017{left:407.361285px;}
.x1b_c01017{left:408.405735px;}
.x10_c01017{left:418.563135px;}
.x43_c01017{left:428.938335px;}
.x5_c01017{left:433.477485px;}
.x23_c01017{left:440.348085px;}
.x4e_c01017{left:441.605385px;}
.x30_c01017{left:450.663885px;}
.x59_c01017{left:461.400435px;}
.x24_c01017{left:463.672485px;}
.x20_c01017{left:473.136885px;}
.x3a_c01017{left:474.369435px;}
.x11_c01017{left:484.185285px;}
.x25_c01017{left:485.774235px;}
.xa_c01017{left:495.728685px;}
.x64_c01017{left:497.040435px;}
.x12_c01017{left:507.158235px;}
.x4f_c01017{left:518.454135px;}
.x44_c01017{left:525.141585px;}
.x55_c01017{left:528.284835px;}
.x26_c01017{left:529.987635px;}
.x1c_c01017{left:539.051085px;}
.x5a_c01017{left:540.298485px;}
.xb_c01017{left:541.600335px;}
.x72_c01017{left:551.376585px;}
.x31_c01017{left:562.048785px;}
.x50_c01017{left:563.761485px;}
.x27_c01017{left:564.805935px;}
.x5f_c01017{left:572.522985px;}
.x13_c01017{left:573.582285px;}
.x6a_c01017{left:583.289235px;}
.x28_c01017{left:584.868285px;}
.x76_c01017{left:591.738885px;}
.x1d_c01017{left:595.203885px;}
.x14_c01017{left:596.268135px;}
.x32_c01017{left:607.598685px;}
.x70_c01017{left:617.251185px;}
.x33_c01017{left:618.355035px;}
.x73_c01017{left:627.601635px;}
.x56_c01017{left:628.655985px;}
.x6c_c01017{left:639.016335px;}
.x15_c01017{left:640.085535px;}
.x3b_c01017{left:650.426085px;}
.x5b_c01017{left:651.718035px;}
.xc_c01017{left:661.316085px;}
.x74_c01017{left:662.410035px;}
.x3_c01017{left:673.196085px;}
.x16_c01017{left:683.056485px;}
.xd_c01017{left:684.541485px;}
.x29_c01017{left:694.461285px;}
.x3c_c01017{left:695.664135px;}
.x61_c01017{left:697.233285px;}
.x3d_c01017{left:701.618985px;}
.x34_c01017{left:705.509685px;}
.x4_c01017{left:707.004585px;}
.x5c_c01017{left:717.256035px;}
.x45_c01017{left:718.369785px;}
.x46_c01017{left:727.279785px;}
.x35_c01017{left:728.769735px;}
.x17_c01017{left:729.774585px;}
.x6d_c01017{left:739.516185px;}
.x75_c01017{left:749.851785px;}
.x18_c01017{left:750.920985px;}
.x2b_c01017{left:761.791185px;}
@media print{
.v0_c01017{vertical-align:0.000000pt;}
.lsa_c01017{letter-spacing:-2.759680pt;}
.lsc_c01017{letter-spacing:-2.439360pt;}
.ls8_c01017{letter-spacing:-0.425146pt;}
.lsf_c01017{letter-spacing:-0.243936pt;}
.ls1_c01017{letter-spacing:0.000000pt;}
.ls5_c01017{letter-spacing:1.679674pt;}
.ls10_c01017{letter-spacing:1.742400pt;}
.lsd_c01017{letter-spacing:2.474208pt;}
.ls11_c01017{letter-spacing:2.690266pt;}
.ls4_c01017{letter-spacing:2.746022pt;}
.ls7_c01017{letter-spacing:2.801779pt;}
.ls9_c01017{letter-spacing:3.010867pt;}
.ls0_c01017{letter-spacing:3.164198pt;}
.ls3_c01017{letter-spacing:3.484800pt;}
.lse_c01017{letter-spacing:3.625609pt;}
.ls2_c01017{letter-spacing:3.942400pt;}
.lsb_c01017{letter-spacing:8.870576pt;}
.ls6_c01017{letter-spacing:60.825776pt;}
.ws0_c01017{word-spacing:-17.424000pt;}
.ws1_c01017{word-spacing:0.000000pt;}
._6_c01017{margin-left:-9.130528pt;}
._2_c01017{margin-left:-6.989048pt;}
._0_c01017{width:19.283405pt;}
._5_c01017{width:23.034528pt;}
._4_c01017{width:24.881472pt;}
._1_c01017{width:31.223808pt;}
._3_c01017{width:33.628320pt;}
.fsc_c01017{font-size:8.870576pt;}
.fs6_c01017{font-size:19.888000pt;}
.fs0_c01017{font-size:24.640000pt;}
.fs2_c01017{font-size:29.568000pt;}
.fs8_c01017{font-size:34.496000pt;}
.fs9_c01017{font-size:58.960000pt;}
.fs7_c01017{font-size:60.825776pt;}
.fs5_c01017{font-size:66.528000pt;}
.fs3_c01017{font-size:69.696000pt;}
.fs4_c01017{font-size:70.048000pt;}
.fsb_c01017{font-size:70.400000pt;}
.fsd_c01017{font-size:72.512176pt;}
.fs1_c01017{font-size:78.848000pt;}
.fsa_c01017{font-size:95.744176pt;}
.y0_c01017{bottom:0.000000pt;}
.y1_c01017{bottom:68.000000pt;}
.y21_c01017{bottom:87.987720pt;}
.y20_c01017{bottom:113.336120pt;}
.y1f_c01017{bottom:141.531320pt;}
.y1e_c01017{bottom:169.405320pt;}
.y1d_c01017{bottom:197.288120pt;}
.y1c_c01017{bottom:225.795720pt;}
.y1b_c01017{bottom:253.995320pt;}
.y1a_c01017{bottom:296.763320pt;}
.y19_c01017{bottom:310.068920pt;}
.y18_c01017{bottom:318.934920pt;}
.y2_c01017{bottom:323.370120pt;}
.y17_c01017{bottom:339.526920pt;}
.y16_c01017{bottom:367.722120pt;}
.y15_c01017{bottom:396.234120pt;}
.y14_c01017{bottom:424.116920pt;}
.y13_c01017{bottom:452.312120pt;}
.y12_c01017{bottom:474.166920pt;}
.y11_c01017{bottom:480.507320pt;}
.y10_c01017{bottom:508.068920pt;}
.yf_c01017{bottom:536.580920pt;}
.ye_c01017{bottom:554.634120pt;}
.yd_c01017{bottom:564.776120pt;}
.yc_c01017{bottom:620.845320pt;}
.yb_c01017{bottom:649.044920pt;}
.ya_c01017{bottom:677.552520pt;}
.y9_c01017{bottom:705.430920pt;}
.y8_c01017{bottom:733.313720pt;}
.y7_c01017{bottom:761.508920pt;}
.y6_c01017{bottom:790.020920pt;}
.y5_c01017{bottom:818.216120pt;}
.y4_c01017{bottom:894.243720pt;}
.y3_c01017{bottom:940.496520pt;}
.he_c01017{height:5.907804pt;}
.h8_c01017{height:20.742563pt;}
.h2_c01017{height:25.698750pt;}
.h4_c01017{height:30.838500pt;}
.ha_c01017{height:35.978250pt;}
.h9_c01017{height:40.509967pt;}
.hb_c01017{height:61.493438pt;}
.h7_c01017{height:65.293594pt;}
.h5_c01017{height:68.402813pt;}
.h6_c01017{height:68.748281pt;}
.hf_c01017{height:71.166735pt;}
.hd_c01017{height:73.425000pt;}
.h3_c01017{height:77.385000pt;}
.hc_c01017{height:93.967673pt;}
.h1_c01017{height:986.666667pt;}
.h0_c01017{height:1122.666667pt;}
.w1_c01017{width:678.666667pt;}
.w0_c01017{width:793.333333pt;}
.x0_c01017{left:0.000000pt;}
.x2_c01017{left:43.820520pt;}
.x1_c01017{left:57.333333pt;}
.x51_c01017{left:64.504920pt;}
.x48_c01017{left:65.415720pt;}
.x3e_c01017{left:67.391320pt;}
.x60_c01017{left:78.606920pt;}
.x3f_c01017{left:95.199320pt;}
.x52_c01017{left:105.138920pt;}
.x38_c01017{left:113.815720pt;}
.x65_c01017{left:115.932120pt;}
.x47_c01017{left:125.462520pt;}
.x57_c01017{left:135.274520pt;}
.x39_c01017{left:144.796120pt;}
.x4a_c01017{left:154.608120pt;}
.x6_c01017{left:164.657720pt;}
.x19_c01017{left:165.599320pt;}
.x66_c01017{left:174.777720pt;}
.x53_c01017{left:183.238920pt;}
.x21_c01017{left:184.699720pt;}
.x49_c01017{left:193.842920pt;}
.x2c_c01017{left:194.753720pt;}
.x54_c01017{left:204.275320pt;}
.x40_c01017{left:212.767320pt;}
.x1e_c01017{left:213.779320pt;}
.x67_c01017{left:214.795720pt;}
.x36_c01017{left:223.666120pt;}
.x7_c01017{left:224.594520pt;}
.x2a_c01017{left:233.011720pt;}
.x5d_c01017{left:234.054520pt;}
.x6b_c01017{left:244.244920pt;}
.x6e_c01017{left:245.371320pt;}
.x2d_c01017{left:253.432120pt;}
.x58_c01017{left:254.364920pt;}
.x68_c01017{left:262.504920pt;}
.x37_c01017{left:263.596120pt;}
.x1a_c01017{left:264.502520pt;}
.x4b_c01017{left:273.707320pt;}
.x6f_c01017{left:275.537720pt;}
.xe_c01017{left:282.441320pt;}
.x62_c01017{left:284.113320pt;}
.x41_c01017{left:292.244520pt;}
.x2e_c01017{left:293.199320pt;}
.x63_c01017{left:294.255320pt;}
.xf_c01017{left:303.781320pt;}
.x71_c01017{left:311.292120pt;}
.x22_c01017{left:312.528520pt;}
.x8_c01017{left:322.674920pt;}
.x5e_c01017{left:331.532120pt;}
.x1f_c01017{left:332.636520pt;}
.x4c_c01017{left:333.595720pt;}
.x9_c01017{left:342.466120pt;}
.x42_c01017{left:351.481720pt;}
.x69_c01017{left:353.193320pt;}
.x4d_c01017{left:354.222920pt;}
.x2f_c01017{left:362.098920pt;}
.x1b_c01017{left:363.027320pt;}
.x10_c01017{left:372.056120pt;}
.x43_c01017{left:381.278520pt;}
.x5_c01017{left:385.313320pt;}
.x23_c01017{left:391.420520pt;}
.x4e_c01017{left:392.538120pt;}
.x30_c01017{left:400.590120pt;}
.x59_c01017{left:410.133720pt;}
.x24_c01017{left:412.153320pt;}
.x20_c01017{left:420.566120pt;}
.x3a_c01017{left:421.661720pt;}
.x11_c01017{left:430.386920pt;}
.x25_c01017{left:431.799320pt;}
.xa_c01017{left:440.647720pt;}
.x64_c01017{left:441.813720pt;}
.x12_c01017{left:450.807320pt;}
.x4f_c01017{left:460.848120pt;}
.x44_c01017{left:466.792520pt;}
.x55_c01017{left:469.586520pt;}
.x26_c01017{left:471.100120pt;}
.x1c_c01017{left:479.156520pt;}
.x5a_c01017{left:480.265320pt;}
.xb_c01017{left:481.422520pt;}
.x72_c01017{left:490.112520pt;}
.x31_c01017{left:499.598920pt;}
.x50_c01017{left:501.121320pt;}
.x27_c01017{left:502.049720pt;}
.x5f_c01017{left:508.909320pt;}
.x13_c01017{left:509.850920pt;}
.x6a_c01017{left:518.479320pt;}
.x28_c01017{left:519.882920pt;}
.x76_c01017{left:525.990120pt;}
.x1d_c01017{left:529.070120pt;}
.x14_c01017{left:530.016120pt;}
.x32_c01017{left:540.087720pt;}
.x70_c01017{left:548.667720pt;}
.x33_c01017{left:549.648920pt;}
.x73_c01017{left:557.868120pt;}
.x56_c01017{left:558.805320pt;}
.x6c_c01017{left:568.014520pt;}
.x15_c01017{left:568.964920pt;}
.x3b_c01017{left:578.156520pt;}
.x5b_c01017{left:579.304920pt;}
.xc_c01017{left:587.836520pt;}
.x74_c01017{left:588.808920pt;}
.x3_c01017{left:598.396520pt;}
.x16_c01017{left:607.161320pt;}
.xd_c01017{left:608.481320pt;}
.x29_c01017{left:617.298920pt;}
.x3c_c01017{left:618.368120pt;}
.x61_c01017{left:619.762920pt;}
.x3d_c01017{left:623.661320pt;}
.x34_c01017{left:627.119720pt;}
.x4_c01017{left:628.448520pt;}
.x5c_c01017{left:637.560920pt;}
.x45_c01017{left:638.550920pt;}
.x46_c01017{left:646.470920pt;}
.x35_c01017{left:647.795320pt;}
.x17_c01017{left:648.688520pt;}
.x6d_c01017{left:657.347720pt;}
.x75_c01017{left:666.534920pt;}
.x18_c01017{left:667.485320pt;}
.x2b_c01017{left:677.147720pt;}
}





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

.ir_c01018:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01018{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01018;src:url('chunks/assets/font_c2775056b6b014ba2d574715.woff2')format("woff");}.ff1_c01018{font-family:ff1_c01018;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01018;src:url('chunks/assets/font_dfc4346ae8fe65cbef64a8cf.woff2')format("woff");}.ff2_c01018{font-family:ff2_c01018;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01018;src:url('chunks/assets/font_cf35093167ca1a5cc6cab694.woff2')format("woff");}.ff3_c01018{font-family:ff3_c01018;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01018;src:url('chunks/assets/font_0a20303d20b364c5f777a262.woff2')format("woff");}.ff4_c01018{font-family:ff4_c01018;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m7d_c01018{transform:matrix(0.083334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083334,0.000000,0.000000,0.250000,0,0);}
.m73_c01018{transform:matrix(0.146238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146238,0.000000,0.000000,0.250000,0,0);}
.m64_c01018{transform:matrix(0.168650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168650,0.000000,0.000000,0.250000,0,0);}
.m42_c01018{transform:matrix(0.175325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175325,0.000000,0.000000,0.250000,0,0);}
.m96_c01018{transform:matrix(0.242213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242213,0.000000,0.000000,0.250000,0,0);}
.m0_c01018{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01018{transform:matrix(0.250365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250365,0.000000,0.000000,0.250000,0,0);}
.ma2_c01018{transform:matrix(0.251266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251266,0.000000,0.000000,0.250000,0,0);}
.m8e_c01018{transform:matrix(0.253297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253297,0.000000,0.000000,0.250000,0,0);}
.m71_c01018{transform:matrix(0.253423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253423,0.000000,0.000000,0.250000,0,0);}
.m99_c01018{transform:matrix(0.253651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253651,0.000000,0.000000,0.250000,0,0);}
.m1f_c01018{transform:matrix(0.253670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253670,0.000000,0.000000,0.250000,0,0);}
.m65_c01018{transform:matrix(0.253921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253921,0.000000,0.000000,0.250000,0,0);}
.m81_c01018{transform:matrix(0.254778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254778,0.000000,0.000000,0.250000,0,0);}
.m11_c01018{transform:matrix(0.255459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255459,0.000000,0.000000,0.250000,0,0);}
.m60_c01018{transform:matrix(0.255540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255540,0.000000,0.000000,0.250000,0,0);}
.mf_c01018{transform:matrix(0.255625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255625,0.000000,0.000000,0.250000,0,0);}
.m3d_c01018{transform:matrix(0.255820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255820,0.000000,0.000000,0.250000,0,0);}
.m6f_c01018{transform:matrix(0.256033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256033,0.000000,0.000000,0.250000,0,0);}
.m43_c01018{transform:matrix(0.256885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256885,0.000000,0.000000,0.250000,0,0);}
.m47_c01018{transform:matrix(0.257706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257706,0.000000,0.000000,0.250000,0,0);}
.m41_c01018{transform:matrix(0.257850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257850,0.000000,0.000000,0.250000,0,0);}
.m40_c01018{transform:matrix(0.258196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258196,0.000000,0.000000,0.250000,0,0);}
.m74_c01018{transform:matrix(0.259066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259066,0.000000,0.000000,0.250000,0,0);}
.m3_c01018{transform:matrix(0.260021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260021,0.000000,0.000000,0.250000,0,0);}
.m23_c01018{transform:matrix(0.260635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260635,0.000000,0.000000,0.250000,0,0);}
.m7b_c01018{transform:matrix(0.262249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262249,0.000000,0.000000,0.250000,0,0);}
.m58_c01018{transform:matrix(0.262322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262322,0.000000,0.000000,0.250000,0,0);}
.m68_c01018{transform:matrix(0.262418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262418,0.000000,0.000000,0.250000,0,0);}
.m6c_c01018{transform:matrix(0.262894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262894,0.000000,0.000000,0.250000,0,0);}
.m51_c01018{transform:matrix(0.263030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263030,0.000000,0.000000,0.250000,0,0);}
.m7e_c01018{transform:matrix(0.263380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263380,0.000000,0.000000,0.250000,0,0);}
.m37_c01018{transform:matrix(0.263564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263564,0.000000,0.000000,0.250000,0,0);}
.m9_c01018{transform:matrix(0.264109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264109,0.000000,0.000000,0.250000,0,0);}
.m87_c01018{transform:matrix(0.264440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264440,0.000000,0.000000,0.250000,0,0);}
.m28_c01018{transform:matrix(0.265269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265269,0.000000,0.000000,0.250000,0,0);}
.m1b_c01018{transform:matrix(0.265888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265888,0.000000,0.000000,0.250000,0,0);}
.m32_c01018{transform:matrix(0.267128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267128,0.000000,0.000000,0.250000,0,0);}
.m50_c01018{transform:matrix(0.267196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267196,0.000000,0.000000,0.250000,0,0);}
.m4c_c01018{transform:matrix(0.267359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267359,0.000000,0.000000,0.250000,0,0);}
.m2c_c01018{transform:matrix(0.267506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267506,0.000000,0.000000,0.250000,0,0);}
.m26_c01018{transform:matrix(0.269344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269344,0.000000,0.000000,0.250000,0,0);}
.m2a_c01018{transform:matrix(0.269481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269481,0.000000,0.000000,0.250000,0,0);}
.m21_c01018{transform:matrix(0.271684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271684,0.000000,0.000000,0.250000,0,0);}
.m34_c01018{transform:matrix(0.272118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272118,0.000000,0.000000,0.250000,0,0);}
.m59_c01018{transform:matrix(0.272383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272383,0.000000,0.000000,0.250000,0,0);}
.m5f_c01018{transform:matrix(0.273758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273758,0.000000,0.000000,0.250000,0,0);}
.ma_c01018{transform:matrix(0.273893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273893,0.000000,0.000000,0.250000,0,0);}
.m1_c01018{transform:matrix(0.273978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273978,0.000000,0.000000,0.250000,0,0);}
.m48_c01018{transform:matrix(0.274100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274100,0.000000,0.000000,0.250000,0,0);}
.m62_c01018{transform:matrix(0.274661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274661,0.000000,0.000000,0.250000,0,0);}
.m5_c01018{transform:matrix(0.274719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274719,0.000000,0.000000,0.250000,0,0);}
.m4_c01018{transform:matrix(0.275099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275099,0.000000,0.000000,0.250000,0,0);}
.m49_c01018{transform:matrix(0.275498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275498,0.000000,0.000000,0.250000,0,0);}
.m8d_c01018{transform:matrix(0.275633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275633,0.000000,0.000000,0.250000,0,0);}
.ma4_c01018{transform:matrix(0.276474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276474,0.000000,0.000000,0.250000,0,0);}
.m3f_c01018{transform:matrix(0.276730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276730,0.000000,0.000000,0.250000,0,0);}
.m89_c01018{transform:matrix(0.276752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276752,0.000000,0.000000,0.250000,0,0);}
.m15_c01018{transform:matrix(0.277792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277792,0.000000,0.000000,0.250000,0,0);}
.m20_c01018{transform:matrix(0.278036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278036,0.000000,0.000000,0.250000,0,0);}
.m5d_c01018{transform:matrix(0.278054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278054,0.000000,0.000000,0.250000,0,0);}
.ma0_c01018{transform:matrix(0.278630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278630,0.000000,0.000000,0.250000,0,0);}
.m91_c01018{transform:matrix(0.279010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279010,0.000000,0.000000,0.250000,0,0);}
.m93_c01018{transform:matrix(0.279110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279110,0.000000,0.000000,0.250000,0,0);}
.m7f_c01018{transform:matrix(0.279248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279248,0.000000,0.000000,0.250000,0,0);}
.mc_c01018{transform:matrix(0.279728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279728,0.000000,0.000000,0.250000,0,0);}
.m7c_c01018{transform:matrix(0.280358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280358,0.000000,0.000000,0.250000,0,0);}
.m92_c01018{transform:matrix(0.280550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280550,0.000000,0.000000,0.250000,0,0);}
.m38_c01018{transform:matrix(0.280983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280983,0.000000,0.000000,0.250000,0,0);}
.m4b_c01018{transform:matrix(0.281718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281718,0.000000,0.000000,0.250000,0,0);}
.m80_c01018{transform:matrix(0.283268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283268,0.000000,0.000000,0.250000,0,0);}
.m4a_c01018{transform:matrix(0.283505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283505,0.000000,0.000000,0.250000,0,0);}
.m46_c01018{transform:matrix(0.283621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283621,0.000000,0.000000,0.250000,0,0);}
.m1c_c01018{transform:matrix(0.284256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284256,0.000000,0.000000,0.250000,0,0);}
.m97_c01018{transform:matrix(0.284446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284446,0.000000,0.000000,0.250000,0,0);}
.m25_c01018{transform:matrix(0.285205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285205,0.000000,0.000000,0.250000,0,0);}
.m72_c01018{transform:matrix(0.285248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285248,0.000000,0.000000,0.250000,0,0);}
.m52_c01018{transform:matrix(0.286111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286111,0.000000,0.000000,0.250000,0,0);}
.m8a_c01018{transform:matrix(0.286743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286743,0.000000,0.000000,0.250000,0,0);}
.m53_c01018{transform:matrix(0.286854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286854,0.000000,0.000000,0.250000,0,0);}
.m84_c01018{transform:matrix(0.287260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287260,0.000000,0.000000,0.250000,0,0);}
.m95_c01018{transform:matrix(0.287928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287928,0.000000,0.000000,0.250000,0,0);}
.m10_c01018{transform:matrix(0.287998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287998,0.000000,0.000000,0.250000,0,0);}
.m18_c01018{transform:matrix(0.288163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288163,0.000000,0.000000,0.250000,0,0);}
.m6e_c01018{transform:matrix(0.288238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288238,0.000000,0.000000,0.250000,0,0);}
.m2_c01018{transform:matrix(0.288615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288615,0.000000,0.000000,0.250000,0,0);}
.me_c01018{transform:matrix(0.288933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288933,0.000000,0.000000,0.250000,0,0);}
.m4f_c01018{transform:matrix(0.289759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289759,0.000000,0.000000,0.250000,0,0);}
.m4d_c01018{transform:matrix(0.290276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290276,0.000000,0.000000,0.250000,0,0);}
.m8_c01018{transform:matrix(0.290486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290486,0.000000,0.000000,0.250000,0,0);}
.m98_c01018{transform:matrix(0.291219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291219,0.000000,0.000000,0.250000,0,0);}
.m17_c01018{transform:matrix(0.291498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291498,0.000000,0.000000,0.250000,0,0);}
.m9e_c01018{transform:matrix(0.291531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291531,0.000000,0.000000,0.250000,0,0);}
.m22_c01018{transform:matrix(0.291542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291542,0.000000,0.000000,0.250000,0,0);}
.m8c_c01018{transform:matrix(0.292171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292171,0.000000,0.000000,0.250000,0,0);}
.m79_c01018{transform:matrix(0.293401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293401,0.000000,0.000000,0.250000,0,0);}
.m70_c01018{transform:matrix(0.294050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294050,0.000000,0.000000,0.250000,0,0);}
.m1a_c01018{transform:matrix(0.294148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294148,0.000000,0.000000,0.250000,0,0);}
.m61_c01018{transform:matrix(0.294461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294461,0.000000,0.000000,0.250000,0,0);}
.m12_c01018{transform:matrix(0.294719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294719,0.000000,0.000000,0.250000,0,0);}
.m13_c01018{transform:matrix(0.294968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294968,0.000000,0.000000,0.250000,0,0);}
.m5b_c01018{transform:matrix(0.295036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295036,0.000000,0.000000,0.250000,0,0);}
.m76_c01018{transform:matrix(0.295120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295120,0.000000,0.000000,0.250000,0,0);}
.m3c_c01018{transform:matrix(0.296158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296158,0.000000,0.000000,0.250000,0,0);}
.m78_c01018{transform:matrix(0.296520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296520,0.000000,0.000000,0.250000,0,0);}
.m5c_c01018{transform:matrix(0.296737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296737,0.000000,0.000000,0.250000,0,0);}
.m86_c01018{transform:matrix(0.296779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296779,0.000000,0.000000,0.250000,0,0);}
.m55_c01018{transform:matrix(0.297873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297873,0.000000,0.000000,0.250000,0,0);}
.m94_c01018{transform:matrix(0.297883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297883,0.000000,0.000000,0.250000,0,0);}
.m7_c01018{transform:matrix(0.298327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298327,0.000000,0.000000,0.250000,0,0);}
.m6a_c01018{transform:matrix(0.298706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298706,0.000000,0.000000,0.250000,0,0);}
.m6d_c01018{transform:matrix(0.298946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298946,0.000000,0.000000,0.250000,0,0);}
.m67_c01018{transform:matrix(0.299981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299981,0.000000,0.000000,0.250000,0,0);}
.m69_c01018{transform:matrix(0.299993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299993,0.000000,0.000000,0.250000,0,0);}
.m7a_c01018{transform:matrix(0.300011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300011,0.000000,0.000000,0.250000,0,0);}
.m30_c01018{transform:matrix(0.300431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300431,0.000000,0.000000,0.250000,0,0);}
.m5a_c01018{transform:matrix(0.300943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300943,0.000000,0.000000,0.250000,0,0);}
.m29_c01018{transform:matrix(0.303063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303063,0.000000,0.000000,0.250000,0,0);}
.m36_c01018{transform:matrix(0.303774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303774,0.000000,0.000000,0.250000,0,0);}
.m90_c01018{transform:matrix(0.303783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303783,0.000000,0.000000,0.250000,0,0);}
.m1d_c01018{transform:matrix(0.304481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304481,0.000000,0.000000,0.250000,0,0);}
.m9d_c01018{transform:matrix(0.304544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304544,0.000000,0.000000,0.250000,0,0);}
.m6b_c01018{transform:matrix(0.304716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304716,0.000000,0.000000,0.250000,0,0);}
.m8f_c01018{transform:matrix(0.304719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304719,0.000000,0.000000,0.250000,0,0);}
.m77_c01018{transform:matrix(0.305084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305084,0.000000,0.000000,0.250000,0,0);}
.m3a_c01018{transform:matrix(0.306128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306128,0.000000,0.000000,0.250000,0,0);}
.m16_c01018{transform:matrix(0.306169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306169,0.000000,0.000000,0.250000,0,0);}
.m54_c01018{transform:matrix(0.306683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306683,0.000000,0.000000,0.250000,0,0);}
.m45_c01018{transform:matrix(0.307574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307574,0.000000,0.000000,0.250000,0,0);}
.m3e_c01018{transform:matrix(0.308976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308976,0.000000,0.000000,0.250000,0,0);}
.m2f_c01018{transform:matrix(0.311014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311014,0.000000,0.000000,0.250000,0,0);}
.ma1_c01018{transform:matrix(0.311039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311039,0.000000,0.000000,0.250000,0,0);}
.m75_c01018{transform:matrix(0.311272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311272,0.000000,0.000000,0.250000,0,0);}
.m1e_c01018{transform:matrix(0.313956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313956,0.000000,0.000000,0.250000,0,0);}
.m33_c01018{transform:matrix(0.315710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315710,0.000000,0.000000,0.250000,0,0);}
.m2b_c01018{transform:matrix(0.316804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316804,0.000000,0.000000,0.250000,0,0);}
.m2e_c01018{transform:matrix(0.317247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317247,0.000000,0.000000,0.250000,0,0);}
.ma5_c01018{transform:matrix(0.317878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317878,0.000000,0.000000,0.250000,0,0);}
.m56_c01018{transform:matrix(0.318638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318638,0.000000,0.000000,0.250000,0,0);}
.m44_c01018{transform:matrix(0.319180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319180,0.000000,0.000000,0.250000,0,0);}
.m24_c01018{transform:matrix(0.320114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320114,0.000000,0.000000,0.250000,0,0);}
.m88_c01018{transform:matrix(0.320725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320725,0.000000,0.000000,0.250000,0,0);}
.m31_c01018{transform:matrix(0.321103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321103,0.000000,0.000000,0.250000,0,0);}
.md_c01018{transform:matrix(0.323209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323209,0.000000,0.000000,0.250000,0,0);}
.m57_c01018{transform:matrix(0.323971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323971,0.000000,0.000000,0.250000,0,0);}
.m5e_c01018{transform:matrix(0.324405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324405,0.000000,0.000000,0.250000,0,0);}
.m3b_c01018{transform:matrix(0.326587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326587,0.000000,0.000000,0.250000,0,0);}
.ma3_c01018{transform:matrix(0.328204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328204,0.000000,0.000000,0.250000,0,0);}
.m9f_c01018{transform:matrix(0.328353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328353,0.000000,0.000000,0.250000,0,0);}
.m27_c01018{transform:matrix(0.331171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331171,0.000000,0.000000,0.250000,0,0);}
.m8b_c01018{transform:matrix(0.333760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333760,0.000000,0.000000,0.250000,0,0);}
.m35_c01018{transform:matrix(0.335052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335052,0.000000,0.000000,0.250000,0,0);}
.m14_c01018{transform:matrix(0.338421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338421,0.000000,0.000000,0.250000,0,0);}
.m39_c01018{transform:matrix(0.338572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338572,0.000000,0.000000,0.250000,0,0);}
.m2d_c01018{transform:matrix(0.341035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341035,0.000000,0.000000,0.250000,0,0);}
.m85_c01018{transform:matrix(0.343445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343445,0.000000,0.000000,0.250000,0,0);}
.m9a_c01018{transform:matrix(0.344416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344416,0.000000,0.000000,0.250000,0,0);}
.m83_c01018{transform:matrix(0.344998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344998,0.000000,0.000000,0.250000,0,0);}
.m9b_c01018{transform:matrix(0.345172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345172,0.000000,0.000000,0.250000,0,0);}
.m4e_c01018{transform:matrix(0.345913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345913,0.000000,0.000000,0.250000,0,0);}
.m66_c01018{transform:matrix(0.347018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347018,0.000000,0.000000,0.250000,0,0);}
.m6_c01018{transform:matrix(0.350252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350252,0.000000,0.000000,0.250000,0,0);}
.m82_c01018{transform:matrix(0.350474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350474,0.000000,0.000000,0.250000,0,0);}
.m19_c01018{transform:matrix(0.355130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355130,0.000000,0.000000,0.250000,0,0);}
.m63_c01018{transform:matrix(0.374684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374684,0.000000,0.000000,0.250000,0,0);}
.mb_c01018{transform:matrix(0.380631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380631,0.000000,0.000000,0.250000,0,0);}
.v0_c01018{vertical-align:0.000000px;}
.lsd_c01018{letter-spacing:-2.778930px;}
.lsa_c01018{letter-spacing:-1.945251px;}
.ls6_c01018{letter-spacing:-1.699117px;}
.ls3_c01018{letter-spacing:-1.675298px;}
.ls1_c01018{letter-spacing:0.000000px;}
.ls10_c01018{letter-spacing:1.167151px;}
.ls11_c01018{letter-spacing:1.699117px;}
.ls7_c01018{letter-spacing:2.405759px;}
.ls13_c01018{letter-spacing:2.667773px;}
.ls0_c01018{letter-spacing:3.239438px;}
.ls5_c01018{letter-spacing:3.474900px;}
.lsf_c01018{letter-spacing:3.623400px;}
.ls12_c01018{letter-spacing:3.643200px;}
.lsc_c01018{letter-spacing:3.880810px;}
.ls2_c01018{letter-spacing:3.969900px;}
.ls4_c01018{letter-spacing:4.207500px;}
.ls9_c01018{letter-spacing:4.455000px;}
.lse_c01018{letter-spacing:55.598598px;}
.lsb_c01018{letter-spacing:59.875398px;}
.ls8_c01018{letter-spacing:62.726400px;}
.sc__c01018{text-shadow:none;}
.sc0_c01018{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01018{-webkit-text-stroke:0px transparent;}
.sc0_c01018{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01018{word-spacing:0.000000px;}
._0_c01018{width:36.650117px;}
.fc0_c01018{color:transparent;}
.fsc_c01018{font-size:22.176000px;}
.fsa_c01018{font-size:24.552000px;}
.fs0_c01018{font-size:27.720000px;}
.fs3_c01018{font-size:33.660000px;}
.fsf_c01018{font-size:49.500000px;}
.fsb_c01018{font-size:55.598598px;}
.fsd_c01018{font-size:56.628000px;}
.fs8_c01018{font-size:59.875398px;}
.fs6_c01018{font-size:62.726400px;}
.fs5_c01018{font-size:69.498000px;}
.fse_c01018{font-size:72.468000px;}
.fs10_c01018{font-size:72.864000px;}
.fs4_c01018{font-size:74.844000px;}
.fs9_c01018{font-size:77.616198px;}
.fs1_c01018{font-size:79.398000px;}
.fs2_c01018{font-size:84.150000px;}
.fs7_c01018{font-size:89.100000px;}
.y0_c01018{bottom:0.000000px;}
.y1_c01018{bottom:76.500000px;}
.y3_c01018{bottom:77.959575px;}
.y20_c01018{bottom:125.003385px;}
.y21_c01018{bottom:130.710735px;}
.y1f_c01018{bottom:156.727935px;}
.y1e_c01018{bottom:189.516735px;}
.y1d_c01018{bottom:220.879935px;}
.y1c_c01018{bottom:252.599535px;}
.y1b_c01018{bottom:280.393785px;}
.y1a_c01018{bottom:285.031935px;}
.y19_c01018{bottom:315.677385px;}
.y18_c01018{bottom:326.017935px;}
.y17_c01018{bottom:338.130585px;}
.y16_c01018{bottom:348.466185px;}
.y15_c01018{bottom:380.190735px;}
.y14_c01018{bottom:411.910335px;}
.y13_c01018{bottom:443.986335px;}
.y12_c01018{bottom:506.712735px;}
.y11_c01018{bottom:538.075935px;}
.y10_c01018{bottom:569.790585px;}
.yf_c01018{bottom:601.871535px;}
.ye_c01018{bottom:633.942585px;}
.yd_c01018{bottom:665.667135px;}
.yc_c01018{bottom:697.738185px;}
.yb_c01018{bottom:729.462735px;}
.ya_c01018{bottom:761.177385px;}
.y9_c01018{bottom:792.540585px;}
.y6_c01018{bottom:792.896985px;}
.y7_c01018{bottom:793.258335px;}
.y8_c01018{bottom:801.450585px;}
.y5_c01018{bottom:886.630185px;}
.y4_c01018{bottom:918.706185px;}
.y2_c01018{bottom:1055.207385px;}
.hf_c01018{height:23.128875px;}
.hc_c01018{height:24.096445px;}
.h2_c01018{height:28.911094px;}
.h5_c01018{height:33.035449px;}
.he_c01018{height:37.028666px;}
.ha_c01018{height:39.877015px;}
.h8_c01018{height:41.775782px;}
.h12_c01018{height:51.626953px;}
.h10_c01018{height:59.061234px;}
.h7_c01018{height:68.208486px;}
.h11_c01018{height:71.123379px;}
.h13_c01018{height:71.512031px;}
.h6_c01018{height:73.455293px;}
.hb_c01018{height:76.138155px;}
.h3_c01018{height:77.924795px;}
.hd_c01018{height:80.951269px;}
.h4_c01018{height:82.588623px;}
.h9_c01018{height:87.446777px;}
.h1_c01018{height:1110.000000px;}
.h0_c01018{height:1263.000000px;}
.w1_c01018{width:763.500000px;}
.w0_c01018{width:892.500000px;}
.x0_c01018{left:0.000000px;}
.x3_c01018{left:52.146315px;}
.x2_c01018{left:54.287685px;}
.x1_c01018{left:64.500000px;}
.x1d_c01018{left:69.004035px;}
.x58_c01018{left:70.206885px;}
.x4_c01018{left:71.241435px;}
.x59_c01018{left:101.436435px;}
.x14_c01018{left:103.951035px;}
.x33_c01018{left:113.291685px;}
.x5_c01018{left:115.138035px;}
.x4b_c01018{left:123.127335px;}
.xc_c01018{left:125.513235px;}
.x54_c01018{left:136.066635px;}
.x34_c01018{left:147.798135px;}
.x5f_c01018{left:156.628935px;}
.x1e_c01018{left:157.698135px;}
.x55_c01018{left:169.182135px;}
.x6_c01018{left:170.384985px;}
.x4c_c01018{left:179.082135px;}
.x2c_c01018{left:180.705735px;}
.x64_c01018{left:191.036385px;}
.x5a_c01018{left:200.872035px;}
.x39_c01018{left:202.421385px;}
.x27_c01018{left:212.593635px;}
.xd_c01018{left:213.959835px;}
.x3c_c01018{left:215.132985px;}
.x6a_c01018{left:223.325235px;}
.x2d_c01018{left:224.488485px;}
.x5b_c01018{left:236.630835px;}
.x4f_c01018{left:245.422035px;}
.x60_c01018{left:247.006035px;}
.x1f_c01018{left:257.509935px;}
.x2e_c01018{left:258.638535px;}
.x49_c01018{left:259.707735px;}
.x15_c01018{left:260.935335px;}
.xe_c01018{left:269.394885px;}
.x61_c01018{left:280.126485px;}
.x50_c01018{left:281.210535px;}
.x20_c01018{left:292.437135px;}
.x44_c01018{left:301.683735px;}
.x7_c01018{left:303.673635px;}
.x3d_c01018{left:305.024985px;}
.x4d_c01018{left:312.425235px;}
.x28_c01018{left:314.726985px;}
.x67_c01018{left:324.339885px;}
.x16_c01018{left:326.478285px;}
.x8_c01018{left:338.130585px;}
.x29_c01018{left:346.283235px;}
.x17_c01018{left:347.476185px;}
.x21_c01018{left:348.540435px;}
.x45_c01018{left:358.534485px;}
.x68_c01018{left:368.894835px;}
.x2f_c01018{left:369.964035px;}
.x9_c01018{left:372.097485px;}
.x3e_c01018{left:380.789685px;}
.x18_c01018{left:391.159935px;}
.xf_c01018{left:392.694435px;}
.x22_c01018{left:402.198435px;}
.x3a_c01018{left:414.316035px;}
.x4a_c01018{left:425.829735px;}
.x35_c01018{left:435.343635px;}
.xa_c01018{left:436.566285px;}
.x51_c01018{left:445.258485px;}
.x3f_c01018{left:447.565185px;}
.x62_c01018{left:457.435485px;}
.x23_c01018{left:459.068985px;}
.x19_c01018{left:470.246085px;}
.x40_c01018{left:479.522385px;}
.x56_c01018{left:490.595535px;}
.x24_c01018{left:492.847785px;}
.x46_c01018{left:502.257735px;}
.x11_c01018{left:503.841735px;}
.x6b_c01018{left:513.509085px;}
.x57_c01018{left:514.612935px;}
.x10_c01018{left:516.870135px;}
.x36_c01018{left:525.636585px;}
.x47_c01018{left:534.417885px;}
.x2a_c01018{left:536.670135px;}
.x41_c01018{left:547.094835px;}
.x65_c01018{left:556.519635px;}
.xb_c01018{left:558.851085px;}
.x6c_c01018{left:567.251235px;}
.x1a_c01018{left:568.285785px;}
.x12_c01018{left:569.552985px;}
.x42_c01018{left:578.656035px;}
.x30_c01018{left:580.566735px;}
.x52_c01018{left:590.516235px;}
.x25_c01018{left:600.752835px;}
.x37_c01018{left:602.302185px;}
.x31_c01018{left:613.291185px;}
.x6d_c01018{left:614.627685px;}
.x43_c01018{left:624.087135px;}
.x13_c01018{left:634.204935px;}
.x26_c01018{left:635.709735px;}
.x6e_c01018{left:644.535585px;}
.x32_c01018{left:646.174035px;}
.x63_c01018{left:657.875835px;}
.x69_c01018{left:666.290835px;}
.x2b_c01018{left:667.399635px;}
.x38_c01018{left:668.854935px;}
.x48_c01018{left:678.769785px;}
.x53_c01018{left:681.309135px;}
.x1b_c01018{left:689.828085px;}
.x4e_c01018{left:691.025985px;}
.x5e_c01018{left:697.258035px;}
.x66_c01018{left:701.000235px;}
.x5c_c01018{left:702.475335px;}
.x5d_c01018{left:703.762335px;}
.x1c_c01018{left:713.761335px;}
.x3b_c01018{left:724.186035px;}
@media print{
.v0_c01018{vertical-align:0.000000pt;}
.lsd_c01018{letter-spacing:-2.470160pt;}
.lsa_c01018{letter-spacing:-1.729112pt;}
.ls6_c01018{letter-spacing:-1.510326pt;}
.ls3_c01018{letter-spacing:-1.489154pt;}
.ls1_c01018{letter-spacing:0.000000pt;}
.ls10_c01018{letter-spacing:1.037467pt;}
.ls11_c01018{letter-spacing:1.510326pt;}
.ls7_c01018{letter-spacing:2.138453pt;}
.ls13_c01018{letter-spacing:2.371354pt;}
.ls0_c01018{letter-spacing:2.879501pt;}
.ls5_c01018{letter-spacing:3.088800pt;}
.lsf_c01018{letter-spacing:3.220800pt;}
.ls12_c01018{letter-spacing:3.238400pt;}
.lsc_c01018{letter-spacing:3.449609pt;}
.ls2_c01018{letter-spacing:3.528800pt;}
.ls4_c01018{letter-spacing:3.740000pt;}
.ls9_c01018{letter-spacing:3.960000pt;}
.lse_c01018{letter-spacing:49.420976pt;}
.lsb_c01018{letter-spacing:53.222576pt;}
.ls8_c01018{letter-spacing:55.756800pt;}
.ws0_c01018{word-spacing:0.000000pt;}
._0_c01018{width:32.577882pt;}
.fsc_c01018{font-size:19.712000pt;}
.fsa_c01018{font-size:21.824000pt;}
.fs0_c01018{font-size:24.640000pt;}
.fs3_c01018{font-size:29.920000pt;}
.fsf_c01018{font-size:44.000000pt;}
.fsb_c01018{font-size:49.420976pt;}
.fsd_c01018{font-size:50.336000pt;}
.fs8_c01018{font-size:53.222576pt;}
.fs6_c01018{font-size:55.756800pt;}
.fs5_c01018{font-size:61.776000pt;}
.fse_c01018{font-size:64.416000pt;}
.fs10_c01018{font-size:64.768000pt;}
.fs4_c01018{font-size:66.528000pt;}
.fs9_c01018{font-size:68.992176pt;}
.fs1_c01018{font-size:70.576000pt;}
.fs2_c01018{font-size:74.800000pt;}
.fs7_c01018{font-size:79.200000pt;}
.y0_c01018{bottom:0.000000pt;}
.y1_c01018{bottom:68.000000pt;}
.y3_c01018{bottom:69.297400pt;}
.y20_c01018{bottom:111.114120pt;}
.y21_c01018{bottom:116.187320pt;}
.y1f_c01018{bottom:139.313720pt;}
.y1e_c01018{bottom:168.459320pt;}
.y1d_c01018{bottom:196.337720pt;}
.y1c_c01018{bottom:224.532920pt;}
.y1b_c01018{bottom:249.238920pt;}
.y1a_c01018{bottom:253.361720pt;}
.y19_c01018{bottom:280.602120pt;}
.y18_c01018{bottom:289.793720pt;}
.y17_c01018{bottom:300.560520pt;}
.y16_c01018{bottom:309.747720pt;}
.y15_c01018{bottom:337.947320pt;}
.y14_c01018{bottom:366.142520pt;}
.y13_c01018{bottom:394.654520pt;}
.y12_c01018{bottom:450.411320pt;}
.y11_c01018{bottom:478.289720pt;}
.y10_c01018{bottom:506.480520pt;}
.yf_c01018{bottom:534.996920pt;}
.ye_c01018{bottom:563.504520pt;}
.yd_c01018{bottom:591.704120pt;}
.yc_c01018{bottom:620.211720pt;}
.yb_c01018{bottom:648.411320pt;}
.ya_c01018{bottom:676.602120pt;}
.y9_c01018{bottom:704.480520pt;}
.y6_c01018{bottom:704.797320pt;}
.y7_c01018{bottom:705.118520pt;}
.y8_c01018{bottom:712.400520pt;}
.y5_c01018{bottom:788.115720pt;}
.y4_c01018{bottom:816.627720pt;}
.y2_c01018{bottom:937.962120pt;}
.hf_c01018{height:20.559000pt;}
.hc_c01018{height:21.419063pt;}
.h2_c01018{height:25.698750pt;}
.h5_c01018{height:29.364844pt;}
.he_c01018{height:32.914370pt;}
.ha_c01018{height:35.446236pt;}
.h8_c01018{height:37.134029pt;}
.h12_c01018{height:45.890625pt;}
.h10_c01018{height:52.498875pt;}
.h7_c01018{height:60.629766pt;}
.h11_c01018{height:63.220781pt;}
.h13_c01018{height:63.566250pt;}
.h6_c01018{height:65.293594pt;}
.hb_c01018{height:67.678360pt;}
.h3_c01018{height:69.266484pt;}
.hd_c01018{height:71.956684pt;}
.h4_c01018{height:73.412109pt;}
.h9_c01018{height:77.730469pt;}
.h1_c01018{height:986.666667pt;}
.h0_c01018{height:1122.666667pt;}
.w1_c01018{width:678.666667pt;}
.w0_c01018{width:793.333333pt;}
.x0_c01018{left:0.000000pt;}
.x3_c01018{left:46.352280pt;}
.x2_c01018{left:48.255720pt;}
.x1_c01018{left:57.333333pt;}
.x1d_c01018{left:61.336920pt;}
.x58_c01018{left:62.406120pt;}
.x4_c01018{left:63.325720pt;}
.x59_c01018{left:90.165720pt;}
.x14_c01018{left:92.400920pt;}
.x33_c01018{left:100.703720pt;}
.x5_c01018{left:102.344920pt;}
.x4b_c01018{left:109.446520pt;}
.xc_c01018{left:111.567320pt;}
.x54_c01018{left:120.948120pt;}
.x34_c01018{left:131.376120pt;}
.x5f_c01018{left:139.225720pt;}
.x1e_c01018{left:140.176120pt;}
.x55_c01018{left:150.384120pt;}
.x6_c01018{left:151.453320pt;}
.x4c_c01018{left:159.184120pt;}
.x2c_c01018{left:160.627320pt;}
.x64_c01018{left:169.810120pt;}
.x5a_c01018{left:178.552920pt;}
.x39_c01018{left:179.930120pt;}
.x27_c01018{left:188.972120pt;}
.xd_c01018{left:190.186520pt;}
.x3c_c01018{left:191.229320pt;}
.x6a_c01018{left:198.511320pt;}
.x2d_c01018{left:199.545320pt;}
.x5b_c01018{left:210.338520pt;}
.x4f_c01018{left:218.152920pt;}
.x60_c01018{left:219.560920pt;}
.x1f_c01018{left:228.897720pt;}
.x2e_c01018{left:229.900920pt;}
.x49_c01018{left:230.851320pt;}
.x15_c01018{left:231.942520pt;}
.xe_c01018{left:239.462120pt;}
.x61_c01018{left:249.001320pt;}
.x50_c01018{left:249.964920pt;}
.x20_c01018{left:259.944120pt;}
.x44_c01018{left:268.163320pt;}
.x7_c01018{left:269.932120pt;}
.x3d_c01018{left:271.133320pt;}
.x4d_c01018{left:277.711320pt;}
.x28_c01018{left:279.757320pt;}
.x67_c01018{left:288.302120pt;}
.x16_c01018{left:290.202920pt;}
.x8_c01018{left:300.560520pt;}
.x29_c01018{left:307.807320pt;}
.x17_c01018{left:308.867720pt;}
.x21_c01018{left:309.813720pt;}
.x45_c01018{left:318.697320pt;}
.x68_c01018{left:327.906520pt;}
.x2f_c01018{left:328.856920pt;}
.x9_c01018{left:330.753320pt;}
.x3e_c01018{left:338.479720pt;}
.x18_c01018{left:347.697720pt;}
.xf_c01018{left:349.061720pt;}
.x22_c01018{left:357.509720pt;}
.x3a_c01018{left:368.280920pt;}
.x4a_c01018{left:378.515320pt;}
.x35_c01018{left:386.972120pt;}
.xa_c01018{left:388.058920pt;}
.x51_c01018{left:395.785320pt;}
.x3f_c01018{left:397.835720pt;}
.x62_c01018{left:406.609320pt;}
.x23_c01018{left:408.061320pt;}
.x19_c01018{left:417.996520pt;}
.x40_c01018{left:426.242120pt;}
.x56_c01018{left:436.084920pt;}
.x24_c01018{left:438.086920pt;}
.x46_c01018{left:446.451320pt;}
.x11_c01018{left:447.859320pt;}
.x6b_c01018{left:456.452520pt;}
.x57_c01018{left:457.433720pt;}
.x10_c01018{left:459.440120pt;}
.x36_c01018{left:467.232520pt;}
.x47_c01018{left:475.038120pt;}
.x2a_c01018{left:477.040120pt;}
.x41_c01018{left:486.306520pt;}
.x65_c01018{left:494.684120pt;}
.xb_c01018{left:496.756520pt;}
.x6c_c01018{left:504.223320pt;}
.x1a_c01018{left:505.142920pt;}
.x12_c01018{left:506.269320pt;}
.x42_c01018{left:514.360920pt;}
.x30_c01018{left:516.059320pt;}
.x52_c01018{left:524.903320pt;}
.x25_c01018{left:534.002520pt;}
.x37_c01018{left:535.379720pt;}
.x31_c01018{left:545.147720pt;}
.x6d_c01018{left:546.335720pt;}
.x43_c01018{left:554.744120pt;}
.x13_c01018{left:563.737720pt;}
.x26_c01018{left:565.075320pt;}
.x6e_c01018{left:572.920520pt;}
.x32_c01018{left:574.376920pt;}
.x63_c01018{left:584.778520pt;}
.x69_c01018{left:592.258520pt;}
.x2b_c01018{left:593.244120pt;}
.x38_c01018{left:594.537720pt;}
.x48_c01018{left:603.350920pt;}
.x53_c01018{left:605.608120pt;}
.x1b_c01018{left:613.180520pt;}
.x4e_c01018{left:614.245320pt;}
.x5e_c01018{left:619.784920pt;}
.x66_c01018{left:623.111320pt;}
.x5c_c01018{left:624.422520pt;}
.x5d_c01018{left:625.566520pt;}
.x1c_c01018{left:634.454520pt;}
.x3b_c01018{left:643.720920pt;}
}





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

.ir_c01019:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01019{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01019;src:url('chunks/assets/font_98782036823a87fa7591ec28.woff2')format("woff");}.ff1_c01019{font-family:ff1_c01019;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01019;src:url('chunks/assets/font_ff3c8c79edece9a2add92f1c.woff2')format("woff");}.ff2_c01019{font-family:ff2_c01019;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01019;src:url('chunks/assets/font_9fcf6385f45c3df3ebb26ffd.woff2')format("woff");}.ff3_c01019{font-family:ff3_c01019;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01019;src:url('chunks/assets/font_4d511d2c7d38cfa29d37969f.woff2')format("woff");}.ff4_c01019{font-family:ff4_c01019;line-height:0.666000;font-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_c01019{transform:matrix(0.088953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088953,0.000000,0.000000,0.250000,0,0);}
.m87_c01019{transform:matrix(0.091463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091463,0.000000,0.000000,0.250000,0,0);}
.m92_c01019{transform:matrix(0.161111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161111,0.000000,0.000000,0.250000,0,0);}
.m91_c01019{transform:matrix(0.170371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170371,0.000000,0.000000,0.250000,0,0);}
.m95_c01019{transform:matrix(0.187805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187805,0.000000,0.000000,0.250000,0,0);}
.m3_c01019{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m77_c01019{transform:matrix(0.250141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250141,0.000000,0.000000,0.250000,0,0);}
.m64_c01019{transform:matrix(0.251131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251131,0.000000,0.000000,0.250000,0,0);}
.m34_c01019{transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);}
.m6_c01019{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m3f_c01019{transform:matrix(0.258727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258727,0.000000,0.000000,0.250000,0,0);}
.m88_c01019{transform:matrix(0.258859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258859,0.000000,0.000000,0.250000,0,0);}
.m85_c01019{transform:matrix(0.259906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259906,0.000000,0.000000,0.250000,0,0);}
.m7_c01019{transform:matrix(0.260937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260937,0.000000,0.000000,0.250000,0,0);}
.m25_c01019{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.me_c01019{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.m93_c01019{transform:matrix(0.261624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261624,0.000000,0.000000,0.250000,0,0);}
.m82_c01019{transform:matrix(0.261735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261735,0.000000,0.000000,0.250000,0,0);}
.m47_c01019{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m43_c01019{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m40_c01019{transform:matrix(0.264902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264902,0.000000,0.000000,0.250000,0,0);}
.m94_c01019{transform:matrix(0.265405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265405,0.000000,0.000000,0.250000,0,0);}
.m6c_c01019{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m14_c01019{transform:matrix(0.266682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266682,0.000000,0.000000,0.250000,0,0);}
.m79_c01019{transform:matrix(0.266706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266706,0.000000,0.000000,0.250000,0,0);}
.m55_c01019{transform:matrix(0.267199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267199,0.000000,0.000000,0.250000,0,0);}
.m3e_c01019{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m68_c01019{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.m5f_c01019{transform:matrix(0.269464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269464,0.000000,0.000000,0.250000,0,0);}
.m50_c01019{transform:matrix(0.269791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269791,0.000000,0.000000,0.250000,0,0);}
.m16_c01019{transform:matrix(0.270873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270873,0.000000,0.000000,0.250000,0,0);}
.m66_c01019{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m7d_c01019{transform:matrix(0.272078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272078,0.000000,0.000000,0.250000,0,0);}
.m28_c01019{transform:matrix(0.272402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272402,0.000000,0.000000,0.250000,0,0);}
.m90_c01019{transform:matrix(0.273331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273331,0.000000,0.000000,0.250000,0,0);}
.m1c_c01019{transform:matrix(0.273566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273566,0.000000,0.000000,0.250000,0,0);}
.m12_c01019{transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);}
.m71_c01019{transform:matrix(0.275050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275050,0.000000,0.000000,0.250000,0,0);}
.m97_c01019{transform:matrix(0.275290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275290,0.000000,0.000000,0.250000,0,0);}
.m5d_c01019{transform:matrix(0.275336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275336,0.000000,0.000000,0.250000,0,0);}
.m73_c01019{transform:matrix(0.275884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275884,0.000000,0.000000,0.250000,0,0);}
.m3b_c01019{transform:matrix(0.276488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276488,0.000000,0.000000,0.250000,0,0);}
.m84_c01019{transform:matrix(0.276681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276681,0.000000,0.000000,0.250000,0,0);}
.m8a_c01019{transform:matrix(0.277753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277753,0.000000,0.000000,0.250000,0,0);}
.m0_c01019{transform:matrix(0.278436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278436,0.000000,0.000000,0.250000,0,0);}
.m5_c01019{transform:matrix(0.280240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280240,0.000000,0.000000,0.250000,0,0);}
.m7f_c01019{transform:matrix(0.280719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280719,0.000000,0.000000,0.250000,0,0);}
.m5e_c01019{transform:matrix(0.281783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281783,0.000000,0.000000,0.250000,0,0);}
.m80_c01019{transform:matrix(0.283259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283259,0.000000,0.000000,0.250000,0,0);}
.m8_c01019{transform:matrix(0.283506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283506,0.000000,0.000000,0.250000,0,0);}
.m49_c01019{transform:matrix(0.284207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284207,0.000000,0.000000,0.250000,0,0);}
.m1d_c01019{transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);}
.m44_c01019{transform:matrix(0.286810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286810,0.000000,0.000000,0.250000,0,0);}
.m11_c01019{transform:matrix(0.288102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288102,0.000000,0.000000,0.250000,0,0);}
.m1e_c01019{transform:matrix(0.288681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288681,0.000000,0.000000,0.250000,0,0);}
.m4e_c01019{transform:matrix(0.288806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288806,0.000000,0.000000,0.250000,0,0);}
.m4a_c01019{transform:matrix(0.289047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289047,0.000000,0.000000,0.250000,0,0);}
.m58_c01019{transform:matrix(0.289528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289528,0.000000,0.000000,0.250000,0,0);}
.m65_c01019{transform:matrix(0.289888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289888,0.000000,0.000000,0.250000,0,0);}
.m7e_c01019{transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);}
.m99_c01019{transform:matrix(0.290198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290198,0.000000,0.000000,0.250000,0,0);}
.m98_c01019{transform:matrix(0.291634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291634,0.000000,0.000000,0.250000,0,0);}
.m8d_c01019{transform:matrix(0.291702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291702,0.000000,0.000000,0.250000,0,0);}
.m52_c01019{transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);}
.m3a_c01019{transform:matrix(0.292592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292592,0.000000,0.000000,0.250000,0,0);}
.m8b_c01019{transform:matrix(0.292612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292612,0.000000,0.000000,0.250000,0,0);}
.m1a_c01019{transform:matrix(0.292783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292783,0.000000,0.000000,0.250000,0,0);}
.m60_c01019{transform:matrix(0.292836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292836,0.000000,0.000000,0.250000,0,0);}
.m24_c01019{transform:matrix(0.293061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293061,0.000000,0.000000,0.250000,0,0);}
.m8c_c01019{transform:matrix(0.293632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293632,0.000000,0.000000,0.250000,0,0);}
.m2f_c01019{transform:matrix(0.294396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294396,0.000000,0.000000,0.250000,0,0);}
.m4d_c01019{transform:matrix(0.294443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294443,0.000000,0.000000,0.250000,0,0);}
.m8e_c01019{transform:matrix(0.295251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295251,0.000000,0.000000,0.250000,0,0);}
.m5b_c01019{transform:matrix(0.296376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296376,0.000000,0.000000,0.250000,0,0);}
.m72_c01019{transform:matrix(0.296957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296957,0.000000,0.000000,0.250000,0,0);}
.m45_c01019{transform:matrix(0.297663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297663,0.000000,0.000000,0.250000,0,0);}
.m39_c01019{transform:matrix(0.298017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298017,0.000000,0.000000,0.250000,0,0);}
.m36_c01019{transform:matrix(0.298934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298934,0.000000,0.000000,0.250000,0,0);}
.m70_c01019{transform:matrix(0.299745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299745,0.000000,0.000000,0.250000,0,0);}
.m63_c01019{transform:matrix(0.300208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300208,0.000000,0.000000,0.250000,0,0);}
.m4c_c01019{transform:matrix(0.300484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300484,0.000000,0.000000,0.250000,0,0);}
.m1f_c01019{transform:matrix(0.301255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301255,0.000000,0.000000,0.250000,0,0);}
.m2e_c01019{transform:matrix(0.301637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301637,0.000000,0.000000,0.250000,0,0);}
.m67_c01019{transform:matrix(0.301729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301729,0.000000,0.000000,0.250000,0,0);}
.m6b_c01019{transform:matrix(0.301847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301847,0.000000,0.000000,0.250000,0,0);}
.m6d_c01019{transform:matrix(0.302025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302025,0.000000,0.000000,0.250000,0,0);}
.m78_c01019{transform:matrix(0.302579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302579,0.000000,0.000000,0.250000,0,0);}
.m23_c01019{transform:matrix(0.303980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303980,0.000000,0.000000,0.250000,0,0);}
.m4f_c01019{transform:matrix(0.304215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304215,0.000000,0.000000,0.250000,0,0);}
.m18_c01019{transform:matrix(0.304655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304655,0.000000,0.000000,0.250000,0,0);}
.m19_c01019{transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);}
.mb_c01019{transform:matrix(0.305555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305555,0.000000,0.000000,0.250000,0,0);}
.m6e_c01019{transform:matrix(0.306706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306706,0.000000,0.000000,0.250000,0,0);}
.m37_c01019{transform:matrix(0.307057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307057,0.000000,0.000000,0.250000,0,0);}
.m21_c01019{transform:matrix(0.307101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307101,0.000000,0.000000,0.250000,0,0);}
.m31_c01019{transform:matrix(0.307443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307443,0.000000,0.000000,0.250000,0,0);}
.m35_c01019{transform:matrix(0.307731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307731,0.000000,0.000000,0.250000,0,0);}
.m1b_c01019{transform:matrix(0.307955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307955,0.000000,0.000000,0.250000,0,0);}
.m13_c01019{transform:matrix(0.308448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308448,0.000000,0.000000,0.250000,0,0);}
.m7c_c01019{transform:matrix(0.309988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309988,0.000000,0.000000,0.250000,0,0);}
.m4b_c01019{transform:matrix(0.310311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310311,0.000000,0.000000,0.250000,0,0);}
.m61_c01019{transform:matrix(0.310465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310465,0.000000,0.000000,0.250000,0,0);}
.m38_c01019{transform:matrix(0.310723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310723,0.000000,0.000000,0.250000,0,0);}
.m15_c01019{transform:matrix(0.310725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310725,0.000000,0.000000,0.250000,0,0);}
.m1_c01019{transform:matrix(0.312526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312526,0.000000,0.000000,0.250000,0,0);}
.m59_c01019{transform:matrix(0.312774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312774,0.000000,0.000000,0.250000,0,0);}
.m62_c01019{transform:matrix(0.313428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313428,0.000000,0.000000,0.250000,0,0);}
.m57_c01019{transform:matrix(0.314455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314455,0.000000,0.000000,0.250000,0,0);}
.m2b_c01019{transform:matrix(0.314527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314527,0.000000,0.000000,0.250000,0,0);}
.m3c_c01019{transform:matrix(0.314589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314589,0.000000,0.000000,0.250000,0,0);}
.m22_c01019{transform:matrix(0.315646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315646,0.000000,0.000000,0.250000,0,0);}
.m9_c01019{transform:matrix(0.315696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315696,0.000000,0.000000,0.250000,0,0);}
.md_c01019{transform:matrix(0.316627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316627,0.000000,0.000000,0.250000,0,0);}
.m41_c01019{transform:matrix(0.317172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317172,0.000000,0.000000,0.250000,0,0);}
.m29_c01019{transform:matrix(0.317427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317427,0.000000,0.000000,0.250000,0,0);}
.m32_c01019{transform:matrix(0.317470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317470,0.000000,0.000000,0.250000,0,0);}
.m2d_c01019{transform:matrix(0.317481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317481,0.000000,0.000000,0.250000,0,0);}
.m56_c01019{transform:matrix(0.317656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317656,0.000000,0.000000,0.250000,0,0);}
.m76_c01019{transform:matrix(0.318864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318864,0.000000,0.000000,0.250000,0,0);}
.m46_c01019{transform:matrix(0.319530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319530,0.000000,0.000000,0.250000,0,0);}
.m96_c01019{transform:matrix(0.321107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321107,0.000000,0.000000,0.250000,0,0);}
.m2a_c01019{transform:matrix(0.321775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321775,0.000000,0.000000,0.250000,0,0);}
.m51_c01019{transform:matrix(0.323094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323094,0.000000,0.000000,0.250000,0,0);}
.m20_c01019{transform:matrix(0.323442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323442,0.000000,0.000000,0.250000,0,0);}
.m54_c01019{transform:matrix(0.323585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323585,0.000000,0.000000,0.250000,0,0);}
.m81_c01019{transform:matrix(0.323720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323720,0.000000,0.000000,0.250000,0,0);}
.m48_c01019{transform:matrix(0.324470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324470,0.000000,0.000000,0.250000,0,0);}
.m33_c01019{transform:matrix(0.324775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324775,0.000000,0.000000,0.250000,0,0);}
.m42_c01019{transform:matrix(0.326875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326875,0.000000,0.000000,0.250000,0,0);}
.ma_c01019{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m53_c01019{transform:matrix(0.327181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327181,0.000000,0.000000,0.250000,0,0);}
.m5c_c01019{transform:matrix(0.330710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330710,0.000000,0.000000,0.250000,0,0);}
.mf_c01019{transform:matrix(0.331699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331699,0.000000,0.000000,0.250000,0,0);}
.m74_c01019{transform:matrix(0.333016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333016,0.000000,0.000000,0.250000,0,0);}
.m5a_c01019{transform:matrix(0.334251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334251,0.000000,0.000000,0.250000,0,0);}
.m27_c01019{transform:matrix(0.334644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334644,0.000000,0.000000,0.250000,0,0);}
.m83_c01019{transform:matrix(0.338265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338265,0.000000,0.000000,0.250000,0,0);}
.m7a_c01019{transform:matrix(0.342797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342797,0.000000,0.000000,0.250000,0,0);}
.m75_c01019{transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);}
.m17_c01019{transform:matrix(0.348765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348765,0.000000,0.000000,0.250000,0,0);}
.m8f_c01019{transform:matrix(0.350229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350229,0.000000,0.000000,0.250000,0,0);}
.m30_c01019{transform:matrix(0.354334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354334,0.000000,0.000000,0.250000,0,0);}
.m89_c01019{transform:matrix(0.355342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355342,0.000000,0.000000,0.250000,0,0);}
.m6f_c01019{transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);}
.mc_c01019{transform:matrix(0.373039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373039,0.000000,0.000000,0.250000,0,0);}
.m10_c01019{transform:matrix(0.373079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373079,0.000000,0.000000,0.250000,0,0);}
.m2c_c01019{transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);}
.m3d_c01019{transform:matrix(0.375722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375722,0.000000,0.000000,0.250000,0,0);}
.m7b_c01019{transform:matrix(0.376705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376705,0.000000,0.000000,0.250000,0,0);}
.m26_c01019{transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);}
.m6a_c01019{transform:matrix(0.380993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380993,0.000000,0.000000,0.250000,0,0);}
.m69_c01019{transform:matrix(0.385437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385437,0.000000,0.000000,0.250000,0,0);}
.m2_c01019{transform:matrix(0.385974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385974,0.000000,0.000000,0.250000,0,0);}
.m4_c01019{transform:matrix(0.400876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400876,0.000000,0.000000,0.250000,0,0);}
.v0_c01019{vertical-align:0.000000px;}
.lsb_c01019{letter-spacing:-1.630886px;}
.ls7_c01019{letter-spacing:-1.427026px;}
.ls6_c01019{letter-spacing:-1.419185px;}
.lsc_c01019{letter-spacing:-0.799762px;}
.lsf_c01019{letter-spacing:-0.572378px;}
.ls3_c01019{letter-spacing:0.000000px;}
.ls9_c01019{letter-spacing:1.466230px;}
.ls0_c01019{letter-spacing:1.497593px;}
.ls2_c01019{letter-spacing:1.831500px;}
.lsa_c01019{letter-spacing:2.427005px;}
.ls5_c01019{letter-spacing:3.168000px;}
.ls8_c01019{letter-spacing:3.246091px;}
.lsd_c01019{letter-spacing:3.375900px;}
.ls4_c01019{letter-spacing:3.524400px;}
.ls10_c01019{letter-spacing:3.682810px;}
.ls1_c01019{letter-spacing:3.920400px;}
.lse_c01019{letter-spacing:58.449798px;}
.ls11_c01019{letter-spacing:64.152198px;}
.sc__c01019{text-shadow:none;}
.sc0_c01019{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01019{-webkit-text-stroke:0px transparent;}
.sc0_c01019{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01019{word-spacing:-21.099593px;}
.ws0_c01019{word-spacing:-19.602000px;}
.ws2_c01019{word-spacing:0.000000px;}
._1_c01019{width:4.390848px;}
._0_c01019{width:35.989272px;}
._4_c01019{width:39.679200px;}
._3_c01019{width:43.420450px;}
._2_c01019{width:84.837060px;}
.fc0_c01019{color:transparent;}
.fs7_c01019{font-size:25.146000px;}
.fs8_c01019{font-size:27.720000px;}
.fsb_c01019{font-size:33.660000px;}
.fs12_c01019{font-size:34.056198px;}
.fs1_c01019{font-size:36.630000px;}
.fsd_c01019{font-size:38.808000px;}
.fs9_c01019{font-size:39.600000px;}
.fsc_c01019{font-size:55.440000px;}
.fse_c01019{font-size:58.449798px;}
.fs3_c01019{font-size:63.360000px;}
.fs10_c01019{font-size:64.152198px;}
.fs4_c01019{font-size:66.330000px;}
.fsa_c01019{font-size:67.518000px;}
.fs2_c01019{font-size:70.488000px;}
.fs11_c01019{font-size:71.280000px;}
.fsf_c01019{font-size:73.656198px;}
.fs5_c01019{font-size:74.448000px;}
.fs6_c01019{font-size:74.844000px;}
.fs0_c01019{font-size:78.408000px;}
.y0_c01019{bottom:0.000000px;}
.y1_c01019{bottom:76.500000px;}
.y1c_c01019{bottom:95.783535px;}
.y1b_c01019{bottom:127.146735px;}
.y1a_c01019{bottom:158.866335px;}
.y19_c01019{bottom:190.580985px;}
.y18_c01019{bottom:223.374735px;}
.y17_c01019{bottom:244.040985px;}
.y16_c01019{bottom:279.680985px;}
.y15_c01019{bottom:312.831135px;}
.y14_c01019{bottom:318.533535px;}
.y13_c01019{bottom:334.927935px;}
.y12_c01019{bottom:441.486585px;}
.y11_c01019{bottom:477.844335px;}
.y10_c01019{bottom:509.920335px;}
.yf_c01019{bottom:540.927135px;}
.ye_c01019{bottom:572.646735px;}
.yd_c01019{bottom:604.361385px;}
.yc_c01019{bottom:636.085935px;}
.yb_c01019{bottom:699.881535px;}
.ya_c01019{bottom:732.308985px;}
.y9_c01019{bottom:764.033535px;}
.y8_c01019{bottom:795.748185px;}
.y7_c01019{bottom:827.111385px;}
.y6_c01019{bottom:858.835935px;}
.y5_c01019{bottom:890.199135px;}
.y3_c01019{bottom:921.562335px;}
.y4_c01019{bottom:925.839135px;}
.y2_c01019{bottom:1057.345785px;}
.h9_c01019{height:26.226492px;}
.ha_c01019{height:28.911094px;}
.hd_c01019{height:33.035449px;}
.h14_c01019{height:35.519550px;}
.h3_c01019{height:38.203945px;}
.h10_c01019{height:38.927565px;}
.hf_c01019{height:40.475531px;}
.hb_c01019{height:41.301563px;}
.h12_c01019{height:42.725364px;}
.he_c01019{height:57.822188px;}
.h5_c01019{height:66.082500px;}
.h4_c01019{height:69.180117px;}
.h13_c01019{height:69.957422px;}
.hc_c01019{height:70.419164px;}
.h11_c01019{height:72.289530px;}
.h7_c01019{height:73.066641px;}
.h8_c01019{height:73.455293px;}
.h2_c01019{height:76.953164px;}
.h6_c01019{height:79.020563px;}
.h1_c01019{height:1110.000000px;}
.h0_c01019{height:1263.000000px;}
.w1_c01019{width:763.500000px;}
.w0_c01019{width:892.500000px;}
.x0_c01019{left:0.000000px;}
.x1_c01019{left:64.500000px;}
.x31_c01019{left:74.295585px;}
.x3_c01019{left:75.538035px;}
.x2c_c01019{left:77.404185px;}
.x19_c01019{left:96.738885px;}
.x5b_c01019{left:100.416735px;}
.xe_c01019{left:108.242685px;}
.x40_c01019{left:119.642535px;}
.x58_c01019{left:121.474035px;}
.x2d_c01019{left:130.468185px;}
.x47_c01019{left:141.511635px;}
.xf_c01019{left:153.604485px;}
.x52_c01019{left:159.980085px;}
.x20_c01019{left:163.558935px;}
.x25_c01019{left:164.974635px;}
.x10_c01019{left:175.018185px;}
.x32_c01019{left:176.849685px;}
.x48_c01019{left:184.428135px;}
.x1a_c01019{left:185.670585px;}
.x4_c01019{left:188.135685px;}
.x57_c01019{left:196.194285px;}
.x26_c01019{left:197.659485px;}
.x11_c01019{left:207.777285px;}
.x5_c01019{left:208.866285px;}
.x2e_c01019{left:219.162285px;}
.x6_c01019{left:230.012685px;}
.x41_c01019{left:241.254135px;}
.x5c_c01019{left:242.392635px;}
.x4c_c01019{left:251.812485px;}
.x7_c01019{left:253.391535px;}
.x27_c01019{left:273.934035px;}
.x4e_c01019{left:275.389335px;}
.x49_c01019{left:285.472485px;}
.x12_c01019{left:286.492185px;}
.x33_c01019{left:297.604935px;}
.x8_c01019{left:308.311785px;}
.x13_c01019{left:319.335435px;}
.x4f_c01019{left:320.716485px;}
.x21_c01019{left:331.066935px;}
.x9_c01019{left:341.447085px;}
.x53_c01019{left:351.871785px;}
.x1b_c01019{left:353.817135px;}
.x34_c01019{left:364.192335px;}
.x28_c01019{left:365.865435px;}
.x5d_c01019{left:374.448735px;}
.x42_c01019{left:375.641685px;}
.x3e_c01019{left:384.774435px;}
.x29_c01019{left:386.670285px;}
.x59_c01019{left:396.179235px;}
.xa_c01019{left:397.278135px;}
.x43_c01019{left:408.450285px;}
.x2a_c01019{left:419.538285px;}
.x35_c01019{left:429.784785px;}
.x22_c01019{left:430.858935px;}
.x5e_c01019{left:440.704485px;}
.x4d_c01019{left:442.283535px;}
.x44_c01019{left:451.742985px;}
.x1c_c01019{left:453.356685px;}
.x54_c01019{left:461.628135px;}
.x5f_c01019{left:464.692185px;}
.x1d_c01019{left:473.161635px;}
.x4a_c01019{left:475.710885px;}
.x55_c01019{left:477.562185px;}
.xb_c01019{left:484.531785px;}
.x14_c01019{left:485.798985px;}
.x60_c01019{left:496.228635px;}
.x36_c01019{left:507.885885px;}
.x3a_c01019{left:518.850135px;}
.x15_c01019{left:520.255935px;}
.x50_c01019{left:529.972785px;}
.x37_c01019{left:540.125235px;}
.x5a_c01019{left:541.392435px;}
.x16_c01019{left:551.158785px;}
.x2f_c01019{left:563.459535px;}
.x1e_c01019{left:575.032635px;}
.x17_c01019{left:585.224685px;}
.x45_c01019{left:595.000935px;}
.xc_c01019{left:596.911635px;}
.x51_c01019{left:598.525335px;}
.x3b_c01019{left:609.643035px;}
.x23_c01019{left:617.959035px;}
.x3f_c01019{left:628.868835px;}
.xd_c01019{left:630.007335px;}
.x3c_c01019{left:631.135935px;}
.x38_c01019{left:639.214335px;}
.x30_c01019{left:640.832985px;}
.x24_c01019{left:651.455685px;}
.x2_c01019{left:662.865435px;}
.x39_c01019{left:674.884035px;}
.x4b_c01019{left:683.437635px;}
.x2b_c01019{left:695.154285px;}
.x3d_c01019{left:697.198635px;}
.x56_c01019{left:698.708385px;}
.x1f_c01019{left:707.098635px;}
.x46_c01019{left:718.825185px;}
.x18_c01019{left:728.581635px;}
@media print{
.v0_c01019{vertical-align:0.000000pt;}
.lsb_c01019{letter-spacing:-1.449677pt;}
.ls7_c01019{letter-spacing:-1.268467pt;}
.ls6_c01019{letter-spacing:-1.261498pt;}
.lsc_c01019{letter-spacing:-0.710899pt;}
.lsf_c01019{letter-spacing:-0.508781pt;}
.ls3_c01019{letter-spacing:0.000000pt;}
.ls9_c01019{letter-spacing:1.303315pt;}
.ls0_c01019{letter-spacing:1.331194pt;}
.ls2_c01019{letter-spacing:1.628000pt;}
.lsa_c01019{letter-spacing:2.157338pt;}
.ls5_c01019{letter-spacing:2.816000pt;}
.ls8_c01019{letter-spacing:2.885414pt;}
.lsd_c01019{letter-spacing:3.000800pt;}
.ls4_c01019{letter-spacing:3.132800pt;}
.ls10_c01019{letter-spacing:3.273609pt;}
.ls1_c01019{letter-spacing:3.484800pt;}
.lse_c01019{letter-spacing:51.955376pt;}
.ls11_c01019{letter-spacing:57.024176pt;}
.ws1_c01019{word-spacing:-18.755194pt;}
.ws0_c01019{word-spacing:-17.424000pt;}
.ws2_c01019{word-spacing:0.000000pt;}
._1_c01019{width:3.902976pt;}
._0_c01019{width:31.990464pt;}
._4_c01019{width:35.270400pt;}
._3_c01019{width:38.595955pt;}
._2_c01019{width:75.410720pt;}
.fs7_c01019{font-size:22.352000pt;}
.fs8_c01019{font-size:24.640000pt;}
.fsb_c01019{font-size:29.920000pt;}
.fs12_c01019{font-size:30.272176pt;}
.fs1_c01019{font-size:32.560000pt;}
.fsd_c01019{font-size:34.496000pt;}
.fs9_c01019{font-size:35.200000pt;}
.fsc_c01019{font-size:49.280000pt;}
.fse_c01019{font-size:51.955376pt;}
.fs3_c01019{font-size:56.320000pt;}
.fs10_c01019{font-size:57.024176pt;}
.fs4_c01019{font-size:58.960000pt;}
.fsa_c01019{font-size:60.016000pt;}
.fs2_c01019{font-size:62.656000pt;}
.fs11_c01019{font-size:63.360000pt;}
.fsf_c01019{font-size:65.472176pt;}
.fs5_c01019{font-size:66.176000pt;}
.fs6_c01019{font-size:66.528000pt;}
.fs0_c01019{font-size:69.696000pt;}
.y0_c01019{bottom:0.000000pt;}
.y1_c01019{bottom:68.000000pt;}
.y1c_c01019{bottom:85.140920pt;}
.y1b_c01019{bottom:113.019320pt;}
.y1a_c01019{bottom:141.214520pt;}
.y19_c01019{bottom:169.405320pt;}
.y18_c01019{bottom:198.555320pt;}
.y17_c01019{bottom:216.925320pt;}
.y16_c01019{bottom:248.605320pt;}
.y15_c01019{bottom:278.072120pt;}
.y14_c01019{bottom:283.140920pt;}
.y13_c01019{bottom:297.713720pt;}
.y12_c01019{bottom:392.432520pt;}
.y11_c01019{bottom:424.750520pt;}
.y10_c01019{bottom:453.262520pt;}
.yf_c01019{bottom:480.824120pt;}
.ye_c01019{bottom:509.019320pt;}
.yd_c01019{bottom:537.210120pt;}
.yc_c01019{bottom:565.409720pt;}
.yb_c01019{bottom:622.116920pt;}
.ya_c01019{bottom:650.941320pt;}
.y9_c01019{bottom:679.140920pt;}
.y8_c01019{bottom:707.331720pt;}
.y7_c01019{bottom:735.210120pt;}
.y6_c01019{bottom:763.409720pt;}
.y5_c01019{bottom:791.288120pt;}
.y3_c01019{bottom:819.166520pt;}
.y4_c01019{bottom:822.968120pt;}
.y2_c01019{bottom:939.862920pt;}
.h9_c01019{height:23.312438pt;}
.ha_c01019{height:25.698750pt;}
.hd_c01019{height:29.364844pt;}
.h14_c01019{height:31.572934pt;}
.h3_c01019{height:33.959063pt;}
.h10_c01019{height:34.602280pt;}
.hf_c01019{height:35.978250pt;}
.hb_c01019{height:36.712500pt;}
.h12_c01019{height:37.978101pt;}
.he_c01019{height:51.397500pt;}
.h5_c01019{height:58.740000pt;}
.h4_c01019{height:61.493438pt;}
.h13_c01019{height:62.184375pt;}
.hc_c01019{height:62.594813pt;}
.h11_c01019{height:64.257360pt;}
.h7_c01019{height:64.948125pt;}
.h8_c01019{height:65.293594pt;}
.h2_c01019{height:68.402813pt;}
.h6_c01019{height:70.240500pt;}
.h1_c01019{height:986.666667pt;}
.h0_c01019{height:1122.666667pt;}
.w1_c01019{width:678.666667pt;}
.w0_c01019{width:793.333333pt;}
.x0_c01019{left:0.000000pt;}
.x1_c01019{left:57.333333pt;}
.x31_c01019{left:66.040520pt;}
.x3_c01019{left:67.144920pt;}
.x2c_c01019{left:68.803720pt;}
.x19_c01019{left:85.990120pt;}
.x5b_c01019{left:89.259320pt;}
.xe_c01019{left:96.215720pt;}
.x40_c01019{left:106.348920pt;}
.x58_c01019{left:107.976920pt;}
.x2d_c01019{left:115.971720pt;}
.x47_c01019{left:125.788120pt;}
.xf_c01019{left:136.537320pt;}
.x52_c01019{left:142.204520pt;}
.x20_c01019{left:145.385720pt;}
.x25_c01019{left:146.644120pt;}
.x10_c01019{left:155.571720pt;}
.x32_c01019{left:157.199720pt;}
.x48_c01019{left:163.936120pt;}
.x1a_c01019{left:165.040520pt;}
.x4_c01019{left:167.231720pt;}
.x57_c01019{left:174.394920pt;}
.x26_c01019{left:175.697320pt;}
.x11_c01019{left:184.690920pt;}
.x5_c01019{left:185.658920pt;}
.x2e_c01019{left:194.810920pt;}
.x6_c01019{left:204.455720pt;}
.x41_c01019{left:214.448120pt;}
.x5c_c01019{left:215.460120pt;}
.x4c_c01019{left:223.833320pt;}
.x7_c01019{left:225.236920pt;}
.x27_c01019{left:243.496920pt;}
.x4e_c01019{left:244.790520pt;}
.x49_c01019{left:253.753320pt;}
.x12_c01019{left:254.659720pt;}
.x33_c01019{left:264.537720pt;}
.x8_c01019{left:274.054920pt;}
.x13_c01019{left:283.853720pt;}
.x4f_c01019{left:285.081320pt;}
.x21_c01019{left:294.281720pt;}
.x9_c01019{left:303.508520pt;}
.x53_c01019{left:312.774920pt;}
.x1b_c01019{left:314.504120pt;}
.x34_c01019{left:323.726520pt;}
.x28_c01019{left:325.213720pt;}
.x5d_c01019{left:332.843320pt;}
.x42_c01019{left:333.903720pt;}
.x3e_c01019{left:342.021720pt;}
.x29_c01019{left:343.706920pt;}
.x59_c01019{left:352.159320pt;}
.xa_c01019{left:353.136120pt;}
.x43_c01019{left:363.066920pt;}
.x2a_c01019{left:372.922920pt;}
.x35_c01019{left:382.030920pt;}
.x22_c01019{left:382.985720pt;}
.x5e_c01019{left:391.737320pt;}
.x4d_c01019{left:393.140920pt;}
.x44_c01019{left:401.549320pt;}
.x1c_c01019{left:402.983720pt;}
.x54_c01019{left:410.336120pt;}
.x5f_c01019{left:413.059720pt;}
.x1d_c01019{left:420.588120pt;}
.x4a_c01019{left:422.854120pt;}
.x55_c01019{left:424.499720pt;}
.xb_c01019{left:430.694920pt;}
.x14_c01019{left:431.821320pt;}
.x60_c01019{left:441.092120pt;}
.x36_c01019{left:451.454120pt;}
.x3a_c01019{left:461.200120pt;}
.x15_c01019{left:462.449720pt;}
.x50_c01019{left:471.086920pt;}
.x37_c01019{left:480.111320pt;}
.x5a_c01019{left:481.237720pt;}
.x16_c01019{left:489.918920pt;}
.x2f_c01019{left:500.852920pt;}
.x1e_c01019{left:511.140120pt;}
.x17_c01019{left:520.199720pt;}
.x45_c01019{left:528.889720pt;}
.xc_c01019{left:530.588120pt;}
.x51_c01019{left:532.022520pt;}
.x3b_c01019{left:541.904920pt;}
.x23_c01019{left:549.296920pt;}
.x3f_c01019{left:558.994520pt;}
.xd_c01019{left:560.006520pt;}
.x3c_c01019{left:561.009720pt;}
.x38_c01019{left:568.190520pt;}
.x30_c01019{left:569.629320pt;}
.x24_c01019{left:579.071720pt;}
.x2_c01019{left:589.213720pt;}
.x39_c01019{left:599.896920pt;}
.x4b_c01019{left:607.500120pt;}
.x2b_c01019{left:617.914920pt;}
.x3d_c01019{left:619.732120pt;}
.x56_c01019{left:621.074120pt;}
.x1f_c01019{left:628.532120pt;}
.x46_c01019{left:638.955720pt;}
.x18_c01019{left:647.628120pt;}
}





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

.ir_c01020:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01020{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01020;src:url('chunks/assets/font_177027736664618f36685ac1.woff2')format("woff");}.ff1_c01020{font-family:ff1_c01020;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01020;src:url('chunks/assets/font_a14855debd0026023b3629b1.woff2')format("woff");}.ff2_c01020{font-family:ff2_c01020;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01020;src:url('chunks/assets/font_7aed1ded684eb703784c19bd.woff2')format("woff");}.ff3_c01020{font-family:ff3_c01020;line-height:0.666000;font-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_c01020{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);}
.m61_c01020{transform:matrix(0.184146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184146,0.000000,0.000000,0.250000,0,0);}
.ma6_c01020{transform:matrix(0.205728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205728,0.000000,0.000000,0.250000,0,0);}
.mad_c01020{transform:matrix(0.211300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211300,0.000000,0.000000,0.250000,0,0);}
.m46_c01020{transform:matrix(0.240310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240310,0.000000,0.000000,0.250000,0,0);}
.m0_c01020{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m63_c01020{transform:matrix(0.252711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252711,0.000000,0.000000,0.250000,0,0);}
.mf_c01020{transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);}
.m14_c01020{transform:matrix(0.254597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254597,0.000000,0.000000,0.250000,0,0);}
.m29_c01020{transform:matrix(0.255364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255364,0.000000,0.000000,0.250000,0,0);}
.m16_c01020{transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);}
.m23_c01020{transform:matrix(0.257128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257128,0.000000,0.000000,0.250000,0,0);}
.mcb_c01020{transform:matrix(0.257351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257351,0.000000,0.000000,0.250000,0,0);}
.mb7_c01020{transform:matrix(0.258638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258638,0.000000,0.000000,0.250000,0,0);}
.m9_c01020{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m12_c01020{transform:matrix(0.258859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258859,0.000000,0.000000,0.250000,0,0);}
.ma4_c01020{transform:matrix(0.260559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260559,0.000000,0.000000,0.250000,0,0);}
.mc1_c01020{transform:matrix(0.260563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260563,0.000000,0.000000,0.250000,0,0);}
.m1b_c01020{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m77_c01020{transform:matrix(0.261624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261624,0.000000,0.000000,0.250000,0,0);}
.m42_c01020{transform:matrix(0.262390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262390,0.000000,0.000000,0.250000,0,0);}
.m51_c01020{transform:matrix(0.262580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262580,0.000000,0.000000,0.250000,0,0);}
.mb1_c01020{transform:matrix(0.262634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262634,0.000000,0.000000,0.250000,0,0);}
.m20_c01020{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.maf_c01020{transform:matrix(0.263919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263919,0.000000,0.000000,0.250000,0,0);}
.mc_c01020{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m90_c01020{transform:matrix(0.264857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264857,0.000000,0.000000,0.250000,0,0);}
.m65_c01020{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m28_c01020{transform:matrix(0.266295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266295,0.000000,0.000000,0.250000,0,0);}
.m2f_c01020{transform:matrix(0.266736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266736,0.000000,0.000000,0.250000,0,0);}
.m62_c01020{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m98_c01020{transform:matrix(0.269245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269245,0.000000,0.000000,0.250000,0,0);}
.m6d_c01020{transform:matrix(0.270820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270820,0.000000,0.000000,0.250000,0,0);}
.m35_c01020{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m2_c01020{transform:matrix(0.271398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271398,0.000000,0.000000,0.250000,0,0);}
.m66_c01020{transform:matrix(0.271926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271926,0.000000,0.000000,0.250000,0,0);}
.m83_c01020{transform:matrix(0.272002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272002,0.000000,0.000000,0.250000,0,0);}
.m9f_c01020{transform:matrix(0.272862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272862,0.000000,0.000000,0.250000,0,0);}
.m10_c01020{transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);}
.m25_c01020{transform:matrix(0.273673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273673,0.000000,0.000000,0.250000,0,0);}
.m57_c01020{transform:matrix(0.273864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273864,0.000000,0.000000,0.250000,0,0);}
.m96_c01020{transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274816,0.000000,0.000000,0.250000,0,0);}
.mbd_c01020{transform:matrix(0.274879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274879,0.000000,0.000000,0.250000,0,0);}
.mb6_c01020{transform:matrix(0.275040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275040,0.000000,0.000000,0.250000,0,0);}
.m2e_c01020{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.ma7_c01020{transform:matrix(0.275884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275884,0.000000,0.000000,0.250000,0,0);}
.mc8_c01020{transform:matrix(0.276606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276606,0.000000,0.000000,0.250000,0,0);}
.m26_c01020{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m11_c01020{transform:matrix(0.277669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277669,0.000000,0.000000,0.250000,0,0);}
.mb9_c01020{transform:matrix(0.277725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277725,0.000000,0.000000,0.250000,0,0);}
.m95_c01020{transform:matrix(0.279794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279794,0.000000,0.000000,0.250000,0,0);}
.m68_c01020{transform:matrix(0.280018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280018,0.000000,0.000000,0.250000,0,0);}
.m92_c01020{transform:matrix(0.280961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280961,0.000000,0.000000,0.250000,0,0);}
.m21_c01020{transform:matrix(0.280967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280967,0.000000,0.000000,0.250000,0,0);}
.m71_c01020{transform:matrix(0.282165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282165,0.000000,0.000000,0.250000,0,0);}
.m79_c01020{transform:matrix(0.282273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282273,0.000000,0.000000,0.250000,0,0);}
.m72_c01020{transform:matrix(0.282705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282705,0.000000,0.000000,0.250000,0,0);}
.m3d_c01020{transform:matrix(0.282790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282790,0.000000,0.000000,0.250000,0,0);}
.m8e_c01020{transform:matrix(0.283524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283524,0.000000,0.000000,0.250000,0,0);}
.m6f_c01020{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.mc2_c01020{transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);}
.ma5_c01020{transform:matrix(0.284354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284354,0.000000,0.000000,0.250000,0,0);}
.m9c_c01020{transform:matrix(0.284669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284669,0.000000,0.000000,0.250000,0,0);}
.m1c_c01020{transform:matrix(0.284924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284924,0.000000,0.000000,0.250000,0,0);}
.md_c01020{transform:matrix(0.285318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285318,0.000000,0.000000,0.250000,0,0);}
.m1a_c01020{transform:matrix(0.285706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285706,0.000000,0.000000,0.250000,0,0);}
.m36_c01020{transform:matrix(0.285711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285711,0.000000,0.000000,0.250000,0,0);}
.m2b_c01020{transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);}
.mbe_c01020{transform:matrix(0.286013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286013,0.000000,0.000000,0.250000,0,0);}
.m18_c01020{transform:matrix(0.286039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286039,0.000000,0.000000,0.250000,0,0);}
.m8_c01020{transform:matrix(0.286457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286457,0.000000,0.000000,0.250000,0,0);}
.m32_c01020{transform:matrix(0.286496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286496,0.000000,0.000000,0.250000,0,0);}
.mb5_c01020{transform:matrix(0.286580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286580,0.000000,0.000000,0.250000,0,0);}
.m58_c01020{transform:matrix(0.287431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287431,0.000000,0.000000,0.250000,0,0);}
.m19_c01020{transform:matrix(0.287433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287433,0.000000,0.000000,0.250000,0,0);}
.mb8_c01020{transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);}
.m37_c01020{transform:matrix(0.288824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288824,0.000000,0.000000,0.250000,0,0);}
.m94_c01020{transform:matrix(0.288958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288958,0.000000,0.000000,0.250000,0,0);}
.m30_c01020{transform:matrix(0.289287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289287,0.000000,0.000000,0.250000,0,0);}
.m82_c01020{transform:matrix(0.289860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289860,0.000000,0.000000,0.250000,0,0);}
.m87_c01020{transform:matrix(0.290272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290272,0.000000,0.000000,0.250000,0,0);}
.mba_c01020{transform:matrix(0.290712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290712,0.000000,0.000000,0.250000,0,0);}
.m4_c01020{transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);}
.m38_c01020{transform:matrix(0.293167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293167,0.000000,0.000000,0.250000,0,0);}
.m81_c01020{transform:matrix(0.294083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294083,0.000000,0.000000,0.250000,0,0);}
.mc9_c01020{transform:matrix(0.294463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294463,0.000000,0.000000,0.250000,0,0);}
.m67_c01020{transform:matrix(0.294593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294593,0.000000,0.000000,0.250000,0,0);}
.mac_c01020{transform:matrix(0.294852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294852,0.000000,0.000000,0.250000,0,0);}
.m39_c01020{transform:matrix(0.295212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295212,0.000000,0.000000,0.250000,0,0);}
.m86_c01020{transform:matrix(0.295495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295495,0.000000,0.000000,0.250000,0,0);}
.ma2_c01020{transform:matrix(0.295747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295747,0.000000,0.000000,0.250000,0,0);}
.mb3_c01020{transform:matrix(0.295937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295937,0.000000,0.000000,0.250000,0,0);}
.ma8_c01020{transform:matrix(0.296160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296160,0.000000,0.000000,0.250000,0,0);}
.m33_c01020{transform:matrix(0.296292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296292,0.000000,0.000000,0.250000,0,0);}
.m78_c01020{transform:matrix(0.296568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296568,0.000000,0.000000,0.250000,0,0);}
.m56_c01020{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.mb2_c01020{transform:matrix(0.297409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297409,0.000000,0.000000,0.250000,0,0);}
.m73_c01020{transform:matrix(0.298080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298080,0.000000,0.000000,0.250000,0,0);}
.m45_c01020{transform:matrix(0.298118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298118,0.000000,0.000000,0.250000,0,0);}
.m3b_c01020{transform:matrix(0.298148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298148,0.000000,0.000000,0.250000,0,0);}
.m97_c01020{transform:matrix(0.298534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298534,0.000000,0.000000,0.250000,0,0);}
.mbf_c01020{transform:matrix(0.299026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299026,0.000000,0.000000,0.250000,0,0);}
.m9b_c01020{transform:matrix(0.299193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299193,0.000000,0.000000,0.250000,0,0);}
.m6c_c01020{transform:matrix(0.299812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299812,0.000000,0.000000,0.250000,0,0);}
.ma3_c01020{transform:matrix(0.300996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300996,0.000000,0.000000,0.250000,0,0);}
.m7f_c01020{transform:matrix(0.301169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301169,0.000000,0.000000,0.250000,0,0);}
.mc3_c01020{transform:matrix(0.301192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301192,0.000000,0.000000,0.250000,0,0);}
.m2c_c01020{transform:matrix(0.301469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301469,0.000000,0.000000,0.250000,0,0);}
.m5e_c01020{transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);}
.m3_c01020{transform:matrix(0.302092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302092,0.000000,0.000000,0.250000,0,0);}
.m88_c01020{transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302412,0.000000,0.000000,0.250000,0,0);}
.m3e_c01020{transform:matrix(0.302581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302581,0.000000,0.000000,0.250000,0,0);}
.m55_c01020{transform:matrix(0.302965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302965,0.000000,0.000000,0.250000,0,0);}
.m1f_c01020{transform:matrix(0.303117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303117,0.000000,0.000000,0.250000,0,0);}
.m60_c01020{transform:matrix(0.303404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303404,0.000000,0.000000,0.250000,0,0);}
.m44_c01020{transform:matrix(0.303481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303481,0.000000,0.000000,0.250000,0,0);}
.m1d_c01020{transform:matrix(0.303546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303546,0.000000,0.000000,0.250000,0,0);}
.mc7_c01020{transform:matrix(0.303699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303699,0.000000,0.000000,0.250000,0,0);}
.m31_c01020{transform:matrix(0.304495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304495,0.000000,0.000000,0.250000,0,0);}
.m2a_c01020{transform:matrix(0.304642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304642,0.000000,0.000000,0.250000,0,0);}
.m47_c01020{transform:matrix(0.304775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304775,0.000000,0.000000,0.250000,0,0);}
.m7d_c01020{transform:matrix(0.304800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304800,0.000000,0.000000,0.250000,0,0);}
.m54_c01020{transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);}
.m7b_c01020{transform:matrix(0.305867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305867,0.000000,0.000000,0.250000,0,0);}
.m24_c01020{transform:matrix(0.305960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305960,0.000000,0.000000,0.250000,0,0);}
.m41_c01020{transform:matrix(0.306234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306234,0.000000,0.000000,0.250000,0,0);}
.m7a_c01020{transform:matrix(0.307515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307515,0.000000,0.000000,0.250000,0,0);}
.m13_c01020{transform:matrix(0.307519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307519,0.000000,0.000000,0.250000,0,0);}
.mb4_c01020{transform:matrix(0.307893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307893,0.000000,0.000000,0.250000,0,0);}
.m27_c01020{transform:matrix(0.307919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307919,0.000000,0.000000,0.250000,0,0);}
.mbb_c01020{transform:matrix(0.308441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308441,0.000000,0.000000,0.250000,0,0);}
.mae_c01020{transform:matrix(0.308444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308444,0.000000,0.000000,0.250000,0,0);}
.m5_c01020{transform:matrix(0.308482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308482,0.000000,0.000000,0.250000,0,0);}
.m5d_c01020{transform:matrix(0.308512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308512,0.000000,0.000000,0.250000,0,0);}
.ma1_c01020{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m6a_c01020{transform:matrix(0.308628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308628,0.000000,0.000000,0.250000,0,0);}
.mc5_c01020{transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);}
.mc0_c01020{transform:matrix(0.308939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308939,0.000000,0.000000,0.250000,0,0);}
.m34_c01020{transform:matrix(0.309612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309612,0.000000,0.000000,0.250000,0,0);}
.m76_c01020{transform:matrix(0.310102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310102,0.000000,0.000000,0.250000,0,0);}
.maa_c01020{transform:matrix(0.310566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310566,0.000000,0.000000,0.250000,0,0);}
.m48_c01020{transform:matrix(0.311442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311442,0.000000,0.000000,0.250000,0,0);}
.mca_c01020{transform:matrix(0.312051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312051,0.000000,0.000000,0.250000,0,0);}
.me_c01020{transform:matrix(0.312758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312758,0.000000,0.000000,0.250000,0,0);}
.m3f_c01020{transform:matrix(0.313301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313301,0.000000,0.000000,0.250000,0,0);}
.m6_c01020{transform:matrix(0.313350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313350,0.000000,0.000000,0.250000,0,0);}
.m64_c01020{transform:matrix(0.314048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314048,0.000000,0.000000,0.250000,0,0);}
.m70_c01020{transform:matrix(0.315086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315086,0.000000,0.000000,0.250000,0,0);}
.m69_c01020{transform:matrix(0.315578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315578,0.000000,0.000000,0.250000,0,0);}
.m93_c01020{transform:matrix(0.315727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315727,0.000000,0.000000,0.250000,0,0);}
.m9d_c01020{transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);}
.m91_c01020{transform:matrix(0.317020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317020,0.000000,0.000000,0.250000,0,0);}
.mcc_c01020{transform:matrix(0.317342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317342,0.000000,0.000000,0.250000,0,0);}
.m1e_c01020{transform:matrix(0.317440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317440,0.000000,0.000000,0.250000,0,0);}
.m4e_c01020{transform:matrix(0.318361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318361,0.000000,0.000000,0.250000,0,0);}
.m5f_c01020{transform:matrix(0.319133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319133,0.000000,0.000000,0.250000,0,0);}
.m85_c01020{transform:matrix(0.319176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319176,0.000000,0.000000,0.250000,0,0);}
.m75_c01020{transform:matrix(0.319530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319530,0.000000,0.000000,0.250000,0,0);}
.mc6_c01020{transform:matrix(0.320729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320729,0.000000,0.000000,0.250000,0,0);}
.m80_c01020{transform:matrix(0.321791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321791,0.000000,0.000000,0.250000,0,0);}
.m6b_c01020{transform:matrix(0.321865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321865,0.000000,0.000000,0.250000,0,0);}
.mbc_c01020{transform:matrix(0.323287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323287,0.000000,0.000000,0.250000,0,0);}
.m59_c01020{transform:matrix(0.323330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323330,0.000000,0.000000,0.250000,0,0);}
.mb_c01020{transform:matrix(0.323414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323414,0.000000,0.000000,0.250000,0,0);}
.m4f_c01020{transform:matrix(0.323894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323894,0.000000,0.000000,0.250000,0,0);}
.mab_c01020{transform:matrix(0.324242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324242,0.000000,0.000000,0.250000,0,0);}
.m52_c01020{transform:matrix(0.324775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324775,0.000000,0.000000,0.250000,0,0);}
.m5a_c01020{transform:matrix(0.324780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324780,0.000000,0.000000,0.250000,0,0);}
.m22_c01020{transform:matrix(0.326559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326559,0.000000,0.000000,0.250000,0,0);}
.m8b_c01020{transform:matrix(0.326765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326765,0.000000,0.000000,0.250000,0,0);}
.m43_c01020{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m5c_c01020{transform:matrix(0.329226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329226,0.000000,0.000000,0.250000,0,0);}
.mc4_c01020{transform:matrix(0.329320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329320,0.000000,0.000000,0.250000,0,0);}
.m8c_c01020{transform:matrix(0.330658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330658,0.000000,0.000000,0.250000,0,0);}
.m50_c01020{transform:matrix(0.331379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331379,0.000000,0.000000,0.250000,0,0);}
.m7c_c01020{transform:matrix(0.331631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331631,0.000000,0.000000,0.250000,0,0);}
.m49_c01020{transform:matrix(0.331699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331699,0.000000,0.000000,0.250000,0,0);}
.ma9_c01020{transform:matrix(0.332170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332170,0.000000,0.000000,0.250000,0,0);}
.m40_c01020{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m6e_c01020{transform:matrix(0.334787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334787,0.000000,0.000000,0.250000,0,0);}
.m9a_c01020{transform:matrix(0.335271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335271,0.000000,0.000000,0.250000,0,0);}
.m74_c01020{transform:matrix(0.336247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336247,0.000000,0.000000,0.250000,0,0);}
.m53_c01020{transform:matrix(0.336556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336556,0.000000,0.000000,0.250000,0,0);}
.m15_c01020{transform:matrix(0.337511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337511,0.000000,0.000000,0.250000,0,0);}
.m84_c01020{transform:matrix(0.337641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337641,0.000000,0.000000,0.250000,0,0);}
.m4d_c01020{transform:matrix(0.338349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338349,0.000000,0.000000,0.250000,0,0);}
.m5b_c01020{transform:matrix(0.338886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338886,0.000000,0.000000,0.250000,0,0);}
.ma0_c01020{transform:matrix(0.339030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339030,0.000000,0.000000,0.250000,0,0);}
.m3c_c01020{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m4b_c01020{transform:matrix(0.340015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340015,0.000000,0.000000,0.250000,0,0);}
.ma_c01020{transform:matrix(0.342694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342694,0.000000,0.000000,0.250000,0,0);}
.mb0_c01020{transform:matrix(0.342713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342713,0.000000,0.000000,0.250000,0,0);}
.m17_c01020{transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);}
.m7e_c01020{transform:matrix(0.344526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344526,0.000000,0.000000,0.250000,0,0);}
.m99_c01020{transform:matrix(0.345977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345977,0.000000,0.000000,0.250000,0,0);}
.m3a_c01020{transform:matrix(0.346926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346926,0.000000,0.000000,0.250000,0,0);}
.m9e_c01020{transform:matrix(0.352410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352410,0.000000,0.000000,0.250000,0,0);}
.m7_c01020{transform:matrix(0.353093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353093,0.000000,0.000000,0.250000,0,0);}
.m8f_c01020{transform:matrix(0.354260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354260,0.000000,0.000000,0.250000,0,0);}
.m2d_c01020{transform:matrix(0.356012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356012,0.000000,0.000000,0.250000,0,0);}
.m8a_c01020{transform:matrix(0.367117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367117,0.000000,0.000000,0.250000,0,0);}
.m4a_c01020{transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);}
.m4c_c01020{transform:matrix(0.383861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383861,0.000000,0.000000,0.250000,0,0);}
.m89_c01020{transform:matrix(0.400876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400876,0.000000,0.000000,0.250000,0,0);}
.m8d_c01020{transform:matrix(0.409814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409814,0.000000,0.000000,0.250000,0,0);}
.v0_c01020{vertical-align:0.000000px;}
.ls18_c01020{letter-spacing:-2.744280px;}
.ls16_c01020{letter-spacing:-2.446330px;}
.ls8_c01020{letter-spacing:-1.427026px;}
.lse_c01020{letter-spacing:-1.223165px;}
.ls10_c01020{letter-spacing:-0.964418px;}
.ls17_c01020{letter-spacing:-0.948737px;}
.ls4_c01020{letter-spacing:0.000000px;}
.ls1a_c01020{letter-spacing:1.819066px;}
.ls3_c01020{letter-spacing:2.427005px;}
.ls11_c01020{letter-spacing:2.579623px;}
.ls1_c01020{letter-spacing:3.293136px;}
.ls19_c01020{letter-spacing:3.316658px;}
.lsd_c01020{letter-spacing:3.425400px;}
.ls0_c01020{letter-spacing:3.457793px;}
.ls14_c01020{letter-spacing:3.473474px;}
.ls9_c01020{letter-spacing:3.524400px;}
.ls2_c01020{letter-spacing:3.559723px;}
.lsb_c01020{letter-spacing:3.722400px;}
.ls12_c01020{letter-spacing:3.763584px;}
.ls7_c01020{letter-spacing:3.920400px;}
.ls13_c01020{letter-spacing:3.940200px;}
.ls5_c01020{letter-spacing:4.131329px;}
.lsa_c01020{letter-spacing:4.187700px;}
.ls6_c01020{letter-spacing:31.363200px;}
.ls15_c01020{letter-spacing:51.321798px;}
.lsf_c01020{letter-spacing:58.449798px;}
.lsc_c01020{letter-spacing:61.300998px;}
.sc__c01020{text-shadow:none;}
.sc0_c01020{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01020{-webkit-text-stroke:0px transparent;}
.sc0_c01020{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01020{word-spacing:-23.059793px;}
.ws8_c01020{word-spacing:-22.895136px;}
.ws5_c01020{word-spacing:-22.181623px;}
.ws0_c01020{word-spacing:-19.602000px;}
.ws4_c01020{word-spacing:-18.637582px;}
.ws2_c01020{word-spacing:-18.378835px;}
.ws7_c01020{word-spacing:-1.019304px;}
.ws9_c01020{word-spacing:0.000000px;}
.ws6_c01020{word-spacing:3.763584px;}
.ws1_c01020{word-spacing:4.861296px;}
._6_c01020{margin-left:-11.682792px;}
._f_c01020{margin-left:-8.860104px;}
._9_c01020{margin-left:-7.606368px;}
._e_c01020{margin-left:-6.359760px;}
._5_c01020{margin-left:-1.489752px;}
._1_c01020{width:2.979108px;}
._c_c01020{width:6.672125px;}
._0_c01020{width:9.251748px;}
._2_c01020{width:10.820304px;}
._3_c01020{width:12.545280px;}
._4_c01020{width:13.642992px;}
._12_c01020{width:15.603192px;}
._d_c01020{width:16.702488px;}
._8_c01020{width:18.112248px;}
._14_c01020{width:19.976458px;}
._7_c01020{width:25.895232px;}
._13_c01020{width:35.629308px;}
._11_c01020{width:37.165788px;}
._10_c01020{width:40.223700px;}
._b_c01020{width:42.985652px;}
._a_c01020{width:45.662998px;}
.fc0_c01020{color:transparent;}
.fs1_c01020{font-size:22.176000px;}
.fs4_c01020{font-size:26.928000px;}
.fs5_c01020{font-size:31.363200px;}
.fs0_c01020{font-size:33.660000px;}
.fse_c01020{font-size:39.996198px;}
.fs11_c01020{font-size:43.758000px;}
.fs10_c01020{font-size:51.321798px;}
.fsd_c01020{font-size:58.449798px;}
.fsb_c01020{font-size:61.300998px;}
.fsc_c01020{font-size:68.508000px;}
.fs7_c01020{font-size:70.488000px;}
.fs3_c01020{font-size:72.864000px;}
.fsa_c01020{font-size:74.448000px;}
.fs9_c01020{font-size:74.844000px;}
.fs6_c01020{font-size:78.408000px;}
.fsf_c01020{font-size:78.804000px;}
.fs8_c01020{font-size:83.754000px;}
.fs2_c01020{font-size:87.714000px;}
.y0_c01020{bottom:0.000000px;}
.y20_c01020{bottom:23.077935px;}
.y1_c01020{bottom:76.500000px;}
.y3_c01020{bottom:108.608985px;}
.y1f_c01020{bottom:126.433935px;}
.y1e_c01020{bottom:158.509935px;}
.y1d_c01020{bottom:190.580985px;}
.y1c_c01020{bottom:222.305535px;}
.y1b_c01020{bottom:253.663785px;}
.y1a_c01020{bottom:316.395135px;}
.y19_c01020{bottom:347.758335px;}
.y18_c01020{bottom:379.829385px;}
.y17_c01020{bottom:411.905385px;}
.y16_c01020{bottom:443.629935px;}
.y15_c01020{bottom:475.349535px;}
.y14_c01020{bottom:507.064185px;}
.y13_c01020{bottom:538.788735px;}
.y12_c01020{bottom:570.508335px;}
.y11_c01020{bottom:602.222985px;}
.y10_c01020{bottom:633.586185px;}
.yf_c01020{bottom:664.954335px;}
.y2_c01020{bottom:688.115385px;}
.ye_c01020{bottom:696.673935px;}
.yd_c01020{bottom:760.113135px;}
.yc_c01020{bottom:791.827785px;}
.yb_c01020{bottom:823.190985px;}
.ya_c01020{bottom:854.910585px;}
.y9_c01020{bottom:886.986585px;}
.y8_c01020{bottom:918.349785px;}
.y7_c01020{bottom:936.526185px;}
.y6_c01020{bottom:946.861785px;}
.y5_c01020{bottom:959.697135px;}
.y4_c01020{bottom:1055.920185px;}
.h7_c01020{height:20.887891px;}
.h3_c01020{height:23.128875px;}
.h6_c01020{height:28.085063px;}
.h2_c01020{height:33.035449px;}
.h11_c01020{height:34.180317px;}
.hf_c01020{height:38.927565px;}
.hd_c01020{height:40.826465px;}
.h12_c01020{height:45.638227px;}
.he_c01020{height:67.236855px;}
.h9_c01020{height:69.180117px;}
.h5_c01020{height:71.512031px;}
.hc_c01020{height:73.066641px;}
.hb_c01020{height:73.455293px;}
.h8_c01020{height:76.953164px;}
.h10_c01020{height:77.341816px;}
.ha_c01020{height:82.199971px;}
.h4_c01020{height:86.086494px;}
.h1_c01020{height:1110.000000px;}
.h0_c01020{height:1263.000000px;}
.w1_c01020{width:763.500000px;}
.w0_c01020{width:892.500000px;}
.x0_c01020{left:0.000000px;}
.x2_c01020{left:48.204135px;}
.x3_c01020{left:52.886835px;}
.x1_c01020{left:64.500000px;}
.x1d_c01020{left:82.141335px;}
.x10_c01020{left:83.363985px;}
.x70_c01020{left:84.542085px;}
.x5d_c01020{left:116.098335px;}
.x2a_c01020{left:126.028035px;}
.x41_c01020{left:127.230885px;}
.x35_c01020{left:136.695285px;}
.x7_c01020{left:138.403035px;}
.x62_c01020{left:148.446585px;}
.x6d_c01020{left:149.713785px;}
.x11_c01020{left:160.400835px;}
.x4d_c01020{left:161.445285px;}
.x4a_c01020{left:171.746235px;}
.x8_c01020{left:172.825335px;}
.x6e_c01020{left:181.878885px;}
.x1e_c01020{left:183.215385px;}
.x24_c01020{left:184.527135px;}
.x36_c01020{left:194.545935px;}
.x12_c01020{left:204.332085px;}
.x2b_c01020{left:205.604235px;}
.x68_c01020{left:215.098335px;}
.x1f_c01020{left:216.716985px;}
.x37_c01020{left:227.715885px;}
.x9_c01020{left:239.036535px;}
.x69_c01020{left:244.832985px;}
.x4e_c01020{left:249.292935px;}
.x2c_c01020{left:260.316585px;}
.x63_c01020{left:270.726435px;}
.xa_c01020{left:271.830285px;}
.x6b_c01020{left:273.914235px;}
.x4f_c01020{left:283.685535px;}
.x57_c01020{left:295.110135px;}
.x20_c01020{left:304.549785px;}
.x32_c01020{left:306.133785px;}
.x50_c01020{left:317.177235px;}
.x71_c01020{left:318.216735px;}
.x38_c01020{left:328.176135px;}
.x3c_c01020{left:329.299785px;}
.x2d_c01020{left:338.922585px;}
.x64_c01020{left:348.743385px;}
.x13_c01020{left:350.010585px;}
.x51_c01020{left:351.064935px;}
.x54_c01020{left:360.826335px;}
.x39_c01020{left:362.281635px;}
.xb_c01020{left:372.107385px;}
.x58_c01020{left:382.240035px;}
.x6a_c01020{left:383.353785px;}
.x14_c01020{left:384.467535px;}
.x33_c01020{left:393.298335px;}
.x5e_c01020{left:395.263485px;}
.x5f_c01020{left:405.366435px;}
.x52_c01020{left:406.994985px;}
.x15_c01020{left:416.523735px;}
.xc_c01020{left:427.121685px;}
.x6f_c01020{left:437.477085px;}
.x2e_c01020{left:439.427385px;}
.x74_c01020{left:443.768535px;}
.x25_c01020{left:449.312535px;}
.x59_c01020{left:460.994535px;}
.x42_c01020{left:462.162735px;}
.x21_c01020{left:471.701385px;}
.x16_c01020{left:482.160735px;}
.x60_c01020{left:483.942735px;}
.x43_c01020{left:493.085385px;}
.x3d_c01020{left:494.308035px;}
.x22_c01020{left:503.406135px;}
.x66_c01020{left:505.004985px;}
.x5a_c01020{left:507.425535px;}
.x73_c01020{left:515.162385px;}
.x4b_c01020{left:516.741435px;}
.x2f_c01020{left:527.433435px;}
.xd_c01020{left:538.838235px;}
.x46_c01020{left:548.322435px;}
.x34_c01020{left:549.540135px;}
.x17_c01020{left:560.573685px;}
.x26_c01020{left:569.389635px;}
.xe_c01020{left:571.285485px;}
.x3e_c01020{left:573.027885px;}
.x44_c01020{left:582.328935px;}
.x4c_c01020{left:584.368335px;}
.x23_c01020{left:592.516035px;}
.x47_c01020{left:594.451485px;}
.x55_c01020{left:603.564435px;}
.x27_c01020{left:605.183085px;}
.x72_c01020{left:613.939635px;}
.x6c_c01020{left:615.028635px;}
.x61_c01020{left:616.513635px;}
.x65_c01020{left:625.344435px;}
.x18_c01020{left:626.918535px;}
.x45_c01020{left:636.368085px;}
.x3a_c01020{left:637.907535px;}
.x48_c01020{left:639.031185px;}
.x53_c01020{left:640.560735px;}
.x19_c01020{left:648.084735px;}
.x56_c01020{left:649.252935px;}
.x4_c01020{left:659.301435px;}
.x30_c01020{left:670.052835px;}
.x3f_c01020{left:671.329935px;}
.x1a_c01020{left:680.556735px;}
.xf_c01020{left:691.758585px;}
.x3b_c01020{left:697.282785px;}
.x5_c01020{left:700.965585px;}
.x6_c01020{left:702.856485px;}
.x28_c01020{left:703.900935px;}
.x1b_c01020{left:714.375135px;}
.x31_c01020{left:715.548285px;}
.x29_c01020{left:725.096835px;}
.x40_c01020{left:726.166035px;}
.x5b_c01020{left:727.957935px;}
.x1c_c01020{left:737.407485px;}
.x67_c01020{left:747.208485px;}
.x5c_c01020{left:760.276485px;}
.x49_c01020{left:763.929585px;}
@media print{
.v0_c01020{vertical-align:0.000000pt;}
.ls18_c01020{letter-spacing:-2.439360pt;}
.ls16_c01020{letter-spacing:-2.174515pt;}
.ls8_c01020{letter-spacing:-1.268467pt;}
.lse_c01020{letter-spacing:-1.087258pt;}
.ls10_c01020{letter-spacing:-0.857261pt;}
.ls17_c01020{letter-spacing:-0.843322pt;}
.ls4_c01020{letter-spacing:0.000000pt;}
.ls1a_c01020{letter-spacing:1.616947pt;}
.ls3_c01020{letter-spacing:2.157338pt;}
.ls11_c01020{letter-spacing:2.292998pt;}
.ls1_c01020{letter-spacing:2.927232pt;}
.ls19_c01020{letter-spacing:2.948141pt;}
.lsd_c01020{letter-spacing:3.044800pt;}
.ls0_c01020{letter-spacing:3.073594pt;}
.ls14_c01020{letter-spacing:3.087533pt;}
.ls9_c01020{letter-spacing:3.132800pt;}
.ls2_c01020{letter-spacing:3.164198pt;}
.lsb_c01020{letter-spacing:3.308800pt;}
.ls12_c01020{letter-spacing:3.345408pt;}
.ls7_c01020{letter-spacing:3.484800pt;}
.ls13_c01020{letter-spacing:3.502400pt;}
.ls5_c01020{letter-spacing:3.672293pt;}
.lsa_c01020{letter-spacing:3.722400pt;}
.ls6_c01020{letter-spacing:27.878400pt;}
.ls15_c01020{letter-spacing:45.619376pt;}
.lsf_c01020{letter-spacing:51.955376pt;}
.lsc_c01020{letter-spacing:54.489776pt;}
.ws3_c01020{word-spacing:-20.497594pt;}
.ws8_c01020{word-spacing:-20.351232pt;}
.ws5_c01020{word-spacing:-19.716998pt;}
.ws0_c01020{word-spacing:-17.424000pt;}
.ws4_c01020{word-spacing:-16.566739pt;}
.ws2_c01020{word-spacing:-16.336742pt;}
.ws7_c01020{word-spacing:-0.906048pt;}
.ws9_c01020{word-spacing:0.000000pt;}
.ws6_c01020{word-spacing:3.345408pt;}
.ws1_c01020{word-spacing:4.321152pt;}
._6_c01020{margin-left:-10.384704pt;}
._f_c01020{margin-left:-7.875648pt;}
._9_c01020{margin-left:-6.761216pt;}
._e_c01020{margin-left:-5.653120pt;}
._5_c01020{margin-left:-1.324224pt;}
._1_c01020{width:2.648096pt;}
._c_c01020{width:5.930778pt;}
._0_c01020{width:8.223776pt;}
._2_c01020{width:9.618048pt;}
._3_c01020{width:11.151360pt;}
._4_c01020{width:12.127104pt;}
._12_c01020{width:13.869504pt;}
._d_c01020{width:14.846656pt;}
._8_c01020{width:16.099776pt;}
._14_c01020{width:17.756851pt;}
._7_c01020{width:23.017984pt;}
._13_c01020{width:31.670496pt;}
._11_c01020{width:33.036256pt;}
._10_c01020{width:35.754400pt;}
._b_c01020{width:38.209468pt;}
._a_c01020{width:40.589331pt;}
.fs1_c01020{font-size:19.712000pt;}
.fs4_c01020{font-size:23.936000pt;}
.fs5_c01020{font-size:27.878400pt;}
.fs0_c01020{font-size:29.920000pt;}
.fse_c01020{font-size:35.552176pt;}
.fs11_c01020{font-size:38.896000pt;}
.fs10_c01020{font-size:45.619376pt;}
.fsd_c01020{font-size:51.955376pt;}
.fsb_c01020{font-size:54.489776pt;}
.fsc_c01020{font-size:60.896000pt;}
.fs7_c01020{font-size:62.656000pt;}
.fs3_c01020{font-size:64.768000pt;}
.fsa_c01020{font-size:66.176000pt;}
.fs9_c01020{font-size:66.528000pt;}
.fs6_c01020{font-size:69.696000pt;}
.fsf_c01020{font-size:70.048000pt;}
.fs8_c01020{font-size:74.448000pt;}
.fs2_c01020{font-size:77.968000pt;}
.y0_c01020{bottom:0.000000pt;}
.y20_c01020{bottom:20.513720pt;}
.y1_c01020{bottom:68.000000pt;}
.y3_c01020{bottom:96.541320pt;}
.y1f_c01020{bottom:112.385720pt;}
.y1e_c01020{bottom:140.897720pt;}
.y1d_c01020{bottom:169.405320pt;}
.y1c_c01020{bottom:197.604920pt;}
.y1b_c01020{bottom:225.478920pt;}
.y1a_c01020{bottom:281.240120pt;}
.y19_c01020{bottom:309.118520pt;}
.y18_c01020{bottom:337.626120pt;}
.y17_c01020{bottom:366.138120pt;}
.y16_c01020{bottom:394.337720pt;}
.y15_c01020{bottom:422.532920pt;}
.y14_c01020{bottom:450.723720pt;}
.y13_c01020{bottom:478.923320pt;}
.y12_c01020{bottom:507.118520pt;}
.y11_c01020{bottom:535.309320pt;}
.y10_c01020{bottom:563.187720pt;}
.yf_c01020{bottom:591.070520pt;}
.y2_c01020{bottom:611.658120pt;}
.ye_c01020{bottom:619.265720pt;}
.yd_c01020{bottom:675.656120pt;}
.yc_c01020{bottom:703.846920pt;}
.yb_c01020{bottom:731.725320pt;}
.ya_c01020{bottom:759.920520pt;}
.y9_c01020{bottom:788.432520pt;}
.y8_c01020{bottom:816.310920pt;}
.y7_c01020{bottom:832.467720pt;}
.y6_c01020{bottom:841.654920pt;}
.y5_c01020{bottom:853.064120pt;}
.y4_c01020{bottom:938.595720pt;}
.h7_c01020{height:18.567014pt;}
.h3_c01020{height:20.559000pt;}
.h6_c01020{height:24.964500pt;}
.h2_c01020{height:29.364844pt;}
.h11_c01020{height:30.382504pt;}
.hf_c01020{height:34.602280pt;}
.hd_c01020{height:36.290191pt;}
.h12_c01020{height:40.567313pt;}
.he_c01020{height:59.766094pt;}
.h9_c01020{height:61.493438pt;}
.h5_c01020{height:63.566250pt;}
.hc_c01020{height:64.948125pt;}
.hb_c01020{height:65.293594pt;}
.h8_c01020{height:68.402813pt;}
.h10_c01020{height:68.748281pt;}
.ha_c01020{height:73.066641pt;}
.h4_c01020{height:76.521328pt;}
.h1_c01020{height:986.666667pt;}
.h0_c01020{height:1122.666667pt;}
.w1_c01020{width:678.666667pt;}
.w0_c01020{width:793.333333pt;}
.x0_c01020{left:0.000000pt;}
.x2_c01020{left:42.848120pt;}
.x3_c01020{left:47.010520pt;}
.x1_c01020{left:57.333333pt;}
.x1d_c01020{left:73.014520pt;}
.x10_c01020{left:74.101320pt;}
.x70_c01020{left:75.148520pt;}
.x5d_c01020{left:103.198520pt;}
.x2a_c01020{left:112.024920pt;}
.x41_c01020{left:113.094120pt;}
.x35_c01020{left:121.506920pt;}
.x7_c01020{left:123.024920pt;}
.x62_c01020{left:131.952520pt;}
.x6d_c01020{left:133.078920pt;}
.x11_c01020{left:142.578520pt;}
.x4d_c01020{left:143.506920pt;}
.x4a_c01020{left:152.663320pt;}
.x8_c01020{left:153.622520pt;}
.x6e_c01020{left:161.670120pt;}
.x1e_c01020{left:162.858120pt;}
.x24_c01020{left:164.024120pt;}
.x36_c01020{left:172.929720pt;}
.x12_c01020{left:181.628520pt;}
.x2b_c01020{left:182.759320pt;}
.x68_c01020{left:191.198520pt;}
.x1f_c01020{left:192.637320pt;}
.x37_c01020{left:202.414120pt;}
.x9_c01020{left:212.476920pt;}
.x69_c01020{left:217.629320pt;}
.x4e_c01020{left:221.593720pt;}
.x2c_c01020{left:231.392520pt;}
.x63_c01020{left:240.645720pt;}
.xa_c01020{left:241.626920pt;}
.x6b_c01020{left:243.479320pt;}
.x4f_c01020{left:252.164920pt;}
.x57_c01020{left:262.320120pt;}
.x20_c01020{left:270.710920pt;}
.x32_c01020{left:272.118920pt;}
.x50_c01020{left:281.935320pt;}
.x71_c01020{left:282.859320pt;}
.x38_c01020{left:291.712120pt;}
.x3c_c01020{left:292.710920pt;}
.x2d_c01020{left:301.264520pt;}
.x64_c01020{left:309.994120pt;}
.x13_c01020{left:311.120520pt;}
.x51_c01020{left:312.057720pt;}
.x54_c01020{left:320.734520pt;}
.x39_c01020{left:322.028120pt;}
.xb_c01020{left:330.762120pt;}
.x58_c01020{left:339.768920pt;}
.x6a_c01020{left:340.758920pt;}
.x14_c01020{left:341.748920pt;}
.x33_c01020{left:349.598520pt;}
.x5e_c01020{left:351.345320pt;}
.x5f_c01020{left:360.325720pt;}
.x52_c01020{left:361.773320pt;}
.x15_c01020{left:370.243320pt;}
.xc_c01020{left:379.663720pt;}
.x6f_c01020{left:388.868520pt;}
.x2e_c01020{left:390.602120pt;}
.x74_c01020{left:394.460920pt;}
.x25_c01020{left:399.388920pt;}
.x59_c01020{left:409.772920pt;}
.x42_c01020{left:410.811320pt;}
.x21_c01020{left:419.290120pt;}
.x16_c01020{left:428.587320pt;}
.x60_c01020{left:430.171320pt;}
.x43_c01020{left:438.298120pt;}
.x3d_c01020{left:439.384920pt;}
.x22_c01020{left:447.472120pt;}
.x66_c01020{left:448.893320pt;}
.x5a_c01020{left:451.044920pt;}
.x73_c01020{left:457.922120pt;}
.x4b_c01020{left:459.325720pt;}
.x2f_c01020{left:468.829720pt;}
.xd_c01020{left:478.967320pt;}
.x46_c01020{left:487.397720pt;}
.x34_c01020{left:488.480120pt;}
.x17_c01020{left:498.287720pt;}
.x26_c01020{left:506.124120pt;}
.xe_c01020{left:507.809320pt;}
.x3e_c01020{left:509.358120pt;}
.x44_c01020{left:517.625720pt;}
.x4c_c01020{left:519.438520pt;}
.x23_c01020{left:526.680920pt;}
.x47_c01020{left:528.401320pt;}
.x55_c01020{left:536.501720pt;}
.x27_c01020{left:537.940520pt;}
.x72_c01020{left:545.724120pt;}
.x6c_c01020{left:546.692120pt;}
.x61_c01020{left:548.012120pt;}
.x65_c01020{left:555.861720pt;}
.x18_c01020{left:557.260920pt;}
.x45_c01020{left:565.660520pt;}
.x3a_c01020{left:567.028920pt;}
.x48_c01020{left:568.027720pt;}
.x53_c01020{left:569.387320pt;}
.x19_c01020{left:576.075320pt;}
.x56_c01020{left:577.113720pt;}
.x4_c01020{left:586.045720pt;}
.x30_c01020{left:595.602520pt;}
.x3f_c01020{left:596.737720pt;}
.x1a_c01020{left:604.939320pt;}
.xf_c01020{left:614.896520pt;}
.x3b_c01020{left:619.806920pt;}
.x5_c01020{left:623.080520pt;}
.x6_c01020{left:624.761320pt;}
.x28_c01020{left:625.689720pt;}
.x1b_c01020{left:635.000120pt;}
.x31_c01020{left:636.042920pt;}
.x29_c01020{left:644.530520pt;}
.x40_c01020{left:645.480920pt;}
.x5b_c01020{left:647.073720pt;}
.x1c_c01020{left:655.473320pt;}
.x67_c01020{left:664.185320pt;}
.x5c_c01020{left:675.801320pt;}
.x49_c01020{left:679.048520pt;}
}





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

.ir_c01021:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01021{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01021;src:url('chunks/assets/font_f09c6f77a48f9d5731a23ac8.woff2')format("woff");}.ff1_c01021{font-family:ff1_c01021;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01021;src:url('chunks/assets/font_6e76073e44d742d259750007.woff2')format("woff");}.ff2_c01021{font-family:ff2_c01021;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01021;src:url('chunks/assets/font_fd02e1173cd3d00a3c49c7fd.woff2')format("woff");}.ff3_c01021{font-family:ff3_c01021;line-height:0.666000;font-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_c01021{transform:matrix(0.187282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187282,0.000000,0.000000,0.250000,0,0);}
.m37_c01021{transform:matrix(0.187499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187499,0.000000,0.000000,0.250000,0,0);}
.m49_c01021{transform:matrix(0.203049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203049,0.000000,0.000000,0.250000,0,0);}
.m42_c01021{transform:matrix(0.213031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213031,0.000000,0.000000,0.250000,0,0);}
.ma0_c01021{transform:matrix(0.220087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220087,0.000000,0.000000,0.250000,0,0);}
.mad_c01021{transform:matrix(0.228162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228162,0.000000,0.000000,0.250000,0,0);}
.m5b_c01021{transform:matrix(0.234741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234741,0.000000,0.000000,0.250000,0,0);}
.m82_c01021{transform:matrix(0.236017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236017,0.000000,0.000000,0.250000,0,0);}
.m0_c01021{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01021{transform:matrix(0.250902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250902,0.000000,0.000000,0.250000,0,0);}
.m78_c01021{transform:matrix(0.251215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251215,0.000000,0.000000,0.250000,0,0);}
.m34_c01021{transform:matrix(0.252155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252155,0.000000,0.000000,0.250000,0,0);}
.m56_c01021{transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);}
.m41_c01021{transform:matrix(0.256952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256952,0.000000,0.000000,0.250000,0,0);}
.m6c_c01021{transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);}
.m47_c01021{transform:matrix(0.258244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258244,0.000000,0.000000,0.250000,0,0);}
.m3_c01021{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m11_c01021{transform:matrix(0.259336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259336,0.000000,0.000000,0.250000,0,0);}
.m8e_c01021{transform:matrix(0.259580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259580,0.000000,0.000000,0.250000,0,0);}
.m4b_c01021{transform:matrix(0.259665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259665,0.000000,0.000000,0.250000,0,0);}
.m8d_c01021{transform:matrix(0.260559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260559,0.000000,0.000000,0.250000,0,0);}
.m5_c01021{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.mb3_c01021{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.m5f_c01021{transform:matrix(0.262931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262931,0.000000,0.000000,0.250000,0,0);}
.m1c_c01021{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m6d_c01021{transform:matrix(0.264056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264056,0.000000,0.000000,0.250000,0,0);}
.m87_c01021{transform:matrix(0.264610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264610,0.000000,0.000000,0.250000,0,0);}
.m4f_c01021{transform:matrix(0.264902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264902,0.000000,0.000000,0.250000,0,0);}
.m3f_c01021{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m61_c01021{transform:matrix(0.266295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266295,0.000000,0.000000,0.250000,0,0);}
.m33_c01021{transform:matrix(0.267499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267499,0.000000,0.000000,0.250000,0,0);}
.m17_c01021{transform:matrix(0.267741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267741,0.000000,0.000000,0.250000,0,0);}
.m7e_c01021{transform:matrix(0.268552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268552,0.000000,0.000000,0.250000,0,0);}
.m36_c01021{transform:matrix(0.269513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269513,0.000000,0.000000,0.250000,0,0);}
.m80_c01021{transform:matrix(0.269857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269857,0.000000,0.000000,0.250000,0,0);}
.m97_c01021{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.ma_c01021{transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);}
.m67_c01021{transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);}
.mf_c01021{transform:matrix(0.273845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273845,0.000000,0.000000,0.250000,0,0);}
.m75_c01021{transform:matrix(0.274374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274374,0.000000,0.000000,0.250000,0,0);}
.ma1_c01021{transform:matrix(0.275040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275040,0.000000,0.000000,0.250000,0,0);}
.m21_c01021{transform:matrix(0.275114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275114,0.000000,0.000000,0.250000,0,0);}
.m58_c01021{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m3a_c01021{transform:matrix(0.277767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277767,0.000000,0.000000,0.250000,0,0);}
.m62_c01021{transform:matrix(0.278019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278019,0.000000,0.000000,0.250000,0,0);}
.m39_c01021{transform:matrix(0.278360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278360,0.000000,0.000000,0.250000,0,0);}
.m74_c01021{transform:matrix(0.278451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278451,0.000000,0.000000,0.250000,0,0);}
.m7f_c01021{transform:matrix(0.279572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279572,0.000000,0.000000,0.250000,0,0);}
.m25_c01021{transform:matrix(0.279693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279693,0.000000,0.000000,0.250000,0,0);}
.m5a_c01021{transform:matrix(0.279864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279864,0.000000,0.000000,0.250000,0,0);}
.m65_c01021{transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);}
.m8b_c01021{transform:matrix(0.280631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280631,0.000000,0.000000,0.250000,0,0);}
.m6b_c01021{transform:matrix(0.282165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282165,0.000000,0.000000,0.250000,0,0);}
.m68_c01021{transform:matrix(0.283078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283078,0.000000,0.000000,0.250000,0,0);}
.m71_c01021{transform:matrix(0.283554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283554,0.000000,0.000000,0.250000,0,0);}
.m4a_c01021{transform:matrix(0.283845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283845,0.000000,0.000000,0.250000,0,0);}
.m3b_c01021{transform:matrix(0.284092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284092,0.000000,0.000000,0.250000,0,0);}
.m2f_c01021{transform:matrix(0.284197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284197,0.000000,0.000000,0.250000,0,0);}
.m92_c01021{transform:matrix(0.284599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284599,0.000000,0.000000,0.250000,0,0);}
.m9_c01021{transform:matrix(0.284681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284681,0.000000,0.000000,0.250000,0,0);}
.m20_c01021{transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);}
.m79_c01021{transform:matrix(0.285844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285844,0.000000,0.000000,0.250000,0,0);}
.m85_c01021{transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);}
.m1b_c01021{transform:matrix(0.286439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286439,0.000000,0.000000,0.250000,0,0);}
.m69_c01021{transform:matrix(0.286457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286457,0.000000,0.000000,0.250000,0,0);}
.m22_c01021{transform:matrix(0.286496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286496,0.000000,0.000000,0.250000,0,0);}
.m84_c01021{transform:matrix(0.286844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286844,0.000000,0.000000,0.250000,0,0);}
.m86_c01021{transform:matrix(0.287592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287592,0.000000,0.000000,0.250000,0,0);}
.m6_c01021{transform:matrix(0.287658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287658,0.000000,0.000000,0.250000,0,0);}
.m29_c01021{transform:matrix(0.288208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288208,0.000000,0.000000,0.250000,0,0);}
.m9a_c01021{transform:matrix(0.288607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288607,0.000000,0.000000,0.250000,0,0);}
.mb2_c01021{transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);}
.m2e_c01021{transform:matrix(0.290336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290336,0.000000,0.000000,0.250000,0,0);}
.mb1_c01021{transform:matrix(0.290364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290364,0.000000,0.000000,0.250000,0,0);}
.m7d_c01021{transform:matrix(0.290759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290759,0.000000,0.000000,0.250000,0,0);}
.mb_c01021{transform:matrix(0.291277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291277,0.000000,0.000000,0.250000,0,0);}
.m27_c01021{transform:matrix(0.291574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291574,0.000000,0.000000,0.250000,0,0);}
.m64_c01021{transform:matrix(0.291634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291634,0.000000,0.000000,0.250000,0,0);}
.m51_c01021{transform:matrix(0.291905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291905,0.000000,0.000000,0.250000,0,0);}
.maa_c01021{transform:matrix(0.292069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292069,0.000000,0.000000,0.250000,0,0);}
.ma3_c01021{transform:matrix(0.292807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292807,0.000000,0.000000,0.250000,0,0);}
.mac_c01021{transform:matrix(0.294132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294132,0.000000,0.000000,0.250000,0,0);}
.m13_c01021{transform:matrix(0.295015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295015,0.000000,0.000000,0.250000,0,0);}
.m26_c01021{transform:matrix(0.295150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295150,0.000000,0.000000,0.250000,0,0);}
.m4e_c01021{transform:matrix(0.295503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295503,0.000000,0.000000,0.250000,0,0);}
.m9d_c01021{transform:matrix(0.295937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295937,0.000000,0.000000,0.250000,0,0);}
.m24_c01021{transform:matrix(0.296420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296420,0.000000,0.000000,0.250000,0,0);}
.m8f_c01021{transform:matrix(0.296777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296777,0.000000,0.000000,0.250000,0,0);}
.m4d_c01021{transform:matrix(0.296935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296935,0.000000,0.000000,0.250000,0,0);}
.m96_c01021{transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);}
.m81_c01021{transform:matrix(0.297140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297140,0.000000,0.000000,0.250000,0,0);}
.m2d_c01021{transform:matrix(0.298080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298080,0.000000,0.000000,0.250000,0,0);}
.m1_c01021{transform:matrix(0.298149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298149,0.000000,0.000000,0.250000,0,0);}
.m6f_c01021{transform:matrix(0.298314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298314,0.000000,0.000000,0.250000,0,0);}
.m40_c01021{transform:matrix(0.299566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299566,0.000000,0.000000,0.250000,0,0);}
.m19_c01021{transform:matrix(0.299719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299719,0.000000,0.000000,0.250000,0,0);}
.m55_c01021{transform:matrix(0.300160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300160,0.000000,0.000000,0.250000,0,0);}
.m7c_c01021{transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);}
.m50_c01021{transform:matrix(0.300996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300996,0.000000,0.000000,0.250000,0,0);}
.m52_c01021{transform:matrix(0.301016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301016,0.000000,0.000000,0.250000,0,0);}
.mae_c01021{transform:matrix(0.302256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302256,0.000000,0.000000,0.250000,0,0);}
.m23_c01021{transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);}
.m38_c01021{transform:matrix(0.302957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302957,0.000000,0.000000,0.250000,0,0);}
.md_c01021{transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);}
.m89_c01021{transform:matrix(0.303527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303527,0.000000,0.000000,0.250000,0,0);}
.m9f_c01021{transform:matrix(0.303622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303622,0.000000,0.000000,0.250000,0,0);}
.m93_c01021{transform:matrix(0.303628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303628,0.000000,0.000000,0.250000,0,0);}
.ma7_c01021{transform:matrix(0.303928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303928,0.000000,0.000000,0.250000,0,0);}
.m1d_c01021{transform:matrix(0.304146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304146,0.000000,0.000000,0.250000,0,0);}
.mb0_c01021{transform:matrix(0.304215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304215,0.000000,0.000000,0.250000,0,0);}
.m2a_c01021{transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);}
.m9c_c01021{transform:matrix(0.305475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305475,0.000000,0.000000,0.250000,0,0);}
.m45_c01021{transform:matrix(0.306720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306720,0.000000,0.000000,0.250000,0,0);}
.m15_c01021{transform:matrix(0.306770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306770,0.000000,0.000000,0.250000,0,0);}
.m16_c01021{transform:matrix(0.306784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306784,0.000000,0.000000,0.250000,0,0);}
.m88_c01021{transform:matrix(0.306845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306845,0.000000,0.000000,0.250000,0,0);}
.m53_c01021{transform:matrix(0.307223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307223,0.000000,0.000000,0.250000,0,0);}
.m43_c01021{transform:matrix(0.307539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307539,0.000000,0.000000,0.250000,0,0);}
.maf_c01021{transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);}
.m48_c01021{transform:matrix(0.309970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309970,0.000000,0.000000,0.250000,0,0);}
.mc_c01021{transform:matrix(0.310783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310783,0.000000,0.000000,0.250000,0,0);}
.m10_c01021{transform:matrix(0.310875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310875,0.000000,0.000000,0.250000,0,0);}
.m9e_c01021{transform:matrix(0.311151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311151,0.000000,0.000000,0.250000,0,0);}
.m5e_c01021{transform:matrix(0.311181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311181,0.000000,0.000000,0.250000,0,0);}
.m99_c01021{transform:matrix(0.311501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311501,0.000000,0.000000,0.250000,0,0);}
.m8c_c01021{transform:matrix(0.311653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311653,0.000000,0.000000,0.250000,0,0);}
.m1e_c01021{transform:matrix(0.312391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312391,0.000000,0.000000,0.250000,0,0);}
.mab_c01021{transform:matrix(0.312462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312462,0.000000,0.000000,0.250000,0,0);}
.m3e_c01021{transform:matrix(0.312744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312744,0.000000,0.000000,0.250000,0,0);}
.m12_c01021{transform:matrix(0.313540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313540,0.000000,0.000000,0.250000,0,0);}
.m6e_c01021{transform:matrix(0.313832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313832,0.000000,0.000000,0.250000,0,0);}
.m63_c01021{transform:matrix(0.313924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313924,0.000000,0.000000,0.250000,0,0);}
.m72_c01021{transform:matrix(0.314298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314298,0.000000,0.000000,0.250000,0,0);}
.m28_c01021{transform:matrix(0.314313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314313,0.000000,0.000000,0.250000,0,0);}
.ma6_c01021{transform:matrix(0.315059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315059,0.000000,0.000000,0.250000,0,0);}
.m30_c01021{transform:matrix(0.315134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315134,0.000000,0.000000,0.250000,0,0);}
.m1f_c01021{transform:matrix(0.315427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315427,0.000000,0.000000,0.250000,0,0);}
.m8_c01021{transform:matrix(0.315439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315439,0.000000,0.000000,0.250000,0,0);}
.m90_c01021{transform:matrix(0.315640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315640,0.000000,0.000000,0.250000,0,0);}
.m95_c01021{transform:matrix(0.315718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315718,0.000000,0.000000,0.250000,0,0);}
.m2b_c01021{transform:matrix(0.317912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317912,0.000000,0.000000,0.250000,0,0);}
.m6a_c01021{transform:matrix(0.318775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318775,0.000000,0.000000,0.250000,0,0);}
.m35_c01021{transform:matrix(0.320808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320808,0.000000,0.000000,0.250000,0,0);}
.m70_c01021{transform:matrix(0.321512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321512,0.000000,0.000000,0.250000,0,0);}
.m32_c01021{transform:matrix(0.321636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321636,0.000000,0.000000,0.250000,0,0);}
.m3d_c01021{transform:matrix(0.321674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321674,0.000000,0.000000,0.250000,0,0);}
.me_c01021{transform:matrix(0.322516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322516,0.000000,0.000000,0.250000,0,0);}
.m7b_c01021{transform:matrix(0.323378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323378,0.000000,0.000000,0.250000,0,0);}
.m4_c01021{transform:matrix(0.323442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323442,0.000000,0.000000,0.250000,0,0);}
.m44_c01021{transform:matrix(0.324775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324775,0.000000,0.000000,0.250000,0,0);}
.m57_c01021{transform:matrix(0.325085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325085,0.000000,0.000000,0.250000,0,0);}
.ma5_c01021{transform:matrix(0.326045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326045,0.000000,0.000000,0.250000,0,0);}
.m66_c01021{transform:matrix(0.326944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326944,0.000000,0.000000,0.250000,0,0);}
.m60_c01021{transform:matrix(0.326967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326967,0.000000,0.000000,0.250000,0,0);}
.m76_c01021{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m14_c01021{transform:matrix(0.328705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328705,0.000000,0.000000,0.250000,0,0);}
.m5c_c01021{transform:matrix(0.328711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328711,0.000000,0.000000,0.250000,0,0);}
.m7a_c01021{transform:matrix(0.329124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329124,0.000000,0.000000,0.250000,0,0);}
.m2_c01021{transform:matrix(0.329646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329646,0.000000,0.000000,0.250000,0,0);}
.m73_c01021{transform:matrix(0.331264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331264,0.000000,0.000000,0.250000,0,0);}
.m46_c01021{transform:matrix(0.331297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331297,0.000000,0.000000,0.250000,0,0);}
.ma9_c01021{transform:matrix(0.331833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331833,0.000000,0.000000,0.250000,0,0);}
.m3c_c01021{transform:matrix(0.332278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332278,0.000000,0.000000,0.250000,0,0);}
.m98_c01021{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m94_c01021{transform:matrix(0.334345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334345,0.000000,0.000000,0.250000,0,0);}
.m59_c01021{transform:matrix(0.336540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336540,0.000000,0.000000,0.250000,0,0);}
.m7_c01021{transform:matrix(0.338886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338886,0.000000,0.000000,0.250000,0,0);}
.m8a_c01021{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m54_c01021{transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341383,0.000000,0.000000,0.250000,0,0);}
.ma4_c01021{transform:matrix(0.342694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342694,0.000000,0.000000,0.250000,0,0);}
.m83_c01021{transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);}
.ma2_c01021{transform:matrix(0.345636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345636,0.000000,0.000000,0.250000,0,0);}
.m5d_c01021{transform:matrix(0.346501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346501,0.000000,0.000000,0.250000,0,0);}
.m77_c01021{transform:matrix(0.349656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349656,0.000000,0.000000,0.250000,0,0);}
.ma8_c01021{transform:matrix(0.350956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350956,0.000000,0.000000,0.250000,0,0);}
.mb4_c01021{transform:matrix(0.351038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351038,0.000000,0.000000,0.250000,0,0);}
.m9b_c01021{transform:matrix(0.353147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353147,0.000000,0.000000,0.250000,0,0);}
.m18_c01021{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);}
.m1a_c01021{transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);}
.m31_c01021{transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);}
.m4c_c01021{transform:matrix(0.385437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385437,0.000000,0.000000,0.250000,0,0);}
.v1_c01021{vertical-align:-37.045800px;}
.v0_c01021{vertical-align:0.000000px;}
.ls12_c01021{letter-spacing:-3.201667px;}
.ls11_c01021{letter-spacing:-3.035340px;}
.ls9_c01021{letter-spacing:-2.744280px;}
.ls14_c01021{letter-spacing:-1.905314px;}
.ls5_c01021{letter-spacing:-1.427026px;}
.ls15_c01021{letter-spacing:-0.948737px;}
.lsd_c01021{letter-spacing:-0.266587px;}
.ls2_c01021{letter-spacing:0.000000px;}
.lse_c01021{letter-spacing:0.297950px;}
.lsf_c01021{letter-spacing:0.819423px;}
.ls13_c01021{letter-spacing:1.011463px;}
.lsc_c01021{letter-spacing:1.497593px;}
.ls6_c01021{letter-spacing:1.513274px;}
.ls10_c01021{letter-spacing:2.226787px;}
.ls3_c01021{letter-spacing:2.942874px;}
.ls4_c01021{letter-spacing:3.920400px;}
.ls7_c01021{letter-spacing:4.148110px;}
.lsa_c01021{letter-spacing:4.405500px;}
.ls1_c01021{letter-spacing:27.443196px;}
.lsb_c01021{letter-spacing:58.449798px;}
.ls8_c01021{letter-spacing:59.875398px;}
.ls0_c01021{letter-spacing:262.525758px;}
.sc__c01021{text-shadow:none;}
.sc0_c01021{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01021{-webkit-text-stroke:0px transparent;}
.sc0_c01021{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01021{word-spacing:0.000000px;}
._0_c01021{width:12.466476px;}
._2_c01021{width:28.187676px;}
._1_c01021{width:37.495260px;}
.fc0_c01021{color:transparent;}
.fs1_c01021{font-size:22.176000px;}
.fsb_c01021{font-size:25.344000px;}
.fs0_c01021{font-size:27.720000px;}
.fsc_c01021{font-size:33.264000px;}
.fs8_c01021{font-size:49.896198px;}
.fs7_c01021{font-size:58.449798px;}
.fs6_c01021{font-size:59.875398px;}
.fs4_c01021{font-size:66.330000px;}
.fs3_c01021{font-size:78.408000px;}
.fse_c01021{font-size:79.398000px;}
.fs5_c01021{font-size:82.962198px;}
.fs9_c01021{font-size:86.724000px;}
.fs2_c01021{font-size:88.110000px;}
.fsd_c01021{font-size:91.476198px;}
.fsa_c01021{font-size:91.872198px;}
.y0_c01021{bottom:0.000000px;}
.y21_c01021{bottom:22.365135px;}
.y20_c01021{bottom:41.249385px;}
.y1_c01021{bottom:76.500000px;}
.y1f_c01021{bottom:124.295535px;}
.y1e_c01021{bottom:157.084335px;}
.y1d_c01021{bottom:189.511785px;}
.y1c_c01021{bottom:237.274335px;}
.y1b_c01021{bottom:252.955935px;}
.y1a_c01021{bottom:285.031935px;}
.y19_c01021{bottom:309.267135px;}
.y18_c01021{bottom:316.751535px;}
.y17_c01021{bottom:340.268985px;}
.y16_c01021{bottom:348.466185px;}
.y15_c01021{bottom:379.834335px;}
.y14_c01021{bottom:411.548985px;}
.y13_c01021{bottom:442.917135px;}
.y12_c01021{bottom:474.280335px;}
.y11_c01021{bottom:506.351385px;}
.y10_c01021{bottom:569.790585px;}
.ye_c01021{bottom:601.515135px;}
.yf_c01021{bottom:603.648585px;}
.yd_c01021{bottom:633.234735px;}
.yc_c01021{bottom:664.597935px;}
.yb_c01021{bottom:696.673935px;}
.ya_c01021{bottom:728.388585px;}
.y9_c01021{bottom:760.469535px;}
.y8_c01021{bottom:822.839535px;}
.y7_c01021{bottom:855.266985px;}
.y6_c01021{bottom:886.635135px;}
.y5_c01021{bottom:918.706185px;}
.y4_c01021{bottom:1055.207385px;}
.y2_c01021{bottom:1077.660585px;}
.y3_c01021{bottom:1091.916585px;}
.h3_c01021{height:23.128875px;}
.h2_c01021{height:28.911094px;}
.hd_c01021{height:34.693313px;}
.h9_c01021{height:38.927565px;}
.h8_c01021{height:39.877015px;}
.ha_c01021{height:52.040175px;}
.h6_c01021{height:69.180117px;}
.h5_c01021{height:76.953164px;}
.hf_c01021{height:77.924795px;}
.h7_c01021{height:81.422860px;}
.hb_c01021{height:85.114863px;}
.h4_c01021{height:86.475146px;}
.he_c01021{height:89.778886px;}
.hc_c01021{height:95.819832px;}
.h1_c01021{height:1110.000000px;}
.h0_c01021{height:1263.000000px;}
.w1_c01021{width:763.500000px;}
.w0_c01021{width:892.500000px;}
.x0_c01021{left:0.000000px;}
.x2_c01021{left:26.844885px;}
.x1_c01021{left:64.500000px;}
.x1a_c01021{left:74.483685px;}
.x5_c01021{left:75.533085px;}
.x6d_c01021{left:76.780485px;}
.x6a_c01021{left:97.803135px;}
.x3a_c01021{left:107.643735px;}
.x6e_c01021{left:109.306935px;}
.x3f_c01021{left:118.281285px;}
.x21_c01021{left:129.463335px;}
.x1b_c01021{left:130.770135px;}
.x10_c01021{left:139.927635px;}
.x5c_c01021{left:141.491835px;}
.x6_c01021{left:152.208585px;}
.x46_c01021{left:153.614385px;}
.x1c_c01021{left:162.341235px;}
.x22_c01021{left:163.479735px;}
.x11_c01021{left:174.166785px;}
.x2d_c01021{left:175.339935px;}
.x47_c01021{left:186.601185px;}
.x44_c01021{left:196.169535px;}
.x68_c01021{left:197.233785px;}
.x60_c01021{left:206.876385px;}
.x7_c01021{left:208.074285px;}
.x28_c01021{left:218.627685px;}
.x33_c01021{left:230.131485px;}
.x4f_c01021{left:231.215535px;}
.x12_c01021{left:240.224535px;}
.x2e_c01021{left:242.011485px;}
.x1d_c01021{left:250.312635px;}
.x40_c01021{left:251.371935px;}
.x8_c01021{left:263.405385px;}
.x54_c01021{left:275.032935px;}
.x6b_c01021{left:276.181335px;}
.x65_c01021{left:285.467535px;}
.x55_c01021{left:286.521885px;}
.x3b_c01021{left:287.561385px;}
.x9_c01021{left:295.813035px;}
.x48_c01021{left:297.218835px;}
.x13_c01021{left:307.821735px;}
.x49_c01021{left:320.043285px;}
.x41_c01021{left:329.507685px;}
.x5d_c01021{left:331.121385px;}
.x50_c01021{left:332.477685px;}
.xa_c01021{left:340.739235px;}
.x1e_c01021{left:342.382635px;}
.x29_c01021{left:351.713385px;}
.x6f_c01021{left:353.440935px;}
.x61_c01021{left:355.242735px;}
.x14_c01021{left:363.603285px;}
.x34_c01021{left:374.928885px;}
.xb_c01021{left:384.724935px;}
.x23_c01021{left:386.303985px;}
.x59_c01021{left:396.179235px;}
.x51_c01021{left:397.738485px;}
.x35_c01021{left:407.683035px;}
.x5e_c01021{left:409.133385px;}
.x15_c01021{left:419.018535px;}
.x2f_c01021{left:420.196635px;}
.x4a_c01021{left:429.764985px;}
.x45_c01021{left:430.893585px;}
.x36_c01021{left:441.600435px;}
.x56_c01021{left:442.981485px;}
.x30_c01021{left:451.426185px;}
.x66_c01021{left:453.227985px;}
.xc_c01021{left:463.345785px;}
.x52_c01021{left:464.365485px;}
.x24_c01021{left:475.062435px;}
.x16_c01021{left:484.135785px;}
.x3c_c01021{left:487.066185px;}
.xd_c01021{left:495.743535px;}
.x62_c01021{left:497.193885px;}
.x17_c01021{left:507.851235px;}
.x69_c01021{left:509.158035px;}
.x4b_c01021{left:523.631835px;}
.x1f_c01021{left:528.195735px;}
.x63_c01021{left:529.987635px;}
.x70_c01021{left:531.032085px;}
.xe_c01021{left:539.546085px;}
.x2a_c01021{left:540.842985px;}
.x58_c01021{left:541.931985px;}
.x31_c01021{left:551.955735px;}
.x5a_c01021{left:553.148685px;}
.x71_c01021{left:563.078385px;}
.x18_c01021{left:572.552685px;}
.x57_c01021{left:574.869285px;}
.x37_c01021{left:585.586035px;}
.x25_c01021{left:596.223585px;}
.x20_c01021{left:598.238235px;}
.x2b_c01021{left:606.930435px;}
.x4c_c01021{left:608.628285px;}
.x3d_c01021{left:618.023385px;}
.x5b_c01021{left:619.033185px;}
.x5f_c01021{left:629.650935px;}
.x26_c01021{left:639.986535px;}
.x72_c01021{left:641.060685px;}
.x3_c01021{left:648.787635px;}
.x19_c01021{left:650.792385px;}
.x3e_c01021{left:651.841785px;}
.x4d_c01021{left:662.573385px;}
.x32_c01021{left:663.929685px;}
.x38_c01021{left:672.354585px;}
.x4e_c01021{left:673.973235px;}
.x4_c01021{left:684.244485px;}
.x53_c01021{left:685.249335px;}
.xf_c01021{left:694.817685px;}
.x6c_c01021{left:695.941335px;}
.x73_c01021{left:699.018255px;}
.x67_c01021{left:700.084485px;}
.x64_c01021{left:705.410685px;}
.x27_c01021{left:706.752135px;}
.x42_c01021{left:718.444035px;}
.x2c_c01021{left:729.487485px;}
.x39_c01021{left:740.615085px;}
.x43_c01021{left:762.008985px;}
@media print{
.v1_c01021{vertical-align:-32.929600pt;}
.v0_c01021{vertical-align:0.000000pt;}
.ls12_c01021{letter-spacing:-2.845926pt;}
.ls11_c01021{letter-spacing:-2.698080pt;}
.ls9_c01021{letter-spacing:-2.439360pt;}
.ls14_c01021{letter-spacing:-1.693613pt;}
.ls5_c01021{letter-spacing:-1.268467pt;}
.ls15_c01021{letter-spacing:-0.843322pt;}
.lsd_c01021{letter-spacing:-0.236966pt;}
.ls2_c01021{letter-spacing:0.000000pt;}
.lse_c01021{letter-spacing:0.264845pt;}
.lsf_c01021{letter-spacing:0.728376pt;}
.ls13_c01021{letter-spacing:0.899078pt;}
.lsc_c01021{letter-spacing:1.331194pt;}
.ls6_c01021{letter-spacing:1.345133pt;}
.ls10_c01021{letter-spacing:1.979366pt;}
.ls3_c01021{letter-spacing:2.615888pt;}
.ls4_c01021{letter-spacing:3.484800pt;}
.ls7_c01021{letter-spacing:3.687209pt;}
.lsa_c01021{letter-spacing:3.916000pt;}
.ls1_c01021{letter-spacing:24.393952pt;}
.lsb_c01021{letter-spacing:51.955376pt;}
.ls8_c01021{letter-spacing:53.222576pt;}
.ls0_c01021{letter-spacing:233.356229pt;}
.ws0_c01021{word-spacing:0.000000pt;}
._0_c01021{width:11.081312pt;}
._2_c01021{width:25.055712pt;}
._1_c01021{width:33.329120pt;}
.fs1_c01021{font-size:19.712000pt;}
.fsb_c01021{font-size:22.528000pt;}
.fs0_c01021{font-size:24.640000pt;}
.fsc_c01021{font-size:29.568000pt;}
.fs8_c01021{font-size:44.352176pt;}
.fs7_c01021{font-size:51.955376pt;}
.fs6_c01021{font-size:53.222576pt;}
.fs4_c01021{font-size:58.960000pt;}
.fs3_c01021{font-size:69.696000pt;}
.fse_c01021{font-size:70.576000pt;}
.fs5_c01021{font-size:73.744176pt;}
.fs9_c01021{font-size:77.088000pt;}
.fs2_c01021{font-size:78.320000pt;}
.fsd_c01021{font-size:81.312176pt;}
.fsa_c01021{font-size:81.664176pt;}
.y0_c01021{bottom:0.000000pt;}
.y21_c01021{bottom:19.880120pt;}
.y20_c01021{bottom:36.666120pt;}
.y1_c01021{bottom:68.000000pt;}
.y1f_c01021{bottom:110.484920pt;}
.y1e_c01021{bottom:139.630520pt;}
.y1d_c01021{bottom:168.454920pt;}
.y1c_c01021{bottom:210.910520pt;}
.y1b_c01021{bottom:224.849720pt;}
.y1a_c01021{bottom:253.361720pt;}
.y19_c01021{bottom:274.904120pt;}
.y18_c01021{bottom:281.556920pt;}
.y17_c01021{bottom:302.461320pt;}
.y16_c01021{bottom:309.747720pt;}
.y15_c01021{bottom:337.630520pt;}
.y14_c01021{bottom:365.821320pt;}
.y13_c01021{bottom:393.704120pt;}
.y12_c01021{bottom:421.582520pt;}
.y11_c01021{bottom:450.090120pt;}
.y10_c01021{bottom:506.480520pt;}
.ye_c01021{bottom:534.680120pt;}
.yf_c01021{bottom:536.576520pt;}
.yd_c01021{bottom:562.875320pt;}
.yc_c01021{bottom:590.753720pt;}
.yb_c01021{bottom:619.265720pt;}
.ya_c01021{bottom:647.456520pt;}
.y9_c01021{bottom:675.972920pt;}
.y8_c01021{bottom:731.412920pt;}
.y7_c01021{bottom:760.237320pt;}
.y6_c01021{bottom:788.120120pt;}
.y5_c01021{bottom:816.627720pt;}
.y4_c01021{bottom:937.962120pt;}
.y2_c01021{bottom:957.920520pt;}
.y3_c01021{bottom:970.592520pt;}
.h3_c01021{height:20.559000pt;}
.h2_c01021{height:25.698750pt;}
.hd_c01021{height:30.838500pt;}
.h9_c01021{height:34.602280pt;}
.h8_c01021{height:35.446236pt;}
.ha_c01021{height:46.257934pt;}
.h6_c01021{height:61.493438pt;}
.h5_c01021{height:68.402813pt;}
.hf_c01021{height:69.266484pt;}
.h7_c01021{height:72.375876pt;}
.hb_c01021{height:75.657656pt;}
.h4_c01021{height:76.866797pt;}
.he_c01021{height:79.803454pt;}
.hc_c01021{height:85.173184pt;}
.h1_c01021{height:986.666667pt;}
.h0_c01021{height:1122.666667pt;}
.w1_c01021{width:678.666667pt;}
.w0_c01021{width:793.333333pt;}
.x0_c01021{left:0.000000pt;}
.x2_c01021{left:23.862120pt;}
.x1_c01021{left:57.333333pt;}
.x1a_c01021{left:66.207720pt;}
.x5_c01021{left:67.140520pt;}
.x6d_c01021{left:68.249320pt;}
.x6a_c01021{left:86.936120pt;}
.x3a_c01021{left:95.683320pt;}
.x6e_c01021{left:97.161720pt;}
.x3f_c01021{left:105.138920pt;}
.x21_c01021{left:115.078520pt;}
.x1b_c01021{left:116.240120pt;}
.x10_c01021{left:124.380120pt;}
.x5c_c01021{left:125.770520pt;}
.x6_c01021{left:135.296520pt;}
.x46_c01021{left:136.546120pt;}
.x1c_c01021{left:144.303320pt;}
.x22_c01021{left:145.315320pt;}
.x11_c01021{left:154.814920pt;}
.x2d_c01021{left:155.857720pt;}
.x47_c01021{left:165.867720pt;}
.x44_c01021{left:174.372920pt;}
.x68_c01021{left:175.318920pt;}
.x60_c01021{left:183.890120pt;}
.x7_c01021{left:184.954920pt;}
.x28_c01021{left:194.335720pt;}
.x33_c01021{left:204.561320pt;}
.x4f_c01021{left:205.524920pt;}
.x12_c01021{left:213.532920pt;}
.x2e_c01021{left:215.121320pt;}
.x1d_c01021{left:222.500120pt;}
.x40_c01021{left:223.441720pt;}
.x8_c01021{left:234.138120pt;}
.x54_c01021{left:244.473720pt;}
.x6b_c01021{left:245.494520pt;}
.x65_c01021{left:253.748920pt;}
.x55_c01021{left:254.686120pt;}
.x3b_c01021{left:255.610120pt;}
.x9_c01021{left:262.944920pt;}
.x48_c01021{left:264.194520pt;}
.x13_c01021{left:273.619320pt;}
.x49_c01021{left:284.482920pt;}
.x41_c01021{left:292.895720pt;}
.x5d_c01021{left:294.330120pt;}
.x50_c01021{left:295.535720pt;}
.xa_c01021{left:302.879320pt;}
.x1e_c01021{left:304.340120pt;}
.x29_c01021{left:312.634120pt;}
.x6f_c01021{left:314.169720pt;}
.x61_c01021{left:315.771320pt;}
.x14_c01021{left:323.202920pt;}
.x34_c01021{left:333.270120pt;}
.xb_c01021{left:341.977720pt;}
.x23_c01021{left:343.381320pt;}
.x59_c01021{left:352.159320pt;}
.x51_c01021{left:353.545320pt;}
.x35_c01021{left:362.384920pt;}
.x5e_c01021{left:363.674120pt;}
.x15_c01021{left:372.460920pt;}
.x2f_c01021{left:373.508120pt;}
.x4a_c01021{left:382.013320pt;}
.x45_c01021{left:383.016520pt;}
.x36_c01021{left:392.533720pt;}
.x56_c01021{left:393.761320pt;}
.x30_c01021{left:401.267720pt;}
.x66_c01021{left:402.869320pt;}
.xc_c01021{left:411.862920pt;}
.x52_c01021{left:412.769320pt;}
.x24_c01021{left:422.277720pt;}
.x16_c01021{left:430.342920pt;}
.x3c_c01021{left:432.947720pt;}
.xd_c01021{left:440.660920pt;}
.x62_c01021{left:441.950120pt;}
.x17_c01021{left:451.423320pt;}
.x69_c01021{left:452.584920pt;}
.x4b_c01021{left:465.450520pt;}
.x1f_c01021{left:469.507320pt;}
.x63_c01021{left:471.100120pt;}
.x70_c01021{left:472.028520pt;}
.xe_c01021{left:479.596520pt;}
.x2a_c01021{left:480.749320pt;}
.x58_c01021{left:481.717320pt;}
.x31_c01021{left:490.627320pt;}
.x5a_c01021{left:491.687720pt;}
.x71_c01021{left:500.514120pt;}
.x18_c01021{left:508.935720pt;}
.x57_c01021{left:510.994920pt;}
.x37_c01021{left:520.520920pt;}
.x25_c01021{left:529.976520pt;}
.x20_c01021{left:531.767320pt;}
.x2b_c01021{left:539.493720pt;}
.x4c_c01021{left:541.002920pt;}
.x3d_c01021{left:549.354120pt;}
.x5b_c01021{left:550.251720pt;}
.x5f_c01021{left:559.689720pt;}
.x26_c01021{left:568.876920pt;}
.x72_c01021{left:569.831720pt;}
.x3_c01021{left:576.700120pt;}
.x19_c01021{left:578.482120pt;}
.x3e_c01021{left:579.414920pt;}
.x4d_c01021{left:588.954120pt;}
.x32_c01021{left:590.159720pt;}
.x38_c01021{left:597.648520pt;}
.x4e_c01021{left:599.087320pt;}
.x4_c01021{left:608.217320pt;}
.x53_c01021{left:609.110520pt;}
.xf_c01021{left:617.615720pt;}
.x6c_c01021{left:618.614520pt;}
.x73_c01021{left:621.349560pt;}
.x67_c01021{left:622.297320pt;}
.x64_c01021{left:627.031720pt;}
.x27_c01021{left:628.224120pt;}
.x42_c01021{left:638.616920pt;}
.x2c_c01021{left:648.433320pt;}
.x39_c01021{left:658.324520pt;}
.x43_c01021{left:677.341320pt;}
}





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

.ir_c01022:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01022{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01022;src:url('chunks/assets/font_4e9ba072ffc41955973a3917.woff2')format("woff");}.ff1_c01022{font-family:ff1_c01022;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01022;src:url('chunks/assets/font_31786644146e7fcfb648fdee.woff2')format("woff");}.ff2_c01022{font-family:ff2_c01022;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01022;src:url('chunks/assets/font_160818e366a1ce0ac4a662ce.woff2')format("woff");}.ff3_c01022{font-family:ff3_c01022;line-height:0.666000;font-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_c01022{transform:matrix(0.205535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205535,0.000000,0.000000,0.250000,0,0);}
.m5a_c01022{transform:matrix(0.214707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214707,0.000000,0.000000,0.250000,0,0);}
.m8d_c01022{transform:matrix(0.239876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239876,0.000000,0.000000,0.250000,0,0);}
.m1_c01022{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01022{transform:matrix(0.254323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254323,0.000000,0.000000,0.250000,0,0);}
.m63_c01022{transform:matrix(0.259852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259852,0.000000,0.000000,0.250000,0,0);}
.m45_c01022{transform:matrix(0.261476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261476,0.000000,0.000000,0.250000,0,0);}
.m17_c01022{transform:matrix(0.261827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261827,0.000000,0.000000,0.250000,0,0);}
.m11_c01022{transform:matrix(0.262541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262541,0.000000,0.000000,0.250000,0,0);}
.m30_c01022{transform:matrix(0.264524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264524,0.000000,0.000000,0.250000,0,0);}
.me_c01022{transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);}
.m79_c01022{transform:matrix(0.268339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268339,0.000000,0.000000,0.250000,0,0);}
.m1b_c01022{transform:matrix(0.269156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269156,0.000000,0.000000,0.250000,0,0);}
.m2b_c01022{transform:matrix(0.270003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270003,0.000000,0.000000,0.250000,0,0);}
.m2e_c01022{transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);}
.m53_c01022{transform:matrix(0.271546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271546,0.000000,0.000000,0.250000,0,0);}
.m4_c01022{transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);}
.m18_c01022{transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);}
.m87_c01022{transform:matrix(0.276672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276672,0.000000,0.000000,0.250000,0,0);}
.m2c_c01022{transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);}
.m73_c01022{transform:matrix(0.278468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278468,0.000000,0.000000,0.250000,0,0);}
.m5e_c01022{transform:matrix(0.279620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279620,0.000000,0.000000,0.250000,0,0);}
.m6d_c01022{transform:matrix(0.279715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279715,0.000000,0.000000,0.250000,0,0);}
.m7f_c01022{transform:matrix(0.279746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279746,0.000000,0.000000,0.250000,0,0);}
.m36_c01022{transform:matrix(0.280304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280304,0.000000,0.000000,0.250000,0,0);}
.m5f_c01022{transform:matrix(0.280800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280800,0.000000,0.000000,0.250000,0,0);}
.m32_c01022{transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);}
.m69_c01022{transform:matrix(0.280879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280879,0.000000,0.000000,0.250000,0,0);}
.m9_c01022{transform:matrix(0.281713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281713,0.000000,0.000000,0.250000,0,0);}
.m77_c01022{transform:matrix(0.282531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282531,0.000000,0.000000,0.250000,0,0);}
.m6a_c01022{transform:matrix(0.283421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283421,0.000000,0.000000,0.250000,0,0);}
.m1a_c01022{transform:matrix(0.283625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283625,0.000000,0.000000,0.250000,0,0);}
.m33_c01022{transform:matrix(0.285023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285023,0.000000,0.000000,0.250000,0,0);}
.m2a_c01022{transform:matrix(0.286076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286076,0.000000,0.000000,0.250000,0,0);}
.m29_c01022{transform:matrix(0.286431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286431,0.000000,0.000000,0.250000,0,0);}
.m4a_c01022{transform:matrix(0.286986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286986,0.000000,0.000000,0.250000,0,0);}
.m5c_c01022{transform:matrix(0.287319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287319,0.000000,0.000000,0.250000,0,0);}
.m2f_c01022{transform:matrix(0.287374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287374,0.000000,0.000000,0.250000,0,0);}
.m24_c01022{transform:matrix(0.287406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287406,0.000000,0.000000,0.250000,0,0);}
.m75_c01022{transform:matrix(0.288169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288169,0.000000,0.000000,0.250000,0,0);}
.m40_c01022{transform:matrix(0.288247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288247,0.000000,0.000000,0.250000,0,0);}
.m22_c01022{transform:matrix(0.289942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289942,0.000000,0.000000,0.250000,0,0);}
.m27_c01022{transform:matrix(0.290510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290510,0.000000,0.000000,0.250000,0,0);}
.m0_c01022{transform:matrix(0.291044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291044,0.000000,0.000000,0.250000,0,0);}
.m13_c01022{transform:matrix(0.292173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292173,0.000000,0.000000,0.250000,0,0);}
.m55_c01022{transform:matrix(0.292237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292237,0.000000,0.000000,0.250000,0,0);}
.m71_c01022{transform:matrix(0.292381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292381,0.000000,0.000000,0.250000,0,0);}
.m88_c01022{transform:matrix(0.293027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293027,0.000000,0.000000,0.250000,0,0);}
.m81_c01022{transform:matrix(0.293234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293234,0.000000,0.000000,0.250000,0,0);}
.m84_c01022{transform:matrix(0.293938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293938,0.000000,0.000000,0.250000,0,0);}
.m7c_c01022{transform:matrix(0.294116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294116,0.000000,0.000000,0.250000,0,0);}
.m7d_c01022{transform:matrix(0.294622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294622,0.000000,0.000000,0.250000,0,0);}
.m4b_c01022{transform:matrix(0.295161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295161,0.000000,0.000000,0.250000,0,0);}
.m58_c01022{transform:matrix(0.295667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295667,0.000000,0.000000,0.250000,0,0);}
.m3b_c01022{transform:matrix(0.296080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296080,0.000000,0.000000,0.250000,0,0);}
.m60_c01022{transform:matrix(0.296346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296346,0.000000,0.000000,0.250000,0,0);}
.m43_c01022{transform:matrix(0.297589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297589,0.000000,0.000000,0.250000,0,0);}
.m6c_c01022{transform:matrix(0.297812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297812,0.000000,0.000000,0.250000,0,0);}
.m8c_c01022{transform:matrix(0.297832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297832,0.000000,0.000000,0.250000,0,0);}
.m15_c01022{transform:matrix(0.298058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298058,0.000000,0.000000,0.250000,0,0);}
.m50_c01022{transform:matrix(0.299095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299095,0.000000,0.000000,0.250000,0,0);}
.m1e_c01022{transform:matrix(0.299278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299278,0.000000,0.000000,0.250000,0,0);}
.m1d_c01022{transform:matrix(0.300362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300362,0.000000,0.000000,0.250000,0,0);}
.m41_c01022{transform:matrix(0.301184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301184,0.000000,0.000000,0.250000,0,0);}
.m8e_c01022{transform:matrix(0.301607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301607,0.000000,0.000000,0.250000,0,0);}
.m35_c01022{transform:matrix(0.301673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301673,0.000000,0.000000,0.250000,0,0);}
.m31_c01022{transform:matrix(0.301834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301834,0.000000,0.000000,0.250000,0,0);}
.m64_c01022{transform:matrix(0.301966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301966,0.000000,0.000000,0.250000,0,0);}
.m4e_c01022{transform:matrix(0.302069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302069,0.000000,0.000000,0.250000,0,0);}
.m7a_c01022{transform:matrix(0.302155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302155,0.000000,0.000000,0.250000,0,0);}
.m3a_c01022{transform:matrix(0.302445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302445,0.000000,0.000000,0.250000,0,0);}
.m83_c01022{transform:matrix(0.303374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303374,0.000000,0.000000,0.250000,0,0);}
.m1f_c01022{transform:matrix(0.303538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303538,0.000000,0.000000,0.250000,0,0);}
.m3c_c01022{transform:matrix(0.303939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303939,0.000000,0.000000,0.250000,0,0);}
.m86_c01022{transform:matrix(0.303955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303955,0.000000,0.000000,0.250000,0,0);}
.m3e_c01022{transform:matrix(0.303983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303983,0.000000,0.000000,0.250000,0,0);}
.md_c01022{transform:matrix(0.304208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304208,0.000000,0.000000,0.250000,0,0);}
.mc_c01022{transform:matrix(0.304631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304631,0.000000,0.000000,0.250000,0,0);}
.m4c_c01022{transform:matrix(0.305812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305812,0.000000,0.000000,0.250000,0,0);}
.m54_c01022{transform:matrix(0.305908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305908,0.000000,0.000000,0.250000,0,0);}
.m57_c01022{transform:matrix(0.306014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306014,0.000000,0.000000,0.250000,0,0);}
.m19_c01022{transform:matrix(0.306031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306031,0.000000,0.000000,0.250000,0,0);}
.m2d_c01022{transform:matrix(0.306782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306782,0.000000,0.000000,0.250000,0,0);}
.m47_c01022{transform:matrix(0.306783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306783,0.000000,0.000000,0.250000,0,0);}
.m10_c01022{transform:matrix(0.307669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307669,0.000000,0.000000,0.250000,0,0);}
.m21_c01022{transform:matrix(0.307690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307690,0.000000,0.000000,0.250000,0,0);}
.m26_c01022{transform:matrix(0.308180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308180,0.000000,0.000000,0.250000,0,0);}
.m7_c01022{transform:matrix(0.308567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308567,0.000000,0.000000,0.250000,0,0);}
.m5d_c01022{transform:matrix(0.308883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308883,0.000000,0.000000,0.250000,0,0);}
.m3_c01022{transform:matrix(0.309414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309414,0.000000,0.000000,0.250000,0,0);}
.m3f_c01022{transform:matrix(0.312279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312279,0.000000,0.000000,0.250000,0,0);}
.m28_c01022{transform:matrix(0.314262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314262,0.000000,0.000000,0.250000,0,0);}
.m72_c01022{transform:matrix(0.315323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315323,0.000000,0.000000,0.250000,0,0);}
.m80_c01022{transform:matrix(0.315944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315944,0.000000,0.000000,0.250000,0,0);}
.m76_c01022{transform:matrix(0.316107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316107,0.000000,0.000000,0.250000,0,0);}
.m23_c01022{transform:matrix(0.316776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316776,0.000000,0.000000,0.250000,0,0);}
.m78_c01022{transform:matrix(0.318669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318669,0.000000,0.000000,0.250000,0,0);}
.m59_c01022{transform:matrix(0.320122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320122,0.000000,0.000000,0.250000,0,0);}
.m56_c01022{transform:matrix(0.320354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320354,0.000000,0.000000,0.250000,0,0);}
.m4f_c01022{transform:matrix(0.320386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320386,0.000000,0.000000,0.250000,0,0);}
.m6_c01022{transform:matrix(0.320728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320728,0.000000,0.000000,0.250000,0,0);}
.ma_c01022{transform:matrix(0.320959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320959,0.000000,0.000000,0.250000,0,0);}
.m39_c01022{transform:matrix(0.321067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321067,0.000000,0.000000,0.250000,0,0);}
.m51_c01022{transform:matrix(0.324557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324557,0.000000,0.000000,0.250000,0,0);}
.m67_c01022{transform:matrix(0.325580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325580,0.000000,0.000000,0.250000,0,0);}
.m4d_c01022{transform:matrix(0.325752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325752,0.000000,0.000000,0.250000,0,0);}
.m65_c01022{transform:matrix(0.326868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326868,0.000000,0.000000,0.250000,0,0);}
.m49_c01022{transform:matrix(0.327760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327760,0.000000,0.000000,0.250000,0,0);}
.m14_c01022{transform:matrix(0.328631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328631,0.000000,0.000000,0.250000,0,0);}
.m52_c01022{transform:matrix(0.328649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328649,0.000000,0.000000,0.250000,0,0);}
.m7e_c01022{transform:matrix(0.331327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331327,0.000000,0.000000,0.250000,0,0);}
.m6b_c01022{transform:matrix(0.332356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332356,0.000000,0.000000,0.250000,0,0);}
.m74_c01022{transform:matrix(0.332595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332595,0.000000,0.000000,0.250000,0,0);}
.m38_c01022{transform:matrix(0.334741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334741,0.000000,0.000000,0.250000,0,0);}
.m1c_c01022{transform:matrix(0.335052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335052,0.000000,0.000000,0.250000,0,0);}
.m62_c01022{transform:matrix(0.335054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335054,0.000000,0.000000,0.250000,0,0);}
.m6e_c01022{transform:matrix(0.337075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337075,0.000000,0.000000,0.250000,0,0);}
.m2_c01022{transform:matrix(0.339155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339155,0.000000,0.000000,0.250000,0,0);}
.m5b_c01022{transform:matrix(0.339250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339250,0.000000,0.000000,0.250000,0,0);}
.m68_c01022{transform:matrix(0.341605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341605,0.000000,0.000000,0.250000,0,0);}
.m34_c01022{transform:matrix(0.341726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341726,0.000000,0.000000,0.250000,0,0);}
.m61_c01022{transform:matrix(0.341752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341752,0.000000,0.000000,0.250000,0,0);}
.m6f_c01022{transform:matrix(0.341788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341788,0.000000,0.000000,0.250000,0,0);}
.m8a_c01022{transform:matrix(0.342838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342838,0.000000,0.000000,0.250000,0,0);}
.m25_c01022{transform:matrix(0.343411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343411,0.000000,0.000000,0.250000,0,0);}
.m66_c01022{transform:matrix(0.344878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344878,0.000000,0.000000,0.250000,0,0);}
.m16_c01022{transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);}
.m44_c01022{transform:matrix(0.346907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346907,0.000000,0.000000,0.250000,0,0);}
.m8_c01022{transform:matrix(0.351305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351305,0.000000,0.000000,0.250000,0,0);}
.m42_c01022{transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);}
.mb_c01022{transform:matrix(0.355252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355252,0.000000,0.000000,0.250000,0,0);}
.m89_c01022{transform:matrix(0.357996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357996,0.000000,0.000000,0.250000,0,0);}
.m12_c01022{transform:matrix(0.358184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358184,0.000000,0.000000,0.250000,0,0);}
.m37_c01022{transform:matrix(0.358866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358866,0.000000,0.000000,0.250000,0,0);}
.m46_c01022{transform:matrix(0.361142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361142,0.000000,0.000000,0.250000,0,0);}
.m85_c01022{transform:matrix(0.363147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363147,0.000000,0.000000,0.250000,0,0);}
.m48_c01022{transform:matrix(0.365231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365231,0.000000,0.000000,0.250000,0,0);}
.m70_c01022{transform:matrix(0.386710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386710,0.000000,0.000000,0.250000,0,0);}
.mf_c01022{transform:matrix(0.387076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387076,0.000000,0.000000,0.250000,0,0);}
.m8b_c01022{transform:matrix(0.387414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387414,0.000000,0.000000,0.250000,0,0);}
.m5_c01022{transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);}
.m20_c01022{transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);}
.m7b_c01022{transform:matrix(0.405805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405805,0.000000,0.000000,0.250000,0,0);}
.v1_c01022{vertical-align:-86.981400px;}
.v0_c01022{vertical-align:0.000000px;}
.lsa_c01022{letter-spacing:-2.647267px;}
.ls3_c01022{letter-spacing:-2.601885px;}
.lse_c01022{letter-spacing:-1.926540px;}
.ls2_c01022{letter-spacing:0.000000px;}
.ls7_c01022{letter-spacing:1.081598px;}
.ls8_c01022{letter-spacing:1.558106px;}
.lsc_c01022{letter-spacing:2.673000px;}
.ls5_c01022{letter-spacing:3.184284px;}
.ls6_c01022{letter-spacing:3.643200px;}
.ls4_c01022{letter-spacing:3.721301px;}
.lsd_c01022{letter-spacing:3.722400px;}
.ls1_c01022{letter-spacing:3.781810px;}
.ls9_c01022{letter-spacing:3.801610px;}
.lsb_c01022{letter-spacing:61.300998px;}
.ls0_c01022{letter-spacing:1265.202576px;}
.sc__c01022{text-shadow:none;}
.sc0_c01022{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01022{-webkit-text-stroke:0px transparent;}
.sc0_c01022{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01022{word-spacing:-22.968050px;}
.ws1_c01022{word-spacing:0.000000px;}
._0_c01022{width:7.901718px;}
._1_c01022{width:31.401315px;}
.fc0_c01022{color:transparent;}
.fs11_c01022{font-size:19.206000px;}
.fs2_c01022{font-size:22.176000px;}
.fs1_c01022{font-size:27.720000px;}
.fs9_c01022{font-size:50.292000px;}
.fsb_c01022{font-size:53.460000px;}
.fsd_c01022{font-size:55.044000px;}
.fs4_c01022{font-size:57.222000px;}
.fsa_c01022{font-size:61.300998px;}
.fs10_c01022{font-size:62.568000px;}
.fs7_c01022{font-size:66.330000px;}
.fse_c01022{font-size:70.092198px;}
.fs6_c01022{font-size:72.864000px;}
.fsc_c01022{font-size:74.448000px;}
.fs3_c01022{font-size:74.844000px;}
.fs0_c01022{font-size:75.636198px;}
.fs8_c01022{font-size:76.032198px;}
.fsf_c01022{font-size:86.328000px;}
.fs5_c01022{font-size:91.872198px;}
.y0_c01022{bottom:0.000000px;}
.y1c_c01022{bottom:25.211385px;}
.y1b_c01022{bottom:53.371935px;}
.y1_c01022{bottom:76.500000px;}
.y1d_c01022{bottom:96.496335px;}
.y1a_c01022{bottom:157.797135px;}
.y19_c01022{bottom:189.873135px;}
.y18_c01022{bottom:222.305535px;}
.y17_c01022{bottom:254.376585px;}
.y16_c01022{bottom:286.452585px;}
.y15_c01022{bottom:317.820735px;}
.y14_c01022{bottom:369.493785px;}
.y13_c01022{bottom:413.330985px;}
.y12_c01022{bottom:492.808185px;}
.y11_c01022{bottom:571.933935px;}
.y10_c01022{bottom:604.009935px;}
.yf_c01022{bottom:635.729535px;}
.ye_c01022{bottom:667.444185px;}
.yd_c01022{bottom:698.807385px;}
.yc_c01022{bottom:722.329785px;}
.yb_c01022{bottom:730.531935px;}
.ya_c01022{bottom:762.246585px;}
.y9_c01022{bottom:794.327535px;}
.y8_c01022{bottom:857.761785px;}
.y6_c01022{bottom:889.129935px;}
.y7_c01022{bottom:890.911935px;}
.y5_c01022{bottom:920.849535px;}
.y4_c01022{bottom:1006.024185px;}
.y3_c01022{bottom:1037.030985px;}
.y2_c01022{bottom:1057.345785px;}
.h12_c01022{height:20.031258px;}
.h4_c01022{height:23.128875px;}
.h3_c01022{height:28.911094px;}
.hc_c01022{height:40.826465px;}
.hb_c01022{height:49.358848px;}
.hf_c01022{height:54.022676px;}
.hd_c01022{height:55.757109px;}
.h6_c01022{height:56.160264px;}
.h9_c01022{height:69.180117px;}
.h8_c01022{height:71.512031px;}
.he_c01022{height:73.066641px;}
.h10_c01022{height:73.103972px;}
.h5_c01022{height:73.455293px;}
.h2_c01022{height:74.232792px;}
.ha_c01022{height:74.621444px;}
.h11_c01022{height:84.726211px;}
.h7_c01022{height:90.167538px;}
.h1_c01022{height:1110.000000px;}
.h0_c01022{height:1263.000000px;}
.w1_c01022{width:763.500000px;}
.w0_c01022{width:892.500000px;}
.x0_c01022{left:0.000000px;}
.x1_c01022{left:64.500000px;}
.x10_c01022{left:77.681385px;}
.x5_c01022{left:79.418835px;}
.x38_c01022{left:100.669185px;}
.x61_c01022{left:110.321685px;}
.x6_c01022{left:111.544335px;}
.x11_c01022{left:122.929335px;}
.x1d_c01022{left:132.245235px;}
.x48_c01022{left:133.839135px;}
.x5a_c01022{left:143.491635px;}
.x43_c01022{left:144.951885px;}
.x32_c01022{left:145.996335px;}
.x40_c01022{left:155.752785px;}
.x49_c01022{left:166.791285px;}
.x55_c01022{left:176.522985px;}
.x25_c01022{left:177.839685px;}
.x2c_c01022{left:178.923735px;}
.x39_c01022{left:187.992135px;}
.x1e_c01022{left:190.209735px;}
.x41_c01022{left:200.124585px;}
.x4e_c01022{left:221.285835px;}
.x26_c01022{left:222.746085px;}
.x62_c01022{left:233.814285px;}
.x18_c01022{left:245.456685px;}
.x7_c01022{left:255.916035px;}
.x1f_c01022{left:266.672385px;}
.x63_c01022{left:268.271235px;}
.x5b_c01022{left:274.344885px;}
.x2d_c01022{left:278.374185px;}
.x5c_c01022{left:281.161035px;}
.x8_c01022{left:288.645435px;}
.x4f_c01022{left:290.160135px;}
.x44_c01022{left:299.520585px;}
.x67_c01022{left:301.183785px;}
.x3a_c01022{left:310.286835px;}
.x19_c01022{left:311.786685px;}
.x9_c01022{left:322.439085px;}
.x45_c01022{left:323.508285px;}
.x33_c01022{left:333.967635px;}
.x68_c01022{left:335.041785px;}
.x1a_c01022{left:344.827935px;}
.x56_c01022{left:347.104935px;}
.x20_c01022{left:354.391335px;}
.x3b_c01022{left:356.069385px;}
.x3_c01022{left:365.068485px;}
.x53_c01022{left:366.890085px;}
.x34_c01022{left:368.414685px;}
.x69_c01022{left:370.261035px;}
.x27_c01022{left:378.522585px;}
.x5d_c01022{left:388.036485px;}
.x12_c01022{left:389.214585px;}
.x4a_c01022{left:390.486735px;}
.x5f_c01022{left:399.337335px;}
.x57_c01022{left:403.020135px;}
.x28_c01022{left:410.044185px;}
.x64_c01022{left:411.266835px;}
.x50_c01022{left:421.013385px;}
.x13_c01022{left:422.300385px;}
.x21_c01022{left:432.982485px;}
.x14_c01022{left:455.306985px;}
.x22_c01022{left:465.642585px;}
.xa_c01022{left:467.216685px;}
.x52_c01022{left:472.963635px;}
.x54_c01022{left:477.403785px;}
.x4d_c01022{left:483.061635px;}
.x3c_c01022{left:489.367935px;}
.x5e_c01022{left:491.278635px;}
.x35_c01022{left:499.139235px;}
.x1b_c01022{left:500.351985px;}
.x29_c01022{left:501.539985px;}
.x2e_c01022{left:511.727085px;}
.xb_c01022{left:521.404335px;}
.x4b_c01022{left:522.666585px;}
.x15_c01022{left:533.546685px;}
.x3d_c01022{left:543.332835px;}
.x36_c01022{left:544.604985px;}
.x23_c01022{left:546.159285px;}
.x60_c01022{left:554.628735px;}
.x58_c01022{left:556.232535px;}
.xc_c01022{left:565.588035px;}
.x2f_c01022{left:567.028485px;}
.x16_c01022{left:576.379035px;}
.x51_c01022{left:579.066885px;}
.x17_c01022{left:586.853235px;}
.x59_c01022{left:598.188735px;}
.x42_c01022{left:599.431185px;}
.x3e_c01022{left:600.465735px;}
.x2a_c01022{left:611.231985px;}
.x30_c01022{left:620.686485px;}
.x46_c01022{left:621.943785px;}
.x31_c01022{left:631.843785px;}
.x1c_c01022{left:632.922885px;}
.xd_c01022{left:642.966435px;}
.x47_c01022{left:654.356385px;}
.x4c_c01022{left:656.405685px;}
.x24_c01022{left:666.003735px;}
.x4_c01022{left:673.022835px;}
.xe_c01022{left:675.898785px;}
.x2_c01022{left:687.452085px;}
.x65_c01022{left:688.491585px;}
.x37_c01022{left:689.936985px;}
.x6a_c01022{left:694.396935px;}
.x3f_c01022{left:710.910135px;}
.x2b_c01022{left:721.706085px;}
.xf_c01022{left:731.170485px;}
.x66_c01022{left:743.802885px;}
.x6b_c01022{left:758.202435px;}
@media print{
.v1_c01022{vertical-align:-77.316800pt;}
.v0_c01022{vertical-align:0.000000pt;}
.lsa_c01022{letter-spacing:-2.353126pt;}
.ls3_c01022{letter-spacing:-2.312787pt;}
.lse_c01022{letter-spacing:-1.712480pt;}
.ls2_c01022{letter-spacing:0.000000pt;}
.ls7_c01022{letter-spacing:0.961420pt;}
.ls8_c01022{letter-spacing:1.384983pt;}
.lsc_c01022{letter-spacing:2.376000pt;}
.ls5_c01022{letter-spacing:2.830475pt;}
.ls6_c01022{letter-spacing:3.238400pt;}
.ls4_c01022{letter-spacing:3.307823pt;}
.lsd_c01022{letter-spacing:3.308800pt;}
.ls1_c01022{letter-spacing:3.361609pt;}
.ls9_c01022{letter-spacing:3.379209pt;}
.lsb_c01022{letter-spacing:54.489776pt;}
.ls0_c01022{letter-spacing:1124.624512pt;}
.ws0_c01022{word-spacing:-20.416044pt;}
.ws1_c01022{word-spacing:0.000000pt;}
._0_c01022{width:7.023749pt;}
._1_c01022{width:27.912280pt;}
.fs11_c01022{font-size:17.072000pt;}
.fs2_c01022{font-size:19.712000pt;}
.fs1_c01022{font-size:24.640000pt;}
.fs9_c01022{font-size:44.704000pt;}
.fsb_c01022{font-size:47.520000pt;}
.fsd_c01022{font-size:48.928000pt;}
.fs4_c01022{font-size:50.864000pt;}
.fsa_c01022{font-size:54.489776pt;}
.fs10_c01022{font-size:55.616000pt;}
.fs7_c01022{font-size:58.960000pt;}
.fse_c01022{font-size:62.304176pt;}
.fs6_c01022{font-size:64.768000pt;}
.fsc_c01022{font-size:66.176000pt;}
.fs3_c01022{font-size:66.528000pt;}
.fs0_c01022{font-size:67.232176pt;}
.fs8_c01022{font-size:67.584176pt;}
.fsf_c01022{font-size:76.736000pt;}
.fs5_c01022{font-size:81.664176pt;}
.y0_c01022{bottom:0.000000pt;}
.y1c_c01022{bottom:22.410120pt;}
.y1b_c01022{bottom:47.441720pt;}
.y1_c01022{bottom:68.000000pt;}
.y1d_c01022{bottom:85.774520pt;}
.y1a_c01022{bottom:140.264120pt;}
.y19_c01022{bottom:168.776120pt;}
.y18_c01022{bottom:197.604920pt;}
.y17_c01022{bottom:226.112520pt;}
.y16_c01022{bottom:254.624520pt;}
.y15_c01022{bottom:282.507320pt;}
.y14_c01022{bottom:328.438920pt;}
.y13_c01022{bottom:367.405320pt;}
.y12_c01022{bottom:438.051720pt;}
.y11_c01022{bottom:508.385720pt;}
.y10_c01022{bottom:536.897720pt;}
.yf_c01022{bottom:565.092920pt;}
.ye_c01022{bottom:593.283720pt;}
.yd_c01022{bottom:621.162120pt;}
.yc_c01022{bottom:642.070920pt;}
.yb_c01022{bottom:649.361720pt;}
.ya_c01022{bottom:677.552520pt;}
.y9_c01022{bottom:706.068920pt;}
.y8_c01022{bottom:762.454920pt;}
.y6_c01022{bottom:790.337720pt;}
.y7_c01022{bottom:791.921720pt;}
.y5_c01022{bottom:818.532920pt;}
.y4_c01022{bottom:894.243720pt;}
.y3_c01022{bottom:921.805320pt;}
.y2_c01022{bottom:939.862920pt;}
.h12_c01022{height:17.805563pt;}
.h4_c01022{height:20.559000pt;}
.h3_c01022{height:25.698750pt;}
.hc_c01022{height:36.290191pt;}
.hb_c01022{height:43.874531pt;}
.hf_c01022{height:48.020156pt;}
.hd_c01022{height:49.561875pt;}
.h6_c01022{height:49.920234pt;}
.h9_c01022{height:61.493438pt;}
.h8_c01022{height:63.566250pt;}
.he_c01022{height:64.948125pt;}
.h10_c01022{height:64.981309pt;}
.h5_c01022{height:65.293594pt;}
.h2_c01022{height:65.984704pt;}
.ha_c01022{height:66.330173pt;}
.h11_c01022{height:75.312188pt;}
.h7_c01022{height:80.148923pt;}
.h1_c01022{height:986.666667pt;}
.h0_c01022{height:1122.666667pt;}
.w1_c01022{width:678.666667pt;}
.w0_c01022{width:793.333333pt;}
.x0_c01022{left:0.000000pt;}
.x1_c01022{left:57.333333pt;}
.x10_c01022{left:69.050120pt;}
.x5_c01022{left:70.594520pt;}
.x38_c01022{left:89.483720pt;}
.x61_c01022{left:98.063720pt;}
.x6_c01022{left:99.150520pt;}
.x11_c01022{left:109.270520pt;}
.x1d_c01022{left:117.551320pt;}
.x48_c01022{left:118.968120pt;}
.x5a_c01022{left:127.548120pt;}
.x43_c01022{left:128.846120pt;}
.x32_c01022{left:129.774520pt;}
.x40_c01022{left:138.446920pt;}
.x49_c01022{left:148.258920pt;}
.x55_c01022{left:156.909320pt;}
.x25_c01022{left:158.079720pt;}
.x2c_c01022{left:159.043320pt;}
.x39_c01022{left:167.104120pt;}
.x1e_c01022{left:169.075320pt;}
.x41_c01022{left:177.888520pt;}
.x4e_c01022{left:196.698520pt;}
.x26_c01022{left:197.996520pt;}
.x62_c01022{left:207.834920pt;}
.x18_c01022{left:218.183720pt;}
.x7_c01022{left:227.480920pt;}
.x1f_c01022{left:237.042120pt;}
.x63_c01022{left:238.463320pt;}
.x5b_c01022{left:243.862120pt;}
.x2d_c01022{left:247.443720pt;}
.x5c_c01022{left:249.920920pt;}
.x8_c01022{left:256.573720pt;}
.x4f_c01022{left:257.920120pt;}
.x44_c01022{left:266.240520pt;}
.x67_c01022{left:267.718920pt;}
.x3a_c01022{left:275.810520pt;}
.x19_c01022{left:277.143720pt;}
.x9_c01022{left:286.612520pt;}
.x45_c01022{left:287.562920pt;}
.x33_c01022{left:296.860120pt;}
.x68_c01022{left:297.814920pt;}
.x1a_c01022{left:306.513720pt;}
.x56_c01022{left:308.537720pt;}
.x20_c01022{left:315.014520pt;}
.x3b_c01022{left:316.506120pt;}
.x3_c01022{left:324.505320pt;}
.x53_c01022{left:326.124520pt;}
.x34_c01022{left:327.479720pt;}
.x69_c01022{left:329.120920pt;}
.x27_c01022{left:336.464520pt;}
.x5d_c01022{left:344.921320pt;}
.x12_c01022{left:345.968520pt;}
.x4a_c01022{left:347.099320pt;}
.x5f_c01022{left:354.966520pt;}
.x57_c01022{left:358.240120pt;}
.x28_c01022{left:364.483720pt;}
.x64_c01022{left:365.570520pt;}
.x50_c01022{left:374.234120pt;}
.x13_c01022{left:375.378120pt;}
.x21_c01022{left:384.873320pt;}
.x14_c01022{left:404.717320pt;}
.x22_c01022{left:413.904520pt;}
.xa_c01022{left:415.303720pt;}
.x52_c01022{left:420.412120pt;}
.x54_c01022{left:424.358920pt;}
.x4d_c01022{left:429.388120pt;}
.x3c_c01022{left:434.993720pt;}
.x5e_c01022{left:436.692120pt;}
.x35_c01022{left:443.679320pt;}
.x1b_c01022{left:444.757320pt;}
.x29_c01022{left:445.813320pt;}
.x2e_c01022{left:454.868520pt;}
.xb_c01022{left:463.470520pt;}
.x4b_c01022{left:464.592520pt;}
.x15_c01022{left:474.263720pt;}
.x3d_c01022{left:482.962520pt;}
.x36_c01022{left:484.093320pt;}
.x23_c01022{left:485.474920pt;}
.x60_c01022{left:493.003320pt;}
.x58_c01022{left:494.428920pt;}
.xc_c01022{left:502.744920pt;}
.x2f_c01022{left:504.025320pt;}
.x16_c01022{left:512.336920pt;}
.x51_c01022{left:514.726120pt;}
.x17_c01022{left:521.647320pt;}
.x59_c01022{left:531.723320pt;}
.x42_c01022{left:532.827720pt;}
.x3e_c01022{left:533.747320pt;}
.x2a_c01022{left:543.317320pt;}
.x30_c01022{left:551.721320pt;}
.x46_c01022{left:552.838920pt;}
.x31_c01022{left:561.638920pt;}
.x1c_c01022{left:562.598120pt;}
.xd_c01022{left:571.525720pt;}
.x47_c01022{left:581.650120pt;}
.x4c_c01022{left:583.471720pt;}
.x24_c01022{left:592.003320pt;}
.x4_c01022{left:598.242520pt;}
.xe_c01022{left:600.798920pt;}
.x2_c01022{left:611.068520pt;}
.x65_c01022{left:611.992520pt;}
.x37_c01022{left:613.277320pt;}
.x6a_c01022{left:617.241720pt;}
.x3f_c01022{left:631.920120pt;}
.x2b_c01022{left:641.516520pt;}
.xf_c01022{left:649.929320pt;}
.x66_c01022{left:661.158120pt;}
.x6b_c01022{left:673.957720pt;}
}





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

.ir_c01023:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01023{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01023;src:url('chunks/assets/font_44cafbe200b90bf3d1c439c8.woff2')format("woff");}.ff1_c01023{font-family:ff1_c01023;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01023;src:url('chunks/assets/font_f303ee850f510b0fc9e8def2.woff2')format("woff");}.ff2_c01023{font-family:ff2_c01023;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01023;src:url('chunks/assets/font_2c89390a3bac671a2c5f6b71.woff2')format("woff");}.ff3_c01023{font-family:ff3_c01023;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m9e_c01023{transform:matrix(0.169581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169581,0.000000,0.000000,0.250000,0,0);}
.m8e_c01023{transform:matrix(0.174953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174953,0.000000,0.000000,0.250000,0,0);}
.m2b_c01023{transform:matrix(0.180487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180487,0.000000,0.000000,0.250000,0,0);}
.m2a_c01023{transform:matrix(0.184960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184960,0.000000,0.000000,0.250000,0,0);}
.ma0_c01023{transform:matrix(0.187501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187501,0.000000,0.000000,0.250000,0,0);}
.m42_c01023{transform:matrix(0.191477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191477,0.000000,0.000000,0.250000,0,0);}
.m6_c01023{transform:matrix(0.201912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201912,0.000000,0.000000,0.250000,0,0);}
.m8c_c01023{transform:matrix(0.217629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217629,0.000000,0.000000,0.250000,0,0);}
.m1a_c01023{transform:matrix(0.230115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230115,0.000000,0.000000,0.250000,0,0);}
.m5c_c01023{transform:matrix(0.231939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231939,0.000000,0.000000,0.250000,0,0);}
.m99_c01023{transform:matrix(0.232800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232800,0.000000,0.000000,0.250000,0,0);}
.m1_c01023{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m80_c01023{transform:matrix(0.251850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251850,0.000000,0.000000,0.250000,0,0);}
.m2_c01023{transform:matrix(0.253216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253216,0.000000,0.000000,0.250000,0,0);}
.m3a_c01023{transform:matrix(0.254100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254100,0.000000,0.000000,0.250000,0,0);}
.m6e_c01023{transform:matrix(0.254315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254315,0.000000,0.000000,0.250000,0,0);}
.mc_c01023{transform:matrix(0.255459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255459,0.000000,0.000000,0.250000,0,0);}
.ma_c01023{transform:matrix(0.255598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255598,0.000000,0.000000,0.250000,0,0);}
.m47_c01023{transform:matrix(0.255599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255599,0.000000,0.000000,0.250000,0,0);}
.m72_c01023{transform:matrix(0.257330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257330,0.000000,0.000000,0.250000,0,0);}
.m98_c01023{transform:matrix(0.257706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257706,0.000000,0.000000,0.250000,0,0);}
.m16_c01023{transform:matrix(0.257948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257948,0.000000,0.000000,0.250000,0,0);}
.m4e_c01023{transform:matrix(0.258282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258282,0.000000,0.000000,0.250000,0,0);}
.m8b_c01023{transform:matrix(0.258362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258362,0.000000,0.000000,0.250000,0,0);}
.m97_c01023{transform:matrix(0.258425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258425,0.000000,0.000000,0.250000,0,0);}
.m11_c01023{transform:matrix(0.260021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260021,0.000000,0.000000,0.250000,0,0);}
.mb_c01023{transform:matrix(0.260635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260635,0.000000,0.000000,0.250000,0,0);}
.m78_c01023{transform:matrix(0.262131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262131,0.000000,0.000000,0.250000,0,0);}
.m32_c01023{transform:matrix(0.262894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262894,0.000000,0.000000,0.250000,0,0);}
.m5_c01023{transform:matrix(0.263564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263564,0.000000,0.000000,0.250000,0,0);}
.ma2_c01023{transform:matrix(0.263695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263695,0.000000,0.000000,0.250000,0,0);}
.m83_c01023{transform:matrix(0.263842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263842,0.000000,0.000000,0.250000,0,0);}
.m3e_c01023{transform:matrix(0.263991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263991,0.000000,0.000000,0.250000,0,0);}
.m8_c01023{transform:matrix(0.264583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264583,0.000000,0.000000,0.250000,0,0);}
.ma6_c01023{transform:matrix(0.264834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264834,0.000000,0.000000,0.250000,0,0);}
.ma8_c01023{transform:matrix(0.265678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265678,0.000000,0.000000,0.250000,0,0);}
.m27_c01023{transform:matrix(0.266492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266492,0.000000,0.000000,0.250000,0,0);}
.m8a_c01023{transform:matrix(0.266804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266804,0.000000,0.000000,0.250000,0,0);}
.m8f_c01023{transform:matrix(0.266911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266911,0.000000,0.000000,0.250000,0,0);}
.m1e_c01023{transform:matrix(0.267506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267506,0.000000,0.000000,0.250000,0,0);}
.m5d_c01023{transform:matrix(0.267655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267655,0.000000,0.000000,0.250000,0,0);}
.m4d_c01023{transform:matrix(0.267898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267898,0.000000,0.000000,0.250000,0,0);}
.m17_c01023{transform:matrix(0.268217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268217,0.000000,0.000000,0.250000,0,0);}
.m50_c01023{transform:matrix(0.268597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268597,0.000000,0.000000,0.250000,0,0);}
.mf_c01023{transform:matrix(0.269145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269145,0.000000,0.000000,0.250000,0,0);}
.m7c_c01023{transform:matrix(0.269481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269481,0.000000,0.000000,0.250000,0,0);}
.m79_c01023{transform:matrix(0.270257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270257,0.000000,0.000000,0.250000,0,0);}
.m37_c01023{transform:matrix(0.270305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270305,0.000000,0.000000,0.250000,0,0);}
.m71_c01023{transform:matrix(0.270860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270860,0.000000,0.000000,0.250000,0,0);}
.m91_c01023{transform:matrix(0.271611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271611,0.000000,0.000000,0.250000,0,0);}
.m23_c01023{transform:matrix(0.272892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272892,0.000000,0.000000,0.250000,0,0);}
.m73_c01023{transform:matrix(0.274352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274352,0.000000,0.000000,0.250000,0,0);}
.ma7_c01023{transform:matrix(0.274607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274607,0.000000,0.000000,0.250000,0,0);}
.m93_c01023{transform:matrix(0.274887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274887,0.000000,0.000000,0.250000,0,0);}
.m3d_c01023{transform:matrix(0.277398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277398,0.000000,0.000000,0.250000,0,0);}
.m36_c01023{transform:matrix(0.277684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277684,0.000000,0.000000,0.250000,0,0);}
.ma4_c01023{transform:matrix(0.277926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277926,0.000000,0.000000,0.250000,0,0);}
.m35_c01023{transform:matrix(0.278467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278467,0.000000,0.000000,0.250000,0,0);}
.m59_c01023{transform:matrix(0.279202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279202,0.000000,0.000000,0.250000,0,0);}
.ma1_c01023{transform:matrix(0.279269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279269,0.000000,0.000000,0.250000,0,0);}
.m90_c01023{transform:matrix(0.279706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279706,0.000000,0.000000,0.250000,0,0);}
.m4b_c01023{transform:matrix(0.279710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279710,0.000000,0.000000,0.250000,0,0);}
.m58_c01023{transform:matrix(0.279781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279781,0.000000,0.000000,0.250000,0,0);}
.m75_c01023{transform:matrix(0.280012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280012,0.000000,0.000000,0.250000,0,0);}
.m40_c01023{transform:matrix(0.281737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281737,0.000000,0.000000,0.250000,0,0);}
.m87_c01023{transform:matrix(0.282158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282158,0.000000,0.000000,0.250000,0,0);}
.m62_c01023{transform:matrix(0.282923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282923,0.000000,0.000000,0.250000,0,0);}
.md_c01023{transform:matrix(0.283647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283647,0.000000,0.000000,0.250000,0,0);}
.m0_c01023{transform:matrix(0.284302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284302,0.000000,0.000000,0.250000,0,0);}
.m95_c01023{transform:matrix(0.284817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284817,0.000000,0.000000,0.250000,0,0);}
.m29_c01023{transform:matrix(0.284845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284845,0.000000,0.000000,0.250000,0,0);}
.m68_c01023{transform:matrix(0.284924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284924,0.000000,0.000000,0.250000,0,0);}
.m33_c01023{transform:matrix(0.285422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285422,0.000000,0.000000,0.250000,0,0);}
.m54_c01023{transform:matrix(0.285873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285873,0.000000,0.000000,0.250000,0,0);}
.m4f_c01023{transform:matrix(0.286318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286318,0.000000,0.000000,0.250000,0,0);}
.maf_c01023{transform:matrix(0.286554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286554,0.000000,0.000000,0.250000,0,0);}
.m7d_c01023{transform:matrix(0.286692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286692,0.000000,0.000000,0.250000,0,0);}
.m67_c01023{transform:matrix(0.286842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286842,0.000000,0.000000,0.250000,0,0);}
.m86_c01023{transform:matrix(0.288073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288073,0.000000,0.000000,0.250000,0,0);}
.m8d_c01023{transform:matrix(0.288115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288115,0.000000,0.000000,0.250000,0,0);}
.m1c_c01023{transform:matrix(0.288305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288305,0.000000,0.000000,0.250000,0,0);}
.m51_c01023{transform:matrix(0.288961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288961,0.000000,0.000000,0.250000,0,0);}
.m38_c01023{transform:matrix(0.289119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289119,0.000000,0.000000,0.250000,0,0);}
.m3c_c01023{transform:matrix(0.289420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289420,0.000000,0.000000,0.250000,0,0);}
.m9d_c01023{transform:matrix(0.289629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289629,0.000000,0.000000,0.250000,0,0);}
.m74_c01023{transform:matrix(0.290125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290125,0.000000,0.000000,0.250000,0,0);}
.m45_c01023{transform:matrix(0.290337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290337,0.000000,0.000000,0.250000,0,0);}
.m77_c01023{transform:matrix(0.290620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290620,0.000000,0.000000,0.250000,0,0);}
.m14_c01023{transform:matrix(0.290680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290680,0.000000,0.000000,0.250000,0,0);}
.m22_c01023{transform:matrix(0.290889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290889,0.000000,0.000000,0.250000,0,0);}
.m10_c01023{transform:matrix(0.291108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291108,0.000000,0.000000,0.250000,0,0);}
.m24_c01023{transform:matrix(0.291290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291290,0.000000,0.000000,0.250000,0,0);}
.m28_c01023{transform:matrix(0.291823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291823,0.000000,0.000000,0.250000,0,0);}
.mac_c01023{transform:matrix(0.292539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292539,0.000000,0.000000,0.250000,0,0);}
.m18_c01023{transform:matrix(0.293033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293033,0.000000,0.000000,0.250000,0,0);}
.m31_c01023{transform:matrix(0.293112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293112,0.000000,0.000000,0.250000,0,0);}
.m15_c01023{transform:matrix(0.293401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293401,0.000000,0.000000,0.250000,0,0);}
.m94_c01023{transform:matrix(0.293622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293622,0.000000,0.000000,0.250000,0,0);}
.m61_c01023{transform:matrix(0.293649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293649,0.000000,0.000000,0.250000,0,0);}
.m9c_c01023{transform:matrix(0.293723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293723,0.000000,0.000000,0.250000,0,0);}
.m65_c01023{transform:matrix(0.294933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294933,0.000000,0.000000,0.250000,0,0);}
.m56_c01023{transform:matrix(0.295410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295410,0.000000,0.000000,0.250000,0,0);}
.m5e_c01023{transform:matrix(0.295673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295673,0.000000,0.000000,0.250000,0,0);}
.m53_c01023{transform:matrix(0.296726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296726,0.000000,0.000000,0.250000,0,0);}
.ma5_c01023{transform:matrix(0.297836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297836,0.000000,0.000000,0.250000,0,0);}
.m4c_c01023{transform:matrix(0.297883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297883,0.000000,0.000000,0.250000,0,0);}
.m5f_c01023{transform:matrix(0.298120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298120,0.000000,0.000000,0.250000,0,0);}
.mad_c01023{transform:matrix(0.299986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299986,0.000000,0.000000,0.250000,0,0);}
.m34_c01023{transform:matrix(0.300108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300108,0.000000,0.000000,0.250000,0,0);}
.m2c_c01023{transform:matrix(0.300380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300380,0.000000,0.000000,0.250000,0,0);}
.mae_c01023{transform:matrix(0.301307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301307,0.000000,0.000000,0.250000,0,0);}
.m4a_c01023{transform:matrix(0.301406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301406,0.000000,0.000000,0.250000,0,0);}
.m6a_c01023{transform:matrix(0.301454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301454,0.000000,0.000000,0.250000,0,0);}
.m9a_c01023{transform:matrix(0.301521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301521,0.000000,0.000000,0.250000,0,0);}
.m49_c01023{transform:matrix(0.301666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301666,0.000000,0.000000,0.250000,0,0);}
.m12_c01023{transform:matrix(0.302130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302130,0.000000,0.000000,0.250000,0,0);}
.m44_c01023{transform:matrix(0.302878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302878,0.000000,0.000000,0.250000,0,0);}
.m1f_c01023{transform:matrix(0.303567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303567,0.000000,0.000000,0.250000,0,0);}
.ma3_c01023{transform:matrix(0.303869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303869,0.000000,0.000000,0.250000,0,0);}
.m92_c01023{transform:matrix(0.305107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305107,0.000000,0.000000,0.250000,0,0);}
.m46_c01023{transform:matrix(0.305110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305110,0.000000,0.000000,0.250000,0,0);}
.m4_c01023{transform:matrix(0.305295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305295,0.000000,0.000000,0.250000,0,0);}
.m7a_c01023{transform:matrix(0.305681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305681,0.000000,0.000000,0.250000,0,0);}
.m20_c01023{transform:matrix(0.307062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307062,0.000000,0.000000,0.250000,0,0);}
.m1d_c01023{transform:matrix(0.307440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307440,0.000000,0.000000,0.250000,0,0);}
.m13_c01023{transform:matrix(0.307966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307966,0.000000,0.000000,0.250000,0,0);}
.m43_c01023{transform:matrix(0.308496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308496,0.000000,0.000000,0.250000,0,0);}
.m30_c01023{transform:matrix(0.308689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308689,0.000000,0.000000,0.250000,0,0);}
.m5b_c01023{transform:matrix(0.308796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308796,0.000000,0.000000,0.250000,0,0);}
.m88_c01023{transform:matrix(0.309394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309394,0.000000,0.000000,0.250000,0,0);}
.m39_c01023{transform:matrix(0.309784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309784,0.000000,0.000000,0.250000,0,0);}
.maa_c01023{transform:matrix(0.310890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310890,0.000000,0.000000,0.250000,0,0);}
.m57_c01023{transform:matrix(0.311082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311082,0.000000,0.000000,0.250000,0,0);}
.m26_c01023{transform:matrix(0.311332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311332,0.000000,0.000000,0.250000,0,0);}
.m70_c01023{transform:matrix(0.313390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313390,0.000000,0.000000,0.250000,0,0);}
.m63_c01023{transform:matrix(0.313849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313849,0.000000,0.000000,0.250000,0,0);}
.m2d_c01023{transform:matrix(0.313901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313901,0.000000,0.000000,0.250000,0,0);}
.m7b_c01023{transform:matrix(0.314754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314754,0.000000,0.000000,0.250000,0,0);}
.m9f_c01023{transform:matrix(0.314980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314980,0.000000,0.000000,0.250000,0,0);}
.m6b_c01023{transform:matrix(0.315243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315243,0.000000,0.000000,0.250000,0,0);}
.m7f_c01023{transform:matrix(0.316244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316244,0.000000,0.000000,0.250000,0,0);}
.m3b_c01023{transform:matrix(0.316494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316494,0.000000,0.000000,0.250000,0,0);}
.m21_c01023{transform:matrix(0.316548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316548,0.000000,0.000000,0.250000,0,0);}
.m89_c01023{transform:matrix(0.316731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316731,0.000000,0.000000,0.250000,0,0);}
.m7_c01023{transform:matrix(0.317080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317080,0.000000,0.000000,0.250000,0,0);}
.m2f_c01023{transform:matrix(0.317363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317363,0.000000,0.000000,0.250000,0,0);}
.m48_c01023{transform:matrix(0.317662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317662,0.000000,0.000000,0.250000,0,0);}
.m84_c01023{transform:matrix(0.317822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317822,0.000000,0.000000,0.250000,0,0);}
.m25_c01023{transform:matrix(0.318157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318157,0.000000,0.000000,0.250000,0,0);}
.m81_c01023{transform:matrix(0.319000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319000,0.000000,0.000000,0.250000,0,0);}
.m66_c01023{transform:matrix(0.319381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319381,0.000000,0.000000,0.250000,0,0);}
.m9b_c01023{transform:matrix(0.319383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319383,0.000000,0.000000,0.250000,0,0);}
.m19_c01023{transform:matrix(0.321151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321151,0.000000,0.000000,0.250000,0,0);}
.mab_c01023{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);}
.m7e_c01023{transform:matrix(0.322034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322034,0.000000,0.000000,0.250000,0,0);}
.m6c_c01023{transform:matrix(0.322998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322998,0.000000,0.000000,0.250000,0,0);}
.m69_c01023{transform:matrix(0.325420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325420,0.000000,0.000000,0.250000,0,0);}
.m52_c01023{transform:matrix(0.326587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326587,0.000000,0.000000,0.250000,0,0);}
.m3_c01023{transform:matrix(0.328204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328204,0.000000,0.000000,0.250000,0,0);}
.m9_c01023{transform:matrix(0.330017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330017,0.000000,0.000000,0.250000,0,0);}
.ma9_c01023{transform:matrix(0.331212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331212,0.000000,0.000000,0.250000,0,0);}
.m5a_c01023{transform:matrix(0.331994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331994,0.000000,0.000000,0.250000,0,0);}
.m64_c01023{transform:matrix(0.334661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334661,0.000000,0.000000,0.250000,0,0);}
.m60_c01023{transform:matrix(0.335052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335052,0.000000,0.000000,0.250000,0,0);}
.m6d_c01023{transform:matrix(0.336239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336239,0.000000,0.000000,0.250000,0,0);}
.m55_c01023{transform:matrix(0.338421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338421,0.000000,0.000000,0.250000,0,0);}
.m6f_c01023{transform:matrix(0.341123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341123,0.000000,0.000000,0.250000,0,0);}
.m82_c01023{transform:matrix(0.341570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341570,0.000000,0.000000,0.250000,0,0);}
.m85_c01023{transform:matrix(0.341895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341895,0.000000,0.000000,0.250000,0,0);}
.m2e_c01023{transform:matrix(0.342181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342181,0.000000,0.000000,0.250000,0,0);}
.m76_c01023{transform:matrix(0.345477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345477,0.000000,0.000000,0.250000,0,0);}
.m96_c01023{transform:matrix(0.348305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348305,0.000000,0.000000,0.250000,0,0);}
.m1b_c01023{transform:matrix(0.349926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349926,0.000000,0.000000,0.250000,0,0);}
.me_c01023{transform:matrix(0.351715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351715,0.000000,0.000000,0.250000,0,0);}
.m41_c01023{transform:matrix(0.374684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374684,0.000000,0.000000,0.250000,0,0);}
.m3f_c01023{transform:matrix(0.380631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380631,0.000000,0.000000,0.250000,0,0);}
.v0_c01023{vertical-align:0.000000px;}
.ls5_c01023{letter-spacing:-2.778930px;}
.ls2_c01023{letter-spacing:0.000000px;}
.ls8_c01023{letter-spacing:0.440710px;}
.ls10_c01023{letter-spacing:0.468448px;}
.lsf_c01023{letter-spacing:1.834094px;}
.ls6_c01023{letter-spacing:1.881733px;}
.lsd_c01023{letter-spacing:2.572495px;}
.lse_c01023{letter-spacing:2.588375px;}
.ls9_c01023{letter-spacing:3.623400px;}
.ls3_c01023{letter-spacing:3.742200px;}
.ls7_c01023{letter-spacing:3.787285px;}
.ls4_c01023{letter-spacing:3.969900px;}
.lsa_c01023{letter-spacing:4.059000px;}
.ls1_c01023{letter-spacing:4.296610px;}
.ls0_c01023{letter-spacing:8.174518px;}
.lsc_c01023{letter-spacing:57.024198px;}
.lsb_c01023{letter-spacing:58.449798px;}
.ls11_c01023{letter-spacing:62.726400px;}
.sc__c01023{text-shadow:none;}
.sc0_c01023{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01023{-webkit-text-stroke:0px transparent;}
.sc0_c01023{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01023{word-spacing:-1.429164px;}
.ws1_c01023{word-spacing:0.000000px;}
._1_c01023{margin-left:-50.893920px;}
._0_c01023{width:26.280936px;}
.fc0_c01023{color:transparent;}
.fs1_c01023{font-size:27.720000px;}
.fsb_c01023{font-size:44.352000px;}
.fs8_c01023{font-size:57.024198px;}
.fs7_c01023{font-size:58.449798px;}
.fsa_c01023{font-size:62.726400px;}
.fs9_c01023{font-size:66.330000px;}
.fs4_c01023{font-size:71.082198px;}
.fs5_c01023{font-size:72.468000px;}
.fsc_c01023{font-size:72.864000px;}
.fs2_c01023{font-size:74.844000px;}
.fs3_c01023{font-size:79.398000px;}
.fs6_c01023{font-size:81.180000px;}
.fs0_c01023{font-size:85.932198px;}
.y0_c01023{bottom:0.000000px;}
.y1_c01023{bottom:76.500000px;}
.y1c_c01023{bottom:185.239935px;}
.y1b_c01023{bottom:217.667385px;}
.y1a_c01023{bottom:249.035535px;}
.y18_c01023{bottom:249.391935px;}
.y19_c01023{bottom:256.163535px;}
.y17_c01023{bottom:281.111535px;}
.y16_c01023{bottom:312.474735px;}
.y15_c01023{bottom:344.194335px;}
.y14_c01023{bottom:375.196185px;}
.y13_c01023{bottom:407.633535px;}
.y12_c01023{bottom:439.704585px;}
.y11_c01023{bottom:471.429135px;}
.y10_c01023{bottom:503.500185px;}
.yf_c01023{bottom:535.219785px;}
.ye_c01023{bottom:567.300735px;}
.yd_c01023{bottom:599.015385px;}
.yc_c01023{bottom:662.103135px;}
.yb_c01023{bottom:694.174185px;}
.ya_c01023{bottom:725.898735px;}
.y9_c01023{bottom:757.261935px;}
.y8_c01023{bottom:788.976585px;}
.y7_c01023{bottom:820.701135px;}
.y6_c01023{bottom:852.772185px;}
.y5_c01023{bottom:884.496735px;}
.y4_c01023{bottom:916.567785px;}
.y3_c01023{bottom:981.437535px;}
.y2_c01023{bottom:1052.712585px;}
.h3_c01023{height:28.911094px;}
.ha_c01023{height:37.978116px;}
.h9_c01023{height:38.927565px;}
.hc_c01023{height:41.775782px;}
.hd_c01023{height:46.257750px;}
.hb_c01023{height:69.180117px;}
.h7_c01023{height:71.123379px;}
.he_c01023{height:71.512031px;}
.h4_c01023{height:73.455293px;}
.h6_c01023{height:74.136511px;}
.h5_c01023{height:77.924795px;}
.h8_c01023{height:79.673730px;}
.h2_c01023{height:84.337753px;}
.h1_c01023{height:1110.000000px;}
.h0_c01023{height:1263.000000px;}
.w1_c01023{width:763.500000px;}
.w0_c01023{width:892.500000px;}
.x0_c01023{left:0.000000px;}
.x1_c01023{left:64.500000px;}
.xf_c01023{left:79.854435px;}
.x33_c01023{left:81.161235px;}
.x29_c01023{left:112.445235px;}
.x4d_c01023{left:113.514435px;}
.x3a_c01023{left:122.775885px;}
.x10_c01023{left:124.409385px;}
.x18_c01023{left:125.790435px;}
.x4_c01023{left:135.185535px;}
.x62_c01023{left:145.941885px;}
.x34_c01023{left:147.451635px;}
.x11_c01023{left:157.554585px;}
.x5_c01023{left:169.226685px;}
.x5e_c01023{left:170.587935px;}
.x35_c01023{left:178.418835px;}
.x4e_c01023{left:180.364185px;}
.x5a_c01023{left:190.783935px;}
.x19_c01023{left:191.818485px;}
.x2d_c01023{left:201.728385px;}
.x4f_c01023{left:212.756985px;}
.x6_c01023{left:223.795485px;}
.x49_c01023{left:225.141885px;}
.x36_c01023{left:235.952685px;}
.x2e_c01023{left:245.540835px;}
.x1a_c01023{left:246.872385px;}
.x37_c01023{left:256.777335px;}
.x4a_c01023{left:258.608835px;}
.x2a_c01023{left:268.746435px;}
.x1b_c01023{left:278.522685px;}
.x5b_c01023{left:282.155985px;}
.x12_c01023{left:290.803635px;}
.x58_c01023{left:291.917385px;}
.x3e_c01023{left:302.901435px;}
.x3_c01023{left:314.103285px;}
.x4b_c01023{left:324.701235px;}
.x55_c01023{left:325.765485px;}
.x24_c01023{left:335.710035px;}
.x3f_c01023{left:347.114835px;}
.x1c_c01023{left:357.346485px;}
.x52_c01023{left:358.494885px;}
.x3b_c01023{left:367.998885px;}
.x13_c01023{left:379.581885px;}
.x25_c01023{left:390.768885px;}
.x7_c01023{left:393.065685px;}
.x4c_c01023{left:403.064685px;}
.x8_c01023{left:412.727085px;}
.x14_c01023{left:414.380385px;}
.x3c_c01023{left:424.701135px;}
.x1d_c01023{left:435.170385px;}
.x5f_c01023{left:436.239585px;}
.x44_c01023{left:445.322835px;}
.x26_c01023{left:446.594985px;}
.x2f_c01023{left:457.282035px;}
.x9_c01023{left:459.286785px;}
.xa_c01023{left:468.107685px;}
.x53_c01023{left:470.053035px;}
.x27_c01023{left:478.472985px;}
.x1e_c01023{left:479.680785px;}
.x30_c01023{left:490.100535px;}
.x40_c01023{left:502.416135px;}
.x54_c01023{left:511.652835px;}
.x50_c01023{left:513.236835px;}
.x1f_c01023{left:523.344735px;}
.x56_c01023{left:525.230685px;}
.xb_c01023{left:533.710035px;}
.x2b_c01023{left:535.892985px;}
.x15_c01023{left:545.664285px;}
.x45_c01023{left:547.446285px;}
.x20_c01023{left:557.658135px;}
.x43_c01023{left:568.444185px;}
.x46_c01023{left:569.503485px;}
.xc_c01023{left:578.809485px;}
.x41_c01023{left:579.858885px;}
.x16_c01023{left:589.862835px;}
.x2c_c01023{left:600.906285px;}
.x31_c01023{left:601.955685px;}
.xd_c01023{left:611.731935px;}
.x61_c01023{left:613.023885px;}
.x60_c01023{left:615.553335px;}
.x17_c01023{left:622.097235px;}
.x28_c01023{left:624.037635px;}
.x32_c01023{left:634.640535px;}
.x21_c01023{left:645.753285px;}
.x47_c01023{left:647.772885px;}
.x38_c01023{left:656.375985px;}
.x51_c01023{left:657.460035px;}
.x2_c01023{left:667.107585px;}
.x48_c01023{left:669.255885px;}
.x22_c01023{left:678.250035px;}
.x39_c01023{left:689.268735px;}
.x42_c01023{left:691.199235px;}
.x59_c01023{left:698.322285px;}
.x3d_c01023{left:701.020035px;}
.x5c_c01023{left:703.227735px;}
.xe_c01023{left:711.756585px;}
.x57_c01023{left:721.572435px;}
.x23_c01023{left:722.775285px;}
.x5d_c01023{left:733.259385px;}
@media print{
.v0_c01023{vertical-align:0.000000pt;}
.ls5_c01023{letter-spacing:-2.470160pt;}
.ls2_c01023{letter-spacing:0.000000pt;}
.ls8_c01023{letter-spacing:0.391742pt;}
.ls10_c01023{letter-spacing:0.416398pt;}
.lsf_c01023{letter-spacing:1.630306pt;}
.ls6_c01023{letter-spacing:1.672651pt;}
.lsd_c01023{letter-spacing:2.286662pt;}
.lse_c01023{letter-spacing:2.300778pt;}
.ls9_c01023{letter-spacing:3.220800pt;}
.ls3_c01023{letter-spacing:3.326400pt;}
.ls7_c01023{letter-spacing:3.366475pt;}
.ls4_c01023{letter-spacing:3.528800pt;}
.lsa_c01023{letter-spacing:3.608000pt;}
.ls1_c01023{letter-spacing:3.819209pt;}
.ls0_c01023{letter-spacing:7.266238pt;}
.lsc_c01023{letter-spacing:50.688176pt;}
.lsb_c01023{letter-spacing:51.955376pt;}
.ls11_c01023{letter-spacing:55.756800pt;}
.ws0_c01023{word-spacing:-1.270368pt;}
.ws1_c01023{word-spacing:0.000000pt;}
._1_c01023{margin-left:-45.239040pt;}
._0_c01023{width:23.360832pt;}
.fs1_c01023{font-size:24.640000pt;}
.fsb_c01023{font-size:39.424000pt;}
.fs8_c01023{font-size:50.688176pt;}
.fs7_c01023{font-size:51.955376pt;}
.fsa_c01023{font-size:55.756800pt;}
.fs9_c01023{font-size:58.960000pt;}
.fs4_c01023{font-size:63.184176pt;}
.fs5_c01023{font-size:64.416000pt;}
.fsc_c01023{font-size:64.768000pt;}
.fs2_c01023{font-size:66.528000pt;}
.fs3_c01023{font-size:70.576000pt;}
.fs6_c01023{font-size:72.160000pt;}
.fs0_c01023{font-size:76.384176pt;}
.y0_c01023{bottom:0.000000pt;}
.y1_c01023{bottom:68.000000pt;}
.y1c_c01023{bottom:164.657720pt;}
.y1b_c01023{bottom:193.482120pt;}
.y1a_c01023{bottom:221.364920pt;}
.y18_c01023{bottom:221.681720pt;}
.y19_c01023{bottom:227.700920pt;}
.y17_c01023{bottom:249.876920pt;}
.y16_c01023{bottom:277.755320pt;}
.y15_c01023{bottom:305.950520pt;}
.y14_c01023{bottom:333.507720pt;}
.y13_c01023{bottom:362.340920pt;}
.y12_c01023{bottom:390.848520pt;}
.y11_c01023{bottom:419.048120pt;}
.y10_c01023{bottom:447.555720pt;}
.yf_c01023{bottom:475.750920pt;}
.ye_c01023{bottom:504.267320pt;}
.yd_c01023{bottom:532.458120pt;}
.yc_c01023{bottom:588.536120pt;}
.yb_c01023{bottom:617.043720pt;}
.ya_c01023{bottom:645.243320pt;}
.y9_c01023{bottom:673.121720pt;}
.y8_c01023{bottom:701.312520pt;}
.y7_c01023{bottom:729.512120pt;}
.y6_c01023{bottom:758.019720pt;}
.y5_c01023{bottom:786.219320pt;}
.y4_c01023{bottom:814.726920pt;}
.y3_c01023{bottom:872.388920pt;}
.y2_c01023{bottom:935.744520pt;}
.h3_c01023{height:25.698750pt;}
.ha_c01023{height:33.758325pt;}
.h9_c01023{height:34.602280pt;}
.hc_c01023{height:37.134029pt;}
.hd_c01023{height:41.118000pt;}
.hb_c01023{height:61.493438pt;}
.h7_c01023{height:63.220781pt;}
.he_c01023{height:63.566250pt;}
.h4_c01023{height:65.293594pt;}
.h6_c01023{height:65.899121pt;}
.h5_c01023{height:69.266484pt;}
.h8_c01023{height:70.821094pt;}
.h2_c01023{height:74.966891pt;}
.h1_c01023{height:986.666667pt;}
.h0_c01023{height:1122.666667pt;}
.w1_c01023{width:678.666667pt;}
.w0_c01023{width:793.333333pt;}
.x0_c01023{left:0.000000pt;}
.x1_c01023{left:57.333333pt;}
.xf_c01023{left:70.981720pt;}
.x33_c01023{left:72.143320pt;}
.x29_c01023{left:99.951320pt;}
.x4d_c01023{left:100.901720pt;}
.x3a_c01023{left:109.134120pt;}
.x10_c01023{left:110.586120pt;}
.x18_c01023{left:111.813720pt;}
.x4_c01023{left:120.164920pt;}
.x62_c01023{left:129.726120pt;}
.x34_c01023{left:131.068120pt;}
.x11_c01023{left:140.048520pt;}
.x5_c01023{left:150.423720pt;}
.x5e_c01023{left:151.633720pt;}
.x35_c01023{left:158.594520pt;}
.x4e_c01023{left:160.323720pt;}
.x5a_c01023{left:169.585720pt;}
.x19_c01023{left:170.505320pt;}
.x2d_c01023{left:179.314120pt;}
.x4f_c01023{left:189.117320pt;}
.x6_c01023{left:198.929320pt;}
.x49_c01023{left:200.126120pt;}
.x36_c01023{left:209.735720pt;}
.x2e_c01023{left:218.258520pt;}
.x1a_c01023{left:219.442120pt;}
.x37_c01023{left:228.246520pt;}
.x4a_c01023{left:229.874520pt;}
.x2a_c01023{left:238.885720pt;}
.x1b_c01023{left:247.575720pt;}
.x5b_c01023{left:250.805320pt;}
.x12_c01023{left:258.492120pt;}
.x58_c01023{left:259.482120pt;}
.x3e_c01023{left:269.245720pt;}
.x3_c01023{left:279.202920pt;}
.x4b_c01023{left:288.623320pt;}
.x55_c01023{left:289.569320pt;}
.x24_c01023{left:298.408920pt;}
.x3f_c01023{left:308.546520pt;}
.x1c_c01023{left:317.641320pt;}
.x52_c01023{left:318.662120pt;}
.x3b_c01023{left:327.110120pt;}
.x13_c01023{left:337.406120pt;}
.x25_c01023{left:347.350120pt;}
.x7_c01023{left:349.391720pt;}
.x4c_c01023{left:358.279720pt;}
.x8_c01023{left:366.868520pt;}
.x14_c01023{left:368.338120pt;}
.x3c_c01023{left:377.512120pt;}
.x1d_c01023{left:386.818120pt;}
.x5f_c01023{left:387.768520pt;}
.x44_c01023{left:395.842520pt;}
.x26_c01023{left:396.973320pt;}
.x2f_c01023{left:406.472920pt;}
.x9_c01023{left:408.254920pt;}
.xa_c01023{left:416.095720pt;}
.x53_c01023{left:417.824920pt;}
.x27_c01023{left:425.309320pt;}
.x1e_c01023{left:426.382920pt;}
.x30_c01023{left:435.644920pt;}
.x40_c01023{left:446.592120pt;}
.x54_c01023{left:454.802520pt;}
.x50_c01023{left:456.210520pt;}
.x1f_c01023{left:465.195320pt;}
.x56_c01023{left:466.871720pt;}
.xb_c01023{left:474.408920pt;}
.x2b_c01023{left:476.349320pt;}
.x15_c01023{left:485.034920pt;}
.x45_c01023{left:486.618920pt;}
.x20_c01023{left:495.696120pt;}
.x43_c01023{left:505.283720pt;}
.x46_c01023{left:506.225320pt;}
.xc_c01023{left:514.497320pt;}
.x41_c01023{left:515.430120pt;}
.x16_c01023{left:524.322520pt;}
.x2c_c01023{left:534.138920pt;}
.x31_c01023{left:535.071720pt;}
.xd_c01023{left:543.761720pt;}
.x61_c01023{left:544.910120pt;}
.x60_c01023{left:547.158520pt;}
.x17_c01023{left:552.975320pt;}
.x28_c01023{left:554.700120pt;}
.x32_c01023{left:564.124920pt;}
.x21_c01023{left:574.002920pt;}
.x47_c01023{left:575.798120pt;}
.x38_c01023{left:583.445320pt;}
.x51_c01023{left:584.408920pt;}
.x2_c01023{left:592.984520pt;}
.x48_c01023{left:594.894120pt;}
.x22_c01023{left:602.888920pt;}
.x39_c01023{left:612.683320pt;}
.x42_c01023{left:614.399320pt;}
.x59_c01023{left:620.730920pt;}
.x3d_c01023{left:623.128920pt;}
.x5c_c01023{left:625.091320pt;}
.xe_c01023{left:632.672520pt;}
.x57_c01023{left:641.397720pt;}
.x23_c01023{left:642.466920pt;}
.x5d_c01023{left:651.786120pt;}
}





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

.ir_c01024:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01024{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01024;src:url('chunks/assets/font_82607997f07f23003a5e51dd.woff2')format("woff");}.ff1_c01024{font-family:ff1_c01024;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01024;src:url('chunks/assets/font_59fd9fc96038ff8b07973a66.woff2')format("woff");}.ff2_c01024{font-family:ff2_c01024;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01024;src:url('chunks/assets/font_c5473d347cf640d7fdaff4e5.woff2')format("woff");}.ff3_c01024{font-family:ff3_c01024;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01024;src:url('chunks/assets/font_76ed1e1fda51f6ccf059a66b.woff2')format("woff");}.ff4_c01024{font-family:ff4_c01024;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m9f_c01024{transform:matrix(0.167261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167261,0.000000,0.000000,0.250000,0,0);}
.m9c_c01024{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m9_c01024{transform:matrix(0.177632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177632,0.000000,0.000000,0.250000,0,0);}
.m99_c01024{transform:matrix(0.180640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180640,0.000000,0.000000,0.250000,0,0);}
.m9b_c01024{transform:matrix(0.181548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181548,0.000000,0.000000,0.250000,0,0);}
.ma3_c01024{transform:matrix(0.206389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206389,0.000000,0.000000,0.250000,0,0);}
.m8e_c01024{transform:matrix(0.208163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208163,0.000000,0.000000,0.250000,0,0);}
.m8d_c01024{transform:matrix(0.212499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212499,0.000000,0.000000,0.250000,0,0);}
.m50_c01024{transform:matrix(0.215812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215812,0.000000,0.000000,0.250000,0,0);}
.m33_c01024{transform:matrix(0.216233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216233,0.000000,0.000000,0.250000,0,0);}
.m9d_c01024{transform:matrix(0.217041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217041,0.000000,0.000000,0.250000,0,0);}
.ma5_c01024{transform:matrix(0.220377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220377,0.000000,0.000000,0.250000,0,0);}
.m72_c01024{transform:matrix(0.241434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241434,0.000000,0.000000,0.250000,0,0);}
.m62_c01024{transform:matrix(0.243926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243926,0.000000,0.000000,0.250000,0,0);}
.m0_c01024{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m59_c01024{transform:matrix(0.250919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250919,0.000000,0.000000,0.250000,0,0);}
.m5b_c01024{transform:matrix(0.251593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251593,0.000000,0.000000,0.250000,0,0);}
.m77_c01024{transform:matrix(0.252064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252064,0.000000,0.000000,0.250000,0,0);}
.ma1_c01024{transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);}
.me_c01024{transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);}
.m3c_c01024{transform:matrix(0.257128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257128,0.000000,0.000000,0.250000,0,0);}
.m41_c01024{transform:matrix(0.258289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258289,0.000000,0.000000,0.250000,0,0);}
.m75_c01024{transform:matrix(0.258294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258294,0.000000,0.000000,0.250000,0,0);}
.m21_c01024{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m2e_c01024{transform:matrix(0.259741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259741,0.000000,0.000000,0.250000,0,0);}
.m9a_c01024{transform:matrix(0.260268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260268,0.000000,0.000000,0.250000,0,0);}
.m95_c01024{transform:matrix(0.260559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260559,0.000000,0.000000,0.250000,0,0);}
.mb_c01024{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m4e_c01024{transform:matrix(0.262838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262838,0.000000,0.000000,0.250000,0,0);}
.m4_c01024{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m18_c01024{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m4f_c01024{transform:matrix(0.264635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264635,0.000000,0.000000,0.250000,0,0);}
.m55_c01024{transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);}
.m6b_c01024{transform:matrix(0.266343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266343,0.000000,0.000000,0.250000,0,0);}
.m5a_c01024{transform:matrix(0.266631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266631,0.000000,0.000000,0.250000,0,0);}
.m5d_c01024{transform:matrix(0.267199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267199,0.000000,0.000000,0.250000,0,0);}
.m1f_c01024{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m52_c01024{transform:matrix(0.268100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268100,0.000000,0.000000,0.250000,0,0);}
.m51_c01024{transform:matrix(0.268188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268188,0.000000,0.000000,0.250000,0,0);}
.m1c_c01024{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.m6a_c01024{transform:matrix(0.269245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269245,0.000000,0.000000,0.250000,0,0);}
.md_c01024{transform:matrix(0.269318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269318,0.000000,0.000000,0.250000,0,0);}
.m24_c01024{transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);}
.m7a_c01024{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m90_c01024{transform:matrix(0.270938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270938,0.000000,0.000000,0.250000,0,0);}
.m85_c01024{transform:matrix(0.271794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271794,0.000000,0.000000,0.250000,0,0);}
.m2b_c01024{transform:matrix(0.272614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272614,0.000000,0.000000,0.250000,0,0);}
.m74_c01024{transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);}
.m87_c01024{transform:matrix(0.273418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273418,0.000000,0.000000,0.250000,0,0);}
.m66_c01024{transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);}
.mab_c01024{transform:matrix(0.273830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273830,0.000000,0.000000,0.250000,0,0);}
.m53_c01024{transform:matrix(0.275308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275308,0.000000,0.000000,0.250000,0,0);}
.maa_c01024{transform:matrix(0.275470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275470,0.000000,0.000000,0.250000,0,0);}
.m34_c01024{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m8b_c01024{transform:matrix(0.275906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275906,0.000000,0.000000,0.250000,0,0);}
.m1e_c01024{transform:matrix(0.276265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276265,0.000000,0.000000,0.250000,0,0);}
.m12_c01024{transform:matrix(0.276488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276488,0.000000,0.000000,0.250000,0,0);}
.m56_c01024{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m31_c01024{transform:matrix(0.277421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277421,0.000000,0.000000,0.250000,0,0);}
.m43_c01024{transform:matrix(0.278057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278057,0.000000,0.000000,0.250000,0,0);}
.m10_c01024{transform:matrix(0.278456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278456,0.000000,0.000000,0.250000,0,0);}
.m8c_c01024{transform:matrix(0.278893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278893,0.000000,0.000000,0.250000,0,0);}
.ma_c01024{transform:matrix(0.279011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279011,0.000000,0.000000,0.250000,0,0);}
.m94_c01024{transform:matrix(0.279639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279639,0.000000,0.000000,0.250000,0,0);}
.m68_c01024{transform:matrix(0.280247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280247,0.000000,0.000000,0.250000,0,0);}
.m98_c01024{transform:matrix(0.280881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280881,0.000000,0.000000,0.250000,0,0);}
.m32_c01024{transform:matrix(0.281190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281190,0.000000,0.000000,0.250000,0,0);}
.m8a_c01024{transform:matrix(0.283165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283165,0.000000,0.000000,0.250000,0,0);}
.m69_c01024{transform:matrix(0.283721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283721,0.000000,0.000000,0.250000,0,0);}
.m2c_c01024{transform:matrix(0.284092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284092,0.000000,0.000000,0.250000,0,0);}
.m97_c01024{transform:matrix(0.284644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284644,0.000000,0.000000,0.250000,0,0);}
.m7b_c01024{transform:matrix(0.284870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284870,0.000000,0.000000,0.250000,0,0);}
.m5e_c01024{transform:matrix(0.285251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285251,0.000000,0.000000,0.250000,0,0);}
.m45_c01024{transform:matrix(0.285422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285422,0.000000,0.000000,0.250000,0,0);}
.m38_c01024{transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);}
.ma8_c01024{transform:matrix(0.286496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286496,0.000000,0.000000,0.250000,0,0);}
.m6c_c01024{transform:matrix(0.287001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287001,0.000000,0.000000,0.250000,0,0);}
.m92_c01024{transform:matrix(0.287284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287284,0.000000,0.000000,0.250000,0,0);}
.m4d_c01024{transform:matrix(0.287518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287518,0.000000,0.000000,0.250000,0,0);}
.m67_c01024{transform:matrix(0.287640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287640,0.000000,0.000000,0.250000,0,0);}
.m1_c01024{transform:matrix(0.288639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288639,0.000000,0.000000,0.250000,0,0);}
.m4c_c01024{transform:matrix(0.289026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289026,0.000000,0.000000,0.250000,0,0);}
.ma2_c01024{transform:matrix(0.289159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289159,0.000000,0.000000,0.250000,0,0);}
.mac_c01024{transform:matrix(0.289464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289464,0.000000,0.000000,0.250000,0,0);}
.m79_c01024{transform:matrix(0.289854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289854,0.000000,0.000000,0.250000,0,0);}
.m82_c01024{transform:matrix(0.291234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291234,0.000000,0.000000,0.250000,0,0);}
.mad_c01024{transform:matrix(0.291753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291753,0.000000,0.000000,0.250000,0,0);}
.m1a_c01024{transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);}
.m64_c01024{transform:matrix(0.291930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291930,0.000000,0.000000,0.250000,0,0);}
.m86_c01024{transform:matrix(0.292206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292206,0.000000,0.000000,0.250000,0,0);}
.m84_c01024{transform:matrix(0.292375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292375,0.000000,0.000000,0.250000,0,0);}
.m70_c01024{transform:matrix(0.292912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292912,0.000000,0.000000,0.250000,0,0);}
.m39_c01024{transform:matrix(0.293689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293689,0.000000,0.000000,0.250000,0,0);}
.m54_c01024{transform:matrix(0.294205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294205,0.000000,0.000000,0.250000,0,0);}
.m42_c01024{transform:matrix(0.295212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295212,0.000000,0.000000,0.250000,0,0);}
.m11_c01024{transform:matrix(0.295214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295214,0.000000,0.000000,0.250000,0,0);}
.m3f_c01024{transform:matrix(0.295219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295219,0.000000,0.000000,0.250000,0,0);}
.m2a_c01024{transform:matrix(0.295251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295251,0.000000,0.000000,0.250000,0,0);}
.m8f_c01024{transform:matrix(0.296027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296027,0.000000,0.000000,0.250000,0,0);}
.m44_c01024{transform:matrix(0.296530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296530,0.000000,0.000000,0.250000,0,0);}
.ma6_c01024{transform:matrix(0.296813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296813,0.000000,0.000000,0.250000,0,0);}
.m17_c01024{transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);}
.m78_c01024{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m6e_c01024{transform:matrix(0.297336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297336,0.000000,0.000000,0.250000,0,0);}
.m25_c01024{transform:matrix(0.298607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298607,0.000000,0.000000,0.250000,0,0);}
.m8_c01024{transform:matrix(0.299997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299997,0.000000,0.000000,0.250000,0,0);}
.m91_c01024{transform:matrix(0.300044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300044,0.000000,0.000000,0.250000,0,0);}
.m3b_c01024{transform:matrix(0.300129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300129,0.000000,0.000000,0.250000,0,0);}
.m93_c01024{transform:matrix(0.300831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300831,0.000000,0.000000,0.250000,0,0);}
.m15_c01024{transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);}
.m83_c01024{transform:matrix(0.301982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301982,0.000000,0.000000,0.250000,0,0);}
.m60_c01024{transform:matrix(0.302081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302081,0.000000,0.000000,0.250000,0,0);}
.m5f_c01024{transform:matrix(0.302288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302288,0.000000,0.000000,0.250000,0,0);}
.m76_c01024{transform:matrix(0.303299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303299,0.000000,0.000000,0.250000,0,0);}
.m3_c01024{transform:matrix(0.304368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304368,0.000000,0.000000,0.250000,0,0);}
.m71_c01024{transform:matrix(0.304542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304542,0.000000,0.000000,0.250000,0,0);}
.m23_c01024{transform:matrix(0.304616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304616,0.000000,0.000000,0.250000,0,0);}
.m47_c01024{transform:matrix(0.305475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305475,0.000000,0.000000,0.250000,0,0);}
.m16_c01024{transform:matrix(0.305533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305533,0.000000,0.000000,0.250000,0,0);}
.ma9_c01024{transform:matrix(0.306004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306004,0.000000,0.000000,0.250000,0,0);}
.m9e_c01024{transform:matrix(0.306485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306485,0.000000,0.000000,0.250000,0,0);}
.m14_c01024{transform:matrix(0.306699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306699,0.000000,0.000000,0.250000,0,0);}
.m7_c01024{transform:matrix(0.307213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307213,0.000000,0.000000,0.250000,0,0);}
.mf_c01024{transform:matrix(0.307477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307477,0.000000,0.000000,0.250000,0,0);}
.m6f_c01024{transform:matrix(0.307806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307806,0.000000,0.000000,0.250000,0,0);}
.m6d_c01024{transform:matrix(0.308557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308557,0.000000,0.000000,0.250000,0,0);}
.m6_c01024{transform:matrix(0.308883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308883,0.000000,0.000000,0.250000,0,0);}
.m1b_c01024{transform:matrix(0.311400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311400,0.000000,0.000000,0.250000,0,0);}
.m57_c01024{transform:matrix(0.311458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311458,0.000000,0.000000,0.250000,0,0);}
.m49_c01024{transform:matrix(0.311728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311728,0.000000,0.000000,0.250000,0,0);}
.m58_c01024{transform:matrix(0.312220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312220,0.000000,0.000000,0.250000,0,0);}
.m65_c01024{transform:matrix(0.313396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313396,0.000000,0.000000,0.250000,0,0);}
.m26_c01024{transform:matrix(0.313416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313416,0.000000,0.000000,0.250000,0,0);}
.m30_c01024{transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313576,0.000000,0.000000,0.250000,0,0);}
.m48_c01024{transform:matrix(0.313640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313640,0.000000,0.000000,0.250000,0,0);}
.m2f_c01024{transform:matrix(0.315474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315474,0.000000,0.000000,0.250000,0,0);}
.m46_c01024{transform:matrix(0.315664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315664,0.000000,0.000000,0.250000,0,0);}
.mc_c01024{transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);}
.m7c_c01024{transform:matrix(0.316662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316662,0.000000,0.000000,0.250000,0,0);}
.m2_c01024{transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);}
.m22_c01024{transform:matrix(0.319808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319808,0.000000,0.000000,0.250000,0,0);}
.m35_c01024{transform:matrix(0.321283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321283,0.000000,0.000000,0.250000,0,0);}
.m36_c01024{transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);}
.m80_c01024{transform:matrix(0.323559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323559,0.000000,0.000000,0.250000,0,0);}
.m3a_c01024{transform:matrix(0.324910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324910,0.000000,0.000000,0.250000,0,0);}
.m5c_c01024{transform:matrix(0.327076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327076,0.000000,0.000000,0.250000,0,0);}
.ma4_c01024{transform:matrix(0.327350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327350,0.000000,0.000000,0.250000,0,0);}
.ma7_c01024{transform:matrix(0.328480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328480,0.000000,0.000000,0.250000,0,0);}
.m63_c01024{transform:matrix(0.330710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330710,0.000000,0.000000,0.250000,0,0);}
.m28_c01024{transform:matrix(0.330729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330729,0.000000,0.000000,0.250000,0,0);}
.m89_c01024{transform:matrix(0.332170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332170,0.000000,0.000000,0.250000,0,0);}
.m19_c01024{transform:matrix(0.332348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332348,0.000000,0.000000,0.250000,0,0);}
.m2d_c01024{transform:matrix(0.332499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332499,0.000000,0.000000,0.250000,0,0);}
.m73_c01024{transform:matrix(0.332788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332788,0.000000,0.000000,0.250000,0,0);}
.m1d_c01024{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m29_c01024{transform:matrix(0.333791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333791,0.000000,0.000000,0.250000,0,0);}
.m3e_c01024{transform:matrix(0.334644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334644,0.000000,0.000000,0.250000,0,0);}
.m7f_c01024{transform:matrix(0.335112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335112,0.000000,0.000000,0.250000,0,0);}
.m40_c01024{transform:matrix(0.335561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335561,0.000000,0.000000,0.250000,0,0);}
.m96_c01024{transform:matrix(0.338364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338364,0.000000,0.000000,0.250000,0,0);}
.m61_c01024{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m20_c01024{transform:matrix(0.343013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343013,0.000000,0.000000,0.250000,0,0);}
.m7d_c01024{transform:matrix(0.343060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343060,0.000000,0.000000,0.250000,0,0);}
.m37_c01024{transform:matrix(0.348384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348384,0.000000,0.000000,0.250000,0,0);}
.m81_c01024{transform:matrix(0.352319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352319,0.000000,0.000000,0.250000,0,0);}
.m4a_c01024{transform:matrix(0.360581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360581,0.000000,0.000000,0.250000,0,0);}
.m4b_c01024{transform:matrix(0.361241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361241,0.000000,0.000000,0.250000,0,0);}
.m7e_c01024{transform:matrix(0.363298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363298,0.000000,0.000000,0.250000,0,0);}
.m5_c01024{transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);}
.m88_c01024{transform:matrix(0.377007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377007,0.000000,0.000000,0.250000,0,0);}
.m3d_c01024{transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);}
.m13_c01024{transform:matrix(0.385437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385437,0.000000,0.000000,0.250000,0,0);}
.m27_c01024{transform:matrix(0.391460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391460,0.000000,0.000000,0.250000,0,0);}
.ma0_c01024{transform:matrix(0.648442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.648442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.648442,0.000000,0.000000,0.250000,0,0);}
.v1_c01024{vertical-align:-86.961600px;}
.v0_c01024{vertical-align:0.000000px;}
.lsc_c01024{letter-spacing:-2.744280px;}
.ls9_c01024{letter-spacing:-1.427026px;}
.ls1_c01024{letter-spacing:0.000000px;}
.ls14_c01024{letter-spacing:0.514800px;}
.lsd_c01024{letter-spacing:0.917374px;}
.ls3_c01024{letter-spacing:1.113394px;}
.ls6_c01024{letter-spacing:1.340777px;}
.ls0_c01024{letter-spacing:2.062130px;}
.lsf_c01024{letter-spacing:2.642350px;}
.lsa_c01024{letter-spacing:2.701512px;}
.lse_c01024{letter-spacing:3.425400px;}
.lsb_c01024{letter-spacing:3.742200px;}
.ls2_c01024{letter-spacing:3.781810px;}
.ls4_c01024{letter-spacing:3.920400px;}
.ls7_c01024{letter-spacing:3.969900px;}
.ls12_c01024{letter-spacing:4.207500px;}
.ls10_c01024{letter-spacing:4.316400px;}
.ls8_c01024{letter-spacing:49.896198px;}
.ls5_c01024{letter-spacing:54.172998px;}
.ls11_c01024{letter-spacing:58.449798px;}
.ls13_c01024{letter-spacing:59.875398px;}
.sc__c01024{text-shadow:none;}
.sc0_c01024{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01024{-webkit-text-stroke:0px transparent;}
.sc0_c01024{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01024{word-spacing:-19.602000px;}
.ws1_c01024{word-spacing:-0.187387px;}
.ws2_c01024{word-spacing:0.000000px;}
._4_c01024{width:2.979504px;}
._3_c01024{width:6.194232px;}
._2_c01024{width:8.311248px;}
._1_c01024{width:11.682792px;}
._0_c01024{width:27.991656px;}
._5_c01024{width:820.230840px;}
.fc0_c01024{color:transparent;}
.fsa_c01024{font-size:8.712198px;}
.fs12_c01024{font-size:10.296000px;}
.fs0_c01024{font-size:22.176000px;}
.fs1_c01024{font-size:27.720000px;}
.fsb_c01024{font-size:45.144000px;}
.fs6_c01024{font-size:49.896198px;}
.fs4_c01024{font-size:54.172998px;}
.fsf_c01024{font-size:58.449798px;}
.fs11_c01024{font-size:59.875398px;}
.fs13_c01024{font-size:60.192000px;}
.fsd_c01024{font-size:66.330000px;}
.fsc_c01024{font-size:68.508000px;}
.fs7_c01024{font-size:71.280000px;}
.fs8_c01024{font-size:74.844000px;}
.fs2_c01024{font-size:75.636198px;}
.fs3_c01024{font-size:78.408000px;}
.fs9_c01024{font-size:78.804000px;}
.fs5_c01024{font-size:79.398000px;}
.fs10_c01024{font-size:84.150000px;}
.fse_c01024{font-size:86.328000px;}
.y0_c01024{bottom:0.000000px;}
.y23_c01024{bottom:21.652320px;}
.y22_c01024{bottom:64.420320px;}
.y1_c01024{bottom:76.500000px;}
.y21_c01024{bottom:92.932320px;}
.y20_c01024{bottom:96.496320px;}
.y1e_c01024{bottom:144.605370px;}
.y1d_c01024{bottom:148.882170px;}
.y1f_c01024{bottom:149.599920px;}
.y1c_c01024{bottom:150.312720px;}
.y1b_c01024{bottom:186.665520px;}
.y3_c01024{bottom:254.381520px;}
.y1a_c01024{bottom:261.860970px;}
.y19_c01024{bottom:293.936970px;}
.y18_c01024{bottom:325.661520px;}
.y17_c01024{bottom:357.732570px;}
.y16_c01024{bottom:389.100720px;}
.y15_c01024{bottom:420.463920px;}
.y13_c01024{bottom:483.185370px;}
.y14_c01024{bottom:499.228320px;}
.y12_c01024{bottom:514.904970px;}
.y11_c01024{bottom:530.591520px;}
.y10_c01024{bottom:546.273120px;}
.yf_c01024{bottom:578.344170px;}
.ye_c01024{bottom:609.707370px;}
.yd_c01024{bottom:673.151520px;}
.yc_c01024{bottom:705.227520px;}
.yb_c01024{bottom:736.590720px;}
.ya_c01024{bottom:767.953920px;}
.y9_c01024{bottom:799.668570px;}
.y8_c01024{bottom:831.393120px;}
.y7_c01024{bottom:862.756320px;}
.y6_c01024{bottom:894.119520px;}
.y5_c01024{bottom:926.190570px;}
.y2_c01024{bottom:946.153920px;}
.y4_c01024{bottom:1063.048170px;}
.hc_c01024{height:8.550546px;}
.h14_c01024{height:10.104961px;}
.h2_c01024{height:23.128875px;}
.h3_c01024{height:28.911094px;}
.h8_c01024{height:33.230868px;}
.h6_c01024{height:36.079217px;}
.h11_c01024{height:38.927565px;}
.h13_c01024{height:39.877015px;}
.hd_c01024{height:47.083781px;}
.h15_c01024{height:62.778375px;}
.he_c01024{height:67.236855px;}
.hf_c01024{height:69.180117px;}
.ha_c01024{height:73.455293px;}
.h4_c01024{height:74.232792px;}
.h9_c01024{height:74.342813px;}
.h5_c01024{height:76.953164px;}
.hb_c01024{height:77.341816px;}
.h7_c01024{height:77.924795px;}
.h10_c01024{height:84.726211px;}
.h12_c01024{height:84.807422px;}
.h1_c01024{height:1110.000000px;}
.h0_c01024{height:1263.000000px;}
.w1_c01024{width:763.500000px;}
.w0_c01024{width:892.500000px;}
.x3_c01024{left:-3.449115px;}
.x0_c01024{left:0.000000px;}
.x2_c01024{left:46.828035px;}
.x1_c01024{left:64.500000px;}
.x32_c01024{left:70.394985px;}
.xf_c01024{left:72.018585px;}
.x40_c01024{left:81.121635px;}
.x3c_c01024{left:82.740285px;}
.x10_c01024{left:83.759985px;}
.x4b_c01024{left:102.812535px;}
.x55_c01024{left:103.861935px;}
.x2e_c01024{left:105.124185px;}
.x5f_c01024{left:113.885685px;}
.x37_c01024{left:114.935085px;}
.x6c_c01024{left:125.112285px;}
.x5_c01024{left:126.181485px;}
.x22_c01024{left:137.586285px;}
.x6d_c01024{left:147.377385px;}
.x56_c01024{left:148.624785px;}
.x33_c01024{left:149.629635px;}
.x39_c01024{left:159.272235px;}
.x6_c01024{left:171.374985px;}
.x47_c01024{left:181.047285px;}
.x2f_c01024{left:183.091635px;}
.x27_c01024{left:191.912535px;}
.x57_c01024{left:193.060935px;}
.x19_c01024{left:204.564735px;}
.x65_c01024{left:213.712335px;}
.x11_c01024{left:214.915185px;}
.x7_c01024{left:225.424035px;}
.x28_c01024{left:227.329785px;}
.x23_c01024{left:237.744585px;}
.x1a_c01024{left:247.882185px;}
.x60_c01024{left:259.351335px;}
.x12_c01024{left:260.356185px;}
.x24_c01024{left:270.508635px;}
.x66_c01024{left:271.800585px;}
.x53_c01024{left:276.948585px;}
.x54_c01024{left:280.349235px;}
.x29_c01024{left:281.512485px;}
.x3d_c01024{left:282.893535px;}
.x3a_c01024{left:291.754035px;}
.x5b_c01024{left:293.253885px;}
.x38_c01024{left:303.836985px;}
.x4c_c01024{left:314.147835px;}
.x8_c01024{left:315.791235px;}
.x58_c01024{left:335.591235px;}
.x13_c01024{left:336.987135px;}
.x61_c01024{left:338.818635px;}
.x9_c01024{left:348.881985px;}
.x1b_c01024{left:360.563985px;}
.x4f_c01024{left:369.899685px;}
.x14_c01024{left:371.325285px;}
.x30_c01024{left:381.155985px;}
.xa_c01024{left:382.428135px;}
.x5c_c01024{left:391.828185px;}
.x2a_c01024{left:393.471585px;}
.x48_c01024{left:404.178435px;}
.x62_c01024{left:413.974485px;}
.x1c_c01024{left:415.226835px;}
.x25_c01024{left:426.859335px;}
.x67_c01024{left:432.180585px;}
.x63_c01024{left:436.952385px;}
.x15_c01024{left:438.635385px;}
.x41_c01024{left:448.599735px;}
.x50_c01024{left:449.946135px;}
.x4d_c01024{left:458.163135px;}
.x1d_c01024{left:460.049085px;}
.x51_c01024{left:471.117285px;}
.x72_c01024{left:486.600885px;}
.xb_c01024{left:492.565635px;}
.x3e_c01024{left:502.030035px;}
.x6e_c01024{left:503.044785px;}
.x2b_c01024{left:504.554535px;}
.x49_c01024{left:514.820835px;}
.x1e_c01024{left:515.959335px;}
.xc_c01024{left:526.200885px;}
.x3f_c01024{left:535.833585px;}
.x5d_c01024{left:536.967135px;}
.x16_c01024{left:547.258185px;}
.x1f_c01024{left:548.475885px;}
.x34_c01024{left:559.217385px;}
.x6b_c01024{left:579.527235px;}
.x2c_c01024{left:581.249835px;}
.x42_c01024{left:591.095385px;}
.x3b_c01024{left:592.377435px;}
.xd_c01024{left:604.074285px;}
.x68_c01024{left:608.558985px;}
.x69_c01024{left:611.434935px;}
.x4a_c01024{left:613.187235px;}
.x35_c01024{left:614.424735px;}
.x59_c01024{left:624.250485px;}
.x6a_c01024{left:630.289485px;}
.x46_c01024{left:635.308785px;}
.x52_c01024{left:646.337385px;}
.x17_c01024{left:647.589735px;}
.x64_c01024{left:657.034335px;}
.x20_c01024{left:658.638135px;}
.x5a_c01024{left:667.711485px;}
.x5e_c01024{left:668.983635px;}
.x4_c01024{left:669.993435px;}
.x2d_c01024{left:679.695435px;}
.x26_c01024{left:681.101235px;}
.x70_c01024{left:689.837985px;}
.x43_c01024{left:690.897285px;}
.xe_c01024{left:693.778185px;}
.x71_c01024{left:697.559985px;}
.x31_c01024{left:701.970435px;}
.x21_c01024{left:703.826685px;}
.x4e_c01024{left:706.687785px;}
.x6f_c01024{left:711.236835px;}
.x18_c01024{left:713.825685px;}
.x44_c01024{left:714.870135px;}
.x36_c01024{left:725.651235px;}
.x45_c01024{left:741.476385px;}
@media print{
.v1_c01024{vertical-align:-77.299200pt;}
.v0_c01024{vertical-align:0.000000pt;}
.lsc_c01024{letter-spacing:-2.439360pt;}
.ls9_c01024{letter-spacing:-1.268467pt;}
.ls1_c01024{letter-spacing:0.000000pt;}
.ls14_c01024{letter-spacing:0.457600pt;}
.lsd_c01024{letter-spacing:0.815443pt;}
.ls3_c01024{letter-spacing:0.989683pt;}
.ls6_c01024{letter-spacing:1.191802pt;}
.ls0_c01024{letter-spacing:1.833005pt;}
.lsf_c01024{letter-spacing:2.348755pt;}
.lsa_c01024{letter-spacing:2.401344pt;}
.lse_c01024{letter-spacing:3.044800pt;}
.lsb_c01024{letter-spacing:3.326400pt;}
.ls2_c01024{letter-spacing:3.361609pt;}
.ls4_c01024{letter-spacing:3.484800pt;}
.ls7_c01024{letter-spacing:3.528800pt;}
.ls12_c01024{letter-spacing:3.740000pt;}
.ls10_c01024{letter-spacing:3.836800pt;}
.ls8_c01024{letter-spacing:44.352176pt;}
.ls5_c01024{letter-spacing:48.153776pt;}
.ls11_c01024{letter-spacing:51.955376pt;}
.ls13_c01024{letter-spacing:53.222576pt;}
.ws0_c01024{word-spacing:-17.424000pt;}
.ws1_c01024{word-spacing:-0.166566pt;}
.ws2_c01024{word-spacing:0.000000pt;}
._4_c01024{width:2.648448pt;}
._3_c01024{width:5.505984pt;}
._2_c01024{width:7.387776pt;}
._1_c01024{width:10.384704pt;}
._0_c01024{width:24.881472pt;}
._5_c01024{width:729.094080pt;}
.fsa_c01024{font-size:7.744176pt;}
.fs12_c01024{font-size:9.152000pt;}
.fs0_c01024{font-size:19.712000pt;}
.fs1_c01024{font-size:24.640000pt;}
.fsb_c01024{font-size:40.128000pt;}
.fs6_c01024{font-size:44.352176pt;}
.fs4_c01024{font-size:48.153776pt;}
.fsf_c01024{font-size:51.955376pt;}
.fs11_c01024{font-size:53.222576pt;}
.fs13_c01024{font-size:53.504000pt;}
.fsd_c01024{font-size:58.960000pt;}
.fsc_c01024{font-size:60.896000pt;}
.fs7_c01024{font-size:63.360000pt;}
.fs8_c01024{font-size:66.528000pt;}
.fs2_c01024{font-size:67.232176pt;}
.fs3_c01024{font-size:69.696000pt;}
.fs9_c01024{font-size:70.048000pt;}
.fs5_c01024{font-size:70.576000pt;}
.fs10_c01024{font-size:74.800000pt;}
.fse_c01024{font-size:76.736000pt;}
.y0_c01024{bottom:0.000000pt;}
.y23_c01024{bottom:19.246507pt;}
.y22_c01024{bottom:57.262507pt;}
.y1_c01024{bottom:68.000000pt;}
.y21_c01024{bottom:82.606507pt;}
.y20_c01024{bottom:85.774507pt;}
.y1e_c01024{bottom:128.538107pt;}
.y1d_c01024{bottom:132.339707pt;}
.y1f_c01024{bottom:132.977707pt;}
.y1c_c01024{bottom:133.611307pt;}
.y1b_c01024{bottom:165.924907pt;}
.y3_c01024{bottom:226.116907pt;}
.y1a_c01024{bottom:232.765307pt;}
.y19_c01024{bottom:261.277307pt;}
.y18_c01024{bottom:289.476907pt;}
.y17_c01024{bottom:317.984507pt;}
.y16_c01024{bottom:345.867307pt;}
.y15_c01024{bottom:373.745707pt;}
.y13_c01024{bottom:429.498107pt;}
.y14_c01024{bottom:443.758507pt;}
.y12_c01024{bottom:457.693307pt;}
.y11_c01024{bottom:471.636907pt;}
.y10_c01024{bottom:485.576107pt;}
.yf_c01024{bottom:514.083707pt;}
.ye_c01024{bottom:541.962107pt;}
.yd_c01024{bottom:598.356907pt;}
.yc_c01024{bottom:626.868907pt;}
.yb_c01024{bottom:654.747307pt;}
.ya_c01024{bottom:682.625707pt;}
.y9_c01024{bottom:710.816507pt;}
.y8_c01024{bottom:739.016107pt;}
.y7_c01024{bottom:766.894507pt;}
.y6_c01024{bottom:794.772907pt;}
.y5_c01024{bottom:823.280507pt;}
.y2_c01024{bottom:841.025707pt;}
.y4_c01024{bottom:944.931707pt;}
.hc_c01024{height:7.600485pt;}
.h14_c01024{height:8.982188pt;}
.h2_c01024{height:20.559000pt;}
.h3_c01024{height:25.698750pt;}
.h8_c01024{height:29.538549pt;}
.h6_c01024{height:32.070415pt;}
.h11_c01024{height:34.602280pt;}
.h13_c01024{height:35.446236pt;}
.hd_c01024{height:41.852250pt;}
.h15_c01024{height:55.803000pt;}
.he_c01024{height:59.766094pt;}
.hf_c01024{height:61.493438pt;}
.ha_c01024{height:65.293594pt;}
.h4_c01024{height:65.984704pt;}
.h9_c01024{height:66.082500pt;}
.h5_c01024{height:68.402813pt;}
.hb_c01024{height:68.748281pt;}
.h7_c01024{height:69.266484pt;}
.h10_c01024{height:75.312188pt;}
.h12_c01024{height:75.384375pt;}
.h1_c01024{height:986.666667pt;}
.h0_c01024{height:1122.666667pt;}
.w1_c01024{width:678.666667pt;}
.w0_c01024{width:793.333333pt;}
.x3_c01024{left:-3.065880pt;}
.x0_c01024{left:0.000000pt;}
.x2_c01024{left:41.624920pt;}
.x1_c01024{left:57.333333pt;}
.x32_c01024{left:62.573320pt;}
.xf_c01024{left:64.016520pt;}
.x40_c01024{left:72.108120pt;}
.x3c_c01024{left:73.546920pt;}
.x10_c01024{left:74.453320pt;}
.x4b_c01024{left:91.388920pt;}
.x55_c01024{left:92.321720pt;}
.x2e_c01024{left:93.443720pt;}
.x5f_c01024{left:101.231720pt;}
.x37_c01024{left:102.164520pt;}
.x6c_c01024{left:111.210920pt;}
.x5_c01024{left:112.161320pt;}
.x22_c01024{left:122.298920pt;}
.x6d_c01024{left:131.002120pt;}
.x56_c01024{left:132.110920pt;}
.x33_c01024{left:133.004120pt;}
.x39_c01024{left:141.575320pt;}
.x6_c01024{left:152.333320pt;}
.x47_c01024{left:160.930920pt;}
.x2f_c01024{left:162.748120pt;}
.x27_c01024{left:170.588920pt;}
.x57_c01024{left:171.609720pt;}
.x19_c01024{left:181.835320pt;}
.x65_c01024{left:189.966520pt;}
.x11_c01024{left:191.035720pt;}
.x7_c01024{left:200.376920pt;}
.x28_c01024{left:202.070920pt;}
.x23_c01024{left:211.328520pt;}
.x1a_c01024{left:220.339720pt;}
.x60_c01024{left:230.534520pt;}
.x12_c01024{left:231.427720pt;}
.x24_c01024{left:240.452120pt;}
.x66_c01024{left:241.600520pt;}
.x53_c01024{left:246.176520pt;}
.x54_c01024{left:249.199320pt;}
.x29_c01024{left:250.233320pt;}
.x3d_c01024{left:251.460920pt;}
.x3a_c01024{left:259.336920pt;}
.x5b_c01024{left:260.670120pt;}
.x38_c01024{left:270.077320pt;}
.x4c_c01024{left:279.242520pt;}
.x8_c01024{left:280.703320pt;}
.x58_c01024{left:298.303320pt;}
.x13_c01024{left:299.544120pt;}
.x61_c01024{left:301.172120pt;}
.x9_c01024{left:310.117320pt;}
.x1b_c01024{left:320.501320pt;}
.x4f_c01024{left:328.799720pt;}
.x14_c01024{left:330.066920pt;}
.x30_c01024{left:338.805320pt;}
.xa_c01024{left:339.936120pt;}
.x5c_c01024{left:348.291720pt;}
.x2a_c01024{left:349.752520pt;}
.x48_c01024{left:359.269720pt;}
.x62_c01024{left:367.977320pt;}
.x1c_c01024{left:369.090520pt;}
.x25_c01024{left:379.430520pt;}
.x67_c01024{left:384.160520pt;}
.x63_c01024{left:388.402120pt;}
.x15_c01024{left:389.898120pt;}
.x41_c01024{left:398.755320pt;}
.x50_c01024{left:399.952120pt;}
.x4d_c01024{left:407.256120pt;}
.x1d_c01024{left:408.932520pt;}
.x51_c01024{left:418.770920pt;}
.x72_c01024{left:432.534120pt;}
.xb_c01024{left:437.836120pt;}
.x3e_c01024{left:446.248920pt;}
.x6e_c01024{left:447.150920pt;}
.x2b_c01024{left:448.492920pt;}
.x49_c01024{left:457.618520pt;}
.x1e_c01024{left:458.630520pt;}
.xc_c01024{left:467.734120pt;}
.x3f_c01024{left:476.296520pt;}
.x5d_c01024{left:477.304120pt;}
.x16_c01024{left:486.451720pt;}
.x1f_c01024{left:487.534120pt;}
.x34_c01024{left:497.082120pt;}
.x6b_c01024{left:515.135320pt;}
.x2c_c01024{left:516.666520pt;}
.x42_c01024{left:525.418120pt;}
.x3b_c01024{left:526.557720pt;}
.xd_c01024{left:536.954920pt;}
.x68_c01024{left:540.941320pt;}
.x69_c01024{left:543.497720pt;}
.x4a_c01024{left:545.055320pt;}
.x35_c01024{left:546.155320pt;}
.x59_c01024{left:554.889320pt;}
.x6a_c01024{left:560.257320pt;}
.x46_c01024{left:564.718920pt;}
.x52_c01024{left:574.522120pt;}
.x17_c01024{left:575.635320pt;}
.x64_c01024{left:584.030520pt;}
.x20_c01024{left:585.456120pt;}
.x5a_c01024{left:593.521320pt;}
.x5e_c01024{left:594.652120pt;}
.x4_c01024{left:595.549720pt;}
.x2d_c01024{left:604.173720pt;}
.x26_c01024{left:605.423320pt;}
.x70_c01024{left:613.189320pt;}
.x43_c01024{left:614.130920pt;}
.xe_c01024{left:616.691720pt;}
.x71_c01024{left:620.053320pt;}
.x31_c01024{left:623.973720pt;}
.x21_c01024{left:625.623720pt;}
.x4e_c01024{left:628.166920pt;}
.x6f_c01024{left:632.210520pt;}
.x18_c01024{left:634.511720pt;}
.x44_c01024{left:635.440120pt;}
.x36_c01024{left:645.023320pt;}
.x45_c01024{left:659.090120pt;}
}





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

.ir_c01025:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01025{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01025;src:url('chunks/assets/font_49e04e415091764a8f7eeec3.woff2')format("woff");}.ff1_c01025{font-family:ff1_c01025;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01025;src:url('chunks/assets/font_18f1411a727f61f8602fb631.woff2')format("woff");}.ff2_c01025{font-family:ff2_c01025;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01025;src:url('chunks/assets/font_ca48f67f2485b7b332778715.woff2')format("woff");}.ff3_c01025{font-family:ff3_c01025;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01025;src:url('chunks/assets/font_4b2181d8dba5016492095f41.woff2')format("woff");}.ff4_c01025{font-family:ff4_c01025;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mb1_c01025{transform:matrix(0.112143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112143,0.000000,0.000000,0.250000,0,0);}
.m54_c01025{transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);}
.m6d_c01025{transform:matrix(0.160516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160516,0.000000,0.000000,0.250000,0,0);}
.m84_c01025{transform:matrix(0.178708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178708,0.000000,0.000000,0.250000,0,0);}
.m22_c01025{transform:matrix(0.216704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216704,0.000000,0.000000,0.250000,0,0);}
.ma3_c01025{transform:matrix(0.248291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248291,0.000000,0.000000,0.250000,0,0);}
.m6b_c01025{transform:matrix(0.249903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249903,0.000000,0.000000,0.250000,0,0);}
.m0_c01025{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m8e_c01025{transform:matrix(0.252184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252184,0.000000,0.000000,0.250000,0,0);}
.m18_c01025{transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);}
.m1a_c01025{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m6_c01025{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m1c_c01025{transform:matrix(0.261445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261445,0.000000,0.000000,0.250000,0,0);}
.m57_c01025{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.m32_c01025{transform:matrix(0.262289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262289,0.000000,0.000000,0.250000,0,0);}
.m3_c01025{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m44_c01025{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m5d_c01025{transform:matrix(0.265453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265453,0.000000,0.000000,0.250000,0,0);}
.md_c01025{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m21_c01025{transform:matrix(0.266295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266295,0.000000,0.000000,0.250000,0,0);}
.m8d_c01025{transform:matrix(0.266422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266422,0.000000,0.000000,0.250000,0,0);}
.m1f_c01025{transform:matrix(0.266706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266706,0.000000,0.000000,0.250000,0,0);}
.m7c_c01025{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.m46_c01025{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.maf_c01025{transform:matrix(0.268624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268624,0.000000,0.000000,0.250000,0,0);}
.m6c_c01025{transform:matrix(0.269549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269549,0.000000,0.000000,0.250000,0,0);}
.m7_c01025{transform:matrix(0.270439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270439,0.000000,0.000000,0.250000,0,0);}
.m39_c01025{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.ma6_c01025{transform:matrix(0.271425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271425,0.000000,0.000000,0.250000,0,0);}
.mae_c01025{transform:matrix(0.272801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272801,0.000000,0.000000,0.250000,0,0);}
.m5f_c01025{transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);}
.m7e_c01025{transform:matrix(0.272945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272945,0.000000,0.000000,0.250000,0,0);}
.m89_c01025{transform:matrix(0.273830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273830,0.000000,0.000000,0.250000,0,0);}
.m48_c01025{transform:matrix(0.273912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273912,0.000000,0.000000,0.250000,0,0);}
.m24_c01025{transform:matrix(0.274164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274164,0.000000,0.000000,0.250000,0,0);}
.m7d_c01025{transform:matrix(0.274659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274659,0.000000,0.000000,0.250000,0,0);}
.m83_c01025{transform:matrix(0.275606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275606,0.000000,0.000000,0.250000,0,0);}
.m40_c01025{transform:matrix(0.275884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275884,0.000000,0.000000,0.250000,0,0);}
.m78_c01025{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);}
.m62_c01025{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m80_c01025{transform:matrix(0.281043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281043,0.000000,0.000000,0.250000,0,0);}
.ma0_c01025{transform:matrix(0.281616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281616,0.000000,0.000000,0.250000,0,0);}
.m52_c01025{transform:matrix(0.282148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282148,0.000000,0.000000,0.250000,0,0);}
.m92_c01025{transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);}
.m69_c01025{transform:matrix(0.283306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283306,0.000000,0.000000,0.250000,0,0);}
.m55_c01025{transform:matrix(0.283756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283756,0.000000,0.000000,0.250000,0,0);}
.m64_c01025{transform:matrix(0.283982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283982,0.000000,0.000000,0.250000,0,0);}
.m5e_c01025{transform:matrix(0.284092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284092,0.000000,0.000000,0.250000,0,0);}
.m63_c01025{transform:matrix(0.285571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285571,0.000000,0.000000,0.250000,0,0);}
.m8a_c01025{transform:matrix(0.285579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285579,0.000000,0.000000,0.250000,0,0);}
.m72_c01025{transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);}
.m23_c01025{transform:matrix(0.285628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285628,0.000000,0.000000,0.250000,0,0);}
.m2b_c01025{transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);}
.m85_c01025{transform:matrix(0.285994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285994,0.000000,0.000000,0.250000,0,0);}
.m12_c01025{transform:matrix(0.286386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286386,0.000000,0.000000,0.250000,0,0);}
.m82_c01025{transform:matrix(0.286997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286997,0.000000,0.000000,0.250000,0,0);}
.m47_c01025{transform:matrix(0.287592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287592,0.000000,0.000000,0.250000,0,0);}
.m90_c01025{transform:matrix(0.287722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287722,0.000000,0.000000,0.250000,0,0);}
.m19_c01025{transform:matrix(0.287789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287789,0.000000,0.000000,0.250000,0,0);}
.m76_c01025{transform:matrix(0.287867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287867,0.000000,0.000000,0.250000,0,0);}
.m3a_c01025{transform:matrix(0.288432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288432,0.000000,0.000000,0.250000,0,0);}
.m74_c01025{transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);}
.m4f_c01025{transform:matrix(0.288778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288778,0.000000,0.000000,0.250000,0,0);}
.m26_c01025{transform:matrix(0.288806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288806,0.000000,0.000000,0.250000,0,0);}
.m38_c01025{transform:matrix(0.289275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289275,0.000000,0.000000,0.250000,0,0);}
.m68_c01025{transform:matrix(0.289676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289676,0.000000,0.000000,0.250000,0,0);}
.m29_c01025{transform:matrix(0.289989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289989,0.000000,0.000000,0.250000,0,0);}
.m3f_c01025{transform:matrix(0.290374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290374,0.000000,0.000000,0.250000,0,0);}
.m96_c01025{transform:matrix(0.290391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290391,0.000000,0.000000,0.250000,0,0);}
.m4_c01025{transform:matrix(0.290523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290523,0.000000,0.000000,0.250000,0,0);}
.ma8_c01025{transform:matrix(0.291141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291141,0.000000,0.000000,0.250000,0,0);}
.ma7_c01025{transform:matrix(0.291547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291547,0.000000,0.000000,0.250000,0,0);}
.m9e_c01025{transform:matrix(0.291605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291605,0.000000,0.000000,0.250000,0,0);}
.m42_c01025{transform:matrix(0.291753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291753,0.000000,0.000000,0.250000,0,0);}
.m9c_c01025{transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);}
.m5_c01025{transform:matrix(0.291915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291915,0.000000,0.000000,0.250000,0,0);}
.m31_c01025{transform:matrix(0.292045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292045,0.000000,0.000000,0.250000,0,0);}
.m28_c01025{transform:matrix(0.292914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292914,0.000000,0.000000,0.250000,0,0);}
.m6e_c01025{transform:matrix(0.293394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293394,0.000000,0.000000,0.250000,0,0);}
.m93_c01025{transform:matrix(0.293689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293689,0.000000,0.000000,0.250000,0,0);}
.m8b_c01025{transform:matrix(0.294066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294066,0.000000,0.000000,0.250000,0,0);}
.m65_c01025{transform:matrix(0.294809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294809,0.000000,0.000000,0.250000,0,0);}
.m1b_c01025{transform:matrix(0.294847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294847,0.000000,0.000000,0.250000,0,0);}
.m45_c01025{transform:matrix(0.294852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294852,0.000000,0.000000,0.250000,0,0);}
.m9f_c01025{transform:matrix(0.295202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295202,0.000000,0.000000,0.250000,0,0);}
.m20_c01025{transform:matrix(0.295978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295978,0.000000,0.000000,0.250000,0,0);}
.m86_c01025{transform:matrix(0.296090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296090,0.000000,0.000000,0.250000,0,0);}
.m43_c01025{transform:matrix(0.296813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296813,0.000000,0.000000,0.250000,0,0);}
.m10_c01025{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m37_c01025{transform:matrix(0.297306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297306,0.000000,0.000000,0.250000,0,0);}
.m88_c01025{transform:matrix(0.297366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297366,0.000000,0.000000,0.250000,0,0);}
.m8f_c01025{transform:matrix(0.297423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297423,0.000000,0.000000,0.250000,0,0);}
.m70_c01025{transform:matrix(0.297922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297922,0.000000,0.000000,0.250000,0,0);}
.m11_c01025{transform:matrix(0.298650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298650,0.000000,0.000000,0.250000,0,0);}
.m66_c01025{transform:matrix(0.298720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298720,0.000000,0.000000,0.250000,0,0);}
.m2a_c01025{transform:matrix(0.298918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298918,0.000000,0.000000,0.250000,0,0);}
.mac_c01025{transform:matrix(0.299499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299499,0.000000,0.000000,0.250000,0,0);}
.m6a_c01025{transform:matrix(0.299965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299965,0.000000,0.000000,0.250000,0,0);}
.m56_c01025{transform:matrix(0.300484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300484,0.000000,0.000000,0.250000,0,0);}
.m97_c01025{transform:matrix(0.300492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300492,0.000000,0.000000,0.250000,0,0);}
.m98_c01025{transform:matrix(0.300559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300559,0.000000,0.000000,0.250000,0,0);}
.m5a_c01025{transform:matrix(0.300802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300802,0.000000,0.000000,0.250000,0,0);}
.m77_c01025{transform:matrix(0.300870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300870,0.000000,0.000000,0.250000,0,0);}
.m1e_c01025{transform:matrix(0.300951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300951,0.000000,0.000000,0.250000,0,0);}
.m1_c01025{transform:matrix(0.301620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301620,0.000000,0.000000,0.250000,0,0);}
.m99_c01025{transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);}
.m95_c01025{transform:matrix(0.302335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302335,0.000000,0.000000,0.250000,0,0);}
.m2c_c01025{transform:matrix(0.302677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302677,0.000000,0.000000,0.250000,0,0);}
.m30_c01025{transform:matrix(0.304119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304119,0.000000,0.000000,0.250000,0,0);}
.m71_c01025{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);}
.m34_c01025{transform:matrix(0.304706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304706,0.000000,0.000000,0.250000,0,0);}
.m4c_c01025{transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);}
.ma5_c01025{transform:matrix(0.305180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305180,0.000000,0.000000,0.250000,0,0);}
.m17_c01025{transform:matrix(0.305280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305280,0.000000,0.000000,0.250000,0,0);}
.ma9_c01025{transform:matrix(0.305475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305475,0.000000,0.000000,0.250000,0,0);}
.m91_c01025{transform:matrix(0.305755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305755,0.000000,0.000000,0.250000,0,0);}
.m2f_c01025{transform:matrix(0.305772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305772,0.000000,0.000000,0.250000,0,0);}
.m36_c01025{transform:matrix(0.305824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305824,0.000000,0.000000,0.250000,0,0);}
.m75_c01025{transform:matrix(0.305859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305859,0.000000,0.000000,0.250000,0,0);}
.m79_c01025{transform:matrix(0.305914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305914,0.000000,0.000000,0.250000,0,0);}
.mb_c01025{transform:matrix(0.307706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307706,0.000000,0.000000,0.250000,0,0);}
.m67_c01025{transform:matrix(0.308925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308925,0.000000,0.000000,0.250000,0,0);}
.m73_c01025{transform:matrix(0.309384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309384,0.000000,0.000000,0.250000,0,0);}
.m25_c01025{transform:matrix(0.309595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309595,0.000000,0.000000,0.250000,0,0);}
.m9a_c01025{transform:matrix(0.311143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311143,0.000000,0.000000,0.250000,0,0);}
.m53_c01025{transform:matrix(0.311858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311858,0.000000,0.000000,0.250000,0,0);}
.mb0_c01025{transform:matrix(0.311969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311969,0.000000,0.000000,0.250000,0,0);}
.m9_c01025{transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);}
.m9d_c01025{transform:matrix(0.312196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312196,0.000000,0.000000,0.250000,0,0);}
.mab_c01025{transform:matrix(0.312347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312347,0.000000,0.000000,0.250000,0,0);}
.m27_c01025{transform:matrix(0.312875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312875,0.000000,0.000000,0.250000,0,0);}
.m5c_c01025{transform:matrix(0.313301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313301,0.000000,0.000000,0.250000,0,0);}
.m51_c01025{transform:matrix(0.313602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313602,0.000000,0.000000,0.250000,0,0);}
.m4a_c01025{transform:matrix(0.314943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314943,0.000000,0.000000,0.250000,0,0);}
.ma4_c01025{transform:matrix(0.315196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315196,0.000000,0.000000,0.250000,0,0);}
.m8_c01025{transform:matrix(0.315917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315917,0.000000,0.000000,0.250000,0,0);}
.m7f_c01025{transform:matrix(0.315963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315963,0.000000,0.000000,0.250000,0,0);}
.m3c_c01025{transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);}
.mc_c01025{transform:matrix(0.316711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316711,0.000000,0.000000,0.250000,0,0);}
.m3b_c01025{transform:matrix(0.316763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316763,0.000000,0.000000,0.250000,0,0);}
.m4b_c01025{transform:matrix(0.320225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320225,0.000000,0.000000,0.250000,0,0);}
.m61_c01025{transform:matrix(0.321636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321636,0.000000,0.000000,0.250000,0,0);}
.m2_c01025{transform:matrix(0.323982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323982,0.000000,0.000000,0.250000,0,0);}
.m8c_c01025{transform:matrix(0.326409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326409,0.000000,0.000000,0.250000,0,0);}
.m2e_c01025{transform:matrix(0.327109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327109,0.000000,0.000000,0.250000,0,0);}
.m3e_c01025{transform:matrix(0.327467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327467,0.000000,0.000000,0.250000,0,0);}
.m4e_c01025{transform:matrix(0.328977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328977,0.000000,0.000000,0.250000,0,0);}
.ma2_c01025{transform:matrix(0.329016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329016,0.000000,0.000000,0.250000,0,0);}
.m3d_c01025{transform:matrix(0.329103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329103,0.000000,0.000000,0.250000,0,0);}
.m50_c01025{transform:matrix(0.330374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330374,0.000000,0.000000,0.250000,0,0);}
.m7b_c01025{transform:matrix(0.330710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330710,0.000000,0.000000,0.250000,0,0);}
.m6f_c01025{transform:matrix(0.332348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332348,0.000000,0.000000,0.250000,0,0);}
.m58_c01025{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m4d_c01025{transform:matrix(0.333491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333491,0.000000,0.000000,0.250000,0,0);}
.m14_c01025{transform:matrix(0.335605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335605,0.000000,0.000000,0.250000,0,0);}
.mf_c01025{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);}
.ma1_c01025{transform:matrix(0.336444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336444,0.000000,0.000000,0.250000,0,0);}
.m59_c01025{transform:matrix(0.337304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337304,0.000000,0.000000,0.250000,0,0);}
.me_c01025{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m15_c01025{transform:matrix(0.339756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339756,0.000000,0.000000,0.250000,0,0);}
.m94_c01025{transform:matrix(0.340744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340744,0.000000,0.000000,0.250000,0,0);}
.m87_c01025{transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);}
.m5b_c01025{transform:matrix(0.345988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345988,0.000000,0.000000,0.250000,0,0);}
.m35_c01025{transform:matrix(0.349372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349372,0.000000,0.000000,0.250000,0,0);}
.m60_c01025{transform:matrix(0.350422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350422,0.000000,0.000000,0.250000,0,0);}
.m49_c01025{transform:matrix(0.352150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352150,0.000000,0.000000,0.250000,0,0);}
.m13_c01025{transform:matrix(0.352449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352449,0.000000,0.000000,0.250000,0,0);}
.m2d_c01025{transform:matrix(0.353093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353093,0.000000,0.000000,0.250000,0,0);}
.m7a_c01025{transform:matrix(0.353367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353367,0.000000,0.000000,0.250000,0,0);}
.mad_c01025{transform:matrix(0.355345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355345,0.000000,0.000000,0.250000,0,0);}
.m41_c01025{transform:matrix(0.357520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357520,0.000000,0.000000,0.250000,0,0);}
.ma_c01025{transform:matrix(0.365098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365098,0.000000,0.000000,0.250000,0,0);}
.m81_c01025{transform:matrix(0.371317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371317,0.000000,0.000000,0.250000,0,0);}
.maa_c01025{transform:matrix(0.372213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372213,0.000000,0.000000,0.250000,0,0);}
.m1d_c01025{transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);}
.m33_c01025{transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);}
.m16_c01025{transform:matrix(0.385437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385437,0.000000,0.000000,0.250000,0,0);}
.m9b_c01025{transform:matrix(0.391460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391460,0.000000,0.000000,0.250000,0,0);}
.v0_c01025{vertical-align:0.000000px;}
.ls5_c01025{letter-spacing:-2.744280px;}
.ls12_c01025{letter-spacing:-2.642350px;}
.ls13_c01025{letter-spacing:-2.633400px;}
.lsb_c01025{letter-spacing:-2.321550px;}
.lsf_c01025{letter-spacing:-1.496880px;}
.ls1_c01025{letter-spacing:0.000000px;}
.ls10_c01025{letter-spacing:0.462607px;}
.ls8_c01025{letter-spacing:0.501811px;}
.ls0_c01025{letter-spacing:1.654409px;}
.ls4_c01025{letter-spacing:3.065753px;}
.lsa_c01025{letter-spacing:3.387226px;}
.ls6_c01025{letter-spacing:3.524400px;}
.ls2_c01025{letter-spacing:3.539290px;}
.lsd_c01025{letter-spacing:3.564000px;}
.ls9_c01025{letter-spacing:3.573900px;}
.lse_c01025{letter-spacing:3.801610px;}
.ls3_c01025{letter-spacing:3.920400px;}
.lsc_c01025{letter-spacing:3.940200px;}
.ls11_c01025{letter-spacing:4.088700px;}
.ls7_c01025{letter-spacing:29.937798px;}
.sc__c01025{text-shadow:none;}
.sc0_c01025{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01025{-webkit-text-stroke:0px transparent;}
.sc0_c01025{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01025{word-spacing:0.000000px;}
._2_c01025{width:12.701700px;}
._0_c01025{width:23.632171px;}
._1_c01025{width:27.991656px;}
.fc0_c01025{color:transparent;}
.fs0_c01025{font-size:22.176000px;}
.fse_c01025{font-size:25.146000px;}
.fs9_c01025{font-size:25.344000px;}
.fsa_c01025{font-size:29.937798px;}
.fs11_c01025{font-size:33.660000px;}
.fs7_c01025{font-size:34.056198px;}
.fsb_c01025{font-size:38.808000px;}
.fsc_c01025{font-size:39.204000px;}
.fs6_c01025{font-size:39.600000px;}
.fs10_c01025{font-size:42.768000px;}
.fs3_c01025{font-size:66.330000px;}
.fs5_c01025{font-size:70.488000px;}
.fsf_c01025{font-size:71.280000px;}
.fsd_c01025{font-size:71.478000px;}
.fs13_c01025{font-size:75.240000px;}
.fs4_c01025{font-size:76.032198px;}
.fs2_c01025{font-size:78.408000px;}
.fs8_c01025{font-size:78.804000px;}
.fs12_c01025{font-size:81.774000px;}
.fs1_c01025{font-size:88.704000px;}
.y0_c01025{bottom:0.000000px;}
.y1_c01025{bottom:76.500000px;}
.y23_c01025{bottom:96.134985px;}
.y22_c01025{bottom:129.992985px;}
.y21_c01025{bottom:161.717535px;}
.y20_c01025{bottom:193.793535px;}
.y1f_c01025{bottom:226.220985px;}
.y1e_c01025{bottom:258.658335px;}
.y1d_c01025{bottom:301.421385px;}
.y1c_c01025{bottom:321.741135px;}
.y2_c01025{bottom:331.363935px;}
.y1b_c01025{bottom:353.817135px;}
.y1a_c01025{bottom:385.536735px;}
.y19_c01025{bottom:417.612735px;}
.y18_c01025{bottom:433.294335px;}
.y17_c01025{bottom:448.619535px;}
.y16_c01025{bottom:480.695535px;}
.y15_c01025{bottom:512.053785px;}
.y14_c01025{bottom:544.134735px;}
.y11_c01025{bottom:574.780185px;}
.y13_c01025{bottom:576.567135px;}
.y12_c01025{bottom:581.556735px;}
.y10_c01025{bottom:591.892335px;}
.yf_c01025{bottom:606.861135px;}
.ye_c01025{bottom:638.937135px;}
.yd_c01025{bottom:671.008185px;}
.yc_c01025{bottom:696.668985px;}
.yb_c01025{bottom:702.727785px;}
.ya_c01025{bottom:725.542335px;}
.y9_c01025{bottom:734.095935px;}
.y8_c01025{bottom:766.166985px;}
.y7_c01025{bottom:828.893385px;}
.y6_c01025{bottom:860.617935px;}
.y5_c01025{bottom:892.688985px;}
.y4_c01025{bottom:924.057135px;}
.y3_c01025{bottom:1059.840585px;}
.hb_c01025{height:19.938573px;}
.h2_c01025{height:23.128875px;}
.ha_c01025{height:24.873750px;}
.hf_c01025{height:26.226492px;}
.h13_c01025{height:33.035449px;}
.h8_c01025{height:35.519550px;}
.hd_c01025{height:38.476582px;}
.hc_c01025{height:40.475531px;}
.h7_c01025{height:41.301563px;}
.h12_c01025{height:41.953570px;}
.h10_c01025{height:65.099268px;}
.h5_c01025{height:69.180117px;}
.h11_c01025{height:69.957422px;}
.he_c01025{height:70.151748px;}
.h15_c01025{height:73.843945px;}
.h6_c01025{height:74.621444px;}
.h4_c01025{height:76.953164px;}
.h9_c01025{height:77.341816px;}
.h14_c01025{height:80.256709px;}
.h3_c01025{height:87.058125px;}
.h1_c01025{height:1110.000000px;}
.h0_c01025{height:1263.000000px;}
.w1_c01025{width:763.500000px;}
.w0_c01025{width:892.500000px;}
.x0_c01025{left:0.000000px;}
.x2_c01025{left:46.828035px;}
.x1_c01025{left:64.500000px;}
.x4c_c01025{left:73.954035px;}
.x4_c01025{left:75.736035px;}
.x15_c01025{left:77.458635px;}
.x5e_c01025{left:107.495235px;}
.xe_c01025{left:118.865385px;}
.x16_c01025{left:120.038535px;}
.x21_c01025{left:129.829635px;}
.x5_c01025{left:131.126535px;}
.x42_c01025{left:140.501835px;}
.x1e_c01025{left:142.575885px;}
.x17_c01025{left:152.886735px;}
.x5b_c01025{left:153.950985px;}
.x1f_c01025{left:163.553985px;}
.x3c_c01025{left:164.633085px;}
.x2d_c01025{left:177.245685px;}
.x46_c01025{left:186.289335px;}
.x5c_c01025{left:187.363485px;}
.x20_c01025{left:197.110035px;}
.x60_c01025{left:198.154485px;}
.x54_c01025{left:208.816785px;}
.x27_c01025{left:219.568185px;}
.x47_c01025{left:229.027635px;}
.x3d_c01025{left:230.487885px;}
.x6_c01025{left:241.660035px;}
.x38_c01025{left:251.124435px;}
.xf_c01025{left:253.396485px;}
.x48_c01025{left:263.880585px;}
.x7_c01025{left:274.805235px;}
.x34_c01025{left:275.839785px;}
.x10_c01025{left:286.210035px;}
.x63_c01025{left:287.224785px;}
.x18_c01025{left:296.837685px;}
.x5f_c01025{left:298.104885px;}
.x57_c01025{left:307.747485px;}
.x22_c01025{left:308.890935px;}
.x44_c01025{left:320.399685px;}
.x19_c01025{left:329.854185px;}
.x11_c01025{left:331.383735px;}
.x4d_c01025{left:342.169785px;}
.x28_c01025{left:352.648935px;}
.x64_c01025{left:353.871585px;}
.x8_c01025{left:362.588535px;}
.x12_c01025{left:364.172535px;}
.x39_c01025{left:374.057685px;}
.x4e_c01025{left:375.968385px;}
.x23_c01025{left:386.363385px;}
.x51_c01025{left:388.477035px;}
.x3a_c01025{left:397.406835px;}
.x2e_c01025{left:408.455235px;}
.x24_c01025{left:419.503635px;}
.x9_c01025{left:421.567785px;}
.x1a_c01025{left:431.269785px;}
.x35_c01025{left:441.961785px;}
.x2f_c01025{left:452.589435px;}
.x1b_c01025{left:463.276485px;}
.x13_c01025{left:464.632785px;}
.x36_c01025{left:475.389135px;}
.x30_c01025{left:486.021735px;}
.xa_c01025{left:496.842435px;}
.x2c_c01025{left:498.228435px;}
.x49_c01025{left:507.019635px;}
.x3e_c01025{left:508.474935px;}
.x33_c01025{left:515.013885px;}
.x29_c01025{left:529.116435px;}
.x4f_c01025{left:530.700435px;}
.x65_c01025{left:539.768835px;}
.xb_c01025{left:540.996435px;}
.x52_c01025{left:542.080485px;}
.x5d_c01025{left:543.590235px;}
.x25_c01025{left:553.099185px;}
.x50_c01025{left:562.261635px;}
.x14_c01025{left:563.716935px;}
.x3b_c01025{left:574.176285px;}
.x2a_c01025{left:575.200935px;}
.x3f_c01025{left:584.848485px;}
.x31_c01025{left:596.639385px;}
.x53_c01025{left:597.698685px;}
.xc_c01025{left:607.559085px;}
.x1c_c01025{left:618.736185px;}
.x32_c01025{left:629.348985px;}
.x62_c01025{left:640.699335px;}
.x1d_c01025{left:652.104135px;}
.x55_c01025{left:662.954535px;}
.x3_c01025{left:673.908885px;}
.x58_c01025{left:676.289835px;}
.x37_c01025{left:685.605735px;}
.x61_c01025{left:686.917485px;}
.x26_c01025{left:694.842435px;}
.x4a_c01025{left:695.876985px;}
.x59_c01025{left:697.084785px;}
.x41_c01025{left:700.906185px;}
.x2b_c01025{left:708.484635px;}
.xd_c01025{left:718.434135px;}
.x40_c01025{left:720.483435px;}
.x45_c01025{left:728.319285px;}
.x56_c01025{left:751.990185px;}
.x5a_c01025{left:754.069185px;}
.x43_c01025{left:761.335785px;}
.x4b_c01025{left:763.256385px;}
@media print{
.v0_c01025{vertical-align:0.000000pt;}
.ls5_c01025{letter-spacing:-2.439360pt;}
.ls12_c01025{letter-spacing:-2.348755pt;}
.ls13_c01025{letter-spacing:-2.340800pt;}
.lsb_c01025{letter-spacing:-2.063600pt;}
.lsf_c01025{letter-spacing:-1.330560pt;}
.ls1_c01025{letter-spacing:0.000000pt;}
.ls10_c01025{letter-spacing:0.411206pt;}
.ls8_c01025{letter-spacing:0.446054pt;}
.ls0_c01025{letter-spacing:1.470586pt;}
.ls4_c01025{letter-spacing:2.725114pt;}
.lsa_c01025{letter-spacing:3.010867pt;}
.ls6_c01025{letter-spacing:3.132800pt;}
.ls2_c01025{letter-spacing:3.146035pt;}
.lsd_c01025{letter-spacing:3.168000pt;}
.ls9_c01025{letter-spacing:3.176800pt;}
.lse_c01025{letter-spacing:3.379209pt;}
.ls3_c01025{letter-spacing:3.484800pt;}
.lsc_c01025{letter-spacing:3.502400pt;}
.ls11_c01025{letter-spacing:3.634400pt;}
.ls7_c01025{letter-spacing:26.611376pt;}
.ws0_c01025{word-spacing:0.000000pt;}
._2_c01025{width:11.290400pt;}
._0_c01025{width:21.006374pt;}
._1_c01025{width:24.881472pt;}
.fs0_c01025{font-size:19.712000pt;}
.fse_c01025{font-size:22.352000pt;}
.fs9_c01025{font-size:22.528000pt;}
.fsa_c01025{font-size:26.611376pt;}
.fs11_c01025{font-size:29.920000pt;}
.fs7_c01025{font-size:30.272176pt;}
.fsb_c01025{font-size:34.496000pt;}
.fsc_c01025{font-size:34.848000pt;}
.fs6_c01025{font-size:35.200000pt;}
.fs10_c01025{font-size:38.016000pt;}
.fs3_c01025{font-size:58.960000pt;}
.fs5_c01025{font-size:62.656000pt;}
.fsf_c01025{font-size:63.360000pt;}
.fsd_c01025{font-size:63.536000pt;}
.fs13_c01025{font-size:66.880000pt;}
.fs4_c01025{font-size:67.584176pt;}
.fs2_c01025{font-size:69.696000pt;}
.fs8_c01025{font-size:70.048000pt;}
.fs12_c01025{font-size:72.688000pt;}
.fs1_c01025{font-size:78.848000pt;}
.y0_c01025{bottom:0.000000pt;}
.y1_c01025{bottom:68.000000pt;}
.y23_c01025{bottom:85.453320pt;}
.y22_c01025{bottom:115.549320pt;}
.y21_c01025{bottom:143.748920pt;}
.y20_c01025{bottom:172.260920pt;}
.y1f_c01025{bottom:201.085320pt;}
.y1e_c01025{bottom:229.918520pt;}
.y1d_c01025{bottom:267.930120pt;}
.y1c_c01025{bottom:285.992120pt;}
.y2_c01025{bottom:294.545720pt;}
.y1b_c01025{bottom:314.504120pt;}
.y1a_c01025{bottom:342.699320pt;}
.y19_c01025{bottom:371.211320pt;}
.y18_c01025{bottom:385.150520pt;}
.y17_c01025{bottom:398.772920pt;}
.y16_c01025{bottom:427.284920pt;}
.y15_c01025{bottom:455.158920pt;}
.y14_c01025{bottom:483.675320pt;}
.y11_c01025{bottom:510.915720pt;}
.y13_c01025{bottom:512.504120pt;}
.y12_c01025{bottom:516.939320pt;}
.y10_c01025{bottom:526.126520pt;}
.yf_c01025{bottom:539.432120pt;}
.ye_c01025{bottom:567.944120pt;}
.yd_c01025{bottom:596.451720pt;}
.yc_c01025{bottom:619.261320pt;}
.yb_c01025{bottom:624.646920pt;}
.ya_c01025{bottom:644.926520pt;}
.y9_c01025{bottom:652.529720pt;}
.y8_c01025{bottom:681.037320pt;}
.y7_c01025{bottom:736.794120pt;}
.y6_c01025{bottom:764.993720pt;}
.y5_c01025{bottom:793.501320pt;}
.y4_c01025{bottom:821.384120pt;}
.y3_c01025{bottom:942.080520pt;}
.hb_c01025{height:17.723176pt;}
.h2_c01025{height:20.559000pt;}
.ha_c01025{height:22.110000pt;}
.hf_c01025{height:23.312438pt;}
.h13_c01025{height:29.364844pt;}
.h8_c01025{height:31.572934pt;}
.hd_c01025{height:34.201406pt;}
.hc_c01025{height:35.978250pt;}
.h7_c01025{height:36.712500pt;}
.h12_c01025{height:37.292063pt;}
.h10_c01025{height:57.866016pt;}
.h5_c01025{height:61.493438pt;}
.h11_c01025{height:62.184375pt;}
.he_c01025{height:62.357109pt;}
.h15_c01025{height:65.639063pt;}
.h6_c01025{height:66.330173pt;}
.h4_c01025{height:68.402813pt;}
.h9_c01025{height:68.748281pt;}
.h14_c01025{height:71.339297pt;}
.h3_c01025{height:77.385000pt;}
.h1_c01025{height:986.666667pt;}
.h0_c01025{height:1122.666667pt;}
.w1_c01025{width:678.666667pt;}
.w0_c01025{width:793.333333pt;}
.x0_c01025{left:0.000000pt;}
.x2_c01025{left:41.624920pt;}
.x1_c01025{left:57.333333pt;}
.x4c_c01025{left:65.736920pt;}
.x4_c01025{left:67.320920pt;}
.x15_c01025{left:68.852120pt;}
.x5e_c01025{left:95.551320pt;}
.xe_c01025{left:105.658120pt;}
.x16_c01025{left:106.700920pt;}
.x21_c01025{left:115.404120pt;}
.x5_c01025{left:116.556920pt;}
.x42_c01025{left:124.890520pt;}
.x1e_c01025{left:126.734120pt;}
.x17_c01025{left:135.899320pt;}
.x5b_c01025{left:136.845320pt;}
.x1f_c01025{left:145.381320pt;}
.x3c_c01025{left:146.340520pt;}
.x2d_c01025{left:157.551720pt;}
.x46_c01025{left:165.590520pt;}
.x5c_c01025{left:166.545320pt;}
.x20_c01025{left:175.208920pt;}
.x60_c01025{left:176.137320pt;}
.x54_c01025{left:185.614920pt;}
.x27_c01025{left:195.171720pt;}
.x47_c01025{left:203.580120pt;}
.x3d_c01025{left:204.878120pt;}
.x6_c01025{left:214.808920pt;}
.x38_c01025{left:223.221720pt;}
.xf_c01025{left:225.241320pt;}
.x48_c01025{left:234.560520pt;}
.x7_c01025{left:244.271320pt;}
.x34_c01025{left:245.190920pt;}
.x10_c01025{left:254.408920pt;}
.x63_c01025{left:255.310920pt;}
.x18_c01025{left:263.855720pt;}
.x5f_c01025{left:264.982120pt;}
.x57_c01025{left:273.553320pt;}
.x22_c01025{left:274.569720pt;}
.x44_c01025{left:284.799720pt;}
.x19_c01025{left:293.203720pt;}
.x11_c01025{left:294.563320pt;}
.x4d_c01025{left:304.150920pt;}
.x28_c01025{left:313.465720pt;}
.x64_c01025{left:314.552520pt;}
.x8_c01025{left:322.300920pt;}
.x12_c01025{left:323.708920pt;}
.x39_c01025{left:332.495720pt;}
.x4e_c01025{left:334.194120pt;}
.x23_c01025{left:343.434120pt;}
.x51_c01025{left:345.312920pt;}
.x3a_c01025{left:353.250520pt;}
.x2e_c01025{left:363.071320pt;}
.x24_c01025{left:372.892120pt;}
.x9_c01025{left:374.726920pt;}
.x1a_c01025{left:383.350920pt;}
.x35_c01025{left:392.854920pt;}
.x2f_c01025{left:402.301720pt;}
.x1b_c01025{left:411.801320pt;}
.x13_c01025{left:413.006920pt;}
.x36_c01025{left:422.568120pt;}
.x30_c01025{left:432.019320pt;}
.xa_c01025{left:441.637720pt;}
.x2c_c01025{left:442.869720pt;}
.x49_c01025{left:450.684120pt;}
.x3e_c01025{left:451.977720pt;}
.x33_c01025{left:457.790120pt;}
.x29_c01025{left:470.325720pt;}
.x4f_c01025{left:471.733720pt;}
.x65_c01025{left:479.794520pt;}
.xb_c01025{left:480.885720pt;}
.x52_c01025{left:481.849320pt;}
.x5d_c01025{left:483.191320pt;}
.x25_c01025{left:491.643720pt;}
.x50_c01025{left:499.788120pt;}
.x14_c01025{left:501.081720pt;}
.x3b_c01025{left:510.378920pt;}
.x2a_c01025{left:511.289720pt;}
.x3f_c01025{left:519.865320pt;}
.x31_c01025{left:530.346120pt;}
.x53_c01025{left:531.287720pt;}
.xc_c01025{left:540.052520pt;}
.x1c_c01025{left:549.987720pt;}
.x32_c01025{left:559.421320pt;}
.x62_c01025{left:569.510520pt;}
.x1d_c01025{left:579.648120pt;}
.x55_c01025{left:589.292920pt;}
.x3_c01025{left:599.030120pt;}
.x58_c01025{left:601.146520pt;}
.x37_c01025{left:609.427320pt;}
.x61_c01025{left:610.593320pt;}
.x26_c01025{left:617.637720pt;}
.x4a_c01025{left:618.557320pt;}
.x59_c01025{left:619.630920pt;}
.x41_c01025{left:623.027720pt;}
.x2b_c01025{left:629.764120pt;}
.xd_c01025{left:638.608120pt;}
.x40_c01025{left:640.429720pt;}
.x45_c01025{left:647.394920pt;}
.x56_c01025{left:668.435720pt;}
.x5a_c01025{left:670.283720pt;}
.x43_c01025{left:676.742920pt;}
.x4b_c01025{left:678.450120pt;}
}





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

.ir_c01026:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01026{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01026;src:url('chunks/assets/font_22398c8093db63fecf91a05c.woff2')format("woff");}.ff1_c01026{font-family:ff1_c01026;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01026;src:url('chunks/assets/font_1494b2f4305b952c2acf6da7.woff2')format("woff");}.ff2_c01026{font-family:ff2_c01026;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01026;src:url('chunks/assets/font_3de873b80d8c5b7cae6ab3a7.woff2')format("woff");}.ff3_c01026{font-family:ff3_c01026;line-height:0.666000;font-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_c01026{transform:matrix(0.017046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017046,0.000000,0.000000,0.250000,0,0);}
.m81_c01026{transform:matrix(0.077801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077801,0.000000,0.000000,0.250000,0,0);}
.ma2_c01026{transform:matrix(0.085228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085228,0.000000,0.000000,0.250000,0,0);}
.m9e_c01026{transform:matrix(0.113636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113636,0.000000,0.000000,0.250000,0,0);}
.ma0_c01026{transform:matrix(0.122160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122160,0.000000,0.000000,0.250000,0,0);}
.ma3_c01026{transform:matrix(0.130683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130683,0.000000,0.000000,0.250000,0,0);}
.ma1_c01026{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);}
.m9c_c01026{transform:matrix(0.148864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148864,0.000000,0.000000,0.250000,0,0);}
.m42_c01026{transform:matrix(0.177982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177982,0.000000,0.000000,0.250000,0,0);}
.m7b_c01026{transform:matrix(0.219533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219533,0.000000,0.000000,0.250000,0,0);}
.m5c_c01026{transform:matrix(0.227424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227424,0.000000,0.000000,0.250000,0,0);}
.m78_c01026{transform:matrix(0.230258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230258,0.000000,0.000000,0.250000,0,0);}
.mb3_c01026{transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);}
.ma4_c01026{transform:matrix(0.231351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231351,0.000000,0.000000,0.250000,0,0);}
.m27_c01026{transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);}
.m0_c01026{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.mb1_c01026{transform:matrix(0.250593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250593,0.000000,0.000000,0.250000,0,0);}
.m51_c01026{transform:matrix(0.250666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250666,0.000000,0.000000,0.250000,0,0);}
.m38_c01026{transform:matrix(0.251869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251869,0.000000,0.000000,0.250000,0,0);}
.m31_c01026{transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);}
.m2f_c01026{transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);}
.m6_c01026{transform:matrix(0.256507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256507,0.000000,0.000000,0.250000,0,0);}
.md_c01026{transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);}
.m36_c01026{transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);}
.m3c_c01026{transform:matrix(0.258139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258139,0.000000,0.000000,0.250000,0,0);}
.m11_c01026{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m92_c01026{transform:matrix(0.259590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259590,0.000000,0.000000,0.250000,0,0);}
.m50_c01026{transform:matrix(0.260085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260085,0.000000,0.000000,0.250000,0,0);}
.m1f_c01026{transform:matrix(0.260559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260559,0.000000,0.000000,0.250000,0,0);}
.m14_c01026{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m1e_c01026{transform:matrix(0.262580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262580,0.000000,0.000000,0.250000,0,0);}
.m2c_c01026{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m85_c01026{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m47_c01026{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m75_c01026{transform:matrix(0.266949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266949,0.000000,0.000000,0.250000,0,0);}
.m10_c01026{transform:matrix(0.267523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267523,0.000000,0.000000,0.250000,0,0);}
.mad_c01026{transform:matrix(0.267579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267579,0.000000,0.000000,0.250000,0,0);}
.m7_c01026{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m3d_c01026{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.m20_c01026{transform:matrix(0.268624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268624,0.000000,0.000000,0.250000,0,0);}
.m9b_c01026{transform:matrix(0.270873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270873,0.000000,0.000000,0.250000,0,0);}
.m59_c01026{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m15_c01026{transform:matrix(0.270968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270968,0.000000,0.000000,0.250000,0,0);}
.m2a_c01026{transform:matrix(0.271111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271111,0.000000,0.000000,0.250000,0,0);}
.m2_c01026{transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);}
.m66_c01026{transform:matrix(0.271150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271150,0.000000,0.000000,0.250000,0,0);}
.mb0_c01026{transform:matrix(0.271191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271191,0.000000,0.000000,0.250000,0,0);}
.m8c_c01026{transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);}
.m9d_c01026{transform:matrix(0.272007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272007,0.000000,0.000000,0.250000,0,0);}
.m5a_c01026{transform:matrix(0.272136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272136,0.000000,0.000000,0.250000,0,0);}
.m22_c01026{transform:matrix(0.274339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274339,0.000000,0.000000,0.250000,0,0);}
.m4d_c01026{transform:matrix(0.275465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275465,0.000000,0.000000,0.250000,0,0);}
.m6e_c01026{transform:matrix(0.275491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275491,0.000000,0.000000,0.250000,0,0);}
.m32_c01026{transform:matrix(0.276063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276063,0.000000,0.000000,0.250000,0,0);}
.m3a_c01026{transform:matrix(0.276767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276767,0.000000,0.000000,0.250000,0,0);}
.m4f_c01026{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m18_c01026{transform:matrix(0.277355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277355,0.000000,0.000000,0.250000,0,0);}
.m16_c01026{transform:matrix(0.277679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277679,0.000000,0.000000,0.250000,0,0);}
.m88_c01026{transform:matrix(0.277708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277708,0.000000,0.000000,0.250000,0,0);}
.m37_c01026{transform:matrix(0.278074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278074,0.000000,0.000000,0.250000,0,0);}
.m60_c01026{transform:matrix(0.278331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278331,0.000000,0.000000,0.250000,0,0);}
.m17_c01026{transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);}
.m93_c01026{transform:matrix(0.280159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280159,0.000000,0.000000,0.250000,0,0);}
.m7f_c01026{transform:matrix(0.281039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281039,0.000000,0.000000,0.250000,0,0);}
.m8b_c01026{transform:matrix(0.281666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281666,0.000000,0.000000,0.250000,0,0);}
.m43_c01026{transform:matrix(0.282148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282148,0.000000,0.000000,0.250000,0,0);}
.mf_c01026{transform:matrix(0.282559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282559,0.000000,0.000000,0.250000,0,0);}
.ma6_c01026{transform:matrix(0.282672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282672,0.000000,0.000000,0.250000,0,0);}
.m70_c01026{transform:matrix(0.283228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283228,0.000000,0.000000,0.250000,0,0);}
.m6f_c01026{transform:matrix(0.284092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284092,0.000000,0.000000,0.250000,0,0);}
.m82_c01026{transform:matrix(0.284407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284407,0.000000,0.000000,0.250000,0,0);}
.ma7_c01026{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m58_c01026{transform:matrix(0.284886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284886,0.000000,0.000000,0.250000,0,0);}
.mb8_c01026{transform:matrix(0.285290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285290,0.000000,0.000000,0.250000,0,0);}
.m55_c01026{transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);}
.m90_c01026{transform:matrix(0.286111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286111,0.000000,0.000000,0.250000,0,0);}
.m28_c01026{transform:matrix(0.286401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286401,0.000000,0.000000,0.250000,0,0);}
.m44_c01026{transform:matrix(0.286412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286412,0.000000,0.000000,0.250000,0,0);}
.m86_c01026{transform:matrix(0.286496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286496,0.000000,0.000000,0.250000,0,0);}
.m94_c01026{transform:matrix(0.287725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287725,0.000000,0.000000,0.250000,0,0);}
.m72_c01026{transform:matrix(0.288770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288770,0.000000,0.000000,0.250000,0,0);}
.m83_c01026{transform:matrix(0.288806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288806,0.000000,0.000000,0.250000,0,0);}
.m8e_c01026{transform:matrix(0.288838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288838,0.000000,0.000000,0.250000,0,0);}
.m45_c01026{transform:matrix(0.289278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289278,0.000000,0.000000,0.250000,0,0);}
.m1a_c01026{transform:matrix(0.289917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289917,0.000000,0.000000,0.250000,0,0);}
.ma8_c01026{transform:matrix(0.290198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290198,0.000000,0.000000,0.250000,0,0);}
.mc_c01026{transform:matrix(0.290479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290479,0.000000,0.000000,0.250000,0,0);}
.m79_c01026{transform:matrix(0.290644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290644,0.000000,0.000000,0.250000,0,0);}
.m49_c01026{transform:matrix(0.291315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291315,0.000000,0.000000,0.250000,0,0);}
.m8d_c01026{transform:matrix(0.291753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291753,0.000000,0.000000,0.250000,0,0);}
.m97_c01026{transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);}
.m1d_c01026{transform:matrix(0.292643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292643,0.000000,0.000000,0.250000,0,0);}
.m3f_c01026{transform:matrix(0.293004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293004,0.000000,0.000000,0.250000,0,0);}
.mb2_c01026{transform:matrix(0.293086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293086,0.000000,0.000000,0.250000,0,0);}
.m96_c01026{transform:matrix(0.293251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293251,0.000000,0.000000,0.250000,0,0);}
.m4e_c01026{transform:matrix(0.293272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293272,0.000000,0.000000,0.250000,0,0);}
.m9_c01026{transform:matrix(0.293857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293857,0.000000,0.000000,0.250000,0,0);}
.maf_c01026{transform:matrix(0.294681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294681,0.000000,0.000000,0.250000,0,0);}
.m4_c01026{transform:matrix(0.294759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294759,0.000000,0.000000,0.250000,0,0);}
.m2e_c01026{transform:matrix(0.294764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294764,0.000000,0.000000,0.250000,0,0);}
.m6d_c01026{transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);}
.mac_c01026{transform:matrix(0.294955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294955,0.000000,0.000000,0.250000,0,0);}
.m84_c01026{transform:matrix(0.295007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295007,0.000000,0.000000,0.250000,0,0);}
.m12_c01026{transform:matrix(0.295223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295223,0.000000,0.000000,0.250000,0,0);}
.m4b_c01026{transform:matrix(0.295330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295330,0.000000,0.000000,0.250000,0,0);}
.m21_c01026{transform:matrix(0.296078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296078,0.000000,0.000000,0.250000,0,0);}
.m99_c01026{transform:matrix(0.296813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296813,0.000000,0.000000,0.250000,0,0);}
.m71_c01026{transform:matrix(0.297425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297425,0.000000,0.000000,0.250000,0,0);}
.m35_c01026{transform:matrix(0.297631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297631,0.000000,0.000000,0.250000,0,0);}
.m63_c01026{transform:matrix(0.298145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298145,0.000000,0.000000,0.250000,0,0);}
.m52_c01026{transform:matrix(0.298503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298503,0.000000,0.000000,0.250000,0,0);}
.m53_c01026{transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);}
.ma5_c01026{transform:matrix(0.299533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299533,0.000000,0.000000,0.250000,0,0);}
.mb5_c01026{transform:matrix(0.300484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300484,0.000000,0.000000,0.250000,0,0);}
.m1c_c01026{transform:matrix(0.300562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300562,0.000000,0.000000,0.250000,0,0);}
.m2b_c01026{transform:matrix(0.300932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300932,0.000000,0.000000,0.250000,0,0);}
.m74_c01026{transform:matrix(0.301789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301789,0.000000,0.000000,0.250000,0,0);}
.m46_c01026{transform:matrix(0.301807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301807,0.000000,0.000000,0.250000,0,0);}
.m68_c01026{transform:matrix(0.302578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302578,0.000000,0.000000,0.250000,0,0);}
.m57_c01026{transform:matrix(0.302948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302948,0.000000,0.000000,0.250000,0,0);}
.mae_c01026{transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);}
.m1_c01026{transform:matrix(0.303833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303833,0.000000,0.000000,0.250000,0,0);}
.m62_c01026{transform:matrix(0.304010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304010,0.000000,0.000000,0.250000,0,0);}
.ma_c01026{transform:matrix(0.304119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304119,0.000000,0.000000,0.250000,0,0);}
.m25_c01026{transform:matrix(0.304443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304443,0.000000,0.000000,0.250000,0,0);}
.m3_c01026{transform:matrix(0.304632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304632,0.000000,0.000000,0.250000,0,0);}
.m7a_c01026{transform:matrix(0.304765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304765,0.000000,0.000000,0.250000,0,0);}
.m1b_c01026{transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);}
.mb6_c01026{transform:matrix(0.305260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305260,0.000000,0.000000,0.250000,0,0);}
.m13_c01026{transform:matrix(0.306497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306497,0.000000,0.000000,0.250000,0,0);}
.m30_c01026{transform:matrix(0.306924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306924,0.000000,0.000000,0.250000,0,0);}
.m6b_c01026{transform:matrix(0.307786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307786,0.000000,0.000000,0.250000,0,0);}
.m69_c01026{transform:matrix(0.307837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307837,0.000000,0.000000,0.250000,0,0);}
.mab_c01026{transform:matrix(0.308448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308448,0.000000,0.000000,0.250000,0,0);}
.m5b_c01026{transform:matrix(0.308835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308835,0.000000,0.000000,0.250000,0,0);}
.m26_c01026{transform:matrix(0.308864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308864,0.000000,0.000000,0.250000,0,0);}
.m56_c01026{transform:matrix(0.309430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309430,0.000000,0.000000,0.250000,0,0);}
.m48_c01026{transform:matrix(0.309444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309444,0.000000,0.000000,0.250000,0,0);}
.m98_c01026{transform:matrix(0.310657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310657,0.000000,0.000000,0.250000,0,0);}
.m34_c01026{transform:matrix(0.311429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311429,0.000000,0.000000,0.250000,0,0);}
.m39_c01026{transform:matrix(0.311486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311486,0.000000,0.000000,0.250000,0,0);}
.m7e_c01026{transform:matrix(0.312864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312864,0.000000,0.000000,0.250000,0,0);}
.mb7_c01026{transform:matrix(0.314236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314236,0.000000,0.000000,0.250000,0,0);}
.m8f_c01026{transform:matrix(0.315803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315803,0.000000,0.000000,0.250000,0,0);}
.m5_c01026{transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);}
.m54_c01026{transform:matrix(0.316338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316338,0.000000,0.000000,0.250000,0,0);}
.m95_c01026{transform:matrix(0.317985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317985,0.000000,0.000000,0.250000,0,0);}
.m7d_c01026{transform:matrix(0.318158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318158,0.000000,0.000000,0.250000,0,0);}
.ma9_c01026{transform:matrix(0.321575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321575,0.000000,0.000000,0.250000,0,0);}
.m87_c01026{transform:matrix(0.323192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323192,0.000000,0.000000,0.250000,0,0);}
.m41_c01026{transform:matrix(0.323414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323414,0.000000,0.000000,0.250000,0,0);}
.mb_c01026{transform:matrix(0.323461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323461,0.000000,0.000000,0.250000,0,0);}
.m40_c01026{transform:matrix(0.323566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323566,0.000000,0.000000,0.250000,0,0);}
.mb4_c01026{transform:matrix(0.323614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323614,0.000000,0.000000,0.250000,0,0);}
.m7c_c01026{transform:matrix(0.323737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323737,0.000000,0.000000,0.250000,0,0);}
.m91_c01026{transform:matrix(0.325016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325016,0.000000,0.000000,0.250000,0,0);}
.m4c_c01026{transform:matrix(0.325136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325136,0.000000,0.000000,0.250000,0,0);}
.m77_c01026{transform:matrix(0.327070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327070,0.000000,0.000000,0.250000,0,0);}
.me_c01026{transform:matrix(0.327076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327076,0.000000,0.000000,0.250000,0,0);}
.m61_c01026{transform:matrix(0.327340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327340,0.000000,0.000000,0.250000,0,0);}
.m73_c01026{transform:matrix(0.328063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328063,0.000000,0.000000,0.250000,0,0);}
.m6a_c01026{transform:matrix(0.328157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328157,0.000000,0.000000,0.250000,0,0);}
.m76_c01026{transform:matrix(0.328487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328487,0.000000,0.000000,0.250000,0,0);}
.m19_c01026{transform:matrix(0.328563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328563,0.000000,0.000000,0.250000,0,0);}
.m5e_c01026{transform:matrix(0.329226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329226,0.000000,0.000000,0.250000,0,0);}
.m67_c01026{transform:matrix(0.329542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329542,0.000000,0.000000,0.250000,0,0);}
.m64_c01026{transform:matrix(0.329948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329948,0.000000,0.000000,0.250000,0,0);}
.maa_c01026{transform:matrix(0.330354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330354,0.000000,0.000000,0.250000,0,0);}
.m3b_c01026{transform:matrix(0.331101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331101,0.000000,0.000000,0.250000,0,0);}
.m9a_c01026{transform:matrix(0.333511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333511,0.000000,0.000000,0.250000,0,0);}
.m33_c01026{transform:matrix(0.334345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334345,0.000000,0.000000,0.250000,0,0);}
.m5f_c01026{transform:matrix(0.335004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335004,0.000000,0.000000,0.250000,0,0);}
.m89_c01026{transform:matrix(0.335420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335420,0.000000,0.000000,0.250000,0,0);}
.m2d_c01026{transform:matrix(0.338886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338886,0.000000,0.000000,0.250000,0,0);}
.m6c_c01026{transform:matrix(0.340015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340015,0.000000,0.000000,0.250000,0,0);}
.m5d_c01026{transform:matrix(0.342694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342694,0.000000,0.000000,0.250000,0,0);}
.m23_c01026{transform:matrix(0.343129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343129,0.000000,0.000000,0.250000,0,0);}
.m4a_c01026{transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);}
.m24_c01026{transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349354,0.000000,0.000000,0.250000,0,0);}
.m65_c01026{transform:matrix(0.362188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362188,0.000000,0.000000,0.250000,0,0);}
.m3e_c01026{transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);}
.m29_c01026{transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);}
.m8_c01026{transform:matrix(0.385437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385437,0.000000,0.000000,0.250000,0,0);}
.m80_c01026{transform:matrix(0.391460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391460,0.000000,0.000000,0.250000,0,0);}
.m8a_c01026{transform:matrix(0.435016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435016,0.000000,0.000000,0.250000,0,0);}
.v0_c01026{vertical-align:0.000000px;}
.ls8_c01026{letter-spacing:-3.201667px;}
.ls4_c01026{letter-spacing:-2.744280px;}
.ls11_c01026{letter-spacing:-2.543317px;}
.ls7_c01026{letter-spacing:-1.427026px;}
.ls5_c01026{letter-spacing:-1.275120px;}
.ls13_c01026{letter-spacing:-0.948737px;}
.ls12_c01026{letter-spacing:-0.661262px;}
.ls1_c01026{letter-spacing:0.000000px;}
.ls3_c01026{letter-spacing:1.301573px;}
.lsa_c01026{letter-spacing:1.654409px;}
.lsc_c01026{letter-spacing:2.313036px;}
.ls14_c01026{letter-spacing:2.673713px;}
.lse_c01026{letter-spacing:2.799166px;}
.ls15_c01026{letter-spacing:2.987345px;}
.ls9_c01026{letter-spacing:3.405610px;}
.lsd_c01026{letter-spacing:3.481315px;}
.ls10_c01026{letter-spacing:3.536201px;}
.ls2_c01026{letter-spacing:3.920400px;}
.lsb_c01026{letter-spacing:3.960000px;}
.ls6_c01026{letter-spacing:4.108500px;}
.ls0_c01026{letter-spacing:4.253287px;}
.lsf_c01026{letter-spacing:62.726400px;}
.sc__c01026{text-shadow:none;}
.sc0_c01026{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01026{-webkit-text-stroke:0px transparent;}
.sc0_c01026{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01026{word-spacing:-17.505287px;}
.ws1_c01026{word-spacing:0.000000px;}
._0_c01026{width:5.856814px;}
.fc0_c01026{color:transparent;}
.fs8_c01026{font-size:10.890198px;}
.fsc_c01026{font-size:15.444198px;}
.fs1_c01026{font-size:20.790000px;}
.fs2_c01026{font-size:32.472000px;}
.fs5_c01026{font-size:36.432000px;}
.fs4_c01026{font-size:45.144000px;}
.fse_c01026{font-size:62.726400px;}
.fsb_c01026{font-size:66.330000px;}
.fsa_c01026{font-size:68.112198px;}
.fsf_c01026{font-size:72.666198px;}
.fs7_c01026{font-size:74.844000px;}
.fs3_c01026{font-size:78.408000px;}
.fsd_c01026{font-size:79.200000px;}
.fs6_c01026{font-size:82.170000px;}
.fs0_c01026{font-size:87.516198px;}
.fs9_c01026{font-size:91.476198px;}
.y0_c01026{bottom:0.000000px;}
.y1_c01026{bottom:76.500000px;}
.y20_c01026{bottom:130.354335px;}
.y1f_c01026{bottom:161.717535px;}
.y1e_c01026{bottom:193.793535px;}
.y1d_c01026{bottom:224.087535px;}
.y1c_c01026{bottom:224.096841px;}
.y1b_c01026{bottom:256.871385px;}
.y1a_c01026{bottom:320.666985px;}
.y19_c01026{bottom:352.747935px;}
.y18_c01026{bottom:384.823935px;}
.y17_c01026{bottom:416.543535px;}
.y16_c01026{bottom:431.863785px;}
.y15_c01026{bottom:448.619535px;}
.y14_c01026{bottom:479.982735px;}
.y13_c01026{bottom:511.702335px;}
.y12_c01026{bottom:543.416985px;}
.y11_c01026{bottom:606.861135px;}
.y10_c01026{bottom:619.691535px;}
.yf_c01026{bottom:638.224335px;}
.ye_c01026{bottom:670.656735px;}
.yd_c01026{bottom:701.663535px;}
.yc_c01026{bottom:725.542335px;}
.yb_c01026{bottom:733.734585px;}
.ya_c01026{bottom:765.459135px;}
.y9_c01026{bottom:796.822335px;}
.y8_c01026{bottom:828.536985px;}
.y7_c01026{bottom:860.617935px;}
.y6_c01026{bottom:891.981135px;}
.y5_c01026{bottom:924.057135px;}
.y4_c01026{bottom:1016.359785px;}
.y3_c01026{bottom:1029.190185px;}
.y2_c01026{bottom:1060.553385px;}
.ha_c01026{height:11.358136px;}
.he_c01026{height:16.107816px;}
.h3_c01026{height:21.683320px;}
.h4_c01026{height:33.867281px;}
.h7_c01026{height:37.997438px;}
.h10_c01026{height:41.775782px;}
.h6_c01026{height:47.083781px;}
.hc_c01026{height:66.848397px;}
.hd_c01026{height:69.180117px;}
.h11_c01026{height:71.317899px;}
.h9_c01026{height:73.455293px;}
.h5_c01026{height:76.953164px;}
.hf_c01026{height:77.730469px;}
.h8_c01026{height:80.645361px;}
.h2_c01026{height:85.892362px;}
.hb_c01026{height:89.778886px;}
.h1_c01026{height:1110.000000px;}
.h0_c01026{height:1263.000000px;}
.w1_c01026{width:763.500000px;}
.w0_c01026{width:892.500000px;}
.x0_c01026{left:0.000000px;}
.x1_c01026{left:64.500000px;}
.xe_c01026{left:77.003235px;}
.x5_c01026{left:78.344685px;}
.x67_c01026{left:79.507935px;}
.x32_c01026{left:110.712735px;}
.x4b_c01026{left:112.648185px;}
.x45_c01026{left:121.419585px;}
.x1d_c01026{left:122.840235px;}
.x5c_c01026{left:131.171085px;}
.x26_c01026{left:132.368985px;}
.x3d_c01026{left:146.139885px;}
.x5a_c01026{left:152.758035px;}
.x58_c01026{left:154.683585px;}
.x4c_c01026{left:165.355785px;}
.x27_c01026{left:166.400235px;}
.x3e_c01026{left:167.820885px;}
.x6_c01026{left:177.082335px;}
.x63_c01026{left:186.739785px;}
.x33_c01026{left:188.561385px;}
.x5d_c01026{left:193.041135px;}
.x59_c01026{left:197.308035px;}
.x5b_c01026{left:198.867285px;}
.x65_c01026{left:199.941435px;}
.x51_c01026{left:209.386035px;}
.x1e_c01026{left:210.658185px;}
.x55_c01026{left:219.761235px;}
.x17_c01026{left:221.330385px;}
.x46_c01026{left:232.344135px;}
.xf_c01026{left:233.413335px;}
.x18_c01026{left:243.239085px;}
.x7_c01026{left:255.168585px;}
.x28_c01026{left:256.594185px;}
.x34_c01026{left:265.895235px;}
.x29_c01026{left:267.484185px;}
.x1f_c01026{left:277.988085px;}
.x3f_c01026{left:288.219735px;}
.x35_c01026{left:299.010735px;}
.x2a_c01026{left:300.183885px;}
.x10_c01026{left:301.426335px;}
.x42_c01026{left:310.806585px;}
.x2b_c01026{left:320.582835px;}
.x68_c01026{left:321.795585px;}
.x4f_c01026{left:332.200485px;}
.x19_c01026{left:333.853785px;}
.x36_c01026{left:342.664785px;}
.x20_c01026{left:343.941885px;}
.x11_c01026{left:354.089385px;}
.x1a_c01026{left:365.132835px;}
.x8_c01026{left:366.271335px;}
.x39_c01026{left:376.181235px;}
.x2c_c01026{left:388.081035px;}
.x4d_c01026{left:399.535335px;}
.x3a_c01026{left:411.652935px;}
.x5e_c01026{left:419.597685px;}
.x21_c01026{left:420.741135px;}
.x47_c01026{left:422.231085px;}
.x1b_c01026{left:433.027035px;}
.x12_c01026{left:444.788235px;}
.x22_c01026{left:456.108885px;}
.x4e_c01026{left:465.786135px;}
.x56_c01026{left:467.137485px;}
.x13_c01026{left:476.502885px;}
.x53_c01026{left:485.947485px;}
.x23_c01026{left:488.269035px;}
.x3_c01026{left:494.124885px;}
.x3b_c01026{left:498.569985px;}
.x2d_c01026{left:499.634235px;}
.x1c_c01026{left:509.969835px;}
.x5f_c01026{left:519.775785px;}
.x14_c01026{left:521.305335px;}
.x43_c01026{left:530.542035px;}
.x52_c01026{left:531.734985px;}
.x9_c01026{left:532.833885px;}
.x48_c01026{left:542.793285px;}
.xa_c01026{left:554.207985px;}
.x24_c01026{left:565.498935px;}
.x2e_c01026{left:576.319635px;}
.x60_c01026{left:578.665935px;}
.x61_c01026{left:580.799385px;}
.x49_c01026{left:587.011635px;}
.xb_c01026{left:597.144285px;}
.x50_c01026{left:598.416435px;}
.x2f_c01026{left:609.078735px;}
.x37_c01026{left:619.255935px;}
.x15_c01026{left:621.206235px;}
.x40_c01026{left:630.299385px;}
.x4a_c01026{left:631.858635px;}
.x57_c01026{left:641.323035px;}
.x30_c01026{left:653.272335px;}
.x3c_c01026{left:664.345485px;}
.x66_c01026{left:673.458435px;}
.x2_c01026{left:675.695835px;}
.x62_c01026{left:677.383785px;}
.x44_c01026{left:685.180035px;}
.x38_c01026{left:687.387735px;}
.x25_c01026{left:688.729185px;}
.xc_c01026{left:697.847085px;}
.x4_c01026{left:700.084485px;}
.x64_c01026{left:707.974785px;}
.x16_c01026{left:709.484535px;}
.x31_c01026{left:719.948835px;}
.xd_c01026{left:730.576485px;}
.x41_c01026{left:742.664385px;}
.x54_c01026{left:753.890985px;}
@media print{
.v0_c01026{vertical-align:0.000000pt;}
.ls8_c01026{letter-spacing:-2.845926pt;}
.ls4_c01026{letter-spacing:-2.439360pt;}
.ls11_c01026{letter-spacing:-2.260726pt;}
.ls7_c01026{letter-spacing:-1.268467pt;}
.ls5_c01026{letter-spacing:-1.133440pt;}
.ls13_c01026{letter-spacing:-0.843322pt;}
.ls12_c01026{letter-spacing:-0.587789pt;}
.ls1_c01026{letter-spacing:0.000000pt;}
.ls3_c01026{letter-spacing:1.156954pt;}
.lsa_c01026{letter-spacing:1.470586pt;}
.lsc_c01026{letter-spacing:2.056032pt;}
.ls14_c01026{letter-spacing:2.376634pt;}
.lse_c01026{letter-spacing:2.488147pt;}
.ls15_c01026{letter-spacing:2.655418pt;}
.ls9_c01026{letter-spacing:3.027209pt;}
.lsd_c01026{letter-spacing:3.094502pt;}
.ls10_c01026{letter-spacing:3.143290pt;}
.ls2_c01026{letter-spacing:3.484800pt;}
.lsb_c01026{letter-spacing:3.520000pt;}
.ls6_c01026{letter-spacing:3.652000pt;}
.ls0_c01026{letter-spacing:3.780700pt;}
.lsf_c01026{letter-spacing:55.756800pt;}
.ws0_c01026{word-spacing:-15.560255pt;}
.ws1_c01026{word-spacing:0.000000pt;}
._0_c01026{width:5.206057pt;}
.fs8_c01026{font-size:9.680176pt;}
.fsc_c01026{font-size:13.728176pt;}
.fs1_c01026{font-size:18.480000pt;}
.fs2_c01026{font-size:28.864000pt;}
.fs5_c01026{font-size:32.384000pt;}
.fs4_c01026{font-size:40.128000pt;}
.fse_c01026{font-size:55.756800pt;}
.fsb_c01026{font-size:58.960000pt;}
.fsa_c01026{font-size:60.544176pt;}
.fsf_c01026{font-size:64.592176pt;}
.fs7_c01026{font-size:66.528000pt;}
.fs3_c01026{font-size:69.696000pt;}
.fsd_c01026{font-size:70.400000pt;}
.fs6_c01026{font-size:73.040000pt;}
.fs0_c01026{font-size:77.792176pt;}
.fs9_c01026{font-size:81.312176pt;}
.y0_c01026{bottom:0.000000pt;}
.y1_c01026{bottom:68.000000pt;}
.y20_c01026{bottom:115.870520pt;}
.y1f_c01026{bottom:143.748920pt;}
.y1e_c01026{bottom:172.260920pt;}
.y1d_c01026{bottom:199.188920pt;}
.y1c_c01026{bottom:199.197192pt;}
.y1b_c01026{bottom:228.330120pt;}
.y1a_c01026{bottom:285.037320pt;}
.y19_c01026{bottom:313.553720pt;}
.y18_c01026{bottom:342.065720pt;}
.y17_c01026{bottom:370.260920pt;}
.y16_c01026{bottom:383.878920pt;}
.y15_c01026{bottom:398.772920pt;}
.y14_c01026{bottom:426.651320pt;}
.y13_c01026{bottom:454.846520pt;}
.y12_c01026{bottom:483.037320pt;}
.y11_c01026{bottom:539.432120pt;}
.y10_c01026{bottom:550.836920pt;}
.yf_c01026{bottom:567.310520pt;}
.ye_c01026{bottom:596.139320pt;}
.yd_c01026{bottom:623.700920pt;}
.yc_c01026{bottom:644.926520pt;}
.yb_c01026{bottom:652.208520pt;}
.ya_c01026{bottom:680.408120pt;}
.y9_c01026{bottom:708.286520pt;}
.y8_c01026{bottom:736.477320pt;}
.y7_c01026{bottom:764.993720pt;}
.y6_c01026{bottom:792.872120pt;}
.y5_c01026{bottom:821.384120pt;}
.y4_c01026{bottom:903.430920pt;}
.y3_c01026{bottom:914.835720pt;}
.y2_c01026{bottom:942.714120pt;}
.ha_c01026{height:10.096121pt;}
.he_c01026{height:14.318059pt;}
.h3_c01026{height:19.274063pt;}
.h4_c01026{height:30.104250pt;}
.h7_c01026{height:33.775500pt;}
.h10_c01026{height:37.134029pt;}
.h6_c01026{height:41.852250pt;}
.hc_c01026{height:59.420798pt;}
.hd_c01026{height:61.493438pt;}
.h11_c01026{height:63.393688pt;}
.h9_c01026{height:65.293594pt;}
.h5_c01026{height:68.402813pt;}
.hf_c01026{height:69.093750pt;}
.h8_c01026{height:71.684766pt;}
.h2_c01026{height:76.348766pt;}
.hb_c01026{height:79.803454pt;}
.h1_c01026{height:986.666667pt;}
.h0_c01026{height:1122.666667pt;}
.w1_c01026{width:678.666667pt;}
.w0_c01026{width:793.333333pt;}
.x0_c01026{left:0.000000pt;}
.x1_c01026{left:57.333333pt;}
.xe_c01026{left:68.447320pt;}
.x5_c01026{left:69.639720pt;}
.x67_c01026{left:70.673720pt;}
.x32_c01026{left:98.411320pt;}
.x4b_c01026{left:100.131720pt;}
.x45_c01026{left:107.928520pt;}
.x1d_c01026{left:109.191320pt;}
.x5c_c01026{left:116.596520pt;}
.x26_c01026{left:117.661320pt;}
.x3d_c01026{left:129.902120pt;}
.x5a_c01026{left:135.784920pt;}
.x58_c01026{left:137.496520pt;}
.x4c_c01026{left:146.982920pt;}
.x27_c01026{left:147.911320pt;}
.x3e_c01026{left:149.174120pt;}
.x6_c01026{left:157.406520pt;}
.x63_c01026{left:165.990920pt;}
.x33_c01026{left:167.610120pt;}
.x5d_c01026{left:171.592120pt;}
.x59_c01026{left:175.384920pt;}
.x5b_c01026{left:176.770920pt;}
.x65_c01026{left:177.725720pt;}
.x51_c01026{left:186.120920pt;}
.x1e_c01026{left:187.251720pt;}
.x55_c01026{left:195.343320pt;}
.x17_c01026{left:196.738120pt;}
.x46_c01026{left:206.528120pt;}
.xf_c01026{left:207.478520pt;}
.x18_c01026{left:216.212520pt;}
.x7_c01026{left:226.816520pt;}
.x28_c01026{left:228.083720pt;}
.x34_c01026{left:236.351320pt;}
.x29_c01026{left:237.763720pt;}
.x1f_c01026{left:247.100520pt;}
.x3f_c01026{left:256.195320pt;}
.x35_c01026{left:265.787320pt;}
.x2a_c01026{left:266.830120pt;}
.x10_c01026{left:267.934520pt;}
.x42_c01026{left:276.272520pt;}
.x2b_c01026{left:284.962520pt;}
.x68_c01026{left:286.040520pt;}
.x4f_c01026{left:295.289320pt;}
.x19_c01026{left:296.758920pt;}
.x36_c01026{left:304.590920pt;}
.x20_c01026{left:305.726120pt;}
.x11_c01026{left:314.746120pt;}
.x1a_c01026{left:324.562520pt;}
.x8_c01026{left:325.574520pt;}
.x39_c01026{left:334.383320pt;}
.x2c_c01026{left:344.960920pt;}
.x4d_c01026{left:355.142520pt;}
.x3a_c01026{left:365.913720pt;}
.x5e_c01026{left:372.975720pt;}
.x21_c01026{left:373.992120pt;}
.x47_c01026{left:375.316520pt;}
.x1b_c01026{left:384.912920pt;}
.x12_c01026{left:395.367320pt;}
.x22_c01026{left:405.430120pt;}
.x4e_c01026{left:414.032120pt;}
.x56_c01026{left:415.233320pt;}
.x13_c01026{left:423.558120pt;}
.x53_c01026{left:431.953320pt;}
.x23_c01026{left:434.016920pt;}
.x3_c01026{left:439.222120pt;}
.x3b_c01026{left:443.173320pt;}
.x2d_c01026{left:444.119320pt;}
.x1c_c01026{left:453.306520pt;}
.x5f_c01026{left:462.022920pt;}
.x14_c01026{left:463.382520pt;}
.x43_c01026{left:471.592920pt;}
.x52_c01026{left:472.653320pt;}
.x9_c01026{left:473.630120pt;}
.x48_c01026{left:482.482920pt;}
.xa_c01026{left:492.629320pt;}
.x24_c01026{left:502.665720pt;}
.x2e_c01026{left:512.284120pt;}
.x60_c01026{left:514.369720pt;}
.x61_c01026{left:516.266120pt;}
.x49_c01026{left:521.788120pt;}
.xb_c01026{left:530.794920pt;}
.x50_c01026{left:531.925720pt;}
.x2f_c01026{left:541.403320pt;}
.x37_c01026{left:550.449720pt;}
.x15_c01026{left:552.183320pt;}
.x40_c01026{left:560.266120pt;}
.x4a_c01026{left:561.652120pt;}
.x57_c01026{left:570.064920pt;}
.x30_c01026{left:580.686520pt;}
.x3c_c01026{left:590.529320pt;}
.x66_c01026{left:598.629720pt;}
.x2_c01026{left:600.618520pt;}
.x62_c01026{left:602.118920pt;}
.x44_c01026{left:609.048920pt;}
.x38_c01026{left:611.011320pt;}
.x25_c01026{left:612.203720pt;}
.xc_c01026{left:620.308520pt;}
.x4_c01026{left:622.297320pt;}
.x64_c01026{left:629.310920pt;}
.x16_c01026{left:630.652920pt;}
.x31_c01026{left:639.954520pt;}
.xd_c01026{left:649.401320pt;}
.x41_c01026{left:660.146120pt;}
.x54_c01026{left:670.125320pt;}
}





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

.ir_c01027:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01027{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01027;src:url('chunks/assets/font_90608227ed51f919b930b0ef.woff2')format("woff");}.ff1_c01027{font-family:ff1_c01027;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01027;src:url('chunks/assets/font_b52d03aa6e8049c437c1067d.woff2')format("woff");}.ff2_c01027{font-family:ff2_c01027;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01027;src:url('chunks/assets/font_5554e7981dee45486d5d41a4.woff2')format("woff");}.ff3_c01027{font-family:ff3_c01027;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ma0_c01027{transform:matrix(0.135839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135839,0.000000,0.000000,0.250000,0,0);}
.m77_c01027{transform:matrix(0.235807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235807,0.000000,0.000000,0.250000,0,0);}
.m31_c01027{transform:matrix(0.246148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246148,0.000000,0.000000,0.250000,0,0);}
.m0_c01027{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m6_c01027{transform:matrix(0.251590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251590,0.000000,0.000000,0.250000,0,0);}
.m3_c01027{transform:matrix(0.252169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252169,0.000000,0.000000,0.250000,0,0);}
.m57_c01027{transform:matrix(0.253032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253032,0.000000,0.000000,0.250000,0,0);}
.m60_c01027{transform:matrix(0.253360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253360,0.000000,0.000000,0.250000,0,0);}
.m7_c01027{transform:matrix(0.253536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253536,0.000000,0.000000,0.250000,0,0);}
.m96_c01027{transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);}
.m8c_c01027{transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);}
.m46_c01027{transform:matrix(0.257079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257079,0.000000,0.000000,0.250000,0,0);}
.m9e_c01027{transform:matrix(0.257155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257155,0.000000,0.000000,0.250000,0,0);}
.m92_c01027{transform:matrix(0.257258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257258,0.000000,0.000000,0.250000,0,0);}
.m35_c01027{transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);}
.m64_c01027{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m7b_c01027{transform:matrix(0.259580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259580,0.000000,0.000000,0.250000,0,0);}
.m39_c01027{transform:matrix(0.260193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260193,0.000000,0.000000,0.250000,0,0);}
.m51_c01027{transform:matrix(0.260559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260559,0.000000,0.000000,0.250000,0,0);}
.m82_c01027{transform:matrix(0.260563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260563,0.000000,0.000000,0.250000,0,0);}
.m28_c01027{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.ma6_c01027{transform:matrix(0.261735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261735,0.000000,0.000000,0.250000,0,0);}
.m5e_c01027{transform:matrix(0.261946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261946,0.000000,0.000000,0.250000,0,0);}
.mf_c01027{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m15_c01027{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m1e_c01027{transform:matrix(0.265224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265224,0.000000,0.000000,0.250000,0,0);}
.m2d_c01027{transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);}
.m81_c01027{transform:matrix(0.265879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265879,0.000000,0.000000,0.250000,0,0);}
.m19_c01027{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m4d_c01027{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.ma7_c01027{transform:matrix(0.267453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267453,0.000000,0.000000,0.250000,0,0);}
.m1a_c01027{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.mc_c01027{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.m70_c01027{transform:matrix(0.268647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268647,0.000000,0.000000,0.250000,0,0);}
.m9c_c01027{transform:matrix(0.269269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269269,0.000000,0.000000,0.250000,0,0);}
.m4a_c01027{transform:matrix(0.269402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269402,0.000000,0.000000,0.250000,0,0);}
.ma4_c01027{transform:matrix(0.269681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269681,0.000000,0.000000,0.250000,0,0);}
.m22_c01027{transform:matrix(0.269774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269774,0.000000,0.000000,0.250000,0,0);}
.m88_c01027{transform:matrix(0.270873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270873,0.000000,0.000000,0.250000,0,0);}
.m91_c01027{transform:matrix(0.270991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270991,0.000000,0.000000,0.250000,0,0);}
.m94_c01027{transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);}
.m6a_c01027{transform:matrix(0.272153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272153,0.000000,0.000000,0.250000,0,0);}
.m54_c01027{transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);}
.m44_c01027{transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);}
.m5c_c01027{transform:matrix(0.274323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274323,0.000000,0.000000,0.250000,0,0);}
.m84_c01027{transform:matrix(0.274855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274855,0.000000,0.000000,0.250000,0,0);}
.m98_c01027{transform:matrix(0.275308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275308,0.000000,0.000000,0.250000,0,0);}
.m36_c01027{transform:matrix(0.275470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275470,0.000000,0.000000,0.250000,0,0);}
.m41_c01027{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m4c_c01027{transform:matrix(0.277369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277369,0.000000,0.000000,0.250000,0,0);}
.m7d_c01027{transform:matrix(0.277708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277708,0.000000,0.000000,0.250000,0,0);}
.m9f_c01027{transform:matrix(0.278482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278482,0.000000,0.000000,0.250000,0,0);}
.m3d_c01027{transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);}
.m55_c01027{transform:matrix(0.278586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278586,0.000000,0.000000,0.250000,0,0);}
.m74_c01027{transform:matrix(0.279060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279060,0.000000,0.000000,0.250000,0,0);}
.m8b_c01027{transform:matrix(0.279390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279390,0.000000,0.000000,0.250000,0,0);}
.m8e_c01027{transform:matrix(0.279920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279920,0.000000,0.000000,0.250000,0,0);}
.m73_c01027{transform:matrix(0.280088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280088,0.000000,0.000000,0.250000,0,0);}
.m6f_c01027{transform:matrix(0.280900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280900,0.000000,0.000000,0.250000,0,0);}
.m87_c01027{transform:matrix(0.281068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281068,0.000000,0.000000,0.250000,0,0);}
.m8_c01027{transform:matrix(0.281173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281173,0.000000,0.000000,0.250000,0,0);}
.ma5_c01027{transform:matrix(0.281190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281190,0.000000,0.000000,0.250000,0,0);}
.m6c_c01027{transform:matrix(0.281857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281857,0.000000,0.000000,0.250000,0,0);}
.m86_c01027{transform:matrix(0.282148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282148,0.000000,0.000000,0.250000,0,0);}
.m9a_c01027{transform:matrix(0.282215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282215,0.000000,0.000000,0.250000,0,0);}
.m5b_c01027{transform:matrix(0.282254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282254,0.000000,0.000000,0.250000,0,0);}
.m5f_c01027{transform:matrix(0.284030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284030,0.000000,0.000000,0.250000,0,0);}
.m7e_c01027{transform:matrix(0.284643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284643,0.000000,0.000000,0.250000,0,0);}
.m8a_c01027{transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);}
.m49_c01027{transform:matrix(0.286135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286135,0.000000,0.000000,0.250000,0,0);}
.m6b_c01027{transform:matrix(0.286537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286537,0.000000,0.000000,0.250000,0,0);}
.m5_c01027{transform:matrix(0.286956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286956,0.000000,0.000000,0.250000,0,0);}
.m1f_c01027{transform:matrix(0.287590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287590,0.000000,0.000000,0.250000,0,0);}
.ma_c01027{transform:matrix(0.288210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288210,0.000000,0.000000,0.250000,0,0);}
.m7a_c01027{transform:matrix(0.288256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288256,0.000000,0.000000,0.250000,0,0);}
.m4e_c01027{transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);}
.m80_c01027{transform:matrix(0.289896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289896,0.000000,0.000000,0.250000,0,0);}
.m52_c01027{transform:matrix(0.289940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289940,0.000000,0.000000,0.250000,0,0);}
.m97_c01027{transform:matrix(0.290364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290364,0.000000,0.000000,0.250000,0,0);}
.m3e_c01027{transform:matrix(0.290459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290459,0.000000,0.000000,0.250000,0,0);}
.m45_c01027{transform:matrix(0.290583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290583,0.000000,0.000000,0.250000,0,0);}
.m26_c01027{transform:matrix(0.291032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291032,0.000000,0.000000,0.250000,0,0);}
.m1b_c01027{transform:matrix(0.291753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291753,0.000000,0.000000,0.250000,0,0);}
.m37_c01027{transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);}
.m43_c01027{transform:matrix(0.293244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293244,0.000000,0.000000,0.250000,0,0);}
.m99_c01027{transform:matrix(0.293692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293692,0.000000,0.000000,0.250000,0,0);}
.m1c_c01027{transform:matrix(0.294136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294136,0.000000,0.000000,0.250000,0,0);}
.m53_c01027{transform:matrix(0.294443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294443,0.000000,0.000000,0.250000,0,0);}
.m65_c01027{transform:matrix(0.294480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294480,0.000000,0.000000,0.250000,0,0);}
.m63_c01027{transform:matrix(0.294722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294722,0.000000,0.000000,0.250000,0,0);}
.m75_c01027{transform:matrix(0.295212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295212,0.000000,0.000000,0.250000,0,0);}
.m2e_c01027{transform:matrix(0.295562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295562,0.000000,0.000000,0.250000,0,0);}
.m29_c01027{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m42_c01027{transform:matrix(0.297473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297473,0.000000,0.000000,0.250000,0,0);}
.m48_c01027{transform:matrix(0.298376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298376,0.000000,0.000000,0.250000,0,0);}
.m25_c01027{transform:matrix(0.298530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298530,0.000000,0.000000,0.250000,0,0);}
.m4b_c01027{transform:matrix(0.298534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298534,0.000000,0.000000,0.250000,0,0);}
.ma1_c01027{transform:matrix(0.298610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298610,0.000000,0.000000,0.250000,0,0);}
.m12_c01027{transform:matrix(0.299517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299517,0.000000,0.000000,0.250000,0,0);}
.m78_c01027{transform:matrix(0.299529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299529,0.000000,0.000000,0.250000,0,0);}
.m33_c01027{transform:matrix(0.300108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300108,0.000000,0.000000,0.250000,0,0);}
.me_c01027{transform:matrix(0.301374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301374,0.000000,0.000000,0.250000,0,0);}
.m90_c01027{transform:matrix(0.301634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301634,0.000000,0.000000,0.250000,0,0);}
.m16_c01027{transform:matrix(0.301732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301732,0.000000,0.000000,0.250000,0,0);}
.m2_c01027{transform:matrix(0.301757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301757,0.000000,0.000000,0.250000,0,0);}
.m50_c01027{transform:matrix(0.302219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302219,0.000000,0.000000,0.250000,0,0);}
.m2b_c01027{transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);}
.m30_c01027{transform:matrix(0.303033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303033,0.000000,0.000000,0.250000,0,0);}
.m69_c01027{transform:matrix(0.303055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303055,0.000000,0.000000,0.250000,0,0);}
.m4_c01027{transform:matrix(0.304224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304224,0.000000,0.000000,0.250000,0,0);}
.m20_c01027{transform:matrix(0.304228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304228,0.000000,0.000000,0.250000,0,0);}
.m9d_c01027{transform:matrix(0.304634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304634,0.000000,0.000000,0.250000,0,0);}
.m5a_c01027{transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);}
.m7c_c01027{transform:matrix(0.305577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305577,0.000000,0.000000,0.250000,0,0);}
.m85_c01027{transform:matrix(0.305701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305701,0.000000,0.000000,0.250000,0,0);}
.m3c_c01027{transform:matrix(0.307412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307412,0.000000,0.000000,0.250000,0,0);}
.mb_c01027{transform:matrix(0.307644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307644,0.000000,0.000000,0.250000,0,0);}
.m24_c01027{transform:matrix(0.308174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308174,0.000000,0.000000,0.250000,0,0);}
.m2f_c01027{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m83_c01027{transform:matrix(0.309376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309376,0.000000,0.000000,0.250000,0,0);}
.m58_c01027{transform:matrix(0.310001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310001,0.000000,0.000000,0.250000,0,0);}
.m2a_c01027{transform:matrix(0.310026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310026,0.000000,0.000000,0.250000,0,0);}
.m34_c01027{transform:matrix(0.310582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310582,0.000000,0.000000,0.250000,0,0);}
.m1_c01027{transform:matrix(0.310732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310732,0.000000,0.000000,0.250000,0,0);}
.m67_c01027{transform:matrix(0.311761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311761,0.000000,0.000000,0.250000,0,0);}
.m32_c01027{transform:matrix(0.312511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312511,0.000000,0.000000,0.250000,0,0);}
.m5d_c01027{transform:matrix(0.313417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313417,0.000000,0.000000,0.250000,0,0);}
.m10_c01027{transform:matrix(0.313627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313627,0.000000,0.000000,0.250000,0,0);}
.m72_c01027{transform:matrix(0.314270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314270,0.000000,0.000000,0.250000,0,0);}
.m8d_c01027{transform:matrix(0.314298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314298,0.000000,0.000000,0.250000,0,0);}
.m59_c01027{transform:matrix(0.314588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314588,0.000000,0.000000,0.250000,0,0);}
.m95_c01027{transform:matrix(0.315609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315609,0.000000,0.000000,0.250000,0,0);}
.m68_c01027{transform:matrix(0.316697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316697,0.000000,0.000000,0.250000,0,0);}
.ma2_c01027{transform:matrix(0.317517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317517,0.000000,0.000000,0.250000,0,0);}
.m76_c01027{transform:matrix(0.319170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319170,0.000000,0.000000,0.250000,0,0);}
.m79_c01027{transform:matrix(0.319281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319281,0.000000,0.000000,0.250000,0,0);}
.m9_c01027{transform:matrix(0.319808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319808,0.000000,0.000000,0.250000,0,0);}
.m27_c01027{transform:matrix(0.320003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320003,0.000000,0.000000,0.250000,0,0);}
.m3f_c01027{transform:matrix(0.321802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321802,0.000000,0.000000,0.250000,0,0);}
.m18_c01027{transform:matrix(0.322508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322508,0.000000,0.000000,0.250000,0,0);}
.ma3_c01027{transform:matrix(0.323414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323414,0.000000,0.000000,0.250000,0,0);}
.m17_c01027{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m3a_c01027{transform:matrix(0.329313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329313,0.000000,0.000000,0.250000,0,0);}
.m21_c01027{transform:matrix(0.329405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329405,0.000000,0.000000,0.250000,0,0);}
.m6d_c01027{transform:matrix(0.330220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330220,0.000000,0.000000,0.250000,0,0);}
.m14_c01027{transform:matrix(0.330374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330374,0.000000,0.000000,0.250000,0,0);}
.m89_c01027{transform:matrix(0.330723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330723,0.000000,0.000000,0.250000,0,0);}
.m8f_c01027{transform:matrix(0.332348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332348,0.000000,0.000000,0.250000,0,0);}
.m47_c01027{transform:matrix(0.332725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332725,0.000000,0.000000,0.250000,0,0);}
.m62_c01027{transform:matrix(0.334205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334205,0.000000,0.000000,0.250000,0,0);}
.m6e_c01027{transform:matrix(0.334420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334420,0.000000,0.000000,0.250000,0,0);}
.m23_c01027{transform:matrix(0.337677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337677,0.000000,0.000000,0.250000,0,0);}
.m93_c01027{transform:matrix(0.338773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338773,0.000000,0.000000,0.250000,0,0);}
.m1d_c01027{transform:matrix(0.338886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338886,0.000000,0.000000,0.250000,0,0);}
.m9b_c01027{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m13_c01027{transform:matrix(0.340857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340857,0.000000,0.000000,0.250000,0,0);}
.m61_c01027{transform:matrix(0.346500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346500,0.000000,0.000000,0.250000,0,0);}
.m7f_c01027{transform:matrix(0.346598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346598,0.000000,0.000000,0.250000,0,0);}
.m4f_c01027{transform:matrix(0.347003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347003,0.000000,0.000000,0.250000,0,0);}
.m3b_c01027{transform:matrix(0.348765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348765,0.000000,0.000000,0.250000,0,0);}
.m40_c01027{transform:matrix(0.354324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354324,0.000000,0.000000,0.250000,0,0);}
.m56_c01027{transform:matrix(0.355345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355345,0.000000,0.000000,0.250000,0,0);}
.m2c_c01027{transform:matrix(0.361926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361926,0.000000,0.000000,0.250000,0,0);}
.m11_c01027{transform:matrix(0.365809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365809,0.000000,0.000000,0.250000,0,0);}
.m38_c01027{transform:matrix(0.366301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366301,0.000000,0.000000,0.250000,0,0);}
.m71_c01027{transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);}
.md_c01027{transform:matrix(0.385437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385437,0.000000,0.000000,0.250000,0,0);}
.m66_c01027{transform:matrix(0.390780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390780,0.000000,0.000000,0.250000,0,0);}
.v0_c01027{vertical-align:0.000000px;}
.v1_c01027{vertical-align:31.383000px;}
.lse_c01027{letter-spacing:-3.153150px;}
.ls7_c01027{letter-spacing:-2.744280px;}
.ls10_c01027{letter-spacing:-1.580040px;}
.ls9_c01027{letter-spacing:-0.948737px;}
.ls0_c01027{letter-spacing:0.000000px;}
.ls1_c01027{letter-spacing:1.270269px;}
.ls6_c01027{letter-spacing:1.301573px;}
.lsb_c01027{letter-spacing:1.497593px;}
.lsf_c01027{letter-spacing:1.910700px;}
.lsd_c01027{letter-spacing:1.960200px;}
.lsc_c01027{letter-spacing:2.189172px;}
.ls4_c01027{letter-spacing:2.673713px;}
.lsa_c01027{letter-spacing:3.065753px;}
.ls5_c01027{letter-spacing:3.643200px;}
.ls2_c01027{letter-spacing:3.920400px;}
.ls8_c01027{letter-spacing:4.158000px;}
.ls3_c01027{letter-spacing:4.346110px;}
.sc__c01027{text-shadow:none;}
.sc0_c01027{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01027{-webkit-text-stroke:0px transparent;}
.sc0_c01027{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01027{word-spacing:0.000000px;}
._2_c01027{margin-left:-8.939304px;}
._1_c01027{width:47.554056px;}
._0_c01027{width:1604.169072px;}
.fc0_c01027{color:transparent;}
.fs0_c01027{font-size:22.176000px;}
.fs2_c01027{font-size:27.720000px;}
.fs9_c01027{font-size:31.086000px;}
.fsc_c01027{font-size:38.214000px;}
.fs8_c01027{font-size:39.600000px;}
.fs6_c01027{font-size:45.144000px;}
.fsa_c01027{font-size:64.548000px;}
.fs5_c01027{font-size:72.864000px;}
.fsd_c01027{font-size:74.844000px;}
.fs3_c01027{font-size:78.408000px;}
.fse_c01027{font-size:78.804000px;}
.fs7_c01027{font-size:83.160000px;}
.fsb_c01027{font-size:83.556198px;}
.fs4_c01027{font-size:86.922198px;}
.fs1_c01027{font-size:90.090000px;}
.y0_c01027{bottom:0.000000px;}
.y22_c01027{bottom:51.584985px;}
.y1_c01027{bottom:76.500000px;}
.y21_c01027{bottom:95.065785px;}
.y20_c01027{bottom:156.010185px;}
.y1e_c01027{bottom:160.648335px;}
.y1f_c01027{bottom:161.004735px;}
.y1d_c01027{bottom:319.246335px;}
.y1c_c01027{bottom:351.322335px;}
.y1b_c01027{bottom:383.036985px;}
.y1a_c01027{bottom:414.756585px;}
.y19_c01027{bottom:446.481135px;}
.y18_c01027{bottom:471.424185px;}
.y16_c01027{bottom:477.839385px;}
.y17_c01027{bottom:478.200735px;}
.y15_c01027{bottom:509.915385px;}
.y14_c01027{bottom:541.278585px;}
.y13_c01027{bottom:573.003135px;}
.y12_c01027{bottom:604.717785px;}
.y11_c01027{bottom:617.909535px;}
.y10_c01027{bottom:627.527385px;}
.yf_c01027{bottom:636.437385px;}
.ye_c01027{bottom:690.966585px;}
.yd_c01027{bottom:700.232985px;}
.yc_c01027{bottom:731.596185px;}
.yb_c01027{bottom:763.677135px;}
.ya_c01027{bottom:786.125385px;}
.y9_c01027{bottom:794.683935px;}
.y8_c01027{bottom:826.047135px;}
.y7_c01027{bottom:857.053935px;}
.y6_c01027{bottom:889.129935px;}
.y5_c01027{bottom:920.493135px;}
.y4_c01027{bottom:959.340735px;}
.y2_c01027{bottom:984.288735px;}
.y3_c01027{bottom:1057.707135px;}
.h2_c01027{height:23.128875px;}
.h4_c01027{height:28.911094px;}
.hb_c01027{height:30.509209px;}
.hd_c01027{height:39.856008px;}
.ha_c01027{height:41.301563px;}
.hf_c01027{height:45.496688px;}
.h8_c01027{height:47.083781px;}
.h7_c01027{height:71.512031px;}
.he_c01027{height:73.455293px;}
.h5_c01027{height:76.953164px;}
.h10_c01027{height:77.341816px;}
.h9_c01027{height:81.616992px;}
.h6_c01027{height:85.309384px;}
.h3_c01027{height:88.418408px;}
.hc_c01027{height:113.388839px;}
.h1_c01027{height:1110.000000px;}
.h0_c01027{height:1263.000000px;}
.w1_c01027{width:763.500000px;}
.w0_c01027{width:892.500000px;}
.x0_c01027{left:0.000000px;}
.x2_c01027{left:45.758835px;}
.x1_c01027{left:64.500000px;}
.x5f_c01027{left:75.374685px;}
.x28_c01027{left:76.453785px;}
.x14_c01027{left:78.037785px;}
.x5_c01027{left:79.077285px;}
.x62_c01027{left:98.684235px;}
.x29_c01027{left:109.940535px;}
.x4f_c01027{left:121.365135px;}
.x3f_c01027{left:132.047235px;}
.x6_c01027{left:133.185735px;}
.x35_c01027{left:143.882685px;}
.x4a_c01027{left:153.787635px;}
.x39_c01027{left:155.020185px;}
.xf_c01027{left:166.420035px;}
.x57_c01027{left:176.023035px;}
.x1f_c01027{left:178.215885px;}
.x3a_c01027{left:186.259635px;}
.x50_c01027{left:188.155485px;}
.x20_c01027{left:199.218735px;}
.x15_c01027{left:210.079035px;}
.x46_c01027{left:212.994585px;}
.x5d_c01027{left:219.998835px;}
.x60_c01027{left:230.765085px;}
.x36_c01027{left:232.754985px;}
.x21_c01027{left:242.526285px;}
.x7_c01027{left:253.579635px;}
.x64_c01027{left:259.202835px;}
.x3b_c01027{left:265.677435px;}
.x40_c01027{left:266.850585px;}
.x2a_c01027{left:277.300035px;}
.x65_c01027{left:280.274985px;}
.x55_c01027{left:281.339235px;}
.x66_c01027{left:287.254485px;}
.x8_c01027{left:288.576135px;}
.x37_c01027{left:289.580985px;}
.x41_c01027{left:298.134585px;}
.x58_c01027{left:300.070035px;}
.x16_c01027{left:310.420485px;}
.x4b_c01027{left:320.567985px;}
.x2b_c01027{left:322.072785px;}
.x5e_c01027{left:331.314435px;}
.x10_c01027{left:332.477685px;}
.x17_c01027{left:343.946835px;}
.x47_c01027{left:353.737935px;}
.x2c_c01027{left:355.643685px;}
.x9_c01027{left:365.122935px;}
.x33_c01027{left:377.092035px;}
.x22_c01027{left:386.878185px;}
.x18_c01027{left:389.160135px;}
.x51_c01027{left:398.278035px;}
.x4c_c01027{left:399.510585px;}
.x3c_c01027{left:400.861935px;}
.x32_c01027{left:410.875785px;}
.x59_c01027{left:420.924285px;}
.x48_c01027{left:422.577585px;}
.x23_c01027{left:432.136035px;}
.x3d_c01027{left:433.378485px;}
.x4d_c01027{left:442.828035px;}
.x2d_c01027{left:444.322935px;}
.xa_c01027{left:456.886035px;}
.x5a_c01027{left:464.934735px;}
.x19_c01027{left:466.825635px;}
.x42_c01027{left:475.988085px;}
.x52_c01027{left:477.552285px;}
.x38_c01027{left:488.887785px;}
.x5b_c01027{left:497.713635px;}
.x1a_c01027{left:498.758085px;}
.x43_c01027{left:509.672835px;}
.xb_c01027{left:522.211185px;}
.x2e_c01027{left:531.215235px;}
.x11_c01027{left:532.482435px;}
.x45_c01027{left:542.065635px;}
.x53_c01027{left:545.248485px;}
.x44_c01027{left:553.673385px;}
.x24_c01027{left:555.222735px;}
.x12_c01027{left:566.281035px;}
.x1b_c01027{left:577.007685px;}
.x25_c01027{left:587.952135px;}
.xc_c01027{left:597.139335px;}
.x2f_c01027{left:598.406535px;}
.x1c_c01027{left:608.197635px;}
.x54_c01027{left:610.598385px;}
.xd_c01027{left:619.236135px;}
.x63_c01027{left:631.789335px;}
.x61_c01027{left:641.837835px;}
.x30_c01027{left:642.936735px;}
.x1d_c01027{left:653.297085px;}
.x26_c01027{left:663.444585px;}
.x34_c01027{left:664.934535px;}
.x3_c01027{left:675.329535px;}
.x56_c01027{left:676.339335px;}
.x1e_c01027{left:685.219635px;}
.x13_c01027{left:686.714535px;}
.x4e_c01027{left:689.026185px;}
.x4_c01027{left:694.025685px;}
.xe_c01027{left:697.119435px;}
.x27_c01027{left:698.510385px;}
.x3e_c01027{left:702.604035px;}
.x49_c01027{left:709.766685px;}
.x31_c01027{left:720.270585px;}
.x5c_c01027{left:722.676285px;}
.x67_c01027{left:728.655885px;}
@media print{
.v0_c01027{vertical-align:0.000000pt;}
.v1_c01027{vertical-align:27.896000pt;}
.lse_c01027{letter-spacing:-2.802800pt;}
.ls7_c01027{letter-spacing:-2.439360pt;}
.ls10_c01027{letter-spacing:-1.404480pt;}
.ls9_c01027{letter-spacing:-0.843322pt;}
.ls0_c01027{letter-spacing:0.000000pt;}
.ls1_c01027{letter-spacing:1.129128pt;}
.ls6_c01027{letter-spacing:1.156954pt;}
.lsb_c01027{letter-spacing:1.331194pt;}
.lsf_c01027{letter-spacing:1.698400pt;}
.lsd_c01027{letter-spacing:1.742400pt;}
.lsc_c01027{letter-spacing:1.945931pt;}
.ls4_c01027{letter-spacing:2.376634pt;}
.lsa_c01027{letter-spacing:2.725114pt;}
.ls5_c01027{letter-spacing:3.238400pt;}
.ls2_c01027{letter-spacing:3.484800pt;}
.ls8_c01027{letter-spacing:3.696000pt;}
.ls3_c01027{letter-spacing:3.863209pt;}
.ws0_c01027{word-spacing:0.000000pt;}
._2_c01027{margin-left:-7.946048pt;}
._1_c01027{width:42.270272pt;}
._0_c01027{width:1425.928064pt;}
.fs0_c01027{font-size:19.712000pt;}
.fs2_c01027{font-size:24.640000pt;}
.fs9_c01027{font-size:27.632000pt;}
.fsc_c01027{font-size:33.968000pt;}
.fs8_c01027{font-size:35.200000pt;}
.fs6_c01027{font-size:40.128000pt;}
.fsa_c01027{font-size:57.376000pt;}
.fs5_c01027{font-size:64.768000pt;}
.fsd_c01027{font-size:66.528000pt;}
.fs3_c01027{font-size:69.696000pt;}
.fse_c01027{font-size:70.048000pt;}
.fs7_c01027{font-size:73.920000pt;}
.fsb_c01027{font-size:74.272176pt;}
.fs4_c01027{font-size:77.264176pt;}
.fs1_c01027{font-size:80.080000pt;}
.y0_c01027{bottom:0.000000pt;}
.y22_c01027{bottom:45.853320pt;}
.y1_c01027{bottom:68.000000pt;}
.y21_c01027{bottom:84.502920pt;}
.y20_c01027{bottom:138.675720pt;}
.y1e_c01027{bottom:142.798520pt;}
.y1f_c01027{bottom:143.115320pt;}
.y1d_c01027{bottom:283.774520pt;}
.y1c_c01027{bottom:312.286520pt;}
.y1b_c01027{bottom:340.477320pt;}
.y1a_c01027{bottom:368.672520pt;}
.y19_c01027{bottom:396.872120pt;}
.y18_c01027{bottom:419.043720pt;}
.y16_c01027{bottom:424.746120pt;}
.y17_c01027{bottom:425.067320pt;}
.y15_c01027{bottom:453.258120pt;}
.y14_c01027{bottom:481.136520pt;}
.y13_c01027{bottom:509.336120pt;}
.y12_c01027{bottom:537.526920pt;}
.y11_c01027{bottom:549.252920pt;}
.y10_c01027{bottom:557.802120pt;}
.yf_c01027{bottom:565.722120pt;}
.ye_c01027{bottom:614.192520pt;}
.yd_c01027{bottom:622.429320pt;}
.yc_c01027{bottom:650.307720pt;}
.yb_c01027{bottom:678.824120pt;}
.ya_c01027{bottom:698.778120pt;}
.y9_c01027{bottom:706.385720pt;}
.y8_c01027{bottom:734.264120pt;}
.y7_c01027{bottom:761.825720pt;}
.y6_c01027{bottom:790.337720pt;}
.y5_c01027{bottom:818.216120pt;}
.y4_c01027{bottom:852.747320pt;}
.y2_c01027{bottom:874.923320pt;}
.y3_c01027{bottom:940.184120pt;}
.h2_c01027{height:20.559000pt;}
.h4_c01027{height:25.698750pt;}
.hb_c01027{height:27.119297pt;}
.hd_c01027{height:35.427563pt;}
.ha_c01027{height:36.712500pt;}
.hf_c01027{height:40.441500pt;}
.h8_c01027{height:41.852250pt;}
.h7_c01027{height:63.566250pt;}
.he_c01027{height:65.293594pt;}
.h5_c01027{height:68.402813pt;}
.h10_c01027{height:68.748281pt;}
.h9_c01027{height:72.548438pt;}
.h6_c01027{height:75.830563pt;}
.h3_c01027{height:78.594141pt;}
.hc_c01027{height:100.790079pt;}
.h1_c01027{height:986.666667pt;}
.h0_c01027{height:1122.666667pt;}
.w1_c01027{width:678.666667pt;}
.w0_c01027{width:793.333333pt;}
.x0_c01027{left:0.000000pt;}
.x2_c01027{left:40.674520pt;}
.x1_c01027{left:57.333333pt;}
.x5f_c01027{left:66.999720pt;}
.x28_c01027{left:67.958920pt;}
.x14_c01027{left:69.366920pt;}
.x5_c01027{left:70.290920pt;}
.x62_c01027{left:87.719320pt;}
.x29_c01027{left:97.724920pt;}
.x4f_c01027{left:107.880120pt;}
.x3f_c01027{left:117.375320pt;}
.x6_c01027{left:118.387320pt;}
.x35_c01027{left:127.895720pt;}
.x4a_c01027{left:136.700120pt;}
.x39_c01027{left:137.795720pt;}
.xf_c01027{left:147.928920pt;}
.x57_c01027{left:156.464920pt;}
.x1f_c01027{left:158.414120pt;}
.x3a_c01027{left:165.564120pt;}
.x50_c01027{left:167.249320pt;}
.x20_c01027{left:177.083320pt;}
.x15_c01027{left:186.736920pt;}
.x46_c01027{left:189.328520pt;}
.x5d_c01027{left:195.554520pt;}
.x60_c01027{left:205.124520pt;}
.x36_c01027{left:206.893320pt;}
.x21_c01027{left:215.578920pt;}
.x7_c01027{left:225.404120pt;}
.x64_c01027{left:230.402520pt;}
.x3b_c01027{left:236.157720pt;}
.x40_c01027{left:237.200520pt;}
.x2a_c01027{left:246.488920pt;}
.x65_c01027{left:249.133320pt;}
.x55_c01027{left:250.079320pt;}
.x66_c01027{left:255.337320pt;}
.x8_c01027{left:256.512120pt;}
.x37_c01027{left:257.405320pt;}
.x41_c01027{left:265.008520pt;}
.x58_c01027{left:266.728920pt;}
.x16_c01027{left:275.929320pt;}
.x4b_c01027{left:284.949320pt;}
.x2b_c01027{left:286.286920pt;}
.x5e_c01027{left:294.501720pt;}
.x10_c01027{left:295.535720pt;}
.x17_c01027{left:305.730520pt;}
.x47_c01027{left:314.433720pt;}
.x2c_c01027{left:316.127720pt;}
.x9_c01027{left:324.553720pt;}
.x33_c01027{left:335.192920pt;}
.x22_c01027{left:343.891720pt;}
.x18_c01027{left:345.920120pt;}
.x51_c01027{left:354.024920pt;}
.x4c_c01027{left:355.120520pt;}
.x3c_c01027{left:356.321720pt;}
.x32_c01027{left:365.222920pt;}
.x59_c01027{left:374.154920pt;}
.x48_c01027{left:375.624520pt;}
.x23_c01027{left:384.120920pt;}
.x3d_c01027{left:385.225320pt;}
.x4d_c01027{left:393.624920pt;}
.x2d_c01027{left:394.953720pt;}
.xa_c01027{left:406.120920pt;}
.x5a_c01027{left:413.275320pt;}
.x19_c01027{left:414.956120pt;}
.x42_c01027{left:423.100520pt;}
.x52_c01027{left:424.490920pt;}
.x38_c01027{left:434.566920pt;}
.x5b_c01027{left:442.412120pt;}
.x1a_c01027{left:443.340520pt;}
.x43_c01027{left:453.042520pt;}
.xb_c01027{left:464.187720pt;}
.x2e_c01027{left:472.191320pt;}
.x11_c01027{left:473.317720pt;}
.x45_c01027{left:481.836120pt;}
.x53_c01027{left:484.665320pt;}
.x44_c01027{left:492.154120pt;}
.x24_c01027{left:493.531320pt;}
.x12_c01027{left:503.360920pt;}
.x1b_c01027{left:512.895720pt;}
.x25_c01027{left:522.624120pt;}
.xc_c01027{left:530.790520pt;}
.x2f_c01027{left:531.916920pt;}
.x1c_c01027{left:540.620120pt;}
.x54_c01027{left:542.754120pt;}
.xd_c01027{left:550.432120pt;}
.x63_c01027{left:561.590520pt;}
.x61_c01027{left:570.522520pt;}
.x30_c01027{left:571.499320pt;}
.x1d_c01027{left:580.708520pt;}
.x26_c01027{left:589.728520pt;}
.x34_c01027{left:591.052920pt;}
.x3_c01027{left:600.292920pt;}
.x56_c01027{left:601.190520pt;}
.x1e_c01027{left:609.084120pt;}
.x13_c01027{left:610.412920pt;}
.x4e_c01027{left:612.467720pt;}
.x4_c01027{left:616.911720pt;}
.xe_c01027{left:619.661720pt;}
.x27_c01027{left:620.898120pt;}
.x3e_c01027{left:624.536920pt;}
.x49_c01027{left:630.903720pt;}
.x31_c01027{left:640.240520pt;}
.x5c_c01027{left:642.378920pt;}
.x67_c01027{left:647.694120pt;}
}





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

.ir_c01028:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01028{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01028;src:url('chunks/assets/font_7ba57be9683c0e78a3c93ac0.woff2')format("woff");}.ff1_c01028{font-family:ff1_c01028;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01028;src:url('chunks/assets/font_14308ef099ce2c4f31206b16.woff2')format("woff");}.ff2_c01028{font-family:ff2_c01028;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01028;src:url('chunks/assets/font_47d6d9b285297e68ff18c4bc.woff2')format("woff");}.ff3_c01028{font-family:ff3_c01028;line-height:0.666000;font-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_c01028{transform:matrix(0.083334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083334,0.000000,0.000000,0.250000,0,0);}
.m60_c01028{transform:matrix(0.119048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119048,0.000000,0.000000,0.250000,0,0);}
.m88_c01028{transform:matrix(0.137387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137387,0.000000,0.000000,0.250000,0,0);}
.m4c_c01028{transform:matrix(0.196249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196249,0.000000,0.000000,0.250000,0,0);}
.m98_c01028{transform:matrix(0.204059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204059,0.000000,0.000000,0.250000,0,0);}
.m89_c01028{transform:matrix(0.204073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204073,0.000000,0.000000,0.250000,0,0);}
.ma4_c01028{transform:matrix(0.225957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225957,0.000000,0.000000,0.250000,0,0);}
.m45_c01028{transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);}
.m42_c01028{transform:matrix(0.236538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236538,0.000000,0.000000,0.250000,0,0);}
.m6_c01028{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m10_c01028{transform:matrix(0.251407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251407,0.000000,0.000000,0.250000,0,0);}
.m30_c01028{transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);}
.ma6_c01028{transform:matrix(0.254313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254313,0.000000,0.000000,0.250000,0,0);}
.m9_c01028{transform:matrix(0.255374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255374,0.000000,0.000000,0.250000,0,0);}
.m79_c01028{transform:matrix(0.255554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255554,0.000000,0.000000,0.250000,0,0);}
.m6b_c01028{transform:matrix(0.256640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256640,0.000000,0.000000,0.250000,0,0);}
.m8_c01028{transform:matrix(0.257876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257876,0.000000,0.000000,0.250000,0,0);}
.m43_c01028{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.mb3_c01028{transform:matrix(0.259285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259285,0.000000,0.000000,0.250000,0,0);}
.m13_c01028{transform:matrix(0.259430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259430,0.000000,0.000000,0.250000,0,0);}
.m18_c01028{transform:matrix(0.260937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260937,0.000000,0.000000,0.250000,0,0);}
.mb_c01028{transform:matrix(0.261304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261304,0.000000,0.000000,0.250000,0,0);}
.m11_c01028{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.m9b_c01028{transform:matrix(0.261712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261712,0.000000,0.000000,0.250000,0,0);}
.mba_c01028{transform:matrix(0.261836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261836,0.000000,0.000000,0.250000,0,0);}
.m4f_c01028{transform:matrix(0.262241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262241,0.000000,0.000000,0.250000,0,0);}
.m9d_c01028{transform:matrix(0.262649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262649,0.000000,0.000000,0.250000,0,0);}
.m9e_c01028{transform:matrix(0.263102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263102,0.000000,0.000000,0.250000,0,0);}
.m5_c01028{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m33_c01028{transform:matrix(0.263766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263766,0.000000,0.000000,0.250000,0,0);}
.m1c_c01028{transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);}
.m4e_c01028{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.me_c01028{transform:matrix(0.264163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264163,0.000000,0.000000,0.250000,0,0);}
.m62_c01028{transform:matrix(0.265181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265181,0.000000,0.000000,0.250000,0,0);}
.m0_c01028{transform:matrix(0.265392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265392,0.000000,0.000000,0.250000,0,0);}
.m99_c01028{transform:matrix(0.265722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265722,0.000000,0.000000,0.250000,0,0);}
.m17_c01028{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m97_c01028{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m8a_c01028{transform:matrix(0.268095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268095,0.000000,0.000000,0.250000,0,0);}
.m3c_c01028{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.ma7_c01028{transform:matrix(0.269245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269245,0.000000,0.000000,0.250000,0,0);}
.m22_c01028{transform:matrix(0.269830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269830,0.000000,0.000000,0.250000,0,0);}
.m2_c01028{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m70_c01028{transform:matrix(0.272136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272136,0.000000,0.000000,0.250000,0,0);}
.ma1_c01028{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m2b_c01028{transform:matrix(0.273418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273418,0.000000,0.000000,0.250000,0,0);}
.m9c_c01028{transform:matrix(0.273802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273802,0.000000,0.000000,0.250000,0,0);}
.m3_c01028{transform:matrix(0.274517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274517,0.000000,0.000000,0.250000,0,0);}
.m83_c01028{transform:matrix(0.275667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275667,0.000000,0.000000,0.250000,0,0);}
.m49_c01028{transform:matrix(0.276376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276376,0.000000,0.000000,0.250000,0,0);}
.m26_c01028{transform:matrix(0.276488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276488,0.000000,0.000000,0.250000,0,0);}
.m61_c01028{transform:matrix(0.276734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276734,0.000000,0.000000,0.250000,0,0);}
.mb7_c01028{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m1f_c01028{transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);}
.m77_c01028{transform:matrix(0.279208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279208,0.000000,0.000000,0.250000,0,0);}
.m44_c01028{transform:matrix(0.279390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279390,0.000000,0.000000,0.250000,0,0);}
.m66_c01028{transform:matrix(0.279721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279721,0.000000,0.000000,0.250000,0,0);}
.m73_c01028{transform:matrix(0.280503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280503,0.000000,0.000000,0.250000,0,0);}
.m47_c01028{transform:matrix(0.280910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280910,0.000000,0.000000,0.250000,0,0);}
.m84_c01028{transform:matrix(0.281043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281043,0.000000,0.000000,0.250000,0,0);}
.m6c_c01028{transform:matrix(0.281190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281190,0.000000,0.000000,0.250000,0,0);}
.m31_c01028{transform:matrix(0.281415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281415,0.000000,0.000000,0.250000,0,0);}
.mb6_c01028{transform:matrix(0.281642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281642,0.000000,0.000000,0.250000,0,0);}
.m9f_c01028{transform:matrix(0.282727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282727,0.000000,0.000000,0.250000,0,0);}
.mb5_c01028{transform:matrix(0.282795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282795,0.000000,0.000000,0.250000,0,0);}
.m8e_c01028{transform:matrix(0.282820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282820,0.000000,0.000000,0.250000,0,0);}
.m2a_c01028{transform:matrix(0.282913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282913,0.000000,0.000000,0.250000,0,0);}
.m20_c01028{transform:matrix(0.283530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283530,0.000000,0.000000,0.250000,0,0);}
.m38_c01028{transform:matrix(0.284112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284112,0.000000,0.000000,0.250000,0,0);}
.m59_c01028{transform:matrix(0.284207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284207,0.000000,0.000000,0.250000,0,0);}
.m81_c01028{transform:matrix(0.284799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284799,0.000000,0.000000,0.250000,0,0);}
.m46_c01028{transform:matrix(0.284924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284924,0.000000,0.000000,0.250000,0,0);}
.m5a_c01028{transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);}
.m68_c01028{transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);}
.mb9_c01028{transform:matrix(0.286030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286030,0.000000,0.000000,0.250000,0,0);}
.m55_c01028{transform:matrix(0.286441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286441,0.000000,0.000000,0.250000,0,0);}
.mc_c01028{transform:matrix(0.287284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287284,0.000000,0.000000,0.250000,0,0);}
.m85_c01028{transform:matrix(0.288412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288412,0.000000,0.000000,0.250000,0,0);}
.m5e_c01028{transform:matrix(0.288532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288532,0.000000,0.000000,0.250000,0,0);}
.m4a_c01028{transform:matrix(0.288806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288806,0.000000,0.000000,0.250000,0,0);}
.m50_c01028{transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);}
.mb2_c01028{transform:matrix(0.291075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291075,0.000000,0.000000,0.250000,0,0);}
.m8f_c01028{transform:matrix(0.291422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291422,0.000000,0.000000,0.250000,0,0);}
.m3b_c01028{transform:matrix(0.291694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291694,0.000000,0.000000,0.250000,0,0);}
.m1a_c01028{transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);}
.m35_c01028{transform:matrix(0.291802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291802,0.000000,0.000000,0.250000,0,0);}
.m5b_c01028{transform:matrix(0.292477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292477,0.000000,0.000000,0.250000,0,0);}
.ma9_c01028{transform:matrix(0.292566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292566,0.000000,0.000000,0.250000,0,0);}
.m53_c01028{transform:matrix(0.292731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292731,0.000000,0.000000,0.250000,0,0);}
.m41_c01028{transform:matrix(0.293126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293126,0.000000,0.000000,0.250000,0,0);}
.mab_c01028{transform:matrix(0.293386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293386,0.000000,0.000000,0.250000,0,0);}
.m80_c01028{transform:matrix(0.293496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293496,0.000000,0.000000,0.250000,0,0);}
.m3e_c01028{transform:matrix(0.293527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293527,0.000000,0.000000,0.250000,0,0);}
.m8c_c01028{transform:matrix(0.293647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293647,0.000000,0.000000,0.250000,0,0);}
.m6a_c01028{transform:matrix(0.294095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294095,0.000000,0.000000,0.250000,0,0);}
.m51_c01028{transform:matrix(0.294457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294457,0.000000,0.000000,0.250000,0,0);}
.m57_c01028{transform:matrix(0.294595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294595,0.000000,0.000000,0.250000,0,0);}
.ma8_c01028{transform:matrix(0.295701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295701,0.000000,0.000000,0.250000,0,0);}
.maf_c01028{transform:matrix(0.295862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295862,0.000000,0.000000,0.250000,0,0);}
.m21_c01028{transform:matrix(0.297319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297319,0.000000,0.000000,0.250000,0,0);}
.m4_c01028{transform:matrix(0.297892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297892,0.000000,0.000000,0.250000,0,0);}
.m69_c01028{transform:matrix(0.297960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297960,0.000000,0.000000,0.250000,0,0);}
.m4b_c01028{transform:matrix(0.298080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298080,0.000000,0.000000,0.250000,0,0);}
.m36_c01028{transform:matrix(0.298121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298121,0.000000,0.000000,0.250000,0,0);}
.m7_c01028{transform:matrix(0.298367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298367,0.000000,0.000000,0.250000,0,0);}
.m7b_c01028{transform:matrix(0.298685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298685,0.000000,0.000000,0.250000,0,0);}
.maa_c01028{transform:matrix(0.299158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299158,0.000000,0.000000,0.250000,0,0);}
.m6f_c01028{transform:matrix(0.299839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299839,0.000000,0.000000,0.250000,0,0);}
.m3a_c01028{transform:matrix(0.301049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301049,0.000000,0.000000,0.250000,0,0);}
.m94_c01028{transform:matrix(0.301239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301239,0.000000,0.000000,0.250000,0,0);}
.m8b_c01028{transform:matrix(0.301249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301249,0.000000,0.000000,0.250000,0,0);}
.mac_c01028{transform:matrix(0.301563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301563,0.000000,0.000000,0.250000,0,0);}
.m39_c01028{transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);}
.m54_c01028{transform:matrix(0.302215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302215,0.000000,0.000000,0.250000,0,0);}
.m4d_c01028{transform:matrix(0.302936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302936,0.000000,0.000000,0.250000,0,0);}
.mad_c01028{transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);}
.m56_c01028{transform:matrix(0.303969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303969,0.000000,0.000000,0.250000,0,0);}
.m28_c01028{transform:matrix(0.304186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304186,0.000000,0.000000,0.250000,0,0);}
.m78_c01028{transform:matrix(0.304835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304835,0.000000,0.000000,0.250000,0,0);}
.mb4_c01028{transform:matrix(0.305018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305018,0.000000,0.000000,0.250000,0,0);}
.m87_c01028{transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);}
.m6d_c01028{transform:matrix(0.305211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305211,0.000000,0.000000,0.250000,0,0);}
.m5f_c01028{transform:matrix(0.305336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305336,0.000000,0.000000,0.250000,0,0);}
.mb1_c01028{transform:matrix(0.305355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305355,0.000000,0.000000,0.250000,0,0);}
.mf_c01028{transform:matrix(0.305379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305379,0.000000,0.000000,0.250000,0,0);}
.m23_c01028{transform:matrix(0.305639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305639,0.000000,0.000000,0.250000,0,0);}
.m7a_c01028{transform:matrix(0.305755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305755,0.000000,0.000000,0.250000,0,0);}
.ma3_c01028{transform:matrix(0.307215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307215,0.000000,0.000000,0.250000,0,0);}
.mae_c01028{transform:matrix(0.307369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307369,0.000000,0.000000,0.250000,0,0);}
.m91_c01028{transform:matrix(0.307953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307953,0.000000,0.000000,0.250000,0,0);}
.m67_c01028{transform:matrix(0.308225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308225,0.000000,0.000000,0.250000,0,0);}
.m72_c01028{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m9a_c01028{transform:matrix(0.308898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308898,0.000000,0.000000,0.250000,0,0);}
.m48_c01028{transform:matrix(0.309148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309148,0.000000,0.000000,0.250000,0,0);}
.m19_c01028{transform:matrix(0.310673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310673,0.000000,0.000000,0.250000,0,0);}
.m5c_c01028{transform:matrix(0.311211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311211,0.000000,0.000000,0.250000,0,0);}
.m82_c01028{transform:matrix(0.311396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311396,0.000000,0.000000,0.250000,0,0);}
.m76_c01028{transform:matrix(0.311785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311785,0.000000,0.000000,0.250000,0,0);}
.m14_c01028{transform:matrix(0.312035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312035,0.000000,0.000000,0.250000,0,0);}
.m2f_c01028{transform:matrix(0.312336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312336,0.000000,0.000000,0.250000,0,0);}
.m71_c01028{transform:matrix(0.312744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312744,0.000000,0.000000,0.250000,0,0);}
.ma2_c01028{transform:matrix(0.312751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312751,0.000000,0.000000,0.250000,0,0);}
.m58_c01028{transform:matrix(0.312928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312928,0.000000,0.000000,0.250000,0,0);}
.m86_c01028{transform:matrix(0.313480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313480,0.000000,0.000000,0.250000,0,0);}
.m74_c01028{transform:matrix(0.313579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313579,0.000000,0.000000,0.250000,0,0);}
.m7d_c01028{transform:matrix(0.313839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313839,0.000000,0.000000,0.250000,0,0);}
.mb8_c01028{transform:matrix(0.314815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314815,0.000000,0.000000,0.250000,0,0);}
.m12_c01028{transform:matrix(0.314984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314984,0.000000,0.000000,0.250000,0,0);}
.m40_c01028{transform:matrix(0.318220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318220,0.000000,0.000000,0.250000,0,0);}
.m32_c01028{transform:matrix(0.318794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318794,0.000000,0.000000,0.250000,0,0);}
.ma5_c01028{transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318838,0.000000,0.000000,0.250000,0,0);}
.m52_c01028{transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);}
.m96_c01028{transform:matrix(0.321636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321636,0.000000,0.000000,0.250000,0,0);}
.m27_c01028{transform:matrix(0.322236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322236,0.000000,0.000000,0.250000,0,0);}
.m6e_c01028{transform:matrix(0.323028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323028,0.000000,0.000000,0.250000,0,0);}
.m7f_c01028{transform:matrix(0.324280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324280,0.000000,0.000000,0.250000,0,0);}
.m63_c01028{transform:matrix(0.325190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325190,0.000000,0.000000,0.250000,0,0);}
.m75_c01028{transform:matrix(0.325711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325711,0.000000,0.000000,0.250000,0,0);}
.m1e_c01028{transform:matrix(0.326967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326967,0.000000,0.000000,0.250000,0,0);}
.m37_c01028{transform:matrix(0.327076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327076,0.000000,0.000000,0.250000,0,0);}
.m5d_c01028{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m7c_c01028{transform:matrix(0.327407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327407,0.000000,0.000000,0.250000,0,0);}
.m16_c01028{transform:matrix(0.329047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329047,0.000000,0.000000,0.250000,0,0);}
.ma_c01028{transform:matrix(0.329103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329103,0.000000,0.000000,0.250000,0,0);}
.m1b_c01028{transform:matrix(0.330643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330643,0.000000,0.000000,0.250000,0,0);}
.m3d_c01028{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m8d_c01028{transform:matrix(0.333511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333511,0.000000,0.000000,0.250000,0,0);}
.m1_c01028{transform:matrix(0.334929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334929,0.000000,0.000000,0.250000,0,0);}
.m2e_c01028{transform:matrix(0.335078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335078,0.000000,0.000000,0.250000,0,0);}
.mb0_c01028{transform:matrix(0.335721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335721,0.000000,0.000000,0.250000,0,0);}
.m2c_c01028{transform:matrix(0.338886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338886,0.000000,0.000000,0.250000,0,0);}
.m34_c01028{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.md_c01028{transform:matrix(0.342694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342694,0.000000,0.000000,0.250000,0,0);}
.m15_c01028{transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);}
.m92_c01028{transform:matrix(0.345581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345581,0.000000,0.000000,0.250000,0,0);}
.m7e_c01028{transform:matrix(0.345799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345799,0.000000,0.000000,0.250000,0,0);}
.m2d_c01028{transform:matrix(0.346574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346574,0.000000,0.000000,0.250000,0,0);}
.m25_c01028{transform:matrix(0.347004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347004,0.000000,0.000000,0.250000,0,0);}
.m3f_c01028{transform:matrix(0.355345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355345,0.000000,0.000000,0.250000,0,0);}
.m95_c01028{transform:matrix(0.357612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357612,0.000000,0.000000,0.250000,0,0);}
.m29_c01028{transform:matrix(0.362885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362885,0.000000,0.000000,0.250000,0,0);}
.m90_c01028{transform:matrix(0.363431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363431,0.000000,0.000000,0.250000,0,0);}
.m65_c01028{transform:matrix(0.376198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376198,0.000000,0.000000,0.250000,0,0);}
.ma0_c01028{transform:matrix(0.377871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377871,0.000000,0.000000,0.250000,0,0);}
.m24_c01028{transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);}
.m1d_c01028{transform:matrix(0.385437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385437,0.000000,0.000000,0.250000,0,0);}
.m64_c01028{transform:matrix(0.425872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425872,0.000000,0.000000,0.250000,0,0);}
.v0_c01028{vertical-align:0.000000px;}
.v1_c01028{vertical-align:8.553600px;}
.ls1c_c01028{letter-spacing:-3.118500px;}
.ls11_c01028{letter-spacing:-2.744280px;}
.ls15_c01028{letter-spacing:-1.772021px;}
.lse_c01028{letter-spacing:-1.685772px;}
.ls18_c01028{letter-spacing:-1.325095px;}
.ls12_c01028{letter-spacing:-0.972259px;}
.ls10_c01028{letter-spacing:-0.948737px;}
.ls1b_c01028{letter-spacing:-0.870329px;}
.lsb_c01028{letter-spacing:-0.258746px;}
.ls6_c01028{letter-spacing:0.000000px;}
.ls0_c01028{letter-spacing:1.199642px;}
.ls9_c01028{letter-spacing:1.215324px;}
.lsc_c01028{letter-spacing:1.497593px;}
.ls2_c01028{letter-spacing:1.944518px;}
.ls1_c01028{letter-spacing:2.132698px;}
.ls8_c01028{letter-spacing:2.797740px;}
.ls5_c01028{letter-spacing:3.366000px;}
.lsa_c01028{letter-spacing:3.387226px;}
.ls1d_c01028{letter-spacing:3.484810px;}
.ls14_c01028{letter-spacing:3.559723px;}
.ls17_c01028{letter-spacing:3.603610px;}
.lsd_c01028{letter-spacing:3.623400px;}
.lsf_c01028{letter-spacing:3.742200px;}
.ls4_c01028{letter-spacing:3.920400px;}
.ls3_c01028{letter-spacing:4.078810px;}
.ls7_c01028{letter-spacing:4.455000px;}
.ls16_c01028{letter-spacing:29.937798px;}
.ls19_c01028{letter-spacing:52.747398px;}
.ls1a_c01028{letter-spacing:55.598598px;}
.ls13_c01028{letter-spacing:57.024198px;}
.sc__c01028{text-shadow:none;}
.sc0_c01028{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01028{-webkit-text-stroke:0px transparent;}
.sc0_c01028{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01028{word-spacing:-20.817324px;}
.ws2_c01028{word-spacing:-18.731671px;}
.ws1_c01028{word-spacing:-18.276905px;}
.ws3_c01028{word-spacing:0.000000px;}
._4_c01028{width:4.196966px;}
._3_c01028{width:6.586272px;}
._5_c01028{width:8.807119px;}
._6_c01028{width:12.489998px;}
._2_c01028{width:23.159347px;}
._0_c01028{width:26.934970px;}
._1_c01028{width:33.262258px;}
.fc0_c01028{color:transparent;}
.fs9_c01028{font-size:29.937798px;}
.fs6_c01028{font-size:45.144000px;}
.fsc_c01028{font-size:45.738000px;}
.fs10_c01028{font-size:51.876198px;}
.fse_c01028{font-size:52.747398px;}
.fsf_c01028{font-size:55.598598px;}
.fs7_c01028{font-size:57.024198px;}
.fsd_c01028{font-size:59.400000px;}
.fsa_c01028{font-size:66.330000px;}
.fs2_c01028{font-size:67.320000px;}
.fs11_c01028{font-size:69.696198px;}
.fsb_c01028{font-size:72.072198px;}
.fs5_c01028{font-size:72.468000px;}
.fs8_c01028{font-size:72.864000px;}
.fs3_c01028{font-size:74.844000px;}
.fs1_c01028{font-size:78.408000px;}
.fs0_c01028{font-size:81.576198px;}
.fs4_c01028{font-size:89.100000px;}
.y0_c01028{bottom:0.000000px;}
.y1_c01028{bottom:76.500000px;}
.y22_c01028{bottom:132.136320px;}
.y21_c01028{bottom:163.138170px;}
.y20_c01028{bottom:195.575520px;}
.y1f_c01028{bottom:223.374720px;}
.y1e_c01028{bottom:226.933770px;}
.y1d_c01028{bottom:258.658320px;}
.y1c_c01028{bottom:290.377920px;}
.y1b_c01028{bottom:322.092570px;}
.y1a_c01028{bottom:354.168570px;}
.y19_c01028{bottom:385.888170px;}
.y18_c01028{bottom:415.117920px;}
.y17_c01028{bottom:418.325520px;}
.y16_c01028{bottom:450.401520px;}
.y15_c01028{bottom:482.833920px;}
.y14_c01028{bottom:545.555370px;}
.y13_c01028{bottom:576.918570px;}
.y10_c01028{bottom:608.281770px;}
.y12_c01028{bottom:623.968320px;}
.yf_c01028{bottom:639.644970px;}
.y11_c01028{bottom:647.134320px;}
.ye_c01028{bottom:671.720970px;}
.yd_c01028{bottom:703.801920px;}
.yc_c01028{bottom:735.872970px;}
.yb_c01028{bottom:735.881385px;}
.ya_c01028{bottom:767.597520px;}
.y9_c01028{bottom:785.056170px;}
.y8_c01028{bottom:799.312170px;}
.y7_c01028{bottom:831.031770px;}
.y6_c01028{bottom:862.038570px;}
.y5_c01028{bottom:894.119520px;}
.y3_c01028{bottom:925.482720px;}
.y4_c01028{bottom:926.190570px;}
.y2_c01028{bottom:1051.999770px;}
.hb_c01028{height:19.938573px;}
.hf_c01028{height:35.129767px;}
.h10_c01028{height:37.028666px;}
.h9_c01028{height:37.978116px;}
.he_c01028{height:44.889346px;}
.h7_c01028{height:47.083781px;}
.h11_c01028{height:54.105253px;}
.h12_c01028{height:68.403007px;}
.hc_c01028{height:69.180117px;}
.h4_c01028{height:70.212656px;}
.hd_c01028{height:70.734921px;}
.h6_c01028{height:71.123379px;}
.ha_c01028{height:71.512031px;}
.h8_c01028{height:73.455293px;}
.h3_c01028{height:76.953164px;}
.h2_c01028{height:80.062577px;}
.h5_c01028{height:87.446777px;}
.h1_c01028{height:1110.000000px;}
.h0_c01028{height:1263.000000px;}
.w1_c01028{width:763.500000px;}
.w0_c01028{width:892.500000px;}
.x0_c01028{left:0.000000px;}
.x1_c01028{left:64.500000px;}
.x51_c01028{left:77.557635px;}
.x3_c01028{left:78.671385px;}
.xb_c01028{left:80.492985px;}
.x44_c01028{left:102.109635px;}
.x4e_c01028{left:110.534535px;}
.x1b_c01028{left:111.905685px;}
.x2c_c01028{left:122.063085px;}
.x61_c01028{left:123.340185px;}
.x33_c01028{left:133.992585px;}
.x45_c01028{left:135.987435px;}
.x13_c01028{left:145.719135px;}
.xc_c01028{left:156.099285px;}
.x46_c01028{left:157.836735px;}
.x3d_c01028{left:165.588435px;}
.x24_c01028{left:166.756635px;}
.x5d_c01028{left:167.860485px;}
.x4f_c01028{left:177.968385px;}
.x4_c01028{left:189.595935px;}
.x2d_c01028{left:199.931535px;}
.x1c_c01028{left:201.015585px;}
.x34_c01028{left:211.341285px;}
.x52_c01028{left:212.672835px;}
.x5_c01028{left:220.998735px;}
.xd_c01028{left:222.741135px;}
.x1d_c01028{left:233.042085px;}
.x66_c01028{left:234.175635px;}
.x14_c01028{left:243.471735px;}
.x2e_c01028{left:244.823085px;}
.x62_c01028{left:247.926735px;}
.x50_c01028{left:254.970585px;}
.x1e_c01028{left:256.901085px;}
.x56_c01028{left:266.424885px;}
.x63_c01028{left:267.677235px;}
.x67_c01028{left:268.701885px;}
.x37_c01028{left:277.092135px;}
.x1f_c01028{left:278.309835px;}
.x47_c01028{left:289.486935px;}
.x64_c01028{left:301.144185px;}
.xe_c01028{left:311.742135px;}
.x25_c01028{left:322.285635px;}
.x65_c01028{left:325.720935px;}
.x53_c01028{left:334.977435px;}
.x59_c01028{left:344.105235px;}
.x35_c01028{left:345.342735px;}
.x68_c01028{left:346.436685px;}
.xf_c01028{left:355.673385px;}
.x5f_c01028{left:357.103935px;}
.x38_c01028{left:358.371135px;}
.x3e_c01028{left:366.959385px;}
.x41_c01028{left:368.157285px;}
.x6_c01028{left:377.903835px;}
.x15_c01028{left:389.293785px;}
.x69_c01028{left:390.585735px;}
.x10_c01028{left:399.342285px;}
.x42_c01028{left:400.708485px;}
.x26_c01028{left:410.539185px;}
.x2f_c01028{left:412.024185px;}
.x20_c01028{left:424.022985px;}
.x3f_c01028{left:434.111085px;}
.x7_c01028{left:444.808035px;}
.x30_c01028{left:446.486085px;}
.x21_c01028{left:455.292135px;}
.x48_c01028{left:456.861285px;}
.x43_c01028{left:467.587935px;}
.x8_c01028{left:476.913735px;}
.x16_c01028{left:478.571985px;}
.x39_c01028{left:488.437335px;}
.x27_c01028{left:489.996585px;}
.x11_c01028{left:500.713335px;}
.x17_c01028{left:511.727085px;}
.x28_c01028{left:522.730935px;}
.x49_c01028{left:523.849635px;}
.x3a_c01028{left:532.284435px;}
.x57_c01028{left:534.234735px;}
.x22_c01028{left:544.575285px;}
.x40_c01028{left:555.791985px;}
.x9_c01028{left:565.266285px;}
.x3b_c01028{left:566.860185px;}
.x31_c01028{left:569.082735px;}
.x58_c01028{left:577.547235px;}
.x54_c01028{left:579.146085px;}
.x29_c01028{left:587.521485px;}
.x32_c01028{left:589.125285px;}
.x5c_c01028{left:590.422185px;}
.x18_c01028{left:600.173685px;}
.x36_c01028{left:610.880535px;}
.x4b_c01028{left:622.616985px;}
.x19_c01028{left:632.982285px;}
.x55_c01028{left:633.992085px;}
.xa_c01028{left:643.783185px;}
.x5a_c01028{left:644.981085px;}
.x23_c01028{left:654.737535px;}
.x3c_c01028{left:664.904835px;}
.x2a_c01028{left:666.815535px;}
.x2_c01028{left:676.765035px;}
.x1a_c01028{left:688.362885px;}
.x2b_c01028{left:699.247935px;}
.x4a_c01028{left:700.609185px;}
.x4d_c01028{left:701.980335px;}
.x60_c01028{left:710.806185px;}
.x6a_c01028{left:712.013985px;}
.x5e_c01028{left:720.721035px;}
.x4c_c01028{left:722.077335px;}
.x5b_c01028{left:723.131685px;}
.x12_c01028{left:733.467285px;}
@media print{
.v0_c01028{vertical-align:0.000000pt;}
.v1_c01028{vertical-align:7.603200pt;}
.ls1c_c01028{letter-spacing:-2.772000pt;}
.ls11_c01028{letter-spacing:-2.439360pt;}
.ls15_c01028{letter-spacing:-1.575130pt;}
.lse_c01028{letter-spacing:-1.498464pt;}
.ls18_c01028{letter-spacing:-1.177862pt;}
.ls12_c01028{letter-spacing:-0.864230pt;}
.ls10_c01028{letter-spacing:-0.843322pt;}
.ls1b_c01028{letter-spacing:-0.773626pt;}
.lsb_c01028{letter-spacing:-0.229997pt;}
.ls6_c01028{letter-spacing:0.000000pt;}
.ls0_c01028{letter-spacing:1.066349pt;}
.ls9_c01028{letter-spacing:1.080288pt;}
.lsc_c01028{letter-spacing:1.331194pt;}
.ls2_c01028{letter-spacing:1.728461pt;}
.ls1_c01028{letter-spacing:1.895731pt;}
.ls8_c01028{letter-spacing:2.486880pt;}
.ls5_c01028{letter-spacing:2.992000pt;}
.lsa_c01028{letter-spacing:3.010867pt;}
.ls1d_c01028{letter-spacing:3.097609pt;}
.ls14_c01028{letter-spacing:3.164198pt;}
.ls17_c01028{letter-spacing:3.203209pt;}
.lsd_c01028{letter-spacing:3.220800pt;}
.lsf_c01028{letter-spacing:3.326400pt;}
.ls4_c01028{letter-spacing:3.484800pt;}
.ls3_c01028{letter-spacing:3.625609pt;}
.ls7_c01028{letter-spacing:3.960000pt;}
.ls16_c01028{letter-spacing:26.611376pt;}
.ls19_c01028{letter-spacing:46.886576pt;}
.ls1a_c01028{letter-spacing:49.420976pt;}
.ls13_c01028{letter-spacing:50.688176pt;}
.ws0_c01028{word-spacing:-18.504288pt;}
.ws2_c01028{word-spacing:-16.650374pt;}
.ws1_c01028{word-spacing:-16.246138pt;}
.ws3_c01028{word-spacing:0.000000pt;}
._4_c01028{width:3.730637pt;}
._3_c01028{width:5.854464pt;}
._5_c01028{width:7.828550pt;}
._6_c01028{width:11.102221pt;}
._2_c01028{width:20.586086pt;}
._0_c01028{width:23.942195pt;}
._1_c01028{width:29.566451pt;}
.fs9_c01028{font-size:26.611376pt;}
.fs6_c01028{font-size:40.128000pt;}
.fsc_c01028{font-size:40.656000pt;}
.fs10_c01028{font-size:46.112176pt;}
.fse_c01028{font-size:46.886576pt;}
.fsf_c01028{font-size:49.420976pt;}
.fs7_c01028{font-size:50.688176pt;}
.fsd_c01028{font-size:52.800000pt;}
.fsa_c01028{font-size:58.960000pt;}
.fs2_c01028{font-size:59.840000pt;}
.fs11_c01028{font-size:61.952176pt;}
.fsb_c01028{font-size:64.064176pt;}
.fs5_c01028{font-size:64.416000pt;}
.fs8_c01028{font-size:64.768000pt;}
.fs3_c01028{font-size:66.528000pt;}
.fs1_c01028{font-size:69.696000pt;}
.fs0_c01028{font-size:72.512176pt;}
.fs4_c01028{font-size:79.200000pt;}
.y0_c01028{bottom:0.000000pt;}
.y1_c01028{bottom:68.000000pt;}
.y22_c01028{bottom:117.454507pt;}
.y21_c01028{bottom:145.011707pt;}
.y20_c01028{bottom:173.844907pt;}
.y1f_c01028{bottom:198.555307pt;}
.y1e_c01028{bottom:201.718907pt;}
.y1d_c01028{bottom:229.918507pt;}
.y1c_c01028{bottom:258.113707pt;}
.y1b_c01028{bottom:286.304507pt;}
.y1a_c01028{bottom:314.816507pt;}
.y19_c01028{bottom:343.011707pt;}
.y18_c01028{bottom:368.993707pt;}
.y17_c01028{bottom:371.844907pt;}
.y16_c01028{bottom:400.356907pt;}
.y15_c01028{bottom:429.185707pt;}
.y14_c01028{bottom:484.938107pt;}
.y13_c01028{bottom:512.816507pt;}
.y10_c01028{bottom:540.694907pt;}
.y12_c01028{bottom:554.638507pt;}
.yf_c01028{bottom:568.573307pt;}
.y11_c01028{bottom:575.230507pt;}
.ye_c01028{bottom:597.085307pt;}
.yd_c01028{bottom:625.601707pt;}
.yc_c01028{bottom:654.109307pt;}
.yb_c01028{bottom:654.116787pt;}
.ya_c01028{bottom:682.308907pt;}
.y9_c01028{bottom:697.827707pt;}
.y8_c01028{bottom:710.499707pt;}
.y7_c01028{bottom:738.694907pt;}
.y6_c01028{bottom:766.256507pt;}
.y5_c01028{bottom:794.772907pt;}
.y3_c01028{bottom:822.651307pt;}
.y4_c01028{bottom:823.280507pt;}
.y2_c01028{bottom:935.110907pt;}
.hb_c01028{height:17.723176pt;}
.hf_c01028{height:31.226460pt;}
.h10_c01028{height:32.914370pt;}
.h9_c01028{height:33.758325pt;}
.he_c01028{height:39.901641pt;}
.h7_c01028{height:41.852250pt;}
.h11_c01028{height:48.093559pt;}
.h12_c01028{height:60.802673pt;}
.hc_c01028{height:61.493438pt;}
.h4_c01028{height:62.411250pt;}
.hd_c01028{height:62.875485pt;}
.h6_c01028{height:63.220781pt;}
.ha_c01028{height:63.566250pt;}
.h8_c01028{height:65.293594pt;}
.h3_c01028{height:68.402813pt;}
.h2_c01028{height:71.166735pt;}
.h5_c01028{height:77.730469pt;}
.h1_c01028{height:986.666667pt;}
.h0_c01028{height:1122.666667pt;}
.w1_c01028{width:678.666667pt;}
.w0_c01028{width:793.333333pt;}
.x0_c01028{left:0.000000pt;}
.x1_c01028{left:57.333333pt;}
.x51_c01028{left:68.940120pt;}
.x3_c01028{left:69.930120pt;}
.xb_c01028{left:71.549320pt;}
.x44_c01028{left:90.764120pt;}
.x4e_c01028{left:98.252920pt;}
.x1b_c01028{left:99.471720pt;}
.x2c_c01028{left:108.500520pt;}
.x61_c01028{left:109.635720pt;}
.x33_c01028{left:119.104520pt;}
.x45_c01028{left:120.877720pt;}
.x13_c01028{left:129.528120pt;}
.xc_c01028{left:138.754920pt;}
.x46_c01028{left:140.299320pt;}
.x3d_c01028{left:147.189720pt;}
.x24_c01028{left:148.228120pt;}
.x5d_c01028{left:149.209320pt;}
.x4f_c01028{left:158.194120pt;}
.x4_c01028{left:168.529720pt;}
.x2d_c01028{left:177.716920pt;}
.x1c_c01028{left:178.680520pt;}
.x34_c01028{left:187.858920pt;}
.x52_c01028{left:189.042520pt;}
.x5_c01028{left:196.443320pt;}
.xd_c01028{left:197.992120pt;}
.x1d_c01028{left:207.148520pt;}
.x66_c01028{left:208.156120pt;}
.x14_c01028{left:216.419320pt;}
.x2e_c01028{left:217.620520pt;}
.x62_c01028{left:220.379320pt;}
.x50_c01028{left:226.640520pt;}
.x1e_c01028{left:228.356520pt;}
.x56_c01028{left:236.822120pt;}
.x63_c01028{left:237.935320pt;}
.x67_c01028{left:238.846120pt;}
.x37_c01028{left:246.304120pt;}
.x1f_c01028{left:247.386520pt;}
.x47_c01028{left:257.321720pt;}
.x64_c01028{left:267.683720pt;}
.xe_c01028{left:277.104120pt;}
.x25_c01028{left:286.476120pt;}
.x65_c01028{left:289.529720pt;}
.x53_c01028{left:297.757720pt;}
.x59_c01028{left:305.871320pt;}
.x35_c01028{left:306.971320pt;}
.x68_c01028{left:307.943720pt;}
.xf_c01028{left:316.154120pt;}
.x5f_c01028{left:317.425720pt;}
.x38_c01028{left:318.552120pt;}
.x3e_c01028{left:326.186120pt;}
.x41_c01028{left:327.250920pt;}
.x6_c01028{left:335.914520pt;}
.x15_c01028{left:346.038920pt;}
.x69_c01028{left:347.187320pt;}
.x10_c01028{left:354.970920pt;}
.x42_c01028{left:356.185320pt;}
.x26_c01028{left:364.923720pt;}
.x2f_c01028{left:366.243720pt;}
.x20_c01028{left:376.909320pt;}
.x3f_c01028{left:385.876520pt;}
.x7_c01028{left:395.384920pt;}
.x30_c01028{left:396.876520pt;}
.x21_c01028{left:404.704120pt;}
.x48_c01028{left:406.098920pt;}
.x43_c01028{left:415.633720pt;}
.x8_c01028{left:423.923320pt;}
.x16_c01028{left:425.397320pt;}
.x39_c01028{left:434.166520pt;}
.x27_c01028{left:435.552520pt;}
.x11_c01028{left:445.078520pt;}
.x17_c01028{left:454.868520pt;}
.x28_c01028{left:464.649720pt;}
.x49_c01028{left:465.644120pt;}
.x3a_c01028{left:473.141720pt;}
.x57_c01028{left:474.875320pt;}
.x22_c01028{left:484.066920pt;}
.x40_c01028{left:494.037320pt;}
.x9_c01028{left:502.458920pt;}
.x3b_c01028{left:503.875720pt;}
.x31_c01028{left:505.851320pt;}
.x58_c01028{left:513.375320pt;}
.x54_c01028{left:514.796520pt;}
.x29_c01028{left:522.241320pt;}
.x32_c01028{left:523.666920pt;}
.x5c_c01028{left:524.819720pt;}
.x18_c01028{left:533.487720pt;}
.x36_c01028{left:543.004920pt;}
.x4b_c01028{left:553.437320pt;}
.x19_c01028{left:562.650920pt;}
.x55_c01028{left:563.548520pt;}
.xa_c01028{left:572.251720pt;}
.x5a_c01028{left:573.316520pt;}
.x23_c01028{left:581.988920pt;}
.x3c_c01028{left:591.026520pt;}
.x2a_c01028{left:592.724920pt;}
.x2_c01028{left:601.568920pt;}
.x1a_c01028{left:611.878120pt;}
.x2b_c01028{left:621.553720pt;}
.x4a_c01028{left:622.763720pt;}
.x4d_c01028{left:623.982520pt;}
.x60_c01028{left:631.827720pt;}
.x6a_c01028{left:632.901320pt;}
.x5e_c01028{left:640.640920pt;}
.x4c_c01028{left:641.846520pt;}
.x5b_c01028{left:642.783720pt;}
.x12_c01028{left:651.970920pt;}
}





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

.ir_c01029:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01029{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01029;src:url('chunks/assets/font_81c46db5210c46d26ab680b9.woff2')format("woff");}.ff1_c01029{font-family:ff1_c01029;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01029;src:url('chunks/assets/font_68841d5c2b2fc7c8b029c14a.woff2')format("woff");}.ff2_c01029{font-family:ff2_c01029;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01029;src:url('chunks/assets/font_f0141054ec7c35707d4b0d51.woff2')format("woff");}.ff3_c01029{font-family:ff3_c01029;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m98_c01029{transform:matrix(0.113638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113638,0.000000,0.000000,0.250000,0,0);}
.m10_c01029{transform:matrix(0.181973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181973,0.000000,0.000000,0.250000,0,0);}
.m5a_c01029{transform:matrix(0.207207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207207,0.000000,0.000000,0.250000,0,0);}
.md_c01029{transform:matrix(0.220377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220377,0.000000,0.000000,0.250000,0,0);}
.m3a_c01029{transform:matrix(0.244940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244940,0.000000,0.000000,0.250000,0,0);}
.m5_c01029{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01029{transform:matrix(0.250677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250677,0.000000,0.000000,0.250000,0,0);}
.m54_c01029{transform:matrix(0.252682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252682,0.000000,0.000000,0.250000,0,0);}
.m0_c01029{transform:matrix(0.253834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253834,0.000000,0.000000,0.250000,0,0);}
.m76_c01029{transform:matrix(0.254158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254158,0.000000,0.000000,0.250000,0,0);}
.m6c_c01029{transform:matrix(0.255557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255557,0.000000,0.000000,0.250000,0,0);}
.m4c_c01029{transform:matrix(0.256222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256222,0.000000,0.000000,0.250000,0,0);}
.m38_c01029{transform:matrix(0.256334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256334,0.000000,0.000000,0.250000,0,0);}
.m12_c01029{transform:matrix(0.256420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256420,0.000000,0.000000,0.250000,0,0);}
.m81_c01029{transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);}
.m2d_c01029{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m55_c01029{transform:matrix(0.259889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259889,0.000000,0.000000,0.250000,0,0);}
.m2_c01029{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m9_c01029{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.m56_c01029{transform:matrix(0.261938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261938,0.000000,0.000000,0.250000,0,0);}
.m93_c01029{transform:matrix(0.262649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262649,0.000000,0.000000,0.250000,0,0);}
.m36_c01029{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m87_c01029{transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);}
.m5f_c01029{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m4_c01029{transform:matrix(0.264839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264839,0.000000,0.000000,0.250000,0,0);}
.m5d_c01029{transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);}
.m1c_c01029{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.mc_c01029{transform:matrix(0.266295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266295,0.000000,0.000000,0.250000,0,0);}
.m21_c01029{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.m3c_c01029{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m4d_c01029{transform:matrix(0.270396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270396,0.000000,0.000000,0.250000,0,0);}
.m24_c01029{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m46_c01029{transform:matrix(0.271196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271196,0.000000,0.000000,0.250000,0,0);}
.m79_c01029{transform:matrix(0.271431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271431,0.000000,0.000000,0.250000,0,0);}
.m7a_c01029{transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);}
.m7b_c01029{transform:matrix(0.272747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272747,0.000000,0.000000,0.250000,0,0);}
.m6_c01029{transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);}
.m89_c01029{transform:matrix(0.273056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273056,0.000000,0.000000,0.250000,0,0);}
.m2f_c01029{transform:matrix(0.273832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273832,0.000000,0.000000,0.250000,0,0);}
.m85_c01029{transform:matrix(0.275733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275733,0.000000,0.000000,0.250000,0,0);}
.m7c_c01029{transform:matrix(0.276432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276432,0.000000,0.000000,0.250000,0,0);}
.m2a_c01029{transform:matrix(0.276605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276605,0.000000,0.000000,0.250000,0,0);}
.m84_c01029{transform:matrix(0.278299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278299,0.000000,0.000000,0.250000,0,0);}
.m17_c01029{transform:matrix(0.279208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279208,0.000000,0.000000,0.250000,0,0);}
.m28_c01029{transform:matrix(0.280151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280151,0.000000,0.000000,0.250000,0,0);}
.m62_c01029{transform:matrix(0.280475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280475,0.000000,0.000000,0.250000,0,0);}
.m5c_c01029{transform:matrix(0.280503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280503,0.000000,0.000000,0.250000,0,0);}
.m66_c01029{transform:matrix(0.281190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281190,0.000000,0.000000,0.250000,0,0);}
.m13_c01029{transform:matrix(0.282186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282186,0.000000,0.000000,0.250000,0,0);}
.m40_c01029{transform:matrix(0.283670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283670,0.000000,0.000000,0.250000,0,0);}
.m94_c01029{transform:matrix(0.283735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283735,0.000000,0.000000,0.250000,0,0);}
.m58_c01029{transform:matrix(0.284015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284015,0.000000,0.000000,0.250000,0,0);}
.m3d_c01029{transform:matrix(0.284564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284564,0.000000,0.000000,0.250000,0,0);}
.m1a_c01029{transform:matrix(0.284924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284924,0.000000,0.000000,0.250000,0,0);}
.m8b_c01029{transform:matrix(0.285531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285531,0.000000,0.000000,0.250000,0,0);}
.m37_c01029{transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);}
.m22_c01029{transform:matrix(0.286496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286496,0.000000,0.000000,0.250000,0,0);}
.me_c01029{transform:matrix(0.287075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287075,0.000000,0.000000,0.250000,0,0);}
.m8a_c01029{transform:matrix(0.287674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287674,0.000000,0.000000,0.250000,0,0);}
.m1b_c01029{transform:matrix(0.288169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288169,0.000000,0.000000,0.250000,0,0);}
.m90_c01029{transform:matrix(0.288818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288818,0.000000,0.000000,0.250000,0,0);}
.m53_c01029{transform:matrix(0.289520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289520,0.000000,0.000000,0.250000,0,0);}
.m7e_c01029{transform:matrix(0.289860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289860,0.000000,0.000000,0.250000,0,0);}
.m1_c01029{transform:matrix(0.289952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289952,0.000000,0.000000,0.250000,0,0);}
.m23_c01029{transform:matrix(0.290391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290391,0.000000,0.000000,0.250000,0,0);}
.m88_c01029{transform:matrix(0.290591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290591,0.000000,0.000000,0.250000,0,0);}
.m86_c01029{transform:matrix(0.290956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290956,0.000000,0.000000,0.250000,0,0);}
.m6f_c01029{transform:matrix(0.291612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291612,0.000000,0.000000,0.250000,0,0);}
.m78_c01029{transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);}
.m57_c01029{transform:matrix(0.292499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292499,0.000000,0.000000,0.250000,0,0);}
.m6b_c01029{transform:matrix(0.293282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293282,0.000000,0.000000,0.250000,0,0);}
.m8c_c01029{transform:matrix(0.293724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293724,0.000000,0.000000,0.250000,0,0);}
.m3b_c01029{transform:matrix(0.293949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293949,0.000000,0.000000,0.250000,0,0);}
.m72_c01029{transform:matrix(0.294460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294460,0.000000,0.000000,0.250000,0,0);}
.m8_c01029{transform:matrix(0.295023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295023,0.000000,0.000000,0.250000,0,0);}
.m7f_c01029{transform:matrix(0.295212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295212,0.000000,0.000000,0.250000,0,0);}
.m6e_c01029{transform:matrix(0.296393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296393,0.000000,0.000000,0.250000,0,0);}
.m5b_c01029{transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);}
.m52_c01029{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m80_c01029{transform:matrix(0.297461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297461,0.000000,0.000000,0.250000,0,0);}
.m15_c01029{transform:matrix(0.300160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300160,0.000000,0.000000,0.250000,0,0);}
.m3e_c01029{transform:matrix(0.300193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300193,0.000000,0.000000,0.250000,0,0);}
.m8e_c01029{transform:matrix(0.300595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300595,0.000000,0.000000,0.250000,0,0);}
.m14_c01029{transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);}
.m69_c01029{transform:matrix(0.302092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302092,0.000000,0.000000,0.250000,0,0);}
.m95_c01029{transform:matrix(0.302518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302518,0.000000,0.000000,0.250000,0,0);}
.m1d_c01029{transform:matrix(0.304044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304044,0.000000,0.000000,0.250000,0,0);}
.m34_c01029{transform:matrix(0.304119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304119,0.000000,0.000000,0.250000,0,0);}
.m51_c01029{transform:matrix(0.304278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304278,0.000000,0.000000,0.250000,0,0);}
.m4f_c01029{transform:matrix(0.304300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304300,0.000000,0.000000,0.250000,0,0);}
.m97_c01029{transform:matrix(0.304748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304748,0.000000,0.000000,0.250000,0,0);}
.m65_c01029{transform:matrix(0.305114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305114,0.000000,0.000000,0.250000,0,0);}
.m29_c01029{transform:matrix(0.305475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305475,0.000000,0.000000,0.250000,0,0);}
.m35_c01029{transform:matrix(0.305510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305510,0.000000,0.000000,0.250000,0,0);}
.m33_c01029{transform:matrix(0.305844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305844,0.000000,0.000000,0.250000,0,0);}
.m8f_c01029{transform:matrix(0.306666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306666,0.000000,0.000000,0.250000,0,0);}
.m30_c01029{transform:matrix(0.306714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306714,0.000000,0.000000,0.250000,0,0);}
.m49_c01029{transform:matrix(0.307282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307282,0.000000,0.000000,0.250000,0,0);}
.m39_c01029{transform:matrix(0.308570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308570,0.000000,0.000000,0.250000,0,0);}
.m27_c01029{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m1f_c01029{transform:matrix(0.309532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309532,0.000000,0.000000,0.250000,0,0);}
.m6d_c01029{transform:matrix(0.310001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310001,0.000000,0.000000,0.250000,0,0);}
.m2c_c01029{transform:matrix(0.310886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310886,0.000000,0.000000,0.250000,0,0);}
.m7_c01029{transform:matrix(0.311256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311256,0.000000,0.000000,0.250000,0,0);}
.ma_c01029{transform:matrix(0.311644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311644,0.000000,0.000000,0.250000,0,0);}
.m60_c01029{transform:matrix(0.311765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311765,0.000000,0.000000,0.250000,0,0);}
.m42_c01029{transform:matrix(0.313301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313301,0.000000,0.000000,0.250000,0,0);}
.m11_c01029{transform:matrix(0.313891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313891,0.000000,0.000000,0.250000,0,0);}
.m44_c01029{transform:matrix(0.314104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314104,0.000000,0.000000,0.250000,0,0);}
.m1e_c01029{transform:matrix(0.314286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314286,0.000000,0.000000,0.250000,0,0);}
.m64_c01029{transform:matrix(0.315556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315556,0.000000,0.000000,0.250000,0,0);}
.m83_c01029{transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);}
.mb_c01029{transform:matrix(0.316787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316787,0.000000,0.000000,0.250000,0,0);}
.m32_c01029{transform:matrix(0.316884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316884,0.000000,0.000000,0.250000,0,0);}
.m41_c01029{transform:matrix(0.317419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317419,0.000000,0.000000,0.250000,0,0);}
.m67_c01029{transform:matrix(0.317812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317812,0.000000,0.000000,0.250000,0,0);}
.m4a_c01029{transform:matrix(0.317944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317944,0.000000,0.000000,0.250000,0,0);}
.m20_c01029{transform:matrix(0.318051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318051,0.000000,0.000000,0.250000,0,0);}
.m18_c01029{transform:matrix(0.318683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318683,0.000000,0.000000,0.250000,0,0);}
.m48_c01029{transform:matrix(0.318875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318875,0.000000,0.000000,0.250000,0,0);}
.m96_c01029{transform:matrix(0.319176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319176,0.000000,0.000000,0.250000,0,0);}
.m6a_c01029{transform:matrix(0.321475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321475,0.000000,0.000000,0.250000,0,0);}
.m74_c01029{transform:matrix(0.323158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323158,0.000000,0.000000,0.250000,0,0);}
.m5e_c01029{transform:matrix(0.324775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324775,0.000000,0.000000,0.250000,0,0);}
.m16_c01029{transform:matrix(0.324910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324910,0.000000,0.000000,0.250000,0,0);}
.m7d_c01029{transform:matrix(0.325463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325463,0.000000,0.000000,0.250000,0,0);}
.m73_c01029{transform:matrix(0.326100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326100,0.000000,0.000000,0.250000,0,0);}
.m92_c01029{transform:matrix(0.326439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326439,0.000000,0.000000,0.250000,0,0);}
.m75_c01029{transform:matrix(0.327064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327064,0.000000,0.000000,0.250000,0,0);}
.m2e_c01029{transform:matrix(0.327076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327076,0.000000,0.000000,0.250000,0,0);}
.m19_c01029{transform:matrix(0.327290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327290,0.000000,0.000000,0.250000,0,0);}
.m61_c01029{transform:matrix(0.329971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329971,0.000000,0.000000,0.250000,0,0);}
.m63_c01029{transform:matrix(0.330710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330710,0.000000,0.000000,0.250000,0,0);}
.m26_c01029{transform:matrix(0.330778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330778,0.000000,0.000000,0.250000,0,0);}
.m47_c01029{transform:matrix(0.332172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332172,0.000000,0.000000,0.250000,0,0);}
.m68_c01029{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m3f_c01029{transform:matrix(0.333358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333358,0.000000,0.000000,0.250000,0,0);}
.m50_c01029{transform:matrix(0.334345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334345,0.000000,0.000000,0.250000,0,0);}
.m70_c01029{transform:matrix(0.337477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337477,0.000000,0.000000,0.250000,0,0);}
.m4b_c01029{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m43_c01029{transform:matrix(0.339619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339619,0.000000,0.000000,0.250000,0,0);}
.m91_c01029{transform:matrix(0.339972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339972,0.000000,0.000000,0.250000,0,0);}
.m77_c01029{transform:matrix(0.340162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340162,0.000000,0.000000,0.250000,0,0);}
.m71_c01029{transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);}
.m59_c01029{transform:matrix(0.346501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346501,0.000000,0.000000,0.250000,0,0);}
.mf_c01029{transform:matrix(0.353894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353894,0.000000,0.000000,0.250000,0,0);}
.m3_c01029{transform:matrix(0.353998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353998,0.000000,0.000000,0.250000,0,0);}
.m8d_c01029{transform:matrix(0.360544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360544,0.000000,0.000000,0.250000,0,0);}
.m45_c01029{transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);}
.m2b_c01029{transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);}
.m4e_c01029{transform:matrix(0.379869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379869,0.000000,0.000000,0.250000,0,0);}
.m25_c01029{transform:matrix(0.385437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385437,0.000000,0.000000,0.250000,0,0);}
.m31_c01029{transform:matrix(0.391460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391460,0.000000,0.000000,0.250000,0,0);}
.v1_c01029{vertical-align:-5.702400px;}
.v0_c01029{vertical-align:0.000000px;}
.v2_c01029{vertical-align:5.702400px;}
.ls4_c01029{letter-spacing:-2.744280px;}
.ls3_c01029{letter-spacing:0.000000px;}
.ls9_c01029{letter-spacing:1.246687px;}
.ls5_c01029{letter-spacing:3.781810px;}
.ls7_c01029{letter-spacing:3.881196px;}
.ls2_c01029{letter-spacing:3.920400px;}
.ls1_c01029{letter-spacing:4.336200px;}
.ls0_c01029{letter-spacing:30.872952px;}
.lsa_c01029{letter-spacing:31.363200px;}
.ls8_c01029{letter-spacing:52.747398px;}
.ls6_c01029{letter-spacing:59.875398px;}
.sc__c01029{text-shadow:none;}
.sc0_c01029{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01029{-webkit-text-stroke:0px transparent;}
.sc0_c01029{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01029{word-spacing:-23.483196px;}
.ws0_c01029{word-spacing:-19.602000px;}
.ws2_c01029{word-spacing:0.000000px;}
._0_c01029{width:1.881792px;}
._2_c01029{width:23.130360px;}
._1_c01029{width:43.144596px;}
.fc0_c01029{color:transparent;}
.fs6_c01029{font-size:28.314000px;}
.fsc_c01029{font-size:31.363200px;}
.fsb_c01029{font-size:32.868000px;}
.fs8_c01029{font-size:37.818000px;}
.fs4_c01029{font-size:49.896198px;}
.fs9_c01029{font-size:52.747398px;}
.fs3_c01029{font-size:59.875398px;}
.fs5_c01029{font-size:66.330000px;}
.fsa_c01029{font-size:66.528000px;}
.fs7_c01029{font-size:74.844000px;}
.fs2_c01029{font-size:75.636198px;}
.fs1_c01029{font-size:78.408000px;}
.fs0_c01029{font-size:86.724000px;}
.y0_c01029{bottom:0.000000px;}
.y1d_c01029{bottom:38.041785px;}
.y1c_c01029{bottom:48.733785px;}
.y1b_c01029{bottom:61.564185px;}
.y1_c01029{bottom:76.500000px;}
.y1a_c01029{bottom:108.252585px;}
.y19_c01029{bottom:140.689935px;}
.y18_c01029{bottom:173.117385px;}
.y17_c01029{bottom:205.554735px;}
.y16_c01029{bottom:268.637535px;}
.y15_c01029{bottom:300.000735px;}
.y14_c01029{bottom:331.358985px;}
.y13_c01029{bottom:363.083535px;}
.y12_c01029{bottom:395.515935px;}
.y11_c01029{bottom:425.453535px;}
.y10_c01029{bottom:426.879135px;}
.yf_c01029{bottom:458.950185px;}
.ye_c01029{bottom:491.026185px;}
.yd_c01029{bottom:522.750735px;}
.yc_c01029{bottom:554.826735px;}
.yb_c01029{bottom:586.189935px;}
.ya_c01029{bottom:604.009935px;}
.y9_c01029{bottom:617.904585px;}
.y8_c01029{bottom:648.911385px;}
.y7_c01029{bottom:680.630985px;}
.y6_c01029{bottom:728.749935px;}
.y5_c01029{bottom:755.123535px;}
.y4_c01029{bottom:893.045385px;}
.y3_c01029{bottom:925.121385px;}
.y2_c01029{bottom:1060.553385px;}
.he_c01029{height:20.887891px;}
.h8_c01029{height:29.530617px;}
.hd_c01029{height:34.280297px;}
.ha_c01029{height:35.129767px;}
.hb_c01029{height:39.442992px;}
.h5_c01029{height:39.877015px;}
.h6_c01029{height:52.040175px;}
.h7_c01029{height:69.180117px;}
.hc_c01029{height:69.386625px;}
.h9_c01029{height:73.455293px;}
.h4_c01029{height:74.232792px;}
.h3_c01029{height:76.953164px;}
.h2_c01029{height:85.114863px;}
.h1_c01029{height:1110.000000px;}
.h0_c01029{height:1263.000000px;}
.w1_c01029{width:763.500000px;}
.w0_c01029{width:892.500000px;}
.x0_c01029{left:0.000000px;}
.x1_c01029{left:64.500000px;}
.x1e_c01029{left:82.864035px;}
.x2a_c01029{left:84.344085px;}
.x3_c01029{left:86.140935px;}
.x33_c01029{left:116.702235px;}
.x44_c01029{left:126.384435px;}
.x4f_c01029{left:128.295135px;}
.x19_c01029{left:137.665485px;}
.x14_c01029{left:138.823785px;}
.x55_c01029{left:140.071185px;}
.x48_c01029{left:150.292935px;}
.x2b_c01029{left:161.440335px;}
.x50_c01029{left:171.246285px;}
.x4_c01029{left:172.518435px;}
.x29_c01029{left:179.676135px;}
.x39_c01029{left:183.151035px;}
.x36_c01029{left:193.704435px;}
.xe_c01029{left:205.653735px;}
.x56_c01029{left:206.960535px;}
.x3a_c01029{left:215.801235px;}
.x5_c01029{left:216.999135px;}
.xf_c01029{left:226.854585px;}
.x54_c01029{left:228.418785px;}
.x49_c01029{left:239.110785px;}
.x1f_c01029{left:249.723585px;}
.x6_c01029{left:261.281835px;}
.x2c_c01029{left:272.998485px;}
.x34_c01029{left:283.353885px;}
.x40_c01029{left:294.021135px;}
.x7_c01029{left:295.827885px;}
.x2d_c01029{left:305.678385px;}
.x8_c01029{left:315.989235px;}
.x20_c01029{left:328.591935px;}
.x15_c01029{left:339.283935px;}
.x9_c01029{left:349.451235px;}
.x21_c01029{left:360.633285px;}
.x10_c01029{left:361.687635px;}
.x51_c01029{left:363.439935px;}
.x4a_c01029{left:371.231235px;}
.x1a_c01029{left:372.622185px;}
.x16_c01029{left:382.952835px;}
.x22_c01029{left:392.971635px;}
.x11_c01029{left:394.763535px;}
.x4b_c01029{left:405.049635px;}
.x1b_c01029{left:406.188135px;}
.x2e_c01029{left:417.008835px;}
.x52_c01029{left:428.997735px;}
.x25_c01029{left:438.724485px;}
.x58_c01029{left:439.768935px;}
.x2f_c01029{left:448.926435px;}
.xa_c01029{left:450.129285px;}
.x37_c01029{left:460.648035px;}
.x17_c01029{left:472.171635px;}
.x57_c01029{left:473.270535px;}
.x12_c01029{left:482.972535px;}
.x30_c01029{left:493.075485px;}
.x13_c01029{left:494.991135px;}
.x4c_c01029{left:505.396035px;}
.x3b_c01029{left:515.498985px;}
.x41_c01029{left:516.667185px;}
.x45_c01029{left:519.315435px;}
.x1c_c01029{left:525.874185px;}
.x23_c01029{left:527.101785px;}
.x3c_c01029{left:538.120485px;}
.x35_c01029{left:549.946035px;}
.x26_c01029{left:559.336185px;}
.x31_c01029{left:560.954835px;}
.x24_c01029{left:571.310235px;}
.x18_c01029{left:572.998185px;}
.x3d_c01029{left:581.462685px;}
.x27_c01029{left:582.601185px;}
.x4e_c01029{left:594.471285px;}
.xb_c01029{left:604.292085px;}
.x53_c01029{left:606.148335px;}
.x46_c01029{left:615.880035px;}
.x1d_c01029{left:626.532435px;}
.xc_c01029{left:627.616485px;}
.x4d_c01029{left:638.303535px;}
.xd_c01029{left:658.846035px;}
.x42_c01029{left:660.781485px;}
.x3e_c01029{left:671.067585px;}
.x43_c01029{left:680.942835px;}
.x2_c01029{left:682.462485px;}
.x28_c01029{left:693.451485px;}
.x59_c01029{left:700.643835px;}
.x5a_c01029{left:701.812035px;}
.x3f_c01029{left:704.262285px;}
.x32_c01029{left:714.711735px;}
.x38_c01029{left:715.944285px;}
.x47_c01029{left:726.992685px;}
@media print{
.v1_c01029{vertical-align:-5.068800pt;}
.v0_c01029{vertical-align:0.000000pt;}
.v2_c01029{vertical-align:5.068800pt;}
.ls4_c01029{letter-spacing:-2.439360pt;}
.ls3_c01029{letter-spacing:0.000000pt;}
.ls9_c01029{letter-spacing:1.108166pt;}
.ls5_c01029{letter-spacing:3.361609pt;}
.ls7_c01029{letter-spacing:3.449952pt;}
.ls2_c01029{letter-spacing:3.484800pt;}
.ls1_c01029{letter-spacing:3.854400pt;}
.ls0_c01029{letter-spacing:27.442624pt;}
.lsa_c01029{letter-spacing:27.878400pt;}
.ls8_c01029{letter-spacing:46.886576pt;}
.ls6_c01029{letter-spacing:53.222576pt;}
.ws1_c01029{word-spacing:-20.873952pt;}
.ws0_c01029{word-spacing:-17.424000pt;}
.ws2_c01029{word-spacing:0.000000pt;}
._0_c01029{width:1.672704pt;}
._2_c01029{width:20.560320pt;}
._1_c01029{width:38.350752pt;}
.fs6_c01029{font-size:25.168000pt;}
.fsc_c01029{font-size:27.878400pt;}
.fsb_c01029{font-size:29.216000pt;}
.fs8_c01029{font-size:33.616000pt;}
.fs4_c01029{font-size:44.352176pt;}
.fs9_c01029{font-size:46.886576pt;}
.fs3_c01029{font-size:53.222576pt;}
.fs5_c01029{font-size:58.960000pt;}
.fsa_c01029{font-size:59.136000pt;}
.fs7_c01029{font-size:66.528000pt;}
.fs2_c01029{font-size:67.232176pt;}
.fs1_c01029{font-size:69.696000pt;}
.fs0_c01029{font-size:77.088000pt;}
.y0_c01029{bottom:0.000000pt;}
.y1d_c01029{bottom:33.814920pt;}
.y1c_c01029{bottom:43.318920pt;}
.y1b_c01029{bottom:54.723720pt;}
.y1_c01029{bottom:68.000000pt;}
.y1a_c01029{bottom:96.224520pt;}
.y19_c01029{bottom:125.057720pt;}
.y18_c01029{bottom:153.882120pt;}
.y17_c01029{bottom:182.715320pt;}
.y16_c01029{bottom:238.788920pt;}
.y15_c01029{bottom:266.667320pt;}
.y14_c01029{bottom:294.541320pt;}
.y13_c01029{bottom:322.740920pt;}
.y12_c01029{bottom:351.569720pt;}
.y11_c01029{bottom:378.180920pt;}
.y10_c01029{bottom:379.448120pt;}
.yf_c01029{bottom:407.955720pt;}
.ye_c01029{bottom:436.467720pt;}
.yd_c01029{bottom:464.667320pt;}
.yc_c01029{bottom:493.179320pt;}
.yb_c01029{bottom:521.057720pt;}
.ya_c01029{bottom:536.897720pt;}
.y9_c01029{bottom:549.248520pt;}
.y8_c01029{bottom:576.810120pt;}
.y7_c01029{bottom:605.005320pt;}
.y6_c01029{bottom:647.777720pt;}
.y5_c01029{bottom:671.220920pt;}
.y4_c01029{bottom:793.818120pt;}
.y3_c01029{bottom:822.330120pt;}
.y2_c01029{bottom:942.714120pt;}
.he_c01029{height:18.567014pt;}
.h8_c01029{height:26.249438pt;}
.hd_c01029{height:30.471375pt;}
.ha_c01029{height:31.226460pt;}
.hb_c01029{height:35.060438pt;}
.h5_c01029{height:35.446236pt;}
.h6_c01029{height:46.257934pt;}
.h7_c01029{height:61.493438pt;}
.hc_c01029{height:61.677000pt;}
.h9_c01029{height:65.293594pt;}
.h4_c01029{height:65.984704pt;}
.h3_c01029{height:68.402813pt;}
.h2_c01029{height:75.657656pt;}
.h1_c01029{height:986.666667pt;}
.h0_c01029{height:1122.666667pt;}
.w1_c01029{width:678.666667pt;}
.w0_c01029{width:793.333333pt;}
.x0_c01029{left:0.000000pt;}
.x1_c01029{left:57.333333pt;}
.x1e_c01029{left:73.656920pt;}
.x2a_c01029{left:74.972520pt;}
.x3_c01029{left:76.569720pt;}
.x33_c01029{left:103.735320pt;}
.x44_c01029{left:112.341720pt;}
.x4f_c01029{left:114.040120pt;}
.x19_c01029{left:122.369320pt;}
.x14_c01029{left:123.398920pt;}
.x55_c01029{left:124.507720pt;}
.x48_c01029{left:133.593720pt;}
.x2b_c01029{left:143.502520pt;}
.x50_c01029{left:152.218920pt;}
.x4_c01029{left:153.349720pt;}
.x29_c01029{left:159.712120pt;}
.x39_c01029{left:162.800920pt;}
.x36_c01029{left:172.181720pt;}
.xe_c01029{left:182.803320pt;}
.x56_c01029{left:183.964920pt;}
.x3a_c01029{left:191.823320pt;}
.x5_c01029{left:192.888120pt;}
.xf_c01029{left:201.648520pt;}
.x54_c01029{left:203.038920pt;}
.x49_c01029{left:212.542920pt;}
.x1f_c01029{left:221.976520pt;}
.x6_c01029{left:232.250520pt;}
.x2c_c01029{left:242.665320pt;}
.x34_c01029{left:251.870120pt;}
.x40_c01029{left:261.352120pt;}
.x7_c01029{left:262.958120pt;}
.x2d_c01029{left:271.714120pt;}
.x8_c01029{left:280.879320pt;}
.x20_c01029{left:292.081720pt;}
.x15_c01029{left:301.585720pt;}
.x9_c01029{left:310.623320pt;}
.x21_c01029{left:320.562920pt;}
.x10_c01029{left:321.500120pt;}
.x51_c01029{left:323.057720pt;}
.x4a_c01029{left:329.983320pt;}
.x1a_c01029{left:331.219720pt;}
.x16_c01029{left:340.402520pt;}
.x22_c01029{left:349.308120pt;}
.x11_c01029{left:350.900920pt;}
.x4b_c01029{left:360.044120pt;}
.x1b_c01029{left:361.056120pt;}
.x2e_c01029{left:370.674520pt;}
.x52_c01029{left:381.331320pt;}
.x25_c01029{left:389.977320pt;}
.x58_c01029{left:390.905720pt;}
.x2f_c01029{left:399.045720pt;}
.xa_c01029{left:400.114920pt;}
.x37_c01029{left:409.464920pt;}
.x17_c01029{left:419.708120pt;}
.x57_c01029{left:420.684920pt;}
.x12_c01029{left:429.308920pt;}
.x30_c01029{left:438.289320pt;}
.x13_c01029{left:439.992120pt;}
.x4c_c01029{left:449.240920pt;}
.x3b_c01029{left:458.221320pt;}
.x41_c01029{left:459.259720pt;}
.x45_c01029{left:461.613720pt;}
.x1c_c01029{left:467.443720pt;}
.x23_c01029{left:468.534920pt;}
.x3c_c01029{left:478.329320pt;}
.x35_c01029{left:488.840920pt;}
.x26_c01029{left:497.187720pt;}
.x31_c01029{left:498.626520pt;}
.x24_c01029{left:507.831320pt;}
.x18_c01029{left:509.331720pt;}
.x3d_c01029{left:516.855720pt;}
.x27_c01029{left:517.867720pt;}
.x4e_c01029{left:528.418920pt;}
.xb_c01029{left:537.148520pt;}
.x53_c01029{left:538.798520pt;}
.x46_c01029{left:547.448920pt;}
.x1d_c01029{left:556.917720pt;}
.xc_c01029{left:557.881320pt;}
.x4d_c01029{left:567.380920pt;}
.xd_c01029{left:585.640920pt;}
.x42_c01029{left:587.361320pt;}
.x3e_c01029{left:596.504520pt;}
.x43_c01029{left:605.282520pt;}
.x2_c01029{left:606.633320pt;}
.x28_c01029{left:616.401320pt;}
.x59_c01029{left:622.794520pt;}
.x5a_c01029{left:623.832920pt;}
.x3f_c01029{left:626.010920pt;}
.x32_c01029{left:635.299320pt;}
.x38_c01029{left:636.394920pt;}
.x47_c01029{left:646.215720pt;}
}





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

.ir_c01030:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01030{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01030;src:url('chunks/assets/font_191f33a3fcfdec25149bcff7.woff2')format("woff");}.ff1_c01030{font-family:ff1_c01030;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01030;src:url('chunks/assets/font_ce8df63b0a76092414d76f39.woff2')format("woff");}.ff2_c01030{font-family:ff2_c01030;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01030;src:url('chunks/assets/font_775c3e0ce36326913546a597.woff2')format("woff");}.ff3_c01030{font-family:ff3_c01030;line-height:0.666000;font-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_c01030{transform:matrix(0.020271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020271,0.000000,0.000000,0.250000,0,0);}
.m1f_c01030{transform:matrix(0.125697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125697,0.000000,0.000000,0.250000,0,0);}
.m21_c01030{transform:matrix(0.165179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165179,0.000000,0.000000,0.250000,0,0);}
.m80_c01030{transform:matrix(0.169435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169435,0.000000,0.000000,0.250000,0,0);}
.m61_c01030{transform:matrix(0.174340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174340,0.000000,0.000000,0.250000,0,0);}
.m39_c01030{transform:matrix(0.201566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201566,0.000000,0.000000,0.250000,0,0);}
.mbd_c01030{transform:matrix(0.216216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216216,0.000000,0.000000,0.250000,0,0);}
.m4_c01030{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m69_c01030{transform:matrix(0.251249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251249,0.000000,0.000000,0.250000,0,0);}
.m5f_c01030{transform:matrix(0.253046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253046,0.000000,0.000000,0.250000,0,0);}
.m7f_c01030{transform:matrix(0.254841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254841,0.000000,0.000000,0.250000,0,0);}
.m90_c01030{transform:matrix(0.259774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259774,0.000000,0.000000,0.250000,0,0);}
.m3f_c01030{transform:matrix(0.260185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260185,0.000000,0.000000,0.250000,0,0);}
.m1e_c01030{transform:matrix(0.260634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260634,0.000000,0.000000,0.250000,0,0);}
.ma3_c01030{transform:matrix(0.261909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261909,0.000000,0.000000,0.250000,0,0);}
.m55_c01030{transform:matrix(0.265460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265460,0.000000,0.000000,0.250000,0,0);}
.mba_c01030{transform:matrix(0.266857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266857,0.000000,0.000000,0.250000,0,0);}
.m63_c01030{transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);}
.m44_c01030{transform:matrix(0.268298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268298,0.000000,0.000000,0.250000,0,0);}
.m13_c01030{transform:matrix(0.268917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268917,0.000000,0.000000,0.250000,0,0);}
.m57_c01030{transform:matrix(0.269351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269351,0.000000,0.000000,0.250000,0,0);}
.mb3_c01030{transform:matrix(0.269683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269683,0.000000,0.000000,0.250000,0,0);}
.md_c01030{transform:matrix(0.270287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270287,0.000000,0.000000,0.250000,0,0);}
.ma0_c01030{transform:matrix(0.270589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270589,0.000000,0.000000,0.250000,0,0);}
.m49_c01030{transform:matrix(0.270955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270955,0.000000,0.000000,0.250000,0,0);}
.md3_c01030{transform:matrix(0.271287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271287,0.000000,0.000000,0.250000,0,0);}
.m0_c01030{transform:matrix(0.271578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271578,0.000000,0.000000,0.250000,0,0);}
.m96_c01030{transform:matrix(0.272246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272246,0.000000,0.000000,0.250000,0,0);}
.m50_c01030{transform:matrix(0.272665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272665,0.000000,0.000000,0.250000,0,0);}
.m38_c01030{transform:matrix(0.272685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272685,0.000000,0.000000,0.250000,0,0);}
.m68_c01030{transform:matrix(0.272821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272821,0.000000,0.000000,0.250000,0,0);}
.mac_c01030{transform:matrix(0.273274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273274,0.000000,0.000000,0.250000,0,0);}
.mb2_c01030{transform:matrix(0.273553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273553,0.000000,0.000000,0.250000,0,0);}
.m89_c01030{transform:matrix(0.273580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273580,0.000000,0.000000,0.250000,0,0);}
.me_c01030{transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);}
.m41_c01030{transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);}
.m7b_c01030{transform:matrix(0.274492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274492,0.000000,0.000000,0.250000,0,0);}
.m14_c01030{transform:matrix(0.275114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275114,0.000000,0.000000,0.250000,0,0);}
.m79_c01030{transform:matrix(0.275467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275467,0.000000,0.000000,0.250000,0,0);}
.m9e_c01030{transform:matrix(0.275764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275764,0.000000,0.000000,0.250000,0,0);}
.m15_c01030{transform:matrix(0.276568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276568,0.000000,0.000000,0.250000,0,0);}
.m11_c01030{transform:matrix(0.276784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276784,0.000000,0.000000,0.250000,0,0);}
.m9d_c01030{transform:matrix(0.276944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276944,0.000000,0.000000,0.250000,0,0);}
.ma5_c01030{transform:matrix(0.277696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277696,0.000000,0.000000,0.250000,0,0);}
.m7_c01030{transform:matrix(0.278154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278154,0.000000,0.000000,0.250000,0,0);}
.m4f_c01030{transform:matrix(0.278949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278949,0.000000,0.000000,0.250000,0,0);}
.m7e_c01030{transform:matrix(0.279941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279941,0.000000,0.000000,0.250000,0,0);}
.m8d_c01030{transform:matrix(0.280269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280269,0.000000,0.000000,0.250000,0,0);}
.m6e_c01030{transform:matrix(0.280672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280672,0.000000,0.000000,0.250000,0,0);}
.mc8_c01030{transform:matrix(0.283022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283022,0.000000,0.000000,0.250000,0,0);}
.m8b_c01030{transform:matrix(0.283033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283033,0.000000,0.000000,0.250000,0,0);}
.m34_c01030{transform:matrix(0.283785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283785,0.000000,0.000000,0.250000,0,0);}
.m45_c01030{transform:matrix(0.284313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284313,0.000000,0.000000,0.250000,0,0);}
.md6_c01030{transform:matrix(0.284490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284490,0.000000,0.000000,0.250000,0,0);}
.m23_c01030{transform:matrix(0.286732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286732,0.000000,0.000000,0.250000,0,0);}
.ma_c01030{transform:matrix(0.287913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287913,0.000000,0.000000,0.250000,0,0);}
.m8a_c01030{transform:matrix(0.288568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288568,0.000000,0.000000,0.250000,0,0);}
.ma2_c01030{transform:matrix(0.288714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288714,0.000000,0.000000,0.250000,0,0);}
.m2d_c01030{transform:matrix(0.288802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288802,0.000000,0.000000,0.250000,0,0);}
.m37_c01030{transform:matrix(0.288822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288822,0.000000,0.000000,0.250000,0,0);}
.mb5_c01030{transform:matrix(0.289177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289177,0.000000,0.000000,0.250000,0,0);}
.mc1_c01030{transform:matrix(0.289443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289443,0.000000,0.000000,0.250000,0,0);}
.mf_c01030{transform:matrix(0.289733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289733,0.000000,0.000000,0.250000,0,0);}
.m1c_c01030{transform:matrix(0.290163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290163,0.000000,0.000000,0.250000,0,0);}
.m6b_c01030{transform:matrix(0.290225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290225,0.000000,0.000000,0.250000,0,0);}
.m54_c01030{transform:matrix(0.290394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290394,0.000000,0.000000,0.250000,0,0);}
.m1d_c01030{transform:matrix(0.290623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290623,0.000000,0.000000,0.250000,0,0);}
.m74_c01030{transform:matrix(0.292001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292001,0.000000,0.000000,0.250000,0,0);}
.m2e_c01030{transform:matrix(0.292212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292212,0.000000,0.000000,0.250000,0,0);}
.mcd_c01030{transform:matrix(0.292344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292344,0.000000,0.000000,0.250000,0,0);}
.mbc_c01030{transform:matrix(0.292671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292671,0.000000,0.000000,0.250000,0,0);}
.mcc_c01030{transform:matrix(0.292801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292801,0.000000,0.000000,0.250000,0,0);}
.mbb_c01030{transform:matrix(0.293499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293499,0.000000,0.000000,0.250000,0,0);}
.m26_c01030{transform:matrix(0.293802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293802,0.000000,0.000000,0.250000,0,0);}
.m27_c01030{transform:matrix(0.294096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294096,0.000000,0.000000,0.250000,0,0);}
.m99_c01030{transform:matrix(0.294166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294166,0.000000,0.000000,0.250000,0,0);}
.mb4_c01030{transform:matrix(0.294297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294297,0.000000,0.000000,0.250000,0,0);}
.m3e_c01030{transform:matrix(0.294803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294803,0.000000,0.000000,0.250000,0,0);}
.m8e_c01030{transform:matrix(0.294821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294821,0.000000,0.000000,0.250000,0,0);}
.m60_c01030{transform:matrix(0.295857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295857,0.000000,0.000000,0.250000,0,0);}
.md5_c01030{transform:matrix(0.296839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296839,0.000000,0.000000,0.250000,0,0);}
.m35_c01030{transform:matrix(0.298424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298424,0.000000,0.000000,0.250000,0,0);}
.m73_c01030{transform:matrix(0.299245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299245,0.000000,0.000000,0.250000,0,0);}
.m5_c01030{transform:matrix(0.299346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299346,0.000000,0.000000,0.250000,0,0);}
.m51_c01030{transform:matrix(0.299347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299347,0.000000,0.000000,0.250000,0,0);}
.m5c_c01030{transform:matrix(0.299919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299919,0.000000,0.000000,0.250000,0,0);}
.m3b_c01030{transform:matrix(0.300169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300169,0.000000,0.000000,0.250000,0,0);}
.mb6_c01030{transform:matrix(0.300258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300258,0.000000,0.000000,0.250000,0,0);}
.m72_c01030{transform:matrix(0.300328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300328,0.000000,0.000000,0.250000,0,0);}
.m36_c01030{transform:matrix(0.300353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300353,0.000000,0.000000,0.250000,0,0);}
.ma1_c01030{transform:matrix(0.300630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300630,0.000000,0.000000,0.250000,0,0);}
.m32_c01030{transform:matrix(0.300683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300683,0.000000,0.000000,0.250000,0,0);}
.m1a_c01030{transform:matrix(0.300879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300879,0.000000,0.000000,0.250000,0,0);}
.m8c_c01030{transform:matrix(0.301462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301462,0.000000,0.000000,0.250000,0,0);}
.md2_c01030{transform:matrix(0.301760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301760,0.000000,0.000000,0.250000,0,0);}
.mc3_c01030{transform:matrix(0.302330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302330,0.000000,0.000000,0.250000,0,0);}
.m10_c01030{transform:matrix(0.303214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303214,0.000000,0.000000,0.250000,0,0);}
.m33_c01030{transform:matrix(0.303291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303291,0.000000,0.000000,0.250000,0,0);}
.m92_c01030{transform:matrix(0.303412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303412,0.000000,0.000000,0.250000,0,0);}
.mc7_c01030{transform:matrix(0.303564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303564,0.000000,0.000000,0.250000,0,0);}
.m2c_c01030{transform:matrix(0.303654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303654,0.000000,0.000000,0.250000,0,0);}
.m9_c01030{transform:matrix(0.303797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303797,0.000000,0.000000,0.250000,0,0);}
.m91_c01030{transform:matrix(0.303819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303819,0.000000,0.000000,0.250000,0,0);}
.m2f_c01030{transform:matrix(0.304807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304807,0.000000,0.000000,0.250000,0,0);}
.m9f_c01030{transform:matrix(0.304888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304888,0.000000,0.000000,0.250000,0,0);}
.m12_c01030{transform:matrix(0.304997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304997,0.000000,0.000000,0.250000,0,0);}
.mb9_c01030{transform:matrix(0.305008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305008,0.000000,0.000000,0.250000,0,0);}
.mca_c01030{transform:matrix(0.305506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305506,0.000000,0.000000,0.250000,0,0);}
.m84_c01030{transform:matrix(0.305562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305562,0.000000,0.000000,0.250000,0,0);}
.mab_c01030{transform:matrix(0.305580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305580,0.000000,0.000000,0.250000,0,0);}
.mb_c01030{transform:matrix(0.305919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305919,0.000000,0.000000,0.250000,0,0);}
.m7d_c01030{transform:matrix(0.305928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305928,0.000000,0.000000,0.250000,0,0);}
.maa_c01030{transform:matrix(0.306183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306183,0.000000,0.000000,0.250000,0,0);}
.m81_c01030{transform:matrix(0.306196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306196,0.000000,0.000000,0.250000,0,0);}
.m31_c01030{transform:matrix(0.306636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306636,0.000000,0.000000,0.250000,0,0);}
.m78_c01030{transform:matrix(0.307638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307638,0.000000,0.000000,0.250000,0,0);}
.m17_c01030{transform:matrix(0.307649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307649,0.000000,0.000000,0.250000,0,0);}
.m2a_c01030{transform:matrix(0.308126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308126,0.000000,0.000000,0.250000,0,0);}
.m59_c01030{transform:matrix(0.308239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308239,0.000000,0.000000,0.250000,0,0);}
.m5a_c01030{transform:matrix(0.308283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308283,0.000000,0.000000,0.250000,0,0);}
.mae_c01030{transform:matrix(0.308989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308989,0.000000,0.000000,0.250000,0,0);}
.mcb_c01030{transform:matrix(0.309061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309061,0.000000,0.000000,0.250000,0,0);}
.mc_c01030{transform:matrix(0.310109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310109,0.000000,0.000000,0.250000,0,0);}
.ma9_c01030{transform:matrix(0.310126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310126,0.000000,0.000000,0.250000,0,0);}
.mb8_c01030{transform:matrix(0.310185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310185,0.000000,0.000000,0.250000,0,0);}
.m6a_c01030{transform:matrix(0.310572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310572,0.000000,0.000000,0.250000,0,0);}
.m4d_c01030{transform:matrix(0.310677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310677,0.000000,0.000000,0.250000,0,0);}
.m82_c01030{transform:matrix(0.310793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310793,0.000000,0.000000,0.250000,0,0);}
.m77_c01030{transform:matrix(0.311150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311150,0.000000,0.000000,0.250000,0,0);}
.mb7_c01030{transform:matrix(0.311455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311455,0.000000,0.000000,0.250000,0,0);}
.mce_c01030{transform:matrix(0.311653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311653,0.000000,0.000000,0.250000,0,0);}
.m28_c01030{transform:matrix(0.312209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312209,0.000000,0.000000,0.250000,0,0);}
.m46_c01030{transform:matrix(0.312305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312305,0.000000,0.000000,0.250000,0,0);}
.m42_c01030{transform:matrix(0.312370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312370,0.000000,0.000000,0.250000,0,0);}
.m3a_c01030{transform:matrix(0.312518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312518,0.000000,0.000000,0.250000,0,0);}
.m48_c01030{transform:matrix(0.312685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312685,0.000000,0.000000,0.250000,0,0);}
.m6f_c01030{transform:matrix(0.313385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313385,0.000000,0.000000,0.250000,0,0);}
.m19_c01030{transform:matrix(0.313523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313523,0.000000,0.000000,0.250000,0,0);}
.m85_c01030{transform:matrix(0.313530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313530,0.000000,0.000000,0.250000,0,0);}
.mc9_c01030{transform:matrix(0.313977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313977,0.000000,0.000000,0.250000,0,0);}
.mc5_c01030{transform:matrix(0.314070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314070,0.000000,0.000000,0.250000,0,0);}
.m83_c01030{transform:matrix(0.314126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314126,0.000000,0.000000,0.250000,0,0);}
.m67_c01030{transform:matrix(0.314725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314725,0.000000,0.000000,0.250000,0,0);}
.m94_c01030{transform:matrix(0.315088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315088,0.000000,0.000000,0.250000,0,0);}
.md4_c01030{transform:matrix(0.315283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315283,0.000000,0.000000,0.250000,0,0);}
.m47_c01030{transform:matrix(0.315605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315605,0.000000,0.000000,0.250000,0,0);}
.m3c_c01030{transform:matrix(0.315676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315676,0.000000,0.000000,0.250000,0,0);}
.m87_c01030{transform:matrix(0.315830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315830,0.000000,0.000000,0.250000,0,0);}
.m22_c01030{transform:matrix(0.316324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316324,0.000000,0.000000,0.250000,0,0);}
.m4c_c01030{transform:matrix(0.318796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318796,0.000000,0.000000,0.250000,0,0);}
.m6_c01030{transform:matrix(0.318868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318868,0.000000,0.000000,0.250000,0,0);}
.m5e_c01030{transform:matrix(0.318882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318882,0.000000,0.000000,0.250000,0,0);}
.mad_c01030{transform:matrix(0.318901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318901,0.000000,0.000000,0.250000,0,0);}
.m52_c01030{transform:matrix(0.319177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319177,0.000000,0.000000,0.250000,0,0);}
.mc4_c01030{transform:matrix(0.320138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320138,0.000000,0.000000,0.250000,0,0);}
.m3d_c01030{transform:matrix(0.321655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321655,0.000000,0.000000,0.250000,0,0);}
.m93_c01030{transform:matrix(0.322419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322419,0.000000,0.000000,0.250000,0,0);}
.m53_c01030{transform:matrix(0.324194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324194,0.000000,0.000000,0.250000,0,0);}
.m29_c01030{transform:matrix(0.325170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325170,0.000000,0.000000,0.250000,0,0);}
.m4b_c01030{transform:matrix(0.325343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325343,0.000000,0.000000,0.250000,0,0);}
.m9a_c01030{transform:matrix(0.325909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325909,0.000000,0.000000,0.250000,0,0);}
.m40_c01030{transform:matrix(0.325997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325997,0.000000,0.000000,0.250000,0,0);}
.m5b_c01030{transform:matrix(0.327454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327454,0.000000,0.000000,0.250000,0,0);}
.m8_c01030{transform:matrix(0.327469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327469,0.000000,0.000000,0.250000,0,0);}
.ma8_c01030{transform:matrix(0.327940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327940,0.000000,0.000000,0.250000,0,0);}
.mcf_c01030{transform:matrix(0.328395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328395,0.000000,0.000000,0.250000,0,0);}
.m65_c01030{transform:matrix(0.328704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328704,0.000000,0.000000,0.250000,0,0);}
.m88_c01030{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);}
.m9b_c01030{transform:matrix(0.329473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329473,0.000000,0.000000,0.250000,0,0);}
.m62_c01030{transform:matrix(0.330222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330222,0.000000,0.000000,0.250000,0,0);}
.m3_c01030{transform:matrix(0.330864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330864,0.000000,0.000000,0.250000,0,0);}
.md1_c01030{transform:matrix(0.331593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331593,0.000000,0.000000,0.250000,0,0);}
.maf_c01030{transform:matrix(0.332349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332349,0.000000,0.000000,0.250000,0,0);}
.md7_c01030{transform:matrix(0.332952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332952,0.000000,0.000000,0.250000,0,0);}
.mc6_c01030{transform:matrix(0.333287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333287,0.000000,0.000000,0.250000,0,0);}
.mb1_c01030{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);}
.m75_c01030{transform:matrix(0.336892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336892,0.000000,0.000000,0.250000,0,0);}
.m71_c01030{transform:matrix(0.337006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337006,0.000000,0.000000,0.250000,0,0);}
.m25_c01030{transform:matrix(0.337555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337555,0.000000,0.000000,0.250000,0,0);}
.m9c_c01030{transform:matrix(0.338588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338588,0.000000,0.000000,0.250000,0,0);}
.mc0_c01030{transform:matrix(0.338787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338787,0.000000,0.000000,0.250000,0,0);}
.m56_c01030{transform:matrix(0.339793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339793,0.000000,0.000000,0.250000,0,0);}
.mc2_c01030{transform:matrix(0.340619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340619,0.000000,0.000000,0.250000,0,0);}
.m86_c01030{transform:matrix(0.340673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340673,0.000000,0.000000,0.250000,0,0);}
.m95_c01030{transform:matrix(0.341277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341277,0.000000,0.000000,0.250000,0,0);}
.m70_c01030{transform:matrix(0.341746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341746,0.000000,0.000000,0.250000,0,0);}
.m18_c01030{transform:matrix(0.341839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341839,0.000000,0.000000,0.250000,0,0);}
.m66_c01030{transform:matrix(0.343713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343713,0.000000,0.000000,0.250000,0,0);}
.mb0_c01030{transform:matrix(0.344194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344194,0.000000,0.000000,0.250000,0,0);}
.m1b_c01030{transform:matrix(0.344398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344398,0.000000,0.000000,0.250000,0,0);}
.m64_c01030{transform:matrix(0.346127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346127,0.000000,0.000000,0.250000,0,0);}
.ma7_c01030{transform:matrix(0.347263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347263,0.000000,0.000000,0.250000,0,0);}
.m2_c01030{transform:matrix(0.347412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347412,0.000000,0.000000,0.250000,0,0);}
.mbf_c01030{transform:matrix(0.348169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348169,0.000000,0.000000,0.250000,0,0);}
.m16_c01030{transform:matrix(0.350940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350940,0.000000,0.000000,0.250000,0,0);}
.m5d_c01030{transform:matrix(0.352493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352493,0.000000,0.000000,0.250000,0,0);}
.m7a_c01030{transform:matrix(0.352785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352785,0.000000,0.000000,0.250000,0,0);}
.m43_c01030{transform:matrix(0.355876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355876,0.000000,0.000000,0.250000,0,0);}
.ma4_c01030{transform:matrix(0.356446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356446,0.000000,0.000000,0.250000,0,0);}
.ma6_c01030{transform:matrix(0.358064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358064,0.000000,0.000000,0.250000,0,0);}
.m98_c01030{transform:matrix(0.358558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358558,0.000000,0.000000,0.250000,0,0);}
.m76_c01030{transform:matrix(0.358836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358836,0.000000,0.000000,0.250000,0,0);}
.m6c_c01030{transform:matrix(0.360597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360597,0.000000,0.000000,0.250000,0,0);}
.md0_c01030{transform:matrix(0.361526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361526,0.000000,0.000000,0.250000,0,0);}
.m4e_c01030{transform:matrix(0.361808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361808,0.000000,0.000000,0.250000,0,0);}
.m8f_c01030{transform:matrix(0.371283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371283,0.000000,0.000000,0.250000,0,0);}
.m97_c01030{transform:matrix(0.372196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372196,0.000000,0.000000,0.250000,0,0);}
.m2b_c01030{transform:matrix(0.385035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385035,0.000000,0.000000,0.250000,0,0);}
.m1_c01030{transform:matrix(0.390139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390139,0.000000,0.000000,0.250000,0,0);}
.m6d_c01030{transform:matrix(0.392114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392114,0.000000,0.000000,0.250000,0,0);}
.m30_c01030{transform:matrix(0.396432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396432,0.000000,0.000000,0.250000,0,0);}
.m24_c01030{transform:matrix(0.402725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402725,0.000000,0.000000,0.250000,0,0);}
.m7c_c01030{transform:matrix(0.403918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403918,0.000000,0.000000,0.250000,0,0);}
.m20_c01030{transform:matrix(0.427895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427895,0.000000,0.000000,0.250000,0,0);}
.m58_c01030{transform:matrix(0.430699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430699,0.000000,0.000000,0.250000,0,0);}
.m4a_c01030{transform:matrix(0.431924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431924,0.000000,0.000000,0.250000,0,0);}
.v0_c01030{vertical-align:0.000000px;}
.ls5_c01030{letter-spacing:-2.626477px;}
.ls3_c01030{letter-spacing:0.000000px;}
.ls7_c01030{letter-spacing:1.043087px;}
.ls9_c01030{letter-spacing:1.080608px;}
.ls14_c01030{letter-spacing:1.320743px;}
.ls11_c01030{letter-spacing:1.515852px;}
.lsb_c01030{letter-spacing:1.732500px;}
.ls4_c01030{letter-spacing:1.793509px;}
.lsf_c01030{letter-spacing:3.306610px;}
.lse_c01030{letter-spacing:3.316500px;}
.ls12_c01030{letter-spacing:3.603610px;}
.lsc_c01030{letter-spacing:3.722400px;}
.ls2_c01030{letter-spacing:3.752110px;}
.lsd_c01030{letter-spacing:3.781810px;}
.lsa_c01030{letter-spacing:3.920400px;}
.ls1_c01030{letter-spacing:4.019400px;}
.ls8_c01030{letter-spacing:4.435200px;}
.ls0_c01030{letter-spacing:10.205833px;}
.ls6_c01030{letter-spacing:49.896198px;}
.ls13_c01030{letter-spacing:52.747398px;}
.ls10_c01030{letter-spacing:61.300998px;}
.sc__c01030{text-shadow:none;}
.sc0_c01030{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01030{-webkit-text-stroke:0px transparent;}
.sc0_c01030{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01030{word-spacing:0.000000px;}
._1_c01030{width:15.983264px;}
._0_c01030{width:26.942515px;}
.fc0_c01030{color:transparent;}
.fs12_c01030{font-size:22.176000px;}
.fs13_c01030{font-size:27.720000px;}
.fs7_c01030{font-size:34.650000px;}
.fse_c01030{font-size:39.204000px;}
.fsf_c01030{font-size:39.600000px;}
.fs4_c01030{font-size:49.896198px;}
.fs11_c01030{font-size:52.747398px;}
.fsd_c01030{font-size:61.300998px;}
.fsc_c01030{font-size:66.132198px;}
.fsb_c01030{font-size:66.330000px;}
.fs9_c01030{font-size:70.884000px;}
.fs10_c01030{font-size:72.072198px;}
.fs8_c01030{font-size:72.864000px;}
.fs2_c01030{font-size:74.448000px;}
.fs1_c01030{font-size:75.042198px;}
.fsa_c01030{font-size:75.636198px;}
.fs3_c01030{font-size:76.032198px;}
.fs6_c01030{font-size:78.408000px;}
.fs0_c01030{font-size:80.388000px;}
.fs5_c01030{font-size:88.704000px;}
.y0_c01030{bottom:0.000000px;}
.y25_c01030{bottom:26.641935px;}
.y24_c01030{bottom:64.058985px;}
.y1_c01030{bottom:76.500000px;}
.y23_c01030{bottom:124.295535px;}
.y22_c01030{bottom:156.010185px;}
.y21_c01030{bottom:188.803935px;}
.y20_c01030{bottom:214.108335px;}
.y1d_c01030{bottom:220.879935px;}
.y1f_c01030{bottom:221.236335px;}
.y1c_c01030{bottom:252.950985px;}
.y1e_c01030{bottom:253.312335px;}
.y1b_c01030{bottom:284.675535px;}
.y1a_c01030{bottom:316.395135px;}
.y19_c01030{bottom:347.396985px;}
.y18_c01030{bottom:367.716735px;}
.y17_c01030{bottom:379.829385px;}
.y16_c01030{bottom:442.199385px;}
.y15_c01030{bottom:450.396585px;}
.y14_c01030{bottom:474.636735px;}
.y13_c01030{bottom:506.356335px;}
.y12_c01030{bottom:538.788735px;}
.y10_c01030{bottom:570.151935px;}
.y11_c01030{bottom:570.859785px;}
.yf_c01030{bottom:602.222985px;}
.ye_c01030{bottom:633.229785px;}
.yc_c01030{bottom:664.954335px;}
.yd_c01030{bottom:670.295385px;}
.yb_c01030{bottom:696.317535px;}
.ya_c01030{bottom:727.680735px;}
.y9_c01030{bottom:759.043935px;}
.y8_c01030{bottom:790.407135px;}
.y7_c01030{bottom:821.413935px;}
.y6_c01030{bottom:853.489935px;}
.y5_c01030{bottom:876.650985px;}
.y4_c01030{bottom:885.209535px;}
.y3_c01030{bottom:916.924185px;}
.y2_c01030{bottom:1053.425385px;}
.h14_c01030{height:23.128875px;}
.h15_c01030{height:28.911094px;}
.h6_c01030{height:33.230868px;}
.h13_c01030{height:35.129767px;}
.h9_c01030{height:36.138867px;}
.h10_c01030{height:38.476582px;}
.hf_c01030{height:40.826465px;}
.h11_c01030{height:41.301563px;}
.hd_c01030{height:65.099268px;}
.he_c01030{height:68.973816px;}
.hb_c01030{height:69.568770px;}
.ha_c01030{height:71.512031px;}
.h4_c01030{height:73.066641px;}
.h3_c01030{height:73.649813px;}
.hc_c01030{height:74.232792px;}
.h12_c01030{height:75.169050px;}
.h8_c01030{height:76.953164px;}
.h2_c01030{height:78.896426px;}
.h5_c01030{height:79.299207px;}
.h7_c01030{height:87.058125px;}
.h1_c01030{height:1110.000000px;}
.h0_c01030{height:1263.000000px;}
.w1_c01030{width:775.500000px;}
.w0_c01030{width:892.500000px;}
.x0_c01030{left:0.000000px;}
.x1_c01030{left:58.500000px;}
.x30_c01030{left:85.844535px;}
.x3_c01030{left:87.047385px;}
.x5e_c01030{left:88.121535px;}
.x6a_c01030{left:89.710485px;}
.x65_c01030{left:100.333185px;}
.x56_c01030{left:109.188735px;}
.x4_c01030{left:120.182685px;}
.x31_c01030{left:131.275635px;}
.x38_c01030{left:132.414135px;}
.x2a_c01030{left:142.482435px;}
.x6f_c01030{left:152.842785px;}
.x3f_c01030{left:154.075335px;}
.x32_c01030{left:165.514785px;}
.x2b_c01030{left:175.469235px;}
.xd_c01030{left:176.563185px;}
.x5_c01030{left:186.834435px;}
.x39_c01030{left:188.611485px;}
.xe_c01030{left:196.868085px;}
.x72_c01030{left:198.254085px;}
.x22_c01030{left:199.511385px;}
.x18_c01030{left:205.094985px;}
.x5f_c01030{left:208.436235px;}
.x66_c01030{left:209.673735px;}
.x4c_c01030{left:219.603435px;}
.x73_c01030{left:220.756785px;}
.x6b_c01030{left:231.730935px;}
.x79_c01030{left:232.839735px;}
.x19_c01030{left:241.789335px;}
.x43_c01030{left:253.055535px;}
.x3a_c01030{left:254.307885px;}
.x40_c01030{left:264.445485px;}
.x5a_c01030{left:274.726635px;}
.xf_c01030{left:275.998785px;}
.x23_c01030{left:286.265085px;}
.x1a_c01030{left:287.319435px;}
.x7a_c01030{left:288.754935px;}
.x33_c01030{left:297.719385px;}
.x4d_c01030{left:298.768785px;}
.x6_c01030{left:307.886685px;}
.x44_c01030{left:310.059735px;}
.x1b_c01030{left:320.855685px;}
.x4e_c01030{left:330.339885px;}
.x7_c01030{left:331.824885px;}
.x34_c01030{left:343.586085px;}
.x54_c01030{left:352.421835px;}
.x3b_c01030{left:353.644485px;}
.x60_c01030{left:354.664185px;}
.x8_c01030{left:364.341435px;}
.x69_c01030{left:365.767035px;}
.x45_c01030{left:373.132635px;}
.x6d_c01030{left:376.845135px;}
.x10_c01030{left:385.557135px;}
.x1c_c01030{left:387.155985px;}
.x5b_c01030{left:396.961935px;}
.x2c_c01030{left:398.555835px;}
.x74_c01030{left:400.303185px;}
.x61_c01030{left:408.371685px;}
.x3c_c01030{left:409.891335px;}
.x24_c01030{left:420.929835px;}
.x4f_c01030{left:431.067435px;}
.x50_c01030{left:440.809035px;}
.x3d_c01030{left:442.041585px;}
.x58_c01030{left:443.120685px;}
.x25_c01030{left:452.223735px;}
.x70_c01030{left:453.852285px;}
.x11_c01030{left:455.188785px;}
.x35_c01030{left:465.128385px;}
.x59_c01030{left:473.612685px;}
.x9_c01030{left:475.553085px;}
.x6e_c01030{left:477.008385px;}
.x51_c01030{left:485.725335px;}
.x26_c01030{left:497.288535px;}
.x78_c01030{left:498.580485px;}
.x46_c01030{left:508.138935px;}
.x71_c01030{left:509.411085px;}
.xa_c01030{left:510.425835px;}
.x41_c01030{left:519.043785px;}
.x67_c01030{left:520.405035px;}
.x12_c01030{left:529.206135px;}
.x1d_c01030{left:531.047535px;}
.x47_c01030{left:541.897935px;}
.x55_c01030{left:551.847435px;}
.x36_c01030{left:553.060185px;}
.x52_c01030{left:562.272135px;}
.x13_c01030{left:564.192735px;}
.x1e_c01030{left:574.166985px;}
.x5c_c01030{left:576.077685px;}
.x27_c01030{left:585.997485px;}
.x2d_c01030{left:595.501485px;}
.x62_c01030{left:597.337935px;}
.x42_c01030{left:607.411185px;}
.x48_c01030{left:609.505035px;}
.x2e_c01030{left:618.078435px;}
.x14_c01030{left:619.083285px;}
.x1f_c01030{left:629.908935px;}
.x49_c01030{left:631.260285px;}
.x37_c01030{left:633.913485px;}
.x68_c01030{left:640.046535px;}
.x28_c01030{left:650.862285px;}
.x15_c01030{left:651.867135px;}
.x7b_c01030{left:653.396685px;}
.x20_c01030{left:661.895835px;}
.xb_c01030{left:673.533285px;}
.x57_c01030{left:676.047885px;}
.x29_c01030{left:684.428235px;}
.x63_c01030{left:686.185485px;}
.x21_c01030{left:688.333785px;}
.x2_c01030{left:695.060835px;}
.x4a_c01030{left:696.456735px;}
.x7e_c01030{left:702.342285px;}
.x16_c01030{left:706.881435px;}
.x3e_c01030{left:708.831735px;}
.x7d_c01030{left:715.910235px;}
.x53_c01030{left:717.370485px;}
.x75_c01030{left:718.850535px;}
.x64_c01030{left:719.865285px;}
.xc_c01030{left:729.299985px;}
.x6c_c01030{left:730.631535px;}
.x17_c01030{left:738.398085px;}
.x77_c01030{left:739.868235px;}
.x5d_c01030{left:741.640335px;}
.x76_c01030{left:747.006135px;}
.x4b_c01030{left:750.515685px;}
.x2f_c01030{left:752.485785px;}
.x7c_c01030{left:774.612285px;}
@media print{
.v0_c01030{vertical-align:0.000000pt;}
.ls5_c01030{letter-spacing:-2.334646pt;}
.ls3_c01030{letter-spacing:0.000000pt;}
.ls7_c01030{letter-spacing:0.927188pt;}
.ls9_c01030{letter-spacing:0.960540pt;}
.ls14_c01030{letter-spacing:1.173993pt;}
.ls11_c01030{letter-spacing:1.347424pt;}
.lsb_c01030{letter-spacing:1.540000pt;}
.ls4_c01030{letter-spacing:1.594230pt;}
.lsf_c01030{letter-spacing:2.939209pt;}
.lse_c01030{letter-spacing:2.948000pt;}
.ls12_c01030{letter-spacing:3.203209pt;}
.lsc_c01030{letter-spacing:3.308800pt;}
.ls2_c01030{letter-spacing:3.335209pt;}
.lsd_c01030{letter-spacing:3.361609pt;}
.lsa_c01030{letter-spacing:3.484800pt;}
.ls1_c01030{letter-spacing:3.572800pt;}
.ls8_c01030{letter-spacing:3.942400pt;}
.ls0_c01030{letter-spacing:9.071852pt;}
.ls6_c01030{letter-spacing:44.352176pt;}
.ls13_c01030{letter-spacing:46.886576pt;}
.ls10_c01030{letter-spacing:54.489776pt;}
.ws0_c01030{word-spacing:0.000000pt;}
._1_c01030{width:14.207346pt;}
._0_c01030{width:23.948902pt;}
.fs12_c01030{font-size:19.712000pt;}
.fs13_c01030{font-size:24.640000pt;}
.fs7_c01030{font-size:30.800000pt;}
.fse_c01030{font-size:34.848000pt;}
.fsf_c01030{font-size:35.200000pt;}
.fs4_c01030{font-size:44.352176pt;}
.fs11_c01030{font-size:46.886576pt;}
.fsd_c01030{font-size:54.489776pt;}
.fsc_c01030{font-size:58.784176pt;}
.fsb_c01030{font-size:58.960000pt;}
.fs9_c01030{font-size:63.008000pt;}
.fs10_c01030{font-size:64.064176pt;}
.fs8_c01030{font-size:64.768000pt;}
.fs2_c01030{font-size:66.176000pt;}
.fs1_c01030{font-size:66.704176pt;}
.fsa_c01030{font-size:67.232176pt;}
.fs3_c01030{font-size:67.584176pt;}
.fs6_c01030{font-size:69.696000pt;}
.fs0_c01030{font-size:71.456000pt;}
.fs5_c01030{font-size:78.848000pt;}
.y0_c01030{bottom:0.000000pt;}
.y25_c01030{bottom:23.681720pt;}
.y24_c01030{bottom:56.941320pt;}
.y1_c01030{bottom:68.000000pt;}
.y23_c01030{bottom:110.484920pt;}
.y22_c01030{bottom:138.675720pt;}
.y21_c01030{bottom:167.825720pt;}
.y20_c01030{bottom:190.318520pt;}
.y1d_c01030{bottom:196.337720pt;}
.y1f_c01030{bottom:196.654520pt;}
.y1c_c01030{bottom:224.845320pt;}
.y1e_c01030{bottom:225.166520pt;}
.y1b_c01030{bottom:253.044920pt;}
.y1a_c01030{bottom:281.240120pt;}
.y19_c01030{bottom:308.797320pt;}
.y18_c01030{bottom:326.859320pt;}
.y17_c01030{bottom:337.626120pt;}
.y16_c01030{bottom:393.066120pt;}
.y15_c01030{bottom:400.352520pt;}
.y14_c01030{bottom:421.899320pt;}
.y13_c01030{bottom:450.094520pt;}
.y12_c01030{bottom:478.923320pt;}
.y10_c01030{bottom:506.801720pt;}
.y11_c01030{bottom:507.430920pt;}
.yf_c01030{bottom:535.309320pt;}
.ye_c01030{bottom:562.870920pt;}
.yc_c01030{bottom:591.070520pt;}
.yd_c01030{bottom:595.818120pt;}
.yb_c01030{bottom:618.948920pt;}
.ya_c01030{bottom:646.827320pt;}
.y9_c01030{bottom:674.705720pt;}
.y8_c01030{bottom:702.584120pt;}
.y7_c01030{bottom:730.145720pt;}
.y6_c01030{bottom:758.657720pt;}
.y5_c01030{bottom:779.245320pt;}
.y4_c01030{bottom:786.852920pt;}
.y3_c01030{bottom:815.043720pt;}
.y2_c01030{bottom:936.378120pt;}
.h14_c01030{height:20.559000pt;}
.h15_c01030{height:25.698750pt;}
.h6_c01030{height:29.538549pt;}
.h13_c01030{height:31.226460pt;}
.h9_c01030{height:32.123438pt;}
.h10_c01030{height:34.201406pt;}
.hf_c01030{height:36.290191pt;}
.h11_c01030{height:36.712500pt;}
.hd_c01030{height:57.866016pt;}
.he_c01030{height:61.310059pt;}
.hb_c01030{height:61.838906pt;}
.ha_c01030{height:63.566250pt;}
.h4_c01030{height:64.948125pt;}
.h3_c01030{height:65.466501pt;}
.hc_c01030{height:65.984704pt;}
.h12_c01030{height:66.816934pt;}
.h8_c01030{height:68.402813pt;}
.h2_c01030{height:70.130156pt;}
.h5_c01030{height:70.488184pt;}
.h7_c01030{height:77.385000pt;}
.h1_c01030{height:986.666667pt;}
.h0_c01030{height:1122.666667pt;}
.w1_c01030{width:689.333333pt;}
.w0_c01030{width:793.333333pt;}
.x0_c01030{left:0.000000pt;}
.x1_c01030{left:52.000000pt;}
.x30_c01030{left:76.306253pt;}
.x3_c01030{left:77.375453pt;}
.x5e_c01030{left:78.330253pt;}
.x6a_c01030{left:79.742653pt;}
.x65_c01030{left:89.185053pt;}
.x56_c01030{left:97.056653pt;}
.x4_c01030{left:106.829053pt;}
.x31_c01030{left:116.689453pt;}
.x38_c01030{left:117.701453pt;}
.x2a_c01030{left:126.651053pt;}
.x6f_c01030{left:135.860253pt;}
.x3f_c01030{left:136.955853pt;}
.x32_c01030{left:147.124253pt;}
.x2b_c01030{left:155.972653pt;}
.xd_c01030{left:156.945053pt;}
.x5_c01030{left:166.075053pt;}
.x39_c01030{left:167.654653pt;}
.xe_c01030{left:174.993853pt;}
.x72_c01030{left:176.225853pt;}
.x22_c01030{left:177.343453pt;}
.x18_c01030{left:182.306653pt;}
.x5f_c01030{left:185.276653pt;}
.x66_c01030{left:186.376653pt;}
.x4c_c01030{left:195.203053pt;}
.x73_c01030{left:196.228253pt;}
.x6b_c01030{left:205.983053pt;}
.x79_c01030{left:206.968653pt;}
.x19_c01030{left:214.923853pt;}
.x43_c01030{left:224.938253pt;}
.x3a_c01030{left:226.051453pt;}
.x40_c01030{left:235.062653pt;}
.x5a_c01030{left:244.201453pt;}
.xf_c01030{left:245.332253pt;}
.x23_c01030{left:254.457853pt;}
.x1a_c01030{left:255.395053pt;}
.x7a_c01030{left:256.671053pt;}
.x33_c01030{left:264.639453pt;}
.x4d_c01030{left:265.572253pt;}
.x6_c01030{left:273.677053pt;}
.x44_c01030{left:275.608653pt;}
.x1b_c01030{left:285.205053pt;}
.x4e_c01030{left:293.635453pt;}
.x7_c01030{left:294.955453pt;}
.x34_c01030{left:305.409853pt;}
.x54_c01030{left:313.263853pt;}
.x3b_c01030{left:314.350653pt;}
.x60_c01030{left:315.257053pt;}
.x8_c01030{left:323.859053pt;}
.x69_c01030{left:325.126253pt;}
.x45_c01030{left:331.673453pt;}
.x6d_c01030{left:334.973453pt;}
.x10_c01030{left:342.717453pt;}
.x1c_c01030{left:344.138653pt;}
.x5b_c01030{left:352.855053pt;}
.x2c_c01030{left:354.271853pt;}
.x74_c01030{left:355.825053pt;}
.x61_c01030{left:362.997053pt;}
.x3c_c01030{left:364.347853pt;}
.x24_c01030{left:374.159853pt;}
.x4f_c01030{left:383.171053pt;}
.x50_c01030{left:391.830253pt;}
.x3d_c01030{left:392.925853pt;}
.x58_c01030{left:393.885053pt;}
.x25_c01030{left:401.976653pt;}
.x70_c01030{left:403.424253pt;}
.x11_c01030{left:404.612253pt;}
.x35_c01030{left:413.447453pt;}
.x59_c01030{left:420.989053pt;}
.x9_c01030{left:422.713853pt;}
.x6e_c01030{left:424.007453pt;}
.x51_c01030{left:431.755853pt;}
.x26_c01030{left:442.034253pt;}
.x78_c01030{left:443.182653pt;}
.x46_c01030{left:451.679053pt;}
.x71_c01030{left:452.809853pt;}
.xa_c01030{left:453.711853pt;}
.x41_c01030{left:461.372253pt;}
.x67_c01030{left:462.582253pt;}
.x12_c01030{left:470.405453pt;}
.x1d_c01030{left:472.042253pt;}
.x47_c01030{left:481.687053pt;}
.x55_c01030{left:490.531053pt;}
.x36_c01030{left:491.609053pt;}
.x52_c01030{left:499.797453pt;}
.x13_c01030{left:501.504653pt;}
.x1e_c01030{left:510.370653pt;}
.x5c_c01030{left:512.069053pt;}
.x27_c01030{left:520.886653pt;}
.x2d_c01030{left:529.334653pt;}
.x62_c01030{left:530.967053pt;}
.x42_c01030{left:539.921053pt;}
.x48_c01030{left:541.782253pt;}
.x2e_c01030{left:549.403053pt;}
.x14_c01030{left:550.296253pt;}
.x1f_c01030{left:559.919053pt;}
.x49_c01030{left:561.120253pt;}
.x37_c01030{left:563.478653pt;}
.x68_c01030{left:568.930253pt;}
.x28_c01030{left:578.544253pt;}
.x15_c01030{left:579.437453pt;}
.x7b_c01030{left:580.797053pt;}
.x20_c01030{left:588.351853pt;}
.xb_c01030{left:598.696253pt;}
.x57_c01030{left:600.931453pt;}
.x29_c01030{left:608.380653pt;}
.x63_c01030{left:609.942653pt;}
.x21_c01030{left:611.852253pt;}
.x2_c01030{left:617.831853pt;}
.x4a_c01030{left:619.072653pt;}
.x7e_c01030{left:624.304253pt;}
.x16_c01030{left:628.339053pt;}
.x3e_c01030{left:630.072653pt;}
.x7d_c01030{left:636.364653pt;}
.x53_c01030{left:637.662653pt;}
.x75_c01030{left:638.978253pt;}
.x64_c01030{left:639.880253pt;}
.xc_c01030{left:648.266653pt;}
.x6c_c01030{left:649.450253pt;}
.x17_c01030{left:656.353853pt;}
.x77_c01030{left:657.660653pt;}
.x5d_c01030{left:659.235853pt;}
.x76_c01030{left:664.005453pt;}
.x4b_c01030{left:667.125053pt;}
.x2f_c01030{left:668.876253pt;}
.x7c_c01030{left:688.544253pt;}
}





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

.ir_c01031:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01031{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01031;src:url('chunks/assets/font_9d587152bfb755c12082de89.woff2')format("woff");}.ff1_c01031{font-family:ff1_c01031;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01031;src:url('chunks/assets/font_a68806377dda3896ee41b6db.woff2')format("woff");}.ff2_c01031{font-family:ff2_c01031;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01031;src:url('chunks/assets/font_523ef20b26f8585a01eafbf3.woff2')format("woff");}.ff3_c01031{font-family:ff3_c01031;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01031;src:url('chunks/assets/font_ba29ce8632d4ae41cd009e39.woff2')format("woff");}.ff4_c01031{font-family:ff4_c01031;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mb4_c01031{transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);}
.mb3_c01031{transform:matrix(0.139844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139844,0.000000,0.000000,0.250000,0,0);}
.m75_c01031{transform:matrix(0.150656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150656,0.000000,0.000000,0.250000,0,0);}
.m87_c01031{transform:matrix(0.157986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157986,0.000000,0.000000,0.250000,0,0);}
.m88_c01031{transform:matrix(0.161459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161459,0.000000,0.000000,0.250000,0,0);}
.m8a_c01031{transform:matrix(0.173296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173296,0.000000,0.000000,0.250000,0,0);}
.mb5_c01031{transform:matrix(0.176786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176786,0.000000,0.000000,0.250000,0,0);}
.m4c_c01031{transform:matrix(0.182926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182926,0.000000,0.000000,0.250000,0,0);}
.mb9_c01031{transform:matrix(0.188334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188334,0.000000,0.000000,0.250000,0,0);}
.m32_c01031{transform:matrix(0.209773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209773,0.000000,0.000000,0.250000,0,0);}
.m26_c01031{transform:matrix(0.227723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227723,0.000000,0.000000,0.250000,0,0);}
.m1_c01031{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m86_c01031{transform:matrix(0.252205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252205,0.000000,0.000000,0.250000,0,0);}
.m51_c01031{transform:matrix(0.253705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253705,0.000000,0.000000,0.250000,0,0);}
.m4e_c01031{transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);}
.m9b_c01031{transform:matrix(0.254158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254158,0.000000,0.000000,0.250000,0,0);}
.m48_c01031{transform:matrix(0.255544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255544,0.000000,0.000000,0.250000,0,0);}
.m9_c01031{transform:matrix(0.258321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258321,0.000000,0.000000,0.250000,0,0);}
.m30_c01031{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m90_c01031{transform:matrix(0.259554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259554,0.000000,0.000000,0.250000,0,0);}
.ma_c01031{transform:matrix(0.259665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259665,0.000000,0.000000,0.250000,0,0);}
.m36_c01031{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m34_c01031{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.mad_c01031{transform:matrix(0.262223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262223,0.000000,0.000000,0.250000,0,0);}
.m3_c01031{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m1a_c01031{transform:matrix(0.263622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263622,0.000000,0.000000,0.250000,0,0);}
.mac_c01031{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m0_c01031{transform:matrix(0.264480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264480,0.000000,0.000000,0.250000,0,0);}
.m79_c01031{transform:matrix(0.264902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264902,0.000000,0.000000,0.250000,0,0);}
.m64_c01031{transform:matrix(0.265123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265123,0.000000,0.000000,0.250000,0,0);}
.m3a_c01031{transform:matrix(0.265559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265559,0.000000,0.000000,0.250000,0,0);}
.m1e_c01031{transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);}
.m3c_c01031{transform:matrix(0.265648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265648,0.000000,0.000000,0.250000,0,0);}
.m18_c01031{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m43_c01031{transform:matrix(0.266384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266384,0.000000,0.000000,0.250000,0,0);}
.m58_c01031{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.m85_c01031{transform:matrix(0.267052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267052,0.000000,0.000000,0.250000,0,0);}
.m60_c01031{transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);}
.m82_c01031{transform:matrix(0.270444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270444,0.000000,0.000000,0.250000,0,0);}
.m76_c01031{transform:matrix(0.270873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270873,0.000000,0.000000,0.250000,0,0);}
.ma4_c01031{transform:matrix(0.271114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271114,0.000000,0.000000,0.250000,0,0);}
.m25_c01031{transform:matrix(0.271604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271604,0.000000,0.000000,0.250000,0,0);}
.m2b_c01031{transform:matrix(0.271864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271864,0.000000,0.000000,0.250000,0,0);}
.ma7_c01031{transform:matrix(0.273342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273342,0.000000,0.000000,0.250000,0,0);}
.mb7_c01031{transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);}
.m27_c01031{transform:matrix(0.274033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274033,0.000000,0.000000,0.250000,0,0);}
.m9d_c01031{transform:matrix(0.275040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275040,0.000000,0.000000,0.250000,0,0);}
.m57_c01031{transform:matrix(0.275114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275114,0.000000,0.000000,0.250000,0,0);}
.m16_c01031{transform:matrix(0.275208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275208,0.000000,0.000000,0.250000,0,0);}
.m99_c01031{transform:matrix(0.276061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276061,0.000000,0.000000,0.250000,0,0);}
.m69_c01031{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.mb_c01031{transform:matrix(0.277295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277295,0.000000,0.000000,0.250000,0,0);}
.mc_c01031{transform:matrix(0.278237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278237,0.000000,0.000000,0.250000,0,0);}
.md_c01031{transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);}
.m70_c01031{transform:matrix(0.278648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278648,0.000000,0.000000,0.250000,0,0);}
.m6a_c01031{transform:matrix(0.279239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279239,0.000000,0.000000,0.250000,0,0);}
.m4b_c01031{transform:matrix(0.280511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280511,0.000000,0.000000,0.250000,0,0);}
.m7e_c01031{transform:matrix(0.280742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280742,0.000000,0.000000,0.250000,0,0);}
.m6_c01031{transform:matrix(0.281190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281190,0.000000,0.000000,0.250000,0,0);}
.m97_c01031{transform:matrix(0.281472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281472,0.000000,0.000000,0.250000,0,0);}
.m3e_c01031{transform:matrix(0.281749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281749,0.000000,0.000000,0.250000,0,0);}
.m2_c01031{transform:matrix(0.282027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282027,0.000000,0.000000,0.250000,0,0);}
.m95_c01031{transform:matrix(0.282523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282523,0.000000,0.000000,0.250000,0,0);}
.mab_c01031{transform:matrix(0.282539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282539,0.000000,0.000000,0.250000,0,0);}
.m7c_c01031{transform:matrix(0.283490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283490,0.000000,0.000000,0.250000,0,0);}
.m66_c01031{transform:matrix(0.283997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283997,0.000000,0.000000,0.250000,0,0);}
.m5d_c01031{transform:matrix(0.284120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284120,0.000000,0.000000,0.250000,0,0);}
.m6d_c01031{transform:matrix(0.284807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284807,0.000000,0.000000,0.250000,0,0);}
.mba_c01031{transform:matrix(0.284924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284924,0.000000,0.000000,0.250000,0,0);}
.m71_c01031{transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);}
.m73_c01031{transform:matrix(0.285907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285907,0.000000,0.000000,0.250000,0,0);}
.m59_c01031{transform:matrix(0.286015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286015,0.000000,0.000000,0.250000,0,0);}
.m4_c01031{transform:matrix(0.286034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286034,0.000000,0.000000,0.250000,0,0);}
.m1c_c01031{transform:matrix(0.286496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286496,0.000000,0.000000,0.250000,0,0);}
.mb0_c01031{transform:matrix(0.286577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286577,0.000000,0.000000,0.250000,0,0);}
.m50_c01031{transform:matrix(0.286766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286766,0.000000,0.000000,0.250000,0,0);}
.m81_c01031{transform:matrix(0.287416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287416,0.000000,0.000000,0.250000,0,0);}
.m89_c01031{transform:matrix(0.288169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288169,0.000000,0.000000,0.250000,0,0);}
.m17_c01031{transform:matrix(0.288398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288398,0.000000,0.000000,0.250000,0,0);}
.m54_c01031{transform:matrix(0.289940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289940,0.000000,0.000000,0.250000,0,0);}
.m28_c01031{transform:matrix(0.290537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290537,0.000000,0.000000,0.250000,0,0);}
.m2d_c01031{transform:matrix(0.291915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291915,0.000000,0.000000,0.250000,0,0);}
.m80_c01031{transform:matrix(0.292241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292241,0.000000,0.000000,0.250000,0,0);}
.m13_c01031{transform:matrix(0.293095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293095,0.000000,0.000000,0.250000,0,0);}
.m11_c01031{transform:matrix(0.293309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293309,0.000000,0.000000,0.250000,0,0);}
.m49_c01031{transform:matrix(0.293934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293934,0.000000,0.000000,0.250000,0,0);}
.m45_c01031{transform:matrix(0.294223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294223,0.000000,0.000000,0.250000,0,0);}
.me_c01031{transform:matrix(0.294562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294562,0.000000,0.000000,0.250000,0,0);}
.m9a_c01031{transform:matrix(0.294710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294710,0.000000,0.000000,0.250000,0,0);}
.m1d_c01031{transform:matrix(0.294896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294896,0.000000,0.000000,0.250000,0,0);}
.mb6_c01031{transform:matrix(0.295212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295212,0.000000,0.000000,0.250000,0,0);}
.m65_c01031{transform:matrix(0.295851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295851,0.000000,0.000000,0.250000,0,0);}
.m63_c01031{transform:matrix(0.296268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296268,0.000000,0.000000,0.250000,0,0);}
.m5_c01031{transform:matrix(0.296648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296648,0.000000,0.000000,0.250000,0,0);}
.m42_c01031{transform:matrix(0.296985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296985,0.000000,0.000000,0.250000,0,0);}
.m94_c01031{transform:matrix(0.297100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297100,0.000000,0.000000,0.250000,0,0);}
.m2c_c01031{transform:matrix(0.297912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297912,0.000000,0.000000,0.250000,0,0);}
.m84_c01031{transform:matrix(0.298179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298179,0.000000,0.000000,0.250000,0,0);}
.m8_c01031{transform:matrix(0.298335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298335,0.000000,0.000000,0.250000,0,0);}
.m78_c01031{transform:matrix(0.298534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298534,0.000000,0.000000,0.250000,0,0);}
.mb1_c01031{transform:matrix(0.298640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298640,0.000000,0.000000,0.250000,0,0);}
.m62_c01031{transform:matrix(0.299293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299293,0.000000,0.000000,0.250000,0,0);}
.m7b_c01031{transform:matrix(0.299520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299520,0.000000,0.000000,0.250000,0,0);}
.m46_c01031{transform:matrix(0.300036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300036,0.000000,0.000000,0.250000,0,0);}
.ma0_c01031{transform:matrix(0.300070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300070,0.000000,0.000000,0.250000,0,0);}
.m38_c01031{transform:matrix(0.300148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300148,0.000000,0.000000,0.250000,0,0);}
.maf_c01031{transform:matrix(0.300166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300166,0.000000,0.000000,0.250000,0,0);}
.m8d_c01031{transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);}
.m6e_c01031{transform:matrix(0.300674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300674,0.000000,0.000000,0.250000,0,0);}
.m9f_c01031{transform:matrix(0.300842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300842,0.000000,0.000000,0.250000,0,0);}
.ma3_c01031{transform:matrix(0.301350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301350,0.000000,0.000000,0.250000,0,0);}
.m5e_c01031{transform:matrix(0.301634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301634,0.000000,0.000000,0.250000,0,0);}
.maa_c01031{transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);}
.m6b_c01031{transform:matrix(0.301702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301702,0.000000,0.000000,0.250000,0,0);}
.m74_c01031{transform:matrix(0.302158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302158,0.000000,0.000000,0.250000,0,0);}
.m52_c01031{transform:matrix(0.303100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303100,0.000000,0.000000,0.250000,0,0);}
.m61_c01031{transform:matrix(0.303459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303459,0.000000,0.000000,0.250000,0,0);}
.m1f_c01031{transform:matrix(0.304524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304524,0.000000,0.000000,0.250000,0,0);}
.m24_c01031{transform:matrix(0.304556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304556,0.000000,0.000000,0.250000,0,0);}
.m4a_c01031{transform:matrix(0.304957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304957,0.000000,0.000000,0.250000,0,0);}
.m3f_c01031{transform:matrix(0.305052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305052,0.000000,0.000000,0.250000,0,0);}
.m14_c01031{transform:matrix(0.305947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305947,0.000000,0.000000,0.250000,0,0);}
.m53_c01031{transform:matrix(0.306030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306030,0.000000,0.000000,0.250000,0,0);}
.m4d_c01031{transform:matrix(0.306047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306047,0.000000,0.000000,0.250000,0,0);}
.mb8_c01031{transform:matrix(0.306813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306813,0.000000,0.000000,0.250000,0,0);}
.mb2_c01031{transform:matrix(0.306982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306982,0.000000,0.000000,0.250000,0,0);}
.m6c_c01031{transform:matrix(0.307243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307243,0.000000,0.000000,0.250000,0,0);}
.m5c_c01031{transform:matrix(0.308029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308029,0.000000,0.000000,0.250000,0,0);}
.m93_c01031{transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309123,0.000000,0.000000,0.250000,0,0);}
.m68_c01031{transform:matrix(0.309994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309994,0.000000,0.000000,0.250000,0,0);}
.m67_c01031{transform:matrix(0.310559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310559,0.000000,0.000000,0.250000,0,0);}
.ma8_c01031{transform:matrix(0.310924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310924,0.000000,0.000000,0.250000,0,0);}
.ma5_c01031{transform:matrix(0.311211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311211,0.000000,0.000000,0.250000,0,0);}
.m5b_c01031{transform:matrix(0.311292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311292,0.000000,0.000000,0.250000,0,0);}
.m7_c01031{transform:matrix(0.312730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312730,0.000000,0.000000,0.250000,0,0);}
.mae_c01031{transform:matrix(0.312744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312744,0.000000,0.000000,0.250000,0,0);}
.m8c_c01031{transform:matrix(0.312797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312797,0.000000,0.000000,0.250000,0,0);}
.m1b_c01031{transform:matrix(0.313028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313028,0.000000,0.000000,0.250000,0,0);}
.m6f_c01031{transform:matrix(0.313065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313065,0.000000,0.000000,0.250000,0,0);}
.m9e_c01031{transform:matrix(0.313670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313670,0.000000,0.000000,0.250000,0,0);}
.m3d_c01031{transform:matrix(0.314226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314226,0.000000,0.000000,0.250000,0,0);}
.m4f_c01031{transform:matrix(0.315099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315099,0.000000,0.000000,0.250000,0,0);}
.m37_c01031{transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);}
.m55_c01031{transform:matrix(0.317597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317597,0.000000,0.000000,0.250000,0,0);}
.m8b_c01031{transform:matrix(0.318224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318224,0.000000,0.000000,0.250000,0,0);}
.ma1_c01031{transform:matrix(0.318723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318723,0.000000,0.000000,0.250000,0,0);}
.mf_c01031{transform:matrix(0.318728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318728,0.000000,0.000000,0.250000,0,0);}
.m92_c01031{transform:matrix(0.318890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318890,0.000000,0.000000,0.250000,0,0);}
.m7f_c01031{transform:matrix(0.318989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318989,0.000000,0.000000,0.250000,0,0);}
.m2f_c01031{transform:matrix(0.319694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319694,0.000000,0.000000,0.250000,0,0);}
.m47_c01031{transform:matrix(0.321033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321033,0.000000,0.000000,0.250000,0,0);}
.m41_c01031{transform:matrix(0.321385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321385,0.000000,0.000000,0.250000,0,0);}
.m91_c01031{transform:matrix(0.322555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322555,0.000000,0.000000,0.250000,0,0);}
.m21_c01031{transform:matrix(0.323322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323322,0.000000,0.000000,0.250000,0,0);}
.m44_c01031{transform:matrix(0.323416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323416,0.000000,0.000000,0.250000,0,0);}
.m40_c01031{transform:matrix(0.324775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324775,0.000000,0.000000,0.250000,0,0);}
.m3b_c01031{transform:matrix(0.326563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326563,0.000000,0.000000,0.250000,0,0);}
.m77_c01031{transform:matrix(0.326965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326965,0.000000,0.000000,0.250000,0,0);}
.m15_c01031{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.ma2_c01031{transform:matrix(0.327225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327225,0.000000,0.000000,0.250000,0,0);}
.m96_c01031{transform:matrix(0.327518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327518,0.000000,0.000000,0.250000,0,0);}
.m7d_c01031{transform:matrix(0.328054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328054,0.000000,0.000000,0.250000,0,0);}
.ma9_c01031{transform:matrix(0.328835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328835,0.000000,0.000000,0.250000,0,0);}
.m83_c01031{transform:matrix(0.329051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329051,0.000000,0.000000,0.250000,0,0);}
.m29_c01031{transform:matrix(0.329614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329614,0.000000,0.000000,0.250000,0,0);}
.m19_c01031{transform:matrix(0.330198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330198,0.000000,0.000000,0.250000,0,0);}
.ma6_c01031{transform:matrix(0.330710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330710,0.000000,0.000000,0.250000,0,0);}
.m33_c01031{transform:matrix(0.331442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331442,0.000000,0.000000,0.250000,0,0);}
.m10_c01031{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m23_c01031{transform:matrix(0.334766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334766,0.000000,0.000000,0.250000,0,0);}
.m98_c01031{transform:matrix(0.335869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335869,0.000000,0.000000,0.250000,0,0);}
.m9c_c01031{transform:matrix(0.337045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337045,0.000000,0.000000,0.250000,0,0);}
.m2a_c01031{transform:matrix(0.337641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337641,0.000000,0.000000,0.250000,0,0);}
.m8f_c01031{transform:matrix(0.338749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338749,0.000000,0.000000,0.250000,0,0);}
.m35_c01031{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m8e_c01031{transform:matrix(0.340056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340056,0.000000,0.000000,0.250000,0,0);}
.m7a_c01031{transform:matrix(0.340289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340289,0.000000,0.000000,0.250000,0,0);}
.m56_c01031{transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);}
.m2e_c01031{transform:matrix(0.349530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349530,0.000000,0.000000,0.250000,0,0);}
.m72_c01031{transform:matrix(0.350280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350280,0.000000,0.000000,0.250000,0,0);}
.m39_c01031{transform:matrix(0.350840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350840,0.000000,0.000000,0.250000,0,0);}
.m5f_c01031{transform:matrix(0.351580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351580,0.000000,0.000000,0.250000,0,0);}
.m22_c01031{transform:matrix(0.360799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360799,0.000000,0.000000,0.250000,0,0);}
.m31_c01031{transform:matrix(0.373098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373098,0.000000,0.000000,0.250000,0,0);}
.m20_c01031{transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);}
.m5a_c01031{transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);}
.m12_c01031{transform:matrix(0.385437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385437,0.000000,0.000000,0.250000,0,0);}
.v0_c01031{vertical-align:0.000000px;}
.v1_c01031{vertical-align:7.128000px;}
.ls8_c01031{letter-spacing:-2.744280px;}
.ls7_c01031{letter-spacing:-0.470448px;}
.ls4_c01031{letter-spacing:0.000000px;}
.lse_c01031{letter-spacing:1.113394px;}
.ls6_c01031{letter-spacing:1.152598px;}
.lsa_c01031{letter-spacing:2.140538px;}
.ls2_c01031{letter-spacing:2.414966px;}
.ls9_c01031{letter-spacing:2.642350px;}
.ls0_c01031{letter-spacing:2.665872px;}
.ls12_c01031{letter-spacing:2.673713px;}
.lsb_c01031{letter-spacing:3.630290px;}
.lsd_c01031{letter-spacing:3.870900px;}
.ls5_c01031{letter-spacing:3.920400px;}
.ls3_c01031{letter-spacing:3.989700px;}
.ls1_c01031{letter-spacing:24.462900px;}
.ls11_c01031{letter-spacing:57.024198px;}
.lsc_c01031{letter-spacing:58.449798px;}
.ls10_c01031{letter-spacing:62.726400px;}
.lsf_c01031{letter-spacing:68.428998px;}
.sc__c01031{text-shadow:none;}
.sc0_c01031{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01031{-webkit-text-stroke:0px transparent;}
.sc0_c01031{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01031{word-spacing:-0.439085px;}
.ws1_c01031{word-spacing:0.000000px;}
._0_c01031{width:11.406384px;}
._4_c01031{width:26.501904px;}
._3_c01031{width:31.912056px;}
._1_c01031{width:41.099256px;}
._2_c01031{width:46.501884px;}
.fc0_c01031{color:transparent;}
.fs10_c01031{font-size:27.720000px;}
.fs6_c01031{font-size:33.264000px;}
.fs7_c01031{font-size:34.056198px;}
.fsd_c01031{font-size:37.422000px;}
.fs9_c01031{font-size:50.688000px;}
.fs2_c01031{font-size:56.628000px;}
.fsf_c01031{font-size:57.024198px;}
.fs5_c01031{font-size:58.449798px;}
.fs4_c01031{font-size:61.776198px;}
.fsb_c01031{font-size:62.726400px;}
.fs3_c01031{font-size:64.548000px;}
.fsa_c01031{font-size:68.428998px;}
.fsc_c01031{font-size:74.844000px;}
.fs8_c01031{font-size:77.418000px;}
.fs1_c01031{font-size:78.408000px;}
.fse_c01031{font-size:79.398000px;}
.fs0_c01031{font-size:79.794000px;}
.y0_c01031{bottom:0.000000px;}
.y22_c01031{bottom:62.276970px;}
.y1_c01031{bottom:76.500000px;}
.y21_c01031{bottom:126.433920px;}
.y20_c01031{bottom:158.509920px;}
.y1f_c01031{bottom:190.580970px;}
.y1e_c01031{bottom:222.661920px;}
.y1d_c01031{bottom:252.599520px;}
.y1c_c01031{bottom:254.381520px;}
.y1b_c01031{bottom:286.813920px;}
.y1a_c01031{bottom:318.172170px;}
.y19_c01031{bottom:350.248170px;}
.y18_c01031{bottom:381.611370px;}
.y17_c01031{bottom:445.768320px;}
.y16_c01031{bottom:475.700970px;}
.y15_c01031{bottom:508.489770px;}
.y14_c01031{bottom:539.501520px;}
.y13_c01031{bottom:571.577520px;}
.y12_c01031{bottom:590.461770px;}
.y11_c01031{bottom:603.292170px;}
.y10_c01031{bottom:618.617370px;}
.yf_c01031{bottom:624.676170px;}
.ye_c01031{bottom:635.011770px;}
.yd_c01031{bottom:649.980570px;}
.yc_c01031{bottom:666.736320px;}
.yb_c01031{bottom:698.450970px;}
.ya_c01031{bottom:730.170570px;}
.y8_c01031{bottom:793.966170px;}
.y9_c01031{bottom:800.742720px;}
.y7_c01031{bottom:824.972970px;}
.y6_c01031{bottom:856.697520px;}
.y5_c01031{bottom:888.060720px;}
.y4_c01031{bottom:920.131770px;}
.y3_c01031{bottom:920.493120px;}
.y2_c01031{bottom:1056.281520px;}
.h11_c01031{height:28.911094px;}
.h7_c01031{height:34.693313px;}
.h8_c01031{height:35.519550px;}
.h10_c01031{height:37.978116px;}
.h6_c01031{height:38.927565px;}
.hc_c01031{height:41.775782px;}
.hb_c01031{height:45.573713px;}
.ha_c01031{height:52.866000px;}
.h4_c01031{height:59.061234px;}
.h5_c01031{height:60.629960px;}
.hd_c01031{height:73.455293px;}
.h3_c01031{height:76.953164px;}
.hf_c01031{height:77.924795px;}
.h9_c01031{height:78.022828px;}
.h2_c01031{height:78.313447px;}
.he_c01031{height:84.081164px;}
.h1_c01031{height:1110.000000px;}
.h0_c01031{height:1263.000000px;}
.w1_c01031{width:775.500000px;}
.w0_c01031{width:892.500000px;}
.x0_c01031{left:0.000000px;}
.x1_c01031{left:58.500000px;}
.x68_c01031{left:65.183235px;}
.x50_c01031{left:84.399135px;}
.x1e_c01031{left:85.453485px;}
.x3_c01031{left:86.710785px;}
.x61_c01031{left:87.888885px;}
.x4_c01031{left:96.160335px;}
.x2d_c01031{left:118.826385px;}
.xe_c01031{left:129.305535px;}
.x5b_c01031{left:130.453935px;}
.x27_c01031{left:140.378685px;}
.x2e_c01031{left:151.768635px;}
.x4a_c01031{left:164.321835px;}
.x5d_c01031{left:166.024635px;}
.x5_c01031{left:174.419835px;}
.x28_c01031{left:184.547535px;}
.x33_c01031{left:186.111735px;}
.x69_c01031{left:192.091335px;}
.xf_c01031{left:196.521585px;}
.x62_c01031{left:197.887785px;}
.x6_c01031{left:207.000735px;}
.x51_c01031{left:212.549685px;}
.x37_c01031{left:218.059035px;}
.x48_c01031{left:219.197535px;}
.x58_c01031{left:220.321185px;}
.x1f_c01031{left:229.661835px;}
.x42_c01031{left:231.003285px;}
.x10_c01031{left:251.768535px;}
.x55_c01031{left:257.960985px;}
.x18_c01031{left:261.935835px;}
.x43_c01031{left:263.841585px;}
.x29_c01031{left:274.211835px;}
.x64_c01031{left:275.632485px;}
.x52_c01031{left:284.715735px;}
.x2f_c01031{left:285.948285px;}
.x23_c01031{left:296.966985px;}
.x11_c01031{left:308.069835px;}
.x53_c01031{left:319.736985px;}
.x24_c01031{left:329.260785px;}
.x30_c01031{left:330.854685px;}
.x7_c01031{left:332.483235px;}
.x3d_c01031{left:339.942885px;}
.x5e_c01031{left:341.155635px;}
.x12_c01031{left:342.170385px;}
.x20_c01031{left:352.253535px;}
.x25_c01031{left:353.322735px;}
.x38_c01031{left:362.049585px;}
.x19_c01031{left:363.945435px;}
.x8_c01031{left:373.454385px;}
.x3e_c01031{left:375.048285px;}
.x44_c01031{left:385.349235px;}
.x65_c01031{left:386.433285px;}
.x1a_c01031{left:395.541285px;}
.x31_c01031{left:396.813435px;}
.x5f_c01031{left:398.080635px;}
.x26_c01031{left:408.426135px;}
.x4b_c01031{left:417.682635px;}
.x45_c01031{left:419.256735px;}
.x39_c01031{left:430.676385px;}
.x32_c01031{left:440.992185px;}
.x9_c01031{left:442.313835px;}
.x56_c01031{left:451.590135px;}
.x4c_c01031{left:452.753385px;}
.x59_c01031{left:463.237485px;}
.x3f_c01031{left:464.380935px;}
.x13_c01031{left:472.875135px;}
.xa_c01031{left:475.152135px;}
.x1b_c01031{left:485.007585px;}
.x14_c01031{left:497.258835px;}
.x21_c01031{left:519.053685px;}
.x2a_c01031{left:528.166635px;}
.x49_c01031{left:529.750635px;}
.x15_c01031{left:541.071285px;}
.x46_c01031{left:551.802885px;}
.x40_c01031{left:563.202735px;}
.x22_c01031{left:572.681985px;}
.x16_c01031{left:574.082835px;}
.x34_c01031{left:584.260035px;}
.xb_c01031{left:585.660885px;}
.x3a_c01031{left:595.922235px;}
.x63_c01031{left:607.777485px;}
.x1c_c01031{left:618.078435px;}
.x66_c01031{left:628.290285px;}
.x47_c01031{left:629.522835px;}
.x2b_c01031{left:630.537585px;}
.x57_c01031{left:640.942485px;}
.x4d_c01031{left:641.991885px;}
.x54_c01031{left:650.005935px;}
.x2_c01031{left:651.946335px;}
.x4f_c01031{left:660.747435px;}
.x35_c01031{left:661.920585px;}
.x5a_c01031{left:673.652085px;}
.x1d_c01031{left:683.156085px;}
.x67_c01031{left:685.051935px;}
.x17_c01031{left:695.055885px;}
.x60_c01031{left:696.179535px;}
.x2c_c01031{left:705.965685px;}
.xc_c01031{left:706.985385px;}
.x3b_c01031{left:708.737685px;}
.x3c_c01031{left:710.084085px;}
.x6a_c01031{left:714.816285px;}
.x4e_c01031{left:717.533835px;}
.x36_c01031{left:728.488185px;}
.xd_c01031{left:740.348385px;}
.x5c_c01031{left:750.179085px;}
.x41_c01031{left:755.599335px;}
@media print{
.v0_c01031{vertical-align:0.000000pt;}
.v1_c01031{vertical-align:6.336000pt;}
.ls8_c01031{letter-spacing:-2.439360pt;}
.ls7_c01031{letter-spacing:-0.418176pt;}
.ls4_c01031{letter-spacing:0.000000pt;}
.lse_c01031{letter-spacing:0.989683pt;}
.ls6_c01031{letter-spacing:1.024531pt;}
.lsa_c01031{letter-spacing:1.902701pt;}
.ls2_c01031{letter-spacing:2.146637pt;}
.ls9_c01031{letter-spacing:2.348755pt;}
.ls0_c01031{letter-spacing:2.369664pt;}
.ls12_c01031{letter-spacing:2.376634pt;}
.lsb_c01031{letter-spacing:3.226925pt;}
.lsd_c01031{letter-spacing:3.440800pt;}
.ls5_c01031{letter-spacing:3.484800pt;}
.ls3_c01031{letter-spacing:3.546400pt;}
.ls1_c01031{letter-spacing:21.744800pt;}
.ls11_c01031{letter-spacing:50.688176pt;}
.lsc_c01031{letter-spacing:51.955376pt;}
.ls10_c01031{letter-spacing:55.756800pt;}
.lsf_c01031{letter-spacing:60.825776pt;}
.ws0_c01031{word-spacing:-0.390298pt;}
.ws1_c01031{word-spacing:0.000000pt;}
._0_c01031{width:10.139008pt;}
._4_c01031{width:23.557248pt;}
._3_c01031{width:28.366272pt;}
._1_c01031{width:36.532672pt;}
._2_c01031{width:41.335008pt;}
.fs10_c01031{font-size:24.640000pt;}
.fs6_c01031{font-size:29.568000pt;}
.fs7_c01031{font-size:30.272176pt;}
.fsd_c01031{font-size:33.264000pt;}
.fs9_c01031{font-size:45.056000pt;}
.fs2_c01031{font-size:50.336000pt;}
.fsf_c01031{font-size:50.688176pt;}
.fs5_c01031{font-size:51.955376pt;}
.fs4_c01031{font-size:54.912176pt;}
.fsb_c01031{font-size:55.756800pt;}
.fs3_c01031{font-size:57.376000pt;}
.fsa_c01031{font-size:60.825776pt;}
.fsc_c01031{font-size:66.528000pt;}
.fs8_c01031{font-size:68.816000pt;}
.fs1_c01031{font-size:69.696000pt;}
.fse_c01031{font-size:70.576000pt;}
.fs0_c01031{font-size:70.928000pt;}
.y0_c01031{bottom:0.000000pt;}
.y22_c01031{bottom:55.357307pt;}
.y1_c01031{bottom:68.000000pt;}
.y21_c01031{bottom:112.385707pt;}
.y20_c01031{bottom:140.897707pt;}
.y1f_c01031{bottom:169.405307pt;}
.y1e_c01031{bottom:197.921707pt;}
.y1d_c01031{bottom:224.532907pt;}
.y1c_c01031{bottom:226.116907pt;}
.y1b_c01031{bottom:254.945707pt;}
.y1a_c01031{bottom:282.819707pt;}
.y19_c01031{bottom:311.331707pt;}
.y18_c01031{bottom:339.210107pt;}
.y17_c01031{bottom:396.238507pt;}
.y16_c01031{bottom:422.845307pt;}
.y15_c01031{bottom:451.990907pt;}
.y14_c01031{bottom:479.556907pt;}
.y13_c01031{bottom:508.068907pt;}
.y12_c01031{bottom:524.854907pt;}
.y11_c01031{bottom:536.259707pt;}
.y10_c01031{bottom:549.882107pt;}
.yf_c01031{bottom:555.267707pt;}
.ye_c01031{bottom:564.454907pt;}
.yd_c01031{bottom:577.760507pt;}
.yc_c01031{bottom:592.654507pt;}
.yb_c01031{bottom:620.845307pt;}
.ya_c01031{bottom:649.040507pt;}
.y8_c01031{bottom:705.747707pt;}
.y9_c01031{bottom:711.771307pt;}
.y7_c01031{bottom:733.309307pt;}
.y6_c01031{bottom:761.508907pt;}
.y5_c01031{bottom:789.387307pt;}
.y4_c01031{bottom:817.894907pt;}
.y3_c01031{bottom:818.216107pt;}
.y2_c01031{bottom:938.916907pt;}
.h11_c01031{height:25.698750pt;}
.h7_c01031{height:30.838500pt;}
.h8_c01031{height:31.572934pt;}
.h10_c01031{height:33.758325pt;}
.h6_c01031{height:34.602280pt;}
.hc_c01031{height:37.134029pt;}
.hb_c01031{height:40.509967pt;}
.ha_c01031{height:46.992000pt;}
.h4_c01031{height:52.498875pt;}
.h5_c01031{height:53.893298pt;}
.hd_c01031{height:65.293594pt;}
.h3_c01031{height:68.402813pt;}
.hf_c01031{height:69.266484pt;}
.h9_c01031{height:69.353625pt;}
.h2_c01031{height:69.611953pt;}
.he_c01031{height:74.738813pt;}
.h1_c01031{height:986.666667pt;}
.h0_c01031{height:1122.666667pt;}
.w1_c01031{width:689.333333pt;}
.w0_c01031{width:793.333333pt;}
.x0_c01031{left:0.000000pt;}
.x1_c01031{left:52.000000pt;}
.x68_c01031{left:57.940653pt;}
.x50_c01031{left:75.021453pt;}
.x1e_c01031{left:75.958653pt;}
.x3_c01031{left:77.076253pt;}
.x61_c01031{left:78.123453pt;}
.x4_c01031{left:85.475853pt;}
.x2d_c01031{left:105.623453pt;}
.xe_c01031{left:114.938253pt;}
.x5b_c01031{left:115.959053pt;}
.x27_c01031{left:124.781053pt;}
.x2e_c01031{left:134.905453pt;}
.x4a_c01031{left:146.063853pt;}
.x5d_c01031{left:147.577453pt;}
.x5_c01031{left:155.039853pt;}
.x28_c01031{left:164.042253pt;}
.x33_c01031{left:165.432653pt;}
.x69_c01031{left:170.747853pt;}
.xf_c01031{left:174.685853pt;}
.x62_c01031{left:175.900253pt;}
.x6_c01031{left:184.000653pt;}
.x51_c01031{left:188.933053pt;}
.x37_c01031{left:193.830253pt;}
.x48_c01031{left:194.842253pt;}
.x58_c01031{left:195.841053pt;}
.x1f_c01031{left:204.143853pt;}
.x42_c01031{left:205.336253pt;}
.x10_c01031{left:223.794253pt;}
.x55_c01031{left:229.298653pt;}
.x18_c01031{left:232.831853pt;}
.x43_c01031{left:234.525853pt;}
.x29_c01031{left:243.743853pt;}
.x64_c01031{left:245.006653pt;}
.x52_c01031{left:253.080653pt;}
.x2f_c01031{left:254.176253pt;}
.x23_c01031{left:263.970653pt;}
.x11_c01031{left:273.839853pt;}
.x53_c01031{left:284.210653pt;}
.x24_c01031{left:292.676253pt;}
.x30_c01031{left:294.093053pt;}
.x7_c01031{left:295.540653pt;}
.x3d_c01031{left:302.171453pt;}
.x5e_c01031{left:303.249453pt;}
.x12_c01031{left:304.151453pt;}
.x20_c01031{left:313.114253pt;}
.x25_c01031{left:314.064653pt;}
.x38_c01031{left:321.821853pt;}
.x19_c01031{left:323.507053pt;}
.x8_c01031{left:331.959453pt;}
.x3e_c01031{left:333.376253pt;}
.x44_c01031{left:342.532653pt;}
.x65_c01031{left:343.496253pt;}
.x1a_c01031{left:351.592253pt;}
.x31_c01031{left:352.723053pt;}
.x5f_c01031{left:353.849453pt;}
.x26_c01031{left:363.045453pt;}
.x4b_c01031{left:371.273453pt;}
.x45_c01031{left:372.672653pt;}
.x39_c01031{left:382.823453pt;}
.x32_c01031{left:391.993053pt;}
.x9_c01031{left:393.167853pt;}
.x56_c01031{left:401.413453pt;}
.x4c_c01031{left:402.447453pt;}
.x59_c01031{left:411.766653pt;}
.x3f_c01031{left:412.783053pt;}
.x13_c01031{left:420.333453pt;}
.xa_c01031{left:422.357453pt;}
.x1b_c01031{left:431.117853pt;}
.x14_c01031{left:442.007853pt;}
.x21_c01031{left:461.381053pt;}
.x2a_c01031{left:469.481453pt;}
.x49_c01031{left:470.889453pt;}
.x15_c01031{left:480.952253pt;}
.x46_c01031{left:490.491453pt;}
.x40_c01031{left:500.624653pt;}
.x22_c01031{left:509.050653pt;}
.x16_c01031{left:510.295853pt;}
.x34_c01031{left:519.342253pt;}
.xb_c01031{left:520.587453pt;}
.x3a_c01031{left:529.708653pt;}
.x63_c01031{left:540.246653pt;}
.x1c_c01031{left:549.403053pt;}
.x66_c01031{left:558.480253pt;}
.x47_c01031{left:559.575853pt;}
.x2b_c01031{left:560.477853pt;}
.x57_c01031{left:569.726653pt;}
.x4d_c01031{left:570.659453pt;}
.x54_c01031{left:577.783053pt;}
.x2_c01031{left:579.507853pt;}
.x4f_c01031{left:587.331053pt;}
.x35_c01031{left:588.373853pt;}
.x5a_c01031{left:598.801853pt;}
.x1d_c01031{left:607.249853pt;}
.x67_c01031{left:608.935053pt;}
.x17_c01031{left:617.827453pt;}
.x60_c01031{left:618.826253pt;}
.x2c_c01031{left:627.525053pt;}
.xc_c01031{left:628.431453pt;}
.x3b_c01031{left:629.989053pt;}
.x3c_c01031{left:631.185853pt;}
.x6a_c01031{left:635.392253pt;}
.x4e_c01031{left:637.807853pt;}
.x36_c01031{left:647.545053pt;}
.xd_c01031{left:658.087453pt;}
.x5c_c01031{left:666.825853pt;}
.x41_c01031{left:671.643853pt;}
}





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

.ir_c01032:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01032{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01032;src:url('chunks/assets/font_686bb4bb21b9e3a75eff58ad.woff2')format("woff");}.ff1_c01032{font-family:ff1_c01032;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01032;src:url('chunks/assets/font_7aa5a14cafd159dfc70da1a4.woff2')format("woff");}.ff2_c01032{font-family:ff2_c01032;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01032;src:url('chunks/assets/font_9a99de9dc0b4238fb8a1d49f.woff2')format("woff");}.ff3_c01032{font-family:ff3_c01032;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01032;src:url('chunks/assets/font_b852c31737a34ca4f8a64938.woff2')format("woff");}.ff4_c01032{font-family:ff4_c01032;line-height:0.666000;font-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_c01032{transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);}
.m6c_c01032{transform:matrix(0.168403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168403,0.000000,0.000000,0.250000,0,0);}
.m80_c01032{transform:matrix(0.169445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169445,0.000000,0.000000,0.250000,0,0);}
.m73_c01032{transform:matrix(0.227084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227084,0.000000,0.000000,0.250000,0,0);}
.m64_c01032{transform:matrix(0.228497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228497,0.000000,0.000000,0.250000,0,0);}
.m8b_c01032{transform:matrix(0.245016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245016,0.000000,0.000000,0.250000,0,0);}
.m9_c01032{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m4a_c01032{transform:matrix(0.251755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251755,0.000000,0.000000,0.250000,0,0);}
.m36_c01032{transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);}
.m69_c01032{transform:matrix(0.254814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254814,0.000000,0.000000,0.250000,0,0);}
.m62_c01032{transform:matrix(0.255172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255172,0.000000,0.000000,0.250000,0,0);}
.m6a_c01032{transform:matrix(0.256098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256098,0.000000,0.000000,0.250000,0,0);}
.m1d_c01032{transform:matrix(0.257128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257128,0.000000,0.000000,0.250000,0,0);}
.m46_c01032{transform:matrix(0.257306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257306,0.000000,0.000000,0.250000,0,0);}
.m8c_c01032{transform:matrix(0.257351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257351,0.000000,0.000000,0.250000,0,0);}
.m4f_c01032{transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);}
.m23_c01032{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m38_c01032{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m87_c01032{transform:matrix(0.262001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262001,0.000000,0.000000,0.250000,0,0);}
.m2c_c01032{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m66_c01032{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m16_c01032{transform:matrix(0.264668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264668,0.000000,0.000000,0.250000,0,0);}
.m34_c01032{transform:matrix(0.264893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264893,0.000000,0.000000,0.250000,0,0);}
.m11_c01032{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.md_c01032{transform:matrix(0.266706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266706,0.000000,0.000000,0.250000,0,0);}
.m2f_c01032{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.m14_c01032{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m6e_c01032{transform:matrix(0.268694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268694,0.000000,0.000000,0.250000,0,0);}
.m21_c01032{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m31_c01032{transform:matrix(0.271707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271707,0.000000,0.000000,0.250000,0,0);}
.m78_c01032{transform:matrix(0.272051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272051,0.000000,0.000000,0.250000,0,0);}
.m1b_c01032{transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);}
.m63_c01032{transform:matrix(0.272977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272977,0.000000,0.000000,0.250000,0,0);}
.m3b_c01032{transform:matrix(0.273657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273657,0.000000,0.000000,0.250000,0,0);}
.m4_c01032{transform:matrix(0.273782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273782,0.000000,0.000000,0.250000,0,0);}
.m60_c01032{transform:matrix(0.274303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274303,0.000000,0.000000,0.250000,0,0);}
.m1c_c01032{transform:matrix(0.274422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274422,0.000000,0.000000,0.250000,0,0);}
.m65_c01032{transform:matrix(0.274697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274697,0.000000,0.000000,0.250000,0,0);}
.m5f_c01032{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m1_c01032{transform:matrix(0.275845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275845,0.000000,0.000000,0.250000,0,0);}
.m48_c01032{transform:matrix(0.275884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275884,0.000000,0.000000,0.250000,0,0);}
.m75_c01032{transform:matrix(0.276191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276191,0.000000,0.000000,0.250000,0,0);}
.m2d_c01032{transform:matrix(0.276276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276276,0.000000,0.000000,0.250000,0,0);}
.m7e_c01032{transform:matrix(0.279540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279540,0.000000,0.000000,0.250000,0,0);}
.m6d_c01032{transform:matrix(0.279835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279835,0.000000,0.000000,0.250000,0,0);}
.m89_c01032{transform:matrix(0.280900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280900,0.000000,0.000000,0.250000,0,0);}
.m19_c01032{transform:matrix(0.281190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281190,0.000000,0.000000,0.250000,0,0);}
.m57_c01032{transform:matrix(0.282533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282533,0.000000,0.000000,0.250000,0,0);}
.m0_c01032{transform:matrix(0.283076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283076,0.000000,0.000000,0.250000,0,0);}
.m8a_c01032{transform:matrix(0.283077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283077,0.000000,0.000000,0.250000,0,0);}
.m24_c01032{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m42_c01032{transform:matrix(0.283950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283950,0.000000,0.000000,0.250000,0,0);}
.m45_c01032{transform:matrix(0.284619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284619,0.000000,0.000000,0.250000,0,0);}
.m2_c01032{transform:matrix(0.284777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284777,0.000000,0.000000,0.250000,0,0);}
.m8_c01032{transform:matrix(0.285386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285386,0.000000,0.000000,0.250000,0,0);}
.m82_c01032{transform:matrix(0.285600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285600,0.000000,0.000000,0.250000,0,0);}
.m5c_c01032{transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);}
.m43_c01032{transform:matrix(0.287763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287763,0.000000,0.000000,0.250000,0,0);}
.m7a_c01032{transform:matrix(0.288460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288460,0.000000,0.000000,0.250000,0,0);}
.m85_c01032{transform:matrix(0.289403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289403,0.000000,0.000000,0.250000,0,0);}
.m53_c01032{transform:matrix(0.290128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290128,0.000000,0.000000,0.250000,0,0);}
.m2a_c01032{transform:matrix(0.291164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291164,0.000000,0.000000,0.250000,0,0);}
.m6b_c01032{transform:matrix(0.291305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291305,0.000000,0.000000,0.250000,0,0);}
.m30_c01032{transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);}
.m58_c01032{transform:matrix(0.293077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293077,0.000000,0.000000,0.250000,0,0);}
.m3d_c01032{transform:matrix(0.293496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293496,0.000000,0.000000,0.250000,0,0);}
.m4d_c01032{transform:matrix(0.293689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293689,0.000000,0.000000,0.250000,0,0);}
.m8e_c01032{transform:matrix(0.294066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294066,0.000000,0.000000,0.250000,0,0);}
.m83_c01032{transform:matrix(0.294593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294593,0.000000,0.000000,0.250000,0,0);}
.m8f_c01032{transform:matrix(0.295202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295202,0.000000,0.000000,0.250000,0,0);}
.m41_c01032{transform:matrix(0.295212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295212,0.000000,0.000000,0.250000,0,0);}
.m4c_c01032{transform:matrix(0.295349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295349,0.000000,0.000000,0.250000,0,0);}
.m3c_c01032{transform:matrix(0.296196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296196,0.000000,0.000000,0.250000,0,0);}
.m22_c01032{transform:matrix(0.296277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296277,0.000000,0.000000,0.250000,0,0);}
.m40_c01032{transform:matrix(0.296313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296313,0.000000,0.000000,0.250000,0,0);}
.m50_c01032{transform:matrix(0.296490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296490,0.000000,0.000000,0.250000,0,0);}
.m5b_c01032{transform:matrix(0.298455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298455,0.000000,0.000000,0.250000,0,0);}
.m8d_c01032{transform:matrix(0.299520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299520,0.000000,0.000000,0.250000,0,0);}
.m25_c01032{transform:matrix(0.300970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300970,0.000000,0.000000,0.250000,0,0);}
.m68_c01032{transform:matrix(0.301374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301374,0.000000,0.000000,0.250000,0,0);}
.mb_c01032{transform:matrix(0.301502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301502,0.000000,0.000000,0.250000,0,0);}
.m86_c01032{transform:matrix(0.301668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301668,0.000000,0.000000,0.250000,0,0);}
.m81_c01032{transform:matrix(0.302542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302542,0.000000,0.000000,0.250000,0,0);}
.m3f_c01032{transform:matrix(0.303459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303459,0.000000,0.000000,0.250000,0,0);}
.m10_c01032{transform:matrix(0.304001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304001,0.000000,0.000000,0.250000,0,0);}
.ma_c01032{transform:matrix(0.304119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304119,0.000000,0.000000,0.250000,0,0);}
.m6f_c01032{transform:matrix(0.304501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304501,0.000000,0.000000,0.250000,0,0);}
.m32_c01032{transform:matrix(0.304748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304748,0.000000,0.000000,0.250000,0,0);}
.m61_c01032{transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);}
.m5_c01032{transform:matrix(0.305475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305475,0.000000,0.000000,0.250000,0,0);}
.m71_c01032{transform:matrix(0.305994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305994,0.000000,0.000000,0.250000,0,0);}
.m52_c01032{transform:matrix(0.306179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306179,0.000000,0.000000,0.250000,0,0);}
.m26_c01032{transform:matrix(0.306491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306491,0.000000,0.000000,0.250000,0,0);}
.m20_c01032{transform:matrix(0.306642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306642,0.000000,0.000000,0.250000,0,0);}
.m13_c01032{transform:matrix(0.306747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306747,0.000000,0.000000,0.250000,0,0);}
.m2e_c01032{transform:matrix(0.307113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307113,0.000000,0.000000,0.250000,0,0);}
.m67_c01032{transform:matrix(0.309332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309332,0.000000,0.000000,0.250000,0,0);}
.m56_c01032{transform:matrix(0.309715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309715,0.000000,0.000000,0.250000,0,0);}
.m18_c01032{transform:matrix(0.309842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309842,0.000000,0.000000,0.250000,0,0);}
.m88_c01032{transform:matrix(0.310739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310739,0.000000,0.000000,0.250000,0,0);}
.m54_c01032{transform:matrix(0.311006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311006,0.000000,0.000000,0.250000,0,0);}
.m17_c01032{transform:matrix(0.311557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311557,0.000000,0.000000,0.250000,0,0);}
.m4b_c01032{transform:matrix(0.312952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312952,0.000000,0.000000,0.250000,0,0);}
.m51_c01032{transform:matrix(0.313267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313267,0.000000,0.000000,0.250000,0,0);}
.m28_c01032{transform:matrix(0.313583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313583,0.000000,0.000000,0.250000,0,0);}
.m44_c01032{transform:matrix(0.313839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313839,0.000000,0.000000,0.250000,0,0);}
.m5e_c01032{transform:matrix(0.313893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313893,0.000000,0.000000,0.250000,0,0);}
.m79_c01032{transform:matrix(0.314047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314047,0.000000,0.000000,0.250000,0,0);}
.m1f_c01032{transform:matrix(0.314815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314815,0.000000,0.000000,0.250000,0,0);}
.m7d_c01032{transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);}
.m2b_c01032{transform:matrix(0.316239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316239,0.000000,0.000000,0.250000,0,0);}
.m7_c01032{transform:matrix(0.316595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316595,0.000000,0.000000,0.250000,0,0);}
.m5d_c01032{transform:matrix(0.317023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317023,0.000000,0.000000,0.250000,0,0);}
.m7c_c01032{transform:matrix(0.319776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319776,0.000000,0.000000,0.250000,0,0);}
.m5a_c01032{transform:matrix(0.321234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321234,0.000000,0.000000,0.250000,0,0);}
.mf_c01032{transform:matrix(0.321655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321655,0.000000,0.000000,0.250000,0,0);}
.m7b_c01032{transform:matrix(0.323442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323442,0.000000,0.000000,0.250000,0,0);}
.m59_c01032{transform:matrix(0.323843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323843,0.000000,0.000000,0.250000,0,0);}
.m33_c01032{transform:matrix(0.323967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323967,0.000000,0.000000,0.250000,0,0);}
.m70_c01032{transform:matrix(0.324569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324569,0.000000,0.000000,0.250000,0,0);}
.m37_c01032{transform:matrix(0.325778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325778,0.000000,0.000000,0.250000,0,0);}
.m29_c01032{transform:matrix(0.326100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326100,0.000000,0.000000,0.250000,0,0);}
.m35_c01032{transform:matrix(0.326354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326354,0.000000,0.000000,0.250000,0,0);}
.m72_c01032{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m4e_c01032{transform:matrix(0.328537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328537,0.000000,0.000000,0.250000,0,0);}
.m3a_c01032{transform:matrix(0.329646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329646,0.000000,0.000000,0.250000,0,0);}
.m76_c01032{transform:matrix(0.330710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330710,0.000000,0.000000,0.250000,0,0);}
.m77_c01032{transform:matrix(0.331100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331100,0.000000,0.000000,0.250000,0,0);}
.m90_c01032{transform:matrix(0.332370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332370,0.000000,0.000000,0.250000,0,0);}
.me_c01032{transform:matrix(0.332499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332499,0.000000,0.000000,0.250000,0,0);}
.m12_c01032{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m1a_c01032{transform:matrix(0.333729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333729,0.000000,0.000000,0.250000,0,0);}
.m39_c01032{transform:matrix(0.334644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334644,0.000000,0.000000,0.250000,0,0);}
.m49_c01032{transform:matrix(0.334832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334832,0.000000,0.000000,0.250000,0,0);}
.mc_c01032{transform:matrix(0.335826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335826,0.000000,0.000000,0.250000,0,0);}
.m3e_c01032{transform:matrix(0.336509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336509,0.000000,0.000000,0.250000,0,0);}
.m3_c01032{transform:matrix(0.336619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336619,0.000000,0.000000,0.250000,0,0);}
.m74_c01032{transform:matrix(0.338886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338886,0.000000,0.000000,0.250000,0,0);}
.m27_c01032{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m1e_c01032{transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);}
.m7f_c01032{transform:matrix(0.346501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346501,0.000000,0.000000,0.250000,0,0);}
.m84_c01032{transform:matrix(0.349926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349926,0.000000,0.000000,0.250000,0,0);}
.m55_c01032{transform:matrix(0.364810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364810,0.000000,0.000000,0.250000,0,0);}
.m47_c01032{transform:matrix(0.373839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373839,0.000000,0.000000,0.250000,0,0);}
.m6_c01032{transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);}
.m15_c01032{transform:matrix(0.385437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385437,0.000000,0.000000,0.250000,0,0);}
.v0_c01032{vertical-align:0.000000px;}
.ls9_c01032{letter-spacing:-2.744280px;}
.ls8_c01032{letter-spacing:-0.948737px;}
.ls1_c01032{letter-spacing:0.000000px;}
.ls5_c01032{letter-spacing:0.285219px;}
.ls4_c01032{letter-spacing:1.199642px;}
.lsd_c01032{letter-spacing:1.913155px;}
.ls7_c01032{letter-spacing:1.980000px;}
.ls2_c01032{letter-spacing:2.775643px;}
.ls10_c01032{letter-spacing:2.822688px;}
.ls3_c01032{letter-spacing:3.237310px;}
.ls6_c01032{letter-spacing:3.316500px;}
.lsf_c01032{letter-spacing:3.504838px;}
.lse_c01032{letter-spacing:3.623400px;}
.lsb_c01032{letter-spacing:3.667950px;}
.ls0_c01032{letter-spacing:3.920400px;}
.ls11_c01032{letter-spacing:31.363200px;}
.lsa_c01032{letter-spacing:51.321798px;}
.lsc_c01032{letter-spacing:57.024198px;}
.sc__c01032{text-shadow:none;}
.sc0_c01032{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01032{-webkit-text-stroke:0px transparent;}
.sc0_c01032{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01032{word-spacing:0.000000px;}
._0_c01032{width:6.811200px;}
.fc0_c01032{color:transparent;}
.fs1_c01032{font-size:22.176000px;}
.fsf_c01032{font-size:25.344000px;}
.fs9_c01032{font-size:27.720000px;}
.fs10_c01032{font-size:31.363200px;}
.fsa_c01032{font-size:38.808000px;}
.fs6_c01032{font-size:39.600000px;}
.fs4_c01032{font-size:45.144000px;}
.fs8_c01032{font-size:51.321798px;}
.fsc_c01032{font-size:57.024198px;}
.fse_c01032{font-size:60.984000px;}
.fs5_c01032{font-size:64.746198px;}
.fs2_c01032{font-size:66.330000px;}
.fsd_c01032{font-size:72.468000px;}
.fsb_c01032{font-size:77.220000px;}
.fs0_c01032{font-size:78.408000px;}
.fs3_c01032{font-size:78.804000px;}
.fs7_c01032{font-size:104.544000px;}
.y0_c01032{bottom:0.000000px;}
.y20_c01032{bottom:44.813385px;}
.y1f_c01032{bottom:55.505385px;}
.y1e_c01032{bottom:68.697135px;}
.y1_c01032{bottom:76.500000px;}
.y1d_c01032{bottom:102.198735px;}
.y1c_c01032{bottom:165.276585px;}
.y1b_c01032{bottom:197.001135px;}
.y1a_c01032{bottom:228.364335px;}
.y19_c01032{bottom:259.727535px;}
.y18_c01032{bottom:292.154985px;}
.y17_c01032{bottom:351.678735px;}
.y15_c01032{bottom:355.950585px;}
.y16_c01032{bottom:359.875935px;}
.y14_c01032{bottom:376.621785px;}
.y13_c01032{bottom:387.318735px;}
.y12_c01032{bottom:419.746185px;}
.y11_c01032{bottom:450.757935px;}
.y10_c01032{bottom:482.477535px;}
.yf_c01032{bottom:514.197135px;}
.ye_c01032{bottom:533.081385px;}
.yd_c01032{bottom:546.629535px;}
.yc_c01032{bottom:609.707385px;}
.yb_c01032{bottom:641.788335px;}
.ya_c01032{bottom:673.151535px;}
.y9_c01032{bottom:704.866185px;}
.y8_c01032{bottom:736.229385px;}
.y7_c01032{bottom:768.310335px;}
.y6_c01032{bottom:800.024985px;}
.y5_c01032{bottom:888.060735px;}
.y4_c01032{bottom:895.183785px;}
.y3_c01032{bottom:927.972585px;}
.y2_c01032{bottom:1063.760985px;}
.h13_c01032{height:20.887891px;}
.h3_c01032{height:23.128875px;}
.h12_c01032{height:24.873750px;}
.hb_c01032{height:28.911094px;}
.ha_c01032{height:34.180317px;}
.he_c01032{height:37.978116px;}
.h8_c01032{height:38.865234px;}
.hc_c01032{height:40.475531px;}
.h10_c01032{height:41.301563px;}
.h6_c01032{height:47.083781px;}
.h11_c01032{height:63.604406px;}
.h7_c01032{height:67.528261px;}
.h4_c01032{height:69.180117px;}
.hf_c01032{height:71.123379px;}
.hd_c01032{height:75.787207px;}
.h2_c01032{height:76.953164px;}
.h5_c01032{height:77.341816px;}
.h9_c01032{height:109.036125px;}
.h1_c01032{height:1110.000000px;}
.h0_c01032{height:1263.000000px;}
.w1_c01032{width:775.500000px;}
.w0_c01032{width:892.500000px;}
.x0_c01032{left:0.000000px;}
.x1_c01032{left:58.500000px;}
.x20_c01032{left:85.453485px;}
.x3_c01032{left:86.908785px;}
.x27_c01032{left:119.455035px;}
.x59_c01032{left:120.539085px;}
.x4e_c01032{left:129.181785px;}
.x3e_c01032{left:130.453935px;}
.x47_c01032{left:131.721135px;}
.xf_c01032{left:140.928135px;}
.x2e_c01032{left:152.189385px;}
.x21_c01032{left:153.273435px;}
.x5e_c01032{left:162.817035px;}
.x4_c01032{left:163.955535px;}
.x44_c01032{left:165.425685px;}
.x52_c01032{left:174.855435px;}
.x22_c01032{left:185.785035px;}
.x33_c01032{left:196.774035px;}
.x48_c01032{left:207.332385px;}
.x39_c01032{left:208.609485px;}
.x18_c01032{left:209.787585px;}
.x5f_c01032{left:219.138135px;}
.x41_c01032{left:221.598285px;}
.x28_c01032{left:230.691435px;}
.x5_c01032{left:239.799435px;}
.x34_c01032{left:241.294335px;}
.x3a_c01032{left:243.492135px;}
.x10_c01032{left:251.481435px;}
.x31_c01032{left:253.105035px;}
.x49_c01032{left:262.816935px;}
.x35_c01032{left:263.851485px;}
.x6_c01032{left:274.711785px;}
.x42_c01032{left:277.191735px;}
.x11_c01032{left:285.552285px;}
.x3b_c01032{left:287.660985px;}
.x3f_c01032{left:295.793835px;}
.x4a_c01032{left:297.377835px;}
.x19_c01032{left:307.995585px;}
.x36_c01032{left:319.474635px;}
.x29_c01032{left:329.750835px;}
.x5a_c01032{left:331.166535px;}
.x23_c01032{left:341.536785px;}
.x4b_c01032{left:342.873285px;}
.x7_c01032{left:352.134735px;}
.x60_c01032{left:353.550435px;}
.x2a_c01032{left:363.262335px;}
.x53_c01032{left:364.707735px;}
.x40_c01032{left:375.370035px;}
.x4f_c01032{left:385.220535px;}
.x3c_c01032{left:387.467835px;}
.x32_c01032{left:397.080735px;}
.x54_c01032{left:398.159835px;}
.x8_c01032{left:407.446035px;}
.x37_c01032{left:408.450885px;}
.x12_c01032{left:419.261685px;}
.x4c_c01032{left:430.255635px;}
.x1a_c01032{left:431.265435px;}
.x9_c01032{left:440.452635px;}
.x24_c01032{left:441.601035px;}
.x45_c01032{left:452.396985px;}
.x43_c01032{left:453.832485px;}
.x1b_c01032{left:462.717735px;}
.x25_c01032{left:474.736335px;}
.x55_c01032{left:497.323185px;}
.xe_c01032{left:505.277835px;}
.x2f_c01032{left:506.663835px;}
.x13_c01032{left:507.985485px;}
.x2b_c01032{left:509.574435px;}
.x50_c01032{left:519.058635px;}
.x1c_c01032{left:530.458485px;}
.x14_c01032{left:541.071285px;}
.x1d_c01032{left:550.619835px;}
.xa_c01032{left:552.075135px;}
.x57_c01032{left:553.268085px;}
.x5b_c01032{left:564.242235px;}
.x15_c01032{left:573.721485px;}
.x3d_c01032{left:575.785635px;}
.x1e_c01032{left:585.576735px;}
.x2c_c01032{left:596.001435px;}
.x46_c01032{left:618.212085px;}
.x30_c01032{left:629.453535px;}
.x26_c01032{left:638.982285px;}
.x58_c01032{left:640.571235px;}
.xb_c01032{left:652.000785px;}
.x38_c01032{left:660.475185px;}
.x16_c01032{left:661.613685px;}
.xc_c01032{left:672.964035px;}
.x5c_c01032{left:674.394585px;}
.x2_c01032{left:684.363885px;}
.x17_c01032{left:694.699485px;}
.x4d_c01032{left:696.897285px;}
.x51_c01032{left:703.411485px;}
.x61_c01032{left:705.059835px;}
.xd_c01032{left:707.544735px;}
.x62_c01032{left:710.049435px;}
.x63_c01032{left:711.717585px;}
.x1f_c01032{left:717.835785px;}
.x56_c01032{left:728.953485px;}
.x2d_c01032{left:740.610735px;}
.x5d_c01032{left:763.553985px;}
@media print{
.v0_c01032{vertical-align:0.000000pt;}
.ls9_c01032{letter-spacing:-2.439360pt;}
.ls8_c01032{letter-spacing:-0.843322pt;}
.ls1_c01032{letter-spacing:0.000000pt;}
.ls5_c01032{letter-spacing:0.253528pt;}
.ls4_c01032{letter-spacing:1.066349pt;}
.lsd_c01032{letter-spacing:1.700582pt;}
.ls7_c01032{letter-spacing:1.760000pt;}
.ls2_c01032{letter-spacing:2.467238pt;}
.ls10_c01032{letter-spacing:2.509056pt;}
.ls3_c01032{letter-spacing:2.877609pt;}
.ls6_c01032{letter-spacing:2.948000pt;}
.lsf_c01032{letter-spacing:3.115411pt;}
.lse_c01032{letter-spacing:3.220800pt;}
.lsb_c01032{letter-spacing:3.260400pt;}
.ls0_c01032{letter-spacing:3.484800pt;}
.ls11_c01032{letter-spacing:27.878400pt;}
.lsa_c01032{letter-spacing:45.619376pt;}
.lsc_c01032{letter-spacing:50.688176pt;}
.ws0_c01032{word-spacing:0.000000pt;}
._0_c01032{width:6.054400pt;}
.fs1_c01032{font-size:19.712000pt;}
.fsf_c01032{font-size:22.528000pt;}
.fs9_c01032{font-size:24.640000pt;}
.fs10_c01032{font-size:27.878400pt;}
.fsa_c01032{font-size:34.496000pt;}
.fs6_c01032{font-size:35.200000pt;}
.fs4_c01032{font-size:40.128000pt;}
.fs8_c01032{font-size:45.619376pt;}
.fsc_c01032{font-size:50.688176pt;}
.fse_c01032{font-size:54.208000pt;}
.fs5_c01032{font-size:57.552176pt;}
.fs2_c01032{font-size:58.960000pt;}
.fsd_c01032{font-size:64.416000pt;}
.fsb_c01032{font-size:68.640000pt;}
.fs0_c01032{font-size:69.696000pt;}
.fs3_c01032{font-size:70.048000pt;}
.fs7_c01032{font-size:92.928000pt;}
.y0_c01032{bottom:0.000000pt;}
.y20_c01032{bottom:39.834120pt;}
.y1f_c01032{bottom:49.338120pt;}
.y1e_c01032{bottom:61.064120pt;}
.y1_c01032{bottom:68.000000pt;}
.y1d_c01032{bottom:90.843320pt;}
.y1c_c01032{bottom:146.912520pt;}
.y1b_c01032{bottom:175.112120pt;}
.y1a_c01032{bottom:202.990520pt;}
.y19_c01032{bottom:230.868920pt;}
.y18_c01032{bottom:259.693320pt;}
.y17_c01032{bottom:312.603320pt;}
.y15_c01032{bottom:316.400520pt;}
.y16_c01032{bottom:319.889720pt;}
.y14_c01032{bottom:334.774920pt;}
.y13_c01032{bottom:344.283320pt;}
.y12_c01032{bottom:373.107720pt;}
.y11_c01032{bottom:400.673720pt;}
.y10_c01032{bottom:428.868920pt;}
.yf_c01032{bottom:457.064120pt;}
.ye_c01032{bottom:473.850120pt;}
.yd_c01032{bottom:485.892920pt;}
.yc_c01032{bottom:541.962120pt;}
.yb_c01032{bottom:570.478520pt;}
.ya_c01032{bottom:598.356920pt;}
.y9_c01032{bottom:626.547720pt;}
.y8_c01032{bottom:654.426120pt;}
.y7_c01032{bottom:682.942520pt;}
.y6_c01032{bottom:711.133320pt;}
.y5_c01032{bottom:789.387320pt;}
.y4_c01032{bottom:795.718920pt;}
.y3_c01032{bottom:824.864520pt;}
.y2_c01032{bottom:945.565320pt;}
.h13_c01032{height:18.567014pt;}
.h3_c01032{height:20.559000pt;}
.h12_c01032{height:22.110000pt;}
.hb_c01032{height:25.698750pt;}
.ha_c01032{height:30.382504pt;}
.he_c01032{height:33.758325pt;}
.h8_c01032{height:34.546875pt;}
.hc_c01032{height:35.978250pt;}
.h10_c01032{height:36.712500pt;}
.h6_c01032{height:41.852250pt;}
.h11_c01032{height:56.537250pt;}
.h7_c01032{height:60.025121pt;}
.h4_c01032{height:61.493438pt;}
.hf_c01032{height:63.220781pt;}
.hd_c01032{height:67.366406pt;}
.h2_c01032{height:68.402813pt;}
.h5_c01032{height:68.748281pt;}
.h9_c01032{height:96.921000pt;}
.h1_c01032{height:986.666667pt;}
.h0_c01032{height:1122.666667pt;}
.w1_c01032{width:689.333333pt;}
.w0_c01032{width:793.333333pt;}
.x0_c01032{left:0.000000pt;}
.x1_c01032{left:52.000000pt;}
.x20_c01032{left:75.958653pt;}
.x3_c01032{left:77.252253pt;}
.x27_c01032{left:106.182253pt;}
.x59_c01032{left:107.145853pt;}
.x4e_c01032{left:114.828253pt;}
.x3e_c01032{left:115.959053pt;}
.x47_c01032{left:117.085453pt;}
.xf_c01032{left:125.269453pt;}
.x2e_c01032{left:135.279453pt;}
.x21_c01032{left:136.243053pt;}
.x5e_c01032{left:144.726253pt;}
.x4_c01032{left:145.738253pt;}
.x44_c01032{left:147.045053pt;}
.x52_c01032{left:155.427053pt;}
.x22_c01032{left:165.142253pt;}
.x33_c01032{left:174.910253pt;}
.x48_c01032{left:184.295453pt;}
.x39_c01032{left:185.430653pt;}
.x18_c01032{left:186.477853pt;}
.x5f_c01032{left:194.789453pt;}
.x41_c01032{left:196.976253pt;}
.x28_c01032{left:205.059053pt;}
.x5_c01032{left:213.155053pt;}
.x34_c01032{left:214.483853pt;}
.x3a_c01032{left:216.437453pt;}
.x10_c01032{left:223.539053pt;}
.x31_c01032{left:224.982253pt;}
.x49_c01032{left:233.615053pt;}
.x35_c01032{left:234.534653pt;}
.x6_c01032{left:244.188253pt;}
.x42_c01032{left:246.392653pt;}
.x11_c01032{left:253.824253pt;}
.x3b_c01032{left:255.698653pt;}
.x3f_c01032{left:262.927853pt;}
.x4a_c01032{left:264.335853pt;}
.x19_c01032{left:273.773853pt;}
.x36_c01032{left:283.977453pt;}
.x29_c01032{left:293.111853pt;}
.x5a_c01032{left:294.370253pt;}
.x23_c01032{left:303.588253pt;}
.x4b_c01032{left:304.776253pt;}
.x7_c01032{left:313.008653pt;}
.x60_c01032{left:314.267053pt;}
.x2a_c01032{left:322.899853pt;}
.x53_c01032{left:324.184653pt;}
.x40_c01032{left:333.662253pt;}
.x4f_c01032{left:342.418253pt;}
.x3c_c01032{left:344.415853pt;}
.x32_c01032{left:352.960653pt;}
.x54_c01032{left:353.919853pt;}
.x8_c01032{left:362.174253pt;}
.x37_c01032{left:363.067453pt;}
.x12_c01032{left:372.677053pt;}
.x4c_c01032{left:382.449453pt;}
.x1a_c01032{left:383.347053pt;}
.x9_c01032{left:391.513453pt;}
.x24_c01032{left:392.534253pt;}
.x45_c01032{left:402.130653pt;}
.x43_c01032{left:403.406653pt;}
.x1b_c01032{left:411.304653pt;}
.x25_c01032{left:421.987853pt;}
.x55_c01032{left:442.065053pt;}
.xe_c01032{left:449.135853pt;}
.x2f_c01032{left:450.367853pt;}
.x13_c01032{left:451.542653pt;}
.x2b_c01032{left:452.955053pt;}
.x50_c01032{left:461.385453pt;}
.x1c_c01032{left:471.518653pt;}
.x14_c01032{left:480.952253pt;}
.x1d_c01032{left:489.439853pt;}
.xa_c01032{left:490.733453pt;}
.x57_c01032{left:491.793853pt;}
.x5b_c01032{left:501.548653pt;}
.x15_c01032{left:509.974653pt;}
.x3d_c01032{left:511.809453pt;}
.x1e_c01032{left:520.512653pt;}
.x2c_c01032{left:529.779053pt;}
.x46_c01032{left:549.521853pt;}
.x30_c01032{left:559.514253pt;}
.x26_c01032{left:567.984253pt;}
.x58_c01032{left:569.396653pt;}
.xb_c01032{left:579.556253pt;}
.x38_c01032{left:587.089053pt;}
.x16_c01032{left:588.101053pt;}
.xc_c01032{left:598.190253pt;}
.x5c_c01032{left:599.461853pt;}
.x2_c01032{left:608.323453pt;}
.x17_c01032{left:617.510653pt;}
.x4d_c01032{left:619.464253pt;}
.x51_c01032{left:625.254653pt;}
.x61_c01032{left:626.719853pt;}
.xd_c01032{left:628.928653pt;}
.x62_c01032{left:631.155053pt;}
.x63_c01032{left:632.637853pt;}
.x1f_c01032{left:638.076253pt;}
.x56_c01032{left:647.958653pt;}
.x2d_c01032{left:658.320653pt;}
.x5d_c01032{left:678.714653pt;}
}





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

.ir_c01033:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01033{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01033;src:url('chunks/assets/font_67d0b1049eb0a3d8aa33b195.woff2')format("woff");}.ff1_c01033{font-family:ff1_c01033;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01033;src:url('chunks/assets/font_37b6508d6aef326085c2d4fa.woff2')format("woff");}.ff2_c01033{font-family:ff2_c01033;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01033;src:url('chunks/assets/font_4c0f72c8cea5b216199f8f63.woff2')format("woff");}.ff3_c01033{font-family:ff3_c01033;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01033;src:url('chunks/assets/font_38e88e5828debd61a50c89c7.woff2')format("woff");}.ff4_c01033{font-family:ff4_c01033;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01033;src:url('chunks/assets/font_91ebecf5daef5d2def28dc48.woff2')format("woff");}.ff5_c01033{font-family:ff5_c01033;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m7c_c01033{transform:matrix(0.020834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020834,0.000000,0.000000,0.250000,0,0);}
.m7b_c01033{transform:matrix(0.076390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076390,0.000000,0.000000,0.250000,0,0);}
.m88_c01033{transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);}
.m79_c01033{transform:matrix(0.131148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131148,0.000000,0.000000,0.250000,0,0);}
.m75_c01033{transform:matrix(0.137182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137182,0.000000,0.000000,0.250000,0,0);}
.m74_c01033{transform:matrix(0.175194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175194,0.000000,0.000000,0.250000,0,0);}
.m37_c01033{transform:matrix(0.200451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200451,0.000000,0.000000,0.250000,0,0);}
.m87_c01033{transform:matrix(0.210648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210648,0.000000,0.000000,0.250000,0,0);}
.m7f_c01033{transform:matrix(0.219769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219769,0.000000,0.000000,0.250000,0,0);}
.m73_c01033{transform:matrix(0.221265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221265,0.000000,0.000000,0.250000,0,0);}
.m7d_c01033{transform:matrix(0.222550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222550,0.000000,0.000000,0.250000,0,0);}
.m7a_c01033{transform:matrix(0.224537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224537,0.000000,0.000000,0.250000,0,0);}
.m78_c01033{transform:matrix(0.231313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231313,0.000000,0.000000,0.250000,0,0);}
.m4e_c01033{transform:matrix(0.232312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232312,0.000000,0.000000,0.250000,0,0);}
.m82_c01033{transform:matrix(0.236311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236311,0.000000,0.000000,0.250000,0,0);}
.m77_c01033{transform:matrix(0.243291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243291,0.000000,0.000000,0.250000,0,0);}
.m66_c01033{transform:matrix(0.243883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243883,0.000000,0.000000,0.250000,0,0);}
.m76_c01033{transform:matrix(0.246099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246099,0.000000,0.000000,0.250000,0,0);}
.m0_c01033{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m68_c01033{transform:matrix(0.250993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250993,0.000000,0.000000,0.250000,0,0);}
.m55_c01033{transform:matrix(0.254158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254158,0.000000,0.000000,0.250000,0,0);}
.m18_c01033{transform:matrix(0.255290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255290,0.000000,0.000000,0.250000,0,0);}
.m2d_c01033{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m5b_c01033{transform:matrix(0.258853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258853,0.000000,0.000000,0.250000,0,0);}
.m27_c01033{transform:matrix(0.259955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259955,0.000000,0.000000,0.250000,0,0);}
.m23_c01033{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m72_c01033{transform:matrix(0.261497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261497,0.000000,0.000000,0.250000,0,0);}
.m83_c01033{transform:matrix(0.262480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262480,0.000000,0.000000,0.250000,0,0);}
.md_c01033{transform:matrix(0.262539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262539,0.000000,0.000000,0.250000,0,0);}
.m2_c01033{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.me_c01033{transform:matrix(0.265012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265012,0.000000,0.000000,0.250000,0,0);}
.m41_c01033{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m4d_c01033{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.m80_c01033{transform:matrix(0.267424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267424,0.000000,0.000000,0.250000,0,0);}
.m64_c01033{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m5_c01033{transform:matrix(0.268552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268552,0.000000,0.000000,0.250000,0,0);}
.m6d_c01033{transform:matrix(0.270873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270873,0.000000,0.000000,0.250000,0,0);}
.m58_c01033{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m39_c01033{transform:matrix(0.271889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271889,0.000000,0.000000,0.250000,0,0);}
.m1f_c01033{transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);}
.m43_c01033{transform:matrix(0.272922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272922,0.000000,0.000000,0.250000,0,0);}
.m3c_c01033{transform:matrix(0.273311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273311,0.000000,0.000000,0.250000,0,0);}
.m3_c01033{transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);}
.m28_c01033{transform:matrix(0.273617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273617,0.000000,0.000000,0.250000,0,0);}
.m54_c01033{transform:matrix(0.274588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274588,0.000000,0.000000,0.250000,0,0);}
.m8_c01033{transform:matrix(0.274785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274785,0.000000,0.000000,0.250000,0,0);}
.m1e_c01033{transform:matrix(0.275162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275162,0.000000,0.000000,0.250000,0,0);}
.m60_c01033{transform:matrix(0.275170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275170,0.000000,0.000000,0.250000,0,0);}
.m4a_c01033{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m31_c01033{transform:matrix(0.276521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276521,0.000000,0.000000,0.250000,0,0);}
.m3d_c01033{transform:matrix(0.277101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277101,0.000000,0.000000,0.250000,0,0);}
.m6_c01033{transform:matrix(0.277635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277635,0.000000,0.000000,0.250000,0,0);}
.m85_c01033{transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);}
.m3e_c01033{transform:matrix(0.278581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278581,0.000000,0.000000,0.250000,0,0);}
.m2f_c01033{transform:matrix(0.279136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279136,0.000000,0.000000,0.250000,0,0);}
.m4_c01033{transform:matrix(0.279267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279267,0.000000,0.000000,0.250000,0,0);}
.m70_c01033{transform:matrix(0.280237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280237,0.000000,0.000000,0.250000,0,0);}
.m2b_c01033{transform:matrix(0.281190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281190,0.000000,0.000000,0.250000,0,0);}
.m7e_c01033{transform:matrix(0.281355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281355,0.000000,0.000000,0.250000,0,0);}
.m34_c01033{transform:matrix(0.284548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284548,0.000000,0.000000,0.250000,0,0);}
.m15_c01033{transform:matrix(0.284799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284799,0.000000,0.000000,0.250000,0,0);}
.m4f_c01033{transform:matrix(0.284874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284874,0.000000,0.000000,0.250000,0,0);}
.m69_c01033{transform:matrix(0.284924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284924,0.000000,0.000000,0.250000,0,0);}
.m16_c01033{transform:matrix(0.286092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286092,0.000000,0.000000,0.250000,0,0);}
.m30_c01033{transform:matrix(0.286167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286167,0.000000,0.000000,0.250000,0,0);}
.m47_c01033{transform:matrix(0.286496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286496,0.000000,0.000000,0.250000,0,0);}
.m6b_c01033{transform:matrix(0.286514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286514,0.000000,0.000000,0.250000,0,0);}
.m6a_c01033{transform:matrix(0.288169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288169,0.000000,0.000000,0.250000,0,0);}
.m61_c01033{transform:matrix(0.289888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289888,0.000000,0.000000,0.250000,0,0);}
.mf_c01033{transform:matrix(0.289940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289940,0.000000,0.000000,0.250000,0,0);}
.m4c_c01033{transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);}
.m1_c01033{transform:matrix(0.291243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291243,0.000000,0.000000,0.250000,0,0);}
.m5a_c01033{transform:matrix(0.291702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291702,0.000000,0.000000,0.250000,0,0);}
.m40_c01033{transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292264,0.000000,0.000000,0.250000,0,0);}
.m9_c01033{transform:matrix(0.293444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293444,0.000000,0.000000,0.250000,0,0);}
.m14_c01033{transform:matrix(0.294732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294732,0.000000,0.000000,0.250000,0,0);}
.m35_c01033{transform:matrix(0.297274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297274,0.000000,0.000000,0.250000,0,0);}
.m1b_c01033{transform:matrix(0.297381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297381,0.000000,0.000000,0.250000,0,0);}
.m52_c01033{transform:matrix(0.297395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297395,0.000000,0.000000,0.250000,0,0);}
.m84_c01033{transform:matrix(0.297991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297991,0.000000,0.000000,0.250000,0,0);}
.m7_c01033{transform:matrix(0.298177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298177,0.000000,0.000000,0.250000,0,0);}
.m5d_c01033{transform:matrix(0.299529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299529,0.000000,0.000000,0.250000,0,0);}
.m6c_c01033{transform:matrix(0.301227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301227,0.000000,0.000000,0.250000,0,0);}
.mb_c01033{transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);}
.m12_c01033{transform:matrix(0.301749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301749,0.000000,0.000000,0.250000,0,0);}
.mc_c01033{transform:matrix(0.301804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301804,0.000000,0.000000,0.250000,0,0);}
.m1a_c01033{transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);}
.m21_c01033{transform:matrix(0.304427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304427,0.000000,0.000000,0.250000,0,0);}
.m10_c01033{transform:matrix(0.304556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304556,0.000000,0.000000,0.250000,0,0);}
.m56_c01033{transform:matrix(0.304763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304763,0.000000,0.000000,0.250000,0,0);}
.m33_c01033{transform:matrix(0.305009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305009,0.000000,0.000000,0.250000,0,0);}
.m49_c01033{transform:matrix(0.305306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305306,0.000000,0.000000,0.250000,0,0);}
.m13_c01033{transform:matrix(0.307658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307658,0.000000,0.000000,0.250000,0,0);}
.m19_c01033{transform:matrix(0.307720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307720,0.000000,0.000000,0.250000,0,0);}
.m1d_c01033{transform:matrix(0.307840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307840,0.000000,0.000000,0.250000,0,0);}
.m57_c01033{transform:matrix(0.308273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308273,0.000000,0.000000,0.250000,0,0);}
.m11_c01033{transform:matrix(0.308496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308496,0.000000,0.000000,0.250000,0,0);}
.m44_c01033{transform:matrix(0.308864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308864,0.000000,0.000000,0.250000,0,0);}
.m38_c01033{transform:matrix(0.309145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309145,0.000000,0.000000,0.250000,0,0);}
.m3a_c01033{transform:matrix(0.309972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309972,0.000000,0.000000,0.250000,0,0);}
.m63_c01033{transform:matrix(0.310021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310021,0.000000,0.000000,0.250000,0,0);}
.m36_c01033{transform:matrix(0.310550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310550,0.000000,0.000000,0.250000,0,0);}
.m46_c01033{transform:matrix(0.311002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311002,0.000000,0.000000,0.250000,0,0);}
.m6e_c01033{transform:matrix(0.312319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312319,0.000000,0.000000,0.250000,0,0);}
.ma_c01033{transform:matrix(0.313000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313000,0.000000,0.000000,0.250000,0,0);}
.m86_c01033{transform:matrix(0.313232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313232,0.000000,0.000000,0.250000,0,0);}
.m2c_c01033{transform:matrix(0.313517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313517,0.000000,0.000000,0.250000,0,0);}
.m51_c01033{transform:matrix(0.313839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313839,0.000000,0.000000,0.250000,0,0);}
.m71_c01033{transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);}
.m25_c01033{transform:matrix(0.316148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316148,0.000000,0.000000,0.250000,0,0);}
.m5c_c01033{transform:matrix(0.317259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317259,0.000000,0.000000,0.250000,0,0);}
.m29_c01033{transform:matrix(0.317755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317755,0.000000,0.000000,0.250000,0,0);}
.m48_c01033{transform:matrix(0.318213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318213,0.000000,0.000000,0.250000,0,0);}
.m2a_c01033{transform:matrix(0.318951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318951,0.000000,0.000000,0.250000,0,0);}
.m3f_c01033{transform:matrix(0.319595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319595,0.000000,0.000000,0.250000,0,0);}
.m5f_c01033{transform:matrix(0.319859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319859,0.000000,0.000000,0.250000,0,0);}
.m45_c01033{transform:matrix(0.321274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321274,0.000000,0.000000,0.250000,0,0);}
.m1c_c01033{transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);}
.m20_c01033{transform:matrix(0.321955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321955,0.000000,0.000000,0.250000,0,0);}
.m81_c01033{transform:matrix(0.323414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323414,0.000000,0.000000,0.250000,0,0);}
.m3b_c01033{transform:matrix(0.323442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323442,0.000000,0.000000,0.250000,0,0);}
.m65_c01033{transform:matrix(0.324489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324489,0.000000,0.000000,0.250000,0,0);}
.m53_c01033{transform:matrix(0.326734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326734,0.000000,0.000000,0.250000,0,0);}
.m67_c01033{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m17_c01033{transform:matrix(0.327212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327212,0.000000,0.000000,0.250000,0,0);}
.m6f_c01033{transform:matrix(0.328480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328480,0.000000,0.000000,0.250000,0,0);}
.m2e_c01033{transform:matrix(0.329747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329747,0.000000,0.000000,0.250000,0,0);}
.m32_c01033{transform:matrix(0.331150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331150,0.000000,0.000000,0.250000,0,0);}
.m4b_c01033{transform:matrix(0.331934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331934,0.000000,0.000000,0.250000,0,0);}
.m59_c01033{transform:matrix(0.332348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332348,0.000000,0.000000,0.250000,0,0);}
.m26_c01033{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m5e_c01033{transform:matrix(0.338886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338886,0.000000,0.000000,0.250000,0,0);}
.m50_c01033{transform:matrix(0.352319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352319,0.000000,0.000000,0.250000,0,0);}
.m22_c01033{transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);}
.m42_c01033{transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);}
.m24_c01033{transform:matrix(0.385437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385437,0.000000,0.000000,0.250000,0,0);}
.m62_c01033{transform:matrix(0.391460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391460,0.000000,0.000000,0.250000,0,0);}
.v0_c01033{vertical-align:0.000000px;}
.ls18_c01033{letter-spacing:-2.952180px;}
.lsd_c01033{letter-spacing:-2.744280px;}
.lse_c01033{letter-spacing:-2.550240px;}
.lsf_c01033{letter-spacing:-2.522527px;}
.ls10_c01033{letter-spacing:-2.016630px;}
.lsc_c01033{letter-spacing:-1.884967px;}
.ls11_c01033{letter-spacing:-1.712304px;}
.ls12_c01033{letter-spacing:-0.364320px;}
.ls3_c01033{letter-spacing:0.000000px;}
.ls0_c01033{letter-spacing:0.371606px;}
.ls1_c01033{letter-spacing:0.735926px;}
.ls7_c01033{letter-spacing:0.893851px;}
.ls13_c01033{letter-spacing:1.423699px;}
.ls17_c01033{letter-spacing:1.561626px;}
.ls5_c01033{letter-spacing:1.910700px;}
.ls2_c01033{letter-spacing:2.111155px;}
.ls9_c01033{letter-spacing:2.297354px;}
.lsb_c01033{letter-spacing:3.253932px;}
.ls16_c01033{letter-spacing:3.474900px;}
.ls8_c01033{letter-spacing:3.524400px;}
.ls6_c01033{letter-spacing:3.742200px;}
.ls4_c01033{letter-spacing:3.920400px;}
.ls19_c01033{letter-spacing:31.363200px;}
.ls15_c01033{letter-spacing:51.321798px;}
.lsa_c01033{letter-spacing:52.747398px;}
.ls14_c01033{letter-spacing:86.961798px;}
.sc__c01033{text-shadow:none;}
.sc0_c01033{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01033{-webkit-text-stroke:0px transparent;}
.sc0_c01033{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01033{word-spacing:0.000000px;}
._2_c01033{margin-left:-2.823480px;}
._0_c01033{width:4.470048px;}
._3_c01033{width:15.525180px;}
._5_c01033{width:25.830288px;}
._1_c01033{width:33.244200px;}
._4_c01033{width:43.288502px;}
.fc0_c01033{color:transparent;}
.fse_c01033{font-size:22.176000px;}
.fs14_c01033{font-size:23.166000px;}
.fs13_c01033{font-size:27.720000px;}
.fs15_c01033{font-size:31.363200px;}
.fs3_c01033{font-size:38.214000px;}
.fs16_c01033{font-size:44.352000px;}
.fsf_c01033{font-size:51.321798px;}
.fs6_c01033{font-size:52.747398px;}
.fs7_c01033{font-size:53.856198px;}
.fsa_c01033{font-size:57.618000px;}
.fs2_c01033{font-size:64.548000px;}
.fs11_c01033{font-size:65.340000px;}
.fsb_c01033{font-size:66.528000px;}
.fs10_c01033{font-size:69.498000px;}
.fs5_c01033{font-size:70.488000px;}
.fs9_c01033{font-size:72.072198px;}
.fs8_c01033{font-size:72.864000px;}
.fs4_c01033{font-size:74.844000px;}
.fs1_c01033{font-size:78.408000px;}
.fs12_c01033{font-size:84.348000px;}
.fsd_c01033{font-size:86.961798px;}
.fs0_c01033{font-size:88.704000px;}
.fsc_c01033{font-size:95.832198px;}
.y23_c01033{bottom:-1.157265px;}
.y0_c01033{bottom:0.000000px;}
.y22_c01033{bottom:23.434335px;}
.y21_c01033{bottom:34.121385px;}
.y20_c01033{bottom:46.595385px;}
.y1f_c01033{bottom:67.622985px;}
.y1_c01033{bottom:76.500000px;}
.y1e_c01033{bottom:131.774985px;}
.y1d_c01033{bottom:196.288335px;}
.y1a_c01033{bottom:196.644735px;}
.y16_c01033{bottom:197.001135px;}
.y19_c01033{bottom:212.326335px;}
.y18_c01033{bottom:257.584185px;}
.y1c_c01033{bottom:258.658335px;}
.y15_c01033{bottom:263.647935px;}
.y14_c01033{bottom:300.000735px;}
.y1b_c01033{bottom:322.092585px;}
.y13_c01033{bottom:323.879535px;}
.y17_c01033{bottom:324.230985px;}
.y12_c01033{bottom:386.962335px;}
.y11_c01033{bottom:418.325535px;}
.y10_c01033{bottom:450.396585px;}
.yf_c01033{bottom:482.121135px;}
.ye_c01033{bottom:545.916735px;}
.yd_c01033{bottom:577.631385px;}
.yc_c01033{bottom:609.355935px;}
.yb_c01033{bottom:641.075535px;}
.ya_c01033{bottom:672.433785px;}
.y9_c01033{bottom:703.796985px;}
.y8_c01033{bottom:735.521535px;}
.y7_c01033{bottom:766.523385px;}
.y6_c01033{bottom:799.317135px;}
.y5_c01033{bottom:863.469135px;}
.y4_c01033{bottom:894.832335px;}
.y3_c01033{bottom:927.264735px;}
.y2_c01033{bottom:1062.691785px;}
.h18_c01033{height:20.887891px;}
.h10_c01033{height:23.128875px;}
.h17_c01033{height:24.161414px;}
.h15_c01033{height:28.911094px;}
.h11_c01033{height:34.180317px;}
.h8_c01033{height:35.129767px;}
.h5_c01033{height:39.856008px;}
.h19_c01033{height:46.257750px;}
.h9_c01033{height:52.856913px;}
.hf_c01033{height:57.916557px;}
.hc_c01033{height:60.093773px;}
.hd_c01033{height:65.293594px;}
.h4_c01033{height:67.321547px;}
.h13_c01033{height:68.147578px;}
.h12_c01033{height:68.208486px;}
.h7_c01033{height:69.180117px;}
.h16_c01033{height:69.386625px;}
.hb_c01033{height:70.699729px;}
.ha_c01033{height:71.512031px;}
.h6_c01033{height:73.455293px;}
.h3_c01033{height:76.953164px;}
.h14_c01033{height:82.782949px;}
.h2_c01033{height:87.058125px;}
.he_c01033{height:99.949988px;}
.h1_c01033{height:1110.000000px;}
.h0_c01033{height:1263.000000px;}
.w1_c01033{width:775.500000px;}
.w0_c01033{width:892.500000px;}
.x0_c01033{left:0.000000px;}
.x1_c01033{left:58.500000px;}
.x27_c01033{left:60.535185px;}
.x10_c01033{left:62.440935px;}
.x3_c01033{left:63.544785px;}
.x4_c01033{left:73.786335px;}
.x41_c01033{left:93.749685px;}
.x45_c01033{left:104.798085px;}
.x1e_c01033{left:115.074285px;}
.x5_c01033{left:116.326635px;}
.x4d_c01033{left:127.246335px;}
.x1f_c01033{left:138.294735px;}
.x49_c01033{left:139.789635px;}
.x18_c01033{left:149.343135px;}
.x6_c01033{left:150.788535px;}
.x11_c01033{left:160.247985px;}
.x34_c01033{left:171.177585px;}
.x4a_c01033{left:179.028285px;}
.x7_c01033{left:182.072535px;}
.x51_c01033{left:191.650785px;}
.x12_c01033{left:192.932835px;}
.x20_c01033{left:194.323785px;}
.x46_c01033{left:204.629685px;}
.x19_c01033{left:214.821735px;}
.x3a_c01033{left:216.079035px;}
.x42_c01033{left:225.548385px;}
.x1a_c01033{left:236.596785px;}
.x50_c01033{left:237.834285px;}
.x4e_c01033{left:247.650135px;}
.x2d_c01033{left:249.209385px;}
.x47_c01033{left:260.183535px;}
.x8_c01033{left:270.489435px;}
.x3b_c01033{left:281.993235px;}
.x21_c01033{left:293.739585px;}
.x9_c01033{left:304.842435px;}
.x52_c01033{left:306.183885px;}
.x3c_c01033{left:315.539385px;}
.x55_c01033{left:323.206935px;}
.x31_c01033{left:326.602635px;}
.x13_c01033{left:327.622335px;}
.x1b_c01033{left:329.107335px;}
.x56_c01033{left:336.344235px;}
.x53_c01033{left:338.121285px;}
.x62_c01033{left:339.819135px;}
.x22_c01033{left:347.788635px;}
.x43_c01033{left:349.342935px;}
.x14_c01033{left:358.841985px;}
.x2e_c01033{left:360.421035px;}
.x5a_c01033{left:371.360535px;}
.x1c_c01033{left:373.429635px;}
.x54_c01033{left:375.048285px;}
.x59_c01033{left:379.112235px;}
.x28_c01033{left:381.260535px;}
.x5b_c01033{left:393.640485px;}
.x1d_c01033{left:394.991835px;}
.x29_c01033{left:404.926485px;}
.xa_c01033{left:416.029335px;}
.x2a_c01033{left:436.170885px;}
.x35_c01033{left:437.368785px;}
.x3d_c01033{left:439.031985px;}
.x57_c01033{left:442.793985px;}
.x15_c01033{left:448.456785px;}
.xb_c01033{left:460.480335px;}
.x58_c01033{left:464.024535px;}
.x2f_c01033{left:469.687335px;}
.x3e_c01033{left:480.696135px;}
.x44_c01033{left:481.908885px;}
.x5d_c01033{left:488.754735px;}
.x32_c01033{left:493.021635px;}
.x23_c01033{left:504.421485px;}
.x16_c01033{left:513.875985px;}
.x5c_c01033{left:516.390585px;}
.x4f_c01033{left:525.632235px;}
.x3f_c01033{left:536.160885px;}
.xc_c01033{left:537.898335px;}
.x36_c01033{left:547.194435px;}
.x2b_c01033{left:558.425985px;}
.x4b_c01033{left:559.609035px;}
.x24_c01033{left:581.780085px;}
.x40_c01033{left:583.101735px;}
.x5f_c01033{left:590.076285px;}
.x37_c01033{left:591.392985px;}
.x5e_c01033{left:592.561185px;}
.xd_c01033{left:602.258235px;}
.x17_c01033{left:603.396735px;}
.x30_c01033{left:612.895785px;}
.x48_c01033{left:613.999635px;}
.xe_c01033{left:615.217335px;}
.x2c_c01033{left:624.894585px;}
.x25_c01033{left:635.794485px;}
.x2_c01033{left:659.059485px;}
.x38_c01033{left:669.112935px;}
.xf_c01033{left:680.478135px;}
.x33_c01033{left:689.932635px;}
.x4c_c01033{left:691.922535px;}
.x60_c01033{left:697.912035px;}
.x61_c01033{left:699.441585px;}
.x26_c01033{left:702.218535px;}
.x39_c01033{left:714.004485px;}
@media print{
.v0_c01033{vertical-align:0.000000pt;}
.ls18_c01033{letter-spacing:-2.624160pt;}
.lsd_c01033{letter-spacing:-2.439360pt;}
.lse_c01033{letter-spacing:-2.266880pt;}
.lsf_c01033{letter-spacing:-2.242246pt;}
.ls10_c01033{letter-spacing:-1.792560pt;}
.lsc_c01033{letter-spacing:-1.675526pt;}
.ls11_c01033{letter-spacing:-1.522048pt;}
.ls12_c01033{letter-spacing:-0.323840pt;}
.ls3_c01033{letter-spacing:0.000000pt;}
.ls0_c01033{letter-spacing:0.330317pt;}
.ls1_c01033{letter-spacing:0.654157pt;}
.ls7_c01033{letter-spacing:0.794534pt;}
.ls13_c01033{letter-spacing:1.265510pt;}
.ls17_c01033{letter-spacing:1.388112pt;}
.ls5_c01033{letter-spacing:1.698400pt;}
.ls2_c01033{letter-spacing:1.876582pt;}
.ls9_c01033{letter-spacing:2.042093pt;}
.lsb_c01033{letter-spacing:2.892384pt;}
.ls16_c01033{letter-spacing:3.088800pt;}
.ls8_c01033{letter-spacing:3.132800pt;}
.ls6_c01033{letter-spacing:3.326400pt;}
.ls4_c01033{letter-spacing:3.484800pt;}
.ls19_c01033{letter-spacing:27.878400pt;}
.ls15_c01033{letter-spacing:45.619376pt;}
.lsa_c01033{letter-spacing:46.886576pt;}
.ls14_c01033{letter-spacing:77.299376pt;}
.ws0_c01033{word-spacing:0.000000pt;}
._2_c01033{margin-left:-2.509760pt;}
._0_c01033{width:3.973376pt;}
._3_c01033{width:13.800160pt;}
._5_c01033{width:22.960256pt;}
._1_c01033{width:29.550400pt;}
._4_c01033{width:38.478669pt;}
.fse_c01033{font-size:19.712000pt;}
.fs14_c01033{font-size:20.592000pt;}
.fs13_c01033{font-size:24.640000pt;}
.fs15_c01033{font-size:27.878400pt;}
.fs3_c01033{font-size:33.968000pt;}
.fs16_c01033{font-size:39.424000pt;}
.fsf_c01033{font-size:45.619376pt;}
.fs6_c01033{font-size:46.886576pt;}
.fs7_c01033{font-size:47.872176pt;}
.fsa_c01033{font-size:51.216000pt;}
.fs2_c01033{font-size:57.376000pt;}
.fs11_c01033{font-size:58.080000pt;}
.fsb_c01033{font-size:59.136000pt;}
.fs10_c01033{font-size:61.776000pt;}
.fs5_c01033{font-size:62.656000pt;}
.fs9_c01033{font-size:64.064176pt;}
.fs8_c01033{font-size:64.768000pt;}
.fs4_c01033{font-size:66.528000pt;}
.fs1_c01033{font-size:69.696000pt;}
.fs12_c01033{font-size:74.976000pt;}
.fsd_c01033{font-size:77.299376pt;}
.fs0_c01033{font-size:78.848000pt;}
.fsc_c01033{font-size:85.184176pt;}
.y23_c01033{bottom:-1.028680pt;}
.y0_c01033{bottom:0.000000pt;}
.y22_c01033{bottom:20.830520pt;}
.y21_c01033{bottom:30.330120pt;}
.y20_c01033{bottom:41.418120pt;}
.y1f_c01033{bottom:60.109320pt;}
.y1_c01033{bottom:68.000000pt;}
.y1e_c01033{bottom:117.133320pt;}
.y1d_c01033{bottom:174.478520pt;}
.y1a_c01033{bottom:174.795320pt;}
.y16_c01033{bottom:175.112120pt;}
.y19_c01033{bottom:188.734520pt;}
.y18_c01033{bottom:228.963720pt;}
.y1c_c01033{bottom:229.918520pt;}
.y15_c01033{bottom:234.353720pt;}
.y14_c01033{bottom:266.667320pt;}
.y1b_c01033{bottom:286.304520pt;}
.y13_c01033{bottom:287.892920pt;}
.y17_c01033{bottom:288.205320pt;}
.y12_c01033{bottom:343.966520pt;}
.y11_c01033{bottom:371.844920pt;}
.y10_c01033{bottom:400.352520pt;}
.yf_c01033{bottom:428.552120pt;}
.ye_c01033{bottom:485.259320pt;}
.yd_c01033{bottom:513.450120pt;}
.yc_c01033{bottom:541.649720pt;}
.yb_c01033{bottom:569.844920pt;}
.ya_c01033{bottom:597.718920pt;}
.y9_c01033{bottom:625.597320pt;}
.y8_c01033{bottom:653.796920pt;}
.y7_c01033{bottom:681.354120pt;}
.y6_c01033{bottom:710.504120pt;}
.y5_c01033{bottom:767.528120pt;}
.y4_c01033{bottom:795.406520pt;}
.y3_c01033{bottom:824.235320pt;}
.y2_c01033{bottom:944.614920pt;}
.h18_c01033{height:18.567014pt;}
.h10_c01033{height:20.559000pt;}
.h17_c01033{height:21.476813pt;}
.h15_c01033{height:25.698750pt;}
.h11_c01033{height:30.382504pt;}
.h8_c01033{height:31.226460pt;}
.h5_c01033{height:35.427563pt;}
.h19_c01033{height:41.118000pt;}
.h9_c01033{height:46.983923pt;}
.hf_c01033{height:51.481384pt;}
.hc_c01033{height:53.416688pt;}
.hd_c01033{height:58.038750pt;}
.h4_c01033{height:59.841375pt;}
.h13_c01033{height:60.575625pt;}
.h12_c01033{height:60.629766pt;}
.h7_c01033{height:61.493438pt;}
.h16_c01033{height:61.677000pt;}
.hb_c01033{height:62.844204pt;}
.ha_c01033{height:63.566250pt;}
.h6_c01033{height:65.293594pt;}
.h3_c01033{height:68.402813pt;}
.h14_c01033{height:73.584844pt;}
.h2_c01033{height:77.385000pt;}
.he_c01033{height:88.844434pt;}
.h1_c01033{height:986.666667pt;}
.h0_c01033{height:1122.666667pt;}
.w1_c01033{width:689.333333pt;}
.w0_c01033{width:793.333333pt;}
.x0_c01033{left:0.000000pt;}
.x1_c01033{left:52.000000pt;}
.x27_c01033{left:53.809053pt;}
.x10_c01033{left:55.503053pt;}
.x3_c01033{left:56.484253pt;}
.x4_c01033{left:65.587853pt;}
.x41_c01033{left:83.333053pt;}
.x45_c01033{left:93.153853pt;}
.x1e_c01033{left:102.288253pt;}
.x5_c01033{left:103.401453pt;}
.x4d_c01033{left:113.107853pt;}
.x1f_c01033{left:122.928653pt;}
.x49_c01033{left:124.257453pt;}
.x18_c01033{left:132.749453pt;}
.x6_c01033{left:134.034253pt;}
.x11_c01033{left:142.442653pt;}
.x34_c01033{left:152.157853pt;}
.x4a_c01033{left:159.136253pt;}
.x7_c01033{left:161.842253pt;}
.x51_c01033{left:170.356253pt;}
.x12_c01033{left:171.495853pt;}
.x20_c01033{left:172.732253pt;}
.x46_c01033{left:181.893053pt;}
.x19_c01033{left:190.952653pt;}
.x3a_c01033{left:192.070253pt;}
.x42_c01033{left:200.487453pt;}
.x1a_c01033{left:210.308253pt;}
.x50_c01033{left:211.408253pt;}
.x4e_c01033{left:220.133453pt;}
.x2d_c01033{left:221.519453pt;}
.x47_c01033{left:231.274253pt;}
.x8_c01033{left:240.435053pt;}
.x3b_c01033{left:250.660653pt;}
.x21_c01033{left:261.101853pt;}
.x9_c01033{left:270.971053pt;}
.x52_c01033{left:272.163453pt;}
.x3c_c01033{left:280.479453pt;}
.x55_c01033{left:287.295053pt;}
.x31_c01033{left:290.313453pt;}
.x13_c01033{left:291.219853pt;}
.x1b_c01033{left:292.539853pt;}
.x56_c01033{left:298.972653pt;}
.x53_c01033{left:300.552253pt;}
.x62_c01033{left:302.061453pt;}
.x22_c01033{left:309.145453pt;}
.x43_c01033{left:310.527053pt;}
.x14_c01033{left:318.970653pt;}
.x2e_c01033{left:320.374253pt;}
.x5a_c01033{left:330.098253pt;}
.x1c_c01033{left:331.937453pt;}
.x54_c01033{left:333.376253pt;}
.x59_c01033{left:336.988653pt;}
.x28_c01033{left:338.898253pt;}
.x5b_c01033{left:349.902653pt;}
.x1d_c01033{left:351.103853pt;}
.x29_c01033{left:359.934653pt;}
.xa_c01033{left:369.803853pt;}
.x2a_c01033{left:387.707453pt;}
.x35_c01033{left:388.772253pt;}
.x3d_c01033{left:390.250653pt;}
.x57_c01033{left:393.594653pt;}
.x15_c01033{left:398.628253pt;}
.xb_c01033{left:409.315853pt;}
.x58_c01033{left:412.466253pt;}
.x2f_c01033{left:417.499853pt;}
.x3e_c01033{left:427.285453pt;}
.x44_c01033{left:428.363453pt;}
.x5d_c01033{left:434.448653pt;}
.x32_c01033{left:438.241453pt;}
.x23_c01033{left:448.374653pt;}
.x16_c01033{left:456.778653pt;}
.x5c_c01033{left:459.013853pt;}
.x4f_c01033{left:467.228653pt;}
.x3f_c01033{left:476.587453pt;}
.xc_c01033{left:478.131853pt;}
.x36_c01033{left:486.395053pt;}
.x2b_c01033{left:496.378653pt;}
.x4b_c01033{left:497.430253pt;}
.x24_c01033{left:517.137853pt;}
.x40_c01033{left:518.312653pt;}
.x5f_c01033{left:524.512253pt;}
.x37_c01033{left:525.682653pt;}
.x5e_c01033{left:526.721053pt;}
.xd_c01033{left:535.340653pt;}
.x17_c01033{left:536.352653pt;}
.x30_c01033{left:544.796253pt;}
.x48_c01033{left:545.777453pt;}
.xe_c01033{left:546.859853pt;}
.x2c_c01033{left:555.461853pt;}
.x25_c01033{left:565.150653pt;}
.x2_c01033{left:585.830653pt;}
.x38_c01033{left:594.767053pt;}
.xf_c01033{left:604.869453pt;}
.x33_c01033{left:613.273453pt;}
.x4c_c01033{left:615.042253pt;}
.x60_c01033{left:620.366253pt;}
.x61_c01033{left:621.725853pt;}
.x26_c01033{left:624.194253pt;}
.x39_c01033{left:634.670653pt;}
}





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

.ir_c01034:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01034{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01034;src:url('chunks/assets/font_98979e884f1c9337f66b9851.woff2')format("woff");}.ff1_c01034{font-family:ff1_c01034;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01034;src:url('chunks/assets/font_a6abaa9c1ad58d8d43745055.woff2')format("woff");}.ff2_c01034{font-family:ff2_c01034;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01034;src:url('chunks/assets/font_a2b26be13b6f1016173b7353.woff2')format("woff");}.ff3_c01034{font-family:ff3_c01034;line-height:0.666000;font-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_c01034{transform:matrix(0.181098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181098,0.000000,0.000000,0.250000,0,0);}
.m59_c01034{transform:matrix(0.185928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185928,0.000000,0.000000,0.250000,0,0);}
.m89_c01034{transform:matrix(0.198718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198718,0.000000,0.000000,0.250000,0,0);}
.m25_c01034{transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);}
.m70_c01034{transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);}
.m0_c01034{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m15_c01034{transform:matrix(0.251965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251965,0.000000,0.000000,0.250000,0,0);}
.m22_c01034{transform:matrix(0.254313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254313,0.000000,0.000000,0.250000,0,0);}
.m24_c01034{transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);}
.m73_c01034{transform:matrix(0.256860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256860,0.000000,0.000000,0.250000,0,0);}
.m2d_c01034{transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);}
.m1b_c01034{transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);}
.mad_c01034{transform:matrix(0.258186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258186,0.000000,0.000000,0.250000,0,0);}
.m1_c01034{transform:matrix(0.258290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258290,0.000000,0.000000,0.250000,0,0);}
.mb6_c01034{transform:matrix(0.258675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258675,0.000000,0.000000,0.250000,0,0);}
.m5e_c01034{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m86_c01034{transform:matrix(0.258853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258853,0.000000,0.000000,0.250000,0,0);}
.m82_c01034{transform:matrix(0.259893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259893,0.000000,0.000000,0.250000,0,0);}
.m2a_c01034{transform:matrix(0.260559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260559,0.000000,0.000000,0.250000,0,0);}
.mae_c01034{transform:matrix(0.260591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260591,0.000000,0.000000,0.250000,0,0);}
.m9c_c01034{transform:matrix(0.261280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261280,0.000000,0.000000,0.250000,0,0);}
.m48_c01034{transform:matrix(0.263102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263102,0.000000,0.000000,0.250000,0,0);}
.ma_c01034{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m6c_c01034{transform:matrix(0.264619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264619,0.000000,0.000000,0.250000,0,0);}
.m2c_c01034{transform:matrix(0.265477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265477,0.000000,0.000000,0.250000,0,0);}
.m8c_c01034{transform:matrix(0.265744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265744,0.000000,0.000000,0.250000,0,0);}
.m4f_c01034{transform:matrix(0.265953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265953,0.000000,0.000000,0.250000,0,0);}
.m7f_c01034{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.ma2_c01034{transform:matrix(0.266706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266706,0.000000,0.000000,0.250000,0,0);}
.m35_c01034{transform:matrix(0.267515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267515,0.000000,0.000000,0.250000,0,0);}
.maf_c01034{transform:matrix(0.267909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267909,0.000000,0.000000,0.250000,0,0);}
.ma7_c01034{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m9f_c01034{transform:matrix(0.268848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268848,0.000000,0.000000,0.250000,0,0);}
.m60_c01034{transform:matrix(0.270132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270132,0.000000,0.000000,0.250000,0,0);}
.m74_c01034{transform:matrix(0.270873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270873,0.000000,0.000000,0.250000,0,0);}
.m8_c01034{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m6f_c01034{transform:matrix(0.270914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270914,0.000000,0.000000,0.250000,0,0);}
.m5_c01034{transform:matrix(0.272231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272231,0.000000,0.000000,0.250000,0,0);}
.m83_c01034{transform:matrix(0.272455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272455,0.000000,0.000000,0.250000,0,0);}
.md_c01034{transform:matrix(0.272656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272656,0.000000,0.000000,0.250000,0,0);}
.m97_c01034{transform:matrix(0.273486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273486,0.000000,0.000000,0.250000,0,0);}
.m99_c01034{transform:matrix(0.273617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273617,0.000000,0.000000,0.250000,0,0);}
.m20_c01034{transform:matrix(0.273789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273789,0.000000,0.000000,0.250000,0,0);}
.m75_c01034{transform:matrix(0.274027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274027,0.000000,0.000000,0.250000,0,0);}
.m23_c01034{transform:matrix(0.274205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274205,0.000000,0.000000,0.250000,0,0);}
.m32_c01034{transform:matrix(0.274757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274757,0.000000,0.000000,0.250000,0,0);}
.m55_c01034{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m98_c01034{transform:matrix(0.275884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275884,0.000000,0.000000,0.250000,0,0);}
.ma8_c01034{transform:matrix(0.276396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276396,0.000000,0.000000,0.250000,0,0);}
.mb1_c01034{transform:matrix(0.276482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276482,0.000000,0.000000,0.250000,0,0);}
.m1d_c01034{transform:matrix(0.276489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276489,0.000000,0.000000,0.250000,0,0);}
.m42_c01034{transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);}
.m9_c01034{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.maa_c01034{transform:matrix(0.277390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277390,0.000000,0.000000,0.250000,0,0);}
.m92_c01034{transform:matrix(0.277658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277658,0.000000,0.000000,0.250000,0,0);}
.m27_c01034{transform:matrix(0.277678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277678,0.000000,0.000000,0.250000,0,0);}
.m7_c01034{transform:matrix(0.277767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277767,0.000000,0.000000,0.250000,0,0);}
.m38_c01034{transform:matrix(0.278029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278029,0.000000,0.000000,0.250000,0,0);}
.m44_c01034{transform:matrix(0.278218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278218,0.000000,0.000000,0.250000,0,0);}
.m3a_c01034{transform:matrix(0.278245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278245,0.000000,0.000000,0.250000,0,0);}
.m64_c01034{transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);}
.m6a_c01034{transform:matrix(0.278623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278623,0.000000,0.000000,0.250000,0,0);}
.ma6_c01034{transform:matrix(0.278976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278976,0.000000,0.000000,0.250000,0,0);}
.mc_c01034{transform:matrix(0.279027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279027,0.000000,0.000000,0.250000,0,0);}
.m6b_c01034{transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);}
.m9b_c01034{transform:matrix(0.279532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279532,0.000000,0.000000,0.250000,0,0);}
.m72_c01034{transform:matrix(0.280088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280088,0.000000,0.000000,0.250000,0,0);}
.m2b_c01034{transform:matrix(0.280093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280093,0.000000,0.000000,0.250000,0,0);}
.m4a_c01034{transform:matrix(0.280523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280523,0.000000,0.000000,0.250000,0,0);}
.m3d_c01034{transform:matrix(0.280900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280900,0.000000,0.000000,0.250000,0,0);}
.me_c01034{transform:matrix(0.281043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281043,0.000000,0.000000,0.250000,0,0);}
.m8a_c01034{transform:matrix(0.281087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281087,0.000000,0.000000,0.250000,0,0);}
.m84_c01034{transform:matrix(0.281425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281425,0.000000,0.000000,0.250000,0,0);}
.m21_c01034{transform:matrix(0.283042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283042,0.000000,0.000000,0.250000,0,0);}
.m67_c01034{transform:matrix(0.283363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283363,0.000000,0.000000,0.250000,0,0);}
.ma9_c01034{transform:matrix(0.283405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283405,0.000000,0.000000,0.250000,0,0);}
.m53_c01034{transform:matrix(0.284537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284537,0.000000,0.000000,0.250000,0,0);}
.ma3_c01034{transform:matrix(0.285290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285290,0.000000,0.000000,0.250000,0,0);}
.mbc_c01034{transform:matrix(0.285404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285404,0.000000,0.000000,0.250000,0,0);}
.m6d_c01034{transform:matrix(0.285468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285468,0.000000,0.000000,0.250000,0,0);}
.m6e_c01034{transform:matrix(0.286535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286535,0.000000,0.000000,0.250000,0,0);}
.m41_c01034{transform:matrix(0.287283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287283,0.000000,0.000000,0.250000,0,0);}
.m63_c01034{transform:matrix(0.287284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287284,0.000000,0.000000,0.250000,0,0);}
.m57_c01034{transform:matrix(0.287335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287335,0.000000,0.000000,0.250000,0,0);}
.m87_c01034{transform:matrix(0.287485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287485,0.000000,0.000000,0.250000,0,0);}
.m61_c01034{transform:matrix(0.288571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288571,0.000000,0.000000,0.250000,0,0);}
.m19_c01034{transform:matrix(0.289464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289464,0.000000,0.000000,0.250000,0,0);}
.m2e_c01034{transform:matrix(0.289650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289650,0.000000,0.000000,0.250000,0,0);}
.ma4_c01034{transform:matrix(0.289940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289940,0.000000,0.000000,0.250000,0,0);}
.m81_c01034{transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);}
.m80_c01034{transform:matrix(0.290364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290364,0.000000,0.000000,0.250000,0,0);}
.m16_c01034{transform:matrix(0.290386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290386,0.000000,0.000000,0.250000,0,0);}
.m8d_c01034{transform:matrix(0.290406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290406,0.000000,0.000000,0.250000,0,0);}
.m50_c01034{transform:matrix(0.290480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290480,0.000000,0.000000,0.250000,0,0);}
.m17_c01034{transform:matrix(0.290591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290591,0.000000,0.000000,0.250000,0,0);}
.m8f_c01034{transform:matrix(0.291252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291252,0.000000,0.000000,0.250000,0,0);}
.m4e_c01034{transform:matrix(0.291573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291573,0.000000,0.000000,0.250000,0,0);}
.mbb_c01034{transform:matrix(0.292306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292306,0.000000,0.000000,0.250000,0,0);}
.m31_c01034{transform:matrix(0.293425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293425,0.000000,0.000000,0.250000,0,0);}
.m5d_c01034{transform:matrix(0.294984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294984,0.000000,0.000000,0.250000,0,0);}
.m13_c01034{transform:matrix(0.295212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295212,0.000000,0.000000,0.250000,0,0);}
.m88_c01034{transform:matrix(0.295302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295302,0.000000,0.000000,0.250000,0,0);}
.m11_c01034{transform:matrix(0.295581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295581,0.000000,0.000000,0.250000,0,0);}
.m28_c01034{transform:matrix(0.295636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295636,0.000000,0.000000,0.250000,0,0);}
.m18_c01034{transform:matrix(0.295702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295702,0.000000,0.000000,0.250000,0,0);}
.m58_c01034{transform:matrix(0.295745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295745,0.000000,0.000000,0.250000,0,0);}
.m52_c01034{transform:matrix(0.295976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295976,0.000000,0.000000,0.250000,0,0);}
.m47_c01034{transform:matrix(0.296859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296859,0.000000,0.000000,0.250000,0,0);}
.m33_c01034{transform:matrix(0.297801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297801,0.000000,0.000000,0.250000,0,0);}
.mb7_c01034{transform:matrix(0.297812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297812,0.000000,0.000000,0.250000,0,0);}
.m68_c01034{transform:matrix(0.297835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297835,0.000000,0.000000,0.250000,0,0);}
.m8b_c01034{transform:matrix(0.298177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298177,0.000000,0.000000,0.250000,0,0);}
.m51_c01034{transform:matrix(0.298350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298350,0.000000,0.000000,0.250000,0,0);}
.mb0_c01034{transform:matrix(0.298761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298761,0.000000,0.000000,0.250000,0,0);}
.mb5_c01034{transform:matrix(0.298973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298973,0.000000,0.000000,0.250000,0,0);}
.m93_c01034{transform:matrix(0.299508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299508,0.000000,0.000000,0.250000,0,0);}
.mb_c01034{transform:matrix(0.299905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299905,0.000000,0.000000,0.250000,0,0);}
.ma5_c01034{transform:matrix(0.300113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300113,0.000000,0.000000,0.250000,0,0);}
.m1e_c01034{transform:matrix(0.300222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300222,0.000000,0.000000,0.250000,0,0);}
.m4d_c01034{transform:matrix(0.300335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300335,0.000000,0.000000,0.250000,0,0);}
.m3_c01034{transform:matrix(0.300484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300484,0.000000,0.000000,0.250000,0,0);}
.mab_c01034{transform:matrix(0.300679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300679,0.000000,0.000000,0.250000,0,0);}
.m85_c01034{transform:matrix(0.301510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301510,0.000000,0.000000,0.250000,0,0);}
.m26_c01034{transform:matrix(0.301542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301542,0.000000,0.000000,0.250000,0,0);}
.m36_c01034{transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);}
.m91_c01034{transform:matrix(0.301848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301848,0.000000,0.000000,0.250000,0,0);}
.m6_c01034{transform:matrix(0.303127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303127,0.000000,0.000000,0.250000,0,0);}
.m90_c01034{transform:matrix(0.303400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303400,0.000000,0.000000,0.250000,0,0);}
.m29_c01034{transform:matrix(0.304063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304063,0.000000,0.000000,0.250000,0,0);}
.m7e_c01034{transform:matrix(0.304200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304200,0.000000,0.000000,0.250000,0,0);}
.m10_c01034{transform:matrix(0.304765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304765,0.000000,0.000000,0.250000,0,0);}
.m66_c01034{transform:matrix(0.304833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304833,0.000000,0.000000,0.250000,0,0);}
.m62_c01034{transform:matrix(0.304898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304898,0.000000,0.000000,0.250000,0,0);}
.m9e_c01034{transform:matrix(0.305219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305219,0.000000,0.000000,0.250000,0,0);}
.m12_c01034{transform:matrix(0.305845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305845,0.000000,0.000000,0.250000,0,0);}
.m1f_c01034{transform:matrix(0.305924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305924,0.000000,0.000000,0.250000,0,0);}
.m54_c01034{transform:matrix(0.306072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306072,0.000000,0.000000,0.250000,0,0);}
.m46_c01034{transform:matrix(0.306627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306627,0.000000,0.000000,0.250000,0,0);}
.m9d_c01034{transform:matrix(0.306895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306895,0.000000,0.000000,0.250000,0,0);}
.m94_c01034{transform:matrix(0.307487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307487,0.000000,0.000000,0.250000,0,0);}
.m9a_c01034{transform:matrix(0.308231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308231,0.000000,0.000000,0.250000,0,0);}
.m65_c01034{transform:matrix(0.308752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308752,0.000000,0.000000,0.250000,0,0);}
.m69_c01034{transform:matrix(0.308756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308756,0.000000,0.000000,0.250000,0,0);}
.mb4_c01034{transform:matrix(0.310001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310001,0.000000,0.000000,0.250000,0,0);}
.m37_c01034{transform:matrix(0.310335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310335,0.000000,0.000000,0.250000,0,0);}
.m71_c01034{transform:matrix(0.310350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310350,0.000000,0.000000,0.250000,0,0);}
.mac_c01034{transform:matrix(0.310814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310814,0.000000,0.000000,0.250000,0,0);}
.m3c_c01034{transform:matrix(0.311477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311477,0.000000,0.000000,0.250000,0,0);}
.m49_c01034{transform:matrix(0.312253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312253,0.000000,0.000000,0.250000,0,0);}
.ma1_c01034{transform:matrix(0.312679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312679,0.000000,0.000000,0.250000,0,0);}
.m79_c01034{transform:matrix(0.312874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312874,0.000000,0.000000,0.250000,0,0);}
.m43_c01034{transform:matrix(0.313301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313301,0.000000,0.000000,0.250000,0,0);}
.mb3_c01034{transform:matrix(0.313838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313838,0.000000,0.000000,0.250000,0,0);}
.m4b_c01034{transform:matrix(0.313900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313900,0.000000,0.000000,0.250000,0,0);}
.m3f_c01034{transform:matrix(0.314815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314815,0.000000,0.000000,0.250000,0,0);}
.m76_c01034{transform:matrix(0.315917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315917,0.000000,0.000000,0.250000,0,0);}
.m2f_c01034{transform:matrix(0.317610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317610,0.000000,0.000000,0.250000,0,0);}
.m5c_c01034{transform:matrix(0.318723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318723,0.000000,0.000000,0.250000,0,0);}
.m1a_c01034{transform:matrix(0.319176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319176,0.000000,0.000000,0.250000,0,0);}
.m4c_c01034{transform:matrix(0.319218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319218,0.000000,0.000000,0.250000,0,0);}
.ma0_c01034{transform:matrix(0.319676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319676,0.000000,0.000000,0.250000,0,0);}
.m7c_c01034{transform:matrix(0.320113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320113,0.000000,0.000000,0.250000,0,0);}
.m7b_c01034{transform:matrix(0.320521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320521,0.000000,0.000000,0.250000,0,0);}
.m5f_c01034{transform:matrix(0.321461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321461,0.000000,0.000000,0.250000,0,0);}
.m8e_c01034{transform:matrix(0.324828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324828,0.000000,0.000000,0.250000,0,0);}
.m95_c01034{transform:matrix(0.326363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326363,0.000000,0.000000,0.250000,0,0);}
.mb8_c01034{transform:matrix(0.326515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326515,0.000000,0.000000,0.250000,0,0);}
.m4_c01034{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m56_c01034{transform:matrix(0.327518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327518,0.000000,0.000000,0.250000,0,0);}
.m5a_c01034{transform:matrix(0.329328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329328,0.000000,0.000000,0.250000,0,0);}
.mb2_c01034{transform:matrix(0.329458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329458,0.000000,0.000000,0.250000,0,0);}
.m96_c01034{transform:matrix(0.329646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329646,0.000000,0.000000,0.250000,0,0);}
.mf_c01034{transform:matrix(0.329940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329940,0.000000,0.000000,0.250000,0,0);}
.mba_c01034{transform:matrix(0.330164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330164,0.000000,0.000000,0.250000,0,0);}
.m40_c01034{transform:matrix(0.330859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330859,0.000000,0.000000,0.250000,0,0);}
.m7a_c01034{transform:matrix(0.331220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331220,0.000000,0.000000,0.250000,0,0);}
.m7d_c01034{transform:matrix(0.331536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331536,0.000000,0.000000,0.250000,0,0);}
.m77_c01034{transform:matrix(0.332348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332348,0.000000,0.000000,0.250000,0,0);}
.m78_c01034{transform:matrix(0.332499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332499,0.000000,0.000000,0.250000,0,0);}
.m3b_c01034{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m39_c01034{transform:matrix(0.333821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333821,0.000000,0.000000,0.250000,0,0);}
.m5b_c01034{transform:matrix(0.334644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334644,0.000000,0.000000,0.250000,0,0);}
.mb9_c01034{transform:matrix(0.338886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338886,0.000000,0.000000,0.250000,0,0);}
.m45_c01034{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m2_c01034{transform:matrix(0.341318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341318,0.000000,0.000000,0.250000,0,0);}
.m3e_c01034{transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);}
.m1c_c01034{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m30_c01034{transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);}
.m34_c01034{transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);}
.v0_c01034{vertical-align:0.000000px;}
.ls7_c01034{letter-spacing:-2.744280px;}
.lsb_c01034{letter-spacing:-1.607364px;}
.ls0_c01034{letter-spacing:0.000000px;}
.ls3_c01034{letter-spacing:0.893851px;}
.ls14_c01034{letter-spacing:1.856963px;}
.lsc_c01034{letter-spacing:2.446330px;}
.lsf_c01034{letter-spacing:2.574000px;}
.ls6_c01034{letter-spacing:2.634509px;}
.ls10_c01034{letter-spacing:3.227400px;}
.ls5_c01034{letter-spacing:3.306610px;}
.ls8_c01034{letter-spacing:3.405610px;}
.ls15_c01034{letter-spacing:3.524400px;}
.ls13_c01034{letter-spacing:3.544200px;}
.ls11_c01034{letter-spacing:3.603610px;}
.lse_c01034{letter-spacing:3.880810px;}
.ls2_c01034{letter-spacing:3.920400px;}
.ls9_c01034{letter-spacing:3.979810px;}
.ls1_c01034{letter-spacing:4.296610px;}
.lsd_c01034{letter-spacing:4.336200px;}
.lsa_c01034{letter-spacing:4.494610px;}
.ls12_c01034{letter-spacing:55.598598px;}
.ls4_c01034{letter-spacing:58.449798px;}
.sc__c01034{text-shadow:none;}
.sc0_c01034{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01034{-webkit-text-stroke:0px transparent;}
.sc0_c01034{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01034{word-spacing:-19.602000px;}
.ws1_c01034{word-spacing:0.000000px;}
.fc0_c01034{color:transparent;}
.fs14_c01034{font-size:22.176000px;}
.fs0_c01034{font-size:33.462000px;}
.fs13_c01034{font-size:45.738000px;}
.fs16_c01034{font-size:50.292000px;}
.fse_c01034{font-size:51.480000px;}
.fs12_c01034{font-size:55.598598px;}
.fs5_c01034{font-size:58.449798px;}
.fsf_c01034{font-size:64.548000px;}
.fs4_c01034{font-size:66.132198px;}
.fs11_c01034{font-size:66.330000px;}
.fs7_c01034{font-size:68.112198px;}
.fs15_c01034{font-size:70.488000px;}
.fsa_c01034{font-size:70.884000px;}
.fs10_c01034{font-size:72.072198px;}
.fs6_c01034{font-size:74.844000px;}
.fsd_c01034{font-size:77.616198px;}
.fs2_c01034{font-size:78.408000px;}
.fs3_c01034{font-size:78.804000px;}
.fsb_c01034{font-size:79.200000px;}
.fs8_c01034{font-size:79.596198px;}
.fs1_c01034{font-size:85.932198px;}
.fsc_c01034{font-size:86.724000px;}
.fs9_c01034{font-size:89.892198px;}
.y1d_c01034{bottom:-2.949165px;}
.y0_c01034{bottom:0.000000px;}
.y1_c01034{bottom:76.500000px;}
.y1c_c01034{bottom:129.992985px;}
.y1b_c01034{bottom:161.361135px;}
.y1a_c01034{bottom:225.156735px;}
.y19_c01034{bottom:257.945535px;}
.y18_c01034{bottom:278.968185px;}
.y17_c01034{bottom:289.665135px;}
.y16_c01034{bottom:321.379785px;}
.y15_c01034{bottom:353.460735px;}
.y14_c01034{bottom:384.823935px;}
.y13_c01034{bottom:416.899935px;}
.y12_c01034{bottom:448.258185px;}
.y11_c01034{bottom:479.269935px;}
.y10_c01034{bottom:510.633135px;}
.yf_c01034{bottom:543.060585px;}
.ye_c01034{bottom:574.428735px;}
.yd_c01034{bottom:638.580735px;}
.yc_c01034{bottom:669.943935px;}
.yb_c01034{bottom:701.658585px;}
.ya_c01034{bottom:732.665385px;}
.y9_c01034{bottom:764.746335px;}
.y8_c01034{bottom:795.753135px;}
.y7_c01034{bottom:827.116335px;}
.y6_c01034{bottom:858.479535px;}
.y2_c01034{bottom:888.060735px;}
.y5_c01034{bottom:889.837785px;}
.y4_c01034{bottom:921.200985px;}
.y3_c01034{bottom:1057.345785px;}
.h17_c01034{height:23.128875px;}
.h2_c01034{height:34.899820px;}
.h15_c01034{height:37.028666px;}
.h7_c01034{height:38.927565px;}
.h16_c01034{height:44.889346px;}
.h18_c01034{height:49.358848px;}
.h11_c01034{height:50.524805px;}
.h9_c01034{height:66.848397px;}
.h12_c01034{height:67.321547px;}
.h6_c01034{height:68.973816px;}
.h14_c01034{height:69.180117px;}
.hc_c01034{height:69.568770px;}
.h13_c01034{height:70.734921px;}
.hd_c01034{height:71.038894px;}
.h8_c01034{height:73.455293px;}
.h10_c01034{height:76.176054px;}
.h4_c01034{height:76.953164px;}
.h5_c01034{height:77.341816px;}
.he_c01034{height:77.730469px;}
.ha_c01034{height:78.119315px;}
.h3_c01034{height:84.337753px;}
.hf_c01034{height:85.114863px;}
.hb_c01034{height:88.224276px;}
.h1_c01034{height:1110.000000px;}
.h0_c01034{height:1263.000000px;}
.w1_c01034{width:775.500000px;}
.w0_c01034{width:892.500000px;}
.x0_c01034{left:0.000000px;}
.x2_c01034{left:31.349985px;}
.x1_c01034{left:58.500000px;}
.x3b_c01034{left:66.925635px;}
.xf_c01034{left:68.380935px;}
.x4_c01034{left:69.519435px;}
.x25_c01034{left:70.529235px;}
.x1d_c01034{left:101.006385px;}
.x26_c01034{left:110.436135px;}
.x4f_c01034{left:112.025085px;}
.x2d_c01034{left:121.974585px;}
.x17_c01034{left:123.400185px;}
.x32_c01034{left:133.448685px;}
.x49_c01034{left:135.151485px;}
.x4d_c01034{left:142.507185px;}
.x1e_c01034{left:144.086235px;}
.x10_c01034{left:154.634685px;}
.x18_c01034{left:156.089985px;}
.x36_c01034{left:166.806735px;}
.x42_c01034{left:176.404785px;}
.x11_c01034{left:177.968985px;}
.x57_c01034{left:189.690585px;}
.x3e_c01034{left:199.951935px;}
.x53_c01034{left:209.866785px;}
.x27_c01034{left:211.450785px;}
.x33_c01034{left:221.801235px;}
.x5_c01034{left:222.835785px;}
.x37_c01034{left:233.493135px;}
.x59_c01034{left:243.373335px;}
.x50_c01034{left:244.635585px;}
.x1f_c01034{left:254.426685px;}
.x6_c01034{left:256.312635px;}
.x38_c01034{left:266.663085px;}
.x20_c01034{left:277.741185px;}
.x19_c01034{left:287.745135px;}
.x7_c01034{left:289.502385px;}
.x4a_c01034{left:301.189335px;}
.x2e_c01034{left:310.005285px;}
.x12_c01034{left:311.420985px;}
.x13_c01034{left:322.108035px;}
.x46_c01034{left:333.245535px;}
.x34_c01034{left:344.981985px;}
.x2f_c01034{left:355.471035px;}
.x1a_c01034{left:364.831485px;}
.x39_c01034{left:366.519435px;}
.x21_c01034{left:376.657035px;}
.x14_c01034{left:378.567735px;}
.x4b_c01034{left:389.205285px;}
.x28_c01034{left:400.511085px;}
.x47_c01034{left:411.237735px;}
.x29_c01034{left:431.908935px;}
.x3f_c01034{left:433.438485px;}
.x8_c01034{left:443.308785px;}
.x1b_c01034{left:445.155135px;}
.x4c_c01034{left:455.619435px;}
.x2a_c01034{left:466.118385px;}
.x55_c01034{left:468.623085px;}
.x9_c01034{left:477.349935px;}
.x56_c01034{left:478.394385px;}
.x22_c01034{left:488.759685px;}
.x15_c01034{left:499.095285px;}
.x23_c01034{left:508.465635px;}
.x1c_c01034{left:509.599185px;}
.x51_c01034{left:521.553435px;}
.xa_c01034{left:533.284935px;}
.x30_c01034{left:542.392935px;}
.x44_c01034{left:543.615585px;}
.x5a_c01034{left:553.114635px;}
.x40_c01034{left:555.406485px;}
.xb_c01034{left:564.163035px;}
.x24_c01034{left:566.494485px;}
.x41_c01034{left:575.107485px;}
.x43_c01034{left:586.586535px;}
.x54_c01034{left:587.828985px;}
.xc_c01034{left:597.625035px;}
.x3c_c01034{left:600.520785px;}
.x31_c01034{left:609.554535px;}
.x4e_c01034{left:620.959335px;}
.x3d_c01034{left:631.661235px;}
.x2b_c01034{left:643.422435px;}
.x5b_c01034{left:653.238285px;}
.x16_c01034{left:654.361935px;}
.x3a_c01034{left:663.920385px;}
.xd_c01034{left:665.182635px;}
.x52_c01034{left:666.236985px;}
.x3_c01034{left:675.453885px;}
.x2c_c01034{left:676.904235px;}
.x48_c01034{left:686.012235px;}
.x58_c01034{left:687.274485px;}
.x45_c01034{left:688.789185px;}
.xe_c01034{left:699.362385px;}
.x5c_c01034{left:702.961035px;}
.x35_c01034{left:709.356435px;}
@media print{
.v0_c01034{vertical-align:0.000000pt;}
.ls7_c01034{letter-spacing:-2.439360pt;}
.lsb_c01034{letter-spacing:-1.428768pt;}
.ls0_c01034{letter-spacing:0.000000pt;}
.ls3_c01034{letter-spacing:0.794534pt;}
.ls14_c01034{letter-spacing:1.650634pt;}
.lsc_c01034{letter-spacing:2.174515pt;}
.lsf_c01034{letter-spacing:2.288000pt;}
.ls6_c01034{letter-spacing:2.341786pt;}
.ls10_c01034{letter-spacing:2.868800pt;}
.ls5_c01034{letter-spacing:2.939209pt;}
.ls8_c01034{letter-spacing:3.027209pt;}
.ls15_c01034{letter-spacing:3.132800pt;}
.ls13_c01034{letter-spacing:3.150400pt;}
.ls11_c01034{letter-spacing:3.203209pt;}
.lse_c01034{letter-spacing:3.449609pt;}
.ls2_c01034{letter-spacing:3.484800pt;}
.ls9_c01034{letter-spacing:3.537609pt;}
.ls1_c01034{letter-spacing:3.819209pt;}
.lsd_c01034{letter-spacing:3.854400pt;}
.lsa_c01034{letter-spacing:3.995209pt;}
.ls12_c01034{letter-spacing:49.420976pt;}
.ls4_c01034{letter-spacing:51.955376pt;}
.ws0_c01034{word-spacing:-17.424000pt;}
.ws1_c01034{word-spacing:0.000000pt;}
.fs14_c01034{font-size:19.712000pt;}
.fs0_c01034{font-size:29.744000pt;}
.fs13_c01034{font-size:40.656000pt;}
.fs16_c01034{font-size:44.704000pt;}
.fse_c01034{font-size:45.760000pt;}
.fs12_c01034{font-size:49.420976pt;}
.fs5_c01034{font-size:51.955376pt;}
.fsf_c01034{font-size:57.376000pt;}
.fs4_c01034{font-size:58.784176pt;}
.fs11_c01034{font-size:58.960000pt;}
.fs7_c01034{font-size:60.544176pt;}
.fs15_c01034{font-size:62.656000pt;}
.fsa_c01034{font-size:63.008000pt;}
.fs10_c01034{font-size:64.064176pt;}
.fs6_c01034{font-size:66.528000pt;}
.fsd_c01034{font-size:68.992176pt;}
.fs2_c01034{font-size:69.696000pt;}
.fs3_c01034{font-size:70.048000pt;}
.fsb_c01034{font-size:70.400000pt;}
.fs8_c01034{font-size:70.752176pt;}
.fs1_c01034{font-size:76.384176pt;}
.fsc_c01034{font-size:77.088000pt;}
.fs9_c01034{font-size:79.904176pt;}
.y1d_c01034{bottom:-2.621480pt;}
.y0_c01034{bottom:0.000000pt;}
.y1_c01034{bottom:68.000000pt;}
.y1c_c01034{bottom:115.549320pt;}
.y1b_c01034{bottom:143.432120pt;}
.y1a_c01034{bottom:200.139320pt;}
.y19_c01034{bottom:229.284920pt;}
.y18_c01034{bottom:247.971720pt;}
.y17_c01034{bottom:257.480120pt;}
.y16_c01034{bottom:285.670920pt;}
.y15_c01034{bottom:314.187320pt;}
.y14_c01034{bottom:342.065720pt;}
.y13_c01034{bottom:370.577720pt;}
.y12_c01034{bottom:398.451720pt;}
.y11_c01034{bottom:426.017720pt;}
.y10_c01034{bottom:453.896120pt;}
.yf_c01034{bottom:482.720520pt;}
.ye_c01034{bottom:510.603320pt;}
.yd_c01034{bottom:567.627320pt;}
.yc_c01034{bottom:595.505720pt;}
.yb_c01034{bottom:623.696520pt;}
.ya_c01034{bottom:651.258120pt;}
.y9_c01034{bottom:679.774520pt;}
.y8_c01034{bottom:707.336120pt;}
.y7_c01034{bottom:735.214520pt;}
.y6_c01034{bottom:763.092920pt;}
.y2_c01034{bottom:789.387320pt;}
.y5_c01034{bottom:790.966920pt;}
.y4_c01034{bottom:818.845320pt;}
.y3_c01034{bottom:939.862920pt;}
.h17_c01034{height:20.559000pt;}
.h2_c01034{height:31.022063pt;}
.h15_c01034{height:32.914370pt;}
.h7_c01034{height:34.602280pt;}
.h16_c01034{height:39.901641pt;}
.h18_c01034{height:43.874531pt;}
.h11_c01034{height:44.910938pt;}
.h9_c01034{height:59.420798pt;}
.h12_c01034{height:59.841375pt;}
.h6_c01034{height:61.310059pt;}
.h14_c01034{height:61.493438pt;}
.hc_c01034{height:61.838906pt;}
.h13_c01034{height:62.875485pt;}
.hd_c01034{height:63.145684pt;}
.h8_c01034{height:65.293594pt;}
.h10_c01034{height:67.712048pt;}
.h4_c01034{height:68.402813pt;}
.h5_c01034{height:68.748281pt;}
.he_c01034{height:69.093750pt;}
.ha_c01034{height:69.439391pt;}
.h3_c01034{height:74.966891pt;}
.hf_c01034{height:75.657656pt;}
.hb_c01034{height:78.421579pt;}
.h1_c01034{height:986.666667pt;}
.h0_c01034{height:1122.666667pt;}
.w1_c01034{width:689.333333pt;}
.w0_c01034{width:793.333333pt;}
.x0_c01034{left:0.000000pt;}
.x2_c01034{left:27.866653pt;}
.x1_c01034{left:52.000000pt;}
.x3b_c01034{left:59.489453pt;}
.xf_c01034{left:60.783053pt;}
.x4_c01034{left:61.795053pt;}
.x25_c01034{left:62.692653pt;}
.x1d_c01034{left:89.783453pt;}
.x26_c01034{left:98.165453pt;}
.x4f_c01034{left:99.577853pt;}
.x2d_c01034{left:108.421853pt;}
.x17_c01034{left:109.689053pt;}
.x32_c01034{left:118.621053pt;}
.x49_c01034{left:120.134653pt;}
.x4d_c01034{left:126.673053pt;}
.x1e_c01034{left:128.076653pt;}
.x10_c01034{left:137.453053pt;}
.x18_c01034{left:138.746653pt;}
.x36_c01034{left:148.272653pt;}
.x42_c01034{left:156.804253pt;}
.x11_c01034{left:158.194653pt;}
.x57_c01034{left:168.613853pt;}
.x3e_c01034{left:177.735053pt;}
.x53_c01034{left:186.548253pt;}
.x27_c01034{left:187.956253pt;}
.x33_c01034{left:197.156653pt;}
.x5_c01034{left:198.076253pt;}
.x37_c01034{left:207.549453pt;}
.x59_c01034{left:216.331853pt;}
.x50_c01034{left:217.453853pt;}
.x1f_c01034{left:226.157053pt;}
.x6_c01034{left:227.833453pt;}
.x38_c01034{left:237.033853pt;}
.x20_c01034{left:246.881053pt;}
.x19_c01034{left:255.773453pt;}
.x7_c01034{left:257.335453pt;}
.x4a_c01034{left:267.723853pt;}
.x2e_c01034{left:275.560253pt;}
.x12_c01034{left:276.818653pt;}
.x13_c01034{left:286.318253pt;}
.x46_c01034{left:296.218253pt;}
.x34_c01034{left:306.650653pt;}
.x2f_c01034{left:315.974253pt;}
.x1a_c01034{left:324.294653pt;}
.x39_c01034{left:325.795053pt;}
.x21_c01034{left:334.806253pt;}
.x14_c01034{left:336.504653pt;}
.x4b_c01034{left:345.960253pt;}
.x28_c01034{left:356.009853pt;}
.x47_c01034{left:365.544653pt;}
.x29_c01034{left:383.919053pt;}
.x3f_c01034{left:385.278653pt;}
.x8_c01034{left:394.052253pt;}
.x1b_c01034{left:395.693453pt;}
.x4c_c01034{left:404.995053pt;}
.x2a_c01034{left:414.327453pt;}
.x55_c01034{left:416.553853pt;}
.x9_c01034{left:424.311053pt;}
.x56_c01034{left:425.239453pt;}
.x22_c01034{left:434.453053pt;}
.x15_c01034{left:443.640253pt;}
.x23_c01034{left:451.969453pt;}
.x1c_c01034{left:452.977053pt;}
.x51_c01034{left:463.603053pt;}
.xa_c01034{left:474.031053pt;}
.x30_c01034{left:482.127053pt;}
.x44_c01034{left:483.213853pt;}
.x5a_c01034{left:491.657453pt;}
.x40_c01034{left:493.694653pt;}
.xb_c01034{left:501.478253pt;}
.x24_c01034{left:503.550653pt;}
.x41_c01034{left:511.206653pt;}
.x43_c01034{left:521.410253pt;}
.x54_c01034{left:522.514653pt;}
.xc_c01034{left:531.222253pt;}
.x3c_c01034{left:533.796253pt;}
.x31_c01034{left:541.826253pt;}
.x4e_c01034{left:551.963853pt;}
.x3d_c01034{left:561.476653pt;}
.x2b_c01034{left:571.931053pt;}
.x5b_c01034{left:580.656253pt;}
.x16_c01034{left:581.655053pt;}
.x3a_c01034{left:590.151453pt;}
.xd_c01034{left:591.273453pt;}
.x52_c01034{left:592.210653pt;}
.x3_c01034{left:600.403453pt;}
.x2c_c01034{left:601.692653pt;}
.x48_c01034{left:609.788653pt;}
.x58_c01034{left:610.910653pt;}
.x45_c01034{left:612.257053pt;}
.xe_c01034{left:621.655453pt;}
.x5c_c01034{left:624.854253pt;}
.x35_c01034{left:630.539053pt;}
}





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

.ir_c01035:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01035{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01035;src:url('chunks/assets/font_d723a119b2871845e41f7356.woff2')format("woff");}.ff1_c01035{font-family:ff1_c01035;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01035;src:url('chunks/assets/font_434334d346bac706e341d51a.woff2')format("woff");}.ff2_c01035{font-family:ff2_c01035;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01035;src:url('chunks/assets/font_0f8922c6c94e48871d7ac52e.woff2')format("woff");}.ff3_c01035{font-family:ff3_c01035;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01035;src:url('chunks/assets/font_fcd940959867b5b37d6ed0c6.woff2')format("woff");}.ff4_c01035{font-family:ff4_c01035;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mbe_c01035{transform:matrix(0.110975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110975,0.000000,0.000000,0.250000,0,0);}
.m0_c01035{transform:matrix(0.111410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111410,0.000000,0.000000,0.250000,0,0);}
.m45_c01035{transform:matrix(0.119048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119048,0.000000,0.000000,0.250000,0,0);}
.m2_c01035{transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);}
.m62_c01035{transform:matrix(0.173659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173659,0.000000,0.000000,0.250000,0,0);}
.m18_c01035{transform:matrix(0.189367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189367,0.000000,0.000000,0.250000,0,0);}
.m5a_c01035{transform:matrix(0.191725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191725,0.000000,0.000000,0.250000,0,0);}
.m7f_c01035{transform:matrix(0.200931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200931,0.000000,0.000000,0.250000,0,0);}
.m6a_c01035{transform:matrix(0.240545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240545,0.000000,0.000000,0.250000,0,0);}
.m1_c01035{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m87_c01035{transform:matrix(0.253254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253254,0.000000,0.000000,0.250000,0,0);}
.m3_c01035{transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);}
.m65_c01035{transform:matrix(0.254066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254066,0.000000,0.000000,0.250000,0,0);}
.m54_c01035{transform:matrix(0.254953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254953,0.000000,0.000000,0.250000,0,0);}
.m13_c01035{transform:matrix(0.255172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255172,0.000000,0.000000,0.250000,0,0);}
.m88_c01035{transform:matrix(0.256952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256952,0.000000,0.000000,0.250000,0,0);}
.m89_c01035{transform:matrix(0.257934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257934,0.000000,0.000000,0.250000,0,0);}
.m7_c01035{transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);}
.m27_c01035{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.mac_c01035{transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);}
.m8c_c01035{transform:matrix(0.259600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259600,0.000000,0.000000,0.250000,0,0);}
.m93_c01035{transform:matrix(0.260559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260559,0.000000,0.000000,0.250000,0,0);}
.m82_c01035{transform:matrix(0.260771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260771,0.000000,0.000000,0.250000,0,0);}
.m43_c01035{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.ma_c01035{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.m69_c01035{transform:matrix(0.261624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261624,0.000000,0.000000,0.250000,0,0);}
.m7b_c01035{transform:matrix(0.261735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261735,0.000000,0.000000,0.250000,0,0);}
.m2f_c01035{transform:matrix(0.261811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261811,0.000000,0.000000,0.250000,0,0);}
.m51_c01035{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.me_c01035{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m4b_c01035{transform:matrix(0.263955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263955,0.000000,0.000000,0.250000,0,0);}
.ma1_c01035{transform:matrix(0.264220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264220,0.000000,0.000000,0.250000,0,0);}
.m5c_c01035{transform:matrix(0.264902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264902,0.000000,0.000000,0.250000,0,0);}
.ma8_c01035{transform:matrix(0.265542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265542,0.000000,0.000000,0.250000,0,0);}
.m6b_c01035{transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);}
.m5e_c01035{transform:matrix(0.265799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265799,0.000000,0.000000,0.250000,0,0);}
.m1a_c01035{transform:matrix(0.265809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265809,0.000000,0.000000,0.250000,0,0);}
.m86_c01035{transform:matrix(0.265928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265928,0.000000,0.000000,0.250000,0,0);}
.m39_c01035{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m8e_c01035{transform:matrix(0.266295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266295,0.000000,0.000000,0.250000,0,0);}
.m9_c01035{transform:matrix(0.266342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266342,0.000000,0.000000,0.250000,0,0);}
.m49_c01035{transform:matrix(0.266676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266676,0.000000,0.000000,0.250000,0,0);}
.m79_c01035{transform:matrix(0.267104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267104,0.000000,0.000000,0.250000,0,0);}
.m57_c01035{transform:matrix(0.267205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267205,0.000000,0.000000,0.250000,0,0);}
.m68_c01035{transform:matrix(0.267436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267436,0.000000,0.000000,0.250000,0,0);}
.mb6_c01035{transform:matrix(0.267743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267743,0.000000,0.000000,0.250000,0,0);}
.md_c01035{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.mb4_c01035{transform:matrix(0.269240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269240,0.000000,0.000000,0.250000,0,0);}
.m58_c01035{transform:matrix(0.270166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270166,0.000000,0.000000,0.250000,0,0);}
.m32_c01035{transform:matrix(0.270395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270395,0.000000,0.000000,0.250000,0,0);}
.mbc_c01035{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m3f_c01035{transform:matrix(0.272728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272728,0.000000,0.000000,0.250000,0,0);}
.mba_c01035{transform:matrix(0.272745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272745,0.000000,0.000000,0.250000,0,0);}
.m16_c01035{transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);}
.ma4_c01035{transform:matrix(0.275353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275353,0.000000,0.000000,0.250000,0,0);}
.m3c_c01035{transform:matrix(0.275884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275884,0.000000,0.000000,0.250000,0,0);}
.mb7_c01035{transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);}
.m1c_c01035{transform:matrix(0.276037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276037,0.000000,0.000000,0.250000,0,0);}
.mb3_c01035{transform:matrix(0.276314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276314,0.000000,0.000000,0.250000,0,0);}
.mb9_c01035{transform:matrix(0.276764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276764,0.000000,0.000000,0.250000,0,0);}
.m73_c01035{transform:matrix(0.277101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277101,0.000000,0.000000,0.250000,0,0);}
.m63_c01035{transform:matrix(0.277733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277733,0.000000,0.000000,0.250000,0,0);}
.m59_c01035{transform:matrix(0.278057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278057,0.000000,0.000000,0.250000,0,0);}
.m3d_c01035{transform:matrix(0.278624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278624,0.000000,0.000000,0.250000,0,0);}
.m78_c01035{transform:matrix(0.278893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278893,0.000000,0.000000,0.250000,0,0);}
.m55_c01035{transform:matrix(0.279089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279089,0.000000,0.000000,0.250000,0,0);}
.ma9_c01035{transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);}
.m38_c01035{transform:matrix(0.280247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280247,0.000000,0.000000,0.250000,0,0);}
.m61_c01035{transform:matrix(0.280648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280648,0.000000,0.000000,0.250000,0,0);}
.m67_c01035{transform:matrix(0.281190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281190,0.000000,0.000000,0.250000,0,0);}
.m19_c01035{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.m40_c01035{transform:matrix(0.282186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282186,0.000000,0.000000,0.250000,0,0);}
.m85_c01035{transform:matrix(0.282334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282334,0.000000,0.000000,0.250000,0,0);}
.m15_c01035{transform:matrix(0.284018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284018,0.000000,0.000000,0.250000,0,0);}
.m92_c01035{transform:matrix(0.284426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284426,0.000000,0.000000,0.250000,0,0);}
.ma7_c01035{transform:matrix(0.284886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284886,0.000000,0.000000,0.250000,0,0);}
.m3a_c01035{transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);}
.m8_c01035{transform:matrix(0.286496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286496,0.000000,0.000000,0.250000,0,0);}
.m26_c01035{transform:matrix(0.286629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286629,0.000000,0.000000,0.250000,0,0);}
.m5_c01035{transform:matrix(0.286765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286765,0.000000,0.000000,0.250000,0,0);}
.m2b_c01035{transform:matrix(0.287310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287310,0.000000,0.000000,0.250000,0,0);}
.m74_c01035{transform:matrix(0.287688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287688,0.000000,0.000000,0.250000,0,0);}
.m7c_c01035{transform:matrix(0.288437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288437,0.000000,0.000000,0.250000,0,0);}
.mbd_c01035{transform:matrix(0.288571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288571,0.000000,0.000000,0.250000,0,0);}
.mb2_c01035{transform:matrix(0.288806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288806,0.000000,0.000000,0.250000,0,0);}
.m8f_c01035{transform:matrix(0.288935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288935,0.000000,0.000000,0.250000,0,0);}
.mb0_c01035{transform:matrix(0.289634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289634,0.000000,0.000000,0.250000,0,0);}
.m5f_c01035{transform:matrix(0.289867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289867,0.000000,0.000000,0.250000,0,0);}
.m9b_c01035{transform:matrix(0.290590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290590,0.000000,0.000000,0.250000,0,0);}
.m24_c01035{transform:matrix(0.290956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290956,0.000000,0.000000,0.250000,0,0);}
.m75_c01035{transform:matrix(0.291234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291234,0.000000,0.000000,0.250000,0,0);}
.m10_c01035{transform:matrix(0.291564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291564,0.000000,0.000000,0.250000,0,0);}
.m6e_c01035{transform:matrix(0.291784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291784,0.000000,0.000000,0.250000,0,0);}
.m4c_c01035{transform:matrix(0.291802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291802,0.000000,0.000000,0.250000,0,0);}
.m1f_c01035{transform:matrix(0.292309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292309,0.000000,0.000000,0.250000,0,0);}
.mb5_c01035{transform:matrix(0.292392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292392,0.000000,0.000000,0.250000,0,0);}
.m36_c01035{transform:matrix(0.293193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293193,0.000000,0.000000,0.250000,0,0);}
.m4d_c01035{transform:matrix(0.293323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293323,0.000000,0.000000,0.250000,0,0);}
.ma5_c01035{transform:matrix(0.293607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293607,0.000000,0.000000,0.250000,0,0);}
.mb8_c01035{transform:matrix(0.293896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293896,0.000000,0.000000,0.250000,0,0);}
.m14_c01035{transform:matrix(0.293934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293934,0.000000,0.000000,0.250000,0,0);}
.m3b_c01035{transform:matrix(0.294136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294136,0.000000,0.000000,0.250000,0,0);}
.ma0_c01035{transform:matrix(0.294229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294229,0.000000,0.000000,0.250000,0,0);}
.m9d_c01035{transform:matrix(0.294658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294658,0.000000,0.000000,0.250000,0,0);}
.mae_c01035{transform:matrix(0.295212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295212,0.000000,0.000000,0.250000,0,0);}
.m25_c01035{transform:matrix(0.296492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296492,0.000000,0.000000,0.250000,0,0);}
.m5d_c01035{transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);}
.m34_c01035{transform:matrix(0.297663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297663,0.000000,0.000000,0.250000,0,0);}
.maf_c01035{transform:matrix(0.298737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298737,0.000000,0.000000,0.250000,0,0);}
.m42_c01035{transform:matrix(0.299023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299023,0.000000,0.000000,0.250000,0,0);}
.m31_c01035{transform:matrix(0.299529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299529,0.000000,0.000000,0.250000,0,0);}
.ma6_c01035{transform:matrix(0.299618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299618,0.000000,0.000000,0.250000,0,0);}
.m50_c01035{transform:matrix(0.300081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300081,0.000000,0.000000,0.250000,0,0);}
.m11_c01035{transform:matrix(0.300577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300577,0.000000,0.000000,0.250000,0,0);}
.m83_c01035{transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);}
.m22_c01035{transform:matrix(0.300595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300595,0.000000,0.000000,0.250000,0,0);}
.m8a_c01035{transform:matrix(0.302005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302005,0.000000,0.000000,0.250000,0,0);}
.m77_c01035{transform:matrix(0.302256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302256,0.000000,0.000000,0.250000,0,0);}
.m90_c01035{transform:matrix(0.302359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302359,0.000000,0.000000,0.250000,0,0);}
.m52_c01035{transform:matrix(0.302629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302629,0.000000,0.000000,0.250000,0,0);}
.m7e_c01035{transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);}
.ma2_c01035{transform:matrix(0.303343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303343,0.000000,0.000000,0.250000,0,0);}
.m4f_c01035{transform:matrix(0.303410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303410,0.000000,0.000000,0.250000,0,0);}
.m41_c01035{transform:matrix(0.303707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303707,0.000000,0.000000,0.250000,0,0);}
.m66_c01035{transform:matrix(0.304570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304570,0.000000,0.000000,0.250000,0,0);}
.mc_c01035{transform:matrix(0.304812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304812,0.000000,0.000000,0.250000,0,0);}
.mbb_c01035{transform:matrix(0.305474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305474,0.000000,0.000000,0.250000,0,0);}
.m9c_c01035{transform:matrix(0.305475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305475,0.000000,0.000000,0.250000,0,0);}
.m2d_c01035{transform:matrix(0.305571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305571,0.000000,0.000000,0.250000,0,0);}
.m6f_c01035{transform:matrix(0.305630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305630,0.000000,0.000000,0.250000,0,0);}
.m1e_c01035{transform:matrix(0.306004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306004,0.000000,0.000000,0.250000,0,0);}
.maa_c01035{transform:matrix(0.306775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306775,0.000000,0.000000,0.250000,0,0);}
.m7a_c01035{transform:matrix(0.306799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306799,0.000000,0.000000,0.250000,0,0);}
.m97_c01035{transform:matrix(0.307398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307398,0.000000,0.000000,0.250000,0,0);}
.m2c_c01035{transform:matrix(0.307667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307667,0.000000,0.000000,0.250000,0,0);}
.m9e_c01035{transform:matrix(0.307910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307910,0.000000,0.000000,0.250000,0,0);}
.m3e_c01035{transform:matrix(0.308029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308029,0.000000,0.000000,0.250000,0,0);}
.m48_c01035{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m8b_c01035{transform:matrix(0.309730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309730,0.000000,0.000000,0.250000,0,0);}
.m9f_c01035{transform:matrix(0.310059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310059,0.000000,0.000000,0.250000,0,0);}
.m44_c01035{transform:matrix(0.310274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310274,0.000000,0.000000,0.250000,0,0);}
.m71_c01035{transform:matrix(0.311437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311437,0.000000,0.000000,0.250000,0,0);}
.m95_c01035{transform:matrix(0.313920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313920,0.000000,0.000000,0.250000,0,0);}
.m6_c01035{transform:matrix(0.314172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314172,0.000000,0.000000,0.250000,0,0);}
.m46_c01035{transform:matrix(0.314236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314236,0.000000,0.000000,0.250000,0,0);}
.mb1_c01035{transform:matrix(0.315578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315578,0.000000,0.000000,0.250000,0,0);}
.m70_c01035{transform:matrix(0.315855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315855,0.000000,0.000000,0.250000,0,0);}
.mb_c01035{transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316174,0.000000,0.000000,0.250000,0,0);}
.m4a_c01035{transform:matrix(0.316931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316931,0.000000,0.000000,0.250000,0,0);}
.m17_c01035{transform:matrix(0.317042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317042,0.000000,0.000000,0.250000,0,0);}
.ma3_c01035{transform:matrix(0.317427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317427,0.000000,0.000000,0.250000,0,0);}
.m29_c01035{transform:matrix(0.318048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318048,0.000000,0.000000,0.250000,0,0);}
.m81_c01035{transform:matrix(0.318051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318051,0.000000,0.000000,0.250000,0,0);}
.m2a_c01035{transform:matrix(0.318110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318110,0.000000,0.000000,0.250000,0,0);}
.m47_c01035{transform:matrix(0.318468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318468,0.000000,0.000000,0.250000,0,0);}
.m53_c01035{transform:matrix(0.318690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318690,0.000000,0.000000,0.250000,0,0);}
.m23_c01035{transform:matrix(0.319388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319388,0.000000,0.000000,0.250000,0,0);}
.m2e_c01035{transform:matrix(0.319609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319609,0.000000,0.000000,0.250000,0,0);}
.m84_c01035{transform:matrix(0.319808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319808,0.000000,0.000000,0.250000,0,0);}
.m60_c01035{transform:matrix(0.321025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321025,0.000000,0.000000,0.250000,0,0);}
.m4_c01035{transform:matrix(0.323442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323442,0.000000,0.000000,0.250000,0,0);}
.m98_c01035{transform:matrix(0.323709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323709,0.000000,0.000000,0.250000,0,0);}
.m56_c01035{transform:matrix(0.325063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325063,0.000000,0.000000,0.250000,0,0);}
.m72_c01035{transform:matrix(0.325136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325136,0.000000,0.000000,0.250000,0,0);}
.mad_c01035{transform:matrix(0.327002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327002,0.000000,0.000000,0.250000,0,0);}
.m6c_c01035{transform:matrix(0.327076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327076,0.000000,0.000000,0.250000,0,0);}
.mf_c01035{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m1b_c01035{transform:matrix(0.329405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329405,0.000000,0.000000,0.250000,0,0);}
.m64_c01035{transform:matrix(0.330164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330164,0.000000,0.000000,0.250000,0,0);}
.m94_c01035{transform:matrix(0.331590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331590,0.000000,0.000000,0.250000,0,0);}
.m35_c01035{transform:matrix(0.331910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331910,0.000000,0.000000,0.250000,0,0);}
.m99_c01035{transform:matrix(0.331963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331963,0.000000,0.000000,0.250000,0,0);}
.m6d_c01035{transform:matrix(0.332154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332154,0.000000,0.000000,0.250000,0,0);}
.m76_c01035{transform:matrix(0.332499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332499,0.000000,0.000000,0.250000,0,0);}
.m96_c01035{transform:matrix(0.333652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333652,0.000000,0.000000,0.250000,0,0);}
.m21_c01035{transform:matrix(0.334644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334644,0.000000,0.000000,0.250000,0,0);}
.m33_c01035{transform:matrix(0.338167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338167,0.000000,0.000000,0.250000,0,0);}
.m1d_c01035{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m28_c01035{transform:matrix(0.339972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339972,0.000000,0.000000,0.250000,0,0);}
.mab_c01035{transform:matrix(0.340149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340149,0.000000,0.000000,0.250000,0,0);}
.m80_c01035{transform:matrix(0.340997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340997,0.000000,0.000000,0.250000,0,0);}
.m37_c01035{transform:matrix(0.342694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342694,0.000000,0.000000,0.250000,0,0);}
.m91_c01035{transform:matrix(0.347235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347235,0.000000,0.000000,0.250000,0,0);}
.m9a_c01035{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m7d_c01035{transform:matrix(0.367117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367117,0.000000,0.000000,0.250000,0,0);}
.m8d_c01035{transform:matrix(0.367809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367809,0.000000,0.000000,0.250000,0,0);}
.m20_c01035{transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);}
.m5b_c01035{transform:matrix(0.375491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375491,0.000000,0.000000,0.250000,0,0);}
.m12_c01035{transform:matrix(0.377603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377603,0.000000,0.000000,0.250000,0,0);}
.m4e_c01035{transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);}
.m30_c01035{transform:matrix(0.385437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385437,0.000000,0.000000,0.250000,0,0);}
.v0_c01035{vertical-align:0.000000px;}
.ls7_c01035{letter-spacing:-3.659040px;}
.ls10_c01035{letter-spacing:-2.744280px;}
.ls9_c01035{letter-spacing:-1.897474px;}
.lsa_c01035{letter-spacing:-1.630886px;}
.ls1b_c01035{letter-spacing:-1.330567px;}
.ls2_c01035{letter-spacing:-1.060290px;}
.ls12_c01035{letter-spacing:-0.633741px;}
.ls6_c01035{letter-spacing:0.000000px;}
.ls8_c01035{letter-spacing:0.541015px;}
.ls17_c01035{letter-spacing:0.705672px;}
.ls1_c01035{letter-spacing:0.995782px;}
.ls18_c01035{letter-spacing:1.152598px;}
.ls14_c01035{letter-spacing:1.552478px;}
.ls16_c01035{letter-spacing:1.928837px;}
.lsc_c01035{letter-spacing:1.960200px;}
.ls0_c01035{letter-spacing:2.360081px;}
.lsb_c01035{letter-spacing:2.673713px;}
.ls11_c01035{letter-spacing:3.191206px;}
.ls19_c01035{letter-spacing:3.255892px;}
.ls3_c01035{letter-spacing:3.418668px;}
.lsd_c01035{letter-spacing:3.484810px;}
.ls15_c01035{letter-spacing:3.747902px;}
.ls13_c01035{letter-spacing:3.801610px;}
.ls1a_c01035{letter-spacing:3.880810px;}
.ls5_c01035{letter-spacing:3.920400px;}
.lse_c01035{letter-spacing:29.937798px;}
.ls4_c01035{letter-spacing:49.896198px;}
.lsf_c01035{letter-spacing:55.598598px;}
.sc__c01035{text-shadow:none;}
.sc0_c01035{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01035{-webkit-text-stroke:0px transparent;}
.sc0_c01035{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01035{word-spacing:-20.307672px;}
.ws1_c01035{word-spacing:-19.602000px;}
.ws0_c01035{word-spacing:-17.971114px;}
.ws3_c01035{word-spacing:0.000000px;}
._3_c01035{margin-left:-10.067587px;}
._7_c01035{width:1.176516px;}
._0_c01035{width:3.653813px;}
._2_c01035{width:26.501904px;}
._4_c01035{width:27.991656px;}
._1_c01035{width:31.833648px;}
._5_c01035{width:35.877600px;}
._6_c01035{width:44.267256px;}
.fc0_c01035{color:transparent;}
.fs7_c01035{font-size:29.937798px;}
.fs0_c01035{font-size:30.294000px;}
.fs11_c01035{font-size:38.016198px;}
.fsa_c01035{font-size:44.946198px;}
.fse_c01035{font-size:49.500000px;}
.fs2_c01035{font-size:49.896198px;}
.fs8_c01035{font-size:55.598598px;}
.fsb_c01035{font-size:64.548000px;}
.fs5_c01035{font-size:66.528000px;}
.fs6_c01035{font-size:69.696198px;}
.fsd_c01035{font-size:72.864000px;}
.fsc_c01035{font-size:76.032198px;}
.fs10_c01035{font-size:77.616198px;}
.fs3_c01035{font-size:78.408000px;}
.fs1_c01035{font-size:88.110000px;}
.fsf_c01035{font-size:89.694000px;}
.fs9_c01035{font-size:91.872198px;}
.fs4_c01035{font-size:104.544000px;}
.y0_c01035{bottom:0.000000px;}
.y1_c01035{bottom:76.500000px;}
.y1f_c01035{bottom:97.204185px;}
.y1e_c01035{bottom:131.423535px;}
.y1d_c01035{bottom:162.781785px;}
.y1c_c01035{bottom:194.149935px;}
.y1b_c01035{bottom:225.864585px;}
.y1a_c01035{bottom:256.876335px;}
.y19_c01035{bottom:289.308735px;}
.y18_c01035{bottom:353.099385px;}
.y17_c01035{bottom:385.180335px;}
.y16_c01035{bottom:417.256335px;}
.y2_c01035{bottom:435.789135px;}
.y15_c01035{bottom:448.614585px;}
.y14_c01035{bottom:479.977785px;}
.y13_c01035{bottom:512.053785px;}
.y12_c01035{bottom:535.224735px;}
.y11_c01035{bottom:543.416985px;}
.y10_c01035{bottom:605.430585px;}
.yf_c01035{bottom:637.862985px;}
.ye_c01035{bottom:669.943935px;}
.yd_c01035{bottom:690.971535px;}
.yc_c01035{bottom:701.663535px;}
.yb_c01035{bottom:714.132585px;}
.ya_c01035{bottom:733.021785px;}
.y9_c01035{bottom:765.102735px;}
.y8_c01035{bottom:796.822335px;}
.y7_c01035{bottom:827.829135px;}
.y6_c01035{bottom:859.905135px;}
.y5_c01035{bottom:891.268335px;}
.y4_c01035{bottom:924.057135px;}
.y3_c01035{bottom:1058.771385px;}
.h9_c01035{height:19.938573px;}
.h2_c01035{height:29.731904px;}
.h4_c01035{height:33.230868px;}
.ha_c01035{height:37.028666px;}
.h13_c01035{height:37.310819px;}
.hc_c01035{height:46.877480px;}
.h10_c01035{height:51.626953px;}
.hd_c01035{height:67.321547px;}
.h8_c01035{height:68.403007px;}
.h7_c01035{height:69.386625px;}
.hf_c01035{height:71.512031px;}
.he_c01035{height:74.621444px;}
.h12_c01035{height:76.176054px;}
.h5_c01035{height:76.953164px;}
.h3_c01035{height:86.475146px;}
.h11_c01035{height:88.029756px;}
.hb_c01035{height:95.819832px;}
.h6_c01035{height:102.604219px;}
.h1_c01035{height:1110.000000px;}
.h0_c01035{height:1263.000000px;}
.w1_c01035{width:775.500000px;}
.w0_c01035{width:892.500000px;}
.x0_c01035{left:0.000000px;}
.x2_c01035{left:51.239085px;}
.x1_c01035{left:58.500000px;}
.x4_c01035{left:68.776935px;}
.xe_c01035{left:70.291635px;}
.x60_c01035{left:72.430035px;}
.x2d_c01035{left:90.611385px;}
.x46_c01035{left:91.819185px;}
.x18_c01035{left:102.204285px;}
.x3f_c01035{left:111.841935px;}
.x5_c01035{left:114.193185px;}
.x2e_c01035{left:123.746685px;}
.x55_c01035{left:135.879135px;}
.x6_c01035{left:146.600835px;}
.x33_c01035{left:157.579935px;}
.x1f_c01035{left:167.677935px;}
.x43_c01035{left:178.993635px;}
.xf_c01035{left:180.112335px;}
.x7_c01035{left:191.398335px;}
.x3a_c01035{left:201.090435px;}
.x40_c01035{left:212.500185px;}
.x5b_c01035{left:214.697985px;}
.x19_c01035{left:222.375435px;}
.x10_c01035{left:223.959435px;}
.x3b_c01035{left:233.730735px;}
.x20_c01035{left:235.141485px;}
.x2a_c01035{left:245.922585px;}
.x1a_c01035{left:256.550235px;}
.x34_c01035{left:257.688735px;}
.x4e_c01035{left:267.232335px;}
.x11_c01035{left:269.143035px;}
.x41_c01035{left:280.265685px;}
.x52_c01035{left:289.705335px;}
.x2f_c01035{left:290.828985px;}
.x56_c01035{left:301.238835px;}
.x12_c01035{left:302.595135px;}
.x42_c01035{left:313.668285px;}
.x5c_c01035{left:314.826585px;}
.x1b_c01035{left:324.107835px;}
.x57_c01035{left:334.606785px;}
.x4f_c01035{left:335.740335px;}
.x35_c01035{left:337.230285px;}
.x21_c01035{left:345.793785px;}
.x8_c01035{left:356.347185px;}
.x5d_c01035{left:366.717435px;}
.x38_c01035{left:368.984535px;}
.x22_c01035{left:379.285485px;}
.x59_c01035{left:389.497335px;}
.x26_c01035{left:390.665535px;}
.x13_c01035{left:391.808985px;}
.x36_c01035{left:401.798085px;}
.x14_c01035{left:413.009835px;}
.x3c_c01035{left:423.771135px;}
.x5e_c01035{left:433.364235px;}
.x53_c01035{left:434.562135px;}
.x23_c01035{left:446.224335px;}
.x49_c01035{left:457.272735px;}
.x50_c01035{left:467.539035px;}
.x27_c01035{left:469.776435px;}
.x30_c01035{left:477.874635px;}
.x9_c01035{left:479.146785px;}
.x4b_c01035{left:490.551585px;}
.x54_c01035{left:500.342685px;}
.x51_c01035{left:501.382185px;}
.x4c_c01035{left:511.039635px;}
.x1c_c01035{left:512.252385px;}
.xa_c01035{left:524.280885px;}
.x5a_c01035{left:525.721335px;}
.x4d_c01035{left:531.923685px;}
.x15_c01035{left:535.086735px;}
.x3d_c01035{left:545.427285px;}
.xb_c01035{left:555.208485px;}
.x24_c01035{left:556.257885px;}
.x47_c01035{left:566.979585px;}
.x16_c01035{left:578.582385px;}
.x2b_c01035{left:588.635835px;}
.x31_c01035{left:601.000935px;}
.x1d_c01035{left:611.371185px;}
.x17_c01035{left:612.390885px;}
.x58_c01035{left:621.543435px;}
.x2c_c01035{left:633.433335px;}
.x3e_c01035{left:634.527285px;}
.x28_c01035{left:644.159985px;}
.x39_c01035{left:645.541035px;}
.x3_c01035{left:655.851885px;}
.x1e_c01035{left:666.875535px;}
.xc_c01035{left:668.009085px;}
.x45_c01035{left:676.740885px;}
.x44_c01035{left:677.958585px;}
.x25_c01035{left:688.675335px;}
.xd_c01035{left:700.094985px;}
.x32_c01035{left:701.421585px;}
.x37_c01035{left:702.456135px;}
.x4a_c01035{left:711.519585px;}
.x29_c01035{left:712.989735px;}
.x48_c01035{left:721.785885px;}
.x5f_c01035{left:724.661835px;}
@media print{
.v0_c01035{vertical-align:0.000000pt;}
.ls7_c01035{letter-spacing:-3.252480pt;}
.ls10_c01035{letter-spacing:-2.439360pt;}
.ls9_c01035{letter-spacing:-1.686643pt;}
.lsa_c01035{letter-spacing:-1.449677pt;}
.ls1b_c01035{letter-spacing:-1.182726pt;}
.ls2_c01035{letter-spacing:-0.942480pt;}
.ls12_c01035{letter-spacing:-0.563326pt;}
.ls6_c01035{letter-spacing:0.000000pt;}
.ls8_c01035{letter-spacing:0.480902pt;}
.ls17_c01035{letter-spacing:0.627264pt;}
.ls1_c01035{letter-spacing:0.885139pt;}
.ls18_c01035{letter-spacing:1.024531pt;}
.ls14_c01035{letter-spacing:1.379981pt;}
.ls16_c01035{letter-spacing:1.714522pt;}
.lsc_c01035{letter-spacing:1.742400pt;}
.ls0_c01035{letter-spacing:2.097850pt;}
.lsb_c01035{letter-spacing:2.376634pt;}
.ls11_c01035{letter-spacing:2.836627pt;}
.ls19_c01035{letter-spacing:2.894126pt;}
.ls3_c01035{letter-spacing:3.038816pt;}
.lsd_c01035{letter-spacing:3.097609pt;}
.ls15_c01035{letter-spacing:3.331469pt;}
.ls13_c01035{letter-spacing:3.379209pt;}
.ls1a_c01035{letter-spacing:3.449609pt;}
.ls5_c01035{letter-spacing:3.484800pt;}
.lse_c01035{letter-spacing:26.611376pt;}
.ls4_c01035{letter-spacing:44.352176pt;}
.lsf_c01035{letter-spacing:49.420976pt;}
.ws2_c01035{word-spacing:-18.051264pt;}
.ws1_c01035{word-spacing:-17.424000pt;}
.ws0_c01035{word-spacing:-15.974323pt;}
.ws3_c01035{word-spacing:0.000000pt;}
._3_c01035{margin-left:-8.948966pt;}
._7_c01035{width:1.045792pt;}
._0_c01035{width:3.247834pt;}
._2_c01035{width:23.557248pt;}
._4_c01035{width:24.881472pt;}
._1_c01035{width:28.296576pt;}
._5_c01035{width:31.891200pt;}
._6_c01035{width:39.348672pt;}
.fs7_c01035{font-size:26.611376pt;}
.fs0_c01035{font-size:26.928000pt;}
.fs11_c01035{font-size:33.792176pt;}
.fsa_c01035{font-size:39.952176pt;}
.fse_c01035{font-size:44.000000pt;}
.fs2_c01035{font-size:44.352176pt;}
.fs8_c01035{font-size:49.420976pt;}
.fsb_c01035{font-size:57.376000pt;}
.fs5_c01035{font-size:59.136000pt;}
.fs6_c01035{font-size:61.952176pt;}
.fsd_c01035{font-size:64.768000pt;}
.fsc_c01035{font-size:67.584176pt;}
.fs10_c01035{font-size:68.992176pt;}
.fs3_c01035{font-size:69.696000pt;}
.fs1_c01035{font-size:78.320000pt;}
.fsf_c01035{font-size:79.728000pt;}
.fs9_c01035{font-size:81.664176pt;}
.fs4_c01035{font-size:92.928000pt;}
.y0_c01035{bottom:0.000000pt;}
.y1_c01035{bottom:68.000000pt;}
.y1f_c01035{bottom:86.403720pt;}
.y1e_c01035{bottom:116.820920pt;}
.y1d_c01035{bottom:144.694920pt;}
.y1c_c01035{bottom:172.577720pt;}
.y1b_c01035{bottom:200.768520pt;}
.y1a_c01035{bottom:228.334520pt;}
.y19_c01035{bottom:257.163320pt;}
.y18_c01035{bottom:313.866120pt;}
.y17_c01035{bottom:342.382520pt;}
.y16_c01035{bottom:370.894520pt;}
.y2_c01035{bottom:387.368120pt;}
.y15_c01035{bottom:398.768520pt;}
.y14_c01035{bottom:426.646920pt;}
.y13_c01035{bottom:455.158920pt;}
.y12_c01035{bottom:475.755320pt;}
.y11_c01035{bottom:483.037320pt;}
.y10_c01035{bottom:538.160520pt;}
.yf_c01035{bottom:566.989320pt;}
.ye_c01035{bottom:595.505720pt;}
.yd_c01035{bottom:614.196920pt;}
.yc_c01035{bottom:623.700920pt;}
.yb_c01035{bottom:634.784520pt;}
.ya_c01035{bottom:651.574920pt;}
.y9_c01035{bottom:680.091320pt;}
.y8_c01035{bottom:708.286520pt;}
.y7_c01035{bottom:735.848120pt;}
.y6_c01035{bottom:764.360120pt;}
.y5_c01035{bottom:792.238520pt;}
.y4_c01035{bottom:821.384120pt;}
.y3_c01035{bottom:941.130120pt;}
.h9_c01035{height:17.723176pt;}
.h2_c01035{height:26.428359pt;}
.h4_c01035{height:29.538549pt;}
.ha_c01035{height:32.914370pt;}
.h13_c01035{height:33.165173pt;}
.hc_c01035{height:41.668871pt;}
.h10_c01035{height:45.890625pt;}
.hd_c01035{height:59.841375pt;}
.h8_c01035{height:60.802673pt;}
.h7_c01035{height:61.677000pt;}
.hf_c01035{height:63.566250pt;}
.he_c01035{height:66.330173pt;}
.h12_c01035{height:67.712048pt;}
.h5_c01035{height:68.402813pt;}
.h3_c01035{height:76.866797pt;}
.h11_c01035{height:78.248672pt;}
.hb_c01035{height:85.173184pt;}
.h6_c01035{height:91.203750pt;}
.h1_c01035{height:986.666667pt;}
.h0_c01035{height:1122.666667pt;}
.w1_c01035{width:689.333333pt;}
.w0_c01035{width:793.333333pt;}
.x0_c01035{left:0.000000pt;}
.x2_c01035{left:45.545853pt;}
.x1_c01035{left:52.000000pt;}
.x4_c01035{left:61.135053pt;}
.xe_c01035{left:62.481453pt;}
.x60_c01035{left:64.382253pt;}
.x2d_c01035{left:80.543453pt;}
.x46_c01035{left:81.617053pt;}
.x18_c01035{left:90.848253pt;}
.x3f_c01035{left:99.415053pt;}
.x5_c01035{left:101.505053pt;}
.x2e_c01035{left:109.997053pt;}
.x55_c01035{left:120.781453pt;}
.x6_c01035{left:130.311853pt;}
.x33_c01035{left:140.071053pt;}
.x1f_c01035{left:149.047053pt;}
.x43_c01035{left:159.105453pt;}
.xf_c01035{left:160.099853pt;}
.x7_c01035{left:170.131853pt;}
.x3a_c01035{left:178.747053pt;}
.x40_c01035{left:188.889053pt;}
.x5b_c01035{left:190.842653pt;}
.x19_c01035{left:197.667053pt;}
.x10_c01035{left:199.075053pt;}
.x3b_c01035{left:207.760653pt;}
.x20_c01035{left:209.014653pt;}
.x2a_c01035{left:218.597853pt;}
.x1a_c01035{left:228.044653pt;}
.x34_c01035{left:229.056653pt;}
.x4e_c01035{left:237.539853pt;}
.x11_c01035{left:239.238253pt;}
.x41_c01035{left:249.125053pt;}
.x52_c01035{left:257.515853pt;}
.x2f_c01035{left:258.514653pt;}
.x56_c01035{left:267.767853pt;}
.x12_c01035{left:268.973453pt;}
.x42_c01035{left:278.816253pt;}
.x5c_c01035{left:279.845853pt;}
.x1b_c01035{left:288.095853pt;}
.x57_c01035{left:297.428253pt;}
.x4f_c01035{left:298.435853pt;}
.x35_c01035{left:299.760253pt;}
.x21_c01035{left:307.372253pt;}
.x8_c01035{left:316.753053pt;}
.x5d_c01035{left:325.971053pt;}
.x38_c01035{left:327.986253pt;}
.x22_c01035{left:337.142653pt;}
.x59_c01035{left:346.219853pt;}
.x26_c01035{left:347.258253pt;}
.x13_c01035{left:348.274653pt;}
.x36_c01035{left:357.153853pt;}
.x14_c01035{left:367.119853pt;}
.x3c_c01035{left:376.685453pt;}
.x5e_c01035{left:385.212653pt;}
.x53_c01035{left:386.277453pt;}
.x23_c01035{left:396.643853pt;}
.x49_c01035{left:406.464653pt;}
.x50_c01035{left:415.590253pt;}
.x27_c01035{left:417.579053pt;}
.x30_c01035{left:424.777453pt;}
.x9_c01035{left:425.908253pt;}
.x4b_c01035{left:436.045853pt;}
.x54_c01035{left:444.749053pt;}
.x51_c01035{left:445.673053pt;}
.x4c_c01035{left:454.257453pt;}
.x1c_c01035{left:455.335453pt;}
.xa_c01035{left:466.027453pt;}
.x5a_c01035{left:467.307853pt;}
.x4d_c01035{left:472.821053pt;}
.x15_c01035{left:475.632653pt;}
.x3d_c01035{left:484.824253pt;}
.xb_c01035{left:493.518653pt;}
.x24_c01035{left:494.451453pt;}
.x47_c01035{left:503.981853pt;}
.x16_c01035{left:514.295453pt;}
.x2b_c01035{left:523.231853pt;}
.x31_c01035{left:534.223053pt;}
.x1d_c01035{left:543.441053pt;}
.x17_c01035{left:544.347453pt;}
.x58_c01035{left:552.483053pt;}
.x2c_c01035{left:563.051853pt;}
.x3e_c01035{left:564.024253pt;}
.x28_c01035{left:572.586653pt;}
.x39_c01035{left:573.814253pt;}
.x3_c01035{left:582.979453pt;}
.x1e_c01035{left:592.778253pt;}
.xc_c01035{left:593.785853pt;}
.x45_c01035{left:601.547453pt;}
.x44_c01035{left:602.629853pt;}
.x25_c01035{left:612.155853pt;}
.xd_c01035{left:622.306653pt;}
.x32_c01035{left:623.485853pt;}
.x37_c01035{left:624.405453pt;}
.x4a_c01035{left:632.461853pt;}
.x29_c01035{left:633.768653pt;}
.x48_c01035{left:641.587453pt;}
.x5f_c01035{left:644.143853pt;}
}





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

.ir_c01036:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01036{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01036;src:url('chunks/assets/font_dcdf20bea2cf971a16ac46c6.woff2')format("woff");}.ff1_c01036{font-family:ff1_c01036;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01036;src:url('chunks/assets/font_adece093ac7ab4d9b859c67e.woff2')format("woff");}.ff2_c01036{font-family:ff2_c01036;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01036;src:url('chunks/assets/font_6bf465b907ead3d310ae45fe.woff2')format("woff");}.ff3_c01036{font-family:ff3_c01036;line-height:0.666000;font-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_c01036{transform:matrix(0.119048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119048,0.000000,0.000000,0.250000,0,0);}
.m66_c01036{transform:matrix(0.172223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172223,0.000000,0.000000,0.250000,0,0);}
.m50_c01036{transform:matrix(0.179564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179564,0.000000,0.000000,0.250000,0,0);}
.m9b_c01036{transform:matrix(0.203775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203775,0.000000,0.000000,0.250000,0,0);}
.m86_c01036{transform:matrix(0.206081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206081,0.000000,0.000000,0.250000,0,0);}
.m13_c01036{transform:matrix(0.214952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214952,0.000000,0.000000,0.250000,0,0);}
.m0_c01036{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m12_c01036{transform:matrix(0.250299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250299,0.000000,0.000000,0.250000,0,0);}
.m67_c01036{transform:matrix(0.252735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252735,0.000000,0.000000,0.250000,0,0);}
.m82_c01036{transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);}
.m38_c01036{transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);}
.m1_c01036{transform:matrix(0.255461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255461,0.000000,0.000000,0.250000,0,0);}
.m8c_c01036{transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);}
.m2b_c01036{transform:matrix(0.257128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257128,0.000000,0.000000,0.250000,0,0);}
.m81_c01036{transform:matrix(0.257665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257665,0.000000,0.000000,0.250000,0,0);}
.m5_c01036{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m56_c01036{transform:matrix(0.259494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259494,0.000000,0.000000,0.250000,0,0);}
.m14_c01036{transform:matrix(0.260559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260559,0.000000,0.000000,0.250000,0,0);}
.m3a_c01036{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m1c_c01036{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.m57_c01036{transform:matrix(0.261619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261619,0.000000,0.000000,0.250000,0,0);}
.m51_c01036{transform:matrix(0.262649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262649,0.000000,0.000000,0.250000,0,0);}
.m8e_c01036{transform:matrix(0.262985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262985,0.000000,0.000000,0.250000,0,0);}
.m7_c01036{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m83_c01036{transform:matrix(0.263900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263900,0.000000,0.000000,0.250000,0,0);}
.m71_c01036{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m9c_c01036{transform:matrix(0.264220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264220,0.000000,0.000000,0.250000,0,0);}
.m32_c01036{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m8a_c01036{transform:matrix(0.267374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267374,0.000000,0.000000,0.250000,0,0);}
.m35_c01036{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.m84_c01036{transform:matrix(0.270579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270579,0.000000,0.000000,0.250000,0,0);}
.m80_c01036{transform:matrix(0.270773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270773,0.000000,0.000000,0.250000,0,0);}
.m15_c01036{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m76_c01036{transform:matrix(0.271185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271185,0.000000,0.000000,0.250000,0,0);}
.m60_c01036{transform:matrix(0.271204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271204,0.000000,0.000000,0.250000,0,0);}
.m21_c01036{transform:matrix(0.271281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271281,0.000000,0.000000,0.250000,0,0);}
.m11_c01036{transform:matrix(0.271362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271362,0.000000,0.000000,0.250000,0,0);}
.m96_c01036{transform:matrix(0.271556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271556,0.000000,0.000000,0.250000,0,0);}
.m2c_c01036{transform:matrix(0.272458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272458,0.000000,0.000000,0.250000,0,0);}
.m29_c01036{transform:matrix(0.272766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272766,0.000000,0.000000,0.250000,0,0);}
.m95_c01036{transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);}
.m2e_c01036{transform:matrix(0.273506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273506,0.000000,0.000000,0.250000,0,0);}
.m2f_c01036{transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);}
.ma_c01036{transform:matrix(0.275208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275208,0.000000,0.000000,0.250000,0,0);}
.m99_c01036{transform:matrix(0.275347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275347,0.000000,0.000000,0.250000,0,0);}
.m4e_c01036{transform:matrix(0.276662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276662,0.000000,0.000000,0.250000,0,0);}
.m73_c01036{transform:matrix(0.277168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277168,0.000000,0.000000,0.250000,0,0);}
.m49_c01036{transform:matrix(0.277880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277880,0.000000,0.000000,0.250000,0,0);}
.m40_c01036{transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);}
.m24_c01036{transform:matrix(0.280061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280061,0.000000,0.000000,0.250000,0,0);}
.m78_c01036{transform:matrix(0.280910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280910,0.000000,0.000000,0.250000,0,0);}
.m6f_c01036{transform:matrix(0.280924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280924,0.000000,0.000000,0.250000,0,0);}
.m42_c01036{transform:matrix(0.281897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281897,0.000000,0.000000,0.250000,0,0);}
.m8f_c01036{transform:matrix(0.283982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283982,0.000000,0.000000,0.250000,0,0);}
.m6d_c01036{transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285614,0.000000,0.000000,0.250000,0,0);}
.m9d_c01036{transform:matrix(0.285688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285688,0.000000,0.000000,0.250000,0,0);}
.m26_c01036{transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);}
.m90_c01036{transform:matrix(0.286828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286828,0.000000,0.000000,0.250000,0,0);}
.m41_c01036{transform:matrix(0.286982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286982,0.000000,0.000000,0.250000,0,0);}
.m89_c01036{transform:matrix(0.287568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287568,0.000000,0.000000,0.250000,0,0);}
.m62_c01036{transform:matrix(0.287767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287767,0.000000,0.000000,0.250000,0,0);}
.m27_c01036{transform:matrix(0.287977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287977,0.000000,0.000000,0.250000,0,0);}
.m5f_c01036{transform:matrix(0.288855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288855,0.000000,0.000000,0.250000,0,0);}
.mc_c01036{transform:matrix(0.289869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289869,0.000000,0.000000,0.250000,0,0);}
.m2a_c01036{transform:matrix(0.289940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289940,0.000000,0.000000,0.250000,0,0);}
.m79_c01036{transform:matrix(0.289956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289956,0.000000,0.000000,0.250000,0,0);}
.m43_c01036{transform:matrix(0.290756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290756,0.000000,0.000000,0.250000,0,0);}
.m85_c01036{transform:matrix(0.291006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291006,0.000000,0.000000,0.250000,0,0);}
.m47_c01036{transform:matrix(0.291008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291008,0.000000,0.000000,0.250000,0,0);}
.m4_c01036{transform:matrix(0.291292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291292,0.000000,0.000000,0.250000,0,0);}
.m37_c01036{transform:matrix(0.291447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291447,0.000000,0.000000,0.250000,0,0);}
.m30_c01036{transform:matrix(0.291643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291643,0.000000,0.000000,0.250000,0,0);}
.m39_c01036{transform:matrix(0.291795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291795,0.000000,0.000000,0.250000,0,0);}
.m1b_c01036{transform:matrix(0.291905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291905,0.000000,0.000000,0.250000,0,0);}
.m8b_c01036{transform:matrix(0.292392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292392,0.000000,0.000000,0.250000,0,0);}
.m93_c01036{transform:matrix(0.293485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293485,0.000000,0.000000,0.250000,0,0);}
.m61_c01036{transform:matrix(0.295090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295090,0.000000,0.000000,0.250000,0,0);}
.m70_c01036{transform:matrix(0.295251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295251,0.000000,0.000000,0.250000,0,0);}
.m54_c01036{transform:matrix(0.295610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295610,0.000000,0.000000,0.250000,0,0);}
.m6a_c01036{transform:matrix(0.296125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296125,0.000000,0.000000,0.250000,0,0);}
.m1e_c01036{transform:matrix(0.296251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296251,0.000000,0.000000,0.250000,0,0);}
.m4b_c01036{transform:matrix(0.296383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296383,0.000000,0.000000,0.250000,0,0);}
.m4a_c01036{transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297106,0.000000,0.000000,0.250000,0,0);}
.m97_c01036{transform:matrix(0.297218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297218,0.000000,0.000000,0.250000,0,0);}
.m48_c01036{transform:matrix(0.297566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297566,0.000000,0.000000,0.250000,0,0);}
.m2_c01036{transform:matrix(0.298123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298123,0.000000,0.000000,0.250000,0,0);}
.m33_c01036{transform:matrix(0.298849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298849,0.000000,0.000000,0.250000,0,0);}
.m10_c01036{transform:matrix(0.299014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299014,0.000000,0.000000,0.250000,0,0);}
.m55_c01036{transform:matrix(0.299238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299238,0.000000,0.000000,0.250000,0,0);}
.m91_c01036{transform:matrix(0.299548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299548,0.000000,0.000000,0.250000,0,0);}
.m7d_c01036{transform:matrix(0.299719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299719,0.000000,0.000000,0.250000,0,0);}
.m6e_c01036{transform:matrix(0.300232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300232,0.000000,0.000000,0.250000,0,0);}
.m19_c01036{transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);}
.m46_c01036{transform:matrix(0.301789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301789,0.000000,0.000000,0.250000,0,0);}
.m98_c01036{transform:matrix(0.301815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301815,0.000000,0.000000,0.250000,0,0);}
.m4d_c01036{transform:matrix(0.301857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301857,0.000000,0.000000,0.250000,0,0);}
.m9e_c01036{transform:matrix(0.302137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302137,0.000000,0.000000,0.250000,0,0);}
.m31_c01036{transform:matrix(0.302571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302571,0.000000,0.000000,0.250000,0,0);}
.m3e_c01036{transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);}
.m3f_c01036{transform:matrix(0.303059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303059,0.000000,0.000000,0.250000,0,0);}
.m87_c01036{transform:matrix(0.304737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304737,0.000000,0.000000,0.250000,0,0);}
.m7e_c01036{transform:matrix(0.304920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304920,0.000000,0.000000,0.250000,0,0);}
.m17_c01036{transform:matrix(0.305020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305020,0.000000,0.000000,0.250000,0,0);}
.mf_c01036{transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);}
.m59_c01036{transform:matrix(0.305938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305938,0.000000,0.000000,0.250000,0,0);}
.m28_c01036{transform:matrix(0.306851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306851,0.000000,0.000000,0.250000,0,0);}
.m1a_c01036{transform:matrix(0.306996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306996,0.000000,0.000000,0.250000,0,0);}
.m68_c01036{transform:matrix(0.307034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307034,0.000000,0.000000,0.250000,0,0);}
.m58_c01036{transform:matrix(0.307242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307242,0.000000,0.000000,0.250000,0,0);}
.m74_c01036{transform:matrix(0.307953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307953,0.000000,0.000000,0.250000,0,0);}
.m5d_c01036{transform:matrix(0.308061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308061,0.000000,0.000000,0.250000,0,0);}
.m9a_c01036{transform:matrix(0.308482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308482,0.000000,0.000000,0.250000,0,0);}
.m45_c01036{transform:matrix(0.308752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308752,0.000000,0.000000,0.250000,0,0);}
.m4f_c01036{transform:matrix(0.309556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309556,0.000000,0.000000,0.250000,0,0);}
.m3d_c01036{transform:matrix(0.309681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309681,0.000000,0.000000,0.250000,0,0);}
.m20_c01036{transform:matrix(0.310227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310227,0.000000,0.000000,0.250000,0,0);}
.m7a_c01036{transform:matrix(0.310270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310270,0.000000,0.000000,0.250000,0,0);}
.m5c_c01036{transform:matrix(0.310318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310318,0.000000,0.000000,0.250000,0,0);}
.m6_c01036{transform:matrix(0.311646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311646,0.000000,0.000000,0.250000,0,0);}
.m5e_c01036{transform:matrix(0.312051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312051,0.000000,0.000000,0.250000,0,0);}
.m25_c01036{transform:matrix(0.314476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314476,0.000000,0.000000,0.250000,0,0);}
.m7c_c01036{transform:matrix(0.314758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314758,0.000000,0.000000,0.250000,0,0);}
.m5a_c01036{transform:matrix(0.315175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315175,0.000000,0.000000,0.250000,0,0);}
.m34_c01036{transform:matrix(0.315247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315247,0.000000,0.000000,0.250000,0,0);}
.m63_c01036{transform:matrix(0.318317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318317,0.000000,0.000000,0.250000,0,0);}
.m22_c01036{transform:matrix(0.318403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318403,0.000000,0.000000,0.250000,0,0);}
.m65_c01036{transform:matrix(0.318675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318675,0.000000,0.000000,0.250000,0,0);}
.m2d_c01036{transform:matrix(0.319143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319143,0.000000,0.000000,0.250000,0,0);}
.m1f_c01036{transform:matrix(0.319808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319808,0.000000,0.000000,0.250000,0,0);}
.m88_c01036{transform:matrix(0.320109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320109,0.000000,0.000000,0.250000,0,0);}
.m8d_c01036{transform:matrix(0.320473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320473,0.000000,0.000000,0.250000,0,0);}
.m5b_c01036{transform:matrix(0.320563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320563,0.000000,0.000000,0.250000,0,0);}
.m77_c01036{transform:matrix(0.322157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322157,0.000000,0.000000,0.250000,0,0);}
.m7f_c01036{transform:matrix(0.322386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322386,0.000000,0.000000,0.250000,0,0);}
.me_c01036{transform:matrix(0.322935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322935,0.000000,0.000000,0.250000,0,0);}
.mb_c01036{transform:matrix(0.324427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324427,0.000000,0.000000,0.250000,0,0);}
.m44_c01036{transform:matrix(0.324775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324775,0.000000,0.000000,0.250000,0,0);}
.m75_c01036{transform:matrix(0.326791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326791,0.000000,0.000000,0.250000,0,0);}
.m36_c01036{transform:matrix(0.327076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327076,0.000000,0.000000,0.250000,0,0);}
.m53_c01036{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m4c_c01036{transform:matrix(0.328609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328609,0.000000,0.000000,0.250000,0,0);}
.m9_c01036{transform:matrix(0.330354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330354,0.000000,0.000000,0.250000,0,0);}
.m69_c01036{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m7b_c01036{transform:matrix(0.334205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334205,0.000000,0.000000,0.250000,0,0);}
.m3c_c01036{transform:matrix(0.334462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334462,0.000000,0.000000,0.250000,0,0);}
.m94_c01036{transform:matrix(0.336444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336444,0.000000,0.000000,0.250000,0,0);}
.m6b_c01036{transform:matrix(0.336967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336967,0.000000,0.000000,0.250000,0,0);}
.m6c_c01036{transform:matrix(0.342737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342737,0.000000,0.000000,0.250000,0,0);}
.m16_c01036{transform:matrix(0.343982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343982,0.000000,0.000000,0.250000,0,0);}
.m72_c01036{transform:matrix(0.346251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346251,0.000000,0.000000,0.250000,0,0);}
.m18_c01036{transform:matrix(0.348334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348334,0.000000,0.000000,0.250000,0,0);}
.m23_c01036{transform:matrix(0.349926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349926,0.000000,0.000000,0.250000,0,0);}
.m3b_c01036{transform:matrix(0.352906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352906,0.000000,0.000000,0.250000,0,0);}
.m64_c01036{transform:matrix(0.353499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353499,0.000000,0.000000,0.250000,0,0);}
.m52_c01036{transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);}
.m1d_c01036{transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);}
.m8_c01036{transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);}
.m3_c01036{transform:matrix(0.385437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385437,0.000000,0.000000,0.250000,0,0);}
.md_c01036{transform:matrix(0.391460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391460,0.000000,0.000000,0.250000,0,0);}
.m92_c01036{transform:matrix(0.398028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398028,0.000000,0.000000,0.250000,0,0);}
.v0_c01036{vertical-align:0.000000px;}
.ls5_c01036{letter-spacing:-2.882880px;}
.ls16_c01036{letter-spacing:-2.744280px;}
.ls18_c01036{letter-spacing:-2.720758px;}
.lsb_c01036{letter-spacing:-2.399285px;}
.ls13_c01036{letter-spacing:-1.442707px;}
.ls19_c01036{letter-spacing:-1.427026px;}
.ls17_c01036{letter-spacing:-0.964418px;}
.ls3_c01036{letter-spacing:-0.948737px;}
.ls0_c01036{letter-spacing:0.000000px;}
.lse_c01036{letter-spacing:0.180338px;}
.ls14_c01036{letter-spacing:1.074190px;}
.ls7_c01036{letter-spacing:1.246687px;}
.lsf_c01036{letter-spacing:1.890905px;}
.ls15_c01036{letter-spacing:2.783484px;}
.ls6_c01036{letter-spacing:3.009600px;}
.ls8_c01036{letter-spacing:3.018708px;}
.ls12_c01036{letter-spacing:3.276900px;}
.ls11_c01036{letter-spacing:3.306610px;}
.ls9_c01036{letter-spacing:3.623400px;}
.lsc_c01036{letter-spacing:3.747902px;}
.ls2_c01036{letter-spacing:3.920400px;}
.ls4_c01036{letter-spacing:4.118400px;}
.ls1_c01036{letter-spacing:4.415400px;}
.ls1a_c01036{letter-spacing:29.937798px;}
.lsd_c01036{letter-spacing:49.896198px;}
.ls10_c01036{letter-spacing:52.747398px;}
.lsa_c01036{letter-spacing:59.875398px;}
.sc__c01036{text-shadow:none;}
.sc0_c01036{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01036{-webkit-text-stroke:0px transparent;}
.sc0_c01036{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01036{word-spacing:-19.602000px;}
.ws1_c01036{word-spacing:0.000000px;}
._2_c01036{margin-left:-10.585080px;}
._1_c01036{width:27.991656px;}
._0_c01036{width:32.605848px;}
._3_c01036{width:36.072828px;}
.fc0_c01036{color:transparent;}
.fs2_c01036{font-size:22.176000px;}
.fs11_c01036{font-size:23.166000px;}
.fs12_c01036{font-size:29.937798px;}
.fs0_c01036{font-size:33.264000px;}
.fs9_c01036{font-size:33.660000px;}
.fsa_c01036{font-size:49.896198px;}
.fsd_c01036{font-size:52.747398px;}
.fs8_c01036{font-size:59.875398px;}
.fs6_c01036{font-size:60.192000px;}
.fsc_c01036{font-size:64.548000px;}
.fsf_c01036{font-size:65.538000px;}
.fse_c01036{font-size:66.132198px;}
.fs10_c01036{font-size:66.528000px;}
.fs7_c01036{font-size:72.468000px;}
.fs4_c01036{font-size:74.844000px;}
.fsb_c01036{font-size:75.636198px;}
.fs3_c01036{font-size:78.408000px;}
.fs5_c01036{font-size:82.368000px;}
.fs1_c01036{font-size:88.308000px;}
.y0_c01036{bottom:0.000000px;}
.y1_c01036{bottom:76.500000px;}
.y1e_c01036{bottom:81.171120px;}
.y1d_c01036{bottom:91.863120px;}
.y1c_c01036{bottom:104.332170px;}
.y1a_c01036{bottom:122.511738px;}
.y1b_c01036{bottom:122.513520px;}
.y19_c01036{bottom:187.021920px;}
.y18_c01036{bottom:219.097920px;}
.y17_c01036{bottom:250.461120px;}
.y16_c01036{bottom:281.824320px;}
.y15_c01036{bottom:313.895370px;}
.y14_c01036{bottom:345.619920px;}
.y13_c01036{bottom:409.415520px;}
.y12_c01036{bottom:440.773770px;}
.y11_c01036{bottom:471.785520px;}
.y10_c01036{bottom:503.143770px;}
.yf_c01036{bottom:517.399770px;}
.ye_c01036{bottom:535.219770px;}
.yd_c01036{bottom:566.944320px;}
.yc_c01036{bottom:630.734970px;}
.yb_c01036{bottom:662.810970px;}
.ya_c01036{bottom:694.530570px;}
.y9_c01036{bottom:726.611520px;}
.y8_c01036{bottom:758.326170px;}
.y7_c01036{bottom:790.050720px;}
.y6_c01036{bottom:883.783920px;}
.y5_c01036{bottom:915.498570px;}
.y4_c01036{bottom:1017.072570px;}
.y3_c01036{bottom:1052.356170px;}
.y2_c01036{bottom:1097.975370px;}
.h14_c01036{height:19.938573px;}
.h4_c01036{height:23.128875px;}
.h13_c01036{height:24.161414px;}
.hb_c01036{height:33.035449px;}
.hc_c01036{height:33.230868px;}
.h2_c01036{height:34.693313px;}
.hf_c01036{height:35.129767px;}
.ha_c01036{height:39.877015px;}
.h8_c01036{height:59.075156px;}
.he_c01036{height:67.321547px;}
.h11_c01036{height:68.354086px;}
.h10_c01036{height:68.973816px;}
.h12_c01036{height:69.386625px;}
.h9_c01036{height:71.123379px;}
.h6_c01036{height:73.455293px;}
.hd_c01036{height:74.232792px;}
.h5_c01036{height:76.953164px;}
.h7_c01036{height:80.839688px;}
.h3_c01036{height:86.669473px;}
.h1_c01036{height:1110.000000px;}
.h0_c01036{height:1263.000000px;}
.w1_c01036{width:775.500000px;}
.w0_c01036{width:892.500000px;}
.x0_c01036{left:0.000000px;}
.x1_c01036{left:58.500000px;}
.x44_c01036{left:72.331035px;}
.x4f_c01036{left:73.360635px;}
.x10_c01036{left:74.444685px;}
.x5_c01036{left:75.974235px;}
.x11_c01036{left:97.387935px;}
.x20_c01036{left:106.649385px;}
.x45_c01036{left:117.984885px;}
.x14_c01036{left:128.488785px;}
.x3d_c01036{left:129.859935px;}
.x21_c01036{left:139.655985px;}
.x54_c01036{left:140.848935px;}
.x30_c01036{left:149.971785px;}
.x39_c01036{left:151.907235px;}
.x50_c01036{left:162.307185px;}
.x15_c01036{left:163.802085px;}
.x26_c01036{left:173.657535px;}
.x35_c01036{left:184.750485px;}
.x34_c01036{left:194.893035px;}
.x16_c01036{left:196.605735px;}
.x6_c01036{left:206.075085px;}
.x4b_c01036{left:207.084885px;}
.x3e_c01036{left:217.489785px;}
.x49_c01036{left:218.588685px;}
.x2_c01036{left:224.746485px;}
.x2b_c01036{left:228.315435px;}
.x7_c01036{left:239.091585px;}
.x57_c01036{left:240.205335px;}
.x4_c01036{left:243.323835px;}
.x46_c01036{left:250.120185px;}
.x3f_c01036{left:251.397285px;}
.x17_c01036{left:261.549735px;}
.x5e_c01036{left:262.787235px;}
.x12_c01036{left:273.484185px;}
.x55_c01036{left:274.786035px;}
.x22_c01036{left:284.552385px;}
.x40_c01036{left:285.977985px;}
.x18_c01036{left:295.922535px;}
.x8_c01036{left:306.649185px;}
.x23_c01036{left:317.316435px;}
.x63_c01036{left:326.389785px;}
.x19_c01036{left:327.458985px;}
.x41_c01036{left:329.805285px;}
.x5f_c01036{left:338.918235px;}
.x36_c01036{left:339.923085px;}
.x9_c01036{left:341.061585px;}
.x58_c01036{left:350.624985px;}
.x1a_c01036{left:361.816935px;}
.x51_c01036{left:373.231635px;}
.x27_c01036{left:374.236485px;}
.xa_c01036{left:384.339435px;}
.x31_c01036{left:395.749185px;}
.x4c_c01036{left:406.436235px;}
.x60_c01036{left:407.698485px;}
.xb_c01036{left:417.425235px;}
.x59_c01036{left:428.839935px;}
.x2c_c01036{left:429.849735px;}
.x1b_c01036{left:438.670635px;}
.x5b_c01036{left:440.249685px;}
.xc_c01036{left:450.926835px;}
.x13_c01036{left:461.678235px;}
.x61_c01036{left:463.079085px;}
.x28_c01036{left:474.102735px;}
.x1c_c01036{left:484.398735px;}
.x42_c01036{left:505.545135px;}
.x3a_c01036{left:506.579685px;}
.x62_c01036{left:507.896385px;}
.xd_c01036{left:516.925185px;}
.x3c_c01036{left:526.968735px;}
.x5c_c01036{left:529.626885px;}
.x1d_c01036{left:538.987335px;}
.x4a_c01036{left:540.002085px;}
.x29_c01036{left:550.055535px;}
.x5a_c01036{left:551.099985px;}
.x43_c01036{left:560.544585px;}
.x47_c01036{left:562.158285px;}
.xe_c01036{left:570.890085px;}
.x2d_c01036{left:572.167185px;}
.x1e_c01036{left:582.304785px;}
.x24_c01036{left:583.438335px;}
.x32_c01036{left:594.739185px;}
.x2e_c01036{left:606.233085px;}
.x5d_c01036{left:614.400585px;}
.x52_c01036{left:615.989535px;}
.x37_c01036{left:618.419985px;}
.x3b_c01036{left:628.394235px;}
.x4d_c01036{left:637.541835px;}
.x48_c01036{left:638.794185px;}
.x56_c01036{left:648.931785px;}
.x25_c01036{left:660.465285px;}
.xf_c01036{left:661.539435px;}
.x3_c01036{left:671.528535px;}
.x53_c01036{left:682.086885px;}
.x1f_c01036{left:684.299535px;}
.x33_c01036{left:693.491685px;}
.x38_c01036{left:694.986585px;}
.x4e_c01036{left:704.193585px;}
.x64_c01036{left:707.178435px;}
.x65_c01036{left:708.707985px;}
.x2a_c01036{left:716.454735px;}
.x2f_c01036{left:727.527885px;}
@media print{
.v0_c01036{vertical-align:0.000000pt;}
.ls5_c01036{letter-spacing:-2.562560pt;}
.ls16_c01036{letter-spacing:-2.439360pt;}
.ls18_c01036{letter-spacing:-2.418451pt;}
.lsb_c01036{letter-spacing:-2.132698pt;}
.ls13_c01036{letter-spacing:-1.282406pt;}
.ls19_c01036{letter-spacing:-1.268467pt;}
.ls17_c01036{letter-spacing:-0.857261pt;}
.ls3_c01036{letter-spacing:-0.843322pt;}
.ls0_c01036{letter-spacing:0.000000pt;}
.lse_c01036{letter-spacing:0.160301pt;}
.ls14_c01036{letter-spacing:0.954835pt;}
.ls7_c01036{letter-spacing:1.108166pt;}
.lsf_c01036{letter-spacing:1.680804pt;}
.ls15_c01036{letter-spacing:2.474208pt;}
.ls6_c01036{letter-spacing:2.675200pt;}
.ls8_c01036{letter-spacing:2.683296pt;}
.ls12_c01036{letter-spacing:2.912800pt;}
.ls11_c01036{letter-spacing:2.939209pt;}
.ls9_c01036{letter-spacing:3.220800pt;}
.lsc_c01036{letter-spacing:3.331469pt;}
.ls2_c01036{letter-spacing:3.484800pt;}
.ls4_c01036{letter-spacing:3.660800pt;}
.ls1_c01036{letter-spacing:3.924800pt;}
.ls1a_c01036{letter-spacing:26.611376pt;}
.lsd_c01036{letter-spacing:44.352176pt;}
.ls10_c01036{letter-spacing:46.886576pt;}
.lsa_c01036{letter-spacing:53.222576pt;}
.ws0_c01036{word-spacing:-17.424000pt;}
.ws1_c01036{word-spacing:0.000000pt;}
._2_c01036{margin-left:-9.408960pt;}
._1_c01036{width:24.881472pt;}
._0_c01036{width:28.982976pt;}
._3_c01036{width:32.064736pt;}
.fs2_c01036{font-size:19.712000pt;}
.fs11_c01036{font-size:20.592000pt;}
.fs12_c01036{font-size:26.611376pt;}
.fs0_c01036{font-size:29.568000pt;}
.fs9_c01036{font-size:29.920000pt;}
.fsa_c01036{font-size:44.352176pt;}
.fsd_c01036{font-size:46.886576pt;}
.fs8_c01036{font-size:53.222576pt;}
.fs6_c01036{font-size:53.504000pt;}
.fsc_c01036{font-size:57.376000pt;}
.fsf_c01036{font-size:58.256000pt;}
.fse_c01036{font-size:58.784176pt;}
.fs10_c01036{font-size:59.136000pt;}
.fs7_c01036{font-size:64.416000pt;}
.fs4_c01036{font-size:66.528000pt;}
.fsb_c01036{font-size:67.232176pt;}
.fs3_c01036{font-size:69.696000pt;}
.fs5_c01036{font-size:73.216000pt;}
.fs1_c01036{font-size:78.496000pt;}
.y0_c01036{bottom:0.000000pt;}
.y1_c01036{bottom:68.000000pt;}
.y1e_c01036{bottom:72.152107pt;}
.y1d_c01036{bottom:81.656107pt;}
.y1c_c01036{bottom:92.739707pt;}
.y1a_c01036{bottom:108.899323pt;}
.y1b_c01036{bottom:108.900907pt;}
.y19_c01036{bottom:166.241707pt;}
.y18_c01036{bottom:194.753707pt;}
.y17_c01036{bottom:222.632107pt;}
.y16_c01036{bottom:250.510507pt;}
.y15_c01036{bottom:279.018107pt;}
.y14_c01036{bottom:307.217707pt;}
.y13_c01036{bottom:363.924907pt;}
.y12_c01036{bottom:391.798907pt;}
.y11_c01036{bottom:419.364907pt;}
.y10_c01036{bottom:447.238907pt;}
.yf_c01036{bottom:459.910907pt;}
.ye_c01036{bottom:475.750907pt;}
.yd_c01036{bottom:503.950507pt;}
.yc_c01036{bottom:560.653307pt;}
.yb_c01036{bottom:589.165307pt;}
.ya_c01036{bottom:617.360507pt;}
.y9_c01036{bottom:645.876907pt;}
.y8_c01036{bottom:674.067707pt;}
.y7_c01036{bottom:702.267307pt;}
.y6_c01036{bottom:785.585707pt;}
.y5_c01036{bottom:813.776507pt;}
.y4_c01036{bottom:904.064507pt;}
.y3_c01036{bottom:935.427707pt;}
.y2_c01036{bottom:975.978107pt;}
.h14_c01036{height:17.723176pt;}
.h4_c01036{height:20.559000pt;}
.h13_c01036{height:21.476813pt;}
.hb_c01036{height:29.364844pt;}
.hc_c01036{height:29.538549pt;}
.h2_c01036{height:30.838500pt;}
.hf_c01036{height:31.226460pt;}
.ha_c01036{height:35.446236pt;}
.h8_c01036{height:52.511250pt;}
.he_c01036{height:59.841375pt;}
.h11_c01036{height:60.759188pt;}
.h10_c01036{height:61.310059pt;}
.h12_c01036{height:61.677000pt;}
.h9_c01036{height:63.220781pt;}
.h6_c01036{height:65.293594pt;}
.hd_c01036{height:65.984704pt;}
.h5_c01036{height:68.402813pt;}
.h7_c01036{height:71.857500pt;}
.h3_c01036{height:77.039531pt;}
.h1_c01036{height:986.666667pt;}
.h0_c01036{height:1122.666667pt;}
.w1_c01036{width:689.333333pt;}
.w0_c01036{width:793.333333pt;}
.x0_c01036{left:0.000000pt;}
.x1_c01036{left:52.000000pt;}
.x44_c01036{left:64.294253pt;}
.x4f_c01036{left:65.209453pt;}
.x10_c01036{left:66.173053pt;}
.x5_c01036{left:67.532653pt;}
.x11_c01036{left:86.567053pt;}
.x20_c01036{left:94.799453pt;}
.x45_c01036{left:104.875453pt;}
.x14_c01036{left:114.212253pt;}
.x3d_c01036{left:115.431053pt;}
.x21_c01036{left:124.138653pt;}
.x54_c01036{left:125.199053pt;}
.x30_c01036{left:133.308253pt;}
.x39_c01036{left:135.028653pt;}
.x50_c01036{left:144.273053pt;}
.x15_c01036{left:145.601853pt;}
.x26_c01036{left:154.362253pt;}
.x35_c01036{left:164.222653pt;}
.x34_c01036{left:173.238253pt;}
.x16_c01036{left:174.760653pt;}
.x6_c01036{left:183.177853pt;}
.x4b_c01036{left:184.075453pt;}
.x3e_c01036{left:193.324253pt;}
.x49_c01036{left:194.301053pt;}
.x2_c01036{left:199.774653pt;}
.x2b_c01036{left:202.947053pt;}
.x7_c01036{left:212.525853pt;}
.x57_c01036{left:213.515853pt;}
.x4_c01036{left:216.287853pt;}
.x46_c01036{left:222.329053pt;}
.x3f_c01036{left:223.464253pt;}
.x17_c01036{left:232.488653pt;}
.x5e_c01036{left:233.588653pt;}
.x12_c01036{left:243.097053pt;}
.x55_c01036{left:244.254253pt;}
.x22_c01036{left:252.935453pt;}
.x40_c01036{left:254.202653pt;}
.x18_c01036{left:263.042253pt;}
.x8_c01036{left:272.577053pt;}
.x23_c01036{left:282.059053pt;}
.x63_c01036{left:290.124253pt;}
.x19_c01036{left:291.074653pt;}
.x41_c01036{left:293.160253pt;}
.x5f_c01036{left:301.260653pt;}
.x36_c01036{left:302.153853pt;}
.x9_c01036{left:303.165853pt;}
.x58_c01036{left:311.666653pt;}
.x1a_c01036{left:321.615053pt;}
.x51_c01036{left:331.761453pt;}
.x27_c01036{left:332.654653pt;}
.xa_c01036{left:341.635053pt;}
.x31_c01036{left:351.777053pt;}
.x4c_c01036{left:361.276653pt;}
.x60_c01036{left:362.398653pt;}
.xb_c01036{left:371.044653pt;}
.x59_c01036{left:381.191053pt;}
.x2c_c01036{left:382.088653pt;}
.x1b_c01036{left:389.929453pt;}
.x5b_c01036{left:391.333053pt;}
.xc_c01036{left:400.823853pt;}
.x13_c01036{left:410.380653pt;}
.x61_c01036{left:411.625853pt;}
.x28_c01036{left:421.424653pt;}
.x1c_c01036{left:430.576653pt;}
.x42_c01036{left:449.373453pt;}
.x3a_c01036{left:450.293053pt;}
.x62_c01036{left:451.463453pt;}
.xd_c01036{left:459.489053pt;}
.x3c_c01036{left:468.416653pt;}
.x5c_c01036{left:470.779453pt;}
.x1d_c01036{left:479.099853pt;}
.x4a_c01036{left:480.001853pt;}
.x29_c01036{left:488.938253pt;}
.x5a_c01036{left:489.866653pt;}
.x43_c01036{left:498.261853pt;}
.x47_c01036{left:499.696253pt;}
.xe_c01036{left:507.457853pt;}
.x2d_c01036{left:508.593053pt;}
.x1e_c01036{left:517.604253pt;}
.x24_c01036{left:518.611853pt;}
.x32_c01036{left:528.657053pt;}
.x2e_c01036{left:538.873853pt;}
.x5d_c01036{left:546.133853pt;}
.x52_c01036{left:547.546253pt;}
.x37_c01036{left:549.706653pt;}
.x3b_c01036{left:558.572653pt;}
.x4d_c01036{left:566.703853pt;}
.x48_c01036{left:567.817053pt;}
.x56_c01036{left:576.828253pt;}
.x25_c01036{left:587.080253pt;}
.xf_c01036{left:588.035053pt;}
.x3_c01036{left:596.914253pt;}
.x53_c01036{left:606.299453pt;}
.x1f_c01036{left:608.266253pt;}
.x33_c01036{left:616.437053pt;}
.x38_c01036{left:617.765853pt;}
.x4e_c01036{left:625.949853pt;}
.x64_c01036{left:628.603053pt;}
.x65_c01036{left:629.962653pt;}
.x2a_c01036{left:636.848653pt;}
.x2f_c01036{left:646.691453pt;}
}





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

.ir_c01037:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01037{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01037;src:url('chunks/assets/font_b29608244077b94561ef1b4e.woff2')format("woff");}.ff1_c01037{font-family:ff1_c01037;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01037;src:url('chunks/assets/font_3346a7a09cddf1c1787f67b0.woff2')format("woff");}.ff2_c01037{font-family:ff2_c01037;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01037;src:url('chunks/assets/font_a25348c4e5e829d5384b021c.woff2')format("woff");}.ff3_c01037{font-family:ff3_c01037;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c01037{transform:matrix(0.130952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130952,0.000000,0.000000,0.250000,0,0);}
.m60_c01037{transform:matrix(0.152439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152439,0.000000,0.000000,0.250000,0,0);}
.m1_c01037{transform:matrix(0.174603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174603,0.000000,0.000000,0.250000,0,0);}
.mab_c01037{transform:matrix(0.174999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174999,0.000000,0.000000,0.250000,0,0);}
.m14_c01037{transform:matrix(0.210859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210859,0.000000,0.000000,0.250000,0,0);}
.m55_c01037{transform:matrix(0.225922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225922,0.000000,0.000000,0.250000,0,0);}
.m73_c01037{transform:matrix(0.234609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234609,0.000000,0.000000,0.250000,0,0);}
.m0_c01037{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m68_c01037{transform:matrix(0.253064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253064,0.000000,0.000000,0.250000,0,0);}
.m8f_c01037{transform:matrix(0.253667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253667,0.000000,0.000000,0.250000,0,0);}
.m38_c01037{transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);}
.md_c01037{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m72_c01037{transform:matrix(0.259115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259115,0.000000,0.000000,0.250000,0,0);}
.mc3_c01037{transform:matrix(0.259444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259444,0.000000,0.000000,0.250000,0,0);}
.m30_c01037{transform:matrix(0.260559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260559,0.000000,0.000000,0.250000,0,0);}
.m6_c01037{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m49_c01037{transform:matrix(0.261621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261621,0.000000,0.000000,0.250000,0,0);}
.mb2_c01037{transform:matrix(0.261767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261767,0.000000,0.000000,0.250000,0,0);}
.m99_c01037{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m2f_c01037{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m22_c01037{transform:matrix(0.264704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264704,0.000000,0.000000,0.250000,0,0);}
.m95_c01037{transform:matrix(0.265368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265368,0.000000,0.000000,0.250000,0,0);}
.m18_c01037{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m1a_c01037{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.mb8_c01037{transform:matrix(0.266949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266949,0.000000,0.000000,0.250000,0,0);}
.m20_c01037{transform:matrix(0.266975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266975,0.000000,0.000000,0.250000,0,0);}
.mbb_c01037{transform:matrix(0.267577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267577,0.000000,0.000000,0.250000,0,0);}
.mbc_c01037{transform:matrix(0.268005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268005,0.000000,0.000000,0.250000,0,0);}
.m12_c01037{transform:matrix(0.268552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268552,0.000000,0.000000,0.250000,0,0);}
.m25_c01037{transform:matrix(0.268958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268958,0.000000,0.000000,0.250000,0,0);}
.m7f_c01037{transform:matrix(0.269385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269385,0.000000,0.000000,0.250000,0,0);}
.m3a_c01037{transform:matrix(0.269912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269912,0.000000,0.000000,0.250000,0,0);}
.m15_c01037{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m42_c01037{transform:matrix(0.271656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271656,0.000000,0.000000,0.250000,0,0);}
.ma_c01037{transform:matrix(0.271681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271681,0.000000,0.000000,0.250000,0,0);}
.mb0_c01037{transform:matrix(0.271853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271853,0.000000,0.000000,0.250000,0,0);}
.me_c01037{transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);}
.ma4_c01037{transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);}
.m3_c01037{transform:matrix(0.274211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274211,0.000000,0.000000,0.250000,0,0);}
.m7c_c01037{transform:matrix(0.275286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275286,0.000000,0.000000,0.250000,0,0);}
.m85_c01037{transform:matrix(0.275347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275347,0.000000,0.000000,0.250000,0,0);}
.mb7_c01037{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m1b_c01037{transform:matrix(0.275884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275884,0.000000,0.000000,0.250000,0,0);}
.m6d_c01037{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m52_c01037{transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);}
.m9d_c01037{transform:matrix(0.278896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278896,0.000000,0.000000,0.250000,0,0);}
.mbd_c01037{transform:matrix(0.278962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278962,0.000000,0.000000,0.250000,0,0);}
.m83_c01037{transform:matrix(0.279350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279350,0.000000,0.000000,0.250000,0,0);}
.m5a_c01037{transform:matrix(0.280181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280181,0.000000,0.000000,0.250000,0,0);}
.m86_c01037{transform:matrix(0.280247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280247,0.000000,0.000000,0.250000,0,0);}
.m8_c01037{transform:matrix(0.282315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282315,0.000000,0.000000,0.250000,0,0);}
.m90_c01037{transform:matrix(0.282321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282321,0.000000,0.000000,0.250000,0,0);}
.m5c_c01037{transform:matrix(0.282600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282600,0.000000,0.000000,0.250000,0,0);}
.ma1_c01037{transform:matrix(0.282631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282631,0.000000,0.000000,0.250000,0,0);}
.m3e_c01037{transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);}
.m69_c01037{transform:matrix(0.283025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283025,0.000000,0.000000,0.250000,0,0);}
.m36_c01037{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m3f_c01037{transform:matrix(0.283668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283668,0.000000,0.000000,0.250000,0,0);}
.ma2_c01037{transform:matrix(0.284092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284092,0.000000,0.000000,0.250000,0,0);}
.m82_c01037{transform:matrix(0.284537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284537,0.000000,0.000000,0.250000,0,0);}
.m9f_c01037{transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);}
.m50_c01037{transform:matrix(0.285932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285932,0.000000,0.000000,0.250000,0,0);}
.mba_c01037{transform:matrix(0.286030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286030,0.000000,0.000000,0.250000,0,0);}
.m8a_c01037{transform:matrix(0.286496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286496,0.000000,0.000000,0.250000,0,0);}
.mc4_c01037{transform:matrix(0.286658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286658,0.000000,0.000000,0.250000,0,0);}
.m1d_c01037{transform:matrix(0.286835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286835,0.000000,0.000000,0.250000,0,0);}
.m4_c01037{transform:matrix(0.287051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287051,0.000000,0.000000,0.250000,0,0);}
.mc_c01037{transform:matrix(0.287478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287478,0.000000,0.000000,0.250000,0,0);}
.m7e_c01037{transform:matrix(0.287521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287521,0.000000,0.000000,0.250000,0,0);}
.m76_c01037{transform:matrix(0.287926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287926,0.000000,0.000000,0.250000,0,0);}
.mb4_c01037{transform:matrix(0.287943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287943,0.000000,0.000000,0.250000,0,0);}
.m43_c01037{transform:matrix(0.288441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288441,0.000000,0.000000,0.250000,0,0);}
.m5b_c01037{transform:matrix(0.289186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289186,0.000000,0.000000,0.250000,0,0);}
.mc2_c01037{transform:matrix(0.289292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289292,0.000000,0.000000,0.250000,0,0);}
.m88_c01037{transform:matrix(0.290170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290170,0.000000,0.000000,0.250000,0,0);}
.mad_c01037{transform:matrix(0.290756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290756,0.000000,0.000000,0.250000,0,0);}
.m4e_c01037{transform:matrix(0.291008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291008,0.000000,0.000000,0.250000,0,0);}
.m87_c01037{transform:matrix(0.291105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291105,0.000000,0.000000,0.250000,0,0);}
.m11_c01037{transform:matrix(0.291164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291164,0.000000,0.000000,0.250000,0,0);}
.m37_c01037{transform:matrix(0.291710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291710,0.000000,0.000000,0.250000,0,0);}
.mb5_c01037{transform:matrix(0.291837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291837,0.000000,0.000000,0.250000,0,0);}
.m9_c01037{transform:matrix(0.291905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291905,0.000000,0.000000,0.250000,0,0);}
.m1c_c01037{transform:matrix(0.292177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292177,0.000000,0.000000,0.250000,0,0);}
.m93_c01037{transform:matrix(0.292828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292828,0.000000,0.000000,0.250000,0,0);}
.m4d_c01037{transform:matrix(0.294593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294593,0.000000,0.000000,0.250000,0,0);}
.m7d_c01037{transform:matrix(0.294953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294953,0.000000,0.000000,0.250000,0,0);}
.m2e_c01037{transform:matrix(0.295136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295136,0.000000,0.000000,0.250000,0,0);}
.m56_c01037{transform:matrix(0.295212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295212,0.000000,0.000000,0.250000,0,0);}
.ma5_c01037{transform:matrix(0.295251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295251,0.000000,0.000000,0.250000,0,0);}
.m26_c01037{transform:matrix(0.295588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295588,0.000000,0.000000,0.250000,0,0);}
.m9b_c01037{transform:matrix(0.296052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296052,0.000000,0.000000,0.250000,0,0);}
.m35_c01037{transform:matrix(0.296800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296800,0.000000,0.000000,0.250000,0,0);}
.m59_c01037{transform:matrix(0.296813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296813,0.000000,0.000000,0.250000,0,0);}
.m65_c01037{transform:matrix(0.298534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298534,0.000000,0.000000,0.250000,0,0);}
.m6e_c01037{transform:matrix(0.298735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298735,0.000000,0.000000,0.250000,0,0);}
.ma6_c01037{transform:matrix(0.298899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298899,0.000000,0.000000,0.250000,0,0);}
.m96_c01037{transform:matrix(0.298997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298997,0.000000,0.000000,0.250000,0,0);}
.m6a_c01037{transform:matrix(0.299154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299154,0.000000,0.000000,0.250000,0,0);}
.m4f_c01037{transform:matrix(0.299459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299459,0.000000,0.000000,0.250000,0,0);}
.m24_c01037{transform:matrix(0.299731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299731,0.000000,0.000000,0.250000,0,0);}
.m8c_c01037{transform:matrix(0.300064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300064,0.000000,0.000000,0.250000,0,0);}
.m10_c01037{transform:matrix(0.300160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300160,0.000000,0.000000,0.250000,0,0);}
.ma0_c01037{transform:matrix(0.300379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300379,0.000000,0.000000,0.250000,0,0);}
.m2d_c01037{transform:matrix(0.300576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300576,0.000000,0.000000,0.250000,0,0);}
.m8d_c01037{transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);}
.m7_c01037{transform:matrix(0.301464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301464,0.000000,0.000000,0.250000,0,0);}
.m97_c01037{transform:matrix(0.301624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301624,0.000000,0.000000,0.250000,0,0);}
.m92_c01037{transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);}
.m98_c01037{transform:matrix(0.301645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301645,0.000000,0.000000,0.250000,0,0);}
.m91_c01037{transform:matrix(0.302066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302066,0.000000,0.000000,0.250000,0,0);}
.m74_c01037{transform:matrix(0.302107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302107,0.000000,0.000000,0.250000,0,0);}
.m64_c01037{transform:matrix(0.302197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302197,0.000000,0.000000,0.250000,0,0);}
.m66_c01037{transform:matrix(0.302936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302936,0.000000,0.000000,0.250000,0,0);}
.m39_c01037{transform:matrix(0.303150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303150,0.000000,0.000000,0.250000,0,0);}
.ma3_c01037{transform:matrix(0.303438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303438,0.000000,0.000000,0.250000,0,0);}
.m28_c01037{transform:matrix(0.303593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303593,0.000000,0.000000,0.250000,0,0);}
.m4b_c01037{transform:matrix(0.303687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303687,0.000000,0.000000,0.250000,0,0);}
.m33_c01037{transform:matrix(0.304748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304748,0.000000,0.000000,0.250000,0,0);}
.m78_c01037{transform:matrix(0.304909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304909,0.000000,0.000000,0.250000,0,0);}
.mbf_c01037{transform:matrix(0.305211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305211,0.000000,0.000000,0.250000,0,0);}
.mb1_c01037{transform:matrix(0.305280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305280,0.000000,0.000000,0.250000,0,0);}
.m6b_c01037{transform:matrix(0.305475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305475,0.000000,0.000000,0.250000,0,0);}
.m67_c01037{transform:matrix(0.306577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306577,0.000000,0.000000,0.250000,0,0);}
.m9c_c01037{transform:matrix(0.306763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306763,0.000000,0.000000,0.250000,0,0);}
.m7a_c01037{transform:matrix(0.306863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306863,0.000000,0.000000,0.250000,0,0);}
.m4a_c01037{transform:matrix(0.306884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306884,0.000000,0.000000,0.250000,0,0);}
.maf_c01037{transform:matrix(0.307057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307057,0.000000,0.000000,0.250000,0,0);}
.m5f_c01037{transform:matrix(0.307101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307101,0.000000,0.000000,0.250000,0,0);}
.mbe_c01037{transform:matrix(0.308746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308746,0.000000,0.000000,0.250000,0,0);}
.m40_c01037{transform:matrix(0.308752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308752,0.000000,0.000000,0.250000,0,0);}
.m23_c01037{transform:matrix(0.308869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308869,0.000000,0.000000,0.250000,0,0);}
.m47_c01037{transform:matrix(0.309021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309021,0.000000,0.000000,0.250000,0,0);}
.m17_c01037{transform:matrix(0.309355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309355,0.000000,0.000000,0.250000,0,0);}
.m9a_c01037{transform:matrix(0.309919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309919,0.000000,0.000000,0.250000,0,0);}
.m13_c01037{transform:matrix(0.310275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310275,0.000000,0.000000,0.250000,0,0);}
.m75_c01037{transform:matrix(0.310606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310606,0.000000,0.000000,0.250000,0,0);}
.m2c_c01037{transform:matrix(0.310783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310783,0.000000,0.000000,0.250000,0,0);}
.m71_c01037{transform:matrix(0.310860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310860,0.000000,0.000000,0.250000,0,0);}
.m61_c01037{transform:matrix(0.313498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313498,0.000000,0.000000,0.250000,0,0);}
.m1e_c01037{transform:matrix(0.313822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313822,0.000000,0.000000,0.250000,0,0);}
.m79_c01037{transform:matrix(0.314237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314237,0.000000,0.000000,0.250000,0,0);}
.m32_c01037{transform:matrix(0.314792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314792,0.000000,0.000000,0.250000,0,0);}
.mac_c01037{transform:matrix(0.314963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314963,0.000000,0.000000,0.250000,0,0);}
.m8b_c01037{transform:matrix(0.314994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314994,0.000000,0.000000,0.250000,0,0);}
.mf_c01037{transform:matrix(0.315268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315268,0.000000,0.000000,0.250000,0,0);}
.m3b_c01037{transform:matrix(0.315674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315674,0.000000,0.000000,0.250000,0,0);}
.m89_c01037{transform:matrix(0.317042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317042,0.000000,0.000000,0.250000,0,0);}
.m53_c01037{transform:matrix(0.317553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317553,0.000000,0.000000,0.250000,0,0);}
.m7b_c01037{transform:matrix(0.318723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318723,0.000000,0.000000,0.250000,0,0);}
.m57_c01037{transform:matrix(0.319143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319143,0.000000,0.000000,0.250000,0,0);}
.m70_c01037{transform:matrix(0.319176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319176,0.000000,0.000000,0.250000,0,0);}
.m8e_c01037{transform:matrix(0.319694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319694,0.000000,0.000000,0.250000,0,0);}
.m6c_c01037{transform:matrix(0.319833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319833,0.000000,0.000000,0.250000,0,0);}
.m81_c01037{transform:matrix(0.320095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320095,0.000000,0.000000,0.250000,0,0);}
.mae_c01037{transform:matrix(0.320601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320601,0.000000,0.000000,0.250000,0,0);}
.m3d_c01037{transform:matrix(0.322522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322522,0.000000,0.000000,0.250000,0,0);}
.m94_c01037{transform:matrix(0.323416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323416,0.000000,0.000000,0.250000,0,0);}
.m84_c01037{transform:matrix(0.323921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323921,0.000000,0.000000,0.250000,0,0);}
.m5_c01037{transform:matrix(0.324775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324775,0.000000,0.000000,0.250000,0,0);}
.m16_c01037{transform:matrix(0.324881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324881,0.000000,0.000000,0.250000,0,0);}
.mc5_c01037{transform:matrix(0.325280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325280,0.000000,0.000000,0.250000,0,0);}
.m19_c01037{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m5d_c01037{transform:matrix(0.327199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327199,0.000000,0.000000,0.250000,0,0);}
.mb9_c01037{transform:matrix(0.327636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327636,0.000000,0.000000,0.250000,0,0);}
.mc6_c01037{transform:matrix(0.327987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327987,0.000000,0.000000,0.250000,0,0);}
.m21_c01037{transform:matrix(0.329023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329023,0.000000,0.000000,0.250000,0,0);}
.mc0_c01037{transform:matrix(0.329328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329328,0.000000,0.000000,0.250000,0,0);}
.m62_c01037{transform:matrix(0.329405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329405,0.000000,0.000000,0.250000,0,0);}
.mc1_c01037{transform:matrix(0.330354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330354,0.000000,0.000000,0.250000,0,0);}
.m5e_c01037{transform:matrix(0.331101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331101,0.000000,0.000000,0.250000,0,0);}
.ma9_c01037{transform:matrix(0.331222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331222,0.000000,0.000000,0.250000,0,0);}
.m80_c01037{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m63_c01037{transform:matrix(0.333492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333492,0.000000,0.000000,0.250000,0,0);}
.mb6_c01037{transform:matrix(0.333637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333637,0.000000,0.000000,0.250000,0,0);}
.m46_c01037{transform:matrix(0.335331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335331,0.000000,0.000000,0.250000,0,0);}
.m51_c01037{transform:matrix(0.336444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336444,0.000000,0.000000,0.250000,0,0);}
.m3c_c01037{transform:matrix(0.336451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336451,0.000000,0.000000,0.250000,0,0);}
.m4c_c01037{transform:matrix(0.337021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337021,0.000000,0.000000,0.250000,0,0);}
.m1f_c01037{transform:matrix(0.342665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342665,0.000000,0.000000,0.250000,0,0);}
.m27_c01037{transform:matrix(0.342694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342694,0.000000,0.000000,0.250000,0,0);}
.m44_c01037{transform:matrix(0.345074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345074,0.000000,0.000000,0.250000,0,0);}
.ma8_c01037{transform:matrix(0.345630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345630,0.000000,0.000000,0.250000,0,0);}
.m2a_c01037{transform:matrix(0.346010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346010,0.000000,0.000000,0.250000,0,0);}
.mb3_c01037{transform:matrix(0.346501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346501,0.000000,0.000000,0.250000,0,0);}
.m6f_c01037{transform:matrix(0.348334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348334,0.000000,0.000000,0.250000,0,0);}
.m31_c01037{transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349302,0.000000,0.000000,0.250000,0,0);}
.m34_c01037{transform:matrix(0.349738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349738,0.000000,0.000000,0.250000,0,0);}
.m54_c01037{transform:matrix(0.350653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350653,0.000000,0.000000,0.250000,0,0);}
.m9e_c01037{transform:matrix(0.354675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354675,0.000000,0.000000,0.250000,0,0);}
.mb_c01037{transform:matrix(0.357753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357753,0.000000,0.000000,0.250000,0,0);}
.m41_c01037{transform:matrix(0.358813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358813,0.000000,0.000000,0.250000,0,0);}
.m45_c01037{transform:matrix(0.362980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362980,0.000000,0.000000,0.250000,0,0);}
.ma7_c01037{transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);}
.m58_c01037{transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);}
.m29_c01037{transform:matrix(0.368032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368032,0.000000,0.000000,0.250000,0,0);}
.maa_c01037{transform:matrix(0.373079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373079,0.000000,0.000000,0.250000,0,0);}
.m2b_c01037{transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);}
.m77_c01037{transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);}
.m48_c01037{transform:matrix(0.385437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385437,0.000000,0.000000,0.250000,0,0);}
.v0_c01037{vertical-align:0.000000px;}
.ls5_c01037{letter-spacing:-2.744280px;}
.ls8_c01037{letter-spacing:-1.427026px;}
.lsb_c01037{letter-spacing:-0.470448px;}
.ls1_c01037{letter-spacing:0.000000px;}
.lse_c01037{letter-spacing:2.336400px;}
.ls0_c01037{letter-spacing:2.579623px;}
.ls6_c01037{letter-spacing:2.673713px;}
.lsc_c01037{letter-spacing:3.524400px;}
.ls9_c01037{letter-spacing:3.667950px;}
.lsa_c01037{letter-spacing:3.747902px;}
.ls3_c01037{letter-spacing:3.920400px;}
.ls4_c01037{letter-spacing:51.321798px;}
.lsd_c01037{letter-spacing:57.024198px;}
.ls7_c01037{letter-spacing:58.449798px;}
.ls2_c01037{letter-spacing:59.875398px;}
.sc__c01037{text-shadow:none;}
.sc0_c01037{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01037{-webkit-text-stroke:0px transparent;}
.sc0_c01037{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01037{word-spacing:-12.990384px;}
.ws1_c01037{word-spacing:0.000000px;}
._1_c01037{margin-left:-4.438368px;}
._0_c01037{width:29.034482px;}
.fc0_c01037{color:transparent;}
.fs2_c01037{font-size:22.176000px;}
.fs0_c01037{font-size:27.720000px;}
.fse_c01037{font-size:33.660000px;}
.fsc_c01037{font-size:39.600000px;}
.fsd_c01037{font-size:46.728000px;}
.fs5_c01037{font-size:51.321798px;}
.fsb_c01037{font-size:57.024198px;}
.fs7_c01037{font-size:58.449798px;}
.fs1_c01037{font-size:59.875398px;}
.fs4_c01037{font-size:64.548000px;}
.fsa_c01037{font-size:70.488000px;}
.fs6_c01037{font-size:70.884000px;}
.fs8_c01037{font-size:77.220000px;}
.fs3_c01037{font-size:78.408000px;}
.fs9_c01037{font-size:78.804000px;}
.y0_c01037{bottom:0.000000px;}
.y1f_c01037{bottom:45.531135px;}
.y1_c01037{bottom:76.500000px;}
.y1e_c01037{bottom:159.579135px;}
.y1d_c01037{bottom:192.006585px;}
.y1c_c01037{bottom:224.087535px;}
.y1b_c01037{bottom:241.907535px;}
.y1a_c01037{bottom:255.807135px;}
.y19_c01037{bottom:287.883135px;}
.y18_c01037{bottom:319.246335px;}
.y17_c01037{bottom:351.317385px;}
.y16_c01037{bottom:383.754735px;}
.y15_c01037{bottom:415.830735px;}
.y14_c01037{bottom:447.901785px;}
.y13_c01037{bottom:492.100335px;}
.y12_c01037{bottom:510.271785px;}
.y11_c01037{bottom:541.634985px;}
.y10_c01037{bottom:573.359535px;}
.yf_c01037{bottom:604.722735px;}
.ye_c01037{bottom:636.793785px;}
.yd_c01037{bottom:668.518335px;}
.yc_c01037{bottom:699.881535px;}
.yb_c01037{bottom:731.596185px;}
.ya_c01037{bottom:763.677135px;}
.y9_c01037{bottom:795.391785px;}
.y8_c01037{bottom:826.398585px;}
.y7_c01037{bottom:857.761785px;}
.y6_c01037{bottom:889.124985px;}
.y5_c01037{bottom:920.131785px;}
.y4_c01037{bottom:1051.999785px;}
.y3_c01037{bottom:1056.637935px;}
.y2_c01037{bottom:1078.373385px;}
.h4_c01037{height:23.128875px;}
.h2_c01037{height:28.911094px;}
.h10_c01037{height:33.035449px;}
.h7_c01037{height:34.180317px;}
.hd_c01037{height:37.978116px;}
.h9_c01037{height:38.927565px;}
.h3_c01037{height:39.877015px;}
.he_c01037{height:41.301563px;}
.hf_c01037{height:48.735844px;}
.h6_c01037{height:67.321547px;}
.hc_c01037{height:69.180117px;}
.h8_c01037{height:69.568770px;}
.ha_c01037{height:75.787207px;}
.h5_c01037{height:76.953164px;}
.hb_c01037{height:77.341816px;}
.h1_c01037{height:1110.000000px;}
.h0_c01037{height:1263.000000px;}
.w1_c01037{width:775.500000px;}
.w0_c01037{width:892.500000px;}
.x0_c01037{left:0.000000px;}
.x2_c01037{left:51.199485px;}
.x1_c01037{left:58.500000px;}
.x32_c01037{left:69.479835px;}
.x1f_c01037{left:70.504485px;}
.x6_c01037{left:72.434985px;}
.x6e_c01037{left:92.606235px;}
.x20_c01037{left:94.056585px;}
.x39_c01037{left:104.184285px;}
.x17_c01037{left:105.263385px;}
.x21_c01037{left:114.935685px;}
.x7_c01037{left:116.306835px;}
.x6b_c01037{left:124.103085px;}
.x5a_c01037{left:125.325735px;}
.x10_c01037{left:126.667185px;}
.x26_c01037{left:136.101885px;}
.x55_c01037{left:137.685885px;}
.x64_c01037{left:149.348085px;}
.x11_c01037{left:158.223435px;}
.x22_c01037{left:160.124235px;}
.x56_c01037{left:169.727235px;}
.x3a_c01037{left:171.187485px;}
.x51_c01037{left:180.280635px;}
.x2d_c01037{left:181.785435px;}
.x12_c01037{left:192.026985px;}
.x36_c01037{left:193.294185px;}
.x57_c01037{left:203.075385px;}
.x18_c01037{left:204.332685px;}
.x4b_c01037{left:206.198835px;}
.x2e_c01037{left:214.306935px;}
.x5e_c01037{left:215.321685px;}
.x3b_c01037{left:226.063185px;}
.x19_c01037{left:237.423435px;}
.x42_c01037{left:246.932385px;}
.x5f_c01037{left:248.887635px;}
.x13_c01037{left:258.688635px;}
.x58_c01037{left:260.252835px;}
.x1a_c01037{left:269.930085px;}
.x47_c01037{left:270.934935px;}
.x33_c01037{left:281.295285px;}
.x6a_c01037{left:282.379335px;}
.x8_c01037{left:291.447735px;}
.x2f_c01037{left:292.749585px;}
.x9_c01037{left:314.465235px;}
.x1b_c01037{left:316.153185px;}
.x30_c01037{left:326.186835px;}
.x68_c01037{left:327.300585px;}
.x3c_c01037{left:336.938235px;}
.x60_c01037{left:338.339085px;}
.xa_c01037{left:347.986635px;}
.x5b_c01037{left:349.016235px;}
.x37_c01037{left:359.386485px;}
.x27_c01037{left:370.756635px;}
.x4c_c01037{left:380.711085px;}
.x3d_c01037{left:381.800085px;}
.xb_c01037{left:392.407935px;}
.x48_c01037{left:393.536535px;}
.x34_c01037{left:402.669285px;}
.x43_c01037{left:404.253285px;}
.x4d_c01037{left:414.955185px;}
.x28_c01037{left:425.270985px;}
.x6d_c01037{left:426.399585px;}
.x1c_c01037{left:437.398485px;}
.x14_c01037{left:446.907435px;}
.x3e_c01037{left:448.070685px;}
.x5c_c01037{left:449.080485px;}
.x29_c01037{left:458.470635px;}
.x52_c01037{left:460.920885px;}
.x23_c01037{left:469.657635px;}
.x69_c01037{left:471.548535px;}
.xc_c01037{left:481.087185px;}
.x3f_c01037{left:492.927585px;}
.x2a_c01037{left:501.763335px;}
.x65_c01037{left:504.441285px;}
.x38_c01037{left:513.128535px;}
.x5d_c01037{left:514.212585px;}
.x49_c01037{left:515.707485px;}
.x44_c01037{left:524.206635px;}
.x40_c01037{left:526.127235px;}
.x6f_c01037{left:527.419185px;}
.x24_c01037{left:535.418385px;}
.x35_c01037{left:536.477685px;}
.x31_c01037{left:546.941985px;}
.xd_c01037{left:548.154735px;}
.x66_c01037{left:558.955635px;}
.x2b_c01037{left:570.221835px;}
.x25_c01037{left:579.963435px;}
.x15_c01037{left:581.631585px;}
.x1d_c01037{left:592.041435px;}
.xe_c01037{left:601.184085px;}
.x4e_c01037{left:603.817485px;}
.x41_c01037{left:612.930435px;}
.x61_c01037{left:614.583735px;}
.x1e_c01037{left:624.330285px;}
.x4a_c01037{left:635.051985px;}
.x45_c01037{left:646.422135px;}
.x62_c01037{left:647.956635px;}
.xf_c01037{left:656.470635px;}
.x4f_c01037{left:657.658635px;}
.x67_c01037{left:658.708035px;}
.x3_c01037{left:668.598135px;}
.x63_c01037{left:681.091935px;}
.x50_c01037{left:689.972235px;}
.x53_c01037{left:691.358235px;}
.x5_c01037{left:697.021035px;}
.x59_c01037{left:698.446635px;}
.x4_c01037{left:702.451185px;}
.x2c_c01037{left:712.380885px;}
.x16_c01037{left:713.623335px;}
.x6c_c01037{left:725.023185px;}
.x70_c01037{left:726.889335px;}
.x46_c01037{left:734.839035px;}
.x54_c01037{left:736.071585px;}
.x71_c01037{left:760.133535px;}
@media print{
.v0_c01037{vertical-align:0.000000pt;}
.ls5_c01037{letter-spacing:-2.439360pt;}
.ls8_c01037{letter-spacing:-1.268467pt;}
.lsb_c01037{letter-spacing:-0.418176pt;}
.ls1_c01037{letter-spacing:0.000000pt;}
.lse_c01037{letter-spacing:2.076800pt;}
.ls0_c01037{letter-spacing:2.292998pt;}
.ls6_c01037{letter-spacing:2.376634pt;}
.lsc_c01037{letter-spacing:3.132800pt;}
.ls9_c01037{letter-spacing:3.260400pt;}
.lsa_c01037{letter-spacing:3.331469pt;}
.ls3_c01037{letter-spacing:3.484800pt;}
.ls4_c01037{letter-spacing:45.619376pt;}
.lsd_c01037{letter-spacing:50.688176pt;}
.ls7_c01037{letter-spacing:51.955376pt;}
.ls2_c01037{letter-spacing:53.222576pt;}
.ws0_c01037{word-spacing:-11.547008pt;}
.ws1_c01037{word-spacing:0.000000pt;}
._1_c01037{margin-left:-3.945216pt;}
._0_c01037{width:25.808429pt;}
.fs2_c01037{font-size:19.712000pt;}
.fs0_c01037{font-size:24.640000pt;}
.fse_c01037{font-size:29.920000pt;}
.fsc_c01037{font-size:35.200000pt;}
.fsd_c01037{font-size:41.536000pt;}
.fs5_c01037{font-size:45.619376pt;}
.fsb_c01037{font-size:50.688176pt;}
.fs7_c01037{font-size:51.955376pt;}
.fs1_c01037{font-size:53.222576pt;}
.fs4_c01037{font-size:57.376000pt;}
.fsa_c01037{font-size:62.656000pt;}
.fs6_c01037{font-size:63.008000pt;}
.fs8_c01037{font-size:68.640000pt;}
.fs3_c01037{font-size:69.696000pt;}
.fs9_c01037{font-size:70.048000pt;}
.y0_c01037{bottom:0.000000pt;}
.y1f_c01037{bottom:40.472120pt;}
.y1_c01037{bottom:68.000000pt;}
.y1e_c01037{bottom:141.848120pt;}
.y1d_c01037{bottom:170.672520pt;}
.y1c_c01037{bottom:199.188920pt;}
.y1b_c01037{bottom:215.028920pt;}
.y1a_c01037{bottom:227.384120pt;}
.y19_c01037{bottom:255.896120pt;}
.y18_c01037{bottom:283.774520pt;}
.y17_c01037{bottom:312.282120pt;}
.y16_c01037{bottom:341.115320pt;}
.y15_c01037{bottom:369.627320pt;}
.y14_c01037{bottom:398.134920pt;}
.y13_c01037{bottom:437.422520pt;}
.y12_c01037{bottom:453.574920pt;}
.y11_c01037{bottom:481.453320pt;}
.y10_c01037{bottom:509.652920pt;}
.yf_c01037{bottom:537.531320pt;}
.ye_c01037{bottom:566.038920pt;}
.yd_c01037{bottom:594.238520pt;}
.yc_c01037{bottom:622.116920pt;}
.yb_c01037{bottom:650.307720pt;}
.ya_c01037{bottom:678.824120pt;}
.y9_c01037{bottom:707.014920pt;}
.y8_c01037{bottom:734.576520pt;}
.y7_c01037{bottom:762.454920pt;}
.y6_c01037{bottom:790.333320pt;}
.y5_c01037{bottom:817.894920pt;}
.y4_c01037{bottom:935.110920pt;}
.y3_c01037{bottom:939.233720pt;}
.y2_c01037{bottom:958.554120pt;}
.h4_c01037{height:20.559000pt;}
.h2_c01037{height:25.698750pt;}
.h10_c01037{height:29.364844pt;}
.h7_c01037{height:30.382504pt;}
.hd_c01037{height:33.758325pt;}
.h9_c01037{height:34.602280pt;}
.h3_c01037{height:35.446236pt;}
.he_c01037{height:36.712500pt;}
.hf_c01037{height:43.320750pt;}
.h6_c01037{height:59.841375pt;}
.hc_c01037{height:61.493438pt;}
.h8_c01037{height:61.838906pt;}
.ha_c01037{height:67.366406pt;}
.h5_c01037{height:68.402813pt;}
.hb_c01037{height:68.748281pt;}
.h1_c01037{height:986.666667pt;}
.h0_c01037{height:1122.666667pt;}
.w1_c01037{width:689.333333pt;}
.w0_c01037{width:793.333333pt;}
.x0_c01037{left:0.000000pt;}
.x2_c01037{left:45.510653pt;}
.x1_c01037{left:52.000000pt;}
.x32_c01037{left:61.759853pt;}
.x1f_c01037{left:62.670653pt;}
.x6_c01037{left:64.386653pt;}
.x6e_c01037{left:82.316653pt;}
.x20_c01037{left:83.605853pt;}
.x39_c01037{left:92.608253pt;}
.x17_c01037{left:93.567453pt;}
.x21_c01037{left:102.165053pt;}
.x7_c01037{left:103.383853pt;}
.x6b_c01037{left:110.313853pt;}
.x5a_c01037{left:111.400653pt;}
.x10_c01037{left:112.593053pt;}
.x26_c01037{left:120.979453pt;}
.x55_c01037{left:122.387453pt;}
.x64_c01037{left:132.753853pt;}
.x11_c01037{left:140.643053pt;}
.x22_c01037{left:142.332653pt;}
.x56_c01037{left:150.868653pt;}
.x3a_c01037{left:152.166653pt;}
.x51_c01037{left:160.249453pt;}
.x2d_c01037{left:161.587053pt;}
.x12_c01037{left:170.690653pt;}
.x36_c01037{left:171.817053pt;}
.x57_c01037{left:180.511453pt;}
.x18_c01037{left:181.629053pt;}
.x4b_c01037{left:183.287853pt;}
.x2e_c01037{left:190.495053pt;}
.x5e_c01037{left:191.397053pt;}
.x3b_c01037{left:200.945053pt;}
.x19_c01037{left:211.043053pt;}
.x42_c01037{left:219.495453pt;}
.x5f_c01037{left:221.233453pt;}
.x13_c01037{left:229.945453pt;}
.x58_c01037{left:231.335853pt;}
.x1a_c01037{left:239.937853pt;}
.x47_c01037{left:240.831053pt;}
.x33_c01037{left:250.040253pt;}
.x6a_c01037{left:251.003853pt;}
.x8_c01037{left:259.064653pt;}
.x2f_c01037{left:260.221853pt;}
.x9_c01037{left:279.524653pt;}
.x1b_c01037{left:281.025053pt;}
.x30_c01037{left:289.943853pt;}
.x68_c01037{left:290.933853pt;}
.x3c_c01037{left:299.500653pt;}
.x60_c01037{left:300.745853pt;}
.xa_c01037{left:309.321453pt;}
.x5b_c01037{left:310.236653pt;}
.x37_c01037{left:319.454653pt;}
.x27_c01037{left:329.561453pt;}
.x4c_c01037{left:338.409853pt;}
.x3d_c01037{left:339.377853pt;}
.xb_c01037{left:348.807053pt;}
.x48_c01037{left:349.810253pt;}
.x34_c01037{left:357.928253pt;}
.x43_c01037{left:359.336253pt;}
.x4d_c01037{left:368.849053pt;}
.x28_c01037{left:378.018653pt;}
.x6d_c01037{left:379.021853pt;}
.x1c_c01037{left:388.798653pt;}
.x14_c01037{left:397.251053pt;}
.x3e_c01037{left:398.285053pt;}
.x5c_c01037{left:399.182653pt;}
.x29_c01037{left:407.529453pt;}
.x52_c01037{left:409.707453pt;}
.x23_c01037{left:417.473453pt;}
.x69_c01037{left:419.154253pt;}
.xc_c01037{left:427.633053pt;}
.x3f_c01037{left:438.157853pt;}
.x2a_c01037{left:446.011853pt;}
.x65_c01037{left:448.392253pt;}
.x38_c01037{left:456.114253pt;}
.x5d_c01037{left:457.077853pt;}
.x49_c01037{left:458.406653pt;}
.x44_c01037{left:465.961453pt;}
.x40_c01037{left:467.668653pt;}
.x6f_c01037{left:468.817053pt;}
.x24_c01037{left:475.927453pt;}
.x35_c01037{left:476.869053pt;}
.x31_c01037{left:486.170653pt;}
.xd_c01037{left:487.248653pt;}
.x66_c01037{left:496.849453pt;}
.x2b_c01037{left:506.863853pt;}
.x25_c01037{left:515.523053pt;}
.x15_c01037{left:517.005853pt;}
.x1d_c01037{left:526.259053pt;}
.xe_c01037{left:534.385853pt;}
.x4e_c01037{left:536.726653pt;}
.x41_c01037{left:544.827053pt;}
.x61_c01037{left:546.296653pt;}
.x1e_c01037{left:554.960253pt;}
.x4a_c01037{left:564.490653pt;}
.x45_c01037{left:574.597453pt;}
.x62_c01037{left:575.961453pt;}
.xf_c01037{left:583.529453pt;}
.x4f_c01037{left:584.585453pt;}
.x67_c01037{left:585.518253pt;}
.x3_c01037{left:594.309453pt;}
.x63_c01037{left:605.415053pt;}
.x50_c01037{left:613.308653pt;}
.x53_c01037{left:614.540653pt;}
.x5_c01037{left:619.574253pt;}
.x59_c01037{left:620.841453pt;}
.x4_c01037{left:624.401053pt;}
.x2c_c01037{left:633.227453pt;}
.x16_c01037{left:634.331853pt;}
.x6c_c01037{left:644.465053pt;}
.x70_c01037{left:646.123853pt;}
.x46_c01037{left:653.190253pt;}
.x54_c01037{left:654.285853pt;}
.x71_c01037{left:675.674253pt;}
}





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

.ir_c01038:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01038{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01038;src:url('chunks/assets/font_c1222a8873c7e59228b665f0.woff2')format("woff");}.ff1_c01038{font-family:ff1_c01038;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01038;src:url('chunks/assets/font_84748fc20e34b4f56a997953.woff2')format("woff");}.ff2_c01038{font-family:ff2_c01038;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01038;src:url('chunks/assets/font_b8cc032227d62552f68309ba.woff2')format("woff");}.ff3_c01038{font-family:ff3_c01038;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.maf_c01038{transform:matrix(0.090626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090626,0.000000,0.000000,0.250000,0,0);}
.m3f_c01038{transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);}
.m93_c01038{transform:matrix(0.133314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133314,0.000000,0.000000,0.250000,0,0);}
.mf_c01038{transform:matrix(0.187729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187729,0.000000,0.000000,0.250000,0,0);}
.mb0_c01038{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m6c_c01038{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m29_c01038{transform:matrix(0.211806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211806,0.000000,0.000000,0.250000,0,0);}
.m24_c01038{transform:matrix(0.220536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220536,0.000000,0.000000,0.250000,0,0);}
.m43_c01038{transform:matrix(0.231598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231598,0.000000,0.000000,0.250000,0,0);}
.m6d_c01038{transform:matrix(0.238455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238455,0.000000,0.000000,0.250000,0,0);}
.m7c_c01038{transform:matrix(0.241362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241362,0.000000,0.000000,0.250000,0,0);}
.m2_c01038{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m25_c01038{transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);}
.m80_c01038{transform:matrix(0.254597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254597,0.000000,0.000000,0.250000,0,0);}
.m85_c01038{transform:matrix(0.256838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256838,0.000000,0.000000,0.250000,0,0);}
.m8c_c01038{transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);}
.m0_c01038{transform:matrix(0.257881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257881,0.000000,0.000000,0.250000,0,0);}
.m63_c01038{transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);}
.m11_c01038{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m92_c01038{transform:matrix(0.260404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260404,0.000000,0.000000,0.250000,0,0);}
.m1f_c01038{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m78_c01038{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.m26_c01038{transform:matrix(0.262610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262610,0.000000,0.000000,0.250000,0,0);}
.m46_c01038{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m45_c01038{transform:matrix(0.263396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263396,0.000000,0.000000,0.250000,0,0);}
.m17_c01038{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m6_c01038{transform:matrix(0.264902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264902,0.000000,0.000000,0.250000,0,0);}
.mba_c01038{transform:matrix(0.265600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265600,0.000000,0.000000,0.250000,0,0);}
.m1b_c01038{transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);}
.m1e_c01038{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.ma2_c01038{transform:matrix(0.266295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266295,0.000000,0.000000,0.250000,0,0);}
.m36_c01038{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.m47_c01038{transform:matrix(0.268624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268624,0.000000,0.000000,0.250000,0,0);}
.m1_c01038{transform:matrix(0.269117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269117,0.000000,0.000000,0.250000,0,0);}
.m58_c01038{transform:matrix(0.269567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269567,0.000000,0.000000,0.250000,0,0);}
.m87_c01038{transform:matrix(0.269802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269802,0.000000,0.000000,0.250000,0,0);}
.m39_c01038{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m59_c01038{transform:matrix(0.271196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271196,0.000000,0.000000,0.250000,0,0);}
.m65_c01038{transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);}
.m64_c01038{transform:matrix(0.273158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273158,0.000000,0.000000,0.250000,0,0);}
.m16_c01038{transform:matrix(0.273539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273539,0.000000,0.000000,0.250000,0,0);}
.m4f_c01038{transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);}
.m68_c01038{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m5c_c01038{transform:matrix(0.275884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275884,0.000000,0.000000,0.250000,0,0);}
.mb4_c01038{transform:matrix(0.275963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275963,0.000000,0.000000,0.250000,0,0);}
.m2c_c01038{transform:matrix(0.277844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277844,0.000000,0.000000,0.250000,0,0);}
.m28_c01038{transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);}
.m57_c01038{transform:matrix(0.279557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279557,0.000000,0.000000,0.250000,0,0);}
.m9a_c01038{transform:matrix(0.280162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280162,0.000000,0.000000,0.250000,0,0);}
.m10_c01038{transform:matrix(0.280227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280227,0.000000,0.000000,0.250000,0,0);}
.mbc_c01038{transform:matrix(0.280237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280237,0.000000,0.000000,0.250000,0,0);}
.m53_c01038{transform:matrix(0.281190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281190,0.000000,0.000000,0.250000,0,0);}
.m5b_c01038{transform:matrix(0.281538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281538,0.000000,0.000000,0.250000,0,0);}
.m86_c01038{transform:matrix(0.281723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281723,0.000000,0.000000,0.250000,0,0);}
.m96_c01038{transform:matrix(0.281895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281895,0.000000,0.000000,0.250000,0,0);}
.m8_c01038{transform:matrix(0.282148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282148,0.000000,0.000000,0.250000,0,0);}
.md_c01038{transform:matrix(0.282254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282254,0.000000,0.000000,0.250000,0,0);}
.m76_c01038{transform:matrix(0.282567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282567,0.000000,0.000000,0.250000,0,0);}
.m3_c01038{transform:matrix(0.283037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283037,0.000000,0.000000,0.250000,0,0);}
.m4e_c01038{transform:matrix(0.283243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283243,0.000000,0.000000,0.250000,0,0);}
.m19_c01038{transform:matrix(0.283596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283596,0.000000,0.000000,0.250000,0,0);}
.m2e_c01038{transform:matrix(0.284092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284092,0.000000,0.000000,0.250000,0,0);}
.m3c_c01038{transform:matrix(0.284207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284207,0.000000,0.000000,0.250000,0,0);}
.m5_c01038{transform:matrix(0.284537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284537,0.000000,0.000000,0.250000,0,0);}
.m97_c01038{transform:matrix(0.285076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285076,0.000000,0.000000,0.250000,0,0);}
.m6a_c01038{transform:matrix(0.285458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285458,0.000000,0.000000,0.250000,0,0);}
.m12_c01038{transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);}
.m42_c01038{transform:matrix(0.286055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286055,0.000000,0.000000,0.250000,0,0);}
.ma8_c01038{transform:matrix(0.286348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286348,0.000000,0.000000,0.250000,0,0);}
.m37_c01038{transform:matrix(0.286496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286496,0.000000,0.000000,0.250000,0,0);}
.m75_c01038{transform:matrix(0.286910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286910,0.000000,0.000000,0.250000,0,0);}
.m71_c01038{transform:matrix(0.287284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287284,0.000000,0.000000,0.250000,0,0);}
.mb6_c01038{transform:matrix(0.288481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288481,0.000000,0.000000,0.250000,0,0);}
.m8b_c01038{transform:matrix(0.288557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288557,0.000000,0.000000,0.250000,0,0);}
.m1a_c01038{transform:matrix(0.288817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288817,0.000000,0.000000,0.250000,0,0);}
.m6e_c01038{transform:matrix(0.289371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289371,0.000000,0.000000,0.250000,0,0);}
.ma_c01038{transform:matrix(0.289940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289940,0.000000,0.000000,0.250000,0,0);}
.m3b_c01038{transform:matrix(0.290594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290594,0.000000,0.000000,0.250000,0,0);}
.m89_c01038{transform:matrix(0.291075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291075,0.000000,0.000000,0.250000,0,0);}
.m32_c01038{transform:matrix(0.291234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291234,0.000000,0.000000,0.250000,0,0);}
.maa_c01038{transform:matrix(0.291268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291268,0.000000,0.000000,0.250000,0,0);}
.mb3_c01038{transform:matrix(0.291407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291407,0.000000,0.000000,0.250000,0,0);}
.mbb_c01038{transform:matrix(0.292127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292127,0.000000,0.000000,0.250000,0,0);}
.ma7_c01038{transform:matrix(0.293101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293101,0.000000,0.000000,0.250000,0,0);}
.m8e_c01038{transform:matrix(0.293580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293580,0.000000,0.000000,0.250000,0,0);}
.m54_c01038{transform:matrix(0.293789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293789,0.000000,0.000000,0.250000,0,0);}
.m35_c01038{transform:matrix(0.294301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294301,0.000000,0.000000,0.250000,0,0);}
.m48_c01038{transform:matrix(0.294562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294562,0.000000,0.000000,0.250000,0,0);}
.mb5_c01038{transform:matrix(0.294890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294890,0.000000,0.000000,0.250000,0,0);}
.m30_c01038{transform:matrix(0.295142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295142,0.000000,0.000000,0.250000,0,0);}
.m95_c01038{transform:matrix(0.296313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296313,0.000000,0.000000,0.250000,0,0);}
.m90_c01038{transform:matrix(0.296686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296686,0.000000,0.000000,0.250000,0,0);}
.mb7_c01038{transform:matrix(0.297222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297222,0.000000,0.000000,0.250000,0,0);}
.m5f_c01038{transform:matrix(0.297238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297238,0.000000,0.000000,0.250000,0,0);}
.ma4_c01038{transform:matrix(0.299065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299065,0.000000,0.000000,0.250000,0,0);}
.m15_c01038{transform:matrix(0.299178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299178,0.000000,0.000000,0.250000,0,0);}
.m9f_c01038{transform:matrix(0.299770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299770,0.000000,0.000000,0.250000,0,0);}
.m27_c01038{transform:matrix(0.299775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299775,0.000000,0.000000,0.250000,0,0);}
.me_c01038{transform:matrix(0.299810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299810,0.000000,0.000000,0.250000,0,0);}
.m98_c01038{transform:matrix(0.299897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299897,0.000000,0.000000,0.250000,0,0);}
.m9d_c01038{transform:matrix(0.300064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300064,0.000000,0.000000,0.250000,0,0);}
.m84_c01038{transform:matrix(0.300213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300213,0.000000,0.000000,0.250000,0,0);}
.m7_c01038{transform:matrix(0.300306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300306,0.000000,0.000000,0.250000,0,0);}
.m79_c01038{transform:matrix(0.300419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300419,0.000000,0.000000,0.250000,0,0);}
.m94_c01038{transform:matrix(0.300484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300484,0.000000,0.000000,0.250000,0,0);}
.m50_c01038{transform:matrix(0.300562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300562,0.000000,0.000000,0.250000,0,0);}
.mac_c01038{transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);}
.m51_c01038{transform:matrix(0.300674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300674,0.000000,0.000000,0.250000,0,0);}
.m66_c01038{transform:matrix(0.300973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300973,0.000000,0.000000,0.250000,0,0);}
.mb1_c01038{transform:matrix(0.301169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301169,0.000000,0.000000,0.250000,0,0);}
.m4d_c01038{transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);}
.m4b_c01038{transform:matrix(0.301749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301749,0.000000,0.000000,0.250000,0,0);}
.m69_c01038{transform:matrix(0.302158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302158,0.000000,0.000000,0.250000,0,0);}
.m61_c01038{transform:matrix(0.302530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302530,0.000000,0.000000,0.250000,0,0);}
.m7b_c01038{transform:matrix(0.302537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302537,0.000000,0.000000,0.250000,0,0);}
.mb2_c01038{transform:matrix(0.302562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302562,0.000000,0.000000,0.250000,0,0);}
.m81_c01038{transform:matrix(0.303443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303443,0.000000,0.000000,0.250000,0,0);}
.m62_c01038{transform:matrix(0.303609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303609,0.000000,0.000000,0.250000,0,0);}
.m72_c01038{transform:matrix(0.304089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304089,0.000000,0.000000,0.250000,0,0);}
.m83_c01038{transform:matrix(0.304443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304443,0.000000,0.000000,0.250000,0,0);}
.ma9_c01038{transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);}
.m1d_c01038{transform:matrix(0.305549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305549,0.000000,0.000000,0.250000,0,0);}
.ma1_c01038{transform:matrix(0.305640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305640,0.000000,0.000000,0.250000,0,0);}
.m41_c01038{transform:matrix(0.305844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305844,0.000000,0.000000,0.250000,0,0);}
.m8f_c01038{transform:matrix(0.305995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305995,0.000000,0.000000,0.250000,0,0);}
.m3d_c01038{transform:matrix(0.306386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306386,0.000000,0.000000,0.250000,0,0);}
.m77_c01038{transform:matrix(0.306590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306590,0.000000,0.000000,0.250000,0,0);}
.m6b_c01038{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m6f_c01038{transform:matrix(0.308611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308611,0.000000,0.000000,0.250000,0,0);}
.mab_c01038{transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);}
.m21_c01038{transform:matrix(0.311458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311458,0.000000,0.000000,0.250000,0,0);}
.m9_c01038{transform:matrix(0.311858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311858,0.000000,0.000000,0.250000,0,0);}
.mae_c01038{transform:matrix(0.312051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312051,0.000000,0.000000,0.250000,0,0);}
.mb_c01038{transform:matrix(0.312438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312438,0.000000,0.000000,0.250000,0,0);}
.m7f_c01038{transform:matrix(0.312468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312468,0.000000,0.000000,0.250000,0,0);}
.m44_c01038{transform:matrix(0.312551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312551,0.000000,0.000000,0.250000,0,0);}
.m5e_c01038{transform:matrix(0.312744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312744,0.000000,0.000000,0.250000,0,0);}
.m3e_c01038{transform:matrix(0.313286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313286,0.000000,0.000000,0.250000,0,0);}
.m2d_c01038{transform:matrix(0.313344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313344,0.000000,0.000000,0.250000,0,0);}
.m55_c01038{transform:matrix(0.313396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313396,0.000000,0.000000,0.250000,0,0);}
.ma5_c01038{transform:matrix(0.313681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313681,0.000000,0.000000,0.250000,0,0);}
.m7e_c01038{transform:matrix(0.313940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313940,0.000000,0.000000,0.250000,0,0);}
.m7a_c01038{transform:matrix(0.316253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316253,0.000000,0.000000,0.250000,0,0);}
.m33_c01038{transform:matrix(0.316653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316653,0.000000,0.000000,0.250000,0,0);}
.m18_c01038{transform:matrix(0.316914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316914,0.000000,0.000000,0.250000,0,0);}
.m4_c01038{transform:matrix(0.317226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317226,0.000000,0.000000,0.250000,0,0);}
.m40_c01038{transform:matrix(0.317408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317408,0.000000,0.000000,0.250000,0,0);}
.m60_c01038{transform:matrix(0.318280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318280,0.000000,0.000000,0.250000,0,0);}
.m5d_c01038{transform:matrix(0.318297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318297,0.000000,0.000000,0.250000,0,0);}
.m13_c01038{transform:matrix(0.318986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318986,0.000000,0.000000,0.250000,0,0);}
.m3a_c01038{transform:matrix(0.319281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319281,0.000000,0.000000,0.250000,0,0);}
.m82_c01038{transform:matrix(0.320215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320215,0.000000,0.000000,0.250000,0,0);}
.m8a_c01038{transform:matrix(0.321702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321702,0.000000,0.000000,0.250000,0,0);}
.m14_c01038{transform:matrix(0.322241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322241,0.000000,0.000000,0.250000,0,0);}
.m7d_c01038{transform:matrix(0.322604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322604,0.000000,0.000000,0.250000,0,0);}
.m2a_c01038{transform:matrix(0.322798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322798,0.000000,0.000000,0.250000,0,0);}
.ma6_c01038{transform:matrix(0.322824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322824,0.000000,0.000000,0.250000,0,0);}
.mad_c01038{transform:matrix(0.323161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323161,0.000000,0.000000,0.250000,0,0);}
.m52_c01038{transform:matrix(0.323258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323258,0.000000,0.000000,0.250000,0,0);}
.m9c_c01038{transform:matrix(0.323416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323416,0.000000,0.000000,0.250000,0,0);}
.m9e_c01038{transform:matrix(0.324242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324242,0.000000,0.000000,0.250000,0,0);}
.ma3_c01038{transform:matrix(0.324794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324794,0.000000,0.000000,0.250000,0,0);}
.m22_c01038{transform:matrix(0.324924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324924,0.000000,0.000000,0.250000,0,0);}
.mc_c01038{transform:matrix(0.325208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325208,0.000000,0.000000,0.250000,0,0);}
.m70_c01038{transform:matrix(0.327181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327181,0.000000,0.000000,0.250000,0,0);}
.m4c_c01038{transform:matrix(0.328205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328205,0.000000,0.000000,0.250000,0,0);}
.mb9_c01038{transform:matrix(0.331443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331443,0.000000,0.000000,0.250000,0,0);}
.m23_c01038{transform:matrix(0.332348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332348,0.000000,0.000000,0.250000,0,0);}
.m1c_c01038{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m34_c01038{transform:matrix(0.334311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334311,0.000000,0.000000,0.250000,0,0);}
.m38_c01038{transform:matrix(0.336451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336451,0.000000,0.000000,0.250000,0,0);}
.m99_c01038{transform:matrix(0.336666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336666,0.000000,0.000000,0.250000,0,0);}
.m20_c01038{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m91_c01038{transform:matrix(0.339508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339508,0.000000,0.000000,0.250000,0,0);}
.ma0_c01038{transform:matrix(0.341963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341963,0.000000,0.000000,0.250000,0,0);}
.m9b_c01038{transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343432,0.000000,0.000000,0.250000,0,0);}
.m4a_c01038{transform:matrix(0.344410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344410,0.000000,0.000000,0.250000,0,0);}
.mbd_c01038{transform:matrix(0.346501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346501,0.000000,0.000000,0.250000,0,0);}
.mb8_c01038{transform:matrix(0.348765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348765,0.000000,0.000000,0.250000,0,0);}
.m8d_c01038{transform:matrix(0.356053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356053,0.000000,0.000000,0.250000,0,0);}
.m2b_c01038{transform:matrix(0.356703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356703,0.000000,0.000000,0.250000,0,0);}
.m73_c01038{transform:matrix(0.358505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358505,0.000000,0.000000,0.250000,0,0);}
.m31_c01038{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m67_c01038{transform:matrix(0.365782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365782,0.000000,0.000000,0.250000,0,0);}
.m5a_c01038{transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);}
.m74_c01038{transform:matrix(0.369566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369566,0.000000,0.000000,0.250000,0,0);}
.m49_c01038{transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);}
.m56_c01038{transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);}
.m2f_c01038{transform:matrix(0.385437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385437,0.000000,0.000000,0.250000,0,0);}
.m88_c01038{transform:matrix(0.386524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386524,0.000000,0.000000,0.250000,0,0);}
.v0_c01038{vertical-align:0.000000px;}
.lsd_c01038{letter-spacing:-2.744280px;}
.ls13_c01038{letter-spacing:-2.399285px;}
.ls12_c01038{letter-spacing:-0.964418px;}
.ls3_c01038{letter-spacing:0.000000px;}
.ls0_c01038{letter-spacing:1.215324px;}
.lse_c01038{letter-spacing:1.246687px;}
.ls16_c01038{letter-spacing:1.866110px;}
.lsf_c01038{letter-spacing:1.930500px;}
.ls11_c01038{letter-spacing:2.117016px;}
.ls17_c01038{letter-spacing:2.281673px;}
.ls6_c01038{letter-spacing:2.673713px;}
.ls10_c01038{letter-spacing:3.227400px;}
.ls5_c01038{letter-spacing:3.405610px;}
.ls8_c01038{letter-spacing:3.489156px;}
.ls14_c01038{letter-spacing:3.564000px;}
.lsa_c01038{letter-spacing:3.722400px;}
.ls2_c01038{letter-spacing:3.920400px;}
.ls1_c01038{letter-spacing:4.197610px;}
.lsb_c01038{letter-spacing:4.237200px;}
.lsc_c01038{letter-spacing:31.363200px;}
.ls7_c01038{letter-spacing:49.896198px;}
.ls9_c01038{letter-spacing:51.321798px;}
.ls4_c01038{letter-spacing:55.598598px;}
.ls15_c01038{letter-spacing:57.024198px;}
.sc__c01038{text-shadow:none;}
.sc0_c01038{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01038{-webkit-text-stroke:0px transparent;}
.sc0_c01038{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01038{word-spacing:-20.817324px;}
.ws1_c01038{word-spacing:0.000000px;}
._2_c01038{margin-left:-7.448364px;}
._0_c01038{margin-left:-6.116220px;}
._1_c01038{width:14.819112px;}
.fc0_c01038{color:transparent;}
.fs10_c01038{font-size:16.632000px;}
.fsb_c01038{font-size:25.146000px;}
.fsc_c01038{font-size:31.363200px;}
.fsd_c01038{font-size:34.056198px;}
.fs12_c01038{font-size:38.610000px;}
.fsf_c01038{font-size:39.204000px;}
.fs8_c01038{font-size:44.748000px;}
.fs4_c01038{font-size:49.896198px;}
.fs6_c01038{font-size:51.321798px;}
.fs2_c01038{font-size:55.598598px;}
.fse_c01038{font-size:56.628000px;}
.fs14_c01038{font-size:57.024198px;}
.fs11_c01038{font-size:64.548000px;}
.fs3_c01038{font-size:68.112198px;}
.fs13_c01038{font-size:71.280000px;}
.fsa_c01038{font-size:72.072198px;}
.fs7_c01038{font-size:74.448000px;}
.fs1_c01038{font-size:78.408000px;}
.fs5_c01038{font-size:78.804000px;}
.fs0_c01038{font-size:83.952198px;}
.fs9_c01038{font-size:84.744000px;}
.y0_c01038{bottom:0.000000px;}
.y1_c01038{bottom:76.500000px;}
.y26_c01038{bottom:128.923785px;}
.y25_c01038{bottom:192.362985px;}
.y24_c01038{bottom:224.087535px;}
.y23_c01038{bottom:255.094335px;}
.y22_c01038{bottom:286.813935px;}
.y21_c01038{bottom:317.464335px;}
.y20_c01038{bottom:349.896735px;}
.y1e_c01038{bottom:381.611385px;}
.y1f_c01038{bottom:386.600985px;}
.y1c_c01038{bottom:413.692335px;}
.y1b_c01038{bottom:414.043785px;}
.y1d_c01038{bottom:422.953785px;}
.y1a_c01038{bottom:429.725385px;}
.y19_c01038{bottom:440.422335px;}
.y17_c01038{bottom:445.055535px;}
.y18_c01038{bottom:445.406985px;}
.y16_c01038{bottom:477.487935px;}
.y15_c01038{bottom:509.202585px;}
.y14_c01038{bottom:540.565785px;}
.y13_c01038{bottom:572.646735px;}
.y12_c01038{bottom:603.653535px;}
.y11_c01038{bottom:636.085935px;}
.y10_c01038{bottom:667.087785px;}
.yf_c01038{bottom:693.461385px;}
.ye_c01038{bottom:701.307135px;}
.yd_c01038{bottom:711.637785px;}
.yc_c01038{bottom:724.116735px;}
.y9_c01038{bottom:730.175535px;}
.yb_c01038{bottom:761.533785px;}
.y8_c01038{bottom:762.251535px;}
.ya_c01038{bottom:769.735935px;}
.y7_c01038{bottom:794.322585px;}
.y6_c01038{bottom:826.047135px;}
.y5_c01038{bottom:857.410335px;}
.y4_c01038{bottom:888.773535px;}
.y3_c01038{bottom:920.844585px;}
.y2_c01038{bottom:1057.345785px;}
.h12_c01038{height:16.323398px;}
.he_c01038{height:20.887891px;}
.hd_c01038{height:26.226492px;}
.h6_c01038{height:33.230868px;}
.h8_c01038{height:34.180317px;}
.hf_c01038{height:35.519550px;}
.h4_c01038{height:37.028666px;}
.h16_c01038{height:37.978116px;}
.h11_c01038{height:38.476582px;}
.h14_c01038{height:40.269023px;}
.ha_c01038{height:43.917715px;}
.h10_c01038{height:59.061234px;}
.h5_c01038{height:66.848397px;}
.h13_c01038{height:67.321547px;}
.h15_c01038{height:69.957422px;}
.h9_c01038{height:73.066641px;}
.hc_c01038{height:75.169050px;}
.h3_c01038{height:76.953164px;}
.h7_c01038{height:77.341816px;}
.h2_c01038{height:82.394491px;}
.hb_c01038{height:83.171602px;}
.h1_c01038{height:1110.000000px;}
.h0_c01038{height:1263.000000px;}
.w1_c01038{width:775.500000px;}
.w0_c01038{width:892.500000px;}
.x0_c01038{left:0.000000px;}
.x1_c01038{left:58.500000px;}
.x2f_c01038{left:64.802085px;}
.xf_c01038{left:65.881185px;}
.x3_c01038{left:67.371135px;}
.x5c_c01038{left:88.477935px;}
.x28_c01038{left:97.249335px;}
.x20_c01038{left:98.734335px;}
.x55_c01038{left:109.000635px;}
.x4b_c01038{left:110.505435px;}
.x3b_c01038{left:119.969835px;}
.x30_c01038{left:122.524035px;}
.x6f_c01038{left:130.067835px;}
.x4c_c01038{left:142.655685px;}
.x56_c01038{left:153.392235px;}
.x10_c01038{left:154.649535px;}
.x18_c01038{left:163.539735px;}
.x4_c01038{left:165.504885px;}
.x6d_c01038{left:175.835535px;}
.x5_c01038{left:187.576935px;}
.x4f_c01038{left:197.046285px;}
.x19_c01038{left:198.110535px;}
.x21_c01038{left:209.322285px;}
.x59_c01038{left:219.133185px;}
.x29_c01038{left:220.306335px;}
.x46_c01038{left:231.028035px;}
.x1a_c01038{left:240.868635px;}
.x22_c01038{left:242.135835px;}
.x6_c01038{left:253.471335px;}
.x69_c01038{left:254.530635px;}
.x4d_c01038{left:264.173235px;}
.x11_c01038{left:265.539435px;}
.x61_c01038{left:267.489735px;}
.x57_c01038{left:274.716735px;}
.x3c_c01038{left:276.132435px;}
.x1b_c01038{left:286.136385px;}
.x23_c01038{left:287.309535px;}
.x31_c01038{left:297.669885px;}
.x50_c01038{left:299.105385px;}
.x70_c01038{left:300.154785px;}
.x3d_c01038{left:301.827885px;}
.x43_c01038{left:308.218335px;}
.x12_c01038{left:310.079535px;}
.x24_c01038{left:319.618185px;}
.x5d_c01038{left:320.905185px;}
.x32_c01038{left:331.567485px;}
.x62_c01038{left:333.651435px;}
.x51_c01038{left:342.284235px;}
.x6e_c01038{left:344.942385px;}
.x5e_c01038{left:352.461435px;}
.x7_c01038{left:353.560335px;}
.x34_c01038{left:365.019585px;}
.x1c_c01038{left:375.429435px;}
.x25_c01038{left:386.665935px;}
.x52_c01038{left:388.136085px;}
.x5f_c01038{left:394.501785px;}
.x2a_c01038{left:396.986685px;}
.x3e_c01038{left:398.506335px;}
.x8_c01038{left:408.030135px;}
.x13_c01038{left:409.490385px;}
.x44_c01038{left:410.604135px;}
.x1d_c01038{left:419.929935px;}
.x2b_c01038{left:421.291185px;}
.x35_c01038{left:430.899135px;}
.x4a_c01038{left:432.101985px;}
.x9_c01038{left:443.140485px;}
.x2c_c01038{left:453.490935px;}
.xa_c01038{left:463.623585px;}
.x67_c01038{left:464.866035px;}
.x6a_c01038{left:475.166985px;}
.x58_c01038{left:476.622285px;}
.x33_c01038{left:486.853935px;}
.x14_c01038{left:497.659785px;}
.x6b_c01038{left:507.460785px;}
.x47_c01038{left:508.663635px;}
.x3f_c01038{left:519.771435px;}
.x2d_c01038{left:521.043585px;}
.x1e_c01038{left:530.245635px;}
.x36_c01038{left:532.176135px;}
.x26_c01038{left:541.516785px;}
.x53_c01038{left:552.857235px;}
.x40_c01038{left:554.238285px;}
.x45_c01038{left:564.969885px;}
.x63_c01038{left:573.785835px;}
.x27_c01038{left:574.929285px;}
.xb_c01038{left:576.731085px;}
.x41_c01038{left:585.155985px;}
.x15_c01038{left:586.423185px;}
.x37_c01038{left:596.115285px;}
.x4e_c01038{left:597.778485px;}
.x65_c01038{left:607.866585px;}
.x5a_c01038{left:609.529785px;}
.x16_c01038{left:617.979435px;}
.x2e_c01038{left:619.162485px;}
.x1f_c01038{left:630.577185px;}
.xc_c01038{left:640.294035px;}
.x60_c01038{left:642.353235px;}
.x48_c01038{left:652.297785px;}
.x68_c01038{left:653.357085px;}
.x17_c01038{left:664.049085px;}
.x2_c01038{left:674.389635px;}
.x6c_c01038{left:684.943035px;}
.x49_c01038{left:686.170635px;}
.xd_c01038{left:695.981535px;}
.x64_c01038{left:697.931835px;}
.x38_c01038{left:699.416835px;}
.x39_c01038{left:701.921535px;}
.x3a_c01038{left:704.381685px;}
.x5b_c01038{left:706.376535px;}
.x42_c01038{left:707.529885px;}
.x66_c01038{left:715.222185px;}
.x54_c01038{left:717.707085px;}
.xe_c01038{left:719.305935px;}
@media print{
.v0_c01038{vertical-align:0.000000pt;}
.lsd_c01038{letter-spacing:-2.439360pt;}
.ls13_c01038{letter-spacing:-2.132698pt;}
.ls12_c01038{letter-spacing:-0.857261pt;}
.ls3_c01038{letter-spacing:0.000000pt;}
.ls0_c01038{letter-spacing:1.080288pt;}
.lse_c01038{letter-spacing:1.108166pt;}
.ls16_c01038{letter-spacing:1.658765pt;}
.lsf_c01038{letter-spacing:1.716000pt;}
.ls11_c01038{letter-spacing:1.881792pt;}
.ls17_c01038{letter-spacing:2.028154pt;}
.ls6_c01038{letter-spacing:2.376634pt;}
.ls10_c01038{letter-spacing:2.868800pt;}
.ls5_c01038{letter-spacing:3.027209pt;}
.ls8_c01038{letter-spacing:3.101472pt;}
.ls14_c01038{letter-spacing:3.168000pt;}
.lsa_c01038{letter-spacing:3.308800pt;}
.ls2_c01038{letter-spacing:3.484800pt;}
.ls1_c01038{letter-spacing:3.731209pt;}
.lsb_c01038{letter-spacing:3.766400pt;}
.lsc_c01038{letter-spacing:27.878400pt;}
.ls7_c01038{letter-spacing:44.352176pt;}
.ls9_c01038{letter-spacing:45.619376pt;}
.ls4_c01038{letter-spacing:49.420976pt;}
.ls15_c01038{letter-spacing:50.688176pt;}
.ws0_c01038{word-spacing:-18.504288pt;}
.ws1_c01038{word-spacing:0.000000pt;}
._2_c01038{margin-left:-6.620768pt;}
._0_c01038{margin-left:-5.436640pt;}
._1_c01038{width:13.172544pt;}
.fs10_c01038{font-size:14.784000pt;}
.fsb_c01038{font-size:22.352000pt;}
.fsc_c01038{font-size:27.878400pt;}
.fsd_c01038{font-size:30.272176pt;}
.fs12_c01038{font-size:34.320000pt;}
.fsf_c01038{font-size:34.848000pt;}
.fs8_c01038{font-size:39.776000pt;}
.fs4_c01038{font-size:44.352176pt;}
.fs6_c01038{font-size:45.619376pt;}
.fs2_c01038{font-size:49.420976pt;}
.fse_c01038{font-size:50.336000pt;}
.fs14_c01038{font-size:50.688176pt;}
.fs11_c01038{font-size:57.376000pt;}
.fs3_c01038{font-size:60.544176pt;}
.fs13_c01038{font-size:63.360000pt;}
.fsa_c01038{font-size:64.064176pt;}
.fs7_c01038{font-size:66.176000pt;}
.fs1_c01038{font-size:69.696000pt;}
.fs5_c01038{font-size:70.048000pt;}
.fs0_c01038{font-size:74.624176pt;}
.fs9_c01038{font-size:75.328000pt;}
.y0_c01038{bottom:0.000000pt;}
.y1_c01038{bottom:68.000000pt;}
.y26_c01038{bottom:114.598920pt;}
.y25_c01038{bottom:170.989320pt;}
.y24_c01038{bottom:199.188920pt;}
.y23_c01038{bottom:226.750520pt;}
.y22_c01038{bottom:254.945720pt;}
.y21_c01038{bottom:282.190520pt;}
.y20_c01038{bottom:311.019320pt;}
.y1e_c01038{bottom:339.210120pt;}
.y1f_c01038{bottom:343.645320pt;}
.y1c_c01038{bottom:367.726520pt;}
.y1b_c01038{bottom:368.038920pt;}
.y1d_c01038{bottom:375.958920pt;}
.y1a_c01038{bottom:381.978120pt;}
.y19_c01038{bottom:391.486520pt;}
.y17_c01038{bottom:395.604920pt;}
.y18_c01038{bottom:395.917320pt;}
.y16_c01038{bottom:424.433720pt;}
.y15_c01038{bottom:452.624520pt;}
.y14_c01038{bottom:480.502920pt;}
.y13_c01038{bottom:509.019320pt;}
.y12_c01038{bottom:536.580920pt;}
.y11_c01038{bottom:565.409720pt;}
.y10_c01038{bottom:592.966920pt;}
.yf_c01038{bottom:616.410120pt;}
.ye_c01038{bottom:623.384120pt;}
.yd_c01038{bottom:632.566920pt;}
.yc_c01038{bottom:643.659320pt;}
.y9_c01038{bottom:649.044920pt;}
.yb_c01038{bottom:676.918920pt;}
.y8_c01038{bottom:677.556920pt;}
.ya_c01038{bottom:684.209720pt;}
.y7_c01038{bottom:706.064520pt;}
.y6_c01038{bottom:734.264120pt;}
.y5_c01038{bottom:762.142520pt;}
.y4_c01038{bottom:790.020920pt;}
.y3_c01038{bottom:818.528520pt;}
.y2_c01038{bottom:939.862920pt;}
.h12_c01038{height:14.509688pt;}
.he_c01038{height:18.567014pt;}
.hd_c01038{height:23.312438pt;}
.h6_c01038{height:29.538549pt;}
.h8_c01038{height:30.382504pt;}
.hf_c01038{height:31.572934pt;}
.h4_c01038{height:32.914370pt;}
.h16_c01038{height:33.758325pt;}
.h11_c01038{height:34.201406pt;}
.h14_c01038{height:35.794688pt;}
.ha_c01038{height:39.037969pt;}
.h10_c01038{height:52.498875pt;}
.h5_c01038{height:59.420798pt;}
.h13_c01038{height:59.841375pt;}
.h15_c01038{height:62.184375pt;}
.h9_c01038{height:64.948125pt;}
.hc_c01038{height:66.816934pt;}
.h3_c01038{height:68.402813pt;}
.h7_c01038{height:68.748281pt;}
.h2_c01038{height:73.239548pt;}
.hb_c01038{height:73.930313pt;}
.h1_c01038{height:986.666667pt;}
.h0_c01038{height:1122.666667pt;}
.w1_c01038{width:689.333333pt;}
.w0_c01038{width:793.333333pt;}
.x0_c01038{left:0.000000pt;}
.x1_c01038{left:52.000000pt;}
.x2f_c01038{left:57.601853pt;}
.xf_c01038{left:58.561053pt;}
.x3_c01038{left:59.885453pt;}
.x5c_c01038{left:78.647053pt;}
.x28_c01038{left:86.443853pt;}
.x20_c01038{left:87.763853pt;}
.x55_c01038{left:96.889453pt;}
.x4b_c01038{left:98.227053pt;}
.x3b_c01038{left:106.639853pt;}
.x30_c01038{left:108.910253pt;}
.x6f_c01038{left:115.615853pt;}
.x4c_c01038{left:126.805053pt;}
.x56_c01038{left:136.348653pt;}
.x10_c01038{left:137.466253pt;}
.x18_c01038{left:145.368653pt;}
.x4_c01038{left:147.115453pt;}
.x6d_c01038{left:156.298253pt;}
.x5_c01038{left:166.735053pt;}
.x4f_c01038{left:175.152253pt;}
.x19_c01038{left:176.098253pt;}
.x21_c01038{left:186.064253pt;}
.x59_c01038{left:194.785053pt;}
.x29_c01038{left:195.827853pt;}
.x46_c01038{left:205.358253pt;}
.x1a_c01038{left:214.105453pt;}
.x22_c01038{left:215.231853pt;}
.x6_c01038{left:225.307853pt;}
.x69_c01038{left:226.249453pt;}
.x4d_c01038{left:234.820653pt;}
.x11_c01038{left:236.035053pt;}
.x61_c01038{left:237.768653pt;}
.x57_c01038{left:244.192653pt;}
.x3c_c01038{left:245.451053pt;}
.x1b_c01038{left:254.343453pt;}
.x23_c01038{left:255.386253pt;}
.x31_c01038{left:264.595453pt;}
.x50_c01038{left:265.871453pt;}
.x70_c01038{left:266.804253pt;}
.x3d_c01038{left:268.291453pt;}
.x43_c01038{left:273.971853pt;}
.x12_c01038{left:275.626253pt;}
.x24_c01038{left:284.105053pt;}
.x5d_c01038{left:285.249053pt;}
.x32_c01038{left:294.726653pt;}
.x62_c01038{left:296.579053pt;}
.x51_c01038{left:304.252653pt;}
.x6e_c01038{left:306.615453pt;}
.x5e_c01038{left:313.299053pt;}
.x7_c01038{left:314.275853pt;}
.x34_c01038{left:324.461853pt;}
.x1c_c01038{left:333.715053pt;}
.x25_c01038{left:343.703053pt;}
.x52_c01038{left:345.009853pt;}
.x5f_c01038{left:350.668253pt;}
.x2a_c01038{left:352.877053pt;}
.x3e_c01038{left:354.227853pt;}
.x8_c01038{left:362.693453pt;}
.x13_c01038{left:363.991453pt;}
.x44_c01038{left:364.981453pt;}
.x1d_c01038{left:373.271053pt;}
.x2b_c01038{left:374.481053pt;}
.x35_c01038{left:383.021453pt;}
.x4a_c01038{left:384.090653pt;}
.x9_c01038{left:393.902653pt;}
.x2c_c01038{left:403.103053pt;}
.xa_c01038{left:412.109853pt;}
.x67_c01038{left:413.214253pt;}
.x6a_c01038{left:422.370653pt;}
.x58_c01038{left:423.664253pt;}
.x33_c01038{left:432.759053pt;}
.x14_c01038{left:442.364253pt;}
.x6b_c01038{left:451.076253pt;}
.x47_c01038{left:452.145453pt;}
.x3f_c01038{left:462.019053pt;}
.x2d_c01038{left:463.149853pt;}
.x1e_c01038{left:471.329453pt;}
.x36_c01038{left:473.045453pt;}
.x26_c01038{left:481.348253pt;}
.x53_c01038{left:491.428653pt;}
.x40_c01038{left:492.656253pt;}
.x45_c01038{left:502.195453pt;}
.x63_c01038{left:510.031853pt;}
.x27_c01038{left:511.048253pt;}
.xb_c01038{left:512.649853pt;}
.x41_c01038{left:520.138653pt;}
.x15_c01038{left:521.265053pt;}
.x37_c01038{left:529.880253pt;}
.x4e_c01038{left:531.358653pt;}
.x65_c01038{left:540.325853pt;}
.x5a_c01038{left:541.804253pt;}
.x16_c01038{left:549.315053pt;}
.x2e_c01038{left:550.366653pt;}
.x1f_c01038{left:560.513053pt;}
.xc_c01038{left:569.150253pt;}
.x60_c01038{left:570.980653pt;}
.x48_c01038{left:579.820253pt;}
.x68_c01038{left:580.761853pt;}
.x17_c01038{left:590.265853pt;}
.x2_c01038{left:599.457453pt;}
.x6c_c01038{left:608.838253pt;}
.x49_c01038{left:609.929453pt;}
.xd_c01038{left:618.650253pt;}
.x64_c01038{left:620.383853pt;}
.x38_c01038{left:621.703853pt;}
.x39_c01038{left:623.930253pt;}
.x3a_c01038{left:626.117053pt;}
.x5b_c01038{left:627.890253pt;}
.x42_c01038{left:628.915453pt;}
.x66_c01038{left:635.753053pt;}
.x54_c01038{left:637.961853pt;}
.xe_c01038{left:639.383053pt;}
}





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

.ir_c01039:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01039{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01039;src:url('chunks/assets/font_00a5342b6607d060bf14c36a.woff2')format("woff");}.ff1_c01039{font-family:ff1_c01039;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01039;src:url('chunks/assets/font_487f24c503c25b8a4ac08089.woff2')format("woff");}.ff2_c01039{font-family:ff2_c01039;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01039;src:url('chunks/assets/font_f4216aa47d3556fcfb27fb6e.woff2')format("woff");}.ff3_c01039{font-family:ff3_c01039;line-height:0.666000;font-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_c01039{transform:matrix(0.139895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139895,0.000000,0.000000,0.250000,0,0);}
.m7f_c01039{transform:matrix(0.153645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153645,0.000000,0.000000,0.250000,0,0);}
.m77_c01039{transform:matrix(0.155382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155382,0.000000,0.000000,0.250000,0,0);}
.mb3_c01039{transform:matrix(0.174713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174713,0.000000,0.000000,0.250000,0,0);}
.m5b_c01039{transform:matrix(0.180921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180921,0.000000,0.000000,0.250000,0,0);}
.m59_c01039{transform:matrix(0.182566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182566,0.000000,0.000000,0.250000,0,0);}
.m7a_c01039{transform:matrix(0.205169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205169,0.000000,0.000000,0.250000,0,0);}
.ma5_c01039{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);}
.m7d_c01039{transform:matrix(0.224050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224050,0.000000,0.000000,0.250000,0,0);}
.m6a_c01039{transform:matrix(0.224241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224241,0.000000,0.000000,0.250000,0,0);}
.m72_c01039{transform:matrix(0.227167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227167,0.000000,0.000000,0.250000,0,0);}
.m34_c01039{transform:matrix(0.227723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227723,0.000000,0.000000,0.250000,0,0);}
.m83_c01039{transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231017,0.000000,0.000000,0.250000,0,0);}
.ma4_c01039{transform:matrix(0.233456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233456,0.000000,0.000000,0.250000,0,0);}
.mcc_c01039{transform:matrix(0.241363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241363,0.000000,0.000000,0.250000,0,0);}
.m1_c01039{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m6b_c01039{transform:matrix(0.250017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250017,0.000000,0.000000,0.250000,0,0);}
.m3a_c01039{transform:matrix(0.252150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252150,0.000000,0.000000,0.250000,0,0);}
.m1d_c01039{transform:matrix(0.252603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252603,0.000000,0.000000,0.250000,0,0);}
.m61_c01039{transform:matrix(0.253544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253544,0.000000,0.000000,0.250000,0,0);}
.m22_c01039{transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);}
.m38_c01039{transform:matrix(0.254087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254087,0.000000,0.000000,0.250000,0,0);}
.m0_c01039{transform:matrix(0.255825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255825,0.000000,0.000000,0.250000,0,0);}
.maa_c01039{transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);}
.m78_c01039{transform:matrix(0.256220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256220,0.000000,0.000000,0.250000,0,0);}
.m66_c01039{transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);}
.m74_c01039{transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);}
.mb2_c01039{transform:matrix(0.258106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258106,0.000000,0.000000,0.250000,0,0);}
.m76_c01039{transform:matrix(0.258479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258479,0.000000,0.000000,0.250000,0,0);}
.m16_c01039{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m67_c01039{transform:matrix(0.258777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258777,0.000000,0.000000,0.250000,0,0);}
.m39_c01039{transform:matrix(0.260522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260522,0.000000,0.000000,0.250000,0,0);}
.m82_c01039{transform:matrix(0.260559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260559,0.000000,0.000000,0.250000,0,0);}
.m11_c01039{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.mf_c01039{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.m5e_c01039{transform:matrix(0.261569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261569,0.000000,0.000000,0.250000,0,0);}
.m19_c01039{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m54_c01039{transform:matrix(0.263460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263460,0.000000,0.000000,0.250000,0,0);}
.m56_c01039{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.ma8_c01039{transform:matrix(0.264038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264038,0.000000,0.000000,0.250000,0,0);}
.m2a_c01039{transform:matrix(0.264220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264220,0.000000,0.000000,0.250000,0,0);}
.m3d_c01039{transform:matrix(0.264943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264943,0.000000,0.000000,0.250000,0,0);}
.m33_c01039{transform:matrix(0.265369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265369,0.000000,0.000000,0.250000,0,0);}
.mad_c01039{transform:matrix(0.266076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266076,0.000000,0.000000,0.250000,0,0);}
.m41_c01039{transform:matrix(0.266207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266207,0.000000,0.000000,0.250000,0,0);}
.m64_c01039{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m7c_c01039{transform:matrix(0.266295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266295,0.000000,0.000000,0.250000,0,0);}
.mc3_c01039{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.m45_c01039{transform:matrix(0.267528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267528,0.000000,0.000000,0.250000,0,0);}
.m5c_c01039{transform:matrix(0.267785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267785,0.000000,0.000000,0.250000,0,0);}
.md_c01039{transform:matrix(0.267985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267985,0.000000,0.000000,0.250000,0,0);}
.m97_c01039{transform:matrix(0.268150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268150,0.000000,0.000000,0.250000,0,0);}
.mb5_c01039{transform:matrix(0.268196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268196,0.000000,0.000000,0.250000,0,0);}
.mcb_c01039{transform:matrix(0.268381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268381,0.000000,0.000000,0.250000,0,0);}
.m2e_c01039{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.m37_c01039{transform:matrix(0.268824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268824,0.000000,0.000000,0.250000,0,0);}
.m99_c01039{transform:matrix(0.270579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270579,0.000000,0.000000,0.250000,0,0);}
.mc2_c01039{transform:matrix(0.270758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270758,0.000000,0.000000,0.250000,0,0);}
.mbf_c01039{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m2b_c01039{transform:matrix(0.271281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271281,0.000000,0.000000,0.250000,0,0);}
.mc0_c01039{transform:matrix(0.271341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271341,0.000000,0.000000,0.250000,0,0);}
.m8c_c01039{transform:matrix(0.272698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272698,0.000000,0.000000,0.250000,0,0);}
.m46_c01039{transform:matrix(0.272789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272789,0.000000,0.000000,0.250000,0,0);}
.ma6_c01039{transform:matrix(0.272943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272943,0.000000,0.000000,0.250000,0,0);}
.m84_c01039{transform:matrix(0.273525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273525,0.000000,0.000000,0.250000,0,0);}
.mb1_c01039{transform:matrix(0.273782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273782,0.000000,0.000000,0.250000,0,0);}
.m53_c01039{transform:matrix(0.273903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273903,0.000000,0.000000,0.250000,0,0);}
.m30_c01039{transform:matrix(0.274314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274314,0.000000,0.000000,0.250000,0,0);}
.mc1_c01039{transform:matrix(0.275234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275234,0.000000,0.000000,0.250000,0,0);}
.m4d_c01039{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m2c_c01039{transform:matrix(0.275884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275884,0.000000,0.000000,0.250000,0,0);}
.m49_c01039{transform:matrix(0.276488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276488,0.000000,0.000000,0.250000,0,0);}
.m4c_c01039{transform:matrix(0.277551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277551,0.000000,0.000000,0.250000,0,0);}
.m24_c01039{transform:matrix(0.278302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278302,0.000000,0.000000,0.250000,0,0);}
.m32_c01039{transform:matrix(0.278393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278393,0.000000,0.000000,0.250000,0,0);}
.m4_c01039{transform:matrix(0.278485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278485,0.000000,0.000000,0.250000,0,0);}
.m51_c01039{transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);}
.mc9_c01039{transform:matrix(0.279160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279160,0.000000,0.000000,0.250000,0,0);}
.m20_c01039{transform:matrix(0.280056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280056,0.000000,0.000000,0.250000,0,0);}
.mb4_c01039{transform:matrix(0.280088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280088,0.000000,0.000000,0.250000,0,0);}
.m28_c01039{transform:matrix(0.280900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280900,0.000000,0.000000,0.250000,0,0);}
.mc_c01039{transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281547,0.000000,0.000000,0.250000,0,0);}
.m52_c01039{transform:matrix(0.282068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282068,0.000000,0.000000,0.250000,0,0);}
.mcd_c01039{transform:matrix(0.282304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282304,0.000000,0.000000,0.250000,0,0);}
.m9_c01039{transform:matrix(0.282727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282727,0.000000,0.000000,0.250000,0,0);}
.m9e_c01039{transform:matrix(0.282997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282997,0.000000,0.000000,0.250000,0,0);}
.m95_c01039{transform:matrix(0.283629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283629,0.000000,0.000000,0.250000,0,0);}
.m3e_c01039{transform:matrix(0.284081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284081,0.000000,0.000000,0.250000,0,0);}
.m4f_c01039{transform:matrix(0.284197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284197,0.000000,0.000000,0.250000,0,0);}
.m90_c01039{transform:matrix(0.284678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284678,0.000000,0.000000,0.250000,0,0);}
.ma9_c01039{transform:matrix(0.284756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284756,0.000000,0.000000,0.250000,0,0);}
.m6_c01039{transform:matrix(0.285364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285364,0.000000,0.000000,0.250000,0,0);}
.m31_c01039{transform:matrix(0.285579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285579,0.000000,0.000000,0.250000,0,0);}
.mc4_c01039{transform:matrix(0.286030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286030,0.000000,0.000000,0.250000,0,0);}
.m47_c01039{transform:matrix(0.286496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286496,0.000000,0.000000,0.250000,0,0);}
.m58_c01039{transform:matrix(0.287284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287284,0.000000,0.000000,0.250000,0,0);}
.mb_c01039{transform:matrix(0.287485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287485,0.000000,0.000000,0.250000,0,0);}
.m5f_c01039{transform:matrix(0.287569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287569,0.000000,0.000000,0.250000,0,0);}
.m8f_c01039{transform:matrix(0.287634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287634,0.000000,0.000000,0.250000,0,0);}
.mc6_c01039{transform:matrix(0.288272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288272,0.000000,0.000000,0.250000,0,0);}
.m40_c01039{transform:matrix(0.288458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288458,0.000000,0.000000,0.250000,0,0);}
.m63_c01039{transform:matrix(0.288601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288601,0.000000,0.000000,0.250000,0,0);}
.m26_c01039{transform:matrix(0.289576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289576,0.000000,0.000000,0.250000,0,0);}
.maf_c01039{transform:matrix(0.290055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290055,0.000000,0.000000,0.250000,0,0);}
.m7e_c01039{transform:matrix(0.290967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290967,0.000000,0.000000,0.250000,0,0);}
.mc7_c01039{transform:matrix(0.291159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291159,0.000000,0.000000,0.250000,0,0);}
.m18_c01039{transform:matrix(0.291447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291447,0.000000,0.000000,0.250000,0,0);}
.m3b_c01039{transform:matrix(0.291670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291670,0.000000,0.000000,0.250000,0,0);}
.m1a_c01039{transform:matrix(0.291837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291837,0.000000,0.000000,0.250000,0,0);}
.me_c01039{transform:matrix(0.292138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292138,0.000000,0.000000,0.250000,0,0);}
.mab_c01039{transform:matrix(0.292984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292984,0.000000,0.000000,0.250000,0,0);}
.ma_c01039{transform:matrix(0.293256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293256,0.000000,0.000000,0.250000,0,0);}
.m3c_c01039{transform:matrix(0.293334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293334,0.000000,0.000000,0.250000,0,0);}
.m8b_c01039{transform:matrix(0.293380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293380,0.000000,0.000000,0.250000,0,0);}
.ma7_c01039{transform:matrix(0.294066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294066,0.000000,0.000000,0.250000,0,0);}
.m92_c01039{transform:matrix(0.294261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294261,0.000000,0.000000,0.250000,0,0);}
.m8d_c01039{transform:matrix(0.295212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295212,0.000000,0.000000,0.250000,0,0);}
.m86_c01039{transform:matrix(0.295881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295881,0.000000,0.000000,0.250000,0,0);}
.m88_c01039{transform:matrix(0.296027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296027,0.000000,0.000000,0.250000,0,0);}
.m43_c01039{transform:matrix(0.296672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296672,0.000000,0.000000,0.250000,0,0);}
.m89_c01039{transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);}
.m62_c01039{transform:matrix(0.297869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297869,0.000000,0.000000,0.250000,0,0);}
.m91_c01039{transform:matrix(0.297951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297951,0.000000,0.000000,0.250000,0,0);}
.m36_c01039{transform:matrix(0.297979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297979,0.000000,0.000000,0.250000,0,0);}
.m81_c01039{transform:matrix(0.298534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298534,0.000000,0.000000,0.250000,0,0);}
.m6f_c01039{transform:matrix(0.298710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298710,0.000000,0.000000,0.250000,0,0);}
.m2d_c01039{transform:matrix(0.298814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298814,0.000000,0.000000,0.250000,0,0);}
.mbc_c01039{transform:matrix(0.299129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299129,0.000000,0.000000,0.250000,0,0);}
.m6c_c01039{transform:matrix(0.299262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299262,0.000000,0.000000,0.250000,0,0);}
.m13_c01039{transform:matrix(0.300862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300862,0.000000,0.000000,0.250000,0,0);}
.m15_c01039{transform:matrix(0.302194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302194,0.000000,0.000000,0.250000,0,0);}
.m1e_c01039{transform:matrix(0.302318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302318,0.000000,0.000000,0.250000,0,0);}
.m94_c01039{transform:matrix(0.302341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302341,0.000000,0.000000,0.250000,0,0);}
.m5d_c01039{transform:matrix(0.302390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302390,0.000000,0.000000,0.250000,0,0);}
.mb8_c01039{transform:matrix(0.303667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303667,0.000000,0.000000,0.250000,0,0);}
.mbe_c01039{transform:matrix(0.303688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303688,0.000000,0.000000,0.250000,0,0);}
.m4a_c01039{transform:matrix(0.303921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303921,0.000000,0.000000,0.250000,0,0);}
.m98_c01039{transform:matrix(0.303963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303963,0.000000,0.000000,0.250000,0,0);}
.m80_c01039{transform:matrix(0.304324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304324,0.000000,0.000000,0.250000,0,0);}
.ma2_c01039{transform:matrix(0.304539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304539,0.000000,0.000000,0.250000,0,0);}
.m48_c01039{transform:matrix(0.304609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304609,0.000000,0.000000,0.250000,0,0);}
.m27_c01039{transform:matrix(0.304669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304669,0.000000,0.000000,0.250000,0,0);}
.m42_c01039{transform:matrix(0.305001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305001,0.000000,0.000000,0.250000,0,0);}
.m5a_c01039{transform:matrix(0.305158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305158,0.000000,0.000000,0.250000,0,0);}
.m6e_c01039{transform:matrix(0.305376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305376,0.000000,0.000000,0.250000,0,0);}
.ma1_c01039{transform:matrix(0.305754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305754,0.000000,0.000000,0.250000,0,0);}
.m50_c01039{transform:matrix(0.306396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306396,0.000000,0.000000,0.250000,0,0);}
.m2f_c01039{transform:matrix(0.307379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307379,0.000000,0.000000,0.250000,0,0);}
.mb7_c01039{transform:matrix(0.307644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307644,0.000000,0.000000,0.250000,0,0);}
.m6d_c01039{transform:matrix(0.307667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307667,0.000000,0.000000,0.250000,0,0);}
.m29_c01039{transform:matrix(0.307670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307670,0.000000,0.000000,0.250000,0,0);}
.m68_c01039{transform:matrix(0.308099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308099,0.000000,0.000000,0.250000,0,0);}
.m3_c01039{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m71_c01039{transform:matrix(0.308701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308701,0.000000,0.000000,0.250000,0,0);}
.m9c_c01039{transform:matrix(0.308752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308752,0.000000,0.000000,0.250000,0,0);}
.m9f_c01039{transform:matrix(0.312511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312511,0.000000,0.000000,0.250000,0,0);}
.mc5_c01039{transform:matrix(0.312884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312884,0.000000,0.000000,0.250000,0,0);}
.m3f_c01039{transform:matrix(0.313346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313346,0.000000,0.000000,0.250000,0,0);}
.mac_c01039{transform:matrix(0.314545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314545,0.000000,0.000000,0.250000,0,0);}
.mc8_c01039{transform:matrix(0.315059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315059,0.000000,0.000000,0.250000,0,0);}
.mca_c01039{transform:matrix(0.315072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315072,0.000000,0.000000,0.250000,0,0);}
.m57_c01039{transform:matrix(0.315278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315278,0.000000,0.000000,0.250000,0,0);}
.m55_c01039{transform:matrix(0.315795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315795,0.000000,0.000000,0.250000,0,0);}
.m69_c01039{transform:matrix(0.315803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315803,0.000000,0.000000,0.250000,0,0);}
.ma0_c01039{transform:matrix(0.317396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317396,0.000000,0.000000,0.250000,0,0);}
.mbb_c01039{transform:matrix(0.317408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317408,0.000000,0.000000,0.250000,0,0);}
.m93_c01039{transform:matrix(0.319176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319176,0.000000,0.000000,0.250000,0,0);}
.m79_c01039{transform:matrix(0.319360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319360,0.000000,0.000000,0.250000,0,0);}
.m17_c01039{transform:matrix(0.319808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319808,0.000000,0.000000,0.250000,0,0);}
.mae_c01039{transform:matrix(0.320064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320064,0.000000,0.000000,0.250000,0,0);}
.m1b_c01039{transform:matrix(0.320493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320493,0.000000,0.000000,0.250000,0,0);}
.m60_c01039{transform:matrix(0.321636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321636,0.000000,0.000000,0.250000,0,0);}
.m8e_c01039{transform:matrix(0.322774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322774,0.000000,0.000000,0.250000,0,0);}
.m21_c01039{transform:matrix(0.323301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323301,0.000000,0.000000,0.250000,0,0);}
.m25_c01039{transform:matrix(0.323442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323442,0.000000,0.000000,0.250000,0,0);}
.m8a_c01039{transform:matrix(0.323536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323536,0.000000,0.000000,0.250000,0,0);}
.mb9_c01039{transform:matrix(0.324713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324713,0.000000,0.000000,0.250000,0,0);}
.m9b_c01039{transform:matrix(0.324775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324775,0.000000,0.000000,0.250000,0,0);}
.m70_c01039{transform:matrix(0.325206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325206,0.000000,0.000000,0.250000,0,0);}
.mb0_c01039{transform:matrix(0.325583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325583,0.000000,0.000000,0.250000,0,0);}
.m4b_c01039{transform:matrix(0.326319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326319,0.000000,0.000000,0.250000,0,0);}
.mbd_c01039{transform:matrix(0.326453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326453,0.000000,0.000000,0.250000,0,0);}
.m5_c01039{transform:matrix(0.326627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326627,0.000000,0.000000,0.250000,0,0);}
.m85_c01039{transform:matrix(0.326875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326875,0.000000,0.000000,0.250000,0,0);}
.m10_c01039{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m7_c01039{transform:matrix(0.327244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327244,0.000000,0.000000,0.250000,0,0);}
.m2_c01039{transform:matrix(0.327293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327293,0.000000,0.000000,0.250000,0,0);}
.m8_c01039{transform:matrix(0.330354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330354,0.000000,0.000000,0.250000,0,0);}
.m35_c01039{transform:matrix(0.330727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330727,0.000000,0.000000,0.250000,0,0);}
.m12_c01039{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m75_c01039{transform:matrix(0.335040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335040,0.000000,0.000000,0.250000,0,0);}
.m7b_c01039{transform:matrix(0.335847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335847,0.000000,0.000000,0.250000,0,0);}
.m4e_c01039{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m44_c01039{transform:matrix(0.340484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340484,0.000000,0.000000,0.250000,0,0);}
.m1c_c01039{transform:matrix(0.341204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341204,0.000000,0.000000,0.250000,0,0);}
.m14_c01039{transform:matrix(0.342694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342694,0.000000,0.000000,0.250000,0,0);}
.mba_c01039{transform:matrix(0.345473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345473,0.000000,0.000000,0.250000,0,0);}
.m1f_c01039{transform:matrix(0.346501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346501,0.000000,0.000000,0.250000,0,0);}
.m9a_c01039{transform:matrix(0.349443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349443,0.000000,0.000000,0.250000,0,0);}
.mb6_c01039{transform:matrix(0.350410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350410,0.000000,0.000000,0.250000,0,0);}
.m73_c01039{transform:matrix(0.352852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352852,0.000000,0.000000,0.250000,0,0);}
.ma3_c01039{transform:matrix(0.356053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356053,0.000000,0.000000,0.250000,0,0);}
.m87_c01039{transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);}
.m9d_c01039{transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);}
.m23_c01039{transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);}
.m65_c01039{transform:matrix(0.430633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430633,0.000000,0.000000,0.250000,0,0);}
.v0_c01039{vertical-align:0.000000px;}
.v1_c01039{vertical-align:7.147800px;}
.v2_c01039{vertical-align:12.830400px;}
.ls6_c01039{letter-spacing:-2.744280px;}
.ls23_c01039{letter-spacing:-2.647267px;}
.ls14_c01039{letter-spacing:-2.605680px;}
.ls18_c01039{letter-spacing:-2.391444px;}
.ls17_c01039{letter-spacing:-2.226787px;}
.ls7_c01039{letter-spacing:-2.047320px;}
.ls20_c01039{letter-spacing:-1.913155px;}
.lsf_c01039{letter-spacing:-1.905314px;}
.lsb_c01039{letter-spacing:-1.427026px;}
.ls1b_c01039{letter-spacing:-1.358280px;}
.ls8_c01039{letter-spacing:-1.348618px;}
.ls1e_c01039{letter-spacing:-0.948737px;}
.ls15_c01039{letter-spacing:-0.811424px;}
.ls2_c01039{letter-spacing:0.000000px;}
.lsd_c01039{letter-spacing:0.674309px;}
.ls10_c01039{letter-spacing:1.084647px;}
.ls22_c01039{letter-spacing:1.246687px;}
.ls1a_c01039{letter-spacing:1.756339px;}
.ls4_c01039{letter-spacing:2.226787px;}
.lsa_c01039{letter-spacing:2.544310px;}
.lse_c01039{letter-spacing:2.673713px;}
.ls1d_c01039{letter-spacing:2.692810px;}
.ls0_c01039{letter-spacing:2.916778px;}
.ls21_c01039{letter-spacing:2.940300px;}
.ls19_c01039{letter-spacing:3.214728px;}
.ls1c_c01039{letter-spacing:3.544200px;}
.ls12_c01039{letter-spacing:3.762000px;}
.ls5_c01039{letter-spacing:3.781810px;}
.ls16_c01039{letter-spacing:3.791700px;}
.ls3_c01039{letter-spacing:3.920400px;}
.ls11_c01039{letter-spacing:3.960000px;}
.ls1f_c01039{letter-spacing:4.158000px;}
.ls1_c01039{letter-spacing:4.266900px;}
.ls9_c01039{letter-spacing:48.470598px;}
.ls13_c01039{letter-spacing:51.321798px;}
.lsc_c01039{letter-spacing:54.172998px;}
.sc__c01039{text-shadow:none;}
.sc0_c01039{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01039{-webkit-text-stroke:0px transparent;}
.sc0_c01039{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01039{word-spacing:-17.375213px;}
.ws1_c01039{word-spacing:0.000000px;}
._2_c01039{margin-left:-3.205541px;}
._5_c01039{margin-left:-2.155190px;}
._0_c01039{width:2.074090px;}
._3_c01039{width:10.742688px;}
._4_c01039{width:32.605848px;}
._6_c01039{width:35.437248px;}
._9_c01039{width:36.952978px;}
._1_c01039{width:52.353576px;}
._8_c01039{width:210.717455px;}
._7_c01039{width:306.421632px;}
.fc0_c01039{color:transparent;}
.fs14_c01039{font-size:9.702198px;}
.fs12_c01039{font-size:22.176000px;}
.fs13_c01039{font-size:26.928000px;}
.fs1_c01039{font-size:27.720000px;}
.fsf_c01039{font-size:38.808000px;}
.fs6_c01039{font-size:48.470598px;}
.fs7_c01039{font-size:50.886198px;}
.fsc_c01039{font-size:51.321798px;}
.fs10_c01039{font-size:53.856198px;}
.fs8_c01039{font-size:54.172998px;}
.fse_c01039{font-size:59.400000px;}
.fsa_c01039{font-size:65.736198px;}
.fs5_c01039{font-size:70.884000px;}
.fs15_c01039{font-size:72.072198px;}
.fs4_c01039{font-size:74.448000px;}
.fsb_c01039{font-size:75.240000px;}
.fs3_c01039{font-size:75.636198px;}
.fsd_c01039{font-size:75.834000px;}
.fs2_c01039{font-size:78.408000px;}
.fs9_c01039{font-size:79.200000px;}
.fs11_c01039{font-size:83.160000px;}
.fs0_c01039{font-size:85.338000px;}
.y0_c01039{bottom:0.000000px;}
.y1_c01039{bottom:76.500000px;}
.y1e_c01039{bottom:146.392335px;}
.y22_c01039{bottom:148.174335px;}
.y21_c01039{bottom:148.530735px;}
.y1f_c01039{bottom:149.599935px;}
.y1d_c01039{bottom:149.956335px;}
.y20_c01039{bottom:158.509935px;}
.y1c_c01039{bottom:167.776335px;}
.y1b_c01039{bottom:181.314585px;}
.y1a_c01039{bottom:213.751935px;}
.y19_c01039{bottom:245.471535px;}
.y18_c01039{bottom:277.547535px;}
.y17_c01039{bottom:309.262185px;}
.y16_c01039{bottom:340.268985px;}
.y15_c01039{bottom:371.993535px;}
.y14_c01039{bottom:403.351785px;}
.y13_c01039{bottom:435.427785px;}
.y12_c01039{bottom:466.434585px;}
.y11_c01039{bottom:498.871935px;}
.y10_c01039{bottom:530.942985px;}
.yf_c01039{bottom:562.662585px;}
.ye_c01039{bottom:594.387135px;}
.yd_c01039{bottom:626.101785px;}
.yc_c01039{bottom:658.890585px;}
.yb_c01039{bottom:721.616985px;}
.ya_c01039{bottom:753.341535px;}
.y9_c01039{bottom:785.056185px;}
.y8_c01039{bottom:816.419385px;}
.y7_c01039{bottom:847.782585px;}
.y6_c01039{bottom:879.863535px;}
.y5_c01039{bottom:911.221785px;}
.y4_c01039{bottom:942.941385px;}
.y3_c01039{bottom:979.299135px;}
.y2_c01039{bottom:1078.729785px;}
.h13_c01039{height:23.128875px;}
.h3_c01039{height:28.911094px;}
.h7_c01039{height:32.281418px;}
.hd_c01039{height:34.180317px;}
.h9_c01039{height:36.079217px;}
.h10_c01039{height:38.087930px;}
.h8_c01039{height:49.942020px;}
.h11_c01039{height:56.170332px;}
.hb_c01039{height:68.560800px;}
.h6_c01039{height:69.568770px;}
.he_c01039{height:73.066641px;}
.hc_c01039{height:73.843945px;}
.h5_c01039{height:74.232792px;}
.hf_c01039{height:74.426924px;}
.h15_c01039{height:75.169050px;}
.h4_c01039{height:76.953164px;}
.ha_c01039{height:77.730469px;}
.h12_c01039{height:81.616992px;}
.h2_c01039{height:83.754580px;}
.h14_c01039{height:89.783564px;}
.h1_c01039{height:1110.000000px;}
.h0_c01039{height:1263.000000px;}
.w1_c01039{width:775.500000px;}
.w0_c01039{width:892.500000px;}
.x0_c01039{left:0.000000px;}
.x1_c01039{left:58.500000px;}
.x34_c01039{left:78.295785px;}
.x1d_c01039{left:79.770885px;}
.x4_c01039{left:80.983635px;}
.x6c_c01039{left:89.260035px;}
.xc_c01039{left:101.506335px;}
.x52_c01039{left:113.094285px;}
.x2e_c01039{left:114.574335px;}
.x3c_c01039{left:124.078335px;}
.x3a_c01039{left:134.220885px;}
.x62_c01039{left:135.557385px;}
.x16_c01039{left:145.516785px;}
.x67_c01039{left:148.724385px;}
.x35_c01039{left:155.684085px;}
.x23_c01039{left:156.956235px;}
.x59_c01039{left:167.098785px;}
.x2f_c01039{left:169.732185px;}
.xd_c01039{left:179.280735px;}
.x69_c01039{left:181.117185px;}
.x17_c01039{left:189.893535px;}
.x43_c01039{left:200.734035px;}
.x60_c01039{left:202.214085px;}
.x4e_c01039{left:213.183285px;}
.x1e_c01039{left:223.474335px;}
.x44_c01039{left:233.790135px;}
.x24_c01039{left:235.235535px;}
.x55_c01039{left:245.155335px;}
.x4f_c01039{left:246.392835px;}
.x36_c01039{left:247.412535px;}
.xe_c01039{left:254.807835px;}
.x5_c01039{left:256.713585px;}
.x5d_c01039{left:257.762985px;}
.x5a_c01039{left:268.143135px;}
.x56_c01039{left:279.483585px;}
.xf_c01039{left:289.334085px;}
.x48_c01039{left:291.314085px;}
.x6_c01039{left:301.308135px;}
.x3d_c01039{left:313.301985px;}
.x25_c01039{left:322.469385px;}
.x37_c01039{left:324.563235px;}
.x68_c01039{left:333.270285px;}
.x18_c01039{left:334.423635px;}
.x5b_c01039{left:335.814585px;}
.x3e_c01039{left:344.927535px;}
.x2b_c01039{left:346.169985px;}
.x53_c01039{left:357.381735px;}
.x66_c01039{left:358.549935px;}
.x50_c01039{left:359.633985px;}
.x63_c01039{left:367.885635px;}
.x7_c01039{left:379.270635px;}
.x10_c01039{left:390.348735px;}
.x30_c01039{left:401.575335px;}
.x6d_c01039{left:402.768285px;}
.x26_c01039{left:412.722735px;}
.x1f_c01039{left:422.791035px;}
.x49_c01039{left:424.167135px;}
.x57_c01039{left:434.562135px;}
.x6a_c01039{left:435.626385px;}
.x3f_c01039{left:446.001585px;}
.x19_c01039{left:456.688635px;}
.x4a_c01039{left:458.109285px;}
.x20_c01039{left:467.543985px;}
.x61_c01039{left:470.410035px;}
.x3b_c01039{left:478.245885px;}
.x1a_c01039{left:489.086385px;}
.x54_c01039{left:490.477335px;}
.x31_c01039{left:499.189335px;}
.x11_c01039{left:501.213885px;}
.x3_c01039{left:504.540285px;}
.x8_c01039{left:511.287135px;}
.x64_c01039{left:512.584035px;}
.x2c_c01039{left:521.751435px;}
.x27_c01039{left:522.979035px;}
.x45_c01039{left:524.607585px;}
.x1b_c01039{left:533.121585px;}
.x12_c01039{left:534.661035px;}
.x4b_c01039{left:545.595585px;}
.x9_c01039{left:555.743085px;}
.x46_c01039{left:556.827135px;}
.x6e_c01039{left:565.900485px;}
.x13_c01039{left:567.172635px;}
.x5e_c01039{left:569.281335px;}
.x38_c01039{left:578.334885px;}
.x28_c01039{left:589.140735px;}
.x58_c01039{left:596.689485px;}
.x40_c01039{left:600.401985px;}
.x14_c01039{left:611.994885px;}
.x6b_c01039{left:613.979835px;}
.xa_c01039{left:622.355235px;}
.x4c_c01039{left:632.542335px;}
.x51_c01039{left:633.967935px;}
.x15_c01039{left:643.605585px;}
.x32_c01039{left:645.724185px;}
.x2d_c01039{left:653.941185px;}
.x1c_c01039{left:655.148985px;}
.x29_c01039{left:666.251835px;}
.x41_c01039{left:667.325985px;}
.x2_c01039{left:676.171635px;}
.x21_c01039{left:677.661585px;}
.x39_c01039{left:679.260435px;}
.xb_c01039{left:688.333785px;}
.x4d_c01039{left:689.749485px;}
.x42_c01039{left:699.753435px;}
.x47_c01039{left:700.797885px;}
.x6f_c01039{left:706.797285px;}
.x22_c01039{left:710.386035px;}
.x2a_c01039{left:712.113585px;}
.x33_c01039{left:722.206635px;}
.x65_c01039{left:733.462935px;}
.x5c_c01039{left:745.337985px;}
.x5f_c01039{left:748.723785px;}
@media print{
.v0_c01039{vertical-align:0.000000pt;}
.v1_c01039{vertical-align:6.353600pt;}
.v2_c01039{vertical-align:11.404800pt;}
.ls6_c01039{letter-spacing:-2.439360pt;}
.ls23_c01039{letter-spacing:-2.353126pt;}
.ls14_c01039{letter-spacing:-2.316160pt;}
.ls18_c01039{letter-spacing:-2.125728pt;}
.ls17_c01039{letter-spacing:-1.979366pt;}
.ls7_c01039{letter-spacing:-1.819840pt;}
.ls20_c01039{letter-spacing:-1.700582pt;}
.lsf_c01039{letter-spacing:-1.693613pt;}
.lsb_c01039{letter-spacing:-1.268467pt;}
.ls1b_c01039{letter-spacing:-1.207360pt;}
.ls8_c01039{letter-spacing:-1.198771pt;}
.ls1e_c01039{letter-spacing:-0.843322pt;}
.ls15_c01039{letter-spacing:-0.721266pt;}
.ls2_c01039{letter-spacing:0.000000pt;}
.lsd_c01039{letter-spacing:0.599386pt;}
.ls10_c01039{letter-spacing:0.964131pt;}
.ls22_c01039{letter-spacing:1.108166pt;}
.ls1a_c01039{letter-spacing:1.561190pt;}
.ls4_c01039{letter-spacing:1.979366pt;}
.lsa_c01039{letter-spacing:2.261609pt;}
.lse_c01039{letter-spacing:2.376634pt;}
.ls1d_c01039{letter-spacing:2.393609pt;}
.ls0_c01039{letter-spacing:2.592691pt;}
.ls21_c01039{letter-spacing:2.613600pt;}
.ls19_c01039{letter-spacing:2.857536pt;}
.ls1c_c01039{letter-spacing:3.150400pt;}
.ls12_c01039{letter-spacing:3.344000pt;}
.ls5_c01039{letter-spacing:3.361609pt;}
.ls16_c01039{letter-spacing:3.370400pt;}
.ls3_c01039{letter-spacing:3.484800pt;}
.ls11_c01039{letter-spacing:3.520000pt;}
.ls1f_c01039{letter-spacing:3.696000pt;}
.ls1_c01039{letter-spacing:3.792800pt;}
.ls9_c01039{letter-spacing:43.084976pt;}
.ls13_c01039{letter-spacing:45.619376pt;}
.lsc_c01039{letter-spacing:48.153776pt;}
.ws0_c01039{word-spacing:-15.444634pt;}
.ws1_c01039{word-spacing:0.000000pt;}
._2_c01039{margin-left:-2.849370pt;}
._5_c01039{margin-left:-1.915725pt;}
._0_c01039{width:1.843635pt;}
._3_c01039{width:9.549056pt;}
._4_c01039{width:28.982976pt;}
._6_c01039{width:31.499776pt;}
._9_c01039{width:32.847091pt;}
._1_c01039{width:46.536512pt;}
._8_c01039{width:187.304404pt;}
._7_c01039{width:272.374784pt;}
.fs14_c01039{font-size:8.624176pt;}
.fs12_c01039{font-size:19.712000pt;}
.fs13_c01039{font-size:23.936000pt;}
.fs1_c01039{font-size:24.640000pt;}
.fsf_c01039{font-size:34.496000pt;}
.fs6_c01039{font-size:43.084976pt;}
.fs7_c01039{font-size:45.232176pt;}
.fsc_c01039{font-size:45.619376pt;}
.fs10_c01039{font-size:47.872176pt;}
.fs8_c01039{font-size:48.153776pt;}
.fse_c01039{font-size:52.800000pt;}
.fsa_c01039{font-size:58.432176pt;}
.fs5_c01039{font-size:63.008000pt;}
.fs15_c01039{font-size:64.064176pt;}
.fs4_c01039{font-size:66.176000pt;}
.fsb_c01039{font-size:66.880000pt;}
.fs3_c01039{font-size:67.232176pt;}
.fsd_c01039{font-size:67.408000pt;}
.fs2_c01039{font-size:69.696000pt;}
.fs9_c01039{font-size:70.400000pt;}
.fs11_c01039{font-size:73.920000pt;}
.fs0_c01039{font-size:75.856000pt;}
.y0_c01039{bottom:0.000000pt;}
.y1_c01039{bottom:68.000000pt;}
.y1e_c01039{bottom:130.126520pt;}
.y22_c01039{bottom:131.710520pt;}
.y21_c01039{bottom:132.027320pt;}
.y1f_c01039{bottom:132.977720pt;}
.y1d_c01039{bottom:133.294520pt;}
.y20_c01039{bottom:140.897720pt;}
.y1c_c01039{bottom:149.134520pt;}
.y1b_c01039{bottom:161.168520pt;}
.y1a_c01039{bottom:190.001720pt;}
.y19_c01039{bottom:218.196920pt;}
.y18_c01039{bottom:246.708920pt;}
.y17_c01039{bottom:274.899720pt;}
.y16_c01039{bottom:302.461320pt;}
.y15_c01039{bottom:330.660920pt;}
.y14_c01039{bottom:358.534920pt;}
.y13_c01039{bottom:387.046920pt;}
.y12_c01039{bottom:414.608520pt;}
.y11_c01039{bottom:443.441720pt;}
.y10_c01039{bottom:471.949320pt;}
.yf_c01039{bottom:500.144520pt;}
.ye_c01039{bottom:528.344120pt;}
.yd_c01039{bottom:556.534920pt;}
.yc_c01039{bottom:585.680520pt;}
.yb_c01039{bottom:641.437320pt;}
.ya_c01039{bottom:669.636920pt;}
.y9_c01039{bottom:697.827720pt;}
.y8_c01039{bottom:725.706120pt;}
.y7_c01039{bottom:753.584520pt;}
.y6_c01039{bottom:782.100920pt;}
.y5_c01039{bottom:809.974920pt;}
.y4_c01039{bottom:838.170120pt;}
.y3_c01039{bottom:870.488120pt;}
.y2_c01039{bottom:958.870920pt;}
.h13_c01039{height:20.559000pt;}
.h3_c01039{height:25.698750pt;}
.h7_c01039{height:28.694594pt;}
.hd_c01039{height:30.382504pt;}
.h9_c01039{height:32.070415pt;}
.h10_c01039{height:33.855938pt;}
.h8_c01039{height:44.392907pt;}
.h11_c01039{height:49.929184pt;}
.hb_c01039{height:60.942934pt;}
.h6_c01039{height:61.838906pt;}
.he_c01039{height:64.948125pt;}
.hc_c01039{height:65.639063pt;}
.h5_c01039{height:65.984704pt;}
.hf_c01039{height:66.157266pt;}
.h15_c01039{height:66.816934pt;}
.h4_c01039{height:68.402813pt;}
.ha_c01039{height:69.093750pt;}
.h12_c01039{height:72.548438pt;}
.h2_c01039{height:74.448516pt;}
.h14_c01039{height:79.807613pt;}
.h1_c01039{height:986.666667pt;}
.h0_c01039{height:1122.666667pt;}
.w1_c01039{width:689.333333pt;}
.w0_c01039{width:793.333333pt;}
.x0_c01039{left:0.000000pt;}
.x1_c01039{left:52.000000pt;}
.x34_c01039{left:69.596253pt;}
.x1d_c01039{left:70.907453pt;}
.x4_c01039{left:71.985453pt;}
.x6c_c01039{left:79.342253pt;}
.xc_c01039{left:90.227853pt;}
.x52_c01039{left:100.528253pt;}
.x2e_c01039{left:101.843853pt;}
.x3c_c01039{left:110.291853pt;}
.x3a_c01039{left:119.307453pt;}
.x62_c01039{left:120.495453pt;}
.x16_c01039{left:129.348253pt;}
.x67_c01039{left:132.199453pt;}
.x35_c01039{left:138.385853pt;}
.x23_c01039{left:139.516653pt;}
.x59_c01039{left:148.532253pt;}
.x2f_c01039{left:150.873053pt;}
.xd_c01039{left:159.360653pt;}
.x69_c01039{left:160.993053pt;}
.x17_c01039{left:168.794253pt;}
.x43_c01039{left:178.430253pt;}
.x60_c01039{left:179.745853pt;}
.x4e_c01039{left:189.496253pt;}
.x1e_c01039{left:198.643853pt;}
.x44_c01039{left:207.813453pt;}
.x24_c01039{left:209.098253pt;}
.x55_c01039{left:217.915853pt;}
.x4f_c01039{left:219.015853pt;}
.x36_c01039{left:219.922253pt;}
.xe_c01039{left:226.495853pt;}
.x5_c01039{left:228.189853pt;}
.x5d_c01039{left:229.122653pt;}
.x5a_c01039{left:238.349453pt;}
.x56_c01039{left:248.429853pt;}
.xf_c01039{left:257.185853pt;}
.x48_c01039{left:258.945853pt;}
.x6_c01039{left:267.829453pt;}
.x3d_c01039{left:278.490653pt;}
.x25_c01039{left:286.639453pt;}
.x37_c01039{left:288.500653pt;}
.x68_c01039{left:296.240253pt;}
.x18_c01039{left:297.265453pt;}
.x5b_c01039{left:298.501853pt;}
.x3e_c01039{left:306.602253pt;}
.x2b_c01039{left:307.706653pt;}
.x53_c01039{left:317.672653pt;}
.x66_c01039{left:318.711053pt;}
.x50_c01039{left:319.674653pt;}
.x63_c01039{left:327.009453pt;}
.x7_c01039{left:337.129453pt;}
.x10_c01039{left:346.976653pt;}
.x30_c01039{left:356.955853pt;}
.x6d_c01039{left:358.016253pt;}
.x26_c01039{left:366.864653pt;}
.x1f_c01039{left:375.814253pt;}
.x49_c01039{left:377.037453pt;}
.x57_c01039{left:386.277453pt;}
.x6a_c01039{left:387.223453pt;}
.x3f_c01039{left:396.445853pt;}
.x19_c01039{left:405.945453pt;}
.x4a_c01039{left:407.208253pt;}
.x20_c01039{left:415.594653pt;}
.x61_c01039{left:418.142253pt;}
.x3b_c01039{left:425.107453pt;}
.x1a_c01039{left:434.743453pt;}
.x54_c01039{left:435.979853pt;}
.x31_c01039{left:443.723853pt;}
.x11_c01039{left:445.523453pt;}
.x3_c01039{left:448.480253pt;}
.x8_c01039{left:454.477453pt;}
.x64_c01039{left:455.630253pt;}
.x2c_c01039{left:463.779053pt;}
.x27_c01039{left:464.870253pt;}
.x45_c01039{left:466.317853pt;}
.x1b_c01039{left:473.885853pt;}
.x12_c01039{left:475.254253pt;}
.x4b_c01039{left:484.973853pt;}
.x9_c01039{left:493.993853pt;}
.x46_c01039{left:494.957453pt;}
.x6e_c01039{left:503.022653pt;}
.x13_c01039{left:504.153453pt;}
.x5e_c01039{left:506.027853pt;}
.x38_c01039{left:514.075453pt;}
.x28_c01039{left:523.680653pt;}
.x58_c01039{left:530.390653pt;}
.x40_c01039{left:533.690653pt;}
.x14_c01039{left:543.995453pt;}
.x6b_c01039{left:545.759853pt;}
.xa_c01039{left:553.204653pt;}
.x4c_c01039{left:562.259853pt;}
.x51_c01039{left:563.527053pt;}
.x15_c01039{left:572.093853pt;}
.x32_c01039{left:573.977053pt;}
.x2d_c01039{left:581.281053pt;}
.x1c_c01039{left:582.354653pt;}
.x29_c01039{left:592.223853pt;}
.x41_c01039{left:593.178653pt;}
.x2_c01039{left:601.041453pt;}
.x21_c01039{left:602.365853pt;}
.x39_c01039{left:603.787053pt;}
.xb_c01039{left:611.852253pt;}
.x4d_c01039{left:613.110653pt;}
.x42_c01039{left:622.003053pt;}
.x47_c01039{left:622.931453pt;}
.x6f_c01039{left:628.264253pt;}
.x22_c01039{left:631.454253pt;}
.x2a_c01039{left:632.989853pt;}
.x33_c01039{left:641.961453pt;}
.x65_c01039{left:651.967053pt;}
.x5c_c01039{left:662.522653pt;}
.x5f_c01039{left:665.532253pt;}
}





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

.ir_c01040:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01040{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01040;src:url('chunks/assets/font_5b0450f999bf0dfa02eedf5f.woff2')format("woff");}.ff1_c01040{font-family:ff1_c01040;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01040;src:url('chunks/assets/font_479b2794f8cfeabf5bc0cc3f.woff2')format("woff");}.ff2_c01040{font-family:ff2_c01040;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01040;src:url('chunks/assets/font_d47113f30ed27f401ad0dc0c.woff2')format("woff");}.ff3_c01040{font-family:ff3_c01040;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m19_c01040{transform:matrix(0.056251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056251,0.000000,0.000000,0.250000,0,0);}
.ma7_c01040{transform:matrix(0.174391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174391,0.000000,0.000000,0.250000,0,0);}
.m61_c01040{transform:matrix(0.174550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174550,0.000000,0.000000,0.250000,0,0);}
.m27_c01040{transform:matrix(0.175265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175265,0.000000,0.000000,0.250000,0,0);}
.m18_c01040{transform:matrix(0.187499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187499,0.000000,0.000000,0.250000,0,0);}
.m7d_c01040{transform:matrix(0.197436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197436,0.000000,0.000000,0.250000,0,0);}
.m74_c01040{transform:matrix(0.215988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215988,0.000000,0.000000,0.250000,0,0);}
.m85_c01040{transform:matrix(0.234099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234099,0.000000,0.000000,0.250000,0,0);}
.m26_c01040{transform:matrix(0.244057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244057,0.000000,0.000000,0.250000,0,0);}
.m0_c01040{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01040{transform:matrix(0.254056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254056,0.000000,0.000000,0.250000,0,0);}
.md_c01040{transform:matrix(0.256336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256336,0.000000,0.000000,0.250000,0,0);}
.mb2_c01040{transform:matrix(0.257492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257492,0.000000,0.000000,0.250000,0,0);}
.m7e_c01040{transform:matrix(0.260051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260051,0.000000,0.000000,0.250000,0,0);}
.m94_c01040{transform:matrix(0.262005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262005,0.000000,0.000000,0.250000,0,0);}
.m65_c01040{transform:matrix(0.262452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262452,0.000000,0.000000,0.250000,0,0);}
.m5d_c01040{transform:matrix(0.265460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265460,0.000000,0.000000,0.250000,0,0);}
.m36_c01040{transform:matrix(0.266468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266468,0.000000,0.000000,0.250000,0,0);}
.m92_c01040{transform:matrix(0.267709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267709,0.000000,0.000000,0.250000,0,0);}
.m75_c01040{transform:matrix(0.268054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268054,0.000000,0.000000,0.250000,0,0);}
.mae_c01040{transform:matrix(0.268394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268394,0.000000,0.000000,0.250000,0,0);}
.m62_c01040{transform:matrix(0.269567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269567,0.000000,0.000000,0.250000,0,0);}
.me_c01040{transform:matrix(0.270287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270287,0.000000,0.000000,0.250000,0,0);}
.m29_c01040{transform:matrix(0.272665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272665,0.000000,0.000000,0.250000,0,0);}
.m43_c01040{transform:matrix(0.273274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273274,0.000000,0.000000,0.250000,0,0);}
.mb4_c01040{transform:matrix(0.275114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275114,0.000000,0.000000,0.250000,0,0);}
.m3b_c01040{transform:matrix(0.275764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275764,0.000000,0.000000,0.250000,0,0);}
.m78_c01040{transform:matrix(0.275770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275770,0.000000,0.000000,0.250000,0,0);}
.m66_c01040{transform:matrix(0.278076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278076,0.000000,0.000000,0.250000,0,0);}
.mc_c01040{transform:matrix(0.278154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278154,0.000000,0.000000,0.250000,0,0);}
.m93_c01040{transform:matrix(0.278239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278239,0.000000,0.000000,0.250000,0,0);}
.m2c_c01040{transform:matrix(0.278393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278393,0.000000,0.000000,0.250000,0,0);}
.m91_c01040{transform:matrix(0.278533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278533,0.000000,0.000000,0.250000,0,0);}
.maf_c01040{transform:matrix(0.278862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278862,0.000000,0.000000,0.250000,0,0);}
.m60_c01040{transform:matrix(0.278874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278874,0.000000,0.000000,0.250000,0,0);}
.m3c_c01040{transform:matrix(0.278990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278990,0.000000,0.000000,0.250000,0,0);}
.m87_c01040{transform:matrix(0.279602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279602,0.000000,0.000000,0.250000,0,0);}
.mbd_c01040{transform:matrix(0.279669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279669,0.000000,0.000000,0.250000,0,0);}
.m5_c01040{transform:matrix(0.279941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279941,0.000000,0.000000,0.250000,0,0);}
.m8a_c01040{transform:matrix(0.280315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280315,0.000000,0.000000,0.250000,0,0);}
.mbf_c01040{transform:matrix(0.280597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280597,0.000000,0.000000,0.250000,0,0);}
.m96_c01040{transform:matrix(0.280672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280672,0.000000,0.000000,0.250000,0,0);}
.m17_c01040{transform:matrix(0.281776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281776,0.000000,0.000000,0.250000,0,0);}
.mc0_c01040{transform:matrix(0.282918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282918,0.000000,0.000000,0.250000,0,0);}
.m90_c01040{transform:matrix(0.283033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283033,0.000000,0.000000,0.250000,0,0);}
.m3d_c01040{transform:matrix(0.283190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283190,0.000000,0.000000,0.250000,0,0);}
.m7b_c01040{transform:matrix(0.283233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283233,0.000000,0.000000,0.250000,0,0);}
.m48_c01040{transform:matrix(0.283448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283448,0.000000,0.000000,0.250000,0,0);}
.ma4_c01040{transform:matrix(0.283683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283683,0.000000,0.000000,0.250000,0,0);}
.mb1_c01040{transform:matrix(0.283887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283887,0.000000,0.000000,0.250000,0,0);}
.m40_c01040{transform:matrix(0.283919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283919,0.000000,0.000000,0.250000,0,0);}
.m72_c01040{transform:matrix(0.284490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284490,0.000000,0.000000,0.250000,0,0);}
.m1e_c01040{transform:matrix(0.284851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284851,0.000000,0.000000,0.250000,0,0);}
.m71_c01040{transform:matrix(0.285123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285123,0.000000,0.000000,0.250000,0,0);}
.m4b_c01040{transform:matrix(0.285642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285642,0.000000,0.000000,0.250000,0,0);}
.m4c_c01040{transform:matrix(0.285793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285793,0.000000,0.000000,0.250000,0,0);}
.mbb_c01040{transform:matrix(0.285870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285870,0.000000,0.000000,0.250000,0,0);}
.mad_c01040{transform:matrix(0.286062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286062,0.000000,0.000000,0.250000,0,0);}
.m4f_c01040{transform:matrix(0.286153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286153,0.000000,0.000000,0.250000,0,0);}
.m57_c01040{transform:matrix(0.286214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286214,0.000000,0.000000,0.250000,0,0);}
.m32_c01040{transform:matrix(0.286318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286318,0.000000,0.000000,0.250000,0,0);}
.m51_c01040{transform:matrix(0.286542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286542,0.000000,0.000000,0.250000,0,0);}
.m9_c01040{transform:matrix(0.287377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287377,0.000000,0.000000,0.250000,0,0);}
.m3f_c01040{transform:matrix(0.287913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287913,0.000000,0.000000,0.250000,0,0);}
.m6d_c01040{transform:matrix(0.288860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288860,0.000000,0.000000,0.250000,0,0);}
.m2f_c01040{transform:matrix(0.288880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288880,0.000000,0.000000,0.250000,0,0);}
.mc1_c01040{transform:matrix(0.289190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289190,0.000000,0.000000,0.250000,0,0);}
.mba_c01040{transform:matrix(0.290225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290225,0.000000,0.000000,0.250000,0,0);}
.m2a_c01040{transform:matrix(0.291322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291322,0.000000,0.000000,0.250000,0,0);}
.m99_c01040{transform:matrix(0.292761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292761,0.000000,0.000000,0.250000,0,0);}
.maa_c01040{transform:matrix(0.293802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293802,0.000000,0.000000,0.250000,0,0);}
.m1d_c01040{transform:matrix(0.293863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293863,0.000000,0.000000,0.250000,0,0);}
.m9e_c01040{transform:matrix(0.295258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295258,0.000000,0.000000,0.250000,0,0);}
.mb_c01040{transform:matrix(0.295408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295408,0.000000,0.000000,0.250000,0,0);}
.mb6_c01040{transform:matrix(0.295479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295479,0.000000,0.000000,0.250000,0,0);}
.m7c_c01040{transform:matrix(0.295601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295601,0.000000,0.000000,0.250000,0,0);}
.mb9_c01040{transform:matrix(0.296098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296098,0.000000,0.000000,0.250000,0,0);}
.mb0_c01040{transform:matrix(0.296153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296153,0.000000,0.000000,0.250000,0,0);}
.m9b_c01040{transform:matrix(0.296834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296834,0.000000,0.000000,0.250000,0,0);}
.m39_c01040{transform:matrix(0.297461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297461,0.000000,0.000000,0.250000,0,0);}
.mb8_c01040{transform:matrix(0.297556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297556,0.000000,0.000000,0.250000,0,0);}
.m9d_c01040{transform:matrix(0.298070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298070,0.000000,0.000000,0.250000,0,0);}
.m55_c01040{transform:matrix(0.298388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298388,0.000000,0.000000,0.250000,0,0);}
.m6_c01040{transform:matrix(0.298424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298424,0.000000,0.000000,0.250000,0,0);}
.m5c_c01040{transform:matrix(0.298569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298569,0.000000,0.000000,0.250000,0,0);}
.m4d_c01040{transform:matrix(0.298574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298574,0.000000,0.000000,0.250000,0,0);}
.mf_c01040{transform:matrix(0.298681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298681,0.000000,0.000000,0.250000,0,0);}
.m98_c01040{transform:matrix(0.299307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299307,0.000000,0.000000,0.250000,0,0);}
.m8_c01040{transform:matrix(0.299626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299626,0.000000,0.000000,0.250000,0,0);}
.m64_c01040{transform:matrix(0.299799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299799,0.000000,0.000000,0.250000,0,0);}
.m7f_c01040{transform:matrix(0.301514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301514,0.000000,0.000000,0.250000,0,0);}
.mb5_c01040{transform:matrix(0.301760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301760,0.000000,0.000000,0.250000,0,0);}
.m2e_c01040{transform:matrix(0.301899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301899,0.000000,0.000000,0.250000,0,0);}
.m31_c01040{transform:matrix(0.301989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301989,0.000000,0.000000,0.250000,0,0);}
.m6a_c01040{transform:matrix(0.302944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302944,0.000000,0.000000,0.250000,0,0);}
.m38_c01040{transform:matrix(0.303170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303170,0.000000,0.000000,0.250000,0,0);}
.m73_c01040{transform:matrix(0.303523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303523,0.000000,0.000000,0.250000,0,0);}
.m14_c01040{transform:matrix(0.303597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303597,0.000000,0.000000,0.250000,0,0);}
.m68_c01040{transform:matrix(0.303616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303616,0.000000,0.000000,0.250000,0,0);}
.m3e_c01040{transform:matrix(0.303830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303830,0.000000,0.000000,0.250000,0,0);}
.m76_c01040{transform:matrix(0.304330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304330,0.000000,0.000000,0.250000,0,0);}
.m89_c01040{transform:matrix(0.304359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304359,0.000000,0.000000,0.250000,0,0);}
.m3a_c01040{transform:matrix(0.304778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304778,0.000000,0.000000,0.250000,0,0);}
.m7a_c01040{transform:matrix(0.305441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305441,0.000000,0.000000,0.250000,0,0);}
.m46_c01040{transform:matrix(0.305506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305506,0.000000,0.000000,0.250000,0,0);}
.m6c_c01040{transform:matrix(0.305736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305736,0.000000,0.000000,0.250000,0,0);}
.m10_c01040{transform:matrix(0.307328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307328,0.000000,0.000000,0.250000,0,0);}
.m2b_c01040{transform:matrix(0.307406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307406,0.000000,0.000000,0.250000,0,0);}
.m58_c01040{transform:matrix(0.307657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307657,0.000000,0.000000,0.250000,0,0);}
.m82_c01040{transform:matrix(0.309150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309150,0.000000,0.000000,0.250000,0,0);}
.m1c_c01040{transform:matrix(0.310527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310527,0.000000,0.000000,0.250000,0,0);}
.mbe_c01040{transform:matrix(0.310912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310912,0.000000,0.000000,0.250000,0,0);}
.m44_c01040{transform:matrix(0.311167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311167,0.000000,0.000000,0.250000,0,0);}
.m81_c01040{transform:matrix(0.311221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311221,0.000000,0.000000,0.250000,0,0);}
.m97_c01040{transform:matrix(0.311471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311471,0.000000,0.000000,0.250000,0,0);}
.m37_c01040{transform:matrix(0.313663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313663,0.000000,0.000000,0.250000,0,0);}
.m42_c01040{transform:matrix(0.314241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314241,0.000000,0.000000,0.250000,0,0);}
.m86_c01040{transform:matrix(0.314829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314829,0.000000,0.000000,0.250000,0,0);}
.m41_c01040{transform:matrix(0.315173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315173,0.000000,0.000000,0.250000,0,0);}
.m21_c01040{transform:matrix(0.315642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315642,0.000000,0.000000,0.250000,0,0);}
.m4a_c01040{transform:matrix(0.315846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315846,0.000000,0.000000,0.250000,0,0);}
.m23_c01040{transform:matrix(0.316050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316050,0.000000,0.000000,0.250000,0,0);}
.mb7_c01040{transform:matrix(0.317037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317037,0.000000,0.000000,0.250000,0,0);}
.m5f_c01040{transform:matrix(0.317226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317226,0.000000,0.000000,0.250000,0,0);}
.m59_c01040{transform:matrix(0.317338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317338,0.000000,0.000000,0.250000,0,0);}
.m8c_c01040{transform:matrix(0.317603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317603,0.000000,0.000000,0.250000,0,0);}
.m67_c01040{transform:matrix(0.317869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317869,0.000000,0.000000,0.250000,0,0);}
.m5a_c01040{transform:matrix(0.318157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318157,0.000000,0.000000,0.250000,0,0);}
.ma5_c01040{transform:matrix(0.318796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318796,0.000000,0.000000,0.250000,0,0);}
.m8b_c01040{transform:matrix(0.318901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318901,0.000000,0.000000,0.250000,0,0);}
.m50_c01040{transform:matrix(0.319184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319184,0.000000,0.000000,0.250000,0,0);}
.m6f_c01040{transform:matrix(0.319253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319253,0.000000,0.000000,0.250000,0,0);}
.ma9_c01040{transform:matrix(0.320210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320210,0.000000,0.000000,0.250000,0,0);}
.mbc_c01040{transform:matrix(0.320420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320420,0.000000,0.000000,0.250000,0,0);}
.ma_c01040{transform:matrix(0.320482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320482,0.000000,0.000000,0.250000,0,0);}
.m70_c01040{transform:matrix(0.320747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320747,0.000000,0.000000,0.250000,0,0);}
.m33_c01040{transform:matrix(0.320784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320784,0.000000,0.000000,0.250000,0,0);}
.m4_c01040{transform:matrix(0.320871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320871,0.000000,0.000000,0.250000,0,0);}
.m7_c01040{transform:matrix(0.320956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320956,0.000000,0.000000,0.250000,0,0);}
.ma6_c01040{transform:matrix(0.321282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321282,0.000000,0.000000,0.250000,0,0);}
.m15_c01040{transform:matrix(0.321611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321611,0.000000,0.000000,0.250000,0,0);}
.m47_c01040{transform:matrix(0.322419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322419,0.000000,0.000000,0.250000,0,0);}
.m88_c01040{transform:matrix(0.323205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323205,0.000000,0.000000,0.250000,0,0);}
.m34_c01040{transform:matrix(0.323683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323683,0.000000,0.000000,0.250000,0,0);}
.m5e_c01040{transform:matrix(0.324818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324818,0.000000,0.000000,0.250000,0,0);}
.ma2_c01040{transform:matrix(0.324907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324907,0.000000,0.000000,0.250000,0,0);}
.m8e_c01040{transform:matrix(0.325340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325340,0.000000,0.000000,0.250000,0,0);}
.m80_c01040{transform:matrix(0.326920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326920,0.000000,0.000000,0.250000,0,0);}
.m63_c01040{transform:matrix(0.327579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327579,0.000000,0.000000,0.250000,0,0);}
.m4e_c01040{transform:matrix(0.328610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328610,0.000000,0.000000,0.250000,0,0);}
.m9a_c01040{transform:matrix(0.329080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329080,0.000000,0.000000,0.250000,0,0);}
.m54_c01040{transform:matrix(0.329833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329833,0.000000,0.000000,0.250000,0,0);}
.m1b_c01040{transform:matrix(0.331564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331564,0.000000,0.000000,0.250000,0,0);}
.m30_c01040{transform:matrix(0.331715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331715,0.000000,0.000000,0.250000,0,0);}
.ma1_c01040{transform:matrix(0.332258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332258,0.000000,0.000000,0.250000,0,0);}
.ma3_c01040{transform:matrix(0.333198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333198,0.000000,0.000000,0.250000,0,0);}
.m28_c01040{transform:matrix(0.333491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333491,0.000000,0.000000,0.250000,0,0);}
.m6b_c01040{transform:matrix(0.333584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333584,0.000000,0.000000,0.250000,0,0);}
.mc2_c01040{transform:matrix(0.335547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335547,0.000000,0.000000,0.250000,0,0);}
.ma0_c01040{transform:matrix(0.336045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336045,0.000000,0.000000,0.250000,0,0);}
.m9c_c01040{transform:matrix(0.337634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337634,0.000000,0.000000,0.250000,0,0);}
.m5b_c01040{transform:matrix(0.340157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340157,0.000000,0.000000,0.250000,0,0);}
.m69_c01040{transform:matrix(0.340953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340953,0.000000,0.000000,0.250000,0,0);}
.m24_c01040{transform:matrix(0.341901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341901,0.000000,0.000000,0.250000,0,0);}
.m12_c01040{transform:matrix(0.342929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342929,0.000000,0.000000,0.250000,0,0);}
.mab_c01040{transform:matrix(0.343890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343890,0.000000,0.000000,0.250000,0,0);}
.m49_c01040{transform:matrix(0.344194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344194,0.000000,0.000000,0.250000,0,0);}
.m56_c01040{transform:matrix(0.344431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344431,0.000000,0.000000,0.250000,0,0);}
.m79_c01040{transform:matrix(0.345888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345888,0.000000,0.000000,0.250000,0,0);}
.m2d_c01040{transform:matrix(0.346406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346406,0.000000,0.000000,0.250000,0,0);}
.m45_c01040{transform:matrix(0.346427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346427,0.000000,0.000000,0.250000,0,0);}
.m13_c01040{transform:matrix(0.347254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347254,0.000000,0.000000,0.250000,0,0);}
.m95_c01040{transform:matrix(0.347629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347629,0.000000,0.000000,0.250000,0,0);}
.m1f_c01040{transform:matrix(0.347880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347880,0.000000,0.000000,0.250000,0,0);}
.m35_c01040{transform:matrix(0.348169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348169,0.000000,0.000000,0.250000,0,0);}
.m6e_c01040{transform:matrix(0.349926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349926,0.000000,0.000000,0.250000,0,0);}
.m52_c01040{transform:matrix(0.350922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350922,0.000000,0.000000,0.250000,0,0);}
.ma8_c01040{transform:matrix(0.351415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351415,0.000000,0.000000,0.250000,0,0);}
.m53_c01040{transform:matrix(0.352339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352339,0.000000,0.000000,0.250000,0,0);}
.m3_c01040{transform:matrix(0.354085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354085,0.000000,0.000000,0.250000,0,0);}
.m20_c01040{transform:matrix(0.354500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354500,0.000000,0.000000,0.250000,0,0);}
.m8f_c01040{transform:matrix(0.356090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356090,0.000000,0.000000,0.250000,0,0);}
.m25_c01040{transform:matrix(0.358057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358057,0.000000,0.000000,0.250000,0,0);}
.m9f_c01040{transform:matrix(0.359755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359755,0.000000,0.000000,0.250000,0,0);}
.m2_c01040{transform:matrix(0.361226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361226,0.000000,0.000000,0.250000,0,0);}
.m16_c01040{transform:matrix(0.362043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362043,0.000000,0.000000,0.250000,0,0);}
.m22_c01040{transform:matrix(0.363456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363456,0.000000,0.000000,0.250000,0,0);}
.m8d_c01040{transform:matrix(0.364927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364927,0.000000,0.000000,0.250000,0,0);}
.mac_c01040{transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);}
.m83_c01040{transform:matrix(0.371283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371283,0.000000,0.000000,0.250000,0,0);}
.mb3_c01040{transform:matrix(0.380785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380785,0.000000,0.000000,0.250000,0,0);}
.m11_c01040{transform:matrix(0.390139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390139,0.000000,0.000000,0.250000,0,0);}
.m84_c01040{transform:matrix(0.393601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393601,0.000000,0.000000,0.250000,0,0);}
.m1a_c01040{transform:matrix(0.396432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396432,0.000000,0.000000,0.250000,0,0);}
.m77_c01040{transform:matrix(0.440391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440391,0.000000,0.000000,0.250000,0,0);}
.v1_c01040{vertical-align:-7.108200px;}
.v0_c01040{vertical-align:0.000000px;}
.ls5_c01040{letter-spacing:-2.626477px;}
.ls12_c01040{letter-spacing:-1.829520px;}
.lsd_c01040{letter-spacing:-1.496880px;}
.ls15_c01040{letter-spacing:-1.403289px;}
.ls11_c01040{letter-spacing:-0.217622px;}
.ls1_c01040{letter-spacing:0.000000px;}
.lsa_c01040{letter-spacing:1.515852px;}
.ls10_c01040{letter-spacing:2.641485px;}
.ls9_c01040{letter-spacing:3.286810px;}
.lse_c01040{letter-spacing:3.306610px;}
.ls13_c01040{letter-spacing:3.484810px;}
.ls16_c01040{letter-spacing:3.524400px;}
.ls8_c01040{letter-spacing:3.603610px;}
.lsf_c01040{letter-spacing:3.623400px;}
.lsc_c01040{letter-spacing:3.702610px;}
.ls3_c01040{letter-spacing:3.752110px;}
.ls7_c01040{letter-spacing:3.781810px;}
.lsb_c01040{letter-spacing:4.059000px;}
.ls2_c01040{letter-spacing:4.296610px;}
.ls0_c01040{letter-spacing:32.145300px;}
.ls14_c01040{letter-spacing:55.598598px;}
.ls4_c01040{letter-spacing:57.024198px;}
.ls17_c01040{letter-spacing:58.449798px;}
.ls6_c01040{letter-spacing:59.875398px;}
.sc__c01040{text-shadow:none;}
.sc0_c01040{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01040{-webkit-text-stroke:0px transparent;}
.sc0_c01040{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01040{word-spacing:0.000000px;}
._0_c01040{width:24.163469px;}
._1_c01040{width:38.881915px;}
.fc0_c01040{color:transparent;}
.fs0_c01040{font-size:27.720000px;}
.fsc_c01040{font-size:42.768000px;}
.fs12_c01040{font-size:49.500000px;}
.fsf_c01040{font-size:52.272000px;}
.fs11_c01040{font-size:55.598598px;}
.fs3_c01040{font-size:57.024198px;}
.fs15_c01040{font-size:58.449798px;}
.fs5_c01040{font-size:59.875398px;}
.fs9_c01040{font-size:65.736198px;}
.fsd_c01040{font-size:66.132198px;}
.fs10_c01040{font-size:69.696198px;}
.fs14_c01040{font-size:70.488000px;}
.fs13_c01040{font-size:70.884000px;}
.fs8_c01040{font-size:72.072198px;}
.fse_c01040{font-size:72.468000px;}
.fsb_c01040{font-size:74.052198px;}
.fs4_c01040{font-size:74.844000px;}
.fs2_c01040{font-size:75.042198px;}
.fs6_c01040{font-size:75.636198px;}
.fs7_c01040{font-size:78.804000px;}
.fsa_c01040{font-size:81.180000px;}
.fs1_c01040{font-size:85.932198px;}
.y0_c01040{bottom:0.000000px;}
.y1_c01040{bottom:76.500000px;}
.y1c_c01040{bottom:123.226335px;}
.y1b_c01040{bottom:155.653785px;}
.y1a_c01040{bottom:188.091135px;}
.y19_c01040{bottom:221.236335px;}
.y18_c01040{bottom:253.663785px;}
.y17_c01040{bottom:285.388335px;}
.y16_c01040{bottom:317.459385px;}
.y15_c01040{bottom:348.822585px;}
.y13_c01040{bottom:380.903535px;}
.y14_c01040{bottom:382.680585px;}
.y12_c01040{bottom:412.618185px;}
.y11_c01040{bottom:443.986335px;}
.y10_c01040{bottom:506.356335px;}
.yf_c01040{bottom:538.075935px;}
.ye_c01040{bottom:570.146985px;}
.yd_c01040{bottom:602.579385px;}
.yc_c01040{bottom:633.942585px;}
.yb_c01040{bottom:666.023535px;}
.ya_c01040{bottom:697.030335px;}
.y9_c01040{bottom:728.749935px;}
.y8_c01040{bottom:760.464585px;}
.y7_c01040{bottom:791.832735px;}
.y6_c01040{bottom:823.195935px;}
.y5_c01040{bottom:854.910585px;}
.y4_c01040{bottom:917.993385px;}
.y3_c01040{bottom:1054.494585px;}
.y2_c01040{bottom:1107.241785px;}
.h2_c01040{height:28.911094px;}
.h13_c01040{height:37.028666px;}
.h5_c01040{height:37.978116px;}
.h17_c01040{height:38.927565px;}
.h7_c01040{height:39.877015px;}
.he_c01040{height:41.974453px;}
.h11_c01040{height:51.302109px;}
.hb_c01040{height:64.516483px;}
.h14_c01040{height:66.541613px;}
.h12_c01040{height:68.403007px;}
.hf_c01040{height:68.973816px;}
.h16_c01040{height:69.180117px;}
.h15_c01040{height:69.568770px;}
.h10_c01040{height:71.123379px;}
.hd_c01040{height:72.678183px;}
.h6_c01040{height:73.455293px;}
.h4_c01040{height:73.649813px;}
.h8_c01040{height:74.232792px;}
.ha_c01040{height:75.169050px;}
.h9_c01040{height:77.341816px;}
.hc_c01040{height:79.673730px;}
.h3_c01040{height:84.337753px;}
.h1_c01040{height:1110.000000px;}
.h0_c01040{height:1263.000000px;}
.w1_c01040{width:775.500000px;}
.w0_c01040{width:892.500000px;}
.x2_c01040{left:-1.552665px;}
.x0_c01040{left:0.000000px;}
.x1_c01040{left:58.500000px;}
.x16_c01040{left:71.583585px;}
.x4_c01040{left:73.434885px;}
.x5b_c01040{left:104.362485px;}
.x3a_c01040{left:116.287035px;}
.x5_c01040{left:126.632535px;}
.x5a_c01040{left:127.647285px;}
.x4e_c01040{left:137.656185px;}
.x27_c01040{left:138.784785px;}
.x17_c01040{left:148.536285px;}
.x3f_c01040{left:150.417285px;}
.x28_c01040{left:160.426185px;}
.x5c_c01040{left:161.480535px;}
.x6_c01040{left:171.083535px;}
.xb_c01040{left:182.225985px;}
.x2e_c01040{left:183.983235px;}
.x4b_c01040{left:192.437835px;}
.x34_c01040{left:193.670385px;}
.x1e_c01040{left:203.085285px;}
.x40_c01040{left:216.034485px;}
.x18_c01040{left:227.171985px;}
.x29_c01040{left:236.710635px;}
.x2f_c01040{left:238.512435px;}
.xc_c01040{left:248.536185px;}
.x35_c01040{left:249.932085px;}
.x53_c01040{left:259.896435px;}
.x41_c01040{left:270.959685px;}
.x2a_c01040{left:272.281335px;}
.x1f_c01040{left:282.413985px;}
.x19_c01040{left:292.185285px;}
.x54_c01040{left:293.803935px;}
.xd_c01040{left:304.837485px;}
.x44_c01040{left:306.238335px;}
.x36_c01040{left:314.989935px;}
.x20_c01040{left:316.801635px;}
.x3b_c01040{left:327.280785px;}
.xe_c01040{left:336.383835px;}
.x7_c01040{left:337.646085px;}
.x49_c01040{left:349.743885px;}
.x55_c01040{left:359.559735px;}
.x45_c01040{left:362.717835px;}
.x8_c01040{left:372.098085px;}
.xf_c01040{left:382.205985px;}
.x37_c01040{left:383.235585px;}
.x21_c01040{left:393.516735px;}
.x30_c01040{left:403.886985px;}
.x1a_c01040{left:405.218535px;}
.x10_c01040{left:414.118635px;}
.x9_c01040{left:415.930335px;}
.x1b_c01040{left:425.978835px;}
.x22_c01040{left:427.057935px;}
.x4f_c01040{left:428.181585px;}
.x4c_c01040{left:436.834185px;}
.x31_c01040{left:438.027135px;}
.x46_c01040{left:450.119985px;}
.x11_c01040{left:460.222935px;}
.x38_c01040{left:471.211935px;}
.x50_c01040{left:481.082235px;}
.x4a_c01040{left:482.933535px;}
.x23_c01040{left:492.269235px;}
.x56_c01040{left:494.363085px;}
.x39_c01040{left:504.065085px;}
.x51_c01040{left:514.232385px;}
.x47_c01040{left:516.172785px;}
.x24_c01040{left:525.434235px;}
.x57_c01040{left:526.681635px;}
.x4d_c01040{left:536.363835px;}
.x2b_c01040{left:537.819135px;}
.x32_c01040{left:547.516185px;}
.x3c_c01040{left:548.644785px;}
.x12_c01040{left:558.920985px;}
.x1c_c01040{left:570.959385px;}
.xa_c01040{left:572.449335px;}
.x3d_c01040{left:581.012835px;}
.x33_c01040{left:582.032535px;}
.x13_c01040{left:592.417635px;}
.x58_c01040{left:603.332385px;}
.x3e_c01040{left:614.346135px;}
.x2c_c01040{left:623.681835px;}
.x3_c01040{left:635.898435px;}
.x48_c01040{left:637.774485px;}
.x25_c01040{left:646.110285px;}
.x42_c01040{left:648.362535px;}
.x2d_c01040{left:657.500235px;}
.x14_c01040{left:659.099085px;}
.x26_c01040{left:670.122735px;}
.x43_c01040{left:681.141435px;}
.x15_c01040{left:692.184885px;}
.x1d_c01040{left:703.292685px;}
.x59_c01040{left:713.816385px;}
.x52_c01040{left:724.543035px;}
@media print{
.v1_c01040{vertical-align:-6.318400pt;}
.v0_c01040{vertical-align:0.000000pt;}
.ls5_c01040{letter-spacing:-2.334646pt;}
.ls12_c01040{letter-spacing:-1.626240pt;}
.lsd_c01040{letter-spacing:-1.330560pt;}
.ls15_c01040{letter-spacing:-1.247368pt;}
.ls11_c01040{letter-spacing:-0.193442pt;}
.ls1_c01040{letter-spacing:0.000000pt;}
.lsa_c01040{letter-spacing:1.347424pt;}
.ls10_c01040{letter-spacing:2.347987pt;}
.ls9_c01040{letter-spacing:2.921609pt;}
.lse_c01040{letter-spacing:2.939209pt;}
.ls13_c01040{letter-spacing:3.097609pt;}
.ls16_c01040{letter-spacing:3.132800pt;}
.ls8_c01040{letter-spacing:3.203209pt;}
.lsf_c01040{letter-spacing:3.220800pt;}
.lsc_c01040{letter-spacing:3.291209pt;}
.ls3_c01040{letter-spacing:3.335209pt;}
.ls7_c01040{letter-spacing:3.361609pt;}
.lsb_c01040{letter-spacing:3.608000pt;}
.ls2_c01040{letter-spacing:3.819209pt;}
.ls0_c01040{letter-spacing:28.573600pt;}
.ls14_c01040{letter-spacing:49.420976pt;}
.ls4_c01040{letter-spacing:50.688176pt;}
.ls17_c01040{letter-spacing:51.955376pt;}
.ls6_c01040{letter-spacing:53.222576pt;}
.ws0_c01040{word-spacing:0.000000pt;}
._0_c01040{width:21.478639pt;}
._1_c01040{width:34.561702pt;}
.fs0_c01040{font-size:24.640000pt;}
.fsc_c01040{font-size:38.016000pt;}
.fs12_c01040{font-size:44.000000pt;}
.fsf_c01040{font-size:46.464000pt;}
.fs11_c01040{font-size:49.420976pt;}
.fs3_c01040{font-size:50.688176pt;}
.fs15_c01040{font-size:51.955376pt;}
.fs5_c01040{font-size:53.222576pt;}
.fs9_c01040{font-size:58.432176pt;}
.fsd_c01040{font-size:58.784176pt;}
.fs10_c01040{font-size:61.952176pt;}
.fs14_c01040{font-size:62.656000pt;}
.fs13_c01040{font-size:63.008000pt;}
.fs8_c01040{font-size:64.064176pt;}
.fse_c01040{font-size:64.416000pt;}
.fsb_c01040{font-size:65.824176pt;}
.fs4_c01040{font-size:66.528000pt;}
.fs2_c01040{font-size:66.704176pt;}
.fs6_c01040{font-size:67.232176pt;}
.fs7_c01040{font-size:70.048000pt;}
.fsa_c01040{font-size:72.160000pt;}
.fs1_c01040{font-size:76.384176pt;}
.y0_c01040{bottom:0.000000pt;}
.y1_c01040{bottom:68.000000pt;}
.y1c_c01040{bottom:109.534520pt;}
.y1b_c01040{bottom:138.358920pt;}
.y1a_c01040{bottom:167.192120pt;}
.y19_c01040{bottom:196.654520pt;}
.y18_c01040{bottom:225.478920pt;}
.y17_c01040{bottom:253.678520pt;}
.y16_c01040{bottom:282.186120pt;}
.y15_c01040{bottom:310.064520pt;}
.y13_c01040{bottom:338.580920pt;}
.y14_c01040{bottom:340.160520pt;}
.y12_c01040{bottom:366.771720pt;}
.y11_c01040{bottom:394.654520pt;}
.y10_c01040{bottom:450.094520pt;}
.yf_c01040{bottom:478.289720pt;}
.ye_c01040{bottom:506.797320pt;}
.yd_c01040{bottom:535.626120pt;}
.yc_c01040{bottom:563.504520pt;}
.yb_c01040{bottom:592.020920pt;}
.ya_c01040{bottom:619.582520pt;}
.y9_c01040{bottom:647.777720pt;}
.y8_c01040{bottom:675.968520pt;}
.y7_c01040{bottom:703.851320pt;}
.y6_c01040{bottom:731.729720pt;}
.y5_c01040{bottom:759.920520pt;}
.y4_c01040{bottom:815.994120pt;}
.y3_c01040{bottom:937.328520pt;}
.y2_c01040{bottom:984.214920pt;}
.h2_c01040{height:25.698750pt;}
.h13_c01040{height:32.914370pt;}
.h5_c01040{height:33.758325pt;}
.h17_c01040{height:34.602280pt;}
.h7_c01040{height:35.446236pt;}
.he_c01040{height:37.310625pt;}
.h11_c01040{height:45.601875pt;}
.hb_c01040{height:57.347985pt;}
.h14_c01040{height:59.148101pt;}
.h12_c01040{height:60.802673pt;}
.hf_c01040{height:61.310059pt;}
.h16_c01040{height:61.493438pt;}
.h15_c01040{height:61.838906pt;}
.h10_c01040{height:63.220781pt;}
.hd_c01040{height:64.602829pt;}
.h6_c01040{height:65.293594pt;}
.h4_c01040{height:65.466501pt;}
.h8_c01040{height:65.984704pt;}
.ha_c01040{height:66.816934pt;}
.h9_c01040{height:68.748281pt;}
.hc_c01040{height:70.821094pt;}
.h3_c01040{height:74.966891pt;}
.h1_c01040{height:986.666667pt;}
.h0_c01040{height:1122.666667pt;}
.w1_c01040{width:689.333333pt;}
.w0_c01040{width:793.333333pt;}
.x2_c01040{left:-1.380147pt;}
.x0_c01040{left:0.000000pt;}
.x1_c01040{left:52.000000pt;}
.x16_c01040{left:63.629853pt;}
.x4_c01040{left:65.275453pt;}
.x5b_c01040{left:92.766653pt;}
.x3a_c01040{left:103.366253pt;}
.x5_c01040{left:112.562253pt;}
.x5a_c01040{left:113.464253pt;}
.x4e_c01040{left:122.361053pt;}
.x27_c01040{left:123.364253pt;}
.x17_c01040{left:132.032253pt;}
.x3f_c01040{left:133.704253pt;}
.x28_c01040{left:142.601053pt;}
.x5c_c01040{left:143.538253pt;}
.x6_c01040{left:152.074253pt;}
.xb_c01040{left:161.978653pt;}
.x2e_c01040{left:163.540653pt;}
.x4b_c01040{left:171.055853pt;}
.x34_c01040{left:172.151453pt;}
.x1e_c01040{left:180.520253pt;}
.x40_c01040{left:192.030653pt;}
.x18_c01040{left:201.930653pt;}
.x29_c01040{left:210.409453pt;}
.x2f_c01040{left:212.011053pt;}
.xc_c01040{left:220.921053pt;}
.x35_c01040{left:222.161853pt;}
.x53_c01040{left:231.019053pt;}
.x41_c01040{left:240.853053pt;}
.x2a_c01040{left:242.027853pt;}
.x1f_c01040{left:251.034653pt;}
.x19_c01040{left:259.720253pt;}
.x54_c01040{left:261.159053pt;}
.xd_c01040{left:270.966653pt;}
.x44_c01040{left:272.211853pt;}
.x36_c01040{left:279.991053pt;}
.x20_c01040{left:281.601453pt;}
.x3b_c01040{left:290.916253pt;}
.xe_c01040{left:299.007853pt;}
.x7_c01040{left:300.129853pt;}
.x49_c01040{left:310.883453pt;}
.x55_c01040{left:319.608653pt;}
.x45_c01040{left:322.415853pt;}
.x8_c01040{left:330.753853pt;}
.xf_c01040{left:339.738653pt;}
.x37_c01040{left:340.653853pt;}
.x21_c01040{left:349.792653pt;}
.x30_c01040{left:359.010653pt;}
.x1a_c01040{left:360.194253pt;}
.x10_c01040{left:368.105453pt;}
.x9_c01040{left:369.715853pt;}
.x1b_c01040{left:378.647853pt;}
.x22_c01040{left:379.607053pt;}
.x4f_c01040{left:380.605853pt;}
.x4c_c01040{left:388.297053pt;}
.x31_c01040{left:389.357453pt;}
.x46_c01040{left:400.106653pt;}
.x11_c01040{left:409.087053pt;}
.x38_c01040{left:418.855053pt;}
.x50_c01040{left:427.628653pt;}
.x4a_c01040{left:429.274253pt;}
.x23_c01040{left:437.572653pt;}
.x56_c01040{left:439.433853pt;}
.x39_c01040{left:448.057853pt;}
.x51_c01040{left:457.095453pt;}
.x47_c01040{left:458.820253pt;}
.x24_c01040{left:467.052653pt;}
.x57_c01040{left:468.161453pt;}
.x4d_c01040{left:476.767853pt;}
.x2b_c01040{left:478.061453pt;}
.x32_c01040{left:486.681053pt;}
.x3c_c01040{left:487.684253pt;}
.x12_c01040{left:496.818653pt;}
.x1c_c01040{left:507.519453pt;}
.xa_c01040{left:508.843853pt;}
.x3d_c01040{left:516.455853pt;}
.x33_c01040{left:517.362253pt;}
.x13_c01040{left:526.593453pt;}
.x58_c01040{left:536.295453pt;}
.x3e_c01040{left:546.085453pt;}
.x2c_c01040{left:554.383853pt;}
.x3_c01040{left:565.243053pt;}
.x48_c01040{left:566.910653pt;}
.x25_c01040{left:574.320253pt;}
.x42_c01040{left:576.322253pt;}
.x2d_c01040{left:584.444653pt;}
.x14_c01040{left:585.865853pt;}
.x26_c01040{left:595.664653pt;}
.x43_c01040{left:605.459053pt;}
.x15_c01040{left:615.275453pt;}
.x1d_c01040{left:625.149053pt;}
.x59_c01040{left:634.503453pt;}
.x52_c01040{left:644.038253pt;}
}





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

.ir_c01041:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01041{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01041;src:url('chunks/assets/font_f50d89d92e565a997fe1583f.woff2')format("woff");}.ff1_c01041{font-family:ff1_c01041;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01041;src:url('chunks/assets/font_61f8f051b457f87e3c14a977.woff2')format("woff");}.ff2_c01041{font-family:ff2_c01041;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01041;src:url('chunks/assets/font_9d7bc1610f4246b82986242e.woff2')format("woff");}.ff3_c01041{font-family:ff3_c01041;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01041;src:url('chunks/assets/font_dd3495aefe63bcca4638a810.woff2')format("woff");}.ff4_c01041{font-family:ff4_c01041;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m81_c01041{transform:matrix(0.149457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149457,0.000000,0.000000,0.250000,0,0);}
.m4c_c01041{transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);}
.m59_c01041{transform:matrix(0.191026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191026,0.000000,0.000000,0.250000,0,0);}
.m5c_c01041{transform:matrix(0.193376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193376,0.000000,0.000000,0.250000,0,0);}
.m1d_c01041{transform:matrix(0.205925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205925,0.000000,0.000000,0.250000,0,0);}
.m9e_c01041{transform:matrix(0.215179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215179,0.000000,0.000000,0.250000,0,0);}
.m9f_c01041{transform:matrix(0.217143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217143,0.000000,0.000000,0.250000,0,0);}
.m8f_c01041{transform:matrix(0.224501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224501,0.000000,0.000000,0.250000,0,0);}
.maf_c01041{transform:matrix(0.234655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234655,0.000000,0.000000,0.250000,0,0);}
.m6f_c01041{transform:matrix(0.246549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246549,0.000000,0.000000,0.250000,0,0);}
.m0_c01041{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01041{transform:matrix(0.250286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250286,0.000000,0.000000,0.250000,0,0);}
.mb0_c01041{transform:matrix(0.254686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254686,0.000000,0.000000,0.250000,0,0);}
.m1f_c01041{transform:matrix(0.257030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257030,0.000000,0.000000,0.250000,0,0);}
.m5f_c01041{transform:matrix(0.257031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257031,0.000000,0.000000,0.250000,0,0);}
.mac_c01041{transform:matrix(0.258083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258083,0.000000,0.000000,0.250000,0,0);}
.m22_c01041{transform:matrix(0.259851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259851,0.000000,0.000000,0.250000,0,0);}
.m64_c01041{transform:matrix(0.260665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260665,0.000000,0.000000,0.250000,0,0);}
.ma9_c01041{transform:matrix(0.261703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261703,0.000000,0.000000,0.250000,0,0);}
.m89_c01041{transform:matrix(0.267555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267555,0.000000,0.000000,0.250000,0,0);}
.m8e_c01041{transform:matrix(0.269315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269315,0.000000,0.000000,0.250000,0,0);}
.m67_c01041{transform:matrix(0.269394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269394,0.000000,0.000000,0.250000,0,0);}
.m63_c01041{transform:matrix(0.269431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269431,0.000000,0.000000,0.250000,0,0);}
.m47_c01041{transform:matrix(0.271918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271918,0.000000,0.000000,0.250000,0,0);}
.ma_c01041{transform:matrix(0.272951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272951,0.000000,0.000000,0.250000,0,0);}
.m1_c01041{transform:matrix(0.273122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273122,0.000000,0.000000,0.250000,0,0);}
.m6e_c01041{transform:matrix(0.273238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273238,0.000000,0.000000,0.250000,0,0);}
.m76_c01041{transform:matrix(0.274547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274547,0.000000,0.000000,0.250000,0,0);}
.mc3_c01041{transform:matrix(0.276439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276439,0.000000,0.000000,0.250000,0,0);}
.me_c01041{transform:matrix(0.276862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276862,0.000000,0.000000,0.250000,0,0);}
.m57_c01041{transform:matrix(0.279298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279298,0.000000,0.000000,0.250000,0,0);}
.m3d_c01041{transform:matrix(0.279922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279922,0.000000,0.000000,0.250000,0,0);}
.m53_c01041{transform:matrix(0.280008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280008,0.000000,0.000000,0.250000,0,0);}
.m2a_c01041{transform:matrix(0.281105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281105,0.000000,0.000000,0.250000,0,0);}
.m8d_c01041{transform:matrix(0.281462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281462,0.000000,0.000000,0.250000,0,0);}
.m84_c01041{transform:matrix(0.281807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281807,0.000000,0.000000,0.250000,0,0);}
.m12_c01041{transform:matrix(0.282216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282216,0.000000,0.000000,0.250000,0,0);}
.m93_c01041{transform:matrix(0.282472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282472,0.000000,0.000000,0.250000,0,0);}
.mc0_c01041{transform:matrix(0.282611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282611,0.000000,0.000000,0.250000,0,0);}
.m14_c01041{transform:matrix(0.283914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283914,0.000000,0.000000,0.250000,0,0);}
.m87_c01041{transform:matrix(0.284477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284477,0.000000,0.000000,0.250000,0,0);}
.m8c_c01041{transform:matrix(0.284920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284920,0.000000,0.000000,0.250000,0,0);}
.m5_c01041{transform:matrix(0.285646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285646,0.000000,0.000000,0.250000,0,0);}
.m83_c01041{transform:matrix(0.286402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286402,0.000000,0.000000,0.250000,0,0);}
.m5a_c01041{transform:matrix(0.287495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287495,0.000000,0.000000,0.250000,0,0);}
.m78_c01041{transform:matrix(0.287641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287641,0.000000,0.000000,0.250000,0,0);}
.mcc_c01041{transform:matrix(0.289801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289801,0.000000,0.000000,0.250000,0,0);}
.m16_c01041{transform:matrix(0.289918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289918,0.000000,0.000000,0.250000,0,0);}
.m71_c01041{transform:matrix(0.290394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290394,0.000000,0.000000,0.250000,0,0);}
.ma3_c01041{transform:matrix(0.290759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290759,0.000000,0.000000,0.250000,0,0);}
.m3b_c01041{transform:matrix(0.291411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291411,0.000000,0.000000,0.250000,0,0);}
.m26_c01041{transform:matrix(0.292059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292059,0.000000,0.000000,0.250000,0,0);}
.m86_c01041{transform:matrix(0.292059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292059,0.000000,0.000000,0.250000,0,0);}
.md_c01041{transform:matrix(0.293021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293021,0.000000,0.000000,0.250000,0,0);}
.m79_c01041{transform:matrix(0.293706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293706,0.000000,0.000000,0.250000,0,0);}
.m34_c01041{transform:matrix(0.294630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294630,0.000000,0.000000,0.250000,0,0);}
.mc1_c01041{transform:matrix(0.295857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295857,0.000000,0.000000,0.250000,0,0);}
.m73_c01041{transform:matrix(0.296695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296695,0.000000,0.000000,0.250000,0,0);}
.m2_c01041{transform:matrix(0.297852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297852,0.000000,0.000000,0.250000,0,0);}
.m42_c01041{transform:matrix(0.298148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298148,0.000000,0.000000,0.250000,0,0);}
.m80_c01041{transform:matrix(0.298913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298913,0.000000,0.000000,0.250000,0,0);}
.mc6_c01041{transform:matrix(0.299115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299115,0.000000,0.000000,0.250000,0,0);}
.m3a_c01041{transform:matrix(0.299916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299916,0.000000,0.000000,0.250000,0,0);}
.ma1_c01041{transform:matrix(0.299940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299940,0.000000,0.000000,0.250000,0,0);}
.m2f_c01041{transform:matrix(0.300639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300639,0.000000,0.000000,0.250000,0,0);}
.mb6_c01041{transform:matrix(0.300949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300949,0.000000,0.000000,0.250000,0,0);}
.m54_c01041{transform:matrix(0.301331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301331,0.000000,0.000000,0.250000,0,0);}
.mce_c01041{transform:matrix(0.301605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301605,0.000000,0.000000,0.250000,0,0);}
.maa_c01041{transform:matrix(0.301767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301767,0.000000,0.000000,0.250000,0,0);}
.mb5_c01041{transform:matrix(0.301993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301993,0.000000,0.000000,0.250000,0,0);}
.mb7_c01041{transform:matrix(0.303207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303207,0.000000,0.000000,0.250000,0,0);}
.mae_c01041{transform:matrix(0.303472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303472,0.000000,0.000000,0.250000,0,0);}
.ma4_c01041{transform:matrix(0.303851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303851,0.000000,0.000000,0.250000,0,0);}
.mc2_c01041{transform:matrix(0.304055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304055,0.000000,0.000000,0.250000,0,0);}
.m4f_c01041{transform:matrix(0.304283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304283,0.000000,0.000000,0.250000,0,0);}
.m2d_c01041{transform:matrix(0.304531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304531,0.000000,0.000000,0.250000,0,0);}
.mbf_c01041{transform:matrix(0.304946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304946,0.000000,0.000000,0.250000,0,0);}
.mba_c01041{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m15_c01041{transform:matrix(0.305086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305086,0.000000,0.000000,0.250000,0,0);}
.m60_c01041{transform:matrix(0.305189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305189,0.000000,0.000000,0.250000,0,0);}
.mc8_c01041{transform:matrix(0.305201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305201,0.000000,0.000000,0.250000,0,0);}
.mc4_c01041{transform:matrix(0.305427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305427,0.000000,0.000000,0.250000,0,0);}
.ma0_c01041{transform:matrix(0.305832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305832,0.000000,0.000000,0.250000,0,0);}
.m88_c01041{transform:matrix(0.305947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305947,0.000000,0.000000,0.250000,0,0);}
.m58_c01041{transform:matrix(0.306628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306628,0.000000,0.000000,0.250000,0,0);}
.m68_c01041{transform:matrix(0.306896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306896,0.000000,0.000000,0.250000,0,0);}
.m29_c01041{transform:matrix(0.307639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307639,0.000000,0.000000,0.250000,0,0);}
.m91_c01041{transform:matrix(0.308530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308530,0.000000,0.000000,0.250000,0,0);}
.m50_c01041{transform:matrix(0.308710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308710,0.000000,0.000000,0.250000,0,0);}
.mc9_c01041{transform:matrix(0.308796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308796,0.000000,0.000000,0.250000,0,0);}
.mcb_c01041{transform:matrix(0.309390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309390,0.000000,0.000000,0.250000,0,0);}
.m43_c01041{transform:matrix(0.309749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309749,0.000000,0.000000,0.250000,0,0);}
.mb_c01041{transform:matrix(0.310314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310314,0.000000,0.000000,0.250000,0,0);}
.ma2_c01041{transform:matrix(0.310685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310685,0.000000,0.000000,0.250000,0,0);}
.mcd_c01041{transform:matrix(0.311301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311301,0.000000,0.000000,0.250000,0,0);}
.m35_c01041{transform:matrix(0.311431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311431,0.000000,0.000000,0.250000,0,0);}
.m6c_c01041{transform:matrix(0.311516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311516,0.000000,0.000000,0.250000,0,0);}
.m46_c01041{transform:matrix(0.312002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312002,0.000000,0.000000,0.250000,0,0);}
.m55_c01041{transform:matrix(0.312417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312417,0.000000,0.000000,0.250000,0,0);}
.m94_c01041{transform:matrix(0.312911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312911,0.000000,0.000000,0.250000,0,0);}
.m9a_c01041{transform:matrix(0.313207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313207,0.000000,0.000000,0.250000,0,0);}
.m21_c01041{transform:matrix(0.313274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313274,0.000000,0.000000,0.250000,0,0);}
.mb9_c01041{transform:matrix(0.313453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313453,0.000000,0.000000,0.250000,0,0);}
.m69_c01041{transform:matrix(0.314439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314439,0.000000,0.000000,0.250000,0,0);}
.m1b_c01041{transform:matrix(0.314584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314584,0.000000,0.000000,0.250000,0,0);}
.m7e_c01041{transform:matrix(0.314793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314793,0.000000,0.000000,0.250000,0,0);}
.mb3_c01041{transform:matrix(0.315133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315133,0.000000,0.000000,0.250000,0,0);}
.m4_c01041{transform:matrix(0.315957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315957,0.000000,0.000000,0.250000,0,0);}
.mb4_c01041{transform:matrix(0.316088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316088,0.000000,0.000000,0.250000,0,0);}
.m8_c01041{transform:matrix(0.316479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316479,0.000000,0.000000,0.250000,0,0);}
.m66_c01041{transform:matrix(0.316859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316859,0.000000,0.000000,0.250000,0,0);}
.m56_c01041{transform:matrix(0.317099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317099,0.000000,0.000000,0.250000,0,0);}
.mc5_c01041{transform:matrix(0.317870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317870,0.000000,0.000000,0.250000,0,0);}
.mbe_c01041{transform:matrix(0.318980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318980,0.000000,0.000000,0.250000,0,0);}
.m9d_c01041{transform:matrix(0.319095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319095,0.000000,0.000000,0.250000,0,0);}
.m4d_c01041{transform:matrix(0.319130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319130,0.000000,0.000000,0.250000,0,0);}
.m25_c01041{transform:matrix(0.319415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319415,0.000000,0.000000,0.250000,0,0);}
.mbc_c01041{transform:matrix(0.319849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319849,0.000000,0.000000,0.250000,0,0);}
.mb8_c01041{transform:matrix(0.319949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319949,0.000000,0.000000,0.250000,0,0);}
.m3f_c01041{transform:matrix(0.321030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321030,0.000000,0.000000,0.250000,0,0);}
.m98_c01041{transform:matrix(0.321124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321124,0.000000,0.000000,0.250000,0,0);}
.m6b_c01041{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);}
.m70_c01041{transform:matrix(0.321710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321710,0.000000,0.000000,0.250000,0,0);}
.m30_c01041{transform:matrix(0.322830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322830,0.000000,0.000000,0.250000,0,0);}
.m77_c01041{transform:matrix(0.322841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322841,0.000000,0.000000,0.250000,0,0);}
.ma6_c01041{transform:matrix(0.322953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322953,0.000000,0.000000,0.250000,0,0);}
.mca_c01041{transform:matrix(0.323069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323069,0.000000,0.000000,0.250000,0,0);}
.m4a_c01041{transform:matrix(0.323565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323565,0.000000,0.000000,0.250000,0,0);}
.m27_c01041{transform:matrix(0.323739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323739,0.000000,0.000000,0.250000,0,0);}
.m10_c01041{transform:matrix(0.323866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323866,0.000000,0.000000,0.250000,0,0);}
.m82_c01041{transform:matrix(0.324997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324997,0.000000,0.000000,0.250000,0,0);}
.m18_c01041{transform:matrix(0.325329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325329,0.000000,0.000000,0.250000,0,0);}
.m2b_c01041{transform:matrix(0.326234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326234,0.000000,0.000000,0.250000,0,0);}
.m72_c01041{transform:matrix(0.326498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326498,0.000000,0.000000,0.250000,0,0);}
.m7d_c01041{transform:matrix(0.326551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326551,0.000000,0.000000,0.250000,0,0);}
.m13_c01041{transform:matrix(0.326561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326561,0.000000,0.000000,0.250000,0,0);}
.m8b_c01041{transform:matrix(0.327286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327286,0.000000,0.000000,0.250000,0,0);}
.m62_c01041{transform:matrix(0.327550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327550,0.000000,0.000000,0.250000,0,0);}
.ma5_c01041{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);}
.m2e_c01041{transform:matrix(0.327822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327822,0.000000,0.000000,0.250000,0,0);}
.m9c_c01041{transform:matrix(0.328069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328069,0.000000,0.000000,0.250000,0,0);}
.m61_c01041{transform:matrix(0.328274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328274,0.000000,0.000000,0.250000,0,0);}
.m6d_c01041{transform:matrix(0.328373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328373,0.000000,0.000000,0.250000,0,0);}
.m9b_c01041{transform:matrix(0.328413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328413,0.000000,0.000000,0.250000,0,0);}
.m32_c01041{transform:matrix(0.328426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328426,0.000000,0.000000,0.250000,0,0);}
.m6a_c01041{transform:matrix(0.329081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329081,0.000000,0.000000,0.250000,0,0);}
.m19_c01041{transform:matrix(0.330161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330161,0.000000,0.000000,0.250000,0,0);}
.m36_c01041{transform:matrix(0.330239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330239,0.000000,0.000000,0.250000,0,0);}
.mbb_c01041{transform:matrix(0.330248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330248,0.000000,0.000000,0.250000,0,0);}
.ma7_c01041{transform:matrix(0.330257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330257,0.000000,0.000000,0.250000,0,0);}
.m92_c01041{transform:matrix(0.331094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331094,0.000000,0.000000,0.250000,0,0);}
.m85_c01041{transform:matrix(0.331470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331470,0.000000,0.000000,0.250000,0,0);}
.m4e_c01041{transform:matrix(0.333007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333007,0.000000,0.000000,0.250000,0,0);}
.m33_c01041{transform:matrix(0.333278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333278,0.000000,0.000000,0.250000,0,0);}
.m7_c01041{transform:matrix(0.333344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333344,0.000000,0.000000,0.250000,0,0);}
.m96_c01041{transform:matrix(0.333489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333489,0.000000,0.000000,0.250000,0,0);}
.m44_c01041{transform:matrix(0.333546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333546,0.000000,0.000000,0.250000,0,0);}
.m52_c01041{transform:matrix(0.333900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333900,0.000000,0.000000,0.250000,0,0);}
.mbd_c01041{transform:matrix(0.334509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334509,0.000000,0.000000,0.250000,0,0);}
.m31_c01041{transform:matrix(0.334689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334689,0.000000,0.000000,0.250000,0,0);}
.m51_c01041{transform:matrix(0.334721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334721,0.000000,0.000000,0.250000,0,0);}
.m65_c01041{transform:matrix(0.334951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334951,0.000000,0.000000,0.250000,0,0);}
.m39_c01041{transform:matrix(0.335962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335962,0.000000,0.000000,0.250000,0,0);}
.m7c_c01041{transform:matrix(0.336695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336695,0.000000,0.000000,0.250000,0,0);}
.m40_c01041{transform:matrix(0.337512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337512,0.000000,0.000000,0.250000,0,0);}
.m6_c01041{transform:matrix(0.339095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339095,0.000000,0.000000,0.250000,0,0);}
.m1c_c01041{transform:matrix(0.339529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339529,0.000000,0.000000,0.250000,0,0);}
.m90_c01041{transform:matrix(0.339671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339671,0.000000,0.000000,0.250000,0,0);}
.m1e_c01041{transform:matrix(0.339779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339779,0.000000,0.000000,0.250000,0,0);}
.ma8_c01041{transform:matrix(0.339834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339834,0.000000,0.000000,0.250000,0,0);}
.m75_c01041{transform:matrix(0.341120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341120,0.000000,0.000000,0.250000,0,0);}
.m7f_c01041{transform:matrix(0.341370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341370,0.000000,0.000000,0.250000,0,0);}
.m4b_c01041{transform:matrix(0.341911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341911,0.000000,0.000000,0.250000,0,0);}
.m5b_c01041{transform:matrix(0.342281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342281,0.000000,0.000000,0.250000,0,0);}
.mc_c01041{transform:matrix(0.343671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343671,0.000000,0.000000,0.250000,0,0);}
.m7a_c01041{transform:matrix(0.344543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344543,0.000000,0.000000,0.250000,0,0);}
.m41_c01041{transform:matrix(0.345922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345922,0.000000,0.000000,0.250000,0,0);}
.m23_c01041{transform:matrix(0.348008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348008,0.000000,0.000000,0.250000,0,0);}
.m38_c01041{transform:matrix(0.348961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348961,0.000000,0.000000,0.250000,0,0);}
.m3e_c01041{transform:matrix(0.350155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350155,0.000000,0.000000,0.250000,0,0);}
.m48_c01041{transform:matrix(0.351327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351327,0.000000,0.000000,0.250000,0,0);}
.mb2_c01041{transform:matrix(0.351780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351780,0.000000,0.000000,0.250000,0,0);}
.mb1_c01041{transform:matrix(0.351843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351843,0.000000,0.000000,0.250000,0,0);}
.m3c_c01041{transform:matrix(0.354368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354368,0.000000,0.000000,0.250000,0,0);}
.m9_c01041{transform:matrix(0.354472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354472,0.000000,0.000000,0.250000,0,0);}
.m5e_c01041{transform:matrix(0.354791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354791,0.000000,0.000000,0.250000,0,0);}
.m8a_c01041{transform:matrix(0.354891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354891,0.000000,0.000000,0.250000,0,0);}
.m97_c01041{transform:matrix(0.355627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355627,0.000000,0.000000,0.250000,0,0);}
.m37_c01041{transform:matrix(0.355864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355864,0.000000,0.000000,0.250000,0,0);}
.m1a_c01041{transform:matrix(0.356639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356639,0.000000,0.000000,0.250000,0,0);}
.m74_c01041{transform:matrix(0.358290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358290,0.000000,0.000000,0.250000,0,0);}
.m11_c01041{transform:matrix(0.359187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359187,0.000000,0.000000,0.250000,0,0);}
.m3_c01041{transform:matrix(0.360328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360328,0.000000,0.000000,0.250000,0,0);}
.m20_c01041{transform:matrix(0.361422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361422,0.000000,0.000000,0.250000,0,0);}
.m28_c01041{transform:matrix(0.362043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362043,0.000000,0.000000,0.250000,0,0);}
.m49_c01041{transform:matrix(0.363124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363124,0.000000,0.000000,0.250000,0,0);}
.m2c_c01041{transform:matrix(0.364084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364084,0.000000,0.000000,0.250000,0,0);}
.mc7_c01041{transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);}
.m5d_c01041{transform:matrix(0.367773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367773,0.000000,0.000000,0.250000,0,0);}
.mad_c01041{transform:matrix(0.383143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383143,0.000000,0.000000,0.250000,0,0);}
.m24_c01041{transform:matrix(0.384245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384245,0.000000,0.000000,0.250000,0,0);}
.m99_c01041{transform:matrix(0.392915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392915,0.000000,0.000000,0.250000,0,0);}
.m95_c01041{transform:matrix(0.393185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393185,0.000000,0.000000,0.250000,0,0);}
.m17_c01041{transform:matrix(0.399630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399630,0.000000,0.000000,0.250000,0,0);}
.mf_c01041{transform:matrix(0.406076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406076,0.000000,0.000000,0.250000,0,0);}
.m45_c01041{transform:matrix(0.412522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412522,0.000000,0.000000,0.250000,0,0);}
.m7b_c01041{transform:matrix(0.418968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418968,0.000000,0.000000,0.250000,0,0);}
.v0_c01041{vertical-align:0.000000px;}
.ls3_c01041{letter-spacing:-2.564100px;}
.ls2_c01041{letter-spacing:0.000000px;}
.lsb_c01041{letter-spacing:0.146520px;}
.ls5_c01041{letter-spacing:1.362636px;}
.ls9_c01041{letter-spacing:1.734638px;}
.lse_c01041{letter-spacing:2.435400px;}
.lsf_c01041{letter-spacing:2.827836px;}
.ls10_c01041{letter-spacing:2.861100px;}
.lsc_c01041{letter-spacing:3.168000px;}
.ls11_c01041{letter-spacing:3.524400px;}
.ls4_c01041{letter-spacing:3.653110px;}
.ls1_c01041{letter-spacing:3.663000px;}
.ls8_c01041{letter-spacing:3.722400px;}
.ls0_c01041{letter-spacing:3.781017px;}
.lsd_c01041{letter-spacing:49.896198px;}
.ls7_c01041{letter-spacing:55.598598px;}
.ls6_c01041{letter-spacing:57.024198px;}
.lsa_c01041{letter-spacing:65.577798px;}
.sc__c01041{text-shadow:none;}
.sc0_c01041{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01041{-webkit-text-stroke:0px transparent;}
.sc0_c01041{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01041{word-spacing:-18.315000px;}
.ws1_c01041{word-spacing:0.000000px;}
._0_c01041{margin-left:-11.575080px;}
.fc0_c01041{color:transparent;}
.fs6_c01041{font-size:27.720000px;}
.fs7_c01041{font-size:39.798000px;}
.fs2_c01041{font-size:39.996198px;}
.fs11_c01041{font-size:44.352000px;}
.fse_c01041{font-size:48.708000px;}
.fsd_c01041{font-size:49.896198px;}
.fs9_c01041{font-size:55.598598px;}
.fs8_c01041{font-size:57.024198px;}
.fsf_c01041{font-size:57.222000px;}
.fsc_c01041{font-size:63.360000px;}
.fsb_c01041{font-size:65.577798px;}
.fs4_c01041{font-size:66.528000px;}
.fs10_c01041{font-size:70.488000px;}
.fs3_c01041{font-size:73.062198px;}
.fs1_c01041{font-size:73.260000px;}
.fsa_c01041{font-size:74.448000px;}
.fs5_c01041{font-size:77.616198px;}
.fs0_c01041{font-size:85.932198px;}
.y0_c01041{bottom:0.000000px;}
.y1f_c01041{bottom:41.610735px;}
.y1_c01041{bottom:76.500000px;}
.y1e_c01041{bottom:136.056735px;}
.y1d_c01041{bottom:167.771385px;}
.y1c_c01041{bottom:198.783135px;}
.y1b_c01041{bottom:230.859135px;}
.y1a_c01041{bottom:262.578735px;}
.y19_c01041{bottom:295.006185px;}
.y18_c01041{bottom:326.730735px;}
.y17_c01041{bottom:358.088985px;}
.y16_c01041{bottom:390.169935px;}
.y15_c01041{bottom:421.884585px;}
.y14_c01041{bottom:484.254585px;}
.y13_c01041{bottom:515.974185px;}
.y12_c01041{bottom:547.342335px;}
.y11_c01041{bottom:579.061935px;}
.y10_c01041{bottom:611.137935px;}
.yf_c01041{bottom:642.857535px;}
.ye_c01041{bottom:674.933535px;}
.yd_c01041{bottom:703.445535px;}
.yc_c01041{bottom:706.653135px;}
.ya_c01041{bottom:757.613385px;}
.yb_c01041{bottom:757.969785px;}
.y9_c01041{bottom:769.730985px;}
.y8_c01041{bottom:782.561385px;}
.y7_c01041{bottom:801.455535px;}
.y6_c01041{bottom:833.170185px;}
.y5_c01041{bottom:865.251135px;}
.y4_c01041{bottom:896.614335px;}
.y3_c01041{bottom:928.685385px;}
.y2_c01041{bottom:1063.048185px;}
.h8_c01041{height:28.911094px;}
.hf_c01041{height:33.230868px;}
.hb_c01041{height:37.028666px;}
.ha_c01041{height:37.978116px;}
.h9_c01041{height:39.059561px;}
.h4_c01041{height:39.254081px;}
.hd_c01041{height:43.674813px;}
.h13_c01041{height:46.257750px;}
.h10_c01041{height:50.800922px;}
.h11_c01041{height:56.160264px;}
.he_c01041{height:66.082500px;}
.h12_c01041{height:69.180117px;}
.h6_c01041{height:69.386625px;}
.h5_c01041{height:71.706552px;}
.h3_c01041{height:71.900684px;}
.hc_c01041{height:75.029625px;}
.h7_c01041{height:80.951269px;}
.h2_c01041{height:84.337753px;}
.h1_c01041{height:1110.000000px;}
.h0_c01041{height:1263.000000px;}
.w1_c01041{width:775.500000px;}
.w0_c01041{width:892.500000px;}
.x0_c01041{left:0.000000px;}
.x1_c01041{left:58.500000px;}
.x6a_c01041{left:70.865835px;}
.x25_c01041{left:71.935035px;}
.xc_c01041{left:73.207185px;}
.x3_c01041{left:74.231835px;}
.x18_c01041{left:104.738685px;}
.x44_c01041{left:115.970235px;}
.xd_c01041{left:116.989935px;}
.x19_c01041{left:127.003785px;}
.x40_c01041{left:136.483035px;}
.x54_c01041{left:138.071985px;}
.x2e_c01041{left:147.991785px;}
.xe_c01041{left:150.110385px;}
.x26_c01041{left:159.257985px;}
.x66_c01041{left:160.470735px;}
.x55_c01041{left:171.444885px;}
.x41_c01041{left:172.509135px;}
.x58_c01041{left:181.359735px;}
.xf_c01041{left:182.404185px;}
.x45_c01041{left:189.205485px;}
.x4_c01041{left:194.348535px;}
.x5e_c01041{left:205.372185px;}
.x59_c01041{left:215.727585px;}
.x2f_c01041{left:217.034385px;}
.x1a_c01041{left:227.137335px;}
.x27_c01041{left:237.854085px;}
.x1d_c01041{left:239.566785px;}
.x32_c01041{left:240.799335px;}
.x67_c01041{left:249.263835px;}
.x5a_c01041{left:259.054935px;}
.x10_c01041{left:260.317185px;}
.x5f_c01041{left:270.078585px;}
.x64_c01041{left:272.043735px;}
.x46_c01041{left:281.508135px;}
.x28_c01041{left:282.760485px;}
.x47_c01041{left:286.760085px;}
.x11_c01041{left:293.041635px;}
.x3e_c01041{left:294.729585px;}
.x33_c01041{left:304.490985px;}
.x5b_c01041{left:316.598685px;}
.x1e_c01041{left:326.063085px;}
.x12_c01041{left:327.186735px;}
.x42_c01041{left:338.007435px;}
.x5_c01041{left:340.027035px;}
.x4e_c01041{left:349.417185px;}
.x60_c01041{left:359.193435px;}
.x1f_c01041{left:370.771485px;}
.x3a_c01041{left:371.835735px;}
.x52_c01041{left:380.973435px;}
.x6_c01041{left:382.859385px;}
.x29_c01041{left:393.190035px;}
.x3b_c01041{left:404.233485px;}
.x61_c01041{left:405.574935px;}
.x7_c01041{left:415.341285px;}
.x6c_c01041{left:417.390585px;}
.x48_c01041{left:427.127235px;}
.x13_c01041{left:436.527285px;}
.x20_c01041{left:437.715285px;}
.x49_c01041{left:438.863685px;}
.x34_c01041{left:449.164635px;}
.x8_c01041{left:460.029885px;}
.x14_c01041{left:461.143635px;}
.x5c_c01041{left:471.305985px;}
.x4a_c01041{left:477.255885px;}
.x68_c01041{left:481.121835px;}
.x35_c01041{left:482.621685px;}
.x21_c01041{left:491.774235px;}
.x15_c01041{left:493.397835px;}
.x65_c01041{left:502.827585px;}
.x2a_c01041{left:503.961135px;}
.x53_c01041{left:505.000635px;}
.x36_c01041{left:514.925385px;}
.x9_c01041{left:525.617385px;}
.x4f_c01041{left:527.206335px;}
.x22_c01041{left:537.536985px;}
.x3c_c01041{left:548.644785px;}
.x5d_c01041{left:550.654485px;}
.x2b_c01041{left:560.351535px;}
.x1b_c01041{left:562.272135px;}
.x62_c01041{left:569.152635px;}
.x43_c01041{left:570.588135px;}
.x3d_c01041{left:580.844535px;}
.x16_c01041{left:582.012735px;}
.x37_c01041{left:591.209835px;}
.xa_c01041{left:593.417535px;}
.x3f_c01041{left:603.302685px;}
.x63_c01041{left:604.446135px;}
.x4b_c01041{left:613.143285px;}
.x1c_c01041{left:615.687585px;}
.x38_c01041{left:626.310285px;}
.x6b_c01041{left:635.037135px;}
.x69_c01041{left:636.319185px;}
.xb_c01041{left:648.614985px;}
.x23_c01041{left:657.539835px;}
.x39_c01041{left:659.401035px;}
.x2_c01041{left:670.117785px;}
.x4c_c01041{left:679.438635px;}
.x17_c01041{left:680.666235px;}
.x24_c01041{left:692.575935px;}
.x2d_c01041{left:699.694035px;}
.x30_c01041{left:701.733435px;}
.x31_c01041{left:703.411485px;}
.x56_c01041{left:704.589585px;}
.x2c_c01041{left:714.306435px;}
.x57_c01041{left:726.334935px;}
.x4d_c01041{left:731.017635px;}
.x50_c01041{left:738.511935px;}
.x51_c01041{left:760.069185px;}
@media print{
.v0_c01041{vertical-align:0.000000pt;}
.ls3_c01041{letter-spacing:-2.279200pt;}
.ls2_c01041{letter-spacing:0.000000pt;}
.lsb_c01041{letter-spacing:0.130240pt;}
.ls5_c01041{letter-spacing:1.211232pt;}
.ls9_c01041{letter-spacing:1.541901pt;}
.lse_c01041{letter-spacing:2.164800pt;}
.lsf_c01041{letter-spacing:2.513632pt;}
.ls10_c01041{letter-spacing:2.543200pt;}
.lsc_c01041{letter-spacing:2.816000pt;}
.ls11_c01041{letter-spacing:3.132800pt;}
.ls4_c01041{letter-spacing:3.247209pt;}
.ls1_c01041{letter-spacing:3.256000pt;}
.ls8_c01041{letter-spacing:3.308800pt;}
.ls0_c01041{letter-spacing:3.360904pt;}
.lsd_c01041{letter-spacing:44.352176pt;}
.ls7_c01041{letter-spacing:49.420976pt;}
.ls6_c01041{letter-spacing:50.688176pt;}
.lsa_c01041{letter-spacing:58.291376pt;}
.ws0_c01041{word-spacing:-16.280000pt;}
.ws1_c01041{word-spacing:0.000000pt;}
._0_c01041{margin-left:-10.288960pt;}
.fs6_c01041{font-size:24.640000pt;}
.fs7_c01041{font-size:35.376000pt;}
.fs2_c01041{font-size:35.552176pt;}
.fs11_c01041{font-size:39.424000pt;}
.fse_c01041{font-size:43.296000pt;}
.fsd_c01041{font-size:44.352176pt;}
.fs9_c01041{font-size:49.420976pt;}
.fs8_c01041{font-size:50.688176pt;}
.fsf_c01041{font-size:50.864000pt;}
.fsc_c01041{font-size:56.320000pt;}
.fsb_c01041{font-size:58.291376pt;}
.fs4_c01041{font-size:59.136000pt;}
.fs10_c01041{font-size:62.656000pt;}
.fs3_c01041{font-size:64.944176pt;}
.fs1_c01041{font-size:65.120000pt;}
.fsa_c01041{font-size:66.176000pt;}
.fs5_c01041{font-size:68.992176pt;}
.fs0_c01041{font-size:76.384176pt;}
.y0_c01041{bottom:0.000000pt;}
.y1f_c01041{bottom:36.987320pt;}
.y1_c01041{bottom:68.000000pt;}
.y1e_c01041{bottom:120.939320pt;}
.y1d_c01041{bottom:149.130120pt;}
.y1c_c01041{bottom:176.696120pt;}
.y1b_c01041{bottom:205.208120pt;}
.y1a_c01041{bottom:233.403320pt;}
.y19_c01041{bottom:262.227720pt;}
.y18_c01041{bottom:290.427320pt;}
.y17_c01041{bottom:318.301320pt;}
.y16_c01041{bottom:346.817720pt;}
.y15_c01041{bottom:375.008520pt;}
.y14_c01041{bottom:430.448520pt;}
.y13_c01041{bottom:458.643720pt;}
.y12_c01041{bottom:486.526520pt;}
.y11_c01041{bottom:514.721720pt;}
.y10_c01041{bottom:543.233720pt;}
.yf_c01041{bottom:571.428920pt;}
.ye_c01041{bottom:599.940920pt;}
.yd_c01041{bottom:625.284920pt;}
.yc_c01041{bottom:628.136120pt;}
.ya_c01041{bottom:673.434120pt;}
.yb_c01041{bottom:673.750920pt;}
.y9_c01041{bottom:684.205320pt;}
.y8_c01041{bottom:695.610120pt;}
.y7_c01041{bottom:712.404920pt;}
.y6_c01041{bottom:740.595720pt;}
.y5_c01041{bottom:769.112120pt;}
.y4_c01041{bottom:796.990520pt;}
.y3_c01041{bottom:825.498120pt;}
.y2_c01041{bottom:944.931720pt;}
.h8_c01041{height:25.698750pt;}
.hf_c01041{height:29.538549pt;}
.hb_c01041{height:32.914370pt;}
.ha_c01041{height:33.758325pt;}
.h9_c01041{height:34.719609pt;}
.h4_c01041{height:34.892516pt;}
.hd_c01041{height:38.822056pt;}
.h13_c01041{height:41.118000pt;}
.h10_c01041{height:45.156375pt;}
.h11_c01041{height:49.920234pt;}
.he_c01041{height:58.740000pt;}
.h12_c01041{height:61.493438pt;}
.h6_c01041{height:61.677000pt;}
.h5_c01041{height:63.739157pt;}
.h3_c01041{height:63.911719pt;}
.hc_c01041{height:66.693000pt;}
.h7_c01041{height:71.956684pt;}
.h2_c01041{height:74.966891pt;}
.h1_c01041{height:986.666667pt;}
.h0_c01041{height:1122.666667pt;}
.w1_c01041{width:689.333333pt;}
.w0_c01041{width:793.333333pt;}
.x0_c01041{left:0.000000pt;}
.x1_c01041{left:52.000000pt;}
.x6a_c01041{left:62.991853pt;}
.x25_c01041{left:63.942253pt;}
.xc_c01041{left:65.073053pt;}
.x3_c01041{left:65.983853pt;}
.x18_c01041{left:93.101053pt;}
.x44_c01041{left:103.084653pt;}
.xd_c01041{left:103.991053pt;}
.x19_c01041{left:112.892253pt;}
.x40_c01041{left:121.318253pt;}
.x54_c01041{left:122.730653pt;}
.x2e_c01041{left:131.548253pt;}
.xe_c01041{left:133.431453pt;}
.x26_c01041{left:141.562653pt;}
.x66_c01041{left:142.640653pt;}
.x55_c01041{left:152.395453pt;}
.x41_c01041{left:153.341453pt;}
.x58_c01041{left:161.208653pt;}
.xf_c01041{left:162.137053pt;}
.x45_c01041{left:168.182653pt;}
.x4_c01041{left:172.754253pt;}
.x5e_c01041{left:182.553053pt;}
.x59_c01041{left:191.757853pt;}
.x2f_c01041{left:192.919453pt;}
.x1a_c01041{left:201.899853pt;}
.x27_c01041{left:211.425853pt;}
.x1d_c01041{left:212.948253pt;}
.x32_c01041{left:214.043853pt;}
.x67_c01041{left:221.567853pt;}
.x5a_c01041{left:230.271053pt;}
.x10_c01041{left:231.393053pt;}
.x5f_c01041{left:240.069853pt;}
.x64_c01041{left:241.816653pt;}
.x46_c01041{left:250.229453pt;}
.x28_c01041{left:251.342653pt;}
.x47_c01041{left:254.897853pt;}
.x11_c01041{left:260.481453pt;}
.x3e_c01041{left:261.981853pt;}
.x33_c01041{left:270.658653pt;}
.x5b_c01041{left:281.421053pt;}
.x1e_c01041{left:289.833853pt;}
.x12_c01041{left:290.832653pt;}
.x42_c01041{left:300.451053pt;}
.x5_c01041{left:302.246253pt;}
.x4e_c01041{left:310.593053pt;}
.x60_c01041{left:319.283053pt;}
.x1f_c01041{left:329.574653pt;}
.x3a_c01041{left:330.520653pt;}
.x52_c01041{left:338.643053pt;}
.x6_c01041{left:340.319453pt;}
.x29_c01041{left:349.502253pt;}
.x3b_c01041{left:359.318653pt;}
.x61_c01041{left:360.511053pt;}
.x7_c01041{left:369.192253pt;}
.x6c_c01041{left:371.013853pt;}
.x48_c01041{left:379.668653pt;}
.x13_c01041{left:388.024253pt;}
.x20_c01041{left:389.080253pt;}
.x49_c01041{left:390.101053pt;}
.x34_c01041{left:399.257453pt;}
.x8_c01041{left:408.915453pt;}
.x14_c01041{left:409.905453pt;}
.x5c_c01041{left:418.938653pt;}
.x4a_c01041{left:424.227453pt;}
.x68_c01041{left:427.663853pt;}
.x35_c01041{left:428.997053pt;}
.x21_c01041{left:437.132653pt;}
.x15_c01041{left:438.575853pt;}
.x65_c01041{left:446.957853pt;}
.x2a_c01041{left:447.965453pt;}
.x53_c01041{left:448.889453pt;}
.x36_c01041{left:457.711453pt;}
.x9_c01041{left:467.215453pt;}
.x4f_c01041{left:468.627853pt;}
.x22_c01041{left:477.810653pt;}
.x3c_c01041{left:487.684253pt;}
.x5d_c01041{left:489.470653pt;}
.x2b_c01041{left:498.090253pt;}
.x1b_c01041{left:499.797453pt;}
.x62_c01041{left:505.913453pt;}
.x43_c01041{left:507.189453pt;}
.x3d_c01041{left:516.306253pt;}
.x16_c01041{left:517.344653pt;}
.x37_c01041{left:525.519853pt;}
.xa_c01041{left:527.482253pt;}
.x3f_c01041{left:536.269053pt;}
.x63_c01041{left:537.285453pt;}
.x4b_c01041{left:545.016253pt;}
.x1c_c01041{left:547.277853pt;}
.x38_c01041{left:556.720253pt;}
.x6b_c01041{left:564.477453pt;}
.x69_c01041{left:565.617053pt;}
.xb_c01041{left:576.546653pt;}
.x23_c01041{left:584.479853pt;}
.x39_c01041{left:586.134253pt;}
.x2_c01041{left:595.660253pt;}
.x4c_c01041{left:603.945453pt;}
.x17_c01041{left:605.036653pt;}
.x24_c01041{left:615.623053pt;}
.x2d_c01041{left:621.950253pt;}
.x30_c01041{left:623.763053pt;}
.x31_c01041{left:625.254653pt;}
.x56_c01041{left:626.301853pt;}
.x2c_c01041{left:634.939053pt;}
.x57_c01041{left:645.631053pt;}
.x4d_c01041{left:649.793453pt;}
.x50_c01041{left:656.455053pt;}
.x51_c01041{left:675.617053pt;}
}





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

.ir_c01042:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01042{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01042;src:url('chunks/assets/font_91d9690e08ddf7ce5b4e0b33.woff2')format("woff");}.ff1_c01042{font-family:ff1_c01042;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01042;src:url('chunks/assets/font_b014d2761627126c66ce32a7.woff2')format("woff");}.ff2_c01042{font-family:ff2_c01042;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01042;src:url('chunks/assets/font_bdcae25081a8f9558eebbdf9.woff2')format("woff");}.ff3_c01042{font-family:ff3_c01042;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01042;src:url('chunks/assets/font_0f960af0aa729457e4d09e24.woff2')format("woff");}.ff4_c01042{font-family:ff4_c01042;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01042;src:url('chunks/assets/font_edcc006c864d99e56da12f3a.woff2')format("woff");}.ff5_c01042{font-family:ff5_c01042;line-height:0.689941;font-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_c01042{transform:matrix(0.028262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.028262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.028262,0.000000,0.000000,0.250000,0,0);}
.mac_c01042{transform:matrix(0.052650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.052650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.052650,0.000000,0.000000,0.250000,0,0);}
.m90_c01042{transform:matrix(0.073170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073170,0.000000,0.000000,0.250000,0,0);}
.mad_c01042{transform:matrix(0.080164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080164,0.000000,0.000000,0.250000,0,0);}
.m75_c01042{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);}
.maf_c01042{transform:matrix(0.095652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095652,0.000000,0.000000,0.250000,0,0);}
.m76_c01042{transform:matrix(0.149652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149652,0.000000,0.000000,0.250000,0,0);}
.m50_c01042{transform:matrix(0.174580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174580,0.000000,0.000000,0.250000,0,0);}
.m67_c01042{transform:matrix(0.177982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177982,0.000000,0.000000,0.250000,0,0);}
.m4_c01042{transform:matrix(0.193749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193749,0.000000,0.000000,0.250000,0,0);}
.m58_c01042{transform:matrix(0.202450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202450,0.000000,0.000000,0.250000,0,0);}
.m3d_c01042{transform:matrix(0.209144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209144,0.000000,0.000000,0.250000,0,0);}
.m12_c01042{transform:matrix(0.217575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217575,0.000000,0.000000,0.250000,0,0);}
.ma8_c01042{transform:matrix(0.222512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222512,0.000000,0.000000,0.250000,0,0);}
.mb1_c01042{transform:matrix(0.235770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235770,0.000000,0.000000,0.250000,0,0);}
.m3e_c01042{transform:matrix(0.242668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242668,0.000000,0.000000,0.250000,0,0);}
.mb_c01042{transform:matrix(0.243789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243789,0.000000,0.000000,0.250000,0,0);}
.m0_c01042{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01042{transform:matrix(0.250403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250403,0.000000,0.000000,0.250000,0,0);}
.m25_c01042{transform:matrix(0.253308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253308,0.000000,0.000000,0.250000,0,0);}
.mb5_c01042{transform:matrix(0.255972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255972,0.000000,0.000000,0.250000,0,0);}
.m4e_c01042{transform:matrix(0.256140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256140,0.000000,0.000000,0.250000,0,0);}
.m2e_c01042{transform:matrix(0.258151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258151,0.000000,0.000000,0.250000,0,0);}
.m2a_c01042{transform:matrix(0.258494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258494,0.000000,0.000000,0.250000,0,0);}
.m4c_c01042{transform:matrix(0.258529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258529,0.000000,0.000000,0.250000,0,0);}
.m9f_c01042{transform:matrix(0.258764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258764,0.000000,0.000000,0.250000,0,0);}
.m8d_c01042{transform:matrix(0.261889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261889,0.000000,0.000000,0.250000,0,0);}
.m78_c01042{transform:matrix(0.262202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262202,0.000000,0.000000,0.250000,0,0);}
.m62_c01042{transform:matrix(0.263283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263283,0.000000,0.000000,0.250000,0,0);}
.m91_c01042{transform:matrix(0.263764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263764,0.000000,0.000000,0.250000,0,0);}
.m8_c01042{transform:matrix(0.264894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264894,0.000000,0.000000,0.250000,0,0);}
.m74_c01042{transform:matrix(0.268443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268443,0.000000,0.000000,0.250000,0,0);}
.m8f_c01042{transform:matrix(0.271132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271132,0.000000,0.000000,0.250000,0,0);}
.m3c_c01042{transform:matrix(0.272654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272654,0.000000,0.000000,0.250000,0,0);}
.m41_c01042{transform:matrix(0.275780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275780,0.000000,0.000000,0.250000,0,0);}
.mb3_c01042{transform:matrix(0.276253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276253,0.000000,0.000000,0.250000,0,0);}
.me_c01042{transform:matrix(0.276872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276872,0.000000,0.000000,0.250000,0,0);}
.m47_c01042{transform:matrix(0.277612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277612,0.000000,0.000000,0.250000,0,0);}
.m73_c01042{transform:matrix(0.278312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278312,0.000000,0.000000,0.250000,0,0);}
.m7a_c01042{transform:matrix(0.278417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278417,0.000000,0.000000,0.250000,0,0);}
.m87_c01042{transform:matrix(0.279717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279717,0.000000,0.000000,0.250000,0,0);}
.m65_c01042{transform:matrix(0.279971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279971,0.000000,0.000000,0.250000,0,0);}
.m34_c01042{transform:matrix(0.280054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280054,0.000000,0.000000,0.250000,0,0);}
.m92_c01042{transform:matrix(0.280574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280574,0.000000,0.000000,0.250000,0,0);}
.mab_c01042{transform:matrix(0.280679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280679,0.000000,0.000000,0.250000,0,0);}
.mb6_c01042{transform:matrix(0.281256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281256,0.000000,0.000000,0.250000,0,0);}
.m14_c01042{transform:matrix(0.282569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282569,0.000000,0.000000,0.250000,0,0);}
.mb7_c01042{transform:matrix(0.283160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283160,0.000000,0.000000,0.250000,0,0);}
.m8a_c01042{transform:matrix(0.283237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283237,0.000000,0.000000,0.250000,0,0);}
.m26_c01042{transform:matrix(0.283937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283937,0.000000,0.000000,0.250000,0,0);}
.m63_c01042{transform:matrix(0.284784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284784,0.000000,0.000000,0.250000,0,0);}
.m9b_c01042{transform:matrix(0.285070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285070,0.000000,0.000000,0.250000,0,0);}
.m69_c01042{transform:matrix(0.285691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285691,0.000000,0.000000,0.250000,0,0);}
.m38_c01042{transform:matrix(0.288201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288201,0.000000,0.000000,0.250000,0,0);}
.m37_c01042{transform:matrix(0.288232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288232,0.000000,0.000000,0.250000,0,0);}
.m96_c01042{transform:matrix(0.289175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289175,0.000000,0.000000,0.250000,0,0);}
.m52_c01042{transform:matrix(0.290641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290641,0.000000,0.000000,0.250000,0,0);}
.m56_c01042{transform:matrix(0.290692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290692,0.000000,0.000000,0.250000,0,0);}
.m32_c01042{transform:matrix(0.290703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290703,0.000000,0.000000,0.250000,0,0);}
.mf_c01042{transform:matrix(0.291645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291645,0.000000,0.000000,0.250000,0,0);}
.m5d_c01042{transform:matrix(0.291876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291876,0.000000,0.000000,0.250000,0,0);}
.m89_c01042{transform:matrix(0.292158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292158,0.000000,0.000000,0.250000,0,0);}
.m94_c01042{transform:matrix(0.292589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292589,0.000000,0.000000,0.250000,0,0);}
.m80_c01042{transform:matrix(0.293510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293510,0.000000,0.000000,0.250000,0,0);}
.ma9_c01042{transform:matrix(0.295165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295165,0.000000,0.000000,0.250000,0,0);}
.m17_c01042{transform:matrix(0.296688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296688,0.000000,0.000000,0.250000,0,0);}
.m53_c01042{transform:matrix(0.297038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297038,0.000000,0.000000,0.250000,0,0);}
.m6c_c01042{transform:matrix(0.298421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298421,0.000000,0.000000,0.250000,0,0);}
.m93_c01042{transform:matrix(0.299983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299983,0.000000,0.000000,0.250000,0,0);}
.m70_c01042{transform:matrix(0.300143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300143,0.000000,0.000000,0.250000,0,0);}
.m84_c01042{transform:matrix(0.300431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300431,0.000000,0.000000,0.250000,0,0);}
.m5f_c01042{transform:matrix(0.302251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302251,0.000000,0.000000,0.250000,0,0);}
.m77_c01042{transform:matrix(0.302304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302304,0.000000,0.000000,0.250000,0,0);}
.m85_c01042{transform:matrix(0.302514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302514,0.000000,0.000000,0.250000,0,0);}
.m9a_c01042{transform:matrix(0.303414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303414,0.000000,0.000000,0.250000,0,0);}
.m43_c01042{transform:matrix(0.303612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303612,0.000000,0.000000,0.250000,0,0);}
.m18_c01042{transform:matrix(0.303797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303797,0.000000,0.000000,0.250000,0,0);}
.m5b_c01042{transform:matrix(0.303992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303992,0.000000,0.000000,0.250000,0,0);}
.m33_c01042{transform:matrix(0.305200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305200,0.000000,0.000000,0.250000,0,0);}
.m10_c01042{transform:matrix(0.305203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305203,0.000000,0.000000,0.250000,0,0);}
.m31_c01042{transform:matrix(0.305356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305356,0.000000,0.000000,0.250000,0,0);}
.m5_c01042{transform:matrix(0.305497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305497,0.000000,0.000000,0.250000,0,0);}
.m6_c01042{transform:matrix(0.305625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305625,0.000000,0.000000,0.250000,0,0);}
.md_c01042{transform:matrix(0.306082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306082,0.000000,0.000000,0.250000,0,0);}
.m3b_c01042{transform:matrix(0.306626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306626,0.000000,0.000000,0.250000,0,0);}
.m6f_c01042{transform:matrix(0.306683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306683,0.000000,0.000000,0.250000,0,0);}
.m28_c01042{transform:matrix(0.306775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306775,0.000000,0.000000,0.250000,0,0);}
.m22_c01042{transform:matrix(0.306866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306866,0.000000,0.000000,0.250000,0,0);}
.m3a_c01042{transform:matrix(0.307034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307034,0.000000,0.000000,0.250000,0,0);}
.m8c_c01042{transform:matrix(0.307120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307120,0.000000,0.000000,0.250000,0,0);}
.ma7_c01042{transform:matrix(0.307553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307553,0.000000,0.000000,0.250000,0,0);}
.m1c_c01042{transform:matrix(0.308777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308777,0.000000,0.000000,0.250000,0,0);}
.m42_c01042{transform:matrix(0.308920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308920,0.000000,0.000000,0.250000,0,0);}
.m7f_c01042{transform:matrix(0.309741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309741,0.000000,0.000000,0.250000,0,0);}
.m8b_c01042{transform:matrix(0.310234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310234,0.000000,0.000000,0.250000,0,0);}
.mc_c01042{transform:matrix(0.311027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311027,0.000000,0.000000,0.250000,0,0);}
.m44_c01042{transform:matrix(0.311238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311238,0.000000,0.000000,0.250000,0,0);}
.m3f_c01042{transform:matrix(0.311483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311483,0.000000,0.000000,0.250000,0,0);}
.m4f_c01042{transform:matrix(0.311856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311856,0.000000,0.000000,0.250000,0,0);}
.m7c_c01042{transform:matrix(0.312364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312364,0.000000,0.000000,0.250000,0,0);}
.m2c_c01042{transform:matrix(0.312613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312613,0.000000,0.000000,0.250000,0,0);}
.m5e_c01042{transform:matrix(0.313054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313054,0.000000,0.000000,0.250000,0,0);}
.m59_c01042{transform:matrix(0.313683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313683,0.000000,0.000000,0.250000,0,0);}
.m83_c01042{transform:matrix(0.314009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314009,0.000000,0.000000,0.250000,0,0);}
.ma4_c01042{transform:matrix(0.314804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314804,0.000000,0.000000,0.250000,0,0);}
.m86_c01042{transform:matrix(0.315177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315177,0.000000,0.000000,0.250000,0,0);}
.mb4_c01042{transform:matrix(0.315534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315534,0.000000,0.000000,0.250000,0,0);}
.ma6_c01042{transform:matrix(0.316005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316005,0.000000,0.000000,0.250000,0,0);}
.m1d_c01042{transform:matrix(0.317591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317591,0.000000,0.000000,0.250000,0,0);}
.m21_c01042{transform:matrix(0.318010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318010,0.000000,0.000000,0.250000,0,0);}
.maa_c01042{transform:matrix(0.318583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318583,0.000000,0.000000,0.250000,0,0);}
.m23_c01042{transform:matrix(0.319330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319330,0.000000,0.000000,0.250000,0,0);}
.m81_c01042{transform:matrix(0.319592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319592,0.000000,0.000000,0.250000,0,0);}
.m61_c01042{transform:matrix(0.319660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319660,0.000000,0.000000,0.250000,0,0);}
.m64_c01042{transform:matrix(0.319958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319958,0.000000,0.000000,0.250000,0,0);}
.m49_c01042{transform:matrix(0.320152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320152,0.000000,0.000000,0.250000,0,0);}
.m51_c01042{transform:matrix(0.320394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320394,0.000000,0.000000,0.250000,0,0);}
.m9e_c01042{transform:matrix(0.320735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320735,0.000000,0.000000,0.250000,0,0);}
.m40_c01042{transform:matrix(0.322072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322072,0.000000,0.000000,0.250000,0,0);}
.m7_c01042{transform:matrix(0.323316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323316,0.000000,0.000000,0.250000,0,0);}
.m4a_c01042{transform:matrix(0.323627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323627,0.000000,0.000000,0.250000,0,0);}
.m5a_c01042{transform:matrix(0.323715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323715,0.000000,0.000000,0.250000,0,0);}
.m20_c01042{transform:matrix(0.324930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324930,0.000000,0.000000,0.250000,0,0);}
.m11_c01042{transform:matrix(0.325204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325204,0.000000,0.000000,0.250000,0,0);}
.m7b_c01042{transform:matrix(0.325968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325968,0.000000,0.000000,0.250000,0,0);}
.m71_c01042{transform:matrix(0.326120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326120,0.000000,0.000000,0.250000,0,0);}
.m46_c01042{transform:matrix(0.326280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326280,0.000000,0.000000,0.250000,0,0);}
.ma3_c01042{transform:matrix(0.327118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327118,0.000000,0.000000,0.250000,0,0);}
.m2_c01042{transform:matrix(0.327231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327231,0.000000,0.000000,0.250000,0,0);}
.m2d_c01042{transform:matrix(0.327435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327435,0.000000,0.000000,0.250000,0,0);}
.ma_c01042{transform:matrix(0.328145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328145,0.000000,0.000000,0.250000,0,0);}
.m27_c01042{transform:matrix(0.328437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328437,0.000000,0.000000,0.250000,0,0);}
.mb2_c01042{transform:matrix(0.328624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328624,0.000000,0.000000,0.250000,0,0);}
.ma5_c01042{transform:matrix(0.330047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330047,0.000000,0.000000,0.250000,0,0);}
.m54_c01042{transform:matrix(0.330175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330175,0.000000,0.000000,0.250000,0,0);}
.m57_c01042{transform:matrix(0.330741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330741,0.000000,0.000000,0.250000,0,0);}
.m13_c01042{transform:matrix(0.331080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331080,0.000000,0.000000,0.250000,0,0);}
.m97_c01042{transform:matrix(0.331142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331142,0.000000,0.000000,0.250000,0,0);}
.m19_c01042{transform:matrix(0.331191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331191,0.000000,0.000000,0.250000,0,0);}
.m36_c01042{transform:matrix(0.331569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331569,0.000000,0.000000,0.250000,0,0);}
.m6d_c01042{transform:matrix(0.332267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332267,0.000000,0.000000,0.250000,0,0);}
.m6b_c01042{transform:matrix(0.332340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332340,0.000000,0.000000,0.250000,0,0);}
.m45_c01042{transform:matrix(0.332662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332662,0.000000,0.000000,0.250000,0,0);}
.mb8_c01042{transform:matrix(0.332767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332767,0.000000,0.000000,0.250000,0,0);}
.m6e_c01042{transform:matrix(0.334246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334246,0.000000,0.000000,0.250000,0,0);}
.m1f_c01042{transform:matrix(0.335568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335568,0.000000,0.000000,0.250000,0,0);}
.m1b_c01042{transform:matrix(0.336427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336427,0.000000,0.000000,0.250000,0,0);}
.m3_c01042{transform:matrix(0.338112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338112,0.000000,0.000000,0.250000,0,0);}
.m29_c01042{transform:matrix(0.339197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339197,0.000000,0.000000,0.250000,0,0);}
.m35_c01042{transform:matrix(0.339267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339267,0.000000,0.000000,0.250000,0,0);}
.ma0_c01042{transform:matrix(0.341803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341803,0.000000,0.000000,0.250000,0,0);}
.m68_c01042{transform:matrix(0.342319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342319,0.000000,0.000000,0.250000,0,0);}
.m79_c01042{transform:matrix(0.342743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342743,0.000000,0.000000,0.250000,0,0);}
.m30_c01042{transform:matrix(0.342792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342792,0.000000,0.000000,0.250000,0,0);}
.m1e_c01042{transform:matrix(0.344112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344112,0.000000,0.000000,0.250000,0,0);}
.m55_c01042{transform:matrix(0.345702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345702,0.000000,0.000000,0.250000,0,0);}
.m82_c01042{transform:matrix(0.345729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345729,0.000000,0.000000,0.250000,0,0);}
.m1a_c01042{transform:matrix(0.346024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346024,0.000000,0.000000,0.250000,0,0);}
.m4b_c01042{transform:matrix(0.348683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348683,0.000000,0.000000,0.250000,0,0);}
.m16_c01042{transform:matrix(0.350255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350255,0.000000,0.000000,0.250000,0,0);}
.m98_c01042{transform:matrix(0.350504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350504,0.000000,0.000000,0.250000,0,0);}
.m9_c01042{transform:matrix(0.351731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351731,0.000000,0.000000,0.250000,0,0);}
.m95_c01042{transform:matrix(0.352159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352159,0.000000,0.000000,0.250000,0,0);}
.m7e_c01042{transform:matrix(0.353765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353765,0.000000,0.000000,0.250000,0,0);}
.m66_c01042{transform:matrix(0.353883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353883,0.000000,0.000000,0.250000,0,0);}
.m99_c01042{transform:matrix(0.355544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355544,0.000000,0.000000,0.250000,0,0);}
.m60_c01042{transform:matrix(0.357605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357605,0.000000,0.000000,0.250000,0,0);}
.m8e_c01042{transform:matrix(0.360068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360068,0.000000,0.000000,0.250000,0,0);}
.m39_c01042{transform:matrix(0.360939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360939,0.000000,0.000000,0.250000,0,0);}
.m4d_c01042{transform:matrix(0.364107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364107,0.000000,0.000000,0.250000,0,0);}
.m24_c01042{transform:matrix(0.364169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364169,0.000000,0.000000,0.250000,0,0);}
.m6a_c01042{transform:matrix(0.365153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365153,0.000000,0.000000,0.250000,0,0);}
.ma2_c01042{transform:matrix(0.365742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365742,0.000000,0.000000,0.250000,0,0);}
.m9c_c01042{transform:matrix(0.370609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370609,0.000000,0.000000,0.250000,0,0);}
.m9d_c01042{transform:matrix(0.374811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374811,0.000000,0.000000,0.250000,0,0);}
.m2f_c01042{transform:matrix(0.375328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375328,0.000000,0.000000,0.250000,0,0);}
.m15_c01042{transform:matrix(0.376459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376459,0.000000,0.000000,0.250000,0,0);}
.m7d_c01042{transform:matrix(0.379977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379977,0.000000,0.000000,0.250000,0,0);}
.mb0_c01042{transform:matrix(0.387624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387624,0.000000,0.000000,0.250000,0,0);}
.m48_c01042{transform:matrix(0.400712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400712,0.000000,0.000000,0.250000,0,0);}
.m5c_c01042{transform:matrix(0.407176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407176,0.000000,0.000000,0.250000,0,0);}
.ma1_c01042{transform:matrix(0.407418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407418,0.000000,0.000000,0.250000,0,0);}
.m2b_c01042{transform:matrix(0.413638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413638,0.000000,0.000000,0.250000,0,0);}
.m88_c01042{transform:matrix(0.420102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420102,0.000000,0.000000,0.250000,0,0);}
.m72_c01042{transform:matrix(0.430152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430152,0.000000,0.000000,0.250000,0,0);}
.v0_c01042{vertical-align:0.000000px;}
.lsb_c01042{letter-spacing:-3.437280px;}
.ls8_c01042{letter-spacing:-2.557177px;}
.lsd_c01042{letter-spacing:-1.275120px;}
.ls15_c01042{letter-spacing:-1.191967px;}
.lse_c01042{letter-spacing:-1.044789px;}
.ls17_c01042{letter-spacing:-0.283338px;}
.ls3_c01042{letter-spacing:0.000000px;}
.ls2_c01042{letter-spacing:0.180576px;}
.ls1_c01042{letter-spacing:0.699734px;}
.ls11_c01042{letter-spacing:0.710266px;}
.lsf_c01042{letter-spacing:1.643400px;}
.ls13_c01042{letter-spacing:1.831500px;}
.ls9_c01042{letter-spacing:1.841400px;}
.ls14_c01042{letter-spacing:2.220734px;}
.ls7_c01042{letter-spacing:2.498727px;}
.lsc_c01042{letter-spacing:2.973631px;}
.ls10_c01042{letter-spacing:3.514500px;}
.ls5_c01042{letter-spacing:3.653110px;}
.lsa_c01042{letter-spacing:3.682810px;}
.ls4_c01042{letter-spacing:4.395610px;}
.ls6_c01042{letter-spacing:57.024198px;}
.ls12_c01042{letter-spacing:58.449798px;}
.ls16_c01042{letter-spacing:65.577798px;}
.ls0_c01042{letter-spacing:156.039048px;}
.sc__c01042{text-shadow:none;}
.sc0_c01042{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01042{-webkit-text-stroke:0px transparent;}
.sc0_c01042{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01042{word-spacing:-3.726172px;}
.ws1_c01042{word-spacing:0.000000px;}
._0_c01042{margin-left:-17.827176px;}
._4_c01042{margin-left:-8.986675px;}
._3_c01042{margin-left:-3.402965px;}
._2_c01042{width:8.840453px;}
._1_c01042{width:79.700584px;}
.fc0_c01042{color:transparent;}
.fs0_c01042{font-size:22.176000px;}
.fs1a_c01042{font-size:26.730000px;}
.fs10_c01042{font-size:27.720000px;}
.fsf_c01042{font-size:32.868000px;}
.fs1b_c01042{font-size:33.264000px;}
.fs13_c01042{font-size:34.056198px;}
.fse_c01042{font-size:36.432000px;}
.fs16_c01042{font-size:36.630000px;}
.fsb_c01042{font-size:36.828000px;}
.fsa_c01042{font-size:39.006198px;}
.fs14_c01042{font-size:41.778000px;}
.fs1_c01042{font-size:56.628000px;}
.fs4_c01042{font-size:57.024198px;}
.fs15_c01042{font-size:58.449798px;}
.fs12_c01042{font-size:60.192000px;}
.fs17_c01042{font-size:60.984000px;}
.fs7_c01042{font-size:64.152198px;}
.fs19_c01042{font-size:65.577798px;}
.fs8_c01042{font-size:66.330000px;}
.fs6_c01042{font-size:69.696198px;}
.fs11_c01042{font-size:70.290000px;}
.fs3_c01042{font-size:73.062198px;}
.fsc_c01042{font-size:73.656198px;}
.fs9_c01042{font-size:76.032198px;}
.fs18_c01042{font-size:79.596198px;}
.fs2_c01042{font-size:87.912198px;}
.fsd_c01042{font-size:98.208000px;}
.fs5_c01042{font-size:104.544000px;}
.y0_c01042{bottom:0.000000px;}
.y1_c01042{bottom:76.500000px;}
.y27_c01042{bottom:139.615785px;}
.y26_c01042{bottom:154.233135px;}
.y25_c01042{bottom:160.291935px;}
.y24_c01042{bottom:169.201935px;}
.y22_c01042{bottom:171.696735px;}
.y23_c01042{bottom:177.037785px;}
.y21_c01042{bottom:185.947785px;}
.y1f_c01042{bottom:203.767785px;}
.y20_c01042{bottom:209.470185px;}
.y1e_c01042{bottom:235.487385px;}
.y1d_c01042{bottom:267.568335px;}
.y1c_c01042{bottom:299.287935px;}
.y1b_c01042{bottom:331.002585px;}
.y1a_c01042{bottom:400.856985px;}
.y19_c01042{bottom:404.420985px;}
.y18_c01042{bottom:473.923935px;}
.y16_c01042{bottom:541.996335px;}
.y17_c01042{bottom:547.698735px;}
.y15_c01042{bottom:573.003135px;}
.y14_c01042{bottom:605.791935px;}
.y13_c01042{bottom:637.155135px;}
.y12_c01042{bottom:669.587535px;}
.y11_c01042{bottom:700.950735px;}
.y10_c01042{bottom:729.457785px;}
.yf_c01042{bottom:733.383135px;}
.ye_c01042{bottom:764.746335px;}
.yd_c01042{bottom:789.332985px;}
.yb_c01042{bottom:796.109535px;}
.yc_c01042{bottom:796.460985px;}
.ya_c01042{bottom:827.467785px;}
.y9_c01042{bottom:858.479535px;}
.y8_c01042{bottom:890.194185px;}
.y7_c01042{bottom:912.647385px;}
.y5_c01042{bottom:921.918735px;}
.y6_c01042{bottom:922.275135px;}
.y2_c01042{bottom:924.769935px;}
.y4_c01042{bottom:1059.840585px;}
.y3_c01042{bottom:1103.321385px;}
.h2_c01042{height:23.128875px;}
.h1b_c01042{height:26.234033px;}
.h11_c01042{height:28.911094px;}
.h19_c01042{height:33.424296px;}
.h10_c01042{height:34.280297px;}
.h1c_c01042{height:34.693313px;}
.h13_c01042{height:35.519550px;}
.h6_c01042{height:37.978116px;}
.hf_c01042{height:37.997438px;}
.h16_c01042{height:38.203945px;}
.hc_c01042{height:38.410453px;}
.h15_c01042{height:38.927565px;}
.hb_c01042{height:40.682246px;}
.h14_c01042{height:41.002822px;}
.h1a_c01042{height:43.674813px;}
.h3_c01042{height:59.061234px;}
.h17_c01042{height:63.604406px;}
.h8_c01042{height:66.908738px;}
.h12_c01042{height:68.985791px;}
.h9_c01042{height:69.180117px;}
.h5_c01042{height:71.706552px;}
.hd_c01042{height:72.289530px;}
.h18_c01042{height:78.119315px;}
.ha_c01042{height:79.299207px;}
.h4_c01042{height:86.281015px;}
.he_c01042{height:96.385781px;}
.h7_c01042{height:109.036125px;}
.h1_c01042{height:1110.000000px;}
.h0_c01042{height:1263.000000px;}
.w1_c01042{width:775.500000px;}
.w0_c01042{width:892.500000px;}
.x0_c01042{left:0.000000px;}
.x2_c01042{left:2.753835px;}
.x1_c01042{left:58.500000px;}
.x1f_c01042{left:72.826035px;}
.x18_c01042{left:73.840785px;}
.xd_c01042{left:76.147485px;}
.x46_c01042{left:105.609885px;}
.x68_c01042{left:106.713735px;}
.xe_c01042{left:116.489985px;}
.x69_c01042{left:125.904885px;}
.x5_c01042{left:127.320585px;}
.x28_c01042{left:139.294635px;}
.xf_c01042{left:141.343935px;}
.x20_c01042{left:150.169785px;}
.x10_c01042{left:151.585485px;}
.x50_c01042{left:156.693885px;}
.x19_c01042{left:161.361735px;}
.x51_c01042{left:162.391335px;}
.x5b_c01042{left:172.558635px;}
.x47_c01042{left:183.329835px;}
.x11_c01042{left:184.408935px;}
.x3c_c01042{left:185.661285px;}
.x53_c01042{left:193.056585px;}
.x58_c01042{left:194.605935px;}
.x6_c01042{left:196.001835px;}
.x29_c01042{left:204.555435px;}
.x2e_c01042{left:205.654335px;}
.x44_c01042{left:215.841435px;}
.x21_c01042{left:228.231285px;}
.x5d_c01042{left:238.933185px;}
.x3_c01042{left:240.561735px;}
.x2a_c01042{left:250.253835px;}
.x61_c01042{left:252.238785px;}
.x1a_c01042{left:261.609135px;}
.x3d_c01042{left:273.053535px;}
.x5e_c01042{left:274.761285px;}
.x33_c01042{left:275.790885px;}
.x39_c01042{left:283.834635px;}
.x6a_c01042{left:292.917885px;}
.x2f_c01042{left:295.214685px;}
.x3e_c01042{left:307.005585px;}
.x7_c01042{left:317.648085px;}
.x34_c01042{left:327.161985px;}
.x3a_c01042{left:329.047935px;}
.x3f_c01042{left:331.037835px;}
.x40_c01042{left:339.794385px;}
.x48_c01042{left:341.922885px;}
.x22_c01042{left:348.847935px;}
.x8_c01042{left:349.907235px;}
.x12_c01042{left:361.524885px;}
.x1b_c01042{left:372.810885px;}
.x41_c01042{left:375.172035px;}
.x52_c01042{left:382.374285px;}
.x49_c01042{left:384.532485px;}
.x23_c01042{left:394.650285px;}
.x56_c01042{left:395.704635px;}
.x42_c01042{left:406.802535px;}
.x30_c01042{left:417.415335px;}
.x13_c01042{left:428.186535px;}
.x5f_c01042{left:430.235835px;}
.x62_c01042{left:438.967635px;}
.x2b_c01042{left:449.139885px;}
.x9_c01042{left:450.293235px;}
.x4d_c01042{left:452.703885px;}
.x6b_c01042{left:460.425885px;}
.x4a_c01042{left:461.940585px;}
.x1c_c01042{left:472.350435px;}
.x4e_c01042{left:474.107685px;}
.x2c_c01042{left:483.369135px;}
.x43_c01042{left:494.471985px;}
.xa_c01042{left:505.159035px;}
.x57_c01042{left:515.430285px;}
.x31_c01042{left:516.900435px;}
.x14_c01042{left:527.127135px;}
.x4f_c01042{left:529.295235px;}
.x35_c01042{left:537.358785px;}
.x6c_c01042{left:539.036835px;}
.x24_c01042{left:548.050785px;}
.x4b_c01042{left:550.030785px;}
.x36_c01042{left:560.702985px;}
.x25_c01042{left:571.231635px;}
.x59_c01042{left:574.147185px;}
.x15_c01042{left:581.136585px;}
.xb_c01042{left:582.958185px;}
.x63_c01042{left:593.481885px;}
.x45_c01042{left:594.486735px;}
.x1d_c01042{left:604.550085px;}
.x54_c01042{left:605.639085px;}
.x3b_c01042{left:615.608385px;}
.x32_c01042{left:625.107435px;}
.x16_c01042{left:626.325135px;}
.x37_c01042{left:628.983285px;}
.x64_c01042{left:636.517185px;}
.x26_c01042{left:637.650735px;}
.xc_c01042{left:647.768535px;}
.x2d_c01042{left:649.505985px;}
.x1e_c01042{left:659.811885px;}
.x4_c01042{left:670.820685px;}
.x4c_c01042{left:681.720585px;}
.x65_c01042{left:682.854135px;}
.x55_c01042{left:693.491685px;}
.x60_c01042{left:702.565035px;}
.x27_c01042{left:704.035185px;}
.x5a_c01042{left:706.124085px;}
.x17_c01042{left:715.078635px;}
.x66_c01042{left:719.558385px;}
.x38_c01042{left:725.211285px;}
.x5c_c01042{left:726.389385px;}
.x67_c01042{left:738.096135px;}
.x6d_c01042{left:749.278185px;}
@media print{
.v0_c01042{vertical-align:0.000000pt;}
.lsb_c01042{letter-spacing:-3.055360pt;}
.ls8_c01042{letter-spacing:-2.273046pt;}
.lsd_c01042{letter-spacing:-1.133440pt;}
.ls15_c01042{letter-spacing:-1.059526pt;}
.lse_c01042{letter-spacing:-0.928702pt;}
.ls17_c01042{letter-spacing:-0.251856pt;}
.ls3_c01042{letter-spacing:0.000000pt;}
.ls2_c01042{letter-spacing:0.160512pt;}
.ls1_c01042{letter-spacing:0.621986pt;}
.ls11_c01042{letter-spacing:0.631347pt;}
.lsf_c01042{letter-spacing:1.460800pt;}
.ls13_c01042{letter-spacing:1.628000pt;}
.ls9_c01042{letter-spacing:1.636800pt;}
.ls14_c01042{letter-spacing:1.973986pt;}
.ls7_c01042{letter-spacing:2.221091pt;}
.lsc_c01042{letter-spacing:2.643228pt;}
.ls10_c01042{letter-spacing:3.124000pt;}
.ls5_c01042{letter-spacing:3.247209pt;}
.lsa_c01042{letter-spacing:3.273609pt;}
.ls4_c01042{letter-spacing:3.907209pt;}
.ls6_c01042{letter-spacing:50.688176pt;}
.ls12_c01042{letter-spacing:51.955376pt;}
.ls16_c01042{letter-spacing:58.291376pt;}
.ls0_c01042{letter-spacing:138.701376pt;}
.ws0_c01042{word-spacing:-3.312153pt;}
.ws1_c01042{word-spacing:0.000000pt;}
._0_c01042{margin-left:-15.846379pt;}
._4_c01042{margin-left:-7.988156pt;}
._3_c01042{margin-left:-3.024858pt;}
._2_c01042{width:7.858180pt;}
._1_c01042{width:70.844964pt;}
.fs0_c01042{font-size:19.712000pt;}
.fs1a_c01042{font-size:23.760000pt;}
.fs10_c01042{font-size:24.640000pt;}
.fsf_c01042{font-size:29.216000pt;}
.fs1b_c01042{font-size:29.568000pt;}
.fs13_c01042{font-size:30.272176pt;}
.fse_c01042{font-size:32.384000pt;}
.fs16_c01042{font-size:32.560000pt;}
.fsb_c01042{font-size:32.736000pt;}
.fsa_c01042{font-size:34.672176pt;}
.fs14_c01042{font-size:37.136000pt;}
.fs1_c01042{font-size:50.336000pt;}
.fs4_c01042{font-size:50.688176pt;}
.fs15_c01042{font-size:51.955376pt;}
.fs12_c01042{font-size:53.504000pt;}
.fs17_c01042{font-size:54.208000pt;}
.fs7_c01042{font-size:57.024176pt;}
.fs19_c01042{font-size:58.291376pt;}
.fs8_c01042{font-size:58.960000pt;}
.fs6_c01042{font-size:61.952176pt;}
.fs11_c01042{font-size:62.480000pt;}
.fs3_c01042{font-size:64.944176pt;}
.fsc_c01042{font-size:65.472176pt;}
.fs9_c01042{font-size:67.584176pt;}
.fs18_c01042{font-size:70.752176pt;}
.fs2_c01042{font-size:78.144176pt;}
.fsd_c01042{font-size:87.296000pt;}
.fs5_c01042{font-size:92.928000pt;}
.y0_c01042{bottom:0.000000pt;}
.y1_c01042{bottom:68.000000pt;}
.y27_c01042{bottom:124.102920pt;}
.y26_c01042{bottom:137.096120pt;}
.y25_c01042{bottom:142.481720pt;}
.y24_c01042{bottom:150.401720pt;}
.y22_c01042{bottom:152.619320pt;}
.y23_c01042{bottom:157.366920pt;}
.y21_c01042{bottom:165.286920pt;}
.y1f_c01042{bottom:181.126920pt;}
.y20_c01042{bottom:186.195720pt;}
.y1e_c01042{bottom:209.322120pt;}
.y1d_c01042{bottom:237.838520pt;}
.y1c_c01042{bottom:266.033720pt;}
.y1b_c01042{bottom:294.224520pt;}
.y1a_c01042{bottom:356.317320pt;}
.y19_c01042{bottom:359.485320pt;}
.y18_c01042{bottom:421.265720pt;}
.y16_c01042{bottom:481.774520pt;}
.y17_c01042{bottom:486.843320pt;}
.y15_c01042{bottom:509.336120pt;}
.y14_c01042{bottom:538.481720pt;}
.y13_c01042{bottom:566.360120pt;}
.y12_c01042{bottom:595.188920pt;}
.y11_c01042{bottom:623.067320pt;}
.y10_c01042{bottom:648.406920pt;}
.yf_c01042{bottom:651.896120pt;}
.ye_c01042{bottom:679.774520pt;}
.yd_c01042{bottom:701.629320pt;}
.yb_c01042{bottom:707.652920pt;}
.yc_c01042{bottom:707.965320pt;}
.ya_c01042{bottom:735.526920pt;}
.y9_c01042{bottom:763.092920pt;}
.y8_c01042{bottom:791.283720pt;}
.y7_c01042{bottom:811.242120pt;}
.y5_c01042{bottom:819.483320pt;}
.y6_c01042{bottom:819.800120pt;}
.y2_c01042{bottom:822.017720pt;}
.y4_c01042{bottom:942.080520pt;}
.y3_c01042{bottom:980.730120pt;}
.h2_c01042{height:20.559000pt;}
.h1b_c01042{height:23.319141pt;}
.h11_c01042{height:25.698750pt;}
.h19_c01042{height:29.710485pt;}
.h10_c01042{height:30.471375pt;}
.h1c_c01042{height:30.838500pt;}
.h13_c01042{height:31.572934pt;}
.h6_c01042{height:33.758325pt;}
.hf_c01042{height:33.775500pt;}
.h16_c01042{height:33.959063pt;}
.hc_c01042{height:34.142625pt;}
.h15_c01042{height:34.602280pt;}
.hb_c01042{height:36.161996pt;}
.h14_c01042{height:36.446953pt;}
.h1a_c01042{height:38.822056pt;}
.h3_c01042{height:52.498875pt;}
.h17_c01042{height:56.537250pt;}
.h8_c01042{height:59.474434pt;}
.h12_c01042{height:61.320703pt;}
.h9_c01042{height:61.493438pt;}
.h5_c01042{height:63.739157pt;}
.hd_c01042{height:64.257360pt;}
.h18_c01042{height:69.439391pt;}
.ha_c01042{height:70.488184pt;}
.h4_c01042{height:76.694235pt;}
.he_c01042{height:85.676250pt;}
.h7_c01042{height:96.921000pt;}
.h1_c01042{height:986.666667pt;}
.h0_c01042{height:1122.666667pt;}
.w1_c01042{width:689.333333pt;}
.w0_c01042{width:793.333333pt;}
.x0_c01042{left:0.000000pt;}
.x2_c01042{left:2.447853pt;}
.x1_c01042{left:52.000000pt;}
.x1f_c01042{left:64.734253pt;}
.x18_c01042{left:65.636253pt;}
.xd_c01042{left:67.686653pt;}
.x46_c01042{left:93.875453pt;}
.x68_c01042{left:94.856653pt;}
.xe_c01042{left:103.546653pt;}
.x69_c01042{left:111.915453pt;}
.x5_c01042{left:113.173853pt;}
.x28_c01042{left:123.817453pt;}
.xf_c01042{left:125.639053pt;}
.x20_c01042{left:133.484253pt;}
.x10_c01042{left:134.742653pt;}
.x50_c01042{left:139.283453pt;}
.x19_c01042{left:143.432653pt;}
.x51_c01042{left:144.347853pt;}
.x5b_c01042{left:153.385453pt;}
.x47_c01042{left:162.959853pt;}
.x11_c01042{left:163.919053pt;}
.x3c_c01042{left:165.032253pt;}
.x53_c01042{left:171.605853pt;}
.x58_c01042{left:172.983053pt;}
.x6_c01042{left:174.223853pt;}
.x29_c01042{left:181.827053pt;}
.x2e_c01042{left:182.803853pt;}
.x44_c01042{left:191.859053pt;}
.x21_c01042{left:202.872253pt;}
.x5d_c01042{left:212.385053pt;}
.x3_c01042{left:213.832653pt;}
.x2a_c01042{left:222.447853pt;}
.x61_c01042{left:224.212253pt;}
.x1a_c01042{left:232.541453pt;}
.x3d_c01042{left:242.714253pt;}
.x5e_c01042{left:244.232253pt;}
.x33_c01042{left:245.147453pt;}
.x39_c01042{left:252.297453pt;}
.x6a_c01042{left:260.371453pt;}
.x2f_c01042{left:262.413053pt;}
.x3e_c01042{left:272.893853pt;}
.x7_c01042{left:282.353853pt;}
.x34_c01042{left:290.810653pt;}
.x3a_c01042{left:292.487053pt;}
.x3f_c01042{left:294.255853pt;}
.x40_c01042{left:302.039453pt;}
.x48_c01042{left:303.931453pt;}
.x22_c01042{left:310.087053pt;}
.x8_c01042{left:311.028653pt;}
.x12_c01042{left:321.355453pt;}
.x1b_c01042{left:331.387453pt;}
.x41_c01042{left:333.486253pt;}
.x52_c01042{left:339.888253pt;}
.x49_c01042{left:341.806653pt;}
.x23_c01042{left:350.800253pt;}
.x56_c01042{left:351.737453pt;}
.x42_c01042{left:361.602253pt;}
.x30_c01042{left:371.035853pt;}
.x13_c01042{left:380.610253pt;}
.x5f_c01042{left:382.431853pt;}
.x62_c01042{left:390.193453pt;}
.x2b_c01042{left:399.235453pt;}
.x9_c01042{left:400.260653pt;}
.x4d_c01042{left:402.403453pt;}
.x6b_c01042{left:409.267453pt;}
.x4a_c01042{left:410.613853pt;}
.x1c_c01042{left:419.867053pt;}
.x4e_c01042{left:421.429053pt;}
.x2c_c01042{left:429.661453pt;}
.x43_c01042{left:439.530653pt;}
.xa_c01042{left:449.030253pt;}
.x57_c01042{left:458.160253pt;}
.x31_c01042{left:459.467053pt;}
.x14_c01042{left:468.557453pt;}
.x4f_c01042{left:470.484653pt;}
.x35_c01042{left:477.652253pt;}
.x6c_c01042{left:479.143853pt;}
.x24_c01042{left:487.156253pt;}
.x4b_c01042{left:488.916253pt;}
.x36_c01042{left:498.402653pt;}
.x25_c01042{left:507.761453pt;}
.x59_c01042{left:510.353053pt;}
.x15_c01042{left:516.565853pt;}
.xb_c01042{left:518.185053pt;}
.x63_c01042{left:527.539453pt;}
.x45_c01042{left:528.432653pt;}
.x1d_c01042{left:537.377853pt;}
.x54_c01042{left:538.345853pt;}
.x3b_c01042{left:547.207453pt;}
.x32_c01042{left:555.651053pt;}
.x16_c01042{left:556.733453pt;}
.x37_c01042{left:559.096253pt;}
.x64_c01042{left:565.793053pt;}
.x26_c01042{left:566.800653pt;}
.xc_c01042{left:575.794253pt;}
.x2d_c01042{left:577.338653pt;}
.x1e_c01042{left:586.499453pt;}
.x4_c01042{left:596.285053pt;}
.x4c_c01042{left:605.973853pt;}
.x65_c01042{left:606.981453pt;}
.x55_c01042{left:616.437053pt;}
.x60_c01042{left:624.502253pt;}
.x27_c01042{left:625.809053pt;}
.x5a_c01042{left:627.665853pt;}
.x17_c01042{left:635.625453pt;}
.x66_c01042{left:639.607453pt;}
.x38_c01042{left:644.632253pt;}
.x5c_c01042{left:645.679453pt;}
.x67_c01042{left:656.085453pt;}
.x6d_c01042{left:666.025053pt;}
}





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

.ir_c01043:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01043{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01043;src:url('chunks/assets/font_f9651b05536c00b72791a153.woff2')format("woff");}.ff1_c01043{font-family:ff1_c01043;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01043;src:url('chunks/assets/font_1d6e5487a55ac03157fb6189.woff2')format("woff");}.ff2_c01043{font-family:ff2_c01043;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01043;src:url('chunks/assets/font_6cb6d759c99e9bd10c373b6e.woff2')format("woff");}.ff3_c01043{font-family:ff3_c01043;line-height:0.666000;font-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_c01043{transform:matrix(0.140625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140625,0.000000,0.000000,0.250000,0,0);}
.m41_c01043{transform:matrix(0.169733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169733,0.000000,0.000000,0.250000,0,0);}
.m40_c01043{transform:matrix(0.178774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178774,0.000000,0.000000,0.250000,0,0);}
.m1c_c01043{transform:matrix(0.194257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194257,0.000000,0.000000,0.250000,0,0);}
.m1_c01043{transform:matrix(0.194596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194596,0.000000,0.000000,0.250000,0,0);}
.m95_c01043{transform:matrix(0.216704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216704,0.000000,0.000000,0.250000,0,0);}
.m0_c01043{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m25_c01043{transform:matrix(0.250453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250453,0.000000,0.000000,0.250000,0,0);}
.m44_c01043{transform:matrix(0.253417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253417,0.000000,0.000000,0.250000,0,0);}
.m51_c01043{transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);}
.m61_c01043{transform:matrix(0.256005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256005,0.000000,0.000000,0.250000,0,0);}
.m37_c01043{transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);}
.m63_c01043{transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);}
.m7b_c01043{transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);}
.mc_c01043{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m21_c01043{transform:matrix(0.258826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258826,0.000000,0.000000,0.250000,0,0);}
.m86_c01043{transform:matrix(0.259621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259621,0.000000,0.000000,0.250000,0,0);}
.m57_c01043{transform:matrix(0.259708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259708,0.000000,0.000000,0.250000,0,0);}
.m66_c01043{transform:matrix(0.259754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259754,0.000000,0.000000,0.250000,0,0);}
.m22_c01043{transform:matrix(0.259889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259889,0.000000,0.000000,0.250000,0,0);}
.m7_c01043{transform:matrix(0.260559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260559,0.000000,0.000000,0.250000,0,0);}
.m11_c01043{transform:matrix(0.260947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260947,0.000000,0.000000,0.250000,0,0);}
.m27_c01043{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m80_c01043{transform:matrix(0.261194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261194,0.000000,0.000000,0.250000,0,0);}
.m4_c01043{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m16_c01043{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m2e_c01043{transform:matrix(0.266190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266190,0.000000,0.000000,0.250000,0,0);}
.m1d_c01043{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m4b_c01043{transform:matrix(0.266295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266295,0.000000,0.000000,0.250000,0,0);}
.m3b_c01043{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.m73_c01043{transform:matrix(0.267453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267453,0.000000,0.000000,0.250000,0,0);}
.ma_c01043{transform:matrix(0.268552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268552,0.000000,0.000000,0.250000,0,0);}
.m24_c01043{transform:matrix(0.270439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270439,0.000000,0.000000,0.250000,0,0);}
.m19_c01043{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m13_c01043{transform:matrix(0.272251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272251,0.000000,0.000000,0.250000,0,0);}
.m36_c01043{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m53_c01043{transform:matrix(0.273036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273036,0.000000,0.000000,0.250000,0,0);}
.m5d_c01043{transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);}
.m70_c01043{transform:matrix(0.273782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273782,0.000000,0.000000,0.250000,0,0);}
.m93_c01043{transform:matrix(0.274018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274018,0.000000,0.000000,0.250000,0,0);}
.m8a_c01043{transform:matrix(0.274708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274708,0.000000,0.000000,0.250000,0,0);}
.m7d_c01043{transform:matrix(0.275353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275353,0.000000,0.000000,0.250000,0,0);}
.m6c_c01043{transform:matrix(0.277131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277131,0.000000,0.000000,0.250000,0,0);}
.m54_c01043{transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277162,0.000000,0.000000,0.250000,0,0);}
.m34_c01043{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m3c_c01043{transform:matrix(0.278331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278331,0.000000,0.000000,0.250000,0,0);}
.m28_c01043{transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);}
.m7e_c01043{transform:matrix(0.279687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279687,0.000000,0.000000,0.250000,0,0);}
.m45_c01043{transform:matrix(0.280247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280247,0.000000,0.000000,0.250000,0,0);}
.md_c01043{transform:matrix(0.280609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280609,0.000000,0.000000,0.250000,0,0);}
.m82_c01043{transform:matrix(0.280644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280644,0.000000,0.000000,0.250000,0,0);}
.m6_c01043{transform:matrix(0.280900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280900,0.000000,0.000000,0.250000,0,0);}
.m35_c01043{transform:matrix(0.280910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280910,0.000000,0.000000,0.250000,0,0);}
.m1b_c01043{transform:matrix(0.281098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281098,0.000000,0.000000,0.250000,0,0);}
.m48_c01043{transform:matrix(0.281246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281246,0.000000,0.000000,0.250000,0,0);}
.m4d_c01043{transform:matrix(0.281897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281897,0.000000,0.000000,0.250000,0,0);}
.m81_c01043{transform:matrix(0.282165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282165,0.000000,0.000000,0.250000,0,0);}
.m2_c01043{transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282912,0.000000,0.000000,0.250000,0,0);}
.m43_c01043{transform:matrix(0.283020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283020,0.000000,0.000000,0.250000,0,0);}
.m91_c01043{transform:matrix(0.283296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283296,0.000000,0.000000,0.250000,0,0);}
.m42_c01043{transform:matrix(0.283504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283504,0.000000,0.000000,0.250000,0,0);}
.m77_c01043{transform:matrix(0.283983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283983,0.000000,0.000000,0.250000,0,0);}
.m7c_c01043{transform:matrix(0.284084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284084,0.000000,0.000000,0.250000,0,0);}
.m58_c01043{transform:matrix(0.284092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284092,0.000000,0.000000,0.250000,0,0);}
.m9_c01043{transform:matrix(0.284290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284290,0.000000,0.000000,0.250000,0,0);}
.m5_c01043{transform:matrix(0.284413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284413,0.000000,0.000000,0.250000,0,0);}
.m9b_c01043{transform:matrix(0.284537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284537,0.000000,0.000000,0.250000,0,0);}
.m1a_c01043{transform:matrix(0.284884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284884,0.000000,0.000000,0.250000,0,0);}
.m14_c01043{transform:matrix(0.285556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285556,0.000000,0.000000,0.250000,0,0);}
.m99_c01043{transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);}
.ma0_c01043{transform:matrix(0.286035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286035,0.000000,0.000000,0.250000,0,0);}
.m10_c01043{transform:matrix(0.286496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286496,0.000000,0.000000,0.250000,0,0);}
.m88_c01043{transform:matrix(0.287586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287586,0.000000,0.000000,0.250000,0,0);}
.m38_c01043{transform:matrix(0.287775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287775,0.000000,0.000000,0.250000,0,0);}
.m84_c01043{transform:matrix(0.287780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287780,0.000000,0.000000,0.250000,0,0);}
.m17_c01043{transform:matrix(0.287963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287963,0.000000,0.000000,0.250000,0,0);}
.m8f_c01043{transform:matrix(0.288272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288272,0.000000,0.000000,0.250000,0,0);}
.m31_c01043{transform:matrix(0.288286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288286,0.000000,0.000000,0.250000,0,0);}
.m85_c01043{transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288521,0.000000,0.000000,0.250000,0,0);}
.m9d_c01043{transform:matrix(0.288863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288863,0.000000,0.000000,0.250000,0,0);}
.m9c_c01043{transform:matrix(0.289758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289758,0.000000,0.000000,0.250000,0,0);}
.m65_c01043{transform:matrix(0.290237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290237,0.000000,0.000000,0.250000,0,0);}
.m5b_c01043{transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);}
.m8b_c01043{transform:matrix(0.291008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291008,0.000000,0.000000,0.250000,0,0);}
.m29_c01043{transform:matrix(0.292801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292801,0.000000,0.000000,0.250000,0,0);}
.m69_c01043{transform:matrix(0.293087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293087,0.000000,0.000000,0.250000,0,0);}
.m49_c01043{transform:matrix(0.293090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293090,0.000000,0.000000,0.250000,0,0);}
.m5a_c01043{transform:matrix(0.294443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294443,0.000000,0.000000,0.250000,0,0);}
.m2d_c01043{transform:matrix(0.294515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294515,0.000000,0.000000,0.250000,0,0);}
.m92_c01043{transform:matrix(0.294710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294710,0.000000,0.000000,0.250000,0,0);}
.m8d_c01043{transform:matrix(0.295464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295464,0.000000,0.000000,0.250000,0,0);}
.m9e_c01043{transform:matrix(0.296089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296089,0.000000,0.000000,0.250000,0,0);}
.m2c_c01043{transform:matrix(0.296127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296127,0.000000,0.000000,0.250000,0,0);}
.m89_c01043{transform:matrix(0.296683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296683,0.000000,0.000000,0.250000,0,0);}
.m30_c01043{transform:matrix(0.297381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297381,0.000000,0.000000,0.250000,0,0);}
.m18_c01043{transform:matrix(0.298934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298934,0.000000,0.000000,0.250000,0,0);}
.mb_c01043{transform:matrix(0.299263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299263,0.000000,0.000000,0.250000,0,0);}
.m87_c01043{transform:matrix(0.299280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299280,0.000000,0.000000,0.250000,0,0);}
.m55_c01043{transform:matrix(0.299360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299360,0.000000,0.000000,0.250000,0,0);}
.m56_c01043{transform:matrix(0.299719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299719,0.000000,0.000000,0.250000,0,0);}
.m72_c01043{transform:matrix(0.300484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300484,0.000000,0.000000,0.250000,0,0);}
.m68_c01043{transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300588,0.000000,0.000000,0.250000,0,0);}
.m3e_c01043{transform:matrix(0.300915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300915,0.000000,0.000000,0.250000,0,0);}
.m90_c01043{transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);}
.m5e_c01043{transform:matrix(0.302568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302568,0.000000,0.000000,0.250000,0,0);}
.m2b_c01043{transform:matrix(0.302911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302911,0.000000,0.000000,0.250000,0,0);}
.m4c_c01043{transform:matrix(0.303152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303152,0.000000,0.000000,0.250000,0,0);}
.m3d_c01043{transform:matrix(0.303371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303371,0.000000,0.000000,0.250000,0,0);}
.m7a_c01043{transform:matrix(0.303743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303743,0.000000,0.000000,0.250000,0,0);}
.m32_c01043{transform:matrix(0.305475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305475,0.000000,0.000000,0.250000,0,0);}
.m1e_c01043{transform:matrix(0.307539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307539,0.000000,0.000000,0.250000,0,0);}
.m4e_c01043{transform:matrix(0.307943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307943,0.000000,0.000000,0.250000,0,0);}
.m50_c01043{transform:matrix(0.308189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308189,0.000000,0.000000,0.250000,0,0);}
.m6f_c01043{transform:matrix(0.308326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308326,0.000000,0.000000,0.250000,0,0);}
.m23_c01043{transform:matrix(0.309612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309612,0.000000,0.000000,0.250000,0,0);}
.m39_c01043{transform:matrix(0.311646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311646,0.000000,0.000000,0.250000,0,0);}
.m78_c01043{transform:matrix(0.311955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311955,0.000000,0.000000,0.250000,0,0);}
.m59_c01043{transform:matrix(0.312127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312127,0.000000,0.000000,0.250000,0,0);}
.m6a_c01043{transform:matrix(0.312689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312689,0.000000,0.000000,0.250000,0,0);}
.m5f_c01043{transform:matrix(0.313013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313013,0.000000,0.000000,0.250000,0,0);}
.m33_c01043{transform:matrix(0.314998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314998,0.000000,0.000000,0.250000,0,0);}
.m97_c01043{transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);}
.m3a_c01043{transform:matrix(0.316652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316652,0.000000,0.000000,0.250000,0,0);}
.m8e_c01043{transform:matrix(0.317085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317085,0.000000,0.000000,0.250000,0,0);}
.m20_c01043{transform:matrix(0.317158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317158,0.000000,0.000000,0.250000,0,0);}
.m6b_c01043{transform:matrix(0.318157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318157,0.000000,0.000000,0.250000,0,0);}
.m4f_c01043{transform:matrix(0.318276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318276,0.000000,0.000000,0.250000,0,0);}
.m9a_c01043{transform:matrix(0.318327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318327,0.000000,0.000000,0.250000,0,0);}
.m5c_c01043{transform:matrix(0.319088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319088,0.000000,0.000000,0.250000,0,0);}
.m67_c01043{transform:matrix(0.319096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319096,0.000000,0.000000,0.250000,0,0);}
.m75_c01043{transform:matrix(0.319808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319808,0.000000,0.000000,0.250000,0,0);}
.m94_c01043{transform:matrix(0.320437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320437,0.000000,0.000000,0.250000,0,0);}
.m2a_c01043{transform:matrix(0.321083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321083,0.000000,0.000000,0.250000,0,0);}
.m79_c01043{transform:matrix(0.322727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322727,0.000000,0.000000,0.250000,0,0);}
.m15_c01043{transform:matrix(0.324775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324775,0.000000,0.000000,0.250000,0,0);}
.m64_c01043{transform:matrix(0.324872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324872,0.000000,0.000000,0.250000,0,0);}
.m3_c01043{transform:matrix(0.325279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325279,0.000000,0.000000,0.250000,0,0);}
.m76_c01043{transform:matrix(0.325735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325735,0.000000,0.000000,0.250000,0,0);}
.m12_c01043{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.m60_c01043{transform:matrix(0.327682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327682,0.000000,0.000000,0.250000,0,0);}
.m71_c01043{transform:matrix(0.327911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327911,0.000000,0.000000,0.250000,0,0);}
.m26_c01043{transform:matrix(0.328023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328023,0.000000,0.000000,0.250000,0,0);}
.mf_c01043{transform:matrix(0.329388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329388,0.000000,0.000000,0.250000,0,0);}
.m47_c01043{transform:matrix(0.329931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329931,0.000000,0.000000,0.250000,0,0);}
.m7f_c01043{transform:matrix(0.329979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329979,0.000000,0.000000,0.250000,0,0);}
.m6e_c01043{transform:matrix(0.330374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330374,0.000000,0.000000,0.250000,0,0);}
.m4a_c01043{transform:matrix(0.330831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330831,0.000000,0.000000,0.250000,0,0);}
.me_c01043{transform:matrix(0.332348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332348,0.000000,0.000000,0.250000,0,0);}
.m2f_c01043{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m46_c01043{transform:matrix(0.334979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334979,0.000000,0.000000,0.250000,0,0);}
.m96_c01043{transform:matrix(0.338886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338886,0.000000,0.000000,0.250000,0,0);}
.m62_c01043{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m6d_c01043{transform:matrix(0.342244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342244,0.000000,0.000000,0.250000,0,0);}
.m83_c01043{transform:matrix(0.342694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342694,0.000000,0.000000,0.250000,0,0);}
.m9f_c01043{transform:matrix(0.352357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352357,0.000000,0.000000,0.250000,0,0);}
.m8_c01043{transform:matrix(0.353778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353778,0.000000,0.000000,0.250000,0,0);}
.m74_c01043{transform:matrix(0.355213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355213,0.000000,0.000000,0.250000,0,0);}
.m8c_c01043{transform:matrix(0.363612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363612,0.000000,0.000000,0.250000,0,0);}
.m52_c01043{transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);}
.m3f_c01043{transform:matrix(0.384615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384615,0.000000,0.000000,0.250000,0,0);}
.m1f_c01043{transform:matrix(0.440068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440068,0.000000,0.000000,0.250000,0,0);}
.v0_c01043{vertical-align:0.000000px;}
.lsa_c01043{letter-spacing:-2.903677px;}
.ls3_c01043{letter-spacing:-2.744280px;}
.lse_c01043{letter-spacing:-2.273832px;}
.ls5_c01043{letter-spacing:-1.991563px;}
.ls11_c01043{letter-spacing:-1.897474px;}
.ls14_c01043{letter-spacing:-1.427026px;}
.ls7_c01043{letter-spacing:-1.419185px;}
.lsb_c01043{letter-spacing:-0.838966px;}
.lsf_c01043{letter-spacing:-0.258746px;}
.ls2_c01043{letter-spacing:0.000000px;}
.ls13_c01043{letter-spacing:0.407722px;}
.lsc_c01043{letter-spacing:1.058508px;}
.ls15_c01043{letter-spacing:1.960200px;}
.ls12_c01043{letter-spacing:2.189172px;}
.ls8_c01043{letter-spacing:2.673713px;}
.lsd_c01043{letter-spacing:3.253932px;}
.ls17_c01043{letter-spacing:3.387226px;}
.ls1_c01043{letter-spacing:3.534070px;}
.ls0_c01043{letter-spacing:3.818470px;}
.ls4_c01043{letter-spacing:3.920400px;}
.ls10_c01043{letter-spacing:4.059000px;}
.ls6_c01043{letter-spacing:52.747398px;}
.ls9_c01043{letter-spacing:55.598598px;}
.ls16_c01043{letter-spacing:57.024198px;}
.sc__c01043{text-shadow:none;}
.sc0_c01043{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01043{-webkit-text-stroke:0px transparent;}
.sc0_c01043{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01043{word-spacing:-19.602000px;}
.ws1_c01043{word-spacing:0.000000px;}
._2_c01043{margin-left:-1.332936px;}
._4_c01043{width:27.442800px;}
._0_c01043{width:31.120848px;}
._5_c01043{width:32.225688px;}
._3_c01043{width:33.512688px;}
._6_c01043{width:35.937000px;}
._1_c01043{width:68.583478px;}
.fc0_c01043{color:transparent;}
.fsb_c01043{font-size:22.176000px;}
.fs1_c01043{font-size:27.720000px;}
.fsf_c01043{font-size:33.660000px;}
.fs9_c01043{font-size:36.036198px;}
.fs4_c01043{font-size:52.747398px;}
.fs6_c01043{font-size:55.598598px;}
.fse_c01043{font-size:57.024198px;}
.fs7_c01043{font-size:66.330000px;}
.fsd_c01043{font-size:74.844000px;}
.fs2_c01043{font-size:78.408000px;}
.fs3_c01043{font-size:78.804000px;}
.fs5_c01043{font-size:79.398000px;}
.fsa_c01043{font-size:81.180000px;}
.fs8_c01043{font-size:82.962198px;}
.fsc_c01043{font-size:83.556198px;}
.fs0_c01043{font-size:87.912198px;}
.y0_c01043{bottom:0.000000px;}
.y1_c01043{bottom:76.500000px;}
.y1c_c01043{bottom:166.702170px;}
.y1b_c01043{bottom:198.778170px;}
.y1a_c01043{bottom:229.789920px;}
.y19_c01043{bottom:261.509520px;}
.y18_c01043{bottom:293.224170px;}
.y17_c01043{bottom:324.943770px;}
.y16_c01043{bottom:357.019770px;}
.y1d_c01043{bottom:376.265370px;}
.y15_c01043{bottom:389.100720px;}
.y14_c01043{bottom:405.495120px;}
.y13_c01043{bottom:418.676970px;}
.y12_c01043{bottom:421.528170px;}
.y11_c01043{bottom:453.252720px;}
.y10_c01043{bottom:516.330570px;}
.yf_c01043{bottom:547.698720px;}
.ye_c01043{bottom:579.061920px;}
.yd_c01043{bottom:610.781520px;}
.yc_c01043{bottom:642.139770px;}
.yb_c01043{bottom:674.572170px;}
.ya_c01043{bottom:705.583920px;}
.y9_c01043{bottom:737.654970px;}
.y8_c01043{bottom:770.087370px;}
.y7_c01043{bottom:833.175120px;}
.y6_c01043{bottom:864.181920px;}
.y5_c01043{bottom:895.901520px;}
.y4_c01043{bottom:927.259770px;}
.y3_c01043{bottom:969.676320px;}
.y2_c01043{bottom:1062.691770px;}
.hd_c01043{height:23.128875px;}
.h3_c01043{height:28.911094px;}
.h11_c01043{height:33.035449px;}
.h6_c01043{height:35.129767px;}
.h8_c01043{height:37.028666px;}
.hb_c01043{height:37.584628px;}
.h10_c01043{height:37.978116px;}
.h9_c01043{height:69.180117px;}
.hf_c01043{height:73.455293px;}
.h4_c01043{height:76.953164px;}
.h5_c01043{height:77.341816px;}
.h7_c01043{height:77.924795px;}
.hc_c01043{height:79.673730px;}
.he_c01043{height:82.005839px;}
.h2_c01043{height:86.281015px;}
.ha_c01043{height:86.526980px;}
.h1_c01043{height:1110.000000px;}
.h0_c01043{height:1263.000000px;}
.w1_c01043{width:775.500000px;}
.w0_c01043{width:892.500000px;}
.x0_c01043{left:0.000000px;}
.x1_c01043{left:58.500000px;}
.x3e_c01043{left:64.752585px;}
.x18_c01043{left:66.247485px;}
.x4_c01043{left:68.232435px;}
.x19_c01043{left:89.161035px;}
.x5_c01043{left:90.304485px;}
.x52_c01043{left:98.308635px;}
.x28_c01043{left:99.818385px;}
.x5b_c01043{left:109.728285px;}
.x61_c01043{left:110.985585px;}
.x10_c01043{left:120.445035px;}
.x1a_c01043{left:121.900335px;}
.x6_c01043{left:131.493435px;}
.x56_c01043{left:132.725985px;}
.x5e_c01043{left:143.997135px;}
.x21_c01043{left:152.877435px;}
.x11_c01043{left:154.332735px;}
.x64_c01043{left:155.758335px;}
.x34_c01043{left:165.499935px;}
.x62_c01043{left:166.910685px;}
.x7_c01043{left:175.687035px;}
.x22_c01043{left:186.339435px;}
.x2c_c01043{left:188.294685px;}
.x12_c01043{left:199.016385px;}
.x29_c01043{left:209.837085px;}
.x57_c01043{left:211.049835px;}
.x2d_c01043{left:221.736885px;}
.x13_c01043{left:232.473435px;}
.x1f_c01043{left:242.744685px;}
.x38_c01043{left:244.125735px;}
.x1b_c01043{left:253.713885px;}
.x2e_c01043{left:255.268185px;}
.x20_c01043{left:265.079085px;}
.x1c_c01043{left:276.330435px;}
.x68_c01043{left:277.647135px;}
.x45_c01043{left:287.210535px;}
.x3f_c01043{left:298.778685px;}
.x1d_c01043{left:309.495435px;}
.x42_c01043{left:310.836885px;}
.x4e_c01043{left:313.549485px;}
.x2a_c01043{left:321.617985px;}
.x65_c01043{left:324.355335px;}
.x8_c01043{left:331.948635px;}
.x43_c01043{left:343.665285px;}
.x2f_c01043{left:346.714485px;}
.x30_c01043{left:353.337585px;}
.x1e_c01043{left:355.079985px;}
.x9_c01043{left:365.965035px;}
.x39_c01043{left:375.553185px;}
.x40_c01043{left:376.864935px;}
.x23_c01043{left:387.547035px;}
.x4f_c01043{left:388.586535px;}
.x35_c01043{left:400.016085px;}
.x4a_c01043{left:411.415935px;}
.x14_c01043{left:421.588185px;}
.x3a_c01043{left:427.250985px;}
.x5c_c01043{left:432.725685px;}
.xa_c01043{left:443.145435px;}
.x46_c01043{left:444.843285px;}
.x36_c01043{left:455.465985px;}
.xb_c01043{left:474.261135px;}
.x5f_c01043{left:475.884735px;}
.x58_c01043{left:477.290535px;}
.xc_c01043{left:487.348935px;}
.x66_c01043{left:488.378535px;}
.x5d_c01043{left:497.471685px;}
.x15_c01043{left:498.620085px;}
.x41_c01043{left:499.659585px;}
.x51_c01043{left:504.565035px;}
.x3b_c01043{left:510.029835px;}
.x53_c01043{left:520.301085px;}
.x4b_c01043{left:521.464335px;}
.x69_c01043{left:522.493935px;}
.x16_c01043{left:530.631735px;}
.x47_c01043{left:531.666285px;}
.x31_c01043{left:541.818735px;}
.x24_c01043{left:552.020685px;}
.x4c_c01043{left:554.154135px;}
.xd_c01043{left:565.261935px;}
.x25_c01043{left:575.320335px;}
.x63_c01043{left:576.409335px;}
.x54_c01043{left:587.814135px;}
.x2b_c01043{left:597.085485px;}
.x60_c01043{left:598.847685px;}
.xe_c01043{left:607.614135px;}
.x59_c01043{left:609.816885px;}
.x3c_c01043{left:619.207035px;}
.x50_c01043{left:620.919735px;}
.x37_c01043{left:629.894085px;}
.x17_c01043{left:631.245435px;}
.x48_c01043{left:632.260185px;}
.xf_c01043{left:641.581035px;}
.x3d_c01043{left:652.421535px;}
.x3_c01043{left:653.871885px;}
.x26_c01043{left:663.380835px;}
.x2_c01043{left:664.410435px;}
.x32_c01043{left:675.488535px;}
.x49_c01043{left:686.794335px;}
.x27_c01043{left:696.902235px;}
.x4d_c01043{left:698.605035px;}
.x33_c01043{left:706.723035px;}
.x67_c01043{left:707.752635px;}
.x6a_c01043{left:709.381185px;}
.x5a_c01043{left:710.499885px;}
.x55_c01043{left:718.796085px;}
.x44_c01043{left:731.081985px;}
.x6b_c01043{left:766.825935px;}
@media print{
.v0_c01043{vertical-align:0.000000pt;}
.lsa_c01043{letter-spacing:-2.581046pt;}
.ls3_c01043{letter-spacing:-2.439360pt;}
.lse_c01043{letter-spacing:-2.021184pt;}
.ls5_c01043{letter-spacing:-1.770278pt;}
.ls11_c01043{letter-spacing:-1.686643pt;}
.ls14_c01043{letter-spacing:-1.268467pt;}
.ls7_c01043{letter-spacing:-1.261498pt;}
.lsb_c01043{letter-spacing:-0.745747pt;}
.lsf_c01043{letter-spacing:-0.229997pt;}
.ls2_c01043{letter-spacing:0.000000pt;}
.ls13_c01043{letter-spacing:0.362419pt;}
.lsc_c01043{letter-spacing:0.940896pt;}
.ls15_c01043{letter-spacing:1.742400pt;}
.ls12_c01043{letter-spacing:1.945931pt;}
.ls8_c01043{letter-spacing:2.376634pt;}
.lsd_c01043{letter-spacing:2.892384pt;}
.ls17_c01043{letter-spacing:3.010867pt;}
.ls1_c01043{letter-spacing:3.141396pt;}
.ls0_c01043{letter-spacing:3.394195pt;}
.ls4_c01043{letter-spacing:3.484800pt;}
.ls10_c01043{letter-spacing:3.608000pt;}
.ls6_c01043{letter-spacing:46.886576pt;}
.ls9_c01043{letter-spacing:49.420976pt;}
.ls16_c01043{letter-spacing:50.688176pt;}
.ws0_c01043{word-spacing:-17.424000pt;}
.ws1_c01043{word-spacing:0.000000pt;}
._2_c01043{margin-left:-1.184832pt;}
._4_c01043{width:24.393600pt;}
._0_c01043{width:27.662976pt;}
._5_c01043{width:28.645056pt;}
._3_c01043{width:29.789056pt;}
._6_c01043{width:31.944000pt;}
._1_c01043{width:60.963091pt;}
.fsb_c01043{font-size:19.712000pt;}
.fs1_c01043{font-size:24.640000pt;}
.fsf_c01043{font-size:29.920000pt;}
.fs9_c01043{font-size:32.032176pt;}
.fs4_c01043{font-size:46.886576pt;}
.fs6_c01043{font-size:49.420976pt;}
.fse_c01043{font-size:50.688176pt;}
.fs7_c01043{font-size:58.960000pt;}
.fsd_c01043{font-size:66.528000pt;}
.fs2_c01043{font-size:69.696000pt;}
.fs3_c01043{font-size:70.048000pt;}
.fs5_c01043{font-size:70.576000pt;}
.fsa_c01043{font-size:72.160000pt;}
.fs8_c01043{font-size:73.744176pt;}
.fsc_c01043{font-size:74.272176pt;}
.fs0_c01043{font-size:78.144176pt;}
.y0_c01043{bottom:0.000000pt;}
.y1_c01043{bottom:68.000000pt;}
.y1c_c01043{bottom:148.179707pt;}
.y1b_c01043{bottom:176.691707pt;}
.y1a_c01043{bottom:204.257707pt;}
.y19_c01043{bottom:232.452907pt;}
.y18_c01043{bottom:260.643707pt;}
.y17_c01043{bottom:288.838907pt;}
.y16_c01043{bottom:317.350907pt;}
.y1d_c01043{bottom:334.458107pt;}
.y15_c01043{bottom:345.867307pt;}
.y14_c01043{bottom:360.440107pt;}
.y13_c01043{bottom:372.157307pt;}
.y12_c01043{bottom:374.691707pt;}
.y11_c01043{bottom:402.891307pt;}
.y10_c01043{bottom:458.960507pt;}
.yf_c01043{bottom:486.843307pt;}
.ye_c01043{bottom:514.721707pt;}
.yd_c01043{bottom:542.916907pt;}
.yc_c01043{bottom:570.790907pt;}
.yb_c01043{bottom:599.619707pt;}
.ya_c01043{bottom:627.185707pt;}
.y9_c01043{bottom:655.693307pt;}
.y8_c01043{bottom:684.522107pt;}
.y7_c01043{bottom:740.600107pt;}
.y6_c01043{bottom:768.161707pt;}
.y5_c01043{bottom:796.356907pt;}
.y4_c01043{bottom:824.230907pt;}
.y3_c01043{bottom:861.934507pt;}
.y2_c01043{bottom:944.614907pt;}
.hd_c01043{height:20.559000pt;}
.h3_c01043{height:25.698750pt;}
.h11_c01043{height:29.364844pt;}
.h6_c01043{height:31.226460pt;}
.h8_c01043{height:32.914370pt;}
.hb_c01043{height:33.408559pt;}
.h10_c01043{height:33.758325pt;}
.h9_c01043{height:61.493438pt;}
.hf_c01043{height:65.293594pt;}
.h4_c01043{height:68.402813pt;}
.h5_c01043{height:68.748281pt;}
.h7_c01043{height:69.266484pt;}
.hc_c01043{height:70.821094pt;}
.he_c01043{height:72.894079pt;}
.h2_c01043{height:76.694235pt;}
.ha_c01043{height:76.912871pt;}
.h1_c01043{height:986.666667pt;}
.h0_c01043{height:1122.666667pt;}
.w1_c01043{width:689.333333pt;}
.w0_c01043{width:793.333333pt;}
.x0_c01043{left:0.000000pt;}
.x1_c01043{left:52.000000pt;}
.x3e_c01043{left:57.557853pt;}
.x18_c01043{left:58.886653pt;}
.x4_c01043{left:60.651053pt;}
.x19_c01043{left:79.254253pt;}
.x5_c01043{left:80.270653pt;}
.x52_c01043{left:87.385453pt;}
.x28_c01043{left:88.727453pt;}
.x5b_c01043{left:97.536253pt;}
.x61_c01043{left:98.653853pt;}
.x10_c01043{left:107.062253pt;}
.x1a_c01043{left:108.355853pt;}
.x6_c01043{left:116.883053pt;}
.x56_c01043{left:117.978653pt;}
.x5e_c01043{left:127.997453pt;}
.x21_c01043{left:135.891053pt;}
.x11_c01043{left:137.184653pt;}
.x64_c01043{left:138.451853pt;}
.x34_c01043{left:147.111053pt;}
.x62_c01043{left:148.365053pt;}
.x7_c01043{left:156.166253pt;}
.x22_c01043{left:165.635053pt;}
.x2c_c01043{left:167.373053pt;}
.x12_c01043{left:176.903453pt;}
.x29_c01043{left:186.521853pt;}
.x57_c01043{left:187.599853pt;}
.x2d_c01043{left:197.099453pt;}
.x13_c01043{left:206.643053pt;}
.x1f_c01043{left:215.773053pt;}
.x38_c01043{left:217.000653pt;}
.x1b_c01043{left:225.523453pt;}
.x2e_c01043{left:226.905053pt;}
.x20_c01043{left:235.625853pt;}
.x1c_c01043{left:245.627053pt;}
.x68_c01043{left:246.797453pt;}
.x45_c01043{left:255.298253pt;}
.x3f_c01043{left:265.581053pt;}
.x1d_c01043{left:275.107053pt;}
.x42_c01043{left:276.299453pt;}
.x4e_c01043{left:278.710653pt;}
.x2a_c01043{left:285.882653pt;}
.x65_c01043{left:288.315853pt;}
.x8_c01043{left:295.065453pt;}
.x43_c01043{left:305.480253pt;}
.x2f_c01043{left:308.190653pt;}
.x30_c01043{left:314.077853pt;}
.x1e_c01043{left:315.626653pt;}
.x9_c01043{left:325.302253pt;}
.x39_c01043{left:333.825053pt;}
.x40_c01043{left:334.991053pt;}
.x23_c01043{left:344.486253pt;}
.x4f_c01043{left:345.410253pt;}
.x35_c01043{left:355.569853pt;}
.x4a_c01043{left:365.703053pt;}
.x14_c01043{left:374.745053pt;}
.x3a_c01043{left:379.778653pt;}
.x5c_c01043{left:384.645053pt;}
.xa_c01043{left:393.907053pt;}
.x46_c01043{left:395.416253pt;}
.x36_c01043{left:404.858653pt;}
.xb_c01043{left:421.565453pt;}
.x5f_c01043{left:423.008653pt;}
.x58_c01043{left:424.258253pt;}
.xc_c01043{left:433.199053pt;}
.x66_c01043{left:434.114253pt;}
.x5d_c01043{left:442.197053pt;}
.x15_c01043{left:443.217853pt;}
.x41_c01043{left:444.141853pt;}
.x51_c01043{left:448.502253pt;}
.x3b_c01043{left:453.359853pt;}
.x53_c01043{left:462.489853pt;}
.x4b_c01043{left:463.523853pt;}
.x69_c01043{left:464.439053pt;}
.x16_c01043{left:471.672653pt;}
.x47_c01043{left:472.592253pt;}
.x31_c01043{left:481.616653pt;}
.x24_c01043{left:490.685053pt;}
.x4c_c01043{left:492.581453pt;}
.xd_c01043{left:502.455053pt;}
.x25_c01043{left:511.395853pt;}
.x63_c01043{left:512.363853pt;}
.x54_c01043{left:522.501453pt;}
.x2b_c01043{left:530.742653pt;}
.x60_c01043{left:532.309053pt;}
.xe_c01043{left:540.101453pt;}
.x59_c01043{left:542.059453pt;}
.x3c_c01043{left:550.406253pt;}
.x50_c01043{left:551.928653pt;}
.x37_c01043{left:559.905853pt;}
.x17_c01043{left:561.107053pt;}
.x48_c01043{left:562.009053pt;}
.xf_c01043{left:570.294253pt;}
.x3d_c01043{left:579.930253pt;}
.x3_c01043{left:581.219453pt;}
.x26_c01043{left:589.671853pt;}
.x2_c01043{left:590.587053pt;}
.x32_c01043{left:600.434253pt;}
.x49_c01043{left:610.483853pt;}
.x27_c01043{left:619.468653pt;}
.x4d_c01043{left:620.982253pt;}
.x33_c01043{left:628.198253pt;}
.x67_c01043{left:629.113453pt;}
.x6a_c01043{left:630.561053pt;}
.x5a_c01043{left:631.555453pt;}
.x55_c01043{left:638.929853pt;}
.x44_c01043{left:649.850653pt;}
.x6b_c01043{left:681.623053pt;}
}





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

.ir_c01044:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01044{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01044;src:url('chunks/assets/font_cb4eb687611cfad1b87a0084.woff2')format("woff");}.ff1_c01044{font-family:ff1_c01044;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01044;src:url('chunks/assets/font_cc6286769f5bd6eb6df6068b.woff2')format("woff");}.ff2_c01044{font-family:ff2_c01044;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01044;src:url('chunks/assets/font_07eb88c7945b3b71bb20d5d3.woff2')format("woff");}.ff3_c01044{font-family:ff3_c01044;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01044;src:url('chunks/assets/font_45e905cea5df65b4816c74fc.woff2')format("woff");}.ff4_c01044{font-family:ff4_c01044;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01044;src:url('chunks/assets/font_c2aa6675f236a6ee865a740b.woff2')format("woff");}.ff5_c01044{font-family:ff5_c01044;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m63_c01044{transform:matrix(0.152381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152381,0.000000,0.000000,0.250000,0,0);}
.m72_c01044{transform:matrix(0.175439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175439,0.000000,0.000000,0.250000,0,0);}
.m24_c01044{transform:matrix(0.186806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186806,0.000000,0.000000,0.250000,0,0);}
.m50_c01044{transform:matrix(0.229225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229225,0.000000,0.000000,0.250000,0,0);}
.m7d_c01044{transform:matrix(0.234834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234834,0.000000,0.000000,0.250000,0,0);}
.m0_c01044{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m41_c01044{transform:matrix(0.251451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251451,0.000000,0.000000,0.250000,0,0);}
.m64_c01044{transform:matrix(0.251781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251781,0.000000,0.000000,0.250000,0,0);}
.mbd_c01044{transform:matrix(0.252775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252775,0.000000,0.000000,0.250000,0,0);}
.m71_c01044{transform:matrix(0.255923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255923,0.000000,0.000000,0.250000,0,0);}
.maa_c01044{transform:matrix(0.256190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256190,0.000000,0.000000,0.250000,0,0);}
.m36_c01044{transform:matrix(0.258903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258903,0.000000,0.000000,0.250000,0,0);}
.m79_c01044{transform:matrix(0.259763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259763,0.000000,0.000000,0.250000,0,0);}
.m68_c01044{transform:matrix(0.261251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261251,0.000000,0.000000,0.250000,0,0);}
.m12_c01044{transform:matrix(0.264118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264118,0.000000,0.000000,0.250000,0,0);}
.ma4_c01044{transform:matrix(0.267037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267037,0.000000,0.000000,0.250000,0,0);}
.m4e_c01044{transform:matrix(0.267708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267708,0.000000,0.000000,0.250000,0,0);}
.m9d_c01044{transform:matrix(0.268376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268376,0.000000,0.000000,0.250000,0,0);}
.m3_c01044{transform:matrix(0.269009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269009,0.000000,0.000000,0.250000,0,0);}
.m23_c01044{transform:matrix(0.269108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269108,0.000000,0.000000,0.250000,0,0);}
.m7f_c01044{transform:matrix(0.270678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270678,0.000000,0.000000,0.250000,0,0);}
.m37_c01044{transform:matrix(0.271288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271288,0.000000,0.000000,0.250000,0,0);}
.m8e_c01044{transform:matrix(0.273170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273170,0.000000,0.000000,0.250000,0,0);}
.m8_c01044{transform:matrix(0.273900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273900,0.000000,0.000000,0.250000,0,0);}
.m57_c01044{transform:matrix(0.274875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274875,0.000000,0.000000,0.250000,0,0);}
.m8b_c01044{transform:matrix(0.275627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275627,0.000000,0.000000,0.250000,0,0);}
.m7a_c01044{transform:matrix(0.275886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275886,0.000000,0.000000,0.250000,0,0);}
.m16_c01044{transform:matrix(0.276310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276310,0.000000,0.000000,0.250000,0,0);}
.m51_c01044{transform:matrix(0.276927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276927,0.000000,0.000000,0.250000,0,0);}
.m58_c01044{transform:matrix(0.277259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277259,0.000000,0.000000,0.250000,0,0);}
.md_c01044{transform:matrix(0.278792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278792,0.000000,0.000000,0.250000,0,0);}
.m9f_c01044{transform:matrix(0.279450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279450,0.000000,0.000000,0.250000,0,0);}
.m26_c01044{transform:matrix(0.279701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279701,0.000000,0.000000,0.250000,0,0);}
.m8f_c01044{transform:matrix(0.280484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280484,0.000000,0.000000,0.250000,0,0);}
.m21_c01044{transform:matrix(0.281259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281259,0.000000,0.000000,0.250000,0,0);}
.m18_c01044{transform:matrix(0.281872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281872,0.000000,0.000000,0.250000,0,0);}
.m83_c01044{transform:matrix(0.282221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282221,0.000000,0.000000,0.250000,0,0);}
.mad_c01044{transform:matrix(0.282590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282590,0.000000,0.000000,0.250000,0,0);}
.m4_c01044{transform:matrix(0.283647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283647,0.000000,0.000000,0.250000,0,0);}
.m48_c01044{transform:matrix(0.283683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283683,0.000000,0.000000,0.250000,0,0);}
.m2e_c01044{transform:matrix(0.284419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284419,0.000000,0.000000,0.250000,0,0);}
.m8a_c01044{transform:matrix(0.284424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284424,0.000000,0.000000,0.250000,0,0);}
.m66_c01044{transform:matrix(0.285349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285349,0.000000,0.000000,0.250000,0,0);}
.m86_c01044{transform:matrix(0.285407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285407,0.000000,0.000000,0.250000,0,0);}
.m3b_c01044{transform:matrix(0.286495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286495,0.000000,0.000000,0.250000,0,0);}
.m2b_c01044{transform:matrix(0.286664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286664,0.000000,0.000000,0.250000,0,0);}
.m1e_c01044{transform:matrix(0.286817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286817,0.000000,0.000000,0.250000,0,0);}
.m60_c01044{transform:matrix(0.287148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287148,0.000000,0.000000,0.250000,0,0);}
.m6f_c01044{transform:matrix(0.288263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288263,0.000000,0.000000,0.250000,0,0);}
.m4d_c01044{transform:matrix(0.288995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288995,0.000000,0.000000,0.250000,0,0);}
.m90_c01044{transform:matrix(0.289908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289908,0.000000,0.000000,0.250000,0,0);}
.m74_c01044{transform:matrix(0.290041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290041,0.000000,0.000000,0.250000,0,0);}
.m4a_c01044{transform:matrix(0.290050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290050,0.000000,0.000000,0.250000,0,0);}
.m56_c01044{transform:matrix(0.290305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290305,0.000000,0.000000,0.250000,0,0);}
.m1c_c01044{transform:matrix(0.291254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291254,0.000000,0.000000,0.250000,0,0);}
.mb9_c01044{transform:matrix(0.292515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292515,0.000000,0.000000,0.250000,0,0);}
.mb6_c01044{transform:matrix(0.293287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293287,0.000000,0.000000,0.250000,0,0);}
.m92_c01044{transform:matrix(0.293378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293378,0.000000,0.000000,0.250000,0,0);}
.m32_c01044{transform:matrix(0.293465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293465,0.000000,0.000000,0.250000,0,0);}
.m93_c01044{transform:matrix(0.294254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294254,0.000000,0.000000,0.250000,0,0);}
.m65_c01044{transform:matrix(0.294345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294345,0.000000,0.000000,0.250000,0,0);}
.m81_c01044{transform:matrix(0.294352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294352,0.000000,0.000000,0.250000,0,0);}
.m2d_c01044{transform:matrix(0.296145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296145,0.000000,0.000000,0.250000,0,0);}
.m5e_c01044{transform:matrix(0.296350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296350,0.000000,0.000000,0.250000,0,0);}
.m9b_c01044{transform:matrix(0.296466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296466,0.000000,0.000000,0.250000,0,0);}
.m47_c01044{transform:matrix(0.296731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296731,0.000000,0.000000,0.250000,0,0);}
.ma5_c01044{transform:matrix(0.297048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297048,0.000000,0.000000,0.250000,0,0);}
.mac_c01044{transform:matrix(0.297433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297433,0.000000,0.000000,0.250000,0,0);}
.m77_c01044{transform:matrix(0.297450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297450,0.000000,0.000000,0.250000,0,0);}
.m2c_c01044{transform:matrix(0.297730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297730,0.000000,0.000000,0.250000,0,0);}
.m20_c01044{transform:matrix(0.298098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298098,0.000000,0.000000,0.250000,0,0);}
.m4c_c01044{transform:matrix(0.298418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298418,0.000000,0.000000,0.250000,0,0);}
.m34_c01044{transform:matrix(0.298666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298666,0.000000,0.000000,0.250000,0,0);}
.m3a_c01044{transform:matrix(0.298763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298763,0.000000,0.000000,0.250000,0,0);}
.m7e_c01044{transform:matrix(0.299168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299168,0.000000,0.000000,0.250000,0,0);}
.m7_c01044{transform:matrix(0.299176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299176,0.000000,0.000000,0.250000,0,0);}
.ma8_c01044{transform:matrix(0.299212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299212,0.000000,0.000000,0.250000,0,0);}
.m44_c01044{transform:matrix(0.299743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299743,0.000000,0.000000,0.250000,0,0);}
.m30_c01044{transform:matrix(0.300672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300672,0.000000,0.000000,0.250000,0,0);}
.mb3_c01044{transform:matrix(0.300720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300720,0.000000,0.000000,0.250000,0,0);}
.m14_c01044{transform:matrix(0.301303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301303,0.000000,0.000000,0.250000,0,0);}
.m73_c01044{transform:matrix(0.301413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301413,0.000000,0.000000,0.250000,0,0);}
.m9c_c01044{transform:matrix(0.302172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302172,0.000000,0.000000,0.250000,0,0);}
.m6e_c01044{transform:matrix(0.302309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302309,0.000000,0.000000,0.250000,0,0);}
.m6_c01044{transform:matrix(0.302674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302674,0.000000,0.000000,0.250000,0,0);}
.m84_c01044{transform:matrix(0.303752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303752,0.000000,0.000000,0.250000,0,0);}
.m7c_c01044{transform:matrix(0.305120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305120,0.000000,0.000000,0.250000,0,0);}
.m49_c01044{transform:matrix(0.305161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305161,0.000000,0.000000,0.250000,0,0);}
.m33_c01044{transform:matrix(0.305408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305408,0.000000,0.000000,0.250000,0,0);}
.m43_c01044{transform:matrix(0.305794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305794,0.000000,0.000000,0.250000,0,0);}
.m5b_c01044{transform:matrix(0.306148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306148,0.000000,0.000000,0.250000,0,0);}
.m7b_c01044{transform:matrix(0.306549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306549,0.000000,0.000000,0.250000,0,0);}
.m5_c01044{transform:matrix(0.306995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306995,0.000000,0.000000,0.250000,0,0);}
.m5c_c01044{transform:matrix(0.307446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307446,0.000000,0.000000,0.250000,0,0);}
.mc_c01044{transform:matrix(0.307537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307537,0.000000,0.000000,0.250000,0,0);}
.mb2_c01044{transform:matrix(0.307553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307553,0.000000,0.000000,0.250000,0,0);}
.m5d_c01044{transform:matrix(0.308093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308093,0.000000,0.000000,0.250000,0,0);}
.m1b_c01044{transform:matrix(0.308964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308964,0.000000,0.000000,0.250000,0,0);}
.m5f_c01044{transform:matrix(0.309117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309117,0.000000,0.000000,0.250000,0,0);}
.m88_c01044{transform:matrix(0.310061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310061,0.000000,0.000000,0.250000,0,0);}
.mab_c01044{transform:matrix(0.311416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311416,0.000000,0.000000,0.250000,0,0);}
.m53_c01044{transform:matrix(0.311525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311525,0.000000,0.000000,0.250000,0,0);}
.m78_c01044{transform:matrix(0.311762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311762,0.000000,0.000000,0.250000,0,0);}
.m42_c01044{transform:matrix(0.312146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312146,0.000000,0.000000,0.250000,0,0);}
.mb5_c01044{transform:matrix(0.312146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312146,0.000000,0.000000,0.250000,0,0);}
.m1d_c01044{transform:matrix(0.313557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313557,0.000000,0.000000,0.250000,0,0);}
.ma_c01044{transform:matrix(0.314501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314501,0.000000,0.000000,0.250000,0,0);}
.m46_c01044{transform:matrix(0.314591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314591,0.000000,0.000000,0.250000,0,0);}
.m9e_c01044{transform:matrix(0.315254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315254,0.000000,0.000000,0.250000,0,0);}
.mb1_c01044{transform:matrix(0.315448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315448,0.000000,0.000000,0.250000,0,0);}
.m89_c01044{transform:matrix(0.315470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315470,0.000000,0.000000,0.250000,0,0);}
.m2a_c01044{transform:matrix(0.315716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315716,0.000000,0.000000,0.250000,0,0);}
.m99_c01044{transform:matrix(0.315740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315740,0.000000,0.000000,0.250000,0,0);}
.m6c_c01044{transform:matrix(0.316958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316958,0.000000,0.000000,0.250000,0,0);}
.m2_c01044{transform:matrix(0.316968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316968,0.000000,0.000000,0.250000,0,0);}
.mb7_c01044{transform:matrix(0.317323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317323,0.000000,0.000000,0.250000,0,0);}
.m5a_c01044{transform:matrix(0.318615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318615,0.000000,0.000000,0.250000,0,0);}
.me_c01044{transform:matrix(0.318934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318934,0.000000,0.000000,0.250000,0,0);}
.m54_c01044{transform:matrix(0.319023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319023,0.000000,0.000000,0.250000,0,0);}
.mbf_c01044{transform:matrix(0.319373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319373,0.000000,0.000000,0.250000,0,0);}
.m40_c01044{transform:matrix(0.319387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319387,0.000000,0.000000,0.250000,0,0);}
.m62_c01044{transform:matrix(0.320347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320347,0.000000,0.000000,0.250000,0,0);}
.m8c_c01044{transform:matrix(0.320910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320910,0.000000,0.000000,0.250000,0,0);}
.ma6_c01044{transform:matrix(0.322501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322501,0.000000,0.000000,0.250000,0,0);}
.m3e_c01044{transform:matrix(0.322527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322527,0.000000,0.000000,0.250000,0,0);}
.m9_c01044{transform:matrix(0.323164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323164,0.000000,0.000000,0.250000,0,0);}
.mb8_c01044{transform:matrix(0.323652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323652,0.000000,0.000000,0.250000,0,0);}
.m1_c01044{transform:matrix(0.324113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324113,0.000000,0.000000,0.250000,0,0);}
.ma2_c01044{transform:matrix(0.324393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324393,0.000000,0.000000,0.250000,0,0);}
.ma1_c01044{transform:matrix(0.324762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324762,0.000000,0.000000,0.250000,0,0);}
.m29_c01044{transform:matrix(0.324791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324791,0.000000,0.000000,0.250000,0,0);}
.mb4_c01044{transform:matrix(0.326337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326337,0.000000,0.000000,0.250000,0,0);}
.m91_c01044{transform:matrix(0.328119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328119,0.000000,0.000000,0.250000,0,0);}
.mba_c01044{transform:matrix(0.328607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328607,0.000000,0.000000,0.250000,0,0);}
.m94_c01044{transform:matrix(0.329761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329761,0.000000,0.000000,0.250000,0,0);}
.mbe_c01044{transform:matrix(0.330098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330098,0.000000,0.000000,0.250000,0,0);}
.m55_c01044{transform:matrix(0.332076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332076,0.000000,0.000000,0.250000,0,0);}
.m98_c01044{transform:matrix(0.332258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332258,0.000000,0.000000,0.250000,0,0);}
.m6b_c01044{transform:matrix(0.332555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332555,0.000000,0.000000,0.250000,0,0);}
.m69_c01044{transform:matrix(0.332663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332663,0.000000,0.000000,0.250000,0,0);}
.m70_c01044{transform:matrix(0.332720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332720,0.000000,0.000000,0.250000,0,0);}
.m1f_c01044{transform:matrix(0.332785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332785,0.000000,0.000000,0.250000,0,0);}
.mb_c01044{transform:matrix(0.333074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333074,0.000000,0.000000,0.250000,0,0);}
.mae_c01044{transform:matrix(0.334298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334298,0.000000,0.000000,0.250000,0,0);}
.m76_c01044{transform:matrix(0.334731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334731,0.000000,0.000000,0.250000,0,0);}
.m38_c01044{transform:matrix(0.335166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335166,0.000000,0.000000,0.250000,0,0);}
.m39_c01044{transform:matrix(0.336254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336254,0.000000,0.000000,0.250000,0,0);}
.ma0_c01044{transform:matrix(0.336700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336700,0.000000,0.000000,0.250000,0,0);}
.mbb_c01044{transform:matrix(0.337592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337592,0.000000,0.000000,0.250000,0,0);}
.m9a_c01044{transform:matrix(0.338004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338004,0.000000,0.000000,0.250000,0,0);}
.m6a_c01044{transform:matrix(0.338070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338070,0.000000,0.000000,0.250000,0,0);}
.m27_c01044{transform:matrix(0.338826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338826,0.000000,0.000000,0.250000,0,0);}
.ma3_c01044{transform:matrix(0.338891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338891,0.000000,0.000000,0.250000,0,0);}
.mbc_c01044{transform:matrix(0.339831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339831,0.000000,0.000000,0.250000,0,0);}
.m8d_c01044{transform:matrix(0.339994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339994,0.000000,0.000000,0.250000,0,0);}
.ma7_c01044{transform:matrix(0.340146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340146,0.000000,0.000000,0.250000,0,0);}
.m1a_c01044{transform:matrix(0.341535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341535,0.000000,0.000000,0.250000,0,0);}
.m3d_c01044{transform:matrix(0.341624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341624,0.000000,0.000000,0.250000,0,0);}
.m45_c01044{transform:matrix(0.341633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341633,0.000000,0.000000,0.250000,0,0);}
.m96_c01044{transform:matrix(0.342467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342467,0.000000,0.000000,0.250000,0,0);}
.maf_c01044{transform:matrix(0.342754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342754,0.000000,0.000000,0.250000,0,0);}
.m3f_c01044{transform:matrix(0.343712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343712,0.000000,0.000000,0.250000,0,0);}
.m85_c01044{transform:matrix(0.343878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343878,0.000000,0.000000,0.250000,0,0);}
.m31_c01044{transform:matrix(0.343974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343974,0.000000,0.000000,0.250000,0,0);}
.m75_c01044{transform:matrix(0.345281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345281,0.000000,0.000000,0.250000,0,0);}
.m10_c01044{transform:matrix(0.346401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346401,0.000000,0.000000,0.250000,0,0);}
.m67_c01044{transform:matrix(0.346409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346409,0.000000,0.000000,0.250000,0,0);}
.m80_c01044{transform:matrix(0.346414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346414,0.000000,0.000000,0.250000,0,0);}
.mb0_c01044{transform:matrix(0.346724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346724,0.000000,0.000000,0.250000,0,0);}
.m15_c01044{transform:matrix(0.347007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347007,0.000000,0.000000,0.250000,0,0);}
.m97_c01044{transform:matrix(0.347755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347755,0.000000,0.000000,0.250000,0,0);}
.m6d_c01044{transform:matrix(0.348146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348146,0.000000,0.000000,0.250000,0,0);}
.mf_c01044{transform:matrix(0.350163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350163,0.000000,0.000000,0.250000,0,0);}
.m4f_c01044{transform:matrix(0.350416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350416,0.000000,0.000000,0.250000,0,0);}
.m4b_c01044{transform:matrix(0.350718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350718,0.000000,0.000000,0.250000,0,0);}
.m3c_c01044{transform:matrix(0.350751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350751,0.000000,0.000000,0.250000,0,0);}
.m11_c01044{transform:matrix(0.350995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350995,0.000000,0.000000,0.250000,0,0);}
.m52_c01044{transform:matrix(0.352824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352824,0.000000,0.000000,0.250000,0,0);}
.m25_c01044{transform:matrix(0.354788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354788,0.000000,0.000000,0.250000,0,0);}
.m2f_c01044{transform:matrix(0.356132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356132,0.000000,0.000000,0.250000,0,0);}
.m61_c01044{transform:matrix(0.358819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358819,0.000000,0.000000,0.250000,0,0);}
.m35_c01044{transform:matrix(0.359006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359006,0.000000,0.000000,0.250000,0,0);}
.m22_c01044{transform:matrix(0.359239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359239,0.000000,0.000000,0.250000,0,0);}
.m17_c01044{transform:matrix(0.362312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362312,0.000000,0.000000,0.250000,0,0);}
.ma9_c01044{transform:matrix(0.366142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366142,0.000000,0.000000,0.250000,0,0);}
.m59_c01044{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_c01044{transform:matrix(0.368925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368925,0.000000,0.000000,0.250000,0,0);}
.m87_c01044{transform:matrix(0.369645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369645,0.000000,0.000000,0.250000,0,0);}
.m95_c01044{transform:matrix(0.382442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382442,0.000000,0.000000,0.250000,0,0);}
.m19_c01044{transform:matrix(0.395355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395355,0.000000,0.000000,0.250000,0,0);}
.m82_c01044{transform:matrix(0.401732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401732,0.000000,0.000000,0.250000,0,0);}
.m13_c01044{transform:matrix(0.408109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408109,0.000000,0.000000,0.250000,0,0);}
.v0_c01044{vertical-align:0.000000px;}
.lsa_c01044{letter-spacing:-2.591827px;}
.ls6_c01044{letter-spacing:-2.532585px;}
.ls3_c01044{letter-spacing:-2.022451px;}
.ls11_c01044{letter-spacing:-1.753290px;}
.ls2_c01044{letter-spacing:0.000000px;}
.ls8_c01044{letter-spacing:1.266293px;}
.ls10_c01044{letter-spacing:1.888331px;}
.ls5_c01044{letter-spacing:2.146959px;}
.ls12_c01044{letter-spacing:2.243782px;}
.ls9_c01044{letter-spacing:2.606637px;}
.lsf_c01044{letter-spacing:2.636258px;}
.ls1_c01044{letter-spacing:3.213865px;}
.lsd_c01044{letter-spacing:3.465000px;}
.ls13_c01044{letter-spacing:3.603610px;}
.ls4_c01044{letter-spacing:3.702610px;}
.lsb_c01044{letter-spacing:3.722400px;}
.ls0_c01044{letter-spacing:13.903956px;}
.lse_c01044{letter-spacing:54.172998px;}
.ls7_c01044{letter-spacing:57.024198px;}
.lsc_c01044{letter-spacing:59.875398px;}
.sc__c01044{text-shadow:none;}
.sc0_c01044{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01044{-webkit-text-stroke:0px transparent;}
.sc0_c01044{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01044{word-spacing:-18.513050px;}
.ws1_c01044{word-spacing:0.000000px;}
._1_c01044{width:3.665604px;}
._0_c01044{width:6.442425px;}
.fc0_c01044{color:transparent;}
.fs4_c01044{font-size:25.146000px;}
.fs0_c01044{font-size:27.720000px;}
.fs6_c01044{font-size:38.808000px;}
.fsd_c01044{font-size:50.094000px;}
.fsc_c01044{font-size:54.172998px;}
.fs5_c01044{font-size:57.024198px;}
.fs9_c01044{font-size:59.875398px;}
.fsa_c01044{font-size:69.300000px;}
.fse_c01044{font-size:72.072198px;}
.fsb_c01044{font-size:73.260000px;}
.fs2_c01044{font-size:74.052198px;}
.fs8_c01044{font-size:74.448000px;}
.fs7_c01044{font-size:76.824000px;}
.fs3_c01044{font-size:85.536198px;}
.fs1_c01044{font-size:90.288000px;}
.y0_c01044{bottom:0.000000px;}
.y1_c01044{bottom:76.500000px;}
.y3_c01044{bottom:98.276340px;}
.y20_c01044{bottom:128.567370px;}
.y1f_c01044{bottom:160.648320px;}
.y1e_c01044{bottom:192.367920px;}
.y1d_c01044{bottom:255.802170px;}
.y1c_c01044{bottom:287.878170px;}
.y1b_c01044{bottom:318.889920px;}
.y1a_c01044{bottom:350.248170px;}
.y19_c01044{bottom:382.324170px;}
.y18_c01044{bottom:413.330970px;}
.y17_c01044{bottom:445.055520px;}
.y16_c01044{bottom:476.413770px;}
.y13_c01044{bottom:539.852970px;}
.y15_c01044{bottom:549.124320px;}
.y14_c01044{bottom:559.454970px;}
.y12_c01044{bottom:570.859770px;}
.y2_c01044{bottom:576.210720px;}
.y11_c01044{bottom:603.292170px;}
.y10_c01044{bottom:635.011770px;}
.yf_c01044{bottom:666.736320px;}
.ye_c01044{bottom:698.450970px;}
.yd_c01044{bottom:730.531920px;}
.yc_c01044{bottom:761.895120px;}
.yb_c01044{bottom:794.327520px;}
.ya_c01044{bottom:820.696170px;}
.y8_c01044{bottom:825.334320px;}
.y9_c01044{bottom:838.877520px;}
.y7_c01044{bottom:856.697520px;}
.y6_c01044{bottom:888.060720px;}
.y5_c01044{bottom:919.775370px;}
.y4_c01044{bottom:1056.281520px;}
.h6_c01044{height:26.226492px;}
.h2_c01044{height:28.911094px;}
.he_c01044{height:36.079217px;}
.h7_c01044{height:37.978116px;}
.hb_c01044{height:39.877015px;}
.h8_c01044{height:40.475531px;}
.hf_c01044{height:52.246477px;}
.hc_c01044{height:68.014160px;}
.h10_c01044{height:72.635262px;}
.h4_c01044{height:72.678183px;}
.ha_c01044{height:73.030289px;}
.h9_c01044{height:75.398555px;}
.hd_c01044{height:76.407891px;}
.h5_c01044{height:83.949101px;}
.h3_c01044{height:88.612734px;}
.h1_c01044{height:1110.000000px;}
.h0_c01044{height:1263.000000px;}
.w1_c01044{width:775.500000px;}
.w0_c01044{width:892.500000px;}
.x0_c01044{left:0.000000px;}
.x3_c01044{left:9.497715px;}
.x2_c01044{left:49.061085px;}
.x1_c01044{left:58.500000px;}
.x21_c01044{left:67.940385px;}
.x19_c01044{left:69.410535px;}
.xf_c01044{left:71.019285px;}
.x51_c01044{left:90.636135px;}
.x41_c01044{left:98.768985px;}
.x31_c01044{left:100.793535px;}
.x5e_c01044{left:102.436935px;}
.x29_c01044{left:111.846885px;}
.x1a_c01044{left:113.841735px;}
.x5_c01044{left:124.226835px;}
.x52_c01044{left:134.097135px;}
.x42_c01044{left:135.799935px;}
.x1b_c01044{left:145.843485px;}
.x5b_c01044{left:156.451335px;}
.x10_c01044{left:157.659135px;}
.x4b_c01044{left:178.503585px;}
.x6_c01044{left:179.731185px;}
.x22_c01044{left:189.537135px;}
.x47_c01044{left:191.145885px;}
.x43_c01044{left:201.847785px;}
.x53_c01044{left:210.624135px;}
.x66_c01044{left:211.990335px;}
.x2a_c01044{left:213.643635px;}
.x32_c01044{left:223.157535px;}
.x48_c01044{left:224.231685px;}
.x2b_c01044{left:235.631535px;}
.x23_c01044{left:246.382935px;}
.x63_c01044{left:247.773885px;}
.x5f_c01044{left:256.193835px;}
.x33_c01044{left:257.436285px;}
.x1c_c01044{left:269.143035px;}
.x24_c01044{left:278.651985px;}
.x4c_c01044{left:279.919185px;}
.x64_c01044{left:290.190435px;}
.x7_c01044{left:291.323985px;}
.x6e_c01044{left:300.035985px;}
.x11_c01044{left:302.015985px;}
.x4d_c01044{left:312.767385px;}
.x56_c01044{left:314.004885px;}
.x6c_c01044{left:322.494135px;}
.x37_c01044{left:324.023685px;}
.x8_c01044{left:326.652135px;}
.x12_c01044{left:335.512635px;}
.x2c_c01044{left:346.095735px;}
.x67_c01044{left:347.526285px;}
.x69_c01044{left:356.025435px;}
.x60_c01044{left:357.262935px;}
.x57_c01044{left:358.322235px;}
.x4e_c01044{left:366.252135px;}
.x44_c01044{left:367.385685px;}
.x25_c01044{left:368.618235px;}
.x58_c01044{left:379.295385px;}
.x3d_c01044{left:380.394285px;}
.x6f_c01044{left:389.131035px;}
.x1d_c01044{left:390.754635px;}
.x5c_c01044{left:401.758485px;}
.x6d_c01044{left:411.747585px;}
.x3e_c01044{left:412.787085px;}
.x38_c01044{left:424.127535px;}
.x54_c01044{left:433.260285px;}
.x13_c01044{left:434.948235px;}
.x1e_c01044{left:436.185735px;}
.x9_c01044{left:446.303535px;}
.x71_c01044{left:456.342135px;}
.x2d_c01044{left:457.376685px;}
.x4f_c01044{left:459.802185px;}
.x6a_c01044{left:467.692485px;}
.x14_c01044{left:468.746835px;}
.x72_c01044{left:477.171735px;}
.x34_c01044{left:478.245885px;}
.x50_c01044{left:479.503185px;}
.xa_c01044{left:490.497135px;}
.x1f_c01044{left:500.827785px;}
.x3f_c01044{left:510.703035px;}
.x15_c01044{left:511.732635px;}
.x49_c01044{left:512.910735px;}
.xb_c01044{left:522.107835px;}
.x2e_c01044{left:523.469085px;}
.x39_c01044{left:525.013485px;}
.x20_c01044{left:533.477985px;}
.x35_c01044{left:534.695685px;}
.x45_c01044{left:545.452035px;}
.x40_c01044{left:555.223335px;}
.x3a_c01044{left:557.475585px;}
.x65_c01044{left:566.261835px;}
.xc_c01044{left:567.756735px;}
.x36_c01044{left:578.745735px;}
.x61_c01044{left:588.705135px;}
.x55_c01044{left:590.784135px;}
.x16_c01044{left:600.679185px;}
.x6b_c01044{left:610.455435px;}
.x2f_c01044{left:611.692935px;}
.x27_c01044{left:622.261185px;}
.x17_c01044{left:633.081885px;}
.x73_c01044{left:643.798635px;}
.xd_c01044{left:644.872785px;}
.x70_c01044{left:653.926335px;}
.x3b_c01044{left:655.139085px;}
.x30_c01044{left:656.242935px;}
.x4_c01044{left:666.895335px;}
.x18_c01044{left:677.631885px;}
.xe_c01044{left:678.666435px;}
.x46_c01044{left:687.794235px;}
.x3c_c01044{left:689.610885px;}
.x68_c01044{left:698.852535px;}
.x59_c01044{left:700.080135px;}
.x26_c01044{left:702.277935px;}
.x28_c01044{left:705.064785px;}
.x5a_c01044{left:708.247635px;}
.x62_c01044{left:710.732535px;}
.x4a_c01044{left:721.810635px;}
.x5d_c01044{left:733.948035px;}
@media print{
.v0_c01044{vertical-align:0.000000pt;}
.lsa_c01044{letter-spacing:-2.303846pt;}
.ls6_c01044{letter-spacing:-2.251187pt;}
.ls3_c01044{letter-spacing:-1.797734pt;}
.ls11_c01044{letter-spacing:-1.558480pt;}
.ls2_c01044{letter-spacing:0.000000pt;}
.ls8_c01044{letter-spacing:1.125593pt;}
.ls10_c01044{letter-spacing:1.678516pt;}
.ls5_c01044{letter-spacing:1.908408pt;}
.ls12_c01044{letter-spacing:1.994473pt;}
.ls9_c01044{letter-spacing:2.317011pt;}
.lsf_c01044{letter-spacing:2.343341pt;}
.ls1_c01044{letter-spacing:2.856769pt;}
.lsd_c01044{letter-spacing:3.080000pt;}
.ls13_c01044{letter-spacing:3.203209pt;}
.ls4_c01044{letter-spacing:3.291209pt;}
.lsb_c01044{letter-spacing:3.308800pt;}
.ls0_c01044{letter-spacing:12.359072pt;}
.lse_c01044{letter-spacing:48.153776pt;}
.ls7_c01044{letter-spacing:50.688176pt;}
.lsc_c01044{letter-spacing:53.222576pt;}
.ws0_c01044{word-spacing:-16.456044pt;}
.ws1_c01044{word-spacing:0.000000pt;}
._1_c01044{width:3.258315pt;}
._0_c01044{width:5.726600pt;}
.fs4_c01044{font-size:22.352000pt;}
.fs0_c01044{font-size:24.640000pt;}
.fs6_c01044{font-size:34.496000pt;}
.fsd_c01044{font-size:44.528000pt;}
.fsc_c01044{font-size:48.153776pt;}
.fs5_c01044{font-size:50.688176pt;}
.fs9_c01044{font-size:53.222576pt;}
.fsa_c01044{font-size:61.600000pt;}
.fse_c01044{font-size:64.064176pt;}
.fsb_c01044{font-size:65.120000pt;}
.fs2_c01044{font-size:65.824176pt;}
.fs8_c01044{font-size:66.176000pt;}
.fs7_c01044{font-size:68.288000pt;}
.fs3_c01044{font-size:76.032176pt;}
.fs1_c01044{font-size:80.256000pt;}
.y0_c01044{bottom:0.000000pt;}
.y1_c01044{bottom:68.000000pt;}
.y3_c01044{bottom:87.356747pt;}
.y20_c01044{bottom:114.282107pt;}
.y1f_c01044{bottom:142.798507pt;}
.y1e_c01044{bottom:170.993707pt;}
.y1d_c01044{bottom:227.379707pt;}
.y1c_c01044{bottom:255.891707pt;}
.y1b_c01044{bottom:283.457707pt;}
.y1a_c01044{bottom:311.331707pt;}
.y19_c01044{bottom:339.843707pt;}
.y18_c01044{bottom:367.405307pt;}
.y17_c01044{bottom:395.604907pt;}
.y16_c01044{bottom:423.478907pt;}
.y13_c01044{bottom:479.869307pt;}
.y15_c01044{bottom:488.110507pt;}
.y14_c01044{bottom:497.293307pt;}
.y12_c01044{bottom:507.430907pt;}
.y2_c01044{bottom:512.187307pt;}
.y11_c01044{bottom:536.259707pt;}
.y10_c01044{bottom:564.454907pt;}
.yf_c01044{bottom:592.654507pt;}
.ye_c01044{bottom:620.845307pt;}
.yd_c01044{bottom:649.361707pt;}
.yc_c01044{bottom:677.240107pt;}
.yb_c01044{bottom:706.068907pt;}
.ya_c01044{bottom:729.507707pt;}
.y8_c01044{bottom:733.630507pt;}
.y9_c01044{bottom:745.668907pt;}
.y7_c01044{bottom:761.508907pt;}
.y6_c01044{bottom:789.387307pt;}
.y5_c01044{bottom:817.578107pt;}
.y4_c01044{bottom:938.916907pt;}
.h6_c01044{height:23.312438pt;}
.h2_c01044{height:25.698750pt;}
.he_c01044{height:32.070415pt;}
.h7_c01044{height:33.758325pt;}
.hb_c01044{height:35.446236pt;}
.h8_c01044{height:35.978250pt;}
.hf_c01044{height:46.441313pt;}
.hc_c01044{height:60.457031pt;}
.h10_c01044{height:64.564677pt;}
.h4_c01044{height:64.602829pt;}
.ha_c01044{height:64.915813pt;}
.h9_c01044{height:67.020938pt;}
.hd_c01044{height:67.918125pt;}
.h5_c01044{height:74.621423pt;}
.h3_c01044{height:78.766875pt;}
.h1_c01044{height:986.666667pt;}
.h0_c01044{height:1122.666667pt;}
.w1_c01044{width:689.333333pt;}
.w0_c01044{width:793.333333pt;}
.x0_c01044{left:0.000000pt;}
.x3_c01044{left:8.442413pt;}
.x2_c01044{left:43.609853pt;}
.x1_c01044{left:52.000000pt;}
.x21_c01044{left:60.391453pt;}
.x19_c01044{left:61.698253pt;}
.xf_c01044{left:63.128253pt;}
.x51_c01044{left:80.565453pt;}
.x41_c01044{left:87.794653pt;}
.x31_c01044{left:89.594253pt;}
.x5e_c01044{left:91.055053pt;}
.x29_c01044{left:99.419453pt;}
.x1a_c01044{left:101.192653pt;}
.x5_c01044{left:110.423853pt;}
.x52_c01044{left:119.197453pt;}
.x42_c01044{left:120.711053pt;}
.x1b_c01044{left:129.638653pt;}
.x5b_c01044{left:139.067853pt;}
.x10_c01044{left:140.141453pt;}
.x4b_c01044{left:158.669853pt;}
.x6_c01044{left:159.761053pt;}
.x22_c01044{left:168.477453pt;}
.x47_c01044{left:169.907453pt;}
.x43_c01044{left:179.420253pt;}
.x53_c01044{left:187.221453pt;}
.x66_c01044{left:188.435853pt;}
.x2a_c01044{left:189.905453pt;}
.x32_c01044{left:198.362253pt;}
.x48_c01044{left:199.317053pt;}
.x2b_c01044{left:209.450253pt;}
.x23_c01044{left:219.007053pt;}
.x63_c01044{left:220.243453pt;}
.x5f_c01044{left:227.727853pt;}
.x33_c01044{left:228.832253pt;}
.x1c_c01044{left:239.238253pt;}
.x24_c01044{left:247.690653pt;}
.x4c_c01044{left:248.817053pt;}
.x64_c01044{left:257.947053pt;}
.x7_c01044{left:258.954653pt;}
.x6e_c01044{left:266.698653pt;}
.x11_c01044{left:268.458653pt;}
.x4d_c01044{left:278.015453pt;}
.x56_c01044{left:279.115453pt;}
.x6c_c01044{left:286.661453pt;}
.x37_c01044{left:288.021053pt;}
.x8_c01044{left:290.357453pt;}
.x12_c01044{left:298.233453pt;}
.x2c_c01044{left:307.640653pt;}
.x67_c01044{left:308.912253pt;}
.x69_c01044{left:316.467053pt;}
.x60_c01044{left:317.567053pt;}
.x57_c01044{left:318.508653pt;}
.x4e_c01044{left:325.557453pt;}
.x44_c01044{left:326.565053pt;}
.x25_c01044{left:327.660653pt;}
.x58_c01044{left:337.151453pt;}
.x3d_c01044{left:338.128253pt;}
.x6f_c01044{left:345.894253pt;}
.x1d_c01044{left:347.337453pt;}
.x5c_c01044{left:357.118653pt;}
.x6d_c01044{left:365.997853pt;}
.x3e_c01044{left:366.921853pt;}
.x38_c01044{left:377.002253pt;}
.x54_c01044{left:385.120253pt;}
.x13_c01044{left:386.620653pt;}
.x1e_c01044{left:387.720653pt;}
.x9_c01044{left:396.714253pt;}
.x71_c01044{left:405.637453pt;}
.x2d_c01044{left:406.557053pt;}
.x4f_c01044{left:408.713053pt;}
.x6a_c01044{left:415.726653pt;}
.x14_c01044{left:416.663853pt;}
.x72_c01044{left:424.152653pt;}
.x34_c01044{left:425.107453pt;}
.x50_c01044{left:426.225053pt;}
.xa_c01044{left:435.997453pt;}
.x1f_c01044{left:445.180253pt;}
.x3f_c01044{left:453.958253pt;}
.x15_c01044{left:454.873453pt;}
.x49_c01044{left:455.920653pt;}
.xb_c01044{left:464.095853pt;}
.x2e_c01044{left:465.305853pt;}
.x39_c01044{left:466.678653pt;}
.x20_c01044{left:474.202653pt;}
.x35_c01044{left:475.285053pt;}
.x45_c01044{left:484.846253pt;}
.x40_c01044{left:493.531853pt;}
.x3a_c01044{left:495.533853pt;}
.x65_c01044{left:503.343853pt;}
.xc_c01044{left:504.672653pt;}
.x36_c01044{left:514.440653pt;}
.x61_c01044{left:523.293453pt;}
.x55_c01044{left:525.141453pt;}
.x16_c01044{left:533.937053pt;}
.x6b_c01044{left:542.627053pt;}
.x2f_c01044{left:543.727053pt;}
.x27_c01044{left:553.121053pt;}
.x17_c01044{left:562.739453pt;}
.x73_c01044{left:572.265453pt;}
.xd_c01044{left:573.220253pt;}
.x70_c01044{left:581.267853pt;}
.x3b_c01044{left:582.345853pt;}
.x30_c01044{left:583.327053pt;}
.x4_c01044{left:592.795853pt;}
.x18_c01044{left:602.339453pt;}
.xe_c01044{left:603.259053pt;}
.x46_c01044{left:611.372653pt;}
.x3c_c01044{left:612.987453pt;}
.x68_c01044{left:621.202253pt;}
.x59_c01044{left:622.293453pt;}
.x26_c01044{left:624.247053pt;}
.x28_c01044{left:626.724253pt;}
.x5a_c01044{left:629.553453pt;}
.x62_c01044{left:631.762253pt;}
.x4a_c01044{left:641.609453pt;}
.x5d_c01044{left:652.398253pt;}
}





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

.ir_c01045:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01045{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01045;src:url('chunks/assets/font_95647c789cddd5aa6caa762d.woff2')format("woff");}.ff1_c01045{font-family:ff1_c01045;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01045;src:url('chunks/assets/font_542ef975ab7356014871cf75.woff2')format("woff");}.ff2_c01045{font-family:ff2_c01045;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01045;src:url('chunks/assets/font_93c7600169d02958c0abe020.woff2')format("woff");}.ff3_c01045{font-family:ff3_c01045;line-height:0.666000;font-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_c01045{transform:matrix(0.141448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141448,0.000000,0.000000,0.250000,0,0);}
.m6e_c01045{transform:matrix(0.151563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151563,0.000000,0.000000,0.250000,0,0);}
.mb7_c01045{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m87_c01045{transform:matrix(0.197369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197369,0.000000,0.000000,0.250000,0,0);}
.m60_c01045{transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);}
.m42_c01045{transform:matrix(0.237229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237229,0.000000,0.000000,0.250000,0,0);}
.ma8_c01045{transform:matrix(0.247736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247736,0.000000,0.000000,0.250000,0,0);}
.mf_c01045{transform:matrix(0.248682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248682,0.000000,0.000000,0.250000,0,0);}
.m0_c01045{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m8a_c01045{transform:matrix(0.250694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250694,0.000000,0.000000,0.250000,0,0);}
.m76_c01045{transform:matrix(0.259763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259763,0.000000,0.000000,0.250000,0,0);}
.m3_c01045{transform:matrix(0.264118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264118,0.000000,0.000000,0.250000,0,0);}
.mba_c01045{transform:matrix(0.264298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264298,0.000000,0.000000,0.250000,0,0);}
.m88_c01045{transform:matrix(0.265410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265410,0.000000,0.000000,0.250000,0,0);}
.m68_c01045{transform:matrix(0.267040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267040,0.000000,0.000000,0.250000,0,0);}
.m56_c01045{transform:matrix(0.269009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269009,0.000000,0.000000,0.250000,0,0);}
.m22_c01045{transform:matrix(0.269158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269158,0.000000,0.000000,0.250000,0,0);}
.m52_c01045{transform:matrix(0.270632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270632,0.000000,0.000000,0.250000,0,0);}
.m7c_c01045{transform:matrix(0.271676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271676,0.000000,0.000000,0.250000,0,0);}
.m65_c01045{transform:matrix(0.273170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273170,0.000000,0.000000,0.250000,0,0);}
.m43_c01045{transform:matrix(0.273583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273583,0.000000,0.000000,0.250000,0,0);}
.m4f_c01045{transform:matrix(0.273900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273900,0.000000,0.000000,0.250000,0,0);}
.m2d_c01045{transform:matrix(0.274848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274848,0.000000,0.000000,0.250000,0,0);}
.m48_c01045{transform:matrix(0.274900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274900,0.000000,0.000000,0.250000,0,0);}
.m7a_c01045{transform:matrix(0.274935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274935,0.000000,0.000000,0.250000,0,0);}
.m2c_c01045{transform:matrix(0.275886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275886,0.000000,0.000000,0.250000,0,0);}
.m72_c01045{transform:matrix(0.276310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276310,0.000000,0.000000,0.250000,0,0);}
.m8d_c01045{transform:matrix(0.276805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276805,0.000000,0.000000,0.250000,0,0);}
.m90_c01045{transform:matrix(0.276927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276927,0.000000,0.000000,0.250000,0,0);}
.maf_c01045{transform:matrix(0.278025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278025,0.000000,0.000000,0.250000,0,0);}
.m14_c01045{transform:matrix(0.278098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278098,0.000000,0.000000,0.250000,0,0);}
.m12_c01045{transform:matrix(0.278792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278792,0.000000,0.000000,0.250000,0,0);}
.m44_c01045{transform:matrix(0.279450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279450,0.000000,0.000000,0.250000,0,0);}
.m5e_c01045{transform:matrix(0.279710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279710,0.000000,0.000000,0.250000,0,0);}
.m1c_c01045{transform:matrix(0.280484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280484,0.000000,0.000000,0.250000,0,0);}
.m51_c01045{transform:matrix(0.280673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280673,0.000000,0.000000,0.250000,0,0);}
.m3e_c01045{transform:matrix(0.281872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281872,0.000000,0.000000,0.250000,0,0);}
.m18_c01045{transform:matrix(0.282590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282590,0.000000,0.000000,0.250000,0,0);}
.m5f_c01045{transform:matrix(0.283089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283089,0.000000,0.000000,0.250000,0,0);}
.m9b_c01045{transform:matrix(0.284348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284348,0.000000,0.000000,0.250000,0,0);}
.mac_c01045{transform:matrix(0.284499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284499,0.000000,0.000000,0.250000,0,0);}
.ma4_c01045{transform:matrix(0.284559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284559,0.000000,0.000000,0.250000,0,0);}
.m25_c01045{transform:matrix(0.286806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286806,0.000000,0.000000,0.250000,0,0);}
.m2e_c01045{transform:matrix(0.286817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286817,0.000000,0.000000,0.250000,0,0);}
.mb4_c01045{transform:matrix(0.287662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287662,0.000000,0.000000,0.250000,0,0);}
.ma2_c01045{transform:matrix(0.287974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287974,0.000000,0.000000,0.250000,0,0);}
.m97_c01045{transform:matrix(0.287987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287987,0.000000,0.000000,0.250000,0,0);}
.m7d_c01045{transform:matrix(0.288527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288527,0.000000,0.000000,0.250000,0,0);}
.m38_c01045{transform:matrix(0.288770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288770,0.000000,0.000000,0.250000,0,0);}
.m86_c01045{transform:matrix(0.288934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288934,0.000000,0.000000,0.250000,0,0);}
.m64_c01045{transform:matrix(0.288997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288997,0.000000,0.000000,0.250000,0,0);}
.ma1_c01045{transform:matrix(0.289360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289360,0.000000,0.000000,0.250000,0,0);}
.m10_c01045{transform:matrix(0.289616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289616,0.000000,0.000000,0.250000,0,0);}
.m28_c01045{transform:matrix(0.289692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289692,0.000000,0.000000,0.250000,0,0);}
.m8e_c01045{transform:matrix(0.290322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290322,0.000000,0.000000,0.250000,0,0);}
.m49_c01045{transform:matrix(0.291749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291749,0.000000,0.000000,0.250000,0,0);}
.m89_c01045{transform:matrix(0.291752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291752,0.000000,0.000000,0.250000,0,0);}
.m6d_c01045{transform:matrix(0.291762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291762,0.000000,0.000000,0.250000,0,0);}
.m7_c01045{transform:matrix(0.292112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292112,0.000000,0.000000,0.250000,0,0);}
.m13_c01045{transform:matrix(0.292874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292874,0.000000,0.000000,0.250000,0,0);}
.mb1_c01045{transform:matrix(0.293083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293083,0.000000,0.000000,0.250000,0,0);}
.m2_c01045{transform:matrix(0.294105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294105,0.000000,0.000000,0.250000,0,0);}
.m1f_c01045{transform:matrix(0.294198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294198,0.000000,0.000000,0.250000,0,0);}
.m91_c01045{transform:matrix(0.294958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294958,0.000000,0.000000,0.250000,0,0);}
.m3b_c01045{transform:matrix(0.295319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295319,0.000000,0.000000,0.250000,0,0);}
.mab_c01045{transform:matrix(0.296295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296295,0.000000,0.000000,0.250000,0,0);}
.m73_c01045{transform:matrix(0.297730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297730,0.000000,0.000000,0.250000,0,0);}
.m4c_c01045{transform:matrix(0.298403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298403,0.000000,0.000000,0.250000,0,0);}
.m9e_c01045{transform:matrix(0.299176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299176,0.000000,0.000000,0.250000,0,0);}
.m34_c01045{transform:matrix(0.300803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300803,0.000000,0.000000,0.250000,0,0);}
.m4_c01045{transform:matrix(0.300914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300914,0.000000,0.000000,0.250000,0,0);}
.m3c_c01045{transform:matrix(0.300993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300993,0.000000,0.000000,0.250000,0,0);}
.m31_c01045{transform:matrix(0.301444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301444,0.000000,0.000000,0.250000,0,0);}
.m5c_c01045{transform:matrix(0.303184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303184,0.000000,0.000000,0.250000,0,0);}
.m83_c01045{transform:matrix(0.303573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303573,0.000000,0.000000,0.250000,0,0);}
.m4e_c01045{transform:matrix(0.303929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303929,0.000000,0.000000,0.250000,0,0);}
.m94_c01045{transform:matrix(0.304054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304054,0.000000,0.000000,0.250000,0,0);}
.m78_c01045{transform:matrix(0.304494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304494,0.000000,0.000000,0.250000,0,0);}
.m8f_c01045{transform:matrix(0.304565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304565,0.000000,0.000000,0.250000,0,0);}
.m1b_c01045{transform:matrix(0.304751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304751,0.000000,0.000000,0.250000,0,0);}
.mb6_c01045{transform:matrix(0.305748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305748,0.000000,0.000000,0.250000,0,0);}
.m3d_c01045{transform:matrix(0.306387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306387,0.000000,0.000000,0.250000,0,0);}
.m1d_c01045{transform:matrix(0.306995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306995,0.000000,0.000000,0.250000,0,0);}
.m7e_c01045{transform:matrix(0.307105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307105,0.000000,0.000000,0.250000,0,0);}
.m50_c01045{transform:matrix(0.307454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307454,0.000000,0.000000,0.250000,0,0);}
.mb0_c01045{transform:matrix(0.307778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307778,0.000000,0.000000,0.250000,0,0);}
.m29_c01045{transform:matrix(0.308048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308048,0.000000,0.000000,0.250000,0,0);}
.m17_c01045{transform:matrix(0.308065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308065,0.000000,0.000000,0.250000,0,0);}
.md_c01045{transform:matrix(0.308897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308897,0.000000,0.000000,0.250000,0,0);}
.mb8_c01045{transform:matrix(0.308959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308959,0.000000,0.000000,0.250000,0,0);}
.m6a_c01045{transform:matrix(0.309591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309591,0.000000,0.000000,0.250000,0,0);}
.ma0_c01045{transform:matrix(0.310162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310162,0.000000,0.000000,0.250000,0,0);}
.m35_c01045{transform:matrix(0.310524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310524,0.000000,0.000000,0.250000,0,0);}
.m40_c01045{transform:matrix(0.311460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311460,0.000000,0.000000,0.250000,0,0);}
.m79_c01045{transform:matrix(0.312511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312511,0.000000,0.000000,0.250000,0,0);}
.m30_c01045{transform:matrix(0.312618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312618,0.000000,0.000000,0.250000,0,0);}
.m93_c01045{transform:matrix(0.313107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313107,0.000000,0.000000,0.250000,0,0);}
.m16_c01045{transform:matrix(0.313837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313837,0.000000,0.000000,0.250000,0,0);}
.mb2_c01045{transform:matrix(0.314097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314097,0.000000,0.000000,0.250000,0,0);}
.m4d_c01045{transform:matrix(0.314494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314494,0.000000,0.000000,0.250000,0,0);}
.m66_c01045{transform:matrix(0.314582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314582,0.000000,0.000000,0.250000,0,0);}
.m82_c01045{transform:matrix(0.314688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314688,0.000000,0.000000,0.250000,0,0);}
.m3a_c01045{transform:matrix(0.315819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315819,0.000000,0.000000,0.250000,0,0);}
.m8c_c01045{transform:matrix(0.316718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316718,0.000000,0.000000,0.250000,0,0);}
.m6f_c01045{transform:matrix(0.316744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316744,0.000000,0.000000,0.250000,0,0);}
.m5_c01045{transform:matrix(0.317138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317138,0.000000,0.000000,0.250000,0,0);}
.m8_c01045{transform:matrix(0.317239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317239,0.000000,0.000000,0.250000,0,0);}
.m33_c01045{transform:matrix(0.317749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317749,0.000000,0.000000,0.250000,0,0);}
.m81_c01045{transform:matrix(0.318158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318158,0.000000,0.000000,0.250000,0,0);}
.ma6_c01045{transform:matrix(0.318204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318204,0.000000,0.000000,0.250000,0,0);}
.m21_c01045{transform:matrix(0.318210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318210,0.000000,0.000000,0.250000,0,0);}
.ma3_c01045{transform:matrix(0.318400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318400,0.000000,0.000000,0.250000,0,0);}
.mb5_c01045{transform:matrix(0.319335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319335,0.000000,0.000000,0.250000,0,0);}
.m41_c01045{transform:matrix(0.319448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319448,0.000000,0.000000,0.250000,0,0);}
.m9_c01045{transform:matrix(0.319525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319525,0.000000,0.000000,0.250000,0,0);}
.m5a_c01045{transform:matrix(0.319674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319674,0.000000,0.000000,0.250000,0,0);}
.m32_c01045{transform:matrix(0.319939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319939,0.000000,0.000000,0.250000,0,0);}
.mc_c01045{transform:matrix(0.320121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320121,0.000000,0.000000,0.250000,0,0);}
.m20_c01045{transform:matrix(0.320856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320856,0.000000,0.000000,0.250000,0,0);}
.m95_c01045{transform:matrix(0.321551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321551,0.000000,0.000000,0.250000,0,0);}
.m1_c01045{transform:matrix(0.321780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321780,0.000000,0.000000,0.250000,0,0);}
.m74_c01045{transform:matrix(0.322557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322557,0.000000,0.000000,0.250000,0,0);}
.m96_c01045{transform:matrix(0.322575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322575,0.000000,0.000000,0.250000,0,0);}
.m71_c01045{transform:matrix(0.323251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323251,0.000000,0.000000,0.250000,0,0);}
.m92_c01045{transform:matrix(0.323841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323841,0.000000,0.000000,0.250000,0,0);}
.m98_c01045{transform:matrix(0.324590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324590,0.000000,0.000000,0.250000,0,0);}
.maa_c01045{transform:matrix(0.325793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325793,0.000000,0.000000,0.250000,0,0);}
.mb3_c01045{transform:matrix(0.326716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326716,0.000000,0.000000,0.250000,0,0);}
.m7f_c01045{transform:matrix(0.327347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327347,0.000000,0.000000,0.250000,0,0);}
.m2b_c01045{transform:matrix(0.328163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328163,0.000000,0.000000,0.250000,0,0);}
.m47_c01045{transform:matrix(0.328262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328262,0.000000,0.000000,0.250000,0,0);}
.m9d_c01045{transform:matrix(0.329063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329063,0.000000,0.000000,0.250000,0,0);}
.mb9_c01045{transform:matrix(0.329529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329529,0.000000,0.000000,0.250000,0,0);}
.m37_c01045{transform:matrix(0.329622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329622,0.000000,0.000000,0.250000,0,0);}
.m9c_c01045{transform:matrix(0.329778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329778,0.000000,0.000000,0.250000,0,0);}
.m85_c01045{transform:matrix(0.329978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329978,0.000000,0.000000,0.250000,0,0);}
.m9f_c01045{transform:matrix(0.330631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330631,0.000000,0.000000,0.250000,0,0);}
.m46_c01045{transform:matrix(0.331308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331308,0.000000,0.000000,0.250000,0,0);}
.m84_c01045{transform:matrix(0.333983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333983,0.000000,0.000000,0.250000,0,0);}
.m58_c01045{transform:matrix(0.334421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334421,0.000000,0.000000,0.250000,0,0);}
.m67_c01045{transform:matrix(0.334738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334738,0.000000,0.000000,0.250000,0,0);}
.m6b_c01045{transform:matrix(0.334771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334771,0.000000,0.000000,0.250000,0,0);}
.m55_c01045{transform:matrix(0.335270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335270,0.000000,0.000000,0.250000,0,0);}
.m9a_c01045{transform:matrix(0.335467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335467,0.000000,0.000000,0.250000,0,0);}
.m45_c01045{transform:matrix(0.336671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336671,0.000000,0.000000,0.250000,0,0);}
.m75_c01045{transform:matrix(0.336700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336700,0.000000,0.000000,0.250000,0,0);}
.mad_c01045{transform:matrix(0.336736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336736,0.000000,0.000000,0.250000,0,0);}
.m27_c01045{transform:matrix(0.339768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339768,0.000000,0.000000,0.250000,0,0);}
.m36_c01045{transform:matrix(0.340273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340273,0.000000,0.000000,0.250000,0,0);}
.m62_c01045{transform:matrix(0.340595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340595,0.000000,0.000000,0.250000,0,0);}
.mae_c01045{transform:matrix(0.342407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342407,0.000000,0.000000,0.250000,0,0);}
.m7b_c01045{transform:matrix(0.342467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342467,0.000000,0.000000,0.250000,0,0);}
.m77_c01045{transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);}
.m99_c01045{transform:matrix(0.343023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343023,0.000000,0.000000,0.250000,0,0);}
.m4b_c01045{transform:matrix(0.343362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343362,0.000000,0.000000,0.250000,0,0);}
.m6c_c01045{transform:matrix(0.344198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344198,0.000000,0.000000,0.250000,0,0);}
.m5b_c01045{transform:matrix(0.344318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344318,0.000000,0.000000,0.250000,0,0);}
.m24_c01045{transform:matrix(0.344671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344671,0.000000,0.000000,0.250000,0,0);}
.me_c01045{transform:matrix(0.345657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345657,0.000000,0.000000,0.250000,0,0);}
.m61_c01045{transform:matrix(0.346102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346102,0.000000,0.000000,0.250000,0,0);}
.m63_c01045{transform:matrix(0.346409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346409,0.000000,0.000000,0.250000,0,0);}
.m6_c01045{transform:matrix(0.346999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346999,0.000000,0.000000,0.250000,0,0);}
.m11_c01045{transform:matrix(0.347228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347228,0.000000,0.000000,0.250000,0,0);}
.m59_c01045{transform:matrix(0.347365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347365,0.000000,0.000000,0.250000,0,0);}
.ma9_c01045{transform:matrix(0.347481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347481,0.000000,0.000000,0.250000,0,0);}
.m80_c01045{transform:matrix(0.347763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347763,0.000000,0.000000,0.250000,0,0);}
.ma_c01045{transform:matrix(0.349036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349036,0.000000,0.000000,0.250000,0,0);}
.m57_c01045{transform:matrix(0.349282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349282,0.000000,0.000000,0.250000,0,0);}
.m26_c01045{transform:matrix(0.349785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349785,0.000000,0.000000,0.250000,0,0);}
.m1a_c01045{transform:matrix(0.350261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350261,0.000000,0.000000,0.250000,0,0);}
.m70_c01045{transform:matrix(0.350615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350615,0.000000,0.000000,0.250000,0,0);}
.ma5_c01045{transform:matrix(0.350664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350664,0.000000,0.000000,0.250000,0,0);}
.m3f_c01045{transform:matrix(0.352824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352824,0.000000,0.000000,0.250000,0,0);}
.m2a_c01045{transform:matrix(0.354758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354758,0.000000,0.000000,0.250000,0,0);}
.m5d_c01045{transform:matrix(0.357895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357895,0.000000,0.000000,0.250000,0,0);}
.m19_c01045{transform:matrix(0.359239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359239,0.000000,0.000000,0.250000,0,0);}
.m39_c01045{transform:matrix(0.362851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362851,0.000000,0.000000,0.250000,0,0);}
.m8b_c01045{transform:matrix(0.365216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365216,0.000000,0.000000,0.250000,0,0);}
.m4a_c01045{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);}
.m1e_c01045{transform:matrix(0.369903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369903,0.000000,0.000000,0.250000,0,0);}
.m54_c01045{transform:matrix(0.371410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371410,0.000000,0.000000,0.250000,0,0);}
.m69_c01045{transform:matrix(0.384808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384808,0.000000,0.000000,0.250000,0,0);}
.mb_c01045{transform:matrix(0.389171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389171,0.000000,0.000000,0.250000,0,0);}
.m23_c01045{transform:matrix(0.389444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389444,0.000000,0.000000,0.250000,0,0);}
.m15_c01045{transform:matrix(0.395355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395355,0.000000,0.000000,0.250000,0,0);}
.m2f_c01045{transform:matrix(0.401732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401732,0.000000,0.000000,0.250000,0,0);}
.m53_c01045{transform:matrix(0.408109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408109,0.000000,0.000000,0.250000,0,0);}
.v0_c01045{vertical-align:0.000000px;}
.ls4_c01045{letter-spacing:-2.591827px;}
.lse_c01045{letter-spacing:-1.725416px;}
.ls1_c01045{letter-spacing:0.000000px;}
.lsc_c01045{letter-spacing:1.236672px;}
.ls0_c01045{letter-spacing:1.421802px;}
.lsb_c01045{letter-spacing:1.702810px;}
.ls5_c01045{letter-spacing:1.769848px;}
.lsd_c01045{letter-spacing:1.836495px;}
.ls3_c01045{letter-spacing:1.888331px;}
.ls8_c01045{letter-spacing:2.243782px;}
.lsf_c01045{letter-spacing:2.354860px;}
.ls2_c01045{letter-spacing:3.702610px;}
.lsa_c01045{letter-spacing:3.880810px;}
.ls6_c01045{letter-spacing:49.896198px;}
.ls10_c01045{letter-spacing:51.321798px;}
.ls9_c01045{letter-spacing:54.172998px;}
.ls7_c01045{letter-spacing:57.024198px;}
.sc__c01045{text-shadow:none;}
.sc0_c01045{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01045{-webkit-text-stroke:0px transparent;}
.sc0_c01045{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01045{word-spacing:-18.513050px;}
.ws1_c01045{word-spacing:0.000000px;}
._2_c01045{width:3.110844px;}
._6_c01045{width:4.591323px;}
._3_c01045{width:7.479929px;}
._4_c01045{width:14.144042px;}
._0_c01045{width:27.622557px;}
._5_c01045{width:35.608975px;}
._1_c01045{width:38.174301px;}
.fc0_c01045{color:transparent;}
.fs0_c01045{font-size:22.176000px;}
.fsc_c01045{font-size:25.344000px;}
.fsa_c01045{font-size:32.868000px;}
.fsd_c01045{font-size:33.660000px;}
.fsb_c01045{font-size:34.056198px;}
.fsf_c01045{font-size:39.204000px;}
.fs6_c01045{font-size:49.896198px;}
.fse_c01045{font-size:51.321798px;}
.fs8_c01045{font-size:54.172998px;}
.fs7_c01045{font-size:57.024198px;}
.fs3_c01045{font-size:64.548000px;}
.fs1_c01045{font-size:74.052198px;}
.fs2_c01045{font-size:74.844000px;}
.fs4_c01045{font-size:76.824000px;}
.fs9_c01045{font-size:77.616198px;}
.fs5_c01045{font-size:79.398000px;}
.y0_c01045{bottom:0.000000px;}
.y1_c01045{bottom:76.500000px;}
.y1e_c01045{bottom:98.273385px;}
.y1d_c01045{bottom:134.631135px;}
.y1c_c01045{bottom:198.778185px;}
.y1b_c01045{bottom:220.518585px;}
.y1a_c01045{bottom:229.077135px;}
.y18_c01045{bottom:229.789935px;}
.y19_c01045{bottom:241.551135px;}
.y17_c01045{bottom:262.217385px;}
.y16_c01045{bottom:293.580585px;}
.y15_c01045{bottom:324.948735px;}
.y14_c01045{bottom:357.376185px;}
.y13_c01045{bottom:388.744335px;}
.y12_c01045{bottom:420.820335px;}
.y11_c01045{bottom:451.827135px;}
.y10_c01045{bottom:484.254585px;}
.yf_c01045{bottom:515.622735px;}
.ye_c01045{bottom:548.055135px;}
.yd_c01045{bottom:610.425135px;}
.yc_c01045{bottom:642.144735px;}
.yb_c01045{bottom:673.151535px;}
.ya_c01045{bottom:704.866185px;}
.y9_c01045{bottom:736.590735px;}
.y8_c01045{bottom:768.661785px;}
.y7_c01045{bottom:800.742735px;}
.y6_c01045{bottom:833.175135px;}
.y5_c01045{bottom:864.538335px;}
.y4_c01045{bottom:896.609385px;}
.y3_c01045{bottom:928.333935px;}
.y2_c01045{bottom:1074.809385px;}
.h2_c01045{height:23.128875px;}
.he_c01045{height:24.873750px;}
.hf_c01045{height:33.035449px;}
.h8_c01045{height:33.230868px;}
.h10_c01045{height:34.180317px;}
.hc_c01045{height:34.280297px;}
.hd_c01045{height:35.519550px;}
.ha_c01045{height:36.079217px;}
.h9_c01045{height:37.978116px;}
.h11_c01045{height:38.476582px;}
.h5_c01045{height:67.321547px;}
.h3_c01045{height:72.678183px;}
.h4_c01045{height:73.455293px;}
.h6_c01045{height:75.398555px;}
.hb_c01045{height:76.176054px;}
.h7_c01045{height:77.924795px;}
.h1_c01045{height:1110.000000px;}
.h0_c01045{height:1263.000000px;}
.w1_c01045{width:775.500000px;}
.w0_c01045{width:892.500000px;}
.x0_c01045{left:0.000000px;}
.x1_c01045{left:58.500000px;}
.x31_c01045{left:66.935535px;}
.x3_c01045{left:68.841285px;}
.x56_c01045{left:70.771785px;}
.x5a_c01045{left:90.175785px;}
.x3a_c01045{left:99.729285px;}
.x22_c01045{left:100.991535px;}
.x17_c01045{left:111.638985px;}
.x3e_c01045{left:112.732935px;}
.x4_c01045{left:122.731935px;}
.x18_c01045{left:145.496985px;}
.xf_c01045{left:155.347485px;}
.x32_c01045{left:156.471135px;}
.x3b_c01045{left:167.291835px;}
.x47_c01045{left:168.306585px;}
.x5_c01045{left:179.062935px;}
.x35_c01045{left:189.759885px;}
.x33_c01045{left:201.728985px;}
.x6_c01045{left:211.648785px;}
.x57_c01045{left:212.717985px;}
.x51_c01045{left:221.974485px;}
.x48_c01045{left:223.122885px;}
.x23_c01045{left:233.527785px;}
.x5c_c01045{left:236.765085px;}
.x5d_c01045{left:244.427685px;}
.x36_c01045{left:246.021585px;}
.x19_c01045{left:257.065035px;}
.x24_c01045{left:267.049185px;}
.x3f_c01045{left:268.474785px;}
.x7_c01045{left:278.706435px;}
.x6b_c01045{left:280.280535px;}
.x45_c01045{left:289.695435px;}
.x5e_c01045{left:291.526935px;}
.x40_c01045{left:301.303185px;}
.x10_c01045{left:311.762535px;}
.x5b_c01045{left:313.004985px;}
.x6a_c01045{left:314.623635px;}
.x6c_c01045{left:318.553935px;}
.x66_c01045{left:323.340585px;}
.x54_c01045{left:324.706785px;}
.x4c_c01045{left:333.225735px;}
.x8_c01045{left:334.730535px;}
.x37_c01045{left:335.740335px;}
.x3c_c01045{left:346.145235px;}
.x34_c01045{left:356.847135px;}
.x25_c01045{left:367.182735px;}
.x63_c01045{left:368.667735px;}
.x1a_c01045{left:378.280635px;}
.x46_c01045{left:379.508235px;}
.x5f_c01045{left:381.364485px;}
.x11_c01045{left:389.338935px;}
.x9_c01045{left:390.640785px;}
.x6d_c01045{left:391.670385px;}
.x4f_c01045{left:399.823035px;}
.x26_c01045{left:401.011035px;}
.x1b_c01045{left:411.420885px;}
.x58_c01045{left:413.425635px;}
.xa_c01045{left:422.632635px;}
.x2b_c01045{left:423.805785px;}
.x12_c01045{left:432.255435px;}
.x43_c01045{left:434.596785px;}
.x52_c01045{left:445.085835px;}
.x50_c01045{left:446.288685px;}
.x3d_c01045{left:447.328185px;}
.x1c_c01045{left:456.243135px;}
.x13_c01045{left:467.039085px;}
.x55_c01045{left:468.652785px;}
.x2c_c01045{left:478.399335px;}
.x64_c01045{left:488.616135px;}
.x1d_c01045{left:489.749685px;}
.x2_c01045{left:499.219035px;}
.x49_c01045{left:500.842635px;}
.x6e_c01045{left:502.154385px;}
.x2d_c01045{left:510.802035px;}
.xb_c01045{left:512.222685px;}
.xc_c01045{left:522.261285px;}
.x67_c01045{left:523.469085px;}
.x27_c01045{left:532.324635px;}
.x41_c01045{left:533.671035px;}
.x2e_c01045{left:543.457185px;}
.x14_c01045{left:544.640235px;}
.x38_c01045{left:556.099485px;}
.x6f_c01045{left:565.197585px;}
.x28_c01045{left:566.756835px;}
.x65_c01045{left:576.597435px;}
.x62_c01045{left:578.225985px;}
.x1e_c01045{left:588.868485px;}
.x4a_c01045{left:589.992135px;}
.x59_c01045{left:598.644735px;}
.x4d_c01045{left:599.976285px;}
.x15_c01045{left:610.297035px;}
.x39_c01045{left:621.434535px;}
.x2f_c01045{left:623.058135px;}
.x29_c01045{left:632.408685px;}
.x70_c01045{left:634.507485px;}
.x16_c01045{left:644.130285px;}
.x4b_c01045{left:645.219285px;}
.xd_c01045{left:655.119285px;}
.x4e_c01045{left:656.406285px;}
.x30_c01045{left:665.499435px;}
.x60_c01045{left:666.608235px;}
.x1f_c01045{left:675.686535px;}
.x42_c01045{left:676.740885px;}
.x2a_c01045{left:687.437835px;}
.x44_c01045{left:688.705035px;}
.x61_c01045{left:699.337635px;}
.x68_c01045{left:704.233185px;}
.x69_c01045{left:707.307135px;}
.xe_c01045{left:709.321785px;}
.x20_c01045{left:710.395935px;}
.x53_c01045{left:722.830335px;}
.x21_c01045{left:732.878835px;}
.x71_c01045{left:752.901585px;}
@media print{
.v0_c01045{vertical-align:0.000000pt;}
.ls4_c01045{letter-spacing:-2.303846pt;}
.lse_c01045{letter-spacing:-1.533703pt;}
.ls1_c01045{letter-spacing:0.000000pt;}
.lsc_c01045{letter-spacing:1.099264pt;}
.ls0_c01045{letter-spacing:1.263824pt;}
.lsb_c01045{letter-spacing:1.513609pt;}
.ls5_c01045{letter-spacing:1.573198pt;}
.lsd_c01045{letter-spacing:1.632440pt;}
.ls3_c01045{letter-spacing:1.678516pt;}
.ls8_c01045{letter-spacing:1.994473pt;}
.lsf_c01045{letter-spacing:2.093209pt;}
.ls2_c01045{letter-spacing:3.291209pt;}
.lsa_c01045{letter-spacing:3.449609pt;}
.ls6_c01045{letter-spacing:44.352176pt;}
.ls10_c01045{letter-spacing:45.619376pt;}
.ls9_c01045{letter-spacing:48.153776pt;}
.ls7_c01045{letter-spacing:50.688176pt;}
.ws0_c01045{word-spacing:-16.456044pt;}
.ws1_c01045{word-spacing:0.000000pt;}
._2_c01045{width:2.765195pt;}
._6_c01045{width:4.081176pt;}
._3_c01045{width:6.648825pt;}
._4_c01045{width:12.572482pt;}
._0_c01045{width:24.553384pt;}
._5_c01045{width:31.652422pt;}
._1_c01045{width:33.932712pt;}
.fs0_c01045{font-size:19.712000pt;}
.fsc_c01045{font-size:22.528000pt;}
.fsa_c01045{font-size:29.216000pt;}
.fsd_c01045{font-size:29.920000pt;}
.fsb_c01045{font-size:30.272176pt;}
.fsf_c01045{font-size:34.848000pt;}
.fs6_c01045{font-size:44.352176pt;}
.fse_c01045{font-size:45.619376pt;}
.fs8_c01045{font-size:48.153776pt;}
.fs7_c01045{font-size:50.688176pt;}
.fs3_c01045{font-size:57.376000pt;}
.fs1_c01045{font-size:65.824176pt;}
.fs2_c01045{font-size:66.528000pt;}
.fs4_c01045{font-size:68.288000pt;}
.fs9_c01045{font-size:68.992176pt;}
.fs5_c01045{font-size:70.576000pt;}
.y0_c01045{bottom:0.000000pt;}
.y1_c01045{bottom:68.000000pt;}
.y1e_c01045{bottom:87.354120pt;}
.y1d_c01045{bottom:119.672120pt;}
.y1c_c01045{bottom:176.691720pt;}
.y1b_c01045{bottom:196.016520pt;}
.y1a_c01045{bottom:203.624120pt;}
.y18_c01045{bottom:204.257720pt;}
.y19_c01045{bottom:214.712120pt;}
.y17_c01045{bottom:233.082120pt;}
.y16_c01045{bottom:260.960520pt;}
.y15_c01045{bottom:288.843320pt;}
.y14_c01045{bottom:317.667720pt;}
.y13_c01045{bottom:345.550520pt;}
.y12_c01045{bottom:374.062520pt;}
.y11_c01045{bottom:401.624120pt;}
.y10_c01045{bottom:430.448520pt;}
.yf_c01045{bottom:458.331320pt;}
.ye_c01045{bottom:487.160120pt;}
.yd_c01045{bottom:542.600120pt;}
.yc_c01045{bottom:570.795320pt;}
.yb_c01045{bottom:598.356920pt;}
.ya_c01045{bottom:626.547720pt;}
.y9_c01045{bottom:654.747320pt;}
.y8_c01045{bottom:683.254920pt;}
.y7_c01045{bottom:711.771320pt;}
.y6_c01045{bottom:740.600120pt;}
.y5_c01045{bottom:768.478520pt;}
.y4_c01045{bottom:796.986120pt;}
.y3_c01045{bottom:825.185720pt;}
.y2_c01045{bottom:955.386120pt;}
.h2_c01045{height:20.559000pt;}
.he_c01045{height:22.110000pt;}
.hf_c01045{height:29.364844pt;}
.h8_c01045{height:29.538549pt;}
.h10_c01045{height:30.382504pt;}
.hc_c01045{height:30.471375pt;}
.hd_c01045{height:31.572934pt;}
.ha_c01045{height:32.070415pt;}
.h9_c01045{height:33.758325pt;}
.h11_c01045{height:34.201406pt;}
.h5_c01045{height:59.841375pt;}
.h3_c01045{height:64.602829pt;}
.h4_c01045{height:65.293594pt;}
.h6_c01045{height:67.020938pt;}
.hb_c01045{height:67.712048pt;}
.h7_c01045{height:69.266484pt;}
.h1_c01045{height:986.666667pt;}
.h0_c01045{height:1122.666667pt;}
.w1_c01045{width:689.333333pt;}
.w0_c01045{width:793.333333pt;}
.x0_c01045{left:0.000000pt;}
.x1_c01045{left:52.000000pt;}
.x31_c01045{left:59.498253pt;}
.x3_c01045{left:61.192253pt;}
.x56_c01045{left:62.908253pt;}
.x5a_c01045{left:80.156253pt;}
.x3a_c01045{left:88.648253pt;}
.x22_c01045{left:89.770253pt;}
.x17_c01045{left:99.234653pt;}
.x3e_c01045{left:100.207053pt;}
.x4_c01045{left:109.095053pt;}
.x18_c01045{left:129.330653pt;}
.xf_c01045{left:138.086653pt;}
.x32_c01045{left:139.085453pt;}
.x3b_c01045{left:148.703853pt;}
.x47_c01045{left:149.605853pt;}
.x5_c01045{left:159.167053pt;}
.x35_c01045{left:168.675453pt;}
.x33_c01045{left:179.314653pt;}
.x6_c01045{left:188.132253pt;}
.x57_c01045{left:189.082653pt;}
.x51_c01045{left:197.310653pt;}
.x48_c01045{left:198.331453pt;}
.x23_c01045{left:207.580253pt;}
.x5c_c01045{left:210.457853pt;}
.x5d_c01045{left:217.269053pt;}
.x36_c01045{left:218.685853pt;}
.x19_c01045{left:228.502253pt;}
.x24_c01045{left:237.377053pt;}
.x3f_c01045{left:238.644253pt;}
.x7_c01045{left:247.739053pt;}
.x6b_c01045{left:249.138253pt;}
.x45_c01045{left:257.507053pt;}
.x5e_c01045{left:259.135053pt;}
.x40_c01045{left:267.825053pt;}
.x10_c01045{left:277.122253pt;}
.x5b_c01045{left:278.226653pt;}
.x6a_c01045{left:279.665453pt;}
.x6c_c01045{left:283.159053pt;}
.x66_c01045{left:287.413853pt;}
.x54_c01045{left:288.628253pt;}
.x4c_c01045{left:296.200653pt;}
.x8_c01045{left:297.538253pt;}
.x37_c01045{left:298.435853pt;}
.x3c_c01045{left:307.684653pt;}
.x34_c01045{left:317.197453pt;}
.x25_c01045{left:326.384653pt;}
.x63_c01045{left:327.704653pt;}
.x1a_c01045{left:336.249453pt;}
.x46_c01045{left:337.340653pt;}
.x5f_c01045{left:338.990653pt;}
.x11_c01045{left:346.079053pt;}
.x9_c01045{left:347.236253pt;}
.x6d_c01045{left:348.151453pt;}
.x4f_c01045{left:355.398253pt;}
.x26_c01045{left:356.454253pt;}
.x1b_c01045{left:365.707453pt;}
.x58_c01045{left:367.489453pt;}
.xa_c01045{left:375.673453pt;}
.x2b_c01045{left:376.716253pt;}
.x12_c01045{left:384.227053pt;}
.x43_c01045{left:386.308253pt;}
.x52_c01045{left:395.631853pt;}
.x50_c01045{left:396.701053pt;}
.x3d_c01045{left:397.625053pt;}
.x1c_c01045{left:405.549453pt;}
.x13_c01045{left:415.145853pt;}
.x55_c01045{left:416.580253pt;}
.x2c_c01045{left:425.243853pt;}
.x64_c01045{left:434.325453pt;}
.x1d_c01045{left:435.333053pt;}
.x2_c01045{left:443.750253pt;}
.x49_c01045{left:445.193453pt;}
.x6e_c01045{left:446.359453pt;}
.x2d_c01045{left:454.046253pt;}
.xb_c01045{left:455.309053pt;}
.xc_c01045{left:464.232253pt;}
.x67_c01045{left:465.305853pt;}
.x27_c01045{left:473.177453pt;}
.x41_c01045{left:474.374253pt;}
.x2e_c01045{left:483.073053pt;}
.x14_c01045{left:484.124653pt;}
.x38_c01045{left:494.310653pt;}
.x6f_c01045{left:502.397853pt;}
.x28_c01045{left:503.783853pt;}
.x65_c01045{left:512.531053pt;}
.x62_c01045{left:513.978653pt;}
.x1e_c01045{left:523.438653pt;}
.x4a_c01045{left:524.437453pt;}
.x59_c01045{left:532.128653pt;}
.x4d_c01045{left:533.312253pt;}
.x15_c01045{left:542.486253pt;}
.x39_c01045{left:552.386253pt;}
.x2f_c01045{left:553.829453pt;}
.x29_c01045{left:562.141053pt;}
.x70_c01045{left:564.006653pt;}
.x16_c01045{left:572.560253pt;}
.x4b_c01045{left:573.528253pt;}
.xd_c01045{left:582.328253pt;}
.x4e_c01045{left:583.472253pt;}
.x30_c01045{left:591.555053pt;}
.x60_c01045{left:592.540653pt;}
.x1f_c01045{left:600.610253pt;}
.x42_c01045{left:601.547453pt;}
.x2a_c01045{left:611.055853pt;}
.x44_c01045{left:612.182253pt;}
.x61_c01045{left:621.633453pt;}
.x68_c01045{left:625.985053pt;}
.x69_c01045{left:628.717453pt;}
.xe_c01045{left:630.508253pt;}
.x20_c01045{left:631.463053pt;}
.x53_c01045{left:642.515853pt;}
.x21_c01045{left:651.447853pt;}
.x71_c01045{left:669.245853pt;}
}





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

.ir_c01046:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01046{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01046;src:url('chunks/assets/font_41cc7d517d125f72c358f5de.woff2')format("woff");}.ff1_c01046{font-family:ff1_c01046;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01046;src:url('chunks/assets/font_bf4de40987de9eacc5ca267c.woff2')format("woff");}.ff2_c01046{font-family:ff2_c01046;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m9_c01046{transform:matrix(0.212291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212291,0.000000,0.000000,0.250000,0,0);}
.m1_c01046{transform:matrix(0.227268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227268,0.000000,0.000000,0.250000,0,0);}
.m6b_c01046{transform:matrix(0.230261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230261,0.000000,0.000000,0.250000,0,0);}
.m2d_c01046{transform:matrix(0.249150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249150,0.000000,0.000000,0.250000,0,0);}
.m2_c01046{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m70_c01046{transform:matrix(0.250430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250430,0.000000,0.000000,0.250000,0,0);}
.m14_c01046{transform:matrix(0.252062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252062,0.000000,0.000000,0.250000,0,0);}
.m32_c01046{transform:matrix(0.255864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255864,0.000000,0.000000,0.250000,0,0);}
.m17_c01046{transform:matrix(0.260634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260634,0.000000,0.000000,0.250000,0,0);}
.m0_c01046{transform:matrix(0.260747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260747,0.000000,0.000000,0.250000,0,0);}
.m2b_c01046{transform:matrix(0.263517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263517,0.000000,0.000000,0.250000,0,0);}
.m3b_c01046{transform:matrix(0.265460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265460,0.000000,0.000000,0.250000,0,0);}
.m4d_c01046{transform:matrix(0.269567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269567,0.000000,0.000000,0.250000,0,0);}
.m7_c01046{transform:matrix(0.270287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270287,0.000000,0.000000,0.250000,0,0);}
.m1a_c01046{transform:matrix(0.270527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270527,0.000000,0.000000,0.250000,0,0);}
.m5e_c01046{transform:matrix(0.271195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271195,0.000000,0.000000,0.250000,0,0);}
.m48_c01046{transform:matrix(0.271287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271287,0.000000,0.000000,0.250000,0,0);}
.m12_c01046{transform:matrix(0.272246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272246,0.000000,0.000000,0.250000,0,0);}
.m11_c01046{transform:matrix(0.272639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272639,0.000000,0.000000,0.250000,0,0);}
.m64_c01046{transform:matrix(0.272665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272665,0.000000,0.000000,0.250000,0,0);}
.mc_c01046{transform:matrix(0.273274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273274,0.000000,0.000000,0.250000,0,0);}
.m6a_c01046{transform:matrix(0.273358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273358,0.000000,0.000000,0.250000,0,0);}
.m6_c01046{transform:matrix(0.274539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274539,0.000000,0.000000,0.250000,0,0);}
.m21_c01046{transform:matrix(0.275114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275114,0.000000,0.000000,0.250000,0,0);}
.m4c_c01046{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);}
.m1e_c01046{transform:matrix(0.275764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275764,0.000000,0.000000,0.250000,0,0);}
.m51_c01046{transform:matrix(0.276403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276403,0.000000,0.000000,0.250000,0,0);}
.m25_c01046{transform:matrix(0.278154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278154,0.000000,0.000000,0.250000,0,0);}
.m43_c01046{transform:matrix(0.278862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278862,0.000000,0.000000,0.250000,0,0);}
.m66_c01046{transform:matrix(0.279718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279718,0.000000,0.000000,0.250000,0,0);}
.m1f_c01046{transform:matrix(0.283033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283033,0.000000,0.000000,0.250000,0,0);}
.m4a_c01046{transform:matrix(0.285851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285851,0.000000,0.000000,0.250000,0,0);}
.m68_c01046{transform:matrix(0.286740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286740,0.000000,0.000000,0.250000,0,0);}
.m3a_c01046{transform:matrix(0.287181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287181,0.000000,0.000000,0.250000,0,0);}
.m75_c01046{transform:matrix(0.287834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287834,0.000000,0.000000,0.250000,0,0);}
.m47_c01046{transform:matrix(0.289151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289151,0.000000,0.000000,0.250000,0,0);}
.m8_c01046{transform:matrix(0.289407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289407,0.000000,0.000000,0.250000,0,0);}
.m74_c01046{transform:matrix(0.289648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289648,0.000000,0.000000,0.250000,0,0);}
.m22_c01046{transform:matrix(0.291067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291067,0.000000,0.000000,0.250000,0,0);}
.m71_c01046{transform:matrix(0.292191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292191,0.000000,0.000000,0.250000,0,0);}
.mf_c01046{transform:matrix(0.292817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292817,0.000000,0.000000,0.250000,0,0);}
.m6f_c01046{transform:matrix(0.293020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293020,0.000000,0.000000,0.250000,0,0);}
.m67_c01046{transform:matrix(0.293499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293499,0.000000,0.000000,0.250000,0,0);}
.m5c_c01046{transform:matrix(0.293802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293802,0.000000,0.000000,0.250000,0,0);}
.m27_c01046{transform:matrix(0.293826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293826,0.000000,0.000000,0.250000,0,0);}
.m15_c01046{transform:matrix(0.294370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294370,0.000000,0.000000,0.250000,0,0);}
.m60_c01046{transform:matrix(0.295676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295676,0.000000,0.000000,0.250000,0,0);}
.m5b_c01046{transform:matrix(0.296363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296363,0.000000,0.000000,0.250000,0,0);}
.m59_c01046{transform:matrix(0.297454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297454,0.000000,0.000000,0.250000,0,0);}
.m5f_c01046{transform:matrix(0.297702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297702,0.000000,0.000000,0.250000,0,0);}
.m5d_c01046{transform:matrix(0.297704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297704,0.000000,0.000000,0.250000,0,0);}
.m63_c01046{transform:matrix(0.298569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298569,0.000000,0.000000,0.250000,0,0);}
.m19_c01046{transform:matrix(0.298741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298741,0.000000,0.000000,0.250000,0,0);}
.m3c_c01046{transform:matrix(0.298858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298858,0.000000,0.000000,0.250000,0,0);}
.m29_c01046{transform:matrix(0.298954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298954,0.000000,0.000000,0.250000,0,0);}
.m2f_c01046{transform:matrix(0.299086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299086,0.000000,0.000000,0.250000,0,0);}
.ma_c01046{transform:matrix(0.299346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299346,0.000000,0.000000,0.250000,0,0);}
.m46_c01046{transform:matrix(0.301378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301378,0.000000,0.000000,0.250000,0,0);}
.m5_c01046{transform:matrix(0.301496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301496,0.000000,0.000000,0.250000,0,0);}
.m52_c01046{transform:matrix(0.301563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301563,0.000000,0.000000,0.250000,0,0);}
.m38_c01046{transform:matrix(0.301709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301709,0.000000,0.000000,0.250000,0,0);}
.m13_c01046{transform:matrix(0.302505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302505,0.000000,0.000000,0.250000,0,0);}
.m1c_c01046{transform:matrix(0.302944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302944,0.000000,0.000000,0.250000,0,0);}
.m42_c01046{transform:matrix(0.303192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303192,0.000000,0.000000,0.250000,0,0);}
.m45_c01046{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);}
.m23_c01046{transform:matrix(0.304968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304968,0.000000,0.000000,0.250000,0,0);}
.m57_c01046{transform:matrix(0.305373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305373,0.000000,0.000000,0.250000,0,0);}
.m61_c01046{transform:matrix(0.306719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306719,0.000000,0.000000,0.250000,0,0);}
.m69_c01046{transform:matrix(0.309816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309816,0.000000,0.000000,0.250000,0,0);}
.m24_c01046{transform:matrix(0.310016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310016,0.000000,0.000000,0.250000,0,0);}
.m3f_c01046{transform:matrix(0.310963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310963,0.000000,0.000000,0.250000,0,0);}
.m33_c01046{transform:matrix(0.312685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312685,0.000000,0.000000,0.250000,0,0);}
.m73_c01046{transform:matrix(0.314070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314070,0.000000,0.000000,0.250000,0,0);}
.m20_c01046{transform:matrix(0.314228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314228,0.000000,0.000000,0.250000,0,0);}
.m39_c01046{transform:matrix(0.315173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315173,0.000000,0.000000,0.250000,0,0);}
.m58_c01046{transform:matrix(0.315343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315343,0.000000,0.000000,0.250000,0,0);}
.m53_c01046{transform:matrix(0.317681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317681,0.000000,0.000000,0.250000,0,0);}
.m2e_c01046{transform:matrix(0.317997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317997,0.000000,0.000000,0.250000,0,0);}
.m44_c01046{transform:matrix(0.318371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318371,0.000000,0.000000,0.250000,0,0);}
.m77_c01046{transform:matrix(0.318570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318570,0.000000,0.000000,0.250000,0,0);}
.m79_c01046{transform:matrix(0.319845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319845,0.000000,0.000000,0.250000,0,0);}
.m36_c01046{transform:matrix(0.322302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322302,0.000000,0.000000,0.250000,0,0);}
.m5a_c01046{transform:matrix(0.322419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322419,0.000000,0.000000,0.250000,0,0);}
.m40_c01046{transform:matrix(0.322988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322988,0.000000,0.000000,0.250000,0,0);}
.m2c_c01046{transform:matrix(0.323772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323772,0.000000,0.000000,0.250000,0,0);}
.m1b_c01046{transform:matrix(0.323831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323831,0.000000,0.000000,0.250000,0,0);}
.m65_c01046{transform:matrix(0.323885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323885,0.000000,0.000000,0.250000,0,0);}
.m3e_c01046{transform:matrix(0.324425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324425,0.000000,0.000000,0.250000,0,0);}
.m30_c01046{transform:matrix(0.325340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325340,0.000000,0.000000,0.250000,0,0);}
.m31_c01046{transform:matrix(0.326785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326785,0.000000,0.000000,0.250000,0,0);}
.m28_c01046{transform:matrix(0.328093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328093,0.000000,0.000000,0.250000,0,0);}
.m4e_c01046{transform:matrix(0.328395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328395,0.000000,0.000000,0.250000,0,0);}
.m3_c01046{transform:matrix(0.328991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328991,0.000000,0.000000,0.250000,0,0);}
.m55_c01046{transform:matrix(0.331307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331307,0.000000,0.000000,0.250000,0,0);}
.m2a_c01046{transform:matrix(0.332940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332940,0.000000,0.000000,0.250000,0,0);}
.m10_c01046{transform:matrix(0.333018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333018,0.000000,0.000000,0.250000,0,0);}
.m6d_c01046{transform:matrix(0.333138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333138,0.000000,0.000000,0.250000,0,0);}
.m76_c01046{transform:matrix(0.333545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333545,0.000000,0.000000,0.250000,0,0);}
.m4b_c01046{transform:matrix(0.333862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333862,0.000000,0.000000,0.250000,0,0);}
.m72_c01046{transform:matrix(0.334810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334810,0.000000,0.000000,0.250000,0,0);}
.me_c01046{transform:matrix(0.338942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338942,0.000000,0.000000,0.250000,0,0);}
.m62_c01046{transform:matrix(0.340157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340157,0.000000,0.000000,0.250000,0,0);}
.m4f_c01046{transform:matrix(0.342886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342886,0.000000,0.000000,0.250000,0,0);}
.m26_c01046{transform:matrix(0.348169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348169,0.000000,0.000000,0.250000,0,0);}
.m54_c01046{transform:matrix(0.354085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354085,0.000000,0.000000,0.250000,0,0);}
.m50_c01046{transform:matrix(0.355192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355192,0.000000,0.000000,0.250000,0,0);}
.m16_c01046{transform:matrix(0.355301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355301,0.000000,0.000000,0.250000,0,0);}
.m37_c01046{transform:matrix(0.362043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362043,0.000000,0.000000,0.250000,0,0);}
.m49_c01046{transform:matrix(0.363134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363134,0.000000,0.000000,0.250000,0,0);}
.mb_c01046{transform:matrix(0.366288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366288,0.000000,0.000000,0.250000,0,0);}
.m41_c01046{transform:matrix(0.366985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366985,0.000000,0.000000,0.250000,0,0);}
.m56_c01046{transform:matrix(0.367111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367111,0.000000,0.000000,0.250000,0,0);}
.m6c_c01046{transform:matrix(0.372731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372731,0.000000,0.000000,0.250000,0,0);}
.m34_c01046{transform:matrix(0.377257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377257,0.000000,0.000000,0.250000,0,0);}
.m18_c01046{transform:matrix(0.383847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383847,0.000000,0.000000,0.250000,0,0);}
.m78_c01046{transform:matrix(0.390139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390139,0.000000,0.000000,0.250000,0,0);}
.md_c01046{transform:matrix(0.396432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396432,0.000000,0.000000,0.250000,0,0);}
.m35_c01046{transform:matrix(0.402725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402725,0.000000,0.000000,0.250000,0,0);}
.m3d_c01046{transform:matrix(0.409017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409017,0.000000,0.000000,0.250000,0,0);}
.m4_c01046{transform:matrix(0.410357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410357,0.000000,0.000000,0.250000,0,0);}
.m6e_c01046{transform:matrix(0.426077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426077,0.000000,0.000000,0.250000,0,0);}
.m1d_c01046{transform:matrix(0.429279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429279,0.000000,0.000000,0.250000,0,0);}
.v0_c01046{vertical-align:0.000000px;}
.ls2_c01046{letter-spacing:-3.063067px;}
.ls6_c01046{letter-spacing:-2.626477px;}
.lsa_c01046{letter-spacing:-2.521418px;}
.ls3_c01046{letter-spacing:0.000000px;}
.lsb_c01046{letter-spacing:0.472766px;}
.ls9_c01046{letter-spacing:1.515852px;}
.ls7_c01046{letter-spacing:2.189172px;}
.ls4_c01046{letter-spacing:2.581452px;}
.ls8_c01046{letter-spacing:3.069226px;}
.ls5_c01046{letter-spacing:3.752110px;}
.ls1_c01046{letter-spacing:4.375810px;}
.ls0_c01046{letter-spacing:12.156914px;}
.sc__c01046{text-shadow:none;}
.sc0_c01046{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01046{-webkit-text-stroke:0px transparent;}
.sc0_c01046{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01046{word-spacing:-16.239132px;}
.ws1_c01046{word-spacing:0.000000px;}
._3_c01046{margin-left:-11.406527px;}
._2_c01046{width:6.333681px;}
._0_c01046{width:8.296200px;}
._1_c01046{width:25.514330px;}
.fc0_c01046{color:transparent;}
.fs1_c01046{font-size:27.720000px;}
.fs7_c01046{font-size:33.660000px;}
.fs4_c01046{font-size:64.548000px;}
.fs3_c01046{font-size:65.538000px;}
.fs6_c01046{font-size:72.864000px;}
.fs2_c01046{font-size:75.042198px;}
.fs5_c01046{font-size:83.556198px;}
.fs0_c01046{font-size:87.516198px;}
.y0_c01046{bottom:0.000000px;}
.y1_c01046{bottom:76.500000px;}
.y13_c01046{bottom:150.312735px;}
.y12_c01046{bottom:192.367935px;}
.y11_c01046{bottom:480.339135px;}
.y10_c01046{bottom:512.058735px;}
.yf_c01046{bottom:544.491135px;}
.ye_c01046{bottom:576.205785px;}
.yd_c01046{bottom:608.286735px;}
.yc_c01046{bottom:640.357785px;}
.yb_c01046{bottom:671.720985px;}
.ya_c01046{bottom:703.445535px;}
.y9_c01046{bottom:734.808735px;}
.y8_c01046{bottom:796.822335px;}
.y7_c01046{bottom:828.893385px;}
.y6_c01046{bottom:860.617935px;}
.y5_c01046{bottom:891.981135px;}
.y4_c01046{bottom:924.769935px;}
.y3_c01046{bottom:957.915135px;}
.y2_c01046{bottom:1059.484185px;}
.h3_c01046{height:28.911094px;}
.h8_c01046{height:33.035449px;}
.h5_c01046{height:67.321547px;}
.h7_c01046{height:71.512031px;}
.h4_c01046{height:73.649813px;}
.h6_c01046{height:82.005839px;}
.h2_c01046{height:85.892362px;}
.h1_c01046{height:1110.000000px;}
.h0_c01046{height:1263.000000px;}
.w1_c01046{width:775.500000px;}
.w0_c01046{width:892.500000px;}
.x0_c01046{left:0.000000px;}
.x1_c01046{left:58.500000px;}
.x3b_c01046{left:59.822385px;}
.x55_c01046{left:65.871285px;}
.x22_c01046{left:67.113735px;}
.x5_c01046{left:68.583885px;}
.x11_c01046{left:69.712485px;}
.x34_c01046{left:78.147285px;}
.x51_c01046{left:88.334385px;}
.x12_c01046{left:100.620285px;}
.x35_c01046{left:110.203485px;}
.x1b_c01046{left:113.163585px;}
.x2f_c01046{left:120.776685px;}
.x13_c01046{left:132.661635px;}
.x6_c01046{left:133.720935px;}
.x36_c01046{left:144.140685px;}
.x23_c01046{left:155.174235px;}
.x14_c01046{left:165.311835px;}
.x7_c01046{left:178.206585px;}
.x8_c01046{left:188.111535px;}
.x43_c01046{left:199.704435px;}
.x9_c01046{left:209.495535px;}
.x37_c01046{left:211.133985px;}
.x1c_c01046{left:221.415135px;}
.x24_c01046{left:222.494235px;}
.x4a_c01046{left:232.513035px;}
.x45_c01046{left:233.903985px;}
.x38_c01046{left:243.521835px;}
.x30_c01046{left:245.219685px;}
.x1d_c01046{left:255.297885px;}
.x3c_c01046{left:267.019485px;}
.x4b_c01046{left:278.102535px;}
.x15_c01046{left:287.883735px;}
.x2b_c01046{left:289.106385px;}
.xa_c01046{left:300.580485px;}
.xb_c01046{left:310.584435px;}
.x52_c01046{left:312.985185px;}
.x46_c01046{left:322.132785px;}
.x3d_c01046{left:332.621835px;}
.x2c_c01046{left:334.082085px;}
.x47_c01046{left:355.475985px;}
.x16_c01046{left:367.430235px;}
.x2d_c01046{left:376.795635px;}
.x58_c01046{left:380.131935px;}
.x4c_c01046{left:389.200335px;}
.xc_c01046{left:399.669585px;}
.x53_c01046{left:401.105085px;}
.x2e_c01046{left:409.430985px;}
.x17_c01046{left:411.044685px;}
.x54_c01046{left:422.474235px;}
.x25_c01046{left:431.512935px;}
.xd_c01046{left:432.794985px;}
.x40_c01046{left:434.200785px;}
.x56_c01046{left:444.566085px;}
.x26_c01046{left:455.238285px;}
.x31_c01046{left:466.870785px;}
.x39_c01046{left:475.775835px;}
.x3e_c01046{left:477.943935px;}
.x27_c01046{left:487.967685px;}
.x1e_c01046{left:489.883335px;}
.x4d_c01046{left:509.252685px;}
.x18_c01046{left:510.841635px;}
.x28_c01046{left:520.484235px;}
.x4e_c01046{left:532.245435px;}
.x44_c01046{left:542.897835px;}
.x48_c01046{left:544.011585px;}
.x19_c01046{left:553.441335px;}
.x1f_c01046{left:554.649135px;}
.x29_c01046{left:565.172835px;}
.x4f_c01046{left:577.453785px;}
.x3a_c01046{left:586.720185px;}
.xe_c01046{left:587.858685px;}
.x57_c01046{left:589.165485px;}
.x41_c01046{left:597.273585px;}
.xf_c01046{left:599.649585px;}
.x1a_c01046{left:621.350385px;}
.x20_c01046{left:631.789935px;}
.x32_c01046{left:641.120685px;}
.x10_c01046{left:644.031285px;}
.x49_c01046{left:653.238285px;}
.x2a_c01046{left:664.841085px;}
.x2_c01046{left:676.156785px;}
.x42_c01046{left:685.299435px;}
.x33_c01046{left:686.893335px;}
.x4_c01046{left:695.214285px;}
.x3f_c01046{left:696.709185px;}
.x3_c01046{left:699.510885px;}
.x50_c01046{left:719.528685px;}
.x21_c01046{left:720.751335px;}
.x59_c01046{left:761.148285px;}
@media print{
.v0_c01046{vertical-align:0.000000pt;}
.ls2_c01046{letter-spacing:-2.722726pt;}
.ls6_c01046{letter-spacing:-2.334646pt;}
.lsa_c01046{letter-spacing:-2.241260pt;}
.ls3_c01046{letter-spacing:0.000000pt;}
.lsb_c01046{letter-spacing:0.420236pt;}
.ls9_c01046{letter-spacing:1.347424pt;}
.ls7_c01046{letter-spacing:1.945931pt;}
.ls4_c01046{letter-spacing:2.294624pt;}
.ls8_c01046{letter-spacing:2.728201pt;}
.ls5_c01046{letter-spacing:3.335209pt;}
.ls1_c01046{letter-spacing:3.889609pt;}
.ls0_c01046{letter-spacing:10.806146pt;}
.ws0_c01046{word-spacing:-14.434784pt;}
.ws1_c01046{word-spacing:0.000000pt;}
._3_c01046{margin-left:-10.139135pt;}
._2_c01046{width:5.629939pt;}
._0_c01046{width:7.374400pt;}
._1_c01046{width:22.679404pt;}
.fs1_c01046{font-size:24.640000pt;}
.fs7_c01046{font-size:29.920000pt;}
.fs4_c01046{font-size:57.376000pt;}
.fs3_c01046{font-size:58.256000pt;}
.fs6_c01046{font-size:64.768000pt;}
.fs2_c01046{font-size:66.704176pt;}
.fs5_c01046{font-size:74.272176pt;}
.fs0_c01046{font-size:77.792176pt;}
.y0_c01046{bottom:0.000000pt;}
.y1_c01046{bottom:68.000000pt;}
.y13_c01046{bottom:133.611320pt;}
.y12_c01046{bottom:170.993720pt;}
.y11_c01046{bottom:426.968120pt;}
.y10_c01046{bottom:455.163320pt;}
.yf_c01046{bottom:483.992120pt;}
.ye_c01046{bottom:512.182920pt;}
.yd_c01046{bottom:540.699320pt;}
.yc_c01046{bottom:569.206920pt;}
.yb_c01046{bottom:597.085320pt;}
.ya_c01046{bottom:625.284920pt;}
.y9_c01046{bottom:653.163320pt;}
.y8_c01046{bottom:708.286520pt;}
.y7_c01046{bottom:736.794120pt;}
.y6_c01046{bottom:764.993720pt;}
.y5_c01046{bottom:792.872120pt;}
.y4_c01046{bottom:822.017720pt;}
.y3_c01046{bottom:851.480120pt;}
.y2_c01046{bottom:941.763720pt;}
.h3_c01046{height:25.698750pt;}
.h8_c01046{height:29.364844pt;}
.h5_c01046{height:59.841375pt;}
.h7_c01046{height:63.566250pt;}
.h4_c01046{height:65.466501pt;}
.h6_c01046{height:72.894079pt;}
.h2_c01046{height:76.348766pt;}
.h1_c01046{height:986.666667pt;}
.h0_c01046{height:1122.666667pt;}
.w1_c01046{width:689.333333pt;}
.w0_c01046{width:793.333333pt;}
.x0_c01046{left:0.000000pt;}
.x1_c01046{left:52.000000pt;}
.x3b_c01046{left:53.175453pt;}
.x55_c01046{left:58.552253pt;}
.x22_c01046{left:59.656653pt;}
.x5_c01046{left:60.963453pt;}
.x11_c01046{left:61.966653pt;}
.x34_c01046{left:69.464253pt;}
.x51_c01046{left:78.519453pt;}
.x12_c01046{left:89.440253pt;}
.x35_c01046{left:97.958653pt;}
.x1b_c01046{left:100.589853pt;}
.x2f_c01046{left:107.357053pt;}
.x13_c01046{left:117.921453pt;}
.x6_c01046{left:118.863053pt;}
.x36_c01046{left:128.125053pt;}
.x23_c01046{left:137.932653pt;}
.x14_c01046{left:146.943853pt;}
.x7_c01046{left:158.405853pt;}
.x8_c01046{left:167.210253pt;}
.x43_c01046{left:177.515053pt;}
.x9_c01046{left:186.218253pt;}
.x37_c01046{left:187.674653pt;}
.x1c_c01046{left:196.813453pt;}
.x24_c01046{left:197.772653pt;}
.x4a_c01046{left:206.678253pt;}
.x45_c01046{left:207.914653pt;}
.x38_c01046{left:216.463853pt;}
.x30_c01046{left:217.973053pt;}
.x1d_c01046{left:226.931453pt;}
.x3c_c01046{left:237.350653pt;}
.x4b_c01046{left:247.202253pt;}
.x15_c01046{left:255.896653pt;}
.x2b_c01046{left:256.983453pt;}
.xa_c01046{left:267.182653pt;}
.xb_c01046{left:276.075053pt;}
.x52_c01046{left:278.209053pt;}
.x46_c01046{left:286.340253pt;}
.x3d_c01046{left:295.663853pt;}
.x2c_c01046{left:296.961853pt;}
.x47_c01046{left:315.978653pt;}
.x16_c01046{left:326.604653pt;}
.x2d_c01046{left:334.929453pt;}
.x58_c01046{left:337.895053pt;}
.x4c_c01046{left:345.955853pt;}
.xc_c01046{left:355.261853pt;}
.x53_c01046{left:356.537853pt;}
.x2e_c01046{left:363.938653pt;}
.x17_c01046{left:365.373053pt;}
.x54_c01046{left:375.532653pt;}
.x25_c01046{left:383.567053pt;}
.xd_c01046{left:384.706653pt;}
.x40_c01046{left:385.956253pt;}
.x56_c01046{left:395.169853pt;}
.x26_c01046{left:404.656253pt;}
.x31_c01046{left:414.996253pt;}
.x39_c01046{left:422.911853pt;}
.x3e_c01046{left:424.839053pt;}
.x27_c01046{left:433.749053pt;}
.x1e_c01046{left:435.451853pt;}
.x4d_c01046{left:452.669053pt;}
.x18_c01046{left:454.081453pt;}
.x28_c01046{left:462.652653pt;}
.x4e_c01046{left:473.107053pt;}
.x44_c01046{left:482.575853pt;}
.x48_c01046{left:483.565853pt;}
.x19_c01046{left:491.947853pt;}
.x1f_c01046{left:493.021453pt;}
.x29_c01046{left:502.375853pt;}
.x4f_c01046{left:513.292253pt;}
.x3a_c01046{left:521.529053pt;}
.xe_c01046{left:522.541053pt;}
.x57_c01046{left:523.702653pt;}
.x41_c01046{left:530.909853pt;}
.xf_c01046{left:533.021853pt;}
.x1a_c01046{left:552.311453pt;}
.x20_c01046{left:561.591053pt;}
.x32_c01046{left:569.885053pt;}
.x10_c01046{left:572.472253pt;}
.x49_c01046{left:580.656253pt;}
.x2a_c01046{left:590.969853pt;}
.x2_c01046{left:601.028253pt;}
.x42_c01046{left:609.155053pt;}
.x33_c01046{left:610.571853pt;}
.x4_c01046{left:617.968253pt;}
.x3f_c01046{left:619.297053pt;}
.x3_c01046{left:621.787453pt;}
.x50_c01046{left:639.581053pt;}
.x21_c01046{left:640.667853pt;}
.x59_c01046{left:676.576253pt;}
}





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

.ir_c01047:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01047{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01047;src:url('chunks/assets/font_6cf0290bcaa0cc24f4bc805f.woff2')format("woff");}.ff1_c01047{font-family:ff1_c01047;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01047;src:url('chunks/assets/font_f8e65389c902e1a1e4a70ca8.woff2')format("woff");}.ff2_c01047{font-family:ff2_c01047;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01047;src:url('chunks/assets/font_f5e39c182fffaaa88dcb6bef.woff2')format("woff");}.ff3_c01047{font-family:ff3_c01047;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01047;src:url('chunks/assets/font_16192a08c7f0c7db087aedf2.woff2')format("woff");}.ff4_c01047{font-family:ff4_c01047;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3_c01047{transform:matrix(0.105699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105699,0.000000,0.000000,0.250000,0,0);}
.m1_c01047{transform:matrix(0.113638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113638,0.000000,0.000000,0.250000,0,0);}
.m2_c01047{transform:matrix(0.233113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233113,0.000000,0.000000,0.250000,0,0);}
.m0_c01047{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01047{vertical-align:0.000000px;}
.ls3_c01047{letter-spacing:-2.772000px;}
.ls4_c01047{letter-spacing:-1.774080px;}
.ls0_c01047{letter-spacing:0.000000px;}
.ls2_c01047{letter-spacing:3.034409px;}
.ls1_c01047{letter-spacing:31.363200px;}
.sc__c01047{text-shadow:none;}
.sc0_c01047{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01047{-webkit-text-stroke:0px transparent;}
.sc0_c01047{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01047{word-spacing:0.000000px;}
.fc0_c01047{color:transparent;}
.fs9_c01047{font-size:9.702198px;}
.fs4_c01047{font-size:22.176000px;}
.fs1_c01047{font-size:25.146000px;}
.fs7_c01047{font-size:26.928000px;}
.fs3_c01047{font-size:27.720000px;}
.fs2_c01047{font-size:31.363200px;}
.fs8_c01047{font-size:50.688000px;}
.fs0_c01047{font-size:66.528000px;}
.fs6_c01047{font-size:79.200000px;}
.fs5_c01047{font-size:91.674000px;}
.y0_c01047{bottom:0.000000px;}
.y1_c01047{bottom:76.500000px;}
.y8_c01047{bottom:288.595935px;}
.y7_c01047{bottom:292.511385px;}
.y6_c01047{bottom:468.572985px;}
.y5_c01047{bottom:659.603385px;}
.y4_c01047{bottom:938.313135px;}
.y3_c01047{bottom:948.648735px;}
.y2_c01047{bottom:961.474185px;}
.hb_c01047{height:9.522177px;}
.h4_c01047{height:20.887891px;}
.h6_c01047{height:23.128875px;}
.h3_c01047{height:26.226492px;}
.h9_c01047{height:28.085063px;}
.h5_c01047{height:28.911094px;}
.ha_c01047{height:52.866000px;}
.h2_c01047{height:69.386625px;}
.h8_c01047{height:77.730469px;}
.h7_c01047{height:92.390203px;}
.h1_c01047{height:1110.000000px;}
.h0_c01047{height:1263.000000px;}
.w1_c01047{width:775.500000px;}
.w0_c01047{width:892.500000px;}
.x0_c01047{left:0.000000px;}
.x1_c01047{left:58.500000px;}
.x5_c01047{left:259.742985px;}
.x6_c01047{left:303.797985px;}
.x7_c01047{left:348.362835px;}
.x8_c01047{left:352.322835px;}
.x9_c01047{left:398.060835px;}
.x4_c01047{left:451.105035px;}
.x2_c01047{left:701.119635px;}
.x3_c01047{left:702.634335px;}
@media print{
.v0_c01047{vertical-align:0.000000pt;}
.ls3_c01047{letter-spacing:-2.464000pt;}
.ls4_c01047{letter-spacing:-1.576960pt;}
.ls0_c01047{letter-spacing:0.000000pt;}
.ls2_c01047{letter-spacing:2.697253pt;}
.ls1_c01047{letter-spacing:27.878400pt;}
.ws0_c01047{word-spacing:0.000000pt;}
.fs9_c01047{font-size:8.624176pt;}
.fs4_c01047{font-size:19.712000pt;}
.fs1_c01047{font-size:22.352000pt;}
.fs7_c01047{font-size:23.936000pt;}
.fs3_c01047{font-size:24.640000pt;}
.fs2_c01047{font-size:27.878400pt;}
.fs8_c01047{font-size:45.056000pt;}
.fs0_c01047{font-size:59.136000pt;}
.fs6_c01047{font-size:70.400000pt;}
.fs5_c01047{font-size:81.488000pt;}
.y0_c01047{bottom:0.000000pt;}
.y1_c01047{bottom:68.000000pt;}
.y8_c01047{bottom:256.529720pt;}
.y7_c01047{bottom:260.010120pt;}
.y6_c01047{bottom:416.509320pt;}
.y5_c01047{bottom:586.314120pt;}
.y4_c01047{bottom:834.056120pt;}
.y3_c01047{bottom:843.243320pt;}
.y2_c01047{bottom:854.643720pt;}
.hb_c01047{height:8.464157pt;}
.h4_c01047{height:18.567014pt;}
.h6_c01047{height:20.559000pt;}
.h3_c01047{height:23.312438pt;}
.h9_c01047{height:24.964500pt;}
.h5_c01047{height:25.698750pt;}
.ha_c01047{height:46.992000pt;}
.h2_c01047{height:61.677000pt;}
.h8_c01047{height:69.093750pt;}
.h7_c01047{height:82.124625pt;}
.h1_c01047{height:986.666667pt;}
.h0_c01047{height:1122.666667pt;}
.w1_c01047{width:689.333333pt;}
.w0_c01047{width:793.333333pt;}
.x0_c01047{left:0.000000pt;}
.x1_c01047{left:52.000000pt;}
.x5_c01047{left:230.882653pt;}
.x6_c01047{left:270.042653pt;}
.x7_c01047{left:309.655853pt;}
.x8_c01047{left:313.175853pt;}
.x9_c01047{left:353.831853pt;}
.x4_c01047{left:400.982253pt;}
.x2_c01047{left:623.217453pt;}
.x3_c01047{left:624.563853pt;}
}





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

.ir_c01048:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01048{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01048;src:url('chunks/assets/font_8e16567b7e43164e185d8b6c.woff2')format("woff");}.ff1_c01048{font-family:ff1_c01048;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01048;src:url('chunks/assets/font_d67cf8effdcae77e32f24d92.woff2')format("woff");}.ff2_c01048{font-family:ff2_c01048;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01048;src:url('chunks/assets/font_ace2ecbfd721f35238365d86.woff2')format("woff");}.ff3_c01048{font-family:ff3_c01048;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01048;src:url('chunks/assets/font_c50b181e5d99c894a90d648b.woff2')format("woff");}.ff4_c01048{font-family:ff4_c01048;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m28_c01048{transform:matrix(0.034092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.034092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.034092,0.000000,0.000000,0.250000,0,0);}
.m2b_c01048{transform:matrix(0.045455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045455,0.000000,0.000000,0.250000,0,0);}
.m2c_c01048{transform:matrix(0.056819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056819,0.000000,0.000000,0.250000,0,0);}
.m63_c01048{transform:matrix(0.085585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085585,0.000000,0.000000,0.250000,0,0);}
.m27_c01048{transform:matrix(0.086649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086649,0.000000,0.000000,0.250000,0,0);}
.m30_c01048{transform:matrix(0.088287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088287,0.000000,0.000000,0.250000,0,0);}
.m2d_c01048{transform:matrix(0.094586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094586,0.000000,0.000000,0.250000,0,0);}
.m64_c01048{transform:matrix(0.118622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118622,0.000000,0.000000,0.250000,0,0);}
.m2e_c01048{transform:matrix(0.122710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122710,0.000000,0.000000,0.250000,0,0);}
.m2a_c01048{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);}
.m29_c01048{transform:matrix(0.130683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130683,0.000000,0.000000,0.250000,0,0);}
.m2f_c01048{transform:matrix(0.137197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137197,0.000000,0.000000,0.250000,0,0);}
.m54_c01048{transform:matrix(0.233286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233286,0.000000,0.000000,0.250000,0,0);}
.m67_c01048{transform:matrix(0.240182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240182,0.000000,0.000000,0.250000,0,0);}
.m1_c01048{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01048{transform:matrix(0.255470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255470,0.000000,0.000000,0.250000,0,0);}
.m0_c01048{transform:matrix(0.263161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263161,0.000000,0.000000,0.250000,0,0);}
.m45_c01048{transform:matrix(0.266429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266429,0.000000,0.000000,0.250000,0,0);}
.m2_c01048{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m13_c01048{transform:matrix(0.267450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267450,0.000000,0.000000,0.250000,0,0);}
.m10_c01048{transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);}
.m5b_c01048{transform:matrix(0.268402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268402,0.000000,0.000000,0.250000,0,0);}
.m3b_c01048{transform:matrix(0.268965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268965,0.000000,0.000000,0.250000,0,0);}
.m39_c01048{transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);}
.m31_c01048{transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);}
.m17_c01048{transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);}
.m57_c01048{transform:matrix(0.274610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274610,0.000000,0.000000,0.250000,0,0);}
.m1e_c01048{transform:matrix(0.276153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276153,0.000000,0.000000,0.250000,0,0);}
.m6c_c01048{transform:matrix(0.276672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276672,0.000000,0.000000,0.250000,0,0);}
.m66_c01048{transform:matrix(0.276967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276967,0.000000,0.000000,0.250000,0,0);}
.m5c_c01048{transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);}
.m58_c01048{transform:matrix(0.277790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277790,0.000000,0.000000,0.250000,0,0);}
.m37_c01048{transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);}
.m52_c01048{transform:matrix(0.281556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281556,0.000000,0.000000,0.250000,0,0);}
.m32_c01048{transform:matrix(0.281693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281693,0.000000,0.000000,0.250000,0,0);}
.m6a_c01048{transform:matrix(0.282531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282531,0.000000,0.000000,0.250000,0,0);}
.m6f_c01048{transform:matrix(0.282996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282996,0.000000,0.000000,0.250000,0,0);}
.m51_c01048{transform:matrix(0.283938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283938,0.000000,0.000000,0.250000,0,0);}
.m4e_c01048{transform:matrix(0.285915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285915,0.000000,0.000000,0.250000,0,0);}
.m46_c01048{transform:matrix(0.286620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286620,0.000000,0.000000,0.250000,0,0);}
.m73_c01048{transform:matrix(0.287374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287374,0.000000,0.000000,0.250000,0,0);}
.m55_c01048{transform:matrix(0.287498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287498,0.000000,0.000000,0.250000,0,0);}
.m60_c01048{transform:matrix(0.290517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290517,0.000000,0.000000,0.250000,0,0);}
.m1c_c01048{transform:matrix(0.291109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291109,0.000000,0.000000,0.250000,0,0);}
.m1d_c01048{transform:matrix(0.291194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291194,0.000000,0.000000,0.250000,0,0);}
.m14_c01048{transform:matrix(0.291495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291495,0.000000,0.000000,0.250000,0,0);}
.m15_c01048{transform:matrix(0.292614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292614,0.000000,0.000000,0.250000,0,0);}
.m65_c01048{transform:matrix(0.294909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294909,0.000000,0.000000,0.250000,0,0);}
.m33_c01048{transform:matrix(0.294999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294999,0.000000,0.000000,0.250000,0,0);}
.m18_c01048{transform:matrix(0.295318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295318,0.000000,0.000000,0.250000,0,0);}
.m38_c01048{transform:matrix(0.297331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297331,0.000000,0.000000,0.250000,0,0);}
.m6_c01048{transform:matrix(0.298058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298058,0.000000,0.000000,0.250000,0,0);}
.m3e_c01048{transform:matrix(0.300129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300129,0.000000,0.000000,0.250000,0,0);}
.m34_c01048{transform:matrix(0.300582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300582,0.000000,0.000000,0.250000,0,0);}
.m48_c01048{transform:matrix(0.300951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300951,0.000000,0.000000,0.250000,0,0);}
.m3a_c01048{transform:matrix(0.302495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302495,0.000000,0.000000,0.250000,0,0);}
.m4f_c01048{transform:matrix(0.302862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302862,0.000000,0.000000,0.250000,0,0);}
.m5d_c01048{transform:matrix(0.303216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303216,0.000000,0.000000,0.250000,0,0);}
.mb_c01048{transform:matrix(0.303271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303271,0.000000,0.000000,0.250000,0,0);}
.m71_c01048{transform:matrix(0.303379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303379,0.000000,0.000000,0.250000,0,0);}
.ma_c01048{transform:matrix(0.304979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304979,0.000000,0.000000,0.250000,0,0);}
.m35_c01048{transform:matrix(0.305166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305166,0.000000,0.000000,0.250000,0,0);}
.m12_c01048{transform:matrix(0.306319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306319,0.000000,0.000000,0.250000,0,0);}
.m8_c01048{transform:matrix(0.307690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307690,0.000000,0.000000,0.250000,0,0);}
.m11_c01048{transform:matrix(0.307812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307812,0.000000,0.000000,0.250000,0,0);}
.m49_c01048{transform:matrix(0.308147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308147,0.000000,0.000000,0.250000,0,0);}
.m4c_c01048{transform:matrix(0.309171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309171,0.000000,0.000000,0.250000,0,0);}
.m74_c01048{transform:matrix(0.311162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311162,0.000000,0.000000,0.250000,0,0);}
.m50_c01048{transform:matrix(0.312450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312450,0.000000,0.000000,0.250000,0,0);}
.m1b_c01048{transform:matrix(0.312643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312643,0.000000,0.000000,0.250000,0,0);}
.m22_c01048{transform:matrix(0.313003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313003,0.000000,0.000000,0.250000,0,0);}
.m4b_c01048{transform:matrix(0.313838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313838,0.000000,0.000000,0.250000,0,0);}
.mc_c01048{transform:matrix(0.315440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315440,0.000000,0.000000,0.250000,0,0);}
.m16_c01048{transform:matrix(0.316292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316292,0.000000,0.000000,0.250000,0,0);}
.m1f_c01048{transform:matrix(0.316670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316670,0.000000,0.000000,0.250000,0,0);}
.m5_c01048{transform:matrix(0.316988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316988,0.000000,0.000000,0.250000,0,0);}
.m44_c01048{transform:matrix(0.317110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317110,0.000000,0.000000,0.250000,0,0);}
.m23_c01048{transform:matrix(0.318057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318057,0.000000,0.000000,0.250000,0,0);}
.m25_c01048{transform:matrix(0.318919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318919,0.000000,0.000000,0.250000,0,0);}
.m6d_c01048{transform:matrix(0.321341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321341,0.000000,0.000000,0.250000,0,0);}
.m68_c01048{transform:matrix(0.324364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324364,0.000000,0.000000,0.250000,0,0);}
.m59_c01048{transform:matrix(0.324881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324881,0.000000,0.000000,0.250000,0,0);}
.m41_c01048{transform:matrix(0.325041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325041,0.000000,0.000000,0.250000,0,0);}
.md_c01048{transform:matrix(0.325060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325060,0.000000,0.000000,0.250000,0,0);}
.m61_c01048{transform:matrix(0.325582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325582,0.000000,0.000000,0.250000,0,0);}
.m69_c01048{transform:matrix(0.325610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325610,0.000000,0.000000,0.250000,0,0);}
.m6e_c01048{transform:matrix(0.326868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326868,0.000000,0.000000,0.250000,0,0);}
.m72_c01048{transform:matrix(0.327542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327542,0.000000,0.000000,0.250000,0,0);}
.m5f_c01048{transform:matrix(0.329303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329303,0.000000,0.000000,0.250000,0,0);}
.m4_c01048{transform:matrix(0.330522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330522,0.000000,0.000000,0.250000,0,0);}
.m56_c01048{transform:matrix(0.331035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331035,0.000000,0.000000,0.250000,0,0);}
.m5e_c01048{transform:matrix(0.331081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331081,0.000000,0.000000,0.250000,0,0);}
.mf_c01048{transform:matrix(0.334000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334000,0.000000,0.000000,0.250000,0,0);}
.m9_c01048{transform:matrix(0.336817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336817,0.000000,0.000000,0.250000,0,0);}
.m4a_c01048{transform:matrix(0.339063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339063,0.000000,0.000000,0.250000,0,0);}
.m5a_c01048{transform:matrix(0.339155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339155,0.000000,0.000000,0.250000,0,0);}
.m3f_c01048{transform:matrix(0.339487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339487,0.000000,0.000000,0.250000,0,0);}
.m4d_c01048{transform:matrix(0.342083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342083,0.000000,0.000000,0.250000,0,0);}
.m43_c01048{transform:matrix(0.342460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342460,0.000000,0.000000,0.250000,0,0);}
.m6b_c01048{transform:matrix(0.342481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342481,0.000000,0.000000,0.250000,0,0);}
.m26_c01048{transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);}
.m70_c01048{transform:matrix(0.351066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351066,0.000000,0.000000,0.250000,0,0);}
.m36_c01048{transform:matrix(0.351127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351127,0.000000,0.000000,0.250000,0,0);}
.m40_c01048{transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);}
.m62_c01048{transform:matrix(0.355252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355252,0.000000,0.000000,0.250000,0,0);}
.me_c01048{transform:matrix(0.357010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357010,0.000000,0.000000,0.250000,0,0);}
.m3_c01048{transform:matrix(0.357547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357547,0.000000,0.000000,0.250000,0,0);}
.m47_c01048{transform:matrix(0.359199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359199,0.000000,0.000000,0.250000,0,0);}
.m24_c01048{transform:matrix(0.359542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359542,0.000000,0.000000,0.250000,0,0);}
.m21_c01048{transform:matrix(0.361768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361768,0.000000,0.000000,0.250000,0,0);}
.m53_c01048{transform:matrix(0.363147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363147,0.000000,0.000000,0.250000,0,0);}
.m1a_c01048{transform:matrix(0.363817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363817,0.000000,0.000000,0.250000,0,0);}
.m3c_c01048{transform:matrix(0.364507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364507,0.000000,0.000000,0.250000,0,0);}
.m20_c01048{transform:matrix(0.387076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387076,0.000000,0.000000,0.250000,0,0);}
.m19_c01048{transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);}
.m42_c01048{transform:matrix(0.405805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405805,0.000000,0.000000,0.250000,0,0);}
.m7_c01048{transform:matrix(0.412048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412048,0.000000,0.000000,0.250000,0,0);}
.v0_c01048{vertical-align:0.000000px;}
.ls10_c01048{letter-spacing:-3.298680px;}
.ls17_c01048{letter-spacing:-2.744280px;}
.lsf_c01048{letter-spacing:-2.647267px;}
.ls4_c01048{letter-spacing:0.000000px;}
.ls8_c01048{letter-spacing:0.130522px;}
.ls2_c01048{letter-spacing:1.437088px;}
.lsd_c01048{letter-spacing:2.011923px;}
.ls1_c01048{letter-spacing:2.667542px;}
.ls7_c01048{letter-spacing:2.861100px;}
.lsb_c01048{letter-spacing:3.326400px;}
.ls14_c01048{letter-spacing:3.385810px;}
.ls13_c01048{letter-spacing:3.425400px;}
.ls11_c01048{letter-spacing:3.514500px;}
.ls0_c01048{letter-spacing:3.539774px;}
.lsa_c01048{letter-spacing:3.638298px;}
.ls6_c01048{letter-spacing:3.672900px;}
.lsc_c01048{letter-spacing:3.722400px;}
.ls12_c01048{letter-spacing:3.762000px;}
.ls5_c01048{letter-spacing:3.781810px;}
.ls9_c01048{letter-spacing:3.950110px;}
.ls3_c01048{letter-spacing:4.078810px;}
.ls15_c01048{letter-spacing:52.747398px;}
.ls16_c01048{letter-spacing:59.875398px;}
.lse_c01048{letter-spacing:62.726400px;}
.sc__c01048{text-shadow:none;}
.sc0_c01048{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01048{-webkit-text-stroke:0px transparent;}
.sc0_c01048{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01048{word-spacing:0.000000px;}
._0_c01048{width:25.060974px;}
._1_c01048{width:26.296136px;}
.fc0_c01048{color:transparent;}
.fs1_c01048{font-size:27.720000px;}
.fs11_c01048{font-size:52.747398px;}
.fs4_c01048{font-size:57.222000px;}
.fs12_c01048{font-size:59.875398px;}
.fs14_c01048{font-size:61.776198px;}
.fs9_c01048{font-size:62.726400px;}
.fs7_c01048{font-size:66.528000px;}
.fs10_c01048{font-size:67.716198px;}
.fsf_c01048{font-size:68.508000px;}
.fsc_c01048{font-size:70.290000px;}
.fs3_c01048{font-size:73.458000px;}
.fs8_c01048{font-size:74.448000px;}
.fs5_c01048{font-size:74.844000px;}
.fsd_c01048{font-size:75.240000px;}
.fs2_c01048{font-size:75.636198px;}
.fs13_c01048{font-size:78.408000px;}
.fs6_c01048{font-size:79.002198px;}
.fs0_c01048{font-size:81.576198px;}
.fse_c01048{font-size:91.872198px;}
.fsb_c01048{font-size:94.248000px;}
.fsa_c01048{font-size:96.624000px;}
.y0_c01048{bottom:0.000000px;}
.y13_c01048{bottom:8.816985px;}
.y1_c01048{bottom:76.500000px;}
.y12_c01048{bottom:128.572335px;}
.y11_c01048{bottom:160.291935px;}
.y10_c01048{bottom:193.432185px;}
.yf_c01048{bottom:225.513135px;}
.ye_c01048{bottom:250.461135px;}
.yd_c01048{bottom:257.940585px;}
.yc_c01048{bottom:290.729385px;}
.yb_c01048{bottom:322.805385px;}
.ya_c01048{bottom:419.038335px;}
.y9_c01048{bottom:451.109385px;}
.y8_c01048{bottom:480.690585px;}
.y7_c01048{bottom:514.909935px;}
.y6_c01048{bottom:547.342335px;}
.y5_c01048{bottom:579.056985px;}
.y4_c01048{bottom:611.137935px;}
.y3_c01048{bottom:768.666735px;}
.y2_c01048{bottom:1058.771385px;}
.h3_c01048{height:28.911094px;}
.h12_c01048{height:35.129767px;}
.h13_c01048{height:39.877015px;}
.ha_c01048{height:41.775782px;}
.h6_c01048{height:59.680758px;}
.h15_c01048{height:60.629960px;}
.h8_c01048{height:69.386625px;}
.h11_c01048{height:70.625878px;}
.h10_c01048{height:71.451703px;}
.h5_c01048{height:72.095010px;}
.h9_c01048{height:73.066641px;}
.hd_c01048{height:73.310273px;}
.h4_c01048{height:74.232792px;}
.he_c01048{height:75.827813px;}
.h14_c01048{height:76.953164px;}
.h7_c01048{height:77.536337px;}
.h2_c01048{height:80.062577px;}
.hc_c01048{height:92.499258px;}
.hf_c01048{height:95.819832px;}
.hb_c01048{height:100.775813px;}
.h1_c01048{height:1110.000000px;}
.h0_c01048{height:1263.000000px;}
.w1_c01048{width:775.500000px;}
.w0_c01048{width:892.500000px;}
.x0_c01048{left:0.000000px;}
.x1_c01048{left:58.500000px;}
.x48_c01048{left:78.751185px;}
.x21_c01048{left:80.137185px;}
.xc_c01048{left:81.349935px;}
.x1a_c01048{left:113.628885px;}
.x3b_c01048{left:124.499085px;}
.x4_c01048{left:135.730635px;}
.x1b_c01048{left:146.412735px;}
.x14_c01048{left:158.030385px;}
.x5_c01048{left:168.974835px;}
.x22_c01048{left:170.350935px;}
.x34_c01048{left:180.320235px;}
.xd_c01048{left:191.140935px;}
.x15_c01048{left:203.525835px;}
.x35_c01048{left:213.074385px;}
.x3c_c01048{left:214.341585px;}
.x49_c01048{left:224.459385px;}
.x4b_c01048{left:233.240685px;}
.x16_c01048{left:235.705785px;}
.xe_c01048{left:245.863185px;}
.x45_c01048{left:247.095735px;}
.x23_c01048{left:258.178785px;}
.x33_c01048{left:269.217285px;}
.x4c_c01048{left:279.354885px;}
.x6_c01048{left:280.909185px;}
.x40_c01048{left:291.304185px;}
.x31_c01048{left:301.946685px;}
.x24_c01048{left:303.352485px;}
.x36_c01048{left:314.039535px;}
.x25_c01048{left:334.651335px;}
.x7_c01048{left:336.166035px;}
.x1c_c01048{left:347.145135px;}
.xf_c01048{left:358.252935px;}
.x41_c01048{left:367.400535px;}
.x26_c01048{left:378.127185px;}
.x39_c01048{left:380.027985px;}
.x27_c01048{left:381.339735px;}
.x28_c01048{left:388.522185px;}
.x1d_c01048{left:390.200235px;}
.x29_c01048{left:391.670385px;}
.x17_c01048{left:401.248635px;}
.x2a_c01048{left:422.325735px;}
.x32_c01048{left:423.350385px;}
.x8_c01048{left:425.558085px;}
.x2b_c01048{left:428.735985px;}
.x2c_c01048{left:433.012785px;}
.x4a_c01048{left:445.427385px;}
.x1e_c01048{left:446.937135px;}
.x42_c01048{left:457.559835px;}
.x37_c01048{left:468.449835px;}
.x10_c01048{left:478.240935px;}
.x9_c01048{left:490.472385px;}
.x1f_c01048{left:501.540585px;}
.x3a_c01048{left:512.643435px;}
.xa_c01048{left:523.142385px;}
.x11_c01048{left:525.310485px;}
.x18_c01048{left:534.537285px;}
.x2d_c01048{left:541.165335px;}
.x2e_c01048{left:546.219285px;}
.x43_c01048{left:557.539935px;}
.x3d_c01048{left:567.152835px;}
.x2f_c01048{left:580.210935px;}
.x12_c01048{left:590.343585px;}
.x4d_c01048{left:598.733835px;}
.xb_c01048{left:601.664235px;}
.x46_c01048{left:610.975185px;}
.x13_c01048{left:623.092785px;}
.x38_c01048{left:633.042285px;}
.x3e_c01048{left:644.496585px;}
.x47_c01048{left:654.698535px;}
.x20_c01048{left:656.926035px;}
.x2_c01048{left:662.276985px;}
.x44_c01048{left:666.187485px;}
.x30_c01048{left:667.321035px;}
.x19_c01048{left:678.725835px;}
.x3f_c01048{left:688.309035px;}
.x3_c01048{left:700.560285px;}
.x4e_c01048{left:705.762735px;}
@media print{
.v0_c01048{vertical-align:0.000000pt;}
.ls10_c01048{letter-spacing:-2.932160pt;}
.ls17_c01048{letter-spacing:-2.439360pt;}
.lsf_c01048{letter-spacing:-2.353126pt;}
.ls4_c01048{letter-spacing:0.000000pt;}
.ls8_c01048{letter-spacing:0.116019pt;}
.ls2_c01048{letter-spacing:1.277411pt;}
.lsd_c01048{letter-spacing:1.788376pt;}
.ls1_c01048{letter-spacing:2.371148pt;}
.ls7_c01048{letter-spacing:2.543200pt;}
.lsb_c01048{letter-spacing:2.956800pt;}
.ls14_c01048{letter-spacing:3.009609pt;}
.ls13_c01048{letter-spacing:3.044800pt;}
.ls11_c01048{letter-spacing:3.124000pt;}
.ls0_c01048{letter-spacing:3.146466pt;}
.lsa_c01048{letter-spacing:3.234043pt;}
.ls6_c01048{letter-spacing:3.264800pt;}
.lsc_c01048{letter-spacing:3.308800pt;}
.ls12_c01048{letter-spacing:3.344000pt;}
.ls5_c01048{letter-spacing:3.361609pt;}
.ls9_c01048{letter-spacing:3.511209pt;}
.ls3_c01048{letter-spacing:3.625609pt;}
.ls15_c01048{letter-spacing:46.886576pt;}
.ls16_c01048{letter-spacing:53.222576pt;}
.lse_c01048{letter-spacing:55.756800pt;}
.ws0_c01048{word-spacing:0.000000pt;}
._0_c01048{width:22.276421pt;}
._1_c01048{width:23.374343pt;}
.fs1_c01048{font-size:24.640000pt;}
.fs11_c01048{font-size:46.886576pt;}
.fs4_c01048{font-size:50.864000pt;}
.fs12_c01048{font-size:53.222576pt;}
.fs14_c01048{font-size:54.912176pt;}
.fs9_c01048{font-size:55.756800pt;}
.fs7_c01048{font-size:59.136000pt;}
.fs10_c01048{font-size:60.192176pt;}
.fsf_c01048{font-size:60.896000pt;}
.fsc_c01048{font-size:62.480000pt;}
.fs3_c01048{font-size:65.296000pt;}
.fs8_c01048{font-size:66.176000pt;}
.fs5_c01048{font-size:66.528000pt;}
.fsd_c01048{font-size:66.880000pt;}
.fs2_c01048{font-size:67.232176pt;}
.fs13_c01048{font-size:69.696000pt;}
.fs6_c01048{font-size:70.224176pt;}
.fs0_c01048{font-size:72.512176pt;}
.fse_c01048{font-size:81.664176pt;}
.fsb_c01048{font-size:83.776000pt;}
.fsa_c01048{font-size:85.888000pt;}
.y0_c01048{bottom:0.000000pt;}
.y13_c01048{bottom:7.837320pt;}
.y1_c01048{bottom:68.000000pt;}
.y12_c01048{bottom:114.286520pt;}
.y11_c01048{bottom:142.481720pt;}
.y10_c01048{bottom:171.939720pt;}
.yf_c01048{bottom:200.456120pt;}
.ye_c01048{bottom:222.632120pt;}
.yd_c01048{bottom:229.280520pt;}
.yc_c01048{bottom:258.426120pt;}
.yb_c01048{bottom:286.938120pt;}
.ya_c01048{bottom:372.478520pt;}
.y9_c01048{bottom:400.986120pt;}
.y8_c01048{bottom:427.280520pt;}
.y7_c01048{bottom:457.697720pt;}
.y6_c01048{bottom:486.526520pt;}
.y5_c01048{bottom:514.717320pt;}
.y4_c01048{bottom:543.233720pt;}
.y3_c01048{bottom:683.259320pt;}
.y2_c01048{bottom:941.130120pt;}
.h3_c01048{height:25.698750pt;}
.h12_c01048{height:31.226460pt;}
.h13_c01048{height:35.446236pt;}
.ha_c01048{height:37.134029pt;}
.h6_c01048{height:53.049563pt;}
.h15_c01048{height:53.893298pt;}
.h8_c01048{height:61.677000pt;}
.h11_c01048{height:62.778559pt;}
.h10_c01048{height:63.512625pt;}
.h5_c01048{height:64.084453pt;}
.h9_c01048{height:64.948125pt;}
.hd_c01048{height:65.164688pt;}
.h4_c01048{height:65.984704pt;}
.he_c01048{height:67.402500pt;}
.h14_c01048{height:68.402813pt;}
.h7_c01048{height:68.921188pt;}
.h2_c01048{height:71.166735pt;}
.hc_c01048{height:82.221563pt;}
.hf_c01048{height:85.173184pt;}
.hb_c01048{height:89.578500pt;}
.h1_c01048{height:986.666667pt;}
.h0_c01048{height:1122.666667pt;}
.w1_c01048{width:689.333333pt;}
.w0_c01048{width:793.333333pt;}
.x0_c01048{left:0.000000pt;}
.x1_c01048{left:52.000000pt;}
.x48_c01048{left:70.001053pt;}
.x21_c01048{left:71.233053pt;}
.xc_c01048{left:72.311053pt;}
.x1a_c01048{left:101.003453pt;}
.x3b_c01048{left:110.665853pt;}
.x4_c01048{left:120.649453pt;}
.x1b_c01048{left:130.144653pt;}
.x14_c01048{left:140.471453pt;}
.x5_c01048{left:150.199853pt;}
.x22_c01048{left:151.423053pt;}
.x34_c01048{left:160.284653pt;}
.xd_c01048{left:169.903053pt;}
.x15_c01048{left:180.911853pt;}
.x35_c01048{left:189.399453pt;}
.x3c_c01048{left:190.525853pt;}
.x49_c01048{left:199.519453pt;}
.x4b_c01048{left:207.325053pt;}
.x16_c01048{left:209.516253pt;}
.xe_c01048{left:218.545053pt;}
.x45_c01048{left:219.640653pt;}
.x23_c01048{left:229.492253pt;}
.x33_c01048{left:239.304253pt;}
.x4c_c01048{left:248.315453pt;}
.x6_c01048{left:249.697053pt;}
.x40_c01048{left:258.937053pt;}
.x31_c01048{left:268.397053pt;}
.x24_c01048{left:269.646653pt;}
.x36_c01048{left:279.146253pt;}
.x25_c01048{left:297.467853pt;}
.x7_c01048{left:298.814253pt;}
.x1c_c01048{left:308.573453pt;}
.xf_c01048{left:318.447053pt;}
.x41_c01048{left:326.578253pt;}
.x26_c01048{left:336.113053pt;}
.x39_c01048{left:337.802653pt;}
.x27_c01048{left:338.968653pt;}
.x28_c01048{left:345.353053pt;}
.x1d_c01048{left:346.844653pt;}
.x29_c01048{left:348.151453pt;}
.x17_c01048{left:356.665453pt;}
.x2a_c01048{left:375.400653pt;}
.x32_c01048{left:376.311453pt;}
.x8_c01048{left:378.273853pt;}
.x2b_c01048{left:381.098653pt;}
.x2c_c01048{left:384.900253pt;}
.x4a_c01048{left:395.935453pt;}
.x1e_c01048{left:397.277453pt;}
.x42_c01048{left:406.719853pt;}
.x37_c01048{left:416.399853pt;}
.x10_c01048{left:425.103053pt;}
.x9_c01048{left:435.975453pt;}
.x1f_c01048{left:445.813853pt;}
.x3a_c01048{left:455.683053pt;}
.xa_c01048{left:465.015453pt;}
.x11_c01048{left:466.942653pt;}
.x18_c01048{left:475.144253pt;}
.x2d_c01048{left:481.035853pt;}
.x2e_c01048{left:485.528253pt;}
.x43_c01048{left:495.591053pt;}
.x3d_c01048{left:504.135853pt;}
.x2f_c01048{left:515.743053pt;}
.x12_c01048{left:524.749853pt;}
.x4d_c01048{left:532.207853pt;}
.xb_c01048{left:534.812653pt;}
.x46_c01048{left:543.089053pt;}
.x13_c01048{left:553.860253pt;}
.x38_c01048{left:562.704253pt;}
.x3e_c01048{left:572.885853pt;}
.x47_c01048{left:581.954253pt;}
.x20_c01048{left:583.934253pt;}
.x2_c01048{left:588.690653pt;}
.x44_c01048{left:592.166653pt;}
.x30_c01048{left:593.174253pt;}
.x19_c01048{left:603.311853pt;}
.x3f_c01048{left:611.830253pt;}
.x3_c01048{left:622.720253pt;}
.x4e_c01048{left:627.344653pt;}
}





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

.ir_c01049:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01049{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01049;src:url('chunks/assets/font_48e87df801245e9d50159f24.woff2')format("woff");}.ff1_c01049{font-family:ff1_c01049;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01049;src:url('chunks/assets/font_ac341333944a7d9bc9c74c93.woff2')format("woff");}.ff2_c01049{font-family:ff2_c01049;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01049;src:url('chunks/assets/font_4ae1cd8d46a516002092d2ca.woff2')format("woff");}.ff3_c01049{font-family:ff3_c01049;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01049;src:url('chunks/assets/font_860b56b34b15fae35b66852b.woff2')format("woff");}.ff4_c01049{font-family:ff4_c01049;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01049;src:url('chunks/assets/font_969a74b811f7beff9b3897f3.woff2')format("woff");}.ff5_c01049{font-family:ff5_c01049;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ma5_c01049{transform:matrix(0.108109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108109,0.000000,0.000000,0.250000,0,0);}
.m83_c01049{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);}
.m99_c01049{transform:matrix(0.144267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144267,0.000000,0.000000,0.250000,0,0);}
.m2d_c01049{transform:matrix(0.155364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155364,0.000000,0.000000,0.250000,0,0);}
.maa_c01049{transform:matrix(0.162383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162383,0.000000,0.000000,0.250000,0,0);}
.m5a_c01049{transform:matrix(0.166461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166461,0.000000,0.000000,0.250000,0,0);}
.m4f_c01049{transform:matrix(0.194643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194643,0.000000,0.000000,0.250000,0,0);}
.ma9_c01049{transform:matrix(0.199362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199362,0.000000,0.000000,0.250000,0,0);}
.m21_c01049{transform:matrix(0.202303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202303,0.000000,0.000000,0.250000,0,0);}
.m37_c01049{transform:matrix(0.209524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209524,0.000000,0.000000,0.250000,0,0);}
.m2f_c01049{transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);}
.m73_c01049{transform:matrix(0.221596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221596,0.000000,0.000000,0.250000,0,0);}
.m1_c01049{transform:matrix(0.234969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234969,0.000000,0.000000,0.250000,0,0);}
.m5_c01049{transform:matrix(0.244652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244652,0.000000,0.000000,0.250000,0,0);}
.m0_c01049{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m19_c01049{transform:matrix(0.250223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250223,0.000000,0.000000,0.250000,0,0);}
.m6e_c01049{transform:matrix(0.262004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262004,0.000000,0.000000,0.250000,0,0);}
.m78_c01049{transform:matrix(0.262126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262126,0.000000,0.000000,0.250000,0,0);}
.mac_c01049{transform:matrix(0.262386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262386,0.000000,0.000000,0.250000,0,0);}
.m10_c01049{transform:matrix(0.262568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262568,0.000000,0.000000,0.250000,0,0);}
.m30_c01049{transform:matrix(0.262999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262999,0.000000,0.000000,0.250000,0,0);}
.m18_c01049{transform:matrix(0.263142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263142,0.000000,0.000000,0.250000,0,0);}
.m63_c01049{transform:matrix(0.263252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263252,0.000000,0.000000,0.250000,0,0);}
.m6_c01049{transform:matrix(0.264899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264899,0.000000,0.000000,0.250000,0,0);}
.m7d_c01049{transform:matrix(0.266057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266057,0.000000,0.000000,0.250000,0,0);}
.m47_c01049{transform:matrix(0.266768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266768,0.000000,0.000000,0.250000,0,0);}
.m92_c01049{transform:matrix(0.268100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268100,0.000000,0.000000,0.250000,0,0);}
.m31_c01049{transform:matrix(0.268144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268144,0.000000,0.000000,0.250000,0,0);}
.m87_c01049{transform:matrix(0.268674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268674,0.000000,0.000000,0.250000,0,0);}
.m6f_c01049{transform:matrix(0.268701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268701,0.000000,0.000000,0.250000,0,0);}
.m23_c01049{transform:matrix(0.268885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268885,0.000000,0.000000,0.250000,0,0);}
.m7b_c01049{transform:matrix(0.269715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269715,0.000000,0.000000,0.250000,0,0);}
.m4b_c01049{transform:matrix(0.269799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269799,0.000000,0.000000,0.250000,0,0);}
.m89_c01049{transform:matrix(0.269917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269917,0.000000,0.000000,0.250000,0,0);}
.ma_c01049{transform:matrix(0.270569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270569,0.000000,0.000000,0.250000,0,0);}
.m20_c01049{transform:matrix(0.271484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271484,0.000000,0.000000,0.250000,0,0);}
.m3_c01049{transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);}
.m5f_c01049{transform:matrix(0.272173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272173,0.000000,0.000000,0.250000,0,0);}
.m62_c01049{transform:matrix(0.272921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272921,0.000000,0.000000,0.250000,0,0);}
.m52_c01049{transform:matrix(0.273180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273180,0.000000,0.000000,0.250000,0,0);}
.m2c_c01049{transform:matrix(0.273491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273491,0.000000,0.000000,0.250000,0,0);}
.m9d_c01049{transform:matrix(0.273663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273663,0.000000,0.000000,0.250000,0,0);}
.m9f_c01049{transform:matrix(0.274105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274105,0.000000,0.000000,0.250000,0,0);}
.m66_c01049{transform:matrix(0.274391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274391,0.000000,0.000000,0.250000,0,0);}
.m33_c01049{transform:matrix(0.274532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274532,0.000000,0.000000,0.250000,0,0);}
.m98_c01049{transform:matrix(0.275589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275589,0.000000,0.000000,0.250000,0,0);}
.m11_c01049{transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);}
.m69_c01049{transform:matrix(0.276919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276919,0.000000,0.000000,0.250000,0,0);}
.m64_c01049{transform:matrix(0.277417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277417,0.000000,0.000000,0.250000,0,0);}
.m79_c01049{transform:matrix(0.277901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277901,0.000000,0.000000,0.250000,0,0);}
.m1b_c01049{transform:matrix(0.279348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279348,0.000000,0.000000,0.250000,0,0);}
.m9_c01049{transform:matrix(0.279920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279920,0.000000,0.000000,0.250000,0,0);}
.mb8_c01049{transform:matrix(0.279982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279982,0.000000,0.000000,0.250000,0,0);}
.m9b_c01049{transform:matrix(0.280041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280041,0.000000,0.000000,0.250000,0,0);}
.m81_c01049{transform:matrix(0.281976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281976,0.000000,0.000000,0.250000,0,0);}
.m57_c01049{transform:matrix(0.283147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283147,0.000000,0.000000,0.250000,0,0);}
.m4d_c01049{transform:matrix(0.283168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283168,0.000000,0.000000,0.250000,0,0);}
.m97_c01049{transform:matrix(0.284326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284326,0.000000,0.000000,0.250000,0,0);}
.m9a_c01049{transform:matrix(0.285134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285134,0.000000,0.000000,0.250000,0,0);}
.m80_c01049{transform:matrix(0.285266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285266,0.000000,0.000000,0.250000,0,0);}
.mb4_c01049{transform:matrix(0.287277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287277,0.000000,0.000000,0.250000,0,0);}
.m86_c01049{transform:matrix(0.287475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287475,0.000000,0.000000,0.250000,0,0);}
.m2e_c01049{transform:matrix(0.288037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288037,0.000000,0.000000,0.250000,0,0);}
.m8c_c01049{transform:matrix(0.289004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289004,0.000000,0.000000,0.250000,0,0);}
.m3a_c01049{transform:matrix(0.289495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289495,0.000000,0.000000,0.250000,0,0);}
.m2a_c01049{transform:matrix(0.289883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289883,0.000000,0.000000,0.250000,0,0);}
.m65_c01049{transform:matrix(0.289976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289976,0.000000,0.000000,0.250000,0,0);}
.ma1_c01049{transform:matrix(0.290344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290344,0.000000,0.000000,0.250000,0,0);}
.mb7_c01049{transform:matrix(0.291160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291160,0.000000,0.000000,0.250000,0,0);}
.m8_c01049{transform:matrix(0.291233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291233,0.000000,0.000000,0.250000,0,0);}
.m1e_c01049{transform:matrix(0.292281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292281,0.000000,0.000000,0.250000,0,0);}
.m5b_c01049{transform:matrix(0.292294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292294,0.000000,0.000000,0.250000,0,0);}
.m24_c01049{transform:matrix(0.292407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292407,0.000000,0.000000,0.250000,0,0);}
.m58_c01049{transform:matrix(0.292530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292530,0.000000,0.000000,0.250000,0,0);}
.m1d_c01049{transform:matrix(0.292823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292823,0.000000,0.000000,0.250000,0,0);}
.m27_c01049{transform:matrix(0.292969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292969,0.000000,0.000000,0.250000,0,0);}
.m1a_c01049{transform:matrix(0.293428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293428,0.000000,0.000000,0.250000,0,0);}
.m22_c01049{transform:matrix(0.293934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293934,0.000000,0.000000,0.250000,0,0);}
.m6d_c01049{transform:matrix(0.294666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294666,0.000000,0.000000,0.250000,0,0);}
.ma6_c01049{transform:matrix(0.295124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295124,0.000000,0.000000,0.250000,0,0);}
.mc_c01049{transform:matrix(0.295448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295448,0.000000,0.000000,0.250000,0,0);}
.m40_c01049{transform:matrix(0.295873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295873,0.000000,0.000000,0.250000,0,0);}
.mae_c01049{transform:matrix(0.296149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296149,0.000000,0.000000,0.250000,0,0);}
.m3b_c01049{transform:matrix(0.296261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296261,0.000000,0.000000,0.250000,0,0);}
.ma0_c01049{transform:matrix(0.296289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296289,0.000000,0.000000,0.250000,0,0);}
.m41_c01049{transform:matrix(0.297759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297759,0.000000,0.000000,0.250000,0,0);}
.m42_c01049{transform:matrix(0.298226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298226,0.000000,0.000000,0.250000,0,0);}
.mad_c01049{transform:matrix(0.298318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298318,0.000000,0.000000,0.250000,0,0);}
.m3f_c01049{transform:matrix(0.299456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299456,0.000000,0.000000,0.250000,0,0);}
.m59_c01049{transform:matrix(0.300150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300150,0.000000,0.000000,0.250000,0,0);}
.m4c_c01049{transform:matrix(0.300328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300328,0.000000,0.000000,0.250000,0,0);}
.m60_c01049{transform:matrix(0.300918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300918,0.000000,0.000000,0.250000,0,0);}
.m5e_c01049{transform:matrix(0.301971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301971,0.000000,0.000000,0.250000,0,0);}
.ma8_c01049{transform:matrix(0.302049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302049,0.000000,0.000000,0.250000,0,0);}
.m6b_c01049{transform:matrix(0.302327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302327,0.000000,0.000000,0.250000,0,0);}
.m35_c01049{transform:matrix(0.302356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302356,0.000000,0.000000,0.250000,0,0);}
.m8a_c01049{transform:matrix(0.302866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302866,0.000000,0.000000,0.250000,0,0);}
.m67_c01049{transform:matrix(0.303388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303388,0.000000,0.000000,0.250000,0,0);}
.m5d_c01049{transform:matrix(0.303551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303551,0.000000,0.000000,0.250000,0,0);}
.m75_c01049{transform:matrix(0.303902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303902,0.000000,0.000000,0.250000,0,0);}
.mb9_c01049{transform:matrix(0.304956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304956,0.000000,0.000000,0.250000,0,0);}
.m56_c01049{transform:matrix(0.305021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305021,0.000000,0.000000,0.250000,0,0);}
.m38_c01049{transform:matrix(0.305290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305290,0.000000,0.000000,0.250000,0,0);}
.m4_c01049{transform:matrix(0.305776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305776,0.000000,0.000000,0.250000,0,0);}
.m7e_c01049{transform:matrix(0.306390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306390,0.000000,0.000000,0.250000,0,0);}
.m90_c01049{transform:matrix(0.307494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307494,0.000000,0.000000,0.250000,0,0);}
.md_c01049{transform:matrix(0.307604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307604,0.000000,0.000000,0.250000,0,0);}
.m74_c01049{transform:matrix(0.308239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308239,0.000000,0.000000,0.250000,0,0);}
.m94_c01049{transform:matrix(0.308376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308376,0.000000,0.000000,0.250000,0,0);}
.m7c_c01049{transform:matrix(0.308389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308389,0.000000,0.000000,0.250000,0,0);}
.m14_c01049{transform:matrix(0.309310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309310,0.000000,0.000000,0.250000,0,0);}
.m91_c01049{transform:matrix(0.309540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309540,0.000000,0.000000,0.250000,0,0);}
.mb0_c01049{transform:matrix(0.309917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309917,0.000000,0.000000,0.250000,0,0);}
.mb_c01049{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m51_c01049{transform:matrix(0.310986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310986,0.000000,0.000000,0.250000,0,0);}
.m9e_c01049{transform:matrix(0.311178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311178,0.000000,0.000000,0.250000,0,0);}
.m77_c01049{transform:matrix(0.311361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311361,0.000000,0.000000,0.250000,0,0);}
.ma2_c01049{transform:matrix(0.312890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312890,0.000000,0.000000,0.250000,0,0);}
.me_c01049{transform:matrix(0.313087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313087,0.000000,0.000000,0.250000,0,0);}
.m36_c01049{transform:matrix(0.313456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313456,0.000000,0.000000,0.250000,0,0);}
.m8d_c01049{transform:matrix(0.313793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313793,0.000000,0.000000,0.250000,0,0);}
.m8b_c01049{transform:matrix(0.314357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314357,0.000000,0.000000,0.250000,0,0);}
.m2b_c01049{transform:matrix(0.314645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314645,0.000000,0.000000,0.250000,0,0);}
.mb5_c01049{transform:matrix(0.314774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314774,0.000000,0.000000,0.250000,0,0);}
.m93_c01049{transform:matrix(0.315021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315021,0.000000,0.000000,0.250000,0,0);}
.m72_c01049{transform:matrix(0.315496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315496,0.000000,0.000000,0.250000,0,0);}
.m54_c01049{transform:matrix(0.317644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317644,0.000000,0.000000,0.250000,0,0);}
.m25_c01049{transform:matrix(0.317687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317687,0.000000,0.000000,0.250000,0,0);}
.mab_c01049{transform:matrix(0.317933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317933,0.000000,0.000000,0.250000,0,0);}
.maf_c01049{transform:matrix(0.317958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317958,0.000000,0.000000,0.250000,0,0);}
.m16_c01049{transform:matrix(0.318221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318221,0.000000,0.000000,0.250000,0,0);}
.m2_c01049{transform:matrix(0.318620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318620,0.000000,0.000000,0.250000,0,0);}
.mb3_c01049{transform:matrix(0.319700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319700,0.000000,0.000000,0.250000,0,0);}
.m3d_c01049{transform:matrix(0.320178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320178,0.000000,0.000000,0.250000,0,0);}
.m76_c01049{transform:matrix(0.320203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320203,0.000000,0.000000,0.250000,0,0);}
.m46_c01049{transform:matrix(0.321128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321128,0.000000,0.000000,0.250000,0,0);}
.m43_c01049{transform:matrix(0.321240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321240,0.000000,0.000000,0.250000,0,0);}
.m39_c01049{transform:matrix(0.322843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322843,0.000000,0.000000,0.250000,0,0);}
.mb6_c01049{transform:matrix(0.323189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323189,0.000000,0.000000,0.250000,0,0);}
.m1f_c01049{transform:matrix(0.323450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323450,0.000000,0.000000,0.250000,0,0);}
.m53_c01049{transform:matrix(0.323492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323492,0.000000,0.000000,0.250000,0,0);}
.m26_c01049{transform:matrix(0.324796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324796,0.000000,0.000000,0.250000,0,0);}
.ma3_c01049{transform:matrix(0.324983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324983,0.000000,0.000000,0.250000,0,0);}
.m61_c01049{transform:matrix(0.325137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325137,0.000000,0.000000,0.250000,0,0);}
.m88_c01049{transform:matrix(0.325789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325789,0.000000,0.000000,0.250000,0,0);}
.m32_c01049{transform:matrix(0.325832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325832,0.000000,0.000000,0.250000,0,0);}
.m84_c01049{transform:matrix(0.326556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326556,0.000000,0.000000,0.250000,0,0);}
.m7f_c01049{transform:matrix(0.326691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326691,0.000000,0.000000,0.250000,0,0);}
.m6a_c01049{transform:matrix(0.327155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327155,0.000000,0.000000,0.250000,0,0);}
.mb1_c01049{transform:matrix(0.329181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329181,0.000000,0.000000,0.250000,0,0);}
.m13_c01049{transform:matrix(0.330130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330130,0.000000,0.000000,0.250000,0,0);}
.ma7_c01049{transform:matrix(0.331687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331687,0.000000,0.000000,0.250000,0,0);}
.m45_c01049{transform:matrix(0.332367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332367,0.000000,0.000000,0.250000,0,0);}
.m8f_c01049{transform:matrix(0.333783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333783,0.000000,0.000000,0.250000,0,0);}
.m48_c01049{transform:matrix(0.333828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333828,0.000000,0.000000,0.250000,0,0);}
.m15_c01049{transform:matrix(0.333835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333835,0.000000,0.000000,0.250000,0,0);}
.m44_c01049{transform:matrix(0.334637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334637,0.000000,0.000000,0.250000,0,0);}
.m71_c01049{transform:matrix(0.335062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335062,0.000000,0.000000,0.250000,0,0);}
.m17_c01049{transform:matrix(0.336070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336070,0.000000,0.000000,0.250000,0,0);}
.m49_c01049{transform:matrix(0.336407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336407,0.000000,0.000000,0.250000,0,0);}
.m1c_c01049{transform:matrix(0.337388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337388,0.000000,0.000000,0.250000,0,0);}
.m8e_c01049{transform:matrix(0.337941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337941,0.000000,0.000000,0.250000,0,0);}
.m96_c01049{transform:matrix(0.338413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338413,0.000000,0.000000,0.250000,0,0);}
.m50_c01049{transform:matrix(0.340247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340247,0.000000,0.000000,0.250000,0,0);}
.m28_c01049{transform:matrix(0.340698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340698,0.000000,0.000000,0.250000,0,0);}
.mb2_c01049{transform:matrix(0.341855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341855,0.000000,0.000000,0.250000,0,0);}
.m70_c01049{transform:matrix(0.343103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343103,0.000000,0.000000,0.250000,0,0);}
.mf_c01049{transform:matrix(0.343636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343636,0.000000,0.000000,0.250000,0,0);}
.m6c_c01049{transform:matrix(0.344194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344194,0.000000,0.000000,0.250000,0,0);}
.m7a_c01049{transform:matrix(0.345101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345101,0.000000,0.000000,0.250000,0,0);}
.m68_c01049{transform:matrix(0.345888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345888,0.000000,0.000000,0.250000,0,0);}
.m85_c01049{transform:matrix(0.349669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349669,0.000000,0.000000,0.250000,0,0);}
.m7_c01049{transform:matrix(0.349884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349884,0.000000,0.000000,0.250000,0,0);}
.ma4_c01049{transform:matrix(0.352325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352325,0.000000,0.000000,0.250000,0,0);}
.m3c_c01049{transform:matrix(0.356132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356132,0.000000,0.000000,0.250000,0,0);}
.m4a_c01049{transform:matrix(0.357299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357299,0.000000,0.000000,0.250000,0,0);}
.m34_c01049{transform:matrix(0.357328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357328,0.000000,0.000000,0.250000,0,0);}
.m95_c01049{transform:matrix(0.362380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362380,0.000000,0.000000,0.250000,0,0);}
.m29_c01049{transform:matrix(0.369797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369797,0.000000,0.000000,0.250000,0,0);}
.m82_c01049{transform:matrix(0.372054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372054,0.000000,0.000000,0.250000,0,0);}
.m9c_c01049{transform:matrix(0.391270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391270,0.000000,0.000000,0.250000,0,0);}
.m55_c01049{transform:matrix(0.397481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397481,0.000000,0.000000,0.250000,0,0);}
.m4e_c01049{transform:matrix(0.403692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403692,0.000000,0.000000,0.250000,0,0);}
.m12_c01049{transform:matrix(0.409902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409902,0.000000,0.000000,0.250000,0,0);}
.m3e_c01049{transform:matrix(0.412769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412769,0.000000,0.000000,0.250000,0,0);}
.m5c_c01049{transform:matrix(0.416113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416113,0.000000,0.000000,0.250000,0,0);}
.v0_c01049{vertical-align:0.000000px;}
.ls16_c01049{letter-spacing:-2.993767px;}
.ls1_c01049{letter-spacing:-2.758140px;}
.ls3_c01049{letter-spacing:-2.661127px;}
.ls0_c01049{letter-spacing:0.000000px;}
.ls10_c01049{letter-spacing:0.319335px;}
.ls6_c01049{letter-spacing:0.790735px;}
.ls13_c01049{letter-spacing:1.269738px;}
.lsf_c01049{letter-spacing:2.702700px;}
.lsa_c01049{letter-spacing:3.306610px;}
.lsb_c01049{letter-spacing:3.316500px;}
.ls11_c01049{letter-spacing:3.436655px;}
.ls5_c01049{letter-spacing:3.484810px;}
.ls4_c01049{letter-spacing:3.564000px;}
.lsc_c01049{letter-spacing:3.603610px;}
.ls8_c01049{letter-spacing:3.722400px;}
.lsd_c01049{letter-spacing:3.791700px;}
.ls2_c01049{letter-spacing:3.801610px;}
.ls14_c01049{letter-spacing:3.950110px;}
.ls9_c01049{letter-spacing:49.896198px;}
.ls15_c01049{letter-spacing:52.747398px;}
.ls7_c01049{letter-spacing:54.172998px;}
.lse_c01049{letter-spacing:57.024198px;}
.ls12_c01049{letter-spacing:59.875398px;}
.sc__c01049{text-shadow:none;}
.sc0_c01049{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01049{-webkit-text-stroke:0px transparent;}
.sc0_c01049{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01049{word-spacing:0.000000px;}
._4_c01049{margin-left:-14.809713px;}
._6_c01049{margin-left:-4.755564px;}
._2_c01049{width:4.029608px;}
._0_c01049{width:8.287389px;}
._5_c01049{width:13.032360px;}
._1_c01049{width:24.330581px;}
._3_c01049{width:48.539700px;}
.fc0_c01049{color:transparent;}
.fs10_c01049{font-size:21.186000px;}
.fs4_c01049{font-size:22.176000px;}
.fs1_c01049{font-size:27.720000px;}
.fs17_c01049{font-size:30.096000px;}
.fs6_c01049{font-size:39.402000px;}
.fs11_c01049{font-size:44.946198px;}
.fs9_c01049{font-size:49.896198px;}
.fs15_c01049{font-size:52.747398px;}
.fs12_c01049{font-size:54.054000px;}
.fs7_c01049{font-size:54.172998px;}
.fse_c01049{font-size:57.024198px;}
.fs13_c01049{font-size:59.875398px;}
.fsa_c01049{font-size:66.132198px;}
.fsb_c01049{font-size:66.330000px;}
.fs5_c01049{font-size:69.696198px;}
.fs3_c01049{font-size:71.280000px;}
.fsc_c01049{font-size:72.072198px;}
.fs8_c01049{font-size:74.448000px;}
.fsf_c01049{font-size:74.844000px;}
.fsd_c01049{font-size:75.834000px;}
.fs2_c01049{font-size:76.032198px;}
.fs0_c01049{font-size:78.804000px;}
.fs14_c01049{font-size:79.002198px;}
.fs16_c01049{font-size:85.536198px;}
.y0_c01049{bottom:0.000000px;}
.y1_c01049{bottom:76.500000px;}
.y22_c01049{bottom:121.800720px;}
.y21_c01049{bottom:154.228170px;}
.y20_c01049{bottom:182.740170px;}
.y1f_c01049{bottom:187.021920px;}
.y1e_c01049{bottom:220.879920px;}
.y1d_c01049{bottom:284.314170px;}
.y1c_c01049{bottom:316.395120px;}
.y1b_c01049{bottom:348.822570px;}
.y1a_c01049{bottom:380.190720px;}
.y19_c01049{bottom:412.266720px;}
.y18_c01049{bottom:444.342720px;}
.y17_c01049{bottom:475.349520px;}
.y16_c01049{bottom:476.413770px;}
.y15_c01049{bottom:508.489770px;}
.y12_c01049{bottom:539.852970px;}
.y13_c01049{bottom:540.570720px;}
.y14_c01049{bottom:547.337370px;}
.yf_c01049{bottom:604.004970px;}
.y11_c01049{bottom:604.722720px;}
.y10_c01049{bottom:618.260970px;}
.ye_c01049{bottom:637.155120px;}
.yd_c01049{bottom:668.518320px;}
.yc_c01049{bottom:700.594320px;}
.yb_c01049{bottom:732.665370px;}
.ya_c01049{bottom:793.609770px;}
.y9_c01049{bottom:795.391770px;}
.y8_c01049{bottom:827.472720px;}
.y7_c01049{bottom:858.830970px;}
.y6_c01049{bottom:890.550570px;}
.y5_c01049{bottom:906.232170px;}
.y4_c01049{bottom:922.631520px;}
.y3_c01049{bottom:951.138570px;}
.y2_c01049{bottom:1050.930570px;}
.h11_c01049{height:22.096336px;}
.h6_c01049{height:23.128875px;}
.h3_c01049{height:28.911094px;}
.ha_c01049{height:33.230868px;}
.h18_c01049{height:35.129767px;}
.h8_c01049{height:36.079217px;}
.hf_c01049{height:37.978116px;}
.h16_c01049{height:39.877015px;}
.h13_c01049{height:44.112235px;}
.h15_c01049{height:56.376633px;}
.hb_c01049{height:68.973816px;}
.hc_c01049{height:69.180117px;}
.h5_c01049{height:69.957422px;}
.hd_c01049{height:70.734921px;}
.h7_c01049{height:72.690957px;}
.h10_c01049{height:73.455293px;}
.h12_c01049{height:74.342813px;}
.he_c01049{height:74.426924px;}
.h4_c01049{height:74.621444px;}
.h14_c01049{height:75.169050px;}
.h2_c01049{height:77.341816px;}
.h17_c01049{height:77.536337px;}
.h9_c01049{height:77.646938px;}
.h19_c01049{height:86.204450px;}
.h1_c01049{height:1110.000000px;}
.h0_c01049{height:1263.000000px;}
.w1_c01049{width:775.500000px;}
.w0_c01049{width:892.500000px;}
.x0_c01049{left:0.000000px;}
.x1_c01049{left:58.500000px;}
.x53_c01049{left:78.023535px;}
.x25_c01049{left:79.384785px;}
.x5_c01049{left:80.597535px;}
.x40_c01049{left:100.437135px;}
.x3c_c01049{left:113.440785px;}
.x54_c01049{left:123.429885px;}
.x26_c01049{left:124.791135px;}
.x1b_c01049{left:126.637485px;}
.x2f_c01049{left:133.508085px;}
.x6_c01049{left:135.928635px;}
.x74_c01049{left:144.709935px;}
.x5c_c01049{left:155.337585px;}
.x27_c01049{left:156.396885px;}
.x36_c01049{left:167.039385px;}
.x7_c01049{left:169.039185px;}
.x81_c01049{left:178.330335px;}
.x30_c01049{left:179.612385px;}
.x2d_c01049{left:181.503285px;}
.x55_c01049{left:188.759985px;}
.x3d_c01049{left:190.413285px;}
.x48_c01049{left:200.372685px;}
.x37_c01049{left:201.516135px;}
.x14_c01049{left:203.312985px;}
.x79_c01049{left:211.094385px;}
.x70_c01049{left:212.198235px;}
.x1c_c01049{left:216.207735px;}
.x5f_c01049{left:221.964585px;}
.x47_c01049{left:224.434635px;}
.x6a_c01049{left:233.176335px;}
.x49_c01049{left:234.621735px;}
.x28_c01049{left:236.077035px;}
.x56_c01049{left:243.660435px;}
.x41_c01049{left:244.917735px;}
.x7a_c01049{left:256.372035px;}
.x29_c01049{left:258.411435px;}
.x4e_c01049{left:266.648235px;}
.x8_c01049{left:267.831285px;}
.x2e_c01049{left:270.053835px;}
.x64_c01049{left:277.701585px;}
.x15_c01049{left:279.909285px;}
.x4a_c01049{left:289.878585px;}
.x1d_c01049{left:291.645735px;}
.x82_c01049{left:299.095485px;}
.x4f_c01049{left:300.555735px;}
.x9_c01049{left:302.228835px;}
.x65_c01049{left:311.569485px;}
.x16_c01049{left:312.628785px;}
.x57_c01049{left:322.093185px;}
.x1e_c01049{left:324.741435px;}
.x83_c01049{left:332.606985px;}
.x6b_c01049{left:334.096935px;}
.x31_c01049{left:335.146335px;}
.x7d_c01049{left:342.843585px;}
.x58_c01049{left:345.467085px;}
.x17_c01049{left:346.476885px;}
.x60_c01049{left:355.431435px;}
.x3e_c01049{left:356.540235px;}
.x1f_c01049{left:357.584685px;}
.xa_c01049{left:358.658835px;}
.x75_c01049{left:366.776835px;}
.x42_c01049{left:367.860885px;}
.x59_c01049{left:377.859885px;}
.x38_c01049{left:379.255785px;}
.x6c_c01049{left:390.373485px;}
.xb_c01049{left:391.378335px;}
.x61_c01049{left:398.946885px;}
.x72_c01049{left:400.001235px;}
.x4b_c01049{left:401.758485px;}
.x5a_c01049{left:411.425835px;}
.x20_c01049{left:413.207835px;}
.x6d_c01049{left:422.053485px;}
.xc_c01049{left:423.375135px;}
.x32_c01049{left:435.279885px;}
.x5d_c01049{left:444.026535px;}
.x21_c01049{left:445.966935px;}
.xd_c01049{left:447.288585px;}
.x6e_c01049{left:454.362135px;}
.x62_c01049{left:455.842185px;}
.x5b_c01049{left:457.282635px;}
.x33_c01049{left:466.984635px;}
.x66_c01049{left:477.721185px;}
.x2a_c01049{left:479.013135px;}
.x43_c01049{left:488.581485px;}
.xe_c01049{left:490.249635px;}
.x76_c01049{left:499.100235px;}
.x18_c01049{left:502.228635px;}
.x13_c01049{left:508.841835px;}
.x34_c01049{left:510.668385px;}
.x44_c01049{left:511.846485px;}
.x67_c01049{left:522.488985px;}
.xf_c01049{left:523.691835px;}
.x77_c01049{left:531.819735px;}
.x39_c01049{left:533.671035px;}
.x22_c01049{left:535.012485px;}
.x71_c01049{left:542.744385px;}
.x3f_c01049{left:543.808635px;}
.x68_c01049{left:555.040185px;}
.x10_c01049{left:556.119285px;}
.x3a_c01049{left:566.044035px;}
.x23_c01049{left:567.875535px;}
.x50_c01049{left:576.795435px;}
.x2b_c01049{left:578.904135px;}
.x73_c01049{left:587.289435px;}
.x5e_c01049{left:598.466535px;}
.x35_c01049{left:599.951535px;}
.x84_c01049{left:608.529885px;}
.x4c_c01049{left:610.267335px;}
.x19_c01049{left:611.687985px;}
.x7b_c01049{left:620.439585px;}
.x51_c01049{left:621.929535px;}
.x45_c01049{left:631.136535px;}
.x7e_c01049{left:640.927635px;}
.x6f_c01049{left:643.085835px;}
.x7f_c01049{left:651.050385px;}
.x52_c01049{left:654.094635px;}
.x1a_c01049{left:655.688535px;}
.x11_c01049{left:657.218085px;}
.x2_c01049{left:663.365985px;}
.x46_c01049{left:665.415285px;}
.x3_c01049{left:674.389635px;}
.x3b_c01049{left:677.171535px;}
.x4d_c01049{left:678.305085px;}
.x80_c01049{left:683.126385px;}
.x63_c01049{left:687.274485px;}
.x24_c01049{left:688.912935px;}
.x12_c01049{left:690.076185px;}
.x7c_c01049{left:696.387435px;}
.x69_c01049{left:697.931835px;}
.x2c_c01049{left:700.075185px;}
.x4_c01049{left:701.273085px;}
.x78_c01049{left:722.176935px;}
@media print{
.v0_c01049{vertical-align:0.000000pt;}
.ls16_c01049{letter-spacing:-2.661126pt;}
.ls1_c01049{letter-spacing:-2.451680pt;}
.ls3_c01049{letter-spacing:-2.365446pt;}
.ls0_c01049{letter-spacing:0.000000pt;}
.ls10_c01049{letter-spacing:0.283854pt;}
.ls6_c01049{letter-spacing:0.702875pt;}
.ls13_c01049{letter-spacing:1.128656pt;}
.lsf_c01049{letter-spacing:2.402400pt;}
.lsa_c01049{letter-spacing:2.939209pt;}
.lsb_c01049{letter-spacing:2.948000pt;}
.ls11_c01049{letter-spacing:3.054805pt;}
.ls5_c01049{letter-spacing:3.097609pt;}
.ls4_c01049{letter-spacing:3.168000pt;}
.lsc_c01049{letter-spacing:3.203209pt;}
.ls8_c01049{letter-spacing:3.308800pt;}
.lsd_c01049{letter-spacing:3.370400pt;}
.ls2_c01049{letter-spacing:3.379209pt;}
.ls14_c01049{letter-spacing:3.511209pt;}
.ls9_c01049{letter-spacing:44.352176pt;}
.ls15_c01049{letter-spacing:46.886576pt;}
.ls7_c01049{letter-spacing:48.153776pt;}
.lse_c01049{letter-spacing:50.688176pt;}
.ls12_c01049{letter-spacing:53.222576pt;}
.ws0_c01049{word-spacing:0.000000pt;}
._4_c01049{margin-left:-13.164189pt;}
._6_c01049{margin-left:-4.227168pt;}
._2_c01049{width:3.581874pt;}
._0_c01049{width:7.366568pt;}
._5_c01049{width:11.584320pt;}
._1_c01049{width:21.627183pt;}
._3_c01049{width:43.146400pt;}
.fs10_c01049{font-size:18.832000pt;}
.fs4_c01049{font-size:19.712000pt;}
.fs1_c01049{font-size:24.640000pt;}
.fs17_c01049{font-size:26.752000pt;}
.fs6_c01049{font-size:35.024000pt;}
.fs11_c01049{font-size:39.952176pt;}
.fs9_c01049{font-size:44.352176pt;}
.fs15_c01049{font-size:46.886576pt;}
.fs12_c01049{font-size:48.048000pt;}
.fs7_c01049{font-size:48.153776pt;}
.fse_c01049{font-size:50.688176pt;}
.fs13_c01049{font-size:53.222576pt;}
.fsa_c01049{font-size:58.784176pt;}
.fsb_c01049{font-size:58.960000pt;}
.fs5_c01049{font-size:61.952176pt;}
.fs3_c01049{font-size:63.360000pt;}
.fsc_c01049{font-size:64.064176pt;}
.fs8_c01049{font-size:66.176000pt;}
.fsf_c01049{font-size:66.528000pt;}
.fsd_c01049{font-size:67.408000pt;}
.fs2_c01049{font-size:67.584176pt;}
.fs0_c01049{font-size:70.048000pt;}
.fs14_c01049{font-size:70.224176pt;}
.fs16_c01049{font-size:76.032176pt;}
.y0_c01049{bottom:0.000000pt;}
.y1_c01049{bottom:68.000000pt;}
.y22_c01049{bottom:108.267307pt;}
.y21_c01049{bottom:137.091707pt;}
.y20_c01049{bottom:162.435707pt;}
.y1f_c01049{bottom:166.241707pt;}
.y1e_c01049{bottom:196.337707pt;}
.y1d_c01049{bottom:252.723707pt;}
.y1c_c01049{bottom:281.240107pt;}
.y1b_c01049{bottom:310.064507pt;}
.y1a_c01049{bottom:337.947307pt;}
.y19_c01049{bottom:366.459307pt;}
.y18_c01049{bottom:394.971307pt;}
.y17_c01049{bottom:422.532907pt;}
.y16_c01049{bottom:423.478907pt;}
.y15_c01049{bottom:451.990907pt;}
.y12_c01049{bottom:479.869307pt;}
.y13_c01049{bottom:480.507307pt;}
.y14_c01049{bottom:486.522107pt;}
.yf_c01049{bottom:536.893307pt;}
.y11_c01049{bottom:537.531307pt;}
.y10_c01049{bottom:549.565307pt;}
.ye_c01049{bottom:566.360107pt;}
.yd_c01049{bottom:594.238507pt;}
.yc_c01049{bottom:622.750507pt;}
.yb_c01049{bottom:651.258107pt;}
.ya_c01049{bottom:705.430907pt;}
.y9_c01049{bottom:707.014907pt;}
.y8_c01049{bottom:735.531307pt;}
.y7_c01049{bottom:763.405307pt;}
.y6_c01049{bottom:791.600507pt;}
.y5_c01049{bottom:805.539707pt;}
.y4_c01049{bottom:820.116907pt;}
.y3_c01049{bottom:845.456507pt;}
.y2_c01049{bottom:934.160507pt;}
.h11_c01049{height:19.641188pt;}
.h6_c01049{height:20.559000pt;}
.h3_c01049{height:25.698750pt;}
.ha_c01049{height:29.538549pt;}
.h18_c01049{height:31.226460pt;}
.h8_c01049{height:32.070415pt;}
.hf_c01049{height:33.758325pt;}
.h16_c01049{height:35.446236pt;}
.h13_c01049{height:39.210876pt;}
.h15_c01049{height:50.112563pt;}
.hb_c01049{height:61.310059pt;}
.hc_c01049{height:61.493438pt;}
.h5_c01049{height:62.184375pt;}
.hd_c01049{height:62.875485pt;}
.h7_c01049{height:64.614184pt;}
.h10_c01049{height:65.293594pt;}
.h12_c01049{height:66.082500pt;}
.he_c01049{height:66.157266pt;}
.h4_c01049{height:66.330173pt;}
.h14_c01049{height:66.816934pt;}
.h2_c01049{height:68.748281pt;}
.h17_c01049{height:68.921188pt;}
.h9_c01049{height:69.019500pt;}
.h19_c01049{height:76.626177pt;}
.h1_c01049{height:986.666667pt;}
.h0_c01049{height:1122.666667pt;}
.w1_c01049{width:689.333333pt;}
.w0_c01049{width:793.333333pt;}
.x0_c01049{left:0.000000pt;}
.x1_c01049{left:52.000000pt;}
.x53_c01049{left:69.354253pt;}
.x25_c01049{left:70.564253pt;}
.x5_c01049{left:71.642253pt;}
.x40_c01049{left:89.277453pt;}
.x3c_c01049{left:100.836253pt;}
.x54_c01049{left:109.715453pt;}
.x26_c01049{left:110.925453pt;}
.x1b_c01049{left:112.566653pt;}
.x2f_c01049{left:118.673853pt;}
.x6_c01049{left:120.825453pt;}
.x74_c01049{left:128.631053pt;}
.x5c_c01049{left:138.077853pt;}
.x27_c01049{left:139.019453pt;}
.x36_c01049{left:148.479453pt;}
.x7_c01049{left:150.257053pt;}
.x81_c01049{left:158.515853pt;}
.x30_c01049{left:159.655453pt;}
.x2d_c01049{left:161.336253pt;}
.x55_c01049{left:167.786653pt;}
.x3d_c01049{left:169.256253pt;}
.x48_c01049{left:178.109053pt;}
.x37_c01049{left:179.125453pt;}
.x14_c01049{left:180.722653pt;}
.x79_c01049{left:187.639453pt;}
.x70_c01049{left:188.620653pt;}
.x1c_c01049{left:192.184653pt;}
.x5f_c01049{left:197.301853pt;}
.x47_c01049{left:199.497453pt;}
.x6a_c01049{left:207.267853pt;}
.x49_c01049{left:208.552653pt;}
.x28_c01049{left:209.846253pt;}
.x56_c01049{left:216.587053pt;}
.x41_c01049{left:217.704653pt;}
.x7a_c01049{left:227.886253pt;}
.x29_c01049{left:229.699053pt;}
.x4e_c01049{left:237.020653pt;}
.x8_c01049{left:238.072253pt;}
.x2e_c01049{left:240.047853pt;}
.x64_c01049{left:246.845853pt;}
.x15_c01049{left:248.808253pt;}
.x4a_c01049{left:257.669853pt;}
.x1d_c01049{left:259.240653pt;}
.x82_c01049{left:265.862653pt;}
.x4f_c01049{left:267.160653pt;}
.x9_c01049{left:268.647853pt;}
.x65_c01049{left:276.950653pt;}
.x16_c01049{left:277.892253pt;}
.x57_c01049{left:286.305053pt;}
.x1e_c01049{left:288.659053pt;}
.x83_c01049{left:295.650653pt;}
.x6b_c01049{left:296.975053pt;}
.x31_c01049{left:297.907853pt;}
.x7d_c01049{left:304.749853pt;}
.x58_c01049{left:307.081853pt;}
.x17_c01049{left:307.979453pt;}
.x60_c01049{left:315.939053pt;}
.x3e_c01049{left:316.924653pt;}
.x1f_c01049{left:317.853053pt;}
.xa_c01049{left:318.807853pt;}
.x75_c01049{left:326.023853pt;}
.x42_c01049{left:326.987453pt;}
.x59_c01049{left:335.875453pt;}
.x38_c01049{left:337.116253pt;}
.x6c_c01049{left:346.998653pt;}
.xb_c01049{left:347.891853pt;}
.x61_c01049{left:354.619453pt;}
.x72_c01049{left:355.556653pt;}
.x4b_c01049{left:357.118653pt;}
.x5a_c01049{left:365.711853pt;}
.x20_c01049{left:367.295853pt;}
.x6d_c01049{left:375.158653pt;}
.xc_c01049{left:376.333453pt;}
.x32_c01049{left:386.915453pt;}
.x5d_c01049{left:394.690253pt;}
.x21_c01049{left:396.415053pt;}
.xd_c01049{left:397.589853pt;}
.x6e_c01049{left:403.877453pt;}
.x62_c01049{left:405.193053pt;}
.x5b_c01049{left:406.473453pt;}
.x33_c01049{left:415.097453pt;}
.x66_c01049{left:424.641053pt;}
.x2a_c01049{left:425.789453pt;}
.x43_c01049{left:434.294653pt;}
.xe_c01049{left:435.777453pt;}
.x76_c01049{left:443.644653pt;}
.x18_c01049{left:446.425453pt;}
.x13_c01049{left:452.303853pt;}
.x34_c01049{left:453.927453pt;}
.x44_c01049{left:454.974653pt;}
.x67_c01049{left:464.434653pt;}
.xf_c01049{left:465.503853pt;}
.x77_c01049{left:472.728653pt;}
.x39_c01049{left:474.374253pt;}
.x22_c01049{left:475.566653pt;}
.x71_c01049{left:482.439453pt;}
.x3f_c01049{left:483.385453pt;}
.x68_c01049{left:493.369053pt;}
.x10_c01049{left:494.328253pt;}
.x3a_c01049{left:503.150253pt;}
.x23_c01049{left:504.778253pt;}
.x50_c01049{left:512.707053pt;}
.x2b_c01049{left:514.581453pt;}
.x73_c01049{left:522.035053pt;}
.x5e_c01049{left:531.970253pt;}
.x35_c01049{left:533.290253pt;}
.x84_c01049{left:540.915453pt;}
.x4c_c01049{left:542.459853pt;}
.x19_c01049{left:543.722653pt;}
.x7b_c01049{left:551.501853pt;}
.x51_c01049{left:552.826253pt;}
.x45_c01049{left:561.010253pt;}
.x7e_c01049{left:569.713453pt;}
.x6f_c01049{left:571.631853pt;}
.x7f_c01049{left:578.711453pt;}
.x52_c01049{left:581.417453pt;}
.x1a_c01049{left:582.834253pt;}
.x11_c01049{left:584.193853pt;}
.x2_c01049{left:589.658653pt;}
.x46_c01049{left:591.480253pt;}
.x3_c01049{left:599.457453pt;}
.x3b_c01049{left:601.930253pt;}
.x4d_c01049{left:602.937853pt;}
.x80_c01049{left:607.223453pt;}
.x63_c01049{left:610.910653pt;}
.x24_c01049{left:612.367053pt;}
.x12_c01049{left:613.401053pt;}
.x7c_c01049{left:619.011053pt;}
.x69_c01049{left:620.383853pt;}
.x2c_c01049{left:622.289053pt;}
.x4_c01049{left:623.353853pt;}
.x78_c01049{left:641.935053pt;}
}





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

.ir_c01050:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01050{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01050;src:url('chunks/assets/font_b20d9fd1c68da0a1ab5820f5.woff2')format("woff");}.ff1_c01050{font-family:ff1_c01050;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01050;src:url('chunks/assets/font_b64dad3dd13f80de1fbaf5b8.woff2')format("woff");}.ff2_c01050{font-family:ff2_c01050;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01050;src:url('chunks/assets/font_fbd48ef5677facf93b48c2df.woff2')format("woff");}.ff3_c01050{font-family:ff3_c01050;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01050;src:url('chunks/assets/font_db629d71ccd36bcb0b251ce2.woff2')format("woff");}.ff4_c01050{font-family:ff4_c01050;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01050;src:url('chunks/assets/font_edcc006c864d99e56da12f3a.woff2')format("woff");}.ff5_c01050{font-family:ff5_c01050;line-height:0.689941;font-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_c01050{transform:matrix(0.027501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.027501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.027501,0.000000,0.000000,0.250000,0,0);}
.m2d_c01050{transform:matrix(0.028410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.028410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.028410,0.000000,0.000000,0.250000,0,0);}
.m74_c01050{transform:matrix(0.035715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.035715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.035715,0.000000,0.000000,0.250000,0,0);}
.m48_c01050{transform:matrix(0.077084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077084,0.000000,0.000000,0.250000,0,0);}
.m2e_c01050{transform:matrix(0.084280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084280,0.000000,0.000000,0.250000,0,0);}
.m2b_c01050{transform:matrix(0.085227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085227,0.000000,0.000000,0.250000,0,0);}
.m4d_c01050{transform:matrix(0.091876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091876,0.000000,0.000000,0.250000,0,0);}
.m28_c01050{transform:matrix(0.102747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102747,0.000000,0.000000,0.250000,0,0);}
.m30_c01050{transform:matrix(0.106061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106061,0.000000,0.000000,0.250000,0,0);}
.m4f_c01050{transform:matrix(0.110001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110001,0.000000,0.000000,0.250000,0,0);}
.ma_c01050{transform:matrix(0.113430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113430,0.000000,0.000000,0.250000,0,0);}
.m49_c01050{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m4b_c01050{transform:matrix(0.128076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128076,0.000000,0.000000,0.250000,0,0);}
.m2f_c01050{transform:matrix(0.136450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136450,0.000000,0.000000,0.250000,0,0);}
.m2a_c01050{transform:matrix(0.145834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145834,0.000000,0.000000,0.250000,0,0);}
.m18_c01050{transform:matrix(0.154892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154892,0.000000,0.000000,0.250000,0,0);}
.m9f_c01050{transform:matrix(0.157442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157442,0.000000,0.000000,0.250000,0,0);}
.m9_c01050{transform:matrix(0.157599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157599,0.000000,0.000000,0.250000,0,0);}
.m17_c01050{transform:matrix(0.168478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168478,0.000000,0.000000,0.250000,0,0);}
.m7f_c01050{transform:matrix(0.169375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169375,0.000000,0.000000,0.250000,0,0);}
.m73_c01050{transform:matrix(0.172619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172619,0.000000,0.000000,0.250000,0,0);}
.m29_c01050{transform:matrix(0.176137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176137,0.000000,0.000000,0.250000,0,0);}
.m64_c01050{transform:matrix(0.178219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178219,0.000000,0.000000,0.250000,0,0);}
.mc_c01050{transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);}
.m31_c01050{transform:matrix(0.179419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179419,0.000000,0.000000,0.250000,0,0);}
.m2c_c01050{transform:matrix(0.181819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181819,0.000000,0.000000,0.250000,0,0);}
.m7c_c01050{transform:matrix(0.184669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184669,0.000000,0.000000,0.250000,0,0);}
.m7a_c01050{transform:matrix(0.186901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186901,0.000000,0.000000,0.250000,0,0);}
.m19_c01050{transform:matrix(0.192935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192935,0.000000,0.000000,0.250000,0,0);}
.m4a_c01050{transform:matrix(0.203809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203809,0.000000,0.000000,0.250000,0,0);}
.m3_c01050{transform:matrix(0.211428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211428,0.000000,0.000000,0.250000,0,0);}
.mac_c01050{transform:matrix(0.214739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214739,0.000000,0.000000,0.250000,0,0);}
.m95_c01050{transform:matrix(0.224092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224092,0.000000,0.000000,0.250000,0,0);}
.m0_c01050{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01050{transform:matrix(0.251640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251640,0.000000,0.000000,0.250000,0,0);}
.m1_c01050{transform:matrix(0.251939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251939,0.000000,0.000000,0.250000,0,0);}
.mb_c01050{transform:matrix(0.252313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252313,0.000000,0.000000,0.250000,0,0);}
.m38_c01050{transform:matrix(0.254161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254161,0.000000,0.000000,0.250000,0,0);}
.m54_c01050{transform:matrix(0.254533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254533,0.000000,0.000000,0.250000,0,0);}
.m1a_c01050{transform:matrix(0.255101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255101,0.000000,0.000000,0.250000,0,0);}
.m9e_c01050{transform:matrix(0.255540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255540,0.000000,0.000000,0.250000,0,0);}
.md_c01050{transform:matrix(0.256819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256819,0.000000,0.000000,0.250000,0,0);}
.m59_c01050{transform:matrix(0.256875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256875,0.000000,0.000000,0.250000,0,0);}
.m83_c01050{transform:matrix(0.258377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258377,0.000000,0.000000,0.250000,0,0);}
.m6e_c01050{transform:matrix(0.258650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258650,0.000000,0.000000,0.250000,0,0);}
.m4c_c01050{transform:matrix(0.258723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258723,0.000000,0.000000,0.250000,0,0);}
.m47_c01050{transform:matrix(0.259656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259656,0.000000,0.000000,0.250000,0,0);}
.m25_c01050{transform:matrix(0.260046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260046,0.000000,0.000000,0.250000,0,0);}
.m90_c01050{transform:matrix(0.261026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261026,0.000000,0.000000,0.250000,0,0);}
.m88_c01050{transform:matrix(0.261745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261745,0.000000,0.000000,0.250000,0,0);}
.m3f_c01050{transform:matrix(0.262002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262002,0.000000,0.000000,0.250000,0,0);}
.m87_c01050{transform:matrix(0.262613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262613,0.000000,0.000000,0.250000,0,0);}
.mb1_c01050{transform:matrix(0.263176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263176,0.000000,0.000000,0.250000,0,0);}
.m50_c01050{transform:matrix(0.263210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263210,0.000000,0.000000,0.250000,0,0);}
.m8d_c01050{transform:matrix(0.264211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264211,0.000000,0.000000,0.250000,0,0);}
.ma9_c01050{transform:matrix(0.264913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264913,0.000000,0.000000,0.250000,0,0);}
.m92_c01050{transform:matrix(0.264946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264946,0.000000,0.000000,0.250000,0,0);}
.m3d_c01050{transform:matrix(0.265061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265061,0.000000,0.000000,0.250000,0,0);}
.mf_c01050{transform:matrix(0.266445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266445,0.000000,0.000000,0.250000,0,0);}
.m5e_c01050{transform:matrix(0.266913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266913,0.000000,0.000000,0.250000,0,0);}
.m11_c01050{transform:matrix(0.268384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268384,0.000000,0.000000,0.250000,0,0);}
.m3b_c01050{transform:matrix(0.269095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269095,0.000000,0.000000,0.250000,0,0);}
.m70_c01050{transform:matrix(0.269364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269364,0.000000,0.000000,0.250000,0,0);}
.m39_c01050{transform:matrix(0.269531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269531,0.000000,0.000000,0.250000,0,0);}
.ma2_c01050{transform:matrix(0.270451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270451,0.000000,0.000000,0.250000,0,0);}
.m7b_c01050{transform:matrix(0.272595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272595,0.000000,0.000000,0.250000,0,0);}
.m67_c01050{transform:matrix(0.273344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273344,0.000000,0.000000,0.250000,0,0);}
.m72_c01050{transform:matrix(0.273403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273403,0.000000,0.000000,0.250000,0,0);}
.m82_c01050{transform:matrix(0.273982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273982,0.000000,0.000000,0.250000,0,0);}
.m1c_c01050{transform:matrix(0.274264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274264,0.000000,0.000000,0.250000,0,0);}
.m5b_c01050{transform:matrix(0.274272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274272,0.000000,0.000000,0.250000,0,0);}
.m5_c01050{transform:matrix(0.274671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274671,0.000000,0.000000,0.250000,0,0);}
.m68_c01050{transform:matrix(0.274849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274849,0.000000,0.000000,0.250000,0,0);}
.me_c01050{transform:matrix(0.274890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274890,0.000000,0.000000,0.250000,0,0);}
.ma8_c01050{transform:matrix(0.275215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275215,0.000000,0.000000,0.250000,0,0);}
.m46_c01050{transform:matrix(0.275586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275586,0.000000,0.000000,0.250000,0,0);}
.mbb_c01050{transform:matrix(0.276523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276523,0.000000,0.000000,0.250000,0,0);}
.m94_c01050{transform:matrix(0.277095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277095,0.000000,0.000000,0.250000,0,0);}
.m93_c01050{transform:matrix(0.277327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277327,0.000000,0.000000,0.250000,0,0);}
.m7_c01050{transform:matrix(0.277610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277610,0.000000,0.000000,0.250000,0,0);}
.m53_c01050{transform:matrix(0.277812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277812,0.000000,0.000000,0.250000,0,0);}
.m60_c01050{transform:matrix(0.278818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278818,0.000000,0.000000,0.250000,0,0);}
.m65_c01050{transform:matrix(0.279348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279348,0.000000,0.000000,0.250000,0,0);}
.m23_c01050{transform:matrix(0.279439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279439,0.000000,0.000000,0.250000,0,0);}
.m8a_c01050{transform:matrix(0.280440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280440,0.000000,0.000000,0.250000,0,0);}
.m8b_c01050{transform:matrix(0.280573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280573,0.000000,0.000000,0.250000,0,0);}
.m43_c01050{transform:matrix(0.281203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281203,0.000000,0.000000,0.250000,0,0);}
.m57_c01050{transform:matrix(0.281680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281680,0.000000,0.000000,0.250000,0,0);}
.m77_c01050{transform:matrix(0.281693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281693,0.000000,0.000000,0.250000,0,0);}
.m2_c01050{transform:matrix(0.281884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281884,0.000000,0.000000,0.250000,0,0);}
.m98_c01050{transform:matrix(0.282930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282930,0.000000,0.000000,0.250000,0,0);}
.m71_c01050{transform:matrix(0.283222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283222,0.000000,0.000000,0.250000,0,0);}
.mab_c01050{transform:matrix(0.283226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283226,0.000000,0.000000,0.250000,0,0);}
.mb8_c01050{transform:matrix(0.283650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283650,0.000000,0.000000,0.250000,0,0);}
.m3a_c01050{transform:matrix(0.283886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283886,0.000000,0.000000,0.250000,0,0);}
.m5c_c01050{transform:matrix(0.284517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284517,0.000000,0.000000,0.250000,0,0);}
.m1d_c01050{transform:matrix(0.284762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284762,0.000000,0.000000,0.250000,0,0);}
.m14_c01050{transform:matrix(0.284932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284932,0.000000,0.000000,0.250000,0,0);}
.m7e_c01050{transform:matrix(0.285583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285583,0.000000,0.000000,0.250000,0,0);}
.m40_c01050{transform:matrix(0.286634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286634,0.000000,0.000000,0.250000,0,0);}
.m3e_c01050{transform:matrix(0.286887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286887,0.000000,0.000000,0.250000,0,0);}
.m1f_c01050{transform:matrix(0.286908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286908,0.000000,0.000000,0.250000,0,0);}
.m33_c01050{transform:matrix(0.287940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287940,0.000000,0.000000,0.250000,0,0);}
.m61_c01050{transform:matrix(0.287979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287979,0.000000,0.000000,0.250000,0,0);}
.mae_c01050{transform:matrix(0.288187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288187,0.000000,0.000000,0.250000,0,0);}
.mb7_c01050{transform:matrix(0.288695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288695,0.000000,0.000000,0.250000,0,0);}
.m81_c01050{transform:matrix(0.288845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288845,0.000000,0.000000,0.250000,0,0);}
.m22_c01050{transform:matrix(0.288851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288851,0.000000,0.000000,0.250000,0,0);}
.m35_c01050{transform:matrix(0.289502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289502,0.000000,0.000000,0.250000,0,0);}
.m8c_c01050{transform:matrix(0.290424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290424,0.000000,0.000000,0.250000,0,0);}
.m21_c01050{transform:matrix(0.290739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290739,0.000000,0.000000,0.250000,0,0);}
.ma4_c01050{transform:matrix(0.290796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290796,0.000000,0.000000,0.250000,0,0);}
.m37_c01050{transform:matrix(0.290968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290968,0.000000,0.000000,0.250000,0,0);}
.mb3_c01050{transform:matrix(0.291001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291001,0.000000,0.000000,0.250000,0,0);}
.m91_c01050{transform:matrix(0.291026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291026,0.000000,0.000000,0.250000,0,0);}
.m69_c01050{transform:matrix(0.291158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291158,0.000000,0.000000,0.250000,0,0);}
.m6c_c01050{transform:matrix(0.291169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291169,0.000000,0.000000,0.250000,0,0);}
.m6f_c01050{transform:matrix(0.292392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292392,0.000000,0.000000,0.250000,0,0);}
.m78_c01050{transform:matrix(0.292832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292832,0.000000,0.000000,0.250000,0,0);}
.m6_c01050{transform:matrix(0.294214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294214,0.000000,0.000000,0.250000,0,0);}
.m51_c01050{transform:matrix(0.294963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294963,0.000000,0.000000,0.250000,0,0);}
.m7d_c01050{transform:matrix(0.295053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295053,0.000000,0.000000,0.250000,0,0);}
.m52_c01050{transform:matrix(0.295931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295931,0.000000,0.000000,0.250000,0,0);}
.m85_c01050{transform:matrix(0.295966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295966,0.000000,0.000000,0.250000,0,0);}
.m9b_c01050{transform:matrix(0.296091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296091,0.000000,0.000000,0.250000,0,0);}
.m5a_c01050{transform:matrix(0.296375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296375,0.000000,0.000000,0.250000,0,0);}
.m12_c01050{transform:matrix(0.296531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296531,0.000000,0.000000,0.250000,0,0);}
.m20_c01050{transform:matrix(0.297353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297353,0.000000,0.000000,0.250000,0,0);}
.m13_c01050{transform:matrix(0.297596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297596,0.000000,0.000000,0.250000,0,0);}
.m96_c01050{transform:matrix(0.299031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299031,0.000000,0.000000,0.250000,0,0);}
.m62_c01050{transform:matrix(0.300343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300343,0.000000,0.000000,0.250000,0,0);}
.m42_c01050{transform:matrix(0.300978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300978,0.000000,0.000000,0.250000,0,0);}
.m97_c01050{transform:matrix(0.301183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301183,0.000000,0.000000,0.250000,0,0);}
.ma3_c01050{transform:matrix(0.301607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301607,0.000000,0.000000,0.250000,0,0);}
.m5d_c01050{transform:matrix(0.303397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303397,0.000000,0.000000,0.250000,0,0);}
.m26_c01050{transform:matrix(0.305677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305677,0.000000,0.000000,0.250000,0,0);}
.m6d_c01050{transform:matrix(0.306359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306359,0.000000,0.000000,0.250000,0,0);}
.m86_c01050{transform:matrix(0.306576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306576,0.000000,0.000000,0.250000,0,0);}
.m9d_c01050{transform:matrix(0.306827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306827,0.000000,0.000000,0.250000,0,0);}
.m75_c01050{transform:matrix(0.308152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308152,0.000000,0.000000,0.250000,0,0);}
.mb9_c01050{transform:matrix(0.308349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308349,0.000000,0.000000,0.250000,0,0);}
.m44_c01050{transform:matrix(0.309357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309357,0.000000,0.000000,0.250000,0,0);}
.m1e_c01050{transform:matrix(0.309552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309552,0.000000,0.000000,0.250000,0,0);}
.m89_c01050{transform:matrix(0.309621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309621,0.000000,0.000000,0.250000,0,0);}
.maa_c01050{transform:matrix(0.309763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309763,0.000000,0.000000,0.250000,0,0);}
.mad_c01050{transform:matrix(0.312255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312255,0.000000,0.000000,0.250000,0,0);}
.m63_c01050{transform:matrix(0.312650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312650,0.000000,0.000000,0.250000,0,0);}
.m3c_c01050{transform:matrix(0.313454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313454,0.000000,0.000000,0.250000,0,0);}
.mb2_c01050{transform:matrix(0.314257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314257,0.000000,0.000000,0.250000,0,0);}
.m10_c01050{transform:matrix(0.314445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314445,0.000000,0.000000,0.250000,0,0);}
.m58_c01050{transform:matrix(0.315448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315448,0.000000,0.000000,0.250000,0,0);}
.ma0_c01050{transform:matrix(0.315917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315917,0.000000,0.000000,0.250000,0,0);}
.ma5_c01050{transform:matrix(0.316463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316463,0.000000,0.000000,0.250000,0,0);}
.m36_c01050{transform:matrix(0.316907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316907,0.000000,0.000000,0.250000,0,0);}
.m8f_c01050{transform:matrix(0.317987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317987,0.000000,0.000000,0.250000,0,0);}
.m41_c01050{transform:matrix(0.318780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318780,0.000000,0.000000,0.250000,0,0);}
.m84_c01050{transform:matrix(0.318869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318869,0.000000,0.000000,0.250000,0,0);}
.m9c_c01050{transform:matrix(0.319107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319107,0.000000,0.000000,0.250000,0,0);}
.ma6_c01050{transform:matrix(0.319910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319910,0.000000,0.000000,0.250000,0,0);}
.m79_c01050{transform:matrix(0.322817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322817,0.000000,0.000000,0.250000,0,0);}
.m5f_c01050{transform:matrix(0.324162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324162,0.000000,0.000000,0.250000,0,0);}
.m24_c01050{transform:matrix(0.326143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326143,0.000000,0.000000,0.250000,0,0);}
.m6b_c01050{transform:matrix(0.326235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326235,0.000000,0.000000,0.250000,0,0);}
.m9a_c01050{transform:matrix(0.326401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326401,0.000000,0.000000,0.250000,0,0);}
.m8_c01050{transform:matrix(0.328784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328784,0.000000,0.000000,0.250000,0,0);}
.m76_c01050{transform:matrix(0.329325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329325,0.000000,0.000000,0.250000,0,0);}
.m27_c01050{transform:matrix(0.330925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330925,0.000000,0.000000,0.250000,0,0);}
.mb4_c01050{transform:matrix(0.331604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331604,0.000000,0.000000,0.250000,0,0);}
.m4_c01050{transform:matrix(0.334253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334253,0.000000,0.000000,0.250000,0,0);}
.mb0_c01050{transform:matrix(0.334978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334978,0.000000,0.000000,0.250000,0,0);}
.m15_c01050{transform:matrix(0.337967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337967,0.000000,0.000000,0.250000,0,0);}
.m56_c01050{transform:matrix(0.338272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338272,0.000000,0.000000,0.250000,0,0);}
.m99_c01050{transform:matrix(0.340546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340546,0.000000,0.000000,0.250000,0,0);}
.ma7_c01050{transform:matrix(0.341813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341813,0.000000,0.000000,0.250000,0,0);}
.m55_c01050{transform:matrix(0.341974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341974,0.000000,0.000000,0.250000,0,0);}
.mba_c01050{transform:matrix(0.344194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344194,0.000000,0.000000,0.250000,0,0);}
.mb6_c01050{transform:matrix(0.350002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350002,0.000000,0.000000,0.250000,0,0);}
.m80_c01050{transform:matrix(0.356405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356405,0.000000,0.000000,0.250000,0,0);}
.m32_c01050{transform:matrix(0.363851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363851,0.000000,0.000000,0.250000,0,0);}
.mb5_c01050{transform:matrix(0.366070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366070,0.000000,0.000000,0.250000,0,0);}
.m6a_c01050{transform:matrix(0.368678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368678,0.000000,0.000000,0.250000,0,0);}
.m16_c01050{transform:matrix(0.370070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370070,0.000000,0.000000,0.250000,0,0);}
.ma1_c01050{transform:matrix(0.373769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373769,0.000000,0.000000,0.250000,0,0);}
.m34_c01050{transform:matrix(0.375943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375943,0.000000,0.000000,0.250000,0,0);}
.m45_c01050{transform:matrix(0.381818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381818,0.000000,0.000000,0.250000,0,0);}
.m66_c01050{transform:matrix(0.387692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387692,0.000000,0.000000,0.250000,0,0);}
.maf_c01050{transform:matrix(0.390366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390366,0.000000,0.000000,0.250000,0,0);}
.m8e_c01050{transform:matrix(0.421637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421637,0.000000,0.000000,0.250000,0,0);}
.v0_c01050{vertical-align:0.000000px;}
.v1_c01050{vertical-align:2.851200px;}
.lsf_c01050{letter-spacing:-3.201667px;}
.ls8_c01050{letter-spacing:-2.882880px;}
.ls19_c01050{letter-spacing:-2.869027px;}
.lse_c01050{letter-spacing:-2.813580px;}
.ls28_c01050{letter-spacing:-2.397780px;}
.ls14_c01050{letter-spacing:-2.300767px;}
.ls29_c01050{letter-spacing:-1.929312px;}
.ls9_c01050{letter-spacing:-1.614690px;}
.ls27_c01050{letter-spacing:-1.149548px;}
.ls1f_c01050{letter-spacing:-1.067220px;}
.ls1a_c01050{letter-spacing:-0.508228px;}
.ls1_c01050{letter-spacing:0.000000px;}
.lsa_c01050{letter-spacing:0.168815px;}
.ls11_c01050{letter-spacing:0.741312px;}
.ls7_c01050{letter-spacing:1.623600px;}
.ls1d_c01050{letter-spacing:1.800691px;}
.ls2c_c01050{letter-spacing:2.318052px;}
.ls6_c01050{letter-spacing:2.347330px;}
.ls0_c01050{letter-spacing:2.401661px;}
.ls23_c01050{letter-spacing:3.239644px;}
.ls26_c01050{letter-spacing:3.276900px;}
.ls1c_c01050{letter-spacing:3.326400px;}
.ls5_c01050{letter-spacing:3.328063px;}
.ls10_c01050{letter-spacing:3.466948px;}
.ls15_c01050{letter-spacing:3.534310px;}
.ls16_c01050{letter-spacing:3.564000px;}
.ls24_c01050{letter-spacing:3.583810px;}
.ls2d_c01050{letter-spacing:3.603610px;}
.ls22_c01050{letter-spacing:3.623400px;}
.ls2b_c01050{letter-spacing:3.633310px;}
.ls18_c01050{letter-spacing:3.801610px;}
.ls2a_c01050{letter-spacing:3.870900px;}
.ls17_c01050{letter-spacing:3.927528px;}
.ls12_c01050{letter-spacing:3.950110px;}
.ls1e_c01050{letter-spacing:3.960000px;}
.ls25_c01050{letter-spacing:4.011361px;}
.ls3_c01050{letter-spacing:4.019400px;}
.ls1b_c01050{letter-spacing:4.098610px;}
.ls2_c01050{letter-spacing:4.296610px;}
.ls4_c01050{letter-spacing:49.896198px;}
.ls21_c01050{letter-spacing:57.024198px;}
.ls20_c01050{letter-spacing:58.449798px;}
.lsb_c01050{letter-spacing:59.875398px;}
.lsd_c01050{letter-spacing:62.726400px;}
.lsc_c01050{letter-spacing:65.577798px;}
.ls13_c01050{letter-spacing:71.280000px;}
.sc__c01050{text-shadow:none;}
.sc0_c01050{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01050{-webkit-text-stroke:0px transparent;}
.sc0_c01050{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01050{word-spacing:-4.099788px;}
.ws1_c01050{word-spacing:0.000000px;}
._7_c01050{margin-left:-31.640400px;}
._4_c01050{margin-left:-19.614672px;}
._6_c01050{margin-left:-16.801092px;}
._3_c01050{width:12.905591px;}
._5_c01050{width:22.669416px;}
._8_c01050{width:28.261728px;}
._0_c01050{width:38.465539px;}
._2_c01050{width:47.084400px;}
._1_c01050{width:78.126048px;}
.fc0_c01050{color:transparent;}
.fs20_c01050{font-size:17.028000px;}
.fs0_c01050{font-size:22.176000px;}
.fs18_c01050{font-size:27.720000px;}
.fs1c_c01050{font-size:30.492000px;}
.fs6_c01050{font-size:32.472000px;}
.fs19_c01050{font-size:33.660000px;}
.fs12_c01050{font-size:39.600000px;}
.fsb_c01050{font-size:45.144000px;}
.fs8_c01050{font-size:46.134000px;}
.fs3_c01050{font-size:49.896198px;}
.fs1e_c01050{font-size:57.024198px;}
.fs1d_c01050{font-size:58.449798px;}
.fs9_c01050{font-size:59.875398px;}
.fsd_c01050{font-size:62.726400px;}
.fs22_c01050{font-size:65.538000px;}
.fsc_c01050{font-size:65.577798px;}
.fs14_c01050{font-size:65.736198px;}
.fs5_c01050{font-size:66.528000px;}
.fs24_c01050{font-size:68.508000px;}
.fs15_c01050{font-size:70.686198px;}
.fs13_c01050{font-size:71.280000px;}
.fs21_c01050{font-size:71.676198px;}
.fs27_c01050{font-size:72.072198px;}
.fs1f_c01050{font-size:72.468000px;}
.fs26_c01050{font-size:72.666198px;}
.fs16_c01050{font-size:73.656198px;}
.fs10_c01050{font-size:76.032198px;}
.fs23_c01050{font-size:77.220000px;}
.fs25_c01050{font-size:77.418000px;}
.fs11_c01050{font-size:79.002198px;}
.fs1b_c01050{font-size:79.200000px;}
.fs2_c01050{font-size:80.388000px;}
.fsa_c01050{font-size:81.180000px;}
.fs1a_c01050{font-size:81.972198px;}
.fs7_c01050{font-size:82.368000px;}
.fs4_c01050{font-size:84.744000px;}
.fs1_c01050{font-size:85.932198px;}
.fs17_c01050{font-size:90.288000px;}
.fse_c01050{font-size:90.882198px;}
.fsf_c01050{font-size:91.476198px;}
.y0_c01050{bottom:0.000000px;}
.y1_c01050{bottom:76.500000px;}
.y2f_c01050{bottom:129.641520px;}
.y30_c01050{bottom:131.423520px;}
.y2e_c01050{bottom:162.073920px;}
.y2d_c01050{bottom:195.575520px;}
.y2c_c01050{bottom:227.651520px;}
.y2b_c01050{bottom:260.796720px;}
.y2a_c01050{bottom:292.511370px;}
.y29_c01050{bottom:355.242720px;}
.y2_c01050{bottom:362.722170px;}
.y28_c01050{bottom:387.313770px;}
.y27_c01050{bottom:419.389770px;}
.y26_c01050{bottom:444.342720px;}
.y21_c01050{bottom:450.757920px;}
.y24_c01050{bottom:451.114320px;}
.y25_c01050{bottom:451.470720px;}
.y23_c01050{bottom:470.359920px;}
.y20_c01050{bottom:482.833920px;}
.y22_c01050{bottom:483.185370px;}
.y1f_c01050{bottom:515.622720px;}
.y1e_c01050{bottom:548.055120px;}
.y1d_c01050{bottom:579.769770px;}
.y1c_c01050{bottom:596.520570px;}
.y1b_c01050{bottom:606.148320px;}
.y19_c01050{bottom:611.850720px;}
.y1a_c01050{bottom:612.202170px;}
.y18_c01050{bottom:636.437370px;}
.y17_c01050{bottom:644.639520px;}
.y12_c01050{bottom:676.354170px;}
.y16_c01050{bottom:676.710570px;}
.y11_c01050{bottom:707.717370px;}
.y15_c01050{bottom:708.078720px;}
.y14_c01050{bottom:735.521520px;}
.y10_c01050{bottom:739.798320px;}
.y13_c01050{bottom:756.192720px;}
.yd_c01050{bottom:771.512970px;}
.yf_c01050{bottom:797.178720px;}
.yc_c01050{bottom:800.742720px;}
.ye_c01050{bottom:803.237520px;}
.yb_c01050{bottom:835.308570px;}
.ya_c01050{bottom:865.963920px;}
.y9_c01050{bottom:899.821920px;}
.y8_c01050{bottom:925.482720px;}
.y4_c01050{bottom:931.185120px;}
.y6_c01050{bottom:931.541520px;}
.y7_c01050{bottom:932.254320px;}
.y5_c01050{bottom:944.010570px;}
.y3_c01050{bottom:1055.207370px;}
.h25_c01050{height:17.759672px;}
.h2_c01050{height:23.128875px;}
.h1c_c01050{height:28.911094px;}
.h21_c01050{height:29.926230px;}
.h1d_c01050{height:33.035449px;}
.h5_c01050{height:33.230868px;}
.h8_c01050{height:33.867281px;}
.h23_c01050{height:37.978116px;}
.h22_c01050{height:38.927565px;}
.hb_c01050{height:39.877015px;}
.h15_c01050{height:41.301563px;}
.he_c01050{height:41.775782px;}
.hd_c01050{height:43.674813px;}
.h16_c01050{height:47.472480px;}
.ha_c01050{height:48.116320px;}
.h1f_c01050{height:65.293594px;}
.h27_c01050{height:68.354086px;}
.h17_c01050{height:68.560800px;}
.h19_c01050{height:69.957422px;}
.h26_c01050{height:70.346269px;}
.h24_c01050{height:71.123379px;}
.h2b_c01050{height:71.317899px;}
.h29_c01050{height:71.451703px;}
.h18_c01050{height:73.723496px;}
.h13_c01050{height:74.621444px;}
.h2c_c01050{height:75.169050px;}
.h28_c01050{height:75.787207px;}
.h2a_c01050{height:75.981533px;}
.h1a_c01050{height:76.821113px;}
.h14_c01050{height:77.536337px;}
.h20_c01050{height:77.730469px;}
.h4_c01050{height:78.896426px;}
.h12_c01050{height:79.299207px;}
.hc_c01050{height:79.673730px;}
.h1e_c01050{height:80.451229px;}
.h11_c01050{height:80.839688px;}
.h7_c01050{height:81.747626px;}
.h3_c01050{height:84.337753px;}
.h9_c01050{height:85.907250px;}
.h6_c01050{height:88.385344px;}
.h1b_c01050{height:88.612734px;}
.hf_c01050{height:89.195907px;}
.h10_c01050{height:89.778886px;}
.h1_c01050{height:1110.000000px;}
.h0_c01050{height:1263.000000px;}
.w1_c01050{width:775.500000px;}
.w0_c01050{width:892.500000px;}
.x0_c01050{left:0.000000px;}
.x2_c01050{left:48.729435px;}
.x1_c01050{left:58.500000px;}
.x6a_c01050{left:78.840285px;}
.x32_c01050{left:80.092635px;}
.x4_c01050{left:81.562785px;}
.x1b_c01050{left:83.052735px;}
.x5b_c01050{left:89.804535px;}
.x5c_c01050{left:91.581585px;}
.x39_c01050{left:111.535035px;}
.x33_c01050{left:113.346735px;}
.x11_c01050{left:114.905985px;}
.x3d_c01050{left:122.939835px;}
.x24_c01050{left:124.464435px;}
.x56_c01050{left:134.319885px;}
.x4c_c01050{left:146.531535px;}
.x12_c01050{left:148.254135px;}
.x27_c01050{left:158.183835px;}
.x5_c01050{left:159.302535px;}
.x3e_c01050{left:168.148185px;}
.x3a_c01050{left:169.786635px;}
.x64_c01050{left:178.152135px;}
.x40_c01050{left:179.765835px;}
.x58_c01050{left:189.175785px;}
.x3b_c01050{left:191.477535px;}
.x6e_c01050{left:199.145085px;}
.x65_c01050{left:201.308235px;}
.x1c_c01050{left:205.139535px;}
.x41_c01050{left:212.485335px;}
.x59_c01050{left:222.702135px;}
.x13_c01050{left:224.672235px;}
.x6f_c01050{left:234.943485px;}
.x42_c01050{left:245.135535px;}
.x1d_c01050{left:246.373035px;}
.x28_c01050{left:256.599735px;}
.x14_c01050{left:258.124335px;}
.x62_c01050{left:266.870985px;}
.x25_c01050{left:269.217285px;}
.x4d_c01050{left:279.557835px;}
.x34_c01050{left:290.056785px;}
.x7_c01050{left:291.531885px;}
.x60_c01050{left:301.525935px;}
.x66_c01050{left:302.600085px;}
.x6d_c01050{left:312.307035px;}
.x3f_c01050{left:313.381185px;}
.x6_c01050{left:316.301685px;}
.x71_c01050{left:323.310885px;}
.x1e_c01050{left:324.404835px;}
.x3c_c01050{left:335.512635px;}
.x15_c01050{left:346.016535px;}
.x1f_c01050{left:356.748135px;}
.x67_c01050{left:365.965035px;}
.x16_c01050{left:367.667835px;}
.x35_c01050{left:369.291435px;}
.x8_c01050{left:379.671585px;}
.x4e_c01050{left:390.754635px;}
.x6c_c01050{left:400.219035px;}
.x43_c01050{left:402.164385px;}
.x26_c01050{left:403.446435px;}
.x29_c01050{left:411.985185px;}
.x9_c01050{left:424.612635px;}
.x2a_c01050{left:434.438385px;}
.x20_c01050{left:435.863985px;}
.x2b_c01050{left:446.199585px;}
.x2c_c01050{left:447.273735px;}
.x57_c01050{left:456.827235px;}
.x5d_c01050{left:466.509435px;}
.x4a_c01050{left:468.038985px;}
.x17_c01050{left:469.355685px;}
.x36_c01050{left:479.369535px;}
.x74_c01050{left:489.140835px;}
.xa_c01050{left:500.659485px;}
.x72_c01050{left:510.678285px;}
.x2d_c01050{left:511.900935px;}
.x18_c01050{left:514.044285px;}
.x2e_c01050{left:524.251185px;}
.x49_c01050{left:533.666085px;}
.x21_c01050{left:535.784685px;}
.x75_c01050{left:543.135435px;}
.x2f_c01050{left:544.798635px;}
.x51_c01050{left:555.253035px;}
.x30_c01050{left:557.579535px;}
.x22_c01050{left:567.489435px;}
.x44_c01050{left:578.428935px;}
.x4f_c01050{left:589.630785px;}
.x19_c01050{left:591.199935px;}
.x31_c01050{left:596.011335px;}
.x52_c01050{left:599.411985px;}
.x68_c01050{left:601.332585px;}
.x45_c01050{left:602.787885px;}
.x46_c01050{left:610.772235px;}
.xb_c01050{left:612.762135px;}
.x5e_c01050{left:621.142485px;}
.x37_c01050{left:622.771035px;}
.x70_c01050{left:631.839435px;}
.x73_c01050{left:633.497685px;}
.x47_c01050{left:635.096535px;}
.x5a_c01050{left:643.734285px;}
.x61_c01050{left:647.818035px;}
.xd_c01050{left:654.871785px;}
.xc_c01050{left:655.921185px;}
.x23_c01050{left:657.579435px;}
.xe_c01050{left:666.702285px;}
.x3_c01050{left:676.171635px;}
.x53_c01050{left:677.636835px;}
.x48_c01050{left:687.130935px;}
.x76_c01050{left:688.670385px;}
.x1a_c01050{left:689.739585px;}
.xf_c01050{left:692.120535px;}
.x63_c01050{left:698.852535px;}
.x38_c01050{left:700.847385px;}
.x50_c01050{left:703.064985px;}
.x55_c01050{left:706.262685px;}
.x54_c01050{left:707.752635px;}
.x6b_c01050{left:710.673135px;}
.x69_c01050{left:711.841335px;}
.x5f_c01050{left:714.514335px;}
.x10_c01050{left:720.518685px;}
.x4b_c01050{left:722.523435px;}
@media print{
.v0_c01050{vertical-align:0.000000pt;}
.v1_c01050{vertical-align:2.534400pt;}
.lsf_c01050{letter-spacing:-2.845926pt;}
.ls8_c01050{letter-spacing:-2.562560pt;}
.ls19_c01050{letter-spacing:-2.550246pt;}
.lse_c01050{letter-spacing:-2.500960pt;}
.ls28_c01050{letter-spacing:-2.131360pt;}
.ls14_c01050{letter-spacing:-2.045126pt;}
.ls29_c01050{letter-spacing:-1.714944pt;}
.ls9_c01050{letter-spacing:-1.435280pt;}
.ls27_c01050{letter-spacing:-1.021821pt;}
.ls1f_c01050{letter-spacing:-0.948640pt;}
.ls1a_c01050{letter-spacing:-0.451758pt;}
.ls1_c01050{letter-spacing:0.000000pt;}
.lsa_c01050{letter-spacing:0.150058pt;}
.ls11_c01050{letter-spacing:0.658944pt;}
.ls7_c01050{letter-spacing:1.443200pt;}
.ls1d_c01050{letter-spacing:1.600614pt;}
.ls2c_c01050{letter-spacing:2.060490pt;}
.ls6_c01050{letter-spacing:2.086515pt;}
.ls0_c01050{letter-spacing:2.134810pt;}
.ls23_c01050{letter-spacing:2.879683pt;}
.ls26_c01050{letter-spacing:2.912800pt;}
.ls1c_c01050{letter-spacing:2.956800pt;}
.ls5_c01050{letter-spacing:2.958278pt;}
.ls10_c01050{letter-spacing:3.081731pt;}
.ls15_c01050{letter-spacing:3.141609pt;}
.ls16_c01050{letter-spacing:3.168000pt;}
.ls24_c01050{letter-spacing:3.185609pt;}
.ls2d_c01050{letter-spacing:3.203209pt;}
.ls22_c01050{letter-spacing:3.220800pt;}
.ls2b_c01050{letter-spacing:3.229609pt;}
.ls18_c01050{letter-spacing:3.379209pt;}
.ls2a_c01050{letter-spacing:3.440800pt;}
.ls17_c01050{letter-spacing:3.491136pt;}
.ls12_c01050{letter-spacing:3.511209pt;}
.ls1e_c01050{letter-spacing:3.520000pt;}
.ls25_c01050{letter-spacing:3.565654pt;}
.ls3_c01050{letter-spacing:3.572800pt;}
.ls1b_c01050{letter-spacing:3.643209pt;}
.ls2_c01050{letter-spacing:3.819209pt;}
.ls4_c01050{letter-spacing:44.352176pt;}
.ls21_c01050{letter-spacing:50.688176pt;}
.ls20_c01050{letter-spacing:51.955376pt;}
.lsb_c01050{letter-spacing:53.222576pt;}
.lsd_c01050{letter-spacing:55.756800pt;}
.lsc_c01050{letter-spacing:58.291376pt;}
.ls13_c01050{letter-spacing:63.360000pt;}
.ws0_c01050{word-spacing:-3.644256pt;}
.ws1_c01050{word-spacing:0.000000pt;}
._7_c01050{margin-left:-28.124800pt;}
._4_c01050{margin-left:-17.435264pt;}
._6_c01050{margin-left:-14.934304pt;}
._3_c01050{width:11.471636pt;}
._5_c01050{width:20.150592pt;}
._8_c01050{width:25.121536pt;}
._0_c01050{width:34.191590pt;}
._2_c01050{width:41.852800pt;}
._1_c01050{width:69.445376pt;}
.fs20_c01050{font-size:15.136000pt;}
.fs0_c01050{font-size:19.712000pt;}
.fs18_c01050{font-size:24.640000pt;}
.fs1c_c01050{font-size:27.104000pt;}
.fs6_c01050{font-size:28.864000pt;}
.fs19_c01050{font-size:29.920000pt;}
.fs12_c01050{font-size:35.200000pt;}
.fsb_c01050{font-size:40.128000pt;}
.fs8_c01050{font-size:41.008000pt;}
.fs3_c01050{font-size:44.352176pt;}
.fs1e_c01050{font-size:50.688176pt;}
.fs1d_c01050{font-size:51.955376pt;}
.fs9_c01050{font-size:53.222576pt;}
.fsd_c01050{font-size:55.756800pt;}
.fs22_c01050{font-size:58.256000pt;}
.fsc_c01050{font-size:58.291376pt;}
.fs14_c01050{font-size:58.432176pt;}
.fs5_c01050{font-size:59.136000pt;}
.fs24_c01050{font-size:60.896000pt;}
.fs15_c01050{font-size:62.832176pt;}
.fs13_c01050{font-size:63.360000pt;}
.fs21_c01050{font-size:63.712176pt;}
.fs27_c01050{font-size:64.064176pt;}
.fs1f_c01050{font-size:64.416000pt;}
.fs26_c01050{font-size:64.592176pt;}
.fs16_c01050{font-size:65.472176pt;}
.fs10_c01050{font-size:67.584176pt;}
.fs23_c01050{font-size:68.640000pt;}
.fs25_c01050{font-size:68.816000pt;}
.fs11_c01050{font-size:70.224176pt;}
.fs1b_c01050{font-size:70.400000pt;}
.fs2_c01050{font-size:71.456000pt;}
.fsa_c01050{font-size:72.160000pt;}
.fs1a_c01050{font-size:72.864176pt;}
.fs7_c01050{font-size:73.216000pt;}
.fs4_c01050{font-size:75.328000pt;}
.fs1_c01050{font-size:76.384176pt;}
.fs17_c01050{font-size:80.256000pt;}
.fse_c01050{font-size:80.784176pt;}
.fsf_c01050{font-size:81.312176pt;}
.y0_c01050{bottom:0.000000pt;}
.y1_c01050{bottom:68.000000pt;}
.y2f_c01050{bottom:115.236907pt;}
.y30_c01050{bottom:116.820907pt;}
.y2e_c01050{bottom:144.065707pt;}
.y2d_c01050{bottom:173.844907pt;}
.y2c_c01050{bottom:202.356907pt;}
.y2b_c01050{bottom:231.819307pt;}
.y2a_c01050{bottom:260.010107pt;}
.y29_c01050{bottom:315.771307pt;}
.y2_c01050{bottom:322.419707pt;}
.y28_c01050{bottom:344.278907pt;}
.y27_c01050{bottom:372.790907pt;}
.y26_c01050{bottom:394.971307pt;}
.y21_c01050{bottom:400.673707pt;}
.y24_c01050{bottom:400.990507pt;}
.y25_c01050{bottom:401.307307pt;}
.y23_c01050{bottom:418.097707pt;}
.y20_c01050{bottom:429.185707pt;}
.y22_c01050{bottom:429.498107pt;}
.y1f_c01050{bottom:458.331307pt;}
.y1e_c01050{bottom:487.160107pt;}
.y1d_c01050{bottom:515.350907pt;}
.y1c_c01050{bottom:530.240507pt;}
.y1b_c01050{bottom:538.798507pt;}
.y19_c01050{bottom:543.867307pt;}
.y1a_c01050{bottom:544.179707pt;}
.y18_c01050{bottom:565.722107pt;}
.y17_c01050{bottom:573.012907pt;}
.y12_c01050{bottom:601.203707pt;}
.y16_c01050{bottom:601.520507pt;}
.y11_c01050{bottom:629.082107pt;}
.y15_c01050{bottom:629.403307pt;}
.y14_c01050{bottom:653.796907pt;}
.y10_c01050{bottom:657.598507pt;}
.y13_c01050{bottom:672.171307pt;}
.yd_c01050{bottom:685.789307pt;}
.yf_c01050{bottom:708.603307pt;}
.yc_c01050{bottom:711.771307pt;}
.ye_c01050{bottom:713.988907pt;}
.yb_c01050{bottom:742.496507pt;}
.ya_c01050{bottom:769.745707pt;}
.y9_c01050{bottom:799.841707pt;}
.y8_c01050{bottom:822.651307pt;}
.y4_c01050{bottom:827.720107pt;}
.y6_c01050{bottom:828.036907pt;}
.y7_c01050{bottom:828.670507pt;}
.y5_c01050{bottom:839.120507pt;}
.y3_c01050{bottom:937.962107pt;}
.h25_c01050{height:15.786375pt;}
.h2_c01050{height:20.559000pt;}
.h1c_c01050{height:25.698750pt;}
.h21_c01050{height:26.601094pt;}
.h1d_c01050{height:29.364844pt;}
.h5_c01050{height:29.538549pt;}
.h8_c01050{height:30.104250pt;}
.h23_c01050{height:33.758325pt;}
.h22_c01050{height:34.602280pt;}
.hb_c01050{height:35.446236pt;}
.h15_c01050{height:36.712500pt;}
.he_c01050{height:37.134029pt;}
.hd_c01050{height:38.822056pt;}
.h16_c01050{height:42.197760pt;}
.ha_c01050{height:42.770063pt;}
.h1f_c01050{height:58.038750pt;}
.h27_c01050{height:60.759188pt;}
.h17_c01050{height:60.942934pt;}
.h19_c01050{height:62.184375pt;}
.h26_c01050{height:62.530016pt;}
.h24_c01050{height:63.220781pt;}
.h2b_c01050{height:63.393688pt;}
.h29_c01050{height:63.512625pt;}
.h18_c01050{height:65.531996pt;}
.h13_c01050{height:66.330173pt;}
.h2c_c01050{height:66.816934pt;}
.h28_c01050{height:67.366406pt;}
.h2a_c01050{height:67.539141pt;}
.h1a_c01050{height:68.285434pt;}
.h14_c01050{height:68.921188pt;}
.h20_c01050{height:69.093750pt;}
.h4_c01050{height:70.130156pt;}
.h12_c01050{height:70.488184pt;}
.hc_c01050{height:70.821094pt;}
.h1e_c01050{height:71.512204pt;}
.h11_c01050{height:71.857500pt;}
.h7_c01050{height:72.664556pt;}
.h3_c01050{height:74.966891pt;}
.h9_c01050{height:76.362000pt;}
.h6_c01050{height:78.564750pt;}
.h1b_c01050{height:78.766875pt;}
.hf_c01050{height:79.285251pt;}
.h10_c01050{height:79.803454pt;}
.h1_c01050{height:986.666667pt;}
.h0_c01050{height:1122.666667pt;}
.w1_c01050{width:689.333333pt;}
.w0_c01050{width:793.333333pt;}
.x0_c01050{left:0.000000pt;}
.x2_c01050{left:43.315053pt;}
.x1_c01050{left:52.000000pt;}
.x6a_c01050{left:70.080253pt;}
.x32_c01050{left:71.193453pt;}
.x4_c01050{left:72.500253pt;}
.x1b_c01050{left:73.824653pt;}
.x5b_c01050{left:79.826253pt;}
.x5c_c01050{left:81.405853pt;}
.x39_c01050{left:99.142253pt;}
.x33_c01050{left:100.752653pt;}
.x11_c01050{left:102.138653pt;}
.x3d_c01050{left:109.279853pt;}
.x24_c01050{left:110.635053pt;}
.x56_c01050{left:119.395453pt;}
.x4c_c01050{left:130.250253pt;}
.x12_c01050{left:131.781453pt;}
.x27_c01050{left:140.607853pt;}
.x5_c01050{left:141.602253pt;}
.x3e_c01050{left:149.465053pt;}
.x3a_c01050{left:150.921453pt;}
.x64_c01050{left:158.357453pt;}
.x40_c01050{left:159.791853pt;}
.x58_c01050{left:168.156253pt;}
.x3b_c01050{left:170.202253pt;}
.x6e_c01050{left:177.017853pt;}
.x65_c01050{left:178.940653pt;}
.x1c_c01050{left:182.346253pt;}
.x41_c01050{left:188.875853pt;}
.x59_c01050{left:197.957453pt;}
.x13_c01050{left:199.708653pt;}
.x6f_c01050{left:208.838653pt;}
.x42_c01050{left:217.898253pt;}
.x1d_c01050{left:218.998253pt;}
.x28_c01050{left:228.088653pt;}
.x14_c01050{left:229.443853pt;}
.x62_c01050{left:237.218653pt;}
.x25_c01050{left:239.304253pt;}
.x4d_c01050{left:248.495853pt;}
.x34_c01050{left:257.828253pt;}
.x7_c01050{left:259.139453pt;}
.x60_c01050{left:268.023053pt;}
.x66_c01050{left:268.977853pt;}
.x6d_c01050{left:277.606253pt;}
.x3f_c01050{left:278.561053pt;}
.x6_c01050{left:281.157053pt;}
.x71_c01050{left:287.387453pt;}
.x1e_c01050{left:288.359853pt;}
.x3c_c01050{left:298.233453pt;}
.x15_c01050{left:307.570253pt;}
.x1f_c01050{left:317.109453pt;}
.x67_c01050{left:325.302253pt;}
.x16_c01050{left:326.815853pt;}
.x35_c01050{left:328.259053pt;}
.x8_c01050{left:337.485853pt;}
.x4e_c01050{left:347.337453pt;}
.x6c_c01050{left:355.750253pt;}
.x43_c01050{left:357.479453pt;}
.x26_c01050{left:358.619053pt;}
.x29_c01050{left:366.209053pt;}
.x9_c01050{left:377.433453pt;}
.x2a_c01050{left:386.167453pt;}
.x20_c01050{left:387.434653pt;}
.x2b_c01050{left:396.621853pt;}
.x2c_c01050{left:397.576653pt;}
.x57_c01050{left:406.068653pt;}
.x5d_c01050{left:414.675053pt;}
.x4a_c01050{left:416.034653pt;}
.x17_c01050{left:417.205053pt;}
.x36_c01050{left:426.106253pt;}
.x74_c01050{left:434.791853pt;}
.xa_c01050{left:445.030653pt;}
.x72_c01050{left:453.936253pt;}
.x2d_c01050{left:455.023053pt;}
.x18_c01050{left:456.928253pt;}
.x2e_c01050{left:466.001053pt;}
.x49_c01050{left:474.369853pt;}
.x21_c01050{left:476.253053pt;}
.x75_c01050{left:482.787053pt;}
.x2f_c01050{left:484.265453pt;}
.x51_c01050{left:493.558253pt;}
.x30_c01050{left:495.626253pt;}
.x22_c01050{left:504.435053pt;}
.x44_c01050{left:514.159053pt;}
.x4f_c01050{left:524.116253pt;}
.x19_c01050{left:525.511053pt;}
.x31_c01050{left:529.787853pt;}
.x52_c01050{left:532.810653pt;}
.x68_c01050{left:534.517853pt;}
.x45_c01050{left:535.811453pt;}
.x46_c01050{left:542.908653pt;}
.xb_c01050{left:544.677453pt;}
.x5e_c01050{left:552.126653pt;}
.x37_c01050{left:553.574253pt;}
.x70_c01050{left:561.635053pt;}
.x73_c01050{left:563.109053pt;}
.x47_c01050{left:564.530253pt;}
.x5a_c01050{left:572.208253pt;}
.x61_c01050{left:575.838253pt;}
.xd_c01050{left:582.108253pt;}
.xc_c01050{left:583.041053pt;}
.x23_c01050{left:584.515053pt;}
.xe_c01050{left:592.624253pt;}
.x3_c01050{left:601.041453pt;}
.x53_c01050{left:602.343853pt;}
.x48_c01050{left:610.783053pt;}
.x76_c01050{left:612.151453pt;}
.x1a_c01050{left:613.101853pt;}
.xf_c01050{left:615.218253pt;}
.x63_c01050{left:621.202253pt;}
.x38_c01050{left:622.975453pt;}
.x50_c01050{left:624.946653pt;}
.x55_c01050{left:627.789053pt;}
.x54_c01050{left:629.113453pt;}
.x6b_c01050{left:631.709453pt;}
.x69_c01050{left:632.747853pt;}
.x5f_c01050{left:635.123853pt;}
.x10_c01050{left:640.461053pt;}
.x4b_c01050{left:642.243053pt;}
}





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

.ir_c01051:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01051{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01051;src:url('chunks/assets/font_206e45d7c2b5969f47ac87ab.woff2')format("woff");}.ff1_c01051{font-family:ff1_c01051;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01051;src:url('chunks/assets/font_77dd0876c02da26562809dbf.woff2')format("woff");}.ff2_c01051{font-family:ff2_c01051;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01051;src:url('chunks/assets/font_40f414fa5e06ac40de96ca93.woff2')format("woff");}.ff3_c01051{font-family:ff3_c01051;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m9e_c01051{transform:matrix(0.047620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.047620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.047620,0.000000,0.000000,0.250000,0,0);}
.m46_c01051{transform:matrix(0.054055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054055,0.000000,0.000000,0.250000,0,0);}
.m9a_c01051{transform:matrix(0.099400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099400,0.000000,0.000000,0.250000,0,0);}
.m9d_c01051{transform:matrix(0.110864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110864,0.000000,0.000000,0.250000,0,0);}
.m8_c01051{transform:matrix(0.145022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145022,0.000000,0.000000,0.250000,0,0);}
.m9f_c01051{transform:matrix(0.160715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160715,0.000000,0.000000,0.250000,0,0);}
.m7f_c01051{transform:matrix(0.184669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184669,0.000000,0.000000,0.250000,0,0);}
.m9b_c01051{transform:matrix(0.194655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194655,0.000000,0.000000,0.250000,0,0);}
.m47_c01051{transform:matrix(0.208940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208940,0.000000,0.000000,0.250000,0,0);}
.m45_c01051{transform:matrix(0.209460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209460,0.000000,0.000000,0.250000,0,0);}
.m8b_c01051{transform:matrix(0.238846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238846,0.000000,0.000000,0.250000,0,0);}
.m0_c01051{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01051{transform:matrix(0.252647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252647,0.000000,0.000000,0.250000,0,0);}
.m5d_c01051{transform:matrix(0.257756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257756,0.000000,0.000000,0.250000,0,0);}
.m8c_c01051{transform:matrix(0.258845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258845,0.000000,0.000000,0.250000,0,0);}
.m98_c01051{transform:matrix(0.264997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264997,0.000000,0.000000,0.250000,0,0);}
.m35_c01051{transform:matrix(0.266004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266004,0.000000,0.000000,0.250000,0,0);}
.m18_c01051{transform:matrix(0.266286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266286,0.000000,0.000000,0.250000,0,0);}
.m73_c01051{transform:matrix(0.266453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266453,0.000000,0.000000,0.250000,0,0);}
.m9_c01051{transform:matrix(0.267205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267205,0.000000,0.000000,0.250000,0,0);}
.m1f_c01051{transform:matrix(0.267450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267450,0.000000,0.000000,0.250000,0,0);}
.m36_c01051{transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);}
.m9c_c01051{transform:matrix(0.268819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268819,0.000000,0.000000,0.250000,0,0);}
.maa_c01051{transform:matrix(0.270108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270108,0.000000,0.000000,0.250000,0,0);}
.m40_c01051{transform:matrix(0.270312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270312,0.000000,0.000000,0.250000,0,0);}
.m88_c01051{transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);}
.m96_c01051{transform:matrix(0.271808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271808,0.000000,0.000000,0.250000,0,0);}
.m68_c01051{transform:matrix(0.272858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272858,0.000000,0.000000,0.250000,0,0);}
.m16_c01051{transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);}
.ma9_c01051{transform:matrix(0.273396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273396,0.000000,0.000000,0.250000,0,0);}
.m77_c01051{transform:matrix(0.274275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274275,0.000000,0.000000,0.250000,0,0);}
.m76_c01051{transform:matrix(0.274610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274610,0.000000,0.000000,0.250000,0,0);}
.m2f_c01051{transform:matrix(0.275092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275092,0.000000,0.000000,0.250000,0,0);}
.m1a_c01051{transform:matrix(0.275380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275380,0.000000,0.000000,0.250000,0,0);}
.ma7_c01051{transform:matrix(0.275838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275838,0.000000,0.000000,0.250000,0,0);}
.m6a_c01051{transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);}
.m3b_c01051{transform:matrix(0.276672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276672,0.000000,0.000000,0.250000,0,0);}
.m2_c01051{transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);}
.ma8_c01051{transform:matrix(0.280201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280201,0.000000,0.000000,0.250000,0,0);}
.m7d_c01051{transform:matrix(0.280663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280663,0.000000,0.000000,0.250000,0,0);}
.m5_c01051{transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);}
.ma2_c01051{transform:matrix(0.280816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280816,0.000000,0.000000,0.250000,0,0);}
.m7e_c01051{transform:matrix(0.282572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282572,0.000000,0.000000,0.250000,0,0);}
.m97_c01051{transform:matrix(0.282641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282641,0.000000,0.000000,0.250000,0,0);}
.m4c_c01051{transform:matrix(0.282919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282919,0.000000,0.000000,0.250000,0,0);}
.ma4_c01051{transform:matrix(0.282946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282946,0.000000,0.000000,0.250000,0,0);}
.m99_c01051{transform:matrix(0.283828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283828,0.000000,0.000000,0.250000,0,0);}
.m92_c01051{transform:matrix(0.283935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283935,0.000000,0.000000,0.250000,0,0);}
.m94_c01051{transform:matrix(0.284650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284650,0.000000,0.000000,0.250000,0,0);}
.m1b_c01051{transform:matrix(0.284904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284904,0.000000,0.000000,0.250000,0,0);}
.m56_c01051{transform:matrix(0.285101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285101,0.000000,0.000000,0.250000,0,0);}
.m28_c01051{transform:matrix(0.285652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285652,0.000000,0.000000,0.250000,0,0);}
.m5f_c01051{transform:matrix(0.286316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286316,0.000000,0.000000,0.250000,0,0);}
.m24_c01051{transform:matrix(0.286440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286440,0.000000,0.000000,0.250000,0,0);}
.m22_c01051{transform:matrix(0.287133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287133,0.000000,0.000000,0.250000,0,0);}
.m6c_c01051{transform:matrix(0.287314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287314,0.000000,0.000000,0.250000,0,0);}
.m86_c01051{transform:matrix(0.288309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288309,0.000000,0.000000,0.250000,0,0);}
.ma0_c01051{transform:matrix(0.288340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288340,0.000000,0.000000,0.250000,0,0);}
.m84_c01051{transform:matrix(0.289326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289326,0.000000,0.000000,0.250000,0,0);}
.m8a_c01051{transform:matrix(0.289401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289401,0.000000,0.000000,0.250000,0,0);}
.ma3_c01051{transform:matrix(0.289502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289502,0.000000,0.000000,0.250000,0,0);}
.m2c_c01051{transform:matrix(0.289566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289566,0.000000,0.000000,0.250000,0,0);}
.m8d_c01051{transform:matrix(0.289850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289850,0.000000,0.000000,0.250000,0,0);}
.m2b_c01051{transform:matrix(0.291181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291181,0.000000,0.000000,0.250000,0,0);}
.ma6_c01051{transform:matrix(0.291257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291257,0.000000,0.000000,0.250000,0,0);}
.m38_c01051{transform:matrix(0.292510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292510,0.000000,0.000000,0.250000,0,0);}
.m53_c01051{transform:matrix(0.294020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294020,0.000000,0.000000,0.250000,0,0);}
.m52_c01051{transform:matrix(0.294423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294423,0.000000,0.000000,0.250000,0,0);}
.m75_c01051{transform:matrix(0.294964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294964,0.000000,0.000000,0.250000,0,0);}
.m93_c01051{transform:matrix(0.295114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295114,0.000000,0.000000,0.250000,0,0);}
.m55_c01051{transform:matrix(0.295544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295544,0.000000,0.000000,0.250000,0,0);}
.m44_c01051{transform:matrix(0.296828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296828,0.000000,0.000000,0.250000,0,0);}
.m63_c01051{transform:matrix(0.296995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296995,0.000000,0.000000,0.250000,0,0);}
.m72_c01051{transform:matrix(0.297055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297055,0.000000,0.000000,0.250000,0,0);}
.m5c_c01051{transform:matrix(0.297317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297317,0.000000,0.000000,0.250000,0,0);}
.m51_c01051{transform:matrix(0.297757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297757,0.000000,0.000000,0.250000,0,0);}
.m65_c01051{transform:matrix(0.298646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298646,0.000000,0.000000,0.250000,0,0);}
.m8e_c01051{transform:matrix(0.298889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298889,0.000000,0.000000,0.250000,0,0);}
.m23_c01051{transform:matrix(0.299390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299390,0.000000,0.000000,0.250000,0,0);}
.m7a_c01051{transform:matrix(0.300495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300495,0.000000,0.000000,0.250000,0,0);}
.m14_c01051{transform:matrix(0.301121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301121,0.000000,0.000000,0.250000,0,0);}
.m2e_c01051{transform:matrix(0.301177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301177,0.000000,0.000000,0.250000,0,0);}
.m37_c01051{transform:matrix(0.301597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301597,0.000000,0.000000,0.250000,0,0);}
.m70_c01051{transform:matrix(0.301673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301673,0.000000,0.000000,0.250000,0,0);}
.m60_c01051{transform:matrix(0.301883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301883,0.000000,0.000000,0.250000,0,0);}
.m78_c01051{transform:matrix(0.302341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302341,0.000000,0.000000,0.250000,0,0);}
.m4e_c01051{transform:matrix(0.302445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302445,0.000000,0.000000,0.250000,0,0);}
.m12_c01051{transform:matrix(0.302930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302930,0.000000,0.000000,0.250000,0,0);}
.m89_c01051{transform:matrix(0.303584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303584,0.000000,0.000000,0.250000,0,0);}
.m17_c01051{transform:matrix(0.303934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303934,0.000000,0.000000,0.250000,0,0);}
.m59_c01051{transform:matrix(0.304091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304091,0.000000,0.000000,0.250000,0,0);}
.me_c01051{transform:matrix(0.304261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304261,0.000000,0.000000,0.250000,0,0);}
.m8f_c01051{transform:matrix(0.304451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304451,0.000000,0.000000,0.250000,0,0);}
.m3c_c01051{transform:matrix(0.304688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304688,0.000000,0.000000,0.250000,0,0);}
.mb_c01051{transform:matrix(0.305166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305166,0.000000,0.000000,0.250000,0,0);}
.m1d_c01051{transform:matrix(0.305651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305651,0.000000,0.000000,0.250000,0,0);}
.m25_c01051{transform:matrix(0.306071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306071,0.000000,0.000000,0.250000,0,0);}
.m26_c01051{transform:matrix(0.306197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306197,0.000000,0.000000,0.250000,0,0);}
.m4a_c01051{transform:matrix(0.306724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306724,0.000000,0.000000,0.250000,0,0);}
.mc_c01051{transform:matrix(0.307690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307690,0.000000,0.000000,0.250000,0,0);}
.m27_c01051{transform:matrix(0.308088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308088,0.000000,0.000000,0.250000,0,0);}
.m6f_c01051{transform:matrix(0.308321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308321,0.000000,0.000000,0.250000,0,0);}
.m20_c01051{transform:matrix(0.308650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308650,0.000000,0.000000,0.250000,0,0);}
.m41_c01051{transform:matrix(0.308777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308777,0.000000,0.000000,0.250000,0,0);}
.m13_c01051{transform:matrix(0.309016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309016,0.000000,0.000000,0.250000,0,0);}
.m7_c01051{transform:matrix(0.309310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309310,0.000000,0.000000,0.250000,0,0);}
.m87_c01051{transform:matrix(0.311009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311009,0.000000,0.000000,0.250000,0,0);}
.m4b_c01051{transform:matrix(0.311495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311495,0.000000,0.000000,0.250000,0,0);}
.m42_c01051{transform:matrix(0.311901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311901,0.000000,0.000000,0.250000,0,0);}
.m85_c01051{transform:matrix(0.312003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312003,0.000000,0.000000,0.250000,0,0);}
.m3e_c01051{transform:matrix(0.312678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312678,0.000000,0.000000,0.250000,0,0);}
.m61_c01051{transform:matrix(0.313446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313446,0.000000,0.000000,0.250000,0,0);}
.m64_c01051{transform:matrix(0.313589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313589,0.000000,0.000000,0.250000,0,0);}
.m62_c01051{transform:matrix(0.315141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315141,0.000000,0.000000,0.250000,0,0);}
.m4d_c01051{transform:matrix(0.315192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315192,0.000000,0.000000,0.250000,0,0);}
.m11_c01051{transform:matrix(0.315466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315466,0.000000,0.000000,0.250000,0,0);}
.m50_c01051{transform:matrix(0.315552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315552,0.000000,0.000000,0.250000,0,0);}
.m43_c01051{transform:matrix(0.316292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316292,0.000000,0.000000,0.250000,0,0);}
.m6d_c01051{transform:matrix(0.316824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316824,0.000000,0.000000,0.250000,0,0);}
.m54_c01051{transform:matrix(0.317566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317566,0.000000,0.000000,0.250000,0,0);}
.m1_c01051{transform:matrix(0.317952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317952,0.000000,0.000000,0.250000,0,0);}
.m66_c01051{transform:matrix(0.318314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318314,0.000000,0.000000,0.250000,0,0);}
.m80_c01051{transform:matrix(0.319030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319030,0.000000,0.000000,0.250000,0,0);}
.m30_c01051{transform:matrix(0.319203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319203,0.000000,0.000000,0.250000,0,0);}
.m82_c01051{transform:matrix(0.319887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319887,0.000000,0.000000,0.250000,0,0);}
.m33_c01051{transform:matrix(0.325726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325726,0.000000,0.000000,0.250000,0,0);}
.m2a_c01051{transform:matrix(0.327078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327078,0.000000,0.000000,0.250000,0,0);}
.m67_c01051{transform:matrix(0.327220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327220,0.000000,0.000000,0.250000,0,0);}
.m74_c01051{transform:matrix(0.328051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328051,0.000000,0.000000,0.250000,0,0);}
.m58_c01051{transform:matrix(0.328173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328173,0.000000,0.000000,0.250000,0,0);}
.m32_c01051{transform:matrix(0.328305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328305,0.000000,0.000000,0.250000,0,0);}
.m5a_c01051{transform:matrix(0.328499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328499,0.000000,0.000000,0.250000,0,0);}
.m79_c01051{transform:matrix(0.329248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329248,0.000000,0.000000,0.250000,0,0);}
.m95_c01051{transform:matrix(0.329404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329404,0.000000,0.000000,0.250000,0,0);}
.m5b_c01051{transform:matrix(0.329811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329811,0.000000,0.000000,0.250000,0,0);}
.m5e_c01051{transform:matrix(0.331243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331243,0.000000,0.000000,0.250000,0,0);}
.m71_c01051{transform:matrix(0.331814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331814,0.000000,0.000000,0.250000,0,0);}
.m90_c01051{transform:matrix(0.333423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333423,0.000000,0.000000,0.250000,0,0);}
.m91_c01051{transform:matrix(0.333738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333738,0.000000,0.000000,0.250000,0,0);}
.m1e_c01051{transform:matrix(0.334409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334409,0.000000,0.000000,0.250000,0,0);}
.m49_c01051{transform:matrix(0.335583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335583,0.000000,0.000000,0.250000,0,0);}
.m7b_c01051{transform:matrix(0.336209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336209,0.000000,0.000000,0.250000,0,0);}
.m6e_c01051{transform:matrix(0.336293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336293,0.000000,0.000000,0.250000,0,0);}
.m81_c01051{transform:matrix(0.336476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336476,0.000000,0.000000,0.250000,0,0);}
.m3f_c01051{transform:matrix(0.336519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336519,0.000000,0.000000,0.250000,0,0);}
.md_c01051{transform:matrix(0.336817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336817,0.000000,0.000000,0.250000,0,0);}
.m21_c01051{transform:matrix(0.337387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337387,0.000000,0.000000,0.250000,0,0);}
.m6b_c01051{transform:matrix(0.341726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341726,0.000000,0.000000,0.250000,0,0);}
.m31_c01051{transform:matrix(0.342031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342031,0.000000,0.000000,0.250000,0,0);}
.m57_c01051{transform:matrix(0.342481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342481,0.000000,0.000000,0.250000,0,0);}
.m2d_c01051{transform:matrix(0.342843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342843,0.000000,0.000000,0.250000,0,0);}
.m4_c01051{transform:matrix(0.344684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344684,0.000000,0.000000,0.250000,0,0);}
.m39_c01051{transform:matrix(0.345199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345199,0.000000,0.000000,0.250000,0,0);}
.m34_c01051{transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);}
.m4f_c01051{transform:matrix(0.350394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350394,0.000000,0.000000,0.250000,0,0);}
.m29_c01051{transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);}
.m83_c01051{transform:matrix(0.353722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353722,0.000000,0.000000,0.250000,0,0);}
.m3d_c01051{transform:matrix(0.355252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355252,0.000000,0.000000,0.250000,0,0);}
.ma1_c01051{transform:matrix(0.359137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359137,0.000000,0.000000,0.250000,0,0);}
.m3a_c01051{transform:matrix(0.359199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359199,0.000000,0.000000,0.250000,0,0);}
.m10_c01051{transform:matrix(0.362885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362885,0.000000,0.000000,0.250000,0,0);}
.m7c_c01051{transform:matrix(0.366732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366732,0.000000,0.000000,0.250000,0,0);}
.m15_c01051{transform:matrix(0.368347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368347,0.000000,0.000000,0.250000,0,0);}
.m69_c01051{transform:matrix(0.375201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375201,0.000000,0.000000,0.250000,0,0);}
.m1c_c01051{transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);}
.ma_c01051{transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);}
.m3_c01051{transform:matrix(0.405805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405805,0.000000,0.000000,0.250000,0,0);}
.ma5_c01051{transform:matrix(0.408283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408283,0.000000,0.000000,0.250000,0,0);}
.m19_c01051{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);}
.m6_c01051{transform:matrix(0.412048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412048,0.000000,0.000000,0.250000,0,0);}
.m48_c01051{transform:matrix(0.418291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418291,0.000000,0.000000,0.250000,0,0);}
.v1_c01051{vertical-align:-48.470400px;}
.v0_c01051{vertical-align:0.000000px;}
.ls4_c01051{letter-spacing:-2.647267px;}
.ls12_c01051{letter-spacing:-2.508667px;}
.ls11_c01051{letter-spacing:-2.425500px;}
.ls2_c01051{letter-spacing:-2.388915px;}
.ls1_c01051{letter-spacing:0.000000px;}
.lsb_c01051{letter-spacing:0.189090px;}
.lsf_c01051{letter-spacing:2.341080px;}
.lse_c01051{letter-spacing:2.586758px;}
.ls9_c01051{letter-spacing:3.286810px;}
.ls10_c01051{letter-spacing:3.306610px;}
.lsd_c01051{letter-spacing:3.425400px;}
.ls6_c01051{letter-spacing:3.623400px;}
.ls8_c01051{letter-spacing:3.643200px;}
.ls7_c01051{letter-spacing:3.672900px;}
.ls3_c01051{letter-spacing:3.781810px;}
.ls5_c01051{letter-spacing:3.960000px;}
.ls0_c01051{letter-spacing:15.382158px;}
.lsa_c01051{letter-spacing:52.747398px;}
.lsc_c01051{letter-spacing:58.449798px;}
.ls13_c01051{letter-spacing:59.875398px;}
.sc__c01051{text-shadow:none;}
.sc0_c01051{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01051{-webkit-text-stroke:0px transparent;}
.sc0_c01051{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01051{word-spacing:0.000000px;}
._2_c01051{margin-left:-3.025575px;}
._1_c01051{width:4.865564px;}
._4_c01051{width:23.779651px;}
._3_c01051{width:25.066651px;}
._0_c01051{width:1906.006608px;}
.fc0_c01051{color:transparent;}
.fs5_c01051{font-size:22.176000px;}
.fs0_c01051{font-size:33.264000px;}
.fs13_c01051{font-size:39.204000px;}
.fsd_c01051{font-size:39.996198px;}
.fsb_c01051{font-size:52.747398px;}
.fsc_c01051{font-size:58.449798px;}
.fs12_c01051{font-size:59.875398px;}
.fsa_c01051{font-size:65.736198px;}
.fsf_c01051{font-size:66.132198px;}
.fse_c01051{font-size:68.508000px;}
.fs10_c01051{font-size:69.300000px;}
.fs11_c01051{font-size:71.676198px;}
.fs4_c01051{font-size:72.468000px;}
.fs9_c01051{font-size:72.864000px;}
.fs6_c01051{font-size:73.458000px;}
.fs8_c01051{font-size:74.844000px;}
.fs2_c01051{font-size:75.636198px;}
.fs7_c01051{font-size:76.032198px;}
.fs3_c01051{font-size:79.200000px;}
.fs1_c01051{font-size:85.932198px;}
.y1d_c01051{bottom:-2.592765px;}
.y0_c01051{bottom:0.000000px;}
.y1_c01051{bottom:76.500000px;}
.y1c_c01051{bottom:122.869935px;}
.y1b_c01051{bottom:154.940985px;}
.y1a_c01051{bottom:188.091135px;}
.y19_c01051{bottom:221.587785px;}
.y18_c01051{bottom:249.748335px;}
.y17_c01051{bottom:253.663785px;}
.y16_c01051{bottom:285.739785px;}
.y15_c01051{bottom:317.459385px;}
.y14_c01051{bottom:348.822585px;}
.y13_c01051{bottom:380.547135px;}
.y12_c01051{bottom:412.266735px;}
.y11_c01051{bottom:444.694185px;}
.y10_c01051{bottom:476.775135px;}
.yf_c01051{bottom:509.563935px;}
.ye_c01051{bottom:541.996335px;}
.yd_c01051{bottom:574.428735px;}
.yc_c01051{bottom:638.580735px;}
.yb_c01051{bottom:670.295385px;}
.ya_c01051{bottom:702.019935px;}
.y9_c01051{bottom:733.383135px;}
.y8_c01051{bottom:765.097785px;}
.y7_c01051{bottom:797.178735px;}
.y6_c01051{bottom:816.062985px;}
.y5_c01051{bottom:828.541935px;}
.y4_c01051{bottom:861.687135px;}
.y3_c01051{bottom:925.834185px;}
.y2_c01051{bottom:1069.463385px;}
.h6_c01051{height:23.128875px;}
.hc_c01051{height:35.129767px;}
.h2_c01051{height:35.867353px;}
.h14_c01051{height:38.476582px;}
.hd_c01051{height:38.927565px;}
.he_c01051{height:39.254081px;}
.h13_c01051{height:39.877015px;}
.hb_c01051{height:68.560800px;}
.h10_c01051{height:68.973816px;}
.h12_c01051{height:70.346269px;}
.h5_c01051{height:71.123379px;}
.hf_c01051{height:71.451703px;}
.ha_c01051{height:71.512031px;}
.h7_c01051{height:72.095010px;}
.h11_c01051{height:72.277734px;}
.h9_c01051{height:73.455293px;}
.h3_c01051{height:74.232792px;}
.h8_c01051{height:74.621444px;}
.h4_c01051{height:77.730469px;}
.h1_c01051{height:1110.000000px;}
.h0_c01051{height:1263.000000px;}
.w1_c01051{width:775.500000px;}
.w0_c01051{width:892.500000px;}
.x0_c01051{left:0.000000px;}
.x1_c01051{left:58.500000px;}
.x37_c01051{left:75.895035px;}
.x24_c01051{left:76.919685px;}
.x3_c01051{left:79.256085px;}
.x6c_c01051{left:108.010635px;}
.x49_c01051{left:109.134285px;}
.x1b_c01051{left:110.203485px;}
.x31_c01051{left:111.267735px;}
.x68_c01051{left:120.608385px;}
.x13_c01051{left:122.360685px;}
.x3e_c01051{left:131.141985px;}
.xb_c01051{left:132.468585px;}
.x2a_c01051{left:141.076635px;}
.x3c_c01051{left:143.056635px;}
.x1c_c01051{left:144.130785px;}
.x25_c01051{left:154.817835px;}
.x3f_c01051{left:163.930785px;}
.x52_c01051{left:165.024735px;}
.x2_c01051{left:184.473285px;}
.x26_c01051{left:186.735435px;}
.x4_c01051{left:188.314485px;}
.x5b_c01051{left:197.937285px;}
.xc_c01051{left:198.947085px;}
.x65_c01051{left:208.094685px;}
.x2b_c01051{left:209.530185px;}
.x54_c01051{left:219.623235px;}
.x5_c01051{left:221.038935px;}
.x5c_c01051{left:230.661735px;}
.xd_c01051{left:232.384335px;}
.x14_c01051{left:243.135735px;}
.x44_c01051{left:252.313035px;}
.x3d_c01051{left:254.124735px;}
.x6_c01051{left:255.258285px;}
.x38_c01051{left:264.905835px;}
.x2c_c01051{left:266.019585px;}
.x61_c01051{left:273.301035px;}
.x15_c01051{left:276.157185px;}
.x4a_c01051{left:287.269935px;}
.x45_c01051{left:297.704535px;}
.x1d_c01051{left:298.744035px;}
.x2d_c01051{left:309.431085px;}
.xe_c01051{left:320.707185px;}
.x7_c01051{left:322.296135px;}
.x53_c01051{left:331.597185px;}
.x1e_c01051{left:333.334635px;}
.x62_c01051{left:342.155535px;}
.x2e_c01051{left:343.294035px;}
.x6d_c01051{left:350.501235px;}
.x40_c01051{left:352.897035px;}
.x8_c01051{left:354.327585px;}
.x16_c01051{left:356.045235px;}
.x46_c01051{left:363.841485px;}
.x6e_c01051{left:375.003735px;}
.x27_c01051{left:376.726335px;}
.x41_c01051{left:386.284785px;}
.x9_c01051{left:387.353985px;}
.x4b_c01051{left:398.253885px;}
.xf_c01051{left:399.941835px;}
.x5d_c01051{left:409.232985px;}
.x63_c01051{left:419.850735px;}
.x1f_c01051{left:421.207035px;}
.x50_c01051{left:431.745585px;}
.x69_c01051{left:440.917935px;}
.x55_c01051{left:442.422735px;}
.x32_c01051{left:443.774085px;}
.x5f_c01051{left:452.802885px;}
.xa_c01051{left:457.015335px;}
.x51_c01051{left:463.633485px;}
.x42_c01051{left:465.519435px;}
.x33_c01051{left:475.018485px;}
.x66_c01051{left:485.007585px;}
.x4c_c01051{left:486.245085px;}
.x17_c01051{left:487.566735px;}
.x58_c01051{left:496.417335px;}
.x20_c01051{left:498.748785px;}
.x28_c01051{left:508.896285px;}
.x10_c01051{left:510.455535px;}
.x4d_c01051{left:519.573435px;}
.x39_c01051{left:530.270385px;}
.x18_c01051{left:531.488085px;}
.x6a_c01051{left:541.175235px;}
.x34_c01051{left:542.229585px;}
.x21_c01051{left:543.595785px;}
.x56_c01051{left:552.283035px;}
.x2f_c01051{left:554.327385px;}
.x5e_c01051{left:562.702785px;}
.x59_c01051{left:563.836335px;}
.x19_c01051{left:565.034235px;}
.x6b_c01051{left:571.815735px;}
.x35_c01051{left:576.033135px;}
.x57_c01051{left:585.982635px;}
.x60_c01051{left:595.135185px;}
.x3a_c01051{left:597.110235px;}
.x1a_c01051{left:599.209035px;}
.x4e_c01051{left:608.158635px;}
.x64_c01051{left:610.029735px;}
.x11_c01051{left:611.326635px;}
.x47_c01051{left:619.172385px;}
.x3b_c01051{left:629.329785px;}
.x22_c01051{left:631.681035px;}
.x6f_c01051{left:639.442635px;}
.x4f_c01051{left:640.888035px;}
.x30_c01051{left:652.941285px;}
.x48_c01051{left:662.173035px;}
.x23_c01051{left:663.202635px;}
.x29_c01051{left:664.791585px;}
.x67_c01051{left:673.681785px;}
.x43_c01051{left:675.107385px;}
.x36_c01051{left:685.848885px;}
.x5a_c01051{left:696.486435px;}
.x12_c01051{left:698.253585px;}
.x70_c01051{left:704.074785px;}
@media print{
.v1_c01051{vertical-align:-43.084800pt;}
.v0_c01051{vertical-align:0.000000pt;}
.ls4_c01051{letter-spacing:-2.353126pt;}
.ls12_c01051{letter-spacing:-2.229926pt;}
.ls11_c01051{letter-spacing:-2.156000pt;}
.ls2_c01051{letter-spacing:-2.123480pt;}
.ls1_c01051{letter-spacing:0.000000pt;}
.lsb_c01051{letter-spacing:0.168080pt;}
.lsf_c01051{letter-spacing:2.080960pt;}
.lse_c01051{letter-spacing:2.299340pt;}
.ls9_c01051{letter-spacing:2.921609pt;}
.ls10_c01051{letter-spacing:2.939209pt;}
.lsd_c01051{letter-spacing:3.044800pt;}
.ls6_c01051{letter-spacing:3.220800pt;}
.ls8_c01051{letter-spacing:3.238400pt;}
.ls7_c01051{letter-spacing:3.264800pt;}
.ls3_c01051{letter-spacing:3.361609pt;}
.ls5_c01051{letter-spacing:3.520000pt;}
.ls0_c01051{letter-spacing:13.673029pt;}
.lsa_c01051{letter-spacing:46.886576pt;}
.lsc_c01051{letter-spacing:51.955376pt;}
.ls13_c01051{letter-spacing:53.222576pt;}
.ws0_c01051{word-spacing:0.000000pt;}
._2_c01051{margin-left:-2.689400pt;}
._1_c01051{width:4.324946pt;}
._4_c01051{width:21.137468pt;}
._3_c01051{width:22.281468pt;}
._0_c01051{width:1694.228096pt;}
.fs5_c01051{font-size:19.712000pt;}
.fs0_c01051{font-size:29.568000pt;}
.fs13_c01051{font-size:34.848000pt;}
.fsd_c01051{font-size:35.552176pt;}
.fsb_c01051{font-size:46.886576pt;}
.fsc_c01051{font-size:51.955376pt;}
.fs12_c01051{font-size:53.222576pt;}
.fsa_c01051{font-size:58.432176pt;}
.fsf_c01051{font-size:58.784176pt;}
.fse_c01051{font-size:60.896000pt;}
.fs10_c01051{font-size:61.600000pt;}
.fs11_c01051{font-size:63.712176pt;}
.fs4_c01051{font-size:64.416000pt;}
.fs9_c01051{font-size:64.768000pt;}
.fs6_c01051{font-size:65.296000pt;}
.fs8_c01051{font-size:66.528000pt;}
.fs2_c01051{font-size:67.232176pt;}
.fs7_c01051{font-size:67.584176pt;}
.fs3_c01051{font-size:70.400000pt;}
.fs1_c01051{font-size:76.384176pt;}
.y1d_c01051{bottom:-2.304680pt;}
.y0_c01051{bottom:0.000000pt;}
.y1_c01051{bottom:68.000000pt;}
.y1c_c01051{bottom:109.217720pt;}
.y1b_c01051{bottom:137.725320pt;}
.y1a_c01051{bottom:167.192120pt;}
.y19_c01051{bottom:196.966920pt;}
.y18_c01051{bottom:221.998520pt;}
.y17_c01051{bottom:225.478920pt;}
.y16_c01051{bottom:253.990920pt;}
.y15_c01051{bottom:282.186120pt;}
.y14_c01051{bottom:310.064520pt;}
.y13_c01051{bottom:338.264120pt;}
.y12_c01051{bottom:366.459320pt;}
.y11_c01051{bottom:395.283720pt;}
.y10_c01051{bottom:423.800120pt;}
.yf_c01051{bottom:452.945720pt;}
.ye_c01051{bottom:481.774520pt;}
.yd_c01051{bottom:510.603320pt;}
.yc_c01051{bottom:567.627320pt;}
.yb_c01051{bottom:595.818120pt;}
.ya_c01051{bottom:624.017720pt;}
.y9_c01051{bottom:651.896120pt;}
.y8_c01051{bottom:680.086920pt;}
.y7_c01051{bottom:708.603320pt;}
.y6_c01051{bottom:725.389320pt;}
.y5_c01051{bottom:736.481720pt;}
.y4_c01051{bottom:765.944120pt;}
.y3_c01051{bottom:822.963720pt;}
.y2_c01051{bottom:950.634120pt;}
.h6_c01051{height:20.559000pt;}
.hc_c01051{height:31.226460pt;}
.h2_c01051{height:31.882091pt;}
.h14_c01051{height:34.201406pt;}
.hd_c01051{height:34.602280pt;}
.he_c01051{height:34.892516pt;}
.h13_c01051{height:35.446236pt;}
.hb_c01051{height:60.942934pt;}
.h10_c01051{height:61.310059pt;}
.h12_c01051{height:62.530016pt;}
.h5_c01051{height:63.220781pt;}
.hf_c01051{height:63.512625pt;}
.ha_c01051{height:63.566250pt;}
.h7_c01051{height:64.084453pt;}
.h11_c01051{height:64.246875pt;}
.h9_c01051{height:65.293594pt;}
.h3_c01051{height:65.984704pt;}
.h8_c01051{height:66.330173pt;}
.h4_c01051{height:69.093750pt;}
.h1_c01051{height:986.666667pt;}
.h0_c01051{height:1122.666667pt;}
.w1_c01051{width:689.333333pt;}
.w0_c01051{width:793.333333pt;}
.x0_c01051{left:0.000000pt;}
.x1_c01051{left:52.000000pt;}
.x37_c01051{left:67.462253pt;}
.x24_c01051{left:68.373053pt;}
.x3_c01051{left:70.449853pt;}
.x6c_c01051{left:96.009453pt;}
.x49_c01051{left:97.008253pt;}
.x1b_c01051{left:97.958653pt;}
.x31_c01051{left:98.904653pt;}
.x68_c01051{left:107.207453pt;}
.x13_c01051{left:108.765053pt;}
.x3e_c01051{left:116.570653pt;}
.xb_c01051{left:117.749853pt;}
.x2a_c01051{left:125.401453pt;}
.x3c_c01051{left:127.161453pt;}
.x1c_c01051{left:128.116253pt;}
.x25_c01051{left:137.615853pt;}
.x3f_c01051{left:145.716253pt;}
.x52_c01051{left:146.688653pt;}
.x2_c01051{left:163.976253pt;}
.x26_c01051{left:165.987053pt;}
.x4_c01051{left:167.390653pt;}
.x5b_c01051{left:175.944253pt;}
.xc_c01051{left:176.841853pt;}
.x65_c01051{left:184.973053pt;}
.x2b_c01051{left:186.249053pt;}
.x54_c01051{left:195.220653pt;}
.x5_c01051{left:196.479053pt;}
.x5c_c01051{left:205.032653pt;}
.xd_c01051{left:206.563853pt;}
.x14_c01051{left:216.120653pt;}
.x44_c01051{left:224.278253pt;}
.x3d_c01051{left:225.888653pt;}
.x6_c01051{left:226.896253pt;}
.x38_c01051{left:235.471853pt;}
.x2c_c01051{left:236.461853pt;}
.x61_c01051{left:242.934253pt;}
.x15_c01051{left:245.473053pt;}
.x4a_c01051{left:255.351053pt;}
.x45_c01051{left:264.626253pt;}
.x1d_c01051{left:265.550253pt;}
.x2d_c01051{left:275.049853pt;}
.xe_c01051{left:285.073053pt;}
.x7_c01051{left:286.485453pt;}
.x53_c01051{left:294.753053pt;}
.x1e_c01051{left:296.297453pt;}
.x62_c01051{left:304.138253pt;}
.x2e_c01051{left:305.150253pt;}
.x6d_c01051{left:311.556653pt;}
.x40_c01051{left:313.686253pt;}
.x8_c01051{left:314.957853pt;}
.x16_c01051{left:316.484653pt;}
.x46_c01051{left:323.414653pt;}
.x6e_c01051{left:333.336653pt;}
.x27_c01051{left:334.867853pt;}
.x41_c01051{left:343.364253pt;}
.x9_c01051{left:344.314653pt;}
.x4b_c01051{left:354.003453pt;}
.xf_c01051{left:355.503853pt;}
.x5d_c01051{left:363.762653pt;}
.x63_c01051{left:373.200653pt;}
.x1f_c01051{left:374.406253pt;}
.x50_c01051{left:383.773853pt;}
.x69_c01051{left:391.927053pt;}
.x55_c01051{left:393.264653pt;}
.x32_c01051{left:394.465853pt;}
.x5f_c01051{left:402.491453pt;}
.xa_c01051{left:406.235853pt;}
.x51_c01051{left:412.118653pt;}
.x42_c01051{left:413.795053pt;}
.x33_c01051{left:422.238653pt;}
.x66_c01051{left:431.117853pt;}
.x4c_c01051{left:432.217853pt;}
.x17_c01051{left:433.392653pt;}
.x58_c01051{left:441.259853pt;}
.x20_c01051{left:443.332253pt;}
.x28_c01051{left:452.352253pt;}
.x10_c01051{left:453.738253pt;}
.x4d_c01051{left:461.843053pt;}
.x39_c01051{left:471.351453pt;}
.x18_c01051{left:472.433853pt;}
.x6a_c01051{left:481.044653pt;}
.x34_c01051{left:481.981853pt;}
.x21_c01051{left:483.196253pt;}
.x56_c01051{left:490.918253pt;}
.x2f_c01051{left:492.735453pt;}
.x5e_c01051{left:500.180253pt;}
.x59_c01051{left:501.187853pt;}
.x19_c01051{left:502.252653pt;}
.x6b_c01051{left:508.280653pt;}
.x35_c01051{left:512.029453pt;}
.x57_c01051{left:520.873453pt;}
.x60_c01051{left:529.009053pt;}
.x3a_c01051{left:530.764653pt;}
.x1a_c01051{left:532.630253pt;}
.x4e_c01051{left:540.585453pt;}
.x64_c01051{left:542.248653pt;}
.x11_c01051{left:543.401453pt;}
.x47_c01051{left:550.375453pt;}
.x3b_c01051{left:559.404253pt;}
.x22_c01051{left:561.494253pt;}
.x6f_c01051{left:568.393453pt;}
.x4f_c01051{left:569.678253pt;}
.x30_c01051{left:580.392253pt;}
.x48_c01051{left:588.598253pt;}
.x23_c01051{left:589.513453pt;}
.x29_c01051{left:590.925853pt;}
.x67_c01051{left:598.828253pt;}
.x43_c01051{left:600.095453pt;}
.x36_c01051{left:609.643453pt;}
.x5a_c01051{left:619.099053pt;}
.x12_c01051{left:620.669853pt;}
.x70_c01051{left:625.844253pt;}
}





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

.ir_c01052:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01052{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01052;src:url('chunks/assets/font_2603f7df2c97fd43cf21a3b9.woff2')format("woff");}.ff1_c01052{font-family:ff1_c01052;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01052;src:url('chunks/assets/font_757f5f153bcb87e6d942ecab.woff2')format("woff");}.ff2_c01052{font-family:ff2_c01052;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01052;src:url('chunks/assets/font_4cf40e9145cb00723eaf66ad.woff2')format("woff");}.ff3_c01052{font-family:ff3_c01052;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01052;src:url('chunks/assets/font_9c27fe5ac0590800d5cb3b22.woff2')format("woff");}.ff4_c01052{font-family:ff4_c01052;line-height:0.666000;font-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_c01052{transform:matrix(0.090498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090498,0.000000,0.000000,0.250000,0,0);}
.m3f_c01052{transform:matrix(0.093031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093031,0.000000,0.000000,0.250000,0,0);}
.m42_c01052{transform:matrix(0.116848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116848,0.000000,0.000000,0.250000,0,0);}
.m20_c01052{transform:matrix(0.168605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168605,0.000000,0.000000,0.250000,0,0);}
.m56_c01052{transform:matrix(0.177381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177381,0.000000,0.000000,0.250000,0,0);}
.m15_c01052{transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);}
.m7f_c01052{transform:matrix(0.178572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178572,0.000000,0.000000,0.250000,0,0);}
.m96_c01052{transform:matrix(0.178572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178572,0.000000,0.000000,0.250000,0,0);}
.m3e_c01052{transform:matrix(0.192953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192953,0.000000,0.000000,0.250000,0,0);}
.m40_c01052{transform:matrix(0.211266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211266,0.000000,0.000000,0.250000,0,0);}
.m47_c01052{transform:matrix(0.220838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220838,0.000000,0.000000,0.250000,0,0);}
.m6_c01052{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m16_c01052{transform:matrix(0.255733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255733,0.000000,0.000000,0.250000,0,0);}
.m60_c01052{transform:matrix(0.257088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257088,0.000000,0.000000,0.250000,0,0);}
.m5f_c01052{transform:matrix(0.258245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258245,0.000000,0.000000,0.250000,0,0);}
.m8_c01052{transform:matrix(0.258779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258779,0.000000,0.000000,0.250000,0,0);}
.m31_c01052{transform:matrix(0.263376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263376,0.000000,0.000000,0.250000,0,0);}
.m6a_c01052{transform:matrix(0.264376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264376,0.000000,0.000000,0.250000,0,0);}
.m74_c01052{transform:matrix(0.266286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266286,0.000000,0.000000,0.250000,0,0);}
.m17_c01052{transform:matrix(0.267450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267450,0.000000,0.000000,0.250000,0,0);}
.m85_c01052{transform:matrix(0.268072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268072,0.000000,0.000000,0.250000,0,0);}
.m1a_c01052{transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);}
.m81_c01052{transform:matrix(0.268402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268402,0.000000,0.000000,0.250000,0,0);}
.m7b_c01052{transform:matrix(0.269547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269547,0.000000,0.000000,0.250000,0,0);}
.m26_c01052{transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);}
.m4c_c01052{transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);}
.m2d_c01052{transform:matrix(0.272792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272792,0.000000,0.000000,0.250000,0,0);}
.m49_c01052{transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);}
.m36_c01052{transform:matrix(0.273491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273491,0.000000,0.000000,0.250000,0,0);}
.m57_c01052{transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);}
.m3c_c01052{transform:matrix(0.275366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275366,0.000000,0.000000,0.250000,0,0);}
.md_c01052{transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);}
.m46_c01052{transform:matrix(0.276054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276054,0.000000,0.000000,0.250000,0,0);}
.m98_c01052{transform:matrix(0.276160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276160,0.000000,0.000000,0.250000,0,0);}
.m66_c01052{transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);}
.m2_c01052{transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);}
.m43_c01052{transform:matrix(0.281802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281802,0.000000,0.000000,0.250000,0,0);}
.m7c_c01052{transform:matrix(0.283382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283382,0.000000,0.000000,0.250000,0,0);}
.m33_c01052{transform:matrix(0.283558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283558,0.000000,0.000000,0.250000,0,0);}
.m63_c01052{transform:matrix(0.283625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283625,0.000000,0.000000,0.250000,0,0);}
.m9_c01052{transform:matrix(0.283735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283735,0.000000,0.000000,0.250000,0,0);}
.me_c01052{transform:matrix(0.283967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283967,0.000000,0.000000,0.250000,0,0);}
.m2c_c01052{transform:matrix(0.285152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285152,0.000000,0.000000,0.250000,0,0);}
.m29_c01052{transform:matrix(0.285652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285652,0.000000,0.000000,0.250000,0,0);}
.m55_c01052{transform:matrix(0.288515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288515,0.000000,0.000000,0.250000,0,0);}
.m78_c01052{transform:matrix(0.289190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289190,0.000000,0.000000,0.250000,0,0);}
.m1c_c01052{transform:matrix(0.289388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289388,0.000000,0.000000,0.250000,0,0);}
.m21_c01052{transform:matrix(0.289629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289629,0.000000,0.000000,0.250000,0,0);}
.m7a_c01052{transform:matrix(0.289914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289914,0.000000,0.000000,0.250000,0,0);}
.m6c_c01052{transform:matrix(0.290493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290493,0.000000,0.000000,0.250000,0,0);}
.m12_c01052{transform:matrix(0.290885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290885,0.000000,0.000000,0.250000,0,0);}
.m90_c01052{transform:matrix(0.291287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291287,0.000000,0.000000,0.250000,0,0);}
.m44_c01052{transform:matrix(0.292159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292159,0.000000,0.000000,0.250000,0,0);}
.m67_c01052{transform:matrix(0.292849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292849,0.000000,0.000000,0.250000,0,0);}
.m50_c01052{transform:matrix(0.293280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293280,0.000000,0.000000,0.250000,0,0);}
.m73_c01052{transform:matrix(0.293393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293393,0.000000,0.000000,0.250000,0,0);}
.m18_c01052{transform:matrix(0.293508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293508,0.000000,0.000000,0.250000,0,0);}
.m4f_c01052{transform:matrix(0.293738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293738,0.000000,0.000000,0.250000,0,0);}
.m53_c01052{transform:matrix(0.294249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294249,0.000000,0.000000,0.250000,0,0);}
.m3b_c01052{transform:matrix(0.294296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294296,0.000000,0.000000,0.250000,0,0);}
.m69_c01052{transform:matrix(0.294456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294456,0.000000,0.000000,0.250000,0,0);}
.m8d_c01052{transform:matrix(0.295380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295380,0.000000,0.000000,0.250000,0,0);}
.m72_c01052{transform:matrix(0.296080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296080,0.000000,0.000000,0.250000,0,0);}
.m99_c01052{transform:matrix(0.296335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296335,0.000000,0.000000,0.250000,0,0);}
.m34_c01052{transform:matrix(0.296995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296995,0.000000,0.000000,0.250000,0,0);}
.ma_c01052{transform:matrix(0.297100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297100,0.000000,0.000000,0.250000,0,0);}
.m1e_c01052{transform:matrix(0.297699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297699,0.000000,0.000000,0.250000,0,0);}
.m23_c01052{transform:matrix(0.298309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298309,0.000000,0.000000,0.250000,0,0);}
.m5_c01052{transform:matrix(0.298641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298641,0.000000,0.000000,0.250000,0,0);}
.m97_c01052{transform:matrix(0.298648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298648,0.000000,0.000000,0.250000,0,0);}
.m94_c01052{transform:matrix(0.299002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299002,0.000000,0.000000,0.250000,0,0);}
.m39_c01052{transform:matrix(0.300139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300139,0.000000,0.000000,0.250000,0,0);}
.m4b_c01052{transform:matrix(0.300448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300448,0.000000,0.000000,0.250000,0,0);}
.m86_c01052{transform:matrix(0.300565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300565,0.000000,0.000000,0.250000,0,0);}
.m8e_c01052{transform:matrix(0.300599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300599,0.000000,0.000000,0.250000,0,0);}
.m3a_c01052{transform:matrix(0.301044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301044,0.000000,0.000000,0.250000,0,0);}
.m6f_c01052{transform:matrix(0.301121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301121,0.000000,0.000000,0.250000,0,0);}
.m91_c01052{transform:matrix(0.301177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301177,0.000000,0.000000,0.250000,0,0);}
.m80_c01052{transform:matrix(0.301433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301433,0.000000,0.000000,0.250000,0,0);}
.m8b_c01052{transform:matrix(0.301461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301461,0.000000,0.000000,0.250000,0,0);}
.m5b_c01052{transform:matrix(0.302392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302392,0.000000,0.000000,0.250000,0,0);}
.m82_c01052{transform:matrix(0.303269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303269,0.000000,0.000000,0.250000,0,0);}
.m58_c01052{transform:matrix(0.303286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303286,0.000000,0.000000,0.250000,0,0);}
.m7_c01052{transform:matrix(0.303483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303483,0.000000,0.000000,0.250000,0,0);}
.m65_c01052{transform:matrix(0.304146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304146,0.000000,0.000000,0.250000,0,0);}
.m37_c01052{transform:matrix(0.305253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305253,0.000000,0.000000,0.250000,0,0);}
.mc_c01052{transform:matrix(0.305346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305346,0.000000,0.000000,0.250000,0,0);}
.m13_c01052{transform:matrix(0.305510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305510,0.000000,0.000000,0.250000,0,0);}
.m48_c01052{transform:matrix(0.306071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306071,0.000000,0.000000,0.250000,0,0);}
.m27_c01052{transform:matrix(0.306753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306753,0.000000,0.000000,0.250000,0,0);}
.m89_c01052{transform:matrix(0.307150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307150,0.000000,0.000000,0.250000,0,0);}
.m4a_c01052{transform:matrix(0.307741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307741,0.000000,0.000000,0.250000,0,0);}
.m88_c01052{transform:matrix(0.308042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308042,0.000000,0.000000,0.250000,0,0);}
.m2f_c01052{transform:matrix(0.308160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308160,0.000000,0.000000,0.250000,0,0);}
.m25_c01052{transform:matrix(0.308201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308201,0.000000,0.000000,0.250000,0,0);}
.mb_c01052{transform:matrix(0.310475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310475,0.000000,0.000000,0.250000,0,0);}
.m9a_c01052{transform:matrix(0.312279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312279,0.000000,0.000000,0.250000,0,0);}
.m79_c01052{transform:matrix(0.312549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312549,0.000000,0.000000,0.250000,0,0);}
.m2b_c01052{transform:matrix(0.313826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313826,0.000000,0.000000,0.250000,0,0);}
.m19_c01052{transform:matrix(0.314147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314147,0.000000,0.000000,0.250000,0,0);}
.m8c_c01052{transform:matrix(0.314207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314207,0.000000,0.000000,0.250000,0,0);}
.m51_c01052{transform:matrix(0.314608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314608,0.000000,0.000000,0.250000,0,0);}
.m4e_c01052{transform:matrix(0.314765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314765,0.000000,0.000000,0.250000,0,0);}
.m24_c01052{transform:matrix(0.315033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315033,0.000000,0.000000,0.250000,0,0);}
.m54_c01052{transform:matrix(0.315580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315580,0.000000,0.000000,0.250000,0,0);}
.m5d_c01052{transform:matrix(0.316292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316292,0.000000,0.000000,0.250000,0,0);}
.m71_c01052{transform:matrix(0.316648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316648,0.000000,0.000000,0.250000,0,0);}
.m5c_c01052{transform:matrix(0.318271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318271,0.000000,0.000000,0.250000,0,0);}
.m7e_c01052{transform:matrix(0.318284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318284,0.000000,0.000000,0.250000,0,0);}
.m8f_c01052{transform:matrix(0.319173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319173,0.000000,0.000000,0.250000,0,0);}
.m92_c01052{transform:matrix(0.319203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319203,0.000000,0.000000,0.250000,0,0);}
.m11_c01052{transform:matrix(0.319699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319699,0.000000,0.000000,0.250000,0,0);}
.m2e_c01052{transform:matrix(0.322751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322751,0.000000,0.000000,0.250000,0,0);}
.m1b_c01052{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);}
.m14_c01052{transform:matrix(0.324853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324853,0.000000,0.000000,0.250000,0,0);}
.m70_c01052{transform:matrix(0.326593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326593,0.000000,0.000000,0.250000,0,0);}
.m5e_c01052{transform:matrix(0.327078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327078,0.000000,0.000000,0.250000,0,0);}
.m4d_c01052{transform:matrix(0.327495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327495,0.000000,0.000000,0.250000,0,0);}
.m77_c01052{transform:matrix(0.327654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327654,0.000000,0.000000,0.250000,0,0);}
.m8a_c01052{transform:matrix(0.327951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327951,0.000000,0.000000,0.250000,0,0);}
.m6e_c01052{transform:matrix(0.328612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328612,0.000000,0.000000,0.250000,0,0);}
.m1f_c01052{transform:matrix(0.329059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329059,0.000000,0.000000,0.250000,0,0);}
.m0_c01052{transform:matrix(0.329756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329756,0.000000,0.000000,0.250000,0,0);}
.m62_c01052{transform:matrix(0.330110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330110,0.000000,0.000000,0.250000,0,0);}
.m59_c01052{transform:matrix(0.331169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331169,0.000000,0.000000,0.250000,0,0);}
.m30_c01052{transform:matrix(0.332235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332235,0.000000,0.000000,0.250000,0,0);}
.m83_c01052{transform:matrix(0.332739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332739,0.000000,0.000000,0.250000,0,0);}
.m95_c01052{transform:matrix(0.333203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333203,0.000000,0.000000,0.250000,0,0);}
.m9b_c01052{transform:matrix(0.333900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333900,0.000000,0.000000,0.250000,0,0);}
.m6b_c01052{transform:matrix(0.334498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334498,0.000000,0.000000,0.250000,0,0);}
.m2a_c01052{transform:matrix(0.335265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335265,0.000000,0.000000,0.250000,0,0);}
.mf_c01052{transform:matrix(0.335583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335583,0.000000,0.000000,0.250000,0,0);}
.m6d_c01052{transform:matrix(0.336124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336124,0.000000,0.000000,0.250000,0,0);}
.m84_c01052{transform:matrix(0.336777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336777,0.000000,0.000000,0.250000,0,0);}
.m1_c01052{transform:matrix(0.338050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338050,0.000000,0.000000,0.250000,0,0);}
.m32_c01052{transform:matrix(0.338925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338925,0.000000,0.000000,0.250000,0,0);}
.m75_c01052{transform:matrix(0.339063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339063,0.000000,0.000000,0.250000,0,0);}
.m45_c01052{transform:matrix(0.345428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345428,0.000000,0.000000,0.250000,0,0);}
.m61_c01052{transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);}
.m87_c01052{transform:matrix(0.345803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345803,0.000000,0.000000,0.250000,0,0);}
.m28_c01052{transform:matrix(0.345864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345864,0.000000,0.000000,0.250000,0,0);}
.m3d_c01052{transform:matrix(0.347693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347693,0.000000,0.000000,0.250000,0,0);}
.m68_c01052{transform:matrix(0.348171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348171,0.000000,0.000000,0.250000,0,0);}
.m52_c01052{transform:matrix(0.349004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349004,0.000000,0.000000,0.250000,0,0);}
.m7d_c01052{transform:matrix(0.350055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350055,0.000000,0.000000,0.250000,0,0);}
.m93_c01052{transform:matrix(0.354269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354269,0.000000,0.000000,0.250000,0,0);}
.m3_c01052{transform:matrix(0.355252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355252,0.000000,0.000000,0.250000,0,0);}
.m4_c01052{transform:matrix(0.356816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356816,0.000000,0.000000,0.250000,0,0);}
.m35_c01052{transform:matrix(0.357243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357243,0.000000,0.000000,0.250000,0,0);}
.m9c_c01052{transform:matrix(0.363147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363147,0.000000,0.000000,0.250000,0,0);}
.m38_c01052{transform:matrix(0.364102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364102,0.000000,0.000000,0.250000,0,0);}
.m22_c01052{transform:matrix(0.387076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387076,0.000000,0.000000,0.250000,0,0);}
.m64_c01052{transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);}
.m1d_c01052{transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);}
.m76_c01052{transform:matrix(0.405805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405805,0.000000,0.000000,0.250000,0,0);}
.m10_c01052{transform:matrix(0.412048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412048,0.000000,0.000000,0.250000,0,0);}
.m5a_c01052{transform:matrix(0.418291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418291,0.000000,0.000000,0.250000,0,0);}
.v0_c01052{vertical-align:0.000000px;}
.lsa_c01052{letter-spacing:-2.813580px;}
.lse_c01052{letter-spacing:-2.647267px;}
.lsc_c01052{letter-spacing:-2.612617px;}
.lsf_c01052{letter-spacing:-1.754760px;}
.ls12_c01052{letter-spacing:-1.353888px;}
.ls3_c01052{letter-spacing:0.000000px;}
.ls7_c01052{letter-spacing:0.605090px;}
.ls6_c01052{letter-spacing:1.081598px;}
.ls11_c01052{letter-spacing:1.203051px;}
.ls14_c01052{letter-spacing:1.558106px;}
.ls10_c01052{letter-spacing:1.695038px;}
.ls9_c01052{letter-spacing:2.019486px;}
.lsd_c01052{letter-spacing:2.504700px;}
.ls0_c01052{letter-spacing:2.632140px;}
.ls2_c01052{letter-spacing:3.418668px;}
.ls4_c01052{letter-spacing:3.682810px;}
.ls1_c01052{letter-spacing:3.781810px;}
.ls13_c01052{letter-spacing:58.449798px;}
.ls5_c01052{letter-spacing:59.875398px;}
.ls8_c01052{letter-spacing:61.300998px;}
.lsb_c01052{letter-spacing:65.577798px;}
.sc__c01052{text-shadow:none;}
.sc0_c01052{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01052{-webkit-text-stroke:0px transparent;}
.sc0_c01052{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01052{word-spacing:0.000000px;}
._0_c01052{margin-left:-28.597536px;}
._3_c01052{margin-left:-16.996771px;}
._2_c01052{width:13.886551px;}
._5_c01052{width:22.709616px;}
._4_c01052{width:32.683860px;}
._6_c01052{width:41.775919px;}
._1_c01052{width:51.584871px;}
.fc0_c01052{color:transparent;}
.fs13_c01052{font-size:27.720000px;}
.fs3_c01052{font-size:30.690000px;}
.fs2_c01052{font-size:39.204000px;}
.fsd_c01052{font-size:50.094000px;}
.fs11_c01052{font-size:57.024000px;}
.fs10_c01052{font-size:58.449798px;}
.fs7_c01052{font-size:59.875398px;}
.fs8_c01052{font-size:61.300998px;}
.fs4_c01052{font-size:64.944000px;}
.fsa_c01052{font-size:65.577798px;}
.fse_c01052{font-size:66.330000px;}
.fs6_c01052{font-size:73.656198px;}
.fsb_c01052{font-size:74.646198px;}
.fs0_c01052{font-size:75.636198px;}
.fs9_c01052{font-size:80.388000px;}
.fs12_c01052{font-size:83.556198px;}
.fsf_c01052{font-size:85.932198px;}
.fs1_c01052{font-size:88.110000px;}
.fsc_c01052{font-size:91.872198px;}
.fs5_c01052{font-size:120.384000px;}
.y0_c01052{bottom:0.000000px;}
.y1_c01052{bottom:76.500000px;}
.y1e_c01052{bottom:118.593135px;}
.y1d_c01052{bottom:155.297385px;}
.y1c_c01052{bottom:188.447535px;}
.y1b_c01052{bottom:221.236335px;}
.y1a_c01052{bottom:253.663785px;}
.y18_c01052{bottom:286.101135px;}
.y19_c01052{bottom:287.526735px;}
.y17_c01052{bottom:349.183935px;}
.y16_c01052{bottom:381.616335px;}
.y15_c01052{bottom:404.420985px;}
.y14_c01052{bottom:413.692335px;}
.y13_c01052{bottom:445.768335px;}
.y12_c01052{bottom:477.839385px;}
.y11_c01052{bottom:509.563935px;}
.y10_c01052{bottom:541.639935px;}
.yf_c01052{bottom:574.067385px;}
.ye_c01052{bottom:604.717785px;}
.yd_c01052{bottom:637.862985px;}
.yc_c01052{bottom:669.587535px;}
.yb_c01052{bottom:700.232985px;}
.ya_c01052{bottom:731.957535px;}
.y9_c01052{bottom:763.677135px;}
.y8_c01052{bottom:796.109535px;}
.y7_c01052{bottom:828.541935px;}
.y4_c01052{bottom:906.949935px;}
.y6_c01052{bottom:911.221785px;}
.y5_c01052{bottom:921.918735px;}
.y2_c01052{bottom:924.769935px;}
.y3_c01052{bottom:1056.989385px;}
.h15_c01052{height:28.911094px;}
.h5_c01052{height:30.120557px;}
.h4_c01052{height:38.476582px;}
.h12_c01052{height:38.927565px;}
.h8_c01052{height:39.877015px;}
.h9_c01052{height:40.826465px;}
.hb_c01052{height:43.674813px;}
.he_c01052{height:52.246477px;}
.h13_c01052{height:59.474250px;}
.hf_c01052{height:63.738984px;}
.h11_c01052{height:69.180117px;}
.h7_c01052{height:74.231637px;}
.h2_c01052{height:74.232792px;}
.hc_c01052{height:77.853652px;}
.ha_c01052{height:78.896426px;}
.h14_c01052{height:82.005839px;}
.h10_c01052{height:84.337753px;}
.h3_c01052{height:86.475146px;}
.hd_c01052{height:95.819832px;}
.h6_c01052{height:125.556750px;}
.h1_c01052{height:1110.000000px;}
.h0_c01052{height:1263.000000px;}
.w1_c01052{width:775.500000px;}
.w0_c01052{width:892.500000px;}
.x0_c01052{left:0.000000px;}
.x1_c01052{left:58.500000px;}
.x2f_c01052{left:73.578435px;}
.x1a_c01052{left:74.989185px;}
.x2_c01052{left:76.310835px;}
.x23_c01052{left:107.362185px;}
.x35_c01052{left:118.440285px;}
.x1b_c01052{left:120.128235px;}
.x5e_c01052{left:128.538285px;}
.xb_c01052{left:129.632235px;}
.x30_c01052{left:139.655985px;}
.x3_c01052{left:142.264635px;}
.x4c_c01052{left:150.347985px;}
.x44_c01052{left:151.545885px;}
.x4f_c01052{left:161.039985px;}
.x49_c01052{left:162.178485px;}
.x29_c01052{left:173.672385px;}
.xc_c01052{left:184.839585px;}
.x14_c01052{left:186.507735px;}
.x4d_c01052{left:194.531685px;}
.x1c_c01052{left:196.882935px;}
.x69_c01052{left:205.659285px;}
.x3b_c01052{left:207.708585px;}
.x5c_c01052{left:216.267135px;}
.xd_c01052{left:218.687685px;}
.x36_c01052{left:228.518385px;}
.x31_c01052{left:239.447985px;}
.x15_c01052{left:251.600235px;}
.x4_c01052{left:253.510935px;}
.x54_c01052{left:261.119085px;}
.x37_c01052{left:262.411035px;}
.x3c_c01052{left:263.445585px;}
.x5f_c01052{left:272.726835px;}
.x50_c01052{left:274.766235px;}
.x5d_c01052{left:283.601985px;}
.x5_c01052{left:285.581985px;}
.x6b_c01052{left:294.887985px;}
.xe_c01052{left:296.100735px;}
.x60_c01052{left:305.738385px;}
.x65_c01052{left:306.807585px;}
.x2a_c01052{left:307.985685px;}
.x45_c01052{left:317.499585px;}
.x6c_c01052{left:326.800635px;}
.x55_c01052{left:329.062785px;}
.x6_c01052{left:330.131985px;}
.x51_c01052{left:337.814385px;}
.x46_c01052{left:350.288385px;}
.x24_c01052{left:352.268385px;}
.x61_c01052{left:360.386385px;}
.x1d_c01052{left:363.673185px;}
.x56_c01052{left:373.008885px;}
.x66_c01052{left:374.226585px;}
.x4a_c01052{left:383.789985px;}
.x38_c01052{left:384.923535px;}
.xf_c01052{left:386.482785px;}
.x6a_c01052{left:393.417735px;}
.x1e_c01052{left:396.422385px;}
.x52_c01052{left:405.520485px;}
.x10_c01052{left:408.520185px;}
.x3d_c01052{left:416.880735px;}
.x47_c01052{left:429.245835px;}
.x62_c01052{left:439.581435px;}
.x2b_c01052{left:440.596185px;}
.x1f_c01052{left:441.650535px;}
.x67_c01052{left:449.045835px;}
.x58_c01052{left:450.991185px;}
.x16_c01052{left:453.327585px;}
.x3e_c01052{left:459.034935px;}
.x25_c01052{left:462.732585px;}
.x7_c01052{left:464.128485px;}
.x6d_c01052{left:471.107985px;}
.x39_c01052{left:472.533585px;}
.x59_c01052{left:485.076885px;}
.x32_c01052{left:496.169835px;}
.x63_c01052{left:504.609585px;}
.x17_c01052{left:516.053985px;}
.x2c_c01052{left:518.123085px;}
.x5a_c01052{left:528.107235px;}
.x11_c01052{left:539.180385px;}
.x26_c01052{left:540.803985px;}
.x33_c01052{left:551.812785px;}
.x27_c01052{left:561.415785px;}
.x3f_c01052{left:571.350435px;}
.x20_c01052{left:573.959085px;}
.x3a_c01052{left:582.398835px;}
.x64_c01052{left:583.487835px;}
.x21_c01052{left:594.976785px;}
.x68_c01052{left:604.916385px;}
.x18_c01052{left:606.931035px;}
.x6e_c01052{left:615.296535px;}
.x34_c01052{left:617.657685px;}
.x40_c01052{left:619.226835px;}
.x2d_c01052{left:627.478485px;}
.x41_c01052{left:628.681335px;}
.x12_c01052{left:629.874285px;}
.x48_c01052{left:638.942685px;}
.x22_c01052{left:640.204935px;}
.x19_c01052{left:649.664385px;}
.x28_c01052{left:651.233535px;}
.x42_c01052{left:658.346685px;}
.x13_c01052{left:661.930485px;}
.x8_c01052{left:671.177085px;}
.x4b_c01052{left:673.196685px;}
.x57_c01052{left:682.963035px;}
.x5b_c01052{left:686.908185px;}
.x43_c01052{left:694.407435px;}
.x2e_c01052{left:696.441885px;}
.x9_c01052{left:698.728785px;}
.x6f_c01052{left:703.277835px;}
.x53_c01052{left:704.693535px;}
.xa_c01052{left:707.886285px;}
.x4e_c01052{left:715.712235px;}
@media print{
.v0_c01052{vertical-align:0.000000pt;}
.lsa_c01052{letter-spacing:-2.500960pt;}
.lse_c01052{letter-spacing:-2.353126pt;}
.lsc_c01052{letter-spacing:-2.322326pt;}
.lsf_c01052{letter-spacing:-1.559786pt;}
.ls12_c01052{letter-spacing:-1.203456pt;}
.ls3_c01052{letter-spacing:0.000000pt;}
.ls7_c01052{letter-spacing:0.537857pt;}
.ls6_c01052{letter-spacing:0.961420pt;}
.ls11_c01052{letter-spacing:1.069378pt;}
.ls14_c01052{letter-spacing:1.384983pt;}
.ls10_c01052{letter-spacing:1.506701pt;}
.ls9_c01052{letter-spacing:1.795099pt;}
.lsd_c01052{letter-spacing:2.226400pt;}
.ls0_c01052{letter-spacing:2.339680pt;}
.ls2_c01052{letter-spacing:3.038816pt;}
.ls4_c01052{letter-spacing:3.273609pt;}
.ls1_c01052{letter-spacing:3.361609pt;}
.ls13_c01052{letter-spacing:51.955376pt;}
.ls5_c01052{letter-spacing:53.222576pt;}
.ls8_c01052{letter-spacing:54.489776pt;}
.lsb_c01052{letter-spacing:58.291376pt;}
.ws0_c01052{word-spacing:0.000000pt;}
._0_c01052{margin-left:-25.420032pt;}
._3_c01052{margin-left:-15.108241pt;}
._2_c01052{width:12.343601pt;}
._5_c01052{width:20.186325pt;}
._4_c01052{width:29.052320pt;}
._6_c01052{width:37.134150pt;}
._1_c01052{width:45.853218pt;}
.fs13_c01052{font-size:24.640000pt;}
.fs3_c01052{font-size:27.280000pt;}
.fs2_c01052{font-size:34.848000pt;}
.fsd_c01052{font-size:44.528000pt;}
.fs11_c01052{font-size:50.688000pt;}
.fs10_c01052{font-size:51.955376pt;}
.fs7_c01052{font-size:53.222576pt;}
.fs8_c01052{font-size:54.489776pt;}
.fs4_c01052{font-size:57.728000pt;}
.fsa_c01052{font-size:58.291376pt;}
.fse_c01052{font-size:58.960000pt;}
.fs6_c01052{font-size:65.472176pt;}
.fsb_c01052{font-size:66.352176pt;}
.fs0_c01052{font-size:67.232176pt;}
.fs9_c01052{font-size:71.456000pt;}
.fs12_c01052{font-size:74.272176pt;}
.fsf_c01052{font-size:76.384176pt;}
.fs1_c01052{font-size:78.320000pt;}
.fsc_c01052{font-size:81.664176pt;}
.fs5_c01052{font-size:107.008000pt;}
.y0_c01052{bottom:0.000000pt;}
.y1_c01052{bottom:68.000000pt;}
.y1e_c01052{bottom:105.416120pt;}
.y1d_c01052{bottom:138.042120pt;}
.y1c_c01052{bottom:167.508920pt;}
.y1b_c01052{bottom:196.654520pt;}
.y1a_c01052{bottom:225.478920pt;}
.y18_c01052{bottom:254.312120pt;}
.y19_c01052{bottom:255.579320pt;}
.y17_c01052{bottom:310.385720pt;}
.y16_c01052{bottom:339.214520pt;}
.y15_c01052{bottom:359.485320pt;}
.y14_c01052{bottom:367.726520pt;}
.y13_c01052{bottom:396.238520pt;}
.y12_c01052{bottom:424.746120pt;}
.y11_c01052{bottom:452.945720pt;}
.y10_c01052{bottom:481.457720pt;}
.yf_c01052{bottom:510.282120pt;}
.ye_c01052{bottom:537.526920pt;}
.yd_c01052{bottom:566.989320pt;}
.yc_c01052{bottom:595.188920pt;}
.yb_c01052{bottom:622.429320pt;}
.ya_c01052{bottom:650.628920pt;}
.y9_c01052{bottom:678.824120pt;}
.y8_c01052{bottom:707.652920pt;}
.y7_c01052{bottom:736.481720pt;}
.y4_c01052{bottom:806.177720pt;}
.y6_c01052{bottom:809.974920pt;}
.y5_c01052{bottom:819.483320pt;}
.y2_c01052{bottom:822.017720pt;}
.y3_c01052{bottom:939.546120pt;}
.h15_c01052{height:25.698750pt;}
.h5_c01052{height:26.773828pt;}
.h4_c01052{height:34.201406pt;}
.h12_c01052{height:34.602280pt;}
.h8_c01052{height:35.446236pt;}
.h9_c01052{height:36.290191pt;}
.hb_c01052{height:38.822056pt;}
.he_c01052{height:46.441313pt;}
.h13_c01052{height:52.866000pt;}
.hf_c01052{height:56.656875pt;}
.h11_c01052{height:61.493438pt;}
.h7_c01052{height:65.983677pt;}
.h2_c01052{height:65.984704pt;}
.hc_c01052{height:69.203246pt;}
.ha_c01052{height:70.130156pt;}
.h14_c01052{height:72.894079pt;}
.h10_c01052{height:74.966891pt;}
.h3_c01052{height:76.866797pt;}
.hd_c01052{height:85.173184pt;}
.h6_c01052{height:111.606000pt;}
.h1_c01052{height:986.666667pt;}
.h0_c01052{height:1122.666667pt;}
.w1_c01052{width:689.333333pt;}
.w0_c01052{width:793.333333pt;}
.x0_c01052{left:0.000000pt;}
.x1_c01052{left:52.000000pt;}
.x2f_c01052{left:65.403053pt;}
.x1a_c01052{left:66.657053pt;}
.x2_c01052{left:67.831853pt;}
.x23_c01052{left:95.433053pt;}
.x35_c01052{left:105.280253pt;}
.x1b_c01052{left:106.780653pt;}
.x5e_c01052{left:114.256253pt;}
.xb_c01052{left:115.228653pt;}
.x30_c01052{left:124.138653pt;}
.x3_c01052{left:126.457453pt;}
.x4c_c01052{left:133.642653pt;}
.x44_c01052{left:134.707453pt;}
.x4f_c01052{left:143.146653pt;}
.x49_c01052{left:144.158653pt;}
.x29_c01052{left:154.375453pt;}
.xc_c01052{left:164.301853pt;}
.x14_c01052{left:165.784653pt;}
.x4d_c01052{left:172.917053pt;}
.x1c_c01052{left:175.007053pt;}
.x69_c01052{left:182.808253pt;}
.x3b_c01052{left:184.629853pt;}
.x5c_c01052{left:192.237453pt;}
.xd_c01052{left:194.389053pt;}
.x36_c01052{left:203.127453pt;}
.x31_c01052{left:212.842653pt;}
.x15_c01052{left:223.644653pt;}
.x4_c01052{left:225.343053pt;}
.x54_c01052{left:232.105853pt;}
.x37_c01052{left:233.254253pt;}
.x3c_c01052{left:234.173853pt;}
.x5f_c01052{left:242.423853pt;}
.x50_c01052{left:244.236653pt;}
.x5d_c01052{left:252.090653pt;}
.x5_c01052{left:253.850653pt;}
.x6b_c01052{left:262.122653pt;}
.xe_c01052{left:263.200653pt;}
.x60_c01052{left:271.767453pt;}
.x65_c01052{left:272.717853pt;}
.x2a_c01052{left:273.765053pt;}
.x45_c01052{left:282.221853pt;}
.x6c_c01052{left:290.489453pt;}
.x55_c01052{left:292.500253pt;}
.x6_c01052{left:293.450653pt;}
.x51_c01052{left:300.279453pt;}
.x46_c01052{left:311.367453pt;}
.x24_c01052{left:313.127453pt;}
.x61_c01052{left:320.343453pt;}
.x1d_c01052{left:323.265053pt;}
.x56_c01052{left:331.563453pt;}
.x66_c01052{left:332.645853pt;}
.x4a_c01052{left:341.146653pt;}
.x38_c01052{left:342.154253pt;}
.xf_c01052{left:343.540253pt;}
.x6a_c01052{left:349.704653pt;}
.x1e_c01052{left:352.375453pt;}
.x52_c01052{left:360.462653pt;}
.x10_c01052{left:363.129053pt;}
.x3d_c01052{left:370.560653pt;}
.x47_c01052{left:381.551853pt;}
.x62_c01052{left:390.739053pt;}
.x2b_c01052{left:391.641053pt;}
.x1f_c01052{left:392.578253pt;}
.x67_c01052{left:399.151853pt;}
.x58_c01052{left:400.881053pt;}
.x16_c01052{left:402.957853pt;}
.x3e_c01052{left:408.031053pt;}
.x25_c01052{left:411.317853pt;}
.x7_c01052{left:412.558653pt;}
.x6d_c01052{left:418.762653pt;}
.x39_c01052{left:420.029853pt;}
.x59_c01052{left:431.179453pt;}
.x32_c01052{left:441.039853pt;}
.x63_c01052{left:448.541853pt;}
.x17_c01052{left:458.714653pt;}
.x2c_c01052{left:460.553853pt;}
.x5a_c01052{left:469.428653pt;}
.x11_c01052{left:479.271453pt;}
.x26_c01052{left:480.714653pt;}
.x33_c01052{left:490.500253pt;}
.x27_c01052{left:499.036253pt;}
.x3f_c01052{left:507.867053pt;}
.x20_c01052{left:510.185853pt;}
.x3a_c01052{left:517.687853pt;}
.x64_c01052{left:518.655853pt;}
.x21_c01052{left:528.868253pt;}
.x68_c01052{left:537.703453pt;}
.x18_c01052{left:539.494253pt;}
.x6e_c01052{left:546.930253pt;}
.x34_c01052{left:549.029053pt;}
.x40_c01052{left:550.423853pt;}
.x2d_c01052{left:557.758653pt;}
.x41_c01052{left:558.827853pt;}
.x12_c01052{left:559.888253pt;}
.x48_c01052{left:567.949053pt;}
.x22_c01052{left:569.071053pt;}
.x19_c01052{left:577.479453pt;}
.x28_c01052{left:578.874253pt;}
.x42_c01052{left:585.197053pt;}
.x13_c01052{left:588.382653pt;}
.x8_c01052{left:596.601853pt;}
.x4b_c01052{left:598.397053pt;}
.x57_c01052{left:607.078253pt;}
.x5b_c01052{left:610.585053pt;}
.x43_c01052{left:617.251053pt;}
.x2e_c01052{left:619.059453pt;}
.x9_c01052{left:621.092253pt;}
.x6f_c01052{left:625.135853pt;}
.x53_c01052{left:626.394253pt;}
.xa_c01052{left:629.232253pt;}
.x4e_c01052{left:636.188653pt;}
}





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

.ir_c01053:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01053{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01053;src:url('chunks/assets/font_98657ca98276d0d9d75b49c7.woff2')format("woff");}.ff1_c01053{font-family:ff1_c01053;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01053;src:url('chunks/assets/font_45529a4759903dd802af9dcd.woff2')format("woff");}.ff2_c01053{font-family:ff2_c01053;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01053;src:url('chunks/assets/font_86ed661bd6324d57849ae2cd.woff2')format("woff");}.ff3_c01053{font-family:ff3_c01053;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01053;src:url('chunks/assets/font_b2bc216acdd7784555a0a3ca.woff2')format("woff");}.ff4_c01053{font-family:ff4_c01053;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01053;src:url('chunks/assets/font_4f39dcc4c25b7b220023f36d.woff2')format("woff");}.ff5_c01053{font-family:ff5_c01053;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m65_c01053{transform:matrix(0.080168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080168,0.000000,0.000000,0.250000,0,0);}
.m66_c01053{transform:matrix(0.127660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127660,0.000000,0.000000,0.250000,0,0);}
.m42_c01053{transform:matrix(0.137053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137053,0.000000,0.000000,0.250000,0,0);}
.me_c01053{transform:matrix(0.148215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148215,0.000000,0.000000,0.250000,0,0);}
.m63_c01053{transform:matrix(0.148937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148937,0.000000,0.000000,0.250000,0,0);}
.m44_c01053{transform:matrix(0.164408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164408,0.000000,0.000000,0.250000,0,0);}
.m5f_c01053{transform:matrix(0.177326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177326,0.000000,0.000000,0.250000,0,0);}
.m10_c01053{transform:matrix(0.177661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177661,0.000000,0.000000,0.250000,0,0);}
.m2f_c01053{transform:matrix(0.183036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183036,0.000000,0.000000,0.250000,0,0);}
.md_c01053{transform:matrix(0.193700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193700,0.000000,0.000000,0.250000,0,0);}
.m6b_c01053{transform:matrix(0.207695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207695,0.000000,0.000000,0.250000,0,0);}
.m78_c01053{transform:matrix(0.210416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210416,0.000000,0.000000,0.250000,0,0);}
.m61_c01053{transform:matrix(0.224852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224852,0.000000,0.000000,0.250000,0,0);}
.m46_c01053{transform:matrix(0.227167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227167,0.000000,0.000000,0.250000,0,0);}
.m8e_c01053{transform:matrix(0.227728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227728,0.000000,0.000000,0.250000,0,0);}
.m0_c01053{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m5c_c01053{transform:matrix(0.250666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250666,0.000000,0.000000,0.250000,0,0);}
.m4a_c01053{transform:matrix(0.251299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251299,0.000000,0.000000,0.250000,0,0);}
.m28_c01053{transform:matrix(0.252492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252492,0.000000,0.000000,0.250000,0,0);}
.m3_c01053{transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);}
.m3b_c01053{transform:matrix(0.255030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255030,0.000000,0.000000,0.250000,0,0);}
.m8b_c01053{transform:matrix(0.256735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256735,0.000000,0.000000,0.250000,0,0);}
.m2b_c01053{transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);}
.m64_c01053{transform:matrix(0.256963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256963,0.000000,0.000000,0.250000,0,0);}
.m9a_c01053{transform:matrix(0.257934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257934,0.000000,0.000000,0.250000,0,0);}
.mb3_c01053{transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);}
.m1b_c01053{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m74_c01053{transform:matrix(0.258914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258914,0.000000,0.000000,0.250000,0,0);}
.m21_c01053{transform:matrix(0.260229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260229,0.000000,0.000000,0.250000,0,0);}
.m89_c01053{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m56_c01053{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.m31_c01053{transform:matrix(0.263037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263037,0.000000,0.000000,0.250000,0,0);}
.m30_c01053{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.mc_c01053{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.ma7_c01053{transform:matrix(0.264235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264235,0.000000,0.000000,0.250000,0,0);}
.m9e_c01053{transform:matrix(0.264740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264740,0.000000,0.000000,0.250000,0,0);}
.m24_c01053{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.mf_c01053{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.m93_c01053{transform:matrix(0.269245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269245,0.000000,0.000000,0.250000,0,0);}
.m79_c01053{transform:matrix(0.269857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269857,0.000000,0.000000,0.250000,0,0);}
.m6f_c01053{transform:matrix(0.270107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270107,0.000000,0.000000,0.250000,0,0);}
.m16_c01053{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m70_c01053{transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271603,0.000000,0.000000,0.250000,0,0);}
.m85_c01053{transform:matrix(0.272016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272016,0.000000,0.000000,0.250000,0,0);}
.m8d_c01053{transform:matrix(0.275415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275415,0.000000,0.000000,0.250000,0,0);}
.ma6_c01053{transform:matrix(0.275861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275861,0.000000,0.000000,0.250000,0,0);}
.m3c_c01053{transform:matrix(0.276123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276123,0.000000,0.000000,0.250000,0,0);}
.m62_c01053{transform:matrix(0.277339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277339,0.000000,0.000000,0.250000,0,0);}
.m60_c01053{transform:matrix(0.277421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277421,0.000000,0.000000,0.250000,0,0);}
.ma2_c01053{transform:matrix(0.278076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278076,0.000000,0.000000,0.250000,0,0);}
.m14_c01053{transform:matrix(0.278564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278564,0.000000,0.000000,0.250000,0,0);}
.m80_c01053{transform:matrix(0.278967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278967,0.000000,0.000000,0.250000,0,0);}
.m4b_c01053{transform:matrix(0.279581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279581,0.000000,0.000000,0.250000,0,0);}
.mad_c01053{transform:matrix(0.280501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280501,0.000000,0.000000,0.250000,0,0);}
.m58_c01053{transform:matrix(0.280780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280780,0.000000,0.000000,0.250000,0,0);}
.m41_c01053{transform:matrix(0.281060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281060,0.000000,0.000000,0.250000,0,0);}
.m55_c01053{transform:matrix(0.281485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281485,0.000000,0.000000,0.250000,0,0);}
.m2_c01053{transform:matrix(0.281847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281847,0.000000,0.000000,0.250000,0,0);}
.m82_c01053{transform:matrix(0.282254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282254,0.000000,0.000000,0.250000,0,0);}
.m6d_c01053{transform:matrix(0.282450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282450,0.000000,0.000000,0.250000,0,0);}
.ma3_c01053{transform:matrix(0.283506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283506,0.000000,0.000000,0.250000,0,0);}
.m18_c01053{transform:matrix(0.284248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284248,0.000000,0.000000,0.250000,0,0);}
.m98_c01053{transform:matrix(0.284537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284537,0.000000,0.000000,0.250000,0,0);}
.m90_c01053{transform:matrix(0.284585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284585,0.000000,0.000000,0.250000,0,0);}
.m77_c01053{transform:matrix(0.285655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285655,0.000000,0.000000,0.250000,0,0);}
.m94_c01053{transform:matrix(0.286496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286496,0.000000,0.000000,0.250000,0,0);}
.m48_c01053{transform:matrix(0.286698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286698,0.000000,0.000000,0.250000,0,0);}
.m76_c01053{transform:matrix(0.286858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286858,0.000000,0.000000,0.250000,0,0);}
.m23_c01053{transform:matrix(0.287235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287235,0.000000,0.000000,0.250000,0,0);}
.m9f_c01053{transform:matrix(0.287284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287284,0.000000,0.000000,0.250000,0,0);}
.m4_c01053{transform:matrix(0.287354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287354,0.000000,0.000000,0.250000,0,0);}
.m92_c01053{transform:matrix(0.287484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287484,0.000000,0.000000,0.250000,0,0);}
.m7c_c01053{transform:matrix(0.287521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287521,0.000000,0.000000,0.250000,0,0);}
.m27_c01053{transform:matrix(0.288211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288211,0.000000,0.000000,0.250000,0,0);}
.m2d_c01053{transform:matrix(0.288550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288550,0.000000,0.000000,0.250000,0,0);}
.m6e_c01053{transform:matrix(0.288696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288696,0.000000,0.000000,0.250000,0,0);}
.m36_c01053{transform:matrix(0.288865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288865,0.000000,0.000000,0.250000,0,0);}
.m5b_c01053{transform:matrix(0.288974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288974,0.000000,0.000000,0.250000,0,0);}
.m33_c01053{transform:matrix(0.289075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289075,0.000000,0.000000,0.250000,0,0);}
.m1e_c01053{transform:matrix(0.289164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289164,0.000000,0.000000,0.250000,0,0);}
.m11_c01053{transform:matrix(0.289388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289388,0.000000,0.000000,0.250000,0,0);}
.m54_c01053{transform:matrix(0.289956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289956,0.000000,0.000000,0.250000,0,0);}
.m40_c01053{transform:matrix(0.290001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290001,0.000000,0.000000,0.250000,0,0);}
.m5_c01053{transform:matrix(0.290591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290591,0.000000,0.000000,0.250000,0,0);}
.m81_c01053{transform:matrix(0.291071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291071,0.000000,0.000000,0.250000,0,0);}
.m45_c01053{transform:matrix(0.291443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291443,0.000000,0.000000,0.250000,0,0);}
.m4e_c01053{transform:matrix(0.291702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291702,0.000000,0.000000,0.250000,0,0);}
.ma9_c01053{transform:matrix(0.291752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291752,0.000000,0.000000,0.250000,0,0);}
.m69_c01053{transform:matrix(0.293194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293194,0.000000,0.000000,0.250000,0,0);}
.m5a_c01053{transform:matrix(0.293505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293505,0.000000,0.000000,0.250000,0,0);}
.m1_c01053{transform:matrix(0.294374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294374,0.000000,0.000000,0.250000,0,0);}
.m1f_c01053{transform:matrix(0.294443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294443,0.000000,0.000000,0.250000,0,0);}
.mac_c01053{transform:matrix(0.294593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294593,0.000000,0.000000,0.250000,0,0);}
.ma4_c01053{transform:matrix(0.294717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294717,0.000000,0.000000,0.250000,0,0);}
.m59_c01053{transform:matrix(0.295251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295251,0.000000,0.000000,0.250000,0,0);}
.m87_c01053{transform:matrix(0.295330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295330,0.000000,0.000000,0.250000,0,0);}
.m83_c01053{transform:matrix(0.295628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295628,0.000000,0.000000,0.250000,0,0);}
.m97_c01053{transform:matrix(0.295932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295932,0.000000,0.000000,0.250000,0,0);}
.m3e_c01053{transform:matrix(0.295983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295983,0.000000,0.000000,0.250000,0,0);}
.m49_c01053{transform:matrix(0.296051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296051,0.000000,0.000000,0.250000,0,0);}
.m4f_c01053{transform:matrix(0.298376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298376,0.000000,0.000000,0.250000,0,0);}
.ma1_c01053{transform:matrix(0.298556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298556,0.000000,0.000000,0.250000,0,0);}
.m95_c01053{transform:matrix(0.299102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299102,0.000000,0.000000,0.250000,0,0);}
.m8a_c01053{transform:matrix(0.299616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299616,0.000000,0.000000,0.250000,0,0);}
.m9c_c01053{transform:matrix(0.300011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300011,0.000000,0.000000,0.250000,0,0);}
.m52_c01053{transform:matrix(0.300579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300579,0.000000,0.000000,0.250000,0,0);}
.mb4_c01053{transform:matrix(0.302974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302974,0.000000,0.000000,0.250000,0,0);}
.m22_c01053{transform:matrix(0.304068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304068,0.000000,0.000000,0.250000,0,0);}
.maa_c01053{transform:matrix(0.304086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304086,0.000000,0.000000,0.250000,0,0);}
.mb2_c01053{transform:matrix(0.304376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304376,0.000000,0.000000,0.250000,0,0);}
.m15_c01053{transform:matrix(0.304667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304667,0.000000,0.000000,0.250000,0,0);}
.m51_c01053{transform:matrix(0.304835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304835,0.000000,0.000000,0.250000,0,0);}
.m6c_c01053{transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);}
.m9d_c01053{transform:matrix(0.305914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305914,0.000000,0.000000,0.250000,0,0);}
.m35_c01053{transform:matrix(0.306567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306567,0.000000,0.000000,0.250000,0,0);}
.m34_c01053{transform:matrix(0.306720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306720,0.000000,0.000000,0.250000,0,0);}
.m5d_c01053{transform:matrix(0.306803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306803,0.000000,0.000000,0.250000,0,0);}
.m53_c01053{transform:matrix(0.306985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306985,0.000000,0.000000,0.250000,0,0);}
.mb0_c01053{transform:matrix(0.307034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307034,0.000000,0.000000,0.250000,0,0);}
.m73_c01053{transform:matrix(0.307539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307539,0.000000,0.000000,0.250000,0,0);}
.m88_c01053{transform:matrix(0.308565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308565,0.000000,0.000000,0.250000,0,0);}
.m67_c01053{transform:matrix(0.308703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308703,0.000000,0.000000,0.250000,0,0);}
.maf_c01053{transform:matrix(0.310260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310260,0.000000,0.000000,0.250000,0,0);}
.m2a_c01053{transform:matrix(0.310270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310270,0.000000,0.000000,0.250000,0,0);}
.m39_c01053{transform:matrix(0.311211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311211,0.000000,0.000000,0.250000,0,0);}
.m91_c01053{transform:matrix(0.311955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311955,0.000000,0.000000,0.250000,0,0);}
.m6a_c01053{transform:matrix(0.312558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312558,0.000000,0.000000,0.250000,0,0);}
.m13_c01053{transform:matrix(0.313646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313646,0.000000,0.000000,0.250000,0,0);}
.m47_c01053{transform:matrix(0.314146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314146,0.000000,0.000000,0.250000,0,0);}
.m12_c01053{transform:matrix(0.315388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315388,0.000000,0.000000,0.250000,0,0);}
.mb6_c01053{transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315513,0.000000,0.000000,0.250000,0,0);}
.m5e_c01053{transform:matrix(0.316105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316105,0.000000,0.000000,0.250000,0,0);}
.m8c_c01053{transform:matrix(0.316989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316989,0.000000,0.000000,0.250000,0,0);}
.m7b_c01053{transform:matrix(0.317253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317253,0.000000,0.000000,0.250000,0,0);}
.m38_c01053{transform:matrix(0.317717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317717,0.000000,0.000000,0.250000,0,0);}
.m3d_c01053{transform:matrix(0.318494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318494,0.000000,0.000000,0.250000,0,0);}
.m72_c01053{transform:matrix(0.318683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318683,0.000000,0.000000,0.250000,0,0);}
.m7a_c01053{transform:matrix(0.319610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319610,0.000000,0.000000,0.250000,0,0);}
.m3f_c01053{transform:matrix(0.320882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320882,0.000000,0.000000,0.250000,0,0);}
.m8f_c01053{transform:matrix(0.321447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321447,0.000000,0.000000,0.250000,0,0);}
.m96_c01053{transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);}
.ma_c01053{transform:matrix(0.321558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321558,0.000000,0.000000,0.250000,0,0);}
.mb7_c01053{transform:matrix(0.322003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322003,0.000000,0.000000,0.250000,0,0);}
.m9b_c01053{transform:matrix(0.322530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322530,0.000000,0.000000,0.250000,0,0);}
.m1a_c01053{transform:matrix(0.322599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322599,0.000000,0.000000,0.250000,0,0);}
.m20_c01053{transform:matrix(0.323147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323147,0.000000,0.000000,0.250000,0,0);}
.mb8_c01053{transform:matrix(0.323333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323333,0.000000,0.000000,0.250000,0,0);}
.mb1_c01053{transform:matrix(0.323414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323414,0.000000,0.000000,0.250000,0,0);}
.m37_c01053{transform:matrix(0.323499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323499,0.000000,0.000000,0.250000,0,0);}
.mb5_c01053{transform:matrix(0.323513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323513,0.000000,0.000000,0.250000,0,0);}
.m8_c01053{transform:matrix(0.325190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325190,0.000000,0.000000,0.250000,0,0);}
.m1c_c01053{transform:matrix(0.325817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325817,0.000000,0.000000,0.250000,0,0);}
.m1d_c01053{transform:matrix(0.326729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326729,0.000000,0.000000,0.250000,0,0);}
.mab_c01053{transform:matrix(0.326819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326819,0.000000,0.000000,0.250000,0,0);}
.m57_c01053{transform:matrix(0.326944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326944,0.000000,0.000000,0.250000,0,0);}
.m71_c01053{transform:matrix(0.327112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327112,0.000000,0.000000,0.250000,0,0);}
.m50_c01053{transform:matrix(0.329569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329569,0.000000,0.000000,0.250000,0,0);}
.m17_c01053{transform:matrix(0.330710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330710,0.000000,0.000000,0.250000,0,0);}
.m32_c01053{transform:matrix(0.331631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331631,0.000000,0.000000,0.250000,0,0);}
.m7f_c01053{transform:matrix(0.332811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332811,0.000000,0.000000,0.250000,0,0);}
.m99_c01053{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m7_c01053{transform:matrix(0.335869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335869,0.000000,0.000000,0.250000,0,0);}
.ma0_c01053{transform:matrix(0.337244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337244,0.000000,0.000000,0.250000,0,0);}
.m29_c01053{transform:matrix(0.337698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337698,0.000000,0.000000,0.250000,0,0);}
.m4c_c01053{transform:matrix(0.337891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337891,0.000000,0.000000,0.250000,0,0);}
.m3a_c01053{transform:matrix(0.342694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342694,0.000000,0.000000,0.250000,0,0);}
.mb_c01053{transform:matrix(0.342866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342866,0.000000,0.000000,0.250000,0,0);}
.m84_c01053{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.mae_c01053{transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);}
.m7d_c01053{transform:matrix(0.346277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346277,0.000000,0.000000,0.250000,0,0);}
.m2c_c01053{transform:matrix(0.346501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346501,0.000000,0.000000,0.250000,0,0);}
.m2e_c01053{transform:matrix(0.347629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347629,0.000000,0.000000,0.250000,0,0);}
.m26_c01053{transform:matrix(0.352357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352357,0.000000,0.000000,0.250000,0,0);}
.ma5_c01053{transform:matrix(0.355663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355663,0.000000,0.000000,0.250000,0,0);}
.m86_c01053{transform:matrix(0.360828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360828,0.000000,0.000000,0.250000,0,0);}
.m25_c01053{transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361347,0.000000,0.000000,0.250000,0,0);}
.m19_c01053{transform:matrix(0.362437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362437,0.000000,0.000000,0.250000,0,0);}
.m75_c01053{transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);}
.m68_c01053{transform:matrix(0.373039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373039,0.000000,0.000000,0.250000,0,0);}
.m7e_c01053{transform:matrix(0.373079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373079,0.000000,0.000000,0.250000,0,0);}
.m4d_c01053{transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);}
.m6_c01053{transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);}
.ma8_c01053{transform:matrix(0.391460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391460,0.000000,0.000000,0.250000,0,0);}
.m43_c01053{transform:matrix(0.480231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480231,0.000000,0.000000,0.250000,0,0);}
.m9_c01053{transform:matrix(0.813153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.813153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.813153,0.000000,0.000000,0.250000,0,0);}
.v0_c01053{vertical-align:0.000000px;}
.v1_c01053{vertical-align:5.702400px;}
.lsa_c01053{letter-spacing:-3.063067px;}
.ls1a_c01053{letter-spacing:-2.966040px;}
.ls13_c01053{letter-spacing:-2.744280px;}
.ls8_c01053{letter-spacing:-2.439367px;}
.ls5_c01053{letter-spacing:-2.399285px;}
.ls12_c01053{letter-spacing:-1.524600px;}
.lsd_c01053{letter-spacing:-0.872865px;}
.ls14_c01053{letter-spacing:-0.470448px;}
.ls16_c01053{letter-spacing:-0.256609px;}
.ls2_c01053{letter-spacing:0.000000px;}
.ls6_c01053{letter-spacing:0.287110px;}
.ls11_c01053{letter-spacing:0.891000px;}
.ls1d_c01053{letter-spacing:2.132698px;}
.ls23_c01053{letter-spacing:2.179742px;}
.ls1f_c01053{letter-spacing:2.673713px;}
.lsb_c01053{letter-spacing:3.227400px;}
.ls21_c01053{letter-spacing:3.306610px;}
.ls15_c01053{letter-spacing:3.465000px;}
.ls1e_c01053{letter-spacing:3.524400px;}
.ls3_c01053{letter-spacing:3.539290px;}
.ls0_c01053{letter-spacing:3.716539px;}
.ls1b_c01053{letter-spacing:3.742200px;}
.ls7_c01053{letter-spacing:3.747902px;}
.lsf_c01053{letter-spacing:3.781810px;}
.ls22_c01053{letter-spacing:3.801610px;}
.ls4_c01053{letter-spacing:3.920400px;}
.lsc_c01053{letter-spacing:3.940200px;}
.ls19_c01053{letter-spacing:3.960000px;}
.ls20_c01053{letter-spacing:3.969900px;}
.lse_c01053{letter-spacing:4.078810px;}
.ls1_c01053{letter-spacing:21.443400px;}
.ls1c_c01053{letter-spacing:51.321798px;}
.ls10_c01053{letter-spacing:57.024198px;}
.ls9_c01053{letter-spacing:59.875398px;}
.ls17_c01053{letter-spacing:61.300998px;}
.ls18_c01053{letter-spacing:67.003200px;}
.sc__c01053{text-shadow:none;}
.sc0_c01053{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01053{-webkit-text-stroke:0px transparent;}
.sc0_c01053{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01053{word-spacing:-21.127441px;}
.ws2_c01053{word-spacing:-19.602000px;}
.ws0_c01053{word-spacing:-19.521184px;}
.ws3_c01053{word-spacing:0.000000px;}
._5_c01053{width:1.960200px;}
._2_c01053{width:6.672089px;}
._4_c01053{width:10.666175px;}
._3_c01053{width:11.859749px;}
._1_c01053{width:23.952319px;}
._0_c01053{width:30.888000px;}
.fc0_c01053{color:transparent;}
.fs4_c01053{font-size:5.742198px;}
.fs10_c01053{font-size:14.454198px;}
.fse_c01053{font-size:17.820000px;}
.fs0_c01053{font-size:22.176000px;}
.fs14_c01053{font-size:27.720000px;}
.fs2_c01053{font-size:33.660000px;}
.fsf_c01053{font-size:43.560000px;}
.fs1a_c01053{font-size:51.321798px;}
.fsd_c01053{font-size:57.024198px;}
.fs13_c01053{font-size:59.400000px;}
.fs6_c01053{font-size:59.875398px;}
.fs15_c01053{font-size:61.300998px;}
.fs8_c01053{font-size:64.548000px;}
.fs1c_c01053{font-size:66.132198px;}
.fs16_c01053{font-size:67.003200px;}
.fs11_c01053{font-size:69.300000px;}
.fs5_c01053{font-size:69.696198px;}
.fs1b_c01053{font-size:70.488000px;}
.fs19_c01053{font-size:74.844000px;}
.fsc_c01053{font-size:75.636198px;}
.fs1d_c01053{font-size:76.032198px;}
.fs3_c01053{font-size:78.408000px;}
.fs9_c01053{font-size:78.804000px;}
.fs17_c01053{font-size:79.200000px;}
.fsa_c01053{font-size:79.398000px;}
.fsb_c01053{font-size:81.576198px;}
.fs18_c01053{font-size:84.744000px;}
.fs12_c01053{font-size:85.536198px;}
.fs7_c01053{font-size:87.516198px;}
.fs1_c01053{font-size:88.704000px;}
.y0_c01053{bottom:0.000000px;}
.y1_c01053{bottom:76.500000px;}
.y24_c01053{bottom:123.582735px;}
.y23_c01053{bottom:154.940985px;}
.y22_c01053{bottom:187.378335px;}
.y21_c01053{bottom:219.805785px;}
.y20_c01053{bottom:252.594585px;}
.y1f_c01053{bottom:265.786335px;}
.y1e_c01053{bottom:284.319135px;}
.y2_c01053{bottom:293.941935px;}
.y1d_c01053{bottom:316.751535px;}
.y1c_c01053{bottom:349.178985px;}
.y1b_c01053{bottom:380.903535px;}
.y1a_c01053{bottom:413.687385px;}
.y19_c01053{bottom:446.124735px;}
.y18_c01053{bottom:478.195785px;}
.y17_c01053{bottom:509.207535px;}
.y16_c01053{bottom:542.347785px;}
.y15_c01053{bottom:563.375385px;}
.y14_c01053{bottom:566.587935px;}
.y13_c01053{bottom:574.428735px;}
.y12_c01053{bottom:638.224335px;}
.y11_c01053{bottom:670.295385px;}
.y10_c01053{bottom:698.094585px;}
.ye_c01053{bottom:700.594335px;}
.yf_c01053{bottom:702.019935px;}
.yd_c01053{bottom:734.090985px;}
.yc_c01053{bottom:765.815535px;}
.yb_c01053{bottom:797.886585px;}
.ya_c01053{bottom:829.967535px;}
.y9_c01053{bottom:861.682185px;}
.y8_c01053{bottom:894.114585px;}
.y7_c01053{bottom:921.918735px;}
.y6_c01053{bottom:925.834185px;}
.y5_c01053{bottom:1003.177935px;}
.y4_c01053{bottom:1054.850985px;}
.y3_c01053{bottom:1100.111805px;}
.h6_c01053{height:5.635653px;}
.h10_c01053{height:18.585703px;}
.h2_c01053{height:23.128875px;}
.h14_c01053{height:28.911094px;}
.h4_c01053{height:33.035449px;}
.h1a_c01053{height:34.180317px;}
.hf_c01053{height:37.978116px;}
.h8_c01053{height:39.877015px;}
.h15_c01053{height:40.826465px;}
.h11_c01053{height:42.751758px;}
.h16_c01053{height:44.624131px;}
.ha_c01053{height:67.321547px;}
.h7_c01053{height:68.403007px;}
.h1d_c01053{height:68.973816px;}
.h1b_c01053{height:69.180117px;}
.h12_c01053{height:72.277734px;}
.h1f_c01053{height:73.455293px;}
.he_c01053{height:74.232792px;}
.h1e_c01053{height:74.621444px;}
.h19_c01053{height:75.428719px;}
.h5_c01053{height:76.953164px;}
.hb_c01053{height:77.341816px;}
.h17_c01053{height:77.730469px;}
.hc_c01053{height:77.924795px;}
.h1c_c01053{height:78.059953px;}
.hd_c01053{height:80.062577px;}
.h18_c01053{height:83.171602px;}
.h13_c01053{height:83.949101px;}
.h9_c01053{height:85.892362px;}
.h3_c01053{height:87.058125px;}
.h1_c01053{height:1110.000000px;}
.h0_c01053{height:1263.000000px;}
.w1_c01053{width:775.500000px;}
.w0_c01053{width:892.500000px;}
.x0_c01053{left:0.000000px;}
.x2_c01053{left:49.085835px;}
.x1_c01053{left:58.500000px;}
.x3f_c01053{left:82.057785px;}
.x1e_c01053{left:83.339835px;}
.x6_c01053{left:84.562485px;}
.x51_c01053{left:104.793135px;}
.x28_c01053{left:115.574235px;}
.x11_c01053{left:117.182985px;}
.x10_c01053{left:124.325835px;}
.x33_c01053{left:126.627585px;}
.x39_c01053{left:128.038335px;}
.x42_c01053{left:136.388985px;}
.x19_c01053{left:138.913485px;}
.x46_c01053{left:147.853185px;}
.x5f_c01053{left:148.986735px;}
.x1f_c01053{left:150.189585px;}
.x7_c01053{left:159.955935px;}
.x34_c01053{left:170.910285px;}
.x62_c01053{left:180.983535px;}
.x20_c01053{left:182.047785px;}
.x12_c01053{left:183.854535px;}
.x54_c01053{left:191.675535px;}
.x29_c01053{left:193.789185px;}
.x3a_c01053{left:204.164385px;}
.x5b_c01053{left:215.687985px;}
.x1a_c01053{left:216.702735px;}
.x3b_c01053{left:226.261185px;}
.x2a_c01053{left:228.152085px;}
.x49_c01053{left:237.863985px;}
.x5_c01053{left:248.620335px;}
.x55_c01053{left:259.371735px;}
.x35_c01053{left:260.648835px;}
.x3c_c01053{left:271.306185px;}
.x8_c01053{left:272.434785px;}
.x36_c01053{left:281.894235px;}
.x40_c01053{left:283.037685px;}
.x37_c01053{left:285.344385px;}
.x66_c01053{left:291.833835px;}
.x13_c01053{left:293.813835px;}
.x38_c01053{left:300.961635px;}
.x9_c01053{left:304.822635px;}
.x63_c01053{left:314.772135px;}
.x3d_c01053{left:316.232385px;}
.x21_c01053{left:326.765985px;}
.x14_c01053{left:338.398485px;}
.x4a_c01053{left:346.858035px;}
.x2b_c01053{left:349.412235px;}
.x47_c01053{left:360.688335px;}
.x24_c01053{left:369.875535px;}
.x1b_c01053{left:371.860485px;}
.x2c_c01053{left:380.879385px;}
.x4e_c01053{left:382.201035px;}
.x41_c01053{left:393.180135px;}
.x48_c01053{left:403.387035px;}
.xa_c01053{left:405.367035px;}
.x4f_c01053{left:414.039435px;}
.x43_c01053{left:416.732235px;}
.x56_c01053{left:427.701435px;}
.x67_c01053{left:436.532235px;}
.x52_c01053{left:437.754885px;}
.x30_c01053{left:438.804285px;}
.x60_c01053{left:448.362735px;}
.x3e_c01053{left:449.431935px;}
.xb_c01053{left:450.501135px;}
.x5c_c01053{left:458.267685px;}
.x15_c01053{left:460.104135px;}
.x4b_c01053{left:468.652785px;}
.x2d_c01053{left:471.632685px;}
.x64_c01053{left:481.285185px;}
.x1c_c01053{left:482.676135px;}
.x25_c01053{left:491.368335px;}
.x3_c01053{left:493.515150px;}
.x31_c01053{left:503.342385px;}
.x65_c01053{left:513.999735px;}
.xc_c01053{left:515.078835px;}
.x50_c01053{left:526.681635px;}
.x2e_c01053{left:537.215235px;}
.x4c_c01053{left:546.912285px;}
.xd_c01053{left:548.253735px;}
.x16_c01053{left:559.678335px;}
.x26_c01053{left:570.736635px;}
.x4d_c01053{left:578.428935px;}
.x2f_c01053{left:581.062335px;}
.x22_c01053{left:582.116685px;}
.x32_c01053{left:592.462185px;}
.x17_c01053{left:602.975985px;}
.x44_c01053{left:604.159035px;}
.x23_c01053{left:614.158035px;}
.xe_c01053{left:615.291585px;}
.x68_c01053{left:623.805585px;}
.x18_c01053{left:626.641935px;}
.x59_c01053{left:635.309385px;}
.x5d_c01053{left:645.729135px;}
.xf_c01053{left:648.020985px;}
.x57_c01053{left:657.138885px;}
.x1d_c01053{left:659.623785px;}
.x69_c01053{left:668.692185px;}
.x4_c01053{left:680.443485px;}
.x5a_c01053{left:689.942535px;}
.x27_c01053{left:691.902735px;}
.x58_c01053{left:701.852235px;}
.x61_c01053{left:702.965985px;}
.x45_c01053{left:704.124285px;}
.x5e_c01053{left:707.544735px;}
.x6b_c01053{left:712.331385px;}
.x53_c01053{left:713.420385px;}
.x6a_c01053{left:735.893385px;}
@media print{
.v0_c01053{vertical-align:0.000000pt;}
.v1_c01053{vertical-align:5.068800pt;}
.lsa_c01053{letter-spacing:-2.722726pt;}
.ls1a_c01053{letter-spacing:-2.636480pt;}
.ls13_c01053{letter-spacing:-2.439360pt;}
.ls8_c01053{letter-spacing:-2.168326pt;}
.ls5_c01053{letter-spacing:-2.132698pt;}
.ls12_c01053{letter-spacing:-1.355200pt;}
.lsd_c01053{letter-spacing:-0.775880pt;}
.ls14_c01053{letter-spacing:-0.418176pt;}
.ls16_c01053{letter-spacing:-0.228097pt;}
.ls2_c01053{letter-spacing:0.000000pt;}
.ls6_c01053{letter-spacing:0.255209pt;}
.ls11_c01053{letter-spacing:0.792000pt;}
.ls1d_c01053{letter-spacing:1.895731pt;}
.ls23_c01053{letter-spacing:1.937549pt;}
.ls1f_c01053{letter-spacing:2.376634pt;}
.lsb_c01053{letter-spacing:2.868800pt;}
.ls21_c01053{letter-spacing:2.939209pt;}
.ls15_c01053{letter-spacing:3.080000pt;}
.ls1e_c01053{letter-spacing:3.132800pt;}
.ls3_c01053{letter-spacing:3.146035pt;}
.ls0_c01053{letter-spacing:3.303590pt;}
.ls1b_c01053{letter-spacing:3.326400pt;}
.ls7_c01053{letter-spacing:3.331469pt;}
.lsf_c01053{letter-spacing:3.361609pt;}
.ls22_c01053{letter-spacing:3.379209pt;}
.ls4_c01053{letter-spacing:3.484800pt;}
.lsc_c01053{letter-spacing:3.502400pt;}
.ls19_c01053{letter-spacing:3.520000pt;}
.ls20_c01053{letter-spacing:3.528800pt;}
.lse_c01053{letter-spacing:3.625609pt;}
.ls1_c01053{letter-spacing:19.060800pt;}
.ls1c_c01053{letter-spacing:45.619376pt;}
.ls10_c01053{letter-spacing:50.688176pt;}
.ls9_c01053{letter-spacing:53.222576pt;}
.ls17_c01053{letter-spacing:54.489776pt;}
.ls18_c01053{letter-spacing:59.558400pt;}
.ws1_c01053{word-spacing:-18.779947pt;}
.ws2_c01053{word-spacing:-17.424000pt;}
.ws0_c01053{word-spacing:-17.352164pt;}
.ws3_c01053{word-spacing:0.000000pt;}
._5_c01053{width:1.742400pt;}
._2_c01053{width:5.930746pt;}
._4_c01053{width:9.481044pt;}
._3_c01053{width:10.541999pt;}
._1_c01053{width:21.290950pt;}
._0_c01053{width:27.456000pt;}
.fs4_c01053{font-size:5.104176pt;}
.fs10_c01053{font-size:12.848176pt;}
.fse_c01053{font-size:15.840000pt;}
.fs0_c01053{font-size:19.712000pt;}
.fs14_c01053{font-size:24.640000pt;}
.fs2_c01053{font-size:29.920000pt;}
.fsf_c01053{font-size:38.720000pt;}
.fs1a_c01053{font-size:45.619376pt;}
.fsd_c01053{font-size:50.688176pt;}
.fs13_c01053{font-size:52.800000pt;}
.fs6_c01053{font-size:53.222576pt;}
.fs15_c01053{font-size:54.489776pt;}
.fs8_c01053{font-size:57.376000pt;}
.fs1c_c01053{font-size:58.784176pt;}
.fs16_c01053{font-size:59.558400pt;}
.fs11_c01053{font-size:61.600000pt;}
.fs5_c01053{font-size:61.952176pt;}
.fs1b_c01053{font-size:62.656000pt;}
.fs19_c01053{font-size:66.528000pt;}
.fsc_c01053{font-size:67.232176pt;}
.fs1d_c01053{font-size:67.584176pt;}
.fs3_c01053{font-size:69.696000pt;}
.fs9_c01053{font-size:70.048000pt;}
.fs17_c01053{font-size:70.400000pt;}
.fsa_c01053{font-size:70.576000pt;}
.fsb_c01053{font-size:72.512176pt;}
.fs18_c01053{font-size:75.328000pt;}
.fs12_c01053{font-size:76.032176pt;}
.fs7_c01053{font-size:77.792176pt;}
.fs1_c01053{font-size:78.848000pt;}
.y0_c01053{bottom:0.000000pt;}
.y1_c01053{bottom:68.000000pt;}
.y24_c01053{bottom:109.851320pt;}
.y23_c01053{bottom:137.725320pt;}
.y22_c01053{bottom:166.558520pt;}
.y21_c01053{bottom:195.382920pt;}
.y20_c01053{bottom:224.528520pt;}
.y1f_c01053{bottom:236.254520pt;}
.y1e_c01053{bottom:252.728120pt;}
.y2_c01053{bottom:261.281720pt;}
.y1d_c01053{bottom:281.556920pt;}
.y1c_c01053{bottom:310.381320pt;}
.y1b_c01053{bottom:338.580920pt;}
.y1a_c01053{bottom:367.722120pt;}
.y19_c01053{bottom:396.555320pt;}
.y18_c01053{bottom:425.062920pt;}
.y17_c01053{bottom:452.628920pt;}
.y16_c01053{bottom:482.086920pt;}
.y15_c01053{bottom:500.778120pt;}
.y14_c01053{bottom:503.633720pt;}
.y13_c01053{bottom:510.603320pt;}
.y12_c01053{bottom:567.310520pt;}
.y11_c01053{bottom:595.818120pt;}
.y10_c01053{bottom:620.528520pt;}
.ye_c01053{bottom:622.750520pt;}
.yf_c01053{bottom:624.017720pt;}
.yd_c01053{bottom:652.525320pt;}
.yc_c01053{bottom:680.724920pt;}
.yb_c01053{bottom:709.232520pt;}
.ya_c01053{bottom:737.748920pt;}
.y9_c01053{bottom:765.939720pt;}
.y8_c01053{bottom:794.768520pt;}
.y7_c01053{bottom:819.483320pt;}
.y6_c01053{bottom:822.963720pt;}
.y5_c01053{bottom:891.713720pt;}
.y4_c01053{bottom:937.645320pt;}
.y3_c01053{bottom:977.877160pt;}
.h6_c01053{height:5.009470pt;}
.h10_c01053{height:16.520625pt;}
.h2_c01053{height:20.559000pt;}
.h14_c01053{height:25.698750pt;}
.h4_c01053{height:29.364844pt;}
.h1a_c01053{height:30.382504pt;}
.hf_c01053{height:33.758325pt;}
.h8_c01053{height:35.446236pt;}
.h15_c01053{height:36.290191pt;}
.h11_c01053{height:38.001563pt;}
.h16_c01053{height:39.665894pt;}
.ha_c01053{height:59.841375pt;}
.h7_c01053{height:60.802673pt;}
.h1d_c01053{height:61.310059pt;}
.h1b_c01053{height:61.493438pt;}
.h12_c01053{height:64.246875pt;}
.h1f_c01053{height:65.293594pt;}
.he_c01053{height:65.984704pt;}
.h1e_c01053{height:66.330173pt;}
.h19_c01053{height:67.047750pt;}
.h5_c01053{height:68.402813pt;}
.hb_c01053{height:68.748281pt;}
.h17_c01053{height:69.093750pt;}
.hc_c01053{height:69.266484pt;}
.h1c_c01053{height:69.386625pt;}
.hd_c01053{height:71.166735pt;}
.h18_c01053{height:73.930313pt;}
.h13_c01053{height:74.621423pt;}
.h9_c01053{height:76.348766pt;}
.h3_c01053{height:77.385000pt;}
.h1_c01053{height:986.666667pt;}
.h0_c01053{height:1122.666667pt;}
.w1_c01053{width:689.333333pt;}
.w0_c01053{width:793.333333pt;}
.x0_c01053{left:0.000000pt;}
.x2_c01053{left:43.631853pt;}
.x1_c01053{left:52.000000pt;}
.x3f_c01053{left:72.940253pt;}
.x1e_c01053{left:74.079853pt;}
.x6_c01053{left:75.166653pt;}
.x51_c01053{left:93.149453pt;}
.x28_c01053{left:102.732653pt;}
.x11_c01053{left:104.162653pt;}
.x10_c01053{left:110.511853pt;}
.x33_c01053{left:112.557853pt;}
.x39_c01053{left:113.811853pt;}
.x42_c01053{left:121.234653pt;}
.x19_c01053{left:123.478653pt;}
.x46_c01053{left:131.425053pt;}
.x5f_c01053{left:132.432653pt;}
.x1f_c01053{left:133.501853pt;}
.x7_c01053{left:142.183053pt;}
.x34_c01053{left:151.920253pt;}
.x62_c01053{left:160.874253pt;}
.x20_c01053{left:161.820253pt;}
.x12_c01053{left:163.426253pt;}
.x54_c01053{left:170.378253pt;}
.x29_c01053{left:172.257053pt;}
.x3a_c01053{left:181.479453pt;}
.x5b_c01053{left:191.722653pt;}
.x1a_c01053{left:192.624653pt;}
.x3b_c01053{left:201.121053pt;}
.x2a_c01053{left:202.801853pt;}
.x49_c01053{left:211.434653pt;}
.x5_c01053{left:220.995853pt;}
.x55_c01053{left:230.552653pt;}
.x35_c01053{left:231.687853pt;}
.x3c_c01053{left:241.161053pt;}
.x8_c01053{left:242.164253pt;}
.x36_c01053{left:250.572653pt;}
.x40_c01053{left:251.589053pt;}
.x37_c01053{left:253.639453pt;}
.x66_c01053{left:259.407853pt;}
.x13_c01053{left:261.167853pt;}
.x38_c01053{left:267.521453pt;}
.x9_c01053{left:270.953453pt;}
.x63_c01053{left:279.797453pt;}
.x3d_c01053{left:281.095453pt;}
.x21_c01053{left:290.458653pt;}
.x14_c01053{left:300.798653pt;}
.x4a_c01053{left:308.318253pt;}
.x2b_c01053{left:310.588653pt;}
.x47_c01053{left:320.611853pt;}
.x24_c01053{left:328.778253pt;}
.x1b_c01053{left:330.542653pt;}
.x2c_c01053{left:338.559453pt;}
.x4e_c01053{left:339.734253pt;}
.x41_c01053{left:349.493453pt;}
.x48_c01053{left:358.566253pt;}
.xa_c01053{left:360.326253pt;}
.x4f_c01053{left:368.035053pt;}
.x43_c01053{left:370.428653pt;}
.x56_c01053{left:380.179053pt;}
.x67_c01053{left:388.028653pt;}
.x52_c01053{left:389.115453pt;}
.x30_c01053{left:390.048253pt;}
.x60_c01053{left:398.544653pt;}
.x3e_c01053{left:399.495053pt;}
.xb_c01053{left:400.445453pt;}
.x5c_c01053{left:407.349053pt;}
.x15_c01053{left:408.981453pt;}
.x4b_c01053{left:416.580253pt;}
.x2d_c01053{left:419.229053pt;}
.x64_c01053{left:427.809053pt;}
.x1c_c01053{left:429.045453pt;}
.x25_c01053{left:436.771853pt;}
.x3_c01053{left:438.680133pt;}
.x31_c01053{left:447.415453pt;}
.x65_c01053{left:456.888653pt;}
.xc_c01053{left:457.847853pt;}
.x50_c01053{left:468.161453pt;}
.x2e_c01053{left:477.524653pt;}
.x4c_c01053{left:486.144253pt;}
.xd_c01053{left:487.336653pt;}
.x16_c01053{left:497.491853pt;}
.x26_c01053{left:507.321453pt;}
.x4d_c01053{left:514.159053pt;}
.x2f_c01053{left:516.499853pt;}
.x22_c01053{left:517.437053pt;}
.x32_c01053{left:526.633053pt;}
.x17_c01053{left:535.978653pt;}
.x44_c01053{left:537.030253pt;}
.x23_c01053{left:545.918253pt;}
.xe_c01053{left:546.925853pt;}
.x68_c01053{left:554.493853pt;}
.x18_c01053{left:557.015053pt;}
.x59_c01053{left:564.719453pt;}
.x5d_c01053{left:573.981453pt;}
.xf_c01053{left:576.018653pt;}
.x57_c01053{left:584.123453pt;}
.x1d_c01053{left:586.332253pt;}
.x69_c01053{left:594.393053pt;}
.x4_c01053{left:604.838653pt;}
.x5a_c01053{left:613.282253pt;}
.x27_c01053{left:615.024653pt;}
.x58_c01053{left:623.868653pt;}
.x61_c01053{left:624.858653pt;}
.x45_c01053{left:625.888253pt;}
.x5e_c01053{left:628.928653pt;}
.x6b_c01053{left:633.183453pt;}
.x53_c01053{left:634.151453pt;}
.x6a_c01053{left:654.127453pt;}
}





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

.ir_c01054:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01054{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01054;src:url('chunks/assets/font_5b7767774b75a9d2111e8b24.woff2')format("woff");}.ff1_c01054{font-family:ff1_c01054;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01054;src:url('chunks/assets/font_6ba80919017870d712646462.woff2')format("woff");}.ff2_c01054{font-family:ff2_c01054;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01054;src:url('chunks/assets/font_abe29ce046b97a9a6ea2a92d.woff2')format("woff");}.ff3_c01054{font-family:ff3_c01054;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m33_c01054{transform:matrix(0.113095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113095,0.000000,0.000000,0.250000,0,0);}
.m46_c01054{transform:matrix(0.155364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155364,0.000000,0.000000,0.250000,0,0);}
.m6c_c01054{transform:matrix(0.161797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161797,0.000000,0.000000,0.250000,0,0);}
.m32_c01054{transform:matrix(0.165043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165043,0.000000,0.000000,0.250000,0,0);}
.m6f_c01054{transform:matrix(0.168962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168962,0.000000,0.000000,0.250000,0,0);}
.m66_c01054{transform:matrix(0.213734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213734,0.000000,0.000000,0.250000,0,0);}
.m3d_c01054{transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);}
.m55_c01054{transform:matrix(0.219572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219572,0.000000,0.000000,0.250000,0,0);}
.m8c_c01054{transform:matrix(0.227593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227593,0.000000,0.000000,0.250000,0,0);}
.m63_c01054{transform:matrix(0.230794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230794,0.000000,0.000000,0.250000,0,0);}
.m8f_c01054{transform:matrix(0.236930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236930,0.000000,0.000000,0.250000,0,0);}
.m8b_c01054{transform:matrix(0.243317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243317,0.000000,0.000000,0.250000,0,0);}
.m2_c01054{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m7d_c01054{transform:matrix(0.250608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250608,0.000000,0.000000,0.250000,0,0);}
.m3c_c01054{transform:matrix(0.250865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250865,0.000000,0.000000,0.250000,0,0);}
.m60_c01054{transform:matrix(0.253222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253222,0.000000,0.000000,0.250000,0,0);}
.m0_c01054{transform:matrix(0.254056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254056,0.000000,0.000000,0.250000,0,0);}
.mb0_c01054{transform:matrix(0.257576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257576,0.000000,0.000000,0.250000,0,0);}
.mb9_c01054{transform:matrix(0.260939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260939,0.000000,0.000000,0.250000,0,0);}
.m7a_c01054{transform:matrix(0.264899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264899,0.000000,0.000000,0.250000,0,0);}
.m5b_c01054{transform:matrix(0.266057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266057,0.000000,0.000000,0.250000,0,0);}
.m20_c01054{transform:matrix(0.266768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266768,0.000000,0.000000,0.250000,0,0);}
.m3a_c01054{transform:matrix(0.267665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267665,0.000000,0.000000,0.250000,0,0);}
.m40_c01054{transform:matrix(0.268450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268450,0.000000,0.000000,0.250000,0,0);}
.m91_c01054{transform:matrix(0.268701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268701,0.000000,0.000000,0.250000,0,0);}
.m15_c01054{transform:matrix(0.269115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269115,0.000000,0.000000,0.250000,0,0);}
.mab_c01054{transform:matrix(0.269502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269502,0.000000,0.000000,0.250000,0,0);}
.m89_c01054{transform:matrix(0.269715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269715,0.000000,0.000000,0.250000,0,0);}
.ma_c01054{transform:matrix(0.269941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269941,0.000000,0.000000,0.250000,0,0);}
.m51_c01054{transform:matrix(0.270331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270331,0.000000,0.000000,0.250000,0,0);}
.m3e_c01054{transform:matrix(0.270582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270582,0.000000,0.000000,0.250000,0,0);}
.m2e_c01054{transform:matrix(0.270856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270856,0.000000,0.000000,0.250000,0,0);}
.m11_c01054{transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);}
.m34_c01054{transform:matrix(0.272173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272173,0.000000,0.000000,0.250000,0,0);}
.m64_c01054{transform:matrix(0.273852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273852,0.000000,0.000000,0.250000,0,0);}
.m13_c01054{transform:matrix(0.274532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274532,0.000000,0.000000,0.250000,0,0);}
.ma8_c01054{transform:matrix(0.274674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274674,0.000000,0.000000,0.250000,0,0);}
.m38_c01054{transform:matrix(0.275231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275231,0.000000,0.000000,0.250000,0,0);}
.m9_c01054{transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);}
.m6a_c01054{transform:matrix(0.277012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277012,0.000000,0.000000,0.250000,0,0);}
.m4c_c01054{transform:matrix(0.278670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278670,0.000000,0.000000,0.250000,0,0);}
.m1f_c01054{transform:matrix(0.279314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279314,0.000000,0.000000,0.250000,0,0);}
.m3_c01054{transform:matrix(0.279348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279348,0.000000,0.000000,0.250000,0,0);}
.m94_c01054{transform:matrix(0.279989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279989,0.000000,0.000000,0.250000,0,0);}
.m90_c01054{transform:matrix(0.280157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280157,0.000000,0.000000,0.250000,0,0);}
.m1_c01054{transform:matrix(0.281466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281466,0.000000,0.000000,0.250000,0,0);}
.m4_c01054{transform:matrix(0.283635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283635,0.000000,0.000000,0.250000,0,0);}
.m8d_c01054{transform:matrix(0.286090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286090,0.000000,0.000000,0.250000,0,0);}
.m45_c01054{transform:matrix(0.286935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286935,0.000000,0.000000,0.250000,0,0);}
.m16_c01054{transform:matrix(0.287277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287277,0.000000,0.000000,0.250000,0,0);}
.m71_c01054{transform:matrix(0.287404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287404,0.000000,0.000000,0.250000,0,0);}
.maa_c01054{transform:matrix(0.287478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287478,0.000000,0.000000,0.250000,0,0);}
.m80_c01054{transform:matrix(0.287606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287606,0.000000,0.000000,0.250000,0,0);}
.m9a_c01054{transform:matrix(0.289976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289976,0.000000,0.000000,0.250000,0,0);}
.m88_c01054{transform:matrix(0.290072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290072,0.000000,0.000000,0.250000,0,0);}
.m84_c01054{transform:matrix(0.290267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290267,0.000000,0.000000,0.250000,0,0);}
.m4a_c01054{transform:matrix(0.290344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290344,0.000000,0.000000,0.250000,0,0);}
.m5_c01054{transform:matrix(0.291469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291469,0.000000,0.000000,0.250000,0,0);}
.m97_c01054{transform:matrix(0.291562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291562,0.000000,0.000000,0.250000,0,0);}
.ma0_c01054{transform:matrix(0.291752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291752,0.000000,0.000000,0.250000,0,0);}
.m4b_c01054{transform:matrix(0.291850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291850,0.000000,0.000000,0.250000,0,0);}
.ma2_c01054{transform:matrix(0.292532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292532,0.000000,0.000000,0.250000,0,0);}
.mb7_c01054{transform:matrix(0.292969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292969,0.000000,0.000000,0.250000,0,0);}
.m26_c01054{transform:matrix(0.294555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294555,0.000000,0.000000,0.250000,0,0);}
.m5c_c01054{transform:matrix(0.295448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295448,0.000000,0.000000,0.250000,0,0);}
.m73_c01054{transform:matrix(0.296261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296261,0.000000,0.000000,0.250000,0,0);}
.m1b_c01054{transform:matrix(0.296650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296650,0.000000,0.000000,0.250000,0,0);}
.ma1_c01054{transform:matrix(0.296961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296961,0.000000,0.000000,0.250000,0,0);}
.m25_c01054{transform:matrix(0.297537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297537,0.000000,0.000000,0.250000,0,0);}
.mb_c01054{transform:matrix(0.297831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297831,0.000000,0.000000,0.250000,0,0);}
.m93_c01054{transform:matrix(0.298110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298110,0.000000,0.000000,0.250000,0,0);}
.m2a_c01054{transform:matrix(0.298394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298394,0.000000,0.000000,0.250000,0,0);}
.m1e_c01054{transform:matrix(0.298573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298573,0.000000,0.000000,0.250000,0,0);}
.m59_c01054{transform:matrix(0.298867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298867,0.000000,0.000000,0.250000,0,0);}
.m7f_c01054{transform:matrix(0.298887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298887,0.000000,0.000000,0.250000,0,0);}
.m95_c01054{transform:matrix(0.299102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299102,0.000000,0.000000,0.250000,0,0);}
.m54_c01054{transform:matrix(0.299861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299861,0.000000,0.000000,0.250000,0,0);}
.m18_c01054{transform:matrix(0.300918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300918,0.000000,0.000000,0.250000,0,0);}
.ma6_c01054{transform:matrix(0.301440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301440,0.000000,0.000000,0.250000,0,0);}
.m76_c01054{transform:matrix(0.302235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302235,0.000000,0.000000,0.250000,0,0);}
.m67_c01054{transform:matrix(0.302356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302356,0.000000,0.000000,0.250000,0,0);}
.m75_c01054{transform:matrix(0.302456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302456,0.000000,0.000000,0.250000,0,0);}
.m17_c01054{transform:matrix(0.302759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302759,0.000000,0.000000,0.250000,0,0);}
.m19_c01054{transform:matrix(0.303072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303072,0.000000,0.000000,0.250000,0,0);}
.m92_c01054{transform:matrix(0.303306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303306,0.000000,0.000000,0.250000,0,0);}
.m61_c01054{transform:matrix(0.304477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304477,0.000000,0.000000,0.250000,0,0);}
.ma5_c01054{transform:matrix(0.304877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304877,0.000000,0.000000,0.250000,0,0);}
.mb4_c01054{transform:matrix(0.305518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305518,0.000000,0.000000,0.250000,0,0);}
.m7b_c01054{transform:matrix(0.306088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306088,0.000000,0.000000,0.250000,0,0);}
.m35_c01054{transform:matrix(0.306390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306390,0.000000,0.000000,0.250000,0,0);}
.m87_c01054{transform:matrix(0.306709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306709,0.000000,0.000000,0.250000,0,0);}
.m31_c01054{transform:matrix(0.306772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306772,0.000000,0.000000,0.250000,0,0);}
.m36_c01054{transform:matrix(0.306795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306795,0.000000,0.000000,0.250000,0,0);}
.m96_c01054{transform:matrix(0.307350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307350,0.000000,0.000000,0.250000,0,0);}
.m43_c01054{transform:matrix(0.308522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308522,0.000000,0.000000,0.250000,0,0);}
.m99_c01054{transform:matrix(0.309613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309613,0.000000,0.000000,0.250000,0,0);}
.mb6_c01054{transform:matrix(0.309950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309950,0.000000,0.000000,0.250000,0,0);}
.mac_c01054{transform:matrix(0.310260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310260,0.000000,0.000000,0.250000,0,0);}
.m5e_c01054{transform:matrix(0.311034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311034,0.000000,0.000000,0.250000,0,0);}
.m86_c01054{transform:matrix(0.311631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311631,0.000000,0.000000,0.250000,0,0);}
.m24_c01054{transform:matrix(0.311701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311701,0.000000,0.000000,0.250000,0,0);}
.mc_c01054{transform:matrix(0.311796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311796,0.000000,0.000000,0.250000,0,0);}
.m12_c01054{transform:matrix(0.312154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312154,0.000000,0.000000,0.250000,0,0);}
.m48_c01054{transform:matrix(0.312323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312323,0.000000,0.000000,0.250000,0,0);}
.m79_c01054{transform:matrix(0.312941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312941,0.000000,0.000000,0.250000,0,0);}
.mae_c01054{transform:matrix(0.313069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313069,0.000000,0.000000,0.250000,0,0);}
.m47_c01054{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);}
.m30_c01054{transform:matrix(0.314586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314586,0.000000,0.000000,0.250000,0,0);}
.m50_c01054{transform:matrix(0.314645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314645,0.000000,0.000000,0.250000,0,0);}
.m56_c01054{transform:matrix(0.315013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315013,0.000000,0.000000,0.250000,0,0);}
.mad_c01054{transform:matrix(0.315472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315472,0.000000,0.000000,0.250000,0,0);}
.m3b_c01054{transform:matrix(0.316239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316239,0.000000,0.000000,0.250000,0,0);}
.m9e_c01054{transform:matrix(0.316344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316344,0.000000,0.000000,0.250000,0,0);}
.m28_c01054{transform:matrix(0.316607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316607,0.000000,0.000000,0.250000,0,0);}
.m77_c01054{transform:matrix(0.316628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316628,0.000000,0.000000,0.250000,0,0);}
.m2b_c01054{transform:matrix(0.317541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317541,0.000000,0.000000,0.250000,0,0);}
.m39_c01054{transform:matrix(0.318103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318103,0.000000,0.000000,0.250000,0,0);}
.m52_c01054{transform:matrix(0.318976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318976,0.000000,0.000000,0.250000,0,0);}
.m44_c01054{transform:matrix(0.319736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319736,0.000000,0.000000,0.250000,0,0);}
.m29_c01054{transform:matrix(0.320403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320403,0.000000,0.000000,0.250000,0,0);}
.m81_c01054{transform:matrix(0.320889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320889,0.000000,0.000000,0.250000,0,0);}
.mb3_c01054{transform:matrix(0.320936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320936,0.000000,0.000000,0.250000,0,0);}
.m5d_c01054{transform:matrix(0.321049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321049,0.000000,0.000000,0.250000,0,0);}
.m98_c01054{transform:matrix(0.321128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321128,0.000000,0.000000,0.250000,0,0);}
.m2c_c01054{transform:matrix(0.321208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321208,0.000000,0.000000,0.250000,0,0);}
.m62_c01054{transform:matrix(0.321476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321476,0.000000,0.000000,0.250000,0,0);}
.m72_c01054{transform:matrix(0.321752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321752,0.000000,0.000000,0.250000,0,0);}
.ma3_c01054{transform:matrix(0.322275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322275,0.000000,0.000000,0.250000,0,0);}
.m1c_c01054{transform:matrix(0.323090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323090,0.000000,0.000000,0.250000,0,0);}
.m49_c01054{transform:matrix(0.323226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323226,0.000000,0.000000,0.250000,0,0);}
.m1d_c01054{transform:matrix(0.324539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324539,0.000000,0.000000,0.250000,0,0);}
.ma7_c01054{transform:matrix(0.325711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325711,0.000000,0.000000,0.250000,0,0);}
.m42_c01054{transform:matrix(0.326028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326028,0.000000,0.000000,0.250000,0,0);}
.mb1_c01054{transform:matrix(0.326683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326683,0.000000,0.000000,0.250000,0,0);}
.m8_c01054{transform:matrix(0.327743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327743,0.000000,0.000000,0.250000,0,0);}
.m68_c01054{transform:matrix(0.328801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328801,0.000000,0.000000,0.250000,0,0);}
.m7e_c01054{transform:matrix(0.331140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331140,0.000000,0.000000,0.250000,0,0);}
.m57_c01054{transform:matrix(0.331297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331297,0.000000,0.000000,0.250000,0,0);}
.m4f_c01054{transform:matrix(0.331300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331300,0.000000,0.000000,0.250000,0,0);}
.m6b_c01054{transform:matrix(0.331582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331582,0.000000,0.000000,0.250000,0,0);}
.m27_c01054{transform:matrix(0.332972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332972,0.000000,0.000000,0.250000,0,0);}
.m69_c01054{transform:matrix(0.333316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333316,0.000000,0.000000,0.250000,0,0);}
.m78_c01054{transform:matrix(0.333549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333549,0.000000,0.000000,0.250000,0,0);}
.m8e_c01054{transform:matrix(0.334090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334090,0.000000,0.000000,0.250000,0,0);}
.m21_c01054{transform:matrix(0.334373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334373,0.000000,0.000000,0.250000,0,0);}
.m83_c01054{transform:matrix(0.334923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334923,0.000000,0.000000,0.250000,0,0);}
.m1a_c01054{transform:matrix(0.335351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335351,0.000000,0.000000,0.250000,0,0);}
.m5a_c01054{transform:matrix(0.337184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337184,0.000000,0.000000,0.250000,0,0);}
.m6d_c01054{transform:matrix(0.337388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337388,0.000000,0.000000,0.250000,0,0);}
.m9b_c01054{transform:matrix(0.338055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338055,0.000000,0.000000,0.250000,0,0);}
.m6e_c01054{transform:matrix(0.338454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338454,0.000000,0.000000,0.250000,0,0);}
.m5f_c01054{transform:matrix(0.339946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339946,0.000000,0.000000,0.250000,0,0);}
.mb5_c01054{transform:matrix(0.341044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341044,0.000000,0.000000,0.250000,0,0);}
.m82_c01054{transform:matrix(0.341648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341648,0.000000,0.000000,0.250000,0,0);}
.m9f_c01054{transform:matrix(0.341951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341951,0.000000,0.000000,0.250000,0,0);}
.ma4_c01054{transform:matrix(0.342101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342101,0.000000,0.000000,0.250000,0,0);}
.m7_c01054{transform:matrix(0.342888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342888,0.000000,0.000000,0.250000,0,0);}
.m7c_c01054{transform:matrix(0.343613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343613,0.000000,0.000000,0.250000,0,0);}
.m8a_c01054{transform:matrix(0.343636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343636,0.000000,0.000000,0.250000,0,0);}
.m9d_c01054{transform:matrix(0.343913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343913,0.000000,0.000000,0.250000,0,0);}
.mb2_c01054{transform:matrix(0.343933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343933,0.000000,0.000000,0.250000,0,0);}
.m2d_c01054{transform:matrix(0.344152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344152,0.000000,0.000000,0.250000,0,0);}
.m23_c01054{transform:matrix(0.345101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345101,0.000000,0.000000,0.250000,0,0);}
.m85_c01054{transform:matrix(0.346364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346364,0.000000,0.000000,0.250000,0,0);}
.m9c_c01054{transform:matrix(0.346926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346926,0.000000,0.000000,0.250000,0,0);}
.mbb_c01054{transform:matrix(0.347366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347366,0.000000,0.000000,0.250000,0,0);}
.m74_c01054{transform:matrix(0.349884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349884,0.000000,0.000000,0.250000,0,0);}
.m58_c01054{transform:matrix(0.350567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350567,0.000000,0.000000,0.250000,0,0);}
.m14_c01054{transform:matrix(0.353402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353402,0.000000,0.000000,0.250000,0,0);}
.m65_c01054{transform:matrix(0.354164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354164,0.000000,0.000000,0.250000,0,0);}
.ma9_c01054{transform:matrix(0.356132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356132,0.000000,0.000000,0.250000,0,0);}
.m3f_c01054{transform:matrix(0.356393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356393,0.000000,0.000000,0.250000,0,0);}
.m10_c01054{transform:matrix(0.357856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357856,0.000000,0.000000,0.250000,0,0);}
.m53_c01054{transform:matrix(0.358227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358227,0.000000,0.000000,0.250000,0,0);}
.m70_c01054{transform:matrix(0.358327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358327,0.000000,0.000000,0.250000,0,0);}
.mb8_c01054{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);}
.m37_c01054{transform:matrix(0.364194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364194,0.000000,0.000000,0.250000,0,0);}
.mba_c01054{transform:matrix(0.371069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371069,0.000000,0.000000,0.250000,0,0);}
.m6_c01054{transform:matrix(0.385060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385060,0.000000,0.000000,0.250000,0,0);}
.maf_c01054{transform:matrix(0.386808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386808,0.000000,0.000000,0.250000,0,0);}
.m4e_c01054{transform:matrix(0.387472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387472,0.000000,0.000000,0.250000,0,0);}
.m2f_c01054{transform:matrix(0.391270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391270,0.000000,0.000000,0.250000,0,0);}
.m4d_c01054{transform:matrix(0.397481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397481,0.000000,0.000000,0.250000,0,0);}
.m41_c01054{transform:matrix(0.403692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403692,0.000000,0.000000,0.250000,0,0);}
.m22_c01054{transform:matrix(0.409902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409902,0.000000,0.000000,0.250000,0,0);}
.me_c01054{transform:matrix(0.449687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449687,0.000000,0.000000,0.250000,0,0);}
.mf_c01054{transform:matrix(0.567063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567063,0.000000,0.000000,0.250000,0,0);}
.md_c01054{transform:matrix(0.899373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.899373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.899373,0.000000,0.000000,0.250000,0,0);}
.v0_c01054{vertical-align:0.000000px;}
.v1_c01054{vertical-align:9.979200px;}
.ls9_c01054{letter-spacing:-2.661127px;}
.lsf_c01054{letter-spacing:-2.425500px;}
.ls10_c01054{letter-spacing:-1.786757px;}
.ls2_c01054{letter-spacing:0.000000px;}
.ls12_c01054{letter-spacing:0.319335px;}
.ls3_c01054{letter-spacing:0.702900px;}
.ls7_c01054{letter-spacing:0.790735px;}
.lsa_c01054{letter-spacing:1.870392px;}
.lsb_c01054{letter-spacing:2.113695px;}
.lsd_c01054{letter-spacing:2.712600px;}
.ls13_c01054{letter-spacing:3.326400px;}
.lsc_c01054{letter-spacing:3.543100px;}
.lse_c01054{letter-spacing:3.663000px;}
.ls11_c01054{letter-spacing:3.722400px;}
.ls4_c01054{letter-spacing:3.725578px;}
.ls1_c01054{letter-spacing:3.801610px;}
.ls8_c01054{letter-spacing:4.197610px;}
.ls0_c01054{letter-spacing:4.296610px;}
.ls6_c01054{letter-spacing:51.321798px;}
.ls5_c01054{letter-spacing:59.875398px;}
.sc__c01054{text-shadow:none;}
.sc0_c01054{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01054{-webkit-text-stroke:0px transparent;}
.sc0_c01054{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01054{word-spacing:0.000000px;}
._0_c01054{width:30.056400px;}
._2_c01054{width:36.199350px;}
._3_c01054{width:52.093800px;}
._1_c01054{width:120.126600px;}
.fc0_c01054{color:transparent;}
.fs3_c01054{font-size:14.058000px;}
.fsa_c01054{font-size:34.056198px;}
.fs2_c01054{font-size:38.412000px;}
.fs11_c01054{font-size:38.808000px;}
.fsb_c01054{font-size:50.292000px;}
.fs6_c01054{font-size:51.321798px;}
.fs9_c01054{font-size:54.252000px;}
.fs4_c01054{font-size:59.875398px;}
.fsf_c01054{font-size:66.528000px;}
.fsd_c01054{font-size:69.300000px;}
.fsc_c01054{font-size:73.260000px;}
.fse_c01054{font-size:74.448000px;}
.fs5_c01054{font-size:74.844000px;}
.fs1_c01054{font-size:76.032198px;}
.fs10_c01054{font-size:78.804000px;}
.fs8_c01054{font-size:83.952198px;}
.fs0_c01054{font-size:85.932198px;}
.fs7_c01054{font-size:136.224198px;}
.y0_c01054{bottom:0.000000px;}
.y21_c01054{bottom:67.271535px;}
.y1_c01054{bottom:76.500000px;}
.y20_c01054{bottom:121.795785px;}
.y1f_c01054{bottom:153.871785px;}
.y1e_c01054{bottom:185.952735px;}
.y1d_c01054{bottom:219.805785px;}
.y1c_c01054{bottom:252.243135px;}
.y1b_c01054{bottom:284.319135px;}
.y1a_c01054{bottom:316.751535px;}
.y19_c01054{bottom:348.466185px;}
.y18_c01054{bottom:380.542185px;}
.y17_c01054{bottom:381.254985px;}
.y16_c01054{bottom:388.031535px;}
.y15_c01054{bottom:404.425935px;}
.y14_c01054{bottom:412.974585px;}
.y13_c01054{bottom:445.050585px;}
.y12_c01054{bottom:476.418735px;}
.y11_c01054{bottom:508.489785px;}
.y10_c01054{bottom:540.214335px;}
.yf_c01054{bottom:572.285385px;}
.ye_c01054{bottom:604.366335px;}
.yd_c01054{bottom:669.231135px;}
.yc_c01054{bottom:700.945785px;}
.yb_c01054{bottom:733.383135px;}
.ya_c01054{bottom:765.097785px;}
.y9_c01054{bottom:797.535135px;}
.y8_c01054{bottom:829.249785px;}
.y7_c01054{bottom:861.325785px;}
.y6_c01054{bottom:890.194185px;}
.y5_c01054{bottom:892.688985px;}
.y4_c01054{bottom:921.562335px;}
.y3_c01054{bottom:925.126335px;}
.y2_c01054{bottom:1062.335385px;}
.h5_c01054{height:13.797158px;}
.h9_c01054{height:34.180317px;}
.hd_c01054{height:35.519550px;}
.h4_c01054{height:37.699277px;}
.h7_c01054{height:39.877015px;}
.h14_c01054{height:40.475531px;}
.he_c01054{height:49.358848px;}
.hc_c01054{height:53.245371px;}
.h12_c01054{height:65.293594px;}
.h10_c01054{height:68.014160px;}
.hf_c01054{height:71.900684px;}
.h11_c01054{height:73.066641px;}
.h8_c01054{height:73.455293px;}
.h3_c01054{height:74.621444px;}
.h13_c01054{height:77.341816px;}
.hb_c01054{height:82.394491px;}
.h2_c01054{height:84.337753px;}
.h6_c01054{height:84.600644px;}
.ha_c01054{height:142.077582px;}
.h1_c01054{height:1110.000000px;}
.h0_c01054{height:1263.000000px;}
.w1_c01054{width:775.500000px;}
.w0_c01054{width:892.500000px;}
.x0_c01054{left:0.000000px;}
.x1_c01054{left:58.500000px;}
.x67_c01054{left:69.445185px;}
.x4a_c01054{left:70.687635px;}
.x22_c01054{left:71.935035px;}
.x14_c01054{left:72.999285px;}
.x68_c01054{left:93.442785px;}
.x56_c01054{left:103.436835px;}
.x58_c01054{left:114.123885px;}
.x15_c01054{left:117.039435px;}
.x43_c01054{left:124.825785px;}
.x33_c01054{left:126.439485px;}
.x3_c01054{left:127.884885px;}
.x60_c01054{left:135.735585px;}
.x23_c01054{left:137.992785px;}
.x16_c01054{left:148.922385px;}
.x73_c01054{left:157.154235px;}
.x62_c01054{left:158.718435px;}
.x4_c01054{left:164.183235px;}
.x3a_c01054{left:170.430135px;}
.x1e_c01054{left:172.568535px;}
.x34_c01054{left:180.676635px;}
.x5_c01054{left:184.012935px;}
.x63_c01054{left:191.883435px;}
.x7d_c01054{left:202.209135px;}
.x5d_c01054{left:203.293185px;}
.x3b_c01054{left:204.307935px;}
.x4b_c01054{left:213.420885px;}
.x6_c01054{left:215.480085px;}
.x10_c01054{left:222.603135px;}
.x44_c01054{left:225.117735px;}
.x11_c01054{left:226.246335px;}
.x2d_c01054{left:229.513335px;}
.x12_c01054{left:231.270585px;}
.x64_c01054{left:235.532535px;}
.x1f_c01054{left:237.646185px;}
.x17_c01054{left:239.616285px;}
.x7e_c01054{left:245.675085px;}
.x7_c01054{left:248.981685px;}
.x70_c01054{left:257.624385px;}
.x51_c01054{left:258.975735px;}
.x59_c01054{left:270.499335px;}
.x13_c01054{left:271.865535px;}
.x65_c01054{left:280.597335px;}
.x24_c01054{left:282.993135px;}
.x7f_c01054{left:291.190335px;}
.x4c_c01054{left:293.036685px;}
.x76_c01054{left:303.337635px;}
.x7a_c01054{left:312.519885px;}
.x35_c01054{left:314.692935px;}
.x18_c01054{left:316.267035px;}
.x69_c01054{left:324.993885px;}
.x45_c01054{left:336.740235px;}
.x2e_c01054{left:340.705185px;}
.x4f_c01054{left:347.927235px;}
.x8_c01054{left:349.714185px;}
.x19_c01054{left:352.708935px;}
.x77_c01054{left:358.584585px;}
.x2f_c01054{left:360.104235px;}
.x25_c01054{left:361.406085px;}
.x5e_c01054{left:370.058685px;}
.x7b_c01054{left:379.508235px;}
.x61_c01054{left:382.126785px;}
.x9_c01054{left:383.562285px;}
.x71_c01054{left:391.952535px;}
.x26_c01054{left:393.937485px;}
.x1a_c01054{left:395.630385px;}
.x5a_c01054{left:402.961335px;}
.x3c_c01054{left:404.579985px;}
.x29_c01054{left:405.698685px;}
.x80_c01054{left:413.435535px;}
.x36_c01054{left:415.217535px;}
.x3d_c01054{left:425.612535px;}
.x1b_c01054{left:426.899535px;}
.x52_c01054{left:435.824385px;}
.x30_c01054{left:437.799435px;}
.x2a_c01054{left:440.348685px;}
.xa_c01054{left:450.115035px;}
.x46_c01054{left:457.955835px;}
.x3e_c01054{left:459.475485px;}
.x5b_c01054{left:469.291335px;}
.x37_c01054{left:470.459535px;}
.x57_c01054{left:480.017985px;}
.x1c_c01054{left:483.289935px;}
.x81_c01054{left:488.923035px;}
.x78_c01054{left:490.635735px;}
.x47_c01054{left:492.689985px;}
.x20_c01054{left:504.065085px;}
.x6a_c01054{left:512.920635px;}
.x53_c01054{left:514.658085px;}
.xb_c01054{left:515.846085px;}
.x72_c01054{left:524.018535px;}
.x3f_c01054{left:525.483735px;}
.x27_c01054{left:526.547985px;}
.x4d_c01054{left:535.784685px;}
.x6c_c01054{left:546.466785px;}
.xc_c01054{left:547.724085px;}
.x66_c01054{left:557.010285px;}
.x28_c01054{left:560.326785px;}
.x82_c01054{left:566.633085px;}
.x74_c01054{left:567.826035px;}
.x38_c01054{left:569.256585px;}
.x40_c01054{left:580.651485px;}
.x7c_c01054{left:589.239735px;}
.x6d_c01054{left:591.363285px;}
.x2b_c01054{left:592.828485px;}
.x75_c01054{left:600.649485px;}
.x39_c01054{left:602.777985px;}
.x79_c01054{left:612.044385px;}
.x31_c01054{left:613.321485px;}
.x1d_c01054{left:614.875785px;}
.xd_c01054{left:615.999435px;}
.x48_c01054{left:625.597485px;}
.xe_c01054{left:636.155835px;}
.x50_c01054{left:646.436985px;}
.x21_c01054{left:648.709035px;}
.x6e_c01054{left:649.832685px;}
.x6b_c01054{left:656.084535px;}
.x4e_c01054{left:657.148785px;}
.x41_c01054{left:658.411035px;}
.x6f_c01054{left:667.662585px;}
.x2c_c01054{left:670.132635px;}
.x2_c01054{left:674.746035px;}
.x54_c01054{left:680.181135px;}
.x32_c01054{left:681.428535px;}
.xf_c01054{left:682.953135px;}
.x49_c01054{left:689.972235px;}
.x42_c01054{left:692.377935px;}
.x55_c01054{left:700.847385px;}
.x5c_c01054{left:703.886685px;}
.x5f_c01054{left:715.791435px;}
@media print{
.v0_c01054{vertical-align:0.000000pt;}
.v1_c01054{vertical-align:8.870400pt;}
.ls9_c01054{letter-spacing:-2.365446pt;}
.lsf_c01054{letter-spacing:-2.156000pt;}
.ls10_c01054{letter-spacing:-1.588228pt;}
.ls2_c01054{letter-spacing:0.000000pt;}
.ls12_c01054{letter-spacing:0.283854pt;}
.ls3_c01054{letter-spacing:0.624800pt;}
.ls7_c01054{letter-spacing:0.702875pt;}
.lsa_c01054{letter-spacing:1.662571pt;}
.lsb_c01054{letter-spacing:1.878840pt;}
.lsd_c01054{letter-spacing:2.411200pt;}
.ls13_c01054{letter-spacing:2.956800pt;}
.lsc_c01054{letter-spacing:3.149423pt;}
.lse_c01054{letter-spacing:3.256000pt;}
.ls11_c01054{letter-spacing:3.308800pt;}
.ls4_c01054{letter-spacing:3.311625pt;}
.ls1_c01054{letter-spacing:3.379209pt;}
.ls8_c01054{letter-spacing:3.731209pt;}
.ls0_c01054{letter-spacing:3.819209pt;}
.ls6_c01054{letter-spacing:45.619376pt;}
.ls5_c01054{letter-spacing:53.222576pt;}
.ws0_c01054{word-spacing:0.000000pt;}
._0_c01054{width:26.716800pt;}
._2_c01054{width:32.177200pt;}
._3_c01054{width:46.305600pt;}
._1_c01054{width:106.779200pt;}
.fs3_c01054{font-size:12.496000pt;}
.fsa_c01054{font-size:30.272176pt;}
.fs2_c01054{font-size:34.144000pt;}
.fs11_c01054{font-size:34.496000pt;}
.fsb_c01054{font-size:44.704000pt;}
.fs6_c01054{font-size:45.619376pt;}
.fs9_c01054{font-size:48.224000pt;}
.fs4_c01054{font-size:53.222576pt;}
.fsf_c01054{font-size:59.136000pt;}
.fsd_c01054{font-size:61.600000pt;}
.fsc_c01054{font-size:65.120000pt;}
.fse_c01054{font-size:66.176000pt;}
.fs5_c01054{font-size:66.528000pt;}
.fs1_c01054{font-size:67.584176pt;}
.fs10_c01054{font-size:70.048000pt;}
.fs8_c01054{font-size:74.624176pt;}
.fs0_c01054{font-size:76.384176pt;}
.fs7_c01054{font-size:121.088176pt;}
.y0_c01054{bottom:0.000000pt;}
.y21_c01054{bottom:59.796920pt;}
.y1_c01054{bottom:68.000000pt;}
.y20_c01054{bottom:108.262920pt;}
.y1f_c01054{bottom:136.774920pt;}
.y1e_c01054{bottom:165.291320pt;}
.y1d_c01054{bottom:195.382920pt;}
.y1c_c01054{bottom:224.216120pt;}
.y1b_c01054{bottom:252.728120pt;}
.y1a_c01054{bottom:281.556920pt;}
.y19_c01054{bottom:309.747720pt;}
.y18_c01054{bottom:338.259720pt;}
.y17_c01054{bottom:338.893320pt;}
.y16_c01054{bottom:344.916920pt;}
.y15_c01054{bottom:359.489720pt;}
.y14_c01054{bottom:367.088520pt;}
.y13_c01054{bottom:395.600520pt;}
.y12_c01054{bottom:423.483320pt;}
.y11_c01054{bottom:451.990920pt;}
.y10_c01054{bottom:480.190520pt;}
.yf_c01054{bottom:508.698120pt;}
.ye_c01054{bottom:537.214520pt;}
.yd_c01054{bottom:594.872120pt;}
.yc_c01054{bottom:623.062920pt;}
.yb_c01054{bottom:651.896120pt;}
.ya_c01054{bottom:680.086920pt;}
.y9_c01054{bottom:708.920120pt;}
.y8_c01054{bottom:737.110920pt;}
.y7_c01054{bottom:765.622920pt;}
.y6_c01054{bottom:791.283720pt;}
.y5_c01054{bottom:793.501320pt;}
.y4_c01054{bottom:819.166520pt;}
.y3_c01054{bottom:822.334520pt;}
.y2_c01054{bottom:944.298120pt;}
.h5_c01054{height:12.264141pt;}
.h9_c01054{height:30.382504pt;}
.hd_c01054{height:31.572934pt;}
.h4_c01054{height:33.510469pt;}
.h7_c01054{height:35.446236pt;}
.h14_c01054{height:35.978250pt;}
.he_c01054{height:43.874531pt;}
.hc_c01054{height:47.329219pt;}
.h12_c01054{height:58.038750pt;}
.h10_c01054{height:60.457031pt;}
.hf_c01054{height:63.911719pt;}
.h11_c01054{height:64.948125pt;}
.h8_c01054{height:65.293594pt;}
.h3_c01054{height:66.330173pt;}
.h13_c01054{height:68.748281pt;}
.hb_c01054{height:73.239548pt;}
.h2_c01054{height:74.966891pt;}
.h6_c01054{height:75.200573pt;}
.ha_c01054{height:126.291184pt;}
.h1_c01054{height:986.666667pt;}
.h0_c01054{height:1122.666667pt;}
.w1_c01054{width:689.333333pt;}
.w0_c01054{width:793.333333pt;}
.x0_c01054{left:0.000000pt;}
.x1_c01054{left:52.000000pt;}
.x67_c01054{left:61.729053pt;}
.x4a_c01054{left:62.833453pt;}
.x22_c01054{left:63.942253pt;}
.x14_c01054{left:64.888253pt;}
.x68_c01054{left:83.060253pt;}
.x56_c01054{left:91.943853pt;}
.x58_c01054{left:101.443453pt;}
.x15_c01054{left:104.035053pt;}
.x43_c01054{left:110.956253pt;}
.x33_c01054{left:112.390653pt;}
.x3_c01054{left:113.675453pt;}
.x60_c01054{left:120.653853pt;}
.x23_c01054{left:122.660253pt;}
.x16_c01054{left:132.375453pt;}
.x73_c01054{left:139.692653pt;}
.x62_c01054{left:141.083053pt;}
.x4_c01054{left:145.940653pt;}
.x3a_c01054{left:151.493453pt;}
.x1e_c01054{left:153.394253pt;}
.x34_c01054{left:160.601453pt;}
.x5_c01054{left:163.567053pt;}
.x63_c01054{left:170.563053pt;}
.x7d_c01054{left:179.741453pt;}
.x5d_c01054{left:180.705053pt;}
.x3b_c01054{left:181.607053pt;}
.x4b_c01054{left:189.707453pt;}
.x6_c01054{left:191.537853pt;}
.x10_c01054{left:197.869453pt;}
.x44_c01054{left:200.104653pt;}
.x11_c01054{left:201.107853pt;}
.x2d_c01054{left:204.011853pt;}
.x12_c01054{left:205.573853pt;}
.x64_c01054{left:209.362253pt;}
.x1f_c01054{left:211.241053pt;}
.x17_c01054{left:212.992253pt;}
.x7e_c01054{left:218.377853pt;}
.x7_c01054{left:221.317053pt;}
.x70_c01054{left:228.999453pt;}
.x51_c01054{left:230.200653pt;}
.x59_c01054{left:240.443853pt;}
.x13_c01054{left:241.658253pt;}
.x65_c01054{left:249.419853pt;}
.x24_c01054{left:251.549453pt;}
.x7f_c01054{left:258.835853pt;}
.x4c_c01054{left:260.477053pt;}
.x76_c01054{left:269.633453pt;}
.x7a_c01054{left:277.795453pt;}
.x35_c01054{left:279.727053pt;}
.x18_c01054{left:281.126253pt;}
.x69_c01054{left:288.883453pt;}
.x45_c01054{left:299.324653pt;}
.x2e_c01054{left:302.849053pt;}
.x4f_c01054{left:309.268653pt;}
.x8_c01054{left:310.857053pt;}
.x19_c01054{left:313.519053pt;}
.x77_c01054{left:318.741853pt;}
.x2f_c01054{left:320.092653pt;}
.x25_c01054{left:321.249853pt;}
.x5e_c01054{left:328.941053pt;}
.x7b_c01054{left:337.340653pt;}
.x61_c01054{left:339.668253pt;}
.x9_c01054{left:340.944253pt;}
.x71_c01054{left:348.402253pt;}
.x26_c01054{left:350.166653pt;}
.x1a_c01054{left:351.671453pt;}
.x5a_c01054{left:358.187853pt;}
.x3c_c01054{left:359.626653pt;}
.x29_c01054{left:360.621053pt;}
.x80_c01054{left:367.498253pt;}
.x36_c01054{left:369.082253pt;}
.x3d_c01054{left:378.322253pt;}
.x1b_c01054{left:379.466253pt;}
.x52_c01054{left:387.399453pt;}
.x30_c01054{left:389.155053pt;}
.x2a_c01054{left:391.421053pt;}
.xa_c01054{left:400.102253pt;}
.x46_c01054{left:407.071853pt;}
.x3e_c01054{left:408.422653pt;}
.x5b_c01054{left:417.147853pt;}
.x37_c01054{left:418.186253pt;}
.x57_c01054{left:426.682653pt;}
.x1c_c01054{left:429.591053pt;}
.x81_c01054{left:434.598253pt;}
.x78_c01054{left:436.120653pt;}
.x47_c01054{left:437.946653pt;}
.x20_c01054{left:448.057853pt;}
.x6a_c01054{left:455.929453pt;}
.x53_c01054{left:457.473853pt;}
.xb_c01054{left:458.529853pt;}
.x72_c01054{left:465.794253pt;}
.x3f_c01054{left:467.096653pt;}
.x27_c01054{left:468.042653pt;}
.x4d_c01054{left:476.253053pt;}
.x6c_c01054{left:485.748253pt;}
.xc_c01054{left:486.865853pt;}
.x66_c01054{left:495.120253pt;}
.x28_c01054{left:498.068253pt;}
.x82_c01054{left:503.673853pt;}
.x74_c01054{left:504.734253pt;}
.x38_c01054{left:506.005853pt;}
.x40_c01054{left:516.134653pt;}
.x7c_c01054{left:523.768653pt;}
.x6d_c01054{left:525.656253pt;}
.x2b_c01054{left:526.958653pt;}
.x75_c01054{left:533.910653pt;}
.x39_c01054{left:535.802653pt;}
.x79_c01054{left:544.039453pt;}
.x31_c01054{left:545.174653pt;}
.x1d_c01054{left:546.556253pt;}
.xd_c01054{left:547.555053pt;}
.x48_c01054{left:556.086653pt;}
.xe_c01054{left:565.471853pt;}
.x50_c01054{left:574.610653pt;}
.x21_c01054{left:576.630253pt;}
.x6e_c01054{left:577.629053pt;}
.x6b_c01054{left:583.186253pt;}
.x4e_c01054{left:584.132253pt;}
.x41_c01054{left:585.254253pt;}
.x6f_c01054{left:593.477853pt;}
.x2c_c01054{left:595.673453pt;}
.x2_c01054{left:599.774253pt;}
.x54_c01054{left:604.605453pt;}
.x32_c01054{left:605.714253pt;}
.xf_c01054{left:607.069453pt;}
.x49_c01054{left:613.308653pt;}
.x42_c01054{left:615.447053pt;}
.x55_c01054{left:622.975453pt;}
.x5c_c01054{left:625.677053pt;}
.x5f_c01054{left:636.259053pt;}
}





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

.ir_c01055:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01055{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01055;src:url('chunks/assets/font_fdf1112a1ae643ba8351bca6.woff2')format("woff");}.ff1_c01055{font-family:ff1_c01055;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01055;src:url('chunks/assets/font_5fefd78bfb367b7a8521c17a.woff2')format("woff");}.ff2_c01055{font-family:ff2_c01055;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01055;src:url('chunks/assets/font_bc50328338aa99697fb9c9ed.woff2')format("woff");}.ff3_c01055{font-family:ff3_c01055;line-height:0.666000;font-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_c01055{transform:matrix(0.035715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.035715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.035715,0.000000,0.000000,0.250000,0,0);}
.m36_c01055{transform:matrix(0.089285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089285,0.000000,0.000000,0.250000,0,0);}
.m34_c01055{transform:matrix(0.116072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116072,0.000000,0.000000,0.250000,0,0);}
.ma3_c01055{transform:matrix(0.138258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138258,0.000000,0.000000,0.250000,0,0);}
.m90_c01055{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m41_c01055{transform:matrix(0.162499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162499,0.000000,0.000000,0.250000,0,0);}
.m37_c01055{transform:matrix(0.172619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172619,0.000000,0.000000,0.250000,0,0);}
.m80_c01055{transform:matrix(0.174396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174396,0.000000,0.000000,0.250000,0,0);}
.ma4_c01055{transform:matrix(0.178819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178819,0.000000,0.000000,0.250000,0,0);}
.ma5_c01055{transform:matrix(0.189240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189240,0.000000,0.000000,0.250000,0,0);}
.m1f_c01055{transform:matrix(0.194531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194531,0.000000,0.000000,0.250000,0,0);}
.m1d_c01055{transform:matrix(0.210324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210324,0.000000,0.000000,0.250000,0,0);}
.m52_c01055{transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);}
.m8b_c01055{transform:matrix(0.235206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235206,0.000000,0.000000,0.250000,0,0);}
.ma6_c01055{transform:matrix(0.236251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236251,0.000000,0.000000,0.250000,0,0);}
.m21_c01055{transform:matrix(0.241404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241404,0.000000,0.000000,0.250000,0,0);}
.m0_c01055{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m54_c01055{transform:matrix(0.250836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250836,0.000000,0.000000,0.250000,0,0);}
.ma9_c01055{transform:matrix(0.252360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252360,0.000000,0.000000,0.250000,0,0);}
.mb3_c01055{transform:matrix(0.253138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253138,0.000000,0.000000,0.250000,0,0);}
.m46_c01055{transform:matrix(0.253670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253670,0.000000,0.000000,0.250000,0,0);}
.mb8_c01055{transform:matrix(0.254190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254190,0.000000,0.000000,0.250000,0,0);}
.ma2_c01055{transform:matrix(0.254272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254272,0.000000,0.000000,0.250000,0,0);}
.m50_c01055{transform:matrix(0.255459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255459,0.000000,0.000000,0.250000,0,0);}
.mc_c01055{transform:matrix(0.256735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256735,0.000000,0.000000,0.250000,0,0);}
.m47_c01055{transform:matrix(0.257994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257994,0.000000,0.000000,0.250000,0,0);}
.m40_c01055{transform:matrix(0.258282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258282,0.000000,0.000000,0.250000,0,0);}
.m55_c01055{transform:matrix(0.258874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258874,0.000000,0.000000,0.250000,0,0);}
.m97_c01055{transform:matrix(0.259486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259486,0.000000,0.000000,0.250000,0,0);}
.md_c01055{transform:matrix(0.260021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260021,0.000000,0.000000,0.250000,0,0);}
.m19_c01055{transform:matrix(0.260350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260350,0.000000,0.000000,0.250000,0,0);}
.m63_c01055{transform:matrix(0.260585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260585,0.000000,0.000000,0.250000,0,0);}
.m7f_c01055{transform:matrix(0.260635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260635,0.000000,0.000000,0.250000,0,0);}
.m6b_c01055{transform:matrix(0.260685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260685,0.000000,0.000000,0.250000,0,0);}
.m9a_c01055{transform:matrix(0.261599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261599,0.000000,0.000000,0.250000,0,0);}
.m26_c01055{transform:matrix(0.262006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262006,0.000000,0.000000,0.250000,0,0);}
.m13_c01055{transform:matrix(0.262894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262894,0.000000,0.000000,0.250000,0,0);}
.m9b_c01055{transform:matrix(0.263022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263022,0.000000,0.000000,0.250000,0,0);}
.m8a_c01055{transform:matrix(0.265203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265203,0.000000,0.000000,0.250000,0,0);}
.m93_c01055{transform:matrix(0.265269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265269,0.000000,0.000000,0.250000,0,0);}
.m62_c01055{transform:matrix(0.265917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265917,0.000000,0.000000,0.250000,0,0);}
.m82_c01055{transform:matrix(0.266619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266619,0.000000,0.000000,0.250000,0,0);}
.m1_c01055{transform:matrix(0.266687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266687,0.000000,0.000000,0.250000,0,0);}
.m68_c01055{transform:matrix(0.267450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267450,0.000000,0.000000,0.250000,0,0);}
.m1e_c01055{transform:matrix(0.267496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267496,0.000000,0.000000,0.250000,0,0);}
.m5_c01055{transform:matrix(0.267506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267506,0.000000,0.000000,0.250000,0,0);}
.m59_c01055{transform:matrix(0.268274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268274,0.000000,0.000000,0.250000,0,0);}
.m24_c01055{transform:matrix(0.268433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268433,0.000000,0.000000,0.250000,0,0);}
.m9_c01055{transform:matrix(0.270187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270187,0.000000,0.000000,0.250000,0,0);}
.m32_c01055{transform:matrix(0.270918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270918,0.000000,0.000000,0.250000,0,0);}
.m11_c01055{transform:matrix(0.271611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271611,0.000000,0.000000,0.250000,0,0);}
.m1a_c01055{transform:matrix(0.272723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272723,0.000000,0.000000,0.250000,0,0);}
.m96_c01055{transform:matrix(0.272820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272820,0.000000,0.000000,0.250000,0,0);}
.m2a_c01055{transform:matrix(0.272842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272842,0.000000,0.000000,0.250000,0,0);}
.m51_c01055{transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);}
.mb4_c01055{transform:matrix(0.273562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273562,0.000000,0.000000,0.250000,0,0);}
.m1c_c01055{transform:matrix(0.274830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274830,0.000000,0.000000,0.250000,0,0);}
.m84_c01055{transform:matrix(0.274860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274860,0.000000,0.000000,0.250000,0,0);}
.m3_c01055{transform:matrix(0.275099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275099,0.000000,0.000000,0.250000,0,0);}
.m9d_c01055{transform:matrix(0.275133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275133,0.000000,0.000000,0.250000,0,0);}
.m42_c01055{transform:matrix(0.276103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276103,0.000000,0.000000,0.250000,0,0);}
.m57_c01055{transform:matrix(0.276340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276340,0.000000,0.000000,0.250000,0,0);}
.m3f_c01055{transform:matrix(0.277145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277145,0.000000,0.000000,0.250000,0,0);}
.m3b_c01055{transform:matrix(0.277667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277667,0.000000,0.000000,0.250000,0,0);}
.m69_c01055{transform:matrix(0.277684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277684,0.000000,0.000000,0.250000,0,0);}
.m58_c01055{transform:matrix(0.278049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278049,0.000000,0.000000,0.250000,0,0);}
.m23_c01055{transform:matrix(0.279729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279729,0.000000,0.000000,0.250000,0,0);}
.m60_c01055{transform:matrix(0.280421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280421,0.000000,0.000000,0.250000,0,0);}
.m15_c01055{transform:matrix(0.280473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280473,0.000000,0.000000,0.250000,0,0);}
.m72_c01055{transform:matrix(0.280487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280487,0.000000,0.000000,0.250000,0,0);}
.m20_c01055{transform:matrix(0.280550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280550,0.000000,0.000000,0.250000,0,0);}
.m17_c01055{transform:matrix(0.281016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281016,0.000000,0.000000,0.250000,0,0);}
.ma1_c01055{transform:matrix(0.281037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281037,0.000000,0.000000,0.250000,0,0);}
.m10_c01055{transform:matrix(0.282270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282270,0.000000,0.000000,0.250000,0,0);}
.m5f_c01055{transform:matrix(0.282923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282923,0.000000,0.000000,0.250000,0,0);}
.mb_c01055{transform:matrix(0.283702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283702,0.000000,0.000000,0.250000,0,0);}
.m2e_c01055{transform:matrix(0.285205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285205,0.000000,0.000000,0.250000,0,0);}
.m95_c01055{transform:matrix(0.285721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285721,0.000000,0.000000,0.250000,0,0);}
.m33_c01055{transform:matrix(0.286325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286325,0.000000,0.000000,0.250000,0,0);}
.m2b_c01055{transform:matrix(0.286583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286583,0.000000,0.000000,0.250000,0,0);}
.mac_c01055{transform:matrix(0.286810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286810,0.000000,0.000000,0.250000,0,0);}
.m6d_c01055{transform:matrix(0.287136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287136,0.000000,0.000000,0.250000,0,0);}
.m8_c01055{transform:matrix(0.287389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287389,0.000000,0.000000,0.250000,0,0);}
.m3e_c01055{transform:matrix(0.287392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287392,0.000000,0.000000,0.250000,0,0);}
.m8f_c01055{transform:matrix(0.287537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287537,0.000000,0.000000,0.250000,0,0);}
.m6a_c01055{transform:matrix(0.287539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287539,0.000000,0.000000,0.250000,0,0);}
.m3d_c01055{transform:matrix(0.288163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288163,0.000000,0.000000,0.250000,0,0);}
.m6f_c01055{transform:matrix(0.288315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288315,0.000000,0.000000,0.250000,0,0);}
.m8c_c01055{transform:matrix(0.288346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288346,0.000000,0.000000,0.250000,0,0);}
.m77_c01055{transform:matrix(0.288484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288484,0.000000,0.000000,0.250000,0,0);}
.mb0_c01055{transform:matrix(0.288489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288489,0.000000,0.000000,0.250000,0,0);}
.m73_c01055{transform:matrix(0.288721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288721,0.000000,0.000000,0.250000,0,0);}
.m4b_c01055{transform:matrix(0.288806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288806,0.000000,0.000000,0.250000,0,0);}
.m53_c01055{transform:matrix(0.289364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289364,0.000000,0.000000,0.250000,0,0);}
.m43_c01055{transform:matrix(0.289386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289386,0.000000,0.000000,0.250000,0,0);}
.m83_c01055{transform:matrix(0.289539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289539,0.000000,0.000000,0.250000,0,0);}
.m94_c01055{transform:matrix(0.289881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289881,0.000000,0.000000,0.250000,0,0);}
.m61_c01055{transform:matrix(0.290155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290155,0.000000,0.000000,0.250000,0,0);}
.m3c_c01055{transform:matrix(0.291117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291117,0.000000,0.000000,0.250000,0,0);}
.m6e_c01055{transform:matrix(0.291531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291531,0.000000,0.000000,0.250000,0,0);}
.m7c_c01055{transform:matrix(0.291752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291752,0.000000,0.000000,0.250000,0,0);}
.mb5_c01055{transform:matrix(0.292122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292122,0.000000,0.000000,0.250000,0,0);}
.m9e_c01055{transform:matrix(0.292386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292386,0.000000,0.000000,0.250000,0,0);}
.m86_c01055{transform:matrix(0.292516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292516,0.000000,0.000000,0.250000,0,0);}
.m28_c01055{transform:matrix(0.293112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293112,0.000000,0.000000,0.250000,0,0);}
.ma0_c01055{transform:matrix(0.293599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293599,0.000000,0.000000,0.250000,0,0);}
.m5a_c01055{transform:matrix(0.293892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293892,0.000000,0.000000,0.250000,0,0);}
.m4e_c01055{transform:matrix(0.294105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294105,0.000000,0.000000,0.250000,0,0);}
.m12_c01055{transform:matrix(0.294230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294230,0.000000,0.000000,0.250000,0,0);}
.m64_c01055{transform:matrix(0.294655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294655,0.000000,0.000000,0.250000,0,0);}
.m4a_c01055{transform:matrix(0.295090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295090,0.000000,0.000000,0.250000,0,0);}
.ma7_c01055{transform:matrix(0.295785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295785,0.000000,0.000000,0.250000,0,0);}
.m89_c01055{transform:matrix(0.296261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296261,0.000000,0.000000,0.250000,0,0);}
.mb2_c01055{transform:matrix(0.296970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296970,0.000000,0.000000,0.250000,0,0);}
.m31_c01055{transform:matrix(0.297052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297052,0.000000,0.000000,0.250000,0,0);}
.me_c01055{transform:matrix(0.297863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297863,0.000000,0.000000,0.250000,0,0);}
.m75_c01055{transform:matrix(0.298464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298464,0.000000,0.000000,0.250000,0,0);}
.m7b_c01055{transform:matrix(0.298536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298536,0.000000,0.000000,0.250000,0,0);}
.m1b_c01055{transform:matrix(0.299819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299819,0.000000,0.000000,0.250000,0,0);}
.m92_c01055{transform:matrix(0.300069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300069,0.000000,0.000000,0.250000,0,0);}
.m30_c01055{transform:matrix(0.300564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300564,0.000000,0.000000,0.250000,0,0);}
.mb1_c01055{transform:matrix(0.301300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301300,0.000000,0.000000,0.250000,0,0);}
.mf_c01055{transform:matrix(0.301307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301307,0.000000,0.000000,0.250000,0,0);}
.m91_c01055{transform:matrix(0.301613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301613,0.000000,0.000000,0.250000,0,0);}
.maf_c01055{transform:matrix(0.301666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301666,0.000000,0.000000,0.250000,0,0);}
.m99_c01055{transform:matrix(0.301963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301963,0.000000,0.000000,0.250000,0,0);}
.m3a_c01055{transform:matrix(0.302291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302291,0.000000,0.000000,0.250000,0,0);}
.m74_c01055{transform:matrix(0.302297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302297,0.000000,0.000000,0.250000,0,0);}
.m71_c01055{transform:matrix(0.302507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302507,0.000000,0.000000,0.250000,0,0);}
.mae_c01055{transform:matrix(0.303609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303609,0.000000,0.000000,0.250000,0,0);}
.m8d_c01055{transform:matrix(0.304277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304277,0.000000,0.000000,0.250000,0,0);}
.m67_c01055{transform:matrix(0.304494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304494,0.000000,0.000000,0.250000,0,0);}
.m66_c01055{transform:matrix(0.304709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304709,0.000000,0.000000,0.250000,0,0);}
.m22_c01055{transform:matrix(0.305017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305017,0.000000,0.000000,0.250000,0,0);}
.m8e_c01055{transform:matrix(0.305090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305090,0.000000,0.000000,0.250000,0,0);}
.m44_c01055{transform:matrix(0.305110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305110,0.000000,0.000000,0.250000,0,0);}
.m70_c01055{transform:matrix(0.305898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305898,0.000000,0.000000,0.250000,0,0);}
.m5d_c01055{transform:matrix(0.306714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306714,0.000000,0.000000,0.250000,0,0);}
.ma_c01055{transform:matrix(0.307325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307325,0.000000,0.000000,0.250000,0,0);}
.mb6_c01055{transform:matrix(0.307849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307849,0.000000,0.000000,0.250000,0,0);}
.m27_c01055{transform:matrix(0.307873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307873,0.000000,0.000000,0.250000,0,0);}
.mab_c01055{transform:matrix(0.309770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309770,0.000000,0.000000,0.250000,0,0);}
.m29_c01055{transform:matrix(0.310847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310847,0.000000,0.000000,0.250000,0,0);}
.m65_c01055{transform:matrix(0.311057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311057,0.000000,0.000000,0.250000,0,0);}
.m4_c01055{transform:matrix(0.312451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312451,0.000000,0.000000,0.250000,0,0);}
.m45_c01055{transform:matrix(0.314919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314919,0.000000,0.000000,0.250000,0,0);}
.m2f_c01055{transform:matrix(0.315865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315865,0.000000,0.000000,0.250000,0,0);}
.m2c_c01055{transform:matrix(0.318176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318176,0.000000,0.000000,0.250000,0,0);}
.m4d_c01055{transform:matrix(0.318366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318366,0.000000,0.000000,0.250000,0,0);}
.m7d_c01055{transform:matrix(0.318554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318554,0.000000,0.000000,0.250000,0,0);}
.m9c_c01055{transform:matrix(0.319139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319139,0.000000,0.000000,0.250000,0,0);}
.m4c_c01055{transform:matrix(0.319381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319381,0.000000,0.000000,0.250000,0,0);}
.mad_c01055{transform:matrix(0.319409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319409,0.000000,0.000000,0.250000,0,0);}
.m7e_c01055{transform:matrix(0.319684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319684,0.000000,0.000000,0.250000,0,0);}
.ma8_c01055{transform:matrix(0.320009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320009,0.000000,0.000000,0.250000,0,0);}
.m18_c01055{transform:matrix(0.320858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320858,0.000000,0.000000,0.250000,0,0);}
.m2d_c01055{transform:matrix(0.321135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321135,0.000000,0.000000,0.250000,0,0);}
.mb7_c01055{transform:matrix(0.322998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322998,0.000000,0.000000,0.250000,0,0);}
.m14_c01055{transform:matrix(0.323086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323086,0.000000,0.000000,0.250000,0,0);}
.m5e_c01055{transform:matrix(0.323209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323209,0.000000,0.000000,0.250000,0,0);}
.m81_c01055{transform:matrix(0.325623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325623,0.000000,0.000000,0.250000,0,0);}
.m88_c01055{transform:matrix(0.326385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326385,0.000000,0.000000,0.250000,0,0);}
.m38_c01055{transform:matrix(0.326854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326854,0.000000,0.000000,0.250000,0,0);}
.maa_c01055{transform:matrix(0.329069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329069,0.000000,0.000000,0.250000,0,0);}
.m7_c01055{transform:matrix(0.329070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329070,0.000000,0.000000,0.250000,0,0);}
.m78_c01055{transform:matrix(0.329791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329791,0.000000,0.000000,0.250000,0,0);}
.m79_c01055{transform:matrix(0.331734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331734,0.000000,0.000000,0.250000,0,0);}
.m98_c01055{transform:matrix(0.331874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331874,0.000000,0.000000,0.250000,0,0);}
.mb9_c01055{transform:matrix(0.333760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333760,0.000000,0.000000,0.250000,0,0);}
.m5b_c01055{transform:matrix(0.338421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338421,0.000000,0.000000,0.250000,0,0);}
.m49_c01055{transform:matrix(0.338755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338755,0.000000,0.000000,0.250000,0,0);}
.m48_c01055{transform:matrix(0.341959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341959,0.000000,0.000000,0.250000,0,0);}
.m25_c01055{transform:matrix(0.342894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342894,0.000000,0.000000,0.250000,0,0);}
.m87_c01055{transform:matrix(0.345874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345874,0.000000,0.000000,0.250000,0,0);}
.m9f_c01055{transform:matrix(0.349244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349244,0.000000,0.000000,0.250000,0,0);}
.m85_c01055{transform:matrix(0.349884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349884,0.000000,0.000000,0.250000,0,0);}
.m6c_c01055{transform:matrix(0.349950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349950,0.000000,0.000000,0.250000,0,0);}
.m7a_c01055{transform:matrix(0.351132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351132,0.000000,0.000000,0.250000,0,0);}
.m2_c01055{transform:matrix(0.352564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352564,0.000000,0.000000,0.250000,0,0);}
.m4f_c01055{transform:matrix(0.374235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374235,0.000000,0.000000,0.250000,0,0);}
.m6_c01055{transform:matrix(0.374684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374684,0.000000,0.000000,0.250000,0,0);}
.m16_c01055{transform:matrix(0.380631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380631,0.000000,0.000000,0.250000,0,0);}
.m39_c01055{transform:matrix(0.382321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382321,0.000000,0.000000,0.250000,0,0);}
.m5c_c01055{transform:matrix(0.386579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386579,0.000000,0.000000,0.250000,0,0);}
.m76_c01055{transform:matrix(0.398571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398571,0.000000,0.000000,0.250000,0,0);}
.m56_c01055{transform:matrix(0.403146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403146,0.000000,0.000000,0.250000,0,0);}
.v0_c01055{vertical-align:0.000000px;}
.v2_c01055{vertical-align:24.235200px;}
.v1_c01055{vertical-align:27.086400px;}
.ls28_c01055{letter-spacing:-4.989600px;}
.ls27_c01055{letter-spacing:-3.104640px;}
.lsa_c01055{letter-spacing:-2.778930px;}
.ls20_c01055{letter-spacing:-2.501730px;}
.lse_c01055{letter-spacing:-2.151686px;}
.ls1e_c01055{letter-spacing:-1.884967px;}
.lsd_c01055{letter-spacing:-1.675298px;}
.ls6_c01055{letter-spacing:0.000000px;}
.ls4_c01055{letter-spacing:0.238491px;}
.ls18_c01055{letter-spacing:0.952380px;}
.ls3_c01055{letter-spacing:0.984535px;}
.ls0_c01055{letter-spacing:1.063814px;}
.ls21_c01055{letter-spacing:2.514600px;}
.ls1d_c01055{letter-spacing:2.588375px;}
.ls2a_c01055{letter-spacing:3.207610px;}
.ls15_c01055{letter-spacing:3.302957px;}
.ls25_c01055{letter-spacing:3.316500px;}
.ls9_c01055{letter-spacing:3.405610px;}
.lsc_c01055{letter-spacing:3.425400px;}
.ls22_c01055{letter-spacing:3.524400px;}
.ls13_c01055{letter-spacing:3.564000px;}
.ls1b_c01055{letter-spacing:3.573900px;}
.ls1a_c01055{letter-spacing:3.613500px;}
.ls11_c01055{letter-spacing:3.643200px;}
.ls17_c01055{letter-spacing:3.663000px;}
.ls29_c01055{letter-spacing:3.749328px;}
.ls19_c01055{letter-spacing:3.781810px;}
.ls1f_c01055{letter-spacing:3.801610px;}
.ls1c_c01055{letter-spacing:3.880810px;}
.lsf_c01055{letter-spacing:3.910500px;}
.ls14_c01055{letter-spacing:3.920400px;}
.ls8_c01055{letter-spacing:3.969900px;}
.ls7_c01055{letter-spacing:4.059000px;}
.ls24_c01055{letter-spacing:4.078810px;}
.ls16_c01055{letter-spacing:51.321798px;}
.ls12_c01055{letter-spacing:54.172998px;}
.lsb_c01055{letter-spacing:57.024198px;}
.ls10_c01055{letter-spacing:59.875398px;}
.ls26_c01055{letter-spacing:62.726400px;}
.ls23_c01055{letter-spacing:64.152198px;}
.ls2_c01055{letter-spacing:87.390864px;}
.ls1_c01055{letter-spacing:620.636478px;}
.ls5_c01055{letter-spacing:1645.884438px;}
.sc__c01055{text-shadow:none;}
.sc0_c01055{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01055{-webkit-text-stroke:0px transparent;}
.sc0_c01055{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01055{word-spacing:0.000000px;}
._2_c01055{margin-left:-14.887620px;}
._1_c01055{width:2.818530px;}
._3_c01055{width:24.740417px;}
._0_c01055{width:36.727416px;}
._4_c01055{width:758.550672px;}
.fc0_c01055{color:transparent;}
.fs22_c01055{font-size:22.176000px;}
.fs0_c01055{font-size:27.720000px;}
.fs23_c01055{font-size:33.660000px;}
.fs17_c01055{font-size:50.292000px;}
.fsd_c01055{font-size:51.321798px;}
.fs15_c01055{font-size:53.856198px;}
.fsa_c01055{font-size:54.172998px;}
.fs4_c01055{font-size:57.024198px;}
.fs8_c01055{font-size:59.875398px;}
.fs14_c01055{font-size:60.192000px;}
.fs1d_c01055{font-size:62.726400px;}
.fs19_c01055{font-size:64.152198px;}
.fs1c_c01055{font-size:66.330000px;}
.fs3_c01055{font-size:68.112198px;}
.fs5_c01055{font-size:68.508000px;}
.fs18_c01055{font-size:70.488000px;}
.fs1b_c01055{font-size:70.884000px;}
.fsb_c01055{font-size:71.280000px;}
.fs12_c01055{font-size:71.478000px;}
.fs11_c01055{font-size:72.270000px;}
.fs9_c01055{font-size:72.864000px;}
.fse_c01055{font-size:73.260000px;}
.fs20_c01055{font-size:74.844000px;}
.fs10_c01055{font-size:75.636198px;}
.fs13_c01055{font-size:76.032198px;}
.fs16_c01055{font-size:77.616198px;}
.fs7_c01055{font-size:78.210000px;}
.fsc_c01055{font-size:78.408000px;}
.fs6_c01055{font-size:78.804000px;}
.fsf_c01055{font-size:79.200000px;}
.fs2_c01055{font-size:79.398000px;}
.fs1_c01055{font-size:81.180000px;}
.fs1a_c01055{font-size:81.576198px;}
.fs1e_c01055{font-size:88.704000px;}
.fs21_c01055{font-size:107.712198px;}
.fs1f_c01055{font-size:142.560000px;}
.y0_c01055{bottom:0.000000px;}
.y1_c01055{bottom:76.500000px;}
.y1d_c01055{bottom:153.520335px;}
.y1c_c01055{bottom:161.361135px;}
.y1b_c01055{bottom:193.432185px;}
.y1a_c01055{bottom:226.933785px;}
.y19_c01055{bottom:259.371135px;}
.y18_c01055{bottom:291.803535px;}
.y17_c01055{bottom:323.166735px;}
.y16_c01055{bottom:355.950585px;}
.y15_c01055{bottom:388.026585px;}
.y14_c01055{bottom:414.756585px;}
.y12_c01055{bottom:420.102585px;}
.y13_c01055{bottom:420.463935px;}
.y11_c01055{bottom:452.183535px;}
.y10_c01055{bottom:483.185385px;}
.yf_c01055{bottom:546.268185px;}
.ye_c01055{bottom:578.349135px;}
.yd_c01055{bottom:610.063785px;}
.yc_c01055{bottom:642.501135px;}
.yb_c01055{bottom:674.577135px;}
.ya_c01055{bottom:707.004585px;}
.y9_c01055{bottom:738.729135px;}
.y8_c01055{bottom:770.443785px;}
.y7_c01055{bottom:802.163385px;}
.y6_c01055{bottom:834.595785px;}
.y5_c01055{bottom:897.327135px;}
.y2_c01055{bottom:920.136735px;}
.y4_c01055{bottom:929.754585px;}
.y3_c01055{bottom:1058.771385px;}
.h2_c01055{height:28.911094px;}
.hf_c01055{height:34.180317px;}
.hc_c01055{height:36.079217px;}
.h6_c01055{height:37.978116px;}
.ha_c01055{height:39.877015px;}
.h1f_c01055{height:41.775782px;}
.h1b_c01055{height:42.725364px;}
.h19_c01055{height:52.452984px;}
.h17_c01055{height:52.856913px;}
.h22_c01055{height:62.961874px;}
.h1e_c01055{height:69.180117px;}
.h1d_c01055{height:69.568770px;}
.h14_c01055{height:70.151748px;}
.h13_c01055{height:70.929053px;}
.h5_c01055{height:71.038894px;}
.h7_c01055{height:71.451703px;}
.hb_c01055{height:71.512031px;}
.h10_c01055{height:71.900684px;}
.h23_c01055{height:73.455293px;}
.h1a_c01055{height:73.516781px;}
.h12_c01055{height:74.232792px;}
.hd_c01055{height:74.342813px;}
.h18_c01055{height:74.621444px;}
.h16_c01055{height:76.176054px;}
.h9_c01055{height:76.758838px;}
.he_c01055{height:76.953164px;}
.h8_c01055{height:77.341816px;}
.h11_c01055{height:77.730469px;}
.h4_c01055{height:77.924795px;}
.h15_c01055{height:79.299207px;}
.h3_c01055{height:79.673730px;}
.h1c_c01055{height:80.062577px;}
.h20_c01055{height:92.515500px;}
.h24_c01055{height:105.713632px;}
.h21_c01055{height:139.914844px;}
.h1_c01055{height:1110.000000px;}
.h0_c01055{height:1263.000000px;}
.w1_c01055{width:775.500000px;}
.w0_c01055{width:892.500000px;}
.x0_c01055{left:0.000000px;}
.x2_c01055{left:51.555885px;}
.x1_c01055{left:58.500000px;}
.x65_c01055{left:85.483185px;}
.x25_c01055{left:86.898885px;}
.x4_c01055{left:89.106585px;}
.x4d_c01055{left:118.984785px;}
.x70_c01055{left:120.162885px;}
.x49_c01055{left:130.755885px;}
.x15_c01055{left:142.418085px;}
.x4a_c01055{left:152.966535px;}
.x2c_c01055{left:154.461435px;}
.x71_c01055{left:162.475485px;}
.x72_c01055{left:163.732785px;}
.xd_c01055{left:166.093935px;}
.x5_c01055{left:167.177985px;}
.x68_c01055{left:173.880285px;}
.x16_c01055{left:175.993935px;}
.x1d_c01055{left:177.597735px;}
.x33_c01055{left:186.190935px;}
.x2d_c01055{left:187.552185px;}
.x5c_c01055{left:196.001835px;}
.x4e_c01055{left:197.818485px;}
.x6_c01055{left:199.244085px;}
.x44_c01055{left:206.654235px;}
.x62_c01055{left:208.267935px;}
.xe_c01055{left:209.500485px;}
.x45_c01055{left:219.786585px;}
.x3c_c01055{left:232.428885px;}
.x1e_c01055{left:233.542635px;}
.x66_c01055{left:240.873585px;}
.x5d_c01055{left:242.417985px;}
.x69_c01055{left:251.570535px;}
.x46_c01055{left:255.931485px;}
.x58_c01055{left:263.005035px;}
.x26_c01055{left:264.395985px;}
.x2e_c01055{left:266.341335px;}
.x63_c01055{left:275.548335px;}
.xf_c01055{left:277.419435px;}
.x3d_c01055{left:287.398635px;}
.x2f_c01055{left:297.932235px;}
.x47_c01055{left:308.723235px;}
.x10_c01055{left:310.015185px;}
.x17_c01055{left:311.198235px;}
.x6d_c01055{left:314.306835px;}
.x34_c01055{left:316.469985px;}
.x35_c01055{left:318.969735px;}
.x3e_c01055{left:320.845785px;}
.x6e_c01055{left:322.890135px;}
.x4f_c01055{left:330.884385px;}
.x36_c01055{left:332.151585px;}
.x18_c01055{left:342.125835px;}
.x1f_c01055{left:343.561335px;}
.x37_c01055{left:344.833485px;}
.x6a_c01055{left:352.852485px;}
.x7_c01055{left:355.441335px;}
.x5e_c01055{left:363.113835px;}
.x3b_c01055{left:364.965135px;}
.x4b_c01055{left:375.761085px;}
.x11_c01055{left:377.919285px;}
.x8_c01055{left:387.844035px;}
.x12_c01055{left:399.535935px;}
.x50_c01055{left:409.262685px;}
.x6f_c01055{left:411.104085px;}
.x19_c01055{left:420.627885px;}
.x9_c01055{left:421.914885px;}
.x38_c01055{left:431.800035px;}
.x3f_c01055{left:441.883185px;}
.x13_c01055{left:443.858235px;}
.x64_c01055{left:452.674185px;}
.x1a_c01055{left:453.782985px;}
.x27_c01055{left:464.346285px;}
.x54_c01055{left:474.473985px;}
.x14_c01055{left:476.874735px;}
.x20_c01055{left:481.433685px;}
.x28_c01055{left:486.561885px;}
.x6b_c01055{left:496.189635px;}
.x51_c01055{left:498.362685px;}
.x59_c01055{left:507.985485px;}
.x30_c01055{left:509.079435px;}
.x21_c01055{left:510.109035px;}
.x5b_c01055{left:511.955385px;}
.x67_c01055{left:516.727185px;}
.x55_c01055{left:518.692335px;}
.x40_c01055{left:519.890235px;}
.x29_c01055{left:521.083185px;}
.xa_c01055{left:531.893985px;}
.x1b_c01055{left:542.858235px;}
.x5a_c01055{left:551.797935px;}
.x22_c01055{left:553.961085px;}
.x52_c01055{left:562.336485px;}
.x39_c01055{left:563.965035px;}
.x41_c01055{left:584.834235px;}
.x5f_c01055{left:594.491685px;}
.x3a_c01055{left:595.526235px;}
.x48_c01055{left:597.075585px;}
.x6c_c01055{left:605.129235px;}
.x42_c01055{left:617.583435px;}
.x2a_c01055{left:619.563435px;}
.x60_c01055{left:628.631835px;}
.x4c_c01055{left:640.388085px;}
.x31_c01055{left:642.338385px;}
.xb_c01055{left:653.748135px;}
.x56_c01055{left:662.687835px;}
.x23_c01055{left:664.860885px;}
.x2b_c01055{left:673.221435px;}
.x3_c01055{left:681.517635px;}
.x53_c01055{left:683.868885px;}
.x43_c01055{left:684.987585px;}
.x1c_c01055{left:686.017185px;}
.xc_c01055{left:687.883335px;}
.x57_c01055{left:695.050935px;}
.x24_c01055{left:696.778485px;}
.x61_c01055{left:706.525035px;}
.x32_c01055{left:708.613935px;}
@media print{
.v0_c01055{vertical-align:0.000000pt;}
.v2_c01055{vertical-align:21.542400pt;}
.v1_c01055{vertical-align:24.076800pt;}
.ls28_c01055{letter-spacing:-4.435200pt;}
.ls27_c01055{letter-spacing:-2.759680pt;}
.lsa_c01055{letter-spacing:-2.470160pt;}
.ls20_c01055{letter-spacing:-2.223760pt;}
.lse_c01055{letter-spacing:-1.912610pt;}
.ls1e_c01055{letter-spacing:-1.675526pt;}
.lsd_c01055{letter-spacing:-1.489154pt;}
.ls6_c01055{letter-spacing:0.000000pt;}
.ls4_c01055{letter-spacing:0.211992pt;}
.ls18_c01055{letter-spacing:0.846560pt;}
.ls3_c01055{letter-spacing:0.875142pt;}
.ls0_c01055{letter-spacing:0.945613pt;}
.ls21_c01055{letter-spacing:2.235200pt;}
.ls1d_c01055{letter-spacing:2.300778pt;}
.ls2a_c01055{letter-spacing:2.851209pt;}
.ls15_c01055{letter-spacing:2.935962pt;}
.ls25_c01055{letter-spacing:2.948000pt;}
.ls9_c01055{letter-spacing:3.027209pt;}
.lsc_c01055{letter-spacing:3.044800pt;}
.ls22_c01055{letter-spacing:3.132800pt;}
.ls13_c01055{letter-spacing:3.168000pt;}
.ls1b_c01055{letter-spacing:3.176800pt;}
.ls1a_c01055{letter-spacing:3.212000pt;}
.ls11_c01055{letter-spacing:3.238400pt;}
.ls17_c01055{letter-spacing:3.256000pt;}
.ls29_c01055{letter-spacing:3.332736pt;}
.ls19_c01055{letter-spacing:3.361609pt;}
.ls1f_c01055{letter-spacing:3.379209pt;}
.ls1c_c01055{letter-spacing:3.449609pt;}
.lsf_c01055{letter-spacing:3.476000pt;}
.ls14_c01055{letter-spacing:3.484800pt;}
.ls8_c01055{letter-spacing:3.528800pt;}
.ls7_c01055{letter-spacing:3.608000pt;}
.ls24_c01055{letter-spacing:3.625609pt;}
.ls16_c01055{letter-spacing:45.619376pt;}
.ls12_c01055{letter-spacing:48.153776pt;}
.lsb_c01055{letter-spacing:50.688176pt;}
.ls10_c01055{letter-spacing:53.222576pt;}
.ls26_c01055{letter-spacing:55.756800pt;}
.ls23_c01055{letter-spacing:57.024176pt;}
.ls2_c01055{letter-spacing:77.680768pt;}
.ls1_c01055{letter-spacing:551.676869pt;}
.ls5_c01055{letter-spacing:1463.008389pt;}
.ws0_c01055{word-spacing:0.000000pt;}
._2_c01055{margin-left:-13.233440pt;}
._1_c01055{width:2.505360pt;}
._3_c01055{width:21.991482pt;}
._0_c01055{width:32.646592pt;}
._4_c01055{width:674.267264pt;}
.fs22_c01055{font-size:19.712000pt;}
.fs0_c01055{font-size:24.640000pt;}
.fs23_c01055{font-size:29.920000pt;}
.fs17_c01055{font-size:44.704000pt;}
.fsd_c01055{font-size:45.619376pt;}
.fs15_c01055{font-size:47.872176pt;}
.fsa_c01055{font-size:48.153776pt;}
.fs4_c01055{font-size:50.688176pt;}
.fs8_c01055{font-size:53.222576pt;}
.fs14_c01055{font-size:53.504000pt;}
.fs1d_c01055{font-size:55.756800pt;}
.fs19_c01055{font-size:57.024176pt;}
.fs1c_c01055{font-size:58.960000pt;}
.fs3_c01055{font-size:60.544176pt;}
.fs5_c01055{font-size:60.896000pt;}
.fs18_c01055{font-size:62.656000pt;}
.fs1b_c01055{font-size:63.008000pt;}
.fsb_c01055{font-size:63.360000pt;}
.fs12_c01055{font-size:63.536000pt;}
.fs11_c01055{font-size:64.240000pt;}
.fs9_c01055{font-size:64.768000pt;}
.fse_c01055{font-size:65.120000pt;}
.fs20_c01055{font-size:66.528000pt;}
.fs10_c01055{font-size:67.232176pt;}
.fs13_c01055{font-size:67.584176pt;}
.fs16_c01055{font-size:68.992176pt;}
.fs7_c01055{font-size:69.520000pt;}
.fsc_c01055{font-size:69.696000pt;}
.fs6_c01055{font-size:70.048000pt;}
.fsf_c01055{font-size:70.400000pt;}
.fs2_c01055{font-size:70.576000pt;}
.fs1_c01055{font-size:72.160000pt;}
.fs1a_c01055{font-size:72.512176pt;}
.fs1e_c01055{font-size:78.848000pt;}
.fs21_c01055{font-size:95.744176pt;}
.fs1f_c01055{font-size:126.720000pt;}
.y0_c01055{bottom:0.000000pt;}
.y1_c01055{bottom:68.000000pt;}
.y1d_c01055{bottom:136.462520pt;}
.y1c_c01055{bottom:143.432120pt;}
.y1b_c01055{bottom:171.939720pt;}
.y1a_c01055{bottom:201.718920pt;}
.y19_c01055{bottom:230.552120pt;}
.y18_c01055{bottom:259.380920pt;}
.y17_c01055{bottom:287.259320pt;}
.y16_c01055{bottom:316.400520pt;}
.y15_c01055{bottom:344.912520pt;}
.y14_c01055{bottom:368.672520pt;}
.y12_c01055{bottom:373.424520pt;}
.y13_c01055{bottom:373.745720pt;}
.y11_c01055{bottom:401.940920pt;}
.y10_c01055{bottom:429.498120pt;}
.yf_c01055{bottom:485.571720pt;}
.ye_c01055{bottom:514.088120pt;}
.yd_c01055{bottom:542.278920pt;}
.yc_c01055{bottom:571.112120pt;}
.yb_c01055{bottom:599.624120pt;}
.ya_c01055{bottom:628.448520pt;}
.y9_c01055{bottom:656.648120pt;}
.y8_c01055{bottom:684.838920pt;}
.y7_c01055{bottom:713.034120pt;}
.y6_c01055{bottom:741.862920pt;}
.y5_c01055{bottom:797.624120pt;}
.y2_c01055{bottom:817.899320pt;}
.y4_c01055{bottom:826.448520pt;}
.y3_c01055{bottom:941.130120pt;}
.h2_c01055{height:25.698750pt;}
.hf_c01055{height:30.382504pt;}
.hc_c01055{height:32.070415pt;}
.h6_c01055{height:33.758325pt;}
.ha_c01055{height:35.446236pt;}
.h1f_c01055{height:37.134029pt;}
.h1b_c01055{height:37.978101pt;}
.h19_c01055{height:46.624875pt;}
.h17_c01055{height:46.983923pt;}
.h22_c01055{height:55.966110pt;}
.h1e_c01055{height:61.493438pt;}
.h1d_c01055{height:61.838906pt;}
.h14_c01055{height:62.357109pt;}
.h13_c01055{height:63.048047pt;}
.h5_c01055{height:63.145684pt;}
.h7_c01055{height:63.512625pt;}
.hb_c01055{height:63.566250pt;}
.h10_c01055{height:63.911719pt;}
.h23_c01055{height:65.293594pt;}
.h1a_c01055{height:65.348250pt;}
.h12_c01055{height:65.984704pt;}
.hd_c01055{height:66.082500pt;}
.h18_c01055{height:66.330173pt;}
.h16_c01055{height:67.712048pt;}
.h9_c01055{height:68.230078pt;}
.he_c01055{height:68.402813pt;}
.h8_c01055{height:68.748281pt;}
.h11_c01055{height:69.093750pt;}
.h4_c01055{height:69.266484pt;}
.h15_c01055{height:70.488184pt;}
.h3_c01055{height:70.821094pt;}
.h1c_c01055{height:71.166735pt;}
.h20_c01055{height:82.236000pt;}
.h24_c01055{height:93.967673pt;}
.h21_c01055{height:124.368750pt;}
.h1_c01055{height:986.666667pt;}
.h0_c01055{height:1122.666667pt;}
.w1_c01055{width:689.333333pt;}
.w0_c01055{width:793.333333pt;}
.x0_c01055{left:0.000000pt;}
.x2_c01055{left:45.827453pt;}
.x1_c01055{left:52.000000pt;}
.x65_c01055{left:75.985053pt;}
.x25_c01055{left:77.243453pt;}
.x4_c01055{left:79.205853pt;}
.x4d_c01055{left:105.764253pt;}
.x70_c01055{left:106.811453pt;}
.x49_c01055{left:116.227453pt;}
.x15_c01055{left:126.593853pt;}
.x4a_c01055{left:135.970253pt;}
.x2c_c01055{left:137.299053pt;}
.x71_c01055{left:144.422653pt;}
.x72_c01055{left:145.540253pt;}
.xd_c01055{left:147.639053pt;}
.x5_c01055{left:148.602653pt;}
.x68_c01055{left:154.560253pt;}
.x16_c01055{left:156.439053pt;}
.x1d_c01055{left:157.864653pt;}
.x33_c01055{left:165.503053pt;}
.x2d_c01055{left:166.713053pt;}
.x5c_c01055{left:174.223853pt;}
.x4e_c01055{left:175.838653pt;}
.x6_c01055{left:177.105853pt;}
.x44_c01055{left:183.692653pt;}
.x62_c01055{left:185.127053pt;}
.xe_c01055{left:186.222653pt;}
.x45_c01055{left:195.365853pt;}
.x3c_c01055{left:206.603453pt;}
.x1e_c01055{left:207.593453pt;}
.x66_c01055{left:214.109853pt;}
.x5d_c01055{left:215.482653pt;}
.x69_c01055{left:223.618253pt;}
.x46_c01055{left:227.494653pt;}
.x58_c01055{left:233.782253pt;}
.x26_c01055{left:235.018653pt;}
.x2e_c01055{left:236.747853pt;}
.x63_c01055{left:244.931853pt;}
.xf_c01055{left:246.595053pt;}
.x3d_c01055{left:255.465453pt;}
.x2f_c01055{left:264.828653pt;}
.x47_c01055{left:274.420653pt;}
.x10_c01055{left:275.569053pt;}
.x17_c01055{left:276.620653pt;}
.x6d_c01055{left:279.383853pt;}
.x34_c01055{left:281.306653pt;}
.x35_c01055{left:283.528653pt;}
.x3e_c01055{left:285.196253pt;}
.x6e_c01055{left:287.013453pt;}
.x4f_c01055{left:294.119453pt;}
.x36_c01055{left:295.245853pt;}
.x18_c01055{left:304.111853pt;}
.x1f_c01055{left:305.387853pt;}
.x37_c01055{left:306.518653pt;}
.x6a_c01055{left:313.646653pt;}
.x7_c01055{left:315.947853pt;}
.x5e_c01055{left:322.767853pt;}
.x3b_c01055{left:324.413453pt;}
.x4b_c01055{left:334.009853pt;}
.x11_c01055{left:335.928253pt;}
.x8_c01055{left:344.750253pt;}
.x12_c01055{left:355.143053pt;}
.x50_c01055{left:363.789053pt;}
.x6f_c01055{left:365.425853pt;}
.x19_c01055{left:373.891453pt;}
.x9_c01055{left:375.035453pt;}
.x38_c01055{left:383.822253pt;}
.x3f_c01055{left:392.785053pt;}
.x13_c01055{left:394.540653pt;}
.x64_c01055{left:402.377053pt;}
.x1a_c01055{left:403.362653pt;}
.x27_c01055{left:412.752253pt;}
.x54_c01055{left:421.754653pt;}
.x14_c01055{left:423.888653pt;}
.x20_c01055{left:427.941053pt;}
.x28_c01055{left:432.499453pt;}
.x6b_c01055{left:441.057453pt;}
.x51_c01055{left:442.989053pt;}
.x59_c01055{left:451.542653pt;}
.x30_c01055{left:452.515053pt;}
.x21_c01055{left:453.430253pt;}
.x5b_c01055{left:455.071453pt;}
.x67_c01055{left:459.313053pt;}
.x55_c01055{left:461.059853pt;}
.x40_c01055{left:462.124653pt;}
.x29_c01055{left:463.185053pt;}
.xa_c01055{left:472.794653pt;}
.x1b_c01055{left:482.540653pt;}
.x5a_c01055{left:490.487053pt;}
.x22_c01055{left:492.409853pt;}
.x52_c01055{left:499.854653pt;}
.x39_c01055{left:501.302253pt;}
.x41_c01055{left:519.852653pt;}
.x5f_c01055{left:528.437053pt;}
.x3a_c01055{left:529.356653pt;}
.x48_c01055{left:530.733853pt;}
.x6c_c01055{left:537.892653pt;}
.x42_c01055{left:548.963053pt;}
.x2a_c01055{left:550.723053pt;}
.x60_c01055{left:558.783853pt;}
.x4c_c01055{left:569.233853pt;}
.x31_c01055{left:570.967453pt;}
.xb_c01055{left:581.109453pt;}
.x56_c01055{left:589.055853pt;}
.x23_c01055{left:590.987453pt;}
.x2b_c01055{left:598.419053pt;}
.x3_c01055{left:605.793453pt;}
.x53_c01055{left:607.883453pt;}
.x43_c01055{left:608.877853pt;}
.x1c_c01055{left:609.793053pt;}
.xc_c01055{left:611.451853pt;}
.x57_c01055{left:617.823053pt;}
.x24_c01055{left:619.358653pt;}
.x61_c01055{left:628.022253pt;}
.x32_c01055{left:629.879053pt;}
}





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

.ir_c01056:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01056{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01056;src:url('chunks/assets/font_aed895ba305d80e5d984b6c3.woff2')format("woff");}.ff1_c01056{font-family:ff1_c01056;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01056;src:url('chunks/assets/font_3beb9650bf069755c010b8a5.woff2')format("woff");}.ff2_c01056{font-family:ff2_c01056;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01056;src:url('chunks/assets/font_aa33daeaaaaaf73b418eb08e.woff2')format("woff");}.ff3_c01056{font-family:ff3_c01056;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01056;src:url('chunks/assets/font_dd063ad4ff2c27683ad4aa27.woff2')format("woff");}.ff4_c01056{font-family:ff4_c01056;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01056;src:url('chunks/assets/font_4b2181d8dba5016492095f41.woff2')format("woff");}.ff5_c01056{font-family:ff5_c01056;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mab_c01056{transform:matrix(0.047873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.047873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.047873,0.000000,0.000000,0.250000,0,0);}
.maa_c01056{transform:matrix(0.053192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053192,0.000000,0.000000,0.250000,0,0);}
.mb2_c01056{transform:matrix(0.069150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.069150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.069150,0.000000,0.000000,0.250000,0,0);}
.mb1_c01056{transform:matrix(0.078458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078458,0.000000,0.000000,0.250000,0,0);}
.m5b_c01056{transform:matrix(0.089815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089815,0.000000,0.000000,0.250000,0,0);}
.maf_c01056{transform:matrix(0.090426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090426,0.000000,0.000000,0.250000,0,0);}
.me_c01056{transform:matrix(0.100400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100400,0.000000,0.000000,0.250000,0,0);}
.m15_c01056{transform:matrix(0.104166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104166,0.000000,0.000000,0.250000,0,0);}
.mad_c01056{transform:matrix(0.108508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108508,0.000000,0.000000,0.250000,0,0);}
.mb0_c01056{transform:matrix(0.111703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111703,0.000000,0.000000,0.250000,0,0);}
.mac_c01056{transform:matrix(0.115502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115502,0.000000,0.000000,0.250000,0,0);}
.m10_c01056{transform:matrix(0.118270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118270,0.000000,0.000000,0.250000,0,0);}
.mae_c01056{transform:matrix(0.127660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127660,0.000000,0.000000,0.250000,0,0);}
.m21_c01056{transform:matrix(0.128409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128409,0.000000,0.000000,0.250000,0,0);}
.m96_c01056{transform:matrix(0.142442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142442,0.000000,0.000000,0.250000,0,0);}
.m75_c01056{transform:matrix(0.146342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146342,0.000000,0.000000,0.250000,0,0);}
.md_c01056{transform:matrix(0.154167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154167,0.000000,0.000000,0.250000,0,0);}
.m7a_c01056{transform:matrix(0.156177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156177,0.000000,0.000000,0.250000,0,0);}
.m8c_c01056{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_c01056{transform:matrix(0.170801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170801,0.000000,0.000000,0.250000,0,0);}
.m45_c01056{transform:matrix(0.176786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176786,0.000000,0.000000,0.250000,0,0);}
.m35_c01056{transform:matrix(0.179761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179761,0.000000,0.000000,0.250000,0,0);}
.m8b_c01056{transform:matrix(0.185898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185898,0.000000,0.000000,0.250000,0,0);}
.m1f_c01056{transform:matrix(0.194643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194643,0.000000,0.000000,0.250000,0,0);}
.m3c_c01056{transform:matrix(0.197368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197368,0.000000,0.000000,0.250000,0,0);}
.m1_c01056{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m4c_c01056{transform:matrix(0.214846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214846,0.000000,0.000000,0.250000,0,0);}
.m20_c01056{transform:matrix(0.234266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234266,0.000000,0.000000,0.250000,0,0);}
.m0_c01056{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01056{transform:matrix(0.251541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251541,0.000000,0.000000,0.250000,0,0);}
.m4b_c01056{transform:matrix(0.252271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252271,0.000000,0.000000,0.250000,0,0);}
.m1e_c01056{transform:matrix(0.254671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254671,0.000000,0.000000,0.250000,0,0);}
.m99_c01056{transform:matrix(0.256693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256693,0.000000,0.000000,0.250000,0,0);}
.m34_c01056{transform:matrix(0.257088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257088,0.000000,0.000000,0.250000,0,0);}
.m2_c01056{transform:matrix(0.257108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257108,0.000000,0.000000,0.250000,0,0);}
.m6c_c01056{transform:matrix(0.259611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259611,0.000000,0.000000,0.250000,0,0);}
.m91_c01056{transform:matrix(0.262673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262673,0.000000,0.000000,0.250000,0,0);}
.m16_c01056{transform:matrix(0.263376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263376,0.000000,0.000000,0.250000,0,0);}
.m49_c01056{transform:matrix(0.264013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264013,0.000000,0.000000,0.250000,0,0);}
.m7c_c01056{transform:matrix(0.265728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265728,0.000000,0.000000,0.250000,0,0);}
.mb3_c01056{transform:matrix(0.266550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266550,0.000000,0.000000,0.250000,0,0);}
.m82_c01056{transform:matrix(0.267442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267442,0.000000,0.000000,0.250000,0,0);}
.m8f_c01056{transform:matrix(0.267450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267450,0.000000,0.000000,0.250000,0,0);}
.m64_c01056{transform:matrix(0.267565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267565,0.000000,0.000000,0.250000,0,0);}
.m9_c01056{transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);}
.m6b_c01056{transform:matrix(0.268679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268679,0.000000,0.000000,0.250000,0,0);}
.m50_c01056{transform:matrix(0.268785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268785,0.000000,0.000000,0.250000,0,0);}
.m31_c01056{transform:matrix(0.270108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270108,0.000000,0.000000,0.250000,0,0);}
.m18_c01056{transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);}
.m6f_c01056{transform:matrix(0.271044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271044,0.000000,0.000000,0.250000,0,0);}
.m1b_c01056{transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);}
.m78_c01056{transform:matrix(0.271644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271644,0.000000,0.000000,0.250000,0,0);}
.m87_c01056{transform:matrix(0.271757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271757,0.000000,0.000000,0.250000,0,0);}
.m2d_c01056{transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);}
.ma6_c01056{transform:matrix(0.273573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273573,0.000000,0.000000,0.250000,0,0);}
.m30_c01056{transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);}
.m4e_c01056{transform:matrix(0.274610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274610,0.000000,0.000000,0.250000,0,0);}
.m2a_c01056{transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);}
.m81_c01056{transform:matrix(0.276584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276584,0.000000,0.000000,0.250000,0,0);}
.m90_c01056{transform:matrix(0.276847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276847,0.000000,0.000000,0.250000,0,0);}
.ma9_c01056{transform:matrix(0.278463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278463,0.000000,0.000000,0.250000,0,0);}
.ma0_c01056{transform:matrix(0.278956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278956,0.000000,0.000000,0.250000,0,0);}
.m66_c01056{transform:matrix(0.280175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280175,0.000000,0.000000,0.250000,0,0);}
.mc_c01056{transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);}
.m6_c01056{transform:matrix(0.281012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281012,0.000000,0.000000,0.250000,0,0);}
.m33_c01056{transform:matrix(0.281553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281553,0.000000,0.000000,0.250000,0,0);}
.ma8_c01056{transform:matrix(0.281817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281817,0.000000,0.000000,0.250000,0,0);}
.m4a_c01056{transform:matrix(0.283339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283339,0.000000,0.000000,0.250000,0,0);}
.m2b_c01056{transform:matrix(0.283359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283359,0.000000,0.000000,0.250000,0,0);}
.m71_c01056{transform:matrix(0.283384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283384,0.000000,0.000000,0.250000,0,0);}
.m43_c01056{transform:matrix(0.286620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286620,0.000000,0.000000,0.250000,0,0);}
.m48_c01056{transform:matrix(0.287374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287374,0.000000,0.000000,0.250000,0,0);}
.m9b_c01056{transform:matrix(0.288227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288227,0.000000,0.000000,0.250000,0,0);}
.m19_c01056{transform:matrix(0.288330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288330,0.000000,0.000000,0.250000,0,0);}
.m6a_c01056{transform:matrix(0.288781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288781,0.000000,0.000000,0.250000,0,0);}
.m7d_c01056{transform:matrix(0.289082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289082,0.000000,0.000000,0.250000,0,0);}
.m44_c01056{transform:matrix(0.289826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289826,0.000000,0.000000,0.250000,0,0);}
.m46_c01056{transform:matrix(0.289912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289912,0.000000,0.000000,0.250000,0,0);}
.m8d_c01056{transform:matrix(0.290201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290201,0.000000,0.000000,0.250000,0,0);}
.m26_c01056{transform:matrix(0.291181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291181,0.000000,0.000000,0.250000,0,0);}
.m13_c01056{transform:matrix(0.291194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291194,0.000000,0.000000,0.250000,0,0);}
.m12_c01056{transform:matrix(0.291267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291267,0.000000,0.000000,0.250000,0,0);}
.m5e_c01056{transform:matrix(0.291495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291495,0.000000,0.000000,0.250000,0,0);}
.m9e_c01056{transform:matrix(0.292275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292275,0.000000,0.000000,0.250000,0,0);}
.m61_c01056{transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);}
.m8_c01056{transform:matrix(0.294423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294423,0.000000,0.000000,0.250000,0,0);}
.ma3_c01056{transform:matrix(0.294503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294503,0.000000,0.000000,0.250000,0,0);}
.mb_c01056{transform:matrix(0.294993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294993,0.000000,0.000000,0.250000,0,0);}
.m2f_c01056{transform:matrix(0.295194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295194,0.000000,0.000000,0.250000,0,0);}
.m89_c01056{transform:matrix(0.295366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295366,0.000000,0.000000,0.250000,0,0);}
.m60_c01056{transform:matrix(0.296044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296044,0.000000,0.000000,0.250000,0,0);}
.m24_c01056{transform:matrix(0.296335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296335,0.000000,0.000000,0.250000,0,0);}
.m22_c01056{transform:matrix(0.296995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296995,0.000000,0.000000,0.250000,0,0);}
.m3d_c01056{transform:matrix(0.298998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298998,0.000000,0.000000,0.250000,0,0);}
.m17_c01056{transform:matrix(0.299688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299688,0.000000,0.000000,0.250000,0,0);}
.m88_c01056{transform:matrix(0.299877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299877,0.000000,0.000000,0.250000,0,0);}
.m54_c01056{transform:matrix(0.299939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299939,0.000000,0.000000,0.250000,0,0);}
.m5c_c01056{transform:matrix(0.300563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300563,0.000000,0.000000,0.250000,0,0);}
.m97_c01056{transform:matrix(0.301673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301673,0.000000,0.000000,0.250000,0,0);}
.m69_c01056{transform:matrix(0.302331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302331,0.000000,0.000000,0.250000,0,0);}
.m38_c01056{transform:matrix(0.302666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302666,0.000000,0.000000,0.250000,0,0);}
.m5f_c01056{transform:matrix(0.302723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302723,0.000000,0.000000,0.250000,0,0);}
.m59_c01056{transform:matrix(0.302832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302832,0.000000,0.000000,0.250000,0,0);}
.m79_c01056{transform:matrix(0.303281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303281,0.000000,0.000000,0.250000,0,0);}
.m2c_c01056{transform:matrix(0.303939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303939,0.000000,0.000000,0.250000,0,0);}
.m8e_c01056{transform:matrix(0.304713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304713,0.000000,0.000000,0.250000,0,0);}
.m3_c01056{transform:matrix(0.304873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304873,0.000000,0.000000,0.250000,0,0);}
.m7f_c01056{transform:matrix(0.305389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305389,0.000000,0.000000,0.250000,0,0);}
.ma4_c01056{transform:matrix(0.305461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305461,0.000000,0.000000,0.250000,0,0);}
.m80_c01056{transform:matrix(0.305491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305491,0.000000,0.000000,0.250000,0,0);}
.m95_c01056{transform:matrix(0.305654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305654,0.000000,0.000000,0.250000,0,0);}
.ma7_c01056{transform:matrix(0.305739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305739,0.000000,0.000000,0.250000,0,0);}
.m70_c01056{transform:matrix(0.305741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305741,0.000000,0.000000,0.250000,0,0);}
.m5_c01056{transform:matrix(0.306031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306031,0.000000,0.000000,0.250000,0,0);}
.m85_c01056{transform:matrix(0.307360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307360,0.000000,0.000000,0.250000,0,0);}
.m3e_c01056{transform:matrix(0.309437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309437,0.000000,0.000000,0.250000,0,0);}
.m42_c01056{transform:matrix(0.310872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310872,0.000000,0.000000,0.250000,0,0);}
.m7b_c01056{transform:matrix(0.311025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311025,0.000000,0.000000,0.250000,0,0);}
.m11_c01056{transform:matrix(0.311413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311413,0.000000,0.000000,0.250000,0,0);}
.m67_c01056{transform:matrix(0.311573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311573,0.000000,0.000000,0.250000,0,0);}
.m5d_c01056{transform:matrix(0.311688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311688,0.000000,0.000000,0.250000,0,0);}
.m4f_c01056{transform:matrix(0.311946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311946,0.000000,0.000000,0.250000,0,0);}
.m28_c01056{transform:matrix(0.312698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312698,0.000000,0.000000,0.250000,0,0);}
.m4_c01056{transform:matrix(0.313067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313067,0.000000,0.000000,0.250000,0,0);}
.m2e_c01056{transform:matrix(0.314566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314566,0.000000,0.000000,0.250000,0,0);}
.m47_c01056{transform:matrix(0.314588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314588,0.000000,0.000000,0.250000,0,0);}
.m62_c01056{transform:matrix(0.316292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316292,0.000000,0.000000,0.250000,0,0);}
.ma5_c01056{transform:matrix(0.316495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316495,0.000000,0.000000,0.250000,0,0);}
.mf_c01056{transform:matrix(0.316788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316788,0.000000,0.000000,0.250000,0,0);}
.m72_c01056{transform:matrix(0.316802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316802,0.000000,0.000000,0.250000,0,0);}
.m93_c01056{transform:matrix(0.318122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318122,0.000000,0.000000,0.250000,0,0);}
.m83_c01056{transform:matrix(0.318809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318809,0.000000,0.000000,0.250000,0,0);}
.m52_c01056{transform:matrix(0.320046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320046,0.000000,0.000000,0.250000,0,0);}
.m39_c01056{transform:matrix(0.320451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320451,0.000000,0.000000,0.250000,0,0);}
.m68_c01056{transform:matrix(0.321105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321105,0.000000,0.000000,0.250000,0,0);}
.m55_c01056{transform:matrix(0.321913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321913,0.000000,0.000000,0.250000,0,0);}
.m58_c01056{transform:matrix(0.321968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321968,0.000000,0.000000,0.250000,0,0);}
.m3b_c01056{transform:matrix(0.322016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322016,0.000000,0.000000,0.250000,0,0);}
.m74_c01056{transform:matrix(0.322730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322730,0.000000,0.000000,0.250000,0,0);}
.m6d_c01056{transform:matrix(0.323186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323186,0.000000,0.000000,0.250000,0,0);}
.mb4_c01056{transform:matrix(0.323730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323730,0.000000,0.000000,0.250000,0,0);}
.m40_c01056{transform:matrix(0.323979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323979,0.000000,0.000000,0.250000,0,0);}
.m73_c01056{transform:matrix(0.325424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325424,0.000000,0.000000,0.250000,0,0);}
.m9d_c01056{transform:matrix(0.325561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325561,0.000000,0.000000,0.250000,0,0);}
.m5a_c01056{transform:matrix(0.326089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326089,0.000000,0.000000,0.250000,0,0);}
.m53_c01056{transform:matrix(0.326197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326197,0.000000,0.000000,0.250000,0,0);}
.m1d_c01056{transform:matrix(0.326772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326772,0.000000,0.000000,0.250000,0,0);}
.ma1_c01056{transform:matrix(0.326868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326868,0.000000,0.000000,0.250000,0,0);}
.m92_c01056{transform:matrix(0.327021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327021,0.000000,0.000000,0.250000,0,0);}
.m7e_c01056{transform:matrix(0.327345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327345,0.000000,0.000000,0.250000,0,0);}
.m1a_c01056{transform:matrix(0.327352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327352,0.000000,0.000000,0.250000,0,0);}
.m4d_c01056{transform:matrix(0.330362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330362,0.000000,0.000000,0.250000,0,0);}
.m27_c01056{transform:matrix(0.331410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331410,0.000000,0.000000,0.250000,0,0);}
.m94_c01056{transform:matrix(0.331476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331476,0.000000,0.000000,0.250000,0,0);}
.m37_c01056{transform:matrix(0.333423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333423,0.000000,0.000000,0.250000,0,0);}
.m63_c01056{transform:matrix(0.333582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333582,0.000000,0.000000,0.250000,0,0);}
.m65_c01056{transform:matrix(0.335265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335265,0.000000,0.000000,0.250000,0,0);}
.m3a_c01056{transform:matrix(0.335295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335295,0.000000,0.000000,0.250000,0,0);}
.m8a_c01056{transform:matrix(0.337282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337282,0.000000,0.000000,0.250000,0,0);}
.m51_c01056{transform:matrix(0.339063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339063,0.000000,0.000000,0.250000,0,0);}
.mb7_c01056{transform:matrix(0.339647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339647,0.000000,0.000000,0.250000,0,0);}
.m25_c01056{transform:matrix(0.341608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341608,0.000000,0.000000,0.250000,0,0);}
.m29_c01056{transform:matrix(0.341818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341818,0.000000,0.000000,0.250000,0,0);}
.mb6_c01056{transform:matrix(0.342031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342031,0.000000,0.000000,0.250000,0,0);}
.ma2_c01056{transform:matrix(0.345137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345137,0.000000,0.000000,0.250000,0,0);}
.m7_c01056{transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);}
.m6e_c01056{transform:matrix(0.345864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345864,0.000000,0.000000,0.250000,0,0);}
.m56_c01056{transform:matrix(0.346023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346023,0.000000,0.000000,0.250000,0,0);}
.m76_c01056{transform:matrix(0.347865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347865,0.000000,0.000000,0.250000,0,0);}
.m23_c01056{transform:matrix(0.348781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348781,0.000000,0.000000,0.250000,0,0);}
.mb5_c01056{transform:matrix(0.349698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349698,0.000000,0.000000,0.250000,0,0);}
.m98_c01056{transform:matrix(0.350099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350099,0.000000,0.000000,0.250000,0,0);}
.m1c_c01056{transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);}
.m41_c01056{transform:matrix(0.352476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352476,0.000000,0.000000,0.250000,0,0);}
.m84_c01056{transform:matrix(0.355252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355252,0.000000,0.000000,0.250000,0,0);}
.m3f_c01056{transform:matrix(0.357996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357996,0.000000,0.000000,0.250000,0,0);}
.m36_c01056{transform:matrix(0.359199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359199,0.000000,0.000000,0.250000,0,0);}
.m86_c01056{transform:matrix(0.363044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363044,0.000000,0.000000,0.250000,0,0);}
.m9c_c01056{transform:matrix(0.375726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375726,0.000000,0.000000,0.250000,0,0);}
.m32_c01056{transform:matrix(0.382664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382664,0.000000,0.000000,0.250000,0,0);}
.m9a_c01056{transform:matrix(0.387076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387076,0.000000,0.000000,0.250000,0,0);}
.m14_c01056{transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);}
.m57_c01056{transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);}
.ma_c01056{transform:matrix(0.405805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405805,0.000000,0.000000,0.250000,0,0);}
.v0_c01056{vertical-align:0.000000px;}
.ls17_c01056{letter-spacing:-2.993767px;}
.ls4_c01056{letter-spacing:-2.647267px;}
.ls13_c01056{letter-spacing:-1.566180px;}
.lsf_c01056{letter-spacing:-0.741235px;}
.ls18_c01056{letter-spacing:-0.673162px;}
.ls0_c01056{letter-spacing:0.000000px;}
.ls15_c01056{letter-spacing:1.081598px;}
.ls12_c01056{letter-spacing:1.558106px;}
.lsd_c01056{letter-spacing:1.800142px;}
.ls5_c01056{letter-spacing:2.534400px;}
.lsa_c01056{letter-spacing:2.551714px;}
.ls2_c01056{letter-spacing:3.375900px;}
.ls8_c01056{letter-spacing:3.479265px;}
.ls14_c01056{letter-spacing:3.554110px;}
.ls6_c01056{letter-spacing:3.573900px;}
.lsb_c01056{letter-spacing:3.752110px;}
.ls3_c01056{letter-spacing:3.781810px;}
.ls9_c01056{letter-spacing:54.172998px;}
.ls10_c01056{letter-spacing:55.598598px;}
.ls1_c01056{letter-spacing:57.024198px;}
.lse_c01056{letter-spacing:58.449798px;}
.ls7_c01056{letter-spacing:59.875398px;}
.ls11_c01056{letter-spacing:61.300998px;}
.lsc_c01056{letter-spacing:64.152198px;}
.ls16_c01056{letter-spacing:67.003200px;}
.sc__c01056{text-shadow:none;}
.sc0_c01056{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01056{-webkit-text-stroke:0px transparent;}
.sc0_c01056{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01056{word-spacing:-18.909050px;}
.ws1_c01056{word-spacing:0.000000px;}
._4_c01056{margin-left:-10.097780px;}
._0_c01056{margin-left:-1.588444px;}
._3_c01056{width:8.848521px;}
._2_c01056{width:11.381832px;}
._5_c01056{width:22.201575px;}
._1_c01056{width:125.155800px;}
.fc0_c01056{color:transparent;}
.fs12_c01056{font-size:24.552000px;}
.fs9_c01056{font-size:26.928000px;}
.fs0_c01056{font-size:27.720000px;}
.fs1_c01056{font-size:39.204000px;}
.fs8_c01056{font-size:39.600000px;}
.fs15_c01056{font-size:44.748000px;}
.fs5_c01056{font-size:50.688000px;}
.fsa_c01056{font-size:53.856198px;}
.fsb_c01056{font-size:54.172998px;}
.fs11_c01056{font-size:55.598598px;}
.fsc_c01056{font-size:55.836198px;}
.fs2_c01056{font-size:57.024198px;}
.fsf_c01056{font-size:58.449798px;}
.fs7_c01056{font-size:59.875398px;}
.fs14_c01056{font-size:61.300998px;}
.fse_c01056{font-size:64.152198px;}
.fs17_c01056{font-size:67.003200px;}
.fs3_c01056{font-size:67.518000px;}
.fs16_c01056{font-size:71.082198px;}
.fs6_c01056{font-size:71.478000px;}
.fsd_c01056{font-size:75.042198px;}
.fs4_c01056{font-size:75.636198px;}
.fs13_c01056{font-size:76.032198px;}
.fs10_c01056{font-size:79.398000px;}
.fs18_c01056{font-size:85.536198px;}
.y0_c01056{bottom:0.000000px;}
.y1_c01056{bottom:76.500000px;}
.y1e_c01056{bottom:128.572335px;}
.y1d_c01056{bottom:159.222735px;}
.y1c_c01056{bottom:193.788585px;}
.y1b_c01056{bottom:226.582335px;}
.y1a_c01056{bottom:259.009785px;}
.y19_c01056{bottom:272.196585px;}
.y18_c01056{bottom:291.442185px;}
.y2_c01056{bottom:296.075385px;}
.y17_c01056{bottom:323.518185px;}
.y16_c01056{bottom:355.950585px;}
.y15_c01056{bottom:420.102585px;}
.y14_c01056{bottom:451.109385px;}
.y13_c01056{bottom:483.185385px;}
.y12_c01056{bottom:515.622735px;}
.y11_c01056{bottom:547.342335px;}
.y10_c01056{bottom:578.700585px;}
.yf_c01056{bottom:611.489385px;}
.ye_c01056{bottom:643.926735px;}
.yd_c01056{bottom:708.430185px;}
.yc_c01056{bottom:739.793385px;}
.yb_c01056{bottom:766.166985px;}
.ya_c01056{bottom:771.869385px;}
.y9_c01056{bottom:803.232585px;}
.y8_c01056{bottom:833.531535px;}
.y7_c01056{bottom:866.320335px;}
.y6_c01056{bottom:897.327135px;}
.y5_c01056{bottom:930.472335px;}
.y4_c01056{bottom:1054.138185px;}
.y3_c01056{bottom:1062.335385px;}
.h2_c01056{height:28.911094px;}
.hb_c01056{height:36.079217px;}
.h11_c01056{height:37.028666px;}
.h4_c01056{height:37.978116px;}
.h3_c01056{height:38.476582px;}
.hf_c01056{height:38.927565px;}
.h9_c01056{height:39.877015px;}
.h13_c01056{height:40.826465px;}
.he_c01056{height:42.725364px;}
.h14_c01056{height:43.895865px;}
.h16_c01056{height:44.624131px;}
.h7_c01056{height:52.866000px;}
.ha_c01056{height:56.170332px;}
.hc_c01056{height:58.235410px;}
.h15_c01056{height:69.763290px;}
.h8_c01056{height:70.151748px;}
.h5_c01056{height:70.419164px;}
.hd_c01056{height:73.649813px;}
.h6_c01056{height:74.232792px;}
.h10_c01056{height:77.924795px;}
.h12_c01056{height:79.299207px;}
.h17_c01056{height:83.949101px;}
.h1_c01056{height:1110.000000px;}
.h0_c01056{height:1263.000000px;}
.w1_c01056{width:775.500000px;}
.w0_c01056{width:892.500000px;}
.x0_c01056{left:0.000000px;}
.x2_c01056{left:51.912285px;}
.x1_c01056{left:58.500000px;}
.x53_c01056{left:81.216285px;}
.x43_c01056{left:82.245885px;}
.x11_c01056{left:83.389335px;}
.x1a_c01056{left:84.611985px;}
.x80_c01056{left:113.262585px;}
.x1b_c01056{left:115.346535px;}
.x28_c01056{left:117.009735px;}
.x30_c01056{left:126.464235px;}
.x37_c01056{left:127.607685px;}
.x5d_c01056{left:135.988035px;}
.x3c_c01056{left:137.448285px;}
.x5_c01056{left:139.106535px;}
.x87_c01056{left:146.427585px;}
.x6e_c01056{left:147.670035px;}
.x4a_c01056{left:149.778735px;}
.x5e_c01056{left:158.005635px;}
.x51_c01056{left:159.812385px;}
.x29_c01056{left:161.035035px;}
.x12_c01056{left:166.623585px;}
.x5f_c01056{left:168.514485px;}
.x44_c01056{left:169.954935px;}
.x13_c01056{left:171.697335px;}
.x6_c01056{left:173.702085px;}
.x90_c01056{left:179.543085px;}
.x67_c01056{left:181.196385px;}
.x21_c01056{left:182.443785px;}
.x7_c01056{left:184.265385px;}
.x22_c01056{left:191.373585px;}
.x14_c01056{left:192.442785px;}
.x68_c01056{left:201.704235px;}
.x45_c01056{left:204.713835px;}
.x81_c01056{left:213.623835px;}
.x7b_c01056{left:214.668285px;}
.x3d_c01056{left:226.771035px;}
.x8_c01056{left:229.518285px;}
.x60_c01056{left:236.443335px;}
.x3_c01056{left:237.903585px;}
.x2a_c01056{left:239.616285px;}
.x69_c01056{left:246.209685px;}
.x1c_c01056{left:251.050785px;}
.x6f_c01056{left:257.629335px;}
.x4b_c01056{left:259.049985px;}
.x7c_c01056{left:269.192535px;}
.x59_c01056{left:270.291435px;}
.x1d_c01056{left:272.014035px;}
.x91_c01056{left:278.998485px;}
.x77_c01056{left:280.245885px;}
.x70_c01056{left:281.933835px;}
.x23_c01056{left:284.423685px;}
.x54_c01056{left:292.972335px;}
.x46_c01056{left:294.081135px;}
.x15_c01056{left:295.813635px;}
.x5a_c01056{left:302.570385px;}
.x1e_c01056{left:305.931435px;}
.x88_c01056{left:313.207935px;}
.x6a_c01056{left:314.445435px;}
.x24_c01056{left:316.064085px;}
.x9_c01056{left:317.638185px;}
.x78_c01056{left:325.097835px;}
.x47_c01056{left:327.661935px;}
.x55_c01056{left:335.710635px;}
.x61_c01056{left:337.245135px;}
.x31_c01056{left:338.363835px;}
.x71_c01056{left:346.704585px;}
.x4c_c01056{left:348.278685px;}
.xa_c01056{left:350.501235px;}
.x38_c01056{left:360.688335px;}
.x3e_c01056{left:369.925035px;}
.x92_c01056{left:378.478635px;}
.x82_c01056{left:380.057685px;}
.x32_c01056{left:382.161435px;}
.x89_c01056{left:391.477335px;}
.x1f_c01056{left:393.764235px;}
.x7d_c01056{left:402.317835px;}
.x25_c01056{left:404.139435px;}
.x16_c01056{left:405.951135px;}
.x93_c01056{left:413.430585px;}
.x56_c01056{left:415.291785px;}
.x79_c01056{left:424.612635px;}
.x33_c01056{left:427.409385px;}
.x6b_c01056{left:435.982785px;}
.x2b_c01056{left:438.829035px;}
.x5b_c01056{left:447.392535px;}
.x39_c01056{left:448.639935px;}
.x26_c01056{left:450.045735px;}
.x48_c01056{left:459.515085px;}
.x7a_c01056{left:469.157685px;}
.x3f_c01056{left:470.959485px;}
.x83_c01056{left:478.270635px;}
.x62_c01056{left:480.146685px;}
.xb_c01056{left:484.047285px;}
.x4d_c01056{left:491.779185px;}
.x3a_c01056{left:493.303785px;}
.x2c_c01056{left:494.343285px;}
.x57_c01056{left:502.025685px;}
.x34_c01056{left:504.451185px;}
.x94_c01056{left:512.574135px;}
.x63_c01056{left:513.846285px;}
.xc_c01056{left:514.979835px;}
.x5c_c01056{left:523.850235px;}
.x3b_c01056{left:526.147035px;}
.x20_c01056{left:527.943885px;}
.x72_c01056{left:535.096635px;}
.x40_c01056{left:537.239985px;}
.x58_c01056{left:547.580535px;}
.x27_c01056{left:559.693185px;}
.xd_c01056{left:560.762385px;}
.x73_c01056{left:566.925135px;}
.x41_c01056{left:568.756635px;}
.x4e_c01056{left:570.667335px;}
.x17_c01056{left:571.677135px;}
.x8a_c01056{left:577.711185px;}
.x6c_c01056{left:579.300135px;}
.x84_c01056{left:589.853535px;}
.xe_c01056{left:593.120535px;}
.x64_c01056{left:600.842535px;}
.x49_c01056{left:604.178835px;}
.x7e_c01056{left:612.410685px;}
.x4f_c01056{left:613.826385px;}
.x18_c01056{left:614.870835px;}
.x2d_c01056{left:625.265835px;}
.xf_c01056{left:626.280585px;}
.x85_c01056{left:632.557185px;}
.x65_c01056{left:634.324335px;}
.x8b_c01056{left:641.313735px;}
.x74_c01056{left:644.714385px;}
.x7f_c01056{left:646.080585px;}
.x19_c01056{left:647.921985px;}
.x50_c01056{left:658.039785px;}
.x36_c01056{left:659.415885px;}
.x8c_c01056{left:661.826535px;}
.x8d_c01056{left:663.608535px;}
.x66_c01056{left:666.449835px;}
.x6d_c01056{left:667.919985px;}
.x2e_c01056{left:669.271335px;}
.x35_c01056{left:670.464285px;}
.x52_c01056{left:678.522885px;}
.x4_c01056{left:680.354385px;}
.x42_c01056{left:690.383085px;}
.x8e_c01056{left:701.381985px;}
.x2f_c01056{left:703.436235px;}
.x76_c01056{left:711.262185px;}
.x10_c01056{left:715.761735px;}
.x75_c01056{left:723.627285px;}
.x8f_c01056{left:725.260785px;}
.x86_c01056{left:733.066935px;}
@media print{
.v0_c01056{vertical-align:0.000000pt;}
.ls17_c01056{letter-spacing:-2.661126pt;}
.ls4_c01056{letter-spacing:-2.353126pt;}
.ls13_c01056{letter-spacing:-1.392160pt;}
.lsf_c01056{letter-spacing:-0.658875pt;}
.ls18_c01056{letter-spacing:-0.598366pt;}
.ls0_c01056{letter-spacing:0.000000pt;}
.ls15_c01056{letter-spacing:0.961420pt;}
.ls12_c01056{letter-spacing:1.384983pt;}
.lsd_c01056{letter-spacing:1.600126pt;}
.ls5_c01056{letter-spacing:2.252800pt;}
.lsa_c01056{letter-spacing:2.268190pt;}
.ls2_c01056{letter-spacing:3.000800pt;}
.ls8_c01056{letter-spacing:3.092680pt;}
.ls14_c01056{letter-spacing:3.159209pt;}
.ls6_c01056{letter-spacing:3.176800pt;}
.lsb_c01056{letter-spacing:3.335209pt;}
.ls3_c01056{letter-spacing:3.361609pt;}
.ls9_c01056{letter-spacing:48.153776pt;}
.ls10_c01056{letter-spacing:49.420976pt;}
.ls1_c01056{letter-spacing:50.688176pt;}
.lse_c01056{letter-spacing:51.955376pt;}
.ls7_c01056{letter-spacing:53.222576pt;}
.ls11_c01056{letter-spacing:54.489776pt;}
.lsc_c01056{letter-spacing:57.024176pt;}
.ls16_c01056{letter-spacing:59.558400pt;}
.ws0_c01056{word-spacing:-16.808044pt;}
.ws1_c01056{word-spacing:0.000000pt;}
._4_c01056{margin-left:-8.975804pt;}
._0_c01056{margin-left:-1.411950pt;}
._3_c01056{width:7.865352pt;}
._2_c01056{width:10.117184pt;}
._5_c01056{width:19.734733pt;}
._1_c01056{width:111.249600pt;}
.fs12_c01056{font-size:21.824000pt;}
.fs9_c01056{font-size:23.936000pt;}
.fs0_c01056{font-size:24.640000pt;}
.fs1_c01056{font-size:34.848000pt;}
.fs8_c01056{font-size:35.200000pt;}
.fs15_c01056{font-size:39.776000pt;}
.fs5_c01056{font-size:45.056000pt;}
.fsa_c01056{font-size:47.872176pt;}
.fsb_c01056{font-size:48.153776pt;}
.fs11_c01056{font-size:49.420976pt;}
.fsc_c01056{font-size:49.632176pt;}
.fs2_c01056{font-size:50.688176pt;}
.fsf_c01056{font-size:51.955376pt;}
.fs7_c01056{font-size:53.222576pt;}
.fs14_c01056{font-size:54.489776pt;}
.fse_c01056{font-size:57.024176pt;}
.fs17_c01056{font-size:59.558400pt;}
.fs3_c01056{font-size:60.016000pt;}
.fs16_c01056{font-size:63.184176pt;}
.fs6_c01056{font-size:63.536000pt;}
.fsd_c01056{font-size:66.704176pt;}
.fs4_c01056{font-size:67.232176pt;}
.fs13_c01056{font-size:67.584176pt;}
.fs10_c01056{font-size:70.576000pt;}
.fs18_c01056{font-size:76.032176pt;}
.y0_c01056{bottom:0.000000pt;}
.y1_c01056{bottom:68.000000pt;}
.y1e_c01056{bottom:114.286520pt;}
.y1d_c01056{bottom:141.531320pt;}
.y1c_c01056{bottom:172.256520pt;}
.y1b_c01056{bottom:201.406520pt;}
.y1a_c01056{bottom:230.230920pt;}
.y19_c01056{bottom:241.952520pt;}
.y18_c01056{bottom:259.059720pt;}
.y2_c01056{bottom:263.178120pt;}
.y17_c01056{bottom:287.571720pt;}
.y16_c01056{bottom:316.400520pt;}
.y15_c01056{bottom:373.424520pt;}
.y14_c01056{bottom:400.986120pt;}
.y13_c01056{bottom:429.498120pt;}
.y12_c01056{bottom:458.331320pt;}
.y11_c01056{bottom:486.526520pt;}
.y10_c01056{bottom:514.400520pt;}
.yf_c01056{bottom:543.546120pt;}
.ye_c01056{bottom:572.379320pt;}
.yd_c01056{bottom:629.715720pt;}
.yc_c01056{bottom:657.594120pt;}
.yb_c01056{bottom:681.037320pt;}
.ya_c01056{bottom:686.106120pt;}
.y9_c01056{bottom:713.984520pt;}
.y8_c01056{bottom:740.916920pt;}
.y7_c01056{bottom:770.062520pt;}
.y6_c01056{bottom:797.624120pt;}
.y5_c01056{bottom:827.086520pt;}
.y4_c01056{bottom:937.011720pt;}
.y3_c01056{bottom:944.298120pt;}
.h2_c01056{height:25.698750pt;}
.hb_c01056{height:32.070415pt;}
.h11_c01056{height:32.914370pt;}
.h4_c01056{height:33.758325pt;}
.h3_c01056{height:34.201406pt;}
.hf_c01056{height:34.602280pt;}
.h9_c01056{height:35.446236pt;}
.h13_c01056{height:36.290191pt;}
.he_c01056{height:37.978101pt;}
.h14_c01056{height:39.018547pt;}
.h16_c01056{height:39.665894pt;}
.h7_c01056{height:46.992000pt;}
.ha_c01056{height:49.929184pt;}
.hc_c01056{height:51.764809pt;}
.h15_c01056{height:62.011813pt;}
.h8_c01056{height:62.357109pt;}
.h5_c01056{height:62.594813pt;}
.hd_c01056{height:65.466501pt;}
.h6_c01056{height:65.984704pt;}
.h10_c01056{height:69.266484pt;}
.h12_c01056{height:70.488184pt;}
.h17_c01056{height:74.621423pt;}
.h1_c01056{height:986.666667pt;}
.h0_c01056{height:1122.666667pt;}
.w1_c01056{width:689.333333pt;}
.w0_c01056{width:793.333333pt;}
.x0_c01056{left:0.000000pt;}
.x2_c01056{left:46.144253pt;}
.x1_c01056{left:52.000000pt;}
.x53_c01056{left:72.192253pt;}
.x43_c01056{left:73.107453pt;}
.x11_c01056{left:74.123853pt;}
.x1a_c01056{left:75.210653pt;}
.x80_c01056{left:100.677853pt;}
.x1b_c01056{left:102.530253pt;}
.x28_c01056{left:104.008653pt;}
.x30_c01056{left:112.412653pt;}
.x37_c01056{left:113.429053pt;}
.x5d_c01056{left:120.878253pt;}
.x3c_c01056{left:122.176253pt;}
.x5_c01056{left:123.650253pt;}
.x87_c01056{left:130.157853pt;}
.x6e_c01056{left:131.262253pt;}
.x4a_c01056{left:133.136653pt;}
.x5e_c01056{left:140.449453pt;}
.x51_c01056{left:142.055453pt;}
.x29_c01056{left:143.142253pt;}
.x12_c01056{left:148.109853pt;}
.x5f_c01056{left:149.790653pt;}
.x44_c01056{left:151.071053pt;}
.x13_c01056{left:152.619853pt;}
.x6_c01056{left:154.401853pt;}
.x90_c01056{left:159.593853pt;}
.x67_c01056{left:161.063453pt;}
.x21_c01056{left:162.172253pt;}
.x7_c01056{left:163.791453pt;}
.x22_c01056{left:170.109853pt;}
.x14_c01056{left:171.060253pt;}
.x68_c01056{left:179.292653pt;}
.x45_c01056{left:181.967853pt;}
.x81_c01056{left:189.887853pt;}
.x7b_c01056{left:190.816253pt;}
.x3d_c01056{left:201.574253pt;}
.x8_c01056{left:204.016253pt;}
.x60_c01056{left:210.171853pt;}
.x3_c01056{left:211.469853pt;}
.x2a_c01056{left:212.992253pt;}
.x69_c01056{left:218.853053pt;}
.x1c_c01056{left:223.156253pt;}
.x6f_c01056{left:229.003853pt;}
.x4b_c01056{left:230.266653pt;}
.x7c_c01056{left:239.282253pt;}
.x59_c01056{left:240.259053pt;}
.x1d_c01056{left:241.790253pt;}
.x91_c01056{left:247.998653pt;}
.x77_c01056{left:249.107453pt;}
.x70_c01056{left:250.607853pt;}
.x23_c01056{left:252.821053pt;}
.x54_c01056{left:260.419853pt;}
.x46_c01056{left:261.405453pt;}
.x15_c01056{left:262.945453pt;}
.x5a_c01056{left:268.951453pt;}
.x1e_c01056{left:271.939053pt;}
.x88_c01056{left:278.407053pt;}
.x6a_c01056{left:279.507053pt;}
.x24_c01056{left:280.945853pt;}
.x9_c01056{left:282.345053pt;}
.x78_c01056{left:288.975853pt;}
.x47_c01056{left:291.255053pt;}
.x55_c01056{left:298.409453pt;}
.x61_c01056{left:299.773453pt;}
.x31_c01056{left:300.767853pt;}
.x71_c01056{left:308.181853pt;}
.x4c_c01056{left:309.581053pt;}
.xa_c01056{left:311.556653pt;}
.x38_c01056{left:320.611853pt;}
.x3e_c01056{left:328.822253pt;}
.x92_c01056{left:336.425453pt;}
.x82_c01056{left:337.829053pt;}
.x32_c01056{left:339.699053pt;}
.x89_c01056{left:347.979853pt;}
.x1f_c01056{left:350.012653pt;}
.x7d_c01056{left:357.615853pt;}
.x25_c01056{left:359.235053pt;}
.x16_c01056{left:360.845453pt;}
.x93_c01056{left:367.493853pt;}
.x56_c01056{left:369.148253pt;}
.x79_c01056{left:377.433453pt;}
.x33_c01056{left:379.919453pt;}
.x6b_c01056{left:387.540253pt;}
.x2b_c01056{left:390.070253pt;}
.x5b_c01056{left:397.682253pt;}
.x39_c01056{left:398.791053pt;}
.x26_c01056{left:400.040653pt;}
.x48_c01056{left:408.457853pt;}
.x7a_c01056{left:417.029053pt;}
.x3f_c01056{left:418.630653pt;}
.x83_c01056{left:425.129453pt;}
.x62_c01056{left:426.797053pt;}
.xb_c01056{left:430.264253pt;}
.x4d_c01056{left:437.137053pt;}
.x3a_c01056{left:438.492253pt;}
.x2c_c01056{left:439.416253pt;}
.x57_c01056{left:446.245053pt;}
.x34_c01056{left:448.401053pt;}
.x94_c01056{left:455.621453pt;}
.x63_c01056{left:456.752253pt;}
.xc_c01056{left:457.759853pt;}
.x5c_c01056{left:465.644653pt;}
.x3b_c01056{left:467.686253pt;}
.x20_c01056{left:469.283453pt;}
.x72_c01056{left:475.641453pt;}
.x40_c01056{left:477.546653pt;}
.x58_c01056{left:486.738253pt;}
.x27_c01056{left:497.505053pt;}
.xd_c01056{left:498.455453pt;}
.x73_c01056{left:503.933453pt;}
.x41_c01056{left:505.561453pt;}
.x4e_c01056{left:507.259853pt;}
.x17_c01056{left:508.157453pt;}
.x8a_c01056{left:513.521053pt;}
.x6c_c01056{left:514.933453pt;}
.x84_c01056{left:524.314253pt;}
.xe_c01056{left:527.218253pt;}
.x64_c01056{left:534.082253pt;}
.x49_c01056{left:537.047853pt;}
.x7e_c01056{left:544.365053pt;}
.x4f_c01056{left:545.623453pt;}
.x18_c01056{left:546.551853pt;}
.x2d_c01056{left:555.791853pt;}
.xf_c01056{left:556.693853pt;}
.x85_c01056{left:562.273053pt;}
.x65_c01056{left:563.843853pt;}
.x8b_c01056{left:570.056653pt;}
.x74_c01056{left:573.079453pt;}
.x7f_c01056{left:574.293853pt;}
.x19_c01056{left:575.930653pt;}
.x50_c01056{left:584.924253pt;}
.x36_c01056{left:586.147453pt;}
.x8c_c01056{left:588.290253pt;}
.x8d_c01056{left:589.874253pt;}
.x66_c01056{left:592.399853pt;}
.x6d_c01056{left:593.706653pt;}
.x2e_c01056{left:594.907853pt;}
.x35_c01056{left:595.968253pt;}
.x52_c01056{left:603.131453pt;}
.x4_c01056{left:604.759453pt;}
.x42_c01056{left:613.673853pt;}
.x8e_c01056{left:623.450653pt;}
.x2f_c01056{left:625.276653pt;}
.x76_c01056{left:632.233053pt;}
.x10_c01056{left:636.232653pt;}
.x75_c01056{left:643.224253pt;}
.x8f_c01056{left:644.676253pt;}
.x86_c01056{left:651.615053pt;}
}





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

.ir_c01057:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01057{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01057;src:url('chunks/assets/font_591d11c1e07372effc2986f5.woff2')format("woff");}.ff1_c01057{font-family:ff1_c01057;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01057;src:url('chunks/assets/font_7af7702731a9b80fe6da0771.woff2')format("woff");}.ff2_c01057{font-family:ff2_c01057;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01057;src:url('chunks/assets/font_54f75b95d932b08e13fb007b.woff2')format("woff");}.ff3_c01057{font-family:ff3_c01057;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.md_c01057{transform:matrix(0.176137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176137,0.000000,0.000000,0.250000,0,0);}
.m77_c01057{transform:matrix(0.181576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181576,0.000000,0.000000,0.250000,0,0);}
.m78_c01057{transform:matrix(0.189643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189643,0.000000,0.000000,0.250000,0,0);}
.m56_c01057{transform:matrix(0.203134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203134,0.000000,0.000000,0.250000,0,0);}
.m8b_c01057{transform:matrix(0.207207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207207,0.000000,0.000000,0.250000,0,0);}
.m0_c01057{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m9_c01057{transform:matrix(0.251559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251559,0.000000,0.000000,0.250000,0,0);}
.m76_c01057{transform:matrix(0.254325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254325,0.000000,0.000000,0.250000,0,0);}
.m86_c01057{transform:matrix(0.257042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257042,0.000000,0.000000,0.250000,0,0);}
.m15_c01057{transform:matrix(0.257088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257088,0.000000,0.000000,0.250000,0,0);}
.m47_c01057{transform:matrix(0.260415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260415,0.000000,0.000000,0.250000,0,0);}
.m8a_c01057{transform:matrix(0.266286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266286,0.000000,0.000000,0.250000,0,0);}
.m5a_c01057{transform:matrix(0.267703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267703,0.000000,0.000000,0.250000,0,0);}
.mb_c01057{transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);}
.m5b_c01057{transform:matrix(0.269604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269604,0.000000,0.000000,0.250000,0,0);}
.m37_c01057{transform:matrix(0.269910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269910,0.000000,0.000000,0.250000,0,0);}
.m6b_c01057{transform:matrix(0.270084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270084,0.000000,0.000000,0.250000,0,0);}
.m53_c01057{transform:matrix(0.270108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270108,0.000000,0.000000,0.250000,0,0);}
.m48_c01057{transform:matrix(0.270316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270316,0.000000,0.000000,0.250000,0,0);}
.m29_c01057{transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);}
.m2f_c01057{transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);}
.m10_c01057{transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);}
.m14_c01057{transform:matrix(0.273004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273004,0.000000,0.000000,0.250000,0,0);}
.m4d_c01057{transform:matrix(0.273384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273384,0.000000,0.000000,0.250000,0,0);}
.m33_c01057{transform:matrix(0.273455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273455,0.000000,0.000000,0.250000,0,0);}
.m16_c01057{transform:matrix(0.275092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275092,0.000000,0.000000,0.250000,0,0);}
.m44_c01057{transform:matrix(0.275148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275148,0.000000,0.000000,0.250000,0,0);}
.m3b_c01057{transform:matrix(0.275689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275689,0.000000,0.000000,0.250000,0,0);}
.m8e_c01057{transform:matrix(0.276339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276339,0.000000,0.000000,0.250000,0,0);}
.m80_c01057{transform:matrix(0.276480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276480,0.000000,0.000000,0.250000,0,0);}
.m18_c01057{transform:matrix(0.276749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276749,0.000000,0.000000,0.250000,0,0);}
.m27_c01057{transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);}
.m54_c01057{transform:matrix(0.278451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278451,0.000000,0.000000,0.250000,0,0);}
.m38_c01057{transform:matrix(0.278463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278463,0.000000,0.000000,0.250000,0,0);}
.m13_c01057{transform:matrix(0.279986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279986,0.000000,0.000000,0.250000,0,0);}
.m90_c01057{transform:matrix(0.280328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280328,0.000000,0.000000,0.250000,0,0);}
.m75_c01057{transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);}
.m11_c01057{transform:matrix(0.282883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282883,0.000000,0.000000,0.250000,0,0);}
.m49_c01057{transform:matrix(0.284069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284069,0.000000,0.000000,0.250000,0,0);}
.m3e_c01057{transform:matrix(0.284434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284434,0.000000,0.000000,0.250000,0,0);}
.m51_c01057{transform:matrix(0.285120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285120,0.000000,0.000000,0.250000,0,0);}
.m45_c01057{transform:matrix(0.285312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285312,0.000000,0.000000,0.250000,0,0);}
.m73_c01057{transform:matrix(0.285565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285565,0.000000,0.000000,0.250000,0,0);}
.m87_c01057{transform:matrix(0.285652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285652,0.000000,0.000000,0.250000,0,0);}
.m7d_c01057{transform:matrix(0.286683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286683,0.000000,0.000000,0.250000,0,0);}
.m79_c01057{transform:matrix(0.286982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286982,0.000000,0.000000,0.250000,0,0);}
.m39_c01057{transform:matrix(0.287374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287374,0.000000,0.000000,0.250000,0,0);}
.m1_c01057{transform:matrix(0.287605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287605,0.000000,0.000000,0.250000,0,0);}
.m17_c01057{transform:matrix(0.288414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288414,0.000000,0.000000,0.250000,0,0);}
.m68_c01057{transform:matrix(0.288736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288736,0.000000,0.000000,0.250000,0,0);}
.m6a_c01057{transform:matrix(0.289322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289322,0.000000,0.000000,0.250000,0,0);}
.m50_c01057{transform:matrix(0.289501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289501,0.000000,0.000000,0.250000,0,0);}
.m74_c01057{transform:matrix(0.289707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289707,0.000000,0.000000,0.250000,0,0);}
.m63_c01057{transform:matrix(0.290807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290807,0.000000,0.000000,0.250000,0,0);}
.m89_c01057{transform:matrix(0.290974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290974,0.000000,0.000000,0.250000,0,0);}
.m2a_c01057{transform:matrix(0.291495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291495,0.000000,0.000000,0.250000,0,0);}
.m69_c01057{transform:matrix(0.291847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291847,0.000000,0.000000,0.250000,0,0);}
.m1f_c01057{transform:matrix(0.291895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291895,0.000000,0.000000,0.250000,0,0);}
.m7e_c01057{transform:matrix(0.292086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292086,0.000000,0.000000,0.250000,0,0);}
.m6f_c01057{transform:matrix(0.293896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293896,0.000000,0.000000,0.250000,0,0);}
.m3f_c01057{transform:matrix(0.294401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294401,0.000000,0.000000,0.250000,0,0);}
.m4e_c01057{transform:matrix(0.294993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294993,0.000000,0.000000,0.250000,0,0);}
.m1a_c01057{transform:matrix(0.295576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295576,0.000000,0.000000,0.250000,0,0);}
.m85_c01057{transform:matrix(0.296080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296080,0.000000,0.000000,0.250000,0,0);}
.m2c_c01057{transform:matrix(0.296335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296335,0.000000,0.000000,0.250000,0,0);}
.m28_c01057{transform:matrix(0.296511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296511,0.000000,0.000000,0.250000,0,0);}
.m7c_c01057{transform:matrix(0.297812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297812,0.000000,0.000000,0.250000,0,0);}
.m70_c01057{transform:matrix(0.298848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298848,0.000000,0.000000,0.250000,0,0);}
.m4a_c01057{transform:matrix(0.299565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299565,0.000000,0.000000,0.250000,0,0);}
.m5_c01057{transform:matrix(0.299624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299624,0.000000,0.000000,0.250000,0,0);}
.m1e_c01057{transform:matrix(0.300828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300828,0.000000,0.000000,0.250000,0,0);}
.m64_c01057{transform:matrix(0.301207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301207,0.000000,0.000000,0.250000,0,0);}
.m3c_c01057{transform:matrix(0.302614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302614,0.000000,0.000000,0.250000,0,0);}
.m57_c01057{transform:matrix(0.303053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303053,0.000000,0.000000,0.250000,0,0);}
.m6c_c01057{transform:matrix(0.303779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303779,0.000000,0.000000,0.250000,0,0);}
.m20_c01057{transform:matrix(0.303912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303912,0.000000,0.000000,0.250000,0,0);}
.m35_c01057{transform:matrix(0.304451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304451,0.000000,0.000000,0.250000,0,0);}
.m41_c01057{transform:matrix(0.305493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305493,0.000000,0.000000,0.250000,0,0);}
.m4f_c01057{transform:matrix(0.306031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306031,0.000000,0.000000,0.250000,0,0);}
.m2e_c01057{transform:matrix(0.306753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306753,0.000000,0.000000,0.250000,0,0);}
.m26_c01057{transform:matrix(0.307618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307618,0.000000,0.000000,0.250000,0,0);}
.m67_c01057{transform:matrix(0.307690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307690,0.000000,0.000000,0.250000,0,0);}
.m12_c01057{transform:matrix(0.307864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307864,0.000000,0.000000,0.250000,0,0);}
.m42_c01057{transform:matrix(0.309104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309104,0.000000,0.000000,0.250000,0,0);}
.m66_c01057{transform:matrix(0.310150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310150,0.000000,0.000000,0.250000,0,0);}
.m23_c01057{transform:matrix(0.311540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311540,0.000000,0.000000,0.250000,0,0);}
.m3a_c01057{transform:matrix(0.312094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312094,0.000000,0.000000,0.250000,0,0);}
.m6e_c01057{transform:matrix(0.312698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312698,0.000000,0.000000,0.250000,0,0);}
.m1d_c01057{transform:matrix(0.312815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312815,0.000000,0.000000,0.250000,0,0);}
.m5f_c01057{transform:matrix(0.313127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313127,0.000000,0.000000,0.250000,0,0);}
.m21_c01057{transform:matrix(0.313277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313277,0.000000,0.000000,0.250000,0,0);}
.m6d_c01057{transform:matrix(0.313277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313277,0.000000,0.000000,0.250000,0,0);}
.m7b_c01057{transform:matrix(0.314040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314040,0.000000,0.000000,0.250000,0,0);}
.ma_c01057{transform:matrix(0.315359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315359,0.000000,0.000000,0.250000,0,0);}
.m60_c01057{transform:matrix(0.315522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315522,0.000000,0.000000,0.250000,0,0);}
.m2_c01057{transform:matrix(0.316292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316292,0.000000,0.000000,0.250000,0,0);}
.m34_c01057{transform:matrix(0.317152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317152,0.000000,0.000000,0.250000,0,0);}
.m8_c01057{transform:matrix(0.318253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318253,0.000000,0.000000,0.250000,0,0);}
.m58_c01057{transform:matrix(0.319203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319203,0.000000,0.000000,0.250000,0,0);}
.m1c_c01057{transform:matrix(0.319887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319887,0.000000,0.000000,0.250000,0,0);}
.m1b_c01057{transform:matrix(0.320680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320680,0.000000,0.000000,0.250000,0,0);}
.m22_c01057{transform:matrix(0.321183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321183,0.000000,0.000000,0.250000,0,0);}
.m3_c01057{transform:matrix(0.321201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321201,0.000000,0.000000,0.250000,0,0);}
.m71_c01057{transform:matrix(0.321354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321354,0.000000,0.000000,0.250000,0,0);}
.m2d_c01057{transform:matrix(0.321449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321449,0.000000,0.000000,0.250000,0,0);}
.m24_c01057{transform:matrix(0.323754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323754,0.000000,0.000000,0.250000,0,0);}
.m4b_c01057{transform:matrix(0.324853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324853,0.000000,0.000000,0.250000,0,0);}
.m61_c01057{transform:matrix(0.326088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326088,0.000000,0.000000,0.250000,0,0);}
.m4c_c01057{transform:matrix(0.326195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326195,0.000000,0.000000,0.250000,0,0);}
.m82_c01057{transform:matrix(0.327232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327232,0.000000,0.000000,0.250000,0,0);}
.m46_c01057{transform:matrix(0.329649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329649,0.000000,0.000000,0.250000,0,0);}
.m43_c01057{transform:matrix(0.331528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331528,0.000000,0.000000,0.250000,0,0);}
.mf_c01057{transform:matrix(0.333131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333131,0.000000,0.000000,0.250000,0,0);}
.m5e_c01057{transform:matrix(0.334091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334091,0.000000,0.000000,0.250000,0,0);}
.m84_c01057{transform:matrix(0.334349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334349,0.000000,0.000000,0.250000,0,0);}
.m5d_c01057{transform:matrix(0.336676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336676,0.000000,0.000000,0.250000,0,0);}
.m7f_c01057{transform:matrix(0.337653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337653,0.000000,0.000000,0.250000,0,0);}
.m40_c01057{transform:matrix(0.337964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337964,0.000000,0.000000,0.250000,0,0);}
.me_c01057{transform:matrix(0.338050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338050,0.000000,0.000000,0.250000,0,0);}
.m7_c01057{transform:matrix(0.339155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339155,0.000000,0.000000,0.250000,0,0);}
.m65_c01057{transform:matrix(0.340084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340084,0.000000,0.000000,0.250000,0,0);}
.m36_c01057{transform:matrix(0.340884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340884,0.000000,0.000000,0.250000,0,0);}
.m6_c01057{transform:matrix(0.341673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341673,0.000000,0.000000,0.250000,0,0);}
.m25_c01057{transform:matrix(0.341726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341726,0.000000,0.000000,0.250000,0,0);}
.m88_c01057{transform:matrix(0.342379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342379,0.000000,0.000000,0.250000,0,0);}
.m7a_c01057{transform:matrix(0.344527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344527,0.000000,0.000000,0.250000,0,0);}
.m52_c01057{transform:matrix(0.344684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344684,0.000000,0.000000,0.250000,0,0);}
.m4_c01057{transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);}
.m32_c01057{transform:matrix(0.346597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346597,0.000000,0.000000,0.250000,0,0);}
.m5c_c01057{transform:matrix(0.346695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346695,0.000000,0.000000,0.250000,0,0);}
.m8f_c01057{transform:matrix(0.346907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346907,0.000000,0.000000,0.250000,0,0);}
.m2b_c01057{transform:matrix(0.349007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349007,0.000000,0.000000,0.250000,0,0);}
.m59_c01057{transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);}
.m81_c01057{transform:matrix(0.353325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353325,0.000000,0.000000,0.250000,0,0);}
.m8d_c01057{transform:matrix(0.354724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354724,0.000000,0.000000,0.250000,0,0);}
.m8c_c01057{transform:matrix(0.355048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355048,0.000000,0.000000,0.250000,0,0);}
.m72_c01057{transform:matrix(0.357996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357996,0.000000,0.000000,0.250000,0,0);}
.m83_c01057{transform:matrix(0.361142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361142,0.000000,0.000000,0.250000,0,0);}
.m55_c01057{transform:matrix(0.374479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374479,0.000000,0.000000,0.250000,0,0);}
.m62_c01057{transform:matrix(0.380833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380833,0.000000,0.000000,0.250000,0,0);}
.m30_c01057{transform:matrix(0.387076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387076,0.000000,0.000000,0.250000,0,0);}
.m3d_c01057{transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);}
.mc_c01057{transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);}
.m31_c01057{transform:matrix(0.400373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400373,0.000000,0.000000,0.250000,0,0);}
.m19_c01057{transform:matrix(0.405805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405805,0.000000,0.000000,0.250000,0,0);}
.v0_c01057{vertical-align:0.000000px;}
.lsc_c01057{letter-spacing:-2.647267px;}
.lsf_c01057{letter-spacing:-1.225306px;}
.ls3_c01057{letter-spacing:-0.953016px;}
.ls13_c01057{letter-spacing:-0.801744px;}
.ls7_c01057{letter-spacing:0.000000px;}
.lsb_c01057{letter-spacing:0.726108px;}
.ls8_c01057{letter-spacing:1.036216px;}
.ls5_c01057{letter-spacing:1.081598px;}
.lsa_c01057{letter-spacing:1.706447px;}
.ls11_c01057{letter-spacing:1.853087px;}
.ls6_c01057{letter-spacing:2.208577px;}
.ls12_c01057{letter-spacing:2.494810px;}
.ls1_c01057{letter-spacing:2.584619px;}
.ls0_c01057{letter-spacing:2.601885px;}
.ls10_c01057{letter-spacing:3.405610px;}
.ls9_c01057{letter-spacing:3.583810px;}
.ls2_c01057{letter-spacing:3.781810px;}
.lsd_c01057{letter-spacing:4.029310px;}
.lse_c01057{letter-spacing:4.078810px;}
.ls14_c01057{letter-spacing:52.747398px;}
.ls4_c01057{letter-spacing:62.726400px;}
.sc__c01057{text-shadow:none;}
.sc0_c01057{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01057{-webkit-text-stroke:0px transparent;}
.sc0_c01057{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01057{word-spacing:-21.510935px;}
.ws1_c01057{word-spacing:0.000000px;}
._0_c01057{width:5.612099px;}
._1_c01057{width:30.472200px;}
.fc0_c01057{color:transparent;}
.fsf_c01057{font-size:21.978000px;}
.fs6_c01057{font-size:27.720000px;}
.fsd_c01057{font-size:33.264000px;}
.fse_c01057{font-size:38.808000px;}
.fsa_c01057{font-size:49.896198px;}
.fsc_c01057{font-size:52.747398px;}
.fs2_c01057{font-size:62.726400px;}
.fs9_c01057{font-size:68.112198px;}
.fs4_c01057{font-size:71.676198px;}
.fs3_c01057{font-size:74.844000px;}
.fs1_c01057{font-size:75.636198px;}
.fsb_c01057{font-size:77.220000px;}
.fs5_c01057{font-size:79.002198px;}
.fs7_c01057{font-size:80.586198px;}
.fs8_c01057{font-size:81.576198px;}
.fs0_c01057{font-size:87.912198px;}
.y0_c01057{bottom:0.000000px;}
.y1_c01057{bottom:76.500000px;}
.y1d_c01057{bottom:103.624335px;}
.y1c_c01057{bottom:166.350735px;}
.y1b_c01057{bottom:198.070335px;}
.y1a_c01057{bottom:204.485535px;}
.y19_c01057{bottom:230.146335px;}
.y17_c01057{bottom:231.928335px;}
.y18_c01057{bottom:237.630735px;}
.y16_c01057{bottom:264.004335px;}
.y15_c01057{bottom:295.718985px;}
.y14_c01057{bottom:328.156335px;}
.y13_c01057{bottom:360.227385px;}
.y12_c01057{bottom:392.664735px;}
.y11_c01057{bottom:456.811785px;}
.y10_c01057{bottom:489.249135px;}
.yf_c01057{bottom:514.904985px;}
.ye_c01057{bottom:520.963785px;}
.yd_c01057{bottom:553.396185px;}
.yc_c01057{bottom:648.911385px;}
.yb_c01057{bottom:680.635935px;}
.ya_c01057{bottom:713.424735px;}
.y9_c01057{bottom:745.139385px;}
.y8_c01057{bottom:777.928185px;}
.y7_c01057{bottom:809.652735px;}
.y6_c01057{bottom:842.085135px;}
.y5_c01057{bottom:873.804735px;}
.y4_c01057{bottom:905.880735px;}
.y3_c01057{bottom:938.308185px;}
.y2_c01057{bottom:1056.276585px;}
.h11_c01057{height:22.922367px;}
.h8_c01057{height:28.911094px;}
.hf_c01057{height:34.693313px;}
.he_c01057{height:35.129767px;}
.h10_c01057{height:40.475531px;}
.h4_c01057{height:41.775782px;}
.hc_c01057{height:48.970390px;}
.h6_c01057{height:70.346269px;}
.hb_c01057{height:71.038894px;}
.h5_c01057{height:73.455293px;}
.h3_c01057{height:74.232792px;}
.hd_c01057{height:75.787207px;}
.h7_c01057{height:77.536337px;}
.h9_c01057{height:79.090946px;}
.ha_c01057{height:80.062577px;}
.h2_c01057{height:86.281015px;}
.h1_c01057{height:1110.000000px;}
.h0_c01057{height:1263.000000px;}
.w1_c01057{width:775.500000px;}
.w0_c01057{width:892.500000px;}
.x0_c01057{left:0.000000px;}
.x1_c01057{left:58.500000px;}
.x3d_c01057{left:81.211335px;}
.xc_c01057{left:82.627035px;}
.x3_c01057{left:84.191235px;}
.x6b_c01057{left:92.734935px;}
.x4f_c01057{left:112.960635px;}
.x55_c01057{left:114.420885px;}
.x2c_c01057{left:115.915785px;}
.x41_c01057{left:123.617985px;}
.x47_c01057{left:125.593035px;}
.x4_c01057{left:127.340385px;}
.x73_c01057{left:134.933685px;}
.x3e_c01057{left:136.443435px;}
.x25_c01057{left:138.299685px;}
.x5d_c01057{left:147.674985px;}
.x33_c01057{left:148.694685px;}
.x65_c01057{left:156.857235px;}
.x48_c01057{left:158.317485px;}
.x39_c01057{left:160.153935px;}
.x66_c01057{left:169.791585px;}
.x5_c01057{left:171.801285px;}
.x6c_c01057{left:190.537035px;}
.x49_c01057{left:191.828985px;}
.x1d_c01057{left:193.898085px;}
.x3a_c01057{left:203.129835px;}
.x70_c01057{left:213.084285px;}
.x2d_c01057{left:215.405835px;}
.x5e_c01057{left:223.756485px;}
.x15_c01057{left:225.538485px;}
.x42_c01057{left:236.017635px;}
.xd_c01057{left:238.220385px;}
.x67_c01057{left:247.125435px;}
.x34_c01057{left:248.164935px;}
.x50_c01057{left:257.965935px;}
.x26_c01057{left:260.183535px;}
.x2e_c01057{left:261.262635px;}
.xe_c01057{left:270.939885px;}
.x4a_c01057{left:281.617035px;}
.x60_c01057{left:291.482385px;}
.x16_c01057{left:292.546635px;}
.x6d_c01057{left:304.025685px;}
.xf_c01057{left:305.070135px;}
.x5a_c01057{left:314.489985px;}
.x56_c01057{left:325.543335px;}
.x1e_c01057{left:326.567985px;}
.x6_c01057{left:327.944085px;}
.x4e_c01057{left:332.755485px;}
.x6e_c01057{left:337.492635px;}
.x17_c01057{left:338.705385px;}
.x5b_c01057{left:346.719435px;}
.x3f_c01057{left:348.313335px;}
.x43_c01057{left:357.401535px;}
.x27_c01057{left:359.322135px;}
.x7_c01057{left:360.609135px;}
.x68_c01057{left:369.999285px;}
.x1f_c01057{left:371.023935px;}
.x57_c01057{left:379.864635px;}
.x35_c01057{left:381.478335px;}
.x28_c01057{left:392.878185px;}
.x10_c01057{left:393.883035px;}
.x61_c01057{left:402.515835px;}
.x51_c01057{left:414.544335px;}
.x8_c01057{left:416.370885px;}
.x69_c01057{left:424.414635px;}
.x44_c01057{left:425.647185px;}
.x18_c01057{left:438.022185px;}
.x62_c01057{left:447.402435px;}
.x52_c01057{left:450.590235px;}
.x40_c01057{left:456.847035px;}
.x36_c01057{left:459.901185px;}
.x58_c01057{left:468.256785px;}
.x2f_c01057{left:469.360635px;}
.x45_c01057{left:470.791185px;}
.x9_c01057{left:481.121835px;}
.x37_c01057{left:491.907885px;}
.x19_c01057{left:492.912735px;}
.x20_c01057{left:503.084985px;}
.x11_c01057{left:505.767885px;}
.x30_c01057{left:510.307035px;}
.x71_c01057{left:512.133585px;}
.x29_c01057{left:514.786785px;}
.x38_c01057{left:524.567985px;}
.x46_c01057{left:533.834385px;}
.x5f_c01057{left:535.779735px;}
.x21_c01057{left:537.244935px;}
.x53_c01057{left:545.585685px;}
.x31_c01057{left:546.664785px;}
.x2a_c01057{left:548.199285px;}
.x5c_c01057{left:556.287585px;}
.x6f_c01057{left:557.831985px;}
.x1a_c01057{left:559.336785px;}
.x63_c01057{left:567.360735px;}
.x4b_c01057{left:568.895235px;}
.x3b_c01057{left:579.587235px;}
.x59_c01057{left:580.691085px;}
.xa_c01057{left:582.418635px;}
.x1b_c01057{left:591.214785px;}
.x12_c01057{left:592.477035px;}
.x22_c01057{left:603.169035px;}
.x3c_c01057{left:613.138335px;}
.xb_c01057{left:615.578685px;}
.x13_c01057{left:624.038235px;}
.x4c_c01057{left:633.987735px;}
.x23_c01057{left:635.388585px;}
.x32_c01057{left:645.387585px;}
.x54_c01057{left:657.980385px;}
.x14_c01057{left:659.702985px;}
.x64_c01057{left:666.375585px;}
.x4d_c01057{left:668.642685px;}
.x2_c01057{left:674.746035px;}
.x1c_c01057{left:680.082135px;}
.x6a_c01057{left:688.610985px;}
.x2b_c01057{left:702.599685px;}
.x24_c01057{left:704.010435px;}
.x72_c01057{left:705.530085px;}
@media print{
.v0_c01057{vertical-align:0.000000pt;}
.lsc_c01057{letter-spacing:-2.353126pt;}
.lsf_c01057{letter-spacing:-1.089161pt;}
.ls3_c01057{letter-spacing:-0.847125pt;}
.ls13_c01057{letter-spacing:-0.712661pt;}
.ls7_c01057{letter-spacing:0.000000pt;}
.lsb_c01057{letter-spacing:0.645429pt;}
.ls8_c01057{letter-spacing:0.921081pt;}
.ls5_c01057{letter-spacing:0.961420pt;}
.lsa_c01057{letter-spacing:1.516842pt;}
.ls11_c01057{letter-spacing:1.647188pt;}
.ls6_c01057{letter-spacing:1.963180pt;}
.ls12_c01057{letter-spacing:2.217609pt;}
.ls1_c01057{letter-spacing:2.297439pt;}
.ls0_c01057{letter-spacing:2.312787pt;}
.ls10_c01057{letter-spacing:3.027209pt;}
.ls9_c01057{letter-spacing:3.185609pt;}
.ls2_c01057{letter-spacing:3.361609pt;}
.lsd_c01057{letter-spacing:3.581609pt;}
.lse_c01057{letter-spacing:3.625609pt;}
.ls14_c01057{letter-spacing:46.886576pt;}
.ls4_c01057{letter-spacing:55.756800pt;}
.ws0_c01057{word-spacing:-19.120831pt;}
.ws1_c01057{word-spacing:0.000000pt;}
._0_c01057{width:4.988533pt;}
._1_c01057{width:27.086400pt;}
.fsf_c01057{font-size:19.536000pt;}
.fs6_c01057{font-size:24.640000pt;}
.fsd_c01057{font-size:29.568000pt;}
.fse_c01057{font-size:34.496000pt;}
.fsa_c01057{font-size:44.352176pt;}
.fsc_c01057{font-size:46.886576pt;}
.fs2_c01057{font-size:55.756800pt;}
.fs9_c01057{font-size:60.544176pt;}
.fs4_c01057{font-size:63.712176pt;}
.fs3_c01057{font-size:66.528000pt;}
.fs1_c01057{font-size:67.232176pt;}
.fsb_c01057{font-size:68.640000pt;}
.fs5_c01057{font-size:70.224176pt;}
.fs7_c01057{font-size:71.632176pt;}
.fs8_c01057{font-size:72.512176pt;}
.fs0_c01057{font-size:78.144176pt;}
.y0_c01057{bottom:0.000000pt;}
.y1_c01057{bottom:68.000000pt;}
.y1d_c01057{bottom:92.110520pt;}
.y1c_c01057{bottom:147.867320pt;}
.y1b_c01057{bottom:176.062520pt;}
.y1a_c01057{bottom:181.764920pt;}
.y19_c01057{bottom:204.574520pt;}
.y17_c01057{bottom:206.158520pt;}
.y18_c01057{bottom:211.227320pt;}
.y16_c01057{bottom:234.670520pt;}
.y15_c01057{bottom:262.861320pt;}
.y14_c01057{bottom:291.694520pt;}
.y13_c01057{bottom:320.202120pt;}
.y12_c01057{bottom:349.035320pt;}
.y11_c01057{bottom:406.054920pt;}
.y10_c01057{bottom:434.888120pt;}
.yf_c01057{bottom:457.693320pt;}
.ye_c01057{bottom:463.078920pt;}
.yd_c01057{bottom:491.907720pt;}
.yc_c01057{bottom:576.810120pt;}
.yb_c01057{bottom:605.009720pt;}
.ya_c01057{bottom:634.155320pt;}
.y9_c01057{bottom:662.346120pt;}
.y8_c01057{bottom:691.491720pt;}
.y7_c01057{bottom:719.691320pt;}
.y6_c01057{bottom:748.520120pt;}
.y5_c01057{bottom:776.715320pt;}
.y4_c01057{bottom:805.227320pt;}
.y3_c01057{bottom:834.051720pt;}
.y2_c01057{bottom:938.912520pt;}
.h11_c01057{height:20.375438pt;}
.h8_c01057{height:25.698750pt;}
.hf_c01057{height:30.838500pt;}
.he_c01057{height:31.226460pt;}
.h10_c01057{height:35.978250pt;}
.h4_c01057{height:37.134029pt;}
.hc_c01057{height:43.529235pt;}
.h6_c01057{height:62.530016pt;}
.hb_c01057{height:63.145684pt;}
.h5_c01057{height:65.293594pt;}
.h3_c01057{height:65.984704pt;}
.hd_c01057{height:67.366406pt;}
.h7_c01057{height:68.921188pt;}
.h9_c01057{height:70.303063pt;}
.ha_c01057{height:71.166735pt;}
.h2_c01057{height:76.694235pt;}
.h1_c01057{height:986.666667pt;}
.h0_c01057{height:1122.666667pt;}
.w1_c01057{width:689.333333pt;}
.w0_c01057{width:793.333333pt;}
.x0_c01057{left:0.000000pt;}
.x1_c01057{left:52.000000pt;}
.x3d_c01057{left:72.187853pt;}
.xc_c01057{left:73.446253pt;}
.x3_c01057{left:74.836653pt;}
.x6b_c01057{left:82.431053pt;}
.x4f_c01057{left:100.409453pt;}
.x55_c01057{left:101.707453pt;}
.x2c_c01057{left:103.036253pt;}
.x41_c01057{left:109.882653pt;}
.x47_c01057{left:111.638253pt;}
.x4_c01057{left:113.191453pt;}
.x73_c01057{left:119.941053pt;}
.x3e_c01057{left:121.283053pt;}
.x25_c01057{left:122.933053pt;}
.x5d_c01057{left:131.266653pt;}
.x33_c01057{left:132.173053pt;}
.x65_c01057{left:139.428653pt;}
.x48_c01057{left:140.726653pt;}
.x39_c01057{left:142.359053pt;}
.x66_c01057{left:150.925853pt;}
.x5_c01057{left:152.712253pt;}
.x6c_c01057{left:169.366253pt;}
.x49_c01057{left:170.514653pt;}
.x1d_c01057{left:172.353853pt;}
.x3a_c01057{left:180.559853pt;}
.x70_c01057{left:189.408253pt;}
.x2d_c01057{left:191.471853pt;}
.x5e_c01057{left:198.894653pt;}
.x15_c01057{left:200.478653pt;}
.x42_c01057{left:209.793453pt;}
.xd_c01057{left:211.751453pt;}
.x67_c01057{left:219.667053pt;}
.x34_c01057{left:220.591053pt;}
.x50_c01057{left:229.303053pt;}
.x26_c01057{left:231.274253pt;}
.x2e_c01057{left:232.233453pt;}
.xe_c01057{left:240.835453pt;}
.x4a_c01057{left:250.326253pt;}
.x60_c01057{left:259.095453pt;}
.x16_c01057{left:260.041453pt;}
.x6d_c01057{left:270.245053pt;}
.xf_c01057{left:271.173453pt;}
.x5a_c01057{left:279.546653pt;}
.x56_c01057{left:289.371853pt;}
.x1e_c01057{left:290.282653pt;}
.x6_c01057{left:291.505853pt;}
.x4e_c01057{left:295.782653pt;}
.x6e_c01057{left:299.993453pt;}
.x17_c01057{left:301.071453pt;}
.x5b_c01057{left:308.195053pt;}
.x3f_c01057{left:309.611853pt;}
.x43_c01057{left:317.690253pt;}
.x27_c01057{left:319.397453pt;}
.x7_c01057{left:320.541453pt;}
.x68_c01057{left:328.888253pt;}
.x1f_c01057{left:329.799053pt;}
.x57_c01057{left:337.657453pt;}
.x35_c01057{left:339.091853pt;}
.x28_c01057{left:349.225053pt;}
.x10_c01057{left:350.118253pt;}
.x61_c01057{left:357.791853pt;}
.x51_c01057{left:368.483853pt;}
.x8_c01057{left:370.107453pt;}
.x69_c01057{left:377.257453pt;}
.x44_c01057{left:378.353053pt;}
.x18_c01057{left:389.353053pt;}
.x62_c01057{left:397.691053pt;}
.x52_c01057{left:400.524653pt;}
.x40_c01057{left:406.086253pt;}
.x36_c01057{left:408.801053pt;}
.x58_c01057{left:416.228253pt;}
.x2f_c01057{left:417.209453pt;}
.x45_c01057{left:418.481053pt;}
.x9_c01057{left:427.663853pt;}
.x37_c01057{left:437.251453pt;}
.x19_c01057{left:438.144653pt;}
.x20_c01057{left:447.186653pt;}
.x11_c01057{left:449.571453pt;}
.x30_c01057{left:453.606253pt;}
.x71_c01057{left:455.229853pt;}
.x29_c01057{left:457.588253pt;}
.x38_c01057{left:466.282653pt;}
.x46_c01057{left:474.519453pt;}
.x5f_c01057{left:476.248653pt;}
.x21_c01057{left:477.551053pt;}
.x53_c01057{left:484.965053pt;}
.x31_c01057{left:485.924253pt;}
.x2a_c01057{left:487.288253pt;}
.x5c_c01057{left:494.477853pt;}
.x6f_c01057{left:495.850653pt;}
.x1a_c01057{left:497.188253pt;}
.x63_c01057{left:504.320653pt;}
.x4b_c01057{left:505.684653pt;}
.x3b_c01057{left:515.188653pt;}
.x59_c01057{left:516.169853pt;}
.xa_c01057{left:517.705453pt;}
.x1b_c01057{left:525.524253pt;}
.x12_c01057{left:526.646253pt;}
.x22_c01057{left:536.150253pt;}
.x3c_c01057{left:545.011853pt;}
.xb_c01057{left:547.181053pt;}
.x13_c01057{left:554.700653pt;}
.x4c_c01057{left:563.544653pt;}
.x23_c01057{left:564.789853pt;}
.x32_c01057{left:573.677853pt;}
.x54_c01057{left:584.871453pt;}
.x14_c01057{left:586.402653pt;}
.x64_c01057{left:592.333853pt;}
.x4d_c01057{left:594.349053pt;}
.x2_c01057{left:599.774253pt;}
.x1c_c01057{left:604.517453pt;}
.x6a_c01057{left:612.098653pt;}
.x2b_c01057{left:624.533053pt;}
.x24_c01057{left:625.787053pt;}
.x72_c01057{left:627.137853pt;}
}





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

.ir_c01058:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01058{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01058;src:url('chunks/assets/font_52904ba99edfa849b6048bd8.woff2')format("woff");}.ff1_c01058{font-family:ff1_c01058;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01058;src:url('chunks/assets/font_492a8e94cf5dd64d5cd9bd96.woff2')format("woff");}.ff2_c01058{font-family:ff2_c01058;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01058;src:url('chunks/assets/font_c795a6c00013a55089451ed6.woff2')format("woff");}.ff3_c01058{font-family:ff3_c01058;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01058;src:url('chunks/assets/font_e0f6ac928afd8f837e90ac8a.woff2')format("woff");}.ff4_c01058{font-family:ff4_c01058;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01058;src:url('chunks/assets/font_c620914af695528ff862274e.woff2')format("woff");}.ff5_c01058{font-family:ff5_c01058;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m63_c01058{transform:matrix(0.108429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108429,0.000000,0.000000,0.250000,0,0);}
.m5a_c01058{transform:matrix(0.124695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124695,0.000000,0.000000,0.250000,0,0);}
.m75_c01058{transform:matrix(0.145963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145963,0.000000,0.000000,0.250000,0,0);}
.m76_c01058{transform:matrix(0.147419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147419,0.000000,0.000000,0.250000,0,0);}
.m5e_c01058{transform:matrix(0.161185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161185,0.000000,0.000000,0.250000,0,0);}
.m15_c01058{transform:matrix(0.163831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163831,0.000000,0.000000,0.250000,0,0);}
.m5b_c01058{transform:matrix(0.166666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166666,0.000000,0.000000,0.250000,0,0);}
.m8d_c01058{transform:matrix(0.167333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167333,0.000000,0.000000,0.250000,0,0);}
.m64_c01058{transform:matrix(0.171548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171548,0.000000,0.000000,0.250000,0,0);}
.mc0_c01058{transform:matrix(0.173864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173864,0.000000,0.000000,0.250000,0,0);}
.m6d_c01058{transform:matrix(0.175620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175620,0.000000,0.000000,0.250000,0,0);}
.m87_c01058{transform:matrix(0.195971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195971,0.000000,0.000000,0.250000,0,0);}
.m19_c01058{transform:matrix(0.196545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196545,0.000000,0.000000,0.250000,0,0);}
.m7a_c01058{transform:matrix(0.220900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220900,0.000000,0.000000,0.250000,0,0);}
.mb1_c01058{transform:matrix(0.223016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223016,0.000000,0.000000,0.250000,0,0);}
.m5c_c01058{transform:matrix(0.228070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228070,0.000000,0.000000,0.250000,0,0);}
.ma8_c01058{transform:matrix(0.238846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238846,0.000000,0.000000,0.250000,0,0);}
.m47_c01058{transform:matrix(0.249598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249598,0.000000,0.000000,0.250000,0,0);}
.m0_c01058{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m27_c01058{transform:matrix(0.250507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250507,0.000000,0.000000,0.250000,0,0);}
.mb4_c01058{transform:matrix(0.255415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255415,0.000000,0.000000,0.250000,0,0);}
.mba_c01058{transform:matrix(0.257088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257088,0.000000,0.000000,0.250000,0,0);}
.ma3_c01058{transform:matrix(0.258587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258587,0.000000,0.000000,0.250000,0,0);}
.m3f_c01058{transform:matrix(0.260686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260686,0.000000,0.000000,0.250000,0,0);}
.mc2_c01058{transform:matrix(0.260977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260977,0.000000,0.000000,0.250000,0,0);}
.m33_c01058{transform:matrix(0.263376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263376,0.000000,0.000000,0.250000,0,0);}
.m62_c01058{transform:matrix(0.264589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264589,0.000000,0.000000,0.250000,0,0);}
.m13_c01058{transform:matrix(0.266053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266053,0.000000,0.000000,0.250000,0,0);}
.m46_c01058{transform:matrix(0.266286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266286,0.000000,0.000000,0.250000,0,0);}
.m29_c01058{transform:matrix(0.267450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267450,0.000000,0.000000,0.250000,0,0);}
.m6f_c01058{transform:matrix(0.267539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267539,0.000000,0.000000,0.250000,0,0);}
.md_c01058{transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);}
.m48_c01058{transform:matrix(0.268339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268339,0.000000,0.000000,0.250000,0,0);}
.ma6_c01058{transform:matrix(0.268840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268840,0.000000,0.000000,0.250000,0,0);}
.m6_c01058{transform:matrix(0.269113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269113,0.000000,0.000000,0.250000,0,0);}
.m2_c01058{transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);}
.ma9_c01058{transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);}
.m7b_c01058{transform:matrix(0.271254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271254,0.000000,0.000000,0.250000,0,0);}
.m34_c01058{transform:matrix(0.271512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271512,0.000000,0.000000,0.250000,0,0);}
.m10_c01058{transform:matrix(0.272858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272858,0.000000,0.000000,0.250000,0,0);}
.m17_c01058{transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);}
.m96_c01058{transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);}
.mbb_c01058{transform:matrix(0.273861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273861,0.000000,0.000000,0.250000,0,0);}
.mc4_c01058{transform:matrix(0.273903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273903,0.000000,0.000000,0.250000,0,0);}
.m9b_c01058{transform:matrix(0.275368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275368,0.000000,0.000000,0.250000,0,0);}
.m45_c01058{transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);}
.m32_c01058{transform:matrix(0.276143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276143,0.000000,0.000000,0.250000,0,0);}
.m21_c01058{transform:matrix(0.277173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277173,0.000000,0.000000,0.250000,0,0);}
.m49_c01058{transform:matrix(0.277183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277183,0.000000,0.000000,0.250000,0,0);}
.m89_c01058{transform:matrix(0.277255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277255,0.000000,0.000000,0.250000,0,0);}
.mb_c01058{transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);}
.m4b_c01058{transform:matrix(0.278464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278464,0.000000,0.000000,0.250000,0,0);}
.m91_c01058{transform:matrix(0.280301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280301,0.000000,0.000000,0.250000,0,0);}
.m2e_c01058{transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);}
.m61_c01058{transform:matrix(0.281410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281410,0.000000,0.000000,0.250000,0,0);}
.m7_c01058{transform:matrix(0.281918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281918,0.000000,0.000000,0.250000,0,0);}
.m28_c01058{transform:matrix(0.282256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282256,0.000000,0.000000,0.250000,0,0);}
.m52_c01058{transform:matrix(0.283260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283260,0.000000,0.000000,0.250000,0,0);}
.m40_c01058{transform:matrix(0.283550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283550,0.000000,0.000000,0.250000,0,0);}
.m8b_c01058{transform:matrix(0.283625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283625,0.000000,0.000000,0.250000,0,0);}
.mc6_c01058{transform:matrix(0.284292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284292,0.000000,0.000000,0.250000,0,0);}
.maf_c01058{transform:matrix(0.284910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284910,0.000000,0.000000,0.250000,0,0);}
.m1a_c01058{transform:matrix(0.285120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285120,0.000000,0.000000,0.250000,0,0);}
.m23_c01058{transform:matrix(0.285652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285652,0.000000,0.000000,0.250000,0,0);}
.m7f_c01058{transform:matrix(0.285756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285756,0.000000,0.000000,0.250000,0,0);}
.ma_c01058{transform:matrix(0.285775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285775,0.000000,0.000000,0.250000,0,0);}
.m1_c01058{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.ma1_c01058{transform:matrix(0.288505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288505,0.000000,0.000000,0.250000,0,0);}
.m71_c01058{transform:matrix(0.289185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289185,0.000000,0.000000,0.250000,0,0);}
.m9f_c01058{transform:matrix(0.290048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290048,0.000000,0.000000,0.250000,0,0);}
.m6b_c01058{transform:matrix(0.290929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290929,0.000000,0.000000,0.250000,0,0);}
.m99_c01058{transform:matrix(0.291495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291495,0.000000,0.000000,0.250000,0,0);}
.maa_c01058{transform:matrix(0.291864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291864,0.000000,0.000000,0.250000,0,0);}
.mac_c01058{transform:matrix(0.291922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291922,0.000000,0.000000,0.250000,0,0);}
.m85_c01058{transform:matrix(0.292173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292173,0.000000,0.000000,0.250000,0,0);}
.m4d_c01058{transform:matrix(0.292506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292506,0.000000,0.000000,0.250000,0,0);}
.m39_c01058{transform:matrix(0.292983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292983,0.000000,0.000000,0.250000,0,0);}
.m9a_c01058{transform:matrix(0.293011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293011,0.000000,0.000000,0.250000,0,0);}
.m7e_c01058{transform:matrix(0.294028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294028,0.000000,0.000000,0.250000,0,0);}
.m12_c01058{transform:matrix(0.295314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295314,0.000000,0.000000,0.250000,0,0);}
.mf_c01058{transform:matrix(0.295840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295840,0.000000,0.000000,0.250000,0,0);}
.mb7_c01058{transform:matrix(0.296563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296563,0.000000,0.000000,0.250000,0,0);}
.m6a_c01058{transform:matrix(0.296833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296833,0.000000,0.000000,0.250000,0,0);}
.m51_c01058{transform:matrix(0.296995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296995,0.000000,0.000000,0.250000,0,0);}
.m8_c01058{transform:matrix(0.297146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297146,0.000000,0.000000,0.250000,0,0);}
.m20_c01058{transform:matrix(0.297215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297215,0.000000,0.000000,0.250000,0,0);}
.mb3_c01058{transform:matrix(0.297622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297622,0.000000,0.000000,0.250000,0,0);}
.m56_c01058{transform:matrix(0.297779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297779,0.000000,0.000000,0.250000,0,0);}
.m67_c01058{transform:matrix(0.297812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297812,0.000000,0.000000,0.250000,0,0);}
.m2d_c01058{transform:matrix(0.298459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298459,0.000000,0.000000,0.250000,0,0);}
.mbd_c01058{transform:matrix(0.299003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299003,0.000000,0.000000,0.250000,0,0);}
.m37_c01058{transform:matrix(0.299390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299390,0.000000,0.000000,0.250000,0,0);}
.me_c01058{transform:matrix(0.299931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299931,0.000000,0.000000,0.250000,0,0);}
.m86_c01058{transform:matrix(0.299939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299939,0.000000,0.000000,0.250000,0,0);}
.mc5_c01058{transform:matrix(0.300421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300421,0.000000,0.000000,0.250000,0,0);}
.m4f_c01058{transform:matrix(0.300452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300452,0.000000,0.000000,0.250000,0,0);}
.m25_c01058{transform:matrix(0.300518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300518,0.000000,0.000000,0.250000,0,0);}
.m1c_c01058{transform:matrix(0.300565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300565,0.000000,0.000000,0.250000,0,0);}
.m1d_c01058{transform:matrix(0.300595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300595,0.000000,0.000000,0.250000,0,0);}
.m9e_c01058{transform:matrix(0.301907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301907,0.000000,0.000000,0.250000,0,0);}
.m8c_c01058{transform:matrix(0.302533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302533,0.000000,0.000000,0.250000,0,0);}
.m11_c01058{transform:matrix(0.303362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303362,0.000000,0.000000,0.250000,0,0);}
.m55_c01058{transform:matrix(0.305233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305233,0.000000,0.000000,0.250000,0,0);}
.m41_c01058{transform:matrix(0.305258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305258,0.000000,0.000000,0.250000,0,0);}
.m3b_c01058{transform:matrix(0.305989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305989,0.000000,0.000000,0.250000,0,0);}
.m8e_c01058{transform:matrix(0.306031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306031,0.000000,0.000000,0.250000,0,0);}
.m43_c01058{transform:matrix(0.306071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306071,0.000000,0.000000,0.250000,0,0);}
.ma4_c01058{transform:matrix(0.306631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306631,0.000000,0.000000,0.250000,0,0);}
.m5d_c01058{transform:matrix(0.306700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306700,0.000000,0.000000,0.250000,0,0);}
.m22_c01058{transform:matrix(0.306991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306991,0.000000,0.000000,0.250000,0,0);}
.m65_c01058{transform:matrix(0.307171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307171,0.000000,0.000000,0.250000,0,0);}
.mc7_c01058{transform:matrix(0.307690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307690,0.000000,0.000000,0.250000,0,0);}
.mae_c01058{transform:matrix(0.307864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307864,0.000000,0.000000,0.250000,0,0);}
.m73_c01058{transform:matrix(0.308253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308253,0.000000,0.000000,0.250000,0,0);}
.m92_c01058{transform:matrix(0.309310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309310,0.000000,0.000000,0.250000,0,0);}
.m95_c01058{transform:matrix(0.309632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309632,0.000000,0.000000,0.250000,0,0);}
.m69_c01058{transform:matrix(0.310160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310160,0.000000,0.000000,0.250000,0,0);}
.m72_c01058{transform:matrix(0.310162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310162,0.000000,0.000000,0.250000,0,0);}
.m53_c01058{transform:matrix(0.310230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310230,0.000000,0.000000,0.250000,0,0);}
.m93_c01058{transform:matrix(0.310318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310318,0.000000,0.000000,0.250000,0,0);}
.mb6_c01058{transform:matrix(0.311540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311540,0.000000,0.000000,0.250000,0,0);}
.m83_c01058{transform:matrix(0.312698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312698,0.000000,0.000000,0.250000,0,0);}
.m6c_c01058{transform:matrix(0.312875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312875,0.000000,0.000000,0.250000,0,0);}
.m4c_c01058{transform:matrix(0.313495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313495,0.000000,0.000000,0.250000,0,0);}
.m82_c01058{transform:matrix(0.314045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314045,0.000000,0.000000,0.250000,0,0);}
.m84_c01058{transform:matrix(0.314900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314900,0.000000,0.000000,0.250000,0,0);}
.m79_c01058{transform:matrix(0.315512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315512,0.000000,0.000000,0.250000,0,0);}
.m98_c01058{transform:matrix(0.315522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315522,0.000000,0.000000,0.250000,0,0);}
.m59_c01058{transform:matrix(0.315764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315764,0.000000,0.000000,0.250000,0,0);}
.m9c_c01058{transform:matrix(0.316495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316495,0.000000,0.000000,0.250000,0,0);}
.m7c_c01058{transform:matrix(0.316670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316670,0.000000,0.000000,0.250000,0,0);}
.mc3_c01058{transform:matrix(0.316960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316960,0.000000,0.000000,0.250000,0,0);}
.m14_c01058{transform:matrix(0.317274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317274,0.000000,0.000000,0.250000,0,0);}
.ma5_c01058{transform:matrix(0.317514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317514,0.000000,0.000000,0.250000,0,0);}
.m4e_c01058{transform:matrix(0.317521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317521,0.000000,0.000000,0.250000,0,0);}
.m5_c01058{transform:matrix(0.319317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319317,0.000000,0.000000,0.250000,0,0);}
.m57_c01058{transform:matrix(0.320451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320451,0.000000,0.000000,0.250000,0,0);}
.m1f_c01058{transform:matrix(0.320728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320728,0.000000,0.000000,0.250000,0,0);}
.m1e_c01058{transform:matrix(0.321791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321791,0.000000,0.000000,0.250000,0,0);}
.m88_c01058{transform:matrix(0.322093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322093,0.000000,0.000000,0.250000,0,0);}
.m38_c01058{transform:matrix(0.322374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322374,0.000000,0.000000,0.250000,0,0);}
.mb9_c01058{transform:matrix(0.322915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322915,0.000000,0.000000,0.250000,0,0);}
.m5f_c01058{transform:matrix(0.324257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324257,0.000000,0.000000,0.250000,0,0);}
.m54_c01058{transform:matrix(0.324812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324812,0.000000,0.000000,0.250000,0,0);}
.m68_c01058{transform:matrix(0.325305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325305,0.000000,0.000000,0.250000,0,0);}
.m8a_c01058{transform:matrix(0.325752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325752,0.000000,0.000000,0.250000,0,0);}
.m8f_c01058{transform:matrix(0.326139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326139,0.000000,0.000000,0.250000,0,0);}
.m3_c01058{transform:matrix(0.327309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327309,0.000000,0.000000,0.250000,0,0);}
.m97_c01058{transform:matrix(0.327721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327721,0.000000,0.000000,0.250000,0,0);}
.m6e_c01058{transform:matrix(0.327749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327749,0.000000,0.000000,0.250000,0,0);}
.m42_c01058{transform:matrix(0.327870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327870,0.000000,0.000000,0.250000,0,0);}
.m16_c01058{transform:matrix(0.328218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328218,0.000000,0.000000,0.250000,0,0);}
.m44_c01058{transform:matrix(0.328406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328406,0.000000,0.000000,0.250000,0,0);}
.mc_c01058{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);}
.m31_c01058{transform:matrix(0.331380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331380,0.000000,0.000000,0.250000,0,0);}
.m35_c01058{transform:matrix(0.331972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331972,0.000000,0.000000,0.250000,0,0);}
.m36_c01058{transform:matrix(0.333176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333176,0.000000,0.000000,0.250000,0,0);}
.m24_c01058{transform:matrix(0.333423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333423,0.000000,0.000000,0.250000,0,0);}
.mbe_c01058{transform:matrix(0.334182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334182,0.000000,0.000000,0.250000,0,0);}
.m50_c01058{transform:matrix(0.335265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335265,0.000000,0.000000,0.250000,0,0);}
.m2f_c01058{transform:matrix(0.335295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335295,0.000000,0.000000,0.250000,0,0);}
.ma7_c01058{transform:matrix(0.335583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335583,0.000000,0.000000,0.250000,0,0);}
.mb2_c01058{transform:matrix(0.335594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335594,0.000000,0.000000,0.250000,0,0);}
.m66_c01058{transform:matrix(0.336326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336326,0.000000,0.000000,0.250000,0,0);}
.mb8_c01058{transform:matrix(0.336453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336453,0.000000,0.000000,0.250000,0,0);}
.m70_c01058{transform:matrix(0.337107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337107,0.000000,0.000000,0.250000,0,0);}
.m3a_c01058{transform:matrix(0.337490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337490,0.000000,0.000000,0.250000,0,0);}
.m80_c01058{transform:matrix(0.337791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337791,0.000000,0.000000,0.250000,0,0);}
.m94_c01058{transform:matrix(0.338597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338597,0.000000,0.000000,0.250000,0,0);}
.m2c_c01058{transform:matrix(0.339063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339063,0.000000,0.000000,0.250000,0,0);}
.m3c_c01058{transform:matrix(0.339155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339155,0.000000,0.000000,0.250000,0,0);}
.m9d_c01058{transform:matrix(0.340970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340970,0.000000,0.000000,0.250000,0,0);}
.mad_c01058{transform:matrix(0.344760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344760,0.000000,0.000000,0.250000,0,0);}
.m78_c01058{transform:matrix(0.345164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345164,0.000000,0.000000,0.250000,0,0);}
.m4a_c01058{transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);}
.mbf_c01058{transform:matrix(0.347222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347222,0.000000,0.000000,0.250000,0,0);}
.m1b_c01058{transform:matrix(0.348246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348246,0.000000,0.000000,0.250000,0,0);}
.m7d_c01058{transform:matrix(0.348288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348288,0.000000,0.000000,0.250000,0,0);}
.mb0_c01058{transform:matrix(0.349880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349880,0.000000,0.000000,0.250000,0,0);}
.m58_c01058{transform:matrix(0.351776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351776,0.000000,0.000000,0.250000,0,0);}
.mab_c01058{transform:matrix(0.352065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352065,0.000000,0.000000,0.250000,0,0);}
.mb5_c01058{transform:matrix(0.352315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352315,0.000000,0.000000,0.250000,0,0);}
.m26_c01058{transform:matrix(0.353093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353093,0.000000,0.000000,0.250000,0,0);}
.m81_c01058{transform:matrix(0.355223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355223,0.000000,0.000000,0.250000,0,0);}
.m77_c01058{transform:matrix(0.355252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355252,0.000000,0.000000,0.250000,0,0);}
.m2b_c01058{transform:matrix(0.361186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361186,0.000000,0.000000,0.250000,0,0);}
.m2a_c01058{transform:matrix(0.362103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362103,0.000000,0.000000,0.250000,0,0);}
.m3d_c01058{transform:matrix(0.368057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368057,0.000000,0.000000,0.250000,0,0);}
.m30_c01058{transform:matrix(0.369691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369691,0.000000,0.000000,0.250000,0,0);}
.m74_c01058{transform:matrix(0.376167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376167,0.000000,0.000000,0.250000,0,0);}
.mc1_c01058{transform:matrix(0.380571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380571,0.000000,0.000000,0.250000,0,0);}
.m9_c01058{transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);}
.m18_c01058{transform:matrix(0.393384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393384,0.000000,0.000000,0.250000,0,0);}
.ma2_c01058{transform:matrix(0.398608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398608,0.000000,0.000000,0.250000,0,0);}
.m4_c01058{transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);}
.m60_c01058{transform:matrix(0.401605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401605,0.000000,0.000000,0.250000,0,0);}
.ma0_c01058{transform:matrix(0.405805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405805,0.000000,0.000000,0.250000,0,0);}
.mbc_c01058{transform:matrix(0.412048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412048,0.000000,0.000000,0.250000,0,0);}
.m3e_c01058{transform:matrix(0.418291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418291,0.000000,0.000000,0.250000,0,0);}
.m90_c01058{transform:matrix(0.884243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.884243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.884243,0.000000,0.000000,0.250000,0,0);}
.v0_c01058{vertical-align:0.000000px;}
.lse_c01058{letter-spacing:-2.647267px;}
.ls10_c01058{letter-spacing:-2.363130px;}
.ls15_c01058{letter-spacing:-2.342340px;}
.ls1_c01058{letter-spacing:0.000000px;}
.lsa_c01058{letter-spacing:0.680726px;}
.lsb_c01058{letter-spacing:0.977170px;}
.ls19_c01058{letter-spacing:1.019700px;}
.ls0_c01058{letter-spacing:1.732069px;}
.ls9_c01058{letter-spacing:2.072432px;}
.lsd_c01058{letter-spacing:2.586758px;}
.ls18_c01058{letter-spacing:2.692800px;}
.ls11_c01058{letter-spacing:2.791810px;}
.lsf_c01058{letter-spacing:3.375900px;}
.ls3_c01058{letter-spacing:3.405610px;}
.ls1a_c01058{letter-spacing:3.484810px;}
.ls8_c01058{letter-spacing:3.524400px;}
.ls13_c01058{letter-spacing:3.722400px;}
.ls12_c01058{letter-spacing:3.742200px;}
.ls2_c01058{letter-spacing:3.781810px;}
.ls5_c01058{letter-spacing:3.841200px;}
.ls7_c01058{letter-spacing:3.940200px;}
.lsc_c01058{letter-spacing:4.118400px;}
.ls1b_c01058{letter-spacing:49.896198px;}
.ls6_c01058{letter-spacing:54.172998px;}
.ls17_c01058{letter-spacing:59.875398px;}
.ls14_c01058{letter-spacing:62.726400px;}
.ls16_c01058{letter-spacing:65.577798px;}
.ls4_c01058{letter-spacing:67.003200px;}
.sc__c01058{text-shadow:none;}
.sc0_c01058{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01058{-webkit-text-stroke:0px transparent;}
.sc0_c01058{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01058{word-spacing:0.000000px;}
._1_c01058{width:6.573688px;}
._2_c01058{width:26.960868px;}
._0_c01058{width:40.564102px;}
.fc0_c01058{color:transparent;}
.fs15_c01058{font-size:20.394000px;}
.fs19_c01058{font-size:27.720000px;}
.fs1_c01058{font-size:32.868000px;}
.fs18_c01058{font-size:49.896198px;}
.fs7_c01058{font-size:53.064000px;}
.fs5_c01058{font-size:54.172998px;}
.fsc_c01058{font-size:55.836198px;}
.fs17_c01058{font-size:57.024000px;}
.fs12_c01058{font-size:59.875398px;}
.fse_c01058{font-size:62.726400px;}
.fs11_c01058{font-size:65.577798px;}
.fs13_c01058{font-size:65.736198px;}
.fs10_c01058{font-size:66.330000px;}
.fsf_c01058{font-size:66.924000px;}
.fs3_c01058{font-size:67.003200px;}
.fs14_c01058{font-size:67.320000px;}
.fsb_c01058{font-size:67.518000px;}
.fs2_c01058{font-size:68.112198px;}
.fs16_c01058{font-size:69.696198px;}
.fs8_c01058{font-size:70.488000px;}
.fsd_c01058{font-size:74.448000px;}
.fsa_c01058{font-size:74.844000px;}
.fs0_c01058{font-size:75.636198px;}
.fs4_c01058{font-size:76.824000px;}
.fs6_c01058{font-size:78.804000px;}
.fs9_c01058{font-size:82.368000px;}
.y0_c01058{bottom:0.000000px;}
.y1_c01058{bottom:76.500000px;}
.y21_c01058{bottom:133.918335px;}
.y20_c01058{bottom:160.648335px;}
.y1f_c01058{bottom:193.075785px;}
.y1e_c01058{bottom:226.582335px;}
.y1c_c01058{bottom:258.658335px;}
.y1d_c01058{bottom:260.083935px;}
.y1b_c01058{bottom:291.090735px;}
.y1a_c01058{bottom:322.092585px;}
.y19_c01058{bottom:354.173535px;}
.y18_c01058{bottom:382.329135px;}
.y16_c01058{bottom:386.600985px;}
.y17_c01058{bottom:386.962335px;}
.y15_c01058{bottom:418.676985px;}
.y14_c01058{bottom:450.396585px;}
.y13_c01058{bottom:481.759785px;}
.y12_c01058{bottom:546.268185px;}
.y11_c01058{bottom:577.631385px;}
.ye_c01058{bottom:610.420185px;}
.y10_c01058{bottom:610.781535px;}
.yd_c01058{bottom:642.501135px;}
.yf_c01058{bottom:643.926735px;}
.yc_c01058{bottom:673.859385px;}
.yb_c01058{bottom:705.578985px;}
.ya_c01058{bottom:737.659935px;}
.y9_c01058{bottom:770.092335px;}
.y8_c01058{bottom:802.163385px;}
.y7_c01058{bottom:833.170185px;}
.y6_c01058{bottom:861.325785px;}
.y5_c01058{bottom:864.894735px;}
.y4_c01058{bottom:896.609385px;}
.y3_c01058{bottom:914.077935px;}
.y2_c01058{bottom:928.328985px;}
.h17_c01058{height:20.015596px;}
.h16_c01058{height:20.553328px;}
.h1b_c01058{height:28.911094px;}
.h1a_c01058{height:33.230868px;}
.h3_c01058{height:34.280297px;}
.h7_c01058{height:36.079217px;}
.h13_c01058{height:39.877015px;}
.h10_c01058{height:41.775782px;}
.h12_c01058{height:43.674813px;}
.h5_c01058{height:44.624131px;}
.he_c01058{height:54.772911px;}
.h9_c01058{height:55.344094px;}
.h19_c01058{height:59.474250px;}
.h18_c01058{height:68.403007px;}
.h14_c01058{height:68.560800px;}
.ha_c01058{height:69.180117px;}
.h11_c01058{height:69.799641px;}
.h15_c01058{height:70.212656px;}
.hd_c01058{height:70.419164px;}
.h4_c01058{height:71.038894px;}
.hf_c01058{height:73.066641px;}
.hc_c01058{height:73.455293px;}
.h2_c01058{height:74.232792px;}
.h6_c01058{height:75.398555px;}
.h8_c01058{height:77.341816px;}
.hb_c01058{height:80.839688px;}
.h1_c01058{height:1110.000000px;}
.h0_c01058{height:1263.000000px;}
.w1_c01058{width:775.500000px;}
.w0_c01058{width:892.500000px;}
.x0_c01058{left:0.000000px;}
.x2_c01058{left:53.045835px;}
.x1_c01058{left:58.500000px;}
.x35_c01058{left:73.019085px;}
.x26_c01058{left:74.058585px;}
.x3_c01058{left:75.132735px;}
.x36_c01058{left:96.016785px;}
.x6c_c01058{left:104.357535px;}
.x3c_c01058{left:105.797985px;}
.x2f_c01058{left:107.065185px;}
.x59_c01058{left:127.162185px;}
.x45_c01058{left:128.775885px;}
.x37_c01058{left:129.830235px;}
.x30_c01058{left:138.977835px;}
.x17_c01058{left:140.561835px;}
.x7a_c01058{left:149.833185px;}
.x4_c01058{left:151.610235px;}
.x69_c01058{left:159.649035px;}
.x53_c01058{left:171.360735px;}
.x18_c01058{left:172.929885px;}
.x38_c01058{left:173.984235px;}
.xf_c01058{left:183.171435px;}
.x3d_c01058{left:184.275285px;}
.x27_c01058{left:195.051435px;}
.x5_c01058{left:196.472085px;}
.x54_c01058{left:204.199035px;}
.x19_c01058{left:206.703735px;}
.x7b_c01058{left:216.064185px;}
.x41_c01058{left:217.504635px;}
.x7f_c01058{left:225.939435px;}
.x6d_c01058{left:227.102685px;}
.x28_c01058{left:228.389685px;}
.x5f_c01058{left:237.656085px;}
.x44_c01058{left:239.160885px;}
.x77_c01058{left:250.337985px;}
.x10_c01058{left:252.070485px;}
.x6e_c01058{left:260.119185px;}
.x46_c01058{left:262.005135px;}
.x55_c01058{left:272.212035px;}
.x6_c01058{left:284.126685px;}
.x58_c01058{left:293.299035px;}
.x5a_c01058{left:295.214685px;}
.x29_c01058{left:306.263085px;}
.x3e_c01058{left:307.332285px;}
.x7c_c01058{left:315.371085px;}
.x1a_c01058{left:316.697685px;}
.x7_c01058{left:318.360885px;}
.x5b_c01058{left:327.523335px;}
.x47_c01058{left:329.983485px;}
.x7d_c01058{left:337.467885px;}
.x3f_c01058{left:338.893485px;}
.x31_c01058{left:340.695285px;}
.x11_c01058{left:350.560635px;}
.x2a_c01058{left:352.268385px;}
.x60_c01058{left:360.614085px;}
.x56_c01058{left:361.856535px;}
.x32_c01058{left:372.385185px;}
.x48_c01058{left:381.107085px;}
.x12_c01058{left:382.364385px;}
.x65_c01058{left:383.596935px;}
.x8_c01058{left:384.923535px;}
.x49_c01058{left:385.972935px;}
.x57_c01058{left:393.417735px;}
.x42_c01058{left:395.259135px;}
.x5c_c01058{left:405.569985px;}
.x20_c01058{left:407.114385px;}
.x74_c01058{left:416.544135px;}
.x13_c01058{left:417.712335px;}
.x4a_c01058{left:427.310385px;}
.x78_c01058{left:436.928235px;}
.x33_c01058{left:438.353835px;}
.x21_c01058{left:439.883385px;}
.x43_c01058{left:445.813485px;}
.x75_c01058{left:448.342935px;}
.x50_c01058{left:449.981385px;}
.x1b_c01058{left:451.649535px;}
.x61_c01058{left:459.361635px;}
.x9_c01058{left:462.054435px;}
.x64_c01058{left:471.860385px;}
.x40_c01058{left:482.438535px;}
.x1c_c01058{left:484.101735px;}
.x80_c01058{left:492.135585px;}
.x5d_c01058{left:493.719585px;}
.x14_c01058{left:495.872835px;}
.x51_c01058{left:505.495635px;}
.xa_c01058{left:507.262785px;}
.x4b_c01058{left:515.816385px;}
.x22_c01058{left:517.984485px;}
.x39_c01058{left:526.854885px;}
.x2b_c01058{left:528.651735px;}
.x23_c01058{left:538.091385px;}
.x79_c01058{left:547.862685px;}
.x66_c01058{left:550.713885px;}
.x6a_c01058{left:559.331835px;}
.x2c_c01058{left:560.737635px;}
.x4c_c01058{left:564.172935px;}
.x71_c01058{left:569.484285px;}
.x81_c01058{left:570.657435px;}
.x15_c01058{left:571.939485px;}
.x1d_c01058{left:573.167085px;}
.x67_c01058{left:580.894035px;}
.xb_c01058{left:582.794835px;}
.x4d_c01058{left:583.888785px;}
.x7e_c01058{left:591.917685px;}
.x6f_c01058{left:593.061135px;}
.x62_c01058{left:594.189735px;}
.x6b_c01058{left:604.525335px;}
.x1e_c01058{left:605.540085px;}
.x52_c01058{left:614.380785px;}
.xc_c01058{left:616.311285px;}
.x24_c01058{left:628.057635px;}
.x72_c01058{left:635.086635px;}
.x3a_c01058{left:638.229885px;}
.x5e_c01058{left:646.847835px;}
.x4e_c01058{left:648.421935px;}
.x2d_c01058{left:649.461435px;}
.x25_c01058{left:658.925835px;}
.x16_c01058{left:660.039585px;}
.x73_c01058{left:669.786135px;}
.x70_c01058{left:679.948485px;}
.xd_c01058{left:682.997685px;}
.x4f_c01058{left:691.754235px;}
.x63_c01058{left:692.952135px;}
.x34_c01058{left:693.996585px;}
.x82_c01058{left:700.560285px;}
.x68_c01058{left:702.436335px;}
.x2e_c01058{left:706.366635px;}
.xe_c01058{left:710.777085px;}
.x76_c01058{left:713.583735px;}
.x3b_c01058{left:716.840835px;}
.x1f_c01058{left:740.892885px;}
@media print{
.v0_c01058{vertical-align:0.000000pt;}
.lse_c01058{letter-spacing:-2.353126pt;}
.ls10_c01058{letter-spacing:-2.100560pt;}
.ls15_c01058{letter-spacing:-2.082080pt;}
.ls1_c01058{letter-spacing:0.000000pt;}
.lsa_c01058{letter-spacing:0.605090pt;}
.lsb_c01058{letter-spacing:0.868595pt;}
.ls19_c01058{letter-spacing:0.906400pt;}
.ls0_c01058{letter-spacing:1.539617pt;}
.ls9_c01058{letter-spacing:1.842162pt;}
.lsd_c01058{letter-spacing:2.299340pt;}
.ls18_c01058{letter-spacing:2.393600pt;}
.ls11_c01058{letter-spacing:2.481609pt;}
.lsf_c01058{letter-spacing:3.000800pt;}
.ls3_c01058{letter-spacing:3.027209pt;}
.ls1a_c01058{letter-spacing:3.097609pt;}
.ls8_c01058{letter-spacing:3.132800pt;}
.ls13_c01058{letter-spacing:3.308800pt;}
.ls12_c01058{letter-spacing:3.326400pt;}
.ls2_c01058{letter-spacing:3.361609pt;}
.ls5_c01058{letter-spacing:3.414400pt;}
.ls7_c01058{letter-spacing:3.502400pt;}
.lsc_c01058{letter-spacing:3.660800pt;}
.ls1b_c01058{letter-spacing:44.352176pt;}
.ls6_c01058{letter-spacing:48.153776pt;}
.ls17_c01058{letter-spacing:53.222576pt;}
.ls14_c01058{letter-spacing:55.756800pt;}
.ls16_c01058{letter-spacing:58.291376pt;}
.ls4_c01058{letter-spacing:59.558400pt;}
.ws0_c01058{word-spacing:0.000000pt;}
._1_c01058{width:5.843278pt;}
._2_c01058{width:23.965216pt;}
._0_c01058{width:36.056980pt;}
.fs15_c01058{font-size:18.128000pt;}
.fs19_c01058{font-size:24.640000pt;}
.fs1_c01058{font-size:29.216000pt;}
.fs18_c01058{font-size:44.352176pt;}
.fs7_c01058{font-size:47.168000pt;}
.fs5_c01058{font-size:48.153776pt;}
.fsc_c01058{font-size:49.632176pt;}
.fs17_c01058{font-size:50.688000pt;}
.fs12_c01058{font-size:53.222576pt;}
.fse_c01058{font-size:55.756800pt;}
.fs11_c01058{font-size:58.291376pt;}
.fs13_c01058{font-size:58.432176pt;}
.fs10_c01058{font-size:58.960000pt;}
.fsf_c01058{font-size:59.488000pt;}
.fs3_c01058{font-size:59.558400pt;}
.fs14_c01058{font-size:59.840000pt;}
.fsb_c01058{font-size:60.016000pt;}
.fs2_c01058{font-size:60.544176pt;}
.fs16_c01058{font-size:61.952176pt;}
.fs8_c01058{font-size:62.656000pt;}
.fsd_c01058{font-size:66.176000pt;}
.fsa_c01058{font-size:66.528000pt;}
.fs0_c01058{font-size:67.232176pt;}
.fs4_c01058{font-size:68.288000pt;}
.fs6_c01058{font-size:70.048000pt;}
.fs9_c01058{font-size:73.216000pt;}
.y0_c01058{bottom:0.000000pt;}
.y1_c01058{bottom:68.000000pt;}
.y21_c01058{bottom:119.038520pt;}
.y20_c01058{bottom:142.798520pt;}
.y1f_c01058{bottom:171.622920pt;}
.y1e_c01058{bottom:201.406520pt;}
.y1c_c01058{bottom:229.918520pt;}
.y1d_c01058{bottom:231.185720pt;}
.y1b_c01058{bottom:258.747320pt;}
.y1a_c01058{bottom:286.304520pt;}
.y19_c01058{bottom:314.820920pt;}
.y18_c01058{bottom:339.848120pt;}
.y16_c01058{bottom:343.645320pt;}
.y17_c01058{bottom:343.966520pt;}
.y15_c01058{bottom:372.157320pt;}
.y14_c01058{bottom:400.352520pt;}
.y13_c01058{bottom:428.230920pt;}
.y12_c01058{bottom:485.571720pt;}
.y11_c01058{bottom:513.450120pt;}
.ye_c01058{bottom:542.595720pt;}
.y10_c01058{bottom:542.916920pt;}
.yd_c01058{bottom:571.112120pt;}
.yf_c01058{bottom:572.379320pt;}
.yc_c01058{bottom:598.986120pt;}
.yb_c01058{bottom:627.181320pt;}
.ya_c01058{bottom:655.697720pt;}
.y9_c01058{bottom:684.526520pt;}
.y8_c01058{bottom:713.034120pt;}
.y7_c01058{bottom:740.595720pt;}
.y6_c01058{bottom:765.622920pt;}
.y5_c01058{bottom:768.795320pt;}
.y4_c01058{bottom:796.986120pt;}
.y3_c01058{bottom:812.513720pt;}
.y2_c01058{bottom:825.181320pt;}
.h17_c01058{height:17.791641pt;}
.h16_c01058{height:18.269625pt;}
.h1b_c01058{height:25.698750pt;}
.h1a_c01058{height:29.538549pt;}
.h3_c01058{height:30.471375pt;}
.h7_c01058{height:32.070415pt;}
.h13_c01058{height:35.446236pt;}
.h10_c01058{height:37.134029pt;}
.h12_c01058{height:38.822056pt;}
.h5_c01058{height:39.665894pt;}
.he_c01058{height:48.687032pt;}
.h9_c01058{height:49.194750pt;}
.h19_c01058{height:52.866000pt;}
.h18_c01058{height:60.802673pt;}
.h14_c01058{height:60.942934pt;}
.ha_c01058{height:61.493438pt;}
.h11_c01058{height:62.044125pt;}
.h15_c01058{height:62.411250pt;}
.hd_c01058{height:62.594813pt;}
.h4_c01058{height:63.145684pt;}
.hf_c01058{height:64.948125pt;}
.hc_c01058{height:65.293594pt;}
.h2_c01058{height:65.984704pt;}
.h6_c01058{height:67.020938pt;}
.h8_c01058{height:68.748281pt;}
.hb_c01058{height:71.857500pt;}
.h1_c01058{height:986.666667pt;}
.h0_c01058{height:1122.666667pt;}
.w1_c01058{width:689.333333pt;}
.w0_c01058{width:793.333333pt;}
.x0_c01058{left:0.000000pt;}
.x2_c01058{left:47.151853pt;}
.x1_c01058{left:52.000000pt;}
.x35_c01058{left:64.905853pt;}
.x26_c01058{left:65.829853pt;}
.x3_c01058{left:66.784653pt;}
.x36_c01058{left:85.348253pt;}
.x6c_c01058{left:92.762253pt;}
.x3c_c01058{left:94.042653pt;}
.x2f_c01058{left:95.169053pt;}
.x59_c01058{left:113.033053pt;}
.x45_c01058{left:114.467453pt;}
.x37_c01058{left:115.404653pt;}
.x30_c01058{left:123.535853pt;}
.x17_c01058{left:124.943853pt;}
.x7a_c01058{left:133.185053pt;}
.x4_c01058{left:134.764653pt;}
.x69_c01058{left:141.910253pt;}
.x53_c01058{left:152.320653pt;}
.x18_c01058{left:153.715453pt;}
.x38_c01058{left:154.652653pt;}
.xf_c01058{left:162.819053pt;}
.x3d_c01058{left:163.800253pt;}
.x27_c01058{left:173.379053pt;}
.x5_c01058{left:174.641853pt;}
.x54_c01058{left:181.510253pt;}
.x19_c01058{left:183.736653pt;}
.x7b_c01058{left:192.057053pt;}
.x41_c01058{left:193.337453pt;}
.x7f_c01058{left:200.835053pt;}
.x6d_c01058{left:201.869053pt;}
.x28_c01058{left:203.013053pt;}
.x5f_c01058{left:211.249853pt;}
.x44_c01058{left:212.587453pt;}
.x77_c01058{left:222.522653pt;}
.x10_c01058{left:224.062653pt;}
.x6e_c01058{left:231.217053pt;}
.x46_c01058{left:232.893453pt;}
.x55_c01058{left:241.966253pt;}
.x6_c01058{left:252.557053pt;}
.x58_c01058{left:260.710253pt;}
.x5a_c01058{left:262.413053pt;}
.x29_c01058{left:272.233853pt;}
.x3e_c01058{left:273.184253pt;}
.x7c_c01058{left:280.329853pt;}
.x1a_c01058{left:281.509053pt;}
.x7_c01058{left:282.987453pt;}
.x5b_c01058{left:291.131853pt;}
.x47_c01058{left:293.318653pt;}
.x7d_c01058{left:299.971453pt;}
.x3f_c01058{left:301.238653pt;}
.x31_c01058{left:302.840253pt;}
.x11_c01058{left:311.609453pt;}
.x2a_c01058{left:313.127453pt;}
.x60_c01058{left:320.545853pt;}
.x56_c01058{left:321.650253pt;}
.x32_c01058{left:331.009053pt;}
.x48_c01058{left:338.761853pt;}
.x12_c01058{left:339.879453pt;}
.x65_c01058{left:340.975053pt;}
.x8_c01058{left:342.154253pt;}
.x49_c01058{left:343.087053pt;}
.x57_c01058{left:349.704653pt;}
.x42_c01058{left:351.341453pt;}
.x5c_c01058{left:360.506653pt;}
.x20_c01058{left:361.879453pt;}
.x74_c01058{left:370.261453pt;}
.x13_c01058{left:371.299853pt;}
.x4a_c01058{left:379.831453pt;}
.x78_c01058{left:388.380653pt;}
.x33_c01058{left:389.647853pt;}
.x21_c01058{left:391.007453pt;}
.x43_c01058{left:396.278653pt;}
.x75_c01058{left:398.527053pt;}
.x50_c01058{left:399.983453pt;}
.x1b_c01058{left:401.466253pt;}
.x61_c01058{left:408.321453pt;}
.x9_c01058{left:410.715053pt;}
.x64_c01058{left:419.431453pt;}
.x40_c01058{left:428.834253pt;}
.x1c_c01058{left:430.312653pt;}
.x80_c01058{left:437.453853pt;}
.x5d_c01058{left:438.861853pt;}
.x14_c01058{left:440.775853pt;}
.x51_c01058{left:449.329453pt;}
.xa_c01058{left:450.900253pt;}
.x4b_c01058{left:458.503453pt;}
.x22_c01058{left:460.430653pt;}
.x39_c01058{left:468.315453pt;}
.x2b_c01058{left:469.912653pt;}
.x23_c01058{left:478.303453pt;}
.x79_c01058{left:486.989053pt;}
.x66_c01058{left:489.523453pt;}
.x6a_c01058{left:497.183853pt;}
.x2c_c01058{left:498.433453pt;}
.x4c_c01058{left:501.487053pt;}
.x71_c01058{left:506.208253pt;}
.x81_c01058{left:507.251053pt;}
.x15_c01058{left:508.390653pt;}
.x1d_c01058{left:509.481853pt;}
.x67_c01058{left:516.350253pt;}
.xb_c01058{left:518.039853pt;}
.x4d_c01058{left:519.012253pt;}
.x7e_c01058{left:526.149053pt;}
.x6f_c01058{left:527.165453pt;}
.x62_c01058{left:528.168653pt;}
.x6b_c01058{left:537.355853pt;}
.x1e_c01058{left:538.257853pt;}
.x52_c01058{left:546.116253pt;}
.xc_c01058{left:547.832253pt;}
.x24_c01058{left:558.273453pt;}
.x72_c01058{left:564.521453pt;}
.x3a_c01058{left:567.315453pt;}
.x5e_c01058{left:574.975853pt;}
.x4e_c01058{left:576.375053pt;}
.x2d_c01058{left:577.299053pt;}
.x25_c01058{left:585.711853pt;}
.x16_c01058{left:586.701853pt;}
.x73_c01058{left:595.365453pt;}
.x70_c01058{left:604.398653pt;}
.xd_c01058{left:607.109053pt;}
.x4f_c01058{left:614.892653pt;}
.x63_c01058{left:615.957453pt;}
.x34_c01058{left:616.885853pt;}
.x82_c01058{left:622.720253pt;}
.x68_c01058{left:624.387853pt;}
.x2e_c01058{left:627.881453pt;}
.xe_c01058{left:631.801853pt;}
.x76_c01058{left:634.296653pt;}
.x3b_c01058{left:637.191853pt;}
.x1f_c01058{left:658.571453pt;}
}





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

.ir_c01059:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01059{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01059;src:url('chunks/assets/font_3481defdb8738876559d6a32.woff2')format("woff");}.ff1_c01059{font-family:ff1_c01059;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01059;src:url('chunks/assets/font_6ab8ff7fb90ae02fad167233.woff2')format("woff");}.ff2_c01059{font-family:ff2_c01059;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01059;src:url('chunks/assets/font_42da3950c5aaf7bb5b8837fc.woff2')format("woff");}.ff3_c01059{font-family:ff3_c01059;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01059;src:url('chunks/assets/font_c8d567e1276b59f215a2630a.woff2')format("woff");}.ff4_c01059{font-family:ff4_c01059;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01059;src:url('chunks/assets/font_8ecf45ee0a821c1314047bce.woff2')format("woff");}.ff5_c01059{font-family:ff5_c01059;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m64_c01059{transform:matrix(0.130513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130513,0.000000,0.000000,0.250000,0,0);}
.m65_c01059{transform:matrix(0.136121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136121,0.000000,0.000000,0.250000,0,0);}
.m56_c01059{transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);}
.m66_c01059{transform:matrix(0.150297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150297,0.000000,0.000000,0.250000,0,0);}
.m41_c01059{transform:matrix(0.152641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152641,0.000000,0.000000,0.250000,0,0);}
.m7b_c01059{transform:matrix(0.167333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167333,0.000000,0.000000,0.250000,0,0);}
.m55_c01059{transform:matrix(0.174999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174999,0.000000,0.000000,0.250000,0,0);}
.m57_c01059{transform:matrix(0.182143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182143,0.000000,0.000000,0.250000,0,0);}
.m77_c01059{transform:matrix(0.182926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182926,0.000000,0.000000,0.250000,0,0);}
.m87_c01059{transform:matrix(0.199739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199739,0.000000,0.000000,0.250000,0,0);}
.m33_c01059{transform:matrix(0.209876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209876,0.000000,0.000000,0.250000,0,0);}
.m35_c01059{transform:matrix(0.233949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233949,0.000000,0.000000,0.250000,0,0);}
.m47_c01059{transform:matrix(0.242014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242014,0.000000,0.000000,0.250000,0,0);}
.m58_c01059{transform:matrix(0.242141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242141,0.000000,0.000000,0.250000,0,0);}
.m0_c01059{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01059{transform:matrix(0.259656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259656,0.000000,0.000000,0.250000,0,0);}
.m4b_c01059{transform:matrix(0.259852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259852,0.000000,0.000000,0.250000,0,0);}
.m79_c01059{transform:matrix(0.263376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263376,0.000000,0.000000,0.250000,0,0);}
.mb6_c01059{transform:matrix(0.265075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265075,0.000000,0.000000,0.250000,0,0);}
.mc_c01059{transform:matrix(0.266448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266448,0.000000,0.000000,0.250000,0,0);}
.m68_c01059{transform:matrix(0.267450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267450,0.000000,0.000000,0.250000,0,0);}
.m20_c01059{transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);}
.mb1_c01059{transform:matrix(0.268840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268840,0.000000,0.000000,0.250000,0,0);}
.m2e_c01059{transform:matrix(0.269026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269026,0.000000,0.000000,0.250000,0,0);}
.m36_c01059{transform:matrix(0.270108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270108,0.000000,0.000000,0.250000,0,0);}
.m29_c01059{transform:matrix(0.270538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270538,0.000000,0.000000,0.250000,0,0);}
.m28_c01059{transform:matrix(0.270863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270863,0.000000,0.000000,0.250000,0,0);}
.m5c_c01059{transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);}
.m14_c01059{transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);}
.ma3_c01059{transform:matrix(0.273115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273115,0.000000,0.000000,0.250000,0,0);}
.m24_c01059{transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);}
.mb8_c01059{transform:matrix(0.274610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274610,0.000000,0.000000,0.250000,0,0);}
.m3_c01059{transform:matrix(0.275093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275093,0.000000,0.000000,0.250000,0,0);}
.m42_c01059{transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);}
.m59_c01059{transform:matrix(0.276103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276103,0.000000,0.000000,0.250000,0,0);}
.m1d_c01059{transform:matrix(0.276672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276672,0.000000,0.000000,0.250000,0,0);}
.m51_c01059{transform:matrix(0.276991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276991,0.000000,0.000000,0.250000,0,0);}
.m76_c01059{transform:matrix(0.277039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277039,0.000000,0.000000,0.250000,0,0);}
.m89_c01059{transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);}
.mbc_c01059{transform:matrix(0.278178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278178,0.000000,0.000000,0.250000,0,0);}
.m70_c01059{transform:matrix(0.279112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279112,0.000000,0.000000,0.250000,0,0);}
.md_c01059{transform:matrix(0.279282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279282,0.000000,0.000000,0.250000,0,0);}
.m5f_c01059{transform:matrix(0.279550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279550,0.000000,0.000000,0.250000,0,0);}
.m8f_c01059{transform:matrix(0.279715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279715,0.000000,0.000000,0.250000,0,0);}
.m7a_c01059{transform:matrix(0.280400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280400,0.000000,0.000000,0.250000,0,0);}
.mb5_c01059{transform:matrix(0.280486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280486,0.000000,0.000000,0.250000,0,0);}
.m95_c01059{transform:matrix(0.280800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280800,0.000000,0.000000,0.250000,0,0);}
.ma_c01059{transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);}
.m18_c01059{transform:matrix(0.280961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280961,0.000000,0.000000,0.250000,0,0);}
.mc6_c01059{transform:matrix(0.281157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281157,0.000000,0.000000,0.250000,0,0);}
.mbf_c01059{transform:matrix(0.281556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281556,0.000000,0.000000,0.250000,0,0);}
.m63_c01059{transform:matrix(0.281629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281629,0.000000,0.000000,0.250000,0,0);}
.mce_c01059{transform:matrix(0.282883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282883,0.000000,0.000000,0.250000,0,0);}
.m8_c01059{transform:matrix(0.283625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283625,0.000000,0.000000,0.250000,0,0);}
.m2_c01059{transform:matrix(0.283843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283843,0.000000,0.000000,0.250000,0,0);}
.mc2_c01059{transform:matrix(0.284392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284392,0.000000,0.000000,0.250000,0,0);}
.m7_c01059{transform:matrix(0.284586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284586,0.000000,0.000000,0.250000,0,0);}
.ma2_c01059{transform:matrix(0.284768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284768,0.000000,0.000000,0.250000,0,0);}
.m98_c01059{transform:matrix(0.284886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284886,0.000000,0.000000,0.250000,0,0);}
.m74_c01059{transform:matrix(0.285120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285120,0.000000,0.000000,0.250000,0,0);}
.m6a_c01059{transform:matrix(0.285599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285599,0.000000,0.000000,0.250000,0,0);}
.m4f_c01059{transform:matrix(0.285652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285652,0.000000,0.000000,0.250000,0,0);}
.m6d_c01059{transform:matrix(0.286331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286331,0.000000,0.000000,0.250000,0,0);}
.mab_c01059{transform:matrix(0.286620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286620,0.000000,0.000000,0.250000,0,0);}
.mb2_c01059{transform:matrix(0.287096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287096,0.000000,0.000000,0.250000,0,0);}
.m12_c01059{transform:matrix(0.287319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287319,0.000000,0.000000,0.250000,0,0);}
.m34_c01059{transform:matrix(0.287374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287374,0.000000,0.000000,0.250000,0,0);}
.mad_c01059{transform:matrix(0.288298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288298,0.000000,0.000000,0.250000,0,0);}
.m80_c01059{transform:matrix(0.288781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288781,0.000000,0.000000,0.250000,0,0);}
.m75_c01059{transform:matrix(0.288861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288861,0.000000,0.000000,0.250000,0,0);}
.m4e_c01059{transform:matrix(0.289185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289185,0.000000,0.000000,0.250000,0,0);}
.m4_c01059{transform:matrix(0.289588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289588,0.000000,0.000000,0.250000,0,0);}
.m94_c01059{transform:matrix(0.290493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290493,0.000000,0.000000,0.250000,0,0);}
.m9f_c01059{transform:matrix(0.291914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291914,0.000000,0.000000,0.250000,0,0);}
.mc9_c01059{transform:matrix(0.291939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291939,0.000000,0.000000,0.250000,0,0);}
.m92_c01059{transform:matrix(0.292287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292287,0.000000,0.000000,0.250000,0,0);}
.mba_c01059{transform:matrix(0.292506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292506,0.000000,0.000000,0.250000,0,0);}
.m9a_c01059{transform:matrix(0.292546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292546,0.000000,0.000000,0.250000,0,0);}
.m5b_c01059{transform:matrix(0.293088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293088,0.000000,0.000000,0.250000,0,0);}
.m9e_c01059{transform:matrix(0.293280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293280,0.000000,0.000000,0.250000,0,0);}
.m4a_c01059{transform:matrix(0.293603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293603,0.000000,0.000000,0.250000,0,0);}
.mb3_c01059{transform:matrix(0.294813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294813,0.000000,0.000000,0.250000,0,0);}
.mc7_c01059{transform:matrix(0.294993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294993,0.000000,0.000000,0.250000,0,0);}
.mc4_c01059{transform:matrix(0.295184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295184,0.000000,0.000000,0.250000,0,0);}
.m38_c01059{transform:matrix(0.295230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295230,0.000000,0.000000,0.250000,0,0);}
.m27_c01059{transform:matrix(0.295549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295549,0.000000,0.000000,0.250000,0,0);}
.m60_c01059{transform:matrix(0.295983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295983,0.000000,0.000000,0.250000,0,0);}
.m1e_c01059{transform:matrix(0.296719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296719,0.000000,0.000000,0.250000,0,0);}
.m3a_c01059{transform:matrix(0.296995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296995,0.000000,0.000000,0.250000,0,0);}
.m6b_c01059{transform:matrix(0.297118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297118,0.000000,0.000000,0.250000,0,0);}
.m6c_c01059{transform:matrix(0.297965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297965,0.000000,0.000000,0.250000,0,0);}
.m19_c01059{transform:matrix(0.298106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298106,0.000000,0.000000,0.250000,0,0);}
.m16_c01059{transform:matrix(0.298732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298732,0.000000,0.000000,0.250000,0,0);}
.m30_c01059{transform:matrix(0.299052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299052,0.000000,0.000000,0.250000,0,0);}
.m73_c01059{transform:matrix(0.299256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299256,0.000000,0.000000,0.250000,0,0);}
.m1a_c01059{transform:matrix(0.299298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299298,0.000000,0.000000,0.250000,0,0);}
.m3c_c01059{transform:matrix(0.299390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299390,0.000000,0.000000,0.250000,0,0);}
.m1_c01059{transform:matrix(0.300400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300400,0.000000,0.000000,0.250000,0,0);}
.m2d_c01059{transform:matrix(0.300828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300828,0.000000,0.000000,0.250000,0,0);}
.m7d_c01059{transform:matrix(0.301004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301004,0.000000,0.000000,0.250000,0,0);}
.m8a_c01059{transform:matrix(0.301023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301023,0.000000,0.000000,0.250000,0,0);}
.m1f_c01059{transform:matrix(0.301029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301029,0.000000,0.000000,0.250000,0,0);}
.m9d_c01059{transform:matrix(0.301288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301288,0.000000,0.000000,0.250000,0,0);}
.mcc_c01059{transform:matrix(0.301307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301307,0.000000,0.000000,0.250000,0,0);}
.m84_c01059{transform:matrix(0.301509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301509,0.000000,0.000000,0.250000,0,0);}
.mb9_c01059{transform:matrix(0.301563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301563,0.000000,0.000000,0.250000,0,0);}
.m4d_c01059{transform:matrix(0.302260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302260,0.000000,0.000000,0.250000,0,0);}
.m45_c01059{transform:matrix(0.302495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302495,0.000000,0.000000,0.250000,0,0);}
.m67_c01059{transform:matrix(0.302563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302563,0.000000,0.000000,0.250000,0,0);}
.m72_c01059{transform:matrix(0.302602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302602,0.000000,0.000000,0.250000,0,0);}
.ma4_c01059{transform:matrix(0.303106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303106,0.000000,0.000000,0.250000,0,0);}
.m23_c01059{transform:matrix(0.304979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304979,0.000000,0.000000,0.250000,0,0);}
.m85_c01059{transform:matrix(0.305389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305389,0.000000,0.000000,0.250000,0,0);}
.mb0_c01059{transform:matrix(0.305639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305639,0.000000,0.000000,0.250000,0,0);}
.mc5_c01059{transform:matrix(0.305733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305733,0.000000,0.000000,0.250000,0,0);}
.mca_c01059{transform:matrix(0.305927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305927,0.000000,0.000000,0.250000,0,0);}
.m37_c01059{transform:matrix(0.306031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306031,0.000000,0.000000,0.250000,0,0);}
.m22_c01059{transform:matrix(0.306071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306071,0.000000,0.000000,0.250000,0,0);}
.mb7_c01059{transform:matrix(0.306197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306197,0.000000,0.000000,0.250000,0,0);}
.mac_c01059{transform:matrix(0.306721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306721,0.000000,0.000000,0.250000,0,0);}
.m5e_c01059{transform:matrix(0.307690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307690,0.000000,0.000000,0.250000,0,0);}
.me_c01059{transform:matrix(0.307947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307947,0.000000,0.000000,0.250000,0,0);}
.m15_c01059{transform:matrix(0.308804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308804,0.000000,0.000000,0.250000,0,0);}
.m3d_c01059{transform:matrix(0.309807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309807,0.000000,0.000000,0.250000,0,0);}
.m1b_c01059{transform:matrix(0.309997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309997,0.000000,0.000000,0.250000,0,0);}
.mcf_c01059{transform:matrix(0.310496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310496,0.000000,0.000000,0.250000,0,0);}
.maa_c01059{transform:matrix(0.310561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310561,0.000000,0.000000,0.250000,0,0);}
.m46_c01059{transform:matrix(0.310595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310595,0.000000,0.000000,0.250000,0,0);}
.m2c_c01059{transform:matrix(0.311162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311162,0.000000,0.000000,0.250000,0,0);}
.md0_c01059{transform:matrix(0.311495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311495,0.000000,0.000000,0.250000,0,0);}
.m25_c01059{transform:matrix(0.313589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313589,0.000000,0.000000,0.250000,0,0);}
.mc0_c01059{transform:matrix(0.313967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313967,0.000000,0.000000,0.250000,0,0);}
.mc3_c01059{transform:matrix(0.314137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314137,0.000000,0.000000,0.250000,0,0);}
.m1c_c01059{transform:matrix(0.314881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314881,0.000000,0.000000,0.250000,0,0);}
.m3f_c01059{transform:matrix(0.316292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316292,0.000000,0.000000,0.250000,0,0);}
.m49_c01059{transform:matrix(0.316670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316670,0.000000,0.000000,0.250000,0,0);}
.m48_c01059{transform:matrix(0.316730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316730,0.000000,0.000000,0.250000,0,0);}
.m52_c01059{transform:matrix(0.317103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317103,0.000000,0.000000,0.250000,0,0);}
.m26_c01059{transform:matrix(0.318484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318484,0.000000,0.000000,0.250000,0,0);}
.maf_c01059{transform:matrix(0.318674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318674,0.000000,0.000000,0.250000,0,0);}
.m44_c01059{transform:matrix(0.318759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318759,0.000000,0.000000,0.250000,0,0);}
.m9c_c01059{transform:matrix(0.319203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319203,0.000000,0.000000,0.250000,0,0);}
.m17_c01059{transform:matrix(0.319787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319787,0.000000,0.000000,0.250000,0,0);}
.m71_c01059{transform:matrix(0.319872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319872,0.000000,0.000000,0.250000,0,0);}
.m61_c01059{transform:matrix(0.319887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319887,0.000000,0.000000,0.250000,0,0);}
.m6f_c01059{transform:matrix(0.319932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319932,0.000000,0.000000,0.250000,0,0);}
.m5a_c01059{transform:matrix(0.320279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320279,0.000000,0.000000,0.250000,0,0);}
.m32_c01059{transform:matrix(0.320862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320862,0.000000,0.000000,0.250000,0,0);}
.ma1_c01059{transform:matrix(0.321010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321010,0.000000,0.000000,0.250000,0,0);}
.md1_c01059{transform:matrix(0.321081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321081,0.000000,0.000000,0.250000,0,0);}
.m2a_c01059{transform:matrix(0.321354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321354,0.000000,0.000000,0.250000,0,0);}
.mbe_c01059{transform:matrix(0.321679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321679,0.000000,0.000000,0.250000,0,0);}
.m8e_c01059{transform:matrix(0.322330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322330,0.000000,0.000000,0.250000,0,0);}
.ma5_c01059{transform:matrix(0.322546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322546,0.000000,0.000000,0.250000,0,0);}
.m88_c01059{transform:matrix(0.323652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323652,0.000000,0.000000,0.250000,0,0);}
.m83_c01059{transform:matrix(0.323963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323963,0.000000,0.000000,0.250000,0,0);}
.m39_c01059{transform:matrix(0.324115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324115,0.000000,0.000000,0.250000,0,0);}
.m90_c01059{transform:matrix(0.325006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325006,0.000000,0.000000,0.250000,0,0);}
.m3e_c01059{transform:matrix(0.325867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325867,0.000000,0.000000,0.250000,0,0);}
.m13_c01059{transform:matrix(0.326408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326408,0.000000,0.000000,0.250000,0,0);}
.m9_c01059{transform:matrix(0.328443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328443,0.000000,0.000000,0.250000,0,0);}
.m4c_c01059{transform:matrix(0.328792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328792,0.000000,0.000000,0.250000,0,0);}
.m8b_c01059{transform:matrix(0.329075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329075,0.000000,0.000000,0.250000,0,0);}
.m82_c01059{transform:matrix(0.329312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329312,0.000000,0.000000,0.250000,0,0);}
.m7e_c01059{transform:matrix(0.330981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330981,0.000000,0.000000,0.250000,0,0);}
.m81_c01059{transform:matrix(0.331731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331731,0.000000,0.000000,0.250000,0,0);}
.m40_c01059{transform:matrix(0.332291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332291,0.000000,0.000000,0.250000,0,0);}
.m7f_c01059{transform:matrix(0.333423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333423,0.000000,0.000000,0.250000,0,0);}
.mb_c01059{transform:matrix(0.334006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334006,0.000000,0.000000,0.250000,0,0);}
.m31_c01059{transform:matrix(0.334349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334349,0.000000,0.000000,0.250000,0,0);}
.m62_c01059{transform:matrix(0.335061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335061,0.000000,0.000000,0.250000,0,0);}
.m6_c01059{transform:matrix(0.335265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335265,0.000000,0.000000,0.250000,0,0);}
.mc8_c01059{transform:matrix(0.335576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335576,0.000000,0.000000,0.250000,0,0);}
.m93_c01059{transform:matrix(0.335583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335583,0.000000,0.000000,0.250000,0,0);}
.m86_c01059{transform:matrix(0.336184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336184,0.000000,0.000000,0.250000,0,0);}
.mcd_c01059{transform:matrix(0.337107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337107,0.000000,0.000000,0.250000,0,0);}
.ma9_c01059{transform:matrix(0.339063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339063,0.000000,0.000000,0.250000,0,0);}
.m43_c01059{transform:matrix(0.339155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339155,0.000000,0.000000,0.250000,0,0);}
.m10_c01059{transform:matrix(0.340464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340464,0.000000,0.000000,0.250000,0,0);}
.ma7_c01059{transform:matrix(0.341476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341476,0.000000,0.000000,0.250000,0,0);}
.m53_c01059{transform:matrix(0.341818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341818,0.000000,0.000000,0.250000,0,0);}
.mb4_c01059{transform:matrix(0.341976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341976,0.000000,0.000000,0.250000,0,0);}
.mbb_c01059{transform:matrix(0.342061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342061,0.000000,0.000000,0.250000,0,0);}
.m78_c01059{transform:matrix(0.343360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343360,0.000000,0.000000,0.250000,0,0);}
.m5d_c01059{transform:matrix(0.343367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343367,0.000000,0.000000,0.250000,0,0);}
.mc1_c01059{transform:matrix(0.343445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343445,0.000000,0.000000,0.250000,0,0);}
.m2b_c01059{transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);}
.ma6_c01059{transform:matrix(0.345734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345734,0.000000,0.000000,0.250000,0,0);}
.ma0_c01059{transform:matrix(0.347712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347712,0.000000,0.000000,0.250000,0,0);}
.ma8_c01059{transform:matrix(0.348309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348309,0.000000,0.000000,0.250000,0,0);}
.m50_c01059{transform:matrix(0.355252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355252,0.000000,0.000000,0.250000,0,0);}
.m8d_c01059{transform:matrix(0.355407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355407,0.000000,0.000000,0.250000,0,0);}
.mae_c01059{transform:matrix(0.355583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355583,0.000000,0.000000,0.250000,0,0);}
.m8c_c01059{transform:matrix(0.356405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356405,0.000000,0.000000,0.250000,0,0);}
.m69_c01059{transform:matrix(0.357996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357996,0.000000,0.000000,0.250000,0,0);}
.m96_c01059{transform:matrix(0.359170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359170,0.000000,0.000000,0.250000,0,0);}
.m5_c01059{transform:matrix(0.359199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359199,0.000000,0.000000,0.250000,0,0);}
.m91_c01059{transform:matrix(0.362103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362103,0.000000,0.000000,0.250000,0,0);}
.m54_c01059{transform:matrix(0.367898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367898,0.000000,0.000000,0.250000,0,0);}
.m3b_c01059{transform:matrix(0.373012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373012,0.000000,0.000000,0.250000,0,0);}
.m9b_c01059{transform:matrix(0.386710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386710,0.000000,0.000000,0.250000,0,0);}
.m7c_c01059{transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);}
.m21_c01059{transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);}
.m6e_c01059{transform:matrix(0.402718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402718,0.000000,0.000000,0.250000,0,0);}
.mbd_c01059{transform:matrix(0.405805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405805,0.000000,0.000000,0.250000,0,0);}
.mf_c01059{transform:matrix(0.412048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412048,0.000000,0.000000,0.250000,0,0);}
.m2f_c01059{transform:matrix(0.418291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418291,0.000000,0.000000,0.250000,0,0);}
.m99_c01059{transform:matrix(0.440683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440683,0.000000,0.000000,0.250000,0,0);}
.m97_c01059{transform:matrix(0.740283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.740283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.740283,0.000000,0.000000,0.250000,0,0);}
.m11_c01059{transform:matrix(0.829682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.829682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.829682,0.000000,0.000000,0.250000,0,0);}
.v0_c01059{vertical-align:0.000000px;}
.lsc_c01059{letter-spacing:-3.437280px;}
.lse_c01059{letter-spacing:-2.647267px;}
.ls9_c01059{letter-spacing:-2.508667px;}
.ls11_c01059{letter-spacing:-2.383927px;}
.ls19_c01059{letter-spacing:-1.926540px;}
.lsa_c01059{letter-spacing:-0.030254px;}
.ls1_c01059{letter-spacing:0.000000px;}
.lsd_c01059{letter-spacing:0.127591px;}
.ls1c_c01059{letter-spacing:0.297000px;}
.ls17_c01059{letter-spacing:0.574835px;}
.ls1e_c01059{letter-spacing:0.594000px;}
.ls4_c01059{letter-spacing:0.605090px;}
.ls1d_c01059{letter-spacing:0.910800px;}
.lsb_c01059{letter-spacing:1.706447px;}
.ls14_c01059{letter-spacing:1.843420px;}
.ls1a_c01059{letter-spacing:1.890905px;}
.ls21_c01059{letter-spacing:2.412795px;}
.ls15_c01059{letter-spacing:2.494810px;}
.ls0_c01059{letter-spacing:2.586758px;}
.ls1f_c01059{letter-spacing:3.316500px;}
.ls10_c01059{letter-spacing:3.405610px;}
.ls20_c01059{letter-spacing:3.425400px;}
.ls13_c01059{letter-spacing:3.455110px;}
.ls7_c01059{letter-spacing:3.564000px;}
.ls18_c01059{letter-spacing:3.603610px;}
.ls1b_c01059{letter-spacing:3.623400px;}
.ls3_c01059{letter-spacing:3.781810px;}
.ls8_c01059{letter-spacing:3.960000px;}
.ls2_c01059{letter-spacing:4.008796px;}
.ls5_c01059{letter-spacing:4.078810px;}
.ls6_c01059{letter-spacing:22.809798px;}
.lsf_c01059{letter-spacing:57.024198px;}
.ls16_c01059{letter-spacing:58.449798px;}
.ls12_c01059{letter-spacing:59.875398px;}
.sc__c01059{text-shadow:none;}
.sc0_c01059{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01059{-webkit-text-stroke:0px transparent;}
.sc0_c01059{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01059{word-spacing:0.000000px;}
._1_c01059{margin-left:-12.707002px;}
._3_c01059{margin-left:-10.589095px;}
._4_c01059{margin-left:-5.189234px;}
._0_c01059{width:7.942088px;}
._5_c01059{width:20.611800px;}
._2_c01059{width:33.244101px;}
.fc0_c01059{color:transparent;}
.fs18_c01059{font-size:5.940000px;}
.fs1a_c01059{font-size:11.880000px;}
.fs19_c01059{font-size:18.216000px;}
.fs0_c01059{font-size:22.176000px;}
.fs4_c01059{font-size:22.809798px;}
.fs13_c01059{font-size:25.146000px;}
.fs1d_c01059{font-size:27.720000px;}
.fs14_c01059{font-size:33.660000px;}
.fs11_c01059{font-size:49.896198px;}
.fs10_c01059{font-size:52.074000px;}
.fs16_c01059{font-size:55.044000px;}
.fsc_c01059{font-size:57.024198px;}
.fs12_c01059{font-size:58.449798px;}
.fse_c01059{font-size:59.875398px;}
.fs1b_c01059{font-size:66.330000px;}
.fsd_c01059{font-size:68.112198px;}
.fs1c_c01059{font-size:68.508000px;}
.fsf_c01059{font-size:69.102198px;}
.fsa_c01059{font-size:70.884000px;}
.fs5_c01059{font-size:71.280000px;}
.fs7_c01059{font-size:71.676198px;}
.fs15_c01059{font-size:72.072198px;}
.fs17_c01059{font-size:72.468000px;}
.fs2_c01059{font-size:75.636198px;}
.fsb_c01059{font-size:78.804000px;}
.fs8_c01059{font-size:79.002198px;}
.fs6_c01059{font-size:79.200000px;}
.fs3_c01059{font-size:81.576198px;}
.fs1_c01059{font-size:87.912198px;}
.fs9_c01059{font-size:98.208000px;}
.y0_c01059{bottom:0.000000px;}
.y23_c01059{bottom:63.707520px;}
.y1_c01059{bottom:76.500000px;}
.y22_c01059{bottom:127.854570px;}
.y21_c01059{bottom:159.935520px;}
.y20_c01059{bottom:193.793520px;}
.y1f_c01059{bottom:225.864570px;}
.y1e_c01059{bottom:258.296970px;}
.y1d_c01059{bottom:289.665120px;}
.y2_c01059{bottom:301.069920px;}
.y1c_c01059{bottom:322.092570px;}
.y1b_c01059{bottom:354.168570px;}
.y1a_c01059{bottom:383.036970px;}
.y19_c01059{bottom:386.962320px;}
.y14_c01059{bottom:451.114320px;}
.y13_c01059{bottom:483.546720px;}
.y18_c01059{bottom:514.904970px;}
.y12_c01059{bottom:515.266320px;}
.y17_c01059{bottom:538.427370px;}
.y16_c01059{bottom:546.980970px;}
.y11_c01059{bottom:547.337370px;}
.y15_c01059{bottom:559.816320px;}
.y10_c01059{bottom:578.700570px;}
.yf_c01059{bottom:610.425120px;}
.ye_c01059{bottom:642.139770px;}
.yd_c01059{bottom:673.864320px;}
.yc_c01059{bottom:706.291770px;}
.yb_c01059{bottom:738.016320px;}
.ya_c01059{bottom:770.805120px;}
.y9_c01059{bottom:802.519770px;}
.y8_c01059{bottom:834.952170px;}
.y7_c01059{bottom:867.033120px;}
.y6_c01059{bottom:894.470970px;}
.y5_c01059{bottom:899.104170px;}
.y4_c01059{bottom:930.828720px;}
.y3_c01059{bottom:1051.643370px;}
.h19_c01059{height:5.829785px;}
.h1b_c01059{height:11.659570px;}
.h1c_c01059{height:11.972813px;}
.h6_c01059{height:15.191325px;}
.h1a_c01059{height:18.998719px;}
.h2_c01059{height:23.128875px;}
.h14_c01059{height:26.226492px;}
.h1f_c01059{height:28.911094px;}
.h15_c01059{height:33.035449px;}
.he_c01059{height:37.978116px;}
.h13_c01059{height:38.927565px;}
.h10_c01059{height:39.877015px;}
.h12_c01059{height:52.040175px;}
.h17_c01059{height:54.022676px;}
.h11_c01059{height:67.820028px;}
.h1d_c01059{height:69.180117px;}
.h16_c01059{height:70.734921px;}
.hf_c01059{height:71.038894px;}
.h18_c01059{height:71.123379px;}
.h1e_c01059{height:71.451703px;}
.hc_c01059{height:73.929797px;}
.h4_c01059{height:74.232792px;}
.h7_c01059{height:74.342813px;}
.h9_c01059{height:74.756035px;}
.hd_c01059{height:77.341816px;}
.ha_c01059{height:77.536337px;}
.h8_c01059{height:77.730469px;}
.h5_c01059{height:80.062577px;}
.h3_c01059{height:86.281015px;}
.hb_c01059{height:96.385781px;}
.h1_c01059{height:1110.000000px;}
.h0_c01059{height:1263.000000px;}
.w1_c01059{width:775.500000px;}
.w0_c01059{width:892.500000px;}
.x0_c01059{left:0.000000px;}
.x2_c01059{left:50.867835px;}
.x1_c01059{left:58.500000px;}
.x76_c01059{left:76.578135px;}
.x30_c01059{left:77.969085px;}
.x1f_c01059{left:79.756035px;}
.xd_c01059{left:80.934135px;}
.x31_c01059{left:99.417435px;}
.x86_c01059{left:109.485735px;}
.x8b_c01059{left:110.619285px;}
.xe_c01059{left:111.856785px;}
.x7f_c01059{left:120.044085px;}
.x47_c01059{left:122.736885px;}
.x57_c01059{left:132.176535px;}
.x3b_c01059{left:134.111985px;}
.x4_c01059{left:135.705885px;}
.x59_c01059{left:143.091285px;}
.x25_c01059{left:145.001985px;}
.x5c_c01059{left:154.852485px;}
.x48_c01059{left:165.351435px;}
.x58_c01059{left:167.227485px;}
.x20_c01059{left:168.331335px;}
.x5a_c01059{left:176.276085px;}
.x3c_c01059{left:178.117485px;}
.x52_c01059{left:183.280335px;}
.x5d_c01059{left:187.418535px;}
.x32_c01059{left:188.844135px;}
.x53_c01059{left:193.516935px;}
.x5b_c01059{left:199.006485px;}
.x8e_c01059{left:209.648985px;}
.x5_c01059{left:211.812135px;}
.x72_c01059{left:222.127935px;}
.x33_c01059{left:223.192185px;}
.xf_c01059{left:224.286135px;}
.x29_c01059{left:233.290185px;}
.x3d_c01059{left:235.408785px;}
.x19_c01059{left:245.130585px;}
.x34_c01059{left:255.124635px;}
.x10_c01059{left:256.565085px;}
.x7c_c01059{left:264.049485px;}
.x4d_c01059{left:266.712585px;}
.x2a_c01059{left:268.133235px;}
.x3e_c01059{left:273.221835px;}
.x87_c01059{left:276.691785px;}
.x18_c01059{left:279.052935px;}
.x83_c01059{left:286.809585px;}
.x11_c01059{left:290.051835px;}
.x8c_c01059{left:298.031235px;}
.x66_c01059{left:299.437035px;}
.x35_c01059{left:301.105185px;}
.x73_c01059{left:309.337035px;}
.x5f_c01059{left:310.861635px;}
.x62_c01059{left:312.203085px;}
.x6_c01059{left:313.400985px;}
.x8f_c01059{left:319.672635px;}
.x77_c01059{left:321.578385px;}
.x4e_c01059{left:322.657485px;}
.x63_c01059{left:328.919235px;}
.x80_c01059{left:332.636685px;}
.x49_c01059{left:333.695985px;}
.x1a_c01059{left:335.294835px;}
.x84_c01059{left:343.358385px;}
.x2b_c01059{left:345.491835px;}
.x74_c01059{left:353.857335px;}
.x4f_c01059{left:354.916635px;}
.x81_c01059{left:365.425485px;}
.x3f_c01059{left:366.455085px;}
.x2c_c01059{left:377.845035px;}
.x7_c01059{left:379.136985px;}
.x12_c01059{left:388.814235px;}
.x7d_c01059{left:398.377635px;}
.x40_c01059{left:399.659685px;}
.x68_c01059{left:409.960635px;}
.x2d_c01059{left:411.371385px;}
.x1b_c01059{left:412.727685px;}
.x8d_c01059{left:419.781435px;}
.x75_c01059{left:420.830835px;}
.x36_c01059{left:422.706885px;}
.x13_c01059{left:424.592835px;}
.x50_c01059{left:432.745485px;}
.x43_c01059{left:434.012685px;}
.x78_c01059{left:442.759335px;}
.x69_c01059{left:443.808735px;}
.x26_c01059{left:445.991685px;}
.x21_c01059{left:455.431335px;}
.x51_c01059{left:465.405585px;}
.x60_c01059{left:466.949985px;}
.x8_c01059{left:468.811185px;}
.x41_c01059{left:477.161835px;}
.x90_c01059{left:487.284585px;}
.x9_c01059{left:489.437835px;}
.x14_c01059{left:500.619885px;}
.x1c_c01059{left:510.326835px;}
.x44_c01059{left:511.490085px;}
.x22_c01059{left:512.648385px;}
.x85_c01059{left:519.583335px;}
.x79_c01059{left:521.840535px;}
.x88_c01059{left:531.047535px;}
.x61_c01059{left:532.903785px;}
.xa_c01059{left:533.972985px;}
.x82_c01059{left:541.843485px;}
.x27_c01059{left:543.813585px;}
.x1d_c01059{left:545.056035px;}
.x64_c01059{left:554.134335px;}
.x37_c01059{left:565.514385px;}
.x42_c01059{left:577.379535px;}
.x15_c01059{left:578.938785px;}
.x89_c01059{left:584.453085px;}
.x7e_c01059{left:585.784635px;}
.x4a_c01059{left:588.195285px;}
.x54_c01059{left:598.337835px;}
.x16_c01059{left:599.530785px;}
.x23_c01059{left:610.222785px;}
.xb_c01059{left:611.376135px;}
.x4b_c01059{left:620.835585px;}
.x8a_c01059{left:630.191085px;}
.x38_c01059{left:632.037435px;}
.x17_c01059{left:633.086835px;}
.x6a_c01059{left:642.333435px;}
.x45_c01059{left:643.402635px;}
.x24_c01059{left:644.818335px;}
.x7a_c01059{left:652.703685px;}
.x4c_c01059{left:654.693585px;}
.x1e_c01059{left:656.505285px;}
.x39_c01059{left:663.598635px;}
.xc_c01059{left:665.702385px;}
.x6b_c01059{left:674.528235px;}
.x2e_c01059{left:675.676635px;}
.x6c_c01059{left:677.859585px;}
.x3_c01059{left:680.092035px;}
.x6d_c01059{left:683.522385px;}
.x7b_c01059{left:685.829085px;}
.x28_c01059{left:688.150635px;}
.x6e_c01059{left:695.659785px;}
.x67_c01059{left:697.580385px;}
.x91_c01059{left:702.342285px;}
.x55_c01059{left:704.312385px;}
.x5e_c01059{left:705.841935px;}
.x65_c01059{left:707.767485px;}
.x3a_c01059{left:708.826785px;}
.x6f_c01059{left:711.242385px;}
.x70_c01059{left:714.831135px;}
.x46_c01059{left:721.102785px;}
.x71_c01059{left:724.914285px;}
.x2f_c01059{left:732.557085px;}
.x56_c01059{left:735.299385px;}
@media print{
.v0_c01059{vertical-align:0.000000pt;}
.lsc_c01059{letter-spacing:-3.055360pt;}
.lse_c01059{letter-spacing:-2.353126pt;}
.ls9_c01059{letter-spacing:-2.229926pt;}
.ls11_c01059{letter-spacing:-2.119046pt;}
.ls19_c01059{letter-spacing:-1.712480pt;}
.lsa_c01059{letter-spacing:-0.026893pt;}
.ls1_c01059{letter-spacing:0.000000pt;}
.lsd_c01059{letter-spacing:0.113414pt;}
.ls1c_c01059{letter-spacing:0.264000pt;}
.ls17_c01059{letter-spacing:0.510965pt;}
.ls1e_c01059{letter-spacing:0.528000pt;}
.ls4_c01059{letter-spacing:0.537857pt;}
.ls1d_c01059{letter-spacing:0.809600pt;}
.lsb_c01059{letter-spacing:1.516842pt;}
.ls14_c01059{letter-spacing:1.638595pt;}
.ls1a_c01059{letter-spacing:1.680804pt;}
.ls21_c01059{letter-spacing:2.144706pt;}
.ls15_c01059{letter-spacing:2.217609pt;}
.ls0_c01059{letter-spacing:2.299340pt;}
.ls1f_c01059{letter-spacing:2.948000pt;}
.ls10_c01059{letter-spacing:3.027209pt;}
.ls20_c01059{letter-spacing:3.044800pt;}
.ls13_c01059{letter-spacing:3.071209pt;}
.ls7_c01059{letter-spacing:3.168000pt;}
.ls18_c01059{letter-spacing:3.203209pt;}
.ls1b_c01059{letter-spacing:3.220800pt;}
.ls3_c01059{letter-spacing:3.361609pt;}
.ls8_c01059{letter-spacing:3.520000pt;}
.ls2_c01059{letter-spacing:3.563374pt;}
.ls5_c01059{letter-spacing:3.625609pt;}
.ls6_c01059{letter-spacing:20.275376pt;}
.lsf_c01059{letter-spacing:50.688176pt;}
.ls16_c01059{letter-spacing:51.955376pt;}
.ls12_c01059{letter-spacing:53.222576pt;}
.ws0_c01059{word-spacing:0.000000pt;}
._1_c01059{margin-left:-11.295113pt;}
._3_c01059{margin-left:-9.412529pt;}
._4_c01059{margin-left:-4.612652pt;}
._0_c01059{width:7.059634pt;}
._5_c01059{width:18.321600pt;}
._2_c01059{width:29.550312pt;}
.fs18_c01059{font-size:5.280000pt;}
.fs1a_c01059{font-size:10.560000pt;}
.fs19_c01059{font-size:16.192000pt;}
.fs0_c01059{font-size:19.712000pt;}
.fs4_c01059{font-size:20.275376pt;}
.fs13_c01059{font-size:22.352000pt;}
.fs1d_c01059{font-size:24.640000pt;}
.fs14_c01059{font-size:29.920000pt;}
.fs11_c01059{font-size:44.352176pt;}
.fs10_c01059{font-size:46.288000pt;}
.fs16_c01059{font-size:48.928000pt;}
.fsc_c01059{font-size:50.688176pt;}
.fs12_c01059{font-size:51.955376pt;}
.fse_c01059{font-size:53.222576pt;}
.fs1b_c01059{font-size:58.960000pt;}
.fsd_c01059{font-size:60.544176pt;}
.fs1c_c01059{font-size:60.896000pt;}
.fsf_c01059{font-size:61.424176pt;}
.fsa_c01059{font-size:63.008000pt;}
.fs5_c01059{font-size:63.360000pt;}
.fs7_c01059{font-size:63.712176pt;}
.fs15_c01059{font-size:64.064176pt;}
.fs17_c01059{font-size:64.416000pt;}
.fs2_c01059{font-size:67.232176pt;}
.fsb_c01059{font-size:70.048000pt;}
.fs8_c01059{font-size:70.224176pt;}
.fs6_c01059{font-size:70.400000pt;}
.fs3_c01059{font-size:72.512176pt;}
.fs1_c01059{font-size:78.144176pt;}
.fs9_c01059{font-size:87.296000pt;}
.y0_c01059{bottom:0.000000pt;}
.y23_c01059{bottom:56.628907pt;}
.y1_c01059{bottom:68.000000pt;}
.y22_c01059{bottom:113.648507pt;}
.y21_c01059{bottom:142.164907pt;}
.y20_c01059{bottom:172.260907pt;}
.y1f_c01059{bottom:200.768507pt;}
.y1e_c01059{bottom:229.597307pt;}
.y1d_c01059{bottom:257.480107pt;}
.y2_c01059{bottom:267.617707pt;}
.y1c_c01059{bottom:286.304507pt;}
.y1b_c01059{bottom:314.816507pt;}
.y1a_c01059{bottom:340.477307pt;}
.y19_c01059{bottom:343.966507pt;}
.y14_c01059{bottom:400.990507pt;}
.y13_c01059{bottom:429.819307pt;}
.y18_c01059{bottom:457.693307pt;}
.y12_c01059{bottom:458.014507pt;}
.y17_c01059{bottom:478.602107pt;}
.y16_c01059{bottom:486.205307pt;}
.y11_c01059{bottom:486.522107pt;}
.y15_c01059{bottom:497.614507pt;}
.y10_c01059{bottom:514.400507pt;}
.yf_c01059{bottom:542.600107pt;}
.ye_c01059{bottom:570.790907pt;}
.yd_c01059{bottom:598.990507pt;}
.yc_c01059{bottom:627.814907pt;}
.yb_c01059{bottom:656.014507pt;}
.ya_c01059{bottom:685.160107pt;}
.y9_c01059{bottom:713.350907pt;}
.y8_c01059{bottom:742.179707pt;}
.y7_c01059{bottom:770.696107pt;}
.y6_c01059{bottom:795.085307pt;}
.y5_c01059{bottom:799.203707pt;}
.y4_c01059{bottom:827.403307pt;}
.y3_c01059{bottom:934.794107pt;}
.h19_c01059{height:5.182031pt;}
.h1b_c01059{height:10.364063pt;}
.h1c_c01059{height:10.642500pt;}
.h6_c01059{height:13.503400pt;}
.h1a_c01059{height:16.887750pt;}
.h2_c01059{height:20.559000pt;}
.h14_c01059{height:23.312438pt;}
.h1f_c01059{height:25.698750pt;}
.h15_c01059{height:29.364844pt;}
.he_c01059{height:33.758325pt;}
.h13_c01059{height:34.602280pt;}
.h10_c01059{height:35.446236pt;}
.h12_c01059{height:46.257934pt;}
.h17_c01059{height:48.020156pt;}
.h11_c01059{height:60.284470pt;}
.h1d_c01059{height:61.493438pt;}
.h16_c01059{height:62.875485pt;}
.hf_c01059{height:63.145684pt;}
.h18_c01059{height:63.220781pt;}
.h1e_c01059{height:63.512625pt;}
.hc_c01059{height:65.715375pt;}
.h4_c01059{height:65.984704pt;}
.h7_c01059{height:66.082500pt;}
.h9_c01059{height:66.449809pt;}
.hd_c01059{height:68.748281pt;}
.ha_c01059{height:68.921188pt;}
.h8_c01059{height:69.093750pt;}
.h5_c01059{height:71.166735pt;}
.h3_c01059{height:76.694235pt;}
.hb_c01059{height:85.676250pt;}
.h1_c01059{height:986.666667pt;}
.h0_c01059{height:1122.666667pt;}
.w1_c01059{width:689.333333pt;}
.w0_c01059{width:793.333333pt;}
.x0_c01059{left:0.000000pt;}
.x2_c01059{left:45.215853pt;}
.x1_c01059{left:52.000000pt;}
.x76_c01059{left:68.069453pt;}
.x30_c01059{left:69.305853pt;}
.x1f_c01059{left:70.894253pt;}
.xd_c01059{left:71.941453pt;}
.x31_c01059{left:88.371053pt;}
.x86_c01059{left:97.320653pt;}
.x8b_c01059{left:98.328253pt;}
.xe_c01059{left:99.428253pt;}
.x7f_c01059{left:106.705853pt;}
.x47_c01059{left:109.099453pt;}
.x57_c01059{left:117.490253pt;}
.x3b_c01059{left:119.210653pt;}
.x4_c01059{left:120.627453pt;}
.x59_c01059{left:127.192253pt;}
.x25_c01059{left:128.890653pt;}
.x5c_c01059{left:137.646653pt;}
.x48_c01059{left:146.979053pt;}
.x58_c01059{left:148.646653pt;}
.x20_c01059{left:149.627853pt;}
.x5a_c01059{left:156.689853pt;}
.x3c_c01059{left:158.326653pt;}
.x52_c01059{left:162.915853pt;}
.x5d_c01059{left:166.594253pt;}
.x32_c01059{left:167.861453pt;}
.x53_c01059{left:172.015053pt;}
.x5b_c01059{left:176.894653pt;}
.x8e_c01059{left:186.354653pt;}
.x5_c01059{left:188.277453pt;}
.x72_c01059{left:197.447053pt;}
.x33_c01059{left:198.393053pt;}
.xf_c01059{left:199.365453pt;}
.x29_c01059{left:207.369053pt;}
.x3d_c01059{left:209.252253pt;}
.x19_c01059{left:217.893853pt;}
.x34_c01059{left:226.777453pt;}
.x10_c01059{left:228.057853pt;}
.x7c_c01059{left:234.710653pt;}
.x4d_c01059{left:237.077853pt;}
.x2a_c01059{left:238.340653pt;}
.x3e_c01059{left:242.863853pt;}
.x87_c01059{left:245.948253pt;}
.x18_c01059{left:248.047053pt;}
.x83_c01059{left:254.941853pt;}
.x11_c01059{left:257.823853pt;}
.x8c_c01059{left:264.916653pt;}
.x66_c01059{left:266.166253pt;}
.x35_c01059{left:267.649053pt;}
.x73_c01059{left:274.966253pt;}
.x5f_c01059{left:276.321453pt;}
.x62_c01059{left:277.513853pt;}
.x6_c01059{left:278.578653pt;}
.x8f_c01059{left:284.153453pt;}
.x77_c01059{left:285.847453pt;}
.x4e_c01059{left:286.806653pt;}
.x63_c01059{left:292.372653pt;}
.x80_c01059{left:295.677053pt;}
.x49_c01059{left:296.618653pt;}
.x1a_c01059{left:298.039853pt;}
.x84_c01059{left:305.207453pt;}
.x2b_c01059{left:307.103853pt;}
.x74_c01059{left:314.539853pt;}
.x4f_c01059{left:315.481453pt;}
.x81_c01059{left:324.822653pt;}
.x3f_c01059{left:325.737853pt;}
.x2c_c01059{left:335.862253pt;}
.x7_c01059{left:337.010653pt;}
.x12_c01059{left:345.612653pt;}
.x7d_c01059{left:354.113453pt;}
.x40_c01059{left:355.253053pt;}
.x68_c01059{left:364.409453pt;}
.x2d_c01059{left:365.663453pt;}
.x1b_c01059{left:366.869053pt;}
.x8d_c01059{left:373.139053pt;}
.x75_c01059{left:374.071853pt;}
.x36_c01059{left:375.739453pt;}
.x13_c01059{left:377.415853pt;}
.x50_c01059{left:384.662653pt;}
.x43_c01059{left:385.789053pt;}
.x78_c01059{left:393.563853pt;}
.x69_c01059{left:394.496653pt;}
.x26_c01059{left:396.437053pt;}
.x21_c01059{left:404.827853pt;}
.x51_c01059{left:413.693853pt;}
.x60_c01059{left:415.066653pt;}
.x8_c01059{left:416.721053pt;}
.x41_c01059{left:424.143853pt;}
.x90_c01059{left:433.141853pt;}
.x9_c01059{left:435.055853pt;}
.x14_c01059{left:444.995453pt;}
.x1c_c01059{left:453.623853pt;}
.x44_c01059{left:454.657853pt;}
.x22_c01059{left:455.687453pt;}
.x85_c01059{left:461.851853pt;}
.x79_c01059{left:463.858253pt;}
.x88_c01059{left:472.042253pt;}
.x61_c01059{left:473.692253pt;}
.xa_c01059{left:474.642653pt;}
.x82_c01059{left:481.638653pt;}
.x27_c01059{left:483.389853pt;}
.x1d_c01059{left:484.494253pt;}
.x64_c01059{left:492.563853pt;}
.x37_c01059{left:502.679453pt;}
.x42_c01059{left:513.226253pt;}
.x15_c01059{left:514.612253pt;}
.x89_c01059{left:519.513853pt;}
.x7e_c01059{left:520.697453pt;}
.x4a_c01059{left:522.840253pt;}
.x54_c01059{left:531.855853pt;}
.x16_c01059{left:532.916253pt;}
.x23_c01059{left:542.420253pt;}
.xb_c01059{left:543.445453pt;}
.x4b_c01059{left:551.853853pt;}
.x8a_c01059{left:560.169853pt;}
.x38_c01059{left:561.811053pt;}
.x17_c01059{left:562.743853pt;}
.x6a_c01059{left:570.963053pt;}
.x45_c01059{left:571.913453pt;}
.x24_c01059{left:573.171853pt;}
.x7a_c01059{left:580.181053pt;}
.x4c_c01059{left:581.949853pt;}
.x1e_c01059{left:583.560253pt;}
.x39_c01059{left:589.865453pt;}
.xc_c01059{left:591.735453pt;}
.x6b_c01059{left:599.580653pt;}
.x2e_c01059{left:600.601453pt;}
.x6c_c01059{left:602.541853pt;}
.x3_c01059{left:604.526253pt;}
.x6d_c01059{left:607.575453pt;}
.x7b_c01059{left:609.625853pt;}
.x28_c01059{left:611.689453pt;}
.x6e_c01059{left:618.364253pt;}
.x67_c01059{left:620.071453pt;}
.x91_c01059{left:624.304253pt;}
.x55_c01059{left:626.055453pt;}
.x5e_c01059{left:627.415053pt;}
.x65_c01059{left:629.126653pt;}
.x3a_c01059{left:630.068253pt;}
.x6f_c01059{left:632.215453pt;}
.x70_c01059{left:635.405453pt;}
.x46_c01059{left:640.980253pt;}
.x71_c01059{left:644.368253pt;}
.x2f_c01059{left:651.161853pt;}
.x56_c01059{left:653.599453pt;}
}





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

.ir_c01060:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01060{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01060;src:url('chunks/assets/font_0b95a2991d3d1cf39c7e8b48.woff2')format("woff");}.ff1_c01060{font-family:ff1_c01060;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01060;src:url('chunks/assets/font_a5b8f2d77300a39a1ad300a3.woff2')format("woff");}.ff2_c01060{font-family:ff2_c01060;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01060;src:url('chunks/assets/font_1971c9dd634be35f94b443f4.woff2')format("woff");}.ff3_c01060{font-family:ff3_c01060;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01060;src:url('chunks/assets/font_9cf2d521bbca34c87ca62122.woff2')format("woff");}.ff4_c01060{font-family:ff4_c01060;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m47_c01060{transform:matrix(0.112216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112216,0.000000,0.000000,0.250000,0,0);}
.m46_c01060{transform:matrix(0.151786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151786,0.000000,0.000000,0.250000,0,0);}
.m4c_c01060{transform:matrix(0.175483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175483,0.000000,0.000000,0.250000,0,0);}
.m39_c01060{transform:matrix(0.191884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191884,0.000000,0.000000,0.250000,0,0);}
.m11_c01060{transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);}
.m4b_c01060{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m19_c01060{transform:matrix(0.228474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228474,0.000000,0.000000,0.250000,0,0);}
.m45_c01060{transform:matrix(0.239756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239756,0.000000,0.000000,0.250000,0,0);}
.m92_c01060{transform:matrix(0.243999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243999,0.000000,0.000000,0.250000,0,0);}
.m0_c01060{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m14_c01060{transform:matrix(0.251640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251640,0.000000,0.000000,0.250000,0,0);}
.m20_c01060{transform:matrix(0.251989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251989,0.000000,0.000000,0.250000,0,0);}
.m4a_c01060{transform:matrix(0.252313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252313,0.000000,0.000000,0.250000,0,0);}
.m74_c01060{transform:matrix(0.254517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254517,0.000000,0.000000,0.250000,0,0);}
.m3e_c01060{transform:matrix(0.255915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255915,0.000000,0.000000,0.250000,0,0);}
.m28_c01060{transform:matrix(0.256180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256180,0.000000,0.000000,0.250000,0,0);}
.me_c01060{transform:matrix(0.256819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256819,0.000000,0.000000,0.250000,0,0);}
.m48_c01060{transform:matrix(0.257175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257175,0.000000,0.000000,0.250000,0,0);}
.ma4_c01060{transform:matrix(0.257224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257224,0.000000,0.000000,0.250000,0,0);}
.m3c_c01060{transform:matrix(0.257425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257425,0.000000,0.000000,0.250000,0,0);}
.m6_c01060{transform:matrix(0.258377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258377,0.000000,0.000000,0.250000,0,0);}
.m90_c01060{transform:matrix(0.258842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258842,0.000000,0.000000,0.250000,0,0);}
.mb1_c01060{transform:matrix(0.259091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259091,0.000000,0.000000,0.250000,0,0);}
.m1a_c01060{transform:matrix(0.259783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259783,0.000000,0.000000,0.250000,0,0);}
.mb5_c01060{transform:matrix(0.259849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259849,0.000000,0.000000,0.250000,0,0);}
.m7d_c01060{transform:matrix(0.260318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260318,0.000000,0.000000,0.250000,0,0);}
.maf_c01060{transform:matrix(0.260597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260597,0.000000,0.000000,0.250000,0,0);}
.mb6_c01060{transform:matrix(0.260962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260962,0.000000,0.000000,0.250000,0,0);}
.m32_c01060{transform:matrix(0.261325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261325,0.000000,0.000000,0.250000,0,0);}
.ma2_c01060{transform:matrix(0.262613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262613,0.000000,0.000000,0.250000,0,0);}
.m96_c01060{transform:matrix(0.264201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264201,0.000000,0.000000,0.250000,0,0);}
.m44_c01060{transform:matrix(0.264211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264211,0.000000,0.000000,0.250000,0,0);}
.m2f_c01060{transform:matrix(0.264913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264913,0.000000,0.000000,0.250000,0,0);}
.ma6_c01060{transform:matrix(0.266067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266067,0.000000,0.000000,0.250000,0,0);}
.m5b_c01060{transform:matrix(0.266768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266768,0.000000,0.000000,0.250000,0,0);}
.mad_c01060{transform:matrix(0.267067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267067,0.000000,0.000000,0.250000,0,0);}
.m54_c01060{transform:matrix(0.267169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267169,0.000000,0.000000,0.250000,0,0);}
.m1e_c01060{transform:matrix(0.267208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267208,0.000000,0.000000,0.250000,0,0);}
.m7c_c01060{transform:matrix(0.268767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268767,0.000000,0.000000,0.250000,0,0);}
.m51_c01060{transform:matrix(0.268895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268895,0.000000,0.000000,0.250000,0,0);}
.m5e_c01060{transform:matrix(0.269715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269715,0.000000,0.000000,0.250000,0,0);}
.m24_c01060{transform:matrix(0.270493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270493,0.000000,0.000000,0.250000,0,0);}
.m55_c01060{transform:matrix(0.270868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270868,0.000000,0.000000,0.250000,0,0);}
.m53_c01060{transform:matrix(0.271703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271703,0.000000,0.000000,0.250000,0,0);}
.m6a_c01060{transform:matrix(0.273163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273163,0.000000,0.000000,0.250000,0,0);}
.m3_c01060{transform:matrix(0.273272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273272,0.000000,0.000000,0.250000,0,0);}
.m1d_c01060{transform:matrix(0.273273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273273,0.000000,0.000000,0.250000,0,0);}
.m8d_c01060{transform:matrix(0.273322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273322,0.000000,0.000000,0.250000,0,0);}
.m5a_c01060{transform:matrix(0.274171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274171,0.000000,0.000000,0.250000,0,0);}
.m25_c01060{transform:matrix(0.274264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274264,0.000000,0.000000,0.250000,0,0);}
.ma9_c01060{transform:matrix(0.275143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275143,0.000000,0.000000,0.250000,0,0);}
.m94_c01060{transform:matrix(0.275278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275278,0.000000,0.000000,0.250000,0,0);}
.m9e_c01060{transform:matrix(0.275757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275757,0.000000,0.000000,0.250000,0,0);}
.m66_c01060{transform:matrix(0.275879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275879,0.000000,0.000000,0.250000,0,0);}
.m8e_c01060{transform:matrix(0.276289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276289,0.000000,0.000000,0.250000,0,0);}
.m12_c01060{transform:matrix(0.276767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276767,0.000000,0.000000,0.250000,0,0);}
.m59_c01060{transform:matrix(0.277095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277095,0.000000,0.000000,0.250000,0,0);}
.m38_c01060{transform:matrix(0.277528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277528,0.000000,0.000000,0.250000,0,0);}
.mb3_c01060{transform:matrix(0.278210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278210,0.000000,0.000000,0.250000,0,0);}
.m5_c01060{transform:matrix(0.279841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279841,0.000000,0.000000,0.250000,0,0);}
.m8b_c01060{transform:matrix(0.282067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282067,0.000000,0.000000,0.250000,0,0);}
.m76_c01060{transform:matrix(0.282732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282732,0.000000,0.000000,0.250000,0,0);}
.m23_c01060{transform:matrix(0.283046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283046,0.000000,0.000000,0.250000,0,0);}
.m79_c01060{transform:matrix(0.283062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283062,0.000000,0.000000,0.250000,0,0);}
.m1f_c01060{transform:matrix(0.283997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283997,0.000000,0.000000,0.250000,0,0);}
.m31_c01060{transform:matrix(0.284101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284101,0.000000,0.000000,0.250000,0,0);}
.m41_c01060{transform:matrix(0.285606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285606,0.000000,0.000000,0.250000,0,0);}
.m52_c01060{transform:matrix(0.286108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286108,0.000000,0.000000,0.250000,0,0);}
.m2a_c01060{transform:matrix(0.286455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286455,0.000000,0.000000,0.250000,0,0);}
.m98_c01060{transform:matrix(0.286638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286638,0.000000,0.000000,0.250000,0,0);}
.m65_c01060{transform:matrix(0.287281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287281,0.000000,0.000000,0.250000,0,0);}
.m7f_c01060{transform:matrix(0.287876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287876,0.000000,0.000000,0.250000,0,0);}
.m15_c01060{transform:matrix(0.287941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287941,0.000000,0.000000,0.250000,0,0);}
.mab_c01060{transform:matrix(0.287979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287979,0.000000,0.000000,0.250000,0,0);}
.m49_c01060{transform:matrix(0.288262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288262,0.000000,0.000000,0.250000,0,0);}
.ma0_c01060{transform:matrix(0.288494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288494,0.000000,0.000000,0.250000,0,0);}
.m7_c01060{transform:matrix(0.288649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288649,0.000000,0.000000,0.250000,0,0);}
.m4e_c01060{transform:matrix(0.288719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288719,0.000000,0.000000,0.250000,0,0);}
.m84_c01060{transform:matrix(0.289502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289502,0.000000,0.000000,0.250000,0,0);}
.m43_c01060{transform:matrix(0.289903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289903,0.000000,0.000000,0.250000,0,0);}
.m1_c01060{transform:matrix(0.290800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290800,0.000000,0.000000,0.250000,0,0);}
.m62_c01060{transform:matrix(0.291216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291216,0.000000,0.000000,0.250000,0,0);}
.m8f_c01060{transform:matrix(0.291433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291433,0.000000,0.000000,0.250000,0,0);}
.m1c_c01060{transform:matrix(0.291445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291445,0.000000,0.000000,0.250000,0,0);}
.m85_c01060{transform:matrix(0.291486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291486,0.000000,0.000000,0.250000,0,0);}
.mb0_c01060{transform:matrix(0.291651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291651,0.000000,0.000000,0.250000,0,0);}
.m18_c01060{transform:matrix(0.292392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292392,0.000000,0.000000,0.250000,0,0);}
.m56_c01060{transform:matrix(0.292407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292407,0.000000,0.000000,0.250000,0,0);}
.md_c01060{transform:matrix(0.293156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293156,0.000000,0.000000,0.250000,0,0);}
.m69_c01060{transform:matrix(0.293320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293320,0.000000,0.000000,0.250000,0,0);}
.m26_c01060{transform:matrix(0.293583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293583,0.000000,0.000000,0.250000,0,0);}
.m2e_c01060{transform:matrix(0.293621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293621,0.000000,0.000000,0.250000,0,0);}
.m58_c01060{transform:matrix(0.293909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293909,0.000000,0.000000,0.250000,0,0);}
.m1b_c01060{transform:matrix(0.294729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294729,0.000000,0.000000,0.250000,0,0);}
.m7e_c01060{transform:matrix(0.294940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294940,0.000000,0.000000,0.250000,0,0);}
.m37_c01060{transform:matrix(0.295270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295270,0.000000,0.000000,0.250000,0,0);}
.m80_c01060{transform:matrix(0.295513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295513,0.000000,0.000000,0.250000,0,0);}
.m16_c01060{transform:matrix(0.295574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295574,0.000000,0.000000,0.250000,0,0);}
.m8_c01060{transform:matrix(0.295639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295639,0.000000,0.000000,0.250000,0,0);}
.m21_c01060{transform:matrix(0.296555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296555,0.000000,0.000000,0.250000,0,0);}
.mc_c01060{transform:matrix(0.297113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297113,0.000000,0.000000,0.250000,0,0);}
.ma5_c01060{transform:matrix(0.297596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297596,0.000000,0.000000,0.250000,0,0);}
.m5c_c01060{transform:matrix(0.297831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297831,0.000000,0.000000,0.250000,0,0);}
.m3a_c01060{transform:matrix(0.297905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297905,0.000000,0.000000,0.250000,0,0);}
.ma8_c01060{transform:matrix(0.298224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298224,0.000000,0.000000,0.250000,0,0);}
.m3d_c01060{transform:matrix(0.298244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298244,0.000000,0.000000,0.250000,0,0);}
.m3b_c01060{transform:matrix(0.299826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299826,0.000000,0.000000,0.250000,0,0);}
.m73_c01060{transform:matrix(0.299993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299993,0.000000,0.000000,0.250000,0,0);}
.m70_c01060{transform:matrix(0.300193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300193,0.000000,0.000000,0.250000,0,0);}
.m77_c01060{transform:matrix(0.300335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300335,0.000000,0.000000,0.250000,0,0);}
.m6d_c01060{transform:matrix(0.300543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300543,0.000000,0.000000,0.250000,0,0);}
.m2b_c01060{transform:matrix(0.300793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300793,0.000000,0.000000,0.250000,0,0);}
.m6e_c01060{transform:matrix(0.301509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301509,0.000000,0.000000,0.250000,0,0);}
.m91_c01060{transform:matrix(0.303537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303537,0.000000,0.000000,0.250000,0,0);}
.m72_c01060{transform:matrix(0.303556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303556,0.000000,0.000000,0.250000,0,0);}
.m57_c01060{transform:matrix(0.303624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303624,0.000000,0.000000,0.250000,0,0);}
.mae_c01060{transform:matrix(0.303983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303983,0.000000,0.000000,0.250000,0,0);}
.m64_c01060{transform:matrix(0.304236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304236,0.000000,0.000000,0.250000,0,0);}
.m34_c01060{transform:matrix(0.305584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305584,0.000000,0.000000,0.250000,0,0);}
.ma1_c01060{transform:matrix(0.306031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306031,0.000000,0.000000,0.250000,0,0);}
.m40_c01060{transform:matrix(0.306188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306188,0.000000,0.000000,0.250000,0,0);}
.ma7_c01060{transform:matrix(0.307921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307921,0.000000,0.000000,0.250000,0,0);}
.m7a_c01060{transform:matrix(0.308357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308357,0.000000,0.000000,0.250000,0,0);}
.m60_c01060{transform:matrix(0.308480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308480,0.000000,0.000000,0.250000,0,0);}
.m86_c01060{transform:matrix(0.308854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308854,0.000000,0.000000,0.250000,0,0);}
.m5f_c01060{transform:matrix(0.309027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309027,0.000000,0.000000,0.250000,0,0);}
.m75_c01060{transform:matrix(0.309414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309414,0.000000,0.000000,0.250000,0,0);}
.ma_c01060{transform:matrix(0.309600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309600,0.000000,0.000000,0.250000,0,0);}
.m27_c01060{transform:matrix(0.310574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310574,0.000000,0.000000,0.250000,0,0);}
.m5d_c01060{transform:matrix(0.310834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310834,0.000000,0.000000,0.250000,0,0);}
.m88_c01060{transform:matrix(0.311101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311101,0.000000,0.000000,0.250000,0,0);}
.m67_c01060{transform:matrix(0.311661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311661,0.000000,0.000000,0.250000,0,0);}
.m42_c01060{transform:matrix(0.313198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313198,0.000000,0.000000,0.250000,0,0);}
.m82_c01060{transform:matrix(0.313751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313751,0.000000,0.000000,0.250000,0,0);}
.m33_c01060{transform:matrix(0.315448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315448,0.000000,0.000000,0.250000,0,0);}
.mb_c01060{transform:matrix(0.315475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315475,0.000000,0.000000,0.250000,0,0);}
.m8c_c01060{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m6b_c01060{transform:matrix(0.316081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316081,0.000000,0.000000,0.250000,0,0);}
.mac_c01060{transform:matrix(0.316679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316679,0.000000,0.000000,0.250000,0,0);}
.m6f_c01060{transform:matrix(0.316775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316775,0.000000,0.000000,0.250000,0,0);}
.m2c_c01060{transform:matrix(0.317196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317196,0.000000,0.000000,0.250000,0,0);}
.m87_c01060{transform:matrix(0.318068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318068,0.000000,0.000000,0.250000,0,0);}
.m95_c01060{transform:matrix(0.319228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319228,0.000000,0.000000,0.250000,0,0);}
.m68_c01060{transform:matrix(0.321291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321291,0.000000,0.000000,0.250000,0,0);}
.maa_c01060{transform:matrix(0.321791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321791,0.000000,0.000000,0.250000,0,0);}
.m71_c01060{transform:matrix(0.322237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322237,0.000000,0.000000,0.250000,0,0);}
.m22_c01060{transform:matrix(0.322267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322267,0.000000,0.000000,0.250000,0,0);}
.m35_c01060{transform:matrix(0.322565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322565,0.000000,0.000000,0.250000,0,0);}
.m36_c01060{transform:matrix(0.322799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322799,0.000000,0.000000,0.250000,0,0);}
.m81_c01060{transform:matrix(0.324094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324094,0.000000,0.000000,0.250000,0,0);}
.m97_c01060{transform:matrix(0.324155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324155,0.000000,0.000000,0.250000,0,0);}
.m93_c01060{transform:matrix(0.325016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325016,0.000000,0.000000,0.250000,0,0);}
.m10_c01060{transform:matrix(0.325017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325017,0.000000,0.000000,0.250000,0,0);}
.m8a_c01060{transform:matrix(0.326392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326392,0.000000,0.000000,0.250000,0,0);}
.m30_c01060{transform:matrix(0.330925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330925,0.000000,0.000000,0.250000,0,0);}
.m63_c01060{transform:matrix(0.333705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333705,0.000000,0.000000,0.250000,0,0);}
.m13_c01060{transform:matrix(0.334946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334946,0.000000,0.000000,0.250000,0,0);}
.ma3_c01060{transform:matrix(0.335115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335115,0.000000,0.000000,0.250000,0,0);}
.m2_c01060{transform:matrix(0.336835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336835,0.000000,0.000000,0.250000,0,0);}
.m7b_c01060{transform:matrix(0.341791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341791,0.000000,0.000000,0.250000,0,0);}
.mb2_c01060{transform:matrix(0.342107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342107,0.000000,0.000000,0.250000,0,0);}
.m4_c01060{transform:matrix(0.349075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349075,0.000000,0.000000,0.250000,0,0);}
.m2d_c01060{transform:matrix(0.350705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350705,0.000000,0.000000,0.250000,0,0);}
.m4f_c01060{transform:matrix(0.350757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350757,0.000000,0.000000,0.250000,0,0);}
.m17_c01060{transform:matrix(0.353093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353093,0.000000,0.000000,0.250000,0,0);}
.m3f_c01060{transform:matrix(0.356876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356876,0.000000,0.000000,0.250000,0,0);}
.m61_c01060{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);}
.m6c_c01060{transform:matrix(0.359882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359882,0.000000,0.000000,0.250000,0,0);}
.m99_c01060{transform:matrix(0.369715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369715,0.000000,0.000000,0.250000,0,0);}
.m50_c01060{transform:matrix(0.370070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370070,0.000000,0.000000,0.250000,0,0);}
.mf_c01060{transform:matrix(0.372276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372276,0.000000,0.000000,0.250000,0,0);}
.m9_c01060{transform:matrix(0.375943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375943,0.000000,0.000000,0.250000,0,0);}
.m4d_c01060{transform:matrix(0.377606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377606,0.000000,0.000000,0.250000,0,0);}
.m78_c01060{transform:matrix(0.381070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381070,0.000000,0.000000,0.250000,0,0);}
.m89_c01060{transform:matrix(0.381818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381818,0.000000,0.000000,0.250000,0,0);}
.m29_c01060{transform:matrix(0.383285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383285,0.000000,0.000000,0.250000,0,0);}
.m83_c01060{transform:matrix(0.387692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387692,0.000000,0.000000,0.250000,0,0);}
.mb4_c01060{transform:matrix(0.418291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418291,0.000000,0.000000,0.250000,0,0);}
.m9b_c01060{transform:matrix(0.478353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478353,0.000000,0.000000,0.250000,0,0);}
.m9a_c01060{transform:matrix(0.635421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.635421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.635421,0.000000,0.000000,0.250000,0,0);}
.m9d_c01060{transform:matrix(0.749912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749912,0.000000,0.000000,0.250000,0,0);}
.m9c_c01060{transform:matrix(0.767507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.767507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.767507,0.000000,0.000000,0.250000,0,0);}
.m9f_c01060{transform:matrix(1.109580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.109580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.109580,0.000000,0.000000,0.250000,0,0);}
.v2_c01060{vertical-align:-5.694480px;}
.v1_c01060{vertical-align:-1.425600px;}
.v0_c01060{vertical-align:0.000000px;}
.ls9_c01060{letter-spacing:-2.813580px;}
.ls22_c01060{letter-spacing:-1.969506px;}
.ls13_c01060{letter-spacing:-1.781589px;}
.lsd_c01060{letter-spacing:-1.237975px;}
.ls23_c01060{letter-spacing:-0.458212px;}
.ls4_c01060{letter-spacing:0.000000px;}
.ls17_c01060{letter-spacing:0.192931px;}
.ls0_c01060{letter-spacing:0.546638px;}
.ls1e_c01060{letter-spacing:0.633610px;}
.ls1d_c01060{letter-spacing:0.673210px;}
.ls1c_c01060{letter-spacing:0.702900px;}
.ls1b_c01060{letter-spacing:0.832432px;}
.ls10_c01060{letter-spacing:0.972695px;}
.ls1f_c01060{letter-spacing:1.591682px;}
.ls15_c01060{letter-spacing:2.663100px;}
.ls19_c01060{letter-spacing:3.326400px;}
.ls5_c01060{letter-spacing:3.328063px;}
.lsc_c01060{letter-spacing:3.336310px;}
.lse_c01060{letter-spacing:3.440606px;}
.ls1a_c01060{letter-spacing:3.504610px;}
.ls8_c01060{letter-spacing:3.524400px;}
.ls2_c01060{letter-spacing:3.539290px;}
.lsa_c01060{letter-spacing:3.564000px;}
.ls18_c01060{letter-spacing:3.762000px;}
.ls16_c01060{letter-spacing:3.794314px;}
.ls14_c01060{letter-spacing:3.801610px;}
.ls12_c01060{letter-spacing:3.811500px;}
.ls21_c01060{letter-spacing:3.851110px;}
.lsb_c01060{letter-spacing:3.880810px;}
.ls20_c01060{letter-spacing:3.940200px;}
.ls3_c01060{letter-spacing:4.019400px;}
.ls6_c01060{letter-spacing:4.059000px;}
.ls1_c01060{letter-spacing:15.516072px;}
.ls7_c01060{letter-spacing:49.896198px;}
.ls11_c01060{letter-spacing:57.024198px;}
.lsf_c01060{letter-spacing:62.726400px;}
.sc__c01060{text-shadow:none;}
.sc0_c01060{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01060{-webkit-text-stroke:0px transparent;}
.sc0_c01060{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01060{word-spacing:-20.643638px;}
.ws0_c01060{word-spacing:-20.097000px;}
.ws2_c01060{word-spacing:0.000000px;}
._1_c01060{margin-left:-12.058200px;}
._0_c01060{width:1.929708px;}
._2_c01060{width:7.133940px;}
._5_c01060{width:25.735446px;}
._7_c01060{width:27.187855px;}
._6_c01060{width:67.374252px;}
._3_c01060{width:87.139800px;}
._4_c01060{width:107.023554px;}
.fc0_c01060{color:transparent;}
.fs18_c01060{font-size:12.672198px;}
.fs17_c01060{font-size:13.464198px;}
.fs16_c01060{font-size:14.058000px;}
.fs15_c01060{font-size:22.176000px;}
.fs3_c01060{font-size:49.896198px;}
.fsf_c01060{font-size:53.262000px;}
.fs14_c01060{font-size:54.054000px;}
.fsb_c01060{font-size:55.836198px;}
.fsa_c01060{font-size:57.024198px;}
.fse_c01060{font-size:62.568000px;}
.fs9_c01060{font-size:62.726400px;}
.fs5_c01060{font-size:66.330000px;}
.fs12_c01060{font-size:66.528000px;}
.fs8_c01060{font-size:66.726198px;}
.fs13_c01060{font-size:70.092198px;}
.fs4_c01060{font-size:70.488000px;}
.fs6_c01060{font-size:71.280000px;}
.fs11_c01060{font-size:74.844000px;}
.fs10_c01060{font-size:75.240000px;}
.fsd_c01060{font-size:76.032198px;}
.fsc_c01060{font-size:76.230000px;}
.fs1a_c01060{font-size:77.022198px;}
.fs7_c01060{font-size:77.616198px;}
.fs19_c01060{font-size:78.804000px;}
.fs1_c01060{font-size:80.388000px;}
.fs2_c01060{font-size:81.180000px;}
.fs0_c01060{font-size:88.704000px;}
.y0_c01060{bottom:0.000000px;}
.y1_c01060{bottom:76.500000px;}
.y1e_c01060{bottom:148.530735px;}
.y1d_c01060{bottom:182.388735px;}
.y1c_c01060{bottom:215.885385px;}
.y1a_c01060{bottom:244.402335px;}
.y1b_c01060{bottom:247.966335px;}
.y19_c01060{bottom:248.322735px;}
.y18_c01060{bottom:280.755135px;}
.y17_c01060{bottom:312.826185px;}
.y16_c01060{bottom:344.189385px;}
.y15_c01060{bottom:376.270335px;}
.y14_c01060{bottom:408.346335px;}
.y13_c01060{bottom:440.778735px;}
.y12_c01060{bottom:472.493385px;}
.y11_c01060{bottom:505.287135px;}
.y10_c01060{bottom:536.650335px;}
.yf_c01060{bottom:569.082735px;}
.yd_c01060{bottom:601.153785px;}
.ye_c01060{bottom:602.579385px;}
.yc_c01060{bottom:633.234735px;}
.yb_c01060{bottom:664.949385px;}
.ya_c01060{bottom:697.381785px;}
.y9_c01060{bottom:729.819135px;}
.y8_c01060{bottom:761.895135px;}
.y7_c01060{bottom:826.047135px;}
.y6_c01060{bottom:858.118185px;}
.y5_c01060{bottom:889.842735px;}
.y3_c01060{bottom:921.913785px;}
.y4_c01060{bottom:922.631535px;}
.y2_c01060{bottom:1063.048185px;}
.h18_c01060{height:13.216707px;}
.h16_c01060{height:13.797158px;}
.h17_c01060{height:14.042738px;}
.h15_c01060{height:23.128875px;}
.h5_c01060{height:33.230868px;}
.hb_c01060{height:37.978116px;}
.ha_c01060{height:41.775782px;}
.hf_c01060{height:52.273740px;}
.h14_c01060{height:53.051045px;}
.he_c01060{height:61.407070px;}
.h12_c01060{height:65.293594px;}
.h6_c01060{height:69.180117px;}
.h9_c01060{height:69.593339px;}
.h13_c01060{height:73.103972px;}
.h11_c01060{height:73.455293px;}
.h10_c01060{height:73.843945px;}
.h7_c01060{height:74.342813px;}
.hd_c01060{height:74.621444px;}
.hc_c01060{height:74.815576px;}
.h8_c01060{height:76.176054px;}
.h19_c01060{height:77.341816px;}
.h3_c01060{height:78.896426px;}
.h4_c01060{height:79.673730px;}
.h1a_c01060{height:80.331746px;}
.h2_c01060{height:87.058125px;}
.h1_c01060{height:1110.000000px;}
.h0_c01060{height:1263.000000px;}
.w1_c01060{width:775.500000px;}
.w0_c01060{width:892.500000px;}
.x0_c01060{left:0.000000px;}
.x1_c01060{left:58.500000px;}
.x4f_c01060{left:72.306285px;}
.x15_c01060{left:73.919985px;}
.x3_c01060{left:75.211935px;}
.x50_c01060{left:94.561485px;}
.x62_c01060{left:105.001035px;}
.xf_c01060{left:107.040435px;}
.x36_c01060{left:117.727485px;}
.x16_c01060{left:118.766985px;}
.x5f_c01060{left:127.107735px;}
.x24_c01060{left:128.152185px;}
.x4_c01060{left:129.775785px;}
.x59_c01060{left:138.354135px;}
.x4a_c01060{left:139.462935px;}
.x48_c01060{left:149.268885px;}
.x47_c01060{left:150.877635px;}
.x10_c01060{left:152.644785px;}
.x25_c01060{left:161.817135px;}
.x5_c01060{left:163.534785px;}
.x5a_c01060{left:171.355785px;}
.x55_c01060{left:172.514085px;}
.x52_c01060{left:183.131835px;}
.x31_c01060{left:184.270335px;}
.x20_c01060{left:205.599885px;}
.x6_c01060{left:217.356135px;}
.x17_c01060{left:218.910435px;}
.x7_c01060{left:230.280585px;}
.x63_c01060{left:237.665985px;}
.x3e_c01060{left:238.779735px;}
.x21_c01060{left:240.710235px;}
.x64_c01060{left:245.501835px;}
.x6b_c01060{left:249.070785px;}
.x49_c01060{left:250.303335px;}
.x18_c01060{left:251.367585px;}
.x37_c01060{left:261.609135px;}
.x26_c01060{left:263.401035px;}
.x3f_c01060{left:272.870385px;}
.x65_c01060{left:274.909785px;}
.x56_c01060{left:282.572385px;}
.x4b_c01060{left:284.195985px;}
.x66_c01060{left:290.482485px;}
.x5b_c01060{left:294.501885px;}
.x27_c01060{left:295.754235px;}
.x60_c01060{left:305.916585px;}
.x38_c01060{left:306.926385px;}
.x4c_c01060{left:316.425435px;}
.x8_c01060{left:317.920335px;}
.x40_c01060{left:327.513435px;}
.x2e_c01060{left:329.404335px;}
.x67_c01060{left:333.616785px;}
.x39_c01060{left:339.051885px;}
.x11_c01060{left:340.145835px;}
.x41_c01060{left:350.600235px;}
.x57_c01060{left:361.500135px;}
.x9_c01060{left:372.390135px;}
.x42_c01060{left:374.162235px;}
.x53_c01060{left:382.245585px;}
.x28_c01060{left:383.785035px;}
.x32_c01060{left:385.091835px;}
.x19_c01060{left:394.798785px;}
.xa_c01060{left:407.020335px;}
.x1a_c01060{left:416.588685px;}
.x54_c01060{left:427.270785px;}
.x3a_c01060{left:428.859735px;}
.x5c_c01060{left:438.442935px;}
.x4d_c01060{left:439.536885px;}
.xb_c01060{left:440.997135px;}
.x1b_c01060{left:450.857535px;}
.x3b_c01060{left:459.703185px;}
.xc_c01060{left:462.004935px;}
.x58_c01060{left:471.929685px;}
.x22_c01060{left:473.429535px;}
.x29_c01060{left:484.126485px;}
.x3c_c01060{left:493.600785px;}
.x23_c01060{left:495.452085px;}
.x33_c01060{left:505.159035px;}
.x2f_c01060{left:516.558885px;}
.x12_c01060{left:518.553735px;}
.x2a_c01060{left:527.552835px;}
.x68_c01060{left:537.952785px;}
.x51_c01060{left:539.333835px;}
.x5d_c01060{left:548.456685px;}
.x13_c01060{left:549.857535px;}
.x61_c01060{left:559.138785px;}
.x1c_c01060{left:560.212935px;}
.x3d_c01060{left:561.673185px;}
.x6c_c01060{left:570.315885px;}
.xd_c01060{left:571.741485px;}
.x1d_c01060{left:573.295785px;}
.x69_c01060{left:582.478035px;}
.x43_c01060{left:593.130435px;}
.x34_c01060{left:594.526335px;}
.x6d_c01060{left:602.975985px;}
.xe_c01060{left:604.396635px;}
.x1e_c01060{left:615.984585px;}
.x44_c01060{left:625.790535px;}
.x14_c01060{left:627.374535px;}
.x6a_c01060{left:636.903285px;}
.x2b_c01060{left:638.744685px;}
.x35_c01060{left:647.516085px;}
.x4e_c01060{left:649.105035px;}
.x6e_c01060{left:658.638735px;}
.x45_c01060{left:659.975235px;}
.x2_c01060{left:670.107885px;}
.x2c_c01060{left:682.062135px;}
.x1f_c01060{left:683.745135px;}
.x30_c01060{left:692.957085px;}
.x2d_c01060{left:705.059835px;}
.x5e_c01060{left:715.340985px;}
.x6f_c01060{left:724.963785px;}
.x46_c01060{left:726.904185px;}
@media print{
.v2_c01060{vertical-align:-5.061760pt;}
.v1_c01060{vertical-align:-1.267200pt;}
.v0_c01060{vertical-align:0.000000pt;}
.ls9_c01060{letter-spacing:-2.500960pt;}
.ls22_c01060{letter-spacing:-1.750672pt;}
.ls13_c01060{letter-spacing:-1.583635pt;}
.lsd_c01060{letter-spacing:-1.100422pt;}
.ls23_c01060{letter-spacing:-0.407299pt;}
.ls4_c01060{letter-spacing:0.000000pt;}
.ls17_c01060{letter-spacing:0.171494pt;}
.ls0_c01060{letter-spacing:0.485901pt;}
.ls1e_c01060{letter-spacing:0.563209pt;}
.ls1d_c01060{letter-spacing:0.598409pt;}
.ls1c_c01060{letter-spacing:0.624800pt;}
.ls1b_c01060{letter-spacing:0.739939pt;}
.ls10_c01060{letter-spacing:0.864618pt;}
.ls1f_c01060{letter-spacing:1.414829pt;}
.ls15_c01060{letter-spacing:2.367200pt;}
.ls19_c01060{letter-spacing:2.956800pt;}
.ls5_c01060{letter-spacing:2.958278pt;}
.lsc_c01060{letter-spacing:2.965609pt;}
.lse_c01060{letter-spacing:3.058317pt;}
.ls1a_c01060{letter-spacing:3.115209pt;}
.ls8_c01060{letter-spacing:3.132800pt;}
.ls2_c01060{letter-spacing:3.146035pt;}
.lsa_c01060{letter-spacing:3.168000pt;}
.ls18_c01060{letter-spacing:3.344000pt;}
.ls16_c01060{letter-spacing:3.372723pt;}
.ls14_c01060{letter-spacing:3.379209pt;}
.ls12_c01060{letter-spacing:3.388000pt;}
.ls21_c01060{letter-spacing:3.423209pt;}
.lsb_c01060{letter-spacing:3.449609pt;}
.ls20_c01060{letter-spacing:3.502400pt;}
.ls3_c01060{letter-spacing:3.572800pt;}
.ls6_c01060{letter-spacing:3.608000pt;}
.ls1_c01060{letter-spacing:13.792064pt;}
.ls7_c01060{letter-spacing:44.352176pt;}
.ls11_c01060{letter-spacing:50.688176pt;}
.lsf_c01060{letter-spacing:55.756800pt;}
.ws1_c01060{word-spacing:-18.349901pt;}
.ws0_c01060{word-spacing:-17.864000pt;}
.ws2_c01060{word-spacing:0.000000pt;}
._1_c01060{margin-left:-10.718400pt;}
._0_c01060{width:1.715296pt;}
._2_c01060{width:6.341280pt;}
._5_c01060{width:22.875952pt;}
._7_c01060{width:24.166982pt;}
._6_c01060{width:59.888224pt;}
._3_c01060{width:77.457600pt;}
._4_c01060{width:95.132048pt;}
.fs18_c01060{font-size:11.264176pt;}
.fs17_c01060{font-size:11.968176pt;}
.fs16_c01060{font-size:12.496000pt;}
.fs15_c01060{font-size:19.712000pt;}
.fs3_c01060{font-size:44.352176pt;}
.fsf_c01060{font-size:47.344000pt;}
.fs14_c01060{font-size:48.048000pt;}
.fsb_c01060{font-size:49.632176pt;}
.fsa_c01060{font-size:50.688176pt;}
.fse_c01060{font-size:55.616000pt;}
.fs9_c01060{font-size:55.756800pt;}
.fs5_c01060{font-size:58.960000pt;}
.fs12_c01060{font-size:59.136000pt;}
.fs8_c01060{font-size:59.312176pt;}
.fs13_c01060{font-size:62.304176pt;}
.fs4_c01060{font-size:62.656000pt;}
.fs6_c01060{font-size:63.360000pt;}
.fs11_c01060{font-size:66.528000pt;}
.fs10_c01060{font-size:66.880000pt;}
.fsd_c01060{font-size:67.584176pt;}
.fsc_c01060{font-size:67.760000pt;}
.fs1a_c01060{font-size:68.464176pt;}
.fs7_c01060{font-size:68.992176pt;}
.fs19_c01060{font-size:70.048000pt;}
.fs1_c01060{font-size:71.456000pt;}
.fs2_c01060{font-size:72.160000pt;}
.fs0_c01060{font-size:78.848000pt;}
.y0_c01060{bottom:0.000000pt;}
.y1_c01060{bottom:68.000000pt;}
.y1e_c01060{bottom:132.027320pt;}
.y1d_c01060{bottom:162.123320pt;}
.y1c_c01060{bottom:191.898120pt;}
.y1a_c01060{bottom:217.246520pt;}
.y1b_c01060{bottom:220.414520pt;}
.y19_c01060{bottom:220.731320pt;}
.y18_c01060{bottom:249.560120pt;}
.y17_c01060{bottom:278.067720pt;}
.y16_c01060{bottom:305.946120pt;}
.y15_c01060{bottom:334.462520pt;}
.y14_c01060{bottom:362.974520pt;}
.y13_c01060{bottom:391.803320pt;}
.y12_c01060{bottom:419.994120pt;}
.y11_c01060{bottom:449.144120pt;}
.y10_c01060{bottom:477.022520pt;}
.yf_c01060{bottom:505.851320pt;}
.yd_c01060{bottom:534.358920pt;}
.ye_c01060{bottom:535.626120pt;}
.yc_c01060{bottom:562.875320pt;}
.yb_c01060{bottom:591.066120pt;}
.ya_c01060{bottom:619.894920pt;}
.y9_c01060{bottom:648.728120pt;}
.y8_c01060{bottom:677.240120pt;}
.y7_c01060{bottom:734.264120pt;}
.y6_c01060{bottom:762.771720pt;}
.y5_c01060{bottom:790.971320pt;}
.y3_c01060{bottom:819.478920pt;}
.y4_c01060{bottom:820.116920pt;}
.y2_c01060{bottom:944.931720pt;}
.h18_c01060{height:11.748184pt;}
.h16_c01060{height:12.264141pt;}
.h17_c01060{height:12.482434pt;}
.h15_c01060{height:20.559000pt;}
.h5_c01060{height:29.538549pt;}
.hb_c01060{height:33.758325pt;}
.ha_c01060{height:37.134029pt;}
.hf_c01060{height:46.465547pt;}
.h14_c01060{height:47.156484pt;}
.he_c01060{height:54.584063pt;}
.h12_c01060{height:58.038750pt;}
.h6_c01060{height:61.493438pt;}
.h9_c01060{height:61.860746pt;}
.h13_c01060{height:64.981309pt;}
.h11_c01060{height:65.293594pt;}
.h10_c01060{height:65.639063pt;}
.h7_c01060{height:66.082500pt;}
.hd_c01060{height:66.330173pt;}
.hc_c01060{height:66.502734pt;}
.h8_c01060{height:67.712048pt;}
.h19_c01060{height:68.748281pt;}
.h3_c01060{height:70.130156pt;}
.h4_c01060{height:70.821094pt;}
.h1a_c01060{height:71.405996pt;}
.h2_c01060{height:77.385000pt;}
.h1_c01060{height:986.666667pt;}
.h0_c01060{height:1122.666667pt;}
.w1_c01060{width:689.333333pt;}
.w0_c01060{width:793.333333pt;}
.x0_c01060{left:0.000000pt;}
.x1_c01060{left:52.000000pt;}
.x4f_c01060{left:64.272253pt;}
.x15_c01060{left:65.706653pt;}
.x3_c01060{left:66.855053pt;}
.x50_c01060{left:84.054653pt;}
.x62_c01060{left:93.334253pt;}
.xf_c01060{left:95.147053pt;}
.x36_c01060{left:104.646653pt;}
.x16_c01060{left:105.570653pt;}
.x5f_c01060{left:112.984653pt;}
.x24_c01060{left:113.913053pt;}
.x4_c01060{left:115.356253pt;}
.x59_c01060{left:122.981453pt;}
.x4a_c01060{left:123.967053pt;}
.x48_c01060{left:132.683453pt;}
.x47_c01060{left:134.113453pt;}
.x10_c01060{left:135.684253pt;}
.x25_c01060{left:143.837453pt;}
.x5_c01060{left:145.364253pt;}
.x5a_c01060{left:152.316253pt;}
.x55_c01060{left:153.345853pt;}
.x52_c01060{left:162.783853pt;}
.x31_c01060{left:163.795853pt;}
.x20_c01060{left:182.755453pt;}
.x6_c01060{left:193.205453pt;}
.x17_c01060{left:194.587053pt;}
.x7_c01060{left:204.693853pt;}
.x63_c01060{left:211.258653pt;}
.x3e_c01060{left:212.248653pt;}
.x21_c01060{left:213.964653pt;}
.x64_c01060{left:218.223853pt;}
.x6b_c01060{left:221.396253pt;}
.x49_c01060{left:222.491853pt;}
.x18_c01060{left:223.437853pt;}
.x37_c01060{left:232.541453pt;}
.x26_c01060{left:234.134253pt;}
.x3f_c01060{left:242.551453pt;}
.x65_c01060{left:244.364253pt;}
.x56_c01060{left:251.175453pt;}
.x4b_c01060{left:252.618653pt;}
.x66_c01060{left:258.206653pt;}
.x5b_c01060{left:261.779453pt;}
.x27_c01060{left:262.892653pt;}
.x60_c01060{left:271.925853pt;}
.x38_c01060{left:272.823453pt;}
.x4c_c01060{left:281.267053pt;}
.x8_c01060{left:282.595853pt;}
.x40_c01060{left:291.123053pt;}
.x2e_c01060{left:292.803853pt;}
.x67_c01060{left:296.548253pt;}
.x39_c01060{left:301.379453pt;}
.x11_c01060{left:302.351853pt;}
.x41_c01060{left:311.644653pt;}
.x57_c01060{left:321.333453pt;}
.x9_c01060{left:331.013453pt;}
.x42_c01060{left:332.588653pt;}
.x53_c01060{left:339.773853pt;}
.x28_c01060{left:341.142253pt;}
.x32_c01060{left:342.303853pt;}
.x19_c01060{left:350.932253pt;}
.xa_c01060{left:361.795853pt;}
.x1a_c01060{left:370.301053pt;}
.x54_c01060{left:379.796253pt;}
.x3a_c01060{left:381.208653pt;}
.x5c_c01060{left:389.727053pt;}
.x4d_c01060{left:390.699453pt;}
.xb_c01060{left:391.997453pt;}
.x1b_c01060{left:400.762253pt;}
.x3b_c01060{left:408.625053pt;}
.xc_c01060{left:410.671053pt;}
.x58_c01060{left:419.493053pt;}
.x22_c01060{left:420.826253pt;}
.x29_c01060{left:430.334653pt;}
.x3c_c01060{left:438.756253pt;}
.x23_c01060{left:440.401853pt;}
.x33_c01060{left:449.030253pt;}
.x2f_c01060{left:459.163453pt;}
.x12_c01060{left:460.936653pt;}
.x2a_c01060{left:468.935853pt;}
.x68_c01060{left:478.180253pt;}
.x51_c01060{left:479.407853pt;}
.x5d_c01060{left:487.517053pt;}
.x13_c01060{left:488.762253pt;}
.x61_c01060{left:497.012253pt;}
.x1c_c01060{left:497.967053pt;}
.x3d_c01060{left:499.265053pt;}
.x6c_c01060{left:506.947453pt;}
.xd_c01060{left:508.214653pt;}
.x1d_c01060{left:509.596253pt;}
.x69_c01060{left:517.758253pt;}
.x43_c01060{left:527.227053pt;}
.x34_c01060{left:528.467853pt;}
.x6d_c01060{left:535.978653pt;}
.xe_c01060{left:537.241453pt;}
.x1e_c01060{left:547.541853pt;}
.x44_c01060{left:556.258253pt;}
.x14_c01060{left:557.666253pt;}
.x6a_c01060{left:566.136253pt;}
.x2b_c01060{left:567.773053pt;}
.x35_c01060{left:575.569853pt;}
.x4e_c01060{left:576.982253pt;}
.x6e_c01060{left:585.456653pt;}
.x45_c01060{left:586.644653pt;}
.x2_c01060{left:595.651453pt;}
.x2c_c01060{left:606.277453pt;}
.x1f_c01060{left:607.773453pt;}
.x30_c01060{left:615.961853pt;}
.x2d_c01060{left:626.719853pt;}
.x5e_c01060{left:635.858653pt;}
.x6f_c01060{left:644.412253pt;}
.x46_c01060{left:646.137053pt;}
}





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

.ir_c01061:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01061{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01061;src:url('chunks/assets/font_94f85d75edeeb1f9d341398f.woff2')format("woff");}.ff1_c01061{font-family:ff1_c01061;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01061;src:url('chunks/assets/font_bcdb9ab7d51ce57809763cd3.woff2')format("woff");}.ff2_c01061{font-family:ff2_c01061;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01061;src:url('chunks/assets/font_9ce02f02eb8b6a48d3a410fe.woff2')format("woff");}.ff3_c01061{font-family:ff3_c01061;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01061;src:url('chunks/assets/font_3ddfde9024ca6e2d770a55a2.woff2')format("woff");}.ff4_c01061{font-family:ff4_c01061;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m65_c01061{transform:matrix(0.176588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176588,0.000000,0.000000,0.250000,0,0);}
.m83_c01061{transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);}
.m2_c01061{transform:matrix(0.184755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184755,0.000000,0.000000,0.250000,0,0);}
.m50_c01061{transform:matrix(0.217911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217911,0.000000,0.000000,0.250000,0,0);}
.m49_c01061{transform:matrix(0.231898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231898,0.000000,0.000000,0.250000,0,0);}
.m52_c01061{transform:matrix(0.238918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238918,0.000000,0.000000,0.250000,0,0);}
.m89_c01061{transform:matrix(0.247400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247400,0.000000,0.000000,0.250000,0,0);}
.m0_c01061{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01061{transform:matrix(0.250897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250897,0.000000,0.000000,0.250000,0,0);}
.m81_c01061{transform:matrix(0.253022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253022,0.000000,0.000000,0.250000,0,0);}
.m9b_c01061{transform:matrix(0.254050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254050,0.000000,0.000000,0.250000,0,0);}
.m32_c01061{transform:matrix(0.254249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254249,0.000000,0.000000,0.250000,0,0);}
.m3f_c01061{transform:matrix(0.255459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255459,0.000000,0.000000,0.250000,0,0);}
.ma4_c01061{transform:matrix(0.256376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256376,0.000000,0.000000,0.250000,0,0);}
.m57_c01061{transform:matrix(0.256648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256648,0.000000,0.000000,0.250000,0,0);}
.m25_c01061{transform:matrix(0.257310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257310,0.000000,0.000000,0.250000,0,0);}
.mb_c01061{transform:matrix(0.257706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257706,0.000000,0.000000,0.250000,0,0);}
.m8f_c01061{transform:matrix(0.258282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258282,0.000000,0.000000,0.250000,0,0);}
.me_c01061{transform:matrix(0.258882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258882,0.000000,0.000000,0.250000,0,0);}
.m2b_c01061{transform:matrix(0.260021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260021,0.000000,0.000000,0.250000,0,0);}
.m72_c01061{transform:matrix(0.260635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260635,0.000000,0.000000,0.250000,0,0);}
.m26_c01061{transform:matrix(0.261280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261280,0.000000,0.000000,0.250000,0,0);}
.mf_c01061{transform:matrix(0.262322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262322,0.000000,0.000000,0.250000,0,0);}
.m5b_c01061{transform:matrix(0.262894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262894,0.000000,0.000000,0.250000,0,0);}
.ma2_c01061{transform:matrix(0.263564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263564,0.000000,0.000000,0.250000,0,0);}
.m19_c01061{transform:matrix(0.264583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264583,0.000000,0.000000,0.250000,0,0);}
.m97_c01061{transform:matrix(0.265269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265269,0.000000,0.000000,0.250000,0,0);}
.m1d_c01061{transform:matrix(0.267496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267496,0.000000,0.000000,0.250000,0,0);}
.m71_c01061{transform:matrix(0.267506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267506,0.000000,0.000000,0.250000,0,0);}
.m9c_c01061{transform:matrix(0.270610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270610,0.000000,0.000000,0.250000,0,0);}
.m85_c01061{transform:matrix(0.271091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271091,0.000000,0.000000,0.250000,0,0);}
.m7c_c01061{transform:matrix(0.271141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271141,0.000000,0.000000,0.250000,0,0);}
.m48_c01061{transform:matrix(0.271153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271153,0.000000,0.000000,0.250000,0,0);}
.m79_c01061{transform:matrix(0.271611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271611,0.000000,0.000000,0.250000,0,0);}
.m36_c01061{transform:matrix(0.272106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272106,0.000000,0.000000,0.250000,0,0);}
.m38_c01061{transform:matrix(0.272118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272118,0.000000,0.000000,0.250000,0,0);}
.m51_c01061{transform:matrix(0.273140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273140,0.000000,0.000000,0.250000,0,0);}
.m91_c01061{transform:matrix(0.273234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273234,0.000000,0.000000,0.250000,0,0);}
.m5d_c01061{transform:matrix(0.273758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273758,0.000000,0.000000,0.250000,0,0);}
.m30_c01061{transform:matrix(0.274142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274142,0.000000,0.000000,0.250000,0,0);}
.m17_c01061{transform:matrix(0.274257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274257,0.000000,0.000000,0.250000,0,0);}
.ma3_c01061{transform:matrix(0.274567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274567,0.000000,0.000000,0.250000,0,0);}
.m2e_c01061{transform:matrix(0.275099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275099,0.000000,0.000000,0.250000,0,0);}
.m59_c01061{transform:matrix(0.275380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275380,0.000000,0.000000,0.250000,0,0);}
.m67_c01061{transform:matrix(0.275614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275614,0.000000,0.000000,0.250000,0,0);}
.m14_c01061{transform:matrix(0.277684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277684,0.000000,0.000000,0.250000,0,0);}
.m92_c01061{transform:matrix(0.278224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278224,0.000000,0.000000,0.250000,0,0);}
.m41_c01061{transform:matrix(0.278438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278438,0.000000,0.000000,0.250000,0,0);}
.m3e_c01061{transform:matrix(0.278592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278592,0.000000,0.000000,0.250000,0,0);}
.m35_c01061{transform:matrix(0.279044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279044,0.000000,0.000000,0.250000,0,0);}
.m96_c01061{transform:matrix(0.279812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279812,0.000000,0.000000,0.250000,0,0);}
.m60_c01061{transform:matrix(0.280099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280099,0.000000,0.000000,0.250000,0,0);}
.m5_c01061{transform:matrix(0.280570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280570,0.000000,0.000000,0.250000,0,0);}
.m7a_c01061{transform:matrix(0.281016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281016,0.000000,0.000000,0.250000,0,0);}
.m22_c01061{transform:matrix(0.281119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281119,0.000000,0.000000,0.250000,0,0);}
.m45_c01061{transform:matrix(0.282280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282280,0.000000,0.000000,0.250000,0,0);}
.m64_c01061{transform:matrix(0.282305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282305,0.000000,0.000000,0.250000,0,0);}
.m7_c01061{transform:matrix(0.282923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282923,0.000000,0.000000,0.250000,0,0);}
.m75_c01061{transform:matrix(0.283736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283736,0.000000,0.000000,0.250000,0,0);}
.m82_c01061{transform:matrix(0.283983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283983,0.000000,0.000000,0.250000,0,0);}
.m10_c01061{transform:matrix(0.284137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284137,0.000000,0.000000,0.250000,0,0);}
.m13_c01061{transform:matrix(0.284145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284145,0.000000,0.000000,0.250000,0,0);}
.m56_c01061{transform:matrix(0.284888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284888,0.000000,0.000000,0.250000,0,0);}
.m29_c01061{transform:matrix(0.285159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285159,0.000000,0.000000,0.250000,0,0);}
.m1b_c01061{transform:matrix(0.285205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285205,0.000000,0.000000,0.250000,0,0);}
.m95_c01061{transform:matrix(0.285371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285371,0.000000,0.000000,0.250000,0,0);}
.m94_c01061{transform:matrix(0.285628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285628,0.000000,0.000000,0.250000,0,0);}
.m9_c01061{transform:matrix(0.286489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286489,0.000000,0.000000,0.250000,0,0);}
.m9d_c01061{transform:matrix(0.287603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287603,0.000000,0.000000,0.250000,0,0);}
.m55_c01061{transform:matrix(0.288163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288163,0.000000,0.000000,0.250000,0,0);}
.m68_c01061{transform:matrix(0.288484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288484,0.000000,0.000000,0.250000,0,0);}
.m7f_c01061{transform:matrix(0.288845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288845,0.000000,0.000000,0.250000,0,0);}
.m6c_c01061{transform:matrix(0.289059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289059,0.000000,0.000000,0.250000,0,0);}
.mc_c01061{transform:matrix(0.289569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289569,0.000000,0.000000,0.250000,0,0);}
.m23_c01061{transform:matrix(0.289736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289736,0.000000,0.000000,0.250000,0,0);}
.m15_c01061{transform:matrix(0.290125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290125,0.000000,0.000000,0.250000,0,0);}
.m87_c01061{transform:matrix(0.290430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290430,0.000000,0.000000,0.250000,0,0);}
.m7b_c01061{transform:matrix(0.290440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290440,0.000000,0.000000,0.250000,0,0);}
.m76_c01061{transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);}
.m4b_c01061{transform:matrix(0.291019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291019,0.000000,0.000000,0.250000,0,0);}
.m5f_c01061{transform:matrix(0.291521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291521,0.000000,0.000000,0.250000,0,0);}
.m33_c01061{transform:matrix(0.291531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291531,0.000000,0.000000,0.250000,0,0);}
.m28_c01061{transform:matrix(0.291570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291570,0.000000,0.000000,0.250000,0,0);}
.m21_c01061{transform:matrix(0.291873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291873,0.000000,0.000000,0.250000,0,0);}
.m78_c01061{transform:matrix(0.292640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292640,0.000000,0.000000,0.250000,0,0);}
.m58_c01061{transform:matrix(0.292953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292953,0.000000,0.000000,0.250000,0,0);}
.m5a_c01061{transform:matrix(0.293112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293112,0.000000,0.000000,0.250000,0,0);}
.m88_c01061{transform:matrix(0.293323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293323,0.000000,0.000000,0.250000,0,0);}
.m4a_c01061{transform:matrix(0.294113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294113,0.000000,0.000000,0.250000,0,0);}
.m4d_c01061{transform:matrix(0.294655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294655,0.000000,0.000000,0.250000,0,0);}
.m5e_c01061{transform:matrix(0.295785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295785,0.000000,0.000000,0.250000,0,0);}
.m99_c01061{transform:matrix(0.296198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296198,0.000000,0.000000,0.250000,0,0);}
.m9e_c01061{transform:matrix(0.296289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296289,0.000000,0.000000,0.250000,0,0);}
.m3_c01061{transform:matrix(0.296520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296520,0.000000,0.000000,0.250000,0,0);}
.m77_c01061{transform:matrix(0.297940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297940,0.000000,0.000000,0.250000,0,0);}
.m9a_c01061{transform:matrix(0.298170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298170,0.000000,0.000000,0.250000,0,0);}
.m8c_c01061{transform:matrix(0.298269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298269,0.000000,0.000000,0.250000,0,0);}
.m27_c01061{transform:matrix(0.298280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298280,0.000000,0.000000,0.250000,0,0);}
.m74_c01061{transform:matrix(0.298325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298325,0.000000,0.000000,0.250000,0,0);}
.m7d_c01061{transform:matrix(0.299259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299259,0.000000,0.000000,0.250000,0,0);}
.m8e_c01061{transform:matrix(0.299347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299347,0.000000,0.000000,0.250000,0,0);}
.m44_c01061{transform:matrix(0.299423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299423,0.000000,0.000000,0.250000,0,0);}
.m11_c01061{transform:matrix(0.299532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299532,0.000000,0.000000,0.250000,0,0);}
.m1a_c01061{transform:matrix(0.300430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300430,0.000000,0.000000,0.250000,0,0);}
.m9f_c01061{transform:matrix(0.300573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300573,0.000000,0.000000,0.250000,0,0);}
.m80_c01061{transform:matrix(0.300870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300870,0.000000,0.000000,0.250000,0,0);}
.m6d_c01061{transform:matrix(0.301100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301100,0.000000,0.000000,0.250000,0,0);}
.m6b_c01061{transform:matrix(0.301307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301307,0.000000,0.000000,0.250000,0,0);}
.m61_c01061{transform:matrix(0.301375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301375,0.000000,0.000000,0.250000,0,0);}
.m18_c01061{transform:matrix(0.302896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302896,0.000000,0.000000,0.250000,0,0);}
.m6e_c01061{transform:matrix(0.303567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303567,0.000000,0.000000,0.250000,0,0);}
.m86_c01061{transform:matrix(0.304179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304179,0.000000,0.000000,0.250000,0,0);}
.m6f_c01061{transform:matrix(0.304481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304481,0.000000,0.000000,0.250000,0,0);}
.m3d_c01061{transform:matrix(0.304618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304618,0.000000,0.000000,0.250000,0,0);}
.m3c_c01061{transform:matrix(0.304731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304731,0.000000,0.000000,0.250000,0,0);}
.md_c01061{transform:matrix(0.304868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304868,0.000000,0.000000,0.250000,0,0);}
.ma_c01061{transform:matrix(0.305155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305155,0.000000,0.000000,0.250000,0,0);}
.m84_c01061{transform:matrix(0.305532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305532,0.000000,0.000000,0.250000,0,0);}
.m66_c01061{transform:matrix(0.305638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305638,0.000000,0.000000,0.250000,0,0);}
.m8_c01061{transform:matrix(0.306660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306660,0.000000,0.000000,0.250000,0,0);}
.m4f_c01061{transform:matrix(0.309184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309184,0.000000,0.000000,0.250000,0,0);}
.m53_c01061{transform:matrix(0.310006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310006,0.000000,0.000000,0.250000,0,0);}
.m93_c01061{transform:matrix(0.310265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310265,0.000000,0.000000,0.250000,0,0);}
.m8d_c01061{transform:matrix(0.310428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310428,0.000000,0.000000,0.250000,0,0);}
.m63_c01061{transform:matrix(0.311397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311397,0.000000,0.000000,0.250000,0,0);}
.m39_c01061{transform:matrix(0.311790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311790,0.000000,0.000000,0.250000,0,0);}
.m1f_c01061{transform:matrix(0.311978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311978,0.000000,0.000000,0.250000,0,0);}
.m90_c01061{transform:matrix(0.314611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314611,0.000000,0.000000,0.250000,0,0);}
.m2d_c01061{transform:matrix(0.315247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315247,0.000000,0.000000,0.250000,0,0);}
.m6a_c01061{transform:matrix(0.316135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316135,0.000000,0.000000,0.250000,0,0);}
.m46_c01061{transform:matrix(0.316969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316969,0.000000,0.000000,0.250000,0,0);}
.m16_c01061{transform:matrix(0.317588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317588,0.000000,0.000000,0.250000,0,0);}
.m6_c01061{transform:matrix(0.318177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318177,0.000000,0.000000,0.250000,0,0);}
.m54_c01061{transform:matrix(0.319136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319136,0.000000,0.000000,0.250000,0,0);}
.m5c_c01061{transform:matrix(0.319381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319381,0.000000,0.000000,0.250000,0,0);}
.m4_c01061{transform:matrix(0.319409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319409,0.000000,0.000000,0.250000,0,0);}
.m2f_c01061{transform:matrix(0.320355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320355,0.000000,0.000000,0.250000,0,0);}
.m98_c01061{transform:matrix(0.320516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320516,0.000000,0.000000,0.250000,0,0);}
.m3a_c01061{transform:matrix(0.320664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320664,0.000000,0.000000,0.250000,0,0);}
.m43_c01061{transform:matrix(0.320673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320673,0.000000,0.000000,0.250000,0,0);}
.ma1_c01061{transform:matrix(0.320725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320725,0.000000,0.000000,0.250000,0,0);}
.m4e_c01061{transform:matrix(0.320858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320858,0.000000,0.000000,0.250000,0,0);}
.m2a_c01061{transform:matrix(0.321608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321608,0.000000,0.000000,0.250000,0,0);}
.m42_c01061{transform:matrix(0.322034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322034,0.000000,0.000000,0.250000,0,0);}
.ma0_c01061{transform:matrix(0.322634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322634,0.000000,0.000000,0.250000,0,0);}
.m24_c01061{transform:matrix(0.322660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322660,0.000000,0.000000,0.250000,0,0);}
.m1_c01061{transform:matrix(0.322998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322998,0.000000,0.000000,0.250000,0,0);}
.m37_c01061{transform:matrix(0.324749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324749,0.000000,0.000000,0.250000,0,0);}
.m1c_c01061{transform:matrix(0.325281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325281,0.000000,0.000000,0.250000,0,0);}
.m12_c01061{transform:matrix(0.326255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326255,0.000000,0.000000,0.250000,0,0);}
.m62_c01061{transform:matrix(0.328135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328135,0.000000,0.000000,0.250000,0,0);}
.m47_c01061{transform:matrix(0.329069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329069,0.000000,0.000000,0.250000,0,0);}
.m8a_c01061{transform:matrix(0.331083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331083,0.000000,0.000000,0.250000,0,0);}
.m1e_c01061{transform:matrix(0.331212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331212,0.000000,0.000000,0.250000,0,0);}
.m34_c01061{transform:matrix(0.335052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335052,0.000000,0.000000,0.250000,0,0);}
.m31_c01061{transform:matrix(0.335393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335393,0.000000,0.000000,0.250000,0,0);}
.m3b_c01061{transform:matrix(0.338436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338436,0.000000,0.000000,0.250000,0,0);}
.m73_c01061{transform:matrix(0.341035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341035,0.000000,0.000000,0.250000,0,0);}
.m2c_c01061{transform:matrix(0.342181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342181,0.000000,0.000000,0.250000,0,0);}
.m70_c01061{transform:matrix(0.345296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345296,0.000000,0.000000,0.250000,0,0);}
.m7e_c01061{transform:matrix(0.368736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368736,0.000000,0.000000,0.250000,0,0);}
.m8b_c01061{transform:matrix(0.374684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374684,0.000000,0.000000,0.250000,0,0);}
.m40_c01061{transform:matrix(0.380631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380631,0.000000,0.000000,0.250000,0,0);}
.m69_c01061{transform:matrix(0.386579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386579,0.000000,0.000000,0.250000,0,0);}
.m4c_c01061{transform:matrix(0.392526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392526,0.000000,0.000000,0.250000,0,0);}
.v0_c01061{vertical-align:0.000000px;}
.lsc_c01061{letter-spacing:-2.778930px;}
.ls11_c01061{letter-spacing:-2.335417px;}
.lsa_c01061{letter-spacing:-1.675298px;}
.ls5_c01061{letter-spacing:-1.198910px;}
.ls8_c01061{letter-spacing:-0.722522px;}
.ls0_c01061{letter-spacing:0.000000px;}
.lsb_c01061{letter-spacing:0.539906px;}
.lsd_c01061{letter-spacing:1.271480px;}
.ls2_c01061{letter-spacing:1.278308px;}
.ls9_c01061{letter-spacing:2.588375px;}
.ls12_c01061{letter-spacing:2.620134px;}
.ls7_c01061{letter-spacing:2.690273px;}
.ls13_c01061{letter-spacing:2.770990px;}
.ls6_c01061{letter-spacing:2.913907px;}
.ls14_c01061{letter-spacing:3.126816px;}
.ls10_c01061{letter-spacing:3.336310px;}
.ls1_c01061{letter-spacing:3.781017px;}
.lsf_c01061{letter-spacing:3.940200px;}
.ls3_c01061{letter-spacing:3.969900px;}
.ls4_c01061{letter-spacing:58.449798px;}
.lse_c01061{letter-spacing:59.875398px;}
.sc__c01061{text-shadow:none;}
.sc0_c01061{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01061{-webkit-text-stroke:0px transparent;}
.sc0_c01061{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01061{word-spacing:0.000000px;}
.fc0_c01061{color:transparent;}
.fs0_c01061{font-size:22.176000px;}
.fs4_c01061{font-size:27.720000px;}
.fs7_c01061{font-size:42.966198px;}
.fs3_c01061{font-size:58.449798px;}
.fs9_c01061{font-size:59.875398px;}
.fsa_c01061{font-size:66.726198px;}
.fs8_c01061{font-size:69.102198px;}
.fs5_c01061{font-size:69.696198px;}
.fs6_c01061{font-size:78.804000px;}
.fs2_c01061{font-size:79.398000px;}
.fsb_c01061{font-size:83.160000px;}
.fs1_c01061{font-size:85.932198px;}
.y0_c01061{bottom:0.000000px;}
.y1_c01061{bottom:76.500000px;}
.y1e_c01061{bottom:129.280185px;}
.y1d_c01061{bottom:165.989385px;}
.y1c_c01061{bottom:264.360735px;}
.y1b_c01061{bottom:296.436735px;}
.y1a_c01061{bottom:328.156335px;}
.y19_c01061{bottom:360.232335px;}
.y18_c01061{bottom:391.946985px;}
.y17_c01061{bottom:423.666585px;}
.y16_c01061{bottom:455.742585px;}
.y15_c01061{bottom:487.467135px;}
.y14_c01061{bottom:519.543135px;}
.y13_c01061{bottom:551.614185px;}
.y12_c01061{bottom:583.695135px;}
.y11_c01061{bottom:613.627785px;}
.y10_c01061{bottom:647.490735px;}
.yf_c01061{bottom:679.205385px;}
.ye_c01061{bottom:707.360985px;}
.yd_c01061{bottom:711.637785px;}
.yc_c01061{bottom:743.357385px;}
.yb_c01061{bottom:775.438335px;}
.ya_c01061{bottom:807.870735px;}
.y9_c01061{bottom:839.233935px;}
.y8_c01061{bottom:858.479535px;}
.y7_c01061{bottom:871.309935px;}
.y2_c01061{bottom:890.550585px;}
.y6_c01061{bottom:903.029535px;}
.y5_c01061{bottom:935.100585px;}
.y4_c01061{bottom:1004.959935px;}
.y3_c01061{bottom:1066.968585px;}
.h2_c01061{height:23.128875px;}
.h6_c01061{height:28.911094px;}
.h5_c01061{height:38.927565px;}
.hb_c01061{height:39.877015px;}
.h9_c01061{height:44.812402px;}
.ha_c01061{height:67.820028px;}
.h7_c01061{height:68.403007px;}
.hc_c01061{height:69.593339px;}
.h8_c01061{height:77.341816px;}
.h4_c01061{height:77.924795px;}
.hd_c01061{height:83.809688px;}
.h3_c01061{height:84.337753px;}
.h1_c01061{height:1110.000000px;}
.h0_c01061{height:1263.000000px;}
.w1_c01061{width:775.500000px;}
.w0_c01061{width:892.500000px;}
.x0_c01061{left:0.000000px;}
.x2_c01061{left:52.649835px;}
.x1_c01061{left:58.500000px;}
.x4b_c01061{left:80.478735px;}
.x2b_c01061{left:81.597435px;}
.x12_c01061{left:82.622085px;}
.xd_c01061{left:84.542685px;}
.x6e_c01061{left:92.413185px;}
.x56_c01061{left:103.075485px;}
.x6c_c01061{left:112.921035px;}
.x26_c01061{left:126.726585px;}
.x71_c01061{left:135.295035px;}
.x45_c01061{left:136.384035px;}
.x5_c01061{left:138.151185px;}
.x1b_c01061{left:149.110485px;}
.x13_c01061{left:150.174735px;}
.x6d_c01061{left:158.713485px;}
.x31_c01061{left:160.822185px;}
.x46_c01061{left:169.712385px;}
.x6_c01061{left:171.900285px;}
.x4c_c01061{left:180.770685px;}
.x1c_c01061{left:182.394285px;}
.x72_c01061{left:190.160835px;}
.x57_c01061{left:191.690385px;}
.x51_c01061{left:192.893235px;}
.x14_c01061{left:194.353485px;}
.x60_c01061{left:203.595135px;}
.x2c_c01061{left:204.718785px;}
.x6f_c01061{left:212.727885px;}
.x4d_c01061{left:213.787185px;}
.x7_c01061{left:215.965185px;}
.x73_c01061{left:223.761435px;}
.x32_c01061{left:225.177135px;}
.x1d_c01061{left:236.631435px;}
.x52_c01061{left:247.268985px;}
.x15_c01061{left:250.273635px;}
.x5e_c01061{left:257.535285px;}
.x70_c01061{left:267.950085px;}
.xe_c01061{left:270.845835px;}
.x5b_c01061{left:280.627035px;}
.x1e_c01061{left:283.661385px;}
.x47_c01061{left:291.121035px;}
.x4e_c01061{left:293.076285px;}
.x33_c01061{left:294.135585px;}
.x58_c01061{left:303.010935px;}
.x41_c01061{left:304.857285px;}
.x2d_c01061{left:315.009735px;}
.x38_c01061{left:316.227435px;}
.x42_c01061{left:325.459185px;}
.x2e_c01061{left:327.800535px;}
.x8_c01061{left:337.443135px;}
.x27_c01061{left:339.007335px;}
.x53_c01061{left:347.986635px;}
.x43_c01061{left:358.485585px;}
.x16_c01061{left:360.079485px;}
.x6a_c01061{left:368.464785px;}
.x1f_c01061{left:370.519035px;}
.xf_c01061{left:371.820885px;}
.x54_c01061{left:380.711085px;}
.x34_c01061{left:382.201035px;}
.x64_c01061{left:391.274385px;}
.x17_c01061{left:392.699985px;}
.x3e_c01061{left:404.297835px;}
.x20_c01061{left:405.352185px;}
.x35_c01061{left:414.475035px;}
.x28_c01061{left:426.211485px;}
.x4f_c01061{left:435.502635px;}
.x9_c01061{left:438.136035px;}
.x29_c01061{left:447.946935px;}
.x61_c01061{left:457.921185px;}
.x39_c01061{left:459.544785px;}
.x59_c01061{left:461.079285px;}
.x48_c01061{left:468.261735px;}
.x50_c01061{left:470.449635px;}
.x65_c01061{left:480.567435px;}
.x2a_c01061{left:481.864335px;}
.xa_c01061{left:483.656235px;}
.x5f_c01061{left:490.714935px;}
.x3a_c01061{left:491.907885px;}
.x55_c01061{left:494.363085px;}
.x5c_c01061{left:502.243485px;}
.x2f_c01061{left:503.733435px;}
.x18_c01061{left:505.396635px;}
.x66_c01061{left:512.975085px;}
.x21_c01061{left:515.420385px;}
.x74_c01061{left:523.672035px;}
.x3b_c01061{left:525.067935px;}
.x10_c01061{left:526.513335px;}
.x5d_c01061{left:535.245135px;}
.x19_c01061{left:538.254735px;}
.x22_c01061{left:547.931985px;}
.x67_c01061{left:556.757835px;}
.x49_c01061{left:558.950685px;}
.x62_c01061{left:568.053735px;}
.xb_c01061{left:570.895035px;}
.x36_c01061{left:579.453585px;}
.x5a_c01061{left:591.412785px;}
.x63_c01061{left:602.080035px;}
.x6b_c01061{left:612.791835px;}
.x3c_c01061{left:614.138235px;}
.x23_c01061{left:624.785685px;}
.x11_c01061{left:637.017135px;}
.x4a_c01061{left:645.065835px;}
.x30_c01061{left:657.797235px;}
.x37_c01061{left:668.192235px;}
.x68_c01061{left:678.666435px;}
.x3f_c01061{left:679.795035px;}
.x3_c01061{left:681.878985px;}
.x24_c01061{left:692.273985px;}
.xc_c01061{left:693.927285px;}
.x44_c01061{left:699.872235px;}
.x1a_c01061{left:700.916685px;}
.x4_c01061{left:702.723435px;}
.x69_c01061{left:711.321585px;}
.x40_c01061{left:712.623435px;}
.x3d_c01061{left:715.939935px;}
.x25_c01061{left:724.840035px;}
.x75_c01061{left:745.337985px;}
@media print{
.v0_c01061{vertical-align:0.000000pt;}
.lsc_c01061{letter-spacing:-2.470160pt;}
.ls11_c01061{letter-spacing:-2.075926pt;}
.lsa_c01061{letter-spacing:-1.489154pt;}
.ls5_c01061{letter-spacing:-1.065698pt;}
.ls8_c01061{letter-spacing:-0.642242pt;}
.ls0_c01061{letter-spacing:0.000000pt;}
.lsb_c01061{letter-spacing:0.479917pt;}
.lsd_c01061{letter-spacing:1.130205pt;}
.ls2_c01061{letter-spacing:1.136274pt;}
.ls9_c01061{letter-spacing:2.300778pt;}
.ls12_c01061{letter-spacing:2.329008pt;}
.ls7_c01061{letter-spacing:2.391354pt;}
.ls13_c01061{letter-spacing:2.463102pt;}
.ls6_c01061{letter-spacing:2.590139pt;}
.ls14_c01061{letter-spacing:2.779392pt;}
.ls10_c01061{letter-spacing:2.965609pt;}
.ls1_c01061{letter-spacing:3.360904pt;}
.lsf_c01061{letter-spacing:3.502400pt;}
.ls3_c01061{letter-spacing:3.528800pt;}
.ls4_c01061{letter-spacing:51.955376pt;}
.lse_c01061{letter-spacing:53.222576pt;}
.ws0_c01061{word-spacing:0.000000pt;}
.fs0_c01061{font-size:19.712000pt;}
.fs4_c01061{font-size:24.640000pt;}
.fs7_c01061{font-size:38.192176pt;}
.fs3_c01061{font-size:51.955376pt;}
.fs9_c01061{font-size:53.222576pt;}
.fsa_c01061{font-size:59.312176pt;}
.fs8_c01061{font-size:61.424176pt;}
.fs5_c01061{font-size:61.952176pt;}
.fs6_c01061{font-size:70.048000pt;}
.fs2_c01061{font-size:70.576000pt;}
.fsb_c01061{font-size:73.920000pt;}
.fs1_c01061{font-size:76.384176pt;}
.y0_c01061{bottom:0.000000pt;}
.y1_c01061{bottom:68.000000pt;}
.y1e_c01061{bottom:114.915720pt;}
.y1d_c01061{bottom:147.546120pt;}
.y1c_c01061{bottom:234.987320pt;}
.y1b_c01061{bottom:263.499320pt;}
.y1a_c01061{bottom:291.694520pt;}
.y19_c01061{bottom:320.206520pt;}
.y18_c01061{bottom:348.397320pt;}
.y17_c01061{bottom:376.592520pt;}
.y16_c01061{bottom:405.104520pt;}
.y15_c01061{bottom:433.304120pt;}
.y14_c01061{bottom:461.816120pt;}
.y13_c01061{bottom:490.323720pt;}
.y12_c01061{bottom:518.840120pt;}
.y11_c01061{bottom:545.446920pt;}
.y10_c01061{bottom:575.547320pt;}
.yf_c01061{bottom:603.738120pt;}
.ye_c01061{bottom:628.765320pt;}
.yd_c01061{bottom:632.566920pt;}
.yc_c01061{bottom:660.762120pt;}
.yb_c01061{bottom:689.278520pt;}
.ya_c01061{bottom:718.107320pt;}
.y9_c01061{bottom:745.985720pt;}
.y8_c01061{bottom:763.092920pt;}
.y7_c01061{bottom:774.497720pt;}
.y2_c01061{bottom:791.600520pt;}
.y6_c01061{bottom:802.692920pt;}
.y5_c01061{bottom:831.200520pt;}
.y4_c01061{bottom:893.297720pt;}
.y3_c01061{bottom:948.416520pt;}
.h2_c01061{height:20.559000pt;}
.h6_c01061{height:25.698750pt;}
.h5_c01061{height:34.602280pt;}
.hb_c01061{height:35.446236pt;}
.h9_c01061{height:39.833246pt;}
.ha_c01061{height:60.284470pt;}
.h7_c01061{height:60.802673pt;}
.hc_c01061{height:61.860746pt;}
.h8_c01061{height:68.748281pt;}
.h4_c01061{height:69.266484pt;}
.hd_c01061{height:74.497500pt;}
.h3_c01061{height:74.966891pt;}
.h1_c01061{height:986.666667pt;}
.h0_c01061{height:1122.666667pt;}
.w1_c01061{width:689.333333pt;}
.w0_c01061{width:793.333333pt;}
.x0_c01061{left:0.000000pt;}
.x2_c01061{left:46.799853pt;}
.x1_c01061{left:52.000000pt;}
.x4b_c01061{left:71.536653pt;}
.x2b_c01061{left:72.531053pt;}
.x12_c01061{left:73.441853pt;}
.xd_c01061{left:75.149053pt;}
.x6e_c01061{left:82.145053pt;}
.x56_c01061{left:91.622653pt;}
.x6c_c01061{left:100.374253pt;}
.x26_c01061{left:112.645853pt;}
.x71_c01061{left:120.262253pt;}
.x45_c01061{left:121.230253pt;}
.x5_c01061{left:122.801053pt;}
.x1b_c01061{left:132.542653pt;}
.x13_c01061{left:133.488653pt;}
.x6d_c01061{left:141.078653pt;}
.x31_c01061{left:142.953053pt;}
.x46_c01061{left:150.855453pt;}
.x6_c01061{left:152.800253pt;}
.x4c_c01061{left:160.685053pt;}
.x1c_c01061{left:162.128253pt;}
.x72_c01061{left:169.031853pt;}
.x57_c01061{left:170.391453pt;}
.x51_c01061{left:171.460653pt;}
.x14_c01061{left:172.758653pt;}
.x60_c01061{left:180.973453pt;}
.x2c_c01061{left:181.972253pt;}
.x6f_c01061{left:189.091453pt;}
.x4d_c01061{left:190.033053pt;}
.x7_c01061{left:191.969053pt;}
.x73_c01061{left:198.899053pt;}
.x32_c01061{left:200.157453pt;}
.x1d_c01061{left:210.339053pt;}
.x52_c01061{left:219.794653pt;}
.x15_c01061{left:222.465453pt;}
.x5e_c01061{left:228.920253pt;}
.x70_c01061{left:238.177853pt;}
.xe_c01061{left:240.751853pt;}
.x5b_c01061{left:249.446253pt;}
.x1e_c01061{left:252.143453pt;}
.x47_c01061{left:258.774253pt;}
.x4e_c01061{left:260.512253pt;}
.x33_c01061{left:261.453853pt;}
.x58_c01061{left:269.343053pt;}
.x41_c01061{left:270.984253pt;}
.x2d_c01061{left:280.008653pt;}
.x38_c01061{left:281.091053pt;}
.x42_c01061{left:289.297053pt;}
.x2e_c01061{left:291.378253pt;}
.x8_c01061{left:299.949453pt;}
.x27_c01061{left:301.339853pt;}
.x53_c01061{left:309.321453pt;}
.x43_c01061{left:318.653853pt;}
.x16_c01061{left:320.070653pt;}
.x6a_c01061{left:327.524253pt;}
.x1f_c01061{left:329.350253pt;}
.xf_c01061{left:330.507453pt;}
.x54_c01061{left:338.409853pt;}
.x34_c01061{left:339.734253pt;}
.x64_c01061{left:347.799453pt;}
.x17_c01061{left:349.066653pt;}
.x3e_c01061{left:359.375853pt;}
.x20_c01061{left:360.313053pt;}
.x35_c01061{left:368.422253pt;}
.x28_c01061{left:378.854653pt;}
.x4f_c01061{left:387.113453pt;}
.x9_c01061{left:389.454253pt;}
.x29_c01061{left:398.175053pt;}
.x61_c01061{left:407.041053pt;}
.x39_c01061{left:408.484253pt;}
.x59_c01061{left:409.848253pt;}
.x48_c01061{left:416.232653pt;}
.x50_c01061{left:418.177453pt;}
.x65_c01061{left:427.171053pt;}
.x2a_c01061{left:428.323853pt;}
.xa_c01061{left:429.916653pt;}
.x5f_c01061{left:436.191053pt;}
.x3a_c01061{left:437.251453pt;}
.x55_c01061{left:439.433853pt;}
.x5c_c01061{left:446.438653pt;}
.x2f_c01061{left:447.763053pt;}
.x18_c01061{left:449.241453pt;}
.x66_c01061{left:455.977853pt;}
.x21_c01061{left:458.151453pt;}
.x74_c01061{left:465.486253pt;}
.x3b_c01061{left:466.727053pt;}
.x10_c01061{left:468.011853pt;}
.x5d_c01061{left:475.773453pt;}
.x19_c01061{left:478.448653pt;}
.x22_c01061{left:487.050653pt;}
.x67_c01061{left:494.895853pt;}
.x49_c01061{left:496.845053pt;}
.x62_c01061{left:504.936653pt;}
.xb_c01061{left:507.462253pt;}
.x36_c01061{left:515.069853pt;}
.x5a_c01061{left:525.700253pt;}
.x63_c01061{left:535.182253pt;}
.x6b_c01061{left:544.703853pt;}
.x3c_c01061{left:545.900653pt;}
.x23_c01061{left:555.365053pt;}
.x11_c01061{left:566.237453pt;}
.x4a_c01061{left:573.391853pt;}
.x30_c01061{left:584.708653pt;}
.x37_c01061{left:593.948653pt;}
.x68_c01061{left:603.259053pt;}
.x3f_c01061{left:604.262253pt;}
.x3_c01061{left:606.114653pt;}
.x24_c01061{left:615.354653pt;}
.xc_c01061{left:616.824253pt;}
.x44_c01061{left:622.108653pt;}
.x1a_c01061{left:623.037053pt;}
.x4_c01061{left:624.643053pt;}
.x69_c01061{left:632.285853pt;}
.x40_c01061{left:633.443053pt;}
.x3d_c01061{left:636.391053pt;}
.x25_c01061{left:644.302253pt;}
.x75_c01061{left:662.522653pt;}
}





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

.ir_c01062:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01062{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01062;src:url('chunks/assets/font_00e6fb635573061d8132215e.woff2')format("woff");}.ff1_c01062{font-family:ff1_c01062;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01062;src:url('chunks/assets/font_bf59038c2fab50b5315a255f.woff2')format("woff");}.ff2_c01062{font-family:ff2_c01062;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01062;src:url('chunks/assets/font_894b70ee631b4c739f25b2ce.woff2')format("woff");}.ff3_c01062{font-family:ff3_c01062;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01062;src:url('chunks/assets/font_4ce9a462506ffe36ee3f30b7.woff2')format("woff");}.ff4_c01062{font-family:ff4_c01062;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m69_c01062{transform:matrix(0.142856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142856,0.000000,0.000000,0.250000,0,0);}
.m68_c01062{transform:matrix(0.146945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146945,0.000000,0.000000,0.250000,0,0);}
.md_c01062{transform:matrix(0.154762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154762,0.000000,0.000000,0.250000,0,0);}
.mc_c01062{transform:matrix(0.180195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180195,0.000000,0.000000,0.250000,0,0);}
.m83_c01062{transform:matrix(0.184524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184524,0.000000,0.000000,0.250000,0,0);}
.m9f_c01062{transform:matrix(0.187408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187408,0.000000,0.000000,0.250000,0,0);}
.m58_c01062{transform:matrix(0.197674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197674,0.000000,0.000000,0.250000,0,0);}
.ma7_c01062{transform:matrix(0.220695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220695,0.000000,0.000000,0.250000,0,0);}
.m3f_c01062{transform:matrix(0.224092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224092,0.000000,0.000000,0.250000,0,0);}
.ma5_c01062{transform:matrix(0.232688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232688,0.000000,0.000000,0.250000,0,0);}
.m15_c01062{transform:matrix(0.243822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243822,0.000000,0.000000,0.250000,0,0);}
.m28_c01062{transform:matrix(0.249722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249722,0.000000,0.000000,0.250000,0,0);}
.m0_c01062{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01062{transform:matrix(0.251230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251230,0.000000,0.000000,0.250000,0,0);}
.m2a_c01062{transform:matrix(0.252313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252313,0.000000,0.000000,0.250000,0,0);}
.m45_c01062{transform:matrix(0.253124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253124,0.000000,0.000000,0.250000,0,0);}
.mae_c01062{transform:matrix(0.253573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253573,0.000000,0.000000,0.250000,0,0);}
.m2f_c01062{transform:matrix(0.254533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254533,0.000000,0.000000,0.250000,0,0);}
.m77_c01062{transform:matrix(0.254760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254760,0.000000,0.000000,0.250000,0,0);}
.m38_c01062{transform:matrix(0.255101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255101,0.000000,0.000000,0.250000,0,0);}
.ma1_c01062{transform:matrix(0.255452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255452,0.000000,0.000000,0.250000,0,0);}
.m93_c01062{transform:matrix(0.255686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255686,0.000000,0.000000,0.250000,0,0);}
.m19_c01062{transform:matrix(0.256819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256819,0.000000,0.000000,0.250000,0,0);}
.m99_c01062{transform:matrix(0.257994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257994,0.000000,0.000000,0.250000,0,0);}
.mb9_c01062{transform:matrix(0.258115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258115,0.000000,0.000000,0.250000,0,0);}
.m8c_c01062{transform:matrix(0.258377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258377,0.000000,0.000000,0.250000,0,0);}
.mb7_c01062{transform:matrix(0.258835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258835,0.000000,0.000000,0.250000,0,0);}
.m6b_c01062{transform:matrix(0.258857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258857,0.000000,0.000000,0.250000,0,0);}
.m55_c01062{transform:matrix(0.259656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259656,0.000000,0.000000,0.250000,0,0);}
.m8b_c01062{transform:matrix(0.260405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260405,0.000000,0.000000,0.250000,0,0);}
.m66_c01062{transform:matrix(0.261325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261325,0.000000,0.000000,0.250000,0,0);}
.me_c01062{transform:matrix(0.261798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261798,0.000000,0.000000,0.250000,0,0);}
.m44_c01062{transform:matrix(0.262126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262126,0.000000,0.000000,0.250000,0,0);}
.m78_c01062{transform:matrix(0.263210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263210,0.000000,0.000000,0.250000,0,0);}
.m4f_c01062{transform:matrix(0.263778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263778,0.000000,0.000000,0.250000,0,0);}
.m73_c01062{transform:matrix(0.263906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263906,0.000000,0.000000,0.250000,0,0);}
.m6a_c01062{transform:matrix(0.264201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264201,0.000000,0.000000,0.250000,0,0);}
.m4_c01062{transform:matrix(0.264211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264211,0.000000,0.000000,0.250000,0,0);}
.m1_c01062{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.m75_c01062{transform:matrix(0.264913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264913,0.000000,0.000000,0.250000,0,0);}
.m7c_c01062{transform:matrix(0.266860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266860,0.000000,0.000000,0.250000,0,0);}
.m6c_c01062{transform:matrix(0.266935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266935,0.000000,0.000000,0.250000,0,0);}
.m8f_c01062{transform:matrix(0.267663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267663,0.000000,0.000000,0.250000,0,0);}
.mb3_c01062{transform:matrix(0.268344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268344,0.000000,0.000000,0.250000,0,0);}
.ma2_c01062{transform:matrix(0.268641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268641,0.000000,0.000000,0.250000,0,0);}
.m32_c01062{transform:matrix(0.269808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269808,0.000000,0.000000,0.250000,0,0);}
.m4b_c01062{transform:matrix(0.269953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269953,0.000000,0.000000,0.250000,0,0);}
.m17_c01062{transform:matrix(0.271626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271626,0.000000,0.000000,0.250000,0,0);}
.m33_c01062{transform:matrix(0.271943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271943,0.000000,0.000000,0.250000,0,0);}
.m3a_c01062{transform:matrix(0.272097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272097,0.000000,0.000000,0.250000,0,0);}
.m94_c01062{transform:matrix(0.272562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272562,0.000000,0.000000,0.250000,0,0);}
.m60_c01062{transform:matrix(0.272571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272571,0.000000,0.000000,0.250000,0,0);}
.m64_c01062{transform:matrix(0.272850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272850,0.000000,0.000000,0.250000,0,0);}
.m61_c01062{transform:matrix(0.273127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273127,0.000000,0.000000,0.250000,0,0);}
.m37_c01062{transform:matrix(0.273219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273219,0.000000,0.000000,0.250000,0,0);}
.m70_c01062{transform:matrix(0.273280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273280,0.000000,0.000000,0.250000,0,0);}
.m6_c01062{transform:matrix(0.273344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273344,0.000000,0.000000,0.250000,0,0);}
.m7_c01062{transform:matrix(0.274015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274015,0.000000,0.000000,0.250000,0,0);}
.m25_c01062{transform:matrix(0.274264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274264,0.000000,0.000000,0.250000,0,0);}
.m7f_c01062{transform:matrix(0.274371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274371,0.000000,0.000000,0.250000,0,0);}
.m18_c01062{transform:matrix(0.274871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274871,0.000000,0.000000,0.250000,0,0);}
.m71_c01062{transform:matrix(0.275607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275607,0.000000,0.000000,0.250000,0,0);}
.m59_c01062{transform:matrix(0.276563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276563,0.000000,0.000000,0.250000,0,0);}
.m90_c01062{transform:matrix(0.276738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276738,0.000000,0.000000,0.250000,0,0);}
.m40_c01062{transform:matrix(0.278456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278456,0.000000,0.000000,0.250000,0,0);}
.m36_c01062{transform:matrix(0.279009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279009,0.000000,0.000000,0.250000,0,0);}
.m23_c01062{transform:matrix(0.279348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279348,0.000000,0.000000,0.250000,0,0);}
.m8_c01062{transform:matrix(0.279439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279439,0.000000,0.000000,0.250000,0,0);}
.m96_c01062{transform:matrix(0.279841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279841,0.000000,0.000000,0.250000,0,0);}
.m14_c01062{transform:matrix(0.279881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279881,0.000000,0.000000,0.250000,0,0);}
.ma0_c01062{transform:matrix(0.280004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280004,0.000000,0.000000,0.250000,0,0);}
.m47_c01062{transform:matrix(0.281025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281025,0.000000,0.000000,0.250000,0,0);}
.m2d_c01062{transform:matrix(0.281111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281111,0.000000,0.000000,0.250000,0,0);}
.mba_c01062{transform:matrix(0.281415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281415,0.000000,0.000000,0.250000,0,0);}
.m41_c01062{transform:matrix(0.281693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281693,0.000000,0.000000,0.250000,0,0);}
.mbb_c01062{transform:matrix(0.282017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282017,0.000000,0.000000,0.250000,0,0);}
.m6e_c01062{transform:matrix(0.282389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282389,0.000000,0.000000,0.250000,0,0);}
.mb2_c01062{transform:matrix(0.282897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282897,0.000000,0.000000,0.250000,0,0);}
.mb8_c01062{transform:matrix(0.283212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283212,0.000000,0.000000,0.250000,0,0);}
.m7d_c01062{transform:matrix(0.283235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283235,0.000000,0.000000,0.250000,0,0);}
.m1b_c01062{transform:matrix(0.283927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283927,0.000000,0.000000,0.250000,0,0);}
.m56_c01062{transform:matrix(0.284433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284433,0.000000,0.000000,0.250000,0,0);}
.m3_c01062{transform:matrix(0.285337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285337,0.000000,0.000000,0.250000,0,0);}
.mb1_c01062{transform:matrix(0.285966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285966,0.000000,0.000000,0.250000,0,0);}
.mb_c01062{transform:matrix(0.286455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286455,0.000000,0.000000,0.250000,0,0);}
.m67_c01062{transform:matrix(0.286561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286561,0.000000,0.000000,0.250000,0,0);}
.m6f_c01062{transform:matrix(0.286583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286583,0.000000,0.000000,0.250000,0,0);}
.m10_c01062{transform:matrix(0.287433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287433,0.000000,0.000000,0.250000,0,0);}
.mbd_c01062{transform:matrix(0.287714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287714,0.000000,0.000000,0.250000,0,0);}
.m51_c01062{transform:matrix(0.287979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287979,0.000000,0.000000,0.250000,0,0);}
.m1e_c01062{transform:matrix(0.288375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288375,0.000000,0.000000,0.250000,0,0);}
.m9a_c01062{transform:matrix(0.288575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288575,0.000000,0.000000,0.250000,0,0);}
.m85_c01062{transform:matrix(0.288631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288631,0.000000,0.000000,0.250000,0,0);}
.m1a_c01062{transform:matrix(0.288688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288688,0.000000,0.000000,0.250000,0,0);}
.m53_c01062{transform:matrix(0.288980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288980,0.000000,0.000000,0.250000,0,0);}
.m21_c01062{transform:matrix(0.289502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289502,0.000000,0.000000,0.250000,0,0);}
.m84_c01062{transform:matrix(0.289847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289847,0.000000,0.000000,0.250000,0,0);}
.m1f_c01062{transform:matrix(0.291026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291026,0.000000,0.000000,0.250000,0,0);}
.m98_c01062{transform:matrix(0.291177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291177,0.000000,0.000000,0.250000,0,0);}
.m9_c01062{transform:matrix(0.291380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291380,0.000000,0.000000,0.250000,0,0);}
.m80_c01062{transform:matrix(0.291882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291882,0.000000,0.000000,0.250000,0,0);}
.m20_c01062{transform:matrix(0.292496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292496,0.000000,0.000000,0.250000,0,0);}
.m54_c01062{transform:matrix(0.292831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292831,0.000000,0.000000,0.250000,0,0);}
.m5f_c01062{transform:matrix(0.292863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292863,0.000000,0.000000,0.250000,0,0);}
.m3b_c01062{transform:matrix(0.293337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293337,0.000000,0.000000,0.250000,0,0);}
.m9b_c01062{transform:matrix(0.294874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294874,0.000000,0.000000,0.250000,0,0);}
.m91_c01062{transform:matrix(0.295052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295052,0.000000,0.000000,0.250000,0,0);}
.m46_c01062{transform:matrix(0.295184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295184,0.000000,0.000000,0.250000,0,0);}
.m1d_c01062{transform:matrix(0.295661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295661,0.000000,0.000000,0.250000,0,0);}
.m3e_c01062{transform:matrix(0.295707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295707,0.000000,0.000000,0.250000,0,0);}
.m16_c01062{transform:matrix(0.296970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296970,0.000000,0.000000,0.250000,0,0);}
.m57_c01062{transform:matrix(0.297596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297596,0.000000,0.000000,0.250000,0,0);}
.m2b_c01062{transform:matrix(0.298621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298621,0.000000,0.000000,0.250000,0,0);}
.m5a_c01062{transform:matrix(0.298626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298626,0.000000,0.000000,0.250000,0,0);}
.m2_c01062{transform:matrix(0.299147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299147,0.000000,0.000000,0.250000,0,0);}
.m4e_c01062{transform:matrix(0.299331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299331,0.000000,0.000000,0.250000,0,0);}
.m4d_c01062{transform:matrix(0.300560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300560,0.000000,0.000000,0.250000,0,0);}
.mad_c01062{transform:matrix(0.300978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300978,0.000000,0.000000,0.250000,0,0);}
.m52_c01062{transform:matrix(0.301676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301676,0.000000,0.000000,0.250000,0,0);}
.m92_c01062{transform:matrix(0.301783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301783,0.000000,0.000000,0.250000,0,0);}
.m89_c01062{transform:matrix(0.301820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301820,0.000000,0.000000,0.250000,0,0);}
.m5e_c01062{transform:matrix(0.302398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302398,0.000000,0.000000,0.250000,0,0);}
.m42_c01062{transform:matrix(0.304347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304347,0.000000,0.000000,0.250000,0,0);}
.m49_c01062{transform:matrix(0.305163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305163,0.000000,0.000000,0.250000,0,0);}
.m39_c01062{transform:matrix(0.306557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306557,0.000000,0.000000,0.250000,0,0);}
.m72_c01062{transform:matrix(0.306813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306813,0.000000,0.000000,0.250000,0,0);}
.m8d_c01062{transform:matrix(0.307649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307649,0.000000,0.000000,0.250000,0,0);}
.m29_c01062{transform:matrix(0.308359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308359,0.000000,0.000000,0.250000,0,0);}
.m48_c01062{transform:matrix(0.309187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309187,0.000000,0.000000,0.250000,0,0);}
.m76_c01062{transform:matrix(0.309323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309323,0.000000,0.000000,0.250000,0,0);}
.m65_c01062{transform:matrix(0.310426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310426,0.000000,0.000000,0.250000,0,0);}
.maf_c01062{transform:matrix(0.310812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310812,0.000000,0.000000,0.250000,0,0);}
.m7b_c01062{transform:matrix(0.311820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311820,0.000000,0.000000,0.250000,0,0);}
.m63_c01062{transform:matrix(0.311833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311833,0.000000,0.000000,0.250000,0,0);}
.m62_c01062{transform:matrix(0.311931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311931,0.000000,0.000000,0.250000,0,0);}
.m8a_c01062{transform:matrix(0.312243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312243,0.000000,0.000000,0.250000,0,0);}
.m95_c01062{transform:matrix(0.313241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313241,0.000000,0.000000,0.250000,0,0);}
.mb0_c01062{transform:matrix(0.313310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313310,0.000000,0.000000,0.250000,0,0);}
.m4a_c01062{transform:matrix(0.315028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315028,0.000000,0.000000,0.250000,0,0);}
.m34_c01062{transform:matrix(0.315448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315448,0.000000,0.000000,0.250000,0,0);}
.m43_c01062{transform:matrix(0.316255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316255,0.000000,0.000000,0.250000,0,0);}
.m7a_c01062{transform:matrix(0.316267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316267,0.000000,0.000000,0.250000,0,0);}
.m2e_c01062{transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);}
.m5b_c01062{transform:matrix(0.317424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317424,0.000000,0.000000,0.250000,0,0);}
.mac_c01062{transform:matrix(0.317549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317549,0.000000,0.000000,0.250000,0,0);}
.m50_c01062{transform:matrix(0.317987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317987,0.000000,0.000000,0.250000,0,0);}
.m6d_c01062{transform:matrix(0.318068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318068,0.000000,0.000000,0.250000,0,0);}
.m81_c01062{transform:matrix(0.319107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319107,0.000000,0.000000,0.250000,0,0);}
.m86_c01062{transform:matrix(0.320439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320439,0.000000,0.000000,0.250000,0,0);}
.m30_c01062{transform:matrix(0.320910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320910,0.000000,0.000000,0.250000,0,0);}
.mf_c01062{transform:matrix(0.321526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321526,0.000000,0.000000,0.250000,0,0);}
.mab_c01062{transform:matrix(0.322565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322565,0.000000,0.000000,0.250000,0,0);}
.m31_c01062{transform:matrix(0.325016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325016,0.000000,0.000000,0.250000,0,0);}
.m12_c01062{transform:matrix(0.325330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325330,0.000000,0.000000,0.250000,0,0);}
.m4c_c01062{transform:matrix(0.325570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325570,0.000000,0.000000,0.250000,0,0);}
.m2c_c01062{transform:matrix(0.326110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326110,0.000000,0.000000,0.250000,0,0);}
.m27_c01062{transform:matrix(0.326401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326401,0.000000,0.000000,0.250000,0,0);}
.m5c_c01062{transform:matrix(0.326498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326498,0.000000,0.000000,0.250000,0,0);}
.m79_c01062{transform:matrix(0.326797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326797,0.000000,0.000000,0.250000,0,0);}
.m3d_c01062{transform:matrix(0.327006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327006,0.000000,0.000000,0.250000,0,0);}
.m5d_c01062{transform:matrix(0.328297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328297,0.000000,0.000000,0.250000,0,0);}
.m9c_c01062{transform:matrix(0.328382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328382,0.000000,0.000000,0.250000,0,0);}
.m87_c01062{transform:matrix(0.329075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329075,0.000000,0.000000,0.250000,0,0);}
.mb5_c01062{transform:matrix(0.330129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330129,0.000000,0.000000,0.250000,0,0);}
.m35_c01062{transform:matrix(0.330164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330164,0.000000,0.000000,0.250000,0,0);}
.m5_c01062{transform:matrix(0.334253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334253,0.000000,0.000000,0.250000,0,0);}
.ma8_c01062{transform:matrix(0.334626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334626,0.000000,0.000000,0.250000,0,0);}
.m3c_c01062{transform:matrix(0.336722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336722,0.000000,0.000000,0.250000,0,0);}
.m8e_c01062{transform:matrix(0.336835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336835,0.000000,0.000000,0.250000,0,0);}
.ma4_c01062{transform:matrix(0.337911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337911,0.000000,0.000000,0.250000,0,0);}
.mbc_c01062{transform:matrix(0.337967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337967,0.000000,0.000000,0.250000,0,0);}
.m22_c01062{transform:matrix(0.338017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338017,0.000000,0.000000,0.250000,0,0);}
.m7e_c01062{transform:matrix(0.341681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341681,0.000000,0.000000,0.250000,0,0);}
.m74_c01062{transform:matrix(0.344214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344214,0.000000,0.000000,0.250000,0,0);}
.mb4_c01062{transform:matrix(0.346190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346190,0.000000,0.000000,0.250000,0,0);}
.m97_c01062{transform:matrix(0.346593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346593,0.000000,0.000000,0.250000,0,0);}
.m88_c01062{transform:matrix(0.351803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351803,0.000000,0.000000,0.250000,0,0);}
.m26_c01062{transform:matrix(0.352344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352344,0.000000,0.000000,0.250000,0,0);}
.maa_c01062{transform:matrix(0.354381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354381,0.000000,0.000000,0.250000,0,0);}
.m9d_c01062{transform:matrix(0.358791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358791,0.000000,0.000000,0.250000,0,0);}
.m82_c01062{transform:matrix(0.366486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366486,0.000000,0.000000,0.250000,0,0);}
.m1c_c01062{transform:matrix(0.370070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370070,0.000000,0.000000,0.250000,0,0);}
.ma_c01062{transform:matrix(0.375943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375943,0.000000,0.000000,0.250000,0,0);}
.m11_c01062{transform:matrix(0.381818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381818,0.000000,0.000000,0.250000,0,0);}
.mb6_c01062{transform:matrix(0.387692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387692,0.000000,0.000000,0.250000,0,0);}
.m24_c01062{transform:matrix(0.397481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397481,0.000000,0.000000,0.250000,0,0);}
.m13_c01062{transform:matrix(0.399384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399384,0.000000,0.000000,0.250000,0,0);}
.ma3_c01062{transform:matrix(0.403014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403014,0.000000,0.000000,0.250000,0,0);}
.m9e_c01062{transform:matrix(0.458813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458813,0.000000,0.000000,0.250000,0,0);}
.ma9_c01062{transform:matrix(0.596112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596112,0.000000,0.000000,0.250000,0,0);}
.v0_c01062{vertical-align:0.000000px;}
.v1_c01062{vertical-align:2.851200px;}
.v2_c01062{vertical-align:18.561312px;}
.ls7_c01062{letter-spacing:-2.813580px;}
.ls16_c01062{letter-spacing:-2.403601px;}
.ls1a_c01062{letter-spacing:-2.328480px;}
.ls1f_c01062{letter-spacing:-2.217600px;}
.ls18_c01062{letter-spacing:-1.929312px;}
.ls1e_c01062{letter-spacing:-1.850317px;}
.ls2_c01062{letter-spacing:0.000000px;}
.ls12_c01062{letter-spacing:0.699376px;}
.ls21_c01062{letter-spacing:1.327237px;}
.ls11_c01062{letter-spacing:1.591682px;}
.ls1b_c01062{letter-spacing:2.277000px;}
.ls1d_c01062{letter-spacing:2.643310px;}
.lsd_c01062{letter-spacing:2.702700px;}
.lsb_c01062{letter-spacing:2.725153px;}
.ls1c_c01062{letter-spacing:3.168000px;}
.ls6_c01062{letter-spacing:3.326400px;}
.ls19_c01062{letter-spacing:3.405610px;}
.ls8_c01062{letter-spacing:3.425400px;}
.ls0_c01062{letter-spacing:3.520994px;}
.ls17_c01062{letter-spacing:3.564000px;}
.lse_c01062{letter-spacing:3.643200px;}
.lsa_c01062{letter-spacing:3.713926px;}
.lsc_c01062{letter-spacing:3.742200px;}
.ls14_c01062{letter-spacing:3.794314px;}
.ls9_c01062{letter-spacing:3.801610px;}
.ls1_c01062{letter-spacing:3.834508px;}
.ls15_c01062{letter-spacing:3.861000px;}
.ls20_c01062{letter-spacing:3.880810px;}
.ls4_c01062{letter-spacing:4.019400px;}
.ls3_c01062{letter-spacing:4.088700px;}
.ls13_c01062{letter-spacing:4.316400px;}
.ls10_c01062{letter-spacing:29.937798px;}
.ls5_c01062{letter-spacing:59.875398px;}
.lsf_c01062{letter-spacing:61.300998px;}
.sc__c01062{text-shadow:none;}
.sc0_c01062{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01062{-webkit-text-stroke:0px transparent;}
.sc0_c01062{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01062{word-spacing:0.000000px;}
.ws0_c01062{word-spacing:0.182160px;}
._e_c01062{margin-left:-1.712700px;}
._2_c01062{width:5.304420px;}
._0_c01062{width:9.084240px;}
._c_c01062{width:14.031759px;}
._5_c01062{width:17.183144px;}
._9_c01062{width:22.734122px;}
._6_c01062{width:25.966116px;}
._1_c01062{width:29.823948px;}
._8_c01062{width:33.722766px;}
._7_c01062{width:36.489895px;}
._12_c01062{width:44.797500px;}
._4_c01062{width:46.227060px;}
._3_c01062{width:51.691464px;}
._f_c01062{width:77.551848px;}
._13_c01062{width:81.164160px;}
._10_c01062{width:83.747559px;}
._b_c01062{width:126.249948px;}
._d_c01062{width:168.814800px;}
._11_c01062{width:225.002448px;}
._a_c01062{width:307.152538px;}
.fc0_c01062{color:transparent;}
.fsc_c01062{font-size:22.374000px;}
.fsd_c01062{font-size:29.937798px;}
.fs0_c01062{font-size:33.264000px;}
.fse_c01062{font-size:39.204000px;}
.fs16_c01062{font-size:45.540000px;}
.fs11_c01062{font-size:50.292000px;}
.fs1a_c01062{font-size:52.866198px;}
.fs9_c01062{font-size:54.054000px;}
.fs3_c01062{font-size:59.875398px;}
.fs1c_c01062{font-size:60.192000px;}
.fsb_c01062{font-size:61.300998px;}
.fs19_c01062{font-size:63.360000px;}
.fs6_c01062{font-size:66.330000px;}
.fs4_c01062{font-size:66.528000px;}
.fs14_c01062{font-size:68.112198px;}
.fs5_c01062{font-size:68.508000px;}
.fs17_c01062{font-size:69.300000px;}
.fs13_c01062{font-size:70.092198px;}
.fs12_c01062{font-size:71.280000px;}
.fsa_c01062{font-size:72.864000px;}
.fs8_c01062{font-size:74.844000px;}
.fs18_c01062{font-size:75.636198px;}
.fs7_c01062{font-size:76.032198px;}
.fs10_c01062{font-size:77.220000px;}
.fs1b_c01062{font-size:77.616198px;}
.fs15_c01062{font-size:78.012198px;}
.fs2_c01062{font-size:80.388000px;}
.fs1_c01062{font-size:81.774000px;}
.fsf_c01062{font-size:86.328000px;}
.y0_c01062{bottom:0.000000px;}
.y1_c01062{bottom:76.500000px;}
.y23_c01062{bottom:121.087935px;}
.y22_c01062{bottom:154.228185px;}
.y21_c01062{bottom:186.665535px;}
.y1e_c01062{bottom:219.454335px;}
.y20_c01062{bottom:220.167135px;}
.y1f_c01062{bottom:224.800335px;}
.y2_c01062{bottom:249.391935px;}
.y1d_c01062{bottom:252.955935px;}
.y1c_c01062{bottom:285.031935px;}
.y1b_c01062{bottom:313.538985px;}
.y1a_c01062{bottom:317.107935px;}
.y19_c01062{bottom:348.466185px;}
.y18_c01062{bottom:380.547135px;}
.y17_c01062{bottom:412.623135px;}
.y16_c01062{bottom:444.699135px;}
.y15_c01062{bottom:491.026185px;}
.y14_c01062{bottom:502.074585px;}
.y12_c01062{bottom:509.563935px;}
.y13_c01062{bottom:512.771535px;}
.y11_c01062{bottom:525.240585px;}
.y10_c01062{bottom:541.634985px;}
.yf_c01062{bottom:574.067385px;}
.ye_c01062{bottom:605.786985px;}
.yd_c01062{bottom:638.219385px;}
.yc_c01062{bottom:669.943935px;}
.yb_c01062{bottom:702.014985px;}
.ya_c01062{bottom:734.095935px;}
.y9_c01062{bottom:766.166985px;}
.y8_c01062{bottom:798.247935px;}
.y7_c01062{bottom:829.254735px;}
.y6_c01062{bottom:862.038585px;}
.y5_c01062{bottom:893.758185px;}
.y4_c01062{bottom:926.546985px;}
.y3_c01062{bottom:1069.106985px;}
.y24_c01062{bottom:1106.172585px;}
.hf_c01062{height:19.938573px;}
.he_c01062{height:23.335383px;}
.h2_c01062{height:34.693313px;}
.h10_c01062{height:38.476582px;}
.h5_c01062{height:39.877015px;}
.hc_c01062{height:40.826465px;}
.h19_c01062{height:47.496797px;}
.h14_c01062{height:49.358848px;}
.h1b_c01062{height:51.885282px;}
.ha_c01062{height:56.376633px;}
.h1d_c01062{height:62.778375px;}
.h6_c01062{height:65.293594px;}
.h1a_c01062{height:66.082500px;}
.h11_c01062{height:69.180117px;}
.hd_c01062{height:69.386625px;}
.h17_c01062{height:71.038894px;}
.h7_c01062{height:71.451703px;}
.hb_c01062{height:71.512031px;}
.h9_c01062{height:73.455293px;}
.h15_c01062{height:74.342813px;}
.h8_c01062{height:74.621444px;}
.h13_c01062{height:75.787207px;}
.h1c_c01062{height:76.176054px;}
.h18_c01062{height:76.564706px;}
.h4_c01062{height:78.896426px;}
.h3_c01062{height:80.256709px;}
.h12_c01062{height:84.726211px;}
.h16_c01062{height:90.799137px;}
.h1_c01062{height:1110.000000px;}
.h0_c01062{height:1263.000000px;}
.w1_c01062{width:775.500000px;}
.w0_c01062{width:892.500000px;}
.x0_c01062{left:0.000000px;}
.x2_c01062{left:52.961685px;}
.x1_c01062{left:58.500000px;}
.x43_c01062{left:74.776335px;}
.x60_c01062{left:75.830685px;}
.xe_c01062{left:76.929585px;}
.x4_c01062{left:78.102735px;}
.x6c_c01062{left:87.849285px;}
.x47_c01062{left:108.649185px;}
.x44_c01062{left:110.193585px;}
.x19_c01062{left:118.984785px;}
.x3d_c01062{left:120.380685px;}
.x2a_c01062{left:121.910235px;}
.x57_c01062{left:130.305435px;}
.x5_c01062{left:132.592335px;}
.x71_c01062{left:141.606285px;}
.x36_c01062{left:143.734785px;}
.x2b_c01062{left:152.521035px;}
.x40_c01062{left:154.431735px;}
.xf_c01062{left:156.094935px;}
.x63_c01062{left:163.178385px;}
.x58_c01062{left:164.405985px;}
.x1a_c01062{left:165.856335px;}
.x50_c01062{left:175.088085px;}
.x61_c01062{left:176.152335px;}
.x1b_c01062{left:185.641485px;}
.x59_c01062{left:196.313685px;}
.x45_c01062{left:198.956985px;}
.x6a_c01062{left:211.094385px;}
.x5b_c01062{left:219.682635px;}
.x1c_c01062{left:221.118135px;}
.x37_c01062{left:230.216235px;}
.x41_c01062{left:231.424035px;}
.x6_c01062{left:232.839735px;}
.x2c_c01062{left:242.066535px;}
.x72_c01062{left:252.817935px;}
.x4c_c01062{left:254.228685px;}
.x77_c01062{left:262.980285px;}
.x7_c01062{left:264.910785px;}
.x23_c01062{left:266.232435px;}
.x55_c01062{left:276.003735px;}
.x10_c01062{left:277.265985px;}
.x78_c01062{left:286.205685px;}
.x32_c01062{left:287.755035px;}
.x6b_c01062{left:289.279635px;}
.x11_c01062{left:297.551085px;}
.x38_c01062{left:299.491485px;}
.x62_c01062{left:308.030235px;}
.x5c_c01062{left:309.099435px;}
.x8_c01062{left:310.193385px;}
.x66_c01062{left:318.930135px;}
.x48_c01062{left:320.147835px;}
.x39_c01062{left:331.042785px;}
.x12_c01062{left:332.577285px;}
.x3e_c01062{left:341.056635px;}
.x2d_c01062{left:342.997035px;}
.x49_c01062{left:352.550535px;}
.x33_c01062{left:364.539435px;}
.x9_c01062{left:365.816535px;}
.x51_c01062{left:375.211635px;}
.x13_c01062{left:386.319435px;}
.x24_c01062{left:397.293585px;}
.x2e_c01062{left:398.936985px;}
.x4d_c01062{left:409.564635px;}
.x6d_c01062{left:419.924985px;}
.x3a_c01062{left:421.009035px;}
.x1d_c01062{left:431.740635px;}
.x25_c01062{left:442.011885px;}
.x73_c01062{left:451.847535px;}
.x67_c01062{left:452.995935px;}
.x1e_c01062{left:463.979985px;}
.x14_c01062{left:465.568935px;}
.x64_c01062{left:473.592885px;}
.x26_c01062{left:474.671985px;}
.x46_c01062{left:475.850085px;}
.x3b_c01062{left:486.497535px;}
.x79_c01062{left:495.853035px;}
.x15_c01062{left:497.961735px;}
.x42_c01062{left:507.460785px;}
.x4e_c01062{left:508.693335px;}
.x6e_c01062{left:516.019335px;}
.x3f_c01062{left:519.360585px;}
.xa_c01062{left:521.429685px;}
.x16_c01062{left:530.265435px;}
.x2f_c01062{left:531.493035px;}
.x4f_c01062{left:541.091085px;}
.x4a_c01062{left:542.199885px;}
.x74_c01062{left:551.852385px;}
.x27_c01062{left:553.075035px;}
.xb_c01062{left:554.297685px;}
.x5d_c01062{left:562.663185px;}
.x1f_c01062{left:564.029385px;}
.x4b_c01062{left:574.241235px;}
.x5a_c01062{left:583.740285px;}
.x5e_c01062{left:584.987685px;}
.x6f_c01062{left:586.091535px;}
.x34_c01062{left:596.209335px;}
.x17_c01062{left:608.312085px;}
.x75_c01062{left:616.880535px;}
.x3c_c01062{left:618.855585px;}
.x69_c01062{left:627.923985px;}
.x5f_c01062{left:629.809935px;}
.x20_c01062{left:630.958335px;}
.x52_c01062{left:640.957335px;}
.x28_c01062{left:642.016635px;}
.x68_c01062{left:650.857335px;}
.x21_c01062{left:651.936435px;}
.xc_c01062{left:653.767935px;}
.x30_c01062{left:663.400635px;}
.x76_c01062{left:665.499435px;}
.x3_c01062{left:669.400035px;}
.x65_c01062{left:673.048185px;}
.xd_c01062{left:674.741085px;}
.x22_c01062{left:684.947985px;}
.x35_c01062{left:686.131035px;}
.x31_c01062{left:695.446935px;}
.x18_c01062{left:697.535835px;}
.x54_c01062{left:704.683635px;}
.x29_c01062{left:707.173485px;}
.x56_c01062{left:709.064385px;}
.x53_c01062{left:717.385335px;}
.x70_c01062{left:728.676285px;}
.x7a_c01062{left:761.474985px;}
@media print{
.v0_c01062{vertical-align:0.000000pt;}
.v1_c01062{vertical-align:2.534400pt;}
.v2_c01062{vertical-align:16.498944pt;}
.ls7_c01062{letter-spacing:-2.500960pt;}
.ls16_c01062{letter-spacing:-2.136534pt;}
.ls1a_c01062{letter-spacing:-2.069760pt;}
.ls1f_c01062{letter-spacing:-1.971200pt;}
.ls18_c01062{letter-spacing:-1.714944pt;}
.ls1e_c01062{letter-spacing:-1.644726pt;}
.ls2_c01062{letter-spacing:0.000000pt;}
.ls12_c01062{letter-spacing:0.621667pt;}
.ls21_c01062{letter-spacing:1.179766pt;}
.ls11_c01062{letter-spacing:1.414829pt;}
.ls1b_c01062{letter-spacing:2.024000pt;}
.ls1d_c01062{letter-spacing:2.349609pt;}
.lsd_c01062{letter-spacing:2.402400pt;}
.lsb_c01062{letter-spacing:2.422358pt;}
.ls1c_c01062{letter-spacing:2.816000pt;}
.ls6_c01062{letter-spacing:2.956800pt;}
.ls19_c01062{letter-spacing:3.027209pt;}
.ls8_c01062{letter-spacing:3.044800pt;}
.ls0_c01062{letter-spacing:3.129773pt;}
.ls17_c01062{letter-spacing:3.168000pt;}
.lse_c01062{letter-spacing:3.238400pt;}
.lsa_c01062{letter-spacing:3.301267pt;}
.lsc_c01062{letter-spacing:3.326400pt;}
.ls14_c01062{letter-spacing:3.372723pt;}
.ls9_c01062{letter-spacing:3.379209pt;}
.ls1_c01062{letter-spacing:3.408451pt;}
.ls15_c01062{letter-spacing:3.432000pt;}
.ls20_c01062{letter-spacing:3.449609pt;}
.ls4_c01062{letter-spacing:3.572800pt;}
.ls3_c01062{letter-spacing:3.634400pt;}
.ls13_c01062{letter-spacing:3.836800pt;}
.ls10_c01062{letter-spacing:26.611376pt;}
.ls5_c01062{letter-spacing:53.222576pt;}
.lsf_c01062{letter-spacing:54.489776pt;}
.ws1_c01062{word-spacing:0.000000pt;}
.ws0_c01062{word-spacing:0.161920pt;}
._e_c01062{margin-left:-1.522400pt;}
._2_c01062{width:4.715040pt;}
._0_c01062{width:8.074880pt;}
._c_c01062{width:12.472675pt;}
._5_c01062{width:15.273906pt;}
._9_c01062{width:20.208109pt;}
._6_c01062{width:23.080992pt;}
._1_c01062{width:26.510176pt;}
._8_c01062{width:29.975792pt;}
._7_c01062{width:32.435462pt;}
._12_c01062{width:39.820000pt;}
._4_c01062{width:41.090720pt;}
._3_c01062{width:45.947968pt;}
._f_c01062{width:68.934976pt;}
._13_c01062{width:72.145920pt;}
._10_c01062{width:74.442275pt;}
._b_c01062{width:112.222176pt;}
._d_c01062{width:150.057600pt;}
._11_c01062{width:200.002176pt;}
._a_c01062{width:273.024478pt;}
.fsc_c01062{font-size:19.888000pt;}
.fsd_c01062{font-size:26.611376pt;}
.fs0_c01062{font-size:29.568000pt;}
.fse_c01062{font-size:34.848000pt;}
.fs16_c01062{font-size:40.480000pt;}
.fs11_c01062{font-size:44.704000pt;}
.fs1a_c01062{font-size:46.992176pt;}
.fs9_c01062{font-size:48.048000pt;}
.fs3_c01062{font-size:53.222576pt;}
.fs1c_c01062{font-size:53.504000pt;}
.fsb_c01062{font-size:54.489776pt;}
.fs19_c01062{font-size:56.320000pt;}
.fs6_c01062{font-size:58.960000pt;}
.fs4_c01062{font-size:59.136000pt;}
.fs14_c01062{font-size:60.544176pt;}
.fs5_c01062{font-size:60.896000pt;}
.fs17_c01062{font-size:61.600000pt;}
.fs13_c01062{font-size:62.304176pt;}
.fs12_c01062{font-size:63.360000pt;}
.fsa_c01062{font-size:64.768000pt;}
.fs8_c01062{font-size:66.528000pt;}
.fs18_c01062{font-size:67.232176pt;}
.fs7_c01062{font-size:67.584176pt;}
.fs10_c01062{font-size:68.640000pt;}
.fs1b_c01062{font-size:68.992176pt;}
.fs15_c01062{font-size:69.344176pt;}
.fs2_c01062{font-size:71.456000pt;}
.fs1_c01062{font-size:72.688000pt;}
.fsf_c01062{font-size:76.736000pt;}
.y0_c01062{bottom:0.000000pt;}
.y1_c01062{bottom:68.000000pt;}
.y23_c01062{bottom:107.633720pt;}
.y22_c01062{bottom:137.091720pt;}
.y21_c01062{bottom:165.924920pt;}
.y1e_c01062{bottom:195.070520pt;}
.y20_c01062{bottom:195.704120pt;}
.y1f_c01062{bottom:199.822520pt;}
.y2_c01062{bottom:221.681720pt;}
.y1d_c01062{bottom:224.849720pt;}
.y1c_c01062{bottom:253.361720pt;}
.y1b_c01062{bottom:278.701320pt;}
.y1a_c01062{bottom:281.873720pt;}
.y19_c01062{bottom:309.747720pt;}
.y18_c01062{bottom:338.264120pt;}
.y17_c01062{bottom:366.776120pt;}
.y16_c01062{bottom:395.288120pt;}
.y15_c01062{bottom:436.467720pt;}
.y14_c01062{bottom:446.288520pt;}
.y12_c01062{bottom:452.945720pt;}
.y13_c01062{bottom:455.796920pt;}
.y11_c01062{bottom:466.880520pt;}
.y10_c01062{bottom:481.453320pt;}
.yf_c01062{bottom:510.282120pt;}
.ye_c01062{bottom:538.477320pt;}
.yd_c01062{bottom:567.306120pt;}
.yc_c01062{bottom:595.505720pt;}
.yb_c01062{bottom:624.013320pt;}
.ya_c01062{bottom:652.529720pt;}
.y9_c01062{bottom:681.037320pt;}
.y8_c01062{bottom:709.553720pt;}
.y7_c01062{bottom:737.115320pt;}
.y6_c01062{bottom:766.256520pt;}
.y5_c01062{bottom:794.451720pt;}
.y4_c01062{bottom:823.597320pt;}
.y3_c01062{bottom:950.317320pt;}
.y24_c01062{bottom:983.264520pt;}
.hf_c01062{height:17.723176pt;}
.he_c01062{height:20.742563pt;}
.h2_c01062{height:30.838500pt;}
.h10_c01062{height:34.201406pt;}
.h5_c01062{height:35.446236pt;}
.hc_c01062{height:36.290191pt;}
.h19_c01062{height:42.219375pt;}
.h14_c01062{height:43.874531pt;}
.h1b_c01062{height:46.120251pt;}
.ha_c01062{height:50.112563pt;}
.h1d_c01062{height:55.803000pt;}
.h6_c01062{height:58.038750pt;}
.h1a_c01062{height:58.740000pt;}
.h11_c01062{height:61.493438pt;}
.hd_c01062{height:61.677000pt;}
.h17_c01062{height:63.145684pt;}
.h7_c01062{height:63.512625pt;}
.hb_c01062{height:63.566250pt;}
.h9_c01062{height:65.293594pt;}
.h15_c01062{height:66.082500pt;}
.h8_c01062{height:66.330173pt;}
.h13_c01062{height:67.366406pt;}
.h1c_c01062{height:67.712048pt;}
.h18_c01062{height:68.057516pt;}
.h4_c01062{height:70.130156pt;}
.h3_c01062{height:71.339297pt;}
.h12_c01062{height:75.312188pt;}
.h16_c01062{height:80.710344pt;}
.h1_c01062{height:986.666667pt;}
.h0_c01062{height:1122.666667pt;}
.w1_c01062{width:689.333333pt;}
.w0_c01062{width:793.333333pt;}
.x0_c01062{left:0.000000pt;}
.x2_c01062{left:47.077053pt;}
.x1_c01062{left:52.000000pt;}
.x43_c01062{left:66.467853pt;}
.x60_c01062{left:67.405053pt;}
.xe_c01062{left:68.381853pt;}
.x4_c01062{left:69.424653pt;}
.x6c_c01062{left:78.088253pt;}
.x47_c01062{left:96.577053pt;}
.x44_c01062{left:97.949853pt;}
.x19_c01062{left:105.764253pt;}
.x3d_c01062{left:107.005053pt;}
.x2a_c01062{left:108.364653pt;}
.x57_c01062{left:115.827053pt;}
.x5_c01062{left:117.859853pt;}
.x71_c01062{left:125.872253pt;}
.x36_c01062{left:127.764253pt;}
.x2b_c01062{left:135.574253pt;}
.x40_c01062{left:137.272653pt;}
.xf_c01062{left:138.751053pt;}
.x63_c01062{left:145.047453pt;}
.x58_c01062{left:146.138653pt;}
.x1a_c01062{left:147.427853pt;}
.x50_c01062{left:155.633853pt;}
.x61_c01062{left:156.579853pt;}
.x1b_c01062{left:165.014653pt;}
.x59_c01062{left:174.501053pt;}
.x45_c01062{left:176.850653pt;}
.x6a_c01062{left:187.639453pt;}
.x5b_c01062{left:195.273453pt;}
.x1c_c01062{left:196.549453pt;}
.x37_c01062{left:204.636653pt;}
.x41_c01062{left:205.710253pt;}
.x6_c01062{left:206.968653pt;}
.x2c_c01062{left:215.170253pt;}
.x72_c01062{left:224.727053pt;}
.x4c_c01062{left:225.981053pt;}
.x77_c01062{left:233.760253pt;}
.x7_c01062{left:235.476253pt;}
.x23_c01062{left:236.651053pt;}
.x55_c01062{left:245.336653pt;}
.x10_c01062{left:246.458653pt;}
.x78_c01062{left:254.405053pt;}
.x32_c01062{left:255.782253pt;}
.x6b_c01062{left:257.137453pt;}
.x11_c01062{left:264.489853pt;}
.x38_c01062{left:266.214653pt;}
.x62_c01062{left:273.804653pt;}
.x5c_c01062{left:274.755053pt;}
.x8_c01062{left:275.727453pt;}
.x66_c01062{left:283.493453pt;}
.x48_c01062{left:284.575853pt;}
.x39_c01062{left:294.260253pt;}
.x12_c01062{left:295.624253pt;}
.x3e_c01062{left:303.161453pt;}
.x2d_c01062{left:304.886253pt;}
.x49_c01062{left:313.378253pt;}
.x33_c01062{left:324.035053pt;}
.x9_c01062{left:325.170253pt;}
.x51_c01062{left:333.521453pt;}
.x13_c01062{left:343.395053pt;}
.x24_c01062{left:353.149853pt;}
.x2e_c01062{left:354.610653pt;}
.x4d_c01062{left:364.057453pt;}
.x6d_c01062{left:373.266653pt;}
.x3a_c01062{left:374.230253pt;}
.x1d_c01062{left:383.769453pt;}
.x25_c01062{left:392.899453pt;}
.x73_c01062{left:401.642253pt;}
.x67_c01062{left:402.663053pt;}
.x1e_c01062{left:412.426653pt;}
.x14_c01062{left:413.839053pt;}
.x64_c01062{left:420.971453pt;}
.x26_c01062{left:421.930653pt;}
.x46_c01062{left:422.977853pt;}
.x3b_c01062{left:432.442253pt;}
.x79_c01062{left:440.758253pt;}
.x15_c01062{left:442.632653pt;}
.x42_c01062{left:451.076253pt;}
.x4e_c01062{left:452.171853pt;}
.x6e_c01062{left:458.683853pt;}
.x3f_c01062{left:461.653853pt;}
.xa_c01062{left:463.493053pt;}
.x16_c01062{left:471.347053pt;}
.x2f_c01062{left:472.438253pt;}
.x4f_c01062{left:480.969853pt;}
.x4a_c01062{left:481.955453pt;}
.x74_c01062{left:490.535453pt;}
.x27_c01062{left:491.622253pt;}
.xb_c01062{left:492.709053pt;}
.x5d_c01062{left:500.145053pt;}
.x1f_c01062{left:501.359453pt;}
.x4b_c01062{left:510.436653pt;}
.x5a_c01062{left:518.880253pt;}
.x5e_c01062{left:519.989053pt;}
.x6f_c01062{left:520.970253pt;}
.x34_c01062{left:529.963853pt;}
.x17_c01062{left:540.721853pt;}
.x75_c01062{left:548.338253pt;}
.x3c_c01062{left:550.093853pt;}
.x69_c01062{left:558.154653pt;}
.x5f_c01062{left:559.831053pt;}
.x20_c01062{left:560.851853pt;}
.x52_c01062{left:569.739853pt;}
.x28_c01062{left:570.681453pt;}
.x68_c01062{left:578.539853pt;}
.x21_c01062{left:579.499053pt;}
.xc_c01062{left:581.127053pt;}
.x30_c01062{left:589.689453pt;}
.x76_c01062{left:591.555053pt;}
.x3_c01062{left:595.022253pt;}
.x65_c01062{left:598.265053pt;}
.xd_c01062{left:599.769853pt;}
.x22_c01062{left:608.842653pt;}
.x35_c01062{left:609.894253pt;}
.x31_c01062{left:618.175053pt;}
.x18_c01062{left:620.031853pt;}
.x54_c01062{left:626.385453pt;}
.x29_c01062{left:628.598653pt;}
.x56_c01062{left:630.279453pt;}
.x53_c01062{left:637.675853pt;}
.x70_c01062{left:647.712253pt;}
.x7a_c01062{left:676.866653pt;}
}





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

.ir_c01063:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01063{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01063;src:url('chunks/assets/font_f334f825189110f0297d461e.woff2')format("woff");}.ff1_c01063{font-family:ff1_c01063;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01063;src:url('chunks/assets/font_fa7d8807aa8ffc76b1935417.woff2')format("woff");}.ff2_c01063{font-family:ff2_c01063;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01063;src:url('chunks/assets/font_ab51ba12798ddca62dc3239d.woff2')format("woff");}.ff3_c01063{font-family:ff3_c01063;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01063;src:url('chunks/assets/font_53f7e534faad0568cccad96c.woff2')format("woff");}.ff4_c01063{font-family:ff4_c01063;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01063;src:url('chunks/assets/font_669fe55067a2563ac2f80814.woff2')format("woff");}.ff5_c01063{font-family:ff5_c01063;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m60_c01063{transform:matrix(0.029070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.029070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.029070,0.000000,0.000000,0.250000,0,0);}
.m46_c01063{transform:matrix(0.043751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043751,0.000000,0.000000,0.250000,0,0);}
.m62_c01063{transform:matrix(0.069767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.069767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.069767,0.000000,0.000000,0.250000,0,0);}
.m63_c01063{transform:matrix(0.078165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078165,0.000000,0.000000,0.250000,0,0);}
.m61_c01063{transform:matrix(0.087209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087209,0.000000,0.000000,0.250000,0,0);}
.m65_c01063{transform:matrix(0.093457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093457,0.000000,0.000000,0.250000,0,0);}
.m45_c01063{transform:matrix(0.106250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106250,0.000000,0.000000,0.250000,0,0);}
.m67_c01063{transform:matrix(0.118460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118460,0.000000,0.000000,0.250000,0,0);}
.m5f_c01063{transform:matrix(0.120155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120155,0.000000,0.000000,0.250000,0,0);}
.m3b_c01063{transform:matrix(0.130952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130952,0.000000,0.000000,0.250000,0,0);}
.m68_c01063{transform:matrix(0.133650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133650,0.000000,0.000000,0.250000,0,0);}
.m66_c01063{transform:matrix(0.133896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133896,0.000000,0.000000,0.250000,0,0);}
.mb3_c01063{transform:matrix(0.134136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134136,0.000000,0.000000,0.250000,0,0);}
.mb_c01063{transform:matrix(0.144805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144805,0.000000,0.000000,0.250000,0,0);}
.m78_c01063{transform:matrix(0.154796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154796,0.000000,0.000000,0.250000,0,0);}
.ma7_c01063{transform:matrix(0.155870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155870,0.000000,0.000000,0.250000,0,0);}
.m3d_c01063{transform:matrix(0.166367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166367,0.000000,0.000000,0.250000,0,0);}
.m1e_c01063{transform:matrix(0.167614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167614,0.000000,0.000000,0.250000,0,0);}
.m1f_c01063{transform:matrix(0.170455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170455,0.000000,0.000000,0.250000,0,0);}
.ma4_c01063{transform:matrix(0.170731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170731,0.000000,0.000000,0.250000,0,0);}
.maf_c01063{transform:matrix(0.171313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171313,0.000000,0.000000,0.250000,0,0);}
.m47_c01063{transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);}
.m2f_c01063{transform:matrix(0.172619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172619,0.000000,0.000000,0.250000,0,0);}
.m95_c01063{transform:matrix(0.176744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176744,0.000000,0.000000,0.250000,0,0);}
.m1d_c01063{transform:matrix(0.177274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177274,0.000000,0.000000,0.250000,0,0);}
.m1_c01063{transform:matrix(0.181548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181548,0.000000,0.000000,0.250000,0,0);}
.m74_c01063{transform:matrix(0.190275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190275,0.000000,0.000000,0.250000,0,0);}
.m7a_c01063{transform:matrix(0.194768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194768,0.000000,0.000000,0.250000,0,0);}
.ma6_c01063{transform:matrix(0.197368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197368,0.000000,0.000000,0.250000,0,0);}
.ma3_c01063{transform:matrix(0.201219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201219,0.000000,0.000000,0.250000,0,0);}
.mb0_c01063{transform:matrix(0.220828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220828,0.000000,0.000000,0.250000,0,0);}
.m73_c01063{transform:matrix(0.226744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226744,0.000000,0.000000,0.250000,0,0);}
.m3c_c01063{transform:matrix(0.227677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227677,0.000000,0.000000,0.250000,0,0);}
.m1c_c01063{transform:matrix(0.246084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246084,0.000000,0.000000,0.250000,0,0);}
.m11_c01063{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m94_c01063{transform:matrix(0.250440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250440,0.000000,0.000000,0.250000,0,0);}
.m2_c01063{transform:matrix(0.250825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250825,0.000000,0.000000,0.250000,0,0);}
.m4d_c01063{transform:matrix(0.251385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251385,0.000000,0.000000,0.250000,0,0);}
.m8b_c01063{transform:matrix(0.251864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251864,0.000000,0.000000,0.250000,0,0);}
.m21_c01063{transform:matrix(0.252209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252209,0.000000,0.000000,0.250000,0,0);}
.m20_c01063{transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);}
.m8f_c01063{transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);}
.m9a_c01063{transform:matrix(0.255091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255091,0.000000,0.000000,0.250000,0,0);}
.m44_c01063{transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);}
.m7b_c01063{transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);}
.mc_c01063{transform:matrix(0.257703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257703,0.000000,0.000000,0.250000,0,0);}
.m50_c01063{transform:matrix(0.258099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258099,0.000000,0.000000,0.250000,0,0);}
.m3f_c01063{transform:matrix(0.258186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258186,0.000000,0.000000,0.250000,0,0);}
.m48_c01063{transform:matrix(0.260353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260353,0.000000,0.000000,0.250000,0,0);}
.m5_c01063{transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);}
.maa_c01063{transform:matrix(0.261612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261612,0.000000,0.000000,0.250000,0,0);}
.m32_c01063{transform:matrix(0.261981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261981,0.000000,0.000000,0.250000,0,0);}
.m64_c01063{transform:matrix(0.264064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264064,0.000000,0.000000,0.250000,0,0);}
.m9f_c01063{transform:matrix(0.264827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264827,0.000000,0.000000,0.250000,0,0);}
.m8_c01063{transform:matrix(0.264852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264852,0.000000,0.000000,0.250000,0,0);}
.m17_c01063{transform:matrix(0.265606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265606,0.000000,0.000000,0.250000,0,0);}
.me_c01063{transform:matrix(0.266567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266567,0.000000,0.000000,0.250000,0,0);}
.m9b_c01063{transform:matrix(0.267547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267547,0.000000,0.000000,0.250000,0,0);}
.m53_c01063{transform:matrix(0.267802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267802,0.000000,0.000000,0.250000,0,0);}
.m4_c01063{transform:matrix(0.267947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267947,0.000000,0.000000,0.250000,0,0);}
.m1a_c01063{transform:matrix(0.268128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268128,0.000000,0.000000,0.250000,0,0);}
.m99_c01063{transform:matrix(0.268627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268627,0.000000,0.000000,0.250000,0,0);}
.m4c_c01063{transform:matrix(0.269206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269206,0.000000,0.000000,0.250000,0,0);}
.m5e_c01063{transform:matrix(0.269341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269341,0.000000,0.000000,0.250000,0,0);}
.m75_c01063{transform:matrix(0.269495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269495,0.000000,0.000000,0.250000,0,0);}
.m30_c01063{transform:matrix(0.269522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269522,0.000000,0.000000,0.250000,0,0);}
.m79_c01063{transform:matrix(0.271479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271479,0.000000,0.000000,0.250000,0,0);}
.m56_c01063{transform:matrix(0.271675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271675,0.000000,0.000000,0.250000,0,0);}
.m22_c01063{transform:matrix(0.271857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271857,0.000000,0.000000,0.250000,0,0);}
.m29_c01063{transform:matrix(0.272325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272325,0.000000,0.000000,0.250000,0,0);}
.m2d_c01063{transform:matrix(0.272967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272967,0.000000,0.000000,0.250000,0,0);}
.m10_c01063{transform:matrix(0.272984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272984,0.000000,0.000000,0.250000,0,0);}
.m6f_c01063{transform:matrix(0.273738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273738,0.000000,0.000000,0.250000,0,0);}
.m37_c01063{transform:matrix(0.274297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274297,0.000000,0.000000,0.250000,0,0);}
.m70_c01063{transform:matrix(0.274382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274382,0.000000,0.000000,0.250000,0,0);}
.m6e_c01063{transform:matrix(0.274521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274521,0.000000,0.000000,0.250000,0,0);}
.m27_c01063{transform:matrix(0.274704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274704,0.000000,0.000000,0.250000,0,0);}
.m19_c01063{transform:matrix(0.274932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274932,0.000000,0.000000,0.250000,0,0);}
.ma5_c01063{transform:matrix(0.275218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275218,0.000000,0.000000,0.250000,0,0);}
.m3_c01063{transform:matrix(0.275369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275369,0.000000,0.000000,0.250000,0,0);}
.m69_c01063{transform:matrix(0.276903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276903,0.000000,0.000000,0.250000,0,0);}
.m8e_c01063{transform:matrix(0.277465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277465,0.000000,0.000000,0.250000,0,0);}
.mab_c01063{transform:matrix(0.277797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277797,0.000000,0.000000,0.250000,0,0);}
.m93_c01063{transform:matrix(0.277958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277958,0.000000,0.000000,0.250000,0,0);}
.ma2_c01063{transform:matrix(0.278131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278131,0.000000,0.000000,0.250000,0,0);}
.m7_c01063{transform:matrix(0.278285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278285,0.000000,0.000000,0.250000,0,0);}
.m55_c01063{transform:matrix(0.278543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278543,0.000000,0.000000,0.250000,0,0);}
.mb5_c01063{transform:matrix(0.279406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279406,0.000000,0.000000,0.250000,0,0);}
.m2b_c01063{transform:matrix(0.281659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281659,0.000000,0.000000,0.250000,0,0);}
.m76_c01063{transform:matrix(0.281712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281712,0.000000,0.000000,0.250000,0,0);}
.m31_c01063{transform:matrix(0.281999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281999,0.000000,0.000000,0.250000,0,0);}
.m84_c01063{transform:matrix(0.283339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283339,0.000000,0.000000,0.250000,0,0);}
.m87_c01063{transform:matrix(0.283526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283526,0.000000,0.000000,0.250000,0,0);}
.m43_c01063{transform:matrix(0.283737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283737,0.000000,0.000000,0.250000,0,0);}
.ma1_c01063{transform:matrix(0.283785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283785,0.000000,0.000000,0.250000,0,0);}
.m33_c01063{transform:matrix(0.284351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284351,0.000000,0.000000,0.250000,0,0);}
.m2e_c01063{transform:matrix(0.285152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285152,0.000000,0.000000,0.250000,0,0);}
.m4b_c01063{transform:matrix(0.285229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285229,0.000000,0.000000,0.250000,0,0);}
.m77_c01063{transform:matrix(0.285270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285270,0.000000,0.000000,0.250000,0,0);}
.m97_c01063{transform:matrix(0.286528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286528,0.000000,0.000000,0.250000,0,0);}
.ma_c01063{transform:matrix(0.286788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286788,0.000000,0.000000,0.250000,0,0);}
.mad_c01063{transform:matrix(0.287355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287355,0.000000,0.000000,0.250000,0,0);}
.m85_c01063{transform:matrix(0.287357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287357,0.000000,0.000000,0.250000,0,0);}
.m1b_c01063{transform:matrix(0.287578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287578,0.000000,0.000000,0.250000,0,0);}
.mb4_c01063{transform:matrix(0.287740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287740,0.000000,0.000000,0.250000,0,0);}
.m3e_c01063{transform:matrix(0.288184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288184,0.000000,0.000000,0.250000,0,0);}
.m38_c01063{transform:matrix(0.288816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288816,0.000000,0.000000,0.250000,0,0);}
.m9c_c01063{transform:matrix(0.289881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289881,0.000000,0.000000,0.250000,0,0);}
.m82_c01063{transform:matrix(0.289929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289929,0.000000,0.000000,0.250000,0,0);}
.mb6_c01063{transform:matrix(0.289985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289985,0.000000,0.000000,0.250000,0,0);}
.m91_c01063{transform:matrix(0.290466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290466,0.000000,0.000000,0.250000,0,0);}
.m57_c01063{transform:matrix(0.290551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290551,0.000000,0.000000,0.250000,0,0);}
.m26_c01063{transform:matrix(0.290882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290882,0.000000,0.000000,0.250000,0,0);}
.m2a_c01063{transform:matrix(0.291352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291352,0.000000,0.000000,0.250000,0,0);}
.m81_c01063{transform:matrix(0.291805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291805,0.000000,0.000000,0.250000,0,0);}
.m0_c01063{transform:matrix(0.291809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291809,0.000000,0.000000,0.250000,0,0);}
.m7d_c01063{transform:matrix(0.293115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293115,0.000000,0.000000,0.250000,0,0);}
.mf_c01063{transform:matrix(0.293261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293261,0.000000,0.000000,0.250000,0,0);}
.m98_c01063{transform:matrix(0.293700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293700,0.000000,0.000000,0.250000,0,0);}
.m16_c01063{transform:matrix(0.293838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293838,0.000000,0.000000,0.250000,0,0);}
.m5b_c01063{transform:matrix(0.293887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293887,0.000000,0.000000,0.250000,0,0);}
.m23_c01063{transform:matrix(0.294970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294970,0.000000,0.000000,0.250000,0,0);}
.m51_c01063{transform:matrix(0.295212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295212,0.000000,0.000000,0.250000,0,0);}
.m89_c01063{transform:matrix(0.296368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296368,0.000000,0.000000,0.250000,0,0);}
.m96_c01063{transform:matrix(0.297065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297065,0.000000,0.000000,0.250000,0,0);}
.m7f_c01063{transform:matrix(0.297440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297440,0.000000,0.000000,0.250000,0,0);}
.m5a_c01063{transform:matrix(0.299095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299095,0.000000,0.000000,0.250000,0,0);}
.m90_c01063{transform:matrix(0.300719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300719,0.000000,0.000000,0.250000,0,0);}
.m49_c01063{transform:matrix(0.300745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300745,0.000000,0.000000,0.250000,0,0);}
.m42_c01063{transform:matrix(0.302831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302831,0.000000,0.000000,0.250000,0,0);}
.m24_c01063{transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303032,0.000000,0.000000,0.250000,0,0);}
.m13_c01063{transform:matrix(0.303969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303969,0.000000,0.000000,0.250000,0,0);}
.m2c_c01063{transform:matrix(0.304578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304578,0.000000,0.000000,0.250000,0,0);}
.mae_c01063{transform:matrix(0.305031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305031,0.000000,0.000000,0.250000,0,0);}
.m6c_c01063{transform:matrix(0.305423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305423,0.000000,0.000000,0.250000,0,0);}
.m83_c01063{transform:matrix(0.305718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305718,0.000000,0.000000,0.250000,0,0);}
.md_c01063{transform:matrix(0.305808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305808,0.000000,0.000000,0.250000,0,0);}
.m71_c01063{transform:matrix(0.305905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305905,0.000000,0.000000,0.250000,0,0);}
.m6_c01063{transform:matrix(0.306455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306455,0.000000,0.000000,0.250000,0,0);}
.m34_c01063{transform:matrix(0.307283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307283,0.000000,0.000000,0.250000,0,0);}
.m5d_c01063{transform:matrix(0.308345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308345,0.000000,0.000000,0.250000,0,0);}
.m41_c01063{transform:matrix(0.309274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309274,0.000000,0.000000,0.250000,0,0);}
.mb2_c01063{transform:matrix(0.309865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309865,0.000000,0.000000,0.250000,0,0);}
.m7e_c01063{transform:matrix(0.310639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310639,0.000000,0.000000,0.250000,0,0);}
.m52_c01063{transform:matrix(0.310853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310853,0.000000,0.000000,0.250000,0,0);}
.m4e_c01063{transform:matrix(0.310880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310880,0.000000,0.000000,0.250000,0,0);}
.m4f_c01063{transform:matrix(0.311315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311315,0.000000,0.000000,0.250000,0,0);}
.ma9_c01063{transform:matrix(0.312284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312284,0.000000,0.000000,0.250000,0,0);}
.m14_c01063{transform:matrix(0.312471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312471,0.000000,0.000000,0.250000,0,0);}
.m6a_c01063{transform:matrix(0.312492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312492,0.000000,0.000000,0.250000,0,0);}
.m18_c01063{transform:matrix(0.312561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312561,0.000000,0.000000,0.250000,0,0);}
.m40_c01063{transform:matrix(0.314459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314459,0.000000,0.000000,0.250000,0,0);}
.m9d_c01063{transform:matrix(0.315001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315001,0.000000,0.000000,0.250000,0,0);}
.m58_c01063{transform:matrix(0.315194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315194,0.000000,0.000000,0.250000,0,0);}
.m72_c01063{transform:matrix(0.315239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315239,0.000000,0.000000,0.250000,0,0);}
.m36_c01063{transform:matrix(0.317524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317524,0.000000,0.000000,0.250000,0,0);}
.m7c_c01063{transform:matrix(0.317866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317866,0.000000,0.000000,0.250000,0,0);}
.mb1_c01063{transform:matrix(0.318193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318193,0.000000,0.000000,0.250000,0,0);}
.m9e_c01063{transform:matrix(0.319440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319440,0.000000,0.000000,0.250000,0,0);}
.ma8_c01063{transform:matrix(0.320392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320392,0.000000,0.000000,0.250000,0,0);}
.m5c_c01063{transform:matrix(0.320429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320429,0.000000,0.000000,0.250000,0,0);}
.m12_c01063{transform:matrix(0.321647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321647,0.000000,0.000000,0.250000,0,0);}
.mac_c01063{transform:matrix(0.321788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321788,0.000000,0.000000,0.250000,0,0);}
.m88_c01063{transform:matrix(0.322037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322037,0.000000,0.000000,0.250000,0,0);}
.m3a_c01063{transform:matrix(0.322947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322947,0.000000,0.000000,0.250000,0,0);}
.ma0_c01063{transform:matrix(0.325971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325971,0.000000,0.000000,0.250000,0,0);}
.m6d_c01063{transform:matrix(0.326105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326105,0.000000,0.000000,0.250000,0,0);}
.m4a_c01063{transform:matrix(0.329425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329425,0.000000,0.000000,0.250000,0,0);}
.m15_c01063{transform:matrix(0.331034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331034,0.000000,0.000000,0.250000,0,0);}
.m28_c01063{transform:matrix(0.331827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331827,0.000000,0.000000,0.250000,0,0);}
.m8a_c01063{transform:matrix(0.333044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333044,0.000000,0.000000,0.250000,0,0);}
.m25_c01063{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m6b_c01063{transform:matrix(0.336112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336112,0.000000,0.000000,0.250000,0,0);}
.m80_c01063{transform:matrix(0.336704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336704,0.000000,0.000000,0.250000,0,0);}
.m8c_c01063{transform:matrix(0.339918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339918,0.000000,0.000000,0.250000,0,0);}
.m59_c01063{transform:matrix(0.341719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341719,0.000000,0.000000,0.250000,0,0);}
.m8d_c01063{transform:matrix(0.344094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344094,0.000000,0.000000,0.250000,0,0);}
.m39_c01063{transform:matrix(0.356405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356405,0.000000,0.000000,0.250000,0,0);}
.m86_c01063{transform:matrix(0.358891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358891,0.000000,0.000000,0.250000,0,0);}
.m92_c01063{transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);}
.m9_c01063{transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);}
.m54_c01063{transform:matrix(0.376256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376256,0.000000,0.000000,0.250000,0,0);}
.m35_c01063{transform:matrix(0.389492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389492,0.000000,0.000000,0.250000,0,0);}
.v0_c01063{vertical-align:0.000000px;}
.ls1a_c01063{letter-spacing:-3.215527px;}
.ls5_c01063{letter-spacing:-2.855167px;}
.ls26_c01063{letter-spacing:-2.758140px;}
.ls1b_c01063{letter-spacing:-2.605680px;}
.ls16_c01063{letter-spacing:-2.520705px;}
.ls23_c01063{letter-spacing:-2.202557px;}
.ls28_c01063{letter-spacing:-2.196817px;}
.ls1f_c01063{letter-spacing:-2.023090px;}
.ls18_c01063{letter-spacing:-1.661299px;}
.ls9_c01063{letter-spacing:-1.582578px;}
.ls27_c01063{letter-spacing:-1.525219px;}
.ls14_c01063{letter-spacing:-0.497615px;}
.ls29_c01063{letter-spacing:-0.358935px;}
.lse_c01063{letter-spacing:0.000000px;}
.ls24_c01063{letter-spacing:0.176022px;}
.ls11_c01063{letter-spacing:0.717871px;}
.ls0_c01063{letter-spacing:1.419426px;}
.ls1d_c01063{letter-spacing:1.558105px;}
.ls20_c01063{letter-spacing:2.218873px;}
.lsa_c01063{letter-spacing:2.749118px;}
.ls12_c01063{letter-spacing:3.306610px;}
.ls6_c01063{letter-spacing:3.326400px;}
.ls25_c01063{letter-spacing:3.405610px;}
.ls15_c01063{letter-spacing:3.435310px;}
.ls17_c01063{letter-spacing:3.515934px;}
.ls1e_c01063{letter-spacing:3.564000px;}
.ls10_c01063{letter-spacing:3.623400px;}
.ls7_c01063{letter-spacing:3.638298px;}
.lsc_c01063{letter-spacing:3.643200px;}
.ls2_c01063{letter-spacing:3.771900px;}
.lsd_c01063{letter-spacing:3.814114px;}
.lsb_c01063{letter-spacing:3.920400px;}
.lsf_c01063{letter-spacing:3.940200px;}
.ls4_c01063{letter-spacing:4.078810px;}
.ls19_c01063{letter-spacing:4.593610px;}
.ls1c_c01063{letter-spacing:4.633200px;}
.ls22_c01063{letter-spacing:54.172998px;}
.ls13_c01063{letter-spacing:57.024198px;}
.ls21_c01063{letter-spacing:58.449798px;}
.ls3_c01063{letter-spacing:59.875398px;}
.ls1_c01063{letter-spacing:61.300998px;}
.ls8_c01063{letter-spacing:62.726400px;}
.sc__c01063{text-shadow:none;}
.sc0_c01063{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01063{-webkit-text-stroke:0px transparent;}
.sc0_c01063{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01063{word-spacing:-122.601996px;}
.ws3_c01063{word-spacing:-22.612922px;}
.ws0_c01063{word-spacing:-21.813475px;}
.ws2_c01063{word-spacing:-20.394050px;}
.ws4_c01063{word-spacing:0.000000px;}
._5_c01063{margin-left:-24.581700px;}
._6_c01063{margin-left:-15.826190px;}
._3_c01063{margin-left:-10.360177px;}
._2_c01063{margin-left:-2.172625px;}
._7_c01063{width:1.992567px;}
._0_c01063{width:4.355842px;}
._9_c01063{width:22.314451px;}
._4_c01063{width:33.030930px;}
._1_c01063{width:168.640560px;}
._8_c01063{width:396.247896px;}
.fc0_c01063{color:transparent;}
.fs16_c01063{font-size:22.572000px;}
.fs11_c01063{font-size:27.720000px;}
.fs18_c01063{font-size:50.292000px;}
.fs17_c01063{font-size:54.172998px;}
.fsb_c01063{font-size:57.024198px;}
.fs14_c01063{font-size:58.449798px;}
.fs1_c01063{font-size:59.875398px;}
.fse_c01063{font-size:61.300998px;}
.fs4_c01063{font-size:62.726400px;}
.fs1a_c01063{font-size:62.766198px;}
.fs9_c01063{font-size:66.132198px;}
.fs3_c01063{font-size:66.528000px;}
.fs19_c01063{font-size:68.112198px;}
.fsc_c01063{font-size:68.706198px;}
.fs13_c01063{font-size:71.280000px;}
.fs8_c01063{font-size:72.468000px;}
.fs6_c01063{font-size:72.864000px;}
.fs10_c01063{font-size:74.448000px;}
.fsd_c01063{font-size:74.844000px;}
.fs0_c01063{font-size:75.438000px;}
.fs5_c01063{font-size:78.408000px;}
.fs7_c01063{font-size:78.804000px;}
.fs2_c01063{font-size:81.576198px;}
.fsf_c01063{font-size:91.872198px;}
.fs12_c01063{font-size:92.664000px;}
.fsa_c01063{font-size:96.228000px;}
.fs15_c01063{font-size:120.384000px;}
.y0_c01063{bottom:0.000000px;}
.y1c_c01063{bottom:7.034985px;}
.y1_c01063{bottom:76.500000px;}
.y1b_c01063{bottom:126.433935px;}
.y1a_c01063{bottom:190.580985px;}
.y19_c01063{bottom:224.087535px;}
.y18_c01063{bottom:254.376585px;}
.y17_c01063{bottom:257.227785px;}
.y16_c01063{bottom:289.665135px;}
.y15_c01063{bottom:321.741135px;}
.y14_c01063{bottom:353.099385px;}
.y13_c01063{bottom:384.462585px;}
.y12_c01063{bottom:416.899935px;}
.y11_c01063{bottom:448.258185px;}
.y10_c01063{bottom:481.408335px;}
.yf_c01063{bottom:517.399785px;}
.ye_c01063{bottom:543.778335px;}
.yd_c01063{bottom:577.987785px;}
.yc_c01063{bottom:610.068735px;}
.yb_c01063{bottom:642.857535px;}
.ya_c01063{bottom:674.220735px;}
.y9_c01063{bottom:706.653135px;}
.y8_c01063{bottom:738.367785px;}
.y7_c01063{bottom:770.087385px;}
.y6_c01063{bottom:802.876185px;}
.y5_c01063{bottom:834.600735px;}
.y4_c01063{bottom:866.315385px;}
.y3_c01063{bottom:931.892985px;}
.y2_c01063{bottom:1065.899385px;}
.h15_c01063{height:28.911094px;}
.h1a_c01063{height:36.079217px;}
.hd_c01063{height:37.978116px;}
.h18_c01063{height:38.927565px;}
.h3_c01063{height:39.877015px;}
.h11_c01063{height:40.826465px;}
.h6_c01063{height:41.775782px;}
.h1b_c01063{height:52.452984px;}
.h1d_c01063{height:65.463183px;}
.hf_c01063{height:67.431376px;}
.hb_c01063{height:68.973816px;}
.h5_c01063{height:69.386625px;}
.h1c_c01063{height:71.038894px;}
.ha_c01063{height:71.123379px;}
.h12_c01063{height:71.512031px;}
.h10_c01063{height:73.455293px;}
.h2_c01063{height:74.038271px;}
.h17_c01063{height:74.342813px;}
.h8_c01063{height:75.994875px;}
.he_c01063{height:76.914879px;}
.h7_c01063{height:76.953164px;}
.h9_c01063{height:77.341816px;}
.h14_c01063{height:77.646938px;}
.h4_c01063{height:80.062577px;}
.h13_c01063{height:90.167538px;}
.h16_c01063{height:90.944648px;}
.hc_c01063{height:100.362797px;}
.h19_c01063{height:125.556750px;}
.h1_c01063{height:1110.000000px;}
.h0_c01063{height:1263.000000px;}
.w1_c01063{width:775.500000px;}
.w0_c01063{width:892.500000px;}
.x0_c01063{left:0.000000px;}
.x1_c01063{left:58.500000px;}
.x49_c01063{left:75.137685px;}
.x1a_c01063{left:76.211835px;}
.x3_c01063{left:77.330535px;}
.x41_c01063{left:88.166085px;}
.x27_c01063{left:108.307635px;}
.x6e_c01063{left:119.742135px;}
.x58_c01063{left:129.251085px;}
.xe_c01063{left:132.156735px;}
.x34_c01063{left:141.423135px;}
.x57_c01063{left:143.507085px;}
.x28_c01063{left:152.842785px;}
.x39_c01063{left:154.070385px;}
.x42_c01063{left:163.450635px;}
.x22_c01063{left:164.900985px;}
.xf_c01063{left:174.593085px;}
.x4_c01063{left:176.558235px;}
.x1b_c01063{left:185.898885px;}
.x2f_c01063{left:189.418335px;}
.x43_c01063{left:197.372985px;}
.x10_c01063{left:209.574735px;}
.x6d_c01063{left:219.068835px;}
.x35_c01063{left:220.360785px;}
.x5_c01063{left:222.053685px;}
.x1c_c01063{left:231.745785px;}
.x65_c01063{left:242.135835px;}
.x4d_c01063{left:252.317985px;}
.x6_c01063{left:254.124735px;}
.x23_c01063{left:264.658335px;}
.x44_c01063{left:275.503785px;}
.x30_c01063{left:276.558135px;}
.x5c_c01063{left:285.968085px;}
.x4c_c01063{left:287.740185px;}
.x3a_c01063{left:298.437135px;}
.x4e_c01063{left:301.149735px;}
.x67_c01063{left:307.876785px;}
.x1d_c01063{left:309.515235px;}
.x71_c01063{left:314.460285px;}
.x72_c01063{left:319.286535px;}
.x29_c01063{left:320.900235px;}
.x69_c01063{left:330.483435px;}
.x11_c01063{left:331.913985px;}
.x4f_c01063{left:336.428385px;}
.x36_c01063{left:341.368485px;}
.x1e_c01063{left:343.313835px;}
.x2a_c01063{left:353.268285px;}
.x7_c01063{left:354.728535px;}
.x61_c01063{left:363.628635px;}
.x5d_c01063{left:364.945335px;}
.x12_c01063{left:374.914635px;}
.x5b_c01063{left:376.706535px;}
.x50_c01063{left:384.156285px;}
.x45_c01063{left:386.834235px;}
.x8_c01063{left:388.185585px;}
.x4a_c01063{left:398.595435px;}
.x51_c01063{left:402.560385px;}
.x62_c01063{left:408.025185px;}
.x31_c01063{left:409.975485px;}
.x52_c01063{left:417.910335px;}
.x1f_c01063{left:419.108235px;}
.x13_c01063{left:421.048635px;}
.x53_c01063{left:429.191385px;}
.x24_c01063{left:431.255535px;}
.x54_c01063{left:437.650935px;}
.x6f_c01063{left:441.165435px;}
.x9_c01063{left:442.660335px;}
.x46_c01063{left:451.852485px;}
.x14_c01063{left:453.416685px;}
.x5e_c01063{left:455.193735px;}
.x2b_c01063{left:463.623585px;}
.x6a_c01063{left:474.800685px;}
.x63_c01063{left:475.904535px;}
.x3b_c01063{left:484.666035px;}
.x15_c01063{left:486.561885px;}
.x55_c01063{left:493.452285px;}
.x32_c01063{left:495.986685px;}
.x20_c01063{left:498.031035px;}
.x56_c01063{left:499.035885px;}
.x6b_c01063{left:507.104385px;}
.x3c_c01063{left:519.286335px;}
.xa_c01063{left:531.854385px;}
.x4b_c01063{left:540.591135px;}
.x37_c01063{left:541.838535px;}
.x59_c01063{left:551.332635px;}
.x16_c01063{left:553.594785px;}
.x70_c01063{left:562.781985px;}
.xb_c01063{left:563.900685px;}
.x38_c01063{left:573.439335px;}
.x2c_c01063{left:575.335185px;}
.x17_c01063{left:584.453085px;}
.x25_c01063{left:586.690485px;}
.x64_c01063{left:595.481685px;}
.xc_c01063{left:596.560785px;}
.x2d_c01063{left:608.029935px;}
.x5f_c01063{left:618.489285px;}
.x26_c01063{left:619.533735px;}
.x47_c01063{left:629.166435px;}
.x18_c01063{left:630.799935px;}
.x68_c01063{left:638.615985px;}
.x60_c01063{left:651.258285px;}
.x21_c01063{left:652.555185px;}
.x3d_c01063{left:661.272135px;}
.x66_c01063{left:663.608535px;}
.xd_c01063{left:666.207285px;}
.x48_c01063{left:673.647135px;}
.x33_c01063{left:685.071735px;}
.x19_c01063{left:686.145885px;}
.x2_c01063{left:690.066285px;}
.x3e_c01063{left:692.828385px;}
.x2e_c01063{left:696.778485px;}
.x73_c01063{left:699.491085px;}
.x6c_c01063{left:707.440785px;}
.x3f_c01063{left:717.781335px;}
.x40_c01063{left:719.914785px;}
.x5a_c01063{left:728.498085px;}
@media print{
.v0_c01063{vertical-align:0.000000pt;}
.ls1a_c01063{letter-spacing:-2.858246pt;}
.ls5_c01063{letter-spacing:-2.537926pt;}
.ls26_c01063{letter-spacing:-2.451680pt;}
.ls1b_c01063{letter-spacing:-2.316160pt;}
.ls16_c01063{letter-spacing:-2.240626pt;}
.ls23_c01063{letter-spacing:-1.957829pt;}
.ls28_c01063{letter-spacing:-1.952726pt;}
.ls1f_c01063{letter-spacing:-1.798302pt;}
.ls18_c01063{letter-spacing:-1.476710pt;}
.ls9_c01063{letter-spacing:-1.406736pt;}
.ls27_c01063{letter-spacing:-1.355750pt;}
.ls14_c01063{letter-spacing:-0.442324pt;}
.ls29_c01063{letter-spacing:-0.319054pt;}
.lse_c01063{letter-spacing:0.000000pt;}
.ls24_c01063{letter-spacing:0.156464pt;}
.ls11_c01063{letter-spacing:0.638107pt;}
.ls0_c01063{letter-spacing:1.261712pt;}
.ls1d_c01063{letter-spacing:1.384983pt;}
.ls20_c01063{letter-spacing:1.972331pt;}
.lsa_c01063{letter-spacing:2.443660pt;}
.ls12_c01063{letter-spacing:2.939209pt;}
.ls6_c01063{letter-spacing:2.956800pt;}
.ls25_c01063{letter-spacing:3.027209pt;}
.ls15_c01063{letter-spacing:3.053609pt;}
.ls17_c01063{letter-spacing:3.125275pt;}
.ls1e_c01063{letter-spacing:3.168000pt;}
.ls10_c01063{letter-spacing:3.220800pt;}
.ls7_c01063{letter-spacing:3.234043pt;}
.lsc_c01063{letter-spacing:3.238400pt;}
.ls2_c01063{letter-spacing:3.352800pt;}
.lsd_c01063{letter-spacing:3.390323pt;}
.lsb_c01063{letter-spacing:3.484800pt;}
.lsf_c01063{letter-spacing:3.502400pt;}
.ls4_c01063{letter-spacing:3.625609pt;}
.ls19_c01063{letter-spacing:4.083209pt;}
.ls1c_c01063{letter-spacing:4.118400pt;}
.ls22_c01063{letter-spacing:48.153776pt;}
.ls13_c01063{letter-spacing:50.688176pt;}
.ls21_c01063{letter-spacing:51.955376pt;}
.ls3_c01063{letter-spacing:53.222576pt;}
.ls1_c01063{letter-spacing:54.489776pt;}
.ls8_c01063{letter-spacing:55.756800pt;}
.ws1_c01063{word-spacing:-108.979552pt;}
.ws3_c01063{word-spacing:-20.100375pt;}
.ws0_c01063{word-spacing:-19.389756pt;}
.ws2_c01063{word-spacing:-18.128044pt;}
.ws4_c01063{word-spacing:0.000000pt;}
._5_c01063{margin-left:-21.850400pt;}
._6_c01063{margin-left:-14.067724pt;}
._3_c01063{margin-left:-9.209046pt;}
._2_c01063{margin-left:-1.931222pt;}
._7_c01063{width:1.771171pt;}
._0_c01063{width:3.871860pt;}
._9_c01063{width:19.835068pt;}
._4_c01063{width:29.360826pt;}
._1_c01063{width:149.902720pt;}
._8_c01063{width:352.220352pt;}
.fs16_c01063{font-size:20.064000pt;}
.fs11_c01063{font-size:24.640000pt;}
.fs18_c01063{font-size:44.704000pt;}
.fs17_c01063{font-size:48.153776pt;}
.fsb_c01063{font-size:50.688176pt;}
.fs14_c01063{font-size:51.955376pt;}
.fs1_c01063{font-size:53.222576pt;}
.fse_c01063{font-size:54.489776pt;}
.fs4_c01063{font-size:55.756800pt;}
.fs1a_c01063{font-size:55.792176pt;}
.fs9_c01063{font-size:58.784176pt;}
.fs3_c01063{font-size:59.136000pt;}
.fs19_c01063{font-size:60.544176pt;}
.fsc_c01063{font-size:61.072176pt;}
.fs13_c01063{font-size:63.360000pt;}
.fs8_c01063{font-size:64.416000pt;}
.fs6_c01063{font-size:64.768000pt;}
.fs10_c01063{font-size:66.176000pt;}
.fsd_c01063{font-size:66.528000pt;}
.fs0_c01063{font-size:67.056000pt;}
.fs5_c01063{font-size:69.696000pt;}
.fs7_c01063{font-size:70.048000pt;}
.fs2_c01063{font-size:72.512176pt;}
.fsf_c01063{font-size:81.664176pt;}
.fs12_c01063{font-size:82.368000pt;}
.fsa_c01063{font-size:85.536000pt;}
.fs15_c01063{font-size:107.008000pt;}
.y0_c01063{bottom:0.000000pt;}
.y1c_c01063{bottom:6.253320pt;}
.y1_c01063{bottom:68.000000pt;}
.y1b_c01063{bottom:112.385720pt;}
.y1a_c01063{bottom:169.405320pt;}
.y19_c01063{bottom:199.188920pt;}
.y18_c01063{bottom:226.112520pt;}
.y17_c01063{bottom:228.646920pt;}
.y16_c01063{bottom:257.480120pt;}
.y15_c01063{bottom:285.992120pt;}
.y14_c01063{bottom:313.866120pt;}
.y13_c01063{bottom:341.744520pt;}
.y12_c01063{bottom:370.577720pt;}
.y11_c01063{bottom:398.451720pt;}
.y10_c01063{bottom:427.918520pt;}
.yf_c01063{bottom:459.910920pt;}
.ye_c01063{bottom:483.358520pt;}
.yd_c01063{bottom:513.766920pt;}
.yc_c01063{bottom:542.283320pt;}
.yb_c01063{bottom:571.428920pt;}
.ya_c01063{bottom:599.307320pt;}
.y9_c01063{bottom:628.136120pt;}
.y8_c01063{bottom:656.326920pt;}
.y7_c01063{bottom:684.522120pt;}
.y6_c01063{bottom:713.667720pt;}
.y5_c01063{bottom:741.867320pt;}
.y4_c01063{bottom:770.058120pt;}
.y3_c01063{bottom:828.349320pt;}
.y2_c01063{bottom:947.466120pt;}
.h15_c01063{height:25.698750pt;}
.h1a_c01063{height:32.070415pt;}
.hd_c01063{height:33.758325pt;}
.h18_c01063{height:34.602280pt;}
.h3_c01063{height:35.446236pt;}
.h11_c01063{height:36.290191pt;}
.h6_c01063{height:37.134029pt;}
.h1b_c01063{height:46.624875pt;}
.h1d_c01063{height:58.189496pt;}
.hf_c01063{height:59.939001pt;}
.hb_c01063{height:61.310059pt;}
.h5_c01063{height:61.677000pt;}
.h1c_c01063{height:63.145684pt;}
.ha_c01063{height:63.220781pt;}
.h12_c01063{height:63.566250pt;}
.h10_c01063{height:65.293594pt;}
.h2_c01063{height:65.811797pt;}
.h17_c01063{height:66.082500pt;}
.h8_c01063{height:67.551000pt;}
.he_c01063{height:68.368781pt;}
.h7_c01063{height:68.402813pt;}
.h9_c01063{height:68.748281pt;}
.h14_c01063{height:69.019500pt;}
.h4_c01063{height:71.166735pt;}
.h13_c01063{height:80.148923pt;}
.h16_c01063{height:80.839688pt;}
.hc_c01063{height:89.211375pt;}
.h19_c01063{height:111.606000pt;}
.h1_c01063{height:986.666667pt;}
.h0_c01063{height:1122.666667pt;}
.w1_c01063{width:689.333333pt;}
.w0_c01063{width:793.333333pt;}
.x0_c01063{left:0.000000pt;}
.x1_c01063{left:52.000000pt;}
.x49_c01063{left:66.789053pt;}
.x1a_c01063{left:67.743853pt;}
.x3_c01063{left:68.738253pt;}
.x41_c01063{left:78.369853pt;}
.x27_c01063{left:96.273453pt;}
.x6e_c01063{left:106.437453pt;}
.x58_c01063{left:114.889853pt;}
.xe_c01063{left:117.472653pt;}
.x34_c01063{left:125.709453pt;}
.x57_c01063{left:127.561853pt;}
.x28_c01063{left:135.860253pt;}
.x39_c01063{left:136.951453pt;}
.x42_c01063{left:145.289453pt;}
.x22_c01063{left:146.578653pt;}
.xf_c01063{left:155.193853pt;}
.x4_c01063{left:156.940653pt;}
.x1b_c01063{left:165.243453pt;}
.x2f_c01063{left:168.371853pt;}
.x43_c01063{left:175.442653pt;}
.x10_c01063{left:186.288653pt;}
.x6d_c01063{left:194.727853pt;}
.x35_c01063{left:195.876253pt;}
.x5_c01063{left:197.381053pt;}
.x1c_c01063{left:205.996253pt;}
.x65_c01063{left:215.231853pt;}
.x4d_c01063{left:224.282653pt;}
.x6_c01063{left:225.888653pt;}
.x23_c01063{left:235.251853pt;}
.x44_c01063{left:244.892253pt;}
.x30_c01063{left:245.829453pt;}
.x5c_c01063{left:254.193853pt;}
.x4c_c01063{left:255.769053pt;}
.x3a_c01063{left:265.277453pt;}
.x4e_c01063{left:267.688653pt;}
.x67_c01063{left:273.668253pt;}
.x1d_c01063{left:275.124653pt;}
.x71_c01063{left:279.520253pt;}
.x72_c01063{left:283.810253pt;}
.x29_c01063{left:285.244653pt;}
.x69_c01063{left:293.763053pt;}
.x11_c01063{left:295.034653pt;}
.x4f_c01063{left:299.047453pt;}
.x36_c01063{left:303.438653pt;}
.x1e_c01063{left:305.167853pt;}
.x2a_c01063{left:314.016253pt;}
.x7_c01063{left:315.314253pt;}
.x61_c01063{left:323.225453pt;}
.x5d_c01063{left:324.395853pt;}
.x12_c01063{left:333.257453pt;}
.x5b_c01063{left:334.850253pt;}
.x50_c01063{left:341.472253pt;}
.x45_c01063{left:343.852653pt;}
.x8_c01063{left:345.053853pt;}
.x4a_c01063{left:354.307053pt;}
.x51_c01063{left:357.831453pt;}
.x62_c01063{left:362.689053pt;}
.x31_c01063{left:364.422653pt;}
.x52_c01063{left:371.475853pt;}
.x1f_c01063{left:372.540653pt;}
.x13_c01063{left:374.265453pt;}
.x53_c01063{left:381.503453pt;}
.x24_c01063{left:383.338253pt;}
.x54_c01063{left:389.023053pt;}
.x6f_c01063{left:392.147053pt;}
.x9_c01063{left:393.475853pt;}
.x46_c01063{left:401.646653pt;}
.x14_c01063{left:403.037053pt;}
.x5e_c01063{left:404.616653pt;}
.x2b_c01063{left:412.109853pt;}
.x6a_c01063{left:422.045053pt;}
.x63_c01063{left:423.026253pt;}
.x3b_c01063{left:430.814253pt;}
.x15_c01063{left:432.499453pt;}
.x55_c01063{left:438.624253pt;}
.x32_c01063{left:440.877053pt;}
.x20_c01063{left:442.694253pt;}
.x56_c01063{left:443.587453pt;}
.x6b_c01063{left:450.759453pt;}
.x3c_c01063{left:461.587853pt;}
.xa_c01063{left:472.759453pt;}
.x4b_c01063{left:480.525453pt;}
.x37_c01063{left:481.634253pt;}
.x59_c01063{left:490.073453pt;}
.x16_c01063{left:492.084253pt;}
.x70_c01063{left:500.250653pt;}
.xb_c01063{left:501.245053pt;}
.x38_c01063{left:509.723853pt;}
.x2c_c01063{left:511.409053pt;}
.x17_c01063{left:519.513853pt;}
.x25_c01063{left:521.502653pt;}
.x64_c01063{left:529.317053pt;}
.xc_c01063{left:530.276253pt;}
.x2d_c01063{left:540.471053pt;}
.x5f_c01063{left:549.768253pt;}
.x26_c01063{left:550.696653pt;}
.x47_c01063{left:559.259053pt;}
.x18_c01063{left:560.711053pt;}
.x68_c01063{left:567.658653pt;}
.x60_c01063{left:578.896253pt;}
.x21_c01063{left:580.049053pt;}
.x3d_c01063{left:587.797453pt;}
.x66_c01063{left:589.874253pt;}
.xd_c01063{left:592.184253pt;}
.x48_c01063{left:598.797453pt;}
.x33_c01063{left:608.952653pt;}
.x19_c01063{left:609.907453pt;}
.x2_c01063{left:613.392253pt;}
.x3e_c01063{left:615.847453pt;}
.x2e_c01063{left:619.358653pt;}
.x73_c01063{left:621.769853pt;}
.x6c_c01063{left:628.836253pt;}
.x3f_c01063{left:638.027853pt;}
.x40_c01063{left:639.924253pt;}
.x5a_c01063{left:647.553853pt;}
}





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

.ir_c01064:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01064{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01064;src:url('chunks/assets/font_61bfaaee5a2961f9a913fb17.woff2')format("woff");}.ff1_c01064{font-family:ff1_c01064;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01064;src:url('chunks/assets/font_517b7dce6658158b1842fc38.woff2')format("woff");}.ff2_c01064{font-family:ff2_c01064;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01064;src:url('chunks/assets/font_c9ec487dfdb9300416f87fbb.woff2')format("woff");}.ff3_c01064{font-family:ff3_c01064;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01064;src:url('chunks/assets/font_3cfe602c325552402bbbb80b.woff2')format("woff");}.ff4_c01064{font-family:ff4_c01064;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m32_c01064{transform:matrix(0.023257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.023257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.023257,0.000000,0.000000,0.250000,0,0);}
.m97_c01064{transform:matrix(0.036445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036445,0.000000,0.000000,0.250000,0,0);}
.m98_c01064{transform:matrix(0.047283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.047283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.047283,0.000000,0.000000,0.250000,0,0);}
.m52_c01064{transform:matrix(0.079428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.079428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.079428,0.000000,0.000000,0.250000,0,0);}
.m4f_c01064{transform:matrix(0.079862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.079862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.079862,0.000000,0.000000,0.250000,0,0);}
.m53_c01064{transform:matrix(0.083570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083570,0.000000,0.000000,0.250000,0,0);}
.m33_c01064{transform:matrix(0.087209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087209,0.000000,0.000000,0.250000,0,0);}
.m56_c01064{transform:matrix(0.096355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096355,0.000000,0.000000,0.250000,0,0);}
.m51_c01064{transform:matrix(0.101935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101935,0.000000,0.000000,0.250000,0,0);}
.m99_c01064{transform:matrix(0.103890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103890,0.000000,0.000000,0.250000,0,0);}
.m54_c01064{transform:matrix(0.107626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107626,0.000000,0.000000,0.250000,0,0);}
.m34_c01064{transform:matrix(0.111192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111192,0.000000,0.000000,0.250000,0,0);}
.m30_c01064{transform:matrix(0.112791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112791,0.000000,0.000000,0.250000,0,0);}
.m46_c01064{transform:matrix(0.132479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132479,0.000000,0.000000,0.250000,0,0);}
.m6a_c01064{transform:matrix(0.142344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142344,0.000000,0.000000,0.250000,0,0);}
.m35_c01064{transform:matrix(0.148124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148124,0.000000,0.000000,0.250000,0,0);}
.ma6_c01064{transform:matrix(0.151563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151563,0.000000,0.000000,0.250000,0,0);}
.m31_c01064{transform:matrix(0.162790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162790,0.000000,0.000000,0.250000,0,0);}
.m9a_c01064{transform:matrix(0.177679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177679,0.000000,0.000000,0.250000,0,0);}
.m50_c01064{transform:matrix(0.181219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181219,0.000000,0.000000,0.250000,0,0);}
.ma4_c01064{transform:matrix(0.190104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190104,0.000000,0.000000,0.250000,0,0);}
.m1c_c01064{transform:matrix(0.210553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210553,0.000000,0.000000,0.250000,0,0);}
.m2b_c01064{transform:matrix(0.212690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212690,0.000000,0.000000,0.250000,0,0);}
.mb9_c01064{transform:matrix(0.212881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212881,0.000000,0.000000,0.250000,0,0);}
.m45_c01064{transform:matrix(0.235579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235579,0.000000,0.000000,0.250000,0,0);}
.m0_c01064{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m4a_c01064{transform:matrix(0.250995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250995,0.000000,0.000000,0.250000,0,0);}
.m47_c01064{transform:matrix(0.253499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253499,0.000000,0.000000,0.250000,0,0);}
.m55_c01064{transform:matrix(0.256785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256785,0.000000,0.000000,0.250000,0,0);}
.m58_c01064{transform:matrix(0.257703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257703,0.000000,0.000000,0.250000,0,0);}
.ma9_c01064{transform:matrix(0.259449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259449,0.000000,0.000000,0.250000,0,0);}
.m48_c01064{transform:matrix(0.261287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261287,0.000000,0.000000,0.250000,0,0);}
.m7f_c01064{transform:matrix(0.262284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262284,0.000000,0.000000,0.250000,0,0);}
.m20_c01064{transform:matrix(0.264118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264118,0.000000,0.000000,0.250000,0,0);}
.m2a_c01064{transform:matrix(0.267564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267564,0.000000,0.000000,0.250000,0,0);}
.maf_c01064{transform:matrix(0.269557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269557,0.000000,0.000000,0.250000,0,0);}
.m7c_c01064{transform:matrix(0.269928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269928,0.000000,0.000000,0.250000,0,0);}
.m3c_c01064{transform:matrix(0.271808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271808,0.000000,0.000000,0.250000,0,0);}
.m44_c01064{transform:matrix(0.271982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271982,0.000000,0.000000,0.250000,0,0);}
.m63_c01064{transform:matrix(0.273170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273170,0.000000,0.000000,0.250000,0,0);}
.m7_c01064{transform:matrix(0.273900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273900,0.000000,0.000000,0.250000,0,0);}
.m6_c01064{transform:matrix(0.274821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274821,0.000000,0.000000,0.250000,0,0);}
.m23_c01064{transform:matrix(0.276310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276310,0.000000,0.000000,0.250000,0,0);}
.m19_c01064{transform:matrix(0.276927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276927,0.000000,0.000000,0.250000,0,0);}
.m40_c01064{transform:matrix(0.277056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277056,0.000000,0.000000,0.250000,0,0);}
.m2d_c01064{transform:matrix(0.277214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277214,0.000000,0.000000,0.250000,0,0);}
.mc1_c01064{transform:matrix(0.278383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278383,0.000000,0.000000,0.250000,0,0);}
.m76_c01064{transform:matrix(0.278608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278608,0.000000,0.000000,0.250000,0,0);}
.m9e_c01064{transform:matrix(0.278621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278621,0.000000,0.000000,0.250000,0,0);}
.m41_c01064{transform:matrix(0.278792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278792,0.000000,0.000000,0.250000,0,0);}
.mb5_c01064{transform:matrix(0.279450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279450,0.000000,0.000000,0.250000,0,0);}
.m13_c01064{transform:matrix(0.279811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279811,0.000000,0.000000,0.250000,0,0);}
.mac_c01064{transform:matrix(0.280798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280798,0.000000,0.000000,0.250000,0,0);}
.m38_c01064{transform:matrix(0.280977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280977,0.000000,0.000000,0.250000,0,0);}
.ma8_c01064{transform:matrix(0.281669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281669,0.000000,0.000000,0.250000,0,0);}
.mb1_c01064{transform:matrix(0.281711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281711,0.000000,0.000000,0.250000,0,0);}
.m8c_c01064{transform:matrix(0.281872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281872,0.000000,0.000000,0.250000,0,0);}
.mbb_c01064{transform:matrix(0.282373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282373,0.000000,0.000000,0.250000,0,0);}
.m9_c01064{transform:matrix(0.282678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282678,0.000000,0.000000,0.250000,0,0);}
.m91_c01064{transform:matrix(0.282767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282767,0.000000,0.000000,0.250000,0,0);}
.m2f_c01064{transform:matrix(0.283005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283005,0.000000,0.000000,0.250000,0,0);}
.ma1_c01064{transform:matrix(0.284172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284172,0.000000,0.000000,0.250000,0,0);}
.m5b_c01064{transform:matrix(0.285898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285898,0.000000,0.000000,0.250000,0,0);}
.mbe_c01064{transform:matrix(0.286806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286806,0.000000,0.000000,0.250000,0,0);}
.md_c01064{transform:matrix(0.286817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286817,0.000000,0.000000,0.250000,0,0);}
.mc7_c01064{transform:matrix(0.288193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288193,0.000000,0.000000,0.250000,0,0);}
.m70_c01064{transform:matrix(0.289446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289446,0.000000,0.000000,0.250000,0,0);}
.m29_c01064{transform:matrix(0.290035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290035,0.000000,0.000000,0.250000,0,0);}
.m26_c01064{transform:matrix(0.290892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290892,0.000000,0.000000,0.250000,0,0);}
.m1_c01064{transform:matrix(0.290924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290924,0.000000,0.000000,0.250000,0,0);}
.m14_c01064{transform:matrix(0.291218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291218,0.000000,0.000000,0.250000,0,0);}
.m59_c01064{transform:matrix(0.292059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292059,0.000000,0.000000,0.250000,0,0);}
.m21_c01064{transform:matrix(0.292999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292999,0.000000,0.000000,0.250000,0,0);}
.mad_c01064{transform:matrix(0.293521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293521,0.000000,0.000000,0.250000,0,0);}
.mbf_c01064{transform:matrix(0.293624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293624,0.000000,0.000000,0.250000,0,0);}
.m57_c01064{transform:matrix(0.295761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295761,0.000000,0.000000,0.250000,0,0);}
.mab_c01064{transform:matrix(0.297730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297730,0.000000,0.000000,0.250000,0,0);}
.m15_c01064{transform:matrix(0.298539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298539,0.000000,0.000000,0.250000,0,0);}
.m84_c01064{transform:matrix(0.299217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299217,0.000000,0.000000,0.250000,0,0);}
.m88_c01064{transform:matrix(0.300623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300623,0.000000,0.000000,0.250000,0,0);}
.m7a_c01064{transform:matrix(0.300670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300670,0.000000,0.000000,0.250000,0,0);}
.m3f_c01064{transform:matrix(0.300803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300803,0.000000,0.000000,0.250000,0,0);}
.m60_c01064{transform:matrix(0.301016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301016,0.000000,0.000000,0.250000,0,0);}
.mc_c01064{transform:matrix(0.301248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301248,0.000000,0.000000,0.250000,0,0);}
.m6e_c01064{transform:matrix(0.301932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301932,0.000000,0.000000,0.250000,0,0);}
.m7b_c01064{transform:matrix(0.302024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302024,0.000000,0.000000,0.250000,0,0);}
.m93_c01064{transform:matrix(0.302674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302674,0.000000,0.000000,0.250000,0,0);}
.m78_c01064{transform:matrix(0.303347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303347,0.000000,0.000000,0.250000,0,0);}
.m85_c01064{transform:matrix(0.304338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304338,0.000000,0.000000,0.250000,0,0);}
.mca_c01064{transform:matrix(0.305492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305492,0.000000,0.000000,0.250000,0,0);}
.ma7_c01064{transform:matrix(0.305680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305680,0.000000,0.000000,0.250000,0,0);}
.m22_c01064{transform:matrix(0.305825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305825,0.000000,0.000000,0.250000,0,0);}
.m92_c01064{transform:matrix(0.306478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306478,0.000000,0.000000,0.250000,0,0);}
.m69_c01064{transform:matrix(0.306803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306803,0.000000,0.000000,0.250000,0,0);}
.m36_c01064{transform:matrix(0.307263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307263,0.000000,0.000000,0.250000,0,0);}
.maa_c01064{transform:matrix(0.307909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307909,0.000000,0.000000,0.250000,0,0);}
.mbd_c01064{transform:matrix(0.307980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307980,0.000000,0.000000,0.250000,0,0);}
.m7d_c01064{transform:matrix(0.308017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308017,0.000000,0.000000,0.250000,0,0);}
.mcb_c01064{transform:matrix(0.308070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308070,0.000000,0.000000,0.250000,0,0);}
.m8e_c01064{transform:matrix(0.308678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308678,0.000000,0.000000,0.250000,0,0);}
.m5d_c01064{transform:matrix(0.308890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308890,0.000000,0.000000,0.250000,0,0);}
.m42_c01064{transform:matrix(0.309529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309529,0.000000,0.000000,0.250000,0,0);}
.m27_c01064{transform:matrix(0.310887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310887,0.000000,0.000000,0.250000,0,0);}
.m2e_c01064{transform:matrix(0.311001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311001,0.000000,0.000000,0.250000,0,0);}
.m72_c01064{transform:matrix(0.311513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311513,0.000000,0.000000,0.250000,0,0);}
.m1e_c01064{transform:matrix(0.311878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311878,0.000000,0.000000,0.250000,0,0);}
.ma5_c01064{transform:matrix(0.312577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312577,0.000000,0.000000,0.250000,0,0);}
.m82_c01064{transform:matrix(0.312589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312589,0.000000,0.000000,0.250000,0,0);}
.mc9_c01064{transform:matrix(0.313351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313351,0.000000,0.000000,0.250000,0,0);}
.m75_c01064{transform:matrix(0.313388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313388,0.000000,0.000000,0.250000,0,0);}
.mc5_c01064{transform:matrix(0.314015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314015,0.000000,0.000000,0.250000,0,0);}
.m9d_c01064{transform:matrix(0.314272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314272,0.000000,0.000000,0.250000,0,0);}
.mae_c01064{transform:matrix(0.314467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314467,0.000000,0.000000,0.250000,0,0);}
.m3a_c01064{transform:matrix(0.314511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314511,0.000000,0.000000,0.250000,0,0);}
.mc6_c01064{transform:matrix(0.314582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314582,0.000000,0.000000,0.250000,0,0);}
.m67_c01064{transform:matrix(0.315750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315750,0.000000,0.000000,0.250000,0,0);}
.m90_c01064{transform:matrix(0.315926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315926,0.000000,0.000000,0.250000,0,0);}
.m9b_c01064{transform:matrix(0.315988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315988,0.000000,0.000000,0.250000,0,0);}
.m24_c01064{transform:matrix(0.316094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316094,0.000000,0.000000,0.250000,0,0);}
.mb4_c01064{transform:matrix(0.316488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316488,0.000000,0.000000,0.250000,0,0);}
.ma3_c01064{transform:matrix(0.317522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317522,0.000000,0.000000,0.250000,0,0);}
.m2_c01064{transform:matrix(0.317531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317531,0.000000,0.000000,0.250000,0,0);}
.m74_c01064{transform:matrix(0.317662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317662,0.000000,0.000000,0.250000,0,0);}
.mc4_c01064{transform:matrix(0.317678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317678,0.000000,0.000000,0.250000,0,0);}
.m37_c01064{transform:matrix(0.317714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317714,0.000000,0.000000,0.250000,0,0);}
.m3e_c01064{transform:matrix(0.318238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318238,0.000000,0.000000,0.250000,0,0);}
.m1b_c01064{transform:matrix(0.318302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318302,0.000000,0.000000,0.250000,0,0);}
.m6b_c01064{transform:matrix(0.318398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318398,0.000000,0.000000,0.250000,0,0);}
.mbc_c01064{transform:matrix(0.318424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318424,0.000000,0.000000,0.250000,0,0);}
.m64_c01064{transform:matrix(0.319263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319263,0.000000,0.000000,0.250000,0,0);}
.m12_c01064{transform:matrix(0.319387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319387,0.000000,0.000000,0.250000,0,0);}
.mc8_c01064{transform:matrix(0.320034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320034,0.000000,0.000000,0.250000,0,0);}
.m5_c01064{transform:matrix(0.321309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321309,0.000000,0.000000,0.250000,0,0);}
.m62_c01064{transform:matrix(0.322109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322109,0.000000,0.000000,0.250000,0,0);}
.m25_c01064{transform:matrix(0.322337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322337,0.000000,0.000000,0.250000,0,0);}
.m66_c01064{transform:matrix(0.322998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322998,0.000000,0.000000,0.250000,0,0);}
.m8b_c01064{transform:matrix(0.323265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323265,0.000000,0.000000,0.250000,0,0);}
.m5f_c01064{transform:matrix(0.323498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323498,0.000000,0.000000,0.250000,0,0);}
.m6d_c01064{transform:matrix(0.323695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323695,0.000000,0.000000,0.250000,0,0);}
.m11_c01064{transform:matrix(0.323785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323785,0.000000,0.000000,0.250000,0,0);}
.m87_c01064{transform:matrix(0.324690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324690,0.000000,0.000000,0.250000,0,0);}
.ma2_c01064{transform:matrix(0.325092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325092,0.000000,0.000000,0.250000,0,0);}
.m6c_c01064{transform:matrix(0.326031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326031,0.000000,0.000000,0.250000,0,0);}
.m9f_c01064{transform:matrix(0.327121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327121,0.000000,0.000000,0.250000,0,0);}
.m8f_c01064{transform:matrix(0.327773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327773,0.000000,0.000000,0.250000,0,0);}
.mb7_c01064{transform:matrix(0.328271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328271,0.000000,0.000000,0.250000,0,0);}
.m96_c01064{transform:matrix(0.328318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328318,0.000000,0.000000,0.250000,0,0);}
.m4_c01064{transform:matrix(0.329633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329633,0.000000,0.000000,0.250000,0,0);}
.mf_c01064{transform:matrix(0.330821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330821,0.000000,0.000000,0.250000,0,0);}
.m77_c01064{transform:matrix(0.330909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330909,0.000000,0.000000,0.250000,0,0);}
.m3_c01064{transform:matrix(0.331729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331729,0.000000,0.000000,0.250000,0,0);}
.m4b_c01064{transform:matrix(0.332299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332299,0.000000,0.000000,0.250000,0,0);}
.m17_c01064{transform:matrix(0.334358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334358,0.000000,0.000000,0.250000,0,0);}
.m1a_c01064{transform:matrix(0.334731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334731,0.000000,0.000000,0.250000,0,0);}
.m5a_c01064{transform:matrix(0.336820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336820,0.000000,0.000000,0.250000,0,0);}
.mb_c01064{transform:matrix(0.336887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336887,0.000000,0.000000,0.250000,0,0);}
.mb6_c01064{transform:matrix(0.338004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338004,0.000000,0.000000,0.250000,0,0);}
.mc0_c01064{transform:matrix(0.338069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338069,0.000000,0.000000,0.250000,0,0);}
.m80_c01064{transform:matrix(0.338826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338826,0.000000,0.000000,0.250000,0,0);}
.m71_c01064{transform:matrix(0.340555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340555,0.000000,0.000000,0.250000,0,0);}
.m73_c01064{transform:matrix(0.341493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341493,0.000000,0.000000,0.250000,0,0);}
.m83_c01064{transform:matrix(0.341585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341585,0.000000,0.000000,0.250000,0,0);}
.m6f_c01064{transform:matrix(0.341672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341672,0.000000,0.000000,0.250000,0,0);}
.mb3_c01064{transform:matrix(0.342221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342221,0.000000,0.000000,0.250000,0,0);}
.m86_c01064{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);}
.m3d_c01064{transform:matrix(0.342467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342467,0.000000,0.000000,0.250000,0,0);}
.m79_c01064{transform:matrix(0.342662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342662,0.000000,0.000000,0.250000,0,0);}
.m16_c01064{transform:matrix(0.342761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342761,0.000000,0.000000,0.250000,0,0);}
.m94_c01064{transform:matrix(0.344220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344220,0.000000,0.000000,0.250000,0,0);}
.mb8_c01064{transform:matrix(0.344304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344304,0.000000,0.000000,0.250000,0,0);}
.m43_c01064{transform:matrix(0.344318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344318,0.000000,0.000000,0.250000,0,0);}
.m1f_c01064{transform:matrix(0.345696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345696,0.000000,0.000000,0.250000,0,0);}
.m3b_c01064{transform:matrix(0.345717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345717,0.000000,0.000000,0.250000,0,0);}
.m4d_c01064{transform:matrix(0.345818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345818,0.000000,0.000000,0.250000,0,0);}
.m89_c01064{transform:matrix(0.346409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346409,0.000000,0.000000,0.250000,0,0);}
.mc2_c01064{transform:matrix(0.346926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346926,0.000000,0.000000,0.250000,0,0);}
.m8a_c01064{transform:matrix(0.347006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347006,0.000000,0.000000,0.250000,0,0);}
.m18_c01064{transform:matrix(0.347407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347407,0.000000,0.000000,0.250000,0,0);}
.m8d_c01064{transform:matrix(0.348263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348263,0.000000,0.000000,0.250000,0,0);}
.mb2_c01064{transform:matrix(0.348847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348847,0.000000,0.000000,0.250000,0,0);}
.m49_c01064{transform:matrix(0.349090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349090,0.000000,0.000000,0.250000,0,0);}
.mb0_c01064{transform:matrix(0.349099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349099,0.000000,0.000000,0.250000,0,0);}
.me_c01064{transform:matrix(0.349807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349807,0.000000,0.000000,0.250000,0,0);}
.mba_c01064{transform:matrix(0.350163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350163,0.000000,0.000000,0.250000,0,0);}
.m9c_c01064{transform:matrix(0.351897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351897,0.000000,0.000000,0.250000,0,0);}
.m4e_c01064{transform:matrix(0.352639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352639,0.000000,0.000000,0.250000,0,0);}
.m28_c01064{transform:matrix(0.352824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352824,0.000000,0.000000,0.250000,0,0);}
.m68_c01064{transform:matrix(0.353863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353863,0.000000,0.000000,0.250000,0,0);}
.mc3_c01064{transform:matrix(0.358845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358845,0.000000,0.000000,0.250000,0,0);}
.ma0_c01064{transform:matrix(0.359239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359239,0.000000,0.000000,0.250000,0,0);}
.m95_c01064{transform:matrix(0.360661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360661,0.000000,0.000000,0.250000,0,0);}
.m61_c01064{transform:matrix(0.361851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361851,0.000000,0.000000,0.250000,0,0);}
.ma_c01064{transform:matrix(0.362851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362851,0.000000,0.000000,0.250000,0,0);}
.m81_c01064{transform:matrix(0.365654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365654,0.000000,0.000000,0.250000,0,0);}
.m1d_c01064{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);}
.m7e_c01064{transform:matrix(0.379467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379467,0.000000,0.000000,0.250000,0,0);}
.m8_c01064{transform:matrix(0.380008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380008,0.000000,0.000000,0.250000,0,0);}
.m5e_c01064{transform:matrix(0.381169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381169,0.000000,0.000000,0.250000,0,0);}
.m39_c01064{transform:matrix(0.401732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401732,0.000000,0.000000,0.250000,0,0);}
.m5c_c01064{transform:matrix(0.406076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406076,0.000000,0.000000,0.250000,0,0);}
.m2c_c01064{transform:matrix(0.407484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407484,0.000000,0.000000,0.250000,0,0);}
.m4c_c01064{transform:matrix(0.408109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408109,0.000000,0.000000,0.250000,0,0);}
.m65_c01064{transform:matrix(0.414486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414486,0.000000,0.000000,0.250000,0,0);}
.m10_c01064{transform:matrix(0.420862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420862,0.000000,0.000000,0.250000,0,0);}
.v0_c01064{vertical-align:0.000000px;}
.ls10_c01064{letter-spacing:-2.986830px;}
.ls8_c01064{letter-spacing:-2.591827px;}
.ls7_c01064{letter-spacing:-2.564100px;}
.ls15_c01064{letter-spacing:-2.432430px;}
.lsc_c01064{letter-spacing:-1.045440px;}
.ls1b_c01064{letter-spacing:-0.029621px;}
.ls0_c01064{letter-spacing:0.000000px;}
.ls5_c01064{letter-spacing:1.529516px;}
.ls18_c01064{letter-spacing:2.467872px;}
.ls3_c01064{letter-spacing:2.606637px;}
.ls19_c01064{letter-spacing:2.682900px;}
.ls16_c01064{letter-spacing:2.712600px;}
.ls13_c01064{letter-spacing:2.717716px;}
.ls1d_c01064{letter-spacing:3.177900px;}
.lsb_c01064{letter-spacing:3.306610px;}
.ls11_c01064{letter-spacing:3.326400px;}
.ls6_c01064{letter-spacing:3.472524px;}
.ls9_c01064{letter-spacing:3.494700px;}
.ls12_c01064{letter-spacing:3.663000px;}
.ls1c_c01064{letter-spacing:3.697778px;}
.ls2_c01064{letter-spacing:3.702610px;}
.ls1f_c01064{letter-spacing:3.722400px;}
.ls1_c01064{letter-spacing:3.752110px;}
.ls17_c01064{letter-spacing:3.762000px;}
.ls14_c01064{letter-spacing:3.801610px;}
.ls4_c01064{letter-spacing:3.900610px;}
.lse_c01064{letter-spacing:3.960000px;}
.lsd_c01064{letter-spacing:55.598598px;}
.ls1e_c01064{letter-spacing:57.024198px;}
.lsa_c01064{letter-spacing:61.300998px;}
.ls1a_c01064{letter-spacing:65.577798px;}
.lsf_c01064{letter-spacing:68.428998px;}
.sc__c01064{text-shadow:none;}
.sc0_c01064{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01064{-webkit-text-stroke:0px transparent;}
.sc0_c01064{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01064{word-spacing:-18.513050px;}
.ws1_c01064{word-spacing:0.000000px;}
._3_c01064{margin-left:-10.956665px;}
._0_c01064{margin-left:-9.563796px;}
._1_c01064{width:14.069781px;}
._2_c01064{width:35.461651px;}
.fc0_c01064{color:transparent;}
.fs0_c01064{font-size:22.572000px;}
.fs1_c01064{font-size:23.166000px;}
.fs9_c01064{font-size:32.868000px;}
.fs3_c01064{font-size:34.056198px;}
.fsa_c01064{font-size:38.412000px;}
.fs18_c01064{font-size:53.658000px;}
.fs7_c01064{font-size:53.856198px;}
.fs16_c01064{font-size:54.252000px;}
.fs10_c01064{font-size:55.598598px;}
.fs1e_c01064{font-size:57.024198px;}
.fsd_c01064{font-size:61.300998px;}
.fs1c_c01064{font-size:63.558000px;}
.fs1b_c01064{font-size:65.577798px;}
.fse_c01064{font-size:66.132198px;}
.fs19_c01064{font-size:66.330000px;}
.fs13_c01064{font-size:66.528000px;}
.fs11_c01064{font-size:68.428998px;}
.fs15_c01064{font-size:69.498000px;}
.fsb_c01064{font-size:69.894000px;}
.fsc_c01064{font-size:70.092198px;}
.fs8_c01064{font-size:73.260000px;}
.fs5_c01064{font-size:74.052198px;}
.fs1f_c01064{font-size:74.448000px;}
.fs1a_c01064{font-size:74.844000px;}
.fs4_c01064{font-size:75.042198px;}
.fs17_c01064{font-size:75.240000px;}
.fs14_c01064{font-size:76.032198px;}
.fs2_c01064{font-size:77.616198px;}
.fs6_c01064{font-size:78.012198px;}
.fs1d_c01064{font-size:78.804000px;}
.fsf_c01064{font-size:79.200000px;}
.fs12_c01064{font-size:85.338000px;}
.y0_c01064{bottom:0.000000px;}
.y1_c01064{bottom:76.500000px;}
.y24_c01064{bottom:126.433935px;}
.y23_c01064{bottom:159.222735px;}
.y22_c01064{bottom:193.075785px;}
.y21_c01064{bottom:225.156735px;}
.y20_c01064{bottom:257.589135px;}
.y1f_c01064{bottom:291.090735px;}
.y1e_c01064{bottom:321.741135px;}
.y1d_c01064{bottom:351.673785px;}
.y1b_c01064{bottom:353.812185px;}
.y1c_c01064{bottom:384.462585px;}
.y1a_c01064{bottom:385.175385px;}
.y19_c01064{bottom:417.612735px;}
.y18_c01064{bottom:481.408335px;}
.y17_c01064{bottom:513.479385px;}
.y16_c01064{bottom:545.560335px;}
.y15_c01064{bottom:577.631385px;}
.y14_c01064{bottom:609.712335px;}
.y13_c01064{bottom:641.783385px;}
.y12_c01064{bottom:671.364585px;}
.y11_c01064{bottom:704.871135px;}
.y10_c01064{bottom:736.947135px;}
.yf_c01064{bottom:768.666735px;}
.ye_c01064{bottom:800.381385px;}
.yd_c01064{bottom:817.849935px;}
.yc_c01064{bottom:824.260185px;}
.yb_c01064{bottom:832.462335px;}
.y2_c01064{bottom:840.298185px;}
.ya_c01064{bottom:864.176985px;}
.y9_c01064{bottom:896.965785px;}
.y8_c01064{bottom:929.398185px;}
.y7_c01064{bottom:1064.830185px;}
.y6_c01064{bottom:1080.868185px;}
.y4_c01064{bottom:1087.283385px;}
.y5_c01064{bottom:1089.778185px;}
.y3_c01064{bottom:1099.400985px;}
.h2_c01064{height:23.541891px;}
.h3_c01064{height:24.161414px;}
.hb_c01064{height:34.280297px;}
.h5_c01064{height:35.519550px;}
.h12_c01064{height:37.028666px;}
.h21_c01064{height:37.978116px;}
.hc_c01064{height:40.062516px;}
.hf_c01064{height:40.826465px;}
.h1e_c01064{height:43.674813px;}
.h13_c01064{height:45.573713px;}
.h1b_c01064{height:52.662393px;}
.h9_c01064{height:52.856913px;}
.h19_c01064{height:53.245371px;}
.h16_c01064{height:65.293594px;}
.h1f_c01064{height:66.289008px;}
.h18_c01064{height:68.174552px;}
.hd_c01064{height:68.597139px;}
.he_c01064{height:68.791659px;}
.h10_c01064{height:68.973816px;}
.h1c_c01064{height:69.180117px;}
.h15_c01064{height:69.386625px;}
.ha_c01064{height:71.900684px;}
.h7_c01064{height:72.678183px;}
.h22_c01064{height:73.066641px;}
.h1d_c01064{height:73.455293px;}
.h6_c01064{height:73.649813px;}
.h1a_c01064{height:73.843945px;}
.h17_c01064{height:74.621444px;}
.h8_c01064{height:76.564706px;}
.h20_c01064{height:77.341816px;}
.h11_c01064{height:77.730469px;}
.h4_c01064{height:80.951269px;}
.h14_c01064{height:89.004867px;}
.h1_c01064{height:1110.000000px;}
.h0_c01064{height:1263.000000px;}
.w1_c01064{width:775.500000px;}
.w0_c01064{width:892.500000px;}
.x0_c01064{left:0.000000px;}
.x2_c01064{left:50.456985px;}
.x1_c01064{left:58.500000px;}
.x63_c01064{left:82.627035px;}
.x40_c01064{left:83.696235px;}
.x23_c01064{left:85.052535px;}
.x7_c01064{left:86.309835px;}
.x5f_c01064{left:116.133585px;}
.x81_c01064{left:117.371085px;}
.xf_c01064{left:118.430385px;}
.x3a_c01064{left:127.884885px;}
.x2a_c01064{left:129.033285px;}
.x1c_c01064{left:130.201485px;}
.x5d_c01064{left:138.844185px;}
.x7a_c01064{left:139.858935px;}
.x5e_c01064{left:160.148985px;}
.x72_c01064{left:161.228085px;}
.x77_c01064{left:162.292335px;}
.x10_c01064{left:163.356585px;}
.x5b_c01064{left:172.593285px;}
.x7d_c01064{left:182.062635px;}
.x24_c01064{left:184.399035px;}
.x35_c01064{left:185.809785px;}
.x7b_c01064{left:195.274185px;}
.x15_c01064{left:196.486935px;}
.x86_c01064{left:203.704035px;}
.x46_c01064{left:205.268235px;}
.x57_c01064{left:207.084885px;}
.x64_c01064{left:216.054285px;}
.x1d_c01064{left:218.128335px;}
.x25_c01064{left:228.399585px;}
.x3b_c01064{left:229.533135px;}
.x7e_c01064{left:238.383735px;}
.x2b_c01064{left:239.566785px;}
.x16_c01064{left:242.106135px;}
.x65_c01064{left:249.070785px;}
.x5c_c01064{left:250.595385px;}
.x8_c01064{left:252.402135px;}
.x82_c01064{left:260.668635px;}
.x26_c01064{left:262.609035px;}
.x2c_c01064{left:274.182135px;}
.x4e_c01064{left:283.275285px;}
.x83_c01064{left:293.789085px;}
.x36_c01064{left:306.079935px;}
.x9_c01064{left:318.192585px;}
.x1e_c01064{left:319.514235px;}
.x7f_c01064{left:326.756085px;}
.x17_c01064{left:328.458885px;}
.x84_c01064{left:337.101585px;}
.x1f_c01064{left:339.749835px;}
.x87_c01064{left:349.634985px;}
.x60_c01064{left:350.709135px;}
.x3c_c01064{left:352.243635px;}
.x66_c01064{left:359.490435px;}
.x47_c01064{left:360.970485px;}
.x18_c01064{left:363.262335px;}
.x4f_c01064{left:371.682285px;}
.x58_c01064{left:373.523685px;}
.x6f_c01064{left:382.364385px;}
.x20_c01064{left:383.789985px;}
.x53_c01064{left:385.062135px;}
.x50_c01064{left:394.605735px;}
.xa_c01064{left:396.328335px;}
.x73_c01064{left:404.471085px;}
.x54_c01064{left:405.659085px;}
.x80_c01064{left:416.415435px;}
.x3d_c01064{left:418.930035px;}
.x74_c01064{left:426.597585px;}
.x41_c01064{left:428.023185px;}
.x61_c01064{left:438.279585px;}
.x55_c01064{left:439.546785px;}
.x59_c01064{left:440.625885px;}
.x2d_c01064{left:450.070485px;}
.x19_c01064{left:452.332635px;}
.x42_c01064{left:459.104235px;}
.x62_c01064{left:460.930785px;}
.x37_c01064{left:462.341535px;}
.x43_c01064{left:468.652785px;}
.x7c_c01064{left:471.622785px;}
.x21_c01064{left:473.241435px;}
.x4c_c01064{left:483.779985px;}
.x48_c01064{left:484.824435px;}
.x70_c01064{left:493.199835px;}
.x51_c01064{left:494.694735px;}
.x69_c01064{left:504.263085px;}
.x67_c01064{left:505.460985px;}
.x49_c01064{left:516.504435px;}
.x44_c01064{left:518.197335px;}
.x78_c01064{left:525.671835px;}
.xb_c01064{left:528.691335px;}
.x11_c01064{left:529.720935px;}
.x3e_c01064{left:538.150785px;}
.x27_c01064{left:540.002085px;}
.x4a_c01064{left:549.515985px;}
.x2e_c01064{left:551.109885px;}
.x79_c01064{left:559.138785px;}
.x85_c01064{left:560.331735px;}
.x12_c01064{left:561.445485px;}
.x3f_c01064{left:566.855835px;}
.x75_c01064{left:570.197085px;}
.x28_c01064{left:571.612785px;}
.xc_c01064{left:573.102735px;}
.x2f_c01064{left:581.992935px;}
.x38_c01064{left:583.190835px;}
.x6a_c01064{left:592.328535px;}
.x13_c01064{left:594.848085px;}
.x56_c01064{left:604.045185px;}
.x52_c01064{left:605.178735px;}
.x68_c01064{left:614.059035px;}
.x5a_c01064{left:615.969735px;}
.x30_c01064{left:617.632935px;}
.x76_c01064{left:624.760935px;}
.x39_c01064{left:627.275535px;}
.xd_c01064{left:628.478385px;}
.x6b_c01064{left:632.953185px;}
.x31_c01064{left:637.556685px;}
.x4b_c01064{left:638.744685px;}
.x4d_c01064{left:648.362535px;}
.x32_c01064{left:655.406385px;}
.x88_c01064{left:659.490135px;}
.xe_c01064{left:660.702885px;}
.x6c_c01064{left:663.796635px;}
.x71_c01064{left:669.964335px;}
.x33_c01064{left:671.444385px;}
.x45_c01064{left:677.612085px;}
.x89_c01064{left:681.453285px;}
.x1a_c01064{left:683.200635px;}
.x29_c01064{left:692.734335px;}
.x14_c01064{left:693.976785px;}
.x6_c01064{left:697.912035px;}
.x3_c01064{left:703.361985px;}
.x4_c01064{left:705.094485px;}
.x5_c01064{left:706.520085px;}
.x22_c01064{left:709.371285px;}
.x8a_c01064{left:713.979735px;}
.x1b_c01064{left:715.633035px;}
.x6d_c01064{left:717.835785px;}
.x6e_c01064{left:719.593035px;}
.x34_c01064{left:729.304935px;}
@media print{
.v0_c01064{vertical-align:0.000000pt;}
.ls10_c01064{letter-spacing:-2.654960pt;}
.ls8_c01064{letter-spacing:-2.303846pt;}
.ls7_c01064{letter-spacing:-2.279200pt;}
.ls15_c01064{letter-spacing:-2.162160pt;}
.lsc_c01064{letter-spacing:-0.929280pt;}
.ls1b_c01064{letter-spacing:-0.026330pt;}
.ls0_c01064{letter-spacing:0.000000pt;}
.ls5_c01064{letter-spacing:1.359570pt;}
.ls18_c01064{letter-spacing:2.193664pt;}
.ls3_c01064{letter-spacing:2.317011pt;}
.ls19_c01064{letter-spacing:2.384800pt;}
.ls16_c01064{letter-spacing:2.411200pt;}
.ls13_c01064{letter-spacing:2.415747pt;}
.ls1d_c01064{letter-spacing:2.824800pt;}
.lsb_c01064{letter-spacing:2.939209pt;}
.ls11_c01064{letter-spacing:2.956800pt;}
.ls6_c01064{letter-spacing:3.086688pt;}
.ls9_c01064{letter-spacing:3.106400pt;}
.ls12_c01064{letter-spacing:3.256000pt;}
.ls1c_c01064{letter-spacing:3.286914pt;}
.ls2_c01064{letter-spacing:3.291209pt;}
.ls1f_c01064{letter-spacing:3.308800pt;}
.ls1_c01064{letter-spacing:3.335209pt;}
.ls17_c01064{letter-spacing:3.344000pt;}
.ls14_c01064{letter-spacing:3.379209pt;}
.ls4_c01064{letter-spacing:3.467209pt;}
.lse_c01064{letter-spacing:3.520000pt;}
.lsd_c01064{letter-spacing:49.420976pt;}
.ls1e_c01064{letter-spacing:50.688176pt;}
.lsa_c01064{letter-spacing:54.489776pt;}
.ls1a_c01064{letter-spacing:58.291376pt;}
.lsf_c01064{letter-spacing:60.825776pt;}
.ws0_c01064{word-spacing:-16.456044pt;}
.ws1_c01064{word-spacing:0.000000pt;}
._3_c01064{margin-left:-9.739258pt;}
._0_c01064{margin-left:-8.501152pt;}
._1_c01064{width:12.506472pt;}
._2_c01064{width:31.521468pt;}
.fs0_c01064{font-size:20.064000pt;}
.fs1_c01064{font-size:20.592000pt;}
.fs9_c01064{font-size:29.216000pt;}
.fs3_c01064{font-size:30.272176pt;}
.fsa_c01064{font-size:34.144000pt;}
.fs18_c01064{font-size:47.696000pt;}
.fs7_c01064{font-size:47.872176pt;}
.fs16_c01064{font-size:48.224000pt;}
.fs10_c01064{font-size:49.420976pt;}
.fs1e_c01064{font-size:50.688176pt;}
.fsd_c01064{font-size:54.489776pt;}
.fs1c_c01064{font-size:56.496000pt;}
.fs1b_c01064{font-size:58.291376pt;}
.fse_c01064{font-size:58.784176pt;}
.fs19_c01064{font-size:58.960000pt;}
.fs13_c01064{font-size:59.136000pt;}
.fs11_c01064{font-size:60.825776pt;}
.fs15_c01064{font-size:61.776000pt;}
.fsb_c01064{font-size:62.128000pt;}
.fsc_c01064{font-size:62.304176pt;}
.fs8_c01064{font-size:65.120000pt;}
.fs5_c01064{font-size:65.824176pt;}
.fs1f_c01064{font-size:66.176000pt;}
.fs1a_c01064{font-size:66.528000pt;}
.fs4_c01064{font-size:66.704176pt;}
.fs17_c01064{font-size:66.880000pt;}
.fs14_c01064{font-size:67.584176pt;}
.fs2_c01064{font-size:68.992176pt;}
.fs6_c01064{font-size:69.344176pt;}
.fs1d_c01064{font-size:70.048000pt;}
.fsf_c01064{font-size:70.400000pt;}
.fs12_c01064{font-size:75.856000pt;}
.y0_c01064{bottom:0.000000pt;}
.y1_c01064{bottom:68.000000pt;}
.y24_c01064{bottom:112.385720pt;}
.y23_c01064{bottom:141.531320pt;}
.y22_c01064{bottom:171.622920pt;}
.y21_c01064{bottom:200.139320pt;}
.y20_c01064{bottom:228.968120pt;}
.y1f_c01064{bottom:258.747320pt;}
.y1e_c01064{bottom:285.992120pt;}
.y1d_c01064{bottom:312.598920pt;}
.y1b_c01064{bottom:314.499720pt;}
.y1c_c01064{bottom:341.744520pt;}
.y1a_c01064{bottom:342.378120pt;}
.y19_c01064{bottom:371.211320pt;}
.y18_c01064{bottom:427.918520pt;}
.y17_c01064{bottom:456.426120pt;}
.y16_c01064{bottom:484.942520pt;}
.y15_c01064{bottom:513.450120pt;}
.y14_c01064{bottom:541.966520pt;}
.y13_c01064{bottom:570.474120pt;}
.y12_c01064{bottom:596.768520pt;}
.y11_c01064{bottom:626.552120pt;}
.y10_c01064{bottom:655.064120pt;}
.yf_c01064{bottom:683.259320pt;}
.ye_c01064{bottom:711.450120pt;}
.yd_c01064{bottom:726.977720pt;}
.yc_c01064{bottom:732.675720pt;}
.yb_c01064{bottom:739.966520pt;}
.y2_c01064{bottom:746.931720pt;}
.ya_c01064{bottom:768.157320pt;}
.y9_c01064{bottom:797.302920pt;}
.y8_c01064{bottom:826.131720pt;}
.y7_c01064{bottom:946.515720pt;}
.y6_c01064{bottom:960.771720pt;}
.y4_c01064{bottom:966.474120pt;}
.y5_c01064{bottom:968.691720pt;}
.y3_c01064{bottom:977.245320pt;}
.h2_c01064{height:20.926125pt;}
.h3_c01064{height:21.476813pt;}
.hb_c01064{height:30.471375pt;}
.h5_c01064{height:31.572934pt;}
.h12_c01064{height:32.914370pt;}
.h21_c01064{height:33.758325pt;}
.hc_c01064{height:35.611125pt;}
.hf_c01064{height:36.290191pt;}
.h1e_c01064{height:38.822056pt;}
.h13_c01064{height:40.509967pt;}
.h1b_c01064{height:46.811016pt;}
.h9_c01064{height:46.983923pt;}
.h19_c01064{height:47.329219pt;}
.h16_c01064{height:58.038750pt;}
.h1f_c01064{height:58.923563pt;}
.h18_c01064{height:60.599602pt;}
.hd_c01064{height:60.975234pt;}
.he_c01064{height:61.148141pt;}
.h10_c01064{height:61.310059pt;}
.h1c_c01064{height:61.493438pt;}
.h15_c01064{height:61.677000pt;}
.ha_c01064{height:63.911719pt;}
.h7_c01064{height:64.602829pt;}
.h22_c01064{height:64.948125pt;}
.h1d_c01064{height:65.293594pt;}
.h6_c01064{height:65.466501pt;}
.h1a_c01064{height:65.639063pt;}
.h17_c01064{height:66.330173pt;}
.h8_c01064{height:68.057516pt;}
.h20_c01064{height:68.748281pt;}
.h11_c01064{height:69.093750pt;}
.h4_c01064{height:71.956684pt;}
.h14_c01064{height:79.115438pt;}
.h1_c01064{height:986.666667pt;}
.h0_c01064{height:1122.666667pt;}
.w1_c01064{width:689.333333pt;}
.w0_c01064{width:793.333333pt;}
.x0_c01064{left:0.000000pt;}
.x2_c01064{left:44.850653pt;}
.x1_c01064{left:52.000000pt;}
.x63_c01064{left:73.446253pt;}
.x40_c01064{left:74.396653pt;}
.x23_c01064{left:75.602253pt;}
.x7_c01064{left:76.719853pt;}
.x5f_c01064{left:103.229853pt;}
.x81_c01064{left:104.329853pt;}
.xf_c01064{left:105.271453pt;}
.x3a_c01064{left:113.675453pt;}
.x2a_c01064{left:114.696253pt;}
.x1c_c01064{left:115.734653pt;}
.x5d_c01064{left:123.417053pt;}
.x7a_c01064{left:124.319053pt;}
.x5e_c01064{left:142.354653pt;}
.x72_c01064{left:143.313853pt;}
.x77_c01064{left:144.259853pt;}
.x10_c01064{left:145.205853pt;}
.x5b_c01064{left:153.416253pt;}
.x7d_c01064{left:161.833453pt;}
.x24_c01064{left:163.910253pt;}
.x35_c01064{left:165.164253pt;}
.x7b_c01064{left:173.577053pt;}
.x15_c01064{left:174.655053pt;}
.x86_c01064{left:181.070253pt;}
.x46_c01064{left:182.460653pt;}
.x57_c01064{left:184.075453pt;}
.x64_c01064{left:192.048253pt;}
.x1d_c01064{left:193.891853pt;}
.x25_c01064{left:203.021853pt;}
.x3b_c01064{left:204.029453pt;}
.x7e_c01064{left:211.896653pt;}
.x2b_c01064{left:212.948253pt;}
.x16_c01064{left:215.205453pt;}
.x65_c01064{left:221.396253pt;}
.x5c_c01064{left:222.751453pt;}
.x8_c01064{left:224.357453pt;}
.x82_c01064{left:231.705453pt;}
.x26_c01064{left:233.430253pt;}
.x2c_c01064{left:243.717453pt;}
.x4e_c01064{left:251.800253pt;}
.x83_c01064{left:261.145853pt;}
.x36_c01064{left:272.071053pt;}
.x9_c01064{left:282.837853pt;}
.x1e_c01064{left:284.012653pt;}
.x7f_c01064{left:290.449853pt;}
.x17_c01064{left:291.963453pt;}
.x84_c01064{left:299.645853pt;}
.x1f_c01064{left:301.999853pt;}
.x87_c01064{left:310.786653pt;}
.x60_c01064{left:311.741453pt;}
.x3c_c01064{left:313.105453pt;}
.x66_c01064{left:319.547053pt;}
.x47_c01064{left:320.862653pt;}
.x18_c01064{left:322.899853pt;}
.x4f_c01064{left:330.384253pt;}
.x58_c01064{left:332.021053pt;}
.x6f_c01064{left:339.879453pt;}
.x20_c01064{left:341.146653pt;}
.x53_c01064{left:342.277453pt;}
.x50_c01064{left:350.760653pt;}
.xa_c01064{left:352.291853pt;}
.x73_c01064{left:359.529853pt;}
.x54_c01064{left:360.585853pt;}
.x80_c01064{left:370.147053pt;}
.x3d_c01064{left:372.382253pt;}
.x74_c01064{left:379.197853pt;}
.x41_c01064{left:380.465053pt;}
.x61_c01064{left:389.581853pt;}
.x55_c01064{left:390.708253pt;}
.x59_c01064{left:391.667453pt;}
.x2d_c01064{left:400.062653pt;}
.x19_c01064{left:402.073453pt;}
.x42_c01064{left:408.092653pt;}
.x62_c01064{left:409.716253pt;}
.x37_c01064{left:410.970253pt;}
.x43_c01064{left:416.580253pt;}
.x7c_c01064{left:419.220253pt;}
.x21_c01064{left:420.659053pt;}
.x4c_c01064{left:430.026653pt;}
.x48_c01064{left:430.955053pt;}
.x70_c01064{left:438.399853pt;}
.x51_c01064{left:439.728653pt;}
.x69_c01064{left:448.233853pt;}
.x67_c01064{left:449.298653pt;}
.x49_c01064{left:459.115053pt;}
.x44_c01064{left:460.619853pt;}
.x78_c01064{left:467.263853pt;}
.xb_c01064{left:469.947853pt;}
.x11_c01064{left:470.863053pt;}
.x3e_c01064{left:478.356253pt;}
.x27_c01064{left:480.001853pt;}
.x4a_c01064{left:488.458653pt;}
.x2e_c01064{left:489.875453pt;}
.x79_c01064{left:497.012253pt;}
.x85_c01064{left:498.072653pt;}
.x12_c01064{left:499.062653pt;}
.x3f_c01064{left:503.871853pt;}
.x75_c01064{left:506.841853pt;}
.x28_c01064{left:508.100253pt;}
.xc_c01064{left:509.424653pt;}
.x2f_c01064{left:517.327053pt;}
.x38_c01064{left:518.391853pt;}
.x6a_c01064{left:526.514253pt;}
.x13_c01064{left:528.753853pt;}
.x56_c01064{left:536.929053pt;}
.x52_c01064{left:537.936653pt;}
.x68_c01064{left:545.830253pt;}
.x5a_c01064{left:547.528653pt;}
.x30_c01064{left:549.007053pt;}
.x76_c01064{left:555.343053pt;}
.x39_c01064{left:557.578253pt;}
.xd_c01064{left:558.647453pt;}
.x6b_c01064{left:562.625053pt;}
.x31_c01064{left:566.717053pt;}
.x4b_c01064{left:567.773053pt;}
.x4d_c01064{left:576.322253pt;}
.x32_c01064{left:582.583453pt;}
.x88_c01064{left:586.213453pt;}
.xe_c01064{left:587.291453pt;}
.x6c_c01064{left:590.041453pt;}
.x71_c01064{left:595.523853pt;}
.x33_c01064{left:596.839453pt;}
.x45_c01064{left:602.321853pt;}
.x89_c01064{left:605.736253pt;}
.x1a_c01064{left:607.289453pt;}
.x29_c01064{left:615.763853pt;}
.x14_c01064{left:616.868253pt;}
.x6_c01064{left:620.366253pt;}
.x3_c01064{left:625.210653pt;}
.x4_c01064{left:626.750653pt;}
.x5_c01064{left:628.017853pt;}
.x22_c01064{left:630.552253pt;}
.x8a_c01064{left:634.648653pt;}
.x1b_c01064{left:636.118253pt;}
.x6d_c01064{left:638.076253pt;}
.x6e_c01064{left:639.638253pt;}
.x34_c01064{left:648.271053pt;}
}





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

.ir_c01065:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01065{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01065;src:url('chunks/assets/font_1b2235a674fc25d135cb7e4f.woff2')format("woff");}.ff1_c01065{font-family:ff1_c01065;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01065;src:url('chunks/assets/font_ed3c5fb1e4f451bd6c534bcd.woff2')format("woff");}.ff2_c01065{font-family:ff2_c01065;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01065;src:url('chunks/assets/font_bf57c3a227c6b67dddb6a6d1.woff2')format("woff");}.ff3_c01065{font-family:ff3_c01065;line-height:0.666000;font-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_c01065{transform:matrix(0.105114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105114,0.000000,0.000000,0.250000,0,0);}
.m5e_c01065{transform:matrix(0.155366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155366,0.000000,0.000000,0.250000,0,0);}
.m47_c01065{transform:matrix(0.156177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156177,0.000000,0.000000,0.250000,0,0);}
.m2e_c01065{transform:matrix(0.158431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158431,0.000000,0.000000,0.250000,0,0);}
.m23_c01065{transform:matrix(0.161274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161274,0.000000,0.000000,0.250000,0,0);}
.m33_c01065{transform:matrix(0.172481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172481,0.000000,0.000000,0.250000,0,0);}
.m88_c01065{transform:matrix(0.189643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189643,0.000000,0.000000,0.250000,0,0);}
.m4c_c01065{transform:matrix(0.192307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192307,0.000000,0.000000,0.250000,0,0);}
.m85_c01065{transform:matrix(0.193453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193453,0.000000,0.000000,0.250000,0,0);}
.m76_c01065{transform:matrix(0.198198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198198,0.000000,0.000000,0.250000,0,0);}
.m9_c01065{transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);}
.m99_c01065{transform:matrix(0.203042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203042,0.000000,0.000000,0.250000,0,0);}
.m80_c01065{transform:matrix(0.215277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215277,0.000000,0.000000,0.250000,0,0);}
.m44_c01065{transform:matrix(0.220721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220721,0.000000,0.000000,0.250000,0,0);}
.mc6_c01065{transform:matrix(0.224645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224645,0.000000,0.000000,0.250000,0,0);}
.m89_c01065{transform:matrix(0.230016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230016,0.000000,0.000000,0.250000,0,0);}
.ma0_c01065{transform:matrix(0.235964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235964,0.000000,0.000000,0.250000,0,0);}
.ma9_c01065{transform:matrix(0.243207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243207,0.000000,0.000000,0.250000,0,0);}
.mb3_c01065{transform:matrix(0.249732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249732,0.000000,0.000000,0.250000,0,0);}
.m2_c01065{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m8d_c01065{transform:matrix(0.250306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250306,0.000000,0.000000,0.250000,0,0);}
.m0_c01065{transform:matrix(0.254056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254056,0.000000,0.000000,0.250000,0,0);}
.m2b_c01065{transform:matrix(0.254323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254323,0.000000,0.000000,0.250000,0,0);}
.mab_c01065{transform:matrix(0.254419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254419,0.000000,0.000000,0.250000,0,0);}
.m49_c01065{transform:matrix(0.257350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257350,0.000000,0.000000,0.250000,0,0);}
.m79_c01065{transform:matrix(0.259043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259043,0.000000,0.000000,0.250000,0,0);}
.m1d_c01065{transform:matrix(0.261702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261702,0.000000,0.000000,0.250000,0,0);}
.m78_c01065{transform:matrix(0.262299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262299,0.000000,0.000000,0.250000,0,0);}
.mcc_c01065{transform:matrix(0.262305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262305,0.000000,0.000000,0.250000,0,0);}
.mb2_c01065{transform:matrix(0.262482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262482,0.000000,0.000000,0.250000,0,0);}
.mc2_c01065{transform:matrix(0.262535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262535,0.000000,0.000000,0.250000,0,0);}
.m38_c01065{transform:matrix(0.263376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263376,0.000000,0.000000,0.250000,0,0);}
.mc9_c01065{transform:matrix(0.263927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263927,0.000000,0.000000,0.250000,0,0);}
.m30_c01065{transform:matrix(0.264544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264544,0.000000,0.000000,0.250000,0,0);}
.m82_c01065{transform:matrix(0.266031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266031,0.000000,0.000000,0.250000,0,0);}
.m25_c01065{transform:matrix(0.266054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266054,0.000000,0.000000,0.250000,0,0);}
.m77_c01065{transform:matrix(0.266086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266086,0.000000,0.000000,0.250000,0,0);}
.m87_c01065{transform:matrix(0.266551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266551,0.000000,0.000000,0.250000,0,0);}
.m86_c01065{transform:matrix(0.266633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266633,0.000000,0.000000,0.250000,0,0);}
.m90_c01065{transform:matrix(0.266921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266921,0.000000,0.000000,0.250000,0,0);}
.m60_c01065{transform:matrix(0.267754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267754,0.000000,0.000000,0.250000,0,0);}
.m56_c01065{transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);}
.m41_c01065{transform:matrix(0.268865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268865,0.000000,0.000000,0.250000,0,0);}
.m39_c01065{transform:matrix(0.269157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269157,0.000000,0.000000,0.250000,0,0);}
.m8e_c01065{transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);}
.m68_c01065{transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);}
.m7e_c01065{transform:matrix(0.271330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271330,0.000000,0.000000,0.250000,0,0);}
.mc4_c01065{transform:matrix(0.271537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271537,0.000000,0.000000,0.250000,0,0);}
.m32_c01065{transform:matrix(0.271746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271746,0.000000,0.000000,0.250000,0,0);}
.ma4_c01065{transform:matrix(0.271829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271829,0.000000,0.000000,0.250000,0,0);}
.m10_c01065{transform:matrix(0.272404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272404,0.000000,0.000000,0.250000,0,0);}
.m1a_c01065{transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);}
.mb9_c01065{transform:matrix(0.273384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273384,0.000000,0.000000,0.250000,0,0);}
.mb1_c01065{transform:matrix(0.273567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273567,0.000000,0.000000,0.250000,0,0);}
.m59_c01065{transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);}
.mcb_c01065{transform:matrix(0.273989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273989,0.000000,0.000000,0.250000,0,0);}
.m4b_c01065{transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);}
.ma5_c01065{transform:matrix(0.276672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276672,0.000000,0.000000,0.250000,0,0);}
.m13_c01065{transform:matrix(0.276739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276739,0.000000,0.000000,0.250000,0,0);}
.m12_c01065{transform:matrix(0.277548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277548,0.000000,0.000000,0.250000,0,0);}
.m22_c01065{transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);}
.m6b_c01065{transform:matrix(0.277922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277922,0.000000,0.000000,0.250000,0,0);}
.m69_c01065{transform:matrix(0.279437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279437,0.000000,0.000000,0.250000,0,0);}
.ma1_c01065{transform:matrix(0.280081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280081,0.000000,0.000000,0.250000,0,0);}
.m5a_c01065{transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);}
.m6d_c01065{transform:matrix(0.281425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281425,0.000000,0.000000,0.250000,0,0);}
.me_c01065{transform:matrix(0.281436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281436,0.000000,0.000000,0.250000,0,0);}
.m2c_c01065{transform:matrix(0.281827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281827,0.000000,0.000000,0.250000,0,0);}
.m6f_c01065{transform:matrix(0.282308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282308,0.000000,0.000000,0.250000,0,0);}
.m20_c01065{transform:matrix(0.284709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284709,0.000000,0.000000,0.250000,0,0);}
.m4d_c01065{transform:matrix(0.285995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285995,0.000000,0.000000,0.250000,0,0);}
.m24_c01065{transform:matrix(0.286213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286213,0.000000,0.000000,0.250000,0,0);}
.m36_c01065{transform:matrix(0.287139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287139,0.000000,0.000000,0.250000,0,0);}
.m5_c01065{transform:matrix(0.287325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287325,0.000000,0.000000,0.250000,0,0);}
.m7d_c01065{transform:matrix(0.287374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287374,0.000000,0.000000,0.250000,0,0);}
.m50_c01065{transform:matrix(0.287478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287478,0.000000,0.000000,0.250000,0,0);}
.mb6_c01065{transform:matrix(0.288531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288531,0.000000,0.000000,0.250000,0,0);}
.mca_c01065{transform:matrix(0.289027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289027,0.000000,0.000000,0.250000,0,0);}
.m26_c01065{transform:matrix(0.290584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290584,0.000000,0.000000,0.250000,0,0);}
.mb4_c01065{transform:matrix(0.290853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290853,0.000000,0.000000,0.250000,0,0);}
.m3_c01065{transform:matrix(0.291495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291495,0.000000,0.000000,0.250000,0,0);}
.m92_c01065{transform:matrix(0.291501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291501,0.000000,0.000000,0.250000,0,0);}
.m21_c01065{transform:matrix(0.292116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292116,0.000000,0.000000,0.250000,0,0);}
.m8b_c01065{transform:matrix(0.292459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292459,0.000000,0.000000,0.250000,0,0);}
.m57_c01065{transform:matrix(0.292465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292465,0.000000,0.000000,0.250000,0,0);}
.m98_c01065{transform:matrix(0.294362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294362,0.000000,0.000000,0.250000,0,0);}
.ma_c01065{transform:matrix(0.294503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294503,0.000000,0.000000,0.250000,0,0);}
.m65_c01065{transform:matrix(0.294868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294868,0.000000,0.000000,0.250000,0,0);}
.m17_c01065{transform:matrix(0.295375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295375,0.000000,0.000000,0.250000,0,0);}
.m93_c01065{transform:matrix(0.295616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295616,0.000000,0.000000,0.250000,0,0);}
.m7_c01065{transform:matrix(0.296080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296080,0.000000,0.000000,0.250000,0,0);}
.ma3_c01065{transform:matrix(0.296176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296176,0.000000,0.000000,0.250000,0,0);}
.m52_c01065{transform:matrix(0.296346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296346,0.000000,0.000000,0.250000,0,0);}
.m67_c01065{transform:matrix(0.296995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296995,0.000000,0.000000,0.250000,0,0);}
.m5c_c01065{transform:matrix(0.297146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297146,0.000000,0.000000,0.250000,0,0);}
.m6_c01065{transform:matrix(0.297812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297812,0.000000,0.000000,0.250000,0,0);}
.mb5_c01065{transform:matrix(0.297949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297949,0.000000,0.000000,0.250000,0,0);}
.mba_c01065{transform:matrix(0.298354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298354,0.000000,0.000000,0.250000,0,0);}
.m14_c01065{transform:matrix(0.298586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298586,0.000000,0.000000,0.250000,0,0);}
.m66_c01065{transform:matrix(0.299665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299665,0.000000,0.000000,0.250000,0,0);}
.m71_c01065{transform:matrix(0.300819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300819,0.000000,0.000000,0.250000,0,0);}
.m6c_c01065{transform:matrix(0.300828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300828,0.000000,0.000000,0.250000,0,0);}
.ma6_c01065{transform:matrix(0.300951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300951,0.000000,0.000000,0.250000,0,0);}
.m48_c01065{transform:matrix(0.301411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301411,0.000000,0.000000,0.250000,0,0);}
.m3f_c01065{transform:matrix(0.301695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301695,0.000000,0.000000,0.250000,0,0);}
.m4_c01065{transform:matrix(0.302547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302547,0.000000,0.000000,0.250000,0,0);}
.mb0_c01065{transform:matrix(0.303058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303058,0.000000,0.000000,0.250000,0,0);}
.m61_c01065{transform:matrix(0.303806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303806,0.000000,0.000000,0.250000,0,0);}
.m3d_c01065{transform:matrix(0.304143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304143,0.000000,0.000000,0.250000,0,0);}
.m3c_c01065{transform:matrix(0.304182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304182,0.000000,0.000000,0.250000,0,0);}
.m97_c01065{transform:matrix(0.304429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304429,0.000000,0.000000,0.250000,0,0);}
.m34_c01065{transform:matrix(0.304918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304918,0.000000,0.000000,0.250000,0,0);}
.m11_c01065{transform:matrix(0.306071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306071,0.000000,0.000000,0.250000,0,0);}
.m4a_c01065{transform:matrix(0.306753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306753,0.000000,0.000000,0.250000,0,0);}
.m43_c01065{transform:matrix(0.308254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308254,0.000000,0.000000,0.250000,0,0);}
.m29_c01065{transform:matrix(0.308332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308332,0.000000,0.000000,0.250000,0,0);}
.ma8_c01065{transform:matrix(0.309119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309119,0.000000,0.000000,0.250000,0,0);}
.m8_c01065{transform:matrix(0.310182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310182,0.000000,0.000000,0.250000,0,0);}
.m31_c01065{transform:matrix(0.310459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310459,0.000000,0.000000,0.250000,0,0);}
.m96_c01065{transform:matrix(0.310929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310929,0.000000,0.000000,0.250000,0,0);}
.m58_c01065{transform:matrix(0.311063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311063,0.000000,0.000000,0.250000,0,0);}
.m42_c01065{transform:matrix(0.311108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311108,0.000000,0.000000,0.250000,0,0);}
.mc_c01065{transform:matrix(0.311537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311537,0.000000,0.000000,0.250000,0,0);}
.maf_c01065{transform:matrix(0.312094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312094,0.000000,0.000000,0.250000,0,0);}
.m8f_c01065{transform:matrix(0.312272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312272,0.000000,0.000000,0.250000,0,0);}
.mbb_c01065{transform:matrix(0.312393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312393,0.000000,0.000000,0.250000,0,0);}
.m63_c01065{transform:matrix(0.312562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312562,0.000000,0.000000,0.250000,0,0);}
.mbe_c01065{transform:matrix(0.312698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312698,0.000000,0.000000,0.250000,0,0);}
.m7b_c01065{transform:matrix(0.312713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312713,0.000000,0.000000,0.250000,0,0);}
.m54_c01065{transform:matrix(0.312771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312771,0.000000,0.000000,0.250000,0,0);}
.m1e_c01065{transform:matrix(0.313682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313682,0.000000,0.000000,0.250000,0,0);}
.m9e_c01065{transform:matrix(0.313811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313811,0.000000,0.000000,0.250000,0,0);}
.m7f_c01065{transform:matrix(0.313846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313846,0.000000,0.000000,0.250000,0,0);}
.m91_c01065{transform:matrix(0.315357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315357,0.000000,0.000000,0.250000,0,0);}
.m7c_c01065{transform:matrix(0.315379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315379,0.000000,0.000000,0.250000,0,0);}
.mbf_c01065{transform:matrix(0.315522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315522,0.000000,0.000000,0.250000,0,0);}
.m74_c01065{transform:matrix(0.315612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315612,0.000000,0.000000,0.250000,0,0);}
.mc3_c01065{transform:matrix(0.315806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315806,0.000000,0.000000,0.250000,0,0);}
.m1c_c01065{transform:matrix(0.315985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315985,0.000000,0.000000,0.250000,0,0);}
.m2f_c01065{transform:matrix(0.316292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316292,0.000000,0.000000,0.250000,0,0);}
.m72_c01065{transform:matrix(0.316439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316439,0.000000,0.000000,0.250000,0,0);}
.m6a_c01065{transform:matrix(0.316495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316495,0.000000,0.000000,0.250000,0,0);}
.m84_c01065{transform:matrix(0.317401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317401,0.000000,0.000000,0.250000,0,0);}
.m19_c01065{transform:matrix(0.317540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317540,0.000000,0.000000,0.250000,0,0);}
.m4e_c01065{transform:matrix(0.318117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318117,0.000000,0.000000,0.250000,0,0);}
.m27_c01065{transform:matrix(0.318887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318887,0.000000,0.000000,0.250000,0,0);}
.mc1_c01065{transform:matrix(0.319203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319203,0.000000,0.000000,0.250000,0,0);}
.m9d_c01065{transform:matrix(0.319228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319228,0.000000,0.000000,0.250000,0,0);}
.mb7_c01065{transform:matrix(0.319502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319502,0.000000,0.000000,0.250000,0,0);}
.m9f_c01065{transform:matrix(0.319887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319887,0.000000,0.000000,0.250000,0,0);}
.m81_c01065{transform:matrix(0.320313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320313,0.000000,0.000000,0.250000,0,0);}
.m8c_c01065{transform:matrix(0.320385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320385,0.000000,0.000000,0.250000,0,0);}
.mf_c01065{transform:matrix(0.320656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320656,0.000000,0.000000,0.250000,0,0);}
.m64_c01065{transform:matrix(0.321201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321201,0.000000,0.000000,0.250000,0,0);}
.mad_c01065{transform:matrix(0.322080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322080,0.000000,0.000000,0.250000,0,0);}
.m5b_c01065{transform:matrix(0.322936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322936,0.000000,0.000000,0.250000,0,0);}
.m40_c01065{transform:matrix(0.322974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322974,0.000000,0.000000,0.250000,0,0);}
.m1f_c01065{transform:matrix(0.323436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323436,0.000000,0.000000,0.250000,0,0);}
.m70_c01065{transform:matrix(0.324782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324782,0.000000,0.000000,0.250000,0,0);}
.m46_c01065{transform:matrix(0.324918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324918,0.000000,0.000000,0.250000,0,0);}
.m3a_c01065{transform:matrix(0.325094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325094,0.000000,0.000000,0.250000,0,0);}
.m83_c01065{transform:matrix(0.326618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326618,0.000000,0.000000,0.250000,0,0);}
.m1b_c01065{transform:matrix(0.328778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328778,0.000000,0.000000,0.250000,0,0);}
.m9b_c01065{transform:matrix(0.331240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331240,0.000000,0.000000,0.250000,0,0);}
.m2a_c01065{transform:matrix(0.331766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331766,0.000000,0.000000,0.250000,0,0);}
.m75_c01065{transform:matrix(0.333147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333147,0.000000,0.000000,0.250000,0,0);}
.mbc_c01065{transform:matrix(0.333658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333658,0.000000,0.000000,0.250000,0,0);}
.maa_c01065{transform:matrix(0.335358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335358,0.000000,0.000000,0.250000,0,0);}
.m4f_c01065{transform:matrix(0.336676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336676,0.000000,0.000000,0.250000,0,0);}
.mc0_c01065{transform:matrix(0.336817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336817,0.000000,0.000000,0.250000,0,0);}
.m8a_c01065{transform:matrix(0.337051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337051,0.000000,0.000000,0.250000,0,0);}
.mac_c01065{transform:matrix(0.337616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337616,0.000000,0.000000,0.250000,0,0);}
.m6e_c01065{transform:matrix(0.339063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339063,0.000000,0.000000,0.250000,0,0);}
.m73_c01065{transform:matrix(0.339155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339155,0.000000,0.000000,0.250000,0,0);}
.ma7_c01065{transform:matrix(0.339792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339792,0.000000,0.000000,0.250000,0,0);}
.m15_c01065{transform:matrix(0.340561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340561,0.000000,0.000000,0.250000,0,0);}
.m53_c01065{transform:matrix(0.340884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340884,0.000000,0.000000,0.250000,0,0);}
.m9a_c01065{transform:matrix(0.341476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341476,0.000000,0.000000,0.250000,0,0);}
.m45_c01065{transform:matrix(0.342481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342481,0.000000,0.000000,0.250000,0,0);}
.mc7_c01065{transform:matrix(0.342639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342639,0.000000,0.000000,0.250000,0,0);}
.m5d_c01065{transform:matrix(0.344684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344684,0.000000,0.000000,0.250000,0,0);}
.m18_c01065{transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);}
.mcd_c01065{transform:matrix(0.346446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346446,0.000000,0.000000,0.250000,0,0);}
.mc5_c01065{transform:matrix(0.346774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346774,0.000000,0.000000,0.250000,0,0);}
.m9c_c01065{transform:matrix(0.347328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347328,0.000000,0.000000,0.250000,0,0);}
.mbd_c01065{transform:matrix(0.348233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348233,0.000000,0.000000,0.250000,0,0);}
.mb_c01065{transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);}
.m3b_c01065{transform:matrix(0.355252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355252,0.000000,0.000000,0.250000,0,0);}
.md_c01065{transform:matrix(0.356167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356167,0.000000,0.000000,0.250000,0,0);}
.ma2_c01065{transform:matrix(0.357996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357996,0.000000,0.000000,0.250000,0,0);}
.m37_c01065{transform:matrix(0.358986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358986,0.000000,0.000000,0.250000,0,0);}
.m62_c01065{transform:matrix(0.359199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359199,0.000000,0.000000,0.250000,0,0);}
.m7a_c01065{transform:matrix(0.363117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363117,0.000000,0.000000,0.250000,0,0);}
.m28_c01065{transform:matrix(0.365365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365365,0.000000,0.000000,0.250000,0,0);}
.m1_c01065{transform:matrix(0.367817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367817,0.000000,0.000000,0.250000,0,0);}
.m55_c01065{transform:matrix(0.370730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370730,0.000000,0.000000,0.250000,0,0);}
.m94_c01065{transform:matrix(0.370991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370991,0.000000,0.000000,0.250000,0,0);}
.mae_c01065{transform:matrix(0.373079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373079,0.000000,0.000000,0.250000,0,0);}
.mb8_c01065{transform:matrix(0.379096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379096,0.000000,0.000000,0.250000,0,0);}
.m16_c01065{transform:matrix(0.380571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380571,0.000000,0.000000,0.250000,0,0);}
.mc8_c01065{transform:matrix(0.380686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380686,0.000000,0.000000,0.250000,0,0);}
.m35_c01065{transform:matrix(0.388979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388979,0.000000,0.000000,0.250000,0,0);}
.m3e_c01065{transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);}
.m95_c01065{transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);}
.m51_c01065{transform:matrix(0.405805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405805,0.000000,0.000000,0.250000,0,0);}
.m2d_c01065{transform:matrix(0.424535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424535,0.000000,0.000000,0.250000,0,0);}
.v1_c01065{vertical-align:-5.702400px;}
.v0_c01065{vertical-align:0.000000px;}
.ls12_c01065{letter-spacing:-3.437280px;}
.ls1c_c01065{letter-spacing:-2.654190px;}
.ls7_c01065{letter-spacing:-2.647267px;}
.ls1d_c01065{letter-spacing:-1.114760px;}
.ls20_c01065{letter-spacing:-0.718544px;}
.ls1e_c01065{letter-spacing:-0.470171px;}
.ls3_c01065{letter-spacing:0.000000px;}
.ls1b_c01065{letter-spacing:0.370617px;}
.ls14_c01065{letter-spacing:0.605090px;}
.lsc_c01065{letter-spacing:0.998398px;}
.ls10_c01065{letter-spacing:1.081598px;}
.ls0_c01065{letter-spacing:1.179925px;}
.ls19_c01065{letter-spacing:1.558106px;}
.ls1a_c01065{letter-spacing:1.626178px;}
.ls17_c01065{letter-spacing:1.716942px;}
.ls6_c01065{letter-spacing:1.750485px;}
.ls9_c01065{letter-spacing:2.544310px;}
.ls8_c01065{letter-spacing:3.425400px;}
.ls1f_c01065{letter-spacing:3.524400px;}
.ls15_c01065{letter-spacing:3.603610px;}
.lsb_c01065{letter-spacing:3.702610px;}
.ls11_c01065{letter-spacing:3.722400px;}
.ls16_c01065{letter-spacing:3.762000px;}
.ls2_c01065{letter-spacing:3.781810px;}
.ls5_c01065{letter-spacing:3.831310px;}
.lse_c01065{letter-spacing:4.049110px;}
.ls1_c01065{letter-spacing:4.296610px;}
.ls4_c01065{letter-spacing:51.321798px;}
.lsd_c01065{letter-spacing:52.747398px;}
.lsf_c01065{letter-spacing:55.598598px;}
.ls18_c01065{letter-spacing:59.875398px;}
.lsa_c01065{letter-spacing:61.300998px;}
.ls13_c01065{letter-spacing:62.726400px;}
.sc__c01065{text-shadow:none;}
.sc0_c01065{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01065{-webkit-text-stroke:0px transparent;}
.sc0_c01065{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01065{word-spacing:-18.909050px;}
.ws1_c01065{word-spacing:-16.434050px;}
.ws2_c01065{word-spacing:0.000000px;}
._5_c01065{margin-left:-12.804264px;}
._3_c01065{margin-left:-6.691762px;}
._1_c01065{width:8.698041px;}
._4_c01065{width:22.054758px;}
._2_c01065{width:25.106252px;}
._0_c01065{width:30.178907px;}
.fc0_c01065{color:transparent;}
.fs1a_c01065{font-size:36.630000px;}
.fs8_c01065{font-size:39.600000px;}
.fs5_c01065{font-size:50.886198px;}
.fs3_c01065{font-size:51.321798px;}
.fsa_c01065{font-size:52.747398px;}
.fsc_c01065{font-size:55.598598px;}
.fs14_c01065{font-size:59.875398px;}
.fs7_c01065{font-size:61.300998px;}
.fsf_c01065{font-size:62.726400px;}
.fs17_c01065{font-size:65.736198px;}
.fs2_c01065{font-size:66.330000px;}
.fs13_c01065{font-size:66.528000px;}
.fs18_c01065{font-size:67.320000px;}
.fs6_c01065{font-size:68.508000px;}
.fs16_c01065{font-size:70.488000px;}
.fs11_c01065{font-size:72.072198px;}
.fs9_c01065{font-size:74.052198px;}
.fsd_c01065{font-size:74.448000px;}
.fs12_c01065{font-size:75.240000px;}
.fs1_c01065{font-size:75.636198px;}
.fs15_c01065{font-size:75.834000px;}
.fs4_c01065{font-size:76.626198px;}
.fs10_c01065{font-size:78.804000px;}
.fs19_c01065{font-size:79.200000px;}
.fsb_c01065{font-size:80.982198px;}
.fs0_c01065{font-size:85.932198px;}
.fse_c01065{font-size:98.208000px;}
.y0_c01065{bottom:0.000000px;}
.y1_c01065{bottom:76.500000px;}
.y20_c01065{bottom:126.785385px;}
.y1f_c01065{bottom:158.509935px;}
.y1e_c01065{bottom:175.973535px;}
.y1d_c01065{bottom:187.734735px;}
.y1c_c01065{bottom:192.367935px;}
.y1a_c01065{bottom:225.508185px;}
.y1b_c01065{bottom:226.933785px;}
.y19_c01065{bottom:258.301935px;}
.y18_c01065{bottom:290.734335px;}
.y17_c01065{bottom:355.599135px;}
.y16_c01065{bottom:387.675135px;}
.y15_c01065{bottom:419.394735px;}
.y14_c01065{bottom:451.465785px;}
.y13_c01065{bottom:472.141935px;}
.y12_c01065{bottom:483.541785px;}
.y11_c01065{bottom:515.617785px;}
.y10_c01065{bottom:547.342335px;}
.yf_c01065{bottom:579.413385px;}
.ye_c01065{bottom:611.494335px;}
.yd_c01065{bottom:643.565385px;}
.yc_c01065{bottom:707.360985px;}
.yb_c01065{bottom:739.085535px;}
.ya_c01065{bottom:771.517935px;}
.y9_c01065{bottom:790.758585px;}
.y8_c01065{bottom:803.588985px;}
.y7_c01065{bottom:835.669935px;}
.y6_c01065{bottom:836.377785px;}
.y5_c01065{bottom:868.102335px;}
.y4_c01065{bottom:900.529785px;}
.y3_c01065{bottom:932.962185px;}
.y2_c01065{bottom:1074.452985px;}
.h5_c01065{height:34.180317px;}
.hc_c01065{height:35.129767px;}
.he_c01065{height:37.028666px;}
.h1a_c01065{height:38.203945px;}
.h16_c01065{height:39.877015px;}
.h9_c01065{height:40.826465px;}
.ha_c01065{height:41.301563px;}
.h11_c01065{height:41.775782px;}
.h7_c01065{height:53.072714px;}
.h18_c01065{height:64.516483px;}
.h4_c01065{height:69.180117px;}
.h15_c01065{height:69.386625px;}
.h13_c01065{height:70.734921px;}
.h8_c01065{height:71.451703px;}
.hb_c01065{height:72.678183px;}
.hf_c01065{height:73.066641px;}
.h14_c01065{height:73.843945px;}
.h3_c01065{height:74.232792px;}
.h17_c01065{height:74.426924px;}
.h6_c01065{height:75.204423px;}
.h12_c01065{height:77.341816px;}
.hd_c01065{height:79.479599px;}
.h19_c01065{height:82.603125px;}
.h2_c01065{height:84.337753px;}
.h10_c01065{height:96.385781px;}
.h1_c01065{height:1110.000000px;}
.h0_c01065{height:1263.000000px;}
.w1_c01065{width:775.500000px;}
.w0_c01065{width:892.500000px;}
.x0_c01065{left:0.000000px;}
.x1_c01065{left:58.500000px;}
.x4c_c01065{left:66.593985px;}
.xf_c01065{left:68.014635px;}
.x3_c01065{left:69.504585px;}
.x3d_c01065{left:100.447035px;}
.x17_c01065{left:101.585535px;}
.x30_c01065{left:112.723035px;}
.x5a_c01065{left:122.385435px;}
.x1e_c01065{left:123.444735px;}
.x49_c01065{left:132.874485px;}
.x4_c01065{left:134.270385px;}
.x36_c01065{left:145.135635px;}
.x28_c01065{left:155.332635px;}
.x41_c01065{left:156.877035px;}
.x5_c01065{left:158.263035px;}
.x64_c01065{left:165.673185px;}
.x4d_c01065{left:166.806735px;}
.x52_c01065{left:168.242235px;}
.x10_c01065{left:177.701685px;}
.x37_c01065{left:179.637135px;}
.x1f_c01065{left:188.002635px;}
.x6_c01065{left:189.180735px;}
.x70_c01065{left:199.763835px;}
.x29_c01065{left:201.120135px;}
.x71_c01065{left:210.579585px;}
.x4e_c01065{left:211.762635px;}
.x11_c01065{left:213.118935px;}
.x3e_c01065{left:221.627985px;}
.x20_c01065{left:222.761535px;}
.x31_c01065{left:233.953485px;}
.x65_c01065{left:244.145535px;}
.x18_c01065{left:245.551335px;}
.x60_c01065{left:253.738635px;}
.x45_c01065{left:255.619635px;}
.x5b_c01065{left:266.598735px;}
.x38_c01065{left:268.445085px;}
.x7_c01065{left:278.285685px;}
.x53_c01065{left:287.898585px;}
.x21_c01065{left:289.888485px;}
.x32_c01065{left:300.813135px;}
.x2a_c01065{left:312.549585px;}
.x5d_c01065{left:321.415035px;}
.x22_c01065{left:322.484235px;}
.x42_c01065{left:333.433635px;}
.x19_c01065{left:334.443435px;}
.x6d_c01065{left:342.799035px;}
.x8_c01065{left:345.719535px;}
.x69_c01065{left:355.104735px;}
.x12_c01065{left:357.584685px;}
.x1a_c01065{left:366.682785px;}
.x23_c01065{left:368.321235px;}
.x43_c01065{left:378.047985px;}
.x13_c01065{left:389.363685px;}
.x9_c01065{left:390.987285px;}
.x39_c01065{left:395.387835px;}
.x72_c01065{left:399.644835px;}
.x2b_c01065{left:400.699185px;}
.x54_c01065{left:410.198235px;}
.x3a_c01065{left:411.920835px;}
.x14_c01065{left:422.281185px;}
.x3f_c01065{left:423.850335px;}
.xa_c01065{left:434.037435px;}
.x2c_c01065{left:443.655285px;}
.x55_c01065{left:454.396785px;}
.x1b_c01065{left:456.327285px;}
.x4f_c01065{left:467.232135px;}
.x5e_c01065{left:476.087685px;}
.x61_c01065{left:477.340035px;}
.x47_c01065{left:487.868685px;}
.x6a_c01065{left:489.125985px;}
.x15_c01065{left:498.897285px;}
.x46_c01065{left:509.945685px;}
.x48_c01065{left:511.539585px;}
.x40_c01065{left:521.533635px;}
.x58_c01065{left:525.716385px;}
.x3b_c01065{left:532.923585px;}
.x66_c01065{left:541.957335px;}
.x2d_c01065{left:544.006635px;}
.x24_c01065{left:554.767935px;}
.xb_c01065{left:555.975735px;}
.x62_c01065{left:565.311435px;}
.x1c_c01065{left:566.628135px;}
.x73_c01065{left:574.855035px;}
.x3c_c01065{left:576.666735px;}
.x5c_c01065{left:577.820085px;}
.x5f_c01065{left:586.131135px;}
.x4a_c01065{left:588.363585px;}
.x6e_c01065{left:598.050735px;}
.xc_c01065{left:599.832735px;}
.x6b_c01065{left:609.227835px;}
.x25_c01065{left:610.277235px;}
.x6f_c01065{left:619.370385px;}
.x50_c01065{left:621.716685px;}
.x33_c01065{left:631.646385px;}
.x56_c01065{left:636.928035px;}
.x26_c01065{left:640.224735px;}
.x44_c01065{left:642.729435px;}
.xd_c01065{left:644.422335px;}
.x2e_c01065{left:653.218485px;}
.x1d_c01065{left:655.866735px;}
.x27_c01065{left:664.979685px;}
.x34_c01065{left:676.102335px;}
.xe_c01065{left:677.790285px;}
.x59_c01065{left:687.061635px;}
.x2_c01065{left:688.645635px;}
.x63_c01065{left:697.436835px;}
.x2f_c01065{left:698.619885px;}
.x51_c01065{left:703.970835px;}
.x74_c01065{left:708.316935px;}
.x35_c01065{left:709.712835px;}
.x16_c01065{left:711.079035px;}
.x6c_c01065{left:712.534335px;}
.x4b_c01065{left:721.469085px;}
.x67_c01065{left:727.171485px;}
.x57_c01065{left:734.225235px;}
.x68_c01065{left:740.991885px;}
@media print{
.v1_c01065{vertical-align:-5.068800pt;}
.v0_c01065{vertical-align:0.000000pt;}
.ls12_c01065{letter-spacing:-3.055360pt;}
.ls1c_c01065{letter-spacing:-2.359280pt;}
.ls7_c01065{letter-spacing:-2.353126pt;}
.ls1d_c01065{letter-spacing:-0.990898pt;}
.ls20_c01065{letter-spacing:-0.638706pt;}
.ls1e_c01065{letter-spacing:-0.417930pt;}
.ls3_c01065{letter-spacing:0.000000pt;}
.ls1b_c01065{letter-spacing:0.329438pt;}
.ls14_c01065{letter-spacing:0.537857pt;}
.lsc_c01065{letter-spacing:0.887465pt;}
.ls10_c01065{letter-spacing:0.961420pt;}
.ls0_c01065{letter-spacing:1.048822pt;}
.ls19_c01065{letter-spacing:1.384983pt;}
.ls1a_c01065{letter-spacing:1.445492pt;}
.ls17_c01065{letter-spacing:1.526170pt;}
.ls6_c01065{letter-spacing:1.555987pt;}
.ls9_c01065{letter-spacing:2.261609pt;}
.ls8_c01065{letter-spacing:3.044800pt;}
.ls1f_c01065{letter-spacing:3.132800pt;}
.ls15_c01065{letter-spacing:3.203209pt;}
.lsb_c01065{letter-spacing:3.291209pt;}
.ls11_c01065{letter-spacing:3.308800pt;}
.ls16_c01065{letter-spacing:3.344000pt;}
.ls2_c01065{letter-spacing:3.361609pt;}
.ls5_c01065{letter-spacing:3.405609pt;}
.lse_c01065{letter-spacing:3.599209pt;}
.ls1_c01065{letter-spacing:3.819209pt;}
.ls4_c01065{letter-spacing:45.619376pt;}
.lsd_c01065{letter-spacing:46.886576pt;}
.lsf_c01065{letter-spacing:49.420976pt;}
.ls18_c01065{letter-spacing:53.222576pt;}
.lsa_c01065{letter-spacing:54.489776pt;}
.ls13_c01065{letter-spacing:55.756800pt;}
.ws0_c01065{word-spacing:-16.808044pt;}
.ws1_c01065{word-spacing:-14.608044pt;}
.ws2_c01065{word-spacing:0.000000pt;}
._5_c01065{margin-left:-11.381568pt;}
._3_c01065{margin-left:-5.948233pt;}
._1_c01065{width:7.731592pt;}
._4_c01065{width:19.604229pt;}
._2_c01065{width:22.316668pt;}
._0_c01065{width:26.825695pt;}
.fs1a_c01065{font-size:32.560000pt;}
.fs8_c01065{font-size:35.200000pt;}
.fs5_c01065{font-size:45.232176pt;}
.fs3_c01065{font-size:45.619376pt;}
.fsa_c01065{font-size:46.886576pt;}
.fsc_c01065{font-size:49.420976pt;}
.fs14_c01065{font-size:53.222576pt;}
.fs7_c01065{font-size:54.489776pt;}
.fsf_c01065{font-size:55.756800pt;}
.fs17_c01065{font-size:58.432176pt;}
.fs2_c01065{font-size:58.960000pt;}
.fs13_c01065{font-size:59.136000pt;}
.fs18_c01065{font-size:59.840000pt;}
.fs6_c01065{font-size:60.896000pt;}
.fs16_c01065{font-size:62.656000pt;}
.fs11_c01065{font-size:64.064176pt;}
.fs9_c01065{font-size:65.824176pt;}
.fsd_c01065{font-size:66.176000pt;}
.fs12_c01065{font-size:66.880000pt;}
.fs1_c01065{font-size:67.232176pt;}
.fs15_c01065{font-size:67.408000pt;}
.fs4_c01065{font-size:68.112176pt;}
.fs10_c01065{font-size:70.048000pt;}
.fs19_c01065{font-size:70.400000pt;}
.fsb_c01065{font-size:71.984176pt;}
.fs0_c01065{font-size:76.384176pt;}
.fse_c01065{font-size:87.296000pt;}
.y0_c01065{bottom:0.000000pt;}
.y1_c01065{bottom:68.000000pt;}
.y20_c01065{bottom:112.698120pt;}
.y1f_c01065{bottom:140.897720pt;}
.y1e_c01065{bottom:156.420920pt;}
.y1d_c01065{bottom:166.875320pt;}
.y1c_c01065{bottom:170.993720pt;}
.y1a_c01065{bottom:200.451720pt;}
.y1b_c01065{bottom:201.718920pt;}
.y19_c01065{bottom:229.601720pt;}
.y18_c01065{bottom:258.430520pt;}
.y17_c01065{bottom:316.088120pt;}
.y16_c01065{bottom:344.600120pt;}
.y15_c01065{bottom:372.795320pt;}
.y14_c01065{bottom:401.302920pt;}
.y13_c01065{bottom:419.681720pt;}
.y12_c01065{bottom:429.814920pt;}
.y11_c01065{bottom:458.326920pt;}
.y10_c01065{bottom:486.526520pt;}
.yf_c01065{bottom:515.034120pt;}
.ye_c01065{bottom:543.550520pt;}
.yd_c01065{bottom:572.058120pt;}
.yc_c01065{bottom:628.765320pt;}
.yb_c01065{bottom:656.964920pt;}
.ya_c01065{bottom:685.793720pt;}
.y9_c01065{bottom:702.896520pt;}
.y8_c01065{bottom:714.301320pt;}
.y7_c01065{bottom:742.817720pt;}
.y6_c01065{bottom:743.446920pt;}
.y5_c01065{bottom:771.646520pt;}
.y4_c01065{bottom:800.470920pt;}
.y3_c01065{bottom:829.299720pt;}
.y2_c01065{bottom:955.069320pt;}
.h5_c01065{height:30.382504pt;}
.hc_c01065{height:31.226460pt;}
.he_c01065{height:32.914370pt;}
.h1a_c01065{height:33.959063pt;}
.h16_c01065{height:35.446236pt;}
.h9_c01065{height:36.290191pt;}
.ha_c01065{height:36.712500pt;}
.h11_c01065{height:37.134029pt;}
.h7_c01065{height:47.175746pt;}
.h18_c01065{height:57.347985pt;}
.h4_c01065{height:61.493438pt;}
.h15_c01065{height:61.677000pt;}
.h13_c01065{height:62.875485pt;}
.h8_c01065{height:63.512625pt;}
.hb_c01065{height:64.602829pt;}
.hf_c01065{height:64.948125pt;}
.h14_c01065{height:65.639063pt;}
.h3_c01065{height:65.984704pt;}
.h17_c01065{height:66.157266pt;}
.h6_c01065{height:66.848376pt;}
.h12_c01065{height:68.748281pt;}
.hd_c01065{height:70.648532pt;}
.h19_c01065{height:73.425000pt;}
.h2_c01065{height:74.966891pt;}
.h10_c01065{height:85.676250pt;}
.h1_c01065{height:986.666667pt;}
.h0_c01065{height:1122.666667pt;}
.w1_c01065{width:689.333333pt;}
.w0_c01065{width:793.333333pt;}
.x0_c01065{left:0.000000pt;}
.x1_c01065{left:52.000000pt;}
.x4c_c01065{left:59.194653pt;}
.xf_c01065{left:60.457453pt;}
.x3_c01065{left:61.781853pt;}
.x3d_c01065{left:89.286253pt;}
.x17_c01065{left:90.298253pt;}
.x30_c01065{left:100.198253pt;}
.x5a_c01065{left:108.787053pt;}
.x1e_c01065{left:109.728653pt;}
.x49_c01065{left:118.110653pt;}
.x4_c01065{left:119.351453pt;}
.x36_c01065{left:129.009453pt;}
.x28_c01065{left:138.073453pt;}
.x41_c01065{left:139.446253pt;}
.x5_c01065{left:140.678253pt;}
.x64_c01065{left:147.265053pt;}
.x4d_c01065{left:148.272653pt;}
.x52_c01065{left:149.548653pt;}
.x10_c01065{left:157.957053pt;}
.x37_c01065{left:159.677453pt;}
.x1f_c01065{left:167.113453pt;}
.x6_c01065{left:168.160653pt;}
.x70_c01065{left:177.567853pt;}
.x29_c01065{left:178.773453pt;}
.x71_c01065{left:187.181853pt;}
.x4e_c01065{left:188.233453pt;}
.x11_c01065{left:189.439053pt;}
.x3e_c01065{left:197.002653pt;}
.x20_c01065{left:198.010253pt;}
.x31_c01065{left:207.958653pt;}
.x65_c01065{left:217.018253pt;}
.x18_c01065{left:218.267853pt;}
.x60_c01065{left:225.545453pt;}
.x45_c01065{left:227.217453pt;}
.x5b_c01065{left:236.976653pt;}
.x38_c01065{left:238.617853pt;}
.x7_c01065{left:247.365053pt;}
.x53_c01065{left:255.909853pt;}
.x21_c01065{left:257.678653pt;}
.x32_c01065{left:267.389453pt;}
.x2a_c01065{left:277.821853pt;}
.x5d_c01065{left:285.702253pt;}
.x22_c01065{left:286.652653pt;}
.x42_c01065{left:296.385453pt;}
.x19_c01065{left:297.283053pt;}
.x6d_c01065{left:304.710253pt;}
.x8_c01065{left:307.306253pt;}
.x69_c01065{left:315.648653pt;}
.x12_c01065{left:317.853053pt;}
.x1a_c01065{left:325.940253pt;}
.x23_c01065{left:327.396653pt;}
.x43_c01065{left:336.042653pt;}
.x13_c01065{left:346.101053pt;}
.x9_c01065{left:347.544253pt;}
.x39_c01065{left:351.455853pt;}
.x72_c01065{left:355.239853pt;}
.x2b_c01065{left:356.177053pt;}
.x54_c01065{left:364.620653pt;}
.x3a_c01065{left:366.151853pt;}
.x14_c01065{left:375.361053pt;}
.x3f_c01065{left:376.755853pt;}
.xa_c01065{left:385.811053pt;}
.x2c_c01065{left:394.360253pt;}
.x55_c01065{left:403.908253pt;}
.x1b_c01065{left:405.624253pt;}
.x4f_c01065{left:415.317453pt;}
.x5e_c01065{left:423.189053pt;}
.x61_c01065{left:424.302253pt;}
.x47_c01065{left:433.661053pt;}
.x6a_c01065{left:434.778653pt;}
.x15_c01065{left:443.464253pt;}
.x46_c01065{left:453.285053pt;}
.x48_c01065{left:454.701853pt;}
.x40_c01065{left:463.585453pt;}
.x58_c01065{left:467.303453pt;}
.x3b_c01065{left:473.709853pt;}
.x66_c01065{left:481.739853pt;}
.x2d_c01065{left:483.561453pt;}
.x24_c01065{left:493.127053pt;}
.xb_c01065{left:494.200653pt;}
.x62_c01065{left:502.499053pt;}
.x1c_c01065{left:503.669453pt;}
.x73_c01065{left:510.982253pt;}
.x3c_c01065{left:512.592653pt;}
.x5c_c01065{left:513.617853pt;}
.x5f_c01065{left:521.005453pt;}
.x4a_c01065{left:522.989853pt;}
.x6e_c01065{left:531.600653pt;}
.xc_c01065{left:533.184653pt;}
.x6b_c01065{left:541.535853pt;}
.x25_c01065{left:542.468653pt;}
.x6f_c01065{left:550.551453pt;}
.x50_c01065{left:552.637053pt;}
.x33_c01065{left:561.463453pt;}
.x56_c01065{left:566.158253pt;}
.x26_c01065{left:569.088653pt;}
.x44_c01065{left:571.315053pt;}
.xd_c01065{left:572.819853pt;}
.x2e_c01065{left:580.638653pt;}
.x1d_c01065{left:582.992653pt;}
.x27_c01065{left:591.093053pt;}
.x34_c01065{left:600.979853pt;}
.xe_c01065{left:602.480253pt;}
.x59_c01065{left:610.721453pt;}
.x2_c01065{left:612.129453pt;}
.x63_c01065{left:619.943853pt;}
.x2f_c01065{left:620.995453pt;}
.x51_c01065{left:625.751853pt;}
.x74_c01065{left:629.615053pt;}
.x35_c01065{left:630.855853pt;}
.x16_c01065{left:632.070253pt;}
.x6c_c01065{left:633.363853pt;}
.x4b_c01065{left:641.305853pt;}
.x67_c01065{left:646.374653pt;}
.x57_c01065{left:652.644653pt;}
.x68_c01065{left:658.659453pt;}
}





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

.ir_c01066:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01066{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01066;src:url('chunks/assets/font_16cae657e0d917e151872d1e.woff2')format("woff");}.ff1_c01066{font-family:ff1_c01066;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01066;src:url('chunks/assets/font_506a865604f5417a0755177b.woff2')format("woff");}.ff2_c01066{font-family:ff2_c01066;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01066;src:url('chunks/assets/font_b3461364da990753cc79e2be.woff2')format("woff");}.ff3_c01066{font-family:ff3_c01066;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01066;src:url('chunks/assets/font_508cdb90db90cd54578d1537.woff2')format("woff");}.ff4_c01066{font-family:ff4_c01066;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01066;src:url('chunks/assets/font_53f7e534faad0568cccad96c.woff2')format("woff");}.ff5_c01066{font-family:ff5_c01066;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m80_c01066{transform:matrix(0.142683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142683,0.000000,0.000000,0.250000,0,0);}
.mbb_c01066{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m5f_c01066{transform:matrix(0.165064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165064,0.000000,0.000000,0.250000,0,0);}
.ma4_c01066{transform:matrix(0.168918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168918,0.000000,0.000000,0.250000,0,0);}
.mba_c01066{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.mbc_c01066{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m9c_c01066{transform:matrix(0.183139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183139,0.000000,0.000000,0.250000,0,0);}
.mb8_c01066{transform:matrix(0.184375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184375,0.000000,0.000000,0.250000,0,0);}
.mb9_c01066{transform:matrix(0.185937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185937,0.000000,0.000000,0.250000,0,0);}
.ma5_c01066{transform:matrix(0.193694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193694,0.000000,0.000000,0.250000,0,0);}
.mbf_c01066{transform:matrix(0.195546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195546,0.000000,0.000000,0.250000,0,0);}
.m20_c01066{transform:matrix(0.212837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212837,0.000000,0.000000,0.250000,0,0);}
.m57_c01066{transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);}
.m58_c01066{transform:matrix(0.217143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217143,0.000000,0.000000,0.250000,0,0);}
.mc0_c01066{transform:matrix(0.217629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217629,0.000000,0.000000,0.250000,0,0);}
.ma9_c01066{transform:matrix(0.219472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219472,0.000000,0.000000,0.250000,0,0);}
.m7f_c01066{transform:matrix(0.227067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227067,0.000000,0.000000,0.250000,0,0);}
.m28_c01066{transform:matrix(0.232911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232911,0.000000,0.000000,0.250000,0,0);}
.m8f_c01066{transform:matrix(0.235004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235004,0.000000,0.000000,0.250000,0,0);}
.m1a_c01066{transform:matrix(0.241708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241708,0.000000,0.000000,0.250000,0,0);}
.m84_c01066{transform:matrix(0.248332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248332,0.000000,0.000000,0.250000,0,0);}
.m1_c01066{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m9a_c01066{transform:matrix(0.250089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250089,0.000000,0.000000,0.250000,0,0);}
.m83_c01066{transform:matrix(0.250897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250897,0.000000,0.000000,0.250000,0,0);}
.m73_c01066{transform:matrix(0.251239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251239,0.000000,0.000000,0.250000,0,0);}
.m4e_c01066{transform:matrix(0.251273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251273,0.000000,0.000000,0.250000,0,0);}
.m41_c01066{transform:matrix(0.251850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251850,0.000000,0.000000,0.250000,0,0);}
.m1e_c01066{transform:matrix(0.254164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254164,0.000000,0.000000,0.250000,0,0);}
.md_c01066{transform:matrix(0.254778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254778,0.000000,0.000000,0.250000,0,0);}
.m21_c01066{transform:matrix(0.255459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255459,0.000000,0.000000,0.250000,0,0);}
.m89_c01066{transform:matrix(0.255625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255625,0.000000,0.000000,0.250000,0,0);}
.mb6_c01066{transform:matrix(0.258282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258282,0.000000,0.000000,0.250000,0,0);}
.ma7_c01066{transform:matrix(0.258402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258402,0.000000,0.000000,0.250000,0,0);}
.m68_c01066{transform:matrix(0.258472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258472,0.000000,0.000000,0.250000,0,0);}
.m50_c01066{transform:matrix(0.259305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259305,0.000000,0.000000,0.250000,0,0);}
.m93_c01066{transform:matrix(0.259374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259374,0.000000,0.000000,0.250000,0,0);}
.m8_c01066{transform:matrix(0.260021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260021,0.000000,0.000000,0.250000,0,0);}
.m4b_c01066{transform:matrix(0.260232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260232,0.000000,0.000000,0.250000,0,0);}
.mb4_c01066{transform:matrix(0.260565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260565,0.000000,0.000000,0.250000,0,0);}
.m5e_c01066{transform:matrix(0.260635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260635,0.000000,0.000000,0.250000,0,0);}
.m97_c01066{transform:matrix(0.260926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260926,0.000000,0.000000,0.250000,0,0);}
.m5a_c01066{transform:matrix(0.261481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261481,0.000000,0.000000,0.250000,0,0);}
.m53_c01066{transform:matrix(0.261599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261599,0.000000,0.000000,0.250000,0,0);}
.m6c_c01066{transform:matrix(0.262322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262322,0.000000,0.000000,0.250000,0,0);}
.m12_c01066{transform:matrix(0.262894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262894,0.000000,0.000000,0.250000,0,0);}
.m19_c01066{transform:matrix(0.263875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263875,0.000000,0.000000,0.250000,0,0);}
.m96_c01066{transform:matrix(0.264583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264583,0.000000,0.000000,0.250000,0,0);}
.mad_c01066{transform:matrix(0.265559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265559,0.000000,0.000000,0.250000,0,0);}
.m6b_c01066{transform:matrix(0.267123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267123,0.000000,0.000000,0.250000,0,0);}
.m5_c01066{transform:matrix(0.267506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267506,0.000000,0.000000,0.250000,0,0);}
.m8c_c01066{transform:matrix(0.267814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267814,0.000000,0.000000,0.250000,0,0);}
.ma_c01066{transform:matrix(0.267850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267850,0.000000,0.000000,0.250000,0,0);}
.m92_c01066{transform:matrix(0.268612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268612,0.000000,0.000000,0.250000,0,0);}
.m90_c01066{transform:matrix(0.268860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268860,0.000000,0.000000,0.250000,0,0);}
.m35_c01066{transform:matrix(0.268935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268935,0.000000,0.000000,0.250000,0,0);}
.mf_c01066{transform:matrix(0.269145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269145,0.000000,0.000000,0.250000,0,0);}
.m3d_c01066{transform:matrix(0.269985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269985,0.000000,0.000000,0.250000,0,0);}
.m98_c01066{transform:matrix(0.271118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271118,0.000000,0.000000,0.250000,0,0);}
.m46_c01066{transform:matrix(0.272440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272440,0.000000,0.000000,0.250000,0,0);}
.ma2_c01066{transform:matrix(0.272445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272445,0.000000,0.000000,0.250000,0,0);}
.m25_c01066{transform:matrix(0.274580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274580,0.000000,0.000000,0.250000,0,0);}
.m9b_c01066{transform:matrix(0.274621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274621,0.000000,0.000000,0.250000,0,0);}
.m7_c01066{transform:matrix(0.274719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274719,0.000000,0.000000,0.250000,0,0);}
.m76_c01066{transform:matrix(0.277334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277334,0.000000,0.000000,0.250000,0,0);}
.m56_c01066{transform:matrix(0.278036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278036,0.000000,0.000000,0.250000,0,0);}
.m31_c01066{transform:matrix(0.280012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280012,0.000000,0.000000,0.250000,0,0);}
.m33_c01066{transform:matrix(0.280099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280099,0.000000,0.000000,0.250000,0,0);}
.m3b_c01066{transform:matrix(0.282464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282464,0.000000,0.000000,0.250000,0,0);}
.m74_c01066{transform:matrix(0.282721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282721,0.000000,0.000000,0.250000,0,0);}
.mc1_c01066{transform:matrix(0.282923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282923,0.000000,0.000000,0.250000,0,0);}
.m1c_c01066{transform:matrix(0.283256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283256,0.000000,0.000000,0.250000,0,0);}
.m9d_c01066{transform:matrix(0.283369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283369,0.000000,0.000000,0.250000,0,0);}
.ma6_c01066{transform:matrix(0.283702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283702,0.000000,0.000000,0.250000,0,0);}
.m79_c01066{transform:matrix(0.283936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283936,0.000000,0.000000,0.250000,0,0);}
.m3f_c01066{transform:matrix(0.284678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284678,0.000000,0.000000,0.250000,0,0);}
.m17_c01066{transform:matrix(0.284924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284924,0.000000,0.000000,0.250000,0,0);}
.m39_c01066{transform:matrix(0.284973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284973,0.000000,0.000000,0.250000,0,0);}
.m9e_c01066{transform:matrix(0.285004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285004,0.000000,0.000000,0.250000,0,0);}
.m4a_c01066{transform:matrix(0.285205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285205,0.000000,0.000000,0.250000,0,0);}
.m8d_c01066{transform:matrix(0.286508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286508,0.000000,0.000000,0.250000,0,0);}
.m18_c01066{transform:matrix(0.286552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286552,0.000000,0.000000,0.250000,0,0);}
.m2d_c01066{transform:matrix(0.286566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286566,0.000000,0.000000,0.250000,0,0);}
.m61_c01066{transform:matrix(0.286654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286654,0.000000,0.000000,0.250000,0,0);}
.m11_c01066{transform:matrix(0.287060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287060,0.000000,0.000000,0.250000,0,0);}
.mc3_c01066{transform:matrix(0.287713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287713,0.000000,0.000000,0.250000,0,0);}
.m15_c01066{transform:matrix(0.287982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287982,0.000000,0.000000,0.250000,0,0);}
.mb2_c01066{transform:matrix(0.288065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288065,0.000000,0.000000,0.250000,0,0);}
.m26_c01066{transform:matrix(0.288127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288127,0.000000,0.000000,0.250000,0,0);}
.m67_c01066{transform:matrix(0.288163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288163,0.000000,0.000000,0.250000,0,0);}
.m78_c01066{transform:matrix(0.288380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288380,0.000000,0.000000,0.250000,0,0);}
.m70_c01066{transform:matrix(0.289029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289029,0.000000,0.000000,0.250000,0,0);}
.mb3_c01066{transform:matrix(0.289216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289216,0.000000,0.000000,0.250000,0,0);}
.m0_c01066{transform:matrix(0.289398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289398,0.000000,0.000000,0.250000,0,0);}
.mb7_c01066{transform:matrix(0.290027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290027,0.000000,0.000000,0.250000,0,0);}
.m87_c01066{transform:matrix(0.290485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290485,0.000000,0.000000,0.250000,0,0);}
.mc2_c01066{transform:matrix(0.290515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290515,0.000000,0.000000,0.250000,0,0);}
.ma0_c01066{transform:matrix(0.290532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290532,0.000000,0.000000,0.250000,0,0);}
.m7e_c01066{transform:matrix(0.290909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290909,0.000000,0.000000,0.250000,0,0);}
.m5d_c01066{transform:matrix(0.291117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291117,0.000000,0.000000,0.250000,0,0);}
.m95_c01066{transform:matrix(0.291680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291680,0.000000,0.000000,0.250000,0,0);}
.m66_c01066{transform:matrix(0.291928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291928,0.000000,0.000000,0.250000,0,0);}
.m4f_c01066{transform:matrix(0.292200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292200,0.000000,0.000000,0.250000,0,0);}
.mbe_c01066{transform:matrix(0.292464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292464,0.000000,0.000000,0.250000,0,0);}
.m55_c01066{transform:matrix(0.293278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293278,0.000000,0.000000,0.250000,0,0);}
.m1d_c01066{transform:matrix(0.294564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294564,0.000000,0.000000,0.250000,0,0);}
.m2f_c01066{transform:matrix(0.295465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295465,0.000000,0.000000,0.250000,0,0);}
.mc5_c01066{transform:matrix(0.295532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295532,0.000000,0.000000,0.250000,0,0);}
.m27_c01066{transform:matrix(0.295548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295548,0.000000,0.000000,0.250000,0,0);}
.mc_c01066{transform:matrix(0.295908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295908,0.000000,0.000000,0.250000,0,0);}
.m10_c01066{transform:matrix(0.296328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296328,0.000000,0.000000,0.250000,0,0);}
.m48_c01066{transform:matrix(0.296521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296521,0.000000,0.000000,0.250000,0,0);}
.m6f_c01066{transform:matrix(0.296825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296825,0.000000,0.000000,0.250000,0,0);}
.m52_c01066{transform:matrix(0.296842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296842,0.000000,0.000000,0.250000,0,0);}
.m2_c01066{transform:matrix(0.297205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297205,0.000000,0.000000,0.250000,0,0);}
.m9_c01066{transform:matrix(0.297633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297633,0.000000,0.000000,0.250000,0,0);}
.mb_c01066{transform:matrix(0.297883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297883,0.000000,0.000000,0.250000,0,0);}
.m8a_c01066{transform:matrix(0.297994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297994,0.000000,0.000000,0.250000,0,0);}
.m30_c01066{transform:matrix(0.298557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298557,0.000000,0.000000,0.250000,0,0);}
.mab_c01066{transform:matrix(0.299011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299011,0.000000,0.000000,0.250000,0,0);}
.m7d_c01066{transform:matrix(0.300416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300416,0.000000,0.000000,0.250000,0,0);}
.m54_c01066{transform:matrix(0.301943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301943,0.000000,0.000000,0.250000,0,0);}
.m3e_c01066{transform:matrix(0.302082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302082,0.000000,0.000000,0.250000,0,0);}
.m2b_c01066{transform:matrix(0.302896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302896,0.000000,0.000000,0.250000,0,0);}
.m29_c01066{transform:matrix(0.303733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303733,0.000000,0.000000,0.250000,0,0);}
.m64_c01066{transform:matrix(0.303844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303844,0.000000,0.000000,0.250000,0,0);}
.m45_c01066{transform:matrix(0.303983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303983,0.000000,0.000000,0.250000,0,0);}
.mbd_c01066{transform:matrix(0.304080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304080,0.000000,0.000000,0.250000,0,0);}
.m40_c01066{transform:matrix(0.304345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304345,0.000000,0.000000,0.250000,0,0);}
.m24_c01066{transform:matrix(0.304731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304731,0.000000,0.000000,0.250000,0,0);}
.m6a_c01066{transform:matrix(0.305552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305552,0.000000,0.000000,0.250000,0,0);}
.m47_c01066{transform:matrix(0.307308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307308,0.000000,0.000000,0.250000,0,0);}
.m59_c01066{transform:matrix(0.308155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308155,0.000000,0.000000,0.250000,0,0);}
.m44_c01066{transform:matrix(0.308183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308183,0.000000,0.000000,0.250000,0,0);}
.mc4_c01066{transform:matrix(0.308277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308277,0.000000,0.000000,0.250000,0,0);}
.mb5_c01066{transform:matrix(0.309305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309305,0.000000,0.000000,0.250000,0,0);}
.m1f_c01066{transform:matrix(0.309526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309526,0.000000,0.000000,0.250000,0,0);}
.m8e_c01066{transform:matrix(0.310483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310483,0.000000,0.000000,0.250000,0,0);}
.m3a_c01066{transform:matrix(0.310729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310729,0.000000,0.000000,0.250000,0,0);}
.m4c_c01066{transform:matrix(0.311025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311025,0.000000,0.000000,0.250000,0,0);}
.m7b_c01066{transform:matrix(0.311337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311337,0.000000,0.000000,0.250000,0,0);}
.m82_c01066{transform:matrix(0.311569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311569,0.000000,0.000000,0.250000,0,0);}
.maf_c01066{transform:matrix(0.312009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312009,0.000000,0.000000,0.250000,0,0);}
.mb0_c01066{transform:matrix(0.313272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313272,0.000000,0.000000,0.250000,0,0);}
.m91_c01066{transform:matrix(0.313375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313375,0.000000,0.000000,0.250000,0,0);}
.m6e_c01066{transform:matrix(0.313767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313767,0.000000,0.000000,0.250000,0,0);}
.m38_c01066{transform:matrix(0.314014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314014,0.000000,0.000000,0.250000,0,0);}
.m13_c01066{transform:matrix(0.314716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314716,0.000000,0.000000,0.250000,0,0);}
.ma1_c01066{transform:matrix(0.316047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316047,0.000000,0.000000,0.250000,0,0);}
.maa_c01066{transform:matrix(0.316961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316961,0.000000,0.000000,0.250000,0,0);}
.m6d_c01066{transform:matrix(0.317363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317363,0.000000,0.000000,0.250000,0,0);}
.m16_c01066{transform:matrix(0.317657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317657,0.000000,0.000000,0.250000,0,0);}
.m94_c01066{transform:matrix(0.317668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317668,0.000000,0.000000,0.250000,0,0);}
.mac_c01066{transform:matrix(0.319136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319136,0.000000,0.000000,0.250000,0,0);}
.m81_c01066{transform:matrix(0.319180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319180,0.000000,0.000000,0.250000,0,0);}
.m75_c01066{transform:matrix(0.320016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320016,0.000000,0.000000,0.250000,0,0);}
.m65_c01066{transform:matrix(0.320274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320274,0.000000,0.000000,0.250000,0,0);}
.ma8_c01066{transform:matrix(0.320409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320409,0.000000,0.000000,0.250000,0,0);}
.m71_c01066{transform:matrix(0.321082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321082,0.000000,0.000000,0.250000,0,0);}
.m3_c01066{transform:matrix(0.321791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321791,0.000000,0.000000,0.250000,0,0);}
.mb1_c01066{transform:matrix(0.321952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321952,0.000000,0.000000,0.250000,0,0);}
.m2e_c01066{transform:matrix(0.322925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322925,0.000000,0.000000,0.250000,0,0);}
.m5b_c01066{transform:matrix(0.322998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322998,0.000000,0.000000,0.250000,0,0);}
.m69_c01066{transform:matrix(0.322999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322999,0.000000,0.000000,0.250000,0,0);}
.m34_c01066{transform:matrix(0.323086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323086,0.000000,0.000000,0.250000,0,0);}
.m85_c01066{transform:matrix(0.323163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323163,0.000000,0.000000,0.250000,0,0);}
.m23_c01066{transform:matrix(0.323933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323933,0.000000,0.000000,0.250000,0,0);}
.m2c_c01066{transform:matrix(0.325536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325536,0.000000,0.000000,0.250000,0,0);}
.m2a_c01066{transform:matrix(0.326255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326255,0.000000,0.000000,0.250000,0,0);}
.m9f_c01066{transform:matrix(0.326587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326587,0.000000,0.000000,0.250000,0,0);}
.m4_c01066{transform:matrix(0.327563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327563,0.000000,0.000000,0.250000,0,0);}
.m5c_c01066{transform:matrix(0.328012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328012,0.000000,0.000000,0.250000,0,0);}
.m86_c01066{transform:matrix(0.328353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328353,0.000000,0.000000,0.250000,0,0);}
.m7a_c01066{transform:matrix(0.329069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329069,0.000000,0.000000,0.250000,0,0);}
.m99_c01066{transform:matrix(0.329334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329334,0.000000,0.000000,0.250000,0,0);}
.m63_c01066{transform:matrix(0.329448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329448,0.000000,0.000000,0.250000,0,0);}
.m77_c01066{transform:matrix(0.330077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330077,0.000000,0.000000,0.250000,0,0);}
.m49_c01066{transform:matrix(0.330176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330176,0.000000,0.000000,0.250000,0,0);}
.m43_c01066{transform:matrix(0.330471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330471,0.000000,0.000000,0.250000,0,0);}
.ma3_c01066{transform:matrix(0.331681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331681,0.000000,0.000000,0.250000,0,0);}
.mae_c01066{transform:matrix(0.334246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334246,0.000000,0.000000,0.250000,0,0);}
.m6_c01066{transform:matrix(0.335052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335052,0.000000,0.000000,0.250000,0,0);}
.m32_c01066{transform:matrix(0.336572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336572,0.000000,0.000000,0.250000,0,0);}
.m14_c01066{transform:matrix(0.338393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338393,0.000000,0.000000,0.250000,0,0);}
.m36_c01066{transform:matrix(0.338754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338754,0.000000,0.000000,0.250000,0,0);}
.m88_c01066{transform:matrix(0.339113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339113,0.000000,0.000000,0.250000,0,0);}
.m60_c01066{transform:matrix(0.340922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340922,0.000000,0.000000,0.250000,0,0);}
.m51_c01066{transform:matrix(0.341035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341035,0.000000,0.000000,0.250000,0,0);}
.m3c_c01066{transform:matrix(0.349926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349926,0.000000,0.000000,0.250000,0,0);}
.m4d_c01066{transform:matrix(0.350915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350915,0.000000,0.000000,0.250000,0,0);}
.me_c01066{transform:matrix(0.355339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355339,0.000000,0.000000,0.250000,0,0);}
.m37_c01066{transform:matrix(0.359023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359023,0.000000,0.000000,0.250000,0,0);}
.m72_c01066{transform:matrix(0.364403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364403,0.000000,0.000000,0.250000,0,0);}
.m1b_c01066{transform:matrix(0.368736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368736,0.000000,0.000000,0.250000,0,0);}
.m7c_c01066{transform:matrix(0.371445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371445,0.000000,0.000000,0.250000,0,0);}
.m62_c01066{transform:matrix(0.374684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374684,0.000000,0.000000,0.250000,0,0);}
.m22_c01066{transform:matrix(0.380631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380631,0.000000,0.000000,0.250000,0,0);}
.m8b_c01066{transform:matrix(0.386579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386579,0.000000,0.000000,0.250000,0,0);}
.m42_c01066{transform:matrix(0.392526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392526,0.000000,0.000000,0.250000,0,0);}
.v2_c01066{vertical-align:-8.573400px;}
.v0_c01066{vertical-align:0.000000px;}
.v1_c01066{vertical-align:8.573400px;}
.ls8_c01066{letter-spacing:-2.778930px;}
.ls19_c01066{letter-spacing:-2.716567px;}
.ls1b_c01066{letter-spacing:-0.911988px;}
.ls17_c01066{letter-spacing:-0.468448px;}
.ls5_c01066{letter-spacing:0.000000px;}
.ls0_c01066{letter-spacing:1.111136px;}
.ls1a_c01066{letter-spacing:1.425600px;}
.ls3_c01066{letter-spacing:1.905552px;}
.ls16_c01066{letter-spacing:2.175505px;}
.ls10_c01066{letter-spacing:2.457008px;}
.ls15_c01066{letter-spacing:2.692810px;}
.ls1c_c01066{letter-spacing:2.907590px;}
.ls12_c01066{letter-spacing:3.120341px;}
.ls14_c01066{letter-spacing:3.239438px;}
.lse_c01066{letter-spacing:3.342656px;}
.ls1d_c01066{letter-spacing:3.557030px;}
.lsc_c01066{letter-spacing:3.623400px;}
.lsa_c01066{letter-spacing:3.660248px;}
.lsb_c01066{letter-spacing:3.676127px;}
.ls4_c01066{letter-spacing:3.771900px;}
.lsd_c01066{letter-spacing:3.851110px;}
.ls7_c01066{letter-spacing:3.940200px;}
.ls6_c01066{letter-spacing:3.969900px;}
.ls13_c01066{letter-spacing:4.068900px;}
.ls2_c01066{letter-spacing:13.180068px;}
.lsf_c01066{letter-spacing:39.916800px;}
.ls1_c01066{letter-spacing:49.896198px;}
.ls9_c01066{letter-spacing:52.747398px;}
.ls11_c01066{letter-spacing:55.598598px;}
.ls1f_c01066{letter-spacing:57.024198px;}
.ls18_c01066{letter-spacing:58.449798px;}
.ls1e_c01066{letter-spacing:61.300998px;}
.sc__c01066{text-shadow:none;}
.sc0_c01066{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01066{-webkit-text-stroke:0px transparent;}
.sc0_c01066{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01066{word-spacing:-94.802776px;}
.ws1_c01066{word-spacing:-21.755052px;}
.ws2_c01066{word-spacing:0.000000px;}
._3_c01066{margin-left:-3.393918px;}
._0_c01066{width:24.018588px;}
._6_c01066{width:27.709902px;}
._2_c01066{width:31.047588px;}
._5_c01066{width:39.778398px;}
._1_c01066{width:41.401800px;}
._4_c01066{width:52.542072px;}
.fc0_c01066{color:transparent;}
.fs13_c01066{font-size:3.960000px;}
.fs1_c01066{font-size:22.176000px;}
.fs14_c01066{font-size:27.324000px;}
.fs15_c01066{font-size:28.512000px;}
.fs6_c01066{font-size:33.660000px;}
.fsb_c01066{font-size:38.808000px;}
.fsc_c01066{font-size:39.916800px;}
.fs17_c01066{font-size:48.510000px;}
.fsa_c01066{font-size:49.896198px;}
.fs5_c01066{font-size:52.747398px;}
.fs10_c01066{font-size:53.856198px;}
.fs16_c01066{font-size:54.648000px;}
.fsd_c01066{font-size:55.598598px;}
.fs1a_c01066{font-size:57.024198px;}
.fs11_c01066{font-size:58.449798px;}
.fs19_c01066{font-size:61.300998px;}
.fs4_c01066{font-size:66.330000px;}
.fs8_c01066{font-size:72.468000px;}
.fsf_c01066{font-size:72.864000px;}
.fs0_c01066{font-size:75.438000px;}
.fs9_c01066{font-size:77.022198px;}
.fs12_c01066{font-size:77.616198px;}
.fs3_c01066{font-size:78.804000px;}
.fs2_c01066{font-size:79.398000px;}
.fse_c01066{font-size:81.378000px;}
.fs18_c01066{font-size:82.368000px;}
.fs7_c01066{font-size:91.872198px;}
.fs1b_c01066{font-size:104.544000px;}
.y0_c01066{bottom:0.000000px;}
.y1_c01066{bottom:76.500000px;}
.y22_c01066{bottom:101.842335px;}
.y21_c01066{bottom:111.821535px;}
.y20_c01066{bottom:112.890735px;}
.y1f_c01066{bottom:144.610335px;}
.y1e_c01066{bottom:179.181135px;}
.y1d_c01066{bottom:214.108335px;}
.y1c_c01066{bottom:246.179385px;}
.y1b_c01066{bottom:311.049135px;}
.y1a_c01066{bottom:343.120185px;}
.y19_c01066{bottom:369.850185px;}
.y18_c01066{bottom:375.196185px;}
.y17_c01066{bottom:407.277135px;}
.y16_c01066{bottom:438.278985px;}
.y15_c01066{bottom:470.711385px;}
.y14_c01066{bottom:502.787385px;}
.y13_c01066{bottom:535.219785px;}
.y12_c01066{bottom:599.733135px;}
.y11_c01066{bottom:607.925385px;}
.y10_c01066{bottom:632.873385px;}
.yf_c01066{bottom:664.236585px;}
.ye_c01066{bottom:696.317535px;}
.yd_c01066{bottom:728.393535px;}
.yc_c01066{bottom:760.820985px;}
.yb_c01066{bottom:785.061135px;}
.y9_c01066{bottom:792.184185px;}
.ya_c01066{bottom:792.901935px;}
.y8_c01066{bottom:805.370985px;}
.y7_c01066{bottom:824.977935px;}
.y6_c01066{bottom:856.341135px;}
.y5_c01066{bottom:888.412185px;}
.y4_c01066{bottom:920.493135px;}
.y3_c01066{bottom:989.629785px;}
.y2_c01066{bottom:1069.106985px;}
.h3_c01066{height:23.128875px;}
.hf_c01066{height:26.584589px;}
.h17_c01066{height:28.498078px;}
.h18_c01066{height:29.737125px;}
.h8_c01066{height:33.035449px;}
.hd_c01066{height:33.230868px;}
.h7_c01066{height:35.129767px;}
.h11_c01066{height:37.028666px;}
.h1b_c01066{height:37.978116px;}
.h15_c01066{height:38.927565px;}
.he_c01066{height:40.475531px;}
.h1a_c01066{height:40.826465px;}
.h14_c01066{height:52.856913px;}
.h6_c01066{height:69.180117px;}
.hb_c01066{height:71.123379px;}
.h13_c01066{height:71.512031px;}
.h2_c01066{height:74.038271px;}
.h10_c01066{height:75.593075px;}
.h16_c01066{height:76.176054px;}
.h5_c01066{height:77.341816px;}
.h4_c01066{height:77.924795px;}
.h12_c01066{height:79.868057px;}
.hc_c01066{height:80.331746px;}
.h19_c01066{height:80.799469px;}
.h9_c01066{height:82.190109px;}
.ha_c01066{height:95.819832px;}
.h1c_c01066{height:109.036125px;}
.h1_c01066{height:1110.000000px;}
.h0_c01066{height:1263.000000px;}
.w1_c01066{width:775.500000px;}
.w0_c01066{width:892.500000px;}
.x0_c01066{left:0.000000px;}
.x1_c01066{left:58.500000px;}
.x62_c01066{left:78.280935px;}
.x26_c01066{left:80.280735px;}
.x4_c01066{left:82.033035px;}
.x71_c01066{left:100.442085px;}
.x40_c01066{left:103.011135px;}
.x4b_c01066{left:105.684135px;}
.x36_c01066{left:114.138735px;}
.xe_c01066{left:125.043585px;}
.x2e_c01066{left:135.364335px;}
.x1d_c01066{left:136.928535px;}
.x58_c01066{left:145.343535px;}
.x3c_c01066{left:146.972085px;}
.x6d_c01066{left:156.926535px;}
.x63_c01066{left:157.990785px;}
.x27_c01066{left:159.089685px;}
.x5d_c01066{left:167.440335px;}
.x2f_c01066{left:169.044135px;}
.x59_c01066{left:178.251135px;}
.x17_c01066{left:181.146885px;}
.x5_c01066{left:182.196285px;}
.x1e_c01066{left:191.017185px;}
.x53_c01066{left:192.551685px;}
.x7a_c01066{left:200.243985px;}
.x6_c01066{left:213.955485px;}
.x65_c01066{left:222.325935px;}
.x6e_c01066{left:224.310885px;}
.xf_c01066{left:225.389985px;}
.x41_c01066{left:235.334535px;}
.x1f_c01066{left:247.130385px;}
.x47_c01066{left:258.139185px;}
.x37_c01066{left:259.173735px;}
.x5a_c01066{left:268.593585px;}
.x10_c01066{left:270.058785px;}
.x20_c01066{left:279.849885px;}
.x28_c01066{left:290.690385px;}
.x7_c01066{left:292.714935px;}
.x54_c01066{left:301.827885px;}
.x3d_c01066{left:303.085185px;}
.x74_c01066{left:312.990135px;}
.x21_c01066{left:314.079135px;}
.x4c_c01066{left:323.236635px;}
.x8_c01066{left:325.800735px;}
.x72_c01066{left:333.874185px;}
.x11_c01066{left:336.215535px;}
.x42_c01066{left:345.333435px;}
.x3e_c01066{left:346.486785px;}
.x55_c01066{left:355.624485px;}
.x30_c01066{left:357.738135px;}
.x9_c01066{left:360.812085px;}
.x12_c01066{left:369.519135px;}
.x68_c01066{left:378.567735px;}
.x4d_c01066{left:380.062635px;}
.x38_c01066{left:381.097185px;}
.x7b_c01066{left:389.304285px;}
.x43_c01066{left:391.492185px;}
.x48_c01066{left:401.258535px;}
.x18_c01066{left:403.911735px;}
.x69_c01066{left:413.529585px;}
.x75_c01066{left:423.216735px;}
.x29_c01066{left:424.231485px;}
.xa_c01066{left:425.681835px;}
.x4e_c01066{left:430.517985px;}
.x66_c01066{left:433.364235px;}
.x13_c01066{left:435.784785px;}
.x31_c01066{left:437.324235px;}
.x6f_c01066{left:445.942185px;}
.x39_c01066{left:448.070685px;}
.x76_c01066{left:455.426385px;}
.xb_c01066{left:458.272635px;}
.x44_c01066{left:469.123035px;}
.x4f_c01066{left:478.775535px;}
.x22_c01066{left:480.547635px;}
.x5b_c01066{left:491.492085px;}
.x5e_c01066{left:500.312985px;}
.x56_c01066{left:501.599985px;}
.x19_c01066{left:503.738385px;}
.x50_c01066{left:512.321685px;}
.x5f_c01066{left:513.351285px;}
.x49_c01066{left:522.464235px;}
.x64_c01066{left:523.676985px;}
.x2a_c01066{left:524.765985px;}
.x70_c01066{left:532.765185px;}
.x77_c01066{left:533.873985px;}
.x57_c01066{left:534.933285px;}
.x32_c01066{left:536.180685px;}
.x51_c01066{left:545.392635px;}
.x67_c01066{left:555.738135px;}
.x2b_c01066{left:557.822085px;}
.x3f_c01066{left:567.177585px;}
.x1a_c01066{left:569.311035px;}
.x6a_c01066{left:578.225985px;}
.x3a_c01066{left:579.651585px;}
.x5c_c01066{left:589.056585px;}
.x14_c01066{left:592.095885px;}
.x25_c01066{left:599.317935px;}
.x78_c01066{left:600.520785px;}
.x1b_c01066{left:601.688985px;}
.x6b_c01066{left:610.628685px;}
.x2c_c01066{left:612.405735px;}
.x23_c01066{left:623.355135px;}
.x15_c01066{left:624.503535px;}
.x79_c01066{left:632.958135px;}
.x33_c01066{left:634.146135px;}
.xc_c01066{left:635.586585px;}
.x3_c01066{left:638.927835px;}
.x45_c01066{left:643.952085px;}
.x6c_c01066{left:654.936135px;}
.x4a_c01066{left:656.124135px;}
.xd_c01066{left:657.718035px;}
.x7c_c01066{left:665.157885px;}
.x52_c01066{left:667.093335px;}
.x34_c01066{left:677.963535px;}
.x2d_c01066{left:679.067385px;}
.x60_c01066{left:687.705135px;}
.x16_c01066{left:690.813735px;}
.x2_c01066{left:695.773635px;}
.x24_c01066{left:701.510685px;}
.x1c_c01066{left:702.550185px;}
.x46_c01066{left:708.802035px;}
.x73_c01066{left:710.772135px;}
.x61_c01066{left:720.865185px;}
.x35_c01066{left:722.018535px;}
.x3b_c01066{left:723.627285px;}
.x7d_c01066{left:743.555985px;}
@media print{
.v2_c01066{vertical-align:-7.620800pt;}
.v0_c01066{vertical-align:0.000000pt;}
.v1_c01066{vertical-align:7.620800pt;}
.ls8_c01066{letter-spacing:-2.470160pt;}
.ls19_c01066{letter-spacing:-2.414726pt;}
.ls1b_c01066{letter-spacing:-0.810656pt;}
.ls17_c01066{letter-spacing:-0.416398pt;}
.ls5_c01066{letter-spacing:0.000000pt;}
.ls0_c01066{letter-spacing:0.987677pt;}
.ls1a_c01066{letter-spacing:1.267200pt;}
.ls3_c01066{letter-spacing:1.693824pt;}
.ls16_c01066{letter-spacing:1.933782pt;}
.ls10_c01066{letter-spacing:2.184007pt;}
.ls15_c01066{letter-spacing:2.393609pt;}
.ls1c_c01066{letter-spacing:2.584525pt;}
.ls12_c01066{letter-spacing:2.773637pt;}
.ls14_c01066{letter-spacing:2.879501pt;}
.lse_c01066{letter-spacing:2.971250pt;}
.ls1d_c01066{letter-spacing:3.161805pt;}
.lsc_c01066{letter-spacing:3.220800pt;}
.lsa_c01066{letter-spacing:3.253554pt;}
.lsb_c01066{letter-spacing:3.267669pt;}
.ls4_c01066{letter-spacing:3.352800pt;}
.lsd_c01066{letter-spacing:3.423209pt;}
.ls7_c01066{letter-spacing:3.502400pt;}
.ls6_c01066{letter-spacing:3.528800pt;}
.ls13_c01066{letter-spacing:3.616800pt;}
.ls2_c01066{letter-spacing:11.715616pt;}
.lsf_c01066{letter-spacing:35.481600pt;}
.ls1_c01066{letter-spacing:44.352176pt;}
.ls9_c01066{letter-spacing:46.886576pt;}
.ls11_c01066{letter-spacing:49.420976pt;}
.ls1f_c01066{letter-spacing:50.688176pt;}
.ls18_c01066{letter-spacing:51.955376pt;}
.ls1e_c01066{letter-spacing:54.489776pt;}
.ws0_c01066{word-spacing:-84.269134pt;}
.ws1_c01066{word-spacing:-19.337824pt;}
.ws2_c01066{word-spacing:0.000000pt;}
._3_c01066{margin-left:-3.016816pt;}
._0_c01066{width:21.349856pt;}
._6_c01066{width:24.631024pt;}
._2_c01066{width:27.597856pt;}
._5_c01066{width:35.358576pt;}
._1_c01066{width:36.801600pt;}
._4_c01066{width:46.704064pt;}
.fs13_c01066{font-size:3.520000pt;}
.fs1_c01066{font-size:19.712000pt;}
.fs14_c01066{font-size:24.288000pt;}
.fs15_c01066{font-size:25.344000pt;}
.fs6_c01066{font-size:29.920000pt;}
.fsb_c01066{font-size:34.496000pt;}
.fsc_c01066{font-size:35.481600pt;}
.fs17_c01066{font-size:43.120000pt;}
.fsa_c01066{font-size:44.352176pt;}
.fs5_c01066{font-size:46.886576pt;}
.fs10_c01066{font-size:47.872176pt;}
.fs16_c01066{font-size:48.576000pt;}
.fsd_c01066{font-size:49.420976pt;}
.fs1a_c01066{font-size:50.688176pt;}
.fs11_c01066{font-size:51.955376pt;}
.fs19_c01066{font-size:54.489776pt;}
.fs4_c01066{font-size:58.960000pt;}
.fs8_c01066{font-size:64.416000pt;}
.fsf_c01066{font-size:64.768000pt;}
.fs0_c01066{font-size:67.056000pt;}
.fs9_c01066{font-size:68.464176pt;}
.fs12_c01066{font-size:68.992176pt;}
.fs3_c01066{font-size:70.048000pt;}
.fs2_c01066{font-size:70.576000pt;}
.fse_c01066{font-size:72.336000pt;}
.fs18_c01066{font-size:73.216000pt;}
.fs7_c01066{font-size:81.664176pt;}
.fs1b_c01066{font-size:92.928000pt;}
.y0_c01066{bottom:0.000000pt;}
.y1_c01066{bottom:68.000000pt;}
.y22_c01066{bottom:90.526520pt;}
.y21_c01066{bottom:99.396920pt;}
.y20_c01066{bottom:100.347320pt;}
.y1f_c01066{bottom:128.542520pt;}
.y1e_c01066{bottom:159.272120pt;}
.y1d_c01066{bottom:190.318520pt;}
.y1c_c01066{bottom:218.826120pt;}
.y1b_c01066{bottom:276.488120pt;}
.y1a_c01066{bottom:304.995720pt;}
.y19_c01066{bottom:328.755720pt;}
.y18_c01066{bottom:333.507720pt;}
.y17_c01066{bottom:362.024120pt;}
.y16_c01066{bottom:389.581320pt;}
.y15_c01066{bottom:418.410120pt;}
.y14_c01066{bottom:446.922120pt;}
.y13_c01066{bottom:475.750920pt;}
.y12_c01066{bottom:533.096120pt;}
.y11_c01066{bottom:540.378120pt;}
.y10_c01066{bottom:562.554120pt;}
.yf_c01066{bottom:590.432520pt;}
.ye_c01066{bottom:618.948920pt;}
.yd_c01066{bottom:647.460920pt;}
.yc_c01066{bottom:676.285320pt;}
.yb_c01066{bottom:697.832120pt;}
.y9_c01066{bottom:704.163720pt;}
.ya_c01066{bottom:704.801720pt;}
.y8_c01066{bottom:715.885320pt;}
.y7_c01066{bottom:733.313720pt;}
.y6_c01066{bottom:761.192120pt;}
.y5_c01066{bottom:789.699720pt;}
.y4_c01066{bottom:818.216120pt;}
.y3_c01066{bottom:879.670920pt;}
.y2_c01066{bottom:950.317320pt;}
.h3_c01066{height:20.559000pt;}
.hf_c01066{height:23.630746pt;}
.h17_c01066{height:25.331625pt;}
.h18_c01066{height:26.433000pt;}
.h8_c01066{height:29.364844pt;}
.hd_c01066{height:29.538549pt;}
.h7_c01066{height:31.226460pt;}
.h11_c01066{height:32.914370pt;}
.h1b_c01066{height:33.758325pt;}
.h15_c01066{height:34.602280pt;}
.he_c01066{height:35.978250pt;}
.h1a_c01066{height:36.290191pt;}
.h14_c01066{height:46.983923pt;}
.h6_c01066{height:61.493438pt;}
.hb_c01066{height:63.220781pt;}
.h13_c01066{height:63.566250pt;}
.h2_c01066{height:65.811797pt;}
.h10_c01066{height:67.193845pt;}
.h16_c01066{height:67.712048pt;}
.h5_c01066{height:68.748281pt;}
.h4_c01066{height:69.266484pt;}
.h12_c01066{height:70.993828pt;}
.hc_c01066{height:71.405996pt;}
.h19_c01066{height:71.821750pt;}
.h9_c01066{height:73.057875pt;}
.ha_c01066{height:85.173184pt;}
.h1c_c01066{height:96.921000pt;}
.h1_c01066{height:986.666667pt;}
.h0_c01066{height:1122.666667pt;}
.w1_c01066{width:689.333333pt;}
.w0_c01066{width:793.333333pt;}
.x0_c01066{left:0.000000pt;}
.x1_c01066{left:52.000000pt;}
.x62_c01066{left:69.583053pt;}
.x26_c01066{left:71.360653pt;}
.x4_c01066{left:72.918253pt;}
.x71_c01066{left:89.281853pt;}
.x40_c01066{left:91.565453pt;}
.x4b_c01066{left:93.941453pt;}
.x36_c01066{left:101.456653pt;}
.xe_c01066{left:111.149853pt;}
.x2e_c01066{left:120.323853pt;}
.x1d_c01066{left:121.714253pt;}
.x58_c01066{left:129.194253pt;}
.x3c_c01066{left:130.641853pt;}
.x6d_c01066{left:139.490253pt;}
.x63_c01066{left:140.436253pt;}
.x27_c01066{left:141.413053pt;}
.x5d_c01066{left:148.835853pt;}
.x2f_c01066{left:150.261453pt;}
.x59_c01066{left:158.445453pt;}
.x17_c01066{left:161.019453pt;}
.x5_c01066{left:161.952253pt;}
.x1e_c01066{left:169.793053pt;}
.x53_c01066{left:171.157053pt;}
.x7a_c01066{left:177.994653pt;}
.x6_c01066{left:190.182653pt;}
.x65_c01066{left:197.623053pt;}
.x6e_c01066{left:199.387453pt;}
.xf_c01066{left:200.346653pt;}
.x41_c01066{left:209.186253pt;}
.x1f_c01066{left:219.671453pt;}
.x47_c01066{left:229.457053pt;}
.x37_c01066{left:230.376653pt;}
.x5a_c01066{left:238.749853pt;}
.x10_c01066{left:240.052253pt;}
.x20_c01066{left:248.755453pt;}
.x28_c01066{left:258.391453pt;}
.x7_c01066{left:260.191053pt;}
.x54_c01066{left:268.291453pt;}
.x3d_c01066{left:269.409053pt;}
.x74_c01066{left:278.213453pt;}
.x21_c01066{left:279.181453pt;}
.x4c_c01066{left:287.321453pt;}
.x8_c01066{left:289.600653pt;}
.x72_c01066{left:296.777053pt;}
.x11_c01066{left:298.858253pt;}
.x42_c01066{left:306.963053pt;}
.x3e_c01066{left:307.988253pt;}
.x55_c01066{left:316.110653pt;}
.x30_c01066{left:317.989453pt;}
.x9_c01066{left:320.721853pt;}
.x12_c01066{left:328.461453pt;}
.x68_c01066{left:336.504653pt;}
.x4d_c01066{left:337.833453pt;}
.x38_c01066{left:338.753053pt;}
.x7b_c01066{left:346.048253pt;}
.x43_c01066{left:347.993053pt;}
.x48_c01066{left:356.674253pt;}
.x18_c01066{left:359.032653pt;}
.x69_c01066{left:367.581853pt;}
.x75_c01066{left:376.192653pt;}
.x29_c01066{left:377.094653pt;}
.xa_c01066{left:378.383853pt;}
.x4e_c01066{left:382.682653pt;}
.x66_c01066{left:385.212653pt;}
.x13_c01066{left:387.364253pt;}
.x31_c01066{left:388.732653pt;}
.x6f_c01066{left:396.393053pt;}
.x39_c01066{left:398.285053pt;}
.x76_c01066{left:404.823453pt;}
.xb_c01066{left:407.353453pt;}
.x44_c01066{left:416.998253pt;}
.x4f_c01066{left:425.578253pt;}
.x22_c01066{left:427.153453pt;}
.x5b_c01066{left:436.881853pt;}
.x5e_c01066{left:444.722653pt;}
.x56_c01066{left:445.866653pt;}
.x19_c01066{left:447.767453pt;}
.x50_c01066{left:455.397053pt;}
.x5f_c01066{left:456.312253pt;}
.x49_c01066{left:464.412653pt;}
.x64_c01066{left:465.490653pt;}
.x2a_c01066{left:466.458653pt;}
.x70_c01066{left:473.569053pt;}
.x77_c01066{left:474.554653pt;}
.x57_c01066{left:475.496253pt;}
.x32_c01066{left:476.605053pt;}
.x51_c01066{left:484.793453pt;}
.x67_c01066{left:493.989453pt;}
.x2b_c01066{left:495.841853pt;}
.x3f_c01066{left:504.157853pt;}
.x1a_c01066{left:506.054253pt;}
.x6a_c01066{left:513.978653pt;}
.x3a_c01066{left:515.245853pt;}
.x5c_c01066{left:523.605853pt;}
.x14_c01066{left:526.307453pt;}
.x25_c01066{left:532.727053pt;}
.x78_c01066{left:533.796253pt;}
.x1b_c01066{left:534.834653pt;}
.x6b_c01066{left:542.781053pt;}
.x2c_c01066{left:544.360653pt;}
.x23_c01066{left:554.093453pt;}
.x15_c01066{left:555.114253pt;}
.x79_c01066{left:562.629453pt;}
.x33_c01066{left:563.685453pt;}
.xc_c01066{left:564.965853pt;}
.x3_c01066{left:567.935853pt;}
.x45_c01066{left:572.401853pt;}
.x6c_c01066{left:582.165453pt;}
.x4a_c01066{left:583.221453pt;}
.xd_c01066{left:584.638253pt;}
.x7c_c01066{left:591.251453pt;}
.x52_c01066{left:592.971853pt;}
.x34_c01066{left:602.634253pt;}
.x2d_c01066{left:603.615453pt;}
.x60_c01066{left:611.293453pt;}
.x16_c01066{left:614.056653pt;}
.x2_c01066{left:618.465453pt;}
.x24_c01066{left:623.565053pt;}
.x1c_c01066{left:624.489053pt;}
.x46_c01066{left:630.046253pt;}
.x73_c01066{left:631.797453pt;}
.x61_c01066{left:640.769053pt;}
.x35_c01066{left:641.794253pt;}
.x3b_c01066{left:643.224253pt;}
.x7d_c01066{left:660.938653pt;}
}





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

.ir_c01067:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01067{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01067;src:url('chunks/assets/font_310960ac017333bbd94d3019.woff2')format("woff");}.ff1_c01067{font-family:ff1_c01067;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01067;src:url('chunks/assets/font_78acffb13899574e6e4960fc.woff2')format("woff");}.ff2_c01067{font-family:ff2_c01067;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01067;src:url('chunks/assets/font_8402a5528e895bb338bd5e9d.woff2')format("woff");}.ff3_c01067{font-family:ff3_c01067;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01067;src:url('chunks/assets/font_c06ab2b2fefd87d649369949.woff2')format("woff");}.ff4_c01067{font-family:ff4_c01067;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01067;src:url('chunks/assets/font_72226a38bfff7d5757465a1e.woff2')format("woff");}.ff5_c01067{font-family:ff5_c01067;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c01067{transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);}
.m4c_c01067{transform:matrix(0.145502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145502,0.000000,0.000000,0.250000,0,0);}
.m34_c01067{transform:matrix(0.149306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149306,0.000000,0.000000,0.250000,0,0);}
.m71_c01067{transform:matrix(0.171154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171154,0.000000,0.000000,0.250000,0,0);}
.m64_c01067{transform:matrix(0.172619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172619,0.000000,0.000000,0.250000,0,0);}
.m4a_c01067{transform:matrix(0.177976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177976,0.000000,0.000000,0.250000,0,0);}
.m19_c01067{transform:matrix(0.180195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180195,0.000000,0.000000,0.250000,0,0);}
.m54_c01067{transform:matrix(0.207842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207842,0.000000,0.000000,0.250000,0,0);}
.m6f_c01067{transform:matrix(0.214949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214949,0.000000,0.000000,0.250000,0,0);}
.m63_c01067{transform:matrix(0.233822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233822,0.000000,0.000000,0.250000,0,0);}
.m4d_c01067{transform:matrix(0.249722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249722,0.000000,0.000000,0.250000,0,0);}
.m0_c01067{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01067{transform:matrix(0.251640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251640,0.000000,0.000000,0.250000,0,0);}
.m25_c01067{transform:matrix(0.252313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252313,0.000000,0.000000,0.250000,0,0);}
.m69_c01067{transform:matrix(0.252477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252477,0.000000,0.000000,0.250000,0,0);}
.m66_c01067{transform:matrix(0.254084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254084,0.000000,0.000000,0.250000,0,0);}
.m49_c01067{transform:matrix(0.254316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254316,0.000000,0.000000,0.250000,0,0);}
.m44_c01067{transform:matrix(0.254533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254533,0.000000,0.000000,0.250000,0,0);}
.m88_c01067{transform:matrix(0.255101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255101,0.000000,0.000000,0.250000,0,0);}
.m1a_c01067{transform:matrix(0.255928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255928,0.000000,0.000000,0.250000,0,0);}
.m5_c01067{transform:matrix(0.256819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256819,0.000000,0.000000,0.250000,0,0);}
.m30_c01067{transform:matrix(0.256820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256820,0.000000,0.000000,0.250000,0,0);}
.m57_c01067{transform:matrix(0.257100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257100,0.000000,0.000000,0.250000,0,0);}
.ma1_c01067{transform:matrix(0.257425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257425,0.000000,0.000000,0.250000,0,0);}
.m81_c01067{transform:matrix(0.258119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258119,0.000000,0.000000,0.250000,0,0);}
.m92_c01067{transform:matrix(0.258184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258184,0.000000,0.000000,0.250000,0,0);}
.ma2_c01067{transform:matrix(0.258377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258377,0.000000,0.000000,0.250000,0,0);}
.me_c01067{transform:matrix(0.258914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258914,0.000000,0.000000,0.250000,0,0);}
.m3_c01067{transform:matrix(0.259211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259211,0.000000,0.000000,0.250000,0,0);}
.m43_c01067{transform:matrix(0.259656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259656,0.000000,0.000000,0.250000,0,0);}
.m6e_c01067{transform:matrix(0.259736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259736,0.000000,0.000000,0.250000,0,0);}
.m4f_c01067{transform:matrix(0.259773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259773,0.000000,0.000000,0.250000,0,0);}
.mb_c01067{transform:matrix(0.261325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261325,0.000000,0.000000,0.250000,0,0);}
.m3f_c01067{transform:matrix(0.262002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262002,0.000000,0.000000,0.250000,0,0);}
.m59_c01067{transform:matrix(0.262389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262389,0.000000,0.000000,0.250000,0,0);}
.m78_c01067{transform:matrix(0.262833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262833,0.000000,0.000000,0.250000,0,0);}
.m91_c01067{transform:matrix(0.262875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262875,0.000000,0.000000,0.250000,0,0);}
.m8e_c01067{transform:matrix(0.263210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263210,0.000000,0.000000,0.250000,0,0);}
.m3b_c01067{transform:matrix(0.264211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264211,0.000000,0.000000,0.250000,0,0);}
.ma_c01067{transform:matrix(0.264640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264640,0.000000,0.000000,0.250000,0,0);}
.m7b_c01067{transform:matrix(0.265568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265568,0.000000,0.000000,0.250000,0,0);}
.m84_c01067{transform:matrix(0.266165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266165,0.000000,0.000000,0.250000,0,0);}
.m29_c01067{transform:matrix(0.266295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266295,0.000000,0.000000,0.250000,0,0);}
.m33_c01067{transform:matrix(0.267039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267039,0.000000,0.000000,0.250000,0,0);}
.m37_c01067{transform:matrix(0.268266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268266,0.000000,0.000000,0.250000,0,0);}
.m3c_c01067{transform:matrix(0.268527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268527,0.000000,0.000000,0.250000,0,0);}
.m90_c01067{transform:matrix(0.269638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269638,0.000000,0.000000,0.250000,0,0);}
.m8d_c01067{transform:matrix(0.270022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270022,0.000000,0.000000,0.250000,0,0);}
.m9a_c01067{transform:matrix(0.270023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270023,0.000000,0.000000,0.250000,0,0);}
.m5c_c01067{transform:matrix(0.270331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270331,0.000000,0.000000,0.250000,0,0);}
.m32_c01067{transform:matrix(0.270341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270341,0.000000,0.000000,0.250000,0,0);}
.m7f_c01067{transform:matrix(0.270387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270387,0.000000,0.000000,0.250000,0,0);}
.ma3_c01067{transform:matrix(0.270906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270906,0.000000,0.000000,0.250000,0,0);}
.m85_c01067{transform:matrix(0.273322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273322,0.000000,0.000000,0.250000,0,0);}
.m10_c01067{transform:matrix(0.274264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274264,0.000000,0.000000,0.250000,0,0);}
.m21_c01067{transform:matrix(0.277095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277095,0.000000,0.000000,0.250000,0,0);}
.m36_c01067{transform:matrix(0.277879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277879,0.000000,0.000000,0.250000,0,0);}
.m18_c01067{transform:matrix(0.278579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278579,0.000000,0.000000,0.250000,0,0);}
.m24_c01067{transform:matrix(0.279096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279096,0.000000,0.000000,0.250000,0,0);}
.m7c_c01067{transform:matrix(0.279439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279439,0.000000,0.000000,0.250000,0,0);}
.m9f_c01067{transform:matrix(0.280208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280208,0.000000,0.000000,0.250000,0,0);}
.m80_c01067{transform:matrix(0.280437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280437,0.000000,0.000000,0.250000,0,0);}
.m61_c01067{transform:matrix(0.281693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281693,0.000000,0.000000,0.250000,0,0);}
.m1f_c01067{transform:matrix(0.282067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282067,0.000000,0.000000,0.250000,0,0);}
.m17_c01067{transform:matrix(0.282152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282152,0.000000,0.000000,0.250000,0,0);}
.m95_c01067{transform:matrix(0.282753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282753,0.000000,0.000000,0.250000,0,0);}
.ma4_c01067{transform:matrix(0.282799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282799,0.000000,0.000000,0.250000,0,0);}
.m55_c01067{transform:matrix(0.283015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283015,0.000000,0.000000,0.250000,0,0);}
.m2c_c01067{transform:matrix(0.283058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283058,0.000000,0.000000,0.250000,0,0);}
.m42_c01067{transform:matrix(0.283206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283206,0.000000,0.000000,0.250000,0,0);}
.m65_c01067{transform:matrix(0.283297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283297,0.000000,0.000000,0.250000,0,0);}
.m60_c01067{transform:matrix(0.284164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284164,0.000000,0.000000,0.250000,0,0);}
.m50_c01067{transform:matrix(0.284350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284350,0.000000,0.000000,0.250000,0,0);}
.m3e_c01067{transform:matrix(0.284762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284762,0.000000,0.000000,0.250000,0,0);}
.m3d_c01067{transform:matrix(0.285259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285259,0.000000,0.000000,0.250000,0,0);}
.m47_c01067{transform:matrix(0.285527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285527,0.000000,0.000000,0.250000,0,0);}
.m97_c01067{transform:matrix(0.286880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286880,0.000000,0.000000,0.250000,0,0);}
.m51_c01067{transform:matrix(0.287941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287941,0.000000,0.000000,0.250000,0,0);}
.m39_c01067{transform:matrix(0.288088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288088,0.000000,0.000000,0.250000,0,0);}
.m15_c01067{transform:matrix(0.288720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288720,0.000000,0.000000,0.250000,0,0);}
.m58_c01067{transform:matrix(0.288805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288805,0.000000,0.000000,0.250000,0,0);}
.m4b_c01067{transform:matrix(0.288844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288844,0.000000,0.000000,0.250000,0,0);}
.m5e_c01067{transform:matrix(0.289502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289502,0.000000,0.000000,0.250000,0,0);}
.m93_c01067{transform:matrix(0.289550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289550,0.000000,0.000000,0.250000,0,0);}
.m98_c01067{transform:matrix(0.290140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290140,0.000000,0.000000,0.250000,0,0);}
.m31_c01067{transform:matrix(0.290833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290833,0.000000,0.000000,0.250000,0,0);}
.m8f_c01067{transform:matrix(0.290863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290863,0.000000,0.000000,0.250000,0,0);}
.m1e_c01067{transform:matrix(0.291026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291026,0.000000,0.000000,0.250000,0,0);}
.m8b_c01067{transform:matrix(0.291177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291177,0.000000,0.000000,0.250000,0,0);}
.m9c_c01067{transform:matrix(0.291196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291196,0.000000,0.000000,0.250000,0,0);}
.m67_c01067{transform:matrix(0.291955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291955,0.000000,0.000000,0.250000,0,0);}
.m20_c01067{transform:matrix(0.292064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292064,0.000000,0.000000,0.250000,0,0);}
.m13_c01067{transform:matrix(0.292674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292674,0.000000,0.000000,0.250000,0,0);}
.m22_c01067{transform:matrix(0.293156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293156,0.000000,0.000000,0.250000,0,0);}
.m5f_c01067{transform:matrix(0.293295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293295,0.000000,0.000000,0.250000,0,0);}
.m96_c01067{transform:matrix(0.294214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294214,0.000000,0.000000,0.250000,0,0);}
.m5a_c01067{transform:matrix(0.294909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294909,0.000000,0.000000,0.250000,0,0);}
.m7a_c01067{transform:matrix(0.295044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295044,0.000000,0.000000,0.250000,0,0);}
.m35_c01067{transform:matrix(0.295442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295442,0.000000,0.000000,0.250000,0,0);}
.m56_c01067{transform:matrix(0.295568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295568,0.000000,0.000000,0.250000,0,0);}
.m2b_c01067{transform:matrix(0.295708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295708,0.000000,0.000000,0.250000,0,0);}
.md_c01067{transform:matrix(0.295808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295808,0.000000,0.000000,0.250000,0,0);}
.m45_c01067{transform:matrix(0.296411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296411,0.000000,0.000000,0.250000,0,0);}
.m87_c01067{transform:matrix(0.296722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296722,0.000000,0.000000,0.250000,0,0);}
.m79_c01067{transform:matrix(0.297410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297410,0.000000,0.000000,0.250000,0,0);}
.m9d_c01067{transform:matrix(0.297596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297596,0.000000,0.000000,0.250000,0,0);}
.m14_c01067{transform:matrix(0.297951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297951,0.000000,0.000000,0.250000,0,0);}
.m2a_c01067{transform:matrix(0.298194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298194,0.000000,0.000000,0.250000,0,0);}
.m1c_c01067{transform:matrix(0.298751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298751,0.000000,0.000000,0.250000,0,0);}
.mc_c01067{transform:matrix(0.299197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299197,0.000000,0.000000,0.250000,0,0);}
.m27_c01067{transform:matrix(0.300335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300335,0.000000,0.000000,0.250000,0,0);}
.m48_c01067{transform:matrix(0.300978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300978,0.000000,0.000000,0.250000,0,0);}
.m8a_c01067{transform:matrix(0.301071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301071,0.000000,0.000000,0.250000,0,0);}
.m2_c01067{transform:matrix(0.302387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302387,0.000000,0.000000,0.250000,0,0);}
.m9b_c01067{transform:matrix(0.302450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302450,0.000000,0.000000,0.250000,0,0);}
.m75_c01067{transform:matrix(0.306317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306317,0.000000,0.000000,0.250000,0,0);}
.m68_c01067{transform:matrix(0.307322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307322,0.000000,0.000000,0.250000,0,0);}
.m8_c01067{transform:matrix(0.308796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308796,0.000000,0.000000,0.250000,0,0);}
.m6b_c01067{transform:matrix(0.309081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309081,0.000000,0.000000,0.250000,0,0);}
.m52_c01067{transform:matrix(0.309552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309552,0.000000,0.000000,0.250000,0,0);}
.m11_c01067{transform:matrix(0.309984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309984,0.000000,0.000000,0.250000,0,0);}
.m9_c01067{transform:matrix(0.310631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310631,0.000000,0.000000,0.250000,0,0);}
.m4e_c01067{transform:matrix(0.311123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311123,0.000000,0.000000,0.250000,0,0);}
.m53_c01067{transform:matrix(0.312085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312085,0.000000,0.000000,0.250000,0,0);}
.m2f_c01067{transform:matrix(0.312260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312260,0.000000,0.000000,0.250000,0,0);}
.m77_c01067{transform:matrix(0.312650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312650,0.000000,0.000000,0.250000,0,0);}
.m6d_c01067{transform:matrix(0.313175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313175,0.000000,0.000000,0.250000,0,0);}
.m7e_c01067{transform:matrix(0.313745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313745,0.000000,0.000000,0.250000,0,0);}
.m26_c01067{transform:matrix(0.314490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314490,0.000000,0.000000,0.250000,0,0);}
.m4_c01067{transform:matrix(0.314578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314578,0.000000,0.000000,0.250000,0,0);}
.m99_c01067{transform:matrix(0.314859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314859,0.000000,0.000000,0.250000,0,0);}
.m94_c01067{transform:matrix(0.315475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315475,0.000000,0.000000,0.250000,0,0);}
.m76_c01067{transform:matrix(0.316256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316256,0.000000,0.000000,0.250000,0,0);}
.m6c_c01067{transform:matrix(0.316907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316907,0.000000,0.000000,0.250000,0,0);}
.m6_c01067{transform:matrix(0.317550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317550,0.000000,0.000000,0.250000,0,0);}
.m2e_c01067{transform:matrix(0.318914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318914,0.000000,0.000000,0.250000,0,0);}
.m7_c01067{transform:matrix(0.319020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319020,0.000000,0.000000,0.250000,0,0);}
.m62_c01067{transform:matrix(0.319183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319183,0.000000,0.000000,0.250000,0,0);}
.ma5_c01067{transform:matrix(0.319339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319339,0.000000,0.000000,0.250000,0,0);}
.m89_c01067{transform:matrix(0.320815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320815,0.000000,0.000000,0.250000,0,0);}
.m7d_c01067{transform:matrix(0.322076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322076,0.000000,0.000000,0.250000,0,0);}
.m41_c01067{transform:matrix(0.322342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322342,0.000000,0.000000,0.250000,0,0);}
.m86_c01067{transform:matrix(0.322577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322577,0.000000,0.000000,0.250000,0,0);}
.m38_c01067{transform:matrix(0.324309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324309,0.000000,0.000000,0.250000,0,0);}
.m12_c01067{transform:matrix(0.325016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325016,0.000000,0.000000,0.250000,0,0);}
.m83_c01067{transform:matrix(0.325165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325165,0.000000,0.000000,0.250000,0,0);}
.m8c_c01067{transform:matrix(0.327699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327699,0.000000,0.000000,0.250000,0,0);}
.m46_c01067{transform:matrix(0.329344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329344,0.000000,0.000000,0.250000,0,0);}
.m6a_c01067{transform:matrix(0.330925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330925,0.000000,0.000000,0.250000,0,0);}
.m9e_c01067{transform:matrix(0.331783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331783,0.000000,0.000000,0.250000,0,0);}
.ma0_c01067{transform:matrix(0.336835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336835,0.000000,0.000000,0.250000,0,0);}
.m2d_c01067{transform:matrix(0.341681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341681,0.000000,0.000000,0.250000,0,0);}
.m3a_c01067{transform:matrix(0.342744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342744,0.000000,0.000000,0.250000,0,0);}
.m23_c01067{transform:matrix(0.344664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344664,0.000000,0.000000,0.250000,0,0);}
.m5b_c01067{transform:matrix(0.345519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345519,0.000000,0.000000,0.250000,0,0);}
.m1b_c01067{transform:matrix(0.353894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353894,0.000000,0.000000,0.250000,0,0);}
.m40_c01067{transform:matrix(0.359874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359874,0.000000,0.000000,0.250000,0,0);}
.m82_c01067{transform:matrix(0.360463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360463,0.000000,0.000000,0.250000,0,0);}
.m5d_c01067{transform:matrix(0.361754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361754,0.000000,0.000000,0.250000,0,0);}
.m16_c01067{transform:matrix(0.370070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370070,0.000000,0.000000,0.250000,0,0);}
.m1d_c01067{transform:matrix(0.375943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375943,0.000000,0.000000,0.250000,0,0);}
.m28_c01067{transform:matrix(0.381818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381818,0.000000,0.000000,0.250000,0,0);}
.m70_c01067{transform:matrix(0.419704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419704,0.000000,0.000000,0.250000,0,0);}
.m72_c01067{transform:matrix(0.424153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424153,0.000000,0.000000,0.250000,0,0);}
.m73_c01067{transform:matrix(0.588850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588850,0.000000,0.000000,0.250000,0,0);}
.m74_c01067{transform:matrix(1.402900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.402900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.402900,0.000000,0.000000,0.250000,0,0);}
.v0_c01067{vertical-align:0.000000px;}
.lsf_c01067{letter-spacing:-2.813580px;}
.ls9_c01067{letter-spacing:-2.666888px;}
.ls12_c01067{letter-spacing:-2.403601px;}
.ls1a_c01067{letter-spacing:-1.808730px;}
.ls19_c01067{letter-spacing:-1.737252px;}
.ls6_c01067{letter-spacing:-0.546638px;}
.ls2_c01067{letter-spacing:0.000000px;}
.ls16_c01067{letter-spacing:0.435610px;}
.ls15_c01067{letter-spacing:0.732610px;}
.ls18_c01067{letter-spacing:1.117393px;}
.ls17_c01067{letter-spacing:1.712264px;}
.ls1c_c01067{letter-spacing:1.800691px;}
.ls13_c01067{letter-spacing:3.286810px;}
.ls3_c01067{letter-spacing:3.308390px;}
.ls0_c01067{letter-spacing:3.328063px;}
.ls1b_c01067{letter-spacing:3.408451px;}
.ls11_c01067{letter-spacing:3.524400px;}
.ls7_c01067{letter-spacing:3.625499px;}
.lsa_c01067{letter-spacing:3.781810px;}
.ls10_c01067{letter-spacing:3.801610px;}
.lsd_c01067{letter-spacing:4.003322px;}
.ls5_c01067{letter-spacing:4.019400px;}
.lsb_c01067{letter-spacing:4.059000px;}
.lse_c01067{letter-spacing:4.118400px;}
.ls4_c01067{letter-spacing:29.937798px;}
.lsc_c01067{letter-spacing:51.321798px;}
.ls1_c01067{letter-spacing:52.430400px;}
.ls14_c01067{letter-spacing:57.024198px;}
.ls8_c01067{letter-spacing:59.875398px;}
.sc__c01067{text-shadow:none;}
.sc0_c01067{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01067{-webkit-text-stroke:0px transparent;}
.sc0_c01067{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01067{word-spacing:-19.448748px;}
.ws1_c01067{word-spacing:0.000000px;}
._0_c01067{width:2.974356px;}
._a_c01067{width:9.025632px;}
._3_c01067{width:10.385496px;}
._7_c01067{width:13.246051px;}
._5_c01067{width:15.076512px;}
._6_c01067{width:16.474392px;}
._8_c01067{width:26.947731px;}
._1_c01067{width:41.540400px;}
._4_c01067{width:43.717212px;}
._2_c01067{width:72.905054px;}
._9_c01067{width:285.671914px;}
.fc0_c01067{color:transparent;}
.fs18_c01067{font-size:8.712198px;}
.fs1d_c01067{font-size:12.474198px;}
.fs16_c01067{font-size:14.652198px;}
.fs3_c01067{font-size:22.374000px;}
.fs0_c01067{font-size:27.720000px;}
.fsd_c01067{font-size:28.314000px;}
.fs17_c01067{font-size:29.106000px;}
.fs4_c01067{font-size:29.937798px;}
.fse_c01067{font-size:39.600000px;}
.fs5_c01067{font-size:45.144000px;}
.fsc_c01067{font-size:51.321798px;}
.fs15_c01067{font-size:57.024198px;}
.fs19_c01067{font-size:59.400000px;}
.fs7_c01067{font-size:59.875398px;}
.fs14_c01067{font-size:65.736198px;}
.fsb_c01067{font-size:68.112198px;}
.fs1a_c01067{font-size:69.696198px;}
.fs13_c01067{font-size:70.488000px;}
.fs2_c01067{font-size:72.072198px;}
.fsf_c01067{font-size:74.844000px;}
.fs9_c01067{font-size:75.636198px;}
.fs12_c01067{font-size:76.032198px;}
.fs11_c01067{font-size:79.200000px;}
.fs6_c01067{font-size:80.388000px;}
.fsa_c01067{font-size:81.180000px;}
.fs10_c01067{font-size:82.368000px;}
.fs8_c01067{font-size:82.566198px;}
.fs1c_c01067{font-size:84.744000px;}
.fs1_c01067{font-size:85.932198px;}
.fs1b_c01067{font-size:93.456198px;}
.y0_c01067{bottom:0.000000px;}
.y1_c01067{bottom:76.500000px;}
.y22_c01067{bottom:157.440735px;}
.y21_c01067{bottom:191.298735px;}
.y20_c01067{bottom:224.795385px;}
.y1f_c01067{bottom:257.227785px;}
.y1e_c01067{bottom:289.308735px;}
.y1d_c01067{bottom:321.736185px;}
.y1c_c01067{bottom:346.327785px;}
.y1b_c01067{bottom:353.460735px;}
.y1a_c01067{bottom:380.190735px;}
.y19_c01067{bottom:385.180335px;}
.y18_c01067{bottom:385.531785px;}
.y17_c01067{bottom:417.256335px;}
.y16_c01067{bottom:448.975935px;}
.y15_c01067{bottom:511.702335px;}
.y14_c01067{bottom:544.847535px;}
.y13_c01067{bottom:576.562185px;}
.y12_c01067{bottom:608.643135px;}
.y11_c01067{bottom:625.745385px;}
.y10_c01067{bottom:673.146585px;}
.yf_c01067{bottom:736.590735px;}
.ye_c01067{bottom:763.672185px;}
.yd_c01067{bottom:769.023135px;}
.y2_c01067{bottom:782.917785px;}
.yc_c01067{bottom:800.386335px;}
.yb_c01067{bottom:832.462335px;}
.ya_c01067{bottom:864.533385px;}
.y9_c01067{bottom:896.970735px;}
.y8_c01067{bottom:928.685385px;}
.y7_c01067{bottom:1032.397785px;}
.y6_c01067{bottom:1040.594985px;}
.y5_c01067{bottom:1050.930585px;}
.y4_c01067{bottom:1063.048185px;}
.y3_c01067{bottom:1076.947785px;}
.h1a_c01067{height:8.550546px;}
.h1b_c01067{height:8.780262px;}
.h1e_c01067{height:12.242743px;}
.h18_c01067{height:14.380331px;}
.h6_c01067{height:19.938573px;}
.h5_c01067{height:23.335383px;}
.h19_c01067{height:28.565947px;}
.h2_c01067{height:28.911094px;}
.hf_c01067{height:29.530617px;}
.he_c01067{height:34.180317px;}
.h17_c01067{height:37.978116px;}
.h9_c01067{height:39.877015px;}
.h10_c01067{height:41.301563px;}
.h7_c01067{height:47.083781px;}
.h16_c01067{height:68.560800px;}
.h15_c01067{height:69.180117px;}
.hd_c01067{height:71.038894px;}
.h11_c01067{height:73.455293px;}
.hb_c01067{height:74.232792px;}
.h14_c01067{height:74.621444px;}
.h4_c01067{height:75.169050px;}
.h13_c01067{height:77.730469px;}
.h8_c01067{height:78.896426px;}
.hc_c01067{height:79.673730px;}
.h12_c01067{height:80.839688px;}
.ha_c01067{height:81.034208px;}
.h1d_c01067{height:83.171602px;}
.h3_c01067{height:84.337753px;}
.h1c_c01067{height:94.186325px;}
.h1_c01067{height:1110.000000px;}
.h0_c01067{height:1263.000000px;}
.w1_c01067{width:775.500000px;}
.w0_c01067{width:892.500000px;}
.x0_c01067{left:0.000000px;}
.x2_c01067{left:47.635485px;}
.x1_c01067{left:58.500000px;}
.x6f_c01067{left:69.455085px;}
.x50_c01067{left:74.113035px;}
.x21_c01067{left:75.132735px;}
.x7_c01067{left:77.033535px;}
.x6c_c01067{left:108.847185px;}
.x22_c01067{left:109.896585px;}
.x18_c01067{left:110.936085px;}
.x51_c01067{left:119.153085px;}
.x29_c01067{left:120.247035px;}
.x35_c01067{left:129.944085px;}
.x63_c01067{left:139.537185px;}
.x6d_c01067{left:140.888535px;}
.x49_c01067{left:142.215135px;}
.x2a_c01067{left:153.263535px;}
.x10_c01067{left:158.812485px;}
.x36_c01067{left:164.732685px;}
.x19_c01067{left:176.429535px;}
.x70_c01067{left:184.597035px;}
.x2e_c01067{left:185.785035px;}
.x55_c01067{left:186.804735px;}
.x23_c01067{left:198.219435px;}
.x8_c01067{left:199.550985px;}
.x68_c01067{left:208.965885px;}
.x44_c01067{left:218.410485px;}
.x5e_c01067{left:219.687585px;}
.x3c_c01067{left:229.147035px;}
.x1a_c01067{left:230.523135px;}
.x9_c01067{left:231.671535px;}
.x11_c01067{left:242.843685px;}
.x5f_c01067{left:253.105035px;}
.x2b_c01067{left:263.678235px;}
.x64_c01067{left:274.503885px;}
.x3d_c01067{left:275.607735px;}
.x12_c01067{left:277.355085px;}
.x56_c01067{left:287.319435px;}
.x45_c01067{left:298.298535px;}
.xa_c01067{left:299.451885px;}
.x71_c01067{left:307.154085px;}
.x2f_c01067{left:308.549985px;}
.x72_c01067{left:310.445835px;}
.x52_c01067{left:318.915285px;}
.x1b_c01067{left:320.484435px;}
.x73_c01067{left:330.037935px;}
.x30_c01067{left:331.547685px;}
.x69_c01067{left:341.512035px;}
.xb_c01067{left:342.997035px;}
.x24_c01067{left:352.426785px;}
.x65_c01067{left:353.921685px;}
.x1c_c01067{left:355.079985px;}
.x60_c01067{left:363.603885px;}
.x4c_c01067{left:364.702785px;}
.xc_c01067{left:375.587835px;}
.x2c_c01067{left:386.705535px;}
.x4a_c01067{left:397.907385px;}
.x3e_c01067{left:408.035085px;}
.x53_c01067{left:409.133985px;}
.x6a_c01067{left:418.850835px;}
.x31_c01067{left:420.207135px;}
.x4d_c01067{left:430.290285px;}
.x25_c01067{left:431.384235px;}
.x13_c01067{left:441.873285px;}
.x32_c01067{left:449.709135px;}
.x6b_c01067{left:451.505985px;}
.x3b_c01067{left:453.060285px;}
.x37_c01067{left:454.164135px;}
.x3f_c01067{left:463.752285px;}
.xd_c01067{left:464.861085px;}
.x2d_c01067{left:474.879885px;}
.x57_c01067{left:485.007585px;}
.x38_c01067{left:486.873735px;}
.x40_c01067{left:496.961835px;}
.xe_c01067{left:509.396235px;}
.x33_c01067{left:518.142885px;}
.x58_c01067{left:519.187335px;}
.x1d_c01067{left:520.484235px;}
.x46_c01067{left:529.597185px;}
.x14_c01067{left:531.171285px;}
.x26_c01067{left:540.962385px;}
.x41_c01067{left:542.818635px;}
.x62_c01067{left:548.238885px;}
.x54_c01067{left:551.476185px;}
.x1e_c01067{left:554.218485px;}
.x59_c01067{left:562.836435px;}
.x15_c01067{left:564.326385px;}
.x27_c01067{left:574.528335px;}
.x42_c01067{left:575.676735px;}
.x66_c01067{left:583.765035px;}
.x34_c01067{left:586.334085px;}
.x5a_c01067{left:595.461885px;}
.x1f_c01067{left:596.961735px;}
.x5b_c01067{left:603.659085px;}
.x61_c01067{left:606.183585px;}
.x74_c01067{left:607.277535px;}
.x16_c01067{left:609.821835px;}
.x4e_c01067{left:617.583435px;}
.x28_c01067{left:618.815985px;}
.xf_c01067{left:629.349585px;}
.x4b_c01067{left:640.165335px;}
.x17_c01067{left:642.571035px;}
.x6e_c01067{left:650.030685px;}
.x43_c01067{left:662.267085px;}
.x47_c01067{left:673.315485px;}
.x39_c01067{left:674.409435px;}
.x5c_c01067{left:685.086585px;}
.x5d_c01067{left:692.481885px;}
.x3_c01067{left:695.778585px;}
.x4_c01067{left:696.818085px;}
.x5_c01067{left:698.535735px;}
.x6_c01067{left:701.461185px;}
.x67_c01067{left:705.252885px;}
.x48_c01067{left:708.500085px;}
.x4f_c01067{left:718.251585px;}
.x20_c01067{left:724.122285px;}
.x3a_c01067{left:729.651435px;}
@media print{
.v0_c01067{vertical-align:0.000000pt;}
.lsf_c01067{letter-spacing:-2.500960pt;}
.ls9_c01067{letter-spacing:-2.370567pt;}
.ls12_c01067{letter-spacing:-2.136534pt;}
.ls1a_c01067{letter-spacing:-1.607760pt;}
.ls19_c01067{letter-spacing:-1.544224pt;}
.ls6_c01067{letter-spacing:-0.485901pt;}
.ls2_c01067{letter-spacing:0.000000pt;}
.ls16_c01067{letter-spacing:0.387209pt;}
.ls15_c01067{letter-spacing:0.651209pt;}
.ls18_c01067{letter-spacing:0.993238pt;}
.ls17_c01067{letter-spacing:1.522013pt;}
.ls1c_c01067{letter-spacing:1.600614pt;}
.ls13_c01067{letter-spacing:2.921609pt;}
.ls3_c01067{letter-spacing:2.940791pt;}
.ls0_c01067{letter-spacing:2.958278pt;}
.ls1b_c01067{letter-spacing:3.029734pt;}
.ls11_c01067{letter-spacing:3.132800pt;}
.ls7_c01067{letter-spacing:3.222666pt;}
.lsa_c01067{letter-spacing:3.361609pt;}
.ls10_c01067{letter-spacing:3.379209pt;}
.lsd_c01067{letter-spacing:3.558509pt;}
.ls5_c01067{letter-spacing:3.572800pt;}
.lsb_c01067{letter-spacing:3.608000pt;}
.lse_c01067{letter-spacing:3.660800pt;}
.ls4_c01067{letter-spacing:26.611376pt;}
.lsc_c01067{letter-spacing:45.619376pt;}
.ls1_c01067{letter-spacing:46.604800pt;}
.ls14_c01067{letter-spacing:50.688176pt;}
.ls8_c01067{letter-spacing:53.222576pt;}
.ws0_c01067{word-spacing:-17.287776pt;}
.ws1_c01067{word-spacing:0.000000pt;}
._0_c01067{width:2.643872pt;}
._a_c01067{width:8.022784pt;}
._3_c01067{width:9.231552pt;}
._7_c01067{width:11.774268pt;}
._5_c01067{width:13.401344pt;}
._6_c01067{width:14.643904pt;}
._8_c01067{width:23.953538pt;}
._1_c01067{width:36.924800pt;}
._4_c01067{width:38.859744pt;}
._2_c01067{width:64.804492pt;}
._9_c01067{width:253.930590pt;}
.fs18_c01067{font-size:7.744176pt;}
.fs1d_c01067{font-size:11.088176pt;}
.fs16_c01067{font-size:13.024176pt;}
.fs3_c01067{font-size:19.888000pt;}
.fs0_c01067{font-size:24.640000pt;}
.fsd_c01067{font-size:25.168000pt;}
.fs17_c01067{font-size:25.872000pt;}
.fs4_c01067{font-size:26.611376pt;}
.fse_c01067{font-size:35.200000pt;}
.fs5_c01067{font-size:40.128000pt;}
.fsc_c01067{font-size:45.619376pt;}
.fs15_c01067{font-size:50.688176pt;}
.fs19_c01067{font-size:52.800000pt;}
.fs7_c01067{font-size:53.222576pt;}
.fs14_c01067{font-size:58.432176pt;}
.fsb_c01067{font-size:60.544176pt;}
.fs1a_c01067{font-size:61.952176pt;}
.fs13_c01067{font-size:62.656000pt;}
.fs2_c01067{font-size:64.064176pt;}
.fsf_c01067{font-size:66.528000pt;}
.fs9_c01067{font-size:67.232176pt;}
.fs12_c01067{font-size:67.584176pt;}
.fs11_c01067{font-size:70.400000pt;}
.fs6_c01067{font-size:71.456000pt;}
.fsa_c01067{font-size:72.160000pt;}
.fs10_c01067{font-size:73.216000pt;}
.fs8_c01067{font-size:73.392176pt;}
.fs1c_c01067{font-size:75.328000pt;}
.fs1_c01067{font-size:76.384176pt;}
.fs1b_c01067{font-size:83.072176pt;}
.y0_c01067{bottom:0.000000pt;}
.y1_c01067{bottom:68.000000pt;}
.y22_c01067{bottom:139.947320pt;}
.y21_c01067{bottom:170.043320pt;}
.y20_c01067{bottom:199.818120pt;}
.y1f_c01067{bottom:228.646920pt;}
.y1e_c01067{bottom:257.163320pt;}
.y1d_c01067{bottom:285.987720pt;}
.y1c_c01067{bottom:307.846920pt;}
.y1b_c01067{bottom:314.187320pt;}
.y1a_c01067{bottom:337.947320pt;}
.y19_c01067{bottom:342.382520pt;}
.y18_c01067{bottom:342.694920pt;}
.y17_c01067{bottom:370.894520pt;}
.y16_c01067{bottom:399.089720pt;}
.y15_c01067{bottom:454.846520pt;}
.y14_c01067{bottom:484.308920pt;}
.y13_c01067{bottom:512.499720pt;}
.y12_c01067{bottom:541.016120pt;}
.y11_c01067{bottom:556.218120pt;}
.y10_c01067{bottom:598.352520pt;}
.yf_c01067{bottom:654.747320pt;}
.ye_c01067{bottom:678.819720pt;}
.yd_c01067{bottom:683.576120pt;}
.y2_c01067{bottom:695.926920pt;}
.yc_c01067{bottom:711.454520pt;}
.yb_c01067{bottom:739.966520pt;}
.ya_c01067{bottom:768.474120pt;}
.y9_c01067{bottom:797.307320pt;}
.y8_c01067{bottom:825.498120pt;}
.y7_c01067{bottom:917.686920pt;}
.y6_c01067{bottom:924.973320pt;}
.y5_c01067{bottom:934.160520pt;}
.y4_c01067{bottom:944.931720pt;}
.y3_c01067{bottom:957.286920pt;}
.h1a_c01067{height:7.600485pt;}
.h1b_c01067{height:7.804677pt;}
.h1e_c01067{height:10.882438pt;}
.h18_c01067{height:12.782516pt;}
.h6_c01067{height:17.723176pt;}
.h5_c01067{height:20.742563pt;}
.h19_c01067{height:25.391953pt;}
.h2_c01067{height:25.698750pt;}
.hf_c01067{height:26.249438pt;}
.he_c01067{height:30.382504pt;}
.h17_c01067{height:33.758325pt;}
.h9_c01067{height:35.446236pt;}
.h10_c01067{height:36.712500pt;}
.h7_c01067{height:41.852250pt;}
.h16_c01067{height:60.942934pt;}
.h15_c01067{height:61.493438pt;}
.hd_c01067{height:63.145684pt;}
.h11_c01067{height:65.293594pt;}
.hb_c01067{height:65.984704pt;}
.h14_c01067{height:66.330173pt;}
.h4_c01067{height:66.816934pt;}
.h13_c01067{height:69.093750pt;}
.h8_c01067{height:70.130156pt;}
.hc_c01067{height:70.821094pt;}
.h12_c01067{height:71.857500pt;}
.ha_c01067{height:72.030407pt;}
.h1d_c01067{height:73.930313pt;}
.h3_c01067{height:74.966891pt;}
.h1c_c01067{height:83.721177pt;}
.h1_c01067{height:986.666667pt;}
.h0_c01067{height:1122.666667pt;}
.w1_c01067{width:689.333333pt;}
.w0_c01067{width:793.333333pt;}
.x0_c01067{left:0.000000pt;}
.x2_c01067{left:42.342653pt;}
.x1_c01067{left:52.000000pt;}
.x6f_c01067{left:61.737853pt;}
.x50_c01067{left:65.878253pt;}
.x21_c01067{left:66.784653pt;}
.x7_c01067{left:68.474253pt;}
.x6c_c01067{left:96.753053pt;}
.x22_c01067{left:97.685853pt;}
.x18_c01067{left:98.609853pt;}
.x51_c01067{left:105.913853pt;}
.x29_c01067{left:106.886253pt;}
.x35_c01067{left:115.505853pt;}
.x63_c01067{left:124.033053pt;}
.x6d_c01067{left:125.234253pt;}
.x49_c01067{left:126.413453pt;}
.x2a_c01067{left:136.234253pt;}
.x10_c01067{left:141.166653pt;}
.x36_c01067{left:146.429053pt;}
.x19_c01067{left:156.826253pt;}
.x70_c01067{left:164.086253pt;}
.x2e_c01067{left:165.142253pt;}
.x55_c01067{left:166.048653pt;}
.x23_c01067{left:176.195053pt;}
.x8_c01067{left:177.378653pt;}
.x68_c01067{left:185.747453pt;}
.x44_c01067{left:194.142653pt;}
.x5e_c01067{left:195.277853pt;}
.x3c_c01067{left:203.686253pt;}
.x1a_c01067{left:204.909453pt;}
.x9_c01067{left:205.930253pt;}
.x11_c01067{left:215.861053pt;}
.x5f_c01067{left:224.982253pt;}
.x2b_c01067{left:234.380653pt;}
.x64_c01067{left:244.003453pt;}
.x3d_c01067{left:244.984653pt;}
.x12_c01067{left:246.537853pt;}
.x56_c01067{left:255.395053pt;}
.x45_c01067{left:265.154253pt;}
.xa_c01067{left:266.179453pt;}
.x71_c01067{left:273.025853pt;}
.x2f_c01067{left:274.266653pt;}
.x72_c01067{left:275.951853pt;}
.x52_c01067{left:283.480253pt;}
.x1b_c01067{left:284.875053pt;}
.x73_c01067{left:293.367053pt;}
.x30_c01067{left:294.709053pt;}
.x69_c01067{left:303.566253pt;}
.xb_c01067{left:304.886253pt;}
.x24_c01067{left:313.268253pt;}
.x65_c01067{left:314.597053pt;}
.x1c_c01067{left:315.626653pt;}
.x60_c01067{left:323.203453pt;}
.x4c_c01067{left:324.180253pt;}
.xc_c01067{left:333.855853pt;}
.x2c_c01067{left:343.738253pt;}
.x4a_c01067{left:353.695453pt;}
.x3e_c01067{left:362.697853pt;}
.x53_c01067{left:363.674653pt;}
.x6a_c01067{left:372.311853pt;}
.x31_c01067{left:373.517453pt;}
.x4d_c01067{left:382.480253pt;}
.x25_c01067{left:383.452653pt;}
.x13_c01067{left:392.776253pt;}
.x32_c01067{left:399.741453pt;}
.x6b_c01067{left:401.338653pt;}
.x3b_c01067{left:402.720253pt;}
.x37_c01067{left:403.701453pt;}
.x3f_c01067{left:412.224253pt;}
.xd_c01067{left:413.209853pt;}
.x2d_c01067{left:422.115453pt;}
.x57_c01067{left:431.117853pt;}
.x38_c01067{left:432.776653pt;}
.x40_c01067{left:441.743853pt;}
.xe_c01067{left:452.796653pt;}
.x33_c01067{left:460.571453pt;}
.x58_c01067{left:461.499853pt;}
.x1d_c01067{left:462.652653pt;}
.x46_c01067{left:470.753053pt;}
.x14_c01067{left:472.152253pt;}
.x26_c01067{left:480.855453pt;}
.x41_c01067{left:482.505453pt;}
.x62_c01067{left:487.323453pt;}
.x54_c01067{left:490.201053pt;}
.x1e_c01067{left:492.638653pt;}
.x59_c01067{left:500.299053pt;}
.x15_c01067{left:501.623453pt;}
.x27_c01067{left:510.691853pt;}
.x42_c01067{left:511.712653pt;}
.x66_c01067{left:518.902253pt;}
.x34_c01067{left:521.185853pt;}
.x5a_c01067{left:529.299453pt;}
.x1f_c01067{left:530.632653pt;}
.x5b_c01067{left:536.585853pt;}
.x61_c01067{left:538.829853pt;}
.x74_c01067{left:539.802253pt;}
.x16_c01067{left:542.063853pt;}
.x4e_c01067{left:548.963053pt;}
.x28_c01067{left:550.058653pt;}
.xf_c01067{left:559.421853pt;}
.x4b_c01067{left:569.035853pt;}
.x17_c01067{left:571.174253pt;}
.x6e_c01067{left:577.805053pt;}
.x43_c01067{left:588.681853pt;}
.x47_c01067{left:598.502653pt;}
.x39_c01067{left:599.475053pt;}
.x5c_c01067{left:608.965853pt;}
.x5d_c01067{left:615.539453pt;}
.x3_c01067{left:618.469853pt;}
.x4_c01067{left:619.393853pt;}
.x5_c01067{left:620.920653pt;}
.x6_c01067{left:623.521053pt;}
.x67_c01067{left:626.891453pt;}
.x48_c01067{left:629.777853pt;}
.x4f_c01067{left:638.445853pt;}
.x20_c01067{left:643.664253pt;}
.x3a_c01067{left:648.579053pt;}
}





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

.ir_c01068:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01068{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01068;src:url('chunks/assets/font_57c385703ab102db9a3234b5.woff2')format("woff");}.ff1_c01068{font-family:ff1_c01068;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01068;src:url('chunks/assets/font_5590d273bb69ce4572b227d4.woff2')format("woff");}.ff2_c01068{font-family:ff2_c01068;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01068;src:url('chunks/assets/font_aca7f6c1457ecd7b93261618.woff2')format("woff");}.ff3_c01068{font-family:ff3_c01068;line-height:0.666000;font-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_c01068{transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);}
.m93_c01068{transform:matrix(0.135294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135294,0.000000,0.000000,0.250000,0,0);}
.m79_c01068{transform:matrix(0.166666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166666,0.000000,0.000000,0.250000,0,0);}
.m95_c01068{transform:matrix(0.171296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171296,0.000000,0.000000,0.250000,0,0);}
.m57_c01068{transform:matrix(0.180233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180233,0.000000,0.000000,0.250000,0,0);}
.m62_c01068{transform:matrix(0.182317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182317,0.000000,0.000000,0.250000,0,0);}
.m94_c01068{transform:matrix(0.189141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189141,0.000000,0.000000,0.250000,0,0);}
.md_c01068{transform:matrix(0.208665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208665,0.000000,0.000000,0.250000,0,0);}
.m15_c01068{transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);}
.m9e_c01068{transform:matrix(0.221256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221256,0.000000,0.000000,0.250000,0,0);}
.m58_c01068{transform:matrix(0.225420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225420,0.000000,0.000000,0.250000,0,0);}
.m67_c01068{transform:matrix(0.243738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243738,0.000000,0.000000,0.250000,0,0);}
.m0_c01068{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01068{transform:matrix(0.250471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250471,0.000000,0.000000,0.250000,0,0);}
.m2b_c01068{transform:matrix(0.250897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250897,0.000000,0.000000,0.250000,0,0);}
.m8c_c01068{transform:matrix(0.251111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251111,0.000000,0.000000,0.250000,0,0);}
.mb6_c01068{transform:matrix(0.251850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251850,0.000000,0.000000,0.250000,0,0);}
.ma0_c01068{transform:matrix(0.253030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253030,0.000000,0.000000,0.250000,0,0);}
.m61_c01068{transform:matrix(0.254546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254546,0.000000,0.000000,0.250000,0,0);}
.m32_c01068{transform:matrix(0.254778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254778,0.000000,0.000000,0.250000,0,0);}
.m1c_c01068{transform:matrix(0.255459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255459,0.000000,0.000000,0.250000,0,0);}
.m63_c01068{transform:matrix(0.255625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255625,0.000000,0.000000,0.250000,0,0);}
.m55_c01068{transform:matrix(0.257696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257696,0.000000,0.000000,0.250000,0,0);}
.m13_c01068{transform:matrix(0.257706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257706,0.000000,0.000000,0.250000,0,0);}
.m1e_c01068{transform:matrix(0.257726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257726,0.000000,0.000000,0.250000,0,0);}
.m6_c01068{transform:matrix(0.258282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258282,0.000000,0.000000,0.250000,0,0);}
.m2e_c01068{transform:matrix(0.260021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260021,0.000000,0.000000,0.250000,0,0);}
.m2a_c01068{transform:matrix(0.260072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260072,0.000000,0.000000,0.250000,0,0);}
.m22_c01068{transform:matrix(0.260635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260635,0.000000,0.000000,0.250000,0,0);}
.ma9_c01068{transform:matrix(0.262395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262395,0.000000,0.000000,0.250000,0,0);}
.m27_c01068{transform:matrix(0.262894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262894,0.000000,0.000000,0.250000,0,0);}
.m97_c01068{transform:matrix(0.262975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262975,0.000000,0.000000,0.250000,0,0);}
.mc_c01068{transform:matrix(0.263063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263063,0.000000,0.000000,0.250000,0,0);}
.m7_c01068{transform:matrix(0.263564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263564,0.000000,0.000000,0.250000,0,0);}
.m6c_c01068{transform:matrix(0.264210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264210,0.000000,0.000000,0.250000,0,0);}
.m3a_c01068{transform:matrix(0.264256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264256,0.000000,0.000000,0.250000,0,0);}
.ma7_c01068{transform:matrix(0.264345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264345,0.000000,0.000000,0.250000,0,0);}
.m3_c01068{transform:matrix(0.264583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264583,0.000000,0.000000,0.250000,0,0);}
.m65_c01068{transform:matrix(0.265678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265678,0.000000,0.000000,0.250000,0,0);}
.m98_c01068{transform:matrix(0.266318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266318,0.000000,0.000000,0.250000,0,0);}
.m4b_c01068{transform:matrix(0.267496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267496,0.000000,0.000000,0.250000,0,0);}
.m30_c01068{transform:matrix(0.267506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267506,0.000000,0.000000,0.250000,0,0);}
.m2d_c01068{transform:matrix(0.268536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268536,0.000000,0.000000,0.250000,0,0);}
.m82_c01068{transform:matrix(0.268759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268759,0.000000,0.000000,0.250000,0,0);}
.m49_c01068{transform:matrix(0.269060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269060,0.000000,0.000000,0.250000,0,0);}
.ma5_c01068{transform:matrix(0.269405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269405,0.000000,0.000000,0.250000,0,0);}
.m9f_c01068{transform:matrix(0.269481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269481,0.000000,0.000000,0.250000,0,0);}
.ma8_c01068{transform:matrix(0.269998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269998,0.000000,0.000000,0.250000,0,0);}
.m80_c01068{transform:matrix(0.270305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270305,0.000000,0.000000,0.250000,0,0);}
.m78_c01068{transform:matrix(0.270339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270339,0.000000,0.000000,0.250000,0,0);}
.m92_c01068{transform:matrix(0.270678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270678,0.000000,0.000000,0.250000,0,0);}
.m18_c01068{transform:matrix(0.270875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270875,0.000000,0.000000,0.250000,0,0);}
.ma1_c01068{transform:matrix(0.271164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271164,0.000000,0.000000,0.250000,0,0);}
.mab_c01068{transform:matrix(0.271611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271611,0.000000,0.000000,0.250000,0,0);}
.ma6_c01068{transform:matrix(0.272118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272118,0.000000,0.000000,0.250000,0,0);}
.m6b_c01068{transform:matrix(0.272120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272120,0.000000,0.000000,0.250000,0,0);}
.m16_c01068{transform:matrix(0.272522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272522,0.000000,0.000000,0.250000,0,0);}
.m72_c01068{transform:matrix(0.274349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274349,0.000000,0.000000,0.250000,0,0);}
.m7c_c01068{transform:matrix(0.274532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274532,0.000000,0.000000,0.250000,0,0);}
.mae_c01068{transform:matrix(0.275011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275011,0.000000,0.000000,0.250000,0,0);}
.mb0_c01068{transform:matrix(0.275099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275099,0.000000,0.000000,0.250000,0,0);}
.m99_c01068{transform:matrix(0.275733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275733,0.000000,0.000000,0.250000,0,0);}
.m39_c01068{transform:matrix(0.276502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276502,0.000000,0.000000,0.250000,0,0);}
.mad_c01068{transform:matrix(0.276688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276688,0.000000,0.000000,0.250000,0,0);}
.m14_c01068{transform:matrix(0.277684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277684,0.000000,0.000000,0.250000,0,0);}
.ma2_c01068{transform:matrix(0.278036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278036,0.000000,0.000000,0.250000,0,0);}
.m4f_c01068{transform:matrix(0.278438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278438,0.000000,0.000000,0.250000,0,0);}
.m66_c01068{transform:matrix(0.279086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279086,0.000000,0.000000,0.250000,0,0);}
.m24_c01068{transform:matrix(0.279207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279207,0.000000,0.000000,0.250000,0,0);}
.m2_c01068{transform:matrix(0.279248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279248,0.000000,0.000000,0.250000,0,0);}
.m87_c01068{transform:matrix(0.279315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279315,0.000000,0.000000,0.250000,0,0);}
.me_c01068{transform:matrix(0.279385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279385,0.000000,0.000000,0.250000,0,0);}
.m89_c01068{transform:matrix(0.280012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280012,0.000000,0.000000,0.250000,0,0);}
.m5f_c01068{transform:matrix(0.280038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280038,0.000000,0.000000,0.250000,0,0);}
.m45_c01068{transform:matrix(0.280550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280550,0.000000,0.000000,0.250000,0,0);}
.m3d_c01068{transform:matrix(0.280989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280989,0.000000,0.000000,0.250000,0,0);}
.m8f_c01068{transform:matrix(0.281318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281318,0.000000,0.000000,0.250000,0,0);}
.m5a_c01068{transform:matrix(0.281595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281595,0.000000,0.000000,0.250000,0,0);}
.m3b_c01068{transform:matrix(0.281733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281733,0.000000,0.000000,0.250000,0,0);}
.ma4_c01068{transform:matrix(0.281822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281822,0.000000,0.000000,0.250000,0,0);}
.m48_c01068{transform:matrix(0.281919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281919,0.000000,0.000000,0.250000,0,0);}
.m53_c01068{transform:matrix(0.282018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282018,0.000000,0.000000,0.250000,0,0);}
.m8e_c01068{transform:matrix(0.282295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282295,0.000000,0.000000,0.250000,0,0);}
.m44_c01068{transform:matrix(0.282446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282446,0.000000,0.000000,0.250000,0,0);}
.ma_c01068{transform:matrix(0.282923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282923,0.000000,0.000000,0.250000,0,0);}
.m41_c01068{transform:matrix(0.283046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283046,0.000000,0.000000,0.250000,0,0);}
.m59_c01068{transform:matrix(0.283349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283349,0.000000,0.000000,0.250000,0,0);}
.m4e_c01068{transform:matrix(0.283702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283702,0.000000,0.000000,0.250000,0,0);}
.m5d_c01068{transform:matrix(0.283901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283901,0.000000,0.000000,0.250000,0,0);}
.m7b_c01068{transform:matrix(0.285024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285024,0.000000,0.000000,0.250000,0,0);}
.m84_c01068{transform:matrix(0.285319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285319,0.000000,0.000000,0.250000,0,0);}
.m76_c01068{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01068{transform:matrix(0.285728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285728,0.000000,0.000000,0.250000,0,0);}
.m12_c01068{transform:matrix(0.285966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285966,0.000000,0.000000,0.250000,0,0);}
.maf_c01068{transform:matrix(0.286854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286854,0.000000,0.000000,0.250000,0,0);}
.m25_c01068{transform:matrix(0.287274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287274,0.000000,0.000000,0.250000,0,0);}
.m73_c01068{transform:matrix(0.287392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287392,0.000000,0.000000,0.250000,0,0);}
.m8a_c01068{transform:matrix(0.288065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288065,0.000000,0.000000,0.250000,0,0);}
.m7f_c01068{transform:matrix(0.288163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288163,0.000000,0.000000,0.250000,0,0);}
.m86_c01068{transform:matrix(0.288502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288502,0.000000,0.000000,0.250000,0,0);}
.m35_c01068{transform:matrix(0.288565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288565,0.000000,0.000000,0.250000,0,0);}
.mb2_c01068{transform:matrix(0.288652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288652,0.000000,0.000000,0.250000,0,0);}
.m5e_c01068{transform:matrix(0.289339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289339,0.000000,0.000000,0.250000,0,0);}
.m9_c01068{transform:matrix(0.290027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290027,0.000000,0.000000,0.250000,0,0);}
.m9c_c01068{transform:matrix(0.291531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291531,0.000000,0.000000,0.250000,0,0);}
.mac_c01068{transform:matrix(0.291570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291570,0.000000,0.000000,0.250000,0,0);}
.m96_c01068{transform:matrix(0.291782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291782,0.000000,0.000000,0.250000,0,0);}
.m29_c01068{transform:matrix(0.292059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292059,0.000000,0.000000,0.250000,0,0);}
.m54_c01068{transform:matrix(0.292573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292573,0.000000,0.000000,0.250000,0,0);}
.m5_c01068{transform:matrix(0.293003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293003,0.000000,0.000000,0.250000,0,0);}
.m90_c01068{transform:matrix(0.293112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293112,0.000000,0.000000,0.250000,0,0);}
.m19_c01068{transform:matrix(0.293401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293401,0.000000,0.000000,0.250000,0,0);}
.m81_c01068{transform:matrix(0.294250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294250,0.000000,0.000000,0.250000,0,0);}
.m74_c01068{transform:matrix(0.294368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294368,0.000000,0.000000,0.250000,0,0);}
.mb1_c01068{transform:matrix(0.296323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296323,0.000000,0.000000,0.250000,0,0);}
.m1f_c01068{transform:matrix(0.297787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297787,0.000000,0.000000,0.250000,0,0);}
.m9d_c01068{transform:matrix(0.297940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297940,0.000000,0.000000,0.250000,0,0);}
.mb4_c01068{transform:matrix(0.298189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298189,0.000000,0.000000,0.250000,0,0);}
.m4a_c01068{transform:matrix(0.298630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298630,0.000000,0.000000,0.250000,0,0);}
.m26_c01068{transform:matrix(0.300613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300613,0.000000,0.000000,0.250000,0,0);}
.m8b_c01068{transform:matrix(0.300931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300931,0.000000,0.000000,0.250000,0,0);}
.m88_c01068{transform:matrix(0.301108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301108,0.000000,0.000000,0.250000,0,0);}
.mb9_c01068{transform:matrix(0.301310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301310,0.000000,0.000000,0.250000,0,0);}
.m71_c01068{transform:matrix(0.301514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301514,0.000000,0.000000,0.250000,0,0);}
.m75_c01068{transform:matrix(0.301666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301666,0.000000,0.000000,0.250000,0,0);}
.m43_c01068{transform:matrix(0.301943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301943,0.000000,0.000000,0.250000,0,0);}
.m51_c01068{transform:matrix(0.302464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302464,0.000000,0.000000,0.250000,0,0);}
.m38_c01068{transform:matrix(0.302602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302602,0.000000,0.000000,0.250000,0,0);}
.m9b_c01068{transform:matrix(0.303380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303380,0.000000,0.000000,0.250000,0,0);}
.mb8_c01068{transform:matrix(0.304939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304939,0.000000,0.000000,0.250000,0,0);}
.mb_c01068{transform:matrix(0.305067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305067,0.000000,0.000000,0.250000,0,0);}
.m6e_c01068{transform:matrix(0.305315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305315,0.000000,0.000000,0.250000,0,0);}
.m23_c01068{transform:matrix(0.305670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305670,0.000000,0.000000,0.250000,0,0);}
.m34_c01068{transform:matrix(0.306352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306352,0.000000,0.000000,0.250000,0,0);}
.m1b_c01068{transform:matrix(0.306463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306463,0.000000,0.000000,0.250000,0,0);}
.m3c_c01068{transform:matrix(0.308362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308362,0.000000,0.000000,0.250000,0,0);}
.mba_c01068{transform:matrix(0.310254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310254,0.000000,0.000000,0.250000,0,0);}
.m77_c01068{transform:matrix(0.310747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310747,0.000000,0.000000,0.250000,0,0);}
.m8d_c01068{transform:matrix(0.310942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310942,0.000000,0.000000,0.250000,0,0);}
.m40_c01068{transform:matrix(0.312674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312674,0.000000,0.000000,0.250000,0,0);}
.m9a_c01068{transform:matrix(0.314193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314193,0.000000,0.000000,0.250000,0,0);}
.m4d_c01068{transform:matrix(0.314976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314976,0.000000,0.000000,0.250000,0,0);}
.m69_c01068{transform:matrix(0.316160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316160,0.000000,0.000000,0.250000,0,0);}
.m5c_c01068{transform:matrix(0.317103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317103,0.000000,0.000000,0.250000,0,0);}
.m83_c01068{transform:matrix(0.317176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317176,0.000000,0.000000,0.250000,0,0);}
.m50_c01068{transform:matrix(0.317332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317332,0.000000,0.000000,0.250000,0,0);}
.m64_c01068{transform:matrix(0.317626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317626,0.000000,0.000000,0.250000,0,0);}
.ma3_c01068{transform:matrix(0.317668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317668,0.000000,0.000000,0.250000,0,0);}
.m37_c01068{transform:matrix(0.318157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318157,0.000000,0.000000,0.250000,0,0);}
.mf_c01068{transform:matrix(0.318454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318454,0.000000,0.000000,0.250000,0,0);}
.m60_c01068{transform:matrix(0.319291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319291,0.000000,0.000000,0.250000,0,0);}
.m7a_c01068{transform:matrix(0.319381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319381,0.000000,0.000000,0.250000,0,0);}
.m17_c01068{transform:matrix(0.319383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319383,0.000000,0.000000,0.250000,0,0);}
.m47_c01068{transform:matrix(0.319409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319409,0.000000,0.000000,0.250000,0,0);}
.m20_c01068{transform:matrix(0.319988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319988,0.000000,0.000000,0.250000,0,0);}
.m91_c01068{transform:matrix(0.322034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322034,0.000000,0.000000,0.250000,0,0);}
.m11_c01068{transform:matrix(0.322998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322998,0.000000,0.000000,0.250000,0,0);}
.maa_c01068{transform:matrix(0.323643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323643,0.000000,0.000000,0.250000,0,0);}
.m46_c01068{transform:matrix(0.325623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325623,0.000000,0.000000,0.250000,0,0);}
.m36_c01068{transform:matrix(0.325773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325773,0.000000,0.000000,0.250000,0,0);}
.m52_c01068{transform:matrix(0.325834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325834,0.000000,0.000000,0.250000,0,0);}
.mb5_c01068{transform:matrix(0.326036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326036,0.000000,0.000000,0.250000,0,0);}
.m42_c01068{transform:matrix(0.326580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326580,0.000000,0.000000,0.250000,0,0);}
.m4_c01068{transform:matrix(0.326587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326587,0.000000,0.000000,0.250000,0,0);}
.m10_c01068{transform:matrix(0.326599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326599,0.000000,0.000000,0.250000,0,0);}
.m3f_c01068{transform:matrix(0.329069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329069,0.000000,0.000000,0.250000,0,0);}
.m1a_c01068{transform:matrix(0.330872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330872,0.000000,0.000000,0.250000,0,0);}
.m70_c01068{transform:matrix(0.331832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331832,0.000000,0.000000,0.250000,0,0);}
.mb7_c01068{transform:matrix(0.332960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332960,0.000000,0.000000,0.250000,0,0);}
.m5b_c01068{transform:matrix(0.334246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334246,0.000000,0.000000,0.250000,0,0);}
.mbb_c01068{transform:matrix(0.334339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334339,0.000000,0.000000,0.250000,0,0);}
.m33_c01068{transform:matrix(0.335052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335052,0.000000,0.000000,0.250000,0,0);}
.m68_c01068{transform:matrix(0.335493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335493,0.000000,0.000000,0.250000,0,0);}
.m1d_c01068{transform:matrix(0.338421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338421,0.000000,0.000000,0.250000,0,0);}
.m6d_c01068{transform:matrix(0.341044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341044,0.000000,0.000000,0.250000,0,0);}
.m6f_c01068{transform:matrix(0.342181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342181,0.000000,0.000000,0.250000,0,0);}
.m2c_c01068{transform:matrix(0.342830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342830,0.000000,0.000000,0.250000,0,0);}
.m21_c01068{transform:matrix(0.344983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344983,0.000000,0.000000,0.250000,0,0);}
.m6a_c01068{transform:matrix(0.349926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349926,0.000000,0.000000,0.250000,0,0);}
.m28_c01068{transform:matrix(0.360042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360042,0.000000,0.000000,0.250000,0,0);}
.mb3_c01068{transform:matrix(0.362789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362789,0.000000,0.000000,0.250000,0,0);}
.m3e_c01068{transform:matrix(0.374684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374684,0.000000,0.000000,0.250000,0,0);}
.m7e_c01068{transform:matrix(0.377007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377007,0.000000,0.000000,0.250000,0,0);}
.m8_c01068{transform:matrix(0.380631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380631,0.000000,0.000000,0.250000,0,0);}
.m1_c01068{transform:matrix(0.386579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386579,0.000000,0.000000,0.250000,0,0);}
.m31_c01068{transform:matrix(0.392526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392526,0.000000,0.000000,0.250000,0,0);}
.m56_c01068{transform:matrix(0.398473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398473,0.000000,0.000000,0.250000,0,0);}
.m7d_c01068{transform:matrix(0.403692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403692,0.000000,0.000000,0.250000,0,0);}
.v0_c01068{vertical-align:0.000000px;}
.lsb_c01068{letter-spacing:-2.938327px;}
.ls5_c01068{letter-spacing:-2.778930px;}
.ls1b_c01068{letter-spacing:-2.529450px;}
.ls19_c01068{letter-spacing:-2.418577px;}
.ls18_c01068{letter-spacing:-1.326762px;}
.ls1d_c01068{letter-spacing:-1.066470px;}
.ls20_c01068{letter-spacing:-0.315770px;}
.ls3_c01068{letter-spacing:-0.150856px;}
.ls2_c01068{letter-spacing:0.000000px;}
.ls1a_c01068{letter-spacing:0.566638px;}
.ls1c_c01068{letter-spacing:1.300943px;}
.ls6_c01068{letter-spacing:1.881733px;}
.lsa_c01068{letter-spacing:2.064348px;}
.lsc_c01068{letter-spacing:2.135806px;}
.ls1f_c01068{letter-spacing:2.548676px;}
.lsd_c01068{letter-spacing:3.177900px;}
.ls13_c01068{letter-spacing:3.271198px;}
.ls12_c01068{letter-spacing:3.425400px;}
.ls17_c01068{letter-spacing:3.455110px;}
.ls14_c01068{letter-spacing:3.604669px;}
.lsf_c01068{letter-spacing:3.623400px;}
.ls21_c01068{letter-spacing:3.652308px;}
.ls7_c01068{letter-spacing:3.663000px;}
.ls10_c01068{letter-spacing:3.801610px;}
.ls4_c01068{letter-spacing:3.969900px;}
.ls8_c01068{letter-spacing:4.059000px;}
.ls1e_c01068{letter-spacing:4.197610px;}
.ls1_c01068{letter-spacing:4.262900px;}
.ls16_c01068{letter-spacing:4.385700px;}
.ls15_c01068{letter-spacing:31.363200px;}
.ls0_c01068{letter-spacing:51.321798px;}
.lse_c01068{letter-spacing:58.449798px;}
.ls11_c01068{letter-spacing:59.875398px;}
.ls9_c01068{letter-spacing:61.300998px;}
.sc__c01068{text-shadow:none;}
.sc0_c01068{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01068{-webkit-text-stroke:0px transparent;}
.sc0_c01068{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01068{word-spacing:-102.643596px;}
.ws1_c01068{word-spacing:0.000000px;}
._0_c01068{width:1.642198px;}
._1_c01068{width:10.035344px;}
._2_c01068{width:21.803998px;}
.fc0_c01068{color:transparent;}
.fs0_c01068{font-size:27.720000px;}
.fs11_c01068{font-size:31.363200px;}
.fse_c01068{font-size:40.788000px;}
.fs2_c01068{font-size:51.321798px;}
.fsa_c01068{font-size:58.449798px;}
.fsd_c01068{font-size:59.875398px;}
.fs16_c01068{font-size:60.192000px;}
.fs7_c01068{font-size:61.300998px;}
.fs9_c01068{font-size:63.558000px;}
.fs10_c01068{font-size:67.320000px;}
.fsf_c01068{font-size:68.508000px;}
.fs13_c01068{font-size:69.102198px;}
.fs14_c01068{font-size:72.270000px;}
.fsb_c01068{font-size:72.468000px;}
.fs5_c01068{font-size:73.260000px;}
.fs3_c01068{font-size:74.844000px;}
.fs15_c01068{font-size:75.636198px;}
.fsc_c01068{font-size:76.032198px;}
.fs1_c01068{font-size:79.398000px;}
.fs6_c01068{font-size:81.180000px;}
.fs17_c01068{font-size:83.556198px;}
.fs8_c01068{font-size:83.952198px;}
.fs12_c01068{font-size:87.714000px;}
.fs4_c01068{font-size:102.168000px;}
.y0_c01068{bottom:0.000000px;}
.y1_c01068{bottom:76.500000px;}
.y1f_c01068{bottom:121.800735px;}
.y1e_c01068{bottom:153.876735px;}
.y1d_c01068{bottom:187.734735px;}
.y1c_c01068{bottom:220.523535px;}
.y1b_c01068{bottom:252.594585px;}
.y1a_c01068{bottom:278.611785px;}
.y19_c01068{bottom:285.383385px;}
.y18_c01068{bottom:286.457535px;}
.y17_c01068{bottom:316.751535px;}
.y14_c01068{bottom:380.903535px;}
.y16_c01068{bottom:400.861935px;}
.y13_c01068{bottom:411.910335px;}
.y12_c01068{bottom:412.974585px;}
.y15_c01068{bottom:424.384335px;}
.y11_c01068{bottom:445.411935px;}
.y10_c01068{bottom:477.131535px;}
.yf_c01068{bottom:509.558985px;}
.ye_c01068{bottom:541.283535px;}
.yd_c01068{bottom:573.710985px;}
.yc_c01068{bottom:605.791935px;}
.yb_c01068{bottom:669.587535px;}
.ya_c01068{bottom:702.727785px;}
.y9_c01068{bottom:734.090985px;}
.y8_c01068{bottom:765.815535px;}
.y7_c01068{bottom:797.530185px;}
.y6_c01068{bottom:829.249785px;}
.y5_c01068{bottom:861.330735px;}
.y4_c01068{bottom:893.763135px;}
.y3_c01068{bottom:926.195535px;}
.y2_c01068{bottom:1048.440735px;}
.h13_c01068{height:20.887891px;}
.h2_c01068{height:28.911094px;}
.h4_c01068{height:34.180317px;}
.hc_c01068{height:38.927565px;}
.hf_c01068{height:39.877015px;}
.h10_c01068{height:40.031191px;}
.h9_c01068{height:40.826465px;}
.h18_c01068{height:62.778375px;}
.h12_c01068{height:66.070898px;}
.hb_c01068{height:66.289008px;}
.h11_c01068{height:67.236855px;}
.h15_c01068{height:67.820028px;}
.h16_c01068{height:70.929053px;}
.hd_c01068{height:71.123379px;}
.h7_c01068{height:71.900684px;}
.h5_c01068{height:73.455293px;}
.h17_c01068{height:74.232792px;}
.he_c01068{height:74.621444px;}
.h3_c01068{height:77.924795px;}
.h8_c01068{height:79.673730px;}
.ha_c01068{height:82.394491px;}
.h14_c01068{height:86.086494px;}
.h6_c01068{height:100.272305px;}
.h1_c01068{height:1110.000000px;}
.h0_c01068{height:1263.000000px;}
.w1_c01068{width:775.500000px;}
.w0_c01068{width:892.500000px;}
.x0_c01068{left:0.000000px;}
.x1_c01068{left:58.500000px;}
.x6c_c01068{left:74.791185px;}
.x2c_c01068{left:75.914835px;}
.xf_c01068{left:77.647335px;}
.x47_c01068{left:107.931435px;}
.x66_c01068{left:109.203585px;}
.x10_c01068{left:111.361785px;}
.x62_c01068{left:118.663035px;}
.x4d_c01068{left:120.544035px;}
.x18_c01068{left:123.033885px;}
.x5d_c01068{left:129.939135px;}
.x3c_c01068{left:131.018235px;}
.x3_c01068{left:132.448785px;}
.x67_c01068{left:141.071685px;}
.x20_c01068{left:144.011985px;}
.x7a_c01068{left:151.808235px;}
.x53_c01068{left:153.110085px;}
.x19_c01068{left:155.045535px;}
.x57_c01068{left:164.772285px;}
.x4_c01068{left:165.796935px;}
.x48_c01068{left:174.929685px;}
.x2d_c01068{left:176.127585px;}
.x5e_c01068{left:186.334485px;}
.x43_c01068{left:187.581885px;}
.x32_c01068{left:189.279735px;}
.x5_c01068{left:198.447135px;}
.x76_c01068{left:207.713535px;}
.x58_c01068{left:208.802535px;}
.x2e_c01068{left:210.064785px;}
.x11_c01068{left:211.322085px;}
.x33_c01068{left:220.543935px;}
.x4e_c01068{left:230.518185px;}
.x1a_c01068{left:231.617085px;}
.x6d_c01068{left:242.120985px;}
.x54_c01068{left:253.842585px;}
.x1b_c01068{left:255.545385px;}
.x12_c01068{left:266.311635px;}
.x5f_c01068{left:275.008785px;}
.x3d_c01068{left:277.612485px;}
.x6e_c01068{left:285.101835px;}
.x6_c01068{left:288.462885px;}
.x24_c01068{left:298.367835px;}
.x21_c01068{left:299.521185px;}
.x59_c01068{left:309.495435px;}
.x49_c01068{left:310.500285px;}
.x25_c01068{left:311.559585px;}
.x7b_c01068{left:318.563835px;}
.x6f_c01068{left:320.142885px;}
.x7_c01068{left:321.231885px;}
.x55_c01068{left:323.508885px;}
.x77_c01068{left:329.602335px;}
.x73_c01068{left:330.829935px;}
.x22_c01068{left:332.240685px;}
.x5a_c01068{left:342.219885px;}
.x13_c01068{left:343.328685px;}
.x39_c01068{left:354.273135px;}
.x60_c01068{left:364.707735px;}
.x8_c01068{left:365.771985px;}
.x5b_c01068{left:374.875035px;}
.x26_c01068{left:386.675835px;}
.x34_c01068{left:387.774735px;}
.x14_c01068{left:389.200335px;}
.x4a_c01068{left:397.338135px;}
.x3a_c01068{left:399.219135px;}
.x3e_c01068{left:409.223085px;}
.x4f_c01068{left:410.272485px;}
.x7c_c01068{left:418.004385px;}
.x68_c01068{left:420.637785px;}
.x27_c01068{left:421.746585px;}
.x74_c01068{left:429.676485px;}
.x3b_c01068{left:431.186235px;}
.x2f_c01068{left:432.324735px;}
.x9_c01068{left:433.854285px;}
.x63_c01068{left:440.576385px;}
.x3f_c01068{left:443.095935px;}
.x35_c01068{left:444.189885px;}
.x4b_c01068{left:453.352335px;}
.x1c_c01068{left:454.911585px;}
.x70_c01068{left:462.539535px;}
.x45_c01068{left:464.494785px;}
.xa_c01068{left:465.593685px;}
.x64_c01068{left:466.940085px;}
.x78_c01068{left:474.300735px;}
.x36_c01068{left:475.874835px;}
.x15_c01068{left:477.003435px;}
.x1d_c01068{left:487.304385px;}
.x4c_c01068{left:497.293485px;}
.x28_c01068{left:498.748785px;}
.x37_c01068{left:508.723035px;}
.xb_c01068{left:509.727885px;}
.x50_c01068{left:519.509085px;}
.x16_c01068{left:522.503835px;}
.x1e_c01068{left:530.973285px;}
.x40_c01068{left:532.527585px;}
.x56_c01068{left:540.502035px;}
.xc_c01068{left:542.387985px;}
.x17_c01068{left:553.475985px;}
.x29_c01068{left:562.633485px;}
.x23_c01068{left:564.747135px;}
.x65_c01068{left:568.806135px;}
.x44_c01068{left:576.473685px;}
.x38_c01068{left:586.403385px;}
.x69_c01068{left:595.501485px;}
.x71_c01068{left:596.719185px;}
.x41_c01068{left:607.198335px;}
.x30_c01068{left:609.158535px;}
.x51_c01068{left:618.721935px;}
.xd_c01068{left:621.221685px;}
.x46_c01068{left:629.879235px;}
.x1f_c01068{left:631.987935px;}
.x31_c01068{left:641.981985px;}
.x61_c01068{left:650.357385px;}
.x42_c01068{left:652.510635px;}
.xe_c01068{left:653.733285px;}
.x6a_c01068{left:663.346185px;}
.x52_c01068{left:674.067885px;}
.x2a_c01068{left:675.161835px;}
.x75_c01068{left:684.299535px;}
.x72_c01068{left:694.922235px;}
.x6b_c01068{left:696.154785px;}
.x5c_c01068{left:703.960935px;}
.x2b_c01068{left:707.886285px;}
.x2_c01068{left:709.826685px;}
.x79_c01068{left:717.157635px;}
@media print{
.v0_c01068{vertical-align:0.000000pt;}
.lsb_c01068{letter-spacing:-2.611846pt;}
.ls5_c01068{letter-spacing:-2.470160pt;}
.ls1b_c01068{letter-spacing:-2.248400pt;}
.ls19_c01068{letter-spacing:-2.149846pt;}
.ls18_c01068{letter-spacing:-1.179344pt;}
.ls1d_c01068{letter-spacing:-0.947974pt;}
.ls20_c01068{letter-spacing:-0.280685pt;}
.ls3_c01068{letter-spacing:-0.134094pt;}
.ls2_c01068{letter-spacing:0.000000pt;}
.ls1a_c01068{letter-spacing:0.503678pt;}
.ls1c_c01068{letter-spacing:1.156393pt;}
.ls6_c01068{letter-spacing:1.672651pt;}
.lsa_c01068{letter-spacing:1.834976pt;}
.lsc_c01068{letter-spacing:1.898494pt;}
.ls1f_c01068{letter-spacing:2.265490pt;}
.lsd_c01068{letter-spacing:2.824800pt;}
.ls13_c01068{letter-spacing:2.907731pt;}
.ls12_c01068{letter-spacing:3.044800pt;}
.ls17_c01068{letter-spacing:3.071209pt;}
.ls14_c01068{letter-spacing:3.204150pt;}
.lsf_c01068{letter-spacing:3.220800pt;}
.ls21_c01068{letter-spacing:3.246496pt;}
.ls7_c01068{letter-spacing:3.256000pt;}
.ls10_c01068{letter-spacing:3.379209pt;}
.ls4_c01068{letter-spacing:3.528800pt;}
.ls8_c01068{letter-spacing:3.608000pt;}
.ls1e_c01068{letter-spacing:3.731209pt;}
.ls1_c01068{letter-spacing:3.789245pt;}
.ls16_c01068{letter-spacing:3.898400pt;}
.ls15_c01068{letter-spacing:27.878400pt;}
.ls0_c01068{letter-spacing:45.619376pt;}
.lse_c01068{letter-spacing:51.955376pt;}
.ls11_c01068{letter-spacing:53.222576pt;}
.ls9_c01068{letter-spacing:54.489776pt;}
.ws0_c01068{word-spacing:-91.238752pt;}
.ws1_c01068{word-spacing:0.000000pt;}
._0_c01068{width:1.459732pt;}
._1_c01068{width:8.920306pt;}
._2_c01068{width:19.381331pt;}
.fs0_c01068{font-size:24.640000pt;}
.fs11_c01068{font-size:27.878400pt;}
.fse_c01068{font-size:36.256000pt;}
.fs2_c01068{font-size:45.619376pt;}
.fsa_c01068{font-size:51.955376pt;}
.fsd_c01068{font-size:53.222576pt;}
.fs16_c01068{font-size:53.504000pt;}
.fs7_c01068{font-size:54.489776pt;}
.fs9_c01068{font-size:56.496000pt;}
.fs10_c01068{font-size:59.840000pt;}
.fsf_c01068{font-size:60.896000pt;}
.fs13_c01068{font-size:61.424176pt;}
.fs14_c01068{font-size:64.240000pt;}
.fsb_c01068{font-size:64.416000pt;}
.fs5_c01068{font-size:65.120000pt;}
.fs3_c01068{font-size:66.528000pt;}
.fs15_c01068{font-size:67.232176pt;}
.fsc_c01068{font-size:67.584176pt;}
.fs1_c01068{font-size:70.576000pt;}
.fs6_c01068{font-size:72.160000pt;}
.fs17_c01068{font-size:74.272176pt;}
.fs8_c01068{font-size:74.624176pt;}
.fs12_c01068{font-size:77.968000pt;}
.fs4_c01068{font-size:90.816000pt;}
.y0_c01068{bottom:0.000000pt;}
.y1_c01068{bottom:68.000000pt;}
.y1f_c01068{bottom:108.267320pt;}
.y1e_c01068{bottom:136.779320pt;}
.y1d_c01068{bottom:166.875320pt;}
.y1c_c01068{bottom:196.020920pt;}
.y1b_c01068{bottom:224.528520pt;}
.y1a_c01068{bottom:247.654920pt;}
.y19_c01068{bottom:253.674120pt;}
.y18_c01068{bottom:254.628920pt;}
.y17_c01068{bottom:281.556920pt;}
.y14_c01068{bottom:338.580920pt;}
.y16_c01068{bottom:356.321720pt;}
.y13_c01068{bottom:366.142520pt;}
.y12_c01068{bottom:367.088520pt;}
.y15_c01068{bottom:377.230520pt;}
.y11_c01068{bottom:395.921720pt;}
.y10_c01068{bottom:424.116920pt;}
.yf_c01068{bottom:452.941320pt;}
.ye_c01068{bottom:481.140920pt;}
.yd_c01068{bottom:509.965320pt;}
.yc_c01068{bottom:538.481720pt;}
.yb_c01068{bottom:595.188920pt;}
.ya_c01068{bottom:624.646920pt;}
.y9_c01068{bottom:652.525320pt;}
.y8_c01068{bottom:680.724920pt;}
.y7_c01068{bottom:708.915720pt;}
.y6_c01068{bottom:737.110920pt;}
.y5_c01068{bottom:765.627320pt;}
.y4_c01068{bottom:794.456120pt;}
.y3_c01068{bottom:823.284920pt;}
.y2_c01068{bottom:931.947320pt;}
.h13_c01068{height:18.567014pt;}
.h2_c01068{height:25.698750pt;}
.h4_c01068{height:30.382504pt;}
.hc_c01068{height:34.602280pt;}
.hf_c01068{height:35.446236pt;}
.h10_c01068{height:35.583281pt;}
.h9_c01068{height:36.290191pt;}
.h18_c01068{height:55.803000pt;}
.h12_c01068{height:58.729688pt;}
.hb_c01068{height:58.923563pt;}
.h11_c01068{height:59.766094pt;}
.h15_c01068{height:60.284470pt;}
.h16_c01068{height:63.048047pt;}
.hd_c01068{height:63.220781pt;}
.h7_c01068{height:63.911719pt;}
.h5_c01068{height:65.293594pt;}
.h17_c01068{height:65.984704pt;}
.he_c01068{height:66.330173pt;}
.h3_c01068{height:69.266484pt;}
.h8_c01068{height:70.821094pt;}
.ha_c01068{height:73.239548pt;}
.h14_c01068{height:76.521328pt;}
.h6_c01068{height:89.130938pt;}
.h1_c01068{height:986.666667pt;}
.h0_c01068{height:1122.666667pt;}
.w1_c01068{width:689.333333pt;}
.w0_c01068{width:793.333333pt;}
.x0_c01068{left:0.000000pt;}
.x1_c01068{left:52.000000pt;}
.x6c_c01068{left:66.481053pt;}
.x2c_c01068{left:67.479853pt;}
.xf_c01068{left:69.019853pt;}
.x47_c01068{left:95.939053pt;}
.x66_c01068{left:97.069853pt;}
.x10_c01068{left:98.988253pt;}
.x62_c01068{left:105.478253pt;}
.x4d_c01068{left:107.150253pt;}
.x18_c01068{left:109.363453pt;}
.x5d_c01068{left:115.501453pt;}
.x3c_c01068{left:116.460653pt;}
.x3_c01068{left:117.732253pt;}
.x67_c01068{left:125.397053pt;}
.x20_c01068{left:128.010653pt;}
.x7a_c01068{left:134.940653pt;}
.x53_c01068{left:136.097853pt;}
.x19_c01068{left:137.818253pt;}
.x57_c01068{left:146.464253pt;}
.x4_c01068{left:147.375053pt;}
.x48_c01068{left:155.493053pt;}
.x2d_c01068{left:156.557853pt;}
.x5e_c01068{left:165.630653pt;}
.x43_c01068{left:166.739453pt;}
.x32_c01068{left:168.248653pt;}
.x5_c01068{left:176.397453pt;}
.x76_c01068{left:184.634253pt;}
.x58_c01068{left:185.602253pt;}
.x2e_c01068{left:186.724253pt;}
.x11_c01068{left:187.841853pt;}
.x33_c01068{left:196.039053pt;}
.x4e_c01068{left:204.905053pt;}
.x1a_c01068{left:205.881853pt;}
.x6d_c01068{left:215.218653pt;}
.x54_c01068{left:225.637853pt;}
.x1b_c01068{left:227.151453pt;}
.x12_c01068{left:236.721453pt;}
.x5f_c01068{left:244.452253pt;}
.x3d_c01068{left:246.766653pt;}
.x6e_c01068{left:253.423853pt;}
.x6_c01068{left:256.411453pt;}
.x24_c01068{left:265.215853pt;}
.x21_c01068{left:266.241053pt;}
.x59_c01068{left:275.107053pt;}
.x49_c01068{left:276.000253pt;}
.x25_c01068{left:276.941853pt;}
.x7b_c01068{left:283.167853pt;}
.x6f_c01068{left:284.571453pt;}
.x7_c01068{left:285.539453pt;}
.x55_c01068{left:287.563453pt;}
.x77_c01068{left:292.979853pt;}
.x73_c01068{left:294.071053pt;}
.x22_c01068{left:295.325053pt;}
.x5a_c01068{left:304.195453pt;}
.x13_c01068{left:305.181053pt;}
.x39_c01068{left:314.909453pt;}
.x60_c01068{left:324.184653pt;}
.x8_c01068{left:325.130653pt;}
.x5b_c01068{left:333.222253pt;}
.x26_c01068{left:343.711853pt;}
.x34_c01068{left:344.688653pt;}
.x14_c01068{left:345.955853pt;}
.x4a_c01068{left:353.189453pt;}
.x3a_c01068{left:354.861453pt;}
.x3e_c01068{left:363.753853pt;}
.x4f_c01068{left:364.686653pt;}
.x7c_c01068{left:371.559453pt;}
.x68_c01068{left:373.900253pt;}
.x27_c01068{left:374.885853pt;}
.x74_c01068{left:381.934653pt;}
.x3b_c01068{left:383.276653pt;}
.x2f_c01068{left:384.288653pt;}
.x9_c01068{left:385.648253pt;}
.x63_c01068{left:391.623453pt;}
.x3f_c01068{left:393.863053pt;}
.x35_c01068{left:394.835453pt;}
.x4b_c01068{left:402.979853pt;}
.x1c_c01068{left:404.365853pt;}
.x70_c01068{left:411.146253pt;}
.x45_c01068{left:412.884253pt;}
.xa_c01068{left:413.861053pt;}
.x64_c01068{left:415.057853pt;}
.x78_c01068{left:421.600653pt;}
.x36_c01068{left:422.999853pt;}
.x15_c01068{left:424.003053pt;}
.x1d_c01068{left:433.159453pt;}
.x4c_c01068{left:442.038653pt;}
.x28_c01068{left:443.332253pt;}
.x37_c01068{left:452.198253pt;}
.xb_c01068{left:453.091453pt;}
.x50_c01068{left:461.785853pt;}
.x16_c01068{left:464.447853pt;}
.x1e_c01068{left:471.976253pt;}
.x40_c01068{left:473.357853pt;}
.x56_c01068{left:480.446253pt;}
.xc_c01068{left:482.122653pt;}
.x17_c01068{left:491.978653pt;}
.x29_c01068{left:500.118653pt;}
.x23_c01068{left:501.997453pt;}
.x65_c01068{left:505.605453pt;}
.x44_c01068{left:512.421053pt;}
.x38_c01068{left:521.247453pt;}
.x69_c01068{left:529.334653pt;}
.x71_c01068{left:530.417053pt;}
.x41_c01068{left:539.731853pt;}
.x30_c01068{left:541.474253pt;}
.x51_c01068{left:549.975053pt;}
.xd_c01068{left:552.197053pt;}
.x46_c01068{left:559.892653pt;}
.x1f_c01068{left:561.767053pt;}
.x31_c01068{left:570.650653pt;}
.x61_c01068{left:578.095453pt;}
.x42_c01068{left:580.009453pt;}
.xe_c01068{left:581.096253pt;}
.x6a_c01068{left:589.641053pt;}
.x52_c01068{left:599.171453pt;}
.x2a_c01068{left:600.143853pt;}
.x75_c01068{left:608.266253pt;}
.x72_c01068{left:617.708653pt;}
.x6b_c01068{left:618.804253pt;}
.x5c_c01068{left:625.743053pt;}
.x2b_c01068{left:629.232253pt;}
.x2_c01068{left:630.957053pt;}
.x79_c01068{left:637.473453pt;}
}





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

.ir_c01069:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01069{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01069;src:url('chunks/assets/font_1311ca973beb5cd051e919df.woff2')format("woff");}.ff1_c01069{font-family:ff1_c01069;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01069;src:url('chunks/assets/font_cc2af235ae7b002069872939.woff2')format("woff");}.ff2_c01069{font-family:ff2_c01069;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01069;src:url('chunks/assets/font_a7593487d44db4887056ca7c.woff2')format("woff");}.ff3_c01069{font-family:ff3_c01069;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01069;src:url('chunks/assets/font_ae3ef8caf87ee94aeca6f322.woff2')format("woff");}.ff4_c01069{font-family:ff4_c01069;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m81_c01069{transform:matrix(0.030489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030489,0.000000,0.000000,0.250000,0,0);}
.m9b_c01069{transform:matrix(0.105401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105401,0.000000,0.000000,0.250000,0,0);}
.m58_c01069{transform:matrix(0.106466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106466,0.000000,0.000000,0.250000,0,0);}
.m5c_c01069{transform:matrix(0.111113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111113,0.000000,0.000000,0.250000,0,0);}
.m57_c01069{transform:matrix(0.133922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133922,0.000000,0.000000,0.250000,0,0);}
.m5e_c01069{transform:matrix(0.138891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138891,0.000000,0.000000,0.250000,0,0);}
.m8f_c01069{transform:matrix(0.145022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145022,0.000000,0.000000,0.250000,0,0);}
.m55_c01069{transform:matrix(0.148195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148195,0.000000,0.000000,0.250000,0,0);}
.m82_c01069{transform:matrix(0.155488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155488,0.000000,0.000000,0.250000,0,0);}
.m2d_c01069{transform:matrix(0.155983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155983,0.000000,0.000000,0.250000,0,0);}
.m29_c01069{transform:matrix(0.166666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166666,0.000000,0.000000,0.250000,0,0);}
.m5d_c01069{transform:matrix(0.166668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166668,0.000000,0.000000,0.250000,0,0);}
.me_c01069{transform:matrix(0.169643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169643,0.000000,0.000000,0.250000,0,0);}
.m9c_c01069{transform:matrix(0.170731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170731,0.000000,0.000000,0.250000,0,0);}
.m4_c01069{transform:matrix(0.181548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181548,0.000000,0.000000,0.250000,0,0);}
.m28_c01069{transform:matrix(0.182540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182540,0.000000,0.000000,0.250000,0,0);}
.m9f_c01069{transform:matrix(0.188153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188153,0.000000,0.000000,0.250000,0,0);}
.m56_c01069{transform:matrix(0.241597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241597,0.000000,0.000000,0.250000,0,0);}
.m1_c01069{transform:matrix(0.243083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243083,0.000000,0.000000,0.250000,0,0);}
.m0_c01069{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m51_c01069{transform:matrix(0.253976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253976,0.000000,0.000000,0.250000,0,0);}
.m3d_c01069{transform:matrix(0.255476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255476,0.000000,0.000000,0.250000,0,0);}
.mab_c01069{transform:matrix(0.256941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256941,0.000000,0.000000,0.250000,0,0);}
.mc6_c01069{transform:matrix(0.257607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257607,0.000000,0.000000,0.250000,0,0);}
.m80_c01069{transform:matrix(0.260272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260272,0.000000,0.000000,0.250000,0,0);}
.mbb_c01069{transform:matrix(0.264688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264688,0.000000,0.000000,0.250000,0,0);}
.m46_c01069{transform:matrix(0.266286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266286,0.000000,0.000000,0.250000,0,0);}
.ma4_c01069{transform:matrix(0.266550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266550,0.000000,0.000000,0.250000,0,0);}
.m8c_c01069{transform:matrix(0.267450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267450,0.000000,0.000000,0.250000,0,0);}
.m52_c01069{transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);}
.m7_c01069{transform:matrix(0.268364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268364,0.000000,0.000000,0.250000,0,0);}
.mad_c01069{transform:matrix(0.269436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269436,0.000000,0.000000,0.250000,0,0);}
.m36_c01069{transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);}
.m8_c01069{transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);}
.m7e_c01069{transform:matrix(0.271787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271787,0.000000,0.000000,0.250000,0,0);}
.m5_c01069{transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);}
.m20_c01069{transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);}
.ma0_c01069{transform:matrix(0.274282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274282,0.000000,0.000000,0.250000,0,0);}
.m16_c01069{transform:matrix(0.275368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275368,0.000000,0.000000,0.250000,0,0);}
.m33_c01069{transform:matrix(0.275493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275493,0.000000,0.000000,0.250000,0,0);}
.m34_c01069{transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);}
.mb1_c01069{transform:matrix(0.276631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276631,0.000000,0.000000,0.250000,0,0);}
.m72_c01069{transform:matrix(0.276991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276991,0.000000,0.000000,0.250000,0,0);}
.m63_c01069{transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);}
.m74_c01069{transform:matrix(0.278774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278774,0.000000,0.000000,0.250000,0,0);}
.m66_c01069{transform:matrix(0.278892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278892,0.000000,0.000000,0.250000,0,0);}
.m39_c01069{transform:matrix(0.279590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279590,0.000000,0.000000,0.250000,0,0);}
.m6a_c01069{transform:matrix(0.280304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280304,0.000000,0.000000,0.250000,0,0);}
.m9e_c01069{transform:matrix(0.280800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280800,0.000000,0.000000,0.250000,0,0);}
.m12_c01069{transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);}
.m7a_c01069{transform:matrix(0.281961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281961,0.000000,0.000000,0.250000,0,0);}
.m95_c01069{transform:matrix(0.284331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284331,0.000000,0.000000,0.250000,0,0);}
.m77_c01069{transform:matrix(0.286463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286463,0.000000,0.000000,0.250000,0,0);}
.m85_c01069{transform:matrix(0.287374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287374,0.000000,0.000000,0.250000,0,0);}
.mc7_c01069{transform:matrix(0.288061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288061,0.000000,0.000000,0.250000,0,0);}
.mbd_c01069{transform:matrix(0.289059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289059,0.000000,0.000000,0.250000,0,0);}
.m3f_c01069{transform:matrix(0.289588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289588,0.000000,0.000000,0.250000,0,0);}
.m19_c01069{transform:matrix(0.289843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289843,0.000000,0.000000,0.250000,0,0);}
.m7c_c01069{transform:matrix(0.291099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291099,0.000000,0.000000,0.250000,0,0);}
.m32_c01069{transform:matrix(0.291194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291194,0.000000,0.000000,0.250000,0,0);}
.m30_c01069{transform:matrix(0.291495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291495,0.000000,0.000000,0.250000,0,0);}
.ma8_c01069{transform:matrix(0.291864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291864,0.000000,0.000000,0.250000,0,0);}
.mb7_c01069{transform:matrix(0.292348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292348,0.000000,0.000000,0.250000,0,0);}
.m3e_c01069{transform:matrix(0.292506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292506,0.000000,0.000000,0.250000,0,0);}
.m40_c01069{transform:matrix(0.293118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293118,0.000000,0.000000,0.250000,0,0);}
.m61_c01069{transform:matrix(0.293280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293280,0.000000,0.000000,0.250000,0,0);}
.m1a_c01069{transform:matrix(0.293479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293479,0.000000,0.000000,0.250000,0,0);}
.m65_c01069{transform:matrix(0.293631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293631,0.000000,0.000000,0.250000,0,0);}
.m3c_c01069{transform:matrix(0.293640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293640,0.000000,0.000000,0.250000,0,0);}
.m90_c01069{transform:matrix(0.293679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293679,0.000000,0.000000,0.250000,0,0);}
.m9d_c01069{transform:matrix(0.293938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293938,0.000000,0.000000,0.250000,0,0);}
.m8b_c01069{transform:matrix(0.295101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295101,0.000000,0.000000,0.250000,0,0);}
.m79_c01069{transform:matrix(0.295827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295827,0.000000,0.000000,0.250000,0,0);}
.m7f_c01069{transform:matrix(0.296425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296425,0.000000,0.000000,0.250000,0,0);}
.m4d_c01069{transform:matrix(0.296579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296579,0.000000,0.000000,0.250000,0,0);}
.m37_c01069{transform:matrix(0.296995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296995,0.000000,0.000000,0.250000,0,0);}
.m21_c01069{transform:matrix(0.297204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297204,0.000000,0.000000,0.250000,0,0);}
.mc5_c01069{transform:matrix(0.297589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297589,0.000000,0.000000,0.250000,0,0);}
.m23_c01069{transform:matrix(0.297812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297812,0.000000,0.000000,0.250000,0,0);}
.m8a_c01069{transform:matrix(0.298248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298248,0.000000,0.000000,0.250000,0,0);}
.m98_c01069{transform:matrix(0.298269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298269,0.000000,0.000000,0.250000,0,0);}
.m60_c01069{transform:matrix(0.299009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299009,0.000000,0.000000,0.250000,0,0);}
.m31_c01069{transform:matrix(0.299201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299201,0.000000,0.000000,0.250000,0,0);}
.mae_c01069{transform:matrix(0.300828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300828,0.000000,0.000000,0.250000,0,0);}
.mc0_c01069{transform:matrix(0.302445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302445,0.000000,0.000000,0.250000,0,0);}
.m7b_c01069{transform:matrix(0.302495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302495,0.000000,0.000000,0.250000,0,0);}
.m3_c01069{transform:matrix(0.302800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302800,0.000000,0.000000,0.250000,0,0);}
.mb3_c01069{transform:matrix(0.303047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303047,0.000000,0.000000,0.250000,0,0);}
.m4c_c01069{transform:matrix(0.303180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303180,0.000000,0.000000,0.250000,0,0);}
.m4b_c01069{transform:matrix(0.303779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303779,0.000000,0.000000,0.250000,0,0);}
.m69_c01069{transform:matrix(0.303889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303889,0.000000,0.000000,0.250000,0,0);}
.m18_c01069{transform:matrix(0.304778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304778,0.000000,0.000000,0.250000,0,0);}
.mb5_c01069{transform:matrix(0.305527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305527,0.000000,0.000000,0.250000,0,0);}
.mc8_c01069{transform:matrix(0.305740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305740,0.000000,0.000000,0.250000,0,0);}
.mc3_c01069{transform:matrix(0.305762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305762,0.000000,0.000000,0.250000,0,0);}
.mb_c01069{transform:matrix(0.306031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306031,0.000000,0.000000,0.250000,0,0);}
.m15_c01069{transform:matrix(0.306319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306319,0.000000,0.000000,0.250000,0,0);}
.mba_c01069{transform:matrix(0.306499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306499,0.000000,0.000000,0.250000,0,0);}
.m86_c01069{transform:matrix(0.307137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307137,0.000000,0.000000,0.250000,0,0);}
.m10_c01069{transform:matrix(0.307224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307224,0.000000,0.000000,0.250000,0,0);}
.m6f_c01069{transform:matrix(0.307546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307546,0.000000,0.000000,0.250000,0,0);}
.m4a_c01069{transform:matrix(0.307690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307690,0.000000,0.000000,0.250000,0,0);}
.ma9_c01069{transform:matrix(0.308254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308254,0.000000,0.000000,0.250000,0,0);}
.m14_c01069{transform:matrix(0.308426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308426,0.000000,0.000000,0.250000,0,0);}
.m22_c01069{transform:matrix(0.308695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308695,0.000000,0.000000,0.250000,0,0);}
.m11_c01069{transform:matrix(0.309087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309087,0.000000,0.000000,0.250000,0,0);}
.m5b_c01069{transform:matrix(0.309099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309099,0.000000,0.000000,0.250000,0,0);}
.m64_c01069{transform:matrix(0.309241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309241,0.000000,0.000000,0.250000,0,0);}
.ma2_c01069{transform:matrix(0.309310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309310,0.000000,0.000000,0.250000,0,0);}
.m1e_c01069{transform:matrix(0.309807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309807,0.000000,0.000000,0.250000,0,0);}
.mb4_c01069{transform:matrix(0.310444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310444,0.000000,0.000000,0.250000,0,0);}
.m71_c01069{transform:matrix(0.311476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311476,0.000000,0.000000,0.250000,0,0);}
.mc2_c01069{transform:matrix(0.311773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311773,0.000000,0.000000,0.250000,0,0);}
.ma_c01069{transform:matrix(0.312845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312845,0.000000,0.000000,0.250000,0,0);}
.mb2_c01069{transform:matrix(0.313324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313324,0.000000,0.000000,0.250000,0,0);}
.m92_c01069{transform:matrix(0.313494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313494,0.000000,0.000000,0.250000,0,0);}
.mbf_c01069{transform:matrix(0.314135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314135,0.000000,0.000000,0.250000,0,0);}
.m89_c01069{transform:matrix(0.314272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314272,0.000000,0.000000,0.250000,0,0);}
.m84_c01069{transform:matrix(0.314583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314583,0.000000,0.000000,0.250000,0,0);}
.m1d_c01069{transform:matrix(0.314932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314932,0.000000,0.000000,0.250000,0,0);}
.m67_c01069{transform:matrix(0.315080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315080,0.000000,0.000000,0.250000,0,0);}
.m91_c01069{transform:matrix(0.315264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315264,0.000000,0.000000,0.250000,0,0);}
.m43_c01069{transform:matrix(0.315522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315522,0.000000,0.000000,0.250000,0,0);}
.m42_c01069{transform:matrix(0.316292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316292,0.000000,0.000000,0.250000,0,0);}
.m6c_c01069{transform:matrix(0.316634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316634,0.000000,0.000000,0.250000,0,0);}
.m3b_c01069{transform:matrix(0.316671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316671,0.000000,0.000000,0.250000,0,0);}
.mb0_c01069{transform:matrix(0.316960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316960,0.000000,0.000000,0.250000,0,0);}
.m9_c01069{transform:matrix(0.317820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317820,0.000000,0.000000,0.250000,0,0);}
.m8d_c01069{transform:matrix(0.318222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318222,0.000000,0.000000,0.250000,0,0);}
.m44_c01069{transform:matrix(0.319203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319203,0.000000,0.000000,0.250000,0,0);}
.m78_c01069{transform:matrix(0.319346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319346,0.000000,0.000000,0.250000,0,0);}
.m26_c01069{transform:matrix(0.319887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319887,0.000000,0.000000,0.250000,0,0);}
.m94_c01069{transform:matrix(0.320958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320958,0.000000,0.000000,0.250000,0,0);}
.m96_c01069{transform:matrix(0.321213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321213,0.000000,0.000000,0.250000,0,0);}
.ma1_c01069{transform:matrix(0.321739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321739,0.000000,0.000000,0.250000,0,0);}
.mc1_c01069{transform:matrix(0.322610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322610,0.000000,0.000000,0.250000,0,0);}
.m83_c01069{transform:matrix(0.322729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322729,0.000000,0.000000,0.250000,0,0);}
.m38_c01069{transform:matrix(0.323419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323419,0.000000,0.000000,0.250000,0,0);}
.m49_c01069{transform:matrix(0.324042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324042,0.000000,0.000000,0.250000,0,0);}
.m73_c01069{transform:matrix(0.324875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324875,0.000000,0.000000,0.250000,0,0);}
.md_c01069{transform:matrix(0.325071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325071,0.000000,0.000000,0.250000,0,0);}
.m5a_c01069{transform:matrix(0.325668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325668,0.000000,0.000000,0.250000,0,0);}
.maa_c01069{transform:matrix(0.325752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325752,0.000000,0.000000,0.250000,0,0);}
.m1f_c01069{transform:matrix(0.326433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326433,0.000000,0.000000,0.250000,0,0);}
.m75_c01069{transform:matrix(0.326868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326868,0.000000,0.000000,0.250000,0,0);}
.ma7_c01069{transform:matrix(0.327142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327142,0.000000,0.000000,0.250000,0,0);}
.mb8_c01069{transform:matrix(0.328385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328385,0.000000,0.000000,0.250000,0,0);}
.m2b_c01069{transform:matrix(0.329073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329073,0.000000,0.000000,0.250000,0,0);}
.m13_c01069{transform:matrix(0.329272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329272,0.000000,0.000000,0.250000,0,0);}
.m27_c01069{transform:matrix(0.329522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329522,0.000000,0.000000,0.250000,0,0);}
.m50_c01069{transform:matrix(0.330648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330648,0.000000,0.000000,0.250000,0,0);}
.m9a_c01069{transform:matrix(0.332850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332850,0.000000,0.000000,0.250000,0,0);}
.ma3_c01069{transform:matrix(0.334063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334063,0.000000,0.000000,0.250000,0,0);}
.m76_c01069{transform:matrix(0.334506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334506,0.000000,0.000000,0.250000,0,0);}
.m6b_c01069{transform:matrix(0.335265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335265,0.000000,0.000000,0.250000,0,0);}
.m35_c01069{transform:matrix(0.335295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335295,0.000000,0.000000,0.250000,0,0);}
.m62_c01069{transform:matrix(0.336288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336288,0.000000,0.000000,0.250000,0,0);}
.m41_c01069{transform:matrix(0.336468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336468,0.000000,0.000000,0.250000,0,0);}
.m6e_c01069{transform:matrix(0.336697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336697,0.000000,0.000000,0.250000,0,0);}
.mb6_c01069{transform:matrix(0.338576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338576,0.000000,0.000000,0.250000,0,0);}
.m53_c01069{transform:matrix(0.338986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338986,0.000000,0.000000,0.250000,0,0);}
.m97_c01069{transform:matrix(0.339063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339063,0.000000,0.000000,0.250000,0,0);}
.m17_c01069{transform:matrix(0.339155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339155,0.000000,0.000000,0.250000,0,0);}
.m2a_c01069{transform:matrix(0.341511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341511,0.000000,0.000000,0.250000,0,0);}
.m6d_c01069{transform:matrix(0.341611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341611,0.000000,0.000000,0.250000,0,0);}
.mf_c01069{transform:matrix(0.342830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342830,0.000000,0.000000,0.250000,0,0);}
.m5f_c01069{transform:matrix(0.343644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343644,0.000000,0.000000,0.250000,0,0);}
.m99_c01069{transform:matrix(0.343854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343854,0.000000,0.000000,0.250000,0,0);}
.ma5_c01069{transform:matrix(0.343881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343881,0.000000,0.000000,0.250000,0,0);}
.m93_c01069{transform:matrix(0.345669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345669,0.000000,0.000000,0.250000,0,0);}
.maf_c01069{transform:matrix(0.345734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345734,0.000000,0.000000,0.250000,0,0);}
.mac_c01069{transform:matrix(0.346597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346597,0.000000,0.000000,0.250000,0,0);}
.m2e_c01069{transform:matrix(0.347020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347020,0.000000,0.000000,0.250000,0,0);}
.m48_c01069{transform:matrix(0.347069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347069,0.000000,0.000000,0.250000,0,0);}
.m45_c01069{transform:matrix(0.347186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347186,0.000000,0.000000,0.250000,0,0);}
.m70_c01069{transform:matrix(0.350364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350364,0.000000,0.000000,0.250000,0,0);}
.m47_c01069{transform:matrix(0.351305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351305,0.000000,0.000000,0.250000,0,0);}
.m2c_c01069{transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);}
.m2f_c01069{transform:matrix(0.352476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352476,0.000000,0.000000,0.250000,0,0);}
.m8e_c01069{transform:matrix(0.355252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355252,0.000000,0.000000,0.250000,0,0);}
.mb9_c01069{transform:matrix(0.355860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355860,0.000000,0.000000,0.250000,0,0);}
.mbc_c01069{transform:matrix(0.357996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357996,0.000000,0.000000,0.250000,0,0);}
.m4e_c01069{transform:matrix(0.360565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360565,0.000000,0.000000,0.250000,0,0);}
.m87_c01069{transform:matrix(0.360655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360655,0.000000,0.000000,0.250000,0,0);}
.m4f_c01069{transform:matrix(0.362470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362470,0.000000,0.000000,0.250000,0,0);}
.ma6_c01069{transform:matrix(0.362555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362555,0.000000,0.000000,0.250000,0,0);}
.m2_c01069{transform:matrix(0.364277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364277,0.000000,0.000000,0.250000,0,0);}
.m25_c01069{transform:matrix(0.367046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367046,0.000000,0.000000,0.250000,0,0);}
.mbe_c01069{transform:matrix(0.368347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368347,0.000000,0.000000,0.250000,0,0);}
.mc4_c01069{transform:matrix(0.370152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370152,0.000000,0.000000,0.250000,0,0);}
.m7d_c01069{transform:matrix(0.377007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377007,0.000000,0.000000,0.250000,0,0);}
.m1b_c01069{transform:matrix(0.380833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380833,0.000000,0.000000,0.250000,0,0);}
.m6_c01069{transform:matrix(0.386524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386524,0.000000,0.000000,0.250000,0,0);}
.m88_c01069{transform:matrix(0.387076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387076,0.000000,0.000000,0.250000,0,0);}
.m68_c01069{transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);}
.m24_c01069{transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);}
.m3a_c01069{transform:matrix(0.405805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405805,0.000000,0.000000,0.250000,0,0);}
.mc_c01069{transform:matrix(0.412048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412048,0.000000,0.000000,0.250000,0,0);}
.m1c_c01069{transform:matrix(0.438583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438583,0.000000,0.000000,0.250000,0,0);}
.m59_c01069{transform:matrix(1.017653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.017653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.017653,0.000000,0.000000,0.250000,0,0);}
.m54_c01069{transform:matrix(1.138875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.138875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.138875,0.000000,0.000000,0.250000,0,0);}
.v0_c01069{vertical-align:0.000000px;}
.ls15_c01069{letter-spacing:-3.270967px;}
.ls1b_c01069{letter-spacing:-2.647267px;}
.ls14_c01069{letter-spacing:-2.591827px;}
.ls3_c01069{letter-spacing:-2.480940px;}
.ls11_c01069{letter-spacing:-2.286900px;}
.ls8_c01069{letter-spacing:-1.467342px;}
.ls7_c01069{letter-spacing:-1.164797px;}
.ls12_c01069{letter-spacing:-0.997920px;}
.lse_c01069{letter-spacing:-0.748798px;}
.ls13_c01069{letter-spacing:-0.019958px;}
.ls2_c01069{letter-spacing:0.000000px;}
.ls4_c01069{letter-spacing:0.136145px;}
.ls16_c01069{letter-spacing:0.485110px;}
.lsc_c01069{letter-spacing:0.529453px;}
.ls1d_c01069{letter-spacing:0.605090px;}
.lsa_c01069{letter-spacing:1.058907px;}
.ls17_c01069{letter-spacing:1.425600px;}
.lsb_c01069{letter-spacing:1.558106px;}
.ls9_c01069{letter-spacing:1.930500px;}
.ls0_c01069{letter-spacing:2.276650px;}
.lsf_c01069{letter-spacing:2.930400px;}
.ls19_c01069{letter-spacing:3.316500px;}
.ls18_c01069{letter-spacing:3.425400px;}
.ls5_c01069{letter-spacing:3.781810px;}
.ls1c_c01069{letter-spacing:3.851110px;}
.ls10_c01069{letter-spacing:12.830598px;}
.ls1_c01069{letter-spacing:14.749169px;}
.lsd_c01069{letter-spacing:55.598598px;}
.ls1a_c01069{letter-spacing:58.449798px;}
.ls6_c01069{letter-spacing:59.875398px;}
.sc__c01069{text-shadow:none;}
.sc0_c01069{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01069{-webkit-text-stroke:0px transparent;}
.sc0_c01069{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01069{word-spacing:-21.185699px;}
.ws1_c01069{word-spacing:-7.906378px;}
.ws2_c01069{word-spacing:0.000000px;}
._2_c01069{margin-left:-8.135424px;}
._1_c01069{width:12.971495px;}
._0_c01069{width:32.644691px;}
.fc0_c01069{color:transparent;}
.fse_c01069{font-size:9.702198px;}
.fs7_c01069{font-size:12.830598px;}
.fsb_c01069{font-size:28.512000px;}
.fsa_c01069{font-size:31.086000px;}
.fs8_c01069{font-size:35.838000px;}
.fs5_c01069{font-size:38.016198px;}
.fs3_c01069{font-size:38.610000px;}
.fs4_c01069{font-size:55.598598px;}
.fs11_c01069{font-size:58.449798px;}
.fs6_c01069{font-size:58.608000px;}
.fs2_c01069{font-size:59.875398px;}
.fs9_c01069{font-size:65.340000px;}
.fsf_c01069{font-size:66.330000px;}
.fs10_c01069{font-size:68.508000px;}
.fs0_c01069{font-size:70.884000px;}
.fsc_c01069{font-size:74.052198px;}
.fs1_c01069{font-size:75.636198px;}
.fs12_c01069{font-size:77.022198px;}
.fs13_c01069{font-size:81.180000px;}
.fsd_c01069{font-size:93.456198px;}
.y0_c01069{bottom:0.000000px;}
.y1_c01069{bottom:76.500000px;}
.y1c_c01069{bottom:130.705785px;}
.y1b_c01069{bottom:197.713935px;}
.y1a_c01069{bottom:230.146335px;}
.y19_c01069{bottom:262.935135px;}
.y18_c01069{bottom:295.723935px;}
.y17_c01069{bottom:327.799935px;}
.y16_c01069{bottom:360.232335px;}
.y15_c01069{bottom:392.308335px;}
.y14_c01069{bottom:425.092185px;}
.y13_c01069{bottom:456.816735px;}
.y12_c01069{bottom:488.892735px;}
.y11_c01069{bottom:520.255935px;}
.y10_c01069{bottom:551.970585px;}
.yf_c01069{bottom:584.051535px;}
.ye_c01069{bottom:610.420185px;}
.yd_c01069{bottom:616.122585px;}
.yc_c01069{bottom:680.635935px;}
.yb_c01069{bottom:712.706985px;}
.ya_c01069{bottom:744.070185px;}
.y9_c01069{bottom:776.858985px;}
.y8_c01069{bottom:808.227135px;}
.y7_c01069{bottom:840.654585px;}
.y6_c01069{bottom:872.730585px;}
.y5_c01069{bottom:905.167935px;}
.y3_c01069{bottom:936.882585px;}
.y4_c01069{bottom:942.589935px;}
.y2_c01069{bottom:1083.719385px;}
.h9_c01069{height:8.545178px;}
.h10_c01069{height:9.522177px;}
.hd_c01069{height:29.737125px;}
.hc_c01069{height:32.421727px;}
.h6_c01069{height:37.028666px;}
.ha_c01069{height:37.377914px;}
.h13_c01069{height:38.927565px;}
.h7_c01069{height:39.649707px;}
.h4_c01069{height:39.877015px;}
.h5_c01069{height:40.269023px;}
.h8_c01069{height:57.520547px;}
.hb_c01069{height:64.127637px;}
.h12_c01069{height:67.236855px;}
.h11_c01069{height:69.180117px;}
.h2_c01069{height:73.929797px;}
.h3_c01069{height:74.232792px;}
.he_c01069{height:77.234128px;}
.h15_c01069{height:79.673730px;}
.h14_c01069{height:80.331746px;}
.hf_c01069{height:97.471894px;}
.h1_c01069{height:1110.000000px;}
.h0_c01069{height:1263.000000px;}
.w1_c01069{width:775.500000px;}
.w0_c01069{width:892.500000px;}
.x0_c01069{left:0.000000px;}
.x1_c01069{left:58.500000px;}
.x5f_c01069{left:83.206185px;}
.x22_c01069{left:84.394185px;}
.x4_c01069{left:86.398935px;}
.x71_c01069{left:115.940535px;}
.x3a_c01069{left:117.331485px;}
.x2f_c01069{left:118.440285px;}
.x48_c01069{left:128.315535px;}
.x3c_c01069{left:137.819535px;}
.x5_c01069{left:141.532035px;}
.x6d_c01069{left:148.600635px;}
.x4e_c01069{left:149.991585px;}
.x23_c01069{left:151.253835px;}
.x17_c01069{left:163.005135px;}
.x68_c01069{left:171.860685px;}
.x36_c01069{left:173.672385px;}
.x6_c01069{left:176.315685px;}
.x60_c01069{left:183.542685px;}
.x49_c01069{left:184.710885px;}
.x72_c01069{left:194.675235px;}
.x24_c01069{left:195.749385px;}
.x69_c01069{left:205.783035px;}
.x18_c01069{left:207.842235px;}
.x37_c01069{left:216.989835px;}
.x2b_c01069{left:218.167935px;}
.x75_c01069{left:226.959135px;}
.x3d_c01069{left:228.028335px;}
.x31_c01069{left:229.612335px;}
.x7b_c01069{left:236.987835px;}
.x6a_c01069{left:238.146135px;}
.x10_c01069{left:240.561735px;}
.x2c_c01069{left:250.070685px;}
.x57_c01069{left:260.960685px;}
.x3b_c01069{left:262.321935px;}
.x7_c01069{left:263.371335px;}
.x6b_c01069{left:271.523985px;}
.x11_c01069{left:273.117885px;}
.x65_c01069{left:283.478235px;}
.x58_c01069{left:294.328635px;}
.x4f_c01069{left:295.541385px;}
.x38_c01069{left:306.871935px;}
.x7c_c01069{left:316.207635px;}
.x61_c01069{left:317.212485px;}
.x12_c01069{left:318.380685px;}
.x4a_c01069{left:327.513435px;}
.x19_c01069{left:330.161685px;}
.x8_c01069{left:341.215035px;}
.x6c_c01069{left:350.001285px;}
.x1a_c01069{left:351.530835px;}
.x77_c01069{left:360.059685px;}
.x39_c01069{left:362.217885px;}
.x66_c01069{left:371.004135px;}
.x9_c01069{left:372.330735px;}
.x25_c01069{left:373.875135px;}
.x52_c01069{left:383.037585px;}
.x5c_c01069{left:384.651285px;}
.x78_c01069{left:394.288935px;}
.x2d_c01069{left:395.595735px;}
.x53_c01069{left:406.307535px;}
.x32_c01069{left:407.495535px;}
.x26_c01069{left:417.420285px;}
.x13_c01069{left:419.484435px;}
.x62_c01069{left:426.592635px;}
.x73_c01069{left:428.760735px;}
.x4b_c01069{left:439.576485px;}
.x79_c01069{left:447.976635px;}
.x27_c01069{left:451.619835px;}
.xa_c01069{left:454.114635px;}
.x59_c01069{left:461.683185px;}
.x1b_c01069{left:462.900885px;}
.x6e_c01069{left:470.746635px;}
.x4c_c01069{left:472.865235px;}
.xb_c01069{left:474.107685px;}
.x63_c01069{left:482.136585px;}
.x2e_c01069{left:484.433385px;}
.x5a_c01069{left:493.239435px;}
.x5d_c01069{left:494.432385px;}
.x30_c01069{left:505.852035px;}
.x33_c01069{left:508.812135px;}
.x1c_c01069{left:517.633035px;}
.x5b_c01069{left:527.483535px;}
.x34_c01069{left:528.552735px;}
.xc_c01069{left:530.082285px;}
.x28_c01069{left:539.383335px;}
.x14_c01069{left:540.412935px;}
.x1d_c01069{left:550.372335px;}
.x55_c01069{left:551.857335px;}
.xd_c01069{left:561.272235px;}
.x7a_c01069{left:570.701985px;}
.x15_c01069{left:572.830485px;}
.x6f_c01069{left:582.141435px;}
.x1e_c01069{left:583.433385px;}
.x3e_c01069{left:592.679985px;}
.x29_c01069{left:594.580785px;}
.x50_c01069{left:604.753035px;}
.xe_c01069{left:606.371685px;}
.x70_c01069{left:614.900535px;}
.x3f_c01069{left:622.018635px;}
.x40_c01069{left:624.760935px;}
.x51_c01069{left:626.483535px;}
.x4d_c01069{left:637.536885px;}
.x1f_c01069{left:638.917935px;}
.x64_c01069{left:648.407085px;}
.x41_c01069{left:652.094835px;}
.x42_c01069{left:656.292435px;}
.x20_c01069{left:660.341535px;}
.x43_c01069{left:666.147885px;}
.x56_c01069{left:669.667335px;}
.x35_c01069{left:671.533485px;}
.xf_c01069{left:673.681785px;}
.x44_c01069{left:679.527735px;}
.x54_c01069{left:682.255185px;}
.x67_c01069{left:683.260035px;}
.x45_c01069{left:689.140635px;}
.x21_c01069{left:693.501585px;}
.x16_c01069{left:695.090535px;}
.x74_c01069{left:704.035185px;}
.x2_c01069{left:706.559685px;}
.x46_c01069{left:713.860935px;}
.x7d_c01069{left:715.380585px;}
.x3_c01069{left:718.276335px;}
.x47_c01069{left:721.701735px;}
.x76_c01069{left:724.513335px;}
.x2a_c01069{left:728.111985px;}
.x5e_c01069{left:739.640535px;}
@media print{
.v0_c01069{vertical-align:0.000000pt;}
.ls15_c01069{letter-spacing:-2.907526pt;}
.ls1b_c01069{letter-spacing:-2.353126pt;}
.ls14_c01069{letter-spacing:-2.303846pt;}
.ls3_c01069{letter-spacing:-2.205280pt;}
.ls11_c01069{letter-spacing:-2.032800pt;}
.ls8_c01069{letter-spacing:-1.304304pt;}
.ls7_c01069{letter-spacing:-1.035376pt;}
.ls12_c01069{letter-spacing:-0.887040pt;}
.lse_c01069{letter-spacing:-0.665599pt;}
.ls13_c01069{letter-spacing:-0.017741pt;}
.ls2_c01069{letter-spacing:0.000000pt;}
.ls4_c01069{letter-spacing:0.121018pt;}
.ls16_c01069{letter-spacing:0.431209pt;}
.lsc_c01069{letter-spacing:0.470625pt;}
.ls1d_c01069{letter-spacing:0.537857pt;}
.lsa_c01069{letter-spacing:0.941250pt;}
.ls17_c01069{letter-spacing:1.267200pt;}
.lsb_c01069{letter-spacing:1.384983pt;}
.ls9_c01069{letter-spacing:1.716000pt;}
.ls0_c01069{letter-spacing:2.023688pt;}
.lsf_c01069{letter-spacing:2.604800pt;}
.ls19_c01069{letter-spacing:2.948000pt;}
.ls18_c01069{letter-spacing:3.044800pt;}
.ls5_c01069{letter-spacing:3.361609pt;}
.ls1c_c01069{letter-spacing:3.423209pt;}
.ls10_c01069{letter-spacing:11.404976pt;}
.ls1_c01069{letter-spacing:13.110372pt;}
.lsd_c01069{letter-spacing:49.420976pt;}
.ls1a_c01069{letter-spacing:51.955376pt;}
.ls6_c01069{letter-spacing:53.222576pt;}
.ws0_c01069{word-spacing:-18.831732pt;}
.ws1_c01069{word-spacing:-7.027891pt;}
.ws2_c01069{word-spacing:0.000000pt;}
._2_c01069{margin-left:-7.231488pt;}
._1_c01069{width:11.530218pt;}
._0_c01069{width:29.017503pt;}
.fse_c01069{font-size:8.624176pt;}
.fs7_c01069{font-size:11.404976pt;}
.fsb_c01069{font-size:25.344000pt;}
.fsa_c01069{font-size:27.632000pt;}
.fs8_c01069{font-size:31.856000pt;}
.fs5_c01069{font-size:33.792176pt;}
.fs3_c01069{font-size:34.320000pt;}
.fs4_c01069{font-size:49.420976pt;}
.fs11_c01069{font-size:51.955376pt;}
.fs6_c01069{font-size:52.096000pt;}
.fs2_c01069{font-size:53.222576pt;}
.fs9_c01069{font-size:58.080000pt;}
.fsf_c01069{font-size:58.960000pt;}
.fs10_c01069{font-size:60.896000pt;}
.fs0_c01069{font-size:63.008000pt;}
.fsc_c01069{font-size:65.824176pt;}
.fs1_c01069{font-size:67.232176pt;}
.fs12_c01069{font-size:68.464176pt;}
.fs13_c01069{font-size:72.160000pt;}
.fsd_c01069{font-size:83.072176pt;}
.y0_c01069{bottom:0.000000pt;}
.y1_c01069{bottom:68.000000pt;}
.y1c_c01069{bottom:116.182920pt;}
.y1b_c01069{bottom:175.745720pt;}
.y1a_c01069{bottom:204.574520pt;}
.y19_c01069{bottom:233.720120pt;}
.y18_c01069{bottom:262.865720pt;}
.y17_c01069{bottom:291.377720pt;}
.y16_c01069{bottom:320.206520pt;}
.y15_c01069{bottom:348.718520pt;}
.y14_c01069{bottom:377.859720pt;}
.y13_c01069{bottom:406.059320pt;}
.y12_c01069{bottom:434.571320pt;}
.y11_c01069{bottom:462.449720pt;}
.y10_c01069{bottom:490.640520pt;}
.yf_c01069{bottom:519.156920pt;}
.ye_c01069{bottom:542.595720pt;}
.yd_c01069{bottom:547.664520pt;}
.yc_c01069{bottom:605.009720pt;}
.yb_c01069{bottom:633.517320pt;}
.ya_c01069{bottom:661.395720pt;}
.y9_c01069{bottom:690.541320pt;}
.y8_c01069{bottom:718.424120pt;}
.y7_c01069{bottom:747.248520pt;}
.y6_c01069{bottom:775.760520pt;}
.y5_c01069{bottom:804.593720pt;}
.y3_c01069{bottom:832.784520pt;}
.y4_c01069{bottom:837.857720pt;}
.y2_c01069{bottom:963.306120pt;}
.h9_c01069{height:7.595714pt;}
.h10_c01069{height:8.464157pt;}
.hd_c01069{height:26.433000pt;}
.hc_c01069{height:28.819313pt;}
.h6_c01069{height:32.914370pt;}
.ha_c01069{height:33.224813pt;}
.h13_c01069{height:34.602280pt;}
.h7_c01069{height:35.244184pt;}
.h4_c01069{height:35.446236pt;}
.h5_c01069{height:35.794688pt;}
.h8_c01069{height:51.129375pt;}
.hb_c01069{height:57.002344pt;}
.h12_c01069{height:59.766094pt;}
.h11_c01069{height:61.493438pt;}
.h2_c01069{height:65.715375pt;}
.h3_c01069{height:65.984704pt;}
.he_c01069{height:68.652559pt;}
.h15_c01069{height:70.821094pt;}
.h14_c01069{height:71.405996pt;}
.hf_c01069{height:86.641684pt;}
.h1_c01069{height:986.666667pt;}
.h0_c01069{height:1122.666667pt;}
.w1_c01069{width:689.333333pt;}
.w0_c01069{width:793.333333pt;}
.x0_c01069{left:0.000000pt;}
.x1_c01069{left:52.000000pt;}
.x5f_c01069{left:73.961053pt;}
.x22_c01069{left:75.017053pt;}
.x4_c01069{left:76.799053pt;}
.x71_c01069{left:103.058253pt;}
.x3a_c01069{left:104.294653pt;}
.x2f_c01069{left:105.280253pt;}
.x48_c01069{left:114.058253pt;}
.x3c_c01069{left:122.506253pt;}
.x5_c01069{left:125.806253pt;}
.x6d_c01069{left:132.089453pt;}
.x4e_c01069{left:133.325853pt;}
.x23_c01069{left:134.447853pt;}
.x17_c01069{left:144.893453pt;}
.x68_c01069{left:152.765053pt;}
.x36_c01069{left:154.375453pt;}
.x6_c01069{left:156.725053pt;}
.x60_c01069{left:163.149053pt;}
.x49_c01069{left:164.187453pt;}
.x72_c01069{left:173.044653pt;}
.x24_c01069{left:173.999453pt;}
.x69_c01069{left:182.918253pt;}
.x18_c01069{left:184.748653pt;}
.x37_c01069{left:192.879853pt;}
.x2b_c01069{left:193.927053pt;}
.x75_c01069{left:201.741453pt;}
.x3d_c01069{left:202.691853pt;}
.x31_c01069{left:204.099853pt;}
.x7b_c01069{left:210.655853pt;}
.x6a_c01069{left:211.685453pt;}
.x10_c01069{left:213.832653pt;}
.x2c_c01069{left:222.285053pt;}
.x57_c01069{left:231.965053pt;}
.x3b_c01069{left:233.175053pt;}
.x7_c01069{left:234.107853pt;}
.x6b_c01069{left:241.354653pt;}
.x11_c01069{left:242.771453pt;}
.x65_c01069{left:251.980653pt;}
.x58_c01069{left:261.625453pt;}
.x4f_c01069{left:262.703453pt;}
.x38_c01069{left:272.775053pt;}
.x7c_c01069{left:281.073453pt;}
.x61_c01069{left:281.966653pt;}
.x12_c01069{left:283.005053pt;}
.x4a_c01069{left:291.123053pt;}
.x19_c01069{left:293.477053pt;}
.x8_c01069{left:303.302253pt;}
.x6c_c01069{left:311.112253pt;}
.x1a_c01069{left:312.471853pt;}
.x77_c01069{left:320.053053pt;}
.x39_c01069{left:321.971453pt;}
.x66_c01069{left:329.781453pt;}
.x9_c01069{left:330.960653pt;}
.x25_c01069{left:332.333453pt;}
.x52_c01069{left:340.477853pt;}
.x5c_c01069{left:341.912253pt;}
.x78_c01069{left:350.479053pt;}
.x2d_c01069{left:351.640653pt;}
.x53_c01069{left:361.162253pt;}
.x32_c01069{left:362.218253pt;}
.x26_c01069{left:371.040253pt;}
.x13_c01069{left:372.875053pt;}
.x62_c01069{left:379.193453pt;}
.x73_c01069{left:381.120653pt;}
.x4b_c01069{left:390.734653pt;}
.x79_c01069{left:398.201453pt;}
.x27_c01069{left:401.439853pt;}
.xa_c01069{left:403.657453pt;}
.x59_c01069{left:410.385053pt;}
.x1b_c01069{left:411.467453pt;}
.x6e_c01069{left:418.441453pt;}
.x4c_c01069{left:420.324653pt;}
.xb_c01069{left:421.429053pt;}
.x63_c01069{left:428.565853pt;}
.x2e_c01069{left:430.607453pt;}
.x5a_c01069{left:438.435053pt;}
.x5d_c01069{left:439.495453pt;}
.x30_c01069{left:449.646253pt;}
.x33_c01069{left:452.277453pt;}
.x1c_c01069{left:460.118253pt;}
.x5b_c01069{left:468.874253pt;}
.x34_c01069{left:469.824653pt;}
.xc_c01069{left:471.184253pt;}
.x28_c01069{left:479.451853pt;}
.x14_c01069{left:480.367053pt;}
.x1d_c01069{left:489.219853pt;}
.x55_c01069{left:490.539853pt;}
.xd_c01069{left:498.908653pt;}
.x7a_c01069{left:507.290653pt;}
.x15_c01069{left:509.182653pt;}
.x6f_c01069{left:517.459053pt;}
.x1e_c01069{left:518.607453pt;}
.x3e_c01069{left:526.826653pt;}
.x29_c01069{left:528.516253pt;}
.x50_c01069{left:537.558253pt;}
.xe_c01069{left:538.997053pt;}
.x70_c01069{left:546.578253pt;}
.x3f_c01069{left:552.905453pt;}
.x40_c01069{left:555.343053pt;}
.x51_c01069{left:556.874253pt;}
.x4d_c01069{left:566.699453pt;}
.x1f_c01069{left:567.927053pt;}
.x64_c01069{left:576.361853pt;}
.x41_c01069{left:579.639853pt;}
.x42_c01069{left:583.371053pt;}
.x20_c01069{left:586.970253pt;}
.x43_c01069{left:592.131453pt;}
.x56_c01069{left:595.259853pt;}
.x35_c01069{left:596.918653pt;}
.xf_c01069{left:598.828253pt;}
.x44_c01069{left:604.024653pt;}
.x54_c01069{left:606.449053pt;}
.x67_c01069{left:607.342253pt;}
.x45_c01069{left:612.569453pt;}
.x21_c01069{left:616.445853pt;}
.x16_c01069{left:617.858253pt;}
.x74_c01069{left:625.809053pt;}
.x2_c01069{left:628.053053pt;}
.x46_c01069{left:634.543053pt;}
.x7d_c01069{left:635.893853pt;}
.x3_c01069{left:638.467853pt;}
.x47_c01069{left:641.512653pt;}
.x76_c01069{left:644.011853pt;}
.x2a_c01069{left:647.210653pt;}
.x5e_c01069{left:657.458253pt;}
}





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

.ir_c01070:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01070{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01070;src:url('chunks/assets/font_e8fe01ef939e2b0cae5283b0.woff2')format("woff");}.ff1_c01070{font-family:ff1_c01070;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01070;src:url('chunks/assets/font_b3725d319790f0bd57d56afb.woff2')format("woff");}.ff2_c01070{font-family:ff2_c01070;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01070;src:url('chunks/assets/font_640e588441223d0c903ee349.woff2')format("woff");}.ff3_c01070{font-family:ff3_c01070;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01070;src:url('chunks/assets/font_942e4596fc511222a50edc88.woff2')format("woff");}.ff4_c01070{font-family:ff4_c01070;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m28_c01070{transform:matrix(0.060976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060976,0.000000,0.000000,0.250000,0,0);}
.m27_c01070{transform:matrix(0.086890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086890,0.000000,0.000000,0.250000,0,0);}
.mb_c01070{transform:matrix(0.089189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089189,0.000000,0.000000,0.250000,0,0);}
.m3e_c01070{transform:matrix(0.089285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089285,0.000000,0.000000,0.250000,0,0);}
.m3d_c01070{transform:matrix(0.090528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090528,0.000000,0.000000,0.250000,0,0);}
.m3a_c01070{transform:matrix(0.109375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109375,0.000000,0.000000,0.250000,0,0);}
.m39_c01070{transform:matrix(0.111142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111142,0.000000,0.000000,0.250000,0,0);}
.m5b_c01070{transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);}
.me_c01070{transform:matrix(0.117667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117667,0.000000,0.000000,0.250000,0,0);}
.m2_c01070{transform:matrix(0.119048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119048,0.000000,0.000000,0.250000,0,0);}
.m5c_c01070{transform:matrix(0.128125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128125,0.000000,0.000000,0.250000,0,0);}
.m7c_c01070{transform:matrix(0.131250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131250,0.000000,0.000000,0.250000,0,0);}
.m58_c01070{transform:matrix(0.141538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141538,0.000000,0.000000,0.250000,0,0);}
.m3b_c01070{transform:matrix(0.167772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167772,0.000000,0.000000,0.250000,0,0);}
.m31_c01070{transform:matrix(0.168657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168657,0.000000,0.000000,0.250000,0,0);}
.m57_c01070{transform:matrix(0.169924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169924,0.000000,0.000000,0.250000,0,0);}
.m52_c01070{transform:matrix(0.170731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170731,0.000000,0.000000,0.250000,0,0);}
.m5e_c01070{transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);}
.m51_c01070{transform:matrix(0.173781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173781,0.000000,0.000000,0.250000,0,0);}
.m5f_c01070{transform:matrix(0.183928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183928,0.000000,0.000000,0.250000,0,0);}
.ma6_c01070{transform:matrix(0.185374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185374,0.000000,0.000000,0.250000,0,0);}
.m71_c01070{transform:matrix(0.187194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187194,0.000000,0.000000,0.250000,0,0);}
.m98_c01070{transform:matrix(0.189025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189025,0.000000,0.000000,0.250000,0,0);}
.m5d_c01070{transform:matrix(0.189584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189584,0.000000,0.000000,0.250000,0,0);}
.m3c_c01070{transform:matrix(0.194445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194445,0.000000,0.000000,0.250000,0,0);}
.m9b_c01070{transform:matrix(0.214624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214624,0.000000,0.000000,0.250000,0,0);}
.m38_c01070{transform:matrix(0.217363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217363,0.000000,0.000000,0.250000,0,0);}
.m4b_c01070{transform:matrix(0.240733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240733,0.000000,0.000000,0.250000,0,0);}
.m90_c01070{transform:matrix(0.245402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245402,0.000000,0.000000,0.250000,0,0);}
.m0_c01070{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m92_c01070{transform:matrix(0.260634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260634,0.000000,0.000000,0.250000,0,0);}
.m1_c01070{transform:matrix(0.260931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260931,0.000000,0.000000,0.250000,0,0);}
.m8c_c01070{transform:matrix(0.262904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262904,0.000000,0.000000,0.250000,0,0);}
.m24_c01070{transform:matrix(0.263568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263568,0.000000,0.000000,0.250000,0,0);}
.m8e_c01070{transform:matrix(0.265460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265460,0.000000,0.000000,0.250000,0,0);}
.m10_c01070{transform:matrix(0.266468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266468,0.000000,0.000000,0.250000,0,0);}
.m75_c01070{transform:matrix(0.267696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267696,0.000000,0.000000,0.250000,0,0);}
.mb2_c01070{transform:matrix(0.267831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267831,0.000000,0.000000,0.250000,0,0);}
.m18_c01070{transform:matrix(0.270287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270287,0.000000,0.000000,0.250000,0,0);}
.m72_c01070{transform:matrix(0.272246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272246,0.000000,0.000000,0.250000,0,0);}
.m81_c01070{transform:matrix(0.272665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272665,0.000000,0.000000,0.250000,0,0);}
.m8b_c01070{transform:matrix(0.273189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273189,0.000000,0.000000,0.250000,0,0);}
.m37_c01070{transform:matrix(0.273274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273274,0.000000,0.000000,0.250000,0,0);}
.m41_c01070{transform:matrix(0.273427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273427,0.000000,0.000000,0.250000,0,0);}
.m80_c01070{transform:matrix(0.273794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273794,0.000000,0.000000,0.250000,0,0);}
.md_c01070{transform:matrix(0.275114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275114,0.000000,0.000000,0.250000,0,0);}
.m2a_c01070{transform:matrix(0.275764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275764,0.000000,0.000000,0.250000,0,0);}
.m13_c01070{transform:matrix(0.278067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278067,0.000000,0.000000,0.250000,0,0);}
.m9d_c01070{transform:matrix(0.278113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278113,0.000000,0.000000,0.250000,0,0);}
.m23_c01070{transform:matrix(0.278154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278154,0.000000,0.000000,0.250000,0,0);}
.m6d_c01070{transform:matrix(0.278862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278862,0.000000,0.000000,0.250000,0,0);}
.ma_c01070{transform:matrix(0.279941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279941,0.000000,0.000000,0.250000,0,0);}
.m36_c01070{transform:matrix(0.280051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280051,0.000000,0.000000,0.250000,0,0);}
.m6e_c01070{transform:matrix(0.280672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280672,0.000000,0.000000,0.250000,0,0);}
.m1c_c01070{transform:matrix(0.281803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281803,0.000000,0.000000,0.250000,0,0);}
.m69_c01070{transform:matrix(0.282200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282200,0.000000,0.000000,0.250000,0,0);}
.m4f_c01070{transform:matrix(0.283022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283022,0.000000,0.000000,0.250000,0,0);}
.m7_c01070{transform:matrix(0.283033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283033,0.000000,0.000000,0.250000,0,0);}
.m22_c01070{transform:matrix(0.283387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283387,0.000000,0.000000,0.250000,0,0);}
.m6c_c01070{transform:matrix(0.283676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283676,0.000000,0.000000,0.250000,0,0);}
.m1f_c01070{transform:matrix(0.283734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283734,0.000000,0.000000,0.250000,0,0);}
.m85_c01070{transform:matrix(0.285024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285024,0.000000,0.000000,0.250000,0,0);}
.m42_c01070{transform:matrix(0.285862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285862,0.000000,0.000000,0.250000,0,0);}
.mac_c01070{transform:matrix(0.285870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285870,0.000000,0.000000,0.250000,0,0);}
.ma5_c01070{transform:matrix(0.287377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287377,0.000000,0.000000,0.250000,0,0);}
.m9f_c01070{transform:matrix(0.287900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287900,0.000000,0.000000,0.250000,0,0);}
.m15_c01070{transform:matrix(0.287913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287913,0.000000,0.000000,0.250000,0,0);}
.m88_c01070{transform:matrix(0.288258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288258,0.000000,0.000000,0.250000,0,0);}
.m53_c01070{transform:matrix(0.288458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288458,0.000000,0.000000,0.250000,0,0);}
.mbc_c01070{transform:matrix(0.288860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288860,0.000000,0.000000,0.250000,0,0);}
.m60_c01070{transform:matrix(0.289027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289027,0.000000,0.000000,0.250000,0,0);}
.m47_c01070{transform:matrix(0.289648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289648,0.000000,0.000000,0.250000,0,0);}
.m7f_c01070{transform:matrix(0.289778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289778,0.000000,0.000000,0.250000,0,0);}
.m50_c01070{transform:matrix(0.291206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291206,0.000000,0.000000,0.250000,0,0);}
.m49_c01070{transform:matrix(0.291474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291474,0.000000,0.000000,0.250000,0,0);}
.mb0_c01070{transform:matrix(0.291529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291529,0.000000,0.000000,0.250000,0,0);}
.m5a_c01070{transform:matrix(0.291683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291683,0.000000,0.000000,0.250000,0,0);}
.m59_c01070{transform:matrix(0.291884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291884,0.000000,0.000000,0.250000,0,0);}
.m76_c01070{transform:matrix(0.292445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292445,0.000000,0.000000,0.250000,0,0);}
.m5_c01070{transform:matrix(0.292747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292747,0.000000,0.000000,0.250000,0,0);}
.m43_c01070{transform:matrix(0.293499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293499,0.000000,0.000000,0.250000,0,0);}
.mae_c01070{transform:matrix(0.293592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293592,0.000000,0.000000,0.250000,0,0);}
.m33_c01070{transform:matrix(0.293802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293802,0.000000,0.000000,0.250000,0,0);}
.m82_c01070{transform:matrix(0.294096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294096,0.000000,0.000000,0.250000,0,0);}
.mf_c01070{transform:matrix(0.294447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294447,0.000000,0.000000,0.250000,0,0);}
.mb7_c01070{transform:matrix(0.295050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295050,0.000000,0.000000,0.250000,0,0);}
.mb9_c01070{transform:matrix(0.295601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295601,0.000000,0.000000,0.250000,0,0);}
.ma9_c01070{transform:matrix(0.296630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296630,0.000000,0.000000,0.250000,0,0);}
.mad_c01070{transform:matrix(0.296753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296753,0.000000,0.000000,0.250000,0,0);}
.m6f_c01070{transform:matrix(0.296931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296931,0.000000,0.000000,0.250000,0,0);}
.m26_c01070{transform:matrix(0.296991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296991,0.000000,0.000000,0.250000,0,0);}
.m32_c01070{transform:matrix(0.297896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297896,0.000000,0.000000,0.250000,0,0);}
.m94_c01070{transform:matrix(0.298283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298283,0.000000,0.000000,0.250000,0,0);}
.mbb_c01070{transform:matrix(0.298601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298601,0.000000,0.000000,0.250000,0,0);}
.m4_c01070{transform:matrix(0.298681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298681,0.000000,0.000000,0.250000,0,0);}
.m11_c01070{transform:matrix(0.299346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299346,0.000000,0.000000,0.250000,0,0);}
.m35_c01070{transform:matrix(0.300169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300169,0.000000,0.000000,0.250000,0,0);}
.mb3_c01070{transform:matrix(0.300428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300428,0.000000,0.000000,0.250000,0,0);}
.m7d_c01070{transform:matrix(0.301104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301104,0.000000,0.000000,0.250000,0,0);}
.m19_c01070{transform:matrix(0.301137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301137,0.000000,0.000000,0.250000,0,0);}
.m99_c01070{transform:matrix(0.301220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301220,0.000000,0.000000,0.250000,0,0);}
.m66_c01070{transform:matrix(0.301741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301741,0.000000,0.000000,0.250000,0,0);}
.m44_c01070{transform:matrix(0.301760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301760,0.000000,0.000000,0.250000,0,0);}
.m2f_c01070{transform:matrix(0.301935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301935,0.000000,0.000000,0.250000,0,0);}
.m4c_c01070{transform:matrix(0.302553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302553,0.000000,0.000000,0.250000,0,0);}
.m25_c01070{transform:matrix(0.303508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303508,0.000000,0.000000,0.250000,0,0);}
.m8_c01070{transform:matrix(0.304785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304785,0.000000,0.000000,0.250000,0,0);}
.m9_c01070{transform:matrix(0.305580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305580,0.000000,0.000000,0.250000,0,0);}
.m7b_c01070{transform:matrix(0.305584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305584,0.000000,0.000000,0.250000,0,0);}
.m62_c01070{transform:matrix(0.306338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306338,0.000000,0.000000,0.250000,0,0);}
.m40_c01070{transform:matrix(0.306404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306404,0.000000,0.000000,0.250000,0,0);}
.ma8_c01070{transform:matrix(0.307118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307118,0.000000,0.000000,0.250000,0,0);}
.m14_c01070{transform:matrix(0.307449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307449,0.000000,0.000000,0.250000,0,0);}
.m48_c01070{transform:matrix(0.307649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307649,0.000000,0.000000,0.250000,0,0);}
.m4a_c01070{transform:matrix(0.307829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307829,0.000000,0.000000,0.250000,0,0);}
.m73_c01070{transform:matrix(0.308453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308453,0.000000,0.000000,0.250000,0,0);}
.m2e_c01070{transform:matrix(0.308881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308881,0.000000,0.000000,0.250000,0,0);}
.m67_c01070{transform:matrix(0.309502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309502,0.000000,0.000000,0.250000,0,0);}
.m12_c01070{transform:matrix(0.309944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309944,0.000000,0.000000,0.250000,0,0);}
.m9a_c01070{transform:matrix(0.310109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310109,0.000000,0.000000,0.250000,0,0);}
.m6_c01070{transform:matrix(0.310126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310126,0.000000,0.000000,0.250000,0,0);}
.m74_c01070{transform:matrix(0.310301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310301,0.000000,0.000000,0.250000,0,0);}
.mb6_c01070{transform:matrix(0.311551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311551,0.000000,0.000000,0.250000,0,0);}
.ma7_c01070{transform:matrix(0.312109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312109,0.000000,0.000000,0.250000,0,0);}
.m1a_c01070{transform:matrix(0.314631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314631,0.000000,0.000000,0.250000,0,0);}
.m30_c01070{transform:matrix(0.315036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315036,0.000000,0.000000,0.250000,0,0);}
.mb8_c01070{transform:matrix(0.315263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315263,0.000000,0.000000,0.250000,0,0);}
.ma1_c01070{transform:matrix(0.315358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315358,0.000000,0.000000,0.250000,0,0);}
.mbd_c01070{transform:matrix(0.316390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316390,0.000000,0.000000,0.250000,0,0);}
.m8a_c01070{transform:matrix(0.316623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316623,0.000000,0.000000,0.250000,0,0);}
.m7a_c01070{transform:matrix(0.317868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317868,0.000000,0.000000,0.250000,0,0);}
.m68_c01070{transform:matrix(0.318023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318023,0.000000,0.000000,0.250000,0,0);}
.ma4_c01070{transform:matrix(0.318182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318182,0.000000,0.000000,0.250000,0,0);}
.m70_c01070{transform:matrix(0.318737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318737,0.000000,0.000000,0.250000,0,0);}
.maf_c01070{transform:matrix(0.318796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318796,0.000000,0.000000,0.250000,0,0);}
.m2c_c01070{transform:matrix(0.319821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319821,0.000000,0.000000,0.250000,0,0);}
.m4e_c01070{transform:matrix(0.320130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320130,0.000000,0.000000,0.250000,0,0);}
.m61_c01070{transform:matrix(0.320398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320398,0.000000,0.000000,0.250000,0,0);}
.maa_c01070{transform:matrix(0.320421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320421,0.000000,0.000000,0.250000,0,0);}
.m3f_c01070{transform:matrix(0.321481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321481,0.000000,0.000000,0.250000,0,0);}
.ma2_c01070{transform:matrix(0.321731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321731,0.000000,0.000000,0.250000,0,0);}
.m89_c01070{transform:matrix(0.322404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322404,0.000000,0.000000,0.250000,0,0);}
.m4d_c01070{transform:matrix(0.323292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323292,0.000000,0.000000,0.250000,0,0);}
.mc_c01070{transform:matrix(0.323374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323374,0.000000,0.000000,0.250000,0,0);}
.mb1_c01070{transform:matrix(0.323701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323701,0.000000,0.000000,0.250000,0,0);}
.mba_c01070{transform:matrix(0.324698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324698,0.000000,0.000000,0.250000,0,0);}
.m78_c01070{transform:matrix(0.325280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325280,0.000000,0.000000,0.250000,0,0);}
.mbe_c01070{transform:matrix(0.325669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325669,0.000000,0.000000,0.250000,0,0);}
.mb5_c01070{transform:matrix(0.327915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327915,0.000000,0.000000,0.250000,0,0);}
.m8d_c01070{transform:matrix(0.328091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328091,0.000000,0.000000,0.250000,0,0);}
.m34_c01070{transform:matrix(0.328947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328947,0.000000,0.000000,0.250000,0,0);}
.m93_c01070{transform:matrix(0.330220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330220,0.000000,0.000000,0.250000,0,0);}
.m63_c01070{transform:matrix(0.333758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333758,0.000000,0.000000,0.250000,0,0);}
.m45_c01070{transform:matrix(0.334338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334338,0.000000,0.000000,0.250000,0,0);}
.m2d_c01070{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);}
.mb4_c01070{transform:matrix(0.335248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335248,0.000000,0.000000,0.250000,0,0);}
.m97_c01070{transform:matrix(0.335580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335580,0.000000,0.000000,0.250000,0,0);}
.m87_c01070{transform:matrix(0.336203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336203,0.000000,0.000000,0.250000,0,0);}
.m7e_c01070{transform:matrix(0.336988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336988,0.000000,0.000000,0.250000,0,0);}
.m83_c01070{transform:matrix(0.337696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337696,0.000000,0.000000,0.250000,0,0);}
.m8f_c01070{transform:matrix(0.337919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337919,0.000000,0.000000,0.250000,0,0);}
.m3_c01070{transform:matrix(0.339351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339351,0.000000,0.000000,0.250000,0,0);}
.m79_c01070{transform:matrix(0.339423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339423,0.000000,0.000000,0.250000,0,0);}
.m20_c01070{transform:matrix(0.339483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339483,0.000000,0.000000,0.250000,0,0);}
.m9e_c01070{transform:matrix(0.339859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339859,0.000000,0.000000,0.250000,0,0);}
.m95_c01070{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);}
.m91_c01070{transform:matrix(0.341255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341255,0.000000,0.000000,0.250000,0,0);}
.m46_c01070{transform:matrix(0.341632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341632,0.000000,0.000000,0.250000,0,0);}
.m1e_c01070{transform:matrix(0.341638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341638,0.000000,0.000000,0.250000,0,0);}
.m1b_c01070{transform:matrix(0.341839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341839,0.000000,0.000000,0.250000,0,0);}
.m6b_c01070{transform:matrix(0.343013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343013,0.000000,0.000000,0.250000,0,0);}
.m84_c01070{transform:matrix(0.344179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344179,0.000000,0.000000,0.250000,0,0);}
.m21_c01070{transform:matrix(0.347254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347254,0.000000,0.000000,0.250000,0,0);}
.m16_c01070{transform:matrix(0.348169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348169,0.000000,0.000000,0.250000,0,0);}
.m17_c01070{transform:matrix(0.348289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348289,0.000000,0.000000,0.250000,0,0);}
.m2b_c01070{transform:matrix(0.349419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349419,0.000000,0.000000,0.250000,0,0);}
.m65_c01070{transform:matrix(0.349653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349653,0.000000,0.000000,0.250000,0,0);}
.ma3_c01070{transform:matrix(0.353093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353093,0.000000,0.000000,0.250000,0,0);}
.mab_c01070{transform:matrix(0.355056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355056,0.000000,0.000000,0.250000,0,0);}
.m9c_c01070{transform:matrix(0.356315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356315,0.000000,0.000000,0.250000,0,0);}
.m29_c01070{transform:matrix(0.358064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358064,0.000000,0.000000,0.250000,0,0);}
.m77_c01070{transform:matrix(0.364408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364408,0.000000,0.000000,0.250000,0,0);}
.m6a_c01070{transform:matrix(0.369709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369709,0.000000,0.000000,0.250000,0,0);}
.m86_c01070{transform:matrix(0.376685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376685,0.000000,0.000000,0.250000,0,0);}
.m96_c01070{transform:matrix(0.377554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377554,0.000000,0.000000,0.250000,0,0);}
.m1d_c01070{transform:matrix(0.390139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390139,0.000000,0.000000,0.250000,0,0);}
.m64_c01070{transform:matrix(0.396432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396432,0.000000,0.000000,0.250000,0,0);}
.ma0_c01070{transform:matrix(0.402725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402725,0.000000,0.000000,0.250000,0,0);}
.m56_c01070{transform:matrix(0.462950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462950,0.000000,0.000000,0.250000,0,0);}
.m55_c01070{transform:matrix(0.596077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596077,0.000000,0.000000,0.250000,0,0);}
.m54_c01070{transform:matrix(1.034471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.034471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.034471,0.000000,0.000000,0.250000,0,0);}
.v0_c01070{vertical-align:0.000000px;}
.lse_c01070{letter-spacing:-3.520440px;}
.lsc_c01070{letter-spacing:-3.160080px;}
.lsb_c01070{letter-spacing:-2.626477px;}
.ls9_c01070{letter-spacing:-2.494800px;}
.ls13_c01070{letter-spacing:-1.829520px;}
.lsf_c01070{letter-spacing:-0.077418px;}
.ls2_c01070{letter-spacing:0.000000px;}
.ls6_c01070{letter-spacing:0.135076px;}
.ls11_c01070{letter-spacing:0.514800px;}
.ls12_c01070{letter-spacing:0.584110px;}
.ls20_c01070{letter-spacing:1.043087px;}
.ls1a_c01070{letter-spacing:1.515852px;}
.ls1d_c01070{letter-spacing:1.590895px;}
.ls16_c01070{letter-spacing:1.996122px;}
.ls19_c01070{letter-spacing:2.206241px;}
.ls0_c01070{letter-spacing:2.213745px;}
.ls21_c01070{letter-spacing:2.457008px;}
.ls1b_c01070{letter-spacing:2.521418px;}
.ls1c_c01070{letter-spacing:2.611468px;}
.ls18_c01070{letter-spacing:2.673000px;}
.ls8_c01070{letter-spacing:3.316865px;}
.ls17_c01070{letter-spacing:3.366000px;}
.ls1_c01070{letter-spacing:3.474454px;}
.ls1e_c01070{letter-spacing:3.524400px;}
.ls15_c01070{letter-spacing:3.593700px;}
.ls5_c01070{letter-spacing:3.752110px;}
.ls1f_c01070{letter-spacing:4.039200px;}
.ls3_c01070{letter-spacing:4.078810px;}
.ls10_c01070{letter-spacing:18.532998px;}
.ls4_c01070{letter-spacing:29.937798px;}
.ls7_c01070{letter-spacing:52.747398px;}
.ls14_c01070{letter-spacing:57.024198px;}
.lsa_c01070{letter-spacing:58.449798px;}
.lsd_c01070{letter-spacing:59.875398px;}
.sc__c01070{text-shadow:none;}
.sc0_c01070{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01070{-webkit-text-stroke:0px transparent;}
.sc0_c01070{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01070{word-spacing:0.000000px;}
._0_c01070{margin-left:-17.114743px;}
._a_c01070{margin-left:-14.708331px;}
._b_c01070{margin-left:-9.380151px;}
._4_c01070{width:5.199480px;}
._7_c01070{width:9.485729px;}
._8_c01070{width:11.856944px;}
._2_c01070{width:12.910392px;}
._1_c01070{width:16.671600px;}
._9_c01070{width:20.220265px;}
._5_c01070{width:31.028481px;}
._3_c01070{width:34.646832px;}
._6_c01070{width:73.643643px;}
.fc0_c01070{color:transparent;}
.fse_c01070{font-size:10.296000px;}
.fsf_c01070{font-size:11.682198px;}
.fsd_c01070{font-size:18.532998px;}
.fs3_c01070{font-size:23.166000px;}
.fs0_c01070{font-size:27.720000px;}
.fs4_c01070{font-size:29.937798px;}
.fs10_c01070{font-size:52.272000px;}
.fs6_c01070{font-size:52.747398px;}
.fs15_c01070{font-size:53.460000px;}
.fs12_c01070{font-size:57.024198px;}
.fs8_c01070{font-size:58.449798px;}
.fsa_c01070{font-size:59.875398px;}
.fs17_c01070{font-size:66.330000px;}
.fs2_c01070{font-size:66.528000px;}
.fs14_c01070{font-size:67.320000px;}
.fs18_c01070{font-size:70.488000px;}
.fs7_c01070{font-size:71.280000px;}
.fs13_c01070{font-size:71.874000px;}
.fs11_c01070{font-size:74.844000px;}
.fs5_c01070{font-size:75.042198px;}
.fs1a_c01070{font-size:77.022198px;}
.fsc_c01070{font-size:77.418000px;}
.fs16_c01070{font-size:78.804000px;}
.fs19_c01070{font-size:80.784000px;}
.fs1_c01070{font-size:81.576198px;}
.fs9_c01070{font-size:90.288000px;}
.fsb_c01070{font-size:100.584000px;}
.y0_c01070{bottom:0.000000px;}
.y1_c01070{bottom:76.500000px;}
.y21_c01070{bottom:127.146735px;}
.y20_c01070{bottom:159.930585px;}
.y1f_c01070{bottom:193.432185px;}
.y1e_c01070{bottom:225.869535px;}
.y1d_c01070{bottom:290.377935px;}
.y1c_c01070{bottom:310.336335px;}
.y1b_c01070{bottom:322.453935px;}
.y1a_c01070{bottom:354.886335px;}
.y19_c01070{bottom:386.962335px;}
.y18_c01070{bottom:419.389785px;}
.y17_c01070{bottom:450.396585px;}
.y16_c01070{bottom:482.121135px;}
.y15_c01070{bottom:513.479385px;}
.y14_c01070{bottom:545.198985px;}
.y13_c01070{bottom:577.631385px;}
.y12_c01070{bottom:608.994585px;}
.y11_c01070{bottom:638.219385px;}
.yf_c01070{bottom:642.144735px;}
.y10_c01070{bottom:642.501135px;}
.ye_c01070{bottom:706.296735px;}
.y2_c01070{bottom:712.350585px;}
.yd_c01070{bottom:738.011385px;}
.yc_c01070{bottom:769.018185px;}
.yb_c01070{bottom:802.524735px;}
.ya_c01070{bottom:834.239385px;}
.y9_c01070{bottom:866.320335px;}
.y8_c01070{bottom:898.039935px;}
.y7_c01070{bottom:929.754585px;}
.y6_c01070{bottom:965.038185px;}
.y5_c01070{bottom:975.730185px;}
.y4_c01070{bottom:988.560585px;}
.y3_c01070{bottom:1076.591385px;}
.h11_c01070{height:10.104961px;}
.h12_c01070{height:11.465438px;}
.h10_c01070{height:12.342977px;}
.h6_c01070{height:19.938573px;}
.h5_c01070{height:24.161414px;}
.h2_c01070{height:28.911094px;}
.h8_c01070{height:35.129767px;}
.h15_c01070{height:37.978116px;}
.ha_c01070{height:38.927565px;}
.hc_c01070{height:39.877015px;}
.h18_c01070{height:52.468066px;}
.h13_c01070{height:54.518063px;}
.h17_c01070{height:66.070898px;}
.h1a_c01070{height:69.180117px;}
.h4_c01070{height:69.386625px;}
.h9_c01070{height:69.957422px;}
.h16_c01070{height:70.540400px;}
.h14_c01070{height:73.455293px;}
.he_c01070{height:73.613172px;}
.h7_c01070{height:73.649813px;}
.h1c_c01070{height:75.593075px;}
.hf_c01070{height:75.943731px;}
.h19_c01070{height:77.341816px;}
.h1b_c01070{height:79.285078px;}
.h3_c01070{height:80.062577px;}
.hb_c01070{height:88.612734px;}
.hd_c01070{height:98.717695px;}
.h1_c01070{height:1110.000000px;}
.h0_c01070{height:1263.000000px;}
.w1_c01070{width:775.500000px;}
.w0_c01070{width:892.500000px;}
.x0_c01070{left:0.000000px;}
.x2_c01070{left:49.773885px;}
.x1_c01070{left:58.500000px;}
.x74_c01070{left:91.180635px;}
.x10_c01070{left:92.492385px;}
.x6_c01070{left:93.769485px;}
.x87_c01070{left:124.009035px;}
.x3f_c01070{left:125.078235px;}
.x81_c01070{left:126.553335px;}
.x2a_c01070{left:137.354235px;}
.x41_c01070{left:147.328485px;}
.x22_c01070{left:149.749035px;}
.x82_c01070{left:156.797835px;}
.x85_c01070{left:159.069885px;}
.x11_c01070{left:160.520235px;}
.x69_c01070{left:169.247085px;}
.x51_c01070{left:170.494485px;}
.x7_c01070{left:181.745835px;}
.x66_c01070{left:191.824035px;}
.x12_c01070{left:192.873435px;}
.x1b_c01070{left:193.987185px;}
.x52_c01070{left:201.956685px;}
.x83_c01070{left:203.159535px;}
.x3a_c01070{left:207.203685px;}
.x5e_c01070{left:213.792135px;}
.x2b_c01070{left:215.272185px;}
.x6e_c01070{left:224.474235px;}
.x2c_c01070{left:225.894885px;}
.x8_c01070{left:228.117435px;}
.x42_c01070{left:235.433535px;}
.x76_c01070{left:236.438385px;}
.x6f_c01070{left:246.927435px;}
.x5f_c01070{left:248.496585px;}
.x1c_c01070{left:259.396485px;}
.x23_c01070{left:260.940885px;}
.x77_c01070{left:267.910485px;}
.x88_c01070{left:269.915235px;}
.x13_c01070{left:271.360635px;}
.x7d_c01070{left:273.776235px;}
.x60_c01070{left:282.275385px;}
.x40_c01070{left:283.730685px;}
.x3b_c01070{left:291.422985px;}
.x33_c01070{left:293.328735px;}
.x14_c01070{left:302.832735px;}
.x9_c01070{left:303.956385px;}
.x4a_c01070{left:307.921335px;}
.x53_c01070{left:314.301885px;}
.x24_c01070{left:315.781935px;}
.x75_c01070{left:325.271085px;}
.x43_c01070{left:326.597685px;}
.x61_c01070{left:335.339385px;}
.x54_c01070{left:337.299585px;}
.x1d_c01070{left:338.368785px;}
.x86_c01070{left:346.793685px;}
.x44_c01070{left:349.288485px;}
.x58_c01070{left:358.262835px;}
.x2d_c01070{left:360.059685px;}
.x55_c01070{left:369.217185px;}
.x62_c01070{left:370.424985px;}
.x1e_c01070{left:372.454485px;}
.x45_c01070{left:381.800085px;}
.xa_c01070{left:382.884135px;}
.x15_c01070{left:384.012735px;}
.x59_c01070{left:392.472285px;}
.x5c_c01070{left:403.243485px;}
.x16_c01070{left:405.159135px;}
.x67_c01070{left:413.361285px;}
.x56_c01070{left:414.841335px;}
.xb_c01070{left:415.930335px;}
.x7e_c01070{left:424.973985px;}
.x78_c01070{left:425.983785px;}
.x5d_c01070{left:436.180785px;}
.x2e_c01070{left:438.160785px;}
.x25_c01070{left:447.937035px;}
.x79_c01070{left:456.233235px;}
.x70_c01070{left:457.881585px;}
.x5a_c01070{left:459.198285px;}
.x1f_c01070{left:460.549635px;}
.x34_c01070{left:468.771585px;}
.x3c_c01070{left:470.459535px;}
.x46_c01070{left:480.913935px;}
.x7a_c01070{left:491.581185px;}
.x17_c01070{left:493.402785px;}
.xc_c01070{left:503.961135px;}
.x3d_c01070{left:512.841435px;}
.x57_c01070{left:514.633335px;}
.x35_c01070{left:516.910335px;}
.x6a_c01070{left:523.533435px;}
.x26_c01070{left:525.637185px;}
.x63_c01070{left:536.522235px;}
.x18_c01070{left:538.180485px;}
.x2f_c01070{left:548.867535px;}
.x89_c01070{left:556.213335px;}
.x68_c01070{left:557.361735px;}
.x3e_c01070{left:559.524885px;}
.x6b_c01070{left:567.687435px;}
.x71_c01070{left:568.756635px;}
.x19_c01070{left:570.246585px;}
.x36_c01070{left:579.136785px;}
.x7f_c01070{left:580.309935px;}
.x8a_c01070{left:588.719985px;}
.x37_c01070{left:590.185185px;}
.x30_c01070{left:591.729585px;}
.x64_c01070{left:601.189035px;}
.xd_c01070{left:603.881835px;}
.x7b_c01070{left:612.014685px;}
.x5b_c01070{left:613.509585px;}
.x27_c01070{left:615.251985px;}
.x47_c01070{left:623.775885px;}
.x1a_c01070{left:625.231185px;}
.x38_c01070{left:631.463235px;}
.x39_c01070{left:634.299585px;}
.x65_c01070{left:636.180585px;}
.x7c_c01070{left:645.219285px;}
.x20_c01070{left:647.001285px;}
.x4b_c01070{left:649.253535px;}
.x6c_c01070{left:655.317285px;}
.x72_c01070{left:656.579535px;}
.xe_c01070{left:658.406085px;}
.x80_c01070{left:666.761685px;}
.x6d_c01070{left:668.677335px;}
.x4c_c01070{left:672.483885px;}
.x4d_c01070{left:673.760985px;}
.x4e_c01070{left:677.854635px;}
.x21_c01070{left:680.453385px;}
.x73_c01070{left:689.551485px;}
.xf_c01070{left:690.689985px;}
.x84_c01070{left:699.238635px;}
.x4_c01070{left:700.763235px;}
.x5_c01070{left:702.292785px;}
.x4f_c01070{left:712.831335px;}
.x3_c01070{left:713.954985px;}
.x28_c01070{left:715.286535px;}
.x48_c01070{left:724.196535px;}
.x31_c01070{left:726.419085px;}
.x50_c01070{left:728.374335px;}
.x32_c01070{left:733.418385px;}
.x29_c01070{left:736.314135px;}
.x49_c01070{left:746.649735px;}
@media print{
.v0_c01070{vertical-align:0.000000pt;}
.lse_c01070{letter-spacing:-3.129280pt;}
.lsc_c01070{letter-spacing:-2.808960pt;}
.lsb_c01070{letter-spacing:-2.334646pt;}
.ls9_c01070{letter-spacing:-2.217600pt;}
.ls13_c01070{letter-spacing:-1.626240pt;}
.lsf_c01070{letter-spacing:-0.068816pt;}
.ls2_c01070{letter-spacing:0.000000pt;}
.ls6_c01070{letter-spacing:0.120068pt;}
.ls11_c01070{letter-spacing:0.457600pt;}
.ls12_c01070{letter-spacing:0.519209pt;}
.ls20_c01070{letter-spacing:0.927188pt;}
.ls1a_c01070{letter-spacing:1.347424pt;}
.ls1d_c01070{letter-spacing:1.414129pt;}
.ls16_c01070{letter-spacing:1.774331pt;}
.ls19_c01070{letter-spacing:1.961103pt;}
.ls0_c01070{letter-spacing:1.967773pt;}
.ls21_c01070{letter-spacing:2.184007pt;}
.ls1b_c01070{letter-spacing:2.241260pt;}
.ls1c_c01070{letter-spacing:2.321305pt;}
.ls18_c01070{letter-spacing:2.376000pt;}
.ls8_c01070{letter-spacing:2.948325pt;}
.ls17_c01070{letter-spacing:2.992000pt;}
.ls1_c01070{letter-spacing:3.088403pt;}
.ls1e_c01070{letter-spacing:3.132800pt;}
.ls15_c01070{letter-spacing:3.194400pt;}
.ls5_c01070{letter-spacing:3.335209pt;}
.ls1f_c01070{letter-spacing:3.590400pt;}
.ls3_c01070{letter-spacing:3.625609pt;}
.ls10_c01070{letter-spacing:16.473776pt;}
.ls4_c01070{letter-spacing:26.611376pt;}
.ls7_c01070{letter-spacing:46.886576pt;}
.ls14_c01070{letter-spacing:50.688176pt;}
.lsa_c01070{letter-spacing:51.955376pt;}
.lsd_c01070{letter-spacing:53.222576pt;}
.ws0_c01070{word-spacing:0.000000pt;}
._0_c01070{margin-left:-15.213105pt;}
._a_c01070{margin-left:-13.074072pt;}
._b_c01070{margin-left:-8.337912pt;}
._4_c01070{width:4.621760pt;}
._7_c01070{width:8.431759pt;}
._8_c01070{width:10.539506pt;}
._2_c01070{width:11.475904pt;}
._1_c01070{width:14.819200pt;}
._9_c01070{width:17.973569pt;}
._5_c01070{width:27.580872pt;}
._3_c01070{width:30.797184pt;}
._6_c01070{width:65.461016pt;}
.fse_c01070{font-size:9.152000pt;}
.fsf_c01070{font-size:10.384176pt;}
.fsd_c01070{font-size:16.473776pt;}
.fs3_c01070{font-size:20.592000pt;}
.fs0_c01070{font-size:24.640000pt;}
.fs4_c01070{font-size:26.611376pt;}
.fs10_c01070{font-size:46.464000pt;}
.fs6_c01070{font-size:46.886576pt;}
.fs15_c01070{font-size:47.520000pt;}
.fs12_c01070{font-size:50.688176pt;}
.fs8_c01070{font-size:51.955376pt;}
.fsa_c01070{font-size:53.222576pt;}
.fs17_c01070{font-size:58.960000pt;}
.fs2_c01070{font-size:59.136000pt;}
.fs14_c01070{font-size:59.840000pt;}
.fs18_c01070{font-size:62.656000pt;}
.fs7_c01070{font-size:63.360000pt;}
.fs13_c01070{font-size:63.888000pt;}
.fs11_c01070{font-size:66.528000pt;}
.fs5_c01070{font-size:66.704176pt;}
.fs1a_c01070{font-size:68.464176pt;}
.fsc_c01070{font-size:68.816000pt;}
.fs16_c01070{font-size:70.048000pt;}
.fs19_c01070{font-size:71.808000pt;}
.fs1_c01070{font-size:72.512176pt;}
.fs9_c01070{font-size:80.256000pt;}
.fsb_c01070{font-size:89.408000pt;}
.y0_c01070{bottom:0.000000pt;}
.y1_c01070{bottom:68.000000pt;}
.y21_c01070{bottom:113.019320pt;}
.y20_c01070{bottom:142.160520pt;}
.y1f_c01070{bottom:171.939720pt;}
.y1e_c01070{bottom:200.772920pt;}
.y1d_c01070{bottom:258.113720pt;}
.y1c_c01070{bottom:275.854520pt;}
.y1b_c01070{bottom:286.625720pt;}
.y1a_c01070{bottom:315.454520pt;}
.y19_c01070{bottom:343.966520pt;}
.y18_c01070{bottom:372.790920pt;}
.y17_c01070{bottom:400.352520pt;}
.y16_c01070{bottom:428.552120pt;}
.y15_c01070{bottom:456.426120pt;}
.y14_c01070{bottom:484.621320pt;}
.y13_c01070{bottom:513.450120pt;}
.y12_c01070{bottom:541.328520pt;}
.y11_c01070{bottom:567.306120pt;}
.yf_c01070{bottom:570.795320pt;}
.y10_c01070{bottom:571.112120pt;}
.ye_c01070{bottom:627.819320pt;}
.y2_c01070{bottom:633.200520pt;}
.yd_c01070{bottom:656.010120pt;}
.yc_c01070{bottom:683.571720pt;}
.yb_c01070{bottom:713.355320pt;}
.ya_c01070{bottom:741.546120pt;}
.y9_c01070{bottom:770.062520pt;}
.y8_c01070{bottom:798.257720pt;}
.y7_c01070{bottom:826.448520pt;}
.y6_c01070{bottom:857.811720pt;}
.y5_c01070{bottom:867.315720pt;}
.y4_c01070{bottom:878.720520pt;}
.y3_c01070{bottom:956.970120pt;}
.h11_c01070{height:8.982188pt;}
.h12_c01070{height:10.191501pt;}
.h10_c01070{height:10.971535pt;}
.h6_c01070{height:17.723176pt;}
.h5_c01070{height:21.476813pt;}
.h2_c01070{height:25.698750pt;}
.h8_c01070{height:31.226460pt;}
.h15_c01070{height:33.758325pt;}
.ha_c01070{height:34.602280pt;}
.hc_c01070{height:35.446236pt;}
.h18_c01070{height:46.638281pt;}
.h13_c01070{height:48.460500pt;}
.h17_c01070{height:58.729688pt;}
.h1a_c01070{height:61.493438pt;}
.h4_c01070{height:61.677000pt;}
.h9_c01070{height:62.184375pt;}
.h16_c01070{height:62.702578pt;}
.h14_c01070{height:65.293594pt;}
.he_c01070{height:65.433930pt;}
.h7_c01070{height:65.466501pt;}
.h1c_c01070{height:67.193845pt;}
.hf_c01070{height:67.505539pt;}
.h19_c01070{height:68.748281pt;}
.h1b_c01070{height:70.475625pt;}
.h3_c01070{height:71.166735pt;}
.hb_c01070{height:78.766875pt;}
.hd_c01070{height:87.749063pt;}
.h1_c01070{height:986.666667pt;}
.h0_c01070{height:1122.666667pt;}
.w1_c01070{width:689.333333pt;}
.w0_c01070{width:793.333333pt;}
.x0_c01070{left:0.000000pt;}
.x2_c01070{left:44.243453pt;}
.x1_c01070{left:52.000000pt;}
.x74_c01070{left:81.049453pt;}
.x10_c01070{left:82.215453pt;}
.x6_c01070{left:83.350653pt;}
.x87_c01070{left:110.230253pt;}
.x3f_c01070{left:111.180653pt;}
.x81_c01070{left:112.491853pt;}
.x2a_c01070{left:122.092653pt;}
.x41_c01070{left:130.958653pt;}
.x22_c01070{left:133.110253pt;}
.x82_c01070{left:139.375853pt;}
.x85_c01070{left:141.395453pt;}
.x11_c01070{left:142.684653pt;}
.x69_c01070{left:150.441853pt;}
.x51_c01070{left:151.550653pt;}
.x7_c01070{left:161.551853pt;}
.x66_c01070{left:170.510253pt;}
.x12_c01070{left:171.443053pt;}
.x1b_c01070{left:172.433053pt;}
.x52_c01070{left:179.517053pt;}
.x83_c01070{left:180.586253pt;}
.x3a_c01070{left:184.181053pt;}
.x5e_c01070{left:190.037453pt;}
.x2b_c01070{left:191.353053pt;}
.x6e_c01070{left:199.532653pt;}
.x2c_c01070{left:200.795453pt;}
.x8_c01070{left:202.771053pt;}
.x42_c01070{left:209.274253pt;}
.x76_c01070{left:210.167453pt;}
.x6f_c01070{left:219.491053pt;}
.x5f_c01070{left:220.885853pt;}
.x1c_c01070{left:230.574653pt;}
.x23_c01070{left:231.947453pt;}
.x77_c01070{left:238.142653pt;}
.x88_c01070{left:239.924653pt;}
.x13_c01070{left:241.209453pt;}
.x7d_c01070{left:243.356653pt;}
.x60_c01070{left:250.911453pt;}
.x40_c01070{left:252.205053pt;}
.x3b_c01070{left:259.042653pt;}
.x33_c01070{left:260.736653pt;}
.x14_c01070{left:269.184653pt;}
.x9_c01070{left:270.183453pt;}
.x4a_c01070{left:273.707853pt;}
.x53_c01070{left:279.379453pt;}
.x24_c01070{left:280.695053pt;}
.x75_c01070{left:289.129853pt;}
.x43_c01070{left:290.309053pt;}
.x61_c01070{left:298.079453pt;}
.x54_c01070{left:299.821853pt;}
.x1d_c01070{left:300.772253pt;}
.x86_c01070{left:308.261053pt;}
.x44_c01070{left:310.478653pt;}
.x58_c01070{left:318.455853pt;}
.x2d_c01070{left:320.053053pt;}
.x55_c01070{left:328.193053pt;}
.x62_c01070{left:329.266653pt;}
.x1e_c01070{left:331.070653pt;}
.x45_c01070{left:339.377853pt;}
.xa_c01070{left:340.341453pt;}
.x15_c01070{left:341.344653pt;}
.x59_c01070{left:348.864253pt;}
.x5c_c01070{left:358.438653pt;}
.x16_c01070{left:360.141453pt;}
.x67_c01070{left:367.432253pt;}
.x56_c01070{left:368.747853pt;}
.xb_c01070{left:369.715853pt;}
.x7e_c01070{left:377.754653pt;}
.x78_c01070{left:378.652253pt;}
.x5d_c01070{left:387.716253pt;}
.x2e_c01070{left:389.476253pt;}
.x25_c01070{left:398.166253pt;}
.x79_c01070{left:405.540653pt;}
.x70_c01070{left:407.005853pt;}
.x5a_c01070{left:408.176253pt;}
.x1f_c01070{left:409.377453pt;}
.x34_c01070{left:416.685853pt;}
.x3c_c01070{left:418.186253pt;}
.x46_c01070{left:427.479053pt;}
.x7a_c01070{left:436.961053pt;}
.x17_c01070{left:438.580253pt;}
.xc_c01070{left:447.965453pt;}
.x3d_c01070{left:455.859053pt;}
.x57_c01070{left:457.451853pt;}
.x35_c01070{left:459.475853pt;}
.x6a_c01070{left:465.363053pt;}
.x26_c01070{left:467.233053pt;}
.x63_c01070{left:476.908653pt;}
.x18_c01070{left:478.382653pt;}
.x2f_c01070{left:487.882253pt;}
.x89_c01070{left:494.411853pt;}
.x68_c01070{left:495.432653pt;}
.x3e_c01070{left:497.355453pt;}
.x6b_c01070{left:504.611053pt;}
.x71_c01070{left:505.561453pt;}
.x19_c01070{left:506.885853pt;}
.x36_c01070{left:514.788253pt;}
.x7f_c01070{left:515.831053pt;}
.x8a_c01070{left:523.306653pt;}
.x37_c01070{left:524.609053pt;}
.x30_c01070{left:525.981853pt;}
.x64_c01070{left:534.390253pt;}
.xd_c01070{left:536.783853pt;}
.x7b_c01070{left:544.013053pt;}
.x5b_c01070{left:545.341853pt;}
.x27_c01070{left:546.890653pt;}
.x47_c01070{left:554.467453pt;}
.x1a_c01070{left:555.761053pt;}
.x38_c01070{left:561.300653pt;}
.x39_c01070{left:563.821853pt;}
.x65_c01070{left:565.493853pt;}
.x7c_c01070{left:573.528253pt;}
.x20_c01070{left:575.112253pt;}
.x4b_c01070{left:577.114253pt;}
.x6c_c01070{left:582.504253pt;}
.x72_c01070{left:583.626253pt;}
.xe_c01070{left:585.249853pt;}
.x80_c01070{left:592.677053pt;}
.x6d_c01070{left:594.379853pt;}
.x4c_c01070{left:597.763453pt;}
.x4d_c01070{left:598.898653pt;}
.x4e_c01070{left:602.537453pt;}
.x21_c01070{left:604.847453pt;}
.x73_c01070{left:612.934653pt;}
.xf_c01070{left:613.946653pt;}
.x84_c01070{left:621.545453pt;}
.x4_c01070{left:622.900653pt;}
.x5_c01070{left:624.260253pt;}
.x4f_c01070{left:633.627853pt;}
.x3_c01070{left:634.626653pt;}
.x28_c01070{left:635.810253pt;}
.x48_c01070{left:643.730253pt;}
.x31_c01070{left:645.705853pt;}
.x50_c01070{left:647.443853pt;}
.x32_c01070{left:651.927453pt;}
.x29_c01070{left:654.501453pt;}
.x49_c01070{left:663.688653pt;}
}





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

.ir_c01071:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01071{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01071;src:url('chunks/assets/font_58276be35b83e49fc473bdc9.woff2')format("woff");}.ff1_c01071{font-family:ff1_c01071;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01071;src:url('chunks/assets/font_a3867f3b3da571529a80a1a1.woff2')format("woff");}.ff2_c01071{font-family:ff2_c01071;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01071;src:url('chunks/assets/font_1b920ae96983f6508e832124.woff2')format("woff");}.ff3_c01071{font-family:ff3_c01071;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m49_c01071{transform:matrix(0.052326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.052326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.052326,0.000000,0.000000,0.250000,0,0);}
.m48_c01071{transform:matrix(0.087209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087209,0.000000,0.000000,0.250000,0,0);}
.m3d_c01071{transform:matrix(0.100878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100878,0.000000,0.000000,0.250000,0,0);}
.m4b_c01071{transform:matrix(0.130814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130814,0.000000,0.000000,0.250000,0,0);}
.m4a_c01071{transform:matrix(0.136627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136627,0.000000,0.000000,0.250000,0,0);}
.m95_c01071{transform:matrix(0.145395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145395,0.000000,0.000000,0.250000,0,0);}
.m5b_c01071{transform:matrix(0.153815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153815,0.000000,0.000000,0.250000,0,0);}
.m5a_c01071{transform:matrix(0.153957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153957,0.000000,0.000000,0.250000,0,0);}
.m25_c01071{transform:matrix(0.167333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167333,0.000000,0.000000,0.250000,0,0);}
.mb8_c01071{transform:matrix(0.172222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172222,0.000000,0.000000,0.250000,0,0);}
.mb0_c01071{transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);}
.ma9_c01071{transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);}
.m1b_c01071{transform:matrix(0.210648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210648,0.000000,0.000000,0.250000,0,0);}
.m7b_c01071{transform:matrix(0.224468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224468,0.000000,0.000000,0.250000,0,0);}
.m5c_c01071{transform:matrix(0.225912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225912,0.000000,0.000000,0.250000,0,0);}
.m70_c01071{transform:matrix(0.230840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230840,0.000000,0.000000,0.250000,0,0);}
.m4c_c01071{transform:matrix(0.232479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232479,0.000000,0.000000,0.250000,0,0);}
.m1e_c01071{transform:matrix(0.239980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239980,0.000000,0.000000,0.250000,0,0);}
.m34_c01071{transform:matrix(0.241221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241221,0.000000,0.000000,0.250000,0,0);}
.m5d_c01071{transform:matrix(0.244917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244917,0.000000,0.000000,0.250000,0,0);}
.me_c01071{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m11_c01071{transform:matrix(0.252801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252801,0.000000,0.000000,0.250000,0,0);}
.m40_c01071{transform:matrix(0.254460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254460,0.000000,0.000000,0.250000,0,0);}
.m75_c01071{transform:matrix(0.255930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255930,0.000000,0.000000,0.250000,0,0);}
.m36_c01071{transform:matrix(0.257881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257881,0.000000,0.000000,0.250000,0,0);}
.m89_c01071{transform:matrix(0.259719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259719,0.000000,0.000000,0.250000,0,0);}
.m47_c01071{transform:matrix(0.261444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261444,0.000000,0.000000,0.250000,0,0);}
.mbe_c01071{transform:matrix(0.261821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261821,0.000000,0.000000,0.250000,0,0);}
.m3f_c01071{transform:matrix(0.263376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263376,0.000000,0.000000,0.250000,0,0);}
.m7a_c01071{transform:matrix(0.265451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265451,0.000000,0.000000,0.250000,0,0);}
.mb7_c01071{transform:matrix(0.266286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266286,0.000000,0.000000,0.250000,0,0);}
.m41_c01071{transform:matrix(0.266779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266779,0.000000,0.000000,0.250000,0,0);}
.m64_c01071{transform:matrix(0.267450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267450,0.000000,0.000000,0.250000,0,0);}
.m61_c01071{transform:matrix(0.267843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267843,0.000000,0.000000,0.250000,0,0);}
.m3_c01071{transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);}
.m6f_c01071{transform:matrix(0.269545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269545,0.000000,0.000000,0.250000,0,0);}
.m8d_c01071{transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);}
.md_c01071{transform:matrix(0.270835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270835,0.000000,0.000000,0.250000,0,0);}
.m6_c01071{transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);}
.m90_c01071{transform:matrix(0.273115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273115,0.000000,0.000000,0.250000,0,0);}
.mad_c01071{transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);}
.m1c_c01071{transform:matrix(0.273844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273844,0.000000,0.000000,0.250000,0,0);}
.m2d_c01071{transform:matrix(0.275895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275895,0.000000,0.000000,0.250000,0,0);}
.m2f_c01071{transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);}
.ma1_c01071{transform:matrix(0.276672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276672,0.000000,0.000000,0.250000,0,0);}
.m94_c01071{transform:matrix(0.276981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276981,0.000000,0.000000,0.250000,0,0);}
.m33_c01071{transform:matrix(0.277205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277205,0.000000,0.000000,0.250000,0,0);}
.mf_c01071{transform:matrix(0.279458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279458,0.000000,0.000000,0.250000,0,0);}
.m29_c01071{transform:matrix(0.279477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279477,0.000000,0.000000,0.250000,0,0);}
.m14_c01071{transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);}
.m9f_c01071{transform:matrix(0.281194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281194,0.000000,0.000000,0.250000,0,0);}
.m80_c01071{transform:matrix(0.281464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281464,0.000000,0.000000,0.250000,0,0);}
.m81_c01071{transform:matrix(0.281798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281798,0.000000,0.000000,0.250000,0,0);}
.m6b_c01071{transform:matrix(0.282443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282443,0.000000,0.000000,0.250000,0,0);}
.m97_c01071{transform:matrix(0.283625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283625,0.000000,0.000000,0.250000,0,0);}
.m1a_c01071{transform:matrix(0.284650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284650,0.000000,0.000000,0.250000,0,0);}
.m18_c01071{transform:matrix(0.285120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285120,0.000000,0.000000,0.250000,0,0);}
.m52_c01071{transform:matrix(0.285652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285652,0.000000,0.000000,0.250000,0,0);}
.m42_c01071{transform:matrix(0.285752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285752,0.000000,0.000000,0.250000,0,0);}
.mb4_c01071{transform:matrix(0.285910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285910,0.000000,0.000000,0.250000,0,0);}
.m4d_c01071{transform:matrix(0.286078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286078,0.000000,0.000000,0.250000,0,0);}
.ma4_c01071{transform:matrix(0.286242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286242,0.000000,0.000000,0.250000,0,0);}
.mb9_c01071{transform:matrix(0.286620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286620,0.000000,0.000000,0.250000,0,0);}
.m16_c01071{transform:matrix(0.286724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286724,0.000000,0.000000,0.250000,0,0);}
.m6e_c01071{transform:matrix(0.287374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287374,0.000000,0.000000,0.250000,0,0);}
.m59_c01071{transform:matrix(0.287777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287777,0.000000,0.000000,0.250000,0,0);}
.m23_c01071{transform:matrix(0.288247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288247,0.000000,0.000000,0.250000,0,0);}
.m7f_c01071{transform:matrix(0.289588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289588,0.000000,0.000000,0.250000,0,0);}
.m44_c01071{transform:matrix(0.290493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290493,0.000000,0.000000,0.250000,0,0);}
.m8_c01071{transform:matrix(0.290783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290783,0.000000,0.000000,0.250000,0,0);}
.ma8_c01071{transform:matrix(0.290809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290809,0.000000,0.000000,0.250000,0,0);}
.m93_c01071{transform:matrix(0.291194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291194,0.000000,0.000000,0.250000,0,0);}
.m7d_c01071{transform:matrix(0.291864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291864,0.000000,0.000000,0.250000,0,0);}
.m43_c01071{transform:matrix(0.293879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293879,0.000000,0.000000,0.250000,0,0);}
.m46_c01071{transform:matrix(0.294342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294342,0.000000,0.000000,0.250000,0,0);}
.m3e_c01071{transform:matrix(0.294472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294472,0.000000,0.000000,0.250000,0,0);}
.m37_c01071{transform:matrix(0.294582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294582,0.000000,0.000000,0.250000,0,0);}
.m9d_c01071{transform:matrix(0.296335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296335,0.000000,0.000000,0.250000,0,0);}
.mbd_c01071{transform:matrix(0.296907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296907,0.000000,0.000000,0.250000,0,0);}
.m1f_c01071{transform:matrix(0.296995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296995,0.000000,0.000000,0.250000,0,0);}
.mbc_c01071{transform:matrix(0.297847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297847,0.000000,0.000000,0.250000,0,0);}
.ma6_c01071{transform:matrix(0.297996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297996,0.000000,0.000000,0.250000,0,0);}
.m92_c01071{transform:matrix(0.299568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299568,0.000000,0.000000,0.250000,0,0);}
.m5f_c01071{transform:matrix(0.299677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299677,0.000000,0.000000,0.250000,0,0);}
.m7_c01071{transform:matrix(0.299931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299931,0.000000,0.000000,0.250000,0,0);}
.m79_c01071{transform:matrix(0.299987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299987,0.000000,0.000000,0.250000,0,0);}
.ma0_c01071{transform:matrix(0.300021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300021,0.000000,0.000000,0.250000,0,0);}
.mb5_c01071{transform:matrix(0.300067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300067,0.000000,0.000000,0.250000,0,0);}
.mb_c01071{transform:matrix(0.300099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300099,0.000000,0.000000,0.250000,0,0);}
.m20_c01071{transform:matrix(0.300129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300129,0.000000,0.000000,0.250000,0,0);}
.m63_c01071{transform:matrix(0.300540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300540,0.000000,0.000000,0.250000,0,0);}
.m9c_c01071{transform:matrix(0.300565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300565,0.000000,0.000000,0.250000,0,0);}
.ma7_c01071{transform:matrix(0.300804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300804,0.000000,0.000000,0.250000,0,0);}
.mac_c01071{transform:matrix(0.301834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301834,0.000000,0.000000,0.250000,0,0);}
.mb6_c01071{transform:matrix(0.301910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301910,0.000000,0.000000,0.250000,0,0);}
.m3c_c01071{transform:matrix(0.302114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302114,0.000000,0.000000,0.250000,0,0);}
.m57_c01071{transform:matrix(0.302387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302387,0.000000,0.000000,0.250000,0,0);}
.m67_c01071{transform:matrix(0.302445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302445,0.000000,0.000000,0.250000,0,0);}
.m6d_c01071{transform:matrix(0.302917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302917,0.000000,0.000000,0.250000,0,0);}
.m5e_c01071{transform:matrix(0.303021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303021,0.000000,0.000000,0.250000,0,0);}
.m68_c01071{transform:matrix(0.303047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303047,0.000000,0.000000,0.250000,0,0);}
.maf_c01071{transform:matrix(0.303229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303229,0.000000,0.000000,0.250000,0,0);}
.ma_c01071{transform:matrix(0.303469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303469,0.000000,0.000000,0.250000,0,0);}
.m15_c01071{transform:matrix(0.303779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303779,0.000000,0.000000,0.250000,0,0);}
.m78_c01071{transform:matrix(0.304430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304430,0.000000,0.000000,0.250000,0,0);}
.m84_c01071{transform:matrix(0.304987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304987,0.000000,0.000000,0.250000,0,0);}
.m66_c01071{transform:matrix(0.305233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305233,0.000000,0.000000,0.250000,0,0);}
.m56_c01071{transform:matrix(0.305351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305351,0.000000,0.000000,0.250000,0,0);}
.m17_c01071{transform:matrix(0.305728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305728,0.000000,0.000000,0.250000,0,0);}
.m22_c01071{transform:matrix(0.306031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306031,0.000000,0.000000,0.250000,0,0);}
.m26_c01071{transform:matrix(0.306071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306071,0.000000,0.000000,0.250000,0,0);}
.m0_c01071{transform:matrix(0.306238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306238,0.000000,0.000000,0.250000,0,0);}
.m9a_c01071{transform:matrix(0.306972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306972,0.000000,0.000000,0.250000,0,0);}
.m87_c01071{transform:matrix(0.307439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307439,0.000000,0.000000,0.250000,0,0);}
.m28_c01071{transform:matrix(0.308101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308101,0.000000,0.000000,0.250000,0,0);}
.m2b_c01071{transform:matrix(0.308192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308192,0.000000,0.000000,0.250000,0,0);}
.m3a_c01071{transform:matrix(0.308267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308267,0.000000,0.000000,0.250000,0,0);}
.m60_c01071{transform:matrix(0.308737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308737,0.000000,0.000000,0.250000,0,0);}
.m9e_c01071{transform:matrix(0.308938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308938,0.000000,0.000000,0.250000,0,0);}
.m71_c01071{transform:matrix(0.309310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309310,0.000000,0.000000,0.250000,0,0);}
.m8f_c01071{transform:matrix(0.309472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309472,0.000000,0.000000,0.250000,0,0);}
.m65_c01071{transform:matrix(0.309595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309595,0.000000,0.000000,0.250000,0,0);}
.m31_c01071{transform:matrix(0.310504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310504,0.000000,0.000000,0.250000,0,0);}
.m8a_c01071{transform:matrix(0.310696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310696,0.000000,0.000000,0.250000,0,0);}
.m82_c01071{transform:matrix(0.312111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312111,0.000000,0.000000,0.250000,0,0);}
.m88_c01071{transform:matrix(0.313208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313208,0.000000,0.000000,0.250000,0,0);}
.mb1_c01071{transform:matrix(0.313269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313269,0.000000,0.000000,0.250000,0,0);}
.m24_c01071{transform:matrix(0.315716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315716,0.000000,0.000000,0.250000,0,0);}
.m98_c01071{transform:matrix(0.315905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315905,0.000000,0.000000,0.250000,0,0);}
.m9_c01071{transform:matrix(0.316134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316134,0.000000,0.000000,0.250000,0,0);}
.m7c_c01071{transform:matrix(0.316670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316670,0.000000,0.000000,0.250000,0,0);}
.m96_c01071{transform:matrix(0.317491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317491,0.000000,0.000000,0.250000,0,0);}
.m4e_c01071{transform:matrix(0.317939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317939,0.000000,0.000000,0.250000,0,0);}
.m72_c01071{transform:matrix(0.318108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318108,0.000000,0.000000,0.250000,0,0);}
.m19_c01071{transform:matrix(0.318163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318163,0.000000,0.000000,0.250000,0,0);}
.mb2_c01071{transform:matrix(0.318946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318946,0.000000,0.000000,0.250000,0,0);}
.m58_c01071{transform:matrix(0.318970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318970,0.000000,0.000000,0.250000,0,0);}
.m83_c01071{transform:matrix(0.318994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318994,0.000000,0.000000,0.250000,0,0);}
.m8e_c01071{transform:matrix(0.319068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319068,0.000000,0.000000,0.250000,0,0);}
.ma2_c01071{transform:matrix(0.319239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319239,0.000000,0.000000,0.250000,0,0);}
.ma3_c01071{transform:matrix(0.320356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320356,0.000000,0.000000,0.250000,0,0);}
.mbb_c01071{transform:matrix(0.320839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320839,0.000000,0.000000,0.250000,0,0);}
.m54_c01071{transform:matrix(0.322510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322510,0.000000,0.000000,0.250000,0,0);}
.m7e_c01071{transform:matrix(0.322662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322662,0.000000,0.000000,0.250000,0,0);}
.mba_c01071{transform:matrix(0.323260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323260,0.000000,0.000000,0.250000,0,0);}
.m91_c01071{transform:matrix(0.324539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324539,0.000000,0.000000,0.250000,0,0);}
.m69_c01071{transform:matrix(0.326836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326836,0.000000,0.000000,0.250000,0,0);}
.mbf_c01071{transform:matrix(0.326898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326898,0.000000,0.000000,0.250000,0,0);}
.m27_c01071{transform:matrix(0.327082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327082,0.000000,0.000000,0.250000,0,0);}
.m76_c01071{transform:matrix(0.327832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327832,0.000000,0.000000,0.250000,0,0);}
.m85_c01071{transform:matrix(0.328258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328258,0.000000,0.000000,0.250000,0,0);}
.mab_c01071{transform:matrix(0.328499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328499,0.000000,0.000000,0.250000,0,0);}
.mc0_c01071{transform:matrix(0.329050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329050,0.000000,0.000000,0.250000,0,0);}
.m2e_c01071{transform:matrix(0.330362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330362,0.000000,0.000000,0.250000,0,0);}
.m73_c01071{transform:matrix(0.330403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330403,0.000000,0.000000,0.250000,0,0);}
.m99_c01071{transform:matrix(0.330515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330515,0.000000,0.000000,0.250000,0,0);}
.m35_c01071{transform:matrix(0.330522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330522,0.000000,0.000000,0.250000,0,0);}
.mb3_c01071{transform:matrix(0.330669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330669,0.000000,0.000000,0.250000,0,0);}
.m5_c01071{transform:matrix(0.331581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331581,0.000000,0.000000,0.250000,0,0);}
.m6c_c01071{transform:matrix(0.332637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332637,0.000000,0.000000,0.250000,0,0);}
.m51_c01071{transform:matrix(0.333442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333442,0.000000,0.000000,0.250000,0,0);}
.m77_c01071{transform:matrix(0.334940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334940,0.000000,0.000000,0.250000,0,0);}
.m3b_c01071{transform:matrix(0.335295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335295,0.000000,0.000000,0.250000,0,0);}
.m39_c01071{transform:matrix(0.337107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337107,0.000000,0.000000,0.250000,0,0);}
.m1d_c01071{transform:matrix(0.338811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338811,0.000000,0.000000,0.250000,0,0);}
.m32_c01071{transform:matrix(0.339063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339063,0.000000,0.000000,0.250000,0,0);}
.m21_c01071{transform:matrix(0.342167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342167,0.000000,0.000000,0.250000,0,0);}
.m45_c01071{transform:matrix(0.342298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342298,0.000000,0.000000,0.250000,0,0);}
.m62_c01071{transform:matrix(0.343390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343390,0.000000,0.000000,0.250000,0,0);}
.mc_c01071{transform:matrix(0.344455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344455,0.000000,0.000000,0.250000,0,0);}
.m6a_c01071{transform:matrix(0.344543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344543,0.000000,0.000000,0.250000,0,0);}
.m8b_c01071{transform:matrix(0.344684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344684,0.000000,0.000000,0.250000,0,0);}
.m2_c01071{transform:matrix(0.344900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344900,0.000000,0.000000,0.250000,0,0);}
.maa_c01071{transform:matrix(0.346227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346227,0.000000,0.000000,0.250000,0,0);}
.m50_c01071{transform:matrix(0.346907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346907,0.000000,0.000000,0.250000,0,0);}
.m53_c01071{transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);}
.m2a_c01071{transform:matrix(0.355252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355252,0.000000,0.000000,0.250000,0,0);}
.m13_c01071{transform:matrix(0.357981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357981,0.000000,0.000000,0.250000,0,0);}
.m12_c01071{transform:matrix(0.357991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357991,0.000000,0.000000,0.250000,0,0);}
.m4_c01071{transform:matrix(0.359199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359199,0.000000,0.000000,0.250000,0,0);}
.m38_c01071{transform:matrix(0.363147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363147,0.000000,0.000000,0.250000,0,0);}
.ma5_c01071{transform:matrix(0.363298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363298,0.000000,0.000000,0.250000,0,0);}
.mae_c01071{transform:matrix(0.368347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368347,0.000000,0.000000,0.250000,0,0);}
.m2c_c01071{transform:matrix(0.371714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371714,0.000000,0.000000,0.250000,0,0);}
.m10_c01071{transform:matrix(0.377007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377007,0.000000,0.000000,0.250000,0,0);}
.m9b_c01071{transform:matrix(0.380571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380571,0.000000,0.000000,0.250000,0,0);}
.m86_c01071{transform:matrix(0.383861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383861,0.000000,0.000000,0.250000,0,0);}
.m8c_c01071{transform:matrix(0.387076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387076,0.000000,0.000000,0.250000,0,0);}
.m4f_c01071{transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);}
.m55_c01071{transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);}
.m1_c01071{transform:matrix(0.405805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405805,0.000000,0.000000,0.250000,0,0);}
.m30_c01071{transform:matrix(0.412048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412048,0.000000,0.000000,0.250000,0,0);}
.m74_c01071{transform:matrix(0.446414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446414,0.000000,0.000000,0.250000,0,0);}
.v0_c01071{vertical-align:0.000000px;}
.lsf_c01071{letter-spacing:-2.924467px;}
.lse_c01071{letter-spacing:-2.674980px;}
.ls6_c01071{letter-spacing:-2.647267px;}
.ls13_c01071{letter-spacing:-2.106720px;}
.ls1a_c01071{letter-spacing:-2.049741px;}
.ls10_c01071{letter-spacing:-1.413720px;}
.lsc_c01071{letter-spacing:-1.384142px;}
.ls9_c01071{letter-spacing:-1.263125px;}
.ls16_c01071{letter-spacing:-0.219345px;}
.ls8_c01071{letter-spacing:-0.211781px;}
.ls3_c01071{letter-spacing:0.000000px;}
.lsb_c01071{letter-spacing:0.196654px;}
.lsd_c01071{letter-spacing:0.605090px;}
.ls17_c01071{letter-spacing:0.635344px;}
.ls18_c01071{letter-spacing:1.558106px;}
.ls12_c01071{letter-spacing:1.868214px;}
.ls1b_c01071{letter-spacing:2.385900px;}
.ls19_c01071{letter-spacing:2.692810px;}
.ls0_c01071{letter-spacing:2.881739px;}
.ls14_c01071{letter-spacing:2.949812px;}
.ls15_c01071{letter-spacing:3.326400px;}
.ls4_c01071{letter-spacing:3.425400px;}
.ls11_c01071{letter-spacing:3.426320px;}
.ls2_c01071{letter-spacing:3.781810px;}
.ls1_c01071{letter-spacing:6.354128px;}
.ls5_c01071{letter-spacing:51.321798px;}
.ls7_c01071{letter-spacing:54.172998px;}
.ls1c_c01071{letter-spacing:59.875398px;}
.lsa_c01071{letter-spacing:61.300998px;}
.ls1d_c01071{letter-spacing:64.152198px;}
.sc__c01071{text-shadow:none;}
.sc0_c01071{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01071{-webkit-text-stroke:0px transparent;}
.sc0_c01071{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01071{word-spacing:-21.790789px;}
.ws0_c01071{word-spacing:-17.645925px;}
.ws2_c01071{word-spacing:0.000000px;}
._4_c01071{margin-left:-6.505520px;}
._3_c01071{margin-left:-3.556116px;}
._2_c01071{margin-left:-1.942942px;}
._5_c01071{width:31.616491px;}
._6_c01071{width:37.360879px;}
._1_c01071{width:41.970060px;}
._0_c01071{width:44.184039px;}
.fc0_c01071{color:transparent;}
.fse_c01071{font-size:23.166000px;}
.fs14_c01071{font-size:33.660000px;}
.fs1_c01071{font-size:39.402000px;}
.fsb_c01071{font-size:40.392000px;}
.fs12_c01071{font-size:43.758000px;}
.fs10_c01071{font-size:47.718000px;}
.fs4_c01071{font-size:51.321798px;}
.fsf_c01071{font-size:53.856198px;}
.fs6_c01071{font-size:54.172998px;}
.fs11_c01071{font-size:59.875398px;}
.fsc_c01071{font-size:60.192000px;}
.fs7_c01071{font-size:61.300998px;}
.fs13_c01071{font-size:64.152198px;}
.fs5_c01071{font-size:66.330000px;}
.fsd_c01071{font-size:66.528000px;}
.fs8_c01071{font-size:66.924000px;}
.fs2_c01071{font-size:68.508000px;}
.fs3_c01071{font-size:74.844000px;}
.fs0_c01071{font-size:75.636198px;}
.fs9_c01071{font-size:76.428000px;}
.fsa_c01071{font-size:83.556198px;}
.fs15_c01071{font-size:101.376198px;}
.y0_c01071{bottom:0.000000px;}
.y1d_c01071{bottom:46.238970px;}
.y1_c01071{bottom:76.500000px;}
.y1c_c01071{bottom:122.513520px;}
.y1b_c01071{bottom:152.094720px;}
.y1a_c01071{bottom:155.297370px;}
.y19_c01071{bottom:189.511770px;}
.y18_c01071{bottom:224.443920px;}
.y17_c01071{bottom:256.871370px;}
.y16_c01071{bottom:288.952320px;}
.y15_c01071{bottom:321.028320px;}
.y14_c01071{bottom:336.348570px;}
.y13_c01071{bottom:353.812170px;}
.y12_c01071{bottom:386.249520px;}
.y11_c01071{bottom:418.325520px;}
.y10_c01071{bottom:449.332320px;}
.yf_c01071{bottom:513.122970px;}
.ye_c01071{bottom:545.203920px;}
.yd_c01071{bottom:576.562170px;}
.yc_c01071{bottom:609.707370px;}
.yb_c01071{bottom:641.431920px;}
.ya_c01071{bottom:673.864320px;}
.y9_c01071{bottom:706.291770px;}
.y8_c01071{bottom:738.016320px;}
.y7_c01071{bottom:770.448720px;}
.y6_c01071{bottom:834.244320px;}
.y5_c01071{bottom:865.607520px;}
.y4_c01071{bottom:894.470970px;}
.y3_c01071{bottom:897.678570px;}
.y2_c01071{bottom:929.759520px;}
.y1e_c01071{bottom:1105.816170px;}
.h10_c01071{height:24.161414px;}
.h16_c01071{height:33.035449px;}
.h6_c01071{height:34.180317px;}
.h8_c01071{height:36.079217px;}
.h3_c01071{height:38.670908px;}
.h13_c01071{height:39.877015px;}
.h9_c01071{height:40.826465px;}
.hd_c01071{height:42.127594px;}
.h15_c01071{height:42.725364px;}
.h14_c01071{height:42.946084px;}
.h12_c01071{height:49.768383px;}
.h11_c01071{height:56.170332px;}
.he_c01071{height:59.075156px;}
.ha_c01071{height:65.682246px;}
.h4_c01071{height:67.236855px;}
.h7_c01071{height:69.180117px;}
.hf_c01071{height:69.386625px;}
.h5_c01071{height:73.455293px;}
.h2_c01071{height:74.232792px;}
.hb_c01071{height:75.009902px;}
.hc_c01071{height:82.005839px;}
.h17_c01071{height:105.732207px;}
.h1_c01071{height:1110.000000px;}
.h0_c01071{height:1263.000000px;}
.w1_c01071{width:775.500000px;}
.w0_c01071{width:892.500000px;}
.x0_c01071{left:0.000000px;}
.x1_c01071{left:58.500000px;}
.x83_c01071{left:80.117385px;}
.x1c_c01071{left:81.196485px;}
.x2_c01071{left:83.052735px;}
.x55_c01071{left:113.866485px;}
.x67_c01071{left:125.464335px;}
.xc_c01071{left:126.988935px;}
.x25_c01071{left:136.002885px;}
.x14_c01071{left:138.393735px;}
.x41_c01071{left:147.125535px;}
.x33_c01071{left:149.080785px;}
.x71_c01071{left:157.164135px;}
.x4e_c01071{left:159.416385px;}
.x26_c01071{left:169.949985px;}
.x15_c01071{left:171.083535px;}
.x68_c01071{left:179.251035px;}
.x1d_c01071{left:181.315185px;}
.x73_c01071{left:190.299435px;}
.x60_c01071{left:191.635935px;}
.x3_c01071{left:192.883335px;}
.x1e_c01071{left:204.307935px;}
.x69_c01071{left:213.425835px;}
.x3b_c01071{left:214.495035px;}
.x61_c01071{left:223.761435px;}
.x4_c01071{left:225.226635px;}
.x74_c01071{left:236.735385px;}
.xd_c01071{left:238.512435px;}
.x78_c01071{left:245.848335px;}
.x34_c01071{left:247.442235px;}
.x27_c01071{left:248.848035px;}
.x3c_c01071{left:257.144235px;}
.x16_c01071{left:259.416285px;}
.x2e_c01071{left:260.643885px;}
.x6d_c01071{left:270.207285px;}
.x7e_c01071{left:271.434885px;}
.x62_c01071{left:280.577535px;}
.x48_c01071{left:281.978385px;}
.x17_c01071{left:283.007985px;}
.x56_c01071{left:291.492285px;}
.xe_c01071{left:293.071335px;}
.x5b_c01071{left:303.411885px;}
.x1f_c01071{left:304.882035px;}
.x58_c01071{left:313.257435px;}
.x57_c01071{left:314.712735px;}
.x3d_c01071{left:324.172185px;}
.x28_c01071{left:325.696785px;}
.x42_c01071{left:335.364135px;}
.x79_c01071{left:336.829335px;}
.x43_c01071{left:339.992385px;}
.x44_c01071{left:342.492135px;}
.x49_c01071{left:348.308385px;}
.x75_c01071{left:357.050085px;}
.x59_c01071{left:359.035035px;}
.x5_c01071{left:360.109185px;}
.x35_c01071{left:369.212235px;}
.x18_c01071{left:370.667535px;}
.xf_c01071{left:373.736535px;}
.x4a_c01071{left:381.755535px;}
.x6_c01071{left:392.853435px;}
.x10_c01071{left:393.942435px;}
.x5c_c01071{left:402.001035px;}
.x6a_c01071{left:403.248435px;}
.x45_c01071{left:404.505735px;}
.x3e_c01071{left:414.564135px;}
.x29_c01071{left:416.039235px;}
.x7c_c01071{left:424.216635px;}
.x20_c01071{left:425.820435px;}
.x5a_c01071{left:436.606485px;}
.x7_c01071{left:438.106335px;}
.x7a_c01071{left:447.204435px;}
.x36_c01071{left:448.852785px;}
.x63_c01071{left:457.599435px;}
.x2f_c01071{left:459.544785px;}
.x7d_c01071{left:468.241935px;}
.x37_c01071{left:469.499235px;}
.x19_c01071{left:480.641685px;}
.x46_c01071{left:482.092035px;}
.x7f_c01071{left:489.323985px;}
.x6e_c01071{left:490.338735px;}
.x30_c01071{left:491.947485px;}
.x4b_c01071{left:503.377035px;}
.x21_c01071{left:504.391785px;}
.x38_c01071{left:513.851235px;}
.x8_c01071{left:515.138235px;}
.x80_c01071{left:524.038335px;}
.x2a_c01071{left:525.439185px;}
.x31_c01071{left:535.250085px;}
.x22_c01071{left:536.309385px;}
.x9_c01071{left:547.055835px;}
.x11_c01071{left:548.570535px;}
.x70_c01071{left:556.921185px;}
.x64_c01071{left:568.622985px;}
.x2b_c01071{left:569.989185px;}
.x4c_c01071{left:572.325585px;}
.x12_c01071{left:579.448635px;}
.x4f_c01071{left:580.691085px;}
.x81_c01071{left:589.982235px;}
.x3f_c01071{left:601.154385px;}
.x65_c01071{left:602.817585px;}
.x5d_c01071{left:613.479885px;}
.xa_c01071{left:614.534235px;}
.x7b_c01071{left:622.048335px;}
.x50_c01071{left:623.627385px;}
.x23_c01071{left:624.840135px;}
.x6f_c01071{left:633.992685px;}
.x39_c01071{left:635.571735px;}
.x51_c01071{left:637.888335px;}
.x52_c01071{left:639.893085px;}
.x47_c01071{left:644.877735px;}
.x5e_c01071{left:647.362635px;}
.x53_c01071{left:653.678835px;}
.x6b_c01071{left:656.208285px;}
.x1a_c01071{left:658.039785px;}
.x3a_c01071{left:667.885335px;}
.x5f_c01071{left:678.176385px;}
.x76_c01071{left:679.349535px;}
.x13_c01071{left:680.473185px;}
.x72_c01071{left:689.016885px;}
.x6c_c01071{left:690.100935px;}
.x2c_c01071{left:691.199835px;}
.xb_c01071{left:692.838285px;}
.x84_c01071{left:697.684335px;}
.x1b_c01071{left:702.451185px;}
.x66_c01071{left:704.559885px;}
.x77_c01071{left:711.321585px;}
.x40_c01071{left:713.257035px;}
.x82_c01071{left:722.528385px;}
.x2d_c01071{left:723.627285px;}
.x24_c01071{left:726.419085px;}
.x32_c01071{left:734.839035px;}
.x54_c01071{left:749.243535px;}
.x4d_c01071{left:759.945435px;}
.x85_c01071{left:777.735735px;}
@media print{
.v0_c01071{vertical-align:0.000000pt;}
.lsf_c01071{letter-spacing:-2.599526pt;}
.lse_c01071{letter-spacing:-2.377760pt;}
.ls6_c01071{letter-spacing:-2.353126pt;}
.ls13_c01071{letter-spacing:-1.872640pt;}
.ls1a_c01071{letter-spacing:-1.821992pt;}
.ls10_c01071{letter-spacing:-1.256640pt;}
.lsc_c01071{letter-spacing:-1.230349pt;}
.ls9_c01071{letter-spacing:-1.122777pt;}
.ls16_c01071{letter-spacing:-0.194973pt;}
.ls8_c01071{letter-spacing:-0.188250pt;}
.ls3_c01071{letter-spacing:0.000000pt;}
.lsb_c01071{letter-spacing:0.174804pt;}
.lsd_c01071{letter-spacing:0.537857pt;}
.ls17_c01071{letter-spacing:0.564750pt;}
.ls18_c01071{letter-spacing:1.384983pt;}
.ls12_c01071{letter-spacing:1.660635pt;}
.ls1b_c01071{letter-spacing:2.120800pt;}
.ls19_c01071{letter-spacing:2.393609pt;}
.ls0_c01071{letter-spacing:2.561546pt;}
.ls14_c01071{letter-spacing:2.622055pt;}
.ls15_c01071{letter-spacing:2.956800pt;}
.ls4_c01071{letter-spacing:3.044800pt;}
.ls11_c01071{letter-spacing:3.045618pt;}
.ls2_c01071{letter-spacing:3.361609pt;}
.ls1_c01071{letter-spacing:5.648114pt;}
.ls5_c01071{letter-spacing:45.619376pt;}
.ls7_c01071{letter-spacing:48.153776pt;}
.ls1c_c01071{letter-spacing:53.222576pt;}
.lsa_c01071{letter-spacing:54.489776pt;}
.ls1d_c01071{letter-spacing:57.024176pt;}
.ws1_c01071{word-spacing:-19.369590pt;}
.ws0_c01071{word-spacing:-15.685267pt;}
.ws2_c01071{word-spacing:0.000000pt;}
._4_c01071{margin-left:-5.782685pt;}
._3_c01071{margin-left:-3.160992pt;}
._2_c01071{margin-left:-1.727059pt;}
._5_c01071{width:28.103548pt;}
._6_c01071{width:33.209670pt;}
._1_c01071{width:37.306720pt;}
._0_c01071{width:39.274701pt;}
.fse_c01071{font-size:20.592000pt;}
.fs14_c01071{font-size:29.920000pt;}
.fs1_c01071{font-size:35.024000pt;}
.fsb_c01071{font-size:35.904000pt;}
.fs12_c01071{font-size:38.896000pt;}
.fs10_c01071{font-size:42.416000pt;}
.fs4_c01071{font-size:45.619376pt;}
.fsf_c01071{font-size:47.872176pt;}
.fs6_c01071{font-size:48.153776pt;}
.fs11_c01071{font-size:53.222576pt;}
.fsc_c01071{font-size:53.504000pt;}
.fs7_c01071{font-size:54.489776pt;}
.fs13_c01071{font-size:57.024176pt;}
.fs5_c01071{font-size:58.960000pt;}
.fsd_c01071{font-size:59.136000pt;}
.fs8_c01071{font-size:59.488000pt;}
.fs2_c01071{font-size:60.896000pt;}
.fs3_c01071{font-size:66.528000pt;}
.fs0_c01071{font-size:67.232176pt;}
.fs9_c01071{font-size:67.936000pt;}
.fsa_c01071{font-size:74.272176pt;}
.fs15_c01071{font-size:90.112176pt;}
.y0_c01071{bottom:0.000000pt;}
.y1d_c01071{bottom:41.101307pt;}
.y1_c01071{bottom:68.000000pt;}
.y1c_c01071{bottom:108.900907pt;}
.y1b_c01071{bottom:135.195307pt;}
.y1a_c01071{bottom:138.042107pt;}
.y19_c01071{bottom:168.454907pt;}
.y18_c01071{bottom:199.505707pt;}
.y17_c01071{bottom:228.330107pt;}
.y16_c01071{bottom:256.846507pt;}
.y15_c01071{bottom:285.358507pt;}
.y14_c01071{bottom:298.976507pt;}
.y13_c01071{bottom:314.499707pt;}
.y12_c01071{bottom:343.332907pt;}
.y11_c01071{bottom:371.844907pt;}
.y10_c01071{bottom:399.406507pt;}
.yf_c01071{bottom:456.109307pt;}
.ye_c01071{bottom:484.625707pt;}
.yd_c01071{bottom:512.499707pt;}
.yc_c01071{bottom:541.962107pt;}
.yb_c01071{bottom:570.161707pt;}
.ya_c01071{bottom:598.990507pt;}
.y9_c01071{bottom:627.814907pt;}
.y8_c01071{bottom:656.014507pt;}
.y7_c01071{bottom:684.843307pt;}
.y6_c01071{bottom:741.550507pt;}
.y5_c01071{bottom:769.428907pt;}
.y4_c01071{bottom:795.085307pt;}
.y3_c01071{bottom:797.936507pt;}
.y2_c01071{bottom:826.452907pt;}
.y1e_c01071{bottom:982.947707pt;}
.h10_c01071{height:21.476813pt;}
.h16_c01071{height:29.364844pt;}
.h6_c01071{height:30.382504pt;}
.h8_c01071{height:32.070415pt;}
.h3_c01071{height:34.374141pt;}
.h13_c01071{height:35.446236pt;}
.h9_c01071{height:36.290191pt;}
.hd_c01071{height:37.446750pt;}
.h15_c01071{height:37.978101pt;}
.h14_c01071{height:38.174297pt;}
.h12_c01071{height:44.238563pt;}
.h11_c01071{height:49.929184pt;}
.he_c01071{height:52.511250pt;}
.ha_c01071{height:58.384219pt;}
.h4_c01071{height:59.766094pt;}
.h7_c01071{height:61.493438pt;}
.hf_c01071{height:61.677000pt;}
.h5_c01071{height:65.293594pt;}
.h2_c01071{height:65.984704pt;}
.hb_c01071{height:66.675469pt;}
.hc_c01071{height:72.894079pt;}
.h17_c01071{height:93.984184pt;}
.h1_c01071{height:986.666667pt;}
.h0_c01071{height:1122.666667pt;}
.w1_c01071{width:689.333333pt;}
.w0_c01071{width:793.333333pt;}
.x0_c01071{left:0.000000pt;}
.x1_c01071{left:52.000000pt;}
.x83_c01071{left:71.215453pt;}
.x1c_c01071{left:72.174653pt;}
.x2_c01071{left:73.824653pt;}
.x55_c01071{left:101.214653pt;}
.x67_c01071{left:111.523853pt;}
.xc_c01071{left:112.879053pt;}
.x25_c01071{left:120.891453pt;}
.x14_c01071{left:123.016653pt;}
.x41_c01071{left:130.778253pt;}
.x33_c01071{left:132.516253pt;}
.x71_c01071{left:139.701453pt;}
.x4e_c01071{left:141.703453pt;}
.x26_c01071{left:151.066653pt;}
.x15_c01071{left:152.074253pt;}
.x68_c01071{left:159.334253pt;}
.x1d_c01071{left:161.169053pt;}
.x73_c01071{left:169.155053pt;}
.x60_c01071{left:170.343053pt;}
.x3_c01071{left:171.451853pt;}
.x1e_c01071{left:181.607053pt;}
.x69_c01071{left:189.711853pt;}
.x3b_c01071{left:190.662253pt;}
.x61_c01071{left:198.899053pt;}
.x4_c01071{left:200.201453pt;}
.x74_c01071{left:210.431453pt;}
.xd_c01071{left:212.011053pt;}
.x78_c01071{left:218.531853pt;}
.x34_c01071{left:219.948653pt;}
.x27_c01071{left:221.198253pt;}
.x3c_c01071{left:228.572653pt;}
.x16_c01071{left:230.592253pt;}
.x2e_c01071{left:231.683453pt;}
.x6d_c01071{left:240.184253pt;}
.x7e_c01071{left:241.275453pt;}
.x62_c01071{left:249.402253pt;}
.x48_c01071{left:250.647453pt;}
.x17_c01071{left:251.562653pt;}
.x56_c01071{left:259.104253pt;}
.xe_c01071{left:260.507853pt;}
.x5b_c01071{left:269.699453pt;}
.x1f_c01071{left:271.006253pt;}
.x58_c01071{left:278.451053pt;}
.x57_c01071{left:279.744653pt;}
.x3d_c01071{left:288.153053pt;}
.x28_c01071{left:289.508253pt;}
.x42_c01071{left:298.101453pt;}
.x79_c01071{left:299.403853pt;}
.x43_c01071{left:302.215453pt;}
.x44_c01071{left:304.437453pt;}
.x49_c01071{left:309.607453pt;}
.x75_c01071{left:317.377853pt;}
.x59_c01071{left:319.142253pt;}
.x5_c01071{left:320.097053pt;}
.x35_c01071{left:328.188653pt;}
.x18_c01071{left:329.482253pt;}
.xf_c01071{left:332.210253pt;}
.x4a_c01071{left:339.338253pt;}
.x6_c01071{left:349.203053pt;}
.x10_c01071{left:350.171053pt;}
.x5c_c01071{left:357.334253pt;}
.x6a_c01071{left:358.443053pt;}
.x45_c01071{left:359.560653pt;}
.x3e_c01071{left:368.501453pt;}
.x29_c01071{left:369.812653pt;}
.x7c_c01071{left:377.081453pt;}
.x20_c01071{left:378.507053pt;}
.x5a_c01071{left:388.094653pt;}
.x7_c01071{left:389.427853pt;}
.x7a_c01071{left:397.515053pt;}
.x36_c01071{left:398.980253pt;}
.x63_c01071{left:406.755053pt;}
.x2f_c01071{left:408.484253pt;}
.x7d_c01071{left:416.215053pt;}
.x37_c01071{left:417.332653pt;}
.x19_c01071{left:427.237053pt;}
.x46_c01071{left:428.526253pt;}
.x7f_c01071{left:434.954653pt;}
.x6e_c01071{left:435.856653pt;}
.x30_c01071{left:437.286653pt;}
.x4b_c01071{left:447.446253pt;}
.x21_c01071{left:448.348253pt;}
.x38_c01071{left:456.756653pt;}
.x8_c01071{left:457.900653pt;}
.x80_c01071{left:465.811853pt;}
.x2a_c01071{left:467.057053pt;}
.x31_c01071{left:475.777853pt;}
.x22_c01071{left:476.719453pt;}
.x9_c01071{left:486.271853pt;}
.x11_c01071{left:487.618253pt;}
.x70_c01071{left:495.041053pt;}
.x64_c01071{left:505.442653pt;}
.x2b_c01071{left:506.657053pt;}
.x4c_c01071{left:508.733853pt;}
.x12_c01071{left:515.065453pt;}
.x4f_c01071{left:516.169853pt;}
.x81_c01071{left:524.428653pt;}
.x3f_c01071{left:534.359453pt;}
.x65_c01071{left:535.837853pt;}
.x5d_c01071{left:545.315453pt;}
.xa_c01071{left:546.252653pt;}
.x7b_c01071{left:552.931853pt;}
.x50_c01071{left:554.335453pt;}
.x23_c01071{left:555.413453pt;}
.x6f_c01071{left:563.549053pt;}
.x39_c01071{left:564.952653pt;}
.x51_c01071{left:567.011853pt;}
.x52_c01071{left:568.793853pt;}
.x47_c01071{left:573.224653pt;}
.x5e_c01071{left:575.433453pt;}
.x53_c01071{left:581.047853pt;}
.x6b_c01071{left:583.296253pt;}
.x1a_c01071{left:584.924253pt;}
.x3a_c01071{left:593.675853pt;}
.x5f_c01071{left:602.823453pt;}
.x76_c01071{left:603.866253pt;}
.x13_c01071{left:604.865053pt;}
.x72_c01071{left:612.459453pt;}
.x6c_c01071{left:613.423053pt;}
.x2c_c01071{left:614.399853pt;}
.xb_c01071{left:615.856253pt;}
.x84_c01071{left:620.163853pt;}
.x1b_c01071{left:624.401053pt;}
.x66_c01071{left:626.275453pt;}
.x77_c01071{left:632.285853pt;}
.x40_c01071{left:634.006253pt;}
.x82_c01071{left:642.247453pt;}
.x2d_c01071{left:643.224253pt;}
.x24_c01071{left:645.705853pt;}
.x32_c01071{left:653.190253pt;}
.x54_c01071{left:665.994253pt;}
.x4d_c01071{left:675.507053pt;}
.x85_c01071{left:691.320653pt;}
}





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

.ir_c01072:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01072{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01072;src:url('chunks/assets/font_d9af63e17546854c1b7833d4.woff2')format("woff");}.ff1_c01072{font-family:ff1_c01072;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01072;src:url('chunks/assets/font_d17d02425350701db4451222.woff2')format("woff");}.ff2_c01072{font-family:ff2_c01072;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01072;src:url('chunks/assets/font_6d9a4b81d3d139a094a78c3a.woff2')format("woff");}.ff3_c01072{font-family:ff3_c01072;line-height:0.666000;font-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_c01072{transform:matrix(0.177907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177907,0.000000,0.000000,0.250000,0,0);}
.m65_c01072{transform:matrix(0.181063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181063,0.000000,0.000000,0.250000,0,0);}
.m42_c01072{transform:matrix(0.185811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185811,0.000000,0.000000,0.250000,0,0);}
.m36_c01072{transform:matrix(0.187805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187805,0.000000,0.000000,0.250000,0,0);}
.m4_c01072{transform:matrix(0.241687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241687,0.000000,0.000000,0.250000,0,0);}
.m60_c01072{transform:matrix(0.248969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248969,0.000000,0.000000,0.250000,0,0);}
.m5_c01072{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0_c01072{transform:matrix(0.250784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250784,0.000000,0.000000,0.250000,0,0);}
.m86_c01072{transform:matrix(0.251504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251504,0.000000,0.000000,0.250000,0,0);}
.m7b_c01072{transform:matrix(0.251850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251850,0.000000,0.000000,0.250000,0,0);}
.m7_c01072{transform:matrix(0.255459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255459,0.000000,0.000000,0.250000,0,0);}
.mc_c01072{transform:matrix(0.255686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255686,0.000000,0.000000,0.250000,0,0);}
.m56_c01072{transform:matrix(0.256914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256914,0.000000,0.000000,0.250000,0,0);}
.m13_c01072{transform:matrix(0.257310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257310,0.000000,0.000000,0.250000,0,0);}
.m5e_c01072{transform:matrix(0.258559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258559,0.000000,0.000000,0.250000,0,0);}
.m6c_c01072{transform:matrix(0.258871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258871,0.000000,0.000000,0.250000,0,0);}
.m10_c01072{transform:matrix(0.260021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260021,0.000000,0.000000,0.250000,0,0);}
.m8c_c01072{transform:matrix(0.260746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260746,0.000000,0.000000,0.250000,0,0);}
.m61_c01072{transform:matrix(0.260931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260931,0.000000,0.000000,0.250000,0,0);}
.mf_c01072{transform:matrix(0.262894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262894,0.000000,0.000000,0.250000,0,0);}
.m3e_c01072{transform:matrix(0.263564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263564,0.000000,0.000000,0.250000,0,0);}
.m9b_c01072{transform:matrix(0.263842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263842,0.000000,0.000000,0.250000,0,0);}
.m4e_c01072{transform:matrix(0.264583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264583,0.000000,0.000000,0.250000,0,0);}
.m81_c01072{transform:matrix(0.266492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266492,0.000000,0.000000,0.250000,0,0);}
.m28_c01072{transform:matrix(0.267506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267506,0.000000,0.000000,0.250000,0,0);}
.m54_c01072{transform:matrix(0.268997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268997,0.000000,0.000000,0.250000,0,0);}
.m80_c01072{transform:matrix(0.269140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269140,0.000000,0.000000,0.250000,0,0);}
.m35_c01072{transform:matrix(0.269481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269481,0.000000,0.000000,0.250000,0,0);}
.m8f_c01072{transform:matrix(0.271514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271514,0.000000,0.000000,0.250000,0,0);}
.m43_c01072{transform:matrix(0.271611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271611,0.000000,0.000000,0.250000,0,0);}
.m7d_c01072{transform:matrix(0.271903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271903,0.000000,0.000000,0.250000,0,0);}
.m2f_c01072{transform:matrix(0.272118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272118,0.000000,0.000000,0.250000,0,0);}
.m46_c01072{transform:matrix(0.273758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273758,0.000000,0.000000,0.250000,0,0);}
.m2b_c01072{transform:matrix(0.274607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274607,0.000000,0.000000,0.250000,0,0);}
.m92_c01072{transform:matrix(0.275016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275016,0.000000,0.000000,0.250000,0,0);}
.md_c01072{transform:matrix(0.275099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275099,0.000000,0.000000,0.250000,0,0);}
.m4b_c01072{transform:matrix(0.275133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275133,0.000000,0.000000,0.250000,0,0);}
.m64_c01072{transform:matrix(0.275998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275998,0.000000,0.000000,0.250000,0,0);}
.m9f_c01072{transform:matrix(0.276733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276733,0.000000,0.000000,0.250000,0,0);}
.m83_c01072{transform:matrix(0.276946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276946,0.000000,0.000000,0.250000,0,0);}
.m1c_c01072{transform:matrix(0.277493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277493,0.000000,0.000000,0.250000,0,0);}
.m39_c01072{transform:matrix(0.277684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277684,0.000000,0.000000,0.250000,0,0);}
.m9e_c01072{transform:matrix(0.277944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277944,0.000000,0.000000,0.250000,0,0);}
.mb_c01072{transform:matrix(0.278382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278382,0.000000,0.000000,0.250000,0,0);}
.m5a_c01072{transform:matrix(0.279006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279006,0.000000,0.000000,0.250000,0,0);}
.m63_c01072{transform:matrix(0.279340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279340,0.000000,0.000000,0.250000,0,0);}
.m62_c01072{transform:matrix(0.280823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280823,0.000000,0.000000,0.250000,0,0);}
.m19_c01072{transform:matrix(0.281016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281016,0.000000,0.000000,0.250000,0,0);}
.m84_c01072{transform:matrix(0.282143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282143,0.000000,0.000000,0.250000,0,0);}
.m30_c01072{transform:matrix(0.282211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282211,0.000000,0.000000,0.250000,0,0);}
.m76_c01072{transform:matrix(0.283051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283051,0.000000,0.000000,0.250000,0,0);}
.m1b_c01072{transform:matrix(0.283243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283243,0.000000,0.000000,0.250000,0,0);}
.m96_c01072{transform:matrix(0.283566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283566,0.000000,0.000000,0.250000,0,0);}
.m8e_c01072{transform:matrix(0.284615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284615,0.000000,0.000000,0.250000,0,0);}
.m11_c01072{transform:matrix(0.285205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285205,0.000000,0.000000,0.250000,0,0);}
.m7f_c01072{transform:matrix(0.285734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285734,0.000000,0.000000,0.250000,0,0);}
.m9_c01072{transform:matrix(0.286320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286320,0.000000,0.000000,0.250000,0,0);}
.m48_c01072{transform:matrix(0.286552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286552,0.000000,0.000000,0.250000,0,0);}
.m8a_c01072{transform:matrix(0.287357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287357,0.000000,0.000000,0.250000,0,0);}
.m6_c01072{transform:matrix(0.287762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287762,0.000000,0.000000,0.250000,0,0);}
.m9c_c01072{transform:matrix(0.288115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288115,0.000000,0.000000,0.250000,0,0);}
.m82_c01072{transform:matrix(0.288163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288163,0.000000,0.000000,0.250000,0,0);}
.m7e_c01072{transform:matrix(0.288689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288689,0.000000,0.000000,0.250000,0,0);}
.m4d_c01072{transform:matrix(0.288915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288915,0.000000,0.000000,0.250000,0,0);}
.m98_c01072{transform:matrix(0.289398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289398,0.000000,0.000000,0.250000,0,0);}
.m6b_c01072{transform:matrix(0.291432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291432,0.000000,0.000000,0.250000,0,0);}
.m12_c01072{transform:matrix(0.291704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291704,0.000000,0.000000,0.250000,0,0);}
.m51_c01072{transform:matrix(0.292219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292219,0.000000,0.000000,0.250000,0,0);}
.m78_c01072{transform:matrix(0.292247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292247,0.000000,0.000000,0.250000,0,0);}
.me_c01072{transform:matrix(0.292287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292287,0.000000,0.000000,0.250000,0,0);}
.m44_c01072{transform:matrix(0.293112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293112,0.000000,0.000000,0.250000,0,0);}
.m8d_c01072{transform:matrix(0.293401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293401,0.000000,0.000000,0.250000,0,0);}
.m40_c01072{transform:matrix(0.294800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294800,0.000000,0.000000,0.250000,0,0);}
.m73_c01072{transform:matrix(0.294996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294996,0.000000,0.000000,0.250000,0,0);}
.m57_c01072{transform:matrix(0.295129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295129,0.000000,0.000000,0.250000,0,0);}
.m15_c01072{transform:matrix(0.295785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295785,0.000000,0.000000,0.250000,0,0);}
.m18_c01072{transform:matrix(0.296106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296106,0.000000,0.000000,0.250000,0,0);}
.m6d_c01072{transform:matrix(0.296122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296122,0.000000,0.000000,0.250000,0,0);}
.m6a_c01072{transform:matrix(0.296514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296514,0.000000,0.000000,0.250000,0,0);}
.m52_c01072{transform:matrix(0.297411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297411,0.000000,0.000000,0.250000,0,0);}
.m16_c01072{transform:matrix(0.297530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297530,0.000000,0.000000,0.250000,0,0);}
.m22_c01072{transform:matrix(0.297599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297599,0.000000,0.000000,0.250000,0,0);}
.ma_c01072{transform:matrix(0.297883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297883,0.000000,0.000000,0.250000,0,0);}
.m8_c01072{transform:matrix(0.298002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298002,0.000000,0.000000,0.250000,0,0);}
.m87_c01072{transform:matrix(0.298615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298615,0.000000,0.000000,0.250000,0,0);}
.m21_c01072{transform:matrix(0.299253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299253,0.000000,0.000000,0.250000,0,0);}
.m1e_c01072{transform:matrix(0.299880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299880,0.000000,0.000000,0.250000,0,0);}
.m77_c01072{transform:matrix(0.300327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300327,0.000000,0.000000,0.250000,0,0);}
.m7a_c01072{transform:matrix(0.300580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300580,0.000000,0.000000,0.250000,0,0);}
.m66_c01072{transform:matrix(0.301666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301666,0.000000,0.000000,0.250000,0,0);}
.m26_c01072{transform:matrix(0.302958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302958,0.000000,0.000000,0.250000,0,0);}
.m71_c01072{transform:matrix(0.303229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303229,0.000000,0.000000,0.250000,0,0);}
.m2a_c01072{transform:matrix(0.303767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303767,0.000000,0.000000,0.250000,0,0);}
.m27_c01072{transform:matrix(0.304140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304140,0.000000,0.000000,0.250000,0,0);}
.m3a_c01072{transform:matrix(0.304257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304257,0.000000,0.000000,0.250000,0,0);}
.m90_c01072{transform:matrix(0.304731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304731,0.000000,0.000000,0.250000,0,0);}
.m47_c01072{transform:matrix(0.304902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304902,0.000000,0.000000,0.250000,0,0);}
.m88_c01072{transform:matrix(0.305003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305003,0.000000,0.000000,0.250000,0,0);}
.m91_c01072{transform:matrix(0.305197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305197,0.000000,0.000000,0.250000,0,0);}
.m94_c01072{transform:matrix(0.305269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305269,0.000000,0.000000,0.250000,0,0);}
.m89_c01072{transform:matrix(0.305293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305293,0.000000,0.000000,0.250000,0,0);}
.m59_c01072{transform:matrix(0.305487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305487,0.000000,0.000000,0.250000,0,0);}
.m2e_c01072{transform:matrix(0.305577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305577,0.000000,0.000000,0.250000,0,0);}
.m50_c01072{transform:matrix(0.305849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305849,0.000000,0.000000,0.250000,0,0);}
.m32_c01072{transform:matrix(0.306437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306437,0.000000,0.000000,0.250000,0,0);}
.m2d_c01072{transform:matrix(0.306493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306493,0.000000,0.000000,0.250000,0,0);}
.m97_c01072{transform:matrix(0.306575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306575,0.000000,0.000000,0.250000,0,0);}
.m9d_c01072{transform:matrix(0.306849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306849,0.000000,0.000000,0.250000,0,0);}
.m2c_c01072{transform:matrix(0.308160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308160,0.000000,0.000000,0.250000,0,0);}
.m34_c01072{transform:matrix(0.308602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308602,0.000000,0.000000,0.250000,0,0);}
.m9a_c01072{transform:matrix(0.309120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309120,0.000000,0.000000,0.250000,0,0);}
.m49_c01072{transform:matrix(0.309394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309394,0.000000,0.000000,0.250000,0,0);}
.m6f_c01072{transform:matrix(0.309926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309926,0.000000,0.000000,0.250000,0,0);}
.m58_c01072{transform:matrix(0.310428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310428,0.000000,0.000000,0.250000,0,0);}
.m3c_c01072{transform:matrix(0.310671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310671,0.000000,0.000000,0.250000,0,0);}
.m3b_c01072{transform:matrix(0.311117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311117,0.000000,0.000000,0.250000,0,0);}
.m5b_c01072{transform:matrix(0.311579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311579,0.000000,0.000000,0.250000,0,0);}
.m5c_c01072{transform:matrix(0.311581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311581,0.000000,0.000000,0.250000,0,0);}
.m75_c01072{transform:matrix(0.313096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313096,0.000000,0.000000,0.250000,0,0);}
.m2_c01072{transform:matrix(0.313451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313451,0.000000,0.000000,0.250000,0,0);}
.m8b_c01072{transform:matrix(0.314744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314744,0.000000,0.000000,0.250000,0,0);}
.m14_c01072{transform:matrix(0.314980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314980,0.000000,0.000000,0.250000,0,0);}
.m31_c01072{transform:matrix(0.315247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315247,0.000000,0.000000,0.250000,0,0);}
.m3d_c01072{transform:matrix(0.315443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315443,0.000000,0.000000,0.250000,0,0);}
.m74_c01072{transform:matrix(0.318157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318157,0.000000,0.000000,0.250000,0,0);}
.m70_c01072{transform:matrix(0.319676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319676,0.000000,0.000000,0.250000,0,0);}
.m7c_c01072{transform:matrix(0.320022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320022,0.000000,0.000000,0.250000,0,0);}
.m93_c01072{transform:matrix(0.321135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321135,0.000000,0.000000,0.250000,0,0);}
.m45_c01072{transform:matrix(0.322034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322034,0.000000,0.000000,0.250000,0,0);}
.m3f_c01072{transform:matrix(0.323086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323086,0.000000,0.000000,0.250000,0,0);}
.m1_c01072{transform:matrix(0.325009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325009,0.000000,0.000000,0.250000,0,0);}
.m1a_c01072{transform:matrix(0.325823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325823,0.000000,0.000000,0.250000,0,0);}
.m68_c01072{transform:matrix(0.325826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325826,0.000000,0.000000,0.250000,0,0);}
.m79_c01072{transform:matrix(0.326587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326587,0.000000,0.000000,0.250000,0,0);}
.m20_c01072{transform:matrix(0.327151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327151,0.000000,0.000000,0.250000,0,0);}
.m24_c01072{transform:matrix(0.327433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327433,0.000000,0.000000,0.250000,0,0);}
.m1d_c01072{transform:matrix(0.328353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328353,0.000000,0.000000,0.250000,0,0);}
.m5f_c01072{transform:matrix(0.328516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328516,0.000000,0.000000,0.250000,0,0);}
.m99_c01072{transform:matrix(0.329006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329006,0.000000,0.000000,0.250000,0,0);}
.m23_c01072{transform:matrix(0.329069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329069,0.000000,0.000000,0.250000,0,0);}
.m4c_c01072{transform:matrix(0.329181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329181,0.000000,0.000000,0.250000,0,0);}
.m85_c01072{transform:matrix(0.329742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329742,0.000000,0.000000,0.250000,0,0);}
.m72_c01072{transform:matrix(0.330688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330688,0.000000,0.000000,0.250000,0,0);}
.m41_c01072{transform:matrix(0.332212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332212,0.000000,0.000000,0.250000,0,0);}
.m95_c01072{transform:matrix(0.333188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333188,0.000000,0.000000,0.250000,0,0);}
.m4a_c01072{transform:matrix(0.335052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335052,0.000000,0.000000,0.250000,0,0);}
.m53_c01072{transform:matrix(0.338421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338421,0.000000,0.000000,0.250000,0,0);}
.m37_c01072{transform:matrix(0.339868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339868,0.000000,0.000000,0.250000,0,0);}
.m67_c01072{transform:matrix(0.341035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341035,0.000000,0.000000,0.250000,0,0);}
.m4f_c01072{transform:matrix(0.342181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342181,0.000000,0.000000,0.250000,0,0);}
.m33_c01072{transform:matrix(0.345877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345877,0.000000,0.000000,0.250000,0,0);}
.m29_c01072{transform:matrix(0.354472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354472,0.000000,0.000000,0.250000,0,0);}
.m1f_c01072{transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);}
.m17_c01072{transform:matrix(0.368736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368736,0.000000,0.000000,0.250000,0,0);}
.m38_c01072{transform:matrix(0.373079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373079,0.000000,0.000000,0.250000,0,0);}
.m25_c01072{transform:matrix(0.374684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374684,0.000000,0.000000,0.250000,0,0);}
.m55_c01072{transform:matrix(0.380631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380631,0.000000,0.000000,0.250000,0,0);}
.m69_c01072{transform:matrix(0.381460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381460,0.000000,0.000000,0.250000,0,0);}
.m3_c01072{transform:matrix(0.386579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386579,0.000000,0.000000,0.250000,0,0);}
.m6e_c01072{transform:matrix(0.392526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392526,0.000000,0.000000,0.250000,0,0);}
.v0_c01072{vertical-align:0.000000px;}
.v1_c01072{vertical-align:12.830400px;}
.ls5_c01072{letter-spacing:-2.778930px;}
.lsb_c01072{letter-spacing:-2.501037px;}
.ls6_c01072{letter-spacing:-2.151686px;}
.ls7_c01072{letter-spacing:0.000000px;}
.ls2_c01072{letter-spacing:0.071458px;}
.ls12_c01072{letter-spacing:1.724580px;}
.ls15_c01072{letter-spacing:1.834094px;}
.ls8_c01072{letter-spacing:1.881733px;}
.ls0_c01072{letter-spacing:2.580435px;}
.lse_c01072{letter-spacing:2.588375px;}
.ls11_c01072{letter-spacing:2.653200px;}
.ls13_c01072{letter-spacing:2.811600px;}
.ls16_c01072{letter-spacing:2.866268px;}
.lsc_c01072{letter-spacing:3.302957px;}
.ls1_c01072{letter-spacing:3.374415px;}
.ls9_c01072{letter-spacing:3.524400px;}
.ls17_c01072{letter-spacing:3.643200px;}
.lsf_c01072{letter-spacing:3.961960px;}
.ls4_c01072{letter-spacing:3.969900px;}
.ls14_c01072{letter-spacing:4.059000px;}
.ls3_c01072{letter-spacing:4.316400px;}
.lsd_c01072{letter-spacing:52.747398px;}
.lsa_c01072{letter-spacing:58.449798px;}
.ls10_c01072{letter-spacing:61.300998px;}
.sc__c01072{text-shadow:none;}
.sc0_c01072{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01072{-webkit-text-stroke:0px transparent;}
.sc0_c01072{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01072{word-spacing:0.000000px;}
._3_c01072{width:27.280935px;}
._1_c01072{width:41.798592px;}
._0_c01072{width:54.438120px;}
._2_c01072{width:80.122779px;}
._4_c01072{width:83.832349px;}
.fc0_c01072{color:transparent;}
.fs5_c01072{font-size:27.720000px;}
.fs3_c01072{font-size:36.630000px;}
.fs9_c01072{font-size:38.412000px;}
.fs8_c01072{font-size:52.747398px;}
.fsb_c01072{font-size:53.064000px;}
.fsc_c01072{font-size:56.232000px;}
.fs7_c01072{font-size:58.449798px;}
.fsa_c01072{font-size:61.300998px;}
.fs4_c01072{font-size:69.696198px;}
.fse_c01072{font-size:70.092198px;}
.fs2_c01072{font-size:70.488000px;}
.fsf_c01072{font-size:72.864000px;}
.fs6_c01072{font-size:74.844000px;}
.fs1_c01072{font-size:79.398000px;}
.fsd_c01072{font-size:81.180000px;}
.fs0_c01072{font-size:86.328000px;}
.y0_c01072{bottom:0.000000px;}
.y1_c01072{bottom:76.500000px;}
.y1b_c01072{bottom:116.454735px;}
.y1a_c01072{bottom:149.599935px;}
.y19_c01072{bottom:186.309135px;}
.y18_c01072{bottom:220.523535px;}
.y17_c01072{bottom:252.243135px;}
.y16_c01072{bottom:285.031935px;}
.y15_c01072{bottom:317.102985px;}
.y14_c01072{bottom:349.540335px;}
.y13_c01072{bottom:412.974585px;}
.y12_c01072{bottom:445.411935px;}
.y11_c01072{bottom:477.482985px;}
.y10_c01072{bottom:509.920335px;}
.yf_c01072{bottom:538.075935px;}
.ye_c01072{bottom:541.283535px;}
.yd_c01072{bottom:574.072335px;}
.yc_c01072{bottom:606.148335px;}
.yb_c01072{bottom:703.089135px;}
.ya_c01072{bottom:735.165135px;}
.y9_c01072{bottom:767.592585px;}
.y8_c01072{bottom:792.189135px;}
.y7_c01072{bottom:798.955785px;}
.y6_c01072{bottom:830.323935px;}
.y5_c01072{bottom:862.043535px;}
.y4_c01072{bottom:894.119535px;}
.y3_c01072{bottom:926.908335px;}
.y2_c01072{bottom:1076.234985px;}
.h6_c01072{height:28.911094px;}
.h9_c01072{height:35.129767px;}
.h8_c01072{height:38.927565px;}
.hb_c01072{height:40.826465px;}
.hc_c01072{height:52.079414px;}
.hd_c01072{height:55.188633px;}
.h4_c01072{height:69.180117px;}
.h10_c01072{height:71.512031px;}
.h5_c01072{height:72.690957px;}
.hf_c01072{height:73.103972px;}
.h7_c01072{height:73.455293px;}
.h3_c01072{height:77.924795px;}
.he_c01072{height:79.673730px;}
.h2_c01072{height:84.726211px;}
.ha_c01072{height:86.285693px;}
.h1_c01072{height:1110.000000px;}
.h0_c01072{height:1263.000000px;}
.w1_c01072{width:775.500000px;}
.w0_c01072{width:892.500000px;}
.x0_c01072{left:0.000000px;}
.x1_c01072{left:58.500000px;}
.x5a_c01072{left:82.622085px;}
.x16_c01072{left:84.062535px;}
.xb_c01072{left:86.002935px;}
.x17_c01072{left:117.885885px;}
.x57_c01072{left:126.825585px;}
.x2b_c01072{left:137.849235px;}
.x3_c01072{left:140.012385px;}
.x2c_c01072{left:149.640135px;}
.x38_c01072{left:150.897435px;}
.x41_c01072{left:160.673685px;}
.x51_c01072{left:171.009285px;}
.x34_c01072{left:174.058485px;}
.x3c_c01072{left:182.691285px;}
.xc_c01072{left:184.181235px;}
.x35_c01072{left:193.863435px;}
.x2d_c01072{left:216.262185px;}
.x5f_c01072{left:217.524435px;}
.x4_c01072{left:228.315435px;}
.x18_c01072{left:238.730235px;}
.x24_c01072{left:251.674485px;}
.x55_c01072{left:261.000285px;}
.x1d_c01072{left:262.079385px;}
.x4b_c01072{left:263.405985px;}
.x58_c01072{left:271.157685px;}
.x2e_c01072{left:272.306085px;}
.x42_c01072{left:273.459435px;}
.xd_c01072{left:283.270335px;}
.x36_c01072{left:295.486935px;}
.x5_c01072{left:305.862135px;}
.xe_c01072{left:307.703535px;}
.x60_c01072{left:316.618485px;}
.x39_c01072{left:317.969835px;}
.x2f_c01072{left:327.815385px;}
.x6_c01072{left:339.299385px;}
.x61_c01072{left:348.184635px;}
.x3a_c01072{left:349.253835px;}
.x44_c01072{left:350.476485px;}
.x1e_c01072{left:362.237685px;}
.x4c_c01072{left:369.593385px;}
.x19_c01072{left:372.934635px;}
.x1f_c01072{left:383.557335px;}
.xf_c01072{left:385.294785px;}
.x5b_c01072{left:393.887985px;}
.x25_c01072{left:394.972035px;}
.x54_c01072{left:404.461185px;}
.x1a_c01072{left:406.381785px;}
.x10_c01072{left:416.935185px;}
.x5d_c01072{left:427.043085px;}
.x7_c01072{left:428.889435px;}
.x4d_c01072{left:439.452735px;}
.x1b_c01072{left:440.606085px;}
.x3b_c01072{left:449.714085px;}
.x5e_c01072{left:459.693285px;}
.x4f_c01072{left:461.193135px;}
.x48_c01072{left:462.232635px;}
.x3d_c01072{left:471.499035px;}
.x37_c01072{left:473.677035px;}
.x56_c01072{left:482.507835px;}
.x8_c01072{left:483.779985px;}
.x20_c01072{left:485.086785px;}
.x30_c01072{left:494.467035px;}
.x3e_c01072{left:505.149135px;}
.x11_c01072{left:506.559885px;}
.x62_c01072{left:515.489685px;}
.x21_c01072{left:517.573635px;}
.x26_c01072{left:519.365535px;}
.x49_c01072{left:525.637185px;}
.x1c_c01072{left:527.914185px;}
.x12_c01072{left:538.106235px;}
.x52_c01072{left:548.798235px;}
.x50_c01072{left:549.996135px;}
.x27_c01072{left:562.390935px;}
.x3f_c01072{left:571.677135px;}
.x59_c01072{left:582.116685px;}
.x13_c01072{left:583.210635px;}
.x31_c01072{left:592.976985px;}
.x5c_c01072{left:603.668985px;}
.x22_c01072{left:605.950935px;}
.x14_c01072{left:614.771835px;}
.x9_c01072{left:616.360785px;}
.x63_c01072{left:625.983585px;}
.x45_c01072{left:629.433735px;}
.x23_c01072{left:636.868635px;}
.x28_c01072{left:638.700135px;}
.x43_c01072{left:647.882385px;}
.xa_c01072{left:648.946635px;}
.x53_c01072{left:658.940685px;}
.x15_c01072{left:661.232535px;}
.x46_c01072{left:670.825635px;}
.x32_c01072{left:681.393885px;}
.x4e_c01072{left:683.066985px;}
.x29_c01072{left:692.031435px;}
.x2_c01072{left:696.130035px;}
.x2a_c01072{left:700.916685px;}
.x47_c01072{left:703.480785px;}
.x33_c01072{left:704.866785px;}
.x40_c01072{left:716.058735px;}
.x4a_c01072{left:728.047635px;}
@media print{
.v0_c01072{vertical-align:0.000000pt;}
.v1_c01072{vertical-align:11.404800pt;}
.ls5_c01072{letter-spacing:-2.470160pt;}
.lsb_c01072{letter-spacing:-2.223144pt;}
.ls6_c01072{letter-spacing:-1.912610pt;}
.ls7_c01072{letter-spacing:0.000000pt;}
.ls2_c01072{letter-spacing:0.063518pt;}
.ls12_c01072{letter-spacing:1.532960pt;}
.ls15_c01072{letter-spacing:1.630306pt;}
.ls8_c01072{letter-spacing:1.672651pt;}
.ls0_c01072{letter-spacing:2.293720pt;}
.lse_c01072{letter-spacing:2.300778pt;}
.ls11_c01072{letter-spacing:2.358400pt;}
.ls13_c01072{letter-spacing:2.499200pt;}
.ls16_c01072{letter-spacing:2.547794pt;}
.lsc_c01072{letter-spacing:2.935962pt;}
.ls1_c01072{letter-spacing:2.999480pt;}
.ls9_c01072{letter-spacing:3.132800pt;}
.ls17_c01072{letter-spacing:3.238400pt;}
.lsf_c01072{letter-spacing:3.521742pt;}
.ls4_c01072{letter-spacing:3.528800pt;}
.ls14_c01072{letter-spacing:3.608000pt;}
.ls3_c01072{letter-spacing:3.836800pt;}
.lsd_c01072{letter-spacing:46.886576pt;}
.lsa_c01072{letter-spacing:51.955376pt;}
.ls10_c01072{letter-spacing:54.489776pt;}
.ws0_c01072{word-spacing:0.000000pt;}
._3_c01072{width:24.249720pt;}
._1_c01072{width:37.154304pt;}
._0_c01072{width:48.389440pt;}
._2_c01072{width:71.220248pt;}
._4_c01072{width:74.517643pt;}
.fs5_c01072{font-size:24.640000pt;}
.fs3_c01072{font-size:32.560000pt;}
.fs9_c01072{font-size:34.144000pt;}
.fs8_c01072{font-size:46.886576pt;}
.fsb_c01072{font-size:47.168000pt;}
.fsc_c01072{font-size:49.984000pt;}
.fs7_c01072{font-size:51.955376pt;}
.fsa_c01072{font-size:54.489776pt;}
.fs4_c01072{font-size:61.952176pt;}
.fse_c01072{font-size:62.304176pt;}
.fs2_c01072{font-size:62.656000pt;}
.fsf_c01072{font-size:64.768000pt;}
.fs6_c01072{font-size:66.528000pt;}
.fs1_c01072{font-size:70.576000pt;}
.fsd_c01072{font-size:72.160000pt;}
.fs0_c01072{font-size:76.736000pt;}
.y0_c01072{bottom:0.000000pt;}
.y1_c01072{bottom:68.000000pt;}
.y1b_c01072{bottom:103.515320pt;}
.y1a_c01072{bottom:132.977720pt;}
.y19_c01072{bottom:165.608120pt;}
.y18_c01072{bottom:196.020920pt;}
.y17_c01072{bottom:224.216120pt;}
.y16_c01072{bottom:253.361720pt;}
.y15_c01072{bottom:281.869320pt;}
.y14_c01072{bottom:310.702520pt;}
.y13_c01072{bottom:367.088520pt;}
.y12_c01072{bottom:395.921720pt;}
.y11_c01072{bottom:424.429320pt;}
.y10_c01072{bottom:453.262520pt;}
.yf_c01072{bottom:478.289720pt;}
.ye_c01072{bottom:481.140920pt;}
.yd_c01072{bottom:510.286520pt;}
.yc_c01072{bottom:538.798520pt;}
.yb_c01072{bottom:624.968120pt;}
.ya_c01072{bottom:653.480120pt;}
.y9_c01072{bottom:682.304520pt;}
.y8_c01072{bottom:704.168120pt;}
.y7_c01072{bottom:710.182920pt;}
.y6_c01072{bottom:738.065720pt;}
.y5_c01072{bottom:766.260920pt;}
.y4_c01072{bottom:794.772920pt;}
.y3_c01072{bottom:823.918520pt;}
.y2_c01072{bottom:956.653320pt;}
.h6_c01072{height:25.698750pt;}
.h9_c01072{height:31.226460pt;}
.h8_c01072{height:34.602280pt;}
.hb_c01072{height:36.290191pt;}
.hc_c01072{height:46.292813pt;}
.hd_c01072{height:49.056562pt;}
.h4_c01072{height:61.493438pt;}
.h10_c01072{height:63.566250pt;}
.h5_c01072{height:64.614184pt;}
.hf_c01072{height:64.981309pt;}
.h7_c01072{height:65.293594pt;}
.h3_c01072{height:69.266484pt;}
.he_c01072{height:70.821094pt;}
.h2_c01072{height:75.312188pt;}
.ha_c01072{height:76.698394pt;}
.h1_c01072{height:986.666667pt;}
.h0_c01072{height:1122.666667pt;}
.w1_c01072{width:689.333333pt;}
.w0_c01072{width:793.333333pt;}
.x0_c01072{left:0.000000pt;}
.x1_c01072{left:52.000000pt;}
.x5a_c01072{left:73.441853pt;}
.x16_c01072{left:74.722253pt;}
.xb_c01072{left:76.447053pt;}
.x17_c01072{left:104.787453pt;}
.x57_c01072{left:112.733853pt;}
.x2b_c01072{left:122.532653pt;}
.x3_c01072{left:124.455453pt;}
.x2c_c01072{left:133.013453pt;}
.x38_c01072{left:134.131053pt;}
.x41_c01072{left:142.821053pt;}
.x51_c01072{left:152.008253pt;}
.x34_c01072{left:154.718653pt;}
.x3c_c01072{left:162.392253pt;}
.xc_c01072{left:163.716653pt;}
.x35_c01072{left:172.323053pt;}
.x2d_c01072{left:192.233053pt;}
.x5f_c01072{left:193.355053pt;}
.x4_c01072{left:202.947053pt;}
.x18_c01072{left:212.204653pt;}
.x24_c01072{left:223.710653pt;}
.x55_c01072{left:232.000253pt;}
.x1d_c01072{left:232.959453pt;}
.x4b_c01072{left:234.138653pt;}
.x58_c01072{left:241.029053pt;}
.x2e_c01072{left:242.049853pt;}
.x42_c01072{left:243.075053pt;}
.xd_c01072{left:251.795853pt;}
.x36_c01072{left:262.655053pt;}
.x5_c01072{left:271.877453pt;}
.xe_c01072{left:273.514253pt;}
.x60_c01072{left:281.438653pt;}
.x39_c01072{left:282.639853pt;}
.x2f_c01072{left:291.391453pt;}
.x6_c01072{left:301.599453pt;}
.x61_c01072{left:309.497453pt;}
.x3a_c01072{left:310.447853pt;}
.x44_c01072{left:311.534653pt;}
.x1e_c01072{left:321.989053pt;}
.x4c_c01072{left:328.527453pt;}
.x19_c01072{left:331.497453pt;}
.x1f_c01072{left:340.939853pt;}
.xf_c01072{left:342.484253pt;}
.x5b_c01072{left:350.122653pt;}
.x25_c01072{left:351.086253pt;}
.x54_c01072{left:359.521053pt;}
.x1a_c01072{left:361.228253pt;}
.x10_c01072{left:370.609053pt;}
.x5d_c01072{left:379.593853pt;}
.x7_c01072{left:381.235053pt;}
.x4d_c01072{left:390.624653pt;}
.x1b_c01072{left:391.649853pt;}
.x3b_c01072{left:399.745853pt;}
.x5e_c01072{left:408.616253pt;}
.x4f_c01072{left:409.949453pt;}
.x48_c01072{left:410.873453pt;}
.x3d_c01072{left:419.110253pt;}
.x37_c01072{left:421.046253pt;}
.x56_c01072{left:428.895853pt;}
.x8_c01072{left:430.026653pt;}
.x20_c01072{left:431.188253pt;}
.x30_c01072{left:439.526253pt;}
.x3e_c01072{left:449.021453pt;}
.x11_c01072{left:450.275453pt;}
.x62_c01072{left:458.213053pt;}
.x21_c01072{left:460.065453pt;}
.x26_c01072{left:461.658253pt;}
.x49_c01072{left:467.233053pt;}
.x1c_c01072{left:469.257053pt;}
.x12_c01072{left:478.316653pt;}
.x52_c01072{left:487.820653pt;}
.x50_c01072{left:488.885453pt;}
.x27_c01072{left:499.903053pt;}
.x3f_c01072{left:508.157453pt;}
.x59_c01072{left:517.437053pt;}
.x13_c01072{left:518.409453pt;}
.x31_c01072{left:527.090653pt;}
.x5c_c01072{left:536.594653pt;}
.x22_c01072{left:538.623053pt;}
.x14_c01072{left:546.463853pt;}
.x9_c01072{left:547.876253pt;}
.x63_c01072{left:556.429853pt;}
.x45_c01072{left:559.496653pt;}
.x23_c01072{left:566.105453pt;}
.x28_c01072{left:567.733453pt;}
.x43_c01072{left:575.895453pt;}
.xa_c01072{left:576.841453pt;}
.x53_c01072{left:585.725053pt;}
.x15_c01072{left:587.762253pt;}
.x46_c01072{left:596.289453pt;}
.x32_c01072{left:605.683453pt;}
.x4e_c01072{left:607.170653pt;}
.x29_c01072{left:615.139053pt;}
.x2_c01072{left:618.782253pt;}
.x2a_c01072{left:623.037053pt;}
.x47_c01072{left:625.316253pt;}
.x33_c01072{left:626.548253pt;}
.x40_c01072{left:636.496653pt;}
.x4a_c01072{left:647.153453pt;}
}





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

.ir_c01073:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01073{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01073;src:url('chunks/assets/font_947115b60f0941f8c83debe8.woff2')format("woff");}.ff1_c01073{font-family:ff1_c01073;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01073;src:url('chunks/assets/font_4978931b2bb63df202eb079b.woff2')format("woff");}.ff2_c01073{font-family:ff2_c01073;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01073;src:url('chunks/assets/font_1c6d93edeef8e340c71fd2a9.woff2')format("woff");}.ff3_c01073{font-family:ff3_c01073;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m81_c01073{transform:matrix(0.139895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139895,0.000000,0.000000,0.250000,0,0);}
.m25_c01073{transform:matrix(0.146397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146397,0.000000,0.000000,0.250000,0,0);}
.mb3_c01073{transform:matrix(0.148282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148282,0.000000,0.000000,0.250000,0,0);}
.m84_c01073{transform:matrix(0.152027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152027,0.000000,0.000000,0.250000,0,0);}
.m87_c01073{transform:matrix(0.152336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152336,0.000000,0.000000,0.250000,0,0);}
.m2e_c01073{transform:matrix(0.182900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182900,0.000000,0.000000,0.250000,0,0);}
.ma1_c01073{transform:matrix(0.185540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185540,0.000000,0.000000,0.250000,0,0);}
.m18_c01073{transform:matrix(0.186607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186607,0.000000,0.000000,0.250000,0,0);}
.m9d_c01073{transform:matrix(0.192509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192509,0.000000,0.000000,0.250000,0,0);}
.m27_c01073{transform:matrix(0.203668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203668,0.000000,0.000000,0.250000,0,0);}
.m2b_c01073{transform:matrix(0.205518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205518,0.000000,0.000000,0.250000,0,0);}
.ma_c01073{transform:matrix(0.207528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207528,0.000000,0.000000,0.250000,0,0);}
.m73_c01073{transform:matrix(0.211428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211428,0.000000,0.000000,0.250000,0,0);}
.m7d_c01073{transform:matrix(0.224050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224050,0.000000,0.000000,0.250000,0,0);}
.m36_c01073{transform:matrix(0.245395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245395,0.000000,0.000000,0.250000,0,0);}
.m99_c01073{transform:matrix(0.246345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246345,0.000000,0.000000,0.250000,0,0);}
.m1_c01073{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m64_c01073{transform:matrix(0.250416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250416,0.000000,0.000000,0.250000,0,0);}
.m47_c01073{transform:matrix(0.250666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250666,0.000000,0.000000,0.250000,0,0);}
.m23_c01073{transform:matrix(0.251407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251407,0.000000,0.000000,0.250000,0,0);}
.m2a_c01073{transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);}
.m9a_c01073{transform:matrix(0.254446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254446,0.000000,0.000000,0.250000,0,0);}
.m61_c01073{transform:matrix(0.254597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254597,0.000000,0.000000,0.250000,0,0);}
.m72_c01073{transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);}
.m4b_c01073{transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);}
.m5_c01073{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m43_c01073{transform:matrix(0.258853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258853,0.000000,0.000000,0.250000,0,0);}
.m68_c01073{transform:matrix(0.258881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258881,0.000000,0.000000,0.250000,0,0);}
.m3e_c01073{transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259226,0.000000,0.000000,0.250000,0,0);}
.mb4_c01073{transform:matrix(0.259540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259540,0.000000,0.000000,0.250000,0,0);}
.m33_c01073{transform:matrix(0.259665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259665,0.000000,0.000000,0.250000,0,0);}
.m6a_c01073{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m5c_c01073{transform:matrix(0.261735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261735,0.000000,0.000000,0.250000,0,0);}
.m88_c01073{transform:matrix(0.262580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262580,0.000000,0.000000,0.250000,0,0);}
.m1b_c01073{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m85_c01073{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m48_c01073{transform:matrix(0.265265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265265,0.000000,0.000000,0.250000,0,0);}
.m40_c01073{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m7c_c01073{transform:matrix(0.266295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266295,0.000000,0.000000,0.250000,0,0);}
.ma0_c01073{transform:matrix(0.266343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266343,0.000000,0.000000,0.250000,0,0);}
.m5f_c01073{transform:matrix(0.266536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266536,0.000000,0.000000,0.250000,0,0);}
.ma9_c01073{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.m1f_c01073{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m0_c01073{transform:matrix(0.267994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267994,0.000000,0.000000,0.250000,0,0);}
.m4f_c01073{transform:matrix(0.268316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268316,0.000000,0.000000,0.250000,0,0);}
.mf_c01073{transform:matrix(0.270496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270496,0.000000,0.000000,0.250000,0,0);}
.m5e_c01073{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m29_c01073{transform:matrix(0.271348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271348,0.000000,0.000000,0.250000,0,0);}
.m3b_c01073{transform:matrix(0.271600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271600,0.000000,0.000000,0.250000,0,0);}
.m19_c01073{transform:matrix(0.273366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273366,0.000000,0.000000,0.250000,0,0);}
.m9c_c01073{transform:matrix(0.274942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274942,0.000000,0.000000,0.250000,0,0);}
.m7b_c01073{transform:matrix(0.276424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276424,0.000000,0.000000,0.250000,0,0);}
.m6c_c01073{transform:matrix(0.276535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276535,0.000000,0.000000,0.250000,0,0);}
.m11_c01073{transform:matrix(0.276603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276603,0.000000,0.000000,0.250000,0,0);}
.m66_c01073{transform:matrix(0.276624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276624,0.000000,0.000000,0.250000,0,0);}
.m28_c01073{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m52_c01073{transform:matrix(0.277603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277603,0.000000,0.000000,0.250000,0,0);}
.m4c_c01073{transform:matrix(0.278681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278681,0.000000,0.000000,0.250000,0,0);}
.mab_c01073{transform:matrix(0.278902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278902,0.000000,0.000000,0.250000,0,0);}
.m82_c01073{transform:matrix(0.280648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280648,0.000000,0.000000,0.250000,0,0);}
.m24_c01073{transform:matrix(0.280900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280900,0.000000,0.000000,0.250000,0,0);}
.m6b_c01073{transform:matrix(0.281190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281190,0.000000,0.000000,0.250000,0,0);}
.mb0_c01073{transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);}
.mb2_c01073{transform:matrix(0.282028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282028,0.000000,0.000000,0.250000,0,0);}
.m96_c01073{transform:matrix(0.283405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283405,0.000000,0.000000,0.250000,0,0);}
.m2c_c01073{transform:matrix(0.284092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284092,0.000000,0.000000,0.250000,0,0);}
.m3a_c01073{transform:matrix(0.284477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284477,0.000000,0.000000,0.250000,0,0);}
.m70_c01073{transform:matrix(0.284537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284537,0.000000,0.000000,0.250000,0,0);}
.m2f_c01073{transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);}
.m5b_c01073{transform:matrix(0.286496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286496,0.000000,0.000000,0.250000,0,0);}
.m75_c01073{transform:matrix(0.286566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286566,0.000000,0.000000,0.250000,0,0);}
.m1e_c01073{transform:matrix(0.287051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287051,0.000000,0.000000,0.250000,0,0);}
.m38_c01073{transform:matrix(0.287284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287284,0.000000,0.000000,0.250000,0,0);}
.m16_c01073{transform:matrix(0.287902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287902,0.000000,0.000000,0.250000,0,0);}
.m69_c01073{transform:matrix(0.288210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288210,0.000000,0.000000,0.250000,0,0);}
.m49_c01073{transform:matrix(0.288378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288378,0.000000,0.000000,0.250000,0,0);}
.m59_c01073{transform:matrix(0.288480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288480,0.000000,0.000000,0.250000,0,0);}
.m3c_c01073{transform:matrix(0.288806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288806,0.000000,0.000000,0.250000,0,0);}
.m92_c01073{transform:matrix(0.289940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289940,0.000000,0.000000,0.250000,0,0);}
.ma3_c01073{transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);}
.m50_c01073{transform:matrix(0.290680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290680,0.000000,0.000000,0.250000,0,0);}
.m7f_c01073{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);}
.m8d_c01073{transform:matrix(0.291286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291286,0.000000,0.000000,0.250000,0,0);}
.m8a_c01073{transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);}
.m4a_c01073{transform:matrix(0.291867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291867,0.000000,0.000000,0.250000,0,0);}
.m6_c01073{transform:matrix(0.291977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291977,0.000000,0.000000,0.250000,0,0);}
.m93_c01073{transform:matrix(0.292566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292566,0.000000,0.000000,0.250000,0,0);}
.m6e_c01073{transform:matrix(0.293354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293354,0.000000,0.000000,0.250000,0,0);}
.m83_c01073{transform:matrix(0.293439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293439,0.000000,0.000000,0.250000,0,0);}
.m1d_c01073{transform:matrix(0.294229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294229,0.000000,0.000000,0.250000,0,0);}
.m78_c01073{transform:matrix(0.294562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294562,0.000000,0.000000,0.250000,0,0);}
.m80_c01073{transform:matrix(0.294813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294813,0.000000,0.000000,0.250000,0,0);}
.m7e_c01073{transform:matrix(0.294997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294997,0.000000,0.000000,0.250000,0,0);}
.m13_c01073{transform:matrix(0.295578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295578,0.000000,0.000000,0.250000,0,0);}
.m86_c01073{transform:matrix(0.295835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295835,0.000000,0.000000,0.250000,0,0);}
.mb_c01073{transform:matrix(0.296201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296201,0.000000,0.000000,0.250000,0,0);}
.m30_c01073{transform:matrix(0.296364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296364,0.000000,0.000000,0.250000,0,0);}
.m45_c01073{transform:matrix(0.296518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296518,0.000000,0.000000,0.250000,0,0);}
.ma7_c01073{transform:matrix(0.296861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296861,0.000000,0.000000,0.250000,0,0);}
.mc_c01073{transform:matrix(0.296980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296980,0.000000,0.000000,0.250000,0,0);}
.m35_c01073{transform:matrix(0.298177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298177,0.000000,0.000000,0.250000,0,0);}
.m51_c01073{transform:matrix(0.298189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298189,0.000000,0.000000,0.250000,0,0);}
.ma8_c01073{transform:matrix(0.298256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298256,0.000000,0.000000,0.250000,0,0);}
.mac_c01073{transform:matrix(0.298283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298283,0.000000,0.000000,0.250000,0,0);}
.m89_c01073{transform:matrix(0.298376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298376,0.000000,0.000000,0.250000,0,0);}
.m2_c01073{transform:matrix(0.299557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299557,0.000000,0.000000,0.250000,0,0);}
.m6f_c01073{transform:matrix(0.300965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300965,0.000000,0.000000,0.250000,0,0);}
.m4_c01073{transform:matrix(0.301064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301064,0.000000,0.000000,0.250000,0,0);}
.m5d_c01073{transform:matrix(0.301305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301305,0.000000,0.000000,0.250000,0,0);}
.m3_c01073{transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);}
.m79_c01073{transform:matrix(0.302902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302902,0.000000,0.000000,0.250000,0,0);}
.m71_c01073{transform:matrix(0.303162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303162,0.000000,0.000000,0.250000,0,0);}
.mae_c01073{transform:matrix(0.303477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303477,0.000000,0.000000,0.250000,0,0);}
.m57_c01073{transform:matrix(0.303781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303781,0.000000,0.000000,0.250000,0,0);}
.m8f_c01073{transform:matrix(0.303799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303799,0.000000,0.000000,0.250000,0,0);}
.m91_c01073{transform:matrix(0.304376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304376,0.000000,0.000000,0.250000,0,0);}
.m8b_c01073{transform:matrix(0.304638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304638,0.000000,0.000000,0.250000,0,0);}
.maf_c01073{transform:matrix(0.304815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304815,0.000000,0.000000,0.250000,0,0);}
.ma2_c01073{transform:matrix(0.306761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306761,0.000000,0.000000,0.250000,0,0);}
.m9f_c01073{transform:matrix(0.306770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306770,0.000000,0.000000,0.250000,0,0);}
.maa_c01073{transform:matrix(0.306809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306809,0.000000,0.000000,0.250000,0,0);}
.m7_c01073{transform:matrix(0.307034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307034,0.000000,0.000000,0.250000,0,0);}
.m1a_c01073{transform:matrix(0.307539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307539,0.000000,0.000000,0.250000,0,0);}
.m12_c01073{transform:matrix(0.307980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307980,0.000000,0.000000,0.250000,0,0);}
.m26_c01073{transform:matrix(0.307988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307988,0.000000,0.000000,0.250000,0,0);}
.ma6_c01073{transform:matrix(0.308029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308029,0.000000,0.000000,0.250000,0,0);}
.me_c01073{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m76_c01073{transform:matrix(0.308583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308583,0.000000,0.000000,0.250000,0,0);}
.m14_c01073{transform:matrix(0.309137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309137,0.000000,0.000000,0.250000,0,0);}
.m8e_c01073{transform:matrix(0.311211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311211,0.000000,0.000000,0.250000,0,0);}
.mb5_c01073{transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312045,0.000000,0.000000,0.250000,0,0);}
.m44_c01073{transform:matrix(0.312879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312879,0.000000,0.000000,0.250000,0,0);}
.ma5_c01073{transform:matrix(0.313488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313488,0.000000,0.000000,0.250000,0,0);}
.m2d_c01073{transform:matrix(0.313839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313839,0.000000,0.000000,0.250000,0,0);}
.m56_c01073{transform:matrix(0.314114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314114,0.000000,0.000000,0.250000,0,0);}
.m77_c01073{transform:matrix(0.315048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315048,0.000000,0.000000,0.250000,0,0);}
.m67_c01073{transform:matrix(0.315418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315418,0.000000,0.000000,0.250000,0,0);}
.m94_c01073{transform:matrix(0.316181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316181,0.000000,0.000000,0.250000,0,0);}
.m39_c01073{transform:matrix(0.316461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316461,0.000000,0.000000,0.250000,0,0);}
.m54_c01073{transform:matrix(0.318018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318018,0.000000,0.000000,0.250000,0,0);}
.m32_c01073{transform:matrix(0.318326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318326,0.000000,0.000000,0.250000,0,0);}
.mad_c01073{transform:matrix(0.319290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319290,0.000000,0.000000,0.250000,0,0);}
.m34_c01073{transform:matrix(0.319485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319485,0.000000,0.000000,0.250000,0,0);}
.m37_c01073{transform:matrix(0.321178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321178,0.000000,0.000000,0.250000,0,0);}
.m9e_c01073{transform:matrix(0.321180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321180,0.000000,0.000000,0.250000,0,0);}
.m7a_c01073{transform:matrix(0.321598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321598,0.000000,0.000000,0.250000,0,0);}
.m8c_c01073{transform:matrix(0.322193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322193,0.000000,0.000000,0.250000,0,0);}
.m65_c01073{transform:matrix(0.323414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323414,0.000000,0.000000,0.250000,0,0);}
.m74_c01073{transform:matrix(0.323416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323416,0.000000,0.000000,0.250000,0,0);}
.m62_c01073{transform:matrix(0.323536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323536,0.000000,0.000000,0.250000,0,0);}
.m17_c01073{transform:matrix(0.324318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324318,0.000000,0.000000,0.250000,0,0);}
.m21_c01073{transform:matrix(0.327003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327003,0.000000,0.000000,0.250000,0,0);}
.m5a_c01073{transform:matrix(0.327290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327290,0.000000,0.000000,0.250000,0,0);}
.m3f_c01073{transform:matrix(0.328506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328506,0.000000,0.000000,0.250000,0,0);}
.m15_c01073{transform:matrix(0.329405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329405,0.000000,0.000000,0.250000,0,0);}
.m4e_c01073{transform:matrix(0.329705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329705,0.000000,0.000000,0.250000,0,0);}
.m9_c01073{transform:matrix(0.329747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329747,0.000000,0.000000,0.250000,0,0);}
.m8_c01073{transform:matrix(0.330710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330710,0.000000,0.000000,0.250000,0,0);}
.m53_c01073{transform:matrix(0.332278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332278,0.000000,0.000000,0.250000,0,0);}
.md_c01073{transform:matrix(0.332318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332318,0.000000,0.000000,0.250000,0,0);}
.m9b_c01073{transform:matrix(0.332348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332348,0.000000,0.000000,0.250000,0,0);}
.mb1_c01073{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m42_c01073{transform:matrix(0.333337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333337,0.000000,0.000000,0.250000,0,0);}
.m98_c01073{transform:matrix(0.334246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334246,0.000000,0.000000,0.250000,0,0);}
.m4d_c01073{transform:matrix(0.335974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335974,0.000000,0.000000,0.250000,0,0);}
.m6d_c01073{transform:matrix(0.338886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338886,0.000000,0.000000,0.250000,0,0);}
.m90_c01073{transform:matrix(0.339111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339111,0.000000,0.000000,0.250000,0,0);}
.m95_c01073{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m97_c01073{transform:matrix(0.339972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339972,0.000000,0.000000,0.250000,0,0);}
.m3d_c01073{transform:matrix(0.340702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340702,0.000000,0.000000,0.250000,0,0);}
.m63_c01073{transform:matrix(0.340797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340797,0.000000,0.000000,0.250000,0,0);}
.m10_c01073{transform:matrix(0.346651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346651,0.000000,0.000000,0.250000,0,0);}
.m31_c01073{transform:matrix(0.347593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347593,0.000000,0.000000,0.250000,0,0);}
.m46_c01073{transform:matrix(0.350309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350309,0.000000,0.000000,0.250000,0,0);}
.m41_c01073{transform:matrix(0.351400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351400,0.000000,0.000000,0.250000,0,0);}
.m1c_c01073{transform:matrix(0.363053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363053,0.000000,0.000000,0.250000,0,0);}
.m22_c01073{transform:matrix(0.373039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373039,0.000000,0.000000,0.250000,0,0);}
.ma4_c01073{transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);}
.m60_c01073{transform:matrix(0.375465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375465,0.000000,0.000000,0.250000,0,0);}
.m55_c01073{transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);}
.m20_c01073{transform:matrix(0.385437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385437,0.000000,0.000000,0.250000,0,0);}
.m58_c01073{transform:matrix(0.391460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391460,0.000000,0.000000,0.250000,0,0);}
.v0_c01073{vertical-align:0.000000px;}
.ls7_c01073{letter-spacing:-2.744280px;}
.lsb_c01073{letter-spacing:-1.434517px;}
.lsc_c01073{letter-spacing:-0.948737px;}
.ls4_c01073{letter-spacing:-0.470448px;}
.ls1_c01073{letter-spacing:0.000000px;}
.lsa_c01073{letter-spacing:2.775643px;}
.lse_c01073{letter-spacing:3.247200px;}
.ls8_c01073{letter-spacing:3.387226px;}
.ls2_c01073{letter-spacing:3.920400px;}
.ls0_c01073{letter-spacing:4.039200px;}
.ls9_c01073{letter-spacing:49.896198px;}
.ls3_c01073{letter-spacing:52.747398px;}
.ls5_c01073{letter-spacing:57.024198px;}
.lsd_c01073{letter-spacing:58.449798px;}
.ls6_c01073{letter-spacing:59.875398px;}
.sc__c01073{text-shadow:none;}
.sc0_c01073{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01073{-webkit-text-stroke:0px transparent;}
.sc0_c01073{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01073{word-spacing:-19.602000px;}
.ws1_c01073{word-spacing:0.000000px;}
._2_c01073{width:2.273832px;}
._0_c01073{width:6.038208px;}
._1_c01073{width:12.937320px;}
.fc0_c01073{color:transparent;}
.fs8_c01073{font-size:40.986198px;}
.fs7_c01073{font-size:49.896198px;}
.fs3_c01073{font-size:52.747398px;}
.fs4_c01073{font-size:57.024198px;}
.fsa_c01073{font-size:58.449798px;}
.fs5_c01073{font-size:59.875398px;}
.fsb_c01073{font-size:64.944000px;}
.fsc_c01073{font-size:70.884000px;}
.fs1_c01073{font-size:72.864000px;}
.fs9_c01073{font-size:77.220000px;}
.fs2_c01073{font-size:78.408000px;}
.fs0_c01073{font-size:80.784000px;}
.fs6_c01073{font-size:87.120000px;}
.y0_c01073{bottom:0.000000px;}
.y1_c01073{bottom:76.500000px;}
.y1c_c01073{bottom:127.146735px;}
.y1b_c01073{bottom:158.866335px;}
.y1a_c01073{bottom:192.719385px;}
.y19_c01073{bottom:223.731135px;}
.y18_c01073{bottom:256.163535px;}
.y17_c01073{bottom:288.239535px;}
.y16_c01073{bottom:320.666985px;}
.y15_c01073{bottom:385.175385px;}
.y14_c01073{bottom:417.612735px;}
.y13_c01073{bottom:449.332335px;}
.y12_c01073{bottom:481.759785px;}
.y11_c01073{bottom:513.127935px;}
.y10_c01073{bottom:545.198985px;}
.yf_c01073{bottom:576.205785px;}
.ye_c01073{bottom:607.930335px;}
.yd_c01073{bottom:640.001385px;}
.yc_c01073{bottom:653.544585px;}
.yb_c01073{bottom:672.082335px;}
.ya_c01073{bottom:703.796985px;}
.y9_c01073{bottom:736.229385px;}
.y8_c01073{bottom:768.310335px;}
.y7_c01073{bottom:800.742735px;}
.y6_c01073{bottom:833.170185px;}
.y5_c01073{bottom:895.901535px;}
.y4_c01073{bottom:928.328985px;}
.y3_c01073{bottom:948.643785px;}
.y2_c01073{bottom:1065.186585px;}
.h9_c01073{height:33.230868px;}
.h5_c01073{height:35.129767px;}
.h6_c01073{height:37.978116px;}
.hc_c01073{height:38.927565px;}
.h7_c01073{height:39.877015px;}
.ha_c01073{height:40.225712px;}
.hd_c01073{height:67.734563px;}
.he_c01073{height:69.568770px;}
.h3_c01073{height:71.512031px;}
.hb_c01073{height:75.787207px;}
.h4_c01073{height:76.953164px;}
.h2_c01073{height:79.285078px;}
.h8_c01073{height:85.503516px;}
.h1_c01073{height:1110.000000px;}
.h0_c01073{height:1263.000000px;}
.w1_c01073{width:775.500000px;}
.w0_c01073{width:892.500000px;}
.x0_c01073{left:0.000000px;}
.x1_c01073{left:58.500000px;}
.x60_c01073{left:80.127285px;}
.x36_c01073{left:81.211335px;}
.x4_c01073{left:82.275585px;}
.xd_c01073{left:83.409135px;}
.x6d_c01073{left:91.537035px;}
.x51_c01073{left:113.975385px;}
.x25_c01073{left:115.252485px;}
.x6e_c01073{left:123.637785px;}
.x1a_c01073{left:125.444535px;}
.x14_c01073{left:126.627585px;}
.xe_c01073{left:136.958235px;}
.x6a_c01073{left:147.645285px;}
.x3d_c01073{left:158.698635px;}
.x5_c01073{left:160.490535px;}
.x48_c01073{left:169.227285px;}
.x26_c01073{left:170.727135px;}
.x43_c01073{left:180.265785px;}
.x2f_c01073{left:182.255685px;}
.x66_c01073{left:191.754735px;}
.x2a_c01073{left:192.957585px;}
.x3e_c01073{left:202.377435px;}
.x6_c01073{left:204.679185px;}
.x27_c01073{left:213.475335px;}
.x1b_c01073{left:225.102885px;}
.x28_c01073{left:247.828335px;}
.x46_c01073{left:248.897535px;}
.x5c_c01073{left:257.302635px;}
.x49_c01073{left:258.837135px;}
.x37_c01073{left:260.302335px;}
.x2b_c01073{left:268.355985px;}
.x1c_c01073{left:269.741985px;}
.x15_c01073{left:271.365585px;}
.x47_c01073{left:281.334885px;}
.x38_c01073{left:292.744635px;}
.x4d_c01073{left:303.307935px;}
.x52_c01073{left:304.436535px;}
.x63_c01073{left:314.287035px;}
.x7_c01073{left:315.915585px;}
.x56_c01073{left:325.741335px;}
.x16_c01073{left:326.835285px;}
.x53_c01073{left:336.581835px;}
.x1d_c01073{left:337.651035px;}
.x64_c01073{left:346.358085px;}
.x67_c01073{left:348.338085px;}
.x8_c01073{left:349.743885px;}
.x41_c01073{left:358.777635px;}
.x57_c01073{left:369.727035px;}
.x1e_c01073{left:370.751685px;}
.x6f_c01073{left:379.523085px;}
.x30_c01073{left:380.577435px;}
.xf_c01073{left:381.809985px;}
.x4a_c01073{left:392.155485px;}
.x5d_c01073{left:403.530585px;}
.x29_c01073{left:405.005685px;}
.x1f_c01073{left:414.079035px;}
.x58_c01073{left:415.301685px;}
.x10_c01073{left:425.488785px;}
.x20_c01073{left:426.755985px;}
.x6b_c01073{left:435.299685px;}
.x4b_c01073{left:438.032085px;}
.x61_c01073{left:447.778635px;}
.x31_c01073{left:449.129985px;}
.x39_c01073{left:459.084435px;}
.x9_c01073{left:460.544685px;}
.x2c_c01073{left:470.890185px;}
.x65_c01073{left:479.295285px;}
.x44_c01073{left:481.151535px;}
.x21_c01073{left:482.334585px;}
.x59_c01073{left:483.621585px;}
.x3a_c01073{left:491.412885px;}
.x17_c01073{left:493.684935px;}
.x5a_c01073{left:502.659285px;}
.x22_c01073{left:503.743335px;}
.x54_c01073{left:512.806785px;}
.x11_c01073{left:515.479785px;}
.x68_c01073{left:524.275935px;}
.xa_c01073{left:525.449085px;}
.x18_c01073{left:527.221185px;}
.x4e_c01073{left:535.621335px;}
.x12_c01073{left:536.843985px;}
.x3f_c01073{left:547.575585px;}
.x32_c01073{left:558.133935px;}
.x55_c01073{left:560.371335px;}
.x70_c01073{left:567.078585px;}
.x45_c01073{left:568.390335px;}
.xb_c01073{left:569.969385px;}
.x3b_c01073{left:580.007985px;}
.x2d_c01073{left:591.051435px;}
.x69_c01073{left:600.481185px;}
.x33_c01073{left:602.768085px;}
.x5b_c01073{left:611.885985px;}
.x19_c01073{left:613.841235px;}
.x2e_c01073{left:623.775885px;}
.x13_c01073{left:624.780735px;}
.x4f_c01073{left:636.249885px;}
.x3c_c01073{left:646.070685px;}
.x23_c01073{left:657.633885px;}
.x50_c01073{left:668.617935px;}
.x34_c01073{left:669.692085px;}
.x71_c01073{left:678.329835px;}
.x40_c01073{left:679.735635px;}
.xc_c01073{left:681.072135px;}
.x6c_c01073{left:690.432585px;}
.x24_c01073{left:691.496835px;}
.x62_c01073{left:700.995885px;}
.x4c_c01073{left:702.965985px;}
.x3_c01073{left:707.500185px;}
.x2_c01073{left:709.316835px;}
.x35_c01073{left:710.945385px;}
.x5e_c01073{left:712.019535px;}
.x42_c01073{left:724.488585px;}
.x5f_c01073{left:735.358785px;}
@media print{
.v0_c01073{vertical-align:0.000000pt;}
.ls7_c01073{letter-spacing:-2.439360pt;}
.lsb_c01073{letter-spacing:-1.275126pt;}
.lsc_c01073{letter-spacing:-0.843322pt;}
.ls4_c01073{letter-spacing:-0.418176pt;}
.ls1_c01073{letter-spacing:0.000000pt;}
.lsa_c01073{letter-spacing:2.467238pt;}
.lse_c01073{letter-spacing:2.886400pt;}
.ls8_c01073{letter-spacing:3.010867pt;}
.ls2_c01073{letter-spacing:3.484800pt;}
.ls0_c01073{letter-spacing:3.590400pt;}
.ls9_c01073{letter-spacing:44.352176pt;}
.ls3_c01073{letter-spacing:46.886576pt;}
.ls5_c01073{letter-spacing:50.688176pt;}
.lsd_c01073{letter-spacing:51.955376pt;}
.ls6_c01073{letter-spacing:53.222576pt;}
.ws0_c01073{word-spacing:-17.424000pt;}
.ws1_c01073{word-spacing:0.000000pt;}
._2_c01073{width:2.021184pt;}
._0_c01073{width:5.367296pt;}
._1_c01073{width:11.499840pt;}
.fs8_c01073{font-size:36.432176pt;}
.fs7_c01073{font-size:44.352176pt;}
.fs3_c01073{font-size:46.886576pt;}
.fs4_c01073{font-size:50.688176pt;}
.fsa_c01073{font-size:51.955376pt;}
.fs5_c01073{font-size:53.222576pt;}
.fsb_c01073{font-size:57.728000pt;}
.fsc_c01073{font-size:63.008000pt;}
.fs1_c01073{font-size:64.768000pt;}
.fs9_c01073{font-size:68.640000pt;}
.fs2_c01073{font-size:69.696000pt;}
.fs0_c01073{font-size:71.808000pt;}
.fs6_c01073{font-size:77.440000pt;}
.y0_c01073{bottom:0.000000pt;}
.y1_c01073{bottom:68.000000pt;}
.y1c_c01073{bottom:113.019320pt;}
.y1b_c01073{bottom:141.214520pt;}
.y1a_c01073{bottom:171.306120pt;}
.y19_c01073{bottom:198.872120pt;}
.y18_c01073{bottom:227.700920pt;}
.y17_c01073{bottom:256.212920pt;}
.y16_c01073{bottom:285.037320pt;}
.y15_c01073{bottom:342.378120pt;}
.y14_c01073{bottom:371.211320pt;}
.y13_c01073{bottom:399.406520pt;}
.y12_c01073{bottom:428.230920pt;}
.y11_c01073{bottom:456.113720pt;}
.y10_c01073{bottom:484.621320pt;}
.yf_c01073{bottom:512.182920pt;}
.ye_c01073{bottom:540.382520pt;}
.yd_c01073{bottom:568.890120pt;}
.yc_c01073{bottom:580.928520pt;}
.yb_c01073{bottom:597.406520pt;}
.ya_c01073{bottom:625.597320pt;}
.y9_c01073{bottom:654.426120pt;}
.y8_c01073{bottom:682.942520pt;}
.y7_c01073{bottom:711.771320pt;}
.y6_c01073{bottom:740.595720pt;}
.y5_c01073{bottom:796.356920pt;}
.y4_c01073{bottom:825.181320pt;}
.y3_c01073{bottom:843.238920pt;}
.y2_c01073{bottom:946.832520pt;}
.h9_c01073{height:29.538549pt;}
.h5_c01073{height:31.226460pt;}
.h6_c01073{height:33.758325pt;}
.hc_c01073{height:34.602280pt;}
.h7_c01073{height:35.446236pt;}
.ha_c01073{height:35.756188pt;}
.hd_c01073{height:60.208500pt;}
.he_c01073{height:61.838906pt;}
.h3_c01073{height:63.566250pt;}
.hb_c01073{height:67.366406pt;}
.h4_c01073{height:68.402813pt;}
.h2_c01073{height:70.475625pt;}
.h8_c01073{height:76.003125pt;}
.h1_c01073{height:986.666667pt;}
.h0_c01073{height:1122.666667pt;}
.w1_c01073{width:689.333333pt;}
.w0_c01073{width:793.333333pt;}
.x0_c01073{left:0.000000pt;}
.x1_c01073{left:52.000000pt;}
.x60_c01073{left:71.224253pt;}
.x36_c01073{left:72.187853pt;}
.x4_c01073{left:73.133853pt;}
.xd_c01073{left:74.141453pt;}
.x6d_c01073{left:81.366253pt;}
.x51_c01073{left:101.311453pt;}
.x25_c01073{left:102.446653pt;}
.x6e_c01073{left:109.900253pt;}
.x1a_c01073{left:111.506253pt;}
.x14_c01073{left:112.557853pt;}
.xe_c01073{left:121.740653pt;}
.x6a_c01073{left:131.240253pt;}
.x3d_c01073{left:141.065453pt;}
.x5_c01073{left:142.658253pt;}
.x48_c01073{left:150.424253pt;}
.x26_c01073{left:151.757453pt;}
.x43_c01073{left:160.236253pt;}
.x2f_c01073{left:162.005053pt;}
.x66_c01073{left:170.448653pt;}
.x2a_c01073{left:171.517853pt;}
.x3e_c01073{left:179.891053pt;}
.x6_c01073{left:181.937053pt;}
.x27_c01073{left:189.755853pt;}
.x1b_c01073{left:200.091453pt;}
.x28_c01073{left:220.291853pt;}
.x46_c01073{left:221.242253pt;}
.x5c_c01073{left:228.713453pt;}
.x49_c01073{left:230.077453pt;}
.x37_c01073{left:231.379853pt;}
.x2b_c01073{left:238.538653pt;}
.x1c_c01073{left:239.770653pt;}
.x15_c01073{left:241.213853pt;}
.x47_c01073{left:250.075453pt;}
.x38_c01073{left:260.217453pt;}
.x4d_c01073{left:269.607053pt;}
.x52_c01073{left:270.610253pt;}
.x63_c01073{left:279.366253pt;}
.x7_c01073{left:280.813853pt;}
.x56_c01073{left:289.547853pt;}
.x16_c01073{left:290.520253pt;}
.x53_c01073{left:299.183853pt;}
.x1d_c01073{left:300.134253pt;}
.x64_c01073{left:307.873853pt;}
.x67_c01073{left:309.633853pt;}
.x8_c01073{left:310.883453pt;}
.x41_c01073{left:318.913453pt;}
.x57_c01073{left:328.646253pt;}
.x1e_c01073{left:329.557053pt;}
.x6f_c01073{left:337.353853pt;}
.x30_c01073{left:338.291053pt;}
.xf_c01073{left:339.386653pt;}
.x4a_c01073{left:348.582653pt;}
.x5d_c01073{left:358.693853pt;}
.x29_c01073{left:360.005053pt;}
.x1f_c01073{left:368.070253pt;}
.x58_c01073{left:369.157053pt;}
.x10_c01073{left:378.212253pt;}
.x20_c01073{left:379.338653pt;}
.x6b_c01073{left:386.933053pt;}
.x4b_c01073{left:389.361853pt;}
.x61_c01073{left:398.025453pt;}
.x31_c01073{left:399.226653pt;}
.x39_c01073{left:408.075053pt;}
.x9_c01073{left:409.373053pt;}
.x2c_c01073{left:418.569053pt;}
.x65_c01073{left:426.040253pt;}
.x44_c01073{left:427.690253pt;}
.x21_c01073{left:428.741853pt;}
.x59_c01073{left:429.885853pt;}
.x3a_c01073{left:436.811453pt;}
.x17_c01073{left:438.831053pt;}
.x5a_c01073{left:446.808253pt;}
.x22_c01073{left:447.771853pt;}
.x54_c01073{left:455.828253pt;}
.x11_c01073{left:458.204253pt;}
.x68_c01073{left:466.023053pt;}
.xa_c01073{left:467.065853pt;}
.x18_c01073{left:468.641053pt;}
.x4e_c01073{left:476.107853pt;}
.x12_c01073{left:477.194653pt;}
.x3f_c01073{left:486.733853pt;}
.x32_c01073{left:496.119053pt;}
.x55_c01073{left:498.107853pt;}
.x70_c01073{left:504.069853pt;}
.x45_c01073{left:505.235853pt;}
.xb_c01073{left:506.639453pt;}
.x3b_c01073{left:515.562653pt;}
.x2d_c01073{left:525.379053pt;}
.x69_c01073{left:533.761053pt;}
.x33_c01073{left:535.793853pt;}
.x5b_c01073{left:543.898653pt;}
.x19_c01073{left:545.636653pt;}
.x2e_c01073{left:554.467453pt;}
.x13_c01073{left:555.360653pt;}
.x4f_c01073{left:565.555453pt;}
.x3c_c01073{left:574.285053pt;}
.x23_c01073{left:584.563453pt;}
.x50_c01073{left:594.327053pt;}
.x34_c01073{left:595.281853pt;}
.x71_c01073{left:602.959853pt;}
.x40_c01073{left:604.209453pt;}
.xc_c01073{left:605.397453pt;}
.x6c_c01073{left:613.717853pt;}
.x24_c01073{left:614.663853pt;}
.x62_c01073{left:623.107453pt;}
.x4c_c01073{left:624.858653pt;}
.x3_c01073{left:628.889053pt;}
.x2_c01073{left:630.503853pt;}
.x35_c01073{left:631.951453pt;}
.x5e_c01073{left:632.906253pt;}
.x42_c01073{left:643.989853pt;}
.x5f_c01073{left:653.652253pt;}
}





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

.ir_c01074:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01074{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01074;src:url('chunks/assets/font_31080057a0f35e4cf459ced9.woff2')format("woff");}.ff1_c01074{font-family:ff1_c01074;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01074;src:url('chunks/assets/font_80949aa21caa014c74d3725e.woff2')format("woff");}.ff2_c01074{font-family:ff2_c01074;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01074;src:url('chunks/assets/font_86df002f220ddcb9eb3248f1.woff2')format("woff");}.ff3_c01074{font-family:ff3_c01074;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mb7_c01074{transform:matrix(0.130532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130532,0.000000,0.000000,0.250000,0,0);}
.m92_c01074{transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);}
.m2c_c01074{transform:matrix(0.131104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131104,0.000000,0.000000,0.250000,0,0);}
.m9f_c01074{transform:matrix(0.144145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144145,0.000000,0.000000,0.250000,0,0);}
.m2f_c01074{transform:matrix(0.150656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150656,0.000000,0.000000,0.250000,0,0);}
.m41_c01074{transform:matrix(0.177381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177381,0.000000,0.000000,0.250000,0,0);}
.m29_c01074{transform:matrix(0.192418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192418,0.000000,0.000000,0.250000,0,0);}
.mb_c01074{transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);}
.m3c_c01074{transform:matrix(0.224050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224050,0.000000,0.000000,0.250000,0,0);}
.m8e_c01074{transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234867,0.000000,0.000000,0.250000,0,0);}
.m61_c01074{transform:matrix(0.248291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248291,0.000000,0.000000,0.250000,0,0);}
.m10_c01074{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0_c01074{transform:matrix(0.250403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250403,0.000000,0.000000,0.250000,0,0);}
.m49_c01074{transform:matrix(0.254061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254061,0.000000,0.000000,0.250000,0,0);}
.m38_c01074{transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);}
.ma9_c01074{transform:matrix(0.257608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257608,0.000000,0.000000,0.250000,0,0);}
.m78_c01074{transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);}
.m73_c01074{transform:matrix(0.258106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258106,0.000000,0.000000,0.250000,0,0);}
.mc_c01074{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m42_c01074{transform:matrix(0.258853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258853,0.000000,0.000000,0.250000,0,0);}
.m4a_c01074{transform:matrix(0.259977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259977,0.000000,0.000000,0.250000,0,0);}
.m1f_c01074{transform:matrix(0.260836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260836,0.000000,0.000000,0.250000,0,0);}
.m27_c01074{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m57_c01074{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.m48_c01074{transform:matrix(0.262150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262150,0.000000,0.000000,0.250000,0,0);}
.m9b_c01074{transform:matrix(0.263102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263102,0.000000,0.000000,0.250000,0,0);}
.m4b_c01074{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m5c_c01074{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m62_c01074{transform:matrix(0.264472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264472,0.000000,0.000000,0.250000,0,0);}
.mf_c01074{transform:matrix(0.265204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265204,0.000000,0.000000,0.250000,0,0);}
.mac_c01074{transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);}
.m12_c01074{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m7_c01074{transform:matrix(0.266343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266343,0.000000,0.000000,0.250000,0,0);}
.mad_c01074{transform:matrix(0.266582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266582,0.000000,0.000000,0.250000,0,0);}
.mb4_c01074{transform:matrix(0.267321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267321,0.000000,0.000000,0.250000,0,0);}
.m85_c01074{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m3f_c01074{transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268619,0.000000,0.000000,0.250000,0,0);}
.m7d_c01074{transform:matrix(0.270675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270675,0.000000,0.000000,0.250000,0,0);}
.m3_c01074{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m70_c01074{transform:matrix(0.271671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271671,0.000000,0.000000,0.250000,0,0);}
.m8b_c01074{transform:matrix(0.271681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271681,0.000000,0.000000,0.250000,0,0);}
.m21_c01074{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m7b_c01074{transform:matrix(0.272862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272862,0.000000,0.000000,0.250000,0,0);}
.m6a_c01074{transform:matrix(0.273342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273342,0.000000,0.000000,0.250000,0,0);}
.mb1_c01074{transform:matrix(0.273366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273366,0.000000,0.000000,0.250000,0,0);}
.ma5_c01074{transform:matrix(0.273832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273832,0.000000,0.000000,0.250000,0,0);}
.m93_c01074{transform:matrix(0.275040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275040,0.000000,0.000000,0.250000,0,0);}
.m64_c01074{transform:matrix(0.275162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275162,0.000000,0.000000,0.250000,0,0);}
.m7e_c01074{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m6d_c01074{transform:matrix(0.275802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275802,0.000000,0.000000,0.250000,0,0);}
.m45_c01074{transform:matrix(0.275884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275884,0.000000,0.000000,0.250000,0,0);}
.m16_c01074{transform:matrix(0.276092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276092,0.000000,0.000000,0.250000,0,0);}
.m84_c01074{transform:matrix(0.276438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276438,0.000000,0.000000,0.250000,0,0);}
.m7f_c01074{transform:matrix(0.277016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277016,0.000000,0.000000,0.250000,0,0);}
.m74_c01074{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.mb3_c01074{transform:matrix(0.277905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277905,0.000000,0.000000,0.250000,0,0);}
.m9d_c01074{transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);}
.ma7_c01074{transform:matrix(0.279447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279447,0.000000,0.000000,0.250000,0,0);}
.m52_c01074{transform:matrix(0.280018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280018,0.000000,0.000000,0.250000,0,0);}
.m26_c01074{transform:matrix(0.280062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280062,0.000000,0.000000,0.250000,0,0);}
.m98_c01074{transform:matrix(0.280356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280356,0.000000,0.000000,0.250000,0,0);}
.m60_c01074{transform:matrix(0.280900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280900,0.000000,0.000000,0.250000,0,0);}
.m1b_c01074{transform:matrix(0.281190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281190,0.000000,0.000000,0.250000,0,0);}
.ma0_c01074{transform:matrix(0.283706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283706,0.000000,0.000000,0.250000,0,0);}
.m33_c01074{transform:matrix(0.284092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284092,0.000000,0.000000,0.250000,0,0);}
.ma8_c01074{transform:matrix(0.284356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284356,0.000000,0.000000,0.250000,0,0);}
.m75_c01074{transform:matrix(0.284681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284681,0.000000,0.000000,0.250000,0,0);}
.m31_c01074{transform:matrix(0.284924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284924,0.000000,0.000000,0.250000,0,0);}
.m5f_c01074{transform:matrix(0.285120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285120,0.000000,0.000000,0.250000,0,0);}
.m8f_c01074{transform:matrix(0.285188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285188,0.000000,0.000000,0.250000,0,0);}
.m3e_c01074{transform:matrix(0.286184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286184,0.000000,0.000000,0.250000,0,0);}
.m1c_c01074{transform:matrix(0.286401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286401,0.000000,0.000000,0.250000,0,0);}
.m4f_c01074{transform:matrix(0.286496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286496,0.000000,0.000000,0.250000,0,0);}
.m53_c01074{transform:matrix(0.286871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286871,0.000000,0.000000,0.250000,0,0);}
.m71_c01074{transform:matrix(0.287557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287557,0.000000,0.000000,0.250000,0,0);}
.m5b_c01074{transform:matrix(0.287592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287592,0.000000,0.000000,0.250000,0,0);}
.m79_c01074{transform:matrix(0.288272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288272,0.000000,0.000000,0.250000,0,0);}
.m5a_c01074{transform:matrix(0.288806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288806,0.000000,0.000000,0.250000,0,0);}
.ma3_c01074{transform:matrix(0.288846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288846,0.000000,0.000000,0.250000,0,0);}
.m4c_c01074{transform:matrix(0.288974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288974,0.000000,0.000000,0.250000,0,0);}
.m22_c01074{transform:matrix(0.290956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290956,0.000000,0.000000,0.250000,0,0);}
.m6b_c01074{transform:matrix(0.291867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291867,0.000000,0.000000,0.250000,0,0);}
.m55_c01074{transform:matrix(0.291981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291981,0.000000,0.000000,0.250000,0,0);}
.m4e_c01074{transform:matrix(0.292385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292385,0.000000,0.000000,0.250000,0,0);}
.m51_c01074{transform:matrix(0.292614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292614,0.000000,0.000000,0.250000,0,0);}
.m11_c01074{transform:matrix(0.292696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292696,0.000000,0.000000,0.250000,0,0);}
.m9_c01074{transform:matrix(0.293341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293341,0.000000,0.000000,0.250000,0,0);}
.maa_c01074{transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293668,0.000000,0.000000,0.250000,0,0);}
.m8c_c01074{transform:matrix(0.293692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293692,0.000000,0.000000,0.250000,0,0);}
.ma_c01074{transform:matrix(0.293720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293720,0.000000,0.000000,0.250000,0,0);}
.m69_c01074{transform:matrix(0.293838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293838,0.000000,0.000000,0.250000,0,0);}
.m30_c01074{transform:matrix(0.294006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294006,0.000000,0.000000,0.250000,0,0);}
.m2d_c01074{transform:matrix(0.294460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294460,0.000000,0.000000,0.250000,0,0);}
.m77_c01074{transform:matrix(0.294587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294587,0.000000,0.000000,0.250000,0,0);}
.m96_c01074{transform:matrix(0.294759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294759,0.000000,0.000000,0.250000,0,0);}
.md_c01074{transform:matrix(0.295165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295165,0.000000,0.000000,0.250000,0,0);}
.m72_c01074{transform:matrix(0.295453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295453,0.000000,0.000000,0.250000,0,0);}
.mb6_c01074{transform:matrix(0.296280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296280,0.000000,0.000000,0.250000,0,0);}
.m5d_c01074{transform:matrix(0.296490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296490,0.000000,0.000000,0.250000,0,0);}
.m95_c01074{transform:matrix(0.296640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296640,0.000000,0.000000,0.250000,0,0);}
.m5_c01074{transform:matrix(0.296813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296813,0.000000,0.000000,0.250000,0,0);}
.m14_c01074{transform:matrix(0.296854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296854,0.000000,0.000000,0.250000,0,0);}
.m4d_c01074{transform:matrix(0.297583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297583,0.000000,0.000000,0.250000,0,0);}
.m59_c01074{transform:matrix(0.298121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298121,0.000000,0.000000,0.250000,0,0);}
.m1a_c01074{transform:matrix(0.298376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298376,0.000000,0.000000,0.250000,0,0);}
.m2_c01074{transform:matrix(0.299381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299381,0.000000,0.000000,0.250000,0,0);}
.m46_c01074{transform:matrix(0.299511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299511,0.000000,0.000000,0.250000,0,0);}
.m99_c01074{transform:matrix(0.300064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300064,0.000000,0.000000,0.250000,0,0);}
.m7a_c01074{transform:matrix(0.300484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300484,0.000000,0.000000,0.250000,0,0);}
.m44_c01074{transform:matrix(0.300559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300559,0.000000,0.000000,0.250000,0,0);}
.m6e_c01074{transform:matrix(0.301049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301049,0.000000,0.000000,0.250000,0,0);}
.m2b_c01074{transform:matrix(0.301563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301563,0.000000,0.000000,0.250000,0,0);}
.m81_c01074{transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);}
.m91_c01074{transform:matrix(0.302737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302737,0.000000,0.000000,0.250000,0,0);}
.m66_c01074{transform:matrix(0.303125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303125,0.000000,0.000000,0.250000,0,0);}
.m3b_c01074{transform:matrix(0.305054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305054,0.000000,0.000000,0.250000,0,0);}
.me_c01074{transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305111,0.000000,0.000000,0.250000,0,0);}
.m25_c01074{transform:matrix(0.306258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306258,0.000000,0.000000,0.250000,0,0);}
.m28_c01074{transform:matrix(0.306376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306376,0.000000,0.000000,0.250000,0,0);}
.m86_c01074{transform:matrix(0.307577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307577,0.000000,0.000000,0.250000,0,0);}
.mae_c01074{transform:matrix(0.307919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307919,0.000000,0.000000,0.250000,0,0);}
.m76_c01074{transform:matrix(0.308326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308326,0.000000,0.000000,0.250000,0,0);}
.mb5_c01074{transform:matrix(0.308759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308759,0.000000,0.000000,0.250000,0,0);}
.m56_c01074{transform:matrix(0.308970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308970,0.000000,0.000000,0.250000,0,0);}
.m97_c01074{transform:matrix(0.309047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309047,0.000000,0.000000,0.250000,0,0);}
.m80_c01074{transform:matrix(0.309321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309321,0.000000,0.000000,0.250000,0,0);}
.mb0_c01074{transform:matrix(0.309922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309922,0.000000,0.000000,0.250000,0,0);}
.m24_c01074{transform:matrix(0.309991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309991,0.000000,0.000000,0.250000,0,0);}
.ma2_c01074{transform:matrix(0.310209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310209,0.000000,0.000000,0.250000,0,0);}
.m23_c01074{transform:matrix(0.310621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310621,0.000000,0.000000,0.250000,0,0);}
.m37_c01074{transform:matrix(0.311718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311718,0.000000,0.000000,0.250000,0,0);}
.m13_c01074{transform:matrix(0.313415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313415,0.000000,0.000000,0.250000,0,0);}
.m88_c01074{transform:matrix(0.313862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313862,0.000000,0.000000,0.250000,0,0);}
.m1_c01074{transform:matrix(0.315104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315104,0.000000,0.000000,0.250000,0,0);}
.m63_c01074{transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);}
.m1d_c01074{transform:matrix(0.316886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316886,0.000000,0.000000,0.250000,0,0);}
.m1e_c01074{transform:matrix(0.317088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317088,0.000000,0.000000,0.250000,0,0);}
.m83_c01074{transform:matrix(0.317829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317829,0.000000,0.000000,0.250000,0,0);}
.maf_c01074{transform:matrix(0.317949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317949,0.000000,0.000000,0.250000,0,0);}
.m65_c01074{transform:matrix(0.318824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318824,0.000000,0.000000,0.250000,0,0);}
.m8_c01074{transform:matrix(0.318980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318980,0.000000,0.000000,0.250000,0,0);}
.m87_c01074{transform:matrix(0.319227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319227,0.000000,0.000000,0.250000,0,0);}
.m40_c01074{transform:matrix(0.320495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320495,0.000000,0.000000,0.250000,0,0);}
.m94_c01074{transform:matrix(0.320941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320941,0.000000,0.000000,0.250000,0,0);}
.m67_c01074{transform:matrix(0.321083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321083,0.000000,0.000000,0.250000,0,0);}
.m3a_c01074{transform:matrix(0.321354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321354,0.000000,0.000000,0.250000,0,0);}
.ma4_c01074{transform:matrix(0.321398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321398,0.000000,0.000000,0.250000,0,0);}
.m9c_c01074{transform:matrix(0.321771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321771,0.000000,0.000000,0.250000,0,0);}
.m50_c01074{transform:matrix(0.321784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321784,0.000000,0.000000,0.250000,0,0);}
.m36_c01074{transform:matrix(0.322576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322576,0.000000,0.000000,0.250000,0,0);}
.m43_c01074{transform:matrix(0.323442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323442,0.000000,0.000000,0.250000,0,0);}
.m47_c01074{transform:matrix(0.323488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323488,0.000000,0.000000,0.250000,0,0);}
.m39_c01074{transform:matrix(0.323720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323720,0.000000,0.000000,0.250000,0,0);}
.m9e_c01074{transform:matrix(0.324427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324427,0.000000,0.000000,0.250000,0,0);}
.m89_c01074{transform:matrix(0.324865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324865,0.000000,0.000000,0.250000,0,0);}
.m6_c01074{transform:matrix(0.324910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324910,0.000000,0.000000,0.250000,0,0);}
.ma6_c01074{transform:matrix(0.326313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326313,0.000000,0.000000,0.250000,0,0);}
.m6f_c01074{transform:matrix(0.326440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326440,0.000000,0.000000,0.250000,0,0);}
.mb2_c01074{transform:matrix(0.326563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326563,0.000000,0.000000,0.250000,0,0);}
.m90_c01074{transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327165,0.000000,0.000000,0.250000,0,0);}
.ma1_c01074{transform:matrix(0.332348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332348,0.000000,0.000000,0.250000,0,0);}
.m58_c01074{transform:matrix(0.332499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332499,0.000000,0.000000,0.250000,0,0);}
.m6c_c01074{transform:matrix(0.332664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332664,0.000000,0.000000,0.250000,0,0);}
.m32_c01074{transform:matrix(0.332784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332784,0.000000,0.000000,0.250000,0,0);}
.m2a_c01074{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m18_c01074{transform:matrix(0.335112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335112,0.000000,0.000000,0.250000,0,0);}
.mab_c01074{transform:matrix(0.335458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335458,0.000000,0.000000,0.250000,0,0);}
.m82_c01074{transform:matrix(0.336558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336558,0.000000,0.000000,0.250000,0,0);}
.m20_c01074{transform:matrix(0.337943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337943,0.000000,0.000000,0.250000,0,0);}
.m9a_c01074{transform:matrix(0.338886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338886,0.000000,0.000000,0.250000,0,0);}
.m7c_c01074{transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343280,0.000000,0.000000,0.250000,0,0);}
.m17_c01074{transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345341,0.000000,0.000000,0.250000,0,0);}
.m2e_c01074{transform:matrix(0.348567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348567,0.000000,0.000000,0.250000,0,0);}
.m8d_c01074{transform:matrix(0.350309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350309,0.000000,0.000000,0.250000,0,0);}
.m8a_c01074{transform:matrix(0.352963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352963,0.000000,0.000000,0.250000,0,0);}
.m68_c01074{transform:matrix(0.353821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353821,0.000000,0.000000,0.250000,0,0);}
.m3d_c01074{transform:matrix(0.355566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355566,0.000000,0.000000,0.250000,0,0);}
.m34_c01074{transform:matrix(0.355710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355710,0.000000,0.000000,0.250000,0,0);}
.m5e_c01074{transform:matrix(0.373079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373079,0.000000,0.000000,0.250000,0,0);}
.m35_c01074{transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);}
.m54_c01074{transform:matrix(0.373581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373581,0.000000,0.000000,0.250000,0,0);}
.m4_c01074{transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);}
.m19_c01074{transform:matrix(0.385437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385437,0.000000,0.000000,0.250000,0,0);}
.m15_c01074{transform:matrix(0.391460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391460,0.000000,0.000000,0.250000,0,0);}
.v0_c01074{vertical-align:0.000000px;}
.v1_c01074{vertical-align:8.533800px;}
.ls9_c01074{letter-spacing:-2.744280px;}
.ls15_c01074{letter-spacing:-1.635480px;}
.ls8_c01074{letter-spacing:-1.427026px;}
.ls13_c01074{letter-spacing:-0.948737px;}
.ls7_c01074{letter-spacing:-0.486130px;}
.ls5_c01074{letter-spacing:0.000000px;}
.lsb_c01074{letter-spacing:1.207483px;}
.ls10_c01074{letter-spacing:1.811700px;}
.lsf_c01074{letter-spacing:2.457008px;}
.lsc_c01074{letter-spacing:2.579623px;}
.ls0_c01074{letter-spacing:2.916778px;}
.ls14_c01074{letter-spacing:3.286810px;}
.lsa_c01074{letter-spacing:3.405610px;}
.lse_c01074{letter-spacing:3.524400px;}
.ls6_c01074{letter-spacing:3.564000px;}
.ls1_c01074{letter-spacing:3.583246px;}
.ls3_c01074{letter-spacing:3.920400px;}
.ls2_c01074{letter-spacing:4.395610px;}
.ls11_c01074{letter-spacing:29.937798px;}
.ls12_c01074{letter-spacing:52.747398px;}
.ls4_c01074{letter-spacing:57.024198px;}
.lsd_c01074{letter-spacing:59.875398px;}
.sc__c01074{text-shadow:none;}
.sc0_c01074{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01074{-webkit-text-stroke:0px transparent;}
.sc0_c01074{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01074{word-spacing:-23.185246px;}
.ws0_c01074{word-spacing:-22.518778px;}
.ws1_c01074{word-spacing:-22.181623px;}
.ws3_c01074{word-spacing:0.000000px;}
._2_c01074{margin-left:-3.703313px;}
._0_c01074{margin-left:-1.160438px;}
._1_c01074{width:5.817874px;}
.fc0_c01074{color:transparent;}
.fse_c01074{font-size:22.572000px;}
.fs14_c01074{font-size:28.314000px;}
.fsf_c01074{font-size:29.937798px;}
.fs10_c01074{font-size:34.056198px;}
.fsa_c01074{font-size:36.234000px;}
.fsd_c01074{font-size:39.600000px;}
.fs13_c01074{font-size:40.986198px;}
.fs16_c01074{font-size:46.728000px;}
.fs11_c01074{font-size:52.747398px;}
.fs15_c01074{font-size:55.440000px;}
.fs2_c01074{font-size:57.024198px;}
.fs7_c01074{font-size:59.875398px;}
.fs3_c01074{font-size:64.548000px;}
.fs12_c01074{font-size:65.736198px;}
.fsc_c01074{font-size:66.528000px;}
.fs6_c01074{font-size:68.112198px;}
.fs8_c01074{font-size:70.488000px;}
.fs4_c01074{font-size:71.280000px;}
.fs5_c01074{font-size:74.844000px;}
.fs9_c01074{font-size:77.022198px;}
.fs1_c01074{font-size:78.408000px;}
.fsb_c01074{font-size:83.556198px;}
.fs0_c01074{font-size:87.912198px;}
.y0_c01074{bottom:0.000000px;}
.y24_c01074{bottom:7.391385px;}
.y23_c01074{bottom:13.093785px;}
.y22_c01074{bottom:18.444735px;}
.y21_c01074{bottom:36.616185px;}
.y1_c01074{bottom:76.500000px;}
.y20_c01074{bottom:127.854585px;}
.y1f_c01074{bottom:161.717535px;}
.y1e_c01074{bottom:194.862735px;}
.y1d_c01074{bottom:227.290185px;}
.y1c_c01074{bottom:259.366185px;}
.y1b_c01074{bottom:276.473385px;}
.y1a_c01074{bottom:284.319135px;}
.y19_c01074{bottom:295.367535px;}
.y18_c01074{bottom:298.218735px;}
.y17_c01074{bottom:307.480185px;}
.y16_c01074{bottom:323.874585px;}
.y15_c01074{bottom:355.950585px;}
.y14_c01074{bottom:388.382985px;}
.y13_c01074{bottom:417.251385px;}
.y12_c01074{bottom:420.820335px;}
.y11_c01074{bottom:452.891385px;}
.y10_c01074{bottom:484.615935px;}
.yf_c01074{bottom:516.691935px;}
.ye_c01074{bottom:548.050185px;}
.yd_c01074{bottom:580.131135px;}
.yc_c01074{bottom:611.137935px;}
.yb_c01074{bottom:643.926735px;}
.ya_c01074{bottom:675.641385px;}
.y9_c01074{bottom:708.430185px;}
.y8_c01074{bottom:772.943535px;}
.y7_c01074{bottom:805.732335px;}
.y6_c01074{bottom:837.095535px;}
.y5_c01074{bottom:869.166585px;}
.y4_c01074{bottom:901.247535px;}
.y3_c01074{bottom:933.679935px;}
.y2_c01074{bottom:1075.878585px;}
.h11_c01074{height:19.938573px;}
.h10_c01074{height:23.541891px;}
.h15_c01074{height:29.530617px;}
.h13_c01074{height:35.129767px;}
.h12_c01074{height:35.519550px;}
.hc_c01074{height:37.790930px;}
.h4_c01074{height:37.978116px;}
.h9_c01074{height:39.877015px;}
.hf_c01074{height:41.301563px;}
.h17_c01074{height:48.735844px;}
.h16_c01074{height:57.822188px;}
.h8_c01074{height:66.848397px;}
.h5_c01074{height:67.321547px;}
.h14_c01074{height:68.560800px;}
.ha_c01074{height:69.180117px;}
.he_c01074{height:69.386625px;}
.h6_c01074{height:69.957422px;}
.h7_c01074{height:73.455293px;}
.hb_c01074{height:75.593075px;}
.h3_c01074{height:76.953164px;}
.hd_c01074{height:82.005839px;}
.h2_c01074{height:86.281015px;}
.h1_c01074{height:1110.000000px;}
.h0_c01074{height:1263.000000px;}
.w1_c01074{width:775.500000px;}
.w0_c01074{width:892.500000px;}
.x0_c01074{left:0.000000px;}
.x1_c01074{left:58.500000px;}
.x6c_c01074{left:74.603085px;}
.x26_c01074{left:76.934535px;}
.x33_c01074{left:78.196785px;}
.x3_c01074{left:79.251135px;}
.x34_c01074{left:110.921235px;}
.x13_c01074{left:112.371585px;}
.x4c_c01074{left:120.761835px;}
.x3e_c01074{left:121.900335px;}
.x27_c01074{left:123.014085px;}
.x67_c01074{left:131.369685px;}
.x57_c01074{left:132.721035px;}
.x2d_c01074{left:133.978335px;}
.x47_c01074{left:144.066435px;}
.x35_c01074{left:145.120785px;}
.x28_c01074{left:154.976235px;}
.x58_c01074{left:165.806835px;}
.x2e_c01074{left:167.098785px;}
.x42_c01074{left:176.375085px;}
.x14_c01074{left:177.949185px;}
.xc_c01074{left:189.235185px;}
.x43_c01074{left:199.308435px;}
.x4_c01074{left:200.402385px;}
.x69_c01074{left:209.673735px;}
.x73_c01074{left:221.113185px;}
.x1c_c01074{left:222.157635px;}
.x63_c01074{left:232.517985px;}
.x44_c01074{left:233.542635px;}
.x15_c01074{left:243.848535px;}
.x29_c01074{left:245.338485px;}
.x6a_c01074{left:253.694085px;}
.x1d_c01074{left:255.099885px;}
.x2a_c01074{left:264.787035px;}
.x36_c01074{left:266.687835px;}
.x6d_c01074{left:276.280935px;}
.xd_c01074{left:278.137185px;}
.x51_c01074{left:279.443985px;}
.x55_c01074{left:287.240235px;}
.x68_c01074{left:289.413285px;}
.x74_c01074{left:290.497335px;}
.x2b_c01074{left:300.204285px;}
.xe_c01074{left:310.015185px;}
.x21_c01074{left:311.638785px;}
.x52_c01074{left:321.484335px;}
.x5_c01074{left:322.652535px;}
.x64_c01074{left:331.394235px;}
.x3b_c01074{left:333.364335px;}
.x71_c01074{left:342.764385px;}
.x45_c01074{left:344.021685px;}
.x48_c01074{left:353.887035px;}
.x6_c01074{left:355.055235px;}
.x1e_c01074{left:356.381835px;}
.x75_c01074{left:364.890885px;}
.x22_c01074{left:366.098685px;}
.x6e_c01074{left:375.959085px;}
.x2f_c01074{left:377.439135px;}
.x7_c01074{left:388.066785px;}
.x16_c01074{left:389.299335px;}
.x6f_c01074{left:398.045985px;}
.x23_c01074{left:399.986385px;}
.x3c_c01074{left:411.707985px;}
.x30_c01074{left:421.340685px;}
.x17_c01074{left:422.380185px;}
.x4d_c01074{left:423.385035px;}
.x37_c01074{left:431.903985px;}
.x6b_c01074{left:433.765185px;}
.xf_c01074{left:444.179985px;}
.x18_c01074{left:454.520535px;}
.x59_c01074{left:455.564985px;}
.x3f_c01074{left:465.395685px;}
.x8_c01074{left:466.945035px;}
.x2c_c01074{left:468.048885px;}
.x49_c01074{left:477.003435px;}
.x53_c01074{left:487.155885px;}
.x10_c01074{left:489.106185px;}
.x4e_c01074{left:498.674535px;}
.x61_c01074{left:509.376435px;}
.x38_c01074{left:510.782235px;}
.x24_c01074{left:521.538585px;}
.x1f_c01074{left:531.349485px;}
.x3d_c01074{left:532.804785px;}
.x62_c01074{left:542.026635px;}
.x31_c01074{left:543.625485px;}
.x19_c01074{left:554.069985px;}
.x5f_c01074{left:564.905535px;}
.x40_c01074{left:575.166885px;}
.x9_c01074{left:576.666735px;}
.x56_c01074{left:585.903435px;}
.x1a_c01074{left:587.066685px;}
.x46_c01074{left:588.512085px;}
.x11_c01074{left:597.595335px;}
.x5a_c01074{left:598.753635px;}
.x5b_c01074{left:608.836785px;}
.x32_c01074{left:610.569285px;}
.x1b_c01074{left:619.726785px;}
.x12_c01074{left:620.860335px;}
.x39_c01074{left:621.954285px;}
.x76_c01074{left:623.157135px;}
.x70_c01074{left:630.839535px;}
.x4a_c01074{left:632.319585px;}
.x5c_c01074{left:633.477885px;}
.x4f_c01074{left:642.506685px;}
.xa_c01074{left:643.635285px;}
.x5d_c01074{left:652.480935px;}
.x20_c01074{left:653.767935px;}
.x4b_c01074{left:664.697535px;}
.x25_c01074{left:665.845935px;}
.x5e_c01074{left:675.839985px;}
.x41_c01074{left:677.171535px;}
.x54_c01074{left:685.655835px;}
.xb_c01074{left:687.249735px;}
.x2_c01074{left:697.907085px;}
.x50_c01074{left:700.713735px;}
.x78_c01074{left:703.347135px;}
.x65_c01074{left:705.752835px;}
.x66_c01074{left:707.198235px;}
.x3a_c01074{left:709.336635px;}
.x72_c01074{left:710.509785px;}
.x77_c01074{left:712.568985px;}
.x60_c01074{left:719.286135px;}
@media print{
.v0_c01074{vertical-align:0.000000pt;}
.v1_c01074{vertical-align:7.585600pt;}
.ls9_c01074{letter-spacing:-2.439360pt;}
.ls15_c01074{letter-spacing:-1.453760pt;}
.ls8_c01074{letter-spacing:-1.268467pt;}
.ls13_c01074{letter-spacing:-0.843322pt;}
.ls7_c01074{letter-spacing:-0.432115pt;}
.ls5_c01074{letter-spacing:0.000000pt;}
.lsb_c01074{letter-spacing:1.073318pt;}
.ls10_c01074{letter-spacing:1.610400pt;}
.lsf_c01074{letter-spacing:2.184007pt;}
.lsc_c01074{letter-spacing:2.292998pt;}
.ls0_c01074{letter-spacing:2.592691pt;}
.ls14_c01074{letter-spacing:2.921609pt;}
.lsa_c01074{letter-spacing:3.027209pt;}
.lse_c01074{letter-spacing:3.132800pt;}
.ls6_c01074{letter-spacing:3.168000pt;}
.ls1_c01074{letter-spacing:3.185107pt;}
.ls3_c01074{letter-spacing:3.484800pt;}
.ls2_c01074{letter-spacing:3.907209pt;}
.ls11_c01074{letter-spacing:26.611376pt;}
.ls12_c01074{letter-spacing:46.886576pt;}
.ls4_c01074{letter-spacing:50.688176pt;}
.lsd_c01074{letter-spacing:53.222576pt;}
.ws2_c01074{word-spacing:-20.609107pt;}
.ws0_c01074{word-spacing:-20.016691pt;}
.ws1_c01074{word-spacing:-19.716998pt;}
.ws3_c01074{word-spacing:0.000000pt;}
._2_c01074{margin-left:-3.291834pt;}
._0_c01074{margin-left:-1.031501pt;}
._1_c01074{width:5.171443pt;}
.fse_c01074{font-size:20.064000pt;}
.fs14_c01074{font-size:25.168000pt;}
.fsf_c01074{font-size:26.611376pt;}
.fs10_c01074{font-size:30.272176pt;}
.fsa_c01074{font-size:32.208000pt;}
.fsd_c01074{font-size:35.200000pt;}
.fs13_c01074{font-size:36.432176pt;}
.fs16_c01074{font-size:41.536000pt;}
.fs11_c01074{font-size:46.886576pt;}
.fs15_c01074{font-size:49.280000pt;}
.fs2_c01074{font-size:50.688176pt;}
.fs7_c01074{font-size:53.222576pt;}
.fs3_c01074{font-size:57.376000pt;}
.fs12_c01074{font-size:58.432176pt;}
.fsc_c01074{font-size:59.136000pt;}
.fs6_c01074{font-size:60.544176pt;}
.fs8_c01074{font-size:62.656000pt;}
.fs4_c01074{font-size:63.360000pt;}
.fs5_c01074{font-size:66.528000pt;}
.fs9_c01074{font-size:68.464176pt;}
.fs1_c01074{font-size:69.696000pt;}
.fsb_c01074{font-size:74.272176pt;}
.fs0_c01074{font-size:78.144176pt;}
.y0_c01074{bottom:0.000000pt;}
.y24_c01074{bottom:6.570120pt;}
.y23_c01074{bottom:11.638920pt;}
.y22_c01074{bottom:16.395320pt;}
.y21_c01074{bottom:32.547720pt;}
.y1_c01074{bottom:68.000000pt;}
.y20_c01074{bottom:113.648520pt;}
.y1f_c01074{bottom:143.748920pt;}
.y1e_c01074{bottom:173.211320pt;}
.y1d_c01074{bottom:202.035720pt;}
.y1c_c01074{bottom:230.547720pt;}
.y1b_c01074{bottom:245.754120pt;}
.y1a_c01074{bottom:252.728120pt;}
.y19_c01074{bottom:262.548920pt;}
.y18_c01074{bottom:265.083320pt;}
.y17_c01074{bottom:273.315720pt;}
.y16_c01074{bottom:287.888520pt;}
.y15_c01074{bottom:316.400520pt;}
.y14_c01074{bottom:345.229320pt;}
.y13_c01074{bottom:370.890120pt;}
.y12_c01074{bottom:374.062520pt;}
.y11_c01074{bottom:402.570120pt;}
.y10_c01074{bottom:430.769720pt;}
.yf_c01074{bottom:459.281720pt;}
.ye_c01074{bottom:487.155720pt;}
.yd_c01074{bottom:515.672120pt;}
.yc_c01074{bottom:543.233720pt;}
.yb_c01074{bottom:572.379320pt;}
.ya_c01074{bottom:600.570120pt;}
.y9_c01074{bottom:629.715720pt;}
.y8_c01074{bottom:687.060920pt;}
.y7_c01074{bottom:716.206520pt;}
.y6_c01074{bottom:744.084920pt;}
.y5_c01074{bottom:772.592520pt;}
.y4_c01074{bottom:801.108920pt;}
.y3_c01074{bottom:829.937720pt;}
.y2_c01074{bottom:956.336520pt;}
.h11_c01074{height:17.723176pt;}
.h10_c01074{height:20.926125pt;}
.h15_c01074{height:26.249438pt;}
.h13_c01074{height:31.226460pt;}
.h12_c01074{height:31.572934pt;}
.hc_c01074{height:33.591938pt;}
.h4_c01074{height:33.758325pt;}
.h9_c01074{height:35.446236pt;}
.hf_c01074{height:36.712500pt;}
.h17_c01074{height:43.320750pt;}
.h16_c01074{height:51.397500pt;}
.h8_c01074{height:59.420798pt;}
.h5_c01074{height:59.841375pt;}
.h14_c01074{height:60.942934pt;}
.ha_c01074{height:61.493438pt;}
.he_c01074{height:61.677000pt;}
.h6_c01074{height:62.184375pt;}
.h7_c01074{height:65.293594pt;}
.hb_c01074{height:67.193845pt;}
.h3_c01074{height:68.402813pt;}
.hd_c01074{height:72.894079pt;}
.h2_c01074{height:76.694235pt;}
.h1_c01074{height:986.666667pt;}
.h0_c01074{height:1122.666667pt;}
.w1_c01074{width:689.333333pt;}
.w0_c01074{width:793.333333pt;}
.x0_c01074{left:0.000000pt;}
.x1_c01074{left:52.000000pt;}
.x6c_c01074{left:66.313853pt;}
.x26_c01074{left:68.386253pt;}
.x33_c01074{left:69.508253pt;}
.x3_c01074{left:70.445453pt;}
.x34_c01074{left:98.596653pt;}
.x13_c01074{left:99.885853pt;}
.x4c_c01074{left:107.343853pt;}
.x3e_c01074{left:108.355853pt;}
.x27_c01074{left:109.345853pt;}
.x67_c01074{left:116.773053pt;}
.x57_c01074{left:117.974253pt;}
.x2d_c01074{left:119.091853pt;}
.x47_c01074{left:128.059053pt;}
.x35_c01074{left:128.996253pt;}
.x28_c01074{left:137.756653pt;}
.x58_c01074{left:147.383853pt;}
.x2e_c01074{left:148.532253pt;}
.x42_c01074{left:156.777853pt;}
.x14_c01074{left:158.177053pt;}
.xc_c01074{left:168.209053pt;}
.x43_c01074{left:177.163053pt;}
.x4_c01074{left:178.135453pt;}
.x69_c01074{left:186.376653pt;}
.x73_c01074{left:196.545053pt;}
.x1c_c01074{left:197.473453pt;}
.x63_c01074{left:206.682653pt;}
.x44_c01074{left:207.593453pt;}
.x15_c01074{left:216.754253pt;}
.x29_c01074{left:218.078653pt;}
.x6a_c01074{left:225.505853pt;}
.x1d_c01074{left:226.755453pt;}
.x2a_c01074{left:235.366253pt;}
.x36_c01074{left:237.055853pt;}
.x6d_c01074{left:245.583053pt;}
.xd_c01074{left:247.233053pt;}
.x51_c01074{left:248.394653pt;}
.x55_c01074{left:255.324653pt;}
.x68_c01074{left:257.256253pt;}
.x74_c01074{left:258.219853pt;}
.x2b_c01074{left:266.848253pt;}
.xe_c01074{left:275.569053pt;}
.x21_c01074{left:277.012253pt;}
.x52_c01074{left:285.763853pt;}
.x5_c01074{left:286.802253pt;}
.x64_c01074{left:294.572653pt;}
.x3b_c01074{left:296.323853pt;}
.x71_c01074{left:304.679453pt;}
.x45_c01074{left:305.797053pt;}
.x48_c01074{left:314.566253pt;}
.x6_c01074{left:315.604653pt;}
.x1e_c01074{left:316.783853pt;}
.x75_c01074{left:324.347453pt;}
.x22_c01074{left:325.421053pt;}
.x6e_c01074{left:334.185853pt;}
.x2f_c01074{left:335.501453pt;}
.x7_c01074{left:344.948253pt;}
.x16_c01074{left:346.043853pt;}
.x6f_c01074{left:353.818653pt;}
.x23_c01074{left:355.543453pt;}
.x3c_c01074{left:365.962653pt;}
.x30_c01074{left:374.525053pt;}
.x17_c01074{left:375.449053pt;}
.x4d_c01074{left:376.342253pt;}
.x37_c01074{left:383.914653pt;}
.x6b_c01074{left:385.569053pt;}
.xf_c01074{left:394.826653pt;}
.x18_c01074{left:404.018253pt;}
.x59_c01074{left:404.946653pt;}
.x3f_c01074{left:413.685053pt;}
.x8_c01074{left:415.062253pt;}
.x2c_c01074{left:416.043453pt;}
.x49_c01074{left:424.003053pt;}
.x53_c01074{left:433.027453pt;}
.x10_c01074{left:434.761053pt;}
.x4e_c01074{left:443.266253pt;}
.x61_c01074{left:452.779053pt;}
.x38_c01074{left:454.028653pt;}
.x24_c01074{left:463.589853pt;}
.x1f_c01074{left:472.310653pt;}
.x3d_c01074{left:473.604253pt;}
.x62_c01074{left:481.801453pt;}
.x31_c01074{left:483.222653pt;}
.x19_c01074{left:492.506653pt;}
.x5f_c01074{left:502.138253pt;}
.x40_c01074{left:511.259453pt;}
.x9_c01074{left:512.592653pt;}
.x56_c01074{left:520.803053pt;}
.x1a_c01074{left:521.837053pt;}
.x46_c01074{left:523.121853pt;}
.x11_c01074{left:531.195853pt;}
.x5a_c01074{left:532.225453pt;}
.x5b_c01074{left:541.188253pt;}
.x32_c01074{left:542.728253pt;}
.x1b_c01074{left:550.868253pt;}
.x12_c01074{left:551.875853pt;}
.x39_c01074{left:552.848253pt;}
.x76_c01074{left:553.917453pt;}
.x70_c01074{left:560.746253pt;}
.x4a_c01074{left:562.061853pt;}
.x5c_c01074{left:563.091453pt;}
.x4f_c01074{left:571.117053pt;}
.xa_c01074{left:572.120253pt;}
.x5d_c01074{left:579.983053pt;}
.x20_c01074{left:581.127053pt;}
.x4b_c01074{left:590.842253pt;}
.x25_c01074{left:591.863053pt;}
.x5e_c01074{left:600.746653pt;}
.x41_c01074{left:601.930253pt;}
.x54_c01074{left:609.471853pt;}
.xb_c01074{left:610.888653pt;}
.x2_c01074{left:620.361853pt;}
.x50_c01074{left:622.856653pt;}
.x78_c01074{left:625.197453pt;}
.x65_c01074{left:627.335853pt;}
.x66_c01074{left:628.620653pt;}
.x3a_c01074{left:630.521453pt;}
.x72_c01074{left:631.564253pt;}
.x77_c01074{left:633.394653pt;}
.x60_c01074{left:639.365453pt;}
}





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

.ir_c01075:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01075{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01075;src:url('chunks/assets/font_3acd8a1165f2443c9471b070.woff2')format("woff");}.ff1_c01075{font-family:ff1_c01075;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01075;src:url('chunks/assets/font_442f0d65d926a6bbf25fe916.woff2')format("woff");}.ff2_c01075{font-family:ff2_c01075;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01075;src:url('chunks/assets/font_6847b6f7a99b027298554103.woff2')format("woff");}.ff3_c01075{font-family:ff3_c01075;line-height:0.666000;font-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_c01075{transform:matrix(0.182539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182539,0.000000,0.000000,0.250000,0,0);}
.m31_c01075{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m46_c01075{transform:matrix(0.189025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189025,0.000000,0.000000,0.250000,0,0);}
.m1e_c01075{transform:matrix(0.209367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209367,0.000000,0.000000,0.250000,0,0);}
.m26_c01075{transform:matrix(0.227192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227192,0.000000,0.000000,0.250000,0,0);}
.m24_c01075{transform:matrix(0.238846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238846,0.000000,0.000000,0.250000,0,0);}
.m43_c01075{transform:matrix(0.242141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242141,0.000000,0.000000,0.250000,0,0);}
.m2_c01075{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0_c01075{transform:matrix(0.251341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251341,0.000000,0.000000,0.250000,0,0);}
.m5e_c01075{transform:matrix(0.256222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256222,0.000000,0.000000,0.250000,0,0);}
.m18_c01075{transform:matrix(0.258779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258779,0.000000,0.000000,0.250000,0,0);}
.m9a_c01075{transform:matrix(0.259852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259852,0.000000,0.000000,0.250000,0,0);}
.m2e_c01075{transform:matrix(0.260840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260840,0.000000,0.000000,0.250000,0,0);}
.m8b_c01075{transform:matrix(0.261199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261199,0.000000,0.000000,0.250000,0,0);}
.m66_c01075{transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);}
.m3d_c01075{transform:matrix(0.269052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269052,0.000000,0.000000,0.250000,0,0);}
.m6a_c01075{transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);}
.m74_c01075{transform:matrix(0.270785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270785,0.000000,0.000000,0.250000,0,0);}
.m2d_c01075{transform:matrix(0.271044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271044,0.000000,0.000000,0.250000,0,0);}
.m4b_c01075{transform:matrix(0.272744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272744,0.000000,0.000000,0.250000,0,0);}
.m4e_c01075{transform:matrix(0.272825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272825,0.000000,0.000000,0.250000,0,0);}
.m9_c01075{transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);}
.m9b_c01075{transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);}
.m2f_c01075{transform:matrix(0.274610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274610,0.000000,0.000000,0.250000,0,0);}
.md_c01075{transform:matrix(0.275046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275046,0.000000,0.000000,0.250000,0,0);}
.m3f_c01075{transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);}
.m34_c01075{transform:matrix(0.276510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276510,0.000000,0.000000,0.250000,0,0);}
.m81_c01075{transform:matrix(0.276672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276672,0.000000,0.000000,0.250000,0,0);}
.m90_c01075{transform:matrix(0.276965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276965,0.000000,0.000000,0.250000,0,0);}
.m4f_c01075{transform:matrix(0.276985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276985,0.000000,0.000000,0.250000,0,0);}
.m3a_c01075{transform:matrix(0.277268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277268,0.000000,0.000000,0.250000,0,0);}
.m7e_c01075{transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);}
.m12_c01075{transform:matrix(0.278956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278956,0.000000,0.000000,0.250000,0,0);}
.m8f_c01075{transform:matrix(0.280022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280022,0.000000,0.000000,0.250000,0,0);}
.m5b_c01075{transform:matrix(0.280742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280742,0.000000,0.000000,0.250000,0,0);}
.m6e_c01075{transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);}
.m72_c01075{transform:matrix(0.281556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281556,0.000000,0.000000,0.250000,0,0);}
.m55_c01075{transform:matrix(0.282562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282562,0.000000,0.000000,0.250000,0,0);}
.m63_c01075{transform:matrix(0.282729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282729,0.000000,0.000000,0.250000,0,0);}
.m4d_c01075{transform:matrix(0.283285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283285,0.000000,0.000000,0.250000,0,0);}
.m6_c01075{transform:matrix(0.283625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283625,0.000000,0.000000,0.250000,0,0);}
.m21_c01075{transform:matrix(0.283709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283709,0.000000,0.000000,0.250000,0,0);}
.m5a_c01075{transform:matrix(0.284650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284650,0.000000,0.000000,0.250000,0,0);}
.m1b_c01075{transform:matrix(0.285253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285253,0.000000,0.000000,0.250000,0,0);}
.m9d_c01075{transform:matrix(0.285568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285568,0.000000,0.000000,0.250000,0,0);}
.m14_c01075{transform:matrix(0.285652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285652,0.000000,0.000000,0.250000,0,0);}
.m59_c01075{transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);}
.ma0_c01075{transform:matrix(0.286904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286904,0.000000,0.000000,0.250000,0,0);}
.m3c_c01075{transform:matrix(0.287374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287374,0.000000,0.000000,0.250000,0,0);}
.m68_c01075{transform:matrix(0.288796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288796,0.000000,0.000000,0.250000,0,0);}
.m6f_c01075{transform:matrix(0.289035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289035,0.000000,0.000000,0.250000,0,0);}
.m71_c01075{transform:matrix(0.289122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289122,0.000000,0.000000,0.250000,0,0);}
.mf_c01075{transform:matrix(0.289404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289404,0.000000,0.000000,0.250000,0,0);}
.m10_c01075{transform:matrix(0.289440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289440,0.000000,0.000000,0.250000,0,0);}
.m70_c01075{transform:matrix(0.290493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290493,0.000000,0.000000,0.250000,0,0);}
.m8_c01075{transform:matrix(0.290803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290803,0.000000,0.000000,0.250000,0,0);}
.m58_c01075{transform:matrix(0.291787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291787,0.000000,0.000000,0.250000,0,0);}
.m94_c01075{transform:matrix(0.292159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292159,0.000000,0.000000,0.250000,0,0);}
.m91_c01075{transform:matrix(0.294401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294401,0.000000,0.000000,0.250000,0,0);}
.m52_c01075{transform:matrix(0.294503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294503,0.000000,0.000000,0.250000,0,0);}
.m95_c01075{transform:matrix(0.294612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294612,0.000000,0.000000,0.250000,0,0);}
.m98_c01075{transform:matrix(0.295056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295056,0.000000,0.000000,0.250000,0,0);}
.mb_c01075{transform:matrix(0.296080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296080,0.000000,0.000000,0.250000,0,0);}
.m7a_c01075{transform:matrix(0.296239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296239,0.000000,0.000000,0.250000,0,0);}
.m8c_c01075{transform:matrix(0.296346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296346,0.000000,0.000000,0.250000,0,0);}
.m2a_c01075{transform:matrix(0.296995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296995,0.000000,0.000000,0.250000,0,0);}
.m33_c01075{transform:matrix(0.297564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297564,0.000000,0.000000,0.250000,0,0);}
.m3b_c01075{transform:matrix(0.297756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297756,0.000000,0.000000,0.250000,0,0);}
.m79_c01075{transform:matrix(0.298058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298058,0.000000,0.000000,0.250000,0,0);}
.m5d_c01075{transform:matrix(0.298191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298191,0.000000,0.000000,0.250000,0,0);}
.mc_c01075{transform:matrix(0.299341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299341,0.000000,0.000000,0.250000,0,0);}
.m89_c01075{transform:matrix(0.299555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299555,0.000000,0.000000,0.250000,0,0);}
.m22_c01075{transform:matrix(0.300828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300828,0.000000,0.000000,0.250000,0,0);}
.m29_c01075{transform:matrix(0.300910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300910,0.000000,0.000000,0.250000,0,0);}
.m9e_c01075{transform:matrix(0.301888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301888,0.000000,0.000000,0.250000,0,0);}
.m53_c01075{transform:matrix(0.301977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301977,0.000000,0.000000,0.250000,0,0);}
.me_c01075{transform:matrix(0.302223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302223,0.000000,0.000000,0.250000,0,0);}
.m25_c01075{transform:matrix(0.302495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302495,0.000000,0.000000,0.250000,0,0);}
.m69_c01075{transform:matrix(0.302741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302741,0.000000,0.000000,0.250000,0,0);}
.m16_c01075{transform:matrix(0.303143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303143,0.000000,0.000000,0.250000,0,0);}
.m51_c01075{transform:matrix(0.303424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303424,0.000000,0.000000,0.250000,0,0);}
.m20_c01075{transform:matrix(0.303644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303644,0.000000,0.000000,0.250000,0,0);}
.m9f_c01075{transform:matrix(0.303695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303695,0.000000,0.000000,0.250000,0,0);}
.m57_c01075{transform:matrix(0.304055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304055,0.000000,0.000000,0.250000,0,0);}
.m38_c01075{transform:matrix(0.306543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306543,0.000000,0.000000,0.250000,0,0);}
.m93_c01075{transform:matrix(0.307413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307413,0.000000,0.000000,0.250000,0,0);}
.m76_c01075{transform:matrix(0.307690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307690,0.000000,0.000000,0.250000,0,0);}
.m50_c01075{transform:matrix(0.307994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307994,0.000000,0.000000,0.250000,0,0);}
.m78_c01075{transform:matrix(0.308010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308010,0.000000,0.000000,0.250000,0,0);}
.m92_c01075{transform:matrix(0.308293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308293,0.000000,0.000000,0.250000,0,0);}
.m60_c01075{transform:matrix(0.308524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308524,0.000000,0.000000,0.250000,0,0);}
.m39_c01075{transform:matrix(0.309105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309105,0.000000,0.000000,0.250000,0,0);}
.m87_c01075{transform:matrix(0.309483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309483,0.000000,0.000000,0.250000,0,0);}
.ma_c01075{transform:matrix(0.309629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309629,0.000000,0.000000,0.250000,0,0);}
.m42_c01075{transform:matrix(0.309648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309648,0.000000,0.000000,0.250000,0,0);}
.m96_c01075{transform:matrix(0.310496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310496,0.000000,0.000000,0.250000,0,0);}
.m1d_c01075{transform:matrix(0.311495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311495,0.000000,0.000000,0.250000,0,0);}
.m8d_c01075{transform:matrix(0.311660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311660,0.000000,0.000000,0.250000,0,0);}
.m73_c01075{transform:matrix(0.312081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312081,0.000000,0.000000,0.250000,0,0);}
.m85_c01075{transform:matrix(0.313413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313413,0.000000,0.000000,0.250000,0,0);}
.m6b_c01075{transform:matrix(0.313468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313468,0.000000,0.000000,0.250000,0,0);}
.m6d_c01075{transform:matrix(0.314248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314248,0.000000,0.000000,0.250000,0,0);}
.m75_c01075{transform:matrix(0.315561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315561,0.000000,0.000000,0.250000,0,0);}
.m1c_c01075{transform:matrix(0.316300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316300,0.000000,0.000000,0.250000,0,0);}
.m7f_c01075{transform:matrix(0.316480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316480,0.000000,0.000000,0.250000,0,0);}
.m56_c01075{transform:matrix(0.316592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316592,0.000000,0.000000,0.250000,0,0);}
.m2c_c01075{transform:matrix(0.316670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316670,0.000000,0.000000,0.250000,0,0);}
.m84_c01075{transform:matrix(0.317031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317031,0.000000,0.000000,0.250000,0,0);}
.m86_c01075{transform:matrix(0.317326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317326,0.000000,0.000000,0.250000,0,0);}
.m97_c01075{transform:matrix(0.317791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317791,0.000000,0.000000,0.250000,0,0);}
.m44_c01075{transform:matrix(0.317817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317817,0.000000,0.000000,0.250000,0,0);}
.m2b_c01075{transform:matrix(0.318355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318355,0.000000,0.000000,0.250000,0,0);}
.m65_c01075{transform:matrix(0.318556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318556,0.000000,0.000000,0.250000,0,0);}
.m36_c01075{transform:matrix(0.318570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318570,0.000000,0.000000,0.250000,0,0);}
.m13_c01075{transform:matrix(0.320006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320006,0.000000,0.000000,0.250000,0,0);}
.m27_c01075{transform:matrix(0.321037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321037,0.000000,0.000000,0.250000,0,0);}
.m62_c01075{transform:matrix(0.321361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321361,0.000000,0.000000,0.250000,0,0);}
.m1_c01075{transform:matrix(0.321791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321791,0.000000,0.000000,0.250000,0,0);}
.m47_c01075{transform:matrix(0.324782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324782,0.000000,0.000000,0.250000,0,0);}
.m32_c01075{transform:matrix(0.325696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325696,0.000000,0.000000,0.250000,0,0);}
.m7d_c01075{transform:matrix(0.325909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325909,0.000000,0.000000,0.250000,0,0);}
.m23_c01075{transform:matrix(0.326352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326352,0.000000,0.000000,0.250000,0,0);}
.m7c_c01075{transform:matrix(0.326455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326455,0.000000,0.000000,0.250000,0,0);}
.m37_c01075{transform:matrix(0.329886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329886,0.000000,0.000000,0.250000,0,0);}
.m99_c01075{transform:matrix(0.330403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330403,0.000000,0.000000,0.250000,0,0);}
.m3e_c01075{transform:matrix(0.330758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330758,0.000000,0.000000,0.250000,0,0);}
.m54_c01075{transform:matrix(0.330981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330981,0.000000,0.000000,0.250000,0,0);}
.m80_c01075{transform:matrix(0.334200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334200,0.000000,0.000000,0.250000,0,0);}
.m41_c01075{transform:matrix(0.334817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334817,0.000000,0.000000,0.250000,0,0);}
.m19_c01075{transform:matrix(0.335396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335396,0.000000,0.000000,0.250000,0,0);}
.m6c_c01075{transform:matrix(0.336184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336184,0.000000,0.000000,0.250000,0,0);}
.m4c_c01075{transform:matrix(0.336574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336574,0.000000,0.000000,0.250000,0,0);}
.m5_c01075{transform:matrix(0.337629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337629,0.000000,0.000000,0.250000,0,0);}
.m17_c01075{transform:matrix(0.337993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337993,0.000000,0.000000,0.250000,0,0);}
.m88_c01075{transform:matrix(0.339155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339155,0.000000,0.000000,0.250000,0,0);}
.m9c_c01075{transform:matrix(0.339220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339220,0.000000,0.000000,0.250000,0,0);}
.m77_c01075{transform:matrix(0.339284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339284,0.000000,0.000000,0.250000,0,0);}
.m8a_c01075{transform:matrix(0.339642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339642,0.000000,0.000000,0.250000,0,0);}
.m8e_c01075{transform:matrix(0.341291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341291,0.000000,0.000000,0.250000,0,0);}
.m30_c01075{transform:matrix(0.341726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341726,0.000000,0.000000,0.250000,0,0);}
.m83_c01075{transform:matrix(0.341818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341818,0.000000,0.000000,0.250000,0,0);}
.m4a_c01075{transform:matrix(0.342028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342028,0.000000,0.000000,0.250000,0,0);}
.m45_c01075{transform:matrix(0.342830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342830,0.000000,0.000000,0.250000,0,0);}
.m4_c01075{transform:matrix(0.342926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342926,0.000000,0.000000,0.250000,0,0);}
.m5f_c01075{transform:matrix(0.343798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343798,0.000000,0.000000,0.250000,0,0);}
.m40_c01075{transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);}
.m67_c01075{transform:matrix(0.345553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345553,0.000000,0.000000,0.250000,0,0);}
.m7_c01075{transform:matrix(0.348892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348892,0.000000,0.000000,0.250000,0,0);}
.m11_c01075{transform:matrix(0.349655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349655,0.000000,0.000000,0.250000,0,0);}
.m28_c01075{transform:matrix(0.350046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350046,0.000000,0.000000,0.250000,0,0);}
.m3_c01075{transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);}
.m35_c01075{transform:matrix(0.355252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355252,0.000000,0.000000,0.250000,0,0);}
.m15_c01075{transform:matrix(0.357996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357996,0.000000,0.000000,0.250000,0,0);}
.m5c_c01075{transform:matrix(0.359199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359199,0.000000,0.000000,0.250000,0,0);}
.m61_c01075{transform:matrix(0.362885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362885,0.000000,0.000000,0.250000,0,0);}
.m49_c01075{transform:matrix(0.364102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364102,0.000000,0.000000,0.250000,0,0);}
.m64_c01075{transform:matrix(0.376847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376847,0.000000,0.000000,0.250000,0,0);}
.m1a_c01075{transform:matrix(0.377509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377509,0.000000,0.000000,0.250000,0,0);}
.m1f_c01075{transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);}
.m48_c01075{transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);}
.m7b_c01075{transform:matrix(0.412048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412048,0.000000,0.000000,0.250000,0,0);}
.v0_c01075{vertical-align:0.000000px;}
.ls7_c01075{letter-spacing:-2.647267px;}
.ls8_c01075{letter-spacing:-0.121018px;}
.lsc_c01075{letter-spacing:-0.030254px;}
.ls5_c01075{letter-spacing:0.000000px;}
.ls2_c01075{letter-spacing:0.589962px;}
.lsa_c01075{letter-spacing:1.679245px;}
.ls12_c01075{letter-spacing:3.009600px;}
.ls4_c01075{letter-spacing:3.286810px;}
.lsd_c01075{letter-spacing:3.351357px;}
.lsf_c01075{letter-spacing:3.388502px;}
.ls6_c01075{letter-spacing:3.479265px;}
.lse_c01075{letter-spacing:3.623400px;}
.ls3_c01075{letter-spacing:3.781810px;}
.ls10_c01075{letter-spacing:3.861000px;}
.ls1_c01075{letter-spacing:3.940200px;}
.ls0_c01075{letter-spacing:4.415400px;}
.ls9_c01075{letter-spacing:57.024198px;}
.lsb_c01075{letter-spacing:58.449798px;}
.ls11_c01075{letter-spacing:59.875398px;}
.sc__c01075{text-shadow:none;}
.sc0_c01075{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01075{-webkit-text-stroke:0px transparent;}
.sc0_c01075{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01075{word-spacing:-15.825608px;}
.ws2_c01075{word-spacing:0.000000px;}
.ws1_c01075{word-spacing:1.588449px;}
._0_c01075{width:1.221284px;}
.fc0_c01075{color:transparent;}
.fsa_c01075{font-size:22.176000px;}
.fs10_c01075{font-size:27.720000px;}
.fs6_c01075{font-size:50.886198px;}
.fs5_c01075{font-size:57.024198px;}
.fs7_c01075{font-size:58.449798px;}
.fse_c01075{font-size:59.875398px;}
.fsf_c01075{font-size:60.192000px;}
.fs3_c01075{font-size:65.736198px;}
.fs8_c01075{font-size:66.330000px;}
.fsb_c01075{font-size:72.468000px;}
.fs9_c01075{font-size:73.656198px;}
.fsc_c01075{font-size:74.844000px;}
.fs2_c01075{font-size:75.636198px;}
.fsd_c01075{font-size:77.220000px;}
.fs1_c01075{font-size:78.804000px;}
.fs4_c01075{font-size:79.398000px;}
.fs0_c01075{font-size:88.308000px;}
.y0_c01075{bottom:0.000000px;}
.y1_c01075{bottom:76.500000px;}
.y1b_c01075{bottom:96.491385px;}
.y1a_c01075{bottom:128.215935px;}
.y19_c01075{bottom:159.935535px;}
.y18_c01075{bottom:193.793535px;}
.y17_c01075{bottom:226.582335px;}
.y16_c01075{bottom:258.653385px;}
.y15_c01075{bottom:291.090735px;}
.y14_c01075{bottom:354.524985px;}
.y13_c01075{bottom:386.605935px;}
.y12_c01075{bottom:418.681935px;}
.y11_c01075{bottom:450.757935px;}
.y10_c01075{bottom:473.918985px;}
.yf_c01075{bottom:483.190335px;}
.ye_c01075{bottom:515.266335px;}
.yd_c01075{bottom:547.698735px;}
.yc_c01075{bottom:580.131135px;}
.yb_c01075{bottom:643.926735px;}
.ya_c01075{bottom:675.997785px;}
.y9_c01075{bottom:708.430185px;}
.y8_c01075{bottom:739.793385px;}
.y7_c01075{bottom:772.230735px;}
.y6_c01075{bottom:803.945385px;}
.y5_c01075{bottom:867.389535px;}
.y4_c01075{bottom:899.104185px;}
.y3_c01075{bottom:931.180185px;}
.y2_c01075{bottom:1068.037785px;}
.hb_c01075{height:23.128875px;}
.h11_c01075{height:28.911094px;}
.h7_c01075{height:37.978116px;}
.h8_c01075{height:38.927565px;}
.hf_c01075{height:39.877015px;}
.h10_c01075{height:59.075156px;}
.h5_c01075{height:68.560800px;}
.h9_c01075{height:69.180117px;}
.hc_c01075{height:71.123379px;}
.ha_c01075{height:72.289530px;}
.hd_c01075{height:73.455293px;}
.h4_c01075{height:74.232792px;}
.he_c01075{height:75.787207px;}
.h3_c01075{height:77.341816px;}
.h6_c01075{height:77.924795px;}
.h2_c01075{height:86.669473px;}
.h1_c01075{height:1110.000000px;}
.h0_c01075{height:1263.000000px;}
.w1_c01075{width:775.500000px;}
.w0_c01075{width:892.500000px;}
.x0_c01075{left:0.000000px;}
.x1_c01075{left:58.500000px;}
.x43_c01075{left:77.622585px;}
.x21_c01075{left:78.845235px;}
.x14_c01075{left:79.929285px;}
.x3_c01075{left:80.978685px;}
.x51_c01075{left:110.777685px;}
.x4_c01075{left:113.123985px;}
.x39_c01075{left:121.826085px;}
.xd_c01075{left:124.172385px;}
.x56_c01075{left:131.726085px;}
.x19_c01075{left:133.874385px;}
.x44_c01075{left:144.635685px;}
.x2f_c01075{left:146.585985px;}
.x5c_c01075{left:155.169285px;}
.x5_c01075{left:157.936335px;}
.x57_c01075{left:165.673185px;}
.x15_c01075{left:168.326385px;}
.x30_c01075{left:179.429235px;}
.x52_c01075{left:188.903535px;}
.x6_c01075{left:191.442885px;}
.x45_c01075{left:199.179735px;}
.x22_c01075{left:200.248935px;}
.x16_c01075{left:201.768585px;}
.x5e_c01075{left:210.767685px;}
.x29_c01075{left:212.203185px;}
.x3a_c01075{left:221.637885px;}
.x4a_c01075{left:223.202085px;}
.x5d_c01075{left:233.097135px;}
.x17_c01075{left:234.656385px;}
.x69_c01075{left:243.021885px;}
.x3b_c01075{left:244.937535px;}
.xe_c01075{left:246.046335px;}
.x42_c01075{left:255.906735px;}
.x2a_c01075{left:257.693685px;}
.x5f_c01075{left:266.955135px;}
.x63_c01075{left:276.513585px;}
.x37_c01075{left:278.107485px;}
.x1a_c01075{left:279.488535px;}
.x53_c01075{left:289.051935px;}
.x7_c01075{left:291.606135px;}
.x1b_c01075{left:300.382485px;}
.xf_c01075{left:301.986285px;}
.x23_c01075{left:312.054585px;}
.x1c_c01075{left:313.074285px;}
.x38_c01075{left:322.533735px;}
.x3c_c01075{left:334.690935px;}
.x33_c01075{left:344.264235px;}
.x24_c01075{left:345.625485px;}
.x58_c01075{left:355.466085px;}
.x4b_c01075{left:356.822385px;}
.x64_c01075{left:366.529335px;}
.x18_c01075{left:367.945035px;}
.x8_c01075{left:369.618135px;}
.x3d_c01075{left:377.369835px;}
.x1d_c01075{left:379.349835px;}
.x60_c01075{left:387.725235px;}
.x31_c01075{left:389.131035px;}
.x9_c01075{left:400.887285px;}
.x6a_c01075{left:409.960635px;}
.x25_c01075{left:411.599085px;}
.x10_c01075{left:412.836585px;}
.x3e_c01075{left:422.795985px;}
.x2b_c01075{left:433.007835px;}
.x26_c01075{left:446.580735px;}
.x34_c01075{left:456.332235px;}
.x2c_c01075{left:477.518235px;}
.x27_c01075{left:479.428935px;}
.x4c_c01075{left:487.848885px;}
.x65_c01075{left:488.962635px;}
.xa_c01075{left:490.912935px;}
.x54_c01075{left:499.798185px;}
.x49_c01075{left:506.703435px;}
.x32_c01075{left:511.202985px;}
.x3f_c01075{left:521.677185px;}
.x66_c01075{left:530.621835px;}
.x11_c01075{left:543.724485px;}
.x2d_c01075{left:554.866935px;}
.x1e_c01075{left:556.426185px;}
.x59_c01075{left:565.172835px;}
.x35_c01075{left:566.974635px;}
.x28_c01075{left:576.968685px;}
.x12_c01075{left:578.374485px;}
.x1f_c01075{left:588.002235px;}
.x61_c01075{left:597.273585px;}
.x4d_c01075{left:598.827885px;}
.x2e_c01075{left:611.638485px;}
.x67_c01075{left:619.870335px;}
.x46_c01075{left:620.949435px;}
.x4e_c01075{left:632.349285px;}
.xb_c01075{left:633.819435px;}
.x5a_c01075{left:642.298785px;}
.x36_c01075{left:643.387785px;}
.x6b_c01075{left:653.743185px;}
.x20_c01075{left:655.599435px;}
.x47_c01075{left:665.519235px;}
.x4f_c01075{left:666.895335px;}
.xc_c01075{left:668.251635px;}
.x5b_c01075{left:675.676635px;}
.x50_c01075{left:676.938885px;}
.x13_c01075{left:678.008085px;}
.x62_c01075{left:686.541885px;}
.x68_c01075{left:698.233785px;}
.x48_c01075{left:700.268235px;}
.x2_c01075{left:701.471085px;}
.x55_c01075{left:708.638685px;}
.x40_c01075{left:711.024585px;}
.x41_c01075{left:730.918635px;}
@media print{
.v0_c01075{vertical-align:0.000000pt;}
.ls7_c01075{letter-spacing:-2.353126pt;}
.ls8_c01075{letter-spacing:-0.107571pt;}
.lsc_c01075{letter-spacing:-0.026893pt;}
.ls5_c01075{letter-spacing:0.000000pt;}
.ls2_c01075{letter-spacing:0.524411pt;}
.lsa_c01075{letter-spacing:1.492662pt;}
.ls12_c01075{letter-spacing:2.675200pt;}
.ls4_c01075{letter-spacing:2.921609pt;}
.lsd_c01075{letter-spacing:2.978984pt;}
.lsf_c01075{letter-spacing:3.012001pt;}
.ls6_c01075{letter-spacing:3.092680pt;}
.lse_c01075{letter-spacing:3.220800pt;}
.ls3_c01075{letter-spacing:3.361609pt;}
.ls10_c01075{letter-spacing:3.432000pt;}
.ls1_c01075{letter-spacing:3.502400pt;}
.ls0_c01075{letter-spacing:3.924800pt;}
.ls9_c01075{letter-spacing:50.688176pt;}
.lsb_c01075{letter-spacing:51.955376pt;}
.ls11_c01075{letter-spacing:53.222576pt;}
.ws0_c01075{word-spacing:-14.067207pt;}
.ws2_c01075{word-spacing:0.000000pt;}
.ws1_c01075{word-spacing:1.411955pt;}
._0_c01075{width:1.085586pt;}
.fsa_c01075{font-size:19.712000pt;}
.fs10_c01075{font-size:24.640000pt;}
.fs6_c01075{font-size:45.232176pt;}
.fs5_c01075{font-size:50.688176pt;}
.fs7_c01075{font-size:51.955376pt;}
.fse_c01075{font-size:53.222576pt;}
.fsf_c01075{font-size:53.504000pt;}
.fs3_c01075{font-size:58.432176pt;}
.fs8_c01075{font-size:58.960000pt;}
.fsb_c01075{font-size:64.416000pt;}
.fs9_c01075{font-size:65.472176pt;}
.fsc_c01075{font-size:66.528000pt;}
.fs2_c01075{font-size:67.232176pt;}
.fsd_c01075{font-size:68.640000pt;}
.fs1_c01075{font-size:70.048000pt;}
.fs4_c01075{font-size:70.576000pt;}
.fs0_c01075{font-size:78.496000pt;}
.y0_c01075{bottom:0.000000pt;}
.y1_c01075{bottom:68.000000pt;}
.y1b_c01075{bottom:85.770120pt;}
.y1a_c01075{bottom:113.969720pt;}
.y19_c01075{bottom:142.164920pt;}
.y18_c01075{bottom:172.260920pt;}
.y17_c01075{bottom:201.406520pt;}
.y16_c01075{bottom:229.914120pt;}
.y15_c01075{bottom:258.747320pt;}
.y14_c01075{bottom:315.133320pt;}
.y13_c01075{bottom:343.649720pt;}
.y12_c01075{bottom:372.161720pt;}
.y11_c01075{bottom:400.673720pt;}
.y10_c01075{bottom:421.261320pt;}
.yf_c01075{bottom:429.502520pt;}
.ye_c01075{bottom:458.014520pt;}
.yd_c01075{bottom:486.843320pt;}
.yc_c01075{bottom:515.672120pt;}
.yb_c01075{bottom:572.379320pt;}
.ya_c01075{bottom:600.886920pt;}
.y9_c01075{bottom:629.715720pt;}
.y8_c01075{bottom:657.594120pt;}
.y7_c01075{bottom:686.427320pt;}
.y6_c01075{bottom:714.618120pt;}
.y5_c01075{bottom:771.012920pt;}
.y4_c01075{bottom:799.203720pt;}
.y3_c01075{bottom:827.715720pt;}
.y2_c01075{bottom:949.366920pt;}
.hb_c01075{height:20.559000pt;}
.h11_c01075{height:25.698750pt;}
.h7_c01075{height:33.758325pt;}
.h8_c01075{height:34.602280pt;}
.hf_c01075{height:35.446236pt;}
.h10_c01075{height:52.511250pt;}
.h5_c01075{height:60.942934pt;}
.h9_c01075{height:61.493438pt;}
.hc_c01075{height:63.220781pt;}
.ha_c01075{height:64.257360pt;}
.hd_c01075{height:65.293594pt;}
.h4_c01075{height:65.984704pt;}
.he_c01075{height:67.366406pt;}
.h3_c01075{height:68.748281pt;}
.h6_c01075{height:69.266484pt;}
.h2_c01075{height:77.039531pt;}
.h1_c01075{height:986.666667pt;}
.h0_c01075{height:1122.666667pt;}
.w1_c01075{width:689.333333pt;}
.w0_c01075{width:793.333333pt;}
.x0_c01075{left:0.000000pt;}
.x1_c01075{left:52.000000pt;}
.x43_c01075{left:68.997853pt;}
.x21_c01075{left:70.084653pt;}
.x14_c01075{left:71.048253pt;}
.x3_c01075{left:71.981053pt;}
.x51_c01075{left:98.469053pt;}
.x4_c01075{left:100.554653pt;}
.x39_c01075{left:108.289853pt;}
.xd_c01075{left:110.375453pt;}
.x56_c01075{left:117.089853pt;}
.x19_c01075{left:118.999453pt;}
.x44_c01075{left:128.565053pt;}
.x2f_c01075{left:130.298653pt;}
.x5c_c01075{left:137.928253pt;}
.x5_c01075{left:140.387853pt;}
.x57_c01075{left:147.265053pt;}
.x15_c01075{left:149.623453pt;}
.x30_c01075{left:159.492653pt;}
.x52_c01075{left:167.914253pt;}
.x6_c01075{left:170.171453pt;}
.x45_c01075{left:177.048653pt;}
.x22_c01075{left:177.999053pt;}
.x16_c01075{left:179.349853pt;}
.x5e_c01075{left:187.349053pt;}
.x29_c01075{left:188.625053pt;}
.x3a_c01075{left:197.011453pt;}
.x4a_c01075{left:198.401853pt;}
.x5d_c01075{left:207.197453pt;}
.x17_c01075{left:208.583453pt;}
.x69_c01075{left:216.019453pt;}
.x3b_c01075{left:217.722253pt;}
.xe_c01075{left:218.707853pt;}
.x42_c01075{left:227.472653pt;}
.x2a_c01075{left:229.061053pt;}
.x5f_c01075{left:237.293453pt;}
.x63_c01075{left:245.789853pt;}
.x37_c01075{left:247.206653pt;}
.x1a_c01075{left:248.434253pt;}
.x53_c01075{left:256.935053pt;}
.x7_c01075{left:259.205453pt;}
.x1b_c01075{left:267.006653pt;}
.xf_c01075{left:268.432253pt;}
.x23_c01075{left:277.381853pt;}
.x1c_c01075{left:278.288253pt;}
.x38_c01075{left:286.696653pt;}
.x3c_c01075{left:297.503053pt;}
.x33_c01075{left:306.012653pt;}
.x24_c01075{left:307.222653pt;}
.x58_c01075{left:315.969853pt;}
.x4b_c01075{left:317.175453pt;}
.x64_c01075{left:325.803853pt;}
.x18_c01075{left:327.062253pt;}
.x8_c01075{left:328.549453pt;}
.x3d_c01075{left:335.439853pt;}
.x1d_c01075{left:337.199853pt;}
.x60_c01075{left:344.644653pt;}
.x31_c01075{left:345.894253pt;}
.x9_c01075{left:356.344253pt;}
.x6a_c01075{left:364.409453pt;}
.x25_c01075{left:365.865853pt;}
.x10_c01075{left:366.965853pt;}
.x3e_c01075{left:375.818653pt;}
.x2b_c01075{left:384.895853pt;}
.x26_c01075{left:396.960653pt;}
.x34_c01075{left:405.628653pt;}
.x2c_c01075{left:424.460653pt;}
.x27_c01075{left:426.159053pt;}
.x4c_c01075{left:433.643453pt;}
.x65_c01075{left:434.633453pt;}
.xa_c01075{left:436.367053pt;}
.x54_c01075{left:444.265053pt;}
.x49_c01075{left:450.403053pt;}
.x32_c01075{left:454.402653pt;}
.x3f_c01075{left:463.713053pt;}
.x66_c01075{left:471.663853pt;}
.x11_c01075{left:483.310653pt;}
.x2d_c01075{left:493.215053pt;}
.x1e_c01075{left:494.601053pt;}
.x59_c01075{left:502.375853pt;}
.x35_c01075{left:503.977453pt;}
.x28_c01075{left:512.861053pt;}
.x12_c01075{left:514.110653pt;}
.x1f_c01075{left:522.668653pt;}
.x61_c01075{left:530.909853pt;}
.x4d_c01075{left:532.291453pt;}
.x2e_c01075{left:543.678653pt;}
.x67_c01075{left:550.995853pt;}
.x46_c01075{left:551.955053pt;}
.x4e_c01075{left:562.088253pt;}
.xb_c01075{left:563.395053pt;}
.x5a_c01075{left:570.932253pt;}
.x36_c01075{left:571.900253pt;}
.x6b_c01075{left:581.105053pt;}
.x20_c01075{left:582.755053pt;}
.x47_c01075{left:591.572653pt;}
.x4f_c01075{left:592.795853pt;}
.xc_c01075{left:594.001453pt;}
.x5b_c01075{left:600.601453pt;}
.x50_c01075{left:601.723453pt;}
.x13_c01075{left:602.673853pt;}
.x62_c01075{left:610.259453pt;}
.x68_c01075{left:620.652253pt;}
.x48_c01075{left:622.460653pt;}
.x2_c01075{left:623.529853pt;}
.x55_c01075{left:629.901053pt;}
.x40_c01075{left:632.021853pt;}
.x41_c01075{left:649.705453pt;}
}





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

.ir_c01076:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01076{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01076;src:url('chunks/assets/font_a14855debd0026023b3629b1.woff2')format("woff");}.ff1_c01076{font-family:ff1_c01076;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01076;src:url('chunks/assets/font_e6206876a9f8151ef6572521.woff2')format("woff");}.ff2_c01076{font-family:ff2_c01076;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01076;src:url('chunks/assets/font_cd4d40048e361dff0e404b88.woff2')format("woff");}.ff3_c01076{font-family:ff3_c01076;line-height:0.666000;font-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_c01076{transform:matrix(0.048781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048781,0.000000,0.000000,0.250000,0,0);}
.m9b_c01076{transform:matrix(0.075784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075784,0.000000,0.000000,0.250000,0,0);}
.m1c_c01076{transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);}
.m6b_c01076{transform:matrix(0.147866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147866,0.000000,0.000000,0.250000,0,0);}
.m69_c01076{transform:matrix(0.173781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173781,0.000000,0.000000,0.250000,0,0);}
.m9e_c01076{transform:matrix(0.179540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179540,0.000000,0.000000,0.250000,0,0);}
.m7f_c01076{transform:matrix(0.199187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199187,0.000000,0.000000,0.250000,0,0);}
.m67_c01076{transform:matrix(0.210365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210365,0.000000,0.000000,0.250000,0,0);}
.m54_c01076{transform:matrix(0.231322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231322,0.000000,0.000000,0.250000,0,0);}
.m84_c01076{transform:matrix(0.243079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243079,0.000000,0.000000,0.250000,0,0);}
.m0_c01076{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01076{transform:matrix(0.250027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250027,0.000000,0.000000,0.250000,0,0);}
.m77_c01076{transform:matrix(0.250765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250765,0.000000,0.000000,0.250000,0,0);}
.m2f_c01076{transform:matrix(0.250897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250897,0.000000,0.000000,0.250000,0,0);}
.m21_c01076{transform:matrix(0.251850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251850,0.000000,0.000000,0.250000,0,0);}
.m90_c01076{transform:matrix(0.252757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252757,0.000000,0.000000,0.250000,0,0);}
.m8a_c01076{transform:matrix(0.253027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253027,0.000000,0.000000,0.250000,0,0);}
.m63_c01076{transform:matrix(0.253670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253670,0.000000,0.000000,0.250000,0,0);}
.m1_c01076{transform:matrix(0.254056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254056,0.000000,0.000000,0.250000,0,0);}
.m11_c01076{transform:matrix(0.254778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254778,0.000000,0.000000,0.250000,0,0);}
.m70_c01076{transform:matrix(0.255163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255163,0.000000,0.000000,0.250000,0,0);}
.mb_c01076{transform:matrix(0.255459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255459,0.000000,0.000000,0.250000,0,0);}
.m1d_c01076{transform:matrix(0.256735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256735,0.000000,0.000000,0.250000,0,0);}
.m5e_c01076{transform:matrix(0.257849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257849,0.000000,0.000000,0.250000,0,0);}
.m4b_c01076{transform:matrix(0.258774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258774,0.000000,0.000000,0.250000,0,0);}
.m2b_c01076{transform:matrix(0.260021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260021,0.000000,0.000000,0.250000,0,0);}
.m17_c01076{transform:matrix(0.260635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260635,0.000000,0.000000,0.250000,0,0);}
.m88_c01076{transform:matrix(0.261280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261280,0.000000,0.000000,0.250000,0,0);}
.m94_c01076{transform:matrix(0.262322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262322,0.000000,0.000000,0.250000,0,0);}
.m5b_c01076{transform:matrix(0.262894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262894,0.000000,0.000000,0.250000,0,0);}
.m39_c01076{transform:matrix(0.263564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263564,0.000000,0.000000,0.250000,0,0);}
.m59_c01076{transform:matrix(0.263834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263834,0.000000,0.000000,0.250000,0,0);}
.m37_c01076{transform:matrix(0.264764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264764,0.000000,0.000000,0.250000,0,0);}
.m62_c01076{transform:matrix(0.265269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265269,0.000000,0.000000,0.250000,0,0);}
.m99_c01076{transform:matrix(0.266967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266967,0.000000,0.000000,0.250000,0,0);}
.m41_c01076{transform:matrix(0.267506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267506,0.000000,0.000000,0.250000,0,0);}
.m61_c01076{transform:matrix(0.268213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268213,0.000000,0.000000,0.250000,0,0);}
.m4c_c01076{transform:matrix(0.268633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268633,0.000000,0.000000,0.250000,0,0);}
.m29_c01076{transform:matrix(0.269481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269481,0.000000,0.000000,0.250000,0,0);}
.m5f_c01076{transform:matrix(0.270176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270176,0.000000,0.000000,0.250000,0,0);}
.m4f_c01076{transform:matrix(0.270918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270918,0.000000,0.000000,0.250000,0,0);}
.m72_c01076{transform:matrix(0.271611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271611,0.000000,0.000000,0.250000,0,0);}
.m92_c01076{transform:matrix(0.271728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271728,0.000000,0.000000,0.250000,0,0);}
.m19_c01076{transform:matrix(0.272118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272118,0.000000,0.000000,0.250000,0,0);}
.m2d_c01076{transform:matrix(0.272611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272611,0.000000,0.000000,0.250000,0,0);}
.m95_c01076{transform:matrix(0.272820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272820,0.000000,0.000000,0.250000,0,0);}
.m28_c01076{transform:matrix(0.274855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274855,0.000000,0.000000,0.250000,0,0);}
.m13_c01076{transform:matrix(0.275484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275484,0.000000,0.000000,0.250000,0,0);}
.m82_c01076{transform:matrix(0.275913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275913,0.000000,0.000000,0.250000,0,0);}
.m97_c01076{transform:matrix(0.276176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276176,0.000000,0.000000,0.250000,0,0);}
.m50_c01076{transform:matrix(0.277684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277684,0.000000,0.000000,0.250000,0,0);}
.m35_c01076{transform:matrix(0.277832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277832,0.000000,0.000000,0.250000,0,0);}
.m1f_c01076{transform:matrix(0.279310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279310,0.000000,0.000000,0.250000,0,0);}
.m3_c01076{transform:matrix(0.279385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279385,0.000000,0.000000,0.250000,0,0);}
.m44_c01076{transform:matrix(0.279781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279781,0.000000,0.000000,0.250000,0,0);}
.m8_c01076{transform:matrix(0.279940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279940,0.000000,0.000000,0.250000,0,0);}
.m3f_c01076{transform:matrix(0.280012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280012,0.000000,0.000000,0.250000,0,0);}
.m36_c01076{transform:matrix(0.280741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280741,0.000000,0.000000,0.250000,0,0);}
.m85_c01076{transform:matrix(0.281322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281322,0.000000,0.000000,0.250000,0,0);}
.m2a_c01076{transform:matrix(0.282679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282679,0.000000,0.000000,0.250000,0,0);}
.m25_c01076{transform:matrix(0.282923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282923,0.000000,0.000000,0.250000,0,0);}
.m9c_c01076{transform:matrix(0.282996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282996,0.000000,0.000000,0.250000,0,0);}
.m2_c01076{transform:matrix(0.283983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283983,0.000000,0.000000,0.250000,0,0);}
.m30_c01076{transform:matrix(0.284103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284103,0.000000,0.000000,0.250000,0,0);}
.m93_c01076{transform:matrix(0.284582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284582,0.000000,0.000000,0.250000,0,0);}
.m53_c01076{transform:matrix(0.284617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284617,0.000000,0.000000,0.250000,0,0);}
.m33_c01076{transform:matrix(0.285205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285205,0.000000,0.000000,0.250000,0,0);}
.ma_c01076{transform:matrix(0.285748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285748,0.000000,0.000000,0.250000,0,0);}
.m98_c01076{transform:matrix(0.286325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286325,0.000000,0.000000,0.250000,0,0);}
.m16_c01076{transform:matrix(0.286414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286414,0.000000,0.000000,0.250000,0,0);}
.m56_c01076{transform:matrix(0.286441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286441,0.000000,0.000000,0.250000,0,0);}
.m3b_c01076{transform:matrix(0.286490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286490,0.000000,0.000000,0.250000,0,0);}
.m20_c01076{transform:matrix(0.286653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286653,0.000000,0.000000,0.250000,0,0);}
.m5d_c01076{transform:matrix(0.287895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287895,0.000000,0.000000,0.250000,0,0);}
.m9a_c01076{transform:matrix(0.287980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287980,0.000000,0.000000,0.250000,0,0);}
.m81_c01076{transform:matrix(0.288484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288484,0.000000,0.000000,0.250000,0,0);}
.m7e_c01076{transform:matrix(0.288700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288700,0.000000,0.000000,0.250000,0,0);}
.m55_c01076{transform:matrix(0.289181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289181,0.000000,0.000000,0.250000,0,0);}
.m8b_c01076{transform:matrix(0.289257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289257,0.000000,0.000000,0.250000,0,0);}
.m5c_c01076{transform:matrix(0.289386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289386,0.000000,0.000000,0.250000,0,0);}
.mf_c01076{transform:matrix(0.289829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289829,0.000000,0.000000,0.250000,0,0);}
.m6c_c01076{transform:matrix(0.290027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290027,0.000000,0.000000,0.250000,0,0);}
.m34_c01076{transform:matrix(0.290062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290062,0.000000,0.000000,0.250000,0,0);}
.m6a_c01076{transform:matrix(0.291456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291456,0.000000,0.000000,0.250000,0,0);}
.m3a_c01076{transform:matrix(0.291521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291521,0.000000,0.000000,0.250000,0,0);}
.m10_c01076{transform:matrix(0.291531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291531,0.000000,0.000000,0.250000,0,0);}
.m23_c01076{transform:matrix(0.291570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291570,0.000000,0.000000,0.250000,0,0);}
.m8e_c01076{transform:matrix(0.292287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292287,0.000000,0.000000,0.250000,0,0);}
.m49_c01076{transform:matrix(0.293401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293401,0.000000,0.000000,0.250000,0,0);}
.m60_c01076{transform:matrix(0.293642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293642,0.000000,0.000000,0.250000,0,0);}
.m18_c01076{transform:matrix(0.293715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293715,0.000000,0.000000,0.250000,0,0);}
.m9f_c01076{transform:matrix(0.293906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293906,0.000000,0.000000,0.250000,0,0);}
.m58_c01076{transform:matrix(0.293936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293936,0.000000,0.000000,0.250000,0,0);}
.m79_c01076{transform:matrix(0.294389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294389,0.000000,0.000000,0.250000,0,0);}
.m4a_c01076{transform:matrix(0.294903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294903,0.000000,0.000000,0.250000,0,0);}
.m4d_c01076{transform:matrix(0.294975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294975,0.000000,0.000000,0.250000,0,0);}
.ma1_c01076{transform:matrix(0.295716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295716,0.000000,0.000000,0.250000,0,0);}
.m89_c01076{transform:matrix(0.295973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295973,0.000000,0.000000,0.250000,0,0);}
.m46_c01076{transform:matrix(0.296617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296617,0.000000,0.000000,0.250000,0,0);}
.m64_c01076{transform:matrix(0.296866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296866,0.000000,0.000000,0.250000,0,0);}
.m45_c01076{transform:matrix(0.297873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297873,0.000000,0.000000,0.250000,0,0);}
.m52_c01076{transform:matrix(0.298458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298458,0.000000,0.000000,0.250000,0,0);}
.m7b_c01076{transform:matrix(0.299807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299807,0.000000,0.000000,0.250000,0,0);}
.m4_c01076{transform:matrix(0.300787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300787,0.000000,0.000000,0.250000,0,0);}
.m9d_c01076{transform:matrix(0.300818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300818,0.000000,0.000000,0.250000,0,0);}
.m32_c01076{transform:matrix(0.300948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300948,0.000000,0.000000,0.250000,0,0);}
.m6_c01076{transform:matrix(0.301307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301307,0.000000,0.000000,0.250000,0,0);}
.m5a_c01076{transform:matrix(0.301499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301499,0.000000,0.000000,0.250000,0,0);}
.m6d_c01076{transform:matrix(0.301613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301613,0.000000,0.000000,0.250000,0,0);}
.m7_c01076{transform:matrix(0.302996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302996,0.000000,0.000000,0.250000,0,0);}
.m75_c01076{transform:matrix(0.303412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303412,0.000000,0.000000,0.250000,0,0);}
.m27_c01076{transform:matrix(0.304393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304393,0.000000,0.000000,0.250000,0,0);}
.m8d_c01076{transform:matrix(0.304853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304853,0.000000,0.000000,0.250000,0,0);}
.m40_c01076{transform:matrix(0.305752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305752,0.000000,0.000000,0.250000,0,0);}
.ma0_c01076{transform:matrix(0.307049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307049,0.000000,0.000000,0.250000,0,0);}
.m65_c01076{transform:matrix(0.307331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307331,0.000000,0.000000,0.250000,0,0);}
.m96_c01076{transform:matrix(0.308128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308128,0.000000,0.000000,0.250000,0,0);}
.m24_c01076{transform:matrix(0.310794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310794,0.000000,0.000000,0.250000,0,0);}
.m71_c01076{transform:matrix(0.311760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311760,0.000000,0.000000,0.250000,0,0);}
.m8c_c01076{transform:matrix(0.312312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312312,0.000000,0.000000,0.250000,0,0);}
.m86_c01076{transform:matrix(0.312674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312674,0.000000,0.000000,0.250000,0,0);}
.ma2_c01076{transform:matrix(0.313461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313461,0.000000,0.000000,0.250000,0,0);}
.m26_c01076{transform:matrix(0.315498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315498,0.000000,0.000000,0.250000,0,0);}
.m42_c01076{transform:matrix(0.315996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315996,0.000000,0.000000,0.250000,0,0);}
.m73_c01076{transform:matrix(0.316147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316147,0.000000,0.000000,0.250000,0,0);}
.m7c_c01076{transform:matrix(0.316181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316181,0.000000,0.000000,0.250000,0,0);}
.m38_c01076{transform:matrix(0.317355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317355,0.000000,0.000000,0.250000,0,0);}
.m43_c01076{transform:matrix(0.317626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317626,0.000000,0.000000,0.250000,0,0);}
.m80_c01076{transform:matrix(0.318248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318248,0.000000,0.000000,0.250000,0,0);}
.m87_c01076{transform:matrix(0.319205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319205,0.000000,0.000000,0.250000,0,0);}
.m2c_c01076{transform:matrix(0.319381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319381,0.000000,0.000000,0.250000,0,0);}
.m31_c01076{transform:matrix(0.320725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320725,0.000000,0.000000,0.250000,0,0);}
.m78_c01076{transform:matrix(0.321986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321986,0.000000,0.000000,0.250000,0,0);}
.m74_c01076{transform:matrix(0.322034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322034,0.000000,0.000000,0.250000,0,0);}
.md_c01076{transform:matrix(0.323550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323550,0.000000,0.000000,0.250000,0,0);}
.m91_c01076{transform:matrix(0.324607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324607,0.000000,0.000000,0.250000,0,0);}
.m7d_c01076{transform:matrix(0.324903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324903,0.000000,0.000000,0.250000,0,0);}
.me_c01076{transform:matrix(0.326255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326255,0.000000,0.000000,0.250000,0,0);}
.m15_c01076{transform:matrix(0.326587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326587,0.000000,0.000000,0.250000,0,0);}
.m12_c01076{transform:matrix(0.329069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329069,0.000000,0.000000,0.250000,0,0);}
.m6e_c01076{transform:matrix(0.330471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330471,0.000000,0.000000,0.250000,0,0);}
.m76_c01076{transform:matrix(0.330625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330625,0.000000,0.000000,0.250000,0,0);}
.m51_c01076{transform:matrix(0.330706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330706,0.000000,0.000000,0.250000,0,0);}
.m48_c01076{transform:matrix(0.330961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330961,0.000000,0.000000,0.250000,0,0);}
.m47_c01076{transform:matrix(0.335052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335052,0.000000,0.000000,0.250000,0,0);}
.m14_c01076{transform:matrix(0.336791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336791,0.000000,0.000000,0.250000,0,0);}
.m3d_c01076{transform:matrix(0.338344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338344,0.000000,0.000000,0.250000,0,0);}
.m5_c01076{transform:matrix(0.338471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338471,0.000000,0.000000,0.250000,0,0);}
.m1a_c01076{transform:matrix(0.341035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341035,0.000000,0.000000,0.250000,0,0);}
.mc_c01076{transform:matrix(0.342181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342181,0.000000,0.000000,0.250000,0,0);}
.m7a_c01076{transform:matrix(0.343568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343568,0.000000,0.000000,0.250000,0,0);}
.m8f_c01076{transform:matrix(0.344698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344698,0.000000,0.000000,0.250000,0,0);}
.m1e_c01076{transform:matrix(0.344947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344947,0.000000,0.000000,0.250000,0,0);}
.m3e_c01076{transform:matrix(0.347564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347564,0.000000,0.000000,0.250000,0,0);}
.m66_c01076{transform:matrix(0.353394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353394,0.000000,0.000000,0.250000,0,0);}
.m2e_c01076{transform:matrix(0.355339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355339,0.000000,0.000000,0.250000,0,0);}
.m6f_c01076{transform:matrix(0.356737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356737,0.000000,0.000000,0.250000,0,0);}
.m57_c01076{transform:matrix(0.357617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357617,0.000000,0.000000,0.250000,0,0);}
.m9_c01076{transform:matrix(0.359755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359755,0.000000,0.000000,0.250000,0,0);}
.m22_c01076{transform:matrix(0.374684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374684,0.000000,0.000000,0.250000,0,0);}
.m4e_c01076{transform:matrix(0.380631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380631,0.000000,0.000000,0.250000,0,0);}
.m3c_c01076{transform:matrix(0.386579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386579,0.000000,0.000000,0.250000,0,0);}
.m83_c01076{transform:matrix(0.387845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387845,0.000000,0.000000,0.250000,0,0);}
.v0_c01076{vertical-align:0.000000px;}
.ls7_c01076{letter-spacing:-2.778930px;}
.lsb_c01076{letter-spacing:-2.763050px;}
.lsc_c01076{letter-spacing:-2.683652px;}
.ls5_c01076{letter-spacing:-1.675298px;}
.lse_c01076{letter-spacing:-1.198910px;}
.ls9_c01076{letter-spacing:-0.111157px;}
.ls0_c01076{letter-spacing:0.000000px;}
.lsa_c01076{letter-spacing:1.247780px;}
.ls6_c01076{letter-spacing:2.588375px;}
.ls3_c01076{letter-spacing:3.524400px;}
.lsd_c01076{letter-spacing:3.633310px;}
.lsf_c01076{letter-spacing:3.811104px;}
.ls2_c01076{letter-spacing:3.969900px;}
.ls1_c01076{letter-spacing:4.296610px;}
.ls4_c01076{letter-spacing:29.937798px;}
.ls8_c01076{letter-spacing:58.449798px;}
.sc__c01076{text-shadow:none;}
.sc0_c01076{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01076{-webkit-text-stroke:0px transparent;}
.sc0_c01076{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01076{word-spacing:-19.849500px;}
.ws1_c01076{word-spacing:0.000000px;}
._0_c01076{margin-left:-11.988900px;}
.fc0_c01076{color:transparent;}
.fs0_c01076{font-size:22.176000px;}
.fs4_c01076{font-size:25.146000px;}
.fs9_c01076{font-size:27.720000px;}
.fs5_c01076{font-size:29.937798px;}
.fsc_c01076{font-size:33.660000px;}
.fsa_c01076{font-size:58.449798px;}
.fsb_c01076{font-size:66.726198px;}
.fs3_c01076{font-size:70.488000px;}
.fs6_c01076{font-size:72.666198px;}
.fs7_c01076{font-size:77.220000px;}
.fs8_c01076{font-size:78.804000px;}
.fs2_c01076{font-size:79.398000px;}
.fs1_c01076{font-size:85.932198px;}
.y0_c01076{bottom:0.000000px;}
.y1_c01076{bottom:76.500000px;}
.y1f_c01076{bottom:80.453385px;}
.y1e_c01076{bottom:160.648335px;}
.y1d_c01076{bottom:193.788585px;}
.y1c_c01076{bottom:226.220985px;}
.y1b_c01076{bottom:257.940585px;}
.y1a_c01076{bottom:288.947385px;}
.y19_c01076{bottom:321.023385px;}
.y18_c01076{bottom:352.747935px;}
.y17_c01076{bottom:385.180335px;}
.y16_c01076{bottom:447.550335px;}
.y15_c01076{bottom:481.403385px;}
.y14_c01076{bottom:513.479385px;}
.y13_c01076{bottom:536.650335px;}
.y12_c01076{bottom:544.842585px;}
.y11_c01076{bottom:545.203935px;}
.y2_c01076{bottom:564.088185px;}
.y10_c01076{bottom:577.274985px;}
.yf_c01076{bottom:609.707385px;}
.ye_c01076{bottom:641.426985px;}
.yd_c01076{bottom:673.507935px;}
.yc_c01076{bottom:705.583935px;}
.yb_c01076{bottom:737.654985px;}
.ya_c01076{bottom:769.379535px;}
.y9_c01076{bottom:802.168335px;}
.y8_c01076{bottom:815.711535px;}
.y7_c01076{bottom:826.047135px;}
.y6_c01076{bottom:833.887935px;}
.y5_c01076{bottom:865.602585px;}
.y4_c01076{bottom:930.115935px;}
.y3_c01076{bottom:1075.878585px;}
.h7_c01076{height:19.938573px;}
.h2_c01076{height:23.128875px;}
.h6_c01076{height:26.226492px;}
.hb_c01076{height:28.911094px;}
.he_c01076{height:33.035449px;}
.hc_c01076{height:38.927565px;}
.hd_c01076{height:65.488114px;}
.h5_c01076{height:69.180117px;}
.h8_c01076{height:71.317899px;}
.h9_c01076{height:75.787207px;}
.ha_c01076{height:77.341816px;}
.h4_c01076{height:77.924795px;}
.h3_c01076{height:84.337753px;}
.h1_c01076{height:1110.000000px;}
.h0_c01076{height:1263.000000px;}
.w1_c01076{width:775.500000px;}
.w0_c01076{width:892.500000px;}
.x0_c01076{left:0.000000px;}
.x2_c01076{left:49.085835px;}
.x1_c01076{left:58.500000px;}
.x56_c01076{left:76.929585px;}
.x1f_c01076{left:78.345285px;}
.x14_c01076{left:79.622385px;}
.x4_c01076{left:81.721185px;}
.x57_c01076{left:100.239135px;}
.x66_c01076{left:110.644035px;}
.x39_c01076{left:112.020135px;}
.x3e_c01076{left:121.845885px;}
.x15_c01076{left:124.083285px;}
.xa_c01076{left:132.810135px;}
.x5_c01076{left:134.344635px;}
.x68_c01076{left:144.130785px;}
.x20_c01076{left:145.551435px;}
.x3f_c01076{left:155.847435px;}
.x16_c01076{left:157.629435px;}
.x69_c01076{left:176.914635px;}
.x2f_c01076{left:178.077885px;}
.x6_c01076{left:180.062835px;}
.x4f_c01076{left:187.680885px;}
.x21_c01076{left:189.705435px;}
.x5e_c01076{left:198.818385px;}
.x61_c01076{left:200.045985px;}
.x34_c01076{left:211.272585px;}
.x67_c01076{left:221.459685px;}
.x43_c01076{left:222.761535px;}
.x22_c01076{left:224.197035px;}
.x17_c01076{left:233.735685px;}
.xb_c01076{left:235.656285px;}
.x5b_c01076{left:244.274235px;}
.x4c_c01076{left:256.980885px;}
.x52_c01076{left:266.331435px;}
.xc_c01076{left:268.484685px;}
.x5c_c01076{left:278.077785px;}
.x7_c01076{left:280.542885px;}
.x4d_c01076{left:288.309435px;}
.x26_c01076{left:290.606235px;}
.x35_c01076{left:299.714235px;}
.x2b_c01076{left:300.922035px;}
.x6a_c01076{left:310.564635px;}
.x18_c01076{left:311.965485px;}
.x23_c01076{left:323.622735px;}
.x2c_c01076{left:333.532635px;}
.x3a_c01076{left:335.121585px;}
.x27_c01076{left:344.620635px;}
.x36_c01076{left:346.754085px;}
.x62_c01076{left:353.530635px;}
.x19_c01076{left:357.569835px;}
.x58_c01076{left:377.508435px;}
.xd_c01076{left:379.354785px;}
.x4a_c01076{left:384.185985px;}
.x53_c01076{left:388.843935px;}
.x30_c01076{left:390.036885px;}
.x6c_c01076{left:398.664735px;}
.x44_c01076{left:399.837885px;}
.x8_c01076{left:401.768385px;}
.x59_c01076{left:410.519985px;}
.xe_c01076{left:411.742635px;}
.x3b_c01076{left:413.089035px;}
.x50_c01076{left:422.701935px;}
.x4b_c01076{left:423.860235px;}
.x38_c01076{left:432.963285px;}
.x31_c01076{left:434.864085px;}
.x9_c01076{left:445.085835px;}
.x54_c01076{left:455.604585px;}
.xf_c01076{left:456.629235px;}
.x63_c01076{left:466.227285px;}
.x2d_c01076{left:468.088485px;}
.x24_c01076{left:477.523185px;}
.x2e_c01076{left:487.893435px;}
.x5a_c01076{left:489.437835px;}
.x40_c01076{left:499.936785px;}
.x28_c01076{left:511.876185px;}
.x5f_c01076{left:520.647585px;}
.x37_c01076{left:521.716785px;}
.x1a_c01076{left:533.671035px;}
.x10_c01076{left:544.694685px;}
.x45_c01076{left:554.659035px;}
.x25_c01076{left:556.054935px;}
.x64_c01076{left:565.390635px;}
.x41_c01076{left:566.821185px;}
.x6b_c01076{left:575.186685px;}
.x11_c01076{left:578.196285px;}
.x29_c01076{left:588.710085px;}
.x42_c01076{left:598.377435px;}
.x46_c01076{left:599.906985px;}
.x4e_c01076{left:600.911835px;}
.x55_c01076{left:610.212885px;}
.x3c_c01076{left:622.063185px;}
.x51_c01076{left:631.121685px;}
.x1b_c01076{left:633.784785px;}
.x60_c01076{left:642.877935px;}
.x3d_c01076{left:644.744085px;}
.x5d_c01076{left:652.876935px;}
.x32_c01076{left:654.421335px;}
.x1c_c01076{left:667.226985px;}
.x47_c01076{left:675.686535px;}
.x12_c01076{left:678.671385px;}
.x65_c01076{left:686.660685px;}
.x33_c01076{left:688.145685px;}
.x3_c01076{left:697.555635px;}
.x1d_c01076{left:698.842635px;}
.x13_c01076{left:699.892035px;}
.x1e_c01076{left:702.634335px;}
.x48_c01076{left:708.802035px;}
.x2a_c01076{left:710.262285px;}
.x49_c01076{left:742.303635px;}
@media print{
.v0_c01076{vertical-align:0.000000pt;}
.ls7_c01076{letter-spacing:-2.470160pt;}
.lsb_c01076{letter-spacing:-2.456045pt;}
.lsc_c01076{letter-spacing:-2.385469pt;}
.ls5_c01076{letter-spacing:-1.489154pt;}
.lse_c01076{letter-spacing:-1.065698pt;}
.ls9_c01076{letter-spacing:-0.098806pt;}
.ls0_c01076{letter-spacing:0.000000pt;}
.lsa_c01076{letter-spacing:1.109138pt;}
.ls6_c01076{letter-spacing:2.300778pt;}
.ls3_c01076{letter-spacing:3.132800pt;}
.lsd_c01076{letter-spacing:3.229609pt;}
.lsf_c01076{letter-spacing:3.387648pt;}
.ls2_c01076{letter-spacing:3.528800pt;}
.ls1_c01076{letter-spacing:3.819209pt;}
.ls4_c01076{letter-spacing:26.611376pt;}
.ls8_c01076{letter-spacing:51.955376pt;}
.ws0_c01076{word-spacing:-17.644000pt;}
.ws1_c01076{word-spacing:0.000000pt;}
._0_c01076{margin-left:-10.656800pt;}
.fs0_c01076{font-size:19.712000pt;}
.fs4_c01076{font-size:22.352000pt;}
.fs9_c01076{font-size:24.640000pt;}
.fs5_c01076{font-size:26.611376pt;}
.fsc_c01076{font-size:29.920000pt;}
.fsa_c01076{font-size:51.955376pt;}
.fsb_c01076{font-size:59.312176pt;}
.fs3_c01076{font-size:62.656000pt;}
.fs6_c01076{font-size:64.592176pt;}
.fs7_c01076{font-size:68.640000pt;}
.fs8_c01076{font-size:70.048000pt;}
.fs2_c01076{font-size:70.576000pt;}
.fs1_c01076{font-size:76.384176pt;}
.y0_c01076{bottom:0.000000pt;}
.y1_c01076{bottom:68.000000pt;}
.y1f_c01076{bottom:71.514120pt;}
.y1e_c01076{bottom:142.798520pt;}
.y1d_c01076{bottom:172.256520pt;}
.y1c_c01076{bottom:201.085320pt;}
.y1b_c01076{bottom:229.280520pt;}
.y1a_c01076{bottom:256.842120pt;}
.y19_c01076{bottom:285.354120pt;}
.y18_c01076{bottom:313.553720pt;}
.y17_c01076{bottom:342.382520pt;}
.y16_c01076{bottom:397.822520pt;}
.y15_c01076{bottom:427.914120pt;}
.y14_c01076{bottom:456.426120pt;}
.y13_c01076{bottom:477.022520pt;}
.y12_c01076{bottom:484.304520pt;}
.y11_c01076{bottom:484.625720pt;}
.y2_c01076{bottom:501.411720pt;}
.y10_c01076{bottom:513.133320pt;}
.yf_c01076{bottom:541.962120pt;}
.ye_c01076{bottom:570.157320pt;}
.yd_c01076{bottom:598.673720pt;}
.yc_c01076{bottom:627.185720pt;}
.yb_c01076{bottom:655.693320pt;}
.ya_c01076{bottom:683.892920pt;}
.y9_c01076{bottom:713.038520pt;}
.y8_c01076{bottom:725.076920pt;}
.y7_c01076{bottom:734.264120pt;}
.y6_c01076{bottom:741.233720pt;}
.y5_c01076{bottom:769.424520pt;}
.y4_c01076{bottom:826.769720pt;}
.y3_c01076{bottom:956.336520pt;}
.h7_c01076{height:17.723176pt;}
.h2_c01076{height:20.559000pt;}
.h6_c01076{height:23.312438pt;}
.hb_c01076{height:25.698750pt;}
.he_c01076{height:29.364844pt;}
.hc_c01076{height:34.602280pt;}
.hd_c01076{height:58.211657pt;}
.h5_c01076{height:61.493438pt;}
.h8_c01076{height:63.393688pt;}
.h9_c01076{height:67.366406pt;}
.ha_c01076{height:68.748281pt;}
.h4_c01076{height:69.266484pt;}
.h3_c01076{height:74.966891pt;}
.h1_c01076{height:986.666667pt;}
.h0_c01076{height:1122.666667pt;}
.w1_c01076{width:689.333333pt;}
.w0_c01076{width:793.333333pt;}
.x0_c01076{left:0.000000pt;}
.x2_c01076{left:43.631853pt;}
.x1_c01076{left:52.000000pt;}
.x56_c01076{left:68.381853pt;}
.x1f_c01076{left:69.640253pt;}
.x14_c01076{left:70.775453pt;}
.x4_c01076{left:72.641053pt;}
.x57_c01076{left:89.101453pt;}
.x66_c01076{left:98.350253pt;}
.x39_c01076{left:99.573453pt;}
.x3e_c01076{left:108.307453pt;}
.x15_c01076{left:110.296253pt;}
.xa_c01076{left:118.053453pt;}
.x5_c01076{left:119.417453pt;}
.x68_c01076{left:128.116253pt;}
.x20_c01076{left:129.379053pt;}
.x3f_c01076{left:138.531053pt;}
.x16_c01076{left:140.115053pt;}
.x69_c01076{left:157.257453pt;}
.x2f_c01076{left:158.291453pt;}
.x6_c01076{left:160.055853pt;}
.x4f_c01076{left:166.827453pt;}
.x21_c01076{left:168.627053pt;}
.x5e_c01076{left:176.727453pt;}
.x61_c01076{left:177.818653pt;}
.x34_c01076{left:187.797853pt;}
.x67_c01076{left:196.853053pt;}
.x43_c01076{left:198.010253pt;}
.x22_c01076{left:199.286253pt;}
.x17_c01076{left:207.765053pt;}
.xb_c01076{left:209.472253pt;}
.x5b_c01076{left:217.132653pt;}
.x4c_c01076{left:228.427453pt;}
.x52_c01076{left:236.739053pt;}
.xc_c01076{left:238.653053pt;}
.x5c_c01076{left:247.180253pt;}
.x7_c01076{left:249.371453pt;}
.x4d_c01076{left:256.275053pt;}
.x26_c01076{left:258.316653pt;}
.x35_c01076{left:266.412653pt;}
.x2b_c01076{left:267.486253pt;}
.x6a_c01076{left:276.057453pt;}
.x18_c01076{left:277.302653pt;}
.x23_c01076{left:287.664653pt;}
.x2c_c01076{left:296.473453pt;}
.x3a_c01076{left:297.885853pt;}
.x27_c01076{left:306.329453pt;}
.x36_c01076{left:308.225853pt;}
.x62_c01076{left:314.249453pt;}
.x19_c01076{left:317.839853pt;}
.x58_c01076{left:335.563053pt;}
.xd_c01076{left:337.204253pt;}
.x4a_c01076{left:341.498653pt;}
.x53_c01076{left:345.639053pt;}
.x30_c01076{left:346.699453pt;}
.x6c_c01076{left:354.368653pt;}
.x44_c01076{left:355.411453pt;}
.x8_c01076{left:357.127453pt;}
.x59_c01076{left:364.906653pt;}
.xe_c01076{left:365.993453pt;}
.x3b_c01076{left:367.190253pt;}
.x50_c01076{left:375.735053pt;}
.x4b_c01076{left:376.764653pt;}
.x38_c01076{left:384.856253pt;}
.x31_c01076{left:386.545853pt;}
.x9_c01076{left:395.631853pt;}
.x54_c01076{left:404.981853pt;}
.xf_c01076{left:405.892653pt;}
.x63_c01076{left:414.424253pt;}
.x2d_c01076{left:416.078653pt;}
.x24_c01076{left:424.465053pt;}
.x2e_c01076{left:433.683053pt;}
.x5a_c01076{left:435.055853pt;}
.x40_c01076{left:444.388253pt;}
.x28_c01076{left:455.001053pt;}
.x5f_c01076{left:462.797853pt;}
.x37_c01076{left:463.748253pt;}
.x1a_c01076{left:474.374253pt;}
.x10_c01076{left:484.173053pt;}
.x45_c01076{left:493.030253pt;}
.x25_c01076{left:494.271053pt;}
.x64_c01076{left:502.569453pt;}
.x41_c01076{left:503.841053pt;}
.x6b_c01076{left:511.277053pt;}
.x11_c01076{left:513.952253pt;}
.x29_c01076{left:523.297853pt;}
.x42_c01076{left:531.891053pt;}
.x46_c01076{left:533.250653pt;}
.x4e_c01076{left:534.143853pt;}
.x55_c01076{left:542.411453pt;}
.x3c_c01076{left:552.945053pt;}
.x51_c01076{left:560.997053pt;}
.x1b_c01076{left:563.364253pt;}
.x60_c01076{left:571.447053pt;}
.x3d_c01076{left:573.105853pt;}
.x5d_c01076{left:580.335053pt;}
.x32_c01076{left:581.707853pt;}
.x1c_c01076{left:593.090653pt;}
.x47_c01076{left:600.610253pt;}
.x12_c01076{left:603.263453pt;}
.x65_c01076{left:610.365053pt;}
.x33_c01076{left:611.685053pt;}
.x3_c01076{left:620.049453pt;}
.x1d_c01076{left:621.193453pt;}
.x13_c01076{left:622.126253pt;}
.x1e_c01076{left:624.563853pt;}
.x48_c01076{left:630.046253pt;}
.x2a_c01076{left:631.344253pt;}
.x49_c01076{left:659.825453pt;}
}





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

.ir_c01077:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01077{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01077;src:url('chunks/assets/font_81736ca4a9b6952d52382dc9.woff2')format("woff");}.ff1_c01077{font-family:ff1_c01077;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01077;src:url('chunks/assets/font_c856313784659e24b7a91ea6.woff2')format("woff");}.ff2_c01077{font-family:ff2_c01077;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01077;src:url('chunks/assets/font_a96841e849bd2ae5642f4b7c.woff2')format("woff");}.ff3_c01077{font-family:ff3_c01077;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m7b_c01077{transform:matrix(0.014424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.014424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.014424,0.000000,0.000000,0.250000,0,0);}
.m7c_c01077{transform:matrix(0.062501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062501,0.000000,0.000000,0.250000,0,0);}
.m78_c01077{transform:matrix(0.075378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075378,0.000000,0.000000,0.250000,0,0);}
.m7d_c01077{transform:matrix(0.102659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102659,0.000000,0.000000,0.250000,0,0);}
.m7f_c01077{transform:matrix(0.110097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110097,0.000000,0.000000,0.250000,0,0);}
.m3f_c01077{transform:matrix(0.110465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110465,0.000000,0.000000,0.250000,0,0);}
.m7a_c01077{transform:matrix(0.113462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113462,0.000000,0.000000,0.250000,0,0);}
.m7e_c01077{transform:matrix(0.115385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115385,0.000000,0.000000,0.250000,0,0);}
.m41_c01077{transform:matrix(0.125969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125969,0.000000,0.000000,0.250000,0,0);}
.m79_c01077{transform:matrix(0.160808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160808,0.000000,0.000000,0.250000,0,0);}
.m16_c01077{transform:matrix(0.192983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192983,0.000000,0.000000,0.250000,0,0);}
.m29_c01077{transform:matrix(0.195176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195176,0.000000,0.000000,0.250000,0,0);}
.m1e_c01077{transform:matrix(0.210135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210135,0.000000,0.000000,0.250000,0,0);}
.m60_c01077{transform:matrix(0.245233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245233,0.000000,0.000000,0.250000,0,0);}
.m77_c01077{transform:matrix(0.247118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247118,0.000000,0.000000,0.250000,0,0);}
.m23_c01077{transform:matrix(0.249321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249321,0.000000,0.000000,0.250000,0,0);}
.m0_c01077{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01077{transform:matrix(0.251355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251355,0.000000,0.000000,0.250000,0,0);}
.m80_c01077{transform:matrix(0.255021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255021,0.000000,0.000000,0.250000,0,0);}
.m50_c01077{transform:matrix(0.258262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258262,0.000000,0.000000,0.250000,0,0);}
.m1c_c01077{transform:matrix(0.258710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258710,0.000000,0.000000,0.250000,0,0);}
.m2e_c01077{transform:matrix(0.262902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262902,0.000000,0.000000,0.250000,0,0);}
.m58_c01077{transform:matrix(0.265285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265285,0.000000,0.000000,0.250000,0,0);}
.m69_c01077{transform:matrix(0.266938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266938,0.000000,0.000000,0.250000,0,0);}
.m1b_c01077{transform:matrix(0.270831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270831,0.000000,0.000000,0.250000,0,0);}
.m6b_c01077{transform:matrix(0.275181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275181,0.000000,0.000000,0.250000,0,0);}
.me_c01077{transform:matrix(0.276116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276116,0.000000,0.000000,0.250000,0,0);}
.m13_c01077{transform:matrix(0.278327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278327,0.000000,0.000000,0.250000,0,0);}
.m47_c01077{transform:matrix(0.279583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279583,0.000000,0.000000,0.250000,0,0);}
.m65_c01077{transform:matrix(0.279942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279942,0.000000,0.000000,0.250000,0,0);}
.m44_c01077{transform:matrix(0.280241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280241,0.000000,0.000000,0.250000,0,0);}
.m1_c01077{transform:matrix(0.280348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280348,0.000000,0.000000,0.250000,0,0);}
.m1f_c01077{transform:matrix(0.281047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281047,0.000000,0.000000,0.250000,0,0);}
.m55_c01077{transform:matrix(0.283120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283120,0.000000,0.000000,0.250000,0,0);}
.m17_c01077{transform:matrix(0.285489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285489,0.000000,0.000000,0.250000,0,0);}
.m42_c01077{transform:matrix(0.285673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285673,0.000000,0.000000,0.250000,0,0);}
.m4_c01077{transform:matrix(0.285978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285978,0.000000,0.000000,0.250000,0,0);}
.m35_c01077{transform:matrix(0.287040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287040,0.000000,0.000000,0.250000,0,0);}
.m62_c01077{transform:matrix(0.287418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287418,0.000000,0.000000,0.250000,0,0);}
.m9_c01077{transform:matrix(0.288056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288056,0.000000,0.000000,0.250000,0,0);}
.m10_c01077{transform:matrix(0.289137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289137,0.000000,0.000000,0.250000,0,0);}
.m12_c01077{transform:matrix(0.289586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289586,0.000000,0.000000,0.250000,0,0);}
.m6a_c01077{transform:matrix(0.289918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289918,0.000000,0.000000,0.250000,0,0);}
.m61_c01077{transform:matrix(0.290015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290015,0.000000,0.000000,0.250000,0,0);}
.m46_c01077{transform:matrix(0.290788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290788,0.000000,0.000000,0.250000,0,0);}
.m6d_c01077{transform:matrix(0.290979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290979,0.000000,0.000000,0.250000,0,0);}
.m57_c01077{transform:matrix(0.291249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291249,0.000000,0.000000,0.250000,0,0);}
.m28_c01077{transform:matrix(0.291660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291660,0.000000,0.000000,0.250000,0,0);}
.m11_c01077{transform:matrix(0.292035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292035,0.000000,0.000000,0.250000,0,0);}
.m67_c01077{transform:matrix(0.292059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292059,0.000000,0.000000,0.250000,0,0);}
.m74_c01077{transform:matrix(0.293673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293673,0.000000,0.000000,0.250000,0,0);}
.m56_c01077{transform:matrix(0.294041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294041,0.000000,0.000000,0.250000,0,0);}
.m1a_c01077{transform:matrix(0.294122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294122,0.000000,0.000000,0.250000,0,0);}
.m1d_c01077{transform:matrix(0.295094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295094,0.000000,0.000000,0.250000,0,0);}
.m21_c01077{transform:matrix(0.295309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295309,0.000000,0.000000,0.250000,0,0);}
.m43_c01077{transform:matrix(0.298812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298812,0.000000,0.000000,0.250000,0,0);}
.m3e_c01077{transform:matrix(0.299405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299405,0.000000,0.000000,0.250000,0,0);}
.m6e_c01077{transform:matrix(0.300244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300244,0.000000,0.000000,0.250000,0,0);}
.m3c_c01077{transform:matrix(0.301324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301324,0.000000,0.000000,0.250000,0,0);}
.m63_c01077{transform:matrix(0.302005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302005,0.000000,0.000000,0.250000,0,0);}
.m82_c01077{transform:matrix(0.302744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302744,0.000000,0.000000,0.250000,0,0);}
.mc_c01077{transform:matrix(0.303236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303236,0.000000,0.000000,0.250000,0,0);}
.m70_c01077{transform:matrix(0.304860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304860,0.000000,0.000000,0.250000,0,0);}
.m3_c01077{transform:matrix(0.307731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307731,0.000000,0.000000,0.250000,0,0);}
.m4c_c01077{transform:matrix(0.308268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308268,0.000000,0.000000,0.250000,0,0);}
.m53_c01077{transform:matrix(0.309476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309476,0.000000,0.000000,0.250000,0,0);}
.m59_c01077{transform:matrix(0.311413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311413,0.000000,0.000000,0.250000,0,0);}
.m4a_c01077{transform:matrix(0.311464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311464,0.000000,0.000000,0.250000,0,0);}
.m3d_c01077{transform:matrix(0.311575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311575,0.000000,0.000000,0.250000,0,0);}
.m5f_c01077{transform:matrix(0.314210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314210,0.000000,0.000000,0.250000,0,0);}
.m2f_c01077{transform:matrix(0.314757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314757,0.000000,0.000000,0.250000,0,0);}
.m4b_c01077{transform:matrix(0.316225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316225,0.000000,0.000000,0.250000,0,0);}
.m2c_c01077{transform:matrix(0.316814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316814,0.000000,0.000000,0.250000,0,0);}
.md_c01077{transform:matrix(0.319307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319307,0.000000,0.000000,0.250000,0,0);}
.m71_c01077{transform:matrix(0.319649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319649,0.000000,0.000000,0.250000,0,0);}
.m68_c01077{transform:matrix(0.319703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319703,0.000000,0.000000,0.250000,0,0);}
.m40_c01077{transform:matrix(0.319767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319767,0.000000,0.000000,0.250000,0,0);}
.m51_c01077{transform:matrix(0.320851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320851,0.000000,0.000000,0.250000,0,0);}
.m19_c01077{transform:matrix(0.322140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322140,0.000000,0.000000,0.250000,0,0);}
.m3b_c01077{transform:matrix(0.324684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324684,0.000000,0.000000,0.250000,0,0);}
.m24_c01077{transform:matrix(0.326016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326016,0.000000,0.000000,0.250000,0,0);}
.m66_c01077{transform:matrix(0.327311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327311,0.000000,0.000000,0.250000,0,0);}
.m15_c01077{transform:matrix(0.328101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328101,0.000000,0.000000,0.250000,0,0);}
.m49_c01077{transform:matrix(0.328207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328207,0.000000,0.000000,0.250000,0,0);}
.m34_c01077{transform:matrix(0.328686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328686,0.000000,0.000000,0.250000,0,0);}
.ma_c01077{transform:matrix(0.328734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328734,0.000000,0.000000,0.250000,0,0);}
.m73_c01077{transform:matrix(0.328994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328994,0.000000,0.000000,0.250000,0,0);}
.m6c_c01077{transform:matrix(0.329081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329081,0.000000,0.000000,0.250000,0,0);}
.m31_c01077{transform:matrix(0.329557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329557,0.000000,0.000000,0.250000,0,0);}
.m5e_c01077{transform:matrix(0.330652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330652,0.000000,0.000000,0.250000,0,0);}
.mf_c01077{transform:matrix(0.330850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330850,0.000000,0.000000,0.250000,0,0);}
.m22_c01077{transform:matrix(0.331309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331309,0.000000,0.000000,0.250000,0,0);}
.m38_c01077{transform:matrix(0.331519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331519,0.000000,0.000000,0.250000,0,0);}
.m2a_c01077{transform:matrix(0.331914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331914,0.000000,0.000000,0.250000,0,0);}
.m5d_c01077{transform:matrix(0.332846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332846,0.000000,0.000000,0.250000,0,0);}
.m81_c01077{transform:matrix(0.333226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333226,0.000000,0.000000,0.250000,0,0);}
.m36_c01077{transform:matrix(0.333526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333526,0.000000,0.000000,0.250000,0,0);}
.m6f_c01077{transform:matrix(0.335411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335411,0.000000,0.000000,0.250000,0,0);}
.m18_c01077{transform:matrix(0.335591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335591,0.000000,0.000000,0.250000,0,0);}
.mb_c01077{transform:matrix(0.335970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335970,0.000000,0.000000,0.250000,0,0);}
.m39_c01077{transform:matrix(0.340143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340143,0.000000,0.000000,0.250000,0,0);}
.m45_c01077{transform:matrix(0.340716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340716,0.000000,0.000000,0.250000,0,0);}
.m32_c01077{transform:matrix(0.343207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343207,0.000000,0.000000,0.250000,0,0);}
.m76_c01077{transform:matrix(0.343784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343784,0.000000,0.000000,0.250000,0,0);}
.m8_c01077{transform:matrix(0.344154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344154,0.000000,0.000000,0.250000,0,0);}
.m5b_c01077{transform:matrix(0.345207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345207,0.000000,0.000000,0.250000,0,0);}
.m37_c01077{transform:matrix(0.345237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345237,0.000000,0.000000,0.250000,0,0);}
.m5a_c01077{transform:matrix(0.346259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346259,0.000000,0.000000,0.250000,0,0);}
.m4d_c01077{transform:matrix(0.347004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347004,0.000000,0.000000,0.250000,0,0);}
.m33_c01077{transform:matrix(0.347493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347493,0.000000,0.000000,0.250000,0,0);}
.m5c_c01077{transform:matrix(0.348020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348020,0.000000,0.000000,0.250000,0,0);}
.m54_c01077{transform:matrix(0.348637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348637,0.000000,0.000000,0.250000,0,0);}
.m75_c01077{transform:matrix(0.349344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349344,0.000000,0.000000,0.250000,0,0);}
.m6_c01077{transform:matrix(0.349714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349714,0.000000,0.000000,0.250000,0,0);}
.m64_c01077{transform:matrix(0.349814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349814,0.000000,0.000000,0.250000,0,0);}
.m4e_c01077{transform:matrix(0.351923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351923,0.000000,0.000000,0.250000,0,0);}
.m30_c01077{transform:matrix(0.352637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352637,0.000000,0.000000,0.250000,0,0);}
.m20_c01077{transform:matrix(0.352995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352995,0.000000,0.000000,0.250000,0,0);}
.m2d_c01077{transform:matrix(0.353348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353348,0.000000,0.000000,0.250000,0,0);}
.m2_c01077{transform:matrix(0.355678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355678,0.000000,0.000000,0.250000,0,0);}
.m27_c01077{transform:matrix(0.358665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358665,0.000000,0.000000,0.250000,0,0);}
.m83_c01077{transform:matrix(0.365177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365177,0.000000,0.000000,0.250000,0,0);}
.m26_c01077{transform:matrix(0.365786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365786,0.000000,0.000000,0.250000,0,0);}
.m25_c01077{transform:matrix(0.367313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367313,0.000000,0.000000,0.250000,0,0);}
.m14_c01077{transform:matrix(0.369850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369850,0.000000,0.000000,0.250000,0,0);}
.m72_c01077{transform:matrix(0.370326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370326,0.000000,0.000000,0.250000,0,0);}
.m4f_c01077{transform:matrix(0.372635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372635,0.000000,0.000000,0.250000,0,0);}
.m5_c01077{transform:matrix(0.373915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373915,0.000000,0.000000,0.250000,0,0);}
.m52_c01077{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);}
.m7_c01077{transform:matrix(0.417838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417838,0.000000,0.000000,0.250000,0,0);}
.m48_c01077{transform:matrix(0.424266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424266,0.000000,0.000000,0.250000,0,0);}
.m2b_c01077{transform:matrix(0.488549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488549,0.000000,0.000000,0.250000,0,0);}
.v0_c01077{vertical-align:0.000000px;}
.ls7_c01077{letter-spacing:-2.571030px;}
.ls2_c01077{letter-spacing:-2.563684px;}
.ls4_c01077{letter-spacing:0.000000px;}
.lse_c01077{letter-spacing:0.776556px;}
.ls8_c01077{letter-spacing:3.158694px;}
.ls9_c01077{letter-spacing:3.375900px;}
.lsb_c01077{letter-spacing:3.455110px;}
.lsf_c01077{letter-spacing:3.633310px;}
.lsd_c01077{letter-spacing:3.663000px;}
.ls1_c01077{letter-spacing:3.672900px;}
.ls5_c01077{letter-spacing:3.950110px;}
.ls11_c01077{letter-spacing:4.049110px;}
.ls0_c01077{letter-spacing:4.138893px;}
.lsc_c01077{letter-spacing:4.237200px;}
.ls6_c01077{letter-spacing:52.747398px;}
.ls3_c01077{letter-spacing:54.172998px;}
.lsa_c01077{letter-spacing:61.300998px;}
.ls10_c01077{letter-spacing:74.131398px;}
.sc__c01077{text-shadow:none;}
.sc0_c01077{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01077{-webkit-text-stroke:0px transparent;}
.sc0_c01077{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01077{word-spacing:0.000000px;}
.fc0_c01077{color:transparent;}
.fse_c01077{font-size:25.146000px;}
.fs6_c01077{font-size:33.660000px;}
.fs5_c01077{font-size:52.747398px;}
.fs2_c01077{font-size:54.172998px;}
.fs9_c01077{font-size:61.300998px;}
.fsd_c01077{font-size:67.320000px;}
.fs8_c01077{font-size:67.518000px;}
.fsa_c01077{font-size:69.102198px;}
.fs3_c01077{font-size:72.666198px;}
.fsc_c01077{font-size:73.260000px;}
.fs1_c01077{font-size:73.458000px;}
.fs10_c01077{font-size:74.131398px;}
.fsf_c01077{font-size:77.616198px;}
.fs11_c01077{font-size:78.408000px;}
.fs4_c01077{font-size:79.002198px;}
.fs7_c01077{font-size:79.200000px;}
.fs12_c01077{font-size:80.982198px;}
.fsb_c01077{font-size:84.744000px;}
.fs0_c01077{font-size:85.338000px;}
.y0_c01077{bottom:0.000000px;}
.y1_c01077{bottom:76.500000px;}
.y1a_c01077{bottom:154.940985px;}
.y19_c01077{bottom:186.309135px;}
.y18_c01077{bottom:201.277935px;}
.y17_c01077{bottom:213.395535px;}
.y16_c01077{bottom:226.220985px;}
.y15_c01077{bottom:285.031935px;}
.y14_c01077{bottom:317.107935px;}
.y13_c01077{bottom:349.178985px;}
.y12_c01077{bottom:381.616335px;}
.y11_c01077{bottom:414.048735px;}
.y10_c01077{bottom:446.124735px;}
.yf_c01077{bottom:478.557135px;}
.ye_c01077{bottom:510.628185px;}
.yd_c01077{bottom:542.709135px;}
.yc_c01077{bottom:606.504735px;}
.yb_c01077{bottom:638.219385px;}
.ya_c01077{bottom:734.095935px;}
.y9_c01077{bottom:766.166985px;}
.y8_c01077{bottom:791.114985px;}
.y7_c01077{bottom:798.599385px;}
.y6_c01077{bottom:831.031785px;}
.y5_c01077{bottom:862.394985px;}
.y4_c01077{bottom:894.827385px;}
.y3_c01077{bottom:926.546985px;}
.y2_c01077{bottom:1076.591385px;}
.h10_c01077{height:26.226492px;}
.h8_c01077{height:33.035449px;}
.h7_c01077{height:35.129767px;}
.h4_c01077{height:36.079217px;}
.hb_c01077{height:40.826465px;}
.h12_c01077{height:49.371511px;}
.hf_c01077{height:66.070898px;}
.ha_c01077{height:70.419164px;}
.h5_c01077{height:71.317899px;}
.he_c01077{height:71.900684px;}
.hc_c01077{height:72.071433px;}
.h3_c01077{height:72.095010px;}
.h13_c01077{height:76.953164px;}
.h6_c01077{height:77.536337px;}
.h9_c01077{height:77.730469px;}
.h14_c01077{height:79.479599px;}
.h11_c01077{height:80.951269px;}
.h2_c01077{height:83.754580px;}
.hd_c01077{height:88.385344px;}
.h1_c01077{height:1110.000000px;}
.h0_c01077{height:1263.000000px;}
.w1_c01077{width:775.500000px;}
.w0_c01077{width:892.500000px;}
.x0_c01077{left:0.000000px;}
.x1_c01077{left:58.500000px;}
.x19_c01077{left:79.815435px;}
.x3_c01077{left:82.107285px;}
.x1a_c01077{left:112.921035px;}
.xd_c01077{left:125.038635px;}
.x4_c01077{left:126.578085px;}
.x31_c01077{left:134.715885px;}
.x2e_c01077{left:135.799935px;}
.x5_c01077{left:159.069885px;}
.x39_c01077{left:167.554185px;}
.x14_c01077{left:168.860985px;}
.x4e_c01077{left:177.988785px;}
.x1f_c01077{left:192.249735px;}
.x1b_c01077{left:202.565535px;}
.x20_c01077{left:213.856485px;}
.x44_c01077{left:222.835785px;}
.x3a_c01077{left:223.979235px;}
.xe_c01077{left:225.256335px;}
.x38_c01077{left:237.052185px;}
.x32_c01077{left:246.769035px;}
.x49_c01077{left:257.094735px;}
.x6_c01077{left:269.573685px;}
.x33_c01077{left:278.661885px;}
.x27_c01077{left:280.641885px;}
.x52_c01077{left:290.611185px;}
.x21_c01077{left:291.675435px;}
.x7_c01077{left:302.327835px;}
.x3b_c01077{left:312.153585px;}
.x3c_c01077{left:313.287135px;}
.x34_c01077{left:314.712735px;}
.x53_c01077{left:323.177235px;}
.x22_c01077{left:324.785985px;}
.x45_c01077{left:333.928635px;}
.x28_c01077{left:336.037335px;}
.x8_c01077{left:347.570835px;}
.x4f_c01077{left:351.506085px;}
.x2f_c01077{left:357.946035px;}
.x23_c01077{left:369.311235px;}
.x1c_c01077{left:391.467435px;}
.x50_c01077{left:399.867585px;}
.x29_c01077{left:402.302985px;}
.x30_c01077{left:403.787985px;}
.x4a_c01077{left:413.930535px;}
.x15_c01077{left:424.959135px;}
.x3e_c01077{left:434.077035px;}
.x9_c01077{left:435.591735px;}
.x35_c01077{left:448.694385px;}
.xf_c01077{left:458.475585px;}
.xa_c01077{left:469.464585px;}
.x24_c01077{left:479.810085px;}
.x10_c01077{left:491.214885px;}
.x40_c01077{left:501.822735px;}
.x36_c01077{left:506.431185px;}
.x4b_c01077{left:512.287035px;}
.x2a_c01077{left:523.681935px;}
.x46_c01077{left:534.388785px;}
.x3d_c01077{left:535.730235px;}
.x1d_c01077{left:546.793485px;}
.x51_c01077{left:556.332135px;}
.x25_c01077{left:557.401335px;}
.x16_c01077{left:567.702285px;}
.x11_c01077{left:569.281335px;}
.x47_c01077{left:577.825035px;}
.x3f_c01077{left:578.879385px;}
.x17_c01077{left:589.417935px;}
.x2b_c01077{left:590.699985px;}
.x41_c01077{left:600.238635px;}
.x26_c01077{left:601.263285px;}
.x12_c01077{left:603.060135px;}
.x48_c01077{left:621.860235px;}
.xb_c01077{left:622.944285px;}
.x2c_c01077{left:624.122385px;}
.x42_c01077{left:633.269985px;}
.x13_c01077{left:634.675785px;}
.xc_c01077{left:657.213135px;}
.x43_c01077{left:677.968485px;}
.x2d_c01077{left:679.359435px;}
.x37_c01077{left:689.427735px;}
.x2_c01077{left:700.411785px;}
.x4c_c01077{left:701.822535px;}
.x4d_c01077{left:703.347135px;}
.x1e_c01077{left:711.791835px;}
.x18_c01077{left:712.905585px;}
@media print{
.v0_c01077{vertical-align:0.000000pt;}
.ls7_c01077{letter-spacing:-2.285360pt;}
.ls2_c01077{letter-spacing:-2.278830pt;}
.ls4_c01077{letter-spacing:0.000000pt;}
.lse_c01077{letter-spacing:0.690272pt;}
.ls8_c01077{letter-spacing:2.807728pt;}
.ls9_c01077{letter-spacing:3.000800pt;}
.lsb_c01077{letter-spacing:3.071209pt;}
.lsf_c01077{letter-spacing:3.229609pt;}
.lsd_c01077{letter-spacing:3.256000pt;}
.ls1_c01077{letter-spacing:3.264800pt;}
.ls5_c01077{letter-spacing:3.511209pt;}
.ls11_c01077{letter-spacing:3.599209pt;}
.ls0_c01077{letter-spacing:3.679016pt;}
.lsc_c01077{letter-spacing:3.766400pt;}
.ls6_c01077{letter-spacing:46.886576pt;}
.ls3_c01077{letter-spacing:48.153776pt;}
.lsa_c01077{letter-spacing:54.489776pt;}
.ls10_c01077{letter-spacing:65.894576pt;}
.ws0_c01077{word-spacing:0.000000pt;}
.fse_c01077{font-size:22.352000pt;}
.fs6_c01077{font-size:29.920000pt;}
.fs5_c01077{font-size:46.886576pt;}
.fs2_c01077{font-size:48.153776pt;}
.fs9_c01077{font-size:54.489776pt;}
.fsd_c01077{font-size:59.840000pt;}
.fs8_c01077{font-size:60.016000pt;}
.fsa_c01077{font-size:61.424176pt;}
.fs3_c01077{font-size:64.592176pt;}
.fsc_c01077{font-size:65.120000pt;}
.fs1_c01077{font-size:65.296000pt;}
.fs10_c01077{font-size:65.894576pt;}
.fsf_c01077{font-size:68.992176pt;}
.fs11_c01077{font-size:69.696000pt;}
.fs4_c01077{font-size:70.224176pt;}
.fs7_c01077{font-size:70.400000pt;}
.fs12_c01077{font-size:71.984176pt;}
.fsb_c01077{font-size:75.328000pt;}
.fs0_c01077{font-size:75.856000pt;}
.y0_c01077{bottom:0.000000pt;}
.y1_c01077{bottom:68.000000pt;}
.y1a_c01077{bottom:137.725320pt;}
.y19_c01077{bottom:165.608120pt;}
.y18_c01077{bottom:178.913720pt;}
.y17_c01077{bottom:189.684920pt;}
.y16_c01077{bottom:201.085320pt;}
.y15_c01077{bottom:253.361720pt;}
.y14_c01077{bottom:281.873720pt;}
.y13_c01077{bottom:310.381320pt;}
.y12_c01077{bottom:339.214520pt;}
.y11_c01077{bottom:368.043320pt;}
.y10_c01077{bottom:396.555320pt;}
.yf_c01077{bottom:425.384120pt;}
.ye_c01077{bottom:453.891720pt;}
.yd_c01077{bottom:482.408120pt;}
.yc_c01077{bottom:539.115320pt;}
.yb_c01077{bottom:567.306120pt;}
.ya_c01077{bottom:652.529720pt;}
.y9_c01077{bottom:681.037320pt;}
.y8_c01077{bottom:703.213320pt;}
.y7_c01077{bottom:709.866120pt;}
.y6_c01077{bottom:738.694920pt;}
.y5_c01077{bottom:766.573320pt;}
.y4_c01077{bottom:795.402120pt;}
.y3_c01077{bottom:823.597320pt;}
.y2_c01077{bottom:956.970120pt;}
.h10_c01077{height:23.312438pt;}
.h8_c01077{height:29.364844pt;}
.h7_c01077{height:31.226460pt;}
.h4_c01077{height:32.070415pt;}
.hb_c01077{height:36.290191pt;}
.h12_c01077{height:43.885788pt;}
.hf_c01077{height:58.729688pt;}
.ha_c01077{height:62.594813pt;}
.h5_c01077{height:63.393688pt;}
.he_c01077{height:63.911719pt;}
.hc_c01077{height:64.063496pt;}
.h3_c01077{height:64.084453pt;}
.h13_c01077{height:68.402813pt;}
.h6_c01077{height:68.921188pt;}
.h9_c01077{height:69.093750pt;}
.h14_c01077{height:70.648532pt;}
.h11_c01077{height:71.956684pt;}
.h2_c01077{height:74.448516pt;}
.hd_c01077{height:78.564750pt;}
.h1_c01077{height:986.666667pt;}
.h0_c01077{height:1122.666667pt;}
.w1_c01077{width:689.333333pt;}
.w0_c01077{width:793.333333pt;}
.x0_c01077{left:0.000000pt;}
.x1_c01077{left:52.000000pt;}
.x19_c01077{left:70.947053pt;}
.x3_c01077{left:72.984253pt;}
.x1a_c01077{left:100.374253pt;}
.xd_c01077{left:111.145453pt;}
.x4_c01077{left:112.513853pt;}
.x31_c01077{left:119.747453pt;}
.x2e_c01077{left:120.711053pt;}
.x5_c01077{left:141.395453pt;}
.x39_c01077{left:148.937053pt;}
.x14_c01077{left:150.098653pt;}
.x4e_c01077{left:158.212253pt;}
.x1f_c01077{left:170.888653pt;}
.x1b_c01077{left:180.058253pt;}
.x20_c01077{left:190.094653pt;}
.x44_c01077{left:198.076253pt;}
.x3a_c01077{left:199.092653pt;}
.xe_c01077{left:200.227853pt;}
.x38_c01077{left:210.713053pt;}
.x32_c01077{left:219.350253pt;}
.x49_c01077{left:228.528653pt;}
.x6_c01077{left:239.621053pt;}
.x33_c01077{left:247.699453pt;}
.x27_c01077{left:249.459453pt;}
.x52_c01077{left:258.321053pt;}
.x21_c01077{left:259.267053pt;}
.x7_c01077{left:268.735853pt;}
.x3b_c01077{left:277.469853pt;}
.x3c_c01077{left:278.477453pt;}
.x34_c01077{left:279.744653pt;}
.x53_c01077{left:287.268653pt;}
.x22_c01077{left:288.698653pt;}
.x45_c01077{left:296.825453pt;}
.x28_c01077{left:298.699853pt;}
.x8_c01077{left:308.951853pt;}
.x4f_c01077{left:312.449853pt;}
.x2f_c01077{left:318.174253pt;}
.x23_c01077{left:328.276653pt;}
.x1c_c01077{left:347.971053pt;}
.x50_c01077{left:355.437853pt;}
.x29_c01077{left:357.602653pt;}
.x30_c01077{left:358.922653pt;}
.x4a_c01077{left:367.938253pt;}
.x15_c01077{left:377.741453pt;}
.x3e_c01077{left:385.846253pt;}
.x9_c01077{left:387.192653pt;}
.x35_c01077{left:398.839453pt;}
.xf_c01077{left:407.533853pt;}
.xa_c01077{left:417.301853pt;}
.x24_c01077{left:426.497853pt;}
.x10_c01077{left:436.635453pt;}
.x40_c01077{left:446.064653pt;}
.x36_c01077{left:450.161053pt;}
.x4b_c01077{left:455.366253pt;}
.x2a_c01077{left:465.495053pt;}
.x46_c01077{left:475.012253pt;}
.x3d_c01077{left:476.204653pt;}
.x1d_c01077{left:486.038653pt;}
.x51_c01077{left:494.517453pt;}
.x25_c01077{left:495.467853pt;}
.x16_c01077{left:504.624253pt;}
.x11_c01077{left:506.027853pt;}
.x47_c01077{left:513.622253pt;}
.x3f_c01077{left:514.559453pt;}
.x17_c01077{left:523.927053pt;}
.x2b_c01077{left:525.066653pt;}
.x41_c01077{left:533.545453pt;}
.x26_c01077{left:534.456253pt;}
.x12_c01077{left:536.053453pt;}
.x48_c01077{left:552.764653pt;}
.xb_c01077{left:553.728253pt;}
.x2c_c01077{left:554.775453pt;}
.x42_c01077{left:562.906653pt;}
.x13_c01077{left:564.156253pt;}
.xc_c01077{left:584.189453pt;}
.x43_c01077{left:602.638653pt;}
.x2d_c01077{left:603.875053pt;}
.x37_c01077{left:612.824653pt;}
.x2_c01077{left:622.588253pt;}
.x4c_c01077{left:623.842253pt;}
.x4d_c01077{left:625.197453pt;}
.x1e_c01077{left:632.703853pt;}
.x18_c01077{left:633.693853pt;}
}





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

.ir_c01078:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01078{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01078;src:url('chunks/assets/font_9fcfc6ce152c6d37f4e75156.woff2')format("woff");}.ff1_c01078{font-family:ff1_c01078;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01078;src:url('chunks/assets/font_ffaa079b8e4867e784b20ed5.woff2')format("woff");}.ff2_c01078{font-family:ff2_c01078;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01078;src:url('chunks/assets/font_b0d0c645411488e1e38af6fa.woff2')format("woff");}.ff3_c01078{font-family:ff3_c01078;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01078;src:url('chunks/assets/font_0f28ee29604ebf862379d3e9.woff2')format("woff");}.ff4_c01078{font-family:ff4_c01078;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3c_c01078{transform:matrix(0.133721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133721,0.000000,0.000000,0.250000,0,0);}
.m2e_c01078{transform:matrix(0.137597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137597,0.000000,0.000000,0.250000,0,0);}
.m15_c01078{transform:matrix(0.160317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160317,0.000000,0.000000,0.250000,0,0);}
.m80_c01078{transform:matrix(0.181894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181894,0.000000,0.000000,0.250000,0,0);}
.m39_c01078{transform:matrix(0.182823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182823,0.000000,0.000000,0.250000,0,0);}
.m14_c01078{transform:matrix(0.191468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191468,0.000000,0.000000,0.250000,0,0);}
.m5a_c01078{transform:matrix(0.206439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206439,0.000000,0.000000,0.250000,0,0);}
.m29_c01078{transform:matrix(0.220386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220386,0.000000,0.000000,0.250000,0,0);}
.m5e_c01078{transform:matrix(0.234581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234581,0.000000,0.000000,0.250000,0,0);}
.m2c_c01078{transform:matrix(0.244186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244186,0.000000,0.000000,0.250000,0,0);}
.m0_c01078{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m75_c01078{transform:matrix(0.251927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251927,0.000000,0.000000,0.250000,0,0);}
.m7a_c01078{transform:matrix(0.255650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255650,0.000000,0.000000,0.250000,0,0);}
.m7e_c01078{transform:matrix(0.259852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259852,0.000000,0.000000,0.250000,0,0);}
.m60_c01078{transform:matrix(0.262299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262299,0.000000,0.000000,0.250000,0,0);}
.m7c_c01078{transform:matrix(0.263861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263861,0.000000,0.000000,0.250000,0,0);}
.m3e_c01078{transform:matrix(0.264453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264453,0.000000,0.000000,0.250000,0,0);}
.m62_c01078{transform:matrix(0.265440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265440,0.000000,0.000000,0.250000,0,0);}
.m6f_c01078{transform:matrix(0.267450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267450,0.000000,0.000000,0.250000,0,0);}
.m47_c01078{transform:matrix(0.267581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267581,0.000000,0.000000,0.250000,0,0);}
.m38_c01078{transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);}
.m4f_c01078{transform:matrix(0.268537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268537,0.000000,0.000000,0.250000,0,0);}
.m2b_c01078{transform:matrix(0.269322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269322,0.000000,0.000000,0.250000,0,0);}
.m3d_c01078{transform:matrix(0.269429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269429,0.000000,0.000000,0.250000,0,0);}
.m30_c01078{transform:matrix(0.269932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269932,0.000000,0.000000,0.250000,0,0);}
.m42_c01078{transform:matrix(0.271147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271147,0.000000,0.000000,0.250000,0,0);}
.m73_c01078{transform:matrix(0.272304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272304,0.000000,0.000000,0.250000,0,0);}
.m4_c01078{transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);}
.m23_c01078{transform:matrix(0.273167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273167,0.000000,0.000000,0.250000,0,0);}
.m11_c01078{transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);}
.m19_c01078{transform:matrix(0.276853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276853,0.000000,0.000000,0.250000,0,0);}
.m7f_c01078{transform:matrix(0.277385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277385,0.000000,0.000000,0.250000,0,0);}
.m34_c01078{transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);}
.m58_c01078{transform:matrix(0.278463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278463,0.000000,0.000000,0.250000,0,0);}
.m1_c01078{transform:matrix(0.278682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278682,0.000000,0.000000,0.250000,0,0);}
.m56_c01078{transform:matrix(0.279437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279437,0.000000,0.000000,0.250000,0,0);}
.m25_c01078{transform:matrix(0.279574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279574,0.000000,0.000000,0.250000,0,0);}
.mc_c01078{transform:matrix(0.280188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280188,0.000000,0.000000,0.250000,0,0);}
.m2_c01078{transform:matrix(0.280800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280800,0.000000,0.000000,0.250000,0,0);}
.m16_c01078{transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);}
.m59_c01078{transform:matrix(0.283359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283359,0.000000,0.000000,0.250000,0,0);}
.m32_c01078{transform:matrix(0.285647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285647,0.000000,0.000000,0.250000,0,0);}
.m71_c01078{transform:matrix(0.285652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285652,0.000000,0.000000,0.250000,0,0);}
.m4a_c01078{transform:matrix(0.285720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285720,0.000000,0.000000,0.250000,0,0);}
.m5c_c01078{transform:matrix(0.288082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288082,0.000000,0.000000,0.250000,0,0);}
.m83_c01078{transform:matrix(0.288206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288206,0.000000,0.000000,0.250000,0,0);}
.m4b_c01078{transform:matrix(0.289082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289082,0.000000,0.000000,0.250000,0,0);}
.m21_c01078{transform:matrix(0.290576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290576,0.000000,0.000000,0.250000,0,0);}
.m7b_c01078{transform:matrix(0.290858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290858,0.000000,0.000000,0.250000,0,0);}
.m52_c01078{transform:matrix(0.292470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292470,0.000000,0.000000,0.250000,0,0);}
.m3_c01078{transform:matrix(0.293136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293136,0.000000,0.000000,0.250000,0,0);}
.m78_c01078{transform:matrix(0.293847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293847,0.000000,0.000000,0.250000,0,0);}
.m63_c01078{transform:matrix(0.294503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294503,0.000000,0.000000,0.250000,0,0);}
.ma_c01078{transform:matrix(0.296970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296970,0.000000,0.000000,0.250000,0,0);}
.m9_c01078{transform:matrix(0.297812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297812,0.000000,0.000000,0.250000,0,0);}
.m22_c01078{transform:matrix(0.298251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298251,0.000000,0.000000,0.250000,0,0);}
.m1b_c01078{transform:matrix(0.298317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298317,0.000000,0.000000,0.250000,0,0);}
.m70_c01078{transform:matrix(0.298516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298516,0.000000,0.000000,0.250000,0,0);}
.m13_c01078{transform:matrix(0.299390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299390,0.000000,0.000000,0.250000,0,0);}
.m79_c01078{transform:matrix(0.299622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299622,0.000000,0.000000,0.250000,0,0);}
.m43_c01078{transform:matrix(0.300511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300511,0.000000,0.000000,0.250000,0,0);}
.m48_c01078{transform:matrix(0.302210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302210,0.000000,0.000000,0.250000,0,0);}
.me_c01078{transform:matrix(0.302305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302305,0.000000,0.000000,0.250000,0,0);}
.m18_c01078{transform:matrix(0.303621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303621,0.000000,0.000000,0.250000,0,0);}
.m57_c01078{transform:matrix(0.303685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303685,0.000000,0.000000,0.250000,0,0);}
.m10_c01078{transform:matrix(0.306466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306466,0.000000,0.000000,0.250000,0,0);}
.m53_c01078{transform:matrix(0.307440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307440,0.000000,0.000000,0.250000,0,0);}
.m37_c01078{transform:matrix(0.309491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309491,0.000000,0.000000,0.250000,0,0);}
.m3f_c01078{transform:matrix(0.310017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310017,0.000000,0.000000,0.250000,0,0);}
.mb_c01078{transform:matrix(0.310496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310496,0.000000,0.000000,0.250000,0,0);}
.m3a_c01078{transform:matrix(0.310519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310519,0.000000,0.000000,0.250000,0,0);}
.m66_c01078{transform:matrix(0.311061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311061,0.000000,0.000000,0.250000,0,0);}
.m6e_c01078{transform:matrix(0.311573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311573,0.000000,0.000000,0.250000,0,0);}
.m1e_c01078{transform:matrix(0.312213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312213,0.000000,0.000000,0.250000,0,0);}
.m1a_c01078{transform:matrix(0.312595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312595,0.000000,0.000000,0.250000,0,0);}
.m1f_c01078{transform:matrix(0.313638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313638,0.000000,0.000000,0.250000,0,0);}
.m61_c01078{transform:matrix(0.314502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314502,0.000000,0.000000,0.250000,0,0);}
.m51_c01078{transform:matrix(0.314737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314737,0.000000,0.000000,0.250000,0,0);}
.m26_c01078{transform:matrix(0.315334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315334,0.000000,0.000000,0.250000,0,0);}
.m46_c01078{transform:matrix(0.316480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316480,0.000000,0.000000,0.250000,0,0);}
.m67_c01078{transform:matrix(0.316670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316670,0.000000,0.000000,0.250000,0,0);}
.m6a_c01078{transform:matrix(0.317755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317755,0.000000,0.000000,0.250000,0,0);}
.m7d_c01078{transform:matrix(0.318253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318253,0.000000,0.000000,0.250000,0,0);}
.m44_c01078{transform:matrix(0.318286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318286,0.000000,0.000000,0.250000,0,0);}
.m7_c01078{transform:matrix(0.318745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318745,0.000000,0.000000,0.250000,0,0);}
.m28_c01078{transform:matrix(0.318946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318946,0.000000,0.000000,0.250000,0,0);}
.md_c01078{transform:matrix(0.319240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319240,0.000000,0.000000,0.250000,0,0);}
.m72_c01078{transform:matrix(0.319317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319317,0.000000,0.000000,0.250000,0,0);}
.m33_c01078{transform:matrix(0.319618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319618,0.000000,0.000000,0.250000,0,0);}
.m65_c01078{transform:matrix(0.319887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319887,0.000000,0.000000,0.250000,0,0);}
.m31_c01078{transform:matrix(0.320178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320178,0.000000,0.000000,0.250000,0,0);}
.m6c_c01078{transform:matrix(0.320451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320451,0.000000,0.000000,0.250000,0,0);}
.m5b_c01078{transform:matrix(0.322403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322403,0.000000,0.000000,0.250000,0,0);}
.m2a_c01078{transform:matrix(0.323926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323926,0.000000,0.000000,0.250000,0,0);}
.m27_c01078{transform:matrix(0.324484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324484,0.000000,0.000000,0.250000,0,0);}
.m4e_c01078{transform:matrix(0.325087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325087,0.000000,0.000000,0.250000,0,0);}
.m20_c01078{transform:matrix(0.326238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326238,0.000000,0.000000,0.250000,0,0);}
.m49_c01078{transform:matrix(0.326349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326349,0.000000,0.000000,0.250000,0,0);}
.m69_c01078{transform:matrix(0.327286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327286,0.000000,0.000000,0.250000,0,0);}
.m77_c01078{transform:matrix(0.328794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328794,0.000000,0.000000,0.250000,0,0);}
.m55_c01078{transform:matrix(0.329522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329522,0.000000,0.000000,0.250000,0,0);}
.m64_c01078{transform:matrix(0.329649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329649,0.000000,0.000000,0.250000,0,0);}
.m24_c01078{transform:matrix(0.330904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330904,0.000000,0.000000,0.250000,0,0);}
.m40_c01078{transform:matrix(0.333081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333081,0.000000,0.000000,0.250000,0,0);}
.m54_c01078{transform:matrix(0.333323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333323,0.000000,0.000000,0.250000,0,0);}
.m6_c01078{transform:matrix(0.333423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333423,0.000000,0.000000,0.250000,0,0);}
.m35_c01078{transform:matrix(0.335265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335265,0.000000,0.000000,0.250000,0,0);}
.m4c_c01078{transform:matrix(0.336747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336747,0.000000,0.000000,0.250000,0,0);}
.m81_c01078{transform:matrix(0.336817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336817,0.000000,0.000000,0.250000,0,0);}
.m6d_c01078{transform:matrix(0.339063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339063,0.000000,0.000000,0.250000,0,0);}
.m1c_c01078{transform:matrix(0.339155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339155,0.000000,0.000000,0.250000,0,0);}
.m8_c01078{transform:matrix(0.341611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341611,0.000000,0.000000,0.250000,0,0);}
.m5d_c01078{transform:matrix(0.342404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342404,0.000000,0.000000,0.250000,0,0);}
.m50_c01078{transform:matrix(0.342830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342830,0.000000,0.000000,0.250000,0,0);}
.m5f_c01078{transform:matrix(0.344039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344039,0.000000,0.000000,0.250000,0,0);}
.m45_c01078{transform:matrix(0.344326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344326,0.000000,0.000000,0.250000,0,0);}
.mf_c01078{transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);}
.m74_c01078{transform:matrix(0.352565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352565,0.000000,0.000000,0.250000,0,0);}
.m68_c01078{transform:matrix(0.353108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353108,0.000000,0.000000,0.250000,0,0);}
.m12_c01078{transform:matrix(0.356018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356018,0.000000,0.000000,0.250000,0,0);}
.m6b_c01078{transform:matrix(0.356369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356369,0.000000,0.000000,0.250000,0,0);}
.m5_c01078{transform:matrix(0.359199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359199,0.000000,0.000000,0.250000,0,0);}
.m82_c01078{transform:matrix(0.362885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362885,0.000000,0.000000,0.250000,0,0);}
.m76_c01078{transform:matrix(0.368559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368559,0.000000,0.000000,0.250000,0,0);}
.m1d_c01078{transform:matrix(0.374051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374051,0.000000,0.000000,0.250000,0,0);}
.m41_c01078{transform:matrix(0.384410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384410,0.000000,0.000000,0.250000,0,0);}
.m17_c01078{transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);}
.m4d_c01078{transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);}
.m3b_c01078{transform:matrix(0.404098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404098,0.000000,0.000000,0.250000,0,0);}
.m2f_c01078{transform:matrix(0.409677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409677,0.000000,0.000000,0.250000,0,0);}
.m36_c01078{transform:matrix(0.415566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415566,0.000000,0.000000,0.250000,0,0);}
.m2d_c01078{transform:matrix(0.430232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430232,0.000000,0.000000,0.250000,0,0);}
.v0_c01078{vertical-align:0.000000px;}
.lsd_c01078{letter-spacing:-2.647267px;}
.lse_c01078{letter-spacing:-1.756022px;}
.ls2_c01078{letter-spacing:-1.611883px;}
.ls14_c01078{letter-spacing:-1.459779px;}
.ls8_c01078{letter-spacing:-0.658035px;}
.ls7_c01078{letter-spacing:-0.325236px;}
.ls1_c01078{letter-spacing:0.000000px;}
.ls12_c01078{letter-spacing:0.204218px;}
.ls15_c01078{letter-spacing:0.340561px;}
.ls13_c01078{letter-spacing:0.597526px;}
.lsc_c01078{letter-spacing:0.704783px;}
.ls3_c01078{letter-spacing:3.059344px;}
.lsa_c01078{letter-spacing:3.405610px;}
.ls5_c01078{letter-spacing:3.425400px;}
.ls17_c01078{letter-spacing:3.445200px;}
.lsb_c01078{letter-spacing:3.593700px;}
.ls11_c01078{letter-spacing:3.623400px;}
.lsf_c01078{letter-spacing:3.643200px;}
.ls4_c01078{letter-spacing:3.781810px;}
.ls9_c01078{letter-spacing:3.900610px;}
.ls0_c01078{letter-spacing:19.362959px;}
.ls16_c01078{letter-spacing:51.321798px;}
.ls6_c01078{letter-spacing:59.875398px;}
.ls10_c01078{letter-spacing:61.300998px;}
.sc__c01078{text-shadow:none;}
.sc0_c01078{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01078{-webkit-text-stroke:0px transparent;}
.sc0_c01078{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01078{word-spacing:-17.449271px;}
.ws2_c01078{word-spacing:0.000000px;}
.ws0_c01078{word-spacing:909.846432px;}
._1_c01078{width:2.488282px;}
._0_c01078{width:5.277888px;}
.fc0_c01078{color:transparent;}
.fs0_c01078{font-size:27.720000px;}
.fs12_c01078{font-size:38.808000px;}
.fse_c01078{font-size:39.600000px;}
.fsf_c01078{font-size:51.321798px;}
.fs5_c01078{font-size:59.875398px;}
.fsc_c01078{font-size:61.300998px;}
.fsa_c01078{font-size:67.122198px;}
.fs7_c01078{font-size:68.112198px;}
.fs4_c01078{font-size:68.508000px;}
.fs11_c01078{font-size:68.904000px;}
.fs9_c01078{font-size:71.874000px;}
.fsd_c01078{font-size:72.468000px;}
.fsb_c01078{font-size:72.864000px;}
.fs10_c01078{font-size:74.844000px;}
.fs3_c01078{font-size:75.636198px;}
.fs1_c01078{font-size:76.032198px;}
.fs6_c01078{font-size:78.012198px;}
.fs2_c01078{font-size:87.912198px;}
.fs8_c01078{font-size:104.544000px;}
.y0_c01078{bottom:0.000000px;}
.y1d_c01078{bottom:61.928505px;}
.y1_c01078{bottom:76.500000px;}
.y1c_c01078{bottom:89.724735px;}
.y1b_c01078{bottom:120.018735px;}
.y1a_c01078{bottom:153.158985px;}
.y19_c01078{bottom:187.021935px;}
.y18_c01078{bottom:220.879935px;}
.y17_c01078{bottom:253.312335px;}
.y16_c01078{bottom:317.459385px;}
.y15_c01078{bottom:349.178985px;}
.y14_c01078{bottom:381.254985px;}
.y13_c01078{bottom:396.941535px;}
.y12_c01078{bottom:412.974585px;}
.y11_c01078{bottom:445.411935px;}
.y10_c01078{bottom:477.482985px;}
.yf_c01078{bottom:508.846185px;}
.ye_c01078{bottom:541.634985px;}
.y2_c01078{bottom:570.864735px;}
.yd_c01078{bottom:573.715935px;}
.yc_c01078{bottom:637.511535px;}
.yb_c01078{bottom:659.608335px;}
.ya_c01078{bottom:670.300335px;}
.y3_c01078{bottom:670.651785px;}
.y9_c01078{bottom:766.166985px;}
.y8_c01078{bottom:798.955785px;}
.y7_c01078{bottom:861.325785px;}
.y6_c01078{bottom:893.050335px;}
.y5_c01078{bottom:924.764985px;}
.y4_c01078{bottom:1080.155385px;}
.h2_c01078{height:28.911094px;}
.h11_c01078{height:34.180317px;}
.h7_c01078{height:39.877015px;}
.h14_c01078{height:40.475531px;}
.he_c01078{height:40.826465px;}
.h10_c01078{height:41.301563px;}
.hc_c01078{height:65.876767px;}
.h13_c01078{height:67.625508px;}
.h9_c01078{height:71.038894px;}
.hf_c01078{height:71.123379px;}
.h6_c01078{height:71.451703px;}
.hd_c01078{height:71.512031px;}
.h12_c01078{height:73.455293px;}
.h5_c01078{height:74.232792px;}
.h3_c01078{height:74.621444px;}
.hb_c01078{height:74.962336px;}
.h8_c01078{height:76.526614px;}
.h4_c01078{height:86.281015px;}
.ha_c01078{height:109.036125px;}
.h1_c01078{height:1110.000000px;}
.h0_c01078{height:1263.000000px;}
.w1_c01078{width:775.500000px;}
.w0_c01078{width:892.500000px;}
.x0_c01078{left:0.000000px;}
.x1_c01078{left:58.500000px;}
.x2_c01078{left:64.742685px;}
.x48_c01078{left:72.454785px;}
.x54_c01078{left:104.723835px;}
.x49_c01078{left:117.351285px;}
.x3_c01078{left:126.662235px;}
.x57_c01078{left:159.253035px;}
.x5_c01078{left:171.746835px;}
.x45_c01078{left:181.701285px;}
.x4a_c01078{left:182.844735px;}
.x4d_c01078{left:194.026785px;}
.x21_c01078{left:200.392485px;}
.x58_c01078{left:205.763235px;}
.x6_c01078{left:227.602635px;}
.x29_c01078{left:229.642035px;}
.x4b_c01078{left:238.512435px;}
.x22_c01078{left:240.606285px;}
.x1c_c01078{left:250.333035px;}
.x7_c01078{left:260.817135px;}
.xe_c01078{left:262.668435px;}
.x4c_c01078{left:272.716935px;}
.x1d_c01078{left:283.265385px;}
.x46_c01078{left:293.615835px;}
.x1a_c01078{left:295.204785px;}
.x59_c01078{left:304.867185px;}
.x16_c01078{left:306.134385px;}
.xf_c01078{left:317.207535px;}
.x2a_c01078{left:327.161985px;}
.x2f_c01078{left:328.736085px;}
.x23_c01078{left:338.507385px;}
.x33_c01078{left:340.705185px;}
.x8_c01078{left:350.837835px;}
.x30_c01078{left:361.168485px;}
.x1e_c01078{left:362.203035px;}
.x3d_c01078{left:372.023835px;}
.x9_c01078{left:383.230635px;}
.x34_c01078{left:389.180535px;}
.x47_c01078{left:393.447435px;}
.x31_c01078{left:394.976985px;}
.x35_c01078{left:405.114585px;}
.x10_c01078{left:406.728285px;}
.x2b_c01078{left:416.172885px;}
.x24_c01078{left:417.831135px;}
.xa_c01078{left:428.478585px;}
.x2c_c01078{left:431.230785px;}
.x36_c01078{left:437.799435px;}
.x11_c01078{left:439.363635px;}
.x3e_c01078{left:448.996335px;}
.x3b_c01078{left:450.218985px;}
.x25_c01078{left:451.550535px;}
.x2d_c01078{left:457.604385px;}
.x5a_c01078{left:460.529835px;}
.x17_c01078{left:462.004935px;}
.x32_c01078{left:473.058285px;}
.x37_c01078{left:479.706135px;}
.x43_c01078{left:483.393885px;}
.x2e_c01078{left:484.769985px;}
.x18_c01078{left:494.051235px;}
.x4e_c01078{left:504.317535px;}
.xb_c01078{left:506.163885px;}
.x3f_c01078{left:515.786685px;}
.x26_c01078{left:517.949835px;}
.x38_c01078{left:526.676685px;}
.x19_c01078{left:527.938935px;}
.x12_c01078{left:539.284335px;}
.x40_c01078{left:548.798235px;}
.x27_c01078{left:559.846635px;}
.x4f_c01078{left:571.380135px;}
.xc_c01078{left:572.790885px;}
.x1f_c01078{left:582.497835px;}
.x3c_c01078{left:593.491785px;}
.x39_c01078{left:595.377735px;}
.x1b_c01078{left:604.040235px;}
.x50_c01078{left:614.034285px;}
.x20_c01078{left:615.157935px;}
.x55_c01078{left:626.166735px;}
.x3a_c01078{left:627.424035px;}
.x51_c01078{left:637.378485px;}
.x13_c01078{left:639.140685px;}
.x41_c01078{left:648.451635px;}
.x44_c01078{left:658.208085px;}
.x14_c01078{left:660.321735px;}
.x28_c01078{left:661.871085px;}
.x52_c01078{left:670.295985px;}
.xd_c01078{left:671.469135px;}
.x42_c01078{left:681.195885px;}
.x5b_c01078{left:691.368135px;}
.x15_c01078{left:692.467035px;}
.x4_c01078{left:694.704435px;}
.x5c_c01078{left:697.664535px;}
.x56_c01078{left:703.941135px;}
.x53_c01078{left:708.465435px;}
@media print{
.v0_c01078{vertical-align:0.000000pt;}
.lsd_c01078{letter-spacing:-2.353126pt;}
.lse_c01078{letter-spacing:-1.560909pt;}
.ls2_c01078{letter-spacing:-1.432785pt;}
.ls14_c01078{letter-spacing:-1.297581pt;}
.ls8_c01078{letter-spacing:-0.584920pt;}
.ls7_c01078{letter-spacing:-0.289098pt;}
.ls1_c01078{letter-spacing:0.000000pt;}
.ls12_c01078{letter-spacing:0.181527pt;}
.ls15_c01078{letter-spacing:0.302721pt;}
.ls13_c01078{letter-spacing:0.531134pt;}
.lsc_c01078{letter-spacing:0.626474pt;}
.ls3_c01078{letter-spacing:2.719417pt;}
.lsa_c01078{letter-spacing:3.027209pt;}
.ls5_c01078{letter-spacing:3.044800pt;}
.ls17_c01078{letter-spacing:3.062400pt;}
.lsb_c01078{letter-spacing:3.194400pt;}
.ls11_c01078{letter-spacing:3.220800pt;}
.lsf_c01078{letter-spacing:3.238400pt;}
.ls4_c01078{letter-spacing:3.361609pt;}
.ls9_c01078{letter-spacing:3.467209pt;}
.ls0_c01078{letter-spacing:17.211519pt;}
.ls16_c01078{letter-spacing:45.619376pt;}
.ls6_c01078{letter-spacing:53.222576pt;}
.ls10_c01078{letter-spacing:54.489776pt;}
.ws1_c01078{word-spacing:-15.510463pt;}
.ws2_c01078{word-spacing:0.000000pt;}
.ws0_c01078{word-spacing:808.752384pt;}
._1_c01078{width:2.211806pt;}
._0_c01078{width:4.691456pt;}
.fs0_c01078{font-size:24.640000pt;}
.fs12_c01078{font-size:34.496000pt;}
.fse_c01078{font-size:35.200000pt;}
.fsf_c01078{font-size:45.619376pt;}
.fs5_c01078{font-size:53.222576pt;}
.fsc_c01078{font-size:54.489776pt;}
.fsa_c01078{font-size:59.664176pt;}
.fs7_c01078{font-size:60.544176pt;}
.fs4_c01078{font-size:60.896000pt;}
.fs11_c01078{font-size:61.248000pt;}
.fs9_c01078{font-size:63.888000pt;}
.fsd_c01078{font-size:64.416000pt;}
.fsb_c01078{font-size:64.768000pt;}
.fs10_c01078{font-size:66.528000pt;}
.fs3_c01078{font-size:67.232176pt;}
.fs1_c01078{font-size:67.584176pt;}
.fs6_c01078{font-size:69.344176pt;}
.fs2_c01078{font-size:78.144176pt;}
.fs8_c01078{font-size:92.928000pt;}
.y0_c01078{bottom:0.000000pt;}
.y1d_c01078{bottom:55.047560pt;}
.y1_c01078{bottom:68.000000pt;}
.y1c_c01078{bottom:79.755320pt;}
.y1b_c01078{bottom:106.683320pt;}
.y1a_c01078{bottom:136.141320pt;}
.y19_c01078{bottom:166.241720pt;}
.y18_c01078{bottom:196.337720pt;}
.y17_c01078{bottom:225.166520pt;}
.y16_c01078{bottom:282.186120pt;}
.y15_c01078{bottom:310.381320pt;}
.y14_c01078{bottom:338.893320pt;}
.y13_c01078{bottom:352.836920pt;}
.y12_c01078{bottom:367.088520pt;}
.y11_c01078{bottom:395.921720pt;}
.y10_c01078{bottom:424.429320pt;}
.yf_c01078{bottom:452.307720pt;}
.ye_c01078{bottom:481.453320pt;}
.y2_c01078{bottom:507.435320pt;}
.yd_c01078{bottom:509.969720pt;}
.yc_c01078{bottom:566.676920pt;}
.yb_c01078{bottom:586.318520pt;}
.ya_c01078{bottom:595.822520pt;}
.y3_c01078{bottom:596.134920pt;}
.y9_c01078{bottom:681.037320pt;}
.y8_c01078{bottom:710.182920pt;}
.y7_c01078{bottom:765.622920pt;}
.y6_c01078{bottom:793.822520pt;}
.y5_c01078{bottom:822.013320pt;}
.y4_c01078{bottom:960.138120pt;}
.h2_c01078{height:25.698750pt;}
.h11_c01078{height:30.382504pt;}
.h7_c01078{height:35.446236pt;}
.h14_c01078{height:35.978250pt;}
.he_c01078{height:36.290191pt;}
.h10_c01078{height:36.712500pt;}
.hc_c01078{height:58.557126pt;}
.h13_c01078{height:60.111562pt;}
.h9_c01078{height:63.145684pt;}
.hf_c01078{height:63.220781pt;}
.h6_c01078{height:63.512625pt;}
.hd_c01078{height:63.566250pt;}
.h12_c01078{height:65.293594pt;}
.h5_c01078{height:65.984704pt;}
.h3_c01078{height:66.330173pt;}
.hb_c01078{height:66.633188pt;}
.h8_c01078{height:68.023657pt;}
.h4_c01078{height:76.694235pt;}
.ha_c01078{height:96.921000pt;}
.h1_c01078{height:986.666667pt;}
.h0_c01078{height:1122.666667pt;}
.w1_c01078{width:689.333333pt;}
.w0_c01078{width:793.333333pt;}
.x0_c01078{left:0.000000pt;}
.x1_c01078{left:52.000000pt;}
.x2_c01078{left:57.549053pt;}
.x48_c01078{left:64.404253pt;}
.x54_c01078{left:93.087853pt;}
.x49_c01078{left:104.312253pt;}
.x3_c01078{left:112.588653pt;}
.x57_c01078{left:141.558253pt;}
.x5_c01078{left:152.663853pt;}
.x45_c01078{left:161.512253pt;}
.x4a_c01078{left:162.528653pt;}
.x4d_c01078{left:172.468253pt;}
.x21_c01078{left:178.126653pt;}
.x58_c01078{left:182.900653pt;}
.x6_c01078{left:202.313453pt;}
.x29_c01078{left:204.126253pt;}
.x4b_c01078{left:212.011053pt;}
.x22_c01078{left:213.872253pt;}
.x1c_c01078{left:222.518253pt;}
.x7_c01078{left:231.837453pt;}
.xe_c01078{left:233.483053pt;}
.x4c_c01078{left:242.415053pt;}
.x1d_c01078{left:251.791453pt;}
.x46_c01078{left:260.991853pt;}
.x1a_c01078{left:262.404253pt;}
.x59_c01078{left:270.993053pt;}
.x16_c01078{left:272.119453pt;}
.xf_c01078{left:281.962253pt;}
.x2a_c01078{left:290.810653pt;}
.x2f_c01078{left:292.209853pt;}
.x23_c01078{left:300.895453pt;}
.x33_c01078{left:302.849053pt;}
.x8_c01078{left:311.855853pt;}
.x30_c01078{left:321.038653pt;}
.x1e_c01078{left:321.958253pt;}
.x3d_c01078{left:330.687853pt;}
.x9_c01078{left:340.649453pt;}
.x34_c01078{left:345.938253pt;}
.x47_c01078{left:349.731053pt;}
.x31_c01078{left:351.090653pt;}
.x35_c01078{left:360.101853pt;}
.x10_c01078{left:361.536253pt;}
.x2b_c01078{left:369.931453pt;}
.x24_c01078{left:371.405453pt;}
.xa_c01078{left:380.869853pt;}
.x2c_c01078{left:383.316253pt;}
.x36_c01078{left:389.155053pt;}
.x11_c01078{left:390.545453pt;}
.x3e_c01078{left:399.107853pt;}
.x3b_c01078{left:400.194653pt;}
.x25_c01078{left:401.378253pt;}
.x2d_c01078{left:406.759453pt;}
.x5a_c01078{left:409.359853pt;}
.x17_c01078{left:410.671053pt;}
.x32_c01078{left:420.496253pt;}
.x37_c01078{left:426.405453pt;}
.x43_c01078{left:429.683453pt;}
.x2e_c01078{left:430.906653pt;}
.x18_c01078{left:439.156653pt;}
.x4e_c01078{left:448.282253pt;}
.xb_c01078{left:449.923453pt;}
.x3f_c01078{left:458.477053pt;}
.x26_c01078{left:460.399853pt;}
.x38_c01078{left:468.157053pt;}
.x19_c01078{left:469.279053pt;}
.x12_c01078{left:479.363853pt;}
.x40_c01078{left:487.820653pt;}
.x27_c01078{left:497.641453pt;}
.x4f_c01078{left:507.893453pt;}
.xc_c01078{left:509.147453pt;}
.x1f_c01078{left:517.775853pt;}
.x3c_c01078{left:527.548253pt;}
.x39_c01078{left:529.224653pt;}
.x1b_c01078{left:536.924653pt;}
.x50_c01078{left:545.808253pt;}
.x20_c01078{left:546.807053pt;}
.x55_c01078{left:556.592653pt;}
.x3a_c01078{left:557.710253pt;}
.x51_c01078{left:566.558653pt;}
.x13_c01078{left:568.125053pt;}
.x41_c01078{left:576.401453pt;}
.x44_c01078{left:585.073853pt;}
.x14_c01078{left:586.952653pt;}
.x28_c01078{left:588.329853pt;}
.x52_c01078{left:595.818653pt;}
.xd_c01078{left:596.861453pt;}
.x42_c01078{left:605.507453pt;}
.x5b_c01078{left:614.549453pt;}
.x15_c01078{left:615.526253pt;}
.x4_c01078{left:617.515053pt;}
.x5c_c01078{left:620.146253pt;}
.x56_c01078{left:625.725453pt;}
.x53_c01078{left:629.747053pt;}
}





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

.ir_c01079:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01079{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01079;src:url('chunks/assets/font_30561681b42e51398849fce7.woff2')format("woff");}.ff1_c01079{font-family:ff1_c01079;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01079;src:url('chunks/assets/font_fb601f1670dc332b66d01247.woff2')format("woff");}.ff2_c01079{font-family:ff2_c01079;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01079;src:url('chunks/assets/font_632a719df229fc209df0dd9f.woff2')format("woff");}.ff3_c01079{font-family:ff3_c01079;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01079;src:url('chunks/assets/font_8ecf45ee0a821c1314047bce.woff2')format("woff");}.ff4_c01079{font-family:ff4_c01079;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01079;src:url('chunks/assets/font_b6f82248ce6b5615e04ba4f8.woff2')format("woff");}.ff5_c01079{font-family:ff5_c01079;line-height:1.435059;font-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_c01079{transform:matrix(0.112501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112501,0.000000,0.000000,0.250000,0,0);}
.m19_c01079{transform:matrix(0.156463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156463,0.000000,0.000000,0.250000,0,0);}
.m1b_c01079{transform:matrix(0.181122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181122,0.000000,0.000000,0.250000,0,0);}
.m74_c01079{transform:matrix(0.181327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181327,0.000000,0.000000,0.250000,0,0);}
.m1e_c01079{transform:matrix(0.182927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182927,0.000000,0.000000,0.250000,0,0);}
.m61_c01079{transform:matrix(0.194643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194643,0.000000,0.000000,0.250000,0,0);}
.m8f_c01079{transform:matrix(0.198647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198647,0.000000,0.000000,0.250000,0,0);}
.m12_c01079{transform:matrix(0.200451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200451,0.000000,0.000000,0.250000,0,0);}
.m4_c01079{transform:matrix(0.204955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204955,0.000000,0.000000,0.250000,0,0);}
.m6_c01079{transform:matrix(0.223668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223668,0.000000,0.000000,0.250000,0,0);}
.m46_c01079{transform:matrix(0.226887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226887,0.000000,0.000000,0.250000,0,0);}
.m4e_c01079{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);}
.m0_c01079{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m67_c01079{transform:matrix(0.250645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250645,0.000000,0.000000,0.250000,0,0);}
.m35_c01079{transform:matrix(0.250784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250784,0.000000,0.000000,0.250000,0,0);}
.m4c_c01079{transform:matrix(0.250897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250897,0.000000,0.000000,0.250000,0,0);}
.m11_c01079{transform:matrix(0.254778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254778,0.000000,0.000000,0.250000,0,0);}
.m42_c01079{transform:matrix(0.255459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255459,0.000000,0.000000,0.250000,0,0);}
.m3a_c01079{transform:matrix(0.257310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257310,0.000000,0.000000,0.250000,0,0);}
.md_c01079{transform:matrix(0.257706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257706,0.000000,0.000000,0.250000,0,0);}
.m2c_c01079{transform:matrix(0.258282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258282,0.000000,0.000000,0.250000,0,0);}
.m47_c01079{transform:matrix(0.258572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258572,0.000000,0.000000,0.250000,0,0);}
.m64_c01079{transform:matrix(0.259374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259374,0.000000,0.000000,0.250000,0,0);}
.mc_c01079{transform:matrix(0.259569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259569,0.000000,0.000000,0.250000,0,0);}
.m3_c01079{transform:matrix(0.260021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260021,0.000000,0.000000,0.250000,0,0);}
.m54_c01079{transform:matrix(0.260635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260635,0.000000,0.000000,0.250000,0,0);}
.m32_c01079{transform:matrix(0.260869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260869,0.000000,0.000000,0.250000,0,0);}
.m3c_c01079{transform:matrix(0.261280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261280,0.000000,0.000000,0.250000,0,0);}
.m24_c01079{transform:matrix(0.261606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261606,0.000000,0.000000,0.250000,0,0);}
.m62_c01079{transform:matrix(0.261798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261798,0.000000,0.000000,0.250000,0,0);}
.m28_c01079{transform:matrix(0.262322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262322,0.000000,0.000000,0.250000,0,0);}
.m5e_c01079{transform:matrix(0.262502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262502,0.000000,0.000000,0.250000,0,0);}
.m14_c01079{transform:matrix(0.262894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262894,0.000000,0.000000,0.250000,0,0);}
.m6a_c01079{transform:matrix(0.263564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263564,0.000000,0.000000,0.250000,0,0);}
.m8d_c01079{transform:matrix(0.263814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263814,0.000000,0.000000,0.250000,0,0);}
.m5f_c01079{transform:matrix(0.264583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264583,0.000000,0.000000,0.250000,0,0);}
.m4f_c01079{transform:matrix(0.265269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265269,0.000000,0.000000,0.250000,0,0);}
.m50_c01079{transform:matrix(0.266133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266133,0.000000,0.000000,0.250000,0,0);}
.m2e_c01079{transform:matrix(0.266198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266198,0.000000,0.000000,0.250000,0,0);}
.m26_c01079{transform:matrix(0.266398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266398,0.000000,0.000000,0.250000,0,0);}
.m22_c01079{transform:matrix(0.267506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267506,0.000000,0.000000,0.250000,0,0);}
.m51_c01079{transform:matrix(0.270621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270621,0.000000,0.000000,0.250000,0,0);}
.m7b_c01079{transform:matrix(0.270998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270998,0.000000,0.000000,0.250000,0,0);}
.m6e_c01079{transform:matrix(0.272118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272118,0.000000,0.000000,0.250000,0,0);}
.m1f_c01079{transform:matrix(0.272680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272680,0.000000,0.000000,0.250000,0,0);}
.m7_c01079{transform:matrix(0.273474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273474,0.000000,0.000000,0.250000,0,0);}
.m1_c01079{transform:matrix(0.273564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273564,0.000000,0.000000,0.250000,0,0);}
.m3d_c01079{transform:matrix(0.274749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274749,0.000000,0.000000,0.250000,0,0);}
.m8e_c01079{transform:matrix(0.276730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276730,0.000000,0.000000,0.250000,0,0);}
.m36_c01079{transform:matrix(0.277188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277188,0.000000,0.000000,0.250000,0,0);}
.m52_c01079{transform:matrix(0.278294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278294,0.000000,0.000000,0.250000,0,0);}
.m18_c01079{transform:matrix(0.278374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278374,0.000000,0.000000,0.250000,0,0);}
.m57_c01079{transform:matrix(0.281016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281016,0.000000,0.000000,0.250000,0,0);}
.m89_c01079{transform:matrix(0.282203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282203,0.000000,0.000000,0.250000,0,0);}
.m4b_c01079{transform:matrix(0.282883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282883,0.000000,0.000000,0.250000,0,0);}
.m3b_c01079{transform:matrix(0.282923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282923,0.000000,0.000000,0.250000,0,0);}
.m49_c01079{transform:matrix(0.283681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283681,0.000000,0.000000,0.250000,0,0);}
.m37_c01079{transform:matrix(0.284536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284536,0.000000,0.000000,0.250000,0,0);}
.m88_c01079{transform:matrix(0.285855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285855,0.000000,0.000000,0.250000,0,0);}
.m79_c01079{transform:matrix(0.286158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286158,0.000000,0.000000,0.250000,0,0);}
.m1c_c01079{transform:matrix(0.286574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286574,0.000000,0.000000,0.250000,0,0);}
.m8b_c01079{transform:matrix(0.286616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286616,0.000000,0.000000,0.250000,0,0);}
.mb_c01079{transform:matrix(0.287534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287534,0.000000,0.000000,0.250000,0,0);}
.m39_c01079{transform:matrix(0.287643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287643,0.000000,0.000000,0.250000,0,0);}
.me_c01079{transform:matrix(0.288380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288380,0.000000,0.000000,0.250000,0,0);}
.m81_c01079{transform:matrix(0.288872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288872,0.000000,0.000000,0.250000,0,0);}
.m10_c01079{transform:matrix(0.289539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289539,0.000000,0.000000,0.250000,0,0);}
.m2f_c01079{transform:matrix(0.290030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290030,0.000000,0.000000,0.250000,0,0);}
.m69_c01079{transform:matrix(0.290085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290085,0.000000,0.000000,0.250000,0,0);}
.m1d_c01079{transform:matrix(0.290320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290320,0.000000,0.000000,0.250000,0,0);}
.m84_c01079{transform:matrix(0.290879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290879,0.000000,0.000000,0.250000,0,0);}
.m3f_c01079{transform:matrix(0.291287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291287,0.000000,0.000000,0.250000,0,0);}
.m5d_c01079{transform:matrix(0.291432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291432,0.000000,0.000000,0.250000,0,0);}
.m5b_c01079{transform:matrix(0.291531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291531,0.000000,0.000000,0.250000,0,0);}
.m43_c01079{transform:matrix(0.291570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291570,0.000000,0.000000,0.250000,0,0);}
.m6d_c01079{transform:matrix(0.292192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292192,0.000000,0.000000,0.250000,0,0);}
.m30_c01079{transform:matrix(0.292438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292438,0.000000,0.000000,0.250000,0,0);}
.m9_c01079{transform:matrix(0.292642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292642,0.000000,0.000000,0.250000,0,0);}
.m2b_c01079{transform:matrix(0.293112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293112,0.000000,0.000000,0.250000,0,0);}
.m40_c01079{transform:matrix(0.293365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293365,0.000000,0.000000,0.250000,0,0);}
.m5c_c01079{transform:matrix(0.294163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294163,0.000000,0.000000,0.250000,0,0);}
.m6c_c01079{transform:matrix(0.294655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294655,0.000000,0.000000,0.250000,0,0);}
.m17_c01079{transform:matrix(0.294793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294793,0.000000,0.000000,0.250000,0,0);}
.m65_c01079{transform:matrix(0.296600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296600,0.000000,0.000000,0.250000,0,0);}
.m44_c01079{transform:matrix(0.296800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296800,0.000000,0.000000,0.250000,0,0);}
.m76_c01079{transform:matrix(0.297092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297092,0.000000,0.000000,0.250000,0,0);}
.m45_c01079{transform:matrix(0.298612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298612,0.000000,0.000000,0.250000,0,0);}
.m70_c01079{transform:matrix(0.299308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299308,0.000000,0.000000,0.250000,0,0);}
.m75_c01079{transform:matrix(0.299402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299402,0.000000,0.000000,0.250000,0,0);}
.m21_c01079{transform:matrix(0.299588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299588,0.000000,0.000000,0.250000,0,0);}
.m63_c01079{transform:matrix(0.300666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300666,0.000000,0.000000,0.250000,0,0);}
.m8c_c01079{transform:matrix(0.301307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301307,0.000000,0.000000,0.250000,0,0);}
.m16_c01079{transform:matrix(0.303653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303653,0.000000,0.000000,0.250000,0,0);}
.m20_c01079{transform:matrix(0.303809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303809,0.000000,0.000000,0.250000,0,0);}
.m59_c01079{transform:matrix(0.303915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303915,0.000000,0.000000,0.250000,0,0);}
.m7f_c01079{transform:matrix(0.304481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304481,0.000000,0.000000,0.250000,0,0);}
.m2_c01079{transform:matrix(0.304784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304784,0.000000,0.000000,0.250000,0,0);}
.m80_c01079{transform:matrix(0.306231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306231,0.000000,0.000000,0.250000,0,0);}
.m2a_c01079{transform:matrix(0.307429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307429,0.000000,0.000000,0.250000,0,0);}
.m3e_c01079{transform:matrix(0.307436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307436,0.000000,0.000000,0.250000,0,0);}
.m5a_c01079{transform:matrix(0.307802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307802,0.000000,0.000000,0.250000,0,0);}
.m13_c01079{transform:matrix(0.309601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309601,0.000000,0.000000,0.250000,0,0);}
.m6b_c01079{transform:matrix(0.309641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309641,0.000000,0.000000,0.250000,0,0);}
.m82_c01079{transform:matrix(0.309926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309926,0.000000,0.000000,0.250000,0,0);}
.m7a_c01079{transform:matrix(0.311619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311619,0.000000,0.000000,0.250000,0,0);}
.m7d_c01079{transform:matrix(0.311790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311790,0.000000,0.000000,0.250000,0,0);}
.m68_c01079{transform:matrix(0.312194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312194,0.000000,0.000000,0.250000,0,0);}
.m58_c01079{transform:matrix(0.313482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313482,0.000000,0.000000,0.250000,0,0);}
.m78_c01079{transform:matrix(0.313649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313649,0.000000,0.000000,0.250000,0,0);}
.m71_c01079{transform:matrix(0.314204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314204,0.000000,0.000000,0.250000,0,0);}
.ma_c01079{transform:matrix(0.314862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314862,0.000000,0.000000,0.250000,0,0);}
.m29_c01079{transform:matrix(0.317363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317363,0.000000,0.000000,0.250000,0,0);}
.m6f_c01079{transform:matrix(0.317626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317626,0.000000,0.000000,0.250000,0,0);}
.m7c_c01079{transform:matrix(0.319186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319186,0.000000,0.000000,0.250000,0,0);}
.m1a_c01079{transform:matrix(0.319381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319381,0.000000,0.000000,0.250000,0,0);}
.m53_c01079{transform:matrix(0.320807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320807,0.000000,0.000000,0.250000,0,0);}
.m25_c01079{transform:matrix(0.320858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320858,0.000000,0.000000,0.250000,0,0);}
.m4d_c01079{transform:matrix(0.321135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321135,0.000000,0.000000,0.250000,0,0);}
.m33_c01079{transform:matrix(0.323086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323086,0.000000,0.000000,0.250000,0,0);}
.m8_c01079{transform:matrix(0.323209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323209,0.000000,0.000000,0.250000,0,0);}
.m34_c01079{transform:matrix(0.323643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323643,0.000000,0.000000,0.250000,0,0);}
.m87_c01079{transform:matrix(0.325121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325121,0.000000,0.000000,0.250000,0,0);}
.m38_c01079{transform:matrix(0.326255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326255,0.000000,0.000000,0.250000,0,0);}
.m83_c01079{transform:matrix(0.327140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327140,0.000000,0.000000,0.250000,0,0);}
.m4a_c01079{transform:matrix(0.329069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329069,0.000000,0.000000,0.250000,0,0);}
.m5_c01079{transform:matrix(0.329989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329989,0.000000,0.000000,0.250000,0,0);}
.m27_c01079{transform:matrix(0.330470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330470,0.000000,0.000000,0.250000,0,0);}
.m85_c01079{transform:matrix(0.333691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333691,0.000000,0.000000,0.250000,0,0);}
.mf_c01079{transform:matrix(0.334661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334661,0.000000,0.000000,0.250000,0,0);}
.m86_c01079{transform:matrix(0.334803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334803,0.000000,0.000000,0.250000,0,0);}
.m48_c01079{transform:matrix(0.335052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335052,0.000000,0.000000,0.250000,0,0);}
.m31_c01079{transform:matrix(0.338421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338421,0.000000,0.000000,0.250000,0,0);}
.m66_c01079{transform:matrix(0.341701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341701,0.000000,0.000000,0.250000,0,0);}
.m7e_c01079{transform:matrix(0.343559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343559,0.000000,0.000000,0.250000,0,0);}
.m2d_c01079{transform:matrix(0.348562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348562,0.000000,0.000000,0.250000,0,0);}
.m8a_c01079{transform:matrix(0.349926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349926,0.000000,0.000000,0.250000,0,0);}
.m77_c01079{transform:matrix(0.356131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356131,0.000000,0.000000,0.250000,0,0);}
.m72_c01079{transform:matrix(0.356405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356405,0.000000,0.000000,0.250000,0,0);}
.m41_c01079{transform:matrix(0.370152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370152,0.000000,0.000000,0.250000,0,0);}
.m60_c01079{transform:matrix(0.374684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374684,0.000000,0.000000,0.250000,0,0);}
.m23_c01079{transform:matrix(0.380631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380631,0.000000,0.000000,0.250000,0,0);}
.m15_c01079{transform:matrix(0.386579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386579,0.000000,0.000000,0.250000,0,0);}
.m73_c01079{transform:matrix(0.398473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398473,0.000000,0.000000,0.250000,0,0);}
.m55_c01079{transform:matrix(0.401477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401477,0.000000,0.000000,0.250000,0,0);}
.v2_c01079{vertical-align:-28.512000px;}
.v1_c01079{vertical-align:-14.236200px;}
.v0_c01079{vertical-align:0.000000px;}
.ls16_c01079{letter-spacing:-3.769927px;}
.ls4_c01079{letter-spacing:-2.778930px;}
.ls0_c01079{letter-spacing:0.000000px;}
.lsd_c01079{letter-spacing:0.913077px;}
.lsa_c01079{letter-spacing:1.357706px;}
.ls5_c01079{letter-spacing:2.457008px;}
.lsc_c01079{letter-spacing:2.653200px;}
.ls1_c01079{letter-spacing:3.051734px;}
.ls15_c01079{letter-spacing:3.316500px;}
.ls11_c01079{letter-spacing:3.326400px;}
.ls9_c01079{letter-spacing:3.425400px;}
.ls6_c01079{letter-spacing:3.504610px;}
.ls13_c01079{letter-spacing:3.623400px;}
.lse_c01079{letter-spacing:3.940200px;}
.ls2_c01079{letter-spacing:3.969900px;}
.ls12_c01079{letter-spacing:4.118400px;}
.lsf_c01079{letter-spacing:28.512198px;}
.lsb_c01079{letter-spacing:48.470598px;}
.ls14_c01079{letter-spacing:51.321798px;}
.ls3_c01079{letter-spacing:52.747398px;}
.ls10_c01079{letter-spacing:57.024198px;}
.ls8_c01079{letter-spacing:58.449798px;}
.ls7_c01079{letter-spacing:59.875398px;}
.sc__c01079{text-shadow:none;}
.sc0_c01079{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01079{-webkit-text-stroke:0px transparent;}
.sc0_c01079{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01079{word-spacing:0.000000px;}
.ws0_c01079{word-spacing:198.424116px;}
._4_c01079{margin-left:-5.227200px;}
._2_c01079{width:45.097954px;}
._0_c01079{width:69.517800px;}
._1_c01079{width:187.827156px;}
._3_c01079{width:206.479152px;}
.fc0_c01079{color:transparent;}
.fs0_c01079{font-size:22.176000px;}
.fs8_c01079{font-size:23.364000px;}
.fs16_c01079{font-size:28.512198px;}
.fs20_c01079{font-size:30.690000px;}
.fs1e_c01079{font-size:33.264000px;}
.fsc_c01079{font-size:33.660000px;}
.fs11_c01079{font-size:34.056198px;}
.fs10_c01079{font-size:37.224000px;}
.fs4_c01079{font-size:38.808000px;}
.fsd_c01079{font-size:39.204000px;}
.fs1f_c01079{font-size:39.600000px;}
.fse_c01079{font-size:48.470598px;}
.fs1c_c01079{font-size:51.321798px;}
.fs3_c01079{font-size:52.747398px;}
.fs13_c01079{font-size:53.064000px;}
.fs17_c01079{font-size:57.024198px;}
.fs9_c01079{font-size:58.449798px;}
.fs7_c01079{font-size:59.875398px;}
.fs1a_c01079{font-size:66.330000px;}
.fs18_c01079{font-size:66.528000px;}
.fsb_c01079{font-size:68.508000px;}
.fs6_c01079{font-size:70.092198px;}
.fsa_c01079{font-size:70.884000px;}
.fs1b_c01079{font-size:72.468000px;}
.fs5_c01079{font-size:77.022198px;}
.fs14_c01079{font-size:78.804000px;}
.fs2_c01079{font-size:79.398000px;}
.fsf_c01079{font-size:79.794000px;}
.fs19_c01079{font-size:82.368000px;}
.fs1_c01079{font-size:90.288000px;}
.fs15_c01079{font-size:96.624000px;}
.fs12_c01079{font-size:104.544000px;}
.fs1d_c01079{font-size:107.712198px;}
.y0_c01079{bottom:0.000000px;}
.y28_c01079{bottom:0.981135px;}
.y27_c01079{bottom:46.951785px;}
.y1_c01079{bottom:76.500000px;}
.y26_c01079{bottom:158.866335px;}
.y25_c01079{bottom:192.362985px;}
.y24_c01079{bottom:256.519935px;}
.y23_c01079{bottom:288.239535px;}
.y22_c01079{bottom:320.666985px;}
.y21_c01079{bottom:353.460735px;}
.y20_c01079{bottom:385.536735px;}
.y1f_c01079{bottom:416.899935px;}
.y1c_c01079{bottom:417.256335px;}
.y1d_c01079{bottom:417.607785px;}
.y1e_c01079{bottom:417.964185px;}
.y1b_c01079{bottom:438.283935px;}
.y1a_c01079{bottom:447.906735px;}
.y16_c01079{bottom:448.258185px;}
.y19_c01079{bottom:448.619535px;}
.y15_c01079{bottom:448.970985px;}
.y17_c01079{bottom:449.332335px;}
.y18_c01079{bottom:457.168185px;}
.y2_c01079{bottom:461.449935px;}
.y12_c01079{bottom:479.977785px;}
.y14_c01079{bottom:480.334185px;}
.y13_c01079{bottom:480.695535px;}
.y11_c01079{bottom:481.046985px;}
.yf_c01079{bottom:481.408335px;}
.y10_c01079{bottom:489.244185px;}
.ye_c01079{bottom:513.122985px;}
.yd_c01079{bottom:545.203935px;}
.yc_c01079{bottom:641.431935px;}
.yb_c01079{bottom:673.502985px;}
.ya_c01079{bottom:705.583935px;}
.y9_c01079{bottom:721.260585px;}
.y8_c01079{bottom:737.659935px;}
.y7_c01079{bottom:770.448735px;}
.y6_c01079{bottom:791.476335px;}
.y5_c01079{bottom:834.600735px;}
.y4_c01079{bottom:929.403135px;}
.y3_c01079{bottom:1076.947785px;}
.y29_c01079{bottom:1104.746985px;}
.h14_c01079{height:18.989124px;}
.ha_c01079{height:22.930488px;}
.h2_c01079{height:23.128875px;}
.h1e_c01079{height:30.120557px;}
.hf_c01079{height:32.281418px;}
.h1a_c01079{height:34.180317px;}
.h1c_c01079{height:34.693313px;}
.h5_c01079{height:35.129767px;}
.h15_c01079{height:37.978116px;}
.he_c01079{height:38.476582px;}
.hb_c01079{height:38.927565px;}
.h9_c01079{height:39.877015px;}
.h6_c01079{height:40.475531px;}
.h1d_c01079{height:41.301563px;}
.h11_c01079{height:52.079414px;}
.h16_c01079{height:65.293594px;}
.hd_c01079{height:67.236855px;}
.h18_c01079{height:69.180117px;}
.hc_c01079{height:69.568770px;}
.h19_c01079{height:71.123379px;}
.h8_c01079{height:73.103972px;}
.h7_c01079{height:75.593075px;}
.h12_c01079{height:77.341816px;}
.h4_c01079{height:77.924795px;}
.h10_c01079{height:80.417391px;}
.h17_c01079{height:80.839688px;}
.h3_c01079{height:88.612734px;}
.h13_c01079{height:100.775813px;}
.h1b_c01079{height:105.713632px;}
.h1_c01079{height:1110.000000px;}
.h0_c01079{height:1263.000000px;}
.w1_c01079{width:775.500000px;}
.w0_c01079{width:892.500000px;}
.x0_c01079{left:0.000000px;}
.x2_c01079{left:49.085835px;}
.x1_c01079{left:58.500000px;}
.x63_c01079{left:71.905335px;}
.x2b_c01079{left:72.999285px;}
.x3f_c01079{left:74.177385px;}
.x4_c01079{left:75.182235px;}
.x4f_c01079{left:106.555335px;}
.x64_c01079{left:116.648385px;}
.x5_c01079{left:118.964985px;}
.x30_c01079{left:127.884885px;}
.xa_c01079{left:128.914485px;}
.x20_c01079{left:139.913385px;}
.x38_c01079{left:149.669835px;}
.x56_c01079{left:151.466685px;}
.x18_c01079{left:152.654685px;}
.x5a_c01079{left:160.807335px;}
.x42_c01079{left:162.153735px;}
.xf_c01079{left:163.297185px;}
.xb_c01079{left:173.286285px;}
.x19_c01079{left:184.329735px;}
.x40_c01079{left:186.963135px;}
.x31_c01079{left:194.472285px;}
.x50_c01079{left:195.724635px;}
.x21_c01079{left:208.124385px;}
.x1a_c01079{left:217.351185px;}
.x10_c01079{left:219.286635px;}
.x4b_c01079{left:226.973985px;}
.x2c_c01079{left:229.176735px;}
.x32_c01079{left:239.423235px;}
.x45_c01079{left:250.689435px;}
.xc_c01079{left:252.748635px;}
.x5e_c01079{left:271.523985px;}
.x41_c01079{left:273.013935px;}
.x6_c01079{left:274.924635px;}
.x27_c01079{left:285.250335px;}
.x33_c01079{left:295.214685px;}
.x51_c01079{left:305.035485px;}
.x57_c01079{left:306.931335px;}
.x7_c01079{left:308.277735px;}
.x11_c01079{left:318.930135px;}
.x1b_c01079{left:327.835185px;}
.x22_c01079{left:330.374535px;}
.x52_c01079{left:339.660735px;}
.x39_c01079{left:351.194235px;}
.x5f_c01079{left:360.421035px;}
.xd_c01079{left:361.678335px;}
.x12_c01079{left:362.955435px;}
.x58_c01079{left:372.142635px;}
.x46_c01079{left:373.889985px;}
.x4c_c01079{left:384.641385px;}
.x8_c01079{left:385.765035px;}
.x65_c01079{left:394.259235px;}
.x2d_c01079{left:395.353185px;}
.x28_c01079{left:396.590685px;}
.x59_c01079{left:405.173985px;}
.x13_c01079{left:407.475735px;}
.x9_c01079{left:418.692435px;}
.x47_c01079{left:427.820235px;}
.x43_c01079{left:428.879535px;}
.x2e_c01079{left:438.665685px;}
.x1c_c01079{left:450.481335px;}
.x66_c01079{left:460.574385px;}
.x53_c01079{left:461.673285px;}
.x48_c01079{left:472.305885px;}
.x34_c01079{left:474.028485px;}
.x3a_c01079{left:483.225585px;}
.x5b_c01079{left:493.684935px;}
.x29_c01079{left:495.536235px;}
.x44_c01079{left:504.708585px;}
.x35_c01079{left:506.099535px;}
.x14_c01079{left:517.603335px;}
.x60_c01079{left:526.518285px;}
.x1d_c01079{left:528.681435px;}
.x55_c01079{left:537.398385px;}
.x2f_c01079{left:538.477485px;}
.x23_c01079{left:550.421835px;}
.x15_c01079{left:560.920785px;}
.x3b_c01079{left:562.123635px;}
.x67_c01079{left:568.400235px;}
.x61_c01079{left:569.830785px;}
.x36_c01079{left:572.152335px;}
.x24_c01079{left:594.194685px;}
.x3c_c01079{left:606.168735px;}
.x54_c01079{left:615.519285px;}
.x3d_c01079{left:616.677585px;}
.x25_c01079{left:627.725985px;}
.x68_c01079{left:635.720235px;}
.x4d_c01079{left:637.739835px;}
.x37_c01079{left:638.809035px;}
.x1e_c01079{left:640.086135px;}
.x5c_c01079{left:648.808035px;}
.x16_c01079{left:650.931585px;}
.x62_c01079{left:659.747535px;}
.x49_c01079{left:670.805835px;}
.x2a_c01079{left:672.186885px;}
.x5d_c01079{left:682.576935px;}
.x3_c01079{left:690.774135px;}
.x3e_c01079{left:693.615435px;}
.x17_c01079{left:695.679585px;}
.xe_c01079{left:698.377335px;}
.x1f_c01079{left:703.876785px;}
.x26_c01079{left:706.411185px;}
.x4a_c01079{left:707.911035px;}
.x4e_c01079{left:716.142885px;}
.x69_c01079{left:776.315085px;}
@media print{
.v2_c01079{vertical-align:-25.344000pt;}
.v1_c01079{vertical-align:-12.654400pt;}
.v0_c01079{vertical-align:0.000000pt;}
.ls16_c01079{letter-spacing:-3.351046pt;}
.ls4_c01079{letter-spacing:-2.470160pt;}
.ls0_c01079{letter-spacing:0.000000pt;}
.lsd_c01079{letter-spacing:0.811624pt;}
.lsa_c01079{letter-spacing:1.206850pt;}
.ls5_c01079{letter-spacing:2.184007pt;}
.lsc_c01079{letter-spacing:2.358400pt;}
.ls1_c01079{letter-spacing:2.712653pt;}
.ls15_c01079{letter-spacing:2.948000pt;}
.ls11_c01079{letter-spacing:2.956800pt;}
.ls9_c01079{letter-spacing:3.044800pt;}
.ls6_c01079{letter-spacing:3.115209pt;}
.ls13_c01079{letter-spacing:3.220800pt;}
.lse_c01079{letter-spacing:3.502400pt;}
.ls2_c01079{letter-spacing:3.528800pt;}
.ls12_c01079{letter-spacing:3.660800pt;}
.lsf_c01079{letter-spacing:25.344176pt;}
.lsb_c01079{letter-spacing:43.084976pt;}
.ls14_c01079{letter-spacing:45.619376pt;}
.ls3_c01079{letter-spacing:46.886576pt;}
.ls10_c01079{letter-spacing:50.688176pt;}
.ls8_c01079{letter-spacing:51.955376pt;}
.ls7_c01079{letter-spacing:53.222576pt;}
.ws1_c01079{word-spacing:0.000000pt;}
.ws0_c01079{word-spacing:176.376992pt;}
._4_c01079{margin-left:-4.646400pt;}
._2_c01079{width:40.087070pt;}
._0_c01079{width:61.793600pt;}
._1_c01079{width:166.957472pt;}
._3_c01079{width:183.537024pt;}
.fs0_c01079{font-size:19.712000pt;}
.fs8_c01079{font-size:20.768000pt;}
.fs16_c01079{font-size:25.344176pt;}
.fs20_c01079{font-size:27.280000pt;}
.fs1e_c01079{font-size:29.568000pt;}
.fsc_c01079{font-size:29.920000pt;}
.fs11_c01079{font-size:30.272176pt;}
.fs10_c01079{font-size:33.088000pt;}
.fs4_c01079{font-size:34.496000pt;}
.fsd_c01079{font-size:34.848000pt;}
.fs1f_c01079{font-size:35.200000pt;}
.fse_c01079{font-size:43.084976pt;}
.fs1c_c01079{font-size:45.619376pt;}
.fs3_c01079{font-size:46.886576pt;}
.fs13_c01079{font-size:47.168000pt;}
.fs17_c01079{font-size:50.688176pt;}
.fs9_c01079{font-size:51.955376pt;}
.fs7_c01079{font-size:53.222576pt;}
.fs1a_c01079{font-size:58.960000pt;}
.fs18_c01079{font-size:59.136000pt;}
.fsb_c01079{font-size:60.896000pt;}
.fs6_c01079{font-size:62.304176pt;}
.fsa_c01079{font-size:63.008000pt;}
.fs1b_c01079{font-size:64.416000pt;}
.fs5_c01079{font-size:68.464176pt;}
.fs14_c01079{font-size:70.048000pt;}
.fs2_c01079{font-size:70.576000pt;}
.fsf_c01079{font-size:70.928000pt;}
.fs19_c01079{font-size:73.216000pt;}
.fs1_c01079{font-size:80.256000pt;}
.fs15_c01079{font-size:85.888000pt;}
.fs12_c01079{font-size:92.928000pt;}
.fs1d_c01079{font-size:95.744176pt;}
.y0_c01079{bottom:0.000000pt;}
.y28_c01079{bottom:0.872120pt;}
.y27_c01079{bottom:41.734920pt;}
.y1_c01079{bottom:68.000000pt;}
.y26_c01079{bottom:141.214520pt;}
.y25_c01079{bottom:170.989320pt;}
.y24_c01079{bottom:228.017720pt;}
.y23_c01079{bottom:256.212920pt;}
.y22_c01079{bottom:285.037320pt;}
.y21_c01079{bottom:314.187320pt;}
.y20_c01079{bottom:342.699320pt;}
.y1f_c01079{bottom:370.577720pt;}
.y1c_c01079{bottom:370.894520pt;}
.y1d_c01079{bottom:371.206920pt;}
.y1e_c01079{bottom:371.523720pt;}
.y1b_c01079{bottom:389.585720pt;}
.y1a_c01079{bottom:398.139320pt;}
.y16_c01079{bottom:398.451720pt;}
.y19_c01079{bottom:398.772920pt;}
.y15_c01079{bottom:399.085320pt;}
.y17_c01079{bottom:399.406520pt;}
.y18_c01079{bottom:406.371720pt;}
.y2_c01079{bottom:410.177720pt;}
.y12_c01079{bottom:426.646920pt;}
.y14_c01079{bottom:426.963720pt;}
.y13_c01079{bottom:427.284920pt;}
.y11_c01079{bottom:427.597320pt;}
.yf_c01079{bottom:427.918520pt;}
.y10_c01079{bottom:434.883720pt;}
.ye_c01079{bottom:456.109320pt;}
.yd_c01079{bottom:484.625720pt;}
.yc_c01079{bottom:570.161720pt;}
.yb_c01079{bottom:598.669320pt;}
.ya_c01079{bottom:627.185720pt;}
.y9_c01079{bottom:641.120520pt;}
.y8_c01079{bottom:655.697720pt;}
.y7_c01079{bottom:684.843320pt;}
.y6_c01079{bottom:703.534520pt;}
.y5_c01079{bottom:741.867320pt;}
.y4_c01079{bottom:826.136120pt;}
.y3_c01079{bottom:957.286920pt;}
.y29_c01079{bottom:981.997320pt;}
.h14_c01079{height:16.879221pt;}
.ha_c01079{height:20.382656pt;}
.h2_c01079{height:20.559000pt;}
.h1e_c01079{height:26.773828pt;}
.hf_c01079{height:28.694594pt;}
.h1a_c01079{height:30.382504pt;}
.h1c_c01079{height:30.838500pt;}
.h5_c01079{height:31.226460pt;}
.h15_c01079{height:33.758325pt;}
.he_c01079{height:34.201406pt;}
.hb_c01079{height:34.602280pt;}
.h9_c01079{height:35.446236pt;}
.h6_c01079{height:35.978250pt;}
.h1d_c01079{height:36.712500pt;}
.h11_c01079{height:46.292813pt;}
.h16_c01079{height:58.038750pt;}
.hd_c01079{height:59.766094pt;}
.h18_c01079{height:61.493438pt;}
.hc_c01079{height:61.838906pt;}
.h19_c01079{height:63.220781pt;}
.h8_c01079{height:64.981309pt;}
.h7_c01079{height:67.193845pt;}
.h12_c01079{height:68.748281pt;}
.h4_c01079{height:69.266484pt;}
.h10_c01079{height:71.482125pt;}
.h17_c01079{height:71.857500pt;}
.h3_c01079{height:78.766875pt;}
.h13_c01079{height:89.578500pt;}
.h1b_c01079{height:93.967673pt;}
.h1_c01079{height:986.666667pt;}
.h0_c01079{height:1122.666667pt;}
.w1_c01079{width:689.333333pt;}
.w0_c01079{width:793.333333pt;}
.x0_c01079{left:0.000000pt;}
.x2_c01079{left:43.631853pt;}
.x1_c01079{left:52.000000pt;}
.x63_c01079{left:63.915853pt;}
.x2b_c01079{left:64.888253pt;}
.x3f_c01079{left:65.935453pt;}
.x4_c01079{left:66.828653pt;}
.x4f_c01079{left:94.715853pt;}
.x64_c01079{left:103.687453pt;}
.x5_c01079{left:105.746653pt;}
.x30_c01079{left:113.675453pt;}
.xa_c01079{left:114.590653pt;}
.x20_c01079{left:124.367453pt;}
.x38_c01079{left:133.039853pt;}
.x56_c01079{left:134.637053pt;}
.x18_c01079{left:135.693053pt;}
.x5a_c01079{left:142.939853pt;}
.x42_c01079{left:144.136653pt;}
.xf_c01079{left:145.153053pt;}
.xb_c01079{left:154.032253pt;}
.x19_c01079{left:163.848653pt;}
.x40_c01079{left:166.189453pt;}
.x31_c01079{left:172.864253pt;}
.x50_c01079{left:173.977453pt;}
.x21_c01079{left:184.999453pt;}
.x1a_c01079{left:193.201053pt;}
.x10_c01079{left:194.921453pt;}
.x4b_c01079{left:201.754653pt;}
.x2c_c01079{left:203.712653pt;}
.x32_c01079{left:212.820653pt;}
.x45_c01079{left:222.835053pt;}
.xc_c01079{left:224.665453pt;}
.x5e_c01079{left:241.354653pt;}
.x41_c01079{left:242.679053pt;}
.x6_c01079{left:244.377453pt;}
.x27_c01079{left:253.555853pt;}
.x33_c01079{left:262.413053pt;}
.x51_c01079{left:271.142653pt;}
.x57_c01079{left:272.827853pt;}
.x7_c01079{left:274.024653pt;}
.x11_c01079{left:283.493453pt;}
.x1b_c01079{left:291.409053pt;}
.x22_c01079{left:293.666253pt;}
.x52_c01079{left:301.920653pt;}
.x39_c01079{left:312.172653pt;}
.x5f_c01079{left:320.374253pt;}
.xd_c01079{left:321.491853pt;}
.x12_c01079{left:322.627053pt;}
.x58_c01079{left:330.793453pt;}
.x46_c01079{left:332.346653pt;}
.x4c_c01079{left:341.903453pt;}
.x8_c01079{left:342.902253pt;}
.x65_c01079{left:350.452653pt;}
.x2d_c01079{left:351.425053pt;}
.x28_c01079{left:352.525053pt;}
.x59_c01079{left:360.154653pt;}
.x13_c01079{left:362.200653pt;}
.x9_c01079{left:372.171053pt;}
.x47_c01079{left:380.284653pt;}
.x43_c01079{left:381.226253pt;}
.x2e_c01079{left:389.925053pt;}
.x1c_c01079{left:400.427853pt;}
.x66_c01079{left:409.399453pt;}
.x53_c01079{left:410.376253pt;}
.x48_c01079{left:419.827453pt;}
.x34_c01079{left:421.358653pt;}
.x3a_c01079{left:429.533853pt;}
.x5b_c01079{left:438.831053pt;}
.x29_c01079{left:440.476653pt;}
.x44_c01079{left:448.629853pt;}
.x35_c01079{left:449.866253pt;}
.x14_c01079{left:460.091853pt;}
.x60_c01079{left:468.016253pt;}
.x1d_c01079{left:469.939053pt;}
.x55_c01079{left:477.687453pt;}
.x2f_c01079{left:478.646653pt;}
.x23_c01079{left:489.263853pt;}
.x15_c01079{left:498.596253pt;}
.x3b_c01079{left:499.665453pt;}
.x67_c01079{left:505.244653pt;}
.x61_c01079{left:506.516253pt;}
.x36_c01079{left:508.579853pt;}
.x24_c01079{left:528.173053pt;}
.x3c_c01079{left:538.816653pt;}
.x54_c01079{left:547.128253pt;}
.x3d_c01079{left:548.157853pt;}
.x25_c01079{left:557.978653pt;}
.x68_c01079{left:565.084653pt;}
.x4d_c01079{left:566.879853pt;}
.x37_c01079{left:567.830253pt;}
.x1e_c01079{left:568.965453pt;}
.x5c_c01079{left:576.718253pt;}
.x16_c01079{left:578.605853pt;}
.x62_c01079{left:586.442253pt;}
.x49_c01079{left:596.271853pt;}
.x2a_c01079{left:597.499453pt;}
.x5d_c01079{left:606.735053pt;}
.x3_c01079{left:614.021453pt;}
.x3e_c01079{left:616.547053pt;}
.x17_c01079{left:618.381853pt;}
.xe_c01079{left:620.779853pt;}
.x1f_c01079{left:625.668253pt;}
.x26_c01079{left:627.921053pt;}
.x4a_c01079{left:629.254253pt;}
.x4e_c01079{left:636.571453pt;}
.x69_c01079{left:690.057853pt;}
}





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

.ir_c01080:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01080{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01080;src:url('chunks/assets/font_e0a531c361cf01898956c195.woff2')format("woff");}.ff1_c01080{font-family:ff1_c01080;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01080;src:url('chunks/assets/font_d78c04eac603c6c1902d1266.woff2')format("woff");}.ff2_c01080{font-family:ff2_c01080;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01080;src:url('chunks/assets/font_facd67f9fd0b3182c230332a.woff2')format("woff");}.ff3_c01080{font-family:ff3_c01080;line-height:0.666000;font-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_c01080{transform:matrix(0.156177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156177,0.000000,0.000000,0.250000,0,0);}
.m4_c01080{transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);}
.m1b_c01080{transform:matrix(0.181217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181217,0.000000,0.000000,0.250000,0,0);}
.m23_c01080{transform:matrix(0.182164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182164,0.000000,0.000000,0.250000,0,0);}
.m5a_c01080{transform:matrix(0.184524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184524,0.000000,0.000000,0.250000,0,0);}
.m6b_c01080{transform:matrix(0.191515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191515,0.000000,0.000000,0.250000,0,0);}
.m9f_c01080{transform:matrix(0.249684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249684,0.000000,0.000000,0.250000,0,0);}
.m0_c01080{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01080{transform:matrix(0.250414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250414,0.000000,0.000000,0.250000,0,0);}
.m2f_c01080{transform:matrix(0.251559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251559,0.000000,0.000000,0.250000,0,0);}
.m54_c01080{transform:matrix(0.251613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251613,0.000000,0.000000,0.250000,0,0);}
.m45_c01080{transform:matrix(0.254969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254969,0.000000,0.000000,0.250000,0,0);}
.m6a_c01080{transform:matrix(0.257779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257779,0.000000,0.000000,0.250000,0,0);}
.m96_c01080{transform:matrix(0.258324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258324,0.000000,0.000000,0.250000,0,0);}
.m1c_c01080{transform:matrix(0.258450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258450,0.000000,0.000000,0.250000,0,0);}
.m52_c01080{transform:matrix(0.259852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259852,0.000000,0.000000,0.250000,0,0);}
.m3b_c01080{transform:matrix(0.261268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261268,0.000000,0.000000,0.250000,0,0);}
.mac_c01080{transform:matrix(0.261632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261632,0.000000,0.000000,0.250000,0,0);}
.m11_c01080{transform:matrix(0.267450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267450,0.000000,0.000000,0.250000,0,0);}
.ma8_c01080{transform:matrix(0.267806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267806,0.000000,0.000000,0.250000,0,0);}
.m10_c01080{transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);}
.m37_c01080{transform:matrix(0.268402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268402,0.000000,0.000000,0.250000,0,0);}
.m1a_c01080{transform:matrix(0.268840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268840,0.000000,0.000000,0.250000,0,0);}
.m8b_c01080{transform:matrix(0.269504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269504,0.000000,0.000000,0.250000,0,0);}
.m18_c01080{transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);}
.m57_c01080{transform:matrix(0.271280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271280,0.000000,0.000000,0.250000,0,0);}
.m17_c01080{transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);}
.m27_c01080{transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);}
.m73_c01080{transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);}
.m85_c01080{transform:matrix(0.276508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276508,0.000000,0.000000,0.250000,0,0);}
.m7e_c01080{transform:matrix(0.276672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276672,0.000000,0.000000,0.250000,0,0);}
.m7_c01080{transform:matrix(0.276815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276815,0.000000,0.000000,0.250000,0,0);}
.m2d_c01080{transform:matrix(0.277268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277268,0.000000,0.000000,0.250000,0,0);}
.m8_c01080{transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);}
.mf_c01080{transform:matrix(0.278294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278294,0.000000,0.000000,0.250000,0,0);}
.m28_c01080{transform:matrix(0.278463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278463,0.000000,0.000000,0.250000,0,0);}
.m41_c01080{transform:matrix(0.279307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279307,0.000000,0.000000,0.250000,0,0);}
.m5c_c01080{transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);}
.m33_c01080{transform:matrix(0.280936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280936,0.000000,0.000000,0.250000,0,0);}
.m9b_c01080{transform:matrix(0.282531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282531,0.000000,0.000000,0.250000,0,0);}
.m76_c01080{transform:matrix(0.283633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283633,0.000000,0.000000,0.250000,0,0);}
.m9e_c01080{transform:matrix(0.285226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285226,0.000000,0.000000,0.250000,0,0);}
.m7d_c01080{transform:matrix(0.285652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285652,0.000000,0.000000,0.250000,0,0);}
.m24_c01080{transform:matrix(0.285815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285815,0.000000,0.000000,0.250000,0,0);}
.m75_c01080{transform:matrix(0.286823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286823,0.000000,0.000000,0.250000,0,0);}
.md_c01080{transform:matrix(0.287281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287281,0.000000,0.000000,0.250000,0,0);}
.m86_c01080{transform:matrix(0.287374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287374,0.000000,0.000000,0.250000,0,0);}
.m13_c01080{transform:matrix(0.287531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287531,0.000000,0.000000,0.250000,0,0);}
.m3e_c01080{transform:matrix(0.287834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287834,0.000000,0.000000,0.250000,0,0);}
.m63_c01080{transform:matrix(0.288423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288423,0.000000,0.000000,0.250000,0,0);}
.m7b_c01080{transform:matrix(0.289201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289201,0.000000,0.000000,0.250000,0,0);}
.m40_c01080{transform:matrix(0.290129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290129,0.000000,0.000000,0.250000,0,0);}
.m78_c01080{transform:matrix(0.290230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290230,0.000000,0.000000,0.250000,0,0);}
.m8a_c01080{transform:matrix(0.291149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291149,0.000000,0.000000,0.250000,0,0);}
.m25_c01080{transform:matrix(0.291495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291495,0.000000,0.000000,0.250000,0,0);}
.m2e_c01080{transform:matrix(0.293113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293113,0.000000,0.000000,0.250000,0,0);}
.ma5_c01080{transform:matrix(0.293393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293393,0.000000,0.000000,0.250000,0,0);}
.m5_c01080{transform:matrix(0.293427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293427,0.000000,0.000000,0.250000,0,0);}
.m98_c01080{transform:matrix(0.293790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293790,0.000000,0.000000,0.250000,0,0);}
.m2_c01080{transform:matrix(0.293840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293840,0.000000,0.000000,0.250000,0,0);}
.m29_c01080{transform:matrix(0.294423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294423,0.000000,0.000000,0.250000,0,0);}
.ma9_c01080{transform:matrix(0.294502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294502,0.000000,0.000000,0.250000,0,0);}
.m1f_c01080{transform:matrix(0.294503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294503,0.000000,0.000000,0.250000,0,0);}
.mad_c01080{transform:matrix(0.294964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294964,0.000000,0.000000,0.250000,0,0);}
.ma6_c01080{transform:matrix(0.295071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295071,0.000000,0.000000,0.250000,0,0);}
.m88_c01080{transform:matrix(0.296080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296080,0.000000,0.000000,0.250000,0,0);}
.m14_c01080{transform:matrix(0.296667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296667,0.000000,0.000000,0.250000,0,0);}
.m8f_c01080{transform:matrix(0.296792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296792,0.000000,0.000000,0.250000,0,0);}
.m12_c01080{transform:matrix(0.296995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296995,0.000000,0.000000,0.250000,0,0);}
.mb_c01080{transform:matrix(0.297321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297321,0.000000,0.000000,0.250000,0,0);}
.m22_c01080{transform:matrix(0.297413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297413,0.000000,0.000000,0.250000,0,0);}
.m7a_c01080{transform:matrix(0.297908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297908,0.000000,0.000000,0.250000,0,0);}
.m1_c01080{transform:matrix(0.298230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298230,0.000000,0.000000,0.250000,0,0);}
.m67_c01080{transform:matrix(0.298455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298455,0.000000,0.000000,0.250000,0,0);}
.m43_c01080{transform:matrix(0.298597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298597,0.000000,0.000000,0.250000,0,0);}
.m90_c01080{transform:matrix(0.299095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299095,0.000000,0.000000,0.250000,0,0);}
.m9a_c01080{transform:matrix(0.299372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299372,0.000000,0.000000,0.250000,0,0);}
.m4a_c01080{transform:matrix(0.299564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299564,0.000000,0.000000,0.250000,0,0);}
.mc_c01080{transform:matrix(0.300129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300129,0.000000,0.000000,0.250000,0,0);}
.m77_c01080{transform:matrix(0.300244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300244,0.000000,0.000000,0.250000,0,0);}
.m2b_c01080{transform:matrix(0.301004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301004,0.000000,0.000000,0.250000,0,0);}
.m6e_c01080{transform:matrix(0.301284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301284,0.000000,0.000000,0.250000,0,0);}
.m93_c01080{transform:matrix(0.301411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301411,0.000000,0.000000,0.250000,0,0);}
.ma2_c01080{transform:matrix(0.301907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301907,0.000000,0.000000,0.250000,0,0);}
.m89_c01080{transform:matrix(0.302338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302338,0.000000,0.000000,0.250000,0,0);}
.m56_c01080{transform:matrix(0.302584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302584,0.000000,0.000000,0.250000,0,0);}
.m5d_c01080{transform:matrix(0.303047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303047,0.000000,0.000000,0.250000,0,0);}
.m36_c01080{transform:matrix(0.303512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303512,0.000000,0.000000,0.250000,0,0);}
.m82_c01080{transform:matrix(0.303806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303806,0.000000,0.000000,0.250000,0,0);}
.maa_c01080{transform:matrix(0.304883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304883,0.000000,0.000000,0.250000,0,0);}
.m35_c01080{transform:matrix(0.305357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305357,0.000000,0.000000,0.250000,0,0);}
.m44_c01080{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m81_c01080{transform:matrix(0.305627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305627,0.000000,0.000000,0.250000,0,0);}
.m9c_c01080{transform:matrix(0.305740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305740,0.000000,0.000000,0.250000,0,0);}
.m92_c01080{transform:matrix(0.305949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305949,0.000000,0.000000,0.250000,0,0);}
.m38_c01080{transform:matrix(0.306031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306031,0.000000,0.000000,0.250000,0,0);}
.m94_c01080{transform:matrix(0.306071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306071,0.000000,0.000000,0.250000,0,0);}
.m2c_c01080{transform:matrix(0.306373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306373,0.000000,0.000000,0.250000,0,0);}
.m30_c01080{transform:matrix(0.306944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306944,0.000000,0.000000,0.250000,0,0);}
.m87_c01080{transform:matrix(0.307137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307137,0.000000,0.000000,0.250000,0,0);}
.m71_c01080{transform:matrix(0.307690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307690,0.000000,0.000000,0.250000,0,0);}
.m5b_c01080{transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);}
.m97_c01080{transform:matrix(0.308883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308883,0.000000,0.000000,0.250000,0,0);}
.m26_c01080{transform:matrix(0.310288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310288,0.000000,0.000000,0.250000,0,0);}
.m55_c01080{transform:matrix(0.310540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310540,0.000000,0.000000,0.250000,0,0);}
.ma4_c01080{transform:matrix(0.310625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310625,0.000000,0.000000,0.250000,0,0);}
.ma_c01080{transform:matrix(0.310929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310929,0.000000,0.000000,0.250000,0,0);}
.m34_c01080{transform:matrix(0.311072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311072,0.000000,0.000000,0.250000,0,0);}
.m1d_c01080{transform:matrix(0.311495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311495,0.000000,0.000000,0.250000,0,0);}
.m4b_c01080{transform:matrix(0.312526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312526,0.000000,0.000000,0.250000,0,0);}
.m4d_c01080{transform:matrix(0.312624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312624,0.000000,0.000000,0.250000,0,0);}
.m69_c01080{transform:matrix(0.313044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313044,0.000000,0.000000,0.250000,0,0);}
.m9d_c01080{transform:matrix(0.313358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313358,0.000000,0.000000,0.250000,0,0);}
.m70_c01080{transform:matrix(0.313630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313630,0.000000,0.000000,0.250000,0,0);}
.m65_c01080{transform:matrix(0.313781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313781,0.000000,0.000000,0.250000,0,0);}
.m6c_c01080{transform:matrix(0.313798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313798,0.000000,0.000000,0.250000,0,0);}
.m8c_c01080{transform:matrix(0.314233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314233,0.000000,0.000000,0.250000,0,0);}
.m20_c01080{transform:matrix(0.315264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315264,0.000000,0.000000,0.250000,0,0);}
.m5e_c01080{transform:matrix(0.316830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316830,0.000000,0.000000,0.250000,0,0);}
.ma7_c01080{transform:matrix(0.317260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317260,0.000000,0.000000,0.250000,0,0);}
.m32_c01080{transform:matrix(0.318135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318135,0.000000,0.000000,0.250000,0,0);}
.maf_c01080{transform:matrix(0.318222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318222,0.000000,0.000000,0.250000,0,0);}
.m60_c01080{transform:matrix(0.319203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319203,0.000000,0.000000,0.250000,0,0);}
.m3_c01080{transform:matrix(0.319887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319887,0.000000,0.000000,0.250000,0,0);}
.m6d_c01080{transform:matrix(0.322334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322334,0.000000,0.000000,0.250000,0,0);}
.m49_c01080{transform:matrix(0.322468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322468,0.000000,0.000000,0.250000,0,0);}
.m16_c01080{transform:matrix(0.322553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322553,0.000000,0.000000,0.250000,0,0);}
.m68_c01080{transform:matrix(0.323060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323060,0.000000,0.000000,0.250000,0,0);}
.me_c01080{transform:matrix(0.323067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323067,0.000000,0.000000,0.250000,0,0);}
.m5f_c01080{transform:matrix(0.324521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324521,0.000000,0.000000,0.250000,0,0);}
.m46_c01080{transform:matrix(0.325224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325224,0.000000,0.000000,0.250000,0,0);}
.m4e_c01080{transform:matrix(0.325628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325628,0.000000,0.000000,0.250000,0,0);}
.m91_c01080{transform:matrix(0.326492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326492,0.000000,0.000000,0.250000,0,0);}
.ma0_c01080{transform:matrix(0.326773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326773,0.000000,0.000000,0.250000,0,0);}
.m79_c01080{transform:matrix(0.327721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327721,0.000000,0.000000,0.250000,0,0);}
.m8d_c01080{transform:matrix(0.328237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328237,0.000000,0.000000,0.250000,0,0);}
.m74_c01080{transform:matrix(0.328778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328778,0.000000,0.000000,0.250000,0,0);}
.m47_c01080{transform:matrix(0.328873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328873,0.000000,0.000000,0.250000,0,0);}
.m4c_c01080{transform:matrix(0.329073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329073,0.000000,0.000000,0.250000,0,0);}
.mae_c01080{transform:matrix(0.330403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330403,0.000000,0.000000,0.250000,0,0);}
.m61_c01080{transform:matrix(0.331010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331010,0.000000,0.000000,0.250000,0,0);}
.m3a_c01080{transform:matrix(0.331410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331410,0.000000,0.000000,0.250000,0,0);}
.m53_c01080{transform:matrix(0.331825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331825,0.000000,0.000000,0.250000,0,0);}
.m4f_c01080{transform:matrix(0.333131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333131,0.000000,0.000000,0.250000,0,0);}
.m99_c01080{transform:matrix(0.335265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335265,0.000000,0.000000,0.250000,0,0);}
.m72_c01080{transform:matrix(0.335583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335583,0.000000,0.000000,0.250000,0,0);}
.m80_c01080{transform:matrix(0.337107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337107,0.000000,0.000000,0.250000,0,0);}
.m1e_c01080{transform:matrix(0.337663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337663,0.000000,0.000000,0.250000,0,0);}
.m3c_c01080{transform:matrix(0.338689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338689,0.000000,0.000000,0.250000,0,0);}
.mab_c01080{transform:matrix(0.339063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339063,0.000000,0.000000,0.250000,0,0);}
.m48_c01080{transform:matrix(0.339155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339155,0.000000,0.000000,0.250000,0,0);}
.m83_c01080{transform:matrix(0.339204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339204,0.000000,0.000000,0.250000,0,0);}
.m42_c01080{transform:matrix(0.340884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340884,0.000000,0.000000,0.250000,0,0);}
.ma1_c01080{transform:matrix(0.340970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340970,0.000000,0.000000,0.250000,0,0);}
.m6_c01080{transform:matrix(0.341476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341476,0.000000,0.000000,0.250000,0,0);}
.m62_c01080{transform:matrix(0.342481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342481,0.000000,0.000000,0.250000,0,0);}
.m21_c01080{transform:matrix(0.342775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342775,0.000000,0.000000,0.250000,0,0);}
.m31_c01080{transform:matrix(0.342830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342830,0.000000,0.000000,0.250000,0,0);}
.m64_c01080{transform:matrix(0.344368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344368,0.000000,0.000000,0.250000,0,0);}
.ma3_c01080{transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);}
.m51_c01080{transform:matrix(0.346597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346597,0.000000,0.000000,0.250000,0,0);}
.m8e_c01080{transform:matrix(0.346938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346938,0.000000,0.000000,0.250000,0,0);}
.mb0_c01080{transform:matrix(0.351188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351188,0.000000,0.000000,0.250000,0,0);}
.m19_c01080{transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);}
.m58_c01080{transform:matrix(0.353748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353748,0.000000,0.000000,0.250000,0,0);}
.m95_c01080{transform:matrix(0.354788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354788,0.000000,0.000000,0.250000,0,0);}
.m84_c01080{transform:matrix(0.355252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355252,0.000000,0.000000,0.250000,0,0);}
.m50_c01080{transform:matrix(0.355799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355799,0.000000,0.000000,0.250000,0,0);}
.m39_c01080{transform:matrix(0.358866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358866,0.000000,0.000000,0.250000,0,0);}
.m7f_c01080{transform:matrix(0.359199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359199,0.000000,0.000000,0.250000,0,0);}
.m7c_c01080{transform:matrix(0.376611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376611,0.000000,0.000000,0.250000,0,0);}
.m6f_c01080{transform:matrix(0.387076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387076,0.000000,0.000000,0.250000,0,0);}
.m2a_c01080{transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);}
.m9_c01080{transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);}
.m3f_c01080{transform:matrix(0.405805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405805,0.000000,0.000000,0.250000,0,0);}
.m59_c01080{transform:matrix(0.412048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412048,0.000000,0.000000,0.250000,0,0);}
.m15_c01080{transform:matrix(0.418291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418291,0.000000,0.000000,0.250000,0,0);}
.v0_c01080{vertical-align:0.000000px;}
.lsc_c01080{letter-spacing:-2.647267px;}
.lsb_c01080{letter-spacing:-2.594322px;}
.lsf_c01080{letter-spacing:-2.495995px;}
.lsd_c01080{letter-spacing:-2.328480px;}
.ls7_c01080{letter-spacing:-0.892507px;}
.ls2_c01080{letter-spacing:0.000000px;}
.ls10_c01080{letter-spacing:0.605090px;}
.ls11_c01080{letter-spacing:1.747196px;}
.ls1_c01080{letter-spacing:1.928723px;}
.ls0_c01080{letter-spacing:1.996796px;}
.lsa_c01080{letter-spacing:2.049741px;}
.ls9_c01080{letter-spacing:3.464138px;}
.lse_c01080{letter-spacing:3.643200px;}
.ls5_c01080{letter-spacing:3.732310px;}
.ls3_c01080{letter-spacing:3.781810px;}
.ls8_c01080{letter-spacing:4.019400px;}
.ls6_c01080{letter-spacing:58.449798px;}
.ls4_c01080{letter-spacing:59.875398px;}
.sc__c01080{text-shadow:none;}
.sc0_c01080{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01080{-webkit-text-stroke:0px transparent;}
.sc0_c01080{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01080{word-spacing:0.000000px;}
._4_c01080{width:4.160288px;}
._0_c01080{width:27.860569px;}
._2_c01080{width:30.246401px;}
._1_c01080{width:32.254200px;}
._3_c01080{width:36.550800px;}
.fc0_c01080{color:transparent;}
.fs0_c01080{font-size:22.176000px;}
.fsa_c01080{font-size:27.918000px;}
.fs4_c01080{font-size:58.449798px;}
.fs2_c01080{font-size:59.875398px;}
.fs7_c01080{font-size:66.528000px;}
.fs8_c01080{font-size:72.864000px;}
.fs3_c01080{font-size:74.646198px;}
.fs6_c01080{font-size:74.844000px;}
.fs1_c01080{font-size:75.636198px;}
.fs9_c01080{font-size:78.804000px;}
.fs5_c01080{font-size:80.388000px;}
.y0_c01080{bottom:0.000000px;}
.y1_c01080{bottom:76.500000px;}
.y1d_c01080{bottom:106.119135px;}
.y1c_c01080{bottom:125.721135px;}
.y1b_c01080{bottom:158.509935px;}
.y1a_c01080{bottom:192.006585px;}
.y19_c01080{bottom:227.646585px;}
.y18_c01080{bottom:256.876335px;}
.y17_c01080{bottom:288.239535px;}
.y16_c01080{bottom:319.954185px;}
.y15_c01080{bottom:351.322335px;}
.y14_c01080{bottom:383.749785px;}
.y13_c01080{bottom:415.830735px;}
.y12_c01080{bottom:448.970985px;}
.y11_c01080{bottom:480.695535px;}
.y10_c01080{bottom:497.797785px;}
.yf_c01080{bottom:513.122985px;}
.ye_c01080{bottom:576.918585px;}
.yd_c01080{bottom:608.999535px;}
.yc_c01080{bottom:641.070585px;}
.y2_c01080{bottom:664.954335px;}
.yb_c01080{bottom:673.146585px;}
.ya_c01080{bottom:704.509785px;}
.y9_c01080{bottom:736.947135px;}
.y8_c01080{bottom:768.661785px;}
.y7_c01080{bottom:801.094185px;}
.y6_c01080{bottom:832.818735px;}
.y5_c01080{bottom:865.246185px;}
.y4_c01080{bottom:897.327135px;}
.y3_c01080{bottom:929.041785px;}
.h2_c01080{height:23.128875px;}
.hc_c01080{height:29.117602px;}
.h6_c01080{height:38.927565px;}
.h4_c01080{height:39.877015px;}
.h9_c01080{height:69.386625px;}
.ha_c01080{height:71.512031px;}
.h5_c01080{height:73.261161px;}
.h8_c01080{height:73.455293px;}
.h3_c01080{height:74.232792px;}
.hb_c01080{height:77.341816px;}
.h7_c01080{height:78.896426px;}
.h1_c01080{height:1110.000000px;}
.h0_c01080{height:1263.000000px;}
.w1_c01080{width:775.500000px;}
.w0_c01080{width:892.500000px;}
.x0_c01080{left:0.000000px;}
.x1_c01080{left:58.500000px;}
.x2_c01080{left:75.815835px;}
.x66_c01080{left:82.627035px;}
.x38_c01080{left:83.691285px;}
.x20_c01080{left:84.765435px;}
.x3_c01080{left:86.616735px;}
.x48_c01080{left:105.991035px;}
.x27_c01080{left:118.692735px;}
.x21_c01080{left:128.236335px;}
.x44_c01080{left:129.518385px;}
.x6d_c01080{left:138.532335px;}
.x50_c01080{left:139.586685px;}
.x17_c01080{left:140.918235px;}
.x4e_c01080{left:150.417285px;}
.x34_c01080{left:161.391435px;}
.x2d_c01080{left:163.015035px;}
.x6b_c01080{left:171.014235px;}
.x4_c01080{left:173.142735px;}
.xd_c01080{left:174.226785px;}
.x72_c01080{left:183.201135px;}
.x3e_c01080{left:184.399035px;}
.x49_c01080{left:193.412985px;}
.x2e_c01080{left:195.769185px;}
.x57_c01080{left:205.753335px;}
.xe_c01080{left:207.079935px;}
.x63_c01080{left:215.564235px;}
.x6c_c01080{left:217.519485px;}
.x18_c01080{left:218.880735px;}
.x5a_c01080{left:228.557985px;}
.x59_c01080{left:238.928235px;}
.x5_c01080{left:240.675585px;}
.x56_c01080{left:248.313435px;}
.x19_c01080{left:250.486485px;}
.x3f_c01080{left:261.188385px;}
.x22_c01080{left:262.653585px;}
.x51_c01080{left:272.944635px;}
.x6_c01080{left:282.968385px;}
.xf_c01080{left:286.532385px;}
.x5f_c01080{left:293.967285px;}
.x28_c01080{left:295.823535px;}
.x4a_c01080{left:305.060235px;}
.x5b_c01080{left:306.970935px;}
.x6e_c01080{left:315.717585px;}
.x67_c01080{left:317.118435px;}
.x74_c01080{left:327.543135px;}
.x10_c01080{left:329.033085px;}
.x1a_c01080{left:330.369585px;}
.x45_c01080{left:339.046935px;}
.x7_c01080{left:340.373535px;}
.x52_c01080{left:350.481435px;}
.x73_c01080{left:361.866435px;}
.x11_c01080{left:362.935635px;}
.x39_c01080{left:371.707035px;}
.x2f_c01080{left:373.231635px;}
.x29_c01080{left:374.875035px;}
.x46_c01080{left:382.715835px;}
.x75_c01080{left:383.824635px;}
.x53_c01080{left:395.348235px;}
.x35_c01080{left:397.095585px;}
.x30_c01080{left:406.243185px;}
.x3a_c01080{left:416.573835px;}
.x40_c01080{left:428.335035px;}
.x12_c01080{left:429.607185px;}
.x4b_c01080{left:439.427985px;}
.x1b_c01080{left:441.571335px;}
.x5c_c01080{left:449.045835px;}
.x68_c01080{left:450.218985px;}
.x4f_c01080{left:461.683185px;}
.x13_c01080{left:462.752385px;}
.x3b_c01080{left:472.726635px;}
.x8_c01080{left:474.439335px;}
.x5d_c01080{left:483.289935px;}
.x36_c01080{left:485.185785px;}
.x2a_c01080{left:494.625435px;}
.x1c_c01080{left:496.194585px;}
.x60_c01080{left:504.609585px;}
.x31_c01080{left:505.960935px;}
.x9_c01080{left:507.990435px;}
.x3c_c01080{left:516.796485px;}
.x1d_c01080{left:527.453835px;}
.x23_c01080{left:528.681435px;}
.x14_c01080{left:539.893185px;}
.x64_c01080{left:548.931885px;}
.x54_c01080{left:550.560435px;}
.x37_c01080{left:551.852385px;}
.x69_c01080{left:559.836735px;}
.x41_c01080{left:570.909885px;}
.x24_c01080{left:572.865135px;}
.x65_c01080{left:581.591985px;}
.xa_c01080{left:583.918485px;}
.x76_c01080{left:591.566235px;}
.x5e_c01080{left:592.650285px;}
.x55_c01080{left:593.872935px;}
.x15_c01080{left:595.996485px;}
.x3d_c01080{left:604.936185px;}
.x6f_c01080{left:615.613335px;}
.xb_c01080{left:616.647885px;}
.x25_c01080{left:617.692335px;}
.x61_c01080{left:625.107435px;}
.x58_c01080{left:637.190385px;}
.x1e_c01080{left:639.393135px;}
.x70_c01080{left:647.654685px;}
.xc_c01080{left:649.307985px;}
.x32_c01080{left:650.515785px;}
.x6a_c01080{left:659.113935px;}
.x2b_c01080{left:660.524685px;}
.x47_c01080{left:670.122735px;}
.x4c_c01080{left:672.181935px;}
.x62_c01080{left:681.552285px;}
.x33_c01080{left:683.284785px;}
.x1f_c01080{left:684.378735px;}
.x42_c01080{left:692.778885px;}
.x26_c01080{left:694.758885px;}
.x2c_c01080{left:700.268235px;}
.x77_c01080{left:704.327235px;}
.x16_c01080{left:705.376635px;}
.x4d_c01080{left:716.469585px;}
.x71_c01080{left:726.755685px;}
.x43_c01080{left:727.834785px;}
@media print{
.v0_c01080{vertical-align:0.000000pt;}
.lsc_c01080{letter-spacing:-2.353126pt;}
.lsb_c01080{letter-spacing:-2.306064pt;}
.lsf_c01080{letter-spacing:-2.218662pt;}
.lsd_c01080{letter-spacing:-2.069760pt;}
.ls7_c01080{letter-spacing:-0.793340pt;}
.ls2_c01080{letter-spacing:0.000000pt;}
.ls10_c01080{letter-spacing:0.537857pt;}
.ls11_c01080{letter-spacing:1.553063pt;}
.ls1_c01080{letter-spacing:1.714420pt;}
.ls0_c01080{letter-spacing:1.774929pt;}
.lsa_c01080{letter-spacing:1.821992pt;}
.ls9_c01080{letter-spacing:3.079234pt;}
.lse_c01080{letter-spacing:3.238400pt;}
.ls5_c01080{letter-spacing:3.317609pt;}
.ls3_c01080{letter-spacing:3.361609pt;}
.ls8_c01080{letter-spacing:3.572800pt;}
.ls6_c01080{letter-spacing:51.955376pt;}
.ls4_c01080{letter-spacing:53.222576pt;}
.ws0_c01080{word-spacing:0.000000pt;}
._4_c01080{width:3.698034pt;}
._0_c01080{width:24.764950pt;}
._2_c01080{width:26.885690pt;}
._1_c01080{width:28.670400pt;}
._3_c01080{width:32.489600pt;}
.fs0_c01080{font-size:19.712000pt;}
.fsa_c01080{font-size:24.816000pt;}
.fs4_c01080{font-size:51.955376pt;}
.fs2_c01080{font-size:53.222576pt;}
.fs7_c01080{font-size:59.136000pt;}
.fs8_c01080{font-size:64.768000pt;}
.fs3_c01080{font-size:66.352176pt;}
.fs6_c01080{font-size:66.528000pt;}
.fs1_c01080{font-size:67.232176pt;}
.fs9_c01080{font-size:70.048000pt;}
.fs5_c01080{font-size:71.456000pt;}
.y0_c01080{bottom:0.000000pt;}
.y1_c01080{bottom:68.000000pt;}
.y1d_c01080{bottom:94.328120pt;}
.y1c_c01080{bottom:111.752120pt;}
.y1b_c01080{bottom:140.897720pt;}
.y1a_c01080{bottom:170.672520pt;}
.y19_c01080{bottom:202.352520pt;}
.y18_c01080{bottom:228.334520pt;}
.y17_c01080{bottom:256.212920pt;}
.y16_c01080{bottom:284.403720pt;}
.y15_c01080{bottom:312.286520pt;}
.y14_c01080{bottom:341.110920pt;}
.y13_c01080{bottom:369.627320pt;}
.y12_c01080{bottom:399.085320pt;}
.y11_c01080{bottom:427.284920pt;}
.y10_c01080{bottom:442.486920pt;}
.yf_c01080{bottom:456.109320pt;}
.ye_c01080{bottom:512.816520pt;}
.yd_c01080{bottom:541.332920pt;}
.yc_c01080{bottom:569.840520pt;}
.y2_c01080{bottom:591.070520pt;}
.yb_c01080{bottom:598.352520pt;}
.ya_c01080{bottom:626.230920pt;}
.y9_c01080{bottom:655.064120pt;}
.y8_c01080{bottom:683.254920pt;}
.y7_c01080{bottom:712.083720pt;}
.y6_c01080{bottom:740.283320pt;}
.y5_c01080{bottom:769.107720pt;}
.y4_c01080{bottom:797.624120pt;}
.y3_c01080{bottom:825.814920pt;}
.h2_c01080{height:20.559000pt;}
.hc_c01080{height:25.882313pt;}
.h6_c01080{height:34.602280pt;}
.h4_c01080{height:35.446236pt;}
.h9_c01080{height:61.677000pt;}
.ha_c01080{height:63.566250pt;}
.h5_c01080{height:65.121032pt;}
.h8_c01080{height:65.293594pt;}
.h3_c01080{height:65.984704pt;}
.hb_c01080{height:68.748281pt;}
.h7_c01080{height:70.130156pt;}
.h1_c01080{height:986.666667pt;}
.h0_c01080{height:1122.666667pt;}
.w1_c01080{width:689.333333pt;}
.w0_c01080{width:793.333333pt;}
.x0_c01080{left:0.000000pt;}
.x1_c01080{left:52.000000pt;}
.x2_c01080{left:67.391853pt;}
.x66_c01080{left:73.446253pt;}
.x38_c01080{left:74.392253pt;}
.x20_c01080{left:75.347053pt;}
.x3_c01080{left:76.992653pt;}
.x48_c01080{left:94.214253pt;}
.x27_c01080{left:105.504653pt;}
.x21_c01080{left:113.987853pt;}
.x44_c01080{left:115.127453pt;}
.x6d_c01080{left:123.139853pt;}
.x50_c01080{left:124.077053pt;}
.x17_c01080{left:125.260653pt;}
.x4e_c01080{left:133.704253pt;}
.x34_c01080{left:143.459053pt;}
.x2d_c01080{left:144.902253pt;}
.x6b_c01080{left:152.012653pt;}
.x4_c01080{left:153.904653pt;}
.xd_c01080{left:154.868253pt;}
.x72_c01080{left:162.845453pt;}
.x3e_c01080{left:163.910253pt;}
.x49_c01080{left:171.922653pt;}
.x2e_c01080{left:174.017053pt;}
.x57_c01080{left:182.891853pt;}
.xe_c01080{left:184.071053pt;}
.x63_c01080{left:191.612653pt;}
.x6c_c01080{left:193.350653pt;}
.x18_c01080{left:194.560653pt;}
.x5a_c01080{left:203.162653pt;}
.x59_c01080{left:212.380653pt;}
.x5_c01080{left:213.933853pt;}
.x56_c01080{left:220.723053pt;}
.x19_c01080{left:222.654653pt;}
.x3f_c01080{left:232.167453pt;}
.x22_c01080{left:233.469853pt;}
.x51_c01080{left:242.617453pt;}
.x6_c01080{left:251.527453pt;}
.xf_c01080{left:254.695453pt;}
.x5f_c01080{left:261.304253pt;}
.x28_c01080{left:262.954253pt;}
.x4a_c01080{left:271.164653pt;}
.x5b_c01080{left:272.863053pt;}
.x6e_c01080{left:280.637853pt;}
.x67_c01080{left:281.883053pt;}
.x74_c01080{left:291.149453pt;}
.x10_c01080{left:292.473853pt;}
.x1a_c01080{left:293.661853pt;}
.x45_c01080{left:301.375053pt;}
.x7_c01080{left:302.554253pt;}
.x52_c01080{left:311.539053pt;}
.x73_c01080{left:321.659053pt;}
.x11_c01080{left:322.609453pt;}
.x39_c01080{left:330.406253pt;}
.x2f_c01080{left:331.761453pt;}
.x29_c01080{left:333.222253pt;}
.x46_c01080{left:340.191853pt;}
.x75_c01080{left:341.177453pt;}
.x53_c01080{left:351.420653pt;}
.x35_c01080{left:352.973853pt;}
.x30_c01080{left:361.105053pt;}
.x3a_c01080{left:370.287853pt;}
.x40_c01080{left:380.742253pt;}
.x12_c01080{left:381.873053pt;}
.x4b_c01080{left:390.602653pt;}
.x1b_c01080{left:392.507853pt;}
.x5c_c01080{left:399.151853pt;}
.x68_c01080{left:400.194653pt;}
.x4f_c01080{left:410.385053pt;}
.x13_c01080{left:411.335453pt;}
.x3b_c01080{left:420.201453pt;}
.x8_c01080{left:421.723853pt;}
.x5d_c01080{left:429.591053pt;}
.x36_c01080{left:431.276253pt;}
.x2a_c01080{left:439.667053pt;}
.x1c_c01080{left:441.061853pt;}
.x60_c01080{left:448.541853pt;}
.x31_c01080{left:449.743053pt;}
.x9_c01080{left:451.547053pt;}
.x3c_c01080{left:459.374653pt;}
.x1d_c01080{left:468.847853pt;}
.x23_c01080{left:469.939053pt;}
.x14_c01080{left:479.905053pt;}
.x64_c01080{left:487.939453pt;}
.x54_c01080{left:489.387053pt;}
.x37_c01080{left:490.535453pt;}
.x69_c01080{left:497.632653pt;}
.x41_c01080{left:507.475453pt;}
.x24_c01080{left:509.213453pt;}
.x65_c01080{left:516.970653pt;}
.xa_c01080{left:519.038653pt;}
.x76_c01080{left:525.836653pt;}
.x5e_c01080{left:526.800253pt;}
.x55_c01080{left:527.887053pt;}
.x15_c01080{left:529.774653pt;}
.x3d_c01080{left:537.721053pt;}
.x6f_c01080{left:547.211853pt;}
.xb_c01080{left:548.131453pt;}
.x25_c01080{left:549.059853pt;}
.x61_c01080{left:555.651053pt;}
.x58_c01080{left:566.391453pt;}
.x1e_c01080{left:568.349453pt;}
.x70_c01080{left:575.693053pt;}
.xc_c01080{left:577.162653pt;}
.x32_c01080{left:578.236253pt;}
.x6a_c01080{left:585.879053pt;}
.x2b_c01080{left:587.133053pt;}
.x47_c01080{left:595.664653pt;}
.x4c_c01080{left:597.495053pt;}
.x62_c01080{left:605.824253pt;}
.x33_c01080{left:607.364253pt;}
.x1f_c01080{left:608.336653pt;}
.x42_c01080{left:615.803453pt;}
.x26_c01080{left:617.563453pt;}
.x2c_c01080{left:622.460653pt;}
.x77_c01080{left:626.068653pt;}
.x16_c01080{left:627.001453pt;}
.x4d_c01080{left:636.861853pt;}
.x71_c01080{left:646.005053pt;}
.x43_c01080{left:646.964253pt;}
}





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

.ir_c01081:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01081{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01081;src:url('chunks/assets/font_c83d0eb701585e20e7a46cbb.woff2')format("woff");}.ff1_c01081{font-family:ff1_c01081;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01081;src:url('chunks/assets/font_b215154983b0a29ec80af183.woff2')format("woff");}.ff2_c01081{font-family:ff2_c01081;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01081;src:url('chunks/assets/font_b8117cc1fb7569da9b1a1d22.woff2')format("woff");}.ff3_c01081{font-family:ff3_c01081;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01081;src:url('chunks/assets/font_bad7bb3b309b7256536a2d03.woff2')format("woff");}.ff4_c01081{font-family:ff4_c01081;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2e_c01081{transform:matrix(0.028572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.028572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.028572,0.000000,0.000000,0.250000,0,0);}
.m2d_c01081{transform:matrix(0.085714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085714,0.000000,0.000000,0.250000,0,0);}
.m2f_c01081{transform:matrix(0.114286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114286,0.000000,0.000000,0.250000,0,0);}
.mf_c01081{transform:matrix(0.180233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180233,0.000000,0.000000,0.250000,0,0);}
.m6c_c01081{transform:matrix(0.215476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215476,0.000000,0.000000,0.250000,0,0);}
.m1b_c01081{transform:matrix(0.228453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228453,0.000000,0.000000,0.250000,0,0);}
.m31_c01081{transform:matrix(0.233251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233251,0.000000,0.000000,0.250000,0,0);}
.m5d_c01081{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);}
.m0_c01081{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m4e_c01081{transform:matrix(0.250825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250825,0.000000,0.000000,0.250000,0,0);}
.m1f_c01081{transform:matrix(0.251056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251056,0.000000,0.000000,0.250000,0,0);}
.m1_c01081{transform:matrix(0.251939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251939,0.000000,0.000000,0.250000,0,0);}
.m41_c01081{transform:matrix(0.252724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252724,0.000000,0.000000,0.250000,0,0);}
.m49_c01081{transform:matrix(0.254677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254677,0.000000,0.000000,0.250000,0,0);}
.ma6_c01081{transform:matrix(0.260433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260433,0.000000,0.000000,0.250000,0,0);}
.m58_c01081{transform:matrix(0.263376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263376,0.000000,0.000000,0.250000,0,0);}
.m42_c01081{transform:matrix(0.264376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264376,0.000000,0.000000,0.250000,0,0);}
.m19_c01081{transform:matrix(0.265166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265166,0.000000,0.000000,0.250000,0,0);}
.m4c_c01081{transform:matrix(0.266590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266590,0.000000,0.000000,0.250000,0,0);}
.m2_c01081{transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);}
.m3c_c01081{transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);}
.mb0_c01081{transform:matrix(0.271082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271082,0.000000,0.000000,0.250000,0,0);}
.m6d_c01081{transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);}
.m9b_c01081{transform:matrix(0.271254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271254,0.000000,0.000000,0.250000,0,0);}
.m87_c01081{transform:matrix(0.271746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271746,0.000000,0.000000,0.250000,0,0);}
.m34_c01081{transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);}
.me_c01081{transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);}
.mac_c01081{transform:matrix(0.273770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273770,0.000000,0.000000,0.250000,0,0);}
.m46_c01081{transform:matrix(0.273802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273802,0.000000,0.000000,0.250000,0,0);}
.m60_c01081{transform:matrix(0.273844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273844,0.000000,0.000000,0.250000,0,0);}
.md_c01081{transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);}
.m1a_c01081{transform:matrix(0.276054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276054,0.000000,0.000000,0.250000,0,0);}
.mc_c01081{transform:matrix(0.276935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276935,0.000000,0.000000,0.250000,0,0);}
.m11_c01081{transform:matrix(0.277389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277389,0.000000,0.000000,0.250000,0,0);}
.m23_c01081{transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);}
.mbd_c01081{transform:matrix(0.277813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277813,0.000000,0.000000,0.250000,0,0);}
.m25_c01081{transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);}
.m56_c01081{transform:matrix(0.281088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281088,0.000000,0.000000,0.250000,0,0);}
.mb1_c01081{transform:matrix(0.281556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281556,0.000000,0.000000,0.250000,0,0);}
.m4d_c01081{transform:matrix(0.282518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282518,0.000000,0.000000,0.250000,0,0);}
.ma4_c01081{transform:matrix(0.284650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284650,0.000000,0.000000,0.250000,0,0);}
.m44_c01081{transform:matrix(0.285021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285021,0.000000,0.000000,0.250000,0,0);}
.mb8_c01081{transform:matrix(0.285120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285120,0.000000,0.000000,0.250000,0,0);}
.m3b_c01081{transform:matrix(0.285665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285665,0.000000,0.000000,0.250000,0,0);}
.m6f_c01081{transform:matrix(0.285995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285995,0.000000,0.000000,0.250000,0,0);}
.m22_c01081{transform:matrix(0.286389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286389,0.000000,0.000000,0.250000,0,0);}
.m18_c01081{transform:matrix(0.286446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286446,0.000000,0.000000,0.250000,0,0);}
.m6_c01081{transform:matrix(0.286592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286592,0.000000,0.000000,0.250000,0,0);}
.m3e_c01081{transform:matrix(0.286986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286986,0.000000,0.000000,0.250000,0,0);}
.m53_c01081{transform:matrix(0.287054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287054,0.000000,0.000000,0.250000,0,0);}
.m3f_c01081{transform:matrix(0.287720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287720,0.000000,0.000000,0.250000,0,0);}
.m2a_c01081{transform:matrix(0.288665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288665,0.000000,0.000000,0.250000,0,0);}
.m1e_c01081{transform:matrix(0.288700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288700,0.000000,0.000000,0.250000,0,0);}
.m4a_c01081{transform:matrix(0.289027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289027,0.000000,0.000000,0.250000,0,0);}
.mb7_c01081{transform:matrix(0.290858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290858,0.000000,0.000000,0.250000,0,0);}
.m69_c01081{transform:matrix(0.290974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290974,0.000000,0.000000,0.250000,0,0);}
.m43_c01081{transform:matrix(0.291495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291495,0.000000,0.000000,0.250000,0,0);}
.m83_c01081{transform:matrix(0.291864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291864,0.000000,0.000000,0.250000,0,0);}
.m81_c01081{transform:matrix(0.292159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292159,0.000000,0.000000,0.250000,0,0);}
.mb2_c01081{transform:matrix(0.293158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293158,0.000000,0.000000,0.250000,0,0);}
.m80_c01081{transform:matrix(0.293508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293508,0.000000,0.000000,0.250000,0,0);}
.m15_c01081{transform:matrix(0.293938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293938,0.000000,0.000000,0.250000,0,0);}
.m9a_c01081{transform:matrix(0.294503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294503,0.000000,0.000000,0.250000,0,0);}
.m77_c01081{transform:matrix(0.295050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295050,0.000000,0.000000,0.250000,0,0);}
.m93_c01081{transform:matrix(0.295161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295161,0.000000,0.000000,0.250000,0,0);}
.m1c_c01081{transform:matrix(0.295366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295366,0.000000,0.000000,0.250000,0,0);}
.m13_c01081{transform:matrix(0.295468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295468,0.000000,0.000000,0.250000,0,0);}
.m72_c01081{transform:matrix(0.296335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296335,0.000000,0.000000,0.250000,0,0);}
.m71_c01081{transform:matrix(0.296537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296537,0.000000,0.000000,0.250000,0,0);}
.m3a_c01081{transform:matrix(0.296868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296868,0.000000,0.000000,0.250000,0,0);}
.m5_c01081{transform:matrix(0.296995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296995,0.000000,0.000000,0.250000,0,0);}
.m1d_c01081{transform:matrix(0.297297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297297,0.000000,0.000000,0.250000,0,0);}
.m86_c01081{transform:matrix(0.297422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297422,0.000000,0.000000,0.250000,0,0);}
.mab_c01081{transform:matrix(0.298410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298410,0.000000,0.000000,0.250000,0,0);}
.ma5_c01081{transform:matrix(0.299390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299390,0.000000,0.000000,0.250000,0,0);}
.m45_c01081{transform:matrix(0.299872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299872,0.000000,0.000000,0.250000,0,0);}
.m59_c01081{transform:matrix(0.300188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300188,0.000000,0.000000,0.250000,0,0);}
.mba_c01081{transform:matrix(0.300592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300592,0.000000,0.000000,0.250000,0,0);}
.mbf_c01081{transform:matrix(0.301121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301121,0.000000,0.000000,0.250000,0,0);}
.m33_c01081{transform:matrix(0.301417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301417,0.000000,0.000000,0.250000,0,0);}
.m92_c01081{transform:matrix(0.301792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301792,0.000000,0.000000,0.250000,0,0);}
.m5a_c01081{transform:matrix(0.302495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302495,0.000000,0.000000,0.250000,0,0);}
.m50_c01081{transform:matrix(0.302665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302665,0.000000,0.000000,0.250000,0,0);}
.m7d_c01081{transform:matrix(0.303018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303018,0.000000,0.000000,0.250000,0,0);}
.m12_c01081{transform:matrix(0.303335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303335,0.000000,0.000000,0.250000,0,0);}
.m96_c01081{transform:matrix(0.303549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303549,0.000000,0.000000,0.250000,0,0);}
.m85_c01081{transform:matrix(0.303673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303673,0.000000,0.000000,0.250000,0,0);}
.m36_c01081{transform:matrix(0.304350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304350,0.000000,0.000000,0.250000,0,0);}
.ma0_c01081{transform:matrix(0.304795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304795,0.000000,0.000000,0.250000,0,0);}
.m5e_c01081{transform:matrix(0.304955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304955,0.000000,0.000000,0.250000,0,0);}
.m74_c01081{transform:matrix(0.305082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305082,0.000000,0.000000,0.250000,0,0);}
.m73_c01081{transform:matrix(0.305141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305141,0.000000,0.000000,0.250000,0,0);}
.mbc_c01081{transform:matrix(0.305233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305233,0.000000,0.000000,0.250000,0,0);}
.mb6_c01081{transform:matrix(0.305476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305476,0.000000,0.000000,0.250000,0,0);}
.mc0_c01081{transform:matrix(0.305787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305787,0.000000,0.000000,0.250000,0,0);}
.m8_c01081{transform:matrix(0.306071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306071,0.000000,0.000000,0.250000,0,0);}
.m8e_c01081{transform:matrix(0.306458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306458,0.000000,0.000000,0.250000,0,0);}
.m7c_c01081{transform:matrix(0.307093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307093,0.000000,0.000000,0.250000,0,0);}
.m40_c01081{transform:matrix(0.308521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308521,0.000000,0.000000,0.250000,0,0);}
.m99_c01081{transform:matrix(0.308570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308570,0.000000,0.000000,0.250000,0,0);}
.ma9_c01081{transform:matrix(0.308778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308778,0.000000,0.000000,0.250000,0,0);}
.m84_c01081{transform:matrix(0.308959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308959,0.000000,0.000000,0.250000,0,0);}
.m51_c01081{transform:matrix(0.309224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309224,0.000000,0.000000,0.250000,0,0);}
.ma2_c01081{transform:matrix(0.309463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309463,0.000000,0.000000,0.250000,0,0);}
.ma3_c01081{transform:matrix(0.310041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310041,0.000000,0.000000,0.250000,0,0);}
.m82_c01081{transform:matrix(0.310242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310242,0.000000,0.000000,0.250000,0,0);}
.mb5_c01081{transform:matrix(0.311061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311061,0.000000,0.000000,0.250000,0,0);}
.m9e_c01081{transform:matrix(0.311495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311495,0.000000,0.000000,0.250000,0,0);}
.mbb_c01081{transform:matrix(0.311592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311592,0.000000,0.000000,0.250000,0,0);}
.m94_c01081{transform:matrix(0.312585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312585,0.000000,0.000000,0.250000,0,0);}
.m10_c01081{transform:matrix(0.312724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312724,0.000000,0.000000,0.250000,0,0);}
.m32_c01081{transform:matrix(0.312752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312752,0.000000,0.000000,0.250000,0,0);}
.maa_c01081{transform:matrix(0.313151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313151,0.000000,0.000000,0.250000,0,0);}
.m97_c01081{transform:matrix(0.313497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313497,0.000000,0.000000,0.250000,0,0);}
.mbe_c01081{transform:matrix(0.314071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314071,0.000000,0.000000,0.250000,0,0);}
.m4b_c01081{transform:matrix(0.314194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314194,0.000000,0.000000,0.250000,0,0);}
.m2c_c01081{transform:matrix(0.314442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314442,0.000000,0.000000,0.250000,0,0);}
.m55_c01081{transform:matrix(0.314864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314864,0.000000,0.000000,0.250000,0,0);}
.m8f_c01081{transform:matrix(0.315316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315316,0.000000,0.000000,0.250000,0,0);}
.m27_c01081{transform:matrix(0.315372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315372,0.000000,0.000000,0.250000,0,0);}
.m14_c01081{transform:matrix(0.315600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315600,0.000000,0.000000,0.250000,0,0);}
.m62_c01081{transform:matrix(0.315601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315601,0.000000,0.000000,0.250000,0,0);}
.m4_c01081{transform:matrix(0.316480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316480,0.000000,0.000000,0.250000,0,0);}
.m20_c01081{transform:matrix(0.316566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316566,0.000000,0.000000,0.250000,0,0);}
.m29_c01081{transform:matrix(0.317366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317366,0.000000,0.000000,0.250000,0,0);}
.m9_c01081{transform:matrix(0.317668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317668,0.000000,0.000000,0.250000,0,0);}
.m98_c01081{transform:matrix(0.318231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318231,0.000000,0.000000,0.250000,0,0);}
.m47_c01081{transform:matrix(0.319203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319203,0.000000,0.000000,0.250000,0,0);}
.m90_c01081{transform:matrix(0.319887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319887,0.000000,0.000000,0.250000,0,0);}
.m54_c01081{transform:matrix(0.320451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320451,0.000000,0.000000,0.250000,0,0);}
.m95_c01081{transform:matrix(0.320714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320714,0.000000,0.000000,0.250000,0,0);}
.ma8_c01081{transform:matrix(0.321255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321255,0.000000,0.000000,0.250000,0,0);}
.m37_c01081{transform:matrix(0.322403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322403,0.000000,0.000000,0.250000,0,0);}
.mb3_c01081{transform:matrix(0.322614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322614,0.000000,0.000000,0.250000,0,0);}
.m30_c01081{transform:matrix(0.322616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322616,0.000000,0.000000,0.250000,0,0);}
.m75_c01081{transform:matrix(0.322730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322730,0.000000,0.000000,0.250000,0,0);}
.m70_c01081{transform:matrix(0.322855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322855,0.000000,0.000000,0.250000,0,0);}
.m8c_c01081{transform:matrix(0.323142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323142,0.000000,0.000000,0.250000,0,0);}
.m39_c01081{transform:matrix(0.323392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323392,0.000000,0.000000,0.250000,0,0);}
.ma_c01081{transform:matrix(0.323481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323481,0.000000,0.000000,0.250000,0,0);}
.mad_c01081{transform:matrix(0.323652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323652,0.000000,0.000000,0.250000,0,0);}
.m78_c01081{transform:matrix(0.324339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324339,0.000000,0.000000,0.250000,0,0);}
.m4f_c01081{transform:matrix(0.326474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326474,0.000000,0.000000,0.250000,0,0);}
.m57_c01081{transform:matrix(0.327266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327266,0.000000,0.000000,0.250000,0,0);}
.m8b_c01081{transform:matrix(0.327730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327730,0.000000,0.000000,0.250000,0,0);}
.m89_c01081{transform:matrix(0.328442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328442,0.000000,0.000000,0.250000,0,0);}
.mb_c01081{transform:matrix(0.329303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329303,0.000000,0.000000,0.250000,0,0);}
.m7f_c01081{transform:matrix(0.330417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330417,0.000000,0.000000,0.250000,0,0);}
.mae_c01081{transform:matrix(0.330522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330522,0.000000,0.000000,0.250000,0,0);}
.m76_c01081{transform:matrix(0.331190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331190,0.000000,0.000000,0.250000,0,0);}
.m38_c01081{transform:matrix(0.332405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332405,0.000000,0.000000,0.250000,0,0);}
.m6e_c01081{transform:matrix(0.333423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333423,0.000000,0.000000,0.250000,0,0);}
.m64_c01081{transform:matrix(0.334815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334815,0.000000,0.000000,0.250000,0,0);}
.m3_c01081{transform:matrix(0.335295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335295,0.000000,0.000000,0.250000,0,0);}
.m9f_c01081{transform:matrix(0.335356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335356,0.000000,0.000000,0.250000,0,0);}
.m6b_c01081{transform:matrix(0.335786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335786,0.000000,0.000000,0.250000,0,0);}
.m5b_c01081{transform:matrix(0.336807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336807,0.000000,0.000000,0.250000,0,0);}
.mb4_c01081{transform:matrix(0.337409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337409,0.000000,0.000000,0.250000,0,0);}
.m9d_c01081{transform:matrix(0.337993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337993,0.000000,0.000000,0.250000,0,0);}
.m5c_c01081{transform:matrix(0.338275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338275,0.000000,0.000000,0.250000,0,0);}
.m66_c01081{transform:matrix(0.338403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338403,0.000000,0.000000,0.250000,0,0);}
.m28_c01081{transform:matrix(0.339155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339155,0.000000,0.000000,0.250000,0,0);}
.m88_c01081{transform:matrix(0.339284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339284,0.000000,0.000000,0.250000,0,0);}
.m68_c01081{transform:matrix(0.339740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339740,0.000000,0.000000,0.250000,0,0);}
.maf_c01081{transform:matrix(0.340132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340132,0.000000,0.000000,0.250000,0,0);}
.m7a_c01081{transform:matrix(0.340618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340618,0.000000,0.000000,0.250000,0,0);}
.mb9_c01081{transform:matrix(0.340895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340895,0.000000,0.000000,0.250000,0,0);}
.m3d_c01081{transform:matrix(0.342830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342830,0.000000,0.000000,0.250000,0,0);}
.m6a_c01081{transform:matrix(0.344455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344455,0.000000,0.000000,0.250000,0,0);}
.m21_c01081{transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);}
.m35_c01081{transform:matrix(0.346597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346597,0.000000,0.000000,0.250000,0,0);}
.m7e_c01081{transform:matrix(0.348487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348487,0.000000,0.000000,0.250000,0,0);}
.ma1_c01081{transform:matrix(0.351163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351163,0.000000,0.000000,0.250000,0,0);}
.m7b_c01081{transform:matrix(0.351188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351188,0.000000,0.000000,0.250000,0,0);}
.m8d_c01081{transform:matrix(0.351615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351615,0.000000,0.000000,0.250000,0,0);}
.m26_c01081{transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);}
.m91_c01081{transform:matrix(0.352739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352739,0.000000,0.000000,0.250000,0,0);}
.m5f_c01081{transform:matrix(0.355252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355252,0.000000,0.000000,0.250000,0,0);}
.m67_c01081{transform:matrix(0.355268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355268,0.000000,0.000000,0.250000,0,0);}
.m24_c01081{transform:matrix(0.355583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355583,0.000000,0.000000,0.250000,0,0);}
.m16_c01081{transform:matrix(0.355989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355989,0.000000,0.000000,0.250000,0,0);}
.m48_c01081{transform:matrix(0.357996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357996,0.000000,0.000000,0.250000,0,0);}
.ma7_c01081{transform:matrix(0.359019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359019,0.000000,0.000000,0.250000,0,0);}
.m9c_c01081{transform:matrix(0.359199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359199,0.000000,0.000000,0.250000,0,0);}
.m63_c01081{transform:matrix(0.359755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359755,0.000000,0.000000,0.250000,0,0);}
.m61_c01081{transform:matrix(0.363147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363147,0.000000,0.000000,0.250000,0,0);}
.m79_c01081{transform:matrix(0.364277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364277,0.000000,0.000000,0.250000,0,0);}
.m2b_c01081{transform:matrix(0.380571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380571,0.000000,0.000000,0.250000,0,0);}
.m7_c01081{transform:matrix(0.387076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387076,0.000000,0.000000,0.250000,0,0);}
.m65_c01081{transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);}
.m17_c01081{transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);}
.m8a_c01081{transform:matrix(0.412048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412048,0.000000,0.000000,0.250000,0,0);}
.m52_c01081{transform:matrix(0.418291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418291,0.000000,0.000000,0.250000,0,0);}
.v0_c01081{vertical-align:0.000000px;}
.ls5_c01081{letter-spacing:-2.647267px;}
.ls9_c01081{letter-spacing:-2.383927px;}
.ls10_c01081{letter-spacing:-0.748798px;}
.ls0_c01081{letter-spacing:0.000000px;}
.lsc_c01081{letter-spacing:0.605090px;}
.lsd_c01081{letter-spacing:1.157234px;}
.lse_c01081{letter-spacing:1.558106px;}
.ls4_c01081{letter-spacing:2.458176px;}
.lsf_c01081{letter-spacing:2.811600px;}
.ls8_c01081{letter-spacing:3.227400px;}
.ls7_c01081{letter-spacing:3.267484px;}
.lsa_c01081{letter-spacing:3.524400px;}
.lsb_c01081{letter-spacing:3.643200px;}
.ls2_c01081{letter-spacing:3.781810px;}
.ls11_c01081{letter-spacing:4.197610px;}
.ls1_c01081{letter-spacing:4.296610px;}
.ls6_c01081{letter-spacing:49.896198px;}
.ls3_c01081{letter-spacing:61.300998px;}
.sc__c01081{text-shadow:none;}
.sc0_c01081{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01081{-webkit-text-stroke:0px transparent;}
.sc0_c01081{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01081{word-spacing:0.000000px;}
._1_c01081{width:33.052993px;}
._0_c01081{width:146.713578px;}
.fc0_c01081{color:transparent;}
.fs0_c01081{font-size:22.176000px;}
.fs2_c01081{font-size:33.660000px;}
.fsb_c01081{font-size:43.758000px;}
.fsa_c01081{font-size:45.144000px;}
.fs5_c01081{font-size:49.896198px;}
.fsc_c01081{font-size:56.232000px;}
.fs4_c01081{font-size:61.300998px;}
.fs6_c01081{font-size:64.548000px;}
.fs8_c01081{font-size:68.112198px;}
.fs9_c01081{font-size:70.488000px;}
.fs7_c01081{font-size:72.864000px;}
.fs3_c01081{font-size:75.636198px;}
.fsd_c01081{font-size:78.804000px;}
.fsf_c01081{font-size:79.200000px;}
.fse_c01081{font-size:83.952198px;}
.fs1_c01081{font-size:85.932198px;}
.y0_c01081{bottom:0.000000px;}
.y21_c01081{bottom:63.351135px;}
.y1_c01081{bottom:76.500000px;}
.y20_c01081{bottom:87.586335px;}
.y1f_c01081{bottom:152.446185px;}
.y1e_c01081{bottom:185.239935px;}
.y1d_c01081{bottom:218.741535px;}
.y1c_c01081{bottom:250.817535px;}
.y1b_c01081{bottom:282.532185px;}
.y1a_c01081{bottom:314.613135px;}
.y19_c01081{bottom:346.327785px;}
.y18_c01081{bottom:379.121535px;}
.y17_c01081{bottom:411.548985px;}
.y16_c01081{bottom:443.986335px;}
.y15_c01081{bottom:476.062335px;}
.y14_c01081{bottom:505.287135px;}
.y13_c01081{bottom:508.846185px;}
.y12_c01081{bottom:541.991385px;}
.y11_c01081{bottom:571.933935px;}
.y10_c01081{bottom:603.653535px;}
.yf_c01081{bottom:636.085935px;}
.ye_c01081{bottom:667.449135px;}
.yd_c01081{bottom:699.163785px;}
.yc_c01081{bottom:731.244735px;}
.yb_c01081{bottom:763.315785px;}
.ya_c01081{bottom:795.391785px;}
.y9_c01081{bottom:827.111385px;}
.y8_c01081{bottom:859.192335px;}
.y7_c01081{bottom:890.906985px;}
.y6_c01081{bottom:922.982985px;}
.y5_c01081{bottom:1019.210985px;}
.y4_c01081{bottom:1083.006585px;}
.y3_c01081{bottom:1086.570585px;}
.y2_c01081{bottom:1106.528985px;}
.h2_c01081{height:23.128875px;}
.h4_c01081{height:33.035449px;}
.h7_c01081{height:33.230868px;}
.h6_c01081{height:40.826465px;}
.hd_c01081{height:42.946084px;}
.hc_c01081{height:47.083781px;}
.he_c01081{height:55.188633px;}
.h8_c01081{height:67.321547px;}
.hb_c01081{height:69.180117px;}
.ha_c01081{height:71.038894px;}
.h9_c01081{height:71.512031px;}
.h5_c01081{height:74.232792px;}
.hf_c01081{height:77.341816px;}
.h10_c01081{height:82.394491px;}
.h11_c01081{height:82.603125px;}
.h3_c01081{height:84.337753px;}
.h1_c01081{height:1110.000000px;}
.h0_c01081{height:1263.000000px;}
.w1_c01081{width:775.500000px;}
.w0_c01081{width:892.500000px;}
.x0_c01081{left:0.000000px;}
.x1_c01081{left:58.500000px;}
.x56_c01081{left:80.132235px;}
.x2_c01081{left:81.161835px;}
.x28_c01081{left:82.483485px;}
.x6_c01081{left:83.542785px;}
.x40_c01081{left:113.995185px;}
.x7_c01081{left:115.594035px;}
.x65_c01081{left:125.197035px;}
.x18_c01081{left:127.969035px;}
.x6f_c01081{left:134.933685px;}
.x48_c01081{left:136.997835px;}
.x3c_c01081{left:138.274935px;}
.x10_c01081{left:147.135435px;}
.x19_c01081{left:159.253035px;}
.x8_c01081{left:160.391535px;}
.x53_c01081{left:168.915435px;}
.x3d_c01081{left:170.633085px;}
.x5d_c01081{left:180.805335px;}
.x29_c01081{left:181.864635px;}
.x6c_c01081{left:191.096385px;}
.x31_c01081{left:203.807985px;}
.x49_c01081{left:213.420885px;}
.x38_c01081{left:215.049435px;}
.x11_c01081{left:216.450285px;}
.x41_c01081{left:225.201885px;}
.x1a_c01081{left:226.780935px;}
.x51_c01081{left:236.666085px;}
.x70_c01081{left:246.996735px;}
.x12_c01081{left:248.907435px;}
.x60_c01081{left:258.757935px;}
.x39_c01081{left:259.861785px;}
.x66_c01081{left:269.024235px;}
.x2d_c01081{left:281.394285px;}
.x32_c01081{left:283.007985px;}
.x6d_c01081{left:291.551685px;}
.x3a_c01081{left:293.492085px;}
.x9_c01081{left:294.759285px;}
.x2a_c01081{left:303.283185px;}
.x23_c01081{left:305.490885px;}
.x42_c01081{left:314.460285px;}
.x4a_c01081{left:315.915585px;}
.x33_c01081{left:324.266235px;}
.x13_c01081{left:326.053185px;}
.xa_c01081{left:327.186735px;}
.x34_c01081{left:336.388785px;}
.x2e_c01081{left:337.636185px;}
.x1b_c01081{left:339.081585px;}
.x3e_c01081{left:347.956935px;}
.x64_c01081{left:357.406485px;}
.x1c_c01081{left:359.683485px;}
.x5e_c01081{left:371.108085px;}
.x4b_c01081{left:381.448635px;}
.xb_c01081{left:383.275185px;}
.x1d_c01081{left:393.046485px;}
.x57_c01081{left:403.387035px;}
.xc_c01081{left:404.599785px;}
.x67_c01081{left:413.381085px;}
.x55_c01081{left:415.573935px;}
.x52_c01081{left:425.132385px;}
.xd_c01081{left:437.249985px;}
.x43_c01081{left:447.778635px;}
.x35_c01081{left:457.916235px;}
.x2b_c01081{left:460.465485px;}
.x71_c01081{left:467.900385px;}
.x61_c01081{left:469.321035px;}
.x4c_c01081{left:472.627635px;}
.x68_c01081{left:479.339835px;}
.x58_c01081{left:490.388235px;}
.x5f_c01081{left:491.883135px;}
.x1e_c01081{left:493.387935px;}
.x2f_c01081{left:503.362185px;}
.x24_c01081{left:504.416535px;}
.x1f_c01081{left:514.232385px;}
.xe_c01081{left:516.157935px;}
.x69_c01081{left:523.533435px;}
.x44_c01081{left:524.919435px;}
.x62_c01081{left:534.913485px;}
.x3b_c01081{left:536.170785px;}
.x14_c01081{left:537.462735px;}
.x6e_c01081{left:545.605485px;}
.x5a_c01081{left:547.219185px;}
.x20_c01081{left:548.446785px;}
.x63_c01081{left:557.881485px;}
.x25_c01081{left:569.627835px;}
.x5b_c01081{left:579.879285px;}
.x21_c01081{left:582.017685px;}
.x6a_c01081{left:590.571285px;}
.x59_c01081{left:591.739485px;}
.x15_c01081{left:603.500685px;}
.x36_c01081{left:612.945285px;}
.x4d_c01081{left:614.222385px;}
.x45_c01081{left:622.944285px;}
.x26_c01081{left:625.899435px;}
.x4e_c01081{left:634.829235px;}
.x2c_c01081{left:635.957835px;}
.x72_c01081{left:644.739135px;}
.x46_c01081{left:646.936935px;}
.x16_c01081{left:648.436785px;}
.x3_c01081{left:651.046425px;}
.x37_c01081{left:657.925935px;}
.x27_c01081{left:659.074335px;}
.x4f_c01081{left:667.479435px;}
.x17_c01081{left:669.791085px;}
.x5c_c01081{left:677.805135px;}
.x22_c01081{left:679.181235px;}
.xf_c01081{left:680.824635px;}
.x73_c01081{left:689.719785px;}
.x54_c01081{left:691.076085px;}
.x30_c01081{left:692.501685px;}
.x4_c01081{left:696.130035px;}
.x50_c01081{left:697.540785px;}
.x5_c01081{left:698.753535px;}
.x3f_c01081{left:702.025485px;}
.x6b_c01081{left:710.999835px;}
.x47_c01081{left:712.984785px;}
@media print{
.v0_c01081{vertical-align:0.000000pt;}
.ls5_c01081{letter-spacing:-2.353126pt;}
.ls9_c01081{letter-spacing:-2.119046pt;}
.ls10_c01081{letter-spacing:-0.665599pt;}
.ls0_c01081{letter-spacing:0.000000pt;}
.lsc_c01081{letter-spacing:0.537857pt;}
.lsd_c01081{letter-spacing:1.028652pt;}
.lse_c01081{letter-spacing:1.384983pt;}
.ls4_c01081{letter-spacing:2.185046pt;}
.lsf_c01081{letter-spacing:2.499200pt;}
.ls8_c01081{letter-spacing:2.868800pt;}
.ls7_c01081{letter-spacing:2.904430pt;}
.lsa_c01081{letter-spacing:3.132800pt;}
.lsb_c01081{letter-spacing:3.238400pt;}
.ls2_c01081{letter-spacing:3.361609pt;}
.ls11_c01081{letter-spacing:3.731209pt;}
.ls1_c01081{letter-spacing:3.819209pt;}
.ls6_c01081{letter-spacing:44.352176pt;}
.ls3_c01081{letter-spacing:54.489776pt;}
.ws0_c01081{word-spacing:0.000000pt;}
._1_c01081{width:29.380438pt;}
._0_c01081{width:130.412069pt;}
.fs0_c01081{font-size:19.712000pt;}
.fs2_c01081{font-size:29.920000pt;}
.fsb_c01081{font-size:38.896000pt;}
.fsa_c01081{font-size:40.128000pt;}
.fs5_c01081{font-size:44.352176pt;}
.fsc_c01081{font-size:49.984000pt;}
.fs4_c01081{font-size:54.489776pt;}
.fs6_c01081{font-size:57.376000pt;}
.fs8_c01081{font-size:60.544176pt;}
.fs9_c01081{font-size:62.656000pt;}
.fs7_c01081{font-size:64.768000pt;}
.fs3_c01081{font-size:67.232176pt;}
.fsd_c01081{font-size:70.048000pt;}
.fsf_c01081{font-size:70.400000pt;}
.fse_c01081{font-size:74.624176pt;}
.fs1_c01081{font-size:76.384176pt;}
.y0_c01081{bottom:0.000000pt;}
.y21_c01081{bottom:56.312120pt;}
.y1_c01081{bottom:68.000000pt;}
.y20_c01081{bottom:77.854520pt;}
.y1f_c01081{bottom:135.507720pt;}
.y1e_c01081{bottom:164.657720pt;}
.y1d_c01081{bottom:194.436920pt;}
.y1c_c01081{bottom:222.948920pt;}
.y1b_c01081{bottom:251.139720pt;}
.y1a_c01081{bottom:279.656120pt;}
.y19_c01081{bottom:307.846920pt;}
.y18_c01081{bottom:336.996920pt;}
.y17_c01081{bottom:365.821320pt;}
.y16_c01081{bottom:394.654520pt;}
.y15_c01081{bottom:423.166520pt;}
.y14_c01081{bottom:449.144120pt;}
.y13_c01081{bottom:452.307720pt;}
.y12_c01081{bottom:481.770120pt;}
.y11_c01081{bottom:508.385720pt;}
.y10_c01081{bottom:536.580920pt;}
.yf_c01081{bottom:565.409720pt;}
.ye_c01081{bottom:593.288120pt;}
.yd_c01081{bottom:621.478920pt;}
.yc_c01081{bottom:649.995320pt;}
.yb_c01081{bottom:678.502920pt;}
.ya_c01081{bottom:707.014920pt;}
.y9_c01081{bottom:735.210120pt;}
.y8_c01081{bottom:763.726520pt;}
.y7_c01081{bottom:791.917320pt;}
.y6_c01081{bottom:820.429320pt;}
.y5_c01081{bottom:905.965320pt;}
.y4_c01081{bottom:962.672520pt;}
.y3_c01081{bottom:965.840520pt;}
.y2_c01081{bottom:983.581320pt;}
.h2_c01081{height:20.559000pt;}
.h4_c01081{height:29.364844pt;}
.h7_c01081{height:29.538549pt;}
.h6_c01081{height:36.290191pt;}
.hd_c01081{height:38.174297pt;}
.hc_c01081{height:41.852250pt;}
.he_c01081{height:49.056562pt;}
.h8_c01081{height:59.841375pt;}
.hb_c01081{height:61.493438pt;}
.ha_c01081{height:63.145684pt;}
.h9_c01081{height:63.566250pt;}
.h5_c01081{height:65.984704pt;}
.hf_c01081{height:68.748281pt;}
.h10_c01081{height:73.239548pt;}
.h11_c01081{height:73.425000pt;}
.h3_c01081{height:74.966891pt;}
.h1_c01081{height:986.666667pt;}
.h0_c01081{height:1122.666667pt;}
.w1_c01081{width:689.333333pt;}
.w0_c01081{width:793.333333pt;}
.x0_c01081{left:0.000000pt;}
.x1_c01081{left:52.000000pt;}
.x56_c01081{left:71.228653pt;}
.x2_c01081{left:72.143853pt;}
.x28_c01081{left:73.318653pt;}
.x6_c01081{left:74.260253pt;}
.x40_c01081{left:101.329053pt;}
.x7_c01081{left:102.750253pt;}
.x65_c01081{left:111.286253pt;}
.x18_c01081{left:113.750253pt;}
.x6f_c01081{left:119.941053pt;}
.x48_c01081{left:121.775853pt;}
.x3c_c01081{left:122.911053pt;}
.x10_c01081{left:130.787053pt;}
.x19_c01081{left:141.558253pt;}
.x8_c01081{left:142.570253pt;}
.x53_c01081{left:150.147053pt;}
.x3d_c01081{left:151.673853pt;}
.x5d_c01081{left:160.715853pt;}
.x29_c01081{left:161.657453pt;}
.x6c_c01081{left:169.863453pt;}
.x31_c01081{left:181.162653pt;}
.x49_c01081{left:189.707453pt;}
.x38_c01081{left:191.155053pt;}
.x11_c01081{left:192.400253pt;}
.x41_c01081{left:200.179453pt;}
.x1a_c01081{left:201.583053pt;}
.x51_c01081{left:210.369853pt;}
.x70_c01081{left:219.552653pt;}
.x12_c01081{left:221.251053pt;}
.x60_c01081{left:230.007053pt;}
.x39_c01081{left:230.988253pt;}
.x66_c01081{left:239.132653pt;}
.x2d_c01081{left:250.128253pt;}
.x32_c01081{left:251.562653pt;}
.x6d_c01081{left:259.157053pt;}
.x3a_c01081{left:260.881853pt;}
.x9_c01081{left:262.008253pt;}
.x2a_c01081{left:269.585053pt;}
.x23_c01081{left:271.547453pt;}
.x42_c01081{left:279.520253pt;}
.x4a_c01081{left:280.813853pt;}
.x33_c01081{left:288.236653pt;}
.x13_c01081{left:289.825053pt;}
.xa_c01081{left:290.832653pt;}
.x34_c01081{left:299.012253pt;}
.x2e_c01081{left:300.121053pt;}
.x1b_c01081{left:301.405853pt;}
.x3e_c01081{left:309.295053pt;}
.x64_c01081{left:317.694653pt;}
.x1c_c01081{left:319.718653pt;}
.x5e_c01081{left:329.873853pt;}
.x4b_c01081{left:339.065453pt;}
.xb_c01081{left:340.689053pt;}
.x1d_c01081{left:349.374653pt;}
.x57_c01081{left:358.566253pt;}
.xc_c01081{left:359.644253pt;}
.x67_c01081{left:367.449853pt;}
.x55_c01081{left:369.399053pt;}
.x52_c01081{left:377.895453pt;}
.xd_c01081{left:388.666653pt;}
.x43_c01081{left:398.025453pt;}
.x35_c01081{left:407.036653pt;}
.x2b_c01081{left:409.302653pt;}
.x71_c01081{left:415.911453pt;}
.x61_c01081{left:417.174253pt;}
.x4c_c01081{left:420.113453pt;}
.x68_c01081{left:426.079853pt;}
.x58_c01081{left:435.900653pt;}
.x5f_c01081{left:437.229453pt;}
.x1e_c01081{left:438.567053pt;}
.x2f_c01081{left:447.433053pt;}
.x24_c01081{left:448.370253pt;}
.x1f_c01081{left:457.095453pt;}
.xe_c01081{left:458.807053pt;}
.x69_c01081{left:465.363053pt;}
.x44_c01081{left:466.595053pt;}
.x62_c01081{left:475.478653pt;}
.x3b_c01081{left:476.596253pt;}
.x14_c01081{left:477.744653pt;}
.x6e_c01081{left:484.982653pt;}
.x5a_c01081{left:486.417053pt;}
.x20_c01081{left:487.508253pt;}
.x63_c01081{left:495.894653pt;}
.x25_c01081{left:506.335853pt;}
.x5b_c01081{left:515.448253pt;}
.x21_c01081{left:517.349053pt;}
.x6a_c01081{left:524.952253pt;}
.x59_c01081{left:525.990653pt;}
.x15_c01081{left:536.445053pt;}
.x36_c01081{left:544.840253pt;}
.x4d_c01081{left:545.975453pt;}
.x45_c01081{left:553.728253pt;}
.x26_c01081{left:556.355053pt;}
.x4e_c01081{left:564.292653pt;}
.x2c_c01081{left:565.295853pt;}
.x72_c01081{left:573.101453pt;}
.x46_c01081{left:575.055053pt;}
.x16_c01081{left:576.388253pt;}
.x3_c01081{left:578.707933pt;}
.x37_c01081{left:584.823053pt;}
.x27_c01081{left:585.843853pt;}
.x4f_c01081{left:593.315053pt;}
.x17_c01081{left:595.369853pt;}
.x5c_c01081{left:602.493453pt;}
.x22_c01081{left:603.716653pt;}
.xf_c01081{left:605.177453pt;}
.x73_c01081{left:613.084253pt;}
.x54_c01081{left:614.289853pt;}
.x30_c01081{left:615.557053pt;}
.x4_c01081{left:618.782253pt;}
.x50_c01081{left:620.036253pt;}
.x5_c01081{left:621.114253pt;}
.x3f_c01081{left:624.022653pt;}
.x6b_c01081{left:631.999853pt;}
.x47_c01081{left:633.764253pt;}
}





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

.ir_c01082:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01082{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01082;src:url('chunks/assets/font_1706ff10d788c9c452b8254e.woff2')format("woff");}.ff1_c01082{font-family:ff1_c01082;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01082;src:url('chunks/assets/font_c4314ecea0447e30dd93cf04.woff2')format("woff");}.ff2_c01082{font-family:ff2_c01082;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01082;src:url('chunks/assets/font_67b28a9a8be96031c065f524.woff2')format("woff");}.ff3_c01082{font-family:ff3_c01082;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01082;src:url('chunks/assets/font_4e5dcb9187808d431db1f9fd.woff2')format("woff");}.ff4_c01082{font-family:ff4_c01082;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m34_c01082{transform:matrix(0.069767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.069767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.069767,0.000000,0.000000,0.250000,0,0);}
.m3a_c01082{transform:matrix(0.108621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108621,0.000000,0.000000,0.250000,0,0);}
.m4e_c01082{transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);}
.m8a_c01082{transform:matrix(0.140293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140293,0.000000,0.000000,0.250000,0,0);}
.mbf_c01082{transform:matrix(0.160417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160417,0.000000,0.000000,0.250000,0,0);}
.ma5_c01082{transform:matrix(0.176357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176357,0.000000,0.000000,0.250000,0,0);}
.m93_c01082{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m88_c01082{transform:matrix(0.198600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198600,0.000000,0.000000,0.250000,0,0);}
.mb7_c01082{transform:matrix(0.205237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205237,0.000000,0.000000,0.250000,0,0);}
.m7b_c01082{transform:matrix(0.218289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218289,0.000000,0.000000,0.250000,0,0);}
.m37_c01082{transform:matrix(0.223247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223247,0.000000,0.000000,0.250000,0,0);}
.m21_c01082{transform:matrix(0.227745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227745,0.000000,0.000000,0.250000,0,0);}
.m7a_c01082{transform:matrix(0.228663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228663,0.000000,0.000000,0.250000,0,0);}
.m81_c01082{transform:matrix(0.234202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234202,0.000000,0.000000,0.250000,0,0);}
.m96_c01082{transform:matrix(0.241546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241546,0.000000,0.000000,0.250000,0,0);}
.ma1_c01082{transform:matrix(0.247466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247466,0.000000,0.000000,0.250000,0,0);}
.m5_c01082{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m8d_c01082{transform:matrix(0.254042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254042,0.000000,0.000000,0.250000,0,0);}
.m35_c01082{transform:matrix(0.254740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254740,0.000000,0.000000,0.250000,0,0);}
.m42_c01082{transform:matrix(0.255411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255411,0.000000,0.000000,0.250000,0,0);}
.m9b_c01082{transform:matrix(0.259852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259852,0.000000,0.000000,0.250000,0,0);}
.m0_c01082{transform:matrix(0.261976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261976,0.000000,0.000000,0.250000,0,0);}
.m65_c01082{transform:matrix(0.262837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262837,0.000000,0.000000,0.250000,0,0);}
.m5b_c01082{transform:matrix(0.264544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264544,0.000000,0.000000,0.250000,0,0);}
.ma9_c01082{transform:matrix(0.264739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264739,0.000000,0.000000,0.250000,0,0);}
.m4f_c01082{transform:matrix(0.264891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264891,0.000000,0.000000,0.250000,0,0);}
.m31_c01082{transform:matrix(0.265614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265614,0.000000,0.000000,0.250000,0,0);}
.m29_c01082{transform:matrix(0.266686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266686,0.000000,0.000000,0.250000,0,0);}
.m74_c01082{transform:matrix(0.267450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267450,0.000000,0.000000,0.250000,0,0);}
.m1c_c01082{transform:matrix(0.267756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267756,0.000000,0.000000,0.250000,0,0);}
.m23_c01082{transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);}
.m98_c01082{transform:matrix(0.268726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268726,0.000000,0.000000,0.250000,0,0);}
.m9f_c01082{transform:matrix(0.268817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268817,0.000000,0.000000,0.250000,0,0);}
.m80_c01082{transform:matrix(0.269494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269494,0.000000,0.000000,0.250000,0,0);}
.m78_c01082{transform:matrix(0.269504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269504,0.000000,0.000000,0.250000,0,0);}
.m83_c01082{transform:matrix(0.270108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270108,0.000000,0.000000,0.250000,0,0);}
.m38_c01082{transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);}
.m8f_c01082{transform:matrix(0.271126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271126,0.000000,0.000000,0.250000,0,0);}
.m40_c01082{transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);}
.mb0_c01082{transform:matrix(0.271327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271327,0.000000,0.000000,0.250000,0,0);}
.m7_c01082{transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);}
.m10_c01082{transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);}
.m6b_c01082{transform:matrix(0.274610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274610,0.000000,0.000000,0.250000,0,0);}
.m66_c01082{transform:matrix(0.274666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274666,0.000000,0.000000,0.250000,0,0);}
.m6c_c01082{transform:matrix(0.275768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275768,0.000000,0.000000,0.250000,0,0);}
.m64_c01082{transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);}
.m30_c01082{transform:matrix(0.276797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276797,0.000000,0.000000,0.250000,0,0);}
.md_c01082{transform:matrix(0.277565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277565,0.000000,0.000000,0.250000,0,0);}
.m39_c01082{transform:matrix(0.277932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277932,0.000000,0.000000,0.250000,0,0);}
.m3e_c01082{transform:matrix(0.278463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278463,0.000000,0.000000,0.250000,0,0);}
.m15_c01082{transform:matrix(0.278892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278892,0.000000,0.000000,0.250000,0,0);}
.m5d_c01082{transform:matrix(0.279112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279112,0.000000,0.000000,0.250000,0,0);}
.m9e_c01082{transform:matrix(0.280495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280495,0.000000,0.000000,0.250000,0,0);}
.ma8_c01082{transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);}
.m8e_c01082{transform:matrix(0.283130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283130,0.000000,0.000000,0.250000,0,0);}
.m43_c01082{transform:matrix(0.283474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283474,0.000000,0.000000,0.250000,0,0);}
.m5f_c01082{transform:matrix(0.284001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284001,0.000000,0.000000,0.250000,0,0);}
.mb3_c01082{transform:matrix(0.284914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284914,0.000000,0.000000,0.250000,0,0);}
.mb9_c01082{transform:matrix(0.285120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285120,0.000000,0.000000,0.250000,0,0);}
.m67_c01082{transform:matrix(0.286039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286039,0.000000,0.000000,0.250000,0,0);}
.mb2_c01082{transform:matrix(0.286342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286342,0.000000,0.000000,0.250000,0,0);}
.m26_c01082{transform:matrix(0.286389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286389,0.000000,0.000000,0.250000,0,0);}
.m1f_c01082{transform:matrix(0.287374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287374,0.000000,0.000000,0.250000,0,0);}
.m6f_c01082{transform:matrix(0.289728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289728,0.000000,0.000000,0.250000,0,0);}
.m20_c01082{transform:matrix(0.290912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290912,0.000000,0.000000,0.250000,0,0);}
.m11_c01082{transform:matrix(0.291059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291059,0.000000,0.000000,0.250000,0,0);}
.m12_c01082{transform:matrix(0.291495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291495,0.000000,0.000000,0.250000,0,0);}
.m3d_c01082{transform:matrix(0.291864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291864,0.000000,0.000000,0.250000,0,0);}
.m4d_c01082{transform:matrix(0.291976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291976,0.000000,0.000000,0.250000,0,0);}
.m33_c01082{transform:matrix(0.292047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292047,0.000000,0.000000,0.250000,0,0);}
.m72_c01082{transform:matrix(0.292108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292108,0.000000,0.000000,0.250000,0,0);}
.m1e_c01082{transform:matrix(0.292353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292353,0.000000,0.000000,0.250000,0,0);}
.mbd_c01082{transform:matrix(0.293691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293691,0.000000,0.000000,0.250000,0,0);}
.m73_c01082{transform:matrix(0.295101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295101,0.000000,0.000000,0.250000,0,0);}
.m13_c01082{transform:matrix(0.295226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295226,0.000000,0.000000,0.250000,0,0);}
.m46_c01082{transform:matrix(0.296308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296308,0.000000,0.000000,0.250000,0,0);}
.mb8_c01082{transform:matrix(0.296675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296675,0.000000,0.000000,0.250000,0,0);}
.m51_c01082{transform:matrix(0.296995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296995,0.000000,0.000000,0.250000,0,0);}
.mb6_c01082{transform:matrix(0.297446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297446,0.000000,0.000000,0.250000,0,0);}
.m8c_c01082{transform:matrix(0.298709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298709,0.000000,0.000000,0.250000,0,0);}
.m22_c01082{transform:matrix(0.298791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298791,0.000000,0.000000,0.250000,0,0);}
.m87_c01082{transform:matrix(0.300565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300565,0.000000,0.000000,0.250000,0,0);}
.m5a_c01082{transform:matrix(0.301121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301121,0.000000,0.000000,0.250000,0,0);}
.m1a_c01082{transform:matrix(0.301618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301618,0.000000,0.000000,0.250000,0,0);}
.mc_c01082{transform:matrix(0.301654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301654,0.000000,0.000000,0.250000,0,0);}
.m2a_c01082{transform:matrix(0.302988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302988,0.000000,0.000000,0.250000,0,0);}
.m84_c01082{transform:matrix(0.303167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303167,0.000000,0.000000,0.250000,0,0);}
.m89_c01082{transform:matrix(0.304109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304109,0.000000,0.000000,0.250000,0,0);}
.mbc_c01082{transform:matrix(0.304894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304894,0.000000,0.000000,0.250000,0,0);}
.ma0_c01082{transform:matrix(0.305564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305564,0.000000,0.000000,0.250000,0,0);}
.mb_c01082{transform:matrix(0.306151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306151,0.000000,0.000000,0.250000,0,0);}
.mba_c01082{transform:matrix(0.307690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307690,0.000000,0.000000,0.250000,0,0);}
.m3c_c01082{transform:matrix(0.307798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307798,0.000000,0.000000,0.250000,0,0);}
.m2b_c01082{transform:matrix(0.308180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308180,0.000000,0.000000,0.250000,0,0);}
.maa_c01082{transform:matrix(0.308201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308201,0.000000,0.000000,0.250000,0,0);}
.m9d_c01082{transform:matrix(0.308391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308391,0.000000,0.000000,0.250000,0,0);}
.ma4_c01082{transform:matrix(0.308778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308778,0.000000,0.000000,0.250000,0,0);}
.m69_c01082{transform:matrix(0.309310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309310,0.000000,0.000000,0.250000,0,0);}
.m56_c01082{transform:matrix(0.309415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309415,0.000000,0.000000,0.250000,0,0);}
.m3_c01082{transform:matrix(0.309548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309548,0.000000,0.000000,0.250000,0,0);}
.ma7_c01082{transform:matrix(0.309970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309970,0.000000,0.000000,0.250000,0,0);}
.m6d_c01082{transform:matrix(0.310036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310036,0.000000,0.000000,0.250000,0,0);}
.m5e_c01082{transform:matrix(0.310557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310557,0.000000,0.000000,0.250000,0,0);}
.m9_c01082{transform:matrix(0.311573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311573,0.000000,0.000000,0.250000,0,0);}
.m4c_c01082{transform:matrix(0.312698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312698,0.000000,0.000000,0.250000,0,0);}
.mb1_c01082{transform:matrix(0.313357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313357,0.000000,0.000000,0.250000,0,0);}
.m79_c01082{transform:matrix(0.314071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314071,0.000000,0.000000,0.250000,0,0);}
.m47_c01082{transform:matrix(0.314137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314137,0.000000,0.000000,0.250000,0,0);}
.m2e_c01082{transform:matrix(0.314268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314268,0.000000,0.000000,0.250000,0,0);}
.m92_c01082{transform:matrix(0.314656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314656,0.000000,0.000000,0.250000,0,0);}
.mac_c01082{transform:matrix(0.314690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314690,0.000000,0.000000,0.250000,0,0);}
.mb4_c01082{transform:matrix(0.315093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315093,0.000000,0.000000,0.250000,0,0);}
.m48_c01082{transform:matrix(0.315364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315364,0.000000,0.000000,0.250000,0,0);}
.m82_c01082{transform:matrix(0.315437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315437,0.000000,0.000000,0.250000,0,0);}
.mc0_c01082{transform:matrix(0.315848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315848,0.000000,0.000000,0.250000,0,0);}
.m16_c01082{transform:matrix(0.316292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316292,0.000000,0.000000,0.250000,0,0);}
.m2_c01082{transform:matrix(0.316670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316670,0.000000,0.000000,0.250000,0,0);}
.m57_c01082{transform:matrix(0.316830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316830,0.000000,0.000000,0.250000,0,0);}
.ma2_c01082{transform:matrix(0.318120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318120,0.000000,0.000000,0.250000,0,0);}
.m25_c01082{transform:matrix(0.318157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318157,0.000000,0.000000,0.250000,0,0);}
.m75_c01082{transform:matrix(0.318814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318814,0.000000,0.000000,0.250000,0,0);}
.m17_c01082{transform:matrix(0.318839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318839,0.000000,0.000000,0.250000,0,0);}
.m36_c01082{transform:matrix(0.319228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319228,0.000000,0.000000,0.250000,0,0);}
.m6_c01082{transform:matrix(0.319296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319296,0.000000,0.000000,0.250000,0,0);}
.m61_c01082{transform:matrix(0.320237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320237,0.000000,0.000000,0.250000,0,0);}
.m32_c01082{transform:matrix(0.321361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321361,0.000000,0.000000,0.250000,0,0);}
.m24_c01082{transform:matrix(0.321476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321476,0.000000,0.000000,0.250000,0,0);}
.m77_c01082{transform:matrix(0.322159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322159,0.000000,0.000000,0.250000,0,0);}
.m28_c01082{transform:matrix(0.322592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322592,0.000000,0.000000,0.250000,0,0);}
.maf_c01082{transform:matrix(0.322907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322907,0.000000,0.000000,0.250000,0,0);}
.mbe_c01082{transform:matrix(0.323067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323067,0.000000,0.000000,0.250000,0,0);}
.m3f_c01082{transform:matrix(0.324413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324413,0.000000,0.000000,0.250000,0,0);}
.m18_c01082{transform:matrix(0.324881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324881,0.000000,0.000000,0.250000,0,0);}
.m86_c01082{transform:matrix(0.325428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325428,0.000000,0.000000,0.250000,0,0);}
.m94_c01082{transform:matrix(0.325633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325633,0.000000,0.000000,0.250000,0,0);}
.m97_c01082{transform:matrix(0.325696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325696,0.000000,0.000000,0.250000,0,0);}
.m44_c01082{transform:matrix(0.326098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326098,0.000000,0.000000,0.250000,0,0);}
.m45_c01082{transform:matrix(0.326492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326492,0.000000,0.000000,0.250000,0,0);}
.m7e_c01082{transform:matrix(0.326712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326712,0.000000,0.000000,0.250000,0,0);}
.m3b_c01082{transform:matrix(0.326868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326868,0.000000,0.000000,0.250000,0,0);}
.m9c_c01082{transform:matrix(0.327021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327021,0.000000,0.000000,0.250000,0,0);}
.m99_c01082{transform:matrix(0.329059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329059,0.000000,0.000000,0.250000,0,0);}
.mf_c01082{transform:matrix(0.330403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330403,0.000000,0.000000,0.250000,0,0);}
.m76_c01082{transform:matrix(0.330522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330522,0.000000,0.000000,0.250000,0,0);}
.m58_c01082{transform:matrix(0.331081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331081,0.000000,0.000000,0.250000,0,0);}
.mb5_c01082{transform:matrix(0.331229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331229,0.000000,0.000000,0.250000,0,0);}
.m50_c01082{transform:matrix(0.331404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331404,0.000000,0.000000,0.250000,0,0);}
.mad_c01082{transform:matrix(0.333709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333709,0.000000,0.000000,0.250000,0,0);}
.m1b_c01082{transform:matrix(0.333779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333779,0.000000,0.000000,0.250000,0,0);}
.m85_c01082{transform:matrix(0.335445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335445,0.000000,0.000000,0.250000,0,0);}
.ma6_c01082{transform:matrix(0.335583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335583,0.000000,0.000000,0.250000,0,0);}
.mab_c01082{transform:matrix(0.336676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336676,0.000000,0.000000,0.250000,0,0);}
.ma_c01082{transform:matrix(0.336688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336688,0.000000,0.000000,0.250000,0,0);}
.m59_c01082{transform:matrix(0.337107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337107,0.000000,0.000000,0.250000,0,0);}
.m63_c01082{transform:matrix(0.337498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337498,0.000000,0.000000,0.250000,0,0);}
.m4b_c01082{transform:matrix(0.339034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339034,0.000000,0.000000,0.250000,0,0);}
.m62_c01082{transform:matrix(0.339063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339063,0.000000,0.000000,0.250000,0,0);}
.mbb_c01082{transform:matrix(0.339284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339284,0.000000,0.000000,0.250000,0,0);}
.ma3_c01082{transform:matrix(0.340895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340895,0.000000,0.000000,0.250000,0,0);}
.m1_c01082{transform:matrix(0.341748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341748,0.000000,0.000000,0.250000,0,0);}
.m41_c01082{transform:matrix(0.342481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342481,0.000000,0.000000,0.250000,0,0);}
.m8_c01082{transform:matrix(0.342830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342830,0.000000,0.000000,0.250000,0,0);}
.m70_c01082{transform:matrix(0.342862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342862,0.000000,0.000000,0.250000,0,0);}
.m6a_c01082{transform:matrix(0.343172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343172,0.000000,0.000000,0.250000,0,0);}
.m7f_c01082{transform:matrix(0.343178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343178,0.000000,0.000000,0.250000,0,0);}
.m4_c01082{transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);}
.m7d_c01082{transform:matrix(0.345559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345559,0.000000,0.000000,0.250000,0,0);}
.me_c01082{transform:matrix(0.346059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346059,0.000000,0.000000,0.250000,0,0);}
.m1d_c01082{transform:matrix(0.349748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349748,0.000000,0.000000,0.250000,0,0);}
.m2d_c01082{transform:matrix(0.349880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349880,0.000000,0.000000,0.250000,0,0);}
.m91_c01082{transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);}
.mae_c01082{transform:matrix(0.352000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352000,0.000000,0.000000,0.250000,0,0);}
.m4a_c01082{transform:matrix(0.352418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352418,0.000000,0.000000,0.250000,0,0);}
.m5c_c01082{transform:matrix(0.353351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353351,0.000000,0.000000,0.250000,0,0);}
.m90_c01082{transform:matrix(0.353942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353942,0.000000,0.000000,0.250000,0,0);}
.m6e_c01082{transform:matrix(0.355252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355252,0.000000,0.000000,0.250000,0,0);}
.m2c_c01082{transform:matrix(0.355328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355328,0.000000,0.000000,0.250000,0,0);}
.m2f_c01082{transform:matrix(0.356405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356405,0.000000,0.000000,0.250000,0,0);}
.m95_c01082{transform:matrix(0.357996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357996,0.000000,0.000000,0.250000,0,0);}
.m27_c01082{transform:matrix(0.360112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360112,0.000000,0.000000,0.250000,0,0);}
.m60_c01082{transform:matrix(0.362088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362088,0.000000,0.000000,0.250000,0,0);}
.m55_c01082{transform:matrix(0.363263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363263,0.000000,0.000000,0.250000,0,0);}
.m8b_c01082{transform:matrix(0.370938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370938,0.000000,0.000000,0.250000,0,0);}
.m49_c01082{transform:matrix(0.372706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372706,0.000000,0.000000,0.250000,0,0);}
.m9a_c01082{transform:matrix(0.385745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385745,0.000000,0.000000,0.250000,0,0);}
.m7c_c01082{transform:matrix(0.386710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386710,0.000000,0.000000,0.250000,0,0);}
.m68_c01082{transform:matrix(0.387076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387076,0.000000,0.000000,0.250000,0,0);}
.m14_c01082{transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);}
.m54_c01082{transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);}
.m19_c01082{transform:matrix(0.405805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405805,0.000000,0.000000,0.250000,0,0);}
.m53_c01082{transform:matrix(0.425908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425908,0.000000,0.000000,0.250000,0,0);}
.m52_c01082{transform:matrix(0.428563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428563,0.000000,0.000000,0.250000,0,0);}
.m71_c01082{transform:matrix(0.446570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446570,0.000000,0.000000,0.250000,0,0);}
.v0_c01082{vertical-align:0.000000px;}
.ls5_c01082{letter-spacing:-2.647267px;}
.lsc_c01082{letter-spacing:-2.110250px;}
.ls4_c01082{letter-spacing:0.000000px;}
.lsa_c01082{letter-spacing:1.081598px;}
.ls0_c01082{letter-spacing:2.163195px;}
.ls9_c01082{letter-spacing:2.692810px;}
.ls3_c01082{letter-spacing:2.813667px;}
.lse_c01082{letter-spacing:3.085957px;}
.ls10_c01082{letter-spacing:3.247200px;}
.lsf_c01082{letter-spacing:3.514500px;}
.ls7_c01082{letter-spacing:3.623400px;}
.lsb_c01082{letter-spacing:3.668356px;}
.ls2_c01082{letter-spacing:3.781810px;}
.ls6_c01082{letter-spacing:4.059000px;}
.ls1_c01082{letter-spacing:4.296610px;}
.lsd_c01082{letter-spacing:31.363200px;}
.ls12_c01082{letter-spacing:52.747398px;}
.ls11_c01082{letter-spacing:57.024198px;}
.ls8_c01082{letter-spacing:61.300998px;}
.sc__c01082{text-shadow:none;}
.sc0_c01082{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01082{-webkit-text-stroke:0px transparent;}
.sc0_c01082{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01082{word-spacing:-21.072245px;}
.ws1_c01082{word-spacing:-18.909050px;}
.ws0_c01082{word-spacing:-16.798800px;}
.ws3_c01082{word-spacing:0.000000px;}
._0_c01082{margin-left:-7.219993px;}
._1_c01082{width:4.130562px;}
._5_c01082{width:11.194227px;}
._3_c01082{width:27.304937px;}
._2_c01082{width:35.895679px;}
._4_c01082{width:36.910439px;}
.fc0_c01082{color:transparent;}
.fs7_c01082{font-size:23.166000px;}
.fsf_c01082{font-size:27.720000px;}
.fs8_c01082{font-size:31.363200px;}
.fse_c01082{font-size:52.747398px;}
.fs6_c01082{font-size:53.856198px;}
.fsb_c01082{font-size:57.024198px;}
.fs5_c01082{font-size:61.300998px;}
.fsa_c01082{font-size:64.944000px;}
.fsd_c01082{font-size:66.330000px;}
.fs9_c01082{font-size:70.290000px;}
.fs4_c01082{font-size:72.468000px;}
.fsc_c01082{font-size:72.864000px;}
.fs1_c01082{font-size:75.636198px;}
.fs2_c01082{font-size:81.180000px;}
.fs3_c01082{font-size:83.952198px;}
.fs0_c01082{font-size:85.932198px;}
.y0_c01082{bottom:0.000000px;}
.y1d_c01082{bottom:58.712985px;}
.y1_c01082{bottom:76.500000px;}
.y1c_c01082{bottom:117.523935px;}
.y1b_c01082{bottom:182.383785px;}
.y1a_c01082{bottom:214.108335px;}
.y19_c01082{bottom:246.179385px;}
.y18_c01082{bottom:277.542585px;}
.y17_c01082{bottom:309.623535px;}
.y16_c01082{bottom:341.699535px;}
.y15_c01082{bottom:373.770585px;}
.y14_c01082{bottom:406.207935px;}
.y13_c01082{bottom:438.635385px;}
.y12_c01082{bottom:470.716335px;}
.y11_c01082{bottom:503.143785px;}
.y10_c01082{bottom:535.581135px;}
.yf_c01082{bottom:566.587935px;}
.yc_c01082{bottom:630.383535px;}
.ye_c01082{bottom:631.809135px;}
.yd_c01082{bottom:642.501135px;}
.yb_c01082{bottom:662.815935px;}
.ya_c01082{bottom:694.886985px;}
.y9_c01082{bottom:726.611535px;}
.y8_c01082{bottom:759.038985px;}
.y7_c01082{bottom:791.471385px;}
.y6_c01082{bottom:823.903785px;}
.y5_c01082{bottom:855.623385px;}
.y4_c01082{bottom:888.055785px;}
.y3_c01082{bottom:920.136735px;}
.y2_c01082{bottom:1075.878585px;}
.ha_c01082{height:20.887891px;}
.h9_c01082{height:24.161414px;}
.h11_c01082{height:28.911094px;}
.h10_c01082{height:35.129767px;}
.hd_c01082{height:37.978116px;}
.h7_c01082{height:40.826465px;}
.h8_c01082{height:52.856913px;}
.hc_c01082{height:67.734563px;}
.hb_c01082{height:68.985791px;}
.hf_c01082{height:69.180117px;}
.h6_c01082{height:71.123379px;}
.he_c01082{height:71.512031px;}
.h3_c01082{height:74.232792px;}
.h4_c01082{height:79.673730px;}
.h5_c01082{height:82.353499px;}
.h2_c01082{height:84.337753px;}
.h1_c01082{height:1110.000000px;}
.h0_c01082{height:1263.000000px;}
.w1_c01082{width:775.500000px;}
.w0_c01082{width:892.500000px;}
.x0_c01082{left:0.000000px;}
.x1_c01082{left:58.500000px;}
.x30_c01082{left:79.058085px;}
.x23_c01082{left:80.206485px;}
.x3_c01082{left:81.290535px;}
.x65_c01082{left:90.111435px;}
.x5c_c01082{left:101.729085px;}
.x58_c01082{left:111.500385px;}
.x5d_c01082{left:113.430885px;}
.x38_c01082{left:124.489185px;}
.x78_c01082{left:132.795285px;}
.x45_c01082{left:134.527785px;}
.x4d_c01082{left:136.260285px;}
.x5e_c01082{left:145.912785px;}
.x71_c01082{left:156.179085px;}
.xd_c01082{left:157.471035px;}
.x79_c01082{left:166.385985px;}
.x4e_c01082{left:168.306585px;}
.x4_c01082{left:169.657935px;}
.x46_c01082{left:178.968885px;}
.x29_c01082{left:179.993535px;}
.x31_c01082{left:181.033035px;}
.x53_c01082{left:189.903435px;}
.x1a_c01082{left:200.946885px;}
.x3e_c01082{left:202.223985px;}
.x68_c01082{left:211.297335px;}
.x43_c01082{left:212.891235px;}
.x6e_c01082{left:221.979435px;}
.x32_c01082{left:223.761435px;}
.x5_c01082{left:225.330585px;}
.xe_c01082{left:226.379985px;}
.x77_c01082{left:234.562335px;}
.x24_c01082{left:236.007735px;}
.x11_c01082{left:237.027435px;}
.x4f_c01082{left:245.927535px;}
.x47_c01082{left:247.001685px;}
.x69_c01082{left:256.619535px;}
.x2a_c01082{left:257.792685px;}
.x48_c01082{left:267.583785px;}
.x5f_c01082{left:268.791585px;}
.x12_c01082{left:269.890485px;}
.x72_c01082{left:277.572885px;}
.x54_c01082{left:279.562785px;}
.x75_c01082{left:289.873635px;}
.x49_c01082{left:291.680385px;}
.x73_c01082{left:300.021135px;}
.x1b_c01082{left:302.699085px;}
.x39_c01082{left:311.831835px;}
.x3f_c01082{left:313.287135px;}
.x50_c01082{left:323.192085px;}
.x60_c01082{left:324.399885px;}
.x6_c01082{left:325.805685px;}
.x6a_c01082{left:334.666185px;}
.x25_c01082{left:335.873985px;}
.x3a_c01082{left:345.288885px;}
.x6b_c01082{left:346.768935px;}
.x59_c01082{left:355.995735px;}
.x7_c01082{left:357.767835px;}
.x26_c01082{left:368.083635px;}
.x2b_c01082{left:369.731985px;}
.x13_c01082{left:379.290435px;}
.x6c_c01082{left:389.046885px;}
.x5a_c01082{left:390.269535px;}
.x2c_c01082{left:392.348535px;}
.x4a_c01082{left:401.382285px;}
.x1c_c01082{left:402.515835px;}
.x33_c01082{left:405.218535px;}
.x14_c01082{left:413.004885px;}
.x51_c01082{left:423.870135px;}
.x8_c01082{left:424.964085px;}
.x74_c01082{left:433.374135px;}
.x27_c01082{left:434.398785px;}
.xf_c01082{left:444.353235px;}
.x1d_c01082{left:447.050985px;}
.x15_c01082{left:458.079585px;}
.x66_c01082{left:467.301435px;}
.x40_c01082{left:468.321135px;}
.x55_c01082{left:479.151735px;}
.x34_c01082{left:480.928785px;}
.x3b_c01082{left:489.635835px;}
.x76_c01082{left:499.253685px;}
.x1e_c01082{left:501.951435px;}
.x16_c01082{left:502.966185px;}
.x61_c01082{left:511.965285px;}
.x9_c01082{left:513.356235px;}
.x2d_c01082{left:523.152285px;}
.x56_c01082{left:524.642235px;}
.x1f_c01082{left:533.512635px;}
.x2e_c01082{left:535.230285px;}
.xa_c01082{left:545.763885px;}
.x41_c01082{left:555.218385px;}
.x62_c01082{left:556.520235px;}
.x63_c01082{left:566.266785px;}
.x20_c01082{left:568.608135px;}
.x7a_c01082{left:575.577735px;}
.x17_c01082{left:579.092235px;}
.x64_c01082{left:583.468035px;}
.x52_c01082{left:588.012135px;}
.xb_c01082{left:590.209935px;}
.x6f_c01082{left:599.060535px;}
.x2f_c01082{left:601.669185px;}
.x35_c01082{left:612.079035px;}
.x57_c01082{left:621.142485px;}
.x21_c01082{left:622.231485px;}
.x22_c01082{left:632.948235px;}
.x67_c01082{left:642.887835px;}
.x18_c01082{left:644.798535px;}
.x6d_c01082{left:653.277885px;}
.x28_c01082{left:655.000485px;}
.x36_c01082{left:656.143935px;}
.x10_c01082{left:657.896235px;}
.x3c_c01082{left:666.623085px;}
.x4b_c01082{left:677.230935px;}
.x19_c01082{left:678.696135px;}
.x70_c01082{left:687.081435px;}
.x5b_c01082{left:688.615935px;}
.x7b_c01082{left:694.145085px;}
.x42_c01082{left:698.936685px;}
.xc_c01082{left:700.634535px;}
.x2_c01082{left:701.822535px;}
.x44_c01082{left:703.718385px;}
.x37_c01082{left:710.163285px;}
.x3d_c01082{left:712.227435px;}
.x4c_c01082{left:722.884785px;}
@media print{
.v0_c01082{vertical-align:0.000000pt;}
.ls5_c01082{letter-spacing:-2.353126pt;}
.lsc_c01082{letter-spacing:-1.875778pt;}
.ls4_c01082{letter-spacing:0.000000pt;}
.lsa_c01082{letter-spacing:0.961420pt;}
.ls0_c01082{letter-spacing:1.922840pt;}
.ls9_c01082{letter-spacing:2.393609pt;}
.ls3_c01082{letter-spacing:2.501037pt;}
.lse_c01082{letter-spacing:2.743073pt;}
.ls10_c01082{letter-spacing:2.886400pt;}
.lsf_c01082{letter-spacing:3.124000pt;}
.ls7_c01082{letter-spacing:3.220800pt;}
.lsb_c01082{letter-spacing:3.260761pt;}
.ls2_c01082{letter-spacing:3.361609pt;}
.ls6_c01082{letter-spacing:3.608000pt;}
.ls1_c01082{letter-spacing:3.819209pt;}
.lsd_c01082{letter-spacing:27.878400pt;}
.ls12_c01082{letter-spacing:46.886576pt;}
.ls11_c01082{letter-spacing:50.688176pt;}
.ls8_c01082{letter-spacing:54.489776pt;}
.ws2_c01082{word-spacing:-18.730884pt;}
.ws1_c01082{word-spacing:-16.808044pt;}
.ws0_c01082{word-spacing:-14.932266pt;}
.ws3_c01082{word-spacing:0.000000pt;}
._0_c01082{margin-left:-6.417772pt;}
._1_c01082{width:3.671610pt;}
._5_c01082{width:9.950424pt;}
._3_c01082{width:24.271055pt;}
._2_c01082{width:31.907270pt;}
._4_c01082{width:32.809280pt;}
.fs7_c01082{font-size:20.592000pt;}
.fsf_c01082{font-size:24.640000pt;}
.fs8_c01082{font-size:27.878400pt;}
.fse_c01082{font-size:46.886576pt;}
.fs6_c01082{font-size:47.872176pt;}
.fsb_c01082{font-size:50.688176pt;}
.fs5_c01082{font-size:54.489776pt;}
.fsa_c01082{font-size:57.728000pt;}
.fsd_c01082{font-size:58.960000pt;}
.fs9_c01082{font-size:62.480000pt;}
.fs4_c01082{font-size:64.416000pt;}
.fsc_c01082{font-size:64.768000pt;}
.fs1_c01082{font-size:67.232176pt;}
.fs2_c01082{font-size:72.160000pt;}
.fs3_c01082{font-size:74.624176pt;}
.fs0_c01082{font-size:76.384176pt;}
.y0_c01082{bottom:0.000000pt;}
.y1d_c01082{bottom:52.189320pt;}
.y1_c01082{bottom:68.000000pt;}
.y1c_c01082{bottom:104.465720pt;}
.y1b_c01082{bottom:162.118920pt;}
.y1a_c01082{bottom:190.318520pt;}
.y19_c01082{bottom:218.826120pt;}
.y18_c01082{bottom:246.704520pt;}
.y17_c01082{bottom:275.220920pt;}
.y16_c01082{bottom:303.732920pt;}
.y15_c01082{bottom:332.240520pt;}
.y14_c01082{bottom:361.073720pt;}
.y13_c01082{bottom:389.898120pt;}
.y12_c01082{bottom:418.414520pt;}
.y11_c01082{bottom:447.238920pt;}
.y10_c01082{bottom:476.072120pt;}
.yf_c01082{bottom:503.633720pt;}
.yc_c01082{bottom:560.340920pt;}
.ye_c01082{bottom:561.608120pt;}
.yd_c01082{bottom:571.112120pt;}
.yb_c01082{bottom:589.169720pt;}
.ya_c01082{bottom:617.677320pt;}
.y9_c01082{bottom:645.876920pt;}
.y8_c01082{bottom:674.701320pt;}
.y7_c01082{bottom:703.530120pt;}
.y6_c01082{bottom:732.358920pt;}
.y5_c01082{bottom:760.554120pt;}
.y4_c01082{bottom:789.382920pt;}
.y3_c01082{bottom:817.899320pt;}
.y2_c01082{bottom:956.336520pt;}
.ha_c01082{height:18.567014pt;}
.h9_c01082{height:21.476813pt;}
.h11_c01082{height:25.698750pt;}
.h10_c01082{height:31.226460pt;}
.hd_c01082{height:33.758325pt;}
.h7_c01082{height:36.290191pt;}
.h8_c01082{height:46.983923pt;}
.hc_c01082{height:60.208500pt;}
.hb_c01082{height:61.320703pt;}
.hf_c01082{height:61.493438pt;}
.h6_c01082{height:63.220781pt;}
.he_c01082{height:63.566250pt;}
.h3_c01082{height:65.984704pt;}
.h4_c01082{height:70.821094pt;}
.h5_c01082{height:73.203110pt;}
.h2_c01082{height:74.966891pt;}
.h1_c01082{height:986.666667pt;}
.h0_c01082{height:1122.666667pt;}
.w1_c01082{width:689.333333pt;}
.w0_c01082{width:793.333333pt;}
.x0_c01082{left:0.000000pt;}
.x1_c01082{left:52.000000pt;}
.x30_c01082{left:70.273853pt;}
.x23_c01082{left:71.294653pt;}
.x3_c01082{left:72.258253pt;}
.x65_c01082{left:80.099053pt;}
.x5c_c01082{left:90.425853pt;}
.x58_c01082{left:99.111453pt;}
.x5d_c01082{left:100.827453pt;}
.x38_c01082{left:110.657053pt;}
.x78_c01082{left:118.040253pt;}
.x45_c01082{left:119.580253pt;}
.x4d_c01082{left:121.120253pt;}
.x5e_c01082{left:129.700253pt;}
.x71_c01082{left:138.825853pt;}
.xd_c01082{left:139.974253pt;}
.x79_c01082{left:147.898653pt;}
.x4e_c01082{left:149.605853pt;}
.x4_c01082{left:150.807053pt;}
.x46_c01082{left:159.083453pt;}
.x29_c01082{left:159.994253pt;}
.x31_c01082{left:160.918253pt;}
.x53_c01082{left:168.803053pt;}
.x1a_c01082{left:178.619453pt;}
.x3e_c01082{left:179.754653pt;}
.x68_c01082{left:187.819853pt;}
.x43_c01082{left:189.236653pt;}
.x6e_c01082{left:197.315053pt;}
.x32_c01082{left:198.899053pt;}
.x5_c01082{left:200.293853pt;}
.xe_c01082{left:201.226653pt;}
.x77_c01082{left:208.499853pt;}
.x24_c01082{left:209.784653pt;}
.x11_c01082{left:210.691053pt;}
.x4f_c01082{left:218.602253pt;}
.x47_c01082{left:219.557053pt;}
.x69_c01082{left:228.106253pt;}
.x2a_c01082{left:229.149053pt;}
.x48_c01082{left:237.852253pt;}
.x5f_c01082{left:238.925853pt;}
.x12_c01082{left:239.902653pt;}
.x72_c01082{left:246.731453pt;}
.x54_c01082{left:248.500253pt;}
.x75_c01082{left:257.665453pt;}
.x49_c01082{left:259.271453pt;}
.x73_c01082{left:266.685453pt;}
.x1b_c01082{left:269.065853pt;}
.x39_c01082{left:277.183853pt;}
.x3f_c01082{left:278.477453pt;}
.x50_c01082{left:287.281853pt;}
.x60_c01082{left:288.355453pt;}
.x6_c01082{left:289.605053pt;}
.x6a_c01082{left:297.481053pt;}
.x25_c01082{left:298.554653pt;}
.x3a_c01082{left:306.923453pt;}
.x6b_c01082{left:308.239053pt;}
.x59_c01082{left:316.440653pt;}
.x7_c01082{left:318.015853pt;}
.x26_c01082{left:327.185453pt;}
.x2b_c01082{left:328.650653pt;}
.x13_c01082{left:337.147053pt;}
.x6c_c01082{left:345.819453pt;}
.x5a_c01082{left:346.906253pt;}
.x2c_c01082{left:348.754253pt;}
.x4a_c01082{left:356.784253pt;}
.x1c_c01082{left:357.791853pt;}
.x33_c01082{left:360.194253pt;}
.x14_c01082{left:367.115453pt;}
.x51_c01082{left:376.773453pt;}
.x8_c01082{left:377.745853pt;}
.x74_c01082{left:385.221453pt;}
.x27_c01082{left:386.132253pt;}
.xf_c01082{left:394.980653pt;}
.x1d_c01082{left:397.378653pt;}
.x15_c01082{left:407.181853pt;}
.x66_c01082{left:415.379053pt;}
.x40_c01082{left:416.285453pt;}
.x55_c01082{left:425.912653pt;}
.x34_c01082{left:427.492253pt;}
.x3b_c01082{left:435.231853pt;}
.x76_c01082{left:443.781053pt;}
.x1e_c01082{left:446.179053pt;}
.x16_c01082{left:447.081053pt;}
.x61_c01082{left:455.080253pt;}
.x9_c01082{left:456.316653pt;}
.x2d_c01082{left:465.024253pt;}
.x56_c01082{left:466.348653pt;}
.x1f_c01082{left:474.233453pt;}
.x2e_c01082{left:475.760253pt;}
.xa_c01082{left:485.123453pt;}
.x41_c01082{left:493.527453pt;}
.x62_c01082{left:494.684653pt;}
.x63_c01082{left:503.348253pt;}
.x20_c01082{left:505.429453pt;}
.x7a_c01082{left:511.624653pt;}
.x17_c01082{left:514.748653pt;}
.x64_c01082{left:518.638253pt;}
.x52_c01082{left:522.677453pt;}
.xb_c01082{left:524.631053pt;}
.x6f_c01082{left:532.498253pt;}
.x2f_c01082{left:534.817053pt;}
.x35_c01082{left:544.070253pt;}
.x57_c01082{left:552.126653pt;}
.x21_c01082{left:553.094653pt;}
.x22_c01082{left:562.620653pt;}
.x67_c01082{left:571.455853pt;}
.x18_c01082{left:573.154253pt;}
.x6d_c01082{left:580.691453pt;}
.x28_c01082{left:582.222653pt;}
.x36_c01082{left:583.239053pt;}
.x10_c01082{left:584.796653pt;}
.x3c_c01082{left:592.553853pt;}
.x4b_c01082{left:601.983053pt;}
.x19_c01082{left:603.285453pt;}
.x70_c01082{left:610.739053pt;}
.x5b_c01082{left:612.103053pt;}
.x7b_c01082{left:617.017853pt;}
.x42_c01082{left:621.277053pt;}
.xc_c01082{left:622.786253pt;}
.x2_c01082{left:623.842253pt;}
.x44_c01082{left:625.527453pt;}
.x37_c01082{left:631.256253pt;}
.x3d_c01082{left:633.091053pt;}
.x4c_c01082{left:642.564253pt;}
}





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

.ir_c01083:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01083{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01083;src:url('chunks/assets/font_3bc704c5635c05da41f76075.woff2')format("woff");}.ff1_c01083{font-family:ff1_c01083;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01083;src:url('chunks/assets/font_070b319d3d6bcd5a19c01963.woff2')format("woff");}.ff2_c01083{font-family:ff2_c01083;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01083;src:url('chunks/assets/font_3f135f48f580e936e0295160.woff2')format("woff");}.ff3_c01083{font-family:ff3_c01083;line-height:0.666000;font-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_c01083{transform:matrix(0.060976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060976,0.000000,0.000000,0.250000,0,0);}
.m41_c01083{transform:matrix(0.062501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062501,0.000000,0.000000,0.250000,0,0);}
.m48_c01083{transform:matrix(0.123780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123780,0.000000,0.000000,0.250000,0,0);}
.m3f_c01083{transform:matrix(0.144887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144887,0.000000,0.000000,0.250000,0,0);}
.m42_c01083{transform:matrix(0.147018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147018,0.000000,0.000000,0.250000,0,0);}
.m40_c01083{transform:matrix(0.159199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159199,0.000000,0.000000,0.250000,0,0);}
.m5f_c01083{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);}
.m46_c01083{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01083{transform:matrix(0.217730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217730,0.000000,0.000000,0.250000,0,0);}
.m73_c01083{transform:matrix(0.223569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223569,0.000000,0.000000,0.250000,0,0);}
.m53_c01083{transform:matrix(0.237365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237365,0.000000,0.000000,0.250000,0,0);}
.m49_c01083{transform:matrix(0.241323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241323,0.000000,0.000000,0.250000,0,0);}
.m1_c01083{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01083{transform:matrix(0.250724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250724,0.000000,0.000000,0.250000,0,0);}
.m3c_c01083{transform:matrix(0.252307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252307,0.000000,0.000000,0.250000,0,0);}
.m4e_c01083{transform:matrix(0.254323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254323,0.000000,0.000000,0.250000,0,0);}
.m61_c01083{transform:matrix(0.256998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256998,0.000000,0.000000,0.250000,0,0);}
.m43_c01083{transform:matrix(0.265010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265010,0.000000,0.000000,0.250000,0,0);}
.m58_c01083{transform:matrix(0.267450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267450,0.000000,0.000000,0.250000,0,0);}
.mb_c01083{transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);}
.m45_c01083{transform:matrix(0.269510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269510,0.000000,0.000000,0.250000,0,0);}
.m4c_c01083{transform:matrix(0.270108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270108,0.000000,0.000000,0.250000,0,0);}
.m6d_c01083{transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);}
.m12_c01083{transform:matrix(0.272274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272274,0.000000,0.000000,0.250000,0,0);}
.m51_c01083{transform:matrix(0.272840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272840,0.000000,0.000000,0.250000,0,0);}
.m7_c01083{transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);}
.m24_c01083{transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);}
.m23_c01083{transform:matrix(0.276112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276112,0.000000,0.000000,0.250000,0,0);}
.m5d_c01083{transform:matrix(0.278463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278463,0.000000,0.000000,0.250000,0,0);}
.m3a_c01083{transform:matrix(0.278871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278871,0.000000,0.000000,0.250000,0,0);}
.m0_c01083{transform:matrix(0.279395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279395,0.000000,0.000000,0.250000,0,0);}
.m57_c01083{transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);}
.m35_c01083{transform:matrix(0.281129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281129,0.000000,0.000000,0.250000,0,0);}
.me_c01083{transform:matrix(0.281222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281222,0.000000,0.000000,0.250000,0,0);}
.m39_c01083{transform:matrix(0.281506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281506,0.000000,0.000000,0.250000,0,0);}
.m1b_c01083{transform:matrix(0.283625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283625,0.000000,0.000000,0.250000,0,0);}
.m17_c01083{transform:matrix(0.285312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285312,0.000000,0.000000,0.250000,0,0);}
.ma_c01083{transform:matrix(0.285436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285436,0.000000,0.000000,0.250000,0,0);}
.m3b_c01083{transform:matrix(0.285652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285652,0.000000,0.000000,0.250000,0,0);}
.m22_c01083{transform:matrix(0.285665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285665,0.000000,0.000000,0.250000,0,0);}
.m65_c01083{transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);}
.mf_c01083{transform:matrix(0.287516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287516,0.000000,0.000000,0.250000,0,0);}
.m14_c01083{transform:matrix(0.288489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288489,0.000000,0.000000,0.250000,0,0);}
.m29_c01083{transform:matrix(0.288629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288629,0.000000,0.000000,0.250000,0,0);}
.m67_c01083{transform:matrix(0.288888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288888,0.000000,0.000000,0.250000,0,0);}
.m20_c01083{transform:matrix(0.289192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289192,0.000000,0.000000,0.250000,0,0);}
.m2b_c01083{transform:matrix(0.291209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291209,0.000000,0.000000,0.250000,0,0);}
.m5a_c01083{transform:matrix(0.291495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291495,0.000000,0.000000,0.250000,0,0);}
.m4f_c01083{transform:matrix(0.292090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292090,0.000000,0.000000,0.250000,0,0);}
.m33_c01083{transform:matrix(0.292383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292383,0.000000,0.000000,0.250000,0,0);}
.m2_c01083{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m6b_c01083{transform:matrix(0.295033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295033,0.000000,0.000000,0.250000,0,0);}
.m3d_c01083{transform:matrix(0.296995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296995,0.000000,0.000000,0.250000,0,0);}
.m4b_c01083{transform:matrix(0.297812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297812,0.000000,0.000000,0.250000,0,0);}
.m31_c01083{transform:matrix(0.298333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298333,0.000000,0.000000,0.250000,0,0);}
.md_c01083{transform:matrix(0.300129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300129,0.000000,0.000000,0.250000,0,0);}
.m71_c01083{transform:matrix(0.300592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300592,0.000000,0.000000,0.250000,0,0);}
.m18_c01083{transform:matrix(0.300870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300870,0.000000,0.000000,0.250000,0,0);}
.m10_c01083{transform:matrix(0.301240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301240,0.000000,0.000000,0.250000,0,0);}
.mc_c01083{transform:matrix(0.302701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302701,0.000000,0.000000,0.250000,0,0);}
.m69_c01083{transform:matrix(0.303180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303180,0.000000,0.000000,0.250000,0,0);}
.m37_c01083{transform:matrix(0.304814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304814,0.000000,0.000000,0.250000,0,0);}
.m68_c01083{transform:matrix(0.305166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305166,0.000000,0.000000,0.250000,0,0);}
.m30_c01083{transform:matrix(0.305718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305718,0.000000,0.000000,0.250000,0,0);}
.m1a_c01083{transform:matrix(0.306031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306031,0.000000,0.000000,0.250000,0,0);}
.m2e_c01083{transform:matrix(0.306067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306067,0.000000,0.000000,0.250000,0,0);}
.m50_c01083{transform:matrix(0.306463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306463,0.000000,0.000000,0.250000,0,0);}
.m2d_c01083{transform:matrix(0.306819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306819,0.000000,0.000000,0.250000,0,0);}
.m34_c01083{transform:matrix(0.307690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307690,0.000000,0.000000,0.250000,0,0);}
.m4_c01083{transform:matrix(0.308279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308279,0.000000,0.000000,0.250000,0,0);}
.m72_c01083{transform:matrix(0.308542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308542,0.000000,0.000000,0.250000,0,0);}
.m1d_c01083{transform:matrix(0.310775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310775,0.000000,0.000000,0.250000,0,0);}
.m11_c01083{transform:matrix(0.310817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310817,0.000000,0.000000,0.250000,0,0);}
.m36_c01083{transform:matrix(0.311866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311866,0.000000,0.000000,0.250000,0,0);}
.m32_c01083{transform:matrix(0.312004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312004,0.000000,0.000000,0.250000,0,0);}
.m3_c01083{transform:matrix(0.314137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314137,0.000000,0.000000,0.250000,0,0);}
.m9_c01083{transform:matrix(0.315530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315530,0.000000,0.000000,0.250000,0,0);}
.m55_c01083{transform:matrix(0.316468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316468,0.000000,0.000000,0.250000,0,0);}
.m60_c01083{transform:matrix(0.317200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317200,0.000000,0.000000,0.250000,0,0);}
.m1c_c01083{transform:matrix(0.319176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319176,0.000000,0.000000,0.250000,0,0);}
.m74_c01083{transform:matrix(0.319372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319372,0.000000,0.000000,0.250000,0,0);}
.m4a_c01083{transform:matrix(0.321291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321291,0.000000,0.000000,0.250000,0,0);}
.m21_c01083{transform:matrix(0.321690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321690,0.000000,0.000000,0.250000,0,0);}
.m3e_c01083{transform:matrix(0.321758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321758,0.000000,0.000000,0.250000,0,0);}
.m66_c01083{transform:matrix(0.322719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322719,0.000000,0.000000,0.250000,0,0);}
.m56_c01083{transform:matrix(0.323111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323111,0.000000,0.000000,0.250000,0,0);}
.m5b_c01083{transform:matrix(0.323615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323615,0.000000,0.000000,0.250000,0,0);}
.m44_c01083{transform:matrix(0.324200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324200,0.000000,0.000000,0.250000,0,0);}
.m6e_c01083{transform:matrix(0.324782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324782,0.000000,0.000000,0.250000,0,0);}
.m15_c01083{transform:matrix(0.325364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325364,0.000000,0.000000,0.250000,0,0);}
.m6_c01083{transform:matrix(0.328250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328250,0.000000,0.000000,0.250000,0,0);}
.m54_c01083{transform:matrix(0.329073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329073,0.000000,0.000000,0.250000,0,0);}
.m6c_c01083{transform:matrix(0.330442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330442,0.000000,0.000000,0.250000,0,0);}
.m64_c01083{transform:matrix(0.331982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331982,0.000000,0.000000,0.250000,0,0);}
.m16_c01083{transform:matrix(0.333142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333142,0.000000,0.000000,0.250000,0,0);}
.m63_c01083{transform:matrix(0.336847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336847,0.000000,0.000000,0.250000,0,0);}
.m52_c01083{transform:matrix(0.337803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337803,0.000000,0.000000,0.250000,0,0);}
.m5e_c01083{transform:matrix(0.340044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340044,0.000000,0.000000,0.250000,0,0);}
.m1e_c01083{transform:matrix(0.341649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341649,0.000000,0.000000,0.250000,0,0);}
.m28_c01083{transform:matrix(0.341703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341703,0.000000,0.000000,0.250000,0,0);}
.m19_c01083{transform:matrix(0.344589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344589,0.000000,0.000000,0.250000,0,0);}
.m5_c01083{transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);}
.m5c_c01083{transform:matrix(0.346046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346046,0.000000,0.000000,0.250000,0,0);}
.m8_c01083{transform:matrix(0.346597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346597,0.000000,0.000000,0.250000,0,0);}
.m70_c01083{transform:matrix(0.350364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350364,0.000000,0.000000,0.250000,0,0);}
.m13_c01083{transform:matrix(0.351305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351305,0.000000,0.000000,0.250000,0,0);}
.m6f_c01083{transform:matrix(0.351776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351776,0.000000,0.000000,0.250000,0,0);}
.m26_c01083{transform:matrix(0.355461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355461,0.000000,0.000000,0.250000,0,0);}
.m2c_c01083{transform:matrix(0.357996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357996,0.000000,0.000000,0.250000,0,0);}
.m62_c01083{transform:matrix(0.359199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359199,0.000000,0.000000,0.250000,0,0);}
.m4d_c01083{transform:matrix(0.364330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364330,0.000000,0.000000,0.250000,0,0);}
.m59_c01083{transform:matrix(0.370445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370445,0.000000,0.000000,0.250000,0,0);}
.m27_c01083{transform:matrix(0.376749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376749,0.000000,0.000000,0.250000,0,0);}
.m38_c01083{transform:matrix(0.390716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390716,0.000000,0.000000,0.250000,0,0);}
.m25_c01083{transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);}
.m1f_c01083{transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);}
.m6a_c01083{transform:matrix(0.405805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405805,0.000000,0.000000,0.250000,0,0);}
.v1_c01083{vertical-align:-19.938600px;}
.v0_c01083{vertical-align:0.000000px;}
.lsa_c01083{letter-spacing:-2.799727px;}
.ls5_c01083{letter-spacing:-2.647267px;}
.lsd_c01083{letter-spacing:-1.692033px;}
.ls2_c01083{letter-spacing:0.000000px;}
.ls0_c01083{letter-spacing:0.536978px;}
.ls10_c01083{letter-spacing:1.088290px;}
.ls8_c01083{letter-spacing:1.369015px;}
.ls4_c01083{letter-spacing:2.571631px;}
.ls12_c01083{letter-spacing:3.217500px;}
.ls11_c01083{letter-spacing:3.275047px;}
.ls6_c01083{letter-spacing:3.356110px;}
.ls7_c01083{letter-spacing:3.425400px;}
.ls3_c01083{letter-spacing:3.781810px;}
.lsb_c01083{letter-spacing:3.880810px;}
.lsf_c01083{letter-spacing:3.920400px;}
.ls1_c01083{letter-spacing:4.009500px;}
.lse_c01083{letter-spacing:51.321798px;}
.lsc_c01083{letter-spacing:58.449798px;}
.ls9_c01083{letter-spacing:62.726400px;}
.sc__c01083{text-shadow:none;}
.sc0_c01083{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01083{-webkit-text-stroke:0px transparent;}
.sc0_c01083{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01083{word-spacing:-17.317527px;}
.ws1_c01083{word-spacing:0.000000px;}
._1_c01083{margin-left:-6.310152px;}
._0_c01083{margin-left:-1.522620px;}
._2_c01083{width:7.714971px;}
.fc0_c01083{color:transparent;}
.fsf_c01083{font-size:22.176000px;}
.fs10_c01083{font-size:28.314000px;}
.fs2_c01083{font-size:37.818000px;}
.fs4_c01083{font-size:42.372000px;}
.fsc_c01083{font-size:51.321798px;}
.fsb_c01083{font-size:58.449798px;}
.fs8_c01083{font-size:62.726400px;}
.fse_c01083{font-size:64.350000px;}
.fs5_c01083{font-size:67.122198px;}
.fs7_c01083{font-size:68.508000px;}
.fs6_c01083{font-size:72.072198px;}
.fs3_c01083{font-size:74.844000px;}
.fs1_c01083{font-size:75.636198px;}
.fsa_c01083{font-size:77.616198px;}
.fsd_c01083{font-size:78.408000px;}
.fs9_c01083{font-size:79.992198px;}
.fs0_c01083{font-size:80.190000px;}
.y0_c01083{bottom:0.000000px;}
.y15_c01083{bottom:15.949935px;}
.y1_c01083{bottom:76.500000px;}
.y14_c01083{bottom:285.739785px;}
.y13_c01083{bottom:477.126585px;}
.y12_c01083{bottom:509.202585px;}
.y11_c01083{bottom:540.209385px;}
.y10_c01083{bottom:572.646735px;}
.yf_c01083{bottom:604.361385px;}
.ye_c01083{bottom:636.442335px;}
.yd_c01083{bottom:668.513385px;}
.yc_c01083{bottom:699.881535px;}
.yb_c01083{bottom:732.670335px;}
.y9_c01083{bottom:765.810585px;}
.ya_c01083{bottom:769.018185px;}
.y8_c01083{bottom:798.247935px;}
.y7_c01083{bottom:829.962585px;}
.y6_c01083{bottom:862.043535px;}
.y5_c01083{bottom:894.114585px;}
.y4_c01083{bottom:894.475935px;}
.y3_c01083{bottom:926.903385px;}
.y2_c01083{bottom:1081.580985px;}
.h11_c01083{height:23.128875px;}
.h12_c01083{height:29.530617px;}
.hd_c01083{height:34.180317px;}
.h4_c01083{height:37.116299px;}
.hc_c01083{height:38.927565px;}
.h9_c01083{height:41.775782px;}
.h6_c01083{height:44.192672px;}
.h7_c01083{height:65.876767px;}
.h10_c01083{height:67.115039px;}
.h8_c01083{height:67.236855px;}
.hf_c01083{height:70.734921px;}
.h5_c01083{height:73.455293px;}
.h3_c01083{height:74.232792px;}
.hb_c01083{height:76.176054px;}
.he_c01083{height:76.953164px;}
.ha_c01083{height:78.507968px;}
.h2_c01083{height:78.702100px;}
.h1_c01083{height:1110.000000px;}
.h0_c01083{height:1263.000000px;}
.w1_c01083{width:775.500000px;}
.w0_c01083{width:892.500000px;}
.x0_c01083{left:0.000000px;}
.x1_c01083{left:58.500000px;}
.x5f_c01083{left:77.988885px;}
.x29_c01083{left:79.063035px;}
.x15_c01083{left:80.300535px;}
.x4_c01083{left:81.335085px;}
.x60_c01083{left:87.577035px;}
.x3c_c01083{left:111.624135px;}
.x1e_c01083{left:112.638885px;}
.x4e_c01083{left:122.326035px;}
.x16_c01083{left:123.622935px;}
.x3d_c01083{left:134.814885px;}
.x45_c01083{left:143.927835px;}
.x31_c01083{left:145.190085px;}
.xd_c01083{left:146.981985px;}
.x2a_c01083{left:156.916635px;}
.x36_c01083{left:159.074835px;}
.x1f_c01083{left:167.796735px;}
.x5_c01083{left:169.301535px;}
.x54_c01083{left:178.340235px;}
.xe_c01083{left:180.429135px;}
.x46_c01083{left:190.418235px;}
.x3e_c01083{left:200.253885px;}
.x17_c01083{left:201.996285px;}
.x55_c01083{left:211.064685px;}
.x3f_c01083{left:223.568385px;}
.x6_c01083{left:224.974185px;}
.x5a_c01083{left:233.869335px;}
.x56_c01083{left:243.729735px;}
.x20_c01083{left:245.501835px;}
.x2b_c01083{left:254.505885px;}
.x40_c01083{left:255.862185px;}
.x32_c01083{left:267.989685px;}
.x2c_c01083{left:281.498235px;}
.x5b_c01083{left:289.155885px;}
.xf_c01083{left:290.769585px;}
.x18_c01083{left:301.105185px;}
.x21_c01083{left:303.411885px;}
.x2d_c01083{left:311.064585px;}
.x22_c01083{left:312.282285px;}
.x37_c01083{left:322.533735px;}
.x57_c01083{left:323.726685px;}
.x7_c01083{left:325.092885px;}
.x4c_c01083{left:334.091985px;}
.x23_c01083{left:346.521435px;}
.x47_c01083{left:356.505585px;}
.x8_c01083{left:358.262835px;}
.x41_c01083{left:366.361035px;}
.x33_c01083{left:377.340135px;}
.x2e_c01083{left:379.255785px;}
.x5c_c01083{left:388.586535px;}
.x10_c01083{left:392.289135px;}
.x42_c01083{left:405.931335px;}
.x4d_c01083{left:411.698085px;}
.x24_c01083{left:413.509785px;}
.x4f_c01083{left:422.088135px;}
.x11_c01083{left:423.642435px;}
.x5d_c01083{left:434.185935px;}
.x58_c01083{left:444.798735px;}
.x19_c01083{left:446.219385px;}
.x50_c01083{left:467.385585px;}
.x34_c01083{left:478.369635px;}
.x12_c01083{left:480.438735px;}
.x25_c01083{left:488.937885px;}
.x38_c01083{left:499.550685px;}
.x9_c01083{left:501.238635px;}
.x1a_c01083{left:511.801935px;}
.x5e_c01083{left:520.632735px;}
.x2f_c01083{left:521.974185px;}
.x43_c01083{left:531.646485px;}
.xa_c01083{left:533.997735px;}
.x39_c01083{left:544.209585px;}
.x13_c01083{left:545.753985px;}
.x48_c01083{left:555.020385px;}
.x35_c01083{left:566.816235px;}
.x30_c01083{left:577.260735px;}
.xb_c01083{left:578.448735px;}
.x59_c01083{left:588.130935px;}
.x1b_c01083{left:589.982235px;}
.x26_c01083{left:601.005885px;}
.x3a_c01083{left:610.589085px;}
.x51_c01083{left:621.642435px;}
.x1c_c01083{left:623.399685px;}
.x27_c01083{left:633.403635px;}
.x49_c01083{left:644.075835px;}
.x44_c01083{left:655.074735px;}
.x3b_c01083{left:663.252135px;}
.x28_c01083{left:666.227085px;}
.x1d_c01083{left:679.384185px;}
.x52_c01083{left:681.552285px;}
.x14_c01083{left:689.769285px;}
.x2_c01083{left:697.902135px;}
.x53_c01083{left:700.075185px;}
.xc_c01083{left:712.078935px;}
.x4a_c01083{left:719.533635px;}
.x3_c01083{left:720.622635px;}
.x4b_c01083{left:732.354135px;}
@media print{
.v1_c01083{vertical-align:-17.723200pt;}
.v0_c01083{vertical-align:0.000000pt;}
.lsa_c01083{letter-spacing:-2.488646pt;}
.ls5_c01083{letter-spacing:-2.353126pt;}
.lsd_c01083{letter-spacing:-1.504029pt;}
.ls2_c01083{letter-spacing:0.000000pt;}
.ls0_c01083{letter-spacing:0.477313pt;}
.ls10_c01083{letter-spacing:0.967369pt;}
.ls8_c01083{letter-spacing:1.216902pt;}
.ls4_c01083{letter-spacing:2.285894pt;}
.ls12_c01083{letter-spacing:2.860000pt;}
.ls11_c01083{letter-spacing:2.911153pt;}
.ls6_c01083{letter-spacing:2.983209pt;}
.ls7_c01083{letter-spacing:3.044800pt;}
.ls3_c01083{letter-spacing:3.361609pt;}
.lsb_c01083{letter-spacing:3.449609pt;}
.lsf_c01083{letter-spacing:3.484800pt;}
.ls1_c01083{letter-spacing:3.564000pt;}
.lse_c01083{letter-spacing:45.619376pt;}
.lsc_c01083{letter-spacing:51.955376pt;}
.ls9_c01083{letter-spacing:55.756800pt;}
.ws0_c01083{word-spacing:-15.393357pt;}
.ws1_c01083{word-spacing:0.000000pt;}
._1_c01083{margin-left:-5.609024pt;}
._0_c01083{margin-left:-1.353440pt;}
._2_c01083{width:6.857752pt;}
.fsf_c01083{font-size:19.712000pt;}
.fs10_c01083{font-size:25.168000pt;}
.fs2_c01083{font-size:33.616000pt;}
.fs4_c01083{font-size:37.664000pt;}
.fsc_c01083{font-size:45.619376pt;}
.fsb_c01083{font-size:51.955376pt;}
.fs8_c01083{font-size:55.756800pt;}
.fse_c01083{font-size:57.200000pt;}
.fs5_c01083{font-size:59.664176pt;}
.fs7_c01083{font-size:60.896000pt;}
.fs6_c01083{font-size:64.064176pt;}
.fs3_c01083{font-size:66.528000pt;}
.fs1_c01083{font-size:67.232176pt;}
.fsa_c01083{font-size:68.992176pt;}
.fsd_c01083{font-size:69.696000pt;}
.fs9_c01083{font-size:71.104176pt;}
.fs0_c01083{font-size:71.280000pt;}
.y0_c01083{bottom:0.000000pt;}
.y15_c01083{bottom:14.177720pt;}
.y1_c01083{bottom:68.000000pt;}
.y14_c01083{bottom:253.990920pt;}
.y13_c01083{bottom:424.112520pt;}
.y12_c01083{bottom:452.624520pt;}
.y11_c01083{bottom:480.186120pt;}
.y10_c01083{bottom:509.019320pt;}
.yf_c01083{bottom:537.210120pt;}
.ye_c01083{bottom:565.726520pt;}
.yd_c01083{bottom:594.234120pt;}
.yc_c01083{bottom:622.116920pt;}
.yb_c01083{bottom:651.262520pt;}
.y9_c01083{bottom:680.720520pt;}
.ya_c01083{bottom:683.571720pt;}
.y8_c01083{bottom:709.553720pt;}
.y7_c01083{bottom:737.744520pt;}
.y6_c01083{bottom:766.260920pt;}
.y5_c01083{bottom:794.768520pt;}
.y4_c01083{bottom:795.089720pt;}
.y3_c01083{bottom:823.914120pt;}
.y2_c01083{bottom:961.405320pt;}
.h11_c01083{height:20.559000pt;}
.h12_c01083{height:26.249438pt;}
.hd_c01083{height:30.382504pt;}
.h4_c01083{height:32.992266pt;}
.hc_c01083{height:34.602280pt;}
.h9_c01083{height:37.134029pt;}
.h6_c01083{height:39.282375pt;}
.h7_c01083{height:58.557126pt;}
.h10_c01083{height:59.657812pt;}
.h8_c01083{height:59.766094pt;}
.hf_c01083{height:62.875485pt;}
.h5_c01083{height:65.293594pt;}
.h3_c01083{height:65.984704pt;}
.hb_c01083{height:67.712048pt;}
.he_c01083{height:68.402813pt;}
.ha_c01083{height:69.784860pt;}
.h2_c01083{height:69.957422pt;}
.h1_c01083{height:986.666667pt;}
.h0_c01083{height:1122.666667pt;}
.w1_c01083{width:689.333333pt;}
.w0_c01083{width:793.333333pt;}
.x0_c01083{left:0.000000pt;}
.x1_c01083{left:52.000000pt;}
.x5f_c01083{left:69.323453pt;}
.x29_c01083{left:70.278253pt;}
.x15_c01083{left:71.378253pt;}
.x4_c01083{left:72.297853pt;}
.x60_c01083{left:77.846253pt;}
.x3c_c01083{left:99.221453pt;}
.x1e_c01083{left:100.123453pt;}
.x4e_c01083{left:108.734253pt;}
.x16_c01083{left:109.887053pt;}
.x3d_c01083{left:119.835453pt;}
.x45_c01083{left:127.935853pt;}
.x31_c01083{left:129.057853pt;}
.xd_c01083{left:130.650653pt;}
.x2a_c01083{left:139.481453pt;}
.x36_c01083{left:141.399853pt;}
.x1f_c01083{left:149.152653pt;}
.x5_c01083{left:150.490253pt;}
.x54_c01083{left:158.524653pt;}
.xe_c01083{left:160.381453pt;}
.x46_c01083{left:169.260653pt;}
.x3e_c01083{left:178.003453pt;}
.x17_c01083{left:179.552253pt;}
.x55_c01083{left:187.613053pt;}
.x3f_c01083{left:198.727453pt;}
.x6_c01083{left:199.977053pt;}
.x5a_c01083{left:207.883853pt;}
.x56_c01083{left:216.648653pt;}
.x20_c01083{left:218.223853pt;}
.x2b_c01083{left:226.227453pt;}
.x40_c01083{left:227.433053pt;}
.x32_c01083{left:238.213053pt;}
.x2c_c01083{left:250.220653pt;}
.x5b_c01083{left:257.027453pt;}
.xf_c01083{left:258.461853pt;}
.x18_c01083{left:267.649053pt;}
.x21_c01083{left:269.699453pt;}
.x2d_c01083{left:276.501853pt;}
.x22_c01083{left:277.584253pt;}
.x37_c01083{left:286.696653pt;}
.x57_c01083{left:287.757053pt;}
.x7_c01083{left:288.971453pt;}
.x4c_c01083{left:296.970653pt;}
.x23_c01083{left:308.019053pt;}
.x47_c01083{left:316.893853pt;}
.x8_c01083{left:318.455853pt;}
.x41_c01083{left:325.654253pt;}
.x33_c01083{left:335.413453pt;}
.x2e_c01083{left:337.116253pt;}
.x5c_c01083{left:345.410253pt;}
.x10_c01083{left:348.701453pt;}
.x42_c01083{left:360.827853pt;}
.x4d_c01083{left:365.953853pt;}
.x24_c01083{left:367.564253pt;}
.x4f_c01083{left:375.189453pt;}
.x11_c01083{left:376.571053pt;}
.x5d_c01083{left:385.943053pt;}
.x58_c01083{left:395.376653pt;}
.x19_c01083{left:396.639453pt;}
.x50_c01083{left:415.453853pt;}
.x34_c01083{left:425.217453pt;}
.x12_c01083{left:427.056653pt;}
.x25_c01083{left:434.611453pt;}
.x38_c01083{left:444.045053pt;}
.x9_c01083{left:445.545453pt;}
.x1a_c01083{left:454.935053pt;}
.x5e_c01083{left:462.784653pt;}
.x2f_c01083{left:463.977053pt;}
.x43_c01083{left:472.574653pt;}
.xa_c01083{left:474.664653pt;}
.x39_c01083{left:483.741853pt;}
.x13_c01083{left:485.114653pt;}
.x48_c01083{left:493.351453pt;}
.x35_c01083{left:503.836653pt;}
.x30_c01083{left:513.120653pt;}
.xb_c01083{left:514.176653pt;}
.x59_c01083{left:522.783053pt;}
.x1b_c01083{left:524.428653pt;}
.x26_c01083{left:534.227453pt;}
.x3a_c01083{left:542.745853pt;}
.x51_c01083{left:552.571053pt;}
.x1c_c01083{left:554.133053pt;}
.x27_c01083{left:563.025453pt;}
.x49_c01083{left:572.511853pt;}
.x44_c01083{left:582.288653pt;}
.x3b_c01083{left:589.557453pt;}
.x28_c01083{left:592.201853pt;}
.x1d_c01083{left:603.897053pt;}
.x52_c01083{left:605.824253pt;}
.x14_c01083{left:613.128253pt;}
.x2_c01083{left:620.357453pt;}
.x53_c01083{left:622.289053pt;}
.xc_c01083{left:632.959053pt;}
.x4a_c01083{left:639.585453pt;}
.x3_c01083{left:640.553453pt;}
.x4b_c01083{left:650.981453pt;}
}





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

.ir_c01084:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01084{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01084;src:url('chunks/assets/font_6df38db042bc068be8d9cc8d.woff2')format("woff");}.ff1_c01084{font-family:ff1_c01084;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01084;src:url('chunks/assets/font_3ddfde9024ca6e2d770a55a2.woff2')format("woff");}.ff2_c01084{font-family:ff2_c01084;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01084;src:url('chunks/assets/font_1de6018cb56231e6a56a8ac1.woff2')format("woff");}.ff3_c01084{font-family:ff3_c01084;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01084;src:url('chunks/assets/font_350cb2074c9bb99ed4584d83.woff2')format("woff");}.ff4_c01084{font-family:ff4_c01084;line-height:0.666000;font-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_c01084{transform:matrix(0.107144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107144,0.000000,0.000000,0.250000,0,0);}
.m0_c01084{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01084{transform:matrix(0.275664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275664,0.000000,0.000000,0.250000,0,0);}
.v0_c01084{vertical-align:0.000000px;}
.ls0_c01084{letter-spacing:0.000000px;}
.ls2_c01084{letter-spacing:1.801958px;}
.ls1_c01084{letter-spacing:3.643200px;}
.ls3_c01084{letter-spacing:29.937798px;}
.sc__c01084{text-shadow:none;}
.sc0_c01084{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01084{-webkit-text-stroke:0px transparent;}
.sc0_c01084{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01084{word-spacing:0.000000px;}
.fc0_c01084{color:transparent;}
.fs1_c01084{font-size:22.176000px;}
.fs6_c01084{font-size:23.166000px;}
.fs0_c01084{font-size:27.720000px;}
.fs7_c01084{font-size:29.937798px;}
.fs4_c01084{font-size:33.660000px;}
.fs3_c01084{font-size:62.568000px;}
.fs5_c01084{font-size:66.528000px;}
.fs2_c01084{font-size:72.864000px;}
.y0_c01084{bottom:0.000000px;}
.ya_c01084{bottom:15.237135px;}
.y9_c01084{bottom:25.572735px;}
.y8_c01084{bottom:38.398185px;}
.y1_c01084{bottom:76.500000px;}
.y7_c01084{bottom:227.646585px;}
.y6_c01084{bottom:291.090735px;}
.y5_c01084{bottom:297.505935px;}
.y4_c01084{bottom:414.400185px;}
.y3_c01084{bottom:858.829005px;}
.y2_c01084{bottom:861.330735px;}
.h9_c01084{height:19.938573px;}
.h3_c01084{height:23.128875px;}
.h8_c01084{height:24.161414px;}
.h2_c01084{height:28.911094px;}
.h6_c01084{height:33.035449px;}
.h5_c01084{height:65.256469px;}
.h7_c01084{height:69.386625px;}
.h4_c01084{height:73.433250px;}
.h1_c01084{height:1110.000000px;}
.h0_c01084{height:1263.000000px;}
.w1_c01084{width:775.500000px;}
.w0_c01084{width:892.500000px;}
.x0_c01084{left:0.000000px;}
.x1_c01084{left:58.500000px;}
.x5_c01084{left:255.481035px;}
.x6_c01084{left:310.767585px;}
.x7_c01084{left:355.183935px;}
.x8_c01084{left:360.911085px;}
.x4_c01084{left:415.465035px;}
.x3_c01084{left:506.320305px;}
.x9_c01084{left:705.040035px;}
.xa_c01084{left:706.569585px;}
.x2_c01084{left:719.805885px;}
@media print{
.v0_c01084{vertical-align:0.000000pt;}
.ls0_c01084{letter-spacing:0.000000pt;}
.ls2_c01084{letter-spacing:1.601741pt;}
.ls1_c01084{letter-spacing:3.238400pt;}
.ls3_c01084{letter-spacing:26.611376pt;}
.ws0_c01084{word-spacing:0.000000pt;}
.fs1_c01084{font-size:19.712000pt;}
.fs6_c01084{font-size:20.592000pt;}
.fs0_c01084{font-size:24.640000pt;}
.fs7_c01084{font-size:26.611376pt;}
.fs4_c01084{font-size:29.920000pt;}
.fs3_c01084{font-size:55.616000pt;}
.fs5_c01084{font-size:59.136000pt;}
.fs2_c01084{font-size:64.768000pt;}
.y0_c01084{bottom:0.000000pt;}
.ya_c01084{bottom:13.544120pt;}
.y9_c01084{bottom:22.731320pt;}
.y8_c01084{bottom:34.131720pt;}
.y1_c01084{bottom:68.000000pt;}
.y7_c01084{bottom:202.352520pt;}
.y6_c01084{bottom:258.747320pt;}
.y5_c01084{bottom:264.449720pt;}
.y4_c01084{bottom:368.355720pt;}
.y3_c01084{bottom:763.403560pt;}
.y2_c01084{bottom:765.627320pt;}
.h9_c01084{height:17.723176pt;}
.h3_c01084{height:20.559000pt;}
.h8_c01084{height:21.476813pt;}
.h2_c01084{height:25.698750pt;}
.h6_c01084{height:29.364844pt;}
.h5_c01084{height:58.005750pt;}
.h7_c01084{height:61.677000pt;}
.h4_c01084{height:65.274000pt;}
.h1_c01084{height:986.666667pt;}
.h0_c01084{height:1122.666667pt;}
.w1_c01084{width:689.333333pt;}
.w0_c01084{width:793.333333pt;}
.x0_c01084{left:0.000000pt;}
.x1_c01084{left:52.000000pt;}
.x5_c01084{left:227.094253pt;}
.x6_c01084{left:276.237853pt;}
.x7_c01084{left:315.719053pt;}
.x8_c01084{left:320.809853pt;}
.x4_c01084{left:369.302253pt;}
.x3_c01084{left:450.062493pt;}
.x9_c01084{left:626.702253pt;}
.xa_c01084{left:628.061853pt;}
.x2_c01084{left:639.827453pt;}
}





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

.ir_c01085:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01085{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01085;src:url('chunks/assets/font_3c96f3166bfad2c269642df8.woff2')format("woff");}.ff1_c01085{font-family:ff1_c01085;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01085;src:url('chunks/assets/font_c901105e2be891fea31a16d4.woff2')format("woff");}.ff2_c01085{font-family:ff2_c01085;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01085;src:url('chunks/assets/font_381239780e6458f630c36d77.woff2')format("woff");}.ff3_c01085{font-family:ff3_c01085;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01085;src:url('chunks/assets/font_94eaa0c58660abf558228681.woff2')format("woff");}.ff4_c01085{font-family:ff4_c01085;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01085;src:url('chunks/assets/font_feba0154212fc2a1b5ceae56.woff2')format("woff");}.ff5_c01085{font-family:ff5_c01085;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m43_c01085{transform:matrix(0.016305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.016305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.016305,0.000000,0.000000,0.250000,0,0);}
.m6b_c01085{transform:matrix(0.022223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.022223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.022223,0.000000,0.000000,0.250000,0,0);}
.m3c_c01085{transform:matrix(0.071739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071739,0.000000,0.000000,0.250000,0,0);}
.m3d_c01085{transform:matrix(0.085598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085598,0.000000,0.000000,0.250000,0,0);}
.m68_c01085{transform:matrix(0.087301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087301,0.000000,0.000000,0.250000,0,0);}
.m17_c01085{transform:matrix(0.087454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087454,0.000000,0.000000,0.250000,0,0);}
.mf_c01085{transform:matrix(0.089748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089748,0.000000,0.000000,0.250000,0,0);}
.m46_c01085{transform:matrix(0.107809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107809,0.000000,0.000000,0.250000,0,0);}
.m6c_c01085{transform:matrix(0.109722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109722,0.000000,0.000000,0.250000,0,0);}
.m67_c01085{transform:matrix(0.113170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113170,0.000000,0.000000,0.250000,0,0);}
.m6a_c01085{transform:matrix(0.113248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113248,0.000000,0.000000,0.250000,0,0);}
.m44_c01085{transform:matrix(0.116459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116459,0.000000,0.000000,0.250000,0,0);}
.m64_c01085{transform:matrix(0.121429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121429,0.000000,0.000000,0.250000,0,0);}
.m13_c01085{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);}
.m48_c01085{transform:matrix(0.128698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128698,0.000000,0.000000,0.250000,0,0);}
.m7f_c01085{transform:matrix(0.131803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131803,0.000000,0.000000,0.250000,0,0);}
.m80_c01085{transform:matrix(0.134926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134926,0.000000,0.000000,0.250000,0,0);}
.m42_c01085{transform:matrix(0.135870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135870,0.000000,0.000000,0.250000,0,0);}
.m63_c01085{transform:matrix(0.146170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146170,0.000000,0.000000,0.250000,0,0);}
.m2e_c01085{transform:matrix(0.150088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150088,0.000000,0.000000,0.250000,0,0);}
.m40_c01085{transform:matrix(0.152193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152193,0.000000,0.000000,0.250000,0,0);}
.m69_c01085{transform:matrix(0.155364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155364,0.000000,0.000000,0.250000,0,0);}
.m47_c01085{transform:matrix(0.156695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156695,0.000000,0.000000,0.250000,0,0);}
.m33_c01085{transform:matrix(0.159723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159723,0.000000,0.000000,0.250000,0,0);}
.m25_c01085{transform:matrix(0.165722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165722,0.000000,0.000000,0.250000,0,0);}
.m2b_c01085{transform:matrix(0.168386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168386,0.000000,0.000000,0.250000,0,0);}
.m5c_c01085{transform:matrix(0.175305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175305,0.000000,0.000000,0.250000,0,0);}
.m12_c01085{transform:matrix(0.175781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175781,0.000000,0.000000,0.250000,0,0);}
.m41_c01085{transform:matrix(0.176174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176174,0.000000,0.000000,0.250000,0,0);}
.m66_c01085{transform:matrix(0.189470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189470,0.000000,0.000000,0.250000,0,0);}
.m83_c01085{transform:matrix(0.191441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191441,0.000000,0.000000,0.250000,0,0);}
.m77_c01085{transform:matrix(0.192683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192683,0.000000,0.000000,0.250000,0,0);}
.m3e_c01085{transform:matrix(0.196077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196077,0.000000,0.000000,0.250000,0,0);}
.m65_c01085{transform:matrix(0.199943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199943,0.000000,0.000000,0.250000,0,0);}
.m3b_c01085{transform:matrix(0.203981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203981,0.000000,0.000000,0.250000,0,0);}
.m30_c01085{transform:matrix(0.207777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207777,0.000000,0.000000,0.250000,0,0);}
.m3f_c01085{transform:matrix(0.211962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211962,0.000000,0.000000,0.250000,0,0);}
.m45_c01085{transform:matrix(0.216343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216343,0.000000,0.000000,0.250000,0,0);}
.m81_c01085{transform:matrix(0.217451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217451,0.000000,0.000000,0.250000,0,0);}
.m88_c01085{transform:matrix(0.219501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219501,0.000000,0.000000,0.250000,0,0);}
.m37_c01085{transform:matrix(0.228920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228920,0.000000,0.000000,0.250000,0,0);}
.m50_c01085{transform:matrix(0.229828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229828,0.000000,0.000000,0.250000,0,0);}
.m8c_c01085{transform:matrix(0.237939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237939,0.000000,0.000000,0.250000,0,0);}
.m3_c01085{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01085{transform:matrix(0.251641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251641,0.000000,0.000000,0.250000,0,0);}
.m38_c01085{transform:matrix(0.252593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252593,0.000000,0.000000,0.250000,0,0);}
.m1_c01085{transform:matrix(0.252829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252829,0.000000,0.000000,0.250000,0,0);}
.m61_c01085{transform:matrix(0.253223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253223,0.000000,0.000000,0.250000,0,0);}
.m0_c01085{transform:matrix(0.255705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255705,0.000000,0.000000,0.250000,0,0);}
.m26_c01085{transform:matrix(0.256220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256220,0.000000,0.000000,0.250000,0,0);}
.m78_c01085{transform:matrix(0.260954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260954,0.000000,0.000000,0.250000,0,0);}
.m74_c01085{transform:matrix(0.262229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262229,0.000000,0.000000,0.250000,0,0);}
.m14_c01085{transform:matrix(0.262251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262251,0.000000,0.000000,0.250000,0,0);}
.m18_c01085{transform:matrix(0.265990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265990,0.000000,0.000000,0.250000,0,0);}
.m76_c01085{transform:matrix(0.266098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266098,0.000000,0.000000,0.250000,0,0);}
.m23_c01085{transform:matrix(0.266454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266454,0.000000,0.000000,0.250000,0,0);}
.m5f_c01085{transform:matrix(0.267020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267020,0.000000,0.000000,0.250000,0,0);}
.m7e_c01085{transform:matrix(0.267253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267253,0.000000,0.000000,0.250000,0,0);}
.m7a_c01085{transform:matrix(0.267941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267941,0.000000,0.000000,0.250000,0,0);}
.m86_c01085{transform:matrix(0.269626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269626,0.000000,0.000000,0.250000,0,0);}
.m22_c01085{transform:matrix(0.270005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270005,0.000000,0.000000,0.250000,0,0);}
.m4f_c01085{transform:matrix(0.270657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270657,0.000000,0.000000,0.250000,0,0);}
.m56_c01085{transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);}
.m36_c01085{transform:matrix(0.272662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272662,0.000000,0.000000,0.250000,0,0);}
.m2a_c01085{transform:matrix(0.274249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274249,0.000000,0.000000,0.250000,0,0);}
.m16_c01085{transform:matrix(0.274532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274532,0.000000,0.000000,0.250000,0,0);}
.m87_c01085{transform:matrix(0.274995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274995,0.000000,0.000000,0.250000,0,0);}
.m58_c01085{transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);}
.m29_c01085{transform:matrix(0.276544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276544,0.000000,0.000000,0.250000,0,0);}
.m32_c01085{transform:matrix(0.277814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277814,0.000000,0.000000,0.250000,0,0);}
.m82_c01085{transform:matrix(0.280684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280684,0.000000,0.000000,0.250000,0,0);}
.m27_c01085{transform:matrix(0.283192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283192,0.000000,0.000000,0.250000,0,0);}
.m8e_c01085{transform:matrix(0.283781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283781,0.000000,0.000000,0.250000,0,0);}
.m5a_c01085{transform:matrix(0.284091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284091,0.000000,0.000000,0.250000,0,0);}
.m1a_c01085{transform:matrix(0.284206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284206,0.000000,0.000000,0.250000,0,0);}
.m28_c01085{transform:matrix(0.284859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284859,0.000000,0.000000,0.250000,0,0);}
.m2_c01085{transform:matrix(0.285207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285207,0.000000,0.000000,0.250000,0,0);}
.m5e_c01085{transform:matrix(0.286246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286246,0.000000,0.000000,0.250000,0,0);}
.m73_c01085{transform:matrix(0.287722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287722,0.000000,0.000000,0.250000,0,0);}
.m7d_c01085{transform:matrix(0.289465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289465,0.000000,0.000000,0.250000,0,0);}
.m2f_c01085{transform:matrix(0.293331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293331,0.000000,0.000000,0.250000,0,0);}
.m55_c01085{transform:matrix(0.294303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294303,0.000000,0.000000,0.250000,0,0);}
.m7b_c01085{transform:matrix(0.295278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295278,0.000000,0.000000,0.250000,0,0);}
.m4b_c01085{transform:matrix(0.296324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296324,0.000000,0.000000,0.250000,0,0);}
.m75_c01085{transform:matrix(0.297245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297245,0.000000,0.000000,0.250000,0,0);}
.m6d_c01085{transform:matrix(0.297641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297641,0.000000,0.000000,0.250000,0,0);}
.m5d_c01085{transform:matrix(0.298351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298351,0.000000,0.000000,0.250000,0,0);}
.m20_c01085{transform:matrix(0.298769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298769,0.000000,0.000000,0.250000,0,0);}
.m4e_c01085{transform:matrix(0.298913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298913,0.000000,0.000000,0.250000,0,0);}
.m4c_c01085{transform:matrix(0.299037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299037,0.000000,0.000000,0.250000,0,0);}
.m6_c01085{transform:matrix(0.302103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302103,0.000000,0.000000,0.250000,0,0);}
.m34_c01085{transform:matrix(0.302135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302135,0.000000,0.000000,0.250000,0,0);}
.m72_c01085{transform:matrix(0.302418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302418,0.000000,0.000000,0.250000,0,0);}
.m35_c01085{transform:matrix(0.303097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303097,0.000000,0.000000,0.250000,0,0);}
.m62_c01085{transform:matrix(0.303568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303568,0.000000,0.000000,0.250000,0,0);}
.m57_c01085{transform:matrix(0.304040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304040,0.000000,0.000000,0.250000,0,0);}
.m6e_c01085{transform:matrix(0.305657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305657,0.000000,0.000000,0.250000,0,0);}
.m5_c01085{transform:matrix(0.306844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306844,0.000000,0.000000,0.250000,0,0);}
.m7c_c01085{transform:matrix(0.308095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308095,0.000000,0.000000,0.250000,0,0);}
.m51_c01085{transform:matrix(0.308433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308433,0.000000,0.000000,0.250000,0,0);}
.m8a_c01085{transform:matrix(0.313649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313649,0.000000,0.000000,0.250000,0,0);}
.m1b_c01085{transform:matrix(0.314446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314446,0.000000,0.000000,0.250000,0,0);}
.m84_c01085{transform:matrix(0.314925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314925,0.000000,0.000000,0.250000,0,0);}
.m53_c01085{transform:matrix(0.314935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314935,0.000000,0.000000,0.250000,0,0);}
.m4a_c01085{transform:matrix(0.315761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315761,0.000000,0.000000,0.250000,0,0);}
.m49_c01085{transform:matrix(0.317188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317188,0.000000,0.000000,0.250000,0,0);}
.m70_c01085{transform:matrix(0.320614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320614,0.000000,0.000000,0.250000,0,0);}
.m8d_c01085{transform:matrix(0.321574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321574,0.000000,0.000000,0.250000,0,0);}
.m31_c01085{transform:matrix(0.322521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322521,0.000000,0.000000,0.250000,0,0);}
.m52_c01085{transform:matrix(0.322581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322581,0.000000,0.000000,0.250000,0,0);}
.m2c_c01085{transform:matrix(0.322859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322859,0.000000,0.000000,0.250000,0,0);}
.m21_c01085{transform:matrix(0.322924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322924,0.000000,0.000000,0.250000,0,0);}
.m1c_c01085{transform:matrix(0.324111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324111,0.000000,0.000000,0.250000,0,0);}
.m11_c01085{transform:matrix(0.325971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325971,0.000000,0.000000,0.250000,0,0);}
.m8b_c01085{transform:matrix(0.326048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326048,0.000000,0.000000,0.250000,0,0);}
.m71_c01085{transform:matrix(0.331874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331874,0.000000,0.000000,0.250000,0,0);}
.m24_c01085{transform:matrix(0.333987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333987,0.000000,0.000000,0.250000,0,0);}
.m59_c01085{transform:matrix(0.335939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335939,0.000000,0.000000,0.250000,0,0);}
.m15_c01085{transform:matrix(0.337845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337845,0.000000,0.000000,0.250000,0,0);}
.m5b_c01085{transform:matrix(0.339593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339593,0.000000,0.000000,0.250000,0,0);}
.m89_c01085{transform:matrix(0.341102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341102,0.000000,0.000000,0.250000,0,0);}
.m1d_c01085{transform:matrix(0.350444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350444,0.000000,0.000000,0.250000,0,0);}
.m39_c01085{transform:matrix(0.350948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350948,0.000000,0.000000,0.250000,0,0);}
.m6f_c01085{transform:matrix(0.355804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355804,0.000000,0.000000,0.250000,0,0);}
.m3a_c01085{transform:matrix(0.356718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356718,0.000000,0.000000,0.250000,0,0);}
.mb_c01085{transform:matrix(0.361904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361904,0.000000,0.000000,0.250000,0,0);}
.m19_c01085{transform:matrix(0.365140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365140,0.000000,0.000000,0.250000,0,0);}
.m85_c01085{transform:matrix(0.370540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370540,0.000000,0.000000,0.250000,0,0);}
.m79_c01085{transform:matrix(0.384157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384157,0.000000,0.000000,0.250000,0,0);}
.m10_c01085{transform:matrix(0.384343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384343,0.000000,0.000000,0.250000,0,0);}
.m60_c01085{transform:matrix(0.386540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386540,0.000000,0.000000,0.250000,0,0);}
.m2d_c01085{transform:matrix(0.395078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395078,0.000000,0.000000,0.250000,0,0);}
.m1f_c01085{transform:matrix(0.395451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395451,0.000000,0.000000,0.250000,0,0);}
.m7_c01085{transform:matrix(0.395723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395723,0.000000,0.000000,0.250000,0,0);}
.m4_c01085{transform:matrix(0.397481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397481,0.000000,0.000000,0.250000,0,0);}
.m4d_c01085{transform:matrix(0.423125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423125,0.000000,0.000000,0.250000,0,0);}
.m9_c01085{transform:matrix(0.434012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434012,0.000000,0.000000,0.250000,0,0);}
.ma_c01085{transform:matrix(0.482955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482955,0.000000,0.000000,0.250000,0,0);}
.m1e_c01085{transform:matrix(0.557768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557768,0.000000,0.000000,0.250000,0,0);}
.m8_c01085{transform:matrix(0.562178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562178,0.000000,0.000000,0.250000,0,0);}
.mc_c01085{transform:matrix(0.630410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630410,0.000000,0.000000,0.250000,0,0);}
.me_c01085{transform:matrix(1.414350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.414350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.414350,0.000000,0.000000,0.250000,0,0);}
.md_c01085{transform:matrix(1.750711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.750711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.750711,0.000000,0.000000,0.250000,0,0);}
.v3_c01085{vertical-align:-31.343400px;}
.v0_c01085{vertical-align:0.000000px;}
.v1_c01085{vertical-align:11.404800px;}
.v2_c01085{vertical-align:34.214400px;}
.ls1b_c01085{letter-spacing:-3.298680px;}
.ls1f_c01085{letter-spacing:-3.284827px;}
.ls29_c01085{letter-spacing:-3.270967px;}
.lsa_c01085{letter-spacing:-2.772000px;}
.ls22_c01085{letter-spacing:-2.716567px;}
.ls2a_c01085{letter-spacing:-2.661127px;}
.ls23_c01085{letter-spacing:-2.654190px;}
.ls27_c01085{letter-spacing:-2.626477px;}
.ls1d_c01085{letter-spacing:-2.605680px;}
.ls17_c01085{letter-spacing:-2.494800px;}
.ls28_c01085{letter-spacing:-2.411640px;}
.ls21_c01085{letter-spacing:-2.259180px;}
.lsd_c01085{letter-spacing:-1.413720px;}
.ls2e_c01085{letter-spacing:-0.208454px;}
.ls6_c01085{letter-spacing:0.000000px;}
.ls9_c01085{letter-spacing:0.198000px;}
.ls8_c01085{letter-spacing:0.716522px;}
.ls10_c01085{letter-spacing:0.772210px;}
.ls7_c01085{letter-spacing:0.821700px;}
.ls19_c01085{letter-spacing:0.939156px;}
.ls15_c01085{letter-spacing:1.027860px;}
.ls11_c01085{letter-spacing:1.158300px;}
.lsb_c01085{letter-spacing:1.910700px;}
.ls2d_c01085{letter-spacing:2.048652px;}
.ls26_c01085{letter-spacing:2.919142px;}
.ls2_c01085{letter-spacing:3.117320px;}
.lsc_c01085{letter-spacing:3.369395px;}
.ls12_c01085{letter-spacing:3.405610px;}
.ls25_c01085{letter-spacing:3.504610px;}
.ls16_c01085{letter-spacing:3.564000px;}
.ls13_c01085{letter-spacing:3.583810px;}
.ls2c_c01085{letter-spacing:3.643200px;}
.ls30_c01085{letter-spacing:3.663000px;}
.ls18_c01085{letter-spacing:3.682810px;}
.ls1e_c01085{letter-spacing:3.722400px;}
.ls4_c01085{letter-spacing:3.752110px;}
.ls5_c01085{letter-spacing:3.801610px;}
.lsf_c01085{letter-spacing:3.880810px;}
.ls2b_c01085{letter-spacing:3.960000px;}
.ls14_c01085{letter-spacing:4.078810px;}
.ls3_c01085{letter-spacing:4.207500px;}
.ls0_c01085{letter-spacing:10.442322px;}
.ls2f_c01085{letter-spacing:52.747398px;}
.ls31_c01085{letter-spacing:54.172998px;}
.ls24_c01085{letter-spacing:55.598598px;}
.ls1a_c01085{letter-spacing:58.449798px;}
.lse_c01085{letter-spacing:59.875398px;}
.ls1c_c01085{letter-spacing:64.152198px;}
.ls20_c01085{letter-spacing:65.577798px;}
.ls1_c01085{letter-spacing:91.166328px;}
.sc__c01085{text-shadow:none;}
.sc0_c01085{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01085{-webkit-text-stroke:0px transparent;}
.sc0_c01085{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01085{word-spacing:-19.800000px;}
.ws1_c01085{word-spacing:-4.108500px;}
.ws0_c01085{word-spacing:-2.585193px;}
.ws3_c01085{word-spacing:0.000000px;}
._9_c01085{margin-left:-23.190237px;}
._8_c01085{margin-left:-11.488009px;}
._0_c01085{margin-left:-1.346400px;}
._4_c01085{width:10.131550px;}
._3_c01085{width:11.366872px;}
._5_c01085{width:14.455639px;}
._6_c01085{width:31.104711px;}
._1_c01085{width:33.884434px;}
._2_c01085{width:143.920915px;}
._7_c01085{width:1433.505579px;}
.fc0_c01085{color:transparent;}
.fs4_c01085{font-size:3.960000px;}
.fsb_c01085{font-size:5.742198px;}
.fsc_c01085{font-size:15.444198px;}
.fs3_c01085{font-size:16.434000px;}
.fs26_c01085{font-size:22.572000px;}
.fsd_c01085{font-size:23.166000px;}
.fse_c01085{font-size:33.660000px;}
.fs7_c01085{font-size:38.214000px;}
.fs1f_c01085{font-size:39.798000px;}
.fs8_c01085{font-size:40.392000px;}
.fs1d_c01085{font-size:44.946198px;}
.fs23_c01085{font-size:52.747398px;}
.fs25_c01085{font-size:54.172998px;}
.fs1c_c01085{font-size:55.598598px;}
.fs14_c01085{font-size:58.449798px;}
.fs9_c01085{font-size:59.875398px;}
.fs16_c01085{font-size:64.152198px;}
.fs1a_c01085{font-size:64.548000px;}
.fs19_c01085{font-size:65.577798px;}
.fsf_c01085{font-size:68.112198px;}
.fs20_c01085{font-size:68.904000px;}
.fs1e_c01085{font-size:70.092198px;}
.fs12_c01085{font-size:71.280000px;}
.fs10_c01085{font-size:71.676198px;}
.fs22_c01085{font-size:72.864000px;}
.fs24_c01085{font-size:73.260000px;}
.fs13_c01085{font-size:73.656198px;}
.fs17_c01085{font-size:74.448000px;}
.fs1_c01085{font-size:75.042198px;}
.fs1b_c01085{font-size:75.834000px;}
.fs2_c01085{font-size:76.032198px;}
.fsa_c01085{font-size:77.616198px;}
.fs5_c01085{font-size:79.200000px;}
.fs11_c01085{font-size:81.576198px;}
.fs0_c01085{font-size:84.150000px;}
.fs21_c01085{font-size:93.456198px;}
.fs18_c01085{font-size:93.852198px;}
.fs15_c01085{font-size:94.248000px;}
.fs6_c01085{font-size:120.384000px;}
.y0_c01085{bottom:0.000000px;}
.y1_c01085{bottom:76.500000px;}
.y1e_c01085{bottom:153.876735px;}
.y1d_c01085{bottom:162.073935px;}
.y1c_c01085{bottom:194.862735px;}
.y1b_c01085{bottom:226.933785px;}
.y1a_c01085{bottom:291.447135px;}
.y19_c01085{bottom:354.529935px;}
.y18_c01085{bottom:384.467535px;}
.y17_c01085{bottom:419.746185px;}
.y16_c01085{bottom:448.975935px;}
.y15_c01085{bottom:452.183535px;}
.y13_c01085{bottom:483.541785px;}
.y14_c01085{bottom:484.967385px;}
.y12_c01085{bottom:515.261385px;}
.y11_c01085{bottom:546.273135px;}
.y10_c01085{bottom:611.494335px;}
.yf_c01085{bottom:643.926735px;}
.ye_c01085{bottom:706.653135px;}
.y3_c01085{bottom:707.722335px;}
.yd_c01085{bottom:769.730985px;}
.yc_c01085{bottom:800.381385px;}
.yb_c01085{bottom:803.237535px;}
.y2_c01085{bottom:834.600735px;}
.ya_c01085{bottom:835.313535px;}
.y5_c01085{bottom:925.477785px;}
.y4_c01085{bottom:931.180185px;}
.y6_c01085{bottom:1075.522185px;}
.y9_c01085{bottom:1076.234985px;}
.y7_c01085{bottom:1077.304185px;}
.y8_c01085{bottom:1085.857785px;}
.h6_c01085{height:3.886523px;}
.he_c01085{height:16.107816px;}
.h5_c01085{height:16.129072px;}
.hf_c01085{height:22.736162px;}
.h28_c01085{height:23.541891px;}
.h25_c01085{height:35.129767px;}
.h27_c01085{height:36.079217px;}
.h1d_c01085{height:37.028666px;}
.h15_c01085{height:38.927565px;}
.ha_c01085{height:39.856008px;}
.hc_c01085{height:39.877015px;}
.h20_c01085{height:41.508070px;}
.hb_c01085{height:42.127594px;}
.h17_c01085{height:42.725364px;}
.h1a_c01085{height:43.674813px;}
.h1e_c01085{height:44.112235px;}
.h1b_c01085{height:63.350332px;}
.h13_c01085{height:69.957422px;}
.h11_c01085{height:70.346269px;}
.h10_c01085{height:71.038894px;}
.h23_c01085{height:71.512031px;}
.h21_c01085{height:71.864719px;}
.h14_c01085{height:72.289530px;}
.h18_c01085{height:73.066641px;}
.h1f_c01085{height:73.103972px;}
.h3_c01085{height:73.649813px;}
.h4_c01085{height:74.621444px;}
.hd_c01085{height:76.176054px;}
.h26_c01085{height:76.407891px;}
.h7_c01085{height:77.730469px;}
.h1c_c01085{height:79.092492px;}
.h24_c01085{height:80.022745px;}
.h12_c01085{height:80.062577px;}
.h2_c01085{height:82.588623px;}
.h16_c01085{height:92.499258px;}
.h22_c01085{height:97.471894px;}
.h19_c01085{height:97.884910px;}
.h8_c01085{height:111.944869px;}
.h9_c01085{height:125.556750px;}
.h1_c01085{height:1110.000000px;}
.h0_c01085{height:1263.000000px;}
.w1_c01085{width:775.500000px;}
.w0_c01085{width:892.500000px;}
.x0_c01085{left:0.000000px;}
.x1_c01085{left:58.500000px;}
.x2_c01085{left:76.929585px;}
.x3_c01085{left:78.275985px;}
.x43_c01085{left:120.093585px;}
.x19_c01085{left:121.113285px;}
.x4_c01085{left:132.656685px;}
.x2d_c01085{left:145.506885px;}
.x57_c01085{left:149.442135px;}
.x20_c01085{left:154.416885px;}
.xb_c01085{left:155.758335px;}
.x2e_c01085{left:157.228485px;}
.x2a_c01085{left:166.579035px;}
.xc_c01085{left:172.400235px;}
.xd_c01085{left:173.414985px;}
.x2f_c01085{left:177.137385px;}
.x60_c01085{left:187.755135px;}
.x31_c01085{left:190.264785px;}
.x44_c01085{left:196.724535px;}
.x2b_c01085{left:198.442185px;}
.x5_c01085{left:200.437035px;}
.x65_c01085{left:207.678885px;}
.x58_c01085{left:208.822335px;}
.x54_c01085{left:210.426135px;}
.x25_c01085{left:212.386335px;}
.xe_c01085{left:215.123685px;}
.x5f_c01085{left:216.677985px;}
.x6_c01085{left:221.043885px;}
.x55_c01085{left:230.889435px;}
.x30_c01085{left:232.121985px;}
.x59_c01085{left:242.408085px;}
.x5a_c01085{left:251.605185px;}
.x4b_c01085{left:254.248485px;}
.x7_c01085{left:255.718635px;}
.x26_c01085{left:263.866335px;}
.x8_c01085{left:265.821585px;}
.xf_c01085{left:271.801185px;}
.x39_c01085{left:274.860285px;}
.x1a_c01085{left:277.117485px;}
.x45_c01085{left:284.042535px;}
.x27_c01085{left:285.482985px;}
.x21_c01085{left:288.452985px;}
.x28_c01085{left:303.906885px;}
.x4c_c01085{left:309.307335px;}
.x10_c01085{left:311.010135px;}
.x4d_c01085{left:315.479985px;}
.x3a_c01085{left:318.251985px;}
.x29_c01085{left:320.692335px;}
.x2c_c01085{left:322.518885px;}
.x1b_c01085{left:324.177135px;}
.x5b_c01085{left:330.834885px;}
.x9_c01085{left:333.700935px;}
.x5c_c01085{left:337.141185px;}
.x3b_c01085{left:341.417985px;}
.x1c_c01085{left:345.699735px;}
.x11_c01085{left:351.377385px;}
.x12_c01085{left:358.416285px;}
.x68_c01085{left:365.405685px;}
.x56_c01085{left:386.507535px;}
.x13_c01085{left:388.091535px;}
.xa_c01085{left:390.289335px;}
.x69_c01085{left:397.377735px;}
.x22_c01085{left:399.011235px;}
.x5e_c01085{left:408.723135px;}
.x52_c01085{left:409.950735px;}
.x61_c01085{left:420.182385px;}
.x46_c01085{left:432.191085px;}
.x35_c01085{left:433.374135px;}
.x3c_c01085{left:435.953085px;}
.x3d_c01085{left:442.798935px;}
.x4e_c01085{left:443.823585px;}
.x1d_c01085{left:455.183835px;}
.x3e_c01085{left:469.474485px;}
.x32_c01085{left:475.879785px;}
.x36_c01085{left:486.022335px;}
.x3f_c01085{left:497.110335px;}
.x23_c01085{left:498.194385px;}
.x6b_c01085{left:507.361785px;}
.x4f_c01085{left:510.519885px;}
.x40_c01085{left:520.330785px;}
.x5d_c01085{left:530.557485px;}
.x53_c01085{left:532.448385px;}
.x62_c01085{left:541.769235px;}
.x50_c01085{left:542.942385px;}
.x47_c01085{left:554.312535px;}
.x6a_c01085{left:562.697835px;}
.x37_c01085{left:564.549135px;}
.x41_c01085{left:575.221335px;}
.x42_c01085{left:576.290535px;}
.x48_c01085{left:585.136185px;}
.x33_c01085{left:586.640985px;}
.x38_c01085{left:607.277535px;}
.x51_c01085{left:608.515035px;}
.x1e_c01085{left:610.272285px;}
.x63_c01085{left:626.681535px;}
.x64_c01085{left:629.933685px;}
.x66_c01085{left:630.953385px;}
.x34_c01085{left:632.814585px;}
.x1f_c01085{left:641.150385px;}
.x49_c01085{left:653.391735px;}
.x24_c01085{left:664.544085px;}
.x67_c01085{left:673.483785px;}
.x4a_c01085{left:685.423185px;}
.x17_c01085{left:693.615435px;}
.x14_c01085{left:705.733035px;}
.x15_c01085{left:716.707185px;}
.x18_c01085{left:727.715985px;}
.x16_c01085{left:729.745485px;}
@media print{
.v3_c01085{vertical-align:-27.860800pt;}
.v0_c01085{vertical-align:0.000000pt;}
.v1_c01085{vertical-align:10.137600pt;}
.v2_c01085{vertical-align:30.412800pt;}
.ls1b_c01085{letter-spacing:-2.932160pt;}
.ls1f_c01085{letter-spacing:-2.919846pt;}
.ls29_c01085{letter-spacing:-2.907526pt;}
.lsa_c01085{letter-spacing:-2.464000pt;}
.ls22_c01085{letter-spacing:-2.414726pt;}
.ls2a_c01085{letter-spacing:-2.365446pt;}
.ls23_c01085{letter-spacing:-2.359280pt;}
.ls27_c01085{letter-spacing:-2.334646pt;}
.ls1d_c01085{letter-spacing:-2.316160pt;}
.ls17_c01085{letter-spacing:-2.217600pt;}
.ls28_c01085{letter-spacing:-2.143680pt;}
.ls21_c01085{letter-spacing:-2.008160pt;}
.lsd_c01085{letter-spacing:-1.256640pt;}
.ls2e_c01085{letter-spacing:-0.185293pt;}
.ls6_c01085{letter-spacing:0.000000pt;}
.ls9_c01085{letter-spacing:0.176000pt;}
.ls8_c01085{letter-spacing:0.636909pt;}
.ls10_c01085{letter-spacing:0.686409pt;}
.ls7_c01085{letter-spacing:0.730400pt;}
.ls19_c01085{letter-spacing:0.834805pt;}
.ls15_c01085{letter-spacing:0.913653pt;}
.ls11_c01085{letter-spacing:1.029600pt;}
.lsb_c01085{letter-spacing:1.698400pt;}
.ls2d_c01085{letter-spacing:1.821024pt;}
.ls26_c01085{letter-spacing:2.594792pt;}
.ls2_c01085{letter-spacing:2.770951pt;}
.lsc_c01085{letter-spacing:2.995018pt;}
.ls12_c01085{letter-spacing:3.027209pt;}
.ls25_c01085{letter-spacing:3.115209pt;}
.ls16_c01085{letter-spacing:3.168000pt;}
.ls13_c01085{letter-spacing:3.185609pt;}
.ls2c_c01085{letter-spacing:3.238400pt;}
.ls30_c01085{letter-spacing:3.256000pt;}
.ls18_c01085{letter-spacing:3.273609pt;}
.ls1e_c01085{letter-spacing:3.308800pt;}
.ls4_c01085{letter-spacing:3.335209pt;}
.ls5_c01085{letter-spacing:3.379209pt;}
.lsf_c01085{letter-spacing:3.449609pt;}
.ls2b_c01085{letter-spacing:3.520000pt;}
.ls14_c01085{letter-spacing:3.625609pt;}
.ls3_c01085{letter-spacing:3.740000pt;}
.ls0_c01085{letter-spacing:9.282064pt;}
.ls2f_c01085{letter-spacing:46.886576pt;}
.ls31_c01085{letter-spacing:48.153776pt;}
.ls24_c01085{letter-spacing:49.420976pt;}
.ls1a_c01085{letter-spacing:51.955376pt;}
.lse_c01085{letter-spacing:53.222576pt;}
.ls1c_c01085{letter-spacing:57.024176pt;}
.ls20_c01085{letter-spacing:58.291376pt;}
.ls1_c01085{letter-spacing:81.036736pt;}
.ws2_c01085{word-spacing:-17.600000pt;}
.ws1_c01085{word-spacing:-3.652000pt;}
.ws0_c01085{word-spacing:-2.297949pt;}
.ws3_c01085{word-spacing:0.000000pt;}
._9_c01085{margin-left:-20.613544pt;}
._8_c01085{margin-left:-10.211564pt;}
._0_c01085{margin-left:-1.196800pt;}
._4_c01085{width:9.005822pt;}
._3_c01085{width:10.103886pt;}
._5_c01085{width:12.849457pt;}
._6_c01085{width:27.648632pt;}
._1_c01085{width:30.119497pt;}
._2_c01085{width:127.929702pt;}
._7_c01085{width:1274.227181pt;}
.fs4_c01085{font-size:3.520000pt;}
.fsb_c01085{font-size:5.104176pt;}
.fsc_c01085{font-size:13.728176pt;}
.fs3_c01085{font-size:14.608000pt;}
.fs26_c01085{font-size:20.064000pt;}
.fsd_c01085{font-size:20.592000pt;}
.fse_c01085{font-size:29.920000pt;}
.fs7_c01085{font-size:33.968000pt;}
.fs1f_c01085{font-size:35.376000pt;}
.fs8_c01085{font-size:35.904000pt;}
.fs1d_c01085{font-size:39.952176pt;}
.fs23_c01085{font-size:46.886576pt;}
.fs25_c01085{font-size:48.153776pt;}
.fs1c_c01085{font-size:49.420976pt;}
.fs14_c01085{font-size:51.955376pt;}
.fs9_c01085{font-size:53.222576pt;}
.fs16_c01085{font-size:57.024176pt;}
.fs1a_c01085{font-size:57.376000pt;}
.fs19_c01085{font-size:58.291376pt;}
.fsf_c01085{font-size:60.544176pt;}
.fs20_c01085{font-size:61.248000pt;}
.fs1e_c01085{font-size:62.304176pt;}
.fs12_c01085{font-size:63.360000pt;}
.fs10_c01085{font-size:63.712176pt;}
.fs22_c01085{font-size:64.768000pt;}
.fs24_c01085{font-size:65.120000pt;}
.fs13_c01085{font-size:65.472176pt;}
.fs17_c01085{font-size:66.176000pt;}
.fs1_c01085{font-size:66.704176pt;}
.fs1b_c01085{font-size:67.408000pt;}
.fs2_c01085{font-size:67.584176pt;}
.fsa_c01085{font-size:68.992176pt;}
.fs5_c01085{font-size:70.400000pt;}
.fs11_c01085{font-size:72.512176pt;}
.fs0_c01085{font-size:74.800000pt;}
.fs21_c01085{font-size:83.072176pt;}
.fs18_c01085{font-size:83.424176pt;}
.fs15_c01085{font-size:83.776000pt;}
.fs6_c01085{font-size:107.008000pt;}
.y0_c01085{bottom:0.000000pt;}
.y1_c01085{bottom:68.000000pt;}
.y1e_c01085{bottom:136.779320pt;}
.y1d_c01085{bottom:144.065720pt;}
.y1c_c01085{bottom:173.211320pt;}
.y1b_c01085{bottom:201.718920pt;}
.y1a_c01085{bottom:259.064120pt;}
.y19_c01085{bottom:315.137720pt;}
.y18_c01085{bottom:341.748920pt;}
.y17_c01085{bottom:373.107720pt;}
.y16_c01085{bottom:399.089720pt;}
.y15_c01085{bottom:401.940920pt;}
.y13_c01085{bottom:429.814920pt;}
.y14_c01085{bottom:431.082120pt;}
.y12_c01085{bottom:458.010120pt;}
.y11_c01085{bottom:485.576120pt;}
.y10_c01085{bottom:543.550520pt;}
.yf_c01085{bottom:572.379320pt;}
.ye_c01085{bottom:628.136120pt;}
.y3_c01085{bottom:629.086520pt;}
.yd_c01085{bottom:684.205320pt;}
.yc_c01085{bottom:711.450120pt;}
.yb_c01085{bottom:713.988920pt;}
.y2_c01085{bottom:741.867320pt;}
.ya_c01085{bottom:742.500920pt;}
.y5_c01085{bottom:822.646920pt;}
.y4_c01085{bottom:827.715720pt;}
.y6_c01085{bottom:956.019720pt;}
.y9_c01085{bottom:956.653320pt;}
.y7_c01085{bottom:957.603720pt;}
.y8_c01085{bottom:965.206920pt;}
.h6_c01085{height:3.454688pt;}
.he_c01085{height:14.318059pt;}
.h5_c01085{height:14.336953pt;}
.hf_c01085{height:20.209922pt;}
.h28_c01085{height:20.926125pt;}
.h25_c01085{height:31.226460pt;}
.h27_c01085{height:32.070415pt;}
.h1d_c01085{height:32.914370pt;}
.h15_c01085{height:34.602280pt;}
.ha_c01085{height:35.427563pt;}
.hc_c01085{height:35.446236pt;}
.h20_c01085{height:36.896063pt;}
.hb_c01085{height:37.446750pt;}
.h17_c01085{height:37.978101pt;}
.h1a_c01085{height:38.822056pt;}
.h1e_c01085{height:39.210876pt;}
.h1b_c01085{height:56.311406pt;}
.h13_c01085{height:62.184375pt;}
.h11_c01085{height:62.530016pt;}
.h10_c01085{height:63.145684pt;}
.h23_c01085{height:63.566250pt;}
.h21_c01085{height:63.879750pt;}
.h14_c01085{height:64.257360pt;}
.h18_c01085{height:64.948125pt;}
.h1f_c01085{height:64.981309pt;}
.h3_c01085{height:65.466501pt;}
.h4_c01085{height:66.330173pt;}
.hd_c01085{height:67.712048pt;}
.h26_c01085{height:67.918125pt;}
.h7_c01085{height:69.093750pt;}
.h1c_c01085{height:70.304438pt;}
.h24_c01085{height:71.131329pt;}
.h12_c01085{height:71.166735pt;}
.h2_c01085{height:73.412109pt;}
.h16_c01085{height:82.221563pt;}
.h22_c01085{height:86.641684pt;}
.h19_c01085{height:87.008809pt;}
.h8_c01085{height:99.506550pt;}
.h9_c01085{height:111.606000pt;}
.h1_c01085{height:986.666667pt;}
.h0_c01085{height:1122.666667pt;}
.w1_c01085{width:689.333333pt;}
.w0_c01085{width:793.333333pt;}
.x0_c01085{left:0.000000pt;}
.x1_c01085{left:52.000000pt;}
.x2_c01085{left:68.381853pt;}
.x3_c01085{left:69.578653pt;}
.x43_c01085{left:106.749853pt;}
.x19_c01085{left:107.656253pt;}
.x4_c01085{left:117.917053pt;}
.x2d_c01085{left:129.339453pt;}
.x57_c01085{left:132.837453pt;}
.x20_c01085{left:137.259453pt;}
.xb_c01085{left:138.451853pt;}
.x2e_c01085{left:139.758653pt;}
.x2a_c01085{left:148.070253pt;}
.xc_c01085{left:153.244653pt;}
.xd_c01085{left:154.146653pt;}
.x2f_c01085{left:157.455453pt;}
.x60_c01085{left:166.893453pt;}
.x31_c01085{left:169.124253pt;}
.x44_c01085{left:174.866253pt;}
.x2b_c01085{left:176.393053pt;}
.x5_c01085{left:178.166253pt;}
.x65_c01085{left:184.603453pt;}
.x58_c01085{left:185.619853pt;}
.x54_c01085{left:187.045453pt;}
.x25_c01085{left:188.787853pt;}
.xe_c01085{left:191.221053pt;}
.x5f_c01085{left:192.602653pt;}
.x6_c01085{left:196.483453pt;}
.x55_c01085{left:205.235053pt;}
.x30_c01085{left:206.330653pt;}
.x59_c01085{left:215.473853pt;}
.x5a_c01085{left:223.649053pt;}
.x4b_c01085{left:225.998653pt;}
.x7_c01085{left:227.305453pt;}
.x26_c01085{left:234.547853pt;}
.x8_c01085{left:236.285853pt;}
.xf_c01085{left:241.601053pt;}
.x39_c01085{left:244.320253pt;}
.x1a_c01085{left:246.326653pt;}
.x45_c01085{left:252.482253pt;}
.x27_c01085{left:253.762653pt;}
.x21_c01085{left:256.402653pt;}
.x28_c01085{left:270.139453pt;}
.x4c_c01085{left:274.939853pt;}
.x10_c01085{left:276.453453pt;}
.x4d_c01085{left:280.426653pt;}
.x3a_c01085{left:282.890653pt;}
.x29_c01085{left:285.059853pt;}
.x2c_c01085{left:286.683453pt;}
.x1b_c01085{left:288.157453pt;}
.x5b_c01085{left:294.075453pt;}
.x9_c01085{left:296.623053pt;}
.x5c_c01085{left:299.681053pt;}
.x3b_c01085{left:303.482653pt;}
.x1c_c01085{left:307.288653pt;}
.x11_c01085{left:312.335453pt;}
.x12_c01085{left:318.592253pt;}
.x68_c01085{left:324.805053pt;}
.x56_c01085{left:343.562253pt;}
.x13_c01085{left:344.970253pt;}
.xa_c01085{left:346.923853pt;}
.x69_c01085{left:353.224653pt;}
.x22_c01085{left:354.676653pt;}
.x5e_c01085{left:363.309453pt;}
.x52_c01085{left:364.400653pt;}
.x61_c01085{left:373.495453pt;}
.x46_c01085{left:384.169853pt;}
.x35_c01085{left:385.221453pt;}
.x3c_c01085{left:387.513853pt;}
.x3d_c01085{left:393.599053pt;}
.x4e_c01085{left:394.509853pt;}
.x1d_c01085{left:404.607853pt;}
.x3e_c01085{left:417.310653pt;}
.x32_c01085{left:423.004253pt;}
.x36_c01085{left:432.019853pt;}
.x3f_c01085{left:441.875853pt;}
.x23_c01085{left:442.839453pt;}
.x6b_c01085{left:450.988253pt;}
.x4f_c01085{left:453.795453pt;}
.x40_c01085{left:462.516253pt;}
.x5d_c01085{left:471.606653pt;}
.x53_c01085{left:473.287453pt;}
.x62_c01085{left:481.572653pt;}
.x50_c01085{left:482.615453pt;}
.x47_c01085{left:492.722253pt;}
.x6a_c01085{left:500.175853pt;}
.x37_c01085{left:501.821453pt;}
.x41_c01085{left:511.307853pt;}
.x42_c01085{left:512.258253pt;}
.x48_c01085{left:520.121053pt;}
.x33_c01085{left:521.458653pt;}
.x38_c01085{left:539.802253pt;}
.x51_c01085{left:540.902253pt;}
.x1e_c01085{left:542.464253pt;}
.x63_c01085{left:557.050253pt;}
.x64_c01085{left:559.941053pt;}
.x66_c01085{left:560.847453pt;}
.x34_c01085{left:562.501853pt;}
.x1f_c01085{left:569.911453pt;}
.x49_c01085{left:580.792653pt;}
.x24_c01085{left:590.705853pt;}
.x67_c01085{left:598.652253pt;}
.x4a_c01085{left:609.265053pt;}
.x17_c01085{left:616.547053pt;}
.x14_c01085{left:627.318253pt;}
.x15_c01085{left:637.073053pt;}
.x18_c01085{left:646.858653pt;}
.x16_c01085{left:648.662653pt;}
}





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

.ir_c01086:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01086{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01086;src:url('chunks/assets/font_73097d965a22f41f0341e2a6.woff2')format("woff");}.ff1_c01086{font-family:ff1_c01086;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01086;src:url('chunks/assets/font_7e411b37f9f13723525288e1.woff2')format("woff");}.ff2_c01086{font-family:ff2_c01086;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01086;src:url('chunks/assets/font_3b3f4fc74877cce5e21e9347.woff2')format("woff");}.ff3_c01086{font-family:ff3_c01086;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01086;src:url('chunks/assets/font_0438aeaf4d970316599a0644.woff2')format("woff");}.ff4_c01086{font-family:ff4_c01086;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4_c01086{transform:matrix(0.016667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.016667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.016667,0.000000,0.000000,0.250000,0,0);}
.m25_c01086{transform:matrix(0.046512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.046512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.046512,0.000000,0.000000,0.250000,0,0);}
.m94_c01086{transform:matrix(0.047002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.047002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.047002,0.000000,0.000000,0.250000,0,0);}
.m96_c01086{transform:matrix(0.052288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.052288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.052288,0.000000,0.000000,0.250000,0,0);}
.m68_c01086{transform:matrix(0.061516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.061516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.061516,0.000000,0.000000,0.250000,0,0);}
.m26_c01086{transform:matrix(0.078488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078488,0.000000,0.000000,0.250000,0,0);}
.m4e_c01086{transform:matrix(0.079719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.079719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.079719,0.000000,0.000000,0.250000,0,0);}
.m69_c01086{transform:matrix(0.081818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081818,0.000000,0.000000,0.250000,0,0);}
.m1_c01086{transform:matrix(0.085354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085354,0.000000,0.000000,0.250000,0,0);}
.m27_c01086{transform:matrix(0.087209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087209,0.000000,0.000000,0.250000,0,0);}
.m7_c01086{transform:matrix(0.088889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088889,0.000000,0.000000,0.250000,0,0);}
.m6_c01086{transform:matrix(0.091666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091666,0.000000,0.000000,0.250000,0,0);}
.m80_c01086{transform:matrix(0.093183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093183,0.000000,0.000000,0.250000,0,0);}
.m28_c01086{transform:matrix(0.112404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112404,0.000000,0.000000,0.250000,0,0);}
.m53_c01086{transform:matrix(0.113638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113638,0.000000,0.000000,0.250000,0,0);}
.m2_c01086{transform:matrix(0.122223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122223,0.000000,0.000000,0.250000,0,0);}
.m95_c01086{transform:matrix(0.132353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132353,0.000000,0.000000,0.250000,0,0);}
.m5_c01086{transform:matrix(0.138888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138888,0.000000,0.000000,0.250000,0,0);}
.m1d_c01086{transform:matrix(0.143413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143413,0.000000,0.000000,0.250000,0,0);}
.m82_c01086{transform:matrix(0.154773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154773,0.000000,0.000000,0.250000,0,0);}
.m2f_c01086{transform:matrix(0.156670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156670,0.000000,0.000000,0.250000,0,0);}
.m9b_c01086{transform:matrix(0.156977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156977,0.000000,0.000000,0.250000,0,0);}
.m77_c01086{transform:matrix(0.157052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157052,0.000000,0.000000,0.250000,0,0);}
.m76_c01086{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);}
.m99_c01086{transform:matrix(0.169767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169767,0.000000,0.000000,0.250000,0,0);}
.m61_c01086{transform:matrix(0.172614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172614,0.000000,0.000000,0.250000,0,0);}
.m1b_c01086{transform:matrix(0.178410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178410,0.000000,0.000000,0.250000,0,0);}
.m1a_c01086{transform:matrix(0.179561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179561,0.000000,0.000000,0.250000,0,0);}
.m24_c01086{transform:matrix(0.183139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183139,0.000000,0.000000,0.250000,0,0);}
.m4d_c01086{transform:matrix(0.186925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186925,0.000000,0.000000,0.250000,0,0);}
.m3_c01086{transform:matrix(0.192263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192263,0.000000,0.000000,0.250000,0,0);}
.m67_c01086{transform:matrix(0.200787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200787,0.000000,0.000000,0.250000,0,0);}
.m8_c01086{transform:matrix(0.207639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207639,0.000000,0.000000,0.250000,0,0);}
.m2a_c01086{transform:matrix(0.209418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209418,0.000000,0.000000,0.250000,0,0);}
.m22_c01086{transform:matrix(0.212742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212742,0.000000,0.000000,0.250000,0,0);}
.m51_c01086{transform:matrix(0.231371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231371,0.000000,0.000000,0.250000,0,0);}
.m31_c01086{transform:matrix(0.239322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239322,0.000000,0.000000,0.250000,0,0);}
.m66_c01086{transform:matrix(0.242264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242264,0.000000,0.000000,0.250000,0,0);}
.m5a_c01086{transform:matrix(0.243722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243722,0.000000,0.000000,0.250000,0,0);}
.m0_c01086{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m75_c01086{transform:matrix(0.251249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251249,0.000000,0.000000,0.250000,0,0);}
.ma_c01086{transform:matrix(0.252323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252323,0.000000,0.000000,0.250000,0,0);}
.m89_c01086{transform:matrix(0.254833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254833,0.000000,0.000000,0.250000,0,0);}
.m93_c01086{transform:matrix(0.254989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254989,0.000000,0.000000,0.250000,0,0);}
.m2e_c01086{transform:matrix(0.255828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255828,0.000000,0.000000,0.250000,0,0);}
.m78_c01086{transform:matrix(0.256052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256052,0.000000,0.000000,0.250000,0,0);}
.m72_c01086{transform:matrix(0.257441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257441,0.000000,0.000000,0.250000,0,0);}
.m85_c01086{transform:matrix(0.257575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257575,0.000000,0.000000,0.250000,0,0);}
.m44_c01086{transform:matrix(0.258210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258210,0.000000,0.000000,0.250000,0,0);}
.m71_c01086{transform:matrix(0.258273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258273,0.000000,0.000000,0.250000,0,0);}
.me_c01086{transform:matrix(0.259833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259833,0.000000,0.000000,0.250000,0,0);}
.m84_c01086{transform:matrix(0.259891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259891,0.000000,0.000000,0.250000,0,0);}
.m52_c01086{transform:matrix(0.259927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259927,0.000000,0.000000,0.250000,0,0);}
.m63_c01086{transform:matrix(0.260505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260505,0.000000,0.000000,0.250000,0,0);}
.m42_c01086{transform:matrix(0.261252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261252,0.000000,0.000000,0.250000,0,0);}
.m2c_c01086{transform:matrix(0.261813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261813,0.000000,0.000000,0.250000,0,0);}
.m81_c01086{transform:matrix(0.261837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261837,0.000000,0.000000,0.250000,0,0);}
.m20_c01086{transform:matrix(0.262980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262980,0.000000,0.000000,0.250000,0,0);}
.m60_c01086{transform:matrix(0.263971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263971,0.000000,0.000000,0.250000,0,0);}
.m57_c01086{transform:matrix(0.264406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264406,0.000000,0.000000,0.250000,0,0);}
.m8d_c01086{transform:matrix(0.264594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264594,0.000000,0.000000,0.250000,0,0);}
.m4a_c01086{transform:matrix(0.264790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264790,0.000000,0.000000,0.250000,0,0);}
.m49_c01086{transform:matrix(0.265908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265908,0.000000,0.000000,0.250000,0,0);}
.m21_c01086{transform:matrix(0.266076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266076,0.000000,0.000000,0.250000,0,0);}
.m36_c01086{transform:matrix(0.267567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267567,0.000000,0.000000,0.250000,0,0);}
.m30_c01086{transform:matrix(0.267742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267742,0.000000,0.000000,0.250000,0,0);}
.m8c_c01086{transform:matrix(0.268251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268251,0.000000,0.000000,0.250000,0,0);}
.m3f_c01086{transform:matrix(0.268792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268792,0.000000,0.000000,0.250000,0,0);}
.m45_c01086{transform:matrix(0.270365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270365,0.000000,0.000000,0.250000,0,0);}
.m70_c01086{transform:matrix(0.270797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270797,0.000000,0.000000,0.250000,0,0);}
.m12_c01086{transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);}
.m65_c01086{transform:matrix(0.271569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271569,0.000000,0.000000,0.250000,0,0);}
.md_c01086{transform:matrix(0.272652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272652,0.000000,0.000000,0.250000,0,0);}
.m17_c01086{transform:matrix(0.273233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273233,0.000000,0.000000,0.250000,0,0);}
.m3c_c01086{transform:matrix(0.273628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273628,0.000000,0.000000,0.250000,0,0);}
.m88_c01086{transform:matrix(0.273963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273963,0.000000,0.000000,0.250000,0,0);}
.m11_c01086{transform:matrix(0.275502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275502,0.000000,0.000000,0.250000,0,0);}
.m4b_c01086{transform:matrix(0.275856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275856,0.000000,0.000000,0.250000,0,0);}
.m3a_c01086{transform:matrix(0.276251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276251,0.000000,0.000000,0.250000,0,0);}
.m23_c01086{transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);}
.m4f_c01086{transform:matrix(0.276810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276810,0.000000,0.000000,0.250000,0,0);}
.m86_c01086{transform:matrix(0.277084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277084,0.000000,0.000000,0.250000,0,0);}
.m39_c01086{transform:matrix(0.277218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277218,0.000000,0.000000,0.250000,0,0);}
.m13_c01086{transform:matrix(0.278277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278277,0.000000,0.000000,0.250000,0,0);}
.m7e_c01086{transform:matrix(0.279348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279348,0.000000,0.000000,0.250000,0,0);}
.m7c_c01086{transform:matrix(0.279635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279635,0.000000,0.000000,0.250000,0,0);}
.m83_c01086{transform:matrix(0.279778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279778,0.000000,0.000000,0.250000,0,0);}
.m9d_c01086{transform:matrix(0.280486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280486,0.000000,0.000000,0.250000,0,0);}
.m1e_c01086{transform:matrix(0.280773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280773,0.000000,0.000000,0.250000,0,0);}
.m2d_c01086{transform:matrix(0.285021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285021,0.000000,0.000000,0.250000,0,0);}
.m9a_c01086{transform:matrix(0.285743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285743,0.000000,0.000000,0.250000,0,0);}
.m29_c01086{transform:matrix(0.287928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287928,0.000000,0.000000,0.250000,0,0);}
.m90_c01086{transform:matrix(0.288160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288160,0.000000,0.000000,0.250000,0,0);}
.m98_c01086{transform:matrix(0.289039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289039,0.000000,0.000000,0.250000,0,0);}
.m62_c01086{transform:matrix(0.289569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289569,0.000000,0.000000,0.250000,0,0);}
.m16_c01086{transform:matrix(0.290947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290947,0.000000,0.000000,0.250000,0,0);}
.m33_c01086{transform:matrix(0.291211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291211,0.000000,0.000000,0.250000,0,0);}
.m6e_c01086{transform:matrix(0.291401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291401,0.000000,0.000000,0.250000,0,0);}
.m56_c01086{transform:matrix(0.292157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292157,0.000000,0.000000,0.250000,0,0);}
.m6b_c01086{transform:matrix(0.292388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292388,0.000000,0.000000,0.250000,0,0);}
.m18_c01086{transform:matrix(0.294239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294239,0.000000,0.000000,0.250000,0,0);}
.m55_c01086{transform:matrix(0.294428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294428,0.000000,0.000000,0.250000,0,0);}
.m6f_c01086{transform:matrix(0.294679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294679,0.000000,0.000000,0.250000,0,0);}
.m4c_c01086{transform:matrix(0.294873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294873,0.000000,0.000000,0.250000,0,0);}
.m14_c01086{transform:matrix(0.295719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295719,0.000000,0.000000,0.250000,0,0);}
.mb_c01086{transform:matrix(0.295926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295926,0.000000,0.000000,0.250000,0,0);}
.m34_c01086{transform:matrix(0.296227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296227,0.000000,0.000000,0.250000,0,0);}
.m97_c01086{transform:matrix(0.296272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296272,0.000000,0.000000,0.250000,0,0);}
.m5c_c01086{transform:matrix(0.296530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296530,0.000000,0.000000,0.250000,0,0);}
.m47_c01086{transform:matrix(0.298047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298047,0.000000,0.000000,0.250000,0,0);}
.m35_c01086{transform:matrix(0.298170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298170,0.000000,0.000000,0.250000,0,0);}
.m40_c01086{transform:matrix(0.298562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298562,0.000000,0.000000,0.250000,0,0);}
.m8b_c01086{transform:matrix(0.301415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301415,0.000000,0.000000,0.250000,0,0);}
.m58_c01086{transform:matrix(0.302058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302058,0.000000,0.000000,0.250000,0,0);}
.mc_c01086{transform:matrix(0.302262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302262,0.000000,0.000000,0.250000,0,0);}
.m43_c01086{transform:matrix(0.302382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302382,0.000000,0.000000,0.250000,0,0);}
.m79_c01086{transform:matrix(0.303154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303154,0.000000,0.000000,0.250000,0,0);}
.m10_c01086{transform:matrix(0.303588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303588,0.000000,0.000000,0.250000,0,0);}
.m3b_c01086{transform:matrix(0.309030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309030,0.000000,0.000000,0.250000,0,0);}
.m41_c01086{transform:matrix(0.309194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309194,0.000000,0.000000,0.250000,0,0);}
.m8e_c01086{transform:matrix(0.309770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309770,0.000000,0.000000,0.250000,0,0);}
.m5d_c01086{transform:matrix(0.309891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309891,0.000000,0.000000,0.250000,0,0);}
.m7a_c01086{transform:matrix(0.311135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311135,0.000000,0.000000,0.250000,0,0);}
.m1f_c01086{transform:matrix(0.316375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316375,0.000000,0.000000,0.250000,0,0);}
.m3e_c01086{transform:matrix(0.317608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317608,0.000000,0.000000,0.250000,0,0);}
.m6d_c01086{transform:matrix(0.318747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318747,0.000000,0.000000,0.250000,0,0);}
.m91_c01086{transform:matrix(0.320991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320991,0.000000,0.000000,0.250000,0,0);}
.m46_c01086{transform:matrix(0.321463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321463,0.000000,0.000000,0.250000,0,0);}
.m5f_c01086{transform:matrix(0.321903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321903,0.000000,0.000000,0.250000,0,0);}
.m5b_c01086{transform:matrix(0.322100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322100,0.000000,0.000000,0.250000,0,0);}
.m2b_c01086{transform:matrix(0.322165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322165,0.000000,0.000000,0.250000,0,0);}
.m7d_c01086{transform:matrix(0.322193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322193,0.000000,0.000000,0.250000,0,0);}
.m74_c01086{transform:matrix(0.323749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323749,0.000000,0.000000,0.250000,0,0);}
.m48_c01086{transform:matrix(0.329530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329530,0.000000,0.000000,0.250000,0,0);}
.m64_c01086{transform:matrix(0.331525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331525,0.000000,0.000000,0.250000,0,0);}
.m8a_c01086{transform:matrix(0.331547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331547,0.000000,0.000000,0.250000,0,0);}
.m9c_c01086{transform:matrix(0.332470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332470,0.000000,0.000000,0.250000,0,0);}
.m37_c01086{transform:matrix(0.332645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332645,0.000000,0.000000,0.250000,0,0);}
.m6a_c01086{transform:matrix(0.334942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334942,0.000000,0.000000,0.250000,0,0);}
.m59_c01086{transform:matrix(0.335191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335191,0.000000,0.000000,0.250000,0,0);}
.m7b_c01086{transform:matrix(0.335368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335368,0.000000,0.000000,0.250000,0,0);}
.m50_c01086{transform:matrix(0.335920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335920,0.000000,0.000000,0.250000,0,0);}
.m32_c01086{transform:matrix(0.338102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338102,0.000000,0.000000,0.250000,0,0);}
.m92_c01086{transform:matrix(0.339035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339035,0.000000,0.000000,0.250000,0,0);}
.m6c_c01086{transform:matrix(0.339746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339746,0.000000,0.000000,0.250000,0,0);}
.m38_c01086{transform:matrix(0.340141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340141,0.000000,0.000000,0.250000,0,0);}
.m1c_c01086{transform:matrix(0.341064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341064,0.000000,0.000000,0.250000,0,0);}
.m54_c01086{transform:matrix(0.341499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341499,0.000000,0.000000,0.250000,0,0);}
.m8f_c01086{transform:matrix(0.344194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344194,0.000000,0.000000,0.250000,0,0);}
.m7f_c01086{transform:matrix(0.345116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345116,0.000000,0.000000,0.250000,0,0);}
.m5e_c01086{transform:matrix(0.346215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346215,0.000000,0.000000,0.250000,0,0);}
.m15_c01086{transform:matrix(0.350875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350875,0.000000,0.000000,0.250000,0,0);}
.m87_c01086{transform:matrix(0.350946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350946,0.000000,0.000000,0.250000,0,0);}
.m3d_c01086{transform:matrix(0.355794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355794,0.000000,0.000000,0.250000,0,0);}
.m9_c01086{transform:matrix(0.358794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358794,0.000000,0.000000,0.250000,0,0);}
.m19_c01086{transform:matrix(0.358918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358918,0.000000,0.000000,0.250000,0,0);}
.m73_c01086{transform:matrix(0.360594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360594,0.000000,0.000000,0.250000,0,0);}
.mf_c01086{transform:matrix(0.416113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416113,0.000000,0.000000,0.250000,0,0);}
.v1_c01086{vertical-align:-20.001168px;}
.v0_c01086{vertical-align:0.000000px;}
.ls5_c01086{letter-spacing:-3.354127px;}
.ls21_c01086{letter-spacing:-3.104640px;}
.ls1c_c01086{letter-spacing:-2.910600px;}
.lse_c01086{letter-spacing:-2.882880px;}
.ls2b_c01086{letter-spacing:-2.862090px;}
.ls16_c01086{letter-spacing:-2.827440px;}
.ls14_c01086{letter-spacing:-2.737350px;}
.lsd_c01086{letter-spacing:-2.702700px;}
.ls27_c01086{letter-spacing:-2.661127px;}
.ls1f_c01086{letter-spacing:-2.550240px;}
.ls23_c01086{letter-spacing:-2.541825px;}
.ls11_c01086{letter-spacing:-2.439367px;}
.ls2d_c01086{letter-spacing:-2.240277px;}
.ls30_c01086{letter-spacing:-0.470448px;}
.lsc_c01086{letter-spacing:-0.087516px;}
.ls3_c01086{letter-spacing:0.000000px;}
.ls1e_c01086{letter-spacing:0.165073px;}
.ls25_c01086{letter-spacing:0.575190px;}
.ls2f_c01086{letter-spacing:1.102761px;}
.ls29_c01086{letter-spacing:1.593029px;}
.lsf_c01086{letter-spacing:1.787544px;}
.lsb_c01086{letter-spacing:2.145949px;}
.ls1_c01086{letter-spacing:2.331218px;}
.ls26_c01086{letter-spacing:2.759962px;}
.ls0_c01086{letter-spacing:2.759969px;}
.ls8_c01086{letter-spacing:3.445200px;}
.ls2c_c01086{letter-spacing:3.484810px;}
.ls17_c01086{letter-spacing:3.524400px;}
.ls1a_c01086{letter-spacing:3.603610px;}
.ls13_c01086{letter-spacing:3.752110px;}
.ls7_c01086{letter-spacing:3.801610px;}
.ls9_c01086{letter-spacing:3.910500px;}
.ls10_c01086{letter-spacing:3.920400px;}
.ls1b_c01086{letter-spacing:3.930310px;}
.ls18_c01086{letter-spacing:3.950110px;}
.lsa_c01086{letter-spacing:4.039200px;}
.ls6_c01086{letter-spacing:4.055990px;}
.ls2a_c01086{letter-spacing:4.088700px;}
.ls19_c01086{letter-spacing:4.108500px;}
.ls15_c01086{letter-spacing:4.177810px;}
.ls2_c01086{letter-spacing:8.142552px;}
.ls20_c01086{letter-spacing:31.363200px;}
.ls24_c01086{letter-spacing:55.598598px;}
.ls12_c01086{letter-spacing:61.300998px;}
.ls28_c01086{letter-spacing:62.726400px;}
.ls4_c01086{letter-spacing:64.152198px;}
.ls1d_c01086{letter-spacing:69.854598px;}
.ls2e_c01086{letter-spacing:72.705798px;}
.ls22_c01086{letter-spacing:78.408198px;}
.sc__c01086{text-shadow:none;}
.sc0_c01086{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01086{-webkit-text-stroke:0px transparent;}
.sc0_c01086{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01086{word-spacing:0.000000px;}
._0_c01086{width:17.866016px;}
._1_c01086{width:75.705584px;}
.fc0_c01086{color:transparent;}
.fs1_c01086{font-size:22.176000px;}
.fs1d_c01086{font-size:25.146000px;}
.fs2_c01086{font-size:27.720000px;}
.fs1e_c01086{font-size:31.363200px;}
.fs19_c01086{font-size:32.076198px;}
.fs0_c01086{font-size:33.264000px;}
.fse_c01086{font-size:38.808000px;}
.fs20_c01086{font-size:42.570000px;}
.fsb_c01086{font-size:51.480000px;}
.fs1f_c01086{font-size:54.648000px;}
.fs23_c01086{font-size:55.598598px;}
.fs14_c01086{font-size:61.300998px;}
.fs24_c01086{font-size:62.726400px;}
.fs3_c01086{font-size:64.152198px;}
.fs7_c01086{font-size:68.904000px;}
.fs13_c01086{font-size:69.696198px;}
.fs1b_c01086{font-size:69.854598px;}
.fs15_c01086{font-size:70.488000px;}
.fs18_c01086{font-size:72.072198px;}
.fs26_c01086{font-size:72.705798px;}
.fs1c_c01086{font-size:72.864000px;}
.fs10_c01086{font-size:73.260000px;}
.fs12_c01086{font-size:75.042198px;}
.fs6_c01086{font-size:76.032198px;}
.fsc_c01086{font-size:77.220000px;}
.fs25_c01086{font-size:78.012198px;}
.fs8_c01086{font-size:78.210000px;}
.fs11_c01086{font-size:78.408000px;}
.fs22_c01086{font-size:78.408198px;}
.fsa_c01086{font-size:78.606198px;}
.fs16_c01086{font-size:79.002198px;}
.fs9_c01086{font-size:80.784000px;}
.fs5_c01086{font-size:81.774000px;}
.fs17_c01086{font-size:82.170000px;}
.fsd_c01086{font-size:82.368000px;}
.fs1a_c01086{font-size:83.160000px;}
.fsf_c01086{font-size:83.556198px;}
.fs21_c01086{font-size:88.704000px;}
.fs4_c01086{font-size:95.832198px;}
.y0_c01086{bottom:0.000000px;}
.y1_c01086{bottom:76.500000px;}
.y21_c01086{bottom:131.423535px;}
.y20_c01086{bottom:158.866335px;}
.y1e_c01086{bottom:194.506335px;}
.y1f_c01086{bottom:205.198335px;}
.y1d_c01086{bottom:226.582335px;}
.y3_c01086{bottom:233.348985px;}
.y1c_c01086{bottom:289.308735px;}
.y1b_c01086{bottom:290.372985px;}
.y1a_c01086{bottom:323.874585px;}
.y19_c01086{bottom:356.311935px;}
.y18_c01086{bottom:386.605935px;}
.y17_c01086{bottom:421.171785px;}
.y16_c01086{bottom:433.650735px;}
.y2_c01086{bottom:435.427785px;}
.y14_c01086{bottom:453.247785px;}
.y15_c01086{bottom:458.242335px;}
.y13_c01086{bottom:478.200735px;}
.y11_c01086{bottom:483.903135px;}
.y12_c01086{bottom:488.887785px;}
.y10_c01086{bottom:505.287135px;}
.yf_c01086{bottom:516.686985px;}
.ye_c01086{bottom:549.119385px;}
.yd_c01086{bottom:580.482585px;}
.yc_c01086{bottom:643.570335px;}
.ya_c01086{bottom:676.002735px;}
.yb_c01086{bottom:677.066985px;}
.y8_c01086{bottom:740.506185px;}
.y7_c01086{bottom:773.294985px;}
.y9_c01086{bottom:787.199535px;}
.y6_c01086{bottom:900.534735px;}
.y4_c01086{bottom:910.870335px;}
.y5_c01086{bottom:930.823785px;}
.h1e_c01086{height:20.887891px;}
.h3_c01086{height:23.128875px;}
.h1d_c01086{height:26.226492px;}
.h4_c01086{height:28.911094px;}
.h19_c01086{height:31.481034px;}
.h2_c01086{height:34.693313px;}
.h23_c01086{height:37.028666px;}
.hf_c01086{height:40.475531px;}
.h14_c01086{height:40.826465px;}
.h24_c01086{height:41.775782px;}
.h5_c01086{height:42.725364px;}
.h20_c01086{height:44.399180px;}
.h1b_c01086{height:46.523162px;}
.h28_c01086{height:48.422061px;}
.h22_c01086{height:52.219860px;}
.h1f_c01086{height:56.996156px;}
.h13_c01086{height:68.403007px;}
.h25_c01086{height:69.145699px;}
.h18_c01086{height:70.734921px;}
.h1c_c01086{height:71.512031px;}
.h9_c01086{height:71.864719px;}
.h15_c01086{height:73.516781px;}
.h12_c01086{height:73.649813px;}
.h8_c01086{height:74.621444px;}
.h26_c01086{height:75.169050px;}
.ha_c01086{height:76.758838px;}
.h11_c01086{height:76.953164px;}
.hc_c01086{height:77.147685px;}
.h16_c01086{height:77.536337px;}
.hb_c01086{height:79.285078px;}
.h7_c01086{height:80.256709px;}
.hd_c01086{height:80.538047px;}
.h17_c01086{height:80.645361px;}
.he_c01086{height:80.839688px;}
.h27_c01086{height:81.364285px;}
.h10_c01086{height:82.005839px;}
.h1a_c01086{height:86.733281px;}
.h21_c01086{height:87.058125px;}
.h6_c01086{height:94.054062px;}
.h1_c01086{height:1110.000000px;}
.h0_c01086{height:1263.000000px;}
.w1_c01086{width:775.500000px;}
.w0_c01086{width:892.500000px;}
.x0_c01086{left:0.000000px;}
.x2_c01086{left:11.619285px;}
.x3_c01086{left:48.016635px;}
.x1_c01086{left:58.500000px;}
.x35_c01086{left:77.662185px;}
.x14_c01086{left:80.176785px;}
.x4_c01086{left:96.462285px;}
.x6c_c01086{left:118.554135px;}
.x36_c01086{left:121.826085px;}
.x5_c01086{left:123.657585px;}
.xe_c01086{left:124.687185px;}
.x37_c01086{left:143.927835px;}
.x34_c01086{left:147.269085px;}
.x15_c01086{left:156.164235px;}
.x68_c01086{left:157.198785px;}
.x58_c01086{left:166.272135px;}
.x3e_c01086{left:168.420435px;}
.x5a_c01086{left:177.087885px;}
.x1d_c01086{left:178.686735px;}
.xf_c01086{left:180.156885px;}
.x5e_c01086{left:188.804535px;}
.x16_c01086{left:190.452885px;}
.x27_c01086{left:200.590485px;}
.x4a_c01086{left:202.674435px;}
.x66_c01086{left:209.856885px;}
.x10_c01086{left:212.287335px;}
.x6d_c01086{left:218.346135px;}
.x5f_c01086{left:220.920135px;}
.x5b_c01086{left:233.938635px;}
.x28_c01086{left:235.002885px;}
.x29_c01086{left:242.026935px;}
.x1e_c01086{left:245.467185px;}
.x6_c01086{left:248.758935px;}
.x45_c01086{left:255.104835px;}
.x4f_c01086{left:256.164135px;}
.x5c_c01086{left:266.930385px;}
.x2a_c01086{left:268.148085px;}
.x38_c01086{left:278.716335px;}
.x69_c01086{left:280.097385px;}
.x2b_c01086{left:289.339035px;}
.x2c_c01086{left:301.144785px;}
.x6a_c01086{left:310.054785px;}
.x1f_c01086{left:322.543635px;}
.x39_c01086{left:323.617785px;}
.x2d_c01086{left:326.097735px;}
.x5d_c01086{left:332.047635px;}
.x41_c01086{left:333.166335px;}
.x63_c01086{left:334.443435px;}
.x17_c01086{left:335.507685px;}
.x6e_c01086{left:340.710135px;}
.x11_c01086{left:345.214635px;}
.x2e_c01086{left:346.407585px;}
.x20_c01086{left:355.659135px;}
.x7_c01086{left:357.837135px;}
.x52_c01086{left:365.895735px;}
.x21_c01086{left:367.846035px;}
.x42_c01086{left:377.201535px;}
.x46_c01086{left:378.622185px;}
.x53_c01086{left:386.210535px;}
.x22_c01086{left:389.828985px;}
.x8_c01086{left:398.090535px;}
.x9_c01086{left:399.867585px;}
.x23_c01086{left:403.184085px;}
.x6f_c01086{left:407.733135px;}
.x3f_c01086{left:411.168435px;}
.x24_c01086{left:414.861135px;}
.x12_c01086{left:422.261385px;}
.x2f_c01086{left:423.875085px;}
.x25_c01086{left:434.106735px;}
.x64_c01086{left:435.527385px;}
.x40_c01086{left:444.368085px;}
.x65_c01086{left:446.041185px;}
.x3a_c01086{left:457.000485px;}
.x70_c01086{left:464.737335px;}
.x18_c01086{left:466.464885px;}
.x54_c01086{left:470.796135px;}
.x60_c01086{left:484.690785px;}
.xa_c01086{left:488.616135px;}
.x13_c01086{left:489.799185px;}
.xb_c01086{left:497.877585px;}
.x4b_c01086{left:498.897285px;}
.x30_c01086{left:509.915985px;}
.x47_c01086{left:510.930735px;}
.xc_c01086{left:512.138535px;}
.x50_c01086{left:522.266235px;}
.x71_c01086{left:528.414135px;}
.x6b_c01086{left:530.314935px;}
.x31_c01086{left:533.270085px;}
.x55_c01086{left:543.145335px;}
.x19_c01086{left:545.075835px;}
.x61_c01086{left:552.946335px;}
.x3b_c01086{left:555.406485px;}
.x72_c01086{left:562.475085px;}
.x56_c01086{left:565.930185px;}
.x4c_c01086{left:567.108285px;}
.x1a_c01086{left:577.166685px;}
.x51_c01086{left:587.081535px;}
.x32_c01086{left:598.327935px;}
.x3c_c01086{left:599.377335px;}
.x1b_c01086{left:610.881135px;}
.x73_c01086{left:617.429985px;}
.x48_c01086{left:620.444535px;}
.xd_c01086{left:621.875085px;}
.x43_c01086{left:632.745285px;}
.x57_c01086{left:654.005535px;}
.x1c_c01086{left:655.173735px;}
.x33_c01086{left:665.766735px;}
.x74_c01086{left:673.340235px;}
.x4d_c01086{left:675.676635px;}
.x3d_c01086{left:677.567535px;}
.x59_c01086{left:697.768485px;}
.x26_c01086{left:700.515735px;}
.x44_c01086{left:702.728385px;}
.x49_c01086{left:704.059935px;}
.x67_c01086{left:706.985385px;}
.x4e_c01086{left:710.222685px;}
.x62_c01086{left:722.142285px;}
@media print{
.v1_c01086{vertical-align:-17.778816pt;}
.v0_c01086{vertical-align:0.000000pt;}
.ls5_c01086{letter-spacing:-2.981446pt;}
.ls21_c01086{letter-spacing:-2.759680pt;}
.ls1c_c01086{letter-spacing:-2.587200pt;}
.lse_c01086{letter-spacing:-2.562560pt;}
.ls2b_c01086{letter-spacing:-2.544080pt;}
.ls16_c01086{letter-spacing:-2.513280pt;}
.ls14_c01086{letter-spacing:-2.433200pt;}
.lsd_c01086{letter-spacing:-2.402400pt;}
.ls27_c01086{letter-spacing:-2.365446pt;}
.ls1f_c01086{letter-spacing:-2.266880pt;}
.ls23_c01086{letter-spacing:-2.259400pt;}
.ls11_c01086{letter-spacing:-2.168326pt;}
.ls2d_c01086{letter-spacing:-1.991357pt;}
.ls30_c01086{letter-spacing:-0.418176pt;}
.lsc_c01086{letter-spacing:-0.077792pt;}
.ls3_c01086{letter-spacing:0.000000pt;}
.ls1e_c01086{letter-spacing:0.146732pt;}
.ls25_c01086{letter-spacing:0.511280pt;}
.ls2f_c01086{letter-spacing:0.980232pt;}
.ls29_c01086{letter-spacing:1.416026pt;}
.lsf_c01086{letter-spacing:1.588928pt;}
.lsb_c01086{letter-spacing:1.907510pt;}
.ls1_c01086{letter-spacing:2.072194pt;}
.ls26_c01086{letter-spacing:2.453299pt;}
.ls0_c01086{letter-spacing:2.453306pt;}
.ls8_c01086{letter-spacing:3.062400pt;}
.ls2c_c01086{letter-spacing:3.097609pt;}
.ls17_c01086{letter-spacing:3.132800pt;}
.ls1a_c01086{letter-spacing:3.203209pt;}
.ls13_c01086{letter-spacing:3.335209pt;}
.ls7_c01086{letter-spacing:3.379209pt;}
.ls9_c01086{letter-spacing:3.476000pt;}
.ls10_c01086{letter-spacing:3.484800pt;}
.ls1b_c01086{letter-spacing:3.493609pt;}
.ls18_c01086{letter-spacing:3.511209pt;}
.lsa_c01086{letter-spacing:3.590400pt;}
.ls6_c01086{letter-spacing:3.605325pt;}
.ls2a_c01086{letter-spacing:3.634400pt;}
.ls19_c01086{letter-spacing:3.652000pt;}
.ls15_c01086{letter-spacing:3.713609pt;}
.ls2_c01086{letter-spacing:7.237824pt;}
.ls20_c01086{letter-spacing:27.878400pt;}
.ls24_c01086{letter-spacing:49.420976pt;}
.ls12_c01086{letter-spacing:54.489776pt;}
.ls28_c01086{letter-spacing:55.756800pt;}
.ls4_c01086{letter-spacing:57.024176pt;}
.ls1d_c01086{letter-spacing:62.092976pt;}
.ls2e_c01086{letter-spacing:64.627376pt;}
.ls22_c01086{letter-spacing:69.696176pt;}
.ws0_c01086{word-spacing:0.000000pt;}
._0_c01086{width:15.880903pt;}
._1_c01086{width:67.293852pt;}
.fs1_c01086{font-size:19.712000pt;}
.fs1d_c01086{font-size:22.352000pt;}
.fs2_c01086{font-size:24.640000pt;}
.fs1e_c01086{font-size:27.878400pt;}
.fs19_c01086{font-size:28.512176pt;}
.fs0_c01086{font-size:29.568000pt;}
.fse_c01086{font-size:34.496000pt;}
.fs20_c01086{font-size:37.840000pt;}
.fsb_c01086{font-size:45.760000pt;}
.fs1f_c01086{font-size:48.576000pt;}
.fs23_c01086{font-size:49.420976pt;}
.fs14_c01086{font-size:54.489776pt;}
.fs24_c01086{font-size:55.756800pt;}
.fs3_c01086{font-size:57.024176pt;}
.fs7_c01086{font-size:61.248000pt;}
.fs13_c01086{font-size:61.952176pt;}
.fs1b_c01086{font-size:62.092976pt;}
.fs15_c01086{font-size:62.656000pt;}
.fs18_c01086{font-size:64.064176pt;}
.fs26_c01086{font-size:64.627376pt;}
.fs1c_c01086{font-size:64.768000pt;}
.fs10_c01086{font-size:65.120000pt;}
.fs12_c01086{font-size:66.704176pt;}
.fs6_c01086{font-size:67.584176pt;}
.fsc_c01086{font-size:68.640000pt;}
.fs25_c01086{font-size:69.344176pt;}
.fs8_c01086{font-size:69.520000pt;}
.fs11_c01086{font-size:69.696000pt;}
.fs22_c01086{font-size:69.696176pt;}
.fsa_c01086{font-size:69.872176pt;}
.fs16_c01086{font-size:70.224176pt;}
.fs9_c01086{font-size:71.808000pt;}
.fs5_c01086{font-size:72.688000pt;}
.fs17_c01086{font-size:73.040000pt;}
.fsd_c01086{font-size:73.216000pt;}
.fs1a_c01086{font-size:73.920000pt;}
.fsf_c01086{font-size:74.272176pt;}
.fs21_c01086{font-size:78.848000pt;}
.fs4_c01086{font-size:85.184176pt;}
.y0_c01086{bottom:0.000000pt;}
.y1_c01086{bottom:68.000000pt;}
.y21_c01086{bottom:116.820920pt;}
.y20_c01086{bottom:141.214520pt;}
.y1e_c01086{bottom:172.894520pt;}
.y1f_c01086{bottom:182.398520pt;}
.y1d_c01086{bottom:201.406520pt;}
.y3_c01086{bottom:207.421320pt;}
.y1c_c01086{bottom:257.163320pt;}
.y1b_c01086{bottom:258.109320pt;}
.y1a_c01086{bottom:287.888520pt;}
.y19_c01086{bottom:316.721720pt;}
.y18_c01086{bottom:343.649720pt;}
.y17_c01086{bottom:374.374920pt;}
.y16_c01086{bottom:385.467320pt;}
.y2_c01086{bottom:387.046920pt;}
.y14_c01086{bottom:402.886920pt;}
.y15_c01086{bottom:407.326520pt;}
.y13_c01086{bottom:425.067320pt;}
.y11_c01086{bottom:430.136120pt;}
.y12_c01086{bottom:434.566920pt;}
.y10_c01086{bottom:449.144120pt;}
.yf_c01086{bottom:459.277320pt;}
.ye_c01086{bottom:488.106120pt;}
.yd_c01086{bottom:515.984520pt;}
.yc_c01086{bottom:572.062520pt;}
.ya_c01086{bottom:600.891320pt;}
.yb_c01086{bottom:601.837320pt;}
.y8_c01086{bottom:658.227720pt;}
.y7_c01086{bottom:687.373320pt;}
.y9_c01086{bottom:699.732920pt;}
.y6_c01086{bottom:800.475320pt;}
.y4_c01086{bottom:809.662520pt;}
.y5_c01086{bottom:827.398920pt;}
.h1e_c01086{height:18.567014pt;}
.h3_c01086{height:20.559000pt;}
.h1d_c01086{height:23.312438pt;}
.h4_c01086{height:25.698750pt;}
.h19_c01086{height:27.983141pt;}
.h2_c01086{height:30.838500pt;}
.h23_c01086{height:32.914370pt;}
.hf_c01086{height:35.978250pt;}
.h14_c01086{height:36.290191pt;}
.h24_c01086{height:37.134029pt;}
.h5_c01086{height:37.978101pt;}
.h20_c01086{height:39.465938pt;}
.h1b_c01086{height:41.353922pt;}
.h28_c01086{height:43.041832pt;}
.h22_c01086{height:46.417653pt;}
.h1f_c01086{height:50.663250pt;}
.h13_c01086{height:60.802673pt;}
.h25_c01086{height:61.462844pt;}
.h18_c01086{height:62.875485pt;}
.h1c_c01086{height:63.566250pt;}
.h9_c01086{height:63.879750pt;}
.h15_c01086{height:65.348250pt;}
.h12_c01086{height:65.466501pt;}
.h8_c01086{height:66.330173pt;}
.h26_c01086{height:66.816934pt;}
.ha_c01086{height:68.230078pt;}
.h11_c01086{height:68.402813pt;}
.hc_c01086{height:68.575720pt;}
.h16_c01086{height:68.921188pt;}
.hb_c01086{height:70.475625pt;}
.h7_c01086{height:71.339297pt;}
.hd_c01086{height:71.589375pt;}
.h17_c01086{height:71.684766pt;}
.he_c01086{height:71.857500pt;}
.h27_c01086{height:72.323809pt;}
.h10_c01086{height:72.894079pt;}
.h1a_c01086{height:77.096250pt;}
.h21_c01086{height:77.385000pt;}
.h6_c01086{height:83.603610pt;}
.h1_c01086{height:986.666667pt;}
.h0_c01086{height:1122.666667pt;}
.w1_c01086{width:689.333333pt;}
.w0_c01086{width:793.333333pt;}
.x0_c01086{left:0.000000pt;}
.x2_c01086{left:10.328253pt;}
.x3_c01086{left:42.681453pt;}
.x1_c01086{left:52.000000pt;}
.x35_c01086{left:69.033053pt;}
.x14_c01086{left:71.268253pt;}
.x4_c01086{left:85.744253pt;}
.x6c_c01086{left:105.381453pt;}
.x36_c01086{left:108.289853pt;}
.x5_c01086{left:109.917853pt;}
.xe_c01086{left:110.833053pt;}
.x37_c01086{left:127.935853pt;}
.x34_c01086{left:130.905853pt;}
.x15_c01086{left:138.812653pt;}
.x68_c01086{left:139.732253pt;}
.x58_c01086{left:147.797453pt;}
.x3e_c01086{left:149.707053pt;}
.x5a_c01086{left:157.411453pt;}
.x1d_c01086{left:158.832653pt;}
.xf_c01086{left:160.139453pt;}
.x5e_c01086{left:167.826253pt;}
.x16_c01086{left:169.291453pt;}
.x27_c01086{left:178.302653pt;}
.x4a_c01086{left:180.155053pt;}
.x66_c01086{left:186.539453pt;}
.x10_c01086{left:188.699853pt;}
.x6d_c01086{left:194.085453pt;}
.x5f_c01086{left:196.373453pt;}
.x5b_c01086{left:207.945453pt;}
.x28_c01086{left:208.891453pt;}
.x29_c01086{left:215.135053pt;}
.x1e_c01086{left:218.193053pt;}
.x6_c01086{left:221.119053pt;}
.x45_c01086{left:226.759853pt;}
.x4f_c01086{left:227.701453pt;}
.x5c_c01086{left:237.271453pt;}
.x2a_c01086{left:238.353853pt;}
.x38_c01086{left:247.747853pt;}
.x69_c01086{left:248.975453pt;}
.x2b_c01086{left:257.190253pt;}
.x2c_c01086{left:267.684253pt;}
.x6a_c01086{left:275.604253pt;}
.x1f_c01086{left:286.705453pt;}
.x39_c01086{left:287.660253pt;}
.x2d_c01086{left:289.864653pt;}
.x5d_c01086{left:295.153453pt;}
.x41_c01086{left:296.147853pt;}
.x63_c01086{left:297.283053pt;}
.x17_c01086{left:298.229053pt;}
.x6e_c01086{left:302.853453pt;}
.x11_c01086{left:306.857453pt;}
.x2e_c01086{left:307.917853pt;}
.x20_c01086{left:316.141453pt;}
.x7_c01086{left:318.077453pt;}
.x52_c01086{left:325.240653pt;}
.x21_c01086{left:326.974253pt;}
.x42_c01086{left:335.290253pt;}
.x46_c01086{left:336.553053pt;}
.x53_c01086{left:343.298253pt;}
.x22_c01086{left:346.514653pt;}
.x8_c01086{left:353.858253pt;}
.x9_c01086{left:355.437853pt;}
.x23_c01086{left:358.385853pt;}
.x6f_c01086{left:362.429453pt;}
.x3f_c01086{left:365.483053pt;}
.x24_c01086{left:368.765453pt;}
.x12_c01086{left:375.343453pt;}
.x2f_c01086{left:376.777853pt;}
.x25_c01086{left:385.872653pt;}
.x64_c01086{left:387.135453pt;}
.x40_c01086{left:394.993853pt;}
.x65_c01086{left:396.481053pt;}
.x3a_c01086{left:406.222653pt;}
.x70_c01086{left:413.099853pt;}
.x18_c01086{left:414.635453pt;}
.x54_c01086{left:418.485453pt;}
.x60_c01086{left:430.836253pt;}
.xa_c01086{left:434.325453pt;}
.x13_c01086{left:435.377053pt;}
.xb_c01086{left:442.557853pt;}
.x4b_c01086{left:443.464253pt;}
.x30_c01086{left:453.258653pt;}
.x47_c01086{left:454.160653pt;}
.xc_c01086{left:455.234253pt;}
.x50_c01086{left:464.236653pt;}
.x71_c01086{left:469.701453pt;}
.x6b_c01086{left:471.391053pt;}
.x31_c01086{left:474.017853pt;}
.x55_c01086{left:482.795853pt;}
.x19_c01086{left:484.511853pt;}
.x61_c01086{left:491.507853pt;}
.x3b_c01086{left:493.694653pt;}
.x72_c01086{left:499.977853pt;}
.x56_c01086{left:503.049053pt;}
.x4c_c01086{left:504.096253pt;}
.x1a_c01086{left:513.037053pt;}
.x51_c01086{left:521.850253pt;}
.x32_c01086{left:531.847053pt;}
.x3c_c01086{left:532.779853pt;}
.x1b_c01086{left:543.005453pt;}
.x73_c01086{left:548.826653pt;}
.x48_c01086{left:551.506253pt;}
.xd_c01086{left:552.777853pt;}
.x43_c01086{left:562.440253pt;}
.x57_c01086{left:581.338253pt;}
.x1c_c01086{left:582.376653pt;}
.x33_c01086{left:591.792653pt;}
.x74_c01086{left:598.524653pt;}
.x4d_c01086{left:600.601453pt;}
.x3d_c01086{left:602.282253pt;}
.x59_c01086{left:620.238653pt;}
.x26_c01086{left:622.680653pt;}
.x44_c01086{left:624.647453pt;}
.x49_c01086{left:625.831053pt;}
.x67_c01086{left:628.431453pt;}
.x4e_c01086{left:631.309053pt;}
.x62_c01086{left:641.904253pt;}
}





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

.ir_c01087:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01087{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01087;src:url('chunks/assets/font_69997505fccfdb013bc46b00.woff2')format("woff");}.ff1_c01087{font-family:ff1_c01087;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01087;src:url('chunks/assets/font_d24592cad3975b62b052bb55.woff2')format("woff");}.ff2_c01087{font-family:ff2_c01087;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01087;src:url('chunks/assets/font_c024abd8092603fa36ec9796.woff2')format("woff");}.ff3_c01087{font-family:ff3_c01087;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01087;src:url('chunks/assets/font_e289691b8e8c44aa59754698.woff2')format("woff");}.ff4_c01087{font-family:ff4_c01087;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3a_c01087{transform:matrix(0.018293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018293,0.000000,0.000000,0.250000,0,0);}
.m82_c01087{transform:matrix(0.058511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.058511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.058511,0.000000,0.000000,0.250000,0,0);}
.m35_c01087{transform:matrix(0.076470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076470,0.000000,0.000000,0.250000,0,0);}
.m37_c01087{transform:matrix(0.078023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078023,0.000000,0.000000,0.250000,0,0);}
.m3b_c01087{transform:matrix(0.098916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098916,0.000000,0.000000,0.250000,0,0);}
.m38_c01087{transform:matrix(0.102635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102635,0.000000,0.000000,0.250000,0,0);}
.m36_c01087{transform:matrix(0.106210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106210,0.000000,0.000000,0.250000,0,0);}
.m81_c01087{transform:matrix(0.112294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112294,0.000000,0.000000,0.250000,0,0);}
.m46_c01087{transform:matrix(0.114983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114983,0.000000,0.000000,0.250000,0,0);}
.m44_c01087{transform:matrix(0.115041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115041,0.000000,0.000000,0.250000,0,0);}
.m39_c01087{transform:matrix(0.115854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115854,0.000000,0.000000,0.250000,0,0);}
.m34_c01087{transform:matrix(0.118984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118984,0.000000,0.000000,0.250000,0,0);}
.m45_c01087{transform:matrix(0.120875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120875,0.000000,0.000000,0.250000,0,0);}
.m85_c01087{transform:matrix(0.122392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122392,0.000000,0.000000,0.250000,0,0);}
.m30_c01087{transform:matrix(0.124126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124126,0.000000,0.000000,0.250000,0,0);}
.m2c_c01087{transform:matrix(0.132787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132787,0.000000,0.000000,0.250000,0,0);}
.m1a_c01087{transform:matrix(0.143413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143413,0.000000,0.000000,0.250000,0,0);}
.m86_c01087{transform:matrix(0.146519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146519,0.000000,0.000000,0.250000,0,0);}
.m23_c01087{transform:matrix(0.166405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166405,0.000000,0.000000,0.250000,0,0);}
.m27_c01087{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m26_c01087{transform:matrix(0.174305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174305,0.000000,0.000000,0.250000,0,0);}
.m83_c01087{transform:matrix(0.177558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177558,0.000000,0.000000,0.250000,0,0);}
.m59_c01087{transform:matrix(0.180640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180640,0.000000,0.000000,0.250000,0,0);}
.m4d_c01087{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m68_c01087{transform:matrix(0.191668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191668,0.000000,0.000000,0.250000,0,0);}
.m16_c01087{transform:matrix(0.193660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193660,0.000000,0.000000,0.250000,0,0);}
.m28_c01087{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m1_c01087{transform:matrix(0.196037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196037,0.000000,0.000000,0.250000,0,0);}
.m84_c01087{transform:matrix(0.202360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202360,0.000000,0.000000,0.250000,0,0);}
.m6a_c01087{transform:matrix(0.203296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203296,0.000000,0.000000,0.250000,0,0);}
.m14_c01087{transform:matrix(0.204634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204634,0.000000,0.000000,0.250000,0,0);}
.m33_c01087{transform:matrix(0.234440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234440,0.000000,0.000000,0.250000,0,0);}
.m31_c01087{transform:matrix(0.235208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235208,0.000000,0.000000,0.250000,0,0);}
.m17_c01087{transform:matrix(0.237817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237817,0.000000,0.000000,0.250000,0,0);}
.m7c_c01087{transform:matrix(0.242624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242624,0.000000,0.000000,0.250000,0,0);}
.m22_c01087{transform:matrix(0.243213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243213,0.000000,0.000000,0.250000,0,0);}
.m3c_c01087{transform:matrix(0.249563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249563,0.000000,0.000000,0.250000,0,0);}
.m0_c01087{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m11_c01087{transform:matrix(0.250060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250060,0.000000,0.000000,0.250000,0,0);}
.m41_c01087{transform:matrix(0.250214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250214,0.000000,0.000000,0.250000,0,0);}
.m6e_c01087{transform:matrix(0.252166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252166,0.000000,0.000000,0.250000,0,0);}
.m8a_c01087{transform:matrix(0.252466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252466,0.000000,0.000000,0.250000,0,0);}
.m95_c01087{transform:matrix(0.252681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252681,0.000000,0.000000,0.250000,0,0);}
.m57_c01087{transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);}
.m13_c01087{transform:matrix(0.254060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254060,0.000000,0.000000,0.250000,0,0);}
.m4c_c01087{transform:matrix(0.254922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254922,0.000000,0.000000,0.250000,0,0);}
.m24_c01087{transform:matrix(0.255524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255524,0.000000,0.000000,0.250000,0,0);}
.m78_c01087{transform:matrix(0.256746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256746,0.000000,0.000000,0.250000,0,0);}
.md_c01087{transform:matrix(0.256819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256819,0.000000,0.000000,0.250000,0,0);}
.m5c_c01087{transform:matrix(0.258820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258820,0.000000,0.000000,0.250000,0,0);}
.m51_c01087{transform:matrix(0.260420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260420,0.000000,0.000000,0.250000,0,0);}
.m70_c01087{transform:matrix(0.260620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260620,0.000000,0.000000,0.250000,0,0);}
.m42_c01087{transform:matrix(0.260688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260688,0.000000,0.000000,0.250000,0,0);}
.m4e_c01087{transform:matrix(0.262306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262306,0.000000,0.000000,0.250000,0,0);}
.m49_c01087{transform:matrix(0.262649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262649,0.000000,0.000000,0.250000,0,0);}
.m67_c01087{transform:matrix(0.263427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263427,0.000000,0.000000,0.250000,0,0);}
.m91_c01087{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);}
.m88_c01087{transform:matrix(0.263924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263924,0.000000,0.000000,0.250000,0,0);}
.m94_c01087{transform:matrix(0.265293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265293,0.000000,0.000000,0.250000,0,0);}
.m92_c01087{transform:matrix(0.265590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265590,0.000000,0.000000,0.250000,0,0);}
.m4b_c01087{transform:matrix(0.266850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266850,0.000000,0.000000,0.250000,0,0);}
.m8e_c01087{transform:matrix(0.266986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266986,0.000000,0.000000,0.250000,0,0);}
.m80_c01087{transform:matrix(0.267674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267674,0.000000,0.000000,0.250000,0,0);}
.m2a_c01087{transform:matrix(0.267699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267699,0.000000,0.000000,0.250000,0,0);}
.m8d_c01087{transform:matrix(0.268133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268133,0.000000,0.000000,0.250000,0,0);}
.m10_c01087{transform:matrix(0.269674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269674,0.000000,0.000000,0.250000,0,0);}
.m2d_c01087{transform:matrix(0.270615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270615,0.000000,0.000000,0.250000,0,0);}
.m64_c01087{transform:matrix(0.270639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270639,0.000000,0.000000,0.250000,0,0);}
.m66_c01087{transform:matrix(0.270657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270657,0.000000,0.000000,0.250000,0,0);}
.m5e_c01087{transform:matrix(0.271452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271452,0.000000,0.000000,0.250000,0,0);}
.m2f_c01087{transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);}
.m93_c01087{transform:matrix(0.271614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271614,0.000000,0.000000,0.250000,0,0);}
.m7d_c01087{transform:matrix(0.273764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273764,0.000000,0.000000,0.250000,0,0);}
.m58_c01087{transform:matrix(0.274919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274919,0.000000,0.000000,0.250000,0,0);}
.m6d_c01087{transform:matrix(0.276846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276846,0.000000,0.000000,0.250000,0,0);}
.m7e_c01087{transform:matrix(0.276883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276883,0.000000,0.000000,0.250000,0,0);}
.m8c_c01087{transform:matrix(0.277352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277352,0.000000,0.000000,0.250000,0,0);}
.m8f_c01087{transform:matrix(0.277573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277573,0.000000,0.000000,0.250000,0,0);}
.m3e_c01087{transform:matrix(0.278076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278076,0.000000,0.000000,0.250000,0,0);}
.m6b_c01087{transform:matrix(0.278472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278472,0.000000,0.000000,0.250000,0,0);}
.m60_c01087{transform:matrix(0.279229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279229,0.000000,0.000000,0.250000,0,0);}
.m1b_c01087{transform:matrix(0.279784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279784,0.000000,0.000000,0.250000,0,0);}
.m21_c01087{transform:matrix(0.280682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280682,0.000000,0.000000,0.250000,0,0);}
.m6_c01087{transform:matrix(0.280710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280710,0.000000,0.000000,0.250000,0,0);}
.m4_c01087{transform:matrix(0.281608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281608,0.000000,0.000000,0.250000,0,0);}
.mc_c01087{transform:matrix(0.282099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282099,0.000000,0.000000,0.250000,0,0);}
.m43_c01087{transform:matrix(0.282349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282349,0.000000,0.000000,0.250000,0,0);}
.m1e_c01087{transform:matrix(0.282707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282707,0.000000,0.000000,0.250000,0,0);}
.m9_c01087{transform:matrix(0.283396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283396,0.000000,0.000000,0.250000,0,0);}
.m1c_c01087{transform:matrix(0.283738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283738,0.000000,0.000000,0.250000,0,0);}
.m3f_c01087{transform:matrix(0.284095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284095,0.000000,0.000000,0.250000,0,0);}
.m89_c01087{transform:matrix(0.284339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284339,0.000000,0.000000,0.250000,0,0);}
.m40_c01087{transform:matrix(0.284492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284492,0.000000,0.000000,0.250000,0,0);}
.m7f_c01087{transform:matrix(0.284986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284986,0.000000,0.000000,0.250000,0,0);}
.m55_c01087{transform:matrix(0.285381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285381,0.000000,0.000000,0.250000,0,0);}
.m47_c01087{transform:matrix(0.285653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285653,0.000000,0.000000,0.250000,0,0);}
.m56_c01087{transform:matrix(0.288121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288121,0.000000,0.000000,0.250000,0,0);}
.m87_c01087{transform:matrix(0.288505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288505,0.000000,0.000000,0.250000,0,0);}
.m52_c01087{transform:matrix(0.289155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289155,0.000000,0.000000,0.250000,0,0);}
.m5b_c01087{transform:matrix(0.289228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289228,0.000000,0.000000,0.250000,0,0);}
.m6f_c01087{transform:matrix(0.289408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289408,0.000000,0.000000,0.250000,0,0);}
.m61_c01087{transform:matrix(0.289523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289523,0.000000,0.000000,0.250000,0,0);}
.m25_c01087{transform:matrix(0.289900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289900,0.000000,0.000000,0.250000,0,0);}
.m62_c01087{transform:matrix(0.291069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291069,0.000000,0.000000,0.250000,0,0);}
.m19_c01087{transform:matrix(0.291620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291620,0.000000,0.000000,0.250000,0,0);}
.me_c01087{transform:matrix(0.293152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293152,0.000000,0.000000,0.250000,0,0);}
.ma_c01087{transform:matrix(0.294048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294048,0.000000,0.000000,0.250000,0,0);}
.m1f_c01087{transform:matrix(0.294134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294134,0.000000,0.000000,0.250000,0,0);}
.m73_c01087{transform:matrix(0.294371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294371,0.000000,0.000000,0.250000,0,0);}
.m72_c01087{transform:matrix(0.295887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295887,0.000000,0.000000,0.250000,0,0);}
.m4a_c01087{transform:matrix(0.297278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297278,0.000000,0.000000,0.250000,0,0);}
.m5d_c01087{transform:matrix(0.298851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298851,0.000000,0.000000,0.250000,0,0);}
.m90_c01087{transform:matrix(0.301302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301302,0.000000,0.000000,0.250000,0,0);}
.m8_c01087{transform:matrix(0.302625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302625,0.000000,0.000000,0.250000,0,0);}
.m15_c01087{transform:matrix(0.304596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304596,0.000000,0.000000,0.250000,0,0);}
.m7b_c01087{transform:matrix(0.305409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305409,0.000000,0.000000,0.250000,0,0);}
.mb_c01087{transform:matrix(0.305714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305714,0.000000,0.000000,0.250000,0,0);}
.m5_c01087{transform:matrix(0.306195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306195,0.000000,0.000000,0.250000,0,0);}
.m3_c01087{transform:matrix(0.306300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306300,0.000000,0.000000,0.250000,0,0);}
.m63_c01087{transform:matrix(0.307012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307012,0.000000,0.000000,0.250000,0,0);}
.m50_c01087{transform:matrix(0.307986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307986,0.000000,0.000000,0.250000,0,0);}
.m5a_c01087{transform:matrix(0.308223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308223,0.000000,0.000000,0.250000,0,0);}
.m3d_c01087{transform:matrix(0.308553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308553,0.000000,0.000000,0.250000,0,0);}
.m5f_c01087{transform:matrix(0.310311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310311,0.000000,0.000000,0.250000,0,0);}
.m7_c01087{transform:matrix(0.310745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310745,0.000000,0.000000,0.250000,0,0);}
.m75_c01087{transform:matrix(0.310998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310998,0.000000,0.000000,0.250000,0,0);}
.m77_c01087{transform:matrix(0.312538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312538,0.000000,0.000000,0.250000,0,0);}
.m29_c01087{transform:matrix(0.313395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313395,0.000000,0.000000,0.250000,0,0);}
.m12_c01087{transform:matrix(0.314396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314396,0.000000,0.000000,0.250000,0,0);}
.m71_c01087{transform:matrix(0.315183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315183,0.000000,0.000000,0.250000,0,0);}
.m32_c01087{transform:matrix(0.315776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315776,0.000000,0.000000,0.250000,0,0);}
.m54_c01087{transform:matrix(0.318545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318545,0.000000,0.000000,0.250000,0,0);}
.m79_c01087{transform:matrix(0.319783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319783,0.000000,0.000000,0.250000,0,0);}
.m1d_c01087{transform:matrix(0.320582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320582,0.000000,0.000000,0.250000,0,0);}
.m48_c01087{transform:matrix(0.322008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322008,0.000000,0.000000,0.250000,0,0);}
.m2b_c01087{transform:matrix(0.322684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322684,0.000000,0.000000,0.250000,0,0);}
.m4f_c01087{transform:matrix(0.324820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324820,0.000000,0.000000,0.250000,0,0);}
.mf_c01087{transform:matrix(0.326649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326649,0.000000,0.000000,0.250000,0,0);}
.m69_c01087{transform:matrix(0.327244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327244,0.000000,0.000000,0.250000,0,0);}
.m6c_c01087{transform:matrix(0.328435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328435,0.000000,0.000000,0.250000,0,0);}
.m76_c01087{transform:matrix(0.329048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329048,0.000000,0.000000,0.250000,0,0);}
.m2e_c01087{transform:matrix(0.333549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333549,0.000000,0.000000,0.250000,0,0);}
.m20_c01087{transform:matrix(0.349091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349091,0.000000,0.000000,0.250000,0,0);}
.m74_c01087{transform:matrix(0.354381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354381,0.000000,0.000000,0.250000,0,0);}
.m7a_c01087{transform:matrix(0.359013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359013,0.000000,0.000000,0.250000,0,0);}
.m18_c01087{transform:matrix(0.360291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360291,0.000000,0.000000,0.250000,0,0);}
.m65_c01087{transform:matrix(0.364278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364278,0.000000,0.000000,0.250000,0,0);}
.m8b_c01087{transform:matrix(0.391548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391548,0.000000,0.000000,0.250000,0,0);}
.m53_c01087{transform:matrix(0.395484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395484,0.000000,0.000000,0.250000,0,0);}
.m2_c01087{transform:matrix(0.410981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410981,0.000000,0.000000,0.250000,0,0);}
.v0_c01087{vertical-align:0.000000px;}
.lsc_c01087{letter-spacing:-2.882880px;}
.ls1a_c01087{letter-spacing:-2.661127px;}
.ls28_c01087{letter-spacing:-2.626477px;}
.ls10_c01087{letter-spacing:-2.619540px;}
.ls5_c01087{letter-spacing:-2.589602px;}
.ls2_c01087{letter-spacing:-2.550240px;}
.lse_c01087{letter-spacing:-2.494800px;}
.ls17_c01087{letter-spacing:-1.496880px;}
.ls12_c01087{letter-spacing:-1.462230px;}
.ls1_c01087{letter-spacing:0.000000px;}
.ls22_c01087{letter-spacing:0.040788px;}
.ls15_c01087{letter-spacing:0.098842px;}
.ls1c_c01087{letter-spacing:0.922007px;}
.ls18_c01087{letter-spacing:1.292547px;}
.ls0_c01087{letter-spacing:1.383782px;}
.lsf_c01087{letter-spacing:1.669021px;}
.ls16_c01087{letter-spacing:1.910700px;}
.ls11_c01087{letter-spacing:2.297711px;}
.ls3_c01087{letter-spacing:2.316600px;}
.ls26_c01087{letter-spacing:2.798928px;}
.ls9_c01087{letter-spacing:3.118500px;}
.lsa_c01087{letter-spacing:3.405610px;}
.ls2a_c01087{letter-spacing:3.425400px;}
.ls25_c01087{letter-spacing:3.442982px;}
.ls13_c01087{letter-spacing:3.504610px;}
.ls6_c01087{letter-spacing:3.742200px;}
.ls23_c01087{letter-spacing:3.755981px;}
.lsd_c01087{letter-spacing:3.801610px;}
.ls4_c01087{letter-spacing:3.880810px;}
.ls1b_c01087{letter-spacing:3.940200px;}
.ls2b_c01087{letter-spacing:3.960000px;}
.ls29_c01087{letter-spacing:3.979810px;}
.ls8_c01087{letter-spacing:4.019400px;}
.ls21_c01087{letter-spacing:4.078810px;}
.ls7_c01087{letter-spacing:4.088700px;}
.lsb_c01087{letter-spacing:4.118400px;}
.ls20_c01087{letter-spacing:4.138200px;}
.ls24_c01087{letter-spacing:4.148110px;}
.ls1f_c01087{letter-spacing:4.276810px;}
.ls2c_c01087{letter-spacing:4.633200px;}
.ls19_c01087{letter-spacing:55.598598px;}
.ls14_c01087{letter-spacing:57.024198px;}
.ls1e_c01087{letter-spacing:58.449798px;}
.ls27_c01087{letter-spacing:67.003200px;}
.ls1d_c01087{letter-spacing:72.705798px;}
.sc__c01087{text-shadow:none;}
.sc0_c01087{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01087{-webkit-text-stroke:0px transparent;}
.sc0_c01087{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01087{word-spacing:0.000000px;}
._2_c01087{width:5.778363px;}
._0_c01087{width:24.344021px;}
._1_c01087{width:28.900757px;}
.fc0_c01087{color:transparent;}
.fs16_c01087{font-size:22.176000px;}
.fs23_c01087{font-size:27.720000px;}
.fs22_c01087{font-size:33.264000px;}
.fs0_c01087{font-size:34.650000px;}
.fs10_c01087{font-size:38.214000px;}
.fsd_c01087{font-size:41.778000px;}
.fs11_c01087{font-size:42.768000px;}
.fs2_c01087{font-size:46.332000px;}
.fs12_c01087{font-size:55.598598px;}
.fsb_c01087{font-size:57.024000px;}
.fsf_c01087{font-size:57.024198px;}
.fs15_c01087{font-size:58.449798px;}
.fs1b_c01087{font-size:60.192000px;}
.fs7_c01087{font-size:62.370000px;}
.fs1c_c01087{font-size:67.003200px;}
.fs8_c01087{font-size:68.112198px;}
.fs1f_c01087{font-size:68.508000px;}
.fse_c01087{font-size:70.092198px;}
.fsc_c01087{font-size:71.280000px;}
.fs14_c01087{font-size:72.705798px;}
.fs1_c01087{font-size:72.864000px;}
.fs4_c01087{font-size:74.844000px;}
.fs1d_c01087{font-size:75.042198px;}
.fsa_c01087{font-size:76.032198px;}
.fs3_c01087{font-size:77.616198px;}
.fs13_c01087{font-size:78.804000px;}
.fs20_c01087{font-size:79.200000px;}
.fs1e_c01087{font-size:79.596198px;}
.fs6_c01087{font-size:80.388000px;}
.fs19_c01087{font-size:81.576198px;}
.fs5_c01087{font-size:81.774000px;}
.fs9_c01087{font-size:82.368000px;}
.fs18_c01087{font-size:82.764000px;}
.fs1a_c01087{font-size:82.962198px;}
.fs17_c01087{font-size:85.536198px;}
.fs21_c01087{font-size:92.664000px;}
.y0_c01087{bottom:0.000000px;}
.y1_c01087{bottom:76.500000px;}
.y1a_c01087{bottom:108.257535px;}
.y19_c01087{bottom:199.134585px;}
.y18_c01087{bottom:256.514985px;}
.y17_c01087{bottom:289.303785px;}
.y16_c01087{bottom:319.241385px;}
.y15_c01087{bottom:385.888185px;}
.y14_c01087{bottom:418.325535px;}
.y13_c01087{bottom:449.683785px;}
.y12_c01087{bottom:481.408335px;}
.y11_c01087{bottom:514.197135px;}
.y10_c01087{bottom:546.268185px;}
.yf_c01087{bottom:609.355935px;}
.ye_c01087{bottom:641.075535px;}
.yd_c01087{bottom:659.246985px;}
.yc_c01087{bottom:672.790185px;}
.yb_c01087{bottom:703.089135px;}
.ya_c01087{bottom:737.654985px;}
.y9_c01087{bottom:769.735935px;}
.y8_c01087{bottom:801.806985px;}
.y6_c01087{bottom:865.958985px;}
.y7_c01087{bottom:867.384585px;}
.y5_c01087{bottom:898.747785px;}
.y4_c01087{bottom:930.823785px;}
.y3_c01087{bottom:1074.452985px;}
.y2_c01087{bottom:1078.729785px;}
.h18_c01087{height:23.128875px;}
.h26_c01087{height:28.911094px;}
.h25_c01087{height:34.693313px;}
.h2_c01087{height:36.138867px;}
.h14_c01087{height:37.028666px;}
.h11_c01087{height:37.978116px;}
.h17_c01087{height:38.927565px;}
.h12_c01087{height:39.856008px;}
.hf_c01087{height:41.002822px;}
.h13_c01087{height:44.605688px;}
.h1e_c01087{height:44.624131px;}
.h4_c01087{height:45.472324px;}
.h16_c01087{height:48.422061px;}
.hd_c01087{height:59.474250px;}
.h9_c01087{height:61.212744px;}
.h1d_c01087{height:62.778375px;}
.ha_c01087{height:71.038894px;}
.h21_c01087{height:71.451703px;}
.h22_c01087{height:71.512031px;}
.h10_c01087{height:73.103972px;}
.h6_c01087{height:73.455293px;}
.he_c01087{height:74.342813px;}
.hc_c01087{height:74.621444px;}
.h3_c01087{height:75.994875px;}
.h5_c01087{height:76.176054px;}
.h15_c01087{height:77.341816px;}
.h23_c01087{height:77.691797px;}
.h20_c01087{height:78.119315px;}
.h1f_c01087{height:78.266667px;}
.h8_c01087{height:78.896426px;}
.h1b_c01087{height:80.062577px;}
.h7_c01087{height:80.256709px;}
.hb_c01087{height:80.839688px;}
.h1c_c01087{height:81.422860px;}
.h19_c01087{height:83.949101px;}
.h1a_c01087{height:86.320266px;}
.h24_c01087{height:90.944648px;}
.h1_c01087{height:1110.000000px;}
.h0_c01087{height:1263.000000px;}
.w1_c01087{width:775.500000px;}
.w0_c01087{width:892.500000px;}
.x0_c01087{left:0.000000px;}
.x1_c01087{left:58.500000px;}
.x4a_c01087{left:80.869785px;}
.x21_c01087{left:81.938985px;}
.x4b_c01087{left:124.672335px;}
.x2b_c01087{left:125.795985px;}
.x6_c01087{left:127.345335px;}
.x2d_c01087{left:129.137235px;}
.x7_c01087{left:138.651135px;}
.x4c_c01087{left:149.080785px;}
.x46_c01087{left:159.520335px;}
.x55_c01087{left:169.242135px;}
.x60_c01087{left:178.785735px;}
.x18_c01087{left:181.651785px;}
.x41_c01087{left:192.215085px;}
.x8_c01087{left:193.893135px;}
.x11_c01087{left:205.352385px;}
.x3a_c01087{left:214.188135px;}
.x19_c01087{left:215.757285px;}
.x68_c01087{left:224.132685px;}
.x52_c01087{left:225.474135px;}
.x42_c01087{left:226.592835px;}
.x6c_c01087{left:230.825085px;}
.x22_c01087{left:237.854085px;}
.x69_c01087{left:246.496785px;}
.x9_c01087{left:247.996635px;}
.x4f_c01087{left:257.555085px;}
.x1a_c01087{left:259.049985px;}
.x12_c01087{left:261.604185px;}
.x47_c01087{left:269.558835px;}
.x61_c01087{left:281.082435px;}
.xa_c01087{left:282.280335px;}
.x1b_c01087{left:293.101035px;}
.x34_c01087{left:303.233685px;}
.x48_c01087{left:304.639485px;}
.x62_c01087{left:313.495035px;}
.x5b_c01087{left:314.618685px;}
.x3b_c01087{left:317.950035px;}
.x43_c01087{left:325.741335px;}
.x35_c01087{left:326.810535px;}
.x2e_c01087{left:329.315235px;}
.x59_c01087{left:336.037335px;}
.x23_c01087{left:338.027235px;}
.x2f_c01087{left:340.630935px;}
.x56_c01087{left:348.130185px;}
.x13_c01087{left:349.412235px;}
.x53_c01087{left:358.490535px;}
.xb_c01087{left:360.109185px;}
.x49_c01087{left:369.113235px;}
.x1c_c01087{left:381.413985px;}
.x14_c01087{left:382.923735px;}
.x63_c01087{left:390.630885px;}
.x5c_c01087{left:391.640685px;}
.x30_c01087{left:403.421685px;}
.x1d_c01087{left:405.421485px;}
.x5d_c01087{left:414.445335px;}
.x36_c01087{left:422.325735px;}
.x1e_c01087{left:425.147235px;}
.x50_c01087{left:428.245935px;}
.x44_c01087{left:437.294535px;}
.x24_c01087{left:438.784485px;}
.x66_c01087{left:446.635185px;}
.x3c_c01087{left:449.184435px;}
.x31_c01087{left:451.510935px;}
.x37_c01087{left:459.742785px;}
.x15_c01087{left:470.875335px;}
.x67_c01087{left:479.943735px;}
.x51_c01087{left:481.606935px;}
.x38_c01087{left:491.105985px;}
.xc_c01087{left:492.491985px;}
.x64_c01087{left:495.457035px;}
.x5e_c01087{left:502.278135px;}
.x25_c01087{left:503.906685px;}
.x40_c01087{left:506.347035px;}
.x54_c01087{left:513.301785px;}
.x4d_c01087{left:524.904585px;}
.x3d_c01087{left:535.195635px;}
.x32_c01087{left:536.878635px;}
.x1f_c01087{left:547.892385px;}
.x26_c01087{left:558.326985px;}
.x5a_c01087{left:568.400235px;}
.x16_c01087{left:570.736635px;}
.x5f_c01087{left:579.611985px;}
.x57_c01087{left:580.923735px;}
.xd_c01087{left:582.151335px;}
.x6a_c01087{left:589.417935px;}
.x65_c01087{left:590.650485px;}
.x17_c01087{left:592.100835px;}
.xe_c01087{left:595.432185px;}
.x2c_c01087{left:602.070135px;}
.x4e_c01087{left:613.836285px;}
.x6b_c01087{left:622.563135px;}
.x3e_c01087{left:623.642235px;}
.x27_c01087{left:627.834885px;}
.x28_c01087{left:645.140085px;}
.xf_c01087{left:648.045735px;}
.x20_c01087{left:649.100085px;}
.x29_c01087{left:654.520335px;}
.x33_c01087{left:658.455585px;}
.x58_c01087{left:667.845735px;}
.x2a_c01087{left:673.572885px;}
.x45_c01087{left:679.884135px;}
.x3f_c01087{left:690.605835px;}
.x4_c01087{left:697.946685px;}
.x39_c01087{left:702.045285px;}
.x2_c01087{left:709.410885px;}
.x10_c01087{left:714.321285px;}
.x5_c01087{left:720.147435px;}
.x3_c01087{left:721.310685px;}
@media print{
.v0_c01087{vertical-align:0.000000pt;}
.lsc_c01087{letter-spacing:-2.562560pt;}
.ls1a_c01087{letter-spacing:-2.365446pt;}
.ls28_c01087{letter-spacing:-2.334646pt;}
.ls10_c01087{letter-spacing:-2.328480pt;}
.ls5_c01087{letter-spacing:-2.301869pt;}
.ls2_c01087{letter-spacing:-2.266880pt;}
.lse_c01087{letter-spacing:-2.217600pt;}
.ls17_c01087{letter-spacing:-1.330560pt;}
.ls12_c01087{letter-spacing:-1.299760pt;}
.ls1_c01087{letter-spacing:0.000000pt;}
.ls22_c01087{letter-spacing:0.036256pt;}
.ls15_c01087{letter-spacing:0.087859pt;}
.ls1c_c01087{letter-spacing:0.819562pt;}
.ls18_c01087{letter-spacing:1.148931pt;}
.ls0_c01087{letter-spacing:1.230029pt;}
.lsf_c01087{letter-spacing:1.483574pt;}
.ls16_c01087{letter-spacing:1.698400pt;}
.ls11_c01087{letter-spacing:2.042410pt;}
.ls3_c01087{letter-spacing:2.059200pt;}
.ls26_c01087{letter-spacing:2.487936pt;}
.ls9_c01087{letter-spacing:2.772000pt;}
.lsa_c01087{letter-spacing:3.027209pt;}
.ls2a_c01087{letter-spacing:3.044800pt;}
.ls25_c01087{letter-spacing:3.060429pt;}
.ls13_c01087{letter-spacing:3.115209pt;}
.ls6_c01087{letter-spacing:3.326400pt;}
.ls23_c01087{letter-spacing:3.338650pt;}
.lsd_c01087{letter-spacing:3.379209pt;}
.ls4_c01087{letter-spacing:3.449609pt;}
.ls1b_c01087{letter-spacing:3.502400pt;}
.ls2b_c01087{letter-spacing:3.520000pt;}
.ls29_c01087{letter-spacing:3.537609pt;}
.ls8_c01087{letter-spacing:3.572800pt;}
.ls21_c01087{letter-spacing:3.625609pt;}
.ls7_c01087{letter-spacing:3.634400pt;}
.lsb_c01087{letter-spacing:3.660800pt;}
.ls20_c01087{letter-spacing:3.678400pt;}
.ls24_c01087{letter-spacing:3.687209pt;}
.ls1f_c01087{letter-spacing:3.801609pt;}
.ls2c_c01087{letter-spacing:4.118400pt;}
.ls19_c01087{letter-spacing:49.420976pt;}
.ls14_c01087{letter-spacing:50.688176pt;}
.ls1e_c01087{letter-spacing:51.955376pt;}
.ls27_c01087{letter-spacing:59.558400pt;}
.ls1d_c01087{letter-spacing:64.627376pt;}
.ws0_c01087{word-spacing:0.000000pt;}
._2_c01087{width:5.136322pt;}
._0_c01087{width:21.639130pt;}
._1_c01087{width:25.689561pt;}
.fs16_c01087{font-size:19.712000pt;}
.fs23_c01087{font-size:24.640000pt;}
.fs22_c01087{font-size:29.568000pt;}
.fs0_c01087{font-size:30.800000pt;}
.fs10_c01087{font-size:33.968000pt;}
.fsd_c01087{font-size:37.136000pt;}
.fs11_c01087{font-size:38.016000pt;}
.fs2_c01087{font-size:41.184000pt;}
.fs12_c01087{font-size:49.420976pt;}
.fsb_c01087{font-size:50.688000pt;}
.fsf_c01087{font-size:50.688176pt;}
.fs15_c01087{font-size:51.955376pt;}
.fs1b_c01087{font-size:53.504000pt;}
.fs7_c01087{font-size:55.440000pt;}
.fs1c_c01087{font-size:59.558400pt;}
.fs8_c01087{font-size:60.544176pt;}
.fs1f_c01087{font-size:60.896000pt;}
.fse_c01087{font-size:62.304176pt;}
.fsc_c01087{font-size:63.360000pt;}
.fs14_c01087{font-size:64.627376pt;}
.fs1_c01087{font-size:64.768000pt;}
.fs4_c01087{font-size:66.528000pt;}
.fs1d_c01087{font-size:66.704176pt;}
.fsa_c01087{font-size:67.584176pt;}
.fs3_c01087{font-size:68.992176pt;}
.fs13_c01087{font-size:70.048000pt;}
.fs20_c01087{font-size:70.400000pt;}
.fs1e_c01087{font-size:70.752176pt;}
.fs6_c01087{font-size:71.456000pt;}
.fs19_c01087{font-size:72.512176pt;}
.fs5_c01087{font-size:72.688000pt;}
.fs9_c01087{font-size:73.216000pt;}
.fs18_c01087{font-size:73.568000pt;}
.fs1a_c01087{font-size:73.744176pt;}
.fs17_c01087{font-size:76.032176pt;}
.fs21_c01087{font-size:82.368000pt;}
.y0_c01087{bottom:0.000000pt;}
.y1_c01087{bottom:68.000000pt;}
.y1a_c01087{bottom:96.228920pt;}
.y19_c01087{bottom:177.008520pt;}
.y18_c01087{bottom:228.013320pt;}
.y17_c01087{bottom:257.158920pt;}
.y16_c01087{bottom:283.770120pt;}
.y15_c01087{bottom:343.011720pt;}
.y14_c01087{bottom:371.844920pt;}
.y13_c01087{bottom:399.718920pt;}
.y12_c01087{bottom:427.918520pt;}
.y11_c01087{bottom:457.064120pt;}
.y10_c01087{bottom:485.571720pt;}
.yf_c01087{bottom:541.649720pt;}
.ye_c01087{bottom:569.844920pt;}
.yd_c01087{bottom:585.997320pt;}
.yc_c01087{bottom:598.035720pt;}
.yb_c01087{bottom:624.968120pt;}
.ya_c01087{bottom:655.693320pt;}
.y9_c01087{bottom:684.209720pt;}
.y8_c01087{bottom:712.717320pt;}
.y6_c01087{bottom:769.741320pt;}
.y7_c01087{bottom:771.008520pt;}
.y5_c01087{bottom:798.886920pt;}
.y4_c01087{bottom:827.398920pt;}
.y3_c01087{bottom:955.069320pt;}
.y2_c01087{bottom:958.870920pt;}
.h18_c01087{height:20.559000pt;}
.h26_c01087{height:25.698750pt;}
.h25_c01087{height:30.838500pt;}
.h2_c01087{height:32.123438pt;}
.h14_c01087{height:32.914370pt;}
.h11_c01087{height:33.758325pt;}
.h17_c01087{height:34.602280pt;}
.h12_c01087{height:35.427563pt;}
.hf_c01087{height:36.446953pt;}
.h13_c01087{height:39.649500pt;}
.h1e_c01087{height:39.665894pt;}
.h4_c01087{height:40.419844pt;}
.h16_c01087{height:43.041832pt;}
.hd_c01087{height:52.866000pt;}
.h9_c01087{height:54.411328pt;}
.h1d_c01087{height:55.803000pt;}
.ha_c01087{height:63.145684pt;}
.h21_c01087{height:63.512625pt;}
.h22_c01087{height:63.566250pt;}
.h10_c01087{height:64.981309pt;}
.h6_c01087{height:65.293594pt;}
.he_c01087{height:66.082500pt;}
.hc_c01087{height:66.330173pt;}
.h3_c01087{height:67.551000pt;}
.h5_c01087{height:67.712048pt;}
.h15_c01087{height:68.748281pt;}
.h23_c01087{height:69.059375pt;}
.h20_c01087{height:69.439391pt;}
.h1f_c01087{height:69.570371pt;}
.h8_c01087{height:70.130156pt;}
.h1b_c01087{height:71.166735pt;}
.h7_c01087{height:71.339297pt;}
.hb_c01087{height:71.857500pt;}
.h1c_c01087{height:72.375876pt;}
.h19_c01087{height:74.621423pt;}
.h1a_c01087{height:76.729125pt;}
.h24_c01087{height:80.839688pt;}
.h1_c01087{height:986.666667pt;}
.h0_c01087{height:1122.666667pt;}
.w1_c01087{width:689.333333pt;}
.w0_c01087{width:793.333333pt;}
.x0_c01087{left:0.000000pt;}
.x1_c01087{left:52.000000pt;}
.x4a_c01087{left:71.884253pt;}
.x21_c01087{left:72.834653pt;}
.x4b_c01087{left:110.819853pt;}
.x2b_c01087{left:111.818653pt;}
.x6_c01087{left:113.195853pt;}
.x2d_c01087{left:114.788653pt;}
.x7_c01087{left:123.245453pt;}
.x4c_c01087{left:132.516253pt;}
.x46_c01087{left:141.795853pt;}
.x55_c01087{left:150.437453pt;}
.x60_c01087{left:158.920653pt;}
.x18_c01087{left:161.468253pt;}
.x41_c01087{left:170.857853pt;}
.x8_c01087{left:172.349453pt;}
.x11_c01087{left:182.535453pt;}
.x3a_c01087{left:190.389453pt;}
.x19_c01087{left:191.784253pt;}
.x68_c01087{left:199.229053pt;}
.x52_c01087{left:200.421453pt;}
.x42_c01087{left:201.415853pt;}
.x6c_c01087{left:205.177853pt;}
.x22_c01087{left:211.425853pt;}
.x69_c01087{left:219.108253pt;}
.x9_c01087{left:220.441453pt;}
.x4f_c01087{left:228.937853pt;}
.x1a_c01087{left:230.266653pt;}
.x12_c01087{left:232.537053pt;}
.x47_c01087{left:239.607853pt;}
.x61_c01087{left:249.851053pt;}
.xa_c01087{left:250.915853pt;}
.x1b_c01087{left:260.534253pt;}
.x34_c01087{left:269.541053pt;}
.x48_c01087{left:270.790653pt;}
.x62_c01087{left:278.662253pt;}
.x5b_c01087{left:279.661053pt;}
.x3b_c01087{left:282.622253pt;}
.x43_c01087{left:289.547853pt;}
.x35_c01087{left:290.498253pt;}
.x2e_c01087{left:292.724653pt;}
.x59_c01087{left:298.699853pt;}
.x23_c01087{left:300.468653pt;}
.x2f_c01087{left:302.783053pt;}
.x56_c01087{left:309.449053pt;}
.x13_c01087{left:310.588653pt;}
.x53_c01087{left:318.658253pt;}
.xb_c01087{left:320.097053pt;}
.x49_c01087{left:328.100653pt;}
.x1c_c01087{left:339.034653pt;}
.x14_c01087{left:340.376653pt;}
.x63_c01087{left:347.227453pt;}
.x5c_c01087{left:348.125053pt;}
.x30_c01087{left:358.597053pt;}
.x1d_c01087{left:360.374653pt;}
.x5d_c01087{left:368.395853pt;}
.x36_c01087{left:375.400653pt;}
.x1e_c01087{left:377.908653pt;}
.x50_c01087{left:380.663053pt;}
.x44_c01087{left:388.706253pt;}
.x24_c01087{left:390.030653pt;}
.x66_c01087{left:397.009053pt;}
.x3c_c01087{left:399.275053pt;}
.x31_c01087{left:401.343053pt;}
.x37_c01087{left:408.660253pt;}
.x15_c01087{left:418.555853pt;}
.x67_c01087{left:426.616653pt;}
.x51_c01087{left:428.095053pt;}
.x38_c01087{left:436.538653pt;}
.xc_c01087{left:437.770653pt;}
.x64_c01087{left:440.406253pt;}
.x5e_c01087{left:446.469453pt;}
.x25_c01087{left:447.917053pt;}
.x40_c01087{left:450.086253pt;}
.x54_c01087{left:456.268253pt;}
.x4d_c01087{left:466.581853pt;}
.x3d_c01087{left:475.729453pt;}
.x32_c01087{left:477.225453pt;}
.x1f_c01087{left:487.015453pt;}
.x26_c01087{left:496.290653pt;}
.x5a_c01087{left:505.244653pt;}
.x16_c01087{left:507.321453pt;}
.x5f_c01087{left:515.210653pt;}
.x57_c01087{left:516.376653pt;}
.xd_c01087{left:517.467853pt;}
.x6a_c01087{left:523.927053pt;}
.x65_c01087{left:525.022653pt;}
.x17_c01087{left:526.311853pt;}
.xe_c01087{left:529.273053pt;}
.x2c_c01087{left:535.173453pt;}
.x4e_c01087{left:545.632253pt;}
.x6b_c01087{left:553.389453pt;}
.x3e_c01087{left:554.348653pt;}
.x27_c01087{left:558.075453pt;}
.x28_c01087{left:573.457853pt;}
.xf_c01087{left:576.040653pt;}
.x20_c01087{left:576.977853pt;}
.x29_c01087{left:581.795853pt;}
.x33_c01087{left:585.293853pt;}
.x58_c01087{left:593.640653pt;}
.x2a_c01087{left:598.731453pt;}
.x45_c01087{left:604.341453pt;}
.x3f_c01087{left:613.871853pt;}
.x4_c01087{left:620.397053pt;}
.x39_c01087{left:624.040253pt;}
.x2_c01087{left:630.587453pt;}
.x10_c01087{left:634.952253pt;}
.x5_c01087{left:640.131053pt;}
.x3_c01087{left:641.165053pt;}
}





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

.ir_c01088:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01088{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01088;src:url('chunks/assets/font_efbb285c439301141e9c2c2b.woff2')format("woff");}.ff1_c01088{font-family:ff1_c01088;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01088;src:url('chunks/assets/font_cef299a9660d05ed9bab5466.woff2')format("woff");}.ff2_c01088{font-family:ff2_c01088;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01088;src:url('chunks/assets/font_bd772f6b3d0c80520435df96.woff2')format("woff");}.ff3_c01088{font-family:ff3_c01088;line-height:0.666000;font-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_c01088{transform:matrix(0.059524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.059524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.059524,0.000000,0.000000,0.250000,0,0);}
.m7d_c01088{transform:matrix(0.064025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064025,0.000000,0.000000,0.250000,0,0);}
.m7e_c01088{transform:matrix(0.079269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.079269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.079269,0.000000,0.000000,0.250000,0,0);}
.m38_c01088{transform:matrix(0.122369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122369,0.000000,0.000000,0.250000,0,0);}
.m3_c01088{transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);}
.m80_c01088{transform:matrix(0.132811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132811,0.000000,0.000000,0.250000,0,0);}
.m36_c01088{transform:matrix(0.147825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147825,0.000000,0.000000,0.250000,0,0);}
.m3a_c01088{transform:matrix(0.173837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173837,0.000000,0.000000,0.250000,0,0);}
.m82_c01088{transform:matrix(0.177558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177558,0.000000,0.000000,0.250000,0,0);}
.m8b_c01088{transform:matrix(0.184523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184523,0.000000,0.000000,0.250000,0,0);}
.m7c_c01088{transform:matrix(0.186992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186992,0.000000,0.000000,0.250000,0,0);}
.ma7_c01088{transform:matrix(0.187413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187413,0.000000,0.000000,0.250000,0,0);}
.maf_c01088{transform:matrix(0.205430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205430,0.000000,0.000000,0.250000,0,0);}
.m71_c01088{transform:matrix(0.221937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221937,0.000000,0.000000,0.250000,0,0);}
.m91_c01088{transform:matrix(0.238988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238988,0.000000,0.000000,0.250000,0,0);}
.m8f_c01088{transform:matrix(0.249258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249258,0.000000,0.000000,0.250000,0,0);}
.m0_c01088{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01088{transform:matrix(0.252691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252691,0.000000,0.000000,0.250000,0,0);}
.m21_c01088{transform:matrix(0.255043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255043,0.000000,0.000000,0.250000,0,0);}
.m45_c01088{transform:matrix(0.255749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255749,0.000000,0.000000,0.250000,0,0);}
.m78_c01088{transform:matrix(0.255832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255832,0.000000,0.000000,0.250000,0,0);}
.m2_c01088{transform:matrix(0.258423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258423,0.000000,0.000000,0.250000,0,0);}
.m85_c01088{transform:matrix(0.258499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258499,0.000000,0.000000,0.250000,0,0);}
.m7a_c01088{transform:matrix(0.259109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259109,0.000000,0.000000,0.250000,0,0);}
.m6b_c01088{transform:matrix(0.260577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260577,0.000000,0.000000,0.250000,0,0);}
.m23_c01088{transform:matrix(0.260800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260800,0.000000,0.000000,0.250000,0,0);}
.m10_c01088{transform:matrix(0.261167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261167,0.000000,0.000000,0.250000,0,0);}
.m2a_c01088{transform:matrix(0.262734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262734,0.000000,0.000000,0.250000,0,0);}
.m3d_c01088{transform:matrix(0.263458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263458,0.000000,0.000000,0.250000,0,0);}
.m5a_c01088{transform:matrix(0.263652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263652,0.000000,0.000000,0.250000,0,0);}
.m54_c01088{transform:matrix(0.265140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265140,0.000000,0.000000,0.250000,0,0);}
.ma2_c01088{transform:matrix(0.266057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266057,0.000000,0.000000,0.250000,0,0);}
.m70_c01088{transform:matrix(0.266562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266562,0.000000,0.000000,0.250000,0,0);}
.m25_c01088{transform:matrix(0.266630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266630,0.000000,0.000000,0.250000,0,0);}
.m5b_c01088{transform:matrix(0.266768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266768,0.000000,0.000000,0.250000,0,0);}
.m2d_c01088{transform:matrix(0.268314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268314,0.000000,0.000000,0.250000,0,0);}
.m41_c01088{transform:matrix(0.269115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269115,0.000000,0.000000,0.250000,0,0);}
.m49_c01088{transform:matrix(0.269309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269309,0.000000,0.000000,0.250000,0,0);}
.m9e_c01088{transform:matrix(0.270028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270028,0.000000,0.000000,0.250000,0,0);}
.m7_c01088{transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);}
.m6c_c01088{transform:matrix(0.271782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271782,0.000000,0.000000,0.250000,0,0);}
.m2c_c01088{transform:matrix(0.272258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272258,0.000000,0.000000,0.250000,0,0);}
.m89_c01088{transform:matrix(0.272983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272983,0.000000,0.000000,0.250000,0,0);}
.m8e_c01088{transform:matrix(0.273180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273180,0.000000,0.000000,0.250000,0,0);}
.m6e_c01088{transform:matrix(0.273934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273934,0.000000,0.000000,0.250000,0,0);}
.m16_c01088{transform:matrix(0.274532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274532,0.000000,0.000000,0.250000,0,0);}
.m68_c01088{transform:matrix(0.275523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275523,0.000000,0.000000,0.250000,0,0);}
.m76_c01088{transform:matrix(0.275549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275549,0.000000,0.000000,0.250000,0,0);}
.m1c_c01088{transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);}
.ma_c01088{transform:matrix(0.277012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277012,0.000000,0.000000,0.250000,0,0);}
.m95_c01088{transform:matrix(0.277256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277256,0.000000,0.000000,0.250000,0,0);}
.m60_c01088{transform:matrix(0.278198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278198,0.000000,0.000000,0.250000,0,0);}
.m59_c01088{transform:matrix(0.279274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279274,0.000000,0.000000,0.250000,0,0);}
.m63_c01088{transform:matrix(0.279348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279348,0.000000,0.000000,0.250000,0,0);}
.mb_c01088{transform:matrix(0.280064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280064,0.000000,0.000000,0.250000,0,0);}
.m12_c01088{transform:matrix(0.280090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280090,0.000000,0.000000,0.250000,0,0);}
.m47_c01088{transform:matrix(0.280557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280557,0.000000,0.000000,0.250000,0,0);}
.m86_c01088{transform:matrix(0.281059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281059,0.000000,0.000000,0.250000,0,0);}
.m93_c01088{transform:matrix(0.282611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282611,0.000000,0.000000,0.250000,0,0);}
.m18_c01088{transform:matrix(0.283466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283466,0.000000,0.000000,0.250000,0,0);}
.m73_c01088{transform:matrix(0.283560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283560,0.000000,0.000000,0.250000,0,0);}
.m84_c01088{transform:matrix(0.284164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284164,0.000000,0.000000,0.250000,0,0);}
.m97_c01088{transform:matrix(0.284795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284795,0.000000,0.000000,0.250000,0,0);}
.m57_c01088{transform:matrix(0.284976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284976,0.000000,0.000000,0.250000,0,0);}
.m99_c01088{transform:matrix(0.285573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285573,0.000000,0.000000,0.250000,0,0);}
.m69_c01088{transform:matrix(0.287722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287722,0.000000,0.000000,0.250000,0,0);}
.m4_c01088{transform:matrix(0.287776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287776,0.000000,0.000000,0.250000,0,0);}
.m6d_c01088{transform:matrix(0.289031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289031,0.000000,0.000000,0.250000,0,0);}
.m6a_c01088{transform:matrix(0.291372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291372,0.000000,0.000000,0.250000,0,0);}
.m5_c01088{transform:matrix(0.292229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292229,0.000000,0.000000,0.250000,0,0);}
.m19_c01088{transform:matrix(0.292969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292969,0.000000,0.000000,0.250000,0,0);}
.mac_c01088{transform:matrix(0.293290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293290,0.000000,0.000000,0.250000,0,0);}
.m77_c01088{transform:matrix(0.294200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294200,0.000000,0.000000,0.250000,0,0);}
.m6f_c01088{transform:matrix(0.295448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295448,0.000000,0.000000,0.250000,0,0);}
.m29_c01088{transform:matrix(0.296129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296129,0.000000,0.000000,0.250000,0,0);}
.m92_c01088{transform:matrix(0.296261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296261,0.000000,0.000000,0.250000,0,0);}
.mae_c01088{transform:matrix(0.297846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297846,0.000000,0.000000,0.250000,0,0);}
.m56_c01088{transform:matrix(0.298140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298140,0.000000,0.000000,0.250000,0,0);}
.mb0_c01088{transform:matrix(0.298692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298692,0.000000,0.000000,0.250000,0,0);}
.m72_c01088{transform:matrix(0.299628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299628,0.000000,0.000000,0.250000,0,0);}
.m88_c01088{transform:matrix(0.299687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299687,0.000000,0.000000,0.250000,0,0);}
.m3b_c01088{transform:matrix(0.299945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299945,0.000000,0.000000,0.250000,0,0);}
.ma3_c01088{transform:matrix(0.300363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300363,0.000000,0.000000,0.250000,0,0);}
.ma5_c01088{transform:matrix(0.300918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300918,0.000000,0.000000,0.250000,0,0);}
.m39_c01088{transform:matrix(0.301050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301050,0.000000,0.000000,0.250000,0,0);}
.m28_c01088{transform:matrix(0.301309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301309,0.000000,0.000000,0.250000,0,0);}
.m4b_c01088{transform:matrix(0.301848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301848,0.000000,0.000000,0.250000,0,0);}
.m20_c01088{transform:matrix(0.302415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302415,0.000000,0.000000,0.250000,0,0);}
.m96_c01088{transform:matrix(0.302657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302657,0.000000,0.000000,0.250000,0,0);}
.m3f_c01088{transform:matrix(0.302844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302844,0.000000,0.000000,0.250000,0,0);}
.m53_c01088{transform:matrix(0.303130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303130,0.000000,0.000000,0.250000,0,0);}
.m66_c01088{transform:matrix(0.303381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303381,0.000000,0.000000,0.250000,0,0);}
.m51_c01088{transform:matrix(0.303661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303661,0.000000,0.000000,0.250000,0,0);}
.m87_c01088{transform:matrix(0.303909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303909,0.000000,0.000000,0.250000,0,0);}
.m64_c01088{transform:matrix(0.303983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303983,0.000000,0.000000,0.250000,0,0);}
.m3c_c01088{transform:matrix(0.304045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304045,0.000000,0.000000,0.250000,0,0);}
.m4e_c01088{transform:matrix(0.304133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304133,0.000000,0.000000,0.250000,0,0);}
.m5e_c01088{transform:matrix(0.306209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306209,0.000000,0.000000,0.250000,0,0);}
.m35_c01088{transform:matrix(0.306456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306456,0.000000,0.000000,0.250000,0,0);}
.maa_c01088{transform:matrix(0.307931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307931,0.000000,0.000000,0.250000,0,0);}
.m1_c01088{transform:matrix(0.307953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307953,0.000000,0.000000,0.250000,0,0);}
.me_c01088{transform:matrix(0.308045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308045,0.000000,0.000000,0.250000,0,0);}
.m55_c01088{transform:matrix(0.308586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308586,0.000000,0.000000,0.250000,0,0);}
.m65_c01088{transform:matrix(0.308902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308902,0.000000,0.000000,0.250000,0,0);}
.m2b_c01088{transform:matrix(0.309944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309944,0.000000,0.000000,0.250000,0,0);}
.ma4_c01088{transform:matrix(0.311019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311019,0.000000,0.000000,0.250000,0,0);}
.m11_c01088{transform:matrix(0.311782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311782,0.000000,0.000000,0.250000,0,0);}
.m8d_c01088{transform:matrix(0.312599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312599,0.000000,0.000000,0.250000,0,0);}
.m1b_c01088{transform:matrix(0.313231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313231,0.000000,0.000000,0.250000,0,0);}
.mab_c01088{transform:matrix(0.314147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314147,0.000000,0.000000,0.250000,0,0);}
.m46_c01088{transform:matrix(0.314541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314541,0.000000,0.000000,0.250000,0,0);}
.m94_c01088{transform:matrix(0.315222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315222,0.000000,0.000000,0.250000,0,0);}
.m1f_c01088{transform:matrix(0.315747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315747,0.000000,0.000000,0.250000,0,0);}
.m90_c01088{transform:matrix(0.315754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315754,0.000000,0.000000,0.250000,0,0);}
.m4f_c01088{transform:matrix(0.316094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316094,0.000000,0.000000,0.250000,0,0);}
.m79_c01088{transform:matrix(0.318366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318366,0.000000,0.000000,0.250000,0,0);}
.m4d_c01088{transform:matrix(0.318415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318415,0.000000,0.000000,0.250000,0,0);}
.m58_c01088{transform:matrix(0.319251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319251,0.000000,0.000000,0.250000,0,0);}
.mc_c01088{transform:matrix(0.319398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319398,0.000000,0.000000,0.250000,0,0);}
.m44_c01088{transform:matrix(0.319467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319467,0.000000,0.000000,0.250000,0,0);}
.ma0_c01088{transform:matrix(0.319508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319508,0.000000,0.000000,0.250000,0,0);}
.m83_c01088{transform:matrix(0.320409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320409,0.000000,0.000000,0.250000,0,0);}
.m1e_c01088{transform:matrix(0.320883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320883,0.000000,0.000000,0.250000,0,0);}
.m75_c01088{transform:matrix(0.320936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320936,0.000000,0.000000,0.250000,0,0);}
.m26_c01088{transform:matrix(0.321700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321700,0.000000,0.000000,0.250000,0,0);}
.m5f_c01088{transform:matrix(0.323471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323471,0.000000,0.000000,0.250000,0,0);}
.m22_c01088{transform:matrix(0.324607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324607,0.000000,0.000000,0.250000,0,0);}
.m9f_c01088{transform:matrix(0.325318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325318,0.000000,0.000000,0.250000,0,0);}
.m15_c01088{transform:matrix(0.325821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325821,0.000000,0.000000,0.250000,0,0);}
.m6_c01088{transform:matrix(0.326091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326091,0.000000,0.000000,0.250000,0,0);}
.m30_c01088{transform:matrix(0.326332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326332,0.000000,0.000000,0.250000,0,0);}
.ma1_c01088{transform:matrix(0.327875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327875,0.000000,0.000000,0.250000,0,0);}
.m7b_c01088{transform:matrix(0.328039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328039,0.000000,0.000000,0.250000,0,0);}
.mb1_c01088{transform:matrix(0.328167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328167,0.000000,0.000000,0.250000,0,0);}
.m43_c01088{transform:matrix(0.328276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328276,0.000000,0.000000,0.250000,0,0);}
.ma6_c01088{transform:matrix(0.328954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328954,0.000000,0.000000,0.250000,0,0);}
.m61_c01088{transform:matrix(0.328956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328956,0.000000,0.000000,0.250000,0,0);}
.m7f_c01088{transform:matrix(0.329012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329012,0.000000,0.000000,0.250000,0,0);}
.m4a_c01088{transform:matrix(0.329515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329515,0.000000,0.000000,0.250000,0,0);}
.m17_c01088{transform:matrix(0.329801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329801,0.000000,0.000000,0.250000,0,0);}
.m2f_c01088{transform:matrix(0.333534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333534,0.000000,0.000000,0.250000,0,0);}
.m24_c01088{transform:matrix(0.335033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335033,0.000000,0.000000,0.250000,0,0);}
.m9c_c01088{transform:matrix(0.335220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335220,0.000000,0.000000,0.250000,0,0);}
.m42_c01088{transform:matrix(0.335502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335502,0.000000,0.000000,0.250000,0,0);}
.m81_c01088{transform:matrix(0.335950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335950,0.000000,0.000000,0.250000,0,0);}
.m98_c01088{transform:matrix(0.336419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336419,0.000000,0.000000,0.250000,0,0);}
.m62_c01088{transform:matrix(0.336924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336924,0.000000,0.000000,0.250000,0,0);}
.m27_c01088{transform:matrix(0.336941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336941,0.000000,0.000000,0.250000,0,0);}
.m14_c01088{transform:matrix(0.337284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337284,0.000000,0.000000,0.250000,0,0);}
.m3e_c01088{transform:matrix(0.338179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338179,0.000000,0.000000,0.250000,0,0);}
.m67_c01088{transform:matrix(0.338573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338573,0.000000,0.000000,0.250000,0,0);}
.m9b_c01088{transform:matrix(0.339017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339017,0.000000,0.000000,0.250000,0,0);}
.mad_c01088{transform:matrix(0.339626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339626,0.000000,0.000000,0.250000,0,0);}
.m1a_c01088{transform:matrix(0.341044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341044,0.000000,0.000000,0.250000,0,0);}
.m5d_c01088{transform:matrix(0.342888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342888,0.000000,0.000000,0.250000,0,0);}
.m50_c01088{transform:matrix(0.344194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344194,0.000000,0.000000,0.250000,0,0);}
.m13_c01088{transform:matrix(0.344721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344721,0.000000,0.000000,0.250000,0,0);}
.m9_c01088{transform:matrix(0.345101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345101,0.000000,0.000000,0.250000,0,0);}
.m32_c01088{transform:matrix(0.346028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346028,0.000000,0.000000,0.250000,0,0);}
.m40_c01088{transform:matrix(0.346472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346472,0.000000,0.000000,0.250000,0,0);}
.m4c_c01088{transform:matrix(0.350576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350576,0.000000,0.000000,0.250000,0,0);}
.md_c01088{transform:matrix(0.350922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350922,0.000000,0.000000,0.250000,0,0);}
.m48_c01088{transform:matrix(0.352638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352638,0.000000,0.000000,0.250000,0,0);}
.m74_c01088{transform:matrix(0.354172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354172,0.000000,0.000000,0.250000,0,0);}
.m9d_c01088{transform:matrix(0.357328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357328,0.000000,0.000000,0.250000,0,0);}
.m9a_c01088{transform:matrix(0.361256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361256,0.000000,0.000000,0.250000,0,0);}
.ma9_c01088{transform:matrix(0.380348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380348,0.000000,0.000000,0.250000,0,0);}
.mf_c01088{transform:matrix(0.384167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384167,0.000000,0.000000,0.250000,0,0);}
.m8c_c01088{transform:matrix(0.391082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391082,0.000000,0.000000,0.250000,0,0);}
.m5c_c01088{transform:matrix(0.391270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391270,0.000000,0.000000,0.250000,0,0);}
.m1d_c01088{transform:matrix(0.397481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397481,0.000000,0.000000,0.250000,0,0);}
.ma8_c01088{transform:matrix(0.403692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403692,0.000000,0.000000,0.250000,0,0);}
.m37_c01088{transform:matrix(0.404405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404405,0.000000,0.000000,0.250000,0,0);}
.m52_c01088{transform:matrix(0.408109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408109,0.000000,0.000000,0.250000,0,0);}
.m8_c01088{transform:matrix(0.409902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409902,0.000000,0.000000,0.250000,0,0);}
.m31_c01088{transform:matrix(0.414340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414340,0.000000,0.000000,0.250000,0,0);}
.m34_c01088{transform:matrix(0.471170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471170,0.000000,0.000000,0.250000,0,0);}
.m33_c01088{transform:matrix(0.728858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728858,0.000000,0.000000,0.250000,0,0);}
.v0_c01088{vertical-align:0.000000px;}
.ls1c_c01088{letter-spacing:-2.661127px;}
.ls22_c01088{letter-spacing:-2.577967px;}
.ls1f_c01088{letter-spacing:-2.300767px;}
.ls18_c01088{letter-spacing:-1.801800px;}
.lsc_c01088{letter-spacing:-1.108800px;}
.ls9_c01088{letter-spacing:-0.653836px;}
.lse_c01088{letter-spacing:-0.568260px;}
.ls2_c01088{letter-spacing:0.000000px;}
.ls24_c01088{letter-spacing:0.552420px;}
.ls1d_c01088{letter-spacing:0.790735px;}
.lsa_c01088{letter-spacing:0.801900px;}
.lsd_c01088{letter-spacing:0.811800px;}
.ls23_c01088{letter-spacing:0.828751px;}
.ls8_c01088{letter-spacing:1.269738px;}
.ls0_c01088{letter-spacing:1.437009px;}
.lsb_c01088{letter-spacing:1.584000px;}
.ls14_c01088{letter-spacing:1.806874px;}
.ls15_c01088{letter-spacing:2.059200px;}
.ls3_c01088{letter-spacing:2.752366px;}
.ls1_c01088{letter-spacing:2.851207px;}
.ls19_c01088{letter-spacing:3.246575px;}
.ls10_c01088{letter-spacing:3.375830px;}
.ls20_c01088{letter-spacing:3.445200px;}
.ls7_c01088{letter-spacing:3.564000px;}
.ls12_c01088{letter-spacing:3.603610px;}
.ls13_c01088{letter-spacing:3.702610px;}
.ls21_c01088{letter-spacing:3.752110px;}
.ls4_c01088{letter-spacing:3.801610px;}
.ls16_c01088{letter-spacing:3.851110px;}
.ls11_c01088{letter-spacing:3.940200px;}
.ls1a_c01088{letter-spacing:4.039200px;}
.ls5_c01088{letter-spacing:4.118400px;}
.ls17_c01088{letter-spacing:4.435200px;}
.ls6_c01088{letter-spacing:29.937798px;}
.ls1b_c01088{letter-spacing:58.449798px;}
.ls1e_c01088{letter-spacing:59.875398px;}
.lsf_c01088{letter-spacing:61.300998px;}
.sc__c01088{text-shadow:none;}
.sc0_c01088{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01088{-webkit-text-stroke:0px transparent;}
.sc0_c01088{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01088{word-spacing:0.000000px;}
._b_c01088{margin-left:-13.686237px;}
._2_c01088{width:1.932480px;}
._8_c01088{width:5.387976px;}
._6_c01088{width:7.357482px;}
._5_c01088{width:10.177200px;}
._3_c01088{width:13.882572px;}
._9_c01088{width:23.532063px;}
._4_c01088{width:27.159660px;}
._0_c01088{width:29.561405px;}
._a_c01088{width:31.244251px;}
._c_c01088{width:34.135052px;}
._1_c01088{width:46.007280px;}
._7_c01088{width:48.153996px;}
.fc0_c01088{color:transparent;}
.fsb_c01088{font-size:16.038000px;}
.fsd_c01088{font-size:16.236000px;}
.fs1f_c01088{font-size:19.404000px;}
.fse_c01088{font-size:22.176000px;}
.fs6_c01088{font-size:22.572000px;}
.fs0_c01088{font-size:27.720000px;}
.fs5_c01088{font-size:28.314000px;}
.fs7_c01088{font-size:29.937798px;}
.fsc_c01088{font-size:31.680000px;}
.fs25_c01088{font-size:33.264000px;}
.fs24_c01088{font-size:33.660000px;}
.fs8_c01088{font-size:39.204000px;}
.fs16_c01088{font-size:41.184000px;}
.fsa_c01088{font-size:41.382000px;}
.fs19_c01088{font-size:51.480000px;}
.fs1b_c01088{font-size:58.449798px;}
.fs1c_c01088{font-size:59.875398px;}
.fsf_c01088{font-size:61.300998px;}
.fs23_c01088{font-size:61.380000px;}
.fs22_c01088{font-size:64.548000px;}
.fs1d_c01088{font-size:65.736198px;}
.fs4_c01088{font-size:66.528000px;}
.fs12_c01088{font-size:68.112198px;}
.fs1e_c01088{font-size:68.904000px;}
.fs2_c01088{font-size:71.280000px;}
.fs13_c01088{font-size:72.072198px;}
.fs9_c01088{font-size:72.864000px;}
.fs21_c01088{font-size:73.656198px;}
.fs15_c01088{font-size:74.052198px;}
.fs10_c01088{font-size:74.844000px;}
.fs20_c01088{font-size:75.042198px;}
.fs1_c01088{font-size:76.032198px;}
.fs17_c01088{font-size:77.022198px;}
.fs11_c01088{font-size:78.804000px;}
.fs1a_c01088{font-size:80.784000px;}
.fs14_c01088{font-size:81.972198px;}
.fs3_c01088{font-size:82.368000px;}
.fs18_c01088{font-size:88.704000px;}
.y0_c01088{bottom:0.000000px;}
.y25_c01088{bottom:32.339385px;}
.y24_c01088{bottom:64.063935px;}
.y1_c01088{bottom:76.500000px;}
.y23_c01088{bottom:126.433935px;}
.y22_c01088{bottom:191.650185px;}
.y21_c01088{bottom:223.731135px;}
.y20_c01088{bottom:239.412735px;}
.y1f_c01088{bottom:256.163535px;}
.y1d_c01088{bottom:288.234585px;}
.y1e_c01088{bottom:293.580585px;}
.y1c_c01088{bottom:320.671935px;}
.y1b_c01088{bottom:353.104335px;}
.y1a_c01088{bottom:384.818985px;}
.y10_c01088{bottom:406.564335px;}
.y19_c01088{bottom:416.187135px;}
.y18_c01088{bottom:447.550335px;}
.y17_c01088{bottom:479.269935px;}
.y16_c01088{bottom:511.340985px;}
.y15_c01088{bottom:543.421935px;}
.y14_c01088{bottom:575.136585px;}
.y13_c01088{bottom:607.217535px;}
.y12_c01088{bottom:639.293535px;}
.y11_c01088{bottom:671.720985px;}
.yf_c01088{bottom:698.812335px;}
.ye_c01088{bottom:703.801935px;}
.yd_c01088{bottom:735.877935px;}
.y2_c01088{bottom:749.059785px;}
.yc_c01088{bottom:767.241135px;}
.yb_c01088{bottom:799.312185px;}
.ya_c01088{bottom:830.675385px;}
.y3_c01088{bottom:926.195535px;}
.y9_c01088{bottom:985.714335px;}
.y8_c01088{bottom:996.401385px;}
.y7_c01088{bottom:1007.811135px;}
.y6_c01088{bottom:1010.300985px;}
.y5_c01088{bottom:1019.567385px;}
.y4_c01088{bottom:1065.186585px;}
.hd_c01088{height:15.740420px;}
.hf_c01088{height:15.934746px;}
.h21_c01088{height:19.043965px;}
.h9_c01088{height:19.938573px;}
.h10_c01088{height:23.128875px;}
.h8_c01088{height:23.541891px;}
.h2_c01088{height:28.911094px;}
.h7_c01088{height:29.530617px;}
.h26_c01088{height:33.035449px;}
.he_c01088{height:33.041250px;}
.h27_c01088{height:34.693313px;}
.ha_c01088{height:38.476582px;}
.h1d_c01088{height:38.927565px;}
.h1e_c01088{height:39.877015px;}
.h18_c01088{height:40.419844px;}
.hc_c01088{height:40.614170px;}
.h11_c01088{height:40.826465px;}
.h1b_c01088{height:53.692031px;}
.h25_c01088{height:64.017422px;}
.h1f_c01088{height:64.516483px;}
.h24_c01088{height:67.321547px;}
.h6_c01088{height:69.386625px;}
.h14_c01088{height:71.038894px;}
.hb_c01088{height:71.512031px;}
.h20_c01088{height:71.864719px;}
.h17_c01088{height:72.678183px;}
.h12_c01088{height:73.455293px;}
.h22_c01088{height:73.649813px;}
.h4_c01088{height:74.342813px;}
.h3_c01088{height:74.621444px;}
.h15_c01088{height:75.169050px;}
.h23_c01088{height:76.821113px;}
.h13_c01088{height:77.341816px;}
.h1c_c01088{height:79.285078px;}
.h19_c01088{height:80.331746px;}
.h16_c01088{height:80.451229px;}
.h5_c01088{height:80.839688px;}
.h1a_c01088{height:87.058125px;}
.h1_c01088{height:1110.000000px;}
.h0_c01088{height:1263.000000px;}
.w1_c01088{width:775.500000px;}
.w0_c01088{width:892.500000px;}
.x0_c01088{left:0.000000px;}
.x2_c01088{left:49.773885px;}
.x1_c01088{left:58.500000px;}
.xa_c01088{left:75.944535px;}
.x3b_c01088{left:122.504235px;}
.x64_c01088{left:129.681735px;}
.xb_c01088{left:130.686585px;}
.x3_c01088{left:131.933985px;}
.x5a_c01088{left:152.258685px;}
.x49_c01088{left:163.886235px;}
.xc_c01088{left:165.494985px;}
.x1f_c01088{left:175.820685px;}
.x57_c01088{left:184.834635px;}
.x5b_c01088{left:186.522585px;}
.x2a_c01088{left:187.953135px;}
.x51_c01088{left:197.877885px;}
.x5f_c01088{left:207.381885px;}
.x41_c01088{left:208.762935px;}
.x3c_c01088{left:210.267735px;}
.x6b_c01088{left:218.425335px;}
.xd_c01088{left:221.108235px;}
.x4_c01088{left:229.488585px;}
.x58_c01088{left:230.924085px;}
.x59_c01088{left:234.077235px;}
.x77_c01088{left:241.744785px;}
.x71_c01088{left:251.931885px;}
.xe_c01088{left:253.466385px;}
.x52_c01088{left:263.311935px;}
.x44_c01088{left:264.584085px;}
.x17_c01088{left:265.643385px;}
.x78_c01088{left:273.647535px;}
.x42_c01088{left:276.350235px;}
.x65_c01088{left:284.705835px;}
.x4a_c01088{left:285.765135px;}
.xf_c01088{left:287.690685px;}
.x74_c01088{left:297.026385px;}
.x45_c01088{left:299.144985px;}
.x18_c01088{left:309.109335px;}
.x6c_c01088{left:317.890635px;}
.x25_c01088{left:320.627985px;}
.x60_c01088{left:329.780535px;}
.x5c_c01088{left:330.785385px;}
.x5_c01088{left:332.012985px;}
.x53_c01088{left:341.388285px;}
.x20_c01088{left:342.992085px;}
.x19_c01088{left:351.352635px;}
.x10_c01088{left:354.055335px;}
.x66_c01088{left:362.084235px;}
.x75_c01088{left:363.252435px;}
.x54_c01088{left:364.376085px;}
.x4b_c01088{left:374.518635px;}
.x21_c01088{left:375.721485px;}
.x3d_c01088{left:385.903635px;}
.x6d_c01088{left:396.263985px;}
.x1a_c01088{left:398.026185px;}
.x43_c01088{left:399.159735px;}
.x26_c01088{left:400.847685px;}
.x67_c01088{left:408.549885px;}
.x11_c01088{left:409.633935px;}
.x5d_c01088{left:419.915085px;}
.x27_c01088{left:421.325835px;}
.x6e_c01088{left:430.186335px;}
.x46_c01088{left:431.379285px;}
.x12_c01088{left:442.229685px;}
.x72_c01088{left:452.000985px;}
.x79_c01088{left:454.094835px;}
.x13_c01088{left:463.975035px;}
.x28_c01088{left:465.222435px;}
.x6f_c01088{left:473.246385px;}
.x4c_c01088{left:475.869885px;}
.x3e_c01088{left:486.413385px;}
.x61_c01088{left:488.259735px;}
.x68_c01088{left:496.615335px;}
.x2b_c01088{left:498.620085px;}
.x7a_c01088{left:505.416435px;}
.x2d_c01088{left:507.371685px;}
.x1b_c01088{left:509.767485px;}
.x55_c01088{left:517.732035px;}
.x22_c01088{left:520.781235px;}
.x5e_c01088{left:529.844685px;}
.x4d_c01088{left:530.928735px;}
.x7b_c01088{left:539.536785px;}
.x1c_c01088{left:541.492035px;}
.x2e_c01088{left:551.312835px;}
.x69_c01088{left:552.441435px;}
.x14_c01088{left:553.535385px;}
.x2f_c01088{left:555.960885px;}
.x30_c01088{left:558.218085px;}
.x73_c01088{left:561.787035px;}
.x76_c01088{left:563.123535px;}
.x3f_c01088{left:574.102635px;}
.x31_c01088{left:579.448635px;}
.x32_c01088{left:581.156385px;}
.x7c_c01088{left:582.656235px;}
.x56_c01088{left:583.760085px;}
.x1d_c01088{left:585.146085px;}
.x23_c01088{left:586.774635px;}
.x33_c01088{left:596.694435px;}
.x34_c01088{left:602.555235px;}
.x35_c01088{left:605.752935px;}
.x24_c01088{left:608.292285px;}
.x36_c01088{left:613.603635px;}
.x47_c01088{left:617.266635px;}
.x70_c01088{left:628.344735px;}
.x2c_c01088{left:629.493135px;}
.x4e_c01088{left:632.141385px;}
.x4f_c01088{left:640.031685px;}
.x15_c01088{left:641.105835px;}
.x37_c01088{left:646.065735px;}
.x29_c01088{left:653.025435px;}
.x38_c01088{left:654.619335px;}
.x62_c01088{left:661.153335px;}
.x50_c01088{left:663.380835px;}
.x40_c01088{left:673.963935px;}
.x16_c01088{left:675.651885px;}
.x39_c01088{left:677.864535px;}
.x3a_c01088{left:681.403785px;}
.x6a_c01088{left:683.561985px;}
.x1e_c01088{left:684.957885px;}
.x6_c01088{left:691.145385px;}
.x48_c01088{left:695.243985px;}
.x7e_c01088{left:696.258735px;}
.x7_c01088{left:702.901635px;}
.x8_c01088{left:704.416335px;}
.x7d_c01088{left:705.807285px;}
.x9_c01088{left:706.925985px;}
.x63_c01088{left:729.968235px;}
@media print{
.v0_c01088{vertical-align:0.000000pt;}
.ls1c_c01088{letter-spacing:-2.365446pt;}
.ls22_c01088{letter-spacing:-2.291526pt;}
.ls1f_c01088{letter-spacing:-2.045126pt;}
.ls18_c01088{letter-spacing:-1.601600pt;}
.lsc_c01088{letter-spacing:-0.985600pt;}
.ls9_c01088{letter-spacing:-0.581187pt;}
.lse_c01088{letter-spacing:-0.505120pt;}
.ls2_c01088{letter-spacing:0.000000pt;}
.ls24_c01088{letter-spacing:0.491040pt;}
.ls1d_c01088{letter-spacing:0.702875pt;}
.lsa_c01088{letter-spacing:0.712800pt;}
.lsd_c01088{letter-spacing:0.721600pt;}
.ls23_c01088{letter-spacing:0.736668pt;}
.ls8_c01088{letter-spacing:1.128656pt;}
.ls0_c01088{letter-spacing:1.277341pt;}
.lsb_c01088{letter-spacing:1.408000pt;}
.ls14_c01088{letter-spacing:1.606110pt;}
.ls15_c01088{letter-spacing:1.830400pt;}
.ls3_c01088{letter-spacing:2.446547pt;}
.ls1_c01088{letter-spacing:2.534407pt;}
.ls19_c01088{letter-spacing:2.885844pt;}
.ls10_c01088{letter-spacing:3.000737pt;}
.ls20_c01088{letter-spacing:3.062400pt;}
.ls7_c01088{letter-spacing:3.168000pt;}
.ls12_c01088{letter-spacing:3.203209pt;}
.ls13_c01088{letter-spacing:3.291209pt;}
.ls21_c01088{letter-spacing:3.335209pt;}
.ls4_c01088{letter-spacing:3.379209pt;}
.ls16_c01088{letter-spacing:3.423209pt;}
.ls11_c01088{letter-spacing:3.502400pt;}
.ls1a_c01088{letter-spacing:3.590400pt;}
.ls5_c01088{letter-spacing:3.660800pt;}
.ls17_c01088{letter-spacing:3.942400pt;}
.ls6_c01088{letter-spacing:26.611376pt;}
.ls1b_c01088{letter-spacing:51.955376pt;}
.ls1e_c01088{letter-spacing:53.222576pt;}
.lsf_c01088{letter-spacing:54.489776pt;}
.ws0_c01088{word-spacing:0.000000pt;}
._b_c01088{margin-left:-12.165544pt;}
._2_c01088{width:1.717760pt;}
._8_c01088{width:4.789312pt;}
._6_c01088{width:6.539984pt;}
._5_c01088{width:9.046400pt;}
._3_c01088{width:12.340064pt;}
._9_c01088{width:20.917389pt;}
._4_c01088{width:24.141920pt;}
._0_c01088{width:26.276804pt;}
._a_c01088{width:27.772668pt;}
._c_c01088{width:30.342268pt;}
._1_c01088{width:40.895360pt;}
._7_c01088{width:42.803552pt;}
.fsb_c01088{font-size:14.256000pt;}
.fsd_c01088{font-size:14.432000pt;}
.fs1f_c01088{font-size:17.248000pt;}
.fse_c01088{font-size:19.712000pt;}
.fs6_c01088{font-size:20.064000pt;}
.fs0_c01088{font-size:24.640000pt;}
.fs5_c01088{font-size:25.168000pt;}
.fs7_c01088{font-size:26.611376pt;}
.fsc_c01088{font-size:28.160000pt;}
.fs25_c01088{font-size:29.568000pt;}
.fs24_c01088{font-size:29.920000pt;}
.fs8_c01088{font-size:34.848000pt;}
.fs16_c01088{font-size:36.608000pt;}
.fsa_c01088{font-size:36.784000pt;}
.fs19_c01088{font-size:45.760000pt;}
.fs1b_c01088{font-size:51.955376pt;}
.fs1c_c01088{font-size:53.222576pt;}
.fsf_c01088{font-size:54.489776pt;}
.fs23_c01088{font-size:54.560000pt;}
.fs22_c01088{font-size:57.376000pt;}
.fs1d_c01088{font-size:58.432176pt;}
.fs4_c01088{font-size:59.136000pt;}
.fs12_c01088{font-size:60.544176pt;}
.fs1e_c01088{font-size:61.248000pt;}
.fs2_c01088{font-size:63.360000pt;}
.fs13_c01088{font-size:64.064176pt;}
.fs9_c01088{font-size:64.768000pt;}
.fs21_c01088{font-size:65.472176pt;}
.fs15_c01088{font-size:65.824176pt;}
.fs10_c01088{font-size:66.528000pt;}
.fs20_c01088{font-size:66.704176pt;}
.fs1_c01088{font-size:67.584176pt;}
.fs17_c01088{font-size:68.464176pt;}
.fs11_c01088{font-size:70.048000pt;}
.fs1a_c01088{font-size:71.808000pt;}
.fs14_c01088{font-size:72.864176pt;}
.fs3_c01088{font-size:73.216000pt;}
.fs18_c01088{font-size:78.848000pt;}
.y0_c01088{bottom:0.000000pt;}
.y25_c01088{bottom:28.746120pt;}
.y24_c01088{bottom:56.945720pt;}
.y1_c01088{bottom:68.000000pt;}
.y23_c01088{bottom:112.385720pt;}
.y22_c01088{bottom:170.355720pt;}
.y21_c01088{bottom:198.872120pt;}
.y20_c01088{bottom:212.811320pt;}
.y1f_c01088{bottom:227.700920pt;}
.y1d_c01088{bottom:256.208520pt;}
.y1e_c01088{bottom:260.960520pt;}
.y1c_c01088{bottom:285.041720pt;}
.y1b_c01088{bottom:313.870520pt;}
.y1a_c01088{bottom:342.061320pt;}
.y10_c01088{bottom:361.390520pt;}
.y19_c01088{bottom:369.944120pt;}
.y18_c01088{bottom:397.822520pt;}
.y17_c01088{bottom:426.017720pt;}
.y16_c01088{bottom:454.525320pt;}
.y15_c01088{bottom:483.041720pt;}
.y14_c01088{bottom:511.232520pt;}
.y13_c01088{bottom:539.748920pt;}
.y12_c01088{bottom:568.260920pt;}
.y11_c01088{bottom:597.085320pt;}
.yf_c01088{bottom:621.166520pt;}
.ye_c01088{bottom:625.601720pt;}
.yd_c01088{bottom:654.113720pt;}
.y2_c01088{bottom:665.830920pt;}
.yc_c01088{bottom:681.992120pt;}
.yb_c01088{bottom:710.499720pt;}
.ya_c01088{bottom:738.378120pt;}
.y3_c01088{bottom:823.284920pt;}
.y9_c01088{bottom:876.190520pt;}
.y8_c01088{bottom:885.690120pt;}
.y7_c01088{bottom:895.832120pt;}
.y6_c01088{bottom:898.045320pt;}
.y5_c01088{bottom:906.282120pt;}
.y4_c01088{bottom:946.832520pt;}
.hd_c01088{height:13.991484pt;}
.hf_c01088{height:14.164219pt;}
.h21_c01088{height:16.927969pt;}
.h9_c01088{height:17.723176pt;}
.h10_c01088{height:20.559000pt;}
.h8_c01088{height:20.926125pt;}
.h2_c01088{height:25.698750pt;}
.h7_c01088{height:26.249438pt;}
.h26_c01088{height:29.364844pt;}
.he_c01088{height:29.370000pt;}
.h27_c01088{height:30.838500pt;}
.ha_c01088{height:34.201406pt;}
.h1d_c01088{height:34.602280pt;}
.h1e_c01088{height:35.446236pt;}
.h18_c01088{height:35.928750pt;}
.hc_c01088{height:36.101484pt;}
.h11_c01088{height:36.290191pt;}
.h1b_c01088{height:47.726250pt;}
.h25_c01088{height:56.904375pt;}
.h1f_c01088{height:57.347985pt;}
.h24_c01088{height:59.841375pt;}
.h6_c01088{height:61.677000pt;}
.h14_c01088{height:63.145684pt;}
.hb_c01088{height:63.566250pt;}
.h20_c01088{height:63.879750pt;}
.h17_c01088{height:64.602829pt;}
.h12_c01088{height:65.293594pt;}
.h22_c01088{height:65.466501pt;}
.h4_c01088{height:66.082500pt;}
.h3_c01088{height:66.330173pt;}
.h15_c01088{height:66.816934pt;}
.h23_c01088{height:68.285434pt;}
.h13_c01088{height:68.748281pt;}
.h1c_c01088{height:70.475625pt;}
.h19_c01088{height:71.405996pt;}
.h16_c01088{height:71.512204pt;}
.h5_c01088{height:71.857500pt;}
.h1a_c01088{height:77.385000pt;}
.h1_c01088{height:986.666667pt;}
.h0_c01088{height:1122.666667pt;}
.w1_c01088{width:689.333333pt;}
.w0_c01088{width:793.333333pt;}
.x0_c01088{left:0.000000pt;}
.x2_c01088{left:44.243453pt;}
.x1_c01088{left:52.000000pt;}
.xa_c01088{left:67.506253pt;}
.x3b_c01088{left:108.892653pt;}
.x64_c01088{left:115.272653pt;}
.xb_c01088{left:116.165853pt;}
.x3_c01088{left:117.274653pt;}
.x5a_c01088{left:135.341053pt;}
.x49_c01088{left:145.676653pt;}
.xc_c01088{left:147.106653pt;}
.x1f_c01088{left:156.285053pt;}
.x57_c01088{left:164.297453pt;}
.x5b_c01088{left:165.797853pt;}
.x2a_c01088{left:167.069453pt;}
.x51_c01088{left:175.891453pt;}
.x5f_c01088{left:184.339453pt;}
.x41_c01088{left:185.567053pt;}
.x3c_c01088{left:186.904653pt;}
.x6b_c01088{left:194.155853pt;}
.xd_c01088{left:196.540653pt;}
.x4_c01088{left:203.989853pt;}
.x58_c01088{left:205.265853pt;}
.x59_c01088{left:208.068653pt;}
.x77_c01088{left:214.884253pt;}
.x71_c01088{left:223.939453pt;}
.xe_c01088{left:225.303453pt;}
.x52_c01088{left:234.055053pt;}
.x44_c01088{left:235.185853pt;}
.x17_c01088{left:236.127453pt;}
.x78_c01088{left:243.242253pt;}
.x42_c01088{left:245.644653pt;}
.x65_c01088{left:253.071853pt;}
.x4a_c01088{left:254.013453pt;}
.xf_c01088{left:255.725053pt;}
.x74_c01088{left:264.023453pt;}
.x45_c01088{left:265.906653pt;}
.x18_c01088{left:274.763853pt;}
.x6c_c01088{left:282.569453pt;}
.x25_c01088{left:285.002653pt;}
.x60_c01088{left:293.138253pt;}
.x5c_c01088{left:294.031453pt;}
.x5_c01088{left:295.122653pt;}
.x53_c01088{left:303.456253pt;}
.x20_c01088{left:304.881853pt;}
.x19_c01088{left:312.313453pt;}
.x10_c01088{left:314.715853pt;}
.x66_c01088{left:321.852653pt;}
.x75_c01088{left:322.891053pt;}
.x54_c01088{left:323.889853pt;}
.x4b_c01088{left:332.905453pt;}
.x21_c01088{left:333.974653pt;}
.x3d_c01088{left:343.025453pt;}
.x6d_c01088{left:352.234653pt;}
.x1a_c01088{left:353.801053pt;}
.x43_c01088{left:354.808653pt;}
.x26_c01088{left:356.309053pt;}
.x67_c01088{left:363.155453pt;}
.x11_c01088{left:364.119053pt;}
.x5d_c01088{left:373.257853pt;}
.x27_c01088{left:374.511853pt;}
.x6e_c01088{left:382.387853pt;}
.x46_c01088{left:383.448253pt;}
.x12_c01088{left:393.093053pt;}
.x72_c01088{left:401.778653pt;}
.x79_c01088{left:403.639853pt;}
.x13_c01088{left:412.422253pt;}
.x28_c01088{left:413.531053pt;}
.x6f_c01088{left:420.663453pt;}
.x4c_c01088{left:422.995453pt;}
.x3e_c01088{left:432.367453pt;}
.x61_c01088{left:434.008653pt;}
.x68_c01088{left:441.435853pt;}
.x2b_c01088{left:443.217853pt;}
.x7a_c01088{left:449.259053pt;}
.x2d_c01088{left:450.997053pt;}
.x1b_c01088{left:453.126653pt;}
.x55_c01088{left:460.206253pt;}
.x22_c01088{left:462.916653pt;}
.x5e_c01088{left:470.973053pt;}
.x4d_c01088{left:471.936653pt;}
.x7b_c01088{left:479.588253pt;}
.x1c_c01088{left:481.326253pt;}
.x2e_c01088{left:490.055853pt;}
.x69_c01088{left:491.059053pt;}
.x14_c01088{left:492.031453pt;}
.x2f_c01088{left:494.187453pt;}
.x30_c01088{left:496.193853pt;}
.x73_c01088{left:499.366253pt;}
.x76_c01088{left:500.554253pt;}
.x3f_c01088{left:510.313453pt;}
.x31_c01088{left:515.065453pt;}
.x32_c01088{left:516.583453pt;}
.x7c_c01088{left:517.916653pt;}
.x56_c01088{left:518.897853pt;}
.x1d_c01088{left:520.129853pt;}
.x23_c01088{left:521.577453pt;}
.x33_c01088{left:530.395053pt;}
.x34_c01088{left:535.604653pt;}
.x35_c01088{left:538.447053pt;}
.x24_c01088{left:540.704253pt;}
.x36_c01088{left:545.425453pt;}
.x47_c01088{left:548.681453pt;}
.x70_c01088{left:558.528653pt;}
.x2c_c01088{left:559.549453pt;}
.x4e_c01088{left:561.903453pt;}
.x4f_c01088{left:568.917053pt;}
.x15_c01088{left:569.871853pt;}
.x37_c01088{left:574.280653pt;}
.x29_c01088{left:580.467053pt;}
.x38_c01088{left:581.883853pt;}
.x62_c01088{left:587.691853pt;}
.x50_c01088{left:589.671853pt;}
.x40_c01088{left:599.079053pt;}
.x16_c01088{left:600.579453pt;}
.x39_c01088{left:602.546253pt;}
.x3a_c01088{left:605.692253pt;}
.x6a_c01088{left:607.610653pt;}
.x1e_c01088{left:608.851453pt;}
.x6_c01088{left:614.351453pt;}
.x48_c01088{left:617.994653pt;}
.x7e_c01088{left:618.896653pt;}
.x7_c01088{left:624.801453pt;}
.x8_c01088{left:626.147853pt;}
.x7d_c01088{left:627.384253pt;}
.x9_c01088{left:628.378653pt;}
.x63_c01088{left:648.860653pt;}
}





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

.ir_c01089:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01089{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01089;src:url('chunks/assets/font_8a6d765b285c3125844b7105.woff2')format("woff");}.ff1_c01089{font-family:ff1_c01089;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01089;src:url('chunks/assets/font_c7c6ca89218d97b16d1e379a.woff2')format("woff");}.ff2_c01089{font-family:ff2_c01089;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01089;src:url('chunks/assets/font_071ca27bedb323b93656bca9.woff2')format("woff");}.ff3_c01089{font-family:ff3_c01089;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01089;src:url('chunks/assets/font_7f15953fa8010f18c45c7ddc.woff2')format("woff");}.ff4_c01089{font-family:ff4_c01089;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5a_c01089{transform:matrix(0.010417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.010417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.010417,0.000000,0.000000,0.250000,0,0);}
.m56_c01089{transform:matrix(0.020834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020834,0.000000,0.000000,0.250000,0,0);}
.m57_c01089{transform:matrix(0.049480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.049480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.049480,0.000000,0.000000,0.250000,0,0);}
.m5b_c01089{transform:matrix(0.051042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.051042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.051042,0.000000,0.000000,0.250000,0,0);}
.m55_c01089{transform:matrix(0.054977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054977,0.000000,0.000000,0.250000,0,0);}
.m7e_c01089{transform:matrix(0.056819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056819,0.000000,0.000000,0.250000,0,0);}
.m54_c01089{transform:matrix(0.088068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088068,0.000000,0.000000,0.250000,0,0);}
.m25_c01089{transform:matrix(0.089285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089285,0.000000,0.000000,0.250000,0,0);}
.m22_c01089{transform:matrix(0.101326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101326,0.000000,0.000000,0.250000,0,0);}
.m59_c01089{transform:matrix(0.115327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115327,0.000000,0.000000,0.250000,0,0);}
.m52_c01089{transform:matrix(0.121063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121063,0.000000,0.000000,0.250000,0,0);}
.m51_c01089{transform:matrix(0.130555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130555,0.000000,0.000000,0.250000,0,0);}
.m42_c01089{transform:matrix(0.145867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145867,0.000000,0.000000,0.250000,0,0);}
.m7d_c01089{transform:matrix(0.151516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151516,0.000000,0.000000,0.250000,0,0);}
.m53_c01089{transform:matrix(0.155509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155509,0.000000,0.000000,0.250000,0,0);}
.m58_c01089{transform:matrix(0.161459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161459,0.000000,0.000000,0.250000,0,0);}
.m7c_c01089{transform:matrix(0.166619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166619,0.000000,0.000000,0.250000,0,0);}
.m4f_c01089{transform:matrix(0.174493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174493,0.000000,0.000000,0.250000,0,0);}
.m1d_c01089{transform:matrix(0.179688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179688,0.000000,0.000000,0.250000,0,0);}
.m48_c01089{transform:matrix(0.183780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183780,0.000000,0.000000,0.250000,0,0);}
.m71_c01089{transform:matrix(0.184524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184524,0.000000,0.000000,0.250000,0,0);}
.m7a_c01089{transform:matrix(0.189135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189135,0.000000,0.000000,0.250000,0,0);}
.m50_c01089{transform:matrix(0.195198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195198,0.000000,0.000000,0.250000,0,0);}
.ma_c01089{transform:matrix(0.197524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197524,0.000000,0.000000,0.250000,0,0);}
.m5e_c01089{transform:matrix(0.198834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198834,0.000000,0.000000,0.250000,0,0);}
.m24_c01089{transform:matrix(0.206845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206845,0.000000,0.000000,0.250000,0,0);}
.m49_c01089{transform:matrix(0.222390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222390,0.000000,0.000000,0.250000,0,0);}
.m3f_c01089{transform:matrix(0.229420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229420,0.000000,0.000000,0.250000,0,0);}
.m67_c01089{transform:matrix(0.240818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240818,0.000000,0.000000,0.250000,0,0);}
.m21_c01089{transform:matrix(0.242892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242892,0.000000,0.000000,0.250000,0,0);}
.m41_c01089{transform:matrix(0.244578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244578,0.000000,0.000000,0.250000,0,0);}
.m0_c01089{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01089{transform:matrix(0.250825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250825,0.000000,0.000000,0.250000,0,0);}
.m20_c01089{transform:matrix(0.251928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251928,0.000000,0.000000,0.250000,0,0);}
.m83_c01089{transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);}
.m88_c01089{transform:matrix(0.253463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253463,0.000000,0.000000,0.250000,0,0);}
.m14_c01089{transform:matrix(0.253667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253667,0.000000,0.000000,0.250000,0,0);}
.m7_c01089{transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);}
.me_c01089{transform:matrix(0.253911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253911,0.000000,0.000000,0.250000,0,0);}
.m66_c01089{transform:matrix(0.254934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254934,0.000000,0.000000,0.250000,0,0);}
.m7f_c01089{transform:matrix(0.256146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256146,0.000000,0.000000,0.250000,0,0);}
.m46_c01089{transform:matrix(0.256882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256882,0.000000,0.000000,0.250000,0,0);}
.m4_c01089{transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);}
.m6b_c01089{transform:matrix(0.259407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259407,0.000000,0.000000,0.250000,0,0);}
.m2f_c01089{transform:matrix(0.259544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259544,0.000000,0.000000,0.250000,0,0);}
.m3d_c01089{transform:matrix(0.259544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259544,0.000000,0.000000,0.250000,0,0);}
.m80_c01089{transform:matrix(0.259683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259683,0.000000,0.000000,0.250000,0,0);}
.m64_c01089{transform:matrix(0.261055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261055,0.000000,0.000000,0.250000,0,0);}
.m12_c01089{transform:matrix(0.261958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261958,0.000000,0.000000,0.250000,0,0);}
.m36_c01089{transform:matrix(0.262141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262141,0.000000,0.000000,0.250000,0,0);}
.m91_c01089{transform:matrix(0.262852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262852,0.000000,0.000000,0.250000,0,0);}
.m78_c01089{transform:matrix(0.263873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263873,0.000000,0.000000,0.250000,0,0);}
.m29_c01089{transform:matrix(0.263971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263971,0.000000,0.000000,0.250000,0,0);}
.m65_c01089{transform:matrix(0.264133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264133,0.000000,0.000000,0.250000,0,0);}
.m1c_c01089{transform:matrix(0.264852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264852,0.000000,0.000000,0.250000,0,0);}
.m1_c01089{transform:matrix(0.267339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267339,0.000000,0.000000,0.250000,0,0);}
.m9c_c01089{transform:matrix(0.267938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267938,0.000000,0.000000,0.250000,0,0);}
.m62_c01089{transform:matrix(0.268848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268848,0.000000,0.000000,0.250000,0,0);}
.m11_c01089{transform:matrix(0.269055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269055,0.000000,0.000000,0.250000,0,0);}
.m27_c01089{transform:matrix(0.269299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269299,0.000000,0.000000,0.250000,0,0);}
.m34_c01089{transform:matrix(0.269938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269938,0.000000,0.000000,0.250000,0,0);}
.m73_c01089{transform:matrix(0.270522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270522,0.000000,0.000000,0.250000,0,0);}
.m1e_c01089{transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);}
.mc_c01089{transform:matrix(0.272535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272535,0.000000,0.000000,0.250000,0,0);}
.m28_c01089{transform:matrix(0.272540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272540,0.000000,0.000000,0.250000,0,0);}
.m63_c01089{transform:matrix(0.274208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274208,0.000000,0.000000,0.250000,0,0);}
.m61_c01089{transform:matrix(0.274436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274436,0.000000,0.000000,0.250000,0,0);}
.m37_c01089{transform:matrix(0.276016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276016,0.000000,0.000000,0.250000,0,0);}
.m3e_c01089{transform:matrix(0.276214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276214,0.000000,0.000000,0.250000,0,0);}
.m5d_c01089{transform:matrix(0.276267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276267,0.000000,0.000000,0.250000,0,0);}
.m4e_c01089{transform:matrix(0.276268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276268,0.000000,0.000000,0.250000,0,0);}
.m5_c01089{transform:matrix(0.276274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276274,0.000000,0.000000,0.250000,0,0);}
.m35_c01089{transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);}
.m8_c01089{transform:matrix(0.276550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276550,0.000000,0.000000,0.250000,0,0);}
.m6d_c01089{transform:matrix(0.277380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277380,0.000000,0.000000,0.250000,0,0);}
.m81_c01089{transform:matrix(0.277389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277389,0.000000,0.000000,0.250000,0,0);}
.m77_c01089{transform:matrix(0.278200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278200,0.000000,0.000000,0.250000,0,0);}
.m18_c01089{transform:matrix(0.278880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278880,0.000000,0.000000,0.250000,0,0);}
.m2a_c01089{transform:matrix(0.279105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279105,0.000000,0.000000,0.250000,0,0);}
.m19_c01089{transform:matrix(0.279956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279956,0.000000,0.000000,0.250000,0,0);}
.m43_c01089{transform:matrix(0.280504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280504,0.000000,0.000000,0.250000,0,0);}
.m32_c01089{transform:matrix(0.281059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281059,0.000000,0.000000,0.250000,0,0);}
.m90_c01089{transform:matrix(0.281137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281137,0.000000,0.000000,0.250000,0,0);}
.m9e_c01089{transform:matrix(0.282509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282509,0.000000,0.000000,0.250000,0,0);}
.m31_c01089{transform:matrix(0.282611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282611,0.000000,0.000000,0.250000,0,0);}
.m6e_c01089{transform:matrix(0.283484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283484,0.000000,0.000000,0.250000,0,0);}
.m68_c01089{transform:matrix(0.283664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283664,0.000000,0.000000,0.250000,0,0);}
.m3a_c01089{transform:matrix(0.283683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283683,0.000000,0.000000,0.250000,0,0);}
.m10_c01089{transform:matrix(0.283747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283747,0.000000,0.000000,0.250000,0,0);}
.m85_c01089{transform:matrix(0.284467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284467,0.000000,0.000000,0.250000,0,0);}
.m70_c01089{transform:matrix(0.284705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284705,0.000000,0.000000,0.250000,0,0);}
.m94_c01089{transform:matrix(0.285914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285914,0.000000,0.000000,0.250000,0,0);}
.m16_c01089{transform:matrix(0.286132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286132,0.000000,0.000000,0.250000,0,0);}
.md_c01089{transform:matrix(0.286567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286567,0.000000,0.000000,0.250000,0,0);}
.m98_c01089{transform:matrix(0.286779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286779,0.000000,0.000000,0.250000,0,0);}
.m15_c01089{transform:matrix(0.287467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287467,0.000000,0.000000,0.250000,0,0);}
.m6_c01089{transform:matrix(0.288553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288553,0.000000,0.000000,0.250000,0,0);}
.m96_c01089{transform:matrix(0.288836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288836,0.000000,0.000000,0.250000,0,0);}
.m75_c01089{transform:matrix(0.289071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289071,0.000000,0.000000,0.250000,0,0);}
.m47_c01089{transform:matrix(0.289451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289451,0.000000,0.000000,0.250000,0,0);}
.m74_c01089{transform:matrix(0.289693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289693,0.000000,0.000000,0.250000,0,0);}
.m97_c01089{transform:matrix(0.290460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290460,0.000000,0.000000,0.250000,0,0);}
.m9a_c01089{transform:matrix(0.291379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291379,0.000000,0.000000,0.250000,0,0);}
.ma0_c01089{transform:matrix(0.292070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292070,0.000000,0.000000,0.250000,0,0);}
.ma3_c01089{transform:matrix(0.292112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292112,0.000000,0.000000,0.250000,0,0);}
.m44_c01089{transform:matrix(0.292117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292117,0.000000,0.000000,0.250000,0,0);}
.m9b_c01089{transform:matrix(0.292713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292713,0.000000,0.000000,0.250000,0,0);}
.m5c_c01089{transform:matrix(0.293646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293646,0.000000,0.000000,0.250000,0,0);}
.m5f_c01089{transform:matrix(0.295652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295652,0.000000,0.000000,0.250000,0,0);}
.m3b_c01089{transform:matrix(0.295878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295878,0.000000,0.000000,0.250000,0,0);}
.m89_c01089{transform:matrix(0.296330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296330,0.000000,0.000000,0.250000,0,0);}
.m2e_c01089{transform:matrix(0.298793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298793,0.000000,0.000000,0.250000,0,0);}
.m79_c01089{transform:matrix(0.298821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298821,0.000000,0.000000,0.250000,0,0);}
.m92_c01089{transform:matrix(0.299499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299499,0.000000,0.000000,0.250000,0,0);}
.m3c_c01089{transform:matrix(0.300476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300476,0.000000,0.000000,0.250000,0,0);}
.mf_c01089{transform:matrix(0.300598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300598,0.000000,0.000000,0.250000,0,0);}
.m60_c01089{transform:matrix(0.301912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301912,0.000000,0.000000,0.250000,0,0);}
.m4d_c01089{transform:matrix(0.302215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302215,0.000000,0.000000,0.250000,0,0);}
.m45_c01089{transform:matrix(0.302677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302677,0.000000,0.000000,0.250000,0,0);}
.m99_c01089{transform:matrix(0.303881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303881,0.000000,0.000000,0.250000,0,0);}
.m1b_c01089{transform:matrix(0.304338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304338,0.000000,0.000000,0.250000,0,0);}
.m86_c01089{transform:matrix(0.306374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306374,0.000000,0.000000,0.250000,0,0);}
.m8f_c01089{transform:matrix(0.307112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307112,0.000000,0.000000,0.250000,0,0);}
.m23_c01089{transform:matrix(0.307278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307278,0.000000,0.000000,0.250000,0,0);}
.m2c_c01089{transform:matrix(0.309561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309561,0.000000,0.000000,0.250000,0,0);}
.m2b_c01089{transform:matrix(0.309689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309689,0.000000,0.000000,0.250000,0,0);}
.m17_c01089{transform:matrix(0.310222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310222,0.000000,0.000000,0.250000,0,0);}
.m4a_c01089{transform:matrix(0.310598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310598,0.000000,0.000000,0.250000,0,0);}
.m87_c01089{transform:matrix(0.310880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310880,0.000000,0.000000,0.250000,0,0);}
.m26_c01089{transform:matrix(0.311595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311595,0.000000,0.000000,0.250000,0,0);}
.m6c_c01089{transform:matrix(0.311602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311602,0.000000,0.000000,0.250000,0,0);}
.m40_c01089{transform:matrix(0.311993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311993,0.000000,0.000000,0.250000,0,0);}
.m6a_c01089{transform:matrix(0.312197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312197,0.000000,0.000000,0.250000,0,0);}
.m2_c01089{transform:matrix(0.312561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312561,0.000000,0.000000,0.250000,0,0);}
.m8c_c01089{transform:matrix(0.312757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312757,0.000000,0.000000,0.250000,0,0);}
.m9d_c01089{transform:matrix(0.314276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314276,0.000000,0.000000,0.250000,0,0);}
.m39_c01089{transform:matrix(0.314942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314942,0.000000,0.000000,0.250000,0,0);}
.m8b_c01089{transform:matrix(0.316442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316442,0.000000,0.000000,0.250000,0,0);}
.m8d_c01089{transform:matrix(0.316900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316900,0.000000,0.000000,0.250000,0,0);}
.m7b_c01089{transform:matrix(0.318231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318231,0.000000,0.000000,0.250000,0,0);}
.m72_c01089{transform:matrix(0.321364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321364,0.000000,0.000000,0.250000,0,0);}
.ma2_c01089{transform:matrix(0.321647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321647,0.000000,0.000000,0.250000,0,0);}
.m9f_c01089{transform:matrix(0.321817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321817,0.000000,0.000000,0.250000,0,0);}
.m95_c01089{transform:matrix(0.321855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321855,0.000000,0.000000,0.250000,0,0);}
.m82_c01089{transform:matrix(0.323915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323915,0.000000,0.000000,0.250000,0,0);}
.m13_c01089{transform:matrix(0.323995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323995,0.000000,0.000000,0.250000,0,0);}
.m76_c01089{transform:matrix(0.324836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324836,0.000000,0.000000,0.250000,0,0);}
.m9_c01089{transform:matrix(0.325166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325166,0.000000,0.000000,0.250000,0,0);}
.m93_c01089{transform:matrix(0.325725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325725,0.000000,0.000000,0.250000,0,0);}
.m69_c01089{transform:matrix(0.331929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331929,0.000000,0.000000,0.250000,0,0);}
.m8a_c01089{transform:matrix(0.333044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333044,0.000000,0.000000,0.250000,0,0);}
.mb_c01089{transform:matrix(0.337922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337922,0.000000,0.000000,0.250000,0,0);}
.m1a_c01089{transform:matrix(0.341545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341545,0.000000,0.000000,0.250000,0,0);}
.m4b_c01089{transform:matrix(0.342289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342289,0.000000,0.000000,0.250000,0,0);}
.m84_c01089{transform:matrix(0.344760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344760,0.000000,0.000000,0.250000,0,0);}
.m33_c01089{transform:matrix(0.347924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347924,0.000000,0.000000,0.250000,0,0);}
.m8e_c01089{transform:matrix(0.349624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349624,0.000000,0.000000,0.250000,0,0);}
.m30_c01089{transform:matrix(0.349884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349884,0.000000,0.000000,0.250000,0,0);}
.m4c_c01089{transform:matrix(0.352127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352127,0.000000,0.000000,0.250000,0,0);}
.m1f_c01089{transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);}
.m38_c01089{transform:matrix(0.373185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373185,0.000000,0.000000,0.250000,0,0);}
.ma1_c01089{transform:matrix(0.376256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376256,0.000000,0.000000,0.250000,0,0);}
.m2d_c01089{transform:matrix(0.403692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403692,0.000000,0.000000,0.250000,0,0);}
.m6f_c01089{transform:matrix(0.421170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421170,0.000000,0.000000,0.250000,0,0);}
.v1_c01089{vertical-align:-12.850200px;}
.v2_c01089{vertical-align:-8.521128px;}
.v0_c01089{vertical-align:0.000000px;}
.ls1d_c01089{letter-spacing:-3.742200px;}
.ls1a_c01089{letter-spacing:-3.575880px;}
.ls26_c01089{letter-spacing:-2.930288px;}
.ls5_c01089{letter-spacing:-2.855167px;}
.ls15_c01089{letter-spacing:-2.834377px;}
.ls1f_c01089{letter-spacing:-2.688840px;}
.ls19_c01089{letter-spacing:-2.619540px;}
.lsb_c01089{letter-spacing:-2.591827px;}
.ls18_c01089{letter-spacing:-2.571030px;}
.ls1c_c01089{letter-spacing:-2.439367px;}
.ls24_c01089{letter-spacing:-2.411640px;}
.ls25_c01089{letter-spacing:-2.335846px;}
.ls21_c01089{letter-spacing:-2.217600px;}
.ls2b_c01089{letter-spacing:-0.913653px;}
.ls10_c01089{letter-spacing:-0.585448px;}
.lsd_c01089{letter-spacing:-0.138680px;}
.ls0_c01089{letter-spacing:0.000000px;}
.ls2c_c01089{letter-spacing:0.259143px;}
.lsa_c01089{letter-spacing:0.836790px;}
.ls2a_c01089{letter-spacing:1.093121px;}
.ls14_c01089{letter-spacing:1.100880px;}
.ls13_c01089{letter-spacing:1.582578px;}
.ls27_c01089{letter-spacing:1.875535px;}
.ls6_c01089{letter-spacing:2.324322px;}
.ls29_c01089{letter-spacing:2.821183px;}
.ls23_c01089{letter-spacing:3.484810px;}
.ls20_c01089{letter-spacing:3.514500px;}
.ls22_c01089{letter-spacing:3.638298px;}
.ls17_c01089{letter-spacing:3.672900px;}
.ls28_c01089{letter-spacing:3.682810px;}
.ls11_c01089{letter-spacing:3.702610px;}
.ls3_c01089{letter-spacing:3.801610px;}
.ls7_c01089{letter-spacing:3.831310px;}
.ls16_c01089{letter-spacing:3.841200px;}
.lsf_c01089{letter-spacing:3.880810px;}
.lse_c01089{letter-spacing:3.910500px;}
.ls8_c01089{letter-spacing:3.940200px;}
.ls12_c01089{letter-spacing:3.960000px;}
.ls1_c01089{letter-spacing:4.049110px;}
.ls2_c01089{letter-spacing:4.078810px;}
.ls4_c01089{letter-spacing:4.118400px;}
.lsc_c01089{letter-spacing:59.875398px;}
.ls9_c01089{letter-spacing:62.726400px;}
.ls1b_c01089{letter-spacing:64.152198px;}
.ls1e_c01089{letter-spacing:68.428998px;}
.sc__c01089{text-shadow:none;}
.sc0_c01089{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01089{-webkit-text-stroke:0px transparent;}
.sc0_c01089{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01089{word-spacing:-20.394050px;}
.ws0_c01089{word-spacing:-18.422602px;}
.ws1_c01089{word-spacing:-18.364500px;}
.ws3_c01089{word-spacing:0.000000px;}
._6_c01089{margin-left:-23.983029px;}
._2_c01089{margin-left:-13.001506px;}
._5_c01089{margin-left:-11.459844px;}
._0_c01089{margin-left:-9.732250px;}
._1_c01089{width:2.129039px;}
._4_c01089{width:9.467747px;}
._3_c01089{width:27.455071px;}
.fc0_c01089{color:transparent;}
.fs12_c01089{font-size:22.572000px;}
.fs0_c01089{font-size:28.314000px;}
.fs23_c01089{font-size:34.056198px;}
.fs11_c01089{font-size:38.016198px;}
.fs5_c01089{font-size:44.352000px;}
.fsf_c01089{font-size:45.144000px;}
.fs1d_c01089{font-size:47.322000px;}
.fse_c01089{font-size:53.064000px;}
.fs24_c01089{font-size:56.628000px;}
.fsb_c01089{font-size:59.875398px;}
.fs9_c01089{font-size:62.726400px;}
.fs1c_c01089{font-size:63.360000px;}
.fs17_c01089{font-size:64.152198px;}
.fs1f_c01089{font-size:67.320000px;}
.fs1a_c01089{font-size:68.428998px;}
.fs1e_c01089{font-size:68.904000px;}
.fs18_c01089{font-size:69.696198px;}
.fs1b_c01089{font-size:70.290000px;}
.fs14_c01089{font-size:73.458000px;}
.fs21_c01089{font-size:73.656198px;}
.fsa_c01089{font-size:74.052198px;}
.fs15_c01089{font-size:74.844000px;}
.fs3_c01089{font-size:76.032198px;}
.fs7_c01089{font-size:76.626198px;}
.fs13_c01089{font-size:76.824000px;}
.fs6_c01089{font-size:77.220000px;}
.fsd_c01089{font-size:77.616198px;}
.fsc_c01089{font-size:78.210000px;}
.fs8_c01089{font-size:78.804000px;}
.fs10_c01089{font-size:79.200000px;}
.fs1_c01089{font-size:80.982198px;}
.fs2_c01089{font-size:81.576198px;}
.fs4_c01089{font-size:82.368000px;}
.fs20_c01089{font-size:85.932198px;}
.fs22_c01089{font-size:91.872198px;}
.fs16_c01089{font-size:102.168000px;}
.fs19_c01089{font-size:106.920000px;}
.y0_c01089{bottom:0.000000px;}
.y23_c01089{bottom:39.110970px;}
.y1_c01089{bottom:76.500000px;}
.y22_c01089{bottom:118.236720px;}
.y21_c01089{bottom:123.939120px;}
.y24_c01089{bottom:154.940970px;}
.y20_c01089{bottom:156.727920px;}
.y2_c01089{bottom:163.850970px;}
.y1f_c01089{bottom:180.958170px;}
.y1e_c01089{bottom:188.803920px;}
.y1d_c01089{bottom:222.305520px;}
.y1c_c01089{bottom:254.381520px;}
.y1b_c01089{bottom:317.820720px;}
.y1a_c01089{bottom:339.199770px;}
.y19_c01089{bottom:350.960970px;}
.y18_c01089{bottom:380.542170px;}
.y17_c01089{bottom:383.749770px;}
.y16_c01089{bottom:415.117920px;}
.y15_c01089{bottom:444.694170px;}
.y12_c01089{bottom:477.844320px;}
.y14_c01089{bottom:478.552170px;}
.y13_c01089{bottom:479.982720px;}
.y10_c01089{bottom:541.634970px;}
.y11_c01089{bottom:549.480720px;}
.yf_c01089{bottom:635.729520px;}
.ye_c01089{bottom:638.224320px;}
.yd_c01089{bottom:700.232970px;}
.yc_c01089{bottom:703.440570px;}
.yb_c01089{bottom:735.521520px;}
.ya_c01089{bottom:767.597520px;}
.y9_c01089{bottom:798.960720px;}
.y8_c01089{bottom:830.323920px;}
.y7_c01089{bottom:863.112720px;}
.y6_c01089{bottom:894.827370px;}
.y4_c01089{bottom:927.259770px;}
.y5_c01089{bottom:928.333920px;}
.y3_c01089{bottom:1064.473770px;}
.h13_c01089{height:23.541891px;}
.h2_c01089{height:29.530617px;}
.h25_c01089{height:35.519550px;}
.h12_c01089{height:39.649707px;}
.hd_c01089{height:39.877015px;}
.hb_c01089{height:41.775782px;}
.h18_c01089{height:42.725364px;}
.h10_c01089{height:44.306367px;}
.h1b_c01089{height:45.573713px;}
.h7_c01089{height:46.257750px;}
.h1e_c01089{height:46.443955px;}
.h26_c01089{height:59.061234px;}
.h1d_c01089{height:62.184375px;}
.h21_c01089{height:66.070898px;}
.h19_c01089{height:68.403007px;}
.h20_c01089{height:71.864719px;}
.h15_c01089{height:72.095010px;}
.h23_c01089{height:72.289530px;}
.hc_c01089{height:72.678183px;}
.h1f_c01089{height:72.690957px;}
.h1c_c01089{height:73.310273px;}
.h16_c01089{height:73.455293px;}
.h5_c01089{height:74.621444px;}
.h9_c01089{height:75.204423px;}
.h14_c01089{height:75.398555px;}
.hf_c01089{height:76.176054px;}
.he_c01089{height:76.758838px;}
.ha_c01089{height:77.341816px;}
.h11_c01089{height:77.730469px;}
.h3_c01089{height:79.479599px;}
.h4_c01089{height:80.062577px;}
.h8_c01089{height:80.538047px;}
.h6_c01089{height:80.839688px;}
.h22_c01089{height:84.337753px;}
.h24_c01089{height:95.819832px;}
.h17_c01089{height:100.272305px;}
.h1a_c01089{height:104.936133px;}
.h1_c01089{height:1110.000000px;}
.h0_c01089{height:1263.000000px;}
.w1_c01089{width:775.500000px;}
.w0_c01089{width:892.500000px;}
.x0_c01089{left:0.000000px;}
.x1_c01089{left:58.500000px;}
.x2_c01089{left:65.034735px;}
.x3a_c01089{left:77.756235px;}
.x34_c01089{left:79.226385px;}
.x30_c01089{left:132.102285px;}
.x4_c01089{left:134.448585px;}
.x69_c01089{left:152.521035px;}
.x1b_c01089{left:155.674185px;}
.x3b_c01089{left:165.494985px;}
.x23_c01089{left:166.786935px;}
.x35_c01089{left:169.519335px;}
.x4a_c01089{left:176.627535px;}
.xf_c01089{left:179.647035px;}
.x3c_c01089{left:187.725435px;}
.x36_c01089{left:189.141135px;}
.x41_c01089{left:197.432385px;}
.x28_c01089{left:201.105285px;}
.x53_c01089{left:208.371885px;}
.x5_c01089{left:211.841835px;}
.x37_c01089{left:212.866485px;}
.x5c_c01089{left:219.761835px;}
.x4d_c01089{left:221.821035px;}
.x1c_c01089{left:223.211985px;}
.x31_c01089{left:231.899235px;}
.x42_c01089{left:233.428785px;}
.x43_c01089{left:241.982385px;}
.x44_c01089{left:243.769335px;}
.x13_c01089{left:246.041385px;}
.x4e_c01089{left:253.362435px;}
.x1d_c01089{left:255.174135px;}
.x6_c01089{left:256.386885px;}
.x6d_c01089{left:264.381135px;}
.x38_c01089{left:265.806735px;}
.x14_c01089{left:267.311535px;}
.x24_c01089{left:269.786535px;}
.x45_c01089{left:276.909585px;}
.x29_c01089{left:287.487735px;}
.x7_c01089{left:289.700385px;}
.x54_c01089{left:298.234185px;}
.x5d_c01089{left:299.748885px;}
.x4f_c01089{left:301.006185px;}
.x32_c01089{left:302.793135px;}
.x4b_c01089{left:320.340885px;}
.x33_c01089{left:321.405135px;}
.x15_c01089{left:322.682235px;}
.x5e_c01089{left:331.814985px;}
.x10_c01089{left:333.898935px;}
.x2a_c01089{left:344.937435px;}
.x3d_c01089{left:353.743485px;}
.x1e_c01089{left:355.827435px;}
.x65_c01089{left:364.475085px;}
.x46_c01089{left:365.895735px;}
.x16_c01089{left:367.450035px;}
.x6e_c01089{left:375.409635px;}
.x62_c01089{left:376.498635px;}
.x8_c01089{left:388.423185px;}
.x11_c01089{left:399.837885px;}
.x63_c01089{left:409.247835px;}
.x55_c01089{left:411.113985px;}
.x1f_c01089{left:417.014385px;}
.x5f_c01089{left:421.048635px;}
.x9_c01089{left:422.474235px;}
.x2d_c01089{left:433.512735px;}
.x56_c01089{left:442.229685px;}
.x17_c01089{left:444.006735px;}
.x3e_c01089{left:453.085035px;}
.x47_c01089{left:465.247185px;}
.xa_c01089{left:466.999485px;}
.x20_c01089{left:487.779585px;}
.x2e_c01089{left:498.892335px;}
.x25_c01089{left:509.589285px;}
.x57_c01089{left:519.568485px;}
.x50_c01089{left:520.711935px;}
.xb_c01089{left:523.177035px;}
.x70_c01089{left:528.711135px;}
.x3f_c01089{left:531.691035px;}
.x58_c01089{left:542.323635px;}
.x6a_c01089{left:552.377085px;}
.x2b_c01089{left:555.322335px;}
.x48_c01089{left:564.128385px;}
.xc_c01089{left:566.276685px;}
.x6b_c01089{left:574.102635px;}
.x66_c01089{left:575.726235px;}
.x21_c01089{left:576.815235px;}
.x6f_c01089{left:585.279735px;}
.x18_c01089{left:587.621085px;}
.x12_c01089{left:588.858585px;}
.x49_c01089{left:596.130135px;}
.x2f_c01089{left:598.595235px;}
.xd_c01089{left:609.534735px;}
.x60_c01089{left:619.598085px;}
.x2c_c01089{left:620.622735px;}
.xe_c01089{left:622.003785px;}
.x51_c01089{left:630.601935px;}
.x22_c01089{left:632.953185px;}
.x67_c01089{left:641.269185px;}
.x6c_c01089{left:650.020785px;}
.x64_c01089{left:652.347285px;}
.x19_c01089{left:654.124335px;}
.x52_c01089{left:663.959985px;}
.x26_c01089{left:665.855835px;}
.x4c_c01089{left:675.513285px;}
.x1a_c01089{left:686.002335px;}
.x3_c01089{left:687.576435px;}
.x68_c01089{left:695.991435px;}
.x71_c01089{left:697.966485px;}
.x39_c01089{left:699.104985px;}
.x5b_c01089{left:701.822535px;}
.x40_c01089{left:704.054985px;}
.x59_c01089{left:706.732935px;}
.x61_c01089{left:708.252585px;}
.x27_c01089{left:709.697985px;}
.x5a_c01089{left:732.116535px;}
.x72_c01089{left:773.023335px;}
@media print{
.v1_c01089{vertical-align:-11.422400pt;}
.v2_c01089{vertical-align:-7.574336pt;}
.v0_c01089{vertical-align:0.000000pt;}
.ls1d_c01089{letter-spacing:-3.326400pt;}
.ls1a_c01089{letter-spacing:-3.178560pt;}
.ls26_c01089{letter-spacing:-2.604700pt;}
.ls5_c01089{letter-spacing:-2.537926pt;}
.ls15_c01089{letter-spacing:-2.519446pt;}
.ls1f_c01089{letter-spacing:-2.390080pt;}
.ls19_c01089{letter-spacing:-2.328480pt;}
.lsb_c01089{letter-spacing:-2.303846pt;}
.ls18_c01089{letter-spacing:-2.285360pt;}
.ls1c_c01089{letter-spacing:-2.168326pt;}
.ls24_c01089{letter-spacing:-2.143680pt;}
.ls25_c01089{letter-spacing:-2.076307pt;}
.ls21_c01089{letter-spacing:-1.971200pt;}
.ls2b_c01089{letter-spacing:-0.812136pt;}
.ls10_c01089{letter-spacing:-0.520398pt;}
.lsd_c01089{letter-spacing:-0.123271pt;}
.ls0_c01089{letter-spacing:0.000000pt;}
.ls2c_c01089{letter-spacing:0.230349pt;}
.lsa_c01089{letter-spacing:0.743813pt;}
.ls2a_c01089{letter-spacing:0.971663pt;}
.ls14_c01089{letter-spacing:0.978560pt;}
.ls13_c01089{letter-spacing:1.406736pt;}
.ls27_c01089{letter-spacing:1.667142pt;}
.ls6_c01089{letter-spacing:2.066064pt;}
.ls29_c01089{letter-spacing:2.507718pt;}
.ls23_c01089{letter-spacing:3.097609pt;}
.ls20_c01089{letter-spacing:3.124000pt;}
.ls22_c01089{letter-spacing:3.234043pt;}
.ls17_c01089{letter-spacing:3.264800pt;}
.ls28_c01089{letter-spacing:3.273609pt;}
.ls11_c01089{letter-spacing:3.291209pt;}
.ls3_c01089{letter-spacing:3.379209pt;}
.ls7_c01089{letter-spacing:3.405609pt;}
.ls16_c01089{letter-spacing:3.414400pt;}
.lsf_c01089{letter-spacing:3.449609pt;}
.lse_c01089{letter-spacing:3.476000pt;}
.ls8_c01089{letter-spacing:3.502400pt;}
.ls12_c01089{letter-spacing:3.520000pt;}
.ls1_c01089{letter-spacing:3.599209pt;}
.ls2_c01089{letter-spacing:3.625609pt;}
.ls4_c01089{letter-spacing:3.660800pt;}
.lsc_c01089{letter-spacing:53.222576pt;}
.ls9_c01089{letter-spacing:55.756800pt;}
.ls1b_c01089{letter-spacing:57.024176pt;}
.ls1e_c01089{letter-spacing:60.825776pt;}
.ws2_c01089{word-spacing:-18.128044pt;}
.ws0_c01089{word-spacing:-16.375646pt;}
.ws1_c01089{word-spacing:-16.324000pt;}
.ws3_c01089{word-spacing:0.000000pt;}
._6_c01089{margin-left:-21.318248pt;}
._2_c01089{margin-left:-11.556894pt;}
._5_c01089{margin-left:-10.186528pt;}
._0_c01089{margin-left:-8.650889pt;}
._1_c01089{width:1.892479pt;}
._4_c01089{width:8.415775pt;}
._3_c01089{width:24.404508pt;}
.fs12_c01089{font-size:20.064000pt;}
.fs0_c01089{font-size:25.168000pt;}
.fs23_c01089{font-size:30.272176pt;}
.fs11_c01089{font-size:33.792176pt;}
.fs5_c01089{font-size:39.424000pt;}
.fsf_c01089{font-size:40.128000pt;}
.fs1d_c01089{font-size:42.064000pt;}
.fse_c01089{font-size:47.168000pt;}
.fs24_c01089{font-size:50.336000pt;}
.fsb_c01089{font-size:53.222576pt;}
.fs9_c01089{font-size:55.756800pt;}
.fs1c_c01089{font-size:56.320000pt;}
.fs17_c01089{font-size:57.024176pt;}
.fs1f_c01089{font-size:59.840000pt;}
.fs1a_c01089{font-size:60.825776pt;}
.fs1e_c01089{font-size:61.248000pt;}
.fs18_c01089{font-size:61.952176pt;}
.fs1b_c01089{font-size:62.480000pt;}
.fs14_c01089{font-size:65.296000pt;}
.fs21_c01089{font-size:65.472176pt;}
.fsa_c01089{font-size:65.824176pt;}
.fs15_c01089{font-size:66.528000pt;}
.fs3_c01089{font-size:67.584176pt;}
.fs7_c01089{font-size:68.112176pt;}
.fs13_c01089{font-size:68.288000pt;}
.fs6_c01089{font-size:68.640000pt;}
.fsd_c01089{font-size:68.992176pt;}
.fsc_c01089{font-size:69.520000pt;}
.fs8_c01089{font-size:70.048000pt;}
.fs10_c01089{font-size:70.400000pt;}
.fs1_c01089{font-size:71.984176pt;}
.fs2_c01089{font-size:72.512176pt;}
.fs4_c01089{font-size:73.216000pt;}
.fs20_c01089{font-size:76.384176pt;}
.fs22_c01089{font-size:81.664176pt;}
.fs16_c01089{font-size:90.816000pt;}
.fs19_c01089{font-size:95.040000pt;}
.y0_c01089{bottom:0.000000pt;}
.y23_c01089{bottom:34.765307pt;}
.y1_c01089{bottom:68.000000pt;}
.y22_c01089{bottom:105.099307pt;}
.y21_c01089{bottom:110.168107pt;}
.y24_c01089{bottom:137.725307pt;}
.y20_c01089{bottom:139.313707pt;}
.y2_c01089{bottom:145.645307pt;}
.y1f_c01089{bottom:160.851707pt;}
.y1e_c01089{bottom:167.825707pt;}
.y1d_c01089{bottom:197.604907pt;}
.y1c_c01089{bottom:226.116907pt;}
.y1b_c01089{bottom:282.507307pt;}
.y1a_c01089{bottom:301.510907pt;}
.y19_c01089{bottom:311.965307pt;}
.y18_c01089{bottom:338.259707pt;}
.y17_c01089{bottom:341.110907pt;}
.y16_c01089{bottom:368.993707pt;}
.y15_c01089{bottom:395.283707pt;}
.y12_c01089{bottom:424.750507pt;}
.y14_c01089{bottom:425.379707pt;}
.y13_c01089{bottom:426.651307pt;}
.y10_c01089{bottom:481.453307pt;}
.y11_c01089{bottom:488.427307pt;}
.yf_c01089{bottom:565.092907pt;}
.ye_c01089{bottom:567.310507pt;}
.yd_c01089{bottom:622.429307pt;}
.yc_c01089{bottom:625.280507pt;}
.yb_c01089{bottom:653.796907pt;}
.ya_c01089{bottom:682.308907pt;}
.y9_c01089{bottom:710.187307pt;}
.y8_c01089{bottom:738.065707pt;}
.y7_c01089{bottom:767.211307pt;}
.y6_c01089{bottom:795.402107pt;}
.y4_c01089{bottom:824.230907pt;}
.y5_c01089{bottom:825.185707pt;}
.y3_c01089{bottom:946.198907pt;}
.h13_c01089{height:20.926125pt;}
.h2_c01089{height:26.249438pt;}
.h25_c01089{height:31.572934pt;}
.h12_c01089{height:35.244184pt;}
.hd_c01089{height:35.446236pt;}
.hb_c01089{height:37.134029pt;}
.h18_c01089{height:37.978101pt;}
.h10_c01089{height:39.383438pt;}
.h1b_c01089{height:40.509967pt;}
.h7_c01089{height:41.118000pt;}
.h1e_c01089{height:41.283516pt;}
.h26_c01089{height:52.498875pt;}
.h1d_c01089{height:55.275000pt;}
.h21_c01089{height:58.729688pt;}
.h19_c01089{height:60.802673pt;}
.h20_c01089{height:63.879750pt;}
.h15_c01089{height:64.084453pt;}
.h23_c01089{height:64.257360pt;}
.hc_c01089{height:64.602829pt;}
.h1f_c01089{height:64.614184pt;}
.h1c_c01089{height:65.164688pt;}
.h16_c01089{height:65.293594pt;}
.h5_c01089{height:66.330173pt;}
.h9_c01089{height:66.848376pt;}
.h14_c01089{height:67.020938pt;}
.hf_c01089{height:67.712048pt;}
.he_c01089{height:68.230078pt;}
.ha_c01089{height:68.748281pt;}
.h11_c01089{height:69.093750pt;}
.h3_c01089{height:70.648532pt;}
.h4_c01089{height:71.166735pt;}
.h8_c01089{height:71.589375pt;}
.h6_c01089{height:71.857500pt;}
.h22_c01089{height:74.966891pt;}
.h24_c01089{height:85.173184pt;}
.h17_c01089{height:89.130938pt;}
.h1a_c01089{height:93.276563pt;}
.h1_c01089{height:986.666667pt;}
.h0_c01089{height:1122.666667pt;}
.w1_c01089{width:689.333333pt;}
.w0_c01089{width:793.333333pt;}
.x0_c01089{left:0.000000pt;}
.x1_c01089{left:52.000000pt;}
.x2_c01089{left:57.808653pt;}
.x3a_c01089{left:69.116653pt;}
.x34_c01089{left:70.423453pt;}
.x30_c01089{left:117.424253pt;}
.x4_c01089{left:119.509853pt;}
.x69_c01089{left:135.574253pt;}
.x1b_c01089{left:138.377053pt;}
.x3b_c01089{left:147.106653pt;}
.x23_c01089{left:148.255053pt;}
.x35_c01089{left:150.683853pt;}
.x4a_c01089{left:157.002253pt;}
.xf_c01089{left:159.686253pt;}
.x3c_c01089{left:166.867053pt;}
.x36_c01089{left:168.125453pt;}
.x41_c01089{left:175.495453pt;}
.x28_c01089{left:178.760253pt;}
.x53_c01089{left:185.219453pt;}
.x5_c01089{left:188.303853pt;}
.x37_c01089{left:189.214653pt;}
.x5c_c01089{left:195.343853pt;}
.x4d_c01089{left:197.174253pt;}
.x1c_c01089{left:198.410653pt;}
.x31_c01089{left:206.132653pt;}
.x42_c01089{left:207.492253pt;}
.x43_c01089{left:215.095453pt;}
.x44_c01089{left:216.683853pt;}
.x13_c01089{left:218.703453pt;}
.x4e_c01089{left:225.211053pt;}
.x1d_c01089{left:226.821453pt;}
.x6_c01089{left:227.899453pt;}
.x6d_c01089{left:235.005453pt;}
.x38_c01089{left:236.272653pt;}
.x14_c01089{left:237.610253pt;}
.x24_c01089{left:239.810253pt;}
.x45_c01089{left:246.141853pt;}
.x29_c01089{left:255.544653pt;}
.x7_c01089{left:257.511453pt;}
.x54_c01089{left:265.097053pt;}
.x5d_c01089{left:266.443453pt;}
.x4f_c01089{left:267.561053pt;}
.x32_c01089{left:269.149453pt;}
.x4b_c01089{left:284.747453pt;}
.x33_c01089{left:285.693453pt;}
.x15_c01089{left:286.828653pt;}
.x5e_c01089{left:294.946653pt;}
.x10_c01089{left:296.799053pt;}
.x2a_c01089{left:306.611053pt;}
.x3d_c01089{left:314.438653pt;}
.x1e_c01089{left:316.291053pt;}
.x65_c01089{left:323.977853pt;}
.x46_c01089{left:325.240653pt;}
.x16_c01089{left:326.622253pt;}
.x6e_c01089{left:333.697453pt;}
.x62_c01089{left:334.665453pt;}
.x8_c01089{left:345.265053pt;}
.x11_c01089{left:355.411453pt;}
.x63_c01089{left:363.775853pt;}
.x55_c01089{left:365.434653pt;}
.x1f_c01089{left:370.679453pt;}
.x5f_c01089{left:374.265453pt;}
.x9_c01089{left:375.532653pt;}
.x2d_c01089{left:385.344653pt;}
.x56_c01089{left:393.093053pt;}
.x17_c01089{left:394.672653pt;}
.x3e_c01089{left:402.742253pt;}
.x47_c01089{left:413.553053pt;}
.xa_c01089{left:415.110653pt;}
.x20_c01089{left:433.581853pt;}
.x2e_c01089{left:443.459853pt;}
.x25_c01089{left:452.968253pt;}
.x57_c01089{left:461.838653pt;}
.x50_c01089{left:462.855053pt;}
.xb_c01089{left:465.046253pt;}
.x70_c01089{left:469.965453pt;}
.x3f_c01089{left:472.614253pt;}
.x58_c01089{left:482.065453pt;}
.x6a_c01089{left:491.001853pt;}
.x2b_c01089{left:493.619853pt;}
.x48_c01089{left:501.447453pt;}
.xc_c01089{left:503.357053pt;}
.x6b_c01089{left:510.313453pt;}
.x66_c01089{left:511.756653pt;}
.x21_c01089{left:512.724653pt;}
.x6f_c01089{left:520.248653pt;}
.x18_c01089{left:522.329853pt;}
.x12_c01089{left:523.429853pt;}
.x49_c01089{left:529.893453pt;}
.x2f_c01089{left:532.084653pt;}
.xd_c01089{left:541.808653pt;}
.x60_c01089{left:550.753853pt;}
.x2c_c01089{left:551.664653pt;}
.xe_c01089{left:552.892253pt;}
.x51_c01089{left:560.535053pt;}
.x22_c01089{left:562.625053pt;}
.x67_c01089{left:570.017053pt;}
.x6c_c01089{left:577.796253pt;}
.x64_c01089{left:579.864253pt;}
.x19_c01089{left:581.443853pt;}
.x52_c01089{left:590.186653pt;}
.x26_c01089{left:591.871853pt;}
.x4c_c01089{left:600.456253pt;}
.x1a_c01089{left:609.779853pt;}
.x3_c01089{left:611.179053pt;}
.x68_c01089{left:618.659053pt;}
.x71_c01089{left:620.414653pt;}
.x39_c01089{left:621.426653pt;}
.x5b_c01089{left:623.842253pt;}
.x40_c01089{left:625.826653pt;}
.x59_c01089{left:628.207053pt;}
.x61_c01089{left:629.557853pt;}
.x27_c01089{left:630.842653pt;}
.x5a_c01089{left:650.770253pt;}
.x72_c01089{left:687.131853pt;}
}





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

.ir_c01090:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01090{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01090;src:url('chunks/assets/font_ed8b301dd8826b80c8c51cae.woff2')format("woff");}.ff1_c01090{font-family:ff1_c01090;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01090;src:url('chunks/assets/font_7c4f737712dd55f720dc902d.woff2')format("woff");}.ff2_c01090{font-family:ff2_c01090;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01090;src:url('chunks/assets/font_7021b66e61be536e5d581c22.woff2')format("woff");}.ff3_c01090{font-family:ff3_c01090;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01090;src:url('chunks/assets/font_c90cf0b7ddb0a8636fe28348.woff2')format("woff");}.ff4_c01090{font-family:ff4_c01090;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01090;src:url('chunks/assets/font_e162002ec7659ba5d5df05ca.woff2')format("woff");}.ff5_c01090{font-family:ff5_c01090;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1d_c01090{transform:matrix(0.111112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111112,0.000000,0.000000,0.250000,0,0);}
.m20_c01090{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);}
.m9f_c01090{transform:matrix(0.153977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153977,0.000000,0.000000,0.250000,0,0);}
.m7f_c01090{transform:matrix(0.155364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155364,0.000000,0.000000,0.250000,0,0);}
.me_c01090{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);}
.m28_c01090{transform:matrix(0.167614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167614,0.000000,0.000000,0.250000,0,0);}
.mf_c01090{transform:matrix(0.168605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168605,0.000000,0.000000,0.250000,0,0);}
.m3_c01090{transform:matrix(0.182143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182143,0.000000,0.000000,0.250000,0,0);}
.m40_c01090{transform:matrix(0.193927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193927,0.000000,0.000000,0.250000,0,0);}
.m4f_c01090{transform:matrix(0.198861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198861,0.000000,0.000000,0.250000,0,0);}
.m18_c01090{transform:matrix(0.201219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201219,0.000000,0.000000,0.250000,0,0);}
.md_c01090{transform:matrix(0.205621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205621,0.000000,0.000000,0.250000,0,0);}
.m77_c01090{transform:matrix(0.217367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217367,0.000000,0.000000,0.250000,0,0);}
.m30_c01090{transform:matrix(0.226579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226579,0.000000,0.000000,0.250000,0,0);}
.m71_c01090{transform:matrix(0.248116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248116,0.000000,0.000000,0.250000,0,0);}
.m81_c01090{transform:matrix(0.248976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248976,0.000000,0.000000,0.250000,0,0);}
.m1_c01090{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m85_c01090{transform:matrix(0.250333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250333,0.000000,0.000000,0.250000,0,0);}
.m12_c01090{transform:matrix(0.250422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250422,0.000000,0.000000,0.250000,0,0);}
.m27_c01090{transform:matrix(0.250426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250426,0.000000,0.000000,0.250000,0,0);}
.m68_c01090{transform:matrix(0.250810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250810,0.000000,0.000000,0.250000,0,0);}
.m2_c01090{transform:matrix(0.251532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251532,0.000000,0.000000,0.250000,0,0);}
.m64_c01090{transform:matrix(0.251770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251770,0.000000,0.000000,0.250000,0,0);}
.mae_c01090{transform:matrix(0.253218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253218,0.000000,0.000000,0.250000,0,0);}
.mb3_c01090{transform:matrix(0.253832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253832,0.000000,0.000000,0.250000,0,0);}
.m7a_c01090{transform:matrix(0.254313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254313,0.000000,0.000000,0.250000,0,0);}
.m0_c01090{transform:matrix(0.255354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255354,0.000000,0.000000,0.250000,0,0);}
.mbc_c01090{transform:matrix(0.255888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255888,0.000000,0.000000,0.250000,0,0);}
.m1e_c01090{transform:matrix(0.256453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256453,0.000000,0.000000,0.250000,0,0);}
.m2b_c01090{transform:matrix(0.256530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256530,0.000000,0.000000,0.250000,0,0);}
.m87_c01090{transform:matrix(0.256656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256656,0.000000,0.000000,0.250000,0,0);}
.mbd_c01090{transform:matrix(0.257778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257778,0.000000,0.000000,0.250000,0,0);}
.m2e_c01090{transform:matrix(0.258775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258775,0.000000,0.000000,0.250000,0,0);}
.m25_c01090{transform:matrix(0.258817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258817,0.000000,0.000000,0.250000,0,0);}
.m35_c01090{transform:matrix(0.259548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259548,0.000000,0.000000,0.250000,0,0);}
.m26_c01090{transform:matrix(0.259976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259976,0.000000,0.000000,0.250000,0,0);}
.m1c_c01090{transform:matrix(0.260022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260022,0.000000,0.000000,0.250000,0,0);}
.mb8_c01090{transform:matrix(0.260354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260354,0.000000,0.000000,0.250000,0,0);}
.mc_c01090{transform:matrix(0.260557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260557,0.000000,0.000000,0.250000,0,0);}
.m47_c01090{transform:matrix(0.261634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261634,0.000000,0.000000,0.250000,0,0);}
.m3d_c01090{transform:matrix(0.263480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263480,0.000000,0.000000,0.250000,0,0);}
.m62_c01090{transform:matrix(0.264487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264487,0.000000,0.000000,0.250000,0,0);}
.m92_c01090{transform:matrix(0.269641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269641,0.000000,0.000000,0.250000,0,0);}
.ma4_c01090{transform:matrix(0.271027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271027,0.000000,0.000000,0.250000,0,0);}
.m78_c01090{transform:matrix(0.271046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271046,0.000000,0.000000,0.250000,0,0);}
.m4_c01090{transform:matrix(0.271210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271210,0.000000,0.000000,0.250000,0,0);}
.m6_c01090{transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);}
.m4c_c01090{transform:matrix(0.271699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271699,0.000000,0.000000,0.250000,0,0);}
.m67_c01090{transform:matrix(0.271986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271986,0.000000,0.000000,0.250000,0,0);}
.m7c_c01090{transform:matrix(0.272173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272173,0.000000,0.000000,0.250000,0,0);}
.m50_c01090{transform:matrix(0.272760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272760,0.000000,0.000000,0.250000,0,0);}
.m32_c01090{transform:matrix(0.274235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274235,0.000000,0.000000,0.250000,0,0);}
.m8_c01090{transform:matrix(0.274675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274675,0.000000,0.000000,0.250000,0,0);}
.m6d_c01090{transform:matrix(0.275231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275231,0.000000,0.000000,0.250000,0,0);}
.m66_c01090{transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);}
.mbf_c01090{transform:matrix(0.276682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276682,0.000000,0.000000,0.250000,0,0);}
.mb1_c01090{transform:matrix(0.278372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278372,0.000000,0.000000,0.250000,0,0);}
.m7d_c01090{transform:matrix(0.278822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278822,0.000000,0.000000,0.250000,0,0);}
.m2f_c01090{transform:matrix(0.279964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279964,0.000000,0.000000,0.250000,0,0);}
.m29_c01090{transform:matrix(0.279997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279997,0.000000,0.000000,0.250000,0,0);}
.mb6_c01090{transform:matrix(0.280090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280090,0.000000,0.000000,0.250000,0,0);}
.m24_c01090{transform:matrix(0.280139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280139,0.000000,0.000000,0.250000,0,0);}
.m17_c01090{transform:matrix(0.281059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281059,0.000000,0.000000,0.250000,0,0);}
.m96_c01090{transform:matrix(0.281348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281348,0.000000,0.000000,0.250000,0,0);}
.ma9_c01090{transform:matrix(0.281453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281453,0.000000,0.000000,0.250000,0,0);}
.m7b_c01090{transform:matrix(0.281670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281670,0.000000,0.000000,0.250000,0,0);}
.m8d_c01090{transform:matrix(0.282137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282137,0.000000,0.000000,0.250000,0,0);}
.m82_c01090{transform:matrix(0.282256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282256,0.000000,0.000000,0.250000,0,0);}
.mbe_c01090{transform:matrix(0.282272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282272,0.000000,0.000000,0.250000,0,0);}
.m22_c01090{transform:matrix(0.282531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282531,0.000000,0.000000,0.250000,0,0);}
.m86_c01090{transform:matrix(0.282976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282976,0.000000,0.000000,0.250000,0,0);}
.m9c_c01090{transform:matrix(0.283001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283001,0.000000,0.000000,0.250000,0,0);}
.m98_c01090{transform:matrix(0.284164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284164,0.000000,0.000000,0.250000,0,0);}
.maf_c01090{transform:matrix(0.284426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284426,0.000000,0.000000,0.250000,0,0);}
.m72_c01090{transform:matrix(0.285016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285016,0.000000,0.000000,0.250000,0,0);}
.ma1_c01090{transform:matrix(0.285545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285545,0.000000,0.000000,0.250000,0,0);}
.m51_c01090{transform:matrix(0.285652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285652,0.000000,0.000000,0.250000,0,0);}
.m95_c01090{transform:matrix(0.286090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286090,0.000000,0.000000,0.250000,0,0);}
.m4a_c01090{transform:matrix(0.286961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286961,0.000000,0.000000,0.250000,0,0);}
.m5e_c01090{transform:matrix(0.288009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288009,0.000000,0.000000,0.250000,0,0);}
.m93_c01090{transform:matrix(0.288605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288605,0.000000,0.000000,0.250000,0,0);}
.m9d_c01090{transform:matrix(0.288942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288942,0.000000,0.000000,0.250000,0,0);}
.m69_c01090{transform:matrix(0.289268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289268,0.000000,0.000000,0.250000,0,0);}
.m33_c01090{transform:matrix(0.290334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290334,0.000000,0.000000,0.250000,0,0);}
.m23_c01090{transform:matrix(0.290383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290383,0.000000,0.000000,0.250000,0,0);}
.m60_c01090{transform:matrix(0.290489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290489,0.000000,0.000000,0.250000,0,0);}
.m56_c01090{transform:matrix(0.290979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290979,0.000000,0.000000,0.250000,0,0);}
.m84_c01090{transform:matrix(0.291107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291107,0.000000,0.000000,0.250000,0,0);}
.m70_c01090{transform:matrix(0.291727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291727,0.000000,0.000000,0.250000,0,0);}
.m74_c01090{transform:matrix(0.291734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291734,0.000000,0.000000,0.250000,0,0);}
.m80_c01090{transform:matrix(0.292049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292049,0.000000,0.000000,0.250000,0,0);}
.m31_c01090{transform:matrix(0.294696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294696,0.000000,0.000000,0.250000,0,0);}
.m53_c01090{transform:matrix(0.295390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295390,0.000000,0.000000,0.250000,0,0);}
.mb4_c01090{transform:matrix(0.295448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295448,0.000000,0.000000,0.250000,0,0);}
.mb2_c01090{transform:matrix(0.295638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295638,0.000000,0.000000,0.250000,0,0);}
.m5f_c01090{transform:matrix(0.295682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295682,0.000000,0.000000,0.250000,0,0);}
.mb0_c01090{transform:matrix(0.295919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295919,0.000000,0.000000,0.250000,0,0);}
.m6b_c01090{transform:matrix(0.295983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295983,0.000000,0.000000,0.250000,0,0);}
.m76_c01090{transform:matrix(0.296495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296495,0.000000,0.000000,0.250000,0,0);}
.mac_c01090{transform:matrix(0.296556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296556,0.000000,0.000000,0.250000,0,0);}
.mbb_c01090{transform:matrix(0.296777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296777,0.000000,0.000000,0.250000,0,0);}
.mc1_c01090{transform:matrix(0.296912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296912,0.000000,0.000000,0.250000,0,0);}
.m4d_c01090{transform:matrix(0.297675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297675,0.000000,0.000000,0.250000,0,0);}
.m88_c01090{transform:matrix(0.297759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297759,0.000000,0.000000,0.250000,0,0);}
.ma2_c01090{transform:matrix(0.297831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297831,0.000000,0.000000,0.250000,0,0);}
.m4e_c01090{transform:matrix(0.298020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298020,0.000000,0.000000,0.250000,0,0);}
.m99_c01090{transform:matrix(0.299214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299214,0.000000,0.000000,0.250000,0,0);}
.m3b_c01090{transform:matrix(0.299553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299553,0.000000,0.000000,0.250000,0,0);}
.m83_c01090{transform:matrix(0.299710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299710,0.000000,0.000000,0.250000,0,0);}
.m5_c01090{transform:matrix(0.300612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300612,0.000000,0.000000,0.250000,0,0);}
.ma8_c01090{transform:matrix(0.300918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300918,0.000000,0.000000,0.250000,0,0);}
.m6f_c01090{transform:matrix(0.301163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301163,0.000000,0.000000,0.250000,0,0);}
.m97_c01090{transform:matrix(0.301855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301855,0.000000,0.000000,0.250000,0,0);}
.m14_c01090{transform:matrix(0.302150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302150,0.000000,0.000000,0.250000,0,0);}
.m90_c01090{transform:matrix(0.302301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302301,0.000000,0.000000,0.250000,0,0);}
.m44_c01090{transform:matrix(0.303577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303577,0.000000,0.000000,0.250000,0,0);}
.m38_c01090{transform:matrix(0.303753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303753,0.000000,0.000000,0.250000,0,0);}
.m10_c01090{transform:matrix(0.303805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303805,0.000000,0.000000,0.250000,0,0);}
.m5d_c01090{transform:matrix(0.305018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305018,0.000000,0.000000,0.250000,0,0);}
.m19_c01090{transform:matrix(0.305463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305463,0.000000,0.000000,0.250000,0,0);}
.m3f_c01090{transform:matrix(0.305535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305535,0.000000,0.000000,0.250000,0,0);}
.m2a_c01090{transform:matrix(0.305916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305916,0.000000,0.000000,0.250000,0,0);}
.m1f_c01090{transform:matrix(0.306427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306427,0.000000,0.000000,0.250000,0,0);}
.m9b_c01090{transform:matrix(0.306829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306829,0.000000,0.000000,0.250000,0,0);}
.m2d_c01090{transform:matrix(0.307010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307010,0.000000,0.000000,0.250000,0,0);}
.m79_c01090{transform:matrix(0.307255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307255,0.000000,0.000000,0.250000,0,0);}
.m89_c01090{transform:matrix(0.307788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307788,0.000000,0.000000,0.250000,0,0);}
.m55_c01090{transform:matrix(0.308959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308959,0.000000,0.000000,0.250000,0,0);}
.m11_c01090{transform:matrix(0.310825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310825,0.000000,0.000000,0.250000,0,0);}
.m6e_c01090{transform:matrix(0.311553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311553,0.000000,0.000000,0.250000,0,0);}
.m8b_c01090{transform:matrix(0.312191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312191,0.000000,0.000000,0.250000,0,0);}
.mb5_c01090{transform:matrix(0.313338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313338,0.000000,0.000000,0.250000,0,0);}
.m1b_c01090{transform:matrix(0.316292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316292,0.000000,0.000000,0.250000,0,0);}
.m9a_c01090{transform:matrix(0.316517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316517,0.000000,0.000000,0.250000,0,0);}
.m9e_c01090{transform:matrix(0.316899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316899,0.000000,0.000000,0.250000,0,0);}
.m42_c01090{transform:matrix(0.317576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317576,0.000000,0.000000,0.250000,0,0);}
.m13_c01090{transform:matrix(0.318157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318157,0.000000,0.000000,0.250000,0,0);}
.m9_c01090{transform:matrix(0.318254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318254,0.000000,0.000000,0.250000,0,0);}
.m7e_c01090{transform:matrix(0.318833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318833,0.000000,0.000000,0.250000,0,0);}
.mb7_c01090{transform:matrix(0.319135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319135,0.000000,0.000000,0.250000,0,0);}
.m6a_c01090{transform:matrix(0.320138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320138,0.000000,0.000000,0.250000,0,0);}
.m58_c01090{transform:matrix(0.320936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320936,0.000000,0.000000,0.250000,0,0);}
.ma7_c01090{transform:matrix(0.322223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322223,0.000000,0.000000,0.250000,0,0);}
.m48_c01090{transform:matrix(0.323030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323030,0.000000,0.000000,0.250000,0,0);}
.m65_c01090{transform:matrix(0.323090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323090,0.000000,0.000000,0.250000,0,0);}
.ma_c01090{transform:matrix(0.324058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324058,0.000000,0.000000,0.250000,0,0);}
.m3e_c01090{transform:matrix(0.325274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325274,0.000000,0.000000,0.250000,0,0);}
.m54_c01090{transform:matrix(0.326483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326483,0.000000,0.000000,0.250000,0,0);}
.m5b_c01090{transform:matrix(0.327357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327357,0.000000,0.000000,0.250000,0,0);}
.m61_c01090{transform:matrix(0.327697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327697,0.000000,0.000000,0.250000,0,0);}
.m3a_c01090{transform:matrix(0.327726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327726,0.000000,0.000000,0.250000,0,0);}
.m4b_c01090{transform:matrix(0.329568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329568,0.000000,0.000000,0.250000,0,0);}
.m8e_c01090{transform:matrix(0.330368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330368,0.000000,0.000000,0.250000,0,0);}
.m57_c01090{transform:matrix(0.331687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331687,0.000000,0.000000,0.250000,0,0);}
.mba_c01090{transform:matrix(0.332545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332545,0.000000,0.000000,0.250000,0,0);}
.mb_c01090{transform:matrix(0.332879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332879,0.000000,0.000000,0.250000,0,0);}
.m5a_c01090{transform:matrix(0.333519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333519,0.000000,0.000000,0.250000,0,0);}
.ma5_c01090{transform:matrix(0.333549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333549,0.000000,0.000000,0.250000,0,0);}
.m37_c01090{transform:matrix(0.335351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335351,0.000000,0.000000,0.250000,0,0);}
.m73_c01090{transform:matrix(0.335633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335633,0.000000,0.000000,0.250000,0,0);}
.ma3_c01090{transform:matrix(0.336812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336812,0.000000,0.000000,0.250000,0,0);}
.ma6_c01090{transform:matrix(0.337297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337297,0.000000,0.000000,0.250000,0,0);}
.m21_c01090{transform:matrix(0.338050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338050,0.000000,0.000000,0.250000,0,0);}
.m34_c01090{transform:matrix(0.338185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338185,0.000000,0.000000,0.250000,0,0);}
.m6c_c01090{transform:matrix(0.340698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340698,0.000000,0.000000,0.250000,0,0);}
.m49_c01090{transform:matrix(0.343212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343212,0.000000,0.000000,0.250000,0,0);}
.m45_c01090{transform:matrix(0.345101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345101,0.000000,0.000000,0.250000,0,0);}
.m5c_c01090{transform:matrix(0.345739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345739,0.000000,0.000000,0.250000,0,0);}
.m41_c01090{transform:matrix(0.345958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345958,0.000000,0.000000,0.250000,0,0);}
.ma0_c01090{transform:matrix(0.346334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346334,0.000000,0.000000,0.250000,0,0);}
.mab_c01090{transform:matrix(0.346458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346458,0.000000,0.000000,0.250000,0,0);}
.m36_c01090{transform:matrix(0.348549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348549,0.000000,0.000000,0.250000,0,0);}
.m39_c01090{transform:matrix(0.349884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349884,0.000000,0.000000,0.250000,0,0);}
.m75_c01090{transform:matrix(0.350422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350422,0.000000,0.000000,0.250000,0,0);}
.m46_c01090{transform:matrix(0.354172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354172,0.000000,0.000000,0.250000,0,0);}
.m7_c01090{transform:matrix(0.354661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354661,0.000000,0.000000,0.250000,0,0);}
.mad_c01090{transform:matrix(0.356405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356405,0.000000,0.000000,0.250000,0,0);}
.mb9_c01090{transform:matrix(0.356884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356884,0.000000,0.000000,0.250000,0,0);}
.m59_c01090{transform:matrix(0.357328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357328,0.000000,0.000000,0.250000,0,0);}
.m52_c01090{transform:matrix(0.357996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357996,0.000000,0.000000,0.250000,0,0);}
.m63_c01090{transform:matrix(0.358373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358373,0.000000,0.000000,0.250000,0,0);}
.m1a_c01090{transform:matrix(0.360203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360203,0.000000,0.000000,0.250000,0,0);}
.m91_c01090{transform:matrix(0.361320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361320,0.000000,0.000000,0.250000,0,0);}
.mc0_c01090{transform:matrix(0.362118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362118,0.000000,0.000000,0.250000,0,0);}
.m94_c01090{transform:matrix(0.362885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362885,0.000000,0.000000,0.250000,0,0);}
.m8f_c01090{transform:matrix(0.363129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363129,0.000000,0.000000,0.250000,0,0);}
.m43_c01090{transform:matrix(0.363412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363412,0.000000,0.000000,0.250000,0,0);}
.m16_c01090{transform:matrix(0.366825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366825,0.000000,0.000000,0.250000,0,0);}
.m8c_c01090{transform:matrix(0.373235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373235,0.000000,0.000000,0.250000,0,0);}
.maa_c01090{transform:matrix(0.379741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379741,0.000000,0.000000,0.250000,0,0);}
.m2c_c01090{transform:matrix(0.383909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383909,0.000000,0.000000,0.250000,0,0);}
.m15_c01090{transform:matrix(0.391270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391270,0.000000,0.000000,0.250000,0,0);}
.m3c_c01090{transform:matrix(0.397481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397481,0.000000,0.000000,0.250000,0,0);}
.m8a_c01090{transform:matrix(0.403692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403692,0.000000,0.000000,0.250000,0,0);}
.mc2_c01090{transform:matrix(0.409902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409902,0.000000,0.000000,0.250000,0,0);}
.v1_c01090{vertical-align:-2.871000px;}
.v0_c01090{vertical-align:0.000000px;}
.ls17_c01090{letter-spacing:-2.758140px;}
.ls27_c01090{letter-spacing:-2.709630px;}
.ls19_c01090{letter-spacing:-2.661127px;}
.ls9_c01090{letter-spacing:-2.654190px;}
.ls1e_c01090{letter-spacing:-2.647267px;}
.ls7_c01090{letter-spacing:-2.341786px;}
.ls25_c01090{letter-spacing:-2.217600px;}
.ls1d_c01090{letter-spacing:-1.254531px;}
.ls31_c01090{letter-spacing:-0.898128px;}
.ls2_c01090{letter-spacing:0.000000px;}
.ls2b_c01090{letter-spacing:0.364955px;}
.lsb_c01090{letter-spacing:0.707099px;}
.ls2f_c01090{letter-spacing:1.269738px;}
.ls26_c01090{letter-spacing:1.964556px;}
.ls14_c01090{letter-spacing:2.216214px;}
.ls2a_c01090{letter-spacing:2.699532px;}
.ls24_c01090{letter-spacing:2.911590px;}
.ls0_c01090{letter-spacing:3.101076px;}
.ls2c_c01090{letter-spacing:3.168000px;}
.ls23_c01090{letter-spacing:3.425400px;}
.ls20_c01090{letter-spacing:3.425796px;}
.ls1f_c01090{letter-spacing:3.474900px;}
.ls28_c01090{letter-spacing:3.504610px;}
.ls30_c01090{letter-spacing:3.524400px;}
.ls13_c01090{letter-spacing:3.583810px;}
.ls29_c01090{letter-spacing:3.603610px;}
.ls1a_c01090{letter-spacing:3.611529px;}
.ls2d_c01090{letter-spacing:3.623400px;}
.lsc_c01090{letter-spacing:3.663000px;}
.ls5_c01090{letter-spacing:3.682810px;}
.ls2e_c01090{letter-spacing:3.742200px;}
.ls3_c01090{letter-spacing:3.781810px;}
.ls8_c01090{letter-spacing:3.791700px;}
.ls6_c01090{letter-spacing:3.801610px;}
.ls32_c01090{letter-spacing:3.821400px;}
.ls22_c01090{letter-spacing:3.870900px;}
.ls18_c01090{letter-spacing:3.940200px;}
.lsf_c01090{letter-spacing:4.059000px;}
.ls33_c01090{letter-spacing:4.068900px;}
.ls1b_c01090{letter-spacing:4.118400px;}
.ls1c_c01090{letter-spacing:4.158000px;}
.ls1_c01090{letter-spacing:4.167900px;}
.ls12_c01090{letter-spacing:4.177810px;}
.lse_c01090{letter-spacing:4.222478px;}
.ls21_c01090{letter-spacing:4.237200px;}
.lsd_c01090{letter-spacing:4.326310px;}
.ls16_c01090{letter-spacing:4.514400px;}
.ls11_c01090{letter-spacing:55.598598px;}
.ls4_c01090{letter-spacing:57.024198px;}
.ls10_c01090{letter-spacing:58.449798px;}
.lsa_c01090{letter-spacing:61.300998px;}
.ls15_c01090{letter-spacing:62.726400px;}
.sc__c01090{text-shadow:none;}
.sc0_c01090{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01090{-webkit-text-stroke:0px transparent;}
.sc0_c01090{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01090{word-spacing:-23.396076px;}
.ws1_c01090{word-spacing:0.000000px;}
._0_c01090{width:3.740479px;}
._1_c01090{width:9.041967px;}
._3_c01090{width:11.704968px;}
._2_c01090{width:27.372175px;}
.fc0_c01090{color:transparent;}
.fs12_c01090{font-size:22.176000px;}
.fs1_c01090{font-size:27.720000px;}
.fs1b_c01090{font-size:48.510000px;}
.fs11_c01090{font-size:49.896198px;}
.fs27_c01090{font-size:50.688000px;}
.fse_c01090{font-size:55.598598px;}
.fs4_c01090{font-size:57.024198px;}
.fsd_c01090{font-size:58.449798px;}
.fs14_c01090{font-size:59.400000px;}
.fs9_c01090{font-size:61.300998px;}
.fs13_c01090{font-size:62.726400px;}
.fs1f_c01090{font-size:63.360000px;}
.fs17_c01090{font-size:66.330000px;}
.fs1e_c01090{font-size:68.508000px;}
.fs1a_c01090{font-size:69.498000px;}
.fs2_c01090{font-size:70.092198px;}
.fs24_c01090{font-size:70.488000px;}
.fs10_c01090{font-size:71.676198px;}
.fs20_c01090{font-size:72.072198px;}
.fs22_c01090{font-size:72.468000px;}
.fsa_c01090{font-size:73.260000px;}
.fs5_c01090{font-size:73.656198px;}
.fs23_c01090{font-size:74.844000px;}
.fs3_c01090{font-size:75.636198px;}
.fs8_c01090{font-size:75.834000px;}
.fs6_c01090{font-size:76.032198px;}
.fs25_c01090{font-size:76.428000px;}
.fs1d_c01090{font-size:77.418000px;}
.fs16_c01090{font-size:78.804000px;}
.fs21_c01090{font-size:79.398000px;}
.fsc_c01090{font-size:81.180000px;}
.fs26_c01090{font-size:81.378000px;}
.fs18_c01090{font-size:82.368000px;}
.fs19_c01090{font-size:83.160000px;}
.fs0_c01090{font-size:83.358000px;}
.fsf_c01090{font-size:83.556198px;}
.fs1c_c01090{font-size:84.744000px;}
.fsb_c01090{font-size:86.526198px;}
.fs7_c01090{font-size:88.704000px;}
.fs15_c01090{font-size:90.288000px;}
.y0_c01090{bottom:0.000000px;}
.y1_c01090{bottom:76.500000px;}
.y21_c01090{bottom:153.520335px;}
.y20_c01090{bottom:161.361135px;}
.y1f_c01090{bottom:194.862735px;}
.y1e_c01090{bottom:227.646585px;}
.y1d_c01090{bottom:260.791785px;}
.y1c_c01090{bottom:293.229135px;}
.y1b_c01090{bottom:325.300185px;}
.y1a_c01090{bottom:357.024735px;}
.y19_c01090{bottom:420.458985px;}
.y18_c01090{bottom:453.247785px;}
.y17_c01090{bottom:484.254585px;}
.y16_c01090{bottom:515.974185px;}
.y15_c01090{bottom:548.406585px;}
.y14_c01090{bottom:580.487535px;}
.y13_c01090{bottom:612.919935px;}
.y12_c01090{bottom:644.990985px;}
.y11_c01090{bottom:676.715535px;}
.y10_c01090{bottom:708.786585px;}
.yf_c01090{bottom:741.218985px;}
.yd_c01090{bottom:772.230735px;}
.ye_c01090{bottom:775.081935px;}
.yc_c01090{bottom:789.337935px;}
.yb_c01090{bottom:804.663135px;}
.ya_c01090{bottom:834.952185px;}
.y9_c01090{bottom:867.384585px;}
.y8_c01090{bottom:898.747785px;}
.y5_c01090{bottom:931.536585px;}
.y7_c01090{bottom:931.897935px;}
.y6_c01090{bottom:932.254335px;}
.y4_c01090{bottom:946.505385px;}
.y3_c01090{bottom:1045.940985px;}
.y2_c01090{bottom:1063.760985px;}
.h13_c01090{height:23.128875px;}
.h3_c01090{height:28.911094px;}
.h10_c01090{height:37.028666px;}
.h6_c01090{height:37.978116px;}
.hf_c01090{height:38.927565px;}
.hb_c01090{height:40.826465px;}
.h14_c01090{height:41.775782px;}
.h29_c01090{height:52.866000px;}
.h15_c01090{height:58.297852px;}
.h21_c01090{height:62.184375px;}
.h4_c01090{height:68.757434px;}
.h22_c01090{height:68.791659px;}
.h19_c01090{height:69.180117px;}
.h12_c01090{height:70.346269px;}
.h23_c01090{height:70.734921px;}
.h25_c01090{height:71.123379px;}
.h1f_c01090{height:71.451703px;}
.hc_c01090{height:71.900684px;}
.h20_c01090{height:72.289530px;}
.h1c_c01090{height:72.484242px;}
.h18_c01090{height:73.103972px;}
.h26_c01090{height:73.455293px;}
.h5_c01090{height:74.232792px;}
.h8_c01090{height:74.621444px;}
.h1e_c01090{height:75.981533px;}
.h7_c01090{height:76.821113px;}
.h17_c01090{height:77.341816px;}
.h24_c01090{height:77.924795px;}
.ha_c01090{height:79.092492px;}
.he_c01090{height:79.673730px;}
.h27_c01090{height:79.712016px;}
.h28_c01090{height:79.868057px;}
.h1a_c01090{height:80.839688px;}
.h1b_c01090{height:81.616992px;}
.h2_c01090{height:81.811318px;}
.h11_c01090{height:82.005839px;}
.h1d_c01090{height:83.171602px;}
.hd_c01090{height:84.920731px;}
.h9_c01090{height:87.058125px;}
.h16_c01090{height:88.612734px;}
.h1_c01090{height:1110.000000px;}
.h0_c01090{height:1263.000000px;}
.w1_c01090{width:775.500000px;}
.w0_c01090{width:892.500000px;}
.x0_c01090{left:0.000000px;}
.x1_c01090{left:58.500000px;}
.x5b_c01090{left:76.043535px;}
.x5a_c01090{left:129.978735px;}
.x2d_c01090{left:131.458785px;}
.x5_c01090{left:133.052685px;}
.x32_c01090{left:154.689135px;}
.x5c_c01090{left:163.732785px;}
.x2e_c01090{left:164.915835px;}
.x44_c01090{left:174.949485px;}
.x39_c01090{left:176.137485px;}
.x6_c01090{left:178.548135px;}
.x67_c01090{left:185.799885px;}
.x63_c01090{left:186.859185px;}
.x15_c01090{left:188.705535px;}
.x7a_c01090{left:196.511685px;}
.x5d_c01090{left:197.585835px;}
.x33_c01090{left:198.590685px;}
.x10_c01090{left:200.075685px;}
.x3a_c01090{left:209.931135px;}
.x2a_c01090{left:211.089435px;}
.x68_c01090{left:218.455035px;}
.x3f_c01090{left:219.855885px;}
.x45_c01090{left:221.063685px;}
.x34_c01090{left:231.612135px;}
.x11_c01090{left:234.141585px;}
.x3_c01090{left:240.091485px;}
.x74_c01090{left:241.418085px;}
.x5e_c01090{left:243.160485px;}
.x2f_c01090{left:244.521735px;}
.x1f_c01090{left:246.001785px;}
.x55_c01090{left:253.416885px;}
.x64_c01090{left:264.103935px;}
.x40_c01090{left:265.648335px;}
.x12_c01090{left:266.935335px;}
.x7b_c01090{left:275.231535px;}
.x16_c01090{left:277.162035px;}
.x7_c01090{left:279.043035px;}
.x6e_c01090{left:285.413685px;}
.x49_c01090{left:286.849185px;}
.x4f_c01090{left:288.076785px;}
.x35_c01090{left:298.214385px;}
.x3b_c01090{left:299.451885px;}
.x17_c01090{left:309.950835px;}
.x8_c01090{left:311.609085px;}
.x4d_c01090{left:319.994385px;}
.x36_c01090{left:321.415035px;}
.x69_c01090{left:330.518085px;}
.x13_c01090{left:333.240585px;}
.x4c_c01090{left:341.729835px;}
.x30_c01090{left:343.987035px;}
.x4e_c01090{left:352.486185px;}
.x4a_c01090{left:354.312735px;}
.x9_c01090{left:355.471035px;}
.x6f_c01090{left:363.287085px;}
.x41_c01090{left:364.801785px;}
.x3c_c01090{left:366.068985px;}
.x7c_c01090{left:373.454385px;}
.x5f_c01090{left:375.300735px;}
.x14_c01090{left:377.251035px;}
.x2b_c01090{left:387.230235px;}
.x18_c01090{left:389.259735px;}
.x20_c01090{left:398.407335px;}
.xa_c01090{left:400.283385px;}
.x70_c01090{left:408.198435px;}
.x37_c01090{left:409.935885px;}
.x75_c01090{left:419.251785px;}
.x19_c01090{left:421.568385px;}
.x50_c01090{left:430.963485px;}
.x25_c01090{left:432.908835px;}
.x42_c01090{left:440.809035px;}
.x21_c01090{left:443.155335px;}
.x3d_c01090{left:454.876935px;}
.x6a_c01090{left:463.470135px;}
.x51_c01090{left:464.895735px;}
.x2c_c01090{left:466.657935px;}
.xb_c01090{left:477.354885px;}
.x4b_c01090{left:485.755035px;}
.x1a_c01090{left:487.636035px;}
.x62_c01090{left:496.051035px;}
.xc_c01090{left:508.168635px;}
.x22_c01090{left:509.643735px;}
.x52_c01090{left:518.850735px;}
.x1b_c01090{left:521.117835px;}
.x26_c01090{left:532.017735px;}
.x71_c01090{left:540.531735px;}
.x43_c01090{left:542.902785px;}
.x56_c01090{left:544.254135px;}
.x4_c01090{left:549.436785px;}
.x6b_c01090{left:551.842485px;}
.x57_c01090{left:562.687935px;}
.x31_c01090{left:564.653085px;}
.xd_c01090{left:566.405385px;}
.x76_c01090{left:572.686935px;}
.x23_c01090{left:576.359835px;}
.x65_c01090{left:584.646135px;}
.x46_c01090{left:586.546935px;}
.x38_c01090{left:587.838885px;}
.x77_c01090{left:595.268835px;}
.x58_c01090{left:597.105285px;}
.x72_c01090{left:598.451685px;}
.x27_c01090{left:607.549785px;}
.x1c_c01090{left:608.861535px;}
.x73_c01090{left:617.434935px;}
.x53_c01090{left:618.850635px;}
.xe_c01090{left:620.919735px;}
.x78_c01090{left:627.914085px;}
.x47_c01090{left:629.686185px;}
.x1d_c01090{left:641.511735px;}
.x3e_c01090{left:642.526485px;}
.x54_c01090{left:651.080085px;}
.xf_c01090{left:653.144235px;}
.x60_c01090{left:661.430535px;}
.x29_c01090{left:669.221835px;}
.x48_c01090{left:673.201635px;}
.x1e_c01090{left:675.671685px;}
.x28_c01090{left:677.532885px;}
.x79_c01090{left:683.675835px;}
.x24_c01090{left:686.200335px;}
.x2_c01090{left:689.006985px;}
.x6c_c01090{left:695.115285px;}
.x59_c01090{left:696.570585px;}
.x66_c01090{left:706.480485px;}
.x61_c01090{left:717.380385px;}
.x6d_c01090{left:728.423835px;}
.x7d_c01090{left:770.924535px;}
@media print{
.v1_c01090{vertical-align:-2.552000pt;}
.v0_c01090{vertical-align:0.000000pt;}
.ls17_c01090{letter-spacing:-2.451680pt;}
.ls27_c01090{letter-spacing:-2.408560pt;}
.ls19_c01090{letter-spacing:-2.365446pt;}
.ls9_c01090{letter-spacing:-2.359280pt;}
.ls1e_c01090{letter-spacing:-2.353126pt;}
.ls7_c01090{letter-spacing:-2.081587pt;}
.ls25_c01090{letter-spacing:-1.971200pt;}
.ls1d_c01090{letter-spacing:-1.115139pt;}
.ls31_c01090{letter-spacing:-0.798336pt;}
.ls2_c01090{letter-spacing:0.000000pt;}
.ls2b_c01090{letter-spacing:0.324404pt;}
.lsb_c01090{letter-spacing:0.628533pt;}
.ls2f_c01090{letter-spacing:1.128656pt;}
.ls26_c01090{letter-spacing:1.746272pt;}
.ls14_c01090{letter-spacing:1.969968pt;}
.ls2a_c01090{letter-spacing:2.399584pt;}
.ls24_c01090{letter-spacing:2.588080pt;}
.ls0_c01090{letter-spacing:2.756512pt;}
.ls2c_c01090{letter-spacing:2.816000pt;}
.ls23_c01090{letter-spacing:3.044800pt;}
.ls20_c01090{letter-spacing:3.045152pt;}
.ls1f_c01090{letter-spacing:3.088800pt;}
.ls28_c01090{letter-spacing:3.115209pt;}
.ls30_c01090{letter-spacing:3.132800pt;}
.ls13_c01090{letter-spacing:3.185609pt;}
.ls29_c01090{letter-spacing:3.203209pt;}
.ls1a_c01090{letter-spacing:3.210248pt;}
.ls2d_c01090{letter-spacing:3.220800pt;}
.lsc_c01090{letter-spacing:3.256000pt;}
.ls5_c01090{letter-spacing:3.273609pt;}
.ls2e_c01090{letter-spacing:3.326400pt;}
.ls3_c01090{letter-spacing:3.361609pt;}
.ls8_c01090{letter-spacing:3.370400pt;}
.ls6_c01090{letter-spacing:3.379209pt;}
.ls32_c01090{letter-spacing:3.396800pt;}
.ls22_c01090{letter-spacing:3.440800pt;}
.ls18_c01090{letter-spacing:3.502400pt;}
.lsf_c01090{letter-spacing:3.608000pt;}
.ls33_c01090{letter-spacing:3.616800pt;}
.ls1b_c01090{letter-spacing:3.660800pt;}
.ls1c_c01090{letter-spacing:3.696000pt;}
.ls1_c01090{letter-spacing:3.704800pt;}
.ls12_c01090{letter-spacing:3.713609pt;}
.lse_c01090{letter-spacing:3.753314pt;}
.ls21_c01090{letter-spacing:3.766400pt;}
.lsd_c01090{letter-spacing:3.845609pt;}
.ls16_c01090{letter-spacing:4.012800pt;}
.ls11_c01090{letter-spacing:49.420976pt;}
.ls4_c01090{letter-spacing:50.688176pt;}
.ls10_c01090{letter-spacing:51.955376pt;}
.lsa_c01090{letter-spacing:54.489776pt;}
.ls15_c01090{letter-spacing:55.756800pt;}
.ws0_c01090{word-spacing:-20.796512pt;}
.ws1_c01090{word-spacing:0.000000pt;}
._0_c01090{width:3.324870pt;}
._1_c01090{width:8.037304pt;}
._3_c01090{width:10.404416pt;}
._2_c01090{width:24.330822pt;}
.fs12_c01090{font-size:19.712000pt;}
.fs1_c01090{font-size:24.640000pt;}
.fs1b_c01090{font-size:43.120000pt;}
.fs11_c01090{font-size:44.352176pt;}
.fs27_c01090{font-size:45.056000pt;}
.fse_c01090{font-size:49.420976pt;}
.fs4_c01090{font-size:50.688176pt;}
.fsd_c01090{font-size:51.955376pt;}
.fs14_c01090{font-size:52.800000pt;}
.fs9_c01090{font-size:54.489776pt;}
.fs13_c01090{font-size:55.756800pt;}
.fs1f_c01090{font-size:56.320000pt;}
.fs17_c01090{font-size:58.960000pt;}
.fs1e_c01090{font-size:60.896000pt;}
.fs1a_c01090{font-size:61.776000pt;}
.fs2_c01090{font-size:62.304176pt;}
.fs24_c01090{font-size:62.656000pt;}
.fs10_c01090{font-size:63.712176pt;}
.fs20_c01090{font-size:64.064176pt;}
.fs22_c01090{font-size:64.416000pt;}
.fsa_c01090{font-size:65.120000pt;}
.fs5_c01090{font-size:65.472176pt;}
.fs23_c01090{font-size:66.528000pt;}
.fs3_c01090{font-size:67.232176pt;}
.fs8_c01090{font-size:67.408000pt;}
.fs6_c01090{font-size:67.584176pt;}
.fs25_c01090{font-size:67.936000pt;}
.fs1d_c01090{font-size:68.816000pt;}
.fs16_c01090{font-size:70.048000pt;}
.fs21_c01090{font-size:70.576000pt;}
.fsc_c01090{font-size:72.160000pt;}
.fs26_c01090{font-size:72.336000pt;}
.fs18_c01090{font-size:73.216000pt;}
.fs19_c01090{font-size:73.920000pt;}
.fs0_c01090{font-size:74.096000pt;}
.fsf_c01090{font-size:74.272176pt;}
.fs1c_c01090{font-size:75.328000pt;}
.fsb_c01090{font-size:76.912176pt;}
.fs7_c01090{font-size:78.848000pt;}
.fs15_c01090{font-size:80.256000pt;}
.y0_c01090{bottom:0.000000pt;}
.y1_c01090{bottom:68.000000pt;}
.y21_c01090{bottom:136.462520pt;}
.y20_c01090{bottom:143.432120pt;}
.y1f_c01090{bottom:173.211320pt;}
.y1e_c01090{bottom:202.352520pt;}
.y1d_c01090{bottom:231.814920pt;}
.y1c_c01090{bottom:260.648120pt;}
.y1b_c01090{bottom:289.155720pt;}
.y1a_c01090{bottom:317.355320pt;}
.y19_c01090{bottom:373.741320pt;}
.y18_c01090{bottom:402.886920pt;}
.y17_c01090{bottom:430.448520pt;}
.y16_c01090{bottom:458.643720pt;}
.y15_c01090{bottom:487.472520pt;}
.y14_c01090{bottom:515.988920pt;}
.y13_c01090{bottom:544.817720pt;}
.y12_c01090{bottom:573.325320pt;}
.y11_c01090{bottom:601.524920pt;}
.y10_c01090{bottom:630.032520pt;}
.yf_c01090{bottom:658.861320pt;}
.yd_c01090{bottom:686.427320pt;}
.ye_c01090{bottom:688.961720pt;}
.yc_c01090{bottom:701.633720pt;}
.yb_c01090{bottom:715.256120pt;}
.ya_c01090{bottom:742.179720pt;}
.y9_c01090{bottom:771.008520pt;}
.y8_c01090{bottom:798.886920pt;}
.y5_c01090{bottom:828.032520pt;}
.y7_c01090{bottom:828.353720pt;}
.y6_c01090{bottom:828.670520pt;}
.y4_c01090{bottom:841.338120pt;}
.y3_c01090{bottom:929.725320pt;}
.y2_c01090{bottom:945.565320pt;}
.h13_c01090{height:20.559000pt;}
.h3_c01090{height:25.698750pt;}
.h10_c01090{height:32.914370pt;}
.h6_c01090{height:33.758325pt;}
.hf_c01090{height:34.602280pt;}
.hb_c01090{height:36.290191pt;}
.h14_c01090{height:37.134029pt;}
.h29_c01090{height:46.992000pt;}
.h15_c01090{height:51.820313pt;}
.h21_c01090{height:55.275000pt;}
.h4_c01090{height:61.117720pt;}
.h22_c01090{height:61.148141pt;}
.h19_c01090{height:61.493438pt;}
.h12_c01090{height:62.530016pt;}
.h23_c01090{height:62.875485pt;}
.h25_c01090{height:63.220781pt;}
.h1f_c01090{height:63.512625pt;}
.hc_c01090{height:63.911719pt;}
.h20_c01090{height:64.257360pt;}
.h1c_c01090{height:64.430438pt;}
.h18_c01090{height:64.981309pt;}
.h26_c01090{height:65.293594pt;}
.h5_c01090{height:65.984704pt;}
.h8_c01090{height:66.330173pt;}
.h1e_c01090{height:67.539141pt;}
.h7_c01090{height:68.285434pt;}
.h17_c01090{height:68.748281pt;}
.h24_c01090{height:69.266484pt;}
.ha_c01090{height:70.304438pt;}
.he_c01090{height:70.821094pt;}
.h27_c01090{height:70.855125pt;}
.h28_c01090{height:70.993828pt;}
.h1a_c01090{height:71.857500pt;}
.h1b_c01090{height:72.548438pt;}
.h2_c01090{height:72.721172pt;}
.h11_c01090{height:72.894079pt;}
.h1d_c01090{height:73.930313pt;}
.hd_c01090{height:75.485095pt;}
.h9_c01090{height:77.385000pt;}
.h16_c01090{height:78.766875pt;}
.h1_c01090{height:986.666667pt;}
.h0_c01090{height:1122.666667pt;}
.w1_c01090{width:689.333333pt;}
.w0_c01090{width:793.333333pt;}
.x0_c01090{left:0.000000pt;}
.x1_c01090{left:52.000000pt;}
.x5b_c01090{left:67.594253pt;}
.x5a_c01090{left:115.536653pt;}
.x2d_c01090{left:116.852253pt;}
.x5_c01090{left:118.269053pt;}
.x32_c01090{left:137.501453pt;}
.x5c_c01090{left:145.540253pt;}
.x2e_c01090{left:146.591853pt;}
.x44_c01090{left:155.510653pt;}
.x39_c01090{left:156.566653pt;}
.x6_c01090{left:158.709453pt;}
.x67_c01090{left:165.155453pt;}
.x63_c01090{left:166.097053pt;}
.x15_c01090{left:167.738253pt;}
.x7a_c01090{left:174.677053pt;}
.x5d_c01090{left:175.631853pt;}
.x33_c01090{left:176.525053pt;}
.x10_c01090{left:177.845053pt;}
.x3a_c01090{left:186.605453pt;}
.x2a_c01090{left:187.635053pt;}
.x68_c01090{left:194.182253pt;}
.x3f_c01090{left:195.427453pt;}
.x45_c01090{left:196.501053pt;}
.x34_c01090{left:205.877453pt;}
.x11_c01090{left:208.125853pt;}
.x3_c01090{left:213.414653pt;}
.x74_c01090{left:214.593853pt;}
.x5e_c01090{left:216.142653pt;}
.x2f_c01090{left:217.352653pt;}
.x1f_c01090{left:218.668253pt;}
.x55_c01090{left:225.259453pt;}
.x64_c01090{left:234.759053pt;}
.x40_c01090{left:236.131853pt;}
.x12_c01090{left:237.275853pt;}
.x7b_c01090{left:244.650253pt;}
.x16_c01090{left:246.366253pt;}
.x7_c01090{left:248.038253pt;}
.x6e_c01090{left:253.701053pt;}
.x49_c01090{left:254.977053pt;}
.x4f_c01090{left:256.068253pt;}
.x35_c01090{left:265.079453pt;}
.x3b_c01090{left:266.179453pt;}
.x17_c01090{left:275.511853pt;}
.x8_c01090{left:276.985853pt;}
.x4d_c01090{left:284.439453pt;}
.x36_c01090{left:285.702253pt;}
.x69_c01090{left:293.793853pt;}
.x13_c01090{left:296.213853pt;}
.x4c_c01090{left:303.759853pt;}
.x30_c01090{left:305.766253pt;}
.x4e_c01090{left:313.321053pt;}
.x4a_c01090{left:314.944653pt;}
.x9_c01090{left:315.974253pt;}
.x6f_c01090{left:322.921853pt;}
.x41_c01090{left:324.268253pt;}
.x3c_c01090{left:325.394653pt;}
.x7c_c01090{left:331.959453pt;}
.x5f_c01090{left:333.600653pt;}
.x14_c01090{left:335.334253pt;}
.x2b_c01090{left:344.204653pt;}
.x18_c01090{left:346.008653pt;}
.x20_c01090{left:354.139853pt;}
.xa_c01090{left:355.807453pt;}
.x70_c01090{left:362.843053pt;}
.x37_c01090{left:364.387453pt;}
.x75_c01090{left:372.668253pt;}
.x19_c01090{left:374.727453pt;}
.x50_c01090{left:383.078653pt;}
.x25_c01090{left:384.807853pt;}
.x42_c01090{left:391.830253pt;}
.x21_c01090{left:393.915853pt;}
.x3d_c01090{left:404.335053pt;}
.x6a_c01090{left:411.973453pt;}
.x51_c01090{left:413.240653pt;}
.x2c_c01090{left:414.807053pt;}
.xb_c01090{left:424.315453pt;}
.x4b_c01090{left:431.782253pt;}
.x1a_c01090{left:433.454253pt;}
.x62_c01090{left:440.934253pt;}
.xc_c01090{left:451.705453pt;}
.x22_c01090{left:453.016653pt;}
.x52_c01090{left:461.200653pt;}
.x1b_c01090{left:463.215853pt;}
.x26_c01090{left:472.904653pt;}
.x71_c01090{left:480.472653pt;}
.x43_c01090{left:482.580253pt;}
.x56_c01090{left:483.781453pt;}
.x4_c01090{left:488.388253pt;}
.x6b_c01090{left:490.526653pt;}
.x57_c01090{left:500.167053pt;}
.x31_c01090{left:501.913853pt;}
.xd_c01090{left:503.471453pt;}
.x76_c01090{left:509.055053pt;}
.x23_c01090{left:512.319853pt;}
.x65_c01090{left:519.685453pt;}
.x46_c01090{left:521.375053pt;}
.x38_c01090{left:522.523453pt;}
.x77_c01090{left:529.127853pt;}
.x58_c01090{left:530.760253pt;}
.x72_c01090{left:531.957053pt;}
.x27_c01090{left:540.044253pt;}
.x1c_c01090{left:541.210253pt;}
.x73_c01090{left:548.831053pt;}
.x53_c01090{left:550.089453pt;}
.xe_c01090{left:551.928653pt;}
.x78_c01090{left:558.145853pt;}
.x47_c01090{left:559.721053pt;}
.x1d_c01090{left:570.232653pt;}
.x3e_c01090{left:571.134653pt;}
.x54_c01090{left:578.737853pt;}
.xf_c01090{left:580.572653pt;}
.x60_c01090{left:587.938253pt;}
.x29_c01090{left:594.863853pt;}
.x48_c01090{left:598.401453pt;}
.x1e_c01090{left:600.597053pt;}
.x28_c01090{left:602.251453pt;}
.x79_c01090{left:607.711853pt;}
.x24_c01090{left:609.955853pt;}
.x2_c01090{left:612.450653pt;}
.x6c_c01090{left:617.880253pt;}
.x59_c01090{left:619.173853pt;}
.x66_c01090{left:627.982653pt;}
.x61_c01090{left:637.671453pt;}
.x6d_c01090{left:647.487853pt;}
.x7d_c01090{left:685.266253pt;}
}





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

.ir_c01091:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01091{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01091;src:url('chunks/assets/font_14b0b1189300740718aebfa0.woff2')format("woff");}.ff1_c01091{font-family:ff1_c01091;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01091;src:url('chunks/assets/font_ecd6c48c4c04897c61243129.woff2')format("woff");}.ff2_c01091{font-family:ff2_c01091;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01091;src:url('chunks/assets/font_fbb627bb12dc113a64990e3d.woff2')format("woff");}.ff3_c01091{font-family:ff3_c01091;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01091;src:url('chunks/assets/font_90d140a20e3786186142cf2a.woff2')format("woff");}.ff4_c01091{font-family:ff4_c01091;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m8c_c01091{transform:matrix(0.107381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107381,0.000000,0.000000,0.250000,0,0);}
.m93_c01091{transform:matrix(0.126504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126504,0.000000,0.000000,0.250000,0,0);}
.m2f_c01091{transform:matrix(0.149203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149203,0.000000,0.000000,0.250000,0,0);}
.m7d_c01091{transform:matrix(0.154605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154605,0.000000,0.000000,0.250000,0,0);}
.m99_c01091{transform:matrix(0.155315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155315,0.000000,0.000000,0.250000,0,0);}
.m96_c01091{transform:matrix(0.155364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155364,0.000000,0.000000,0.250000,0,0);}
.m17_c01091{transform:matrix(0.161310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161310,0.000000,0.000000,0.250000,0,0);}
.m52_c01091{transform:matrix(0.166461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166461,0.000000,0.000000,0.250000,0,0);}
.m9a_c01091{transform:matrix(0.175249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175249,0.000000,0.000000,0.250000,0,0);}
.mb_c01091{transform:matrix(0.213124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213124,0.000000,0.000000,0.250000,0,0);}
.ma0_c01091{transform:matrix(0.219481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219481,0.000000,0.000000,0.250000,0,0);}
.m31_c01091{transform:matrix(0.226564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226564,0.000000,0.000000,0.250000,0,0);}
.m32_c01091{transform:matrix(0.228003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228003,0.000000,0.000000,0.250000,0,0);}
.ma7_c01091{transform:matrix(0.228509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228509,0.000000,0.000000,0.250000,0,0);}
.m8a_c01091{transform:matrix(0.231852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231852,0.000000,0.000000,0.250000,0,0);}
.m67_c01091{transform:matrix(0.234616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234616,0.000000,0.000000,0.250000,0,0);}
.m6f_c01091{transform:matrix(0.242206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242206,0.000000,0.000000,0.250000,0,0);}
.m15_c01091{transform:matrix(0.242934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242934,0.000000,0.000000,0.250000,0,0);}
.m95_c01091{transform:matrix(0.243826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243826,0.000000,0.000000,0.250000,0,0);}
.m35_c01091{transform:matrix(0.247570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247570,0.000000,0.000000,0.250000,0,0);}
.ma8_c01091{transform:matrix(0.248825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248825,0.000000,0.000000,0.250000,0,0);}
.m0_c01091{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m5b_c01091{transform:matrix(0.250755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250755,0.000000,0.000000,0.250000,0,0);}
.m94_c01091{transform:matrix(0.251997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251997,0.000000,0.000000,0.250000,0,0);}
.m62_c01091{transform:matrix(0.252344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252344,0.000000,0.000000,0.250000,0,0);}
.m73_c01091{transform:matrix(0.254396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254396,0.000000,0.000000,0.250000,0,0);}
.m98_c01091{transform:matrix(0.254758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254758,0.000000,0.000000,0.250000,0,0);}
.m59_c01091{transform:matrix(0.254924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254924,0.000000,0.000000,0.250000,0,0);}
.m1_c01091{transform:matrix(0.255713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255713,0.000000,0.000000,0.250000,0,0);}
.m3_c01091{transform:matrix(0.255749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255749,0.000000,0.000000,0.250000,0,0);}
.m1a_c01091{transform:matrix(0.256900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256900,0.000000,0.000000,0.250000,0,0);}
.m19_c01091{transform:matrix(0.259917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259917,0.000000,0.000000,0.250000,0,0);}
.m87_c01091{transform:matrix(0.260321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260321,0.000000,0.000000,0.250000,0,0);}
.m61_c01091{transform:matrix(0.260674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260674,0.000000,0.000000,0.250000,0,0);}
.m80_c01091{transform:matrix(0.261249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261249,0.000000,0.000000,0.250000,0,0);}
.m53_c01091{transform:matrix(0.262208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262208,0.000000,0.000000,0.250000,0,0);}
.m55_c01091{transform:matrix(0.262983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262983,0.000000,0.000000,0.250000,0,0);}
.m9c_c01091{transform:matrix(0.263990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263990,0.000000,0.000000,0.250000,0,0);}
.m71_c01091{transform:matrix(0.265330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265330,0.000000,0.000000,0.250000,0,0);}
.m5d_c01091{transform:matrix(0.265736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265736,0.000000,0.000000,0.250000,0,0);}
.m50_c01091{transform:matrix(0.266712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266712,0.000000,0.000000,0.250000,0,0);}
.m64_c01091{transform:matrix(0.269844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269844,0.000000,0.000000,0.250000,0,0);}
.m75_c01091{transform:matrix(0.269946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269946,0.000000,0.000000,0.250000,0,0);}
.m11_c01091{transform:matrix(0.270282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270282,0.000000,0.000000,0.250000,0,0);}
.m9e_c01091{transform:matrix(0.270359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270359,0.000000,0.000000,0.250000,0,0);}
.ma9_c01091{transform:matrix(0.270677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270677,0.000000,0.000000,0.250000,0,0);}
.m86_c01091{transform:matrix(0.271031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271031,0.000000,0.000000,0.250000,0,0);}
.m45_c01091{transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);}
.m34_c01091{transform:matrix(0.271876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271876,0.000000,0.000000,0.250000,0,0);}
.m14_c01091{transform:matrix(0.272122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272122,0.000000,0.000000,0.250000,0,0);}
.m70_c01091{transform:matrix(0.273064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273064,0.000000,0.000000,0.250000,0,0);}
.m78_c01091{transform:matrix(0.273793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273793,0.000000,0.000000,0.250000,0,0);}
.maf_c01091{transform:matrix(0.275231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275231,0.000000,0.000000,0.250000,0,0);}
.m1e_c01091{transform:matrix(0.275252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275252,0.000000,0.000000,0.250000,0,0);}
.m41_c01091{transform:matrix(0.275739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275739,0.000000,0.000000,0.250000,0,0);}
.m4e_c01091{transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);}
.m28_c01091{transform:matrix(0.276325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276325,0.000000,0.000000,0.250000,0,0);}
.m83_c01091{transform:matrix(0.276411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276411,0.000000,0.000000,0.250000,0,0);}
.m24_c01091{transform:matrix(0.276661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276661,0.000000,0.000000,0.250000,0,0);}
.m2e_c01091{transform:matrix(0.276741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276741,0.000000,0.000000,0.250000,0,0);}
.m36_c01091{transform:matrix(0.277056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277056,0.000000,0.000000,0.250000,0,0);}
.m82_c01091{transform:matrix(0.278477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278477,0.000000,0.000000,0.250000,0,0);}
.m89_c01091{transform:matrix(0.278809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278809,0.000000,0.000000,0.250000,0,0);}
.m42_c01091{transform:matrix(0.279348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279348,0.000000,0.000000,0.250000,0,0);}
.mb2_c01091{transform:matrix(0.279412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279412,0.000000,0.000000,0.250000,0,0);}
.m54_c01091{transform:matrix(0.279578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279578,0.000000,0.000000,0.250000,0,0);}
.m6c_c01091{transform:matrix(0.279610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279610,0.000000,0.000000,0.250000,0,0);}
.ma1_c01091{transform:matrix(0.279784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279784,0.000000,0.000000,0.250000,0,0);}
.mad_c01091{transform:matrix(0.280090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280090,0.000000,0.000000,0.250000,0,0);}
.m9_c01091{transform:matrix(0.280100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280100,0.000000,0.000000,0.250000,0,0);}
.mb1_c01091{transform:matrix(0.280838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280838,0.000000,0.000000,0.250000,0,0);}
.m81_c01091{transform:matrix(0.281059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281059,0.000000,0.000000,0.250000,0,0);}
.m22_c01091{transform:matrix(0.281144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281144,0.000000,0.000000,0.250000,0,0);}
.m23_c01091{transform:matrix(0.281406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281406,0.000000,0.000000,0.250000,0,0);}
.m5f_c01091{transform:matrix(0.282259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282259,0.000000,0.000000,0.250000,0,0);}
.m1b_c01091{transform:matrix(0.282526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282526,0.000000,0.000000,0.250000,0,0);}
.mc_c01091{transform:matrix(0.283137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283137,0.000000,0.000000,0.250000,0,0);}
.m97_c01091{transform:matrix(0.283326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283326,0.000000,0.000000,0.250000,0,0);}
.m1f_c01091{transform:matrix(0.283683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283683,0.000000,0.000000,0.250000,0,0);}
.m3f_c01091{transform:matrix(0.284164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284164,0.000000,0.000000,0.250000,0,0);}
.m6b_c01091{transform:matrix(0.284689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284689,0.000000,0.000000,0.250000,0,0);}
.m65_c01091{transform:matrix(0.284954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284954,0.000000,0.000000,0.250000,0,0);}
.m2d_c01091{transform:matrix(0.285877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285877,0.000000,0.000000,0.250000,0,0);}
.m1d_c01091{transform:matrix(0.286319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286319,0.000000,0.000000,0.250000,0,0);}
.m25_c01091{transform:matrix(0.287070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287070,0.000000,0.000000,0.250000,0,0);}
.m7a_c01091{transform:matrix(0.287170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287170,0.000000,0.000000,0.250000,0,0);}
.m58_c01091{transform:matrix(0.287277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287277,0.000000,0.000000,0.250000,0,0);}
.m5_c01091{transform:matrix(0.287583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287583,0.000000,0.000000,0.250000,0,0);}
.m7e_c01091{transform:matrix(0.288980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288980,0.000000,0.000000,0.250000,0,0);}
.m72_c01091{transform:matrix(0.289952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289952,0.000000,0.000000,0.250000,0,0);}
.m3d_c01091{transform:matrix(0.289976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289976,0.000000,0.000000,0.250000,0,0);}
.m6_c01091{transform:matrix(0.290488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290488,0.000000,0.000000,0.250000,0,0);}
.m91_c01091{transform:matrix(0.292531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292531,0.000000,0.000000,0.250000,0,0);}
.m7_c01091{transform:matrix(0.292969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292969,0.000000,0.000000,0.250000,0,0);}
.m6a_c01091{transform:matrix(0.293428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293428,0.000000,0.000000,0.250000,0,0);}
.mac_c01091{transform:matrix(0.294161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294161,0.000000,0.000000,0.250000,0,0);}
.m43_c01091{transform:matrix(0.294336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294336,0.000000,0.000000,0.250000,0,0);}
.ma5_c01091{transform:matrix(0.294419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294419,0.000000,0.000000,0.250000,0,0);}
.m10_c01091{transform:matrix(0.294560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294560,0.000000,0.000000,0.250000,0,0);}
.m84_c01091{transform:matrix(0.294759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294759,0.000000,0.000000,0.250000,0,0);}
.m26_c01091{transform:matrix(0.295448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295448,0.000000,0.000000,0.250000,0,0);}
.m60_c01091{transform:matrix(0.296261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296261,0.000000,0.000000,0.250000,0,0);}
.m44_c01091{transform:matrix(0.296294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296294,0.000000,0.000000,0.250000,0,0);}
.m4c_c01091{transform:matrix(0.296755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296755,0.000000,0.000000,0.250000,0,0);}
.m5a_c01091{transform:matrix(0.297547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297547,0.000000,0.000000,0.250000,0,0);}
.m90_c01091{transform:matrix(0.298938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298938,0.000000,0.000000,0.250000,0,0);}
.m85_c01091{transform:matrix(0.299553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299553,0.000000,0.000000,0.250000,0,0);}
.m47_c01091{transform:matrix(0.299655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299655,0.000000,0.000000,0.250000,0,0);}
.me_c01091{transform:matrix(0.299974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299974,0.000000,0.000000,0.250000,0,0);}
.m9d_c01091{transform:matrix(0.300129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300129,0.000000,0.000000,0.250000,0,0);}
.m5c_c01091{transform:matrix(0.300573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300573,0.000000,0.000000,0.250000,0,0);}
.mb0_c01091{transform:matrix(0.300918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300918,0.000000,0.000000,0.250000,0,0);}
.m6d_c01091{transform:matrix(0.301059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301059,0.000000,0.000000,0.250000,0,0);}
.m27_c01091{transform:matrix(0.302376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302376,0.000000,0.000000,0.250000,0,0);}
.m8d_c01091{transform:matrix(0.302844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302844,0.000000,0.000000,0.250000,0,0);}
.m9f_c01091{transform:matrix(0.303409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303409,0.000000,0.000000,0.250000,0,0);}
.m77_c01091{transform:matrix(0.304978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304978,0.000000,0.000000,0.250000,0,0);}
.md_c01091{transform:matrix(0.306390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306390,0.000000,0.000000,0.250000,0,0);}
.m68_c01091{transform:matrix(0.306564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306564,0.000000,0.000000,0.250000,0,0);}
.ma4_c01091{transform:matrix(0.306740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306740,0.000000,0.000000,0.250000,0,0);}
.m8e_c01091{transform:matrix(0.306785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306785,0.000000,0.000000,0.250000,0,0);}
.m4_c01091{transform:matrix(0.308098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308098,0.000000,0.000000,0.250000,0,0);}
.m66_c01091{transform:matrix(0.309476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309476,0.000000,0.000000,0.250000,0,0);}
.m9b_c01091{transform:matrix(0.309936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309936,0.000000,0.000000,0.250000,0,0);}
.m69_c01091{transform:matrix(0.310348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310348,0.000000,0.000000,0.250000,0,0);}
.m21_c01091{transform:matrix(0.310384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310384,0.000000,0.000000,0.250000,0,0);}
.m46_c01091{transform:matrix(0.311568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311568,0.000000,0.000000,0.250000,0,0);}
.m48_c01091{transform:matrix(0.312183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312183,0.000000,0.000000,0.250000,0,0);}
.m76_c01091{transform:matrix(0.313542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313542,0.000000,0.000000,0.250000,0,0);}
.m8f_c01091{transform:matrix(0.313774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313774,0.000000,0.000000,0.250000,0,0);}
.m7b_c01091{transform:matrix(0.313807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313807,0.000000,0.000000,0.250000,0,0);}
.ma3_c01091{transform:matrix(0.315278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315278,0.000000,0.000000,0.250000,0,0);}
.m16_c01091{transform:matrix(0.316812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316812,0.000000,0.000000,0.250000,0,0);}
.m79_c01091{transform:matrix(0.317899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317899,0.000000,0.000000,0.250000,0,0);}
.m13_c01091{transform:matrix(0.318086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318086,0.000000,0.000000,0.250000,0,0);}
.m56_c01091{transform:matrix(0.320390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320390,0.000000,0.000000,0.250000,0,0);}
.m4b_c01091{transform:matrix(0.321208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321208,0.000000,0.000000,0.250000,0,0);}
.m2_c01091{transform:matrix(0.321976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321976,0.000000,0.000000,0.250000,0,0);}
.m6e_c01091{transform:matrix(0.323415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323415,0.000000,0.000000,0.250000,0,0);}
.m3c_c01091{transform:matrix(0.324360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324360,0.000000,0.000000,0.250000,0,0);}
.m4d_c01091{transform:matrix(0.325075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325075,0.000000,0.000000,0.250000,0,0);}
.m2c_c01091{transform:matrix(0.325166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325166,0.000000,0.000000,0.250000,0,0);}
.ma6_c01091{transform:matrix(0.325867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325867,0.000000,0.000000,0.250000,0,0);}
.m37_c01091{transform:matrix(0.326031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326031,0.000000,0.000000,0.250000,0,0);}
.m2b_c01091{transform:matrix(0.326572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326572,0.000000,0.000000,0.250000,0,0);}
.m49_c01091{transform:matrix(0.327359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327359,0.000000,0.000000,0.250000,0,0);}
.m8b_c01091{transform:matrix(0.329788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329788,0.000000,0.000000,0.250000,0,0);}
.ma_c01091{transform:matrix(0.331537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331537,0.000000,0.000000,0.250000,0,0);}
.m18_c01091{transform:matrix(0.332640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332640,0.000000,0.000000,0.250000,0,0);}
.m7c_c01091{transform:matrix(0.332743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332743,0.000000,0.000000,0.250000,0,0);}
.mae_c01091{transform:matrix(0.335351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335351,0.000000,0.000000,0.250000,0,0);}
.m51_c01091{transform:matrix(0.336289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336289,0.000000,0.000000,0.250000,0,0);}
.m74_c01091{transform:matrix(0.339014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339014,0.000000,0.000000,0.250000,0,0);}
.m40_c01091{transform:matrix(0.341044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341044,0.000000,0.000000,0.250000,0,0);}
.m4f_c01091{transform:matrix(0.342201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342201,0.000000,0.000000,0.250000,0,0);}
.ma2_c01091{transform:matrix(0.343636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343636,0.000000,0.000000,0.250000,0,0);}
.m63_c01091{transform:matrix(0.344553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344553,0.000000,0.000000,0.250000,0,0);}
.m4a_c01091{transform:matrix(0.345802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345802,0.000000,0.000000,0.250000,0,0);}
.m33_c01091{transform:matrix(0.346192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346192,0.000000,0.000000,0.250000,0,0);}
.m3e_c01091{transform:matrix(0.353568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353568,0.000000,0.000000,0.250000,0,0);}
.m5e_c01091{transform:matrix(0.354164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354164,0.000000,0.000000,0.250000,0,0);}
.m39_c01091{transform:matrix(0.354168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354168,0.000000,0.000000,0.250000,0,0);}
.m3b_c01091{transform:matrix(0.354198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354198,0.000000,0.000000,0.250000,0,0);}
.m7f_c01091{transform:matrix(0.362380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362380,0.000000,0.000000,0.250000,0,0);}
.maa_c01091{transform:matrix(0.363749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363749,0.000000,0.000000,0.250000,0,0);}
.m1c_c01091{transform:matrix(0.365654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365654,0.000000,0.000000,0.250000,0,0);}
.m57_c01091{transform:matrix(0.367179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367179,0.000000,0.000000,0.250000,0,0);}
.m2a_c01091{transform:matrix(0.367620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367620,0.000000,0.000000,0.250000,0,0);}
.m8_c01091{transform:matrix(0.367640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367640,0.000000,0.000000,0.250000,0,0);}
.m92_c01091{transform:matrix(0.367913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367913,0.000000,0.000000,0.250000,0,0);}
.m29_c01091{transform:matrix(0.372936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372936,0.000000,0.000000,0.250000,0,0);}
.mab_c01091{transform:matrix(0.376047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376047,0.000000,0.000000,0.250000,0,0);}
.m38_c01091{transform:matrix(0.397481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397481,0.000000,0.000000,0.250000,0,0);}
.m12_c01091{transform:matrix(0.401809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401809,0.000000,0.000000,0.250000,0,0);}
.m3a_c01091{transform:matrix(0.403692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403692,0.000000,0.000000,0.250000,0,0);}
.m88_c01091{transform:matrix(0.403941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403941,0.000000,0.000000,0.250000,0,0);}
.mf_c01091{transform:matrix(0.409902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409902,0.000000,0.000000,0.250000,0,0);}
.m20_c01091{transform:matrix(0.414486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414486,0.000000,0.000000,0.250000,0,0);}
.m30_c01091{transform:matrix(0.489024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489024,0.000000,0.000000,0.250000,0,0);}
.v0_c01091{vertical-align:0.000000px;}
.ls2b_c01091{letter-spacing:-3.229380px;}
.ls15_c01091{letter-spacing:-2.862090px;}
.lsb_c01091{letter-spacing:-2.827440px;}
.ls19_c01091{letter-spacing:-2.661127px;}
.ls13_c01091{letter-spacing:-2.543317px;}
.ls23_c01091{letter-spacing:-2.404717px;}
.ls30_c01091{letter-spacing:-2.383927px;}
.ls10_c01091{letter-spacing:-2.376990px;}
.ls22_c01091{letter-spacing:-1.971451px;}
.ls1c_c01091{letter-spacing:-1.619486px;}
.ls26_c01091{letter-spacing:-1.434517px;}
.ls7_c01091{letter-spacing:-1.414199px;}
.lsd_c01091{letter-spacing:-1.277341px;}
.ls28_c01091{letter-spacing:-1.015822px;}
.ls2f_c01091{letter-spacing:-0.817346px;}
.ls16_c01091{letter-spacing:-0.045619px;}
.ls1_c01091{letter-spacing:0.000000px;}
.ls24_c01091{letter-spacing:0.831345px;}
.ls18_c01091{letter-spacing:0.958006px;}
.ls0_c01091{letter-spacing:1.238688px;}
.ls32_c01091{letter-spacing:1.650373px;}
.ls29_c01091{letter-spacing:1.872134px;}
.ls8_c01091{letter-spacing:1.877995px;}
.ls21_c01091{letter-spacing:1.940400px;}
.ls2d_c01091{letter-spacing:2.699532px;}
.ls14_c01091{letter-spacing:2.702700px;}
.ls20_c01091{letter-spacing:2.989810px;}
.ls1d_c01091{letter-spacing:3.009600px;}
.ls1f_c01091{letter-spacing:3.079304px;}
.ls1b_c01091{letter-spacing:3.108600px;}
.ls31_c01091{letter-spacing:3.150576px;}
.ls17_c01091{letter-spacing:3.296700px;}
.ls11_c01091{letter-spacing:3.395700px;}
.ls2e_c01091{letter-spacing:3.405610px;}
.ls4_c01091{letter-spacing:3.435310px;}
.lsa_c01091{letter-spacing:3.564000px;}
.ls5_c01091{letter-spacing:3.643200px;}
.ls9_c01091{letter-spacing:3.672900px;}
.ls2a_c01091{letter-spacing:3.682810px;}
.lsf_c01091{letter-spacing:3.702610px;}
.ls2c_c01091{letter-spacing:3.742200px;}
.ls3_c01091{letter-spacing:3.801610px;}
.ls1a_c01091{letter-spacing:3.880810px;}
.lsc_c01091{letter-spacing:4.088700px;}
.ls2_c01091{letter-spacing:4.197610px;}
.ls12_c01091{letter-spacing:39.916800px;}
.ls1e_c01091{letter-spacing:54.172998px;}
.ls6_c01091{letter-spacing:57.024198px;}
.lse_c01091{letter-spacing:59.875398px;}
.ls27_c01091{letter-spacing:61.300998px;}
.ls25_c01091{letter-spacing:67.003200px;}
.sc__c01091{text-shadow:none;}
.sc0_c01091{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01091{-webkit-text-stroke:0px transparent;}
.sc0_c01091{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01091{word-spacing:-18.935191px;}
.ws1_c01091{word-spacing:0.000000px;}
._3_c01091{margin-left:-11.646811px;}
._1_c01091{width:7.469946px;}
._2_c01091{width:24.976659px;}
._0_c01091{width:124.339248px;}
.fc0_c01091{color:transparent;}
.fs23_c01091{font-size:22.176000px;}
.fs24_c01091{font-size:27.720000px;}
.fs0_c01091{font-size:33.660000px;}
.fs18_c01091{font-size:37.818000px;}
.fs1a_c01091{font-size:38.808000px;}
.fse_c01091{font-size:39.916800px;}
.fs1c_c01091{font-size:40.986198px;}
.fs10_c01091{font-size:54.054000px;}
.fs17_c01091{font-size:54.172998px;}
.fs5_c01091{font-size:57.024198px;}
.fs19_c01091{font-size:59.796198px;}
.fsa_c01091{font-size:59.875398px;}
.fs15_c01091{font-size:60.192000px;}
.fs1d_c01091{font-size:61.300998px;}
.fs14_c01091{font-size:62.172000px;}
.fs11_c01091{font-size:65.934000px;}
.fs16_c01091{font-size:66.330000px;}
.fs1b_c01091{font-size:67.003200px;}
.fsd_c01091{font-size:67.914000px;}
.fs21_c01091{font-size:68.112198px;}
.fs3_c01091{font-size:68.706198px;}
.fs13_c01091{font-size:69.300000px;}
.fs7_c01091{font-size:71.280000px;}
.fsf_c01091{font-size:72.666198px;}
.fs4_c01091{font-size:72.864000px;}
.fs6_c01091{font-size:73.458000px;}
.fs1e_c01091{font-size:73.656198px;}
.fsc_c01091{font-size:74.052198px;}
.fsb_c01091{font-size:74.844000px;}
.fs2_c01091{font-size:76.032198px;}
.fs12_c01091{font-size:77.616198px;}
.fs20_c01091{font-size:79.398000px;}
.fs8_c01091{font-size:80.784000px;}
.fs9_c01091{font-size:81.774000px;}
.fs1_c01091{font-size:83.952198px;}
.fs1f_c01091{font-size:92.268000px;}
.fs22_c01091{font-size:109.296198px;}
.y0_c01091{bottom:0.000000px;}
.y1_c01091{bottom:76.500000px;}
.y1f_c01091{bottom:105.044985px;}
.y1e_c01091{bottom:130.354335px;}
.y1d_c01091{bottom:162.430335px;}
.y1c_c01091{bottom:229.433535px;}
.y1b_c01091{bottom:261.148185px;}
.y1a_c01091{bottom:294.298335px;}
.y19_c01091{bottom:324.943785px;}
.y18_c01091{bottom:357.732585px;}
.y17_c01091{bottom:389.457135px;}
.y16_c01091{bottom:421.889535px;}
.y15_c01091{bottom:453.252735px;}
.y14_c01091{bottom:484.972335px;}
.y13_c01091{bottom:517.043385px;}
.y12_c01091{bottom:581.556735px;}
.y11_c01091{bottom:613.271385px;}
.y10_c01091{bottom:644.995935px;}
.yf_c01091{bottom:676.715535px;}
.ye_c01091{bottom:702.014985px;}
.ya_c01091{bottom:708.791535px;}
.yd_c01091{bottom:709.147935px;}
.yc_c01091{bottom:740.154735px;}
.y9_c01091{bottom:740.511135px;}
.y8_c01091{bottom:772.943535px;}
.yb_c01091{bottom:776.151135px;}
.y7_c01091{bottom:804.306735px;}
.y2_c01091{bottom:859.192335px;}
.y6_c01091{bottom:867.745935px;}
.y5_c01091{bottom:900.173385px;}
.y4_c01091{bottom:932.254335px;}
.y20_c01091{bottom:1025.982585px;}
.y3_c01091{bottom:1064.117385px;}
.h27_c01091{height:23.128875px;}
.h11_c01091{height:26.584589px;}
.h28_c01091{height:28.911094px;}
.h2_c01091{height:33.035449px;}
.h1b_c01091{height:36.079217px;}
.h1c_c01091{height:37.116299px;}
.h7_c01091{height:37.978116px;}
.hd_c01091{height:39.877015px;}
.h20_c01091{height:40.225712px;}
.h1e_c01091{height:40.475531px;}
.h21_c01091{height:40.826465px;}
.h1f_c01091{height:44.624131px;}
.h13_c01091{height:53.051045px;}
.h1d_c01091{height:58.686698px;}
.h19_c01091{height:59.075156px;}
.h18_c01091{height:61.018418px;}
.h15_c01091{height:68.767102px;}
.h1a_c01091{height:69.180117px;}
.h10_c01091{height:70.832180px;}
.h25_c01091{height:71.038894px;}
.h6_c01091{height:71.512031px;}
.h5_c01091{height:71.658417px;}
.h8_c01091{height:72.095010px;}
.h17_c01091{height:72.277734px;}
.h22_c01091{height:72.289530px;}
.hf_c01091{height:72.678183px;}
.he_c01091{height:73.455293px;}
.h9_c01091{height:74.342813px;}
.h4_c01091{height:74.621444px;}
.h12_c01091{height:75.788574px;}
.hc_c01091{height:75.994875px;}
.h16_c01091{height:76.176054px;}
.h24_c01091{height:77.924795px;}
.h14_c01091{height:79.299207px;}
.hb_c01091{height:80.256709px;}
.h3_c01091{height:82.394491px;}
.ha_c01091{height:84.255188px;}
.h23_c01091{height:90.510943px;}
.h26_c01091{height:107.268241px;}
.h1_c01091{height:1110.000000px;}
.h0_c01091{height:1263.000000px;}
.w1_c01091{width:775.500000px;}
.w0_c01091{width:892.500000px;}
.x0_c01091{left:0.000000px;}
.x2_c01091{left:49.036335px;}
.x1_c01091{left:58.500000px;}
.x77_c01091{left:65.900985px;}
.x49_c01091{left:68.177985px;}
.x1b_c01091{left:70.336185px;}
.x83_c01091{left:94.348635px;}
.x78_c01091{left:121.400385px;}
.x60_c01091{left:123.038835px;}
.x26_c01091{left:124.122885px;}
.x4_c01091{left:125.469285px;}
.x40_c01091{left:156.575085px;}
.x69_c01091{left:165.673185px;}
.x4f_c01091{left:166.702785px;}
.x17_c01091{left:169.202535px;}
.xe_c01091{left:170.365785px;}
.x61_c01091{left:178.315485px;}
.x20_c01091{left:180.607335px;}
.x4a_c01091{left:188.423385px;}
.x54_c01091{left:189.517335px;}
.x1c_c01091{left:191.378535px;}
.x5_c01091{left:202.021035px;}
.x76_c01091{left:210.871635px;}
.x18_c01091{left:212.727885px;}
.x21_c01091{left:213.886185px;}
.x55_c01091{left:222.330885px;}
.x65_c01091{left:233.928735px;}
.x2a_c01091{left:234.963285px;}
.x19_c01091{left:236.972985px;}
.x71_c01091{left:243.764385px;}
.x38_c01091{left:246.288885px;}
.x6_c01091{left:247.452135px;}
.x79_c01091{left:253.337685px;}
.x5c_c01091{left:256.678935px;}
.x6a_c01091{left:258.356985px;}
.x66_c01091{left:265.692885px;}
.x4b_c01091{left:267.757035px;}
.x56_c01091{left:270.068685px;}
.xf_c01091{left:280.062735px;}
.x1a_c01091{left:282.280335px;}
.x41_c01091{left:289.710285px;}
.x50_c01091{left:301.283385px;}
.x7_c01091{left:303.783135px;}
.x42_c01091{left:311.797185px;}
.x72_c01091{left:321.697185px;}
.x27_c01091{left:325.048335px;}
.x7a_c01091{left:332.998035px;}
.x3d_c01091{left:335.482935px;}
.x8_c01091{left:337.532235px;}
.x2b_c01091{left:345.665085px;}
.x62_c01091{left:355.614585px;}
.x22_c01091{left:356.738235px;}
.x10_c01091{left:359.391435px;}
.x45_c01091{left:367.207485px;}
.x2c_c01091{left:368.642985px;}
.x6e_c01091{left:376.404585px;}
.x6f_c01091{left:378.760785px;}
.x11_c01091{left:379.988385px;}
.x28_c01091{left:392.412885px;}
.x46_c01091{left:400.902135px;}
.x23_c01091{left:402.510885px;}
.x1d_c01091{left:411.589185px;}
.x12_c01091{left:413.009835px;}
.x6b_c01091{left:421.400085px;}
.x29_c01091{left:424.553235px;}
.x81_c01091{left:432.804885px;}
.x24_c01091{left:434.878935px;}
.x9_c01091{left:436.601535px;}
.x51_c01091{left:444.734385px;}
.x4c_c01091{left:446.951985px;}
.x63_c01091{left:456.045135px;}
.x57_c01091{left:457.401435px;}
.x2d_c01091{left:458.668635px;}
.x6c_c01091{left:466.494585px;}
.x1e_c01091{left:467.910285px;}
.x7b_c01091{left:476.627235px;}
.x43_c01091{left:478.399335px;}
.x47_c01091{left:479.419035px;}
.xa_c01091{left:480.849585px;}
.x1f_c01091{left:489.284385px;}
.x2e_c01091{left:500.723835px;}
.x73_c01091{left:510.554535px;}
.x67_c01091{left:513.108735px;}
.xb_c01091{left:514.757085px;}
.x39_c01091{left:524.998635px;}
.x7c_c01091{left:531.988035px;}
.x52_c01091{left:533.453235px;}
.x25_c01091{left:535.037235px;}
.x4d_c01091{left:544.813485px;}
.x68_c01091{left:546.719235px;}
.x3a_c01091{left:555.965835px;}
.x44_c01091{left:557.193435px;}
.xc_c01091{left:568.405185px;}
.x6d_c01091{left:571.652385px;}
.x2f_c01091{left:578.864535px;}
.x48_c01091{left:579.938685px;}
.x32_c01091{left:582.705735px;}
.x35_c01091{left:589.066485px;}
.x33_c01091{left:591.645435px;}
.x5d_c01091{left:599.332785px;}
.x53_c01091{left:600.649485px;}
.xd_c01091{left:601.951335px;}
.x13_c01091{left:603.485835px;}
.x7d_c01091{left:607.995285px;}
.x64_c01091{left:610.544535px;}
.x3e_c01091{left:611.722635px;}
.x74_c01091{left:620.211885px;}
.x34_c01091{left:622.256235px;}
.x70_c01091{left:630.938535px;}
.x7e_c01091{left:632.398785px;}
.x4e_c01091{left:635.408385px;}
.x82_c01091{left:642.957135px;}
.x3f_c01091{left:643.986735px;}
.x3b_c01091{left:645.545985px;}
.x30_c01091{left:648.911985px;}
.x58_c01091{left:654.307485px;}
.x36_c01091{left:656.500335px;}
.x7f_c01091{left:664.593585px;}
.x14_c01091{left:668.365485px;}
.x3c_c01091{left:677.988285px;}
.x5e_c01091{left:687.437835px;}
.x59_c01091{left:688.477335px;}
.x3_c01091{left:693.640185px;}
.x31_c01091{left:698.664435px;}
.x15_c01091{left:700.609785px;}
.x75_c01091{left:708.049635px;}
.x37_c01091{left:711.450285px;}
.x80_c01091{left:720.399885px;}
.x5a_c01091{left:722.013585px;}
.x5f_c01091{left:730.527585px;}
.x16_c01091{left:734.655885px;}
.x5b_c01091{left:743.392635px;}
.x84_c01091{left:768.632685px;}
@media print{
.v0_c01091{vertical-align:0.000000pt;}
.ls2b_c01091{letter-spacing:-2.870560pt;}
.ls15_c01091{letter-spacing:-2.544080pt;}
.lsb_c01091{letter-spacing:-2.513280pt;}
.ls19_c01091{letter-spacing:-2.365446pt;}
.ls13_c01091{letter-spacing:-2.260726pt;}
.ls23_c01091{letter-spacing:-2.137526pt;}
.ls30_c01091{letter-spacing:-2.119046pt;}
.ls10_c01091{letter-spacing:-2.112880pt;}
.ls22_c01091{letter-spacing:-1.752401pt;}
.ls1c_c01091{letter-spacing:-1.439543pt;}
.ls26_c01091{letter-spacing:-1.275126pt;}
.ls7_c01091{letter-spacing:-1.257066pt;}
.lsd_c01091{letter-spacing:-1.135414pt;}
.ls28_c01091{letter-spacing:-0.902953pt;}
.ls2f_c01091{letter-spacing:-0.726530pt;}
.ls16_c01091{letter-spacing:-0.040551pt;}
.ls1_c01091{letter-spacing:0.000000pt;}
.ls24_c01091{letter-spacing:0.738973pt;}
.ls18_c01091{letter-spacing:0.851561pt;}
.ls0_c01091{letter-spacing:1.101056pt;}
.ls32_c01091{letter-spacing:1.466998pt;}
.ls29_c01091{letter-spacing:1.664119pt;}
.ls8_c01091{letter-spacing:1.669329pt;}
.ls21_c01091{letter-spacing:1.724800pt;}
.ls2d_c01091{letter-spacing:2.399584pt;}
.ls14_c01091{letter-spacing:2.402400pt;}
.ls20_c01091{letter-spacing:2.657609pt;}
.ls1d_c01091{letter-spacing:2.675200pt;}
.ls1f_c01091{letter-spacing:2.737159pt;}
.ls1b_c01091{letter-spacing:2.763200pt;}
.ls31_c01091{letter-spacing:2.800512pt;}
.ls17_c01091{letter-spacing:2.930400pt;}
.ls11_c01091{letter-spacing:3.018400pt;}
.ls2e_c01091{letter-spacing:3.027209pt;}
.ls4_c01091{letter-spacing:3.053609pt;}
.lsa_c01091{letter-spacing:3.168000pt;}
.ls5_c01091{letter-spacing:3.238400pt;}
.ls9_c01091{letter-spacing:3.264800pt;}
.ls2a_c01091{letter-spacing:3.273609pt;}
.lsf_c01091{letter-spacing:3.291209pt;}
.ls2c_c01091{letter-spacing:3.326400pt;}
.ls3_c01091{letter-spacing:3.379209pt;}
.ls1a_c01091{letter-spacing:3.449609pt;}
.lsc_c01091{letter-spacing:3.634400pt;}
.ls2_c01091{letter-spacing:3.731209pt;}
.ls12_c01091{letter-spacing:35.481600pt;}
.ls1e_c01091{letter-spacing:48.153776pt;}
.ls6_c01091{letter-spacing:50.688176pt;}
.lse_c01091{letter-spacing:53.222576pt;}
.ls27_c01091{letter-spacing:54.489776pt;}
.ls25_c01091{letter-spacing:59.558400pt;}
.ws0_c01091{word-spacing:-16.831281pt;}
.ws1_c01091{word-spacing:0.000000pt;}
._3_c01091{margin-left:-10.352721pt;}
._1_c01091{width:6.639952pt;}
._2_c01091{width:22.201475pt;}
._0_c01091{width:110.523776pt;}
.fs23_c01091{font-size:19.712000pt;}
.fs24_c01091{font-size:24.640000pt;}
.fs0_c01091{font-size:29.920000pt;}
.fs18_c01091{font-size:33.616000pt;}
.fs1a_c01091{font-size:34.496000pt;}
.fse_c01091{font-size:35.481600pt;}
.fs1c_c01091{font-size:36.432176pt;}
.fs10_c01091{font-size:48.048000pt;}
.fs17_c01091{font-size:48.153776pt;}
.fs5_c01091{font-size:50.688176pt;}
.fs19_c01091{font-size:53.152176pt;}
.fsa_c01091{font-size:53.222576pt;}
.fs15_c01091{font-size:53.504000pt;}
.fs1d_c01091{font-size:54.489776pt;}
.fs14_c01091{font-size:55.264000pt;}
.fs11_c01091{font-size:58.608000pt;}
.fs16_c01091{font-size:58.960000pt;}
.fs1b_c01091{font-size:59.558400pt;}
.fsd_c01091{font-size:60.368000pt;}
.fs21_c01091{font-size:60.544176pt;}
.fs3_c01091{font-size:61.072176pt;}
.fs13_c01091{font-size:61.600000pt;}
.fs7_c01091{font-size:63.360000pt;}
.fsf_c01091{font-size:64.592176pt;}
.fs4_c01091{font-size:64.768000pt;}
.fs6_c01091{font-size:65.296000pt;}
.fs1e_c01091{font-size:65.472176pt;}
.fsc_c01091{font-size:65.824176pt;}
.fsb_c01091{font-size:66.528000pt;}
.fs2_c01091{font-size:67.584176pt;}
.fs12_c01091{font-size:68.992176pt;}
.fs20_c01091{font-size:70.576000pt;}
.fs8_c01091{font-size:71.808000pt;}
.fs9_c01091{font-size:72.688000pt;}
.fs1_c01091{font-size:74.624176pt;}
.fs1f_c01091{font-size:82.016000pt;}
.fs22_c01091{font-size:97.152176pt;}
.y0_c01091{bottom:0.000000pt;}
.y1_c01091{bottom:68.000000pt;}
.y1f_c01091{bottom:93.373320pt;}
.y1e_c01091{bottom:115.870520pt;}
.y1d_c01091{bottom:144.382520pt;}
.y1c_c01091{bottom:203.940920pt;}
.y1b_c01091{bottom:232.131720pt;}
.y1a_c01091{bottom:261.598520pt;}
.y19_c01091{bottom:288.838920pt;}
.y18_c01091{bottom:317.984520pt;}
.y17_c01091{bottom:346.184120pt;}
.y16_c01091{bottom:375.012920pt;}
.y15_c01091{bottom:402.891320pt;}
.y14_c01091{bottom:431.086520pt;}
.y13_c01091{bottom:459.594120pt;}
.y12_c01091{bottom:516.939320pt;}
.y11_c01091{bottom:545.130120pt;}
.y10_c01091{bottom:573.329720pt;}
.yf_c01091{bottom:601.524920pt;}
.ye_c01091{bottom:624.013320pt;}
.ya_c01091{bottom:630.036920pt;}
.yd_c01091{bottom:630.353720pt;}
.yc_c01091{bottom:657.915320pt;}
.y9_c01091{bottom:658.232120pt;}
.y8_c01091{bottom:687.060920pt;}
.yb_c01091{bottom:689.912120pt;}
.y7_c01091{bottom:714.939320pt;}
.y2_c01091{bottom:763.726520pt;}
.y6_c01091{bottom:771.329720pt;}
.y5_c01091{bottom:800.154120pt;}
.y4_c01091{bottom:828.670520pt;}
.y20_c01091{bottom:911.984520pt;}
.y3_c01091{bottom:945.882120pt;}
.h27_c01091{height:20.559000pt;}
.h11_c01091{height:23.630746pt;}
.h28_c01091{height:25.698750pt;}
.h2_c01091{height:29.364844pt;}
.h1b_c01091{height:32.070415pt;}
.h1c_c01091{height:32.992266pt;}
.h7_c01091{height:33.758325pt;}
.hd_c01091{height:35.446236pt;}
.h20_c01091{height:35.756188pt;}
.h1e_c01091{height:35.978250pt;}
.h21_c01091{height:36.290191pt;}
.h1f_c01091{height:39.665894pt;}
.h13_c01091{height:47.156484pt;}
.h1d_c01091{height:52.165954pt;}
.h19_c01091{height:52.511250pt;}
.h18_c01091{height:54.238594pt;}
.h15_c01091{height:61.126313pt;}
.h1a_c01091{height:61.493438pt;}
.h10_c01091{height:62.961938pt;}
.h25_c01091{height:63.145684pt;}
.h6_c01091{height:63.566250pt;}
.h5_c01091{height:63.696371pt;}
.h8_c01091{height:64.084453pt;}
.h17_c01091{height:64.246875pt;}
.h22_c01091{height:64.257360pt;}
.hf_c01091{height:64.602829pt;}
.he_c01091{height:65.293594pt;}
.h9_c01091{height:66.082500pt;}
.h4_c01091{height:66.330173pt;}
.h12_c01091{height:67.367621pt;}
.hc_c01091{height:67.551000pt;}
.h16_c01091{height:67.712048pt;}
.h24_c01091{height:69.266484pt;}
.h14_c01091{height:70.488184pt;}
.hb_c01091{height:71.339297pt;}
.h3_c01091{height:73.239548pt;}
.ha_c01091{height:74.893500pt;}
.h23_c01091{height:80.454172pt;}
.h26_c01091{height:95.349548pt;}
.h1_c01091{height:986.666667pt;}
.h0_c01091{height:1122.666667pt;}
.w1_c01091{width:689.333333pt;}
.w0_c01091{width:793.333333pt;}
.x0_c01091{left:0.000000pt;}
.x2_c01091{left:43.587853pt;}
.x1_c01091{left:52.000000pt;}
.x77_c01091{left:58.578653pt;}
.x49_c01091{left:60.602653pt;}
.x1b_c01091{left:62.521053pt;}
.x83_c01091{left:83.865453pt;}
.x78_c01091{left:107.911453pt;}
.x60_c01091{left:109.367853pt;}
.x26_c01091{left:110.331453pt;}
.x4_c01091{left:111.528253pt;}
.x40_c01091{left:139.177853pt;}
.x69_c01091{left:147.265053pt;}
.x4f_c01091{left:148.180253pt;}
.x17_c01091{left:150.402253pt;}
.xe_c01091{left:151.436253pt;}
.x61_c01091{left:158.502653pt;}
.x20_c01091{left:160.539853pt;}
.x4a_c01091{left:167.487453pt;}
.x54_c01091{left:168.459853pt;}
.x1c_c01091{left:170.114253pt;}
.x5_c01091{left:179.574253pt;}
.x76_c01091{left:187.441453pt;}
.x18_c01091{left:189.091453pt;}
.x21_c01091{left:190.121053pt;}
.x55_c01091{left:197.627453pt;}
.x65_c01091{left:207.936653pt;}
.x2a_c01091{left:208.856253pt;}
.x19_c01091{left:210.642653pt;}
.x71_c01091{left:216.679453pt;}
.x38_c01091{left:218.923453pt;}
.x6_c01091{left:219.957453pt;}
.x79_c01091{left:225.189053pt;}
.x5c_c01091{left:228.159053pt;}
.x6a_c01091{left:229.650653pt;}
.x66_c01091{left:236.171453pt;}
.x4b_c01091{left:238.006253pt;}
.x56_c01091{left:240.061053pt;}
.xf_c01091{left:248.944653pt;}
.x1a_c01091{left:250.915853pt;}
.x41_c01091{left:257.520253pt;}
.x50_c01091{left:267.807453pt;}
.x7_c01091{left:270.029453pt;}
.x42_c01091{left:277.153053pt;}
.x72_c01091{left:285.953053pt;}
.x27_c01091{left:288.931853pt;}
.x7a_c01091{left:295.998253pt;}
.x3d_c01091{left:298.207053pt;}
.x8_c01091{left:300.028653pt;}
.x2b_c01091{left:307.257853pt;}
.x62_c01091{left:316.101853pt;}
.x22_c01091{left:317.100653pt;}
.x10_c01091{left:319.459053pt;}
.x45_c01091{left:326.406653pt;}
.x2c_c01091{left:327.682653pt;}
.x6e_c01091{left:334.581853pt;}
.x6f_c01091{left:336.676253pt;}
.x11_c01091{left:337.767453pt;}
.x28_c01091{left:348.811453pt;}
.x46_c01091{left:356.357453pt;}
.x23_c01091{left:357.787453pt;}
.x1d_c01091{left:365.857053pt;}
.x12_c01091{left:367.119853pt;}
.x6b_c01091{left:374.577853pt;}
.x29_c01091{left:377.380653pt;}
.x81_c01091{left:384.715453pt;}
.x24_c01091{left:386.559053pt;}
.x9_c01091{left:388.090253pt;}
.x51_c01091{left:395.319453pt;}
.x4c_c01091{left:397.290653pt;}
.x63_c01091{left:405.373453pt;}
.x57_c01091{left:406.579053pt;}
.x2d_c01091{left:407.705453pt;}
.x6c_c01091{left:414.661853pt;}
.x1e_c01091{left:415.920253pt;}
.x7b_c01091{left:423.668653pt;}
.x43_c01091{left:425.243853pt;}
.x47_c01091{left:426.150253pt;}
.xa_c01091{left:427.421853pt;}
.x1f_c01091{left:434.919453pt;}
.x2e_c01091{left:445.087853pt;}
.x73_c01091{left:453.826253pt;}
.x67_c01091{left:456.096653pt;}
.xb_c01091{left:457.561853pt;}
.x39_c01091{left:466.665453pt;}
.x7c_c01091{left:472.878253pt;}
.x52_c01091{left:474.180653pt;}
.x25_c01091{left:475.588653pt;}
.x4d_c01091{left:484.278653pt;}
.x68_c01091{left:485.972653pt;}
.x3a_c01091{left:494.191853pt;}
.x44_c01091{left:495.283053pt;}
.xc_c01091{left:505.249053pt;}
.x6d_c01091{left:508.135453pt;}
.x2f_c01091{left:514.546253pt;}
.x48_c01091{left:515.501053pt;}
.x32_c01091{left:517.960653pt;}
.x35_c01091{left:523.614653pt;}
.x33_c01091{left:525.907053pt;}
.x5d_c01091{left:532.740253pt;}
.x53_c01091{left:533.910653pt;}
.xd_c01091{left:535.067853pt;}
.x13_c01091{left:536.431853pt;}
.x7d_c01091{left:540.440253pt;}
.x64_c01091{left:542.706253pt;}
.x3e_c01091{left:543.753453pt;}
.x74_c01091{left:551.299453pt;}
.x34_c01091{left:553.116653pt;}
.x70_c01091{left:560.834253pt;}
.x7e_c01091{left:562.132253pt;}
.x4e_c01091{left:564.807453pt;}
.x82_c01091{left:571.517453pt;}
.x3f_c01091{left:572.432653pt;}
.x3b_c01091{left:573.818653pt;}
.x30_c01091{left:576.810653pt;}
.x58_c01091{left:581.606653pt;}
.x36_c01091{left:583.555853pt;}
.x7f_c01091{left:590.749853pt;}
.x14_c01091{left:594.102653pt;}
.x3c_c01091{left:602.656253pt;}
.x5e_c01091{left:611.055853pt;}
.x59_c01091{left:611.979853pt;}
.x3_c01091{left:616.569053pt;}
.x31_c01091{left:621.035053pt;}
.x15_c01091{left:622.764253pt;}
.x75_c01091{left:629.377453pt;}
.x37_c01091{left:632.400253pt;}
.x80_c01091{left:640.355453pt;}
.x5a_c01091{left:641.789853pt;}
.x5f_c01091{left:649.357853pt;}
.x16_c01091{left:653.027453pt;}
.x5b_c01091{left:660.793453pt;}
.x84_c01091{left:683.229053pt;}
}





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

.ir_c01092:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01092{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01092;src:url('chunks/assets/font_b692aa156fdbf5feb617bc07.woff2')format("woff");}.ff1_c01092{font-family:ff1_c01092;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01092;src:url('chunks/assets/font_fce61f4ff29fde5b0b1be0c8.woff2')format("woff");}.ff2_c01092{font-family:ff2_c01092;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01092;src:url('chunks/assets/font_3e28a325bccaff24a11c7390.woff2')format("woff");}.ff3_c01092{font-family:ff3_c01092;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01092;src:url('chunks/assets/font_225e8cb4f21ea61a53a93789.woff2')format("woff");}.ff4_c01092{font-family:ff4_c01092;line-height:1.435059;font-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_c01092{transform:matrix(0.028410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.028410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.028410,0.000000,0.000000,0.250000,0,0);}
.m2a_c01092{transform:matrix(0.094445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094445,0.000000,0.000000,0.250000,0,0);}
.m2e_c01092{transform:matrix(0.097619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097619,0.000000,0.000000,0.250000,0,0);}
.m2b_c01092{transform:matrix(0.104815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104815,0.000000,0.000000,0.250000,0,0);}
.ma0_c01092{transform:matrix(0.105682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105682,0.000000,0.000000,0.250000,0,0);}
.mc7_c01092{transform:matrix(0.119048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119048,0.000000,0.000000,0.250000,0,0);}
.m14_c01092{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.ma1_c01092{transform:matrix(0.144318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144318,0.000000,0.000000,0.250000,0,0);}
.m7f_c01092{transform:matrix(0.144380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144380,0.000000,0.000000,0.250000,0,0);}
.m2f_c01092{transform:matrix(0.162558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162558,0.000000,0.000000,0.250000,0,0);}
.m20_c01092{transform:matrix(0.165698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165698,0.000000,0.000000,0.250000,0,0);}
.m38_c01092{transform:matrix(0.167333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167333,0.000000,0.000000,0.250000,0,0);}
.m22_c01092{transform:matrix(0.169767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169767,0.000000,0.000000,0.250000,0,0);}
.m50_c01092{transform:matrix(0.170912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170912,0.000000,0.000000,0.250000,0,0);}
.m72_c01092{transform:matrix(0.172481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172481,0.000000,0.000000,0.250000,0,0);}
.mc6_c01092{transform:matrix(0.174999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174999,0.000000,0.000000,0.250000,0,0);}
.m4a_c01092{transform:matrix(0.178097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178097,0.000000,0.000000,0.250000,0,0);}
.m1e_c01092{transform:matrix(0.178779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178779,0.000000,0.000000,0.250000,0,0);}
.m2d_c01092{transform:matrix(0.191864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191864,0.000000,0.000000,0.250000,0,0);}
.m9_c01092{transform:matrix(0.193288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193288,0.000000,0.000000,0.250000,0,0);}
.m9d_c01092{transform:matrix(0.200889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200889,0.000000,0.000000,0.250000,0,0);}
.mc5_c01092{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.mab_c01092{transform:matrix(0.220706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220706,0.000000,0.000000,0.250000,0,0);}
.m49_c01092{transform:matrix(0.225056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225056,0.000000,0.000000,0.250000,0,0);}
.mb5_c01092{transform:matrix(0.225916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225916,0.000000,0.000000,0.250000,0,0);}
.md_c01092{transform:matrix(0.226094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226094,0.000000,0.000000,0.250000,0,0);}
.m28_c01092{transform:matrix(0.230233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230233,0.000000,0.000000,0.250000,0,0);}
.m44_c01092{transform:matrix(0.238626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238626,0.000000,0.000000,0.250000,0,0);}
.m3_c01092{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01092{transform:matrix(0.253744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253744,0.000000,0.000000,0.250000,0,0);}
.me_c01092{transform:matrix(0.254355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254355,0.000000,0.000000,0.250000,0,0);}
.m23_c01092{transform:matrix(0.254453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254453,0.000000,0.000000,0.250000,0,0);}
.m86_c01092{transform:matrix(0.256722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256722,0.000000,0.000000,0.250000,0,0);}
.mba_c01092{transform:matrix(0.257123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257123,0.000000,0.000000,0.250000,0,0);}
.m2_c01092{transform:matrix(0.259436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259436,0.000000,0.000000,0.250000,0,0);}
.m4d_c01092{transform:matrix(0.260779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260779,0.000000,0.000000,0.250000,0,0);}
.mb0_c01092{transform:matrix(0.261981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261981,0.000000,0.000000,0.250000,0,0);}
.mc3_c01092{transform:matrix(0.262625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262625,0.000000,0.000000,0.250000,0,0);}
.mbb_c01092{transform:matrix(0.262733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262733,0.000000,0.000000,0.250000,0,0);}
.mad_c01092{transform:matrix(0.263631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263631,0.000000,0.000000,0.250000,0,0);}
.maf_c01092{transform:matrix(0.263710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263710,0.000000,0.000000,0.250000,0,0);}
.m81_c01092{transform:matrix(0.264839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264839,0.000000,0.000000,0.250000,0,0);}
.m19_c01092{transform:matrix(0.266425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266425,0.000000,0.000000,0.250000,0,0);}
.m64_c01092{transform:matrix(0.266852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266852,0.000000,0.000000,0.250000,0,0);}
.m0_c01092{transform:matrix(0.267742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267742,0.000000,0.000000,0.250000,0,0);}
.m24_c01092{transform:matrix(0.268249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268249,0.000000,0.000000,0.250000,0,0);}
.m32_c01092{transform:matrix(0.268415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268415,0.000000,0.000000,0.250000,0,0);}
.m46_c01092{transform:matrix(0.268444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268444,0.000000,0.000000,0.250000,0,0);}
.m84_c01092{transform:matrix(0.269269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269269,0.000000,0.000000,0.250000,0,0);}
.m30_c01092{transform:matrix(0.269800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269800,0.000000,0.000000,0.250000,0,0);}
.m79_c01092{transform:matrix(0.270080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270080,0.000000,0.000000,0.250000,0,0);}
.m4e_c01092{transform:matrix(0.270619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270619,0.000000,0.000000,0.250000,0,0);}
.m48_c01092{transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);}
.m11_c01092{transform:matrix(0.271621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271621,0.000000,0.000000,0.250000,0,0);}
.m41_c01092{transform:matrix(0.271969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271969,0.000000,0.000000,0.250000,0,0);}
.m33_c01092{transform:matrix(0.272053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272053,0.000000,0.000000,0.250000,0,0);}
.m5_c01092{transform:matrix(0.275192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275192,0.000000,0.000000,0.250000,0,0);}
.mbe_c01092{transform:matrix(0.276310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276310,0.000000,0.000000,0.250000,0,0);}
.m37_c01092{transform:matrix(0.277783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277783,0.000000,0.000000,0.250000,0,0);}
.m5a_c01092{transform:matrix(0.278792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278792,0.000000,0.000000,0.250000,0,0);}
.m8c_c01092{transform:matrix(0.279450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279450,0.000000,0.000000,0.250000,0,0);}
.m27_c01092{transform:matrix(0.279691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279691,0.000000,0.000000,0.250000,0,0);}
.ma6_c01092{transform:matrix(0.279753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279753,0.000000,0.000000,0.250000,0,0);}
.m5e_c01092{transform:matrix(0.279762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279762,0.000000,0.000000,0.250000,0,0);}
.m92_c01092{transform:matrix(0.279777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279777,0.000000,0.000000,0.250000,0,0);}
.m31_c01092{transform:matrix(0.281123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281123,0.000000,0.000000,0.250000,0,0);}
.m9a_c01092{transform:matrix(0.281622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281622,0.000000,0.000000,0.250000,0,0);}
.m77_c01092{transform:matrix(0.281739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281739,0.000000,0.000000,0.250000,0,0);}
.m13_c01092{transform:matrix(0.282019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282019,0.000000,0.000000,0.250000,0,0);}
.m17_c01092{transform:matrix(0.282065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282065,0.000000,0.000000,0.250000,0,0);}
.m52_c01092{transform:matrix(0.282590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282590,0.000000,0.000000,0.250000,0,0);}
.mb_c01092{transform:matrix(0.282797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282797,0.000000,0.000000,0.250000,0,0);}
.m9e_c01092{transform:matrix(0.283264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283264,0.000000,0.000000,0.250000,0,0);}
.mc4_c01092{transform:matrix(0.283631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283631,0.000000,0.000000,0.250000,0,0);}
.m69_c01092{transform:matrix(0.283683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283683,0.000000,0.000000,0.250000,0,0);}
.m3b_c01092{transform:matrix(0.283910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283910,0.000000,0.000000,0.250000,0,0);}
.mb1_c01092{transform:matrix(0.284039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284039,0.000000,0.000000,0.250000,0,0);}
.m4f_c01092{transform:matrix(0.284115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284115,0.000000,0.000000,0.250000,0,0);}
.m6f_c01092{transform:matrix(0.285730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285730,0.000000,0.000000,0.250000,0,0);}
.m58_c01092{transform:matrix(0.286817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286817,0.000000,0.000000,0.250000,0,0);}
.m6b_c01092{transform:matrix(0.287155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287155,0.000000,0.000000,0.250000,0,0);}
.m1c_c01092{transform:matrix(0.287752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287752,0.000000,0.000000,0.250000,0,0);}
.m70_c01092{transform:matrix(0.288926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288926,0.000000,0.000000,0.250000,0,0);}
.m9b_c01092{transform:matrix(0.289932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289932,0.000000,0.000000,0.250000,0,0);}
.m59_c01092{transform:matrix(0.291888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291888,0.000000,0.000000,0.250000,0,0);}
.m91_c01092{transform:matrix(0.292492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292492,0.000000,0.000000,0.250000,0,0);}
.m26_c01092{transform:matrix(0.292819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292819,0.000000,0.000000,0.250000,0,0);}
.m62_c01092{transform:matrix(0.293216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293216,0.000000,0.000000,0.250000,0,0);}
.m94_c01092{transform:matrix(0.293466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293466,0.000000,0.000000,0.250000,0,0);}
.mbf_c01092{transform:matrix(0.294818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294818,0.000000,0.000000,0.250000,0,0);}
.mc0_c01092{transform:matrix(0.294847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294847,0.000000,0.000000,0.250000,0,0);}
.m9c_c01092{transform:matrix(0.294960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294960,0.000000,0.000000,0.250000,0,0);}
.m6_c01092{transform:matrix(0.295018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295018,0.000000,0.000000,0.250000,0,0);}
.m88_c01092{transform:matrix(0.295085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295085,0.000000,0.000000,0.250000,0,0);}
.mac_c01092{transform:matrix(0.295302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295302,0.000000,0.000000,0.250000,0,0);}
.m60_c01092{transform:matrix(0.295376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295376,0.000000,0.000000,0.250000,0,0);}
.mc_c01092{transform:matrix(0.295918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295918,0.000000,0.000000,0.250000,0,0);}
.mb3_c01092{transform:matrix(0.296785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296785,0.000000,0.000000,0.250000,0,0);}
.m25_c01092{transform:matrix(0.296850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296850,0.000000,0.000000,0.250000,0,0);}
.m7e_c01092{transform:matrix(0.297128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297128,0.000000,0.000000,0.250000,0,0);}
.mf_c01092{transform:matrix(0.297438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297438,0.000000,0.000000,0.250000,0,0);}
.m34_c01092{transform:matrix(0.297498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297498,0.000000,0.000000,0.250000,0,0);}
.mb9_c01092{transform:matrix(0.297831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297831,0.000000,0.000000,0.250000,0,0);}
.m7_c01092{transform:matrix(0.298343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298343,0.000000,0.000000,0.250000,0,0);}
.m6d_c01092{transform:matrix(0.298521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298521,0.000000,0.000000,0.250000,0,0);}
.m42_c01092{transform:matrix(0.299123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299123,0.000000,0.000000,0.250000,0,0);}
.m74_c01092{transform:matrix(0.299929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299929,0.000000,0.000000,0.250000,0,0);}
.m1a_c01092{transform:matrix(0.299938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299938,0.000000,0.000000,0.250000,0,0);}
.m10_c01092{transform:matrix(0.300731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300731,0.000000,0.000000,0.250000,0,0);}
.m8a_c01092{transform:matrix(0.300803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300803,0.000000,0.000000,0.250000,0,0);}
.mb4_c01092{transform:matrix(0.301929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301929,0.000000,0.000000,0.250000,0,0);}
.ma9_c01092{transform:matrix(0.302340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302340,0.000000,0.000000,0.250000,0,0);}
.ma_c01092{transform:matrix(0.302397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302397,0.000000,0.000000,0.250000,0,0);}
.m67_c01092{transform:matrix(0.302414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302414,0.000000,0.000000,0.250000,0,0);}
.m3a_c01092{transform:matrix(0.302677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302677,0.000000,0.000000,0.250000,0,0);}
.m5c_c01092{transform:matrix(0.303784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303784,0.000000,0.000000,0.250000,0,0);}
.m93_c01092{transform:matrix(0.304470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304470,0.000000,0.000000,0.250000,0,0);}
.m65_c01092{transform:matrix(0.305076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305076,0.000000,0.000000,0.250000,0,0);}
.m3f_c01092{transform:matrix(0.305233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305233,0.000000,0.000000,0.250000,0,0);}
.m3d_c01092{transform:matrix(0.305303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305303,0.000000,0.000000,0.250000,0,0);}
.m36_c01092{transform:matrix(0.305482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305482,0.000000,0.000000,0.250000,0,0);}
.mb2_c01092{transform:matrix(0.305549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305549,0.000000,0.000000,0.250000,0,0);}
.m21_c01092{transform:matrix(0.305818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305818,0.000000,0.000000,0.250000,0,0);}
.ma3_c01092{transform:matrix(0.305857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305857,0.000000,0.000000,0.250000,0,0);}
.m99_c01092{transform:matrix(0.306134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306134,0.000000,0.000000,0.250000,0,0);}
.m29_c01092{transform:matrix(0.307801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307801,0.000000,0.000000,0.250000,0,0);}
.mbc_c01092{transform:matrix(0.308731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308731,0.000000,0.000000,0.250000,0,0);}
.m5b_c01092{transform:matrix(0.308869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308869,0.000000,0.000000,0.250000,0,0);}
.m3c_c01092{transform:matrix(0.309443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309443,0.000000,0.000000,0.250000,0,0);}
.m54_c01092{transform:matrix(0.309632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309632,0.000000,0.000000,0.250000,0,0);}
.m97_c01092{transform:matrix(0.310301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310301,0.000000,0.000000,0.250000,0,0);}
.m9f_c01092{transform:matrix(0.310722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310722,0.000000,0.000000,0.250000,0,0);}
.m8e_c01092{transform:matrix(0.311095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311095,0.000000,0.000000,0.250000,0,0);}
.m7b_c01092{transform:matrix(0.311309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311309,0.000000,0.000000,0.250000,0,0);}
.m3e_c01092{transform:matrix(0.311416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311416,0.000000,0.000000,0.250000,0,0);}
.m16_c01092{transform:matrix(0.311481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311481,0.000000,0.000000,0.250000,0,0);}
.m1d_c01092{transform:matrix(0.312268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312268,0.000000,0.000000,0.250000,0,0);}
.m63_c01092{transform:matrix(0.313029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313029,0.000000,0.000000,0.250000,0,0);}
.m75_c01092{transform:matrix(0.313087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313087,0.000000,0.000000,0.250000,0,0);}
.maa_c01092{transform:matrix(0.314297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314297,0.000000,0.000000,0.250000,0,0);}
.m6c_c01092{transform:matrix(0.314493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314493,0.000000,0.000000,0.250000,0,0);}
.m39_c01092{transform:matrix(0.314564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314564,0.000000,0.000000,0.250000,0,0);}
.mc2_c01092{transform:matrix(0.314741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314741,0.000000,0.000000,0.250000,0,0);}
.m4_c01092{transform:matrix(0.315619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315619,0.000000,0.000000,0.250000,0,0);}
.m8_c01092{transform:matrix(0.315777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315777,0.000000,0.000000,0.250000,0,0);}
.m71_c01092{transform:matrix(0.316217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316217,0.000000,0.000000,0.250000,0,0);}
.m80_c01092{transform:matrix(0.316848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316848,0.000000,0.000000,0.250000,0,0);}
.m6e_c01092{transform:matrix(0.317856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317856,0.000000,0.000000,0.250000,0,0);}
.m55_c01092{transform:matrix(0.318257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318257,0.000000,0.000000,0.250000,0,0);}
.m2c_c01092{transform:matrix(0.318371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318371,0.000000,0.000000,0.250000,0,0);}
.m66_c01092{transform:matrix(0.318552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318552,0.000000,0.000000,0.250000,0,0);}
.m6a_c01092{transform:matrix(0.319195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319195,0.000000,0.000000,0.250000,0,0);}
.m40_c01092{transform:matrix(0.319340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319340,0.000000,0.000000,0.250000,0,0);}
.m47_c01092{transform:matrix(0.319575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319575,0.000000,0.000000,0.250000,0,0);}
.m68_c01092{transform:matrix(0.320020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320020,0.000000,0.000000,0.250000,0,0);}
.mb6_c01092{transform:matrix(0.320305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320305,0.000000,0.000000,0.250000,0,0);}
.m7c_c01092{transform:matrix(0.320410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320410,0.000000,0.000000,0.250000,0,0);}
.m78_c01092{transform:matrix(0.320441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320441,0.000000,0.000000,0.250000,0,0);}
.m1f_c01092{transform:matrix(0.321687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321687,0.000000,0.000000,0.250000,0,0);}
.m8f_c01092{transform:matrix(0.322317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322317,0.000000,0.000000,0.250000,0,0);}
.mc1_c01092{transform:matrix(0.322950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322950,0.000000,0.000000,0.250000,0,0);}
.mb8_c01092{transform:matrix(0.324113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324113,0.000000,0.000000,0.250000,0,0);}
.ma4_c01092{transform:matrix(0.324632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324632,0.000000,0.000000,0.250000,0,0);}
.m18_c01092{transform:matrix(0.325521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325521,0.000000,0.000000,0.250000,0,0);}
.m85_c01092{transform:matrix(0.326729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326729,0.000000,0.000000,0.250000,0,0);}
.m89_c01092{transform:matrix(0.328744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328744,0.000000,0.000000,0.250000,0,0);}
.m5f_c01092{transform:matrix(0.328794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328794,0.000000,0.000000,0.250000,0,0);}
.m7d_c01092{transform:matrix(0.328884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328884,0.000000,0.000000,0.250000,0,0);}
.m12_c01092{transform:matrix(0.329025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329025,0.000000,0.000000,0.250000,0,0);}
.mae_c01092{transform:matrix(0.329048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329048,0.000000,0.000000,0.250000,0,0);}
.m53_c01092{transform:matrix(0.329277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329277,0.000000,0.000000,0.250000,0,0);}
.ma7_c01092{transform:matrix(0.330468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330468,0.000000,0.000000,0.250000,0,0);}
.m8d_c01092{transform:matrix(0.333366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333366,0.000000,0.000000,0.250000,0,0);}
.m76_c01092{transform:matrix(0.335861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335861,0.000000,0.000000,0.250000,0,0);}
.m51_c01092{transform:matrix(0.338499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338499,0.000000,0.000000,0.250000,0,0);}
.m4c_c01092{transform:matrix(0.340720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340720,0.000000,0.000000,0.250000,0,0);}
.m5d_c01092{transform:matrix(0.340797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340797,0.000000,0.000000,0.250000,0,0);}
.m56_c01092{transform:matrix(0.342567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342567,0.000000,0.000000,0.250000,0,0);}
.m15_c01092{transform:matrix(0.343130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343130,0.000000,0.000000,0.250000,0,0);}
.ma8_c01092{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);}
.mbd_c01092{transform:matrix(0.344249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344249,0.000000,0.000000,0.250000,0,0);}
.m57_c01092{transform:matrix(0.344335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344335,0.000000,0.000000,0.250000,0,0);}
.m35_c01092{transform:matrix(0.346718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346718,0.000000,0.000000,0.250000,0,0);}
.m8b_c01092{transform:matrix(0.349807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349807,0.000000,0.000000,0.250000,0,0);}
.m7a_c01092{transform:matrix(0.350176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350176,0.000000,0.000000,0.250000,0,0);}
.mb7_c01092{transform:matrix(0.352889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352889,0.000000,0.000000,0.250000,0,0);}
.ma5_c01092{transform:matrix(0.353540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353540,0.000000,0.000000,0.250000,0,0);}
.m4b_c01092{transform:matrix(0.354788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354788,0.000000,0.000000,0.250000,0,0);}
.m45_c01092{transform:matrix(0.356132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356132,0.000000,0.000000,0.250000,0,0);}
.m83_c01092{transform:matrix(0.357753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357753,0.000000,0.000000,0.250000,0,0);}
.m82_c01092{transform:matrix(0.359239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359239,0.000000,0.000000,0.250000,0,0);}
.m73_c01092{transform:matrix(0.361571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361571,0.000000,0.000000,0.250000,0,0);}
.m43_c01092{transform:matrix(0.367883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367883,0.000000,0.000000,0.250000,0,0);}
.m61_c01092{transform:matrix(0.372395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372395,0.000000,0.000000,0.250000,0,0);}
.m87_c01092{transform:matrix(0.373079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373079,0.000000,0.000000,0.250000,0,0);}
.m98_c01092{transform:matrix(0.374946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374946,0.000000,0.000000,0.250000,0,0);}
.m95_c01092{transform:matrix(0.384701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384701,0.000000,0.000000,0.250000,0,0);}
.m1b_c01092{transform:matrix(0.395484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395484,0.000000,0.000000,0.250000,0,0);}
.m90_c01092{transform:matrix(0.408109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408109,0.000000,0.000000,0.250000,0,0);}
.m96_c01092{transform:matrix(0.420862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420862,0.000000,0.000000,0.250000,0,0);}
.v0_c01092{vertical-align:0.000000px;}
.v1_c01092{vertical-align:4.276800px;}
.lsa_c01092{letter-spacing:-2.979900px;}
.lsb_c01092{letter-spacing:-2.945250px;}
.ls18_c01092{letter-spacing:-2.924467px;}
.ls23_c01092{letter-spacing:-2.772000px;}
.ls16_c01092{letter-spacing:-2.758140px;}
.ls24_c01092{letter-spacing:-2.702700px;}
.ls21_c01092{letter-spacing:-2.661127px;}
.ls1c_c01092{letter-spacing:-2.647267px;}
.ls27_c01092{letter-spacing:-2.591827px;}
.ls2f_c01092{letter-spacing:-2.439367px;}
.ls8_c01092{letter-spacing:-2.436317px;}
.ls13_c01092{letter-spacing:-2.272729px;}
.ls33_c01092{letter-spacing:-2.009700px;}
.ls29_c01092{letter-spacing:-1.490108px;}
.ls1d_c01092{letter-spacing:-0.794180px;}
.ls9_c01092{letter-spacing:-0.285833px;}
.ls6_c01092{letter-spacing:0.000000px;}
.ls1f_c01092{letter-spacing:0.659065px;}
.ls2a_c01092{letter-spacing:1.087260px;}
.lsd_c01092{letter-spacing:1.421961px;}
.ls1e_c01092{letter-spacing:1.680466px;}
.ls2_c01092{letter-spacing:1.937177px;}
.ls32_c01092{letter-spacing:2.471040px;}
.ls30_c01092{letter-spacing:2.697295px;}
.ls1b_c01092{letter-spacing:2.811600px;}
.ls20_c01092{letter-spacing:3.088810px;}
.ls19_c01092{letter-spacing:3.184284px;}
.ls35_c01092{letter-spacing:3.207610px;}
.ls1a_c01092{letter-spacing:3.276900px;}
.ls26_c01092{letter-spacing:3.296700px;}
.ls25_c01092{letter-spacing:3.392928px;}
.ls28_c01092{letter-spacing:3.405610px;}
.ls2e_c01092{letter-spacing:3.524400px;}
.ls1_c01092{letter-spacing:3.552120px;}
.ls10_c01092{letter-spacing:3.583810px;}
.ls2c_c01092{letter-spacing:3.603610px;}
.lsc_c01092{letter-spacing:3.623400px;}
.ls2b_c01092{letter-spacing:3.633310px;}
.ls7_c01092{letter-spacing:3.702610px;}
.lse_c01092{letter-spacing:3.781810px;}
.ls22_c01092{letter-spacing:3.801610px;}
.ls3_c01092{letter-spacing:3.910500px;}
.ls11_c01092{letter-spacing:3.940200px;}
.ls34_c01092{letter-spacing:4.039200px;}
.ls15_c01092{letter-spacing:4.068900px;}
.ls2d_c01092{letter-spacing:4.098610px;}
.ls0_c01092{letter-spacing:4.161099px;}
.ls4_c01092{letter-spacing:4.177810px;}
.ls5_c01092{letter-spacing:4.207500px;}
.ls14_c01092{letter-spacing:4.276810px;}
.ls37_c01092{letter-spacing:29.937798px;}
.ls36_c01092{letter-spacing:57.024198px;}
.ls12_c01092{letter-spacing:61.300998px;}
.ls31_c01092{letter-spacing:62.726400px;}
.ls17_c01092{letter-spacing:64.152198px;}
.lsf_c01092{letter-spacing:78.408198px;}
.sc__c01092{text-shadow:none;}
.sc0_c01092{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01092{-webkit-text-stroke:0px transparent;}
.sc0_c01092{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01092{word-spacing:-22.857120px;}
.ws1_c01092{word-spacing:-10.692000px;}
.ws2_c01092{word-spacing:0.000000px;}
._5_c01092{margin-left:-5.987520px;}
._3_c01092{width:6.630403px;}
._4_c01092{width:7.876440px;}
._2_c01092{width:10.327641px;}
._0_c01092{width:16.072650px;}
._1_c01092{width:18.513000px;}
.fc0_c01092{color:transparent;}
.fs1f_c01092{font-size:5.742198px;}
.fs2c_c01092{font-size:21.186000px;}
.fs3_c01092{font-size:22.176000px;}
.fs2d_c01092{font-size:29.937798px;}
.fs2e_c01092{font-size:39.204000px;}
.fs8_c01092{font-size:39.600000px;}
.fs15_c01092{font-size:40.788000px;}
.fs20_c01092{font-size:42.768000px;}
.fs16_c01092{font-size:44.352000px;}
.fs11_c01092{font-size:45.936198px;}
.fs24_c01092{font-size:53.856198px;}
.fs27_c01092{font-size:54.054000px;}
.fs13_c01092{font-size:56.232000px;}
.fs2b_c01092{font-size:57.024198px;}
.fs2a_c01092{font-size:57.420000px;}
.fsd_c01092{font-size:61.300998px;}
.fs17_c01092{font-size:61.776198px;}
.fs28_c01092{font-size:62.726400px;}
.fs10_c01092{font-size:64.152198px;}
.fs12_c01092{font-size:65.538000px;}
.fs1c_c01092{font-size:65.934000px;}
.fs1d_c01092{font-size:68.112198px;}
.fs25_c01092{font-size:69.696198px;}
.fs29_c01092{font-size:70.092198px;}
.fs23_c01092{font-size:70.488000px;}
.fsb_c01092{font-size:71.676198px;}
.fs21_c01092{font-size:72.072198px;}
.fs7_c01092{font-size:72.468000px;}
.fs1e_c01092{font-size:72.666198px;}
.fs4_c01092{font-size:74.052198px;}
.fs9_c01092{font-size:75.636198px;}
.fs18_c01092{font-size:76.032198px;}
.fs1a_c01092{font-size:77.220000px;}
.fs0_c01092{font-size:78.210000px;}
.fsa_c01092{font-size:78.408198px;}
.fsc_c01092{font-size:78.804000px;}
.fs19_c01092{font-size:79.200000px;}
.fs5_c01092{font-size:79.398000px;}
.fs1b_c01092{font-size:80.784000px;}
.fsf_c01092{font-size:81.378000px;}
.fs22_c01092{font-size:81.972198px;}
.fs1_c01092{font-size:83.556198px;}
.fs2_c01092{font-size:84.150000px;}
.fs14_c01092{font-size:84.744000px;}
.fs6_c01092{font-size:85.140000px;}
.fse_c01092{font-size:85.536198px;}
.fs26_c01092{font-size:93.456198px;}
.y0_c01092{bottom:0.000000px;}
.y1_c01092{bottom:76.500000px;}
.y29_c01092{bottom:82.240335px;}
.y28_c01092{bottom:93.288735px;}
.y27_c01092{bottom:103.975785px;}
.y26_c01092{bottom:120.018735px;}
.y25_c01092{bottom:152.807535px;}
.y24_c01092{bottom:185.596335px;}
.y23_c01092{bottom:218.023785px;}
.y22_c01092{bottom:250.104735px;}
.y21_c01092{bottom:277.542585px;}
.y20_c01092{bottom:282.537135px;}
.y1f_c01092{bottom:313.895385px;}
.y1e_c01092{bottom:346.327785px;}
.y1d_c01092{bottom:378.403785px;}
.y1c_c01092{bottom:410.479785px;}
.y1b_c01092{bottom:441.486585px;}
.y1a_c01092{bottom:442.560735px;}
.y19_c01092{bottom:460.019385px;}
.y18_c01092{bottom:474.988185px;}
.y17_c01092{bottom:507.781935px;}
.y16_c01092{bottom:538.788735px;}
.y15_c01092{bottom:569.790585px;}
.y11_c01092{bottom:602.940735px;}
.y14_c01092{bottom:603.297135px;}
.y3_c01092{bottom:633.947535px;}
.y13_c01092{bottom:635.373135px;}
.y10_c01092{bottom:635.729535px;}
.y12_c01092{bottom:642.857535px;}
.yf_c01092{bottom:694.174185px;}
.ye_c01092{bottom:697.381785px;}
.yd_c01092{bottom:728.388585px;}
.yc_c01092{bottom:761.895135px;}
.yb_c01092{bottom:794.683935px;}
.y2_c01092{bottom:826.047135px;}
.y9_c01092{bottom:826.759935px;}
.ya_c01092{bottom:828.180585px;}
.y8_c01092{bottom:850.995135px;}
.y7_c01092{bottom:891.268335px;}
.y6_c01092{bottom:923.700735px;}
.y5_c01092{bottom:937.595385px;}
.y4_c01092{bottom:1063.760985px;}
.h20_c01092{height:5.635653px;}
.h30_c01092{height:19.938573px;}
.h2f_c01092{height:22.096336px;}
.h5_c01092{height:23.128875px;}
.h2e_c01092{height:37.978116px;}
.h31_c01092{height:38.476582px;}
.hf_c01092{height:40.826465px;}
.ha_c01092{height:41.301563px;}
.h29_c01092{height:41.775782px;}
.h12_c01092{height:42.725364px;}
.h13_c01092{height:45.083866px;}
.h21_c01092{height:46.251253px;}
.h17_c01092{height:46.257750px;}
.hc_c01092{height:52.219860px;}
.h28_c01092{height:53.051045px;}
.h15_c01092{height:55.188633px;}
.h25_c01092{height:56.170332px;}
.h2c_c01092{height:59.887266px;}
.h18_c01092{height:60.629960px;}
.h2d_c01092{height:62.961874px;}
.h14_c01092{height:64.321963px;}
.h1d_c01092{height:68.767102px;}
.h24_c01092{height:69.180117px;}
.hd_c01092{height:70.346269px;}
.h22_c01092{height:70.734921px;}
.h1e_c01092{height:71.038894px;}
.h9_c01092{height:71.123379px;}
.h6_c01092{height:72.678183px;}
.h26_c01092{height:72.690957px;}
.h2b_c01092{height:73.103972px;}
.hb_c01092{height:74.232792px;}
.h19_c01092{height:74.621444px;}
.h1b_c01092{height:75.787207px;}
.h1f_c01092{height:75.788574px;}
.h2_c01092{height:76.758838px;}
.he_c01092{height:77.341816px;}
.h1a_c01092{height:77.730469px;}
.h7_c01092{height:77.924795px;}
.h1c_c01092{height:79.285078px;}
.h11_c01092{height:79.868057px;}
.h23_c01092{height:80.451229px;}
.h2a_c01092{height:80.538047px;}
.h3_c01092{height:82.005839px;}
.h4_c01092{height:82.588623px;}
.h16_c01092{height:83.171602px;}
.h8_c01092{height:83.560254px;}
.h10_c01092{height:83.949101px;}
.h27_c01092{height:97.471894px;}
.h1_c01092{height:1110.000000px;}
.h0_c01092{height:1263.000000px;}
.w1_c01092{width:775.500000px;}
.w0_c01092{width:892.500000px;}
.x0_c01092{left:0.000000px;}
.x1_c01092{left:58.500000px;}
.x2_c01092{left:92.987385px;}
.xf_c01092{left:147.427485px;}
.x17_c01092{left:148.551135px;}
.x5_c01092{left:150.496485px;}
.x6_c01092{left:181.532985px;}
.x27_c01092{left:183.631785px;}
.x2e_c01092{left:196.229535px;}
.x1c_c01092{left:202.664535px;}
.x18_c01092{left:204.446535px;}
.x34_c01092{left:205.718685px;}
.x50_c01092{left:213.792135px;}
.x21_c01092{left:215.757285px;}
.x7_c01092{left:226.246335px;}
.x3f_c01092{left:236.864085px;}
.x55_c01092{left:238.156035px;}
.x6f_c01092{left:247.813485px;}
.x10_c01092{left:248.833185px;}
.x63_c01092{left:250.951785px;}
.x28_c01092{left:259.450935px;}
.x40_c01092{left:270.974535px;}
.x2f_c01092{left:272.855535px;}
.x35_c01092{left:281.750685px;}
.x8_c01092{left:283.488135px;}
.x11_c01092{left:292.888185px;}
.x30_c01092{left:294.021735px;}
.x56_c01092{left:305.584935px;}
.x41_c01092{left:308.718285px;}
.x9_c01092{left:315.296835px;}
.x29_c01092{left:316.474935px;}
.x49_c01092{left:326.577885px;}
.x1d_c01092{left:327.592635px;}
.x67_c01092{left:336.279885px;}
.x36_c01092{left:337.967835px;}
.x42_c01092{left:348.338085px;}
.xa_c01092{left:349.892385px;}
.x4d_c01092{left:351.659535px;}
.x12_c01092{left:359.178585px;}
.x6b_c01092{left:369.524085px;}
.x22_c01092{left:370.875435px;}
.x5f_c01092{left:381.087285px;}
.x5c_c01092{left:383.101935px;}
.x43_c01092{left:392.239635px;}
.x69_c01092{left:403.040535px;}
.x31_c01092{left:413.876085px;}
.x59_c01092{left:416.855985px;}
.x13_c01092{left:426.978735px;}
.x51_c01092{left:428.127135px;}
.xb_c01092{left:436.809435px;}
.x46_c01092{left:438.027135px;}
.x23_c01092{left:448.699335px;}
.x3b_c01092{left:457.723185px;}
.x6c_c01092{left:458.886435px;}
.x70_c01092{left:459.906135px;}
.x4e_c01092{left:460.920885px;}
.x52_c01092{left:462.173235px;}
.x14_c01092{left:470.994135px;}
.xc_c01092{left:475.468935px;}
.x64_c01092{left:477.924135px;}
.x44_c01092{left:481.027785px;}
.x32_c01092{left:482.849385px;}
.x2a_c01092{left:493.516635px;}
.x2b_c01092{left:497.184585px;}
.x4_c01092{left:502.070235px;}
.x2c_c01092{left:504.297735px;}
.x15_c01092{left:514.539285px;}
.x53_c01092{left:515.821335px;}
.x37_c01092{left:524.919435px;}
.x3c_c01092{left:525.978735px;}
.x4c_c01092{left:532.794885px;}
.x47_c01092{left:536.363835px;}
.x57_c01092{left:546.352935px;}
.x1e_c01092{left:547.580535px;}
.xd_c01092{left:548.951685px;}
.x68_c01092{left:558.396285px;}
.x33_c01092{left:560.594085px;}
.x61_c01092{left:567.350835px;}
.x24_c01092{left:569.083335px;}
.x48_c01092{left:571.295985px;}
.x3d_c01092{left:574.384785px;}
.x62_c01092{left:578.503185px;}
.x5a_c01092{left:579.943635px;}
.x19_c01092{left:581.067285px;}
.xe_c01092{left:590.794035px;}
.x65_c01092{left:592.249335px;}
.x71_c01092{left:602.599785px;}
.x2d_c01092{left:604.302585px;}
.x1a_c01092{left:612.638385px;}
.x4a_c01092{left:614.519385px;}
.x25_c01092{left:624.716385px;}
.x58_c01092{left:626.963685px;}
.x6a_c01092{left:634.235235px;}
.x45_c01092{left:635.730135px;}
.x60_c01092{left:646.085535px;}
.x54_c01092{left:647.303235px;}
.x16_c01092{left:655.876635px;}
.x1f_c01092{left:657.406185px;}
.x4f_c01092{left:658.569435px;}
.x5b_c01092{left:668.365485px;}
.x1b_c01092{left:669.914835px;}
.x20_c01092{left:680.359335px;}
.x6d_c01092{left:689.581185px;}
.x4b_c01092{left:691.551285px;}
.x66_c01092{left:694.323285px;}
.x26_c01092{left:701.683935px;}
.x39_c01092{left:702.951135px;}
.x3_c01092{left:703.970835px;}
.x73_c01092{left:707.282385px;}
.x3e_c01092{left:712.742235px;}
.x6e_c01092{left:713.959935px;}
.x3a_c01092{left:724.661835px;}
.x38_c01092{left:727.582335px;}
.x72_c01092{left:733.819335px;}
.x5d_c01092{left:735.264735px;}
.x5e_c01092{left:757.826835px;}
@media print{
.v0_c01092{vertical-align:0.000000pt;}
.v1_c01092{vertical-align:3.801600pt;}
.lsa_c01092{letter-spacing:-2.648800pt;}
.lsb_c01092{letter-spacing:-2.618000pt;}
.ls18_c01092{letter-spacing:-2.599526pt;}
.ls23_c01092{letter-spacing:-2.464000pt;}
.ls16_c01092{letter-spacing:-2.451680pt;}
.ls24_c01092{letter-spacing:-2.402400pt;}
.ls21_c01092{letter-spacing:-2.365446pt;}
.ls1c_c01092{letter-spacing:-2.353126pt;}
.ls27_c01092{letter-spacing:-2.303846pt;}
.ls2f_c01092{letter-spacing:-2.168326pt;}
.ls8_c01092{letter-spacing:-2.165615pt;}
.ls13_c01092{letter-spacing:-2.020203pt;}
.ls33_c01092{letter-spacing:-1.786400pt;}
.ls29_c01092{letter-spacing:-1.324541pt;}
.ls1d_c01092{letter-spacing:-0.705938pt;}
.ls9_c01092{letter-spacing:-0.254074pt;}
.ls6_c01092{letter-spacing:0.000000pt;}
.ls1f_c01092{letter-spacing:0.585835pt;}
.ls2a_c01092{letter-spacing:0.966454pt;}
.lsd_c01092{letter-spacing:1.263965pt;}
.ls1e_c01092{letter-spacing:1.493747pt;}
.ls2_c01092{letter-spacing:1.721935pt;}
.ls32_c01092{letter-spacing:2.196480pt;}
.ls30_c01092{letter-spacing:2.397595pt;}
.ls1b_c01092{letter-spacing:2.499200pt;}
.ls20_c01092{letter-spacing:2.745609pt;}
.ls19_c01092{letter-spacing:2.830475pt;}
.ls35_c01092{letter-spacing:2.851209pt;}
.ls1a_c01092{letter-spacing:2.912800pt;}
.ls26_c01092{letter-spacing:2.930400pt;}
.ls25_c01092{letter-spacing:3.015936pt;}
.ls28_c01092{letter-spacing:3.027209pt;}
.ls2e_c01092{letter-spacing:3.132800pt;}
.ls1_c01092{letter-spacing:3.157440pt;}
.ls10_c01092{letter-spacing:3.185609pt;}
.ls2c_c01092{letter-spacing:3.203209pt;}
.lsc_c01092{letter-spacing:3.220800pt;}
.ls2b_c01092{letter-spacing:3.229609pt;}
.ls7_c01092{letter-spacing:3.291209pt;}
.lse_c01092{letter-spacing:3.361609pt;}
.ls22_c01092{letter-spacing:3.379209pt;}
.ls3_c01092{letter-spacing:3.476000pt;}
.ls11_c01092{letter-spacing:3.502400pt;}
.ls34_c01092{letter-spacing:3.590400pt;}
.ls15_c01092{letter-spacing:3.616800pt;}
.ls2d_c01092{letter-spacing:3.643209pt;}
.ls0_c01092{letter-spacing:3.698754pt;}
.ls4_c01092{letter-spacing:3.713609pt;}
.ls5_c01092{letter-spacing:3.740000pt;}
.ls14_c01092{letter-spacing:3.801609pt;}
.ls37_c01092{letter-spacing:26.611376pt;}
.ls36_c01092{letter-spacing:50.688176pt;}
.ls12_c01092{letter-spacing:54.489776pt;}
.ls31_c01092{letter-spacing:55.756800pt;}
.ls17_c01092{letter-spacing:57.024176pt;}
.lsf_c01092{letter-spacing:69.696176pt;}
.ws0_c01092{word-spacing:-20.317440pt;}
.ws1_c01092{word-spacing:-9.504000pt;}
.ws2_c01092{word-spacing:0.000000pt;}
._5_c01092{margin-left:-5.322240pt;}
._3_c01092{width:5.893692pt;}
._4_c01092{width:7.001280pt;}
._2_c01092{width:9.180125pt;}
._0_c01092{width:14.286800pt;}
._1_c01092{width:16.456000pt;}
.fs1f_c01092{font-size:5.104176pt;}
.fs2c_c01092{font-size:18.832000pt;}
.fs3_c01092{font-size:19.712000pt;}
.fs2d_c01092{font-size:26.611376pt;}
.fs2e_c01092{font-size:34.848000pt;}
.fs8_c01092{font-size:35.200000pt;}
.fs15_c01092{font-size:36.256000pt;}
.fs20_c01092{font-size:38.016000pt;}
.fs16_c01092{font-size:39.424000pt;}
.fs11_c01092{font-size:40.832176pt;}
.fs24_c01092{font-size:47.872176pt;}
.fs27_c01092{font-size:48.048000pt;}
.fs13_c01092{font-size:49.984000pt;}
.fs2b_c01092{font-size:50.688176pt;}
.fs2a_c01092{font-size:51.040000pt;}
.fsd_c01092{font-size:54.489776pt;}
.fs17_c01092{font-size:54.912176pt;}
.fs28_c01092{font-size:55.756800pt;}
.fs10_c01092{font-size:57.024176pt;}
.fs12_c01092{font-size:58.256000pt;}
.fs1c_c01092{font-size:58.608000pt;}
.fs1d_c01092{font-size:60.544176pt;}
.fs25_c01092{font-size:61.952176pt;}
.fs29_c01092{font-size:62.304176pt;}
.fs23_c01092{font-size:62.656000pt;}
.fsb_c01092{font-size:63.712176pt;}
.fs21_c01092{font-size:64.064176pt;}
.fs7_c01092{font-size:64.416000pt;}
.fs1e_c01092{font-size:64.592176pt;}
.fs4_c01092{font-size:65.824176pt;}
.fs9_c01092{font-size:67.232176pt;}
.fs18_c01092{font-size:67.584176pt;}
.fs1a_c01092{font-size:68.640000pt;}
.fs0_c01092{font-size:69.520000pt;}
.fsa_c01092{font-size:69.696176pt;}
.fsc_c01092{font-size:70.048000pt;}
.fs19_c01092{font-size:70.400000pt;}
.fs5_c01092{font-size:70.576000pt;}
.fs1b_c01092{font-size:71.808000pt;}
.fsf_c01092{font-size:72.336000pt;}
.fs22_c01092{font-size:72.864176pt;}
.fs1_c01092{font-size:74.272176pt;}
.fs2_c01092{font-size:74.800000pt;}
.fs14_c01092{font-size:75.328000pt;}
.fs6_c01092{font-size:75.680000pt;}
.fse_c01092{font-size:76.032176pt;}
.fs26_c01092{font-size:83.072176pt;}
.y0_c01092{bottom:0.000000pt;}
.y1_c01092{bottom:68.000000pt;}
.y29_c01092{bottom:73.102520pt;}
.y28_c01092{bottom:82.923320pt;}
.y27_c01092{bottom:92.422920pt;}
.y26_c01092{bottom:106.683320pt;}
.y25_c01092{bottom:135.828920pt;}
.y24_c01092{bottom:164.974520pt;}
.y23_c01092{bottom:193.798920pt;}
.y22_c01092{bottom:222.315320pt;}
.y21_c01092{bottom:246.704520pt;}
.y20_c01092{bottom:251.144120pt;}
.y1f_c01092{bottom:279.018120pt;}
.y1e_c01092{bottom:307.846920pt;}
.y1d_c01092{bottom:336.358920pt;}
.y1c_c01092{bottom:364.870920pt;}
.y1b_c01092{bottom:392.432520pt;}
.y1a_c01092{bottom:393.387320pt;}
.y19_c01092{bottom:408.906120pt;}
.y18_c01092{bottom:422.211720pt;}
.y17_c01092{bottom:451.361720pt;}
.y16_c01092{bottom:478.923320pt;}
.y15_c01092{bottom:506.480520pt;}
.y11_c01092{bottom:535.947320pt;}
.y14_c01092{bottom:536.264120pt;}
.y3_c01092{bottom:563.508920pt;}
.y13_c01092{bottom:564.776120pt;}
.y10_c01092{bottom:565.092920pt;}
.y12_c01092{bottom:571.428920pt;}
.yf_c01092{bottom:617.043720pt;}
.ye_c01092{bottom:619.894920pt;}
.yd_c01092{bottom:647.456520pt;}
.yc_c01092{bottom:677.240120pt;}
.yb_c01092{bottom:706.385720pt;}
.y2_c01092{bottom:734.264120pt;}
.y9_c01092{bottom:734.897720pt;}
.ya_c01092{bottom:736.160520pt;}
.y8_c01092{bottom:756.440120pt;}
.y7_c01092{bottom:792.238520pt;}
.y6_c01092{bottom:821.067320pt;}
.y5_c01092{bottom:833.418120pt;}
.y4_c01092{bottom:945.565320pt;}
.h20_c01092{height:5.009470pt;}
.h30_c01092{height:17.723176pt;}
.h2f_c01092{height:19.641188pt;}
.h5_c01092{height:20.559000pt;}
.h2e_c01092{height:33.758325pt;}
.h31_c01092{height:34.201406pt;}
.hf_c01092{height:36.290191pt;}
.ha_c01092{height:36.712500pt;}
.h29_c01092{height:37.134029pt;}
.h12_c01092{height:37.978101pt;}
.h13_c01092{height:40.074548pt;}
.h21_c01092{height:41.112225pt;}
.h17_c01092{height:41.118000pt;}
.hc_c01092{height:46.417653pt;}
.h28_c01092{height:47.156484pt;}
.h15_c01092{height:49.056562pt;}
.h25_c01092{height:49.929184pt;}
.h2c_c01092{height:53.233125pt;}
.h18_c01092{height:53.893298pt;}
.h2d_c01092{height:55.966110pt;}
.h14_c01092{height:57.175078pt;}
.h1d_c01092{height:61.126313pt;}
.h24_c01092{height:61.493438pt;}
.hd_c01092{height:62.530016pt;}
.h22_c01092{height:62.875485pt;}
.h1e_c01092{height:63.145684pt;}
.h9_c01092{height:63.220781pt;}
.h6_c01092{height:64.602829pt;}
.h26_c01092{height:64.614184pt;}
.h2b_c01092{height:64.981309pt;}
.hb_c01092{height:65.984704pt;}
.h19_c01092{height:66.330173pt;}
.h1b_c01092{height:67.366406pt;}
.h1f_c01092{height:67.367621pt;}
.h2_c01092{height:68.230078pt;}
.he_c01092{height:68.748281pt;}
.h1a_c01092{height:69.093750pt;}
.h7_c01092{height:69.266484pt;}
.h1c_c01092{height:70.475625pt;}
.h11_c01092{height:70.993828pt;}
.h23_c01092{height:71.512204pt;}
.h2a_c01092{height:71.589375pt;}
.h3_c01092{height:72.894079pt;}
.h4_c01092{height:73.412109pt;}
.h16_c01092{height:73.930313pt;}
.h8_c01092{height:74.275781pt;}
.h10_c01092{height:74.621423pt;}
.h27_c01092{height:86.641684pt;}
.h1_c01092{height:986.666667pt;}
.h0_c01092{height:1122.666667pt;}
.w1_c01092{width:689.333333pt;}
.w0_c01092{width:793.333333pt;}
.x0_c01092{left:0.000000pt;}
.x1_c01092{left:52.000000pt;}
.x2_c01092{left:82.655453pt;}
.xf_c01092{left:131.046653pt;}
.x17_c01092{left:132.045453pt;}
.x5_c01092{left:133.774653pt;}
.x6_c01092{left:161.362653pt;}
.x27_c01092{left:163.228253pt;}
.x2e_c01092{left:174.426253pt;}
.x1c_c01092{left:180.146253pt;}
.x18_c01092{left:181.730253pt;}
.x34_c01092{left:182.861053pt;}
.x50_c01092{left:190.037453pt;}
.x21_c01092{left:191.784253pt;}
.x7_c01092{left:201.107853pt;}
.x3f_c01092{left:210.545853pt;}
.x55_c01092{left:211.694253pt;}
.x6f_c01092{left:220.278653pt;}
.x10_c01092{left:221.185053pt;}
.x63_c01092{left:223.068253pt;}
.x28_c01092{left:230.623053pt;}
.x40_c01092{left:240.866253pt;}
.x2f_c01092{left:242.538253pt;}
.x35_c01092{left:250.445053pt;}
.x8_c01092{left:251.989453pt;}
.x11_c01092{left:260.345053pt;}
.x30_c01092{left:261.352653pt;}
.x56_c01092{left:271.631053pt;}
.x41_c01092{left:274.416253pt;}
.x9_c01092{left:280.263853pt;}
.x29_c01092{left:281.311053pt;}
.x49_c01092{left:290.291453pt;}
.x1d_c01092{left:291.193453pt;}
.x67_c01092{left:298.915453pt;}
.x36_c01092{left:300.415853pt;}
.x42_c01092{left:309.633853pt;}
.xa_c01092{left:311.015453pt;}
.x4d_c01092{left:312.586253pt;}
.x12_c01092{left:319.269853pt;}
.x6b_c01092{left:328.465853pt;}
.x22_c01092{left:329.667053pt;}
.x5f_c01092{left:338.744253pt;}
.x5c_c01092{left:340.535053pt;}
.x43_c01092{left:348.657453pt;}
.x69_c01092{left:358.258253pt;}
.x31_c01092{left:367.889853pt;}
.x59_c01092{left:370.538653pt;}
.x13_c01092{left:379.536653pt;}
.x51_c01092{left:380.557453pt;}
.xb_c01092{left:388.275053pt;}
.x46_c01092{left:389.357453pt;}
.x23_c01092{left:398.843853pt;}
.x3b_c01092{left:406.865053pt;}
.x6c_c01092{left:407.899053pt;}
.x70_c01092{left:408.805453pt;}
.x4e_c01092{left:409.707453pt;}
.x52_c01092{left:410.820653pt;}
.x14_c01092{left:418.661453pt;}
.xc_c01092{left:422.639053pt;}
.x64_c01092{left:424.821453pt;}
.x44_c01092{left:427.580253pt;}
.x32_c01092{left:429.199453pt;}
.x2a_c01092{left:438.681453pt;}
.x2b_c01092{left:441.941853pt;}
.x4_c01092{left:446.284653pt;}
.x2c_c01092{left:448.264653pt;}
.x15_c01092{left:457.368253pt;}
.x53_c01092{left:458.507853pt;}
.x37_c01092{left:466.595053pt;}
.x3c_c01092{left:467.536653pt;}
.x4c_c01092{left:473.595453pt;}
.x47_c01092{left:476.767853pt;}
.x57_c01092{left:485.647053pt;}
.x1e_c01092{left:486.738253pt;}
.xd_c01092{left:487.957053pt;}
.x68_c01092{left:496.352253pt;}
.x33_c01092{left:498.305853pt;}
.x61_c01092{left:504.311853pt;}
.x24_c01092{left:505.851853pt;}
.x48_c01092{left:507.818653pt;}
.x3d_c01092{left:510.564253pt;}
.x62_c01092{left:514.225053pt;}
.x5a_c01092{left:515.505453pt;}
.x19_c01092{left:516.504253pt;}
.xe_c01092{left:525.150253pt;}
.x65_c01092{left:526.443853pt;}
.x71_c01092{left:535.644253pt;}
.x2d_c01092{left:537.157853pt;}
.x1a_c01092{left:544.567453pt;}
.x4a_c01092{left:546.239453pt;}
.x25_c01092{left:555.303453pt;}
.x58_c01092{left:557.301053pt;}
.x6a_c01092{left:563.764653pt;}
.x45_c01092{left:565.093453pt;}
.x60_c01092{left:574.298253pt;}
.x54_c01092{left:575.380653pt;}
.x16_c01092{left:583.001453pt;}
.x1f_c01092{left:584.361053pt;}
.x4f_c01092{left:585.395053pt;}
.x5b_c01092{left:594.102653pt;}
.x1b_c01092{left:595.479853pt;}
.x20_c01092{left:604.763853pt;}
.x6d_c01092{left:612.961053pt;}
.x4b_c01092{left:614.712253pt;}
.x66_c01092{left:617.176253pt;}
.x26_c01092{left:623.719053pt;}
.x39_c01092{left:624.845453pt;}
.x3_c01092{left:625.751853pt;}
.x73_c01092{left:628.695453pt;}
.x3e_c01092{left:633.548653pt;}
.x6e_c01092{left:634.631053pt;}
.x3a_c01092{left:644.143853pt;}
.x38_c01092{left:646.739853pt;}
.x72_c01092{left:652.283853pt;}
.x5d_c01092{left:653.568653pt;}
.x5e_c01092{left:673.623853pt;}
}





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

.ir_c01093:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01093{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01093;src:url('chunks/assets/font_2d5c1df7fadd6aef37250e1e.woff2')format("woff");}.ff1_c01093{font-family:ff1_c01093;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01093;src:url('chunks/assets/font_9bfdccc48766fb00b062f300.woff2')format("woff");}.ff2_c01093{font-family:ff2_c01093;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01093;src:url('chunks/assets/font_373650234b0003f469996206.woff2')format("woff");}.ff3_c01093{font-family:ff3_c01093;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01093;src:url('chunks/assets/font_29b26e355594c4be72fd896a.woff2')format("woff");}.ff4_c01093{font-family:ff4_c01093;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m78_c01093{transform:matrix(0.012196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012196,0.000000,0.000000,0.250000,0,0);}
.m3b_c01093{transform:matrix(0.015626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015626,0.000000,0.000000,0.250000,0,0);}
.m39_c01093{transform:matrix(0.020834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020834,0.000000,0.000000,0.250000,0,0);}
.m3d_c01093{transform:matrix(0.052084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.052084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.052084,0.000000,0.000000,0.250000,0,0);}
.m3a_c01093{transform:matrix(0.058594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.058594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.058594,0.000000,0.000000,0.250000,0,0);}
.m29_c01093{transform:matrix(0.079787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.079787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.079787,0.000000,0.000000,0.250000,0,0);}
.m2b_c01093{transform:matrix(0.082151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.082151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.082151,0.000000,0.000000,0.250000,0,0);}
.m82_c01093{transform:matrix(0.083334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083334,0.000000,0.000000,0.250000,0,0);}
.m2a_c01093{transform:matrix(0.094985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094985,0.000000,0.000000,0.250000,0,0);}
.m70_c01093{transform:matrix(0.097222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097222,0.000000,0.000000,0.250000,0,0);}
.m38_c01093{transform:matrix(0.100695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100695,0.000000,0.000000,0.250000,0,0);}
.m79_c01093{transform:matrix(0.103659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103659,0.000000,0.000000,0.250000,0,0);}
.m3c_c01093{transform:matrix(0.104167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104167,0.000000,0.000000,0.250000,0,0);}
.m3e_c01093{transform:matrix(0.105185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105185,0.000000,0.000000,0.250000,0,0);}
.m2c_c01093{transform:matrix(0.125205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125205,0.000000,0.000000,0.250000,0,0);}
.m7f_c01093{transform:matrix(0.127371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127371,0.000000,0.000000,0.250000,0,0);}
.m81_c01093{transform:matrix(0.134662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134662,0.000000,0.000000,0.250000,0,0);}
.m86_c01093{transform:matrix(0.138560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138560,0.000000,0.000000,0.250000,0,0);}
.m44_c01093{transform:matrix(0.140141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140141,0.000000,0.000000,0.250000,0,0);}
.m43_c01093{transform:matrix(0.140780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140780,0.000000,0.000000,0.250000,0,0);}
.m85_c01093{transform:matrix(0.149149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149149,0.000000,0.000000,0.250000,0,0);}
.m3f_c01093{transform:matrix(0.151042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151042,0.000000,0.000000,0.250000,0,0);}
.m28_c01093{transform:matrix(0.152926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152926,0.000000,0.000000,0.250000,0,0);}
.m4b_c01093{transform:matrix(0.156667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156667,0.000000,0.000000,0.250000,0,0);}
.m60_c01093{transform:matrix(0.166461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166461,0.000000,0.000000,0.250000,0,0);}
.m37_c01093{transform:matrix(0.166543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166543,0.000000,0.000000,0.250000,0,0);}
.m49_c01093{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);}
.m4a_c01093{transform:matrix(0.172222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172222,0.000000,0.000000,0.250000,0,0);}
.m64_c01093{transform:matrix(0.173809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173809,0.000000,0.000000,0.250000,0,0);}
.m46_c01093{transform:matrix(0.174074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174074,0.000000,0.000000,0.250000,0,0);}
.m80_c01093{transform:matrix(0.176830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176830,0.000000,0.000000,0.250000,0,0);}
.m8a_c01093{transform:matrix(0.177558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177558,0.000000,0.000000,0.250000,0,0);}
.m6e_c01093{transform:matrix(0.178053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178053,0.000000,0.000000,0.250000,0,0);}
.m45_c01093{transform:matrix(0.178099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178099,0.000000,0.000000,0.250000,0,0);}
.m88_c01093{transform:matrix(0.178699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178699,0.000000,0.000000,0.250000,0,0);}
.mb9_c01093{transform:matrix(0.180233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180233,0.000000,0.000000,0.250000,0,0);}
.m2d_c01093{transform:matrix(0.183537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183537,0.000000,0.000000,0.250000,0,0);}
.m77_c01093{transform:matrix(0.185976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185976,0.000000,0.000000,0.250000,0,0);}
.m93_c01093{transform:matrix(0.186011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186011,0.000000,0.000000,0.250000,0,0);}
.m71_c01093{transform:matrix(0.199808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199808,0.000000,0.000000,0.250000,0,0);}
.m67_c01093{transform:matrix(0.200320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200320,0.000000,0.000000,0.250000,0,0);}
.m75_c01093{transform:matrix(0.213681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213681,0.000000,0.000000,0.250000,0,0);}
.mb3_c01093{transform:matrix(0.222409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222409,0.000000,0.000000,0.250000,0,0);}
.m41_c01093{transform:matrix(0.224653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224653,0.000000,0.000000,0.250000,0,0);}
.m30_c01093{transform:matrix(0.226274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226274,0.000000,0.000000,0.250000,0,0);}
.m2f_c01093{transform:matrix(0.226762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226762,0.000000,0.000000,0.250000,0,0);}
.m36_c01093{transform:matrix(0.235505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235505,0.000000,0.000000,0.250000,0,0);}
.m42_c01093{transform:matrix(0.235643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235643,0.000000,0.000000,0.250000,0,0);}
.m84_c01093{transform:matrix(0.238244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238244,0.000000,0.000000,0.250000,0,0);}
.m6f_c01093{transform:matrix(0.238497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238497,0.000000,0.000000,0.250000,0,0);}
.m8d_c01093{transform:matrix(0.241376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241376,0.000000,0.000000,0.250000,0,0);}
.m4e_c01093{transform:matrix(0.245566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245566,0.000000,0.000000,0.250000,0,0);}
.m63_c01093{transform:matrix(0.247952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247952,0.000000,0.000000,0.250000,0,0);}
.m0_c01093{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.ma_c01093{transform:matrix(0.250815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250815,0.000000,0.000000,0.250000,0,0);}
.m7_c01093{transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);}
.m8_c01093{transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);}
.m66_c01093{transform:matrix(0.253822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253822,0.000000,0.000000,0.250000,0,0);}
.md_c01093{transform:matrix(0.254748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254748,0.000000,0.000000,0.250000,0,0);}
.m6c_c01093{transform:matrix(0.256195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256195,0.000000,0.000000,0.250000,0,0);}
.ma7_c01093{transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);}
.m4f_c01093{transform:matrix(0.256694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256694,0.000000,0.000000,0.250000,0,0);}
.mc_c01093{transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);}
.m55_c01093{transform:matrix(0.257909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257909,0.000000,0.000000,0.250000,0,0);}
.ma0_c01093{transform:matrix(0.258788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258788,0.000000,0.000000,0.250000,0,0);}
.m9b_c01093{transform:matrix(0.259376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259376,0.000000,0.000000,0.250000,0,0);}
.ma4_c01093{transform:matrix(0.259520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259520,0.000000,0.000000,0.250000,0,0);}
.m61_c01093{transform:matrix(0.261609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261609,0.000000,0.000000,0.250000,0,0);}
.m1b_c01093{transform:matrix(0.263802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263802,0.000000,0.000000,0.250000,0,0);}
.m83_c01093{transform:matrix(0.264099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264099,0.000000,0.000000,0.250000,0,0);}
.m23_c01093{transform:matrix(0.264434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264434,0.000000,0.000000,0.250000,0,0);}
.m9d_c01093{transform:matrix(0.264453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264453,0.000000,0.000000,0.250000,0,0);}
.ma8_c01093{transform:matrix(0.264852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264852,0.000000,0.000000,0.250000,0,0);}
.m4c_c01093{transform:matrix(0.266331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266331,0.000000,0.000000,0.250000,0,0);}
.m8e_c01093{transform:matrix(0.266649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266649,0.000000,0.000000,0.250000,0,0);}
.m72_c01093{transform:matrix(0.268100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268100,0.000000,0.000000,0.250000,0,0);}
.ma5_c01093{transform:matrix(0.268519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268519,0.000000,0.000000,0.250000,0,0);}
.maf_c01093{transform:matrix(0.269522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269522,0.000000,0.000000,0.250000,0,0);}
.m7b_c01093{transform:matrix(0.270269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270269,0.000000,0.000000,0.250000,0,0);}
.mb6_c01093{transform:matrix(0.270951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270951,0.000000,0.000000,0.250000,0,0);}
.m10_c01093{transform:matrix(0.271292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271292,0.000000,0.000000,0.250000,0,0);}
.m4d_c01093{transform:matrix(0.271570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271570,0.000000,0.000000,0.250000,0,0);}
.m7d_c01093{transform:matrix(0.271954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271954,0.000000,0.000000,0.250000,0,0);}
.m9c_c01093{transform:matrix(0.272536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272536,0.000000,0.000000,0.250000,0,0);}
.m9e_c01093{transform:matrix(0.274921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274921,0.000000,0.000000,0.250000,0,0);}
.mac_c01093{transform:matrix(0.275180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275180,0.000000,0.000000,0.250000,0,0);}
.m9f_c01093{transform:matrix(0.275286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275286,0.000000,0.000000,0.250000,0,0);}
.m27_c01093{transform:matrix(0.275411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275411,0.000000,0.000000,0.250000,0,0);}
.m58_c01093{transform:matrix(0.276028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276028,0.000000,0.000000,0.250000,0,0);}
.m5b_c01093{transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);}
.m26_c01093{transform:matrix(0.277762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277762,0.000000,0.000000,0.250000,0,0);}
.m17_c01093{transform:matrix(0.279077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279077,0.000000,0.000000,0.250000,0,0);}
.mab_c01093{transform:matrix(0.279494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279494,0.000000,0.000000,0.250000,0,0);}
.m90_c01093{transform:matrix(0.279706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279706,0.000000,0.000000,0.250000,0,0);}
.ma2_c01093{transform:matrix(0.279975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279975,0.000000,0.000000,0.250000,0,0);}
.m1e_c01093{transform:matrix(0.280323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280323,0.000000,0.000000,0.250000,0,0);}
.m16_c01093{transform:matrix(0.280468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280468,0.000000,0.000000,0.250000,0,0);}
.m69_c01093{transform:matrix(0.280689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280689,0.000000,0.000000,0.250000,0,0);}
.m7c_c01093{transform:matrix(0.280947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280947,0.000000,0.000000,0.250000,0,0);}
.m51_c01093{transform:matrix(0.281191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281191,0.000000,0.000000,0.250000,0,0);}
.m22_c01093{transform:matrix(0.281448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281448,0.000000,0.000000,0.250000,0,0);}
.me_c01093{transform:matrix(0.282941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282941,0.000000,0.000000,0.250000,0,0);}
.m3_c01093{transform:matrix(0.283373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283373,0.000000,0.000000,0.250000,0,0);}
.m94_c01093{transform:matrix(0.284164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284164,0.000000,0.000000,0.250000,0,0);}
.m8b_c01093{transform:matrix(0.284376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284376,0.000000,0.000000,0.250000,0,0);}
.mb_c01093{transform:matrix(0.284464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284464,0.000000,0.000000,0.250000,0,0);}
.mb5_c01093{transform:matrix(0.284786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284786,0.000000,0.000000,0.250000,0,0);}
.m87_c01093{transform:matrix(0.284841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284841,0.000000,0.000000,0.250000,0,0);}
.m1d_c01093{transform:matrix(0.284859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284859,0.000000,0.000000,0.250000,0,0);}
.ma1_c01093{transform:matrix(0.285056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285056,0.000000,0.000000,0.250000,0,0);}
.m52_c01093{transform:matrix(0.285460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285460,0.000000,0.000000,0.250000,0,0);}
.m65_c01093{transform:matrix(0.285833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285833,0.000000,0.000000,0.250000,0,0);}
.m20_c01093{transform:matrix(0.286390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286390,0.000000,0.000000,0.250000,0,0);}
.mb4_c01093{transform:matrix(0.286459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286459,0.000000,0.000000,0.250000,0,0);}
.m96_c01093{transform:matrix(0.286844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286844,0.000000,0.000000,0.250000,0,0);}
.m31_c01093{transform:matrix(0.287335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287335,0.000000,0.000000,0.250000,0,0);}
.m21_c01093{transform:matrix(0.287355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287355,0.000000,0.000000,0.250000,0,0);}
.ma6_c01093{transform:matrix(0.287448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287448,0.000000,0.000000,0.250000,0,0);}
.m11_c01093{transform:matrix(0.287643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287643,0.000000,0.000000,0.250000,0,0);}
.m6a_c01093{transform:matrix(0.288393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288393,0.000000,0.000000,0.250000,0,0);}
.m89_c01093{transform:matrix(0.288991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288991,0.000000,0.000000,0.250000,0,0);}
.mb8_c01093{transform:matrix(0.289676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289676,0.000000,0.000000,0.250000,0,0);}
.m1_c01093{transform:matrix(0.290285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290285,0.000000,0.000000,0.250000,0,0);}
.m5a_c01093{transform:matrix(0.290287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290287,0.000000,0.000000,0.250000,0,0);}
.m2e_c01093{transform:matrix(0.290450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290450,0.000000,0.000000,0.250000,0,0);}
.m32_c01093{transform:matrix(0.291171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291171,0.000000,0.000000,0.250000,0,0);}
.m99_c01093{transform:matrix(0.291456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291456,0.000000,0.000000,0.250000,0,0);}
.maa_c01093{transform:matrix(0.291658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291658,0.000000,0.000000,0.250000,0,0);}
.m74_c01093{transform:matrix(0.291664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291664,0.000000,0.000000,0.250000,0,0);}
.m6d_c01093{transform:matrix(0.293174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293174,0.000000,0.000000,0.250000,0,0);}
.mf_c01093{transform:matrix(0.293612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293612,0.000000,0.000000,0.250000,0,0);}
.m73_c01093{transform:matrix(0.294119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294119,0.000000,0.000000,0.250000,0,0);}
.m24_c01093{transform:matrix(0.294191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294191,0.000000,0.000000,0.250000,0,0);}
.mb7_c01093{transform:matrix(0.295532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295532,0.000000,0.000000,0.250000,0,0);}
.m59_c01093{transform:matrix(0.296104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296104,0.000000,0.000000,0.250000,0,0);}
.m33_c01093{transform:matrix(0.297157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297157,0.000000,0.000000,0.250000,0,0);}
.m5c_c01093{transform:matrix(0.298004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298004,0.000000,0.000000,0.250000,0,0);}
.mb1_c01093{transform:matrix(0.298030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298030,0.000000,0.000000,0.250000,0,0);}
.m25_c01093{transform:matrix(0.298140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298140,0.000000,0.000000,0.250000,0,0);}
.m6b_c01093{transform:matrix(0.298208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298208,0.000000,0.000000,0.250000,0,0);}
.m53_c01093{transform:matrix(0.298739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298739,0.000000,0.000000,0.250000,0,0);}
.m15_c01093{transform:matrix(0.298935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298935,0.000000,0.000000,0.250000,0,0);}
.m7e_c01093{transform:matrix(0.299762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299762,0.000000,0.000000,0.250000,0,0);}
.m8c_c01093{transform:matrix(0.300320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300320,0.000000,0.000000,0.250000,0,0);}
.m97_c01093{transform:matrix(0.300918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300918,0.000000,0.000000,0.250000,0,0);}
.mb0_c01093{transform:matrix(0.301159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301159,0.000000,0.000000,0.250000,0,0);}
.m4_c01093{transform:matrix(0.303148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303148,0.000000,0.000000,0.250000,0,0);}
.m50_c01093{transform:matrix(0.303747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303747,0.000000,0.000000,0.250000,0,0);}
.m98_c01093{transform:matrix(0.305736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305736,0.000000,0.000000,0.250000,0,0);}
.mae_c01093{transform:matrix(0.306980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306980,0.000000,0.000000,0.250000,0,0);}
.m54_c01093{transform:matrix(0.307462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307462,0.000000,0.000000,0.250000,0,0);}
.m91_c01093{transform:matrix(0.308058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308058,0.000000,0.000000,0.250000,0,0);}
.m9a_c01093{transform:matrix(0.309832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309832,0.000000,0.000000,0.250000,0,0);}
.m5f_c01093{transform:matrix(0.311019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311019,0.000000,0.000000,0.250000,0,0);}
.m5d_c01093{transform:matrix(0.313642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313642,0.000000,0.000000,0.250000,0,0);}
.m57_c01093{transform:matrix(0.314634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314634,0.000000,0.000000,0.250000,0,0);}
.m35_c01093{transform:matrix(0.316112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316112,0.000000,0.000000,0.250000,0,0);}
.mad_c01093{transform:matrix(0.316457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316457,0.000000,0.000000,0.250000,0,0);}
.m1c_c01093{transform:matrix(0.317593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317593,0.000000,0.000000,0.250000,0,0);}
.m6_c01093{transform:matrix(0.317692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317692,0.000000,0.000000,0.250000,0,0);}
.m62_c01093{transform:matrix(0.322800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322800,0.000000,0.000000,0.250000,0,0);}
.mba_c01093{transform:matrix(0.323704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323704,0.000000,0.000000,0.250000,0,0);}
.m1f_c01093{transform:matrix(0.330678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330678,0.000000,0.000000,0.250000,0,0);}
.m12_c01093{transform:matrix(0.331756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331756,0.000000,0.000000,0.250000,0,0);}
.m95_c01093{transform:matrix(0.331929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331929,0.000000,0.000000,0.250000,0,0);}
.m34_c01093{transform:matrix(0.333522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333522,0.000000,0.000000,0.250000,0,0);}
.m13_c01093{transform:matrix(0.333969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333969,0.000000,0.000000,0.250000,0,0);}
.m2_c01093{transform:matrix(0.334767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334767,0.000000,0.000000,0.250000,0,0);}
.m48_c01093{transform:matrix(0.335405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335405,0.000000,0.000000,0.250000,0,0);}
.m14_c01093{transform:matrix(0.336240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336240,0.000000,0.000000,0.250000,0,0);}
.m68_c01093{transform:matrix(0.336704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336704,0.000000,0.000000,0.250000,0,0);}
.m19_c01093{transform:matrix(0.337010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337010,0.000000,0.000000,0.250000,0,0);}
.mb2_c01093{transform:matrix(0.337011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337011,0.000000,0.000000,0.250000,0,0);}
.m5e_c01093{transform:matrix(0.337533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337533,0.000000,0.000000,0.250000,0,0);}
.m1a_c01093{transform:matrix(0.349898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349898,0.000000,0.000000,0.250000,0,0);}
.m7a_c01093{transform:matrix(0.355052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355052,0.000000,0.000000,0.250000,0,0);}
.m92_c01093{transform:matrix(0.355562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355562,0.000000,0.000000,0.250000,0,0);}
.m9_c01093{transform:matrix(0.355893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355893,0.000000,0.000000,0.250000,0,0);}
.m47_c01093{transform:matrix(0.361256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361256,0.000000,0.000000,0.250000,0,0);}
.m56_c01093{transform:matrix(0.364245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364245,0.000000,0.000000,0.250000,0,0);}
.ma9_c01093{transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);}
.m5_c01093{transform:matrix(0.390366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390366,0.000000,0.000000,0.250000,0,0);}
.m18_c01093{transform:matrix(0.396465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396465,0.000000,0.000000,0.250000,0,0);}
.m8f_c01093{transform:matrix(0.398520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398520,0.000000,0.000000,0.250000,0,0);}
.ma3_c01093{transform:matrix(0.399950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399950,0.000000,0.000000,0.250000,0,0);}
.m76_c01093{transform:matrix(0.400612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400612,0.000000,0.000000,0.250000,0,0);}
.m40_c01093{transform:matrix(0.481591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481591,0.000000,0.000000,0.250000,0,0);}
.v0_c01093{vertical-align:0.000000px;}
.v1_c01093{vertical-align:34.194600px;}
.ls1c_c01093{letter-spacing:-4.213440px;}
.ls15_c01093{letter-spacing:-3.056130px;}
.ls28_c01093{letter-spacing:-2.938327px;}
.ls10_c01093{letter-spacing:-2.855167px;}
.lsf_c01093{letter-spacing:-2.778930px;}
.ls2d_c01093{letter-spacing:-2.772000px;}
.ls18_c01093{letter-spacing:-2.702700px;}
.ls1f_c01093{letter-spacing:-2.661127px;}
.ls14_c01093{letter-spacing:-2.654467px;}
.ls30_c01093{letter-spacing:-2.494800px;}
.ls31_c01093{letter-spacing:-2.453227px;}
.ls1a_c01093{letter-spacing:-2.439367px;}
.ls24_c01093{letter-spacing:-2.438667px;}
.ls19_c01093{letter-spacing:-2.293830px;}
.ls2a_c01093{letter-spacing:-2.273040px;}
.ls7_c01093{letter-spacing:-1.888999px;}
.ls13_c01093{letter-spacing:-1.628550px;}
.ls2e_c01093{letter-spacing:-1.434517px;}
.ls25_c01093{letter-spacing:-0.936758px;}
.ls1_c01093{letter-spacing:0.000000px;}
.ls17_c01093{letter-spacing:0.405900px;}
.ls22_c01093{letter-spacing:0.603090px;}
.lsd_c01093{letter-spacing:1.011228px;}
.ls5_c01093{letter-spacing:1.802834px;}
.ls20_c01093{letter-spacing:2.104067px;}
.lsb_c01093{letter-spacing:2.600301px;}
.ls33_c01093{letter-spacing:2.811600px;}
.ls12_c01093{letter-spacing:3.211164px;}
.ls29_c01093{letter-spacing:3.247200px;}
.ls6_c01093{letter-spacing:3.326400px;}
.ls11_c01093{letter-spacing:3.366000px;}
.ls1e_c01093{letter-spacing:3.484810px;}
.ls32_c01093{letter-spacing:3.504610px;}
.ls2f_c01093{letter-spacing:3.564000px;}
.ls1d_c01093{letter-spacing:3.623400px;}
.ls23_c01093{letter-spacing:3.663000px;}
.ls2b_c01093{letter-spacing:3.771900px;}
.ls2_c01093{letter-spacing:3.791700px;}
.lsa_c01093{letter-spacing:3.801610px;}
.ls4_c01093{letter-spacing:3.870900px;}
.ls8_c01093{letter-spacing:3.940200px;}
.ls3_c01093{letter-spacing:4.078810px;}
.ls9_c01093{letter-spacing:4.118400px;}
.ls26_c01093{letter-spacing:55.598598px;}
.lse_c01093{letter-spacing:58.449798px;}
.ls21_c01093{letter-spacing:59.875398px;}
.ls27_c01093{letter-spacing:61.300998px;}
.ls1b_c01093{letter-spacing:64.152198px;}
.ls2c_c01093{letter-spacing:65.577798px;}
.lsc_c01093{letter-spacing:67.003200px;}
.ls16_c01093{letter-spacing:68.428998px;}
.ls0_c01093{letter-spacing:224.818638px;}
.sc__c01093{text-shadow:none;}
.sc0_c01093{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01093{-webkit-text-stroke:0px transparent;}
.sc0_c01093{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01093{word-spacing:-19.354500px;}
.ws1_c01093{word-spacing:0.000000px;}
._0_c01093{margin-left:-12.464100px;}
._6_c01093{margin-left:-7.983360px;}
._2_c01093{width:6.375600px;}
._1_c01093{width:8.437968px;}
._4_c01093{width:27.442652px;}
._3_c01093{width:33.966900px;}
._5_c01093{width:49.818274px;}
.fc0_c01093{color:transparent;}
.fs10_c01093{font-size:8.118000px;}
.fs0_c01093{font-size:27.720000px;}
.fsd_c01093{font-size:40.986198px;}
.fs19_c01093{font-size:45.144000px;}
.fsc_c01093{font-size:46.530000px;}
.fs1c_c01093{font-size:55.598598px;}
.fs26_c01093{font-size:56.232000px;}
.fs9_c01093{font-size:58.449798px;}
.fs17_c01093{font-size:59.875398px;}
.fs1d_c01093{font-size:61.300998px;}
.fs14_c01093{font-size:64.152198px;}
.fs1f_c01093{font-size:64.944000px;}
.fs12_c01093{font-size:65.538000px;}
.fs21_c01093{font-size:65.577798px;}
.fs4_c01093{font-size:66.528000px;}
.fs8_c01093{font-size:67.003200px;}
.fsb_c01093{font-size:67.320000px;}
.fsf_c01093{font-size:68.428998px;}
.fs13_c01093{font-size:69.696198px;}
.fs24_c01093{font-size:70.092198px;}
.fs23_c01093{font-size:71.280000px;}
.fs16_c01093{font-size:72.468000px;}
.fs1a_c01093{font-size:73.260000px;}
.fs25_c01093{font-size:74.844000px;}
.fs20_c01093{font-size:75.438000px;}
.fs1_c01093{font-size:75.834000px;}
.fs7_c01093{font-size:76.032198px;}
.fs11_c01093{font-size:77.220000px;}
.fs3_c01093{font-size:77.418000px;}
.fs5_c01093{font-size:78.804000px;}
.fs22_c01093{font-size:79.200000px;}
.fsa_c01093{font-size:79.398000px;}
.fs2_c01093{font-size:81.576198px;}
.fs6_c01093{font-size:82.368000px;}
.fs1e_c01093{font-size:83.952198px;}
.fs18_c01093{font-size:84.942198px;}
.fse_c01093{font-size:87.318000px;}
.fs1b_c01093{font-size:107.712198px;}
.fs15_c01093{font-size:120.384000px;}
.y0_c01093{bottom:0.000000px;}
.y1_c01093{bottom:76.500000px;}
.y1e_c01093{bottom:122.157135px;}
.y1d_c01093{bottom:153.876735px;}
.y1c_c01093{bottom:186.665535px;}
.y1b_c01093{bottom:219.810735px;}
.y1a_c01093{bottom:252.238185px;}
.y19_c01093{bottom:283.962735px;}
.y18_c01093{bottom:315.320985px;}
.y17_c01093{bottom:348.109785px;}
.y16_c01093{bottom:380.190735px;}
.y14_c01093{bottom:404.782335px;}
.y15_c01093{bottom:413.330985px;}
.y13_c01093{bottom:413.692335px;}
.y12_c01093{bottom:414.043785px;}
.y11_c01093{bottom:474.275385px;}
.y10_c01093{bottom:477.844335px;}
.yf_c01093{bottom:509.920335px;}
.ye_c01093{bottom:541.991385px;}
.yd_c01093{bottom:604.717785px;}
.yc_c01093{bottom:635.368185px;}
.yb_c01093{bottom:700.594335px;}
.ya_c01093{bottom:731.244735px;}
.y9_c01093{bottom:796.822335px;}
.y8_c01093{bottom:828.893385px;}
.y7_c01093{bottom:860.261535px;}
.y6_c01093{bottom:892.688985px;}
.y5_c01093{bottom:924.764985px;}
.y3_c01093{bottom:955.061955px;}
.y2_c01093{bottom:1015.290585px;}
.y4_c01093{bottom:1060.196985px;}
.h11_c01093{height:7.967373px;}
.h2_c01093{height:28.911094px;}
.h1d_c01093{height:37.028666px;}
.hb_c01093{height:38.927565px;}
.h18_c01093{height:39.877015px;}
.h1e_c01093{height:40.826465px;}
.h15_c01093{height:42.725364px;}
.h24_c01093{height:42.747324px;}
.h22_c01093{height:43.674813px;}
.ha_c01093{height:44.624131px;}
.h10_c01093{height:45.573713px;}
.h1a_c01093{height:47.083781px;}
.he_c01093{height:48.529336px;}
.h28_c01093{height:55.188633px;}
.h20_c01093{height:67.734563px;}
.h13_c01093{height:68.354086px;}
.h6_c01093{height:69.386625px;}
.h25_c01093{height:69.922617px;}
.hd_c01093{height:70.212656px;}
.h17_c01093{height:71.123379px;}
.h1b_c01093{height:71.900684px;}
.h14_c01093{height:72.690957px;}
.h26_c01093{height:73.103972px;}
.h27_c01093{height:73.455293px;}
.h21_c01093{height:74.038271px;}
.h3_c01093{height:74.426924px;}
.h9_c01093{height:74.621444px;}
.h12_c01093{height:75.787207px;}
.h5_c01093{height:75.981533px;}
.h7_c01093{height:77.341816px;}
.h23_c01093{height:77.730469px;}
.hc_c01093{height:77.924795px;}
.h4_c01093{height:80.062577px;}
.h8_c01093{height:80.839688px;}
.h1f_c01093{height:82.394491px;}
.h19_c01093{height:83.366122px;}
.hf_c01093{height:91.069945px;}
.h1c_c01093{height:110.176133px;}
.h16_c01093{height:118.150313px;}
.h1_c01093{height:1110.000000px;}
.h0_c01093{height:1263.000000px;}
.w1_c01093{width:775.500000px;}
.w0_c01093{width:892.500000px;}
.x0_c01093{left:0.000000px;}
.x2_c01093{left:49.773885px;}
.x1_c01093{left:58.500000px;}
.x56_c01093{left:84.077385px;}
.x27_c01093{left:85.502985px;}
.x3_c01093{left:96.107865px;}
.x7d_c01093{left:138.581835px;}
.x57_c01093{left:139.596585px;}
.x28_c01093{left:141.428085px;}
.x5_c01093{left:142.571535px;}
.x15_c01093{left:144.566385px;}
.x26_c01093{left:152.842785px;}
.x55_c01093{left:168.286785px;}
.x62_c01093{left:173.558535px;}
.x1f_c01093{left:185.294985px;}
.xf_c01093{left:186.982935px;}
.x45_c01093{left:195.645435px;}
.x63_c01093{left:196.724535px;}
.x6_c01093{left:208.119435px;}
.x6e_c01093{left:218.464935px;}
.x2f_c01093{left:220.014285px;}
.x46_c01093{left:229.998435px;}
.x73_c01093{left:239.636085px;}
.x4a_c01093{left:240.700335px;}
.x3f_c01093{left:251.719035px;}
.x30_c01093{left:253.555485px;}
.x2d_c01093{left:262.950585px;}
.x16_c01093{left:264.742485px;}
.x58_c01093{left:266.960085px;}
.x4b_c01093{left:274.538535px;}
.x79_c01093{left:283.270335px;}
.x74_c01093{left:284.542485px;}
.x64_c01093{left:295.447335px;}
.x40_c01093{left:296.625435px;}
.x10_c01093{left:298.442085px;}
.x54_c01093{left:305.377035px;}
.x6f_c01093{left:307.000635px;}
.x7_c01093{left:319.014285px;}
.x31_c01093{left:320.504235px;}
.x4c_c01093{left:328.582635px;}
.x11_c01093{left:330.691335px;}
.x8_c01093{left:332.616885px;}
.x6b_c01093{left:338.591535px;}
.x75_c01093{left:339.932985px;}
.x29_c01093{left:341.774385px;}
.x70_c01093{left:351.456585px;}
.x17_c01093{left:353.203935px;}
.x20_c01093{left:354.317685px;}
.x2e_c01093{left:362.381235px;}
.x4d_c01093{left:363.811785px;}
.x32_c01093{left:366.672885px;}
.x59_c01093{left:372.786135px;}
.x41_c01093{left:375.275985px;}
.x6c_c01093{left:384.567135px;}
.x68_c01093{left:387.675735px;}
.x5f_c01093{left:395.952135px;}
.x2a_c01093{left:398.090535px;}
.x7b_c01093{left:405.530385px;}
.x76_c01093{left:407.505435px;}
.x4e_c01093{left:408.802335px;}
.x21_c01093{left:409.960635px;}
.x7e_c01093{left:418.068735px;}
.x12_c01093{left:420.558585px;}
.x33_c01093{left:422.637585px;}
.x69_c01093{left:427.488585px;}
.x5a_c01093{left:429.206235px;}
.x34_c01093{left:430.874385px;}
.x18_c01093{left:432.453435px;}
.x9_c01093{left:442.011885px;}
.x35_c01093{left:451.901985px;}
.x19_c01093{left:453.456285px;}
.x6a_c01093{left:460.767435px;}
.x5b_c01093{left:474.246285px;}
.xa_c01093{left:476.280735px;}
.x42_c01093{left:484.334385px;}
.x36_c01093{left:485.408535px;}
.x22_c01093{left:487.319235px;}
.x65_c01093{left:495.892635px;}
.x2b_c01093{left:508.178535px;}
.x43_c01093{left:509.643735px;}
.x7c_c01093{left:516.558885px;}
.x47_c01093{left:517.949835px;}
.x37_c01093{left:519.370485px;}
.x71_c01093{left:528.983385px;}
.x38_c01093{left:530.314935px;}
.xb_c01093{left:531.532635px;}
.x60_c01093{left:539.170485px;}
.x23_c01093{left:542.506785px;}
.x77_c01093{left:550.065435px;}
.x4f_c01093{left:553.822485px;}
.x39_c01093{left:555.574785px;}
.x1a_c01093{left:563.182935px;}
.xc_c01093{left:564.321435px;}
.x5c_c01093{left:572.330535px;}
.x3a_c01093{left:573.780885px;}
.x24_c01093{left:585.576735px;}
.x13_c01093{left:587.368635px;}
.x78_c01093{left:593.358135px;}
.x7a_c01093{left:594.942135px;}
.x1b_c01093{left:596.689485px;}
.x2c_c01093{left:606.228135px;}
.x5d_c01093{left:607.312185px;}
.xd_c01093{left:608.772435px;}
.x1c_c01093{left:619.895085px;}
.x50_c01093{left:627.869535px;}
.x14_c01093{left:630.126735px;}
.x25_c01093{left:631.190985px;}
.x3b_c01093{left:632.369085px;}
.x3c_c01093{left:639.304035px;}
.xe_c01093{left:642.348285px;}
.x66_c01093{left:649.352535px;}
.x48_c01093{left:651.302835px;}
.x3d_c01093{left:656.940885px;}
.x6d_c01093{left:660.861285px;}
.x3e_c01093{left:662.940285px;}
.x1d_c01093{left:664.113435px;}
.x51_c01093{left:674.424285px;}
.x61_c01093{left:682.576935px;}
.x49_c01093{left:685.240035px;}
.x72_c01093{left:692.793735px;}
.x44_c01093{left:695.268735px;}
.x1e_c01093{left:696.892335px;}
.x52_c01093{left:699.293085px;}
.x53_c01093{left:704.941035px;}
.x4_c01093{left:706.817085px;}
.x5e_c01093{left:715.974585px;}
.x67_c01093{left:717.424935px;}
@media print{
.v0_c01093{vertical-align:0.000000pt;}
.v1_c01093{vertical-align:30.395200pt;}
.ls1c_c01093{letter-spacing:-3.745280pt;}
.ls15_c01093{letter-spacing:-2.716560pt;}
.ls28_c01093{letter-spacing:-2.611846pt;}
.ls10_c01093{letter-spacing:-2.537926pt;}
.lsf_c01093{letter-spacing:-2.470160pt;}
.ls2d_c01093{letter-spacing:-2.464000pt;}
.ls18_c01093{letter-spacing:-2.402400pt;}
.ls1f_c01093{letter-spacing:-2.365446pt;}
.ls14_c01093{letter-spacing:-2.359526pt;}
.ls30_c01093{letter-spacing:-2.217600pt;}
.ls31_c01093{letter-spacing:-2.180646pt;}
.ls1a_c01093{letter-spacing:-2.168326pt;}
.ls24_c01093{letter-spacing:-2.167704pt;}
.ls19_c01093{letter-spacing:-2.038960pt;}
.ls2a_c01093{letter-spacing:-2.020480pt;}
.ls7_c01093{letter-spacing:-1.679110pt;}
.ls13_c01093{letter-spacing:-1.447600pt;}
.ls2e_c01093{letter-spacing:-1.275126pt;}
.ls25_c01093{letter-spacing:-0.832674pt;}
.ls1_c01093{letter-spacing:0.000000pt;}
.ls17_c01093{letter-spacing:0.360800pt;}
.ls22_c01093{letter-spacing:0.536080pt;}
.lsd_c01093{letter-spacing:0.898870pt;}
.ls5_c01093{letter-spacing:1.602519pt;}
.ls20_c01093{letter-spacing:1.870282pt;}
.lsb_c01093{letter-spacing:2.311379pt;}
.ls33_c01093{letter-spacing:2.499200pt;}
.ls12_c01093{letter-spacing:2.854368pt;}
.ls29_c01093{letter-spacing:2.886400pt;}
.ls6_c01093{letter-spacing:2.956800pt;}
.ls11_c01093{letter-spacing:2.992000pt;}
.ls1e_c01093{letter-spacing:3.097609pt;}
.ls32_c01093{letter-spacing:3.115209pt;}
.ls2f_c01093{letter-spacing:3.168000pt;}
.ls1d_c01093{letter-spacing:3.220800pt;}
.ls23_c01093{letter-spacing:3.256000pt;}
.ls2b_c01093{letter-spacing:3.352800pt;}
.ls2_c01093{letter-spacing:3.370400pt;}
.lsa_c01093{letter-spacing:3.379209pt;}
.ls4_c01093{letter-spacing:3.440800pt;}
.ls8_c01093{letter-spacing:3.502400pt;}
.ls3_c01093{letter-spacing:3.625609pt;}
.ls9_c01093{letter-spacing:3.660800pt;}
.ls26_c01093{letter-spacing:49.420976pt;}
.lse_c01093{letter-spacing:51.955376pt;}
.ls21_c01093{letter-spacing:53.222576pt;}
.ls27_c01093{letter-spacing:54.489776pt;}
.ls1b_c01093{letter-spacing:57.024176pt;}
.ls2c_c01093{letter-spacing:58.291376pt;}
.lsc_c01093{letter-spacing:59.558400pt;}
.ls16_c01093{letter-spacing:60.825776pt;}
.ls0_c01093{letter-spacing:199.838789pt;}
.ws0_c01093{word-spacing:-17.204000pt;}
.ws1_c01093{word-spacing:0.000000pt;}
._0_c01093{margin-left:-11.079200pt;}
._6_c01093{margin-left:-7.096320pt;}
._2_c01093{width:5.667200pt;}
._1_c01093{width:7.500416pt;}
._4_c01093{width:24.393468pt;}
._3_c01093{width:30.192800pt;}
._5_c01093{width:44.282910pt;}
.fs10_c01093{font-size:7.216000pt;}
.fs0_c01093{font-size:24.640000pt;}
.fsd_c01093{font-size:36.432176pt;}
.fs19_c01093{font-size:40.128000pt;}
.fsc_c01093{font-size:41.360000pt;}
.fs1c_c01093{font-size:49.420976pt;}
.fs26_c01093{font-size:49.984000pt;}
.fs9_c01093{font-size:51.955376pt;}
.fs17_c01093{font-size:53.222576pt;}
.fs1d_c01093{font-size:54.489776pt;}
.fs14_c01093{font-size:57.024176pt;}
.fs1f_c01093{font-size:57.728000pt;}
.fs12_c01093{font-size:58.256000pt;}
.fs21_c01093{font-size:58.291376pt;}
.fs4_c01093{font-size:59.136000pt;}
.fs8_c01093{font-size:59.558400pt;}
.fsb_c01093{font-size:59.840000pt;}
.fsf_c01093{font-size:60.825776pt;}
.fs13_c01093{font-size:61.952176pt;}
.fs24_c01093{font-size:62.304176pt;}
.fs23_c01093{font-size:63.360000pt;}
.fs16_c01093{font-size:64.416000pt;}
.fs1a_c01093{font-size:65.120000pt;}
.fs25_c01093{font-size:66.528000pt;}
.fs20_c01093{font-size:67.056000pt;}
.fs1_c01093{font-size:67.408000pt;}
.fs7_c01093{font-size:67.584176pt;}
.fs11_c01093{font-size:68.640000pt;}
.fs3_c01093{font-size:68.816000pt;}
.fs5_c01093{font-size:70.048000pt;}
.fs22_c01093{font-size:70.400000pt;}
.fsa_c01093{font-size:70.576000pt;}
.fs2_c01093{font-size:72.512176pt;}
.fs6_c01093{font-size:73.216000pt;}
.fs1e_c01093{font-size:74.624176pt;}
.fs18_c01093{font-size:75.504176pt;}
.fse_c01093{font-size:77.616000pt;}
.fs1b_c01093{font-size:95.744176pt;}
.fs15_c01093{font-size:107.008000pt;}
.y0_c01093{bottom:0.000000pt;}
.y1_c01093{bottom:68.000000pt;}
.y1e_c01093{bottom:108.584120pt;}
.y1d_c01093{bottom:136.779320pt;}
.y1c_c01093{bottom:165.924920pt;}
.y1b_c01093{bottom:195.387320pt;}
.y1a_c01093{bottom:224.211720pt;}
.y19_c01093{bottom:252.411320pt;}
.y18_c01093{bottom:280.285320pt;}
.y17_c01093{bottom:309.430920pt;}
.y16_c01093{bottom:337.947320pt;}
.y14_c01093{bottom:359.806520pt;}
.y15_c01093{bottom:367.405320pt;}
.y13_c01093{bottom:367.726520pt;}
.y12_c01093{bottom:368.038920pt;}
.y11_c01093{bottom:421.578120pt;}
.y10_c01093{bottom:424.750520pt;}
.yf_c01093{bottom:453.262520pt;}
.ye_c01093{bottom:481.770120pt;}
.yd_c01093{bottom:537.526920pt;}
.yc_c01093{bottom:564.771720pt;}
.yb_c01093{bottom:622.750520pt;}
.ya_c01093{bottom:649.995320pt;}
.y9_c01093{bottom:708.286520pt;}
.y8_c01093{bottom:736.794120pt;}
.y7_c01093{bottom:764.676920pt;}
.y6_c01093{bottom:793.501320pt;}
.y5_c01093{bottom:822.013320pt;}
.y3_c01093{bottom:848.943960pt;}
.y2_c01093{bottom:902.480520pt;}
.y4_c01093{bottom:942.397320pt;}
.h11_c01093{height:7.082109pt;}
.h2_c01093{height:25.698750pt;}
.h1d_c01093{height:32.914370pt;}
.hb_c01093{height:34.602280pt;}
.h18_c01093{height:35.446236pt;}
.h1e_c01093{height:36.290191pt;}
.h15_c01093{height:37.978101pt;}
.h24_c01093{height:37.997621pt;}
.h22_c01093{height:38.822056pt;}
.ha_c01093{height:39.665894pt;}
.h10_c01093{height:40.509967pt;}
.h1a_c01093{height:41.852250pt;}
.he_c01093{height:43.137188pt;}
.h28_c01093{height:49.056562pt;}
.h20_c01093{height:60.208500pt;}
.h13_c01093{height:60.759188pt;}
.h6_c01093{height:61.677000pt;}
.h25_c01093{height:62.153438pt;}
.hd_c01093{height:62.411250pt;}
.h17_c01093{height:63.220781pt;}
.h1b_c01093{height:63.911719pt;}
.h14_c01093{height:64.614184pt;}
.h26_c01093{height:64.981309pt;}
.h27_c01093{height:65.293594pt;}
.h21_c01093{height:65.811797pt;}
.h3_c01093{height:66.157266pt;}
.h9_c01093{height:66.330173pt;}
.h12_c01093{height:67.366406pt;}
.h5_c01093{height:67.539141pt;}
.h7_c01093{height:68.748281pt;}
.h23_c01093{height:69.093750pt;}
.hc_c01093{height:69.266484pt;}
.h4_c01093{height:71.166735pt;}
.h8_c01093{height:71.857500pt;}
.h1f_c01093{height:73.239548pt;}
.h19_c01093{height:74.103220pt;}
.hf_c01093{height:80.951063pt;}
.h1c_c01093{height:97.934341pt;}
.h16_c01093{height:105.022500pt;}
.h1_c01093{height:986.666667pt;}
.h0_c01093{height:1122.666667pt;}
.w1_c01093{width:689.333333pt;}
.w0_c01093{width:793.333333pt;}
.x0_c01093{left:0.000000pt;}
.x2_c01093{left:44.243453pt;}
.x1_c01093{left:52.000000pt;}
.x56_c01093{left:74.735453pt;}
.x27_c01093{left:76.002653pt;}
.x3_c01093{left:85.429213pt;}
.x7d_c01093{left:123.183853pt;}
.x57_c01093{left:124.085853pt;}
.x28_c01093{left:125.713853pt;}
.x5_c01093{left:126.730253pt;}
.x15_c01093{left:128.503453pt;}
.x26_c01093{left:135.860253pt;}
.x55_c01093{left:149.588253pt;}
.x62_c01093{left:154.274253pt;}
.x1f_c01093{left:164.706653pt;}
.xf_c01093{left:166.207053pt;}
.x45_c01093{left:173.907053pt;}
.x63_c01093{left:174.866253pt;}
.x6_c01093{left:184.995053pt;}
.x6e_c01093{left:194.191053pt;}
.x2f_c01093{left:195.568253pt;}
.x46_c01093{left:204.443053pt;}
.x73_c01093{left:213.009853pt;}
.x4a_c01093{left:213.955853pt;}
.x3f_c01093{left:223.750253pt;}
.x30_c01093{left:225.382653pt;}
.x2d_c01093{left:233.733853pt;}
.x16_c01093{left:235.326653pt;}
.x58_c01093{left:237.297853pt;}
.x4b_c01093{left:244.034253pt;}
.x79_c01093{left:251.795853pt;}
.x74_c01093{left:252.926653pt;}
.x64_c01093{left:262.619853pt;}
.x40_c01093{left:263.667053pt;}
.x10_c01093{left:265.281853pt;}
.x54_c01093{left:271.446253pt;}
.x6f_c01093{left:272.889453pt;}
.x7_c01093{left:283.568253pt;}
.x31_c01093{left:284.892653pt;}
.x4c_c01093{left:292.073453pt;}
.x11_c01093{left:293.947853pt;}
.x8_c01093{left:295.659453pt;}
.x6b_c01093{left:300.970253pt;}
.x75_c01093{left:302.162653pt;}
.x29_c01093{left:303.799453pt;}
.x70_c01093{left:312.405853pt;}
.x17_c01093{left:313.959053pt;}
.x20_c01093{left:314.949053pt;}
.x2e_c01093{left:322.116653pt;}
.x4d_c01093{left:323.388253pt;}
.x32_c01093{left:325.931453pt;}
.x59_c01093{left:331.365453pt;}
.x41_c01093{left:333.578653pt;}
.x6c_c01093{left:341.837453pt;}
.x68_c01093{left:344.600653pt;}
.x5f_c01093{left:351.957453pt;}
.x2a_c01093{left:353.858253pt;}
.x7b_c01093{left:360.471453pt;}
.x76_c01093{left:362.227053pt;}
.x4e_c01093{left:363.379853pt;}
.x21_c01093{left:364.409453pt;}
.x7e_c01093{left:371.616653pt;}
.x12_c01093{left:373.829853pt;}
.x33_c01093{left:375.677853pt;}
.x69_c01093{left:379.989853pt;}
.x5a_c01093{left:381.516653pt;}
.x34_c01093{left:382.999453pt;}
.x18_c01093{left:384.403053pt;}
.x9_c01093{left:392.899453pt;}
.x35_c01093{left:401.690653pt;}
.x19_c01093{left:403.072253pt;}
.x6a_c01093{left:409.571053pt;}
.x5b_c01093{left:421.552253pt;}
.xa_c01093{left:423.360653pt;}
.x42_c01093{left:430.519453pt;}
.x36_c01093{left:431.474253pt;}
.x22_c01093{left:433.172653pt;}
.x65_c01093{left:440.793453pt;}
.x2b_c01093{left:451.714253pt;}
.x43_c01093{left:453.016653pt;}
.x7c_c01093{left:459.163453pt;}
.x47_c01093{left:460.399853pt;}
.x37_c01093{left:461.662653pt;}
.x71_c01093{left:470.207453pt;}
.x38_c01093{left:471.391053pt;}
.xb_c01093{left:472.473453pt;}
.x60_c01093{left:479.262653pt;}
.x23_c01093{left:482.228253pt;}
.x77_c01093{left:488.947053pt;}
.x4f_c01093{left:492.286653pt;}
.x39_c01093{left:493.844253pt;}
.x1a_c01093{left:500.607053pt;}
.xc_c01093{left:501.619053pt;}
.x5c_c01093{left:508.738253pt;}
.x3a_c01093{left:510.027453pt;}
.x24_c01093{left:520.512653pt;}
.x13_c01093{left:522.105453pt;}
.x78_c01093{left:527.429453pt;}
.x7a_c01093{left:528.837453pt;}
.x1b_c01093{left:530.390653pt;}
.x2c_c01093{left:538.869453pt;}
.x5d_c01093{left:539.833053pt;}
.xd_c01093{left:541.131053pt;}
.x1c_c01093{left:551.017853pt;}
.x50_c01093{left:558.106253pt;}
.x14_c01093{left:560.112653pt;}
.x25_c01093{left:561.058653pt;}
.x3b_c01093{left:562.105853pt;}
.x3c_c01093{left:568.270253pt;}
.xe_c01093{left:570.976253pt;}
.x66_c01093{left:577.202253pt;}
.x48_c01093{left:578.935853pt;}
.x3d_c01093{left:583.947453pt;}
.x6d_c01093{left:587.432253pt;}
.x3e_c01093{left:589.280253pt;}
.x1d_c01093{left:590.323053pt;}
.x51_c01093{left:599.488253pt;}
.x61_c01093{left:606.735053pt;}
.x49_c01093{left:609.102253pt;}
.x72_c01093{left:615.816653pt;}
.x44_c01093{left:618.016653pt;}
.x1e_c01093{left:619.459853pt;}
.x52_c01093{left:621.593853pt;}
.x53_c01093{left:626.614253pt;}
.x4_c01093{left:628.281853pt;}
.x5e_c01093{left:636.421853pt;}
.x67_c01093{left:637.711053pt;}
}





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

.ir_c01094:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01094{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01094;src:url('chunks/assets/font_d8bf74f45438c4fd5e591c67.woff2')format("woff");}.ff1_c01094{font-family:ff1_c01094;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01094;src:url('chunks/assets/font_25d3296b4daaebbe36bd0ba7.woff2')format("woff");}.ff2_c01094{font-family:ff2_c01094;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01094;src:url('chunks/assets/font_2f3bc1cb8d00d2c06e82520f.woff2')format("woff");}.ff3_c01094{font-family:ff3_c01094;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01094;src:url('chunks/assets/font_03eabf79ffdd8afc6c033abb.woff2')format("woff");}.ff4_c01094{font-family:ff4_c01094;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m77_c01094{transform:matrix(0.015307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015307,0.000000,0.000000,0.250000,0,0);}
.m27_c01094{transform:matrix(0.023257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.023257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.023257,0.000000,0.000000,0.250000,0,0);}
.m41_c01094{transform:matrix(0.028303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.028303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.028303,0.000000,0.000000,0.250000,0,0);}
.m6e_c01094{transform:matrix(0.029070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.029070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.029070,0.000000,0.000000,0.250000,0,0);}
.m45_c01094{transform:matrix(0.047170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.047170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.047170,0.000000,0.000000,0.250000,0,0);}
.m25_c01094{transform:matrix(0.063954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.063954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.063954,0.000000,0.000000,0.250000,0,0);}
.m60_c01094{transform:matrix(0.069806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.069806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.069806,0.000000,0.000000,0.250000,0,0);}
.m26_c01094{transform:matrix(0.071512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071512,0.000000,0.000000,0.250000,0,0);}
.m3f_c01094{transform:matrix(0.076758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076758,0.000000,0.000000,0.250000,0,0);}
.m5f_c01094{transform:matrix(0.079029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.079029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.079029,0.000000,0.000000,0.250000,0,0);}
.m79_c01094{transform:matrix(0.084278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084278,0.000000,0.000000,0.250000,0,0);}
.m40_c01094{transform:matrix(0.086479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086479,0.000000,0.000000,0.250000,0,0);}
.m76_c01094{transform:matrix(0.086735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086735,0.000000,0.000000,0.250000,0,0);}
.m28_c01094{transform:matrix(0.090697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090697,0.000000,0.000000,0.250000,0,0);}
.m7b_c01094{transform:matrix(0.093198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093198,0.000000,0.000000,0.250000,0,0);}
.m43_c01094{transform:matrix(0.093286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093286,0.000000,0.000000,0.250000,0,0);}
.m6f_c01094{transform:matrix(0.096512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096512,0.000000,0.000000,0.250000,0,0);}
.m78_c01094{transform:matrix(0.103985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103985,0.000000,0.000000,0.250000,0,0);}
.m44_c01094{transform:matrix(0.106133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106133,0.000000,0.000000,0.250000,0,0);}
.m61_c01094{transform:matrix(0.107955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107955,0.000000,0.000000,0.250000,0,0);}
.m42_c01094{transform:matrix(0.109106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109106,0.000000,0.000000,0.250000,0,0);}
.m7a_c01094{transform:matrix(0.111343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111343,0.000000,0.000000,0.250000,0,0);}
.m24_c01094{transform:matrix(0.118217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118217,0.000000,0.000000,0.250000,0,0);}
.m19_c01094{transform:matrix(0.126285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126285,0.000000,0.000000,0.250000,0,0);}
.m48_c01094{transform:matrix(0.132763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132763,0.000000,0.000000,0.250000,0,0);}
.m49_c01094{transform:matrix(0.141509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141509,0.000000,0.000000,0.250000,0,0);}
.m87_c01094{transform:matrix(0.144267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144267,0.000000,0.000000,0.250000,0,0);}
.m73_c01094{transform:matrix(0.144805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144805,0.000000,0.000000,0.250000,0,0);}
.m6d_c01094{transform:matrix(0.150193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150193,0.000000,0.000000,0.250000,0,0);}
.m91_c01094{transform:matrix(0.154533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154533,0.000000,0.000000,0.250000,0,0);}
.m3e_c01094{transform:matrix(0.156044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156044,0.000000,0.000000,0.250000,0,0);}
.m89_c01094{transform:matrix(0.156251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156251,0.000000,0.000000,0.250000,0,0);}
.m62_c01094{transform:matrix(0.160606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160606,0.000000,0.000000,0.250000,0,0);}
.m9a_c01094{transform:matrix(0.161046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161046,0.000000,0.000000,0.250000,0,0);}
.m1f_c01094{transform:matrix(0.161679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161679,0.000000,0.000000,0.250000,0,0);}
.m39_c01094{transform:matrix(0.166279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166279,0.000000,0.000000,0.250000,0,0);}
.m90_c01094{transform:matrix(0.168214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168214,0.000000,0.000000,0.250000,0,0);}
.m23_c01094{transform:matrix(0.173228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173228,0.000000,0.000000,0.250000,0,0);}
.m1c_c01094{transform:matrix(0.173450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173450,0.000000,0.000000,0.250000,0,0);}
.m29_c01094{transform:matrix(0.174418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174418,0.000000,0.000000,0.250000,0,0);}
.m8e_c01094{transform:matrix(0.187161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187161,0.000000,0.000000,0.250000,0,0);}
.m46_c01094{transform:matrix(0.197210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197210,0.000000,0.000000,0.250000,0,0);}
.m47_c01094{transform:matrix(0.215184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215184,0.000000,0.000000,0.250000,0,0);}
.m38_c01094{transform:matrix(0.218240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218240,0.000000,0.000000,0.250000,0,0);}
.m36_c01094{transform:matrix(0.218514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218514,0.000000,0.000000,0.250000,0,0);}
.m30_c01094{transform:matrix(0.223856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223856,0.000000,0.000000,0.250000,0,0);}
.ma6_c01094{transform:matrix(0.225939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225939,0.000000,0.000000,0.250000,0,0);}
.m2d_c01094{transform:matrix(0.229031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229031,0.000000,0.000000,0.250000,0,0);}
.m31_c01094{transform:matrix(0.239678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239678,0.000000,0.000000,0.250000,0,0);}
.m8c_c01094{transform:matrix(0.239791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239791,0.000000,0.000000,0.250000,0,0);}
.m2_c01094{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m5d_c01094{transform:matrix(0.250586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250586,0.000000,0.000000,0.250000,0,0);}
.m4b_c01094{transform:matrix(0.252809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252809,0.000000,0.000000,0.250000,0,0);}
.m2b_c01094{transform:matrix(0.254590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254590,0.000000,0.000000,0.250000,0,0);}
.md_c01094{transform:matrix(0.254839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254839,0.000000,0.000000,0.250000,0,0);}
.m58_c01094{transform:matrix(0.255657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255657,0.000000,0.000000,0.250000,0,0);}
.m5b_c01094{transform:matrix(0.256280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256280,0.000000,0.000000,0.250000,0,0);}
.ma0_c01094{transform:matrix(0.256800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256800,0.000000,0.000000,0.250000,0,0);}
.m63_c01094{transform:matrix(0.257572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257572,0.000000,0.000000,0.250000,0,0);}
.m52_c01094{transform:matrix(0.257928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257928,0.000000,0.000000,0.250000,0,0);}
.m14_c01094{transform:matrix(0.258481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258481,0.000000,0.000000,0.250000,0,0);}
.m8_c01094{transform:matrix(0.259110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259110,0.000000,0.000000,0.250000,0,0);}
.m7_c01094{transform:matrix(0.260065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260065,0.000000,0.000000,0.250000,0,0);}
.m0_c01094{transform:matrix(0.260089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260089,0.000000,0.000000,0.250000,0,0);}
.ma3_c01094{transform:matrix(0.260508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260508,0.000000,0.000000,0.250000,0,0);}
.m11_c01094{transform:matrix(0.260985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260985,0.000000,0.000000,0.250000,0,0);}
.ma4_c01094{transform:matrix(0.261958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261958,0.000000,0.000000,0.250000,0,0);}
.m3_c01094{transform:matrix(0.262938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262938,0.000000,0.000000,0.250000,0,0);}
.m72_c01094{transform:matrix(0.263047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263047,0.000000,0.000000,0.250000,0,0);}
.m99_c01094{transform:matrix(0.263971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263971,0.000000,0.000000,0.250000,0,0);}
.m3b_c01094{transform:matrix(0.264110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264110,0.000000,0.000000,0.250000,0,0);}
.m33_c01094{transform:matrix(0.264155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264155,0.000000,0.000000,0.250000,0,0);}
.m10_c01094{transform:matrix(0.264473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264473,0.000000,0.000000,0.250000,0,0);}
.m2e_c01094{transform:matrix(0.265365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265365,0.000000,0.000000,0.250000,0,0);}
.m22_c01094{transform:matrix(0.265465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265465,0.000000,0.000000,0.250000,0,0);}
.m2f_c01094{transform:matrix(0.265590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265590,0.000000,0.000000,0.250000,0,0);}
.me_c01094{transform:matrix(0.266522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266522,0.000000,0.000000,0.250000,0,0);}
.m68_c01094{transform:matrix(0.266624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266624,0.000000,0.000000,0.250000,0,0);}
.m21_c01094{transform:matrix(0.267988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267988,0.000000,0.000000,0.250000,0,0);}
.m71_c01094{transform:matrix(0.268053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268053,0.000000,0.000000,0.250000,0,0);}
.m69_c01094{transform:matrix(0.268146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268146,0.000000,0.000000,0.250000,0,0);}
.m5c_c01094{transform:matrix(0.268457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268457,0.000000,0.000000,0.250000,0,0);}
.m9c_c01094{transform:matrix(0.268602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268602,0.000000,0.000000,0.250000,0,0);}
.m4d_c01094{transform:matrix(0.269877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269877,0.000000,0.000000,0.250000,0,0);}
.m5a_c01094{transform:matrix(0.270666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270666,0.000000,0.000000,0.250000,0,0);}
.m3d_c01094{transform:matrix(0.270810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270810,0.000000,0.000000,0.250000,0,0);}
.m75_c01094{transform:matrix(0.271202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271202,0.000000,0.000000,0.250000,0,0);}
.m67_c01094{transform:matrix(0.271275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271275,0.000000,0.000000,0.250000,0,0);}
.ma5_c01094{transform:matrix(0.271882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271882,0.000000,0.000000,0.250000,0,0);}
.m1a_c01094{transform:matrix(0.272161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272161,0.000000,0.000000,0.250000,0,0);}
.m93_c01094{transform:matrix(0.272751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272751,0.000000,0.000000,0.250000,0,0);}
.m4a_c01094{transform:matrix(0.272889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272889,0.000000,0.000000,0.250000,0,0);}
.m74_c01094{transform:matrix(0.273085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273085,0.000000,0.000000,0.250000,0,0);}
.m4c_c01094{transform:matrix(0.273219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273219,0.000000,0.000000,0.250000,0,0);}
.m7c_c01094{transform:matrix(0.273310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273310,0.000000,0.000000,0.250000,0,0);}
.m59_c01094{transform:matrix(0.273450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273450,0.000000,0.000000,0.250000,0,0);}
.m8b_c01094{transform:matrix(0.275304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275304,0.000000,0.000000,0.250000,0,0);}
.m6a_c01094{transform:matrix(0.275312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275312,0.000000,0.000000,0.250000,0,0);}
.m9_c01094{transform:matrix(0.275584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275584,0.000000,0.000000,0.250000,0,0);}
.m17_c01094{transform:matrix(0.275843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275843,0.000000,0.000000,0.250000,0,0);}
.m12_c01094{transform:matrix(0.278441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278441,0.000000,0.000000,0.250000,0,0);}
.m2c_c01094{transform:matrix(0.278783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278783,0.000000,0.000000,0.250000,0,0);}
.m96_c01094{transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);}
.m95_c01094{transform:matrix(0.280794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280794,0.000000,0.000000,0.250000,0,0);}
.m13_c01094{transform:matrix(0.281583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281583,0.000000,0.000000,0.250000,0,0);}
.m70_c01094{transform:matrix(0.282472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282472,0.000000,0.000000,0.250000,0,0);}
.m32_c01094{transform:matrix(0.282723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282723,0.000000,0.000000,0.250000,0,0);}
.m5e_c01094{transform:matrix(0.283481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283481,0.000000,0.000000,0.250000,0,0);}
.m65_c01094{transform:matrix(0.287010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287010,0.000000,0.000000,0.250000,0,0);}
.ma1_c01094{transform:matrix(0.287109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287109,0.000000,0.000000,0.250000,0,0);}
.m3a_c01094{transform:matrix(0.287633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287633,0.000000,0.000000,0.250000,0,0);}
.m4_c01094{transform:matrix(0.287663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287663,0.000000,0.000000,0.250000,0,0);}
.m1e_c01094{transform:matrix(0.287955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287955,0.000000,0.000000,0.250000,0,0);}
.m88_c01094{transform:matrix(0.288118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288118,0.000000,0.000000,0.250000,0,0);}
.m6b_c01094{transform:matrix(0.288552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288552,0.000000,0.000000,0.250000,0,0);}
.ma_c01094{transform:matrix(0.289551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289551,0.000000,0.000000,0.250000,0,0);}
.m9d_c01094{transform:matrix(0.290372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290372,0.000000,0.000000,0.250000,0,0);}
.m97_c01094{transform:matrix(0.291334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291334,0.000000,0.000000,0.250000,0,0);}
.m8a_c01094{transform:matrix(0.292272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292272,0.000000,0.000000,0.250000,0,0);}
.m1b_c01094{transform:matrix(0.292290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292290,0.000000,0.000000,0.250000,0,0);}
.m92_c01094{transform:matrix(0.293184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293184,0.000000,0.000000,0.250000,0,0);}
.m66_c01094{transform:matrix(0.293395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293395,0.000000,0.000000,0.250000,0,0);}
.m2a_c01094{transform:matrix(0.293460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293460,0.000000,0.000000,0.250000,0,0);}
.m3c_c01094{transform:matrix(0.293748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293748,0.000000,0.000000,0.250000,0,0);}
.ma7_c01094{transform:matrix(0.294575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294575,0.000000,0.000000,0.250000,0,0);}
.m84_c01094{transform:matrix(0.295511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295511,0.000000,0.000000,0.250000,0,0);}
.m51_c01094{transform:matrix(0.295560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295560,0.000000,0.000000,0.250000,0,0);}
.mf_c01094{transform:matrix(0.296095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296095,0.000000,0.000000,0.250000,0,0);}
.m34_c01094{transform:matrix(0.296963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296963,0.000000,0.000000,0.250000,0,0);}
.m9b_c01094{transform:matrix(0.298232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298232,0.000000,0.000000,0.250000,0,0);}
.m4e_c01094{transform:matrix(0.299873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299873,0.000000,0.000000,0.250000,0,0);}
.m4f_c01094{transform:matrix(0.300661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300661,0.000000,0.000000,0.250000,0,0);}
.m94_c01094{transform:matrix(0.300790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300790,0.000000,0.000000,0.250000,0,0);}
.m20_c01094{transform:matrix(0.301178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301178,0.000000,0.000000,0.250000,0,0);}
.m35_c01094{transform:matrix(0.304486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304486,0.000000,0.000000,0.250000,0,0);}
.mb_c01094{transform:matrix(0.305063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305063,0.000000,0.000000,0.250000,0,0);}
.m50_c01094{transform:matrix(0.306067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306067,0.000000,0.000000,0.250000,0,0);}
.m98_c01094{transform:matrix(0.306315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306315,0.000000,0.000000,0.250000,0,0);}
.m8d_c01094{transform:matrix(0.308601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308601,0.000000,0.000000,0.250000,0,0);}
.m55_c01094{transform:matrix(0.310303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310303,0.000000,0.000000,0.250000,0,0);}
.m80_c01094{transform:matrix(0.312949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312949,0.000000,0.000000,0.250000,0,0);}
.m85_c01094{transform:matrix(0.313665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313665,0.000000,0.000000,0.250000,0,0);}
.m16_c01094{transform:matrix(0.314231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314231,0.000000,0.000000,0.250000,0,0);}
.m6c_c01094{transform:matrix(0.314972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314972,0.000000,0.000000,0.250000,0,0);}
.m1d_c01094{transform:matrix(0.315329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315329,0.000000,0.000000,0.250000,0,0);}
.m6_c01094{transform:matrix(0.315405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315405,0.000000,0.000000,0.250000,0,0);}
.m82_c01094{transform:matrix(0.317715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317715,0.000000,0.000000,0.250000,0,0);}
.m86_c01094{transform:matrix(0.317855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317855,0.000000,0.000000,0.250000,0,0);}
.m9e_c01094{transform:matrix(0.318399,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318399,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318399,0.000000,0.000000,0.250000,0,0);}
.m1_c01094{transform:matrix(0.321535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321535,0.000000,0.000000,0.250000,0,0);}
.m37_c01094{transform:matrix(0.323679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323679,0.000000,0.000000,0.250000,0,0);}
.m56_c01094{transform:matrix(0.325184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325184,0.000000,0.000000,0.250000,0,0);}
.m7f_c01094{transform:matrix(0.326048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326048,0.000000,0.000000,0.250000,0,0);}
.m15_c01094{transform:matrix(0.330637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330637,0.000000,0.000000,0.250000,0,0);}
.m9f_c01094{transform:matrix(0.331929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331929,0.000000,0.000000,0.250000,0,0);}
.ma2_c01094{transform:matrix(0.335994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335994,0.000000,0.000000,0.250000,0,0);}
.m53_c01094{transform:matrix(0.338470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338470,0.000000,0.000000,0.250000,0,0);}
.m8f_c01094{transform:matrix(0.345693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345693,0.000000,0.000000,0.250000,0,0);}
.m81_c01094{transform:matrix(0.346554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346554,0.000000,0.000000,0.250000,0,0);}
.m7d_c01094{transform:matrix(0.348823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348823,0.000000,0.000000,0.250000,0,0);}
.m83_c01094{transform:matrix(0.352638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352638,0.000000,0.000000,0.250000,0,0);}
.m18_c01094{transform:matrix(0.363001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363001,0.000000,0.000000,0.250000,0,0);}
.mc_c01094{transform:matrix(0.364409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364409,0.000000,0.000000,0.250000,0,0);}
.m64_c01094{transform:matrix(0.365666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365666,0.000000,0.000000,0.250000,0,0);}
.m57_c01094{transform:matrix(0.374616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374616,0.000000,0.000000,0.250000,0,0);}
.m7e_c01094{transform:matrix(0.381970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381970,0.000000,0.000000,0.250000,0,0);}
.m5_c01094{transform:matrix(0.389014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389014,0.000000,0.000000,0.250000,0,0);}
.m54_c01094{transform:matrix(0.401666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401666,0.000000,0.000000,0.250000,0,0);}
.v1_c01094{vertical-align:-17.104824px;}
.v0_c01094{vertical-align:0.000000px;}
.ls37_c01094{letter-spacing:-3.659040px;}
.ls25_c01094{letter-spacing:-3.388777px;}
.ls21_c01094{letter-spacing:-3.243240px;}
.ls1f_c01094{letter-spacing:-3.187800px;}
.ls23_c01094{letter-spacing:-3.035340px;}
.ls1c_c01094{letter-spacing:-3.021480px;}
.ls38_c01094{letter-spacing:-2.917530px;}
.ls35_c01094{letter-spacing:-2.855167px;}
.ls30_c01094{letter-spacing:-2.758140px;}
.ls3f_c01094{letter-spacing:-2.737350px;}
.ls11_c01094{letter-spacing:-2.661127px;}
.ls41_c01094{letter-spacing:-2.633400px;}
.ls31_c01094{letter-spacing:-2.608412px;}
.ls15_c01094{letter-spacing:-2.557177px;}
.ls2a_c01094{letter-spacing:-2.490444px;}
.ls1a_c01094{letter-spacing:-2.425500px;}
.ls1b_c01094{letter-spacing:-2.397780px;}
.ls24_c01094{letter-spacing:-2.383927px;}
.ls2d_c01094{letter-spacing:-2.374713px;}
.ls33_c01094{letter-spacing:-2.350062px;}
.ls42_c01094{letter-spacing:-1.372140px;}
.ls10_c01094{letter-spacing:-0.144461px;}
.ls2b_c01094{letter-spacing:-0.020909px;}
.lsc_c01094{letter-spacing:0.000000px;}
.ls7_c01094{letter-spacing:0.063043px;}
.ls5_c01094{letter-spacing:0.173052px;}
.ls6_c01094{letter-spacing:0.269438px;}
.ls9_c01094{letter-spacing:0.571033px;}
.ls26_c01094{letter-spacing:1.254469px;}
.ls43_c01094{letter-spacing:2.072565px;}
.ls1_c01094{letter-spacing:2.245320px;}
.ls3c_c01094{letter-spacing:2.417824px;}
.ls12_c01094{letter-spacing:2.641993px;}
.ls2_c01094{letter-spacing:3.024182px;}
.ls17_c01094{letter-spacing:3.198730px;}
.ls3a_c01094{letter-spacing:3.227400px;}
.ls19_c01094{letter-spacing:3.229380px;}
.ls2c_c01094{letter-spacing:3.319668px;}
.ls20_c01094{letter-spacing:3.366000px;}
.ls3e_c01094{letter-spacing:3.405610px;}
.ls0_c01094{letter-spacing:3.406242px;}
.ls39_c01094{letter-spacing:3.415500px;}
.ls18_c01094{letter-spacing:3.465000px;}
.ls16_c01094{letter-spacing:3.643200px;}
.ls14_c01094{letter-spacing:3.653110px;}
.ls28_c01094{letter-spacing:3.722400px;}
.ls3_c01094{letter-spacing:3.730518px;}
.lsb_c01094{letter-spacing:3.742200px;}
.ls29_c01094{letter-spacing:3.762000px;}
.lse_c01094{letter-spacing:3.781810px;}
.lsf_c01094{letter-spacing:3.801610px;}
.ls3b_c01094{letter-spacing:3.821400px;}
.ls4_c01094{letter-spacing:3.848744px;}
.ls40_c01094{letter-spacing:3.910500px;}
.ls2e_c01094{letter-spacing:3.940200px;}
.ls34_c01094{letter-spacing:3.997234px;}
.ls32_c01094{letter-spacing:4.078810px;}
.ls3d_c01094{letter-spacing:4.098610px;}
.lsd_c01094{letter-spacing:4.108500px;}
.ls1d_c01094{letter-spacing:4.197610px;}
.lsa_c01094{letter-spacing:4.266900px;}
.ls27_c01094{letter-spacing:4.336200px;}
.ls1e_c01094{letter-spacing:4.554000px;}
.ls8_c01094{letter-spacing:13.551912px;}
.ls13_c01094{letter-spacing:61.300998px;}
.ls2f_c01094{letter-spacing:62.726400px;}
.ls36_c01094{letter-spacing:69.854598px;}
.ls22_c01094{letter-spacing:75.556800px;}
.sc__c01094{text-shadow:none;}
.sc0_c01094{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01094{-webkit-text-stroke:0px transparent;}
.sc0_c01094{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01094{word-spacing:-22.414292px;}
.ws1_c01094{word-spacing:-21.959373px;}
.ws2_c01094{word-spacing:-19.701000px;}
.ws3_c01094{word-spacing:0.000000px;}
._6_c01094{margin-left:-9.298872px;}
._2_c01094{margin-left:-4.740334px;}
._9_c01094{width:10.796643px;}
._5_c01094{width:12.266100px;}
._3_c01094{width:14.027845px;}
._7_c01094{width:22.429519px;}
._1_c01094{width:26.541900px;}
._0_c01094{width:34.234200px;}
._4_c01094{width:36.061582px;}
._8_c01094{width:82.737545px;}
.fc0_c01094{color:transparent;}
.fs28_c01094{font-size:22.176000px;}
.fs14_c01094{font-size:34.056198px;}
.fs27_c01094{font-size:39.204000px;}
.fs17_c01094{font-size:41.976198px;}
.fs1c_c01094{font-size:45.936198px;}
.fs1e_c01094{font-size:54.648000px;}
.fs6_c01094{font-size:61.300998px;}
.fs1b_c01094{font-size:62.726400px;}
.fs23_c01094{font-size:64.548000px;}
.fs19_c01094{font-size:66.330000px;}
.fse_c01094{font-size:67.320000px;}
.fs12_c01094{font-size:68.112198px;}
.fs22_c01094{font-size:68.310000px;}
.fsa_c01094{font-size:68.508000px;}
.fs9_c01094{font-size:69.300000px;}
.fs18_c01094{font-size:69.696198px;}
.fs1f_c01094{font-size:69.854598px;}
.fs8_c01094{font-size:72.864000px;}
.fs7_c01094{font-size:73.062198px;}
.fs15_c01094{font-size:74.448000px;}
.fs1_c01094{font-size:74.844000px;}
.fs16_c01094{font-size:75.240000px;}
.fs10_c01094{font-size:75.556800px;}
.fs3_c01094{font-size:75.636198px;}
.fs4_c01094{font-size:76.032198px;}
.fs24_c01094{font-size:76.428000px;}
.fs5_c01094{font-size:77.220000px;}
.fs26_c01094{font-size:78.210000px;}
.fs1a_c01094{font-size:78.804000px;}
.fs1d_c01094{font-size:81.576198px;}
.fs25_c01094{font-size:81.972198px;}
.fs2_c01094{font-size:82.170000px;}
.fs21_c01094{font-size:83.358000px;}
.fsc_c01094{font-size:83.952198px;}
.fs0_c01094{font-size:85.338000px;}
.fsb_c01094{font-size:86.328000px;}
.fs11_c01094{font-size:86.724000px;}
.fsd_c01094{font-size:91.080000px;}
.fsf_c01094{font-size:92.664000px;}
.fs13_c01094{font-size:96.822198px;}
.fs20_c01094{font-size:104.544000px;}
.y0_c01094{bottom:0.000000px;}
.y1b_c01094{bottom:27.349785px;}
.y1_c01094{bottom:76.500000px;}
.y1a_c01094{bottom:123.226335px;}
.y19_c01094{bottom:155.658735px;}
.y18_c01094{bottom:220.523535px;}
.y17_c01094{bottom:252.243135px;}
.y16_c01094{bottom:285.383385px;}
.y15_c01094{bottom:314.613135px;}
.y14_c01094{bottom:380.903535px;}
.y12_c01094{bottom:413.687385px;}
.y13_c01094{bottom:417.969135px;}
.y11_c01094{bottom:444.699135px;}
.y10_c01094{bottom:476.775135px;}
.yf_c01094{bottom:505.994985px;}
.ye_c01094{bottom:509.202585px;}
.yd_c01094{bottom:540.565785px;}
.yc_c01094{bottom:564.805935px;}
.yb_c01094{bottom:570.508335px;}
.ya_c01094{bottom:605.079135px;}
.y9_c01094{bottom:669.226185px;}
.y8_c01094{bottom:734.095935px;}
.y7_c01094{bottom:766.166985px;}
.y6_c01094{bottom:798.247935px;}
.y5_c01094{bottom:830.680335px;}
.y4_c01094{bottom:893.406735px;}
.y3_c01094{bottom:926.190585px;}
.y2_c01094{bottom:1056.632985px;}
.h2a_c01094{height:23.128875px;}
.h16_c01094{height:35.519550px;}
.h8_c01094{height:40.826465px;}
.h29_c01094{height:40.888547px;}
.h19_c01094{height:41.197343px;}
.h1d_c01094{height:41.775782px;}
.h1e_c01094{height:45.083866px;}
.h21_c01094{height:46.523162px;}
.h12_c01094{height:50.320829px;}
.h20_c01094{height:56.996156px;}
.h25_c01094{height:63.350332px;}
.h1b_c01094{height:69.180117px;}
.h10_c01094{height:70.212656px;}
.h14_c01094{height:71.038894px;}
.h24_c01094{height:71.245195px;}
.hc_c01094{height:71.451703px;}
.ha_c01094{height:71.512031px;}
.h9_c01094{height:71.706552px;}
.hb_c01094{height:72.277734px;}
.h1a_c01094{height:72.690957px;}
.h17_c01094{height:73.066641px;}
.h3_c01094{height:73.455293px;}
.h18_c01094{height:73.843945px;}
.h5_c01094{height:74.232792px;}
.h6_c01094{height:74.621444px;}
.h26_c01094{height:75.009902px;}
.h7_c01094{height:75.787207px;}
.h28_c01094{height:76.758838px;}
.h1c_c01094{height:77.341816px;}
.h1f_c01094{height:80.062577px;}
.h27_c01094{height:80.451229px;}
.h4_c01094{height:80.645361px;}
.h23_c01094{height:81.811318px;}
.he_c01094{height:82.394491px;}
.h2_c01094{height:83.754580px;}
.hd_c01094{height:84.726211px;}
.h13_c01094{height:85.114863px;}
.hf_c01094{height:89.390039px;}
.h11_c01094{height:96.645656px;}
.h15_c01094{height:100.982527px;}
.h22_c01094{height:102.604219px;}
.h1_c01094{height:1110.000000px;}
.h0_c01094{height:1263.000000px;}
.w1_c01094{width:775.500000px;}
.w0_c01094{width:892.500000px;}
.x0_c01094{left:0.000000px;}
.x1_c01094{left:58.500000px;}
.xf_c01094{left:72.316185px;}
.x6f_c01094{left:117.915585px;}
.x68_c01094{left:126.295935px;}
.x10_c01094{left:127.449285px;}
.x3_c01094{left:128.711535px;}
.x4f_c01094{left:139.116435px;}
.x59_c01094{left:158.941185px;}
.x19_c01094{left:161.193435px;}
.x2b_c01094{left:162.965535px;}
.x62_c01094{left:170.301435px;}
.x11_c01094{left:172.083435px;}
.x5e_c01094{left:180.924135px;}
.x4_c01094{left:183.503085px;}
.x69_c01094{left:192.383385px;}
.x2e_c01094{left:195.026685px;}
.x42_c01094{left:205.134585px;}
.x5_c01094{left:207.530385px;}
.x5a_c01094{left:213.831735px;}
.x54_c01094{left:216.400785px;}
.x2c_c01094{left:227.325435px;}
.x6a_c01094{left:228.919335px;}
.x70_c01094{left:236.581935px;}
.x6_c01094{left:239.626185px;}
.x4a_c01094{left:249.031185px;}
.x34_c01094{left:251.253735px;}
.x43_c01094{left:259.356885px;}
.x2f_c01094{left:262.044735px;}
.x4b_c01094{left:271.078485px;}
.x7_c01094{left:273.261435px;}
.x63_c01094{left:281.681385px;}
.x1a_c01094{left:285.710685px;}
.x12_c01094{left:295.585935px;}
.x50_c01094{left:304.352385px;}
.x21_c01094{left:305.367135px;}
.x1b_c01094{left:306.644235px;}
.x8_c01094{left:307.975785px;}
.x6b_c01094{left:315.093885px;}
.x64_c01094{left:316.237335px;}
.x9_c01094{left:318.355935px;}
.x35_c01094{left:326.810535px;}
.x13_c01094{left:328.899435px;}
.x5b_c01094{left:337.794585px;}
.x1c_c01094{left:338.814285px;}
.x22_c01094{left:341.526885px;}
.x36_c01094{left:344.630535px;}
.x3f_c01094{left:348.446985px;}
.x23_c01094{left:361.312035px;}
.x5f_c01094{left:370.647735px;}
.x30_c01094{left:372.370335px;}
.x71_c01094{left:382.557435px;}
.xa_c01094{left:383.978085px;}
.x6c_c01094{left:392.660385px;}
.x44_c01094{left:397.249035px;}
.x65_c01094{left:404.381985px;}
.x5c_c01094{left:405.594735px;}
.x14_c01094{left:407.020335px;}
.x4c_c01094{left:414.742335px;}
.x2a_c01094{left:416.212485px;}
.xb_c01094{left:417.628185px;}
.x45_c01094{left:419.093385px;}
.x1d_c01094{left:427.978635px;}
.x15_c01094{left:439.581435px;}
.x5d_c01094{left:448.293435px;}
.x24_c01094{left:450.357585px;}
.x46_c01094{left:460.411035px;}
.x60_c01094{left:462.009885px;}
.x4d_c01094{left:469.682385px;}
.x55_c01094{left:471.998985px;}
.xc_c01094{left:482.547435px;}
.x31_c01094{left:483.765135px;}
.x6d_c01094{left:492.848385px;}
.x2d_c01094{left:494.333385px;}
.x51_c01094{left:495.828285px;}
.x25_c01094{left:507.233085px;}
.x52_c01094{left:514.766985px;}
.x47_c01094{left:527.038035px;}
.xd_c01094{left:528.295335px;}
.x40_c01094{left:537.680535px;}
.x16_c01094{left:539.343735px;}
.x37_c01094{left:542.333535px;}
.x1e_c01094{left:548.431935px;}
.x38_c01094{left:560.252535px;}
.x17_c01094{left:571.053435px;}
.x66_c01094{left:579.755535px;}
.x56_c01094{left:591.199935px;}
.x26_c01094{left:592.679985px;}
.x39_c01094{left:603.035385px;}
.x1f_c01094{left:614.390685px;}
.x18_c01094{left:616.301385px;}
.x27_c01094{left:620.479185px;}
.xe_c01094{left:627.409185px;}
.x53_c01094{left:628.646685px;}
.x61_c01094{left:630.265335px;}
.x72_c01094{left:634.690635px;}
.x4e_c01094{left:635.794485px;}
.x20_c01094{left:636.873585px;}
.x32_c01094{left:638.516985px;}
.x3a_c01094{left:649.530735px;}
.x67_c01094{left:657.782385px;}
.x48_c01094{left:659.084235px;}
.x57_c01094{left:660.376185px;}
.x3b_c01094{left:661.757235px;}
.x3c_c01094{left:663.697635px;}
.x28_c01094{left:670.018785px;}
.x29_c01094{left:671.444385px;}
.x41_c01094{left:681.091935px;}
.x2_c01094{left:691.135485px;}
.x33_c01094{left:700.589985px;}
.x49_c01094{left:703.797585px;}
.x3e_c01094{left:705.094485px;}
.x3d_c01094{left:714.212385px;}
.x6e_c01094{left:716.083485px;}
.x58_c01094{left:728.201085px;}
.x73_c01094{left:744.422235px;}
@media print{
.v1_c01094{vertical-align:-15.204288pt;}
.v0_c01094{vertical-align:0.000000pt;}
.ls37_c01094{letter-spacing:-3.252480pt;}
.ls25_c01094{letter-spacing:-3.012246pt;}
.ls21_c01094{letter-spacing:-2.882880pt;}
.ls1f_c01094{letter-spacing:-2.833600pt;}
.ls23_c01094{letter-spacing:-2.698080pt;}
.ls1c_c01094{letter-spacing:-2.685760pt;}
.ls38_c01094{letter-spacing:-2.593360pt;}
.ls35_c01094{letter-spacing:-2.537926pt;}
.ls30_c01094{letter-spacing:-2.451680pt;}
.ls3f_c01094{letter-spacing:-2.433200pt;}
.ls11_c01094{letter-spacing:-2.365446pt;}
.ls41_c01094{letter-spacing:-2.340800pt;}
.ls31_c01094{letter-spacing:-2.318589pt;}
.ls15_c01094{letter-spacing:-2.273046pt;}
.ls2a_c01094{letter-spacing:-2.213728pt;}
.ls1a_c01094{letter-spacing:-2.156000pt;}
.ls1b_c01094{letter-spacing:-2.131360pt;}
.ls24_c01094{letter-spacing:-2.119046pt;}
.ls2d_c01094{letter-spacing:-2.110856pt;}
.ls33_c01094{letter-spacing:-2.088944pt;}
.ls42_c01094{letter-spacing:-1.219680pt;}
.ls10_c01094{letter-spacing:-0.128410pt;}
.ls2b_c01094{letter-spacing:-0.018586pt;}
.lsc_c01094{letter-spacing:0.000000pt;}
.ls7_c01094{letter-spacing:0.056038pt;}
.ls5_c01094{letter-spacing:0.153824pt;}
.ls6_c01094{letter-spacing:0.239501pt;}
.ls9_c01094{letter-spacing:0.507585pt;}
.ls26_c01094{letter-spacing:1.115083pt;}
.ls43_c01094{letter-spacing:1.842280pt;}
.ls1_c01094{letter-spacing:1.995840pt;}
.ls3c_c01094{letter-spacing:2.149177pt;}
.ls12_c01094{letter-spacing:2.348438pt;}
.ls2_c01094{letter-spacing:2.688161pt;}
.ls17_c01094{letter-spacing:2.843315pt;}
.ls3a_c01094{letter-spacing:2.868800pt;}
.ls19_c01094{letter-spacing:2.870560pt;}
.ls2c_c01094{letter-spacing:2.950816pt;}
.ls20_c01094{letter-spacing:2.992000pt;}
.ls3e_c01094{letter-spacing:3.027209pt;}
.ls0_c01094{letter-spacing:3.027771pt;}
.ls39_c01094{letter-spacing:3.036000pt;}
.ls18_c01094{letter-spacing:3.080000pt;}
.ls16_c01094{letter-spacing:3.238400pt;}
.ls14_c01094{letter-spacing:3.247209pt;}
.ls28_c01094{letter-spacing:3.308800pt;}
.ls3_c01094{letter-spacing:3.316016pt;}
.lsb_c01094{letter-spacing:3.326400pt;}
.ls29_c01094{letter-spacing:3.344000pt;}
.lse_c01094{letter-spacing:3.361609pt;}
.lsf_c01094{letter-spacing:3.379209pt;}
.ls3b_c01094{letter-spacing:3.396800pt;}
.ls4_c01094{letter-spacing:3.421106pt;}
.ls40_c01094{letter-spacing:3.476000pt;}
.ls2e_c01094{letter-spacing:3.502400pt;}
.ls34_c01094{letter-spacing:3.553097pt;}
.ls32_c01094{letter-spacing:3.625609pt;}
.ls3d_c01094{letter-spacing:3.643209pt;}
.lsd_c01094{letter-spacing:3.652000pt;}
.ls1d_c01094{letter-spacing:3.731209pt;}
.lsa_c01094{letter-spacing:3.792800pt;}
.ls27_c01094{letter-spacing:3.854400pt;}
.ls1e_c01094{letter-spacing:4.048000pt;}
.ls8_c01094{letter-spacing:12.046144pt;}
.ls13_c01094{letter-spacing:54.489776pt;}
.ls2f_c01094{letter-spacing:55.756800pt;}
.ls36_c01094{letter-spacing:62.092976pt;}
.ls22_c01094{letter-spacing:67.161600pt;}
.ws0_c01094{word-spacing:-19.923815pt;}
.ws1_c01094{word-spacing:-19.519442pt;}
.ws2_c01094{word-spacing:-17.512000pt;}
.ws3_c01094{word-spacing:0.000000pt;}
._6_c01094{margin-left:-8.265664pt;}
._2_c01094{margin-left:-4.213630pt;}
._9_c01094{width:9.597016pt;}
._5_c01094{width:10.903200pt;}
._3_c01094{width:12.469195pt;}
._7_c01094{width:19.937350pt;}
._1_c01094{width:23.592800pt;}
._0_c01094{width:30.430400pt;}
._4_c01094{width:32.054739pt;}
._8_c01094{width:73.544484pt;}
.fs28_c01094{font-size:19.712000pt;}
.fs14_c01094{font-size:30.272176pt;}
.fs27_c01094{font-size:34.848000pt;}
.fs17_c01094{font-size:37.312176pt;}
.fs1c_c01094{font-size:40.832176pt;}
.fs1e_c01094{font-size:48.576000pt;}
.fs6_c01094{font-size:54.489776pt;}
.fs1b_c01094{font-size:55.756800pt;}
.fs23_c01094{font-size:57.376000pt;}
.fs19_c01094{font-size:58.960000pt;}
.fse_c01094{font-size:59.840000pt;}
.fs12_c01094{font-size:60.544176pt;}
.fs22_c01094{font-size:60.720000pt;}
.fsa_c01094{font-size:60.896000pt;}
.fs9_c01094{font-size:61.600000pt;}
.fs18_c01094{font-size:61.952176pt;}
.fs1f_c01094{font-size:62.092976pt;}
.fs8_c01094{font-size:64.768000pt;}
.fs7_c01094{font-size:64.944176pt;}
.fs15_c01094{font-size:66.176000pt;}
.fs1_c01094{font-size:66.528000pt;}
.fs16_c01094{font-size:66.880000pt;}
.fs10_c01094{font-size:67.161600pt;}
.fs3_c01094{font-size:67.232176pt;}
.fs4_c01094{font-size:67.584176pt;}
.fs24_c01094{font-size:67.936000pt;}
.fs5_c01094{font-size:68.640000pt;}
.fs26_c01094{font-size:69.520000pt;}
.fs1a_c01094{font-size:70.048000pt;}
.fs1d_c01094{font-size:72.512176pt;}
.fs25_c01094{font-size:72.864176pt;}
.fs2_c01094{font-size:73.040000pt;}
.fs21_c01094{font-size:74.096000pt;}
.fsc_c01094{font-size:74.624176pt;}
.fs0_c01094{font-size:75.856000pt;}
.fsb_c01094{font-size:76.736000pt;}
.fs11_c01094{font-size:77.088000pt;}
.fsd_c01094{font-size:80.960000pt;}
.fsf_c01094{font-size:82.368000pt;}
.fs13_c01094{font-size:86.064176pt;}
.fs20_c01094{font-size:92.928000pt;}
.y0_c01094{bottom:0.000000pt;}
.y1b_c01094{bottom:24.310920pt;}
.y1_c01094{bottom:68.000000pt;}
.y1a_c01094{bottom:109.534520pt;}
.y19_c01094{bottom:138.363320pt;}
.y18_c01094{bottom:196.020920pt;}
.y17_c01094{bottom:224.216120pt;}
.y16_c01094{bottom:253.674120pt;}
.y15_c01094{bottom:279.656120pt;}
.y14_c01094{bottom:338.580920pt;}
.y12_c01094{bottom:367.722120pt;}
.y13_c01094{bottom:371.528120pt;}
.y11_c01094{bottom:395.288120pt;}
.y10_c01094{bottom:423.800120pt;}
.yf_c01094{bottom:449.773320pt;}
.ye_c01094{bottom:452.624520pt;}
.yd_c01094{bottom:480.502920pt;}
.yc_c01094{bottom:502.049720pt;}
.yb_c01094{bottom:507.118520pt;}
.ya_c01094{bottom:537.848120pt;}
.y9_c01094{bottom:594.867720pt;}
.y8_c01094{bottom:652.529720pt;}
.y7_c01094{bottom:681.037320pt;}
.y6_c01094{bottom:709.553720pt;}
.y5_c01094{bottom:738.382520pt;}
.y4_c01094{bottom:794.139320pt;}
.y3_c01094{bottom:823.280520pt;}
.y2_c01094{bottom:939.229320pt;}
.h2a_c01094{height:20.559000pt;}
.h16_c01094{height:31.572934pt;}
.h8_c01094{height:36.290191pt;}
.h29_c01094{height:36.345375pt;}
.h19_c01094{height:36.619860pt;}
.h1d_c01094{height:37.134029pt;}
.h1e_c01094{height:40.074548pt;}
.h21_c01094{height:41.353922pt;}
.h12_c01094{height:44.729626pt;}
.h20_c01094{height:50.663250pt;}
.h25_c01094{height:56.311406pt;}
.h1b_c01094{height:61.493438pt;}
.h10_c01094{height:62.411250pt;}
.h14_c01094{height:63.145684pt;}
.h24_c01094{height:63.329063pt;}
.hc_c01094{height:63.512625pt;}
.ha_c01094{height:63.566250pt;}
.h9_c01094{height:63.739157pt;}
.hb_c01094{height:64.246875pt;}
.h1a_c01094{height:64.614184pt;}
.h17_c01094{height:64.948125pt;}
.h3_c01094{height:65.293594pt;}
.h18_c01094{height:65.639063pt;}
.h5_c01094{height:65.984704pt;}
.h6_c01094{height:66.330173pt;}
.h26_c01094{height:66.675469pt;}
.h7_c01094{height:67.366406pt;}
.h28_c01094{height:68.230078pt;}
.h1c_c01094{height:68.748281pt;}
.h1f_c01094{height:71.166735pt;}
.h27_c01094{height:71.512204pt;}
.h4_c01094{height:71.684766pt;}
.h23_c01094{height:72.721172pt;}
.he_c01094{height:73.239548pt;}
.h2_c01094{height:74.448516pt;}
.hd_c01094{height:75.312188pt;}
.h13_c01094{height:75.657656pt;}
.hf_c01094{height:79.457813pt;}
.h11_c01094{height:85.907250pt;}
.h15_c01094{height:89.762246pt;}
.h22_c01094{height:91.203750pt;}
.h1_c01094{height:986.666667pt;}
.h0_c01094{height:1122.666667pt;}
.w1_c01094{width:689.333333pt;}
.w0_c01094{width:793.333333pt;}
.x0_c01094{left:0.000000pt;}
.x1_c01094{left:52.000000pt;}
.xf_c01094{left:64.281053pt;}
.x6f_c01094{left:104.813853pt;}
.x68_c01094{left:112.263053pt;}
.x10_c01094{left:113.288253pt;}
.x3_c01094{left:114.410253pt;}
.x4f_c01094{left:123.659053pt;}
.x59_c01094{left:141.281053pt;}
.x19_c01094{left:143.283053pt;}
.x2b_c01094{left:144.858253pt;}
.x62_c01094{left:151.379053pt;}
.x11_c01094{left:152.963053pt;}
.x5e_c01094{left:160.821453pt;}
.x4_c01094{left:163.113853pt;}
.x69_c01094{left:171.007453pt;}
.x2e_c01094{left:173.357053pt;}
.x42_c01094{left:182.341853pt;}
.x5_c01094{left:184.471453pt;}
.x5a_c01094{left:190.072653pt;}
.x54_c01094{left:192.356253pt;}
.x2c_c01094{left:202.067053pt;}
.x6a_c01094{left:203.483853pt;}
.x70_c01094{left:210.295053pt;}
.x6_c01094{left:213.001053pt;}
.x4a_c01094{left:221.361053pt;}
.x34_c01094{left:223.336653pt;}
.x43_c01094{left:230.539453pt;}
.x2f_c01094{left:232.928653pt;}
.x4b_c01094{left:240.958653pt;}
.x7_c01094{left:242.899053pt;}
.x63_c01094{left:250.383453pt;}
.x1a_c01094{left:253.965053pt;}
.x12_c01094{left:262.743053pt;}
.x50_c01094{left:270.535453pt;}
.x21_c01094{left:271.437453pt;}
.x1b_c01094{left:272.572653pt;}
.x8_c01094{left:273.756253pt;}
.x6b_c01094{left:280.083453pt;}
.x64_c01094{left:281.099853pt;}
.x9_c01094{left:282.983053pt;}
.x35_c01094{left:290.498253pt;}
.x13_c01094{left:292.355053pt;}
.x5b_c01094{left:300.261853pt;}
.x1c_c01094{left:301.168253pt;}
.x22_c01094{left:303.579453pt;}
.x36_c01094{left:306.338253pt;}
.x3f_c01094{left:309.730653pt;}
.x23_c01094{left:321.166253pt;}
.x5f_c01094{left:329.464653pt;}
.x30_c01094{left:330.995853pt;}
.x71_c01094{left:340.051053pt;}
.xa_c01094{left:341.313853pt;}
.x6c_c01094{left:349.031453pt;}
.x44_c01094{left:353.110253pt;}
.x65_c01094{left:359.450653pt;}
.x5c_c01094{left:360.528653pt;}
.x14_c01094{left:361.795853pt;}
.x4c_c01094{left:368.659853pt;}
.x2a_c01094{left:369.966653pt;}
.xb_c01094{left:371.225053pt;}
.x45_c01094{left:372.527453pt;}
.x1d_c01094{left:380.425453pt;}
.x15_c01094{left:390.739053pt;}
.x5d_c01094{left:398.483053pt;}
.x24_c01094{left:400.317853pt;}
.x46_c01094{left:409.254253pt;}
.x60_c01094{left:410.675453pt;}
.x4d_c01094{left:417.495453pt;}
.x55_c01094{left:419.554653pt;}
.xc_c01094{left:428.931053pt;}
.x31_c01094{left:430.013453pt;}
.x6d_c01094{left:438.087453pt;}
.x2d_c01094{left:439.407453pt;}
.x51_c01094{left:440.736253pt;}
.x25_c01094{left:450.873853pt;}
.x52_c01094{left:457.570653pt;}
.x47_c01094{left:468.478253pt;}
.xd_c01094{left:469.595853pt;}
.x40_c01094{left:477.938253pt;}
.x16_c01094{left:479.416653pt;}
.x37_c01094{left:482.074253pt;}
.x1e_c01094{left:487.495053pt;}
.x38_c01094{left:498.002253pt;}
.x17_c01094{left:507.603053pt;}
.x66_c01094{left:515.338253pt;}
.x56_c01094{left:525.511053pt;}
.x26_c01094{left:526.826653pt;}
.x39_c01094{left:536.031453pt;}
.x1f_c01094{left:546.125053pt;}
.x18_c01094{left:547.823453pt;}
.x27_c01094{left:551.537053pt;}
.xe_c01094{left:557.697053pt;}
.x53_c01094{left:558.797053pt;}
.x61_c01094{left:560.235853pt;}
.x72_c01094{left:564.169453pt;}
.x4e_c01094{left:565.150653pt;}
.x20_c01094{left:566.109853pt;}
.x32_c01094{left:567.570653pt;}
.x3a_c01094{left:577.360653pt;}
.x67_c01094{left:584.695453pt;}
.x48_c01094{left:585.852653pt;}
.x57_c01094{left:587.001053pt;}
.x3b_c01094{left:588.228653pt;}
.x3c_c01094{left:589.953453pt;}
.x28_c01094{left:595.572253pt;}
.x29_c01094{left:596.839453pt;}
.x41_c01094{left:605.415053pt;}
.x2_c01094{left:614.342653pt;}
.x33_c01094{left:622.746653pt;}
.x49_c01094{left:625.597853pt;}
.x3e_c01094{left:626.750653pt;}
.x3d_c01094{left:634.855453pt;}
.x6e_c01094{left:636.518653pt;}
.x58_c01094{left:647.289853pt;}
.x73_c01094{left:661.708653pt;}
}





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

.ir_c01095:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01095{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01095;src:url('chunks/assets/font_4a581839dc3307243eecc412.woff2')format("woff");}.ff1_c01095{font-family:ff1_c01095;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01095;src:url('chunks/assets/font_8356186ab1b13c3b06a63d3a.woff2')format("woff");}.ff2_c01095{font-family:ff2_c01095;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01095;src:url('chunks/assets/font_daa9830514d00e4e5f7543a0.woff2')format("woff");}.ff3_c01095{font-family:ff3_c01095;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01095;src:url('chunks/assets/font_60c4df2927b1b9528badfec2.woff2')format("woff");}.ff4_c01095{font-family:ff4_c01095;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m40_c01095{transform:matrix(0.034092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.034092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.034092,0.000000,0.000000,0.250000,0,0);}
.m8b_c01095{transform:matrix(0.036586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036586,0.000000,0.000000,0.250000,0,0);}
.m87_c01095{transform:matrix(0.052846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.052846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.052846,0.000000,0.000000,0.250000,0,0);}
.m8d_c01095{transform:matrix(0.079269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.079269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.079269,0.000000,0.000000,0.250000,0,0);}
.m86_c01095{transform:matrix(0.091463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091463,0.000000,0.000000,0.250000,0,0);}
.m8a_c01095{transform:matrix(0.097561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097561,0.000000,0.000000,0.250000,0,0);}
.m8c_c01095{transform:matrix(0.107927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107927,0.000000,0.000000,0.250000,0,0);}
.m55_c01095{transform:matrix(0.114597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114597,0.000000,0.000000,0.250000,0,0);}
.m41_c01095{transform:matrix(0.119319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119319,0.000000,0.000000,0.250000,0,0);}
.m65_c01095{transform:matrix(0.141825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141825,0.000000,0.000000,0.250000,0,0);}
.m52_c01095{transform:matrix(0.148437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148437,0.000000,0.000000,0.250000,0,0);}
.m33_c01095{transform:matrix(0.167333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167333,0.000000,0.000000,0.250000,0,0);}
.m3f_c01095{transform:matrix(0.170455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170455,0.000000,0.000000,0.250000,0,0);}
.m59_c01095{transform:matrix(0.177381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177381,0.000000,0.000000,0.250000,0,0);}
.m85_c01095{transform:matrix(0.181708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181708,0.000000,0.000000,0.250000,0,0);}
.m28_c01095{transform:matrix(0.182143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182143,0.000000,0.000000,0.250000,0,0);}
.m38_c01095{transform:matrix(0.182984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182984,0.000000,0.000000,0.250000,0,0);}
.m5a_c01095{transform:matrix(0.184523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184523,0.000000,0.000000,0.250000,0,0);}
.m7e_c01095{transform:matrix(0.198611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198611,0.000000,0.000000,0.250000,0,0);}
.m32_c01095{transform:matrix(0.212821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212821,0.000000,0.000000,0.250000,0,0);}
.m88_c01095{transform:matrix(0.223645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223645,0.000000,0.000000,0.250000,0,0);}
.m90_c01095{transform:matrix(0.225964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225964,0.000000,0.000000,0.250000,0,0);}
.m1e_c01095{transform:matrix(0.233156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233156,0.000000,0.000000,0.250000,0,0);}
.m35_c01095{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m39_c01095{transform:matrix(0.244365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244365,0.000000,0.000000,0.250000,0,0);}
.m34_c01095{transform:matrix(0.246042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246042,0.000000,0.000000,0.250000,0,0);}
.m20_c01095{transform:matrix(0.246762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246762,0.000000,0.000000,0.250000,0,0);}
.m0_c01095{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.me_c01095{transform:matrix(0.250345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250345,0.000000,0.000000,0.250000,0,0);}
.m97_c01095{transform:matrix(0.250708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250708,0.000000,0.000000,0.250000,0,0);}
.m29_c01095{transform:matrix(0.251285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251285,0.000000,0.000000,0.250000,0,0);}
.m64_c01095{transform:matrix(0.251346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251346,0.000000,0.000000,0.250000,0,0);}
.m45_c01095{transform:matrix(0.255515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255515,0.000000,0.000000,0.250000,0,0);}
.m1d_c01095{transform:matrix(0.255752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255752,0.000000,0.000000,0.250000,0,0);}
.m62_c01095{transform:matrix(0.256013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256013,0.000000,0.000000,0.250000,0,0);}
.m37_c01095{transform:matrix(0.256229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256229,0.000000,0.000000,0.250000,0,0);}
.m7f_c01095{transform:matrix(0.256481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256481,0.000000,0.000000,0.250000,0,0);}
.mab_c01095{transform:matrix(0.261631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261631,0.000000,0.000000,0.250000,0,0);}
.m2e_c01095{transform:matrix(0.262600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262600,0.000000,0.000000,0.250000,0,0);}
.m74_c01095{transform:matrix(0.262868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262868,0.000000,0.000000,0.250000,0,0);}
.m2f_c01095{transform:matrix(0.263571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263571,0.000000,0.000000,0.250000,0,0);}
.ma8_c01095{transform:matrix(0.264671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264671,0.000000,0.000000,0.250000,0,0);}
.m8e_c01095{transform:matrix(0.265045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265045,0.000000,0.000000,0.250000,0,0);}
.m96_c01095{transform:matrix(0.265393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265393,0.000000,0.000000,0.250000,0,0);}
.m56_c01095{transform:matrix(0.267966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267966,0.000000,0.000000,0.250000,0,0);}
.m77_c01095{transform:matrix(0.269156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269156,0.000000,0.000000,0.250000,0,0);}
.m91_c01095{transform:matrix(0.269505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269505,0.000000,0.000000,0.250000,0,0);}
.m1f_c01095{transform:matrix(0.269663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269663,0.000000,0.000000,0.250000,0,0);}
.mae_c01095{transform:matrix(0.269976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269976,0.000000,0.000000,0.250000,0,0);}
.ma1_c01095{transform:matrix(0.270095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270095,0.000000,0.000000,0.250000,0,0);}
.m14_c01095{transform:matrix(0.270900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270900,0.000000,0.000000,0.250000,0,0);}
.m75_c01095{transform:matrix(0.271003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271003,0.000000,0.000000,0.250000,0,0);}
.m73_c01095{transform:matrix(0.271173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271173,0.000000,0.000000,0.250000,0,0);}
.m5b_c01095{transform:matrix(0.272911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272911,0.000000,0.000000,0.250000,0,0);}
.m6_c01095{transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);}
.m9d_c01095{transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);}
.m94_c01095{transform:matrix(0.275843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275843,0.000000,0.000000,0.250000,0,0);}
.m92_c01095{transform:matrix(0.276585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276585,0.000000,0.000000,0.250000,0,0);}
.m6c_c01095{transform:matrix(0.276802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276802,0.000000,0.000000,0.250000,0,0);}
.m4d_c01095{transform:matrix(0.277424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277424,0.000000,0.000000,0.250000,0,0);}
.m3d_c01095{transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);}
.m44_c01095{transform:matrix(0.278524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278524,0.000000,0.000000,0.250000,0,0);}
.m89_c01095{transform:matrix(0.280608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280608,0.000000,0.000000,0.250000,0,0);}
.m80_c01095{transform:matrix(0.280802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280802,0.000000,0.000000,0.250000,0,0);}
.m2b_c01095{transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);}
.m46_c01095{transform:matrix(0.281433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281433,0.000000,0.000000,0.250000,0,0);}
.m15_c01095{transform:matrix(0.281446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281446,0.000000,0.000000,0.250000,0,0);}
.m7c_c01095{transform:matrix(0.282137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282137,0.000000,0.000000,0.250000,0,0);}
.ma2_c01095{transform:matrix(0.282174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282174,0.000000,0.000000,0.250000,0,0);}
.mc_c01095{transform:matrix(0.282531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282531,0.000000,0.000000,0.250000,0,0);}
.m60_c01095{transform:matrix(0.282682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282682,0.000000,0.000000,0.250000,0,0);}
.m63_c01095{transform:matrix(0.282729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282729,0.000000,0.000000,0.250000,0,0);}
.m21_c01095{transform:matrix(0.283042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283042,0.000000,0.000000,0.250000,0,0);}
.ma4_c01095{transform:matrix(0.283625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283625,0.000000,0.000000,0.250000,0,0);}
.m68_c01095{transform:matrix(0.284897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284897,0.000000,0.000000,0.250000,0,0);}
.m67_c01095{transform:matrix(0.285120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285120,0.000000,0.000000,0.250000,0,0);}
.m22_c01095{transform:matrix(0.285548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285548,0.000000,0.000000,0.250000,0,0);}
.m3e_c01095{transform:matrix(0.286283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286283,0.000000,0.000000,0.250000,0,0);}
.m5_c01095{transform:matrix(0.286542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286542,0.000000,0.000000,0.250000,0,0);}
.m57_c01095{transform:matrix(0.288589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288589,0.000000,0.000000,0.250000,0,0);}
.m83_c01095{transform:matrix(0.289291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289291,0.000000,0.000000,0.250000,0,0);}
.m9a_c01095{transform:matrix(0.289352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289352,0.000000,0.000000,0.250000,0,0);}
.m66_c01095{transform:matrix(0.289811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289811,0.000000,0.000000,0.250000,0,0);}
.m27_c01095{transform:matrix(0.290493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290493,0.000000,0.000000,0.250000,0,0);}
.m16_c01095{transform:matrix(0.290714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290714,0.000000,0.000000,0.250000,0,0);}
.m8f_c01095{transform:matrix(0.292360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292360,0.000000,0.000000,0.250000,0,0);}
.m42_c01095{transform:matrix(0.292928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292928,0.000000,0.000000,0.250000,0,0);}
.m58_c01095{transform:matrix(0.293929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293929,0.000000,0.000000,0.250000,0,0);}
.mb2_c01095{transform:matrix(0.293938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293938,0.000000,0.000000,0.250000,0,0);}
.mb_c01095{transform:matrix(0.296421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296421,0.000000,0.000000,0.250000,0,0);}
.m9_c01095{transform:matrix(0.296442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296442,0.000000,0.000000,0.250000,0,0);}
.m54_c01095{transform:matrix(0.296462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296462,0.000000,0.000000,0.250000,0,0);}
.maa_c01095{transform:matrix(0.296906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296906,0.000000,0.000000,0.250000,0,0);}
.m1a_c01095{transform:matrix(0.297788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297788,0.000000,0.000000,0.250000,0,0);}
.m4a_c01095{transform:matrix(0.298058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298058,0.000000,0.000000,0.250000,0,0);}
.m4c_c01095{transform:matrix(0.298114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298114,0.000000,0.000000,0.250000,0,0);}
.m4f_c01095{transform:matrix(0.298136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298136,0.000000,0.000000,0.250000,0,0);}
.m50_c01095{transform:matrix(0.298765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298765,0.000000,0.000000,0.250000,0,0);}
.mad_c01095{transform:matrix(0.299007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299007,0.000000,0.000000,0.250000,0,0);}
.ma0_c01095{transform:matrix(0.299095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299095,0.000000,0.000000,0.250000,0,0);}
.m5e_c01095{transform:matrix(0.299529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299529,0.000000,0.000000,0.250000,0,0);}
.m2a_c01095{transform:matrix(0.299582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299582,0.000000,0.000000,0.250000,0,0);}
.mb0_c01095{transform:matrix(0.299987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299987,0.000000,0.000000,0.250000,0,0);}
.m7a_c01095{transform:matrix(0.300072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300072,0.000000,0.000000,0.250000,0,0);}
.ma3_c01095{transform:matrix(0.300287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300287,0.000000,0.000000,0.250000,0,0);}
.m5f_c01095{transform:matrix(0.300336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300336,0.000000,0.000000,0.250000,0,0);}
.mb1_c01095{transform:matrix(0.300476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300476,0.000000,0.000000,0.250000,0,0);}
.m43_c01095{transform:matrix(0.302095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302095,0.000000,0.000000,0.250000,0,0);}
.ma7_c01095{transform:matrix(0.302495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302495,0.000000,0.000000,0.250000,0,0);}
.m9e_c01095{transform:matrix(0.303779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303779,0.000000,0.000000,0.250000,0,0);}
.ma9_c01095{transform:matrix(0.303781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303781,0.000000,0.000000,0.250000,0,0);}
.m3_c01095{transform:matrix(0.303815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303815,0.000000,0.000000,0.250000,0,0);}
.m23_c01095{transform:matrix(0.303939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303939,0.000000,0.000000,0.250000,0,0);}
.m95_c01095{transform:matrix(0.304387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304387,0.000000,0.000000,0.250000,0,0);}
.m72_c01095{transform:matrix(0.305747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305747,0.000000,0.000000,0.250000,0,0);}
.m70_c01095{transform:matrix(0.306753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306753,0.000000,0.000000,0.250000,0,0);}
.m9f_c01095{transform:matrix(0.307452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307452,0.000000,0.000000,0.250000,0,0);}
.m11_c01095{transform:matrix(0.308747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308747,0.000000,0.000000,0.250000,0,0);}
.m51_c01095{transform:matrix(0.309165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309165,0.000000,0.000000,0.250000,0,0);}
.m5d_c01095{transform:matrix(0.309761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309761,0.000000,0.000000,0.250000,0,0);}
.m76_c01095{transform:matrix(0.310902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310902,0.000000,0.000000,0.250000,0,0);}
.m6b_c01095{transform:matrix(0.312194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312194,0.000000,0.000000,0.250000,0,0);}
.m1b_c01095{transform:matrix(0.312699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312699,0.000000,0.000000,0.250000,0,0);}
.m31_c01095{transform:matrix(0.314379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314379,0.000000,0.000000,0.250000,0,0);}
.m9b_c01095{transform:matrix(0.315889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315889,0.000000,0.000000,0.250000,0,0);}
.m3a_c01095{transform:matrix(0.316063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316063,0.000000,0.000000,0.250000,0,0);}
.m9c_c01095{transform:matrix(0.316670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316670,0.000000,0.000000,0.250000,0,0);}
.m25_c01095{transform:matrix(0.316960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316960,0.000000,0.000000,0.250000,0,0);}
.md_c01095{transform:matrix(0.317993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317993,0.000000,0.000000,0.250000,0,0);}
.m48_c01095{transform:matrix(0.318101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318101,0.000000,0.000000,0.250000,0,0);}
.m18_c01095{transform:matrix(0.318271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318271,0.000000,0.000000,0.250000,0,0);}
.m8_c01095{transform:matrix(0.318378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318378,0.000000,0.000000,0.250000,0,0);}
.m93_c01095{transform:matrix(0.318454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318454,0.000000,0.000000,0.250000,0,0);}
.m6d_c01095{transform:matrix(0.318476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318476,0.000000,0.000000,0.250000,0,0);}
.m19_c01095{transform:matrix(0.318956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318956,0.000000,0.000000,0.250000,0,0);}
.m17_c01095{transform:matrix(0.319853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319853,0.000000,0.000000,0.250000,0,0);}
.m69_c01095{transform:matrix(0.319887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319887,0.000000,0.000000,0.250000,0,0);}
.m7b_c01095{transform:matrix(0.324063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324063,0.000000,0.000000,0.250000,0,0);}
.m7d_c01095{transform:matrix(0.324191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324191,0.000000,0.000000,0.250000,0,0);}
.m47_c01095{transform:matrix(0.325152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325152,0.000000,0.000000,0.250000,0,0);}
.mb3_c01095{transform:matrix(0.325229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325229,0.000000,0.000000,0.250000,0,0);}
.m7_c01095{transform:matrix(0.327524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327524,0.000000,0.000000,0.250000,0,0);}
.mf_c01095{transform:matrix(0.328256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328256,0.000000,0.000000,0.250000,0,0);}
.m53_c01095{transform:matrix(0.328511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328511,0.000000,0.000000,0.250000,0,0);}
.m71_c01095{transform:matrix(0.328584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328584,0.000000,0.000000,0.250000,0,0);}
.m1c_c01095{transform:matrix(0.329152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329152,0.000000,0.000000,0.250000,0,0);}
.m2_c01095{transform:matrix(0.330033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330033,0.000000,0.000000,0.250000,0,0);}
.m61_c01095{transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);}
.m49_c01095{transform:matrix(0.331792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331792,0.000000,0.000000,0.250000,0,0);}
.m6e_c01095{transform:matrix(0.332175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332175,0.000000,0.000000,0.250000,0,0);}
.m24_c01095{transform:matrix(0.333026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333026,0.000000,0.000000,0.250000,0,0);}
.m79_c01095{transform:matrix(0.335568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335568,0.000000,0.000000,0.250000,0,0);}
.ma_c01095{transform:matrix(0.339355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339355,0.000000,0.000000,0.250000,0,0);}
.m2c_c01095{transform:matrix(0.341726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341726,0.000000,0.000000,0.250000,0,0);}
.m4_c01095{transform:matrix(0.347131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347131,0.000000,0.000000,0.250000,0,0);}
.m6a_c01095{transform:matrix(0.347986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347986,0.000000,0.000000,0.250000,0,0);}
.m2d_c01095{transform:matrix(0.348246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348246,0.000000,0.000000,0.250000,0,0);}
.mac_c01095{transform:matrix(0.348286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348286,0.000000,0.000000,0.250000,0,0);}
.m98_c01095{transform:matrix(0.349131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349131,0.000000,0.000000,0.250000,0,0);}
.m84_c01095{transform:matrix(0.349855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349855,0.000000,0.000000,0.250000,0,0);}
.maf_c01095{transform:matrix(0.350394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350394,0.000000,0.000000,0.250000,0,0);}
.m3b_c01095{transform:matrix(0.350796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350796,0.000000,0.000000,0.250000,0,0);}
.ma5_c01095{transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);}
.m30_c01095{transform:matrix(0.352612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352612,0.000000,0.000000,0.250000,0,0);}
.m1_c01095{transform:matrix(0.357996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357996,0.000000,0.000000,0.250000,0,0);}
.ma6_c01095{transform:matrix(0.358360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358360,0.000000,0.000000,0.250000,0,0);}
.m6f_c01095{transform:matrix(0.359013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359013,0.000000,0.000000,0.250000,0,0);}
.m99_c01095{transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);}
.m78_c01095{transform:matrix(0.368987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368987,0.000000,0.000000,0.250000,0,0);}
.m4b_c01095{transform:matrix(0.372991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372991,0.000000,0.000000,0.250000,0,0);}
.m4e_c01095{transform:matrix(0.373848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373848,0.000000,0.000000,0.250000,0,0);}
.m13_c01095{transform:matrix(0.373958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373958,0.000000,0.000000,0.250000,0,0);}
.m26_c01095{transform:matrix(0.373981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373981,0.000000,0.000000,0.250000,0,0);}
.m12_c01095{transform:matrix(0.379214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379214,0.000000,0.000000,0.250000,0,0);}
.m3c_c01095{transform:matrix(0.386405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386405,0.000000,0.000000,0.250000,0,0);}
.m10_c01095{transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);}
.m5c_c01095{transform:matrix(0.412048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412048,0.000000,0.000000,0.250000,0,0);}
.m81_c01095{transform:matrix(0.676796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676796,0.000000,0.000000,0.250000,0,0);}
.m36_c01095{transform:matrix(0.733397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.733397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.733397,0.000000,0.000000,0.250000,0,0);}
.m82_c01095{transform:matrix(1.149049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.149049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.149049,0.000000,0.000000,0.250000,0,0);}
.v2_c01095{vertical-align:-9.999000px;}
.v0_c01095{vertical-align:0.000000px;}
.v1_c01095{vertical-align:7.128000px;}
.lsb_c01095{letter-spacing:-3.021480px;}
.ls26_c01095{letter-spacing:-2.751217px;}
.ls13_c01095{letter-spacing:-2.647267px;}
.ls32_c01095{letter-spacing:-2.460150px;}
.ls21_c01095{letter-spacing:-2.390850px;}
.ls3a_c01095{letter-spacing:-2.380039px;}
.ls19_c01095{letter-spacing:-2.342340px;}
.ls37_c01095{letter-spacing:-2.125377px;}
.ls3b_c01095{letter-spacing:-1.641305px;}
.ls12_c01095{letter-spacing:-1.369015px;}
.ls14_c01095{letter-spacing:-1.316700px;}
.ls16_c01095{letter-spacing:-1.157317px;}
.ls2a_c01095{letter-spacing:-1.089161px;}
.ls39_c01095{letter-spacing:-1.066470px;}
.ls15_c01095{letter-spacing:-0.347195px;}
.ls5_c01095{letter-spacing:0.000000px;}
.ls1d_c01095{letter-spacing:0.108623px;}
.ls23_c01095{letter-spacing:0.428769px;}
.ls36_c01095{letter-spacing:0.625363px;}
.ls3_c01095{letter-spacing:0.752719px;}
.ls2e_c01095{letter-spacing:0.772210px;}
.ls2b_c01095{letter-spacing:0.985288px;}
.ls1_c01095{letter-spacing:1.107691px;}
.ls1a_c01095{letter-spacing:1.285815px;}
.ls25_c01095{letter-spacing:1.423699px;}
.ls17_c01095{letter-spacing:1.544400px;}
.ls33_c01095{letter-spacing:1.609641px;}
.ls27_c01095{letter-spacing:2.810808px;}
.ls2_c01095{letter-spacing:3.085731px;}
.ls18_c01095{letter-spacing:3.346200px;}
.ls8_c01095{letter-spacing:3.375900px;}
.ls24_c01095{letter-spacing:3.405610px;}
.ls20_c01095{letter-spacing:3.415500px;}
.ls1c_c01095{letter-spacing:3.433882px;}
.ls2f_c01095{letter-spacing:3.514500px;}
.ls38_c01095{letter-spacing:3.524400px;}
.ls30_c01095{letter-spacing:3.564000px;}
.ls35_c01095{letter-spacing:3.570059px;}
.ls1e_c01095{letter-spacing:3.593700px;}
.ls2c_c01095{letter-spacing:3.651406px;}
.ls22_c01095{letter-spacing:3.672900px;}
.ls28_c01095{letter-spacing:3.742200px;}
.ls4_c01095{letter-spacing:3.781810px;}
.ls9_c01095{letter-spacing:3.801610px;}
.ls10_c01095{letter-spacing:3.908678px;}
.lsf_c01095{letter-spacing:3.940200px;}
.lsd_c01095{letter-spacing:3.960000px;}
.ls29_c01095{letter-spacing:3.979810px;}
.ls7_c01095{letter-spacing:4.088700px;}
.ls34_c01095{letter-spacing:4.098610px;}
.ls6_c01095{letter-spacing:4.177810px;}
.lsa_c01095{letter-spacing:4.276810px;}
.lsc_c01095{letter-spacing:4.316400px;}
.ls0_c01095{letter-spacing:16.935666px;}
.ls11_c01095{letter-spacing:55.598598px;}
.ls1f_c01095{letter-spacing:57.024198px;}
.ls31_c01095{letter-spacing:58.449798px;}
.lse_c01095{letter-spacing:59.875398px;}
.ls1b_c01095{letter-spacing:62.726400px;}
.ls2d_c01095{letter-spacing:64.152198px;}
.sc__c01095{text-shadow:none;}
.sc0_c01095{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01095{-webkit-text-stroke:0px transparent;}
.sc0_c01095{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01095{word-spacing:-20.889050px;}
.ws1_c01095{word-spacing:-19.818691px;}
.ws2_c01095{word-spacing:0.000000px;}
._2_c01095{margin-left:-3.091671px;}
._0_c01095{width:1.890504px;}
._4_c01095{width:13.844556px;}
._5_c01095{width:28.474103px;}
._3_c01095{width:48.411000px;}
._1_c01095{width:75.658176px;}
.fc0_c01095{color:transparent;}
.fs21_c01095{font-size:15.444198px;}
.fs22_c01095{font-size:22.572000px;}
.fs1f_c01095{font-size:27.720000px;}
.fs7_c01095{font-size:28.314000px;}
.fs10_c01095{font-size:30.888000px;}
.fse_c01095{font-size:33.066198px;}
.fsd_c01095{font-size:37.620000px;}
.fs27_c01095{font-size:40.788000px;}
.fs1a_c01095{font-size:42.372000px;}
.fs26_c01095{font-size:44.352000px;}
.fs28_c01095{font-size:44.946198px;}
.fsc_c01095{font-size:55.598598px;}
.fs15_c01095{font-size:57.024198px;}
.fs24_c01095{font-size:58.449798px;}
.fsa_c01095{font-size:59.875398px;}
.fs12_c01095{font-size:62.726400px;}
.fs20_c01095{font-size:64.152198px;}
.fs2_c01095{font-size:66.330000px;}
.fs11_c01095{font-size:66.924000px;}
.fs5_c01095{font-size:67.518000px;}
.fs19_c01095{font-size:68.112198px;}
.fs16_c01095{font-size:68.310000px;}
.fs18_c01095{font-size:70.290000px;}
.fs29_c01095{font-size:70.488000px;}
.fs1e_c01095{font-size:70.884000px;}
.fs23_c01095{font-size:71.280000px;}
.fs14_c01095{font-size:71.874000px;}
.fs17_c01095{font-size:73.458000px;}
.fs1c_c01095{font-size:74.844000px;}
.fs1_c01095{font-size:75.636198px;}
.fs6_c01095{font-size:76.032198px;}
.fs1b_c01095{font-size:78.606198px;}
.fsb_c01095{font-size:78.804000px;}
.fs9_c01095{font-size:79.200000px;}
.fs1d_c01095{font-size:79.596198px;}
.fs4_c01095{font-size:81.774000px;}
.fs25_c01095{font-size:81.972198px;}
.fs3_c01095{font-size:83.556198px;}
.fs0_c01095{font-size:85.536198px;}
.fs8_c01095{font-size:86.328000px;}
.fs13_c01095{font-size:89.892198px;}
.fsf_c01095{font-size:91.872198px;}
.y0_c01095{bottom:0.000000px;}
.y1_c01095{bottom:76.500000px;}
.y22_c01095{bottom:122.152185px;}
.y21_c01095{bottom:154.945935px;}
.y20_c01095{bottom:187.021935px;}
.y1f_c01095{bottom:220.518585px;}
.y1d_c01095{bottom:248.679135px;}
.y1e_c01095{bottom:249.748335px;}
.y1c_c01095{bottom:251.530335px;}
.y1b_c01095{bottom:313.895385px;}
.y1a_c01095{bottom:333.140985px;}
.y19_c01095{bottom:340.625385px;}
.y17_c01095{bottom:346.689135px;}
.y18_c01095{bottom:347.040585px;}
.y16_c01095{bottom:369.855135px;}
.y15_c01095{bottom:380.190735px;}
.y14_c01095{bottom:412.618185px;}
.y13_c01095{bottom:441.486585px;}
.y12_c01095{bottom:444.699135px;}
.y11_c01095{bottom:476.775135px;}
.y10_c01095{bottom:509.920335px;}
.yf_c01095{bottom:541.283535px;}
.ye_c01095{bottom:605.079135px;}
.yd_c01095{bottom:637.150185px;}
.ya_c01095{bottom:701.307135px;}
.yc_c01095{bottom:701.663535px;}
.yb_c01095{bottom:705.578985px;}
.y9_c01095{bottom:733.734585px;}
.y8_c01095{bottom:765.459135px;}
.y7_c01095{bottom:790.407135px;}
.y6_c01095{bottom:828.536985px;}
.y5_c01095{bottom:861.325785px;}
.y4_c01095{bottom:893.406735px;}
.y3_c01095{bottom:926.190585px;}
.y2_c01095{bottom:1056.632985px;}
.h23_c01095{height:16.107816px;}
.h24_c01095{height:23.541891px;}
.h21_c01095{height:28.911094px;}
.h9_c01095{height:29.530617px;}
.h12_c01095{height:32.215219px;}
.h10_c01095{height:32.452665px;}
.he_c01095{height:37.028666px;}
.h17_c01095{height:37.978116px;}
.h26_c01095{height:38.927565px;}
.hf_c01095{height:39.236484px;}
.hc_c01095{height:39.877015px;}
.h14_c01095{height:41.775782px;}
.h22_c01095{height:42.725364px;}
.h1c_c01095{height:44.192672px;}
.h28_c01095{height:46.257750px;}
.h18_c01095{height:67.042529px;}
.h1a_c01095{height:68.985791px;}
.h4_c01095{height:69.180117px;}
.h13_c01095{height:69.799641px;}
.h7_c01095{height:70.419164px;}
.h16_c01095{height:70.540400px;}
.h1b_c01095{height:71.038894px;}
.h19_c01095{height:72.095010px;}
.h1e_c01095{height:73.455293px;}
.h20_c01095{height:73.929797px;}
.h3_c01095{height:74.232792px;}
.h25_c01095{height:74.342813px;}
.h8_c01095{height:74.621444px;}
.h1d_c01095{height:77.109303px;}
.hd_c01095{height:77.341816px;}
.hb_c01095{height:77.730469px;}
.h1f_c01095{height:78.119315px;}
.h6_c01095{height:80.216780px;}
.h27_c01095{height:80.451229px;}
.h29_c01095{height:80.583293px;}
.h5_c01095{height:82.005839px;}
.h2_c01095{height:83.949101px;}
.ha_c01095{height:84.726211px;}
.h15_c01095{height:88.224276px;}
.h11_c01095{height:90.167538px;}
.h1_c01095{height:1110.000000px;}
.h0_c01095{height:1263.000000px;}
.w1_c01095{width:775.500000px;}
.w0_c01095{width:892.500000px;}
.x0_c01095{left:0.000000px;}
.x1_c01095{left:58.500000px;}
.x6c_c01095{left:79.701585px;}
.x1d_c01095{left:81.820185px;}
.x1e_c01095{left:92.878485px;}
.x39_c01095{left:102.842835px;}
.x73_c01095{left:132.206235px;}
.x5e_c01095{left:133.656585px;}
.x1f_c01095{left:134.829735px;}
.x3_c01095{left:136.903785px;}
.x20_c01095{left:146.783985px;}
.x4_c01095{left:169.563885px;}
.x28_c01095{left:170.707335px;}
.x43_c01095{left:178.152135px;}
.x21_c01095{left:179.864835px;}
.x4e_c01095{left:181.547835px;}
.x6d_c01095{left:189.151035px;}
.x1c_c01095{left:190.606335px;}
.x14_c01095{left:192.259635px;}
.x48_c01095{left:200.536035px;}
.x6e_c01095{left:211.643835px;}
.x44_c01095{left:213.272385px;}
.x77_c01095{left:221.231985px;}
.x15_c01095{left:223.434735px;}
.xf_c01095{left:225.375135px;}
.x53_c01095{left:233.067435px;}
.x22_c01095{left:234.804885px;}
.x2c_c01095{left:236.794785px;}
.x5d_c01095{left:238.309485px;}
.x74_c01095{left:245.274135px;}
.x49_c01095{left:246.620535px;}
.x2d_c01095{left:257.263035px;}
.x5_c01095{left:258.856935px;}
.x56_c01095{left:266.900685px;}
.x45_c01095{left:268.514385px;}
.x81_c01095{left:276.523485px;}
.x75_c01095{left:278.731185px;}
.x65_c01095{left:289.027185px;}
.x57_c01095{left:290.254785px;}
.x16_c01095{left:292.536735px;}
.x3e_c01095{left:300.357735px;}
.x7c_c01095{left:311.584335px;}
.x6_c01095{left:313.217835px;}
.x29_c01095{left:316.153185px;}
.x58_c01095{left:324.112785px;}
.x5f_c01095{left:334.705785px;}
.x2a_c01095{left:335.735385px;}
.x23_c01095{left:336.903585px;}
.x66_c01095{left:342.917835px;}
.x4f_c01095{left:344.541435px;}
.x4a_c01095{left:345.863085px;}
.x46_c01095{left:355.317585px;}
.x41_c01095{left:356.698635px;}
.x7_c01095{left:357.733185px;}
.x3f_c01095{left:368.172735px;}
.x4b_c01095{left:378.206385px;}
.x8_c01095{left:380.765535px;}
.x17_c01095{left:383.171235px;}
.x67_c01095{left:387.749985px;}
.x78_c01095{left:400.530885px;}
.x10_c01095{left:402.500985px;}
.x64_c01095{left:406.500585px;}
.x68_c01095{left:410.564535px;}
.x40_c01095{left:411.569385px;}
.x69_c01095{left:413.767185px;}
.x50_c01095{left:422.192085px;}
.x24_c01095{left:423.706785px;}
.x9_c01095{left:425.325435px;}
.x6f_c01095{left:433.522635px;}
.x11_c01095{left:436.358985px;}
.x82_c01095{left:444.184935px;}
.x59_c01095{left:455.708535px;}
.xa_c01095{left:458.346885px;}
.x70_c01095{left:466.049085px;}
.x79_c01095{left:467.628135px;}
.x18_c01095{left:468.939885px;}
.x60_c01095{left:477.374685px;}
.x6a_c01095{left:481.131735px;}
.x54_c01095{left:490.422885px;}
.x7a_c01095{left:499.318035px;}
.x2e_c01095{left:500.679285px;}
.x19_c01095{left:502.268235px;}
.x5a_c01095{left:509.945685px;}
.x61_c01095{left:511.782135px;}
.x25_c01095{left:513.281985px;}
.x76_c01095{left:521.424735px;}
.x3a_c01095{left:524.018535px;}
.x7d_c01095{left:532.507785px;}
.x1a_c01095{left:534.027435px;}
.x2f_c01095{left:536.101485px;}
.x51_c01095{left:544.234335px;}
.x3b_c01095{left:555.262935px;}
.x30_c01095{left:557.208285px;}
.x7e_c01095{left:565.370835px;}
.xb_c01095{left:567.296385px;}
.x71_c01095{left:568.459635px;}
.x31_c01095{left:572.850285px;}
.x62_c01095{left:576.290535px;}
.x5b_c01095{left:577.359735px;}
.x3c_c01095{left:587.333985px;}
.x3d_c01095{left:589.828785px;}
.xc_c01095{left:590.962335px;}
.x55_c01095{left:598.342785px;}
.x12_c01095{left:602.401785px;}
.x4c_c01095{left:610.331685px;}
.x2b_c01095{left:611.366235px;}
.x6b_c01095{left:619.716885px;}
.x32_c01095{left:622.162185px;}
.xd_c01095{left:623.459085px;}
.x35_c01095{left:625.221285px;}
.x36_c01095{left:626.993385px;}
.x47_c01095{left:633.091785px;}
.x37_c01095{left:647.021085px;}
.x7f_c01095{left:653.421435px;}
.x52_c01095{left:654.460935px;}
.x26_c01095{left:656.213235px;}
.x72_c01095{left:663.554085px;}
.x38_c01095{left:666.118185px;}
.x1b_c01095{left:677.720985px;}
.x33_c01095{left:678.760485px;}
.x4d_c01095{left:685.987485px;}
.x42_c01095{left:688.323885px;}
.x13_c01095{left:689.685135px;}
.x63_c01095{left:695.397435px;}
.x80_c01095{left:697.228935px;}
.x7b_c01095{left:698.595135px;}
.xe_c01095{left:701.129535px;}
.x2_c01095{left:702.193785px;}
.x5c_c01095{left:709.603935px;}
.x34_c01095{left:722.513535px;}
.x27_c01095{left:734.254935px;}
@media print{
.v2_c01095{vertical-align:-8.888000pt;}
.v0_c01095{vertical-align:0.000000pt;}
.v1_c01095{vertical-align:6.336000pt;}
.lsb_c01095{letter-spacing:-2.685760pt;}
.ls26_c01095{letter-spacing:-2.445526pt;}
.ls13_c01095{letter-spacing:-2.353126pt;}
.ls32_c01095{letter-spacing:-2.186800pt;}
.ls21_c01095{letter-spacing:-2.125200pt;}
.ls3a_c01095{letter-spacing:-2.115590pt;}
.ls19_c01095{letter-spacing:-2.082080pt;}
.ls37_c01095{letter-spacing:-1.889224pt;}
.ls3b_c01095{letter-spacing:-1.458938pt;}
.ls12_c01095{letter-spacing:-1.216902pt;}
.ls14_c01095{letter-spacing:-1.170400pt;}
.ls16_c01095{letter-spacing:-1.028726pt;}
.ls2a_c01095{letter-spacing:-0.968143pt;}
.ls39_c01095{letter-spacing:-0.947974pt;}
.ls15_c01095{letter-spacing:-0.308618pt;}
.ls5_c01095{letter-spacing:0.000000pt;}
.ls1d_c01095{letter-spacing:0.096554pt;}
.ls23_c01095{letter-spacing:0.381128pt;}
.ls36_c01095{letter-spacing:0.555878pt;}
.ls3_c01095{letter-spacing:0.669083pt;}
.ls2e_c01095{letter-spacing:0.686409pt;}
.ls2b_c01095{letter-spacing:0.875811pt;}
.ls1_c01095{letter-spacing:0.984614pt;}
.ls1a_c01095{letter-spacing:1.142947pt;}
.ls25_c01095{letter-spacing:1.265510pt;}
.ls17_c01095{letter-spacing:1.372800pt;}
.ls33_c01095{letter-spacing:1.430792pt;}
.ls27_c01095{letter-spacing:2.498496pt;}
.ls2_c01095{letter-spacing:2.742872pt;}
.ls18_c01095{letter-spacing:2.974400pt;}
.ls8_c01095{letter-spacing:3.000800pt;}
.ls24_c01095{letter-spacing:3.027209pt;}
.ls20_c01095{letter-spacing:3.036000pt;}
.ls1c_c01095{letter-spacing:3.052340pt;}
.ls2f_c01095{letter-spacing:3.124000pt;}
.ls38_c01095{letter-spacing:3.132800pt;}
.ls30_c01095{letter-spacing:3.168000pt;}
.ls35_c01095{letter-spacing:3.173386pt;}
.ls1e_c01095{letter-spacing:3.194400pt;}
.ls2c_c01095{letter-spacing:3.245694pt;}
.ls22_c01095{letter-spacing:3.264800pt;}
.ls28_c01095{letter-spacing:3.326400pt;}
.ls4_c01095{letter-spacing:3.361609pt;}
.ls9_c01095{letter-spacing:3.379209pt;}
.ls10_c01095{letter-spacing:3.474381pt;}
.lsf_c01095{letter-spacing:3.502400pt;}
.lsd_c01095{letter-spacing:3.520000pt;}
.ls29_c01095{letter-spacing:3.537609pt;}
.ls7_c01095{letter-spacing:3.634400pt;}
.ls34_c01095{letter-spacing:3.643209pt;}
.ls6_c01095{letter-spacing:3.713609pt;}
.lsa_c01095{letter-spacing:3.801609pt;}
.lsc_c01095{letter-spacing:3.836800pt;}
.ls0_c01095{letter-spacing:15.053925pt;}
.ls11_c01095{letter-spacing:49.420976pt;}
.ls1f_c01095{letter-spacing:50.688176pt;}
.ls31_c01095{letter-spacing:51.955376pt;}
.lse_c01095{letter-spacing:53.222576pt;}
.ls1b_c01095{letter-spacing:55.756800pt;}
.ls2d_c01095{letter-spacing:57.024176pt;}
.ws0_c01095{word-spacing:-18.568044pt;}
.ws1_c01095{word-spacing:-17.616614pt;}
.ws2_c01095{word-spacing:0.000000pt;}
._2_c01095{margin-left:-2.748152pt;}
._0_c01095{width:1.680448pt;}
._4_c01095{width:12.306272pt;}
._5_c01095{width:25.310314pt;}
._3_c01095{width:43.032000pt;}
._1_c01095{width:67.251712pt;}
.fs21_c01095{font-size:13.728176pt;}
.fs22_c01095{font-size:20.064000pt;}
.fs1f_c01095{font-size:24.640000pt;}
.fs7_c01095{font-size:25.168000pt;}
.fs10_c01095{font-size:27.456000pt;}
.fse_c01095{font-size:29.392176pt;}
.fsd_c01095{font-size:33.440000pt;}
.fs27_c01095{font-size:36.256000pt;}
.fs1a_c01095{font-size:37.664000pt;}
.fs26_c01095{font-size:39.424000pt;}
.fs28_c01095{font-size:39.952176pt;}
.fsc_c01095{font-size:49.420976pt;}
.fs15_c01095{font-size:50.688176pt;}
.fs24_c01095{font-size:51.955376pt;}
.fsa_c01095{font-size:53.222576pt;}
.fs12_c01095{font-size:55.756800pt;}
.fs20_c01095{font-size:57.024176pt;}
.fs2_c01095{font-size:58.960000pt;}
.fs11_c01095{font-size:59.488000pt;}
.fs5_c01095{font-size:60.016000pt;}
.fs19_c01095{font-size:60.544176pt;}
.fs16_c01095{font-size:60.720000pt;}
.fs18_c01095{font-size:62.480000pt;}
.fs29_c01095{font-size:62.656000pt;}
.fs1e_c01095{font-size:63.008000pt;}
.fs23_c01095{font-size:63.360000pt;}
.fs14_c01095{font-size:63.888000pt;}
.fs17_c01095{font-size:65.296000pt;}
.fs1c_c01095{font-size:66.528000pt;}
.fs1_c01095{font-size:67.232176pt;}
.fs6_c01095{font-size:67.584176pt;}
.fs1b_c01095{font-size:69.872176pt;}
.fsb_c01095{font-size:70.048000pt;}
.fs9_c01095{font-size:70.400000pt;}
.fs1d_c01095{font-size:70.752176pt;}
.fs4_c01095{font-size:72.688000pt;}
.fs25_c01095{font-size:72.864176pt;}
.fs3_c01095{font-size:74.272176pt;}
.fs0_c01095{font-size:76.032176pt;}
.fs8_c01095{font-size:76.736000pt;}
.fs13_c01095{font-size:79.904176pt;}
.fsf_c01095{font-size:81.664176pt;}
.y0_c01095{bottom:0.000000pt;}
.y1_c01095{bottom:68.000000pt;}
.y22_c01095{bottom:108.579720pt;}
.y21_c01095{bottom:137.729720pt;}
.y20_c01095{bottom:166.241720pt;}
.y1f_c01095{bottom:196.016520pt;}
.y1d_c01095{bottom:221.048120pt;}
.y1e_c01095{bottom:221.998520pt;}
.y1c_c01095{bottom:223.582520pt;}
.y1b_c01095{bottom:279.018120pt;}
.y1a_c01095{bottom:296.125320pt;}
.y19_c01095{bottom:302.778120pt;}
.y17_c01095{bottom:308.168120pt;}
.y18_c01095{bottom:308.480520pt;}
.y16_c01095{bottom:328.760120pt;}
.y15_c01095{bottom:337.947320pt;}
.y14_c01095{bottom:366.771720pt;}
.y13_c01095{bottom:392.432520pt;}
.y12_c01095{bottom:395.288120pt;}
.y11_c01095{bottom:423.800120pt;}
.y10_c01095{bottom:453.262520pt;}
.yf_c01095{bottom:481.140920pt;}
.ye_c01095{bottom:537.848120pt;}
.yd_c01095{bottom:566.355720pt;}
.ya_c01095{bottom:623.384120pt;}
.yc_c01095{bottom:623.700920pt;}
.yb_c01095{bottom:627.181320pt;}
.y9_c01095{bottom:652.208520pt;}
.y8_c01095{bottom:680.408120pt;}
.y7_c01095{bottom:702.584120pt;}
.y6_c01095{bottom:736.477320pt;}
.y5_c01095{bottom:765.622920pt;}
.y4_c01095{bottom:794.139320pt;}
.y3_c01095{bottom:823.280520pt;}
.y2_c01095{bottom:939.229320pt;}
.h23_c01095{height:14.318059pt;}
.h24_c01095{height:20.926125pt;}
.h21_c01095{height:25.698750pt;}
.h9_c01095{height:26.249438pt;}
.h12_c01095{height:28.635750pt;}
.h10_c01095{height:28.846813pt;}
.he_c01095{height:32.914370pt;}
.h17_c01095{height:33.758325pt;}
.h26_c01095{height:34.602280pt;}
.hf_c01095{height:34.876875pt;}
.hc_c01095{height:35.446236pt;}
.h14_c01095{height:37.134029pt;}
.h22_c01095{height:37.978101pt;}
.h1c_c01095{height:39.282375pt;}
.h28_c01095{height:41.118000pt;}
.h18_c01095{height:59.593359pt;}
.h1a_c01095{height:61.320703pt;}
.h4_c01095{height:61.493438pt;}
.h13_c01095{height:62.044125pt;}
.h7_c01095{height:62.594813pt;}
.h16_c01095{height:62.702578pt;}
.h1b_c01095{height:63.145684pt;}
.h19_c01095{height:64.084453pt;}
.h1e_c01095{height:65.293594pt;}
.h20_c01095{height:65.715375pt;}
.h3_c01095{height:65.984704pt;}
.h25_c01095{height:66.082500pt;}
.h8_c01095{height:66.330173pt;}
.h1d_c01095{height:68.541602pt;}
.hd_c01095{height:68.748281pt;}
.hb_c01095{height:69.093750pt;}
.h1f_c01095{height:69.439391pt;}
.h6_c01095{height:71.303805pt;}
.h27_c01095{height:71.512204pt;}
.h29_c01095{height:71.629594pt;}
.h5_c01095{height:72.894079pt;}
.h2_c01095{height:74.621423pt;}
.ha_c01095{height:75.312188pt;}
.h15_c01095{height:78.421579pt;}
.h11_c01095{height:80.148923pt;}
.h1_c01095{height:986.666667pt;}
.h0_c01095{height:1122.666667pt;}
.w1_c01095{width:689.333333pt;}
.w0_c01095{width:793.333333pt;}
.x0_c01095{left:0.000000pt;}
.x1_c01095{left:52.000000pt;}
.x6c_c01095{left:70.845853pt;}
.x1d_c01095{left:72.729053pt;}
.x1e_c01095{left:82.558653pt;}
.x39_c01095{left:91.415853pt;}
.x73_c01095{left:117.516653pt;}
.x5e_c01095{left:118.805853pt;}
.x1f_c01095{left:119.848653pt;}
.x3_c01095{left:121.692253pt;}
.x20_c01095{left:130.474653pt;}
.x4_c01095{left:150.723453pt;}
.x28_c01095{left:151.739853pt;}
.x43_c01095{left:158.357453pt;}
.x21_c01095{left:159.879853pt;}
.x4e_c01095{left:161.375853pt;}
.x6d_c01095{left:168.134253pt;}
.x1c_c01095{left:169.427853pt;}
.x14_c01095{left:170.897453pt;}
.x48_c01095{left:178.254253pt;}
.x6e_c01095{left:188.127853pt;}
.x44_c01095{left:189.575453pt;}
.x77_c01095{left:196.650653pt;}
.x15_c01095{left:198.608653pt;}
.xf_c01095{left:200.333453pt;}
.x53_c01095{left:207.171053pt;}
.x22_c01095{left:208.715453pt;}
.x2c_c01095{left:210.484253pt;}
.x5d_c01095{left:211.830653pt;}
.x74_c01095{left:218.021453pt;}
.x49_c01095{left:219.218253pt;}
.x2d_c01095{left:228.678253pt;}
.x5_c01095{left:230.095053pt;}
.x56_c01095{left:237.245053pt;}
.x45_c01095{left:238.679453pt;}
.x81_c01095{left:245.798653pt;}
.x75_c01095{left:247.761053pt;}
.x65_c01095{left:256.913053pt;}
.x57_c01095{left:258.004253pt;}
.x16_c01095{left:260.032653pt;}
.x3e_c01095{left:266.984653pt;}
.x7c_c01095{left:276.963853pt;}
.x6_c01095{left:278.415853pt;}
.x29_c01095{left:281.025053pt;}
.x58_c01095{left:288.100253pt;}
.x5f_c01095{left:297.516253pt;}
.x2a_c01095{left:298.431453pt;}
.x23_c01095{left:299.469853pt;}
.x66_c01095{left:304.815853pt;}
.x4f_c01095{left:306.259053pt;}
.x4a_c01095{left:307.433853pt;}
.x46_c01095{left:315.837853pt;}
.x41_c01095{left:317.065453pt;}
.x7_c01095{left:317.985053pt;}
.x3f_c01095{left:327.264653pt;}
.x4b_c01095{left:336.183453pt;}
.x8_c01095{left:338.458253pt;}
.x17_c01095{left:340.596653pt;}
.x67_c01095{left:344.666653pt;}
.x78_c01095{left:356.027453pt;}
.x10_c01095{left:357.778653pt;}
.x64_c01095{left:361.333853pt;}
.x68_c01095{left:364.946253pt;}
.x40_c01095{left:365.839453pt;}
.x69_c01095{left:367.793053pt;}
.x50_c01095{left:375.281853pt;}
.x24_c01095{left:376.628253pt;}
.x9_c01095{left:378.067053pt;}
.x6f_c01095{left:385.353453pt;}
.x11_c01095{left:387.874653pt;}
.x82_c01095{left:394.831053pt;}
.x59_c01095{left:405.074253pt;}
.xa_c01095{left:407.419453pt;}
.x70_c01095{left:414.265853pt;}
.x79_c01095{left:415.669453pt;}
.x18_c01095{left:416.835453pt;}
.x60_c01095{left:424.333053pt;}
.x6a_c01095{left:427.672653pt;}
.x54_c01095{left:435.931453pt;}
.x7a_c01095{left:443.838253pt;}
.x2e_c01095{left:445.048253pt;}
.x19_c01095{left:446.460653pt;}
.x5a_c01095{left:453.285053pt;}
.x61_c01095{left:454.917453pt;}
.x25_c01095{left:456.250653pt;}
.x76_c01095{left:463.488653pt;}
.x3a_c01095{left:465.794253pt;}
.x7d_c01095{left:473.340253pt;}
.x1a_c01095{left:474.691053pt;}
.x2f_c01095{left:476.534653pt;}
.x51_c01095{left:483.763853pt;}
.x3b_c01095{left:493.567053pt;}
.x30_c01095{left:495.296253pt;}
.x7e_c01095{left:502.551853pt;}
.xb_c01095{left:504.263453pt;}
.x71_c01095{left:505.297453pt;}
.x31_c01095{left:509.200253pt;}
.x62_c01095{left:512.258253pt;}
.x5b_c01095{left:513.208653pt;}
.x3c_c01095{left:522.074653pt;}
.x3d_c01095{left:524.292253pt;}
.xc_c01095{left:525.299853pt;}
.x55_c01095{left:531.860253pt;}
.x12_c01095{left:535.468253pt;}
.x4c_c01095{left:542.517053pt;}
.x2b_c01095{left:543.436653pt;}
.x6b_c01095{left:550.859453pt;}
.x32_c01095{left:553.033053pt;}
.xd_c01095{left:554.185853pt;}
.x35_c01095{left:555.752253pt;}
.x36_c01095{left:557.327453pt;}
.x47_c01095{left:562.748253pt;}
.x37_c01095{left:575.129853pt;}
.x7f_c01095{left:580.819053pt;}
.x52_c01095{left:581.743053pt;}
.x26_c01095{left:583.300653pt;}
.x72_c01095{left:589.825853pt;}
.x38_c01095{left:592.105053pt;}
.x1b_c01095{left:602.418653pt;}
.x33_c01095{left:603.342653pt;}
.x4d_c01095{left:609.766653pt;}
.x42_c01095{left:611.843453pt;}
.x13_c01095{left:613.053453pt;}
.x63_c01095{left:618.131053pt;}
.x80_c01095{left:619.759053pt;}
.x7b_c01095{left:620.973453pt;}
.xe_c01095{left:623.226253pt;}
.x2_c01095{left:624.172253pt;}
.x5c_c01095{left:630.759053pt;}
.x34_c01095{left:642.234253pt;}
.x27_c01095{left:652.671053pt;}
}





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

.ir_c01096:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01096{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01096;src:url('chunks/assets/font_d71c1decef473c8584730f9b.woff2')format("woff");}.ff1_c01096{font-family:ff1_c01096;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01096;src:url('chunks/assets/font_0db341994773b7d77353878b.woff2')format("woff");}.ff2_c01096{font-family:ff2_c01096;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01096;src:url('chunks/assets/font_a565fd25c9482eb5bfe42279.woff2')format("woff");}.ff3_c01096{font-family:ff3_c01096;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m29_c01096{transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);}
.ma0_c01096{transform:matrix(0.161337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161337,0.000000,0.000000,0.250000,0,0);}
.m44_c01096{transform:matrix(0.172619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172619,0.000000,0.000000,0.250000,0,0);}
.m46_c01096{transform:matrix(0.173673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173673,0.000000,0.000000,0.250000,0,0);}
.m97_c01096{transform:matrix(0.175249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175249,0.000000,0.000000,0.250000,0,0);}
.m57_c01096{transform:matrix(0.178053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178053,0.000000,0.000000,0.250000,0,0);}
.m1_c01096{transform:matrix(0.206140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206140,0.000000,0.000000,0.250000,0,0);}
.m9e_c01096{transform:matrix(0.209148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209148,0.000000,0.000000,0.250000,0,0);}
.m20_c01096{transform:matrix(0.218349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218349,0.000000,0.000000,0.250000,0,0);}
.m81_c01096{transform:matrix(0.245262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245262,0.000000,0.000000,0.250000,0,0);}
.m31_c01096{transform:matrix(0.249650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249650,0.000000,0.000000,0.250000,0,0);}
.m0_c01096{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m91_c01096{transform:matrix(0.250219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250219,0.000000,0.000000,0.250000,0,0);}
.mc_c01096{transform:matrix(0.250975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250975,0.000000,0.000000,0.250000,0,0);}
.m15_c01096{transform:matrix(0.251416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251416,0.000000,0.000000,0.250000,0,0);}
.m51_c01096{transform:matrix(0.251671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251671,0.000000,0.000000,0.250000,0,0);}
.mf_c01096{transform:matrix(0.252466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252466,0.000000,0.000000,0.250000,0,0);}
.m25_c01096{transform:matrix(0.253062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253062,0.000000,0.000000,0.250000,0,0);}
.m96_c01096{transform:matrix(0.253415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253415,0.000000,0.000000,0.250000,0,0);}
.m1f_c01096{transform:matrix(0.255334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255334,0.000000,0.000000,0.250000,0,0);}
.ma_c01096{transform:matrix(0.255906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255906,0.000000,0.000000,0.250000,0,0);}
.m77_c01096{transform:matrix(0.256106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256106,0.000000,0.000000,0.250000,0,0);}
.m3_c01096{transform:matrix(0.256463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256463,0.000000,0.000000,0.250000,0,0);}
.m53_c01096{transform:matrix(0.256895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256895,0.000000,0.000000,0.250000,0,0);}
.m9f_c01096{transform:matrix(0.257661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257661,0.000000,0.000000,0.250000,0,0);}
.m70_c01096{transform:matrix(0.258286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258286,0.000000,0.000000,0.250000,0,0);}
.m1a_c01096{transform:matrix(0.258749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258749,0.000000,0.000000,0.250000,0,0);}
.m19_c01096{transform:matrix(0.259560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259560,0.000000,0.000000,0.250000,0,0);}
.m79_c01096{transform:matrix(0.259828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259828,0.000000,0.000000,0.250000,0,0);}
.m72_c01096{transform:matrix(0.260423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260423,0.000000,0.000000,0.250000,0,0);}
.m90_c01096{transform:matrix(0.260493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260493,0.000000,0.000000,0.250000,0,0);}
.m8f_c01096{transform:matrix(0.261116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261116,0.000000,0.000000,0.250000,0,0);}
.m5d_c01096{transform:matrix(0.261324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261324,0.000000,0.000000,0.250000,0,0);}
.m3d_c01096{transform:matrix(0.262240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262240,0.000000,0.000000,0.250000,0,0);}
.m33_c01096{transform:matrix(0.262348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262348,0.000000,0.000000,0.250000,0,0);}
.m7b_c01096{transform:matrix(0.262600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262600,0.000000,0.000000,0.250000,0,0);}
.m3e_c01096{transform:matrix(0.263285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263285,0.000000,0.000000,0.250000,0,0);}
.m93_c01096{transform:matrix(0.263335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263335,0.000000,0.000000,0.250000,0,0);}
.m55_c01096{transform:matrix(0.263647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263647,0.000000,0.000000,0.250000,0,0);}
.m3a_c01096{transform:matrix(0.264297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264297,0.000000,0.000000,0.250000,0,0);}
.m66_c01096{transform:matrix(0.264512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264512,0.000000,0.000000,0.250000,0,0);}
.m68_c01096{transform:matrix(0.265519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265519,0.000000,0.000000,0.250000,0,0);}
.m27_c01096{transform:matrix(0.266314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266314,0.000000,0.000000,0.250000,0,0);}
.m24_c01096{transform:matrix(0.266582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266582,0.000000,0.000000,0.250000,0,0);}
.m4c_c01096{transform:matrix(0.267355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267355,0.000000,0.000000,0.250000,0,0);}
.m10_c01096{transform:matrix(0.268011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268011,0.000000,0.000000,0.250000,0,0);}
.m60_c01096{transform:matrix(0.268207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268207,0.000000,0.000000,0.250000,0,0);}
.m74_c01096{transform:matrix(0.269614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269614,0.000000,0.000000,0.250000,0,0);}
.m34_c01096{transform:matrix(0.269697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269697,0.000000,0.000000,0.250000,0,0);}
.m23_c01096{transform:matrix(0.270043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270043,0.000000,0.000000,0.250000,0,0);}
.m9b_c01096{transform:matrix(0.270657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270657,0.000000,0.000000,0.250000,0,0);}
.m5f_c01096{transform:matrix(0.270904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270904,0.000000,0.000000,0.250000,0,0);}
.m73_c01096{transform:matrix(0.271668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271668,0.000000,0.000000,0.250000,0,0);}
.m3b_c01096{transform:matrix(0.272046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272046,0.000000,0.000000,0.250000,0,0);}
.m1d_c01096{transform:matrix(0.272999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272999,0.000000,0.000000,0.250000,0,0);}
.m35_c01096{transform:matrix(0.273661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273661,0.000000,0.000000,0.250000,0,0);}
.m7a_c01096{transform:matrix(0.274169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274169,0.000000,0.000000,0.250000,0,0);}
.m6_c01096{transform:matrix(0.274703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274703,0.000000,0.000000,0.250000,0,0);}
.m6d_c01096{transform:matrix(0.275308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275308,0.000000,0.000000,0.250000,0,0);}
.m80_c01096{transform:matrix(0.275479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275479,0.000000,0.000000,0.250000,0,0);}
.m7f_c01096{transform:matrix(0.276108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276108,0.000000,0.000000,0.250000,0,0);}
.m21_c01096{transform:matrix(0.276815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276815,0.000000,0.000000,0.250000,0,0);}
.m3f_c01096{transform:matrix(0.276918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276918,0.000000,0.000000,0.250000,0,0);}
.m11_c01096{transform:matrix(0.276944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276944,0.000000,0.000000,0.250000,0,0);}
.m1e_c01096{transform:matrix(0.277081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277081,0.000000,0.000000,0.250000,0,0);}
.m84_c01096{transform:matrix(0.277813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277813,0.000000,0.000000,0.250000,0,0);}
.m58_c01096{transform:matrix(0.277853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277853,0.000000,0.000000,0.250000,0,0);}
.m41_c01096{transform:matrix(0.278212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278212,0.000000,0.000000,0.250000,0,0);}
.m92_c01096{transform:matrix(0.278499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278499,0.000000,0.000000,0.250000,0,0);}
.ma4_c01096{transform:matrix(0.278706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278706,0.000000,0.000000,0.250000,0,0);}
.m28_c01096{transform:matrix(0.278826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278826,0.000000,0.000000,0.250000,0,0);}
.m4d_c01096{transform:matrix(0.279094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279094,0.000000,0.000000,0.250000,0,0);}
.m2_c01096{transform:matrix(0.279473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279473,0.000000,0.000000,0.250000,0,0);}
.m6b_c01096{transform:matrix(0.279744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279744,0.000000,0.000000,0.250000,0,0);}
.m88_c01096{transform:matrix(0.280437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280437,0.000000,0.000000,0.250000,0,0);}
.m83_c01096{transform:matrix(0.281034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281034,0.000000,0.000000,0.250000,0,0);}
.m98_c01096{transform:matrix(0.281580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281580,0.000000,0.000000,0.250000,0,0);}
.m87_c01096{transform:matrix(0.282009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282009,0.000000,0.000000,0.250000,0,0);}
.m7d_c01096{transform:matrix(0.282370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282370,0.000000,0.000000,0.250000,0,0);}
.m64_c01096{transform:matrix(0.282807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282807,0.000000,0.000000,0.250000,0,0);}
.m9c_c01096{transform:matrix(0.283596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283596,0.000000,0.000000,0.250000,0,0);}
.m56_c01096{transform:matrix(0.284496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284496,0.000000,0.000000,0.250000,0,0);}
.m45_c01096{transform:matrix(0.284826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284826,0.000000,0.000000,0.250000,0,0);}
.m32_c01096{transform:matrix(0.284877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284877,0.000000,0.000000,0.250000,0,0);}
.m5b_c01096{transform:matrix(0.286032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286032,0.000000,0.000000,0.250000,0,0);}
.m3c_c01096{transform:matrix(0.287910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287910,0.000000,0.000000,0.250000,0,0);}
.m52_c01096{transform:matrix(0.287917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287917,0.000000,0.000000,0.250000,0,0);}
.m1c_c01096{transform:matrix(0.289363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289363,0.000000,0.000000,0.250000,0,0);}
.m67_c01096{transform:matrix(0.289815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289815,0.000000,0.000000,0.250000,0,0);}
.m2e_c01096{transform:matrix(0.290247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290247,0.000000,0.000000,0.250000,0,0);}
.m22_c01096{transform:matrix(0.290636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290636,0.000000,0.000000,0.250000,0,0);}
.m18_c01096{transform:matrix(0.291009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291009,0.000000,0.000000,0.250000,0,0);}
.m59_c01096{transform:matrix(0.291076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291076,0.000000,0.000000,0.250000,0,0);}
.m85_c01096{transform:matrix(0.291272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291272,0.000000,0.000000,0.250000,0,0);}
.m63_c01096{transform:matrix(0.294627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294627,0.000000,0.000000,0.250000,0,0);}
.m71_c01096{transform:matrix(0.295134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295134,0.000000,0.000000,0.250000,0,0);}
.m12_c01096{transform:matrix(0.295863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295863,0.000000,0.000000,0.250000,0,0);}
.m9d_c01096{transform:matrix(0.296432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296432,0.000000,0.000000,0.250000,0,0);}
.m6a_c01096{transform:matrix(0.296640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296640,0.000000,0.000000,0.250000,0,0);}
.m4e_c01096{transform:matrix(0.296668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296668,0.000000,0.000000,0.250000,0,0);}
.m38_c01096{transform:matrix(0.297205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297205,0.000000,0.000000,0.250000,0,0);}
.m43_c01096{transform:matrix(0.297399,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297399,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297399,0.000000,0.000000,0.250000,0,0);}
.m7e_c01096{transform:matrix(0.297869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297869,0.000000,0.000000,0.250000,0,0);}
.m9_c01096{transform:matrix(0.298843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298843,0.000000,0.000000,0.250000,0,0);}
.m50_c01096{transform:matrix(0.299201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299201,0.000000,0.000000,0.250000,0,0);}
.m4a_c01096{transform:matrix(0.299234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299234,0.000000,0.000000,0.250000,0,0);}
.m95_c01096{transform:matrix(0.299571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299571,0.000000,0.000000,0.250000,0,0);}
.m5a_c01096{transform:matrix(0.299744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299744,0.000000,0.000000,0.250000,0,0);}
.m6c_c01096{transform:matrix(0.299792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299792,0.000000,0.000000,0.250000,0,0);}
.m94_c01096{transform:matrix(0.299861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299861,0.000000,0.000000,0.250000,0,0);}
.m5e_c01096{transform:matrix(0.301690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301690,0.000000,0.000000,0.250000,0,0);}
.m7_c01096{transform:matrix(0.302069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302069,0.000000,0.000000,0.250000,0,0);}
.m8_c01096{transform:matrix(0.302525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302525,0.000000,0.000000,0.250000,0,0);}
.m65_c01096{transform:matrix(0.302689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302689,0.000000,0.000000,0.250000,0,0);}
.m75_c01096{transform:matrix(0.303643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303643,0.000000,0.000000,0.250000,0,0);}
.m26_c01096{transform:matrix(0.304064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304064,0.000000,0.000000,0.250000,0,0);}
.m14_c01096{transform:matrix(0.304308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304308,0.000000,0.000000,0.250000,0,0);}
.m2c_c01096{transform:matrix(0.305552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305552,0.000000,0.000000,0.250000,0,0);}
.m4f_c01096{transform:matrix(0.306331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306331,0.000000,0.000000,0.250000,0,0);}
.m8e_c01096{transform:matrix(0.306644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306644,0.000000,0.000000,0.250000,0,0);}
.m6e_c01096{transform:matrix(0.307435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307435,0.000000,0.000000,0.250000,0,0);}
.m8d_c01096{transform:matrix(0.310128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310128,0.000000,0.000000,0.250000,0,0);}
.m2d_c01096{transform:matrix(0.310194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310194,0.000000,0.000000,0.250000,0,0);}
.m54_c01096{transform:matrix(0.310248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310248,0.000000,0.000000,0.250000,0,0);}
.m9a_c01096{transform:matrix(0.311804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311804,0.000000,0.000000,0.250000,0,0);}
.m2f_c01096{transform:matrix(0.312035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312035,0.000000,0.000000,0.250000,0,0);}
.ma2_c01096{transform:matrix(0.312365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312365,0.000000,0.000000,0.250000,0,0);}
.m8b_c01096{transform:matrix(0.313467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313467,0.000000,0.000000,0.250000,0,0);}
.m6f_c01096{transform:matrix(0.313881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313881,0.000000,0.000000,0.250000,0,0);}
.ma3_c01096{transform:matrix(0.317097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317097,0.000000,0.000000,0.250000,0,0);}
.m4b_c01096{transform:matrix(0.317395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317395,0.000000,0.000000,0.250000,0,0);}
.m69_c01096{transform:matrix(0.320685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320685,0.000000,0.000000,0.250000,0,0);}
.me_c01096{transform:matrix(0.320869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320869,0.000000,0.000000,0.250000,0,0);}
.md_c01096{transform:matrix(0.321191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321191,0.000000,0.000000,0.250000,0,0);}
.m37_c01096{transform:matrix(0.321522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321522,0.000000,0.000000,0.250000,0,0);}
.m5c_c01096{transform:matrix(0.322926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322926,0.000000,0.000000,0.250000,0,0);}
.m17_c01096{transform:matrix(0.323236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323236,0.000000,0.000000,0.250000,0,0);}
.m48_c01096{transform:matrix(0.323971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323971,0.000000,0.000000,0.250000,0,0);}
.m4_c01096{transform:matrix(0.324094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324094,0.000000,0.000000,0.250000,0,0);}
.m2a_c01096{transform:matrix(0.325317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325317,0.000000,0.000000,0.250000,0,0);}
.ma1_c01096{transform:matrix(0.325350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325350,0.000000,0.000000,0.250000,0,0);}
.m76_c01096{transform:matrix(0.326759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326759,0.000000,0.000000,0.250000,0,0);}
.m86_c01096{transform:matrix(0.327657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327657,0.000000,0.000000,0.250000,0,0);}
.m8c_c01096{transform:matrix(0.331126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331126,0.000000,0.000000,0.250000,0,0);}
.m40_c01096{transform:matrix(0.335436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335436,0.000000,0.000000,0.250000,0,0);}
.mb_c01096{transform:matrix(0.335890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335890,0.000000,0.000000,0.250000,0,0);}
.m5_c01096{transform:matrix(0.336113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336113,0.000000,0.000000,0.250000,0,0);}
.m13_c01096{transform:matrix(0.337938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337938,0.000000,0.000000,0.250000,0,0);}
.m61_c01096{transform:matrix(0.340699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340699,0.000000,0.000000,0.250000,0,0);}
.m7c_c01096{transform:matrix(0.341035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341035,0.000000,0.000000,0.250000,0,0);}
.m39_c01096{transform:matrix(0.342904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342904,0.000000,0.000000,0.250000,0,0);}
.m82_c01096{transform:matrix(0.346473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346473,0.000000,0.000000,0.250000,0,0);}
.m30_c01096{transform:matrix(0.351491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351491,0.000000,0.000000,0.250000,0,0);}
.m99_c01096{transform:matrix(0.353577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353577,0.000000,0.000000,0.250000,0,0);}
.m49_c01096{transform:matrix(0.354214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354214,0.000000,0.000000,0.250000,0,0);}
.m47_c01096{transform:matrix(0.356806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356806,0.000000,0.000000,0.250000,0,0);}
.m8a_c01096{transform:matrix(0.358305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358305,0.000000,0.000000,0.250000,0,0);}
.m42_c01096{transform:matrix(0.364694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364694,0.000000,0.000000,0.250000,0,0);}
.m1b_c01096{transform:matrix(0.367340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367340,0.000000,0.000000,0.250000,0,0);}
.m89_c01096{transform:matrix(0.368612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368612,0.000000,0.000000,0.250000,0,0);}
.m36_c01096{transform:matrix(0.369365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369365,0.000000,0.000000,0.250000,0,0);}
.m62_c01096{transform:matrix(0.369571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369571,0.000000,0.000000,0.250000,0,0);}
.m16_c01096{transform:matrix(0.378643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378643,0.000000,0.000000,0.250000,0,0);}
.m2b_c01096{transform:matrix(0.381728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381728,0.000000,0.000000,0.250000,0,0);}
.m78_c01096{transform:matrix(0.391800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391800,0.000000,0.000000,0.250000,0,0);}
.v0_c01096{vertical-align:0.000000px;}
.ls2a_c01096{letter-spacing:-3.257100px;}
.lsd_c01096{letter-spacing:-2.862090px;}
.ls1d_c01096{letter-spacing:-2.688840px;}
.ls1a_c01096{letter-spacing:-2.231658px;}
.ls12_c01096{letter-spacing:-2.220293px;}
.ls22_c01096{letter-spacing:-2.077060px;}
.lse_c01096{letter-spacing:-1.363626px;}
.ls25_c01096{letter-spacing:-1.232355px;}
.ls4_c01096{letter-spacing:0.000000px;}
.ls21_c01096{letter-spacing:0.335967px;}
.ls2_c01096{letter-spacing:1.635480px;}
.ls13_c01096{letter-spacing:1.706447px;}
.ls7_c01096{letter-spacing:1.876090px;}
.ls29_c01096{letter-spacing:2.101592px;}
.ls1b_c01096{letter-spacing:2.653200px;}
.ls27_c01096{letter-spacing:3.003858px;}
.ls1_c01096{letter-spacing:3.016886px;}
.lsf_c01096{letter-spacing:3.207610px;}
.ls0_c01096{letter-spacing:3.230073px;}
.ls28_c01096{letter-spacing:3.405610px;}
.ls20_c01096{letter-spacing:3.426331px;}
.ls3_c01096{letter-spacing:3.436290px;}
.ls14_c01096{letter-spacing:3.459040px;}
.lsc_c01096{letter-spacing:3.514500px;}
.ls17_c01096{letter-spacing:3.533825px;}
.ls18_c01096{letter-spacing:3.623400px;}
.ls24_c01096{letter-spacing:3.672900px;}
.ls9_c01096{letter-spacing:3.821400px;}
.lsa_c01096{letter-spacing:3.835201px;}
.ls19_c01096{letter-spacing:3.861000px;}
.ls23_c01096{letter-spacing:3.880810px;}
.ls26_c01096{letter-spacing:3.940200px;}
.ls10_c01096{letter-spacing:3.943615px;}
.ls15_c01096{letter-spacing:3.999610px;}
.ls1f_c01096{letter-spacing:4.039200px;}
.ls6_c01096{letter-spacing:4.088700px;}
.ls8_c01096{letter-spacing:4.118400px;}
.lsb_c01096{letter-spacing:4.177810px;}
.ls16_c01096{letter-spacing:4.237200px;}
.ls11_c01096{letter-spacing:29.937798px;}
.ls5_c01096{letter-spacing:54.172998px;}
.ls1c_c01096{letter-spacing:59.875398px;}
.ls1e_c01096{letter-spacing:61.300998px;}
.sc__c01096{text-shadow:none;}
.sc0_c01096{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01096{-webkit-text-stroke:0px transparent;}
.sc0_c01096{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01096{word-spacing:0.000000px;}
._2_c01096{width:13.099205px;}
._1_c01096{width:21.196890px;}
._3_c01096{width:26.481906px;}
._4_c01096{width:79.380180px;}
._0_c01096{width:88.630819px;}
.fc0_c01096{color:transparent;}
.fsd_c01096{font-size:25.146000px;}
.fs0_c01096{font-size:27.720000px;}
.fse_c01096{font-size:29.937798px;}
.fs1b_c01096{font-size:49.896198px;}
.fs13_c01096{font-size:53.064000px;}
.fs1_c01096{font-size:54.172998px;}
.fs14_c01096{font-size:59.875398px;}
.fs16_c01096{font-size:61.300998px;}
.fsa_c01096{font-size:64.152198px;}
.fsc_c01096{font-size:66.528000px;}
.fs1e_c01096{font-size:68.112198px;}
.fs9_c01096{font-size:70.092198px;}
.fs8_c01096{font-size:70.290000px;}
.fs11_c01096{font-size:72.468000px;}
.fs1a_c01096{font-size:73.458000px;}
.fs4_c01096{font-size:74.448000px;}
.fs3_c01096{font-size:74.844000px;}
.fs18_c01096{font-size:76.032198px;}
.fs6_c01096{font-size:76.428000px;}
.fs15_c01096{font-size:76.824000px;}
.fs1c_c01096{font-size:77.022198px;}
.fs12_c01096{font-size:77.220000px;}
.fs19_c01096{font-size:77.616198px;}
.fs1d_c01096{font-size:78.804000px;}
.fs10_c01096{font-size:79.002198px;}
.fsb_c01096{font-size:79.992198px;}
.fs17_c01096{font-size:80.784000px;}
.fs2_c01096{font-size:81.774000px;}
.fs5_c01096{font-size:82.368000px;}
.fs7_c01096{font-size:83.556198px;}
.fsf_c01096{font-size:84.744000px;}
.fs1f_c01096{font-size:93.060000px;}
.y0_c01096{bottom:0.000000px;}
.y1_c01096{bottom:76.500000px;}
.y1f_c01096{bottom:127.503135px;}
.y1e_c01096{bottom:158.509935px;}
.y1d_c01096{bottom:191.293785px;}
.y1c_c01096{bottom:223.374735px;}
.y1b_c01096{bottom:255.450735px;}
.y1a_c01096{bottom:287.526735px;}
.y19_c01096{bottom:319.602735px;}
.y18_c01096{bottom:339.199785px;}
.y17_c01096{bottom:384.462585px;}
.y16_c01096{bottom:416.899935px;}
.y14_c01096{bottom:448.970985px;}
.y15_c01096{bottom:450.757935px;}
.y2_c01096{bottom:466.439535px;}
.y13_c01096{bottom:481.408335px;}
.y12_c01096{bottom:512.771535px;}
.y11_c01096{bottom:544.491135px;}
.y10_c01096{bottom:576.205785px;}
.yf_c01096{bottom:608.286735px;}
.ye_c01096{bottom:639.649935px;}
.yd_c01096{bottom:672.082335px;}
.yc_c01096{bottom:704.871135px;}
.yb_c01096{bottom:723.398985px;}
.ya_c01096{bottom:733.734585px;}
.y9_c01096{bottom:746.569935px;}
.y8_c01096{bottom:769.018185px;}
.y7_c01096{bottom:801.099135px;}
.y6_c01096{bottom:833.170185px;}
.y5_c01096{bottom:864.894735px;}
.y4_c01096{bottom:896.257935px;}
.y3_c01096{bottom:928.690335px;}
.h10_c01096{height:19.938573px;}
.hf_c01096{height:26.226492px;}
.h2_c01096{height:28.911094px;}
.h3_c01096{height:36.079217px;}
.h15_c01096{height:39.877015px;}
.h17_c01096{height:40.826465px;}
.h1c_c01096{height:52.040175px;}
.h14_c01096{height:55.344094px;}
.hc_c01096{height:62.961874px;}
.he_c01096{height:69.386625px;}
.h1f_c01096{height:71.038894px;}
.h12_c01096{height:71.123379px;}
.h1b_c01096{height:72.095010px;}
.h6_c01096{height:73.066641px;}
.hb_c01096{height:73.103972px;}
.ha_c01096{height:73.310273px;}
.h5_c01096{height:73.455293px;}
.h8_c01096{height:75.009902px;}
.h16_c01096{height:75.398555px;}
.h13_c01096{height:75.787207px;}
.h1a_c01096{height:76.176054px;}
.h1e_c01096{height:77.341816px;}
.h20_c01096{height:77.536337px;}
.hd_c01096{height:78.507968px;}
.h18_c01096{height:79.285078px;}
.h19_c01096{height:79.299207px;}
.h4_c01096{height:80.256709px;}
.h1d_c01096{height:80.331746px;}
.h7_c01096{height:80.839688px;}
.h9_c01096{height:82.005839px;}
.h11_c01096{height:83.171602px;}
.h21_c01096{height:91.333301px;}
.h1_c01096{height:1110.000000px;}
.h0_c01096{height:1263.000000px;}
.w1_c01096{width:775.500000px;}
.w0_c01096{width:892.500000px;}
.x0_c01096{left:0.000000px;}
.x2_c01096{left:52.268685px;}
.x1_c01096{left:58.500000px;}
.x5b_c01096{left:107.139435px;}
.x2a_c01096{left:108.911535px;}
.x4a_c01096{left:161.074635px;}
.x2e_c01096{left:162.609135px;}
.x3_c01096{left:163.930785px;}
.x69_c01096{left:182.983335px;}
.x4e_c01096{left:195.383085px;}
.x1f_c01096{left:197.541285px;}
.x4b_c01096{left:206.787885px;}
.x4_c01096{left:208.614435px;}
.x73_c01096{left:216.113685px;}
.x3c_c01096{left:218.024385px;}
.x10_c01096{left:219.791535px;}
.x5c_c01096{left:228.206535px;}
.x2b_c01096{left:229.587585px;}
.x65_c01096{left:238.769835px;}
.x26_c01096{left:250.080585px;}
.xd_c01096{left:252.466485px;}
.x61_c01096{left:261.901185px;}
.x3a_c01096{left:263.009985px;}
.x11_c01096{left:264.173235px;}
.x6e_c01096{left:272.048685px;}
.x4c_c01096{left:273.494085px;}
.x19_c01096{left:274.563285px;}
.x57_c01096{left:283.205985px;}
.x3d_c01096{left:284.517735px;}
.x3b_c01096{left:295.328535px;}
.xe_c01096{left:296.981835px;}
.x4d_c01096{left:305.659185px;}
.x1a_c01096{left:306.921435px;}
.x2f_c01096{left:308.406435px;}
.x5_c01096{left:317.791635px;}
.x12_c01096{left:319.410285px;}
.x5d_c01096{left:327.825285px;}
.x33_c01096{left:329.805285px;}
.x5e_c01096{left:339.091485px;}
.x1b_c01096{left:341.081385px;}
.xf_c01096{left:342.625785px;}
.x3e_c01096{left:350.991285px;}
.x44_c01096{left:352.258485px;}
.x74_c01096{left:360.802185px;}
.x54_c01096{left:362.118885px;}
.x34_c01096{left:364.262235px;}
.x58_c01096{left:373.632585px;}
.x3f_c01096{left:384.463185px;}
.x13_c01096{left:385.765035px;}
.x35_c01096{left:395.184885px;}
.x75_c01096{left:404.985885px;}
.x6f_c01096{left:406.396635px;}
.x6_c01096{left:407.832135px;}
.x6a_c01096{left:416.648085px;}
.x14_c01096{left:417.682635px;}
.x4f_c01096{left:419.256735px;}
.x55_c01096{left:427.988535px;}
.x27_c01096{left:430.913985px;}
.x40_c01096{left:439.066635px;}
.x45_c01096{left:440.645685px;}
.x5f_c01096{left:449.402235px;}
.x2c_c01096{left:451.857435px;}
.x15_c01096{left:454.565085px;}
.x46_c01096{left:461.450535px;}
.x20_c01096{left:463.450335px;}
.x62_c01096{left:473.078085px;}
.x36_c01096{left:474.137385px;}
.x7_c01096{left:475.562985px;}
.x5a_c01096{left:481.997985px;}
.x21_c01096{left:484.294785px;}
.x41_c01096{left:485.740185px;}
.x50_c01096{left:494.764035px;}
.x8_c01096{left:496.209435px;}
.x1c_c01096{left:508.000335px;}
.x37_c01096{left:516.761835px;}
.x22_c01096{left:518.217135px;}
.x16_c01096{left:529.032885px;}
.x47_c01096{left:539.185335px;}
.x2d_c01096{left:540.883185px;}
.x63_c01096{left:549.169485px;}
.x6b_c01096{left:550.397085px;}
.x42_c01096{left:551.491035px;}
.x51_c01096{left:561.108885px;}
.x38_c01096{left:562.836435px;}
.x64_c01096{left:571.399935px;}
.x9_c01096{left:573.404685px;}
.x6c_c01096{left:581.275185px;}
.x67_c01096{left:582.497835px;}
.x43_c01096{left:584.953035px;}
.x23_c01096{left:593.714535px;}
.xa_c01096{left:596.986485px;}
.x60_c01096{left:604.921335px;}
.x48_c01096{left:606.718185px;}
.x66_c01096{left:615.014385px;}
.x30_c01096{left:618.058635px;}
.x49_c01096{left:626.988435px;}
.x39_c01096{left:628.131885px;}
.xb_c01096{left:629.829735px;}
.x24_c01096{left:639.858435px;}
.x70_c01096{left:648.303135px;}
.x31_c01096{left:649.827735px;}
.x68_c01096{left:660.143535px;}
.x1d_c01096{left:661.257285px;}
.x17_c01096{left:662.618535px;}
.x59_c01096{left:671.315685px;}
.x56_c01096{left:682.512585px;}
.x52_c01096{left:683.685735px;}
.x71_c01096{left:692.229435px;}
.x18_c01096{left:694.209435px;}
.x28_c01096{left:702.545235px;}
.x29_c01096{left:703.881735px;}
.x1e_c01096{left:705.030135px;}
.xc_c01096{left:706.129035px;}
.x53_c01096{left:712.331385px;}
.x6d_c01096{left:714.316335px;}
.x25_c01096{left:716.885385px;}
.x32_c01096{left:728.547585px;}
.x72_c01096{left:737.383335px;}
@media print{
.v0_c01096{vertical-align:0.000000pt;}
.ls2a_c01096{letter-spacing:-2.895200pt;}
.lsd_c01096{letter-spacing:-2.544080pt;}
.ls1d_c01096{letter-spacing:-2.390080pt;}
.ls1a_c01096{letter-spacing:-1.983696pt;}
.ls12_c01096{letter-spacing:-1.973594pt;}
.ls22_c01096{letter-spacing:-1.846275pt;}
.lse_c01096{letter-spacing:-1.212112pt;}
.ls25_c01096{letter-spacing:-1.095427pt;}
.ls4_c01096{letter-spacing:0.000000pt;}
.ls21_c01096{letter-spacing:0.298638pt;}
.ls2_c01096{letter-spacing:1.453760pt;}
.ls13_c01096{letter-spacing:1.516842pt;}
.ls7_c01096{letter-spacing:1.667635pt;}
.ls29_c01096{letter-spacing:1.868082pt;}
.ls1b_c01096{letter-spacing:2.358400pt;}
.ls27_c01096{letter-spacing:2.670096pt;}
.ls1_c01096{letter-spacing:2.681677pt;}
.lsf_c01096{letter-spacing:2.851209pt;}
.ls0_c01096{letter-spacing:2.871176pt;}
.ls28_c01096{letter-spacing:3.027209pt;}
.ls20_c01096{letter-spacing:3.045627pt;}
.ls3_c01096{letter-spacing:3.054480pt;}
.ls14_c01096{letter-spacing:3.074702pt;}
.lsc_c01096{letter-spacing:3.124000pt;}
.ls17_c01096{letter-spacing:3.141178pt;}
.ls18_c01096{letter-spacing:3.220800pt;}
.ls24_c01096{letter-spacing:3.264800pt;}
.ls9_c01096{letter-spacing:3.396800pt;}
.lsa_c01096{letter-spacing:3.409067pt;}
.ls19_c01096{letter-spacing:3.432000pt;}
.ls23_c01096{letter-spacing:3.449609pt;}
.ls26_c01096{letter-spacing:3.502400pt;}
.ls10_c01096{letter-spacing:3.505436pt;}
.ls15_c01096{letter-spacing:3.555209pt;}
.ls1f_c01096{letter-spacing:3.590400pt;}
.ls6_c01096{letter-spacing:3.634400pt;}
.ls8_c01096{letter-spacing:3.660800pt;}
.lsb_c01096{letter-spacing:3.713609pt;}
.ls16_c01096{letter-spacing:3.766400pt;}
.ls11_c01096{letter-spacing:26.611376pt;}
.ls5_c01096{letter-spacing:48.153776pt;}
.ls1c_c01096{letter-spacing:53.222576pt;}
.ls1e_c01096{letter-spacing:54.489776pt;}
.ws0_c01096{word-spacing:0.000000pt;}
._2_c01096{width:11.643738pt;}
._1_c01096{width:18.841680pt;}
._3_c01096{width:23.539472pt;}
._4_c01096{width:70.560160pt;}
._0_c01096{width:78.782950pt;}
.fsd_c01096{font-size:22.352000pt;}
.fs0_c01096{font-size:24.640000pt;}
.fse_c01096{font-size:26.611376pt;}
.fs1b_c01096{font-size:44.352176pt;}
.fs13_c01096{font-size:47.168000pt;}
.fs1_c01096{font-size:48.153776pt;}
.fs14_c01096{font-size:53.222576pt;}
.fs16_c01096{font-size:54.489776pt;}
.fsa_c01096{font-size:57.024176pt;}
.fsc_c01096{font-size:59.136000pt;}
.fs1e_c01096{font-size:60.544176pt;}
.fs9_c01096{font-size:62.304176pt;}
.fs8_c01096{font-size:62.480000pt;}
.fs11_c01096{font-size:64.416000pt;}
.fs1a_c01096{font-size:65.296000pt;}
.fs4_c01096{font-size:66.176000pt;}
.fs3_c01096{font-size:66.528000pt;}
.fs18_c01096{font-size:67.584176pt;}
.fs6_c01096{font-size:67.936000pt;}
.fs15_c01096{font-size:68.288000pt;}
.fs1c_c01096{font-size:68.464176pt;}
.fs12_c01096{font-size:68.640000pt;}
.fs19_c01096{font-size:68.992176pt;}
.fs1d_c01096{font-size:70.048000pt;}
.fs10_c01096{font-size:70.224176pt;}
.fsb_c01096{font-size:71.104176pt;}
.fs17_c01096{font-size:71.808000pt;}
.fs2_c01096{font-size:72.688000pt;}
.fs5_c01096{font-size:73.216000pt;}
.fs7_c01096{font-size:74.272176pt;}
.fsf_c01096{font-size:75.328000pt;}
.fs1f_c01096{font-size:82.720000pt;}
.y0_c01096{bottom:0.000000pt;}
.y1_c01096{bottom:68.000000pt;}
.y1f_c01096{bottom:113.336120pt;}
.y1e_c01096{bottom:140.897720pt;}
.y1d_c01096{bottom:170.038920pt;}
.y1c_c01096{bottom:198.555320pt;}
.y1b_c01096{bottom:227.067320pt;}
.y1a_c01096{bottom:255.579320pt;}
.y19_c01096{bottom:284.091320pt;}
.y18_c01096{bottom:301.510920pt;}
.y17_c01096{bottom:341.744520pt;}
.y16_c01096{bottom:370.577720pt;}
.y14_c01096{bottom:399.085320pt;}
.y15_c01096{bottom:400.673720pt;}
.y2_c01096{bottom:414.612920pt;}
.y13_c01096{bottom:427.918520pt;}
.y12_c01096{bottom:455.796920pt;}
.y11_c01096{bottom:483.992120pt;}
.y10_c01096{bottom:512.182920pt;}
.yf_c01096{bottom:540.699320pt;}
.ye_c01096{bottom:568.577720pt;}
.yd_c01096{bottom:597.406520pt;}
.yc_c01096{bottom:626.552120pt;}
.yb_c01096{bottom:643.021320pt;}
.ya_c01096{bottom:652.208520pt;}
.y9_c01096{bottom:663.617720pt;}
.y8_c01096{bottom:683.571720pt;}
.y7_c01096{bottom:712.088120pt;}
.y6_c01096{bottom:740.595720pt;}
.y5_c01096{bottom:768.795320pt;}
.y4_c01096{bottom:796.673720pt;}
.y3_c01096{bottom:825.502520pt;}
.h10_c01096{height:17.723176pt;}
.hf_c01096{height:23.312438pt;}
.h2_c01096{height:25.698750pt;}
.h3_c01096{height:32.070415pt;}
.h15_c01096{height:35.446236pt;}
.h17_c01096{height:36.290191pt;}
.h1c_c01096{height:46.257934pt;}
.h14_c01096{height:49.194750pt;}
.hc_c01096{height:55.966110pt;}
.he_c01096{height:61.677000pt;}
.h1f_c01096{height:63.145684pt;}
.h12_c01096{height:63.220781pt;}
.h1b_c01096{height:64.084453pt;}
.h6_c01096{height:64.948125pt;}
.hb_c01096{height:64.981309pt;}
.ha_c01096{height:65.164688pt;}
.h5_c01096{height:65.293594pt;}
.h8_c01096{height:66.675469pt;}
.h16_c01096{height:67.020938pt;}
.h13_c01096{height:67.366406pt;}
.h1a_c01096{height:67.712048pt;}
.h1e_c01096{height:68.748281pt;}
.h20_c01096{height:68.921188pt;}
.hd_c01096{height:69.784860pt;}
.h18_c01096{height:70.475625pt;}
.h19_c01096{height:70.488184pt;}
.h4_c01096{height:71.339297pt;}
.h1d_c01096{height:71.405996pt;}
.h7_c01096{height:71.857500pt;}
.h9_c01096{height:72.894079pt;}
.h11_c01096{height:73.930313pt;}
.h21_c01096{height:81.185156pt;}
.h1_c01096{height:986.666667pt;}
.h0_c01096{height:1122.666667pt;}
.w1_c01096{width:689.333333pt;}
.w0_c01096{width:793.333333pt;}
.x0_c01096{left:0.000000pt;}
.x2_c01096{left:46.461053pt;}
.x1_c01096{left:52.000000pt;}
.x5b_c01096{left:95.235053pt;}
.x2a_c01096{left:96.810253pt;}
.x4a_c01096{left:143.177453pt;}
.x2e_c01096{left:144.541453pt;}
.x3_c01096{left:145.716253pt;}
.x69_c01096{left:162.651853pt;}
.x4e_c01096{left:173.673853pt;}
.x1f_c01096{left:175.592253pt;}
.x4b_c01096{left:183.811453pt;}
.x4_c01096{left:185.435053pt;}
.x73_c01096{left:192.101053pt;}
.x3c_c01096{left:193.799453pt;}
.x10_c01096{left:195.370253pt;}
.x5c_c01096{left:202.850253pt;}
.x2b_c01096{left:204.077853pt;}
.x65_c01096{left:212.239853pt;}
.x26_c01096{left:222.293853pt;}
.xd_c01096{left:224.414653pt;}
.x61_c01096{left:232.801053pt;}
.x3a_c01096{left:233.786653pt;}
.x11_c01096{left:234.820653pt;}
.x6e_c01096{left:241.821053pt;}
.x4c_c01096{left:243.105853pt;}
.x19_c01096{left:244.056253pt;}
.x57_c01096{left:251.738653pt;}
.x3d_c01096{left:252.904653pt;}
.x3b_c01096{left:262.514253pt;}
.xe_c01096{left:263.983853pt;}
.x4d_c01096{left:271.697053pt;}
.x1a_c01096{left:272.819053pt;}
.x2f_c01096{left:274.139053pt;}
.x5_c01096{left:282.481453pt;}
.x12_c01096{left:283.920253pt;}
.x5d_c01096{left:291.400253pt;}
.x33_c01096{left:293.160253pt;}
.x5e_c01096{left:301.414653pt;}
.x1b_c01096{left:303.183453pt;}
.xf_c01096{left:304.556253pt;}
.x3e_c01096{left:311.992253pt;}
.x44_c01096{left:313.118653pt;}
.x74_c01096{left:320.713053pt;}
.x54_c01096{left:321.883453pt;}
.x34_c01096{left:323.788653pt;}
.x58_c01096{left:332.117853pt;}
.x3f_c01096{left:341.745053pt;}
.x13_c01096{left:342.902253pt;}
.x35_c01096{left:351.275453pt;}
.x75_c01096{left:359.987453pt;}
.x6f_c01096{left:361.241453pt;}
.x6_c01096{left:362.517453pt;}
.x6a_c01096{left:370.353853pt;}
.x14_c01096{left:371.273453pt;}
.x4f_c01096{left:372.672653pt;}
.x55_c01096{left:380.434253pt;}
.x27_c01096{left:383.034653pt;}
.x40_c01096{left:390.281453pt;}
.x45_c01096{left:391.685053pt;}
.x5f_c01096{left:399.468653pt;}
.x2c_c01096{left:401.651053pt;}
.x15_c01096{left:404.057853pt;}
.x46_c01096{left:410.178253pt;}
.x20_c01096{left:411.955853pt;}
.x62_c01096{left:420.513853pt;}
.x36_c01096{left:421.455453pt;}
.x7_c01096{left:422.722653pt;}
.x5a_c01096{left:428.442653pt;}
.x21_c01096{left:430.484253pt;}
.x41_c01096{left:431.769053pt;}
.x50_c01096{left:439.790253pt;}
.x8_c01096{left:441.075053pt;}
.x1c_c01096{left:451.555853pt;}
.x37_c01096{left:459.343853pt;}
.x22_c01096{left:460.637453pt;}
.x16_c01096{left:470.251453pt;}
.x47_c01096{left:479.275853pt;}
.x2d_c01096{left:480.785053pt;}
.x63_c01096{left:488.150653pt;}
.x6b_c01096{left:489.241853pt;}
.x42_c01096{left:490.214253pt;}
.x51_c01096{left:498.763453pt;}
.x38_c01096{left:500.299053pt;}
.x64_c01096{left:507.911053pt;}
.x9_c01096{left:509.693053pt;}
.x6c_c01096{left:516.689053pt;}
.x67_c01096{left:517.775853pt;}
.x43_c01096{left:519.958253pt;}
.x23_c01096{left:527.746253pt;}
.xa_c01096{left:530.654653pt;}
.x60_c01096{left:537.707853pt;}
.x48_c01096{left:539.305053pt;}
.x66_c01096{left:546.679453pt;}
.x30_c01096{left:549.385453pt;}
.x49_c01096{left:557.323053pt;}
.x39_c01096{left:558.339453pt;}
.xb_c01096{left:559.848653pt;}
.x24_c01096{left:568.763053pt;}
.x70_c01096{left:576.269453pt;}
.x31_c01096{left:577.624653pt;}
.x68_c01096{left:586.794253pt;}
.x1d_c01096{left:587.784253pt;}
.x17_c01096{left:588.994253pt;}
.x59_c01096{left:596.725053pt;}
.x56_c01096{left:606.677853pt;}
.x52_c01096{left:607.720653pt;}
.x71_c01096{left:615.315053pt;}
.x18_c01096{left:617.075053pt;}
.x28_c01096{left:624.484653pt;}
.x29_c01096{left:625.672653pt;}
.x1e_c01096{left:626.693453pt;}
.xc_c01096{left:627.670253pt;}
.x53_c01096{left:633.183453pt;}
.x6d_c01096{left:634.947853pt;}
.x25_c01096{left:637.231453pt;}
.x32_c01096{left:647.597853pt;}
.x72_c01096{left:655.451853pt;}
}





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

.ir_c01097:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01097{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01097;src:url('chunks/assets/font_229127ff5fc21fe341850894.woff2')format("woff");}.ff1_c01097{font-family:ff1_c01097;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01097;src:url('chunks/assets/font_5ed9f9a20267b3acde52c29d.woff2')format("woff");}.ff2_c01097{font-family:ff2_c01097;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01097;src:url('chunks/assets/font_08cb79062079c858a4e5948b.woff2')format("woff");}.ff3_c01097{font-family:ff3_c01097;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01097;src:url('chunks/assets/font_23c409da1aee0a29e6d9ec83.woff2')format("woff");}.ff4_c01097{font-family:ff4_c01097;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m7d_c01097{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);}
.m43_c01097{transform:matrix(0.114043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114043,0.000000,0.000000,0.250000,0,0);}
.m9b_c01097{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);}
.m53_c01097{transform:matrix(0.129134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129134,0.000000,0.000000,0.250000,0,0);}
.m37_c01097{transform:matrix(0.144186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144186,0.000000,0.000000,0.250000,0,0);}
.ma6_c01097{transform:matrix(0.155364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155364,0.000000,0.000000,0.250000,0,0);}
.m4d_c01097{transform:matrix(0.159803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159803,0.000000,0.000000,0.250000,0,0);}
.mae_c01097{transform:matrix(0.160375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160375,0.000000,0.000000,0.250000,0,0);}
.m4b_c01097{transform:matrix(0.168154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168154,0.000000,0.000000,0.250000,0,0);}
.m93_c01097{transform:matrix(0.168605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168605,0.000000,0.000000,0.250000,0,0);}
.m35_c01097{transform:matrix(0.182412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182412,0.000000,0.000000,0.250000,0,0);}
.maa_c01097{transform:matrix(0.183286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183286,0.000000,0.000000,0.250000,0,0);}
.m63_c01097{transform:matrix(0.186507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186507,0.000000,0.000000,0.250000,0,0);}
.m6f_c01097{transform:matrix(0.190278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190278,0.000000,0.000000,0.250000,0,0);}
.m42_c01097{transform:matrix(0.199753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199753,0.000000,0.000000,0.250000,0,0);}
.m7c_c01097{transform:matrix(0.205598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205598,0.000000,0.000000,0.250000,0,0);}
.m90_c01097{transform:matrix(0.212162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212162,0.000000,0.000000,0.250000,0,0);}
.mad_c01097{transform:matrix(0.220686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220686,0.000000,0.000000,0.250000,0,0);}
.m20_c01097{transform:matrix(0.221597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221597,0.000000,0.000000,0.250000,0,0);}
.m41_c01097{transform:matrix(0.236846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236846,0.000000,0.000000,0.250000,0,0);}
.m0_c01097{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m5e_c01097{transform:matrix(0.250322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250322,0.000000,0.000000,0.250000,0,0);}
.m5f_c01097{transform:matrix(0.255187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255187,0.000000,0.000000,0.250000,0,0);}
.m4c_c01097{transform:matrix(0.257512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257512,0.000000,0.000000,0.250000,0,0);}
.m4e_c01097{transform:matrix(0.258348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258348,0.000000,0.000000,0.250000,0,0);}
.m8a_c01097{transform:matrix(0.258360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258360,0.000000,0.000000,0.250000,0,0);}
.m9_c01097{transform:matrix(0.259183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259183,0.000000,0.000000,0.250000,0,0);}
.mc_c01097{transform:matrix(0.259486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259486,0.000000,0.000000,0.250000,0,0);}
.m62_c01097{transform:matrix(0.259576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259576,0.000000,0.000000,0.250000,0,0);}
.ma8_c01097{transform:matrix(0.259940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259940,0.000000,0.000000,0.250000,0,0);}
.m1_c01097{transform:matrix(0.260072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260072,0.000000,0.000000,0.250000,0,0);}
.ma_c01097{transform:matrix(0.261398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261398,0.000000,0.000000,0.250000,0,0);}
.ma7_c01097{transform:matrix(0.263051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263051,0.000000,0.000000,0.250000,0,0);}
.m92_c01097{transform:matrix(0.263670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263670,0.000000,0.000000,0.250000,0,0);}
.m56_c01097{transform:matrix(0.264985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264985,0.000000,0.000000,0.250000,0,0);}
.m87_c01097{transform:matrix(0.268001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268001,0.000000,0.000000,0.250000,0,0);}
.m71_c01097{transform:matrix(0.268063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268063,0.000000,0.000000,0.250000,0,0);}
.m86_c01097{transform:matrix(0.268158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268158,0.000000,0.000000,0.250000,0,0);}
.mb0_c01097{transform:matrix(0.269652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269652,0.000000,0.000000,0.250000,0,0);}
.m61_c01097{transform:matrix(0.269841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269841,0.000000,0.000000,0.250000,0,0);}
.m15_c01097{transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);}
.m3e_c01097{transform:matrix(0.271834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271834,0.000000,0.000000,0.250000,0,0);}
.m83_c01097{transform:matrix(0.272447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272447,0.000000,0.000000,0.250000,0,0);}
.m84_c01097{transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272543,0.000000,0.000000,0.250000,0,0);}
.m46_c01097{transform:matrix(0.272732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272732,0.000000,0.000000,0.250000,0,0);}
.m47_c01097{transform:matrix(0.274322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274322,0.000000,0.000000,0.250000,0,0);}
.m57_c01097{transform:matrix(0.274953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274953,0.000000,0.000000,0.250000,0,0);}
.m59_c01097{transform:matrix(0.275231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275231,0.000000,0.000000,0.250000,0,0);}
.m22_c01097{transform:matrix(0.275752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275752,0.000000,0.000000,0.250000,0,0);}
.m55_c01097{transform:matrix(0.276127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276127,0.000000,0.000000,0.250000,0,0);}
.m27_c01097{transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);}
.m10_c01097{transform:matrix(0.276413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276413,0.000000,0.000000,0.250000,0,0);}
.m2b_c01097{transform:matrix(0.276672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276672,0.000000,0.000000,0.250000,0,0);}
.ma0_c01097{transform:matrix(0.277092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277092,0.000000,0.000000,0.250000,0,0);}
.mab_c01097{transform:matrix(0.277657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277657,0.000000,0.000000,0.250000,0,0);}
.m70_c01097{transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);}
.m6a_c01097{transform:matrix(0.278303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278303,0.000000,0.000000,0.250000,0,0);}
.m8d_c01097{transform:matrix(0.279317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279317,0.000000,0.000000,0.250000,0,0);}
.m91_c01097{transform:matrix(0.279388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279388,0.000000,0.000000,0.250000,0,0);}
.ma9_c01097{transform:matrix(0.279556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279556,0.000000,0.000000,0.250000,0,0);}
.m3f_c01097{transform:matrix(0.280290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280290,0.000000,0.000000,0.250000,0,0);}
.m28_c01097{transform:matrix(0.282198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282198,0.000000,0.000000,0.250000,0,0);}
.m32_c01097{transform:matrix(0.282365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282365,0.000000,0.000000,0.250000,0,0);}
.m72_c01097{transform:matrix(0.282928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282928,0.000000,0.000000,0.250000,0,0);}
.m9d_c01097{transform:matrix(0.283002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283002,0.000000,0.000000,0.250000,0,0);}
.ma4_c01097{transform:matrix(0.283067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283067,0.000000,0.000000,0.250000,0,0);}
.m79_c01097{transform:matrix(0.283657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283657,0.000000,0.000000,0.250000,0,0);}
.m25_c01097{transform:matrix(0.284164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284164,0.000000,0.000000,0.250000,0,0);}
.m66_c01097{transform:matrix(0.284840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284840,0.000000,0.000000,0.250000,0,0);}
.m39_c01097{transform:matrix(0.285012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285012,0.000000,0.000000,0.250000,0,0);}
.m2a_c01097{transform:matrix(0.285329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285329,0.000000,0.000000,0.250000,0,0);}
.m44_c01097{transform:matrix(0.285994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285994,0.000000,0.000000,0.250000,0,0);}
.m78_c01097{transform:matrix(0.286039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286039,0.000000,0.000000,0.250000,0,0);}
.m51_c01097{transform:matrix(0.286631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286631,0.000000,0.000000,0.250000,0,0);}
.m82_c01097{transform:matrix(0.287127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287127,0.000000,0.000000,0.250000,0,0);}
.m7b_c01097{transform:matrix(0.288610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288610,0.000000,0.000000,0.250000,0,0);}
.m24_c01097{transform:matrix(0.288635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288635,0.000000,0.000000,0.250000,0,0);}
.m5a_c01097{transform:matrix(0.288980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288980,0.000000,0.000000,0.250000,0,0);}
.m81_c01097{transform:matrix(0.289992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289992,0.000000,0.000000,0.250000,0,0);}
.m7_c01097{transform:matrix(0.290935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290935,0.000000,0.000000,0.250000,0,0);}
.m7e_c01097{transform:matrix(0.291407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291407,0.000000,0.000000,0.250000,0,0);}
.m6c_c01097{transform:matrix(0.291562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291562,0.000000,0.000000,0.250000,0,0);}
.m7a_c01097{transform:matrix(0.292345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292345,0.000000,0.000000,0.250000,0,0);}
.ma5_c01097{transform:matrix(0.293351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293351,0.000000,0.000000,0.250000,0,0);}
.md_c01097{transform:matrix(0.293496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293496,0.000000,0.000000,0.250000,0,0);}
.m54_c01097{transform:matrix(0.293637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293637,0.000000,0.000000,0.250000,0,0);}
.m48_c01097{transform:matrix(0.295224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295224,0.000000,0.000000,0.250000,0,0);}
.m8e_c01097{transform:matrix(0.296014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296014,0.000000,0.000000,0.250000,0,0);}
.m64_c01097{transform:matrix(0.296267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296267,0.000000,0.000000,0.250000,0,0);}
.m73_c01097{transform:matrix(0.296442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296442,0.000000,0.000000,0.250000,0,0);}
.m3c_c01097{transform:matrix(0.298189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298189,0.000000,0.000000,0.250000,0,0);}
.m89_c01097{transform:matrix(0.298351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298351,0.000000,0.000000,0.250000,0,0);}
.m26_c01097{transform:matrix(0.298506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298506,0.000000,0.000000,0.250000,0,0);}
.m9f_c01097{transform:matrix(0.298522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298522,0.000000,0.000000,0.250000,0,0);}
.m77_c01097{transform:matrix(0.298566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298566,0.000000,0.000000,0.250000,0,0);}
.m80_c01097{transform:matrix(0.299503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299503,0.000000,0.000000,0.250000,0,0);}
.m65_c01097{transform:matrix(0.299933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299933,0.000000,0.000000,0.250000,0,0);}
.m76_c01097{transform:matrix(0.300204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300204,0.000000,0.000000,0.250000,0,0);}
.m6b_c01097{transform:matrix(0.300767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300767,0.000000,0.000000,0.250000,0,0);}
.m12_c01097{transform:matrix(0.300870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300870,0.000000,0.000000,0.250000,0,0);}
.m36_c01097{transform:matrix(0.301103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301103,0.000000,0.000000,0.250000,0,0);}
.m18_c01097{transform:matrix(0.301613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301613,0.000000,0.000000,0.250000,0,0);}
.m74_c01097{transform:matrix(0.302495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302495,0.000000,0.000000,0.250000,0,0);}
.m17_c01097{transform:matrix(0.302503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302503,0.000000,0.000000,0.250000,0,0);}
.m1e_c01097{transform:matrix(0.302879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302879,0.000000,0.000000,0.250000,0,0);}
.m58_c01097{transform:matrix(0.304200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304200,0.000000,0.000000,0.250000,0,0);}
.m3b_c01097{transform:matrix(0.304623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304623,0.000000,0.000000,0.250000,0,0);}
.m85_c01097{transform:matrix(0.305959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305959,0.000000,0.000000,0.250000,0,0);}
.mf_c01097{transform:matrix(0.307058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307058,0.000000,0.000000,0.250000,0,0);}
.m14_c01097{transform:matrix(0.308623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308623,0.000000,0.000000,0.250000,0,0);}
.m34_c01097{transform:matrix(0.309283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309283,0.000000,0.000000,0.250000,0,0);}
.m69_c01097{transform:matrix(0.309890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309890,0.000000,0.000000,0.250000,0,0);}
.m33_c01097{transform:matrix(0.310142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310142,0.000000,0.000000,0.250000,0,0);}
.m5_c01097{transform:matrix(0.310586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310586,0.000000,0.000000,0.250000,0,0);}
.mb1_c01097{transform:matrix(0.311194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311194,0.000000,0.000000,0.250000,0,0);}
.m38_c01097{transform:matrix(0.311469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311469,0.000000,0.000000,0.250000,0,0);}
.m52_c01097{transform:matrix(0.311489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311489,0.000000,0.000000,0.250000,0,0);}
.m23_c01097{transform:matrix(0.311997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311997,0.000000,0.000000,0.250000,0,0);}
.m1a_c01097{transform:matrix(0.312090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312090,0.000000,0.000000,0.250000,0,0);}
.m16_c01097{transform:matrix(0.312857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312857,0.000000,0.000000,0.250000,0,0);}
.ma1_c01097{transform:matrix(0.313788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313788,0.000000,0.000000,0.250000,0,0);}
.ma2_c01097{transform:matrix(0.314352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314352,0.000000,0.000000,0.250000,0,0);}
.m6_c01097{transform:matrix(0.314956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314956,0.000000,0.000000,0.250000,0,0);}
.m31_c01097{transform:matrix(0.315118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315118,0.000000,0.000000,0.250000,0,0);}
.me_c01097{transform:matrix(0.315175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315175,0.000000,0.000000,0.250000,0,0);}
.m4a_c01097{transform:matrix(0.315584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315584,0.000000,0.000000,0.250000,0,0);}
.m3d_c01097{transform:matrix(0.315962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315962,0.000000,0.000000,0.250000,0,0);}
.m30_c01097{transform:matrix(0.316292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316292,0.000000,0.000000,0.250000,0,0);}
.m1d_c01097{transform:matrix(0.316430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316430,0.000000,0.000000,0.250000,0,0);}
.m8b_c01097{transform:matrix(0.316946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316946,0.000000,0.000000,0.250000,0,0);}
.m8_c01097{transform:matrix(0.318509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318509,0.000000,0.000000,0.250000,0,0);}
.m68_c01097{transform:matrix(0.318617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318617,0.000000,0.000000,0.250000,0,0);}
.m6d_c01097{transform:matrix(0.318782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318782,0.000000,0.000000,0.250000,0,0);}
.ma3_c01097{transform:matrix(0.319909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319909,0.000000,0.000000,0.250000,0,0);}
.m5c_c01097{transform:matrix(0.320668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320668,0.000000,0.000000,0.250000,0,0);}
.m6e_c01097{transform:matrix(0.320673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320673,0.000000,0.000000,0.250000,0,0);}
.m9c_c01097{transform:matrix(0.320898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320898,0.000000,0.000000,0.250000,0,0);}
.m5d_c01097{transform:matrix(0.321796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321796,0.000000,0.000000,0.250000,0,0);}
.m49_c01097{transform:matrix(0.323932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323932,0.000000,0.000000,0.250000,0,0);}
.mac_c01097{transform:matrix(0.325538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325538,0.000000,0.000000,0.250000,0,0);}
.m50_c01097{transform:matrix(0.326014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326014,0.000000,0.000000,0.250000,0,0);}
.m2d_c01097{transform:matrix(0.326868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326868,0.000000,0.000000,0.250000,0,0);}
.m1f_c01097{transform:matrix(0.326972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326972,0.000000,0.000000,0.250000,0,0);}
.m4f_c01097{transform:matrix(0.327337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327337,0.000000,0.000000,0.250000,0,0);}
.m11_c01097{transform:matrix(0.329837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329837,0.000000,0.000000,0.250000,0,0);}
.mb2_c01097{transform:matrix(0.331557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331557,0.000000,0.000000,0.250000,0,0);}
.m45_c01097{transform:matrix(0.332437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332437,0.000000,0.000000,0.250000,0,0);}
.m8f_c01097{transform:matrix(0.333519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333519,0.000000,0.000000,0.250000,0,0);}
.m40_c01097{transform:matrix(0.334593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334593,0.000000,0.000000,0.250000,0,0);}
.m67_c01097{transform:matrix(0.334607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334607,0.000000,0.000000,0.250000,0,0);}
.m94_c01097{transform:matrix(0.336990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336990,0.000000,0.000000,0.250000,0,0);}
.m1c_c01097{transform:matrix(0.339442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339442,0.000000,0.000000,0.250000,0,0);}
.m9e_c01097{transform:matrix(0.339499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339499,0.000000,0.000000,0.250000,0,0);}
.mb_c01097{transform:matrix(0.341205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341205,0.000000,0.000000,0.250000,0,0);}
.m21_c01097{transform:matrix(0.345101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345101,0.000000,0.000000,0.250000,0,0);}
.m60_c01097{transform:matrix(0.345243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345243,0.000000,0.000000,0.250000,0,0);}
.m75_c01097{transform:matrix(0.345531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345531,0.000000,0.000000,0.250000,0,0);}
.m88_c01097{transform:matrix(0.346959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346959,0.000000,0.000000,0.250000,0,0);}
.m3_c01097{transform:matrix(0.348437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348437,0.000000,0.000000,0.250000,0,0);}
.m3a_c01097{transform:matrix(0.348539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348539,0.000000,0.000000,0.250000,0,0);}
.m2_c01097{transform:matrix(0.349884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349884,0.000000,0.000000,0.250000,0,0);}
.m7f_c01097{transform:matrix(0.350309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350309,0.000000,0.000000,0.250000,0,0);}
.m2c_c01097{transform:matrix(0.353200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353200,0.000000,0.000000,0.250000,0,0);}
.m4_c01097{transform:matrix(0.356132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356132,0.000000,0.000000,0.250000,0,0);}
.maf_c01097{transform:matrix(0.357019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357019,0.000000,0.000000,0.250000,0,0);}
.m2f_c01097{transform:matrix(0.358472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358472,0.000000,0.000000,0.250000,0,0);}
.m5b_c01097{transform:matrix(0.361256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361256,0.000000,0.000000,0.250000,0,0);}
.m29_c01097{transform:matrix(0.361339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361339,0.000000,0.000000,0.250000,0,0);}
.m13_c01097{transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);}
.m96_c01097{transform:matrix(0.372594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372594,0.000000,0.000000,0.250000,0,0);}
.m8c_c01097{transform:matrix(0.374673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374673,0.000000,0.000000,0.250000,0,0);}
.m9a_c01097{transform:matrix(0.393750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393750,0.000000,0.000000,0.250000,0,0);}
.m1b_c01097{transform:matrix(0.397481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397481,0.000000,0.000000,0.250000,0,0);}
.m19_c01097{transform:matrix(0.403692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403692,0.000000,0.000000,0.250000,0,0);}
.m2e_c01097{transform:matrix(0.412048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412048,0.000000,0.000000,0.250000,0,0);}
.m97_c01097{transform:matrix(0.451510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451510,0.000000,0.000000,0.250000,0,0);}
.m98_c01097{transform:matrix(0.487149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487149,0.000000,0.000000,0.250000,0,0);}
.m99_c01097{transform:matrix(0.492715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492715,0.000000,0.000000,0.250000,0,0);}
.m95_c01097{transform:matrix(0.567389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567389,0.000000,0.000000,0.250000,0,0);}
.v0_c01097{vertical-align:0.000000px;}
.lsa_c01097{letter-spacing:-2.882880px;}
.ls16_c01097{letter-spacing:-2.772000px;}
.ls18_c01097{letter-spacing:-2.744280px;}
.ls12_c01097{letter-spacing:-2.661127px;}
.ls23_c01097{letter-spacing:-2.577967px;}
.lsb_c01097{letter-spacing:-0.485971px;}
.ls2_c01097{letter-spacing:0.000000px;}
.ls21_c01097{letter-spacing:0.712800px;}
.ls1_c01097{letter-spacing:1.714522px;}
.ls24_c01097{letter-spacing:1.887816px;}
.ls25_c01097{letter-spacing:2.457008px;}
.ls13_c01097{letter-spacing:2.797985px;}
.lsc_c01097{letter-spacing:3.316500px;}
.lse_c01097{letter-spacing:3.397522px;}
.ls11_c01097{letter-spacing:3.405610px;}
.ls17_c01097{letter-spacing:3.505084px;}
.ls7_c01097{letter-spacing:3.524400px;}
.ls4_c01097{letter-spacing:3.583810px;}
.ls20_c01097{letter-spacing:3.643200px;}
.ls1c_c01097{letter-spacing:3.663000px;}
.ls10_c01097{letter-spacing:3.682810px;}
.lsd_c01097{letter-spacing:3.781810px;}
.ls5_c01097{letter-spacing:3.801610px;}
.ls6_c01097{letter-spacing:3.920400px;}
.ls14_c01097{letter-spacing:3.960000px;}
.ls1e_c01097{letter-spacing:3.999917px;}
.ls3_c01097{letter-spacing:4.025340px;}
.ls19_c01097{letter-spacing:4.059000px;}
.ls8_c01097{letter-spacing:4.078810px;}
.ls9_c01097{letter-spacing:4.118400px;}
.ls1a_c01097{letter-spacing:4.227310px;}
.ls1f_c01097{letter-spacing:4.237200px;}
.ls0_c01097{letter-spacing:15.238080px;}
.ls1b_c01097{letter-spacing:51.321798px;}
.ls1d_c01097{letter-spacing:52.747398px;}
.ls22_c01097{letter-spacing:57.024198px;}
.ls15_c01097{letter-spacing:59.875398px;}
.lsf_c01097{letter-spacing:61.300998px;}
.sc__c01097{text-shadow:none;}
.sc0_c01097{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01097{-webkit-text-stroke:0px transparent;}
.sc0_c01097{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01097{word-spacing:-19.008050px;}
.ws1_c01097{word-spacing:-17.950522px;}
.ws2_c01097{word-spacing:-3.564000px;}
.ws3_c01097{word-spacing:0.000000px;}
._0_c01097{margin-left:-4.865998px;}
._1_c01097{width:4.597639px;}
.fc0_c01097{color:transparent;}
.fs21_c01097{font-size:14.256000px;}
.fs14_c01097{font-size:23.166000px;}
.fs1_c01097{font-size:27.720000px;}
.fs0_c01097{font-size:28.314000px;}
.fs18_c01097{font-size:32.670000px;}
.fs1d_c01097{font-size:33.264000px;}
.fsd_c01097{font-size:33.660000px;}
.fs1e_c01097{font-size:34.056198px;}
.fs8_c01097{font-size:39.798000px;}
.fs7_c01097{font-size:48.114000px;}
.fs19_c01097{font-size:51.321798px;}
.fs1c_c01097{font-size:52.747398px;}
.fs22_c01097{font-size:57.024198px;}
.fs13_c01097{font-size:59.875398px;}
.fsf_c01097{font-size:61.300998px;}
.fs17_c01097{font-size:64.944000px;}
.fsc_c01097{font-size:66.330000px;}
.fs12_c01097{font-size:68.112198px;}
.fs20_c01097{font-size:70.092198px;}
.fs9_c01097{font-size:70.488000px;}
.fs4_c01097{font-size:71.676198px;}
.fs1b_c01097{font-size:72.072198px;}
.fs1f_c01097{font-size:72.864000px;}
.fs1a_c01097{font-size:73.260000px;}
.fs11_c01097{font-size:73.656198px;}
.fse_c01097{font-size:75.636198px;}
.fs5_c01097{font-size:76.032198px;}
.fs24_c01097{font-size:77.022198px;}
.fs6_c01097{font-size:78.408000px;}
.fs10_c01097{font-size:79.200000px;}
.fs23_c01097{font-size:79.992198px;}
.fs15_c01097{font-size:81.180000px;}
.fsa_c01097{font-size:81.576198px;}
.fsb_c01097{font-size:82.368000px;}
.fs16_c01097{font-size:84.546198px;}
.fs3_c01097{font-size:84.744000px;}
.fs2_c01097{font-size:86.130000px;}
.y0_c01097{bottom:0.000000px;}
.y24_c01097{bottom:65.489535px;}
.y1_c01097{bottom:76.500000px;}
.y2_c01097{bottom:95.070735px;}
.y23_c01097{bottom:127.503135px;}
.y22_c01097{bottom:191.650185px;}
.y21_c01097{bottom:223.374735px;}
.y20_c01097{bottom:251.173935px;}
.y1f_c01097{bottom:256.519935px;}
.y1e_c01097{bottom:289.308735px;}
.y1d_c01097{bottom:321.023385px;}
.y1c_c01097{bottom:336.709935px;}
.y1b_c01097{bottom:342.768735px;}
.y1a_c01097{bottom:353.817135px;}
.y19_c01097{bottom:367.360335px;}
.y18_c01097{bottom:386.605935px;}
.y16_c01097{bottom:418.320585px;}
.y17_c01097{bottom:422.597385px;}
.y15_c01097{bottom:449.327385px;}
.y14_c01097{bottom:481.403385px;}
.y13_c01097{bottom:512.766585px;}
.y12_c01097{bottom:544.129785px;}
.y11_c01097{bottom:576.562185px;}
.y10_c01097{bottom:608.286735px;}
.yf_c01097{bottom:640.001385px;}
.ye_c01097{bottom:672.790185px;}
.yd_c01097{bottom:736.942185px;}
.yc_c01097{bottom:769.023135px;}
.yb_c01097{bottom:791.827785px;}
.ya_c01097{bottom:801.094185px;}
.y9_c01097{bottom:832.818735px;}
.y8_c01097{bottom:865.251135px;}
.y7_c01097{bottom:897.683535px;}
.y6_c01097{bottom:930.110985px;}
.y4_c01097{bottom:973.953135px;}
.y3_c01097{bottom:980.719785px;}
.y5_c01097{bottom:1066.968585px;}
.h23_c01097{height:13.991484px;}
.h16_c01097{height:24.161414px;}
.h3_c01097{height:28.911094px;}
.h2_c01097{height:29.530617px;}
.hf_c01097{height:33.035449px;}
.h1a_c01097{height:34.073789px;}
.h1b_c01097{height:34.180317px;}
.h1f_c01097{height:34.693313px;}
.h1e_c01097{height:35.129767px;}
.h20_c01097{height:35.519550px;}
.h24_c01097{height:37.978116px;}
.h15_c01097{height:39.877015px;}
.h11_c01097{height:40.826465px;}
.ha_c01097{height:41.508070px;}
.h9_c01097{height:47.221260px;}
.h19_c01097{height:63.738984px;}
.hc_c01097{height:69.180117px;}
.h6_c01097{height:70.346269px;}
.h14_c01097{height:71.038894px;}
.h21_c01097{height:71.512031px;}
.h1c_c01097{height:71.900684px;}
.h13_c01097{height:72.289530px;}
.h22_c01097{height:73.103972px;}
.hb_c01097{height:73.516781px;}
.h10_c01097{height:74.232792px;}
.h7_c01097{height:74.621444px;}
.h1d_c01097{height:75.169050px;}
.h26_c01097{height:75.593075px;}
.h8_c01097{height:76.953164px;}
.h12_c01097{height:77.730469px;}
.h25_c01097{height:78.507968px;}
.h17_c01097{height:79.673730px;}
.hd_c01097{height:80.062577px;}
.he_c01097{height:80.839688px;}
.h18_c01097{height:82.977470px;}
.h5_c01097{height:83.171602px;}
.h4_c01097{height:84.531885px;}
.h1_c01097{height:1110.000000px;}
.h0_c01097{height:1263.000000px;}
.w1_c01097{width:775.500000px;}
.w0_c01097{width:892.500000px;}
.x0_c01097{left:0.000000px;}
.x2_c01097{left:53.273535px;}
.x1_c01097{left:58.500000px;}
.x72_c01097{left:93.843735px;}
.x35_c01097{left:94.992135px;}
.x37_c01097{left:139.992585px;}
.x5f_c01097{left:146.991885px;}
.x1c_c01097{left:148.244235px;}
.x28_c01097{left:149.407485px;}
.x12_c01097{left:150.536085px;}
.x13_c01097{left:170.251935px;}
.x73_c01097{left:181.825035px;}
.x44_c01097{left:182.914035px;}
.x47_c01097{left:192.754635px;}
.x1d_c01097{left:195.021735px;}
.x36_c01097{left:203.139735px;}
.x6_c01097{left:205.159335px;}
.x57_c01097{left:213.208035px;}
.x4f_c01097{left:214.920735px;}
.x24_c01097{left:216.816585px;}
.x5b_c01097{left:225.533535px;}
.x1e_c01097{left:227.845185px;}
.x14_c01097{left:230.478585px;}
.x25_c01097{left:237.794685px;}
.x7_c01097{left:239.195535px;}
.x60_c01097{left:248.016435px;}
.x15_c01097{left:249.560835px;}
.x53_c01097{left:258.738135px;}
.x59_c01097{left:259.950885px;}
.x38_c01097{left:261.534885px;}
.x45_c01097{left:269.024235px;}
.x8_c01097{left:271.330935px;}
.x61_c01097{left:280.780485px;}
.x3f_c01097{left:282.062535px;}
.x2d_c01097{left:293.170335px;}
.x48_c01097{left:294.526635px;}
.x54_c01097{left:303.228735px;}
.x2e_c01097{left:304.857285px;}
.x40_c01097{left:314.658285px;}
.x1f_c01097{left:316.267035px;}
.x50_c01097{left:326.241285px;}
.x9_c01097{left:336.750135px;}
.x16_c01097{left:338.383635px;}
.x2f_c01097{left:348.496485px;}
.x20_c01097{left:350.337885px;}
.x58_c01097{left:359.619135px;}
.xa_c01097{left:360.722985px;}
.x74_c01097{left:368.519235px;}
.x49_c01097{left:370.583385px;}
.x17_c01097{left:372.444585px;}
.x6f_c01097{left:382.869285px;}
.xb_c01097{left:393.051435px;}
.x70_c01097{left:401.253585px;}
.x41_c01097{left:403.159335px;}
.x18_c01097{left:404.456235px;}
.x75_c01097{left:414.207735px;}
.x5a_c01097{left:415.321485px;}
.x39_c01097{left:416.380785px;}
.x29_c01097{left:426.369885px;}
.x6d_c01097{left:436.448085px;}
.x4a_c01097{left:437.735085px;}
.xc_c01097{left:438.819135px;}
.x26_c01097{left:448.204335px;}
.x3a_c01097{left:449.357685px;}
.x71_c01097{left:460.564485px;}
.x5c_c01097{left:470.588235px;}
.x21_c01097{left:472.370235px;}
.x76_c01097{left:479.899185px;}
.x30_c01097{left:481.205985px;}
.x19_c01097{left:492.744435px;}
.x55_c01097{left:503.372085px;}
.xd_c01097{left:507.822135px;}
.x27_c01097{left:514.004685px;}
.x31_c01097{left:515.648085px;}
.x4b_c01097{left:525.463935px;}
.xe_c01097{left:526.993485px;}
.x4c_c01097{left:528.136935px;}
.x62_c01097{left:535.255035px;}
.x64_c01097{left:536.710335px;}
.x3b_c01097{left:548.228985px;}
.x51_c01097{left:558.223035px;}
.x2a_c01097{left:559.653585px;}
.x32_c01097{left:570.345585px;}
.x65_c01097{left:579.849585px;}
.x1a_c01097{left:581.775135px;}
.x4_c01097{left:588.858585px;}
.x3_c01097{left:590.076285px;}
.x2b_c01097{left:592.343385px;}
.x42_c01097{left:602.253285px;}
.x63_c01097{left:603.376935px;}
.x4d_c01097{left:611.821635px;}
.x33_c01097{left:613.663035px;}
.x22_c01097{left:624.716385px;}
.x1b_c01097{left:625.929135px;}
.x6e_c01097{left:633.972885px;}
.xf_c01097{left:636.116235px;}
.x3c_c01097{left:646.451835px;}
.x23_c01097{left:658.341735px;}
.x52_c01097{left:667.345785px;}
.x43_c01097{left:670.048485px;}
.x2c_c01097{left:679.597035px;}
.x3d_c01097{left:680.745435px;}
.x66_c01097{left:688.452585px;}
.x10_c01097{left:690.289035px;}
.x11_c01097{left:692.412585px;}
.x3e_c01097{left:696.704235px;}
.x67_c01097{left:698.753535px;}
.x46_c01097{left:700.203885px;}
.x56_c01097{left:702.292785px;}
.x5_c01097{left:703.975785px;}
.x68_c01097{left:706.297335px;}
.x5d_c01097{left:707.312085px;}
.x5e_c01097{left:708.658485px;}
.x69_c01097{left:710.534535px;}
.x34_c01097{left:713.628285px;}
.x6a_c01097{left:716.311185px;}
.x6b_c01097{left:722.261085px;}
.x4e_c01097{left:724.320285px;}
.x6c_c01097{left:727.359585px;}
@media print{
.v0_c01097{vertical-align:0.000000pt;}
.lsa_c01097{letter-spacing:-2.562560pt;}
.ls16_c01097{letter-spacing:-2.464000pt;}
.ls18_c01097{letter-spacing:-2.439360pt;}
.ls12_c01097{letter-spacing:-2.365446pt;}
.ls23_c01097{letter-spacing:-2.291526pt;}
.lsb_c01097{letter-spacing:-0.431974pt;}
.ls2_c01097{letter-spacing:0.000000pt;}
.ls21_c01097{letter-spacing:0.633600pt;}
.ls1_c01097{letter-spacing:1.524019pt;}
.ls24_c01097{letter-spacing:1.678059pt;}
.ls25_c01097{letter-spacing:2.184007pt;}
.ls13_c01097{letter-spacing:2.487098pt;}
.lsc_c01097{letter-spacing:2.948000pt;}
.lse_c01097{letter-spacing:3.020019pt;}
.ls11_c01097{letter-spacing:3.027209pt;}
.ls17_c01097{letter-spacing:3.115631pt;}
.ls7_c01097{letter-spacing:3.132800pt;}
.ls4_c01097{letter-spacing:3.185609pt;}
.ls20_c01097{letter-spacing:3.238400pt;}
.ls1c_c01097{letter-spacing:3.256000pt;}
.ls10_c01097{letter-spacing:3.273609pt;}
.lsd_c01097{letter-spacing:3.361609pt;}
.ls5_c01097{letter-spacing:3.379209pt;}
.ls6_c01097{letter-spacing:3.484800pt;}
.ls14_c01097{letter-spacing:3.520000pt;}
.ls1e_c01097{letter-spacing:3.555482pt;}
.ls3_c01097{letter-spacing:3.578080pt;}
.ls19_c01097{letter-spacing:3.608000pt;}
.ls8_c01097{letter-spacing:3.625609pt;}
.ls9_c01097{letter-spacing:3.660800pt;}
.ls1a_c01097{letter-spacing:3.757609pt;}
.ls1f_c01097{letter-spacing:3.766400pt;}
.ls0_c01097{letter-spacing:13.544960pt;}
.ls1b_c01097{letter-spacing:45.619376pt;}
.ls1d_c01097{letter-spacing:46.886576pt;}
.ls22_c01097{letter-spacing:50.688176pt;}
.ls15_c01097{letter-spacing:53.222576pt;}
.lsf_c01097{letter-spacing:54.489776pt;}
.ws0_c01097{word-spacing:-16.896044pt;}
.ws1_c01097{word-spacing:-15.956019pt;}
.ws2_c01097{word-spacing:-3.168000pt;}
.ws3_c01097{word-spacing:0.000000pt;}
._0_c01097{margin-left:-4.325332pt;}
._1_c01097{width:4.086790pt;}
.fs21_c01097{font-size:12.672000pt;}
.fs14_c01097{font-size:20.592000pt;}
.fs1_c01097{font-size:24.640000pt;}
.fs0_c01097{font-size:25.168000pt;}
.fs18_c01097{font-size:29.040000pt;}
.fs1d_c01097{font-size:29.568000pt;}
.fsd_c01097{font-size:29.920000pt;}
.fs1e_c01097{font-size:30.272176pt;}
.fs8_c01097{font-size:35.376000pt;}
.fs7_c01097{font-size:42.768000pt;}
.fs19_c01097{font-size:45.619376pt;}
.fs1c_c01097{font-size:46.886576pt;}
.fs22_c01097{font-size:50.688176pt;}
.fs13_c01097{font-size:53.222576pt;}
.fsf_c01097{font-size:54.489776pt;}
.fs17_c01097{font-size:57.728000pt;}
.fsc_c01097{font-size:58.960000pt;}
.fs12_c01097{font-size:60.544176pt;}
.fs20_c01097{font-size:62.304176pt;}
.fs9_c01097{font-size:62.656000pt;}
.fs4_c01097{font-size:63.712176pt;}
.fs1b_c01097{font-size:64.064176pt;}
.fs1f_c01097{font-size:64.768000pt;}
.fs1a_c01097{font-size:65.120000pt;}
.fs11_c01097{font-size:65.472176pt;}
.fse_c01097{font-size:67.232176pt;}
.fs5_c01097{font-size:67.584176pt;}
.fs24_c01097{font-size:68.464176pt;}
.fs6_c01097{font-size:69.696000pt;}
.fs10_c01097{font-size:70.400000pt;}
.fs23_c01097{font-size:71.104176pt;}
.fs15_c01097{font-size:72.160000pt;}
.fsa_c01097{font-size:72.512176pt;}
.fsb_c01097{font-size:73.216000pt;}
.fs16_c01097{font-size:75.152176pt;}
.fs3_c01097{font-size:75.328000pt;}
.fs2_c01097{font-size:76.560000pt;}
.y0_c01097{bottom:0.000000pt;}
.y24_c01097{bottom:58.212920pt;}
.y1_c01097{bottom:68.000000pt;}
.y2_c01097{bottom:84.507320pt;}
.y23_c01097{bottom:113.336120pt;}
.y22_c01097{bottom:170.355720pt;}
.y21_c01097{bottom:198.555320pt;}
.y20_c01097{bottom:223.265720pt;}
.y1f_c01097{bottom:228.017720pt;}
.y1e_c01097{bottom:257.163320pt;}
.y1d_c01097{bottom:285.354120pt;}
.y1c_c01097{bottom:299.297720pt;}
.y1b_c01097{bottom:304.683320pt;}
.y1a_c01097{bottom:314.504120pt;}
.y19_c01097{bottom:326.542520pt;}
.y18_c01097{bottom:343.649720pt;}
.y16_c01097{bottom:371.840520pt;}
.y17_c01097{bottom:375.642120pt;}
.y15_c01097{bottom:399.402120pt;}
.y14_c01097{bottom:427.914120pt;}
.y13_c01097{bottom:455.792520pt;}
.y12_c01097{bottom:483.670920pt;}
.y11_c01097{bottom:512.499720pt;}
.y10_c01097{bottom:540.699320pt;}
.yf_c01097{bottom:568.890120pt;}
.ye_c01097{bottom:598.035720pt;}
.yd_c01097{bottom:655.059720pt;}
.yc_c01097{bottom:683.576120pt;}
.yb_c01097{bottom:703.846920pt;}
.ya_c01097{bottom:712.083720pt;}
.y9_c01097{bottom:740.283320pt;}
.y8_c01097{bottom:769.112120pt;}
.y7_c01097{bottom:797.940920pt;}
.y6_c01097{bottom:826.765320pt;}
.y4_c01097{bottom:865.736120pt;}
.y3_c01097{bottom:871.750920pt;}
.y5_c01097{bottom:948.416520pt;}
.h23_c01097{height:12.436875pt;}
.h16_c01097{height:21.476813pt;}
.h3_c01097{height:25.698750pt;}
.h2_c01097{height:26.249438pt;}
.hf_c01097{height:29.364844pt;}
.h1a_c01097{height:30.287813pt;}
.h1b_c01097{height:30.382504pt;}
.h1f_c01097{height:30.838500pt;}
.h1e_c01097{height:31.226460pt;}
.h20_c01097{height:31.572934pt;}
.h24_c01097{height:33.758325pt;}
.h15_c01097{height:35.446236pt;}
.h11_c01097{height:36.290191pt;}
.ha_c01097{height:36.896063pt;}
.h9_c01097{height:41.974453pt;}
.h19_c01097{height:56.656875pt;}
.hc_c01097{height:61.493438pt;}
.h6_c01097{height:62.530016pt;}
.h14_c01097{height:63.145684pt;}
.h21_c01097{height:63.566250pt;}
.h1c_c01097{height:63.911719pt;}
.h13_c01097{height:64.257360pt;}
.h22_c01097{height:64.981309pt;}
.hb_c01097{height:65.348250pt;}
.h10_c01097{height:65.984704pt;}
.h7_c01097{height:66.330173pt;}
.h1d_c01097{height:66.816934pt;}
.h26_c01097{height:67.193845pt;}
.h8_c01097{height:68.402813pt;}
.h12_c01097{height:69.093750pt;}
.h25_c01097{height:69.784860pt;}
.h17_c01097{height:70.821094pt;}
.hd_c01097{height:71.166735pt;}
.he_c01097{height:71.857500pt;}
.h18_c01097{height:73.757751pt;}
.h5_c01097{height:73.930313pt;}
.h4_c01097{height:75.139453pt;}
.h1_c01097{height:986.666667pt;}
.h0_c01097{height:1122.666667pt;}
.w1_c01097{width:689.333333pt;}
.w0_c01097{width:793.333333pt;}
.x0_c01097{left:0.000000pt;}
.x2_c01097{left:47.354253pt;}
.x1_c01097{left:52.000000pt;}
.x72_c01097{left:83.416653pt;}
.x35_c01097{left:84.437453pt;}
.x37_c01097{left:124.437853pt;}
.x5f_c01097{left:130.659453pt;}
.x1c_c01097{left:131.772653pt;}
.x28_c01097{left:132.806653pt;}
.x12_c01097{left:133.809853pt;}
.x13_c01097{left:151.335053pt;}
.x73_c01097{left:161.622253pt;}
.x44_c01097{left:162.590253pt;}
.x47_c01097{left:171.337453pt;}
.x1d_c01097{left:173.352653pt;}
.x36_c01097{left:180.568653pt;}
.x6_c01097{left:182.363853pt;}
.x57_c01097{left:189.518253pt;}
.x4f_c01097{left:191.040653pt;}
.x24_c01097{left:192.725853pt;}
.x5b_c01097{left:200.474253pt;}
.x1e_c01097{left:202.529053pt;}
.x14_c01097{left:204.869853pt;}
.x25_c01097{left:211.373053pt;}
.x7_c01097{left:212.618253pt;}
.x60_c01097{left:220.459053pt;}
.x15_c01097{left:221.831853pt;}
.x53_c01097{left:229.989453pt;}
.x59_c01097{left:231.067453pt;}
.x38_c01097{left:232.475453pt;}
.x45_c01097{left:239.132653pt;}
.x8_c01097{left:241.183053pt;}
.x61_c01097{left:249.582653pt;}
.x3f_c01097{left:250.722253pt;}
.x2d_c01097{left:260.595853pt;}
.x48_c01097{left:261.801453pt;}
.x54_c01097{left:269.536653pt;}
.x2e_c01097{left:270.984253pt;}
.x40_c01097{left:279.696253pt;}
.x1f_c01097{left:281.126253pt;}
.x50_c01097{left:289.992253pt;}
.x9_c01097{left:299.333453pt;}
.x16_c01097{left:300.785453pt;}
.x2f_c01097{left:309.774653pt;}
.x20_c01097{left:311.411453pt;}
.x58_c01097{left:319.661453pt;}
.xa_c01097{left:320.642653pt;}
.x74_c01097{left:327.572653pt;}
.x49_c01097{left:329.407453pt;}
.x17_c01097{left:331.061853pt;}
.x6f_c01097{left:340.328253pt;}
.xb_c01097{left:349.379053pt;}
.x70_c01097{left:356.669853pt;}
.x41_c01097{left:358.363853pt;}
.x18_c01097{left:359.516653pt;}
.x75_c01097{left:368.184653pt;}
.x5a_c01097{left:369.174653pt;}
.x39_c01097{left:370.116253pt;}
.x29_c01097{left:378.995453pt;}
.x6d_c01097{left:387.953853pt;}
.x4a_c01097{left:389.097853pt;}
.xc_c01097{left:390.061453pt;}
.x26_c01097{left:398.403853pt;}
.x3a_c01097{left:399.429053pt;}
.x71_c01097{left:409.390653pt;}
.x5c_c01097{left:418.300653pt;}
.x21_c01097{left:419.884653pt;}
.x76_c01097{left:426.577053pt;}
.x30_c01097{left:427.738653pt;}
.x19_c01097{left:437.995053pt;}
.x55_c01097{left:447.441853pt;}
.xd_c01097{left:451.397453pt;}
.x27_c01097{left:456.893053pt;}
.x31_c01097{left:458.353853pt;}
.x4b_c01097{left:467.079053pt;}
.xe_c01097{left:468.438653pt;}
.x4c_c01097{left:469.455053pt;}
.x62_c01097{left:475.782253pt;}
.x64_c01097{left:477.075853pt;}
.x3b_c01097{left:487.314653pt;}
.x51_c01097{left:496.198253pt;}
.x2a_c01097{left:497.469853pt;}
.x32_c01097{left:506.973853pt;}
.x65_c01097{left:515.421853pt;}
.x1a_c01097{left:517.133453pt;}
.x4_c01097{left:523.429853pt;}
.x3_c01097{left:524.512253pt;}
.x2b_c01097{left:526.527453pt;}
.x42_c01097{left:535.336253pt;}
.x63_c01097{left:536.335053pt;}
.x4d_c01097{left:543.841453pt;}
.x33_c01097{left:545.478253pt;}
.x22_c01097{left:555.303453pt;}
.x1b_c01097{left:556.381453pt;}
.x6e_c01097{left:563.531453pt;}
.xf_c01097{left:565.436653pt;}
.x3c_c01097{left:574.623853pt;}
.x23_c01097{left:585.192653pt;}
.x52_c01097{left:593.196253pt;}
.x43_c01097{left:595.598653pt;}
.x2c_c01097{left:604.086253pt;}
.x3d_c01097{left:605.107053pt;}
.x66_c01097{left:611.957853pt;}
.x10_c01097{left:613.590253pt;}
.x11_c01097{left:615.477853pt;}
.x3e_c01097{left:619.292653pt;}
.x67_c01097{left:621.114253pt;}
.x46_c01097{left:622.403453pt;}
.x56_c01097{left:624.260253pt;}
.x5_c01097{left:625.756253pt;}
.x68_c01097{left:627.819853pt;}
.x5d_c01097{left:628.721853pt;}
.x5e_c01097{left:629.918653pt;}
.x69_c01097{left:631.586253pt;}
.x34_c01097{left:634.336253pt;}
.x6a_c01097{left:636.721053pt;}
.x6b_c01097{left:642.009853pt;}
.x4e_c01097{left:643.840253pt;}
.x6c_c01097{left:646.541853pt;}
}





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

.ir_c01098:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01098{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01098;src:url('chunks/assets/font_2b6f89570dbe4f931918e018.woff2')format("woff");}.ff1_c01098{font-family:ff1_c01098;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01098;src:url('chunks/assets/font_33730aca7f97afbc612ade05.woff2')format("woff");}.ff2_c01098{font-family:ff2_c01098;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01098;src:url('chunks/assets/font_6bcfafcea8e7f6449e8a5fc4.woff2')format("woff");}.ff3_c01098{font-family:ff3_c01098;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01098;src:url('chunks/assets/font_6c8c584d8ec2507c978f2314.woff2')format("woff");}.ff4_c01098{font-family:ff4_c01098;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01098;src:url('chunks/assets/font_f66b0eb163b8340ad2da2ea8.woff2')format("woff");}.ff5_c01098{font-family:ff5_c01098;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2a_c01098{transform:matrix(0.044445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.044445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.044445,0.000000,0.000000,0.250000,0,0);}
.m83_c01098{transform:matrix(0.081521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081521,0.000000,0.000000,0.250000,0,0);}
.m65_c01098{transform:matrix(0.082920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.082920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.082920,0.000000,0.000000,0.250000,0,0);}
.m29_c01098{transform:matrix(0.085186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085186,0.000000,0.000000,0.250000,0,0);}
.m2b_c01098{transform:matrix(0.098148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098148,0.000000,0.000000,0.250000,0,0);}
.m66_c01098{transform:matrix(0.106135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106135,0.000000,0.000000,0.250000,0,0);}
.m37_c01098{transform:matrix(0.110466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110466,0.000000,0.000000,0.250000,0,0);}
.m32_c01098{transform:matrix(0.120442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120442,0.000000,0.000000,0.250000,0,0);}
.m34_c01098{transform:matrix(0.125916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125916,0.000000,0.000000,0.250000,0,0);}
.m52_c01098{transform:matrix(0.127273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127273,0.000000,0.000000,0.250000,0,0);}
.m7e_c01098{transform:matrix(0.143000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01098{transform:matrix(0.157197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157197,0.000000,0.000000,0.250000,0,0);}
.m6b_c01098{transform:matrix(0.157830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157830,0.000000,0.000000,0.250000,0,0);}
.m76_c01098{transform:matrix(0.161933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161933,0.000000,0.000000,0.250000,0,0);}
.m43_c01098{transform:matrix(0.164728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164728,0.000000,0.000000,0.250000,0,0);}
.m82_c01098{transform:matrix(0.165761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165761,0.000000,0.000000,0.250000,0,0);}
.m44_c01098{transform:matrix(0.168605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168605,0.000000,0.000000,0.250000,0,0);}
.m81_c01098{transform:matrix(0.171831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171831,0.000000,0.000000,0.250000,0,0);}
.m72_c01098{transform:matrix(0.176830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176830,0.000000,0.000000,0.250000,0,0);}
.m53_c01098{transform:matrix(0.177827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177827,0.000000,0.000000,0.250000,0,0);}
.m75_c01098{transform:matrix(0.178030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178030,0.000000,0.000000,0.250000,0,0);}
.m51_c01098{transform:matrix(0.198435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198435,0.000000,0.000000,0.250000,0,0);}
.m7f_c01098{transform:matrix(0.207459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207459,0.000000,0.000000,0.250000,0,0);}
.m3c_c01098{transform:matrix(0.209198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209198,0.000000,0.000000,0.250000,0,0);}
.m80_c01098{transform:matrix(0.227109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227109,0.000000,0.000000,0.250000,0,0);}
.m30_c01098{transform:matrix(0.230210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230210,0.000000,0.000000,0.250000,0,0);}
.m36_c01098{transform:matrix(0.236007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236007,0.000000,0.000000,0.250000,0,0);}
.m47_c01098{transform:matrix(0.237382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237382,0.000000,0.000000,0.250000,0,0);}
.m0_c01098{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m46_c01098{transform:matrix(0.251074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251074,0.000000,0.000000,0.250000,0,0);}
.m9_c01098{transform:matrix(0.251336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251336,0.000000,0.000000,0.250000,0,0);}
.m16_c01098{transform:matrix(0.260190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260190,0.000000,0.000000,0.250000,0,0);}
.m39_c01098{transform:matrix(0.260492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260492,0.000000,0.000000,0.250000,0,0);}
.m7b_c01098{transform:matrix(0.261314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261314,0.000000,0.000000,0.250000,0,0);}
.m5b_c01098{transform:matrix(0.262640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262640,0.000000,0.000000,0.250000,0,0);}
.m2d_c01098{transform:matrix(0.266180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266180,0.000000,0.000000,0.250000,0,0);}
.m28_c01098{transform:matrix(0.267248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267248,0.000000,0.000000,0.250000,0,0);}
.m3a_c01098{transform:matrix(0.272218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272218,0.000000,0.000000,0.250000,0,0);}
.m5f_c01098{transform:matrix(0.272407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272407,0.000000,0.000000,0.250000,0,0);}
.m1b_c01098{transform:matrix(0.273015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273015,0.000000,0.000000,0.250000,0,0);}
.m55_c01098{transform:matrix(0.273264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273264,0.000000,0.000000,0.250000,0,0);}
.m7_c01098{transform:matrix(0.273944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273944,0.000000,0.000000,0.250000,0,0);}
.m13_c01098{transform:matrix(0.274859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274859,0.000000,0.000000,0.250000,0,0);}
.m1_c01098{transform:matrix(0.275369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275369,0.000000,0.000000,0.250000,0,0);}
.m3e_c01098{transform:matrix(0.275680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275680,0.000000,0.000000,0.250000,0,0);}
.m5c_c01098{transform:matrix(0.275688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275688,0.000000,0.000000,0.250000,0,0);}
.m6_c01098{transform:matrix(0.275843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275843,0.000000,0.000000,0.250000,0,0);}
.m54_c01098{transform:matrix(0.276098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276098,0.000000,0.000000,0.250000,0,0);}
.m1c_c01098{transform:matrix(0.276663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276663,0.000000,0.000000,0.250000,0,0);}
.mf_c01098{transform:matrix(0.277734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277734,0.000000,0.000000,0.250000,0,0);}
.m24_c01098{transform:matrix(0.278001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278001,0.000000,0.000000,0.250000,0,0);}
.m20_c01098{transform:matrix(0.278923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278923,0.000000,0.000000,0.250000,0,0);}
.m58_c01098{transform:matrix(0.279601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279601,0.000000,0.000000,0.250000,0,0);}
.m73_c01098{transform:matrix(0.280585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280585,0.000000,0.000000,0.250000,0,0);}
.m23_c01098{transform:matrix(0.280981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280981,0.000000,0.000000,0.250000,0,0);}
.m78_c01098{transform:matrix(0.281007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281007,0.000000,0.000000,0.250000,0,0);}
.m4c_c01098{transform:matrix(0.281397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281397,0.000000,0.000000,0.250000,0,0);}
.m69_c01098{transform:matrix(0.282832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282832,0.000000,0.000000,0.250000,0,0);}
.m3d_c01098{transform:matrix(0.283715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283715,0.000000,0.000000,0.250000,0,0);}
.m2_c01098{transform:matrix(0.285081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285081,0.000000,0.000000,0.250000,0,0);}
.m79_c01098{transform:matrix(0.285690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285690,0.000000,0.000000,0.250000,0,0);}
.m6c_c01098{transform:matrix(0.286006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286006,0.000000,0.000000,0.250000,0,0);}
.mb_c01098{transform:matrix(0.286034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286034,0.000000,0.000000,0.250000,0,0);}
.m74_c01098{transform:matrix(0.286206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286206,0.000000,0.000000,0.250000,0,0);}
.m35_c01098{transform:matrix(0.287364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287364,0.000000,0.000000,0.250000,0,0);}
.m41_c01098{transform:matrix(0.287621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287621,0.000000,0.000000,0.250000,0,0);}
.m1d_c01098{transform:matrix(0.288138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288138,0.000000,0.000000,0.250000,0,0);}
.m15_c01098{transform:matrix(0.288418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288418,0.000000,0.000000,0.250000,0,0);}
.m4d_c01098{transform:matrix(0.288675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288675,0.000000,0.000000,0.250000,0,0);}
.m84_c01098{transform:matrix(0.288957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288957,0.000000,0.000000,0.250000,0,0);}
.m4b_c01098{transform:matrix(0.290599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290599,0.000000,0.000000,0.250000,0,0);}
.m4e_c01098{transform:matrix(0.291018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291018,0.000000,0.000000,0.250000,0,0);}
.m45_c01098{transform:matrix(0.291184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291184,0.000000,0.000000,0.250000,0,0);}
.m2e_c01098{transform:matrix(0.292194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292194,0.000000,0.000000,0.250000,0,0);}
.mc_c01098{transform:matrix(0.293739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293739,0.000000,0.000000,0.250000,0,0);}
.m7d_c01098{transform:matrix(0.294735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294735,0.000000,0.000000,0.250000,0,0);}
.m21_c01098{transform:matrix(0.295283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295283,0.000000,0.000000,0.250000,0,0);}
.m40_c01098{transform:matrix(0.295997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295997,0.000000,0.000000,0.250000,0,0);}
.m77_c01098{transform:matrix(0.297572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297572,0.000000,0.000000,0.250000,0,0);}
.m1e_c01098{transform:matrix(0.298282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298282,0.000000,0.000000,0.250000,0,0);}
.m6e_c01098{transform:matrix(0.298909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298909,0.000000,0.000000,0.250000,0,0);}
.m50_c01098{transform:matrix(0.301305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301305,0.000000,0.000000,0.250000,0,0);}
.m1f_c01098{transform:matrix(0.301926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301926,0.000000,0.000000,0.250000,0,0);}
.m63_c01098{transform:matrix(0.302266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302266,0.000000,0.000000,0.250000,0,0);}
.m5e_c01098{transform:matrix(0.302846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302846,0.000000,0.000000,0.250000,0,0);}
.m64_c01098{transform:matrix(0.303058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303058,0.000000,0.000000,0.250000,0,0);}
.m57_c01098{transform:matrix(0.303680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303680,0.000000,0.000000,0.250000,0,0);}
.m2f_c01098{transform:matrix(0.303959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303959,0.000000,0.000000,0.250000,0,0);}
.m3_c01098{transform:matrix(0.305306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305306,0.000000,0.000000,0.250000,0,0);}
.m61_c01098{transform:matrix(0.306297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306297,0.000000,0.000000,0.250000,0,0);}
.m3b_c01098{transform:matrix(0.306579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306579,0.000000,0.000000,0.250000,0,0);}
.me_c01098{transform:matrix(0.306703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306703,0.000000,0.000000,0.250000,0,0);}
.m6f_c01098{transform:matrix(0.306868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306868,0.000000,0.000000,0.250000,0,0);}
.ma_c01098{transform:matrix(0.308794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308794,0.000000,0.000000,0.250000,0,0);}
.m5_c01098{transform:matrix(0.308906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308906,0.000000,0.000000,0.250000,0,0);}
.m6a_c01098{transform:matrix(0.309311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309311,0.000000,0.000000,0.250000,0,0);}
.m25_c01098{transform:matrix(0.309714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309714,0.000000,0.000000,0.250000,0,0);}
.m4a_c01098{transform:matrix(0.309759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309759,0.000000,0.000000,0.250000,0,0);}
.m62_c01098{transform:matrix(0.311259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311259,0.000000,0.000000,0.250000,0,0);}
.m48_c01098{transform:matrix(0.311807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311807,0.000000,0.000000,0.250000,0,0);}
.m4f_c01098{transform:matrix(0.313326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313326,0.000000,0.000000,0.250000,0,0);}
.m5d_c01098{transform:matrix(0.315189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315189,0.000000,0.000000,0.250000,0,0);}
.m68_c01098{transform:matrix(0.316670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316670,0.000000,0.000000,0.250000,0,0);}
.m56_c01098{transform:matrix(0.316861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316861,0.000000,0.000000,0.250000,0,0);}
.m11_c01098{transform:matrix(0.316909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316909,0.000000,0.000000,0.250000,0,0);}
.m71_c01098{transform:matrix(0.317419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317419,0.000000,0.000000,0.250000,0,0);}
.m1a_c01098{transform:matrix(0.317866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317866,0.000000,0.000000,0.250000,0,0);}
.m8_c01098{transform:matrix(0.319118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319118,0.000000,0.000000,0.250000,0,0);}
.m12_c01098{transform:matrix(0.319287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319287,0.000000,0.000000,0.250000,0,0);}
.m42_c01098{transform:matrix(0.320372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320372,0.000000,0.000000,0.250000,0,0);}
.m22_c01098{transform:matrix(0.320825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320825,0.000000,0.000000,0.250000,0,0);}
.m18_c01098{transform:matrix(0.323272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323272,0.000000,0.000000,0.250000,0,0);}
.m5a_c01098{transform:matrix(0.324370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324370,0.000000,0.000000,0.250000,0,0);}
.m31_c01098{transform:matrix(0.324886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324886,0.000000,0.000000,0.250000,0,0);}
.md_c01098{transform:matrix(0.328220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328220,0.000000,0.000000,0.250000,0,0);}
.m10_c01098{transform:matrix(0.328783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328783,0.000000,0.000000,0.250000,0,0);}
.m70_c01098{transform:matrix(0.329876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329876,0.000000,0.000000,0.250000,0,0);}
.m67_c01098{transform:matrix(0.329886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329886,0.000000,0.000000,0.250000,0,0);}
.m26_c01098{transform:matrix(0.332383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332383,0.000000,0.000000,0.250000,0,0);}
.m17_c01098{transform:matrix(0.332482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332482,0.000000,0.000000,0.250000,0,0);}
.m19_c01098{transform:matrix(0.335037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335037,0.000000,0.000000,0.250000,0,0);}
.m6d_c01098{transform:matrix(0.337126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337126,0.000000,0.000000,0.250000,0,0);}
.m7c_c01098{transform:matrix(0.339857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339857,0.000000,0.000000,0.250000,0,0);}
.m27_c01098{transform:matrix(0.348376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348376,0.000000,0.000000,0.250000,0,0);}
.m33_c01098{transform:matrix(0.358544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358544,0.000000,0.000000,0.250000,0,0);}
.m4_c01098{transform:matrix(0.363001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363001,0.000000,0.000000,0.250000,0,0);}
.m7a_c01098{transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);}
.m59_c01098{transform:matrix(0.370979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370979,0.000000,0.000000,0.250000,0,0);}
.m2c_c01098{transform:matrix(0.371937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371937,0.000000,0.000000,0.250000,0,0);}
.m60_c01098{transform:matrix(0.376256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376256,0.000000,0.000000,0.250000,0,0);}
.m38_c01098{transform:matrix(0.388163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388163,0.000000,0.000000,0.250000,0,0);}
.m49_c01098{transform:matrix(0.399779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399779,0.000000,0.000000,0.250000,0,0);}
.m14_c01098{transform:matrix(0.403791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403791,0.000000,0.000000,0.250000,0,0);}
.v0_c01098{vertical-align:0.000000px;}
.ls2e_c01098{letter-spacing:-3.423427px;}
.ls2c_c01098{letter-spacing:-3.097717px;}
.lsd_c01098{letter-spacing:-3.090780px;}
.lsc_c01098{letter-spacing:-2.751217px;}
.ls1f_c01098{letter-spacing:-2.702700px;}
.ls23_c01098{letter-spacing:-2.647267px;}
.ls24_c01098{letter-spacing:-2.619540px;}
.ls2f_c01098{letter-spacing:-2.577967px;}
.ls18_c01098{letter-spacing:-2.480940px;}
.ls11_c01098{letter-spacing:-2.453227px;}
.ls2d_c01098{letter-spacing:-2.407680px;}
.ls21_c01098{letter-spacing:-0.888030px;}
.ls0_c01098{letter-spacing:0.000000px;}
.ls17_c01098{letter-spacing:0.082764px;}
.ls1e_c01098{letter-spacing:0.292030px;}
.ls7_c01098{letter-spacing:0.668925px;}
.ls20_c01098{letter-spacing:0.673596px;}
.ls1d_c01098{letter-spacing:1.336305px;}
.ls2b_c01098{letter-spacing:1.460352px;}
.ls26_c01098{letter-spacing:1.802834px;}
.ls1c_c01098{letter-spacing:1.807943px;}
.ls5_c01098{letter-spacing:2.523259px;}
.ls14_c01098{letter-spacing:2.704053px;}
.lsa_c01098{letter-spacing:2.803609px;}
.ls6_c01098{letter-spacing:2.989810px;}
.ls13_c01098{letter-spacing:3.015706px;}
.ls25_c01098{letter-spacing:3.230715px;}
.ls19_c01098{letter-spacing:3.232310px;}
.ls1b_c01098{letter-spacing:3.474900px;}
.ls29_c01098{letter-spacing:3.524400px;}
.ls3_c01098{letter-spacing:3.544200px;}
.lsb_c01098{letter-spacing:3.593700px;}
.ls8_c01098{letter-spacing:3.702610px;}
.ls2_c01098{letter-spacing:3.742200px;}
.ls22_c01098{letter-spacing:3.781810px;}
.ls10_c01098{letter-spacing:3.861000px;}
.ls15_c01098{letter-spacing:3.874869px;}
.ls1a_c01098{letter-spacing:3.880810px;}
.ls4_c01098{letter-spacing:3.930310px;}
.ls1_c01098{letter-spacing:4.078810px;}
.ls28_c01098{letter-spacing:4.186343px;}
.ls2a_c01098{letter-spacing:4.217400px;}
.ls16_c01098{letter-spacing:4.385700px;}
.ls27_c01098{letter-spacing:58.449798px;}
.lse_c01098{letter-spacing:59.875398px;}
.lsf_c01098{letter-spacing:61.300998px;}
.ls12_c01098{letter-spacing:62.726400px;}
.ls9_c01098{letter-spacing:64.152198px;}
.ls30_c01098{letter-spacing:65.577798px;}
.sc__c01098{text-shadow:none;}
.sc0_c01098{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01098{-webkit-text-stroke:0px transparent;}
.sc0_c01098{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01098{word-spacing:-22.355603px;}
.ws1_c01098{word-spacing:0.000000px;}
._1_c01098{margin-left:-26.388772px;}
._5_c01098{margin-left:-3.259116px;}
._2_c01098{width:1.980858px;}
._0_c01098{width:7.259274px;}
._4_c01098{width:35.299699px;}
._3_c01098{width:82.492625px;}
.fc0_c01098{color:transparent;}
.fs17_c01098{font-size:22.572000px;}
.fs0_c01098{font-size:27.720000px;}
.fs24_c01098{font-size:33.264000px;}
.fs19_c01098{font-size:41.976198px;}
.fsd_c01098{font-size:46.728000px;}
.fs1a_c01098{font-size:47.124000px;}
.fs1c_c01098{font-size:58.449798px;}
.fs18_c01098{font-size:59.598000px;}
.fs6_c01098{font-size:59.796198px;}
.fse_c01098{font-size:59.875398px;}
.fsf_c01098{font-size:61.300998px;}
.fs11_c01098{font-size:62.726400px;}
.fs9_c01098{font-size:64.152198px;}
.fs23_c01098{font-size:65.577798px;}
.fs16_c01098{font-size:69.498000px;}
.fs3_c01098{font-size:70.092198px;}
.fs1e_c01098{font-size:70.488000px;}
.fs4_c01098{font-size:70.884000px;}
.fsb_c01098{font-size:71.874000px;}
.fsa_c01098{font-size:72.072198px;}
.fs22_c01098{font-size:73.656198px;}
.fs7_c01098{font-size:74.052198px;}
.fs2_c01098{font-size:74.844000px;}
.fs15_c01098{font-size:75.240000px;}
.fs1b_c01098{font-size:75.636198px;}
.fs10_c01098{font-size:77.220000px;}
.fs12_c01098{font-size:77.616198px;}
.fs5_c01098{font-size:78.606198px;}
.fs20_c01098{font-size:79.200000px;}
.fs13_c01098{font-size:79.992198px;}
.fs1_c01098{font-size:81.576198px;}
.fs8_c01098{font-size:83.556198px;}
.fs1f_c01098{font-size:84.348000px;}
.fs14_c01098{font-size:87.714000px;}
.fsc_c01098{font-size:88.308000px;}
.fs1d_c01098{font-size:88.506198px;}
.fs21_c01098{font-size:97.812198px;}
.y0_c01098{bottom:0.000000px;}
.y18_c01098{bottom:24.142170px;}
.y1_c01098{bottom:76.500000px;}
.y17_c01098{bottom:154.940970px;}
.y16_c01098{bottom:221.236320px;}
.y15_c01098{bottom:252.599520px;}
.y14_c01098{bottom:286.452570px;}
.y19_c01098{bottom:300.708570px;}
.y13_c01098{bottom:350.609520px;}
.y12_c01098{bottom:382.685520px;}
.y11_c01098{bottom:414.761520px;}
.y10_c01098{bottom:446.119770px;}
.yf_c01098{bottom:497.441370px;}
.ye_c01098{bottom:510.271770px;}
.yd_c01098{bottom:574.067370px;}
.yc_c01098{bottom:638.224320px;}
.yb_c01098{bottom:702.014970px;}
.ya_c01098{bottom:730.170570px;}
.y9_c01098{bottom:734.808720px;}
.y8_c01098{bottom:766.171920px;}
.y7_c01098{bottom:799.312170px;}
.y6_c01098{bottom:831.031770px;}
.y4_c01098{bottom:895.188720px;}
.y3_c01098{bottom:927.259770px;}
.y2_c01098{bottom:979.294170px;}
.y5_c01098{bottom:1061.266170px;}
.h19_c01098{height:23.541891px;}
.h2_c01098{height:28.911094px;}
.h26_c01098{height:34.693313px;}
.h1d_c01098{height:38.927565px;}
.h10_c01098{height:39.877015px;}
.h11_c01098{height:40.826465px;}
.h13_c01098{height:41.775782px;}
.hb_c01098{height:42.725364px;}
.h25_c01098{height:43.674813px;}
.hf_c01098{height:45.860977px;}
.h1a_c01098{height:46.249629px;}
.h8_c01098{height:58.686698px;}
.h18_c01098{height:68.208486px;}
.h1f_c01098{height:69.180117px;}
.h6_c01098{height:69.568770px;}
.hd_c01098{height:70.540400px;}
.h24_c01098{height:72.289530px;}
.h9_c01098{height:72.678183px;}
.h5_c01098{height:73.103972px;}
.h4_c01098{height:73.455293px;}
.h1c_c01098{height:74.232792px;}
.hc_c01098{height:75.169050px;}
.h12_c01098{height:75.787207px;}
.h17_c01098{height:76.176054px;}
.h7_c01098{height:77.147685px;}
.h16_c01098{height:78.472969px;}
.h3_c01098{height:80.062577px;}
.h1b_c01098{height:80.538047px;}
.h14_c01098{height:80.951269px;}
.ha_c01098{height:82.005839px;}
.h21_c01098{height:82.603125px;}
.h20_c01098{height:82.782949px;}
.h15_c01098{height:86.043665px;}
.h1e_c01098{height:86.863993px;}
.he_c01098{height:92.102484px;}
.h22_c01098{height:95.949563px;}
.h23_c01098{height:95.997323px;}
.h1_c01098{height:1110.000000px;}
.h0_c01098{height:1263.000000px;}
.w1_c01098{width:775.500000px;}
.w0_c01098{width:892.500000px;}
.x0_c01098{left:0.000000px;}
.x1_c01098{left:58.500000px;}
.x3d_c01098{left:93.838785px;}
.x14_c01098{left:94.907985px;}
.x58_c01098{left:145.996935px;}
.x2f_c01098{left:147.313635px;}
.x22_c01098{left:148.462035px;}
.xb_c01098{left:149.496585px;}
.x3_c01098{left:150.773685px;}
.x1a_c01098{left:181.879485px;}
.x4_c01098{left:183.631785px;}
.x60_c01098{left:184.799985px;}
.x61_c01098{left:187.458135px;}
.x28_c01098{left:194.388135px;}
.x30_c01098{left:204.733635px;}
.x39_c01098{left:214.396035px;}
.x29_c01098{left:225.815685px;}
.x15_c01098{left:226.969035px;}
.x31_c01098{left:230.978535px;}
.x32_c01098{left:237.710535px;}
.x44_c01098{left:247.585785px;}
.xc_c01098{left:249.798435px;}
.x59_c01098{left:256.832385px;}
.x4a_c01098{left:258.683685px;}
.x35_c01098{left:260.054835px;}
.x2a_c01098{left:283.250535px;}
.xd_c01098{left:293.056485px;}
.x23_c01098{left:294.175185px;}
.x62_c01098{left:302.129835px;}
.x1b_c01098{left:303.862335px;}
.x3a_c01098{left:314.336535px;}
.x5_c01098{left:315.712635px;}
.x45_c01098{left:325.251285px;}
.x33_c01098{left:326.939235px;}
.x3e_c01098{left:335.710635px;}
.x5a_c01098{left:346.412535px;}
.x36_c01098{left:347.838135px;}
.x4b_c01098{left:358.139085px;}
.x2b_c01098{left:359.539935px;}
.x50_c01098{left:370.746735px;}
.x46_c01098{left:373.152435px;}
.x3f_c01098{left:380.225985px;}
.x37_c01098{left:385.661085px;}
.x5b_c01098{left:388.462785px;}
.x5d_c01098{left:391.606035px;}
.xe_c01098{left:393.011835px;}
.x3b_c01098{left:402.629685px;}
.x1c_c01098{left:403.659285px;}
.x34_c01098{left:405.436335px;}
.x51_c01098{left:414.351285px;}
.xf_c01098{left:416.598585px;}
.x52_c01098{left:417.841035px;}
.x5e_c01098{left:424.280985px;}
.x16_c01098{left:426.686685px;}
.x53_c01098{left:431.993085px;}
.x1d_c01098{left:437.804385px;}
.x2c_c01098{left:447.922185px;}
.x6_c01098{left:450.634785px;}
.x4c_c01098{left:459.173535px;}
.x10_c01098{left:460.321935px;}
.x56_c01098{left:469.390335px;}
.x7_c01098{left:470.905035px;}
.x54_c01098{left:480.795135px;}
.x24_c01098{left:482.621685px;}
.x40_c01098{left:492.625635px;}
.x47_c01098{left:502.109835px;}
.x3c_c01098{left:508.074585px;}
.x38_c01098{left:513.836385px;}
.x8_c01098{left:516.133185px;}
.x5c_c01098{left:524.132385px;}
.x1e_c01098{left:536.947935px;}
.x17_c01098{left:547.738935px;}
.x57_c01098{left:557.683485px;}
.x5f_c01098{left:559.267485px;}
.x2d_c01098{left:564.400635px;}
.x55_c01098{left:568.405185px;}
.x18_c01098{left:570.157485px;}
.x11_c01098{left:571.380135px;}
.x41_c01098{left:580.354485px;}
.x4d_c01098{left:581.423685px;}
.x63_c01098{left:589.700085px;}
.x25_c01098{left:592.115685px;}
.x4e_c01098{left:600.411885px;}
.x42_c01098{left:611.890935px;}
.x1f_c01098{left:613.672935px;}
.x19_c01098{left:614.895585px;}
.x48_c01098{left:622.756185px;}
.x26_c01098{left:624.043185px;}
.x9_c01098{left:626.335035px;}
.x20_c01098{left:636.022185px;}
.x12_c01098{left:637.690335px;}
.x43_c01098{left:645.783585px;}
.x2e_c01098{left:648.283335px;}
.x27_c01098{left:656.831985px;}
.xa_c01098{left:659.658435px;}
.x2_c01098{left:660.999885px;}
.x21_c01098{left:669.924735px;}
.x49_c01098{left:690.442485px;}
.x4f_c01098{left:701.466135px;}
.x13_c01098{left:707.891235px;}
.x64_c01098{left:768.602985px;}
@media print{
.v0_c01098{vertical-align:0.000000pt;}
.ls2e_c01098{letter-spacing:-3.043046pt;}
.ls2c_c01098{letter-spacing:-2.753526pt;}
.lsd_c01098{letter-spacing:-2.747360pt;}
.lsc_c01098{letter-spacing:-2.445526pt;}
.ls1f_c01098{letter-spacing:-2.402400pt;}
.ls23_c01098{letter-spacing:-2.353126pt;}
.ls24_c01098{letter-spacing:-2.328480pt;}
.ls2f_c01098{letter-spacing:-2.291526pt;}
.ls18_c01098{letter-spacing:-2.205280pt;}
.ls11_c01098{letter-spacing:-2.180646pt;}
.ls2d_c01098{letter-spacing:-2.140160pt;}
.ls21_c01098{letter-spacing:-0.789360pt;}
.ls0_c01098{letter-spacing:0.000000pt;}
.ls17_c01098{letter-spacing:0.073568pt;}
.ls1e_c01098{letter-spacing:0.259582pt;}
.ls7_c01098{letter-spacing:0.594600pt;}
.ls20_c01098{letter-spacing:0.598752pt;}
.ls1d_c01098{letter-spacing:1.187827pt;}
.ls2b_c01098{letter-spacing:1.298091pt;}
.ls26_c01098{letter-spacing:1.602519pt;}
.ls1c_c01098{letter-spacing:1.607060pt;}
.ls5_c01098{letter-spacing:2.242897pt;}
.ls14_c01098{letter-spacing:2.403603pt;}
.lsa_c01098{letter-spacing:2.492096pt;}
.ls6_c01098{letter-spacing:2.657609pt;}
.ls13_c01098{letter-spacing:2.680627pt;}
.ls25_c01098{letter-spacing:2.871746pt;}
.ls19_c01098{letter-spacing:2.873165pt;}
.ls1b_c01098{letter-spacing:3.088800pt;}
.ls29_c01098{letter-spacing:3.132800pt;}
.ls3_c01098{letter-spacing:3.150400pt;}
.lsb_c01098{letter-spacing:3.194400pt;}
.ls8_c01098{letter-spacing:3.291209pt;}
.ls2_c01098{letter-spacing:3.326400pt;}
.ls22_c01098{letter-spacing:3.361609pt;}
.ls10_c01098{letter-spacing:3.432000pt;}
.ls15_c01098{letter-spacing:3.444328pt;}
.ls1a_c01098{letter-spacing:3.449609pt;}
.ls4_c01098{letter-spacing:3.493609pt;}
.ls1_c01098{letter-spacing:3.625609pt;}
.ls28_c01098{letter-spacing:3.721194pt;}
.ls2a_c01098{letter-spacing:3.748800pt;}
.ls16_c01098{letter-spacing:3.898400pt;}
.ls27_c01098{letter-spacing:51.955376pt;}
.lse_c01098{letter-spacing:53.222576pt;}
.lsf_c01098{letter-spacing:54.489776pt;}
.ls12_c01098{letter-spacing:55.756800pt;}
.ls9_c01098{letter-spacing:57.024176pt;}
.ls30_c01098{letter-spacing:58.291376pt;}
.ws0_c01098{word-spacing:-19.871647pt;}
.ws1_c01098{word-spacing:0.000000pt;}
._1_c01098{margin-left:-23.456687pt;}
._5_c01098{margin-left:-2.896992pt;}
._2_c01098{width:1.760762pt;}
._0_c01098{width:6.452688pt;}
._4_c01098{width:31.377510pt;}
._3_c01098{width:73.326777pt;}
.fs17_c01098{font-size:20.064000pt;}
.fs0_c01098{font-size:24.640000pt;}
.fs24_c01098{font-size:29.568000pt;}
.fs19_c01098{font-size:37.312176pt;}
.fsd_c01098{font-size:41.536000pt;}
.fs1a_c01098{font-size:41.888000pt;}
.fs1c_c01098{font-size:51.955376pt;}
.fs18_c01098{font-size:52.976000pt;}
.fs6_c01098{font-size:53.152176pt;}
.fse_c01098{font-size:53.222576pt;}
.fsf_c01098{font-size:54.489776pt;}
.fs11_c01098{font-size:55.756800pt;}
.fs9_c01098{font-size:57.024176pt;}
.fs23_c01098{font-size:58.291376pt;}
.fs16_c01098{font-size:61.776000pt;}
.fs3_c01098{font-size:62.304176pt;}
.fs1e_c01098{font-size:62.656000pt;}
.fs4_c01098{font-size:63.008000pt;}
.fsb_c01098{font-size:63.888000pt;}
.fsa_c01098{font-size:64.064176pt;}
.fs22_c01098{font-size:65.472176pt;}
.fs7_c01098{font-size:65.824176pt;}
.fs2_c01098{font-size:66.528000pt;}
.fs15_c01098{font-size:66.880000pt;}
.fs1b_c01098{font-size:67.232176pt;}
.fs10_c01098{font-size:68.640000pt;}
.fs12_c01098{font-size:68.992176pt;}
.fs5_c01098{font-size:69.872176pt;}
.fs20_c01098{font-size:70.400000pt;}
.fs13_c01098{font-size:71.104176pt;}
.fs1_c01098{font-size:72.512176pt;}
.fs8_c01098{font-size:74.272176pt;}
.fs1f_c01098{font-size:74.976000pt;}
.fs14_c01098{font-size:77.968000pt;}
.fsc_c01098{font-size:78.496000pt;}
.fs1d_c01098{font-size:78.672176pt;}
.fs21_c01098{font-size:86.944176pt;}
.y0_c01098{bottom:0.000000pt;}
.y18_c01098{bottom:21.459707pt;}
.y1_c01098{bottom:68.000000pt;}
.y17_c01098{bottom:137.725307pt;}
.y16_c01098{bottom:196.654507pt;}
.y15_c01098{bottom:224.532907pt;}
.y14_c01098{bottom:254.624507pt;}
.y19_c01098{bottom:267.296507pt;}
.y13_c01098{bottom:311.652907pt;}
.y12_c01098{bottom:340.164907pt;}
.y11_c01098{bottom:368.676907pt;}
.y10_c01098{bottom:396.550907pt;}
.yf_c01098{bottom:442.170107pt;}
.ye_c01098{bottom:453.574907pt;}
.yd_c01098{bottom:510.282107pt;}
.yc_c01098{bottom:567.310507pt;}
.yb_c01098{bottom:624.013307pt;}
.ya_c01098{bottom:649.040507pt;}
.y9_c01098{bottom:653.163307pt;}
.y8_c01098{bottom:681.041707pt;}
.y7_c01098{bottom:710.499707pt;}
.y6_c01098{bottom:738.694907pt;}
.y4_c01098{bottom:795.723307pt;}
.y3_c01098{bottom:824.230907pt;}
.y2_c01098{bottom:870.483707pt;}
.y5_c01098{bottom:943.347707pt;}
.h19_c01098{height:20.926125pt;}
.h2_c01098{height:25.698750pt;}
.h26_c01098{height:30.838500pt;}
.h1d_c01098{height:34.602280pt;}
.h10_c01098{height:35.446236pt;}
.h11_c01098{height:36.290191pt;}
.h13_c01098{height:37.134029pt;}
.hb_c01098{height:37.978101pt;}
.h25_c01098{height:38.822056pt;}
.hf_c01098{height:40.765313pt;}
.h1a_c01098{height:41.110781pt;}
.h8_c01098{height:52.165954pt;}
.h18_c01098{height:60.629766pt;}
.h1f_c01098{height:61.493438pt;}
.h6_c01098{height:61.838906pt;}
.hd_c01098{height:62.702578pt;}
.h24_c01098{height:64.257360pt;}
.h9_c01098{height:64.602829pt;}
.h5_c01098{height:64.981309pt;}
.h4_c01098{height:65.293594pt;}
.h1c_c01098{height:65.984704pt;}
.hc_c01098{height:66.816934pt;}
.h12_c01098{height:67.366406pt;}
.h17_c01098{height:67.712048pt;}
.h7_c01098{height:68.575720pt;}
.h16_c01098{height:69.753750pt;}
.h3_c01098{height:71.166735pt;}
.h1b_c01098{height:71.589375pt;}
.h14_c01098{height:71.956684pt;}
.ha_c01098{height:72.894079pt;}
.h21_c01098{height:73.425000pt;}
.h20_c01098{height:73.584844pt;}
.h15_c01098{height:76.483258pt;}
.h1e_c01098{height:77.212438pt;}
.he_c01098{height:81.868875pt;}
.h22_c01098{height:85.288501pt;}
.h23_c01098{height:85.330954pt;}
.h1_c01098{height:986.666667pt;}
.h0_c01098{height:1122.666667pt;}
.w1_c01098{width:689.333333pt;}
.w0_c01098{width:793.333333pt;}
.x0_c01098{left:0.000000pt;}
.x1_c01098{left:52.000000pt;}
.x3d_c01098{left:83.412253pt;}
.x14_c01098{left:84.362653pt;}
.x58_c01098{left:129.775053pt;}
.x2f_c01098{left:130.945453pt;}
.x22_c01098{left:131.966253pt;}
.xb_c01098{left:132.885853pt;}
.x3_c01098{left:134.021053pt;}
.x1a_c01098{left:161.670653pt;}
.x4_c01098{left:163.228253pt;}
.x60_c01098{left:164.266653pt;}
.x61_c01098{left:166.629453pt;}
.x28_c01098{left:172.789453pt;}
.x30_c01098{left:181.985453pt;}
.x39_c01098{left:190.574253pt;}
.x29_c01098{left:200.725053pt;}
.x15_c01098{left:201.750253pt;}
.x31_c01098{left:205.314253pt;}
.x32_c01098{left:211.298253pt;}
.x44_c01098{left:220.076253pt;}
.xc_c01098{left:222.043053pt;}
.x59_c01098{left:228.295453pt;}
.x4a_c01098{left:229.941053pt;}
.x35_c01098{left:231.159853pt;}
.x2a_c01098{left:251.778253pt;}
.xd_c01098{left:260.494653pt;}
.x23_c01098{left:261.489053pt;}
.x62_c01098{left:268.559853pt;}
.x1b_c01098{left:270.099853pt;}
.x3a_c01098{left:279.410253pt;}
.x5_c01098{left:280.633453pt;}
.x45_c01098{left:289.112253pt;}
.x33_c01098{left:290.612653pt;}
.x3e_c01098{left:298.409453pt;}
.x5a_c01098{left:307.922253pt;}
.x36_c01098{left:309.189453pt;}
.x4b_c01098{left:318.345853pt;}
.x2b_c01098{left:319.591053pt;}
.x50_c01098{left:329.552653pt;}
.x46_c01098{left:331.691053pt;}
.x3f_c01098{left:337.978653pt;}
.x37_c01098{left:342.809853pt;}
.x5b_c01098{left:345.300253pt;}
.x5d_c01098{left:348.094253pt;}
.xe_c01098{left:349.343853pt;}
.x3b_c01098{left:357.893053pt;}
.x1c_c01098{left:358.808253pt;}
.x34_c01098{left:360.387853pt;}
.x51_c01098{left:368.312253pt;}
.xf_c01098{left:370.309853pt;}
.x52_c01098{left:371.414253pt;}
.x5e_c01098{left:377.138653pt;}
.x16_c01098{left:379.277053pt;}
.x53_c01098{left:383.993853pt;}
.x1d_c01098{left:389.159453pt;}
.x2c_c01098{left:398.153053pt;}
.x6_c01098{left:400.564253pt;}
.x4c_c01098{left:408.154253pt;}
.x10_c01098{left:409.175053pt;}
.x56_c01098{left:417.235853pt;}
.x7_c01098{left:418.582253pt;}
.x54_c01098{left:427.373453pt;}
.x24_c01098{left:428.997053pt;}
.x40_c01098{left:437.889453pt;}
.x47_c01098{left:446.319853pt;}
.x3c_c01098{left:451.621853pt;}
.x38_c01098{left:456.743453pt;}
.x8_c01098{left:458.785053pt;}
.x5c_c01098{left:465.895453pt;}
.x1e_c01098{left:477.287053pt;}
.x17_c01098{left:486.879053pt;}
.x57_c01098{left:495.718653pt;}
.x5f_c01098{left:497.126653pt;}
.x2d_c01098{left:501.689453pt;}
.x55_c01098{left:505.249053pt;}
.x18_c01098{left:506.806653pt;}
.x11_c01098{left:507.893453pt;}
.x41_c01098{left:515.870653pt;}
.x4d_c01098{left:516.821053pt;}
.x63_c01098{left:524.177853pt;}
.x25_c01098{left:526.325053pt;}
.x4e_c01098{left:533.699453pt;}
.x42_c01098{left:543.903053pt;}
.x1f_c01098{left:545.487053pt;}
.x19_c01098{left:546.573853pt;}
.x48_c01098{left:553.561053pt;}
.x26_c01098{left:554.705053pt;}
.x9_c01098{left:556.742253pt;}
.x20_c01098{left:565.353053pt;}
.x12_c01098{left:566.835853pt;}
.x43_c01098{left:574.029853pt;}
.x2e_c01098{left:576.251853pt;}
.x27_c01098{left:583.850653pt;}
.xa_c01098{left:586.363053pt;}
.x2_c01098{left:587.555453pt;}
.x21_c01098{left:595.488653pt;}
.x49_c01098{left:613.726653pt;}
.x4f_c01098{left:623.525453pt;}
.x13_c01098{left:629.236653pt;}
.x64_c01098{left:683.202653pt;}
}





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

.ir_c01099:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01099{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01099;src:url('chunks/assets/font_7122b7c18460ee6b40904a73.woff2')format("woff");}.ff1_c01099{font-family:ff1_c01099;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01099;src:url('chunks/assets/font_cc71b6f5261aeb635421d13a.woff2')format("woff");}.ff2_c01099{font-family:ff2_c01099;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01099;src:url('chunks/assets/font_0eaf8eb17db73633eb59720c.woff2')format("woff");}.ff3_c01099{font-family:ff3_c01099;line-height:0.666000;font-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_c01099{transform:matrix(0.011629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011629,0.000000,0.000000,0.250000,0,0);}
.mb4_c01099{transform:matrix(0.048914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048914,0.000000,0.000000,0.250000,0,0);}
.m9f_c01099{transform:matrix(0.069150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.069150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.069150,0.000000,0.000000,0.250000,0,0);}
.mb2_c01099{transform:matrix(0.083695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083695,0.000000,0.000000,0.250000,0,0);}
.m60_c01099{transform:matrix(0.105114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105114,0.000000,0.000000,0.250000,0,0);}
.mb0_c01099{transform:matrix(0.105299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105299,0.000000,0.000000,0.250000,0,0);}
.mb3_c01099{transform:matrix(0.106719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106719,0.000000,0.000000,0.250000,0,0);}
.m44_c01099{transform:matrix(0.108527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108527,0.000000,0.000000,0.250000,0,0);}
.m97_c01099{transform:matrix(0.113032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113032,0.000000,0.000000,0.250000,0,0);}
.ma0_c01099{transform:matrix(0.121011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121011,0.000000,0.000000,0.250000,0,0);}
.m3f_c01099{transform:matrix(0.123882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123882,0.000000,0.000000,0.250000,0,0);}
.m6a_c01099{transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);}
.ma3_c01099{transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01099{transform:matrix(0.138382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138382,0.000000,0.000000,0.250000,0,0);}
.m99_c01099{transform:matrix(0.139207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139207,0.000000,0.000000,0.250000,0,0);}
.m9a_c01099{transform:matrix(0.141078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141078,0.000000,0.000000,0.250000,0,0);}
.mb9_c01099{transform:matrix(0.144267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144267,0.000000,0.000000,0.250000,0,0);}
.mb5_c01099{transform:matrix(0.144928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144928,0.000000,0.000000,0.250000,0,0);}
.m98_c01099{transform:matrix(0.151923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151923,0.000000,0.000000,0.250000,0,0);}
.mab_c01099{transform:matrix(0.155364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155364,0.000000,0.000000,0.250000,0,0);}
.m42_c01099{transform:matrix(0.162790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162790,0.000000,0.000000,0.250000,0,0);}
.maf_c01099{transform:matrix(0.166925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166925,0.000000,0.000000,0.250000,0,0);}
.m25_c01099{transform:matrix(0.178862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178862,0.000000,0.000000,0.250000,0,0);}
.m94_c01099{transform:matrix(0.182306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182306,0.000000,0.000000,0.250000,0,0);}
.m6b_c01099{transform:matrix(0.189737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189737,0.000000,0.000000,0.250000,0,0);}
.mb1_c01099{transform:matrix(0.191681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191681,0.000000,0.000000,0.250000,0,0);}
.m2c_c01099{transform:matrix(0.213701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213701,0.000000,0.000000,0.250000,0,0);}
.m46_c01099{transform:matrix(0.241796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241796,0.000000,0.000000,0.250000,0,0);}
.m7d_c01099{transform:matrix(0.247994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247994,0.000000,0.000000,0.250000,0,0);}
.m0_c01099{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m50_c01099{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mbb_c01099{transform:matrix(0.252278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252278,0.000000,0.000000,0.250000,0,0);}
.m9c_c01099{transform:matrix(0.252595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252595,0.000000,0.000000,0.250000,0,0);}
.ma9_c01099{transform:matrix(0.253747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253747,0.000000,0.000000,0.250000,0,0);}
.m8b_c01099{transform:matrix(0.254269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254269,0.000000,0.000000,0.250000,0,0);}
.m1c_c01099{transform:matrix(0.254312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254312,0.000000,0.000000,0.250000,0,0);}
.m5b_c01099{transform:matrix(0.254811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254811,0.000000,0.000000,0.250000,0,0);}
.m7c_c01099{transform:matrix(0.255594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255594,0.000000,0.000000,0.250000,0,0);}
.m7a_c01099{transform:matrix(0.257968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257968,0.000000,0.000000,0.250000,0,0);}
.m61_c01099{transform:matrix(0.259065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259065,0.000000,0.000000,0.250000,0,0);}
.m7e_c01099{transform:matrix(0.259310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259310,0.000000,0.000000,0.250000,0,0);}
.m9e_c01099{transform:matrix(0.259775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259775,0.000000,0.000000,0.250000,0,0);}
.mb7_c01099{transform:matrix(0.259794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259794,0.000000,0.000000,0.250000,0,0);}
.mb_c01099{transform:matrix(0.261726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261726,0.000000,0.000000,0.250000,0,0);}
.m5f_c01099{transform:matrix(0.262584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262584,0.000000,0.000000,0.250000,0,0);}
.m2d_c01099{transform:matrix(0.263289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263289,0.000000,0.000000,0.250000,0,0);}
.m3e_c01099{transform:matrix(0.263512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263512,0.000000,0.000000,0.250000,0,0);}
.m5a_c01099{transform:matrix(0.264150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264150,0.000000,0.000000,0.250000,0,0);}
.maa_c01099{transform:matrix(0.264932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264932,0.000000,0.000000,0.250000,0,0);}
.m4d_c01099{transform:matrix(0.265443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265443,0.000000,0.000000,0.250000,0,0);}
.m41_c01099{transform:matrix(0.266562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266562,0.000000,0.000000,0.250000,0,0);}
.m15_c01099{transform:matrix(0.268010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268010,0.000000,0.000000,0.250000,0,0);}
.m69_c01099{transform:matrix(0.269522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269522,0.000000,0.000000,0.250000,0,0);}
.m68_c01099{transform:matrix(0.269855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269855,0.000000,0.000000,0.250000,0,0);}
.m59_c01099{transform:matrix(0.270615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270615,0.000000,0.000000,0.250000,0,0);}
.md_c01099{transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);}
.m22_c01099{transform:matrix(0.272173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272173,0.000000,0.000000,0.250000,0,0);}
.m1f_c01099{transform:matrix(0.272325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272325,0.000000,0.000000,0.250000,0,0);}
.m48_c01099{transform:matrix(0.272995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272995,0.000000,0.000000,0.250000,0,0);}
.m12_c01099{transform:matrix(0.275231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275231,0.000000,0.000000,0.250000,0,0);}
.ma5_c01099{transform:matrix(0.275253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275253,0.000000,0.000000,0.250000,0,0);}
.m53_c01099{transform:matrix(0.275406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275406,0.000000,0.000000,0.250000,0,0);}
.m10_c01099{transform:matrix(0.275957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275957,0.000000,0.000000,0.250000,0,0);}
.m80_c01099{transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);}
.ma6_c01099{transform:matrix(0.276340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276340,0.000000,0.000000,0.250000,0,0);}
.m62_c01099{transform:matrix(0.277366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277366,0.000000,0.000000,0.250000,0,0);}
.m19_c01099{transform:matrix(0.277503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277503,0.000000,0.000000,0.250000,0,0);}
.m93_c01099{transform:matrix(0.278061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278061,0.000000,0.000000,0.250000,0,0);}
.m3c_c01099{transform:matrix(0.278068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278068,0.000000,0.000000,0.250000,0,0);}
.m89_c01099{transform:matrix(0.278792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278792,0.000000,0.000000,0.250000,0,0);}
.m66_c01099{transform:matrix(0.279348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279348,0.000000,0.000000,0.250000,0,0);}
.m96_c01099{transform:matrix(0.279389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279389,0.000000,0.000000,0.250000,0,0);}
.m78_c01099{transform:matrix(0.280090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280090,0.000000,0.000000,0.250000,0,0);}
.m92_c01099{transform:matrix(0.280536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280536,0.000000,0.000000,0.250000,0,0);}
.m39_c01099{transform:matrix(0.281059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281059,0.000000,0.000000,0.250000,0,0);}
.mac_c01099{transform:matrix(0.281169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281169,0.000000,0.000000,0.250000,0,0);}
.m3a_c01099{transform:matrix(0.281572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281572,0.000000,0.000000,0.250000,0,0);}
.m5d_c01099{transform:matrix(0.282388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282388,0.000000,0.000000,0.250000,0,0);}
.m8_c01099{transform:matrix(0.283139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283139,0.000000,0.000000,0.250000,0,0);}
.m58_c01099{transform:matrix(0.283226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283226,0.000000,0.000000,0.250000,0,0);}
.m1b_c01099{transform:matrix(0.283635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283635,0.000000,0.000000,0.250000,0,0);}
.m6_c01099{transform:matrix(0.283894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283894,0.000000,0.000000,0.250000,0,0);}
.m63_c01099{transform:matrix(0.284164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284164,0.000000,0.000000,0.250000,0,0);}
.ma2_c01099{transform:matrix(0.284277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284277,0.000000,0.000000,0.250000,0,0);}
.m3b_c01099{transform:matrix(0.284859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284859,0.000000,0.000000,0.250000,0,0);}
.m5e_c01099{transform:matrix(0.285840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285840,0.000000,0.000000,0.250000,0,0);}
.m88_c01099{transform:matrix(0.285988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285988,0.000000,0.000000,0.250000,0,0);}
.m4c_c01099{transform:matrix(0.286633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286633,0.000000,0.000000,0.250000,0,0);}
.m91_c01099{transform:matrix(0.287277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287277,0.000000,0.000000,0.250000,0,0);}
.m1d_c01099{transform:matrix(0.288917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288917,0.000000,0.000000,0.250000,0,0);}
.m20_c01099{transform:matrix(0.289609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289609,0.000000,0.000000,0.250000,0,0);}
.m74_c01099{transform:matrix(0.289693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289693,0.000000,0.000000,0.250000,0,0);}
.m30_c01099{transform:matrix(0.291791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291791,0.000000,0.000000,0.250000,0,0);}
.m16_c01099{transform:matrix(0.292019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292019,0.000000,0.000000,0.250000,0,0);}
.m2b_c01099{transform:matrix(0.293926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293926,0.000000,0.000000,0.250000,0,0);}
.mad_c01099{transform:matrix(0.295139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295139,0.000000,0.000000,0.250000,0,0);}
.m86_c01099{transform:matrix(0.295198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295198,0.000000,0.000000,0.250000,0,0);}
.m3d_c01099{transform:matrix(0.295334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295334,0.000000,0.000000,0.250000,0,0);}
.m52_c01099{transform:matrix(0.295383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295383,0.000000,0.000000,0.250000,0,0);}
.m18_c01099{transform:matrix(0.295448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295448,0.000000,0.000000,0.250000,0,0);}
.m40_c01099{transform:matrix(0.295555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295555,0.000000,0.000000,0.250000,0,0);}
.m2f_c01099{transform:matrix(0.296080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296080,0.000000,0.000000,0.250000,0,0);}
.m4_c01099{transform:matrix(0.296261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296261,0.000000,0.000000,0.250000,0,0);}
.m21_c01099{transform:matrix(0.296502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296502,0.000000,0.000000,0.250000,0,0);}
.m1e_c01099{transform:matrix(0.297537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297537,0.000000,0.000000,0.250000,0,0);}
.m24_c01099{transform:matrix(0.297562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297562,0.000000,0.000000,0.250000,0,0);}
.m6f_c01099{transform:matrix(0.297831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297831,0.000000,0.000000,0.250000,0,0);}
.m8d_c01099{transform:matrix(0.298799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298799,0.000000,0.000000,0.250000,0,0);}
.m7_c01099{transform:matrix(0.298876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298876,0.000000,0.000000,0.250000,0,0);}
.m9_c01099{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);}
.m5c_c01099{transform:matrix(0.299108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299108,0.000000,0.000000,0.250000,0,0);}
.m95_c01099{transform:matrix(0.300438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300438,0.000000,0.000000,0.250000,0,0);}
.m11_c01099{transform:matrix(0.300660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300660,0.000000,0.000000,0.250000,0,0);}
.m8c_c01099{transform:matrix(0.300971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300971,0.000000,0.000000,0.250000,0,0);}
.m14_c01099{transform:matrix(0.301168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301168,0.000000,0.000000,0.250000,0,0);}
.ma7_c01099{transform:matrix(0.302582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302582,0.000000,0.000000,0.250000,0,0);}
.m26_c01099{transform:matrix(0.302584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302584,0.000000,0.000000,0.250000,0,0);}
.m29_c01099{transform:matrix(0.303290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303290,0.000000,0.000000,0.250000,0,0);}
.m2a_c01099{transform:matrix(0.304333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304333,0.000000,0.000000,0.250000,0,0);}
.m8a_c01099{transform:matrix(0.304386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304386,0.000000,0.000000,0.250000,0,0);}
.m33_c01099{transform:matrix(0.305131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305131,0.000000,0.000000,0.250000,0,0);}
.m56_c01099{transform:matrix(0.305454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305454,0.000000,0.000000,0.250000,0,0);}
.m84_c01099{transform:matrix(0.305909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305909,0.000000,0.000000,0.250000,0,0);}
.m4e_c01099{transform:matrix(0.306132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306132,0.000000,0.000000,0.250000,0,0);}
.ma1_c01099{transform:matrix(0.309208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309208,0.000000,0.000000,0.250000,0,0);}
.ma_c01099{transform:matrix(0.309461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309461,0.000000,0.000000,0.250000,0,0);}
.ma4_c01099{transform:matrix(0.310673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310673,0.000000,0.000000,0.250000,0,0);}
.ma8_c01099{transform:matrix(0.311221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311221,0.000000,0.000000,0.250000,0,0);}
.m7b_c01099{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);}
.m67_c01099{transform:matrix(0.312694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312694,0.000000,0.000000,0.250000,0,0);}
.m87_c01099{transform:matrix(0.313029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313029,0.000000,0.000000,0.250000,0,0);}
.m28_c01099{transform:matrix(0.313104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313104,0.000000,0.000000,0.250000,0,0);}
.m6d_c01099{transform:matrix(0.313237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313237,0.000000,0.000000,0.250000,0,0);}
.m83_c01099{transform:matrix(0.313658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313658,0.000000,0.000000,0.250000,0,0);}
.m6e_c01099{transform:matrix(0.313904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313904,0.000000,0.000000,0.250000,0,0);}
.m4f_c01099{transform:matrix(0.314137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314137,0.000000,0.000000,0.250000,0,0);}
.m51_c01099{transform:matrix(0.314646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314646,0.000000,0.000000,0.250000,0,0);}
.me_c01099{transform:matrix(0.314811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314811,0.000000,0.000000,0.250000,0,0);}
.mbc_c01099{transform:matrix(0.315185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315185,0.000000,0.000000,0.250000,0,0);}
.m32_c01099{transform:matrix(0.315309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315309,0.000000,0.000000,0.250000,0,0);}
.m49_c01099{transform:matrix(0.315433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315433,0.000000,0.000000,0.250000,0,0);}
.m2_c01099{transform:matrix(0.315726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315726,0.000000,0.000000,0.250000,0,0);}
.m9d_c01099{transform:matrix(0.316188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316188,0.000000,0.000000,0.250000,0,0);}
.m36_c01099{transform:matrix(0.317541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317541,0.000000,0.000000,0.250000,0,0);}
.m3_c01099{transform:matrix(0.318221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318221,0.000000,0.000000,0.250000,0,0);}
.m47_c01099{transform:matrix(0.319144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319144,0.000000,0.000000,0.250000,0,0);}
.m73_c01099{transform:matrix(0.319680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319680,0.000000,0.000000,0.250000,0,0);}
.m13_c01099{transform:matrix(0.319822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319822,0.000000,0.000000,0.250000,0,0);}
.m90_c01099{transform:matrix(0.320494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320494,0.000000,0.000000,0.250000,0,0);}
.m37_c01099{transform:matrix(0.321258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321258,0.000000,0.000000,0.250000,0,0);}
.m6c_c01099{transform:matrix(0.322627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322627,0.000000,0.000000,0.250000,0,0);}
.m35_c01099{transform:matrix(0.323440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323440,0.000000,0.000000,0.250000,0,0);}
.m75_c01099{transform:matrix(0.324170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324170,0.000000,0.000000,0.250000,0,0);}
.m38_c01099{transform:matrix(0.325439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325439,0.000000,0.000000,0.250000,0,0);}
.mb6_c01099{transform:matrix(0.331429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331429,0.000000,0.000000,0.250000,0,0);}
.m77_c01099{transform:matrix(0.332016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332016,0.000000,0.000000,0.250000,0,0);}
.m76_c01099{transform:matrix(0.332076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332076,0.000000,0.000000,0.250000,0,0);}
.m70_c01099{transform:matrix(0.332552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332552,0.000000,0.000000,0.250000,0,0);}
.m1a_c01099{transform:matrix(0.334523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334523,0.000000,0.000000,0.250000,0,0);}
.m4b_c01099{transform:matrix(0.334546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334546,0.000000,0.000000,0.250000,0,0);}
.mf_c01099{transform:matrix(0.334588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334588,0.000000,0.000000,0.250000,0,0);}
.m34_c01099{transform:matrix(0.334885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334885,0.000000,0.000000,0.250000,0,0);}
.m55_c01099{transform:matrix(0.335351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335351,0.000000,0.000000,0.250000,0,0);}
.mba_c01099{transform:matrix(0.335368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335368,0.000000,0.000000,0.250000,0,0);}
.m9b_c01099{transform:matrix(0.335911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335911,0.000000,0.000000,0.250000,0,0);}
.m45_c01099{transform:matrix(0.337033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337033,0.000000,0.000000,0.250000,0,0);}
.m5_c01099{transform:matrix(0.337297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337297,0.000000,0.000000,0.250000,0,0);}
.mb8_c01099{transform:matrix(0.338749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338749,0.000000,0.000000,0.250000,0,0);}
.m8f_c01099{transform:matrix(0.340698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340698,0.000000,0.000000,0.250000,0,0);}
.m57_c01099{transform:matrix(0.341242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341242,0.000000,0.000000,0.250000,0,0);}
.m81_c01099{transform:matrix(0.341768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341768,0.000000,0.000000,0.250000,0,0);}
.m71_c01099{transform:matrix(0.342995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342995,0.000000,0.000000,0.250000,0,0);}
.m82_c01099{transform:matrix(0.345818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345818,0.000000,0.000000,0.250000,0,0);}
.m8e_c01099{transform:matrix(0.348403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348403,0.000000,0.000000,0.250000,0,0);}
.m2e_c01099{transform:matrix(0.348581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348581,0.000000,0.000000,0.250000,0,0);}
.m7f_c01099{transform:matrix(0.352443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352443,0.000000,0.000000,0.250000,0,0);}
.m72_c01099{transform:matrix(0.354172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354172,0.000000,0.000000,0.250000,0,0);}
.m79_c01099{transform:matrix(0.355741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355741,0.000000,0.000000,0.250000,0,0);}
.m17_c01099{transform:matrix(0.356405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356405,0.000000,0.000000,0.250000,0,0);}
.m54_c01099{transform:matrix(0.356799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356799,0.000000,0.000000,0.250000,0,0);}
.mc_c01099{transform:matrix(0.361174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361174,0.000000,0.000000,0.250000,0,0);}
.mae_c01099{transform:matrix(0.364057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364057,0.000000,0.000000,0.250000,0,0);}
.m23_c01099{transform:matrix(0.366428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366428,0.000000,0.000000,0.250000,0,0);}
.m64_c01099{transform:matrix(0.366512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366512,0.000000,0.000000,0.250000,0,0);}
.m27_c01099{transform:matrix(0.378372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378372,0.000000,0.000000,0.250000,0,0);}
.m65_c01099{transform:matrix(0.380990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380990,0.000000,0.000000,0.250000,0,0);}
.m85_c01099{transform:matrix(0.393731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393731,0.000000,0.000000,0.250000,0,0);}
.m31_c01099{transform:matrix(0.397481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397481,0.000000,0.000000,0.250000,0,0);}
.m1_c01099{transform:matrix(0.403692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403692,0.000000,0.000000,0.250000,0,0);}
.v2_c01099{vertical-align:-51.321600px;}
.v0_c01099{vertical-align:0.000000px;}
.v1_c01099{vertical-align:4.276800px;}
.ls1b_c01099{letter-spacing:-3.659040px;}
.ls32_c01099{letter-spacing:-3.326400px;}
.ls2b_c01099{letter-spacing:-3.076927px;}
.ls2c_c01099{letter-spacing:-2.848230px;}
.ls26_c01099{letter-spacing:-2.806650px;}
.ls11_c01099{letter-spacing:-2.661127px;}
.ls29_c01099{letter-spacing:-2.591827px;}
.ls19_c01099{letter-spacing:-2.397780px;}
.ls33_c01099{letter-spacing:-2.340261px;}
.ls2e_c01099{letter-spacing:-1.598894px;}
.ls13_c01099{letter-spacing:-1.148086px;}
.ls22_c01099{letter-spacing:-1.046430px;}
.ls7_c01099{letter-spacing:0.000000px;}
.ls1d_c01099{letter-spacing:0.060826px;}
.ls2_c01099{letter-spacing:0.147471px;}
.lsa_c01099{letter-spacing:0.192536px;}
.lse_c01099{letter-spacing:0.319335px;}
.ls30_c01099{letter-spacing:0.420632px;}
.ls23_c01099{letter-spacing:0.539829px;}
.ls1a_c01099{letter-spacing:0.912386px;}
.ls14_c01099{letter-spacing:1.066352px;}
.ls25_c01099{letter-spacing:1.072054px;}
.lsc_c01099{letter-spacing:1.269738px;}
.ls2d_c01099{letter-spacing:1.415700px;}
.ls0_c01099{letter-spacing:1.491534px;}
.ls18_c01099{letter-spacing:1.543806px;}
.ls12_c01099{letter-spacing:2.009700px;}
.ls4_c01099{letter-spacing:2.310429px;}
.ls3_c01099{letter-spacing:2.791768px;}
.ls15_c01099{letter-spacing:2.851200px;}
.ls5_c01099{letter-spacing:2.927240px;}
.ls28_c01099{letter-spacing:3.316500px;}
.ls6_c01099{letter-spacing:3.530261px;}
.ls17_c01099{letter-spacing:3.564000px;}
.lsf_c01099{letter-spacing:3.623400px;}
.ls27_c01099{letter-spacing:3.649546px;}
.ls9_c01099{letter-spacing:3.702610px;}
.ls24_c01099{letter-spacing:3.719549px;}
.ls8_c01099{letter-spacing:3.801610px;}
.ls1e_c01099{letter-spacing:3.940200px;}
.lsb_c01099{letter-spacing:3.960000px;}
.ls1f_c01099{letter-spacing:4.009500px;}
.lsd_c01099{letter-spacing:4.118400px;}
.ls1c_c01099{letter-spacing:4.197610px;}
.ls1_c01099{letter-spacing:19.468878px;}
.ls2f_c01099{letter-spacing:57.024198px;}
.ls10_c01099{letter-spacing:58.449798px;}
.ls21_c01099{letter-spacing:59.875398px;}
.ls16_c01099{letter-spacing:61.300998px;}
.ls20_c01099{letter-spacing:62.726400px;}
.ls31_c01099{letter-spacing:65.577798px;}
.ls2a_c01099{letter-spacing:67.003200px;}
.sc__c01099{text-shadow:none;}
.sc0_c01099{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01099{-webkit-text-stroke:0px transparent;}
.sc0_c01099{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01099{word-spacing:0.000000px;}
._2_c01099{margin-left:-11.701145px;}
._5_c01099{margin-left:-2.673000px;}
._3_c01099{width:19.853547px;}
._4_c01099{width:22.074076px;}
._1_c01099{width:44.876700px;}
._0_c01099{width:81.725094px;}
.fc0_c01099{color:transparent;}
.fs1_c01099{font-size:22.176000px;}
.fs1a_c01099{font-size:27.720000px;}
.fs1e_c01099{font-size:28.314000px;}
.fs18_c01099{font-size:29.898000px;}
.fsc_c01099{font-size:40.194000px;}
.fs6_c01099{font-size:43.758000px;}
.fs20_c01099{font-size:57.024198px;}
.fsb_c01099{font-size:58.449798px;}
.fs17_c01099{font-size:59.875398px;}
.fse_c01099{font-size:61.300998px;}
.fs16_c01099{font-size:62.726400px;}
.fs22_c01099{font-size:65.577798px;}
.fs19_c01099{font-size:66.330000px;}
.fs1b_c01099{font-size:67.003200px;}
.fsa_c01099{font-size:67.320000px;}
.fsd_c01099{font-size:68.112198px;}
.fs10_c01099{font-size:68.310000px;}
.fs11_c01099{font-size:68.508000px;}
.fs8_c01099{font-size:70.092198px;}
.fsf_c01099{font-size:71.280000px;}
.fs9_c01099{font-size:72.468000px;}
.fs14_c01099{font-size:73.260000px;}
.fs4_c01099{font-size:74.052198px;}
.fs3_c01099{font-size:76.032198px;}
.fs24_c01099{font-size:76.230000px;}
.fs1f_c01099{font-size:77.616198px;}
.fs15_c01099{font-size:78.804000px;}
.fs5_c01099{font-size:79.200000px;}
.fs2_c01099{font-size:80.190000px;}
.fs1d_c01099{font-size:81.378000px;}
.fs7_c01099{font-size:82.368000px;}
.fs13_c01099{font-size:83.952198px;}
.fs1c_c01099{font-size:87.912198px;}
.fs21_c01099{font-size:89.496198px;}
.fs0_c01099{font-size:90.288000px;}
.fs23_c01099{font-size:95.040000px;}
.fs12_c01099{font-size:104.544000px;}
.y0_c01099{bottom:0.000000px;}
.y1_c01099{bottom:76.500000px;}
.y1f_c01099{bottom:124.290585px;}
.y1e_c01099{bottom:153.876735px;}
.y1d_c01099{bottom:188.803935px;}
.y1c_c01099{bottom:221.236335px;}
.y1b_c01099{bottom:253.312335px;}
.y1a_c01099{bottom:286.101135px;}
.y19_c01099{bottom:318.533535px;}
.y18_c01099{bottom:342.763785px;}
.y17_c01099{bottom:350.248185px;}
.y16_c01099{bottom:382.680585px;}
.y15_c01099{bottom:413.330985px;}
.y14_c01099{bottom:445.768335px;}
.y13_c01099{bottom:477.126585px;}
.y12_c01099{bottom:509.202585px;}
.y11_c01099{bottom:522.037935px;}
.y10_c01099{bottom:541.283535px;}
.yf_c01099{bottom:605.786985px;}
.ye_c01099{bottom:637.511535px;}
.yd_c01099{bottom:701.663535px;}
.yc_c01099{bottom:734.452335px;}
.ya_c01099{bottom:766.166985px;}
.yb_c01099{bottom:771.161535px;}
.y9_c01099{bottom:798.599385px;}
.y8_c01099{bottom:830.680335px;}
.y7_c01099{bottom:862.043535px;}
.y6_c01099{bottom:894.475935px;}
.y5_c01099{bottom:925.121385px;}
.y4_c01099{bottom:926.190585px;}
.y3_c01099{bottom:992.485935px;}
.y2_c01099{bottom:1065.542985px;}
.h3_c01099{height:23.128875px;}
.h1a_c01099{height:28.911094px;}
.h18_c01099{height:29.343252px;}
.h1e_c01099{height:29.530617px;}
.h20_c01099{height:37.978116px;}
.hc_c01099{height:38.927565px;}
.h17_c01099{height:39.877015px;}
.he_c01099{height:40.826465px;}
.h16_c01099{height:41.775782px;}
.hd_c01099{height:41.921086px;}
.h22_c01099{height:43.674813px;}
.h1b_c01099{height:44.624131px;}
.h19_c01099{height:69.180117px;}
.hf_c01099{height:69.957422px;}
.hb_c01099{height:71.123379px;}
.h10_c01099{height:71.245195px;}
.h11_c01099{height:71.451703px;}
.h6_c01099{height:72.678183px;}
.ha_c01099{height:73.103972px;}
.h5_c01099{height:74.621444px;}
.h1f_c01099{height:76.176054px;}
.h14_c01099{height:76.407891px;}
.h15_c01099{height:77.341816px;}
.h7_c01099{height:77.730469px;}
.h4_c01099{height:78.702100px;}
.h8_c01099{height:78.898244px;}
.h9_c01099{height:80.839688px;}
.h13_c01099{height:82.394491px;}
.h1d_c01099{height:84.874711px;}
.h1c_c01099{height:86.281015px;}
.h21_c01099{height:87.835624px;}
.h2_c01099{height:88.612734px;}
.h23_c01099{height:93.276563px;}
.h12_c01099{height:102.604219px;}
.h1_c01099{height:1110.000000px;}
.h0_c01099{height:1263.000000px;}
.w1_c01099{width:775.500000px;}
.w0_c01099{width:892.500000px;}
.x0_c01099{left:0.000000px;}
.x1_c01099{left:58.500000px;}
.x44_c01099{left:90.071835px;}
.x39_c01099{left:91.700385px;}
.x4_c01099{left:93.121035px;}
.x6d_c01099{left:142.853685px;}
.x53_c01099{left:144.284235px;}
.xd_c01099{left:145.719735px;}
.x1c_c01099{left:146.986935px;}
.x3_c01099{left:153.154635px;}
.x5_c01099{left:168.648135px;}
.x2d_c01099{left:170.385585px;}
.x24_c01099{left:179.929185px;}
.xe_c01099{left:181.409235px;}
.x54_c01099{left:188.873835px;}
.x3f_c01099{left:191.195385px;}
.x59_c01099{left:200.669685px;}
.x6_c01099{left:202.897185px;}
.x40_c01099{left:211.594335px;}
.x1d_c01099{left:214.267335px;}
.x79_c01099{left:220.860735px;}
.x60_c01099{left:222.464535px;}
.x29_c01099{left:223.528785px;}
.x63_c01099{left:233.666385px;}
.x16_c01099{left:234.770235px;}
.x62_c01099{left:244.620735px;}
.x1e_c01099{left:246.764085px;}
.x25_c01099{left:248.075835px;}
.x6e_c01099{left:251.649735px;}
.x64_c01099{left:254.931585px;}
.x4e_c01099{left:256.589835px;}
.x17_c01099{left:257.767935px;}
.x2e_c01099{left:269.905335px;}
.x5a_c01099{left:278.255985px;}
.x74_c01099{left:289.027185px;}
.x36_c01099{left:290.739885px;}
.x1f_c01099{left:292.620885px;}
.x71_c01099{left:298.892535px;}
.x65_c01099{left:300.689385px;}
.x4f_c01099{left:301.981335px;}
.x49_c01099{left:311.475435px;}
.xf_c01099{left:314.415735px;}
.x20_c01099{left:324.815685px;}
.x3a_c01099{left:334.468185px;}
.x37_c01099{left:346.511535px;}
.x7_c01099{left:357.931185px;}
.x66_c01099{left:366.014535px;}
.x55_c01099{left:368.207385px;}
.x2f_c01099{left:369.727035px;}
.x7a_c01099{left:375.894735px;}
.x41_c01099{left:377.642085px;}
.x3b_c01099{left:379.201335px;}
.x21_c01099{left:380.711085px;}
.x45_c01099{left:389.660685px;}
.x18_c01099{left:391.106085px;}
.x67_c01099{left:394.952235px;}
.x4a_c01099{left:400.575435px;}
.x10_c01099{left:401.605035px;}
.x8_c01099{left:403.594935px;}
.x50_c01099{left:410.821935px;}
.x68_c01099{left:411.866385px;}
.x26_c01099{left:413.079135px;}
.x72_c01099{left:422.914785px;}
.x30_c01099{left:424.271085px;}
.x42_c01099{left:433.968135px;}
.x19_c01099{left:435.274935px;}
.x5b_c01099{left:444.739335px;}
.x38_c01099{left:446.224335px;}
.x56_c01099{left:456.490635px;}
.x9_c01099{left:457.985535px;}
.x75_c01099{left:464.588835px;}
.x1a_c01099{left:469.137885px;}
.x69_c01099{left:478.295385px;}
.x31_c01099{left:479.795235px;}
.x3c_c01099{left:488.888385px;}
.x22_c01099{left:489.908085px;}
.x73_c01099{left:498.981435px;}
.xa_c01099{left:501.570285px;}
.x11_c01099{left:503.268135px;}
.x4b_c01099{left:511.014885px;}
.x32_c01099{left:512.935485px;}
.x43_c01099{left:514.479885px;}
.x57_c01099{left:521.696985px;}
.x23_c01099{left:524.063085px;}
.x6a_c01099{left:531.983085px;}
.x27_c01099{left:545.387685px;}
.xb_c01099{left:547.179585px;}
.x5c_c01099{left:555.223335px;}
.x2a_c01099{left:559.114035px;}
.x3d_c01099{left:567.934935px;}
.x76_c01099{left:570.231735px;}
.x6b_c01099{left:576.592485px;}
.x12_c01099{left:578.874435px;}
.x58_c01099{left:588.873435px;}
.x33_c01099{left:590.002035px;}
.x61_c01099{left:598.684335px;}
.x51_c01099{left:600.278235px;}
.x46_c01099{left:601.456335px;}
.x77_c01099{left:609.430785px;}
.x3e_c01099{left:610.856385px;}
.x13_c01099{left:612.791835px;}
.x34_c01099{left:622.558185px;}
.x5d_c01099{left:632.324535px;}
.xc_c01099{left:637.571535px;}
.x6f_c01099{left:642.580935px;}
.x47_c01099{left:643.590735px;}
.x14_c01099{left:645.199485px;}
.x7b_c01099{left:653.119485px;}
.x2b_c01099{left:655.960785px;}
.x5e_c01099{left:665.336085px;}
.x1b_c01099{left:666.449835px;}
.x48_c01099{left:667.677435px;}
.x4c_c01099{left:678.334785px;}
.x28_c01099{left:679.646535px;}
.x78_c01099{left:686.061735px;}
.x35_c01099{left:688.323885px;}
.x15_c01099{left:689.541585px;}
.x6c_c01099{left:698.530785px;}
.x52_c01099{left:699.728685px;}
.x5f_c01099{left:700.817685px;}
.x2_c01099{left:707.881335px;}
.x4d_c01099{left:710.668185px;}
.x70_c01099{left:732.220485px;}
.x2c_c01099{left:736.041885px;}
@media print{
.v2_c01099{vertical-align:-45.619200pt;}
.v0_c01099{vertical-align:0.000000pt;}
.v1_c01099{vertical-align:3.801600pt;}
.ls1b_c01099{letter-spacing:-3.252480pt;}
.ls32_c01099{letter-spacing:-2.956800pt;}
.ls2b_c01099{letter-spacing:-2.735046pt;}
.ls2c_c01099{letter-spacing:-2.531760pt;}
.ls26_c01099{letter-spacing:-2.494800pt;}
.ls11_c01099{letter-spacing:-2.365446pt;}
.ls29_c01099{letter-spacing:-2.303846pt;}
.ls19_c01099{letter-spacing:-2.131360pt;}
.ls33_c01099{letter-spacing:-2.080232pt;}
.ls2e_c01099{letter-spacing:-1.421239pt;}
.ls13_c01099{letter-spacing:-1.020521pt;}
.ls22_c01099{letter-spacing:-0.930160pt;}
.ls7_c01099{letter-spacing:0.000000pt;}
.ls1d_c01099{letter-spacing:0.054067pt;}
.ls2_c01099{letter-spacing:0.131085pt;}
.lsa_c01099{letter-spacing:0.171143pt;}
.lse_c01099{letter-spacing:0.283854pt;}
.ls30_c01099{letter-spacing:0.373895pt;}
.ls23_c01099{letter-spacing:0.479848pt;}
.ls1a_c01099{letter-spacing:0.811010pt;}
.ls14_c01099{letter-spacing:0.947868pt;}
.ls25_c01099{letter-spacing:0.952937pt;}
.lsc_c01099{letter-spacing:1.128656pt;}
.ls2d_c01099{letter-spacing:1.258400pt;}
.ls0_c01099{letter-spacing:1.325808pt;}
.ls18_c01099{letter-spacing:1.372272pt;}
.ls12_c01099{letter-spacing:1.786400pt;}
.ls4_c01099{letter-spacing:2.053714pt;}
.ls3_c01099{letter-spacing:2.481571pt;}
.ls15_c01099{letter-spacing:2.534400pt;}
.ls5_c01099{letter-spacing:2.601991pt;}
.ls28_c01099{letter-spacing:2.948000pt;}
.ls6_c01099{letter-spacing:3.138010pt;}
.ls17_c01099{letter-spacing:3.168000pt;}
.lsf_c01099{letter-spacing:3.220800pt;}
.ls27_c01099{letter-spacing:3.244040pt;}
.ls9_c01099{letter-spacing:3.291209pt;}
.ls24_c01099{letter-spacing:3.306266pt;}
.ls8_c01099{letter-spacing:3.379209pt;}
.ls1e_c01099{letter-spacing:3.502400pt;}
.lsb_c01099{letter-spacing:3.520000pt;}
.ls1f_c01099{letter-spacing:3.564000pt;}
.lsd_c01099{letter-spacing:3.660800pt;}
.ls1c_c01099{letter-spacing:3.731209pt;}
.ls1_c01099{letter-spacing:17.305669pt;}
.ls2f_c01099{letter-spacing:50.688176pt;}
.ls10_c01099{letter-spacing:51.955376pt;}
.ls21_c01099{letter-spacing:53.222576pt;}
.ls16_c01099{letter-spacing:54.489776pt;}
.ls20_c01099{letter-spacing:55.756800pt;}
.ls31_c01099{letter-spacing:58.291376pt;}
.ls2a_c01099{letter-spacing:59.558400pt;}
.ws0_c01099{word-spacing:0.000000pt;}
._2_c01099{margin-left:-10.401018pt;}
._5_c01099{margin-left:-2.376000pt;}
._3_c01099{width:17.647598pt;}
._4_c01099{width:19.621401pt;}
._1_c01099{width:39.890400pt;}
._0_c01099{width:72.644528pt;}
.fs1_c01099{font-size:19.712000pt;}
.fs1a_c01099{font-size:24.640000pt;}
.fs1e_c01099{font-size:25.168000pt;}
.fs18_c01099{font-size:26.576000pt;}
.fsc_c01099{font-size:35.728000pt;}
.fs6_c01099{font-size:38.896000pt;}
.fs20_c01099{font-size:50.688176pt;}
.fsb_c01099{font-size:51.955376pt;}
.fs17_c01099{font-size:53.222576pt;}
.fse_c01099{font-size:54.489776pt;}
.fs16_c01099{font-size:55.756800pt;}
.fs22_c01099{font-size:58.291376pt;}
.fs19_c01099{font-size:58.960000pt;}
.fs1b_c01099{font-size:59.558400pt;}
.fsa_c01099{font-size:59.840000pt;}
.fsd_c01099{font-size:60.544176pt;}
.fs10_c01099{font-size:60.720000pt;}
.fs11_c01099{font-size:60.896000pt;}
.fs8_c01099{font-size:62.304176pt;}
.fsf_c01099{font-size:63.360000pt;}
.fs9_c01099{font-size:64.416000pt;}
.fs14_c01099{font-size:65.120000pt;}
.fs4_c01099{font-size:65.824176pt;}
.fs3_c01099{font-size:67.584176pt;}
.fs24_c01099{font-size:67.760000pt;}
.fs1f_c01099{font-size:68.992176pt;}
.fs15_c01099{font-size:70.048000pt;}
.fs5_c01099{font-size:70.400000pt;}
.fs2_c01099{font-size:71.280000pt;}
.fs1d_c01099{font-size:72.336000pt;}
.fs7_c01099{font-size:73.216000pt;}
.fs13_c01099{font-size:74.624176pt;}
.fs1c_c01099{font-size:78.144176pt;}
.fs21_c01099{font-size:79.552176pt;}
.fs0_c01099{font-size:80.256000pt;}
.fs23_c01099{font-size:84.480000pt;}
.fs12_c01099{font-size:92.928000pt;}
.y0_c01099{bottom:0.000000pt;}
.y1_c01099{bottom:68.000000pt;}
.y1f_c01099{bottom:110.480520pt;}
.y1e_c01099{bottom:136.779320pt;}
.y1d_c01099{bottom:167.825720pt;}
.y1c_c01099{bottom:196.654520pt;}
.y1b_c01099{bottom:225.166520pt;}
.y1a_c01099{bottom:254.312120pt;}
.y19_c01099{bottom:283.140920pt;}
.y18_c01099{bottom:304.678920pt;}
.y17_c01099{bottom:311.331720pt;}
.y16_c01099{bottom:340.160520pt;}
.y15_c01099{bottom:367.405320pt;}
.y14_c01099{bottom:396.238520pt;}
.y13_c01099{bottom:424.112520pt;}
.y12_c01099{bottom:452.624520pt;}
.y11_c01099{bottom:464.033720pt;}
.y10_c01099{bottom:481.140920pt;}
.yf_c01099{bottom:538.477320pt;}
.ye_c01099{bottom:566.676920pt;}
.yd_c01099{bottom:623.700920pt;}
.yc_c01099{bottom:652.846520pt;}
.ya_c01099{bottom:681.037320pt;}
.yb_c01099{bottom:685.476920pt;}
.y9_c01099{bottom:709.866120pt;}
.y8_c01099{bottom:738.382520pt;}
.y7_c01099{bottom:766.260920pt;}
.y6_c01099{bottom:795.089720pt;}
.y5_c01099{bottom:822.330120pt;}
.y4_c01099{bottom:823.280520pt;}
.y3_c01099{bottom:882.209720pt;}
.y2_c01099{bottom:947.149320pt;}
.h3_c01099{height:20.559000pt;}
.h1a_c01099{height:25.698750pt;}
.h18_c01099{height:26.082891pt;}
.h1e_c01099{height:26.249438pt;}
.h20_c01099{height:33.758325pt;}
.hc_c01099{height:34.602280pt;}
.h17_c01099{height:35.446236pt;}
.he_c01099{height:36.290191pt;}
.h16_c01099{height:37.134029pt;}
.hd_c01099{height:37.263188pt;}
.h22_c01099{height:38.822056pt;}
.h1b_c01099{height:39.665894pt;}
.h19_c01099{height:61.493438pt;}
.hf_c01099{height:62.184375pt;}
.hb_c01099{height:63.220781pt;}
.h10_c01099{height:63.329063pt;}
.h11_c01099{height:63.512625pt;}
.h6_c01099{height:64.602829pt;}
.ha_c01099{height:64.981309pt;}
.h5_c01099{height:66.330173pt;}
.h1f_c01099{height:67.712048pt;}
.h14_c01099{height:67.918125pt;}
.h15_c01099{height:68.748281pt;}
.h7_c01099{height:69.093750pt;}
.h4_c01099{height:69.957422pt;}
.h8_c01099{height:70.131773pt;}
.h9_c01099{height:71.857500pt;}
.h13_c01099{height:73.239548pt;}
.h1d_c01099{height:75.444188pt;}
.h1c_c01099{height:76.694235pt;}
.h21_c01099{height:78.076110pt;}
.h2_c01099{height:78.766875pt;}
.h23_c01099{height:82.912500pt;}
.h12_c01099{height:91.203750pt;}
.h1_c01099{height:986.666667pt;}
.h0_c01099{height:1122.666667pt;}
.w1_c01099{width:689.333333pt;}
.w0_c01099{width:793.333333pt;}
.x0_c01099{left:0.000000pt;}
.x1_c01099{left:52.000000pt;}
.x44_c01099{left:80.063853pt;}
.x39_c01099{left:81.511453pt;}
.x4_c01099{left:82.774253pt;}
.x6d_c01099{left:126.981053pt;}
.x53_c01099{left:128.252653pt;}
.xd_c01099{left:129.528653pt;}
.x1c_c01099{left:130.655053pt;}
.x3_c01099{left:136.137453pt;}
.x5_c01099{left:149.909453pt;}
.x2d_c01099{left:151.453853pt;}
.x24_c01099{left:159.937053pt;}
.xe_c01099{left:161.252653pt;}
.x54_c01099{left:167.887853pt;}
.x3f_c01099{left:169.951453pt;}
.x59_c01099{left:178.373053pt;}
.x6_c01099{left:180.353053pt;}
.x40_c01099{left:188.083853pt;}
.x1d_c01099{left:190.459853pt;}
.x79_c01099{left:196.320653pt;}
.x60_c01099{left:197.746253pt;}
.x29_c01099{left:198.692253pt;}
.x63_c01099{left:207.703453pt;}
.x16_c01099{left:208.684653pt;}
.x62_c01099{left:217.440653pt;}
.x1e_c01099{left:219.345853pt;}
.x25_c01099{left:220.511853pt;}
.x6e_c01099{left:223.688653pt;}
.x64_c01099{left:226.605853pt;}
.x4e_c01099{left:228.079853pt;}
.x17_c01099{left:229.127053pt;}
.x2e_c01099{left:239.915853pt;}
.x5a_c01099{left:247.338653pt;}
.x74_c01099{left:256.913053pt;}
.x36_c01099{left:258.435453pt;}
.x1f_c01099{left:260.107453pt;}
.x71_c01099{left:265.682253pt;}
.x65_c01099{left:267.279453pt;}
.x4f_c01099{left:268.427853pt;}
.x49_c01099{left:276.867053pt;}
.xf_c01099{left:279.480653pt;}
.x20_c01099{left:288.725053pt;}
.x3a_c01099{left:297.305053pt;}
.x37_c01099{left:308.010253pt;}
.x7_c01099{left:318.161053pt;}
.x66_c01099{left:325.346253pt;}
.x55_c01099{left:327.295453pt;}
.x2f_c01099{left:328.646253pt;}
.x7a_c01099{left:334.128653pt;}
.x41_c01099{left:335.681853pt;}
.x3b_c01099{left:337.067853pt;}
.x21_c01099{left:338.409853pt;}
.x45_c01099{left:346.365053pt;}
.x18_c01099{left:347.649853pt;}
.x67_c01099{left:351.068653pt;}
.x4a_c01099{left:356.067053pt;}
.x10_c01099{left:356.982253pt;}
.x8_c01099{left:358.751053pt;}
.x50_c01099{left:365.175053pt;}
.x68_c01099{left:366.103453pt;}
.x26_c01099{left:367.181453pt;}
.x72_c01099{left:375.924253pt;}
.x30_c01099{left:377.129853pt;}
.x42_c01099{left:385.749453pt;}
.x19_c01099{left:386.911053pt;}
.x5b_c01099{left:395.323853pt;}
.x38_c01099{left:396.643853pt;}
.x56_c01099{left:405.769453pt;}
.x9_c01099{left:407.098253pt;}
.x75_c01099{left:412.967853pt;}
.x1a_c01099{left:417.011453pt;}
.x69_c01099{left:425.151453pt;}
.x31_c01099{left:426.484653pt;}
.x3c_c01099{left:434.567453pt;}
.x22_c01099{left:435.473853pt;}
.x73_c01099{left:443.539053pt;}
.xa_c01099{left:445.840253pt;}
.x11_c01099{left:447.349453pt;}
.x4b_c01099{left:454.235453pt;}
.x32_c01099{left:455.942653pt;}
.x43_c01099{left:457.315453pt;}
.x57_c01099{left:463.730653pt;}
.x23_c01099{left:465.833853pt;}
.x6a_c01099{left:472.873853pt;}
.x27_c01099{left:484.789053pt;}
.xb_c01099{left:486.381853pt;}
.x5c_c01099{left:493.531853pt;}
.x2a_c01099{left:496.990253pt;}
.x3d_c01099{left:504.831053pt;}
.x76_c01099{left:506.872653pt;}
.x6b_c01099{left:512.526653pt;}
.x12_c01099{left:514.555053pt;}
.x58_c01099{left:523.443053pt;}
.x33_c01099{left:524.446253pt;}
.x61_c01099{left:532.163853pt;}
.x51_c01099{left:533.580653pt;}
.x46_c01099{left:534.627853pt;}
.x77_c01099{left:541.716253pt;}
.x3e_c01099{left:542.983453pt;}
.x13_c01099{left:544.703853pt;}
.x34_c01099{left:553.385053pt;}
.x5d_c01099{left:562.066253pt;}
.xc_c01099{left:566.730253pt;}
.x6f_c01099{left:571.183053pt;}
.x47_c01099{left:572.080653pt;}
.x14_c01099{left:573.510653pt;}
.x7b_c01099{left:580.550653pt;}
.x2b_c01099{left:583.076253pt;}
.x5e_c01099{left:591.409853pt;}
.x1b_c01099{left:592.399853pt;}
.x48_c01099{left:593.491053pt;}
.x4c_c01099{left:602.964253pt;}
.x28_c01099{left:604.130253pt;}
.x78_c01099{left:609.832653pt;}
.x35_c01099{left:611.843453pt;}
.x15_c01099{left:612.925853pt;}
.x6c_c01099{left:620.916253pt;}
.x52_c01099{left:621.981053pt;}
.x5f_c01099{left:622.949053pt;}
.x2_c01099{left:629.227853pt;}
.x4d_c01099{left:631.705053pt;}
.x70_c01099{left:650.862653pt;}
.x2c_c01099{left:654.259453pt;}
}





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

.ir_c01100:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01100{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01100;src:url('chunks/assets/font_cba6816a89af11c724314c63.woff2')format("woff");}.ff1_c01100{font-family:ff1_c01100;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01100;src:url('chunks/assets/font_246b06a3015eeaaf87d6f4cc.woff2')format("woff");}.ff2_c01100{font-family:ff2_c01100;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01100;src:url('chunks/assets/font_6c9dc186d080a93561ec196a.woff2')format("woff");}.ff3_c01100{font-family:ff3_c01100;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01100;src:url('chunks/assets/font_1667780d984521cbf3dfef3b.woff2')format("woff");}.ff4_c01100{font-family:ff4_c01100;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01100;src:url('chunks/assets/font_e5edde406e9a71c8e26041d5.woff2')format("woff");}.ff5_c01100{font-family:ff5_c01100;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01100;src:url('chunks/assets/font_56e5b822edfe8f46bc67fcb5.woff2')format("woff");}.ff6_c01100{font-family:ff6_c01100;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m17_c01100{transform:matrix(0.015958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015958,0.000000,0.000000,0.250000,0,0);}
.m7_c01100{transform:matrix(0.066933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066933,0.000000,0.000000,0.250000,0,0);}
.m2_c01100{transform:matrix(0.081773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081773,0.000000,0.000000,0.250000,0,0);}
.m18_c01100{transform:matrix(0.091814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091814,0.000000,0.000000,0.250000,0,0);}
.m16_c01100{transform:matrix(0.094225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094225,0.000000,0.000000,0.250000,0,0);}
.m19_c01100{transform:matrix(0.096122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096122,0.000000,0.000000,0.250000,0,0);}
.m1a_c01100{transform:matrix(0.107448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107448,0.000000,0.000000,0.250000,0,0);}
.m5f_c01100{transform:matrix(0.112681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112681,0.000000,0.000000,0.250000,0,0);}
.mb6_c01100{transform:matrix(0.113638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113638,0.000000,0.000000,0.250000,0,0);}
.m75_c01100{transform:matrix(0.140244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140244,0.000000,0.000000,0.250000,0,0);}
.m4b_c01100{transform:matrix(0.148424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148424,0.000000,0.000000,0.250000,0,0);}
.m4f_c01100{transform:matrix(0.160569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160569,0.000000,0.000000,0.250000,0,0);}
.m5e_c01100{transform:matrix(0.163900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163900,0.000000,0.000000,0.250000,0,0);}
.m49_c01100{transform:matrix(0.168657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168657,0.000000,0.000000,0.250000,0,0);}
.m60_c01100{transform:matrix(0.174971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174971,0.000000,0.000000,0.250000,0,0);}
.m50_c01100{transform:matrix(0.176830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176830,0.000000,0.000000,0.250000,0,0);}
.m57_c01100{transform:matrix(0.195188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195188,0.000000,0.000000,0.250000,0,0);}
.m66_c01100{transform:matrix(0.197656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197656,0.000000,0.000000,0.250000,0,0);}
.mb_c01100{transform:matrix(0.213862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213862,0.000000,0.000000,0.250000,0,0);}
.m7d_c01100{transform:matrix(0.224587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224587,0.000000,0.000000,0.250000,0,0);}
.m4c_c01100{transform:matrix(0.230361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230361,0.000000,0.000000,0.250000,0,0);}
.m1b_c01100{transform:matrix(0.235372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235372,0.000000,0.000000,0.250000,0,0);}
.m83_c01100{transform:matrix(0.241822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241822,0.000000,0.000000,0.250000,0,0);}
.m0_c01100{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01100{transform:matrix(0.252574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252574,0.000000,0.000000,0.250000,0,0);}
.m9c_c01100{transform:matrix(0.254119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254119,0.000000,0.000000,0.250000,0,0);}
.m36_c01100{transform:matrix(0.255937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255937,0.000000,0.000000,0.250000,0,0);}
.mae_c01100{transform:matrix(0.256920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256920,0.000000,0.000000,0.250000,0,0);}
.m77_c01100{transform:matrix(0.258821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258821,0.000000,0.000000,0.250000,0,0);}
.ma_c01100{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m37_c01100{transform:matrix(0.259298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259298,0.000000,0.000000,0.250000,0,0);}
.m98_c01100{transform:matrix(0.260294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260294,0.000000,0.000000,0.250000,0,0);}
.m26_c01100{transform:matrix(0.260440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260440,0.000000,0.000000,0.250000,0,0);}
.m8d_c01100{transform:matrix(0.261287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261287,0.000000,0.000000,0.250000,0,0);}
.m73_c01100{transform:matrix(0.262841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262841,0.000000,0.000000,0.250000,0,0);}
.m5c_c01100{transform:matrix(0.262974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262974,0.000000,0.000000,0.250000,0,0);}
.mab_c01100{transform:matrix(0.263994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263994,0.000000,0.000000,0.250000,0,0);}
.m4a_c01100{transform:matrix(0.265006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265006,0.000000,0.000000,0.250000,0,0);}
.m53_c01100{transform:matrix(0.265605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265605,0.000000,0.000000,0.250000,0,0);}
.m9_c01100{transform:matrix(0.266230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266230,0.000000,0.000000,0.250000,0,0);}
.m2a_c01100{transform:matrix(0.267966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267966,0.000000,0.000000,0.250000,0,0);}
.m1f_c01100{transform:matrix(0.270497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270497,0.000000,0.000000,0.250000,0,0);}
.m97_c01100{transform:matrix(0.272033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272033,0.000000,0.000000,0.250000,0,0);}
.mb0_c01100{transform:matrix(0.272141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272141,0.000000,0.000000,0.250000,0,0);}
.ma4_c01100{transform:matrix(0.272798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272798,0.000000,0.000000,0.250000,0,0);}
.m6c_c01100{transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);}
.m55_c01100{transform:matrix(0.273737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273737,0.000000,0.000000,0.250000,0,0);}
.m48_c01100{transform:matrix(0.274742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274742,0.000000,0.000000,0.250000,0,0);}
.m6a_c01100{transform:matrix(0.275114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275114,0.000000,0.000000,0.250000,0,0);}
.m5d_c01100{transform:matrix(0.275752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275752,0.000000,0.000000,0.250000,0,0);}
.mac_c01100{transform:matrix(0.276158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276158,0.000000,0.000000,0.250000,0,0);}
.m52_c01100{transform:matrix(0.276425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276425,0.000000,0.000000,0.250000,0,0);}
.m21_c01100{transform:matrix(0.276747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276747,0.000000,0.000000,0.250000,0,0);}
.maa_c01100{transform:matrix(0.277422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277422,0.000000,0.000000,0.250000,0,0);}
.m23_c01100{transform:matrix(0.277679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277679,0.000000,0.000000,0.250000,0,0);}
.mf_c01100{transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);}
.m51_c01100{transform:matrix(0.277948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277948,0.000000,0.000000,0.250000,0,0);}
.m2b_c01100{transform:matrix(0.278154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278154,0.000000,0.000000,0.250000,0,0);}
.m59_c01100{transform:matrix(0.278239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278239,0.000000,0.000000,0.250000,0,0);}
.m1_c01100{transform:matrix(0.278644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278644,0.000000,0.000000,0.250000,0,0);}
.mb3_c01100{transform:matrix(0.279435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279435,0.000000,0.000000,0.250000,0,0);}
.m6f_c01100{transform:matrix(0.279810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279810,0.000000,0.000000,0.250000,0,0);}
.m91_c01100{transform:matrix(0.279941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279941,0.000000,0.000000,0.250000,0,0);}
.m35_c01100{transform:matrix(0.280392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280392,0.000000,0.000000,0.250000,0,0);}
.ma1_c01100{transform:matrix(0.280400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280400,0.000000,0.000000,0.250000,0,0);}
.m9e_c01100{transform:matrix(0.282334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282334,0.000000,0.000000,0.250000,0,0);}
.m10_c01100{transform:matrix(0.282742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282742,0.000000,0.000000,0.250000,0,0);}
.m2f_c01100{transform:matrix(0.283033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283033,0.000000,0.000000,0.250000,0,0);}
.m69_c01100{transform:matrix(0.283869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283869,0.000000,0.000000,0.250000,0,0);}
.m96_c01100{transform:matrix(0.284506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284506,0.000000,0.000000,0.250000,0,0);}
.m76_c01100{transform:matrix(0.284574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284574,0.000000,0.000000,0.250000,0,0);}
.m6_c01100{transform:matrix(0.284620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284620,0.000000,0.000000,0.250000,0,0);}
.mb1_c01100{transform:matrix(0.284767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284767,0.000000,0.000000,0.250000,0,0);}
.m3_c01100{transform:matrix(0.285652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285652,0.000000,0.000000,0.250000,0,0);}
.m39_c01100{transform:matrix(0.286153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286153,0.000000,0.000000,0.250000,0,0);}
.m46_c01100{transform:matrix(0.287464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287464,0.000000,0.000000,0.250000,0,0);}
.m25_c01100{transform:matrix(0.288109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288109,0.000000,0.000000,0.250000,0,0);}
.m86_c01100{transform:matrix(0.288179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288179,0.000000,0.000000,0.250000,0,0);}
.m90_c01100{transform:matrix(0.289556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289556,0.000000,0.000000,0.250000,0,0);}
.m1c_c01100{transform:matrix(0.289559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289559,0.000000,0.000000,0.250000,0,0);}
.m7a_c01100{transform:matrix(0.289635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289635,0.000000,0.000000,0.250000,0,0);}
.me_c01100{transform:matrix(0.291525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291525,0.000000,0.000000,0.250000,0,0);}
.ma7_c01100{transform:matrix(0.292471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292471,0.000000,0.000000,0.250000,0,0);}
.m85_c01100{transform:matrix(0.292641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292641,0.000000,0.000000,0.250000,0,0);}
.ma6_c01100{transform:matrix(0.293309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293309,0.000000,0.000000,0.250000,0,0);}
.m56_c01100{transform:matrix(0.293967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293967,0.000000,0.000000,0.250000,0,0);}
.m8_c01100{transform:matrix(0.294275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294275,0.000000,0.000000,0.250000,0,0);}
.m41_c01100{transform:matrix(0.294582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294582,0.000000,0.000000,0.250000,0,0);}
.m2c_c01100{transform:matrix(0.295119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295119,0.000000,0.000000,0.250000,0,0);}
.m7c_c01100{transform:matrix(0.295641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295641,0.000000,0.000000,0.250000,0,0);}
.m11_c01100{transform:matrix(0.295749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295749,0.000000,0.000000,0.250000,0,0);}
.m9d_c01100{transform:matrix(0.295953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295953,0.000000,0.000000,0.250000,0,0);}
.m8e_c01100{transform:matrix(0.299086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299086,0.000000,0.000000,0.250000,0,0);}
.ma5_c01100{transform:matrix(0.299888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299888,0.000000,0.000000,0.250000,0,0);}
.m78_c01100{transform:matrix(0.301869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301869,0.000000,0.000000,0.250000,0,0);}
.m3a_c01100{transform:matrix(0.302692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302692,0.000000,0.000000,0.250000,0,0);}
.m33_c01100{transform:matrix(0.302961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302961,0.000000,0.000000,0.250000,0,0);}
.m40_c01100{transform:matrix(0.303119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303119,0.000000,0.000000,0.250000,0,0);}
.m3c_c01100{transform:matrix(0.303363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303363,0.000000,0.000000,0.250000,0,0);}
.m38_c01100{transform:matrix(0.303504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303504,0.000000,0.000000,0.250000,0,0);}
.m2e_c01100{transform:matrix(0.304073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304073,0.000000,0.000000,0.250000,0,0);}
.m27_c01100{transform:matrix(0.304512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304512,0.000000,0.000000,0.250000,0,0);}
.ma0_c01100{transform:matrix(0.304785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304785,0.000000,0.000000,0.250000,0,0);}
.m68_c01100{transform:matrix(0.305542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305542,0.000000,0.000000,0.250000,0,0);}
.mb4_c01100{transform:matrix(0.305811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305811,0.000000,0.000000,0.250000,0,0);}
.m3e_c01100{transform:matrix(0.306365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306365,0.000000,0.000000,0.250000,0,0);}
.m80_c01100{transform:matrix(0.306436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306436,0.000000,0.000000,0.250000,0,0);}
.m58_c01100{transform:matrix(0.307864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307864,0.000000,0.000000,0.250000,0,0);}
.m1e_c01100{transform:matrix(0.308267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308267,0.000000,0.000000,0.250000,0,0);}
.m54_c01100{transform:matrix(0.309113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309113,0.000000,0.000000,0.250000,0,0);}
.m31_c01100{transform:matrix(0.309421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309421,0.000000,0.000000,0.250000,0,0);}
.m8a_c01100{transform:matrix(0.309676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309676,0.000000,0.000000,0.250000,0,0);}
.m3d_c01100{transform:matrix(0.310283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310283,0.000000,0.000000,0.250000,0,0);}
.m44_c01100{transform:matrix(0.311181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311181,0.000000,0.000000,0.250000,0,0);}
.m9a_c01100{transform:matrix(0.311527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311527,0.000000,0.000000,0.250000,0,0);}
.md_c01100{transform:matrix(0.313936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313936,0.000000,0.000000,0.250000,0,0);}
.m87_c01100{transform:matrix(0.314221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314221,0.000000,0.000000,0.250000,0,0);}
.m28_c01100{transform:matrix(0.314266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314266,0.000000,0.000000,0.250000,0,0);}
.m81_c01100{transform:matrix(0.314536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314536,0.000000,0.000000,0.250000,0,0);}
.m9f_c01100{transform:matrix(0.315642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315642,0.000000,0.000000,0.250000,0,0);}
.ma9_c01100{transform:matrix(0.316188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316188,0.000000,0.000000,0.250000,0,0);}
.m12_c01100{transform:matrix(0.316292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316292,0.000000,0.000000,0.250000,0,0);}
.m15_c01100{transform:matrix(0.318042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318042,0.000000,0.000000,0.250000,0,0);}
.m8c_c01100{transform:matrix(0.318997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318997,0.000000,0.000000,0.250000,0,0);}
.m3b_c01100{transform:matrix(0.322403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322403,0.000000,0.000000,0.250000,0,0);}
.m45_c01100{transform:matrix(0.322419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322419,0.000000,0.000000,0.250000,0,0);}
.m4_c01100{transform:matrix(0.322523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322523,0.000000,0.000000,0.250000,0,0);}
.m6d_c01100{transform:matrix(0.323493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323493,0.000000,0.000000,0.250000,0,0);}
.m99_c01100{transform:matrix(0.323806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323806,0.000000,0.000000,0.250000,0,0);}
.m8f_c01100{transform:matrix(0.324483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324483,0.000000,0.000000,0.250000,0,0);}
.m94_c01100{transform:matrix(0.324896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324896,0.000000,0.000000,0.250000,0,0);}
.m42_c01100{transform:matrix(0.325170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325170,0.000000,0.000000,0.250000,0,0);}
.m5a_c01100{transform:matrix(0.325254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325254,0.000000,0.000000,0.250000,0,0);}
.m7e_c01100{transform:matrix(0.325669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325669,0.000000,0.000000,0.250000,0,0);}
.m34_c01100{transform:matrix(0.328489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328489,0.000000,0.000000,0.250000,0,0);}
.mb2_c01100{transform:matrix(0.328794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328794,0.000000,0.000000,0.250000,0,0);}
.m84_c01100{transform:matrix(0.329729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329729,0.000000,0.000000,0.250000,0,0);}
.m9b_c01100{transform:matrix(0.330897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330897,0.000000,0.000000,0.250000,0,0);}
.m14_c01100{transform:matrix(0.333392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333392,0.000000,0.000000,0.250000,0,0);}
.maf_c01100{transform:matrix(0.333601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333601,0.000000,0.000000,0.250000,0,0);}
.m13_c01100{transform:matrix(0.333753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333753,0.000000,0.000000,0.250000,0,0);}
.m89_c01100{transform:matrix(0.335962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335962,0.000000,0.000000,0.250000,0,0);}
.m2d_c01100{transform:matrix(0.336219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336219,0.000000,0.000000,0.250000,0,0);}
.m7f_c01100{transform:matrix(0.336310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336310,0.000000,0.000000,0.250000,0,0);}
.m32_c01100{transform:matrix(0.337671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337671,0.000000,0.000000,0.250000,0,0);}
.m24_c01100{transform:matrix(0.339063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339063,0.000000,0.000000,0.250000,0,0);}
.m79_c01100{transform:matrix(0.340504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340504,0.000000,0.000000,0.250000,0,0);}
.mad_c01100{transform:matrix(0.341746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341746,0.000000,0.000000,0.250000,0,0);}
.m43_c01100{transform:matrix(0.345543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345543,0.000000,0.000000,0.250000,0,0);}
.m5_c01100{transform:matrix(0.345576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345576,0.000000,0.000000,0.250000,0,0);}
.m8b_c01100{transform:matrix(0.346234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346234,0.000000,0.000000,0.250000,0,0);}
.m6b_c01100{transform:matrix(0.348169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348169,0.000000,0.000000,0.250000,0,0);}
.m95_c01100{transform:matrix(0.349236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349236,0.000000,0.000000,0.250000,0,0);}
.mb5_c01100{transform:matrix(0.351741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351741,0.000000,0.000000,0.250000,0,0);}
.ma2_c01100{transform:matrix(0.356277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356277,0.000000,0.000000,0.250000,0,0);}
.m5b_c01100{transform:matrix(0.358064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358064,0.000000,0.000000,0.250000,0,0);}
.ma3_c01100{transform:matrix(0.358369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358369,0.000000,0.000000,0.250000,0,0);}
.m3f_c01100{transform:matrix(0.359620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359620,0.000000,0.000000,0.250000,0,0);}
.m88_c01100{transform:matrix(0.361535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361535,0.000000,0.000000,0.250000,0,0);}
.m93_c01100{transform:matrix(0.364102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364102,0.000000,0.000000,0.250000,0,0);}
.m22_c01100{transform:matrix(0.366021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366021,0.000000,0.000000,0.250000,0,0);}
.ma8_c01100{transform:matrix(0.368559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368559,0.000000,0.000000,0.250000,0,0);}
.m20_c01100{transform:matrix(0.379862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379862,0.000000,0.000000,0.250000,0,0);}
.m29_c01100{transform:matrix(0.381582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381582,0.000000,0.000000,0.250000,0,0);}
.m64_c01100{transform:matrix(0.386544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386544,0.000000,0.000000,0.250000,0,0);}
.m30_c01100{transform:matrix(0.396432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396432,0.000000,0.000000,0.250000,0,0);}
.mc_c01100{transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);}
.m92_c01100{transform:matrix(0.402725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402725,0.000000,0.000000,0.250000,0,0);}
.m7b_c01100{transform:matrix(0.409017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409017,0.000000,0.000000,0.250000,0,0);}
.m47_c01100{transform:matrix(0.409684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409684,0.000000,0.000000,0.250000,0,0);}
.m74_c01100{transform:matrix(0.419795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419795,0.000000,0.000000,0.250000,0,0);}
.m70_c01100{transform:matrix(0.429862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429862,0.000000,0.000000,0.250000,0,0);}
.m1d_c01100{transform:matrix(0.449640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449640,0.000000,0.000000,0.250000,0,0);}
.m62_c01100{transform:matrix(0.474540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474540,0.000000,0.000000,0.250000,0,0);}
.m61_c01100{transform:matrix(0.477787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477787,0.000000,0.000000,0.250000,0,0);}
.m63_c01100{transform:matrix(0.492962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492962,0.000000,0.000000,0.250000,0,0);}
.m72_c01100{transform:matrix(0.521596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521596,0.000000,0.000000,0.250000,0,0);}
.m6e_c01100{transform:matrix(0.531041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531041,0.000000,0.000000,0.250000,0,0);}
.m65_c01100{transform:matrix(0.848305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.848305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.848305,0.000000,0.000000,0.250000,0,0);}
.m71_c01100{transform:matrix(0.935708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.935708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.935708,0.000000,0.000000,0.250000,0,0);}
.m4d_c01100{transform:matrix(1.043025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.043025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.043025,0.000000,0.000000,0.250000,0,0);}
.m67_c01100{transform:matrix(1.625370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.625370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.625370,0.000000,0.000000,0.250000,0,0);}
.m4e_c01100{transform:matrix(1.732833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.732833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.732833,0.000000,0.000000,0.250000,0,0);}
.v0_c01100{vertical-align:0.000000px;}
.v1_c01100{vertical-align:4.296600px;}
.ls18_c01100{letter-spacing:-3.991680px;}
.lsd_c01100{letter-spacing:-2.993767px;}
.ls1a_c01100{letter-spacing:-2.882880px;}
.lsa_c01100{letter-spacing:-2.785867px;}
.ls5_c01100{letter-spacing:-2.765077px;}
.ls28_c01100{letter-spacing:-2.661127px;}
.ls8_c01100{letter-spacing:-2.647267px;}
.ls11_c01100{letter-spacing:-2.626477px;}
.ls2a_c01100{letter-spacing:-2.198736px;}
.ls1f_c01100{letter-spacing:-1.884967px;}
.ls13_c01100{letter-spacing:-1.330567px;}
.ls3_c01100{letter-spacing:0.000000px;}
.ls20_c01100{letter-spacing:0.237610px;}
.ls14_c01100{letter-spacing:0.297000px;}
.ls1e_c01100{letter-spacing:0.435610px;}
.ls24_c01100{letter-spacing:0.732610px;}
.ls1c_c01100{letter-spacing:0.772210px;}
.ls0_c01100{letter-spacing:0.772398px;}
.ls23_c01100{letter-spacing:0.792000px;}
.ls1b_c01100{letter-spacing:0.801900px;}
.ls25_c01100{letter-spacing:0.821700px;}
.ls2c_c01100{letter-spacing:0.831600px;}
.ls12_c01100{letter-spacing:0.871200px;}
.ls21_c01100{letter-spacing:0.994039px;}
.ls1d_c01100{letter-spacing:1.019700px;}
.ls2b_c01100{letter-spacing:1.203682px;}
.ls2_c01100{letter-spacing:1.500844px;}
.lsb_c01100{letter-spacing:1.959332px;}
.ls15_c01100{letter-spacing:3.179979px;}
.ls1_c01100{letter-spacing:3.295017px;}
.ls19_c01100{letter-spacing:3.316500px;}
.ls29_c01100{letter-spacing:3.425400px;}
.ls26_c01100{letter-spacing:3.564000px;}
.lse_c01100{letter-spacing:3.613500px;}
.ls22_c01100{letter-spacing:3.617034px;}
.ls10_c01100{letter-spacing:3.682810px;}
.ls7_c01100{letter-spacing:3.752110px;}
.ls6_c01100{letter-spacing:3.781810px;}
.ls17_c01100{letter-spacing:3.920400px;}
.ls4_c01100{letter-spacing:3.950110px;}
.lsf_c01100{letter-spacing:3.960000px;}
.ls27_c01100{letter-spacing:4.039200px;}
.ls9_c01100{letter-spacing:4.108500px;}
.ls2d_c01100{letter-spacing:31.363200px;}
.ls16_c01100{letter-spacing:58.449798px;}
.lsc_c01100{letter-spacing:67.003200px;}
.sc__c01100{text-shadow:none;}
.sc0_c01100{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01100{-webkit-text-stroke:0px transparent;}
.sc0_c01100{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01100{word-spacing:-20.476423px;}
.ws1_c01100{word-spacing:-20.261393px;}
.ws2_c01100{word-spacing:-18.909050px;}
.ws3_c01100{word-spacing:0.000000px;}
._1_c01100{margin-left:-17.320725px;}
._12_c01100{margin-left:-8.949600px;}
._3_c01100{margin-left:-2.725382px;}
._4_c01100{margin-left:-1.603800px;}
._11_c01100{width:1.285328px;}
._9_c01100{width:2.613531px;}
._b_c01100{width:3.901438px;}
._8_c01100{width:7.390839px;}
._14_c01100{width:13.544784px;}
._0_c01100{width:15.278615px;}
._a_c01100{width:21.522481px;}
._f_c01100{width:28.650451px;}
._5_c01100{width:30.780882px;}
._2_c01100{width:36.307915px;}
._10_c01100{width:54.100728px;}
._7_c01100{width:70.823637px;}
._6_c01100{width:83.842539px;}
._d_c01100{width:120.455830px;}
._13_c01100{width:233.244000px;}
._e_c01100{width:293.813636px;}
._c_c01100{width:336.619800px;}
.fc0_c01100{color:transparent;}
.fs1f_c01100{font-size:3.564000px;}
.fs24_c01100{font-size:3.960000px;}
.fs1d_c01100{font-size:4.752198px;}
.fs10_c01100{font-size:5.940000px;}
.fs1b_c01100{font-size:8.712198px;}
.fs20_c01100{font-size:14.652198px;}
.fs18_c01100{font-size:15.444198px;}
.fs22_c01100{font-size:15.642198px;}
.fs21_c01100{font-size:15.840000px;}
.fs17_c01100{font-size:16.038000px;}
.fs23_c01100{font-size:16.434000px;}
.fs29_c01100{font-size:16.632000px;}
.fse_c01100{font-size:17.424000px;}
.fs1a_c01100{font-size:20.394000px;}
.fs2b_c01100{font-size:22.374000px;}
.fs2a_c01100{font-size:26.928000px;}
.fsd_c01100{font-size:27.324000px;}
.fs0_c01100{font-size:27.720000px;}
.fs2c_c01100{font-size:31.363200px;}
.fs19_c01100{font-size:32.076198px;}
.fsf_c01100{font-size:38.016198px;}
.fs2e_c01100{font-size:44.352000px;}
.fs2d_c01100{font-size:45.144000px;}
.fs1c_c01100{font-size:53.856198px;}
.fs11_c01100{font-size:58.449798px;}
.fs1e_c01100{font-size:64.548000px;}
.fs15_c01100{font-size:66.330000px;}
.fs7_c01100{font-size:67.003200px;}
.fs28_c01100{font-size:68.508000px;}
.fs25_c01100{font-size:71.280000px;}
.fs9_c01100{font-size:72.270000px;}
.fsb_c01100{font-size:73.656198px;}
.fs3_c01100{font-size:75.042198px;}
.fs2_c01100{font-size:75.636198px;}
.fs27_c01100{font-size:76.032198px;}
.fs12_c01100{font-size:78.408000px;}
.fs1_c01100{font-size:79.002198px;}
.fsa_c01100{font-size:79.200000px;}
.fs5_c01100{font-size:79.596198px;}
.fs13_c01100{font-size:79.992198px;}
.fs26_c01100{font-size:80.784000px;}
.fs4_c01100{font-size:82.170000px;}
.fs16_c01100{font-size:82.368000px;}
.fs8_c01100{font-size:85.536198px;}
.fsc_c01100{font-size:91.872198px;}
.fs6_c01100{font-size:113.256198px;}
.fs14_c01100{font-size:114.048000px;}
.y0_c01100{bottom:0.000000px;}
.y25_c01100{bottom:59.425785px;}
.y1_c01100{bottom:76.500000px;}
.y24_c01100{bottom:94.357935px;}
.y23_c01100{bottom:102.198735px;}
.y22_c01100{bottom:112.890735px;}
.y21_c01100{bottom:122.152185px;}
.y20_c01100{bottom:125.364735px;}
.y1e_c01100{bottom:126.790335px;}
.y1f_c01100{bottom:127.146735px;}
.y1d_c01100{bottom:192.362985px;}
.y1c_c01100{bottom:224.443935px;}
.y1b_c01100{bottom:256.519935px;}
.y1a_c01100{bottom:288.590985px;}
.y19_c01100{bottom:320.310585px;}
.y18_c01100{bottom:351.673785px;}
.y17_c01100{bottom:479.982735px;}
.y16_c01100{bottom:512.771535px;}
.y15_c01100{bottom:541.283535px;}
.y14_c01100{bottom:545.198985px;}
.y13_c01100{bottom:573.354585px;}
.yb_c01100{bottom:576.923535px;}
.y12_c01100{bottom:577.631385px;}
.y11_c01100{bottom:641.426985px;}
.y10_c01100{bottom:667.800585px;}
.yf_c01100{bottom:673.507935px;}
.ye_c01100{bottom:697.030335px;}
.yd_c01100{bottom:704.871135px;}
.yc_c01100{bottom:705.222585px;}
.ya_c01100{bottom:736.947135px;}
.y9_c01100{bottom:768.666735px;}
.y8_c01100{bottom:800.742735px;}
.y7_c01100{bottom:831.388185px;}
.y6_c01100{bottom:865.251135px;}
.y5_c01100{bottom:929.754585px;}
.y4_c01100{bottom:946.148985px;}
.y3_c01100{bottom:1071.958185px;}
.y2_c01100{bottom:1091.203785px;}
.h27_c01100{height:4.130156px;}
.h21_c01100{height:4.664022px;}
.h12_c01100{height:5.829785px;}
.h13_c01100{height:5.986406px;}
.h1f_c01100{height:8.550546px;}
.h23_c01100{height:14.380331px;}
.h24_c01100{height:15.546094px;}
.h1a_c01100{height:15.740420px;}
.h1c_c01100{height:16.107816px;}
.h1b_c01100{height:16.163297px;}
.h25_c01100{height:16.314324px;}
.h2d_c01100{height:16.323398px;}
.h28_c01100{height:17.100703px;}
.h26_c01100{height:17.140148px;}
.h10_c01100{height:18.172688px;}
.h1e_c01100{height:20.015596px;}
.h30_c01100{height:20.887891px;}
.h2f_c01100{height:23.335383px;}
.hf_c01100{height:26.803670px;}
.h2_c01100{height:28.911094px;}
.h2e_c01100{height:32.381663px;}
.h1d_c01100{height:33.454472px;}
.h11_c01100{height:37.310819px;}
.h14_c01100{height:38.927565px;}
.h9_c01100{height:44.624131px;}
.h32_c01100{height:46.257750px;}
.h31_c01100{height:47.083781px;}
.h20_c01100{height:56.170332px;}
.h22_c01100{height:67.321547px;}
.h18_c01100{height:69.180117px;}
.h29_c01100{height:69.957422px;}
.hb_c01100{height:70.929053px;}
.h2c_c01100{height:71.451703px;}
.h5_c01100{height:73.649813px;}
.h4_c01100{height:74.232792px;}
.hd_c01100{height:76.821113px;}
.h15_c01100{height:76.953164px;}
.h3_c01100{height:77.536337px;}
.hc_c01100{height:77.730469px;}
.h7_c01100{height:78.119315px;}
.h16_c01100{height:78.507968px;}
.h2a_c01100{height:79.285078px;}
.h2b_c01100{height:79.299207px;}
.h6_c01100{height:80.645361px;}
.h19_c01100{height:80.839688px;}
.ha_c01100{height:83.949101px;}
.he_c01100{height:95.819832px;}
.h8_c01100{height:111.154765px;}
.h17_c01100{height:111.931875px;}
.h1_c01100{height:1110.000000px;}
.h0_c01100{height:1263.000000px;}
.w1_c01100{width:775.500000px;}
.w0_c01100{width:892.500000px;}
.x0_c01100{left:0.000000px;}
.x1_c01100{left:58.500000px;}
.x32_c01100{left:89.017485px;}
.xd_c01100{left:91.136085px;}
.x33_c01100{left:99.615435px;}
.x75_c01100{left:141.789435px;}
.x7a_c01100{left:142.828935px;}
.x16_c01100{left:143.917935px;}
.x2c_c01100{left:145.531635px;}
.x6_c01100{left:146.585985px;}
.x63_c01100{left:166.732485px;}
.x70_c01100{left:168.262035px;}
.x4a_c01100{left:172.202235px;}
.x46_c01100{left:176.978985px;}
.x7_c01100{left:179.557935px;}
.x71_c01100{left:187.062135px;}
.x59_c01100{left:188.156085px;}
.x1f_c01100{left:191.091435px;}
.x4b_c01100{left:196.526535px;}
.x6c_c01100{left:198.105585px;}
.x69_c01100{left:200.041035px;}
.x4c_c01100{left:201.634935px;}
.x76_c01100{left:209.416335px;}
.xe_c01100{left:211.544835px;}
.x81_c01100{left:220.370685px;}
.x39_c01100{left:222.672435px;}
.x85_c01100{left:228.721335px;}
.x6d_c01100{left:232.156635px;}
.x20_c01100{left:233.889135px;}
.x8_c01100{left:234.983085px;}
.x7b_c01100{left:243.432735px;}
.x2d_c01100{left:245.051385px;}
.x4d_c01100{left:253.238685px;}
.x28_c01100{left:256.906635px;}
.x4e_c01100{left:266.138385px;}
.x9_c01100{left:267.895635px;}
.x4f_c01100{left:275.028585px;}
.x47_c01100{left:277.567935px;}
.x21_c01100{left:279.344985px;}
.x34_c01100{left:289.873635px;}
.xf_c01100{left:292.903035px;}
.x86_c01100{left:298.253985px;}
.x50_c01100{left:299.273685px;}
.x10_c01100{left:300.590385px;}
.x64_c01100{left:301.803135px;}
.x17_c01100{left:312.500085px;}
.x7c_c01100{left:320.360685px;}
.x72_c01100{left:321.954585px;}
.x29_c01100{left:322.974285px;}
.x83_c01100{left:331.676385px;}
.x65_c01100{left:333.092085px;}
.x2e_c01100{left:335.240385px;}
.xa_c01100{left:344.165235px;}
.xb_c01100{left:355.273035px;}
.x2a_c01100{left:356.540235px;}
.x22_c01100{left:366.836235px;}
.x58_c01100{left:375.988785px;}
.x3a_c01100{left:377.899485px;}
.x18_c01100{left:389.536935px;}
.x19_c01100{left:390.601185px;}
.x11_c01100{left:401.085285px;}
.x5a_c01100{left:404.099835px;}
.x23_c01100{left:410.732835px;}
.x48_c01100{left:412.361385px;}
.x51_c01100{left:415.029435px;}
.x3b_c01100{left:423.058335px;}
.xc_c01100{left:433.671135px;}
.x87_c01100{left:436.175835px;}
.x5b_c01100{left:439.066635px;}
.x7d_c01100{left:443.486985px;}
.x52_c01100{left:454.673985px;}
.x2f_c01100{left:456.272835px;}
.x5c_c01100{left:458.183535px;}
.x82_c01100{left:464.638335px;}
.x35_c01100{left:466.994535px;}
.x12_c01100{left:469.053735px;}
.x6e_c01100{left:476.642085px;}
.x5d_c01100{left:480.636735px;}
.x49_c01100{left:487.858785px;}
.x66_c01100{left:488.888385px;}
.x24_c01100{left:499.629885px;}
.x5_c01100{left:505.609485px;}
.x6f_c01100{left:509.371485px;}
.x53_c01100{left:515.959935px;}
.x6a_c01100{left:520.716885px;}
.x25_c01100{left:521.885085px;}
.x54_c01100{left:527.735985px;}
.x1a_c01100{left:531.220785px;}
.x38_c01100{left:533.299785px;}
.x1b_c01100{left:534.943185px;}
.x5e_c01100{left:539.952585px;}
.x3f_c01100{left:542.972085px;}
.x3c_c01100{left:544.343235px;}
.x7e_c01100{left:552.535485px;}
.x13_c01100{left:554.847135px;}
.x40_c01100{left:560.138685px;}
.x26_c01100{left:565.974735px;}
.x2b_c01100{left:567.410235px;}
.x84_c01100{left:575.092635px;}
.x41_c01100{left:576.176685px;}
.x67_c01100{left:577.181535px;}
.x5f_c01100{left:579.022935px;}
.x2_c01100{left:580.097085px;}
.x55_c01100{left:581.834535px;}
.x60_c01100{left:596.595435px;}
.x3d_c01100{left:598.679385px;}
.x61_c01100{left:603.367035px;}
.x62_c01100{left:605.441085px;}
.x77_c01100{left:607.614135px;}
.x30_c01100{left:610.519785px;}
.x68_c01100{left:620.360385px;}
.x14_c01100{left:622.379985px;}
.x42_c01100{left:625.646985px;}
.x56_c01100{left:627.953685px;}
.x73_c01100{left:629.344635px;}
.x6b_c01100{left:631.606785px;}
.x1c_c01100{left:632.829435px;}
.x43_c01100{left:638.284335px;}
.x36_c01100{left:643.382835px;}
.x44_c01100{left:654.218385px;}
.x1d_c01100{left:664.667835px;}
.x31_c01100{left:665.682585px;}
.x15_c01100{left:667.157685px;}
.x74_c01100{left:674.681685px;}
.x27_c01100{left:676.948785px;}
.x57_c01100{left:684.111435px;}
.x78_c01100{left:686.561685px;}
.x37_c01100{left:688.239735px;}
.x45_c01100{left:693.526335px;}
.x79_c01100{left:696.778485px;}
.x3_c01100{left:699.689085px;}
.x89_c01100{left:700.852335px;}
.x88_c01100{left:706.015185px;}
.x7f_c01100{left:708.297135px;}
.x1e_c01100{left:710.351385px;}
.x3e_c01100{left:722.855085px;}
.x80_c01100{left:739.100985px;}
.x4_c01100{left:744.343035px;}
@media print{
.v0_c01100{vertical-align:0.000000pt;}
.v1_c01100{vertical-align:3.819200pt;}
.ls18_c01100{letter-spacing:-3.548160pt;}
.lsd_c01100{letter-spacing:-2.661126pt;}
.ls1a_c01100{letter-spacing:-2.562560pt;}
.lsa_c01100{letter-spacing:-2.476326pt;}
.ls5_c01100{letter-spacing:-2.457846pt;}
.ls28_c01100{letter-spacing:-2.365446pt;}
.ls8_c01100{letter-spacing:-2.353126pt;}
.ls11_c01100{letter-spacing:-2.334646pt;}
.ls2a_c01100{letter-spacing:-1.954432pt;}
.ls1f_c01100{letter-spacing:-1.675526pt;}
.ls13_c01100{letter-spacing:-1.182726pt;}
.ls3_c01100{letter-spacing:0.000000pt;}
.ls20_c01100{letter-spacing:0.211209pt;}
.ls14_c01100{letter-spacing:0.264000pt;}
.ls1e_c01100{letter-spacing:0.387209pt;}
.ls24_c01100{letter-spacing:0.651209pt;}
.ls1c_c01100{letter-spacing:0.686409pt;}
.ls0_c01100{letter-spacing:0.686576pt;}
.ls23_c01100{letter-spacing:0.704000pt;}
.ls1b_c01100{letter-spacing:0.712800pt;}
.ls25_c01100{letter-spacing:0.730400pt;}
.ls2c_c01100{letter-spacing:0.739200pt;}
.ls12_c01100{letter-spacing:0.774400pt;}
.ls21_c01100{letter-spacing:0.883590pt;}
.ls1d_c01100{letter-spacing:0.906400pt;}
.ls2b_c01100{letter-spacing:1.069939pt;}
.ls2_c01100{letter-spacing:1.334084pt;}
.lsb_c01100{letter-spacing:1.741629pt;}
.ls15_c01100{letter-spacing:2.826648pt;}
.ls1_c01100{letter-spacing:2.928904pt;}
.ls19_c01100{letter-spacing:2.948000pt;}
.ls29_c01100{letter-spacing:3.044800pt;}
.ls26_c01100{letter-spacing:3.168000pt;}
.lse_c01100{letter-spacing:3.212000pt;}
.ls22_c01100{letter-spacing:3.215141pt;}
.ls10_c01100{letter-spacing:3.273609pt;}
.ls7_c01100{letter-spacing:3.335209pt;}
.ls6_c01100{letter-spacing:3.361609pt;}
.ls17_c01100{letter-spacing:3.484800pt;}
.ls4_c01100{letter-spacing:3.511209pt;}
.lsf_c01100{letter-spacing:3.520000pt;}
.ls27_c01100{letter-spacing:3.590400pt;}
.ls9_c01100{letter-spacing:3.652000pt;}
.ls2d_c01100{letter-spacing:27.878400pt;}
.ls16_c01100{letter-spacing:51.955376pt;}
.lsc_c01100{letter-spacing:59.558400pt;}
.ws0_c01100{word-spacing:-18.201265pt;}
.ws1_c01100{word-spacing:-18.010128pt;}
.ws2_c01100{word-spacing:-16.808044pt;}
.ws3_c01100{word-spacing:0.000000pt;}
._1_c01100{margin-left:-15.396200pt;}
._12_c01100{margin-left:-7.955200pt;}
._3_c01100{margin-left:-2.422562pt;}
._4_c01100{margin-left:-1.425600pt;}
._11_c01100{width:1.142514pt;}
._9_c01100{width:2.323138pt;}
._b_c01100{width:3.467945pt;}
._8_c01100{width:6.569635pt;}
._14_c01100{width:12.039808pt;}
._0_c01100{width:13.580991pt;}
._a_c01100{width:19.131094pt;}
._f_c01100{width:25.467068pt;}
._5_c01100{width:27.360784pt;}
._2_c01100{width:32.273702pt;}
._10_c01100{width:48.089536pt;}
._7_c01100{width:62.954344pt;}
._6_c01100{width:74.526701pt;}
._d_c01100{width:107.071849pt;}
._13_c01100{width:207.328000pt;}
._e_c01100{width:261.167676pt;}
._c_c01100{width:299.217600pt;}
.fs1f_c01100{font-size:3.168000pt;}
.fs24_c01100{font-size:3.520000pt;}
.fs1d_c01100{font-size:4.224176pt;}
.fs10_c01100{font-size:5.280000pt;}
.fs1b_c01100{font-size:7.744176pt;}
.fs20_c01100{font-size:13.024176pt;}
.fs18_c01100{font-size:13.728176pt;}
.fs22_c01100{font-size:13.904176pt;}
.fs21_c01100{font-size:14.080000pt;}
.fs17_c01100{font-size:14.256000pt;}
.fs23_c01100{font-size:14.608000pt;}
.fs29_c01100{font-size:14.784000pt;}
.fse_c01100{font-size:15.488000pt;}
.fs1a_c01100{font-size:18.128000pt;}
.fs2b_c01100{font-size:19.888000pt;}
.fs2a_c01100{font-size:23.936000pt;}
.fsd_c01100{font-size:24.288000pt;}
.fs0_c01100{font-size:24.640000pt;}
.fs2c_c01100{font-size:27.878400pt;}
.fs19_c01100{font-size:28.512176pt;}
.fsf_c01100{font-size:33.792176pt;}
.fs2e_c01100{font-size:39.424000pt;}
.fs2d_c01100{font-size:40.128000pt;}
.fs1c_c01100{font-size:47.872176pt;}
.fs11_c01100{font-size:51.955376pt;}
.fs1e_c01100{font-size:57.376000pt;}
.fs15_c01100{font-size:58.960000pt;}
.fs7_c01100{font-size:59.558400pt;}
.fs28_c01100{font-size:60.896000pt;}
.fs25_c01100{font-size:63.360000pt;}
.fs9_c01100{font-size:64.240000pt;}
.fsb_c01100{font-size:65.472176pt;}
.fs3_c01100{font-size:66.704176pt;}
.fs2_c01100{font-size:67.232176pt;}
.fs27_c01100{font-size:67.584176pt;}
.fs12_c01100{font-size:69.696000pt;}
.fs1_c01100{font-size:70.224176pt;}
.fsa_c01100{font-size:70.400000pt;}
.fs5_c01100{font-size:70.752176pt;}
.fs13_c01100{font-size:71.104176pt;}
.fs26_c01100{font-size:71.808000pt;}
.fs4_c01100{font-size:73.040000pt;}
.fs16_c01100{font-size:73.216000pt;}
.fs8_c01100{font-size:76.032176pt;}
.fsc_c01100{font-size:81.664176pt;}
.fs6_c01100{font-size:100.672176pt;}
.fs14_c01100{font-size:101.376000pt;}
.y0_c01100{bottom:0.000000pt;}
.y25_c01100{bottom:52.822920pt;}
.y1_c01100{bottom:68.000000pt;}
.y24_c01100{bottom:83.873720pt;}
.y23_c01100{bottom:90.843320pt;}
.y22_c01100{bottom:100.347320pt;}
.y21_c01100{bottom:108.579720pt;}
.y20_c01100{bottom:111.435320pt;}
.y1e_c01100{bottom:112.702520pt;}
.y1f_c01100{bottom:113.019320pt;}
.y1d_c01100{bottom:170.989320pt;}
.y1c_c01100{bottom:199.505720pt;}
.y1b_c01100{bottom:228.017720pt;}
.y1a_c01100{bottom:256.525320pt;}
.y19_c01100{bottom:284.720520pt;}
.y18_c01100{bottom:312.598920pt;}
.y17_c01100{bottom:426.651320pt;}
.y16_c01100{bottom:455.796920pt;}
.y15_c01100{bottom:481.140920pt;}
.y14_c01100{bottom:484.621320pt;}
.y13_c01100{bottom:509.648520pt;}
.yb_c01100{bottom:512.820920pt;}
.y12_c01100{bottom:513.450120pt;}
.y11_c01100{bottom:570.157320pt;}
.y10_c01100{bottom:593.600520pt;}
.yf_c01100{bottom:598.673720pt;}
.ye_c01100{bottom:619.582520pt;}
.yd_c01100{bottom:626.552120pt;}
.yc_c01100{bottom:626.864520pt;}
.ya_c01100{bottom:655.064120pt;}
.y9_c01100{bottom:683.259320pt;}
.y8_c01100{bottom:711.771320pt;}
.y7_c01100{bottom:739.011720pt;}
.y6_c01100{bottom:769.112120pt;}
.y5_c01100{bottom:826.448520pt;}
.y4_c01100{bottom:841.021320pt;}
.y3_c01100{bottom:952.851720pt;}
.y2_c01100{bottom:969.958920pt;}
.h27_c01100{height:3.671250pt;}
.h21_c01100{height:4.145798pt;}
.h12_c01100{height:5.182031pt;}
.h13_c01100{height:5.321250pt;}
.h1f_c01100{height:7.600485pt;}
.h23_c01100{height:12.782516pt;}
.h24_c01100{height:13.818750pt;}
.h1a_c01100{height:13.991484pt;}
.h1c_c01100{height:14.318059pt;}
.h1b_c01100{height:14.367375pt;}
.h25_c01100{height:14.501621pt;}
.h2d_c01100{height:14.509688pt;}
.h28_c01100{height:15.200625pt;}
.h26_c01100{height:15.235688pt;}
.h10_c01100{height:16.153500pt;}
.h1e_c01100{height:17.791641pt;}
.h30_c01100{height:18.567014pt;}
.h2f_c01100{height:20.742563pt;}
.hf_c01100{height:23.825484pt;}
.h2_c01100{height:25.698750pt;}
.h2e_c01100{height:28.783700pt;}
.h1d_c01100{height:29.737309pt;}
.h11_c01100{height:33.165173pt;}
.h14_c01100{height:34.602280pt;}
.h9_c01100{height:39.665894pt;}
.h32_c01100{height:41.118000pt;}
.h31_c01100{height:41.852250pt;}
.h20_c01100{height:49.929184pt;}
.h22_c01100{height:59.841375pt;}
.h18_c01100{height:61.493438pt;}
.h29_c01100{height:62.184375pt;}
.hb_c01100{height:63.048047pt;}
.h2c_c01100{height:63.512625pt;}
.h5_c01100{height:65.466501pt;}
.h4_c01100{height:65.984704pt;}
.hd_c01100{height:68.285434pt;}
.h15_c01100{height:68.402813pt;}
.h3_c01100{height:68.921188pt;}
.hc_c01100{height:69.093750pt;}
.h7_c01100{height:69.439391pt;}
.h16_c01100{height:69.784860pt;}
.h2a_c01100{height:70.475625pt;}
.h2b_c01100{height:70.488184pt;}
.h6_c01100{height:71.684766pt;}
.h19_c01100{height:71.857500pt;}
.ha_c01100{height:74.621423pt;}
.he_c01100{height:85.173184pt;}
.h8_c01100{height:98.804235pt;}
.h17_c01100{height:99.495000pt;}
.h1_c01100{height:986.666667pt;}
.h0_c01100{height:1122.666667pt;}
.w1_c01100{width:689.333333pt;}
.w0_c01100{width:793.333333pt;}
.x0_c01100{left:0.000000pt;}
.x1_c01100{left:52.000000pt;}
.x32_c01100{left:79.126653pt;}
.xd_c01100{left:81.009853pt;}
.x33_c01100{left:88.547053pt;}
.x75_c01100{left:126.035053pt;}
.x7a_c01100{left:126.959053pt;}
.x16_c01100{left:127.927053pt;}
.x2c_c01100{left:129.361453pt;}
.x6_c01100{left:130.298653pt;}
.x63_c01100{left:148.206653pt;}
.x70_c01100{left:149.566253pt;}
.x4a_c01100{left:153.068653pt;}
.x46_c01100{left:157.314653pt;}
.x7_c01100{left:159.607053pt;}
.x71_c01100{left:166.277453pt;}
.x59_c01100{left:167.249853pt;}
.x1f_c01100{left:169.859053pt;}
.x4b_c01100{left:174.690253pt;}
.x6c_c01100{left:176.093853pt;}
.x69_c01100{left:177.814253pt;}
.x4c_c01100{left:179.231053pt;}
.x76_c01100{left:186.147853pt;}
.xe_c01100{left:188.039853pt;}
.x81_c01100{left:195.885053pt;}
.x39_c01100{left:197.931053pt;}
.x85_c01100{left:203.307853pt;}
.x6d_c01100{left:206.361453pt;}
.x20_c01100{left:207.901453pt;}
.x8_c01100{left:208.873853pt;}
.x7b_c01100{left:216.384653pt;}
.x2d_c01100{left:217.823453pt;}
.x4d_c01100{left:225.101053pt;}
.x28_c01100{left:228.361453pt;}
.x4e_c01100{left:236.567453pt;}
.x9_c01100{left:238.129453pt;}
.x4f_c01100{left:244.469853pt;}
.x47_c01100{left:246.727053pt;}
.x21_c01100{left:248.306653pt;}
.x34_c01100{left:257.665453pt;}
.xf_c01100{left:260.358253pt;}
.x86_c01100{left:265.114653pt;}
.x50_c01100{left:266.021053pt;}
.x10_c01100{left:267.191453pt;}
.x64_c01100{left:268.269453pt;}
.x17_c01100{left:277.777853pt;}
.x7c_c01100{left:284.765053pt;}
.x72_c01100{left:286.181853pt;}
.x29_c01100{left:287.088253pt;}
.x83_c01100{left:294.823453pt;}
.x65_c01100{left:296.081853pt;}
.x2e_c01100{left:297.991453pt;}
.xa_c01100{left:305.924653pt;}
.xb_c01100{left:315.798253pt;}
.x2a_c01100{left:316.924653pt;}
.x22_c01100{left:326.076653pt;}
.x58_c01100{left:334.212253pt;}
.x3a_c01100{left:335.910653pt;}
.x18_c01100{left:346.255053pt;}
.x19_c01100{left:347.201053pt;}
.x11_c01100{left:356.520253pt;}
.x5a_c01100{left:359.199853pt;}
.x23_c01100{left:365.095853pt;}
.x48_c01100{left:366.543453pt;}
.x51_c01100{left:368.915053pt;}
.x3b_c01100{left:376.051853pt;}
.xc_c01100{left:385.485453pt;}
.x87_c01100{left:387.711853pt;}
.x5b_c01100{left:390.281453pt;}
.x7d_c01100{left:394.210653pt;}
.x52_c01100{left:404.154653pt;}
.x2f_c01100{left:405.575853pt;}
.x5c_c01100{left:407.274253pt;}
.x82_c01100{left:413.011853pt;}
.x35_c01100{left:415.106253pt;}
.x12_c01100{left:416.936653pt;}
.x6e_c01100{left:423.681853pt;}
.x5d_c01100{left:427.232653pt;}
.x49_c01100{left:433.652253pt;}
.x66_c01100{left:434.567453pt;}
.x24_c01100{left:444.115453pt;}
.x5_c01100{left:449.430653pt;}
.x6f_c01100{left:452.774653pt;}
.x53_c01100{left:458.631053pt;}
.x6a_c01100{left:462.859453pt;}
.x25_c01100{left:463.897853pt;}
.x54_c01100{left:469.098653pt;}
.x1a_c01100{left:472.196253pt;}
.x38_c01100{left:474.044253pt;}
.x1b_c01100{left:475.505053pt;}
.x5e_c01100{left:479.957853pt;}
.x3f_c01100{left:482.641853pt;}
.x3c_c01100{left:483.860653pt;}
.x7e_c01100{left:491.142653pt;}
.x13_c01100{left:493.197453pt;}
.x40_c01100{left:497.901053pt;}
.x26_c01100{left:503.088653pt;}
.x2b_c01100{left:504.364653pt;}
.x84_c01100{left:511.193453pt;}
.x41_c01100{left:512.157053pt;}
.x67_c01100{left:513.050253pt;}
.x5f_c01100{left:514.687053pt;}
.x2_c01100{left:515.641853pt;}
.x55_c01100{left:517.186253pt;}
.x60_c01100{left:530.307053pt;}
.x3d_c01100{left:532.159453pt;}
.x61_c01100{left:536.326253pt;}
.x62_c01100{left:538.169853pt;}
.x77_c01100{left:540.101453pt;}
.x30_c01100{left:542.684253pt;}
.x68_c01100{left:551.431453pt;}
.x14_c01100{left:553.226653pt;}
.x42_c01100{left:556.130653pt;}
.x56_c01100{left:558.181053pt;}
.x73_c01100{left:559.417453pt;}
.x6b_c01100{left:561.428253pt;}
.x1c_c01100{left:562.515053pt;}
.x43_c01100{left:567.363853pt;}
.x36_c01100{left:571.895853pt;}
.x44_c01100{left:581.527453pt;}
.x1d_c01100{left:590.815853pt;}
.x31_c01100{left:591.717853pt;}
.x15_c01100{left:593.029053pt;}
.x74_c01100{left:599.717053pt;}
.x27_c01100{left:601.732253pt;}
.x57_c01100{left:608.099053pt;}
.x78_c01100{left:610.277053pt;}
.x37_c01100{left:611.768653pt;}
.x45_c01100{left:616.467853pt;}
.x79_c01100{left:619.358653pt;}
.x3_c01100{left:621.945853pt;}
.x89_c01100{left:622.979853pt;}
.x88_c01100{left:627.569053pt;}
.x7f_c01100{left:629.597453pt;}
.x1e_c01100{left:631.423453pt;}
.x3e_c01100{left:642.537853pt;}
.x80_c01100{left:656.978653pt;}
.x4_c01100{left:661.638253pt;}
}





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

.ir_c01101:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01101{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01101;src:url('chunks/assets/font_9f1248f737de61e1ef24f3e8.woff2')format("woff");}.ff1_c01101{font-family:ff1_c01101;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01101;src:url('chunks/assets/font_5a72f20d872d85ecffc70893.woff2')format("woff");}.ff2_c01101{font-family:ff2_c01101;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01101;src:url('chunks/assets/font_be5f0be60e2b7016bc40ffe9.woff2')format("woff");}.ff3_c01101{font-family:ff3_c01101;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01101;src:url('chunks/assets/font_0544c476a9d266e0882c359d.woff2')format("woff");}.ff4_c01101{font-family:ff4_c01101;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01101;src:url('chunks/assets/font_fb2d4821950300f79a0fe644.woff2')format("woff");}.ff5_c01101{font-family:ff5_c01101;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01101;src:url('chunks/assets/font_19bf5c32dc31a1473dfdd645.woff2')format("woff");}.ff6_c01101{font-family:ff6_c01101;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01101;src:url('chunks/assets/font_920e6ce99917ef6567ab64ab.woff2')format("woff");}.ff7_c01101{font-family:ff7_c01101;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m38_c01101{transform:matrix(0.021740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021740,0.000000,0.000000,0.250000,0,0);}
.mc_c01101{transform:matrix(0.039774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.039774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.039774,0.000000,0.000000,0.250000,0,0);}
.m34_c01101{transform:matrix(0.043479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043479,0.000000,0.000000,0.250000,0,0);}
.m6b_c01101{transform:matrix(0.071222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071222,0.000000,0.000000,0.250000,0,0);}
.m4c_c01101{transform:matrix(0.082728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.082728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.082728,0.000000,0.000000,0.250000,0,0);}
.m35_c01101{transform:matrix(0.083194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083194,0.000000,0.000000,0.250000,0,0);}
.m37_c01101{transform:matrix(0.084240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084240,0.000000,0.000000,0.250000,0,0);}
.m33_c01101{transform:matrix(0.097050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097050,0.000000,0.000000,0.250000,0,0);}
.m49_c01101{transform:matrix(0.099815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099815,0.000000,0.000000,0.250000,0,0);}
.m6d_c01101{transform:matrix(0.103821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103821,0.000000,0.000000,0.250000,0,0);}
.m6c_c01101{transform:matrix(0.107729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107729,0.000000,0.000000,0.250000,0,0);}
.m39_c01101{transform:matrix(0.115217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115217,0.000000,0.000000,0.250000,0,0);}
.m6a_c01101{transform:matrix(0.120640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120640,0.000000,0.000000,0.250000,0,0);}
.m20_c01101{transform:matrix(0.121031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121031,0.000000,0.000000,0.250000,0,0);}
.m14_c01101{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m4b_c01101{transform:matrix(0.136645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136645,0.000000,0.000000,0.250000,0,0);}
.ma_c01101{transform:matrix(0.142046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142046,0.000000,0.000000,0.250000,0,0);}
.m52_c01101{transform:matrix(0.153846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153846,0.000000,0.000000,0.250000,0,0);}
.m31_c01101{transform:matrix(0.155364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155364,0.000000,0.000000,0.250000,0,0);}
.m5c_c01101{transform:matrix(0.159946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159946,0.000000,0.000000,0.250000,0,0);}
.m6e_c01101{transform:matrix(0.162790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162790,0.000000,0.000000,0.250000,0,0);}
.md_c01101{transform:matrix(0.167046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167046,0.000000,0.000000,0.250000,0,0);}
.m4f_c01101{transform:matrix(0.170828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170828,0.000000,0.000000,0.250000,0,0);}
.mb_c01101{transform:matrix(0.171876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171876,0.000000,0.000000,0.250000,0,0);}
.m9_c01101{transform:matrix(0.177760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177760,0.000000,0.000000,0.250000,0,0);}
.m21_c01101{transform:matrix(0.183184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183184,0.000000,0.000000,0.250000,0,0);}
.m78_c01101{transform:matrix(0.190790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190790,0.000000,0.000000,0.250000,0,0);}
.m81_c01101{transform:matrix(0.192234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192234,0.000000,0.000000,0.250000,0,0);}
.m29_c01101{transform:matrix(0.201922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201922,0.000000,0.000000,0.250000,0,0);}
.m3b_c01101{transform:matrix(0.213954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213954,0.000000,0.000000,0.250000,0,0);}
.m84_c01101{transform:matrix(0.217118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217118,0.000000,0.000000,0.250000,0,0);}
.m4a_c01101{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m4_c01101{transform:matrix(0.228494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228494,0.000000,0.000000,0.250000,0,0);}
.m51_c01101{transform:matrix(0.247061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247061,0.000000,0.000000,0.250000,0,0);}
.m36_c01101{transform:matrix(0.248680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248680,0.000000,0.000000,0.250000,0,0);}
.m0_c01101{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m16_c01101{transform:matrix(0.251217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251217,0.000000,0.000000,0.250000,0,0);}
.m22_c01101{transform:matrix(0.252892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252892,0.000000,0.000000,0.250000,0,0);}
.m56_c01101{transform:matrix(0.253131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253131,0.000000,0.000000,0.250000,0,0);}
.m17_c01101{transform:matrix(0.257088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257088,0.000000,0.000000,0.250000,0,0);}
.m7a_c01101{transform:matrix(0.257783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257783,0.000000,0.000000,0.250000,0,0);}
.m2e_c01101{transform:matrix(0.258033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258033,0.000000,0.000000,0.250000,0,0);}
.m2a_c01101{transform:matrix(0.259287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259287,0.000000,0.000000,0.250000,0,0);}
.m5e_c01101{transform:matrix(0.260814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260814,0.000000,0.000000,0.250000,0,0);}
.m3e_c01101{transform:matrix(0.261384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261384,0.000000,0.000000,0.250000,0,0);}
.m1f_c01101{transform:matrix(0.262916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262916,0.000000,0.000000,0.250000,0,0);}
.m1_c01101{transform:matrix(0.264446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264446,0.000000,0.000000,0.250000,0,0);}
.m23_c01101{transform:matrix(0.265919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265919,0.000000,0.000000,0.250000,0,0);}
.m1d_c01101{transform:matrix(0.266427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266427,0.000000,0.000000,0.250000,0,0);}
.m30_c01101{transform:matrix(0.266468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266468,0.000000,0.000000,0.250000,0,0);}
.m60_c01101{transform:matrix(0.267667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267667,0.000000,0.000000,0.250000,0,0);}
.m7_c01101{transform:matrix(0.269632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269632,0.000000,0.000000,0.250000,0,0);}
.m75_c01101{transform:matrix(0.270797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270797,0.000000,0.000000,0.250000,0,0);}
.m5f_c01101{transform:matrix(0.271982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271982,0.000000,0.000000,0.250000,0,0);}
.m5b_c01101{transform:matrix(0.275777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275777,0.000000,0.000000,0.250000,0,0);}
.m71_c01101{transform:matrix(0.275913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275913,0.000000,0.000000,0.250000,0,0);}
.m70_c01101{transform:matrix(0.276895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276895,0.000000,0.000000,0.250000,0,0);}
.m1c_c01101{transform:matrix(0.278877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278877,0.000000,0.000000,0.250000,0,0);}
.m5d_c01101{transform:matrix(0.279796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279796,0.000000,0.000000,0.250000,0,0);}
.m6_c01101{transform:matrix(0.282192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282192,0.000000,0.000000,0.250000,0,0);}
.m3c_c01101{transform:matrix(0.283601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283601,0.000000,0.000000,0.250000,0,0);}
.m3f_c01101{transform:matrix(0.284100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284100,0.000000,0.000000,0.250000,0,0);}
.m2f_c01101{transform:matrix(0.284859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284859,0.000000,0.000000,0.250000,0,0);}
.m8_c01101{transform:matrix(0.285633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285633,0.000000,0.000000,0.250000,0,0);}
.m65_c01101{transform:matrix(0.287586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287586,0.000000,0.000000,0.250000,0,0);}
.m13_c01101{transform:matrix(0.288501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288501,0.000000,0.000000,0.250000,0,0);}
.m2b_c01101{transform:matrix(0.288731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288731,0.000000,0.000000,0.250000,0,0);}
.m77_c01101{transform:matrix(0.288902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288902,0.000000,0.000000,0.250000,0,0);}
.m25_c01101{transform:matrix(0.288909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288909,0.000000,0.000000,0.250000,0,0);}
.m5a_c01101{transform:matrix(0.289276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289276,0.000000,0.000000,0.250000,0,0);}
.m1a_c01101{transform:matrix(0.292145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292145,0.000000,0.000000,0.250000,0,0);}
.m74_c01101{transform:matrix(0.292474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292474,0.000000,0.000000,0.250000,0,0);}
.m27_c01101{transform:matrix(0.292545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292545,0.000000,0.000000,0.250000,0,0);}
.m1e_c01101{transform:matrix(0.293886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293886,0.000000,0.000000,0.250000,0,0);}
.m3d_c01101{transform:matrix(0.294179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294179,0.000000,0.000000,0.250000,0,0);}
.m48_c01101{transform:matrix(0.294653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294653,0.000000,0.000000,0.250000,0,0);}
.m55_c01101{transform:matrix(0.294968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294968,0.000000,0.000000,0.250000,0,0);}
.m40_c01101{transform:matrix(0.295908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295908,0.000000,0.000000,0.250000,0,0);}
.m50_c01101{transform:matrix(0.296388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296388,0.000000,0.000000,0.250000,0,0);}
.m59_c01101{transform:matrix(0.296509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296509,0.000000,0.000000,0.250000,0,0);}
.m69_c01101{transform:matrix(0.297503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297503,0.000000,0.000000,0.250000,0,0);}
.m5_c01101{transform:matrix(0.298132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298132,0.000000,0.000000,0.250000,0,0);}
.m3_c01101{transform:matrix(0.298237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298237,0.000000,0.000000,0.250000,0,0);}
.m11_c01101{transform:matrix(0.298686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298686,0.000000,0.000000,0.250000,0,0);}
.m28_c01101{transform:matrix(0.298715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298715,0.000000,0.000000,0.250000,0,0);}
.m6f_c01101{transform:matrix(0.298995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298995,0.000000,0.000000,0.250000,0,0);}
.mf_c01101{transform:matrix(0.299488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299488,0.000000,0.000000,0.250000,0,0);}
.m64_c01101{transform:matrix(0.301025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301025,0.000000,0.000000,0.250000,0,0);}
.m10_c01101{transform:matrix(0.301658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301658,0.000000,0.000000,0.250000,0,0);}
.m15_c01101{transform:matrix(0.302325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302325,0.000000,0.000000,0.250000,0,0);}
.m12_c01101{transform:matrix(0.302714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302714,0.000000,0.000000,0.250000,0,0);}
.m79_c01101{transform:matrix(0.302809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302809,0.000000,0.000000,0.250000,0,0);}
.m3a_c01101{transform:matrix(0.303993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303993,0.000000,0.000000,0.250000,0,0);}
.me_c01101{transform:matrix(0.304871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304871,0.000000,0.000000,0.250000,0,0);}
.m1b_c01101{transform:matrix(0.304999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304999,0.000000,0.000000,0.250000,0,0);}
.m4e_c01101{transform:matrix(0.305559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305559,0.000000,0.000000,0.250000,0,0);}
.m57_c01101{transform:matrix(0.306059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306059,0.000000,0.000000,0.250000,0,0);}
.m18_c01101{transform:matrix(0.306267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306267,0.000000,0.000000,0.250000,0,0);}
.m76_c01101{transform:matrix(0.306705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306705,0.000000,0.000000,0.250000,0,0);}
.m2d_c01101{transform:matrix(0.311410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311410,0.000000,0.000000,0.250000,0,0);}
.m7e_c01101{transform:matrix(0.311638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311638,0.000000,0.000000,0.250000,0,0);}
.m61_c01101{transform:matrix(0.312818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312818,0.000000,0.000000,0.250000,0,0);}
.m47_c01101{transform:matrix(0.313655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313655,0.000000,0.000000,0.250000,0,0);}
.m62_c01101{transform:matrix(0.316443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316443,0.000000,0.000000,0.250000,0,0);}
.m58_c01101{transform:matrix(0.320519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320519,0.000000,0.000000,0.250000,0,0);}
.m32_c01101{transform:matrix(0.322228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322228,0.000000,0.000000,0.250000,0,0);}
.m2c_c01101{transform:matrix(0.322468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322468,0.000000,0.000000,0.250000,0,0);}
.m54_c01101{transform:matrix(0.323533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323533,0.000000,0.000000,0.250000,0,0);}
.m44_c01101{transform:matrix(0.323925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323925,0.000000,0.000000,0.250000,0,0);}
.m2_c01101{transform:matrix(0.324472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324472,0.000000,0.000000,0.250000,0,0);}
.m7c_c01101{transform:matrix(0.324475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324475,0.000000,0.000000,0.250000,0,0);}
.m43_c01101{transform:matrix(0.324637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324637,0.000000,0.000000,0.250000,0,0);}
.m26_c01101{transform:matrix(0.326145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326145,0.000000,0.000000,0.250000,0,0);}
.m41_c01101{transform:matrix(0.326906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326906,0.000000,0.000000,0.250000,0,0);}
.m24_c01101{transform:matrix(0.327013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327013,0.000000,0.000000,0.250000,0,0);}
.m19_c01101{transform:matrix(0.327606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327606,0.000000,0.000000,0.250000,0,0);}
.m7d_c01101{transform:matrix(0.331061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331061,0.000000,0.000000,0.250000,0,0);}
.m4d_c01101{transform:matrix(0.335184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335184,0.000000,0.000000,0.250000,0,0);}
.m67_c01101{transform:matrix(0.336733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336733,0.000000,0.000000,0.250000,0,0);}
.m7b_c01101{transform:matrix(0.337436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337436,0.000000,0.000000,0.250000,0,0);}
.m73_c01101{transform:matrix(0.340265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340265,0.000000,0.000000,0.250000,0,0);}
.m53_c01101{transform:matrix(0.342264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342264,0.000000,0.000000,0.250000,0,0);}
.m68_c01101{transform:matrix(0.342716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342716,0.000000,0.000000,0.250000,0,0);}
.m63_c01101{transform:matrix(0.345705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345705,0.000000,0.000000,0.250000,0,0);}
.m72_c01101{transform:matrix(0.346588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346588,0.000000,0.000000,0.250000,0,0);}
.m7f_c01101{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);}
.m66_c01101{transform:matrix(0.352817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352817,0.000000,0.000000,0.250000,0,0);}
.m45_c01101{transform:matrix(0.353771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353771,0.000000,0.000000,0.250000,0,0);}
.m46_c01101{transform:matrix(0.358713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358713,0.000000,0.000000,0.250000,0,0);}
.m42_c01101{transform:matrix(0.360203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360203,0.000000,0.000000,0.250000,0,0);}
.m80_c01101{transform:matrix(0.368396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368396,0.000000,0.000000,0.250000,0,0);}
.m83_c01101{transform:matrix(0.425931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425931,0.000000,0.000000,0.250000,0,0);}
.m85_c01101{transform:matrix(0.660498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660498,0.000000,0.000000,0.250000,0,0);}
.m82_c01101{transform:matrix(0.978856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.978856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.978856,0.000000,0.000000,0.250000,0,0);}
.v1_c01101{vertical-align:-47.044800px;}
.v3_c01101{vertical-align:-4.259772px;}
.v0_c01101{vertical-align:0.000000px;}
.v2_c01101{vertical-align:4.257000px;}
.ls1b_c01101{letter-spacing:-3.298680px;}
.ls14_c01101{letter-spacing:-2.882880px;}
.ls19_c01101{letter-spacing:-2.661127px;}
.ls9_c01101{letter-spacing:-2.584890px;}
.ls21_c01101{letter-spacing:-2.577967px;}
.ls24_c01101{letter-spacing:-2.557177px;}
.ls2b_c01101{letter-spacing:-2.328480px;}
.lsb_c01101{letter-spacing:-2.327536px;}
.ls2a_c01101{letter-spacing:-2.242950px;}
.ls2e_c01101{letter-spacing:-1.663200px;}
.ls29_c01101{letter-spacing:-0.920702px;}
.lsd_c01101{letter-spacing:-0.249480px;}
.ls6_c01101{letter-spacing:0.000000px;}
.ls1f_c01101{letter-spacing:0.022097px;}
.ls5_c01101{letter-spacing:0.555397px;}
.ls2d_c01101{letter-spacing:0.742510px;}
.ls2c_c01101{letter-spacing:0.792000px;}
.ls2_c01101{letter-spacing:1.863086px;}
.ls0_c01101{letter-spacing:2.198201px;}
.ls13_c01101{letter-spacing:2.673950px;}
.ls10_c01101{letter-spacing:2.688333px;}
.ls26_c01101{letter-spacing:2.692810px;}
.ls1c_c01101{letter-spacing:3.050170px;}
.ls1e_c01101{letter-spacing:3.146180px;}
.ls22_c01101{letter-spacing:3.158424px;}
.ls1_c01101{letter-spacing:3.216914px;}
.ls27_c01101{letter-spacing:3.316500px;}
.ls15_c01101{letter-spacing:3.478702px;}
.ls25_c01101{letter-spacing:3.653110px;}
.lsa_c01101{letter-spacing:3.682810px;}
.ls8_c01101{letter-spacing:3.692700px;}
.ls16_c01101{letter-spacing:3.762000px;}
.ls18_c01101{letter-spacing:3.801610px;}
.ls3_c01101{letter-spacing:3.879612px;}
.ls11_c01101{letter-spacing:4.039200px;}
.ls7_c01101{letter-spacing:4.059000px;}
.ls23_c01101{letter-spacing:4.197610px;}
.lsf_c01101{letter-spacing:4.227310px;}
.ls28_c01101{letter-spacing:54.172998px;}
.ls17_c01101{letter-spacing:55.598598px;}
.lse_c01101{letter-spacing:57.024198px;}
.ls12_c01101{letter-spacing:59.875398px;}
.ls1d_c01101{letter-spacing:61.300998px;}
.lsc_c01101{letter-spacing:62.726400px;}
.ls1a_c01101{letter-spacing:65.577798px;}
.ls20_c01101{letter-spacing:71.280000px;}
.ls4_c01101{letter-spacing:261.993600px;}
.sc__c01101{text-shadow:none;}
.sc0_c01101{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01101{-webkit-text-stroke:0px transparent;}
.sc0_c01101{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01101{word-spacing:0.000000px;}
.ws0_c01101{word-spacing:6.949800px;}
._6_c01101{margin-left:-20.822671px;}
._2_c01101{margin-left:-14.307951px;}
._0_c01101{margin-left:-12.821094px;}
._4_c01101{margin-left:-6.601369px;}
._a_c01101{width:7.648652px;}
._7_c01101{width:15.599629px;}
._3_c01101{width:18.926759px;}
._b_c01101{width:28.936391px;}
._5_c01101{width:39.088276px;}
._9_c01101{width:113.322071px;}
._1_c01101{width:167.758910px;}
._8_c01101{width:499.347684px;}
.fc0_c01101{color:transparent;}
.fs28_c01101{font-size:4.158000px;}
.fs26_c01101{font-size:4.554198px;}
.fs23_c01101{font-size:6.138000px;}
.fs25_c01101{font-size:14.850198px;}
.fs24_c01101{font-size:15.840000px;}
.fs1e_c01101{font-size:22.176000px;}
.fs22_c01101{font-size:24.354000px;}
.fs2_c01101{font-size:27.720000px;}
.fs21_c01101{font-size:27.918000px;}
.fs3_c01101{font-size:33.264000px;}
.fs13_c01101{font-size:33.660000px;}
.fs27_c01101{font-size:47.520000px;}
.fs1c_c01101{font-size:53.856198px;}
.fs1f_c01101{font-size:54.172998px;}
.fs10_c01101{font-size:55.598598px;}
.fs0_c01101{font-size:56.628000px;}
.fs8_c01101{font-size:57.024198px;}
.fsc_c01101{font-size:59.875398px;}
.fs16_c01101{font-size:61.300998px;}
.fs17_c01101{font-size:62.568000px;}
.fs6_c01101{font-size:62.726400px;}
.fs14_c01101{font-size:65.577798px;}
.fs1d_c01101{font-size:66.330000px;}
.fs20_c01101{font-size:66.528000px;}
.fsa_c01101{font-size:67.716198px;}
.fs12_c01101{font-size:68.112198px;}
.fs7_c01101{font-size:71.280000px;}
.fse_c01101{font-size:71.874000px;}
.fs1b_c01101{font-size:73.062198px;}
.fs5_c01101{font-size:73.656198px;}
.fs4_c01101{font-size:73.854000px;}
.fsf_c01101{font-size:75.240000px;}
.fs11_c01101{font-size:76.032198px;}
.fsb_c01101{font-size:80.784000px;}
.fs1_c01101{font-size:81.180000px;}
.fsd_c01101{font-size:82.368000px;}
.fs18_c01101{font-size:83.556198px;}
.fs1a_c01101{font-size:83.952198px;}
.fs9_c01101{font-size:84.546198px;}
.fs15_c01101{font-size:94.248000px;}
.fs19_c01101{font-size:102.168000px;}
.y0_c01101{bottom:0.000000px;}
.y1_c01101{bottom:76.500000px;}
.y1e_c01101{bottom:94.001535px;}
.y13_c01101{bottom:97.916985px;}
.y1d_c01101{bottom:98.634735px;}
.y1c_c01101{bottom:163.138185px;}
.y1b_c01101{bottom:196.644735px;}
.y1a_c01101{bottom:228.364335px;}
.y19_c01101{bottom:245.471535px;}
.y18_c01101{bottom:261.504585px;}
.y17_c01101{bottom:292.867785px;}
.y16_c01101{bottom:324.235935px;}
.y14_c01101{bottom:324.587385px;}
.y15_c01101{bottom:324.948735px;}
.y12_c01101{bottom:355.237785px;}
.y11_c01101{bottom:388.744335px;}
.y10_c01101{bottom:427.230585px;}
.y2_c01101{bottom:442.912185px;}
.yf_c01101{bottom:452.534985px;}
.ye_c01101{bottom:484.254585px;}
.yd_c01101{bottom:661.385385px;}
.yc_c01101{bottom:676.354185px;}
.yb_c01101{bottom:708.786585px;}
.ya_c01101{bottom:740.149785px;}
.y9_c01101{bottom:772.582185px;}
.y8_c01101{bottom:835.308585px;}
.y7_c01101{bottom:868.102335px;}
.y6_c01101{bottom:932.254335px;}
.y5_c01101{bottom:964.325385px;}
.y4_c01101{bottom:977.512185px;}
.y3_c01101{bottom:1067.681385px;}
.h26_c01101{height:14.574657px;}
.h25_c01101{height:15.546094px;}
.h20_c01101{height:23.128875px;}
.h4_c01101{height:28.911094px;}
.h24_c01101{height:29.117602px;}
.h5_c01101{height:34.693313px;}
.h21_c01101{height:36.079217px;}
.h12_c01101{height:37.028666px;}
.ha_c01101{height:37.978116px;}
.he_c01101{height:39.877015px;}
.h17_c01101{height:40.826465px;}
.h8_c01101{height:41.775782px;}
.h15_c01101{height:43.674813px;}
.h27_c01101{height:46.638281px;}
.h1a_c01101{height:47.472480px;}
.h1e_c01101{height:52.856913px;}
.h22_c01101{height:56.170332px;}
.h2_c01101{height:59.061234px;}
.h18_c01101{height:65.256469px;}
.h23_c01101{height:67.047750px;}
.h1f_c01101{height:69.180117px;}
.h10_c01101{height:70.540400px;}
.hc_c01101{height:70.625878px;}
.h14_c01101{height:71.038894px;}
.h1d_c01101{height:71.706552px;}
.h7_c01101{height:72.289530px;}
.h6_c01101{height:72.483662px;}
.h11_c01101{height:73.843945px;}
.h9_c01101{height:74.342813px;}
.h13_c01101{height:74.621444px;}
.hd_c01101{height:79.285078px;}
.h3_c01101{height:79.673730px;}
.hf_c01101{height:80.839688px;}
.h19_c01101{height:82.005839px;}
.h1c_c01101{height:82.394491px;}
.hb_c01101{height:82.977470px;}
.h16_c01101{height:92.499258px;}
.h1b_c01101{height:100.272305px;}
.h1_c01101{height:1110.000000px;}
.h0_c01101{height:1263.000000px;}
.w1_c01101{width:775.500000px;}
.w0_c01101{width:892.500000px;}
.x0_c01101{left:0.000000px;}
.x1_c01101{left:58.500000px;}
.x2_c01101{left:64.856535px;}
.x42_c01101{left:94.507035px;}
.xe_c01101{left:95.769285px;}
.x34_c01101{left:100.739085px;}
.x2c_c01101{left:120.415335px;}
.x1b_c01101{left:148.135335px;}
.x35_c01101{left:149.263935px;}
.x6_c01101{left:150.625185px;}
.x63_c01101{left:159.975735px;}
.xf_c01101{left:183.498135px;}
.x5c_c01101{left:194.541585px;}
.x3c_c01101{left:204.114885px;}
.x10_c01101{left:205.985985px;}
.x5f_c01101{left:216.064185px;}
.x3d_c01101{left:227.731335px;}
.x36_c01101{left:236.898735px;}
.x32_c01101{left:238.304535px;}
.x24_c01101{left:239.967735px;}
.x18_c01101{left:249.753885px;}
.x37_c01101{left:251.714085px;}
.x7_c01101{left:260.480535px;}
.x50_c01101{left:261.668535px;}
.x25_c01101{left:271.212135px;}
.x8_c01101{left:272.216985px;}
.x5d_c01101{left:274.320735px;}
.x56_c01101{left:283.453485px;}
.x1c_c01101{left:284.517735px;}
.x5_c01101{left:287.472885px;}
.x49_c01101{left:293.556435px;}
.x3e_c01101{left:294.680085px;}
.x11_c01101{left:295.803735px;}
.x64_c01101{left:305.317635px;}
.x3f_c01101{left:306.614535px;}
.x19_c01101{left:316.776885px;}
.x2d_c01101{left:327.543135px;}
.x57_c01101{left:337.794585px;}
.x9_c01101{left:339.829035px;}
.x1a_c01101{left:340.927935px;}
.x1d_c01101{left:349.560735px;}
.x68_c01101{left:355.589835px;}
.x33_c01101{left:360.633885px;}
.x26_c01101{left:371.360535px;}
.x43_c01101{left:372.845535px;}
.x2e_c01101{left:382.765335px;}
.xa_c01101{left:384.185985px;}
.x4a_c01101{left:393.100935px;}
.x58_c01101{left:394.229535px;}
.xb_c01101{left:398.144985px;}
.x60_c01101{left:404.149335px;}
.x44_c01101{left:406.020435px;}
.x51_c01101{left:414.776985px;}
.x40_c01101{left:415.856085px;}
.xc_c01101{left:417.712335px;}
.x12_c01101{left:426.953985px;}
.x27_c01101{left:439.388385px;}
.x38_c01101{left:459.029985px;}
.x39_c01101{left:461.529735px;}
.x13_c01101{left:470.439735px;}
.x1e_c01101{left:471.979185px;}
.xd_c01101{left:474.221535px;}
.x14_c01101{left:483.626535px;}
.x45_c01101{left:494.075985px;}
.x2f_c01101{left:503.723535px;}
.x66_c01101{left:504.787785px;}
.x61_c01101{left:506.079735px;}
.x5e_c01101{left:510.267435px;}
.x28_c01101{left:515.217435px;}
.x1f_c01101{left:517.831035px;}
.x46_c01101{left:538.413135px;}
.x20_c01101{left:548.110185px;}
.x15_c01101{left:552.134535px;}
.x29_c01101{left:561.009885px;}
.x62_c01101{left:569.157585px;}
.x67_c01101{left:571.226685px;}
.x69_c01101{left:578.735835px;}
.x21_c01101{left:582.725535px;}
.x59_c01101{left:584.235285px;}
.x4b_c01101{left:587.962635px;}
.x4c_c01101{left:594.105585px;}
.x6a_c01101{left:597.634935px;}
.x16_c01101{left:605.178735px;}
.x30_c01101{left:613.960035px;}
.x52_c01101{left:615.088635px;}
.x22_c01101{left:625.369785px;}
.x4d_c01101{left:628.107135px;}
.x4e_c01101{left:636.873585px;}
.x47_c01101{left:638.368485px;}
.x53_c01101{left:639.789135px;}
.x6b_c01101{left:642.150285px;}
.x17_c01101{left:648.204135px;}
.x2a_c01101{left:658.574385px;}
.x5a_c01101{left:660.475185px;}
.x3a_c01101{left:668.954535px;}
.x48_c01101{left:670.142535px;}
.x3b_c01101{left:671.805735px;}
.x31_c01101{left:691.679985px;}
.x2b_c01101{left:692.853135px;}
.x4_c01101{left:695.570685px;}
.x6c_c01101{left:699.911835px;}
.x41_c01101{left:700.990935px;}
.x23_c01101{left:703.901535px;}
.x4f_c01101{left:709.495035px;}
.x3_c01101{left:712.529385px;}
.x5b_c01101{left:713.999535px;}
.x54_c01101{left:715.801335px;}
.x65_c01101{left:724.929135px;}
.x55_c01101{left:736.967535px;}
@media print{
.v1_c01101{vertical-align:-41.817600pt;}
.v3_c01101{vertical-align:-3.786464pt;}
.v0_c01101{vertical-align:0.000000pt;}
.v2_c01101{vertical-align:3.784000pt;}
.ls1b_c01101{letter-spacing:-2.932160pt;}
.ls14_c01101{letter-spacing:-2.562560pt;}
.ls19_c01101{letter-spacing:-2.365446pt;}
.ls9_c01101{letter-spacing:-2.297680pt;}
.ls21_c01101{letter-spacing:-2.291526pt;}
.ls24_c01101{letter-spacing:-2.273046pt;}
.ls2b_c01101{letter-spacing:-2.069760pt;}
.lsb_c01101{letter-spacing:-2.068921pt;}
.ls2a_c01101{letter-spacing:-1.993733pt;}
.ls2e_c01101{letter-spacing:-1.478400pt;}
.ls29_c01101{letter-spacing:-0.818402pt;}
.lsd_c01101{letter-spacing:-0.221760pt;}
.ls6_c01101{letter-spacing:0.000000pt;}
.ls1f_c01101{letter-spacing:0.019642pt;}
.ls5_c01101{letter-spacing:0.493687pt;}
.ls2d_c01101{letter-spacing:0.660009pt;}
.ls2c_c01101{letter-spacing:0.704000pt;}
.ls2_c01101{letter-spacing:1.656076pt;}
.ls0_c01101{letter-spacing:1.953957pt;}
.ls13_c01101{letter-spacing:2.376845pt;}
.ls10_c01101{letter-spacing:2.389629pt;}
.ls26_c01101{letter-spacing:2.393609pt;}
.ls1c_c01101{letter-spacing:2.711262pt;}
.ls1e_c01101{letter-spacing:2.796605pt;}
.ls22_c01101{letter-spacing:2.807488pt;}
.ls1_c01101{letter-spacing:2.859479pt;}
.ls27_c01101{letter-spacing:2.948000pt;}
.ls15_c01101{letter-spacing:3.092179pt;}
.ls25_c01101{letter-spacing:3.247209pt;}
.lsa_c01101{letter-spacing:3.273609pt;}
.ls8_c01101{letter-spacing:3.282400pt;}
.ls16_c01101{letter-spacing:3.344000pt;}
.ls18_c01101{letter-spacing:3.379209pt;}
.ls3_c01101{letter-spacing:3.448544pt;}
.ls11_c01101{letter-spacing:3.590400pt;}
.ls7_c01101{letter-spacing:3.608000pt;}
.ls23_c01101{letter-spacing:3.731209pt;}
.lsf_c01101{letter-spacing:3.757609pt;}
.ls28_c01101{letter-spacing:48.153776pt;}
.ls17_c01101{letter-spacing:49.420976pt;}
.lse_c01101{letter-spacing:50.688176pt;}
.ls12_c01101{letter-spacing:53.222576pt;}
.ls1d_c01101{letter-spacing:54.489776pt;}
.lsc_c01101{letter-spacing:55.756800pt;}
.ls1a_c01101{letter-spacing:58.291376pt;}
.ls20_c01101{letter-spacing:63.360000pt;}
.ls4_c01101{letter-spacing:232.883200pt;}
.ws1_c01101{word-spacing:0.000000pt;}
.ws0_c01101{word-spacing:6.177600pt;}
._6_c01101{margin-left:-18.509041pt;}
._2_c01101{margin-left:-12.718179pt;}
._0_c01101{margin-left:-11.396528pt;}
._4_c01101{margin-left:-5.867884pt;}
._a_c01101{width:6.798802pt;}
._7_c01101{width:13.866337pt;}
._3_c01101{width:16.823786pt;}
._b_c01101{width:25.721236pt;}
._5_c01101{width:34.745134pt;}
._9_c01101{width:100.730730pt;}
._1_c01101{width:149.119031pt;}
._8_c01101{width:443.864608pt;}
.fs28_c01101{font-size:3.696000pt;}
.fs26_c01101{font-size:4.048176pt;}
.fs23_c01101{font-size:5.456000pt;}
.fs25_c01101{font-size:13.200176pt;}
.fs24_c01101{font-size:14.080000pt;}
.fs1e_c01101{font-size:19.712000pt;}
.fs22_c01101{font-size:21.648000pt;}
.fs2_c01101{font-size:24.640000pt;}
.fs21_c01101{font-size:24.816000pt;}
.fs3_c01101{font-size:29.568000pt;}
.fs13_c01101{font-size:29.920000pt;}
.fs27_c01101{font-size:42.240000pt;}
.fs1c_c01101{font-size:47.872176pt;}
.fs1f_c01101{font-size:48.153776pt;}
.fs10_c01101{font-size:49.420976pt;}
.fs0_c01101{font-size:50.336000pt;}
.fs8_c01101{font-size:50.688176pt;}
.fsc_c01101{font-size:53.222576pt;}
.fs16_c01101{font-size:54.489776pt;}
.fs17_c01101{font-size:55.616000pt;}
.fs6_c01101{font-size:55.756800pt;}
.fs14_c01101{font-size:58.291376pt;}
.fs1d_c01101{font-size:58.960000pt;}
.fs20_c01101{font-size:59.136000pt;}
.fsa_c01101{font-size:60.192176pt;}
.fs12_c01101{font-size:60.544176pt;}
.fs7_c01101{font-size:63.360000pt;}
.fse_c01101{font-size:63.888000pt;}
.fs1b_c01101{font-size:64.944176pt;}
.fs5_c01101{font-size:65.472176pt;}
.fs4_c01101{font-size:65.648000pt;}
.fsf_c01101{font-size:66.880000pt;}
.fs11_c01101{font-size:67.584176pt;}
.fsb_c01101{font-size:71.808000pt;}
.fs1_c01101{font-size:72.160000pt;}
.fsd_c01101{font-size:73.216000pt;}
.fs18_c01101{font-size:74.272176pt;}
.fs1a_c01101{font-size:74.624176pt;}
.fs9_c01101{font-size:75.152176pt;}
.fs15_c01101{font-size:83.776000pt;}
.fs19_c01101{font-size:90.816000pt;}
.y0_c01101{bottom:0.000000pt;}
.y1_c01101{bottom:68.000000pt;}
.y1e_c01101{bottom:83.556920pt;}
.y13_c01101{bottom:87.037320pt;}
.y1d_c01101{bottom:87.675320pt;}
.y1c_c01101{bottom:145.011720pt;}
.y1b_c01101{bottom:174.795320pt;}
.y1a_c01101{bottom:202.990520pt;}
.y19_c01101{bottom:218.196920pt;}
.y18_c01101{bottom:232.448520pt;}
.y17_c01101{bottom:260.326920pt;}
.y16_c01101{bottom:288.209720pt;}
.y14_c01101{bottom:288.522120pt;}
.y15_c01101{bottom:288.843320pt;}
.y12_c01101{bottom:315.766920pt;}
.y11_c01101{bottom:345.550520pt;}
.y10_c01101{bottom:379.760520pt;}
.y2_c01101{bottom:393.699720pt;}
.yf_c01101{bottom:402.253320pt;}
.ye_c01101{bottom:430.448520pt;}
.yd_c01101{bottom:587.898120pt;}
.yc_c01101{bottom:601.203720pt;}
.yb_c01101{bottom:630.032520pt;}
.ya_c01101{bottom:657.910920pt;}
.y9_c01101{bottom:686.739720pt;}
.y8_c01101{bottom:742.496520pt;}
.y7_c01101{bottom:771.646520pt;}
.y6_c01101{bottom:828.670520pt;}
.y5_c01101{bottom:857.178120pt;}
.y4_c01101{bottom:868.899720pt;}
.y3_c01101{bottom:949.050120pt;}
.h26_c01101{height:12.955251pt;}
.h25_c01101{height:13.818750pt;}
.h20_c01101{height:20.559000pt;}
.h4_c01101{height:25.698750pt;}
.h24_c01101{height:25.882313pt;}
.h5_c01101{height:30.838500pt;}
.h21_c01101{height:32.070415pt;}
.h12_c01101{height:32.914370pt;}
.ha_c01101{height:33.758325pt;}
.he_c01101{height:35.446236pt;}
.h17_c01101{height:36.290191pt;}
.h8_c01101{height:37.134029pt;}
.h15_c01101{height:38.822056pt;}
.h27_c01101{height:41.456250pt;}
.h1a_c01101{height:42.197760pt;}
.h1e_c01101{height:46.983923pt;}
.h22_c01101{height:49.929184pt;}
.h2_c01101{height:52.498875pt;}
.h18_c01101{height:58.005750pt;}
.h23_c01101{height:59.598000pt;}
.h1f_c01101{height:61.493438pt;}
.h10_c01101{height:62.702578pt;}
.hc_c01101{height:62.778559pt;}
.h14_c01101{height:63.145684pt;}
.h1d_c01101{height:63.739157pt;}
.h7_c01101{height:64.257360pt;}
.h6_c01101{height:64.429922pt;}
.h11_c01101{height:65.639063pt;}
.h9_c01101{height:66.082500pt;}
.h13_c01101{height:66.330173pt;}
.hd_c01101{height:70.475625pt;}
.h3_c01101{height:70.821094pt;}
.hf_c01101{height:71.857500pt;}
.h19_c01101{height:72.894079pt;}
.h1c_c01101{height:73.239548pt;}
.hb_c01101{height:73.757751pt;}
.h16_c01101{height:82.221563pt;}
.h1b_c01101{height:89.130938pt;}
.h1_c01101{height:986.666667pt;}
.h0_c01101{height:1122.666667pt;}
.w1_c01101{width:689.333333pt;}
.w0_c01101{width:793.333333pt;}
.x0_c01101{left:0.000000pt;}
.x1_c01101{left:52.000000pt;}
.x2_c01101{left:57.650253pt;}
.x42_c01101{left:84.006253pt;}
.xe_c01101{left:85.128253pt;}
.x34_c01101{left:89.545853pt;}
.x2c_c01101{left:107.035853pt;}
.x1b_c01101{left:131.675853pt;}
.x35_c01101{left:132.679053pt;}
.x6_c01101{left:133.889053pt;}
.x63_c01101{left:142.200653pt;}
.xf_c01101{left:163.109453pt;}
.x5c_c01101{left:172.925853pt;}
.x3c_c01101{left:181.435453pt;}
.x10_c01101{left:183.098653pt;}
.x5f_c01101{left:192.057053pt;}
.x3d_c01101{left:202.427853pt;}
.x36_c01101{left:210.576653pt;}
.x32_c01101{left:211.826253pt;}
.x24_c01101{left:213.304653pt;}
.x18_c01101{left:222.003453pt;}
.x37_c01101{left:223.745853pt;}
.x7_c01101{left:231.538253pt;}
.x50_c01101{left:232.594253pt;}
.x25_c01101{left:241.077453pt;}
.x8_c01101{left:241.970653pt;}
.x5d_c01101{left:243.840653pt;}
.x56_c01101{left:251.958653pt;}
.x1c_c01101{left:252.904653pt;}
.x5_c01101{left:255.531453pt;}
.x49_c01101{left:260.939053pt;}
.x3e_c01101{left:261.937853pt;}
.x11_c01101{left:262.936653pt;}
.x64_c01101{left:271.393453pt;}
.x3f_c01101{left:272.546253pt;}
.x19_c01101{left:281.579453pt;}
.x2d_c01101{left:291.149453pt;}
.x57_c01101{left:300.261853pt;}
.x9_c01101{left:302.070253pt;}
.x1a_c01101{left:303.047053pt;}
.x1d_c01101{left:310.720653pt;}
.x68_c01101{left:316.079853pt;}
.x33_c01101{left:320.563453pt;}
.x26_c01101{left:330.098253pt;}
.x43_c01101{left:331.418253pt;}
.x2e_c01101{left:340.235853pt;}
.xa_c01101{left:341.498653pt;}
.x4a_c01101{left:349.423053pt;}
.x58_c01101{left:350.426253pt;}
.xb_c01101{left:353.906653pt;}
.x60_c01101{left:359.243853pt;}
.x44_c01101{left:360.907053pt;}
.x51_c01101{left:368.690653pt;}
.x40_c01101{left:369.649853pt;}
.xc_c01101{left:371.299853pt;}
.x12_c01101{left:379.514653pt;}
.x27_c01101{left:390.567453pt;}
.x38_c01101{left:408.026653pt;}
.x39_c01101{left:410.248653pt;}
.x13_c01101{left:418.168653pt;}
.x1e_c01101{left:419.537053pt;}
.xd_c01101{left:421.530253pt;}
.x14_c01101{left:429.890253pt;}
.x45_c01101{left:439.178653pt;}
.x2f_c01101{left:447.754253pt;}
.x66_c01101{left:448.700253pt;}
.x61_c01101{left:449.848653pt;}
.x5e_c01101{left:453.571053pt;}
.x28_c01101{left:457.971053pt;}
.x1f_c01101{left:460.294253pt;}
.x46_c01101{left:478.589453pt;}
.x20_c01101{left:487.209053pt;}
.x15_c01101{left:490.786253pt;}
.x29_c01101{left:498.675453pt;}
.x62_c01101{left:505.917853pt;}
.x67_c01101{left:507.757053pt;}
.x69_c01101{left:514.431853pt;}
.x21_c01101{left:517.978253pt;}
.x59_c01101{left:519.320253pt;}
.x4b_c01101{left:522.633453pt;}
.x4c_c01101{left:528.093853pt;}
.x6a_c01101{left:531.231053pt;}
.x16_c01101{left:537.936653pt;}
.x30_c01101{left:545.742253pt;}
.x52_c01101{left:546.745453pt;}
.x22_c01101{left:555.884253pt;}
.x4d_c01101{left:558.317453pt;}
.x4e_c01101{left:566.109853pt;}
.x47_c01101{left:567.438653pt;}
.x53_c01101{left:568.701453pt;}
.x6b_c01101{left:570.800253pt;}
.x17_c01101{left:576.181453pt;}
.x2a_c01101{left:585.399453pt;}
.x5a_c01101{left:587.089053pt;}
.x3a_c01101{left:594.626253pt;}
.x48_c01101{left:595.682253pt;}
.x3b_c01101{left:597.160653pt;}
.x31_c01101{left:614.826653pt;}
.x2b_c01101{left:615.869453pt;}
.x4_c01101{left:618.285053pt;}
.x6c_c01101{left:622.143853pt;}
.x41_c01101{left:623.103053pt;}
.x23_c01101{left:625.690253pt;}
.x4f_c01101{left:630.662253pt;}
.x3_c01101{left:633.359453pt;}
.x5b_c01101{left:634.666253pt;}
.x54_c01101{left:636.267853pt;}
.x65_c01101{left:644.381453pt;}
.x55_c01101{left:655.082253pt;}
}





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

.ir_c01102:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01102{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01102;src:url('chunks/assets/font_1ebb9d706d7f12ad469665b6.woff2')format("woff");}.ff1_c01102{font-family:ff1_c01102;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01102;src:url('chunks/assets/font_1c901f253455a243b6fcdc58.woff2')format("woff");}.ff2_c01102{font-family:ff2_c01102;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01102;src:url('chunks/assets/font_5df60ab1f04dd26998be6af2.woff2')format("woff");}.ff3_c01102{font-family:ff3_c01102;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01102;src:url('chunks/assets/font_d01aefbaf1ea66e7a26eea18.woff2')format("woff");}.ff4_c01102{font-family:ff4_c01102;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m17_c01102{transform:matrix(0.026596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026596,0.000000,0.000000,0.250000,0,0);}
.m14_c01102{transform:matrix(0.064495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064495,0.000000,0.000000,0.250000,0,0);}
.m1e_c01102{transform:matrix(0.065958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065958,0.000000,0.000000,0.250000,0,0);}
.maa_c01102{transform:matrix(0.070653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070653,0.000000,0.000000,0.250000,0,0);}
.m16_c01102{transform:matrix(0.074468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.074468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.074468,0.000000,0.000000,0.250000,0,0);}
.m1a_c01102{transform:matrix(0.075798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075798,0.000000,0.000000,0.250000,0,0);}
.mab_c01102{transform:matrix(0.081521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081521,0.000000,0.000000,0.250000,0,0);}
.m13_c01102{transform:matrix(0.087235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087235,0.000000,0.000000,0.250000,0,0);}
.m18_c01102{transform:matrix(0.094225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094225,0.000000,0.000000,0.250000,0,0);}
.m8f_c01102{transform:matrix(0.102310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102310,0.000000,0.000000,0.250000,0,0);}
.ma2_c01102{transform:matrix(0.105555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105555,0.000000,0.000000,0.250000,0,0);}
.m2e_c01102{transform:matrix(0.118864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118864,0.000000,0.000000,0.250000,0,0);}
.m19_c01102{transform:matrix(0.130320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130320,0.000000,0.000000,0.250000,0,0);}
.m22_c01102{transform:matrix(0.154830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154830,0.000000,0.000000,0.250000,0,0);}
.m23_c01102{transform:matrix(0.154959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154959,0.000000,0.000000,0.250000,0,0);}
.m55_c01102{transform:matrix(0.155364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155364,0.000000,0.000000,0.250000,0,0);}
.m15_c01102{transform:matrix(0.155669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155669,0.000000,0.000000,0.250000,0,0);}
.m51_c01102{transform:matrix(0.156177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156177,0.000000,0.000000,0.250000,0,0);}
.m1c_c01102{transform:matrix(0.156916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156916,0.000000,0.000000,0.250000,0,0);}
.mb1_c01102{transform:matrix(0.160312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160312,0.000000,0.000000,0.250000,0,0);}
.m9b_c01102{transform:matrix(0.165698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165698,0.000000,0.000000,0.250000,0,0);}
.ma9_c01102{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);}
.m7c_c01102{transform:matrix(0.169608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169608,0.000000,0.000000,0.250000,0,0);}
.m4_c01102{transform:matrix(0.172298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172298,0.000000,0.000000,0.250000,0,0);}
.m9e_c01102{transform:matrix(0.172481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172481,0.000000,0.000000,0.250000,0,0);}
.m39_c01102{transform:matrix(0.173296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173296,0.000000,0.000000,0.250000,0,0);}
.m46_c01102{transform:matrix(0.175159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175159,0.000000,0.000000,0.250000,0,0);}
.m53_c01102{transform:matrix(0.178488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178488,0.000000,0.000000,0.250000,0,0);}
.m1f_c01102{transform:matrix(0.181321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181321,0.000000,0.000000,0.250000,0,0);}
.ma3_c01102{transform:matrix(0.185817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185817,0.000000,0.000000,0.250000,0,0);}
.m20_c01102{transform:matrix(0.190767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190767,0.000000,0.000000,0.250000,0,0);}
.m74_c01102{transform:matrix(0.193660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193660,0.000000,0.000000,0.250000,0,0);}
.m1b_c01102{transform:matrix(0.202184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202184,0.000000,0.000000,0.250000,0,0);}
.m43_c01102{transform:matrix(0.221124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221124,0.000000,0.000000,0.250000,0,0);}
.m1d_c01102{transform:matrix(0.224032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224032,0.000000,0.000000,0.250000,0,0);}
.mb2_c01102{transform:matrix(0.228074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228074,0.000000,0.000000,0.250000,0,0);}
.m3_c01102{transform:matrix(0.229521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229521,0.000000,0.000000,0.250000,0,0);}
.m50_c01102{transform:matrix(0.231619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231619,0.000000,0.000000,0.250000,0,0);}
.mf_c01102{transform:matrix(0.231935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231935,0.000000,0.000000,0.250000,0,0);}
.m42_c01102{transform:matrix(0.233438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233438,0.000000,0.000000,0.250000,0,0);}
.m30_c01102{transform:matrix(0.239453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239453,0.000000,0.000000,0.250000,0,0);}
.m48_c01102{transform:matrix(0.243785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243785,0.000000,0.000000,0.250000,0,0);}
.m6e_c01102{transform:matrix(0.243790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243790,0.000000,0.000000,0.250000,0,0);}
.me_c01102{transform:matrix(0.245424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245424,0.000000,0.000000,0.250000,0,0);}
.m0_c01102{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.ma6_c01102{transform:matrix(0.251364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251364,0.000000,0.000000,0.250000,0,0);}
.m7f_c01102{transform:matrix(0.252158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252158,0.000000,0.000000,0.250000,0,0);}
.ma0_c01102{transform:matrix(0.252170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252170,0.000000,0.000000,0.250000,0,0);}
.m45_c01102{transform:matrix(0.257236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257236,0.000000,0.000000,0.250000,0,0);}
.mb0_c01102{transform:matrix(0.259280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259280,0.000000,0.000000,0.250000,0,0);}
.ma7_c01102{transform:matrix(0.259384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259384,0.000000,0.000000,0.250000,0,0);}
.m68_c01102{transform:matrix(0.259700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259700,0.000000,0.000000,0.250000,0,0);}
.m2a_c01102{transform:matrix(0.261232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261232,0.000000,0.000000,0.250000,0,0);}
.m2b_c01102{transform:matrix(0.262907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262907,0.000000,0.000000,0.250000,0,0);}
.m41_c01102{transform:matrix(0.263107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263107,0.000000,0.000000,0.250000,0,0);}
.m35_c01102{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m37_c01102{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m3d_c01102{transform:matrix(0.264223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264223,0.000000,0.000000,0.250000,0,0);}
.m79_c01102{transform:matrix(0.265451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265451,0.000000,0.000000,0.250000,0,0);}
.m54_c01102{transform:matrix(0.265671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265671,0.000000,0.000000,0.250000,0,0);}
.m8e_c01102{transform:matrix(0.265822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265822,0.000000,0.000000,0.250000,0,0);}
.m33_c01102{transform:matrix(0.266484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266484,0.000000,0.000000,0.250000,0,0);}
.m73_c01102{transform:matrix(0.266676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266676,0.000000,0.000000,0.250000,0,0);}
.m64_c01102{transform:matrix(0.266946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266946,0.000000,0.000000,0.250000,0,0);}
.m24_c01102{transform:matrix(0.267124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267124,0.000000,0.000000,0.250000,0,0);}
.m8_c01102{transform:matrix(0.267206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267206,0.000000,0.000000,0.250000,0,0);}
.m6b_c01102{transform:matrix(0.268933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268933,0.000000,0.000000,0.250000,0,0);}
.m12_c01102{transform:matrix(0.269300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269300,0.000000,0.000000,0.250000,0,0);}
.m7a_c01102{transform:matrix(0.270277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270277,0.000000,0.000000,0.250000,0,0);}
.m38_c01102{transform:matrix(0.270684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270684,0.000000,0.000000,0.250000,0,0);}
.m32_c01102{transform:matrix(0.271063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271063,0.000000,0.000000,0.250000,0,0);}
.m6d_c01102{transform:matrix(0.271877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271877,0.000000,0.000000,0.250000,0,0);}
.m96_c01102{transform:matrix(0.272173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272173,0.000000,0.000000,0.250000,0,0);}
.maf_c01102{transform:matrix(0.272868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272868,0.000000,0.000000,0.250000,0,0);}
.m6a_c01102{transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);}
.md_c01102{transform:matrix(0.272956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272956,0.000000,0.000000,0.250000,0,0);}
.m11_c01102{transform:matrix(0.273015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273015,0.000000,0.000000,0.250000,0,0);}
.m80_c01102{transform:matrix(0.273752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273752,0.000000,0.000000,0.250000,0,0);}
.m26_c01102{transform:matrix(0.274838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274838,0.000000,0.000000,0.250000,0,0);}
.m5b_c01102{transform:matrix(0.275231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275231,0.000000,0.000000,0.250000,0,0);}
.m7b_c01102{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m90_c01102{transform:matrix(0.275702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275702,0.000000,0.000000,0.250000,0,0);}
.m6c_c01102{transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);}
.m29_c01102{transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);}
.mac_c01102{transform:matrix(0.276404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276404,0.000000,0.000000,0.250000,0,0);}
.m9f_c01102{transform:matrix(0.279299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279299,0.000000,0.000000,0.250000,0,0);}
.m59_c01102{transform:matrix(0.279348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279348,0.000000,0.000000,0.250000,0,0);}
.m8d_c01102{transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);}
.m5_c01102{transform:matrix(0.282184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282184,0.000000,0.000000,0.250000,0,0);}
.m81_c01102{transform:matrix(0.282936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282936,0.000000,0.000000,0.250000,0,0);}
.m7d_c01102{transform:matrix(0.283010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283010,0.000000,0.000000,0.250000,0,0);}
.m10_c01102{transform:matrix(0.283013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283013,0.000000,0.000000,0.250000,0,0);}
.m98_c01102{transform:matrix(0.284164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284164,0.000000,0.000000,0.250000,0,0);}
.m56_c01102{transform:matrix(0.285491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285491,0.000000,0.000000,0.250000,0,0);}
.m65_c01102{transform:matrix(0.286350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286350,0.000000,0.000000,0.250000,0,0);}
.m8c_c01102{transform:matrix(0.286737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286737,0.000000,0.000000,0.250000,0,0);}
.m2d_c01102{transform:matrix(0.287355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287355,0.000000,0.000000,0.250000,0,0);}
.mc_c01102{transform:matrix(0.288186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288186,0.000000,0.000000,0.250000,0,0);}
.m3b_c01102{transform:matrix(0.288871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288871,0.000000,0.000000,0.250000,0,0);}
.m4e_c01102{transform:matrix(0.289414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289414,0.000000,0.000000,0.250000,0,0);}
.m9_c01102{transform:matrix(0.289487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289487,0.000000,0.000000,0.250000,0,0);}
.m84_c01102{transform:matrix(0.289718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289718,0.000000,0.000000,0.250000,0,0);}
.m92_c01102{transform:matrix(0.290580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290580,0.000000,0.000000,0.250000,0,0);}
.m8b_c01102{transform:matrix(0.291732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291732,0.000000,0.000000,0.250000,0,0);}
.m1_c01102{transform:matrix(0.291922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291922,0.000000,0.000000,0.250000,0,0);}
.m6f_c01102{transform:matrix(0.292362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292362,0.000000,0.000000,0.250000,0,0);}
.m5d_c01102{transform:matrix(0.292407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292407,0.000000,0.000000,0.250000,0,0);}
.m3f_c01102{transform:matrix(0.293079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293079,0.000000,0.000000,0.250000,0,0);}
.m5c_c01102{transform:matrix(0.293954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293954,0.000000,0.000000,0.250000,0,0);}
.m2f_c01102{transform:matrix(0.295112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295112,0.000000,0.000000,0.250000,0,0);}
.m61_c01102{transform:matrix(0.295475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295475,0.000000,0.000000,0.250000,0,0);}
.m9a_c01102{transform:matrix(0.297129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297129,0.000000,0.000000,0.250000,0,0);}
.m63_c01102{transform:matrix(0.297244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297244,0.000000,0.000000,0.250000,0,0);}
.m77_c01102{transform:matrix(0.297709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297709,0.000000,0.000000,0.250000,0,0);}
.m8a_c01102{transform:matrix(0.299056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299056,0.000000,0.000000,0.250000,0,0);}
.m78_c01102{transform:matrix(0.300528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300528,0.000000,0.000000,0.250000,0,0);}
.m40_c01102{transform:matrix(0.300751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300751,0.000000,0.000000,0.250000,0,0);}
.m47_c01102{transform:matrix(0.301465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301465,0.000000,0.000000,0.250000,0,0);}
.m83_c01102{transform:matrix(0.302935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302935,0.000000,0.000000,0.250000,0,0);}
.m3c_c01102{transform:matrix(0.305056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305056,0.000000,0.000000,0.250000,0,0);}
.m6_c01102{transform:matrix(0.306902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306902,0.000000,0.000000,0.250000,0,0);}
.m4b_c01102{transform:matrix(0.307690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307690,0.000000,0.000000,0.250000,0,0);}
.ma1_c01102{transform:matrix(0.308982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308982,0.000000,0.000000,0.250000,0,0);}
.m62_c01102{transform:matrix(0.309638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309638,0.000000,0.000000,0.250000,0,0);}
.m49_c01102{transform:matrix(0.310751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310751,0.000000,0.000000,0.250000,0,0);}
.m31_c01102{transform:matrix(0.311549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311549,0.000000,0.000000,0.250000,0,0);}
.m95_c01102{transform:matrix(0.311677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311677,0.000000,0.000000,0.250000,0,0);}
.m9c_c01102{transform:matrix(0.311683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311683,0.000000,0.000000,0.250000,0,0);}
.m60_c01102{transform:matrix(0.312022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312022,0.000000,0.000000,0.250000,0,0);}
.m69_c01102{transform:matrix(0.312867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312867,0.000000,0.000000,0.250000,0,0);}
.m57_c01102{transform:matrix(0.313316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313316,0.000000,0.000000,0.250000,0,0);}
.mad_c01102{transform:matrix(0.313693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313693,0.000000,0.000000,0.250000,0,0);}
.m28_c01102{transform:matrix(0.314599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314599,0.000000,0.000000,0.250000,0,0);}
.m89_c01102{transform:matrix(0.314645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314645,0.000000,0.000000,0.250000,0,0);}
.m4c_c01102{transform:matrix(0.314752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314752,0.000000,0.000000,0.250000,0,0);}
.mae_c01102{transform:matrix(0.314921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314921,0.000000,0.000000,0.250000,0,0);}
.m70_c01102{transform:matrix(0.315015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315015,0.000000,0.000000,0.250000,0,0);}
.m3a_c01102{transform:matrix(0.316989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316989,0.000000,0.000000,0.250000,0,0);}
.m3e_c01102{transform:matrix(0.317188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317188,0.000000,0.000000,0.250000,0,0);}
.m2_c01102{transform:matrix(0.319669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319669,0.000000,0.000000,0.250000,0,0);}
.m4f_c01102{transform:matrix(0.322339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322339,0.000000,0.000000,0.250000,0,0);}
.m4a_c01102{transform:matrix(0.323729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323729,0.000000,0.000000,0.250000,0,0);}
.m85_c01102{transform:matrix(0.323913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323913,0.000000,0.000000,0.250000,0,0);}
.m9d_c01102{transform:matrix(0.324404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324404,0.000000,0.000000,0.250000,0,0);}
.m34_c01102{transform:matrix(0.325190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325190,0.000000,0.000000,0.250000,0,0);}
.m88_c01102{transform:matrix(0.325789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325789,0.000000,0.000000,0.250000,0,0);}
.m72_c01102{transform:matrix(0.328202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328202,0.000000,0.000000,0.250000,0,0);}
.m87_c01102{transform:matrix(0.330149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330149,0.000000,0.000000,0.250000,0,0);}
.m5e_c01102{transform:matrix(0.331311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331311,0.000000,0.000000,0.250000,0,0);}
.m67_c01102{transform:matrix(0.335202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335202,0.000000,0.000000,0.250000,0,0);}
.m97_c01102{transform:matrix(0.338515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338515,0.000000,0.000000,0.250000,0,0);}
.ma5_c01102{transform:matrix(0.341665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341665,0.000000,0.000000,0.250000,0,0);}
.m58_c01102{transform:matrix(0.342661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342661,0.000000,0.000000,0.250000,0,0);}
.m36_c01102{transform:matrix(0.342694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342694,0.000000,0.000000,0.250000,0,0);}
.m21_c01102{transform:matrix(0.343804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343804,0.000000,0.000000,0.250000,0,0);}
.m76_c01102{transform:matrix(0.344322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344322,0.000000,0.000000,0.250000,0,0);}
.m94_c01102{transform:matrix(0.350261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350261,0.000000,0.000000,0.250000,0,0);}
.m93_c01102{transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);}
.ma_c01102{transform:matrix(0.357097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357097,0.000000,0.000000,0.250000,0,0);}
.mb_c01102{transform:matrix(0.358110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358110,0.000000,0.000000,0.250000,0,0);}
.m91_c01102{transform:matrix(0.358453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358453,0.000000,0.000000,0.250000,0,0);}
.m4d_c01102{transform:matrix(0.360284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360284,0.000000,0.000000,0.250000,0,0);}
.m44_c01102{transform:matrix(0.362157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362157,0.000000,0.000000,0.250000,0,0);}
.m5a_c01102{transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);}
.m7e_c01102{transform:matrix(0.368367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368367,0.000000,0.000000,0.250000,0,0);}
.m5f_c01102{transform:matrix(0.374589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374589,0.000000,0.000000,0.250000,0,0);}
.m52_c01102{transform:matrix(0.376282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376282,0.000000,0.000000,0.250000,0,0);}
.ma8_c01102{transform:matrix(0.377727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377727,0.000000,0.000000,0.250000,0,0);}
.m2c_c01102{transform:matrix(0.383333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383333,0.000000,0.000000,0.250000,0,0);}
.ma4_c01102{transform:matrix(0.384012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384012,0.000000,0.000000,0.250000,0,0);}
.m7_c01102{transform:matrix(0.385185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385185,0.000000,0.000000,0.250000,0,0);}
.m82_c01102{transform:matrix(0.385437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385437,0.000000,0.000000,0.250000,0,0);}
.m75_c01102{transform:matrix(0.391460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391460,0.000000,0.000000,0.250000,0,0);}
.m25_c01102{transform:matrix(0.395201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395201,0.000000,0.000000,0.250000,0,0);}
.m71_c01102{transform:matrix(0.396213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396213,0.000000,0.000000,0.250000,0,0);}
.m86_c01102{transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);}
.m99_c01102{transform:matrix(0.412048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412048,0.000000,0.000000,0.250000,0,0);}
.m27_c01102{transform:matrix(0.412282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412282,0.000000,0.000000,0.250000,0,0);}
.m66_c01102{transform:matrix(0.418624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418624,0.000000,0.000000,0.250000,0,0);}
.v0_c01102{vertical-align:0.000000px;}
.ls5_c01102{letter-spacing:-3.354127px;}
.lsa_c01102{letter-spacing:-2.938327px;}
.ls24_c01102{letter-spacing:-2.785867px;}
.ls1d_c01102{letter-spacing:-2.772000px;}
.ls1a_c01102{letter-spacing:-2.744280px;}
.ls20_c01102{letter-spacing:-2.661127px;}
.ls1f_c01102{letter-spacing:-2.647267px;}
.ls21_c01102{letter-spacing:-2.633400px;}
.ls10_c01102{letter-spacing:-2.605680px;}
.lsb_c01102{letter-spacing:-2.550240px;}
.ls1c_c01102{letter-spacing:-2.494800px;}
.ls13_c01102{letter-spacing:-2.418180px;}
.ls2b_c01102{letter-spacing:-2.383927px;}
.ls2a_c01102{letter-spacing:-2.254514px;}
.lsf_c01102{letter-spacing:-2.162167px;}
.ls2f_c01102{letter-spacing:-2.102686px;}
.ls11_c01102{letter-spacing:-1.898820px;}
.ls23_c01102{letter-spacing:-1.520287px;}
.ls1e_c01102{letter-spacing:-1.434517px;}
.ls3_c01102{letter-spacing:0.000000px;}
.ls15_c01102{letter-spacing:1.285815px;}
.ls1_c01102{letter-spacing:1.779307px;}
.ls18_c01102{letter-spacing:1.796577px;}
.ls28_c01102{letter-spacing:2.851200px;}
.ls2_c01102{letter-spacing:3.104957px;}
.ls25_c01102{letter-spacing:3.207610px;}
.lsc_c01102{letter-spacing:3.435310px;}
.ls22_c01102{letter-spacing:3.445200px;}
.ls7_c01102{letter-spacing:3.465000px;}
.ls27_c01102{letter-spacing:3.484810px;}
.lsd_c01102{letter-spacing:3.643200px;}
.ls8_c01102{letter-spacing:3.722400px;}
.ls14_c01102{letter-spacing:3.781810px;}
.ls4_c01102{letter-spacing:3.801610px;}
.ls2d_c01102{letter-spacing:3.904560px;}
.ls0_c01102{letter-spacing:3.908173px;}
.ls19_c01102{letter-spacing:3.920400px;}
.ls1b_c01102{letter-spacing:3.960000px;}
.ls9_c01102{letter-spacing:3.979810px;}
.ls2c_c01102{letter-spacing:4.118400px;}
.ls17_c01102{letter-spacing:4.237200px;}
.ls6_c01102{letter-spacing:52.747398px;}
.ls12_c01102{letter-spacing:58.449798px;}
.ls26_c01102{letter-spacing:61.300998px;}
.ls16_c01102{letter-spacing:62.726400px;}
.ls29_c01102{letter-spacing:64.152198px;}
.ls2e_c01102{letter-spacing:65.577798px;}
.lse_c01102{letter-spacing:67.003200px;}
.sc__c01102{text-shadow:none;}
.sc0_c01102{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01102{-webkit-text-stroke:0px transparent;}
.sc0_c01102{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01102{word-spacing:-22.706957px;}
.ws0_c01102{word-spacing:-18.612000px;}
.ws2_c01102{word-spacing:-16.806363px;}
.ws3_c01102{word-spacing:0.000000px;}
._1_c01102{margin-left:-14.513169px;}
._b_c01102{margin-left:-11.840004px;}
._0_c01102{margin-left:-7.800969px;}
._7_c01102{margin-left:-2.477693px;}
._c_c01102{width:5.279376px;}
._2_c01102{width:8.710416px;}
._9_c01102{width:11.291148px;}
._a_c01102{width:18.582696px;}
._6_c01102{width:22.480603px;}
._3_c01102{width:24.017252px;}
._8_c01102{width:29.224800px;}
._5_c01102{width:31.557895px;}
._4_c01102{width:74.721125px;}
.fc0_c01102{color:transparent;}
.fs1b_c01102{font-size:22.572000px;}
.fs17_c01102{font-size:25.146000px;}
.fs0_c01102{font-size:27.720000px;}
.fs18_c01102{font-size:28.314000px;}
.fs16_c01102{font-size:40.986198px;}
.fs3_c01102{font-size:52.747398px;}
.fsc_c01102{font-size:54.252000px;}
.fs1f_c01102{font-size:57.024000px;}
.fsd_c01102{font-size:58.449798px;}
.fs1d_c01102{font-size:61.300998px;}
.fsb_c01102{font-size:61.776198px;}
.fs10_c01102{font-size:62.726400px;}
.fs1c_c01102{font-size:64.152198px;}
.fs23_c01102{font-size:65.577798px;}
.fsa_c01102{font-size:67.003200px;}
.fs20_c01102{font-size:68.112198px;}
.fs9_c01102{font-size:68.706198px;}
.fs1a_c01102{font-size:68.904000px;}
.fs4_c01102{font-size:69.300000px;}
.fs1e_c01102{font-size:69.696198px;}
.fs15_c01102{font-size:71.280000px;}
.fs8_c01102{font-size:72.864000px;}
.fs5_c01102{font-size:74.448000px;}
.fs19_c01102{font-size:75.240000px;}
.fsf_c01102{font-size:75.636198px;}
.fs1_c01102{font-size:76.032198px;}
.fs13_c01102{font-size:78.408000px;}
.fs14_c01102{font-size:79.200000px;}
.fs6_c01102{font-size:79.596198px;}
.fs12_c01102{font-size:81.576198px;}
.fse_c01102{font-size:81.972198px;}
.fs21_c01102{font-size:82.368000px;}
.fs7_c01102{font-size:83.952198px;}
.fs22_c01102{font-size:84.150000px;}
.fs11_c01102{font-size:84.744000px;}
.fs2_c01102{font-size:95.832198px;}
.y0_c01102{bottom:0.000000px;}
.y1c_c01102{bottom:65.489535px;}
.y1_c01102{bottom:76.500000px;}
.y1b_c01102{bottom:95.070735px;}
.y1a_c01102{bottom:159.935535px;}
.y19_c01102{bottom:193.080735px;}
.y18_c01102{bottom:225.508185px;}
.y17_c01102{bottom:248.679135px;}
.y16_c01102{bottom:257.945535px;}
.y15_c01102{bottom:290.377935px;}
.y14_c01102{bottom:354.524985px;}
.y13_c01102{bottom:387.313785px;}
.y12_c01102{bottom:420.102585px;}
.y11_c01102{bottom:478.200735px;}
.y10_c01102{bottom:483.185385px;}
.yf_c01102{bottom:515.617785px;}
.ye_c01102{bottom:535.932585px;}
.yd_c01102{bottom:547.693785px;}
.y2_c01102{bottom:570.864735px;}
.yc_c01102{bottom:578.705535px;}
.yb_c01102{bottom:610.420185px;}
.ya_c01102{bottom:642.501135px;}
.y9_c01102{bottom:706.296735px;}
.y8_c01102{bottom:739.085535px;}
.y7_c01102{bottom:803.588985px;}
.y6_c01102{bottom:833.887935px;}
.y5_c01102{bottom:899.465535px;}
.y4_c01102{bottom:931.541535px;}
.y3_c01102{bottom:1068.750585px;}
.h1e_c01102{height:23.541891px;}
.h1a_c01102{height:26.226492px;}
.h2_c01102{height:28.911094px;}
.h1b_c01102{height:29.530617px;}
.h5_c01102{height:35.129767px;}
.h10_c01102{height:38.927565px;}
.h19_c01102{height:40.225712px;}
.h20_c01102{height:40.826465px;}
.h13_c01102{height:41.775782px;}
.h23_c01102{height:42.725364px;}
.h28_c01102{height:43.674813px;}
.hd_c01102{height:44.624131px;}
.h22_c01102{height:55.965938px;}
.hf_c01102{height:56.583141px;}
.he_c01102{height:60.629960px;}
.h24_c01102{height:66.848397px;}
.h1f_c01102{height:66.908738px;}
.ha_c01102{height:71.476453px;}
.hc_c01102{height:71.512031px;}
.hb_c01102{height:71.658417px;}
.h1d_c01102{height:71.864719px;}
.h6_c01102{height:72.277734px;}
.h21_c01102{height:72.690957px;}
.h7_c01102{height:73.066641px;}
.h1c_c01102{height:73.843945px;}
.h12_c01102{height:74.232792px;}
.h18_c01102{height:74.342813px;}
.h3_c01102{height:74.621444px;}
.h16_c01102{height:76.953164px;}
.h17_c01102{height:77.730469px;}
.h8_c01102{height:78.119315px;}
.h15_c01102{height:80.062577px;}
.h11_c01102{height:80.451229px;}
.h27_c01102{height:80.799469px;}
.h25_c01102{height:80.839688px;}
.h9_c01102{height:82.394491px;}
.h26_c01102{height:82.547534px;}
.h14_c01102{height:83.171602px;}
.h4_c01102{height:94.054062px;}
.h1_c01102{height:1110.000000px;}
.h0_c01102{height:1263.000000px;}
.w1_c01102{width:775.500000px;}
.w0_c01102{width:892.500000px;}
.x0_c01102{left:0.000000px;}
.x2_c01102{left:46.566285px;}
.x1_c01102{left:58.500000px;}
.x5b_c01102{left:89.161035px;}
.x32_c01102{left:90.571785px;}
.x10_c01102{left:91.997385px;}
.x11_c01102{left:103.451685px;}
.x6a_c01102{left:143.516985px;}
.x26_c01102{left:144.685185px;}
.xd_c01102{left:146.061285px;}
.x4_c01102{left:147.244335px;}
.x12_c01102{left:169.459935px;}
.x62_c01102{left:176.894835px;}
.x2e_c01102{left:178.686735px;}
.x48_c01102{left:189.205485px;}
.xe_c01102{left:190.789485px;}
.x4f_c01102{left:199.649985px;}
.x13_c01102{left:212.297235px;}
.x6b_c01102{left:220.910235px;}
.x63_c01102{left:222.127935px;}
.x4d_c01102{left:225.414735px;}
.x73_c01102{left:232.008135px;}
.x50_c01102{left:233.027835px;}
.x27_c01102{left:234.463335px;}
.x5_c01102{left:235.948335px;}
.x5c_c01102{left:242.393235px;}
.x60_c01102{left:244.407885px;}
.x14_c01102{left:245.526585px;}
.x3e_c01102{left:248.150085px;}
.x53_c01102{left:255.411735px;}
.x33_c01102{left:257.060085px;}
.x15_c01102{left:258.520335px;}
.x74_c01102{left:263.014935px;}
.x3f_c01102{left:266.890785px;}
.x6_c01102{left:269.068785px;}
.x38_c01102{left:270.400335px;}
.xf_c01102{left:279.354885px;}
.x4e_c01102{left:290.591385px;}
.x64_c01102{left:298.546035px;}
.x49_c01102{left:300.535935px;}
.x16_c01102{left:303.114885px;}
.x65_c01102{left:305.995785px;}
.x5d_c01102{left:310.995285px;}
.x66_c01102{left:312.326835px;}
.x34_c01102{left:323.013885px;}
.x2f_c01102{left:324.226635px;}
.x59_c01102{left:333.166335px;}
.x7_c01102{left:334.874085px;}
.x28_c01102{left:336.408585px;}
.x6c_c01102{left:343.279185px;}
.x39_c01102{left:345.486885px;}
.x70_c01102{left:354.604785px;}
.x17_c01102{left:356.743185px;}
.x35_c01102{left:357.990585px;}
.x51_c01102{left:367.232235px;}
.x4a_c01102{left:378.087585px;}
.x54_c01102{left:379.547835px;}
.x3a_c01102{left:389.675535px;}
.x30_c01102{left:400.446735px;}
.x5e_c01102{left:411.782235px;}
.x36_c01102{left:412.796985px;}
.x29_c01102{left:424.706685px;}
.x31_c01102{left:433.012785px;}
.x5a_c01102{left:434.557185px;}
.x8_c01102{left:436.497585px;}
.x75_c01102{left:443.259285px;}
.x55_c01102{left:444.679935px;}
.x18_c01102{left:445.843185px;}
.x40_c01102{left:456.658935px;}
.x56_c01102{left:466.098585px;}
.x6d_c01102{left:476.350035px;}
.x5f_c01102{left:477.701385px;}
.x19_c01102{left:480.567435px;}
.x76_c01102{left:486.705435px;}
.x1a_c01102{left:491.105985px;}
.x71_c01102{left:498.412185px;}
.x1b_c01102{left:501.441585px;}
.x1c_c01102{left:502.872135px;}
.x61_c01102{left:510.470385px;}
.x2a_c01102{left:512.039535px;}
.x9_c01102{left:523.721535px;}
.x67_c01102{left:532.473135px;}
.x41_c01102{left:533.804685px;}
.x2b_c01102{left:544.511535px;}
.x1d_c01102{left:546.857835px;}
.xa_c01102{left:555.515385px;}
.x1e_c01102{left:556.683585px;}
.x44_c01102{left:557.861685px;}
.x37_c01102{left:567.172635px;}
.x42_c01102{left:577.325085px;}
.x3b_c01102{left:579.265485px;}
.x72_c01102{left:588.913035px;}
.x1f_c01102{left:590.897985px;}
.x43_c01102{left:600.189135px;}
.x52_c01102{left:608.500185px;}
.x20_c01102{left:610.183185px;}
.x2c_c01102{left:612.435435px;}
.x68_c01102{left:621.256335px;}
.x21_c01102{left:623.330385px;}
.x45_c01102{left:624.810435px;}
.x4b_c01102{left:631.839435px;}
.x2d_c01102{left:633.037335px;}
.x6e_c01102{left:642.224535px;}
.x46_c01102{left:644.026335px;}
.x3c_c01102{left:645.580635px;}
.x22_c01102{left:646.793385px;}
.x69_c01102{left:653.035335px;}
.x57_c01102{left:654.064935px;}
.xb_c01102{left:666.934935px;}
.x3d_c01102{left:668.083335px;}
.x77_c01102{left:675.820185px;}
.x58_c01102{left:688.264485px;}
.x23_c01102{left:689.982135px;}
.x4c_c01102{left:699.397035px;}
.xc_c01102{left:700.946385px;}
.x47_c01102{left:704.059935px;}
.x3_c01102{left:707.529885px;}
.x24_c01102{left:713.385735px;}
.x6f_c01102{left:719.518785px;}
.x25_c01102{left:725.636985px;}
@media print{
.v0_c01102{vertical-align:0.000000pt;}
.ls5_c01102{letter-spacing:-2.981446pt;}
.lsa_c01102{letter-spacing:-2.611846pt;}
.ls24_c01102{letter-spacing:-2.476326pt;}
.ls1d_c01102{letter-spacing:-2.464000pt;}
.ls1a_c01102{letter-spacing:-2.439360pt;}
.ls20_c01102{letter-spacing:-2.365446pt;}
.ls1f_c01102{letter-spacing:-2.353126pt;}
.ls21_c01102{letter-spacing:-2.340800pt;}
.ls10_c01102{letter-spacing:-2.316160pt;}
.lsb_c01102{letter-spacing:-2.266880pt;}
.ls1c_c01102{letter-spacing:-2.217600pt;}
.ls13_c01102{letter-spacing:-2.149493pt;}
.ls2b_c01102{letter-spacing:-2.119046pt;}
.ls2a_c01102{letter-spacing:-2.004012pt;}
.lsf_c01102{letter-spacing:-1.921926pt;}
.ls2f_c01102{letter-spacing:-1.869054pt;}
.ls11_c01102{letter-spacing:-1.687840pt;}
.ls23_c01102{letter-spacing:-1.351367pt;}
.ls1e_c01102{letter-spacing:-1.275126pt;}
.ls3_c01102{letter-spacing:0.000000pt;}
.ls15_c01102{letter-spacing:1.142947pt;}
.ls1_c01102{letter-spacing:1.581606pt;}
.ls18_c01102{letter-spacing:1.596957pt;}
.ls28_c01102{letter-spacing:2.534400pt;}
.ls2_c01102{letter-spacing:2.759962pt;}
.ls25_c01102{letter-spacing:2.851209pt;}
.lsc_c01102{letter-spacing:3.053609pt;}
.ls22_c01102{letter-spacing:3.062400pt;}
.ls7_c01102{letter-spacing:3.080000pt;}
.ls27_c01102{letter-spacing:3.097609pt;}
.lsd_c01102{letter-spacing:3.238400pt;}
.ls8_c01102{letter-spacing:3.308800pt;}
.ls14_c01102{letter-spacing:3.361609pt;}
.ls4_c01102{letter-spacing:3.379209pt;}
.ls2d_c01102{letter-spacing:3.470720pt;}
.ls0_c01102{letter-spacing:3.473932pt;}
.ls19_c01102{letter-spacing:3.484800pt;}
.ls1b_c01102{letter-spacing:3.520000pt;}
.ls9_c01102{letter-spacing:3.537609pt;}
.ls2c_c01102{letter-spacing:3.660800pt;}
.ls17_c01102{letter-spacing:3.766400pt;}
.ls6_c01102{letter-spacing:46.886576pt;}
.ls12_c01102{letter-spacing:51.955376pt;}
.ls26_c01102{letter-spacing:54.489776pt;}
.ls16_c01102{letter-spacing:55.756800pt;}
.ls29_c01102{letter-spacing:57.024176pt;}
.ls2e_c01102{letter-spacing:58.291376pt;}
.lse_c01102{letter-spacing:59.558400pt;}
.ws1_c01102{word-spacing:-20.183962pt;}
.ws0_c01102{word-spacing:-16.544000pt;}
.ws2_c01102{word-spacing:-14.938990pt;}
.ws3_c01102{word-spacing:0.000000pt;}
._1_c01102{margin-left:-12.900595pt;}
._b_c01102{margin-left:-10.524448pt;}
._0_c01102{margin-left:-6.934195pt;}
._7_c01102{margin-left:-2.202394pt;}
._c_c01102{width:4.692779pt;}
._2_c01102{width:7.742592pt;}
._9_c01102{width:10.036576pt;}
._a_c01102{width:16.517952pt;}
._6_c01102{width:19.982758pt;}
._3_c01102{width:21.348668pt;}
._8_c01102{width:25.977600pt;}
._5_c01102{width:28.051462pt;}
._4_c01102{width:66.418778pt;}
.fs1b_c01102{font-size:20.064000pt;}
.fs17_c01102{font-size:22.352000pt;}
.fs0_c01102{font-size:24.640000pt;}
.fs18_c01102{font-size:25.168000pt;}
.fs16_c01102{font-size:36.432176pt;}
.fs3_c01102{font-size:46.886576pt;}
.fsc_c01102{font-size:48.224000pt;}
.fs1f_c01102{font-size:50.688000pt;}
.fsd_c01102{font-size:51.955376pt;}
.fs1d_c01102{font-size:54.489776pt;}
.fsb_c01102{font-size:54.912176pt;}
.fs10_c01102{font-size:55.756800pt;}
.fs1c_c01102{font-size:57.024176pt;}
.fs23_c01102{font-size:58.291376pt;}
.fsa_c01102{font-size:59.558400pt;}
.fs20_c01102{font-size:60.544176pt;}
.fs9_c01102{font-size:61.072176pt;}
.fs1a_c01102{font-size:61.248000pt;}
.fs4_c01102{font-size:61.600000pt;}
.fs1e_c01102{font-size:61.952176pt;}
.fs15_c01102{font-size:63.360000pt;}
.fs8_c01102{font-size:64.768000pt;}
.fs5_c01102{font-size:66.176000pt;}
.fs19_c01102{font-size:66.880000pt;}
.fsf_c01102{font-size:67.232176pt;}
.fs1_c01102{font-size:67.584176pt;}
.fs13_c01102{font-size:69.696000pt;}
.fs14_c01102{font-size:70.400000pt;}
.fs6_c01102{font-size:70.752176pt;}
.fs12_c01102{font-size:72.512176pt;}
.fse_c01102{font-size:72.864176pt;}
.fs21_c01102{font-size:73.216000pt;}
.fs7_c01102{font-size:74.624176pt;}
.fs22_c01102{font-size:74.800000pt;}
.fs11_c01102{font-size:75.328000pt;}
.fs2_c01102{font-size:85.184176pt;}
.y0_c01102{bottom:0.000000pt;}
.y1c_c01102{bottom:58.212920pt;}
.y1_c01102{bottom:68.000000pt;}
.y1b_c01102{bottom:84.507320pt;}
.y1a_c01102{bottom:142.164920pt;}
.y19_c01102{bottom:171.627320pt;}
.y18_c01102{bottom:200.451720pt;}
.y17_c01102{bottom:221.048120pt;}
.y16_c01102{bottom:229.284920pt;}
.y15_c01102{bottom:258.113720pt;}
.y14_c01102{bottom:315.133320pt;}
.y13_c01102{bottom:344.278920pt;}
.y12_c01102{bottom:373.424520pt;}
.y11_c01102{bottom:425.067320pt;}
.y10_c01102{bottom:429.498120pt;}
.yf_c01102{bottom:458.326920pt;}
.ye_c01102{bottom:476.384520pt;}
.yd_c01102{bottom:486.838920pt;}
.y2_c01102{bottom:507.435320pt;}
.yc_c01102{bottom:514.404920pt;}
.yb_c01102{bottom:542.595720pt;}
.ya_c01102{bottom:571.112120pt;}
.y9_c01102{bottom:627.819320pt;}
.y8_c01102{bottom:656.964920pt;}
.y7_c01102{bottom:714.301320pt;}
.y6_c01102{bottom:741.233720pt;}
.y5_c01102{bottom:799.524920pt;}
.y4_c01102{bottom:828.036920pt;}
.y3_c01102{bottom:950.000520pt;}
.h1e_c01102{height:20.926125pt;}
.h1a_c01102{height:23.312438pt;}
.h2_c01102{height:25.698750pt;}
.h1b_c01102{height:26.249438pt;}
.h5_c01102{height:31.226460pt;}
.h10_c01102{height:34.602280pt;}
.h19_c01102{height:35.756188pt;}
.h20_c01102{height:36.290191pt;}
.h13_c01102{height:37.134029pt;}
.h23_c01102{height:37.978101pt;}
.h28_c01102{height:38.822056pt;}
.hd_c01102{height:39.665894pt;}
.h22_c01102{height:49.747500pt;}
.hf_c01102{height:50.296125pt;}
.he_c01102{height:53.893298pt;}
.h24_c01102{height:59.420798pt;}
.h1f_c01102{height:59.474434pt;}
.ha_c01102{height:63.534625pt;}
.hc_c01102{height:63.566250pt;}
.hb_c01102{height:63.696371pt;}
.h1d_c01102{height:63.879750pt;}
.h6_c01102{height:64.246875pt;}
.h21_c01102{height:64.614184pt;}
.h7_c01102{height:64.948125pt;}
.h1c_c01102{height:65.639063pt;}
.h12_c01102{height:65.984704pt;}
.h18_c01102{height:66.082500pt;}
.h3_c01102{height:66.330173pt;}
.h16_c01102{height:68.402813pt;}
.h17_c01102{height:69.093750pt;}
.h8_c01102{height:69.439391pt;}
.h15_c01102{height:71.166735pt;}
.h11_c01102{height:71.512204pt;}
.h27_c01102{height:71.821750pt;}
.h25_c01102{height:71.857500pt;}
.h9_c01102{height:73.239548pt;}
.h26_c01102{height:73.375586pt;}
.h14_c01102{height:73.930313pt;}
.h4_c01102{height:83.603610pt;}
.h1_c01102{height:986.666667pt;}
.h0_c01102{height:1122.666667pt;}
.w1_c01102{width:689.333333pt;}
.w0_c01102{width:793.333333pt;}
.x0_c01102{left:0.000000pt;}
.x2_c01102{left:41.392253pt;}
.x1_c01102{left:52.000000pt;}
.x5b_c01102{left:79.254253pt;}
.x32_c01102{left:80.508253pt;}
.x10_c01102{left:81.775453pt;}
.x11_c01102{left:91.957053pt;}
.x6a_c01102{left:127.570653pt;}
.x26_c01102{left:128.609053pt;}
.xd_c01102{left:129.832253pt;}
.x4_c01102{left:130.883853pt;}
.x12_c01102{left:150.631053pt;}
.x62_c01102{left:157.239853pt;}
.x2e_c01102{left:158.832653pt;}
.x48_c01102{left:168.182653pt;}
.xe_c01102{left:169.590653pt;}
.x4f_c01102{left:177.466653pt;}
.x13_c01102{left:188.708653pt;}
.x6b_c01102{left:196.364653pt;}
.x63_c01102{left:197.447053pt;}
.x4d_c01102{left:200.368653pt;}
.x73_c01102{left:206.229453pt;}
.x50_c01102{left:207.135853pt;}
.x27_c01102{left:208.411853pt;}
.x5_c01102{left:209.731853pt;}
.x5c_c01102{left:215.460653pt;}
.x60_c01102{left:217.251453pt;}
.x14_c01102{left:218.245853pt;}
.x3e_c01102{left:220.577853pt;}
.x53_c01102{left:227.032653pt;}
.x33_c01102{left:228.497853pt;}
.x15_c01102{left:229.795853pt;}
.x74_c01102{left:233.791053pt;}
.x3f_c01102{left:237.236253pt;}
.x6_c01102{left:239.172253pt;}
.x38_c01102{left:240.355853pt;}
.xf_c01102{left:248.315453pt;}
.x4e_c01102{left:258.303453pt;}
.x64_c01102{left:265.374253pt;}
.x49_c01102{left:267.143053pt;}
.x16_c01102{left:269.435453pt;}
.x65_c01102{left:271.996253pt;}
.x5d_c01102{left:276.440253pt;}
.x66_c01102{left:277.623853pt;}
.x34_c01102{left:287.123453pt;}
.x2f_c01102{left:288.201453pt;}
.x59_c01102{left:296.147853pt;}
.x7_c01102{left:297.665853pt;}
.x28_c01102{left:299.029853pt;}
.x6c_c01102{left:305.137053pt;}
.x39_c01102{left:307.099453pt;}
.x70_c01102{left:315.204253pt;}
.x17_c01102{left:317.105053pt;}
.x35_c01102{left:318.213853pt;}
.x51_c01102{left:326.428653pt;}
.x4a_c01102{left:336.077853pt;}
.x54_c01102{left:337.375853pt;}
.x3a_c01102{left:346.378253pt;}
.x30_c01102{left:355.952653pt;}
.x5e_c01102{left:366.028653pt;}
.x36_c01102{left:366.930653pt;}
.x29_c01102{left:377.517053pt;}
.x31_c01102{left:384.900253pt;}
.x5a_c01102{left:386.273053pt;}
.x8_c01102{left:387.997853pt;}
.x75_c01102{left:394.008253pt;}
.x55_c01102{left:395.271053pt;}
.x18_c01102{left:396.305053pt;}
.x40_c01102{left:405.919053pt;}
.x56_c01102{left:414.309853pt;}
.x6d_c01102{left:423.422253pt;}
.x5f_c01102{left:424.623453pt;}
.x19_c01102{left:427.171053pt;}
.x76_c01102{left:432.627053pt;}
.x1a_c01102{left:436.538653pt;}
.x71_c01102{left:443.033053pt;}
.x1b_c01102{left:445.725853pt;}
.x1c_c01102{left:446.997453pt;}
.x61_c01102{left:453.751453pt;}
.x2a_c01102{left:455.146253pt;}
.x9_c01102{left:465.530253pt;}
.x67_c01102{left:473.309453pt;}
.x41_c01102{left:474.493053pt;}
.x2b_c01102{left:484.010253pt;}
.x1d_c01102{left:486.095853pt;}
.xa_c01102{left:493.791453pt;}
.x1e_c01102{left:494.829853pt;}
.x44_c01102{left:495.877053pt;}
.x37_c01102{left:504.153453pt;}
.x42_c01102{left:513.177853pt;}
.x3b_c01102{left:514.902653pt;}
.x72_c01102{left:523.478253pt;}
.x1f_c01102{left:525.242653pt;}
.x43_c01102{left:533.501453pt;}
.x52_c01102{left:540.889053pt;}
.x20_c01102{left:542.385053pt;}
.x2c_c01102{left:544.387053pt;}
.x68_c01102{left:552.227853pt;}
.x21_c01102{left:554.071453pt;}
.x45_c01102{left:555.387053pt;}
.x4b_c01102{left:561.635053pt;}
.x2d_c01102{left:562.699853pt;}
.x6e_c01102{left:570.866253pt;}
.x46_c01102{left:572.467853pt;}
.x3c_c01102{left:573.849453pt;}
.x22_c01102{left:574.927453pt;}
.x69_c01102{left:580.475853pt;}
.x57_c01102{left:581.391053pt;}
.xb_c01102{left:592.831053pt;}
.x3d_c01102{left:593.851853pt;}
.x77_c01102{left:600.729053pt;}
.x58_c01102{left:611.790653pt;}
.x23_c01102{left:613.317453pt;}
.x4c_c01102{left:621.686253pt;}
.xc_c01102{left:623.063453pt;}
.x47_c01102{left:625.831053pt;}
.x3_c01102{left:628.915453pt;}
.x24_c01102{left:634.120653pt;}
.x6f_c01102{left:639.572253pt;}
.x25_c01102{left:645.010653pt;}
}





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

.ir_c01103:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01103{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01103;src:url('chunks/assets/font_ce052c2690ebde431e999547.woff2')format("woff");}.ff1_c01103{font-family:ff1_c01103;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01103;src:url('chunks/assets/font_71b2d5573ee509fc5f9d5b2a.woff2')format("woff");}.ff2_c01103{font-family:ff2_c01103;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01103;src:url('chunks/assets/font_d35a788f68e1546f01d0aa5c.woff2')format("woff");}.ff3_c01103{font-family:ff3_c01103;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01103;src:url('chunks/assets/font_9fcf6385f45c3df3ebb26ffd.woff2')format("woff");}.ff4_c01103{font-family:ff4_c01103;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01103;src:url('chunks/assets/font_43cf6ecaedaee0f1cc4c152b.woff2')format("woff");}.ff5_c01103{font-family:ff5_c01103;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4a_c01103{transform:matrix(0.052632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.052632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.052632,0.000000,0.000000,0.250000,0,0);}
.m4b_c01103{transform:matrix(0.078947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078947,0.000000,0.000000,0.250000,0,0);}
.m22_c01103{transform:matrix(0.120739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120739,0.000000,0.000000,0.250000,0,0);}
.m7c_c01103{transform:matrix(0.133523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133523,0.000000,0.000000,0.250000,0,0);}
.m7b_c01103{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);}
.m77_c01103{transform:matrix(0.138299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138299,0.000000,0.000000,0.250000,0,0);}
.m76_c01103{transform:matrix(0.140194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140194,0.000000,0.000000,0.250000,0,0);}
.m49_c01103{transform:matrix(0.145614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145614,0.000000,0.000000,0.250000,0,0);}
.m3d_c01103{transform:matrix(0.147436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147436,0.000000,0.000000,0.250000,0,0);}
.ma_c01103{transform:matrix(0.148883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148883,0.000000,0.000000,0.250000,0,0);}
.m5_c01103{transform:matrix(0.157830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157830,0.000000,0.000000,0.250000,0,0);}
.m2_c01103{transform:matrix(0.189520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189520,0.000000,0.000000,0.250000,0,0);}
.m75_c01103{transform:matrix(0.191217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191217,0.000000,0.000000,0.250000,0,0);}
.m5c_c01103{transform:matrix(0.207236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207236,0.000000,0.000000,0.250000,0,0);}
.m52_c01103{transform:matrix(0.219122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219122,0.000000,0.000000,0.250000,0,0);}
.m24_c01103{transform:matrix(0.222867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222867,0.000000,0.000000,0.250000,0,0);}
.m78_c01103{transform:matrix(0.227741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227741,0.000000,0.000000,0.250000,0,0);}
.m28_c01103{transform:matrix(0.246177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246177,0.000000,0.000000,0.250000,0,0);}
.m0_c01103{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m7_c01103{transform:matrix(0.251748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251748,0.000000,0.000000,0.250000,0,0);}
.mc_c01103{transform:matrix(0.252947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252947,0.000000,0.000000,0.250000,0,0);}
.m57_c01103{transform:matrix(0.254445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254445,0.000000,0.000000,0.250000,0,0);}
.m20_c01103{transform:matrix(0.255077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255077,0.000000,0.000000,0.250000,0,0);}
.m45_c01103{transform:matrix(0.257801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257801,0.000000,0.000000,0.250000,0,0);}
.m68_c01103{transform:matrix(0.258499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258499,0.000000,0.000000,0.250000,0,0);}
.m37_c01103{transform:matrix(0.260147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260147,0.000000,0.000000,0.250000,0,0);}
.m4_c01103{transform:matrix(0.260399,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260399,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260399,0.000000,0.000000,0.250000,0,0);}
.m4c_c01103{transform:matrix(0.261269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261269,0.000000,0.000000,0.250000,0,0);}
.m1_c01103{transform:matrix(0.261874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261874,0.000000,0.000000,0.250000,0,0);}
.m54_c01103{transform:matrix(0.262341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262341,0.000000,0.000000,0.250000,0,0);}
.m6_c01103{transform:matrix(0.263483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263483,0.000000,0.000000,0.250000,0,0);}
.m5b_c01103{transform:matrix(0.264854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264854,0.000000,0.000000,0.250000,0,0);}
.m25_c01103{transform:matrix(0.265711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265711,0.000000,0.000000,0.250000,0,0);}
.m56_c01103{transform:matrix(0.267191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267191,0.000000,0.000000,0.250000,0,0);}
.me_c01103{transform:matrix(0.270005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270005,0.000000,0.000000,0.250000,0,0);}
.mb_c01103{transform:matrix(0.270776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270776,0.000000,0.000000,0.250000,0,0);}
.m44_c01103{transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);}
.mf_c01103{transform:matrix(0.273180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273180,0.000000,0.000000,0.250000,0,0);}
.m3_c01103{transform:matrix(0.273251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273251,0.000000,0.000000,0.250000,0,0);}
.m70_c01103{transform:matrix(0.274532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274532,0.000000,0.000000,0.250000,0,0);}
.m4d_c01103{transform:matrix(0.275125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275125,0.000000,0.000000,0.250000,0,0);}
.m26_c01103{transform:matrix(0.275231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275231,0.000000,0.000000,0.250000,0,0);}
.m47_c01103{transform:matrix(0.275357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275357,0.000000,0.000000,0.250000,0,0);}
.m53_c01103{transform:matrix(0.276120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276120,0.000000,0.000000,0.250000,0,0);}
.m34_c01103{transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);}
.m81_c01103{transform:matrix(0.276656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276656,0.000000,0.000000,0.250000,0,0);}
.m2d_c01103{transform:matrix(0.276874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276874,0.000000,0.000000,0.250000,0,0);}
.m63_c01103{transform:matrix(0.276996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276996,0.000000,0.000000,0.250000,0,0);}
.m74_c01103{transform:matrix(0.277471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277471,0.000000,0.000000,0.250000,0,0);}
.m12_c01103{transform:matrix(0.277725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277725,0.000000,0.000000,0.250000,0,0);}
.m27_c01103{transform:matrix(0.279414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279414,0.000000,0.000000,0.250000,0,0);}
.m59_c01103{transform:matrix(0.280374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280374,0.000000,0.000000,0.250000,0,0);}
.m7a_c01103{transform:matrix(0.280981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280981,0.000000,0.000000,0.250000,0,0);}
.m83_c01103{transform:matrix(0.281059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281059,0.000000,0.000000,0.250000,0,0);}
.m60_c01103{transform:matrix(0.282629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282629,0.000000,0.000000,0.250000,0,0);}
.m61_c01103{transform:matrix(0.283744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283744,0.000000,0.000000,0.250000,0,0);}
.m17_c01103{transform:matrix(0.284326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284326,0.000000,0.000000,0.250000,0,0);}
.m3f_c01103{transform:matrix(0.285405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285405,0.000000,0.000000,0.250000,0,0);}
.m8c_c01103{transform:matrix(0.285922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285922,0.000000,0.000000,0.250000,0,0);}
.m15_c01103{transform:matrix(0.287003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287003,0.000000,0.000000,0.250000,0,0);}
.m7d_c01103{transform:matrix(0.287932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287932,0.000000,0.000000,0.250000,0,0);}
.m84_c01103{transform:matrix(0.288917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288917,0.000000,0.000000,0.250000,0,0);}
.m6a_c01103{transform:matrix(0.289004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289004,0.000000,0.000000,0.250000,0,0);}
.m85_c01103{transform:matrix(0.289676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289676,0.000000,0.000000,0.250000,0,0);}
.m1c_c01103{transform:matrix(0.289866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289866,0.000000,0.000000,0.250000,0,0);}
.m46_c01103{transform:matrix(0.290032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290032,0.000000,0.000000,0.250000,0,0);}
.m51_c01103{transform:matrix(0.290314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290314,0.000000,0.000000,0.250000,0,0);}
.m40_c01103{transform:matrix(0.290650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290650,0.000000,0.000000,0.250000,0,0);}
.m79_c01103{transform:matrix(0.291648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291648,0.000000,0.000000,0.250000,0,0);}
.m6b_c01103{transform:matrix(0.292974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292974,0.000000,0.000000,0.250000,0,0);}
.m9_c01103{transform:matrix(0.293625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293625,0.000000,0.000000,0.250000,0,0);}
.m1a_c01103{transform:matrix(0.294014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294014,0.000000,0.000000,0.250000,0,0);}
.m18_c01103{transform:matrix(0.294872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294872,0.000000,0.000000,0.250000,0,0);}
.m32_c01103{transform:matrix(0.295643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295643,0.000000,0.000000,0.250000,0,0);}
.m58_c01103{transform:matrix(0.296824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296824,0.000000,0.000000,0.250000,0,0);}
.m8a_c01103{transform:matrix(0.297131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297131,0.000000,0.000000,0.250000,0,0);}
.m33_c01103{transform:matrix(0.297351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297351,0.000000,0.000000,0.250000,0,0);}
.m14_c01103{transform:matrix(0.297891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297891,0.000000,0.000000,0.250000,0,0);}
.m62_c01103{transform:matrix(0.298121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298121,0.000000,0.000000,0.250000,0,0);}
.m21_c01103{transform:matrix(0.298222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298222,0.000000,0.000000,0.250000,0,0);}
.m72_c01103{transform:matrix(0.299753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299753,0.000000,0.000000,0.250000,0,0);}
.m10_c01103{transform:matrix(0.302705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302705,0.000000,0.000000,0.250000,0,0);}
.m5f_c01103{transform:matrix(0.304148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304148,0.000000,0.000000,0.250000,0,0);}
.m43_c01103{transform:matrix(0.305715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305715,0.000000,0.000000,0.250000,0,0);}
.m1f_c01103{transform:matrix(0.306688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306688,0.000000,0.000000,0.250000,0,0);}
.m4e_c01103{transform:matrix(0.307064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307064,0.000000,0.000000,0.250000,0,0);}
.m30_c01103{transform:matrix(0.307699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307699,0.000000,0.000000,0.250000,0,0);}
.m3b_c01103{transform:matrix(0.309310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309310,0.000000,0.000000,0.250000,0,0);}
.m2b_c01103{transform:matrix(0.309873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309873,0.000000,0.000000,0.250000,0,0);}
.m19_c01103{transform:matrix(0.311070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311070,0.000000,0.000000,0.250000,0,0);}
.m1d_c01103{transform:matrix(0.312042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312042,0.000000,0.000000,0.250000,0,0);}
.m3c_c01103{transform:matrix(0.312049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312049,0.000000,0.000000,0.250000,0,0);}
.m41_c01103{transform:matrix(0.312265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312265,0.000000,0.000000,0.250000,0,0);}
.m7e_c01103{transform:matrix(0.312835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312835,0.000000,0.000000,0.250000,0,0);}
.m13_c01103{transform:matrix(0.313121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313121,0.000000,0.000000,0.250000,0,0);}
.m65_c01103{transform:matrix(0.313314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313314,0.000000,0.000000,0.250000,0,0);}
.m6c_c01103{transform:matrix(0.314362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314362,0.000000,0.000000,0.250000,0,0);}
.m31_c01103{transform:matrix(0.314645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314645,0.000000,0.000000,0.250000,0,0);}
.m50_c01103{transform:matrix(0.315180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315180,0.000000,0.000000,0.250000,0,0);}
.m67_c01103{transform:matrix(0.315327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315327,0.000000,0.000000,0.250000,0,0);}
.m39_c01103{transform:matrix(0.316434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316434,0.000000,0.000000,0.250000,0,0);}
.m6d_c01103{transform:matrix(0.317839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317839,0.000000,0.000000,0.250000,0,0);}
.m73_c01103{transform:matrix(0.318221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318221,0.000000,0.000000,0.250000,0,0);}
.m2e_c01103{transform:matrix(0.318237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318237,0.000000,0.000000,0.250000,0,0);}
.md_c01103{transform:matrix(0.319789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319789,0.000000,0.000000,0.250000,0,0);}
.m8b_c01103{transform:matrix(0.322124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322124,0.000000,0.000000,0.250000,0,0);}
.m88_c01103{transform:matrix(0.323174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323174,0.000000,0.000000,0.250000,0,0);}
.m5a_c01103{transform:matrix(0.323628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323628,0.000000,0.000000,0.250000,0,0);}
.m80_c01103{transform:matrix(0.326681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326681,0.000000,0.000000,0.250000,0,0);}
.m5e_c01103{transform:matrix(0.327202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327202,0.000000,0.000000,0.250000,0,0);}
.m8d_c01103{transform:matrix(0.330607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330607,0.000000,0.000000,0.250000,0,0);}
.m2a_c01103{transform:matrix(0.330614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330614,0.000000,0.000000,0.250000,0,0);}
.m66_c01103{transform:matrix(0.331259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331259,0.000000,0.000000,0.250000,0,0);}
.m69_c01103{transform:matrix(0.332016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332016,0.000000,0.000000,0.250000,0,0);}
.m48_c01103{transform:matrix(0.334543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334543,0.000000,0.000000,0.250000,0,0);}
.m82_c01103{transform:matrix(0.336287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336287,0.000000,0.000000,0.250000,0,0);}
.m5d_c01103{transform:matrix(0.336649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336649,0.000000,0.000000,0.250000,0,0);}
.m55_c01103{transform:matrix(0.338478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338478,0.000000,0.000000,0.250000,0,0);}
.m38_c01103{transform:matrix(0.338788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338788,0.000000,0.000000,0.250000,0,0);}
.m42_c01103{transform:matrix(0.339024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339024,0.000000,0.000000,0.250000,0,0);}
.m29_c01103{transform:matrix(0.339412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339412,0.000000,0.000000,0.250000,0,0);}
.m1b_c01103{transform:matrix(0.341044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341044,0.000000,0.000000,0.250000,0,0);}
.m4f_c01103{transform:matrix(0.341052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341052,0.000000,0.000000,0.250000,0,0);}
.m1e_c01103{transform:matrix(0.341655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341655,0.000000,0.000000,0.250000,0,0);}
.m36_c01103{transform:matrix(0.342888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342888,0.000000,0.000000,0.250000,0,0);}
.m6f_c01103{transform:matrix(0.343666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343666,0.000000,0.000000,0.250000,0,0);}
.m87_c01103{transform:matrix(0.344048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344048,0.000000,0.000000,0.250000,0,0);}
.m71_c01103{transform:matrix(0.349884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349884,0.000000,0.000000,0.250000,0,0);}
.m86_c01103{transform:matrix(0.353877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353877,0.000000,0.000000,0.250000,0,0);}
.m89_c01103{transform:matrix(0.356132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356132,0.000000,0.000000,0.250000,0,0);}
.m64_c01103{transform:matrix(0.358492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358492,0.000000,0.000000,0.250000,0,0);}
.m11_c01103{transform:matrix(0.359303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359303,0.000000,0.000000,0.250000,0,0);}
.m3e_c01103{transform:matrix(0.362517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362517,0.000000,0.000000,0.250000,0,0);}
.m16_c01103{transform:matrix(0.362697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362697,0.000000,0.000000,0.250000,0,0);}
.m6e_c01103{transform:matrix(0.364878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364878,0.000000,0.000000,0.250000,0,0);}
.m3a_c01103{transform:matrix(0.371232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371232,0.000000,0.000000,0.250000,0,0);}
.m2f_c01103{transform:matrix(0.383500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383500,0.000000,0.000000,0.250000,0,0);}
.m7f_c01103{transform:matrix(0.391270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391270,0.000000,0.000000,0.250000,0,0);}
.m35_c01103{transform:matrix(0.397481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397481,0.000000,0.000000,0.250000,0,0);}
.m8_c01103{transform:matrix(0.400159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400159,0.000000,0.000000,0.250000,0,0);}
.m2c_c01103{transform:matrix(0.403692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403692,0.000000,0.000000,0.250000,0,0);}
.m23_c01103{transform:matrix(0.406953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406953,0.000000,0.000000,0.250000,0,0);}
.v0_c01103{vertical-align:0.000000px;}
.lsd_c01103{letter-spacing:-3.367980px;}
.ls23_c01103{letter-spacing:-2.855167px;}
.ls8_c01103{letter-spacing:-2.806650px;}
.ls18_c01103{letter-spacing:-2.719886px;}
.ls16_c01103{letter-spacing:-2.661127px;}
.ls21_c01103{letter-spacing:-2.607904px;}
.ls26_c01103{letter-spacing:-2.577967px;}
.ls5_c01103{letter-spacing:-2.536380px;}
.ls3_c01103{letter-spacing:0.000000px;}
.ls2_c01103{letter-spacing:0.160380px;}
.ls28_c01103{letter-spacing:0.790735px;}
.ls10_c01103{letter-spacing:0.798338px;}
.ls29_c01103{letter-spacing:1.269738px;}
.ls20_c01103{letter-spacing:2.075679px;}
.ls22_c01103{letter-spacing:2.421738px;}
.ls24_c01103{letter-spacing:2.467483px;}
.lsc_c01103{letter-spacing:2.606175px;}
.ls1_c01103{letter-spacing:2.616293px;}
.ls0_c01103{letter-spacing:3.196758px;}
.ls13_c01103{letter-spacing:3.276900px;}
.ls14_c01103{letter-spacing:3.497481px;}
.ls9_c01103{letter-spacing:3.520341px;}
.ls1b_c01103{letter-spacing:3.603610px;}
.ls4_c01103{letter-spacing:3.623400px;}
.ls1f_c01103{letter-spacing:3.643200px;}
.lse_c01103{letter-spacing:3.672900px;}
.ls1e_c01103{letter-spacing:3.742200px;}
.ls27_c01103{letter-spacing:3.781810px;}
.lsa_c01103{letter-spacing:3.801610px;}
.ls6_c01103{letter-spacing:3.940200px;}
.ls11_c01103{letter-spacing:3.950110px;}
.ls7_c01103{letter-spacing:4.009500px;}
.ls1c_c01103{letter-spacing:4.039200px;}
.ls15_c01103{letter-spacing:4.078810px;}
.ls19_c01103{letter-spacing:4.197610px;}
.lsb_c01103{letter-spacing:4.276810px;}
.ls17_c01103{letter-spacing:4.415400px;}
.ls1d_c01103{letter-spacing:54.172998px;}
.ls1a_c01103{letter-spacing:55.598598px;}
.ls12_c01103{letter-spacing:61.300998px;}
.lsf_c01103{letter-spacing:62.726400px;}
.ls25_c01103{letter-spacing:67.003200px;}
.sc__c01103{text-shadow:none;}
.sc0_c01103{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01103{-webkit-text-stroke:0px transparent;}
.sc0_c01103{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01103{word-spacing:-19.008050px;}
.ws1_c01103{word-spacing:0.000000px;}
._2_c01103{margin-left:-13.117159px;}
._1_c01103{margin-left:-8.615288px;}
._7_c01103{margin-left:-5.474340px;}
._6_c01103{margin-left:-1.140516px;}
._a_c01103{width:2.433321px;}
._9_c01103{width:4.030004px;}
._4_c01103{width:10.187804px;}
._b_c01103{width:11.785070px;}
._5_c01103{width:14.371555px;}
._0_c01103{width:35.389952px;}
._8_c01103{width:53.764509px;}
._3_c01103{width:80.608097px;}
.fc0_c01103{color:transparent;}
.fs5_c01103{font-size:22.176000px;}
.fs0_c01103{font-size:33.264000px;}
.fs18_c01103{font-size:37.818000px;}
.fs19_c01103{font-size:48.114000px;}
.fs17_c01103{font-size:54.172998px;}
.fs14_c01103{font-size:55.598598px;}
.fse_c01103{font-size:61.300998px;}
.fsc_c01103{font-size:62.726400px;}
.fsf_c01103{font-size:65.538000px;}
.fs1b_c01103{font-size:67.003200px;}
.fs7_c01103{font-size:71.676198px;}
.fs15_c01103{font-size:72.072198px;}
.fs1_c01103{font-size:72.468000px;}
.fs2_c01103{font-size:72.864000px;}
.fsb_c01103{font-size:73.458000px;}
.fs1a_c01103{font-size:73.656198px;}
.fs11_c01103{font-size:74.844000px;}
.fs1c_c01103{font-size:75.636198px;}
.fs6_c01103{font-size:76.032198px;}
.fs8_c01103{font-size:77.616198px;}
.fs3_c01103{font-size:78.804000px;}
.fsd_c01103{font-size:79.002198px;}
.fs4_c01103{font-size:80.190000px;}
.fs16_c01103{font-size:80.784000px;}
.fs10_c01103{font-size:81.576198px;}
.fs13_c01103{font-size:83.952198px;}
.fs9_c01103{font-size:85.536198px;}
.fs12_c01103{font-size:88.308000px;}
.fsa_c01103{font-size:96.228000px;}
.y0_c01103{bottom:0.000000px;}
.y1_c01103{bottom:76.500000px;}
.y18_c01103{bottom:125.008335px;}
.y17_c01103{bottom:157.084335px;}
.y16_c01103{bottom:190.224585px;}
.y15_c01103{bottom:318.533535px;}
.y14_c01103{bottom:384.462585px;}
.y13_c01103{bottom:415.830735px;}
.y12_c01103{bottom:447.545385px;}
.y11_c01103{bottom:478.913535px;}
.y10_c01103{bottom:510.984585px;}
.yf_c01103{bottom:543.416985px;}
.ye_c01103{bottom:575.497935px;}
.y2_c01103{bottom:586.541385px;}
.yd_c01103{bottom:608.286735px;}
.yc_c01103{bottom:640.719135px;}
.yb_c01103{bottom:670.300335px;}
.ya_c01103{bottom:703.796985px;}
.y9_c01103{bottom:736.585785px;}
.y8_c01103{bottom:768.666735px;}
.y7_c01103{bottom:800.737785px;}
.y6_c01103{bottom:862.394985px;}
.y5_c01103{bottom:919.418985px;}
.y4_c01103{bottom:927.264735px;}
.y3_c01103{bottom:1066.612185px;}
.h7_c01103{height:23.128875px;}
.h2_c01103{height:34.693313px;}
.h19_c01103{height:36.079217px;}
.h16_c01103{height:37.028666px;}
.h1a_c01103{height:37.116299px;}
.h10_c01103{height:40.826465px;}
.he_c01103{height:41.775782px;}
.h1d_c01103{height:44.624131px;}
.h11_c01103{height:64.321963px;}
.h17_c01103{height:70.734921px;}
.h3_c01103{height:71.123379px;}
.h4_c01103{height:71.512031px;}
.hd_c01103{height:72.095010px;}
.h1c_c01103{height:72.289530px;}
.h13_c01103{height:73.455293px;}
.h1e_c01103{height:74.232792px;}
.h8_c01103{height:74.621444px;}
.hc_c01103{height:76.626200px;}
.h5_c01103{height:77.341816px;}
.hf_c01103{height:77.536337px;}
.h6_c01103{height:78.702100px;}
.h18_c01103{height:79.285078px;}
.h12_c01103{height:80.062577px;}
.h9_c01103{height:80.951269px;}
.h15_c01103{height:82.394491px;}
.ha_c01103{height:83.949101px;}
.h1b_c01103{height:85.081425px;}
.h14_c01103{height:86.669473px;}
.hb_c01103{height:100.362797px;}
.h1_c01103{height:1110.000000px;}
.h0_c01103{height:1263.000000px;}
.w1_c01103{width:775.500000px;}
.w0_c01103{width:892.500000px;}
.x0_c01103{left:0.000000px;}
.x2_c01103{left:19.460085px;}
.x1_c01103{left:58.500000px;}
.x5c_c01103{left:84.552585px;}
.xa_c01103{left:85.948485px;}
.x61_c01103{left:95.150535px;}
.x62_c01103{left:137.784885px;}
.x30_c01103{left:139.299585px;}
.x5_c01103{left:140.378685px;}
.x21_c01103{left:141.913185px;}
.x12_c01103{left:143.130885px;}
.x13_c01103{left:153.679335px;}
.x5d_c01103{left:159.505485px;}
.x6_c01103{left:163.415985px;}
.x63_c01103{left:172.152735px;}
.x27_c01103{left:173.702085px;}
.x59_c01103{left:183.131835px;}
.xb_c01103{left:184.859385px;}
.x43_c01103{left:187.458135px;}
.x44_c01103{left:194.546535px;}
.x14_c01103{left:197.214585px;}
.x5e_c01103{left:205.634535px;}
.x7_c01103{left:206.678985px;}
.x5f_c01103{left:213.118935px;}
.x55_c01103{left:216.277035px;}
.x49_c01103{left:217.544235px;}
.x28_c01103{left:218.930235px;}
.x51_c01103{left:228.577785px;}
.x60_c01103{left:230.577585px;}
.x37_c01103{left:239.210385px;}
.x22_c01103{left:240.581535px;}
.x6a_c01103{left:249.758835px;}
.xc_c01103{left:251.110185px;}
.x8_c01103{left:254.189085px;}
.x31_c01103{left:262.321935px;}
.x38_c01103{left:272.236785px;}
.x15_c01103{left:273.310935px;}
.x67_c01103{left:274.726635px;}
.x29_c01103{left:283.636635px;}
.x5a_c01103{left:296.234385px;}
.x52_c01103{left:297.486735px;}
.x16_c01103{left:307.228335px;}
.x4a_c01103{left:316.598685px;}
.xd_c01103{left:318.509385px;}
.x3d_c01103{left:328.478685px;}
.x5b_c01103{left:329.904285px;}
.x45_c01103{left:349.733985px;}
.x4b_c01103{left:350.971485px;}
.x39_c01103{left:352.119885px;}
.xe_c01103{left:362.826735px;}
.x56_c01103{left:373.647435px;}
.x64_c01103{left:382.364385px;}
.x1b_c01103{left:384.690885px;}
.x57_c01103{left:394.650285px;}
.x32_c01103{left:396.471885px;}
.x17_c01103{left:406.238235px;}
.xf_c01103{left:408.535035px;}
.x3e_c01103{left:416.158035px;}
.x2a_c01103{left:417.360885px;}
.x68_c01103{left:426.543135px;}
.x4c_c01103{left:428.156835px;}
.x10_c01103{left:439.541835px;}
.x33_c01103{left:450.565485px;}
.x46_c01103{left:452.961285px;}
.x65_c01103{left:460.975335px;}
.x47_c01103{left:462.509835px;}
.x11_c01103{left:463.757235px;}
.x3f_c01103{left:471.444585px;}
.x1c_c01103{left:473.578035px;}
.x4d_c01103{left:482.908785px;}
.x34_c01103{left:484.423485px;}
.x58_c01103{left:494.833335px;}
.x3a_c01103{left:505.366935px;}
.x18_c01103{left:506.455935px;}
.x26_c01103{left:509.554635px;}
.x66_c01103{left:515.628285px;}
.x2b_c01103{left:517.934985px;}
.x40_c01103{left:529.602135px;}
.x69_c01103{left:548.768535px;}
.x2c_c01103{left:549.996135px;}
.x1d_c01103{left:561.089085px;}
.x3b_c01103{left:562.098885px;}
.x35_c01103{left:571.617735px;}
.x48_c01103{left:582.522585px;}
.x2d_c01103{left:584.260035px;}
.x23_c01103{left:594.466935px;}
.x1e_c01103{left:605.446035px;}
.x4e_c01103{left:614.732235px;}
.x6b_c01103{left:615.925185px;}
.x19_c01103{left:617.400285px;}
.x4f_c01103{left:627.691335px;}
.x24_c01103{left:638.818935px;}
.x41_c01103{left:647.926935px;}
.x3c_c01103{left:649.456485px;}
.x42_c01103{left:651.134535px;}
.x53_c01103{left:659.638635px;}
.x36_c01103{left:670.370235px;}
.x1a_c01103{left:681.730485px;}
.x54_c01103{left:683.641185px;}
.x50_c01103{left:689.576235px;}
.x1f_c01103{left:693.664935px;}
.x25_c01103{left:704.851935px;}
.x2e_c01103{left:706.153785px;}
.x3_c01103{left:713.628285px;}
.x2f_c01103{left:726.775485px;}
.x20_c01103{left:728.423835px;}
.x9_c01103{left:732.304635px;}
.x4_c01103{left:746.521035px;}
@media print{
.v0_c01103{vertical-align:0.000000pt;}
.lsd_c01103{letter-spacing:-2.993760pt;}
.ls23_c01103{letter-spacing:-2.537926pt;}
.ls8_c01103{letter-spacing:-2.494800pt;}
.ls18_c01103{letter-spacing:-2.417677pt;}
.ls16_c01103{letter-spacing:-2.365446pt;}
.ls21_c01103{letter-spacing:-2.318137pt;}
.ls26_c01103{letter-spacing:-2.291526pt;}
.ls5_c01103{letter-spacing:-2.254560pt;}
.ls3_c01103{letter-spacing:0.000000pt;}
.ls2_c01103{letter-spacing:0.142560pt;}
.ls28_c01103{letter-spacing:0.702875pt;}
.ls10_c01103{letter-spacing:0.709634pt;}
.ls29_c01103{letter-spacing:1.128656pt;}
.ls20_c01103{letter-spacing:1.845048pt;}
.ls22_c01103{letter-spacing:2.152656pt;}
.ls24_c01103{letter-spacing:2.193318pt;}
.lsc_c01103{letter-spacing:2.316600pt;}
.ls1_c01103{letter-spacing:2.325594pt;}
.ls0_c01103{letter-spacing:2.841563pt;}
.ls13_c01103{letter-spacing:2.912800pt;}
.ls14_c01103{letter-spacing:3.108872pt;}
.ls9_c01103{letter-spacing:3.129192pt;}
.ls1b_c01103{letter-spacing:3.203209pt;}
.ls4_c01103{letter-spacing:3.220800pt;}
.ls1f_c01103{letter-spacing:3.238400pt;}
.lse_c01103{letter-spacing:3.264800pt;}
.ls1e_c01103{letter-spacing:3.326400pt;}
.ls27_c01103{letter-spacing:3.361609pt;}
.lsa_c01103{letter-spacing:3.379209pt;}
.ls6_c01103{letter-spacing:3.502400pt;}
.ls11_c01103{letter-spacing:3.511209pt;}
.ls7_c01103{letter-spacing:3.564000pt;}
.ls1c_c01103{letter-spacing:3.590400pt;}
.ls15_c01103{letter-spacing:3.625609pt;}
.ls19_c01103{letter-spacing:3.731209pt;}
.lsb_c01103{letter-spacing:3.801609pt;}
.ls17_c01103{letter-spacing:3.924800pt;}
.ls1d_c01103{letter-spacing:48.153776pt;}
.ls1a_c01103{letter-spacing:49.420976pt;}
.ls12_c01103{letter-spacing:54.489776pt;}
.lsf_c01103{letter-spacing:55.756800pt;}
.ls25_c01103{letter-spacing:59.558400pt;}
.ws0_c01103{word-spacing:-16.896044pt;}
.ws1_c01103{word-spacing:0.000000pt;}
._2_c01103{margin-left:-11.659697pt;}
._1_c01103{margin-left:-7.658034pt;}
._7_c01103{margin-left:-4.866080pt;}
._6_c01103{margin-left:-1.013792pt;}
._a_c01103{width:2.162952pt;}
._9_c01103{width:3.582226pt;}
._4_c01103{width:9.055826pt;}
._b_c01103{width:10.475618pt;}
._5_c01103{width:12.774716pt;}
._0_c01103{width:31.457735pt;}
._8_c01103{width:47.790675pt;}
._3_c01103{width:71.651642pt;}
.fs5_c01103{font-size:19.712000pt;}
.fs0_c01103{font-size:29.568000pt;}
.fs18_c01103{font-size:33.616000pt;}
.fs19_c01103{font-size:42.768000pt;}
.fs17_c01103{font-size:48.153776pt;}
.fs14_c01103{font-size:49.420976pt;}
.fse_c01103{font-size:54.489776pt;}
.fsc_c01103{font-size:55.756800pt;}
.fsf_c01103{font-size:58.256000pt;}
.fs1b_c01103{font-size:59.558400pt;}
.fs7_c01103{font-size:63.712176pt;}
.fs15_c01103{font-size:64.064176pt;}
.fs1_c01103{font-size:64.416000pt;}
.fs2_c01103{font-size:64.768000pt;}
.fsb_c01103{font-size:65.296000pt;}
.fs1a_c01103{font-size:65.472176pt;}
.fs11_c01103{font-size:66.528000pt;}
.fs1c_c01103{font-size:67.232176pt;}
.fs6_c01103{font-size:67.584176pt;}
.fs8_c01103{font-size:68.992176pt;}
.fs3_c01103{font-size:70.048000pt;}
.fsd_c01103{font-size:70.224176pt;}
.fs4_c01103{font-size:71.280000pt;}
.fs16_c01103{font-size:71.808000pt;}
.fs10_c01103{font-size:72.512176pt;}
.fs13_c01103{font-size:74.624176pt;}
.fs9_c01103{font-size:76.032176pt;}
.fs12_c01103{font-size:78.496000pt;}
.fsa_c01103{font-size:85.536000pt;}
.y0_c01103{bottom:0.000000pt;}
.y1_c01103{bottom:68.000000pt;}
.y18_c01103{bottom:111.118520pt;}
.y17_c01103{bottom:139.630520pt;}
.y16_c01103{bottom:169.088520pt;}
.y15_c01103{bottom:283.140920pt;}
.y14_c01103{bottom:341.744520pt;}
.y13_c01103{bottom:369.627320pt;}
.y12_c01103{bottom:397.818120pt;}
.y11_c01103{bottom:425.700920pt;}
.y10_c01103{bottom:454.208520pt;}
.yf_c01103{bottom:483.037320pt;}
.ye_c01103{bottom:511.553720pt;}
.y2_c01103{bottom:521.370120pt;}
.yd_c01103{bottom:540.699320pt;}
.yc_c01103{bottom:569.528120pt;}
.yb_c01103{bottom:595.822520pt;}
.ya_c01103{bottom:625.597320pt;}
.y9_c01103{bottom:654.742920pt;}
.y8_c01103{bottom:683.259320pt;}
.y7_c01103{bottom:711.766920pt;}
.y6_c01103{bottom:766.573320pt;}
.y5_c01103{bottom:817.261320pt;}
.y4_c01103{bottom:824.235320pt;}
.y3_c01103{bottom:948.099720pt;}
.h7_c01103{height:20.559000pt;}
.h2_c01103{height:30.838500pt;}
.h19_c01103{height:32.070415pt;}
.h16_c01103{height:32.914370pt;}
.h1a_c01103{height:32.992266pt;}
.h10_c01103{height:36.290191pt;}
.he_c01103{height:37.134029pt;}
.h1d_c01103{height:39.665894pt;}
.h11_c01103{height:57.175078pt;}
.h17_c01103{height:62.875485pt;}
.h3_c01103{height:63.220781pt;}
.h4_c01103{height:63.566250pt;}
.hd_c01103{height:64.084453pt;}
.h1c_c01103{height:64.257360pt;}
.h13_c01103{height:65.293594pt;}
.h1e_c01103{height:65.984704pt;}
.h8_c01103{height:66.330173pt;}
.hc_c01103{height:68.112177pt;}
.h5_c01103{height:68.748281pt;}
.hf_c01103{height:68.921188pt;}
.h6_c01103{height:69.957422pt;}
.h18_c01103{height:70.475625pt;}
.h12_c01103{height:71.166735pt;}
.h9_c01103{height:71.956684pt;}
.h15_c01103{height:73.239548pt;}
.ha_c01103{height:74.621423pt;}
.h1b_c01103{height:75.627934pt;}
.h14_c01103{height:77.039531pt;}
.hb_c01103{height:89.211375pt;}
.h1_c01103{height:986.666667pt;}
.h0_c01103{height:1122.666667pt;}
.w1_c01103{width:689.333333pt;}
.w0_c01103{width:793.333333pt;}
.x0_c01103{left:0.000000pt;}
.x2_c01103{left:17.297853pt;}
.x1_c01103{left:52.000000pt;}
.x5c_c01103{left:75.157853pt;}
.xa_c01103{left:76.398653pt;}
.x61_c01103{left:84.578253pt;}
.x62_c01103{left:122.475453pt;}
.x30_c01103{left:123.821853pt;}
.x5_c01103{left:124.781053pt;}
.x21_c01103{left:126.145053pt;}
.x12_c01103{left:127.227453pt;}
.x13_c01103{left:136.603853pt;}
.x5d_c01103{left:141.782653pt;}
.x6_c01103{left:145.258653pt;}
.x63_c01103{left:153.024653pt;}
.x27_c01103{left:154.401853pt;}
.x59_c01103{left:162.783853pt;}
.xb_c01103{left:164.319453pt;}
.x43_c01103{left:166.629453pt;}
.x44_c01103{left:172.930253pt;}
.x14_c01103{left:175.301853pt;}
.x5e_c01103{left:182.786253pt;}
.x7_c01103{left:183.714653pt;}
.x5f_c01103{left:189.439053pt;}
.x55_c01103{left:192.246253pt;}
.x49_c01103{left:193.372653pt;}
.x28_c01103{left:194.604653pt;}
.x51_c01103{left:203.180253pt;}
.x60_c01103{left:204.957853pt;}
.x37_c01103{left:212.631453pt;}
.x22_c01103{left:213.850253pt;}
.x6a_c01103{left:222.007853pt;}
.xc_c01103{left:223.209053pt;}
.x8_c01103{left:225.945853pt;}
.x31_c01103{left:233.175053pt;}
.x38_c01103{left:241.988253pt;}
.x15_c01103{left:242.943053pt;}
.x67_c01103{left:244.201453pt;}
.x29_c01103{left:252.121453pt;}
.x5a_c01103{left:263.319453pt;}
.x52_c01103{left:264.432653pt;}
.x16_c01103{left:273.091853pt;}
.x4a_c01103{left:281.421053pt;}
.xd_c01103{left:283.119453pt;}
.x3d_c01103{left:291.981053pt;}
.x5b_c01103{left:293.248253pt;}
.x45_c01103{left:310.874653pt;}
.x4b_c01103{left:311.974653pt;}
.x39_c01103{left:312.995453pt;}
.xe_c01103{left:322.512653pt;}
.x56_c01103{left:332.131053pt;}
.x64_c01103{left:339.879453pt;}
.x1b_c01103{left:341.947453pt;}
.x57_c01103{left:350.800253pt;}
.x32_c01103{left:352.419453pt;}
.x17_c01103{left:361.100653pt;}
.xf_c01103{left:363.142253pt;}
.x3e_c01103{left:369.918253pt;}
.x2a_c01103{left:370.987453pt;}
.x68_c01103{left:379.149453pt;}
.x4c_c01103{left:380.583853pt;}
.x10_c01103{left:390.703853pt;}
.x33_c01103{left:400.502653pt;}
.x46_c01103{left:402.632253pt;}
.x65_c01103{left:409.755853pt;}
.x47_c01103{left:411.119853pt;}
.x11_c01103{left:412.228653pt;}
.x3f_c01103{left:419.061853pt;}
.x1c_c01103{left:420.958253pt;}
.x4d_c01103{left:429.252253pt;}
.x34_c01103{left:430.598653pt;}
.x58_c01103{left:439.851853pt;}
.x3a_c01103{left:449.215053pt;}
.x18_c01103{left:450.183053pt;}
.x26_c01103{left:452.937453pt;}
.x66_c01103{left:458.336253pt;}
.x2b_c01103{left:460.386653pt;}
.x40_c01103{left:470.757453pt;}
.x69_c01103{left:487.794253pt;}
.x2c_c01103{left:488.885453pt;}
.x1d_c01103{left:498.745853pt;}
.x3b_c01103{left:499.643453pt;}
.x35_c01103{left:508.104653pt;}
.x48_c01103{left:517.797853pt;}
.x2d_c01103{left:519.342253pt;}
.x23_c01103{left:528.415053pt;}
.x1e_c01103{left:538.174253pt;}
.x4e_c01103{left:546.428653pt;}
.x6b_c01103{left:547.489053pt;}
.x19_c01103{left:548.800253pt;}
.x4f_c01103{left:557.947853pt;}
.x24_c01103{left:567.839053pt;}
.x41_c01103{left:575.935053pt;}
.x3c_c01103{left:577.294653pt;}
.x42_c01103{left:578.786253pt;}
.x53_c01103{left:586.345453pt;}
.x36_c01103{left:595.884653pt;}
.x1a_c01103{left:605.982653pt;}
.x54_c01103{left:607.681053pt;}
.x50_c01103{left:612.956653pt;}
.x1f_c01103{left:616.591053pt;}
.x25_c01103{left:626.535053pt;}
.x2e_c01103{left:627.692253pt;}
.x3_c01103{left:634.336253pt;}
.x2f_c01103{left:646.022653pt;}
.x20_c01103{left:647.487853pt;}
.x9_c01103{left:650.937453pt;}
.x4_c01103{left:663.574253pt;}
}





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

.ir_c01104:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01104{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01104;src:url('chunks/assets/font_c666fa31e170c46d9815ff25.woff2')format("woff");}.ff1_c01104{font-family:ff1_c01104;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01104;src:url('chunks/assets/font_99c5ce85f98a821657b49761.woff2')format("woff");}.ff2_c01104{font-family:ff2_c01104;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01104;src:url('chunks/assets/font_49a5f1f68817e0d508246a18.woff2')format("woff");}.ff3_c01104{font-family:ff3_c01104;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01104;src:url('chunks/assets/font_7f15953fa8010f18c45c7ddc.woff2')format("woff");}.ff4_c01104{font-family:ff4_c01104;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2b_c01104{transform:matrix(0.018293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018293,0.000000,0.000000,0.250000,0,0);}
.m80_c01104{transform:matrix(0.020001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020001,0.000000,0.000000,0.250000,0,0);}
.m3f_c01104{transform:matrix(0.022728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.022728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.022728,0.000000,0.000000,0.250000,0,0);}
.m7d_c01104{transform:matrix(0.025001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.025001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.025001,0.000000,0.000000,0.250000,0,0);}
.m2a_c01104{transform:matrix(0.067467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.067467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.067467,0.000000,0.000000,0.250000,0,0);}
.m3e_c01104{transform:matrix(0.079925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.079925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.079925,0.000000,0.000000,0.250000,0,0);}
.m40_c01104{transform:matrix(0.081612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081612,0.000000,0.000000,0.250000,0,0);}
.m81_c01104{transform:matrix(0.081924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081924,0.000000,0.000000,0.250000,0,0);}
.m7a_c01104{transform:matrix(0.082942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.082942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.082942,0.000000,0.000000,0.250000,0,0);}
.m84_c01104{transform:matrix(0.087059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087059,0.000000,0.000000,0.250000,0,0);}
.m7c_c01104{transform:matrix(0.090001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090001,0.000000,0.000000,0.250000,0,0);}
.m43_c01104{transform:matrix(0.092330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092330,0.000000,0.000000,0.250000,0,0);}
.m7e_c01104{transform:matrix(0.095000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01104{transform:matrix(0.095455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095455,0.000000,0.000000,0.250000,0,0);}
.mb4_c01104{transform:matrix(0.102084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102084,0.000000,0.000000,0.250000,0,0);}
.m7b_c01104{transform:matrix(0.117500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117500,0.000000,0.000000,0.250000,0,0);}
.m2_c01104{transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);}
.m3c_c01104{transform:matrix(0.132755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132755,0.000000,0.000000,0.250000,0,0);}
.m31_c01104{transform:matrix(0.138393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138393,0.000000,0.000000,0.250000,0,0);}
.mb6_c01104{transform:matrix(0.138671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138671,0.000000,0.000000,0.250000,0,0);}
.m33_c01104{transform:matrix(0.139205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139205,0.000000,0.000000,0.250000,0,0);}
.m8f_c01104{transform:matrix(0.140046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140046,0.000000,0.000000,0.250000,0,0);}
.mb5_c01104{transform:matrix(0.143707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143707,0.000000,0.000000,0.250000,0,0);}
.m42_c01104{transform:matrix(0.150568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150568,0.000000,0.000000,0.250000,0,0);}
.m38_c01104{transform:matrix(0.150757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150757,0.000000,0.000000,0.250000,0,0);}
.m55_c01104{transform:matrix(0.155364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155364,0.000000,0.000000,0.250000,0,0);}
.mc6_c01104{transform:matrix(0.156999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156999,0.000000,0.000000,0.250000,0,0);}
.m78_c01104{transform:matrix(0.163096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163096,0.000000,0.000000,0.250000,0,0);}
.m77_c01104{transform:matrix(0.163691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163691,0.000000,0.000000,0.250000,0,0);}
.m29_c01104{transform:matrix(0.166461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166461,0.000000,0.000000,0.250000,0,0);}
.m9f_c01104{transform:matrix(0.166896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166896,0.000000,0.000000,0.250000,0,0);}
.m7f_c01104{transform:matrix(0.179554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179554,0.000000,0.000000,0.250000,0,0);}
.m98_c01104{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.mb7_c01104{transform:matrix(0.195393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195393,0.000000,0.000000,0.250000,0,0);}
.ma1_c01104{transform:matrix(0.196729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196729,0.000000,0.000000,0.250000,0,0);}
.m82_c01104{transform:matrix(0.200652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200652,0.000000,0.000000,0.250000,0,0);}
.m83_c01104{transform:matrix(0.202081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202081,0.000000,0.000000,0.250000,0,0);}
.mb8_c01104{transform:matrix(0.205804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205804,0.000000,0.000000,0.250000,0,0);}
.mb2_c01104{transform:matrix(0.207978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207978,0.000000,0.000000,0.250000,0,0);}
.m41_c01104{transform:matrix(0.227274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227274,0.000000,0.000000,0.250000,0,0);}
.m32_c01104{transform:matrix(0.244915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244915,0.000000,0.000000,0.250000,0,0);}
.m63_c01104{transform:matrix(0.245066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245066,0.000000,0.000000,0.250000,0,0);}
.m71_c01104{transform:matrix(0.247630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247630,0.000000,0.000000,0.250000,0,0);}
.m0_c01104{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m67_c01104{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m36_c01104{transform:matrix(0.251212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251212,0.000000,0.000000,0.250000,0,0);}
.mc0_c01104{transform:matrix(0.252947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252947,0.000000,0.000000,0.250000,0,0);}
.m73_c01104{transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);}
.m90_c01104{transform:matrix(0.257593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257593,0.000000,0.000000,0.250000,0,0);}
.m4d_c01104{transform:matrix(0.258177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258177,0.000000,0.000000,0.250000,0,0);}
.m6_c01104{transform:matrix(0.258390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258390,0.000000,0.000000,0.250000,0,0);}
.m14_c01104{transform:matrix(0.258499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258499,0.000000,0.000000,0.250000,0,0);}
.ma8_c01104{transform:matrix(0.258871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258871,0.000000,0.000000,0.250000,0,0);}
.m30_c01104{transform:matrix(0.261487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261487,0.000000,0.000000,0.250000,0,0);}
.m39_c01104{transform:matrix(0.261618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261618,0.000000,0.000000,0.250000,0,0);}
.m47_c01104{transform:matrix(0.262361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262361,0.000000,0.000000,0.250000,0,0);}
.m48_c01104{transform:matrix(0.263412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263412,0.000000,0.000000,0.250000,0,0);}
.m9b_c01104{transform:matrix(0.263606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263606,0.000000,0.000000,0.250000,0,0);}
.m70_c01104{transform:matrix(0.266057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266057,0.000000,0.000000,0.250000,0,0);}
.m11_c01104{transform:matrix(0.266768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266768,0.000000,0.000000,0.250000,0,0);}
.m68_c01104{transform:matrix(0.267477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267477,0.000000,0.000000,0.250000,0,0);}
.m25_c01104{transform:matrix(0.268172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268172,0.000000,0.000000,0.250000,0,0);}
.m27_c01104{transform:matrix(0.268214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268214,0.000000,0.000000,0.250000,0,0);}
.mc8_c01104{transform:matrix(0.269677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269677,0.000000,0.000000,0.250000,0,0);}
.m28_c01104{transform:matrix(0.270820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270820,0.000000,0.000000,0.250000,0,0);}
.m1_c01104{transform:matrix(0.271035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271035,0.000000,0.000000,0.250000,0,0);}
.m2d_c01104{transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);}
.maf_c01104{transform:matrix(0.271690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271690,0.000000,0.000000,0.250000,0,0);}
.m9e_c01104{transform:matrix(0.274479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274479,0.000000,0.000000,0.250000,0,0);}
.m3b_c01104{transform:matrix(0.275976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275976,0.000000,0.000000,0.250000,0,0);}
.m9_c01104{transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);}
.m18_c01104{transform:matrix(0.277012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277012,0.000000,0.000000,0.250000,0,0);}
.ma5_c01104{transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);}
.m1f_c01104{transform:matrix(0.277074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277074,0.000000,0.000000,0.250000,0,0);}
.m37_c01104{transform:matrix(0.278001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278001,0.000000,0.000000,0.250000,0,0);}
.m53_c01104{transform:matrix(0.278144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278144,0.000000,0.000000,0.250000,0,0);}
.ma6_c01104{transform:matrix(0.278286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278286,0.000000,0.000000,0.250000,0,0);}
.m69_c01104{transform:matrix(0.278289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278289,0.000000,0.000000,0.250000,0,0);}
.m91_c01104{transform:matrix(0.278486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278486,0.000000,0.000000,0.250000,0,0);}
.m62_c01104{transform:matrix(0.279348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279348,0.000000,0.000000,0.250000,0,0);}
.m56_c01104{transform:matrix(0.279738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279738,0.000000,0.000000,0.250000,0,0);}
.m1a_c01104{transform:matrix(0.280064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280064,0.000000,0.000000,0.250000,0,0);}
.mb3_c01104{transform:matrix(0.280078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280078,0.000000,0.000000,0.250000,0,0);}
.ma9_c01104{transform:matrix(0.280090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280090,0.000000,0.000000,0.250000,0,0);}
.m46_c01104{transform:matrix(0.281113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281113,0.000000,0.000000,0.250000,0,0);}
.m5_c01104{transform:matrix(0.281136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281136,0.000000,0.000000,0.250000,0,0);}
.m34_c01104{transform:matrix(0.282185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282185,0.000000,0.000000,0.250000,0,0);}
.m64_c01104{transform:matrix(0.282310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282310,0.000000,0.000000,0.250000,0,0);}
.m4f_c01104{transform:matrix(0.282785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282785,0.000000,0.000000,0.250000,0,0);}
.m89_c01104{transform:matrix(0.282934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282934,0.000000,0.000000,0.250000,0,0);}
.m1c_c01104{transform:matrix(0.283168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283168,0.000000,0.000000,0.250000,0,0);}
.mac_c01104{transform:matrix(0.283598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283598,0.000000,0.000000,0.250000,0,0);}
.m58_c01104{transform:matrix(0.283997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283997,0.000000,0.000000,0.250000,0,0);}
.m51_c01104{transform:matrix(0.284456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284456,0.000000,0.000000,0.250000,0,0);}
.m5e_c01104{transform:matrix(0.284538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284538,0.000000,0.000000,0.250000,0,0);}
.m5f_c01104{transform:matrix(0.285469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285469,0.000000,0.000000,0.250000,0,0);}
.m65_c01104{transform:matrix(0.285751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285751,0.000000,0.000000,0.250000,0,0);}
.m5c_c01104{transform:matrix(0.286820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286820,0.000000,0.000000,0.250000,0,0);}
.m8a_c01104{transform:matrix(0.286986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286986,0.000000,0.000000,0.250000,0,0);}
.m4c_c01104{transform:matrix(0.287607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287607,0.000000,0.000000,0.250000,0,0);}
.m35_c01104{transform:matrix(0.288134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288134,0.000000,0.000000,0.250000,0,0);}
.m74_c01104{transform:matrix(0.288735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288735,0.000000,0.000000,0.250000,0,0);}
.m6f_c01104{transform:matrix(0.288804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288804,0.000000,0.000000,0.250000,0,0);}
.maa_c01104{transform:matrix(0.288908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288908,0.000000,0.000000,0.250000,0,0);}
.m15_c01104{transform:matrix(0.289552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289552,0.000000,0.000000,0.250000,0,0);}
.mbd_c01104{transform:matrix(0.289693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289693,0.000000,0.000000,0.250000,0,0);}
.m3a_c01104{transform:matrix(0.289788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289788,0.000000,0.000000,0.250000,0,0);}
.m79_c01104{transform:matrix(0.289832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289832,0.000000,0.000000,0.250000,0,0);}
.m95_c01104{transform:matrix(0.290344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290344,0.000000,0.000000,0.250000,0,0);}
.m94_c01104{transform:matrix(0.290887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290887,0.000000,0.000000,0.250000,0,0);}
.m5a_c01104{transform:matrix(0.291252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291252,0.000000,0.000000,0.250000,0,0);}
.m4e_c01104{transform:matrix(0.291879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291879,0.000000,0.000000,0.250000,0,0);}
.m50_c01104{transform:matrix(0.293521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293521,0.000000,0.000000,0.250000,0,0);}
.mbe_c01104{transform:matrix(0.293625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293625,0.000000,0.000000,0.250000,0,0);}
.m20_c01104{transform:matrix(0.293745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293745,0.000000,0.000000,0.250000,0,0);}
.ma4_c01104{transform:matrix(0.293777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293777,0.000000,0.000000,0.250000,0,0);}
.m2f_c01104{transform:matrix(0.294823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294823,0.000000,0.000000,0.250000,0,0);}
.m16_c01104{transform:matrix(0.294993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294993,0.000000,0.000000,0.250000,0,0);}
.m97_c01104{transform:matrix(0.295030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295030,0.000000,0.000000,0.250000,0,0);}
.mc4_c01104{transform:matrix(0.295528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295528,0.000000,0.000000,0.250000,0,0);}
.mba_c01104{transform:matrix(0.296078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296078,0.000000,0.000000,0.250000,0,0);}
.m75_c01104{transform:matrix(0.297094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297094,0.000000,0.000000,0.250000,0,0);}
.m9c_c01104{transform:matrix(0.297291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297291,0.000000,0.000000,0.250000,0,0);}
.m5b_c01104{transform:matrix(0.297332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297332,0.000000,0.000000,0.250000,0,0);}
.m17_c01104{transform:matrix(0.297960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297960,0.000000,0.000000,0.250000,0,0);}
.m44_c01104{transform:matrix(0.298038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298038,0.000000,0.000000,0.250000,0,0);}
.m1b_c01104{transform:matrix(0.298238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298238,0.000000,0.000000,0.250000,0,0);}
.m9a_c01104{transform:matrix(0.298287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298287,0.000000,0.000000,0.250000,0,0);}
.mbc_c01104{transform:matrix(0.298522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298522,0.000000,0.000000,0.250000,0,0);}
.mbf_c01104{transform:matrix(0.298739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298739,0.000000,0.000000,0.250000,0,0);}
.m4b_c01104{transform:matrix(0.298771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298771,0.000000,0.000000,0.250000,0,0);}
.m88_c01104{transform:matrix(0.298852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298852,0.000000,0.000000,0.250000,0,0);}
.m1e_c01104{transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);}
.ma3_c01104{transform:matrix(0.299861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299861,0.000000,0.000000,0.250000,0,0);}
.m66_c01104{transform:matrix(0.300125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300125,0.000000,0.000000,0.250000,0,0);}
.m49_c01104{transform:matrix(0.301030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301030,0.000000,0.000000,0.250000,0,0);}
.m87_c01104{transform:matrix(0.301230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301230,0.000000,0.000000,0.250000,0,0);}
.m60_c01104{transform:matrix(0.301890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301890,0.000000,0.000000,0.250000,0,0);}
.mab_c01104{transform:matrix(0.302223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302223,0.000000,0.000000,0.250000,0,0);}
.m6d_c01104{transform:matrix(0.303668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303668,0.000000,0.000000,0.250000,0,0);}
.m6e_c01104{transform:matrix(0.304134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304134,0.000000,0.000000,0.250000,0,0);}
.md_c01104{transform:matrix(0.305127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305127,0.000000,0.000000,0.250000,0,0);}
.m52_c01104{transform:matrix(0.306579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306579,0.000000,0.000000,0.250000,0,0);}
.m59_c01104{transform:matrix(0.307299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307299,0.000000,0.000000,0.250000,0,0);}
.m45_c01104{transform:matrix(0.307328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307328,0.000000,0.000000,0.250000,0,0);}
.mad_c01104{transform:matrix(0.307418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307418,0.000000,0.000000,0.250000,0,0);}
.m8d_c01104{transform:matrix(0.307744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307744,0.000000,0.000000,0.250000,0,0);}
.m24_c01104{transform:matrix(0.307932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307932,0.000000,0.000000,0.250000,0,0);}
.m22_c01104{transform:matrix(0.308051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308051,0.000000,0.000000,0.250000,0,0);}
.m2c_c01104{transform:matrix(0.308541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308541,0.000000,0.000000,0.250000,0,0);}
.mc_c01104{transform:matrix(0.309253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309253,0.000000,0.000000,0.250000,0,0);}
.mb_c01104{transform:matrix(0.309310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309310,0.000000,0.000000,0.250000,0,0);}
.mc2_c01104{transform:matrix(0.310975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310975,0.000000,0.000000,0.250000,0,0);}
.m76_c01104{transform:matrix(0.313467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313467,0.000000,0.000000,0.250000,0,0);}
.m54_c01104{transform:matrix(0.314437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314437,0.000000,0.000000,0.250000,0,0);}
.ma7_c01104{transform:matrix(0.314645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314645,0.000000,0.000000,0.250000,0,0);}
.mb0_c01104{transform:matrix(0.314961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314961,0.000000,0.000000,0.250000,0,0);}
.me_c01104{transform:matrix(0.316133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316133,0.000000,0.000000,0.250000,0,0);}
.ma0_c01104{transform:matrix(0.316920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316920,0.000000,0.000000,0.250000,0,0);}
.m9d_c01104{transform:matrix(0.317024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317024,0.000000,0.000000,0.250000,0,0);}
.mc3_c01104{transform:matrix(0.318221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318221,0.000000,0.000000,0.250000,0,0);}
.m23_c01104{transform:matrix(0.321368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321368,0.000000,0.000000,0.250000,0,0);}
.m8e_c01104{transform:matrix(0.321796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321796,0.000000,0.000000,0.250000,0,0);}
.m93_c01104{transform:matrix(0.321889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321889,0.000000,0.000000,0.250000,0,0);}
.mc7_c01104{transform:matrix(0.322714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322714,0.000000,0.000000,0.250000,0,0);}
.mb1_c01104{transform:matrix(0.325098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325098,0.000000,0.000000,0.250000,0,0);}
.m85_c01104{transform:matrix(0.325255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325255,0.000000,0.000000,0.250000,0,0);}
.m99_c01104{transform:matrix(0.325602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325602,0.000000,0.000000,0.250000,0,0);}
.m8b_c01104{transform:matrix(0.326260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326260,0.000000,0.000000,0.250000,0,0);}
.m3_c01104{transform:matrix(0.330027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330027,0.000000,0.000000,0.250000,0,0);}
.mae_c01104{transform:matrix(0.330551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330551,0.000000,0.000000,0.250000,0,0);}
.m8c_c01104{transform:matrix(0.333549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333549,0.000000,0.000000,0.250000,0,0);}
.m5d_c01104{transform:matrix(0.333662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333662,0.000000,0.000000,0.250000,0,0);}
.m4a_c01104{transform:matrix(0.335427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335427,0.000000,0.000000,0.250000,0,0);}
.m21_c01104{transform:matrix(0.336289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336289,0.000000,0.000000,0.250000,0,0);}
.m6c_c01104{transform:matrix(0.337297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337297,0.000000,0.000000,0.250000,0,0);}
.m4_c01104{transform:matrix(0.338975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338975,0.000000,0.000000,0.250000,0,0);}
.mbb_c01104{transform:matrix(0.340191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340191,0.000000,0.000000,0.250000,0,0);}
.m2e_c01104{transform:matrix(0.342942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342942,0.000000,0.000000,0.250000,0,0);}
.mc9_c01104{transform:matrix(0.343338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343338,0.000000,0.000000,0.250000,0,0);}
.m12_c01104{transform:matrix(0.343636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343636,0.000000,0.000000,0.250000,0,0);}
.m13_c01104{transform:matrix(0.344698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344698,0.000000,0.000000,0.250000,0,0);}
.m6b_c01104{transform:matrix(0.345008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345008,0.000000,0.000000,0.250000,0,0);}
.mc5_c01104{transform:matrix(0.347560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347560,0.000000,0.000000,0.250000,0,0);}
.m10_c01104{transform:matrix(0.347834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347834,0.000000,0.000000,0.250000,0,0);}
.m1d_c01104{transform:matrix(0.349884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349884,0.000000,0.000000,0.250000,0,0);}
.m86_c01104{transform:matrix(0.350265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350265,0.000000,0.000000,0.250000,0,0);}
.m8_c01104{transform:matrix(0.350640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350640,0.000000,0.000000,0.250000,0,0);}
.m19_c01104{transform:matrix(0.353774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353774,0.000000,0.000000,0.250000,0,0);}
.m72_c01104{transform:matrix(0.355799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355799,0.000000,0.000000,0.250000,0,0);}
.mb9_c01104{transform:matrix(0.365480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365480,0.000000,0.000000,0.250000,0,0);}
.m6a_c01104{transform:matrix(0.384369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384369,0.000000,0.000000,0.250000,0,0);}
.ma2_c01104{transform:matrix(0.386066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386066,0.000000,0.000000,0.250000,0,0);}
.m26_c01104{transform:matrix(0.386524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386524,0.000000,0.000000,0.250000,0,0);}
.m57_c01104{transform:matrix(0.390388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390388,0.000000,0.000000,0.250000,0,0);}
.mf_c01104{transform:matrix(0.397481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397481,0.000000,0.000000,0.250000,0,0);}
.mc1_c01104{transform:matrix(0.398520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398520,0.000000,0.000000,0.250000,0,0);}
.m92_c01104{transform:matrix(0.402361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402361,0.000000,0.000000,0.250000,0,0);}
.m96_c01104{transform:matrix(0.403308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403308,0.000000,0.000000,0.250000,0,0);}
.m7_c01104{transform:matrix(0.403692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403692,0.000000,0.000000,0.250000,0,0);}
.m61_c01104{transform:matrix(0.407418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407418,0.000000,0.000000,0.250000,0,0);}
.ma_c01104{transform:matrix(0.407942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407942,0.000000,0.000000,0.250000,0,0);}
.v0_c01104{vertical-align:0.000000px;}
.ls37_c01104{letter-spacing:-3.132367px;}
.ls28_c01104{letter-spacing:-2.952180px;}
.ls15_c01104{letter-spacing:-2.938327px;}
.ls32_c01104{letter-spacing:-2.744280px;}
.lsd_c01104{letter-spacing:-2.661127px;}
.ls31_c01104{letter-spacing:-2.654190px;}
.ls25_c01104{letter-spacing:-2.633400px;}
.ls26_c01104{letter-spacing:-2.550240px;}
.ls24_c01104{letter-spacing:-2.467080px;}
.ls11_c01104{letter-spacing:-2.453227px;}
.ls17_c01104{letter-spacing:-2.224530px;}
.ls27_c01104{letter-spacing:-1.899438px;}
.ls35_c01104{letter-spacing:-1.323630px;}
.ls2c_c01104{letter-spacing:-0.138521px;}
.ls1a_c01104{letter-spacing:-0.136858px;}
.ls1_c01104{letter-spacing:0.000000px;}
.ls20_c01104{letter-spacing:0.688406px;}
.ls23_c01104{letter-spacing:0.866767px;}
.ls2b_c01104{letter-spacing:1.049400px;}
.lsa_c01104{letter-spacing:1.269738px;}
.ls39_c01104{letter-spacing:1.369368px;}
.ls14_c01104{letter-spacing:1.443978px;}
.ls9_c01104{letter-spacing:1.741137px;}
.ls1b_c01104{letter-spacing:1.831500px;}
.lsc_c01104{letter-spacing:1.930500px;}
.ls38_c01104{letter-spacing:2.395014px;}
.ls16_c01104{letter-spacing:2.739350px;}
.ls1f_c01104{letter-spacing:2.775175px;}
.lsf_c01104{letter-spacing:2.871000px;}
.ls1d_c01104{letter-spacing:3.316500px;}
.ls34_c01104{letter-spacing:3.367030px;}
.ls2_c01104{letter-spacing:3.405610px;}
.ls2d_c01104{letter-spacing:3.465000px;}
.ls18_c01104{letter-spacing:3.484810px;}
.lsb_c01104{letter-spacing:3.504610px;}
.ls4_c01104{letter-spacing:3.524400px;}
.ls19_c01104{letter-spacing:3.544200px;}
.ls1e_c01104{letter-spacing:3.564000px;}
.ls6_c01104{letter-spacing:3.581424px;}
.ls7_c01104{letter-spacing:3.762000px;}
.ls8_c01104{letter-spacing:3.791700px;}
.ls5_c01104{letter-spacing:3.801610px;}
.ls2f_c01104{letter-spacing:3.920400px;}
.ls33_c01104{letter-spacing:3.950110px;}
.ls2a_c01104{letter-spacing:3.989700px;}
.ls13_c01104{letter-spacing:4.019400px;}
.ls30_c01104{letter-spacing:4.177810px;}
.ls12_c01104{letter-spacing:4.197610px;}
.ls29_c01104{letter-spacing:4.217400px;}
.ls0_c01104{letter-spacing:6.359760px;}
.ls3_c01104{letter-spacing:31.363200px;}
.ls1c_c01104{letter-spacing:54.172998px;}
.ls2e_c01104{letter-spacing:57.024198px;}
.lse_c01104{letter-spacing:58.449798px;}
.ls21_c01104{letter-spacing:59.875398px;}
.ls10_c01104{letter-spacing:62.726400px;}
.ls36_c01104{letter-spacing:68.428998px;}
.ls22_c01104{letter-spacing:71.280000px;}
.sc__c01104{text-shadow:none;}
.sc0_c01104{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01104{-webkit-text-stroke:0px transparent;}
.sc0_c01104{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01104{word-spacing:0.000000px;}
._1_c01104{margin-left:-1.321795px;}
._0_c01104{width:28.588175px;}
.fc0_c01104{color:transparent;}
.fs22_c01104{font-size:20.988000px;}
.fs0_c01104{font-size:22.572000px;}
.fs3_c01104{font-size:25.146000px;}
.fs4_c01104{font-size:31.363200px;}
.fs13_c01104{font-size:34.056198px;}
.fs19_c01104{font-size:36.630000px;}
.fs28_c01104{font-size:37.818000px;}
.fsb_c01104{font-size:38.610000px;}
.fs11_c01104{font-size:41.976198px;}
.fs5_c01104{font-size:45.144000px;}
.fs18_c01104{font-size:48.114000px;}
.fs1a_c01104{font-size:54.172998px;}
.fs24_c01104{font-size:57.024198px;}
.fse_c01104{font-size:57.420000px;}
.fsc_c01104{font-size:58.449798px;}
.fs1e_c01104{font-size:59.875398px;}
.fsf_c01104{font-size:62.726400px;}
.fs14_c01104{font-size:63.558000px;}
.fs1d_c01104{font-size:64.944000px;}
.fs1b_c01104{font-size:66.330000px;}
.fs1_c01104{font-size:68.112198px;}
.fs29_c01104{font-size:68.428998px;}
.fsd_c01104{font-size:68.706198px;}
.fs23_c01104{font-size:69.300000px;}
.fs15_c01104{font-size:69.696198px;}
.fsa_c01104{font-size:70.092198px;}
.fs6_c01104{font-size:70.488000px;}
.fs17_c01104{font-size:70.884000px;}
.fs1c_c01104{font-size:71.280000px;}
.fs2_c01104{font-size:72.864000px;}
.fs16_c01104{font-size:74.844000px;}
.fs8_c01104{font-size:75.240000px;}
.fs9_c01104{font-size:75.834000px;}
.fs7_c01104{font-size:76.032198px;}
.fs25_c01104{font-size:78.408000px;}
.fs27_c01104{font-size:79.002198px;}
.fs20_c01104{font-size:79.794000px;}
.fs12_c01104{font-size:80.388000px;}
.fs26_c01104{font-size:83.556198px;}
.fs10_c01104{font-size:83.952198px;}
.fs21_c01104{font-size:84.348000px;}
.fs2a_c01104{font-size:89.496198px;}
.fs1f_c01104{font-size:90.882198px;}
.y0_c01104{bottom:0.000000px;}
.y1_c01104{bottom:76.500000px;}
.y27_c01104{bottom:96.852735px;}
.y26_c01104{bottom:161.717535px;}
.y25_c01104{bottom:194.506335px;}
.y23_c01104{bottom:225.151785px;}
.y24_c01104{bottom:232.641135px;}
.y22_c01104{bottom:259.366185px;}
.y21_c01104{bottom:291.447135px;}
.y20_c01104{bottom:323.523135px;}
.y1f_c01104{bottom:352.391535px;}
.y1e_c01104{bottom:355.599135px;}
.y1d_c01104{bottom:388.031535px;}
.y1c_c01104{bottom:416.538585px;}
.y1b_c01104{bottom:451.114335px;}
.y1a_c01104{bottom:483.541785px;}
.y19_c01104{bottom:500.648985px;}
.y17_c01104{bottom:515.261385px;}
.y18_c01104{bottom:520.607385px;}
.y16_c01104{bottom:547.337385px;}
.y15_c01104{bottom:579.418335px;}
.y2_c01104{bottom:586.541385px;}
.y14_c01104{bottom:643.213935px;}
.y13_c01104{bottom:674.220735px;}
.y12_c01104{bottom:714.850335px;}
.y11_c01104{bottom:734.803785px;}
.y10_c01104{bottom:738.011385px;}
.yf_c01104{bottom:769.018185px;}
.yd_c01104{bottom:801.806985px;}
.yc_c01104{bottom:801.811935px;}
.ye_c01104{bottom:807.509385px;}
.yb_c01104{bottom:834.600735px;}
.ya_c01104{bottom:866.671785px;}
.y9_c01104{bottom:899.109135px;}
.y8_c01104{bottom:931.897935px;}
.y7_c01104{bottom:983.927385px;}
.y6_c01104{bottom:991.768185px;}
.y5_c01104{bottom:1002.103785px;}
.y4_c01104{bottom:1014.934185px;}
.y3_c01104{bottom:1065.186585px;}
.h23_c01104{height:20.598574px;}
.h6_c01104{height:20.887891px;}
.h2_c01104{height:23.541891px;}
.h5_c01104{height:26.226492px;}
.h15_c01104{height:35.519550px;}
.h1b_c01104{height:36.079217px;}
.h25_c01104{height:37.978116px;}
.h1a_c01104{height:38.203945px;}
.he_c01104{height:38.927565px;}
.h29_c01104{height:39.442992px;}
.h1e_c01104{height:39.877015px;}
.hd_c01104{height:40.269023px;}
.h13_c01104{height:41.197343px;}
.h11_c01104{height:41.775782px;}
.h2a_c01104{height:45.573713px;}
.h7_c01104{height:47.083781px;}
.h1f_c01104{height:47.472480px;}
.h10_c01104{height:56.354590px;}
.h16_c01104{height:62.378701px;}
.hf_c01104{height:67.431376px;}
.h1d_c01104{height:67.734563px;}
.hc_c01104{height:68.791659px;}
.h8_c01104{height:69.180117px;}
.h19_c01104{height:69.568770px;}
.h3_c01104{height:71.038894px;}
.h4_c01104{height:71.512031px;}
.h24_c01104{height:72.277734px;}
.h17_c01104{height:72.690957px;}
.h2b_c01104{height:73.103972px;}
.h18_c01104{height:73.455293px;}
.ha_c01104{height:73.843945px;}
.h1c_c01104{height:74.342813px;}
.hb_c01104{height:74.426924px;}
.h9_c01104{height:74.621444px;}
.h26_c01104{height:76.953164px;}
.h28_c01104{height:77.536337px;}
.h21_c01104{height:78.313447px;}
.h14_c01104{height:78.896426px;}
.h27_c01104{height:82.005839px;}
.h12_c01104{height:82.394491px;}
.h22_c01104{height:82.782949px;}
.h2c_c01104{height:87.835624px;}
.h20_c01104{height:89.195907px;}
.h1_c01104{height:1110.000000px;}
.h0_c01104{height:1263.000000px;}
.w1_c01104{width:775.500000px;}
.w0_c01104{width:892.500000px;}
.x0_c01104{left:0.000000px;}
.x2_c01104{left:17.311785px;}
.x1_c01104{left:58.500000px;}
.x8a_c01104{left:84.562485px;}
.x3c_c01104{left:87.463185px;}
.x66_c01104{left:139.294635px;}
.x10_c01104{left:141.081585px;}
.x19_c01104{left:142.472535px;}
.x7_c01104{left:144.591135px;}
.x6b_c01104{left:162.213135px;}
.x30_c01104{left:164.222835px;}
.x79_c01104{left:172.806135px;}
.x21_c01104{left:175.137585px;}
.x53_c01104{left:183.423885px;}
.x47_c01104{left:186.037485px;}
.x8_c01104{left:187.190835px;}
.x4d_c01104{left:195.274185px;}
.x27_c01104{left:197.724435px;}
.x8b_c01104{left:205.005885px;}
.x6c_c01104{left:216.677985px;}
.x48_c01104{left:218.395635px;}
.x11_c01104{left:221.326035px;}
.x37_c01104{left:229.043085px;}
.x4e_c01104{left:231.052785px;}
.x8c_c01104{left:238.893585px;}
.x54_c01104{left:240.061785px;}
.x22_c01104{left:242.120985px;}
.x75_c01104{left:252.436785px;}
.x3d_c01104{left:253.590135px;}
.x7d_c01104{left:261.223035px;}
.x9_c01104{left:263.316885px;}
.x31_c01104{left:264.945435px;}
.x80_c01104{left:272.934735px;}
.x3e_c01104{left:275.662185px;}
.x3f_c01104{left:280.478535px;}
.x49_c01104{left:284.280135px;}
.x60_c01104{left:285.591885px;}
.x23_c01104{left:287.309535px;}
.x32_c01104{left:292.888185px;}
.x7e_c01104{left:294.982035px;}
.x55_c01104{left:297.021435px;}
.x67_c01104{left:305.669085px;}
.x1a_c01104{left:307.505535px;}
.x40_c01104{left:309.341985px;}
.x6d_c01104{left:317.494635px;}
.x38_c01104{left:318.940035px;}
.x24_c01104{left:320.494335px;}
.x56_c01104{left:328.849935px;}
.x28_c01104{left:331.107135px;}
.x5a_c01104{left:339.997335px;}
.x61_c01104{left:351.001185px;}
.x12_c01104{left:353.990985px;}
.x82_c01104{left:360.554685px;}
.x4a_c01104{left:363.034635px;}
.x39_c01104{left:366.242235px;}
.xa_c01104{left:375.592785px;}
.x3a_c01104{left:385.992735px;}
.x33_c01104{left:387.477735px;}
.x41_c01104{left:390.244785px;}
.x42_c01104{left:397.729185px;}
.x8d_c01104{left:405.104685px;}
.x68_c01104{left:406.525335px;}
.x29_c01104{left:408.252885px;}
.x34_c01104{left:409.851735px;}
.x6e_c01104{left:415.910535px;}
.x25_c01104{left:418.722135px;}
.x1b_c01104{left:421.013985px;}
.x4f_c01104{left:430.181385px;}
.x84_c01104{left:438.720135px;}
.x2a_c01104{left:441.591135px;}
.x5b_c01104{left:451.139685px;}
.x13_c01104{left:453.778035px;}
.x43_c01104{left:460.099185px;}
.x62_c01104{left:462.460335px;}
.xb_c01104{left:463.564185px;}
.x3b_c01104{left:465.534285px;}
.x6f_c01104{left:471.508935px;}
.x70_c01104{left:473.647335px;}
.x57_c01104{left:483.869085px;}
.x14_c01104{left:485.849085px;}
.x44_c01104{left:488.254785px;}
.x76_c01104{left:494.793735px;}
.x4b_c01104{left:495.956985px;}
.x88_c01104{left:504.896685px;}
.x63_c01104{left:506.455935px;}
.x45_c01104{left:507.500385px;}
.x1c_c01104{left:508.594335px;}
.x85_c01104{left:511.148535px;}
.x69_c01104{left:516.049035px;}
.x5c_c01104{left:518.256735px;}
.x15_c01104{left:519.924885px;}
.x2b_c01104{left:521.459385px;}
.x7f_c01104{left:527.820135px;}
.x2c_c01104{left:531.814785px;}
.x35_c01104{left:539.690235px;}
.xc_c01104{left:541.086135px;}
.x71_c01104{left:547.813185px;}
.x64_c01104{left:550.238685px;}
.x2d_c01104{left:551.288085px;}
.x72_c01104{left:558.732885px;}
.x50_c01104{left:562.197885px;}
.x36_c01104{left:563.460135px;}
.x65_c01104{left:571.553385px;}
.xd_c01104{left:574.454085px;}
.x73_c01104{left:578.131935px;}
.x74_c01104{left:584.839185px;}
.x2e_c01104{left:586.710285px;}
.x83_c01104{left:594.620385px;}
.x58_c01104{left:596.011335px;}
.x1d_c01104{left:607.455735px;}
.x4c_c01104{left:616.454835px;}
.x46_c01104{left:618.009135px;}
.x16_c01104{left:619.211985px;}
.x89_c01104{left:625.765785px;}
.x77_c01104{left:626.844885px;}
.x6a_c01104{left:628.324935px;}
.x7a_c01104{left:629.498085px;}
.x5d_c01104{left:637.348785px;}
.x59_c01104{left:639.264435px;}
.x51_c01104{left:650.000985px;}
.x17_c01104{left:651.649335px;}
.x5e_c01104{left:660.900885px;}
.x1e_c01104{left:663.390735px;}
.xe_c01104{left:674.087685px;}
.x81_c01104{left:680.973135px;}
.x86_c01104{left:683.359035px;}
.x52_c01104{left:685.809285px;}
.x78_c01104{left:694.204485px;}
.x1f_c01104{left:695.258835px;}
.x5f_c01104{left:697.679385px;}
.x4_c01104{left:700.372185px;}
.x5_c01104{left:702.277935px;}
.x6_c01104{left:704.668785px;}
.xf_c01104{left:706.812135px;}
.x18_c01104{left:708.579285px;}
.x3_c01104{left:710.118735px;}
.x7b_c01104{left:714.811335px;}
.x26_c01104{left:717.390285px;}
.x20_c01104{left:718.617885px;}
.x7c_c01104{left:724.439085px;}
.x2f_c01104{left:732.393735px;}
.x87_c01104{left:737.823885px;}
@media print{
.v0_c01104{vertical-align:0.000000pt;}
.ls37_c01104{letter-spacing:-2.784326pt;}
.ls28_c01104{letter-spacing:-2.624160pt;}
.ls15_c01104{letter-spacing:-2.611846pt;}
.ls32_c01104{letter-spacing:-2.439360pt;}
.lsd_c01104{letter-spacing:-2.365446pt;}
.ls31_c01104{letter-spacing:-2.359280pt;}
.ls25_c01104{letter-spacing:-2.340800pt;}
.ls26_c01104{letter-spacing:-2.266880pt;}
.ls24_c01104{letter-spacing:-2.192960pt;}
.ls11_c01104{letter-spacing:-2.180646pt;}
.ls17_c01104{letter-spacing:-1.977360pt;}
.ls27_c01104{letter-spacing:-1.688389pt;}
.ls35_c01104{letter-spacing:-1.176560pt;}
.ls2c_c01104{letter-spacing:-0.123130pt;}
.ls1a_c01104{letter-spacing:-0.121652pt;}
.ls1_c01104{letter-spacing:0.000000pt;}
.ls20_c01104{letter-spacing:0.611917pt;}
.ls23_c01104{letter-spacing:0.770460pt;}
.ls2b_c01104{letter-spacing:0.932800pt;}
.lsa_c01104{letter-spacing:1.128656pt;}
.ls39_c01104{letter-spacing:1.217216pt;}
.ls14_c01104{letter-spacing:1.283536pt;}
.ls9_c01104{letter-spacing:1.547678pt;}
.ls1b_c01104{letter-spacing:1.628000pt;}
.lsc_c01104{letter-spacing:1.716000pt;}
.ls38_c01104{letter-spacing:2.128902pt;}
.ls16_c01104{letter-spacing:2.434978pt;}
.ls1f_c01104{letter-spacing:2.466822pt;}
.lsf_c01104{letter-spacing:2.552000pt;}
.ls1d_c01104{letter-spacing:2.948000pt;}
.ls34_c01104{letter-spacing:2.992915pt;}
.ls2_c01104{letter-spacing:3.027209pt;}
.ls2d_c01104{letter-spacing:3.080000pt;}
.ls18_c01104{letter-spacing:3.097609pt;}
.lsb_c01104{letter-spacing:3.115209pt;}
.ls4_c01104{letter-spacing:3.132800pt;}
.ls19_c01104{letter-spacing:3.150400pt;}
.ls1e_c01104{letter-spacing:3.168000pt;}
.ls6_c01104{letter-spacing:3.183488pt;}
.ls7_c01104{letter-spacing:3.344000pt;}
.ls8_c01104{letter-spacing:3.370400pt;}
.ls5_c01104{letter-spacing:3.379209pt;}
.ls2f_c01104{letter-spacing:3.484800pt;}
.ls33_c01104{letter-spacing:3.511209pt;}
.ls2a_c01104{letter-spacing:3.546400pt;}
.ls13_c01104{letter-spacing:3.572800pt;}
.ls30_c01104{letter-spacing:3.713609pt;}
.ls12_c01104{letter-spacing:3.731209pt;}
.ls29_c01104{letter-spacing:3.748800pt;}
.ls0_c01104{letter-spacing:5.653120pt;}
.ls3_c01104{letter-spacing:27.878400pt;}
.ls1c_c01104{letter-spacing:48.153776pt;}
.ls2e_c01104{letter-spacing:50.688176pt;}
.lse_c01104{letter-spacing:51.955376pt;}
.ls21_c01104{letter-spacing:53.222576pt;}
.ls10_c01104{letter-spacing:55.756800pt;}
.ls36_c01104{letter-spacing:60.825776pt;}
.ls22_c01104{letter-spacing:63.360000pt;}
.ws0_c01104{word-spacing:0.000000pt;}
._1_c01104{margin-left:-1.174929pt;}
._0_c01104{width:25.411711pt;}
.fs22_c01104{font-size:18.656000pt;}
.fs0_c01104{font-size:20.064000pt;}
.fs3_c01104{font-size:22.352000pt;}
.fs4_c01104{font-size:27.878400pt;}
.fs13_c01104{font-size:30.272176pt;}
.fs19_c01104{font-size:32.560000pt;}
.fs28_c01104{font-size:33.616000pt;}
.fsb_c01104{font-size:34.320000pt;}
.fs11_c01104{font-size:37.312176pt;}
.fs5_c01104{font-size:40.128000pt;}
.fs18_c01104{font-size:42.768000pt;}
.fs1a_c01104{font-size:48.153776pt;}
.fs24_c01104{font-size:50.688176pt;}
.fse_c01104{font-size:51.040000pt;}
.fsc_c01104{font-size:51.955376pt;}
.fs1e_c01104{font-size:53.222576pt;}
.fsf_c01104{font-size:55.756800pt;}
.fs14_c01104{font-size:56.496000pt;}
.fs1d_c01104{font-size:57.728000pt;}
.fs1b_c01104{font-size:58.960000pt;}
.fs1_c01104{font-size:60.544176pt;}
.fs29_c01104{font-size:60.825776pt;}
.fsd_c01104{font-size:61.072176pt;}
.fs23_c01104{font-size:61.600000pt;}
.fs15_c01104{font-size:61.952176pt;}
.fsa_c01104{font-size:62.304176pt;}
.fs6_c01104{font-size:62.656000pt;}
.fs17_c01104{font-size:63.008000pt;}
.fs1c_c01104{font-size:63.360000pt;}
.fs2_c01104{font-size:64.768000pt;}
.fs16_c01104{font-size:66.528000pt;}
.fs8_c01104{font-size:66.880000pt;}
.fs9_c01104{font-size:67.408000pt;}
.fs7_c01104{font-size:67.584176pt;}
.fs25_c01104{font-size:69.696000pt;}
.fs27_c01104{font-size:70.224176pt;}
.fs20_c01104{font-size:70.928000pt;}
.fs12_c01104{font-size:71.456000pt;}
.fs26_c01104{font-size:74.272176pt;}
.fs10_c01104{font-size:74.624176pt;}
.fs21_c01104{font-size:74.976000pt;}
.fs2a_c01104{font-size:79.552176pt;}
.fs1f_c01104{font-size:80.784176pt;}
.y0_c01104{bottom:0.000000pt;}
.y1_c01104{bottom:68.000000pt;}
.y27_c01104{bottom:86.091320pt;}
.y26_c01104{bottom:143.748920pt;}
.y25_c01104{bottom:172.894520pt;}
.y23_c01104{bottom:200.134920pt;}
.y24_c01104{bottom:206.792120pt;}
.y22_c01104{bottom:230.547720pt;}
.y21_c01104{bottom:259.064120pt;}
.y20_c01104{bottom:287.576120pt;}
.y1f_c01104{bottom:313.236920pt;}
.y1e_c01104{bottom:316.088120pt;}
.y1d_c01104{bottom:344.916920pt;}
.y1c_c01104{bottom:370.256520pt;}
.y1b_c01104{bottom:400.990520pt;}
.y1a_c01104{bottom:429.814920pt;}
.y19_c01104{bottom:445.021320pt;}
.y17_c01104{bottom:458.010120pt;}
.y18_c01104{bottom:462.762120pt;}
.y16_c01104{bottom:486.522120pt;}
.y15_c01104{bottom:515.038520pt;}
.y2_c01104{bottom:521.370120pt;}
.y14_c01104{bottom:571.745720pt;}
.y13_c01104{bottom:599.307320pt;}
.y12_c01104{bottom:635.422520pt;}
.y11_c01104{bottom:653.158920pt;}
.y10_c01104{bottom:656.010120pt;}
.yf_c01104{bottom:683.571720pt;}
.yd_c01104{bottom:712.717320pt;}
.yc_c01104{bottom:712.721720pt;}
.ye_c01104{bottom:717.786120pt;}
.yb_c01104{bottom:741.867320pt;}
.ya_c01104{bottom:770.374920pt;}
.y9_c01104{bottom:799.208120pt;}
.y8_c01104{bottom:828.353720pt;}
.y7_c01104{bottom:874.602120pt;}
.y6_c01104{bottom:881.571720pt;}
.y5_c01104{bottom:890.758920pt;}
.y4_c01104{bottom:902.163720pt;}
.y3_c01104{bottom:946.832520pt;}
.h23_c01104{height:18.309844pt;}
.h6_c01104{height:18.567014pt;}
.h2_c01104{height:20.926125pt;}
.h5_c01104{height:23.312438pt;}
.h15_c01104{height:31.572934pt;}
.h1b_c01104{height:32.070415pt;}
.h25_c01104{height:33.758325pt;}
.h1a_c01104{height:33.959063pt;}
.he_c01104{height:34.602280pt;}
.h29_c01104{height:35.060438pt;}
.h1e_c01104{height:35.446236pt;}
.hd_c01104{height:35.794688pt;}
.h13_c01104{height:36.619860pt;}
.h11_c01104{height:37.134029pt;}
.h2a_c01104{height:40.509967pt;}
.h7_c01104{height:41.852250pt;}
.h1f_c01104{height:42.197760pt;}
.h10_c01104{height:50.092969pt;}
.h16_c01104{height:55.447734pt;}
.hf_c01104{height:59.939001pt;}
.h1d_c01104{height:60.208500pt;}
.hc_c01104{height:61.148141pt;}
.h8_c01104{height:61.493438pt;}
.h19_c01104{height:61.838906pt;}
.h3_c01104{height:63.145684pt;}
.h4_c01104{height:63.566250pt;}
.h24_c01104{height:64.246875pt;}
.h17_c01104{height:64.614184pt;}
.h2b_c01104{height:64.981309pt;}
.h18_c01104{height:65.293594pt;}
.ha_c01104{height:65.639063pt;}
.h1c_c01104{height:66.082500pt;}
.hb_c01104{height:66.157266pt;}
.h9_c01104{height:66.330173pt;}
.h26_c01104{height:68.402813pt;}
.h28_c01104{height:68.921188pt;}
.h21_c01104{height:69.611953pt;}
.h14_c01104{height:70.130156pt;}
.h27_c01104{height:72.894079pt;}
.h12_c01104{height:73.239548pt;}
.h22_c01104{height:73.584844pt;}
.h2c_c01104{height:78.076110pt;}
.h20_c01104{height:79.285251pt;}
.h1_c01104{height:986.666667pt;}
.h0_c01104{height:1122.666667pt;}
.w1_c01104{width:689.333333pt;}
.w0_c01104{width:793.333333pt;}
.x0_c01104{left:0.000000pt;}
.x2_c01104{left:15.388253pt;}
.x1_c01104{left:52.000000pt;}
.x8a_c01104{left:75.166653pt;}
.x3c_c01104{left:77.745053pt;}
.x66_c01104{left:123.817453pt;}
.x10_c01104{left:125.405853pt;}
.x19_c01104{left:126.642253pt;}
.x7_c01104{left:128.525453pt;}
.x6b_c01104{left:144.189453pt;}
.x30_c01104{left:145.975853pt;}
.x79_c01104{left:153.605453pt;}
.x21_c01104{left:155.677853pt;}
.x53_c01104{left:163.043453pt;}
.x47_c01104{left:165.366653pt;}
.x8_c01104{left:166.391853pt;}
.x4d_c01104{left:173.577053pt;}
.x27_c01104{left:175.755053pt;}
.x8b_c01104{left:182.227453pt;}
.x6c_c01104{left:192.602653pt;}
.x48_c01104{left:194.129453pt;}
.x11_c01104{left:196.734253pt;}
.x37_c01104{left:203.593853pt;}
.x4e_c01104{left:205.380253pt;}
.x8c_c01104{left:212.349853pt;}
.x54_c01104{left:213.388253pt;}
.x22_c01104{left:215.218653pt;}
.x75_c01104{left:224.388253pt;}
.x3d_c01104{left:225.413453pt;}
.x7d_c01104{left:232.198253pt;}
.x9_c01104{left:234.059453pt;}
.x31_c01104{left:235.507053pt;}
.x80_c01104{left:242.608653pt;}
.x3e_c01104{left:245.033053pt;}
.x3f_c01104{left:249.314253pt;}
.x49_c01104{left:252.693453pt;}
.x60_c01104{left:253.859453pt;}
.x23_c01104{left:255.386253pt;}
.x32_c01104{left:260.345053pt;}
.x7e_c01104{left:262.206253pt;}
.x55_c01104{left:264.019053pt;}
.x67_c01104{left:271.705853pt;}
.x1a_c01104{left:273.338253pt;}
.x40_c01104{left:274.970653pt;}
.x6d_c01104{left:282.217453pt;}
.x38_c01104{left:283.502253pt;}
.x24_c01104{left:284.883853pt;}
.x56_c01104{left:292.311053pt;}
.x28_c01104{left:294.317453pt;}
.x5a_c01104{left:302.219853pt;}
.x61_c01104{left:312.001053pt;}
.x12_c01104{left:314.658653pt;}
.x82_c01104{left:320.493053pt;}
.x4a_c01104{left:322.697453pt;}
.x39_c01104{left:325.548653pt;}
.xa_c01104{left:333.860253pt;}
.x3a_c01104{left:343.104653pt;}
.x33_c01104{left:344.424653pt;}
.x41_c01104{left:346.884253pt;}
.x42_c01104{left:353.537053pt;}
.x8d_c01104{left:360.093053pt;}
.x68_c01104{left:361.355853pt;}
.x29_c01104{left:362.891453pt;}
.x34_c01104{left:364.312653pt;}
.x6e_c01104{left:369.698253pt;}
.x25_c01104{left:372.197453pt;}
.x1b_c01104{left:374.234653pt;}
.x4f_c01104{left:382.383453pt;}
.x84_c01104{left:389.973453pt;}
.x2a_c01104{left:392.525453pt;}
.x5b_c01104{left:401.013053pt;}
.x13_c01104{left:403.358253pt;}
.x43_c01104{left:408.977053pt;}
.x62_c01104{left:411.075853pt;}
.xb_c01104{left:412.057053pt;}
.x3b_c01104{left:413.808253pt;}
.x6f_c01104{left:419.119053pt;}
.x70_c01104{left:421.019853pt;}
.x57_c01104{left:430.105853pt;}
.x14_c01104{left:431.865853pt;}
.x44_c01104{left:434.004253pt;}
.x76_c01104{left:439.816653pt;}
.x4b_c01104{left:440.850653pt;}
.x88_c01104{left:448.797053pt;}
.x63_c01104{left:450.183053pt;}
.x45_c01104{left:451.111453pt;}
.x1c_c01104{left:452.083853pt;}
.x85_c01104{left:454.354253pt;}
.x69_c01104{left:458.710253pt;}
.x5c_c01104{left:460.672653pt;}
.x15_c01104{left:462.155453pt;}
.x2b_c01104{left:463.519453pt;}
.x7f_c01104{left:469.173453pt;}
.x2c_c01104{left:472.724253pt;}
.x35_c01104{left:479.724653pt;}
.xc_c01104{left:480.965453pt;}
.x71_c01104{left:486.945053pt;}
.x64_c01104{left:489.101053pt;}
.x2d_c01104{left:490.033853pt;}
.x72_c01104{left:496.651453pt;}
.x50_c01104{left:499.731453pt;}
.x36_c01104{left:500.853453pt;}
.x65_c01104{left:508.047453pt;}
.xd_c01104{left:510.625853pt;}
.x73_c01104{left:513.895053pt;}
.x74_c01104{left:519.857053pt;}
.x2e_c01104{left:521.520253pt;}
.x83_c01104{left:528.551453pt;}
.x58_c01104{left:529.787853pt;}
.x1d_c01104{left:539.960653pt;}
.x4c_c01104{left:547.959853pt;}
.x46_c01104{left:549.341453pt;}
.x16_c01104{left:550.410653pt;}
.x89_c01104{left:556.236253pt;}
.x77_c01104{left:557.195453pt;}
.x6a_c01104{left:558.511053pt;}
.x7a_c01104{left:559.553853pt;}
.x5d_c01104{left:566.532253pt;}
.x59_c01104{left:568.235053pt;}
.x51_c01104{left:577.778653pt;}
.x17_c01104{left:579.243853pt;}
.x5e_c01104{left:587.467453pt;}
.x1e_c01104{left:589.680653pt;}
.xe_c01104{left:599.189053pt;}
.x81_c01104{left:605.309453pt;}
.x86_c01104{left:607.430253pt;}
.x52_c01104{left:609.608253pt;}
.x78_c01104{left:617.070653pt;}
.x1f_c01104{left:618.007853pt;}
.x5f_c01104{left:620.159453pt;}
.x4_c01104{left:622.553053pt;}
.x5_c01104{left:624.247053pt;}
.x6_c01104{left:626.372253pt;}
.xf_c01104{left:628.277453pt;}
.x18_c01104{left:629.848253pt;}
.x3_c01104{left:631.216653pt;}
.x7b_c01104{left:635.387853pt;}
.x26_c01104{left:637.680253pt;}
.x20_c01104{left:638.771453pt;}
.x7c_c01104{left:643.945853pt;}
.x2f_c01104{left:651.016653pt;}
.x87_c01104{left:655.843453pt;}
}





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

.ir_c01105:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01105{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01105;src:url('chunks/assets/font_35d6ecba1b678a66bce360c0.woff2')format("woff");}.ff1_c01105{font-family:ff1_c01105;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01105;src:url('chunks/assets/font_2624849f6c34fb3072e3b09c.woff2')format("woff");}.ff2_c01105{font-family:ff2_c01105;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01105;src:url('chunks/assets/font_6174ee2c56ccc41236ee74df.woff2')format("woff");}.ff3_c01105{font-family:ff3_c01105;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01105;src:url('chunks/assets/font_8b2fac6d252b4bd8362f9006.woff2')format("woff");}.ff4_c01105{font-family:ff4_c01105;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m9d_c01105{transform:matrix(0.035001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.035001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.035001,0.000000,0.000000,0.250000,0,0);}
.ma5_c01105{transform:matrix(0.046667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.046667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.046667,0.000000,0.000000,0.250000,0,0);}
.m74_c01105{transform:matrix(0.061112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.061112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.061112,0.000000,0.000000,0.250000,0,0);}
.m9b_c01105{transform:matrix(0.065001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065001,0.000000,0.000000,0.250000,0,0);}
.ma0_c01105{transform:matrix(0.078308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078308,0.000000,0.000000,0.250000,0,0);}
.m9c_c01105{transform:matrix(0.083572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083572,0.000000,0.000000,0.250000,0,0);}
.ma1_c01105{transform:matrix(0.085001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085001,0.000000,0.000000,0.250000,0,0);}
.m64_c01105{transform:matrix(0.091666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091666,0.000000,0.000000,0.250000,0,0);}
.ma4_c01105{transform:matrix(0.092501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092501,0.000000,0.000000,0.250000,0,0);}
.m75_c01105{transform:matrix(0.097222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097222,0.000000,0.000000,0.250000,0,0);}
.m76_c01105{transform:matrix(0.097531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097531,0.000000,0.000000,0.250000,0,0);}
.m9f_c01105{transform:matrix(0.105715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105715,0.000000,0.000000,0.250000,0,0);}
.ma3_c01105{transform:matrix(0.115001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115001,0.000000,0.000000,0.250000,0,0);}
.m46_c01105{transform:matrix(0.117887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117887,0.000000,0.000000,0.250000,0,0);}
.ma2_c01105{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);}
.m73_c01105{transform:matrix(0.127778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127778,0.000000,0.000000,0.250000,0,0);}
.ma6_c01105{transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);}
.m99_c01105{transform:matrix(0.131429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131429,0.000000,0.000000,0.250000,0,0);}
.m9e_c01105{transform:matrix(0.151818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151818,0.000000,0.000000,0.250000,0,0);}
.m85_c01105{transform:matrix(0.163481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163481,0.000000,0.000000,0.250000,0,0);}
.m6e_c01105{transform:matrix(0.170370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170370,0.000000,0.000000,0.250000,0,0);}
.m66_c01105{transform:matrix(0.174999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174999,0.000000,0.000000,0.250000,0,0);}
.m5a_c01105{transform:matrix(0.177326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177326,0.000000,0.000000,0.250000,0,0);}
.m6c_c01105{transform:matrix(0.177350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177350,0.000000,0.000000,0.250000,0,0);}
.m4c_c01105{transform:matrix(0.188180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188180,0.000000,0.000000,0.250000,0,0);}
.m1a_c01105{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m65_c01105{transform:matrix(0.208870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208870,0.000000,0.000000,0.250000,0,0);}
.m9a_c01105{transform:matrix(0.223719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223719,0.000000,0.000000,0.250000,0,0);}
.m1b_c01105{transform:matrix(0.230635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230635,0.000000,0.000000,0.250000,0,0);}
.m96_c01105{transform:matrix(0.239640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239640,0.000000,0.000000,0.250000,0,0);}
.m0_c01105{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2_c01105{transform:matrix(0.250305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250305,0.000000,0.000000,0.250000,0,0);}
.m4d_c01105{transform:matrix(0.250360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250360,0.000000,0.000000,0.250000,0,0);}
.m95_c01105{transform:matrix(0.251207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251207,0.000000,0.000000,0.250000,0,0);}
.m86_c01105{transform:matrix(0.256275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256275,0.000000,0.000000,0.250000,0,0);}
.mb0_c01105{transform:matrix(0.257259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257259,0.000000,0.000000,0.250000,0,0);}
.m98_c01105{transform:matrix(0.258291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258291,0.000000,0.000000,0.250000,0,0);}
.m5e_c01105{transform:matrix(0.259584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259584,0.000000,0.000000,0.250000,0,0);}
.m55_c01105{transform:matrix(0.259814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259814,0.000000,0.000000,0.250000,0,0);}
.m48_c01105{transform:matrix(0.260793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260793,0.000000,0.000000,0.250000,0,0);}
.m9_c01105{transform:matrix(0.261324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261324,0.000000,0.000000,0.250000,0,0);}
.m3f_c01105{transform:matrix(0.261341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261341,0.000000,0.000000,0.250000,0,0);}
.mab_c01105{transform:matrix(0.264297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264297,0.000000,0.000000,0.250000,0,0);}
.mc_c01105{transform:matrix(0.265262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265262,0.000000,0.000000,0.250000,0,0);}
.m50_c01105{transform:matrix(0.265770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265770,0.000000,0.000000,0.250000,0,0);}
.me_c01105{transform:matrix(0.266671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266671,0.000000,0.000000,0.250000,0,0);}
.m6_c01105{transform:matrix(0.267301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267301,0.000000,0.000000,0.250000,0,0);}
.m91_c01105{transform:matrix(0.268277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268277,0.000000,0.000000,0.250000,0,0);}
.m22_c01105{transform:matrix(0.269031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269031,0.000000,0.000000,0.250000,0,0);}
.m92_c01105{transform:matrix(0.269083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269083,0.000000,0.000000,0.250000,0,0);}
.mc1_c01105{transform:matrix(0.269240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269240,0.000000,0.000000,0.250000,0,0);}
.m18_c01105{transform:matrix(0.269554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269554,0.000000,0.000000,0.250000,0,0);}
.m13_c01105{transform:matrix(0.269618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269618,0.000000,0.000000,0.250000,0,0);}
.m1e_c01105{transform:matrix(0.270126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270126,0.000000,0.000000,0.250000,0,0);}
.mb6_c01105{transform:matrix(0.270304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270304,0.000000,0.000000,0.250000,0,0);}
.m34_c01105{transform:matrix(0.270902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270902,0.000000,0.000000,0.250000,0,0);}
.m3a_c01105{transform:matrix(0.271350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271350,0.000000,0.000000,0.250000,0,0);}
.m45_c01105{transform:matrix(0.271527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271527,0.000000,0.000000,0.250000,0,0);}
.m36_c01105{transform:matrix(0.271708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271708,0.000000,0.000000,0.250000,0,0);}
.m97_c01105{transform:matrix(0.272054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272054,0.000000,0.000000,0.250000,0,0);}
.m2c_c01105{transform:matrix(0.272123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272123,0.000000,0.000000,0.250000,0,0);}
.m4e_c01105{transform:matrix(0.272582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272582,0.000000,0.000000,0.250000,0,0);}
.mf_c01105{transform:matrix(0.273027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273027,0.000000,0.000000,0.250000,0,0);}
.m5_c01105{transform:matrix(0.273997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273997,0.000000,0.000000,0.250000,0,0);}
.m81_c01105{transform:matrix(0.275076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275076,0.000000,0.000000,0.250000,0,0);}
.m53_c01105{transform:matrix(0.275310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275310,0.000000,0.000000,0.250000,0,0);}
.m58_c01105{transform:matrix(0.275578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275578,0.000000,0.000000,0.250000,0,0);}
.m93_c01105{transform:matrix(0.276216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276216,0.000000,0.000000,0.250000,0,0);}
.m80_c01105{transform:matrix(0.276379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276379,0.000000,0.000000,0.250000,0,0);}
.m6d_c01105{transform:matrix(0.276769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276769,0.000000,0.000000,0.250000,0,0);}
.m68_c01105{transform:matrix(0.276960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276960,0.000000,0.000000,0.250000,0,0);}
.m5b_c01105{transform:matrix(0.277451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277451,0.000000,0.000000,0.250000,0,0);}
.m63_c01105{transform:matrix(0.278558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278558,0.000000,0.000000,0.250000,0,0);}
.m19_c01105{transform:matrix(0.279077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279077,0.000000,0.000000,0.250000,0,0);}
.m16_c01105{transform:matrix(0.279226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279226,0.000000,0.000000,0.250000,0,0);}
.m33_c01105{transform:matrix(0.279601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279601,0.000000,0.000000,0.250000,0,0);}
.m4f_c01105{transform:matrix(0.280332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280332,0.000000,0.000000,0.250000,0,0);}
.mad_c01105{transform:matrix(0.280488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280488,0.000000,0.000000,0.250000,0,0);}
.m39_c01105{transform:matrix(0.280682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280682,0.000000,0.000000,0.250000,0,0);}
.m52_c01105{transform:matrix(0.281503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281503,0.000000,0.000000,0.250000,0,0);}
.m14_c01105{transform:matrix(0.281801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281801,0.000000,0.000000,0.250000,0,0);}
.m1_c01105{transform:matrix(0.281996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281996,0.000000,0.000000,0.250000,0,0);}
.m40_c01105{transform:matrix(0.282571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282571,0.000000,0.000000,0.250000,0,0);}
.m47_c01105{transform:matrix(0.282579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282579,0.000000,0.000000,0.250000,0,0);}
.m20_c01105{transform:matrix(0.282793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282793,0.000000,0.000000,0.250000,0,0);}
.mbf_c01105{transform:matrix(0.283270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283270,0.000000,0.000000,0.250000,0,0);}
.mb8_c01105{transform:matrix(0.283510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283510,0.000000,0.000000,0.250000,0,0);}
.m83_c01105{transform:matrix(0.283605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283605,0.000000,0.000000,0.250000,0,0);}
.m7e_c01105{transform:matrix(0.283737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283737,0.000000,0.000000,0.250000,0,0);}
.m25_c01105{transform:matrix(0.285266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285266,0.000000,0.000000,0.250000,0,0);}
.m41_c01105{transform:matrix(0.286162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286162,0.000000,0.000000,0.250000,0,0);}
.m12_c01105{transform:matrix(0.286451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286451,0.000000,0.000000,0.250000,0,0);}
.m90_c01105{transform:matrix(0.286475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286475,0.000000,0.000000,0.250000,0,0);}
.mbc_c01105{transform:matrix(0.287173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287173,0.000000,0.000000,0.250000,0,0);}
.m35_c01105{transform:matrix(0.288675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288675,0.000000,0.000000,0.250000,0,0);}
.m7f_c01105{transform:matrix(0.290572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290572,0.000000,0.000000,0.250000,0,0);}
.m4b_c01105{transform:matrix(0.290584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290584,0.000000,0.000000,0.250000,0,0);}
.m6a_c01105{transform:matrix(0.290737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290737,0.000000,0.000000,0.250000,0,0);}
.m51_c01105{transform:matrix(0.290865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290865,0.000000,0.000000,0.250000,0,0);}
.m32_c01105{transform:matrix(0.290957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290957,0.000000,0.000000,0.250000,0,0);}
.m44_c01105{transform:matrix(0.290958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290958,0.000000,0.000000,0.250000,0,0);}
.m71_c01105{transform:matrix(0.291198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291198,0.000000,0.000000,0.250000,0,0);}
.m26_c01105{transform:matrix(0.291753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291753,0.000000,0.000000,0.250000,0,0);}
.m6b_c01105{transform:matrix(0.291870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291870,0.000000,0.000000,0.250000,0,0);}
.m31_c01105{transform:matrix(0.291896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291896,0.000000,0.000000,0.250000,0,0);}
.m11_c01105{transform:matrix(0.292292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292292,0.000000,0.000000,0.250000,0,0);}
.m42_c01105{transform:matrix(0.292387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292387,0.000000,0.000000,0.250000,0,0);}
.m10_c01105{transform:matrix(0.293664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293664,0.000000,0.000000,0.250000,0,0);}
.m27_c01105{transform:matrix(0.293745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293745,0.000000,0.000000,0.250000,0,0);}
.mbd_c01105{transform:matrix(0.294297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294297,0.000000,0.000000,0.250000,0,0);}
.mb_c01105{transform:matrix(0.294299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294299,0.000000,0.000000,0.250000,0,0);}
.mac_c01105{transform:matrix(0.295510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295510,0.000000,0.000000,0.250000,0,0);}
.m17_c01105{transform:matrix(0.295532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295532,0.000000,0.000000,0.250000,0,0);}
.maa_c01105{transform:matrix(0.295599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295599,0.000000,0.000000,0.250000,0,0);}
.m2d_c01105{transform:matrix(0.295790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295790,0.000000,0.000000,0.250000,0,0);}
.m49_c01105{transform:matrix(0.297444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297444,0.000000,0.000000,0.250000,0,0);}
.m61_c01105{transform:matrix(0.298861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298861,0.000000,0.000000,0.250000,0,0);}
.m24_c01105{transform:matrix(0.300054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300054,0.000000,0.000000,0.250000,0,0);}
.m1f_c01105{transform:matrix(0.300262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300262,0.000000,0.000000,0.250000,0,0);}
.ma7_c01105{transform:matrix(0.300779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300779,0.000000,0.000000,0.250000,0,0);}
.m8b_c01105{transform:matrix(0.300932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300932,0.000000,0.000000,0.250000,0,0);}
.mbe_c01105{transform:matrix(0.301008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301008,0.000000,0.000000,0.250000,0,0);}
.m43_c01105{transform:matrix(0.301891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301891,0.000000,0.000000,0.250000,0,0);}
.m62_c01105{transform:matrix(0.301910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301910,0.000000,0.000000,0.250000,0,0);}
.m2e_c01105{transform:matrix(0.302294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302294,0.000000,0.000000,0.250000,0,0);}
.m29_c01105{transform:matrix(0.302308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302308,0.000000,0.000000,0.250000,0,0);}
.m2f_c01105{transform:matrix(0.302463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302463,0.000000,0.000000,0.250000,0,0);}
.m88_c01105{transform:matrix(0.303171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303171,0.000000,0.000000,0.250000,0,0);}
.m67_c01105{transform:matrix(0.303342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303342,0.000000,0.000000,0.250000,0,0);}
.m38_c01105{transform:matrix(0.303451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303451,0.000000,0.000000,0.250000,0,0);}
.m4_c01105{transform:matrix(0.303529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303529,0.000000,0.000000,0.250000,0,0);}
.m69_c01105{transform:matrix(0.303867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303867,0.000000,0.000000,0.250000,0,0);}
.ma9_c01105{transform:matrix(0.304071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304071,0.000000,0.000000,0.250000,0,0);}
.mc2_c01105{transform:matrix(0.304086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304086,0.000000,0.000000,0.250000,0,0);}
.mae_c01105{transform:matrix(0.304326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304326,0.000000,0.000000,0.250000,0,0);}
.m1d_c01105{transform:matrix(0.305355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305355,0.000000,0.000000,0.250000,0,0);}
.m89_c01105{transform:matrix(0.305955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305955,0.000000,0.000000,0.250000,0,0);}
.mb7_c01105{transform:matrix(0.306279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306279,0.000000,0.000000,0.250000,0,0);}
.m94_c01105{transform:matrix(0.306712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306712,0.000000,0.000000,0.250000,0,0);}
.m3c_c01105{transform:matrix(0.306946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306946,0.000000,0.000000,0.250000,0,0);}
.m56_c01105{transform:matrix(0.307063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307063,0.000000,0.000000,0.250000,0,0);}
.m4a_c01105{transform:matrix(0.307445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307445,0.000000,0.000000,0.250000,0,0);}
.m21_c01105{transform:matrix(0.307575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307575,0.000000,0.000000,0.250000,0,0);}
.mba_c01105{transform:matrix(0.307932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307932,0.000000,0.000000,0.250000,0,0);}
.m77_c01105{transform:matrix(0.308268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308268,0.000000,0.000000,0.250000,0,0);}
.m5d_c01105{transform:matrix(0.308431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308431,0.000000,0.000000,0.250000,0,0);}
.m30_c01105{transform:matrix(0.308512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308512,0.000000,0.000000,0.250000,0,0);}
.m8e_c01105{transform:matrix(0.308836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308836,0.000000,0.000000,0.250000,0,0);}
.m7a_c01105{transform:matrix(0.309638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309638,0.000000,0.000000,0.250000,0,0);}
.m8f_c01105{transform:matrix(0.310793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310793,0.000000,0.000000,0.250000,0,0);}
.mb3_c01105{transform:matrix(0.313871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313871,0.000000,0.000000,0.250000,0,0);}
.m7d_c01105{transform:matrix(0.313965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313965,0.000000,0.000000,0.250000,0,0);}
.m72_c01105{transform:matrix(0.314729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314729,0.000000,0.000000,0.250000,0,0);}
.m6f_c01105{transform:matrix(0.314915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314915,0.000000,0.000000,0.250000,0,0);}
.m2a_c01105{transform:matrix(0.315191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315191,0.000000,0.000000,0.250000,0,0);}
.m3e_c01105{transform:matrix(0.317307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317307,0.000000,0.000000,0.250000,0,0);}
.mb9_c01105{transform:matrix(0.317404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317404,0.000000,0.000000,0.250000,0,0);}
.m70_c01105{transform:matrix(0.318834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318834,0.000000,0.000000,0.250000,0,0);}
.m3d_c01105{transform:matrix(0.318895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318895,0.000000,0.000000,0.250000,0,0);}
.mc0_c01105{transform:matrix(0.319077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319077,0.000000,0.000000,0.250000,0,0);}
.mb1_c01105{transform:matrix(0.322799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322799,0.000000,0.000000,0.250000,0,0);}
.mb4_c01105{transform:matrix(0.323249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323249,0.000000,0.000000,0.250000,0,0);}
.m8_c01105{transform:matrix(0.324907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324907,0.000000,0.000000,0.250000,0,0);}
.m8c_c01105{transform:matrix(0.325057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325057,0.000000,0.000000,0.250000,0,0);}
.m57_c01105{transform:matrix(0.325827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325827,0.000000,0.000000,0.250000,0,0);}
.m7b_c01105{transform:matrix(0.327111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327111,0.000000,0.000000,0.250000,0,0);}
.m3b_c01105{transform:matrix(0.327578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327578,0.000000,0.000000,0.250000,0,0);}
.mbb_c01105{transform:matrix(0.327865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327865,0.000000,0.000000,0.250000,0,0);}
.m15_c01105{transform:matrix(0.327964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327964,0.000000,0.000000,0.250000,0,0);}
.ma8_c01105{transform:matrix(0.329662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329662,0.000000,0.000000,0.250000,0,0);}
.m84_c01105{transform:matrix(0.330270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330270,0.000000,0.000000,0.250000,0,0);}
.m23_c01105{transform:matrix(0.331014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331014,0.000000,0.000000,0.250000,0,0);}
.m87_c01105{transform:matrix(0.331349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331349,0.000000,0.000000,0.250000,0,0);}
.mb2_c01105{transform:matrix(0.334361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334361,0.000000,0.000000,0.250000,0,0);}
.md_c01105{transform:matrix(0.334599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334599,0.000000,0.000000,0.250000,0,0);}
.m8a_c01105{transform:matrix(0.340270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340270,0.000000,0.000000,0.250000,0,0);}
.mb5_c01105{transform:matrix(0.340403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340403,0.000000,0.000000,0.250000,0,0);}
.m54_c01105{transform:matrix(0.342380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342380,0.000000,0.000000,0.250000,0,0);}
.mc4_c01105{transform:matrix(0.342490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342490,0.000000,0.000000,0.250000,0,0);}
.m7_c01105{transform:matrix(0.343621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343621,0.000000,0.000000,0.250000,0,0);}
.m5f_c01105{transform:matrix(0.344083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344083,0.000000,0.000000,0.250000,0,0);}
.m79_c01105{transform:matrix(0.344193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344193,0.000000,0.000000,0.250000,0,0);}
.m8d_c01105{transform:matrix(0.346926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346926,0.000000,0.000000,0.250000,0,0);}
.m59_c01105{transform:matrix(0.348072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348072,0.000000,0.000000,0.250000,0,0);}
.m2b_c01105{transform:matrix(0.349757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349757,0.000000,0.000000,0.250000,0,0);}
.m28_c01105{transform:matrix(0.354789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354789,0.000000,0.000000,0.250000,0,0);}
.m60_c01105{transform:matrix(0.355893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355893,0.000000,0.000000,0.250000,0,0);}
.m7c_c01105{transform:matrix(0.356776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356776,0.000000,0.000000,0.250000,0,0);}
.m78_c01105{transform:matrix(0.358799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358799,0.000000,0.000000,0.250000,0,0);}
.m1c_c01105{transform:matrix(0.359385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359385,0.000000,0.000000,0.250000,0,0);}
.maf_c01105{transform:matrix(0.366739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366739,0.000000,0.000000,0.250000,0,0);}
.m82_c01105{transform:matrix(0.370126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370126,0.000000,0.000000,0.250000,0,0);}
.m3_c01105{transform:matrix(0.384267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384267,0.000000,0.000000,0.250000,0,0);}
.ma_c01105{transform:matrix(0.390366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390366,0.000000,0.000000,0.250000,0,0);}
.m5c_c01105{transform:matrix(0.395422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395422,0.000000,0.000000,0.250000,0,0);}
.m37_c01105{transform:matrix(0.396465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396465,0.000000,0.000000,0.250000,0,0);}
.mc3_c01105{transform:matrix(0.453515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453515,0.000000,0.000000,0.250000,0,0);}
.v0_c01105{vertical-align:0.000000px;}
.ls27_c01105{letter-spacing:-3.762990px;}
.ls26_c01105{letter-spacing:-3.298680px;}
.ls15_c01105{letter-spacing:-3.284827px;}
.ls11_c01105{letter-spacing:-2.811917px;}
.ls8_c01105{letter-spacing:-2.709630px;}
.ls23_c01105{letter-spacing:-2.397780px;}
.lsf_c01105{letter-spacing:-1.760220px;}
.ls5_c01105{letter-spacing:-0.456766px;}
.ls20_c01105{letter-spacing:-0.278705px;}
.ls0_c01105{letter-spacing:0.000000px;}
.ls1a_c01105{letter-spacing:0.296822px;}
.ls19_c01105{letter-spacing:0.611048px;}
.ls17_c01105{letter-spacing:1.176754px;}
.lsb_c01105{letter-spacing:1.308364px;}
.ls10_c01105{letter-spacing:2.514600px;}
.ls1c_c01105{letter-spacing:2.692810px;}
.ls24_c01105{letter-spacing:2.791810px;}
.ls1b_c01105{letter-spacing:2.851200px;}
.lsc_c01105{letter-spacing:3.240745px;}
.lsa_c01105{letter-spacing:3.346200px;}
.lse_c01105{letter-spacing:3.385810px;}
.ls13_c01105{letter-spacing:3.401046px;}
.ls1f_c01105{letter-spacing:3.545744px;}
.ls22_c01105{letter-spacing:3.573900px;}
.ls28_c01105{letter-spacing:3.584453px;}
.ls1d_c01105{letter-spacing:3.593700px;}
.ls4_c01105{letter-spacing:3.603610px;}
.ls16_c01105{letter-spacing:3.682810px;}
.ls21_c01105{letter-spacing:3.722400px;}
.ls3_c01105{letter-spacing:3.742200px;}
.ls1e_c01105{letter-spacing:3.801610px;}
.ls9_c01105{letter-spacing:3.821400px;}
.ls1_c01105{letter-spacing:3.870900px;}
.ls2_c01105{letter-spacing:3.950110px;}
.ls6_c01105{letter-spacing:4.019400px;}
.ls2a_c01105{letter-spacing:4.375810px;}
.ls29_c01105{letter-spacing:29.937798px;}
.ls18_c01105{letter-spacing:55.598598px;}
.ls7_c01105{letter-spacing:57.024198px;}
.lsd_c01105{letter-spacing:58.449798px;}
.ls12_c01105{letter-spacing:61.300998px;}
.ls14_c01105{letter-spacing:64.152198px;}
.ls25_c01105{letter-spacing:71.280000px;}
.sc__c01105{text-shadow:none;}
.sc0_c01105{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01105{-webkit-text-stroke:0px transparent;}
.sc0_c01105{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01105{word-spacing:-19.354500px;}
.ws1_c01105{word-spacing:-19.107000px;}
.ws2_c01105{word-spacing:0.000000px;}
._5_c01105{margin-left:-6.270660px;}
._1_c01105{margin-left:-5.187006px;}
._2_c01105{width:11.616660px;}
._0_c01105{width:29.347540px;}
._4_c01105{width:34.330670px;}
._3_c01105{width:38.307060px;}
.fc0_c01105{color:transparent;}
.fs0_c01105{font-size:27.720000px;}
.fs22_c01105{font-size:29.937798px;}
.fs24_c01105{font-size:46.134000px;}
.fsc_c01105{font-size:50.292000px;}
.fs14_c01105{font-size:52.074000px;}
.fs16_c01105{font-size:53.856198px;}
.fs12_c01105{font-size:55.598598px;}
.fs1d_c01105{font-size:55.836198px;}
.fs15_c01105{font-size:57.024000px;}
.fs6_c01105{font-size:57.024198px;}
.fsa_c01105{font-size:58.449798px;}
.fse_c01105{font-size:61.300998px;}
.fsf_c01105{font-size:64.152198px;}
.fs19_c01105{font-size:66.330000px;}
.fs8_c01105{font-size:66.924000px;}
.fsb_c01105{font-size:67.716198px;}
.fs1c_c01105{font-size:68.508000px;}
.fs9_c01105{font-size:70.092198px;}
.fs1e_c01105{font-size:71.280000px;}
.fs1b_c01105{font-size:71.478000px;}
.fs17_c01105{font-size:71.874000px;}
.fs4_c01105{font-size:72.072198px;}
.fs11_c01105{font-size:73.656198px;}
.fs1a_c01105{font-size:74.448000px;}
.fs3_c01105{font-size:74.844000px;}
.fs13_c01105{font-size:75.438000px;}
.fs18_c01105{font-size:76.032198px;}
.fs7_c01105{font-size:76.428000px;}
.fs1_c01105{font-size:77.418000px;}
.fs2_c01105{font-size:79.002198px;}
.fs5_c01105{font-size:80.388000px;}
.fs23_c01105{font-size:87.516198px;}
.fsd_c01105{font-size:88.704000px;}
.fs10_c01105{font-size:93.852198px;}
.fs1f_c01105{font-size:94.248000px;}
.fs20_c01105{font-size:107.514000px;}
.fs21_c01105{font-size:142.560000px;}
.y0_c01105{bottom:0.000000px;}
.y1e_c01105{bottom:0.268335px;}
.y1_c01105{bottom:76.500000px;}
.y1d_c01105{bottom:123.582735px;}
.y1c_c01105{bottom:154.940985px;}
.y1b_c01105{bottom:187.734735px;}
.y1a_c01105{bottom:221.236335px;}
.y19_c01105{bottom:252.955935px;}
.y18_c01105{bottom:267.563385px;}
.y17_c01105{bottom:282.888585px;}
.y16_c01105{bottom:318.177135px;}
.y15_c01105{bottom:349.891785px;}
.y14_c01105{bottom:414.048735px;}
.y13_c01105{bottom:445.763385px;}
.y12_c01105{bottom:476.770185px;}
.y11_c01105{bottom:496.728585px;}
.y10_c01105{bottom:541.634985px;}
.yf_c01105{bottom:572.290335px;}
.y2_c01105{bottom:583.333785px;}
.ye_c01105{bottom:605.786985px;}
.yd_c01105{bottom:638.219385px;}
.yc_c01105{bottom:669.943935px;}
.yb_c01105{bottom:702.014985px;}
.ya_c01105{bottom:733.378185px;}
.y9_c01105{bottom:765.810585px;}
.y8_c01105{bottom:797.891535px;}
.y7_c01105{bottom:830.680335px;}
.y6_c01105{bottom:861.687135px;}
.y5_c01105{bottom:895.183785px;}
.y4_c01105{bottom:926.546985px;}
.y3_c01105{bottom:1058.771385px;}
.h23_c01105{height:19.938573px;}
.h2_c01105{height:28.911094px;}
.h14_c01105{height:37.028666px;}
.h8_c01105{height:37.978116px;}
.hc_c01105{height:38.927565px;}
.h10_c01105{height:40.826465px;}
.h11_c01105{height:42.725364px;}
.h1f_c01105{height:47.472480px;}
.h25_c01105{height:48.116320px;}
.h16_c01105{height:51.107783px;}
.he_c01105{height:52.452984px;}
.h18_c01105{height:56.170332px;}
.h1e_c01105{height:58.235410px;}
.h17_c01105{height:59.474250px;}
.ha_c01105{height:69.799641px;}
.h1c_c01105{height:70.151748px;}
.h19_c01105{height:70.540400px;}
.hd_c01105{height:70.625878px;}
.h6_c01105{height:70.734921px;}
.h1d_c01105{height:71.451703px;}
.h13_c01105{height:72.289530px;}
.h1b_c01105{height:73.066641px;}
.hb_c01105{height:73.103972px;}
.h5_c01105{height:73.455293px;}
.h1a_c01105{height:74.621444px;}
.h9_c01105{height:75.009902px;}
.h3_c01105{height:75.981533px;}
.h4_c01105{height:77.536337px;}
.h15_c01105{height:78.679477px;}
.h7_c01105{height:78.896426px;}
.h24_c01105{height:85.892362px;}
.hf_c01105{height:87.058125px;}
.h12_c01105{height:92.110800px;}
.h20_c01105{height:98.297719px;}
.h21_c01105{height:112.133742px;}
.h22_c01105{height:148.685625px;}
.h1_c01105{height:1110.000000px;}
.h0_c01105{height:1263.000000px;}
.w1_c01105{width:775.500000px;}
.w0_c01105{width:892.500000px;}
.x0_c01105{left:0.000000px;}
.x2_c01105{left:13.777485px;}
.x1_c01105{left:58.500000px;}
.x53_c01105{left:87.453285px;}
.x3d_c01105{left:140.655885px;}
.x1a_c01105{left:141.794385px;}
.x4_c01105{left:143.754585px;}
.x49_c01105{left:164.698035px;}
.x74_c01105{left:174.355485px;}
.x5_c01105{left:176.142435px;}
.x3e_c01105{left:196.318635px;}
.x16_c01105{left:198.298635px;}
.x4e_c01105{left:199.971735px;}
.xf_c01105{left:208.020435px;}
.x6_c01105{left:209.639085px;}
.x2d_c01105{left:218.697585px;}
.x5f_c01105{left:219.959835px;}
.x1b_c01105{left:221.103285px;}
.x7b_c01105{left:229.434135px;}
.x25_c01105{left:231.206235px;}
.x36_c01105{left:242.284335px;}
.x17_c01105{left:243.789135px;}
.x71_c01105{left:252.035835px;}
.x21_c01105{left:253.694085px;}
.x18_c01105{left:275.449335px;}
.x7_c01105{left:277.394685px;}
.x3f_c01105{left:285.359235px;}
.x2e_c01105{left:287.398635px;}
.x43_c01105{left:297.184785px;}
.x10_c01105{left:298.744035px;}
.x8_c01105{left:309.851835px;}
.x2a_c01105{left:320.415135px;}
.x22_c01105{left:322.251585px;}
.x6f_c01105{left:330.166635px;}
.x2f_c01105{left:331.171485px;}
.x1c_c01105{left:341.883285px;}
.x11_c01105{left:345.506685px;}
.x75_c01105{left:351.902085px;}
.x64_c01105{left:353.347485px;}
.x9_c01105{left:354.669135px;}
.x37_c01105{left:356.218485px;}
.x38_c01105{left:363.049485px;}
.x30_c01105{left:366.004635px;}
.x40_c01105{left:374.553285px;}
.x5d_c01105{left:375.696735px;}
.xa_c01105{left:387.502485px;}
.x60_c01105{left:396.427335px;}
.x12_c01105{left:398.595435px;}
.x23_c01105{left:408.891435px;}
.x19_c01105{left:419.825985px;}
.x52_c01105{left:422.568285px;}
.x76_c01105{left:428.325135px;}
.x13_c01105{left:430.423935px;}
.x4a_c01105{left:431.705985px;}
.x41_c01105{left:432.740535px;}
.x4f_c01105{left:442.571235px;}
.x62_c01105{left:451.798035px;}
.x24_c01105{left:453.119685px;}
.x4b_c01105{left:463.178085px;}
.x1d_c01105{left:464.885835px;}
.x65_c01105{left:470.083335px;}
.x2b_c01105{left:474.795735px;}
.x54_c01105{left:476.072835px;}
.x5b_c01105{left:483.948285px;}
.x5e_c01105{left:486.190635px;}
.x26_c01105{left:487.274685px;}
.x61_c01105{left:496.382685px;}
.x1e_c01105{left:497.763735px;}
.x44_c01105{left:500.011035px;}
.x50_c01105{left:507.040035px;}
.x2c_c01105{left:508.688385px;}
.x31_c01105{left:518.553735px;}
.x42_c01105{left:519.642735px;}
.x77_c01105{left:528.117135px;}
.xb_c01105{left:531.176235px;}
.x66_c01105{left:539.403135px;}
.x45_c01105{left:540.967335px;}
.x55_c01105{left:547.422135px;}
.x56_c01105{left:550.624785px;}
.x63_c01105{left:552.391935px;}
.x27_c01105{left:553.594785px;}
.xc_c01105{left:563.544285px;}
.x14_c01105{left:565.009485px;}
.x32_c01105{left:573.706635px;}
.x46_c01105{left:575.364885px;}
.x57_c01105{left:583.062135px;}
.x70_c01105{left:584.611485px;}
.x1f_c01105{left:586.051935px;}
.x33_c01105{left:595.476735px;}
.xd_c01105{left:597.798285px;}
.x67_c01105{left:605.282685px;}
.x72_c01105{left:607.089435px;}
.x39_c01105{left:608.529885px;}
.x68_c01105{left:614.761935px;}
.x5c_c01105{left:617.766585px;}
.x28_c01105{left:619.796085px;}
.x73_c01105{left:627.562635px;}
.x20_c01105{left:629.913885px;}
.x78_c01105{left:639.477285px;}
.x69_c01105{left:647.664585px;}
.x58_c01105{left:651.941385px;}
.x6a_c01105{left:660.752385px;}
.x34_c01105{left:662.672985px;}
.xe_c01105{left:663.747135px;}
.x4c_c01105{left:667.820985px;}
.x6b_c01105{left:673.939185px;}
.x59_c01105{left:683.448135px;}
.x15_c01105{left:685.655835px;}
.x47_c01105{left:694.937085px;}
.x4d_c01105{left:696.392385px;}
.x6c_c01105{left:697.817985px;}
.x3_c01105{left:699.694035px;}
.x79_c01105{left:701.990835px;}
.x6d_c01105{left:703.896585px;}
.x6e_c01105{left:704.945985px;}
.x7a_c01105{left:706.163685px;}
.x29_c01105{left:707.574435px;}
.x7c_c01105{left:711.341385px;}
.x5a_c01105{left:717.014085px;}
.x35_c01105{left:718.068435px;}
.x48_c01105{left:719.281185px;}
.x3a_c01105{left:732.151185px;}
.x3b_c01105{left:742.991685px;}
.x3c_c01105{left:749.995935px;}
.x51_c01105{left:753.099585px;}
@media print{
.v0_c01105{vertical-align:0.000000pt;}
.ls27_c01105{letter-spacing:-3.344880pt;}
.ls26_c01105{letter-spacing:-2.932160pt;}
.ls15_c01105{letter-spacing:-2.919846pt;}
.ls11_c01105{letter-spacing:-2.499482pt;}
.ls8_c01105{letter-spacing:-2.408560pt;}
.ls23_c01105{letter-spacing:-2.131360pt;}
.lsf_c01105{letter-spacing:-1.564640pt;}
.ls5_c01105{letter-spacing:-0.406014pt;}
.ls20_c01105{letter-spacing:-0.247738pt;}
.ls0_c01105{letter-spacing:0.000000pt;}
.ls1a_c01105{letter-spacing:0.263842pt;}
.ls19_c01105{letter-spacing:0.543154pt;}
.ls17_c01105{letter-spacing:1.046003pt;}
.lsb_c01105{letter-spacing:1.162990pt;}
.ls10_c01105{letter-spacing:2.235200pt;}
.ls1c_c01105{letter-spacing:2.393609pt;}
.ls24_c01105{letter-spacing:2.481609pt;}
.ls1b_c01105{letter-spacing:2.534400pt;}
.lsc_c01105{letter-spacing:2.880662pt;}
.lsa_c01105{letter-spacing:2.974400pt;}
.lse_c01105{letter-spacing:3.009609pt;}
.ls13_c01105{letter-spacing:3.023152pt;}
.ls1f_c01105{letter-spacing:3.151773pt;}
.ls22_c01105{letter-spacing:3.176800pt;}
.ls28_c01105{letter-spacing:3.186181pt;}
.ls1d_c01105{letter-spacing:3.194400pt;}
.ls4_c01105{letter-spacing:3.203209pt;}
.ls16_c01105{letter-spacing:3.273609pt;}
.ls21_c01105{letter-spacing:3.308800pt;}
.ls3_c01105{letter-spacing:3.326400pt;}
.ls1e_c01105{letter-spacing:3.379209pt;}
.ls9_c01105{letter-spacing:3.396800pt;}
.ls1_c01105{letter-spacing:3.440800pt;}
.ls2_c01105{letter-spacing:3.511209pt;}
.ls6_c01105{letter-spacing:3.572800pt;}
.ls2a_c01105{letter-spacing:3.889609pt;}
.ls29_c01105{letter-spacing:26.611376pt;}
.ls18_c01105{letter-spacing:49.420976pt;}
.ls7_c01105{letter-spacing:50.688176pt;}
.lsd_c01105{letter-spacing:51.955376pt;}
.ls12_c01105{letter-spacing:54.489776pt;}
.ls14_c01105{letter-spacing:57.024176pt;}
.ls25_c01105{letter-spacing:63.360000pt;}
.ws0_c01105{word-spacing:-17.204000pt;}
.ws1_c01105{word-spacing:-16.984000pt;}
.ws2_c01105{word-spacing:0.000000pt;}
._5_c01105{margin-left:-5.573920pt;}
._1_c01105{margin-left:-4.610672pt;}
._2_c01105{width:10.325920pt;}
._0_c01105{width:26.086702pt;}
._4_c01105{width:30.516151pt;}
._3_c01105{width:34.050720pt;}
.fs0_c01105{font-size:24.640000pt;}
.fs22_c01105{font-size:26.611376pt;}
.fs24_c01105{font-size:41.008000pt;}
.fsc_c01105{font-size:44.704000pt;}
.fs14_c01105{font-size:46.288000pt;}
.fs16_c01105{font-size:47.872176pt;}
.fs12_c01105{font-size:49.420976pt;}
.fs1d_c01105{font-size:49.632176pt;}
.fs15_c01105{font-size:50.688000pt;}
.fs6_c01105{font-size:50.688176pt;}
.fsa_c01105{font-size:51.955376pt;}
.fse_c01105{font-size:54.489776pt;}
.fsf_c01105{font-size:57.024176pt;}
.fs19_c01105{font-size:58.960000pt;}
.fs8_c01105{font-size:59.488000pt;}
.fsb_c01105{font-size:60.192176pt;}
.fs1c_c01105{font-size:60.896000pt;}
.fs9_c01105{font-size:62.304176pt;}
.fs1e_c01105{font-size:63.360000pt;}
.fs1b_c01105{font-size:63.536000pt;}
.fs17_c01105{font-size:63.888000pt;}
.fs4_c01105{font-size:64.064176pt;}
.fs11_c01105{font-size:65.472176pt;}
.fs1a_c01105{font-size:66.176000pt;}
.fs3_c01105{font-size:66.528000pt;}
.fs13_c01105{font-size:67.056000pt;}
.fs18_c01105{font-size:67.584176pt;}
.fs7_c01105{font-size:67.936000pt;}
.fs1_c01105{font-size:68.816000pt;}
.fs2_c01105{font-size:70.224176pt;}
.fs5_c01105{font-size:71.456000pt;}
.fs23_c01105{font-size:77.792176pt;}
.fsd_c01105{font-size:78.848000pt;}
.fs10_c01105{font-size:83.424176pt;}
.fs1f_c01105{font-size:83.776000pt;}
.fs20_c01105{font-size:95.568000pt;}
.fs21_c01105{font-size:126.720000pt;}
.y0_c01105{bottom:0.000000pt;}
.y1e_c01105{bottom:0.238520pt;}
.y1_c01105{bottom:68.000000pt;}
.y1d_c01105{bottom:109.851320pt;}
.y1c_c01105{bottom:137.725320pt;}
.y1b_c01105{bottom:166.875320pt;}
.y1a_c01105{bottom:196.654520pt;}
.y19_c01105{bottom:224.849720pt;}
.y18_c01105{bottom:237.834120pt;}
.y17_c01105{bottom:251.456520pt;}
.y16_c01105{bottom:282.824120pt;}
.y15_c01105{bottom:311.014920pt;}
.y14_c01105{bottom:368.043320pt;}
.y13_c01105{bottom:396.234120pt;}
.y12_c01105{bottom:423.795720pt;}
.y11_c01105{bottom:441.536520pt;}
.y10_c01105{bottom:481.453320pt;}
.yf_c01105{bottom:508.702520pt;}
.y2_c01105{bottom:518.518920pt;}
.ye_c01105{bottom:538.477320pt;}
.yd_c01105{bottom:567.306120pt;}
.yc_c01105{bottom:595.505720pt;}
.yb_c01105{bottom:624.013320pt;}
.ya_c01105{bottom:651.891720pt;}
.y9_c01105{bottom:680.720520pt;}
.y8_c01105{bottom:709.236920pt;}
.y7_c01105{bottom:738.382520pt;}
.y6_c01105{bottom:765.944120pt;}
.y5_c01105{bottom:795.718920pt;}
.y4_c01105{bottom:823.597320pt;}
.y3_c01105{bottom:941.130120pt;}
.h23_c01105{height:17.723176pt;}
.h2_c01105{height:25.698750pt;}
.h14_c01105{height:32.914370pt;}
.h8_c01105{height:33.758325pt;}
.hc_c01105{height:34.602280pt;}
.h10_c01105{height:36.290191pt;}
.h11_c01105{height:37.978101pt;}
.h1f_c01105{height:42.197760pt;}
.h25_c01105{height:42.770063pt;}
.h16_c01105{height:45.429141pt;}
.he_c01105{height:46.624875pt;}
.h18_c01105{height:49.929184pt;}
.h1e_c01105{height:51.764809pt;}
.h17_c01105{height:52.866000pt;}
.ha_c01105{height:62.044125pt;}
.h1c_c01105{height:62.357109pt;}
.h19_c01105{height:62.702578pt;}
.hd_c01105{height:62.778559pt;}
.h6_c01105{height:62.875485pt;}
.h1d_c01105{height:63.512625pt;}
.h13_c01105{height:64.257360pt;}
.h1b_c01105{height:64.948125pt;}
.hb_c01105{height:64.981309pt;}
.h5_c01105{height:65.293594pt;}
.h1a_c01105{height:66.330173pt;}
.h9_c01105{height:66.675469pt;}
.h3_c01105{height:67.539141pt;}
.h4_c01105{height:68.921188pt;}
.h15_c01105{height:69.937313pt;}
.h7_c01105{height:70.130156pt;}
.h24_c01105{height:76.348766pt;}
.hf_c01105{height:77.385000pt;}
.h12_c01105{height:81.876266pt;}
.h20_c01105{height:87.375750pt;}
.h21_c01105{height:99.674438pt;}
.h22_c01105{height:132.165000pt;}
.h1_c01105{height:986.666667pt;}
.h0_c01105{height:1122.666667pt;}
.w1_c01105{width:689.333333pt;}
.w0_c01105{width:793.333333pt;}
.x0_c01105{left:0.000000pt;}
.x2_c01105{left:12.246653pt;}
.x1_c01105{left:52.000000pt;}
.x53_c01105{left:77.736253pt;}
.x3d_c01105{left:125.027453pt;}
.x1a_c01105{left:126.039453pt;}
.x4_c01105{left:127.781853pt;}
.x49_c01105{left:146.398253pt;}
.x74_c01105{left:154.982653pt;}
.x5_c01105{left:156.571053pt;}
.x3e_c01105{left:174.505453pt;}
.x16_c01105{left:176.265453pt;}
.x4e_c01105{left:177.752653pt;}
.xf_c01105{left:184.907053pt;}
.x6_c01105{left:186.345853pt;}
.x2d_c01105{left:194.397853pt;}
.x5f_c01105{left:195.519853pt;}
.x1b_c01105{left:196.536253pt;}
.x7b_c01105{left:203.941453pt;}
.x25_c01105{left:205.516653pt;}
.x36_c01105{left:215.363853pt;}
.x17_c01105{left:216.701453pt;}
.x71_c01105{left:224.031853pt;}
.x21_c01105{left:225.505853pt;}
.x18_c01105{left:244.843853pt;}
.x7_c01105{left:246.573053pt;}
.x3f_c01105{left:253.652653pt;}
.x2e_c01105{left:255.465453pt;}
.x43_c01105{left:264.164253pt;}
.x10_c01105{left:265.550253pt;}
.x8_c01105{left:275.423853pt;}
.x2a_c01105{left:284.813453pt;}
.x22_c01105{left:286.445853pt;}
.x6f_c01105{left:293.481453pt;}
.x2f_c01105{left:294.374653pt;}
.x1c_c01105{left:303.896253pt;}
.x11_c01105{left:307.117053pt;}
.x75_c01105{left:312.801853pt;}
.x64_c01105{left:314.086653pt;}
.x9_c01105{left:315.261453pt;}
.x37_c01105{left:316.638653pt;}
.x38_c01105{left:322.710653pt;}
.x30_c01105{left:325.337453pt;}
.x40_c01105{left:332.936253pt;}
.x5d_c01105{left:333.952653pt;}
.xa_c01105{left:344.446653pt;}
.x60_c01105{left:352.379853pt;}
.x12_c01105{left:354.307053pt;}
.x23_c01105{left:363.459053pt;}
.x19_c01105{left:373.178653pt;}
.x52_c01105{left:375.616253pt;}
.x76_c01105{left:380.733453pt;}
.x13_c01105{left:382.599053pt;}
.x4a_c01105{left:383.738653pt;}
.x41_c01105{left:384.658253pt;}
.x4f_c01105{left:393.396653pt;}
.x62_c01105{left:401.598253pt;}
.x24_c01105{left:402.773053pt;}
.x4b_c01105{left:411.713853pt;}
.x1d_c01105{left:413.231853pt;}
.x65_c01105{left:417.851853pt;}
.x2b_c01105{left:422.040653pt;}
.x54_c01105{left:423.175853pt;}
.x5b_c01105{left:430.176253pt;}
.x5e_c01105{left:432.169453pt;}
.x26_c01105{left:433.133053pt;}
.x61_c01105{left:441.229053pt;}
.x1e_c01105{left:442.456653pt;}
.x44_c01105{left:444.454253pt;}
.x50_c01105{left:450.702253pt;}
.x2c_c01105{left:452.167453pt;}
.x31_c01105{left:460.936653pt;}
.x42_c01105{left:461.904653pt;}
.x77_c01105{left:469.437453pt;}
.xb_c01105{left:472.156653pt;}
.x66_c01105{left:479.469453pt;}
.x45_c01105{left:480.859853pt;}
.x55_c01105{left:486.597453pt;}
.x56_c01105{left:489.444253pt;}
.x63_c01105{left:491.015053pt;}
.x27_c01105{left:492.084253pt;}
.xc_c01105{left:500.928253pt;}
.x14_c01105{left:502.230653pt;}
.x32_c01105{left:509.961453pt;}
.x46_c01105{left:511.435453pt;}
.x57_c01105{left:518.277453pt;}
.x70_c01105{left:519.654653pt;}
.x1f_c01105{left:520.935053pt;}
.x33_c01105{left:529.312653pt;}
.xd_c01105{left:531.376253pt;}
.x67_c01105{left:538.029053pt;}
.x72_c01105{left:539.635053pt;}
.x39_c01105{left:540.915453pt;}
.x68_c01105{left:546.455053pt;}
.x5c_c01105{left:549.125853pt;}
.x28_c01105{left:550.929853pt;}
.x73_c01105{left:557.833453pt;}
.x20_c01105{left:559.923453pt;}
.x78_c01105{left:568.424253pt;}
.x69_c01105{left:575.701853pt;}
.x58_c01105{left:579.503453pt;}
.x6a_c01105{left:587.335453pt;}
.x34_c01105{left:589.042653pt;}
.xe_c01105{left:589.997453pt;}
.x4c_c01105{left:593.618653pt;}
.x6b_c01105{left:599.057053pt;}
.x59_c01105{left:607.509453pt;}
.x15_c01105{left:609.471853pt;}
.x47_c01105{left:617.721853pt;}
.x4d_c01105{left:619.015453pt;}
.x6c_c01105{left:620.282653pt;}
.x3_c01105{left:621.950253pt;}
.x79_c01105{left:623.991853pt;}
.x6d_c01105{left:625.685853pt;}
.x6e_c01105{left:626.618653pt;}
.x7a_c01105{left:627.701053pt;}
.x29_c01105{left:628.955053pt;}
.x7c_c01105{left:632.303453pt;}
.x5a_c01105{left:637.345853pt;}
.x35_c01105{left:638.283053pt;}
.x48_c01105{left:639.361053pt;}
.x3a_c01105{left:650.801053pt;}
.x3b_c01105{left:660.437053pt;}
.x3c_c01105{left:666.663053pt;}
.x51_c01105{left:669.421853pt;}
}





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

.ir_c01106:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01106{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01106;src:url('chunks/assets/font_fe30feced7fe76763ad6ef4c.woff2')format("woff");}.ff1_c01106{font-family:ff1_c01106;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01106;src:url('chunks/assets/font_9f9f3a1a018045f9db593e56.woff2')format("woff");}.ff2_c01106{font-family:ff2_c01106;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01106;src:url('chunks/assets/font_48c2bce56e3eeed91c52ca45.woff2')format("woff");}.ff3_c01106{font-family:ff3_c01106;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01106;src:url('chunks/assets/font_a2b396dbe02540b4ff474f05.woff2')format("woff");}.ff4_c01106{font-family:ff4_c01106;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01106;src:url('chunks/assets/font_31e2b5f9e3c291a407189b7a.woff2')format("woff");}.ff5_c01106{font-family:ff5_c01106;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01106;src:url('chunks/assets/font_da78d62f2b0d9964fd74aa73.woff2')format("woff");}.ff6_c01106{font-family:ff6_c01106;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m88_c01106{transform:matrix(0.017046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017046,0.000000,0.000000,0.250000,0,0);}
.m3e_c01106{transform:matrix(0.023257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.023257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.023257,0.000000,0.000000,0.250000,0,0);}
.mc6_c01106{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);}
.m20_c01106{transform:matrix(0.085869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085869,0.000000,0.000000,0.250000,0,0);}
.m89_c01106{transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);}
.mc7_c01106{transform:matrix(0.098214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098214,0.000000,0.000000,0.250000,0,0);}
.m87_c01106{transform:matrix(0.107955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107955,0.000000,0.000000,0.250000,0,0);}
.m3d_c01106{transform:matrix(0.110465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110465,0.000000,0.000000,0.250000,0,0);}
.m7f_c01106{transform:matrix(0.112180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112180,0.000000,0.000000,0.250000,0,0);}
.m8b_c01106{transform:matrix(0.119553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119553,0.000000,0.000000,0.250000,0,0);}
.ma0_c01106{transform:matrix(0.134791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134791,0.000000,0.000000,0.250000,0,0);}
.m84_c01106{transform:matrix(0.134943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134943,0.000000,0.000000,0.250000,0,0);}
.m86_c01106{transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);}
.m7e_c01106{transform:matrix(0.137596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137596,0.000000,0.000000,0.250000,0,0);}
.m21_c01106{transform:matrix(0.140707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140707,0.000000,0.000000,0.250000,0,0);}
.m8a_c01106{transform:matrix(0.145247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145247,0.000000,0.000000,0.250000,0,0);}
.m8e_c01106{transform:matrix(0.145834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145834,0.000000,0.000000,0.250000,0,0);}
.m3f_c01106{transform:matrix(0.148256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148256,0.000000,0.000000,0.250000,0,0);}
.m47_c01106{transform:matrix(0.156177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156177,0.000000,0.000000,0.250000,0,0);}
.ma_c01106{transform:matrix(0.159093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159093,0.000000,0.000000,0.250000,0,0);}
.m1c_c01106{transform:matrix(0.160375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160375,0.000000,0.000000,0.250000,0,0);}
.m8f_c01106{transform:matrix(0.162465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162465,0.000000,0.000000,0.250000,0,0);}
.m91_c01106{transform:matrix(0.166905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166905,0.000000,0.000000,0.250000,0,0);}
.m98_c01106{transform:matrix(0.169202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169202,0.000000,0.000000,0.250000,0,0);}
.m7_c01106{transform:matrix(0.169487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169487,0.000000,0.000000,0.250000,0,0);}
.m3_c01106{transform:matrix(0.171429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171429,0.000000,0.000000,0.250000,0,0);}
.m7d_c01106{transform:matrix(0.174599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174599,0.000000,0.000000,0.250000,0,0);}
.m67_c01106{transform:matrix(0.175388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175388,0.000000,0.000000,0.250000,0,0);}
.m3c_c01106{transform:matrix(0.180233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180233,0.000000,0.000000,0.250000,0,0);}
.m45_c01106{transform:matrix(0.181198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181198,0.000000,0.000000,0.250000,0,0);}
.m81_c01106{transform:matrix(0.185898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185898,0.000000,0.000000,0.250000,0,0);}
.mc5_c01106{transform:matrix(0.188492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188492,0.000000,0.000000,0.250000,0,0);}
.m59_c01106{transform:matrix(0.191446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191446,0.000000,0.000000,0.250000,0,0);}
.m3b_c01106{transform:matrix(0.191827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191827,0.000000,0.000000,0.250000,0,0);}
.m44_c01106{transform:matrix(0.193090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193090,0.000000,0.000000,0.250000,0,0);}
.m90_c01106{transform:matrix(0.199764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199764,0.000000,0.000000,0.250000,0,0);}
.m97_c01106{transform:matrix(0.215809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215809,0.000000,0.000000,0.250000,0,0);}
.mb7_c01106{transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);}
.m8c_c01106{transform:matrix(0.221585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221585,0.000000,0.000000,0.250000,0,0);}
.m93_c01106{transform:matrix(0.224339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224339,0.000000,0.000000,0.250000,0,0);}
.m80_c01106{transform:matrix(0.224359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224359,0.000000,0.000000,0.250000,0,0);}
.m50_c01106{transform:matrix(0.234051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234051,0.000000,0.000000,0.250000,0,0);}
.mb6_c01106{transform:matrix(0.235307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235307,0.000000,0.000000,0.250000,0,0);}
.m1e_c01106{transform:matrix(0.241283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241283,0.000000,0.000000,0.250000,0,0);}
.m4e_c01106{transform:matrix(0.243440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243440,0.000000,0.000000,0.250000,0,0);}
.m9a_c01106{transform:matrix(0.245966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245966,0.000000,0.000000,0.250000,0,0);}
.m1d_c01106{transform:matrix(0.248229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248229,0.000000,0.000000,0.250000,0,0);}
.m9_c01106{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01106{transform:matrix(0.250072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250072,0.000000,0.000000,0.250000,0,0);}
.m78_c01106{transform:matrix(0.251237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251237,0.000000,0.000000,0.250000,0,0);}
.m28_c01106{transform:matrix(0.252044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252044,0.000000,0.000000,0.250000,0,0);}
.ma4_c01106{transform:matrix(0.252607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252607,0.000000,0.000000,0.250000,0,0);}
.m71_c01106{transform:matrix(0.253415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253415,0.000000,0.000000,0.250000,0,0);}
.m7c_c01106{transform:matrix(0.254221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254221,0.000000,0.000000,0.250000,0,0);}
.m1f_c01106{transform:matrix(0.254610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254610,0.000000,0.000000,0.250000,0,0);}
.ma5_c01106{transform:matrix(0.255365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255365,0.000000,0.000000,0.250000,0,0);}
.mb_c01106{transform:matrix(0.256275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256275,0.000000,0.000000,0.250000,0,0);}
.m9e_c01106{transform:matrix(0.257258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257258,0.000000,0.000000,0.250000,0,0);}
.m79_c01106{transform:matrix(0.257860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257860,0.000000,0.000000,0.250000,0,0);}
.m1_c01106{transform:matrix(0.259019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259019,0.000000,0.000000,0.250000,0,0);}
.m6d_c01106{transform:matrix(0.259081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259081,0.000000,0.000000,0.250000,0,0);}
.mbc_c01106{transform:matrix(0.259188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259188,0.000000,0.000000,0.250000,0,0);}
.mbf_c01106{transform:matrix(0.260272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260272,0.000000,0.000000,0.250000,0,0);}
.ma2_c01106{transform:matrix(0.260586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260586,0.000000,0.000000,0.250000,0,0);}
.m1a_c01106{transform:matrix(0.260793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260793,0.000000,0.000000,0.250000,0,0);}
.m92_c01106{transform:matrix(0.263585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263585,0.000000,0.000000,0.250000,0,0);}
.mab_c01106{transform:matrix(0.265265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265265,0.000000,0.000000,0.250000,0,0);}
.mc8_c01106{transform:matrix(0.266913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266913,0.000000,0.000000,0.250000,0,0);}
.m7a_c01106{transform:matrix(0.267326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267326,0.000000,0.000000,0.250000,0,0);}
.m82_c01106{transform:matrix(0.268079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268079,0.000000,0.000000,0.250000,0,0);}
.m4b_c01106{transform:matrix(0.268350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268350,0.000000,0.000000,0.250000,0,0);}
.m37_c01106{transform:matrix(0.268490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268490,0.000000,0.000000,0.250000,0,0);}
.m2b_c01106{transform:matrix(0.269265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269265,0.000000,0.000000,0.250000,0,0);}
.m42_c01106{transform:matrix(0.269357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269357,0.000000,0.000000,0.250000,0,0);}
.mad_c01106{transform:matrix(0.269982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269982,0.000000,0.000000,0.250000,0,0);}
.m77_c01106{transform:matrix(0.270070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270070,0.000000,0.000000,0.250000,0,0);}
.m13_c01106{transform:matrix(0.270081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270081,0.000000,0.000000,0.250000,0,0);}
.mac_c01106{transform:matrix(0.271548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271548,0.000000,0.000000,0.250000,0,0);}
.m9f_c01106{transform:matrix(0.271592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271592,0.000000,0.000000,0.250000,0,0);}
.m41_c01106{transform:matrix(0.271769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271769,0.000000,0.000000,0.250000,0,0);}
.m4a_c01106{transform:matrix(0.271908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271908,0.000000,0.000000,0.250000,0,0);}
.m34_c01106{transform:matrix(0.273110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273110,0.000000,0.000000,0.250000,0,0);}
.m51_c01106{transform:matrix(0.273258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273258,0.000000,0.000000,0.250000,0,0);}
.m0_c01106{transform:matrix(0.273560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273560,0.000000,0.000000,0.250000,0,0);}
.mb5_c01106{transform:matrix(0.273761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273761,0.000000,0.000000,0.250000,0,0);}
.m25_c01106{transform:matrix(0.273979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273979,0.000000,0.000000,0.250000,0,0);}
.m18_c01106{transform:matrix(0.274532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274532,0.000000,0.000000,0.250000,0,0);}
.m19_c01106{transform:matrix(0.274613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274613,0.000000,0.000000,0.250000,0,0);}
.m11_c01106{transform:matrix(0.274865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274865,0.000000,0.000000,0.250000,0,0);}
.mb9_c01106{transform:matrix(0.274941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274941,0.000000,0.000000,0.250000,0,0);}
.ma6_c01106{transform:matrix(0.275231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275231,0.000000,0.000000,0.250000,0,0);}
.m66_c01106{transform:matrix(0.275574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275574,0.000000,0.000000,0.250000,0,0);}
.me_c01106{transform:matrix(0.275902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275902,0.000000,0.000000,0.250000,0,0);}
.m3a_c01106{transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);}
.m62_c01106{transform:matrix(0.276511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276511,0.000000,0.000000,0.250000,0,0);}
.mbd_c01106{transform:matrix(0.277658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277658,0.000000,0.000000,0.250000,0,0);}
.mbe_c01106{transform:matrix(0.278069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278069,0.000000,0.000000,0.250000,0,0);}
.m5c_c01106{transform:matrix(0.280236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280236,0.000000,0.000000,0.250000,0,0);}
.m16_c01106{transform:matrix(0.280394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280394,0.000000,0.000000,0.250000,0,0);}
.mcf_c01106{transform:matrix(0.280614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280614,0.000000,0.000000,0.250000,0,0);}
.m95_c01106{transform:matrix(0.280972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280972,0.000000,0.000000,0.250000,0,0);}
.mc0_c01106{transform:matrix(0.281121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281121,0.000000,0.000000,0.250000,0,0);}
.mc4_c01106{transform:matrix(0.281136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281136,0.000000,0.000000,0.250000,0,0);}
.m8d_c01106{transform:matrix(0.282362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282362,0.000000,0.000000,0.250000,0,0);}
.m43_c01106{transform:matrix(0.282588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282588,0.000000,0.000000,0.250000,0,0);}
.m7b_c01106{transform:matrix(0.283210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283210,0.000000,0.000000,0.250000,0,0);}
.m74_c01106{transform:matrix(0.283642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283642,0.000000,0.000000,0.250000,0,0);}
.m5a_c01106{transform:matrix(0.284985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284985,0.000000,0.000000,0.250000,0,0);}
.mca_c01106{transform:matrix(0.285439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285439,0.000000,0.000000,0.250000,0,0);}
.mc3_c01106{transform:matrix(0.285782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285782,0.000000,0.000000,0.250000,0,0);}
.m70_c01106{transform:matrix(0.285836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285836,0.000000,0.000000,0.250000,0,0);}
.mbb_c01106{transform:matrix(0.285877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285877,0.000000,0.000000,0.250000,0,0);}
.mf_c01106{transform:matrix(0.286182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286182,0.000000,0.000000,0.250000,0,0);}
.mcb_c01106{transform:matrix(0.287028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287028,0.000000,0.000000,0.250000,0,0);}
.m38_c01106{transform:matrix(0.287277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287277,0.000000,0.000000,0.250000,0,0);}
.m85_c01106{transform:matrix(0.288127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288127,0.000000,0.000000,0.250000,0,0);}
.m27_c01106{transform:matrix(0.288589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288589,0.000000,0.000000,0.250000,0,0);}
.mb8_c01106{transform:matrix(0.288934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288934,0.000000,0.000000,0.250000,0,0);}
.mb0_c01106{transform:matrix(0.290171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290171,0.000000,0.000000,0.250000,0,0);}
.ma7_c01106{transform:matrix(0.290214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290214,0.000000,0.000000,0.250000,0,0);}
.m6a_c01106{transform:matrix(0.290579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290579,0.000000,0.000000,0.250000,0,0);}
.m6e_c01106{transform:matrix(0.290932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290932,0.000000,0.000000,0.250000,0,0);}
.m73_c01106{transform:matrix(0.291840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291840,0.000000,0.000000,0.250000,0,0);}
.ma3_c01106{transform:matrix(0.292145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292145,0.000000,0.000000,0.250000,0,0);}
.mce_c01106{transform:matrix(0.292761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292761,0.000000,0.000000,0.250000,0,0);}
.mba_c01106{transform:matrix(0.292781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292781,0.000000,0.000000,0.250000,0,0);}
.m23_c01106{transform:matrix(0.293351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293351,0.000000,0.000000,0.250000,0,0);}
.m76_c01106{transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294849,0.000000,0.000000,0.250000,0,0);}
.m2e_c01106{transform:matrix(0.296763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296763,0.000000,0.000000,0.250000,0,0);}
.m14_c01106{transform:matrix(0.296862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296862,0.000000,0.000000,0.250000,0,0);}
.m61_c01106{transform:matrix(0.297855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297855,0.000000,0.000000,0.250000,0,0);}
.m5b_c01106{transform:matrix(0.299488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299488,0.000000,0.000000,0.250000,0,0);}
.m1b_c01106{transform:matrix(0.299660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299660,0.000000,0.000000,0.250000,0,0);}
.m6b_c01106{transform:matrix(0.300001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300001,0.000000,0.000000,0.250000,0,0);}
.m4d_c01106{transform:matrix(0.300506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300506,0.000000,0.000000,0.250000,0,0);}
.m2a_c01106{transform:matrix(0.300642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300642,0.000000,0.000000,0.250000,0,0);}
.m40_c01106{transform:matrix(0.301818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301818,0.000000,0.000000,0.250000,0,0);}
.m72_c01106{transform:matrix(0.301840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301840,0.000000,0.000000,0.250000,0,0);}
.m10_c01106{transform:matrix(0.302534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302534,0.000000,0.000000,0.250000,0,0);}
.m33_c01106{transform:matrix(0.303258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303258,0.000000,0.000000,0.250000,0,0);}
.m22_c01106{transform:matrix(0.304021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304021,0.000000,0.000000,0.250000,0,0);}
.m60_c01106{transform:matrix(0.306410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306410,0.000000,0.000000,0.250000,0,0);}
.ma8_c01106{transform:matrix(0.306697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306697,0.000000,0.000000,0.250000,0,0);}
.mc1_c01106{transform:matrix(0.307071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307071,0.000000,0.000000,0.250000,0,0);}
.m5d_c01106{transform:matrix(0.307947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307947,0.000000,0.000000,0.250000,0,0);}
.m29_c01106{transform:matrix(0.308330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308330,0.000000,0.000000,0.250000,0,0);}
.m2d_c01106{transform:matrix(0.308413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308413,0.000000,0.000000,0.250000,0,0);}
.m9c_c01106{transform:matrix(0.308580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308580,0.000000,0.000000,0.250000,0,0);}
.m83_c01106{transform:matrix(0.309913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309913,0.000000,0.000000,0.250000,0,0);}
.m6_c01106{transform:matrix(0.310019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310019,0.000000,0.000000,0.250000,0,0);}
.m39_c01106{transform:matrix(0.310049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310049,0.000000,0.000000,0.250000,0,0);}
.ma1_c01106{transform:matrix(0.310508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310508,0.000000,0.000000,0.250000,0,0);}
.m30_c01106{transform:matrix(0.311435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311435,0.000000,0.000000,0.250000,0,0);}
.m64_c01106{transform:matrix(0.313231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313231,0.000000,0.000000,0.250000,0,0);}
.m2_c01106{transform:matrix(0.315371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315371,0.000000,0.000000,0.250000,0,0);}
.mb2_c01106{transform:matrix(0.318221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318221,0.000000,0.000000,0.250000,0,0);}
.m5_c01106{transform:matrix(0.318891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318891,0.000000,0.000000,0.250000,0,0);}
.mcd_c01106{transform:matrix(0.318958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318958,0.000000,0.000000,0.250000,0,0);}
.mc_c01106{transform:matrix(0.320936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320936,0.000000,0.000000,0.250000,0,0);}
.m15_c01106{transform:matrix(0.321796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321796,0.000000,0.000000,0.250000,0,0);}
.mc2_c01106{transform:matrix(0.322063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322063,0.000000,0.000000,0.250000,0,0);}
.maa_c01106{transform:matrix(0.323481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323481,0.000000,0.000000,0.250000,0,0);}
.m36_c01106{transform:matrix(0.323726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323726,0.000000,0.000000,0.250000,0,0);}
.m2c_c01106{transform:matrix(0.323729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323729,0.000000,0.000000,0.250000,0,0);}
.m69_c01106{transform:matrix(0.324192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324192,0.000000,0.000000,0.250000,0,0);}
.m4c_c01106{transform:matrix(0.325082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325082,0.000000,0.000000,0.250000,0,0);}
.m32_c01106{transform:matrix(0.325741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325741,0.000000,0.000000,0.250000,0,0);}
.mb3_c01106{transform:matrix(0.325879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325879,0.000000,0.000000,0.250000,0,0);}
.m65_c01106{transform:matrix(0.326640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326640,0.000000,0.000000,0.250000,0,0);}
.m17_c01106{transform:matrix(0.326641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326641,0.000000,0.000000,0.250000,0,0);}
.m46_c01106{transform:matrix(0.326937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326937,0.000000,0.000000,0.250000,0,0);}
.m48_c01106{transform:matrix(0.328271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328271,0.000000,0.000000,0.250000,0,0);}
.m96_c01106{transform:matrix(0.329116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329116,0.000000,0.000000,0.250000,0,0);}
.m12_c01106{transform:matrix(0.331934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331934,0.000000,0.000000,0.250000,0,0);}
.ma9_c01106{transform:matrix(0.331961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331961,0.000000,0.000000,0.250000,0,0);}
.m75_c01106{transform:matrix(0.332076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332076,0.000000,0.000000,0.250000,0,0);}
.m6f_c01106{transform:matrix(0.332177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332177,0.000000,0.000000,0.250000,0,0);}
.md_c01106{transform:matrix(0.338901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338901,0.000000,0.000000,0.250000,0,0);}
.m9d_c01106{transform:matrix(0.340896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340896,0.000000,0.000000,0.250000,0,0);}
.m9b_c01106{transform:matrix(0.341447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341447,0.000000,0.000000,0.250000,0,0);}
.m63_c01106{transform:matrix(0.342830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342830,0.000000,0.000000,0.250000,0,0);}
.m58_c01106{transform:matrix(0.343975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343975,0.000000,0.000000,0.250000,0,0);}
.m52_c01106{transform:matrix(0.346924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346924,0.000000,0.000000,0.250000,0,0);}
.mae_c01106{transform:matrix(0.348259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348259,0.000000,0.000000,0.250000,0,0);}
.mc9_c01106{transform:matrix(0.349884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349884,0.000000,0.000000,0.250000,0,0);}
.maf_c01106{transform:matrix(0.351869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351869,0.000000,0.000000,0.250000,0,0);}
.m8_c01106{transform:matrix(0.354789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354789,0.000000,0.000000,0.250000,0,0);}
.mcc_c01106{transform:matrix(0.356132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356132,0.000000,0.000000,0.250000,0,0);}
.m94_c01106{transform:matrix(0.358218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358218,0.000000,0.000000,0.250000,0,0);}
.m26_c01106{transform:matrix(0.359060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359060,0.000000,0.000000,0.250000,0,0);}
.m5f_c01106{transform:matrix(0.362170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362170,0.000000,0.000000,0.250000,0,0);}
.m5e_c01106{transform:matrix(0.363147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363147,0.000000,0.000000,0.250000,0,0);}
.mb1_c01106{transform:matrix(0.363773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363773,0.000000,0.000000,0.250000,0,0);}
.m31_c01106{transform:matrix(0.363885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363885,0.000000,0.000000,0.250000,0,0);}
.m6c_c01106{transform:matrix(0.367620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367620,0.000000,0.000000,0.250000,0,0);}
.m55_c01106{transform:matrix(0.371379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371379,0.000000,0.000000,0.250000,0,0);}
.m68_c01106{transform:matrix(0.372639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372639,0.000000,0.000000,0.250000,0,0);}
.m2f_c01106{transform:matrix(0.374485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374485,0.000000,0.000000,0.250000,0,0);}
.m4_c01106{transform:matrix(0.376483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376483,0.000000,0.000000,0.250000,0,0);}
.m35_c01106{transform:matrix(0.389244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389244,0.000000,0.000000,0.250000,0,0);}
.mb4_c01106{transform:matrix(0.391270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391270,0.000000,0.000000,0.250000,0,0);}
.m49_c01106{transform:matrix(0.403692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403692,0.000000,0.000000,0.250000,0,0);}
.m99_c01106{transform:matrix(0.421354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421354,0.000000,0.000000,0.250000,0,0);}
.m57_c01106{transform:matrix(0.437268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437268,0.000000,0.000000,0.250000,0,0);}
.m53_c01106{transform:matrix(0.440004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440004,0.000000,0.000000,0.250000,0,0);}
.m4f_c01106{transform:matrix(0.472660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472660,0.000000,0.000000,0.250000,0,0);}
.m56_c01106{transform:matrix(0.743057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.743057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.743057,0.000000,0.000000,0.250000,0,0);}
.m54_c01106{transform:matrix(1.029322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.029322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.029322,0.000000,0.000000,0.250000,0,0);}
.v0_c01106{vertical-align:0.000000px;}
.ls2f_c01106{letter-spacing:-4.324327px;}
.ls32_c01106{letter-spacing:-3.298680px;}
.ls1b_c01106{letter-spacing:-3.167017px;}
.ls28_c01106{letter-spacing:-2.986830px;}
.ls16_c01106{letter-spacing:-2.938327px;}
.ls2c_c01106{letter-spacing:-2.688840px;}
.ls13_c01106{letter-spacing:-2.661127px;}
.ls21_c01106{letter-spacing:-2.647267px;}
.ls30_c01106{letter-spacing:-2.640330px;}
.lsb_c01106{letter-spacing:-2.598750px;}
.ls11_c01106{letter-spacing:-2.577967px;}
.ls31_c01106{letter-spacing:-2.494800px;}
.ls9_c01106{letter-spacing:-2.439367px;}
.ls2d_c01106{letter-spacing:-2.300767px;}
.ls38_c01106{letter-spacing:-2.259919px;}
.ls1f_c01106{letter-spacing:-2.217600px;}
.ls1d_c01106{letter-spacing:-2.174521px;}
.ls2b_c01106{letter-spacing:-1.687915px;}
.ls22_c01106{letter-spacing:-1.600830px;}
.ls27_c01106{letter-spacing:-1.434517px;}
.ls36_c01106{letter-spacing:-1.108800px;}
.ls23_c01106{letter-spacing:-0.205821px;}
.lsa_c01106{letter-spacing:0.000000px;}
.ls34_c01106{letter-spacing:0.375468px;}
.ls26_c01106{letter-spacing:0.693000px;}
.ls1_c01106{letter-spacing:0.814275px;}
.ls0_c01106{letter-spacing:0.814336px;}
.ls12_c01106{letter-spacing:0.999031px;}
.ls37_c01106{letter-spacing:1.191168px;}
.ls25_c01106{letter-spacing:1.277100px;}
.ls17_c01106{letter-spacing:1.564200px;}
.ls35_c01106{letter-spacing:1.584000px;}
.ls2_c01106{letter-spacing:2.059200px;}
.ls24_c01106{letter-spacing:2.286900px;}
.lsd_c01106{letter-spacing:2.607904px;}
.ls2e_c01106{letter-spacing:3.326400px;}
.ls19_c01106{letter-spacing:3.405610px;}
.ls5_c01106{letter-spacing:3.484810px;}
.ls3_c01106{letter-spacing:3.504610px;}
.ls1a_c01106{letter-spacing:3.564000px;}
.ls8_c01106{letter-spacing:3.583810px;}
.ls10_c01106{letter-spacing:3.682810px;}
.ls4_c01106{letter-spacing:3.712500px;}
.ls20_c01106{letter-spacing:3.781810px;}
.lsc_c01106{letter-spacing:3.801610px;}
.lsf_c01106{letter-spacing:3.821400px;}
.ls14_c01106{letter-spacing:3.831310px;}
.ls33_c01106{letter-spacing:3.900610px;}
.lse_c01106{letter-spacing:4.039200px;}
.ls7_c01106{letter-spacing:4.118400px;}
.ls18_c01106{letter-spacing:4.197610px;}
.ls39_c01106{letter-spacing:4.276810px;}
.ls29_c01106{letter-spacing:55.598598px;}
.ls1e_c01106{letter-spacing:58.449798px;}
.ls6_c01106{letter-spacing:59.875398px;}
.ls1c_c01106{letter-spacing:61.300998px;}
.ls2a_c01106{letter-spacing:62.726400px;}
.ls15_c01106{letter-spacing:65.577798px;}
.sc__c01106{text-shadow:none;}
.sc0_c01106{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01106{-webkit-text-stroke:0px transparent;}
.sc0_c01106{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01106{word-spacing:-21.802386px;}
.ws0_c01106{word-spacing:-19.156550px;}
.ws3_c01106{word-spacing:-19.008050px;}
.ws4_c01106{word-spacing:-17.320135px;}
.ws2_c01106{word-spacing:-16.833529px;}
.ws5_c01106{word-spacing:0.000000px;}
._3_c01106{margin-left:-34.440714px;}
._0_c01106{margin-left:-10.804211px;}
._a_c01106{margin-left:-9.652500px;}
._1_c01106{margin-left:-5.910726px;}
._b_c01106{width:2.312640px;}
._2_c01106{width:4.165425px;}
._5_c01106{width:6.448860px;}
._8_c01106{width:7.941780px;}
._c_c01106{width:11.494104px;}
._9_c01106{width:14.471820px;}
._6_c01106{width:24.370236px;}
._4_c01106{width:37.428336px;}
._d_c01106{width:39.574260px;}
._7_c01106{width:57.222000px;}
.fc0_c01106{color:transparent;}
.fs17_c01106{font-size:3.762000px;}
.fs19_c01106{font-size:13.860000px;}
.fs18_c01106{font-size:25.542000px;}
.fsd_c01106{font-size:31.284000px;}
.fs27_c01106{font-size:31.680000px;}
.fs1a_c01106{font-size:40.986198px;}
.fs16_c01106{font-size:45.738000px;}
.fs10_c01106{font-size:46.530000px;}
.fs1d_c01106{font-size:55.598598px;}
.fs13_c01106{font-size:58.449798px;}
.fs3_c01106{font-size:59.875398px;}
.fs12_c01106{font-size:61.300998px;}
.fs1e_c01106{font-size:62.726400px;}
.fs14_c01106{font-size:63.360000px;}
.fsc_c01106{font-size:65.577798px;}
.fs21_c01106{font-size:65.736198px;}
.fs29_c01106{font-size:66.330000px;}
.fs22_c01106{font-size:66.528000px;}
.fse_c01106{font-size:68.112198px;}
.fs2_c01106{font-size:69.696198px;}
.fs0_c01106{font-size:70.092198px;}
.fs1f_c01106{font-size:70.884000px;}
.fsf_c01106{font-size:71.280000px;}
.fs5_c01106{font-size:71.676198px;}
.fs28_c01106{font-size:72.666198px;}
.fs9_c01106{font-size:73.656198px;}
.fs1_c01106{font-size:74.250000px;}
.fs24_c01106{font-size:75.438000px;}
.fs15_c01106{font-size:75.636198px;}
.fs6_c01106{font-size:76.032198px;}
.fs8_c01106{font-size:76.428000px;}
.fsb_c01106{font-size:76.626198px;}
.fs20_c01106{font-size:76.824000px;}
.fs1b_c01106{font-size:77.220000px;}
.fs26_c01106{font-size:78.012198px;}
.fs7_c01106{font-size:80.784000px;}
.fs4_c01106{font-size:82.368000px;}
.fsa_c01106{font-size:83.952198px;}
.fs1c_c01106{font-size:85.338000px;}
.fs2a_c01106{font-size:85.536198px;}
.fs11_c01106{font-size:90.486198px;}
.fs25_c01106{font-size:94.248000px;}
.fs23_c01106{font-size:123.552198px;}
.y0_c01106{bottom:0.000000px;}
.y1_c01106{bottom:76.500000px;}
.y1d_c01106{bottom:158.866335px;}
.y1c_c01106{bottom:192.006585px;}
.y1b_c01106{bottom:224.800335px;}
.y1a_c01106{bottom:257.227785px;}
.y19_c01106{bottom:289.303785px;}
.y15_c01106{bottom:321.028335px;}
.y18_c01106{bottom:321.741135px;}
.y17_c01106{bottom:348.109785px;}
.y14_c01106{bottom:351.322335px;}
.y16_c01106{bottom:354.173535px;}
.y13_c01106{bottom:384.823935px;}
.y12_c01106{bottom:416.899935px;}
.y11_c01106{bottom:449.683785px;}
.y10_c01106{bottom:481.046985px;}
.yf_c01106{bottom:513.840735px;}
.ye_c01106{bottom:576.567135px;}
.yd_c01106{bottom:606.856185px;}
.yb_c01106{bottom:608.999535px;}
.yc_c01106{bottom:609.707385px;}
.ya_c01106{bottom:672.438735px;}
.y9_c01106{bottom:704.509785px;}
.y8_c01106{bottom:738.016335px;}
.y7_c01106{bottom:769.730985px;}
.y6_c01106{bottom:800.737785px;}
.y5_c01106{bottom:833.526585px;}
.y4_c01106{bottom:864.889785px;}
.y3_c01106{bottom:928.333935px;}
.y2_c01106{bottom:1055.563785px;}
.h1c_c01106{height:13.596064px;}
.h1b_c01106{height:13.602832px;}
.h1a_c01106{height:25.068076px;}
.h29_c01106{height:31.092188px;}
.hf_c01106{height:32.628234px;}
.h20_c01106{height:37.028666px;}
.h16_c01106{height:38.927565px;}
.h5_c01106{height:39.877015px;}
.h14_c01106{height:40.826465px;}
.h21_c01106{height:41.775782px;}
.h1d_c01106{height:42.747324px;}
.he_c01106{height:43.674813px;}
.h19_c01106{height:44.889346px;}
.h12_c01106{height:45.666650px;}
.h17_c01106{height:66.082500px;}
.h4_c01106{height:68.403007px;}
.h23_c01106{height:68.560800px;}
.h2_c01106{height:68.791659px;}
.h24_c01106{height:69.386625px;}
.h7_c01106{height:70.346269px;}
.h10_c01106{height:71.038894px;}
.h2a_c01106{height:71.317899px;}
.hb_c01106{height:72.289530px;}
.h3_c01106{height:72.872314px;}
.h18_c01106{height:74.232792px;}
.h11_c01106{height:74.342813px;}
.h8_c01106{height:74.621444px;}
.h15_c01106{height:74.756035px;}
.ha_c01106{height:75.009902px;}
.hd_c01106{height:75.204423px;}
.h28_c01106{height:76.564706px;}
.h26_c01106{height:78.679477px;}
.h9_c01106{height:79.285078px;}
.h22_c01106{height:80.125031px;}
.h1e_c01106{height:80.538047px;}
.h6_c01106{height:80.839688px;}
.hc_c01106{height:82.394491px;}
.h1f_c01106{height:83.754580px;}
.h2b_c01106{height:83.949101px;}
.h27_c01106{height:92.499258px;}
.h13_c01106{height:94.374277px;}
.h25_c01106{height:121.259726px;}
.h1_c01106{height:1110.000000px;}
.h0_c01106{height:1263.000000px;}
.w1_c01106{width:775.500000px;}
.w0_c01106{width:892.500000px;}
.x0_c01106{left:0.000000px;}
.x1_c01106{left:58.500000px;}
.x3_c01106{left:93.150735px;}
.x16_c01106{left:145.289085px;}
.x66_c01106{left:146.848335px;}
.x4_c01106{left:148.031385px;}
.x55_c01106{left:158.332335px;}
.x45_c01106{left:163.960485px;}
.x84_c01106{left:178.855035px;}
.x46_c01106{left:181.092435px;}
.x1a_c01106{left:182.216085px;}
.x6d_c01106{left:191.729985px;}
.x5_c01106{left:192.804135px;}
.x1b_c01106{left:202.194285px;}
.x47_c01106{left:205.802835px;}
.x7d_c01106{left:212.515035px;}
.x56_c01106{left:213.851535px;}
.xd_c01106{left:214.985085px;}
.x48_c01106{left:222.108135px;}
.x80_c01106{left:224.543535px;}
.x57_c01106{left:225.746385px;}
.x28_c01106{left:238.794585px;}
.x49_c01106{left:245.254335px;}
.x1c_c01106{left:247.645185px;}
.x5c_c01106{left:256.129485px;}
.x6_c01106{left:259.000485px;}
.x4a_c01106{left:265.539435px;}
.x35_c01106{left:269.930085px;}
.xe_c01106{left:281.646735px;}
.x1d_c01106{left:283.215885px;}
.x6e_c01106{left:290.779485px;}
.x7_c01106{left:291.789285px;}
.x29_c01106{left:293.318835px;}
.x36_c01106{left:301.733835px;}
.x17_c01106{left:303.179235px;}
.x3f_c01106{left:304.753335px;}
.x2c_c01106{left:311.173485px;}
.x4b_c01106{left:312.445635px;}
.x2d_c01106{left:314.757285px;}
.x4c_c01106{left:317.657985px;}
.x40_c01106{left:324.573135px;}
.x4d_c01106{left:327.087735px;}
.x42_c01106{left:335.324535px;}
.x8_c01106{left:336.809535px;}
.x6f_c01106{left:343.185135px;}
.x4e_c01106{left:346.704585px;}
.x4f_c01106{left:350.822985px;}
.x1e_c01106{left:355.975935px;}
.xf_c01106{left:357.347085px;}
.x85_c01106{left:358.619235px;}
.x41_c01106{left:360.416085px;}
.x50_c01106{left:363.445485px;}
.x37_c01106{left:369.934935px;}
.x9_c01106{left:371.820885px;}
.x51_c01106{left:381.715935px;}
.x52_c01106{left:388.200435px;}
.x7b_c01106{left:389.863635px;}
.xa_c01106{left:391.437735px;}
.x67_c01106{left:392.739585px;}
.x53_c01106{left:394.541385px;}
.x54_c01106{left:397.753935px;}
.x38_c01106{left:400.852635px;}
.x2e_c01106{left:403.223685px;}
.xb_c01106{left:413.470185px;}
.x2f_c01106{left:414.935385px;}
.xc_c01106{left:416.014485px;}
.x10_c01106{left:423.637485px;}
.x39_c01106{left:425.889735px;}
.x71_c01106{left:431.606985px;}
.x59_c01106{left:437.650935px;}
.x3a_c01106{left:445.848135px;}
.x5f_c01106{left:447.387585px;}
.x3b_c01106{left:448.699335px;}
.x1f_c01106{left:453.951285px;}
.x72_c01106{left:457.510335px;}
.x70_c01106{left:468.202335px;}
.x81_c01106{left:469.820985px;}
.x11_c01106{left:479.567535px;}
.x30_c01106{left:482.824635px;}
.x68_c01106{left:491.051535px;}
.x2a_c01106{left:492.313785px;}
.x20_c01106{left:493.709685px;}
.x58_c01106{left:502.674135px;}
.x74_c01106{left:503.773035px;}
.x21_c01106{left:505.495635px;}
.x75_c01106{left:509.188335px;}
.x5a_c01106{left:512.930535px;}
.x31_c01106{left:514.400685px;}
.x22_c01106{left:525.345135px;}
.x3c_c01106{left:534.324435px;}
.x12_c01106{left:535.804485px;}
.x18_c01106{left:536.853885px;}
.x82_c01106{left:544.917435px;}
.x32_c01106{left:546.442035px;}
.x7e_c01106{left:547.773585px;}
.x60_c01106{left:556.297485px;}
.x5d_c01106{left:558.242835px;}
.x23_c01106{left:559.643685px;}
.x76_c01106{left:560.871285px;}
.x77_c01106{left:565.761885px;}
.x13_c01106{left:567.637935px;}
.x2b_c01106{left:579.968385px;}
.x14_c01106{left:581.007885px;}
.x78_c01106{left:582.606735px;}
.x43_c01106{left:593.447235px;}
.x73_c01106{left:600.223785px;}
.x79_c01106{left:608.896185px;}
.x44_c01106{left:612.529485px;}
.x24_c01106{left:622.944285px;}
.x61_c01106{left:624.454035px;}
.x5e_c01106{left:626.132085px;}
.x86_c01106{left:633.279885px;}
.x69_c01106{left:635.452935px;}
.x33_c01106{left:644.313435px;}
.x25_c01106{left:645.684585px;}
.x7a_c01106{left:653.461035px;}
.x83_c01106{left:655.554885px;}
.x15_c01106{left:659.262435px;}
.x26_c01106{left:666.053835px;}
.x6a_c01106{left:668.820885px;}
.x6b_c01106{left:677.547735px;}
.x27_c01106{left:679.349535px;}
.x62_c01106{left:687.591285px;}
.x19_c01106{left:689.299035px;}
.x63_c01106{left:696.397335px;}
.x7f_c01106{left:698.733735px;}
.x3d_c01106{left:699.892035px;}
.x5b_c01106{left:701.050335px;}
.x6c_c01106{left:705.297435px;}
.x7c_c01106{left:711.747285px;}
.x2_c01106{left:713.623335px;}
.x34_c01106{left:723.988635px;}
.x87_c01106{left:729.186135px;}
.x64_c01106{left:733.101585px;}
.x3e_c01106{left:734.715285px;}
.x65_c01106{left:745.580535px;}
@media print{
.v0_c01106{vertical-align:0.000000pt;}
.ls2f_c01106{letter-spacing:-3.843846pt;}
.ls32_c01106{letter-spacing:-2.932160pt;}
.ls1b_c01106{letter-spacing:-2.815126pt;}
.ls28_c01106{letter-spacing:-2.654960pt;}
.ls16_c01106{letter-spacing:-2.611846pt;}
.ls2c_c01106{letter-spacing:-2.390080pt;}
.ls13_c01106{letter-spacing:-2.365446pt;}
.ls21_c01106{letter-spacing:-2.353126pt;}
.ls30_c01106{letter-spacing:-2.346960pt;}
.lsb_c01106{letter-spacing:-2.310000pt;}
.ls11_c01106{letter-spacing:-2.291526pt;}
.ls31_c01106{letter-spacing:-2.217600pt;}
.ls9_c01106{letter-spacing:-2.168326pt;}
.ls2d_c01106{letter-spacing:-2.045126pt;}
.ls38_c01106{letter-spacing:-2.008817pt;}
.ls1f_c01106{letter-spacing:-1.971200pt;}
.ls1d_c01106{letter-spacing:-1.932907pt;}
.ls2b_c01106{letter-spacing:-1.500369pt;}
.ls22_c01106{letter-spacing:-1.422960pt;}
.ls27_c01106{letter-spacing:-1.275126pt;}
.ls36_c01106{letter-spacing:-0.985600pt;}
.ls23_c01106{letter-spacing:-0.182952pt;}
.lsa_c01106{letter-spacing:0.000000pt;}
.ls34_c01106{letter-spacing:0.333750pt;}
.ls26_c01106{letter-spacing:0.616000pt;}
.ls1_c01106{letter-spacing:0.723800pt;}
.ls0_c01106{letter-spacing:0.723855pt;}
.ls12_c01106{letter-spacing:0.888028pt;}
.ls37_c01106{letter-spacing:1.058816pt;}
.ls25_c01106{letter-spacing:1.135200pt;}
.ls17_c01106{letter-spacing:1.390400pt;}
.ls35_c01106{letter-spacing:1.408000pt;}
.ls2_c01106{letter-spacing:1.830400pt;}
.ls24_c01106{letter-spacing:2.032800pt;}
.lsd_c01106{letter-spacing:2.318137pt;}
.ls2e_c01106{letter-spacing:2.956800pt;}
.ls19_c01106{letter-spacing:3.027209pt;}
.ls5_c01106{letter-spacing:3.097609pt;}
.ls3_c01106{letter-spacing:3.115209pt;}
.ls1a_c01106{letter-spacing:3.168000pt;}
.ls8_c01106{letter-spacing:3.185609pt;}
.ls10_c01106{letter-spacing:3.273609pt;}
.ls4_c01106{letter-spacing:3.300000pt;}
.ls20_c01106{letter-spacing:3.361609pt;}
.lsc_c01106{letter-spacing:3.379209pt;}
.lsf_c01106{letter-spacing:3.396800pt;}
.ls14_c01106{letter-spacing:3.405609pt;}
.ls33_c01106{letter-spacing:3.467209pt;}
.lse_c01106{letter-spacing:3.590400pt;}
.ls7_c01106{letter-spacing:3.660800pt;}
.ls18_c01106{letter-spacing:3.731209pt;}
.ls39_c01106{letter-spacing:3.801609pt;}
.ls29_c01106{letter-spacing:49.420976pt;}
.ls1e_c01106{letter-spacing:51.955376pt;}
.ls6_c01106{letter-spacing:53.222576pt;}
.ls1c_c01106{letter-spacing:54.489776pt;}
.ls2a_c01106{letter-spacing:55.756800pt;}
.ls15_c01106{letter-spacing:58.291376pt;}
.ws1_c01106{word-spacing:-19.379899pt;}
.ws0_c01106{word-spacing:-17.028044pt;}
.ws3_c01106{word-spacing:-16.896044pt;}
.ws4_c01106{word-spacing:-15.395675pt;}
.ws2_c01106{word-spacing:-14.963137pt;}
.ws5_c01106{word-spacing:0.000000pt;}
._3_c01106{margin-left:-30.613968pt;}
._0_c01106{margin-left:-9.603743pt;}
._a_c01106{margin-left:-8.580000pt;}
._1_c01106{margin-left:-5.253979pt;}
._b_c01106{width:2.055680pt;}
._2_c01106{width:3.702600pt;}
._5_c01106{width:5.732320pt;}
._8_c01106{width:7.059360pt;}
._c_c01106{width:10.216981pt;}
._9_c01106{width:12.863840pt;}
._6_c01106{width:21.662432pt;}
._4_c01106{width:33.269632pt;}
._d_c01106{width:35.177120pt;}
._7_c01106{width:50.864000pt;}
.fs17_c01106{font-size:3.344000pt;}
.fs19_c01106{font-size:12.320000pt;}
.fs18_c01106{font-size:22.704000pt;}
.fsd_c01106{font-size:27.808000pt;}
.fs27_c01106{font-size:28.160000pt;}
.fs1a_c01106{font-size:36.432176pt;}
.fs16_c01106{font-size:40.656000pt;}
.fs10_c01106{font-size:41.360000pt;}
.fs1d_c01106{font-size:49.420976pt;}
.fs13_c01106{font-size:51.955376pt;}
.fs3_c01106{font-size:53.222576pt;}
.fs12_c01106{font-size:54.489776pt;}
.fs1e_c01106{font-size:55.756800pt;}
.fs14_c01106{font-size:56.320000pt;}
.fsc_c01106{font-size:58.291376pt;}
.fs21_c01106{font-size:58.432176pt;}
.fs29_c01106{font-size:58.960000pt;}
.fs22_c01106{font-size:59.136000pt;}
.fse_c01106{font-size:60.544176pt;}
.fs2_c01106{font-size:61.952176pt;}
.fs0_c01106{font-size:62.304176pt;}
.fs1f_c01106{font-size:63.008000pt;}
.fsf_c01106{font-size:63.360000pt;}
.fs5_c01106{font-size:63.712176pt;}
.fs28_c01106{font-size:64.592176pt;}
.fs9_c01106{font-size:65.472176pt;}
.fs1_c01106{font-size:66.000000pt;}
.fs24_c01106{font-size:67.056000pt;}
.fs15_c01106{font-size:67.232176pt;}
.fs6_c01106{font-size:67.584176pt;}
.fs8_c01106{font-size:67.936000pt;}
.fsb_c01106{font-size:68.112176pt;}
.fs20_c01106{font-size:68.288000pt;}
.fs1b_c01106{font-size:68.640000pt;}
.fs26_c01106{font-size:69.344176pt;}
.fs7_c01106{font-size:71.808000pt;}
.fs4_c01106{font-size:73.216000pt;}
.fsa_c01106{font-size:74.624176pt;}
.fs1c_c01106{font-size:75.856000pt;}
.fs2a_c01106{font-size:76.032176pt;}
.fs11_c01106{font-size:80.432176pt;}
.fs25_c01106{font-size:83.776000pt;}
.fs23_c01106{font-size:109.824176pt;}
.y0_c01106{bottom:0.000000pt;}
.y1_c01106{bottom:68.000000pt;}
.y1d_c01106{bottom:141.214520pt;}
.y1c_c01106{bottom:170.672520pt;}
.y1b_c01106{bottom:199.822520pt;}
.y1a_c01106{bottom:228.646920pt;}
.y19_c01106{bottom:257.158920pt;}
.y15_c01106{bottom:285.358520pt;}
.y18_c01106{bottom:285.992120pt;}
.y17_c01106{bottom:309.430920pt;}
.y14_c01106{bottom:312.286520pt;}
.y16_c01106{bottom:314.820920pt;}
.y13_c01106{bottom:342.065720pt;}
.y12_c01106{bottom:370.577720pt;}
.y11_c01106{bottom:399.718920pt;}
.y10_c01106{bottom:427.597320pt;}
.yf_c01106{bottom:456.747320pt;}
.ye_c01106{bottom:512.504120pt;}
.yd_c01106{bottom:539.427720pt;}
.yb_c01106{bottom:541.332920pt;}
.yc_c01106{bottom:541.962120pt;}
.ya_c01106{bottom:597.723320pt;}
.y9_c01106{bottom:626.230920pt;}
.y8_c01106{bottom:656.014520pt;}
.y7_c01106{bottom:684.205320pt;}
.y6_c01106{bottom:711.766920pt;}
.y5_c01106{bottom:740.912520pt;}
.y4_c01106{bottom:768.790920pt;}
.y3_c01106{bottom:825.185720pt;}
.y2_c01106{bottom:938.278920pt;}
.h1c_c01106{height:12.085391pt;}
.h1b_c01106{height:12.091406pt;}
.h1a_c01106{height:22.282734pt;}
.h29_c01106{height:27.637500pt;}
.hf_c01106{height:29.002875pt;}
.h20_c01106{height:32.914370pt;}
.h16_c01106{height:34.602280pt;}
.h5_c01106{height:35.446236pt;}
.h14_c01106{height:36.290191pt;}
.h21_c01106{height:37.134029pt;}
.h1d_c01106{height:37.997621pt;}
.he_c01106{height:38.822056pt;}
.h19_c01106{height:39.901641pt;}
.h12_c01106{height:40.592578pt;}
.h17_c01106{height:58.740000pt;}
.h4_c01106{height:60.802673pt;}
.h23_c01106{height:60.942934pt;}
.h2_c01106{height:61.148141pt;}
.h24_c01106{height:61.677000pt;}
.h7_c01106{height:62.530016pt;}
.h10_c01106{height:63.145684pt;}
.h2a_c01106{height:63.393688pt;}
.hb_c01106{height:64.257360pt;}
.h3_c01106{height:64.775391pt;}
.h18_c01106{height:65.984704pt;}
.h11_c01106{height:66.082500pt;}
.h8_c01106{height:66.330173pt;}
.h15_c01106{height:66.449809pt;}
.ha_c01106{height:66.675469pt;}
.hd_c01106{height:66.848376pt;}
.h28_c01106{height:68.057516pt;}
.h26_c01106{height:69.937313pt;}
.h9_c01106{height:70.475625pt;}
.h22_c01106{height:71.222250pt;}
.h1e_c01106{height:71.589375pt;}
.h6_c01106{height:71.857500pt;}
.hc_c01106{height:73.239548pt;}
.h1f_c01106{height:74.448516pt;}
.h2b_c01106{height:74.621423pt;}
.h27_c01106{height:82.221563pt;}
.h13_c01106{height:83.888246pt;}
.h25_c01106{height:107.786423pt;}
.h1_c01106{height:986.666667pt;}
.h0_c01106{height:1122.666667pt;}
.w1_c01106{width:689.333333pt;}
.w0_c01106{width:793.333333pt;}
.x0_c01106{left:0.000000pt;}
.x1_c01106{left:52.000000pt;}
.x3_c01106{left:82.800653pt;}
.x16_c01106{left:129.145853pt;}
.x66_c01106{left:130.531853pt;}
.x4_c01106{left:131.583453pt;}
.x55_c01106{left:140.739853pt;}
.x45_c01106{left:145.742653pt;}
.x84_c01106{left:158.982253pt;}
.x46_c01106{left:160.971053pt;}
.x1a_c01106{left:161.969853pt;}
.x6d_c01106{left:170.426653pt;}
.x5_c01106{left:171.381453pt;}
.x1b_c01106{left:179.728253pt;}
.x47_c01106{left:182.935853pt;}
.x7d_c01106{left:188.902253pt;}
.x56_c01106{left:190.090253pt;}
.xd_c01106{left:191.097853pt;}
.x48_c01106{left:197.429453pt;}
.x80_c01106{left:199.594253pt;}
.x57_c01106{left:200.663453pt;}
.x28_c01106{left:212.261853pt;}
.x49_c01106{left:218.003853pt;}
.x1c_c01106{left:220.129053pt;}
.x5c_c01106{left:227.670653pt;}
.x6_c01106{left:230.222653pt;}
.x4a_c01106{left:236.035053pt;}
.x35_c01106{left:239.937853pt;}
.xe_c01106{left:250.352653pt;}
.x1d_c01106{left:251.747453pt;}
.x6e_c01106{left:258.470653pt;}
.x7_c01106{left:259.368253pt;}
.x29_c01106{left:260.727853pt;}
.x36_c01106{left:268.207853pt;}
.x17_c01106{left:269.492653pt;}
.x3f_c01106{left:270.891853pt;}
.x2c_c01106{left:276.598653pt;}
.x4b_c01106{left:277.729453pt;}
.x2d_c01106{left:279.784253pt;}
.x4c_c01106{left:282.362653pt;}
.x40_c01106{left:288.509453pt;}
.x4d_c01106{left:290.744653pt;}
.x42_c01106{left:298.066253pt;}
.x8_c01106{left:299.386253pt;}
.x6f_c01106{left:305.053453pt;}
.x4e_c01106{left:308.181853pt;}
.x4f_c01106{left:311.842653pt;}
.x1e_c01106{left:316.423053pt;}
.xf_c01106{left:317.641853pt;}
.x85_c01106{left:318.772653pt;}
.x41_c01106{left:320.369853pt;}
.x50_c01106{left:323.062653pt;}
.x37_c01106{left:328.831053pt;}
.x9_c01106{left:330.507453pt;}
.x51_c01106{left:339.303053pt;}
.x52_c01106{left:345.067053pt;}
.x7b_c01106{left:346.545453pt;}
.xa_c01106{left:347.944653pt;}
.x67_c01106{left:349.101853pt;}
.x53_c01106{left:350.703453pt;}
.x54_c01106{left:353.559053pt;}
.x38_c01106{left:356.313453pt;}
.x2e_c01106{left:358.421053pt;}
.xb_c01106{left:367.529053pt;}
.x2f_c01106{left:368.831453pt;}
.xc_c01106{left:369.790653pt;}
.x10_c01106{left:376.566653pt;}
.x39_c01106{left:378.568653pt;}
.x71_c01106{left:383.650653pt;}
.x59_c01106{left:389.023053pt;}
.x3a_c01106{left:396.309453pt;}
.x5f_c01106{left:397.677853pt;}
.x3b_c01106{left:398.843853pt;}
.x1f_c01106{left:403.512253pt;}
.x72_c01106{left:406.675853pt;}
.x70_c01106{left:416.179853pt;}
.x81_c01106{left:417.618653pt;}
.x11_c01106{left:426.282253pt;}
.x30_c01106{left:429.177453pt;}
.x68_c01106{left:436.490253pt;}
.x2a_c01106{left:437.612253pt;}
.x20_c01106{left:438.853053pt;}
.x58_c01106{left:446.821453pt;}
.x74_c01106{left:447.798253pt;}
.x21_c01106{left:449.329453pt;}
.x75_c01106{left:452.611853pt;}
.x5a_c01106{left:455.938253pt;}
.x31_c01106{left:457.245053pt;}
.x22_c01106{left:466.973453pt;}
.x3c_c01106{left:474.955053pt;}
.x12_c01106{left:476.270653pt;}
.x18_c01106{left:477.203453pt;}
.x82_c01106{left:484.371053pt;}
.x32_c01106{left:485.726253pt;}
.x7e_c01106{left:486.909853pt;}
.x60_c01106{left:494.486653pt;}
.x5d_c01106{left:496.215853pt;}
.x23_c01106{left:497.461053pt;}
.x76_c01106{left:498.552253pt;}
.x77_c01106{left:502.899453pt;}
.x13_c01106{left:504.567053pt;}
.x2b_c01106{left:515.527453pt;}
.x14_c01106{left:516.451453pt;}
.x78_c01106{left:517.872653pt;}
.x43_c01106{left:527.508653pt;}
.x73_c01106{left:533.532253pt;}
.x79_c01106{left:541.241053pt;}
.x44_c01106{left:544.470653pt;}
.x24_c01106{left:553.728253pt;}
.x61_c01106{left:555.070253pt;}
.x5e_c01106{left:556.561853pt;}
.x86_c01106{left:562.915453pt;}
.x69_c01106{left:564.847053pt;}
.x33_c01106{left:572.723053pt;}
.x25_c01106{left:573.941853pt;}
.x7a_c01106{left:580.854253pt;}
.x83_c01106{left:582.715453pt;}
.x15_c01106{left:586.011053pt;}
.x26_c01106{left:592.047853pt;}
.x6a_c01106{left:594.507453pt;}
.x6b_c01106{left:602.264653pt;}
.x27_c01106{left:603.866253pt;}
.x62_c01106{left:611.192253pt;}
.x19_c01106{left:612.710253pt;}
.x63_c01106{left:619.019853pt;}
.x7f_c01106{left:621.096653pt;}
.x3d_c01106{left:622.126253pt;}
.x5b_c01106{left:623.155853pt;}
.x6c_c01106{left:626.931053pt;}
.x7c_c01106{left:632.664253pt;}
.x2_c01106{left:634.331853pt;}
.x34_c01106{left:643.545453pt;}
.x87_c01106{left:648.165453pt;}
.x64_c01106{left:651.645853pt;}
.x3e_c01106{left:653.080253pt;}
.x65_c01106{left:662.738253pt;}
}





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

.ir_c01107:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01107{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01107;src:url('chunks/assets/font_c37c48fcdd9f65bed221f970.woff2')format("woff");}.ff1_c01107{font-family:ff1_c01107;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01107;src:url('chunks/assets/font_72f588e450b8658061d2cedb.woff2')format("woff");}.ff2_c01107{font-family:ff2_c01107;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01107;src:url('chunks/assets/font_9a1036452f848a0e14b6a1c5.woff2')format("woff");}.ff3_c01107{font-family:ff3_c01107;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01107;src:url('chunks/assets/font_406623decf91f552db90231a.woff2')format("woff");}.ff4_c01107{font-family:ff4_c01107;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01107;src:url('chunks/assets/font_cdb4879d664bb82ca2e9675c.woff2')format("woff");}.ff5_c01107{font-family:ff5_c01107;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m20_c01107{transform:matrix(0.079319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.079319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.079319,0.000000,0.000000,0.250000,0,0);}
.m45_c01107{transform:matrix(0.102713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102713,0.000000,0.000000,0.250000,0,0);}
.m2e_c01107{transform:matrix(0.132441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132441,0.000000,0.000000,0.250000,0,0);}
.ma8_c01107{transform:matrix(0.141305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141305,0.000000,0.000000,0.250000,0,0);}
.m82_c01107{transform:matrix(0.141892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141892,0.000000,0.000000,0.250000,0,0);}
.m9b_c01107{transform:matrix(0.183798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183798,0.000000,0.000000,0.250000,0,0);}
.m24_c01107{transform:matrix(0.184524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184524,0.000000,0.000000,0.250000,0,0);}
.m59_c01107{transform:matrix(0.187161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187161,0.000000,0.000000,0.250000,0,0);}
.m33_c01107{transform:matrix(0.187205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187205,0.000000,0.000000,0.250000,0,0);}
.m52_c01107{transform:matrix(0.192410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192410,0.000000,0.000000,0.250000,0,0);}
.md_c01107{transform:matrix(0.193761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193761,0.000000,0.000000,0.250000,0,0);}
.m72_c01107{transform:matrix(0.207402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207402,0.000000,0.000000,0.250000,0,0);}
.m4_c01107{transform:matrix(0.210955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210955,0.000000,0.000000,0.250000,0,0);}
.ma9_c01107{transform:matrix(0.225660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225660,0.000000,0.000000,0.250000,0,0);}
.ma6_c01107{transform:matrix(0.236674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236674,0.000000,0.000000,0.250000,0,0);}
.ma5_c01107{transform:matrix(0.238425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238425,0.000000,0.000000,0.250000,0,0);}
.m0_c01107{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m5d_c01107{transform:matrix(0.251641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251641,0.000000,0.000000,0.250000,0,0);}
.m70_c01107{transform:matrix(0.254460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254460,0.000000,0.000000,0.250000,0,0);}
.m1_c01107{transform:matrix(0.256471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256471,0.000000,0.000000,0.250000,0,0);}
.m78_c01107{transform:matrix(0.256664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256664,0.000000,0.000000,0.250000,0,0);}
.m2a_c01107{transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);}
.m95_c01107{transform:matrix(0.257935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257935,0.000000,0.000000,0.250000,0,0);}
.m5f_c01107{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m3c_c01107{transform:matrix(0.259042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259042,0.000000,0.000000,0.250000,0,0);}
.m7_c01107{transform:matrix(0.260229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260229,0.000000,0.000000,0.250000,0,0);}
.m8f_c01107{transform:matrix(0.260349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260349,0.000000,0.000000,0.250000,0,0);}
.m86_c01107{transform:matrix(0.261167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261167,0.000000,0.000000,0.250000,0,0);}
.m27_c01107{transform:matrix(0.262853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262853,0.000000,0.000000,0.250000,0,0);}
.ma4_c01107{transform:matrix(0.263769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263769,0.000000,0.000000,0.250000,0,0);}
.m93_c01107{transform:matrix(0.263993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263993,0.000000,0.000000,0.250000,0,0);}
.m54_c01107{transform:matrix(0.264299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264299,0.000000,0.000000,0.250000,0,0);}
.m6_c01107{transform:matrix(0.264875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264875,0.000000,0.000000,0.250000,0,0);}
.m6b_c01107{transform:matrix(0.265977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265977,0.000000,0.000000,0.250000,0,0);}
.m6f_c01107{transform:matrix(0.266057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266057,0.000000,0.000000,0.250000,0,0);}
.m14_c01107{transform:matrix(0.266187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266187,0.000000,0.000000,0.250000,0,0);}
.m19_c01107{transform:matrix(0.266314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266314,0.000000,0.000000,0.250000,0,0);}
.m84_c01107{transform:matrix(0.267355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267355,0.000000,0.000000,0.250000,0,0);}
.m68_c01107{transform:matrix(0.267371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267371,0.000000,0.000000,0.250000,0,0);}
.m4d_c01107{transform:matrix(0.268192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268192,0.000000,0.000000,0.250000,0,0);}
.m63_c01107{transform:matrix(0.268978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268978,0.000000,0.000000,0.250000,0,0);}
.m2_c01107{transform:matrix(0.269522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269522,0.000000,0.000000,0.250000,0,0);}
.m46_c01107{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.mb_c01107{transform:matrix(0.270997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270997,0.000000,0.000000,0.250000,0,0);}
.m51_c01107{transform:matrix(0.271383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271383,0.000000,0.000000,0.250000,0,0);}
.m58_c01107{transform:matrix(0.272046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272046,0.000000,0.000000,0.250000,0,0);}
.m16_c01107{transform:matrix(0.272173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272173,0.000000,0.000000,0.250000,0,0);}
.m87_c01107{transform:matrix(0.272751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272751,0.000000,0.000000,0.250000,0,0);}
.m17_c01107{transform:matrix(0.273180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273180,0.000000,0.000000,0.250000,0,0);}
.m31_c01107{transform:matrix(0.274008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274008,0.000000,0.000000,0.250000,0,0);}
.m35_c01107{transform:matrix(0.275231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275231,0.000000,0.000000,0.250000,0,0);}
.m55_c01107{transform:matrix(0.275776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275776,0.000000,0.000000,0.250000,0,0);}
.m90_c01107{transform:matrix(0.276227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276227,0.000000,0.000000,0.250000,0,0);}
.m96_c01107{transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);}
.m12_c01107{transform:matrix(0.276985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276985,0.000000,0.000000,0.250000,0,0);}
.m74_c01107{transform:matrix(0.277658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277658,0.000000,0.000000,0.250000,0,0);}
.m4c_c01107{transform:matrix(0.277690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277690,0.000000,0.000000,0.250000,0,0);}
.m11_c01107{transform:matrix(0.277994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277994,0.000000,0.000000,0.250000,0,0);}
.m62_c01107{transform:matrix(0.278289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278289,0.000000,0.000000,0.250000,0,0);}
.m1e_c01107{transform:matrix(0.279348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279348,0.000000,0.000000,0.250000,0,0);}
.m92_c01107{transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279396,0.000000,0.000000,0.250000,0,0);}
.m41_c01107{transform:matrix(0.280271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280271,0.000000,0.000000,0.250000,0,0);}
.m1b_c01107{transform:matrix(0.280662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280662,0.000000,0.000000,0.250000,0,0);}
.m53_c01107{transform:matrix(0.280925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280925,0.000000,0.000000,0.250000,0,0);}
.maa_c01107{transform:matrix(0.281831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281831,0.000000,0.000000,0.250000,0,0);}
.m6e_c01107{transform:matrix(0.283888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283888,0.000000,0.000000,0.250000,0,0);}
.m21_c01107{transform:matrix(0.284007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284007,0.000000,0.000000,0.250000,0,0);}
.mf_c01107{transform:matrix(0.284164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284164,0.000000,0.000000,0.250000,0,0);}
.ma1_c01107{transform:matrix(0.284535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284535,0.000000,0.000000,0.250000,0,0);}
.m7d_c01107{transform:matrix(0.284576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284576,0.000000,0.000000,0.250000,0,0);}
.m6c_c01107{transform:matrix(0.285128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285128,0.000000,0.000000,0.250000,0,0);}
.m9d_c01107{transform:matrix(0.286940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286940,0.000000,0.000000,0.250000,0,0);}
.m9e_c01107{transform:matrix(0.287284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287284,0.000000,0.000000,0.250000,0,0);}
.m73_c01107{transform:matrix(0.287475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287475,0.000000,0.000000,0.250000,0,0);}
.m1c_c01107{transform:matrix(0.288309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288309,0.000000,0.000000,0.250000,0,0);}
.m2f_c01107{transform:matrix(0.289505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289505,0.000000,0.000000,0.250000,0,0);}
.m13_c01107{transform:matrix(0.289514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289514,0.000000,0.000000,0.250000,0,0);}
.m10_c01107{transform:matrix(0.290344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290344,0.000000,0.000000,0.250000,0,0);}
.m8e_c01107{transform:matrix(0.291372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291372,0.000000,0.000000,0.250000,0,0);}
.m71_c01107{transform:matrix(0.292297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292297,0.000000,0.000000,0.250000,0,0);}
.me_c01107{transform:matrix(0.293260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293260,0.000000,0.000000,0.250000,0,0);}
.m5e_c01107{transform:matrix(0.294270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294270,0.000000,0.000000,0.250000,0,0);}
.m5b_c01107{transform:matrix(0.294557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294557,0.000000,0.000000,0.250000,0,0);}
.m79_c01107{transform:matrix(0.294792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294792,0.000000,0.000000,0.250000,0,0);}
.m18_c01107{transform:matrix(0.295448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295448,0.000000,0.000000,0.250000,0,0);}
.m37_c01107{transform:matrix(0.296261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296261,0.000000,0.000000,0.250000,0,0);}
.m83_c01107{transform:matrix(0.296339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296339,0.000000,0.000000,0.250000,0,0);}
.m43_c01107{transform:matrix(0.296540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296540,0.000000,0.000000,0.250000,0,0);}
.m4e_c01107{transform:matrix(0.296698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296698,0.000000,0.000000,0.250000,0,0);}
.m3_c01107{transform:matrix(0.296935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296935,0.000000,0.000000,0.250000,0,0);}
.m76_c01107{transform:matrix(0.297557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297557,0.000000,0.000000,0.250000,0,0);}
.m69_c01107{transform:matrix(0.297689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297689,0.000000,0.000000,0.250000,0,0);}
.m81_c01107{transform:matrix(0.298177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298177,0.000000,0.000000,0.250000,0,0);}
.m6a_c01107{transform:matrix(0.299224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299224,0.000000,0.000000,0.250000,0,0);}
.m25_c01107{transform:matrix(0.299553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299553,0.000000,0.000000,0.250000,0,0);}
.m26_c01107{transform:matrix(0.300870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300870,0.000000,0.000000,0.250000,0,0);}
.m28_c01107{transform:matrix(0.301244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301244,0.000000,0.000000,0.250000,0,0);}
.m85_c01107{transform:matrix(0.301830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301830,0.000000,0.000000,0.250000,0,0);}
.m89_c01107{transform:matrix(0.302125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302125,0.000000,0.000000,0.250000,0,0);}
.m77_c01107{transform:matrix(0.302296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302296,0.000000,0.000000,0.250000,0,0);}
.m61_c01107{transform:matrix(0.302562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302562,0.000000,0.000000,0.250000,0,0);}
.m32_c01107{transform:matrix(0.304322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304322,0.000000,0.000000,0.250000,0,0);}
.m29_c01107{transform:matrix(0.304946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304946,0.000000,0.000000,0.250000,0,0);}
.m56_c01107{transform:matrix(0.305061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305061,0.000000,0.000000,0.250000,0,0);}
.m7f_c01107{transform:matrix(0.305219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305219,0.000000,0.000000,0.250000,0,0);}
.m44_c01107{transform:matrix(0.307028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307028,0.000000,0.000000,0.250000,0,0);}
.m22_c01107{transform:matrix(0.307253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307253,0.000000,0.000000,0.250000,0,0);}
.m7a_c01107{transform:matrix(0.307762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307762,0.000000,0.000000,0.250000,0,0);}
.m49_c01107{transform:matrix(0.308356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308356,0.000000,0.000000,0.250000,0,0);}
.m48_c01107{transform:matrix(0.308964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308964,0.000000,0.000000,0.250000,0,0);}
.m5a_c01107{transform:matrix(0.310344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310344,0.000000,0.000000,0.250000,0,0);}
.m5c_c01107{transform:matrix(0.311110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311110,0.000000,0.000000,0.250000,0,0);}
.m23_c01107{transform:matrix(0.311187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311187,0.000000,0.000000,0.250000,0,0);}
.m8b_c01107{transform:matrix(0.312755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312755,0.000000,0.000000,0.250000,0,0);}
.m8a_c01107{transform:matrix(0.313326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313326,0.000000,0.000000,0.250000,0,0);}
.m57_c01107{transform:matrix(0.313711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313711,0.000000,0.000000,0.250000,0,0);}
.m7c_c01107{transform:matrix(0.314008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314008,0.000000,0.000000,0.250000,0,0);}
.m2b_c01107{transform:matrix(0.314288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314288,0.000000,0.000000,0.250000,0,0);}
.mc_c01107{transform:matrix(0.315309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315309,0.000000,0.000000,0.250000,0,0);}
.m99_c01107{transform:matrix(0.315410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315410,0.000000,0.000000,0.250000,0,0);}
.m3d_c01107{transform:matrix(0.316715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316715,0.000000,0.000000,0.250000,0,0);}
.m50_c01107{transform:matrix(0.317920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317920,0.000000,0.000000,0.250000,0,0);}
.m3a_c01107{transform:matrix(0.318494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318494,0.000000,0.000000,0.250000,0,0);}
.m9_c01107{transform:matrix(0.319787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319787,0.000000,0.000000,0.250000,0,0);}
.m3b_c01107{transform:matrix(0.320421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320421,0.000000,0.000000,0.250000,0,0);}
.m91_c01107{transform:matrix(0.321422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321422,0.000000,0.000000,0.250000,0,0);}
.m9a_c01107{transform:matrix(0.324242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324242,0.000000,0.000000,0.250000,0,0);}
.m65_c01107{transform:matrix(0.324916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324916,0.000000,0.000000,0.250000,0,0);}
.ma_c01107{transform:matrix(0.325996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325996,0.000000,0.000000,0.250000,0,0);}
.m98_c01107{transform:matrix(0.326937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326937,0.000000,0.000000,0.250000,0,0);}
.m30_c01107{transform:matrix(0.327212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327212,0.000000,0.000000,0.250000,0,0);}
.m2d_c01107{transform:matrix(0.327669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327669,0.000000,0.000000,0.250000,0,0);}
.m7b_c01107{transform:matrix(0.328050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328050,0.000000,0.000000,0.250000,0,0);}
.m2c_c01107{transform:matrix(0.329309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329309,0.000000,0.000000,0.250000,0,0);}
.m97_c01107{transform:matrix(0.329515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329515,0.000000,0.000000,0.250000,0,0);}
.m66_c01107{transform:matrix(0.329684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329684,0.000000,0.000000,0.250000,0,0);}
.m9c_c01107{transform:matrix(0.330738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330738,0.000000,0.000000,0.250000,0,0);}
.m15_c01107{transform:matrix(0.330904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330904,0.000000,0.000000,0.250000,0,0);}
.m80_c01107{transform:matrix(0.331573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331573,0.000000,0.000000,0.250000,0,0);}
.m3e_c01107{transform:matrix(0.332018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332018,0.000000,0.000000,0.250000,0,0);}
.m34_c01107{transform:matrix(0.334923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334923,0.000000,0.000000,0.250000,0,0);}
.m8c_c01107{transform:matrix(0.336275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336275,0.000000,0.000000,0.250000,0,0);}
.ma3_c01107{transform:matrix(0.336347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336347,0.000000,0.000000,0.250000,0,0);}
.m88_c01107{transform:matrix(0.337297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337297,0.000000,0.000000,0.250000,0,0);}
.m64_c01107{transform:matrix(0.337461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337461,0.000000,0.000000,0.250000,0,0);}
.m4f_c01107{transform:matrix(0.338273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338273,0.000000,0.000000,0.250000,0,0);}
.ma7_c01107{transform:matrix(0.338563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338563,0.000000,0.000000,0.250000,0,0);}
.m39_c01107{transform:matrix(0.338587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338587,0.000000,0.000000,0.250000,0,0);}
.m8_c01107{transform:matrix(0.338655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338655,0.000000,0.000000,0.250000,0,0);}
.m7e_c01107{transform:matrix(0.341363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341363,0.000000,0.000000,0.250000,0,0);}
.m6d_c01107{transform:matrix(0.343636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343636,0.000000,0.000000,0.250000,0,0);}
.m5_c01107{transform:matrix(0.344502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344502,0.000000,0.000000,0.250000,0,0);}
.m94_c01107{transform:matrix(0.348306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348306,0.000000,0.000000,0.250000,0,0);}
.m3f_c01107{transform:matrix(0.348549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348549,0.000000,0.000000,0.250000,0,0);}
.m75_c01107{transform:matrix(0.350467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350467,0.000000,0.000000,0.250000,0,0);}
.m38_c01107{transform:matrix(0.355699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355699,0.000000,0.000000,0.250000,0,0);}
.m42_c01107{transform:matrix(0.356132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356132,0.000000,0.000000,0.250000,0,0);}
.m8d_c01107{transform:matrix(0.356275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356275,0.000000,0.000000,0.250000,0,0);}
.m1d_c01107{transform:matrix(0.356799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356799,0.000000,0.000000,0.250000,0,0);}
.ma2_c01107{transform:matrix(0.356806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356806,0.000000,0.000000,0.250000,0,0);}
.ma0_c01107{transform:matrix(0.359518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359518,0.000000,0.000000,0.250000,0,0);}
.m4b_c01107{transform:matrix(0.359996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359996,0.000000,0.000000,0.250000,0,0);}
.m40_c01107{transform:matrix(0.362697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362697,0.000000,0.000000,0.250000,0,0);}
.m47_c01107{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);}
.m67_c01107{transform:matrix(0.369108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369108,0.000000,0.000000,0.250000,0,0);}
.m1f_c01107{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);}
.m36_c01107{transform:matrix(0.384419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384419,0.000000,0.000000,0.250000,0,0);}
.m9f_c01107{transform:matrix(0.391367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391367,0.000000,0.000000,0.250000,0,0);}
.m1a_c01107{transform:matrix(0.397481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397481,0.000000,0.000000,0.250000,0,0);}
.m60_c01107{transform:matrix(0.397482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397482,0.000000,0.000000,0.250000,0,0);}
.m4a_c01107{transform:matrix(0.439992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439992,0.000000,0.000000,0.250000,0,0);}
.v0_c01107{vertical-align:0.000000px;}
.v1_c01107{vertical-align:19.958400px;}
.lse_c01107{letter-spacing:-4.102567px;}
.ls22_c01107{letter-spacing:-2.869027px;}
.ls9_c01107{letter-spacing:-2.758140px;}
.ls2b_c01107{letter-spacing:-2.751217px;}
.ls16_c01107{letter-spacing:-2.682029px;}
.ls29_c01107{letter-spacing:-2.661127px;}
.ls15_c01107{letter-spacing:-2.494800px;}
.ls1c_c01107{letter-spacing:-1.690920px;}
.ls19_c01107{letter-spacing:-1.024452px;}
.ls25_c01107{letter-spacing:-0.495495px;}
.ls27_c01107{letter-spacing:-0.492982px;}
.ls6_c01107{letter-spacing:0.000000px;}
.ls1b_c01107{letter-spacing:0.713513px;}
.ls5_c01107{letter-spacing:0.951135px;}
.ls21_c01107{letter-spacing:0.970200px;}
.ls3_c01107{letter-spacing:1.011228px;}
.ls1_c01107{letter-spacing:1.372833px;}
.ls24_c01107{letter-spacing:1.786757px;}
.ls14_c01107{letter-spacing:1.910700px;}
.ls0_c01107{letter-spacing:2.069971px;}
.ls23_c01107{letter-spacing:2.426377px;}
.ls2_c01107{letter-spacing:2.614913px;}
.ls10_c01107{letter-spacing:3.124923px;}
.ls11_c01107{letter-spacing:3.474900px;}
.ls1f_c01107{letter-spacing:3.504610px;}
.lsb_c01107{letter-spacing:3.538300px;}
.ls1d_c01107{letter-spacing:3.564000px;}
.ls20_c01107{letter-spacing:3.603610px;}
.lsf_c01107{letter-spacing:3.643200px;}
.ls1a_c01107{letter-spacing:3.702610px;}
.lsd_c01107{letter-spacing:3.801610px;}
.lsa_c01107{letter-spacing:3.861000px;}
.lsc_c01107{letter-spacing:3.920400px;}
.ls18_c01107{letter-spacing:3.930310px;}
.ls8_c01107{letter-spacing:3.940200px;}
.ls17_c01107{letter-spacing:4.039200px;}
.ls7_c01107{letter-spacing:4.078810px;}
.ls26_c01107{letter-spacing:4.108500px;}
.ls4_c01107{letter-spacing:15.839901px;}
.ls1e_c01107{letter-spacing:52.747398px;}
.ls28_c01107{letter-spacing:58.449798px;}
.ls13_c01107{letter-spacing:59.875398px;}
.ls12_c01107{letter-spacing:61.300998px;}
.ls2a_c01107{letter-spacing:65.577798px;}
.sc__c01107{text-shadow:none;}
.sc0_c01107{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01107{-webkit-text-stroke:0px transparent;}
.sc0_c01107{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01107{word-spacing:-23.107963px;}
.ws1_c01107{word-spacing:-20.493050px;}
.ws0_c01107{word-spacing:-5.394312px;}
.ws3_c01107{word-spacing:0.000000px;}
._a_c01107{margin-left:-10.082209px;}
._c_c01107{margin-left:-6.725386px;}
._5_c01107{margin-left:-1.926540px;}
._8_c01107{width:1.824768px;}
._9_c01107{width:3.647952px;}
._2_c01107{width:7.957224px;}
._6_c01107{width:14.325696px;}
._0_c01107{width:16.408260px;}
._1_c01107{width:28.860638px;}
._3_c01107{width:31.620600px;}
._7_c01107{width:47.666916px;}
._b_c01107{width:83.207010px;}
._4_c01107{width:811.940976px;}
.fc0_c01107{color:transparent;}
.fs19_c01107{font-size:19.404000px;}
.fs0_c01107{font-size:22.572000px;}
.fs1c_c01107{font-size:27.720000px;}
.fs10_c01107{font-size:33.264000px;}
.fs22_c01107{font-size:33.660000px;}
.fsb_c01107{font-size:38.214000px;}
.fs13_c01107{font-size:38.808000px;}
.fs20_c01107{font-size:42.570000px;}
.fs14_c01107{font-size:48.312000px;}
.fs1a_c01107{font-size:48.510000px;}
.fs15_c01107{font-size:52.747398px;}
.fs21_c01107{font-size:58.449798px;}
.fsa_c01107{font-size:59.875398px;}
.fs9_c01107{font-size:61.300998px;}
.fs23_c01107{font-size:65.577798px;}
.fs11_c01107{font-size:66.330000px;}
.fsf_c01107{font-size:67.320000px;}
.fs8_c01107{font-size:69.498000px;}
.fs16_c01107{font-size:70.092198px;}
.fsc_c01107{font-size:71.280000px;}
.fs18_c01107{font-size:72.072198px;}
.fs4_c01107{font-size:72.864000px;}
.fs12_c01107{font-size:74.052198px;}
.fs17_c01107{font-size:74.844000px;}
.fs6_c01107{font-size:76.032198px;}
.fs3_c01107{font-size:77.220000px;}
.fs5_c01107{font-size:78.408000px;}
.fse_c01107{font-size:78.606198px;}
.fs2_c01107{font-size:78.804000px;}
.fsd_c01107{font-size:80.784000px;}
.fs1_c01107{font-size:81.576198px;}
.fs1b_c01107{font-size:81.972198px;}
.fs1e_c01107{font-size:82.170000px;}
.fs1f_c01107{font-size:83.556198px;}
.fs1d_c01107{font-size:90.090000px;}
.fs7_c01107{font-size:117.216198px;}
.y23_c01107{bottom:-2.592765px;}
.y0_c01107{bottom:0.000000px;}
.y22_c01107{bottom:60.494985px;}
.y1_c01107{bottom:76.500000px;}
.y21_c01107{bottom:114.316335px;}
.y20_c01107{bottom:156.366585px;}
.y1f_c01107{bottom:197.001135px;}
.y1e_c01107{bottom:222.305535px;}
.y1d_c01107{bottom:254.025135px;}
.y1c_c01107{bottom:286.101135px;}
.y1b_c01107{bottom:350.248185px;}
.y1a_c01107{bottom:383.036985px;}
.y2_c01107{bottom:415.117935px;}
.y19_c01107{bottom:415.830735px;}
.y18_c01107{bottom:447.545385px;}
.y17_c01107{bottom:479.977785px;}
.y16_c01107{bottom:511.340985px;}
.y15_c01107{bottom:538.788735px;}
.y14_c01107{bottom:543.778335px;}
.y13_c01107{bottom:575.136585px;}
.y12_c01107{bottom:606.856185px;}
.yf_c01107{bottom:638.224335px;}
.y11_c01107{bottom:638.937135px;}
.y10_c01107{bottom:654.257385px;}
.ye_c01107{bottom:660.316185px;}
.yd_c01107{bottom:670.295385px;}
.yc_c01107{bottom:685.264185px;}
.yb_c01107{bottom:703.084185px;}
.ya_c01107{bottom:735.165135px;}
.y9_c01107{bottom:767.236185px;}
.y8_c01107{bottom:798.604335px;}
.y7_c01107{bottom:831.393135px;}
.y6_c01107{bottom:861.330735px;}
.y5_c01107{bottom:895.545135px;}
.y4_c01107{bottom:927.616185px;}
.y3_c01107{bottom:1061.622585px;}
.h1c_c01107{height:20.237766px;}
.h2_c01107{height:23.541891px;}
.h1f_c01107{height:28.911094px;}
.h25_c01107{height:33.035449px;}
.h12_c01107{height:34.693313px;}
.h18_c01107{height:35.129767px;}
.h24_c01107{height:38.927565px;}
.hd_c01107{height:39.856008px;}
.hc_c01107{height:39.877015px;}
.h15_c01107{height:40.475531px;}
.hb_c01107{height:40.826465px;}
.h26_c01107{height:43.674813px;}
.h16_c01107{height:50.387906px;}
.h1d_c01107{height:50.594414px;}
.h11_c01107{height:66.070898px;}
.ha_c01107{height:68.208486px;}
.h13_c01107{height:69.180117px;}
.h17_c01107{height:69.957422px;}
.h1b_c01107{height:70.734921px;}
.h9_c01107{height:71.512031px;}
.h14_c01107{height:72.678183px;}
.h19_c01107{height:73.103972px;}
.h1a_c01107{height:73.455293px;}
.he_c01107{height:74.342813px;}
.h7_c01107{height:74.621444px;}
.h5_c01107{height:75.787207px;}
.h6_c01107{height:76.953164px;}
.h10_c01107{height:77.147685px;}
.h4_c01107{height:77.341816px;}
.hf_c01107{height:79.285078px;}
.h20_c01107{height:79.299207px;}
.h3_c01107{height:80.062577px;}
.h1e_c01107{height:80.451229px;}
.h23_c01107{height:82.005839px;}
.h22_c01107{height:82.811953px;}
.h21_c01107{height:90.793828px;}
.h8_c01107{height:122.252832px;}
.h1_c01107{height:1110.000000px;}
.h0_c01107{height:1263.000000px;}
.w1_c01107{width:775.500000px;}
.w0_c01107{width:892.500000px;}
.x0_c01107{left:0.000000px;}
.x2_c01107{left:49.031385px;}
.x1_c01107{left:58.500000px;}
.x59_c01107{left:96.660285px;}
.x68_c01107{left:134.240685px;}
.x2f_c01107{left:151.407285px;}
.x10_c01107{left:152.902185px;}
.x4_c01107{left:154.075335px;}
.x39_c01107{left:175.459335px;}
.x5_c01107{left:186.408735px;}
.x42_c01107{left:196.170135px;}
.x5c_c01107{left:205.946385px;}
.x1a_c01107{left:208.079835px;}
.x66_c01107{left:215.925585px;}
.x5a_c01107{left:218.326335px;}
.x43_c01107{left:220.222185px;}
.x67_c01107{left:226.280985px;}
.x44_c01107{left:229.820235px;}
.x2a_c01107{left:230.938935px;}
.x23_c01107{left:242.358585px;}
.x36_c01107{left:252.238785px;}
.x5d_c01107{left:261.198285px;}
.x5b_c01107{left:262.321935px;}
.x3e_c01107{left:274.206885px;}
.x11_c01107{left:275.276085px;}
.x55_c01107{left:284.389035px;}
.x1b_c01107{left:285.695835px;}
.x5e_c01107{left:296.595735px;}
.x6_c01107{left:298.417335px;}
.x61_c01107{left:305.777985px;}
.x37_c01107{left:307.515435px;}
.x3f_c01107{left:318.816285px;}
.x12_c01107{left:320.484435px;}
.x4e_c01107{left:322.226835px;}
.x27_c01107{left:329.354835px;}
.x7_c01107{left:330.631935px;}
.x40_c01107{left:334.596885px;}
.x53_c01107{left:339.987435px;}
.x13_c01107{left:351.897135px;}
.x24_c01107{left:353.599935px;}
.x1c_c01107{left:363.668235px;}
.x14_c01107{left:366.445185px;}
.x47_c01107{left:373.107885px;}
.x30_c01107{left:374.483985px;}
.x8_c01107{left:377.647035px;}
.x25_c01107{left:384.903735px;}
.x62_c01107{left:394.873035px;}
.x2b_c01107{left:396.808485px;}
.x15_c01107{left:398.560785px;}
.x1d_c01107{left:407.317335px;}
.x4f_c01107{left:408.648885px;}
.x3a_c01107{left:419.192385px;}
.x9_c01107{left:420.603135px;}
.x31_c01107{left:430.191285px;}
.x48_c01107{left:440.106135px;}
.x1e_c01107{left:442.665285px;}
.x4b_c01107{left:443.942385px;}
.x50_c01107{left:451.515885px;}
.xa_c01107{left:454.466085px;}
.x16_c01107{left:464.494785px;}
.x45_c01107{left:473.558235px;}
.x1f_c01107{left:475.221435px;}
.x57_c01107{left:484.715535px;}
.x28_c01107{left:485.858985px;}
.x56_c01107{left:494.674935px;}
.x17_c01107{left:495.734235px;}
.x63_c01107{left:505.678785px;}
.x32_c01107{left:507.074685px;}
.x26_c01107{left:518.929935px;}
.xb_c01107{left:520.103085px;}
.x3b_c01107{left:528.404235px;}
.x18_c01107{left:529.894185px;}
.x64_c01107{left:539.601135px;}
.x20_c01107{left:541.868235px;}
.x51_c01107{left:549.941685px;}
.xc_c01107{left:551.599935px;}
.x46_c01107{left:559.138785px;}
.x21_c01107{left:562.475085px;}
.x3c_c01107{left:573.944235px;}
.xd_c01107{left:574.988685px;}
.x5f_c01107{left:582.661185px;}
.x49_c01107{left:584.413485px;}
.x22_c01107{left:596.377635px;}
.x52_c01107{left:606.247935px;}
.xe_c01107{left:607.599285px;}
.x3d_c01107{left:617.296335px;}
.x54_c01107{left:618.405135px;}
.x2c_c01107{left:628.453635px;}
.x38_c01107{left:639.487185px;}
.x4a_c01107{left:651.099885px;}
.x2d_c01107{left:661.257285px;}
.x69_c01107{left:669.890085px;}
.x33_c01107{left:672.305685px;}
.x19_c01107{left:683.532285px;}
.x4c_c01107{left:688.497135px;}
.x29_c01107{left:694.917285px;}
.x41_c01107{left:696.080535px;}
.x58_c01107{left:699.134685px;}
.x4d_c01107{left:700.901835px;}
.x35_c01107{left:702.535335px;}
.x2e_c01107{left:705.752835px;}
.xf_c01107{left:706.831935px;}
.x3_c01107{left:709.683135px;}
.x34_c01107{left:718.117935px;}
.x60_c01107{left:728.230785px;}
.x65_c01107{left:738.858435px;}
@media print{
.v0_c01107{vertical-align:0.000000pt;}
.v1_c01107{vertical-align:17.740800pt;}
.lse_c01107{letter-spacing:-3.646726pt;}
.ls22_c01107{letter-spacing:-2.550246pt;}
.ls9_c01107{letter-spacing:-2.451680pt;}
.ls2b_c01107{letter-spacing:-2.445526pt;}
.ls16_c01107{letter-spacing:-2.384026pt;}
.ls29_c01107{letter-spacing:-2.365446pt;}
.ls15_c01107{letter-spacing:-2.217600pt;}
.ls1c_c01107{letter-spacing:-1.503040pt;}
.ls19_c01107{letter-spacing:-0.910624pt;}
.ls25_c01107{letter-spacing:-0.440440pt;}
.ls27_c01107{letter-spacing:-0.438206pt;}
.ls6_c01107{letter-spacing:0.000000pt;}
.ls1b_c01107{letter-spacing:0.634234pt;}
.ls5_c01107{letter-spacing:0.845453pt;}
.ls21_c01107{letter-spacing:0.862400pt;}
.ls3_c01107{letter-spacing:0.898870pt;}
.ls1_c01107{letter-spacing:1.220296pt;}
.ls24_c01107{letter-spacing:1.588228pt;}
.ls14_c01107{letter-spacing:1.698400pt;}
.ls0_c01107{letter-spacing:1.839974pt;}
.ls23_c01107{letter-spacing:2.156780pt;}
.ls2_c01107{letter-spacing:2.324367pt;}
.ls10_c01107{letter-spacing:2.777710pt;}
.ls11_c01107{letter-spacing:3.088800pt;}
.ls1f_c01107{letter-spacing:3.115209pt;}
.lsb_c01107{letter-spacing:3.145155pt;}
.ls1d_c01107{letter-spacing:3.168000pt;}
.ls20_c01107{letter-spacing:3.203209pt;}
.lsf_c01107{letter-spacing:3.238400pt;}
.ls1a_c01107{letter-spacing:3.291209pt;}
.lsd_c01107{letter-spacing:3.379209pt;}
.lsa_c01107{letter-spacing:3.432000pt;}
.lsc_c01107{letter-spacing:3.484800pt;}
.ls18_c01107{letter-spacing:3.493609pt;}
.ls8_c01107{letter-spacing:3.502400pt;}
.ls17_c01107{letter-spacing:3.590400pt;}
.ls7_c01107{letter-spacing:3.625609pt;}
.ls26_c01107{letter-spacing:3.652000pt;}
.ls4_c01107{letter-spacing:14.079912pt;}
.ls1e_c01107{letter-spacing:46.886576pt;}
.ls28_c01107{letter-spacing:51.955376pt;}
.ls13_c01107{letter-spacing:53.222576pt;}
.ls12_c01107{letter-spacing:54.489776pt;}
.ls2a_c01107{letter-spacing:58.291376pt;}
.ws2_c01107{word-spacing:-20.540411pt;}
.ws1_c01107{word-spacing:-18.216044pt;}
.ws0_c01107{word-spacing:-4.794944pt;}
.ws3_c01107{word-spacing:0.000000pt;}
._a_c01107{margin-left:-8.961964pt;}
._c_c01107{margin-left:-5.978121pt;}
._5_c01107{margin-left:-1.712480pt;}
._8_c01107{width:1.622016pt;}
._9_c01107{width:3.242624pt;}
._2_c01107{width:7.073088pt;}
._6_c01107{width:12.733952pt;}
._0_c01107{width:14.585120pt;}
._1_c01107{width:25.653901pt;}
._3_c01107{width:28.107200pt;}
._7_c01107{width:42.370592pt;}
._b_c01107{width:73.961787pt;}
._4_c01107{width:721.725312pt;}
.fs19_c01107{font-size:17.248000pt;}
.fs0_c01107{font-size:20.064000pt;}
.fs1c_c01107{font-size:24.640000pt;}
.fs10_c01107{font-size:29.568000pt;}
.fs22_c01107{font-size:29.920000pt;}
.fsb_c01107{font-size:33.968000pt;}
.fs13_c01107{font-size:34.496000pt;}
.fs20_c01107{font-size:37.840000pt;}
.fs14_c01107{font-size:42.944000pt;}
.fs1a_c01107{font-size:43.120000pt;}
.fs15_c01107{font-size:46.886576pt;}
.fs21_c01107{font-size:51.955376pt;}
.fsa_c01107{font-size:53.222576pt;}
.fs9_c01107{font-size:54.489776pt;}
.fs23_c01107{font-size:58.291376pt;}
.fs11_c01107{font-size:58.960000pt;}
.fsf_c01107{font-size:59.840000pt;}
.fs8_c01107{font-size:61.776000pt;}
.fs16_c01107{font-size:62.304176pt;}
.fsc_c01107{font-size:63.360000pt;}
.fs18_c01107{font-size:64.064176pt;}
.fs4_c01107{font-size:64.768000pt;}
.fs12_c01107{font-size:65.824176pt;}
.fs17_c01107{font-size:66.528000pt;}
.fs6_c01107{font-size:67.584176pt;}
.fs3_c01107{font-size:68.640000pt;}
.fs5_c01107{font-size:69.696000pt;}
.fse_c01107{font-size:69.872176pt;}
.fs2_c01107{font-size:70.048000pt;}
.fsd_c01107{font-size:71.808000pt;}
.fs1_c01107{font-size:72.512176pt;}
.fs1b_c01107{font-size:72.864176pt;}
.fs1e_c01107{font-size:73.040000pt;}
.fs1f_c01107{font-size:74.272176pt;}
.fs1d_c01107{font-size:80.080000pt;}
.fs7_c01107{font-size:104.192176pt;}
.y23_c01107{bottom:-2.304680pt;}
.y0_c01107{bottom:0.000000pt;}
.y22_c01107{bottom:53.773320pt;}
.y1_c01107{bottom:68.000000pt;}
.y21_c01107{bottom:101.614520pt;}
.y20_c01107{bottom:138.992520pt;}
.y1f_c01107{bottom:175.112120pt;}
.y1e_c01107{bottom:197.604920pt;}
.y1d_c01107{bottom:225.800120pt;}
.y1c_c01107{bottom:254.312120pt;}
.y1b_c01107{bottom:311.331720pt;}
.y1a_c01107{bottom:340.477320pt;}
.y2_c01107{bottom:368.993720pt;}
.y19_c01107{bottom:369.627320pt;}
.y18_c01107{bottom:397.818120pt;}
.y17_c01107{bottom:426.646920pt;}
.y16_c01107{bottom:454.525320pt;}
.y15_c01107{bottom:478.923320pt;}
.y14_c01107{bottom:483.358520pt;}
.y13_c01107{bottom:511.232520pt;}
.y12_c01107{bottom:539.427720pt;}
.yf_c01107{bottom:567.310520pt;}
.y11_c01107{bottom:567.944120pt;}
.y10_c01107{bottom:581.562120pt;}
.ye_c01107{bottom:586.947720pt;}
.yd_c01107{bottom:595.818120pt;}
.yc_c01107{bottom:609.123720pt;}
.yb_c01107{bottom:624.963720pt;}
.ya_c01107{bottom:653.480120pt;}
.y9_c01107{bottom:681.987720pt;}
.y8_c01107{bottom:709.870520pt;}
.y7_c01107{bottom:739.016120pt;}
.y6_c01107{bottom:765.627320pt;}
.y5_c01107{bottom:796.040120pt;}
.y4_c01107{bottom:824.547720pt;}
.y3_c01107{bottom:943.664520pt;}
.h1c_c01107{height:17.989125pt;}
.h2_c01107{height:20.926125pt;}
.h1f_c01107{height:25.698750pt;}
.h25_c01107{height:29.364844pt;}
.h12_c01107{height:30.838500pt;}
.h18_c01107{height:31.226460pt;}
.h24_c01107{height:34.602280pt;}
.hd_c01107{height:35.427563pt;}
.hc_c01107{height:35.446236pt;}
.h15_c01107{height:35.978250pt;}
.hb_c01107{height:36.290191pt;}
.h26_c01107{height:38.822056pt;}
.h16_c01107{height:44.789250pt;}
.h1d_c01107{height:44.972813pt;}
.h11_c01107{height:58.729688pt;}
.ha_c01107{height:60.629766pt;}
.h13_c01107{height:61.493438pt;}
.h17_c01107{height:62.184375pt;}
.h1b_c01107{height:62.875485pt;}
.h9_c01107{height:63.566250pt;}
.h14_c01107{height:64.602829pt;}
.h19_c01107{height:64.981309pt;}
.h1a_c01107{height:65.293594pt;}
.he_c01107{height:66.082500pt;}
.h7_c01107{height:66.330173pt;}
.h5_c01107{height:67.366406pt;}
.h6_c01107{height:68.402813pt;}
.h10_c01107{height:68.575720pt;}
.h4_c01107{height:68.748281pt;}
.hf_c01107{height:70.475625pt;}
.h20_c01107{height:70.488184pt;}
.h3_c01107{height:71.166735pt;}
.h1e_c01107{height:71.512204pt;}
.h23_c01107{height:72.894079pt;}
.h22_c01107{height:73.610625pt;}
.h21_c01107{height:80.705625pt;}
.h8_c01107{height:108.669184pt;}
.h1_c01107{height:986.666667pt;}
.h0_c01107{height:1122.666667pt;}
.w1_c01107{width:689.333333pt;}
.w0_c01107{width:793.333333pt;}
.x0_c01107{left:0.000000pt;}
.x2_c01107{left:43.583453pt;}
.x1_c01107{left:52.000000pt;}
.x59_c01107{left:85.920253pt;}
.x68_c01107{left:119.325053pt;}
.x2f_c01107{left:134.584253pt;}
.x10_c01107{left:135.913053pt;}
.x4_c01107{left:136.955853pt;}
.x39_c01107{left:155.963853pt;}
.x5_c01107{left:165.696653pt;}
.x42_c01107{left:174.373453pt;}
.x5c_c01107{left:183.063453pt;}
.x1a_c01107{left:184.959853pt;}
.x66_c01107{left:191.933853pt;}
.x5a_c01107{left:194.067853pt;}
.x43_c01107{left:195.753053pt;}
.x67_c01107{left:201.138653pt;}
.x44_c01107{left:204.284653pt;}
.x2a_c01107{left:205.279053pt;}
.x23_c01107{left:215.429853pt;}
.x36_c01107{left:224.212253pt;}
.x5d_c01107{left:232.176253pt;}
.x5b_c01107{left:233.175053pt;}
.x3e_c01107{left:243.739453pt;}
.x11_c01107{left:244.689853pt;}
.x55_c01107{left:252.790253pt;}
.x1b_c01107{left:253.951853pt;}
.x5e_c01107{left:263.640653pt;}
.x6_c01107{left:265.259853pt;}
.x61_c01107{left:271.802653pt;}
.x37_c01107{left:273.347053pt;}
.x3f_c01107{left:283.392253pt;}
.x12_c01107{left:284.875053pt;}
.x4e_c01107{left:286.423853pt;}
.x27_c01107{left:292.759853pt;}
.x7_c01107{left:293.895053pt;}
.x40_c01107{left:297.419453pt;}
.x53_c01107{left:302.211053pt;}
.x13_c01107{left:312.797453pt;}
.x24_c01107{left:314.311053pt;}
.x1c_c01107{left:323.260653pt;}
.x14_c01107{left:325.729053pt;}
.x47_c01107{left:331.651453pt;}
.x30_c01107{left:332.874653pt;}
.x8_c01107{left:335.686253pt;}
.x25_c01107{left:342.136653pt;}
.x62_c01107{left:350.998253pt;}
.x2b_c01107{left:352.718653pt;}
.x15_c01107{left:354.276253pt;}
.x1d_c01107{left:362.059853pt;}
.x4f_c01107{left:363.243453pt;}
.x3a_c01107{left:372.615453pt;}
.x9_c01107{left:373.869453pt;}
.x31_c01107{left:382.392253pt;}
.x48_c01107{left:391.205453pt;}
.x1e_c01107{left:393.480253pt;}
.x4b_c01107{left:394.615453pt;}
.x50_c01107{left:401.347453pt;}
.xa_c01107{left:403.969853pt;}
.x16_c01107{left:412.884253pt;}
.x45_c01107{left:420.940653pt;}
.x1f_c01107{left:422.419053pt;}
.x57_c01107{left:430.858253pt;}
.x28_c01107{left:431.874653pt;}
.x56_c01107{left:439.711053pt;}
.x17_c01107{left:440.652653pt;}
.x63_c01107{left:449.492253pt;}
.x32_c01107{left:450.733053pt;}
.x26_c01107{left:461.271053pt;}
.xb_c01107{left:462.313853pt;}
.x3b_c01107{left:469.692653pt;}
.x18_c01107{left:471.017053pt;}
.x64_c01107{left:479.645453pt;}
.x20_c01107{left:481.660653pt;}
.x51_c01107{left:488.837053pt;}
.xc_c01107{left:490.311053pt;}
.x46_c01107{left:497.012253pt;}
.x21_c01107{left:499.977853pt;}
.x3c_c01107{left:510.172653pt;}
.xd_c01107{left:511.101053pt;}
.x5f_c01107{left:517.921053pt;}
.x49_c01107{left:519.478653pt;}
.x22_c01107{left:530.113453pt;}
.x52_c01107{left:538.887053pt;}
.xe_c01107{left:540.088253pt;}
.x3d_c01107{left:548.707853pt;}
.x54_c01107{left:549.693453pt;}
.x2c_c01107{left:558.625453pt;}
.x38_c01107{left:568.433053pt;}
.x4a_c01107{left:578.755453pt;}
.x2d_c01107{left:587.784253pt;}
.x69_c01107{left:595.457853pt;}
.x33_c01107{left:597.605053pt;}
.x19_c01107{left:607.584253pt;}
.x4c_c01107{left:611.997453pt;}
.x29_c01107{left:617.704253pt;}
.x41_c01107{left:618.738253pt;}
.x58_c01107{left:621.453053pt;}
.x4d_c01107{left:623.023853pt;}
.x35_c01107{left:624.475853pt;}
.x2e_c01107{left:627.335853pt;}
.xf_c01107{left:628.295053pt;}
.x3_c01107{left:630.829453pt;}
.x34_c01107{left:638.327053pt;}
.x60_c01107{left:647.316253pt;}
.x65_c01107{left:656.763053pt;}
}





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

.ir_c01108:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01108{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01108;src:url('chunks/assets/font_da5fc25e2e111458049d40b2.woff2')format("woff");}.ff1_c01108{font-family:ff1_c01108;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01108;src:url('chunks/assets/font_47f49ba525dda4a2585a07fd.woff2')format("woff");}.ff2_c01108{font-family:ff2_c01108;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01108;src:url('chunks/assets/font_5dcf2404400b3b0f6c3a79c1.woff2')format("woff");}.ff3_c01108{font-family:ff3_c01108;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01108;src:url('chunks/assets/font_811c368576f9b05d8481eb9b.woff2')format("woff");}.ff4_c01108{font-family:ff4_c01108;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01108;src:url('chunks/assets/font_a68d040ef285abd13be06bf6.woff2')format("woff");}.ff5_c01108{font-family:ff5_c01108;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01108;src:url('chunks/assets/font_4ad386306fc5882655e413d7.woff2')format("woff");}.ff6_c01108{font-family:ff6_c01108;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m55_c01108{transform:matrix(0.022728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.022728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.022728,0.000000,0.000000,0.250000,0,0);}
.m9e_c01108{transform:matrix(0.026042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026042,0.000000,0.000000,0.250000,0,0);}
.m9c_c01108{transform:matrix(0.031251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.031251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.031251,0.000000,0.000000,0.250000,0,0);}
.m4d_c01108{transform:matrix(0.045455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045455,0.000000,0.000000,0.250000,0,0);}
.m9f_c01108{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);}
.m91_c01108{transform:matrix(0.081251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081251,0.000000,0.000000,0.250000,0,0);}
.m7d_c01108{transform:matrix(0.092016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092016,0.000000,0.000000,0.250000,0,0);}
.m9d_c01108{transform:matrix(0.101042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101042,0.000000,0.000000,0.250000,0,0);}
.m9b_c01108{transform:matrix(0.104167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104167,0.000000,0.000000,0.250000,0,0);}
.m62_c01108{transform:matrix(0.104592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104592,0.000000,0.000000,0.250000,0,0);}
.m3a_c01108{transform:matrix(0.112916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112916,0.000000,0.000000,0.250000,0,0);}
.m37_c01108{transform:matrix(0.116337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116337,0.000000,0.000000,0.250000,0,0);}
.m68_c01108{transform:matrix(0.119583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119583,0.000000,0.000000,0.250000,0,0);}
.m4c_c01108{transform:matrix(0.142993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142993,0.000000,0.000000,0.250000,0,0);}
.m76_c01108{transform:matrix(0.145348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145348,0.000000,0.000000,0.250000,0,0);}
.m1c_c01108{transform:matrix(0.155364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155364,0.000000,0.000000,0.250000,0,0);}
.m19_c01108{transform:matrix(0.158939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158939,0.000000,0.000000,0.250000,0,0);}
.m51_c01108{transform:matrix(0.160125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160125,0.000000,0.000000,0.250000,0,0);}
.m48_c01108{transform:matrix(0.165321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165321,0.000000,0.000000,0.250000,0,0);}
.m49_c01108{transform:matrix(0.168767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168767,0.000000,0.000000,0.250000,0,0);}
.m18_c01108{transform:matrix(0.170402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170402,0.000000,0.000000,0.250000,0,0);}
.m4e_c01108{transform:matrix(0.170455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170455,0.000000,0.000000,0.250000,0,0);}
.m4f_c01108{transform:matrix(0.171086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171086,0.000000,0.000000,0.250000,0,0);}
.m27_c01108{transform:matrix(0.175595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175595,0.000000,0.000000,0.250000,0,0);}
.m7b_c01108{transform:matrix(0.176137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176137,0.000000,0.000000,0.250000,0,0);}
.m57_c01108{transform:matrix(0.178030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178030,0.000000,0.000000,0.250000,0,0);}
.mb8_c01108{transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);}
.m45_c01108{transform:matrix(0.179051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179051,0.000000,0.000000,0.250000,0,0);}
.m92_c01108{transform:matrix(0.183334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183334,0.000000,0.000000,0.250000,0,0);}
.mae_c01108{transform:matrix(0.198565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198565,0.000000,0.000000,0.250000,0,0);}
.m4b_c01108{transform:matrix(0.201975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201975,0.000000,0.000000,0.250000,0,0);}
.m63_c01108{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);}
.m7c_c01108{transform:matrix(0.215900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215900,0.000000,0.000000,0.250000,0,0);}
.m90_c01108{transform:matrix(0.221875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221875,0.000000,0.000000,0.250000,0,0);}
.m32_c01108{transform:matrix(0.222508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222508,0.000000,0.000000,0.250000,0,0);}
.m2f_c01108{transform:matrix(0.223087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223087,0.000000,0.000000,0.250000,0,0);}
.m4a_c01108{transform:matrix(0.224239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224239,0.000000,0.000000,0.250000,0,0);}
.m89_c01108{transform:matrix(0.230188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230188,0.000000,0.000000,0.250000,0,0);}
.m84_c01108{transform:matrix(0.231556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231556,0.000000,0.000000,0.250000,0,0);}
.m8c_c01108{transform:matrix(0.234888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234888,0.000000,0.000000,0.250000,0,0);}
.m2e_c01108{transform:matrix(0.236425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236425,0.000000,0.000000,0.250000,0,0);}
.m1f_c01108{transform:matrix(0.238805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238805,0.000000,0.000000,0.250000,0,0);}
.m17_c01108{transform:matrix(0.239077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239077,0.000000,0.000000,0.250000,0,0);}
.m1_c01108{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m71_c01108{transform:matrix(0.252662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252662,0.000000,0.000000,0.250000,0,0);}
.m6c_c01108{transform:matrix(0.252801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252801,0.000000,0.000000,0.250000,0,0);}
.m12_c01108{transform:matrix(0.254139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254139,0.000000,0.000000,0.250000,0,0);}
.m2d_c01108{transform:matrix(0.255764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255764,0.000000,0.000000,0.250000,0,0);}
.m36_c01108{transform:matrix(0.258260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258260,0.000000,0.000000,0.250000,0,0);}
.ma3_c01108{transform:matrix(0.260049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260049,0.000000,0.000000,0.250000,0,0);}
.m54_c01108{transform:matrix(0.261364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261364,0.000000,0.000000,0.250000,0,0);}
.m1a_c01108{transform:matrix(0.262700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262700,0.000000,0.000000,0.250000,0,0);}
.m16_c01108{transform:matrix(0.265087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265087,0.000000,0.000000,0.250000,0,0);}
.m66_c01108{transform:matrix(0.265240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265240,0.000000,0.000000,0.250000,0,0);}
.m5c_c01108{transform:matrix(0.266519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266519,0.000000,0.000000,0.250000,0,0);}
.m0_c01108{transform:matrix(0.266687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266687,0.000000,0.000000,0.250000,0,0);}
.m81_c01108{transform:matrix(0.266737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266737,0.000000,0.000000,0.250000,0,0);}
.m9a_c01108{transform:matrix(0.269593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269593,0.000000,0.000000,0.250000,0,0);}
.m35_c01108{transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);}
.md_c01108{transform:matrix(0.271547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271547,0.000000,0.000000,0.250000,0,0);}
.mb_c01108{transform:matrix(0.272173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272173,0.000000,0.000000,0.250000,0,0);}
.m39_c01108{transform:matrix(0.273010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273010,0.000000,0.000000,0.250000,0,0);}
.m74_c01108{transform:matrix(0.273180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273180,0.000000,0.000000,0.250000,0,0);}
.m42_c01108{transform:matrix(0.273641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273641,0.000000,0.000000,0.250000,0,0);}
.mb0_c01108{transform:matrix(0.273881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273881,0.000000,0.000000,0.250000,0,0);}
.m59_c01108{transform:matrix(0.274340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274340,0.000000,0.000000,0.250000,0,0);}
.m94_c01108{transform:matrix(0.274532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274532,0.000000,0.000000,0.250000,0,0);}
.m41_c01108{transform:matrix(0.275151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275151,0.000000,0.000000,0.250000,0,0);}
.m22_c01108{transform:matrix(0.275231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275231,0.000000,0.000000,0.250000,0,0);}
.m14_c01108{transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);}
.m83_c01108{transform:matrix(0.276664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276664,0.000000,0.000000,0.250000,0,0);}
.m1d_c01108{transform:matrix(0.277104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277104,0.000000,0.000000,0.250000,0,0);}
.m6a_c01108{transform:matrix(0.278486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278486,0.000000,0.000000,0.250000,0,0);}
.ma0_c01108{transform:matrix(0.278827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278827,0.000000,0.000000,0.250000,0,0);}
.m38_c01108{transform:matrix(0.279348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279348,0.000000,0.000000,0.250000,0,0);}
.m31_c01108{transform:matrix(0.280282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280282,0.000000,0.000000,0.250000,0,0);}
.m6f_c01108{transform:matrix(0.280743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280743,0.000000,0.000000,0.250000,0,0);}
.m7f_c01108{transform:matrix(0.280972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280972,0.000000,0.000000,0.250000,0,0);}
.m50_c01108{transform:matrix(0.281551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281551,0.000000,0.000000,0.250000,0,0);}
.m6d_c01108{transform:matrix(0.283649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283649,0.000000,0.000000,0.250000,0,0);}
.m5a_c01108{transform:matrix(0.284164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284164,0.000000,0.000000,0.250000,0,0);}
.m73_c01108{transform:matrix(0.285077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285077,0.000000,0.000000,0.250000,0,0);}
.m2a_c01108{transform:matrix(0.285353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285353,0.000000,0.000000,0.250000,0,0);}
.ma6_c01108{transform:matrix(0.285790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285790,0.000000,0.000000,0.250000,0,0);}
.m8a_c01108{transform:matrix(0.285877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285877,0.000000,0.000000,0.250000,0,0);}
.m6b_c01108{transform:matrix(0.286262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286262,0.000000,0.000000,0.250000,0,0);}
.m2_c01108{transform:matrix(0.287025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287025,0.000000,0.000000,0.250000,0,0);}
.m3_c01108{transform:matrix(0.287028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287028,0.000000,0.000000,0.250000,0,0);}
.m5d_c01108{transform:matrix(0.287277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287277,0.000000,0.000000,0.250000,0,0);}
.mb1_c01108{transform:matrix(0.287465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287465,0.000000,0.000000,0.250000,0,0);}
.m8e_c01108{transform:matrix(0.287737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287737,0.000000,0.000000,0.250000,0,0);}
.m15_c01108{transform:matrix(0.288804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288804,0.000000,0.000000,0.250000,0,0);}
.mb6_c01108{transform:matrix(0.289066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289066,0.000000,0.000000,0.250000,0,0);}
.m67_c01108{transform:matrix(0.289634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289634,0.000000,0.000000,0.250000,0,0);}
.m53_c01108{transform:matrix(0.289693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289693,0.000000,0.000000,0.250000,0,0);}
.m93_c01108{transform:matrix(0.290061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290061,0.000000,0.000000,0.250000,0,0);}
.m1b_c01108{transform:matrix(0.290295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290295,0.000000,0.000000,0.250000,0,0);}
.m87_c01108{transform:matrix(0.290479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290479,0.000000,0.000000,0.250000,0,0);}
.m97_c01108{transform:matrix(0.290647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290647,0.000000,0.000000,0.250000,0,0);}
.m33_c01108{transform:matrix(0.291190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291190,0.000000,0.000000,0.250000,0,0);}
.m75_c01108{transform:matrix(0.292004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292004,0.000000,0.000000,0.250000,0,0);}
.m3e_c01108{transform:matrix(0.292252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292252,0.000000,0.000000,0.250000,0,0);}
.m70_c01108{transform:matrix(0.293094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293094,0.000000,0.000000,0.250000,0,0);}
.m96_c01108{transform:matrix(0.293422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293422,0.000000,0.000000,0.250000,0,0);}
.m56_c01108{transform:matrix(0.293610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293610,0.000000,0.000000,0.250000,0,0);}
.m8b_c01108{transform:matrix(0.294696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294696,0.000000,0.000000,0.250000,0,0);}
.mf_c01108{transform:matrix(0.294792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294792,0.000000,0.000000,0.250000,0,0);}
.mb4_c01108{transform:matrix(0.295528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295528,0.000000,0.000000,0.250000,0,0);}
.m4_c01108{transform:matrix(0.296261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296261,0.000000,0.000000,0.250000,0,0);}
.m64_c01108{transform:matrix(0.296299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296299,0.000000,0.000000,0.250000,0,0);}
.m34_c01108{transform:matrix(0.296307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296307,0.000000,0.000000,0.250000,0,0);}
.m11_c01108{transform:matrix(0.296433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296433,0.000000,0.000000,0.250000,0,0);}
.m21_c01108{transform:matrix(0.297670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297670,0.000000,0.000000,0.250000,0,0);}
.m30_c01108{transform:matrix(0.297831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297831,0.000000,0.000000,0.250000,0,0);}
.m46_c01108{transform:matrix(0.298219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298219,0.000000,0.000000,0.250000,0,0);}
.m7_c01108{transform:matrix(0.298566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298566,0.000000,0.000000,0.250000,0,0);}
.maa_c01108{transform:matrix(0.299447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299447,0.000000,0.000000,0.250000,0,0);}
.m26_c01108{transform:matrix(0.299794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299794,0.000000,0.000000,0.250000,0,0);}
.m3b_c01108{transform:matrix(0.300024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300024,0.000000,0.000000,0.250000,0,0);}
.m61_c01108{transform:matrix(0.300390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300390,0.000000,0.000000,0.250000,0,0);}
.m43_c01108{transform:matrix(0.300630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300630,0.000000,0.000000,0.250000,0,0);}
.m95_c01108{transform:matrix(0.300913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300913,0.000000,0.000000,0.250000,0,0);}
.ma5_c01108{transform:matrix(0.300918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300918,0.000000,0.000000,0.250000,0,0);}
.m44_c01108{transform:matrix(0.301486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301486,0.000000,0.000000,0.250000,0,0);}
.m10_c01108{transform:matrix(0.302562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302562,0.000000,0.000000,0.250000,0,0);}
.m3d_c01108{transform:matrix(0.302824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302824,0.000000,0.000000,0.250000,0,0);}
.me_c01108{transform:matrix(0.304437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304437,0.000000,0.000000,0.250000,0,0);}
.m24_c01108{transform:matrix(0.304477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304477,0.000000,0.000000,0.250000,0,0);}
.m79_c01108{transform:matrix(0.304515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304515,0.000000,0.000000,0.250000,0,0);}
.m72_c01108{transform:matrix(0.307062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307062,0.000000,0.000000,0.250000,0,0);}
.m88_c01108{transform:matrix(0.307699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307699,0.000000,0.000000,0.250000,0,0);}
.m99_c01108{transform:matrix(0.308077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308077,0.000000,0.000000,0.250000,0,0);}
.ma2_c01108{transform:matrix(0.308627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308627,0.000000,0.000000,0.250000,0,0);}
.m82_c01108{transform:matrix(0.308821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308821,0.000000,0.000000,0.250000,0,0);}
.m8d_c01108{transform:matrix(0.308867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308867,0.000000,0.000000,0.250000,0,0);}
.m8_c01108{transform:matrix(0.308879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308879,0.000000,0.000000,0.250000,0,0);}
.m98_c01108{transform:matrix(0.309616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309616,0.000000,0.000000,0.250000,0,0);}
.m8f_c01108{transform:matrix(0.309873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309873,0.000000,0.000000,0.250000,0,0);}
.m78_c01108{transform:matrix(0.310106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310106,0.000000,0.000000,0.250000,0,0);}
.m5f_c01108{transform:matrix(0.310374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310374,0.000000,0.000000,0.250000,0,0);}
.m9_c01108{transform:matrix(0.310401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310401,0.000000,0.000000,0.250000,0,0);}
.mb2_c01108{transform:matrix(0.310975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310975,0.000000,0.000000,0.250000,0,0);}
.ma7_c01108{transform:matrix(0.311545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311545,0.000000,0.000000,0.250000,0,0);}
.m20_c01108{transform:matrix(0.312523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312523,0.000000,0.000000,0.250000,0,0);}
.m58_c01108{transform:matrix(0.313883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313883,0.000000,0.000000,0.250000,0,0);}
.m40_c01108{transform:matrix(0.314437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314437,0.000000,0.000000,0.250000,0,0);}
.m65_c01108{transform:matrix(0.315689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315689,0.000000,0.000000,0.250000,0,0);}
.m1e_c01108{transform:matrix(0.316571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316571,0.000000,0.000000,0.250000,0,0);}
.mac_c01108{transform:matrix(0.317683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317683,0.000000,0.000000,0.250000,0,0);}
.m52_c01108{transform:matrix(0.317961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317961,0.000000,0.000000,0.250000,0,0);}
.m69_c01108{transform:matrix(0.319213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319213,0.000000,0.000000,0.250000,0,0);}
.mb7_c01108{transform:matrix(0.320060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320060,0.000000,0.000000,0.250000,0,0);}
.m3c_c01108{transform:matrix(0.321355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321355,0.000000,0.000000,0.250000,0,0);}
.mb3_c01108{transform:matrix(0.321796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321796,0.000000,0.000000,0.250000,0,0);}
.m85_c01108{transform:matrix(0.322473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322473,0.000000,0.000000,0.250000,0,0);}
.m2b_c01108{transform:matrix(0.323090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323090,0.000000,0.000000,0.250000,0,0);}
.m86_c01108{transform:matrix(0.324346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324346,0.000000,0.000000,0.250000,0,0);}
.mad_c01108{transform:matrix(0.325439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325439,0.000000,0.000000,0.250000,0,0);}
.m3f_c01108{transform:matrix(0.325946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325946,0.000000,0.000000,0.250000,0,0);}
.ma1_c01108{transform:matrix(0.326014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326014,0.000000,0.000000,0.250000,0,0);}
.m2c_c01108{transform:matrix(0.327175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327175,0.000000,0.000000,0.250000,0,0);}
.m80_c01108{transform:matrix(0.327327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327327,0.000000,0.000000,0.250000,0,0);}
.m29_c01108{transform:matrix(0.328700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328700,0.000000,0.000000,0.250000,0,0);}
.mab_c01108{transform:matrix(0.329597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329597,0.000000,0.000000,0.250000,0,0);}
.m13_c01108{transform:matrix(0.330075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330075,0.000000,0.000000,0.250000,0,0);}
.m25_c01108{transform:matrix(0.342733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342733,0.000000,0.000000,0.250000,0,0);}
.m7e_c01108{transform:matrix(0.343062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343062,0.000000,0.000000,0.250000,0,0);}
.m5b_c01108{transform:matrix(0.343636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343636,0.000000,0.000000,0.250000,0,0);}
.m47_c01108{transform:matrix(0.343669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343669,0.000000,0.000000,0.250000,0,0);}
.m28_c01108{transform:matrix(0.345519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345519,0.000000,0.000000,0.250000,0,0);}
.mb5_c01108{transform:matrix(0.347560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347560,0.000000,0.000000,0.250000,0,0);}
.m7a_c01108{transform:matrix(0.348310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348310,0.000000,0.000000,0.250000,0,0);}
.ma9_c01108{transform:matrix(0.348398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348398,0.000000,0.000000,0.250000,0,0);}
.mc_c01108{transform:matrix(0.349884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349884,0.000000,0.000000,0.250000,0,0);}
.ma8_c01108{transform:matrix(0.352247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352247,0.000000,0.000000,0.250000,0,0);}
.mb9_c01108{transform:matrix(0.353641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353641,0.000000,0.000000,0.250000,0,0);}
.ma4_c01108{transform:matrix(0.354576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354576,0.000000,0.000000,0.250000,0,0);}
.ma_c01108{transform:matrix(0.356788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356788,0.000000,0.000000,0.250000,0,0);}
.m6_c01108{transform:matrix(0.359996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359996,0.000000,0.000000,0.250000,0,0);}
.mba_c01108{transform:matrix(0.360537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360537,0.000000,0.000000,0.250000,0,0);}
.m5e_c01108{transform:matrix(0.363565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363565,0.000000,0.000000,0.250000,0,0);}
.maf_c01108{transform:matrix(0.373235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373235,0.000000,0.000000,0.250000,0,0);}
.m60_c01108{transform:matrix(0.383983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383983,0.000000,0.000000,0.250000,0,0);}
.m77_c01108{transform:matrix(0.385060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385060,0.000000,0.000000,0.250000,0,0);}
.m5_c01108{transform:matrix(0.391270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391270,0.000000,0.000000,0.250000,0,0);}
.m6e_c01108{transform:matrix(0.397481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397481,0.000000,0.000000,0.250000,0,0);}
.m23_c01108{transform:matrix(0.403692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403692,0.000000,0.000000,0.250000,0,0);}
.v0_c01108{vertical-align:0.000000px;}
.ls5_c01108{letter-spacing:-3.160080px;}
.ls10_c01108{letter-spacing:-2.751217px;}
.ls4_c01108{letter-spacing:-2.716567px;}
.ls7_c01108{letter-spacing:-2.661127px;}
.ls24_c01108{letter-spacing:-2.605680px;}
.lse_c01108{letter-spacing:-2.474017px;}
.ls1e_c01108{letter-spacing:-2.300767px;}
.ls9_c01108{letter-spacing:-2.079000px;}
.ls15_c01108{letter-spacing:-1.476090px;}
.ls17_c01108{letter-spacing:-0.615861px;}
.ls19_c01108{letter-spacing:-0.357351px;}
.ls13_c01108{letter-spacing:-0.255975px;}
.ls3_c01108{letter-spacing:0.000000px;}
.ls1_c01108{letter-spacing:1.127890px;}
.ls28_c01108{letter-spacing:1.269738px;}
.ls2a_c01108{letter-spacing:1.346400px;}
.ls29_c01108{letter-spacing:1.581470px;}
.ls1c_c01108{letter-spacing:1.786757px;}
.ls1d_c01108{letter-spacing:1.910700px;}
.ls25_c01108{letter-spacing:2.551751px;}
.ls18_c01108{letter-spacing:3.078900px;}
.ls20_c01108{letter-spacing:3.162939px;}
.ls16_c01108{letter-spacing:3.220589px;}
.ls21_c01108{letter-spacing:3.286810px;}
.ls1a_c01108{letter-spacing:3.306610px;}
.ls12_c01108{letter-spacing:3.337813px;}
.lsf_c01108{letter-spacing:3.534310px;}
.lsa_c01108{letter-spacing:3.641942px;}
.lsd_c01108{letter-spacing:3.702610px;}
.ls22_c01108{letter-spacing:3.722400px;}
.ls2_c01108{letter-spacing:3.801610px;}
.ls6_c01108{letter-spacing:3.999610px;}
.ls1f_c01108{letter-spacing:4.029310px;}
.ls23_c01108{letter-spacing:4.039200px;}
.ls0_c01108{letter-spacing:4.059000px;}
.lsc_c01108{letter-spacing:5.425200px;}
.ls27_c01108{letter-spacing:54.172998px;}
.lsb_c01108{letter-spacing:57.024198px;}
.ls14_c01108{letter-spacing:58.449798px;}
.ls8_c01108{letter-spacing:59.875398px;}
.ls1b_c01108{letter-spacing:61.300998px;}
.ls11_c01108{letter-spacing:62.726400px;}
.ls26_c01108{letter-spacing:68.428998px;}
.sc__c01108{text-shadow:none;}
.sc0_c01108{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01108{-webkit-text-stroke:0px transparent;}
.sc0_c01108{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01108{word-spacing:-19.998050px;}
.ws1_c01108{word-spacing:-18.392189px;}
.ws2_c01108{word-spacing:0.000000px;}
._1_c01108{width:2.532340px;}
._0_c01108{width:19.106016px;}
.fc0_c01108{color:transparent;}
.fs11_c01108{font-size:22.572000px;}
.fs1d_c01108{font-size:26.928000px;}
.fs15_c01108{font-size:38.214000px;}
.fsf_c01108{font-size:42.174000px;}
.fs1c_c01108{font-size:54.172998px;}
.fs8_c01108{font-size:57.024198px;}
.fse_c01108{font-size:58.449798px;}
.fs7_c01108{font-size:59.400000px;}
.fs6_c01108{font-size:59.875398px;}
.fs14_c01108{font-size:61.300998px;}
.fs12_c01108{font-size:61.578000px;}
.fsd_c01108{font-size:62.726400px;}
.fs16_c01108{font-size:65.736198px;}
.fs13_c01108{font-size:66.132198px;}
.fs1a_c01108{font-size:66.330000px;}
.fs1b_c01108{font-size:68.428998px;}
.fs3_c01108{font-size:70.092198px;}
.fsb_c01108{font-size:70.686198px;}
.fsa_c01108{font-size:74.052198px;}
.fs18_c01108{font-size:74.448000px;}
.fs2_c01108{font-size:76.032198px;}
.fs4_c01108{font-size:77.616198px;}
.fsc_c01108{font-size:78.606198px;}
.fs1_c01108{font-size:79.992198px;}
.fs17_c01108{font-size:80.586198px;}
.fs19_c01108{font-size:80.784000px;}
.fs0_c01108{font-size:81.180000px;}
.fs10_c01108{font-size:82.368000px;}
.fs5_c01108{font-size:90.288000px;}
.fs1e_c01108{font-size:93.456198px;}
.fs9_c01108{font-size:108.504000px;}
.y0_c01108{bottom:0.000000px;}
.y1_c01108{bottom:76.500000px;}
.y1e_c01108{bottom:122.513535px;}
.y1d_c01108{bottom:128.210985px;}
.y1c_c01108{bottom:159.579135px;}
.y1b_c01108{bottom:192.011535px;}
.y1a_c01108{bottom:225.151785px;}
.y19_c01108{bottom:255.802185px;}
.y18_c01108{bottom:386.957385px;}
.y17_c01108{bottom:419.033385px;}
.y16_c01108{bottom:451.114335px;}
.y14_c01108{bottom:482.828985px;}
.y15_c01108{bottom:488.174985px;}
.y13_c01108{bottom:514.909935px;}
.y12_c01108{bottom:546.624585px;}
.y11_c01108{bottom:560.886525px;}
.y10_c01108{bottom:572.646735px;}
.yf_c01108{bottom:575.497935px;}
.ye_c01108{bottom:578.705535px;}
.yd_c01108{bottom:610.425135px;}
.yc_c01108{bottom:642.857535px;}
.yb_c01108{bottom:674.215785px;}
.ya_c01108{bottom:707.004585px;}
.y9_c01108{bottom:739.441935px;}
.y8_c01108{bottom:771.517935px;}
.y7_c01108{bottom:803.588985px;}
.y6_c01108{bottom:835.669935px;}
.y5_c01108{bottom:867.740985px;}
.y4_c01108{bottom:900.173385px;}
.y3_c01108{bottom:932.605785px;}
.y2_c01108{bottom:1061.978985px;}
.h14_c01108{height:23.541891px;}
.h20_c01108{height:28.085063px;}
.h1f_c01108{height:36.079217px;}
.ha_c01108{height:37.978116px;}
.h11_c01108{height:38.927565px;}
.h18_c01108{height:39.856008px;}
.h8_c01108{height:39.877015px;}
.h17_c01108{height:40.826465px;}
.h10_c01108{height:41.775782px;}
.h12_c01108{height:43.986164px;}
.h1e_c01108{height:45.573713px;}
.h15_c01108{height:60.435439px;}
.h9_c01108{height:61.952344px;}
.h19_c01108{height:68.560800px;}
.h16_c01108{height:68.973816px;}
.h1d_c01108{height:69.180117px;}
.he_c01108{height:69.374638px;}
.hd_c01108{height:72.642024px;}
.h1b_c01108{height:73.066641px;}
.h5_c01108{height:73.103972px;}
.hc_c01108{height:74.584319px;}
.h4_c01108{height:74.621444px;}
.h6_c01108{height:76.176054px;}
.hf_c01108{height:77.147685px;}
.h3_c01108{height:78.507968px;}
.h1a_c01108{height:79.090946px;}
.h1c_c01108{height:79.285078px;}
.h2_c01108{height:79.673730px;}
.h13_c01108{height:80.839688px;}
.h7_c01108{height:88.612734px;}
.h21_c01108{height:97.289362px;}
.hb_c01108{height:106.490742px;}
.h1_c01108{height:1110.000000px;}
.h0_c01108{height:1263.000000px;}
.w1_c01108{width:775.500000px;}
.w0_c01108{width:892.500000px;}
.x0_c01108{left:0.000000px;}
.x1_c01108{left:58.500000px;}
.x6c_c01108{left:82.810185px;}
.x3_c01108{left:86.017785px;}
.x4b_c01108{left:137.502735px;}
.x21_c01108{left:138.774885px;}
.x4_c01108{left:139.824285px;}
.x7a_c01108{left:151.907235px;}
.x6d_c01108{left:169.989585px;}
.x4d_c01108{left:171.093435px;}
.x15_c01108{left:172.509135px;}
.x5a_c01108{left:174.013935px;}
.x56_c01108{left:182.191335px;}
.xc_c01108{left:184.042635px;}
.x65_c01108{left:192.719985px;}
.x5_c01108{left:195.234585px;}
.x38_c01108{left:196.264185px;}
.x72_c01108{left:204.307935px;}
.x33_c01108{left:205.985985px;}
.x16_c01108{left:216.593835px;}
.x54_c01108{left:226.746285px;}
.xd_c01108{left:229.216335px;}
.x17_c01108{left:237.962985px;}
.x39_c01108{left:248.664885px;}
.x29_c01108{left:250.318185px;}
.x22_c01108{left:251.634885px;}
.x76_c01108{left:259.559835px;}
.x55_c01108{left:260.896335px;}
.xe_c01108{left:262.623885px;}
.x6a_c01108{left:270.816135px;}
.x4c_c01108{left:271.919985px;}
.x4e_c01108{left:274.607835px;}
.x49_c01108{left:294.204885px;}
.x73_c01108{left:304.352385px;}
.x57_c01108{left:305.570085px;}
.x18_c01108{left:308.045085px;}
.x34_c01108{left:316.435335px;}
.x53_c01108{left:322.390185px;}
.x5b_c01108{left:326.493735px;}
.x61_c01108{left:337.438185px;}
.x44_c01108{left:338.566785px;}
.xf_c01108{left:340.447785px;}
.x19_c01108{left:346.085835px;}
.x5c_c01108{left:350.050785px;}
.x1a_c01108{left:359.064735px;}
.x23_c01108{left:361.168485px;}
.x6b_c01108{left:370.791285px;}
.x10_c01108{left:372.063435px;}
.x6_c01108{left:373.162335px;}
.x66_c01108{left:377.775735px;}
.x1b_c01108{left:383.413785px;}
.x62_c01108{left:393.091035px;}
.x67_c01108{left:394.526535px;}
.x3a_c01108{left:396.036285px;}
.x6e_c01108{left:402.010935px;}
.x4f_c01108{left:403.783035px;}
.x24_c01108{left:405.654135px;}
.x2e_c01108{left:408.282585px;}
.x3b_c01108{left:414.732435px;}
.x7_c01108{left:417.068835px;}
.x11_c01108{left:418.172685px;}
.x1c_c01108{left:428.047935px;}
.x68_c01108{left:436.878735px;}
.x25_c01108{left:438.319185px;}
.x2a_c01108{left:439.893285px;}
.x77_c01108{left:448.011285px;}
.x3c_c01108{left:449.288385px;}
.x8_c01108{left:450.911985px;}
.x45_c01108{left:460.336785px;}
.x1d_c01108{left:463.415685px;}
.x63_c01108{left:470.395185px;}
.x74_c01108{left:471.642585px;}
.x12_c01108{left:473.087985px;}
.x1e_c01108{left:481.438635px;}
.x2f_c01108{left:493.165185px;}
.x78_c01108{left:504.000735px;}
.x35_c01108{left:505.644135px;}
.x50_c01108{left:514.262085px;}
.x2b_c01108{left:515.489685px;}
.x26_c01108{left:517.192485px;}
.x58_c01108{left:526.864785px;}
.x46_c01108{left:536.665785px;}
.x64_c01108{left:547.907235px;}
.x9_c01108{left:549.872385px;}
.x3d_c01108{left:558.401235px;}
.x30_c01108{left:560.401035px;}
.x5d_c01108{left:569.746635px;}
.x27_c01108{left:571.810785px;}
.x71_c01108{left:581.299935px;}
.xa_c01108{left:583.428435px;}
.x69_c01108{left:591.694935px;}
.x51_c01108{left:593.184885px;}
.x1f_c01108{left:594.551085px;}
.x3e_c01108{left:602.020635px;}
.x36_c01108{left:603.609585px;}
.x2c_c01108{left:605.173785px;}
.x3f_c01108{left:612.682935px;}
.x40_c01108{left:614.370885px;}
.x13_c01108{left:616.553835px;}
.x52_c01108{left:625.993485px;}
.x75_c01108{left:635.824185px;}
.x59_c01108{left:636.997335px;}
.xb_c01108{left:638.061585px;}
.x47_c01108{left:647.659635px;}
.x14_c01108{left:648.664485px;}
.x31_c01108{left:650.837535px;}
.x41_c01108{left:659.683185px;}
.x37_c01108{left:669.602985px;}
.x32_c01108{left:671.568135px;}
.x79_c01108{left:680.146485px;}
.x4a_c01108{left:681.547335px;}
.x2d_c01108{left:691.580985px;}
.x20_c01108{left:695.669685px;}
.x5e_c01108{left:699.911835px;}
.x48_c01108{left:703.168935px;}
.x2_c01108{left:705.752835px;}
.x6f_c01108{left:712.742235px;}
.x42_c01108{left:713.860935px;}
.x28_c01108{left:714.930135px;}
.x43_c01108{left:716.355735px;}
.x70_c01108{left:736.437885px;}
.x5f_c01108{left:738.200085px;}
.x60_c01108{left:750.263235px;}
@media print{
.v0_c01108{vertical-align:0.000000pt;}
.ls5_c01108{letter-spacing:-2.808960pt;}
.ls10_c01108{letter-spacing:-2.445526pt;}
.ls4_c01108{letter-spacing:-2.414726pt;}
.ls7_c01108{letter-spacing:-2.365446pt;}
.ls24_c01108{letter-spacing:-2.316160pt;}
.lse_c01108{letter-spacing:-2.199126pt;}
.ls1e_c01108{letter-spacing:-2.045126pt;}
.ls9_c01108{letter-spacing:-1.848000pt;}
.ls15_c01108{letter-spacing:-1.312080pt;}
.ls17_c01108{letter-spacing:-0.547432pt;}
.ls19_c01108{letter-spacing:-0.317646pt;}
.ls13_c01108{letter-spacing:-0.227533pt;}
.ls3_c01108{letter-spacing:0.000000pt;}
.ls1_c01108{letter-spacing:1.002569pt;}
.ls28_c01108{letter-spacing:1.128656pt;}
.ls2a_c01108{letter-spacing:1.196800pt;}
.ls29_c01108{letter-spacing:1.405751pt;}
.ls1c_c01108{letter-spacing:1.588228pt;}
.ls1d_c01108{letter-spacing:1.698400pt;}
.ls25_c01108{letter-spacing:2.268223pt;}
.ls18_c01108{letter-spacing:2.736800pt;}
.ls20_c01108{letter-spacing:2.811502pt;}
.ls16_c01108{letter-spacing:2.862746pt;}
.ls21_c01108{letter-spacing:2.921609pt;}
.ls1a_c01108{letter-spacing:2.939209pt;}
.ls12_c01108{letter-spacing:2.966945pt;}
.lsf_c01108{letter-spacing:3.141609pt;}
.lsa_c01108{letter-spacing:3.237282pt;}
.lsd_c01108{letter-spacing:3.291209pt;}
.ls22_c01108{letter-spacing:3.308800pt;}
.ls2_c01108{letter-spacing:3.379209pt;}
.ls6_c01108{letter-spacing:3.555209pt;}
.ls1f_c01108{letter-spacing:3.581609pt;}
.ls23_c01108{letter-spacing:3.590400pt;}
.ls0_c01108{letter-spacing:3.608000pt;}
.lsc_c01108{letter-spacing:4.822400pt;}
.ls27_c01108{letter-spacing:48.153776pt;}
.lsb_c01108{letter-spacing:50.688176pt;}
.ls14_c01108{letter-spacing:51.955376pt;}
.ls8_c01108{letter-spacing:53.222576pt;}
.ls1b_c01108{letter-spacing:54.489776pt;}
.ls11_c01108{letter-spacing:55.756800pt;}
.ls26_c01108{letter-spacing:60.825776pt;}
.ws0_c01108{word-spacing:-17.776044pt;}
.ws1_c01108{word-spacing:-16.348612pt;}
.ws2_c01108{word-spacing:0.000000pt;}
._1_c01108{width:2.250969pt;}
._0_c01108{width:16.983125pt;}
.fs11_c01108{font-size:20.064000pt;}
.fs1d_c01108{font-size:23.936000pt;}
.fs15_c01108{font-size:33.968000pt;}
.fsf_c01108{font-size:37.488000pt;}
.fs1c_c01108{font-size:48.153776pt;}
.fs8_c01108{font-size:50.688176pt;}
.fse_c01108{font-size:51.955376pt;}
.fs7_c01108{font-size:52.800000pt;}
.fs6_c01108{font-size:53.222576pt;}
.fs14_c01108{font-size:54.489776pt;}
.fs12_c01108{font-size:54.736000pt;}
.fsd_c01108{font-size:55.756800pt;}
.fs16_c01108{font-size:58.432176pt;}
.fs13_c01108{font-size:58.784176pt;}
.fs1a_c01108{font-size:58.960000pt;}
.fs1b_c01108{font-size:60.825776pt;}
.fs3_c01108{font-size:62.304176pt;}
.fsb_c01108{font-size:62.832176pt;}
.fsa_c01108{font-size:65.824176pt;}
.fs18_c01108{font-size:66.176000pt;}
.fs2_c01108{font-size:67.584176pt;}
.fs4_c01108{font-size:68.992176pt;}
.fsc_c01108{font-size:69.872176pt;}
.fs1_c01108{font-size:71.104176pt;}
.fs17_c01108{font-size:71.632176pt;}
.fs19_c01108{font-size:71.808000pt;}
.fs0_c01108{font-size:72.160000pt;}
.fs10_c01108{font-size:73.216000pt;}
.fs5_c01108{font-size:80.256000pt;}
.fs1e_c01108{font-size:83.072176pt;}
.fs9_c01108{font-size:96.448000pt;}
.y0_c01108{bottom:0.000000pt;}
.y1_c01108{bottom:68.000000pt;}
.y1e_c01108{bottom:108.900920pt;}
.y1d_c01108{bottom:113.965320pt;}
.y1c_c01108{bottom:141.848120pt;}
.y1b_c01108{bottom:170.676920pt;}
.y1a_c01108{bottom:200.134920pt;}
.y19_c01108{bottom:227.379720pt;}
.y18_c01108{bottom:343.962120pt;}
.y17_c01108{bottom:372.474120pt;}
.y16_c01108{bottom:400.990520pt;}
.y14_c01108{bottom:429.181320pt;}
.y15_c01108{bottom:433.933320pt;}
.y13_c01108{bottom:457.697720pt;}
.y12_c01108{bottom:485.888520pt;}
.y11_c01108{bottom:498.565800pt;}
.y10_c01108{bottom:509.019320pt;}
.yf_c01108{bottom:511.553720pt;}
.ye_c01108{bottom:514.404920pt;}
.yd_c01108{bottom:542.600120pt;}
.yc_c01108{bottom:571.428920pt;}
.yb_c01108{bottom:599.302920pt;}
.ya_c01108{bottom:628.448520pt;}
.y9_c01108{bottom:657.281720pt;}
.y8_c01108{bottom:685.793720pt;}
.y7_c01108{bottom:714.301320pt;}
.y6_c01108{bottom:742.817720pt;}
.y5_c01108{bottom:771.325320pt;}
.y4_c01108{bottom:800.154120pt;}
.y3_c01108{bottom:828.982920pt;}
.y2_c01108{bottom:943.981320pt;}
.h14_c01108{height:20.926125pt;}
.h20_c01108{height:24.964500pt;}
.h1f_c01108{height:32.070415pt;}
.ha_c01108{height:33.758325pt;}
.h11_c01108{height:34.602280pt;}
.h18_c01108{height:35.427563pt;}
.h8_c01108{height:35.446236pt;}
.h17_c01108{height:36.290191pt;}
.h10_c01108{height:37.134029pt;}
.h12_c01108{height:39.098813pt;}
.h1e_c01108{height:40.509967pt;}
.h15_c01108{height:53.720391pt;}
.h9_c01108{height:55.068750pt;}
.h19_c01108{height:60.942934pt;}
.h16_c01108{height:61.310059pt;}
.h1d_c01108{height:61.493438pt;}
.he_c01108{height:61.666345pt;}
.hd_c01108{height:64.570688pt;}
.h1b_c01108{height:64.948125pt;}
.h5_c01108{height:64.981309pt;}
.hc_c01108{height:66.297173pt;}
.h4_c01108{height:66.330173pt;}
.h6_c01108{height:67.712048pt;}
.hf_c01108{height:68.575720pt;}
.h3_c01108{height:69.784860pt;}
.h1a_c01108{height:70.303063pt;}
.h1c_c01108{height:70.475625pt;}
.h2_c01108{height:70.821094pt;}
.h13_c01108{height:71.857500pt;}
.h7_c01108{height:78.766875pt;}
.h21_c01108{height:86.479433pt;}
.hb_c01108{height:94.658438pt;}
.h1_c01108{height:986.666667pt;}
.h0_c01108{height:1122.666667pt;}
.w1_c01108{width:689.333333pt;}
.w0_c01108{width:793.333333pt;}
.x0_c01108{left:0.000000pt;}
.x1_c01108{left:52.000000pt;}
.x6c_c01108{left:73.609053pt;}
.x3_c01108{left:76.460253pt;}
.x4b_c01108{left:122.224653pt;}
.x21_c01108{left:123.355453pt;}
.x4_c01108{left:124.288253pt;}
.x7a_c01108{left:135.028653pt;}
.x6d_c01108{left:151.101853pt;}
.x4d_c01108{left:152.083053pt;}
.x15_c01108{left:153.341453pt;}
.x5a_c01108{left:154.679053pt;}
.x56_c01108{left:161.947853pt;}
.xc_c01108{left:163.593453pt;}
.x65_c01108{left:171.306653pt;}
.x5_c01108{left:173.541853pt;}
.x38_c01108{left:174.457053pt;}
.x72_c01108{left:181.607053pt;}
.x33_c01108{left:183.098653pt;}
.x16_c01108{left:192.527853pt;}
.x54_c01108{left:201.552253pt;}
.xd_c01108{left:203.747853pt;}
.x17_c01108{left:211.522653pt;}
.x39_c01108{left:221.035453pt;}
.x29_c01108{left:222.505053pt;}
.x22_c01108{left:223.675453pt;}
.x76_c01108{left:230.719853pt;}
.x55_c01108{left:231.907853pt;}
.xe_c01108{left:233.443453pt;}
.x6a_c01108{left:240.725453pt;}
.x4c_c01108{left:241.706653pt;}
.x4e_c01108{left:244.095853pt;}
.x49_c01108{left:261.515453pt;}
.x73_c01108{left:270.535453pt;}
.x57_c01108{left:271.617853pt;}
.x18_c01108{left:273.817853pt;}
.x34_c01108{left:281.275853pt;}
.x53_c01108{left:286.569053pt;}
.x5b_c01108{left:290.216653pt;}
.x61_c01108{left:299.945053pt;}
.x44_c01108{left:300.948253pt;}
.xf_c01108{left:302.620253pt;}
.x19_c01108{left:307.631853pt;}
.x5c_c01108{left:311.156253pt;}
.x1a_c01108{left:319.168653pt;}
.x23_c01108{left:321.038653pt;}
.x6b_c01108{left:329.592253pt;}
.x10_c01108{left:330.723053pt;}
.x6_c01108{left:331.699853pt;}
.x66_c01108{left:335.800653pt;}
.x1b_c01108{left:340.812253pt;}
.x62_c01108{left:349.414253pt;}
.x67_c01108{left:350.690253pt;}
.x3a_c01108{left:352.032253pt;}
.x6e_c01108{left:357.343053pt;}
.x4f_c01108{left:358.918253pt;}
.x24_c01108{left:360.581453pt;}
.x2e_c01108{left:362.917853pt;}
.x3b_c01108{left:368.651053pt;}
.x7_c01108{left:370.727853pt;}
.x11_c01108{left:371.709053pt;}
.x1c_c01108{left:380.487053pt;}
.x68_c01108{left:388.336653pt;}
.x25_c01108{left:389.617053pt;}
.x2a_c01108{left:391.016253pt;}
.x77_c01108{left:398.232253pt;}
.x3c_c01108{left:399.367453pt;}
.x8_c01108{left:400.810653pt;}
.x45_c01108{left:409.188253pt;}
.x1d_c01108{left:411.925053pt;}
.x63_c01108{left:418.129053pt;}
.x74_c01108{left:419.237853pt;}
.x12_c01108{left:420.522653pt;}
.x1e_c01108{left:427.945453pt;}
.x2f_c01108{left:438.369053pt;}
.x78_c01108{left:448.000653pt;}
.x35_c01108{left:449.461453pt;}
.x50_c01108{left:457.121853pt;}
.x2b_c01108{left:458.213053pt;}
.x26_c01108{left:459.726653pt;}
.x58_c01108{left:468.324253pt;}
.x46_c01108{left:477.036253pt;}
.x64_c01108{left:487.028653pt;}
.x9_c01108{left:488.775453pt;}
.x3d_c01108{left:496.356653pt;}
.x30_c01108{left:498.134253pt;}
.x5d_c01108{left:506.441453pt;}
.x27_c01108{left:508.276253pt;}
.x71_c01108{left:516.711053pt;}
.xa_c01108{left:518.603053pt;}
.x69_c01108{left:525.951053pt;}
.x51_c01108{left:527.275453pt;}
.x1f_c01108{left:528.489853pt;}
.x3e_c01108{left:535.129453pt;}
.x36_c01108{left:536.541853pt;}
.x2c_c01108{left:537.932253pt;}
.x3f_c01108{left:544.607053pt;}
.x40_c01108{left:546.107453pt;}
.x13_c01108{left:548.047853pt;}
.x52_c01108{left:556.438653pt;}
.x75_c01108{left:565.177053pt;}
.x59_c01108{left:566.219853pt;}
.xb_c01108{left:567.165853pt;}
.x47_c01108{left:575.697453pt;}
.x14_c01108{left:576.590653pt;}
.x31_c01108{left:578.522253pt;}
.x41_c01108{left:586.385053pt;}
.x37_c01108{left:595.202653pt;}
.x32_c01108{left:596.949453pt;}
.x79_c01108{left:604.574653pt;}
.x4a_c01108{left:605.819853pt;}
.x2d_c01108{left:614.738653pt;}
.x20_c01108{left:618.373053pt;}
.x5e_c01108{left:622.143853pt;}
.x48_c01108{left:625.039053pt;}
.x2_c01108{left:627.335853pt;}
.x6f_c01108{left:633.548653pt;}
.x42_c01108{left:634.543053pt;}
.x28_c01108{left:635.493453pt;}
.x43_c01108{left:636.760653pt;}
.x70_c01108{left:654.611453pt;}
.x5f_c01108{left:656.177853pt;}
.x60_c01108{left:666.900653pt;}
}





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

.ir_c01109:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01109{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01109;src:url('chunks/assets/font_2cb08e790e54123e0d4d41f3.woff2')format("woff");}.ff1_c01109{font-family:ff1_c01109;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01109;src:url('chunks/assets/font_c8bef5f16144d82370063e28.woff2')format("woff");}.ff2_c01109{font-family:ff2_c01109;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01109;src:url('chunks/assets/font_06d74439bc645281949fed2f.woff2')format("woff");}.ff3_c01109{font-family:ff3_c01109;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01109;src:url('chunks/assets/font_b3a7b47515de71427192b1b0.woff2')format("woff");}.ff4_c01109{font-family:ff4_c01109;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01109;src:url('chunks/assets/font_76ed40d1a1122448a092a5d6.woff2')format("woff");}.ff5_c01109{font-family:ff5_c01109;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2d_c01109{transform:matrix(0.090278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090278,0.000000,0.000000,0.250000,0,0);}
.m2f_c01109{transform:matrix(0.099074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099074,0.000000,0.000000,0.250000,0,0);}
.m23_c01109{transform:matrix(0.100776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100776,0.000000,0.000000,0.250000,0,0);}
.ma5_c01109{transform:matrix(0.125710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125710,0.000000,0.000000,0.250000,0,0);}
.m91_c01109{transform:matrix(0.129483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129483,0.000000,0.000000,0.250000,0,0);}
.m3e_c01109{transform:matrix(0.138953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138953,0.000000,0.000000,0.250000,0,0);}
.m51_c01109{transform:matrix(0.141448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141448,0.000000,0.000000,0.250000,0,0);}
.m52_c01109{transform:matrix(0.144887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144887,0.000000,0.000000,0.250000,0,0);}
.m24_c01109{transform:matrix(0.152875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152875,0.000000,0.000000,0.250000,0,0);}
.mf_c01109{transform:matrix(0.157830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157830,0.000000,0.000000,0.250000,0,0);}
.mc_c01109{transform:matrix(0.159803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159803,0.000000,0.000000,0.250000,0,0);}
.m6e_c01109{transform:matrix(0.172569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172569,0.000000,0.000000,0.250000,0,0);}
.m2b_c01109{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m20_c01109{transform:matrix(0.181685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181685,0.000000,0.000000,0.250000,0,0);}
.m2e_c01109{transform:matrix(0.183288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183288,0.000000,0.000000,0.250000,0,0);}
.m92_c01109{transform:matrix(0.191454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191454,0.000000,0.000000,0.250000,0,0);}
.m30_c01109{transform:matrix(0.208855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208855,0.000000,0.000000,0.250000,0,0);}
.m8f_c01109{transform:matrix(0.217968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217968,0.000000,0.000000,0.250000,0,0);}
.m10_c01109{transform:matrix(0.218774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218774,0.000000,0.000000,0.250000,0,0);}
.m22_c01109{transform:matrix(0.222246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222246,0.000000,0.000000,0.250000,0,0);}
.m49_c01109{transform:matrix(0.226191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226191,0.000000,0.000000,0.250000,0,0);}
.m2a_c01109{transform:matrix(0.228473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228473,0.000000,0.000000,0.250000,0,0);}
.m3f_c01109{transform:matrix(0.230453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230453,0.000000,0.000000,0.250000,0,0);}
.m96_c01109{transform:matrix(0.235974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235974,0.000000,0.000000,0.250000,0,0);}
.m4a_c01109{transform:matrix(0.237175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237175,0.000000,0.000000,0.250000,0,0);}
.m0_c01109{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m7b_c01109{transform:matrix(0.252751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252751,0.000000,0.000000,0.250000,0,0);}
.md_c01109{transform:matrix(0.253137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253137,0.000000,0.000000,0.250000,0,0);}
.m2_c01109{transform:matrix(0.255486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255486,0.000000,0.000000,0.250000,0,0);}
.m16_c01109{transform:matrix(0.257015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257015,0.000000,0.000000,0.250000,0,0);}
.m71_c01109{transform:matrix(0.258624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258624,0.000000,0.000000,0.250000,0,0);}
.m7e_c01109{transform:matrix(0.258892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258892,0.000000,0.000000,0.250000,0,0);}
.m55_c01109{transform:matrix(0.259294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259294,0.000000,0.000000,0.250000,0,0);}
.m25_c01109{transform:matrix(0.259792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259792,0.000000,0.000000,0.250000,0,0);}
.m8e_c01109{transform:matrix(0.260044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260044,0.000000,0.000000,0.250000,0,0);}
.m74_c01109{transform:matrix(0.261995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261995,0.000000,0.000000,0.250000,0,0);}
.m32_c01109{transform:matrix(0.262052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262052,0.000000,0.000000,0.250000,0,0);}
.m76_c01109{transform:matrix(0.262299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262299,0.000000,0.000000,0.250000,0,0);}
.m4f_c01109{transform:matrix(0.262408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262408,0.000000,0.000000,0.250000,0,0);}
.m11_c01109{transform:matrix(0.262516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262516,0.000000,0.000000,0.250000,0,0);}
.m41_c01109{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);}
.me_c01109{transform:matrix(0.265042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265042,0.000000,0.000000,0.250000,0,0);}
.m29_c01109{transform:matrix(0.265705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265705,0.000000,0.000000,0.250000,0,0);}
.m14_c01109{transform:matrix(0.265746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265746,0.000000,0.000000,0.250000,0,0);}
.m3c_c01109{transform:matrix(0.266163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266163,0.000000,0.000000,0.250000,0,0);}
.m42_c01109{transform:matrix(0.267392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267392,0.000000,0.000000,0.250000,0,0);}
.m97_c01109{transform:matrix(0.267628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267628,0.000000,0.000000,0.250000,0,0);}
.m33_c01109{transform:matrix(0.269450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269450,0.000000,0.000000,0.250000,0,0);}
.ma3_c01109{transform:matrix(0.270900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270900,0.000000,0.000000,0.250000,0,0);}
.m1a_c01109{transform:matrix(0.273387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273387,0.000000,0.000000,0.250000,0,0);}
.m84_c01109{transform:matrix(0.273997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273997,0.000000,0.000000,0.250000,0,0);}
.m1_c01109{transform:matrix(0.274142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274142,0.000000,0.000000,0.250000,0,0);}
.m78_c01109{transform:matrix(0.275284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275284,0.000000,0.000000,0.250000,0,0);}
.m3_c01109{transform:matrix(0.275531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275531,0.000000,0.000000,0.250000,0,0);}
.ma2_c01109{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);}
.m64_c01109{transform:matrix(0.275843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275843,0.000000,0.000000,0.250000,0,0);}
.m60_c01109{transform:matrix(0.276494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276494,0.000000,0.000000,0.250000,0,0);}
.m5_c01109{transform:matrix(0.278422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278422,0.000000,0.000000,0.250000,0,0);}
.m75_c01109{transform:matrix(0.278594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278594,0.000000,0.000000,0.250000,0,0);}
.m4b_c01109{transform:matrix(0.279337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279337,0.000000,0.000000,0.250000,0,0);}
.m65_c01109{transform:matrix(0.279601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279601,0.000000,0.000000,0.250000,0,0);}
.m31_c01109{transform:matrix(0.280628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280628,0.000000,0.000000,0.250000,0,0);}
.m6a_c01109{transform:matrix(0.280682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280682,0.000000,0.000000,0.250000,0,0);}
.m28_c01109{transform:matrix(0.282617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282617,0.000000,0.000000,0.250000,0,0);}
.m35_c01109{transform:matrix(0.282707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282707,0.000000,0.000000,0.250000,0,0);}
.m5c_c01109{transform:matrix(0.283323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283323,0.000000,0.000000,0.250000,0,0);}
.m2c_c01109{transform:matrix(0.283782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283782,0.000000,0.000000,0.250000,0,0);}
.m1f_c01109{transform:matrix(0.284151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284151,0.000000,0.000000,0.250000,0,0);}
.m43_c01109{transform:matrix(0.284639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284639,0.000000,0.000000,0.250000,0,0);}
.m61_c01109{transform:matrix(0.284689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284689,0.000000,0.000000,0.250000,0,0);}
.m9f_c01109{transform:matrix(0.286350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286350,0.000000,0.000000,0.250000,0,0);}
.m86_c01109{transform:matrix(0.286767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286767,0.000000,0.000000,0.250000,0,0);}
.m7_c01109{transform:matrix(0.287652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287652,0.000000,0.000000,0.250000,0,0);}
.m63_c01109{transform:matrix(0.287908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287908,0.000000,0.000000,0.250000,0,0);}
.m40_c01109{transform:matrix(0.288840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288840,0.000000,0.000000,0.250000,0,0);}
.m7f_c01109{transform:matrix(0.289381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289381,0.000000,0.000000,0.250000,0,0);}
.m9b_c01109{transform:matrix(0.289973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289973,0.000000,0.000000,0.250000,0,0);}
.m80_c01109{transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);}
.m27_c01109{transform:matrix(0.290804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290804,0.000000,0.000000,0.250000,0,0);}
.m4_c01109{transform:matrix(0.291517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291517,0.000000,0.000000,0.250000,0,0);}
.m90_c01109{transform:matrix(0.291526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291526,0.000000,0.000000,0.250000,0,0);}
.m62_c01109{transform:matrix(0.291569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291569,0.000000,0.000000,0.250000,0,0);}
.m18_c01109{transform:matrix(0.291747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291747,0.000000,0.000000,0.250000,0,0);}
.m77_c01109{transform:matrix(0.291897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291897,0.000000,0.000000,0.250000,0,0);}
.m54_c01109{transform:matrix(0.293401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293401,0.000000,0.000000,0.250000,0,0);}
.m50_c01109{transform:matrix(0.293422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293422,0.000000,0.000000,0.250000,0,0);}
.m9c_c01109{transform:matrix(0.294292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294292,0.000000,0.000000,0.250000,0,0);}
.m6b_c01109{transform:matrix(0.294506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294506,0.000000,0.000000,0.250000,0,0);}
.m9d_c01109{transform:matrix(0.294735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294735,0.000000,0.000000,0.250000,0,0);}
.m21_c01109{transform:matrix(0.295034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295034,0.000000,0.000000,0.250000,0,0);}
.m7d_c01109{transform:matrix(0.295955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295955,0.000000,0.000000,0.250000,0,0);}
.m15_c01109{transform:matrix(0.296460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296460,0.000000,0.000000,0.250000,0,0);}
.m7c_c01109{transform:matrix(0.298286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298286,0.000000,0.000000,0.250000,0,0);}
.m1d_c01109{transform:matrix(0.298509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298509,0.000000,0.000000,0.250000,0,0);}
.ma4_c01109{transform:matrix(0.299241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299241,0.000000,0.000000,0.250000,0,0);}
.m9e_c01109{transform:matrix(0.299412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299412,0.000000,0.000000,0.250000,0,0);}
.m9_c01109{transform:matrix(0.299577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299577,0.000000,0.000000,0.250000,0,0);}
.m5b_c01109{transform:matrix(0.299648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299648,0.000000,0.000000,0.250000,0,0);}
.m73_c01109{transform:matrix(0.300731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300731,0.000000,0.000000,0.250000,0,0);}
.m6d_c01109{transform:matrix(0.301339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301339,0.000000,0.000000,0.250000,0,0);}
.m45_c01109{transform:matrix(0.302620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302620,0.000000,0.000000,0.250000,0,0);}
.m69_c01109{transform:matrix(0.304866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304866,0.000000,0.000000,0.250000,0,0);}
.m3a_c01109{transform:matrix(0.305166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305166,0.000000,0.000000,0.250000,0,0);}
.m58_c01109{transform:matrix(0.307365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307365,0.000000,0.000000,0.250000,0,0);}
.m26_c01109{transform:matrix(0.309118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309118,0.000000,0.000000,0.250000,0,0);}
.m5e_c01109{transform:matrix(0.309757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309757,0.000000,0.000000,0.250000,0,0);}
.m8_c01109{transform:matrix(0.311264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311264,0.000000,0.000000,0.250000,0,0);}
.m13_c01109{transform:matrix(0.311556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311556,0.000000,0.000000,0.250000,0,0);}
.m8a_c01109{transform:matrix(0.312783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312783,0.000000,0.000000,0.250000,0,0);}
.m53_c01109{transform:matrix(0.312843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312843,0.000000,0.000000,0.250000,0,0);}
.m67_c01109{transform:matrix(0.315511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315511,0.000000,0.000000,0.250000,0,0);}
.m85_c01109{transform:matrix(0.315536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315536,0.000000,0.000000,0.250000,0,0);}
.m56_c01109{transform:matrix(0.315787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315787,0.000000,0.000000,0.250000,0,0);}
.m5f_c01109{transform:matrix(0.316230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316230,0.000000,0.000000,0.250000,0,0);}
.m99_c01109{transform:matrix(0.316827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316827,0.000000,0.000000,0.250000,0,0);}
.m12_c01109{transform:matrix(0.317396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317396,0.000000,0.000000,0.250000,0,0);}
.m34_c01109{transform:matrix(0.318888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318888,0.000000,0.000000,0.250000,0,0);}
.m88_c01109{transform:matrix(0.319620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319620,0.000000,0.000000,0.250000,0,0);}
.ma1_c01109{transform:matrix(0.319863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319863,0.000000,0.000000,0.250000,0,0);}
.m79_c01109{transform:matrix(0.319961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319961,0.000000,0.000000,0.250000,0,0);}
.m4c_c01109{transform:matrix(0.320108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320108,0.000000,0.000000,0.250000,0,0);}
.m46_c01109{transform:matrix(0.320192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320192,0.000000,0.000000,0.250000,0,0);}
.m89_c01109{transform:matrix(0.321340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321340,0.000000,0.000000,0.250000,0,0);}
.m1b_c01109{transform:matrix(0.321791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321791,0.000000,0.000000,0.250000,0,0);}
.m5a_c01109{transform:matrix(0.322214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322214,0.000000,0.000000,0.250000,0,0);}
.m6c_c01109{transform:matrix(0.323272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323272,0.000000,0.000000,0.250000,0,0);}
.m68_c01109{transform:matrix(0.324575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324575,0.000000,0.000000,0.250000,0,0);}
.m7a_c01109{transform:matrix(0.324653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324653,0.000000,0.000000,0.250000,0,0);}
.m4d_c01109{transform:matrix(0.326031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326031,0.000000,0.000000,0.250000,0,0);}
.m38_c01109{transform:matrix(0.326105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326105,0.000000,0.000000,0.250000,0,0);}
.m1c_c01109{transform:matrix(0.326143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326143,0.000000,0.000000,0.250000,0,0);}
.m1e_c01109{transform:matrix(0.326168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326168,0.000000,0.000000,0.250000,0,0);}
.m6_c01109{transform:matrix(0.326905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326905,0.000000,0.000000,0.250000,0,0);}
.m5d_c01109{transform:matrix(0.327929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327929,0.000000,0.000000,0.250000,0,0);}
.m70_c01109{transform:matrix(0.329076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329076,0.000000,0.000000,0.250000,0,0);}
.m19_c01109{transform:matrix(0.331276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331276,0.000000,0.000000,0.250000,0,0);}
.ma0_c01109{transform:matrix(0.334021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334021,0.000000,0.000000,0.250000,0,0);}
.m87_c01109{transform:matrix(0.334341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334341,0.000000,0.000000,0.250000,0,0);}
.m44_c01109{transform:matrix(0.334573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334573,0.000000,0.000000,0.250000,0,0);}
.m3b_c01109{transform:matrix(0.335383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335383,0.000000,0.000000,0.250000,0,0);}
.m9a_c01109{transform:matrix(0.337003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337003,0.000000,0.000000,0.250000,0,0);}
.m82_c01109{transform:matrix(0.338974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338974,0.000000,0.000000,0.250000,0,0);}
.m36_c01109{transform:matrix(0.340342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340342,0.000000,0.000000,0.250000,0,0);}
.m83_c01109{transform:matrix(0.340675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340675,0.000000,0.000000,0.250000,0,0);}
.ma6_c01109{transform:matrix(0.341286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341286,0.000000,0.000000,0.250000,0,0);}
.m8d_c01109{transform:matrix(0.342070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342070,0.000000,0.000000,0.250000,0,0);}
.m8c_c01109{transform:matrix(0.342431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342431,0.000000,0.000000,0.250000,0,0);}
.m81_c01109{transform:matrix(0.344858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344858,0.000000,0.000000,0.250000,0,0);}
.m4e_c01109{transform:matrix(0.345692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345692,0.000000,0.000000,0.250000,0,0);}
.m72_c01109{transform:matrix(0.346806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346806,0.000000,0.000000,0.250000,0,0);}
.m8b_c01109{transform:matrix(0.347098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347098,0.000000,0.000000,0.250000,0,0);}
.m3d_c01109{transform:matrix(0.363001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363001,0.000000,0.000000,0.250000,0,0);}
.m17_c01109{transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);}
.ma_c01109{transform:matrix(0.366569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366569,0.000000,0.000000,0.250000,0,0);}
.mb_c01109{transform:matrix(0.367707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367707,0.000000,0.000000,0.250000,0,0);}
.m93_c01109{transform:matrix(0.371379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371379,0.000000,0.000000,0.250000,0,0);}
.m37_c01109{transform:matrix(0.371455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371455,0.000000,0.000000,0.250000,0,0);}
.m47_c01109{transform:matrix(0.372116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372116,0.000000,0.000000,0.250000,0,0);}
.m59_c01109{transform:matrix(0.373079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373079,0.000000,0.000000,0.250000,0,0);}
.m57_c01109{transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);}
.m6f_c01109{transform:matrix(0.403228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403228,0.000000,0.000000,0.250000,0,0);}
.m39_c01109{transform:matrix(0.403791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403791,0.000000,0.000000,0.250000,0,0);}
.m66_c01109{transform:matrix(0.410101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410101,0.000000,0.000000,0.250000,0,0);}
.m48_c01109{transform:matrix(0.411747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411747,0.000000,0.000000,0.250000,0,0);}
.m98_c01109{transform:matrix(0.425737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425737,0.000000,0.000000,0.250000,0,0);}
.m94_c01109{transform:matrix(0.546071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546071,0.000000,0.000000,0.250000,0,0);}
.m95_c01109{transform:matrix(0.658829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.658829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.658829,0.000000,0.000000,0.250000,0,0);}
.v0_c01109{vertical-align:0.000000px;}
.v1_c01109{vertical-align:4.257000px;}
.ls18_c01109{letter-spacing:-3.215527px;}
.ls13_c01109{letter-spacing:-3.076927px;}
.lsb_c01109{letter-spacing:-2.938327px;}
.ls17_c01109{letter-spacing:-2.882880px;}
.ls29_c01109{letter-spacing:-2.827440px;}
.ls6_c01109{letter-spacing:-2.772000px;}
.ls8_c01109{letter-spacing:-2.619540px;}
.ls9_c01109{letter-spacing:-2.616734px;}
.ls1b_c01109{letter-spacing:-2.584890px;}
.ls1e_c01109{letter-spacing:-2.550240px;}
.ls14_c01109{letter-spacing:-2.453227px;}
.ls25_c01109{letter-spacing:-2.328480px;}
.ls2b_c01109{letter-spacing:-1.718640px;}
.ls2e_c01109{letter-spacing:-1.552320px;}
.ls2a_c01109{letter-spacing:-0.903514px;}
.ls2d_c01109{letter-spacing:-0.515750px;}
.ls2_c01109{letter-spacing:0.000000px;}
.ls0_c01109{letter-spacing:0.476586px;}
.ls2c_c01109{letter-spacing:0.693000px;}
.ls30_c01109{letter-spacing:0.762300px;}
.ls24_c01109{letter-spacing:0.798336px;}
.lsc_c01109{letter-spacing:2.140538px;}
.ls1_c01109{letter-spacing:2.159942px;}
.ls2f_c01109{letter-spacing:2.217600px;}
.lse_c01109{letter-spacing:2.585728px;}
.ls11_c01109{letter-spacing:2.612056px;}
.lsa_c01109{letter-spacing:2.664446px;}
.ls1f_c01109{letter-spacing:2.980930px;}
.ls21_c01109{letter-spacing:3.009600px;}
.ls1c_c01109{letter-spacing:3.484810px;}
.lsf_c01109{letter-spacing:3.524400px;}
.ls22_c01109{letter-spacing:3.573900px;}
.ls23_c01109{letter-spacing:3.593700px;}
.ls26_c01109{letter-spacing:3.623400px;}
.ls27_c01109{letter-spacing:3.722400px;}
.ls3_c01109{letter-spacing:3.742200px;}
.ls19_c01109{letter-spacing:3.762000px;}
.ls1a_c01109{letter-spacing:3.781810px;}
.ls4_c01109{letter-spacing:3.930310px;}
.ls10_c01109{letter-spacing:3.940200px;}
.ls5_c01109{letter-spacing:3.960000px;}
.ls15_c01109{letter-spacing:3.999610px;}
.ls28_c01109{letter-spacing:4.039200px;}
.lsd_c01109{letter-spacing:4.197610px;}
.ls7_c01109{letter-spacing:4.375810px;}
.ls1d_c01109{letter-spacing:59.875398px;}
.ls12_c01109{letter-spacing:61.300998px;}
.ls20_c01109{letter-spacing:62.726400px;}
.ls16_c01109{letter-spacing:64.152198px;}
.sc__c01109{text-shadow:none;}
.sc0_c01109{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01109{-webkit-text-stroke:0px transparent;}
.sc0_c01109{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01109{word-spacing:-18.612000px;}
.ws3_c01109{word-spacing:-14.489798px;}
.ws2_c01109{word-spacing:-12.329856px;}
.ws1_c01109{word-spacing:-0.091397px;}
.ws4_c01109{word-spacing:0.000000px;}
._3_c01109{margin-left:-15.337080px;}
._1_c01109{margin-left:-10.628244px;}
._6_c01109{margin-left:-4.124736px;}
._4_c01109{width:2.978712px;}
._7_c01109{width:7.073154px;}
._2_c01109{width:23.098680px;}
._5_c01109{width:25.536060px;}
._0_c01109{width:88.006196px;}
.fc0_c01109{color:transparent;}
.fs25_c01109{font-size:13.860000px;}
.fs28_c01109{font-size:15.246000px;}
.fs26_c01109{font-size:17.424000px;}
.fs0_c01109{font-size:22.176000px;}
.fs2_c01109{font-size:23.166000px;}
.fs1a_c01109{font-size:27.720000px;}
.fsb_c01109{font-size:28.314000px;}
.fs4_c01109{font-size:34.056198px;}
.fs27_c01109{font-size:44.352000px;}
.fsd_c01109{font-size:44.946198px;}
.fs24_c01109{font-size:49.104000px;}
.fs18_c01109{font-size:59.875398px;}
.fs1e_c01109{font-size:60.192000px;}
.fsc_c01109{font-size:61.300998px;}
.fs29_c01109{font-size:62.568000px;}
.fs1d_c01109{font-size:62.726400px;}
.fs11_c01109{font-size:64.152198px;}
.fs21_c01109{font-size:66.528000px;}
.fs1_c01109{font-size:67.320000px;}
.fs17_c01109{font-size:69.696198px;}
.fsf_c01109{font-size:70.092198px;}
.fs9_c01109{font-size:70.488000px;}
.fs1f_c01109{font-size:71.478000px;}
.fs20_c01109{font-size:71.874000px;}
.fs22_c01109{font-size:72.468000px;}
.fs1b_c01109{font-size:72.864000px;}
.fs16_c01109{font-size:73.854000px;}
.fs23_c01109{font-size:74.448000px;}
.fs3_c01109{font-size:74.844000px;}
.fs14_c01109{font-size:75.240000px;}
.fs15_c01109{font-size:75.636198px;}
.fs5_c01109{font-size:78.606198px;}
.fsa_c01109{font-size:78.804000px;}
.fs6_c01109{font-size:79.200000px;}
.fs10_c01109{font-size:79.992198px;}
.fs1c_c01109{font-size:80.784000px;}
.fs19_c01109{font-size:82.170000px;}
.fs12_c01109{font-size:82.368000px;}
.fs8_c01109{font-size:83.952198px;}
.fs7_c01109{font-size:87.516198px;}
.fse_c01109{font-size:87.912198px;}
.fs13_c01109{font-size:91.872198px;}
.y0_c01109{bottom:0.000000px;}
.y23_c01109{bottom:60.138585px;}
.y1_c01109{bottom:76.500000px;}
.y22_c01109{bottom:124.295535px;}
.y21_c01109{bottom:188.447535px;}
.y20_c01109{bottom:215.533935px;}
.y1f_c01109{bottom:217.310985px;}
.y1e_c01109{bottom:221.236335px;}
.y1d_c01109{bottom:222.305535px;}
.y1c_c01109{bottom:222.661935px;}
.y1b_c01109{bottom:254.376585px;}
.y1a_c01109{bottom:318.177135px;}
.y19_c01109{bottom:382.685535px;}
.y18_c01109{bottom:414.756585px;}
.y17_c01109{bottom:446.832585px;}
.y16_c01109{bottom:478.557135px;}
.y15_c01109{bottom:510.989535px;}
.y14_c01109{bottom:525.240585px;}
.y13_c01109{bottom:538.070985px;}
.y12_c01109{bottom:574.067385px;}
.y11_c01109{bottom:605.791935px;}
.y10_c01109{bottom:669.226185px;}
.yf_c01109{bottom:700.232985px;}
.ye_c01109{bottom:764.746335px;}
.yd_c01109{bottom:792.901935px;}
.yb_c01109{bottom:797.535135px;}
.y2_c01109{bottom:820.696185px;}
.y9_c01109{bottom:828.541935px;}
.ya_c01109{bottom:829.606185px;}
.yc_c01109{bottom:829.967535px;}
.y8_c01109{bottom:893.401785px;}
.y7_c01109{bottom:926.551935px;}
.y6_c01109{bottom:1061.978985px;}
.y5_c01109{bottom:1064.830185px;}
.y4_c01109{bottom:1080.511785px;}
.y3_c01109{bottom:1092.985785px;}
.y24_c01109{bottom:1108.310985px;}
.h27_c01109{height:13.602832px;}
.h2b_c01109{height:15.901102px;}
.h28_c01109{height:18.172688px;}
.h2_c01109{height:23.128875px;}
.h4_c01109{height:24.161414px;}
.h1c_c01109{height:28.911094px;}
.hd_c01109{height:29.530617px;}
.h6_c01109{height:35.519550px;}
.h1a_c01109{height:39.877015px;}
.he_c01109{height:40.826465px;}
.h1f_c01109{height:41.775782px;}
.h13_c01109{height:42.725364px;}
.hf_c01109{height:44.112235px;}
.h29_c01109{height:46.257750px;}
.h26_c01109{height:49.487625px;}
.h2a_c01109{height:50.515542px;}
.h20_c01109{height:59.075156px;}
.h2c_c01109{height:65.256469px;}
.h3_c01109{height:66.070898px;}
.hb_c01109{height:69.180117px;}
.h23_c01109{height:69.386625px;}
.h21_c01109{height:70.151748px;}
.h22_c01109{height:70.540400px;}
.h24_c01109{height:71.123379px;}
.h1d_c01109{height:71.512031px;}
.h19_c01109{height:72.690957px;}
.h25_c01109{height:73.066641px;}
.h11_c01109{height:73.103972px;}
.h5_c01109{height:73.455293px;}
.h16_c01109{height:73.843945px;}
.h17_c01109{height:74.232792px;}
.h18_c01109{height:77.027414px;}
.h7_c01109{height:77.147685px;}
.hc_c01109{height:77.341816px;}
.h8_c01109{height:77.730469px;}
.h12_c01109{height:78.507968px;}
.h1e_c01109{height:79.285078px;}
.h1b_c01109{height:80.645361px;}
.h14_c01109{height:80.839688px;}
.ha_c01109{height:82.394491px;}
.h9_c01109{height:85.892362px;}
.h10_c01109{height:86.281015px;}
.h15_c01109{height:95.819832px;}
.h1_c01109{height:1110.000000px;}
.h0_c01109{height:1263.000000px;}
.w1_c01109{width:775.500000px;}
.w0_c01109{width:892.500000px;}
.x0_c01109{left:0.000000px;}
.x2_c01109{left:50.867835px;}
.x1_c01109{left:58.500000px;}
.x6b_c01109{left:63.742785px;}
.x66_c01109{left:84.809985px;}
.x43_c01109{left:86.389035px;}
.x15_c01109{left:87.621585px;}
.x6_c01109{left:88.740285px;}
.x6c_c01109{left:138.928335px;}
.x44_c01109{left:139.997535px;}
.x1d_c01109{left:141.086535px;}
.x7_c01109{left:142.135935px;}
.x28_c01109{left:143.309085px;}
.x63_c01109{left:161.906235px;}
.x4b_c01109{left:164.891085px;}
.x52_c01109{left:173.088285px;}
.x3e_c01109{left:175.479135px;}
.x10_c01109{left:177.206685px;}
.x16_c01109{left:185.285085px;}
.x11_c01109{left:189.274785px;}
.x6d_c01109{left:193.863435px;}
.x7f_c01109{left:195.452385px;}
.x1e_c01109{left:196.675035px;}
.x45_c01109{left:198.343185px;}
.x8_c01109{left:200.219235px;}
.x33_c01109{left:207.055185px;}
.x12_c01109{left:208.861935px;}
.x29_c01109{left:218.459985px;}
.x17_c01109{left:219.553935px;}
.x4c_c01109{left:220.870635px;}
.x5c_c01109{left:227.261085px;}
.x6f_c01109{left:228.315435px;}
.x55_c01109{left:229.622235px;}
.x4d_c01109{left:230.676585px;}
.x7a_c01109{left:238.502535px;}
.x67_c01109{left:239.571735px;}
.x1f_c01109{left:242.779335px;}
.x64_c01109{left:252.080385px;}
.x46_c01109{left:261.480435px;}
.x9_c01109{left:262.901085px;}
.x4a_c01109{left:264.544485px;}
.x13_c01109{left:265.623585px;}
.x80_c01109{left:271.875435px;}
.x20_c01109{left:276.003735px;}
.x56_c01109{left:284.903835px;}
.x3f_c01109{left:287.012535px;}
.x65_c01109{left:295.056285px;}
.x14_c01109{left:299.828085px;}
.x34_c01109{left:307.564935px;}
.x18_c01109{left:309.099435px;}
.x68_c01109{left:316.410585px;}
.x2a_c01109{left:319.568685px;}
.x57_c01109{left:328.201485px;}
.x4e_c01109{left:330.458685px;}
.x35_c01109{left:332.191185px;}
.x5d_c01109{left:340.467585px;}
.x36_c01109{left:345.699735px;}
.x7b_c01109{left:348.798435px;}
.x21_c01109{left:352.421835px;}
.x58_c01109{left:362.762385px;}
.x47_c01109{left:374.320635px;}
.xa_c01109{left:375.389835px;}
.x37_c01109{left:382.597035px;}
.x5e_c01109{left:384.438435px;}
.x2b_c01109{left:388.428135px;}
.x4f_c01109{left:397.085685px;}
.x38_c01109{left:399.298335px;}
.x2c_c01109{left:407.376735px;}
.x48_c01109{left:418.652835px;}
.xb_c01109{left:419.722035px;}
.x53_c01109{left:428.825085px;}
.x19_c01109{left:430.686285px;}
.x7c_c01109{left:437.942985px;}
.x69_c01109{left:440.655585px;}
.x40_c01109{left:441.997035px;}
.x2d_c01109{left:446.912385px;}
.x81_c01109{left:449.912085px;}
.x70_c01109{left:450.951585px;}
.x50_c01109{left:461.430735px;}
.x39_c01109{left:463.163235px;}
.x5f_c01109{left:472.518735px;}
.x22_c01109{left:474.508635px;}
.x82_c01109{left:483.601785px;}
.x1a_c01109{left:485.007585px;}
.x2e_c01109{left:487.611285px;}
.x74_c01109{left:493.991835px;}
.x3a_c01109{left:495.689685px;}
.x2f_c01109{left:498.867585px;}
.x7d_c01109{left:505.030335px;}
.xc_c01109{left:507.440985px;}
.x3b_c01109{left:516.727185px;}
.x30_c01109{left:518.845785px;}
.x23_c01109{left:520.063485px;}
.x71_c01109{left:527.057835px;}
.x60_c01109{left:529.418985px;}
.x75_c01109{left:535.255035px;}
.x59_c01109{left:538.947735px;}
.x7e_c01109{left:549.664485px;}
.x41_c01109{left:551.095035px;}
.x24_c01109{left:552.164235px;}
.xd_c01109{left:562.356285px;}
.x5a_c01109{left:572.300835px;}
.x1b_c01109{left:574.528335px;}
.x76_c01109{left:579.077385px;}
.x61_c01109{left:583.819485px;}
.xe_c01109{left:586.027185px;}
.x6a_c01109{left:592.972035px;}
.x42_c01109{left:594.461985px;}
.x31_c01109{left:595.912335px;}
.x77_c01109{left:601.753335px;}
.x72_c01109{left:604.396635px;}
.x3c_c01109{left:606.693435px;}
.x78_c01109{left:610.064385px;}
.x1c_c01109{left:629.181285px;}
.x54_c01109{left:637.477485px;}
.x49_c01109{left:641.754285px;}
.x62_c01109{left:648.595185px;}
.x32_c01109{left:652.065135px;}
.x3d_c01109{left:661.613685px;}
.x73_c01109{left:671.969085px;}
.xf_c01109{left:674.359935px;}
.x51_c01109{left:679.255485px;}
.x83_c01109{left:681.032535px;}
.x84_c01109{left:682.210635px;}
.x5b_c01109{left:694.971735px;}
.x27_c01109{left:699.426735px;}
.x3_c01109{left:701.822535px;}
.x4_c01109{left:703.361985px;}
.x5_c01109{left:706.163685px;}
.x25_c01109{left:707.386335px;}
.x79_c01109{left:711.668085px;}
.x6e_c01109{left:715.791435px;}
.x26_c01109{left:718.563435px;}
.x85_c01109{left:776.196285px;}
@media print{
.v0_c01109{vertical-align:0.000000pt;}
.v1_c01109{vertical-align:3.784000pt;}
.ls18_c01109{letter-spacing:-2.858246pt;}
.ls13_c01109{letter-spacing:-2.735046pt;}
.lsb_c01109{letter-spacing:-2.611846pt;}
.ls17_c01109{letter-spacing:-2.562560pt;}
.ls29_c01109{letter-spacing:-2.513280pt;}
.ls6_c01109{letter-spacing:-2.464000pt;}
.ls8_c01109{letter-spacing:-2.328480pt;}
.ls9_c01109{letter-spacing:-2.325986pt;}
.ls1b_c01109{letter-spacing:-2.297680pt;}
.ls1e_c01109{letter-spacing:-2.266880pt;}
.ls14_c01109{letter-spacing:-2.180646pt;}
.ls25_c01109{letter-spacing:-2.069760pt;}
.ls2b_c01109{letter-spacing:-1.527680pt;}
.ls2e_c01109{letter-spacing:-1.379840pt;}
.ls2a_c01109{letter-spacing:-0.803123pt;}
.ls2d_c01109{letter-spacing:-0.458445pt;}
.ls2_c01109{letter-spacing:0.000000pt;}
.ls0_c01109{letter-spacing:0.423632pt;}
.ls2c_c01109{letter-spacing:0.616000pt;}
.ls30_c01109{letter-spacing:0.677600pt;}
.ls24_c01109{letter-spacing:0.709632pt;}
.lsc_c01109{letter-spacing:1.902701pt;}
.ls1_c01109{letter-spacing:1.919949pt;}
.ls2f_c01109{letter-spacing:1.971200pt;}
.lse_c01109{letter-spacing:2.298425pt;}
.ls11_c01109{letter-spacing:2.321827pt;}
.lsa_c01109{letter-spacing:2.368397pt;}
.ls1f_c01109{letter-spacing:2.649715pt;}
.ls21_c01109{letter-spacing:2.675200pt;}
.ls1c_c01109{letter-spacing:3.097609pt;}
.lsf_c01109{letter-spacing:3.132800pt;}
.ls22_c01109{letter-spacing:3.176800pt;}
.ls23_c01109{letter-spacing:3.194400pt;}
.ls26_c01109{letter-spacing:3.220800pt;}
.ls27_c01109{letter-spacing:3.308800pt;}
.ls3_c01109{letter-spacing:3.326400pt;}
.ls19_c01109{letter-spacing:3.344000pt;}
.ls1a_c01109{letter-spacing:3.361609pt;}
.ls4_c01109{letter-spacing:3.493609pt;}
.ls10_c01109{letter-spacing:3.502400pt;}
.ls5_c01109{letter-spacing:3.520000pt;}
.ls15_c01109{letter-spacing:3.555209pt;}
.ls28_c01109{letter-spacing:3.590400pt;}
.lsd_c01109{letter-spacing:3.731209pt;}
.ls7_c01109{letter-spacing:3.889609pt;}
.ls1d_c01109{letter-spacing:53.222576pt;}
.ls12_c01109{letter-spacing:54.489776pt;}
.ls20_c01109{letter-spacing:55.756800pt;}
.ls16_c01109{letter-spacing:57.024176pt;}
.ws0_c01109{word-spacing:-16.544000pt;}
.ws3_c01109{word-spacing:-12.879821pt;}
.ws2_c01109{word-spacing:-10.959872pt;}
.ws1_c01109{word-spacing:-0.081242pt;}
.ws4_c01109{word-spacing:0.000000pt;}
._3_c01109{margin-left:-13.632960pt;}
._1_c01109{margin-left:-9.447328pt;}
._6_c01109{margin-left:-3.666432pt;}
._4_c01109{width:2.647744pt;}
._7_c01109{width:6.287248pt;}
._2_c01109{width:20.532160pt;}
._5_c01109{width:22.698720pt;}
._0_c01109{width:78.227730pt;}
.fs25_c01109{font-size:12.320000pt;}
.fs28_c01109{font-size:13.552000pt;}
.fs26_c01109{font-size:15.488000pt;}
.fs0_c01109{font-size:19.712000pt;}
.fs2_c01109{font-size:20.592000pt;}
.fs1a_c01109{font-size:24.640000pt;}
.fsb_c01109{font-size:25.168000pt;}
.fs4_c01109{font-size:30.272176pt;}
.fs27_c01109{font-size:39.424000pt;}
.fsd_c01109{font-size:39.952176pt;}
.fs24_c01109{font-size:43.648000pt;}
.fs18_c01109{font-size:53.222576pt;}
.fs1e_c01109{font-size:53.504000pt;}
.fsc_c01109{font-size:54.489776pt;}
.fs29_c01109{font-size:55.616000pt;}
.fs1d_c01109{font-size:55.756800pt;}
.fs11_c01109{font-size:57.024176pt;}
.fs21_c01109{font-size:59.136000pt;}
.fs1_c01109{font-size:59.840000pt;}
.fs17_c01109{font-size:61.952176pt;}
.fsf_c01109{font-size:62.304176pt;}
.fs9_c01109{font-size:62.656000pt;}
.fs1f_c01109{font-size:63.536000pt;}
.fs20_c01109{font-size:63.888000pt;}
.fs22_c01109{font-size:64.416000pt;}
.fs1b_c01109{font-size:64.768000pt;}
.fs16_c01109{font-size:65.648000pt;}
.fs23_c01109{font-size:66.176000pt;}
.fs3_c01109{font-size:66.528000pt;}
.fs14_c01109{font-size:66.880000pt;}
.fs15_c01109{font-size:67.232176pt;}
.fs5_c01109{font-size:69.872176pt;}
.fsa_c01109{font-size:70.048000pt;}
.fs6_c01109{font-size:70.400000pt;}
.fs10_c01109{font-size:71.104176pt;}
.fs1c_c01109{font-size:71.808000pt;}
.fs19_c01109{font-size:73.040000pt;}
.fs12_c01109{font-size:73.216000pt;}
.fs8_c01109{font-size:74.624176pt;}
.fs7_c01109{font-size:77.792176pt;}
.fse_c01109{font-size:78.144176pt;}
.fs13_c01109{font-size:81.664176pt;}
.y0_c01109{bottom:0.000000pt;}
.y23_c01109{bottom:53.456520pt;}
.y1_c01109{bottom:68.000000pt;}
.y22_c01109{bottom:110.484920pt;}
.y21_c01109{bottom:167.508920pt;}
.y20_c01109{bottom:191.585720pt;}
.y1f_c01109{bottom:193.165320pt;}
.y1e_c01109{bottom:196.654520pt;}
.y1d_c01109{bottom:197.604920pt;}
.y1c_c01109{bottom:197.921720pt;}
.y1b_c01109{bottom:226.112520pt;}
.y1a_c01109{bottom:282.824120pt;}
.y19_c01109{bottom:340.164920pt;}
.y18_c01109{bottom:368.672520pt;}
.y17_c01109{bottom:397.184520pt;}
.y16_c01109{bottom:425.384120pt;}
.y15_c01109{bottom:454.212920pt;}
.y14_c01109{bottom:466.880520pt;}
.y13_c01109{bottom:478.285320pt;}
.y12_c01109{bottom:510.282120pt;}
.y11_c01109{bottom:538.481720pt;}
.y10_c01109{bottom:594.867720pt;}
.yf_c01109{bottom:622.429320pt;}
.ye_c01109{bottom:679.774520pt;}
.yd_c01109{bottom:704.801720pt;}
.yb_c01109{bottom:708.920120pt;}
.y2_c01109{bottom:729.507720pt;}
.y9_c01109{bottom:736.481720pt;}
.ya_c01109{bottom:737.427720pt;}
.yc_c01109{bottom:737.748920pt;}
.y8_c01109{bottom:794.134920pt;}
.y7_c01109{bottom:823.601720pt;}
.y6_c01109{bottom:943.981320pt;}
.y5_c01109{bottom:946.515720pt;}
.y4_c01109{bottom:960.454920pt;}
.y3_c01109{bottom:971.542920pt;}
.y24_c01109{bottom:985.165320pt;}
.h27_c01109{height:12.091406pt;}
.h2b_c01109{height:14.134313pt;}
.h28_c01109{height:16.153500pt;}
.h2_c01109{height:20.559000pt;}
.h4_c01109{height:21.476813pt;}
.h1c_c01109{height:25.698750pt;}
.hd_c01109{height:26.249438pt;}
.h6_c01109{height:31.572934pt;}
.h1a_c01109{height:35.446236pt;}
.he_c01109{height:36.290191pt;}
.h1f_c01109{height:37.134029pt;}
.h13_c01109{height:37.978101pt;}
.hf_c01109{height:39.210876pt;}
.h29_c01109{height:41.118000pt;}
.h26_c01109{height:43.989000pt;}
.h2a_c01109{height:44.902704pt;}
.h20_c01109{height:52.511250pt;}
.h2c_c01109{height:58.005750pt;}
.h3_c01109{height:58.729688pt;}
.hb_c01109{height:61.493438pt;}
.h23_c01109{height:61.677000pt;}
.h21_c01109{height:62.357109pt;}
.h22_c01109{height:62.702578pt;}
.h24_c01109{height:63.220781pt;}
.h1d_c01109{height:63.566250pt;}
.h19_c01109{height:64.614184pt;}
.h25_c01109{height:64.948125pt;}
.h11_c01109{height:64.981309pt;}
.h5_c01109{height:65.293594pt;}
.h16_c01109{height:65.639063pt;}
.h17_c01109{height:65.984704pt;}
.h18_c01109{height:68.468813pt;}
.h7_c01109{height:68.575720pt;}
.hc_c01109{height:68.748281pt;}
.h8_c01109{height:69.093750pt;}
.h12_c01109{height:69.784860pt;}
.h1e_c01109{height:70.475625pt;}
.h1b_c01109{height:71.684766pt;}
.h14_c01109{height:71.857500pt;}
.ha_c01109{height:73.239548pt;}
.h9_c01109{height:76.348766pt;}
.h10_c01109{height:76.694235pt;}
.h15_c01109{height:85.173184pt;}
.h1_c01109{height:986.666667pt;}
.h0_c01109{height:1122.666667pt;}
.w1_c01109{width:689.333333pt;}
.w0_c01109{width:793.333333pt;}
.x0_c01109{left:0.000000pt;}
.x2_c01109{left:45.215853pt;}
.x1_c01109{left:52.000000pt;}
.x6b_c01109{left:56.660253pt;}
.x66_c01109{left:75.386653pt;}
.x43_c01109{left:76.790253pt;}
.x15_c01109{left:77.885853pt;}
.x6_c01109{left:78.880253pt;}
.x6c_c01109{left:123.491853pt;}
.x44_c01109{left:124.442253pt;}
.x1d_c01109{left:125.410253pt;}
.x7_c01109{left:126.343053pt;}
.x28_c01109{left:127.385853pt;}
.x63_c01109{left:143.916653pt;}
.x4b_c01109{left:146.569853pt;}
.x52_c01109{left:153.856253pt;}
.x3e_c01109{left:155.981453pt;}
.x10_c01109{left:157.517053pt;}
.x16_c01109{left:164.697853pt;}
.x11_c01109{left:168.244253pt;}
.x6d_c01109{left:172.323053pt;}
.x7f_c01109{left:173.735453pt;}
.x1e_c01109{left:174.822253pt;}
.x45_c01109{left:176.305053pt;}
.x8_c01109{left:177.972653pt;}
.x33_c01109{left:184.049053pt;}
.x12_c01109{left:185.655053pt;}
.x29_c01109{left:194.186653pt;}
.x17_c01109{left:195.159053pt;}
.x4c_c01109{left:196.329453pt;}
.x5c_c01109{left:202.009853pt;}
.x6f_c01109{left:202.947053pt;}
.x55_c01109{left:204.108653pt;}
.x4d_c01109{left:205.045853pt;}
.x7a_c01109{left:212.002253pt;}
.x67_c01109{left:212.952653pt;}
.x1f_c01109{left:215.803853pt;}
.x64_c01109{left:224.071453pt;}
.x46_c01109{left:232.427053pt;}
.x9_c01109{left:233.689853pt;}
.x4a_c01109{left:235.150653pt;}
.x13_c01109{left:236.109853pt;}
.x80_c01109{left:241.667053pt;}
.x20_c01109{left:245.336653pt;}
.x56_c01109{left:253.247853pt;}
.x3f_c01109{left:255.122253pt;}
.x65_c01109{left:262.272253pt;}
.x14_c01109{left:266.513853pt;}
.x34_c01109{left:273.391053pt;}
.x18_c01109{left:274.755053pt;}
.x68_c01109{left:281.253853pt;}
.x2a_c01109{left:284.061053pt;}
.x57_c01109{left:291.734653pt;}
.x4e_c01109{left:293.741053pt;}
.x35_c01109{left:295.281053pt;}
.x5d_c01109{left:302.637853pt;}
.x36_c01109{left:307.288653pt;}
.x7b_c01109{left:310.043053pt;}
.x21_c01109{left:313.263853pt;}
.x58_c01109{left:322.455453pt;}
.x47_c01109{left:332.729453pt;}
.xa_c01109{left:333.679853pt;}
.x37_c01109{left:340.086253pt;}
.x5e_c01109{left:341.723053pt;}
.x2b_c01109{left:345.269453pt;}
.x4f_c01109{left:352.965053pt;}
.x38_c01109{left:354.931853pt;}
.x2c_c01109{left:362.112653pt;}
.x48_c01109{left:372.135853pt;}
.xb_c01109{left:373.086253pt;}
.x53_c01109{left:381.177853pt;}
.x19_c01109{left:382.832253pt;}
.x7c_c01109{left:389.282653pt;}
.x69_c01109{left:391.693853pt;}
.x40_c01109{left:392.886253pt;}
.x2d_c01109{left:397.255453pt;}
.x81_c01109{left:399.921853pt;}
.x70_c01109{left:400.845853pt;}
.x50_c01109{left:410.160653pt;}
.x39_c01109{left:411.700653pt;}
.x5f_c01109{left:420.016653pt;}
.x22_c01109{left:421.785453pt;}
.x82_c01109{left:429.868253pt;}
.x1a_c01109{left:431.117853pt;}
.x2e_c01109{left:433.432253pt;}
.x74_c01109{left:439.103853pt;}
.x3a_c01109{left:440.613053pt;}
.x2f_c01109{left:443.437853pt;}
.x7d_c01109{left:448.915853pt;}
.xc_c01109{left:451.058653pt;}
.x3b_c01109{left:459.313053pt;}
.x30_c01109{left:461.196253pt;}
.x23_c01109{left:462.278653pt;}
.x71_c01109{left:468.495853pt;}
.x60_c01109{left:470.594653pt;}
.x75_c01109{left:475.782253pt;}
.x59_c01109{left:479.064653pt;}
.x7e_c01109{left:488.590653pt;}
.x41_c01109{left:489.862253pt;}
.x24_c01109{left:490.812653pt;}
.xd_c01109{left:499.872253pt;}
.x5a_c01109{left:508.711853pt;}
.x1b_c01109{left:510.691853pt;}
.x76_c01109{left:514.735453pt;}
.x61_c01109{left:518.950653pt;}
.xe_c01109{left:520.913053pt;}
.x6a_c01109{left:527.086253pt;}
.x42_c01109{left:528.410653pt;}
.x31_c01109{left:529.699853pt;}
.x77_c01109{left:534.891853pt;}
.x72_c01109{left:537.241453pt;}
.x3c_c01109{left:539.283053pt;}
.x78_c01109{left:542.279453pt;}
.x1c_c01109{left:559.272253pt;}
.x54_c01109{left:566.646653pt;}
.x49_c01109{left:570.448253pt;}
.x62_c01109{left:576.529053pt;}
.x32_c01109{left:579.613453pt;}
.x3d_c01109{left:588.101053pt;}
.x73_c01109{left:597.305853pt;}
.xf_c01109{left:599.431053pt;}
.x51_c01109{left:603.782653pt;}
.x83_c01109{left:605.362253pt;}
.x84_c01109{left:606.409453pt;}
.x5b_c01109{left:617.752653pt;}
.x27_c01109{left:621.712653pt;}
.x3_c01109{left:623.842253pt;}
.x4_c01109{left:625.210653pt;}
.x5_c01109{left:627.701053pt;}
.x25_c01109{left:628.787853pt;}
.x79_c01109{left:632.593853pt;}
.x6e_c01109{left:636.259053pt;}
.x26_c01109{left:638.723053pt;}
.x85_c01109{left:689.952253pt;}
}





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

.ir_c01110:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01110{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01110;src:url('chunks/assets/font_73bb287567e510de0c9d9eb6.woff2')format("woff");}.ff1_c01110{font-family:ff1_c01110;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01110;src:url('chunks/assets/font_76d01a7e03796b0c97e4c8f1.woff2')format("woff");}.ff2_c01110{font-family:ff2_c01110;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01110;src:url('chunks/assets/font_f2ddf3b97505f2e73c0a802c.woff2')format("woff");}.ff3_c01110{font-family:ff3_c01110;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01110;src:url('chunks/assets/font_4796c017e4ab8765574f38eb.woff2')format("woff");}.ff4_c01110{font-family:ff4_c01110;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01110;src:url('chunks/assets/font_e5eea207b75e8f01afdb83e0.woff2')format("woff");}.ff5_c01110{font-family:ff5_c01110;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4c_c01110{transform:matrix(0.040698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040698,0.000000,0.000000,0.250000,0,0);}
.m6e_c01110{transform:matrix(0.091741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091741,0.000000,0.000000,0.250000,0,0);}
.m18_c01110{transform:matrix(0.091876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091876,0.000000,0.000000,0.250000,0,0);}
.ma3_c01110{transform:matrix(0.104475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104475,0.000000,0.000000,0.250000,0,0);}
.m8f_c01110{transform:matrix(0.113638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113638,0.000000,0.000000,0.250000,0,0);}
.m19_c01110{transform:matrix(0.138299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138299,0.000000,0.000000,0.250000,0,0);}
.m4d_c01110{transform:matrix(0.145348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145348,0.000000,0.000000,0.250000,0,0);}
.m8e_c01110{transform:matrix(0.150560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150560,0.000000,0.000000,0.250000,0,0);}
.m6d_c01110{transform:matrix(0.160569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160569,0.000000,0.000000,0.250000,0,0);}
.m5c_c01110{transform:matrix(0.161905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161905,0.000000,0.000000,0.250000,0,0);}
.m4b_c01110{transform:matrix(0.162790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162790,0.000000,0.000000,0.250000,0,0);}
.m16_c01110{transform:matrix(0.176104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176104,0.000000,0.000000,0.250000,0,0);}
.mb_c01110{transform:matrix(0.176841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176841,0.000000,0.000000,0.250000,0,0);}
.m7f_c01110{transform:matrix(0.210850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210850,0.000000,0.000000,0.250000,0,0);}
.m6f_c01110{transform:matrix(0.211144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211144,0.000000,0.000000,0.250000,0,0);}
.m17_c01110{transform:matrix(0.228452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228452,0.000000,0.000000,0.250000,0,0);}
.ma7_c01110{transform:matrix(0.234819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234819,0.000000,0.000000,0.250000,0,0);}
.m7e_c01110{transform:matrix(0.240481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240481,0.000000,0.000000,0.250000,0,0);}
.m20_c01110{transform:matrix(0.245790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245790,0.000000,0.000000,0.250000,0,0);}
.m38_c01110{transform:matrix(0.248050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248050,0.000000,0.000000,0.250000,0,0);}
.m0_c01110{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.ma5_c01110{transform:matrix(0.250431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250431,0.000000,0.000000,0.250000,0,0);}
.m69_c01110{transform:matrix(0.251171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251171,0.000000,0.000000,0.250000,0,0);}
.m45_c01110{transform:matrix(0.253578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253578,0.000000,0.000000,0.250000,0,0);}
.m14_c01110{transform:matrix(0.254335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254335,0.000000,0.000000,0.250000,0,0);}
.m47_c01110{transform:matrix(0.255172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255172,0.000000,0.000000,0.250000,0,0);}
.m1_c01110{transform:matrix(0.255390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255390,0.000000,0.000000,0.250000,0,0);}
.m82_c01110{transform:matrix(0.257724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257724,0.000000,0.000000,0.250000,0,0);}
.ma1_c01110{transform:matrix(0.258203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258203,0.000000,0.000000,0.250000,0,0);}
.m8b_c01110{transform:matrix(0.258616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258616,0.000000,0.000000,0.250000,0,0);}
.m37_c01110{transform:matrix(0.258892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258892,0.000000,0.000000,0.250000,0,0);}
.m52_c01110{transform:matrix(0.259733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259733,0.000000,0.000000,0.250000,0,0);}
.m3d_c01110{transform:matrix(0.259821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259821,0.000000,0.000000,0.250000,0,0);}
.m65_c01110{transform:matrix(0.260344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260344,0.000000,0.000000,0.250000,0,0);}
.m2b_c01110{transform:matrix(0.260540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260540,0.000000,0.000000,0.250000,0,0);}
.m3b_c01110{transform:matrix(0.261667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261667,0.000000,0.000000,0.250000,0,0);}
.m71_c01110{transform:matrix(0.262024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262024,0.000000,0.000000,0.250000,0,0);}
.ma4_c01110{transform:matrix(0.262299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262299,0.000000,0.000000,0.250000,0,0);}
.m41_c01110{transform:matrix(0.262434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262434,0.000000,0.000000,0.250000,0,0);}
.m83_c01110{transform:matrix(0.263725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263725,0.000000,0.000000,0.250000,0,0);}
.mab_c01110{transform:matrix(0.263781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263781,0.000000,0.000000,0.250000,0,0);}
.m11_c01110{transform:matrix(0.265038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265038,0.000000,0.000000,0.250000,0,0);}
.m8_c01110{transform:matrix(0.265206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265206,0.000000,0.000000,0.250000,0,0);}
.m6_c01110{transform:matrix(0.265419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265419,0.000000,0.000000,0.250000,0,0);}
.m5_c01110{transform:matrix(0.266159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266159,0.000000,0.000000,0.250000,0,0);}
.m1b_c01110{transform:matrix(0.266437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266437,0.000000,0.000000,0.250000,0,0);}
.m13_c01110{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.mb0_c01110{transform:matrix(0.268501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268501,0.000000,0.000000,0.250000,0,0);}
.m56_c01110{transform:matrix(0.268944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268944,0.000000,0.000000,0.250000,0,0);}
.m5b_c01110{transform:matrix(0.269468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269468,0.000000,0.000000,0.250000,0,0);}
.m4a_c01110{transform:matrix(0.269960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269960,0.000000,0.000000,0.250000,0,0);}
.m80_c01110{transform:matrix(0.270144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270144,0.000000,0.000000,0.250000,0,0);}
.m55_c01110{transform:matrix(0.271003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271003,0.000000,0.000000,0.250000,0,0);}
.m10_c01110{transform:matrix(0.273584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273584,0.000000,0.000000,0.250000,0,0);}
.m24_c01110{transform:matrix(0.274199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274199,0.000000,0.000000,0.250000,0,0);}
.m12_c01110{transform:matrix(0.274239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274239,0.000000,0.000000,0.250000,0,0);}
.m3f_c01110{transform:matrix(0.274554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274554,0.000000,0.000000,0.250000,0,0);}
.m79_c01110{transform:matrix(0.275843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275843,0.000000,0.000000,0.250000,0,0);}
.m5d_c01110{transform:matrix(0.276214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276214,0.000000,0.000000,0.250000,0,0);}
.mc_c01110{transform:matrix(0.276479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276479,0.000000,0.000000,0.250000,0,0);}
.m15_c01110{transform:matrix(0.277238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277238,0.000000,0.000000,0.250000,0,0);}
.m34_c01110{transform:matrix(0.277310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277310,0.000000,0.000000,0.250000,0,0);}
.m90_c01110{transform:matrix(0.278321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278321,0.000000,0.000000,0.250000,0,0);}
.m68_c01110{transform:matrix(0.279155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279155,0.000000,0.000000,0.250000,0,0);}
.m7c_c01110{transform:matrix(0.279601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279601,0.000000,0.000000,0.250000,0,0);}
.m9b_c01110{transform:matrix(0.279828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279828,0.000000,0.000000,0.250000,0,0);}
.m4e_c01110{transform:matrix(0.280007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280007,0.000000,0.000000,0.250000,0,0);}
.m57_c01110{transform:matrix(0.280682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280682,0.000000,0.000000,0.250000,0,0);}
.m29_c01110{transform:matrix(0.281787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281787,0.000000,0.000000,0.250000,0,0);}
.m50_c01110{transform:matrix(0.282941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282941,0.000000,0.000000,0.250000,0,0);}
.m7d_c01110{transform:matrix(0.283445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283445,0.000000,0.000000,0.250000,0,0);}
.m6b_c01110{transform:matrix(0.283778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283778,0.000000,0.000000,0.250000,0,0);}
.m6c_c01110{transform:matrix(0.283782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283782,0.000000,0.000000,0.250000,0,0);}
.m67_c01110{transform:matrix(0.284278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284278,0.000000,0.000000,0.250000,0,0);}
.mad_c01110{transform:matrix(0.285197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285197,0.000000,0.000000,0.250000,0,0);}
.m9a_c01110{transform:matrix(0.285381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285381,0.000000,0.000000,0.250000,0,0);}
.m75_c01110{transform:matrix(0.285521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285521,0.000000,0.000000,0.250000,0,0);}
.m44_c01110{transform:matrix(0.286158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286158,0.000000,0.000000,0.250000,0,0);}
.m70_c01110{transform:matrix(0.287633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287633,0.000000,0.000000,0.250000,0,0);}
.m36_c01110{transform:matrix(0.287770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287770,0.000000,0.000000,0.250000,0,0);}
.m42_c01110{transform:matrix(0.288145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288145,0.000000,0.000000,0.250000,0,0);}
.mac_c01110{transform:matrix(0.288458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288458,0.000000,0.000000,0.250000,0,0);}
.md_c01110{transform:matrix(0.288605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288605,0.000000,0.000000,0.250000,0,0);}
.ma6_c01110{transform:matrix(0.289090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289090,0.000000,0.000000,0.250000,0,0);}
.m2a_c01110{transform:matrix(0.289204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289204,0.000000,0.000000,0.250000,0,0);}
.maa_c01110{transform:matrix(0.289360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289360,0.000000,0.000000,0.250000,0,0);}
.m98_c01110{transform:matrix(0.289575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289575,0.000000,0.000000,0.250000,0,0);}
.m8a_c01110{transform:matrix(0.289701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289701,0.000000,0.000000,0.250000,0,0);}
.m77_c01110{transform:matrix(0.289759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289759,0.000000,0.000000,0.250000,0,0);}
.m7a_c01110{transform:matrix(0.289918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289918,0.000000,0.000000,0.250000,0,0);}
.me_c01110{transform:matrix(0.290288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290288,0.000000,0.000000,0.250000,0,0);}
.m81_c01110{transform:matrix(0.291184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291184,0.000000,0.000000,0.250000,0,0);}
.m22_c01110{transform:matrix(0.292290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292290,0.000000,0.000000,0.250000,0,0);}
.m53_c01110{transform:matrix(0.292688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292688,0.000000,0.000000,0.250000,0,0);}
.mf_c01110{transform:matrix(0.293101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293101,0.000000,0.000000,0.250000,0,0);}
.m92_c01110{transform:matrix(0.293457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293457,0.000000,0.000000,0.250000,0,0);}
.m7b_c01110{transform:matrix(0.294292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294292,0.000000,0.000000,0.250000,0,0);}
.ma9_c01110{transform:matrix(0.294735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294735,0.000000,0.000000,0.250000,0,0);}
.m40_c01110{transform:matrix(0.295409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295409,0.000000,0.000000,0.250000,0,0);}
.m5e_c01110{transform:matrix(0.295588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295588,0.000000,0.000000,0.250000,0,0);}
.m35_c01110{transform:matrix(0.297267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297267,0.000000,0.000000,0.250000,0,0);}
.ma2_c01110{transform:matrix(0.297688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297688,0.000000,0.000000,0.250000,0,0);}
.m66_c01110{transform:matrix(0.299918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299918,0.000000,0.000000,0.250000,0,0);}
.m84_c01110{transform:matrix(0.300138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300138,0.000000,0.000000,0.250000,0,0);}
.ma_c01110{transform:matrix(0.300160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300160,0.000000,0.000000,0.250000,0,0);}
.m6a_c01110{transform:matrix(0.300312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300312,0.000000,0.000000,0.250000,0,0);}
.m58_c01110{transform:matrix(0.300964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300964,0.000000,0.000000,0.250000,0,0);}
.m54_c01110{transform:matrix(0.301032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301032,0.000000,0.000000,0.250000,0,0);}
.m2_c01110{transform:matrix(0.301116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301116,0.000000,0.000000,0.250000,0,0);}
.m7_c01110{transform:matrix(0.302099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302099,0.000000,0.000000,0.250000,0,0);}
.m1c_c01110{transform:matrix(0.302103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302103,0.000000,0.000000,0.250000,0,0);}
.m3_c01110{transform:matrix(0.302433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302433,0.000000,0.000000,0.250000,0,0);}
.m86_c01110{transform:matrix(0.302559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302559,0.000000,0.000000,0.250000,0,0);}
.m5a_c01110{transform:matrix(0.302729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302729,0.000000,0.000000,0.250000,0,0);}
.m51_c01110{transform:matrix(0.303836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303836,0.000000,0.000000,0.250000,0,0);}
.m23_c01110{transform:matrix(0.305778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305778,0.000000,0.000000,0.250000,0,0);}
.m99_c01110{transform:matrix(0.306620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306620,0.000000,0.000000,0.250000,0,0);}
.m93_c01110{transform:matrix(0.308121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308121,0.000000,0.000000,0.250000,0,0);}
.mb1_c01110{transform:matrix(0.308396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308396,0.000000,0.000000,0.250000,0,0);}
.m73_c01110{transform:matrix(0.308599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308599,0.000000,0.000000,0.250000,0,0);}
.m87_c01110{transform:matrix(0.308862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308862,0.000000,0.000000,0.250000,0,0);}
.m46_c01110{transform:matrix(0.309011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309011,0.000000,0.000000,0.250000,0,0);}
.m49_c01110{transform:matrix(0.309310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309310,0.000000,0.000000,0.250000,0,0);}
.m9e_c01110{transform:matrix(0.310029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310029,0.000000,0.000000,0.250000,0,0);}
.m9_c01110{transform:matrix(0.310191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310191,0.000000,0.000000,0.250000,0,0);}
.m8d_c01110{transform:matrix(0.310246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310246,0.000000,0.000000,0.250000,0,0);}
.m33_c01110{transform:matrix(0.310640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310640,0.000000,0.000000,0.250000,0,0);}
.m85_c01110{transform:matrix(0.310765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310765,0.000000,0.000000,0.250000,0,0);}
.m1e_c01110{transform:matrix(0.310997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310997,0.000000,0.000000,0.250000,0,0);}
.m1f_c01110{transform:matrix(0.311307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311307,0.000000,0.000000,0.250000,0,0);}
.m94_c01110{transform:matrix(0.311651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311651,0.000000,0.000000,0.250000,0,0);}
.m5f_c01110{transform:matrix(0.312015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312015,0.000000,0.000000,0.250000,0,0);}
.m9d_c01110{transform:matrix(0.312283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312283,0.000000,0.000000,0.250000,0,0);}
.m61_c01110{transform:matrix(0.312336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312336,0.000000,0.000000,0.250000,0,0);}
.ma8_c01110{transform:matrix(0.314343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314343,0.000000,0.000000,0.250000,0,0);}
.m78_c01110{transform:matrix(0.316450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316450,0.000000,0.000000,0.250000,0,0);}
.m2f_c01110{transform:matrix(0.316574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316574,0.000000,0.000000,0.250000,0,0);}
.mae_c01110{transform:matrix(0.316909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316909,0.000000,0.000000,0.250000,0,0);}
.m3a_c01110{transform:matrix(0.317929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317929,0.000000,0.000000,0.250000,0,0);}
.m28_c01110{transform:matrix(0.318854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318854,0.000000,0.000000,0.250000,0,0);}
.m1a_c01110{transform:matrix(0.319408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319408,0.000000,0.000000,0.250000,0,0);}
.m89_c01110{transform:matrix(0.319620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319620,0.000000,0.000000,0.250000,0,0);}
.m4_c01110{transform:matrix(0.320118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320118,0.000000,0.000000,0.250000,0,0);}
.m31_c01110{transform:matrix(0.320296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320296,0.000000,0.000000,0.250000,0,0);}
.m64_c01110{transform:matrix(0.321067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321067,0.000000,0.000000,0.250000,0,0);}
.ma0_c01110{transform:matrix(0.322218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322218,0.000000,0.000000,0.250000,0,0);}
.m2c_c01110{transform:matrix(0.322582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322582,0.000000,0.000000,0.250000,0,0);}
.m30_c01110{transform:matrix(0.323272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323272,0.000000,0.000000,0.250000,0,0);}
.m96_c01110{transform:matrix(0.327587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327587,0.000000,0.000000,0.250000,0,0);}
.maf_c01110{transform:matrix(0.330144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330144,0.000000,0.000000,0.250000,0,0);}
.m60_c01110{transform:matrix(0.331827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331827,0.000000,0.000000,0.250000,0,0);}
.m4f_c01110{transform:matrix(0.332124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332124,0.000000,0.000000,0.250000,0,0);}
.m9f_c01110{transform:matrix(0.332151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332151,0.000000,0.000000,0.250000,0,0);}
.m2d_c01110{transform:matrix(0.332414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332414,0.000000,0.000000,0.250000,0,0);}
.m63_c01110{transform:matrix(0.335924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335924,0.000000,0.000000,0.250000,0,0);}
.m21_c01110{transform:matrix(0.337003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337003,0.000000,0.000000,0.250000,0,0);}
.m26_c01110{transform:matrix(0.337802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337802,0.000000,0.000000,0.250000,0,0);}
.m9c_c01110{transform:matrix(0.337855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337855,0.000000,0.000000,0.250000,0,0);}
.m8c_c01110{transform:matrix(0.338618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338618,0.000000,0.000000,0.250000,0,0);}
.m62_c01110{transform:matrix(0.338643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338643,0.000000,0.000000,0.250000,0,0);}
.m95_c01110{transform:matrix(0.342651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342651,0.000000,0.000000,0.250000,0,0);}
.m3c_c01110{transform:matrix(0.344065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344065,0.000000,0.000000,0.250000,0,0);}
.m25_c01110{transform:matrix(0.346926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346926,0.000000,0.000000,0.250000,0,0);}
.m43_c01110{transform:matrix(0.347314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347314,0.000000,0.000000,0.250000,0,0);}
.m39_c01110{transform:matrix(0.348174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348174,0.000000,0.000000,0.250000,0,0);}
.m3e_c01110{transform:matrix(0.349091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349091,0.000000,0.000000,0.250000,0,0);}
.m32_c01110{transform:matrix(0.360922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360922,0.000000,0.000000,0.250000,0,0);}
.m74_c01110{transform:matrix(0.363710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363710,0.000000,0.000000,0.250000,0,0);}
.m91_c01110{transform:matrix(0.363790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363790,0.000000,0.000000,0.250000,0,0);}
.m88_c01110{transform:matrix(0.365400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365400,0.000000,0.000000,0.250000,0,0);}
.m97_c01110{transform:matrix(0.366991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366991,0.000000,0.000000,0.250000,0,0);}
.m48_c01110{transform:matrix(0.369571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369571,0.000000,0.000000,0.250000,0,0);}
.m1d_c01110{transform:matrix(0.374366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374366,0.000000,0.000000,0.250000,0,0);}
.m72_c01110{transform:matrix(0.376812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376812,0.000000,0.000000,0.250000,0,0);}
.m2e_c01110{transform:matrix(0.381120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381120,0.000000,0.000000,0.250000,0,0);}
.m59_c01110{transform:matrix(0.403791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403791,0.000000,0.000000,0.250000,0,0);}
.m76_c01110{transform:matrix(0.416409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416409,0.000000,0.000000,0.250000,0,0);}
.m27_c01110{transform:matrix(0.443996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443996,0.000000,0.000000,0.250000,0,0);}
.v2_c01110{vertical-align:-17.107200px;}
.v3_c01110{vertical-align:-7.147800px;}
.v1_c01110{vertical-align:-5.688540px;}
.v0_c01110{vertical-align:0.000000px;}
.lsd_c01110{letter-spacing:-3.659040px;}
.ls24_c01110{letter-spacing:-2.661127px;}
.ls22_c01110{letter-spacing:-2.633400px;}
.ls16_c01110{letter-spacing:-2.619540px;}
.lse_c01110{letter-spacing:-2.494800px;}
.ls10_c01110{letter-spacing:-2.439367px;}
.ls1b_c01110{letter-spacing:-2.380039px;}
.ls2a_c01110{letter-spacing:-1.794870px;}
.ls1a_c01110{letter-spacing:-1.766318px;}
.ls25_c01110{letter-spacing:-1.466942px;}
.ls12_c01110{letter-spacing:-1.325534px;}
.ls2_c01110{letter-spacing:0.000000px;}
.ls1_c01110{letter-spacing:0.628690px;}
.ls1c_c01110{letter-spacing:0.850450px;}
.ls23_c01110{letter-spacing:1.279080px;}
.ls8_c01110{letter-spacing:1.339708px;}
.ls28_c01110{letter-spacing:2.020788px;}
.ls11_c01110{letter-spacing:2.656962px;}
.ls1f_c01110{letter-spacing:2.732400px;}
.ls29_c01110{letter-spacing:2.989810px;}
.ls20_c01110{letter-spacing:3.326400px;}
.ls18_c01110{letter-spacing:3.484810px;}
.ls9_c01110{letter-spacing:3.588948px;}
.ls17_c01110{letter-spacing:3.603610px;}
.ls19_c01110{letter-spacing:3.643200px;}
.ls14_c01110{letter-spacing:3.702610px;}
.ls13_c01110{letter-spacing:3.722400px;}
.ls5_c01110{letter-spacing:3.742200px;}
.ls6_c01110{letter-spacing:3.752110px;}
.lsa_c01110{letter-spacing:3.762000px;}
.lsb_c01110{letter-spacing:3.920400px;}
.ls1e_c01110{letter-spacing:3.960000px;}
.lsc_c01110{letter-spacing:4.039200px;}
.ls15_c01110{letter-spacing:4.078810px;}
.ls4_c01110{letter-spacing:4.088700px;}
.ls3_c01110{letter-spacing:4.296610px;}
.ls0_c01110{letter-spacing:6.735960px;}
.ls27_c01110{letter-spacing:31.363200px;}
.ls21_c01110{letter-spacing:58.449798px;}
.ls1d_c01110{letter-spacing:59.875398px;}
.ls7_c01110{letter-spacing:61.300998px;}
.lsf_c01110{letter-spacing:67.003200px;}
.ls26_c01110{letter-spacing:72.705798px;}
.sc__c01110{text-shadow:none;}
.sc0_c01110{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01110{-webkit-text-stroke:0px transparent;}
.sc0_c01110{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c01110{word-spacing:-20.443500px;}
.ws0_c01110{word-spacing:-19.339690px;}
.ws2_c01110{word-spacing:-18.810000px;}
.ws1_c01110{word-spacing:-17.187515px;}
.ws3_c01110{word-spacing:-13.662000px;}
.ws4_c01110{word-spacing:-4.094640px;}
.ws6_c01110{word-spacing:0.000000px;}
._7_c01110{margin-left:-7.593696px;}
._8_c01110{margin-left:-4.116420px;}
._5_c01110{margin-left:-1.584792px;}
._2_c01110{width:1.128600px;}
._1_c01110{width:2.754697px;}
._0_c01110{width:11.260339px;}
._9_c01110{width:25.594668px;}
._6_c01110{width:40.053024px;}
._4_c01110{width:455.357232px;}
._3_c01110{width:460.388016px;}
.fc0_c01110{color:transparent;}
.fs0_c01110{font-size:22.176000px;}
.fs2_c01110{font-size:22.572000px;}
.fs13_c01110{font-size:27.720000px;}
.fs17_c01110{font-size:28.314000px;}
.fs21_c01110{font-size:31.363200px;}
.fs1a_c01110{font-size:34.056198px;}
.fsf_c01110{font-size:40.392000px;}
.fs14_c01110{font-size:48.114000px;}
.fs23_c01110{font-size:50.688000px;}
.fs24_c01110{font-size:51.282000px;}
.fs1c_c01110{font-size:54.648000px;}
.fs19_c01110{font-size:56.628000px;}
.fs1e_c01110{font-size:58.449798px;}
.fs22_c01110{font-size:59.796198px;}
.fs1b_c01110{font-size:59.875398px;}
.fs6_c01110{font-size:61.300998px;}
.fs1d_c01110{font-size:66.528000px;}
.fsc_c01110{font-size:67.003200px;}
.fse_c01110{font-size:69.696198px;}
.fsd_c01110{font-size:70.092198px;}
.fsb_c01110{font-size:71.280000px;}
.fs15_c01110{font-size:72.072198px;}
.fs20_c01110{font-size:72.705798px;}
.fs16_c01110{font-size:72.864000px;}
.fs10_c01110{font-size:74.052198px;}
.fs11_c01110{font-size:74.448000px;}
.fs4_c01110{font-size:74.844000px;}
.fs5_c01110{font-size:75.042198px;}
.fs7_c01110{font-size:75.240000px;}
.fs1f_c01110{font-size:76.032198px;}
.fs8_c01110{font-size:78.408000px;}
.fs18_c01110{font-size:79.200000px;}
.fs9_c01110{font-size:80.784000px;}
.fs12_c01110{font-size:81.576198px;}
.fs3_c01110{font-size:81.774000px;}
.fs1_c01110{font-size:85.932198px;}
.fsa_c01110{font-size:104.544000px;}
.y0_c01110{bottom:0.000000px;}
.y2d_c01110{bottom:62.633385px;}
.y1_c01110{bottom:76.500000px;}
.y2_c01110{bottom:91.863135px;}
.y2c_c01110{bottom:127.859535px;}
.y2b_c01110{bottom:161.717535px;}
.y2a_c01110{bottom:193.432185px;}
.y27_c01110{bottom:259.371135px;}
.y29_c01110{bottom:260.796735px;}
.y28_c01110{bottom:275.052735px;}
.y26_c01110{bottom:290.729385px;}
.y25_c01110{bottom:322.805385px;}
.y24_c01110{bottom:341.699535px;}
.y23_c01110{bottom:353.099385px;}
.y22_c01110{bottom:354.529935px;}
.y21_c01110{bottom:354.886335px;}
.y20_c01110{bottom:386.962335px;}
.y1f_c01110{bottom:419.038335px;}
.y1e_c01110{bottom:450.396585px;}
.y1d_c01110{bottom:482.833935px;}
.y1b_c01110{bottom:483.185385px;}
.y1c_c01110{bottom:514.909935px;}
.y1a_c01110{bottom:515.622735px;}
.y19_c01110{bottom:540.209385px;}
.y18_c01110{bottom:546.624585px;}
.y17_c01110{bottom:547.693785px;}
.y16_c01110{bottom:564.805935px;}
.y15_c01110{bottom:579.056985px;}
.y14_c01110{bottom:604.009935px;}
.y13_c01110{bottom:604.361385px;}
.y12_c01110{bottom:611.137935px;}
.y11_c01110{bottom:640.362735px;}
.y10_c01110{bottom:643.208985px;}
.yf_c01110{bottom:666.379935px;}
.ye_c01110{bottom:670.656735px;}
.yd_c01110{bottom:707.004585px;}
.yc_c01110{bottom:738.729135px;}
.yb_c01110{bottom:770.800185px;}
.y9_c01110{bottom:803.232585px;}
.ya_c01110{bottom:804.658185px;}
.y8_c01110{bottom:834.239385px;}
.y7_c01110{bottom:866.676735px;}
.y6_c01110{bottom:898.391385px;}
.y5_c01110{bottom:931.541535px;}
.y4_c01110{bottom:992.842335px;}
.y3_c01110{bottom:1069.819785px;}
.h23_c01110{height:20.887891px;}
.h2_c01110{height:23.128875px;}
.h4_c01110{height:23.541891px;}
.h14_c01110{height:28.911094px;}
.h1b_c01110{height:35.519550px;}
.h20_c01110{height:38.927565px;}
.h1c_c01110{height:39.877015px;}
.h8_c01110{height:40.826465px;}
.he_c01110{height:44.624131px;}
.h15_c01110{height:47.221260px;}
.h22_c01110{height:48.422061px;}
.h25_c01110{height:52.866000px;}
.h26_c01110{height:53.485523px;}
.h1e_c01110{height:53.634023px;}
.h1a_c01110{height:59.061234px;}
.h24_c01110{height:62.365566px;}
.h10_c01110{height:68.403007px;}
.h1f_c01110{height:69.386625px;}
.h16_c01110{height:70.734921px;}
.h18_c01110{height:71.512031px;}
.h11_c01110{height:72.678183px;}
.h17_c01110{height:72.690957px;}
.h12_c01110{height:73.066641px;}
.hf_c01110{height:73.103972px;}
.h6_c01110{height:73.455293px;}
.h7_c01110{height:73.649813px;}
.h9_c01110{height:73.843945px;}
.hd_c01110{height:74.342813px;}
.h21_c01110{height:74.621444px;}
.ha_c01110{height:76.953164px;}
.h1d_c01110{height:77.730469px;}
.hb_c01110{height:79.285078px;}
.h13_c01110{height:80.062577px;}
.h5_c01110{height:80.256709px;}
.h19_c01110{height:82.603125px;}
.h3_c01110{height:84.295794px;}
.h27_c01110{height:84.337753px;}
.hc_c01110{height:109.036125px;}
.h1_c01110{height:1110.000000px;}
.h0_c01110{height:1263.000000px;}
.w1_c01110{width:775.500000px;}
.w0_c01110{width:892.500000px;}
.x0_c01110{left:0.000000px;}
.x2_c01110{left:50.511435px;}
.x1_c01110{left:58.500000px;}
.x75_c01110{left:84.097185px;}
.x32_c01110{left:86.596935px;}
.x72_c01110{left:137.576985px;}
.x6d_c01110{left:138.740235px;}
.x15_c01110{left:140.012385px;}
.x21_c01110{left:141.145935px;}
.x5_c01110{left:142.249785px;}
.x67_c01110{left:172.385385px;}
.x33_c01110{left:175.048485px;}
.x2f_c01110{left:176.439435px;}
.x6e_c01110{left:183.676335px;}
.xf_c01110{left:186.032535px;}
.x2d_c01110{left:197.516535px;}
.x68_c01110{left:206.263185px;}
.x49_c01110{left:207.490785px;}
.x6_c01110{left:208.505535px;}
.x3a_c01110{left:218.420385px;}
.x30_c01110{left:220.029135px;}
.x76_c01110{left:226.904685px;}
.x6f_c01110{left:228.107535px;}
.x41_c01110{left:229.666785px;}
.x1c_c01110{left:230.938935px;}
.x56_c01110{left:239.987535px;}
.x78_c01110{left:249.615285px;}
.x40_c01110{left:251.758635px;}
.x22_c01110{left:252.986235px;}
.x51_c01110{left:260.520135px;}
.x42_c01110{left:262.609035px;}
.x1d_c01110{left:264.529635px;}
.x57_c01110{left:272.711985px;}
.x16_c01110{left:286.487835px;}
.x79_c01110{left:293.878185px;}
.x7_c01110{left:296.838285px;}
.x58_c01110{left:307.599585px;}
.x34_c01110{left:310.732935px;}
.x5c_c01110{left:312.925785px;}
.x5d_c01110{left:317.915385px;}
.x8_c01110{left:318.925185px;}
.x26_c01110{left:320.142885px;}
.x3f_c01110{left:322.711935px;}
.x4a_c01110{left:328.547985px;}
.x10_c01110{left:330.339885px;}
.x5e_c01110{left:340.502235px;}
.x70_c01110{left:349.580535px;}
.x23_c01110{left:351.837735px;}
.x1e_c01110{left:353.327685px;}
.x3b_c01110{left:361.371435px;}
.x27_c01110{left:363.222735px;}
.x5f_c01110{left:371.315985px;}
.x11_c01110{left:374.483985px;}
.x69_c01110{left:383.280135px;}
.x43_c01110{left:385.047285px;}
.x9_c01110{left:386.349135px;}
.x28_c01110{left:388.522185px;}
.x7a_c01110{left:394.120635px;}
.x59_c01110{left:396.041235px;}
.x29_c01110{left:397.486635px;}
.x4b_c01110{left:403.733535px;}
.x60_c01110{left:406.307535px;}
.x17_c01110{left:408.317235px;}
.x6a_c01110{left:417.123285px;}
.x35_c01110{left:418.420185px;}
.x12_c01110{left:429.344835px;}
.xa_c01110{left:431.572335px;}
.x46_c01110{left:439.076535px;}
.x4c_c01110{left:440.106135px;}
.x31_c01110{left:442.170285px;}
.x45_c01110{left:443.496885px;}
.x47_c01110{left:445.150185px;}
.x61_c01110{left:450.743685px;}
.x4d_c01110{left:452.000985px;}
.x52_c01110{left:460.415985px;}
.x24_c01110{left:462.133635px;}
.x36_c01110{left:464.088885px;}
.x64_c01110{left:471.820785px;}
.x18_c01110{left:474.860085px;}
.x5a_c01110{left:484.131435px;}
.x3c_c01110{left:494.199735px;}
.x2a_c01110{left:495.709485px;}
.x37_c01110{left:496.946985px;}
.x62_c01110{left:506.213385px;}
.x4_c01110{left:507.361785px;}
.xb_c01110{left:508.668585px;}
.x53_c01110{left:515.999535px;}
.x13_c01110{left:518.142885px;}
.x2b_c01110{left:519.395235px;}
.x77_c01110{left:543.912585px;}
.x25_c01110{left:550.570335px;}
.x19_c01110{left:551.585085px;}
.x65_c01110{left:560.782185px;}
.xc_c01110{left:561.999885px;}
.x38_c01110{left:574.043235px;}
.x44_c01110{left:582.230535px;}
.x2c_c01110{left:583.735335px;}
.xd_c01110{left:585.700485px;}
.x66_c01110{left:594.204585px;}
.x48_c01110{left:595.273785px;}
.x71_c01110{left:603.624435px;}
.x2e_c01110{left:605.985585px;}
.x4e_c01110{left:615.029235px;}
.x14_c01110{left:618.806085px;}
.x1a_c01110{left:627.458685px;}
.x5b_c01110{left:636.814185px;}
.x6b_c01110{left:637.873485px;}
.x1f_c01110{left:639.284235px;}
.x73_c01110{left:646.184535px;}
.x4f_c01110{left:648.907035px;}
.xe_c01110{left:650.144535px;}
.x3d_c01110{left:660.039585px;}
.x20_c01110{left:662.247285px;}
.x54_c01110{left:670.682085px;}
.x39_c01110{left:672.330435px;}
.x3e_c01110{left:683.052135px;}
.x1b_c01110{left:689.358435px;}
.x55_c01110{left:694.912335px;}
.x74_c01110{left:698.743635px;}
.x7b_c01110{left:700.203885px;}
.x3_c01110{left:704.772735px;}
.x50_c01110{left:706.549785px;}
.x63_c01110{left:716.459685px;}
.x6c_c01110{left:737.081385px;}
@media print{
.v2_c01110{vertical-align:-15.206400pt;}
.v3_c01110{vertical-align:-6.353600pt;}
.v1_c01110{vertical-align:-5.056480pt;}
.v0_c01110{vertical-align:0.000000pt;}
.lsd_c01110{letter-spacing:-3.252480pt;}
.ls24_c01110{letter-spacing:-2.365446pt;}
.ls22_c01110{letter-spacing:-2.340800pt;}
.ls16_c01110{letter-spacing:-2.328480pt;}
.lse_c01110{letter-spacing:-2.217600pt;}
.ls10_c01110{letter-spacing:-2.168326pt;}
.ls1b_c01110{letter-spacing:-2.115590pt;}
.ls2a_c01110{letter-spacing:-1.595440pt;}
.ls1a_c01110{letter-spacing:-1.570061pt;}
.ls25_c01110{letter-spacing:-1.303949pt;}
.ls12_c01110{letter-spacing:-1.178253pt;}
.ls2_c01110{letter-spacing:0.000000pt;}
.ls1_c01110{letter-spacing:0.558835pt;}
.ls1c_c01110{letter-spacing:0.755955pt;}
.ls23_c01110{letter-spacing:1.136960pt;}
.ls8_c01110{letter-spacing:1.190851pt;}
.ls28_c01110{letter-spacing:1.796256pt;}
.ls11_c01110{letter-spacing:2.361744pt;}
.ls1f_c01110{letter-spacing:2.428800pt;}
.ls29_c01110{letter-spacing:2.657609pt;}
.ls20_c01110{letter-spacing:2.956800pt;}
.ls18_c01110{letter-spacing:3.097609pt;}
.ls9_c01110{letter-spacing:3.190176pt;}
.ls17_c01110{letter-spacing:3.203209pt;}
.ls19_c01110{letter-spacing:3.238400pt;}
.ls14_c01110{letter-spacing:3.291209pt;}
.ls13_c01110{letter-spacing:3.308800pt;}
.ls5_c01110{letter-spacing:3.326400pt;}
.ls6_c01110{letter-spacing:3.335209pt;}
.lsa_c01110{letter-spacing:3.344000pt;}
.lsb_c01110{letter-spacing:3.484800pt;}
.ls1e_c01110{letter-spacing:3.520000pt;}
.lsc_c01110{letter-spacing:3.590400pt;}
.ls15_c01110{letter-spacing:3.625609pt;}
.ls4_c01110{letter-spacing:3.634400pt;}
.ls3_c01110{letter-spacing:3.819209pt;}
.ls0_c01110{letter-spacing:5.987520pt;}
.ls27_c01110{letter-spacing:27.878400pt;}
.ls21_c01110{letter-spacing:51.955376pt;}
.ls1d_c01110{letter-spacing:53.222576pt;}
.ls7_c01110{letter-spacing:54.489776pt;}
.lsf_c01110{letter-spacing:59.558400pt;}
.ls26_c01110{letter-spacing:64.627376pt;}
.ws5_c01110{word-spacing:-18.172000pt;}
.ws0_c01110{word-spacing:-17.190835pt;}
.ws2_c01110{word-spacing:-16.720000pt;}
.ws1_c01110{word-spacing:-15.277791pt;}
.ws3_c01110{word-spacing:-12.144000pt;}
.ws4_c01110{word-spacing:-3.639680pt;}
.ws6_c01110{word-spacing:0.000000pt;}
._7_c01110{margin-left:-6.749952pt;}
._8_c01110{margin-left:-3.659040pt;}
._5_c01110{margin-left:-1.408704pt;}
._2_c01110{width:1.003200pt;}
._1_c01110{width:2.448619pt;}
._0_c01110{width:10.009190pt;}
._9_c01110{width:22.750816pt;}
._6_c01110{width:35.602688pt;}
._4_c01110{width:404.761984pt;}
._3_c01110{width:409.233792pt;}
.fs0_c01110{font-size:19.712000pt;}
.fs2_c01110{font-size:20.064000pt;}
.fs13_c01110{font-size:24.640000pt;}
.fs17_c01110{font-size:25.168000pt;}
.fs21_c01110{font-size:27.878400pt;}
.fs1a_c01110{font-size:30.272176pt;}
.fsf_c01110{font-size:35.904000pt;}
.fs14_c01110{font-size:42.768000pt;}
.fs23_c01110{font-size:45.056000pt;}
.fs24_c01110{font-size:45.584000pt;}
.fs1c_c01110{font-size:48.576000pt;}
.fs19_c01110{font-size:50.336000pt;}
.fs1e_c01110{font-size:51.955376pt;}
.fs22_c01110{font-size:53.152176pt;}
.fs1b_c01110{font-size:53.222576pt;}
.fs6_c01110{font-size:54.489776pt;}
.fs1d_c01110{font-size:59.136000pt;}
.fsc_c01110{font-size:59.558400pt;}
.fse_c01110{font-size:61.952176pt;}
.fsd_c01110{font-size:62.304176pt;}
.fsb_c01110{font-size:63.360000pt;}
.fs15_c01110{font-size:64.064176pt;}
.fs20_c01110{font-size:64.627376pt;}
.fs16_c01110{font-size:64.768000pt;}
.fs10_c01110{font-size:65.824176pt;}
.fs11_c01110{font-size:66.176000pt;}
.fs4_c01110{font-size:66.528000pt;}
.fs5_c01110{font-size:66.704176pt;}
.fs7_c01110{font-size:66.880000pt;}
.fs1f_c01110{font-size:67.584176pt;}
.fs8_c01110{font-size:69.696000pt;}
.fs18_c01110{font-size:70.400000pt;}
.fs9_c01110{font-size:71.808000pt;}
.fs12_c01110{font-size:72.512176pt;}
.fs3_c01110{font-size:72.688000pt;}
.fs1_c01110{font-size:76.384176pt;}
.fsa_c01110{font-size:92.928000pt;}
.y0_c01110{bottom:0.000000pt;}
.y2d_c01110{bottom:55.674120pt;}
.y1_c01110{bottom:68.000000pt;}
.y2_c01110{bottom:81.656120pt;}
.y2c_c01110{bottom:113.652920pt;}
.y2b_c01110{bottom:143.748920pt;}
.y2a_c01110{bottom:171.939720pt;}
.y27_c01110{bottom:230.552120pt;}
.y29_c01110{bottom:231.819320pt;}
.y28_c01110{bottom:244.491320pt;}
.y26_c01110{bottom:258.426120pt;}
.y25_c01110{bottom:286.938120pt;}
.y24_c01110{bottom:303.732920pt;}
.y23_c01110{bottom:313.866120pt;}
.y22_c01110{bottom:315.137720pt;}
.y21_c01110{bottom:315.454520pt;}
.y20_c01110{bottom:343.966520pt;}
.y1f_c01110{bottom:372.478520pt;}
.y1e_c01110{bottom:400.352520pt;}
.y1d_c01110{bottom:429.185720pt;}
.y1b_c01110{bottom:429.498120pt;}
.y1c_c01110{bottom:457.697720pt;}
.y1a_c01110{bottom:458.331320pt;}
.y19_c01110{bottom:480.186120pt;}
.y18_c01110{bottom:485.888520pt;}
.y17_c01110{bottom:486.838920pt;}
.y16_c01110{bottom:502.049720pt;}
.y15_c01110{bottom:514.717320pt;}
.y14_c01110{bottom:536.897720pt;}
.y13_c01110{bottom:537.210120pt;}
.y12_c01110{bottom:543.233720pt;}
.y11_c01110{bottom:569.211320pt;}
.y10_c01110{bottom:571.741320pt;}
.yf_c01110{bottom:592.337720pt;}
.ye_c01110{bottom:596.139320pt;}
.yd_c01110{bottom:628.448520pt;}
.yc_c01110{bottom:656.648120pt;}
.yb_c01110{bottom:685.155720pt;}
.y9_c01110{bottom:713.984520pt;}
.ya_c01110{bottom:715.251720pt;}
.y8_c01110{bottom:741.546120pt;}
.y7_c01110{bottom:770.379320pt;}
.y6_c01110{bottom:798.570120pt;}
.y5_c01110{bottom:828.036920pt;}
.y4_c01110{bottom:882.526520pt;}
.y3_c01110{bottom:950.950920pt;}
.h23_c01110{height:18.567014pt;}
.h2_c01110{height:20.559000pt;}
.h4_c01110{height:20.926125pt;}
.h14_c01110{height:25.698750pt;}
.h1b_c01110{height:31.572934pt;}
.h20_c01110{height:34.602280pt;}
.h1c_c01110{height:35.446236pt;}
.h8_c01110{height:36.290191pt;}
.he_c01110{height:39.665894pt;}
.h15_c01110{height:41.974453pt;}
.h22_c01110{height:43.041832pt;}
.h25_c01110{height:46.992000pt;}
.h26_c01110{height:47.542688pt;}
.h1e_c01110{height:47.674688pt;}
.h1a_c01110{height:52.498875pt;}
.h24_c01110{height:55.436059pt;}
.h10_c01110{height:60.802673pt;}
.h1f_c01110{height:61.677000pt;}
.h16_c01110{height:62.875485pt;}
.h18_c01110{height:63.566250pt;}
.h11_c01110{height:64.602829pt;}
.h17_c01110{height:64.614184pt;}
.h12_c01110{height:64.948125pt;}
.hf_c01110{height:64.981309pt;}
.h6_c01110{height:65.293594pt;}
.h7_c01110{height:65.466501pt;}
.h9_c01110{height:65.639063pt;}
.hd_c01110{height:66.082500pt;}
.h21_c01110{height:66.330173pt;}
.ha_c01110{height:68.402813pt;}
.h1d_c01110{height:69.093750pt;}
.hb_c01110{height:70.475625pt;}
.h13_c01110{height:71.166735pt;}
.h5_c01110{height:71.339297pt;}
.h19_c01110{height:73.425000pt;}
.h3_c01110{height:74.929595pt;}
.h27_c01110{height:74.966891pt;}
.hc_c01110{height:96.921000pt;}
.h1_c01110{height:986.666667pt;}
.h0_c01110{height:1122.666667pt;}
.w1_c01110{width:689.333333pt;}
.w0_c01110{width:793.333333pt;}
.x0_c01110{left:0.000000pt;}
.x2_c01110{left:44.899053pt;}
.x1_c01110{left:52.000000pt;}
.x75_c01110{left:74.753053pt;}
.x32_c01110{left:76.975053pt;}
.x72_c01110{left:122.290653pt;}
.x6d_c01110{left:123.324653pt;}
.x15_c01110{left:124.455453pt;}
.x21_c01110{left:125.463053pt;}
.x5_c01110{left:126.444253pt;}
.x67_c01110{left:153.231453pt;}
.x33_c01110{left:155.598653pt;}
.x2f_c01110{left:156.835053pt;}
.x6e_c01110{left:163.267853pt;}
.xf_c01110{left:165.362253pt;}
.x2d_c01110{left:175.570253pt;}
.x68_c01110{left:183.345053pt;}
.x49_c01110{left:184.436253pt;}
.x6_c01110{left:185.338253pt;}
.x3a_c01110{left:194.151453pt;}
.x30_c01110{left:195.581453pt;}
.x76_c01110{left:201.693053pt;}
.x6f_c01110{left:202.762253pt;}
.x41_c01110{left:204.148253pt;}
.x1c_c01110{left:205.279053pt;}
.x56_c01110{left:213.322253pt;}
.x78_c01110{left:221.880253pt;}
.x40_c01110{left:223.785453pt;}
.x22_c01110{left:224.876653pt;}
.x51_c01110{left:231.573453pt;}
.x42_c01110{left:233.430253pt;}
.x1d_c01110{left:235.137453pt;}
.x57_c01110{left:242.410653pt;}
.x16_c01110{left:254.655853pt;}
.x79_c01110{left:261.225053pt;}
.x7_c01110{left:263.856253pt;}
.x58_c01110{left:273.421853pt;}
.x34_c01110{left:276.207053pt;}
.x5c_c01110{left:278.156253pt;}
.x5d_c01110{left:282.591453pt;}
.x8_c01110{left:283.489053pt;}
.x26_c01110{left:284.571453pt;}
.x3f_c01110{left:286.855053pt;}
.x4a_c01110{left:292.042653pt;}
.x10_c01110{left:293.635453pt;}
.x5e_c01110{left:302.668653pt;}
.x70_c01110{left:310.738253pt;}
.x23_c01110{left:312.744653pt;}
.x1e_c01110{left:314.069053pt;}
.x3b_c01110{left:321.219053pt;}
.x27_c01110{left:322.864653pt;}
.x5f_c01110{left:330.058653pt;}
.x11_c01110{left:332.874653pt;}
.x69_c01110{left:340.693453pt;}
.x43_c01110{left:342.264253pt;}
.x9_c01110{left:343.421453pt;}
.x28_c01110{left:345.353053pt;}
.x7a_c01110{left:350.329453pt;}
.x59_c01110{left:352.036653pt;}
.x29_c01110{left:353.321453pt;}
.x4b_c01110{left:358.874253pt;}
.x60_c01110{left:361.162253pt;}
.x17_c01110{left:362.948653pt;}
.x6a_c01110{left:370.776253pt;}
.x35_c01110{left:371.929053pt;}
.x12_c01110{left:381.639853pt;}
.xa_c01110{left:383.619853pt;}
.x46_c01110{left:390.290253pt;}
.x4c_c01110{left:391.205453pt;}
.x31_c01110{left:393.040253pt;}
.x45_c01110{left:394.219453pt;}
.x47_c01110{left:395.689053pt;}
.x61_c01110{left:400.661053pt;}
.x4d_c01110{left:401.778653pt;}
.x52_c01110{left:409.258653pt;}
.x24_c01110{left:410.785453pt;}
.x36_c01110{left:412.523453pt;}
.x64_c01110{left:419.396253pt;}
.x18_c01110{left:422.097853pt;}
.x5a_c01110{left:430.339053pt;}
.x3c_c01110{left:439.288653pt;}
.x2a_c01110{left:440.630653pt;}
.x37_c01110{left:441.730653pt;}
.x62_c01110{left:449.967453pt;}
.x4_c01110{left:450.988253pt;}
.xb_c01110{left:452.149853pt;}
.x53_c01110{left:458.666253pt;}
.x13_c01110{left:460.571453pt;}
.x2b_c01110{left:461.684653pt;}
.x77_c01110{left:483.477853pt;}
.x25_c01110{left:489.395853pt;}
.x19_c01110{left:490.297853pt;}
.x65_c01110{left:498.473053pt;}
.xc_c01110{left:499.555453pt;}
.x38_c01110{left:510.260653pt;}
.x44_c01110{left:517.538253pt;}
.x2c_c01110{left:518.875853pt;}
.xd_c01110{left:520.622653pt;}
.x66_c01110{left:528.181853pt;}
.x48_c01110{left:529.132253pt;}
.x71_c01110{left:536.555053pt;}
.x2e_c01110{left:538.653853pt;}
.x4e_c01110{left:546.692653pt;}
.x14_c01110{left:550.049853pt;}
.x1a_c01110{left:557.741053pt;}
.x5b_c01110{left:566.057053pt;}
.x6b_c01110{left:566.998653pt;}
.x1f_c01110{left:568.252653pt;}
.x73_c01110{left:574.386253pt;}
.x4f_c01110{left:576.806253pt;}
.xe_c01110{left:577.906253pt;}
.x3d_c01110{left:586.701853pt;}
.x20_c01110{left:588.664253pt;}
.x54_c01110{left:596.161853pt;}
.x39_c01110{left:597.627053pt;}
.x3e_c01110{left:607.157453pt;}
.x1b_c01110{left:612.763053pt;}
.x55_c01110{left:617.699853pt;}
.x74_c01110{left:621.105453pt;}
.x7b_c01110{left:622.403453pt;}
.x3_c01110{left:626.464653pt;}
.x50_c01110{left:628.044253pt;}
.x63_c01110{left:636.853053pt;}
.x6c_c01110{left:655.183453pt;}
}





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

.ir_c01111:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01111{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01111;src:url('chunks/assets/font_c638161ff8062b1534e47340.woff2')format("woff");}.ff1_c01111{font-family:ff1_c01111;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01111;src:url('chunks/assets/font_9a2c46c77808b119dddb2c4d.woff2')format("woff");}.ff2_c01111{font-family:ff2_c01111;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01111;src:url('chunks/assets/font_3b515d9ed73dcba4ce9be390.woff2')format("woff");}.ff3_c01111{font-family:ff3_c01111;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01111;src:url('chunks/assets/font_87af8cfcbf866c8490f07109.woff2')format("woff");}.ff4_c01111{font-family:ff4_c01111;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m9_c01111{transform:matrix(0.075284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075284,0.000000,0.000000,0.250000,0,0);}
.m60_c01111{transform:matrix(0.123838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123838,0.000000,0.000000,0.250000,0,0);}
.m7a_c01111{transform:matrix(0.138026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138026,0.000000,0.000000,0.250000,0,0);}
.m5d_c01111{transform:matrix(0.156177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156177,0.000000,0.000000,0.250000,0,0);}
.m38_c01111{transform:matrix(0.167442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167442,0.000000,0.000000,0.250000,0,0);}
.m33_c01111{transform:matrix(0.174418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174418,0.000000,0.000000,0.250000,0,0);}
.m17_c01111{transform:matrix(0.181202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181202,0.000000,0.000000,0.250000,0,0);}
.m31_c01111{transform:matrix(0.217054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217054,0.000000,0.000000,0.250000,0,0);}
.m3b_c01111{transform:matrix(0.230871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230871,0.000000,0.000000,0.250000,0,0);}
.m3e_c01111{transform:matrix(0.237805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237805,0.000000,0.000000,0.250000,0,0);}
.m53_c01111{transform:matrix(0.247148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247148,0.000000,0.000000,0.250000,0,0);}
.md_c01111{transform:matrix(0.249494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249494,0.000000,0.000000,0.250000,0,0);}
.m0_c01111{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m6e_c01111{transform:matrix(0.251525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251525,0.000000,0.000000,0.250000,0,0);}
.m7_c01111{transform:matrix(0.251601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251601,0.000000,0.000000,0.250000,0,0);}
.m58_c01111{transform:matrix(0.252395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252395,0.000000,0.000000,0.250000,0,0);}
.m29_c01111{transform:matrix(0.254731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254731,0.000000,0.000000,0.250000,0,0);}
.m7e_c01111{transform:matrix(0.255639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255639,0.000000,0.000000,0.250000,0,0);}
.mc_c01111{transform:matrix(0.259109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259109,0.000000,0.000000,0.250000,0,0);}
.m69_c01111{transform:matrix(0.259658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259658,0.000000,0.000000,0.250000,0,0);}
.m4_c01111{transform:matrix(0.260051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260051,0.000000,0.000000,0.250000,0,0);}
.m71_c01111{transform:matrix(0.260265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260265,0.000000,0.000000,0.250000,0,0);}
.m41_c01111{transform:matrix(0.261847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261847,0.000000,0.000000,0.250000,0,0);}
.m65_c01111{transform:matrix(0.262916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262916,0.000000,0.000000,0.250000,0,0);}
.m6_c01111{transform:matrix(0.263781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263781,0.000000,0.000000,0.250000,0,0);}
.m5_c01111{transform:matrix(0.264859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264859,0.000000,0.000000,0.250000,0,0);}
.m4c_c01111{transform:matrix(0.266574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266574,0.000000,0.000000,0.250000,0,0);}
.m6a_c01111{transform:matrix(0.266861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266861,0.000000,0.000000,0.250000,0,0);}
.m80_c01111{transform:matrix(0.267310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267310,0.000000,0.000000,0.250000,0,0);}
.m79_c01111{transform:matrix(0.267449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267449,0.000000,0.000000,0.250000,0,0);}
.m7b_c01111{transform:matrix(0.267612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267612,0.000000,0.000000,0.250000,0,0);}
.m25_c01111{transform:matrix(0.269888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269888,0.000000,0.000000,0.250000,0,0);}
.m68_c01111{transform:matrix(0.270637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270637,0.000000,0.000000,0.250000,0,0);}
.m7c_c01111{transform:matrix(0.271413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271413,0.000000,0.000000,0.250000,0,0);}
.m18_c01111{transform:matrix(0.271487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271487,0.000000,0.000000,0.250000,0,0);}
.m62_c01111{transform:matrix(0.273823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273823,0.000000,0.000000,0.250000,0,0);}
.m23_c01111{transform:matrix(0.273910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273910,0.000000,0.000000,0.250000,0,0);}
.m76_c01111{transform:matrix(0.273944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273944,0.000000,0.000000,0.250000,0,0);}
.m28_c01111{transform:matrix(0.275843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275843,0.000000,0.000000,0.250000,0,0);}
.m16_c01111{transform:matrix(0.276494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276494,0.000000,0.000000,0.250000,0,0);}
.m75_c01111{transform:matrix(0.277504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277504,0.000000,0.000000,0.250000,0,0);}
.m48_c01111{transform:matrix(0.277517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277517,0.000000,0.000000,0.250000,0,0);}
.m1d_c01111{transform:matrix(0.278794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278794,0.000000,0.000000,0.250000,0,0);}
.m44_c01111{transform:matrix(0.279601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279601,0.000000,0.000000,0.250000,0,0);}
.m2c_c01111{transform:matrix(0.280682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280682,0.000000,0.000000,0.250000,0,0);}
.m1c_c01111{transform:matrix(0.280794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280794,0.000000,0.000000,0.250000,0,0);}
.m3f_c01111{transform:matrix(0.281410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281410,0.000000,0.000000,0.250000,0,0);}
.m82_c01111{transform:matrix(0.281468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281468,0.000000,0.000000,0.250000,0,0);}
.m81_c01111{transform:matrix(0.283031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283031,0.000000,0.000000,0.250000,0,0);}
.m1b_c01111{transform:matrix(0.284427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284427,0.000000,0.000000,0.250000,0,0);}
.m6b_c01111{transform:matrix(0.284677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284677,0.000000,0.000000,0.250000,0,0);}
.m6c_c01111{transform:matrix(0.284778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284778,0.000000,0.000000,0.250000,0,0);}
.m42_c01111{transform:matrix(0.285521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285521,0.000000,0.000000,0.250000,0,0);}
.m35_c01111{transform:matrix(0.285544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285544,0.000000,0.000000,0.250000,0,0);}
.m5c_c01111{transform:matrix(0.286350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286350,0.000000,0.000000,0.250000,0,0);}
.m22_c01111{transform:matrix(0.286767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286767,0.000000,0.000000,0.250000,0,0);}
.m8_c01111{transform:matrix(0.287493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287493,0.000000,0.000000,0.250000,0,0);}
.m72_c01111{transform:matrix(0.287911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287911,0.000000,0.000000,0.250000,0,0);}
.m49_c01111{transform:matrix(0.288115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288115,0.000000,0.000000,0.250000,0,0);}
.m2_c01111{transform:matrix(0.288675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288675,0.000000,0.000000,0.250000,0,0);}
.m7f_c01111{transform:matrix(0.289381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289381,0.000000,0.000000,0.250000,0,0);}
.m4e_c01111{transform:matrix(0.289441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289441,0.000000,0.000000,0.250000,0,0);}
.m14_c01111{transform:matrix(0.291020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291020,0.000000,0.000000,0.250000,0,0);}
.m47_c01111{transform:matrix(0.291354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291354,0.000000,0.000000,0.250000,0,0);}
.m77_c01111{transform:matrix(0.291392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291392,0.000000,0.000000,0.250000,0,0);}
.m7d_c01111{transform:matrix(0.292290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292290,0.000000,0.000000,0.250000,0,0);}
.m34_c01111{transform:matrix(0.292638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292638,0.000000,0.000000,0.250000,0,0);}
.m6f_c01111{transform:matrix(0.292653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292653,0.000000,0.000000,0.250000,0,0);}
.m2b_c01111{transform:matrix(0.293422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293422,0.000000,0.000000,0.250000,0,0);}
.m40_c01111{transform:matrix(0.293457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293457,0.000000,0.000000,0.250000,0,0);}
.m54_c01111{transform:matrix(0.293740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293740,0.000000,0.000000,0.250000,0,0);}
.m64_c01111{transform:matrix(0.294135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294135,0.000000,0.000000,0.250000,0,0);}
.m2f_c01111{transform:matrix(0.294233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294233,0.000000,0.000000,0.250000,0,0);}
.m37_c01111{transform:matrix(0.294477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294477,0.000000,0.000000,0.250000,0,0);}
.m46_c01111{transform:matrix(0.295251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295251,0.000000,0.000000,0.250000,0,0);}
.mf_c01111{transform:matrix(0.295997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295997,0.000000,0.000000,0.250000,0,0);}
.m2a_c01111{transform:matrix(0.296239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296239,0.000000,0.000000,0.250000,0,0);}
.mb_c01111{transform:matrix(0.296538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296538,0.000000,0.000000,0.250000,0,0);}
.m5e_c01111{transform:matrix(0.297518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297518,0.000000,0.000000,0.250000,0,0);}
.m67_c01111{transform:matrix(0.297886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297886,0.000000,0.000000,0.250000,0,0);}
.m39_c01111{transform:matrix(0.298080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298080,0.000000,0.000000,0.250000,0,0);}
.m5a_c01111{transform:matrix(0.298516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298516,0.000000,0.000000,0.250000,0,0);}
.m55_c01111{transform:matrix(0.300246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300246,0.000000,0.000000,0.250000,0,0);}
.m4f_c01111{transform:matrix(0.301042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301042,0.000000,0.000000,0.250000,0,0);}
.m4b_c01111{transform:matrix(0.302718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302718,0.000000,0.000000,0.250000,0,0);}
.m66_c01111{transform:matrix(0.304997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304997,0.000000,0.000000,0.250000,0,0);}
.m5f_c01111{transform:matrix(0.305034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305034,0.000000,0.000000,0.250000,0,0);}
.m5b_c01111{transform:matrix(0.305690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305690,0.000000,0.000000,0.250000,0,0);}
.m3a_c01111{transform:matrix(0.305733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305733,0.000000,0.000000,0.250000,0,0);}
.m1a_c01111{transform:matrix(0.305756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305756,0.000000,0.000000,0.250000,0,0);}
.m4d_c01111{transform:matrix(0.306210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306210,0.000000,0.000000,0.250000,0,0);}
.m63_c01111{transform:matrix(0.306266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306266,0.000000,0.000000,0.250000,0,0);}
.m4a_c01111{transform:matrix(0.307137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307137,0.000000,0.000000,0.250000,0,0);}
.m85_c01111{transform:matrix(0.307156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307156,0.000000,0.000000,0.250000,0,0);}
.m15_c01111{transform:matrix(0.307366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307366,0.000000,0.000000,0.250000,0,0);}
.m24_c01111{transform:matrix(0.308001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308001,0.000000,0.000000,0.250000,0,0);}
.m51_c01111{transform:matrix(0.308464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308464,0.000000,0.000000,0.250000,0,0);}
.m3d_c01111{transform:matrix(0.312598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312598,0.000000,0.000000,0.250000,0,0);}
.m86_c01111{transform:matrix(0.313776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313776,0.000000,0.000000,0.250000,0,0);}
.m61_c01111{transform:matrix(0.316292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316292,0.000000,0.000000,0.250000,0,0);}
.m19_c01111{transform:matrix(0.316775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316775,0.000000,0.000000,0.250000,0,0);}
.m13_c01111{transform:matrix(0.317929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317929,0.000000,0.000000,0.250000,0,0);}
.m21_c01111{transform:matrix(0.319058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319058,0.000000,0.000000,0.250000,0,0);}
.m30_c01111{transform:matrix(0.319408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319408,0.000000,0.000000,0.250000,0,0);}
.m32_c01111{transform:matrix(0.320369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320369,0.000000,0.000000,0.250000,0,0);}
.m84_c01111{transform:matrix(0.321640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321640,0.000000,0.000000,0.250000,0,0);}
.m59_c01111{transform:matrix(0.323542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323542,0.000000,0.000000,0.250000,0,0);}
.m73_c01111{transform:matrix(0.324708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324708,0.000000,0.000000,0.250000,0,0);}
.m45_c01111{transform:matrix(0.325317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325317,0.000000,0.000000,0.250000,0,0);}
.m87_c01111{transform:matrix(0.325704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325704,0.000000,0.000000,0.250000,0,0);}
.m6d_c01111{transform:matrix(0.325812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325812,0.000000,0.000000,0.250000,0,0);}
.m1f_c01111{transform:matrix(0.328278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328278,0.000000,0.000000,0.250000,0,0);}
.m74_c01111{transform:matrix(0.329841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329841,0.000000,0.000000,0.250000,0,0);}
.m2d_c01111{transform:matrix(0.330071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330071,0.000000,0.000000,0.250000,0,0);}
.m56_c01111{transform:matrix(0.330669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330669,0.000000,0.000000,0.250000,0,0);}
.m70_c01111{transform:matrix(0.331198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331198,0.000000,0.000000,0.250000,0,0);}
.m50_c01111{transform:matrix(0.331769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331769,0.000000,0.000000,0.250000,0,0);}
.m36_c01111{transform:matrix(0.332523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332523,0.000000,0.000000,0.250000,0,0);}
.m3_c01111{transform:matrix(0.333361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333361,0.000000,0.000000,0.250000,0,0);}
.m10_c01111{transform:matrix(0.335274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335274,0.000000,0.000000,0.250000,0,0);}
.m1e_c01111{transform:matrix(0.336663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336663,0.000000,0.000000,0.250000,0,0);}
.m12_c01111{transform:matrix(0.340794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340794,0.000000,0.000000,0.250000,0,0);}
.m2e_c01111{transform:matrix(0.345831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345831,0.000000,0.000000,0.250000,0,0);}
.m83_c01111{transform:matrix(0.346491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346491,0.000000,0.000000,0.250000,0,0);}
.m57_c01111{transform:matrix(0.349091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349091,0.000000,0.000000,0.250000,0,0);}
.m1_c01111{transform:matrix(0.352826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352826,0.000000,0.000000,0.250000,0,0);}
.m52_c01111{transform:matrix(0.361786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361786,0.000000,0.000000,0.250000,0,0);}
.m26_c01111{transform:matrix(0.363924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363924,0.000000,0.000000,0.250000,0,0);}
.m20_c01111{transform:matrix(0.366142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366142,0.000000,0.000000,0.250000,0,0);}
.m27_c01111{transform:matrix(0.366991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366991,0.000000,0.000000,0.250000,0,0);}
.m78_c01111{transform:matrix(0.386524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386524,0.000000,0.000000,0.250000,0,0);}
.ma_c01111{transform:matrix(0.400159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400159,0.000000,0.000000,0.250000,0,0);}
.m11_c01111{transform:matrix(0.403791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403791,0.000000,0.000000,0.250000,0,0);}
.m3c_c01111{transform:matrix(0.410101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410101,0.000000,0.000000,0.250000,0,0);}
.me_c01111{transform:matrix(0.412838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412838,0.000000,0.000000,0.250000,0,0);}
.m43_c01111{transform:matrix(0.448323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448323,0.000000,0.000000,0.250000,0,0);}
.m88_c01111{transform:matrix(2.703569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.703569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.703569,0.000000,0.000000,0.250000,0,0);}
.v1_c01111{vertical-align:-45.619200px;}
.v0_c01111{vertical-align:0.000000px;}
.lsa_c01111{letter-spacing:-3.007627px;}
.ls2a_c01111{letter-spacing:-2.647267px;}
.ls1e_c01111{letter-spacing:-2.619540px;}
.ls19_c01111{letter-spacing:-2.610992px;}
.lsc_c01111{letter-spacing:-2.478762px;}
.ls33_c01111{letter-spacing:-2.028000px;}
.ls1a_c01111{letter-spacing:-1.960913px;}
.ls12_c01111{letter-spacing:-1.615680px;}
.ls1c_c01111{letter-spacing:-1.483733px;}
.ls15_c01111{letter-spacing:-1.414690px;}
.ls9_c01111{letter-spacing:-1.314763px;}
.ls31_c01111{letter-spacing:-1.157907px;}
.ls4_c01111{letter-spacing:0.000000px;}
.ls34_c01111{letter-spacing:0.178200px;}
.ls2b_c01111{letter-spacing:0.523908px;}
.ls23_c01111{letter-spacing:0.686902px;}
.ls2d_c01111{letter-spacing:0.815918px;}
.ls11_c01111{letter-spacing:1.712621px;}
.ls3_c01111{letter-spacing:1.841875px;}
.ls1d_c01111{letter-spacing:1.925277px;}
.ls32_c01111{letter-spacing:1.930500px;}
.ls28_c01111{letter-spacing:1.989900px;}
.ls25_c01111{letter-spacing:2.035757px;}
.ls17_c01111{letter-spacing:2.140538px;}
.ls27_c01111{letter-spacing:2.269086px;}
.ls16_c01111{letter-spacing:2.529727px;}
.ls0_c01111{letter-spacing:2.689678px;}
.ls29_c01111{letter-spacing:2.893045px;}
.lse_c01111{letter-spacing:3.135964px;}
.ls24_c01111{letter-spacing:3.197700px;}
.ls2f_c01111{letter-spacing:3.385810px;}
.ls10_c01111{letter-spacing:3.435310px;}
.ls13_c01111{letter-spacing:3.459040px;}
.ls30_c01111{letter-spacing:3.517668px;}
.ls26_c01111{letter-spacing:3.564000px;}
.ls8_c01111{letter-spacing:3.702610px;}
.lsb_c01111{letter-spacing:3.732310px;}
.ls5_c01111{letter-spacing:3.742200px;}
.ls21_c01111{letter-spacing:3.781810px;}
.ls2e_c01111{letter-spacing:3.801610px;}
.ls18_c01111{letter-spacing:3.861000px;}
.lsd_c01111{letter-spacing:3.920400px;}
.ls1b_c01111{letter-spacing:3.940200px;}
.ls2c_c01111{letter-spacing:4.039200px;}
.ls22_c01111{letter-spacing:4.078810px;}
.ls14_c01111{letter-spacing:4.088700px;}
.ls7_c01111{letter-spacing:4.276810px;}
.ls1_c01111{letter-spacing:5.482620px;}
.ls20_c01111{letter-spacing:6.019200px;}
.ls2_c01111{letter-spacing:6.221160px;}
.ls1f_c01111{letter-spacing:58.449798px;}
.lsf_c01111{letter-spacing:61.300998px;}
.ls6_c01111{letter-spacing:62.726400px;}
.sc__c01111{text-shadow:none;}
.sc0_c01111{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01111{-webkit-text-stroke:0px transparent;}
.sc0_c01111{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01111{word-spacing:-21.908621px;}
.ws1_c01111{word-spacing:0.000000px;}
._d_c01111{margin-left:-23.463396px;}
._1_c01111{margin-left:-12.424104px;}
._8_c01111{margin-left:-7.708140px;}
._f_c01111{width:4.579344px;}
._9_c01111{width:6.361344px;}
._2_c01111{width:9.179280px;}
._7_c01111{width:11.195078px;}
._0_c01111{width:20.507256px;}
._10_c01111{width:30.665606px;}
._a_c01111{width:35.812319px;}
._6_c01111{width:37.917000px;}
._c_c01111{width:50.670259px;}
._4_c01111{width:83.748060px;}
._b_c01111{width:89.633360px;}
._3_c01111{width:186.968232px;}
._e_c01111{width:312.539832px;}
._5_c01111{width:1153.305815px;}
.fc0_c01111{color:transparent;}
.fs20_c01111{font-size:3.564000px;}
.fs1_c01111{font-size:22.572000px;}
.fs3_c01111{font-size:24.156000px;}
.fs14_c01111{font-size:26.928000px;}
.fs1f_c01111{font-size:38.610000px;}
.fs0_c01111{font-size:39.600000px;}
.fs1a_c01111{font-size:39.798000px;}
.fs12_c01111{font-size:58.449798px;}
.fsb_c01111{font-size:61.300998px;}
.fs4_c01111{font-size:62.726400px;}
.fs11_c01111{font-size:63.954000px;}
.fs1d_c01111{font-size:67.716198px;}
.fs1e_c01111{font-size:68.112198px;}
.fsc_c01111{font-size:68.706198px;}
.fs19_c01111{font-size:71.280000px;}
.fs6_c01111{font-size:74.052198px;}
.fs8_c01111{font-size:74.646198px;}
.fs2_c01111{font-size:74.844000px;}
.fs17_c01111{font-size:75.636198px;}
.fs1c_c01111{font-size:76.032198px;}
.fs9_c01111{font-size:77.220000px;}
.fsa_c01111{font-size:78.408000px;}
.fs10_c01111{font-size:78.804000px;}
.fs13_c01111{font-size:79.794000px;}
.fs1b_c01111{font-size:80.586198px;}
.fsd_c01111{font-size:80.784000px;}
.fs18_c01111{font-size:81.576198px;}
.fse_c01111{font-size:81.774000px;}
.fs5_c01111{font-size:85.536198px;}
.fs7_c01111{font-size:85.932198px;}
.fsf_c01111{font-size:87.912198px;}
.fs15_c01111{font-size:93.456198px;}
.fs16_c01111{font-size:120.384000px;}
.y0_c01111{bottom:0.000000px;}
.y3_c01111{bottom:21.295935px;}
.y1_c01111{bottom:76.500000px;}
.y1c_c01111{bottom:125.364735px;}
.y1b_c01111{bottom:130.349385px;}
.y19_c01111{bottom:194.857785px;}
.y1a_c01111{bottom:200.560185px;}
.y18_c01111{bottom:228.002985px;}
.y17_c01111{bottom:260.083935px;}
.y16_c01111{bottom:323.879535px;}
.y15_c01111{bottom:356.668335px;}
.y13_c01111{bottom:421.176735px;}
.y14_c01111{bottom:425.453535px;}
.y12_c01111{bottom:452.539935px;}
.y11_c01111{bottom:484.610985px;}
.y10_c01111{bottom:509.207535px;}
.yf_c01111{bottom:515.974185px;}
.ye_c01111{bottom:548.055135px;}
.yd_c01111{bottom:611.850735px;}
.yc_c01111{bottom:643.921785px;}
.y2_c01111{bottom:664.236585px;}
.yb_c01111{bottom:676.354185px;}
.ya_c01111{bottom:709.504335px;}
.y9_c01111{bottom:740.867535px;}
.y8_c01111{bottom:805.370985px;}
.y7_c01111{bottom:867.740985px;}
.y6_c01111{bottom:868.097385px;}
.y5_c01111{bottom:928.685385px;}
.y4_c01111{bottom:932.254335px;}
.h21_c01111{height:3.497871px;}
.h3_c01111{height:23.541891px;}
.h5_c01111{height:23.707793px;}
.h14_c01111{height:38.927565px;}
.h20_c01111{height:40.269023px;}
.hd_c01111{height:40.826465px;}
.h2_c01111{height:41.301563px;}
.h1b_c01111{height:41.508070px;}
.h6_c01111{height:41.775782px;}
.h19_c01111{height:62.767354px;}
.h1f_c01111{height:66.848397px;}
.he_c01111{height:67.431376px;}
.h1e_c01111{height:70.625878px;}
.h8_c01111{height:72.678183px;}
.ha_c01111{height:73.261161px;}
.h4_c01111{height:73.455293px;}
.h17_c01111{height:74.232792px;}
.h1a_c01111{height:74.342813px;}
.h1d_c01111{height:74.621444px;}
.h11_c01111{height:75.787207px;}
.hc_c01111{height:76.953164px;}
.h13_c01111{height:77.341816px;}
.h1c_c01111{height:79.090946px;}
.hf_c01111{height:79.285078px;}
.h18_c01111{height:80.062577px;}
.h10_c01111{height:80.256709px;}
.hb_c01111{height:80.538047px;}
.h7_c01111{height:83.949101px;}
.h9_c01111{height:84.337753px;}
.h12_c01111{height:86.281015px;}
.h15_c01111{height:97.471894px;}
.h16_c01111{height:125.556750px;}
.h1_c01111{height:1110.000000px;}
.h0_c01111{height:1263.000000px;}
.w1_c01111{width:775.500000px;}
.w0_c01111{width:892.500000px;}
.x0_c01111{left:0.000000px;}
.x2_c01111{left:21.128235px;}
.x3_c01111{left:54.020985px;}
.x1_c01111{left:58.500000px;}
.x52_c01111{left:79.939185px;}
.x15_c01111{left:81.364785px;}
.xc_c01111{left:82.438935px;}
.x63_c01111{left:134.245635px;}
.x37_c01111{left:135.384135px;}
.x11_c01111{left:136.621635px;}
.x4_c01111{left:137.646285px;}
.x43_c01111{left:156.753285px;}
.x4b_c01111{left:158.931285px;}
.x1d_c01111{left:170.370735px;}
.x12_c01111{left:181.438935px;}
.x5b_c01111{left:189.844035px;}
.x2b_c01111{left:191.819085px;}
.x4c_c01111{left:203.204085px;}
.x5_c01111{left:204.679185px;}
.x3f_c01111{left:212.346735px;}
.x64_c01111{left:223.924785px;}
.xd_c01111{left:225.479085px;}
.x57_c01111{left:226.716585px;}
.x4d_c01111{left:234.453435px;}
.x6_c01111{left:237.542235px;}
.x5e_c01111{left:245.496885px;}
.x58_c01111{left:246.739335px;}
.x13_c01111{left:248.065935px;}
.x65_c01111{left:256.599735px;}
.x26_c01111{left:258.460935px;}
.x16_c01111{left:259.544985px;}
.x38_c01111{left:269.029185px;}
.x7_c01111{left:271.439835px;}
.x1e_c01111{left:281.334885px;}
.x2c_c01111{left:291.635835px;}
.x68_c01111{left:301.461585px;}
.xe_c01111{left:302.926785px;}
.x5f_c01111{left:303.936585px;}
.x14_c01111{left:305.287935px;}
.x53_c01111{left:313.153485px;}
.x1f_c01111{left:314.499885px;}
.x32_c01111{left:324.974085px;}
.x17_c01111{left:337.235235px;}
.x39_c01111{left:346.491735px;}
.x20_c01111{left:348.214335px;}
.x40_c01111{left:357.421335px;}
.x4e_c01111{left:360.524985px;}
.x2d_c01111{left:368.410335px;}
.x8_c01111{left:370.449735px;}
.x3a_c01111{left:379.300335px;}
.x44_c01111{left:388.066785px;}
.x59_c01111{left:389.838885px;}
.x41_c01111{left:392.125785px;}
.x5c_c01111{left:400.535835px;}
.x27_c01111{left:403.025685px;}
.x4f_c01111{left:412.554435px;}
.x33_c01111{left:413.999835px;}
.xf_c01111{left:415.217535px;}
.x42_c01111{left:423.741435px;}
.x18_c01111{left:425.662035px;}
.x21_c01111{left:436.720335px;}
.x60_c01111{left:445.447185px;}
.x9_c01111{left:449.199285px;}
.xb_c01111{left:450.352635px;}
.x69_c01111{left:455.426385px;}
.x19_c01111{left:458.203335px;}
.x54_c01111{left:468.657735px;}
.x10_c01111{left:469.979385px;}
.x66_c01111{left:488.848785px;}
.x45_c01111{left:490.541685px;}
.x28_c01111{left:491.709885px;}
.x34_c01111{left:492.977085px;}
.x1a_c01111{left:524.894685px;}
.x5a_c01111{left:534.329385px;}
.x46_c01111{left:535.358985px;}
.x22_c01111{left:537.487485px;}
.xa_c01111{left:538.556685px;}
.x67_c01111{left:543.798735px;}
.x2e_c01111{left:545.961885px;}
.x35_c01111{left:547.417185px;}
.x55_c01111{left:556.802385px;}
.x29_c01111{left:558.609135px;}
.x47_c01111{left:566.722185px;}
.x2f_c01111{left:568.949685px;}
.x50_c01111{left:578.923935px;}
.x3b_c01111{left:590.348535px;}
.x31_c01111{left:599.812935px;}
.x48_c01111{left:601.169235px;}
.x30_c01111{left:602.401785px;}
.x61_c01111{left:610.752435px;}
.x36_c01111{left:612.628485px;}
.x6a_c01111{left:620.008935px;}
.x3c_c01111{left:622.587885px;}
.x1b_c01111{left:624.553035px;}
.x23_c01111{left:626.597385px;}
.x6b_c01111{left:632.230485px;}
.x49_c01111{left:643.961985px;}
.x2a_c01111{left:657.119085px;}
.x1c_c01111{left:667.880385px;}
.x62_c01111{left:678.047685px;}
.x56_c01111{left:689.724735px;}
.x5d_c01111{left:700.842435px;}
.x51_c01111{left:703.134285px;}
.x24_c01111{left:704.198535px;}
.x4a_c01111{left:710.925585px;}
.x3d_c01111{left:712.573935px;}
.x25_c01111{left:723.260985px;}
.x3e_c01111{left:734.131185px;}
@media print{
.v1_c01111{vertical-align:-40.550400pt;}
.v0_c01111{vertical-align:0.000000pt;}
.lsa_c01111{letter-spacing:-2.673446pt;}
.ls2a_c01111{letter-spacing:-2.353126pt;}
.ls1e_c01111{letter-spacing:-2.328480pt;}
.ls19_c01111{letter-spacing:-2.320882pt;}
.lsc_c01111{letter-spacing:-2.203344pt;}
.ls33_c01111{letter-spacing:-1.802667pt;}
.ls1a_c01111{letter-spacing:-1.743034pt;}
.ls12_c01111{letter-spacing:-1.436160pt;}
.ls1c_c01111{letter-spacing:-1.318874pt;}
.ls15_c01111{letter-spacing:-1.257502pt;}
.ls9_c01111{letter-spacing:-1.168678pt;}
.ls31_c01111{letter-spacing:-1.029251pt;}
.ls4_c01111{letter-spacing:0.000000pt;}
.ls34_c01111{letter-spacing:0.158400pt;}
.ls2b_c01111{letter-spacing:0.465696pt;}
.ls23_c01111{letter-spacing:0.610579pt;}
.ls2d_c01111{letter-spacing:0.725261pt;}
.ls11_c01111{letter-spacing:1.522330pt;}
.ls3_c01111{letter-spacing:1.637222pt;}
.ls1d_c01111{letter-spacing:1.711357pt;}
.ls32_c01111{letter-spacing:1.716000pt;}
.ls28_c01111{letter-spacing:1.768800pt;}
.ls25_c01111{letter-spacing:1.809562pt;}
.ls17_c01111{letter-spacing:1.902701pt;}
.ls27_c01111{letter-spacing:2.016965pt;}
.ls16_c01111{letter-spacing:2.248646pt;}
.ls0_c01111{letter-spacing:2.390825pt;}
.ls29_c01111{letter-spacing:2.571595pt;}
.lse_c01111{letter-spacing:2.787523pt;}
.ls24_c01111{letter-spacing:2.842400pt;}
.ls2f_c01111{letter-spacing:3.009609pt;}
.ls10_c01111{letter-spacing:3.053609pt;}
.ls13_c01111{letter-spacing:3.074702pt;}
.ls30_c01111{letter-spacing:3.126816pt;}
.ls26_c01111{letter-spacing:3.168000pt;}
.ls8_c01111{letter-spacing:3.291209pt;}
.lsb_c01111{letter-spacing:3.317609pt;}
.ls5_c01111{letter-spacing:3.326400pt;}
.ls21_c01111{letter-spacing:3.361609pt;}
.ls2e_c01111{letter-spacing:3.379209pt;}
.ls18_c01111{letter-spacing:3.432000pt;}
.lsd_c01111{letter-spacing:3.484800pt;}
.ls1b_c01111{letter-spacing:3.502400pt;}
.ls2c_c01111{letter-spacing:3.590400pt;}
.ls22_c01111{letter-spacing:3.625609pt;}
.ls14_c01111{letter-spacing:3.634400pt;}
.ls7_c01111{letter-spacing:3.801609pt;}
.ls1_c01111{letter-spacing:4.873440pt;}
.ls20_c01111{letter-spacing:5.350400pt;}
.ls2_c01111{letter-spacing:5.529920pt;}
.ls1f_c01111{letter-spacing:51.955376pt;}
.lsf_c01111{letter-spacing:54.489776pt;}
.ls6_c01111{letter-spacing:55.756800pt;}
.ws0_c01111{word-spacing:-19.474330pt;}
.ws1_c01111{word-spacing:0.000000pt;}
._d_c01111{margin-left:-20.856352pt;}
._1_c01111{margin-left:-11.043648pt;}
._8_c01111{margin-left:-6.851680pt;}
._f_c01111{width:4.070528pt;}
._9_c01111{width:5.654528pt;}
._2_c01111{width:8.159360pt;}
._7_c01111{width:9.951181pt;}
._0_c01111{width:18.228672pt;}
._10_c01111{width:27.258317pt;}
._a_c01111{width:31.833173pt;}
._6_c01111{width:33.704000pt;}
._c_c01111{width:45.040230pt;}
._4_c01111{width:74.442720pt;}
._b_c01111{width:79.674098pt;}
._3_c01111{width:166.193984pt;}
._e_c01111{width:277.813184pt;}
._5_c01111{width:1025.160724pt;}
.fs20_c01111{font-size:3.168000pt;}
.fs1_c01111{font-size:20.064000pt;}
.fs3_c01111{font-size:21.472000pt;}
.fs14_c01111{font-size:23.936000pt;}
.fs1f_c01111{font-size:34.320000pt;}
.fs0_c01111{font-size:35.200000pt;}
.fs1a_c01111{font-size:35.376000pt;}
.fs12_c01111{font-size:51.955376pt;}
.fsb_c01111{font-size:54.489776pt;}
.fs4_c01111{font-size:55.756800pt;}
.fs11_c01111{font-size:56.848000pt;}
.fs1d_c01111{font-size:60.192176pt;}
.fs1e_c01111{font-size:60.544176pt;}
.fsc_c01111{font-size:61.072176pt;}
.fs19_c01111{font-size:63.360000pt;}
.fs6_c01111{font-size:65.824176pt;}
.fs8_c01111{font-size:66.352176pt;}
.fs2_c01111{font-size:66.528000pt;}
.fs17_c01111{font-size:67.232176pt;}
.fs1c_c01111{font-size:67.584176pt;}
.fs9_c01111{font-size:68.640000pt;}
.fsa_c01111{font-size:69.696000pt;}
.fs10_c01111{font-size:70.048000pt;}
.fs13_c01111{font-size:70.928000pt;}
.fs1b_c01111{font-size:71.632176pt;}
.fsd_c01111{font-size:71.808000pt;}
.fs18_c01111{font-size:72.512176pt;}
.fse_c01111{font-size:72.688000pt;}
.fs5_c01111{font-size:76.032176pt;}
.fs7_c01111{font-size:76.384176pt;}
.fsf_c01111{font-size:78.144176pt;}
.fs15_c01111{font-size:83.072176pt;}
.fs16_c01111{font-size:107.008000pt;}
.y0_c01111{bottom:0.000000pt;}
.y3_c01111{bottom:18.929720pt;}
.y1_c01111{bottom:68.000000pt;}
.y1c_c01111{bottom:111.435320pt;}
.y1b_c01111{bottom:115.866120pt;}
.y19_c01111{bottom:173.206920pt;}
.y1a_c01111{bottom:178.275720pt;}
.y18_c01111{bottom:202.669320pt;}
.y17_c01111{bottom:231.185720pt;}
.y16_c01111{bottom:287.892920pt;}
.y15_c01111{bottom:317.038520pt;}
.y13_c01111{bottom:374.379320pt;}
.y14_c01111{bottom:378.180920pt;}
.y12_c01111{bottom:402.257720pt;}
.y11_c01111{bottom:430.765320pt;}
.y10_c01111{bottom:452.628920pt;}
.yf_c01111{bottom:458.643720pt;}
.ye_c01111{bottom:487.160120pt;}
.yd_c01111{bottom:543.867320pt;}
.yc_c01111{bottom:572.374920pt;}
.y2_c01111{bottom:590.432520pt;}
.yb_c01111{bottom:601.203720pt;}
.ya_c01111{bottom:630.670520pt;}
.y9_c01111{bottom:658.548920pt;}
.y8_c01111{bottom:715.885320pt;}
.y7_c01111{bottom:771.325320pt;}
.y6_c01111{bottom:771.642120pt;}
.y5_c01111{bottom:825.498120pt;}
.y4_c01111{bottom:828.670520pt;}
.h21_c01111{height:3.109219pt;}
.h3_c01111{height:20.926125pt;}
.h5_c01111{height:21.073594pt;}
.h14_c01111{height:34.602280pt;}
.h20_c01111{height:35.794688pt;}
.hd_c01111{height:36.290191pt;}
.h2_c01111{height:36.712500pt;}
.h1b_c01111{height:36.896063pt;}
.h6_c01111{height:37.134029pt;}
.h19_c01111{height:55.793203pt;}
.h1f_c01111{height:59.420798pt;}
.he_c01111{height:59.939001pt;}
.h1e_c01111{height:62.778559pt;}
.h8_c01111{height:64.602829pt;}
.ha_c01111{height:65.121032pt;}
.h4_c01111{height:65.293594pt;}
.h17_c01111{height:65.984704pt;}
.h1a_c01111{height:66.082500pt;}
.h1d_c01111{height:66.330173pt;}
.h11_c01111{height:67.366406pt;}
.hc_c01111{height:68.402813pt;}
.h13_c01111{height:68.748281pt;}
.h1c_c01111{height:70.303063pt;}
.hf_c01111{height:70.475625pt;}
.h18_c01111{height:71.166735pt;}
.h10_c01111{height:71.339297pt;}
.hb_c01111{height:71.589375pt;}
.h7_c01111{height:74.621423pt;}
.h9_c01111{height:74.966891pt;}
.h12_c01111{height:76.694235pt;}
.h15_c01111{height:86.641684pt;}
.h16_c01111{height:111.606000pt;}
.h1_c01111{height:986.666667pt;}
.h0_c01111{height:1122.666667pt;}
.w1_c01111{width:689.333333pt;}
.w0_c01111{width:793.333333pt;}
.x0_c01111{left:0.000000pt;}
.x2_c01111{left:18.780653pt;}
.x3_c01111{left:48.018653pt;}
.x1_c01111{left:52.000000pt;}
.x52_c01111{left:71.057053pt;}
.x15_c01111{left:72.324253pt;}
.xc_c01111{left:73.279053pt;}
.x63_c01111{left:119.329453pt;}
.x37_c01111{left:120.341453pt;}
.x11_c01111{left:121.441453pt;}
.x4_c01111{left:122.352253pt;}
.x43_c01111{left:139.336253pt;}
.x4b_c01111{left:141.272253pt;}
.x1d_c01111{left:151.440653pt;}
.x12_c01111{left:161.279053pt;}
.x5b_c01111{left:168.750253pt;}
.x2b_c01111{left:170.505853pt;}
.x4c_c01111{left:180.625853pt;}
.x5_c01111{left:181.937053pt;}
.x3f_c01111{left:188.752653pt;}
.x64_c01111{left:199.044253pt;}
.xd_c01111{left:200.425853pt;}
.x57_c01111{left:201.525853pt;}
.x4d_c01111{left:208.403053pt;}
.x6_c01111{left:211.148653pt;}
.x5e_c01111{left:218.219453pt;}
.x58_c01111{left:219.323853pt;}
.x13_c01111{left:220.503053pt;}
.x65_c01111{left:228.088653pt;}
.x26_c01111{left:229.743053pt;}
.x16_c01111{left:230.706653pt;}
.x38_c01111{left:239.137053pt;}
.x7_c01111{left:241.279853pt;}
.x1e_c01111{left:250.075453pt;}
.x2c_c01111{left:259.231853pt;}
.x68_c01111{left:267.965853pt;}
.xe_c01111{left:269.268253pt;}
.x5f_c01111{left:270.165853pt;}
.x14_c01111{left:271.367053pt;}
.x53_c01111{left:278.358653pt;}
.x1f_c01111{left:279.555453pt;}
.x32_c01111{left:288.865853pt;}
.x17_c01111{left:299.764653pt;}
.x39_c01111{left:307.992653pt;}
.x20_c01111{left:309.523853pt;}
.x40_c01111{left:317.707853pt;}
.x4e_c01111{left:320.466653pt;}
.x2d_c01111{left:327.475853pt;}
.x8_c01111{left:329.288653pt;}
.x3a_c01111{left:337.155853pt;}
.x44_c01111{left:344.948253pt;}
.x59_c01111{left:346.523453pt;}
.x41_c01111{left:348.556253pt;}
.x5c_c01111{left:356.031853pt;}
.x27_c01111{left:358.245053pt;}
.x4f_c01111{left:366.715053pt;}
.x33_c01111{left:367.999853pt;}
.xf_c01111{left:369.082253pt;}
.x42_c01111{left:376.659053pt;}
.x18_c01111{left:378.366253pt;}
.x21_c01111{left:388.195853pt;}
.x60_c01111{left:395.953053pt;}
.x9_c01111{left:399.288253pt;}
.xb_c01111{left:400.313453pt;}
.x69_c01111{left:404.823453pt;}
.x19_c01111{left:407.291853pt;}
.x54_c01111{left:416.584653pt;}
.x10_c01111{left:417.759453pt;}
.x66_c01111{left:434.532253pt;}
.x45_c01111{left:436.037053pt;}
.x28_c01111{left:437.075453pt;}
.x34_c01111{left:438.201853pt;}
.x1a_c01111{left:466.573053pt;}
.x5a_c01111{left:474.959453pt;}
.x46_c01111{left:475.874653pt;}
.x22_c01111{left:477.766653pt;}
.xa_c01111{left:478.717053pt;}
.x67_c01111{left:483.376653pt;}
.x2e_c01111{left:485.299453pt;}
.x35_c01111{left:486.593053pt;}
.x55_c01111{left:494.935453pt;}
.x29_c01111{left:496.541453pt;}
.x47_c01111{left:503.753053pt;}
.x2f_c01111{left:505.733053pt;}
.x50_c01111{left:514.599053pt;}
.x3b_c01111{left:524.754253pt;}
.x31_c01111{left:533.167053pt;}
.x48_c01111{left:534.372653pt;}
.x30_c01111{left:535.468253pt;}
.x61_c01111{left:542.891053pt;}
.x36_c01111{left:544.558653pt;}
.x6a_c01111{left:551.119053pt;}
.x3c_c01111{left:553.411453pt;}
.x1b_c01111{left:555.158253pt;}
.x23_c01111{left:556.975453pt;}
.x6b_c01111{left:561.982653pt;}
.x49_c01111{left:572.410653pt;}
.x2a_c01111{left:584.105853pt;}
.x1c_c01111{left:593.671453pt;}
.x62_c01111{left:602.709053pt;}
.x56_c01111{left:613.088653pt;}
.x5d_c01111{left:622.971053pt;}
.x51_c01111{left:625.008253pt;}
.x24_c01111{left:625.954253pt;}
.x4a_c01111{left:631.933853pt;}
.x3d_c01111{left:633.399053pt;}
.x25_c01111{left:642.898653pt;}
.x3e_c01111{left:652.561053pt;}
}





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

.ir_c01112:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01112{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01112;src:url('chunks/assets/font_fa103ba41d22aeb0a9321229.woff2')format("woff");}.ff1_c01112{font-family:ff1_c01112;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01112;src:url('chunks/assets/font_070d371913538e4f548424d0.woff2')format("woff");}.ff2_c01112{font-family:ff2_c01112;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01112;src:url('chunks/assets/font_f3a1147e35842a3dda5c46a4.woff2')format("woff");}.ff3_c01112{font-family:ff3_c01112;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01112;src:url('chunks/assets/font_edcc006c864d99e56da12f3a.woff2')format("woff");}.ff4_c01112{font-family:ff4_c01112;line-height:0.689941;font-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_c01112{transform:matrix(0.099460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099460,0.000000,0.000000,0.250000,0,0);}
.mb_c01112{transform:matrix(0.100878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100878,0.000000,0.000000,0.250000,0,0);}
.m1b_c01112{transform:matrix(0.111041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111041,0.000000,0.000000,0.250000,0,0);}
.m7d_c01112{transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);}
.m2e_c01112{transform:matrix(0.131556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131556,0.000000,0.000000,0.250000,0,0);}
.ma_c01112{transform:matrix(0.145677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145677,0.000000,0.000000,0.250000,0,0);}
.m10_c01112{transform:matrix(0.161247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161247,0.000000,0.000000,0.250000,0,0);}
.m30_c01112{transform:matrix(0.163826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163826,0.000000,0.000000,0.250000,0,0);}
.m79_c01112{transform:matrix(0.165079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165079,0.000000,0.000000,0.250000,0,0);}
.ma0_c01112{transform:matrix(0.171195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171195,0.000000,0.000000,0.250000,0,0);}
.ma1_c01112{transform:matrix(0.175146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175146,0.000000,0.000000,0.250000,0,0);}
.mf_c01112{transform:matrix(0.176830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176830,0.000000,0.000000,0.250000,0,0);}
.m27_c01112{transform:matrix(0.180419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180419,0.000000,0.000000,0.250000,0,0);}
.me_c01112{transform:matrix(0.181402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181402,0.000000,0.000000,0.250000,0,0);}
.ma4_c01112{transform:matrix(0.189369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189369,0.000000,0.000000,0.250000,0,0);}
.m8_c01112{transform:matrix(0.193761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193761,0.000000,0.000000,0.250000,0,0);}
.m28_c01112{transform:matrix(0.204967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204967,0.000000,0.000000,0.250000,0,0);}
.m9c_c01112{transform:matrix(0.217485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217485,0.000000,0.000000,0.250000,0,0);}
.m9f_c01112{transform:matrix(0.221228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221228,0.000000,0.000000,0.250000,0,0);}
.m1e_c01112{transform:matrix(0.221535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221535,0.000000,0.000000,0.250000,0,0);}
.m29_c01112{transform:matrix(0.222314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222314,0.000000,0.000000,0.250000,0,0);}
.m6f_c01112{transform:matrix(0.236930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236930,0.000000,0.000000,0.250000,0,0);}
.m46_c01112{transform:matrix(0.242735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242735,0.000000,0.000000,0.250000,0,0);}
.m3f_c01112{transform:matrix(0.248017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248017,0.000000,0.000000,0.250000,0,0);}
.m9_c01112{transform:matrix(0.248884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248884,0.000000,0.000000,0.250000,0,0);}
.m36_c01112{transform:matrix(0.249551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249551,0.000000,0.000000,0.250000,0,0);}
.md_c01112{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01112{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m33_c01112{transform:matrix(0.254312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254312,0.000000,0.000000,0.250000,0,0);}
.m74_c01112{transform:matrix(0.257198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257198,0.000000,0.000000,0.250000,0,0);}
.m4a_c01112{transform:matrix(0.257303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257303,0.000000,0.000000,0.250000,0,0);}
.m73_c01112{transform:matrix(0.257909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257909,0.000000,0.000000,0.250000,0,0);}
.m24_c01112{transform:matrix(0.258647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258647,0.000000,0.000000,0.250000,0,0);}
.m6a_c01112{transform:matrix(0.258695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258695,0.000000,0.000000,0.250000,0,0);}
.m2d_c01112{transform:matrix(0.258765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258765,0.000000,0.000000,0.250000,0,0);}
.m56_c01112{transform:matrix(0.259221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259221,0.000000,0.000000,0.250000,0,0);}
.m32_c01112{transform:matrix(0.259548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259548,0.000000,0.000000,0.250000,0,0);}
.m15_c01112{transform:matrix(0.259658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259658,0.000000,0.000000,0.250000,0,0);}
.m53_c01112{transform:matrix(0.261898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261898,0.000000,0.000000,0.250000,0,0);}
.m76_c01112{transform:matrix(0.263840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263840,0.000000,0.000000,0.250000,0,0);}
.m51_c01112{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m8e_c01112{transform:matrix(0.264400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264400,0.000000,0.000000,0.250000,0,0);}
.m68_c01112{transform:matrix(0.264640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264640,0.000000,0.000000,0.250000,0,0);}
.m16_c01112{transform:matrix(0.265650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265650,0.000000,0.000000,0.250000,0,0);}
.m31_c01112{transform:matrix(0.266340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266340,0.000000,0.000000,0.250000,0,0);}
.m2_c01112{transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);}
.m47_c01112{transform:matrix(0.266768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266768,0.000000,0.000000,0.250000,0,0);}
.m71_c01112{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.m2a_c01112{transform:matrix(0.267110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267110,0.000000,0.000000,0.250000,0,0);}
.m20_c01112{transform:matrix(0.267283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267283,0.000000,0.000000,0.250000,0,0);}
.m9a_c01112{transform:matrix(0.267326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267326,0.000000,0.000000,0.250000,0,0);}
.m18_c01112{transform:matrix(0.267557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267557,0.000000,0.000000,0.250000,0,0);}
.m41_c01112{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m7c_c01112{transform:matrix(0.269166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269166,0.000000,0.000000,0.250000,0,0);}
.m4_c01112{transform:matrix(0.269265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269265,0.000000,0.000000,0.250000,0,0);}
.m26_c01112{transform:matrix(0.269715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269715,0.000000,0.000000,0.250000,0,0);}
.mad_c01112{transform:matrix(0.269857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269857,0.000000,0.000000,0.250000,0,0);}
.mab_c01112{transform:matrix(0.269937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269937,0.000000,0.000000,0.250000,0,0);}
.m3c_c01112{transform:matrix(0.269984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269984,0.000000,0.000000,0.250000,0,0);}
.m9e_c01112{transform:matrix(0.271132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271132,0.000000,0.000000,0.250000,0,0);}
.m1_c01112{transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);}
.m1f_c01112{transform:matrix(0.271616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271616,0.000000,0.000000,0.250000,0,0);}
.m77_c01112{transform:matrix(0.271786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271786,0.000000,0.000000,0.250000,0,0);}
.m23_c01112{transform:matrix(0.272173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272173,0.000000,0.000000,0.250000,0,0);}
.m96_c01112{transform:matrix(0.272187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272187,0.000000,0.000000,0.250000,0,0);}
.m83_c01112{transform:matrix(0.273180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273180,0.000000,0.000000,0.250000,0,0);}
.m4f_c01112{transform:matrix(0.273366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273366,0.000000,0.000000,0.250000,0,0);}
.m1c_c01112{transform:matrix(0.273671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273671,0.000000,0.000000,0.250000,0,0);}
.m85_c01112{transform:matrix(0.274532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274532,0.000000,0.000000,0.250000,0,0);}
.m88_c01112{transform:matrix(0.274905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274905,0.000000,0.000000,0.250000,0,0);}
.m8f_c01112{transform:matrix(0.275231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275231,0.000000,0.000000,0.250000,0,0);}
.m6b_c01112{transform:matrix(0.275593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275593,0.000000,0.000000,0.250000,0,0);}
.m5e_c01112{transform:matrix(0.275961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275961,0.000000,0.000000,0.250000,0,0);}
.m78_c01112{transform:matrix(0.276146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276146,0.000000,0.000000,0.250000,0,0);}
.m59_c01112{transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);}
.m19_c01112{transform:matrix(0.276406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276406,0.000000,0.000000,0.250000,0,0);}
.m87_c01112{transform:matrix(0.277083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277083,0.000000,0.000000,0.250000,0,0);}
.m0_c01112{transform:matrix(0.277504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277504,0.000000,0.000000,0.250000,0,0);}
.m1d_c01112{transform:matrix(0.278536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278536,0.000000,0.000000,0.250000,0,0);}
.m8a_c01112{transform:matrix(0.279348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279348,0.000000,0.000000,0.250000,0,0);}
.m60_c01112{transform:matrix(0.280997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280997,0.000000,0.000000,0.250000,0,0);}
.m22_c01112{transform:matrix(0.281059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281059,0.000000,0.000000,0.250000,0,0);}
.m82_c01112{transform:matrix(0.281312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281312,0.000000,0.000000,0.250000,0,0);}
.m3b_c01112{transform:matrix(0.281472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281472,0.000000,0.000000,0.250000,0,0);}
.m3d_c01112{transform:matrix(0.282049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282049,0.000000,0.000000,0.250000,0,0);}
.ma3_c01112{transform:matrix(0.282272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282272,0.000000,0.000000,0.250000,0,0);}
.ma5_c01112{transform:matrix(0.282951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282951,0.000000,0.000000,0.250000,0,0);}
.m3e_c01112{transform:matrix(0.283238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283238,0.000000,0.000000,0.250000,0,0);}
.m1a_c01112{transform:matrix(0.283259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283259,0.000000,0.000000,0.250000,0,0);}
.m25_c01112{transform:matrix(0.283849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283849,0.000000,0.000000,0.250000,0,0);}
.m91_c01112{transform:matrix(0.283932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283932,0.000000,0.000000,0.250000,0,0);}
.m37_c01112{transform:matrix(0.284164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284164,0.000000,0.000000,0.250000,0,0);}
.m6_c01112{transform:matrix(0.285521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285521,0.000000,0.000000,0.250000,0,0);}
.m99_c01112{transform:matrix(0.285823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285823,0.000000,0.000000,0.250000,0,0);}
.m7e_c01112{transform:matrix(0.285998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285998,0.000000,0.000000,0.250000,0,0);}
.m14_c01112{transform:matrix(0.286503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286503,0.000000,0.000000,0.250000,0,0);}
.m62_c01112{transform:matrix(0.287360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287360,0.000000,0.000000,0.250000,0,0);}
.m12_c01112{transform:matrix(0.287722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287722,0.000000,0.000000,0.250000,0,0);}
.m2f_c01112{transform:matrix(0.287745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287745,0.000000,0.000000,0.250000,0,0);}
.m63_c01112{transform:matrix(0.288309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288309,0.000000,0.000000,0.250000,0,0);}
.m7f_c01112{transform:matrix(0.289851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289851,0.000000,0.000000,0.250000,0,0);}
.m13_c01112{transform:matrix(0.290129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290129,0.000000,0.000000,0.250000,0,0);}
.m6d_c01112{transform:matrix(0.290636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290636,0.000000,0.000000,0.250000,0,0);}
.m86_c01112{transform:matrix(0.290712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290712,0.000000,0.000000,0.250000,0,0);}
.maa_c01112{transform:matrix(0.291324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291324,0.000000,0.000000,0.250000,0,0);}
.m3_c01112{transform:matrix(0.291392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291392,0.000000,0.000000,0.250000,0,0);}
.m35_c01112{transform:matrix(0.291752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291752,0.000000,0.000000,0.250000,0,0);}
.m5_c01112{transform:matrix(0.292099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292099,0.000000,0.000000,0.250000,0,0);}
.m6c_c01112{transform:matrix(0.293404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293404,0.000000,0.000000,0.250000,0,0);}
.m34_c01112{transform:matrix(0.294119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294119,0.000000,0.000000,0.250000,0,0);}
.m90_c01112{transform:matrix(0.295448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295448,0.000000,0.000000,0.250000,0,0);}
.m4e_c01112{transform:matrix(0.296387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296387,0.000000,0.000000,0.250000,0,0);}
.m7a_c01112{transform:matrix(0.296413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296413,0.000000,0.000000,0.250000,0,0);}
.m66_c01112{transform:matrix(0.296953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296953,0.000000,0.000000,0.250000,0,0);}
.m5a_c01112{transform:matrix(0.298226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298226,0.000000,0.000000,0.250000,0,0);}
.m64_c01112{transform:matrix(0.298342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298342,0.000000,0.000000,0.250000,0,0);}
.m70_c01112{transform:matrix(0.299157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299157,0.000000,0.000000,0.250000,0,0);}
.m42_c01112{transform:matrix(0.299174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299174,0.000000,0.000000,0.250000,0,0);}
.m72_c01112{transform:matrix(0.299336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299336,0.000000,0.000000,0.250000,0,0);}
.m7_c01112{transform:matrix(0.299607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299607,0.000000,0.000000,0.250000,0,0);}
.m54_c01112{transform:matrix(0.299788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299788,0.000000,0.000000,0.250000,0,0);}
.m17_c01112{transform:matrix(0.300267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300267,0.000000,0.000000,0.250000,0,0);}
.m93_c01112{transform:matrix(0.301700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301700,0.000000,0.000000,0.250000,0,0);}
.m4b_c01112{transform:matrix(0.302714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302714,0.000000,0.000000,0.250000,0,0);}
.m57_c01112{transform:matrix(0.302833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302833,0.000000,0.000000,0.250000,0,0);}
.m11_c01112{transform:matrix(0.303616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303616,0.000000,0.000000,0.250000,0,0);}
.m80_c01112{transform:matrix(0.304569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304569,0.000000,0.000000,0.250000,0,0);}
.m39_c01112{transform:matrix(0.304833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304833,0.000000,0.000000,0.250000,0,0);}
.m40_c01112{transform:matrix(0.304984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304984,0.000000,0.000000,0.250000,0,0);}
.m5c_c01112{transform:matrix(0.305538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305538,0.000000,0.000000,0.250000,0,0);}
.m97_c01112{transform:matrix(0.306172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306172,0.000000,0.000000,0.250000,0,0);}
.ma9_c01112{transform:matrix(0.306989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306989,0.000000,0.000000,0.250000,0,0);}
.m43_c01112{transform:matrix(0.307530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307530,0.000000,0.000000,0.250000,0,0);}
.m2b_c01112{transform:matrix(0.307699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307699,0.000000,0.000000,0.250000,0,0);}
.m21_c01112{transform:matrix(0.307879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307879,0.000000,0.000000,0.250000,0,0);}
.mc_c01112{transform:matrix(0.308004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308004,0.000000,0.000000,0.250000,0,0);}
.mac_c01112{transform:matrix(0.308150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308150,0.000000,0.000000,0.250000,0,0);}
.m89_c01112{transform:matrix(0.308211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308211,0.000000,0.000000,0.250000,0,0);}
.m84_c01112{transform:matrix(0.308215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308215,0.000000,0.000000,0.250000,0,0);}
.m45_c01112{transform:matrix(0.309648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309648,0.000000,0.000000,0.250000,0,0);}
.m3a_c01112{transform:matrix(0.311641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311641,0.000000,0.000000,0.250000,0,0);}
.m6e_c01112{transform:matrix(0.312730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312730,0.000000,0.000000,0.250000,0,0);}
.m69_c01112{transform:matrix(0.313350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313350,0.000000,0.000000,0.250000,0,0);}
.m44_c01112{transform:matrix(0.314120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314120,0.000000,0.000000,0.250000,0,0);}
.ma8_c01112{transform:matrix(0.315482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315482,0.000000,0.000000,0.250000,0,0);}
.m5f_c01112{transform:matrix(0.315731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315731,0.000000,0.000000,0.250000,0,0);}
.m9b_c01112{transform:matrix(0.316253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316253,0.000000,0.000000,0.250000,0,0);}
.m95_c01112{transform:matrix(0.318180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318180,0.000000,0.000000,0.250000,0,0);}
.m4d_c01112{transform:matrix(0.320471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320471,0.000000,0.000000,0.250000,0,0);}
.m5b_c01112{transform:matrix(0.320614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320614,0.000000,0.000000,0.250000,0,0);}
.m49_c01112{transform:matrix(0.321094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321094,0.000000,0.000000,0.250000,0,0);}
.m8c_c01112{transform:matrix(0.323090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323090,0.000000,0.000000,0.250000,0,0);}
.m58_c01112{transform:matrix(0.323394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323394,0.000000,0.000000,0.250000,0,0);}
.m92_c01112{transform:matrix(0.326087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326087,0.000000,0.000000,0.250000,0,0);}
.m52_c01112{transform:matrix(0.326167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326167,0.000000,0.000000,0.250000,0,0);}
.m98_c01112{transform:matrix(0.327026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327026,0.000000,0.000000,0.250000,0,0);}
.m94_c01112{transform:matrix(0.328801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328801,0.000000,0.000000,0.250000,0,0);}
.m8d_c01112{transform:matrix(0.329202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329202,0.000000,0.000000,0.250000,0,0);}
.m5d_c01112{transform:matrix(0.329978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329978,0.000000,0.000000,0.250000,0,0);}
.ma2_c01112{transform:matrix(0.330446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330446,0.000000,0.000000,0.250000,0,0);}
.m50_c01112{transform:matrix(0.333519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333519,0.000000,0.000000,0.250000,0,0);}
.m61_c01112{transform:matrix(0.333549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333549,0.000000,0.000000,0.250000,0,0);}
.m8b_c01112{transform:matrix(0.334947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334947,0.000000,0.000000,0.250000,0,0);}
.m75_c01112{transform:matrix(0.335368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335368,0.000000,0.000000,0.250000,0,0);}
.m65_c01112{transform:matrix(0.337345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337345,0.000000,0.000000,0.250000,0,0);}
.m2c_c01112{transform:matrix(0.339853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339853,0.000000,0.000000,0.250000,0,0);}
.m48_c01112{transform:matrix(0.342591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342591,0.000000,0.000000,0.250000,0,0);}
.m55_c01112{transform:matrix(0.344792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344792,0.000000,0.000000,0.250000,0,0);}
.m67_c01112{transform:matrix(0.357151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357151,0.000000,0.000000,0.250000,0,0);}
.m81_c01112{transform:matrix(0.357328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357328,0.000000,0.000000,0.250000,0,0);}
.m38_c01112{transform:matrix(0.363992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363992,0.000000,0.000000,0.250000,0,0);}
.ma7_c01112{transform:matrix(0.372639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372639,0.000000,0.000000,0.250000,0,0);}
.m7b_c01112{transform:matrix(0.377420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377420,0.000000,0.000000,0.250000,0,0);}
.m4c_c01112{transform:matrix(0.403692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403692,0.000000,0.000000,0.250000,0,0);}
.v0_c01112{vertical-align:0.000000px;}
.ls4_c01112{letter-spacing:-4.102567px;}
.ls10_c01112{letter-spacing:-3.451140px;}
.ls13_c01112{letter-spacing:-3.014550px;}
.lsd_c01112{letter-spacing:-2.744280px;}
.ls16_c01112{letter-spacing:-2.661127px;}
.ls5_c01112{letter-spacing:-2.619540px;}
.ls27_c01112{letter-spacing:-2.591827px;}
.lsa_c01112{letter-spacing:-1.476090px;}
.ls2d_c01112{letter-spacing:-0.560102px;}
.lsb_c01112{letter-spacing:-0.413127px;}
.ls7_c01112{letter-spacing:0.000000px;}
.ls26_c01112{letter-spacing:0.836354px;}
.lsf_c01112{letter-spacing:1.009800px;}
.ls1d_c01112{letter-spacing:1.269738px;}
.ls2c_c01112{letter-spacing:1.416730px;}
.ls2a_c01112{letter-spacing:1.531138px;}
.ls19_c01112{letter-spacing:1.910700px;}
.ls25_c01112{letter-spacing:2.316600px;}
.ls18_c01112{letter-spacing:2.363770px;}
.ls23_c01112{letter-spacing:2.828398px;}
.ls1b_c01112{letter-spacing:2.941060px;}
.ls0_c01112{letter-spacing:3.109293px;}
.ls14_c01112{letter-spacing:3.405610px;}
.lse_c01112{letter-spacing:3.474671px;}
.ls15_c01112{letter-spacing:3.484810px;}
.ls1a_c01112{letter-spacing:3.643200px;}
.ls9_c01112{letter-spacing:3.702610px;}
.ls1_c01112{letter-spacing:3.742200px;}
.ls1c_c01112{letter-spacing:3.762000px;}
.ls2_c01112{letter-spacing:3.801610px;}
.ls17_c01112{letter-spacing:3.900610px;}
.ls3_c01112{letter-spacing:3.920400px;}
.ls1e_c01112{letter-spacing:3.940200px;}
.ls2b_c01112{letter-spacing:4.029310px;}
.ls20_c01112{letter-spacing:4.039200px;}
.lsc_c01112{letter-spacing:4.118400px;}
.ls22_c01112{letter-spacing:4.257000px;}
.ls24_c01112{letter-spacing:4.276810px;}
.ls12_c01112{letter-spacing:4.306500px;}
.ls21_c01112{letter-spacing:29.937798px;}
.ls6_c01112{letter-spacing:54.172998px;}
.ls8_c01112{letter-spacing:58.449798px;}
.ls29_c01112{letter-spacing:61.300998px;}
.ls11_c01112{letter-spacing:62.726400px;}
.ls1f_c01112{letter-spacing:64.152198px;}
.ls28_c01112{letter-spacing:65.577798px;}
.sc__c01112{text-shadow:none;}
.sc0_c01112{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01112{-webkit-text-stroke:0px transparent;}
.sc0_c01112{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01112{word-spacing:-24.641793px;}
.ws1_c01112{word-spacing:-19.008050px;}
.ws2_c01112{word-spacing:-3.978622px;}
.ws3_c01112{word-spacing:0.000000px;}
._4_c01112{margin-left:-19.034976px;}
._0_c01112{margin-left:-2.411640px;}
._2_c01112{width:1.141184px;}
._3_c01112{width:16.195014px;}
._1_c01112{width:35.857800px;}
.fc0_c01112{color:transparent;}
.fse_c01112{font-size:17.028000px;}
.fs1b_c01112{font-size:29.937798px;}
.fs24_c01112{font-size:33.264000px;}
.fs13_c01112{font-size:38.214000px;}
.fs14_c01112{font-size:40.788000px;}
.fs7_c01112{font-size:42.174000px;}
.fs1f_c01112{font-size:46.332000px;}
.fsa_c01112{font-size:48.114000px;}
.fs16_c01112{font-size:52.074000px;}
.fs4_c01112{font-size:54.172998px;}
.fs5_c01112{font-size:58.449798px;}
.fs22_c01112{font-size:61.300998px;}
.fsd_c01112{font-size:62.726400px;}
.fs8_c01112{font-size:63.558000px;}
.fs19_c01112{font-size:64.152198px;}
.fs21_c01112{font-size:65.577798px;}
.fsb_c01112{font-size:67.320000px;}
.fs10_c01112{font-size:68.112198px;}
.fs11_c01112{font-size:69.696198px;}
.fs15_c01112{font-size:72.864000px;}
.fs6_c01112{font-size:74.052198px;}
.fs0_c01112{font-size:74.844000px;}
.fs17_c01112{font-size:75.240000px;}
.fs1_c01112{font-size:76.032198px;}
.fs12_c01112{font-size:78.012198px;}
.fs2_c01112{font-size:78.408000px;}
.fs18_c01112{font-size:78.804000px;}
.fs23_c01112{font-size:80.586198px;}
.fs1a_c01112{font-size:80.784000px;}
.fs9_c01112{font-size:82.368000px;}
.fs20_c01112{font-size:83.160000px;}
.fs1c_c01112{font-size:85.140000px;}
.fs1e_c01112{font-size:85.536198px;}
.fs1d_c01112{font-size:85.932198px;}
.fsf_c01112{font-size:86.130000px;}
.fsc_c01112{font-size:98.604000px;}
.fs3_c01112{font-size:117.216198px;}
.y0_c01112{bottom:0.000000px;}
.y1_c01112{bottom:76.500000px;}
.y1a_c01112{bottom:164.563785px;}
.y19_c01112{bottom:197.713935px;}
.y1b_c01112{bottom:225.156735px;}
.y18_c01112{bottom:230.146335px;}
.y17_c01112{bottom:295.723935px;}
.y16_c01112{bottom:327.087135px;}
.y15_c01112{bottom:359.158185px;}
.y14_c01112{bottom:375.552585px;}
.y13_c01112{bottom:390.521385px;}
.y12_c01112{bottom:422.953785px;}
.y11_c01112{bottom:454.678335px;}
.y10_c01112{bottom:485.685135px;}
.ye_c01112{bottom:486.397935px;}
.yf_c01112{bottom:491.743935px;}
.yd_c01112{bottom:518.468985px;}
.yc_c01112{bottom:550.901385px;}
.yb_c01112{bottom:583.333785px;}
.ya_c01112{bottom:615.053385px;}
.y9_c01112{bottom:647.485785px;}
.y8_c01112{bottom:668.156985px;}
.y7_c01112{bottom:679.566735px;}
.y6_c01112{bottom:711.637785px;}
.y4_c01112{bottom:838.521135px;}
.y3_c01112{bottom:902.668185px;}
.y2_c01112{bottom:935.813385px;}
.y5_c01112{bottom:1070.176185px;}
.h10_c01112{height:17.759672px;}
.h1d_c01112{height:19.938573px;}
.h27_c01112{height:34.693313px;}
.h6_c01112{height:36.079217px;}
.h7_c01112{height:38.927565px;}
.h15_c01112{height:39.856008px;}
.h16_c01112{height:40.031191px;}
.h25_c01112{height:40.826465px;}
.hf_c01112{height:41.775782px;}
.h1b_c01112{height:42.725364px;}
.h24_c01112{height:43.674813px;}
.h9_c01112{height:43.986164px;}
.h22_c01112{height:45.472324px;}
.hc_c01112{height:47.221260px;}
.h18_c01112{height:54.311555px;}
.ha_c01112{height:62.378701px;}
.h12_c01112{height:66.848397px;}
.hd_c01112{height:70.212656px;}
.h20_c01112{height:71.038894px;}
.h17_c01112{height:71.512031px;}
.h8_c01112{height:72.678183px;}
.h13_c01112{height:72.690957px;}
.h2_c01112{height:73.455293px;}
.h19_c01112{height:73.843945px;}
.h3_c01112{height:74.621444px;}
.h14_c01112{height:76.564706px;}
.h4_c01112{height:76.953164px;}
.h1a_c01112{height:77.341816px;}
.h26_c01112{height:79.090946px;}
.h1c_c01112{height:79.285078px;}
.hb_c01112{height:80.839688px;}
.h23_c01112{height:81.616992px;}
.h1e_c01112{height:83.560254px;}
.h21_c01112{height:83.949101px;}
.h1f_c01112{height:84.337753px;}
.h11_c01112{height:84.531885px;}
.he_c01112{height:96.774434px;}
.h5_c01112{height:122.252832px;}
.h1_c01112{height:1110.000000px;}
.h0_c01112{height:1263.000000px;}
.w1_c01112{width:775.500000px;}
.w0_c01112{width:892.500000px;}
.x0_c01112{left:0.000000px;}
.x1_c01112{left:58.500000px;}
.x6b_c01112{left:75.533685px;}
.x16_c01112{left:78.874935px;}
.x6c_c01112{left:130.646985px;}
.x40_c01112{left:132.523035px;}
.x2_c01112{left:133.889235px;}
.xe_c01112{left:135.186135px;}
.xf_c01112{left:152.491335px;}
.x5a_c01112{left:154.793085px;}
.x22_c01112{left:156.114735px;}
.x7a_c01112{left:164.371335px;}
.x41_c01112{left:166.093935px;}
.x10_c01112{left:168.568935px;}
.x48_c01112{left:177.944235px;}
.x4e_c01112{left:179.731185px;}
.x6d_c01112{left:185.220735px;}
.x37_c01112{left:187.670985px;}
.x4f_c01112{left:190.205385px;}
.x55_c01112{left:198.466935px;}
.x47_c01112{left:199.724235px;}
.x3_c01112{left:201.149835px;}
.x31_c01112{left:210.807285px;}
.x11_c01112{left:213.118935px;}
.x42_c01112{left:220.469685px;}
.x23_c01112{left:222.167535px;}
.x75_c01112{left:230.122185px;}
.x6e_c01112{left:231.245835px;}
.x2b_c01112{left:232.676385px;}
.x4_c01112{left:234.834585px;}
.x49_c01112{left:243.531735px;}
.x56_c01112{left:244.709835px;}
.x50_c01112{left:254.599935px;}
.x24_c01112{left:256.035435px;}
.x43_c01112{left:266.732385px;}
.x12_c01112{left:268.355985px;}
.x6f_c01112{left:276.340335px;}
.x5_c01112{left:277.874835px;}
.x38_c01112{left:286.136385px;}
.x63_c01112{left:288.240135px;}
.x17_c01112{left:289.284585px;}
.x39_c01112{left:299.328135px;}
.x25_c01112{left:300.337935px;}
.x70_c01112{left:308.837085px;}
.x18_c01112{left:311.079435px;}
.x76_c01112{left:319.811235px;}
.x32_c01112{left:321.419985px;}
.x19_c01112{left:323.721735px;}
.x51_c01112{left:332.661435px;}
.x57_c01112{left:343.709835px;}
.x3a_c01112{left:345.105735px;}
.x6_c01112{left:346.189785px;}
.x7b_c01112{left:353.392035px;}
.x13_c01112{left:365.247285px;}
.x1a_c01112{left:367.355985px;}
.x6a_c01112{left:375.944235px;}
.x4a_c01112{left:377.538135px;}
.x7_c01112{left:389.041935px;}
.x71_c01112{left:395.867985px;}
.x67_c01112{left:399.585435px;}
.x7c_c01112{left:407.599485px;}
.x26_c01112{left:409.475535px;}
.x44_c01112{left:421.637685px;}
.x2c_c01112{left:423.855285px;}
.x5b_c01112{left:432.017835px;}
.x33_c01112{left:434.096835px;}
.x1b_c01112{left:436.428285px;}
.x77_c01112{left:441.922785px;}
.x3b_c01112{left:443.392935px;}
.x8_c01112{left:444.566085px;}
.x1c_c01112{left:456.366885px;}
.x68_c01112{left:465.529335px;}
.x4b_c01112{left:466.633185px;}
.x58_c01112{left:475.666935px;}
.x9_c01112{left:478.523085px;}
.x3c_c01112{left:479.646735px;}
.x52_c01112{left:488.368635px;}
.x64_c01112{left:497.486535px;}
.x27_c01112{left:498.892335px;}
.x1d_c01112{left:500.149635px;}
.x7d_c01112{left:507.975585px;}
.x14_c01112{left:511.089135px;}
.x5c_c01112{left:520.122885px;}
.x2d_c01112{left:521.553435px;}
.x65_c01112{left:532.215735px;}
.x5f_c01112{left:542.808735px;}
.xa_c01112{left:546.427185px;}
.x2e_c01112{left:554.193735px;}
.x3d_c01112{left:555.352035px;}
.x15_c01112{left:556.544985px;}
.x34_c01112{left:564.163035px;}
.x1e_c01112{left:566.331135px;}
.x72_c01112{left:568.024035px;}
.x73_c01112{left:576.087585px;}
.xb_c01112{left:577.864635px;}
.x59_c01112{left:586.918185px;}
.x69_c01112{left:596.550885px;}
.x4c_c01112{left:598.530885px;}
.x1f_c01112{left:601.307835px;}
.x60_c01112{left:607.950735px;}
.xc_c01112{left:609.435735px;}
.x78_c01112{left:618.281385px;}
.x20_c01112{left:622.488885px;}
.x53_c01112{left:630.324735px;}
.x4d_c01112{left:632.359185px;}
.x66_c01112{left:641.640435px;}
.x3e_c01112{left:642.724485px;}
.x30_c01112{left:644.966835px;}
.x74_c01112{left:651.842385px;}
.x35_c01112{left:654.455985px;}
.x28_c01112{left:656.426085px;}
.x5d_c01112{left:664.133235px;}
.xd_c01112{left:665.746935px;}
.x29_c01112{left:671.281035px;}
.x2f_c01112{left:674.251035px;}
.x2a_c01112{left:677.166585px;}
.x79_c01112{left:684.581685px;}
.x36_c01112{left:687.155685px;}
.x5e_c01112{left:697.961535px;}
.x45_c01112{left:699.035685px;}
.x61_c01112{left:700.466235px;}
.x62_c01112{left:701.743335px;}
.x21_c01112{left:706.856685px;}
.x3f_c01112{left:709.158435px;}
.x54_c01112{left:720.335535px;}
.x46_c01112{left:731.448285px;}
.x7e_c01112{left:761.128485px;}
@media print{
.v0_c01112{vertical-align:0.000000pt;}
.ls4_c01112{letter-spacing:-3.646726pt;}
.ls10_c01112{letter-spacing:-3.067680pt;}
.ls13_c01112{letter-spacing:-2.679600pt;}
.lsd_c01112{letter-spacing:-2.439360pt;}
.ls16_c01112{letter-spacing:-2.365446pt;}
.ls5_c01112{letter-spacing:-2.328480pt;}
.ls27_c01112{letter-spacing:-2.303846pt;}
.lsa_c01112{letter-spacing:-1.312080pt;}
.ls2d_c01112{letter-spacing:-0.497869pt;}
.lsb_c01112{letter-spacing:-0.367224pt;}
.ls7_c01112{letter-spacing:0.000000pt;}
.ls26_c01112{letter-spacing:0.743426pt;}
.lsf_c01112{letter-spacing:0.897600pt;}
.ls1d_c01112{letter-spacing:1.128656pt;}
.ls2c_c01112{letter-spacing:1.259315pt;}
.ls2a_c01112{letter-spacing:1.361011pt;}
.ls19_c01112{letter-spacing:1.698400pt;}
.ls25_c01112{letter-spacing:2.059200pt;}
.ls18_c01112{letter-spacing:2.101129pt;}
.ls23_c01112{letter-spacing:2.514131pt;}
.ls1b_c01112{letter-spacing:2.614275pt;}
.ls0_c01112{letter-spacing:2.763816pt;}
.ls14_c01112{letter-spacing:3.027209pt;}
.lse_c01112{letter-spacing:3.088597pt;}
.ls15_c01112{letter-spacing:3.097609pt;}
.ls1a_c01112{letter-spacing:3.238400pt;}
.ls9_c01112{letter-spacing:3.291209pt;}
.ls1_c01112{letter-spacing:3.326400pt;}
.ls1c_c01112{letter-spacing:3.344000pt;}
.ls2_c01112{letter-spacing:3.379209pt;}
.ls17_c01112{letter-spacing:3.467209pt;}
.ls3_c01112{letter-spacing:3.484800pt;}
.ls1e_c01112{letter-spacing:3.502400pt;}
.ls2b_c01112{letter-spacing:3.581609pt;}
.ls20_c01112{letter-spacing:3.590400pt;}
.lsc_c01112{letter-spacing:3.660800pt;}
.ls22_c01112{letter-spacing:3.784000pt;}
.ls24_c01112{letter-spacing:3.801609pt;}
.ls12_c01112{letter-spacing:3.828000pt;}
.ls21_c01112{letter-spacing:26.611376pt;}
.ls6_c01112{letter-spacing:48.153776pt;}
.ls8_c01112{letter-spacing:51.955376pt;}
.ls29_c01112{letter-spacing:54.489776pt;}
.ls11_c01112{letter-spacing:55.756800pt;}
.ls1f_c01112{letter-spacing:57.024176pt;}
.ls28_c01112{letter-spacing:58.291376pt;}
.ws0_c01112{word-spacing:-21.903816pt;}
.ws1_c01112{word-spacing:-16.896044pt;}
.ws2_c01112{word-spacing:-3.536553pt;}
.ws3_c01112{word-spacing:0.000000pt;}
._4_c01112{margin-left:-16.919979pt;}
._0_c01112{margin-left:-2.143680pt;}
._2_c01112{width:1.014386pt;}
._3_c01112{width:14.395568pt;}
._1_c01112{width:31.873600pt;}
.fse_c01112{font-size:15.136000pt;}
.fs1b_c01112{font-size:26.611376pt;}
.fs24_c01112{font-size:29.568000pt;}
.fs13_c01112{font-size:33.968000pt;}
.fs14_c01112{font-size:36.256000pt;}
.fs7_c01112{font-size:37.488000pt;}
.fs1f_c01112{font-size:41.184000pt;}
.fsa_c01112{font-size:42.768000pt;}
.fs16_c01112{font-size:46.288000pt;}
.fs4_c01112{font-size:48.153776pt;}
.fs5_c01112{font-size:51.955376pt;}
.fs22_c01112{font-size:54.489776pt;}
.fsd_c01112{font-size:55.756800pt;}
.fs8_c01112{font-size:56.496000pt;}
.fs19_c01112{font-size:57.024176pt;}
.fs21_c01112{font-size:58.291376pt;}
.fsb_c01112{font-size:59.840000pt;}
.fs10_c01112{font-size:60.544176pt;}
.fs11_c01112{font-size:61.952176pt;}
.fs15_c01112{font-size:64.768000pt;}
.fs6_c01112{font-size:65.824176pt;}
.fs0_c01112{font-size:66.528000pt;}
.fs17_c01112{font-size:66.880000pt;}
.fs1_c01112{font-size:67.584176pt;}
.fs12_c01112{font-size:69.344176pt;}
.fs2_c01112{font-size:69.696000pt;}
.fs18_c01112{font-size:70.048000pt;}
.fs23_c01112{font-size:71.632176pt;}
.fs1a_c01112{font-size:71.808000pt;}
.fs9_c01112{font-size:73.216000pt;}
.fs20_c01112{font-size:73.920000pt;}
.fs1c_c01112{font-size:75.680000pt;}
.fs1e_c01112{font-size:76.032176pt;}
.fs1d_c01112{font-size:76.384176pt;}
.fsf_c01112{font-size:76.560000pt;}
.fsc_c01112{font-size:87.648000pt;}
.fs3_c01112{font-size:104.192176pt;}
.y0_c01112{bottom:0.000000pt;}
.y1_c01112{bottom:68.000000pt;}
.y1a_c01112{bottom:146.278920pt;}
.y19_c01112{bottom:175.745720pt;}
.y1b_c01112{bottom:200.139320pt;}
.y18_c01112{bottom:204.574520pt;}
.y17_c01112{bottom:262.865720pt;}
.y16_c01112{bottom:290.744120pt;}
.y15_c01112{bottom:319.251720pt;}
.y14_c01112{bottom:333.824520pt;}
.y13_c01112{bottom:347.130120pt;}
.y12_c01112{bottom:375.958920pt;}
.y11_c01112{bottom:404.158520pt;}
.y10_c01112{bottom:431.720120pt;}
.ye_c01112{bottom:432.353720pt;}
.yf_c01112{bottom:437.105720pt;}
.yd_c01112{bottom:460.861320pt;}
.yc_c01112{bottom:489.690120pt;}
.yb_c01112{bottom:518.518920pt;}
.ya_c01112{bottom:546.714120pt;}
.y9_c01112{bottom:575.542920pt;}
.y8_c01112{bottom:593.917320pt;}
.y7_c01112{bottom:604.059320pt;}
.y6_c01112{bottom:632.566920pt;}
.y4_c01112{bottom:745.352120pt;}
.y3_c01112{bottom:802.371720pt;}
.y2_c01112{bottom:831.834120pt;}
.y5_c01112{bottom:951.267720pt;}
.h10_c01112{height:15.786375pt;}
.h1d_c01112{height:17.723176pt;}
.h27_c01112{height:30.838500pt;}
.h6_c01112{height:32.070415pt;}
.h7_c01112{height:34.602280pt;}
.h15_c01112{height:35.427563pt;}
.h16_c01112{height:35.583281pt;}
.h25_c01112{height:36.290191pt;}
.hf_c01112{height:37.134029pt;}
.h1b_c01112{height:37.978101pt;}
.h24_c01112{height:38.822056pt;}
.h9_c01112{height:39.098813pt;}
.h22_c01112{height:40.419844pt;}
.hc_c01112{height:41.974453pt;}
.h18_c01112{height:48.276938pt;}
.ha_c01112{height:55.447734pt;}
.h12_c01112{height:59.420798pt;}
.hd_c01112{height:62.411250pt;}
.h20_c01112{height:63.145684pt;}
.h17_c01112{height:63.566250pt;}
.h8_c01112{height:64.602829pt;}
.h13_c01112{height:64.614184pt;}
.h2_c01112{height:65.293594pt;}
.h19_c01112{height:65.639063pt;}
.h3_c01112{height:66.330173pt;}
.h14_c01112{height:68.057516pt;}
.h4_c01112{height:68.402813pt;}
.h1a_c01112{height:68.748281pt;}
.h26_c01112{height:70.303063pt;}
.h1c_c01112{height:70.475625pt;}
.hb_c01112{height:71.857500pt;}
.h23_c01112{height:72.548438pt;}
.h1e_c01112{height:74.275781pt;}
.h21_c01112{height:74.621423pt;}
.h1f_c01112{height:74.966891pt;}
.h11_c01112{height:75.139453pt;}
.he_c01112{height:86.021719pt;}
.h5_c01112{height:108.669184pt;}
.h1_c01112{height:986.666667pt;}
.h0_c01112{height:1122.666667pt;}
.w1_c01112{width:689.333333pt;}
.w0_c01112{width:793.333333pt;}
.x0_c01112{left:0.000000pt;}
.x1_c01112{left:52.000000pt;}
.x6b_c01112{left:67.141053pt;}
.x16_c01112{left:70.111053pt;}
.x6c_c01112{left:116.130653pt;}
.x40_c01112{left:117.798253pt;}
.x2_c01112{left:119.012653pt;}
.xe_c01112{left:120.165453pt;}
.xf_c01112{left:135.547853pt;}
.x5a_c01112{left:137.593853pt;}
.x22_c01112{left:138.768653pt;}
.x7a_c01112{left:146.107853pt;}
.x41_c01112{left:147.639053pt;}
.x10_c01112{left:149.839053pt;}
.x48_c01112{left:158.172653pt;}
.x4e_c01112{left:159.761053pt;}
.x6d_c01112{left:164.640653pt;}
.x37_c01112{left:166.818653pt;}
.x4f_c01112{left:169.071453pt;}
.x55_c01112{left:176.415053pt;}
.x47_c01112{left:177.532653pt;}
.x3_c01112{left:178.799853pt;}
.x31_c01112{left:187.384253pt;}
.x11_c01112{left:189.439053pt;}
.x42_c01112{left:195.973053pt;}
.x23_c01112{left:197.482253pt;}
.x75_c01112{left:204.553053pt;}
.x6e_c01112{left:205.551853pt;}
.x2b_c01112{left:206.823453pt;}
.x4_c01112{left:208.741853pt;}
.x49_c01112{left:216.472653pt;}
.x56_c01112{left:217.519853pt;}
.x50_c01112{left:226.311053pt;}
.x24_c01112{left:227.587053pt;}
.x43_c01112{left:237.095453pt;}
.x12_c01112{left:238.538653pt;}
.x6f_c01112{left:245.635853pt;}
.x5_c01112{left:246.999853pt;}
.x38_c01112{left:254.343453pt;}
.x63_c01112{left:256.213453pt;}
.x17_c01112{left:257.141853pt;}
.x39_c01112{left:266.069453pt;}
.x25_c01112{left:266.967053pt;}
.x70_c01112{left:274.521853pt;}
.x18_c01112{left:276.515053pt;}
.x76_c01112{left:284.276653pt;}
.x32_c01112{left:285.706653pt;}
.x19_c01112{left:287.752653pt;}
.x51_c01112{left:295.699053pt;}
.x57_c01112{left:305.519853pt;}
.x3a_c01112{left:306.760653pt;}
.x6_c01112{left:307.724253pt;}
.x7b_c01112{left:314.126253pt;}
.x13_c01112{left:324.664253pt;}
.x1a_c01112{left:326.538653pt;}
.x6a_c01112{left:334.172653pt;}
.x4a_c01112{left:335.589453pt;}
.x7_c01112{left:345.815053pt;}
.x71_c01112{left:351.882653pt;}
.x67_c01112{left:355.187053pt;}
.x7c_c01112{left:362.310653pt;}
.x26_c01112{left:363.978253pt;}
.x44_c01112{left:374.789053pt;}
.x2c_c01112{left:376.760253pt;}
.x5b_c01112{left:384.015853pt;}
.x33_c01112{left:385.863853pt;}
.x1b_c01112{left:387.936253pt;}
.x77_c01112{left:392.820253pt;}
.x3b_c01112{left:394.127053pt;}
.x8_c01112{left:395.169853pt;}
.x1c_c01112{left:405.659453pt;}
.x68_c01112{left:413.803853pt;}
.x4b_c01112{left:414.785053pt;}
.x58_c01112{left:422.815053pt;}
.x9_c01112{left:425.353853pt;}
.x3c_c01112{left:426.352653pt;}
.x52_c01112{left:434.105453pt;}
.x64_c01112{left:442.210253pt;}
.x27_c01112{left:443.459853pt;}
.x1d_c01112{left:444.577453pt;}
.x7d_c01112{left:451.533853pt;}
.x14_c01112{left:454.301453pt;}
.x5c_c01112{left:462.331453pt;}
.x2d_c01112{left:463.603053pt;}
.x65_c01112{left:473.080653pt;}
.x5f_c01112{left:482.496653pt;}
.xa_c01112{left:485.713053pt;}
.x2e_c01112{left:492.616653pt;}
.x3d_c01112{left:493.646253pt;}
.x15_c01112{left:494.706653pt;}
.x34_c01112{left:501.478253pt;}
.x1e_c01112{left:503.405453pt;}
.x72_c01112{left:504.910253pt;}
.x73_c01112{left:512.077853pt;}
.xb_c01112{left:513.657453pt;}
.x59_c01112{left:521.705053pt;}
.x69_c01112{left:530.267453pt;}
.x4c_c01112{left:532.027453pt;}
.x1f_c01112{left:534.495853pt;}
.x60_c01112{left:540.400653pt;}
.xc_c01112{left:541.720653pt;}
.x78_c01112{left:549.583453pt;}
.x20_c01112{left:553.323453pt;}
.x53_c01112{left:560.288653pt;}
.x4d_c01112{left:562.097053pt;}
.x66_c01112{left:570.347053pt;}
.x3e_c01112{left:571.310653pt;}
.x30_c01112{left:573.303853pt;}
.x74_c01112{left:579.415453pt;}
.x35_c01112{left:581.738653pt;}
.x28_c01112{left:583.489853pt;}
.x5d_c01112{left:590.340653pt;}
.xd_c01112{left:591.775053pt;}
.x29_c01112{left:596.694253pt;}
.x2f_c01112{left:599.334253pt;}
.x2a_c01112{left:601.925853pt;}
.x79_c01112{left:608.517053pt;}
.x36_c01112{left:610.805053pt;}
.x5e_c01112{left:620.410253pt;}
.x45_c01112{left:621.365053pt;}
.x61_c01112{left:622.636653pt;}
.x62_c01112{left:623.771853pt;}
.x21_c01112{left:628.317053pt;}
.x3f_c01112{left:630.363053pt;}
.x54_c01112{left:640.298253pt;}
.x46_c01112{left:650.176253pt;}
.x7e_c01112{left:676.558653pt;}
}





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

.ir_c01113:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01113{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01113;src:url('chunks/assets/font_b5c9fab3cd271e75d16a9e38.woff2')format("woff");}.ff1_c01113{font-family:ff1_c01113;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01113;src:url('chunks/assets/font_e85240a60c8ef37eff43543d.woff2')format("woff");}.ff2_c01113{font-family:ff2_c01113;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01113;src:url('chunks/assets/font_8a7f3b5c1fb258e0e9dbb80a.woff2')format("woff");}.ff3_c01113{font-family:ff3_c01113;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01113;src:url('chunks/assets/font_280336b73f3f9ba50120fb46.woff2')format("woff");}.ff4_c01113{font-family:ff4_c01113;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5b_c01113{transform:matrix(0.011629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011629,0.000000,0.000000,0.250000,0,0);}
.m22_c01113{transform:matrix(0.098073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098073,0.000000,0.000000,0.250000,0,0);}
.m5a_c01113{transform:matrix(0.140181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140181,0.000000,0.000000,0.250000,0,0);}
.m51_c01113{transform:matrix(0.144805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144805,0.000000,0.000000,0.250000,0,0);}
.m5c_c01113{transform:matrix(0.145348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145348,0.000000,0.000000,0.250000,0,0);}
.mae_c01113{transform:matrix(0.150796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150796,0.000000,0.000000,0.250000,0,0);}
.mac_c01113{transform:matrix(0.151828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151828,0.000000,0.000000,0.250000,0,0);}
.m5e_c01113{transform:matrix(0.152617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152617,0.000000,0.000000,0.250000,0,0);}
.maa_c01113{transform:matrix(0.164504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164504,0.000000,0.000000,0.250000,0,0);}
.m6a_c01113{transform:matrix(0.165179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165179,0.000000,0.000000,0.250000,0,0);}
.mad_c01113{transform:matrix(0.171831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171831,0.000000,0.000000,0.250000,0,0);}
.m99_c01113{transform:matrix(0.181122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181122,0.000000,0.000000,0.250000,0,0);}
.m24_c01113{transform:matrix(0.185276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185276,0.000000,0.000000,0.250000,0,0);}
.m79_c01113{transform:matrix(0.192568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192568,0.000000,0.000000,0.250000,0,0);}
.ma5_c01113{transform:matrix(0.201483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201483,0.000000,0.000000,0.250000,0,0);}
.mab_c01113{transform:matrix(0.202701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202701,0.000000,0.000000,0.250000,0,0);}
.m5d_c01113{transform:matrix(0.211694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211694,0.000000,0.000000,0.250000,0,0);}
.m85_c01113{transform:matrix(0.222772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222772,0.000000,0.000000,0.250000,0,0);}
.m2c_c01113{transform:matrix(0.228836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228836,0.000000,0.000000,0.250000,0,0);}
.m4d_c01113{transform:matrix(0.228840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228840,0.000000,0.000000,0.250000,0,0);}
.m59_c01113{transform:matrix(0.230191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230191,0.000000,0.000000,0.250000,0,0);}
.m83_c01113{transform:matrix(0.239633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239633,0.000000,0.000000,0.250000,0,0);}
.m4a_c01113{transform:matrix(0.243524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243524,0.000000,0.000000,0.250000,0,0);}
.m0_c01113{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m7f_c01113{transform:matrix(0.250440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250440,0.000000,0.000000,0.250000,0,0);}
.m7c_c01113{transform:matrix(0.250825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250825,0.000000,0.000000,0.250000,0,0);}
.mc_c01113{transform:matrix(0.251515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251515,0.000000,0.000000,0.250000,0,0);}
.m25_c01113{transform:matrix(0.251655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251655,0.000000,0.000000,0.250000,0,0);}
.m64_c01113{transform:matrix(0.252789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252789,0.000000,0.000000,0.250000,0,0);}
.m3a_c01113{transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);}
.m5f_c01113{transform:matrix(0.253381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253381,0.000000,0.000000,0.250000,0,0);}
.m92_c01113{transform:matrix(0.254386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254386,0.000000,0.000000,0.250000,0,0);}
.m7e_c01113{transform:matrix(0.255840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255840,0.000000,0.000000,0.250000,0,0);}
.m2e_c01113{transform:matrix(0.255999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255999,0.000000,0.000000,0.250000,0,0);}
.m8_c01113{transform:matrix(0.256488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256488,0.000000,0.000000,0.250000,0,0);}
.mf_c01113{transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);}
.m57_c01113{transform:matrix(0.256724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256724,0.000000,0.000000,0.250000,0,0);}
.m9_c01113{transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);}
.m6c_c01113{transform:matrix(0.259194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259194,0.000000,0.000000,0.250000,0,0);}
.m95_c01113{transform:matrix(0.259376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259376,0.000000,0.000000,0.250000,0,0);}
.m61_c01113{transform:matrix(0.259507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259507,0.000000,0.000000,0.250000,0,0);}
.m84_c01113{transform:matrix(0.260749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260749,0.000000,0.000000,0.250000,0,0);}
.m34_c01113{transform:matrix(0.260886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260886,0.000000,0.000000,0.250000,0,0);}
.m50_c01113{transform:matrix(0.261303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261303,0.000000,0.000000,0.250000,0,0);}
.m19_c01113{transform:matrix(0.261603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261603,0.000000,0.000000,0.250000,0,0);}
.m62_c01113{transform:matrix(0.261712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261712,0.000000,0.000000,0.250000,0,0);}
.m9e_c01113{transform:matrix(0.261953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261953,0.000000,0.000000,0.250000,0,0);}
.m45_c01113{transform:matrix(0.261958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261958,0.000000,0.000000,0.250000,0,0);}
.m94_c01113{transform:matrix(0.262313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262313,0.000000,0.000000,0.250000,0,0);}
.m1d_c01113{transform:matrix(0.262334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262334,0.000000,0.000000,0.250000,0,0);}
.m6f_c01113{transform:matrix(0.263228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263228,0.000000,0.000000,0.250000,0,0);}
.ma4_c01113{transform:matrix(0.263539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263539,0.000000,0.000000,0.250000,0,0);}
.m31_c01113{transform:matrix(0.263888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263888,0.000000,0.000000,0.250000,0,0);}
.m23_c01113{transform:matrix(0.263896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263896,0.000000,0.000000,0.250000,0,0);}
.m68_c01113{transform:matrix(0.264343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264343,0.000000,0.000000,0.250000,0,0);}
.m9d_c01113{transform:matrix(0.264684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264684,0.000000,0.000000,0.250000,0,0);}
.m4f_c01113{transform:matrix(0.264763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264763,0.000000,0.000000,0.250000,0,0);}
.m8e_c01113{transform:matrix(0.264852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264852,0.000000,0.000000,0.250000,0,0);}
.m73_c01113{transform:matrix(0.264902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264902,0.000000,0.000000,0.250000,0,0);}
.m55_c01113{transform:matrix(0.265005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265005,0.000000,0.000000,0.250000,0,0);}
.m60_c01113{transform:matrix(0.267012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267012,0.000000,0.000000,0.250000,0,0);}
.ma2_c01113{transform:matrix(0.270330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270330,0.000000,0.000000,0.250000,0,0);}
.m11_c01113{transform:matrix(0.271190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271190,0.000000,0.000000,0.250000,0,0);}
.maf_c01113{transform:matrix(0.271570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271570,0.000000,0.000000,0.250000,0,0);}
.m93_c01113{transform:matrix(0.272165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272165,0.000000,0.000000,0.250000,0,0);}
.m9a_c01113{transform:matrix(0.272881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272881,0.000000,0.000000,0.250000,0,0);}
.m53_c01113{transform:matrix(0.273465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273465,0.000000,0.000000,0.250000,0,0);}
.m21_c01113{transform:matrix(0.274237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274237,0.000000,0.000000,0.250000,0,0);}
.m4c_c01113{transform:matrix(0.274391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274391,0.000000,0.000000,0.250000,0,0);}
.m74_c01113{transform:matrix(0.275314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275314,0.000000,0.000000,0.250000,0,0);}
.m2d_c01113{transform:matrix(0.275369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275369,0.000000,0.000000,0.250000,0,0);}
.m4_c01113{transform:matrix(0.275373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275373,0.000000,0.000000,0.250000,0,0);}
.m9f_c01113{transform:matrix(0.275649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275649,0.000000,0.000000,0.250000,0,0);}
.m52_c01113{transform:matrix(0.275905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275905,0.000000,0.000000,0.250000,0,0);}
.m90_c01113{transform:matrix(0.276515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276515,0.000000,0.000000,0.250000,0,0);}
.ma9_c01113{transform:matrix(0.276947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276947,0.000000,0.000000,0.250000,0,0);}
.m47_c01113{transform:matrix(0.277251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277251,0.000000,0.000000,0.250000,0,0);}
.m39_c01113{transform:matrix(0.277275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277275,0.000000,0.000000,0.250000,0,0);}
.m8d_c01113{transform:matrix(0.277666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277666,0.000000,0.000000,0.250000,0,0);}
.m88_c01113{transform:matrix(0.277796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277796,0.000000,0.000000,0.250000,0,0);}
.m1e_c01113{transform:matrix(0.278436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278436,0.000000,0.000000,0.250000,0,0);}
.m37_c01113{transform:matrix(0.278521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278521,0.000000,0.000000,0.250000,0,0);}
.m72_c01113{transform:matrix(0.278825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278825,0.000000,0.000000,0.250000,0,0);}
.m3d_c01113{transform:matrix(0.279051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279051,0.000000,0.000000,0.250000,0,0);}
.m43_c01113{transform:matrix(0.279087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279087,0.000000,0.000000,0.250000,0,0);}
.m65_c01113{transform:matrix(0.279739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279739,0.000000,0.000000,0.250000,0,0);}
.m3b_c01113{transform:matrix(0.280027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280027,0.000000,0.000000,0.250000,0,0);}
.m36_c01113{transform:matrix(0.280210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280210,0.000000,0.000000,0.250000,0,0);}
.m1c_c01113{transform:matrix(0.280463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280463,0.000000,0.000000,0.250000,0,0);}
.m3e_c01113{transform:matrix(0.280468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280468,0.000000,0.000000,0.250000,0,0);}
.m1f_c01113{transform:matrix(0.281411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281411,0.000000,0.000000,0.250000,0,0);}
.m7a_c01113{transform:matrix(0.282397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282397,0.000000,0.000000,0.250000,0,0);}
.m86_c01113{transform:matrix(0.282531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282531,0.000000,0.000000,0.250000,0,0);}
.m3_c01113{transform:matrix(0.282553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282553,0.000000,0.000000,0.250000,0,0);}
.m1a_c01113{transform:matrix(0.283259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283259,0.000000,0.000000,0.250000,0,0);}
.m27_c01113{transform:matrix(0.283518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283518,0.000000,0.000000,0.250000,0,0);}
.m14_c01113{transform:matrix(0.283821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283821,0.000000,0.000000,0.250000,0,0);}
.m9c_c01113{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m46_c01113{transform:matrix(0.284292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284292,0.000000,0.000000,0.250000,0,0);}
.m41_c01113{transform:matrix(0.284388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284388,0.000000,0.000000,0.250000,0,0);}
.m17_c01113{transform:matrix(0.285208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285208,0.000000,0.000000,0.250000,0,0);}
.m96_c01113{transform:matrix(0.285321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285321,0.000000,0.000000,0.250000,0,0);}
.m6e_c01113{transform:matrix(0.285567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285567,0.000000,0.000000,0.250000,0,0);}
.m8f_c01113{transform:matrix(0.286328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286328,0.000000,0.000000,0.250000,0,0);}
.ma7_c01113{transform:matrix(0.286928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286928,0.000000,0.000000,0.250000,0,0);}
.me_c01113{transform:matrix(0.286940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286940,0.000000,0.000000,0.250000,0,0);}
.m7d_c01113{transform:matrix(0.287052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287052,0.000000,0.000000,0.250000,0,0);}
.m1b_c01113{transform:matrix(0.287266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287266,0.000000,0.000000,0.250000,0,0);}
.md_c01113{transform:matrix(0.287357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287357,0.000000,0.000000,0.250000,0,0);}
.m78_c01113{transform:matrix(0.287870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287870,0.000000,0.000000,0.250000,0,0);}
.m67_c01113{transform:matrix(0.287972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287972,0.000000,0.000000,0.250000,0,0);}
.m80_c01113{transform:matrix(0.288814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288814,0.000000,0.000000,0.250000,0,0);}
.m44_c01113{transform:matrix(0.288978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288978,0.000000,0.000000,0.250000,0,0);}
.m87_c01113{transform:matrix(0.289110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289110,0.000000,0.000000,0.250000,0,0);}
.m5_c01113{transform:matrix(0.289226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289226,0.000000,0.000000,0.250000,0,0);}
.m2a_c01113{transform:matrix(0.289599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289599,0.000000,0.000000,0.250000,0,0);}
.m35_c01113{transform:matrix(0.289985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289985,0.000000,0.000000,0.250000,0,0);}
.m8b_c01113{transform:matrix(0.291692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291692,0.000000,0.000000,0.250000,0,0);}
.m38_c01113{transform:matrix(0.292760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292760,0.000000,0.000000,0.250000,0,0);}
.m54_c01113{transform:matrix(0.293602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293602,0.000000,0.000000,0.250000,0,0);}
.m77_c01113{transform:matrix(0.294371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294371,0.000000,0.000000,0.250000,0,0);}
.m7b_c01113{transform:matrix(0.294717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294717,0.000000,0.000000,0.250000,0,0);}
.m69_c01113{transform:matrix(0.294968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294968,0.000000,0.000000,0.250000,0,0);}
.m13_c01113{transform:matrix(0.294970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294970,0.000000,0.000000,0.250000,0,0);}
.m32_c01113{transform:matrix(0.295079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295079,0.000000,0.000000,0.250000,0,0);}
.m3f_c01113{transform:matrix(0.296102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296102,0.000000,0.000000,0.250000,0,0);}
.ma1_c01113{transform:matrix(0.296806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296806,0.000000,0.000000,0.250000,0,0);}
.ma3_c01113{transform:matrix(0.296859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296859,0.000000,0.000000,0.250000,0,0);}
.m66_c01113{transform:matrix(0.297101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297101,0.000000,0.000000,0.250000,0,0);}
.m91_c01113{transform:matrix(0.297406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297406,0.000000,0.000000,0.250000,0,0);}
.m4e_c01113{transform:matrix(0.298175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298175,0.000000,0.000000,0.250000,0,0);}
.m28_c01113{transform:matrix(0.299926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299926,0.000000,0.000000,0.250000,0,0);}
.m82_c01113{transform:matrix(0.301789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301789,0.000000,0.000000,0.250000,0,0);}
.m20_c01113{transform:matrix(0.302491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302491,0.000000,0.000000,0.250000,0,0);}
.m89_c01113{transform:matrix(0.302531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302531,0.000000,0.000000,0.250000,0,0);}
.m1_c01113{transform:matrix(0.303808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303808,0.000000,0.000000,0.250000,0,0);}
.m8a_c01113{transform:matrix(0.304301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304301,0.000000,0.000000,0.250000,0,0);}
.m56_c01113{transform:matrix(0.304592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304592,0.000000,0.000000,0.250000,0,0);}
.m76_c01113{transform:matrix(0.305266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305266,0.000000,0.000000,0.250000,0,0);}
.ma_c01113{transform:matrix(0.306591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306591,0.000000,0.000000,0.250000,0,0);}
.m81_c01113{transform:matrix(0.306908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306908,0.000000,0.000000,0.250000,0,0);}
.m49_c01113{transform:matrix(0.306922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306922,0.000000,0.000000,0.250000,0,0);}
.m48_c01113{transform:matrix(0.307642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307642,0.000000,0.000000,0.250000,0,0);}
.m29_c01113{transform:matrix(0.308096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308096,0.000000,0.000000,0.250000,0,0);}
.m2f_c01113{transform:matrix(0.308145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308145,0.000000,0.000000,0.250000,0,0);}
.m58_c01113{transform:matrix(0.308839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308839,0.000000,0.000000,0.250000,0,0);}
.mb_c01113{transform:matrix(0.309444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309444,0.000000,0.000000,0.250000,0,0);}
.ma8_c01113{transform:matrix(0.310319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310319,0.000000,0.000000,0.250000,0,0);}
.m6d_c01113{transform:matrix(0.310998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310998,0.000000,0.000000,0.250000,0,0);}
.m70_c01113{transform:matrix(0.311877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311877,0.000000,0.000000,0.250000,0,0);}
.m33_c01113{transform:matrix(0.312938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312938,0.000000,0.000000,0.250000,0,0);}
.ma0_c01113{transform:matrix(0.314374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314374,0.000000,0.000000,0.250000,0,0);}
.m63_c01113{transform:matrix(0.316026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316026,0.000000,0.000000,0.250000,0,0);}
.m16_c01113{transform:matrix(0.316620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316620,0.000000,0.000000,0.250000,0,0);}
.m71_c01113{transform:matrix(0.318157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318157,0.000000,0.000000,0.250000,0,0);}
.m3c_c01113{transform:matrix(0.319159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319159,0.000000,0.000000,0.250000,0,0);}
.m98_c01113{transform:matrix(0.320539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320539,0.000000,0.000000,0.250000,0,0);}
.m18_c01113{transform:matrix(0.321360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321360,0.000000,0.000000,0.250000,0,0);}
.m10_c01113{transform:matrix(0.322037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322037,0.000000,0.000000,0.250000,0,0);}
.m6b_c01113{transform:matrix(0.326105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326105,0.000000,0.000000,0.250000,0,0);}
.m7_c01113{transform:matrix(0.327439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327439,0.000000,0.000000,0.250000,0,0);}
.m6_c01113{transform:matrix(0.328486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328486,0.000000,0.000000,0.250000,0,0);}
.m8c_c01113{transform:matrix(0.331568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331568,0.000000,0.000000,0.250000,0,0);}
.m97_c01113{transform:matrix(0.331929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331929,0.000000,0.000000,0.250000,0,0);}
.m30_c01113{transform:matrix(0.341545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341545,0.000000,0.000000,0.250000,0,0);}
.m9b_c01113{transform:matrix(0.341722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341722,0.000000,0.000000,0.250000,0,0);}
.m2b_c01113{transform:matrix(0.349688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349688,0.000000,0.000000,0.250000,0,0);}
.ma6_c01113{transform:matrix(0.366212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366212,0.000000,0.000000,0.250000,0,0);}
.m12_c01113{transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);}
.m42_c01113{transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);}
.m4b_c01113{transform:matrix(0.376256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376256,0.000000,0.000000,0.250000,0,0);}
.m75_c01113{transform:matrix(0.385437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385437,0.000000,0.000000,0.250000,0,0);}
.m40_c01113{transform:matrix(0.387833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387833,0.000000,0.000000,0.250000,0,0);}
.m26_c01113{transform:matrix(0.391085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391085,0.000000,0.000000,0.250000,0,0);}
.m15_c01113{transform:matrix(0.395451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395451,0.000000,0.000000,0.250000,0,0);}
.m2_c01113{transform:matrix(0.429536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429536,0.000000,0.000000,0.250000,0,0);}
.v1_c01113{vertical-align:-14.256000px;}
.v0_c01113{vertical-align:0.000000px;}
.lsa_c01113{letter-spacing:-3.118500px;}
.lsf_c01113{letter-spacing:-2.855167px;}
.ls8_c01113{letter-spacing:-2.798064px;}
.ls28_c01113{letter-spacing:-2.772000px;}
.ls2d_c01113{letter-spacing:-2.577967px;}
.ls15_c01113{letter-spacing:-2.397780px;}
.ls13_c01113{letter-spacing:-2.314627px;}
.ls16_c01113{letter-spacing:-2.247062px;}
.lsd_c01113{letter-spacing:-1.060884px;}
.ls24_c01113{letter-spacing:-0.783132px;}
.ls21_c01113{letter-spacing:-0.675817px;}
.ls2e_c01113{letter-spacing:-0.163152px;}
.ls2f_c01113{letter-spacing:-0.154995px;}
.ls0_c01113{letter-spacing:0.000000px;}
.ls26_c01113{letter-spacing:0.422136px;}
.ls20_c01113{letter-spacing:1.158382px;}
.ls7_c01113{letter-spacing:1.411268px;}
.ls14_c01113{letter-spacing:1.422036px;}
.lsb_c01113{letter-spacing:1.728540px;}
.ls1c_c01113{letter-spacing:2.145949px;}
.ls27_c01113{letter-spacing:2.613600px;}
.lsc_c01113{letter-spacing:2.712600px;}
.ls1f_c01113{letter-spacing:3.088810px;}
.ls2c_c01113{letter-spacing:3.279363px;}
.ls22_c01113{letter-spacing:3.360939px;}
.ls10_c01113{letter-spacing:3.366000px;}
.ls11_c01113{letter-spacing:3.405610px;}
.ls6_c01113{letter-spacing:3.465000px;}
.ls18_c01113{letter-spacing:3.474900px;}
.ls3_c01113{letter-spacing:3.524400px;}
.ls1a_c01113{letter-spacing:3.603610px;}
.ls12_c01113{letter-spacing:3.638298px;}
.ls1_c01113{letter-spacing:3.682810px;}
.lse_c01113{letter-spacing:3.762000px;}
.ls19_c01113{letter-spacing:3.861000px;}
.ls1d_c01113{letter-spacing:3.920400px;}
.ls2b_c01113{letter-spacing:3.999610px;}
.ls23_c01113{letter-spacing:4.039200px;}
.ls4_c01113{letter-spacing:4.046179px;}
.ls5_c01113{letter-spacing:4.059000px;}
.ls2_c01113{letter-spacing:4.078810px;}
.ls2a_c01113{letter-spacing:4.118400px;}
.ls29_c01113{letter-spacing:4.207500px;}
.ls25_c01113{letter-spacing:4.237200px;}
.ls1e_c01113{letter-spacing:52.747398px;}
.ls1b_c01113{letter-spacing:59.875398px;}
.ls17_c01113{letter-spacing:61.300998px;}
.ls9_c01113{letter-spacing:67.003200px;}
.sc__c01113{text-shadow:none;}
.sc0_c01113{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01113{-webkit-text-stroke:0px transparent;}
.sc0_c01113{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01113{word-spacing:-20.239055px;}
.ws1_c01113{word-spacing:0.000000px;}
._5_c01113{margin-left:-21.209710px;}
._6_c01113{margin-left:-12.889058px;}
._2_c01113{margin-left:-2.405700px;}
._4_c01113{width:2.023086px;}
._1_c01113{width:23.901732px;}
._3_c01113{width:32.302512px;}
._0_c01113{width:1588.170672px;}
.fc0_c01113{color:transparent;}
.fs0_c01113{font-size:22.176000px;}
.fs3_c01113{font-size:27.720000px;}
.fs1_c01113{font-size:38.808000px;}
.fs1a_c01113{font-size:39.402000px;}
.fs1b_c01113{font-size:41.976198px;}
.fs23_c01113{font-size:43.758000px;}
.fs1e_c01113{font-size:52.272000px;}
.fs18_c01113{font-size:52.747398px;}
.fsa_c01113{font-size:54.252000px;}
.fse_c01113{font-size:56.628000px;}
.fs15_c01113{font-size:59.875398px;}
.fs11_c01113{font-size:61.300998px;}
.fs19_c01113{font-size:61.776198px;}
.fsf_c01113{font-size:66.132198px;}
.fs24_c01113{font-size:66.528000px;}
.fs8_c01113{font-size:67.003200px;}
.fsc_c01113{font-size:67.320000px;}
.fsd_c01113{font-size:68.112198px;}
.fs10_c01113{font-size:68.508000px;}
.fs7_c01113{font-size:69.300000px;}
.fs12_c01113{font-size:69.498000px;}
.fs5_c01113{font-size:70.488000px;}
.fs14_c01113{font-size:72.072198px;}
.fs2_c01113{font-size:73.656198px;}
.fsb_c01113{font-size:75.240000px;}
.fs13_c01113{font-size:77.220000px;}
.fs17_c01113{font-size:78.408000px;}
.fs16_c01113{font-size:78.606198px;}
.fs1f_c01113{font-size:79.200000px;}
.fs22_c01113{font-size:79.992198px;}
.fs1c_c01113{font-size:80.784000px;}
.fs6_c01113{font-size:81.180000px;}
.fs4_c01113{font-size:81.576198px;}
.fs21_c01113{font-size:82.368000px;}
.fs20_c01113{font-size:84.150000px;}
.fs1d_c01113{font-size:84.744000px;}
.fs9_c01113{font-size:89.100000px;}
.y0_c01113{bottom:0.000000px;}
.y1f_c01113{bottom:4.188735px;}
.y1_c01113{bottom:76.500000px;}
.y1e_c01113{bottom:118.949535px;}
.y1d_c01113{bottom:183.457935px;}
.y1c_c01113{bottom:216.954585px;}
.y1b_c01113{bottom:249.391935px;}
.y1a_c01113{bottom:280.750185px;}
.y19_c01113{bottom:309.974985px;}
.y18_c01113{bottom:312.826185px;}
.y17_c01113{bottom:345.258585px;}
.y16_c01113{bottom:377.334585px;}
.y15_c01113{bottom:409.410585px;}
.y14_c01113{bottom:472.141935px;}
.y13_c01113{bottom:505.638585px;}
.y12_c01113{bottom:537.719535px;}
.y10_c01113{bottom:570.508335px;}
.y11_c01113{bottom:570.864735px;}
.yf_c01113{bottom:634.660335px;}
.ye_c01113{bottom:652.480335px;}
.yd_c01113{bottom:666.374985px;}
.yc_c01113{bottom:697.738185px;}
.yb_c01113{bottom:730.170585px;}
.ya_c01113{bottom:761.895135px;}
.y9_c01113{bottom:793.258335px;}
.y8_c01113{bottom:794.322585px;}
.y7_c01113{bottom:858.479535px;}
.y6_c01113{bottom:891.268335px;}
.y5_c01113{bottom:923.339385px;}
.y4_c01113{bottom:960.761385px;}
.y3_c01113{bottom:1070.176185px;}
.y2_c01113{bottom:1105.459785px;}
.h2_c01113{height:26.219531px;}
.h4_c01113{height:28.911094px;}
.h19_c01113{height:35.129767px;}
.h1b_c01113{height:38.670908px;}
.h16_c01113{height:39.877015px;}
.h12_c01113{height:40.826465px;}
.h24_c01113{height:42.946084px;}
.h1c_c01113{height:43.779863px;}
.h9_c01113{height:44.624131px;}
.h1f_c01113{height:51.302109px;}
.hb_c01113{height:53.245371px;}
.hf_c01113{height:59.061234px;}
.h1a_c01113{height:64.430644px;}
.h11_c01113{height:67.236855px;}
.h13_c01113{height:68.208486px;}
.h10_c01113{height:68.973816px;}
.h6_c01113{height:69.180117px;}
.h25_c01113{height:69.386625px;}
.hd_c01113{height:70.212656px;}
.he_c01113{height:71.038894px;}
.h8_c01113{height:72.277734px;}
.h3_c01113{height:72.289530px;}
.hc_c01113{height:73.843945px;}
.h15_c01113{height:75.169050px;}
.h14_c01113{height:75.787207px;}
.h18_c01113{height:76.953164px;}
.h17_c01113{height:77.147685px;}
.h23_c01113{height:78.507968px;}
.h1d_c01113{height:79.285078px;}
.h7_c01113{height:79.673730px;}
.h5_c01113{height:80.062577px;}
.h22_c01113{height:80.839688px;}
.h21_c01113{height:82.588623px;}
.h20_c01113{height:82.603125px;}
.h1e_c01113{height:83.171602px;}
.ha_c01113{height:87.446777px;}
.h1_c01113{height:1110.000000px;}
.h0_c01113{height:1263.000000px;}
.w1_c01113{width:775.500000px;}
.w0_c01113{width:892.500000px;}
.x0_c01113{left:0.000000px;}
.x1_c01113{left:58.500000px;}
.x78_c01113{left:74.117985px;}
.x51_c01113{left:75.192135px;}
.x23_c01113{left:76.251435px;}
.x10_c01113{left:124.132785px;}
.x70_c01113{left:129.305535px;}
.x49_c01113{left:130.394535px;}
.x5_c01113{left:131.929035px;}
.x4_c01113{left:133.171485px;}
.x1c_c01113{left:134.532735px;}
.x2_c01113{left:145.670235px;}
.x79_c01113{left:151.936935px;}
.x11_c01113{left:153.946635px;}
.x6_c01113{left:157.480935px;}
.x59_c01113{left:161.718135px;}
.x3b_c01113{left:164.599035px;}
.x7_c01113{left:166.163235px;}
.x6a_c01113{left:173.533785px;}
.x5a_c01113{left:175.132635px;}
.x5d_c01113{left:186.715635px;}
.x12_c01113{left:188.621385px;}
.x1d_c01113{left:198.268935px;}
.x34_c01113{left:200.041035px;}
.x65_c01113{left:207.560085px;}
.x29_c01113{left:208.807485px;}
.x71_c01113{left:218.984685px;}
.x13_c01113{left:220.558785px;}
.x6b_c01113{left:229.122285px;}
.x8_c01113{left:232.874385px;}
.x1e_c01113{left:241.517085px;}
.x6c_c01113{left:251.278485px;}
.x66_c01113{left:252.575385px;}
.x14_c01113{left:254.604885px;}
.x2a_c01113{left:255.639435px;}
.x55_c01113{left:263.331735px;}
.x72_c01113{left:264.460335px;}
.x9_c01113{left:265.529535px;}
.x35_c01113{left:276.310635px;}
.x3c_c01113{left:286.963035px;}
.x5e_c01113{left:289.269735px;}
.x73_c01113{left:296.471985px;}
.x42_c01113{left:298.323285px;}
.x15_c01113{left:299.783535px;}
.x5f_c01113{left:307.886685px;}
.x1f_c01113{left:309.450885px;}
.x52_c01113{left:319.048935px;}
.x3d_c01113{left:320.835885px;}
.x4e_c01113{left:323.241585px;}
.x2f_c01113{left:330.953685px;}
.x24_c01113{left:332.641635px;}
.x6d_c01113{left:340.299285px;}
.x36_c01113{left:342.962385px;}
.x25_c01113{left:353.297985px;}
.x16_c01113{left:354.386985px;}
.x63_c01113{left:362.777235px;}
.x4a_c01113{left:364.489935px;}
.x56_c01113{left:375.429435px;}
.x37_c01113{left:385.913535px;}
.x3e_c01113{left:387.547035px;}
.x60_c01113{left:396.263985px;}
.xa_c01113{left:398.917185px;}
.x4b_c01113{left:407.842035px;}
.x43_c01113{left:410.029935px;}
.x6e_c01113{left:418.905285px;}
.x3f_c01113{left:419.915085px;}
.x30_c01113{left:420.984285px;}
.x26_c01113{left:422.682135px;}
.x20_c01113{left:431.735685px;}
.x61_c01113{left:433.314735px;}
.x50_c01113{left:441.110985px;}
.xb_c01113{left:443.110785px;}
.x74_c01113{left:452.302935px;}
.x40_c01113{left:453.708735px;}
.x17_c01113{left:455.550135px;}
.x44_c01113{left:464.529435px;}
.x21_c01113{left:475.374885px;}
.x67_c01113{left:485.819385px;}
.x18_c01113{left:487.566735px;}
.x45_c01113{left:495.645135px;}
.x31_c01113{left:496.763835px;}
.x2b_c01113{left:498.382485px;}
.xc_c01113{left:509.430885px;}
.x5b_c01113{left:518.276535px;}
.x32_c01113{left:520.820835px;}
.x4c_c01113{left:529.829835px;}
.x46_c01113{left:531.200985px;}
.x38_c01113{left:539.848635px;}
.x47_c01113{left:541.313835px;}
.x22_c01113{left:542.887935px;}
.x75_c01113{left:550.535685px;}
.x53_c01113{left:552.367185px;}
.x57_c01113{left:562.569135px;}
.xd_c01113{left:564.672885px;}
.x33_c01113{left:575.533185px;}
.x27_c01113{left:584.448135px;}
.x68_c01113{left:585.576735px;}
.x19_c01113{left:586.774635px;}
.x6f_c01113{left:595.303485px;}
.x4f_c01113{left:597.214185px;}
.xe_c01113{left:598.372485px;}
.x54_c01113{left:606.178635px;}
.x39_c01113{left:607.188435px;}
.x62_c01113{left:617.266635px;}
.x28_c01113{left:618.637785px;}
.x4d_c01113{left:628.785285px;}
.x1a_c01113{left:630.319785px;}
.x5c_c01113{left:639.665385px;}
.x3a_c01113{left:640.947435px;}
.xf_c01113{left:642.308685px;}
.x76_c01113{left:650.679135px;}
.x64_c01113{left:662.069085px;}
.x41_c01113{left:663.667935px;}
.x2c_c01113{left:673.909485px;}
.x77_c01113{left:686.131035px;}
.x48_c01113{left:687.234885px;}
.x58_c01113{left:695.263785px;}
.x1b_c01113{left:696.922035px;}
.x69_c01113{left:707.183385px;}
.x2d_c01113{left:709.252485px;}
.x3_c01113{left:716.796285px;}
.x2e_c01113{left:728.879235px;}
@media print{
.v1_c01113{vertical-align:-12.672000pt;}
.v0_c01113{vertical-align:0.000000pt;}
.lsa_c01113{letter-spacing:-2.772000pt;}
.lsf_c01113{letter-spacing:-2.537926pt;}
.ls8_c01113{letter-spacing:-2.487168pt;}
.ls28_c01113{letter-spacing:-2.464000pt;}
.ls2d_c01113{letter-spacing:-2.291526pt;}
.ls15_c01113{letter-spacing:-2.131360pt;}
.ls13_c01113{letter-spacing:-2.057446pt;}
.ls16_c01113{letter-spacing:-1.997389pt;}
.lsd_c01113{letter-spacing:-0.943008pt;}
.ls24_c01113{letter-spacing:-0.696117pt;}
.ls21_c01113{letter-spacing:-0.600726pt;}
.ls2e_c01113{letter-spacing:-0.145024pt;}
.ls2f_c01113{letter-spacing:-0.137773pt;}
.ls0_c01113{letter-spacing:0.000000pt;}
.ls26_c01113{letter-spacing:0.375232pt;}
.ls20_c01113{letter-spacing:1.029673pt;}
.ls7_c01113{letter-spacing:1.254461pt;}
.ls14_c01113{letter-spacing:1.264032pt;}
.lsb_c01113{letter-spacing:1.536480pt;}
.ls1c_c01113{letter-spacing:1.907510pt;}
.ls27_c01113{letter-spacing:2.323200pt;}
.lsc_c01113{letter-spacing:2.411200pt;}
.ls1f_c01113{letter-spacing:2.745609pt;}
.ls2c_c01113{letter-spacing:2.914989pt;}
.ls22_c01113{letter-spacing:2.987502pt;}
.ls10_c01113{letter-spacing:2.992000pt;}
.ls11_c01113{letter-spacing:3.027209pt;}
.ls6_c01113{letter-spacing:3.080000pt;}
.ls18_c01113{letter-spacing:3.088800pt;}
.ls3_c01113{letter-spacing:3.132800pt;}
.ls1a_c01113{letter-spacing:3.203209pt;}
.ls12_c01113{letter-spacing:3.234043pt;}
.ls1_c01113{letter-spacing:3.273609pt;}
.lse_c01113{letter-spacing:3.344000pt;}
.ls19_c01113{letter-spacing:3.432000pt;}
.ls1d_c01113{letter-spacing:3.484800pt;}
.ls2b_c01113{letter-spacing:3.555209pt;}
.ls23_c01113{letter-spacing:3.590400pt;}
.ls4_c01113{letter-spacing:3.596604pt;}
.ls5_c01113{letter-spacing:3.608000pt;}
.ls2_c01113{letter-spacing:3.625609pt;}
.ls2a_c01113{letter-spacing:3.660800pt;}
.ls29_c01113{letter-spacing:3.740000pt;}
.ls25_c01113{letter-spacing:3.766400pt;}
.ls1e_c01113{letter-spacing:46.886576pt;}
.ls1b_c01113{letter-spacing:53.222576pt;}
.ls17_c01113{letter-spacing:54.489776pt;}
.ls9_c01113{letter-spacing:59.558400pt;}
.ws0_c01113{word-spacing:-17.990271pt;}
.ws1_c01113{word-spacing:0.000000pt;}
._5_c01113{margin-left:-18.853076pt;}
._6_c01113{margin-left:-11.456940pt;}
._2_c01113{margin-left:-2.138400pt;}
._4_c01113{width:1.798298pt;}
._1_c01113{width:21.245984pt;}
._3_c01113{width:28.713344pt;}
._0_c01113{width:1411.707264pt;}
.fs0_c01113{font-size:19.712000pt;}
.fs3_c01113{font-size:24.640000pt;}
.fs1_c01113{font-size:34.496000pt;}
.fs1a_c01113{font-size:35.024000pt;}
.fs1b_c01113{font-size:37.312176pt;}
.fs23_c01113{font-size:38.896000pt;}
.fs1e_c01113{font-size:46.464000pt;}
.fs18_c01113{font-size:46.886576pt;}
.fsa_c01113{font-size:48.224000pt;}
.fse_c01113{font-size:50.336000pt;}
.fs15_c01113{font-size:53.222576pt;}
.fs11_c01113{font-size:54.489776pt;}
.fs19_c01113{font-size:54.912176pt;}
.fsf_c01113{font-size:58.784176pt;}
.fs24_c01113{font-size:59.136000pt;}
.fs8_c01113{font-size:59.558400pt;}
.fsc_c01113{font-size:59.840000pt;}
.fsd_c01113{font-size:60.544176pt;}
.fs10_c01113{font-size:60.896000pt;}
.fs7_c01113{font-size:61.600000pt;}
.fs12_c01113{font-size:61.776000pt;}
.fs5_c01113{font-size:62.656000pt;}
.fs14_c01113{font-size:64.064176pt;}
.fs2_c01113{font-size:65.472176pt;}
.fsb_c01113{font-size:66.880000pt;}
.fs13_c01113{font-size:68.640000pt;}
.fs17_c01113{font-size:69.696000pt;}
.fs16_c01113{font-size:69.872176pt;}
.fs1f_c01113{font-size:70.400000pt;}
.fs22_c01113{font-size:71.104176pt;}
.fs1c_c01113{font-size:71.808000pt;}
.fs6_c01113{font-size:72.160000pt;}
.fs4_c01113{font-size:72.512176pt;}
.fs21_c01113{font-size:73.216000pt;}
.fs20_c01113{font-size:74.800000pt;}
.fs1d_c01113{font-size:75.328000pt;}
.fs9_c01113{font-size:79.200000pt;}
.y0_c01113{bottom:0.000000pt;}
.y1f_c01113{bottom:3.723320pt;}
.y1_c01113{bottom:68.000000pt;}
.y1e_c01113{bottom:105.732920pt;}
.y1d_c01113{bottom:163.073720pt;}
.y1c_c01113{bottom:192.848520pt;}
.y1b_c01113{bottom:221.681720pt;}
.y1a_c01113{bottom:249.555720pt;}
.y19_c01113{bottom:275.533320pt;}
.y18_c01113{bottom:278.067720pt;}
.y17_c01113{bottom:306.896520pt;}
.y16_c01113{bottom:335.408520pt;}
.y15_c01113{bottom:363.920520pt;}
.y14_c01113{bottom:419.681720pt;}
.y13_c01113{bottom:449.456520pt;}
.y12_c01113{bottom:477.972920pt;}
.y10_c01113{bottom:507.118520pt;}
.y11_c01113{bottom:507.435320pt;}
.yf_c01113{bottom:564.142520pt;}
.ye_c01113{bottom:579.982520pt;}
.yd_c01113{bottom:592.333320pt;}
.yc_c01113{bottom:620.211720pt;}
.yb_c01113{bottom:649.040520pt;}
.ya_c01113{bottom:677.240120pt;}
.y9_c01113{bottom:705.118520pt;}
.y8_c01113{bottom:706.064520pt;}
.y7_c01113{bottom:763.092920pt;}
.y6_c01113{bottom:792.238520pt;}
.y5_c01113{bottom:820.746120pt;}
.y4_c01113{bottom:854.010120pt;}
.y3_c01113{bottom:951.267720pt;}
.y2_c01113{bottom:982.630920pt;}
.h2_c01113{height:23.306250pt;}
.h4_c01113{height:25.698750pt;}
.h19_c01113{height:31.226460pt;}
.h1b_c01113{height:34.374141pt;}
.h16_c01113{height:35.446236pt;}
.h12_c01113{height:36.290191pt;}
.h24_c01113{height:38.174297pt;}
.h1c_c01113{height:38.915434pt;}
.h9_c01113{height:39.665894pt;}
.h1f_c01113{height:45.601875pt;}
.hb_c01113{height:47.329219pt;}
.hf_c01113{height:52.498875pt;}
.h1a_c01113{height:57.271684pt;}
.h11_c01113{height:59.766094pt;}
.h13_c01113{height:60.629766pt;}
.h10_c01113{height:61.310059pt;}
.h6_c01113{height:61.493438pt;}
.h25_c01113{height:61.677000pt;}
.hd_c01113{height:62.411250pt;}
.he_c01113{height:63.145684pt;}
.h8_c01113{height:64.246875pt;}
.h3_c01113{height:64.257360pt;}
.hc_c01113{height:65.639063pt;}
.h15_c01113{height:66.816934pt;}
.h14_c01113{height:67.366406pt;}
.h18_c01113{height:68.402813pt;}
.h17_c01113{height:68.575720pt;}
.h23_c01113{height:69.784860pt;}
.h1d_c01113{height:70.475625pt;}
.h7_c01113{height:70.821094pt;}
.h5_c01113{height:71.166735pt;}
.h22_c01113{height:71.857500pt;}
.h21_c01113{height:73.412109pt;}
.h20_c01113{height:73.425000pt;}
.h1e_c01113{height:73.930313pt;}
.ha_c01113{height:77.730469pt;}
.h1_c01113{height:986.666667pt;}
.h0_c01113{height:1122.666667pt;}
.w1_c01113{width:689.333333pt;}
.w0_c01113{width:793.333333pt;}
.x0_c01113{left:0.000000pt;}
.x1_c01113{left:52.000000pt;}
.x78_c01113{left:65.882653pt;}
.x51_c01113{left:66.837453pt;}
.x23_c01113{left:67.779053pt;}
.x10_c01113{left:110.340253pt;}
.x70_c01113{left:114.938253pt;}
.x49_c01113{left:115.906253pt;}
.x5_c01113{left:117.270253pt;}
.x4_c01113{left:118.374653pt;}
.x1c_c01113{left:119.584653pt;}
.x2_c01113{left:129.484653pt;}
.x79_c01113{left:135.055053pt;}
.x11_c01113{left:136.841453pt;}
.x6_c01113{left:139.983053pt;}
.x59_c01113{left:143.749453pt;}
.x3b_c01113{left:146.310253pt;}
.x7_c01113{left:147.700653pt;}
.x6a_c01113{left:154.252253pt;}
.x5a_c01113{left:155.673453pt;}
.x5d_c01113{left:165.969453pt;}
.x12_c01113{left:167.663453pt;}
.x1d_c01113{left:176.239053pt;}
.x34_c01113{left:177.814253pt;}
.x65_c01113{left:184.497853pt;}
.x29_c01113{left:185.606653pt;}
.x71_c01113{left:194.653053pt;}
.x13_c01113{left:196.052253pt;}
.x6b_c01113{left:203.664253pt;}
.x8_c01113{left:206.999453pt;}
.x1e_c01113{left:214.681853pt;}
.x6c_c01113{left:223.358653pt;}
.x66_c01113{left:224.511453pt;}
.x14_c01113{left:226.315453pt;}
.x2a_c01113{left:227.235053pt;}
.x55_c01113{left:234.072653pt;}
.x72_c01113{left:235.075853pt;}
.x9_c01113{left:236.026253pt;}
.x35_c01113{left:245.609453pt;}
.x3c_c01113{left:255.078253pt;}
.x5e_c01113{left:257.128653pt;}
.x73_c01113{left:263.530653pt;}
.x42_c01113{left:265.176253pt;}
.x15_c01113{left:266.474253pt;}
.x5f_c01113{left:273.677053pt;}
.x1f_c01113{left:275.067453pt;}
.x52_c01113{left:283.599053pt;}
.x3d_c01113{left:285.187453pt;}
.x4e_c01113{left:287.325853pt;}
.x2f_c01113{left:294.181053pt;}
.x24_c01113{left:295.681453pt;}
.x6d_c01113{left:302.488253pt;}
.x36_c01113{left:304.855453pt;}
.x25_c01113{left:314.042653pt;}
.x16_c01113{left:315.010653pt;}
.x63_c01113{left:322.468653pt;}
.x4a_c01113{left:323.991053pt;}
.x56_c01113{left:333.715053pt;}
.x37_c01113{left:343.034253pt;}
.x3e_c01113{left:344.486253pt;}
.x60_c01113{left:352.234653pt;}
.xa_c01113{left:354.593053pt;}
.x4b_c01113{left:362.526253pt;}
.x43_c01113{left:364.471053pt;}
.x6e_c01113{left:372.360253pt;}
.x3f_c01113{left:373.257853pt;}
.x30_c01113{left:374.208253pt;}
.x26_c01113{left:375.717453pt;}
.x20_c01113{left:383.765053pt;}
.x61_c01113{left:385.168653pt;}
.x50_c01113{left:392.098653pt;}
.xb_c01113{left:393.876253pt;}
.x74_c01113{left:402.047053pt;}
.x40_c01113{left:403.296653pt;}
.x17_c01113{left:404.933453pt;}
.x44_c01113{left:412.915053pt;}
.x21_c01113{left:422.555453pt;}
.x67_c01113{left:431.839453pt;}
.x18_c01113{left:433.392653pt;}
.x45_c01113{left:440.573453pt;}
.x31_c01113{left:441.567853pt;}
.x2b_c01113{left:443.006653pt;}
.xc_c01113{left:452.827453pt;}
.x5b_c01113{left:460.690253pt;}
.x32_c01113{left:462.951853pt;}
.x4c_c01113{left:470.959853pt;}
.x46_c01113{left:472.178653pt;}
.x38_c01113{left:479.865453pt;}
.x47_c01113{left:481.167853pt;}
.x22_c01113{left:482.567053pt;}
.x75_c01113{left:489.365053pt;}
.x53_c01113{left:490.993053pt;}
.x57_c01113{left:500.061453pt;}
.xd_c01113{left:501.931453pt;}
.x33_c01113{left:511.585053pt;}
.x27_c01113{left:519.509453pt;}
.x68_c01113{left:520.512653pt;}
.x19_c01113{left:521.577453pt;}
.x6f_c01113{left:529.158653pt;}
.x4f_c01113{left:530.857053pt;}
.xe_c01113{left:531.886653pt;}
.x54_c01113{left:538.825453pt;}
.x39_c01113{left:539.723053pt;}
.x62_c01113{left:548.681453pt;}
.x28_c01113{left:549.900253pt;}
.x4d_c01113{left:558.920253pt;}
.x1a_c01113{left:560.284253pt;}
.x5c_c01113{left:568.591453pt;}
.x3a_c01113{left:569.731053pt;}
.xf_c01113{left:570.941053pt;}
.x76_c01113{left:578.381453pt;}
.x64_c01113{left:588.505853pt;}
.x41_c01113{left:589.927053pt;}
.x2c_c01113{left:599.030653pt;}
.x77_c01113{left:609.894253pt;}
.x48_c01113{left:610.875453pt;}
.x58_c01113{left:618.012253pt;}
.x1b_c01113{left:619.486253pt;}
.x69_c01113{left:628.607453pt;}
.x2d_c01113{left:630.446653pt;}
.x3_c01113{left:637.152253pt;}
.x2e_c01113{left:647.892653pt;}
}





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

.ir_c01114:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01114{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01114;src:url('chunks/assets/font_7dc7ba2216586cbf915811fb.woff2')format("woff");}.ff1_c01114{font-family:ff1_c01114;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01114;src:url('chunks/assets/font_e4bc487a252a492561601e15.woff2')format("woff");}.ff2_c01114{font-family:ff2_c01114;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01114;src:url('chunks/assets/font_fc7804f828de4a8cab321b79.woff2')format("woff");}.ff3_c01114{font-family:ff3_c01114;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01114;src:url('chunks/assets/font_b13709c808984e48a01a34aa.woff2')format("woff");}.ff4_c01114{font-family:ff4_c01114;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01114;src:url('chunks/assets/font_e1abf963642a5b058a9a0350.woff2')format("woff");}.ff5_c01114{font-family:ff5_c01114;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01114;src:url('chunks/assets/font_4dfdc1b6e3df3b139bb79720.woff2')format("woff");}.ff6_c01114{font-family:ff6_c01114;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01114;src:url('chunks/assets/font_edcc006c864d99e56da12f3a.woff2')format("woff");}.ff7_c01114{font-family:ff7_c01114;line-height:0.689941;font-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_c01114{transform:matrix(0.010870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.010870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.010870,0.000000,0.000000,0.250000,0,0);}
.m4a_c01114{transform:matrix(0.016305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.016305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.016305,0.000000,0.000000,0.250000,0,0);}
.m70_c01114{transform:matrix(0.021740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021740,0.000000,0.000000,0.250000,0,0);}
.m35_c01114{transform:matrix(0.025001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.025001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.025001,0.000000,0.000000,0.250000,0,0);}
.m71_c01114{transform:matrix(0.027175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.027175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.027175,0.000000,0.000000,0.250000,0,0);}
.m5c_c01114{transform:matrix(0.034525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.034525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.034525,0.000000,0.000000,0.250000,0,0);}
.m5a_c01114{transform:matrix(0.037947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.037947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.037947,0.000000,0.000000,0.250000,0,0);}
.m48_c01114{transform:matrix(0.038044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.038044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.038044,0.000000,0.000000,0.250000,0,0);}
.m32_c01114{transform:matrix(0.040001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040001,0.000000,0.000000,0.250000,0,0);}
.m5d_c01114{transform:matrix(0.042144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042144,0.000000,0.000000,0.250000,0,0);}
.m75_c01114{transform:matrix(0.059783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.059783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.059783,0.000000,0.000000,0.250000,0,0);}
.m47_c01114{transform:matrix(0.065217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065217,0.000000,0.000000,0.250000,0,0);}
.m53_c01114{transform:matrix(0.070653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070653,0.000000,0.000000,0.250000,0,0);}
.m59_c01114{transform:matrix(0.074405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.074405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.074405,0.000000,0.000000,0.250000,0,0);}
.m74_c01114{transform:matrix(0.076087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076087,0.000000,0.000000,0.250000,0,0);}
.m31_c01114{transform:matrix(0.078500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078500,0.000000,0.000000,0.250000,0,0);}
.m72_c01114{transform:matrix(0.081521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081521,0.000000,0.000000,0.250000,0,0);}
.m34_c01114{transform:matrix(0.082501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.082501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.082501,0.000000,0.000000,0.250000,0,0);}
.m46_c01114{transform:matrix(0.084782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084782,0.000000,0.000000,0.250000,0,0);}
.m36_c01114{transform:matrix(0.087392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087392,0.000000,0.000000,0.250000,0,0);}
.m44_c01114{transform:matrix(0.093772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093772,0.000000,0.000000,0.250000,0,0);}
.m5e_c01114{transform:matrix(0.097703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097703,0.000000,0.000000,0.250000,0,0);}
.m5b_c01114{transform:matrix(0.101191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101191,0.000000,0.000000,0.250000,0,0);}
.m6e_c01114{transform:matrix(0.101224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101224,0.000000,0.000000,0.250000,0,0);}
.m78_c01114{transform:matrix(0.101708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101708,0.000000,0.000000,0.250000,0,0);}
.m45_c01114{transform:matrix(0.104814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104814,0.000000,0.000000,0.250000,0,0);}
.m33_c01114{transform:matrix(0.110555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110555,0.000000,0.000000,0.250000,0,0);}
.m76_c01114{transform:matrix(0.114130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114130,0.000000,0.000000,0.250000,0,0);}
.m7c_c01114{transform:matrix(0.117425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117425,0.000000,0.000000,0.250000,0,0);}
.m4b_c01114{transform:matrix(0.117528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117528,0.000000,0.000000,0.250000,0,0);}
.m2e_c01114{transform:matrix(0.121031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121031,0.000000,0.000000,0.250000,0,0);}
.m69_c01114{transform:matrix(0.123252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123252,0.000000,0.000000,0.250000,0,0);}
.m68_c01114{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);}
.mdc_c01114{transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);}
.m6f_c01114{transform:matrix(0.129831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129831,0.000000,0.000000,0.250000,0,0);}
.m57_c01114{transform:matrix(0.137649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137649,0.000000,0.000000,0.250000,0,0);}
.m50_c01114{transform:matrix(0.145867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145867,0.000000,0.000000,0.250000,0,0);}
.m5f_c01114{transform:matrix(0.147038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147038,0.000000,0.000000,0.250000,0,0);}
.m99_c01114{transform:matrix(0.148809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148809,0.000000,0.000000,0.250000,0,0);}
.m60_c01114{transform:matrix(0.151395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151395,0.000000,0.000000,0.250000,0,0);}
.m3f_c01114{transform:matrix(0.151517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151517,0.000000,0.000000,0.250000,0,0);}
.m4d_c01114{transform:matrix(0.156587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156587,0.000000,0.000000,0.250000,0,0);}
.m6d_c01114{transform:matrix(0.157191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157191,0.000000,0.000000,0.250000,0,0);}
.ma5_c01114{transform:matrix(0.157407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157407,0.000000,0.000000,0.250000,0,0);}
.m2f_c01114{transform:matrix(0.158163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158163,0.000000,0.000000,0.250000,0,0);}
.m2d_c01114{transform:matrix(0.166666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166666,0.000000,0.000000,0.250000,0,0);}
.m52_c01114{transform:matrix(0.170289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170289,0.000000,0.000000,0.250000,0,0);}
.m77_c01114{transform:matrix(0.170641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170641,0.000000,0.000000,0.250000,0,0);}
.m49_c01114{transform:matrix(0.173913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173913,0.000000,0.000000,0.250000,0,0);}
.ma6_c01114{transform:matrix(0.174074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174074,0.000000,0.000000,0.250000,0,0);}
.ma8_c01114{transform:matrix(0.174999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174999,0.000000,0.000000,0.250000,0,0);}
.mbc_c01114{transform:matrix(0.178125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178125,0.000000,0.000000,0.250000,0,0);}
.maa_c01114{transform:matrix(0.188126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188126,0.000000,0.000000,0.250000,0,0);}
.m58_c01114{transform:matrix(0.190476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190476,0.000000,0.000000,0.250000,0,0);}
.ma1_c01114{transform:matrix(0.204567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204567,0.000000,0.000000,0.250000,0,0);}
.m2c_c01114{transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);}
.m43_c01114{transform:matrix(0.227560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227560,0.000000,0.000000,0.250000,0,0);}
.m39_c01114{transform:matrix(0.235600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235600,0.000000,0.000000,0.250000,0,0);}
.m93_c01114{transform:matrix(0.244131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244131,0.000000,0.000000,0.250000,0,0);}
.m3d_c01114{transform:matrix(0.244623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244623,0.000000,0.000000,0.250000,0,0);}
.m30_c01114{transform:matrix(0.247463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247463,0.000000,0.000000,0.250000,0,0);}
.mc6_c01114{transform:matrix(0.249474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249474,0.000000,0.000000,0.250000,0,0);}
.m0_c01114{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m79_c01114{transform:matrix(0.251681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251681,0.000000,0.000000,0.250000,0,0);}
.m1e_c01114{transform:matrix(0.252399,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252399,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252399,0.000000,0.000000,0.250000,0,0);}
.m9b_c01114{transform:matrix(0.252599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252599,0.000000,0.000000,0.250000,0,0);}
.ma9_c01114{transform:matrix(0.255438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255438,0.000000,0.000000,0.250000,0,0);}
.m7f_c01114{transform:matrix(0.256751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256751,0.000000,0.000000,0.250000,0,0);}
.mb6_c01114{transform:matrix(0.258686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258686,0.000000,0.000000,0.250000,0,0);}
.m3_c01114{transform:matrix(0.259475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259475,0.000000,0.000000,0.250000,0,0);}
.m51_c01114{transform:matrix(0.260175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260175,0.000000,0.000000,0.250000,0,0);}
.m40_c01114{transform:matrix(0.260342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260342,0.000000,0.000000,0.250000,0,0);}
.m7d_c01114{transform:matrix(0.261142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261142,0.000000,0.000000,0.250000,0,0);}
.m17_c01114{transform:matrix(0.261798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261798,0.000000,0.000000,0.250000,0,0);}
.m37_c01114{transform:matrix(0.263027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263027,0.000000,0.000000,0.250000,0,0);}
.m7a_c01114{transform:matrix(0.263897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263897,0.000000,0.000000,0.250000,0,0);}
.m24_c01114{transform:matrix(0.264742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264742,0.000000,0.000000,0.250000,0,0);}
.md5_c01114{transform:matrix(0.265519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265519,0.000000,0.000000,0.250000,0,0);}
.m4c_c01114{transform:matrix(0.266138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266138,0.000000,0.000000,0.250000,0,0);}
.mc8_c01114{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.mcf_c01114{transform:matrix(0.270497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270497,0.000000,0.000000,0.250000,0,0);}
.mca_c01114{transform:matrix(0.270818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270818,0.000000,0.000000,0.250000,0,0);}
.m89_c01114{transform:matrix(0.271003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271003,0.000000,0.000000,0.250000,0,0);}
.mbb_c01114{transform:matrix(0.271015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271015,0.000000,0.000000,0.250000,0,0);}
.ma0_c01114{transform:matrix(0.271198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271198,0.000000,0.000000,0.250000,0,0);}
.mb1_c01114{transform:matrix(0.271415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271415,0.000000,0.000000,0.250000,0,0);}
.m2_c01114{transform:matrix(0.271526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271526,0.000000,0.000000,0.250000,0,0);}
.m28_c01114{transform:matrix(0.272118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272118,0.000000,0.000000,0.250000,0,0);}
.m81_c01114{transform:matrix(0.272280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272280,0.000000,0.000000,0.250000,0,0);}
.m67_c01114{transform:matrix(0.272895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272895,0.000000,0.000000,0.250000,0,0);}
.ma_c01114{transform:matrix(0.273387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273387,0.000000,0.000000,0.250000,0,0);}
.m8e_c01114{transform:matrix(0.273671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273671,0.000000,0.000000,0.250000,0,0);}
.mb2_c01114{transform:matrix(0.275032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275032,0.000000,0.000000,0.250000,0,0);}
.me_c01114{transform:matrix(0.275476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275476,0.000000,0.000000,0.250000,0,0);}
.mc3_c01114{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m64_c01114{transform:matrix(0.275843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275843,0.000000,0.000000,0.250000,0,0);}
.m55_c01114{transform:matrix(0.276056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276056,0.000000,0.000000,0.250000,0,0);}
.m14_c01114{transform:matrix(0.276494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276494,0.000000,0.000000,0.250000,0,0);}
.m6a_c01114{transform:matrix(0.276694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276694,0.000000,0.000000,0.250000,0,0);}
.m8_c01114{transform:matrix(0.277399,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277399,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277399,0.000000,0.000000,0.250000,0,0);}
.md1_c01114{transform:matrix(0.277754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277754,0.000000,0.000000,0.250000,0,0);}
.m1b_c01114{transform:matrix(0.277848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277848,0.000000,0.000000,0.250000,0,0);}
.m19_c01114{transform:matrix(0.277996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277996,0.000000,0.000000,0.250000,0,0);}
.m11_c01114{transform:matrix(0.278472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278472,0.000000,0.000000,0.250000,0,0);}
.m92_c01114{transform:matrix(0.278648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278648,0.000000,0.000000,0.250000,0,0);}
.ma3_c01114{transform:matrix(0.278792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278792,0.000000,0.000000,0.250000,0,0);}
.m62_c01114{transform:matrix(0.278999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278999,0.000000,0.000000,0.250000,0,0);}
.m22_c01114{transform:matrix(0.279945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279945,0.000000,0.000000,0.250000,0,0);}
.ma2_c01114{transform:matrix(0.281043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281043,0.000000,0.000000,0.250000,0,0);}
.m42_c01114{transform:matrix(0.281548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281548,0.000000,0.000000,0.250000,0,0);}
.maf_c01114{transform:matrix(0.281807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281807,0.000000,0.000000,0.250000,0,0);}
.m3a_c01114{transform:matrix(0.282862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282862,0.000000,0.000000,0.250000,0,0);}
.md9_c01114{transform:matrix(0.283782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283782,0.000000,0.000000,0.250000,0,0);}
.m38_c01114{transform:matrix(0.285039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285039,0.000000,0.000000,0.250000,0,0);}
.m23_c01114{transform:matrix(0.285669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285669,0.000000,0.000000,0.250000,0,0);}
.md8_c01114{transform:matrix(0.287130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287130,0.000000,0.000000,0.250000,0,0);}
.ma4_c01114{transform:matrix(0.287684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287684,0.000000,0.000000,0.250000,0,0);}
.m1d_c01114{transform:matrix(0.288089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288089,0.000000,0.000000,0.250000,0,0);}
.m21_c01114{transform:matrix(0.288246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288246,0.000000,0.000000,0.250000,0,0);}
.mb9_c01114{transform:matrix(0.288292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288292,0.000000,0.000000,0.250000,0,0);}
.m7b_c01114{transform:matrix(0.288675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288675,0.000000,0.000000,0.250000,0,0);}
.mc9_c01114{transform:matrix(0.289056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289056,0.000000,0.000000,0.250000,0,0);}
.m2a_c01114{transform:matrix(0.290344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290344,0.000000,0.000000,0.250000,0,0);}
.mb_c01114{transform:matrix(0.291040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291040,0.000000,0.000000,0.250000,0,0);}
.m2b_c01114{transform:matrix(0.293398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293398,0.000000,0.000000,0.250000,0,0);}
.m5_c01114{transform:matrix(0.293858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293858,0.000000,0.000000,0.250000,0,0);}
.m8a_c01114{transform:matrix(0.293938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293938,0.000000,0.000000,0.250000,0,0);}
.m41_c01114{transform:matrix(0.294310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294310,0.000000,0.000000,0.250000,0,0);}
.m9d_c01114{transform:matrix(0.294580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294580,0.000000,0.000000,0.250000,0,0);}
.m1_c01114{transform:matrix(0.294813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294813,0.000000,0.000000,0.250000,0,0);}
.mda_c01114{transform:matrix(0.294876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294876,0.000000,0.000000,0.250000,0,0);}
.m66_c01114{transform:matrix(0.296076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296076,0.000000,0.000000,0.250000,0,0);}
.m84_c01114{transform:matrix(0.296587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296587,0.000000,0.000000,0.250000,0,0);}
.mc4_c01114{transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296981,0.000000,0.000000,0.250000,0,0);}
.m65_c01114{transform:matrix(0.297050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297050,0.000000,0.000000,0.250000,0,0);}
.mba_c01114{transform:matrix(0.297264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297264,0.000000,0.000000,0.250000,0,0);}
.mae_c01114{transform:matrix(0.297375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297375,0.000000,0.000000,0.250000,0,0);}
.m15_c01114{transform:matrix(0.297787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297787,0.000000,0.000000,0.250000,0,0);}
.m8b_c01114{transform:matrix(0.297988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297988,0.000000,0.000000,0.250000,0,0);}
.mcc_c01114{transform:matrix(0.298550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298550,0.000000,0.000000,0.250000,0,0);}
.m9a_c01114{transform:matrix(0.299011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299011,0.000000,0.000000,0.250000,0,0);}
.mbd_c01114{transform:matrix(0.299881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299881,0.000000,0.000000,0.250000,0,0);}
.m56_c01114{transform:matrix(0.300463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300463,0.000000,0.000000,0.250000,0,0);}
.m96_c01114{transform:matrix(0.301286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301286,0.000000,0.000000,0.250000,0,0);}
.m9f_c01114{transform:matrix(0.301355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301355,0.000000,0.000000,0.250000,0,0);}
.m13_c01114{transform:matrix(0.301379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301379,0.000000,0.000000,0.250000,0,0);}
.m3e_c01114{transform:matrix(0.301797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301797,0.000000,0.000000,0.250000,0,0);}
.md_c01114{transform:matrix(0.302339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302339,0.000000,0.000000,0.250000,0,0);}
.m54_c01114{transform:matrix(0.304650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304650,0.000000,0.000000,0.250000,0,0);}
.md6_c01114{transform:matrix(0.305092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305092,0.000000,0.000000,0.250000,0,0);}
.m90_c01114{transform:matrix(0.305134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305134,0.000000,0.000000,0.250000,0,0);}
.m98_c01114{transform:matrix(0.306255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306255,0.000000,0.000000,0.250000,0,0);}
.mbe_c01114{transform:matrix(0.307177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307177,0.000000,0.000000,0.250000,0,0);}
.mad_c01114{transform:matrix(0.307293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307293,0.000000,0.000000,0.250000,0,0);}
.m6b_c01114{transform:matrix(0.307472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307472,0.000000,0.000000,0.250000,0,0);}
.m85_c01114{transform:matrix(0.307994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307994,0.000000,0.000000,0.250000,0,0);}
.mb7_c01114{transform:matrix(0.308508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308508,0.000000,0.000000,0.250000,0,0);}
.m3b_c01114{transform:matrix(0.308615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308615,0.000000,0.000000,0.250000,0,0);}
.mcd_c01114{transform:matrix(0.308747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308747,0.000000,0.000000,0.250000,0,0);}
.m29_c01114{transform:matrix(0.308917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308917,0.000000,0.000000,0.250000,0,0);}
.m9e_c01114{transform:matrix(0.309125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309125,0.000000,0.000000,0.250000,0,0);}
.m83_c01114{transform:matrix(0.309270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309270,0.000000,0.000000,0.250000,0,0);}
.md0_c01114{transform:matrix(0.311317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311317,0.000000,0.000000,0.250000,0,0);}
.m63_c01114{transform:matrix(0.312358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312358,0.000000,0.000000,0.250000,0,0);}
.m4f_c01114{transform:matrix(0.312843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312843,0.000000,0.000000,0.250000,0,0);}
.mc5_c01114{transform:matrix(0.312928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312928,0.000000,0.000000,0.250000,0,0);}
.m61_c01114{transform:matrix(0.312986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312986,0.000000,0.000000,0.250000,0,0);}
.md7_c01114{transform:matrix(0.313782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313782,0.000000,0.000000,0.250000,0,0);}
.m25_c01114{transform:matrix(0.314188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314188,0.000000,0.000000,0.250000,0,0);}
.m3c_c01114{transform:matrix(0.314386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314386,0.000000,0.000000,0.250000,0,0);}
.m97_c01114{transform:matrix(0.314396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314396,0.000000,0.000000,0.250000,0,0);}
.mcb_c01114{transform:matrix(0.314792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314792,0.000000,0.000000,0.250000,0,0);}
.m4_c01114{transform:matrix(0.314944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314944,0.000000,0.000000,0.250000,0,0);}
.md3_c01114{transform:matrix(0.315721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315721,0.000000,0.000000,0.250000,0,0);}
.m88_c01114{transform:matrix(0.315749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315749,0.000000,0.000000,0.250000,0,0);}
.mab_c01114{transform:matrix(0.316260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316260,0.000000,0.000000,0.250000,0,0);}
.mf_c01114{transform:matrix(0.317123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317123,0.000000,0.000000,0.250000,0,0);}
.mb4_c01114{transform:matrix(0.317298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317298,0.000000,0.000000,0.250000,0,0);}
.mb3_c01114{transform:matrix(0.320727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320727,0.000000,0.000000,0.250000,0,0);}
.m82_c01114{transform:matrix(0.322216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322216,0.000000,0.000000,0.250000,0,0);}
.m20_c01114{transform:matrix(0.324331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324331,0.000000,0.000000,0.250000,0,0);}
.m18_c01114{transform:matrix(0.326302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326302,0.000000,0.000000,0.250000,0,0);}
.mc0_c01114{transform:matrix(0.326684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326684,0.000000,0.000000,0.250000,0,0);}
.m7_c01114{transform:matrix(0.327114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327114,0.000000,0.000000,0.250000,0,0);}
.md4_c01114{transform:matrix(0.328414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328414,0.000000,0.000000,0.250000,0,0);}
.m1f_c01114{transform:matrix(0.330148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330148,0.000000,0.000000,0.250000,0,0);}
.mc7_c01114{transform:matrix(0.330307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330307,0.000000,0.000000,0.250000,0,0);}
.m27_c01114{transform:matrix(0.330515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330515,0.000000,0.000000,0.250000,0,0);}
.m8d_c01114{transform:matrix(0.330837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330837,0.000000,0.000000,0.250000,0,0);}
.mc1_c01114{transform:matrix(0.332312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332312,0.000000,0.000000,0.250000,0,0);}
.mc2_c01114{transform:matrix(0.334345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334345,0.000000,0.000000,0.250000,0,0);}
.m6c_c01114{transform:matrix(0.336073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336073,0.000000,0.000000,0.250000,0,0);}
.m10_c01114{transform:matrix(0.337506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337506,0.000000,0.000000,0.250000,0,0);}
.m9_c01114{transform:matrix(0.338844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338844,0.000000,0.000000,0.250000,0,0);}
.mac_c01114{transform:matrix(0.338886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338886,0.000000,0.000000,0.250000,0,0);}
.mdb_c01114{transform:matrix(0.339840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339840,0.000000,0.000000,0.250000,0,0);}
.md2_c01114{transform:matrix(0.341848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341848,0.000000,0.000000,0.250000,0,0);}
.m86_c01114{transform:matrix(0.341915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341915,0.000000,0.000000,0.250000,0,0);}
.mc_c01114{transform:matrix(0.343730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343730,0.000000,0.000000,0.250000,0,0);}
.m8c_c01114{transform:matrix(0.343932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343932,0.000000,0.000000,0.250000,0,0);}
.m1c_c01114{transform:matrix(0.344133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344133,0.000000,0.000000,0.250000,0,0);}
.mce_c01114{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m9c_c01114{transform:matrix(0.350872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350872,0.000000,0.000000,0.250000,0,0);}
.m16_c01114{transform:matrix(0.351285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351285,0.000000,0.000000,0.250000,0,0);}
.m87_c01114{transform:matrix(0.356405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356405,0.000000,0.000000,0.250000,0,0);}
.m94_c01114{transform:matrix(0.357824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357824,0.000000,0.000000,0.250000,0,0);}
.mb5_c01114{transform:matrix(0.359453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359453,0.000000,0.000000,0.250000,0,0);}
.mbf_c01114{transform:matrix(0.359605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359605,0.000000,0.000000,0.250000,0,0);}
.m12_c01114{transform:matrix(0.360143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360143,0.000000,0.000000,0.250000,0,0);}
.m1a_c01114{transform:matrix(0.365987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365987,0.000000,0.000000,0.250000,0,0);}
.m6_c01114{transform:matrix(0.373079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373079,0.000000,0.000000,0.250000,0,0);}
.ma7_c01114{transform:matrix(0.379946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379946,0.000000,0.000000,0.250000,0,0);}
.m4e_c01114{transform:matrix(0.384012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384012,0.000000,0.000000,0.250000,0,0);}
.m8f_c01114{transform:matrix(0.394352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394352,0.000000,0.000000,0.250000,0,0);}
.mb0_c01114{transform:matrix(0.400612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400612,0.000000,0.000000,0.250000,0,0);}
.m7e_c01114{transform:matrix(0.403791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403791,0.000000,0.000000,0.250000,0,0);}
.m80_c01114{transform:matrix(0.406871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406871,0.000000,0.000000,0.250000,0,0);}
.mb8_c01114{transform:matrix(0.413131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413131,0.000000,0.000000,0.250000,0,0);}
.m26_c01114{transform:matrix(0.425650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425650,0.000000,0.000000,0.250000,0,0);}
.m91_c01114{transform:matrix(0.439219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439219,0.000000,0.000000,0.250000,0,0);}
.m95_c01114{transform:matrix(0.553358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553358,0.000000,0.000000,0.250000,0,0);}
.v0_c01114{vertical-align:0.000000px;}
.ls13_c01114{letter-spacing:-3.118500px;}
.lse_c01114{letter-spacing:-3.104640px;}
.ls12_c01114{letter-spacing:-2.945250px;}
.ls10_c01114{letter-spacing:-2.938327px;}
.ls30_c01114{letter-spacing:-2.882880px;}
.ls14_c01114{letter-spacing:-2.834377px;}
.ls3b_c01114{letter-spacing:-2.744280px;}
.ls1c_c01114{letter-spacing:-2.647267px;}
.ls16_c01114{letter-spacing:-2.640330px;}
.ls22_c01114{letter-spacing:-2.612617px;}
.ls21_c01114{letter-spacing:-2.605680px;}
.ls34_c01114{letter-spacing:-2.564100px;}
.ls1d_c01114{letter-spacing:-2.474017px;}
.ls25_c01114{letter-spacing:-1.203345px;}
.ls3d_c01114{letter-spacing:-1.055300px;}
.ls2c_c01114{letter-spacing:-0.727650px;}
.ls1_c01114{letter-spacing:0.000000px;}
.ls2a_c01114{letter-spacing:0.025700px;}
.ls7_c01114{letter-spacing:0.052807px;}
.ls2d_c01114{letter-spacing:0.297000px;}
.ls0_c01114{letter-spacing:0.340540px;}
.ls35_c01114{letter-spacing:0.523078px;}
.ls3a_c01114{letter-spacing:0.883476px;}
.ls2b_c01114{letter-spacing:1.039500px;}
.ls29_c01114{letter-spacing:1.168200px;}
.ls2e_c01114{letter-spacing:1.229639px;}
.ls17_c01114{letter-spacing:1.267002px;}
.lsd_c01114{letter-spacing:1.523115px;}
.ls31_c01114{letter-spacing:1.775827px;}
.ls26_c01114{letter-spacing:1.841400px;}
.ls8_c01114{letter-spacing:1.985940px;}
.ls20_c01114{letter-spacing:2.376297px;}
.ls19_c01114{letter-spacing:2.429466px;}
.ls2f_c01114{letter-spacing:3.405610px;}
.ls5_c01114{letter-spacing:3.524400px;}
.ls1b_c01114{letter-spacing:3.534310px;}
.lsa_c01114{letter-spacing:3.564000px;}
.ls11_c01114{letter-spacing:3.582414px;}
.ls28_c01114{letter-spacing:3.603610px;}
.ls27_c01114{letter-spacing:3.623400px;}
.ls36_c01114{letter-spacing:3.663000px;}
.ls2_c01114{letter-spacing:3.702610px;}
.ls3_c01114{letter-spacing:3.742200px;}
.ls37_c01114{letter-spacing:3.759633px;}
.ls4_c01114{letter-spacing:3.771900px;}
.ls1a_c01114{letter-spacing:3.781810px;}
.lsb_c01114{letter-spacing:3.801610px;}
.ls24_c01114{letter-spacing:3.845318px;}
.ls39_c01114{letter-spacing:3.920400px;}
.ls3c_c01114{letter-spacing:3.950110px;}
.ls9_c01114{letter-spacing:3.969900px;}
.ls32_c01114{letter-spacing:3.999610px;}
.ls23_c01114{letter-spacing:4.039200px;}
.ls1e_c01114{letter-spacing:4.078810px;}
.ls18_c01114{letter-spacing:4.118400px;}
.ls6_c01114{letter-spacing:4.207500px;}
.ls3e_c01114{letter-spacing:31.363200px;}
.ls38_c01114{letter-spacing:57.024198px;}
.lsc_c01114{letter-spacing:59.875398px;}
.ls1f_c01114{letter-spacing:62.726400px;}
.ls33_c01114{letter-spacing:64.152198px;}
.ls15_c01114{letter-spacing:65.577798px;}
.lsf_c01114{letter-spacing:71.280000px;}
.sc__c01114{text-shadow:none;}
.sc0_c01114{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01114{-webkit-text-stroke:0px transparent;}
.sc0_c01114{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01114{word-spacing:-20.696544px;}
.ws1_c01114{word-spacing:-3.847338px;}
.ws2_c01114{word-spacing:0.000000px;}
._5_c01114{margin-left:-18.406872px;}
._1_c01114{margin-left:-8.197200px;}
._4_c01114{margin-left:-5.704295px;}
._2_c01114{margin-left:-3.465950px;}
._0_c01114{width:3.480755px;}
._3_c01114{width:322.834248px;}
.fc0_c01114{color:transparent;}
.fs29_c01114{font-size:5.940000px;}
.fs19_c01114{font-size:11.286000px;}
.fs5_c01114{font-size:17.028000px;}
.fs28_c01114{font-size:20.790000px;}
.fs23_c01114{font-size:22.374000px;}
.fs27_c01114{font-size:23.364000px;}
.fs31_c01114{font-size:26.928000px;}
.fs1b_c01114{font-size:27.720000px;}
.fs32_c01114{font-size:31.363200px;}
.fs1a_c01114{font-size:34.056198px;}
.fs24_c01114{font-size:36.828000px;}
.fs22_c01114{font-size:38.016198px;}
.fs14_c01114{font-size:39.600000px;}
.fs13_c01114{font-size:44.946198px;}
.fs0_c01114{font-size:50.688000px;}
.fs1f_c01114{font-size:56.628000px;}
.fs2c_c01114{font-size:57.024198px;}
.fsa_c01114{font-size:59.875398px;}
.fs1c_c01114{font-size:62.726400px;}
.fs2b_c01114{font-size:64.152198px;}
.fs10_c01114{font-size:65.577798px;}
.fs30_c01114{font-size:66.528000px;}
.fs17_c01114{font-size:68.112198px;}
.fs21_c01114{font-size:69.498000px;}
.fs4_c01114{font-size:70.488000px;}
.fs16_c01114{font-size:70.686198px;}
.fs8_c01114{font-size:71.280000px;}
.fs26_c01114{font-size:72.072198px;}
.fs25_c01114{font-size:72.468000px;}
.fsd_c01114{font-size:73.260000px;}
.fs1_c01114{font-size:74.052198px;}
.fs1d_c01114{font-size:74.448000px;}
.fs1e_c01114{font-size:74.646198px;}
.fs2_c01114{font-size:74.844000px;}
.fs3_c01114{font-size:75.438000px;}
.fs15_c01114{font-size:75.636198px;}
.fs9_c01114{font-size:76.032198px;}
.fs2e_c01114{font-size:76.824000px;}
.fs11_c01114{font-size:78.210000px;}
.fs2d_c01114{font-size:78.408000px;}
.fs2f_c01114{font-size:79.002198px;}
.fs7_c01114{font-size:79.398000px;}
.fs2a_c01114{font-size:79.992198px;}
.fs20_c01114{font-size:80.784000px;}
.fsf_c01114{font-size:80.982198px;}
.fs18_c01114{font-size:81.576198px;}
.fs12_c01114{font-size:82.368000px;}
.fsc_c01114{font-size:83.952198px;}
.fs6_c01114{font-size:84.150000px;}
.fsb_c01114{font-size:88.704000px;}
.fse_c01114{font-size:89.100000px;}
.y0_c01114{bottom:0.000000px;}
.y2c_c01114{bottom:56.930985px;}
.y2b_c01114{bottom:67.271535px;}
.y1_c01114{bottom:76.500000px;}
.y2a_c01114{bottom:80.458335px;}
.y29_c01114{bottom:128.923785px;}
.y28_c01114{bottom:160.291935px;}
.y27_c01114{bottom:193.075785px;}
.y26_c01114{bottom:225.513135px;}
.y25_c01114{bottom:257.589135px;}
.y24_c01114{bottom:288.590985px;}
.y23_c01114{bottom:319.959135px;}
.y22_c01114{bottom:353.812185px;}
.y1d_c01114{bottom:376.978185px;}
.y1c_c01114{bottom:385.536735px;}
.y1b_c01114{bottom:409.766985px;}
.y21_c01114{bottom:412.618185px;}
.y20_c01114{bottom:417.256335px;}
.y1a_c01114{bottom:417.612735px;}
.y1f_c01114{bottom:444.342735px;}
.y19_c01114{bottom:449.332335px;}
.y1e_c01114{bottom:449.683785px;}
.y18_c01114{bottom:474.275385px;}
.y17_c01114{bottom:479.982735px;}
.y16_c01114{bottom:514.197135px;}
.y15_c01114{bottom:555.178185px;}
.y14_c01114{bottom:573.715935px;}
.y13_c01114{bottom:577.279935px;}
.y10_c01114{bottom:578.700585px;}
.y12_c01114{bottom:579.413385px;}
.y11_c01114{bottom:582.264585px;}
.yf_c01114{bottom:640.362735px;}
.ye_c01114{bottom:661.390335px;}
.yd_c01114{bottom:672.433785px;}
.yc_c01114{bottom:705.940335px;}
.yb_c01114{bottom:735.521535px;}
.ya_c01114{bottom:768.666735px;}
.y9_c01114{bottom:803.232585px;}
.y8_c01114{bottom:835.313535px;}
.y7_c01114{bottom:867.384585px;}
.y6_c01114{bottom:883.778985px;}
.y5_c01114{bottom:900.173385px;}
.y4_c01114{bottom:932.249385px;}
.y3_c01114{bottom:1073.027385px;}
.y2_c01114{bottom:1101.182985px;}
.h2b_c01114{height:5.829785px;}
.h1c_c01114{height:11.770945px;}
.h7_c01114{height:17.759672px;}
.h2a_c01114{height:20.404248px;}
.h36_c01114{height:20.887891px;}
.h25_c01114{height:23.335383px;}
.h29_c01114{height:23.546531px;}
.h35_c01114{height:28.085063px;}
.h1e_c01114{height:28.911094px;}
.h1d_c01114{height:35.519550px;}
.h30_c01114{height:37.978116px;}
.h26_c01114{height:38.410453px;}
.hc_c01114{height:39.877015px;}
.h17_c01114{height:41.301563px;}
.h1f_c01114{height:41.775782px;}
.h2d_c01114{height:42.725364px;}
.h13_c01114{height:43.674813px;}
.h16_c01114{height:46.877480px;}
.he_c01114{height:47.472480px;}
.h2_c01114{height:52.866000px;}
.h22_c01114{height:59.061234px;}
.h24_c01114{height:68.208486px;}
.h6_c01114{height:69.180117px;}
.h19_c01114{height:69.374638px;}
.h34_c01114{height:69.386625px;}
.h28_c01114{height:70.734921px;}
.h1a_c01114{height:71.038894px;}
.h27_c01114{height:71.123379px;}
.h2e_c01114{height:71.900684px;}
.h3_c01114{height:72.678183px;}
.h21_c01114{height:73.224713px;}
.h4_c01114{height:73.455293px;}
.h2f_c01114{height:73.723496px;}
.h5_c01114{height:74.038271px;}
.h18_c01114{height:74.232792px;}
.ha_c01114{height:74.342813px;}
.hb_c01114{height:74.621444px;}
.h32_c01114{height:75.398555px;}
.h10_c01114{height:76.407891px;}
.h14_c01114{height:76.758838px;}
.h31_c01114{height:76.953164px;}
.h33_c01114{height:77.497762px;}
.h20_c01114{height:77.646938px;}
.h9_c01114{height:77.924795px;}
.h2c_c01114{height:78.507968px;}
.h23_c01114{height:79.285078px;}
.h12_c01114{height:79.479599px;}
.h1b_c01114{height:80.062577px;}
.h15_c01114{height:80.839688px;}
.hf_c01114{height:82.394491px;}
.h8_c01114{height:82.588623px;}
.hd_c01114{height:87.058125px;}
.h11_c01114{height:87.446777px;}
.h1_c01114{height:1110.000000px;}
.h0_c01114{height:1263.000000px;}
.w1_c01114{width:775.500000px;}
.w0_c01114{width:892.500000px;}
.x0_c01114{left:0.000000px;}
.x1_c01114{left:58.500000px;}
.x59_c01114{left:74.454585px;}
.x5_c01114{left:77.325585px;}
.x80_c01114{left:127.582935px;}
.x9f_c01114{left:128.711535px;}
.x55_c01114{left:129.993585px;}
.x1e_c01114{left:131.092485px;}
.x6_c01114{left:132.646785px;}
.x5a_c01114{left:152.907135px;}
.x56_c01114{left:154.293135px;}
.x2b_c01114{left:163.925835px;}
.x89_c01114{left:173.419935px;}
.xf_c01114{left:176.706735px;}
.xa0_c01114{left:184.012935px;}
.x4c_c01114{left:185.978085px;}
.x39_c01114{left:187.413585px;}
.x92_c01114{left:194.734635px;}
.x1f_c01114{left:198.273885px;}
.x2c_c01114{left:199.338135px;}
.x8a_c01114{left:202.535835px;}
.x98_c01114{left:204.911835px;}
.x3f_c01114{left:207.253185px;}
.x40_c01114{left:210.980535px;}
.xa1_c01114{left:215.569185px;}
.x71_c01114{left:218.544135px;}
.x5b_c01114{left:220.039035px;}
.x7_c01114{left:221.751735px;}
.x81_c01114{left:228.330285px;}
.x18_c01114{left:232.884285px;}
.x8f_c01114{left:239.606385px;}
.x61_c01114{left:241.046835px;}
.x25_c01114{left:242.106135px;}
.x31_c01114{left:243.412935px;}
.x32_c01114{left:246.422535px;}
.x9c_c01114{left:248.956935px;}
.x33_c01114{left:250.897335px;}
.x4d_c01114{left:252.550635px;}
.x19_c01114{left:253.867335px;}
.x41_c01114{left:259.807335px;}
.x90_c01114{left:273.122835px;}
.x2d_c01114{left:275.488935px;}
.x8b_c01114{left:283.290135px;}
.x6d_c01114{left:284.700885px;}
.x34_c01114{left:285.824535px;}
.x42_c01114{left:287.250135px;}
.x35_c01114{left:289.027185px;}
.x43_c01114{left:295.085985px;}
.x6e_c01114{left:296.184885px;}
.x44_c01114{left:297.224385px;}
.x10_c01114{left:298.258935px;}
.x45_c01114{left:308.990535px;}
.x26_c01114{left:310.376535px;}
.x8_c01114{left:321.598185px;}
.x70_c01114{left:322.890135px;}
.x99_c01114{left:327.048135px;}
.x93_c01114{left:328.587585px;}
.x1a_c01114{left:331.552635px;}
.x85_c01114{left:340.145835px;}
.x27_c01114{left:342.665385px;}
.x20_c01114{left:354.357285px;}
.x72_c01114{left:357.708435px;}
.x94_c01114{left:362.475285px;}
.x4e_c01114{left:363.519735px;}
.x17_c01114{left:366.618435px;}
.x9d_c01114{left:371.315985px;}
.x6f_c01114{left:374.295885px;}
.x5c_c01114{left:375.300735px;}
.x9_c01114{left:377.493585px;}
.x82_c01114{left:383.953335px;}
.x46_c01114{left:387.195585px;}
.x11_c01114{left:388.225185px;}
.x58_c01114{left:395.382885px;}
.x3a_c01114{left:396.976785px;}
.x57_c01114{left:398.372685px;}
.x8c_c01114{left:406.599585px;}
.x86_c01114{left:407.713335px;}
.x73_c01114{left:408.797385px;}
.xa_c01114{left:410.346735px;}
.x4f_c01114{left:419.474535px;}
.x50_c01114{left:429.097335px;}
.x12_c01114{left:431.542635px;}
.x9a_c01114{left:438.863685px;}
.x1b_c01114{left:442.249485px;}
.x36_c01114{left:444.442335px;}
.x95_c01114{left:449.377485px;}
.xa2_c01114{left:450.600135px;}
.x62_c01114{left:452.263335px;}
.x47_c01114{left:453.594885px;}
.x21_c01114{left:454.876935px;}
.x83_c01114{left:463.341435px;}
.x1c_c01114{left:465.197685px;}
.x9b_c01114{left:471.469335px;}
.x2e_c01114{left:473.285985px;}
.xb_c01114{left:476.285685px;}
.x48_c01114{left:477.864735px;}
.xa3_c01114{left:482.156385px;}
.x91_c01114{left:483.784935px;}
.x22_c01114{left:486.428235px;}
.x3b_c01114{left:488.329035px;}
.x2_c01114{left:490.081335px;}
.x87_c01114{left:493.957185px;}
.x49_c01114{left:496.343085px;}
.x13_c01114{left:498.382485px;}
.x9e_c01114{left:504.376935px;}
.x3c_c01114{left:507.049935px;}
.x74_c01114{left:508.653735px;}
.x5d_c01114{left:518.197335px;}
.xc_c01114{left:520.108035px;}
.x77_c01114{left:529.394235px;}
.x14_c01114{left:531.136635px;}
.x63_c01114{left:534.943185px;}
.x64_c01114{left:537.442935px;}
.x75_c01114{left:540.739635px;}
.x37_c01114{left:542.729535px;}
.x51_c01114{left:549.560535px;}
.x5e_c01114{left:551.693985px;}
.x28_c01114{left:555.668835px;}
.x96_c01114{left:560.747535px;}
.x78_c01114{left:562.123635px;}
.xd_c01114{left:565.034235px;}
.x7f_c01114{left:572.528535px;}
.x15_c01114{left:576.052935px;}
.x4a_c01114{left:585.819285px;}
.x8d_c01114{left:593.481885px;}
.x79_c01114{left:594.927285px;}
.x1d_c01114{left:597.694335px;}
.x7a_c01114{left:599.699085px;}
.x65_c01114{left:605.153985px;}
.x3d_c01114{left:607.183485px;}
.xe_c01114{left:609.905985px;}
.x7b_c01114{left:616.142985px;}
.x23_c01114{left:619.523835px;}
.x8e_c01114{left:625.790535px;}
.x7c_c01114{left:626.879535px;}
.x29_c01114{left:630.488085px;}
.x2f_c01114{left:631.883985px;}
.xa4_c01114{left:636.131085px;}
.x88_c01114{left:637.556685px;}
.x52_c01114{left:638.863485px;}
.x66_c01114{left:640.793985px;}
.x67_c01114{left:642.580935px;}
.x68_c01114{left:647.214135px;}
.x97_c01114{left:648.347685px;}
.x69_c01114{left:659.331735px;}
.x6a_c01114{left:661.465185px;}
.x5f_c01114{left:663.375885px;}
.x24_c01114{left:665.128185px;}
.x38_c01114{left:673.602585px;}
.x16_c01114{left:675.518235px;}
.x6b_c01114{left:684.502485px;}
.x3e_c01114{left:686.180535px;}
.x7d_c01114{left:687.482385px;}
.x7e_c01114{left:689.244585px;}
.x6c_c01114{left:692.471985px;}
.x53_c01114{left:694.922235px;}
.x60_c01114{left:696.768585px;}
.x2a_c01114{left:697.936785px;}
.x54_c01114{left:700.802835px;}
.xa5_c01114{left:702.901635px;}
.xa6_c01114{left:704.401485px;}
.x4b_c01114{left:706.015185px;}
.x30_c01114{left:708.410985px;}
.x3_c01114{left:710.386035px;}
.x76_c01114{left:716.588385px;}
.x84_c01114{left:727.216035px;}
.x4_c01114{left:758.544585px;}
@media print{
.v0_c01114{vertical-align:0.000000pt;}
.ls13_c01114{letter-spacing:-2.772000pt;}
.lse_c01114{letter-spacing:-2.759680pt;}
.ls12_c01114{letter-spacing:-2.618000pt;}
.ls10_c01114{letter-spacing:-2.611846pt;}
.ls30_c01114{letter-spacing:-2.562560pt;}
.ls14_c01114{letter-spacing:-2.519446pt;}
.ls3b_c01114{letter-spacing:-2.439360pt;}
.ls1c_c01114{letter-spacing:-2.353126pt;}
.ls16_c01114{letter-spacing:-2.346960pt;}
.ls22_c01114{letter-spacing:-2.322326pt;}
.ls21_c01114{letter-spacing:-2.316160pt;}
.ls34_c01114{letter-spacing:-2.279200pt;}
.ls1d_c01114{letter-spacing:-2.199126pt;}
.ls25_c01114{letter-spacing:-1.069640pt;}
.ls3d_c01114{letter-spacing:-0.938045pt;}
.ls2c_c01114{letter-spacing:-0.646800pt;}
.ls1_c01114{letter-spacing:0.000000pt;}
.ls2a_c01114{letter-spacing:0.022845pt;}
.ls7_c01114{letter-spacing:0.046939pt;}
.ls2d_c01114{letter-spacing:0.264000pt;}
.ls0_c01114{letter-spacing:0.302702pt;}
.ls35_c01114{letter-spacing:0.464958pt;}
.ls3a_c01114{letter-spacing:0.785312pt;}
.ls2b_c01114{letter-spacing:0.924000pt;}
.ls29_c01114{letter-spacing:1.038400pt;}
.ls2e_c01114{letter-spacing:1.093013pt;}
.ls17_c01114{letter-spacing:1.126224pt;}
.lsd_c01114{letter-spacing:1.353880pt;}
.ls31_c01114{letter-spacing:1.578513pt;}
.ls26_c01114{letter-spacing:1.636800pt;}
.ls8_c01114{letter-spacing:1.765280pt;}
.ls20_c01114{letter-spacing:2.112264pt;}
.ls19_c01114{letter-spacing:2.159525pt;}
.ls2f_c01114{letter-spacing:3.027209pt;}
.ls5_c01114{letter-spacing:3.132800pt;}
.ls1b_c01114{letter-spacing:3.141609pt;}
.lsa_c01114{letter-spacing:3.168000pt;}
.ls11_c01114{letter-spacing:3.184368pt;}
.ls28_c01114{letter-spacing:3.203209pt;}
.ls27_c01114{letter-spacing:3.220800pt;}
.ls36_c01114{letter-spacing:3.256000pt;}
.ls2_c01114{letter-spacing:3.291209pt;}
.ls3_c01114{letter-spacing:3.326400pt;}
.ls37_c01114{letter-spacing:3.341896pt;}
.ls4_c01114{letter-spacing:3.352800pt;}
.ls1a_c01114{letter-spacing:3.361609pt;}
.lsb_c01114{letter-spacing:3.379209pt;}
.ls24_c01114{letter-spacing:3.418061pt;}
.ls39_c01114{letter-spacing:3.484800pt;}
.ls3c_c01114{letter-spacing:3.511209pt;}
.ls9_c01114{letter-spacing:3.528800pt;}
.ls32_c01114{letter-spacing:3.555209pt;}
.ls23_c01114{letter-spacing:3.590400pt;}
.ls1e_c01114{letter-spacing:3.625609pt;}
.ls18_c01114{letter-spacing:3.660800pt;}
.ls6_c01114{letter-spacing:3.740000pt;}
.ls3e_c01114{letter-spacing:27.878400pt;}
.ls38_c01114{letter-spacing:50.688176pt;}
.lsc_c01114{letter-spacing:53.222576pt;}
.ls1f_c01114{letter-spacing:55.756800pt;}
.ls33_c01114{letter-spacing:57.024176pt;}
.ls15_c01114{letter-spacing:58.291376pt;}
.lsf_c01114{letter-spacing:63.360000pt;}
.ws0_c01114{word-spacing:-18.396928pt;}
.ws1_c01114{word-spacing:-3.419856pt;}
.ws2_c01114{word-spacing:0.000000pt;}
._5_c01114{margin-left:-16.361664pt;}
._1_c01114{margin-left:-7.286400pt;}
._4_c01114{margin-left:-5.070484pt;}
._2_c01114{margin-left:-3.080845pt;}
._0_c01114{width:3.094004pt;}
._3_c01114{width:286.963776pt;}
.fs29_c01114{font-size:5.280000pt;}
.fs19_c01114{font-size:10.032000pt;}
.fs5_c01114{font-size:15.136000pt;}
.fs28_c01114{font-size:18.480000pt;}
.fs23_c01114{font-size:19.888000pt;}
.fs27_c01114{font-size:20.768000pt;}
.fs31_c01114{font-size:23.936000pt;}
.fs1b_c01114{font-size:24.640000pt;}
.fs32_c01114{font-size:27.878400pt;}
.fs1a_c01114{font-size:30.272176pt;}
.fs24_c01114{font-size:32.736000pt;}
.fs22_c01114{font-size:33.792176pt;}
.fs14_c01114{font-size:35.200000pt;}
.fs13_c01114{font-size:39.952176pt;}
.fs0_c01114{font-size:45.056000pt;}
.fs1f_c01114{font-size:50.336000pt;}
.fs2c_c01114{font-size:50.688176pt;}
.fsa_c01114{font-size:53.222576pt;}
.fs1c_c01114{font-size:55.756800pt;}
.fs2b_c01114{font-size:57.024176pt;}
.fs10_c01114{font-size:58.291376pt;}
.fs30_c01114{font-size:59.136000pt;}
.fs17_c01114{font-size:60.544176pt;}
.fs21_c01114{font-size:61.776000pt;}
.fs4_c01114{font-size:62.656000pt;}
.fs16_c01114{font-size:62.832176pt;}
.fs8_c01114{font-size:63.360000pt;}
.fs26_c01114{font-size:64.064176pt;}
.fs25_c01114{font-size:64.416000pt;}
.fsd_c01114{font-size:65.120000pt;}
.fs1_c01114{font-size:65.824176pt;}
.fs1d_c01114{font-size:66.176000pt;}
.fs1e_c01114{font-size:66.352176pt;}
.fs2_c01114{font-size:66.528000pt;}
.fs3_c01114{font-size:67.056000pt;}
.fs15_c01114{font-size:67.232176pt;}
.fs9_c01114{font-size:67.584176pt;}
.fs2e_c01114{font-size:68.288000pt;}
.fs11_c01114{font-size:69.520000pt;}
.fs2d_c01114{font-size:69.696000pt;}
.fs2f_c01114{font-size:70.224176pt;}
.fs7_c01114{font-size:70.576000pt;}
.fs2a_c01114{font-size:71.104176pt;}
.fs20_c01114{font-size:71.808000pt;}
.fsf_c01114{font-size:71.984176pt;}
.fs18_c01114{font-size:72.512176pt;}
.fs12_c01114{font-size:73.216000pt;}
.fsc_c01114{font-size:74.624176pt;}
.fs6_c01114{font-size:74.800000pt;}
.fsb_c01114{font-size:78.848000pt;}
.fse_c01114{font-size:79.200000pt;}
.y0_c01114{bottom:0.000000pt;}
.y2c_c01114{bottom:50.605320pt;}
.y2b_c01114{bottom:59.796920pt;}
.y1_c01114{bottom:68.000000pt;}
.y2a_c01114{bottom:71.518520pt;}
.y29_c01114{bottom:114.598920pt;}
.y28_c01114{bottom:142.481720pt;}
.y27_c01114{bottom:171.622920pt;}
.y26_c01114{bottom:200.456120pt;}
.y25_c01114{bottom:228.968120pt;}
.y24_c01114{bottom:256.525320pt;}
.y23_c01114{bottom:284.408120pt;}
.y22_c01114{bottom:314.499720pt;}
.y1d_c01114{bottom:335.091720pt;}
.y1c_c01114{bottom:342.699320pt;}
.y1b_c01114{bottom:364.237320pt;}
.y21_c01114{bottom:366.771720pt;}
.y20_c01114{bottom:370.894520pt;}
.y1a_c01114{bottom:371.211320pt;}
.y1f_c01114{bottom:394.971320pt;}
.y19_c01114{bottom:399.406520pt;}
.y1e_c01114{bottom:399.718920pt;}
.y18_c01114{bottom:421.578120pt;}
.y17_c01114{bottom:426.651320pt;}
.y16_c01114{bottom:457.064120pt;}
.y15_c01114{bottom:493.491720pt;}
.y14_c01114{bottom:509.969720pt;}
.y13_c01114{bottom:513.137720pt;}
.y10_c01114{bottom:514.400520pt;}
.y12_c01114{bottom:515.034120pt;}
.y11_c01114{bottom:517.568520pt;}
.yf_c01114{bottom:569.211320pt;}
.ye_c01114{bottom:587.902520pt;}
.yd_c01114{bottom:597.718920pt;}
.yc_c01114{bottom:627.502520pt;}
.yb_c01114{bottom:653.796920pt;}
.ya_c01114{bottom:683.259320pt;}
.y9_c01114{bottom:713.984520pt;}
.y8_c01114{bottom:742.500920pt;}
.y7_c01114{bottom:771.008520pt;}
.y6_c01114{bottom:785.581320pt;}
.y5_c01114{bottom:800.154120pt;}
.y4_c01114{bottom:828.666120pt;}
.y3_c01114{bottom:953.802120pt;}
.y2_c01114{bottom:978.829320pt;}
.h2b_c01114{height:5.182031pt;}
.h1c_c01114{height:10.463063pt;}
.h7_c01114{height:15.786375pt;}
.h2a_c01114{height:18.137109pt;}
.h36_c01114{height:18.567014pt;}
.h25_c01114{height:20.742563pt;}
.h29_c01114{height:20.930250pt;}
.h35_c01114{height:24.964500pt;}
.h1e_c01114{height:25.698750pt;}
.h1d_c01114{height:31.572934pt;}
.h30_c01114{height:33.758325pt;}
.h26_c01114{height:34.142625pt;}
.hc_c01114{height:35.446236pt;}
.h17_c01114{height:36.712500pt;}
.h1f_c01114{height:37.134029pt;}
.h2d_c01114{height:37.978101pt;}
.h13_c01114{height:38.822056pt;}
.h16_c01114{height:41.668871pt;}
.he_c01114{height:42.197760pt;}
.h2_c01114{height:46.992000pt;}
.h22_c01114{height:52.498875pt;}
.h24_c01114{height:60.629766pt;}
.h6_c01114{height:61.493438pt;}
.h19_c01114{height:61.666345pt;}
.h34_c01114{height:61.677000pt;}
.h28_c01114{height:62.875485pt;}
.h1a_c01114{height:63.145684pt;}
.h27_c01114{height:63.220781pt;}
.h2e_c01114{height:63.911719pt;}
.h3_c01114{height:64.602829pt;}
.h21_c01114{height:65.088634pt;}
.h4_c01114{height:65.293594pt;}
.h2f_c01114{height:65.531996pt;}
.h5_c01114{height:65.811797pt;}
.h18_c01114{height:65.984704pt;}
.ha_c01114{height:66.082500pt;}
.hb_c01114{height:66.330173pt;}
.h32_c01114{height:67.020938pt;}
.h10_c01114{height:67.918125pt;}
.h14_c01114{height:68.230078pt;}
.h31_c01114{height:68.402813pt;}
.h33_c01114{height:68.886899pt;}
.h20_c01114{height:69.019500pt;}
.h9_c01114{height:69.266484pt;}
.h2c_c01114{height:69.784860pt;}
.h23_c01114{height:70.475625pt;}
.h12_c01114{height:70.648532pt;}
.h1b_c01114{height:71.166735pt;}
.h15_c01114{height:71.857500pt;}
.hf_c01114{height:73.239548pt;}
.h8_c01114{height:73.412109pt;}
.hd_c01114{height:77.385000pt;}
.h11_c01114{height:77.730469pt;}
.h1_c01114{height:986.666667pt;}
.h0_c01114{height:1122.666667pt;}
.w1_c01114{width:689.333333pt;}
.w0_c01114{width:793.333333pt;}
.x0_c01114{left:0.000000pt;}
.x1_c01114{left:52.000000pt;}
.x59_c01114{left:66.181853pt;}
.x5_c01114{left:68.733853pt;}
.x80_c01114{left:113.407053pt;}
.x9f_c01114{left:114.410253pt;}
.x55_c01114{left:115.549853pt;}
.x1e_c01114{left:116.526653pt;}
.x6_c01114{left:117.908253pt;}
.x5a_c01114{left:135.917453pt;}
.x56_c01114{left:137.149453pt;}
.x2b_c01114{left:145.711853pt;}
.x89_c01114{left:154.151053pt;}
.xf_c01114{left:157.072653pt;}
.xa0_c01114{left:163.567053pt;}
.x4c_c01114{left:165.313853pt;}
.x39_c01114{left:166.589853pt;}
.x92_c01114{left:173.097453pt;}
.x1f_c01114{left:176.243453pt;}
.x2c_c01114{left:177.189453pt;}
.x8a_c01114{left:180.031853pt;}
.x98_c01114{left:182.143853pt;}
.x3f_c01114{left:184.225053pt;}
.x40_c01114{left:187.538253pt;}
.xa1_c01114{left:191.617053pt;}
.x71_c01114{left:194.261453pt;}
.x5b_c01114{left:195.590253pt;}
.x7_c01114{left:197.112653pt;}
.x81_c01114{left:202.960253pt;}
.x18_c01114{left:207.008253pt;}
.x8f_c01114{left:212.983453pt;}
.x61_c01114{left:214.263853pt;}
.x25_c01114{left:215.205453pt;}
.x31_c01114{left:216.367053pt;}
.x32_c01114{left:219.042253pt;}
.x9c_c01114{left:221.295053pt;}
.x33_c01114{left:223.019853pt;}
.x4d_c01114{left:224.489453pt;}
.x19_c01114{left:225.659853pt;}
.x41_c01114{left:230.939853pt;}
.x90_c01114{left:242.775853pt;}
.x2d_c01114{left:244.879053pt;}
.x8b_c01114{left:251.813453pt;}
.x6d_c01114{left:253.067453pt;}
.x34_c01114{left:254.066253pt;}
.x42_c01114{left:255.333453pt;}
.x35_c01114{left:256.913053pt;}
.x43_c01114{left:262.298653pt;}
.x6e_c01114{left:263.275453pt;}
.x44_c01114{left:264.199453pt;}
.x10_c01114{left:265.119053pt;}
.x45_c01114{left:274.658253pt;}
.x26_c01114{left:275.890253pt;}
.x8_c01114{left:285.865053pt;}
.x70_c01114{left:287.013453pt;}
.x99_c01114{left:290.709453pt;}
.x93_c01114{left:292.077853pt;}
.x1a_c01114{left:294.713453pt;}
.x85_c01114{left:302.351853pt;}
.x27_c01114{left:304.591453pt;}
.x20_c01114{left:314.984253pt;}
.x72_c01114{left:317.963053pt;}
.x94_c01114{left:322.200253pt;}
.x4e_c01114{left:323.128653pt;}
.x17_c01114{left:325.883053pt;}
.x9d_c01114{left:330.058653pt;}
.x6f_c01114{left:332.707453pt;}
.x5c_c01114{left:333.600653pt;}
.x9_c01114{left:335.549853pt;}
.x82_c01114{left:341.291853pt;}
.x46_c01114{left:344.173853pt;}
.x11_c01114{left:345.089053pt;}
.x58_c01114{left:351.451453pt;}
.x3a_c01114{left:352.868253pt;}
.x57_c01114{left:354.109053pt;}
.x8c_c01114{left:361.421853pt;}
.x86_c01114{left:362.411853pt;}
.x73_c01114{left:363.375453pt;}
.xa_c01114{left:364.752653pt;}
.x4f_c01114{left:372.866253pt;}
.x50_c01114{left:381.419853pt;}
.x12_c01114{left:383.593453pt;}
.x9a_c01114{left:390.101053pt;}
.x1b_c01114{left:393.110653pt;}
.x36_c01114{left:395.059853pt;}
.x95_c01114{left:399.446653pt;}
.xa2_c01114{left:400.533453pt;}
.x62_c01114{left:402.011853pt;}
.x47_c01114{left:403.195453pt;}
.x21_c01114{left:404.335053pt;}
.x83_c01114{left:411.859053pt;}
.x1c_c01114{left:413.509053pt;}
.x9b_c01114{left:419.083853pt;}
.x2e_c01114{left:420.698653pt;}
.xb_c01114{left:423.365053pt;}
.x48_c01114{left:424.768653pt;}
.xa3_c01114{left:428.583453pt;}
.x91_c01114{left:430.031053pt;}
.x22_c01114{left:432.380653pt;}
.x3b_c01114{left:434.070253pt;}
.x2_c01114{left:435.627853pt;}
.x87_c01114{left:439.073053pt;}
.x49_c01114{left:441.193853pt;}
.x13_c01114{left:443.006653pt;}
.x9e_c01114{left:448.335053pt;}
.x3c_c01114{left:450.711053pt;}
.x74_c01114{left:452.136653pt;}
.x5d_c01114{left:460.619853pt;}
.xc_c01114{left:462.318253pt;}
.x77_c01114{left:470.572653pt;}
.x14_c01114{left:472.121453pt;}
.x63_c01114{left:475.505053pt;}
.x64_c01114{left:477.727053pt;}
.x75_c01114{left:480.657453pt;}
.x37_c01114{left:482.426253pt;}
.x51_c01114{left:488.498253pt;}
.x5e_c01114{left:490.394653pt;}
.x28_c01114{left:493.927853pt;}
.x96_c01114{left:498.442253pt;}
.x78_c01114{left:499.665453pt;}
.xd_c01114{left:502.252653pt;}
.x7f_c01114{left:508.914253pt;}
.x15_c01114{left:512.047053pt;}
.x4a_c01114{left:520.728253pt;}
.x8d_c01114{left:527.539453pt;}
.x79_c01114{left:528.824253pt;}
.x1d_c01114{left:531.283853pt;}
.x7a_c01114{left:533.065853pt;}
.x65_c01114{left:537.914653pt;}
.x3d_c01114{left:539.718653pt;}
.xe_c01114{left:542.138653pt;}
.x7b_c01114{left:547.682653pt;}
.x23_c01114{left:550.687853pt;}
.x8e_c01114{left:556.258253pt;}
.x7c_c01114{left:557.226253pt;}
.x29_c01114{left:560.433853pt;}
.x2f_c01114{left:561.674653pt;}
.xa4_c01114{left:565.449853pt;}
.x88_c01114{left:566.717053pt;}
.x52_c01114{left:567.878653pt;}
.x66_c01114{left:569.594653pt;}
.x67_c01114{left:571.183053pt;}
.x68_c01114{left:575.301453pt;}
.x97_c01114{left:576.309053pt;}
.x69_c01114{left:586.072653pt;}
.x6a_c01114{left:587.969053pt;}
.x5f_c01114{left:589.667453pt;}
.x24_c01114{left:591.225053pt;}
.x38_c01114{left:598.757853pt;}
.x16_c01114{left:600.460653pt;}
.x6b_c01114{left:608.446653pt;}
.x3e_c01114{left:609.938253pt;}
.x7d_c01114{left:611.095453pt;}
.x7e_c01114{left:612.661853pt;}
.x6c_c01114{left:615.530653pt;}
.x53_c01114{left:617.708653pt;}
.x60_c01114{left:619.349853pt;}
.x2a_c01114{left:620.388253pt;}
.x54_c01114{left:622.935853pt;}
.xa5_c01114{left:624.801453pt;}
.xa6_c01114{left:626.134653pt;}
.x4b_c01114{left:627.569053pt;}
.x30_c01114{left:629.698653pt;}
.x3_c01114{left:631.454253pt;}
.x76_c01114{left:636.967453pt;}
.x84_c01114{left:646.414253pt;}
.x4_c01114{left:674.261853pt;}
}





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

.ir_c01115:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01115{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01115;src:url('chunks/assets/font_57da81ee297c4cfe4cda94cd.woff2')format("woff");}.ff1_c01115{font-family:ff1_c01115;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01115;src:url('chunks/assets/font_5ee9c445b9710896edd40c37.woff2')format("woff");}.ff2_c01115{font-family:ff2_c01115;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01115;src:url('chunks/assets/font_f282c174ca2c0c43419709d0.woff2')format("woff");}.ff3_c01115{font-family:ff3_c01115;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01115;src:url('chunks/assets/font_314c63469097138f23c279a7.woff2')format("woff");}.ff4_c01115{font-family:ff4_c01115;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01115;src:url('chunks/assets/font_7f15953fa8010f18c45c7ddc.woff2')format("woff");}.ff5_c01115{font-family:ff5_c01115;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m27_c01115{transform:matrix(0.108889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108889,0.000000,0.000000,0.250000,0,0);}
.m8a_c01115{transform:matrix(0.114721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114721,0.000000,0.000000,0.250000,0,0);}
.mac_c01115{transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01115{transform:matrix(0.155364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155364,0.000000,0.000000,0.250000,0,0);}
.m8b_c01115{transform:matrix(0.164199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164199,0.000000,0.000000,0.250000,0,0);}
.m2d_c01115{transform:matrix(0.165091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165091,0.000000,0.000000,0.250000,0,0);}
.m4b_c01115{transform:matrix(0.169643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169643,0.000000,0.000000,0.250000,0,0);}
.m82_c01115{transform:matrix(0.170695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170695,0.000000,0.000000,0.250000,0,0);}
.m83_c01115{transform:matrix(0.175580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175580,0.000000,0.000000,0.250000,0,0);}
.m45_c01115{transform:matrix(0.180804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180804,0.000000,0.000000,0.250000,0,0);}
.m37_c01115{transform:matrix(0.205263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205263,0.000000,0.000000,0.250000,0,0);}
.m16_c01115{transform:matrix(0.207770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207770,0.000000,0.000000,0.250000,0,0);}
.m2_c01115{transform:matrix(0.209460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209460,0.000000,0.000000,0.250000,0,0);}
.m3c_c01115{transform:matrix(0.235827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235827,0.000000,0.000000,0.250000,0,0);}
.m0_c01115{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01115{transform:matrix(0.251864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251864,0.000000,0.000000,0.250000,0,0);}
.m66_c01115{transform:matrix(0.252297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252297,0.000000,0.000000,0.250000,0,0);}
.m78_c01115{transform:matrix(0.252466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252466,0.000000,0.000000,0.250000,0,0);}
.m56_c01115{transform:matrix(0.257342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257342,0.000000,0.000000,0.250000,0,0);}
.m31_c01115{transform:matrix(0.257624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257624,0.000000,0.000000,0.250000,0,0);}
.m21_c01115{transform:matrix(0.257821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257821,0.000000,0.000000,0.250000,0,0);}
.m61_c01115{transform:matrix(0.259059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259059,0.000000,0.000000,0.250000,0,0);}
.m19_c01115{transform:matrix(0.259320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259320,0.000000,0.000000,0.250000,0,0);}
.m12_c01115{transform:matrix(0.260674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260674,0.000000,0.000000,0.250000,0,0);}
.m8f_c01115{transform:matrix(0.260904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260904,0.000000,0.000000,0.250000,0,0);}
.mae_c01115{transform:matrix(0.261599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261599,0.000000,0.000000,0.250000,0,0);}
.m62_c01115{transform:matrix(0.263062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263062,0.000000,0.000000,0.250000,0,0);}
.ma6_c01115{transform:matrix(0.264058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264058,0.000000,0.000000,0.250000,0,0);}
.m8d_c01115{transform:matrix(0.266315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266315,0.000000,0.000000,0.250000,0,0);}
.m2c_c01115{transform:matrix(0.266594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266594,0.000000,0.000000,0.250000,0,0);}
.m11_c01115{transform:matrix(0.266768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266768,0.000000,0.000000,0.250000,0,0);}
.m68_c01115{transform:matrix(0.269265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269265,0.000000,0.000000,0.250000,0,0);}
.m2a_c01115{transform:matrix(0.270174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270174,0.000000,0.000000,0.250000,0,0);}
.maa_c01115{transform:matrix(0.271130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271130,0.000000,0.000000,0.250000,0,0);}
.m43_c01115{transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);}
.m3d_c01115{transform:matrix(0.271616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271616,0.000000,0.000000,0.250000,0,0);}
.m36_c01115{transform:matrix(0.271979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271979,0.000000,0.000000,0.250000,0,0);}
.m59_c01115{transform:matrix(0.272173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272173,0.000000,0.000000,0.250000,0,0);}
.m74_c01115{transform:matrix(0.272381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272381,0.000000,0.000000,0.250000,0,0);}
.ma1_c01115{transform:matrix(0.272577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272577,0.000000,0.000000,0.250000,0,0);}
.m10_c01115{transform:matrix(0.273167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273167,0.000000,0.000000,0.250000,0,0);}
.m48_c01115{transform:matrix(0.274017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274017,0.000000,0.000000,0.250000,0,0);}
.m17_c01115{transform:matrix(0.274254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274254,0.000000,0.000000,0.250000,0,0);}
.m6a_c01115{transform:matrix(0.274482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274482,0.000000,0.000000,0.250000,0,0);}
.m15_c01115{transform:matrix(0.275231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275231,0.000000,0.000000,0.250000,0,0);}
.ma_c01115{transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);}
.m2e_c01115{transform:matrix(0.276707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276707,0.000000,0.000000,0.250000,0,0);}
.m9_c01115{transform:matrix(0.277288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277288,0.000000,0.000000,0.250000,0,0);}
.m18_c01115{transform:matrix(0.277658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277658,0.000000,0.000000,0.250000,0,0);}
.m9f_c01115{transform:matrix(0.277753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277753,0.000000,0.000000,0.250000,0,0);}
.m6e_c01115{transform:matrix(0.277758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277758,0.000000,0.000000,0.250000,0,0);}
.m5e_c01115{transform:matrix(0.278608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278608,0.000000,0.000000,0.250000,0,0);}
.m1a_c01115{transform:matrix(0.279348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279348,0.000000,0.000000,0.250000,0,0);}
.m76_c01115{transform:matrix(0.281059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281059,0.000000,0.000000,0.250000,0,0);}
.mb_c01115{transform:matrix(0.281831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281831,0.000000,0.000000,0.250000,0,0);}
.m97_c01115{transform:matrix(0.281908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281908,0.000000,0.000000,0.250000,0,0);}
.m44_c01115{transform:matrix(0.282114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282114,0.000000,0.000000,0.250000,0,0);}
.m85_c01115{transform:matrix(0.282547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282547,0.000000,0.000000,0.250000,0,0);}
.m7c_c01115{transform:matrix(0.282670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282670,0.000000,0.000000,0.250000,0,0);}
.m13_c01115{transform:matrix(0.283113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283113,0.000000,0.000000,0.250000,0,0);}
.m3f_c01115{transform:matrix(0.283635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283635,0.000000,0.000000,0.250000,0,0);}
.mad_c01115{transform:matrix(0.284015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284015,0.000000,0.000000,0.250000,0,0);}
.m99_c01115{transform:matrix(0.284164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284164,0.000000,0.000000,0.250000,0,0);}
.m4f_c01115{transform:matrix(0.284685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284685,0.000000,0.000000,0.250000,0,0);}
.m75_c01115{transform:matrix(0.284870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284870,0.000000,0.000000,0.250000,0,0);}
.m8c_c01115{transform:matrix(0.284976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284976,0.000000,0.000000,0.250000,0,0);}
.ma3_c01115{transform:matrix(0.285012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285012,0.000000,0.000000,0.250000,0,0);}
.m6b_c01115{transform:matrix(0.286502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286502,0.000000,0.000000,0.250000,0,0);}
.ma0_c01115{transform:matrix(0.287277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287277,0.000000,0.000000,0.250000,0,0);}
.m49_c01115{transform:matrix(0.287335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287335,0.000000,0.000000,0.250000,0,0);}
.ma8_c01115{transform:matrix(0.287350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287350,0.000000,0.000000,0.250000,0,0);}
.m3a_c01115{transform:matrix(0.287465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287465,0.000000,0.000000,0.250000,0,0);}
.m6f_c01115{transform:matrix(0.287722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287722,0.000000,0.000000,0.250000,0,0);}
.m70_c01115{transform:matrix(0.288816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288816,0.000000,0.000000,0.250000,0,0);}
.m63_c01115{transform:matrix(0.288884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288884,0.000000,0.000000,0.250000,0,0);}
.m50_c01115{transform:matrix(0.290947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290947,0.000000,0.000000,0.250000,0,0);}
.m23_c01115{transform:matrix(0.291502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291502,0.000000,0.000000,0.250000,0,0);}
.m30_c01115{transform:matrix(0.291736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291736,0.000000,0.000000,0.250000,0,0);}
.m1_c01115{transform:matrix(0.291922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291922,0.000000,0.000000,0.250000,0,0);}
.m77_c01115{transform:matrix(0.292099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292099,0.000000,0.000000,0.250000,0,0);}
.m7e_c01115{transform:matrix(0.292290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292290,0.000000,0.000000,0.250000,0,0);}
.m7a_c01115{transform:matrix(0.292297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292297,0.000000,0.000000,0.250000,0,0);}
.m38_c01115{transform:matrix(0.292423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292423,0.000000,0.000000,0.250000,0,0);}
.m39_c01115{transform:matrix(0.294292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294292,0.000000,0.000000,0.250000,0,0);}
.m29_c01115{transform:matrix(0.294795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294795,0.000000,0.000000,0.250000,0,0);}
.m73_c01115{transform:matrix(0.294972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294972,0.000000,0.000000,0.250000,0,0);}
.md_c01115{transform:matrix(0.295873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295873,0.000000,0.000000,0.250000,0,0);}
.m58_c01115{transform:matrix(0.296189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296189,0.000000,0.000000,0.250000,0,0);}
.m8_c01115{transform:matrix(0.297280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297280,0.000000,0.000000,0.250000,0,0);}
.m7_c01115{transform:matrix(0.297445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297445,0.000000,0.000000,0.250000,0,0);}
.m34_c01115{transform:matrix(0.297759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297759,0.000000,0.000000,0.250000,0,0);}
.ma2_c01115{transform:matrix(0.299072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299072,0.000000,0.000000,0.250000,0,0);}
.m3b_c01115{transform:matrix(0.299660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299660,0.000000,0.000000,0.250000,0,0);}
.m80_c01115{transform:matrix(0.299704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299704,0.000000,0.000000,0.250000,0,0);}
.m6c_c01115{transform:matrix(0.301015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301015,0.000000,0.000000,0.250000,0,0);}
.m8e_c01115{transform:matrix(0.301343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301343,0.000000,0.000000,0.250000,0,0);}
.m47_c01115{transform:matrix(0.302722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302722,0.000000,0.000000,0.250000,0,0);}
.m5b_c01115{transform:matrix(0.303050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303050,0.000000,0.000000,0.250000,0,0);}
.m72_c01115{transform:matrix(0.303057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303057,0.000000,0.000000,0.250000,0,0);}
.m1e_c01115{transform:matrix(0.303643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303643,0.000000,0.000000,0.250000,0,0);}
.m87_c01115{transform:matrix(0.303909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303909,0.000000,0.000000,0.250000,0,0);}
.m67_c01115{transform:matrix(0.304437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304437,0.000000,0.000000,0.250000,0,0);}
.m2f_c01115{transform:matrix(0.305232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305232,0.000000,0.000000,0.250000,0,0);}
.m5d_c01115{transform:matrix(0.305272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305272,0.000000,0.000000,0.250000,0,0);}
.m4a_c01115{transform:matrix(0.306450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306450,0.000000,0.000000,0.250000,0,0);}
.m53_c01115{transform:matrix(0.307093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307093,0.000000,0.000000,0.250000,0,0);}
.m65_c01115{transform:matrix(0.307178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307178,0.000000,0.000000,0.250000,0,0);}
.m7b_c01115{transform:matrix(0.307549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307549,0.000000,0.000000,0.250000,0,0);}
.ma5_c01115{transform:matrix(0.309001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309001,0.000000,0.000000,0.250000,0,0);}
.m9c_c01115{transform:matrix(0.309617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309617,0.000000,0.000000,0.250000,0,0);}
.m14_c01115{transform:matrix(0.309873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309873,0.000000,0.000000,0.250000,0,0);}
.m89_c01115{transform:matrix(0.310139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310139,0.000000,0.000000,0.250000,0,0);}
.m5c_c01115{transform:matrix(0.310449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310449,0.000000,0.000000,0.250000,0,0);}
.m5_c01115{transform:matrix(0.310716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310716,0.000000,0.000000,0.250000,0,0);}
.m40_c01115{transform:matrix(0.311505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311505,0.000000,0.000000,0.250000,0,0);}
.m4d_c01115{transform:matrix(0.311620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311620,0.000000,0.000000,0.250000,0,0);}
.m4_c01115{transform:matrix(0.312241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312241,0.000000,0.000000,0.250000,0,0);}
.m79_c01115{transform:matrix(0.312402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312402,0.000000,0.000000,0.250000,0,0);}
.m69_c01115{transform:matrix(0.313056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313056,0.000000,0.000000,0.250000,0,0);}
.m98_c01115{transform:matrix(0.313604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313604,0.000000,0.000000,0.250000,0,0);}
.m9b_c01115{transform:matrix(0.313715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313715,0.000000,0.000000,0.250000,0,0);}
.m33_c01115{transform:matrix(0.314487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314487,0.000000,0.000000,0.250000,0,0);}
.m5f_c01115{transform:matrix(0.314645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314645,0.000000,0.000000,0.250000,0,0);}
.m42_c01115{transform:matrix(0.315309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315309,0.000000,0.000000,0.250000,0,0);}
.m24_c01115{transform:matrix(0.318221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318221,0.000000,0.000000,0.250000,0,0);}
.m35_c01115{transform:matrix(0.318347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318347,0.000000,0.000000,0.250000,0,0);}
.m32_c01115{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);}
.m6d_c01115{transform:matrix(0.318925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318925,0.000000,0.000000,0.250000,0,0);}
.m7d_c01115{transform:matrix(0.319680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319680,0.000000,0.000000,0.250000,0,0);}
.ma9_c01115{transform:matrix(0.320144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320144,0.000000,0.000000,0.250000,0,0);}
.m4e_c01115{transform:matrix(0.320272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320272,0.000000,0.000000,0.250000,0,0);}
.m54_c01115{transform:matrix(0.321717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321717,0.000000,0.000000,0.250000,0,0);}
.m64_c01115{transform:matrix(0.321908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321908,0.000000,0.000000,0.250000,0,0);}
.m9d_c01115{transform:matrix(0.322657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322657,0.000000,0.000000,0.250000,0,0);}
.m26_c01115{transform:matrix(0.322684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322684,0.000000,0.000000,0.250000,0,0);}
.m57_c01115{transform:matrix(0.323161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323161,0.000000,0.000000,0.250000,0,0);}
.m6_c01115{transform:matrix(0.325105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325105,0.000000,0.000000,0.250000,0,0);}
.m55_c01115{transform:matrix(0.325340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325340,0.000000,0.000000,0.250000,0,0);}
.m91_c01115{transform:matrix(0.325759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325759,0.000000,0.000000,0.250000,0,0);}
.m1c_c01115{transform:matrix(0.325789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325789,0.000000,0.000000,0.250000,0,0);}
.m60_c01115{transform:matrix(0.327588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327588,0.000000,0.000000,0.250000,0,0);}
.m52_c01115{transform:matrix(0.327616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327616,0.000000,0.000000,0.250000,0,0);}
.m71_c01115{transform:matrix(0.328562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328562,0.000000,0.000000,0.250000,0,0);}
.mf_c01115{transform:matrix(0.330560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330560,0.000000,0.000000,0.250000,0,0);}
.m1f_c01115{transform:matrix(0.331396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331396,0.000000,0.000000,0.250000,0,0);}
.m90_c01115{transform:matrix(0.331587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331587,0.000000,0.000000,0.250000,0,0);}
.m46_c01115{transform:matrix(0.334783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334783,0.000000,0.000000,0.250000,0,0);}
.ma4_c01115{transform:matrix(0.335351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335351,0.000000,0.000000,0.250000,0,0);}
.mc_c01115{transform:matrix(0.336077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336077,0.000000,0.000000,0.250000,0,0);}
.m3_c01115{transform:matrix(0.337297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337297,0.000000,0.000000,0.250000,0,0);}
.m1d_c01115{transform:matrix(0.337970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337970,0.000000,0.000000,0.250000,0,0);}
.m9e_c01115{transform:matrix(0.341044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341044,0.000000,0.000000,0.250000,0,0);}
.m7f_c01115{transform:matrix(0.346472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346472,0.000000,0.000000,0.250000,0,0);}
.m9a_c01115{transform:matrix(0.347343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347343,0.000000,0.000000,0.250000,0,0);}
.m41_c01115{transform:matrix(0.348226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348226,0.000000,0.000000,0.250000,0,0);}
.m25_c01115{transform:matrix(0.348636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348636,0.000000,0.000000,0.250000,0,0);}
.me_c01115{transform:matrix(0.349884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349884,0.000000,0.000000,0.250000,0,0);}
.m86_c01115{transform:matrix(0.350467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350467,0.000000,0.000000,0.250000,0,0);}
.m20_c01115{transform:matrix(0.351471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351471,0.000000,0.000000,0.250000,0,0);}
.m84_c01115{transform:matrix(0.354164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354164,0.000000,0.000000,0.250000,0,0);}
.m81_c01115{transform:matrix(0.356132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356132,0.000000,0.000000,0.250000,0,0);}
.m88_c01115{transform:matrix(0.357328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357328,0.000000,0.000000,0.250000,0,0);}
.m95_c01115{transform:matrix(0.359118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359118,0.000000,0.000000,0.250000,0,0);}
.m5a_c01115{transform:matrix(0.361256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361256,0.000000,0.000000,0.250000,0,0);}
.m51_c01115{transform:matrix(0.366449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366449,0.000000,0.000000,0.250000,0,0);}
.ma7_c01115{transform:matrix(0.369006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369006,0.000000,0.000000,0.250000,0,0);}
.m22_c01115{transform:matrix(0.384696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384696,0.000000,0.000000,0.250000,0,0);}
.m4c_c01115{transform:matrix(0.387883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387883,0.000000,0.000000,0.250000,0,0);}
.m1b_c01115{transform:matrix(0.397481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397481,0.000000,0.000000,0.250000,0,0);}
.m93_c01115{transform:matrix(0.401722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401722,0.000000,0.000000,0.250000,0,0);}
.m96_c01115{transform:matrix(0.403692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403692,0.000000,0.000000,0.250000,0,0);}
.m28_c01115{transform:matrix(0.424169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424169,0.000000,0.000000,0.250000,0,0);}
.mab_c01115{transform:matrix(0.463390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463390,0.000000,0.000000,0.250000,0,0);}
.m94_c01115{transform:matrix(0.715372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715372,0.000000,0.000000,0.250000,0,0);}
.m92_c01115{transform:matrix(0.736221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.736221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.736221,0.000000,0.000000,0.250000,0,0);}
.v0_c01115{vertical-align:0.000000px;}
.ls7_c01115{letter-spacing:-2.862090px;}
.ls17_c01115{letter-spacing:-2.681917px;}
.ls5_c01115{letter-spacing:-2.661127px;}
.lse_c01115{letter-spacing:-2.577967px;}
.lsc_c01115{letter-spacing:-1.763947px;}
.ls18_c01115{letter-spacing:-0.398456px;}
.ls13_c01115{letter-spacing:-0.030413px;}
.ls0_c01115{letter-spacing:0.000000px;}
.ls1a_c01115{letter-spacing:0.772210px;}
.ls19_c01115{letter-spacing:1.193706px;}
.ls16_c01115{letter-spacing:1.870392px;}
.ls3_c01115{letter-spacing:1.910700px;}
.ls1b_c01115{letter-spacing:1.920956px;}
.ls8_c01115{letter-spacing:2.286900px;}
.ls1e_c01115{letter-spacing:3.504610px;}
.ls1c_c01115{letter-spacing:3.544200px;}
.lsd_c01115{letter-spacing:3.682810px;}
.lsa_c01115{letter-spacing:3.742200px;}
.lsf_c01115{letter-spacing:3.771900px;}
.ls1_c01115{letter-spacing:3.801610px;}
.ls14_c01115{letter-spacing:3.910500px;}
.ls6_c01115{letter-spacing:4.088700px;}
.lsb_c01115{letter-spacing:4.118400px;}
.ls12_c01115{letter-spacing:4.237200px;}
.ls15_c01115{letter-spacing:4.435200px;}
.ls2_c01115{letter-spacing:52.747398px;}
.ls9_c01115{letter-spacing:54.172998px;}
.ls1d_c01115{letter-spacing:57.024198px;}
.ls10_c01115{letter-spacing:59.875398px;}
.ls11_c01115{letter-spacing:62.726400px;}
.ls4_c01115{letter-spacing:64.152198px;}
.sc__c01115{text-shadow:none;}
.sc0_c01115{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01115{-webkit-text-stroke:0px transparent;}
.sc0_c01115{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01115{word-spacing:-20.592000px;}
.ws0_c01115{word-spacing:-19.156550px;}
.ws2_c01115{word-spacing:0.000000px;}
._0_c01115{margin-left:-22.176148px;}
._2_c01115{margin-left:-11.416729px;}
._6_c01115{width:1.064547px;}
._3_c01115{width:4.573701px;}
._7_c01115{width:27.371454px;}
._5_c01115{width:166.814654px;}
._4_c01115{width:265.425199px;}
._1_c01115{width:341.840692px;}
.fc0_c01115{color:transparent;}
.fs15_c01115{font-size:15.444198px;}
.fs0_c01115{font-size:22.176000px;}
.fsc_c01115{font-size:27.720000px;}
.fs4_c01115{font-size:38.214000px;}
.fs8_c01115{font-size:44.946198px;}
.fs7_c01115{font-size:45.738000px;}
.fs2_c01115{font-size:52.747398px;}
.fs9_c01115{font-size:54.172998px;}
.fs17_c01115{font-size:57.024198px;}
.fse_c01115{font-size:59.875398px;}
.fsf_c01115{font-size:62.726400px;}
.fs5_c01115{font-size:64.152198px;}
.fs18_c01115{font-size:70.092198px;}
.fs16_c01115{font-size:70.884000px;}
.fsb_c01115{font-size:73.656198px;}
.fs14_c01115{font-size:73.854000px;}
.fs3_c01115{font-size:74.844000px;}
.fsd_c01115{font-size:75.438000px;}
.fs1_c01115{font-size:76.032198px;}
.fs13_c01115{font-size:76.626198px;}
.fs11_c01115{font-size:78.210000px;}
.fs6_c01115{font-size:81.774000px;}
.fsa_c01115{font-size:82.368000px;}
.fs10_c01115{font-size:84.744000px;}
.fs12_c01115{font-size:88.704000px;}
.y0_c01115{bottom:0.000000px;}
.y20_c01115{bottom:22.715991px;}
.y13_c01115{bottom:73.686735px;}
.y1_c01115{bottom:76.500000px;}
.y1f_c01115{bottom:77.607135px;}
.y1e_c01115{bottom:161.004735px;}
.y1d_c01115{bottom:193.793535px;}
.y1c_c01115{bottom:226.938735px;}
.y1b_c01115{bottom:259.014735px;}
.y1a_c01115{bottom:285.744735px;}
.y19_c01115{bottom:291.442185px;}
.y18_c01115{bottom:322.810335px;}
.y17_c01115{bottom:354.524985px;}
.y16_c01115{bottom:388.031535px;}
.y15_c01115{bottom:419.746185px;}
.y14_c01115{bottom:451.822185px;}
.y12_c01115{bottom:483.190335px;}
.y11_c01115{bottom:514.904985px;}
.y10_c01115{bottom:577.631385px;}
.yf_c01115{bottom:641.426985px;}
.ye_c01115{bottom:668.874735px;}
.yd_c01115{bottom:674.577135px;}
.yc_c01115{bottom:719.834985px;}
.yb_c01115{bottom:738.372735px;}
.ya_c01115{bottom:770.443785px;}
.y9_c01115{bottom:802.876185px;}
.y8_c01115{bottom:834.239385px;}
.y7_c01115{bottom:866.320335px;}
.y6_c01115{bottom:887.699385px;}
.y5_c01115{bottom:898.034985px;}
.y2_c01115{bottom:921.205935px;}
.y4_c01115{bottom:929.759535px;}
.y3_c01115{bottom:1075.165785px;}
.h17_c01115{height:16.107816px;}
.h2_c01115{height:23.128875px;}
.he_c01115{height:28.911094px;}
.h4_c01115{height:35.129767px;}
.ha_c01115{height:36.079217px;}
.h19_c01115{height:37.978116px;}
.h5_c01115{height:39.856008px;}
.h10_c01115{height:39.877015px;}
.h11_c01115{height:41.775782px;}
.h6_c01115{height:42.725364px;}
.h9_c01115{height:44.112235px;}
.h8_c01115{height:44.889346px;}
.h18_c01115{height:69.568770px;}
.hd_c01115{height:72.289530px;}
.h1a_c01115{height:73.103972px;}
.hb_c01115{height:73.455293px;}
.h3_c01115{height:74.621444px;}
.h15_c01115{height:75.204423px;}
.h13_c01115{height:76.720649px;}
.h16_c01115{height:77.027414px;}
.hf_c01115{height:78.679477px;}
.h7_c01115{height:80.256709px;}
.h1b_c01115{height:80.799469px;}
.hc_c01115{height:80.839688px;}
.h12_c01115{height:83.171602px;}
.h14_c01115{height:87.058125px;}
.h1_c01115{height:1110.000000px;}
.h0_c01115{height:1263.000000px;}
.w1_c01115{width:775.500000px;}
.w0_c01115{width:892.500000px;}
.x0_c01115{left:0.000000px;}
.x2_c01115{left:51.937035px;}
.x1_c01115{left:58.500000px;}
.x3a_c01115{left:82.052835px;}
.x4d_c01115{left:114.638685px;}
.x56_c01115{left:136.047435px;}
.x3b_c01115{left:137.072085px;}
.x5_c01115{left:138.631335px;}
.x32_c01115{left:139.700535px;}
.x11_c01115{left:140.997435px;}
.x63_c01115{left:158.896635px;}
.x2c_c01115{left:162.614085px;}
.x4e_c01115{left:169.167885px;}
.x69_c01115{left:171.073635px;}
.x6_c01115{left:172.256685px;}
.x2d_c01115{left:181.701285px;}
.x77_c01115{left:191.343885px;}
.x42_c01115{left:193.269435px;}
.x12_c01115{left:194.605935px;}
.x45_c01115{left:205.223685px;}
.x78_c01115{left:214.267335px;}
.x7_c01115{left:216.702735px;}
.x1f_c01115{left:226.266135px;}
.x6a_c01115{left:237.146235px;}
.x40_c01115{left:238.304535px;}
.x79_c01115{left:247.125435px;}
.x8_c01115{left:248.709435px;}
.x13_c01115{left:250.600335px;}
.x3c_c01115{left:259.084635px;}
.x4f_c01115{left:260.282535px;}
.x9_c01115{left:262.034835px;}
.x6b_c01115{left:270.034035px;}
.x7e_c01115{left:271.246785px;}
.x26_c01115{left:273.870285px;}
.x2e_c01115{left:282.201135px;}
.x14_c01115{left:283.611885px;}
.x57_c01115{left:286.329435px;}
.x50_c01115{left:292.066485px;}
.x64_c01115{left:293.630685px;}
.x33_c01115{left:304.510785px;}
.x27_c01115{left:306.258135px;}
.x7f_c01115{left:314.786985px;}
.xa_c01115{left:316.969935px;}
.x2f_c01115{left:318.360885px;}
.x5f_c01115{left:325.325535px;}
.x48_c01115{left:326.899635px;}
.x6c_c01115{left:335.616585px;}
.x34_c01115{left:337.591635px;}
.x15_c01115{left:338.715285px;}
.x39_c01115{left:345.229485px;}
.x20_c01115{left:349.347885px;}
.x65_c01115{left:357.807435px;}
.x58_c01115{left:358.960785px;}
.x41_c01115{left:369.870585px;}
.x16_c01115{left:371.251635px;}
.x5c_c01115{left:380.587335px;}
.x21_c01115{left:383.146485px;}
.xb_c01115{left:384.304785px;}
.x80_c01115{left:391.269435px;}
.x43_c01115{left:393.001935px;}
.x3d_c01115{left:404.233485px;}
.x6d_c01115{left:414.623535px;}
.x51_c01115{left:416.044185px;}
.x44_c01115{left:425.409585px;}
.x28_c01115{left:427.429185px;}
.x49_c01115{left:437.418285px;}
.x17_c01115{left:438.873585px;}
.x35_c01115{left:440.818935px;}
.x3f_c01115{left:445.759035px;}
.x52_c01115{left:448.194435px;}
.x22_c01115{left:450.550635px;}
.x36_c01115{left:452.273235px;}
.x7c_c01115{left:459.876435px;}
.x3e_c01115{left:468.543885px;}
.x37_c01115{left:469.721985px;}
.xc_c01115{left:471.093135px;}
.x18_c01115{left:472.558335px;}
.x66_c01115{left:481.210935px;}
.x59_c01115{left:491.051535px;}
.x53_c01115{left:503.733435px;}
.x30_c01115{left:504.901635px;}
.x19_c01115{left:515.237235px;}
.x4a_c01115{left:527.151885px;}
.x83_c01115{left:535.720335px;}
.x46_c01115{left:537.244935px;}
.xd_c01115{left:539.017035px;}
.x29_c01115{left:540.304035px;}
.x7d_c01115{left:546.318285px;}
.x5a_c01115{left:558.490335px;}
.xe_c01115{left:560.148585px;}
.x2a_c01115{left:562.029585px;}
.x4b_c01115{left:569.989185px;}
.x23_c01115{left:572.028585px;}
.x84_c01115{left:578.760585px;}
.x60_c01115{left:580.354485px;}
.x54_c01115{left:581.374185px;}
.x1a_c01115{left:582.443385px;}
.x81_c01115{left:590.269335px;}
.x5d_c01115{left:591.496935px;}
.x67_c01115{left:602.035485px;}
.x5b_c01115{left:612.187935px;}
.x1b_c01115{left:615.553935px;}
.x7a_c01115{left:623.775885px;}
.x61_c01115{left:625.171785px;}
.x24_c01115{left:626.661735px;}
.x68_c01115{left:634.200585px;}
.x85_c01115{left:635.997435px;}
.x71_c01115{left:641.798835px;}
.x47_c01115{left:644.674785px;}
.x55_c01115{left:646.006335px;}
.x1c_c01115{left:647.714085px;}
.x72_c01115{left:651.080085px;}
.x62_c01115{left:656.554785px;}
.x7b_c01115{left:658.331835px;}
.xf_c01115{left:659.475285px;}
.x6e_c01115{left:667.677435px;}
.x38_c01115{left:669.246585px;}
.x73_c01115{left:671.850285px;}
.x4c_c01115{left:678.176385px;}
.x6f_c01115{left:680.077185px;}
.x2b_c01115{left:681.329535px;}
.x74_c01115{left:682.745235px;}
.x75_c01115{left:688.051635px;}
.x10_c01115{left:690.937485px;}
.x1d_c01115{left:692.471985px;}
.x31_c01115{left:694.942035px;}
.x76_c01115{left:698.426835px;}
.x1e_c01115{left:700.585035px;}
.x5e_c01115{left:701.693835px;}
.x3_c01115{left:702.763035px;}
.x25_c01115{left:704.668785px;}
.x82_c01115{left:712.296735px;}
.x4_c01115{left:714.301485px;}
.x70_c01115{left:724.320285px;}
@media print{
.v0_c01115{vertical-align:0.000000pt;}
.ls7_c01115{letter-spacing:-2.544080pt;}
.ls17_c01115{letter-spacing:-2.383926pt;}
.ls5_c01115{letter-spacing:-2.365446pt;}
.lse_c01115{letter-spacing:-2.291526pt;}
.lsc_c01115{letter-spacing:-1.567953pt;}
.ls18_c01115{letter-spacing:-0.354183pt;}
.ls13_c01115{letter-spacing:-0.027034pt;}
.ls0_c01115{letter-spacing:0.000000pt;}
.ls1a_c01115{letter-spacing:0.686409pt;}
.ls19_c01115{letter-spacing:1.061072pt;}
.ls16_c01115{letter-spacing:1.662571pt;}
.ls3_c01115{letter-spacing:1.698400pt;}
.ls1b_c01115{letter-spacing:1.707517pt;}
.ls8_c01115{letter-spacing:2.032800pt;}
.ls1e_c01115{letter-spacing:3.115209pt;}
.ls1c_c01115{letter-spacing:3.150400pt;}
.lsd_c01115{letter-spacing:3.273609pt;}
.lsa_c01115{letter-spacing:3.326400pt;}
.lsf_c01115{letter-spacing:3.352800pt;}
.ls1_c01115{letter-spacing:3.379209pt;}
.ls14_c01115{letter-spacing:3.476000pt;}
.ls6_c01115{letter-spacing:3.634400pt;}
.lsb_c01115{letter-spacing:3.660800pt;}
.ls12_c01115{letter-spacing:3.766400pt;}
.ls15_c01115{letter-spacing:3.942400pt;}
.ls2_c01115{letter-spacing:46.886576pt;}
.ls9_c01115{letter-spacing:48.153776pt;}
.ls1d_c01115{letter-spacing:50.688176pt;}
.ls10_c01115{letter-spacing:53.222576pt;}
.ls11_c01115{letter-spacing:55.756800pt;}
.ls4_c01115{letter-spacing:57.024176pt;}
.ws1_c01115{word-spacing:-18.304000pt;}
.ws0_c01115{word-spacing:-17.028044pt;}
.ws2_c01115{word-spacing:0.000000pt;}
._0_c01115{margin-left:-19.712132pt;}
._2_c01115{margin-left:-10.148204pt;}
._6_c01115{width:0.946264pt;}
._3_c01115{width:4.065512pt;}
._7_c01115{width:24.330181pt;}
._5_c01115{width:148.279692pt;}
._4_c01115{width:235.933510pt;}
._1_c01115{width:303.858392pt;}
.fs15_c01115{font-size:13.728176pt;}
.fs0_c01115{font-size:19.712000pt;}
.fsc_c01115{font-size:24.640000pt;}
.fs4_c01115{font-size:33.968000pt;}
.fs8_c01115{font-size:39.952176pt;}
.fs7_c01115{font-size:40.656000pt;}
.fs2_c01115{font-size:46.886576pt;}
.fs9_c01115{font-size:48.153776pt;}
.fs17_c01115{font-size:50.688176pt;}
.fse_c01115{font-size:53.222576pt;}
.fsf_c01115{font-size:55.756800pt;}
.fs5_c01115{font-size:57.024176pt;}
.fs18_c01115{font-size:62.304176pt;}
.fs16_c01115{font-size:63.008000pt;}
.fsb_c01115{font-size:65.472176pt;}
.fs14_c01115{font-size:65.648000pt;}
.fs3_c01115{font-size:66.528000pt;}
.fsd_c01115{font-size:67.056000pt;}
.fs1_c01115{font-size:67.584176pt;}
.fs13_c01115{font-size:68.112176pt;}
.fs11_c01115{font-size:69.520000pt;}
.fs6_c01115{font-size:72.688000pt;}
.fsa_c01115{font-size:73.216000pt;}
.fs10_c01115{font-size:75.328000pt;}
.fs12_c01115{font-size:78.848000pt;}
.y0_c01115{bottom:0.000000pt;}
.y20_c01115{bottom:20.191992pt;}
.y13_c01115{bottom:65.499320pt;}
.y1_c01115{bottom:68.000000pt;}
.y1f_c01115{bottom:68.984120pt;}
.y1e_c01115{bottom:143.115320pt;}
.y1d_c01115{bottom:172.260920pt;}
.y1c_c01115{bottom:201.723320pt;}
.y1b_c01115{bottom:230.235320pt;}
.y1a_c01115{bottom:253.995320pt;}
.y19_c01115{bottom:259.059720pt;}
.y18_c01115{bottom:286.942520pt;}
.y17_c01115{bottom:315.133320pt;}
.y16_c01115{bottom:344.916920pt;}
.y15_c01115{bottom:373.107720pt;}
.y14_c01115{bottom:401.619720pt;}
.y12_c01115{bottom:429.502520pt;}
.y11_c01115{bottom:457.693320pt;}
.y10_c01115{bottom:513.450120pt;}
.yf_c01115{bottom:570.157320pt;}
.ye_c01115{bottom:594.555320pt;}
.yd_c01115{bottom:599.624120pt;}
.yc_c01115{bottom:639.853320pt;}
.yb_c01115{bottom:656.331320pt;}
.ya_c01115{bottom:684.838920pt;}
.y9_c01115{bottom:713.667720pt;}
.y8_c01115{bottom:741.546120pt;}
.y7_c01115{bottom:770.062520pt;}
.y6_c01115{bottom:789.066120pt;}
.y5_c01115{bottom:798.253320pt;}
.y2_c01115{bottom:818.849720pt;}
.y4_c01115{bottom:826.452920pt;}
.y3_c01115{bottom:955.702920pt;}
.h17_c01115{height:14.318059pt;}
.h2_c01115{height:20.559000pt;}
.he_c01115{height:25.698750pt;}
.h4_c01115{height:31.226460pt;}
.ha_c01115{height:32.070415pt;}
.h19_c01115{height:33.758325pt;}
.h5_c01115{height:35.427563pt;}
.h10_c01115{height:35.446236pt;}
.h11_c01115{height:37.134029pt;}
.h6_c01115{height:37.978101pt;}
.h9_c01115{height:39.210876pt;}
.h8_c01115{height:39.901641pt;}
.h18_c01115{height:61.838906pt;}
.hd_c01115{height:64.257360pt;}
.h1a_c01115{height:64.981309pt;}
.hb_c01115{height:65.293594pt;}
.h3_c01115{height:66.330173pt;}
.h15_c01115{height:66.848376pt;}
.h13_c01115{height:68.196133pt;}
.h16_c01115{height:68.468813pt;}
.hf_c01115{height:69.937313pt;}
.h7_c01115{height:71.339297pt;}
.h1b_c01115{height:71.821750pt;}
.hc_c01115{height:71.857500pt;}
.h12_c01115{height:73.930313pt;}
.h14_c01115{height:77.385000pt;}
.h1_c01115{height:986.666667pt;}
.h0_c01115{height:1122.666667pt;}
.w1_c01115{width:689.333333pt;}
.w0_c01115{width:793.333333pt;}
.x0_c01115{left:0.000000pt;}
.x2_c01115{left:46.166253pt;}
.x1_c01115{left:52.000000pt;}
.x3a_c01115{left:72.935853pt;}
.x4d_c01115{left:101.901053pt;}
.x56_c01115{left:120.931053pt;}
.x3b_c01115{left:121.841853pt;}
.x5_c01115{left:123.227853pt;}
.x32_c01115{left:124.178253pt;}
.x11_c01115{left:125.331053pt;}
.x63_c01115{left:141.241453pt;}
.x2c_c01115{left:144.545853pt;}
.x4e_c01115{left:150.371453pt;}
.x69_c01115{left:152.065453pt;}
.x6_c01115{left:153.117053pt;}
.x2d_c01115{left:161.512253pt;}
.x77_c01115{left:170.083453pt;}
.x42_c01115{left:171.795053pt;}
.x12_c01115{left:172.983053pt;}
.x45_c01115{left:182.421053pt;}
.x78_c01115{left:190.459853pt;}
.x7_c01115{left:192.624653pt;}
.x1f_c01115{left:201.125453pt;}
.x6a_c01115{left:210.796653pt;}
.x40_c01115{left:211.826253pt;}
.x79_c01115{left:219.667053pt;}
.x8_c01115{left:221.075053pt;}
.x13_c01115{left:222.755853pt;}
.x3c_c01115{left:230.297453pt;}
.x4f_c01115{left:231.362253pt;}
.x9_c01115{left:232.919853pt;}
.x6b_c01115{left:240.030253pt;}
.x7e_c01115{left:241.108253pt;}
.x26_c01115{left:243.440253pt;}
.x2e_c01115{left:250.845453pt;}
.x14_c01115{left:252.099453pt;}
.x57_c01115{left:254.515053pt;}
.x50_c01115{left:259.614653pt;}
.x64_c01115{left:261.005053pt;}
.x33_c01115{left:270.676253pt;}
.x27_c01115{left:272.229453pt;}
.x7f_c01115{left:279.810653pt;}
.xa_c01115{left:281.751053pt;}
.x2f_c01115{left:282.987453pt;}
.x5f_c01115{left:289.178253pt;}
.x48_c01115{left:290.577453pt;}
.x6c_c01115{left:298.325853pt;}
.x34_c01115{left:300.081453pt;}
.x15_c01115{left:301.080253pt;}
.x39_c01115{left:306.870653pt;}
.x20_c01115{left:310.531453pt;}
.x65_c01115{left:318.051053pt;}
.x58_c01115{left:319.076253pt;}
.x41_c01115{left:328.773853pt;}
.x16_c01115{left:330.001453pt;}
.x5c_c01115{left:338.299853pt;}
.x21_c01115{left:340.574653pt;}
.xb_c01115{left:341.604253pt;}
.x80_c01115{left:347.795053pt;}
.x43_c01115{left:349.335053pt;}
.x3d_c01115{left:359.318653pt;}
.x6d_c01115{left:368.554253pt;}
.x51_c01115{left:369.817053pt;}
.x44_c01115{left:378.141853pt;}
.x28_c01115{left:379.937053pt;}
.x49_c01115{left:388.816253pt;}
.x17_c01115{left:390.109853pt;}
.x35_c01115{left:391.839053pt;}
.x3f_c01115{left:396.230253pt;}
.x52_c01115{left:398.395053pt;}
.x22_c01115{left:400.489453pt;}
.x36_c01115{left:402.020653pt;}
.x7c_c01115{left:408.779053pt;}
.x3e_c01115{left:416.483453pt;}
.x37_c01115{left:417.530653pt;}
.xc_c01115{left:418.749453pt;}
.x18_c01115{left:420.051853pt;}
.x66_c01115{left:427.743053pt;}
.x59_c01115{left:436.490253pt;}
.x53_c01115{left:447.763053pt;}
.x30_c01115{left:448.801453pt;}
.x19_c01115{left:457.988653pt;}
.x4a_c01115{left:468.579453pt;}
.x83_c01115{left:476.195853pt;}
.x46_c01115{left:477.551053pt;}
.xd_c01115{left:479.126253pt;}
.x29_c01115{left:480.270253pt;}
.x7d_c01115{left:485.616253pt;}
.x5a_c01115{left:496.435853pt;}
.xe_c01115{left:497.909853pt;}
.x2a_c01115{left:499.581853pt;}
.x4b_c01115{left:506.657053pt;}
.x23_c01115{left:508.469853pt;}
.x84_c01115{left:514.453853pt;}
.x60_c01115{left:515.870653pt;}
.x54_c01115{left:516.777053pt;}
.x1a_c01115{left:517.727453pt;}
.x81_c01115{left:524.683853pt;}
.x5d_c01115{left:525.775053pt;}
.x67_c01115{left:535.142653pt;}
.x5b_c01115{left:544.167053pt;}
.x1b_c01115{left:547.159053pt;}
.x7a_c01115{left:554.467453pt;}
.x61_c01115{left:555.708253pt;}
.x24_c01115{left:557.032653pt;}
.x68_c01115{left:563.733853pt;}
.x85_c01115{left:565.331053pt;}
.x71_c01115{left:570.487853pt;}
.x47_c01115{left:573.044253pt;}
.x55_c01115{left:574.227853pt;}
.x1c_c01115{left:575.745853pt;}
.x72_c01115{left:578.737853pt;}
.x62_c01115{left:583.604253pt;}
.x7b_c01115{left:585.183853pt;}
.xf_c01115{left:586.200253pt;}
.x6e_c01115{left:593.491053pt;}
.x38_c01115{left:594.885853pt;}
.x73_c01115{left:597.200253pt;}
.x4c_c01115{left:602.823453pt;}
.x6f_c01115{left:604.513053pt;}
.x2b_c01115{left:605.626253pt;}
.x74_c01115{left:606.884653pt;}
.x75_c01115{left:611.601453pt;}
.x10_c01115{left:614.166653pt;}
.x1d_c01115{left:615.530653pt;}
.x31_c01115{left:617.726253pt;}
.x76_c01115{left:620.823853pt;}
.x1e_c01115{left:622.742253pt;}
.x5e_c01115{left:623.727853pt;}
.x3_c01115{left:624.678253pt;}
.x25_c01115{left:626.372253pt;}
.x82_c01115{left:633.152653pt;}
.x4_c01115{left:634.934653pt;}
.x70_c01115{left:643.840253pt;}
}





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

.ir_c01116:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01116{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01116;src:url('chunks/assets/font_a8dfb24d350efff876295fc9.woff2')format("woff");}.ff1_c01116{font-family:ff1_c01116;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01116;src:url('chunks/assets/font_b2e1de361d01b60fa3f5f0df.woff2')format("woff");}.ff2_c01116{font-family:ff2_c01116;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01116;src:url('chunks/assets/font_fa3e30dd2502e878db6b55ae.woff2')format("woff");}.ff3_c01116{font-family:ff3_c01116;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01116;src:url('chunks/assets/font_7f15953fa8010f18c45c7ddc.woff2')format("woff");}.ff4_c01116{font-family:ff4_c01116;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01116;src:url('chunks/assets/font_2e6a620e9f68c9e0c2692c3f.woff2')format("woff");}.ff5_c01116{font-family:ff5_c01116;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m26_c01116{transform:matrix(0.016667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.016667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.016667,0.000000,0.000000,0.250000,0,0);}
.m2_c01116{transform:matrix(0.017858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017858,0.000000,0.000000,0.250000,0,0);}
.m24_c01116{transform:matrix(0.026667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026667,0.000000,0.000000,0.250000,0,0);}
.m27_c01116{transform:matrix(0.065455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065455,0.000000,0.000000,0.250000,0,0);}
.m1_c01116{transform:matrix(0.065477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065477,0.000000,0.000000,0.250000,0,0);}
.m23_c01116{transform:matrix(0.069259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.069259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.069259,0.000000,0.000000,0.250000,0,0);}
.m15_c01116{transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);}
.m25_c01116{transform:matrix(0.071667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071667,0.000000,0.000000,0.250000,0,0);}
.m12_c01116{transform:matrix(0.090303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090303,0.000000,0.000000,0.250000,0,0);}
.m13_c01116{transform:matrix(0.098333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098333,0.000000,0.000000,0.250000,0,0);}
.m75_c01116{transform:matrix(0.106644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106644,0.000000,0.000000,0.250000,0,0);}
.m77_c01116{transform:matrix(0.107955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107955,0.000000,0.000000,0.250000,0,0);}
.m14_c01116{transform:matrix(0.142501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142501,0.000000,0.000000,0.250000,0,0);}
.m17_c01116{transform:matrix(0.147001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147001,0.000000,0.000000,0.250000,0,0);}
.m18_c01116{transform:matrix(0.150539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150539,0.000000,0.000000,0.250000,0,0);}
.m8e_c01116{transform:matrix(0.157830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157830,0.000000,0.000000,0.250000,0,0);}
.m2c_c01116{transform:matrix(0.158221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158221,0.000000,0.000000,0.250000,0,0);}
.m5_c01116{transform:matrix(0.179688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179688,0.000000,0.000000,0.250000,0,0);}
.m54_c01116{transform:matrix(0.189180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189180,0.000000,0.000000,0.250000,0,0);}
.m4e_c01116{transform:matrix(0.210245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210245,0.000000,0.000000,0.250000,0,0);}
.m70_c01116{transform:matrix(0.211944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211944,0.000000,0.000000,0.250000,0,0);}
.m76_c01116{transform:matrix(0.216156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216156,0.000000,0.000000,0.250000,0,0);}
.m6e_c01116{transform:matrix(0.226254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226254,0.000000,0.000000,0.250000,0,0);}
.m35_c01116{transform:matrix(0.226934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226934,0.000000,0.000000,0.250000,0,0);}
.m6d_c01116{transform:matrix(0.228419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228419,0.000000,0.000000,0.250000,0,0);}
.m63_c01116{transform:matrix(0.236331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236331,0.000000,0.000000,0.250000,0,0);}
.m3b_c01116{transform:matrix(0.241684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241684,0.000000,0.000000,0.250000,0,0);}
.me_c01116{transform:matrix(0.243236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243236,0.000000,0.000000,0.250000,0,0);}
.m0_c01116{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m28_c01116{transform:matrix(0.251591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251591,0.000000,0.000000,0.250000,0,0);}
.m1b_c01116{transform:matrix(0.251854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251854,0.000000,0.000000,0.250000,0,0);}
.m7f_c01116{transform:matrix(0.251955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251955,0.000000,0.000000,0.250000,0,0);}
.m61_c01116{transform:matrix(0.252091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252091,0.000000,0.000000,0.250000,0,0);}
.m4_c01116{transform:matrix(0.252463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252463,0.000000,0.000000,0.250000,0,0);}
.m79_c01116{transform:matrix(0.255070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255070,0.000000,0.000000,0.250000,0,0);}
.m73_c01116{transform:matrix(0.255298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255298,0.000000,0.000000,0.250000,0,0);}
.m10_c01116{transform:matrix(0.258589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258589,0.000000,0.000000,0.250000,0,0);}
.m39_c01116{transform:matrix(0.259764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259764,0.000000,0.000000,0.250000,0,0);}
.m95_c01116{transform:matrix(0.263625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263625,0.000000,0.000000,0.250000,0,0);}
.m6b_c01116{transform:matrix(0.263903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263903,0.000000,0.000000,0.250000,0,0);}
.m5c_c01116{transform:matrix(0.264967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264967,0.000000,0.000000,0.250000,0,0);}
.m82_c01116{transform:matrix(0.266536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266536,0.000000,0.000000,0.250000,0,0);}
.m1d_c01116{transform:matrix(0.266998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266998,0.000000,0.000000,0.250000,0,0);}
.m2a_c01116{transform:matrix(0.268094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268094,0.000000,0.000000,0.250000,0,0);}
.m45_c01116{transform:matrix(0.269027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269027,0.000000,0.000000,0.250000,0,0);}
.m3_c01116{transform:matrix(0.269235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269235,0.000000,0.000000,0.250000,0,0);}
.m8d_c01116{transform:matrix(0.269888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269888,0.000000,0.000000,0.250000,0,0);}
.m3c_c01116{transform:matrix(0.271003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271003,0.000000,0.000000,0.250000,0,0);}
.m31_c01116{transform:matrix(0.271526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271526,0.000000,0.000000,0.250000,0,0);}
.m74_c01116{transform:matrix(0.272173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272173,0.000000,0.000000,0.250000,0,0);}
.m90_c01116{transform:matrix(0.272987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272987,0.000000,0.000000,0.250000,0,0);}
.mf_c01116{transform:matrix(0.273540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273540,0.000000,0.000000,0.250000,0,0);}
.m8a_c01116{transform:matrix(0.273789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273789,0.000000,0.000000,0.250000,0,0);}
.m96_c01116{transform:matrix(0.273997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273997,0.000000,0.000000,0.250000,0,0);}
.m2b_c01116{transform:matrix(0.274017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274017,0.000000,0.000000,0.250000,0,0);}
.m3a_c01116{transform:matrix(0.275341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275341,0.000000,0.000000,0.250000,0,0);}
.m72_c01116{transform:matrix(0.275759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275759,0.000000,0.000000,0.250000,0,0);}
.m80_c01116{transform:matrix(0.275843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275843,0.000000,0.000000,0.250000,0,0);}
.m4a_c01116{transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);}
.m53_c01116{transform:matrix(0.276884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276884,0.000000,0.000000,0.250000,0,0);}
.m78_c01116{transform:matrix(0.278514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278514,0.000000,0.000000,0.250000,0,0);}
.m42_c01116{transform:matrix(0.278890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278890,0.000000,0.000000,0.250000,0,0);}
.m57_c01116{transform:matrix(0.278999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278999,0.000000,0.000000,0.250000,0,0);}
.m2f_c01116{transform:matrix(0.279020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279020,0.000000,0.000000,0.250000,0,0);}
.m7e_c01116{transform:matrix(0.279348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279348,0.000000,0.000000,0.250000,0,0);}
.mb_c01116{transform:matrix(0.279519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279519,0.000000,0.000000,0.250000,0,0);}
.m32_c01116{transform:matrix(0.279696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279696,0.000000,0.000000,0.250000,0,0);}
.m62_c01116{transform:matrix(0.280261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280261,0.000000,0.000000,0.250000,0,0);}
.m21_c01116{transform:matrix(0.280682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280682,0.000000,0.000000,0.250000,0,0);}
.m51_c01116{transform:matrix(0.281178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281178,0.000000,0.000000,0.250000,0,0);}
.m11_c01116{transform:matrix(0.283782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283782,0.000000,0.000000,0.250000,0,0);}
.m71_c01116{transform:matrix(0.284015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284015,0.000000,0.000000,0.250000,0,0);}
.m58_c01116{transform:matrix(0.284536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284536,0.000000,0.000000,0.250000,0,0);}
.m5b_c01116{transform:matrix(0.285521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285521,0.000000,0.000000,0.250000,0,0);}
.m9a_c01116{transform:matrix(0.286025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286025,0.000000,0.000000,0.250000,0,0);}
.m49_c01116{transform:matrix(0.287403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287403,0.000000,0.000000,0.250000,0,0);}
.m5d_c01116{transform:matrix(0.287688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287688,0.000000,0.000000,0.250000,0,0);}
.m89_c01116{transform:matrix(0.288675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288675,0.000000,0.000000,0.250000,0,0);}
.m52_c01116{transform:matrix(0.288764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288764,0.000000,0.000000,0.250000,0,0);}
.m84_c01116{transform:matrix(0.289725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289725,0.000000,0.000000,0.250000,0,0);}
.m50_c01116{transform:matrix(0.289811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289811,0.000000,0.000000,0.250000,0,0);}
.m68_c01116{transform:matrix(0.289843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289843,0.000000,0.000000,0.250000,0,0);}
.m16_c01116{transform:matrix(0.289973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289973,0.000000,0.000000,0.250000,0,0);}
.m30_c01116{transform:matrix(0.291018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291018,0.000000,0.000000,0.250000,0,0);}
.m83_c01116{transform:matrix(0.291254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291254,0.000000,0.000000,0.250000,0,0);}
.m40_c01116{transform:matrix(0.291670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291670,0.000000,0.000000,0.250000,0,0);}
.m6c_c01116{transform:matrix(0.292154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292154,0.000000,0.000000,0.250000,0,0);}
.m5e_c01116{transform:matrix(0.292708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292708,0.000000,0.000000,0.250000,0,0);}
.m41_c01116{transform:matrix(0.293432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293432,0.000000,0.000000,0.250000,0,0);}
.m43_c01116{transform:matrix(0.294280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294280,0.000000,0.000000,0.250000,0,0);}
.m8c_c01116{transform:matrix(0.294292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294292,0.000000,0.000000,0.250000,0,0);}
.m1e_c01116{transform:matrix(0.295133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295133,0.000000,0.000000,0.250000,0,0);}
.m33_c01116{transform:matrix(0.296522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296522,0.000000,0.000000,0.250000,0,0);}
.m69_c01116{transform:matrix(0.298353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298353,0.000000,0.000000,0.250000,0,0);}
.m44_c01116{transform:matrix(0.298863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298863,0.000000,0.000000,0.250000,0,0);}
.m6a_c01116{transform:matrix(0.300964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300964,0.000000,0.000000,0.250000,0,0);}
.m6_c01116{transform:matrix(0.301213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301213,0.000000,0.000000,0.250000,0,0);}
.mc_c01116{transform:matrix(0.302616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302616,0.000000,0.000000,0.250000,0,0);}
.m97_c01116{transform:matrix(0.303649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303649,0.000000,0.000000,0.250000,0,0);}
.m2e_c01116{transform:matrix(0.303711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303711,0.000000,0.000000,0.250000,0,0);}
.m5f_c01116{transform:matrix(0.303886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303886,0.000000,0.000000,0.250000,0,0);}
.m7b_c01116{transform:matrix(0.306520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306520,0.000000,0.000000,0.250000,0,0);}
.m34_c01116{transform:matrix(0.307761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307761,0.000000,0.000000,0.250000,0,0);}
.m8f_c01116{transform:matrix(0.307936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307936,0.000000,0.000000,0.250000,0,0);}
.m1c_c01116{transform:matrix(0.308872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308872,0.000000,0.000000,0.250000,0,0);}
.m98_c01116{transform:matrix(0.309718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309718,0.000000,0.000000,0.250000,0,0);}
.m88_c01116{transform:matrix(0.310218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310218,0.000000,0.000000,0.250000,0,0);}
.m29_c01116{transform:matrix(0.311469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311469,0.000000,0.000000,0.250000,0,0);}
.m56_c01116{transform:matrix(0.311791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311791,0.000000,0.000000,0.250000,0,0);}
.m22_c01116{transform:matrix(0.312076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312076,0.000000,0.000000,0.250000,0,0);}
.md_c01116{transform:matrix(0.312736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312736,0.000000,0.000000,0.250000,0,0);}
.m46_c01116{transform:matrix(0.312858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312858,0.000000,0.000000,0.250000,0,0);}
.m8_c01116{transform:matrix(0.314020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314020,0.000000,0.000000,0.250000,0,0);}
.m20_c01116{transform:matrix(0.314547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314547,0.000000,0.000000,0.250000,0,0);}
.m37_c01116{transform:matrix(0.314618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314618,0.000000,0.000000,0.250000,0,0);}
.m7d_c01116{transform:matrix(0.315062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315062,0.000000,0.000000,0.250000,0,0);}
.m67_c01116{transform:matrix(0.315091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315091,0.000000,0.000000,0.250000,0,0);}
.m59_c01116{transform:matrix(0.317242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317242,0.000000,0.000000,0.250000,0,0);}
.m4d_c01116{transform:matrix(0.317874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317874,0.000000,0.000000,0.250000,0,0);}
.m38_c01116{transform:matrix(0.318089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318089,0.000000,0.000000,0.250000,0,0);}
.m7_c01116{transform:matrix(0.318726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318726,0.000000,0.000000,0.250000,0,0);}
.m5a_c01116{transform:matrix(0.320118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320118,0.000000,0.000000,0.250000,0,0);}
.m7a_c01116{transform:matrix(0.320438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320438,0.000000,0.000000,0.250000,0,0);}
.m8b_c01116{transform:matrix(0.320610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320610,0.000000,0.000000,0.250000,0,0);}
.m7c_c01116{transform:matrix(0.320897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320897,0.000000,0.000000,0.250000,0,0);}
.m55_c01116{transform:matrix(0.321179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321179,0.000000,0.000000,0.250000,0,0);}
.ma_c01116{transform:matrix(0.321451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321451,0.000000,0.000000,0.250000,0,0);}
.m4b_c01116{transform:matrix(0.322339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322339,0.000000,0.000000,0.250000,0,0);}
.m85_c01116{transform:matrix(0.325604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325604,0.000000,0.000000,0.250000,0,0);}
.m9_c01116{transform:matrix(0.326456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326456,0.000000,0.000000,0.250000,0,0);}
.m3e_c01116{transform:matrix(0.330883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330883,0.000000,0.000000,0.250000,0,0);}
.m19_c01116{transform:matrix(0.333011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333011,0.000000,0.000000,0.250000,0,0);}
.m87_c01116{transform:matrix(0.333520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333520,0.000000,0.000000,0.250000,0,0);}
.m94_c01116{transform:matrix(0.343438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343438,0.000000,0.000000,0.250000,0,0);}
.m48_c01116{transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);}
.m93_c01116{transform:matrix(0.346491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346491,0.000000,0.000000,0.250000,0,0);}
.m66_c01116{transform:matrix(0.349125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349125,0.000000,0.000000,0.250000,0,0);}
.m47_c01116{transform:matrix(0.350806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350806,0.000000,0.000000,0.250000,0,0);}
.m60_c01116{transform:matrix(0.352977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352977,0.000000,0.000000,0.250000,0,0);}
.m86_c01116{transform:matrix(0.353934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353934,0.000000,0.000000,0.250000,0,0);}
.m3d_c01116{transform:matrix(0.354073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354073,0.000000,0.000000,0.250000,0,0);}
.m64_c01116{transform:matrix(0.356018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356018,0.000000,0.000000,0.250000,0,0);}
.m3f_c01116{transform:matrix(0.357309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357309,0.000000,0.000000,0.250000,0,0);}
.m91_c01116{transform:matrix(0.357666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357666,0.000000,0.000000,0.250000,0,0);}
.m6f_c01116{transform:matrix(0.361156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361156,0.000000,0.000000,0.250000,0,0);}
.m4c_c01116{transform:matrix(0.367956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367956,0.000000,0.000000,0.250000,0,0);}
.m36_c01116{transform:matrix(0.370553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370553,0.000000,0.000000,0.250000,0,0);}
.m4f_c01116{transform:matrix(0.373245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373245,0.000000,0.000000,0.250000,0,0);}
.m1a_c01116{transform:matrix(0.377679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377679,0.000000,0.000000,0.250000,0,0);}
.m81_c01116{transform:matrix(0.397482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397482,0.000000,0.000000,0.250000,0,0);}
.m1f_c01116{transform:matrix(0.403791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403791,0.000000,0.000000,0.250000,0,0);}
.m2d_c01116{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_c01116{transform:matrix(0.418291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418291,0.000000,0.000000,0.250000,0,0);}
.m92_c01116{transform:matrix(0.422719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422719,0.000000,0.000000,0.250000,0,0);}
.m99_c01116{transform:matrix(0.434681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434681,0.000000,0.000000,0.250000,0,0);}
.m9b_c01116{transform:matrix(0.442124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442124,0.000000,0.000000,0.250000,0,0);}
.m9c_c01116{transform:matrix(0.693741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.693741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.693741,0.000000,0.000000,0.250000,0,0);}
.v1_c01116{vertical-align:-1.405800px;}
.v0_c01116{vertical-align:0.000000px;}
.v2_c01116{vertical-align:1.421640px;}
.ls1e_c01116{letter-spacing:-3.922380px;}
.ls25_c01116{letter-spacing:-2.882880px;}
.ls15_c01116{letter-spacing:-2.799727px;}
.ls2a_c01116{letter-spacing:-2.758140px;}
.ls1a_c01116{letter-spacing:-2.709630px;}
.lsa_c01116{letter-spacing:-2.681917px;}
.ls32_c01116{letter-spacing:-2.619540px;}
.ls20_c01116{letter-spacing:-2.564100px;}
.lsd_c01116{letter-spacing:-2.550240px;}
.ls28_c01116{letter-spacing:-2.335417px;}
.ls30_c01116{letter-spacing:-2.252804px;}
.ls2b_c01116{letter-spacing:-1.164101px;}
.ls21_c01116{letter-spacing:-0.688644px;}
.ls11_c01116{letter-spacing:-0.336996px;}
.ls26_c01116{letter-spacing:-0.302940px;}
.ls2_c01116{letter-spacing:0.000000px;}
.lsf_c01116{letter-spacing:0.389189px;}
.ls23_c01116{letter-spacing:0.433541px;}
.ls35_c01116{letter-spacing:0.475210px;}
.ls8_c01116{letter-spacing:0.513396px;}
.ls33_c01116{letter-spacing:0.792000px;}
.ls34_c01116{letter-spacing:1.019700px;}
.ls2f_c01116{letter-spacing:1.622650px;}
.ls14_c01116{letter-spacing:1.623283px;}
.ls1c_c01116{letter-spacing:1.624115px;}
.ls19_c01116{letter-spacing:2.723213px;}
.lsc_c01116{letter-spacing:3.089434px;}
.ls24_c01116{letter-spacing:3.366000px;}
.ls2c_c01116{letter-spacing:3.504610px;}
.ls13_c01116{letter-spacing:3.583810px;}
.ls4_c01116{letter-spacing:3.663000px;}
.lse_c01116{letter-spacing:3.672900px;}
.ls7_c01116{letter-spacing:3.742200px;}
.ls1d_c01116{letter-spacing:3.781810px;}
.ls2d_c01116{letter-spacing:3.801610px;}
.ls9_c01116{letter-spacing:3.831310px;}
.ls27_c01116{letter-spacing:3.861000px;}
.ls10_c01116{letter-spacing:3.870900px;}
.ls17_c01116{letter-spacing:3.900610px;}
.ls22_c01116{letter-spacing:3.920400px;}
.ls29_c01116{letter-spacing:3.940200px;}
.ls31_c01116{letter-spacing:3.960000px;}
.ls18_c01116{letter-spacing:3.969900px;}
.ls16_c01116{letter-spacing:3.999610px;}
.ls5_c01116{letter-spacing:4.098610px;}
.ls1b_c01116{letter-spacing:4.118400px;}
.ls1f_c01116{letter-spacing:4.237200px;}
.ls1_c01116{letter-spacing:29.002050px;}
.ls0_c01116{letter-spacing:29.182769px;}
.ls6_c01116{letter-spacing:57.024198px;}
.ls3_c01116{letter-spacing:59.875398px;}
.ls2e_c01116{letter-spacing:62.726400px;}
.lsb_c01116{letter-spacing:71.280000px;}
.ls12_c01116{letter-spacing:106.920198px;}
.sc__c01116{text-shadow:none;}
.sc0_c01116{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01116{-webkit-text-stroke:0px transparent;}
.sc0_c01116{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01116{word-spacing:0.000000px;}
._3_c01116{margin-left:-16.803121px;}
._0_c01116{margin-left:-8.681904px;}
._4_c01116{margin-left:-4.841100px;}
._5_c01116{width:9.681408px;}
._2_c01116{width:33.534864px;}
._1_c01116{width:34.749655px;}
.fc0_c01116{color:transparent;}
.fs28_c01116{font-size:9.504198px;}
.fs26_c01116{font-size:15.840000px;}
.fs27_c01116{font-size:20.394000px;}
.fs17_c01116{font-size:22.176000px;}
.fs1_c01116{font-size:25.146000px;}
.fs25_c01116{font-size:25.344000px;}
.fs4_c01116{font-size:33.264000px;}
.fs0_c01116{font-size:33.660000px;}
.fs15_c01116{font-size:34.650000px;}
.fs20_c01116{font-size:51.282000px;}
.fs6_c01116{font-size:57.024198px;}
.fs24_c01116{font-size:57.816198px;}
.fs2_c01116{font-size:59.875398px;}
.fs22_c01116{font-size:62.726400px;}
.fs1e_c01116{font-size:66.726198px;}
.fs1c_c01116{font-size:67.320000px;}
.fs8_c01116{font-size:68.508000px;}
.fs21_c01116{font-size:70.092198px;}
.fsa_c01116{font-size:71.280000px;}
.fsf_c01116{font-size:71.676198px;}
.fsb_c01116{font-size:72.864000px;}
.fs3_c01116{font-size:73.260000px;}
.fsc_c01116{font-size:73.458000px;}
.fs7_c01116{font-size:74.844000px;}
.fs18_c01116{font-size:75.636198px;}
.fs11_c01116{font-size:76.032198px;}
.fs9_c01116{font-size:76.626198px;}
.fs1d_c01116{font-size:77.220000px;}
.fsd_c01116{font-size:77.418000px;}
.fs13_c01116{font-size:78.012198px;}
.fs1b_c01116{font-size:78.408000px;}
.fs1f_c01116{font-size:78.804000px;}
.fs23_c01116{font-size:79.200000px;}
.fs14_c01116{font-size:79.398000px;}
.fs12_c01116{font-size:79.992198px;}
.fs5_c01116{font-size:81.972198px;}
.fs16_c01116{font-size:82.368000px;}
.fs1a_c01116{font-size:84.744000px;}
.fs10_c01116{font-size:88.704000px;}
.fse_c01116{font-size:106.920198px;}
.fs19_c01116{font-size:112.068000px;}
.y0_c01116{bottom:0.000000px;}
.y20_c01116{bottom:4.188735px;}
.y1_c01116{bottom:76.500000px;}
.y1f_c01116{bottom:122.869935px;}
.y1e_c01116{bottom:127.854585px;}
.y1d_c01116{bottom:159.935535px;}
.y1c_c01116{bottom:193.437135px;}
.y1b_c01116{bottom:226.577385px;}
.y1a_c01116{bottom:258.301935px;}
.y19_c01116{bottom:290.734335px;}
.y18_c01116{bottom:307.128735px;}
.y17_c01116{bottom:324.235935px;}
.y16_c01116{bottom:355.950585px;}
.y14_c01116{bottom:418.681935px;}
.y15_c01116{bottom:419.746185px;}
.y13_c01116{bottom:481.764735px;}
.y12_c01116{bottom:514.197135px;}
.y11_c01116{bottom:534.150585px;}
.y10_c01116{bottom:546.268185px;}
.yf_c01116{bottom:578.700585px;}
.yd_c01116{bottom:641.788335px;}
.ye_c01116{bottom:642.496185px;}
.yc_c01116{bottom:705.940335px;}
.yb_c01116{bottom:767.953935px;}
.ya_c01116{bottom:800.381385px;}
.y2_c01116{bottom:831.388185px;}
.y9_c01116{bottom:833.175135px;}
.y8_c01116{bottom:863.112735px;}
.y7_c01116{bottom:897.678585px;}
.y6_c01116{bottom:930.115935px;}
.y5_c01116{bottom:979.650585px;}
.y4_c01116{bottom:1078.373385px;}
.y3_c01116{bottom:1096.193385px;}
.h2a_c01116{height:9.327851px;}
.h28_c01116{height:16.520625px;}
.h29_c01116{height:20.015596px;}
.h18_c01116{height:23.128875px;}
.h27_c01116{height:24.873750px;}
.h3_c01116{height:26.226492px;}
.h2_c01116{height:33.035449px;}
.h6_c01116{height:34.693313px;}
.h8_c01116{height:37.978116px;}
.h4_c01116{height:39.877015px;}
.h24_c01116{height:41.775782px;}
.hc_c01116{height:47.472480px;}
.h21_c01116{height:50.330479px;}
.h26_c01116{height:56.715206px;}
.h1f_c01116{height:65.488114px;}
.h1d_c01116{height:66.070898px;}
.h12_c01116{height:70.346269px;}
.h11_c01116{height:71.208852px;}
.ha_c01116{height:71.451703px;}
.hd_c01116{height:71.512031px;}
.h5_c01116{height:71.900684px;}
.he_c01116{height:72.095010px;}
.h22_c01116{height:73.103972px;}
.h9_c01116{height:73.455293px;}
.h19_c01116{height:74.232792px;}
.h23_c01116{height:74.621444px;}
.hb_c01116{height:75.204423px;}
.h1e_c01116{height:75.787207px;}
.hf_c01116{height:75.981533px;}
.h10_c01116{height:76.407891px;}
.h15_c01116{height:76.564706px;}
.h1c_c01116{height:76.953164px;}
.h20_c01116{height:77.341816px;}
.h25_c01116{height:77.730469px;}
.h16_c01116{height:77.924795px;}
.h14_c01116{height:78.507968px;}
.h7_c01116{height:80.451229px;}
.h17_c01116{height:80.839688px;}
.h1b_c01116{height:83.171602px;}
.h13_c01116{height:87.058125px;}
.h1a_c01116{height:109.988613px;}
.h1_c01116{height:1110.000000px;}
.h0_c01116{height:1263.000000px;}
.w1_c01116{width:775.500000px;}
.w0_c01116{width:892.500000px;}
.x0_c01116{left:0.000000px;}
.x2_c01116{left:47.610735px;}
.x1_c01116{left:58.500000px;}
.x4e_c01116{left:84.097185px;}
.x7_c01116{left:85.512885px;}
.x4f_c01116{left:118.549185px;}
.x4b_c01116{left:138.156135px;}
.x36_c01116{left:139.923285px;}
.x8_c01116{left:141.126135px;}
.x17_c01116{left:142.314135px;}
.x6_c01116{left:163.802085px;}
.x6d_c01116{left:165.108885px;}
.x50_c01116{left:172.266585px;}
.x18_c01116{left:173.914935px;}
.x37_c01116{left:183.423885px;}
.x45_c01116{left:184.572285px;}
.x31_c01116{left:185.834535px;}
.x4c_c01116{left:196.274085px;}
.x51_c01116{left:206.985885px;}
.x46_c01116{left:208.193685px;}
.x9_c01116{left:209.223285px;}
.x5a_c01116{left:218.598585px;}
.x32_c01116{left:220.331085px;}
.x4d_c01116{left:228.359985px;}
.xe_c01116{left:230.859735px;}
.x33_c01116{left:232.394235px;}
.x47_c01116{left:240.581535px;}
.x1f_c01116{left:251.219085px;}
.x61_c01116{left:252.471435px;}
.x28_c01116{left:263.613885px;}
.x20_c01116{left:274.246485px;}
.xa_c01116{left:275.578035px;}
.x34_c01116{left:284.631585px;}
.xf_c01116{left:285.958185px;}
.x65_c01116{left:295.887885px;}
.x3e_c01116{left:297.353085px;}
.x21_c01116{left:308.233185px;}
.x62_c01116{left:318.049035px;}
.x6a_c01116{left:328.448985px;}
.x35_c01116{left:330.037935px;}
.x22_c01116{left:340.655685px;}
.x3a_c01116{left:350.323035px;}
.x38_c01116{left:352.055535px;}
.x55_c01116{left:353.684085px;}
.x10_c01116{left:362.678235px;}
.x29_c01116{left:363.994935px;}
.x52_c01116{left:372.751485px;}
.x23_c01116{left:385.141335px;}
.x48_c01116{left:386.453085px;}
.x11_c01116{left:387.665835px;}
.x2a_c01116{left:394.882935px;}
.xb_c01116{left:396.595635px;}
.x5b_c01116{left:398.045985px;}
.x44_c01116{left:403.347435px;}
.x3f_c01116{left:407.866785px;}
.x49_c01116{left:418.182585px;}
.x66_c01116{left:429.117135px;}
.x40_c01116{left:440.017035px;}
.x39_c01116{left:441.655485px;}
.x3b_c01116{left:443.937435px;}
.x4a_c01116{left:451.303035px;}
.x6b_c01116{left:460.841685px;}
.x2b_c01116{left:462.237585px;}
.x12_c01116{left:464.138385px;}
.x24_c01116{left:465.415485px;}
.x67_c01116{left:472.810785px;}
.x19_c01116{left:474.360135px;}
.x2c_c01116{left:479.344785px;}
.x2d_c01116{left:482.195985px;}
.x41_c01116{left:483.923535px;}
.x63_c01116{left:485.408535px;}
.x53_c01116{left:494.932335px;}
.x13_c01116{left:496.971735px;}
.x1a_c01116{left:498.951735px;}
.x3c_c01116{left:506.554935px;}
.x1b_c01116{left:516.662835px;}
.x56_c01116{left:527.844885px;}
.x25_c01116{left:529.978335px;}
.xc_c01116{left:541.170285px;}
.x3d_c01116{left:551.268285px;}
.xd_c01116{left:562.885935px;}
.x2e_c01116{left:572.355285px;}
.x14_c01116{left:574.285785px;}
.x64_c01116{left:583.438335px;}
.x6e_c01116{left:584.611485px;}
.x68_c01116{left:586.259835px;}
.x26_c01116{left:595.263885px;}
.x1c_c01116{left:606.228135px;}
.x42_c01116{left:608.683335px;}
.x5c_c01116{left:613.390785px;}
.x15_c01116{left:616.108335px;}
.x70_c01116{left:617.113185px;}
.x5d_c01116{left:623.335335px;}
.x27_c01116{left:628.755585px;}
.x2f_c01116{left:639.393135px;}
.x71_c01116{left:643.912485px;}
.x43_c01116{left:649.293135px;}
.x54_c01116{left:658.861485px;}
.x5e_c01116{left:662.618535px;}
.x6c_c01116{left:670.672185px;}
.x1d_c01116{left:672.231435px;}
.x5f_c01116{left:674.260935px;}
.x59_c01116{left:676.706235px;}
.x72_c01116{left:679.181235px;}
.x57_c01116{left:681.854235px;}
.x69_c01116{left:683.091735px;}
.x30_c01116{left:685.081635px;}
.x73_c01116{left:689.902935px;}
.x60_c01116{left:694.318335px;}
.x1e_c01116{left:697.228935px;}
.x3_c01116{left:699.070335px;}
.x4_c01116{left:702.094785px;}
.x6f_c01116{left:705.074685px;}
.x5_c01116{left:706.846785px;}
.x58_c01116{left:716.405235px;}
.x16_c01116{left:754.802385px;}
@media print{
.v1_c01116{vertical-align:-1.249600pt;}
.v0_c01116{vertical-align:0.000000pt;}
.v2_c01116{vertical-align:1.263680pt;}
.ls1e_c01116{letter-spacing:-3.486560pt;}
.ls25_c01116{letter-spacing:-2.562560pt;}
.ls15_c01116{letter-spacing:-2.488646pt;}
.ls2a_c01116{letter-spacing:-2.451680pt;}
.ls1a_c01116{letter-spacing:-2.408560pt;}
.lsa_c01116{letter-spacing:-2.383926pt;}
.ls32_c01116{letter-spacing:-2.328480pt;}
.ls20_c01116{letter-spacing:-2.279200pt;}
.lsd_c01116{letter-spacing:-2.266880pt;}
.ls28_c01116{letter-spacing:-2.075926pt;}
.ls30_c01116{letter-spacing:-2.002493pt;}
.ls2b_c01116{letter-spacing:-1.034757pt;}
.ls21_c01116{letter-spacing:-0.612128pt;}
.ls11_c01116{letter-spacing:-0.299552pt;}
.ls26_c01116{letter-spacing:-0.269280pt;}
.ls2_c01116{letter-spacing:0.000000pt;}
.lsf_c01116{letter-spacing:0.345946pt;}
.ls23_c01116{letter-spacing:0.385370pt;}
.ls35_c01116{letter-spacing:0.422409pt;}
.ls8_c01116{letter-spacing:0.456352pt;}
.ls33_c01116{letter-spacing:0.704000pt;}
.ls34_c01116{letter-spacing:0.906400pt;}
.ls2f_c01116{letter-spacing:1.442355pt;}
.ls14_c01116{letter-spacing:1.442918pt;}
.ls1c_c01116{letter-spacing:1.443658pt;}
.ls19_c01116{letter-spacing:2.420634pt;}
.lsc_c01116{letter-spacing:2.746163pt;}
.ls24_c01116{letter-spacing:2.992000pt;}
.ls2c_c01116{letter-spacing:3.115209pt;}
.ls13_c01116{letter-spacing:3.185609pt;}
.ls4_c01116{letter-spacing:3.256000pt;}
.lse_c01116{letter-spacing:3.264800pt;}
.ls7_c01116{letter-spacing:3.326400pt;}
.ls1d_c01116{letter-spacing:3.361609pt;}
.ls2d_c01116{letter-spacing:3.379209pt;}
.ls9_c01116{letter-spacing:3.405609pt;}
.ls27_c01116{letter-spacing:3.432000pt;}
.ls10_c01116{letter-spacing:3.440800pt;}
.ls17_c01116{letter-spacing:3.467209pt;}
.ls22_c01116{letter-spacing:3.484800pt;}
.ls29_c01116{letter-spacing:3.502400pt;}
.ls31_c01116{letter-spacing:3.520000pt;}
.ls18_c01116{letter-spacing:3.528800pt;}
.ls16_c01116{letter-spacing:3.555209pt;}
.ls5_c01116{letter-spacing:3.643209pt;}
.ls1b_c01116{letter-spacing:3.660800pt;}
.ls1f_c01116{letter-spacing:3.766400pt;}
.ls1_c01116{letter-spacing:25.779600pt;}
.ls0_c01116{letter-spacing:25.940239pt;}
.ls6_c01116{letter-spacing:50.688176pt;}
.ls3_c01116{letter-spacing:53.222576pt;}
.ls2e_c01116{letter-spacing:55.756800pt;}
.lsb_c01116{letter-spacing:63.360000pt;}
.ls12_c01116{letter-spacing:95.040176pt;}
.ws0_c01116{word-spacing:0.000000pt;}
._3_c01116{margin-left:-14.936108pt;}
._0_c01116{margin-left:-7.717248pt;}
._4_c01116{margin-left:-4.303200pt;}
._5_c01116{width:8.605696pt;}
._2_c01116{width:29.808768pt;}
._1_c01116{width:30.888582pt;}
.fs28_c01116{font-size:8.448176pt;}
.fs26_c01116{font-size:14.080000pt;}
.fs27_c01116{font-size:18.128000pt;}
.fs17_c01116{font-size:19.712000pt;}
.fs1_c01116{font-size:22.352000pt;}
.fs25_c01116{font-size:22.528000pt;}
.fs4_c01116{font-size:29.568000pt;}
.fs0_c01116{font-size:29.920000pt;}
.fs15_c01116{font-size:30.800000pt;}
.fs20_c01116{font-size:45.584000pt;}
.fs6_c01116{font-size:50.688176pt;}
.fs24_c01116{font-size:51.392176pt;}
.fs2_c01116{font-size:53.222576pt;}
.fs22_c01116{font-size:55.756800pt;}
.fs1e_c01116{font-size:59.312176pt;}
.fs1c_c01116{font-size:59.840000pt;}
.fs8_c01116{font-size:60.896000pt;}
.fs21_c01116{font-size:62.304176pt;}
.fsa_c01116{font-size:63.360000pt;}
.fsf_c01116{font-size:63.712176pt;}
.fsb_c01116{font-size:64.768000pt;}
.fs3_c01116{font-size:65.120000pt;}
.fsc_c01116{font-size:65.296000pt;}
.fs7_c01116{font-size:66.528000pt;}
.fs18_c01116{font-size:67.232176pt;}
.fs11_c01116{font-size:67.584176pt;}
.fs9_c01116{font-size:68.112176pt;}
.fs1d_c01116{font-size:68.640000pt;}
.fsd_c01116{font-size:68.816000pt;}
.fs13_c01116{font-size:69.344176pt;}
.fs1b_c01116{font-size:69.696000pt;}
.fs1f_c01116{font-size:70.048000pt;}
.fs23_c01116{font-size:70.400000pt;}
.fs14_c01116{font-size:70.576000pt;}
.fs12_c01116{font-size:71.104176pt;}
.fs5_c01116{font-size:72.864176pt;}
.fs16_c01116{font-size:73.216000pt;}
.fs1a_c01116{font-size:75.328000pt;}
.fs10_c01116{font-size:78.848000pt;}
.fse_c01116{font-size:95.040176pt;}
.fs19_c01116{font-size:99.616000pt;}
.y0_c01116{bottom:0.000000pt;}
.y20_c01116{bottom:3.723320pt;}
.y1_c01116{bottom:68.000000pt;}
.y1f_c01116{bottom:109.217720pt;}
.y1e_c01116{bottom:113.648520pt;}
.y1d_c01116{bottom:142.164920pt;}
.y1c_c01116{bottom:171.944120pt;}
.y1b_c01116{bottom:201.402120pt;}
.y1a_c01116{bottom:229.601720pt;}
.y19_c01116{bottom:258.430520pt;}
.y18_c01116{bottom:273.003320pt;}
.y17_c01116{bottom:288.209720pt;}
.y16_c01116{bottom:316.400520pt;}
.y14_c01116{bottom:372.161720pt;}
.y15_c01116{bottom:373.107720pt;}
.y13_c01116{bottom:428.235320pt;}
.y12_c01116{bottom:457.064120pt;}
.y11_c01116{bottom:474.800520pt;}
.y10_c01116{bottom:485.571720pt;}
.yf_c01116{bottom:514.400520pt;}
.yd_c01116{bottom:570.478520pt;}
.ye_c01116{bottom:571.107720pt;}
.yc_c01116{bottom:627.502520pt;}
.yb_c01116{bottom:682.625720pt;}
.ya_c01116{bottom:711.450120pt;}
.y2_c01116{bottom:739.011720pt;}
.y9_c01116{bottom:740.600120pt;}
.y8_c01116{bottom:767.211320pt;}
.y7_c01116{bottom:797.936520pt;}
.y6_c01116{bottom:826.769720pt;}
.y5_c01116{bottom:870.800520pt;}
.y4_c01116{bottom:958.554120pt;}
.y3_c01116{bottom:974.394120pt;}
.h2a_c01116{height:8.291423pt;}
.h28_c01116{height:14.685000pt;}
.h29_c01116{height:17.791641pt;}
.h18_c01116{height:20.559000pt;}
.h27_c01116{height:22.110000pt;}
.h3_c01116{height:23.312438pt;}
.h2_c01116{height:29.364844pt;}
.h6_c01116{height:30.838500pt;}
.h8_c01116{height:33.758325pt;}
.h4_c01116{height:35.446236pt;}
.h24_c01116{height:37.134029pt;}
.hc_c01116{height:42.197760pt;}
.h21_c01116{height:44.738203pt;}
.h26_c01116{height:50.413516pt;}
.h1f_c01116{height:58.211657pt;}
.h1d_c01116{height:58.729688pt;}
.h12_c01116{height:62.530016pt;}
.h11_c01116{height:63.296757pt;}
.ha_c01116{height:63.512625pt;}
.hd_c01116{height:63.566250pt;}
.h5_c01116{height:63.911719pt;}
.he_c01116{height:64.084453pt;}
.h22_c01116{height:64.981309pt;}
.h9_c01116{height:65.293594pt;}
.h19_c01116{height:65.984704pt;}
.h23_c01116{height:66.330173pt;}
.hb_c01116{height:66.848376pt;}
.h1e_c01116{height:67.366406pt;}
.hf_c01116{height:67.539141pt;}
.h10_c01116{height:67.918125pt;}
.h15_c01116{height:68.057516pt;}
.h1c_c01116{height:68.402813pt;}
.h20_c01116{height:68.748281pt;}
.h25_c01116{height:69.093750pt;}
.h16_c01116{height:69.266484pt;}
.h14_c01116{height:69.784860pt;}
.h7_c01116{height:71.512204pt;}
.h17_c01116{height:71.857500pt;}
.h1b_c01116{height:73.930313pt;}
.h13_c01116{height:77.385000pt;}
.h1a_c01116{height:97.767656pt;}
.h1_c01116{height:986.666667pt;}
.h0_c01116{height:1122.666667pt;}
.w1_c01116{width:689.333333pt;}
.w0_c01116{width:793.333333pt;}
.x0_c01116{left:0.000000pt;}
.x2_c01116{left:42.320653pt;}
.x1_c01116{left:52.000000pt;}
.x4e_c01116{left:74.753053pt;}
.x7_c01116{left:76.011453pt;}
.x4f_c01116{left:105.377053pt;}
.x4b_c01116{left:122.805453pt;}
.x36_c01116{left:124.376253pt;}
.x8_c01116{left:125.445453pt;}
.x17_c01116{left:126.501453pt;}
.x6_c01116{left:145.601853pt;}
.x6d_c01116{left:146.763453pt;}
.x50_c01116{left:153.125853pt;}
.x18_c01116{left:154.591053pt;}
.x37_c01116{left:163.043453pt;}
.x45_c01116{left:164.064253pt;}
.x31_c01116{left:165.186253pt;}
.x4c_c01116{left:174.465853pt;}
.x51_c01116{left:183.987453pt;}
.x46_c01116{left:185.061053pt;}
.x9_c01116{left:185.976253pt;}
.x5a_c01116{left:194.309853pt;}
.x32_c01116{left:195.849853pt;}
.x4d_c01116{left:202.986653pt;}
.xe_c01116{left:205.208653pt;}
.x33_c01116{left:206.572653pt;}
.x47_c01116{left:213.850253pt;}
.x1f_c01116{left:223.305853pt;}
.x61_c01116{left:224.419053pt;}
.x28_c01116{left:234.323453pt;}
.x20_c01116{left:243.774653pt;}
.xa_c01116{left:244.958253pt;}
.x34_c01116{left:253.005853pt;}
.xf_c01116{left:254.185053pt;}
.x65_c01116{left:263.011453pt;}
.x3e_c01116{left:264.313853pt;}
.x21_c01116{left:273.985053pt;}
.x62_c01116{left:282.710253pt;}
.x6a_c01116{left:291.954653pt;}
.x35_c01116{left:293.367053pt;}
.x22_c01116{left:302.805053pt;}
.x3a_c01116{left:311.398253pt;}
.x38_c01116{left:312.938253pt;}
.x55_c01116{left:314.385853pt;}
.x10_c01116{left:322.380653pt;}
.x29_c01116{left:323.551053pt;}
.x52_c01116{left:331.334653pt;}
.x23_c01116{left:342.347853pt;}
.x48_c01116{left:343.513853pt;}
.x11_c01116{left:344.591853pt;}
.x2a_c01116{left:351.007053pt;}
.xb_c01116{left:352.529453pt;}
.x5b_c01116{left:353.818653pt;}
.x44_c01116{left:358.531053pt;}
.x3f_c01116{left:362.548253pt;}
.x49_c01116{left:371.717853pt;}
.x66_c01116{left:381.437453pt;}
.x40_c01116{left:391.126253pt;}
.x39_c01116{left:392.582653pt;}
.x3b_c01116{left:394.611053pt;}
.x4a_c01116{left:401.158253pt;}
.x6b_c01116{left:409.637053pt;}
.x2b_c01116{left:410.877853pt;}
.x12_c01116{left:412.567453pt;}
.x24_c01116{left:413.702653pt;}
.x67_c01116{left:420.276253pt;}
.x19_c01116{left:421.653453pt;}
.x2c_c01116{left:426.084253pt;}
.x2d_c01116{left:428.618653pt;}
.x41_c01116{left:430.154253pt;}
.x63_c01116{left:431.474253pt;}
.x53_c01116{left:439.939853pt;}
.x13_c01116{left:441.752653pt;}
.x1a_c01116{left:443.512653pt;}
.x3c_c01116{left:450.271053pt;}
.x1b_c01116{left:459.255853pt;}
.x56_c01116{left:469.195453pt;}
.x25_c01116{left:471.091853pt;}
.xc_c01116{left:481.040253pt;}
.x3d_c01116{left:490.016253pt;}
.xd_c01116{left:500.343053pt;}
.x2e_c01116{left:508.760253pt;}
.x14_c01116{left:510.476253pt;}
.x64_c01116{left:518.611853pt;}
.x6e_c01116{left:519.654653pt;}
.x68_c01116{left:521.119853pt;}
.x26_c01116{left:529.123453pt;}
.x1c_c01116{left:538.869453pt;}
.x42_c01116{left:541.051853pt;}
.x5c_c01116{left:545.236253pt;}
.x15_c01116{left:547.651853pt;}
.x70_c01116{left:548.545053pt;}
.x5d_c01116{left:554.075853pt;}
.x27_c01116{left:558.893853pt;}
.x2f_c01116{left:568.349453pt;}
.x71_c01116{left:572.366653pt;}
.x43_c01116{left:577.149453pt;}
.x54_c01116{left:585.654653pt;}
.x5e_c01116{left:588.994253pt;}
.x6c_c01116{left:596.153053pt;}
.x1d_c01116{left:597.539053pt;}
.x5f_c01116{left:599.343053pt;}
.x59_c01116{left:601.516653pt;}
.x72_c01116{left:603.716653pt;}
.x57_c01116{left:606.092653pt;}
.x69_c01116{left:607.192653pt;}
.x30_c01116{left:608.961453pt;}
.x73_c01116{left:613.247053pt;}
.x60_c01116{left:617.171853pt;}
.x1e_c01116{left:619.759053pt;}
.x3_c01116{left:621.395853pt;}
.x4_c01116{left:624.084253pt;}
.x6f_c01116{left:626.733053pt;}
.x5_c01116{left:628.308253pt;}
.x58_c01116{left:636.804653pt;}
.x16_c01116{left:670.935453pt;}
}





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

.ir_c01117:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01117{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01117;src:url('chunks/assets/font_0508eb892c827cb903739b7a.woff2')format("woff");}.ff1_c01117{font-family:ff1_c01117;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01117;src:url('chunks/assets/font_941b0a8d63961d6c7b14fa01.woff2')format("woff");}.ff2_c01117{font-family:ff2_c01117;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01117;src:url('chunks/assets/font_8770dd2ed67eb29ef9f61f5d.woff2')format("woff");}.ff3_c01117{font-family:ff3_c01117;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01117;src:url('chunks/assets/font_7603a850a990ace814a718d1.woff2')format("woff");}.ff4_c01117{font-family:ff4_c01117;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01117;src:url('chunks/assets/font_eb15102016adf3ceb0c6fd78.woff2')format("woff");}.ff5_c01117{font-family:ff5_c01117;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mb_c01117{transform:matrix(0.019232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.019232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.019232,0.000000,0.000000,0.250000,0,0);}
.m7c_c01117{transform:matrix(0.102652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102652,0.000000,0.000000,0.250000,0,0);}
.m4a_c01117{transform:matrix(0.113638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113638,0.000000,0.000000,0.250000,0,0);}
.m67_c01117{transform:matrix(0.115080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115080,0.000000,0.000000,0.250000,0,0);}
.m8_c01117{transform:matrix(0.121794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121794,0.000000,0.000000,0.250000,0,0);}
.ma_c01117{transform:matrix(0.123932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123932,0.000000,0.000000,0.250000,0,0);}
.m46_c01117{transform:matrix(0.145022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145022,0.000000,0.000000,0.250000,0,0);}
.m89_c01117{transform:matrix(0.154330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154330,0.000000,0.000000,0.250000,0,0);}
.m6e_c01117{transform:matrix(0.156177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156177,0.000000,0.000000,0.250000,0,0);}
.m47_c01117{transform:matrix(0.162932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162932,0.000000,0.000000,0.250000,0,0);}
.m9_c01117{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);}
.m41_c01117{transform:matrix(0.167333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167333,0.000000,0.000000,0.250000,0,0);}
.mc_c01117{transform:matrix(0.168804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168804,0.000000,0.000000,0.250000,0,0);}
.m53_c01117{transform:matrix(0.180555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180555,0.000000,0.000000,0.250000,0,0);}
.m8a_c01117{transform:matrix(0.181673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181673,0.000000,0.000000,0.250000,0,0);}
.m44_c01117{transform:matrix(0.183820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183820,0.000000,0.000000,0.250000,0,0);}
.m55_c01117{transform:matrix(0.185374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185374,0.000000,0.000000,0.250000,0,0);}
.m2f_c01117{transform:matrix(0.199906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199906,0.000000,0.000000,0.250000,0,0);}
.m42_c01117{transform:matrix(0.202731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202731,0.000000,0.000000,0.250000,0,0);}
.m4e_c01117{transform:matrix(0.211471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211471,0.000000,0.000000,0.250000,0,0);}
.m7f_c01117{transform:matrix(0.234862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234862,0.000000,0.000000,0.250000,0,0);}
.m61_c01117{transform:matrix(0.245875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245875,0.000000,0.000000,0.250000,0,0);}
.m58_c01117{transform:matrix(0.247514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247514,0.000000,0.000000,0.250000,0,0);}
.m7_c01117{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01117{transform:matrix(0.251024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251024,0.000000,0.000000,0.250000,0,0);}
.m76_c01117{transform:matrix(0.253152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253152,0.000000,0.000000,0.250000,0,0);}
.m1c_c01117{transform:matrix(0.256287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256287,0.000000,0.000000,0.250000,0,0);}
.m64_c01117{transform:matrix(0.256451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256451,0.000000,0.000000,0.250000,0,0);}
.m60_c01117{transform:matrix(0.258787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258787,0.000000,0.000000,0.250000,0,0);}
.m7b_c01117{transform:matrix(0.258903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258903,0.000000,0.000000,0.250000,0,0);}
.m83_c01117{transform:matrix(0.259907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259907,0.000000,0.000000,0.250000,0,0);}
.m2e_c01117{transform:matrix(0.260247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260247,0.000000,0.000000,0.250000,0,0);}
.m48_c01117{transform:matrix(0.260907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260907,0.000000,0.000000,0.250000,0,0);}
.m6d_c01117{transform:matrix(0.261204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261204,0.000000,0.000000,0.250000,0,0);}
.m38_c01117{transform:matrix(0.261920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261920,0.000000,0.000000,0.250000,0,0);}
.m34_c01117{transform:matrix(0.262613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262613,0.000000,0.000000,0.250000,0,0);}
.m7d_c01117{transform:matrix(0.262889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262889,0.000000,0.000000,0.250000,0,0);}
.m13_c01117{transform:matrix(0.267450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267450,0.000000,0.000000,0.250000,0,0);}
.m54_c01117{transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);}
.m4f_c01117{transform:matrix(0.268682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268682,0.000000,0.000000,0.250000,0,0);}
.m7e_c01117{transform:matrix(0.269429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269429,0.000000,0.000000,0.250000,0,0);}
.m21_c01117{transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);}
.m16_c01117{transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);}
.m82_c01117{transform:matrix(0.273612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273612,0.000000,0.000000,0.250000,0,0);}
.mf_c01117{transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);}
.m3f_c01117{transform:matrix(0.276538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276538,0.000000,0.000000,0.250000,0,0);}
.m1a_c01117{transform:matrix(0.276672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276672,0.000000,0.000000,0.250000,0,0);}
.m5_c01117{transform:matrix(0.276989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276989,0.000000,0.000000,0.250000,0,0);}
.m75_c01117{transform:matrix(0.277602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277602,0.000000,0.000000,0.250000,0,0);}
.m1e_c01117{transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);}
.m5f_c01117{transform:matrix(0.279012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279012,0.000000,0.000000,0.250000,0,0);}
.md_c01117{transform:matrix(0.280290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280290,0.000000,0.000000,0.250000,0,0);}
.m5d_c01117{transform:matrix(0.280939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280939,0.000000,0.000000,0.250000,0,0);}
.m4_c01117{transform:matrix(0.281425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281425,0.000000,0.000000,0.250000,0,0);}
.m29_c01117{transform:matrix(0.282531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282531,0.000000,0.000000,0.250000,0,0);}
.m5a_c01117{transform:matrix(0.284650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284650,0.000000,0.000000,0.250000,0,0);}
.m2a_c01117{transform:matrix(0.285266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285266,0.000000,0.000000,0.250000,0,0);}
.m88_c01117{transform:matrix(0.285652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285652,0.000000,0.000000,0.250000,0,0);}
.m81_c01117{transform:matrix(0.288003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288003,0.000000,0.000000,0.250000,0,0);}
.m8c_c01117{transform:matrix(0.288134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288134,0.000000,0.000000,0.250000,0,0);}
.m50_c01117{transform:matrix(0.288840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288840,0.000000,0.000000,0.250000,0,0);}
.m37_c01117{transform:matrix(0.289366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289366,0.000000,0.000000,0.250000,0,0);}
.m31_c01117{transform:matrix(0.291648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291648,0.000000,0.000000,0.250000,0,0);}
.m4d_c01117{transform:matrix(0.292897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292897,0.000000,0.000000,0.250000,0,0);}
.m70_c01117{transform:matrix(0.294254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294254,0.000000,0.000000,0.250000,0,0);}
.m68_c01117{transform:matrix(0.294851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294851,0.000000,0.000000,0.250000,0,0);}
.m35_c01117{transform:matrix(0.296044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296044,0.000000,0.000000,0.250000,0,0);}
.m6b_c01117{transform:matrix(0.297109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297109,0.000000,0.000000,0.250000,0,0);}
.m6c_c01117{transform:matrix(0.297812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297812,0.000000,0.000000,0.250000,0,0);}
.m51_c01117{transform:matrix(0.298164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298164,0.000000,0.000000,0.250000,0,0);}
.m2_c01117{transform:matrix(0.298562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298562,0.000000,0.000000,0.250000,0,0);}
.m4b_c01117{transform:matrix(0.298676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298676,0.000000,0.000000,0.250000,0,0);}
.m87_c01117{transform:matrix(0.300663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300663,0.000000,0.000000,0.250000,0,0);}
.m66_c01117{transform:matrix(0.301033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301033,0.000000,0.000000,0.250000,0,0);}
.m65_c01117{transform:matrix(0.302238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302238,0.000000,0.000000,0.250000,0,0);}
.m57_c01117{transform:matrix(0.302324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302324,0.000000,0.000000,0.250000,0,0);}
.m5c_c01117{transform:matrix(0.304169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304169,0.000000,0.000000,0.250000,0,0);}
.m19_c01117{transform:matrix(0.304216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304216,0.000000,0.000000,0.250000,0,0);}
.m0_c01117{transform:matrix(0.304354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304354,0.000000,0.000000,0.250000,0,0);}
.m3a_c01117{transform:matrix(0.305346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305346,0.000000,0.000000,0.250000,0,0);}
.m22_c01117{transform:matrix(0.306722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306722,0.000000,0.000000,0.250000,0,0);}
.m6a_c01117{transform:matrix(0.308055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308055,0.000000,0.000000,0.250000,0,0);}
.m7a_c01117{transform:matrix(0.308959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308959,0.000000,0.000000,0.250000,0,0);}
.m77_c01117{transform:matrix(0.309746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309746,0.000000,0.000000,0.250000,0,0);}
.m62_c01117{transform:matrix(0.310209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310209,0.000000,0.000000,0.250000,0,0);}
.m86_c01117{transform:matrix(0.310544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310544,0.000000,0.000000,0.250000,0,0);}
.m69_c01117{transform:matrix(0.312571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312571,0.000000,0.000000,0.250000,0,0);}
.m71_c01117{transform:matrix(0.313270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313270,0.000000,0.000000,0.250000,0,0);}
.m17_c01117{transform:matrix(0.313677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313677,0.000000,0.000000,0.250000,0,0);}
.m1f_c01117{transform:matrix(0.315762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315762,0.000000,0.000000,0.250000,0,0);}
.m79_c01117{transform:matrix(0.316292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316292,0.000000,0.000000,0.250000,0,0);}
.m6f_c01117{transform:matrix(0.316906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316906,0.000000,0.000000,0.250000,0,0);}
.m20_c01117{transform:matrix(0.316960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316960,0.000000,0.000000,0.250000,0,0);}
.m85_c01117{transform:matrix(0.317505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317505,0.000000,0.000000,0.250000,0,0);}
.m26_c01117{transform:matrix(0.318843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318843,0.000000,0.000000,0.250000,0,0);}
.m8d_c01117{transform:matrix(0.318860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318860,0.000000,0.000000,0.250000,0,0);}
.m78_c01117{transform:matrix(0.319432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319432,0.000000,0.000000,0.250000,0,0);}
.m72_c01117{transform:matrix(0.319625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319625,0.000000,0.000000,0.250000,0,0);}
.m5e_c01117{transform:matrix(0.319887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319887,0.000000,0.000000,0.250000,0,0);}
.m59_c01117{transform:matrix(0.321584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321584,0.000000,0.000000,0.250000,0,0);}
.m18_c01117{transform:matrix(0.322511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322511,0.000000,0.000000,0.250000,0,0);}
.m27_c01117{transform:matrix(0.323481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323481,0.000000,0.000000,0.250000,0,0);}
.m23_c01117{transform:matrix(0.323489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323489,0.000000,0.000000,0.250000,0,0);}
.m40_c01117{transform:matrix(0.325147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325147,0.000000,0.000000,0.250000,0,0);}
.me_c01117{transform:matrix(0.325916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325916,0.000000,0.000000,0.250000,0,0);}
.m73_c01117{transform:matrix(0.326394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326394,0.000000,0.000000,0.250000,0,0);}
.m3c_c01117{transform:matrix(0.326483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326483,0.000000,0.000000,0.250000,0,0);}
.m12_c01117{transform:matrix(0.326635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326635,0.000000,0.000000,0.250000,0,0);}
.m28_c01117{transform:matrix(0.326998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326998,0.000000,0.000000,0.250000,0,0);}
.m33_c01117{transform:matrix(0.327459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327459,0.000000,0.000000,0.250000,0,0);}
.m8b_c01117{transform:matrix(0.328062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328062,0.000000,0.000000,0.250000,0,0);}
.m43_c01117{transform:matrix(0.328641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328641,0.000000,0.000000,0.250000,0,0);}
.m11_c01117{transform:matrix(0.329206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329206,0.000000,0.000000,0.250000,0,0);}
.m3d_c01117{transform:matrix(0.332688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332688,0.000000,0.000000,0.250000,0,0);}
.m15_c01117{transform:matrix(0.336676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336676,0.000000,0.000000,0.250000,0,0);}
.m5b_c01117{transform:matrix(0.336761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336761,0.000000,0.000000,0.250000,0,0);}
.m52_c01117{transform:matrix(0.337107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337107,0.000000,0.000000,0.250000,0,0);}
.m10_c01117{transform:matrix(0.339063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339063,0.000000,0.000000,0.250000,0,0);}
.m80_c01117{transform:matrix(0.339291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339291,0.000000,0.000000,0.250000,0,0);}
.m49_c01117{transform:matrix(0.342337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342337,0.000000,0.000000,0.250000,0,0);}
.m36_c01117{transform:matrix(0.342830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342830,0.000000,0.000000,0.250000,0,0);}
.m14_c01117{transform:matrix(0.344055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344055,0.000000,0.000000,0.250000,0,0);}
.m1_c01117{transform:matrix(0.345686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345686,0.000000,0.000000,0.250000,0,0);}
.m84_c01117{transform:matrix(0.349602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349602,0.000000,0.000000,0.250000,0,0);}
.m6_c01117{transform:matrix(0.356018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356018,0.000000,0.000000,0.250000,0,0);}
.m3_c01117{transform:matrix(0.356520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356520,0.000000,0.000000,0.250000,0,0);}
.m56_c01117{transform:matrix(0.356615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356615,0.000000,0.000000,0.250000,0,0);}
.m24_c01117{transform:matrix(0.357981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357981,0.000000,0.000000,0.250000,0,0);}
.m39_c01117{transform:matrix(0.359199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359199,0.000000,0.000000,0.250000,0,0);}
.m2c_c01117{transform:matrix(0.363197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363197,0.000000,0.000000,0.250000,0,0);}
.m74_c01117{transform:matrix(0.369870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369870,0.000000,0.000000,0.250000,0,0);}
.m45_c01117{transform:matrix(0.371906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371906,0.000000,0.000000,0.250000,0,0);}
.m63_c01117{transform:matrix(0.372144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372144,0.000000,0.000000,0.250000,0,0);}
.m1d_c01117{transform:matrix(0.376644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376644,0.000000,0.000000,0.250000,0,0);}
.m32_c01117{transform:matrix(0.387018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387018,0.000000,0.000000,0.250000,0,0);}
.m1b_c01117{transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);}
.m4c_c01117{transform:matrix(0.404625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404625,0.000000,0.000000,0.250000,0,0);}
.m3e_c01117{transform:matrix(0.405805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405805,0.000000,0.000000,0.250000,0,0);}
.m30_c01117{transform:matrix(0.407434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407434,0.000000,0.000000,0.250000,0,0);}
.m25_c01117{transform:matrix(0.412048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412048,0.000000,0.000000,0.250000,0,0);}
.m2d_c01117{transform:matrix(0.450556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450556,0.000000,0.000000,0.250000,0,0);}
.m2b_c01117{transform:matrix(0.867809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.867809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.867809,0.000000,0.000000,0.250000,0,0);}
.v0_c01117{vertical-align:0.000000px;}
.ls1a_c01117{letter-spacing:-2.938327px;}
.ls1d_c01117{letter-spacing:-2.882880px;}
.ls15_c01117{letter-spacing:-2.772000px;}
.lsa_c01117{letter-spacing:-2.758140px;}
.lsd_c01117{letter-spacing:-2.647267px;}
.lse_c01117{letter-spacing:-2.203740px;}
.ls1c_c01117{letter-spacing:-0.291456px;}
.ls5_c01117{letter-spacing:0.000000px;}
.ls7_c01117{letter-spacing:0.792000px;}
.ls8_c01117{letter-spacing:1.148400px;}
.ls1b_c01117{letter-spacing:2.668723px;}
.ls18_c01117{letter-spacing:3.312865px;}
.ls12_c01117{letter-spacing:3.405610px;}
.ls14_c01117{letter-spacing:3.425400px;}
.ls0_c01117{letter-spacing:3.525992px;}
.ls16_c01117{letter-spacing:3.583810px;}
.ls3_c01117{letter-spacing:3.603610px;}
.ls11_c01117{letter-spacing:3.632864px;}
.lsc_c01117{letter-spacing:3.643200px;}
.lsb_c01117{letter-spacing:3.668356px;}
.ls13_c01117{letter-spacing:3.728865px;}
.ls4_c01117{letter-spacing:3.742200px;}
.ls2_c01117{letter-spacing:3.781810px;}
.ls9_c01117{letter-spacing:3.940200px;}
.ls1_c01117{letter-spacing:3.979810px;}
.ls17_c01117{letter-spacing:4.118400px;}
.lsf_c01117{letter-spacing:31.363200px;}
.ls6_c01117{letter-spacing:55.598598px;}
.ls10_c01117{letter-spacing:59.875398px;}
.ls19_c01117{letter-spacing:62.726400px;}
.sc__c01117{text-shadow:none;}
.sc0_c01117{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01117{-webkit-text-stroke:0px transparent;}
.sc0_c01117{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01117{word-spacing:-24.514042px;}
.ws2_c01117{word-spacing:-17.924544px;}
.ws0_c01117{word-spacing:-17.503992px;}
.ws3_c01117{word-spacing:0.000000px;}
._3_c01117{margin-left:-11.421091px;}
._0_c01117{width:3.169584px;}
._2_c01117{width:5.218796px;}
._8_c01117{width:6.412032px;}
._6_c01117{width:7.808295px;}
._1_c01117{width:11.194227px;}
._7_c01117{width:21.783289px;}
._5_c01117{width:38.035800px;}
._4_c01117{width:41.480901px;}
.fc0_c01117{color:transparent;}
.fs5_c01117{font-size:15.840000px;}
.fsf_c01117{font-size:22.176000px;}
.fs6_c01117{font-size:22.968000px;}
.fsb_c01117{font-size:25.146000px;}
.fse_c01117{font-size:27.720000px;}
.fsc_c01117{font-size:31.363200px;}
.fs19_c01117{font-size:32.868000px;}
.fsd_c01117{font-size:33.660000px;}
.fs4_c01117{font-size:55.598598px;}
.fs10_c01117{font-size:59.875398px;}
.fs18_c01117{font-size:62.726400px;}
.fs9_c01117{font-size:62.964000px;}
.fsa_c01117{font-size:67.320000px;}
.fs11_c01117{font-size:68.112198px;}
.fs12_c01117{font-size:68.508000px;}
.fs14_c01117{font-size:71.676198px;}
.fs2_c01117{font-size:72.072198px;}
.fs8_c01117{font-size:72.864000px;}
.fs3_c01117{font-size:74.844000px;}
.fs17_c01117{font-size:75.240000px;}
.fs1_c01117{font-size:75.636198px;}
.fs7_c01117{font-size:78.804000px;}
.fs13_c01117{font-size:79.200000px;}
.fs0_c01117{font-size:79.596198px;}
.fs16_c01117{font-size:82.368000px;}
.fs15_c01117{font-size:83.952198px;}
.y0_c01117{bottom:0.000000px;}
.y1_c01117{bottom:76.500000px;}
.y20_c01117{bottom:161.361135px;}
.y1f_c01117{bottom:194.862735px;}
.y1e_c01117{bottom:259.722585px;}
.y1d_c01117{bottom:291.090735px;}
.y19_c01117{bottom:354.881385px;}
.y1c_c01117{bottom:360.583785px;}
.y1b_c01117{bottom:369.855135px;}
.y1a_c01117{bottom:386.600985px;}
.y18_c01117{bottom:387.313785px;}
.y17_c01117{bottom:419.389785px;}
.y16_c01117{bottom:451.114335px;}
.y15_c01117{bottom:482.833935px;}
.y14_c01117{bottom:497.441385px;}
.y13_c01117{bottom:514.904985px;}
.y12_c01117{bottom:567.295785px;}
.y11_c01117{bottom:579.056985px;}
.y10_c01117{bottom:595.807785px;}
.yf_c01117{bottom:627.175935px;}
.ye_c01117{bottom:638.937135px;}
.yc_c01117{bottom:643.208985px;}
.yd_c01117{bottom:649.629135px;}
.yb_c01117{bottom:662.098185px;}
.ya_c01117{bottom:674.933535px;}
.y9_c01117{bottom:708.073785px;}
.y8_c01117{bottom:771.874335px;}
.y7_c01117{bottom:831.036735px;}
.y6_c01117{bottom:835.664985px;}
.y5_c01117{bottom:866.676735px;}
.y4_c01117{bottom:899.109135px;}
.y3_c01117{bottom:929.754585px;}
.y2_c01117{bottom:1070.888985px;}
.y21_c01117{bottom:1103.321385px;}
.h7_c01117{height:16.520625px;}
.he_c01117{height:20.887891px;}
.h8_c01117{height:22.541836px;}
.h11_c01117{height:23.128875px;}
.hd_c01117{height:26.226492px;}
.h10_c01117{height:28.911094px;}
.hf_c01117{height:33.035449px;}
.h1e_c01117{height:34.280297px;}
.h6_c01117{height:37.028666px;}
.h12_c01117{height:39.877015px;}
.h1b_c01117{height:41.775782px;}
.hb_c01117{height:65.669484px;}
.hc_c01117{height:66.070898px;}
.h17_c01117{height:70.346269px;}
.h4_c01117{height:70.734921px;}
.h14_c01117{height:71.038894px;}
.h15_c01117{height:71.451703px;}
.h13_c01117{height:71.512031px;}
.h5_c01117{height:73.455293px;}
.h3_c01117{height:74.232792px;}
.ha_c01117{height:75.994875px;}
.h9_c01117{height:77.341816px;}
.h16_c01117{height:77.730469px;}
.h2_c01117{height:78.119315px;}
.h1a_c01117{height:78.472969px;}
.h19_c01117{height:80.839688px;}
.h1c_c01117{height:82.353499px;}
.h18_c01117{height:82.394491px;}
.h1d_c01117{height:85.907250px;}
.h1_c01117{height:1110.000000px;}
.h0_c01117{height:1263.000000px;}
.w1_c01117{width:775.500000px;}
.w0_c01117{width:892.500000px;}
.x0_c01117{left:0.000000px;}
.x1_c01117{left:58.500000px;}
.x5c_c01117{left:84.701085px;}
.x28_c01117{left:86.230635px;}
.x29_c01117{left:136.963185px;}
.x62_c01117{left:139.952985px;}
.x41_c01117{left:141.066735px;}
.x18_c01117{left:142.145835px;}
.x10_c01117{left:143.279385px;}
.x3_c01117{left:144.660435px;}
.x63_c01117{left:174.147585px;}
.x34_c01117{left:176.236485px;}
.x2a_c01117{left:187.141335px;}
.x42_c01117{left:197.323485px;}
.x19_c01117{left:198.526335px;}
.x11_c01117{left:199.699485px;}
.x46_c01117{left:207.985785px;}
.x4_c01117{left:209.351985px;}
.x21_c01117{left:219.964785px;}
.x57_c01117{left:221.420085px;}
.x67_c01117{left:229.627185px;}
.x12_c01117{left:231.419085px;}
.x50_c01117{left:241.645785px;}
.x22_c01117{left:253.327785px;}
.x5d_c01117{left:263.094135px;}
.x2d_c01117{left:264.564285px;}
.x68_c01117{left:273.657435px;}
.x4b_c01117{left:274.746435px;}
.x13_c01117{left:276.483885px;}
.x5_c01117{left:287.685735px;}
.x5e_c01117{left:296.660085px;}
.x2b_c01117{left:297.823335px;}
.x5a_c01117{left:307.505535px;}
.x40_c01117{left:308.554935px;}
.x2e_c01117{left:310.168635px;}
.x58_c01117{left:319.053885px;}
.x1a_c01117{left:320.479485px;}
.x3f_c01117{left:322.063485px;}
.x47_c01117{left:329.211285px;}
.x43_c01117{left:331.181385px;}
.x23_c01117{left:342.957435px;}
.x69_c01117{left:350.773485px;}
.x2c_c01117{left:353.149485px;}
.x6_c01117{left:354.406785px;}
.x4c_c01117{left:360.361635px;}
.x35_c01117{left:363.113835px;}
.x48_c01117{left:368.761785px;}
.x1b_c01117{left:375.582885px;}
.x36_c01117{left:376.775835px;}
.x7_c01117{left:386.225385px;}
.x6a_c01117{left:396.897585px;}
.x25_c01117{left:406.980735px;}
.x5f_c01117{left:408.183585px;}
.x1c_c01117{left:409.638885px;}
.x6b_c01117{left:416.578785px;}
.x51_c01117{left:419.058735px;}
.x2f_c01117{left:420.335835px;}
.x6c_c01117{left:431.696085px;}
.x1d_c01117{left:442.878135px;}
.x44_c01117{left:444.417585px;}
.x26_c01117{left:451.431735px;}
.x37_c01117{left:452.877135px;}
.x8_c01117{left:453.966135px;}
.x27_c01117{left:460.084335px;}
.x59_c01117{left:462.915735px;}
.x14_c01117{left:465.247185px;}
.x24_c01117{left:475.929285px;}
.x3e_c01117{left:480.993135px;}
.x64_c01117{left:484.284885px;}
.x9_c01117{left:486.443085px;}
.x4d_c01117{left:495.056085px;}
.x52_c01117{left:496.961835px;}
.x38_c01117{left:498.422085px;}
.x6d_c01117{left:505.980735px;}
.xa_c01117{left:508.925985px;}
.x39_c01117{left:519.400185px;}
.x1e_c01117{left:520.424835px;}
.x53_c01117{left:528.859635px;}
.x49_c01117{left:530.800035px;}
.x65_c01117{left:539.665485px;}
.x30_c01117{left:540.759435px;}
.xb_c01117{left:542.788935px;}
.xc_c01117{left:553.475985px;}
.x3a_c01117{left:554.956035px;}
.x60_c01117{left:561.678135px;}
.x66_c01117{left:573.587835px;}
.xd_c01117{left:574.864935px;}
.xe_c01117{left:576.285585px;}
.x31_c01117{left:584.443185px;}
.x1f_c01117{left:586.353885px;}
.x4a_c01117{left:594.813435px;}
.x54_c01117{left:595.912335px;}
.x15_c01117{left:608.138835px;}
.xf_c01117{left:619.553535px;}
.x4e_c01117{left:629.102085px;}
.x16_c01117{left:641.303835px;}
.x45_c01117{left:650.778135px;}
.x20_c01117{left:653.366985px;}
.x55_c01117{left:662.653185px;}
.x3b_c01117{left:665.187585px;}
.x61_c01117{left:672.394785px;}
.x32_c01117{left:674.112435px;}
.x17_c01117{left:685.725135px;}
.x5b_c01117{left:698.446635px;}
.x3c_c01117{left:702.178935px;}
.x3d_c01117{left:703.703535px;}
.x56_c01117{left:706.752735px;}
.x33_c01117{left:707.901135px;}
.x2_c01117{left:712.851135px;}
.x4f_c01117{left:716.682435px;}
.x6e_c01117{left:777.423885px;}
@media print{
.v0_c01117{vertical-align:0.000000pt;}
.ls1a_c01117{letter-spacing:-2.611846pt;}
.ls1d_c01117{letter-spacing:-2.562560pt;}
.ls15_c01117{letter-spacing:-2.464000pt;}
.lsa_c01117{letter-spacing:-2.451680pt;}
.lsd_c01117{letter-spacing:-2.353126pt;}
.lse_c01117{letter-spacing:-1.958880pt;}
.ls1c_c01117{letter-spacing:-0.259072pt;}
.ls5_c01117{letter-spacing:0.000000pt;}
.ls7_c01117{letter-spacing:0.704000pt;}
.ls8_c01117{letter-spacing:1.020800pt;}
.ls1b_c01117{letter-spacing:2.372198pt;}
.ls18_c01117{letter-spacing:2.944769pt;}
.ls12_c01117{letter-spacing:3.027209pt;}
.ls14_c01117{letter-spacing:3.044800pt;}
.ls0_c01117{letter-spacing:3.134215pt;}
.ls16_c01117{letter-spacing:3.185609pt;}
.ls3_c01117{letter-spacing:3.203209pt;}
.ls11_c01117{letter-spacing:3.229213pt;}
.lsc_c01117{letter-spacing:3.238400pt;}
.lsb_c01117{letter-spacing:3.260761pt;}
.ls13_c01117{letter-spacing:3.314546pt;}
.ls4_c01117{letter-spacing:3.326400pt;}
.ls2_c01117{letter-spacing:3.361609pt;}
.ls9_c01117{letter-spacing:3.502400pt;}
.ls1_c01117{letter-spacing:3.537609pt;}
.ls17_c01117{letter-spacing:3.660800pt;}
.lsf_c01117{letter-spacing:27.878400pt;}
.ls6_c01117{letter-spacing:49.420976pt;}
.ls10_c01117{letter-spacing:53.222576pt;}
.ls19_c01117{letter-spacing:55.756800pt;}
.ws1_c01117{word-spacing:-21.790259pt;}
.ws2_c01117{word-spacing:-15.932928pt;}
.ws0_c01117{word-spacing:-15.559104pt;}
.ws3_c01117{word-spacing:0.000000pt;}
._3_c01117{margin-left:-10.152081pt;}
._0_c01117{width:2.817408pt;}
._2_c01117{width:4.638930pt;}
._8_c01117{width:5.699584pt;}
._6_c01117{width:6.940706pt;}
._1_c01117{width:9.950424pt;}
._7_c01117{width:19.362924pt;}
._5_c01117{width:33.809600pt;}
._4_c01117{width:36.871912pt;}
.fs5_c01117{font-size:14.080000pt;}
.fsf_c01117{font-size:19.712000pt;}
.fs6_c01117{font-size:20.416000pt;}
.fsb_c01117{font-size:22.352000pt;}
.fse_c01117{font-size:24.640000pt;}
.fsc_c01117{font-size:27.878400pt;}
.fs19_c01117{font-size:29.216000pt;}
.fsd_c01117{font-size:29.920000pt;}
.fs4_c01117{font-size:49.420976pt;}
.fs10_c01117{font-size:53.222576pt;}
.fs18_c01117{font-size:55.756800pt;}
.fs9_c01117{font-size:55.968000pt;}
.fsa_c01117{font-size:59.840000pt;}
.fs11_c01117{font-size:60.544176pt;}
.fs12_c01117{font-size:60.896000pt;}
.fs14_c01117{font-size:63.712176pt;}
.fs2_c01117{font-size:64.064176pt;}
.fs8_c01117{font-size:64.768000pt;}
.fs3_c01117{font-size:66.528000pt;}
.fs17_c01117{font-size:66.880000pt;}
.fs1_c01117{font-size:67.232176pt;}
.fs7_c01117{font-size:70.048000pt;}
.fs13_c01117{font-size:70.400000pt;}
.fs0_c01117{font-size:70.752176pt;}
.fs16_c01117{font-size:73.216000pt;}
.fs15_c01117{font-size:74.624176pt;}
.y0_c01117{bottom:0.000000pt;}
.y1_c01117{bottom:68.000000pt;}
.y20_c01117{bottom:143.432120pt;}
.y1f_c01117{bottom:173.211320pt;}
.y1e_c01117{bottom:230.864520pt;}
.y1d_c01117{bottom:258.747320pt;}
.y19_c01117{bottom:315.450120pt;}
.y1c_c01117{bottom:320.518920pt;}
.y1b_c01117{bottom:328.760120pt;}
.y1a_c01117{bottom:343.645320pt;}
.y18_c01117{bottom:344.278920pt;}
.y17_c01117{bottom:372.790920pt;}
.y16_c01117{bottom:400.990520pt;}
.y15_c01117{bottom:429.185720pt;}
.y14_c01117{bottom:442.170120pt;}
.y13_c01117{bottom:457.693320pt;}
.y12_c01117{bottom:504.262920pt;}
.y11_c01117{bottom:514.717320pt;}
.y10_c01117{bottom:529.606920pt;}
.yf_c01117{bottom:557.489720pt;}
.ye_c01117{bottom:567.944120pt;}
.yc_c01117{bottom:571.741320pt;}
.yd_c01117{bottom:577.448120pt;}
.yb_c01117{bottom:588.531720pt;}
.ya_c01117{bottom:599.940920pt;}
.y9_c01117{bottom:629.398920pt;}
.y8_c01117{bottom:686.110520pt;}
.y7_c01117{bottom:738.699320pt;}
.y6_c01117{bottom:742.813320pt;}
.y5_c01117{bottom:770.379320pt;}
.y4_c01117{bottom:799.208120pt;}
.y3_c01117{bottom:826.448520pt;}
.y2_c01117{bottom:951.901320pt;}
.y21_c01117{bottom:980.730120pt;}
.h7_c01117{height:14.685000pt;}
.he_c01117{height:18.567014pt;}
.h8_c01117{height:20.037188pt;}
.h11_c01117{height:20.559000pt;}
.hd_c01117{height:23.312438pt;}
.h10_c01117{height:25.698750pt;}
.hf_c01117{height:29.364844pt;}
.h1e_c01117{height:30.471375pt;}
.h6_c01117{height:32.914370pt;}
.h12_c01117{height:35.446236pt;}
.h1b_c01117{height:37.134029pt;}
.hb_c01117{height:58.372875pt;}
.hc_c01117{height:58.729688pt;}
.h17_c01117{height:62.530016pt;}
.h4_c01117{height:62.875485pt;}
.h14_c01117{height:63.145684pt;}
.h15_c01117{height:63.512625pt;}
.h13_c01117{height:63.566250pt;}
.h5_c01117{height:65.293594pt;}
.h3_c01117{height:65.984704pt;}
.ha_c01117{height:67.551000pt;}
.h9_c01117{height:68.748281pt;}
.h16_c01117{height:69.093750pt;}
.h2_c01117{height:69.439391pt;}
.h1a_c01117{height:69.753750pt;}
.h19_c01117{height:71.857500pt;}
.h1c_c01117{height:73.203110pt;}
.h18_c01117{height:73.239548pt;}
.h1d_c01117{height:76.362000pt;}
.h1_c01117{height:986.666667pt;}
.h0_c01117{height:1122.666667pt;}
.w1_c01117{width:689.333333pt;}
.w0_c01117{width:793.333333pt;}
.x0_c01117{left:0.000000pt;}
.x1_c01117{left:52.000000pt;}
.x5c_c01117{left:75.289853pt;}
.x28_c01117{left:76.649453pt;}
.x29_c01117{left:121.745053pt;}
.x62_c01117{left:124.402653pt;}
.x41_c01117{left:125.392653pt;}
.x18_c01117{left:126.351853pt;}
.x10_c01117{left:127.359453pt;}
.x3_c01117{left:128.587053pt;}
.x63_c01117{left:154.797853pt;}
.x34_c01117{left:156.654653pt;}
.x2a_c01117{left:166.347853pt;}
.x42_c01117{left:175.398653pt;}
.x19_c01117{left:176.467853pt;}
.x11_c01117{left:177.510653pt;}
.x46_c01117{left:184.876253pt;}
.x4_c01117{left:186.090653pt;}
.x21_c01117{left:195.524253pt;}
.x57_c01117{left:196.817853pt;}
.x67_c01117{left:204.113053pt;}
.x12_c01117{left:205.705853pt;}
.x50_c01117{left:214.796253pt;}
.x22_c01117{left:225.180253pt;}
.x5d_c01117{left:233.861453pt;}
.x2d_c01117{left:235.168253pt;}
.x68_c01117{left:243.251053pt;}
.x4b_c01117{left:244.219053pt;}
.x13_c01117{left:245.763453pt;}
.x5_c01117{left:255.720653pt;}
.x5e_c01117{left:263.697853pt;}
.x2b_c01117{left:264.731853pt;}
.x5a_c01117{left:273.338253pt;}
.x40_c01117{left:274.271053pt;}
.x2e_c01117{left:275.705453pt;}
.x58_c01117{left:283.603453pt;}
.x1a_c01117{left:284.870653pt;}
.x3f_c01117{left:286.278653pt;}
.x47_c01117{left:292.632253pt;}
.x43_c01117{left:294.383453pt;}
.x23_c01117{left:304.851053pt;}
.x69_c01117{left:311.798653pt;}
.x2c_c01117{left:313.910653pt;}
.x6_c01117{left:315.028253pt;}
.x4c_c01117{left:320.321453pt;}
.x35_c01117{left:322.767853pt;}
.x48_c01117{left:327.788253pt;}
.x1b_c01117{left:333.851453pt;}
.x36_c01117{left:334.911853pt;}
.x7_c01117{left:343.311453pt;}
.x6a_c01117{left:352.797853pt;}
.x25_c01117{left:361.760653pt;}
.x5f_c01117{left:362.829853pt;}
.x1c_c01117{left:364.123453pt;}
.x6b_c01117{left:370.292253pt;}
.x51_c01117{left:372.496653pt;}
.x2f_c01117{left:373.631853pt;}
.x6c_c01117{left:383.729853pt;}
.x1d_c01117{left:393.669453pt;}
.x44_c01117{left:395.037853pt;}
.x26_c01117{left:401.272653pt;}
.x37_c01117{left:402.557453pt;}
.x8_c01117{left:403.525453pt;}
.x27_c01117{left:408.963853pt;}
.x59_c01117{left:411.480653pt;}
.x14_c01117{left:413.553053pt;}
.x24_c01117{left:423.048253pt;}
.x3e_c01117{left:427.549453pt;}
.x64_c01117{left:430.475453pt;}
.x9_c01117{left:432.393853pt;}
.x4d_c01117{left:440.049853pt;}
.x52_c01117{left:441.743853pt;}
.x38_c01117{left:443.041853pt;}
.x6d_c01117{left:449.760653pt;}
.xa_c01117{left:452.378653pt;}
.x39_c01117{left:461.689053pt;}
.x1e_c01117{left:462.599853pt;}
.x53_c01117{left:470.097453pt;}
.x49_c01117{left:471.822253pt;}
.x65_c01117{left:479.702653pt;}
.x30_c01117{left:480.675053pt;}
.xb_c01117{left:482.479053pt;}
.xc_c01117{left:491.978653pt;}
.x3a_c01117{left:493.294253pt;}
.x60_c01117{left:499.269453pt;}
.x66_c01117{left:509.855853pt;}
.xd_c01117{left:510.991053pt;}
.xe_c01117{left:512.253853pt;}
.x31_c01117{left:519.505053pt;}
.x1f_c01117{left:521.203453pt;}
.x4a_c01117{left:528.723053pt;}
.x54_c01117{left:529.699853pt;}
.x15_c01117{left:540.567853pt;}
.xf_c01117{left:550.714253pt;}
.x4e_c01117{left:559.201853pt;}
.x16_c01117{left:570.047853pt;}
.x45_c01117{left:578.469453pt;}
.x20_c01117{left:580.770653pt;}
.x55_c01117{left:589.025053pt;}
.x3b_c01117{left:591.277853pt;}
.x61_c01117{left:597.684253pt;}
.x32_c01117{left:599.211053pt;}
.x17_c01117{left:609.533453pt;}
.x5b_c01117{left:620.841453pt;}
.x3c_c01117{left:624.159053pt;}
.x3d_c01117{left:625.514253pt;}
.x56_c01117{left:628.224653pt;}
.x33_c01117{left:629.245453pt;}
.x2_c01117{left:633.645453pt;}
.x4f_c01117{left:637.051053pt;}
.x6e_c01117{left:691.043453pt;}
}





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

.ir_c01118:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01118{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01118;src:url('chunks/assets/font_2c238ac7cde4d5cc99b45c95.woff2')format("woff");}.ff1_c01118{font-family:ff1_c01118;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01118;src:url('chunks/assets/font_afdddda1b2b5cfa8b49bd259.woff2')format("woff");}.ff2_c01118{font-family:ff2_c01118;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01118;src:url('chunks/assets/font_a779f942309e79592cb3416f.woff2')format("woff");}.ff3_c01118{font-family:ff3_c01118;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01118;src:url('chunks/assets/font_9053da2b6333a5bb6df7a86c.woff2')format("woff");}.ff4_c01118{font-family:ff4_c01118;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01118;src:url('chunks/assets/font_40fcd3665994152190e0b0fa.woff2')format("woff");}.ff5_c01118{font-family:ff5_c01118;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01118;src:url('chunks/assets/font_87e6ecdbce59b5a438220b8a.woff2')format("woff");}.ff6_c01118{font-family:ff6_c01118;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m44_c01118{transform:matrix(0.025642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.025642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.025642,0.000000,0.000000,0.250000,0,0);}
.m2a_c01118{transform:matrix(0.119048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119048,0.000000,0.000000,0.250000,0,0);}
.m45_c01118{transform:matrix(0.119658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119658,0.000000,0.000000,0.250000,0,0);}
.md_c01118{transform:matrix(0.146874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146874,0.000000,0.000000,0.250000,0,0);}
.m46_c01118{transform:matrix(0.161325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161325,0.000000,0.000000,0.250000,0,0);}
.mb_c01118{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m6c_c01118{transform:matrix(0.170248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170248,0.000000,0.000000,0.250000,0,0);}
.m64_c01118{transform:matrix(0.170266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170266,0.000000,0.000000,0.250000,0,0);}
.m6_c01118{transform:matrix(0.174999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174999,0.000000,0.000000,0.250000,0,0);}
.mc_c01118{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m18_c01118{transform:matrix(0.182823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182823,0.000000,0.000000,0.250000,0,0);}
.m9_c01118{transform:matrix(0.186459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186459,0.000000,0.000000,0.250000,0,0);}
.m60_c01118{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m81_c01118{transform:matrix(0.194257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194257,0.000000,0.000000,0.250000,0,0);}
.m82_c01118{transform:matrix(0.201013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201013,0.000000,0.000000,0.250000,0,0);}
.m80_c01118{transform:matrix(0.202702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202702,0.000000,0.000000,0.250000,0,0);}
.m21_c01118{transform:matrix(0.213952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213952,0.000000,0.000000,0.250000,0,0);}
.m6e_c01118{transform:matrix(0.220953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220953,0.000000,0.000000,0.250000,0,0);}
.m33_c01118{transform:matrix(0.221172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221172,0.000000,0.000000,0.250000,0,0);}
.m65_c01118{transform:matrix(0.223752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223752,0.000000,0.000000,0.250000,0,0);}
.m24_c01118{transform:matrix(0.228171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228171,0.000000,0.000000,0.250000,0,0);}
.m1e_c01118{transform:matrix(0.230872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230872,0.000000,0.000000,0.250000,0,0);}
.me_c01118{transform:matrix(0.231179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231179,0.000000,0.000000,0.250000,0,0);}
.m4a_c01118{transform:matrix(0.234109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234109,0.000000,0.000000,0.250000,0,0);}
.m10_c01118{transform:matrix(0.235906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235906,0.000000,0.000000,0.250000,0,0);}
.m4e_c01118{transform:matrix(0.237777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237777,0.000000,0.000000,0.250000,0,0);}
.m6a_c01118{transform:matrix(0.241169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241169,0.000000,0.000000,0.250000,0,0);}
.m17_c01118{transform:matrix(0.246169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246169,0.000000,0.000000,0.250000,0,0);}
.m47_c01118{transform:matrix(0.246284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246284,0.000000,0.000000,0.250000,0,0);}
.m4b_c01118{transform:matrix(0.247939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247939,0.000000,0.000000,0.250000,0,0);}
.m0_c01118{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m70_c01118{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m3b_c01118{transform:matrix(0.250144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250144,0.000000,0.000000,0.250000,0,0);}
.m4d_c01118{transform:matrix(0.250582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250582,0.000000,0.000000,0.250000,0,0);}
.m28_c01118{transform:matrix(0.250645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250645,0.000000,0.000000,0.250000,0,0);}
.m62_c01118{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m3f_c01118{transform:matrix(0.252085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252085,0.000000,0.000000,0.250000,0,0);}
.m7f_c01118{transform:matrix(0.253415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253415,0.000000,0.000000,0.250000,0,0);}
.m61_c01118{transform:matrix(0.253474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253474,0.000000,0.000000,0.250000,0,0);}
.m23_c01118{transform:matrix(0.253514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253514,0.000000,0.000000,0.250000,0,0);}
.m31_c01118{transform:matrix(0.254353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254353,0.000000,0.000000,0.250000,0,0);}
.m42_c01118{transform:matrix(0.255043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255043,0.000000,0.000000,0.250000,0,0);}
.m2b_c01118{transform:matrix(0.255777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255777,0.000000,0.000000,0.250000,0,0);}
.m7c_c01118{transform:matrix(0.255824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255824,0.000000,0.000000,0.250000,0,0);}
.m6b_c01118{transform:matrix(0.256252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256252,0.000000,0.000000,0.250000,0,0);}
.m43_c01118{transform:matrix(0.256508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256508,0.000000,0.000000,0.250000,0,0);}
.m76_c01118{transform:matrix(0.256868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256868,0.000000,0.000000,0.250000,0,0);}
.m1b_c01118{transform:matrix(0.257167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257167,0.000000,0.000000,0.250000,0,0);}
.ma_c01118{transform:matrix(0.257860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257860,0.000000,0.000000,0.250000,0,0);}
.m1_c01118{transform:matrix(0.258423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258423,0.000000,0.000000,0.250000,0,0);}
.m12_c01118{transform:matrix(0.258808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258808,0.000000,0.000000,0.250000,0,0);}
.m8_c01118{transform:matrix(0.259440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259440,0.000000,0.000000,0.250000,0,0);}
.m4f_c01118{transform:matrix(0.259880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259880,0.000000,0.000000,0.250000,0,0);}
.m2f_c01118{transform:matrix(0.260133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260133,0.000000,0.000000,0.250000,0,0);}
.m79_c01118{transform:matrix(0.260308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260308,0.000000,0.000000,0.250000,0,0);}
.m11_c01118{transform:matrix(0.260660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260660,0.000000,0.000000,0.250000,0,0);}
.m4c_c01118{transform:matrix(0.261051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261051,0.000000,0.000000,0.250000,0,0);}
.m3_c01118{transform:matrix(0.261386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261386,0.000000,0.000000,0.250000,0,0);}
.m35_c01118{transform:matrix(0.262306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262306,0.000000,0.000000,0.250000,0,0);}
.m6f_c01118{transform:matrix(0.262947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262947,0.000000,0.000000,0.250000,0,0);}
.m52_c01118{transform:matrix(0.263367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263367,0.000000,0.000000,0.250000,0,0);}
.mf_c01118{transform:matrix(0.264120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264120,0.000000,0.000000,0.250000,0,0);}
.m5f_c01118{transform:matrix(0.264728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264728,0.000000,0.000000,0.250000,0,0);}
.m13_c01118{transform:matrix(0.265451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265451,0.000000,0.000000,0.250000,0,0);}
.m7d_c01118{transform:matrix(0.265590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265590,0.000000,0.000000,0.250000,0,0);}
.m32_c01118{transform:matrix(0.267395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267395,0.000000,0.000000,0.250000,0,0);}
.m20_c01118{transform:matrix(0.267812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267812,0.000000,0.000000,0.250000,0,0);}
.m16_c01118{transform:matrix(0.268959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268959,0.000000,0.000000,0.250000,0,0);}
.m2c_c01118{transform:matrix(0.270574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270574,0.000000,0.000000,0.250000,0,0);}
.m26_c01118{transform:matrix(0.271319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271319,0.000000,0.000000,0.250000,0,0);}
.m59_c01118{transform:matrix(0.271867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271867,0.000000,0.000000,0.250000,0,0);}
.m7b_c01118{transform:matrix(0.273577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273577,0.000000,0.000000,0.250000,0,0);}
.m3c_c01118{transform:matrix(0.273594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273594,0.000000,0.000000,0.250000,0,0);}
.m5_c01118{transform:matrix(0.273796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273796,0.000000,0.000000,0.250000,0,0);}
.m5b_c01118{transform:matrix(0.274005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274005,0.000000,0.000000,0.250000,0,0);}
.m41_c01118{transform:matrix(0.274016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274016,0.000000,0.000000,0.250000,0,0);}
.m37_c01118{transform:matrix(0.275726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275726,0.000000,0.000000,0.250000,0,0);}
.m29_c01118{transform:matrix(0.276374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276374,0.000000,0.000000,0.250000,0,0);}
.m27_c01118{transform:matrix(0.276941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276941,0.000000,0.000000,0.250000,0,0);}
.m83_c01118{transform:matrix(0.277029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277029,0.000000,0.000000,0.250000,0,0);}
.m5a_c01118{transform:matrix(0.278014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278014,0.000000,0.000000,0.250000,0,0);}
.m34_c01118{transform:matrix(0.278424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278424,0.000000,0.000000,0.250000,0,0);}
.m19_c01118{transform:matrix(0.278635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278635,0.000000,0.000000,0.250000,0,0);}
.m68_c01118{transform:matrix(0.278700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278700,0.000000,0.000000,0.250000,0,0);}
.m22_c01118{transform:matrix(0.278943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278943,0.000000,0.000000,0.250000,0,0);}
.m71_c01118{transform:matrix(0.280698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280698,0.000000,0.000000,0.250000,0,0);}
.m77_c01118{transform:matrix(0.280742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280742,0.000000,0.000000,0.250000,0,0);}
.m2e_c01118{transform:matrix(0.282422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282422,0.000000,0.000000,0.250000,0,0);}
.m2_c01118{transform:matrix(0.283954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283954,0.000000,0.000000,0.250000,0,0);}
.m57_c01118{transform:matrix(0.284145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284145,0.000000,0.000000,0.250000,0,0);}
.m7e_c01118{transform:matrix(0.284485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284485,0.000000,0.000000,0.250000,0,0);}
.m51_c01118{transform:matrix(0.287105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287105,0.000000,0.000000,0.250000,0,0);}
.m5d_c01118{transform:matrix(0.288005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288005,0.000000,0.000000,0.250000,0,0);}
.m3a_c01118{transform:matrix(0.288218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288218,0.000000,0.000000,0.250000,0,0);}
.m1c_c01118{transform:matrix(0.288263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288263,0.000000,0.000000,0.250000,0,0);}
.m66_c01118{transform:matrix(0.289148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289148,0.000000,0.000000,0.250000,0,0);}
.m38_c01118{transform:matrix(0.290936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290936,0.000000,0.000000,0.250000,0,0);}
.m53_c01118{transform:matrix(0.293743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293743,0.000000,0.000000,0.250000,0,0);}
.m48_c01118{transform:matrix(0.294891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294891,0.000000,0.000000,0.250000,0,0);}
.m72_c01118{transform:matrix(0.295639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295639,0.000000,0.000000,0.250000,0,0);}
.m1a_c01118{transform:matrix(0.297043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297043,0.000000,0.000000,0.250000,0,0);}
.m5c_c01118{transform:matrix(0.297921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297921,0.000000,0.000000,0.250000,0,0);}
.m54_c01118{transform:matrix(0.300334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300334,0.000000,0.000000,0.250000,0,0);}
.m49_c01118{transform:matrix(0.301938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301938,0.000000,0.000000,0.250000,0,0);}
.m6d_c01118{transform:matrix(0.302025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302025,0.000000,0.000000,0.250000,0,0);}
.m67_c01118{transform:matrix(0.303644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303644,0.000000,0.000000,0.250000,0,0);}
.m74_c01118{transform:matrix(0.303831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303831,0.000000,0.000000,0.250000,0,0);}
.m75_c01118{transform:matrix(0.305691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305691,0.000000,0.000000,0.250000,0,0);}
.m2d_c01118{transform:matrix(0.305895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305895,0.000000,0.000000,0.250000,0,0);}
.m7_c01118{transform:matrix(0.307865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307865,0.000000,0.000000,0.250000,0,0);}
.m63_c01118{transform:matrix(0.311534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311534,0.000000,0.000000,0.250000,0,0);}
.m56_c01118{transform:matrix(0.313815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313815,0.000000,0.000000,0.250000,0,0);}
.m7a_c01118{transform:matrix(0.317203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317203,0.000000,0.000000,0.250000,0,0);}
.m3e_c01118{transform:matrix(0.318555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318555,0.000000,0.000000,0.250000,0,0);}
.m78_c01118{transform:matrix(0.321404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321404,0.000000,0.000000,0.250000,0,0);}
.m40_c01118{transform:matrix(0.321864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321864,0.000000,0.000000,0.250000,0,0);}
.m4_c01118{transform:matrix(0.322971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322971,0.000000,0.000000,0.250000,0,0);}
.m73_c01118{transform:matrix(0.328738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328738,0.000000,0.000000,0.250000,0,0);}
.m14_c01118{transform:matrix(0.329183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329183,0.000000,0.000000,0.250000,0,0);}
.m39_c01118{transform:matrix(0.334722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334722,0.000000,0.000000,0.250000,0,0);}
.m30_c01118{transform:matrix(0.340331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340331,0.000000,0.000000,0.250000,0,0);}
.m55_c01118{transform:matrix(0.341160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341160,0.000000,0.000000,0.250000,0,0);}
.m15_c01118{transform:matrix(0.351950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351950,0.000000,0.000000,0.250000,0,0);}
.m69_c01118{transform:matrix(0.354460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354460,0.000000,0.000000,0.250000,0,0);}
.m36_c01118{transform:matrix(0.355016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355016,0.000000,0.000000,0.250000,0,0);}
.m5e_c01118{transform:matrix(0.366383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366383,0.000000,0.000000,0.250000,0,0);}
.m58_c01118{transform:matrix(0.366906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366906,0.000000,0.000000,0.250000,0,0);}
.m1f_c01118{transform:matrix(0.371555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371555,0.000000,0.000000,0.250000,0,0);}
.m25_c01118{transform:matrix(0.376716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376716,0.000000,0.000000,0.250000,0,0);}
.m1d_c01118{transform:matrix(0.378372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378372,0.000000,0.000000,0.250000,0,0);}
.m50_c01118{transform:matrix(0.401304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401304,0.000000,0.000000,0.250000,0,0);}
.m3d_c01118{transform:matrix(1.570291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.570291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.570291,0.000000,0.000000,0.250000,0,0);}
.v0_c01118{vertical-align:0.000000px;}
.ls13_c01118{letter-spacing:-3.534300px;}
.lsf_c01118{letter-spacing:-3.160080px;}
.ls12_c01118{letter-spacing:-3.118500px;}
.lsc_c01118{letter-spacing:-2.882880px;}
.ls15_c01118{letter-spacing:-2.827440px;}
.lsb_c01118{letter-spacing:-2.716567px;}
.ls25_c01118{letter-spacing:-0.411840px;}
.ls7_c01118{letter-spacing:0.000000px;}
.ls0_c01118{letter-spacing:0.032947px;}
.ls1c_c01118{letter-spacing:0.271913px;}
.ls16_c01118{letter-spacing:0.922522px;}
.lse_c01118{letter-spacing:1.314506px;}
.ls18_c01118{letter-spacing:1.395900px;}
.ls27_c01118{letter-spacing:1.688544px;}
.ls6_c01118{letter-spacing:2.446330px;}
.ls23_c01118{letter-spacing:2.545171px;}
.ls21_c01118{letter-spacing:2.546419px;}
.ls3_c01118{letter-spacing:2.899354px;}
.ls1_c01118{letter-spacing:2.914560px;}
.ls17_c01118{letter-spacing:3.227400px;}
.ls1b_c01118{letter-spacing:3.336310px;}
.lsd_c01118{letter-spacing:3.410035px;}
.ls1e_c01118{letter-spacing:3.584434px;}
.ls1f_c01118{letter-spacing:3.593700px;}
.ls1d_c01118{letter-spacing:3.643200px;}
.ls5_c01118{letter-spacing:3.714797px;}
.ls26_c01118{letter-spacing:3.791700px;}
.ls4_c01118{letter-spacing:3.792096px;}
.ls9_c01118{letter-spacing:3.904243px;}
.ls8_c01118{letter-spacing:4.118400px;}
.ls1a_c01118{letter-spacing:4.350614px;}
.ls2_c01118{letter-spacing:4.397026px;}
.ls11_c01118{letter-spacing:4.455000px;}
.ls20_c01118{letter-spacing:4.514400px;}
.ls24_c01118{letter-spacing:5.524200px;}
.ls14_c01118{letter-spacing:29.937798px;}
.ls28_c01118{letter-spacing:52.747398px;}
.ls19_c01118{letter-spacing:55.598598px;}
.lsa_c01118{letter-spacing:57.024198px;}
.ls10_c01118{letter-spacing:59.875398px;}
.ls22_c01118{letter-spacing:61.300998px;}
.sc__c01118{text-shadow:none;}
.sc0_c01118{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01118{-webkit-text-stroke:0px transparent;}
.sc0_c01118{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01118{word-spacing:-20.624947px;}
.ws0_c01118{word-spacing:-20.592000px;}
.ws2_c01118{word-spacing:-20.180160px;}
.ws3_c01118{word-spacing:0.000000px;}
._2_c01118{margin-left:-20.816928px;}
._a_c01118{margin-left:-4.322340px;}
._4_c01118{width:3.442982px;}
._0_c01118{width:6.836940px;}
._8_c01118{width:10.460340px;}
._5_c01118{width:13.412520px;}
._9_c01118{width:21.337747px;}
._c_c01118{width:24.172632px;}
._6_c01118{width:25.174987px;}
._1_c01118{width:28.967400px;}
._3_c01118{width:31.876416px;}
._b_c01118{width:33.121440px;}
._7_c01118{width:45.579600px;}
.fc0_c01118{color:transparent;}
.fs22_c01118{font-size:19.206000px;}
.fsb_c01118{font-size:21.186000px;}
.fs13_c01118{font-size:22.176000px;}
.fs1a_c01118{font-size:22.374000px;}
.fs21_c01118{font-size:23.166000px;}
.fs1c_c01118{font-size:25.146000px;}
.fs0_c01118{font-size:27.720000px;}
.fs10_c01118{font-size:27.918000px;}
.fsc_c01118{font-size:29.937798px;}
.fs1d_c01118{font-size:33.264000px;}
.fse_c01118{font-size:33.660000px;}
.fs19_c01118{font-size:34.650000px;}
.fs18_c01118{font-size:40.392000px;}
.fs26_c01118{font-size:40.986198px;}
.fs15_c01118{font-size:52.074000px;}
.fs20_c01118{font-size:52.747398px;}
.fs11_c01118{font-size:55.598598px;}
.fs2_c01118{font-size:57.024198px;}
.fs6_c01118{font-size:59.875398px;}
.fs16_c01118{font-size:61.300998px;}
.fsf_c01118{font-size:64.548000px;}
.fs4_c01118{font-size:66.726198px;}
.fs14_c01118{font-size:71.874000px;}
.fsa_c01118{font-size:72.864000px;}
.fs1f_c01118{font-size:75.834000px;}
.fs1b_c01118{font-size:77.022198px;}
.fs3_c01118{font-size:77.616198px;}
.fs8_c01118{font-size:79.200000px;}
.fsd_c01118{font-size:80.784000px;}
.fs1_c01118{font-size:82.368000px;}
.fs1e_c01118{font-size:83.754000px;}
.fs12_c01118{font-size:87.714000px;}
.fs7_c01118{font-size:89.100000px;}
.fs5_c01118{font-size:90.288000px;}
.fs9_c01118{font-size:100.980000px;}
.fs17_c01118{font-size:110.484000px;}
.fs25_c01118{font-size:127.116198px;}
.fs24_c01118{font-size:131.076198px;}
.fs23_c01118{font-size:135.432198px;}
.y0_c01118{bottom:0.000000px;}
.y2f_c01118{bottom:26.641935px;}
.y2e_c01118{bottom:60.494985px;}
.y1_c01118{bottom:76.500000px;}
.y2d_c01118{bottom:109.683135px;}
.y29_c01118{bottom:117.880335px;}
.y2c_c01118{bottom:127.503135px;}
.y2b_c01118{bottom:131.779935px;}
.y28_c01118{bottom:149.956335px;}
.y2a_c01118{bottom:154.589535px;}
.y27_c01118{bottom:183.096585px;}
.y26_c01118{bottom:210.182985px;}
.y1c_c01118{bottom:249.035535px;}
.y25_c01118{bottom:257.584185px;}
.y24_c01118{bottom:266.494185px;}
.y1b_c01118{bottom:281.106585px;}
.y23_c01118{bottom:285.026985px;}
.y4_c01118{bottom:341.343135px;}
.y1a_c01118{bottom:343.837935px;}
.y22_c01118{bottom:347.045535px;}
.y19_c01118{bottom:376.626735px;}
.y18_c01118{bottom:408.346335px;}
.y17_c01118{bottom:451.827135px;}
.y16_c01118{bottom:471.785535px;}
.y15_c01118{bottom:535.219785px;}
.y14_c01118{bottom:568.008585px;}
.y13_c01118{bottom:594.030735px;}
.y11_c01118{bottom:599.371785px;}
.y12_c01118{bottom:600.440985px;}
.y10_c01118{bottom:617.553135px;}
.yf_c01118{bottom:632.521935px;}
.ye_c01118{bottom:675.997785px;}
.y3_c01118{bottom:676.713555px;}
.yd_c01118{bottom:686.338335px;}
.yb_c01118{bottom:696.317535px;}
.yc_c01118{bottom:698.807385px;}
.y21_c01118{bottom:708.435135px;}
.y20_c01118{bottom:758.326185px;}
.ya_c01118{bottom:760.469535px;}
.y1f_c01118{bottom:774.720585px;}
.y9_c01118{bottom:792.540585px;}
.y8_c01118{bottom:824.616585px;}
.y7_c01118{bottom:886.635135px;}
.y1e_c01118{bottom:901.603935px;}
.y6_c01118{bottom:919.067535px;}
.y2_c01118{bottom:947.579535px;}
.y1d_c01118{bottom:1023.131385px;}
.y5_c01118{bottom:1066.255785px;}
.y30_c01118{bottom:1102.964985px;}
.he_c01118{height:19.938573px;}
.h23_c01118{height:20.031258px;}
.hd_c01118{height:22.096336px;}
.h15_c01118{height:23.128875px;}
.h1b_c01118{height:23.335383px;}
.h22_c01118{height:24.161414px;}
.h1d_c01118{height:26.226492px;}
.h2_c01118{height:28.911094px;}
.h12_c01118{height:29.117602px;}
.h10_c01118{height:33.035449px;}
.h1e_c01118{height:34.693313px;}
.h21_c01118{height:35.129767px;}
.h1a_c01118{height:36.138867px;}
.h13_c01118{height:37.028666px;}
.h4_c01118{height:37.978116px;}
.h8_c01118{height:39.877015px;}
.h27_c01118{height:40.225712px;}
.h17_c01118{height:40.826465px;}
.h19_c01118{height:42.127594px;}
.h11_c01118{height:67.321547px;}
.h6_c01118{height:69.593339px;}
.h16_c01118{height:70.540400px;}
.hc_c01118{height:71.512031px;}
.h20_c01118{height:74.426924px;}
.h5_c01118{height:76.176054px;}
.ha_c01118{height:77.730469px;}
.hf_c01118{height:79.285078px;}
.h1c_c01118{height:80.331746px;}
.h3_c01118{height:80.839688px;}
.h1f_c01118{height:82.199971px;}
.h14_c01118{height:86.043665px;}
.h9_c01118{height:87.446777px;}
.h7_c01118{height:88.612734px;}
.hb_c01118{height:99.106348px;}
.h18_c01118{height:108.434004px;}
.h25_c01118{height:128.644120px;}
.h26_c01118{height:132.578222px;}
.h24_c01118{height:132.919296px;}
.h1_c01118{height:1110.000000px;}
.h0_c01118{height:1263.000000px;}
.w1_c01118{width:775.500000px;}
.w0_c01118{width:892.500000px;}
.x0_c01118{left:0.000000px;}
.x2_c01118{left:7.005885px;}
.x3_c01118{left:44.074455px;}
.x1_c01118{left:58.500000px;}
.x4_c01118{left:62.965635px;}
.x51_c01118{left:88.364085px;}
.x27_c01118{left:89.423385px;}
.x6_c01118{left:90.502485px;}
.x26_c01118{left:143.917935px;}
.x7_c01118{left:145.967235px;}
.x54_c01118{left:157.273035px;}
.x64_c01118{left:187.730385px;}
.x13_c01118{left:191.096385px;}
.x3e_c01118{left:199.476735px;}
.x14_c01118{left:201.248835px;}
.x38_c01118{left:202.481385px;}
.x2d_c01118{left:212.183385px;}
.x5e_c01118{left:232.577385px;}
.x8_c01118{left:234.992985px;}
.x43_c01118{left:244.917735px;}
.x32_c01118{left:247.640235px;}
.x3f_c01118{left:254.411835px;}
.x5f_c01118{left:255.451335px;}
.x28_c01118{left:256.975935px;}
.x15_c01118{left:267.415485px;}
.x48_c01118{left:268.494585px;}
.x1d_c01118{left:278.632185px;}
.x9_c01118{left:279.825135px;}
.x49_c01118{left:289.472685px;}
.x16_c01118{left:301.441785px;}
.x29_c01118{left:310.906185px;}
.xa_c01118{left:312.440685px;}
.x40_c01118{left:322.449585px;}
.x4a_c01118{left:324.063285px;}
.x1e_c01118{left:334.438485px;}
.x44_c01118{left:345.476985px;}
.x50_c01118{left:356.411535px;}
.x2e_c01118{left:357.921285px;}
.x17_c01118{left:366.123435px;}
.x39_c01118{left:367.652985px;}
.x55_c01118{left:369.598335px;}
.x2a_c01118{left:379.349835px;}
.x56_c01118{left:390.175485px;}
.x4b_c01118{left:400.887285px;}
.x18_c01118{left:402.119835px;}
.x52_c01118{left:403.268235px;}
.x2b_c01118{left:411.707985px;}
.xb_c01118{left:413.059335px;}
.x57_c01118{left:414.504735px;}
.x3a_c01118{left:423.538485px;}
.x58_c01118{left:431.889135px;}
.x60_c01118{left:433.794885px;}
.x33_c01118{left:435.269985px;}
.xc_c01118{left:445.585785px;}
.x65_c01118{left:456.277785px;}
.x2f_c01118{left:457.292535px;}
.x61_c01118{left:465.667935px;}
.x34_c01118{left:467.341035px;}
.x45_c01118{left:478.394385px;}
.x1f_c01118{left:479.849685px;}
.x42_c01118{left:486.745035px;}
.x4c_c01118{left:488.502285px;}
.x19_c01118{left:492.199935px;}
.x20_c01118{left:500.095185px;}
.x62_c01118{left:511.009935px;}
.x1a_c01118{left:512.158335px;}
.x41_c01118{left:513.549285px;}
.x46_c01118{left:521.251485px;}
.xd_c01118{left:522.612735px;}
.x5b_c01118{left:533.576985px;}
.x21_c01118{left:535.076835px;}
.x31_c01118{left:550.847535px;}
.xe_c01118{left:557.401335px;}
.x5c_c01118{left:565.118385px;}
.x35_c01118{left:566.123235px;}
.x1b_c01118{left:568.306185px;}
.x4d_c01118{left:576.775635px;}
.x22_c01118{left:578.468535px;}
.x3b_c01118{left:579.849585px;}
.x66_c01118{left:597.669585px;}
.x30_c01118{left:600.545535px;}
.x1c_c01118{left:610.796985px;}
.x36_c01118{left:618.276435px;}
.x4e_c01118{left:621.691935px;}
.x47_c01118{left:631.824585px;}
.xf_c01118{left:634.146135px;}
.x3c_c01118{left:642.828435px;}
.x23_c01118{left:644.382735px;}
.x67_c01118{left:653.629335px;}
.x3d_c01118{left:666.415185px;}
.x10_c01118{left:667.523985px;}
.x63_c01118{left:674.597535px;}
.x4f_c01118{left:675.825135px;}
.x53_c01118{left:677.255685px;}
.x24_c01118{left:687.086385px;}
.x2c_c01118{left:706.074585px;}
.x5_c01118{left:708.252585px;}
.x11_c01118{left:711.366135px;}
.x5d_c01118{left:721.087935px;}
.x37_c01118{left:729.097035px;}
.x25_c01118{left:731.972985px;}
.x12_c01118{left:746.288385px;}
.x68_c01118{left:763.692585px;}
.x59_c01118{left:764.836035px;}
.x5a_c01118{left:766.321035px;}
.x69_c01118{left:774.800385px;}
@media print{
.v0_c01118{vertical-align:0.000000pt;}
.ls13_c01118{letter-spacing:-3.141600pt;}
.lsf_c01118{letter-spacing:-2.808960pt;}
.ls12_c01118{letter-spacing:-2.772000pt;}
.lsc_c01118{letter-spacing:-2.562560pt;}
.ls15_c01118{letter-spacing:-2.513280pt;}
.lsb_c01118{letter-spacing:-2.414726pt;}
.ls25_c01118{letter-spacing:-0.366080pt;}
.ls7_c01118{letter-spacing:0.000000pt;}
.ls0_c01118{letter-spacing:0.029286pt;}
.ls1c_c01118{letter-spacing:0.241701pt;}
.ls16_c01118{letter-spacing:0.820019pt;}
.lse_c01118{letter-spacing:1.168450pt;}
.ls18_c01118{letter-spacing:1.240800pt;}
.ls27_c01118{letter-spacing:1.500928pt;}
.ls6_c01118{letter-spacing:2.174515pt;}
.ls23_c01118{letter-spacing:2.262374pt;}
.ls21_c01118{letter-spacing:2.263483pt;}
.ls3_c01118{letter-spacing:2.577203pt;}
.ls1_c01118{letter-spacing:2.590720pt;}
.ls17_c01118{letter-spacing:2.868800pt;}
.ls1b_c01118{letter-spacing:2.965609pt;}
.lsd_c01118{letter-spacing:3.031142pt;}
.ls1e_c01118{letter-spacing:3.186163pt;}
.ls1f_c01118{letter-spacing:3.194400pt;}
.ls1d_c01118{letter-spacing:3.238400pt;}
.ls5_c01118{letter-spacing:3.302042pt;}
.ls26_c01118{letter-spacing:3.370400pt;}
.ls4_c01118{letter-spacing:3.370752pt;}
.ls9_c01118{letter-spacing:3.470438pt;}
.ls8_c01118{letter-spacing:3.660800pt;}
.ls1a_c01118{letter-spacing:3.867213pt;}
.ls2_c01118{letter-spacing:3.908467pt;}
.ls11_c01118{letter-spacing:3.960000pt;}
.ls20_c01118{letter-spacing:4.012800pt;}
.ls24_c01118{letter-spacing:4.910400pt;}
.ls14_c01118{letter-spacing:26.611376pt;}
.ls28_c01118{letter-spacing:46.886576pt;}
.ls19_c01118{letter-spacing:49.420976pt;}
.lsa_c01118{letter-spacing:50.688176pt;}
.ls10_c01118{letter-spacing:53.222576pt;}
.ls22_c01118{letter-spacing:54.489776pt;}
.ws1_c01118{word-spacing:-18.333286pt;}
.ws0_c01118{word-spacing:-18.304000pt;}
.ws2_c01118{word-spacing:-17.937920pt;}
.ws3_c01118{word-spacing:0.000000pt;}
._2_c01118{margin-left:-18.503936pt;}
._a_c01118{margin-left:-3.842080pt;}
._4_c01118{width:3.060429pt;}
._0_c01118{width:6.077280pt;}
._8_c01118{width:9.298080pt;}
._5_c01118{width:11.922240pt;}
._9_c01118{width:18.966886pt;}
._c_c01118{width:21.486784pt;}
._6_c01118{width:22.377766pt;}
._1_c01118{width:25.748800pt;}
._3_c01118{width:28.334592pt;}
._b_c01118{width:29.441280pt;}
._7_c01118{width:40.515200pt;}
.fs22_c01118{font-size:17.072000pt;}
.fsb_c01118{font-size:18.832000pt;}
.fs13_c01118{font-size:19.712000pt;}
.fs1a_c01118{font-size:19.888000pt;}
.fs21_c01118{font-size:20.592000pt;}
.fs1c_c01118{font-size:22.352000pt;}
.fs0_c01118{font-size:24.640000pt;}
.fs10_c01118{font-size:24.816000pt;}
.fsc_c01118{font-size:26.611376pt;}
.fs1d_c01118{font-size:29.568000pt;}
.fse_c01118{font-size:29.920000pt;}
.fs19_c01118{font-size:30.800000pt;}
.fs18_c01118{font-size:35.904000pt;}
.fs26_c01118{font-size:36.432176pt;}
.fs15_c01118{font-size:46.288000pt;}
.fs20_c01118{font-size:46.886576pt;}
.fs11_c01118{font-size:49.420976pt;}
.fs2_c01118{font-size:50.688176pt;}
.fs6_c01118{font-size:53.222576pt;}
.fs16_c01118{font-size:54.489776pt;}
.fsf_c01118{font-size:57.376000pt;}
.fs4_c01118{font-size:59.312176pt;}
.fs14_c01118{font-size:63.888000pt;}
.fsa_c01118{font-size:64.768000pt;}
.fs1f_c01118{font-size:67.408000pt;}
.fs1b_c01118{font-size:68.464176pt;}
.fs3_c01118{font-size:68.992176pt;}
.fs8_c01118{font-size:70.400000pt;}
.fsd_c01118{font-size:71.808000pt;}
.fs1_c01118{font-size:73.216000pt;}
.fs1e_c01118{font-size:74.448000pt;}
.fs12_c01118{font-size:77.968000pt;}
.fs7_c01118{font-size:79.200000pt;}
.fs5_c01118{font-size:80.256000pt;}
.fs9_c01118{font-size:89.760000pt;}
.fs17_c01118{font-size:98.208000pt;}
.fs25_c01118{font-size:112.992176pt;}
.fs24_c01118{font-size:116.512176pt;}
.fs23_c01118{font-size:120.384176pt;}
.y0_c01118{bottom:0.000000pt;}
.y2f_c01118{bottom:23.681720pt;}
.y2e_c01118{bottom:53.773320pt;}
.y1_c01118{bottom:68.000000pt;}
.y2d_c01118{bottom:97.496120pt;}
.y29_c01118{bottom:104.782520pt;}
.y2c_c01118{bottom:113.336120pt;}
.y2b_c01118{bottom:117.137720pt;}
.y28_c01118{bottom:133.294520pt;}
.y2a_c01118{bottom:137.412920pt;}
.y27_c01118{bottom:162.752520pt;}
.y26_c01118{bottom:186.829320pt;}
.y1c_c01118{bottom:221.364920pt;}
.y25_c01118{bottom:228.963720pt;}
.y24_c01118{bottom:236.883720pt;}
.y1b_c01118{bottom:249.872520pt;}
.y23_c01118{bottom:253.357320pt;}
.y4_c01118{bottom:303.416120pt;}
.y1a_c01118{bottom:305.633720pt;}
.y22_c01118{bottom:308.484920pt;}
.y19_c01118{bottom:334.779320pt;}
.y18_c01118{bottom:362.974520pt;}
.y17_c01118{bottom:401.624120pt;}
.y16_c01118{bottom:419.364920pt;}
.y15_c01118{bottom:475.750920pt;}
.y14_c01118{bottom:504.896520pt;}
.y13_c01118{bottom:528.027320pt;}
.y11_c01118{bottom:532.774920pt;}
.y12_c01118{bottom:533.725320pt;}
.y10_c01118{bottom:548.936120pt;}
.yf_c01118{bottom:562.241720pt;}
.ye_c01118{bottom:600.886920pt;}
.y3_c01118{bottom:601.523160pt;}
.yd_c01118{bottom:610.078520pt;}
.yb_c01118{bottom:618.948920pt;}
.yc_c01118{bottom:621.162120pt;}
.y21_c01118{bottom:629.720120pt;}
.y20_c01118{bottom:674.067720pt;}
.ya_c01118{bottom:675.972920pt;}
.y1f_c01118{bottom:688.640520pt;}
.y9_c01118{bottom:704.480520pt;}
.y8_c01118{bottom:732.992520pt;}
.y7_c01118{bottom:788.120120pt;}
.y1e_c01118{bottom:801.425720pt;}
.y6_c01118{bottom:816.948920pt;}
.y2_c01118{bottom:842.292920pt;}
.y1d_c01118{bottom:909.450120pt;}
.y5_c01118{bottom:947.782920pt;}
.y30_c01118{bottom:980.413320pt;}
.he_c01118{height:17.723176pt;}
.h23_c01118{height:17.805563pt;}
.hd_c01118{height:19.641188pt;}
.h15_c01118{height:20.559000pt;}
.h1b_c01118{height:20.742563pt;}
.h22_c01118{height:21.476813pt;}
.h1d_c01118{height:23.312438pt;}
.h2_c01118{height:25.698750pt;}
.h12_c01118{height:25.882313pt;}
.h10_c01118{height:29.364844pt;}
.h1e_c01118{height:30.838500pt;}
.h21_c01118{height:31.226460pt;}
.h1a_c01118{height:32.123438pt;}
.h13_c01118{height:32.914370pt;}
.h4_c01118{height:33.758325pt;}
.h8_c01118{height:35.446236pt;}
.h27_c01118{height:35.756188pt;}
.h17_c01118{height:36.290191pt;}
.h19_c01118{height:37.446750pt;}
.h11_c01118{height:59.841375pt;}
.h6_c01118{height:61.860746pt;}
.h16_c01118{height:62.702578pt;}
.hc_c01118{height:63.566250pt;}
.h20_c01118{height:66.157266pt;}
.h5_c01118{height:67.712048pt;}
.ha_c01118{height:69.093750pt;}
.hf_c01118{height:70.475625pt;}
.h1c_c01118{height:71.405996pt;}
.h3_c01118{height:71.857500pt;}
.h1f_c01118{height:73.066641pt;}
.h14_c01118{height:76.483258pt;}
.h9_c01118{height:77.730469pt;}
.h7_c01118{height:78.766875pt;}
.hb_c01118{height:88.094531pt;}
.h18_c01118{height:96.385781pt;}
.h25_c01118{height:114.350329pt;}
.h26_c01118{height:117.847309pt;}
.h24_c01118{height:118.150485pt;}
.h1_c01118{height:986.666667pt;}
.h0_c01118{height:1122.666667pt;}
.w1_c01118{width:689.333333pt;}
.w0_c01118{width:793.333333pt;}
.x0_c01118{left:0.000000pt;}
.x2_c01118{left:6.227453pt;}
.x3_c01118{left:39.177293pt;}
.x1_c01118{left:52.000000pt;}
.x4_c01118{left:55.969453pt;}
.x51_c01118{left:78.545853pt;}
.x27_c01118{left:79.487453pt;}
.x6_c01118{left:80.446653pt;}
.x26_c01118{left:127.927053pt;}
.x7_c01118{left:129.748653pt;}
.x54_c01118{left:139.798253pt;}
.x64_c01118{left:166.871453pt;}
.x13_c01118{left:169.863453pt;}
.x3e_c01118{left:177.312653pt;}
.x14_c01118{left:178.887853pt;}
.x38_c01118{left:179.983453pt;}
.x2d_c01118{left:188.607453pt;}
.x5e_c01118{left:206.735453pt;}
.x8_c01118{left:208.882653pt;}
.x43_c01118{left:217.704653pt;}
.x32_c01118{left:220.124653pt;}
.x3f_c01118{left:226.143853pt;}
.x5f_c01118{left:227.067853pt;}
.x28_c01118{left:228.423053pt;}
.x15_c01118{left:237.702653pt;}
.x48_c01118{left:238.661853pt;}
.x1d_c01118{left:247.673053pt;}
.x9_c01118{left:248.733453pt;}
.x49_c01118{left:257.309053pt;}
.x16_c01118{left:267.948253pt;}
.x29_c01118{left:276.361053pt;}
.xa_c01118{left:277.725053pt;}
.x40_c01118{left:286.621853pt;}
.x4a_c01118{left:288.056253pt;}
.x1e_c01118{left:297.278653pt;}
.x44_c01118{left:307.090653pt;}
.x50_c01118{left:316.810253pt;}
.x2e_c01118{left:318.152253pt;}
.x17_c01118{left:325.443053pt;}
.x39_c01118{left:326.802653pt;}
.x55_c01118{left:328.531853pt;}
.x2a_c01118{left:337.199853pt;}
.x56_c01118{left:346.822653pt;}
.x4b_c01118{left:356.344253pt;}
.x18_c01118{left:357.439853pt;}
.x52_c01118{left:358.460653pt;}
.x2b_c01118{left:365.962653pt;}
.xb_c01118{left:367.163853pt;}
.x57_c01118{left:368.448653pt;}
.x3a_c01118{left:376.478653pt;}
.x58_c01118{left:383.901453pt;}
.x60_c01118{left:385.595453pt;}
.x33_c01118{left:386.906653pt;}
.xc_c01118{left:396.076253pt;}
.x65_c01118{left:405.580253pt;}
.x2f_c01118{left:406.482253pt;}
.x61_c01118{left:413.927053pt;}
.x34_c01118{left:415.414253pt;}
.x45_c01118{left:425.239453pt;}
.x1f_c01118{left:426.533053pt;}
.x42_c01118{left:432.662253pt;}
.x4c_c01118{left:434.224253pt;}
.x19_c01118{left:437.511053pt;}
.x20_c01118{left:444.529053pt;}
.x62_c01118{left:454.231053pt;}
.x1a_c01118{left:455.251853pt;}
.x41_c01118{left:456.488253pt;}
.x46_c01118{left:463.334653pt;}
.xd_c01118{left:464.544653pt;}
.x5b_c01118{left:474.290653pt;}
.x21_c01118{left:475.623853pt;}
.x31_c01118{left:489.642253pt;}
.xe_c01118{left:495.467853pt;}
.x5c_c01118{left:502.327453pt;}
.x35_c01118{left:503.220653pt;}
.x1b_c01118{left:505.161053pt;}
.x4d_c01118{left:512.689453pt;}
.x22_c01118{left:514.194253pt;}
.x3b_c01118{left:515.421853pt;}
.x66_c01118{left:531.261853pt;}
.x30_c01118{left:533.818253pt;}
.x1c_c01118{left:542.930653pt;}
.x36_c01118{left:549.579053pt;}
.x4e_c01118{left:552.615053pt;}
.x47_c01118{left:561.621853pt;}
.xf_c01118{left:563.685453pt;}
.x3c_c01118{left:571.403053pt;}
.x23_c01118{left:572.784653pt;}
.x67_c01118{left:581.003853pt;}
.x3d_c01118{left:592.369053pt;}
.x10_c01118{left:593.354653pt;}
.x63_c01118{left:599.642253pt;}
.x4f_c01118{left:600.733453pt;}
.x53_c01118{left:602.005053pt;}
.x24_c01118{left:610.743453pt;}
.x2c_c01118{left:627.621853pt;}
.x5_c01118{left:629.557853pt;}
.x11_c01118{left:632.325453pt;}
.x5d_c01118{left:640.967053pt;}
.x37_c01118{left:648.086253pt;}
.x25_c01118{left:650.642653pt;}
.x12_c01118{left:663.367453pt;}
.x68_c01118{left:678.837853pt;}
.x59_c01118{left:679.854253pt;}
.x5a_c01118{left:681.174253pt;}
.x69_c01118{left:688.711453pt;}
}





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

.ir_c01119:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01119{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01119;src:url('chunks/assets/font_6400a37a3e674253aef4c9b6.woff2')format("woff");}.ff1_c01119{font-family:ff1_c01119;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01119;src:url('chunks/assets/font_8d7f44be1b28a156f62db59a.woff2')format("woff");}.ff2_c01119{font-family:ff2_c01119;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01119;src:url('chunks/assets/font_d4cb2af054e6223b04aec655.woff2')format("woff");}.ff3_c01119{font-family:ff3_c01119;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01119;src:url('chunks/assets/font_b5da0269858901c151d0fc14.woff2')format("woff");}.ff4_c01119{font-family:ff4_c01119;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01119;src:url('chunks/assets/font_58050ada64ae02f3533b0da0.woff2')format("woff");}.ff5_c01119{font-family:ff5_c01119;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m31_c01119{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);}
.m56_c01119{transform:matrix(0.149306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149306,0.000000,0.000000,0.250000,0,0);}
.m30_c01119{transform:matrix(0.159723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159723,0.000000,0.000000,0.250000,0,0);}
.m57_c01119{transform:matrix(0.161459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161459,0.000000,0.000000,0.250000,0,0);}
.m2c_c01119{transform:matrix(0.178241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178241,0.000000,0.000000,0.250000,0,0);}
.me_c01119{transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);}
.m5b_c01119{transform:matrix(0.184523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184523,0.000000,0.000000,0.250000,0,0);}
.m6c_c01119{transform:matrix(0.187207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187207,0.000000,0.000000,0.250000,0,0);}
.m86_c01119{transform:matrix(0.202128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202128,0.000000,0.000000,0.250000,0,0);}
.m7b_c01119{transform:matrix(0.202632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202632,0.000000,0.000000,0.250000,0,0);}
.m72_c01119{transform:matrix(0.202898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202898,0.000000,0.000000,0.250000,0,0);}
.m6b_c01119{transform:matrix(0.203788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203788,0.000000,0.000000,0.250000,0,0);}
.m74_c01119{transform:matrix(0.205434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205434,0.000000,0.000000,0.250000,0,0);}
.m6f_c01119{transform:matrix(0.208310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208310,0.000000,0.000000,0.250000,0,0);}
.m36_c01119{transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);}
.m70_c01119{transform:matrix(0.220395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220395,0.000000,0.000000,0.250000,0,0);}
.m73_c01119{transform:matrix(0.237714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237714,0.000000,0.000000,0.250000,0,0);}
.m2e_c01119{transform:matrix(0.241309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241309,0.000000,0.000000,0.250000,0,0);}
.m48_c01119{transform:matrix(0.245908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245908,0.000000,0.000000,0.250000,0,0);}
.m24_c01119{transform:matrix(0.247802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247802,0.000000,0.000000,0.250000,0,0);}
.m0_c01119{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m29_c01119{transform:matrix(0.251671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251671,0.000000,0.000000,0.250000,0,0);}
.m5a_c01119{transform:matrix(0.253477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253477,0.000000,0.000000,0.250000,0,0);}
.m51_c01119{transform:matrix(0.253894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253894,0.000000,0.000000,0.250000,0,0);}
.m87_c01119{transform:matrix(0.254693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254693,0.000000,0.000000,0.250000,0,0);}
.m55_c01119{transform:matrix(0.257860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257860,0.000000,0.000000,0.250000,0,0);}
.m5e_c01119{transform:matrix(0.258111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258111,0.000000,0.000000,0.250000,0,0);}
.m1f_c01119{transform:matrix(0.259339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259339,0.000000,0.000000,0.250000,0,0);}
.m13_c01119{transform:matrix(0.259792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259792,0.000000,0.000000,0.250000,0,0);}
.m66_c01119{transform:matrix(0.262161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262161,0.000000,0.000000,0.250000,0,0);}
.m1b_c01119{transform:matrix(0.263704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263704,0.000000,0.000000,0.250000,0,0);}
.m75_c01119{transform:matrix(0.263971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263971,0.000000,0.000000,0.250000,0,0);}
.m65_c01119{transform:matrix(0.264543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264543,0.000000,0.000000,0.250000,0,0);}
.mc_c01119{transform:matrix(0.264608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264608,0.000000,0.000000,0.250000,0,0);}
.m16_c01119{transform:matrix(0.265345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265345,0.000000,0.000000,0.250000,0,0);}
.m5f_c01119{transform:matrix(0.265573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265573,0.000000,0.000000,0.250000,0,0);}
.m84_c01119{transform:matrix(0.266425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266425,0.000000,0.000000,0.250000,0,0);}
.m47_c01119{transform:matrix(0.266991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266991,0.000000,0.000000,0.250000,0,0);}
.m27_c01119{transform:matrix(0.268165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268165,0.000000,0.000000,0.250000,0,0);}
.m14_c01119{transform:matrix(0.268602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268602,0.000000,0.000000,0.250000,0,0);}
.m4c_c01119{transform:matrix(0.270195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270195,0.000000,0.000000,0.250000,0,0);}
.m3c_c01119{transform:matrix(0.270226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270226,0.000000,0.000000,0.250000,0,0);}
.m22_c01119{transform:matrix(0.271559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271559,0.000000,0.000000,0.250000,0,0);}
.m39_c01119{transform:matrix(0.272895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272895,0.000000,0.000000,0.250000,0,0);}
.m82_c01119{transform:matrix(0.273165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273165,0.000000,0.000000,0.250000,0,0);}
.m80_c01119{transform:matrix(0.273233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273233,0.000000,0.000000,0.250000,0,0);}
.m2b_c01119{transform:matrix(0.276251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276251,0.000000,0.000000,0.250000,0,0);}
.m20_c01119{transform:matrix(0.276320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276320,0.000000,0.000000,0.250000,0,0);}
.m7f_c01119{transform:matrix(0.276366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276366,0.000000,0.000000,0.250000,0,0);}
.m11_c01119{transform:matrix(0.276500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276500,0.000000,0.000000,0.250000,0,0);}
.m33_c01119{transform:matrix(0.276570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276570,0.000000,0.000000,0.250000,0,0);}
.m63_c01119{transform:matrix(0.276661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276661,0.000000,0.000000,0.250000,0,0);}
.m4a_c01119{transform:matrix(0.277050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277050,0.000000,0.000000,0.250000,0,0);}
.m19_c01119{transform:matrix(0.277493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277493,0.000000,0.000000,0.250000,0,0);}
.m32_c01119{transform:matrix(0.277572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277572,0.000000,0.000000,0.250000,0,0);}
.m3e_c01119{transform:matrix(0.277864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277864,0.000000,0.000000,0.250000,0,0);}
.m69_c01119{transform:matrix(0.278151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278151,0.000000,0.000000,0.250000,0,0);}
.m45_c01119{transform:matrix(0.278652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278652,0.000000,0.000000,0.250000,0,0);}
.md_c01119{transform:matrix(0.279334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279334,0.000000,0.000000,0.250000,0,0);}
.m6d_c01119{transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279397,0.000000,0.000000,0.250000,0,0);}
.m3a_c01119{transform:matrix(0.281616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281616,0.000000,0.000000,0.250000,0,0);}
.m1a_c01119{transform:matrix(0.281626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281626,0.000000,0.000000,0.250000,0,0);}
.ma_c01119{transform:matrix(0.282050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282050,0.000000,0.000000,0.250000,0,0);}
.m38_c01119{transform:matrix(0.282963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282963,0.000000,0.000000,0.250000,0,0);}
.m9_c01119{transform:matrix(0.283542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283542,0.000000,0.000000,0.250000,0,0);}
.m53_c01119{transform:matrix(0.283875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283875,0.000000,0.000000,0.250000,0,0);}
.m71_c01119{transform:matrix(0.283988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283988,0.000000,0.000000,0.250000,0,0);}
.m58_c01119{transform:matrix(0.284811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284811,0.000000,0.000000,0.250000,0,0);}
.m2a_c01119{transform:matrix(0.287656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287656,0.000000,0.000000,0.250000,0,0);}
.m60_c01119{transform:matrix(0.288011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288011,0.000000,0.000000,0.250000,0,0);}
.m46_c01119{transform:matrix(0.288242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288242,0.000000,0.000000,0.250000,0,0);}
.m7c_c01119{transform:matrix(0.288573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288573,0.000000,0.000000,0.250000,0,0);}
.m12_c01119{transform:matrix(0.288772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288772,0.000000,0.000000,0.250000,0,0);}
.m18_c01119{transform:matrix(0.289490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289490,0.000000,0.000000,0.250000,0,0);}
.m54_c01119{transform:matrix(0.290194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290194,0.000000,0.000000,0.250000,0,0);}
.m3f_c01119{transform:matrix(0.291142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291142,0.000000,0.000000,0.250000,0,0);}
.m7_c01119{transform:matrix(0.291173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291173,0.000000,0.000000,0.250000,0,0);}
.mf_c01119{transform:matrix(0.291540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291540,0.000000,0.000000,0.250000,0,0);}
.m3_c01119{transform:matrix(0.291989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291989,0.000000,0.000000,0.250000,0,0);}
.mb_c01119{transform:matrix(0.292071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292071,0.000000,0.000000,0.250000,0,0);}
.m8_c01119{transform:matrix(0.292916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292916,0.000000,0.000000,0.250000,0,0);}
.m43_c01119{transform:matrix(0.295577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295577,0.000000,0.000000,0.250000,0,0);}
.m2_c01119{transform:matrix(0.295959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295959,0.000000,0.000000,0.250000,0,0);}
.m64_c01119{transform:matrix(0.296397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296397,0.000000,0.000000,0.250000,0,0);}
.m7a_c01119{transform:matrix(0.296701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296701,0.000000,0.000000,0.250000,0,0);}
.m6a_c01119{transform:matrix(0.297061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297061,0.000000,0.000000,0.250000,0,0);}
.m49_c01119{transform:matrix(0.297930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297930,0.000000,0.000000,0.250000,0,0);}
.m21_c01119{transform:matrix(0.298351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298351,0.000000,0.000000,0.250000,0,0);}
.m67_c01119{transform:matrix(0.301432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301432,0.000000,0.000000,0.250000,0,0);}
.m78_c01119{transform:matrix(0.301569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301569,0.000000,0.000000,0.250000,0,0);}
.m15_c01119{transform:matrix(0.301582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301582,0.000000,0.000000,0.250000,0,0);}
.m7d_c01119{transform:matrix(0.301623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301623,0.000000,0.000000,0.250000,0,0);}
.m1_c01119{transform:matrix(0.301768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301768,0.000000,0.000000,0.250000,0,0);}
.m1e_c01119{transform:matrix(0.301956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301956,0.000000,0.000000,0.250000,0,0);}
.m77_c01119{transform:matrix(0.302831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302831,0.000000,0.000000,0.250000,0,0);}
.m4d_c01119{transform:matrix(0.302857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302857,0.000000,0.000000,0.250000,0,0);}
.m37_c01119{transform:matrix(0.303213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303213,0.000000,0.000000,0.250000,0,0);}
.m83_c01119{transform:matrix(0.304208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304208,0.000000,0.000000,0.250000,0,0);}
.m5c_c01119{transform:matrix(0.305980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305980,0.000000,0.000000,0.250000,0,0);}
.m59_c01119{transform:matrix(0.307479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307479,0.000000,0.000000,0.250000,0,0);}
.m1c_c01119{transform:matrix(0.308749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308749,0.000000,0.000000,0.250000,0,0);}
.m5_c01119{transform:matrix(0.309269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309269,0.000000,0.000000,0.250000,0,0);}
.m62_c01119{transform:matrix(0.309794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309794,0.000000,0.000000,0.250000,0,0);}
.m4_c01119{transform:matrix(0.310162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310162,0.000000,0.000000,0.250000,0,0);}
.m42_c01119{transform:matrix(0.311109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311109,0.000000,0.000000,0.250000,0,0);}
.m34_c01119{transform:matrix(0.312338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312338,0.000000,0.000000,0.250000,0,0);}
.m25_c01119{transform:matrix(0.312657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312657,0.000000,0.000000,0.250000,0,0);}
.m10_c01119{transform:matrix(0.312835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312835,0.000000,0.000000,0.250000,0,0);}
.m4b_c01119{transform:matrix(0.313361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313361,0.000000,0.000000,0.250000,0,0);}
.m5d_c01119{transform:matrix(0.313666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313666,0.000000,0.000000,0.250000,0,0);}
.m68_c01119{transform:matrix(0.316526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316526,0.000000,0.000000,0.250000,0,0);}
.m3b_c01119{transform:matrix(0.316699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316699,0.000000,0.000000,0.250000,0,0);}
.m23_c01119{transform:matrix(0.318936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318936,0.000000,0.000000,0.250000,0,0);}
.m6e_c01119{transform:matrix(0.321800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321800,0.000000,0.000000,0.250000,0,0);}
.m7e_c01119{transform:matrix(0.323828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323828,0.000000,0.000000,0.250000,0,0);}
.m35_c01119{transform:matrix(0.324062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324062,0.000000,0.000000,0.250000,0,0);}
.m79_c01119{transform:matrix(0.325671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325671,0.000000,0.000000,0.250000,0,0);}
.m41_c01119{transform:matrix(0.326036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326036,0.000000,0.000000,0.250000,0,0);}
.m4e_c01119{transform:matrix(0.326637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326637,0.000000,0.000000,0.250000,0,0);}
.m28_c01119{transform:matrix(0.326723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326723,0.000000,0.000000,0.250000,0,0);}
.m61_c01119{transform:matrix(0.327649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327649,0.000000,0.000000,0.250000,0,0);}
.m17_c01119{transform:matrix(0.328004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328004,0.000000,0.000000,0.250000,0,0);}
.m2f_c01119{transform:matrix(0.330684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330684,0.000000,0.000000,0.250000,0,0);}
.m6_c01119{transform:matrix(0.331485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331485,0.000000,0.000000,0.250000,0,0);}
.m52_c01119{transform:matrix(0.331547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331547,0.000000,0.000000,0.250000,0,0);}
.m4f_c01119{transform:matrix(0.333811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333811,0.000000,0.000000,0.250000,0,0);}
.m2d_c01119{transform:matrix(0.334067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334067,0.000000,0.000000,0.250000,0,0);}
.m44_c01119{transform:matrix(0.336538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336538,0.000000,0.000000,0.250000,0,0);}
.m26_c01119{transform:matrix(0.356153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356153,0.000000,0.000000,0.250000,0,0);}
.m3d_c01119{transform:matrix(0.373305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373305,0.000000,0.000000,0.250000,0,0);}
.m1d_c01119{transform:matrix(0.386413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386413,0.000000,0.000000,0.250000,0,0);}
.m81_c01119{transform:matrix(0.392451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392451,0.000000,0.000000,0.250000,0,0);}
.m85_c01119{transform:matrix(0.394026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394026,0.000000,0.000000,0.250000,0,0);}
.m76_c01119{transform:matrix(0.398488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398488,0.000000,0.000000,0.250000,0,0);}
.m50_c01119{transform:matrix(0.400630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400630,0.000000,0.000000,0.250000,0,0);}
.m40_c01119{transform:matrix(0.465929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465929,0.000000,0.000000,0.250000,0,0);}
.v0_c01119{vertical-align:0.000000px;}
.ls16_c01119{letter-spacing:-3.465000px;}
.ls19_c01119{letter-spacing:-3.063067px;}
.ls6_c01119{letter-spacing:-2.737350px;}
.lsa_c01119{letter-spacing:-2.432430px;}
.ls15_c01119{letter-spacing:-1.954267px;}
.ls8_c01119{letter-spacing:-1.048014px;}
.ls14_c01119{letter-spacing:-0.242451px;}
.ls2_c01119{letter-spacing:0.000000px;}
.ls1_c01119{letter-spacing:0.078210px;}
.lsf_c01119{letter-spacing:1.494900px;}
.ls1c_c01119{letter-spacing:1.633742px;}
.ls1d_c01119{letter-spacing:2.145949px;}
.lsd_c01119{letter-spacing:2.377584px;}
.ls1a_c01119{letter-spacing:2.940696px;}
.lsb_c01119{letter-spacing:3.474900px;}
.ls3_c01119{letter-spacing:3.583810px;}
.ls11_c01119{letter-spacing:3.603610px;}
.lsc_c01119{letter-spacing:3.663000px;}
.ls1b_c01119{letter-spacing:3.672900px;}
.ls4_c01119{letter-spacing:3.910500px;}
.ls10_c01119{letter-spacing:4.078810px;}
.ls12_c01119{letter-spacing:4.118400px;}
.ls1f_c01119{letter-spacing:4.296610px;}
.ls7_c01119{letter-spacing:4.316400px;}
.ls0_c01119{letter-spacing:6.726060px;}
.ls9_c01119{letter-spacing:51.321798px;}
.ls17_c01119{letter-spacing:54.172998px;}
.lse_c01119{letter-spacing:59.875398px;}
.ls5_c01119{letter-spacing:61.300998px;}
.ls18_c01119{letter-spacing:65.577798px;}
.ls1e_c01119{letter-spacing:67.003200px;}
.ls13_c01119{letter-spacing:68.428998px;}
.sc__c01119{text-shadow:none;}
.sc0_c01119{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01119{-webkit-text-stroke:0px transparent;}
.sc0_c01119{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01119{word-spacing:-18.504486px;}
.ws1_c01119{word-spacing:0.000000px;}
._0_c01119{width:6.976332px;}
._2_c01119{width:12.161160px;}
._1_c01119{width:27.212130px;}
.fc0_c01119{color:transparent;}
.fs5_c01119{font-size:22.176000px;}
.fs18_c01119{font-size:27.522000px;}
.fs1_c01119{font-size:27.720000px;}
.fsc_c01119{font-size:29.898000px;}
.fs0_c01119{font-size:33.264000px;}
.fs15_c01119{font-size:44.352000px;}
.fs22_c01119{font-size:49.896198px;}
.fs16_c01119{font-size:50.688000px;}
.fs8_c01119{font-size:51.321798px;}
.fsd_c01119{font-size:51.876198px;}
.fs1a_c01119{font-size:54.172998px;}
.fs17_c01119{font-size:55.836198px;}
.fsa_c01119{font-size:59.875398px;}
.fs4_c01119{font-size:61.300998px;}
.fs14_c01119{font-size:62.568000px;}
.fs12_c01119{font-size:63.162000px;}
.fs1b_c01119{font-size:65.577798px;}
.fs20_c01119{font-size:67.003200px;}
.fs11_c01119{font-size:68.428998px;}
.fs9_c01119{font-size:69.498000px;}
.fsb_c01119{font-size:70.092198px;}
.fs2_c01119{font-size:71.676198px;}
.fsf_c01119{font-size:72.072198px;}
.fs7_c01119{font-size:73.260000px;}
.fs1d_c01119{font-size:73.458000px;}
.fs13_c01119{font-size:73.656198px;}
.fs1e_c01119{font-size:75.636198px;}
.fs3_c01119{font-size:78.210000px;}
.fs1f_c01119{font-size:78.606198px;}
.fse_c01119{font-size:81.576198px;}
.fs10_c01119{font-size:82.368000px;}
.fs21_c01119{font-size:85.932198px;}
.fs6_c01119{font-size:86.328000px;}
.fs1c_c01119{font-size:87.516198px;}
.fs19_c01119{font-size:99.000000px;}
.y25_c01119{bottom:-1.513665px;}
.y0_c01119{bottom:0.000000px;}
.y1_c01119{bottom:76.500000px;}
.y24_c01119{bottom:82.596735px;}
.y22_c01119{bottom:149.956335px;}
.y23_c01119{bottom:177.755535px;}
.y21_c01119{bottom:216.598185px;}
.y20_c01119{bottom:281.824335px;}
.y1f_c01119{bottom:313.187535px;}
.y1e_c01119{bottom:376.983135px;}
.y1c_c01119{bottom:381.967785px;}
.y1d_c01119{bottom:391.235819px;}
.y15_c01119{bottom:409.410585px;}
.y14_c01119{bottom:441.847935px;}
.y13_c01119{bottom:473.918985px;}
.y1b_c01119{bottom:494.951535px;}
.y12_c01119{bottom:506.356335px;}
.y1a_c01119{bottom:525.953385px;}
.y19_c01119{bottom:526.671135px;}
.y11_c01119{bottom:571.577535px;}
.y10_c01119{bottom:602.227935px;}
.yc_c01119{bottom:609.352470px;}
.yf_c01119{bottom:633.947535px;}
.ye_c01119{bottom:666.379935px;}
.yd_c01119{bottom:697.743135px;}
.yb_c01119{bottom:704.509785px;}
.ya_c01119{bottom:730.531935px;}
.y2_c01119{bottom:737.298585px;}
.y9_c01119{bottom:795.753135px;}
.y8_c01119{bottom:828.541935px;}
.y7_c01119{bottom:892.688985px;}
.y6_c01119{bottom:925.126335px;}
.y18_c01119{bottom:933.318585px;}
.y17_c01119{bottom:942.589935px;}
.y16_c01119{bottom:1035.605385px;}
.y5_c01119{bottom:1063.760985px;}
.y4_c01119{bottom:1071.601785px;}
.y3_c01119{bottom:1097.618985px;}
.h7_c01119{height:23.128875px;}
.h1b_c01119{height:27.011338px;}
.h3_c01119{height:28.911094px;}
.he_c01119{height:31.182680px;}
.h9_c01119{height:34.180317px;}
.h2_c01119{height:34.693313px;}
.h1d_c01119{height:36.079217px;}
.hc_c01119{height:39.877015px;}
.h6_c01119{height:40.826465px;}
.h1e_c01119{height:43.674813px;}
.h23_c01119{height:44.624131px;}
.h13_c01119{height:45.573713px;}
.h17_c01119{height:46.257750px;}
.hf_c01119{height:50.913651px;}
.h25_c01119{height:52.040175px;}
.h18_c01119{height:52.866000px;}
.h1a_c01119{height:54.800175px;}
.h19_c01119{height:58.235410px;}
.h14_c01119{height:61.990049px;}
.h16_c01119{height:65.256469px;}
.ha_c01119{height:68.208486px;}
.hb_c01119{height:71.900684px;}
.h20_c01119{height:72.095010px;}
.hd_c01119{height:73.103972px;}
.h21_c01119{height:74.232792px;}
.h4_c01119{height:74.756035px;}
.h11_c01119{height:75.169050px;}
.h5_c01119{height:76.758838px;}
.h15_c01119{height:76.821113px;}
.h22_c01119{height:77.147685px;}
.h10_c01119{height:80.062577px;}
.h12_c01119{height:80.839688px;}
.h24_c01119{height:84.295794px;}
.h8_c01119{height:84.726211px;}
.h1f_c01119{height:85.892362px;}
.h1c_c01119{height:97.163086px;}
.h1_c01119{height:1110.000000px;}
.h0_c01119{height:1263.000000px;}
.w1_c01119{width:775.500000px;}
.w0_c01119{width:892.500000px;}
.x2_c01119{left:-1.567515px;}
.x0_c01119{left:0.000000px;}
.x1_c01119{left:58.500000px;}
.x3f_c01119{left:84.790185px;}
.x11_c01119{left:85.869285px;}
.x21_c01119{left:107.891835px;}
.x22_c01119{left:117.155859px;}
.x3b_c01119{left:140.032185px;}
.x6_c01119{left:141.660735px;}
.x23_c01119{left:143.051685px;}
.x24_c01119{left:163.450635px;}
.x3c_c01119{left:165.470235px;}
.x46_c01119{left:174.751485px;}
.x4e_c01119{left:186.497835px;}
.x7_c01119{left:187.908585px;}
.x12_c01119{left:197.788785px;}
.x59_c01119{left:207.659085px;}
.x1c_c01119{left:209.302485px;}
.x19_c01119{left:219.049035px;}
.x25_c01119{left:242.497185px;}
.x5d_c01119{left:252.322935px;}
.x2a_c01119{left:253.743585px;}
.x2f_c01119{left:263.321835px;}
.xd_c01119{left:264.742485px;}
.x26_c01119{left:274.984035px;}
.x58_c01119{left:286.329435px;}
.x13_c01119{left:287.730285px;}
.x5a_c01119{left:296.051235px;}
.x3d_c01119{left:297.179835px;}
.x40_c01119{left:307.431285px;}
.x30_c01119{left:317.133285px;}
.x57_c01119{left:319.098435px;}
.x5b_c01119{left:321.330885px;}
.x8_c01119{left:331.042785px;}
.xe_c01119{left:340.997235px;}
.x27_c01119{left:342.239685px;}
.x14_c01119{left:353.293035px;}
.x3e_c01119{left:355.659135px;}
.x5_c01119{left:360.198285px;}
.x31_c01119{left:364.336485px;}
.x36_c01119{left:374.434485px;}
.x1d_c01119{left:375.785835px;}
.x41_c01119{left:385.349235px;}
.x28_c01119{left:386.839185px;}
.x15_c01119{left:398.229135px;}
.xf_c01119{left:409.158735px;}
.x3_c01119{left:418.291485px;}
.x2b_c01119{left:419.345835px;}
.x4f_c01119{left:429.691335px;}
.x2c_c01119{left:431.884185px;}
.x47_c01119{left:441.655485px;}
.x32_c01119{left:442.724685px;}
.x55_c01119{left:443.843385px;}
.x10_c01119{left:452.525685px;}
.x4a_c01119{left:464.875935px;}
.x1a_c01119{left:473.894835px;}
.x16_c01119{left:475.671885px;}
.x50_c01119{left:495.699585px;}
.x5c_c01119{left:497.258835px;}
.x42_c01119{left:499.233885px;}
.x9_c01119{left:507.356835px;}
.x48_c01119{left:508.574535px;}
.x1e_c01119{left:519.776385px;}
.x2d_c01119{left:530.498085px;}
.x4b_c01119{left:539.898135px;}
.x33_c01119{left:541.150485px;}
.x43_c01119{left:542.175135px;}
.x1f_c01119{left:551.233635px;}
.x1b_c01119{left:562.326585px;}
.x37_c01119{left:570.098085px;}
.x34_c01119{left:573.082935px;}
.x17_c01119{left:584.720385px;}
.xa_c01119{left:586.408335px;}
.xb_c01119{left:607.470585px;}
.x38_c01119{left:618.801135px;}
.x20_c01119{left:628.918935px;}
.x2e_c01119{left:632.245335px;}
.x44_c01119{left:641.482035px;}
.x49_c01119{left:650.015835px;}
.x18_c01119{left:651.990885px;}
.x35_c01119{left:662.474985px;}
.x4c_c01119{left:672.899685px;}
.x39_c01119{left:674.082735px;}
.xc_c01119{left:683.720385px;}
.x45_c01119{left:695.887485px;}
.x51_c01119{left:706.168635px;}
.x3a_c01119{left:707.237835px;}
.x4_c01119{left:709.638585px;}
.x29_c01119{left:718.251585px;}
.x4d_c01119{left:744.808335px;}
.x52_c01119{left:760.702785px;}
.x53_c01119{left:762.227385px;}
.x5f_c01119{left:763.286685px;}
.x54_c01119{left:766.073535px;}
.x56_c01119{left:767.078385px;}
.x5e_c01119{left:769.498935px;}
@media print{
.v0_c01119{vertical-align:0.000000pt;}
.ls16_c01119{letter-spacing:-3.080000pt;}
.ls19_c01119{letter-spacing:-2.722726pt;}
.ls6_c01119{letter-spacing:-2.433200pt;}
.lsa_c01119{letter-spacing:-2.162160pt;}
.ls15_c01119{letter-spacing:-1.737126pt;}
.ls8_c01119{letter-spacing:-0.931568pt;}
.ls14_c01119{letter-spacing:-0.215512pt;}
.ls2_c01119{letter-spacing:0.000000pt;}
.ls1_c01119{letter-spacing:0.069520pt;}
.lsf_c01119{letter-spacing:1.328800pt;}
.ls1c_c01119{letter-spacing:1.452215pt;}
.ls1d_c01119{letter-spacing:1.907510pt;}
.lsd_c01119{letter-spacing:2.113408pt;}
.ls1a_c01119{letter-spacing:2.613952pt;}
.lsb_c01119{letter-spacing:3.088800pt;}
.ls3_c01119{letter-spacing:3.185609pt;}
.ls11_c01119{letter-spacing:3.203209pt;}
.lsc_c01119{letter-spacing:3.256000pt;}
.ls1b_c01119{letter-spacing:3.264800pt;}
.ls4_c01119{letter-spacing:3.476000pt;}
.ls10_c01119{letter-spacing:3.625609pt;}
.ls12_c01119{letter-spacing:3.660800pt;}
.ls1f_c01119{letter-spacing:3.819209pt;}
.ls7_c01119{letter-spacing:3.836800pt;}
.ls0_c01119{letter-spacing:5.978720pt;}
.ls9_c01119{letter-spacing:45.619376pt;}
.ls17_c01119{letter-spacing:48.153776pt;}
.lse_c01119{letter-spacing:53.222576pt;}
.ls5_c01119{letter-spacing:54.489776pt;}
.ls18_c01119{letter-spacing:58.291376pt;}
.ls1e_c01119{letter-spacing:59.558400pt;}
.ls13_c01119{letter-spacing:60.825776pt;}
.ws0_c01119{word-spacing:-16.448432pt;}
.ws1_c01119{word-spacing:0.000000pt;}
._0_c01119{width:6.201184pt;}
._2_c01119{width:10.809920pt;}
._1_c01119{width:24.188560pt;}
.fs5_c01119{font-size:19.712000pt;}
.fs18_c01119{font-size:24.464000pt;}
.fs1_c01119{font-size:24.640000pt;}
.fsc_c01119{font-size:26.576000pt;}
.fs0_c01119{font-size:29.568000pt;}
.fs15_c01119{font-size:39.424000pt;}
.fs22_c01119{font-size:44.352176pt;}
.fs16_c01119{font-size:45.056000pt;}
.fs8_c01119{font-size:45.619376pt;}
.fsd_c01119{font-size:46.112176pt;}
.fs1a_c01119{font-size:48.153776pt;}
.fs17_c01119{font-size:49.632176pt;}
.fsa_c01119{font-size:53.222576pt;}
.fs4_c01119{font-size:54.489776pt;}
.fs14_c01119{font-size:55.616000pt;}
.fs12_c01119{font-size:56.144000pt;}
.fs1b_c01119{font-size:58.291376pt;}
.fs20_c01119{font-size:59.558400pt;}
.fs11_c01119{font-size:60.825776pt;}
.fs9_c01119{font-size:61.776000pt;}
.fsb_c01119{font-size:62.304176pt;}
.fs2_c01119{font-size:63.712176pt;}
.fsf_c01119{font-size:64.064176pt;}
.fs7_c01119{font-size:65.120000pt;}
.fs1d_c01119{font-size:65.296000pt;}
.fs13_c01119{font-size:65.472176pt;}
.fs1e_c01119{font-size:67.232176pt;}
.fs3_c01119{font-size:69.520000pt;}
.fs1f_c01119{font-size:69.872176pt;}
.fse_c01119{font-size:72.512176pt;}
.fs10_c01119{font-size:73.216000pt;}
.fs21_c01119{font-size:76.384176pt;}
.fs6_c01119{font-size:76.736000pt;}
.fs1c_c01119{font-size:77.792176pt;}
.fs19_c01119{font-size:88.000000pt;}
.y25_c01119{bottom:-1.345480pt;}
.y0_c01119{bottom:0.000000pt;}
.y1_c01119{bottom:68.000000pt;}
.y24_c01119{bottom:73.419320pt;}
.y22_c01119{bottom:133.294520pt;}
.y23_c01119{bottom:158.004920pt;}
.y21_c01119{bottom:192.531720pt;}
.y20_c01119{bottom:250.510520pt;}
.y1f_c01119{bottom:278.388920pt;}
.y1e_c01119{bottom:335.096120pt;}
.y1c_c01119{bottom:339.526920pt;}
.y1d_c01119{bottom:347.765172pt;}
.y15_c01119{bottom:363.920520pt;}
.y14_c01119{bottom:392.753720pt;}
.y13_c01119{bottom:421.261320pt;}
.y1b_c01119{bottom:439.956920pt;}
.y12_c01119{bottom:450.094520pt;}
.y1a_c01119{bottom:467.514120pt;}
.y19_c01119{bottom:468.152120pt;}
.y11_c01119{bottom:508.068920pt;}
.y10_c01119{bottom:535.313720pt;}
.yc_c01119{bottom:541.646640pt;}
.yf_c01119{bottom:563.508920pt;}
.ye_c01119{bottom:592.337720pt;}
.yd_c01119{bottom:620.216120pt;}
.yb_c01119{bottom:626.230920pt;}
.ya_c01119{bottom:649.361720pt;}
.y2_c01119{bottom:655.376520pt;}
.y9_c01119{bottom:707.336120pt;}
.y8_c01119{bottom:736.481720pt;}
.y7_c01119{bottom:793.501320pt;}
.y6_c01119{bottom:822.334520pt;}
.y18_c01119{bottom:829.616520pt;}
.y17_c01119{bottom:837.857720pt;}
.y16_c01119{bottom:920.538120pt;}
.y5_c01119{bottom:945.565320pt;}
.y4_c01119{bottom:952.534920pt;}
.y3_c01119{bottom:975.661320pt;}
.h7_c01119{height:20.559000pt;}
.h1b_c01119{height:24.010078pt;}
.h3_c01119{height:25.698750pt;}
.he_c01119{height:27.717938pt;}
.h9_c01119{height:30.382504pt;}
.h2_c01119{height:30.838500pt;}
.h1d_c01119{height:32.070415pt;}
.hc_c01119{height:35.446236pt;}
.h6_c01119{height:36.290191pt;}
.h1e_c01119{height:38.822056pt;}
.h23_c01119{height:39.665894pt;}
.h13_c01119{height:40.509967pt;}
.h17_c01119{height:41.118000pt;}
.hf_c01119{height:45.256579pt;}
.h25_c01119{height:46.257934pt;}
.h18_c01119{height:46.992000pt;}
.h1a_c01119{height:48.711266pt;}
.h19_c01119{height:51.764809pt;}
.h14_c01119{height:55.102266pt;}
.h16_c01119{height:58.005750pt;}
.ha_c01119{height:60.629766pt;}
.hb_c01119{height:63.911719pt;}
.h20_c01119{height:64.084453pt;}
.hd_c01119{height:64.981309pt;}
.h21_c01119{height:65.984704pt;}
.h4_c01119{height:66.449809pt;}
.h11_c01119{height:66.816934pt;}
.h5_c01119{height:68.230078pt;}
.h15_c01119{height:68.285434pt;}
.h22_c01119{height:68.575720pt;}
.h10_c01119{height:71.166735pt;}
.h12_c01119{height:71.857500pt;}
.h24_c01119{height:74.929595pt;}
.h8_c01119{height:75.312188pt;}
.h1f_c01119{height:76.348766pt;}
.h1c_c01119{height:86.367188pt;}
.h1_c01119{height:986.666667pt;}
.h0_c01119{height:1122.666667pt;}
.w1_c01119{width:689.333333pt;}
.w0_c01119{width:793.333333pt;}
.x2_c01119{left:-1.393347pt;}
.x0_c01119{left:0.000000pt;}
.x1_c01119{left:52.000000pt;}
.x3f_c01119{left:75.369053pt;}
.x11_c01119{left:76.328253pt;}
.x21_c01119{left:95.903853pt;}
.x22_c01119{left:104.138541pt;}
.x3b_c01119{left:124.473053pt;}
.x6_c01119{left:125.920653pt;}
.x23_c01119{left:127.157053pt;}
.x24_c01119{left:145.289453pt;}
.x3c_c01119{left:147.084653pt;}
.x46_c01119{left:155.334653pt;}
.x4e_c01119{left:165.775853pt;}
.x7_c01119{left:167.029853pt;}
.x12_c01119{left:175.812253pt;}
.x59_c01119{left:184.585853pt;}
.x1c_c01119{left:186.046653pt;}
.x19_c01119{left:194.710253pt;}
.x25_c01119{left:215.553053pt;}
.x5d_c01119{left:224.287053pt;}
.x2a_c01119{left:225.549853pt;}
.x2f_c01119{left:234.063853pt;}
.xd_c01119{left:235.326653pt;}
.x26_c01119{left:244.430253pt;}
.x58_c01119{left:254.515053pt;}
.x13_c01119{left:255.760253pt;}
.x5a_c01119{left:263.156653pt;}
.x3d_c01119{left:264.159853pt;}
.x40_c01119{left:273.272253pt;}
.x30_c01119{left:281.896253pt;}
.x57_c01119{left:283.643053pt;}
.x5b_c01119{left:285.627453pt;}
.x8_c01119{left:294.260253pt;}
.xe_c01119{left:303.108653pt;}
.x27_c01119{left:304.213053pt;}
.x14_c01119{left:314.038253pt;}
.x3e_c01119{left:316.141453pt;}
.x5_c01119{left:320.176253pt;}
.x31_c01119{left:323.854653pt;}
.x36_c01119{left:332.830653pt;}
.x1d_c01119{left:334.031853pt;}
.x41_c01119{left:342.532653pt;}
.x28_c01119{left:343.857053pt;}
.x15_c01119{left:353.981453pt;}
.xf_c01119{left:363.696653pt;}
.x3_c01119{left:371.814653pt;}
.x2b_c01119{left:372.751853pt;}
.x4f_c01119{left:381.947853pt;}
.x2c_c01119{left:383.897053pt;}
.x47_c01119{left:392.582653pt;}
.x32_c01119{left:393.533053pt;}
.x55_c01119{left:394.527453pt;}
.x10_c01119{left:402.245053pt;}
.x4a_c01119{left:413.223053pt;}
.x1a_c01119{left:421.239853pt;}
.x16_c01119{left:422.819453pt;}
.x50_c01119{left:440.621853pt;}
.x5c_c01119{left:442.007853pt;}
.x42_c01119{left:443.763453pt;}
.x9_c01119{left:450.983853pt;}
.x48_c01119{left:452.066253pt;}
.x1e_c01119{left:462.023453pt;}
.x2d_c01119{left:471.553853pt;}
.x4b_c01119{left:479.909453pt;}
.x33_c01119{left:481.022653pt;}
.x43_c01119{left:481.933453pt;}
.x1f_c01119{left:489.985453pt;}
.x1b_c01119{left:499.845853pt;}
.x37_c01119{left:506.753853pt;}
.x34_c01119{left:509.407053pt;}
.x17_c01119{left:519.751453pt;}
.xa_c01119{left:521.251853pt;}
.xb_c01119{left:539.973853pt;}
.x38_c01119{left:550.045453pt;}
.x20_c01119{left:559.039053pt;}
.x2e_c01119{left:561.995853pt;}
.x44_c01119{left:570.206253pt;}
.x49_c01119{left:577.791853pt;}
.x18_c01119{left:579.547453pt;}
.x35_c01119{left:588.866653pt;}
.x4c_c01119{left:598.133053pt;}
.x39_c01119{left:599.184653pt;}
.xc_c01119{left:607.751453pt;}
.x45_c01119{left:618.566653pt;}
.x51_c01119{left:627.705453pt;}
.x3a_c01119{left:628.655853pt;}
.x4_c01119{left:630.789853pt;}
.x29_c01119{left:638.445853pt;}
.x4d_c01119{left:662.051853pt;}
.x52_c01119{left:676.180253pt;}
.x53_c01119{left:677.535453pt;}
.x5f_c01119{left:678.477053pt;}
.x54_c01119{left:680.954253pt;}
.x56_c01119{left:681.847453pt;}
.x5e_c01119{left:683.999053pt;}
}





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

.ir_c01120:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01120{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01120;src:url('chunks/assets/font_433624879d77e7e01490b1cb.woff2')format("woff");}.ff1_c01120{font-family:ff1_c01120;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01120;src:url('chunks/assets/font_875bb6f913dd4adbd98dfd26.woff2')format("woff");}.ff2_c01120{font-family:ff2_c01120;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01120;src:url('chunks/assets/font_806213df39102039225baece.woff2')format("woff");}.ff3_c01120{font-family:ff3_c01120;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01120;src:url('chunks/assets/font_38aee07d5ee77f64861db962.woff2')format("woff");}.ff4_c01120{font-family:ff4_c01120;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m16_c01120{transform:matrix(0.022223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.022223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.022223,0.000000,0.000000,0.250000,0,0);}
.m83_c01120{transform:matrix(0.031251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.031251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.031251,0.000000,0.000000,0.250000,0,0);}
.m87_c01120{transform:matrix(0.037501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.037501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.037501,0.000000,0.000000,0.250000,0,0);}
.m88_c01120{transform:matrix(0.071876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071876,0.000000,0.000000,0.250000,0,0);}
.m81_c01120{transform:matrix(0.081251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081251,0.000000,0.000000,0.250000,0,0);}
.m86_c01120{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);}
.m8a_c01120{transform:matrix(0.091667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091667,0.000000,0.000000,0.250000,0,0);}
.m84_c01120{transform:matrix(0.092968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092968,0.000000,0.000000,0.250000,0,0);}
.m82_c01120{transform:matrix(0.104166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104166,0.000000,0.000000,0.250000,0,0);}
.m17_c01120{transform:matrix(0.138889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138889,0.000000,0.000000,0.250000,0,0);}
.m69_c01120{transform:matrix(0.144928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144928,0.000000,0.000000,0.250000,0,0);}
.m8b_c01120{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m19_c01120{transform:matrix(0.169552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169552,0.000000,0.000000,0.250000,0,0);}
.m5_c01120{transform:matrix(0.174648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174648,0.000000,0.000000,0.250000,0,0);}
.m89_c01120{transform:matrix(0.174999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174999,0.000000,0.000000,0.250000,0,0);}
.m8c_c01120{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m7b_c01120{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.maf_c01120{transform:matrix(0.192800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192800,0.000000,0.000000,0.250000,0,0);}
.m85_c01120{transform:matrix(0.204681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204681,0.000000,0.000000,0.250000,0,0);}
.m15_c01120{transform:matrix(0.214789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214789,0.000000,0.000000,0.250000,0,0);}
.m4b_c01120{transform:matrix(0.224574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224574,0.000000,0.000000,0.250000,0,0);}
.mb_c01120{transform:matrix(0.225242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225242,0.000000,0.000000,0.250000,0,0);}
.m91_c01120{transform:matrix(0.244512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244512,0.000000,0.000000,0.250000,0,0);}
.m6a_c01120{transform:matrix(0.249397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249397,0.000000,0.000000,0.250000,0,0);}
.m1_c01120{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m5e_c01120{transform:matrix(0.251373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251373,0.000000,0.000000,0.250000,0,0);}
.m1f_c01120{transform:matrix(0.251768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251768,0.000000,0.000000,0.250000,0,0);}
.m13_c01120{transform:matrix(0.254103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254103,0.000000,0.000000,0.250000,0,0);}
.m73_c01120{transform:matrix(0.260071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260071,0.000000,0.000000,0.250000,0,0);}
.m7a_c01120{transform:matrix(0.265416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265416,0.000000,0.000000,0.250000,0,0);}
.m23_c01120{transform:matrix(0.267208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267208,0.000000,0.000000,0.250000,0,0);}
.m44_c01120{transform:matrix(0.268436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268436,0.000000,0.000000,0.250000,0,0);}
.m37_c01120{transform:matrix(0.268961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268961,0.000000,0.000000,0.250000,0,0);}
.m2f_c01120{transform:matrix(0.269374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269374,0.000000,0.000000,0.250000,0,0);}
.m20_c01120{transform:matrix(0.269772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269772,0.000000,0.000000,0.250000,0,0);}
.m6e_c01120{transform:matrix(0.270341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270341,0.000000,0.000000,0.250000,0,0);}
.m0_c01120{transform:matrix(0.272245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272245,0.000000,0.000000,0.250000,0,0);}
.m6b_c01120{transform:matrix(0.273900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273900,0.000000,0.000000,0.250000,0,0);}
.m5b_c01120{transform:matrix(0.274276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274276,0.000000,0.000000,0.250000,0,0);}
.m7_c01120{transform:matrix(0.274743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274743,0.000000,0.000000,0.250000,0,0);}
.ma9_c01120{transform:matrix(0.274939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274939,0.000000,0.000000,0.250000,0,0);}
.m25_c01120{transform:matrix(0.276574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276574,0.000000,0.000000,0.250000,0,0);}
.m22_c01120{transform:matrix(0.277227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277227,0.000000,0.000000,0.250000,0,0);}
.m39_c01120{transform:matrix(0.277241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277241,0.000000,0.000000,0.250000,0,0);}
.m59_c01120{transform:matrix(0.278760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278760,0.000000,0.000000,0.250000,0,0);}
.m12_c01120{transform:matrix(0.278792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278792,0.000000,0.000000,0.250000,0,0);}
.m1c_c01120{transform:matrix(0.280341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280341,0.000000,0.000000,0.250000,0,0);}
.m58_c01120{transform:matrix(0.281032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281032,0.000000,0.000000,0.250000,0,0);}
.m2a_c01120{transform:matrix(0.281426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281426,0.000000,0.000000,0.250000,0,0);}
.mb9_c01120{transform:matrix(0.281453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281453,0.000000,0.000000,0.250000,0,0);}
.mae_c01120{transform:matrix(0.281865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281865,0.000000,0.000000,0.250000,0,0);}
.m5a_c01120{transform:matrix(0.282347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282347,0.000000,0.000000,0.250000,0,0);}
.m31_c01120{transform:matrix(0.282814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282814,0.000000,0.000000,0.250000,0,0);}
.m52_c01120{transform:matrix(0.283683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283683,0.000000,0.000000,0.250000,0,0);}
.m77_c01120{transform:matrix(0.284068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284068,0.000000,0.000000,0.250000,0,0);}
.m7f_c01120{transform:matrix(0.284215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284215,0.000000,0.000000,0.250000,0,0);}
.m11_c01120{transform:matrix(0.284534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284534,0.000000,0.000000,0.250000,0,0);}
.m98_c01120{transform:matrix(0.284695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284695,0.000000,0.000000,0.250000,0,0);}
.me_c01120{transform:matrix(0.284851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284851,0.000000,0.000000,0.250000,0,0);}
.m74_c01120{transform:matrix(0.285101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285101,0.000000,0.000000,0.250000,0,0);}
.m43_c01120{transform:matrix(0.285172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285172,0.000000,0.000000,0.250000,0,0);}
.m2_c01120{transform:matrix(0.287303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287303,0.000000,0.000000,0.250000,0,0);}
.m92_c01120{transform:matrix(0.287526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287526,0.000000,0.000000,0.250000,0,0);}
.m33_c01120{transform:matrix(0.288655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288655,0.000000,0.000000,0.250000,0,0);}
.m1a_c01120{transform:matrix(0.288797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288797,0.000000,0.000000,0.250000,0,0);}
.m9b_c01120{transform:matrix(0.289440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289440,0.000000,0.000000,0.250000,0,0);}
.m3d_c01120{transform:matrix(0.289881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289881,0.000000,0.000000,0.250000,0,0);}
.ma_c01120{transform:matrix(0.290488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290488,0.000000,0.000000,0.250000,0,0);}
.m8f_c01120{transform:matrix(0.290741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290741,0.000000,0.000000,0.250000,0,0);}
.mb7_c01120{transform:matrix(0.291185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291185,0.000000,0.000000,0.250000,0,0);}
.m72_c01120{transform:matrix(0.292290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292290,0.000000,0.000000,0.250000,0,0);}
.m18_c01120{transform:matrix(0.292573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292573,0.000000,0.000000,0.250000,0,0);}
.m9d_c01120{transform:matrix(0.293020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293020,0.000000,0.000000,0.250000,0,0);}
.m90_c01120{transform:matrix(0.293064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293064,0.000000,0.000000,0.250000,0,0);}
.m75_c01120{transform:matrix(0.293428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293428,0.000000,0.000000,0.250000,0,0);}
.mb2_c01120{transform:matrix(0.293639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293639,0.000000,0.000000,0.250000,0,0);}
.ma7_c01120{transform:matrix(0.293930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293930,0.000000,0.000000,0.250000,0,0);}
.m10_c01120{transform:matrix(0.294813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294813,0.000000,0.000000,0.250000,0,0);}
.m60_c01120{transform:matrix(0.295120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295120,0.000000,0.000000,0.250000,0,0);}
.m42_c01120{transform:matrix(0.295207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295207,0.000000,0.000000,0.250000,0,0);}
.ma3_c01120{transform:matrix(0.295464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295464,0.000000,0.000000,0.250000,0,0);}
.m8d_c01120{transform:matrix(0.295515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295515,0.000000,0.000000,0.250000,0,0);}
.m36_c01120{transform:matrix(0.295916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295916,0.000000,0.000000,0.250000,0,0);}
.mb4_c01120{transform:matrix(0.297837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297837,0.000000,0.000000,0.250000,0,0);}
.m76_c01120{transform:matrix(0.297930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297930,0.000000,0.000000,0.250000,0,0);}
.m3b_c01120{transform:matrix(0.298158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298158,0.000000,0.000000,0.250000,0,0);}
.m2b_c01120{transform:matrix(0.298196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298196,0.000000,0.000000,0.250000,0,0);}
.m7d_c01120{transform:matrix(0.298540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298540,0.000000,0.000000,0.250000,0,0);}
.m95_c01120{transform:matrix(0.298850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298850,0.000000,0.000000,0.250000,0,0);}
.ma4_c01120{transform:matrix(0.299190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299190,0.000000,0.000000,0.250000,0,0);}
.m55_c01120{transform:matrix(0.299971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299971,0.000000,0.000000,0.250000,0,0);}
.m8e_c01120{transform:matrix(0.300162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300162,0.000000,0.000000,0.250000,0,0);}
.m6_c01120{transform:matrix(0.300268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300268,0.000000,0.000000,0.250000,0,0);}
.m14_c01120{transform:matrix(0.301253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301253,0.000000,0.000000,0.250000,0,0);}
.m5d_c01120{transform:matrix(0.301762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301762,0.000000,0.000000,0.250000,0,0);}
.m9f_c01120{transform:matrix(0.302085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302085,0.000000,0.000000,0.250000,0,0);}
.m6f_c01120{transform:matrix(0.303055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303055,0.000000,0.000000,0.250000,0,0);}
.mb5_c01120{transform:matrix(0.303272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303272,0.000000,0.000000,0.250000,0,0);}
.mab_c01120{transform:matrix(0.303361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303361,0.000000,0.000000,0.250000,0,0);}
.m65_c01120{transform:matrix(0.303658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303658,0.000000,0.000000,0.250000,0,0);}
.m96_c01120{transform:matrix(0.303810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303810,0.000000,0.000000,0.250000,0,0);}
.m4_c01120{transform:matrix(0.304573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304573,0.000000,0.000000,0.250000,0,0);}
.mb0_c01120{transform:matrix(0.305289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305289,0.000000,0.000000,0.250000,0,0);}
.m9_c01120{transform:matrix(0.305702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305702,0.000000,0.000000,0.250000,0,0);}
.m24_c01120{transform:matrix(0.305823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305823,0.000000,0.000000,0.250000,0,0);}
.m68_c01120{transform:matrix(0.306052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306052,0.000000,0.000000,0.250000,0,0);}
.m7e_c01120{transform:matrix(0.307360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307360,0.000000,0.000000,0.250000,0,0);}
.m63_c01120{transform:matrix(0.308187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308187,0.000000,0.000000,0.250000,0,0);}
.m4d_c01120{transform:matrix(0.308467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308467,0.000000,0.000000,0.250000,0,0);}
.m3a_c01120{transform:matrix(0.308839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308839,0.000000,0.000000,0.250000,0,0);}
.mad_c01120{transform:matrix(0.311713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311713,0.000000,0.000000,0.250000,0,0);}
.m38_c01120{transform:matrix(0.312225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312225,0.000000,0.000000,0.250000,0,0);}
.m7c_c01120{transform:matrix(0.312855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312855,0.000000,0.000000,0.250000,0,0);}
.m54_c01120{transform:matrix(0.313373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313373,0.000000,0.000000,0.250000,0,0);}
.m9a_c01120{transform:matrix(0.314339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314339,0.000000,0.000000,0.250000,0,0);}
.m32_c01120{transform:matrix(0.314357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314357,0.000000,0.000000,0.250000,0,0);}
.m46_c01120{transform:matrix(0.314483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314483,0.000000,0.000000,0.250000,0,0);}
.m35_c01120{transform:matrix(0.314614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314614,0.000000,0.000000,0.250000,0,0);}
.m1b_c01120{transform:matrix(0.314949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314949,0.000000,0.000000,0.250000,0,0);}
.m1e_c01120{transform:matrix(0.315626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315626,0.000000,0.000000,0.250000,0,0);}
.m51_c01120{transform:matrix(0.316067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316067,0.000000,0.000000,0.250000,0,0);}
.mb3_c01120{transform:matrix(0.316512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316512,0.000000,0.000000,0.250000,0,0);}
.m64_c01120{transform:matrix(0.316751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316751,0.000000,0.000000,0.250000,0,0);}
.md_c01120{transform:matrix(0.317219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317219,0.000000,0.000000,0.250000,0,0);}
.m66_c01120{transform:matrix(0.318034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318034,0.000000,0.000000,0.250000,0,0);}
.m94_c01120{transform:matrix(0.318591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318591,0.000000,0.000000,0.250000,0,0);}
.m47_c01120{transform:matrix(0.318823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318823,0.000000,0.000000,0.250000,0,0);}
.m53_c01120{transform:matrix(0.318837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318837,0.000000,0.000000,0.250000,0,0);}
.m45_c01120{transform:matrix(0.319733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319733,0.000000,0.000000,0.250000,0,0);}
.m79_c01120{transform:matrix(0.320487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320487,0.000000,0.000000,0.250000,0,0);}
.m61_c01120{transform:matrix(0.320538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320538,0.000000,0.000000,0.250000,0,0);}
.m3c_c01120{transform:matrix(0.321257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321257,0.000000,0.000000,0.250000,0,0);}
.mb8_c01120{transform:matrix(0.321542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321542,0.000000,0.000000,0.250000,0,0);}
.m27_c01120{transform:matrix(0.321563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321563,0.000000,0.000000,0.250000,0,0);}
.m2d_c01120{transform:matrix(0.322051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322051,0.000000,0.000000,0.250000,0,0);}
.ma8_c01120{transform:matrix(0.323899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323899,0.000000,0.000000,0.250000,0,0);}
.m9e_c01120{transform:matrix(0.324305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324305,0.000000,0.000000,0.250000,0,0);}
.m56_c01120{transform:matrix(0.325853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325853,0.000000,0.000000,0.250000,0,0);}
.m3f_c01120{transform:matrix(0.327154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327154,0.000000,0.000000,0.250000,0,0);}
.m2c_c01120{transform:matrix(0.327777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327777,0.000000,0.000000,0.250000,0,0);}
.m5c_c01120{transform:matrix(0.329615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329615,0.000000,0.000000,0.250000,0,0);}
.mb6_c01120{transform:matrix(0.330111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330111,0.000000,0.000000,0.250000,0,0);}
.m4f_c01120{transform:matrix(0.330423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330423,0.000000,0.000000,0.250000,0,0);}
.m6d_c01120{transform:matrix(0.330847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330847,0.000000,0.000000,0.250000,0,0);}
.m4e_c01120{transform:matrix(0.332410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332410,0.000000,0.000000,0.250000,0,0);}
.maa_c01120{transform:matrix(0.332798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332798,0.000000,0.000000,0.250000,0,0);}
.m49_c01120{transform:matrix(0.334003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334003,0.000000,0.000000,0.250000,0,0);}
.m34_c01120{transform:matrix(0.334136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334136,0.000000,0.000000,0.250000,0,0);}
.m30_c01120{transform:matrix(0.335561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335561,0.000000,0.000000,0.250000,0,0);}
.m71_c01120{transform:matrix(0.336036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336036,0.000000,0.000000,0.250000,0,0);}
.m26_c01120{transform:matrix(0.336093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336093,0.000000,0.000000,0.250000,0,0);}
.m41_c01120{transform:matrix(0.337622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337622,0.000000,0.000000,0.250000,0,0);}
.mc_c01120{transform:matrix(0.337744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337744,0.000000,0.000000,0.250000,0,0);}
.m21_c01120{transform:matrix(0.338784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338784,0.000000,0.000000,0.250000,0,0);}
.m93_c01120{transform:matrix(0.338870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338870,0.000000,0.000000,0.250000,0,0);}
.ma0_c01120{transform:matrix(0.339262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339262,0.000000,0.000000,0.250000,0,0);}
.m80_c01120{transform:matrix(0.339418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339418,0.000000,0.000000,0.250000,0,0);}
.m40_c01120{transform:matrix(0.340656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340656,0.000000,0.000000,0.250000,0,0);}
.m29_c01120{transform:matrix(0.341563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341563,0.000000,0.000000,0.250000,0,0);}
.mf_c01120{transform:matrix(0.341662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341662,0.000000,0.000000,0.250000,0,0);}
.m78_c01120{transform:matrix(0.343784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343784,0.000000,0.000000,0.250000,0,0);}
.m4a_c01120{transform:matrix(0.343906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343906,0.000000,0.000000,0.250000,0,0);}
.m57_c01120{transform:matrix(0.348455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348455,0.000000,0.000000,0.250000,0,0);}
.m1d_c01120{transform:matrix(0.350016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350016,0.000000,0.000000,0.250000,0,0);}
.mac_c01120{transform:matrix(0.351508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351508,0.000000,0.000000,0.250000,0,0);}
.m5f_c01120{transform:matrix(0.351860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351860,0.000000,0.000000,0.250000,0,0);}
.mb1_c01120{transform:matrix(0.352755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352755,0.000000,0.000000,0.250000,0,0);}
.m48_c01120{transform:matrix(0.356380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356380,0.000000,0.000000,0.250000,0,0);}
.m4c_c01120{transform:matrix(0.356902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356902,0.000000,0.000000,0.250000,0,0);}
.m2e_c01120{transform:matrix(0.357329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357329,0.000000,0.000000,0.250000,0,0);}
.m6c_c01120{transform:matrix(0.361897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361897,0.000000,0.000000,0.250000,0,0);}
.m9c_c01120{transform:matrix(0.362744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362744,0.000000,0.000000,0.250000,0,0);}
.m70_c01120{transform:matrix(0.363174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363174,0.000000,0.000000,0.250000,0,0);}
.m3e_c01120{transform:matrix(0.367014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367014,0.000000,0.000000,0.250000,0,0);}
.m97_c01120{transform:matrix(0.369041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369041,0.000000,0.000000,0.250000,0,0);}
.m50_c01120{transform:matrix(0.372940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372940,0.000000,0.000000,0.250000,0,0);}
.m3_c01120{transform:matrix(0.385868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385868,0.000000,0.000000,0.250000,0,0);}
.m28_c01120{transform:matrix(0.404861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404861,0.000000,0.000000,0.250000,0,0);}
.m8_c01120{transform:matrix(0.409991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409991,0.000000,0.000000,0.250000,0,0);}
.m62_c01120{transform:matrix(0.410303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410303,0.000000,0.000000,0.250000,0,0);}
.ma1_c01120{transform:matrix(0.414428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414428,0.000000,0.000000,0.250000,0,0);}
.m67_c01120{transform:matrix(0.417513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417513,0.000000,0.000000,0.250000,0,0);}
.m99_c01120{transform:matrix(0.428420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428420,0.000000,0.000000,0.250000,0,0);}
.ma2_c01120{transform:matrix(0.455870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455870,0.000000,0.000000,0.250000,0,0);}
.ma5_c01120{transform:matrix(0.468203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468203,0.000000,0.000000,0.250000,0,0);}
.ma6_c01120{transform:matrix(1.604977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.604977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.604977,0.000000,0.000000,0.250000,0,0);}
.v0_c01120{vertical-align:0.000000px;}
.ls8_c01120{letter-spacing:-3.284827px;}
.ls1d_c01120{letter-spacing:-2.806650px;}
.lsc_c01120{letter-spacing:-2.612617px;}
.ls5_c01120{letter-spacing:-2.536380px;}
.ls1e_c01120{letter-spacing:-2.515590px;}
.ls1_c01120{letter-spacing:-0.306049px;}
.ls7_c01120{letter-spacing:0.000000px;}
.ls1c_c01120{letter-spacing:0.122503px;}
.ls20_c01120{letter-spacing:0.574210px;}
.ls1f_c01120{letter-spacing:0.821700px;}
.ls6_c01120{letter-spacing:1.636351px;}
.ls21_c01120{letter-spacing:1.806438px;}
.ls23_c01120{letter-spacing:2.284174px;}
.ls12_c01120{letter-spacing:2.455200px;}
.ls11_c01120{letter-spacing:2.593810px;}
.lsa_c01120{letter-spacing:2.603700px;}
.ls18_c01120{letter-spacing:3.120211px;}
.lsf_c01120{letter-spacing:3.425400px;}
.ls19_c01120{letter-spacing:3.524400px;}
.lse_c01120{letter-spacing:3.564000px;}
.ls16_c01120{letter-spacing:3.583810px;}
.ls4_c01120{letter-spacing:3.623400px;}
.ls1b_c01120{letter-spacing:3.653110px;}
.ls14_c01120{letter-spacing:3.682810px;}
.ls9_c01120{letter-spacing:3.702610px;}
.ls10_c01120{letter-spacing:3.722400px;}
.ls0_c01120{letter-spacing:3.732310px;}
.ls17_c01120{letter-spacing:3.742200px;}
.lsb_c01120{letter-spacing:3.960000px;}
.ls2_c01120{letter-spacing:3.969900px;}
.ls13_c01120{letter-spacing:4.375810px;}
.ls3_c01120{letter-spacing:4.435200px;}
.ls22_c01120{letter-spacing:55.598598px;}
.ls1a_c01120{letter-spacing:57.024198px;}
.lsd_c01120{letter-spacing:64.152198px;}
.ls15_c01120{letter-spacing:65.577798px;}
.sc__c01120{text-shadow:none;}
.sc0_c01120{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01120{-webkit-text-stroke:0px transparent;}
.sc0_c01120{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01120{word-spacing:0.000000px;}
._3_c01120{width:5.785560px;}
._4_c01120{width:10.139580px;}
._2_c01120{width:26.818951px;}
._0_c01120{width:132.723360px;}
._1_c01120{width:195.592320px;}
.fc0_c01120{color:transparent;}
.fs1f_c01120{font-size:11.484198px;}
.fs1e_c01120{font-size:16.434000px;}
.fs5_c01120{font-size:27.720000px;}
.fs11_c01120{font-size:49.104000px;}
.fs10_c01120{font-size:51.876198px;}
.fsa_c01120{font-size:52.074000px;}
.fs1b_c01120{font-size:53.262000px;}
.fs20_c01120{font-size:55.598598px;}
.fs19_c01120{font-size:57.024198px;}
.fsc_c01120{font-size:64.152198px;}
.fs15_c01120{font-size:65.577798px;}
.fs14_c01120{font-size:66.330000px;}
.fse_c01120{font-size:68.508000px;}
.fs18_c01120{font-size:70.488000px;}
.fsd_c01120{font-size:71.280000px;}
.fs16_c01120{font-size:71.676198px;}
.fs1d_c01120{font-size:71.874000px;}
.fs3_c01120{font-size:72.468000px;}
.fs9_c01120{font-size:72.864000px;}
.fs1a_c01120{font-size:73.062198px;}
.fs13_c01120{font-size:73.656198px;}
.fs7_c01120{font-size:74.052198px;}
.fsf_c01120{font-size:74.448000px;}
.fs0_c01120{font-size:74.646198px;}
.fs17_c01120{font-size:74.844000px;}
.fs8_c01120{font-size:75.240000px;}
.fsb_c01120{font-size:79.200000px;}
.fs1_c01120{font-size:79.398000px;}
.fs1c_c01120{font-size:80.190000px;}
.fs4_c01120{font-size:84.348000px;}
.fs21_c01120{font-size:84.744000px;}
.fs12_c01120{font-size:87.516198px;}
.fs2_c01120{font-size:88.704000px;}
.fs6_c01120{font-size:93.852198px;}
.y0_c01120{bottom:0.000000px;}
.y1_c01120{bottom:76.500000px;}
.y1f_c01120{bottom:121.795785px;}
.y1e_c01120{bottom:153.876735px;}
.y1d_c01120{bottom:187.021935px;}
.y1c_c01120{bottom:215.177535px;}
.y1b_c01120{bottom:220.167135px;}
.y1a_c01120{bottom:252.950985px;}
.y19_c01120{bottom:316.395135px;}
.y18_c01120{bottom:348.109785px;}
.y17_c01120{bottom:381.259935px;}
.y16_c01120{bottom:412.979535px;}
.y15_c01120{bottom:445.055535px;}
.y14_c01120{bottom:477.487935px;}
.y13_c01120{bottom:509.563935px;}
.y12_c01120{bottom:540.570735px;}
.y11_c01120{bottom:572.641785px;}
.y10_c01120{bottom:605.074185px;}
.yf_c01120{bottom:636.798735px;}
.ye_c01120{bottom:701.658585px;}
.yd_c01120{bottom:733.383135px;}
.yc_c01120{bottom:765.810585px;}
.yb_c01120{bottom:797.886585px;}
.ya_c01120{bottom:828.541935px;}
.y8_c01120{bottom:828.898335px;}
.y9_c01120{bottom:829.249785px;}
.y3_c01120{bottom:860.974335px;}
.y5_c01120{bottom:861.330735px;}
.y2_c01120{bottom:923.344335px;}
.y4_c01120{bottom:977.160735px;}
.y7_c01120{bottom:1063.760985px;}
.y6_c01120{bottom:1070.176185px;}
.y20_c01120{bottom:1107.598185px;}
.h21_c01120{height:11.977660px;}
.h1f_c01120{height:16.121048px;}
.h20_c01120{height:16.129072px;}
.h7_c01120{height:28.911094px;}
.h22_c01120{height:37.028666px;}
.h1b_c01120{height:37.978116px;}
.he_c01120{height:42.725364px;}
.h17_c01120{height:43.674813px;}
.h12_c01120{height:50.913651px;}
.hc_c01120{height:51.107783px;}
.h13_c01120{height:51.213938px;}
.h16_c01120{height:69.180117px;}
.h18_c01120{height:70.346269px;}
.h5_c01120{height:71.123379px;}
.h10_c01120{height:71.451703px;}
.hb_c01120{height:71.512031px;}
.h1c_c01120{height:71.706552px;}
.h15_c01120{height:72.289530px;}
.h9_c01120{height:72.678183px;}
.h11_c01120{height:73.066641px;}
.h2_c01120{height:73.261161px;}
.h19_c01120{height:73.455293px;}
.h1a_c01120{height:73.516781px;}
.hf_c01120{height:74.342813px;}
.h1e_c01120{height:74.962336px;}
.hd_c01120{height:77.730469px;}
.h3_c01120{height:77.924795px;}
.ha_c01120{height:78.472969px;}
.h1d_c01120{height:78.702100px;}
.h6_c01120{height:82.782949px;}
.h14_c01120{height:85.892362px;}
.h4_c01120{height:87.058125px;}
.h23_c01120{height:88.385344px;}
.h8_c01120{height:92.110800px;}
.h1_c01120{height:1110.000000px;}
.h0_c01120{height:1263.000000px;}
.w1_c01120{width:775.500000px;}
.w0_c01120{width:892.500000px;}
.x0_c01120{left:0.000000px;}
.x1_c01120{left:58.500000px;}
.x31_c01120{left:85.512885px;}
.x2_c01120{left:87.304785px;}
.x44_c01120{left:140.551935px;}
.x3_c01120{left:142.160685px;}
.x2f_c01120{left:143.274435px;}
.x6e_c01120{left:152.337885px;}
.x50_c01120{left:175.137585px;}
.x54_c01120{left:184.849485px;}
.x3f_c01120{left:186.176085px;}
.x4_c01120{left:187.220535px;}
.x45_c01120{left:196.679985px;}
.x30_c01120{left:197.942235px;}
.x51_c01120{left:207.347235px;}
.x5_c01120{left:209.094585px;}
.x40_c01120{left:219.553935px;}
.x60_c01120{left:229.028235px;}
.x23_c01120{left:231.443835px;}
.x12_c01120{left:243.224835px;}
.x32_c01120{left:251.134935px;}
.x4d_c01120{left:252.407085px;}
.x6_c01120{left:253.768335px;}
.x24_c01120{left:264.034635px;}
.x2a_c01120{left:265.212735px;}
.x5f_c01120{left:273.241635px;}
.x55_c01120{left:275.969085px;}
.x62_c01120{left:285.255285px;}
.x46_c01120{left:286.329435px;}
.x7_c01120{left:288.759885px;}
.x4e_c01120{left:296.590785px;}
.x13_c01120{left:298.090635px;}
.x8_c01120{left:307.842135px;}
.x9_c01120{left:309.663735px;}
.x3a_c01120{left:320.350785px;}
.x47_c01120{left:322.716885px;}
.x41_c01120{left:329.617185px;}
.x1c_c01120{left:331.537785px;}
.x61_c01120{left:341.526885px;}
.x14_c01120{left:343.472235px;}
.x48_c01120{left:352.060485px;}
.x2b_c01120{left:353.134635px;}
.x36_c01120{left:355.312635px;}
.xb_c01120{left:363.742485px;}
.x1d_c01120{left:366.915435px;}
.x3b_c01120{left:374.399835px;}
.x56_c01120{left:376.394685px;}
.x33_c01120{left:384.502785px;}
.x53_c01120{left:385.908585px;}
.xa_c01120{left:393.699885px;}
.x3c_c01120{left:396.610485px;}
.xc_c01120{left:398.164785px;}
.x37_c01120{left:407.347035px;}
.x49_c01120{left:408.445935px;}
.x1e_c01120{left:418.598385px;}
.x34_c01120{left:419.746785px;}
.x15_c01120{left:420.999135px;}
.x4f_c01120{left:432.304935px;}
.x63_c01120{left:440.111085px;}
.x25_c01120{left:441.299085px;}
.x57_c01120{left:442.368285px;}
.x6f_c01120{left:451.154535px;}
.x2c_c01120{left:452.926635px;}
.xd_c01120{left:454.050285px;}
.x64_c01120{left:463.727535px;}
.x42_c01120{left:465.118485px;}
.x26_c01120{left:474.993735px;}
.x58_c01120{left:477.567735px;}
.x3d_c01120{left:485.428335px;}
.x16_c01120{left:493.962135px;}
.x17_c01120{left:495.744135px;}
.x59_c01120{left:513.920535px;}
.x5a_c01120{left:518.553735px;}
.x71_c01120{left:527.681535px;}
.x4a_c01120{left:529.978335px;}
.x1f_c01120{left:531.101985px;}
.x2d_c01120{left:540.239685px;}
.xe_c01120{left:541.665285px;}
.x38_c01120{left:552.070185px;}
.x70_c01120{left:562.183035px;}
.x18_c01120{left:563.479935px;}
.x73_c01120{left:571.291035px;}
.x4b_c01120{left:573.073035px;}
.x66_c01120{left:594.135285px;}
.x39_c01120{left:595.912335px;}
.x19_c01120{left:598.115085px;}
.x67_c01120{left:601.976085px;}
.x74_c01120{left:605.094585px;}
.x27_c01120{left:607.440885px;}
.x4c_c01120{left:617.241885px;}
.x1a_c01120{left:618.598185px;}
.x68_c01120{left:620.023785px;}
.x69_c01120{left:625.404435px;}
.xf_c01120{left:629.265435px;}
.x6a_c01120{left:634.274835px;}
.x6b_c01120{left:637.205235px;}
.x28_c01120{left:638.620935px;}
.x20_c01120{left:640.234635px;}
.x6c_c01120{left:643.610535px;}
.x6d_c01120{left:645.684585px;}
.x5b_c01120{left:648.634785px;}
.x2e_c01120{left:651.505785px;}
.x52_c01120{left:661.346385px;}
.x5c_c01120{left:662.890785px;}
.x65_c01120{left:671.404785px;}
.x3e_c01120{left:672.959085px;}
.x1b_c01120{left:674.419335px;}
.x29_c01120{left:684.215385px;}
.x21_c01120{left:685.824135px;}
.x75_c01120{left:692.368035px;}
.x72_c01120{left:694.026285px;}
.x35_c01120{left:695.842935px;}
.x5d_c01120{left:698.530785px;}
.x11_c01120{left:705.733035px;}
.x10_c01120{left:707.534835px;}
.x22_c01120{left:719.385135px;}
.x43_c01120{left:728.305035px;}
.x5e_c01120{left:739.521735px;}
.x76_c01120{left:775.701285px;}
@media print{
.v0_c01120{vertical-align:0.000000pt;}
.ls8_c01120{letter-spacing:-2.919846pt;}
.ls1d_c01120{letter-spacing:-2.494800pt;}
.lsc_c01120{letter-spacing:-2.322326pt;}
.ls5_c01120{letter-spacing:-2.254560pt;}
.ls1e_c01120{letter-spacing:-2.236080pt;}
.ls1_c01120{letter-spacing:-0.272044pt;}
.ls7_c01120{letter-spacing:0.000000pt;}
.ls1c_c01120{letter-spacing:0.108891pt;}
.ls20_c01120{letter-spacing:0.510409pt;}
.ls1f_c01120{letter-spacing:0.730400pt;}
.ls6_c01120{letter-spacing:1.454534pt;}
.ls21_c01120{letter-spacing:1.605723pt;}
.ls23_c01120{letter-spacing:2.030377pt;}
.ls12_c01120{letter-spacing:2.182400pt;}
.ls11_c01120{letter-spacing:2.305609pt;}
.lsa_c01120{letter-spacing:2.314400pt;}
.ls18_c01120{letter-spacing:2.773521pt;}
.lsf_c01120{letter-spacing:3.044800pt;}
.ls19_c01120{letter-spacing:3.132800pt;}
.lse_c01120{letter-spacing:3.168000pt;}
.ls16_c01120{letter-spacing:3.185609pt;}
.ls4_c01120{letter-spacing:3.220800pt;}
.ls1b_c01120{letter-spacing:3.247209pt;}
.ls14_c01120{letter-spacing:3.273609pt;}
.ls9_c01120{letter-spacing:3.291209pt;}
.ls10_c01120{letter-spacing:3.308800pt;}
.ls0_c01120{letter-spacing:3.317609pt;}
.ls17_c01120{letter-spacing:3.326400pt;}
.lsb_c01120{letter-spacing:3.520000pt;}
.ls2_c01120{letter-spacing:3.528800pt;}
.ls13_c01120{letter-spacing:3.889609pt;}
.ls3_c01120{letter-spacing:3.942400pt;}
.ls22_c01120{letter-spacing:49.420976pt;}
.ls1a_c01120{letter-spacing:50.688176pt;}
.lsd_c01120{letter-spacing:57.024176pt;}
.ls15_c01120{letter-spacing:58.291376pt;}
.ws0_c01120{word-spacing:0.000000pt;}
._3_c01120{width:5.142720pt;}
._4_c01120{width:9.012960pt;}
._2_c01120{width:23.839068pt;}
._0_c01120{width:117.976320pt;}
._1_c01120{width:173.859840pt;}
.fs1f_c01120{font-size:10.208176pt;}
.fs1e_c01120{font-size:14.608000pt;}
.fs5_c01120{font-size:24.640000pt;}
.fs11_c01120{font-size:43.648000pt;}
.fs10_c01120{font-size:46.112176pt;}
.fsa_c01120{font-size:46.288000pt;}
.fs1b_c01120{font-size:47.344000pt;}
.fs20_c01120{font-size:49.420976pt;}
.fs19_c01120{font-size:50.688176pt;}
.fsc_c01120{font-size:57.024176pt;}
.fs15_c01120{font-size:58.291376pt;}
.fs14_c01120{font-size:58.960000pt;}
.fse_c01120{font-size:60.896000pt;}
.fs18_c01120{font-size:62.656000pt;}
.fsd_c01120{font-size:63.360000pt;}
.fs16_c01120{font-size:63.712176pt;}
.fs1d_c01120{font-size:63.888000pt;}
.fs3_c01120{font-size:64.416000pt;}
.fs9_c01120{font-size:64.768000pt;}
.fs1a_c01120{font-size:64.944176pt;}
.fs13_c01120{font-size:65.472176pt;}
.fs7_c01120{font-size:65.824176pt;}
.fsf_c01120{font-size:66.176000pt;}
.fs0_c01120{font-size:66.352176pt;}
.fs17_c01120{font-size:66.528000pt;}
.fs8_c01120{font-size:66.880000pt;}
.fsb_c01120{font-size:70.400000pt;}
.fs1_c01120{font-size:70.576000pt;}
.fs1c_c01120{font-size:71.280000pt;}
.fs4_c01120{font-size:74.976000pt;}
.fs21_c01120{font-size:75.328000pt;}
.fs12_c01120{font-size:77.792176pt;}
.fs2_c01120{font-size:78.848000pt;}
.fs6_c01120{font-size:83.424176pt;}
.y0_c01120{bottom:0.000000pt;}
.y1_c01120{bottom:68.000000pt;}
.y1f_c01120{bottom:108.262920pt;}
.y1e_c01120{bottom:136.779320pt;}
.y1d_c01120{bottom:166.241720pt;}
.y1c_c01120{bottom:191.268920pt;}
.y1b_c01120{bottom:195.704120pt;}
.y1a_c01120{bottom:224.845320pt;}
.y19_c01120{bottom:281.240120pt;}
.y18_c01120{bottom:309.430920pt;}
.y17_c01120{bottom:338.897720pt;}
.y16_c01120{bottom:367.092920pt;}
.y15_c01120{bottom:395.604920pt;}
.y14_c01120{bottom:424.433720pt;}
.y13_c01120{bottom:452.945720pt;}
.y12_c01120{bottom:480.507320pt;}
.y11_c01120{bottom:509.014920pt;}
.y10_c01120{bottom:537.843720pt;}
.yf_c01120{bottom:566.043320pt;}
.ye_c01120{bottom:623.696520pt;}
.yd_c01120{bottom:651.896120pt;}
.yc_c01120{bottom:680.720520pt;}
.yb_c01120{bottom:709.232520pt;}
.ya_c01120{bottom:736.481720pt;}
.y8_c01120{bottom:736.798520pt;}
.y9_c01120{bottom:737.110920pt;}
.y3_c01120{bottom:765.310520pt;}
.y5_c01120{bottom:765.627320pt;}
.y2_c01120{bottom:820.750520pt;}
.y4_c01120{bottom:868.587320pt;}
.y7_c01120{bottom:945.565320pt;}
.y6_c01120{bottom:951.267720pt;}
.y20_c01120{bottom:984.531720pt;}
.h21_c01120{height:10.646809pt;}
.h1f_c01120{height:14.329820pt;}
.h20_c01120{height:14.336953pt;}
.h7_c01120{height:25.698750pt;}
.h22_c01120{height:32.914370pt;}
.h1b_c01120{height:33.758325pt;}
.he_c01120{height:37.978101pt;}
.h17_c01120{height:38.822056pt;}
.h12_c01120{height:45.256579pt;}
.hc_c01120{height:45.429141pt;}
.h13_c01120{height:45.523500pt;}
.h16_c01120{height:61.493438pt;}
.h18_c01120{height:62.530016pt;}
.h5_c01120{height:63.220781pt;}
.h10_c01120{height:63.512625pt;}
.hb_c01120{height:63.566250pt;}
.h1c_c01120{height:63.739157pt;}
.h15_c01120{height:64.257360pt;}
.h9_c01120{height:64.602829pt;}
.h11_c01120{height:64.948125pt;}
.h2_c01120{height:65.121032pt;}
.h19_c01120{height:65.293594pt;}
.h1a_c01120{height:65.348250pt;}
.hf_c01120{height:66.082500pt;}
.h1e_c01120{height:66.633188pt;}
.hd_c01120{height:69.093750pt;}
.h3_c01120{height:69.266484pt;}
.ha_c01120{height:69.753750pt;}
.h1d_c01120{height:69.957422pt;}
.h6_c01120{height:73.584844pt;}
.h14_c01120{height:76.348766pt;}
.h4_c01120{height:77.385000pt;}
.h23_c01120{height:78.564750pt;}
.h8_c01120{height:81.876266pt;}
.h1_c01120{height:986.666667pt;}
.h0_c01120{height:1122.666667pt;}
.w1_c01120{width:689.333333pt;}
.w0_c01120{width:793.333333pt;}
.x0_c01120{left:0.000000pt;}
.x1_c01120{left:52.000000pt;}
.x31_c01120{left:76.011453pt;}
.x2_c01120{left:77.604253pt;}
.x44_c01120{left:124.935053pt;}
.x3_c01120{left:126.365053pt;}
.x2f_c01120{left:127.355053pt;}
.x6e_c01120{left:135.411453pt;}
.x50_c01120{left:155.677853pt;}
.x54_c01120{left:164.310653pt;}
.x3f_c01120{left:165.489853pt;}
.x4_c01120{left:166.418253pt;}
.x45_c01120{left:174.826653pt;}
.x30_c01120{left:175.948653pt;}
.x51_c01120{left:184.308653pt;}
.x5_c01120{left:185.861853pt;}
.x40_c01120{left:195.159053pt;}
.x60_c01120{left:203.580653pt;}
.x23_c01120{left:205.727853pt;}
.x12_c01120{left:216.199853pt;}
.x32_c01120{left:223.231053pt;}
.x4d_c01120{left:224.361853pt;}
.x6_c01120{left:225.571853pt;}
.x24_c01120{left:234.697453pt;}
.x2a_c01120{left:235.744653pt;}
.x5f_c01120{left:242.881453pt;}
.x55_c01120{left:245.305853pt;}
.x62_c01120{left:253.560253pt;}
.x46_c01120{left:254.515053pt;}
.x7_c01120{left:256.675453pt;}
.x4e_c01120{left:263.636253pt;}
.x13_c01120{left:264.969453pt;}
.x8_c01120{left:273.637453pt;}
.x9_c01120{left:275.256653pt;}
.x3a_c01120{left:284.756253pt;}
.x47_c01120{left:286.859453pt;}
.x41_c01120{left:292.993053pt;}
.x1c_c01120{left:294.700253pt;}
.x61_c01120{left:303.579453pt;}
.x14_c01120{left:305.308653pt;}
.x48_c01120{left:312.942653pt;}
.x2b_c01120{left:313.897453pt;}
.x36_c01120{left:315.833453pt;}
.xb_c01120{left:323.326653pt;}
.x1d_c01120{left:326.147053pt;}
.x3b_c01120{left:332.799853pt;}
.x56_c01120{left:334.573053pt;}
.x33_c01120{left:341.780253pt;}
.x53_c01120{left:343.029853pt;}
.xa_c01120{left:349.955453pt;}
.x3c_c01120{left:352.542653pt;}
.xc_c01120{left:353.924253pt;}
.x37_c01120{left:362.086253pt;}
.x49_c01120{left:363.063053pt;}
.x1e_c01120{left:372.087453pt;}
.x34_c01120{left:373.108253pt;}
.x15_c01120{left:374.221453pt;}
.x4f_c01120{left:384.271053pt;}
.x63_c01120{left:391.209853pt;}
.x25_c01120{left:392.265853pt;}
.x57_c01120{left:393.216253pt;}
.x6f_c01120{left:401.026253pt;}
.x2c_c01120{left:402.601453pt;}
.xd_c01120{left:403.600253pt;}
.x64_c01120{left:412.202253pt;}
.x42_c01120{left:413.438653pt;}
.x26_c01120{left:422.216653pt;}
.x58_c01120{left:424.504653pt;}
.x3d_c01120{left:431.491853pt;}
.x16_c01120{left:439.077453pt;}
.x17_c01120{left:440.661453pt;}
.x59_c01120{left:456.818253pt;}
.x5a_c01120{left:460.936653pt;}
.x71_c01120{left:469.050253pt;}
.x4a_c01120{left:471.091853pt;}
.x1f_c01120{left:472.090653pt;}
.x2d_c01120{left:480.213053pt;}
.xe_c01120{left:481.480253pt;}
.x38_c01120{left:490.729053pt;}
.x70_c01120{left:499.718253pt;}
.x18_c01120{left:500.871053pt;}
.x73_c01120{left:507.814253pt;}
.x4b_c01120{left:509.398253pt;}
.x66_c01120{left:528.120253pt;}
.x39_c01120{left:529.699853pt;}
.x19_c01120{left:531.657853pt;}
.x67_c01120{left:535.089853pt;}
.x74_c01120{left:537.861853pt;}
.x27_c01120{left:539.947453pt;}
.x4c_c01120{left:548.659453pt;}
.x1a_c01120{left:549.865053pt;}
.x68_c01120{left:551.132253pt;}
.x69_c01120{left:555.915053pt;}
.xf_c01120{left:559.347053pt;}
.x6a_c01120{left:563.799853pt;}
.x6b_c01120{left:566.404653pt;}
.x28_c01120{left:567.663053pt;}
.x20_c01120{left:569.097453pt;}
.x6c_c01120{left:572.098253pt;}
.x6d_c01120{left:573.941853pt;}
.x5b_c01120{left:576.564253pt;}
.x2e_c01120{left:579.116253pt;}
.x52_c01120{left:587.863453pt;}
.x5c_c01120{left:589.236253pt;}
.x65_c01120{left:596.804253pt;}
.x3e_c01120{left:598.185853pt;}
.x1b_c01120{left:599.483853pt;}
.x29_c01120{left:608.191453pt;}
.x21_c01120{left:609.621453pt;}
.x75_c01120{left:615.438253pt;}
.x72_c01120{left:616.912253pt;}
.x35_c01120{left:618.527053pt;}
.x5d_c01120{left:620.916253pt;}
.x11_c01120{left:627.318253pt;}
.x10_c01120{left:628.919853pt;}
.x22_c01120{left:639.453453pt;}
.x43_c01120{left:647.382253pt;}
.x5e_c01120{left:657.352653pt;}
.x76_c01120{left:689.512253pt;}
}





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

.ir_c01121:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01121{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01121;src:url('chunks/assets/font_c9fa5d1f83480bc578b50659.woff2')format("woff");}.ff1_c01121{font-family:ff1_c01121;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01121;src:url('chunks/assets/font_96b317dda230e4fd7aa15ae2.woff2')format("woff");}.ff2_c01121{font-family:ff2_c01121;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01121;src:url('chunks/assets/font_f5f4bbde150bc43eeef64b27.woff2')format("woff");}.ff3_c01121{font-family:ff3_c01121;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01121;src:url('chunks/assets/font_56f1d0deaf1c0eedbf5d57d5.woff2')format("woff");}.ff4_c01121{font-family:ff4_c01121;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01121;src:url('chunks/assets/font_500a1135cc794e02ccaf00eb.woff2')format("woff");}.ff5_c01121{font-family:ff5_c01121;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m27_c01121{transform:matrix(0.030489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030489,0.000000,0.000000,0.250000,0,0);}
.m73_c01121{transform:matrix(0.037830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.037830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.037830,0.000000,0.000000,0.250000,0,0);}
.m95_c01121{transform:matrix(0.066861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066861,0.000000,0.000000,0.250000,0,0);}
.m75_c01121{transform:matrix(0.086466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086466,0.000000,0.000000,0.250000,0,0);}
.m74_c01121{transform:matrix(0.087719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087719,0.000000,0.000000,0.250000,0,0);}
.m25_c01121{transform:matrix(0.094513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094513,0.000000,0.000000,0.250000,0,0);}
.m78_c01121{transform:matrix(0.127468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127468,0.000000,0.000000,0.250000,0,0);}
.m7e_c01121{transform:matrix(0.128048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128048,0.000000,0.000000,0.250000,0,0);}
.m97_c01121{transform:matrix(0.135659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135659,0.000000,0.000000,0.250000,0,0);}
.m87_c01121{transform:matrix(0.148124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148124,0.000000,0.000000,0.250000,0,0);}
.m96_c01121{transform:matrix(0.155364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155364,0.000000,0.000000,0.250000,0,0);}
.m28_c01121{transform:matrix(0.155923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155923,0.000000,0.000000,0.250000,0,0);}
.m26_c01121{transform:matrix(0.161585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161585,0.000000,0.000000,0.250000,0,0);}
.m81_c01121{transform:matrix(0.161933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161933,0.000000,0.000000,0.250000,0,0);}
.m35_c01121{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01121{transform:matrix(0.172180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172180,0.000000,0.000000,0.250000,0,0);}
.mb3_c01121{transform:matrix(0.180232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180232,0.000000,0.000000,0.250000,0,0);}
.m59_c01121{transform:matrix(0.180257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180257,0.000000,0.000000,0.250000,0,0);}
.m77_c01121{transform:matrix(0.184210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184210,0.000000,0.000000,0.250000,0,0);}
.mb6_c01121{transform:matrix(0.186738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186738,0.000000,0.000000,0.250000,0,0);}
.m72_c01121{transform:matrix(0.190790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190790,0.000000,0.000000,0.250000,0,0);}
.m80_c01121{transform:matrix(0.191312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191312,0.000000,0.000000,0.250000,0,0);}
.m4a_c01121{transform:matrix(0.201440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201440,0.000000,0.000000,0.250000,0,0);}
.m76_c01121{transform:matrix(0.213816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213816,0.000000,0.000000,0.250000,0,0);}
.m71_c01121{transform:matrix(0.233072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233072,0.000000,0.000000,0.250000,0,0);}
.m98_c01121{transform:matrix(0.242032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242032,0.000000,0.000000,0.250000,0,0);}
.m57_c01121{transform:matrix(0.244473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244473,0.000000,0.000000,0.250000,0,0);}
.m7d_c01121{transform:matrix(0.248127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248127,0.000000,0.000000,0.250000,0,0);}
.m0_c01121{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.ma1_c01121{transform:matrix(0.254001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254001,0.000000,0.000000,0.250000,0,0);}
.m8a_c01121{transform:matrix(0.257247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257247,0.000000,0.000000,0.250000,0,0);}
.m2c_c01121{transform:matrix(0.259606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259606,0.000000,0.000000,0.250000,0,0);}
.m9b_c01121{transform:matrix(0.260569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260569,0.000000,0.000000,0.250000,0,0);}
.mb_c01121{transform:matrix(0.263988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263988,0.000000,0.000000,0.250000,0,0);}
.m19_c01121{transform:matrix(0.265422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265422,0.000000,0.000000,0.250000,0,0);}
.m4e_c01121{transform:matrix(0.267283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267283,0.000000,0.000000,0.250000,0,0);}
.m56_c01121{transform:matrix(0.268388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268388,0.000000,0.000000,0.250000,0,0);}
.m53_c01121{transform:matrix(0.269573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269573,0.000000,0.000000,0.250000,0,0);}
.m82_c01121{transform:matrix(0.271048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271048,0.000000,0.000000,0.250000,0,0);}
.m32_c01121{transform:matrix(0.272243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272243,0.000000,0.000000,0.250000,0,0);}
.m6b_c01121{transform:matrix(0.272774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272774,0.000000,0.000000,0.250000,0,0);}
.m55_c01121{transform:matrix(0.273900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273900,0.000000,0.000000,0.250000,0,0);}
.m33_c01121{transform:matrix(0.274755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274755,0.000000,0.000000,0.250000,0,0);}
.m30_c01121{transform:matrix(0.276310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276310,0.000000,0.000000,0.250000,0,0);}
.m63_c01121{transform:matrix(0.276927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276927,0.000000,0.000000,0.250000,0,0);}
.m2e_c01121{transform:matrix(0.276947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276947,0.000000,0.000000,0.250000,0,0);}
.m48_c01121{transform:matrix(0.277965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277965,0.000000,0.000000,0.250000,0,0);}
.m4d_c01121{transform:matrix(0.278439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278439,0.000000,0.000000,0.250000,0,0);}
.m67_c01121{transform:matrix(0.279450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279450,0.000000,0.000000,0.250000,0,0);}
.m50_c01121{transform:matrix(0.280075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280075,0.000000,0.000000,0.250000,0,0);}
.m5e_c01121{transform:matrix(0.280484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280484,0.000000,0.000000,0.250000,0,0);}
.m14_c01121{transform:matrix(0.281410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281410,0.000000,0.000000,0.250000,0,0);}
.m29_c01121{transform:matrix(0.281872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281872,0.000000,0.000000,0.250000,0,0);}
.m12_c01121{transform:matrix(0.281959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281959,0.000000,0.000000,0.250000,0,0);}
.m5b_c01121{transform:matrix(0.282121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282121,0.000000,0.000000,0.250000,0,0);}
.m7_c01121{transform:matrix(0.282350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282350,0.000000,0.000000,0.250000,0,0);}
.md_c01121{transform:matrix(0.282590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282590,0.000000,0.000000,0.250000,0,0);}
.m2d_c01121{transform:matrix(0.282734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282734,0.000000,0.000000,0.250000,0,0);}
.mf_c01121{transform:matrix(0.282769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282769,0.000000,0.000000,0.250000,0,0);}
.ma8_c01121{transform:matrix(0.282812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282812,0.000000,0.000000,0.250000,0,0);}
.m66_c01121{transform:matrix(0.283343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283343,0.000000,0.000000,0.250000,0,0);}
.m1e_c01121{transform:matrix(0.283532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283532,0.000000,0.000000,0.250000,0,0);}
.m21_c01121{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m9_c01121{transform:matrix(0.283683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283683,0.000000,0.000000,0.250000,0,0);}
.m20_c01121{transform:matrix(0.284106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284106,0.000000,0.000000,0.250000,0,0);}
.mc_c01121{transform:matrix(0.285100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285100,0.000000,0.000000,0.250000,0,0);}
.ma3_c01121{transform:matrix(0.285512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285512,0.000000,0.000000,0.250000,0,0);}
.m3_c01121{transform:matrix(0.285730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285730,0.000000,0.000000,0.250000,0,0);}
.m9f_c01121{transform:matrix(0.285977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285977,0.000000,0.000000,0.250000,0,0);}
.m8b_c01121{transform:matrix(0.287985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287985,0.000000,0.000000,0.250000,0,0);}
.m6e_c01121{transform:matrix(0.288767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288767,0.000000,0.000000,0.250000,0,0);}
.m6f_c01121{transform:matrix(0.289918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289918,0.000000,0.000000,0.250000,0,0);}
.m8_c01121{transform:matrix(0.290581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290581,0.000000,0.000000,0.250000,0,0);}
.m83_c01121{transform:matrix(0.291469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291469,0.000000,0.000000,0.250000,0,0);}
.maf_c01121{transform:matrix(0.291762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291762,0.000000,0.000000,0.250000,0,0);}
.m3f_c01121{transform:matrix(0.292279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292279,0.000000,0.000000,0.250000,0,0);}
.m3c_c01121{transform:matrix(0.292475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292475,0.000000,0.000000,0.250000,0,0);}
.m17_c01121{transform:matrix(0.292553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292553,0.000000,0.000000,0.250000,0,0);}
.m94_c01121{transform:matrix(0.292858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292858,0.000000,0.000000,0.250000,0,0);}
.ma0_c01121{transform:matrix(0.293073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293073,0.000000,0.000000,0.250000,0,0);}
.m90_c01121{transform:matrix(0.294317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294317,0.000000,0.000000,0.250000,0,0);}
.m99_c01121{transform:matrix(0.294792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294792,0.000000,0.000000,0.250000,0,0);}
.m62_c01121{transform:matrix(0.295656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295656,0.000000,0.000000,0.250000,0,0);}
.ma9_c01121{transform:matrix(0.295831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295831,0.000000,0.000000,0.250000,0,0);}
.m84_c01121{transform:matrix(0.297730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297730,0.000000,0.000000,0.250000,0,0);}
.m4c_c01121{transform:matrix(0.297886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297886,0.000000,0.000000,0.250000,0,0);}
.m46_c01121{transform:matrix(0.298763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298763,0.000000,0.000000,0.250000,0,0);}
.m1d_c01121{transform:matrix(0.299162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299162,0.000000,0.000000,0.250000,0,0);}
.m2_c01121{transform:matrix(0.299828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299828,0.000000,0.000000,0.250000,0,0);}
.m7c_c01121{transform:matrix(0.300008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300008,0.000000,0.000000,0.250000,0,0);}
.m5d_c01121{transform:matrix(0.300680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300680,0.000000,0.000000,0.250000,0,0);}
.mae_c01121{transform:matrix(0.301147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301147,0.000000,0.000000,0.250000,0,0);}
.mb5_c01121{transform:matrix(0.301943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301943,0.000000,0.000000,0.250000,0,0);}
.m3b_c01121{transform:matrix(0.302116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302116,0.000000,0.000000,0.250000,0,0);}
.m1f_c01121{transform:matrix(0.302581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302581,0.000000,0.000000,0.250000,0,0);}
.mb4_c01121{transform:matrix(0.302766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302766,0.000000,0.000000,0.250000,0,0);}
.m9a_c01121{transform:matrix(0.303221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303221,0.000000,0.000000,0.250000,0,0);}
.me_c01121{transform:matrix(0.303347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303347,0.000000,0.000000,0.250000,0,0);}
.m2f_c01121{transform:matrix(0.304378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304378,0.000000,0.000000,0.250000,0,0);}
.m92_c01121{transform:matrix(0.306862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306862,0.000000,0.000000,0.250000,0,0);}
.m65_c01121{transform:matrix(0.307562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307562,0.000000,0.000000,0.250000,0,0);}
.m3d_c01121{transform:matrix(0.308547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308547,0.000000,0.000000,0.250000,0,0);}
.m8e_c01121{transform:matrix(0.308860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308860,0.000000,0.000000,0.250000,0,0);}
.ma2_c01121{transform:matrix(0.308964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308964,0.000000,0.000000,0.250000,0,0);}
.m43_c01121{transform:matrix(0.309455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309455,0.000000,0.000000,0.250000,0,0);}
.m52_c01121{transform:matrix(0.309828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309828,0.000000,0.000000,0.250000,0,0);}
.m16_c01121{transform:matrix(0.310273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310273,0.000000,0.000000,0.250000,0,0);}
.m15_c01121{transform:matrix(0.311383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311383,0.000000,0.000000,0.250000,0,0);}
.m4_c01121{transform:matrix(0.311665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311665,0.000000,0.000000,0.250000,0,0);}
.m60_c01121{transform:matrix(0.312243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312243,0.000000,0.000000,0.250000,0,0);}
.m9e_c01121{transform:matrix(0.312545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312545,0.000000,0.000000,0.250000,0,0);}
.m61_c01121{transform:matrix(0.312603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312603,0.000000,0.000000,0.250000,0,0);}
.m34_c01121{transform:matrix(0.312741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312741,0.000000,0.000000,0.250000,0,0);}
.m6d_c01121{transform:matrix(0.313316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313316,0.000000,0.000000,0.250000,0,0);}
.m8f_c01121{transform:matrix(0.313856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313856,0.000000,0.000000,0.250000,0,0);}
.m64_c01121{transform:matrix(0.313980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313980,0.000000,0.000000,0.250000,0,0);}
.mbd_c01121{transform:matrix(0.314656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314656,0.000000,0.000000,0.250000,0,0);}
.m5a_c01121{transform:matrix(0.314728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314728,0.000000,0.000000,0.250000,0,0);}
.m54_c01121{transform:matrix(0.314861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314861,0.000000,0.000000,0.250000,0,0);}
.m45_c01121{transform:matrix(0.314981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314981,0.000000,0.000000,0.250000,0,0);}
.m69_c01121{transform:matrix(0.315101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315101,0.000000,0.000000,0.250000,0,0);}
.m7b_c01121{transform:matrix(0.315294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315294,0.000000,0.000000,0.250000,0,0);}
.m5f_c01121{transform:matrix(0.318257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318257,0.000000,0.000000,0.250000,0,0);}
.mb2_c01121{transform:matrix(0.318339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318339,0.000000,0.000000,0.250000,0,0);}
.m86_c01121{transform:matrix(0.319176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319176,0.000000,0.000000,0.250000,0,0);}
.mad_c01121{transform:matrix(0.319825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319825,0.000000,0.000000,0.250000,0,0);}
.maa_c01121{transform:matrix(0.319998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319998,0.000000,0.000000,0.250000,0,0);}
.m9c_c01121{transform:matrix(0.320158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320158,0.000000,0.000000,0.250000,0,0);}
.m1_c01121{transform:matrix(0.320855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320855,0.000000,0.000000,0.250000,0,0);}
.m4f_c01121{transform:matrix(0.321329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321329,0.000000,0.000000,0.250000,0,0);}
.m11_c01121{transform:matrix(0.321668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321668,0.000000,0.000000,0.250000,0,0);}
.m31_c01121{transform:matrix(0.321928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321928,0.000000,0.000000,0.250000,0,0);}
.m22_c01121{transform:matrix(0.322055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322055,0.000000,0.000000,0.250000,0,0);}
.m89_c01121{transform:matrix(0.322061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322061,0.000000,0.000000,0.250000,0,0);}
.m49_c01121{transform:matrix(0.322454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322454,0.000000,0.000000,0.250000,0,0);}
.m47_c01121{transform:matrix(0.322486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322486,0.000000,0.000000,0.250000,0,0);}
.m24_c01121{transform:matrix(0.323058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323058,0.000000,0.000000,0.250000,0,0);}
.mb0_c01121{transform:matrix(0.324129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324129,0.000000,0.000000,0.250000,0,0);}
.ma5_c01121{transform:matrix(0.325958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325958,0.000000,0.000000,0.250000,0,0);}
.ma_c01121{transform:matrix(0.326197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326197,0.000000,0.000000,0.250000,0,0);}
.m6c_c01121{transform:matrix(0.326462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326462,0.000000,0.000000,0.250000,0,0);}
.m5c_c01121{transform:matrix(0.326683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326683,0.000000,0.000000,0.250000,0,0);}
.m51_c01121{transform:matrix(0.326729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326729,0.000000,0.000000,0.250000,0,0);}
.m18_c01121{transform:matrix(0.326952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326952,0.000000,0.000000,0.250000,0,0);}
.m1a_c01121{transform:matrix(0.327641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327641,0.000000,0.000000,0.250000,0,0);}
.m39_c01121{transform:matrix(0.329161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329161,0.000000,0.000000,0.250000,0,0);}
.m23_c01121{transform:matrix(0.329287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329287,0.000000,0.000000,0.250000,0,0);}
.mb1_c01121{transform:matrix(0.329299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329299,0.000000,0.000000,0.250000,0,0);}
.m85_c01121{transform:matrix(0.329366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329366,0.000000,0.000000,0.250000,0,0);}
.m3a_c01121{transform:matrix(0.329511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329511,0.000000,0.000000,0.250000,0,0);}
.m5_c01121{transform:matrix(0.329988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329988,0.000000,0.000000,0.250000,0,0);}
.mb8_c01121{transform:matrix(0.330758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330758,0.000000,0.000000,0.250000,0,0);}
.m79_c01121{transform:matrix(0.332487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332487,0.000000,0.000000,0.250000,0,0);}
.m6a_c01121{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);}
.m6_c01121{transform:matrix(0.334061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334061,0.000000,0.000000,0.250000,0,0);}
.m40_c01121{transform:matrix(0.334136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334136,0.000000,0.000000,0.250000,0,0);}
.m36_c01121{transform:matrix(0.334140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334140,0.000000,0.000000,0.250000,0,0);}
.m37_c01121{transform:matrix(0.336037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336037,0.000000,0.000000,0.250000,0,0);}
.m42_c01121{transform:matrix(0.340402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340402,0.000000,0.000000,0.250000,0,0);}
.m38_c01121{transform:matrix(0.344335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344335,0.000000,0.000000,0.250000,0,0);}
.m58_c01121{transform:matrix(0.349002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349002,0.000000,0.000000,0.250000,0,0);}
.m88_c01121{transform:matrix(0.350025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350025,0.000000,0.000000,0.250000,0,0);}
.m68_c01121{transform:matrix(0.350155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350155,0.000000,0.000000,0.250000,0,0);}
.m70_c01121{transform:matrix(0.352824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352824,0.000000,0.000000,0.250000,0,0);}
.ma4_c01121{transform:matrix(0.354011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354011,0.000000,0.000000,0.250000,0,0);}
.m44_c01121{transform:matrix(0.356751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356751,0.000000,0.000000,0.250000,0,0);}
.mbb_c01121{transform:matrix(0.358972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358972,0.000000,0.000000,0.250000,0,0);}
.m7a_c01121{transform:matrix(0.359239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359239,0.000000,0.000000,0.250000,0,0);}
.mba_c01121{transform:matrix(0.359384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359384,0.000000,0.000000,0.250000,0,0);}
.m4b_c01121{transform:matrix(0.364701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364701,0.000000,0.000000,0.250000,0,0);}
.m13_c01121{transform:matrix(0.365273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365273,0.000000,0.000000,0.250000,0,0);}
.mb9_c01121{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);}
.m8c_c01121{transform:matrix(0.369983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369983,0.000000,0.000000,0.250000,0,0);}
.m41_c01121{transform:matrix(0.370915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370915,0.000000,0.000000,0.250000,0,0);}
.m9d_c01121{transform:matrix(0.371682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371682,0.000000,0.000000,0.250000,0,0);}
.ma7_c01121{transform:matrix(0.375185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375185,0.000000,0.000000,0.250000,0,0);}
.m10_c01121{transform:matrix(0.376226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376226,0.000000,0.000000,0.250000,0,0);}
.mb7_c01121{transform:matrix(0.376996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376996,0.000000,0.000000,0.250000,0,0);}
.m7f_c01121{transform:matrix(0.382173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382173,0.000000,0.000000,0.250000,0,0);}
.ma6_c01121{transform:matrix(0.384314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384314,0.000000,0.000000,0.250000,0,0);}
.mac_c01121{transform:matrix(0.385127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385127,0.000000,0.000000,0.250000,0,0);}
.m3e_c01121{transform:matrix(0.386312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386312,0.000000,0.000000,0.250000,0,0);}
.m1b_c01121{transform:matrix(0.388800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388800,0.000000,0.000000,0.250000,0,0);}
.mbc_c01121{transform:matrix(0.390496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390496,0.000000,0.000000,0.250000,0,0);}
.m2b_c01121{transform:matrix(0.394968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394968,0.000000,0.000000,0.250000,0,0);}
.m93_c01121{transform:matrix(0.403692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403692,0.000000,0.000000,0.250000,0,0);}
.m8d_c01121{transform:matrix(0.408109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408109,0.000000,0.000000,0.250000,0,0);}
.mab_c01121{transform:matrix(0.420862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420862,0.000000,0.000000,0.250000,0,0);}
.m1c_c01121{transform:matrix(0.445811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445811,0.000000,0.000000,0.250000,0,0);}
.m91_c01121{transform:matrix(0.600511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600511,0.000000,0.000000,0.250000,0,0);}
.v0_c01121{vertical-align:0.000000px;}
.ls13_c01121{letter-spacing:-3.215527px;}
.ls15_c01121{letter-spacing:-2.993767px;}
.lsb_c01121{letter-spacing:-2.862090px;}
.ls18_c01121{letter-spacing:-2.716567px;}
.ls1d_c01121{letter-spacing:-2.695777px;}
.lsf_c01121{letter-spacing:-2.661127px;}
.ls12_c01121{letter-spacing:-2.591827px;}
.ls11_c01121{letter-spacing:-1.458828px;}
.ls8_c01121{letter-spacing:-0.722700px;}
.ls5_c01121{letter-spacing:0.000000px;}
.ls1b_c01121{letter-spacing:0.663300px;}
.ls4_c01121{letter-spacing:1.590816px;}
.ls17_c01121{letter-spacing:2.352557px;}
.ls3_c01121{letter-spacing:2.497858px;}
.ls0_c01121{letter-spacing:2.717716px;}
.ls1a_c01121{letter-spacing:2.880631px;}
.ls1f_c01121{letter-spacing:2.954683px;}
.lsc_c01121{letter-spacing:3.494700px;}
.lse_c01121{letter-spacing:3.504610px;}
.ls10_c01121{letter-spacing:3.583810px;}
.ls14_c01121{letter-spacing:3.663000px;}
.ls6_c01121{letter-spacing:3.702610px;}
.ls7_c01121{letter-spacing:3.801610px;}
.ls9_c01121{letter-spacing:3.920400px;}
.ls20_c01121{letter-spacing:3.969900px;}
.ls1e_c01121{letter-spacing:4.276810px;}
.ls2_c01121{letter-spacing:38.149848px;}
.ls16_c01121{letter-spacing:54.172998px;}
.lsd_c01121{letter-spacing:57.024198px;}
.lsa_c01121{letter-spacing:58.449798px;}
.ls1c_c01121{letter-spacing:61.300998px;}
.ls19_c01121{letter-spacing:62.726400px;}
.ls1_c01121{letter-spacing:157.220646px;}
.sc__c01121{text-shadow:none;}
.sc0_c01121{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01121{-webkit-text-stroke:0px transparent;}
.sc0_c01121{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01121{word-spacing:-19.865479px;}
.ws1_c01121{word-spacing:-17.393904px;}
.ws3_c01121{word-spacing:0.000000px;}
.ws0_c01121{word-spacing:1.370228px;}
._8_c01121{margin-left:-10.386684px;}
._0_c01121{margin-left:-5.776186px;}
._1_c01121{margin-left:-2.073129px;}
._9_c01121{width:2.130074px;}
._d_c01121{width:5.702400px;}
._6_c01121{width:7.182164px;}
._c_c01121{width:15.444000px;}
._2_c01121{width:24.955667px;}
._e_c01121{width:27.769643px;}
._7_c01121{width:31.547191px;}
._f_c01121{width:38.669400px;}
._a_c01121{width:41.839479px;}
._5_c01121{width:221.671692px;}
._3_c01121{width:226.591200px;}
._4_c01121{width:375.483240px;}
._b_c01121{width:894.783780px;}
.fc0_c01121{color:transparent;}
.fs1e_c01121{font-size:5.940000px;}
.fs1f_c01121{font-size:13.266000px;}
.fs13_c01121{font-size:15.840000px;}
.fs5_c01121{font-size:22.176000px;}
.fs1_c01121{font-size:23.166000px;}
.fs15_c01121{font-size:26.928000px;}
.fs11_c01121{font-size:27.720000px;}
.fs3_c01121{font-size:33.264000px;}
.fs12_c01121{font-size:45.936198px;}
.fs19_c01121{font-size:54.172998px;}
.fsc_c01121{font-size:57.024198px;}
.fs9_c01121{font-size:58.449798px;}
.fs20_c01121{font-size:61.300998px;}
.fs1a_c01121{font-size:62.568000px;}
.fs1d_c01121{font-size:62.726400px;}
.fs1b_c01121{font-size:65.736198px;}
.fsd_c01121{font-size:66.330000px;}
.fs0_c01121{font-size:66.528000px;}
.fsb_c01121{font-size:69.894000px;}
.fse_c01121{font-size:70.092198px;}
.fs10_c01121{font-size:71.676198px;}
.fs2_c01121{font-size:72.864000px;}
.fs17_c01121{font-size:73.260000px;}
.fs4_c01121{font-size:74.052198px;}
.fsf_c01121{font-size:74.844000px;}
.fs6_c01121{font-size:76.032198px;}
.fs21_c01121{font-size:77.022198px;}
.fs1c_c01121{font-size:77.616198px;}
.fs8_c01121{font-size:78.408000px;}
.fs22_c01121{font-size:79.398000px;}
.fsa_c01121{font-size:81.774000px;}
.fs18_c01121{font-size:85.536198px;}
.fs16_c01121{font-size:91.872198px;}
.fs7_c01121{font-size:99.000000px;}
.fs14_c01121{font-size:104.544000px;}
.y0_c01121{bottom:0.000000px;}
.y1_c01121{bottom:76.500000px;}
.y23_c01121{bottom:130.354320px;}
.y22_c01121{bottom:161.361120px;}
.y21_c01121{bottom:194.862720px;}
.y20_c01121{bottom:227.290170px;}
.y1f_c01121{bottom:259.722570px;}
.y1e_c01121{bottom:291.090720px;}
.y1d_c01121{bottom:320.315520px;}
.y1c_c01121{bottom:324.230970px;}
.y1b_c01121{bottom:355.955520px;}
.y1a_c01121{bottom:388.387920px;}
.y19_c01121{bottom:411.192570px;}
.y18_c01121{bottom:419.038320px;}
.y17_c01121{bottom:451.470720px;}
.y16_c01121{bottom:482.833920px;}
.y15_c01121{bottom:508.489770px;}
.y12_c01121{bottom:513.484320px;}
.y14_c01121{bottom:514.904970px;}
.y13_c01121{bottom:555.183120px;}
.y11_c01121{bottom:578.700570px;}
.y10_c01121{bottom:611.132970px;}
.yf_c01121{bottom:643.565370px;}
.ye_c01121{bottom:676.002720px;}
.yd_c01121{bottom:739.441920px;}
.yc_c01121{bottom:771.512970px;}
.yb_c01121{bottom:834.952170px;}
.ya_c01121{bottom:867.389520px;}
.y9_c01121{bottom:899.460570px;}
.y7_c01121{bottom:923.344320px;}
.y6_c01121{bottom:931.185120px;}
.y5_c01121{bottom:943.654170px;}
.y4_c01121{bottom:944.728320px;}
.y3_c01121{bottom:956.133120px;}
.y2_c01121{bottom:968.602170px;}
.y8_c01121{bottom:1063.760970px;}
.h1d_c01121{height:5.829785px;}
.h1e_c01121{height:13.836023px;}
.h7_c01121{height:23.128875px;}
.h3_c01121{height:24.161414px;}
.h13_c01121{height:28.911094px;}
.h5_c01121{height:34.693313px;}
.h18_c01121{height:36.079217px;}
.he_c01121{height:37.978116px;}
.hb_c01121{height:38.927565px;}
.h20_c01121{height:40.826465px;}
.h1c_c01121{height:41.775782px;}
.h19_c01121{height:65.256469px;}
.h1a_c01121{height:68.560800px;}
.hd_c01121{height:68.597139px;}
.h10_c01121{height:68.791659px;}
.hf_c01121{height:69.180117px;}
.h2_c01121{height:69.386625px;}
.h12_c01121{height:70.346269px;}
.h4_c01121{height:71.512031px;}
.h16_c01121{height:71.900684px;}
.h6_c01121{height:72.678183px;}
.h1f_c01121{height:73.103972px;}
.h11_c01121{height:73.455293px;}
.h8_c01121{height:74.621444px;}
.h1b_c01121{height:76.176054px;}
.ha_c01121{height:76.953164px;}
.h22_c01121{height:77.924795px;}
.hc_c01121{height:80.256709px;}
.h21_c01121{height:80.331746px;}
.h17_c01121{height:83.949101px;}
.h15_c01121{height:95.819832px;}
.h9_c01121{height:97.114746px;}
.h14_c01121{height:109.036125px;}
.h1_c01121{height:1110.000000px;}
.h0_c01121{height:1263.000000px;}
.w1_c01121{width:775.500000px;}
.w0_c01121{width:892.500000px;}
.x0_c01121{left:0.000000px;}
.x1_c01121{left:58.500000px;}
.x2a_c01121{left:91.843935px;}
.x46_c01121{left:146.001885px;}
.x1d_c01121{left:147.175035px;}
.x5_c01121{left:148.318485px;}
.x10_c01121{left:149.362935px;}
.x51_c01121{left:159.069885px;}
.x71_c01121{left:167.935335px;}
.x52_c01121{left:179.251035px;}
.x1e_c01121{left:180.978585px;}
.x65_c01121{left:183.854535px;}
.x66_c01121{left:191.373585px;}
.x26_c01121{left:192.507135px;}
.x6_c01121{left:193.927785px;}
.x7f_c01121{left:201.669585px;}
.x72_c01121{left:203.174385px;}
.x7_c01121{left:206.144385px;}
.x37_c01121{left:213.391185px;}
.x67_c01121{left:222.914985px;}
.x2b_c01121{left:225.736485px;}
.x27_c01121{left:227.028435px;}
.x79_c01121{left:235.681035px;}
.x11_c01121{left:237.141285px;}
.x3d_c01121{left:247.828335px;}
.x4c_c01121{left:257.267985px;}
.x28_c01121{left:259.114335px;}
.x6a_c01121{left:267.672885px;}
.x1f_c01121{left:268.979685px;}
.x38_c01121{left:270.063735px;}
.x12_c01121{left:271.558635px;}
.x8_c01121{left:281.334885px;}
.x20_c01121{left:282.359535px;}
.x68_c01121{left:291.116085px;}
.x39_c01121{left:292.680285px;}
.x80_c01121{left:301.085385px;}
.x53_c01121{left:303.421785px;}
.x29_c01121{left:314.588985px;}
.x5f_c01121{left:322.088235px;}
.x60_c01121{left:324.850335px;}
.x9_c01121{left:325.865085px;}
.x73_c01121{left:333.933585px;}
.x13_c01121{left:336.027435px;}
.x4d_c01121{left:346.046235px;}
.x21_c01121{left:349.298385px;}
.x7c_c01121{left:356.619435px;}
.x3e_c01121{left:357.926235px;}
.xe_c01121{left:368.420235px;}
.x34_c01121{left:371.162535px;}
.x4e_c01121{left:379.518135px;}
.x3a_c01121{left:381.423885px;}
.x54_c01121{left:391.111035px;}
.xa_c01121{left:392.497035px;}
.x74_c01121{left:399.733935px;}
.x47_c01121{left:401.515935px;}
.x3f_c01121{left:403.174185px;}
.x75_c01121{left:408.173685px;}
.x76_c01121{left:411.985185px;}
.x14_c01121{left:414.623535px;}
.x7a_c01121{left:422.216835px;}
.x44_c01121{left:425.196735px;}
.x6b_c01121{left:434.883885px;}
.x22_c01121{left:436.725285px;}
.x45_c01121{left:442.526685px;}
.x40_c01121{left:444.615585px;}
.x7d_c01121{left:446.016435px;}
.x35_c01121{left:448.179585px;}
.x59_c01121{left:457.129185px;}
.x69_c01121{left:469.098285px;}
.x23_c01121{left:470.192235px;}
.x2c_c01121{left:479.701185px;}
.x15_c01121{left:480.918885px;}
.x5a_c01121{left:489.685335px;}
.x48_c01121{left:491.066385px;}
.x2d_c01121{left:492.892935px;}
.x5b_c01121{left:497.169735px;}
.x77_c01121{left:501.357435px;}
.x61_c01121{left:503.010735px;}
.x2e_c01121{left:511.064385px;}
.x2f_c01121{left:514.989735px;}
.xb_c01121{left:523.845285px;}
.x55_c01121{left:525.082785px;}
.x16_c01121{left:526.419285px;}
.x78_c01121{left:533.869035px;}
.x24_c01121{left:534.898635px;}
.xc_c01121{left:546.199485px;}
.x5c_c01121{left:555.975735px;}
.x6c_c01121{left:557.851785px;}
.x17_c01121{left:559.232835px;}
.x49_c01121{left:566.925135px;}
.x41_c01121{left:569.622885px;}
.x62_c01121{left:578.023035px;}
.x56_c01121{left:579.067485px;}
.x81_c01121{left:588.403185px;}
.x18_c01121{left:590.650485px;}
.x30_c01121{left:592.095885px;}
.x42_c01121{left:601.203885px;}
.x4f_c01121{left:602.456235px;}
.x5d_c01121{left:611.217735px;}
.x19_c01121{left:612.583935px;}
.x3b_c01121{left:622.919535px;}
.x43_c01121{left:624.067935px;}
.x31_c01121{left:625.320285px;}
.x82_c01121{left:633.591735px;}
.x4a_c01121{left:634.695585px;}
.x1a_c01121{left:637.551735px;}
.x57_c01121{left:645.095535px;}
.x1b_c01121{left:646.283535px;}
.x7e_c01121{left:655.485585px;}
.xd_c01121{left:657.356685px;}
.x1c_c01121{left:667.479435px;}
.x32_c01121{left:668.652585px;}
.x5e_c01121{left:677.077485px;}
.x3c_c01121{left:680.022735px;}
.x4b_c01121{left:682.265085px;}
.x6d_c01121{left:687.373485px;}
.x7b_c01121{left:688.675335px;}
.x58_c01121{left:690.803835px;}
.x63_c01121{left:698.961435px;}
.x2_c01121{left:702.545235px;}
.x3_c01121{left:704.074785px;}
.x4_c01121{left:705.530085px;}
.x36_c01121{left:708.509985px;}
.xf_c01121{left:710.747385px;}
.x50_c01121{left:712.529385px;}
.x33_c01121{left:715.697385px;}
.x6e_c01121{left:718.385235px;}
.x64_c01121{left:722.899635px;}
.x25_c01121{left:725.973585px;}
.x6f_c01121{left:730.522635px;}
.x70_c01121{left:738.457485px;}
@media print{
.v0_c01121{vertical-align:0.000000pt;}
.ls13_c01121{letter-spacing:-2.858246pt;}
.ls15_c01121{letter-spacing:-2.661126pt;}
.lsb_c01121{letter-spacing:-2.544080pt;}
.ls18_c01121{letter-spacing:-2.414726pt;}
.ls1d_c01121{letter-spacing:-2.396246pt;}
.lsf_c01121{letter-spacing:-2.365446pt;}
.ls12_c01121{letter-spacing:-2.303846pt;}
.ls11_c01121{letter-spacing:-1.296736pt;}
.ls8_c01121{letter-spacing:-0.642400pt;}
.ls5_c01121{letter-spacing:0.000000pt;}
.ls1b_c01121{letter-spacing:0.589600pt;}
.ls4_c01121{letter-spacing:1.414059pt;}
.ls17_c01121{letter-spacing:2.091162pt;}
.ls3_c01121{letter-spacing:2.220318pt;}
.ls0_c01121{letter-spacing:2.415747pt;}
.ls1a_c01121{letter-spacing:2.560560pt;}
.ls1f_c01121{letter-spacing:2.626385pt;}
.lsc_c01121{letter-spacing:3.106400pt;}
.lse_c01121{letter-spacing:3.115209pt;}
.ls10_c01121{letter-spacing:3.185609pt;}
.ls14_c01121{letter-spacing:3.256000pt;}
.ls6_c01121{letter-spacing:3.291209pt;}
.ls7_c01121{letter-spacing:3.379209pt;}
.ls9_c01121{letter-spacing:3.484800pt;}
.ls20_c01121{letter-spacing:3.528800pt;}
.ls1e_c01121{letter-spacing:3.801609pt;}
.ls2_c01121{letter-spacing:33.910976pt;}
.ls16_c01121{letter-spacing:48.153776pt;}
.lsd_c01121{letter-spacing:50.688176pt;}
.lsa_c01121{letter-spacing:51.955376pt;}
.ls1c_c01121{letter-spacing:54.489776pt;}
.ls19_c01121{letter-spacing:55.756800pt;}
.ls1_c01121{letter-spacing:139.751685pt;}
.ws2_c01121{word-spacing:-17.658204pt;}
.ws1_c01121{word-spacing:-15.461248pt;}
.ws3_c01121{word-spacing:0.000000pt;}
.ws0_c01121{word-spacing:1.217981pt;}
._8_c01121{margin-left:-9.232608pt;}
._0_c01121{margin-left:-5.134388pt;}
._1_c01121{margin-left:-1.842782pt;}
._9_c01121{width:1.893399pt;}
._d_c01121{width:5.068800pt;}
._6_c01121{width:6.384146pt;}
._c_c01121{width:13.728000pt;}
._2_c01121{width:22.182815pt;}
._e_c01121{width:24.684127pt;}
._7_c01121{width:28.041948pt;}
._f_c01121{width:34.372800pt;}
._a_c01121{width:37.190648pt;}
._5_c01121{width:197.041504pt;}
._3_c01121{width:201.414400pt;}
._4_c01121{width:333.762880pt;}
._b_c01121{width:795.363360pt;}
.fs1e_c01121{font-size:5.280000pt;}
.fs1f_c01121{font-size:11.792000pt;}
.fs13_c01121{font-size:14.080000pt;}
.fs5_c01121{font-size:19.712000pt;}
.fs1_c01121{font-size:20.592000pt;}
.fs15_c01121{font-size:23.936000pt;}
.fs11_c01121{font-size:24.640000pt;}
.fs3_c01121{font-size:29.568000pt;}
.fs12_c01121{font-size:40.832176pt;}
.fs19_c01121{font-size:48.153776pt;}
.fsc_c01121{font-size:50.688176pt;}
.fs9_c01121{font-size:51.955376pt;}
.fs20_c01121{font-size:54.489776pt;}
.fs1a_c01121{font-size:55.616000pt;}
.fs1d_c01121{font-size:55.756800pt;}
.fs1b_c01121{font-size:58.432176pt;}
.fsd_c01121{font-size:58.960000pt;}
.fs0_c01121{font-size:59.136000pt;}
.fsb_c01121{font-size:62.128000pt;}
.fse_c01121{font-size:62.304176pt;}
.fs10_c01121{font-size:63.712176pt;}
.fs2_c01121{font-size:64.768000pt;}
.fs17_c01121{font-size:65.120000pt;}
.fs4_c01121{font-size:65.824176pt;}
.fsf_c01121{font-size:66.528000pt;}
.fs6_c01121{font-size:67.584176pt;}
.fs21_c01121{font-size:68.464176pt;}
.fs1c_c01121{font-size:68.992176pt;}
.fs8_c01121{font-size:69.696000pt;}
.fs22_c01121{font-size:70.576000pt;}
.fsa_c01121{font-size:72.688000pt;}
.fs18_c01121{font-size:76.032176pt;}
.fs16_c01121{font-size:81.664176pt;}
.fs7_c01121{font-size:88.000000pt;}
.fs14_c01121{font-size:92.928000pt;}
.y0_c01121{bottom:0.000000pt;}
.y1_c01121{bottom:68.000000pt;}
.y23_c01121{bottom:115.870507pt;}
.y22_c01121{bottom:143.432107pt;}
.y21_c01121{bottom:173.211307pt;}
.y20_c01121{bottom:202.035707pt;}
.y1f_c01121{bottom:230.864507pt;}
.y1e_c01121{bottom:258.747307pt;}
.y1d_c01121{bottom:284.724907pt;}
.y1c_c01121{bottom:288.205307pt;}
.y1b_c01121{bottom:316.404907pt;}
.y1a_c01121{bottom:345.233707pt;}
.y19_c01121{bottom:365.504507pt;}
.y18_c01121{bottom:372.478507pt;}
.y17_c01121{bottom:401.307307pt;}
.y16_c01121{bottom:429.185707pt;}
.y15_c01121{bottom:451.990907pt;}
.y12_c01121{bottom:456.430507pt;}
.y14_c01121{bottom:457.693307pt;}
.y13_c01121{bottom:493.496107pt;}
.y11_c01121{bottom:514.400507pt;}
.y10_c01121{bottom:543.229307pt;}
.yf_c01121{bottom:572.058107pt;}
.ye_c01121{bottom:600.891307pt;}
.yd_c01121{bottom:657.281707pt;}
.yc_c01121{bottom:685.789307pt;}
.yb_c01121{bottom:742.179707pt;}
.ya_c01121{bottom:771.012907pt;}
.y9_c01121{bottom:799.520507pt;}
.y7_c01121{bottom:820.750507pt;}
.y6_c01121{bottom:827.720107pt;}
.y5_c01121{bottom:838.803707pt;}
.y4_c01121{bottom:839.758507pt;}
.y3_c01121{bottom:849.896107pt;}
.y2_c01121{bottom:860.979707pt;}
.y8_c01121{bottom:945.565307pt;}
.h1d_c01121{height:5.182031pt;}
.h1e_c01121{height:12.298688pt;}
.h7_c01121{height:20.559000pt;}
.h3_c01121{height:21.476813pt;}
.h13_c01121{height:25.698750pt;}
.h5_c01121{height:30.838500pt;}
.h18_c01121{height:32.070415pt;}
.he_c01121{height:33.758325pt;}
.hb_c01121{height:34.602280pt;}
.h20_c01121{height:36.290191pt;}
.h1c_c01121{height:37.134029pt;}
.h19_c01121{height:58.005750pt;}
.h1a_c01121{height:60.942934pt;}
.hd_c01121{height:60.975234pt;}
.h10_c01121{height:61.148141pt;}
.hf_c01121{height:61.493438pt;}
.h2_c01121{height:61.677000pt;}
.h12_c01121{height:62.530016pt;}
.h4_c01121{height:63.566250pt;}
.h16_c01121{height:63.911719pt;}
.h6_c01121{height:64.602829pt;}
.h1f_c01121{height:64.981309pt;}
.h11_c01121{height:65.293594pt;}
.h8_c01121{height:66.330173pt;}
.h1b_c01121{height:67.712048pt;}
.ha_c01121{height:68.402813pt;}
.h22_c01121{height:69.266484pt;}
.hc_c01121{height:71.339297pt;}
.h21_c01121{height:71.405996pt;}
.h17_c01121{height:74.621423pt;}
.h15_c01121{height:85.173184pt;}
.h9_c01121{height:86.324219pt;}
.h14_c01121{height:96.921000pt;}
.h1_c01121{height:986.666667pt;}
.h0_c01121{height:1122.666667pt;}
.w1_c01121{width:689.333333pt;}
.w0_c01121{width:793.333333pt;}
.x0_c01121{left:0.000000pt;}
.x1_c01121{left:52.000000pt;}
.x2a_c01121{left:81.639053pt;}
.x46_c01121{left:129.779453pt;}
.x1d_c01121{left:130.822253pt;}
.x5_c01121{left:131.838653pt;}
.x10_c01121{left:132.767053pt;}
.x51_c01121{left:141.395453pt;}
.x71_c01121{left:149.275853pt;}
.x52_c01121{left:159.334253pt;}
.x1e_c01121{left:160.869853pt;}
.x65_c01121{left:163.426253pt;}
.x66_c01121{left:170.109853pt;}
.x26_c01121{left:171.117453pt;}
.x6_c01121{left:172.380253pt;}
.x7f_c01121{left:179.261853pt;}
.x72_c01121{left:180.599453pt;}
.x7_c01121{left:183.239453pt;}
.x37_c01121{left:189.681053pt;}
.x67_c01121{left:198.146653pt;}
.x2b_c01121{left:200.654653pt;}
.x27_c01121{left:201.803053pt;}
.x79_c01121{left:209.494253pt;}
.x11_c01121{left:210.792253pt;}
.x3d_c01121{left:220.291853pt;}
.x4c_c01121{left:228.682653pt;}
.x28_c01121{left:230.323853pt;}
.x6a_c01121{left:237.931453pt;}
.x1f_c01121{left:239.093053pt;}
.x38_c01121{left:240.056653pt;}
.x12_c01121{left:241.385453pt;}
.x8_c01121{left:250.075453pt;}
.x20_c01121{left:250.986253pt;}
.x68_c01121{left:258.769853pt;}
.x39_c01121{left:260.160253pt;}
.x80_c01121{left:267.631453pt;}
.x53_c01121{left:269.708253pt;}
.x29_c01121{left:279.634653pt;}
.x5f_c01121{left:286.300653pt;}
.x60_c01121{left:288.755853pt;}
.x9_c01121{left:289.657853pt;}
.x73_c01121{left:296.829853pt;}
.x13_c01121{left:298.691053pt;}
.x4d_c01121{left:307.596653pt;}
.x21_c01121{left:310.487453pt;}
.x7c_c01121{left:316.995053pt;}
.x3e_c01121{left:318.156653pt;}
.xe_c01121{left:327.484653pt;}
.x34_c01121{left:329.922253pt;}
.x4e_c01121{left:337.349453pt;}
.x3a_c01121{left:339.043453pt;}
.x54_c01121{left:347.654253pt;}
.xa_c01121{left:348.886253pt;}
.x74_c01121{left:355.319053pt;}
.x47_c01121{left:356.903053pt;}
.x3f_c01121{left:358.377053pt;}
.x75_c01121{left:362.821053pt;}
.x76_c01121{left:366.209053pt;}
.x14_c01121{left:368.554253pt;}
.x7a_c01121{left:375.303853pt;}
.x44_c01121{left:377.952653pt;}
.x6b_c01121{left:386.563453pt;}
.x22_c01121{left:388.200253pt;}
.x45_c01121{left:393.357053pt;}
.x40_c01121{left:395.213853pt;}
.x7d_c01121{left:396.459053pt;}
.x35_c01121{left:398.381853pt;}
.x59_c01121{left:406.337053pt;}
.x69_c01121{left:416.976253pt;}
.x23_c01121{left:417.948653pt;}
.x2c_c01121{left:426.401053pt;}
.x15_c01121{left:427.483453pt;}
.x5a_c01121{left:435.275853pt;}
.x48_c01121{left:436.503453pt;}
.x2d_c01121{left:438.127053pt;}
.x5b_c01121{left:441.928653pt;}
.x77_c01121{left:445.651053pt;}
.x61_c01121{left:447.120653pt;}
.x2e_c01121{left:454.279453pt;}
.x2f_c01121{left:457.768653pt;}
.xb_c01121{left:465.640253pt;}
.x55_c01121{left:466.740253pt;}
.x16_c01121{left:467.928253pt;}
.x78_c01121{left:474.550253pt;}
.x24_c01121{left:475.465453pt;}
.xc_c01121{left:485.510653pt;}
.x5c_c01121{left:494.200653pt;}
.x6c_c01121{left:495.868253pt;}
.x17_c01121{left:497.095853pt;}
.x49_c01121{left:503.933453pt;}
.x41_c01121{left:506.331453pt;}
.x62_c01121{left:513.798253pt;}
.x56_c01121{left:514.726653pt;}
.x81_c01121{left:523.025053pt;}
.x18_c01121{left:525.022653pt;}
.x30_c01121{left:526.307453pt;}
.x42_c01121{left:534.403453pt;}
.x4f_c01121{left:535.516653pt;}
.x5d_c01121{left:543.304653pt;}
.x19_c01121{left:544.519053pt;}
.x3b_c01121{left:553.706253pt;}
.x43_c01121{left:554.727053pt;}
.x31_c01121{left:555.840253pt;}
.x82_c01121{left:563.192653pt;}
.x4a_c01121{left:564.173853pt;}
.x1a_c01121{left:566.712653pt;}
.x57_c01121{left:573.418253pt;}
.x1b_c01121{left:574.474253pt;}
.x7e_c01121{left:582.653853pt;}
.xd_c01121{left:584.317053pt;}
.x1c_c01121{left:593.315053pt;}
.x32_c01121{left:594.357853pt;}
.x5e_c01121{left:601.846653pt;}
.x3c_c01121{left:604.464653pt;}
.x4b_c01121{left:606.457853pt;}
.x6d_c01121{left:610.998653pt;}
.x7b_c01121{left:612.155853pt;}
.x58_c01121{left:614.047853pt;}
.x63_c01121{left:621.299053pt;}
.x2_c01121{left:624.484653pt;}
.x3_c01121{left:625.844253pt;}
.x4_c01121{left:627.137853pt;}
.x36_c01121{left:629.786653pt;}
.xf_c01121{left:631.775453pt;}
.x50_c01121{left:633.359453pt;}
.x33_c01121{left:636.175453pt;}
.x6e_c01121{left:638.564653pt;}
.x64_c01121{left:642.577453pt;}
.x25_c01121{left:645.309853pt;}
.x6f_c01121{left:649.353453pt;}
.x70_c01121{left:656.406653pt;}
}





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

.ir_c01122:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01122{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01122;src:url('chunks/assets/font_0248cea8127d325a43715192.woff2')format("woff");}.ff1_c01122{font-family:ff1_c01122;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01122;src:url('chunks/assets/font_7386e817b95b8416aed1cbda.woff2')format("woff");}.ff2_c01122{font-family:ff2_c01122;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01122;src:url('chunks/assets/font_7ca2060eca237ffe9b287f7f.woff2')format("woff");}.ff3_c01122{font-family:ff3_c01122;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01122;src:url('chunks/assets/font_5386b8e55eb4ceab48e9f12c.woff2')format("woff");}.ff4_c01122{font-family:ff4_c01122;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01122;src:url('chunks/assets/font_0c55ed5348e34b046113b196.woff2')format("woff");}.ff5_c01122{font-family:ff5_c01122;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01122;src:url('chunks/assets/font_037f2b4489a377e67381036a.woff2')format("woff");}.ff6_c01122{font-family:ff6_c01122;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01122;src:url('chunks/assets/font_4738172588f5291599c4febe.woff2')format("woff");}.ff7_c01122{font-family:ff7_c01122;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m68_c01122{transform:matrix(0.080896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080896,0.000000,0.000000,0.250000,0,0);}
.m43_c01122{transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);}
.m44_c01122{transform:matrix(0.132275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132275,0.000000,0.000000,0.250000,0,0);}
.m59_c01122{transform:matrix(0.153657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153657,0.000000,0.000000,0.250000,0,0);}
.m4a_c01122{transform:matrix(0.156919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156919,0.000000,0.000000,0.250000,0,0);}
.m27_c01122{transform:matrix(0.157830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157830,0.000000,0.000000,0.250000,0,0);}
.m40_c01122{transform:matrix(0.168657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168657,0.000000,0.000000,0.250000,0,0);}
.m30_c01122{transform:matrix(0.170457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170457,0.000000,0.000000,0.250000,0,0);}
.m1d_c01122{transform:matrix(0.198031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198031,0.000000,0.000000,0.250000,0,0);}
.m4c_c01122{transform:matrix(0.210140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210140,0.000000,0.000000,0.250000,0,0);}
.m3d_c01122{transform:matrix(0.222149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222149,0.000000,0.000000,0.250000,0,0);}
.m1a_c01122{transform:matrix(0.222741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222741,0.000000,0.000000,0.250000,0,0);}
.m17_c01122{transform:matrix(0.232172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232172,0.000000,0.000000,0.250000,0,0);}
.m3e_c01122{transform:matrix(0.234596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234596,0.000000,0.000000,0.250000,0,0);}
.m64_c01122{transform:matrix(0.239440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239440,0.000000,0.000000,0.250000,0,0);}
.m2_c01122{transform:matrix(0.242032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242032,0.000000,0.000000,0.250000,0,0);}
.m0_c01122{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01122{transform:matrix(0.250645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250645,0.000000,0.000000,0.250000,0,0);}
.m79_c01122{transform:matrix(0.251003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251003,0.000000,0.000000,0.250000,0,0);}
.m2e_c01122{transform:matrix(0.253735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253735,0.000000,0.000000,0.250000,0,0);}
.m16_c01122{transform:matrix(0.253796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253796,0.000000,0.000000,0.250000,0,0);}
.m45_c01122{transform:matrix(0.253952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253952,0.000000,0.000000,0.250000,0,0);}
.m61_c01122{transform:matrix(0.255673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255673,0.000000,0.000000,0.250000,0,0);}
.m26_c01122{transform:matrix(0.256533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256533,0.000000,0.000000,0.250000,0,0);}
.m6d_c01122{transform:matrix(0.256975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256975,0.000000,0.000000,0.250000,0,0);}
.m38_c01122{transform:matrix(0.258264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258264,0.000000,0.000000,0.250000,0,0);}
.md_c01122{transform:matrix(0.259133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259133,0.000000,0.000000,0.250000,0,0);}
.m71_c01122{transform:matrix(0.259333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259333,0.000000,0.000000,0.250000,0,0);}
.m1c_c01122{transform:matrix(0.259747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259747,0.000000,0.000000,0.250000,0,0);}
.m57_c01122{transform:matrix(0.260182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260182,0.000000,0.000000,0.250000,0,0);}
.m76_c01122{transform:matrix(0.260275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260275,0.000000,0.000000,0.250000,0,0);}
.m54_c01122{transform:matrix(0.260298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260298,0.000000,0.000000,0.250000,0,0);}
.m46_c01122{transform:matrix(0.261366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261366,0.000000,0.000000,0.250000,0,0);}
.m21_c01122{transform:matrix(0.261403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261403,0.000000,0.000000,0.250000,0,0);}
.m22_c01122{transform:matrix(0.262548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262548,0.000000,0.000000,0.250000,0,0);}
.m53_c01122{transform:matrix(0.263101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263101,0.000000,0.000000,0.250000,0,0);}
.m1e_c01122{transform:matrix(0.264447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264447,0.000000,0.000000,0.250000,0,0);}
.m55_c01122{transform:matrix(0.264448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264448,0.000000,0.000000,0.250000,0,0);}
.m5_c01122{transform:matrix(0.265194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265194,0.000000,0.000000,0.250000,0,0);}
.m58_c01122{transform:matrix(0.265609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265609,0.000000,0.000000,0.250000,0,0);}
.m29_c01122{transform:matrix(0.265881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265881,0.000000,0.000000,0.250000,0,0);}
.m20_c01122{transform:matrix(0.266311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266311,0.000000,0.000000,0.250000,0,0);}
.m18_c01122{transform:matrix(0.267487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267487,0.000000,0.000000,0.250000,0,0);}
.m52_c01122{transform:matrix(0.268342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268342,0.000000,0.000000,0.250000,0,0);}
.ma_c01122{transform:matrix(0.269336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269336,0.000000,0.000000,0.250000,0,0);}
.m32_c01122{transform:matrix(0.269613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269613,0.000000,0.000000,0.250000,0,0);}
.m10_c01122{transform:matrix(0.270308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270308,0.000000,0.000000,0.250000,0,0);}
.m2b_c01122{transform:matrix(0.271969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271969,0.000000,0.000000,0.250000,0,0);}
.m7_c01122{transform:matrix(0.272665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272665,0.000000,0.000000,0.250000,0,0);}
.m70_c01122{transform:matrix(0.274017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274017,0.000000,0.000000,0.250000,0,0);}
.m36_c01122{transform:matrix(0.274818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274818,0.000000,0.000000,0.250000,0,0);}
.m14_c01122{transform:matrix(0.275119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275119,0.000000,0.000000,0.250000,0,0);}
.m15_c01122{transform:matrix(0.275711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275711,0.000000,0.000000,0.250000,0,0);}
.m28_c01122{transform:matrix(0.276508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276508,0.000000,0.000000,0.250000,0,0);}
.m75_c01122{transform:matrix(0.277772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277772,0.000000,0.000000,0.250000,0,0);}
.m2f_c01122{transform:matrix(0.277830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277830,0.000000,0.000000,0.250000,0,0);}
.m42_c01122{transform:matrix(0.278665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278665,0.000000,0.000000,0.250000,0,0);}
.m8_c01122{transform:matrix(0.278960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278960,0.000000,0.000000,0.250000,0,0);}
.m39_c01122{transform:matrix(0.279941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279941,0.000000,0.000000,0.250000,0,0);}
.m19_c01122{transform:matrix(0.281876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281876,0.000000,0.000000,0.250000,0,0);}
.m47_c01122{transform:matrix(0.284028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284028,0.000000,0.000000,0.250000,0,0);}
.m4e_c01122{transform:matrix(0.285067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285067,0.000000,0.000000,0.250000,0,0);}
.m24_c01122{transform:matrix(0.285358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285358,0.000000,0.000000,0.250000,0,0);}
.m6a_c01122{transform:matrix(0.289237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289237,0.000000,0.000000,0.250000,0,0);}
.m1f_c01122{transform:matrix(0.289369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289369,0.000000,0.000000,0.250000,0,0);}
.m6f_c01122{transform:matrix(0.290700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290700,0.000000,0.000000,0.250000,0,0);}
.m50_c01122{transform:matrix(0.291222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291222,0.000000,0.000000,0.250000,0,0);}
.m13_c01122{transform:matrix(0.292519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292519,0.000000,0.000000,0.250000,0,0);}
.m1_c01122{transform:matrix(0.292577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292577,0.000000,0.000000,0.250000,0,0);}
.m37_c01122{transform:matrix(0.292626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292626,0.000000,0.000000,0.250000,0,0);}
.me_c01122{transform:matrix(0.293433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293433,0.000000,0.000000,0.250000,0,0);}
.m4f_c01122{transform:matrix(0.293956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293956,0.000000,0.000000,0.250000,0,0);}
.m6e_c01122{transform:matrix(0.294722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294722,0.000000,0.000000,0.250000,0,0);}
.m23_c01122{transform:matrix(0.296050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296050,0.000000,0.000000,0.250000,0,0);}
.m69_c01122{transform:matrix(0.297042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297042,0.000000,0.000000,0.250000,0,0);}
.m2d_c01122{transform:matrix(0.298525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298525,0.000000,0.000000,0.250000,0,0);}
.mc_c01122{transform:matrix(0.298684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298684,0.000000,0.000000,0.250000,0,0);}
.m35_c01122{transform:matrix(0.299611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299611,0.000000,0.000000,0.250000,0,0);}
.m6b_c01122{transform:matrix(0.299618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299618,0.000000,0.000000,0.250000,0,0);}
.m6c_c01122{transform:matrix(0.300105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300105,0.000000,0.000000,0.250000,0,0);}
.m74_c01122{transform:matrix(0.300678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300678,0.000000,0.000000,0.250000,0,0);}
.m41_c01122{transform:matrix(0.302984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302984,0.000000,0.000000,0.250000,0,0);}
.m51_c01122{transform:matrix(0.303189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303189,0.000000,0.000000,0.250000,0,0);}
.m4b_c01122{transform:matrix(0.303909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303909,0.000000,0.000000,0.250000,0,0);}
.m4d_c01122{transform:matrix(0.305008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305008,0.000000,0.000000,0.250000,0,0);}
.m56_c01122{transform:matrix(0.305525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305525,0.000000,0.000000,0.250000,0,0);}
.mf_c01122{transform:matrix(0.305741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305741,0.000000,0.000000,0.250000,0,0);}
.mb_c01122{transform:matrix(0.308302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308302,0.000000,0.000000,0.250000,0,0);}
.m33_c01122{transform:matrix(0.311109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311109,0.000000,0.000000,0.250000,0,0);}
.m11_c01122{transform:matrix(0.312570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312570,0.000000,0.000000,0.250000,0,0);}
.m3c_c01122{transform:matrix(0.315700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315700,0.000000,0.000000,0.250000,0,0);}
.m78_c01122{transform:matrix(0.316121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316121,0.000000,0.000000,0.250000,0,0);}
.m2c_c01122{transform:matrix(0.318270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318270,0.000000,0.000000,0.250000,0,0);}
.m72_c01122{transform:matrix(0.331190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331190,0.000000,0.000000,0.250000,0,0);}
.m5a_c01122{transform:matrix(0.331198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331198,0.000000,0.000000,0.250000,0,0);}
.m49_c01122{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);}
.m12_c01122{transform:matrix(0.335949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335949,0.000000,0.000000,0.250000,0,0);}
.m9_c01122{transform:matrix(0.337949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337949,0.000000,0.000000,0.250000,0,0);}
.m3b_c01122{transform:matrix(0.339894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339894,0.000000,0.000000,0.250000,0,0);}
.m34_c01122{transform:matrix(0.345543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345543,0.000000,0.000000,0.250000,0,0);}
.m3_c01122{transform:matrix(0.348169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348169,0.000000,0.000000,0.250000,0,0);}
.m4_c01122{transform:matrix(0.350740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350740,0.000000,0.000000,0.250000,0,0);}
.m5d_c01122{transform:matrix(0.357351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357351,0.000000,0.000000,0.250000,0,0);}
.m48_c01122{transform:matrix(0.358474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358474,0.000000,0.000000,0.250000,0,0);}
.m31_c01122{transform:matrix(0.359542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359542,0.000000,0.000000,0.250000,0,0);}
.m6_c01122{transform:matrix(0.362043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362043,0.000000,0.000000,0.250000,0,0);}
.m65_c01122{transform:matrix(0.365085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365085,0.000000,0.000000,0.250000,0,0);}
.m77_c01122{transform:matrix(0.366021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366021,0.000000,0.000000,0.250000,0,0);}
.m73_c01122{transform:matrix(0.371953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371953,0.000000,0.000000,0.250000,0,0);}
.m1b_c01122{transform:matrix(0.373079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373079,0.000000,0.000000,0.250000,0,0);}
.m25_c01122{transform:matrix(0.379741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379741,0.000000,0.000000,0.250000,0,0);}
.m3f_c01122{transform:matrix(0.383670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383670,0.000000,0.000000,0.250000,0,0);}
.m5e_c01122{transform:matrix(0.385108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385108,0.000000,0.000000,0.250000,0,0);}
.m5c_c01122{transform:matrix(0.391188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391188,0.000000,0.000000,0.250000,0,0);}
.m5b_c01122{transform:matrix(0.393616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393616,0.000000,0.000000,0.250000,0,0);}
.m67_c01122{transform:matrix(0.397814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397814,0.000000,0.000000,0.250000,0,0);}
.m60_c01122{transform:matrix(0.418878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418878,0.000000,0.000000,0.250000,0,0);}
.m3a_c01122{transform:matrix(0.421602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421602,0.000000,0.000000,0.250000,0,0);}
.m63_c01122{transform:matrix(0.445732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445732,0.000000,0.000000,0.250000,0,0);}
.m66_c01122{transform:matrix(0.510276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510276,0.000000,0.000000,0.250000,0,0);}
.m5f_c01122{transform:matrix(0.594413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594413,0.000000,0.000000,0.250000,0,0);}
.m62_c01122{transform:matrix(0.638123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638123,0.000000,0.000000,0.250000,0,0);}
.v0_c01122{vertical-align:0.000000px;}
.v1_c01122{vertical-align:32.769000px;}
.ls27_c01122{letter-spacing:-3.465000px;}
.ls1e_c01122{letter-spacing:-3.160080px;}
.ls26_c01122{letter-spacing:-2.882880px;}
.ls7_c01122{letter-spacing:-2.695777px;}
.ls1f_c01122{letter-spacing:-2.626477px;}
.ls14_c01122{letter-spacing:-2.619540px;}
.ls10_c01122{letter-spacing:-2.598750px;}
.ls2a_c01122{letter-spacing:-2.537020px;}
.lsd_c01122{letter-spacing:-2.383927px;}
.ls19_c01122{letter-spacing:-1.277100px;}
.ls34_c01122{letter-spacing:-1.178100px;}
.ls32_c01122{letter-spacing:-0.803880px;}
.ls22_c01122{letter-spacing:-0.749390px;}
.ls6_c01122{letter-spacing:-0.450253px;}
.ls17_c01122{letter-spacing:-0.261954px;}
.ls4_c01122{letter-spacing:0.000000px;}
.ls20_c01122{letter-spacing:0.418177px;}
.ls2e_c01122{letter-spacing:0.673210px;}
.ls33_c01122{letter-spacing:0.702900px;}
.ls2f_c01122{letter-spacing:0.712800px;}
.ls1a_c01122{letter-spacing:0.783882px;}
.ls2d_c01122{letter-spacing:0.801900px;}
.ls2c_c01122{letter-spacing:1.148400px;}
.ls2_c01122{letter-spacing:1.191802px;}
.ls30_c01122{letter-spacing:1.425600px;}
.ls13_c01122{letter-spacing:1.643400px;}
.ls31_c01122{letter-spacing:1.663200px;}
.ls1_c01122{letter-spacing:1.698642px;}
.ls3_c01122{letter-spacing:2.331331px;}
.lsb_c01122{letter-spacing:2.457008px;}
.ls1c_c01122{letter-spacing:2.847009px;}
.lsf_c01122{letter-spacing:3.049011px;}
.ls1d_c01122{letter-spacing:3.151772px;}
.lsc_c01122{letter-spacing:3.316500px;}
.ls12_c01122{letter-spacing:3.336310px;}
.ls0_c01122{letter-spacing:3.378375px;}
.ls18_c01122{letter-spacing:3.465277px;}
.ls16_c01122{letter-spacing:3.475930px;}
.ls9_c01122{letter-spacing:3.504610px;}
.ls11_c01122{letter-spacing:3.524400px;}
.ls2b_c01122{letter-spacing:3.638298px;}
.lse_c01122{letter-spacing:3.712500px;}
.ls1b_c01122{letter-spacing:3.722400px;}
.lsa_c01122{letter-spacing:3.742200px;}
.ls8_c01122{letter-spacing:3.752110px;}
.ls5_c01122{letter-spacing:3.762000px;}
.ls29_c01122{letter-spacing:3.960000px;}
.ls24_c01122{letter-spacing:4.036032px;}
.ls25_c01122{letter-spacing:4.059000px;}
.ls28_c01122{letter-spacing:4.078810px;}
.ls15_c01122{letter-spacing:4.118400px;}
.ls21_c01122{letter-spacing:31.363200px;}
.ls23_c01122{letter-spacing:59.875398px;}
.sc__c01122{text-shadow:none;}
.sc0_c01122{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01122{-webkit-text-stroke:0px transparent;}
.sc0_c01122{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01122{word-spacing:0.000000px;}
._7_c01122{margin-left:-15.530882px;}
._c_c01122{margin-left:-2.541726px;}
._2_c01122{width:4.237200px;}
._9_c01122{width:5.533836px;}
._b_c01122{width:11.290158px;}
._a_c01122{width:14.576958px;}
._5_c01122{width:15.963750px;}
._4_c01122{width:19.126998px;}
._0_c01122{width:26.418150px;}
._1_c01122{width:32.668614px;}
._3_c01122{width:49.588594px;}
._8_c01122{width:78.304446px;}
._6_c01122{width:337.313592px;}
.fc0_c01122{color:transparent;}
.fs20_c01122{font-size:4.554198px;}
.fs22_c01122{font-size:13.464198px;}
.fs27_c01122{font-size:14.058000px;}
.fs23_c01122{font-size:14.256000px;}
.fs21_c01122{font-size:16.038000px;}
.fs25_c01122{font-size:16.434000px;}
.fs12_c01122{font-size:22.176000px;}
.fs1f_c01122{font-size:22.968000px;}
.fs16_c01122{font-size:25.344000px;}
.fs0_c01122{font-size:27.720000px;}
.fs24_c01122{font-size:28.512000px;}
.fs17_c01122{font-size:31.363200px;}
.fs1e_c01122{font-size:32.670000px;}
.fsb_c01122{font-size:32.868000px;}
.fs26_c01122{font-size:33.264000px;}
.fs28_c01122{font-size:33.660000px;}
.fs14_c01122{font-size:37.818000px;}
.fs19_c01122{font-size:42.570000px;}
.fsd_c01122{font-size:42.966198px;}
.fs18_c01122{font-size:59.875398px;}
.fs6_c01122{font-size:66.330000px;}
.fsa_c01122{font-size:66.726198px;}
.fs7_c01122{font-size:68.112198px;}
.fs15_c01122{font-size:69.696198px;}
.fs4_c01122{font-size:70.092198px;}
.fs9_c01122{font-size:70.488000px;}
.fsf_c01122{font-size:73.260000px;}
.fse_c01122{font-size:73.854000px;}
.fs8_c01122{font-size:74.250000px;}
.fs10_c01122{font-size:74.448000px;}
.fs5_c01122{font-size:74.844000px;}
.fs2_c01122{font-size:75.042198px;}
.fs1_c01122{font-size:75.240000px;}
.fs3_c01122{font-size:77.022198px;}
.fs1c_c01122{font-size:79.200000px;}
.fs1a_c01122{font-size:81.180000px;}
.fs11_c01122{font-size:81.576198px;}
.fsc_c01122{font-size:82.368000px;}
.fs1d_c01122{font-size:88.308000px;}
.fs13_c01122{font-size:90.288000px;}
.fs1b_c01122{font-size:99.000000px;}
.y0_c01122{bottom:0.000000px;}
.y1_c01122{bottom:76.500000px;}
.y1d_c01122{bottom:89.006985px;}
.y1c_c01122{bottom:153.871785px;}
.y1b_c01122{bottom:186.665535px;}
.y1a_c01122{bottom:215.885385px;}
.y19_c01122{bottom:220.523535px;}
.y18_c01122{bottom:237.274335px;}
.y2_c01122{bottom:248.679135px;}
.y17_c01122{bottom:284.670585px;}
.y16_c01122{bottom:348.466185px;}
.y15_c01122{bottom:411.548985px;}
.y14_c01122{bottom:442.912185px;}
.y13_c01122{bottom:501.723135px;}
.y11_c01122{bottom:508.489785px;}
.y12_c01122{bottom:512.415135px;}
.y10_c01122{bottom:528.453135px;}
.yf_c01122{bottom:572.646735px;}
.ye_c01122{bottom:637.506585px;}
.yb_c01122{bottom:702.019935px;}
.yd_c01122{bottom:711.286335px;}
.ya_c01122{bottom:732.665385px;}
.yc_c01122{bottom:733.026735px;}
.y9_c01122{bottom:764.746335px;}
.y8_c01122{bottom:828.541935px;}
.y7_c01122{bottom:860.256585px;}
.y6_c01122{bottom:892.337535px;}
.y5_c01122{bottom:924.408585px;}
.y4_c01122{bottom:996.406335px;}
.y3_c01122{bottom:1075.878585px;}
.h23_c01122{height:4.469696px;}
.h25_c01122{height:13.214374px;}
.h2b_c01122{height:13.797158px;}
.h26_c01122{height:13.984523px;}
.h28_c01122{height:16.129072px;}
.h24_c01122{height:16.163297px;}
.h1a_c01122{height:20.887891px;}
.h22_c01122{height:22.541836px;}
.h15_c01122{height:23.128875px;}
.h19_c01122{height:24.873750px;}
.h2_c01122{height:28.911094px;}
.h27_c01122{height:29.737125px;}
.h21_c01122{height:32.063818px;}
.h2a_c01122{height:32.646797px;}
.h2c_c01122{height:33.035449px;}
.h29_c01122{height:33.523875px;}
.hf_c01122{height:34.280297px;}
.h17_c01122{height:37.116299px;}
.h1b_c01122{height:39.877015px;}
.h1c_c01122{height:44.399180px;}
.he_c01122{height:65.488114px;}
.hd_c01122{height:66.848397px;}
.h6_c01122{height:68.791659px;}
.h9_c01122{height:69.180117px;}
.ha_c01122{height:71.038894px;}
.h18_c01122{height:72.690957px;}
.hb_c01122{height:72.872314px;}
.h13_c01122{height:73.066641px;}
.hc_c01122{height:73.103972px;}
.h7_c01122{height:73.455293px;}
.h4_c01122{height:73.649813px;}
.h3_c01122{height:73.843945px;}
.h8_c01122{height:75.593075px;}
.h12_c01122{height:76.407891px;}
.h11_c01122{height:77.027414px;}
.h1f_c01122{height:77.691797px;}
.h14_c01122{height:80.062577px;}
.h5_c01122{height:80.331746px;}
.h10_c01122{height:80.839688px;}
.h1d_c01122{height:81.814219px;}
.h20_c01122{height:86.626354px;}
.h16_c01122{height:88.612734px;}
.h1e_c01122{height:97.163086px;}
.h1_c01122{height:1110.000000px;}
.h0_c01122{height:1263.000000px;}
.w1_c01122{width:775.500000px;}
.w0_c01122{width:892.500000px;}
.x0_c01122{left:0.000000px;}
.x2_c01122{left:52.268685px;}
.x1_c01122{left:58.500000px;}
.x45_c01122{left:89.363985px;}
.x2f_c01122{left:90.502485px;}
.x5_c01122{left:92.705235px;}
.x49_c01122{left:143.561535px;}
.x11_c01122{left:145.358385px;}
.x6_c01122{left:147.095835px;}
.x4_c01122{left:155.268285px;}
.x26_c01122{left:166.742385px;}
.x1c_c01122{left:177.790785px;}
.x7_c01122{left:181.107285px;}
.x64_c01122{left:188.472885px;}
.x61_c01122{left:189.839085px;}
.x30_c01122{left:191.170635px;}
.x12_c01122{left:201.303285px;}
.x37_c01122{left:202.852635px;}
.x34_c01122{left:211.287435px;}
.x8_c01122{left:212.881335px;}
.x50_c01122{left:214.450485px;}
.x13_c01122{left:222.335835px;}
.x31_c01122{left:224.647485px;}
.x1d_c01122{left:233.389185px;}
.x41_c01122{left:237.047235px;}
.x65_c01122{left:244.754385px;}
.x4a_c01122{left:255.441435px;}
.x42_c01122{left:256.619535px;}
.x35_c01122{left:260.460735px;}
.x27_c01122{left:266.534385px;}
.x4d_c01122{left:267.608535px;}
.x3e_c01122{left:268.737135px;}
.x9_c01122{left:278.750985px;}
.x51_c01122{left:285.027585px;}
.xa_c01122{left:301.615035px;}
.x38_c01122{left:304.080135px;}
.x1e_c01122{left:311.435835px;}
.x14_c01122{left:312.792135px;}
.x52_c01122{left:318.865785px;}
.x66_c01122{left:323.716785px;}
.x32_c01122{left:325.172085px;}
.x28_c01122{left:333.176235px;}
.x53_c01122{left:335.646285px;}
.x62_c01122{left:345.224535px;}
.xb_c01122{left:346.561035px;}
.x54_c01122{left:358.777635px;}
.x55_c01122{left:363.074235px;}
.x3f_c01122{left:368.296485px;}
.x15_c01122{left:378.706335px;}
.x56_c01122{left:388.022235px;}
.x29_c01122{left:389.937885px;}
.xc_c01122{left:391.462485px;}
.x36_c01122{left:392.472285px;}
.x2a_c01122{left:400.902135px;}
.x57_c01122{left:406.951035px;}
.x4b_c01122{left:412.009935px;}
.x39_c01122{left:422.904885px;}
.x1f_c01122{left:424.894785px;}
.x58_c01122{left:433.552335px;}
.x40_c01122{left:434.893785px;}
.x16_c01122{left:445.486785px;}
.x59_c01122{left:448.733985px;}
.x20_c01122{left:455.782785px;}
.x4c_c01122{left:457.342035px;}
.x3d_c01122{left:462.509835px;}
.x67_c01122{left:467.014335px;}
.xd_c01122{left:468.073635px;}
.x3a_c01122{left:469.147785px;}
.x63_c01122{left:488.873535px;}
.x17_c01122{left:490.511985px;}
.x46_c01122{left:511.925685px;}
.xe_c01122{left:512.999835px;}
.x5a_c01122{left:514.920435px;}
.x21_c01122{left:532.458285px;}
.x18_c01122{left:535.230285px;}
.x5b_c01122{left:542.373135px;}
.x47_c01122{left:544.353135px;}
.x4e_c01122{left:545.417385px;}
.x33_c01122{left:554.861985px;}
.x3b_c01122{left:567.147885px;}
.x5c_c01122{left:570.805935px;}
.x22_c01122{left:578.018085px;}
.x5d_c01122{left:579.814935px;}
.x5e_c01122{left:584.017485px;}
.x2b_c01122{left:590.615835px;}
.x23_c01122{left:599.060535px;}
.x19_c01122{left:600.109935px;}
.x5f_c01122{left:607.129035px;}
.x3c_c01122{left:612.029535px;}
.x60_c01122{left:619.385235px;}
.x2c_c01122{left:620.795985px;}
.xf_c01122{left:622.162185px;}
.x4f_c01122{left:632.116635px;}
.x1a_c01122{left:645.545985px;}
.x24_c01122{left:648.055635px;}
.x25_c01122{left:665.212335px;}
.x10_c01122{left:666.380535px;}
.x1b_c01122{left:676.033035px;}
.x2d_c01122{left:680.463285px;}
.x2e_c01122{left:686.373585px;}
.x48_c01122{left:691.358235px;}
.x43_c01122{left:703.782735px;}
.x44_c01122{left:705.302385px;}
.x68_c01122{left:708.415935px;}
.x3_c01122{left:710.737485px;}
@media print{
.v0_c01122{vertical-align:0.000000pt;}
.v1_c01122{vertical-align:29.128000pt;}
.ls27_c01122{letter-spacing:-3.080000pt;}
.ls1e_c01122{letter-spacing:-2.808960pt;}
.ls26_c01122{letter-spacing:-2.562560pt;}
.ls7_c01122{letter-spacing:-2.396246pt;}
.ls1f_c01122{letter-spacing:-2.334646pt;}
.ls14_c01122{letter-spacing:-2.328480pt;}
.ls10_c01122{letter-spacing:-2.310000pt;}
.ls2a_c01122{letter-spacing:-2.255129pt;}
.lsd_c01122{letter-spacing:-2.119046pt;}
.ls19_c01122{letter-spacing:-1.135200pt;}
.ls34_c01122{letter-spacing:-1.047200pt;}
.ls32_c01122{letter-spacing:-0.714560pt;}
.ls22_c01122{letter-spacing:-0.666125pt;}
.ls6_c01122{letter-spacing:-0.400225pt;}
.ls17_c01122{letter-spacing:-0.232848pt;}
.ls4_c01122{letter-spacing:0.000000pt;}
.ls20_c01122{letter-spacing:0.371713pt;}
.ls2e_c01122{letter-spacing:0.598409pt;}
.ls33_c01122{letter-spacing:0.624800pt;}
.ls2f_c01122{letter-spacing:0.633600pt;}
.ls1a_c01122{letter-spacing:0.696784pt;}
.ls2d_c01122{letter-spacing:0.712800pt;}
.ls2c_c01122{letter-spacing:1.020800pt;}
.ls2_c01122{letter-spacing:1.059379pt;}
.ls30_c01122{letter-spacing:1.267200pt;}
.ls13_c01122{letter-spacing:1.460800pt;}
.ls31_c01122{letter-spacing:1.478400pt;}
.ls1_c01122{letter-spacing:1.509904pt;}
.ls3_c01122{letter-spacing:2.072294pt;}
.lsb_c01122{letter-spacing:2.184007pt;}
.ls1c_c01122{letter-spacing:2.530675pt;}
.lsf_c01122{letter-spacing:2.710232pt;}
.ls1d_c01122{letter-spacing:2.801575pt;}
.lsc_c01122{letter-spacing:2.948000pt;}
.ls12_c01122{letter-spacing:2.965609pt;}
.ls0_c01122{letter-spacing:3.003000pt;}
.ls18_c01122{letter-spacing:3.080246pt;}
.ls16_c01122{letter-spacing:3.089715pt;}
.ls9_c01122{letter-spacing:3.115209pt;}
.ls11_c01122{letter-spacing:3.132800pt;}
.ls2b_c01122{letter-spacing:3.234043pt;}
.lse_c01122{letter-spacing:3.300000pt;}
.ls1b_c01122{letter-spacing:3.308800pt;}
.lsa_c01122{letter-spacing:3.326400pt;}
.ls8_c01122{letter-spacing:3.335209pt;}
.ls5_c01122{letter-spacing:3.344000pt;}
.ls29_c01122{letter-spacing:3.520000pt;}
.ls24_c01122{letter-spacing:3.587584pt;}
.ls25_c01122{letter-spacing:3.608000pt;}
.ls28_c01122{letter-spacing:3.625609pt;}
.ls15_c01122{letter-spacing:3.660800pt;}
.ls21_c01122{letter-spacing:27.878400pt;}
.ls23_c01122{letter-spacing:53.222576pt;}
.ws0_c01122{word-spacing:0.000000pt;}
._7_c01122{margin-left:-13.805229pt;}
._c_c01122{margin-left:-2.259312pt;}
._2_c01122{width:3.766400pt;}
._9_c01122{width:4.918965pt;}
._b_c01122{width:10.035696pt;}
._a_c01122{width:12.957296pt;}
._5_c01122{width:14.190000pt;}
._4_c01122{width:17.001776pt;}
._0_c01122{width:23.482800pt;}
._1_c01122{width:29.038768pt;}
._3_c01122{width:44.078750pt;}
._8_c01122{width:69.603952pt;}
._6_c01122{width:299.834304pt;}
.fs20_c01122{font-size:4.048176pt;}
.fs22_c01122{font-size:11.968176pt;}
.fs27_c01122{font-size:12.496000pt;}
.fs23_c01122{font-size:12.672000pt;}
.fs21_c01122{font-size:14.256000pt;}
.fs25_c01122{font-size:14.608000pt;}
.fs12_c01122{font-size:19.712000pt;}
.fs1f_c01122{font-size:20.416000pt;}
.fs16_c01122{font-size:22.528000pt;}
.fs0_c01122{font-size:24.640000pt;}
.fs24_c01122{font-size:25.344000pt;}
.fs17_c01122{font-size:27.878400pt;}
.fs1e_c01122{font-size:29.040000pt;}
.fsb_c01122{font-size:29.216000pt;}
.fs26_c01122{font-size:29.568000pt;}
.fs28_c01122{font-size:29.920000pt;}
.fs14_c01122{font-size:33.616000pt;}
.fs19_c01122{font-size:37.840000pt;}
.fsd_c01122{font-size:38.192176pt;}
.fs18_c01122{font-size:53.222576pt;}
.fs6_c01122{font-size:58.960000pt;}
.fsa_c01122{font-size:59.312176pt;}
.fs7_c01122{font-size:60.544176pt;}
.fs15_c01122{font-size:61.952176pt;}
.fs4_c01122{font-size:62.304176pt;}
.fs9_c01122{font-size:62.656000pt;}
.fsf_c01122{font-size:65.120000pt;}
.fse_c01122{font-size:65.648000pt;}
.fs8_c01122{font-size:66.000000pt;}
.fs10_c01122{font-size:66.176000pt;}
.fs5_c01122{font-size:66.528000pt;}
.fs2_c01122{font-size:66.704176pt;}
.fs1_c01122{font-size:66.880000pt;}
.fs3_c01122{font-size:68.464176pt;}
.fs1c_c01122{font-size:70.400000pt;}
.fs1a_c01122{font-size:72.160000pt;}
.fs11_c01122{font-size:72.512176pt;}
.fsc_c01122{font-size:73.216000pt;}
.fs1d_c01122{font-size:78.496000pt;}
.fs13_c01122{font-size:80.256000pt;}
.fs1b_c01122{font-size:88.000000pt;}
.y0_c01122{bottom:0.000000pt;}
.y1_c01122{bottom:68.000000pt;}
.y1d_c01122{bottom:79.117320pt;}
.y1c_c01122{bottom:136.774920pt;}
.y1b_c01122{bottom:165.924920pt;}
.y1a_c01122{bottom:191.898120pt;}
.y19_c01122{bottom:196.020920pt;}
.y18_c01122{bottom:210.910520pt;}
.y2_c01122{bottom:221.048120pt;}
.y17_c01122{bottom:253.040520pt;}
.y16_c01122{bottom:309.747720pt;}
.y15_c01122{bottom:365.821320pt;}
.y14_c01122{bottom:393.699720pt;}
.y13_c01122{bottom:445.976120pt;}
.y11_c01122{bottom:451.990920pt;}
.y12_c01122{bottom:455.480120pt;}
.y10_c01122{bottom:469.736120pt;}
.yf_c01122{bottom:509.019320pt;}
.ye_c01122{bottom:566.672520pt;}
.yb_c01122{bottom:624.017720pt;}
.yd_c01122{bottom:632.254520pt;}
.ya_c01122{bottom:651.258120pt;}
.yc_c01122{bottom:651.579320pt;}
.y9_c01122{bottom:679.774520pt;}
.y8_c01122{bottom:736.481720pt;}
.y7_c01122{bottom:764.672520pt;}
.y6_c01122{bottom:793.188920pt;}
.y5_c01122{bottom:821.696520pt;}
.y4_c01122{bottom:885.694520pt;}
.y3_c01122{bottom:956.336520pt;}
.h23_c01122{height:3.973063pt;}
.h25_c01122{height:11.746110pt;}
.h2b_c01122{height:12.264141pt;}
.h26_c01122{height:12.430688pt;}
.h28_c01122{height:14.336953pt;}
.h24_c01122{height:14.367375pt;}
.h1a_c01122{height:18.567014pt;}
.h22_c01122{height:20.037188pt;}
.h15_c01122{height:20.559000pt;}
.h19_c01122{height:22.110000pt;}
.h2_c01122{height:25.698750pt;}
.h27_c01122{height:26.433000pt;}
.h21_c01122{height:28.501172pt;}
.h2a_c01122{height:29.019375pt;}
.h2c_c01122{height:29.364844pt;}
.h29_c01122{height:29.799000pt;}
.hf_c01122{height:30.471375pt;}
.h17_c01122{height:32.992266pt;}
.h1b_c01122{height:35.446236pt;}
.h1c_c01122{height:39.465938pt;}
.he_c01122{height:58.211657pt;}
.hd_c01122{height:59.420798pt;}
.h6_c01122{height:61.148141pt;}
.h9_c01122{height:61.493438pt;}
.ha_c01122{height:63.145684pt;}
.h18_c01122{height:64.614184pt;}
.hb_c01122{height:64.775391pt;}
.h13_c01122{height:64.948125pt;}
.hc_c01122{height:64.981309pt;}
.h7_c01122{height:65.293594pt;}
.h4_c01122{height:65.466501pt;}
.h3_c01122{height:65.639063pt;}
.h8_c01122{height:67.193845pt;}
.h12_c01122{height:67.918125pt;}
.h11_c01122{height:68.468813pt;}
.h1f_c01122{height:69.059375pt;}
.h14_c01122{height:71.166735pt;}
.h5_c01122{height:71.405996pt;}
.h10_c01122{height:71.857500pt;}
.h1d_c01122{height:72.723750pt;}
.h20_c01122{height:77.001203pt;}
.h16_c01122{height:78.766875pt;}
.h1e_c01122{height:86.367188pt;}
.h1_c01122{height:986.666667pt;}
.h0_c01122{height:1122.666667pt;}
.w1_c01122{width:689.333333pt;}
.w0_c01122{width:793.333333pt;}
.x0_c01122{left:0.000000pt;}
.x2_c01122{left:46.461053pt;}
.x1_c01122{left:52.000000pt;}
.x45_c01122{left:79.434653pt;}
.x2f_c01122{left:80.446653pt;}
.x5_c01122{left:82.404653pt;}
.x49_c01122{left:127.610253pt;}
.x11_c01122{left:129.207453pt;}
.x6_c01122{left:130.751853pt;}
.x4_c01122{left:138.016253pt;}
.x26_c01122{left:148.215453pt;}
.x1c_c01122{left:158.036253pt;}
.x7_c01122{left:160.984253pt;}
.x64_c01122{left:167.531453pt;}
.x61_c01122{left:168.745853pt;}
.x30_c01122{left:169.929453pt;}
.x12_c01122{left:178.936253pt;}
.x37_c01122{left:180.313453pt;}
.x34_c01122{left:187.811053pt;}
.x8_c01122{left:189.227853pt;}
.x50_c01122{left:190.622653pt;}
.x13_c01122{left:197.631853pt;}
.x31_c01122{left:199.686653pt;}
.x1d_c01122{left:207.457053pt;}
.x41_c01122{left:210.708653pt;}
.x65_c01122{left:217.559453pt;}
.x4a_c01122{left:227.059053pt;}
.x42_c01122{left:228.106253pt;}
.x35_c01122{left:231.520653pt;}
.x27_c01122{left:236.919453pt;}
.x4d_c01122{left:237.874253pt;}
.x3e_c01122{left:238.877453pt;}
.x9_c01122{left:247.778653pt;}
.x51_c01122{left:253.357853pt;}
.xa_c01122{left:268.102253pt;}
.x38_c01122{left:270.293453pt;}
.x1e_c01122{left:276.831853pt;}
.x14_c01122{left:278.037453pt;}
.x52_c01122{left:283.436253pt;}
.x66_c01122{left:287.748253pt;}
.x32_c01122{left:289.041853pt;}
.x28_c01122{left:296.156653pt;}
.x53_c01122{left:298.352253pt;}
.x62_c01122{left:306.866253pt;}
.xb_c01122{left:308.054253pt;}
.x54_c01122{left:318.913453pt;}
.x55_c01122{left:322.732653pt;}
.x3f_c01122{left:327.374653pt;}
.x15_c01122{left:336.627853pt;}
.x56_c01122{left:344.908653pt;}
.x29_c01122{left:346.611453pt;}
.xc_c01122{left:347.966653pt;}
.x36_c01122{left:348.864253pt;}
.x2a_c01122{left:356.357453pt;}
.x57_c01122{left:361.734253pt;}
.x4b_c01122{left:366.231053pt;}
.x39_c01122{left:375.915453pt;}
.x1f_c01122{left:377.684253pt;}
.x58_c01122{left:385.379853pt;}
.x40_c01122{left:386.572253pt;}
.x16_c01122{left:395.988253pt;}
.x59_c01122{left:398.874653pt;}
.x20_c01122{left:405.140253pt;}
.x4c_c01122{left:406.526253pt;}
.x3d_c01122{left:411.119853pt;}
.x67_c01122{left:415.123853pt;}
.xd_c01122{left:416.065453pt;}
.x3a_c01122{left:417.020253pt;}
.x63_c01122{left:434.554253pt;}
.x17_c01122{left:436.010653pt;}
.x46_c01122{left:455.045053pt;}
.xe_c01122{left:455.999853pt;}
.x5a_c01122{left:457.707053pt;}
.x21_c01122{left:473.296253pt;}
.x18_c01122{left:475.760253pt;}
.x5b_c01122{left:482.109453pt;}
.x47_c01122{left:483.869453pt;}
.x4e_c01122{left:484.815453pt;}
.x33_c01122{left:493.210653pt;}
.x3b_c01122{left:504.131453pt;}
.x5c_c01122{left:507.383053pt;}
.x22_c01122{left:513.793853pt;}
.x5d_c01122{left:515.391053pt;}
.x5e_c01122{left:519.126653pt;}
.x2b_c01122{left:524.991853pt;}
.x23_c01122{left:532.498253pt;}
.x19_c01122{left:533.431053pt;}
.x5f_c01122{left:539.670253pt;}
.x3c_c01122{left:544.026253pt;}
.x60_c01122{left:550.564653pt;}
.x2c_c01122{left:551.818653pt;}
.xf_c01122{left:553.033053pt;}
.x4f_c01122{left:561.881453pt;}
.x1a_c01122{left:573.818653pt;}
.x24_c01122{left:576.049453pt;}
.x25_c01122{left:591.299853pt;}
.x10_c01122{left:592.338253pt;}
.x1b_c01122{left:600.918253pt;}
.x2d_c01122{left:604.856253pt;}
.x2e_c01122{left:610.109853pt;}
.x48_c01122{left:614.540653pt;}
.x43_c01122{left:625.584653pt;}
.x44_c01122{left:626.935453pt;}
.x68_c01122{left:629.703053pt;}
.x3_c01122{left:631.766653pt;}
}





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

.ir_c01123:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01123{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01123;src:url('chunks/assets/font_5c33a45f3ae8adb7d476b1d4.woff2')format("woff");}.ff1_c01123{font-family:ff1_c01123;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01123;src:url('chunks/assets/font_da7f5ed68aa26a12e97639ec.woff2')format("woff");}.ff2_c01123{font-family:ff2_c01123;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01123;src:url('chunks/assets/font_01425afe697886ff66df20f4.woff2')format("woff");}.ff3_c01123{font-family:ff3_c01123;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01123;src:url('chunks/assets/font_0f908bd834ba18c30ca49cd5.woff2')format("woff");}.ff4_c01123{font-family:ff4_c01123;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01123;src:url('chunks/assets/font_f70e90d5545ed9fabf35532b.woff2')format("woff");}.ff5_c01123{font-family:ff5_c01123;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01123;src:url('chunks/assets/font_c713b51d1f79b7dade3c6596.woff2')format("woff");}.ff6_c01123{font-family:ff6_c01123;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01123;src:url('chunks/assets/font_b8ebad25c99265e0ffff3169.woff2')format("woff");}.ff7_c01123{font-family:ff7_c01123;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1f_c01123{transform:matrix(0.095965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095965,0.000000,0.000000,0.250000,0,0);}
.m21_c01123{transform:matrix(0.098673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098673,0.000000,0.000000,0.250000,0,0);}
.m19_c01123{transform:matrix(0.131809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131809,0.000000,0.000000,0.250000,0,0);}
.m60_c01123{transform:matrix(0.133721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133721,0.000000,0.000000,0.250000,0,0);}
.ma0_c01123{transform:matrix(0.149322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149322,0.000000,0.000000,0.250000,0,0);}
.m1a_c01123{transform:matrix(0.157804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157804,0.000000,0.000000,0.250000,0,0);}
.m61_c01123{transform:matrix(0.162790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162790,0.000000,0.000000,0.250000,0,0);}
.m62_c01123{transform:matrix(0.165117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165117,0.000000,0.000000,0.250000,0,0);}
.m13_c01123{transform:matrix(0.168586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168586,0.000000,0.000000,0.250000,0,0);}
.m36_c01123{transform:matrix(0.171944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171944,0.000000,0.000000,0.250000,0,0);}
.m40_c01123{transform:matrix(0.172619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172619,0.000000,0.000000,0.250000,0,0);}
.m42_c01123{transform:matrix(0.172934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172934,0.000000,0.000000,0.250000,0,0);}
.m6a_c01123{transform:matrix(0.174320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174320,0.000000,0.000000,0.250000,0,0);}
.m7c_c01123{transform:matrix(0.181122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181122,0.000000,0.000000,0.250000,0,0);}
.m45_c01123{transform:matrix(0.184211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184211,0.000000,0.000000,0.250000,0,0);}
.m46_c01123{transform:matrix(0.194079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194079,0.000000,0.000000,0.250000,0,0);}
.m1b_c01123{transform:matrix(0.202329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202329,0.000000,0.000000,0.250000,0,0);}
.m5e_c01123{transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);}
.m82_c01123{transform:matrix(0.217381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217381,0.000000,0.000000,0.250000,0,0);}
.m4a_c01123{transform:matrix(0.218992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218992,0.000000,0.000000,0.250000,0,0);}
.m16_c01123{transform:matrix(0.225746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225746,0.000000,0.000000,0.250000,0,0);}
.mc_c01123{transform:matrix(0.229330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229330,0.000000,0.000000,0.250000,0,0);}
.mb_c01123{transform:matrix(0.234328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234328,0.000000,0.000000,0.250000,0,0);}
.m11_c01123{transform:matrix(0.237641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237641,0.000000,0.000000,0.250000,0,0);}
.m17_c01123{transform:matrix(0.239203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239203,0.000000,0.000000,0.250000,0,0);}
.m48_c01123{transform:matrix(0.242365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242365,0.000000,0.000000,0.250000,0,0);}
.m83_c01123{transform:matrix(0.245256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245256,0.000000,0.000000,0.250000,0,0);}
.m92_c01123{transform:matrix(0.247034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247034,0.000000,0.000000,0.250000,0,0);}
.m6b_c01123{transform:matrix(0.247192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247192,0.000000,0.000000,0.250000,0,0);}
.m1_c01123{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m7e_c01123{transform:matrix(0.250065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250065,0.000000,0.000000,0.250000,0,0);}
.m65_c01123{transform:matrix(0.250523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250523,0.000000,0.000000,0.250000,0,0);}
.m2c_c01123{transform:matrix(0.250825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250825,0.000000,0.000000,0.250000,0,0);}
.mf_c01123{transform:matrix(0.252022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252022,0.000000,0.000000,0.250000,0,0);}
.m26_c01123{transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);}
.m25_c01123{transform:matrix(0.253933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253933,0.000000,0.000000,0.250000,0,0);}
.m8a_c01123{transform:matrix(0.254940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254940,0.000000,0.000000,0.250000,0,0);}
.m3_c01123{transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);}
.m35_c01123{transform:matrix(0.256819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256819,0.000000,0.000000,0.250000,0,0);}
.m3e_c01123{transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);}
.m5b_c01123{transform:matrix(0.258060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258060,0.000000,0.000000,0.250000,0,0);}
.m94_c01123{transform:matrix(0.258167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258167,0.000000,0.000000,0.250000,0,0);}
.m29_c01123{transform:matrix(0.258788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258788,0.000000,0.000000,0.250000,0,0);}
.m67_c01123{transform:matrix(0.259656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259656,0.000000,0.000000,0.250000,0,0);}
.m3a_c01123{transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);}
.m34_c01123{transform:matrix(0.261033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261033,0.000000,0.000000,0.250000,0,0);}
.m57_c01123{transform:matrix(0.261325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261325,0.000000,0.000000,0.250000,0,0);}
.m41_c01123{transform:matrix(0.261758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261758,0.000000,0.000000,0.250000,0,0);}
.m10_c01123{transform:matrix(0.262254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262254,0.000000,0.000000,0.250000,0,0);}
.m84_c01123{transform:matrix(0.262403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262403,0.000000,0.000000,0.250000,0,0);}
.m4c_c01123{transform:matrix(0.263094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263094,0.000000,0.000000,0.250000,0,0);}
.m47_c01123{transform:matrix(0.263111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263111,0.000000,0.000000,0.250000,0,0);}
.m69_c01123{transform:matrix(0.263771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263771,0.000000,0.000000,0.250000,0,0);}
.m91_c01123{transform:matrix(0.263804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263804,0.000000,0.000000,0.250000,0,0);}
.m31_c01123{transform:matrix(0.264211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264211,0.000000,0.000000,0.250000,0,0);}
.m4d_c01123{transform:matrix(0.264216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264216,0.000000,0.000000,0.250000,0,0);}
.m71_c01123{transform:matrix(0.264788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264788,0.000000,0.000000,0.250000,0,0);}
.m43_c01123{transform:matrix(0.265499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265499,0.000000,0.000000,0.250000,0,0);}
.m9_c01123{transform:matrix(0.265592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265592,0.000000,0.000000,0.250000,0,0);}
.m8f_c01123{transform:matrix(0.265830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265830,0.000000,0.000000,0.250000,0,0);}
.m2f_c01123{transform:matrix(0.266587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266587,0.000000,0.000000,0.250000,0,0);}
.m39_c01123{transform:matrix(0.267258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267258,0.000000,0.000000,0.250000,0,0);}
.m4b_c01123{transform:matrix(0.267602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267602,0.000000,0.000000,0.250000,0,0);}
.m58_c01123{transform:matrix(0.268404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268404,0.000000,0.000000,0.250000,0,0);}
.m53_c01123{transform:matrix(0.268537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268537,0.000000,0.000000,0.250000,0,0);}
.m59_c01123{transform:matrix(0.269424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269424,0.000000,0.000000,0.250000,0,0);}
.m54_c01123{transform:matrix(0.270277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270277,0.000000,0.000000,0.250000,0,0);}
.m87_c01123{transform:matrix(0.271003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271003,0.000000,0.000000,0.250000,0,0);}
.m8e_c01123{transform:matrix(0.273714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273714,0.000000,0.000000,0.250000,0,0);}
.m5_c01123{transform:matrix(0.274488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274488,0.000000,0.000000,0.250000,0,0);}
.m9b_c01123{transform:matrix(0.274905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274905,0.000000,0.000000,0.250000,0,0);}
.m1e_c01123{transform:matrix(0.275234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275234,0.000000,0.000000,0.250000,0,0);}
.m9c_c01123{transform:matrix(0.275843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275843,0.000000,0.000000,0.250000,0,0);}
.m52_c01123{transform:matrix(0.276675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276675,0.000000,0.000000,0.250000,0,0);}
.m7_c01123{transform:matrix(0.277646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277646,0.000000,0.000000,0.250000,0,0);}
.m70_c01123{transform:matrix(0.278467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278467,0.000000,0.000000,0.250000,0,0);}
.m78_c01123{transform:matrix(0.279439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279439,0.000000,0.000000,0.250000,0,0);}
.m66_c01123{transform:matrix(0.279680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279680,0.000000,0.000000,0.250000,0,0);}
.m5c_c01123{transform:matrix(0.280055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280055,0.000000,0.000000,0.250000,0,0);}
.m2d_c01123{transform:matrix(0.280154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280154,0.000000,0.000000,0.250000,0,0);}
.m7d_c01123{transform:matrix(0.280290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280290,0.000000,0.000000,0.250000,0,0);}
.m80_c01123{transform:matrix(0.282235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282235,0.000000,0.000000,0.250000,0,0);}
.m9a_c01123{transform:matrix(0.282486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282486,0.000000,0.000000,0.250000,0,0);}
.m50_c01123{transform:matrix(0.283112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283112,0.000000,0.000000,0.250000,0,0);}
.m2b_c01123{transform:matrix(0.283286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283286,0.000000,0.000000,0.250000,0,0);}
.m8c_c01123{transform:matrix(0.283641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283641,0.000000,0.000000,0.250000,0,0);}
.m32_c01123{transform:matrix(0.285247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285247,0.000000,0.000000,0.250000,0,0);}
.m2a_c01123{transform:matrix(0.285567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285567,0.000000,0.000000,0.250000,0,0);}
.m74_c01123{transform:matrix(0.286475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286475,0.000000,0.000000,0.250000,0,0);}
.m55_c01123{transform:matrix(0.287246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287246,0.000000,0.000000,0.250000,0,0);}
.m33_c01123{transform:matrix(0.287324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287324,0.000000,0.000000,0.250000,0,0);}
.m38_c01123{transform:matrix(0.287369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287369,0.000000,0.000000,0.250000,0,0);}
.m90_c01123{transform:matrix(0.287671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287671,0.000000,0.000000,0.250000,0,0);}
.m44_c01123{transform:matrix(0.288761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288761,0.000000,0.000000,0.250000,0,0);}
.m2e_c01123{transform:matrix(0.288978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288978,0.000000,0.000000,0.250000,0,0);}
.m6c_c01123{transform:matrix(0.289037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289037,0.000000,0.000000,0.250000,0,0);}
.m77_c01123{transform:matrix(0.289351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289351,0.000000,0.000000,0.250000,0,0);}
.m30_c01123{transform:matrix(0.289417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289417,0.000000,0.000000,0.250000,0,0);}
.m72_c01123{transform:matrix(0.289693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289693,0.000000,0.000000,0.250000,0,0);}
.m9f_c01123{transform:matrix(0.290716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290716,0.000000,0.000000,0.250000,0,0);}
.m6d_c01123{transform:matrix(0.290800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290800,0.000000,0.000000,0.250000,0,0);}
.m86_c01123{transform:matrix(0.291156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291156,0.000000,0.000000,0.250000,0,0);}
.m51_c01123{transform:matrix(0.293038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293038,0.000000,0.000000,0.250000,0,0);}
.m28_c01123{transform:matrix(0.294492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294492,0.000000,0.000000,0.250000,0,0);}
.m4_c01123{transform:matrix(0.295814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295814,0.000000,0.000000,0.250000,0,0);}
.m3b_c01123{transform:matrix(0.296176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296176,0.000000,0.000000,0.250000,0,0);}
.m8_c01123{transform:matrix(0.296594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296594,0.000000,0.000000,0.250000,0,0);}
.m27_c01123{transform:matrix(0.297654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297654,0.000000,0.000000,0.250000,0,0);}
.m81_c01123{transform:matrix(0.299488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299488,0.000000,0.000000,0.250000,0,0);}
.m76_c01123{transform:matrix(0.299604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299604,0.000000,0.000000,0.250000,0,0);}
.m93_c01123{transform:matrix(0.300234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300234,0.000000,0.000000,0.250000,0,0);}
.m7b_c01123{transform:matrix(0.300554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300554,0.000000,0.000000,0.250000,0,0);}
.m73_c01123{transform:matrix(0.301022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301022,0.000000,0.000000,0.250000,0,0);}
.m63_c01123{transform:matrix(0.301582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301582,0.000000,0.000000,0.250000,0,0);}
.m98_c01123{transform:matrix(0.301999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301999,0.000000,0.000000,0.250000,0,0);}
.m7f_c01123{transform:matrix(0.304006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304006,0.000000,0.000000,0.250000,0,0);}
.m37_c01123{transform:matrix(0.305044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305044,0.000000,0.000000,0.250000,0,0);}
.m0_c01123{transform:matrix(0.305431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305431,0.000000,0.000000,0.250000,0,0);}
.m14_c01123{transform:matrix(0.308272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308272,0.000000,0.000000,0.250000,0,0);}
.m8b_c01123{transform:matrix(0.308889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308889,0.000000,0.000000,0.250000,0,0);}
.m75_c01123{transform:matrix(0.309283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309283,0.000000,0.000000,0.250000,0,0);}
.ma_c01123{transform:matrix(0.310115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310115,0.000000,0.000000,0.250000,0,0);}
.m89_c01123{transform:matrix(0.310853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310853,0.000000,0.000000,0.250000,0,0);}
.m3d_c01123{transform:matrix(0.316556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316556,0.000000,0.000000,0.250000,0,0);}
.m2_c01123{transform:matrix(0.317074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317074,0.000000,0.000000,0.250000,0,0);}
.m95_c01123{transform:matrix(0.319640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319640,0.000000,0.000000,0.250000,0,0);}
.m5a_c01123{transform:matrix(0.320282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320282,0.000000,0.000000,0.250000,0,0);}
.m6f_c01123{transform:matrix(0.321360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321360,0.000000,0.000000,0.250000,0,0);}
.m85_c01123{transform:matrix(0.321629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321629,0.000000,0.000000,0.250000,0,0);}
.m4f_c01123{transform:matrix(0.324067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324067,0.000000,0.000000,0.250000,0,0);}
.m7a_c01123{transform:matrix(0.324795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324795,0.000000,0.000000,0.250000,0,0);}
.m68_c01123{transform:matrix(0.325016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325016,0.000000,0.000000,0.250000,0,0);}
.m9e_c01123{transform:matrix(0.325671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325671,0.000000,0.000000,0.250000,0,0);}
.m64_c01123{transform:matrix(0.325754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325754,0.000000,0.000000,0.250000,0,0);}
.m8d_c01123{transform:matrix(0.326753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326753,0.000000,0.000000,0.250000,0,0);}
.m5f_c01123{transform:matrix(0.328507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328507,0.000000,0.000000,0.250000,0,0);}
.m22_c01123{transform:matrix(0.329250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329250,0.000000,0.000000,0.250000,0,0);}
.m79_c01123{transform:matrix(0.332906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332906,0.000000,0.000000,0.250000,0,0);}
.m6_c01123{transform:matrix(0.333044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333044,0.000000,0.000000,0.250000,0,0);}
.m96_c01123{transform:matrix(0.333450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333450,0.000000,0.000000,0.250000,0,0);}
.m88_c01123{transform:matrix(0.336704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336704,0.000000,0.000000,0.250000,0,0);}
.m12_c01123{transform:matrix(0.337391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337391,0.000000,0.000000,0.250000,0,0);}
.m56_c01123{transform:matrix(0.338931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338931,0.000000,0.000000,0.250000,0,0);}
.me_c01123{transform:matrix(0.340558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340558,0.000000,0.000000,0.250000,0,0);}
.m97_c01123{transform:matrix(0.345649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345649,0.000000,0.000000,0.250000,0,0);}
.m20_c01123{transform:matrix(0.353873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353873,0.000000,0.000000,0.250000,0,0);}
.m9d_c01123{transform:matrix(0.354819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354819,0.000000,0.000000,0.250000,0,0);}
.m5d_c01123{transform:matrix(0.359542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359542,0.000000,0.000000,0.250000,0,0);}
.m4e_c01123{transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);}
.m99_c01123{transform:matrix(0.368133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368133,0.000000,0.000000,0.250000,0,0);}
.m6e_c01123{transform:matrix(0.370179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370179,0.000000,0.000000,0.250000,0,0);}
.m3c_c01123{transform:matrix(0.372534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372534,0.000000,0.000000,0.250000,0,0);}
.m15_c01123{transform:matrix(0.373079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373079,0.000000,0.000000,0.250000,0,0);}
.m49_c01123{transform:matrix(0.377767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377767,0.000000,0.000000,0.250000,0,0);}
.m3f_c01123{transform:matrix(0.403791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403791,0.000000,0.000000,0.250000,0,0);}
.m24_c01123{transform:matrix(0.466982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466982,0.000000,0.000000,0.250000,0,0);}
.md_c01123{transform:matrix(0.506424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506424,0.000000,0.000000,0.250000,0,0);}
.m18_c01123{transform:matrix(0.589343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589343,0.000000,0.000000,0.250000,0,0);}
.m1d_c01123{transform:matrix(0.754161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.754161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.754161,0.000000,0.000000,0.250000,0,0);}
.m23_c01123{transform:matrix(0.817214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.817214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.817214,0.000000,0.000000,0.250000,0,0);}
.m1c_c01123{transform:matrix(1.240825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.240825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.240825,0.000000,0.000000,0.250000,0,0);}
.v0_c01123{vertical-align:0.000000px;}
.v1_c01123{vertical-align:17.107200px;}
.ls1f_c01123{letter-spacing:-3.021480px;}
.ls9_c01123{letter-spacing:-2.855167px;}
.ls29_c01123{letter-spacing:-2.813580px;}
.ls19_c01123{letter-spacing:-2.577967px;}
.ls2e_c01123{letter-spacing:-2.571030px;}
.ls7_c01123{letter-spacing:-1.524600px;}
.lsd_c01123{letter-spacing:-1.316700px;}
.ls10_c01123{letter-spacing:-1.053360px;}
.ls2b_c01123{letter-spacing:-0.832550px;}
.ls23_c01123{letter-spacing:-0.776160px;}
.ls21_c01123{letter-spacing:-0.269201px;}
.ls2c_c01123{letter-spacing:-0.007484px;}
.ls5_c01123{letter-spacing:0.000000px;}
.ls8_c01123{letter-spacing:0.554400px;}
.lse_c01123{letter-spacing:0.564300px;}
.ls1a_c01123{letter-spacing:1.104998px;}
.ls18_c01123{letter-spacing:1.245420px;}
.lsf_c01123{letter-spacing:1.504800px;}
.ls12_c01123{letter-spacing:1.558105px;}
.ls2_c01123{letter-spacing:1.579802px;}
.lsc_c01123{letter-spacing:1.881000px;}
.ls1e_c01123{letter-spacing:2.054606px;}
.ls3_c01123{letter-spacing:2.477614px;}
.ls1_c01123{letter-spacing:2.512145px;}
.ls1b_c01123{letter-spacing:3.189629px;}
.ls2a_c01123{letter-spacing:3.306610px;}
.ls22_c01123{letter-spacing:3.405610px;}
.lsb_c01123{letter-spacing:3.524400px;}
.lsa_c01123{letter-spacing:3.573037px;}
.ls4_c01123{letter-spacing:3.573900px;}
.ls0_c01123{letter-spacing:3.638298px;}
.ls27_c01123{letter-spacing:3.672900px;}
.ls13_c01123{letter-spacing:3.682810px;}
.ls24_c01123{letter-spacing:3.722400px;}
.ls16_c01123{letter-spacing:3.742200px;}
.ls2d_c01123{letter-spacing:3.762000px;}
.ls28_c01123{letter-spacing:3.801610px;}
.ls26_c01123{letter-spacing:3.880810px;}
.ls11_c01123{letter-spacing:3.960000px;}
.ls14_c01123{letter-spacing:4.019400px;}
.ls6_c01123{letter-spacing:4.078810px;}
.ls1d_c01123{letter-spacing:4.316400px;}
.ls1c_c01123{letter-spacing:54.172998px;}
.ls25_c01123{letter-spacing:58.449798px;}
.ls17_c01123{letter-spacing:59.875398px;}
.ls20_c01123{letter-spacing:61.300998px;}
.ls15_c01123{letter-spacing:64.152198px;}
.sc__c01123{text-shadow:none;}
.sc0_c01123{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01123{-webkit-text-stroke:0px transparent;}
.sc0_c01123{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01123{word-spacing:-20.394050px;}
.ws1_c01123{word-spacing:-20.097000px;}
.ws2_c01123{word-spacing:0.000000px;}
._8_c01123{margin-left:-17.375666px;}
._10_c01123{width:3.833984px;}
._9_c01123{width:6.983064px;}
._e_c01123{width:8.077608px;}
._13_c01123{width:11.415096px;}
._12_c01123{width:14.401332px;}
._7_c01123{width:17.551724px;}
._a_c01123{width:21.025818px;}
._0_c01123{width:23.827320px;}
._1_c01123{width:28.096200px;}
._f_c01123{width:31.419907px;}
._11_c01123{width:40.454964px;}
._b_c01123{width:43.488720px;}
._c_c01123{width:61.065180px;}
._2_c01123{width:66.296736px;}
._d_c01123{width:73.456020px;}
._5_c01123{width:81.189751px;}
._3_c01123{width:95.878728px;}
._4_c01123{width:252.727200px;}
._6_c01123{width:348.677881px;}
.fc0_c01123{color:transparent;}
.fs5_c01123{font-size:5.742198px;}
.fs6_c01123{font-size:11.088000px;}
.fsb_c01123{font-size:11.286000px;}
.fsa_c01123{font-size:17.028000px;}
.fs19_c01123{font-size:22.176000px;}
.fs3_c01123{font-size:26.928000px;}
.fsd_c01123{font-size:30.096000px;}
.fs7_c01123{font-size:32.076198px;}
.fs9_c01123{font-size:37.620000px;}
.fs4_c01123{font-size:39.600000px;}
.fs2_c01123{font-size:43.560000px;}
.fsc_c01123{font-size:47.520000px;}
.fs1a_c01123{font-size:54.172998px;}
.fs24_c01123{font-size:54.846198px;}
.fs14_c01123{font-size:57.024000px;}
.fs1f_c01123{font-size:58.449798px;}
.fs17_c01123{font-size:59.875398px;}
.fs1b_c01123{font-size:61.300998px;}
.fs15_c01123{font-size:64.152198px;}
.fs22_c01123{font-size:66.132198px;}
.fs1c_c01123{font-size:68.112198px;}
.fs8_c01123{font-size:70.488000px;}
.fs0_c01123{font-size:71.478000px;}
.fs18_c01123{font-size:73.260000px;}
.fs21_c01123{font-size:73.458000px;}
.fs10_c01123{font-size:73.656198px;}
.fs1e_c01123{font-size:74.448000px;}
.fs16_c01123{font-size:74.844000px;}
.fs25_c01123{font-size:75.240000px;}
.fse_c01123{font-size:76.032198px;}
.fs20_c01123{font-size:77.616198px;}
.fs1d_c01123{font-size:78.804000px;}
.fsf_c01123{font-size:79.200000px;}
.fs13_c01123{font-size:80.388000px;}
.fs1_c01123{font-size:81.576198px;}
.fs12_c01123{font-size:83.556198px;}
.fs11_c01123{font-size:86.328000px;}
.fs23_c01123{font-size:86.724000px;}
.y0_c01123{bottom:0.000000px;}
.y1_c01123{bottom:76.500000px;}
.y1f_c01123{bottom:166.707135px;}
.y1e_c01123{bottom:198.426735px;}
.y1d_c01123{bottom:231.928335px;}
.y1c_c01123{bottom:264.004335px;}
.y1b_c01123{bottom:328.151385px;}
.y1a_c01123{bottom:360.232335px;}
.y19_c01123{bottom:393.021135px;}
.y18_c01123{bottom:424.740735px;}
.y17_c01123{bottom:488.531385px;}
.y16_c01123{bottom:520.612335px;}
.y15_c01123{bottom:553.044735px;}
.y14_c01123{bottom:584.764335px;}
.y13_c01123{bottom:647.847135px;}
.y12_c01123{bottom:711.637785px;}
.y11_c01123{bottom:724.824585px;}
.y10_c01123{bottom:774.725535px;}
.yf_c01123{bottom:806.801535px;}
.yd_c01123{bottom:838.872585px;}
.ye_c01123{bottom:843.154335px;}
.yc_c01123{bottom:870.953535px;}
.y9_c01123{bottom:898.034985px;}
.y8_c01123{bottom:903.385935px;}
.yb_c01123{bottom:903.742335px;}
.ya_c01123{bottom:915.854985px;}
.y5_c01123{bottom:928.690335px;}
.y6_c01123{bottom:930.472335px;}
.y7_c01123{bottom:932.254335px;}
.y3_c01123{bottom:935.456985px;}
.y4_c01123{bottom:935.813385px;}
.y2_c01123{bottom:1074.814335px;}
.y20_c01123{bottom:1100.826585px;}
.h7_c01123{height:10.882266px;}
.hd_c01123{height:11.564438px;}
.hc_c01123{height:11.770945px;}
.hb_c01123{height:17.759672px;}
.h1b_c01123{height:23.128875px;}
.hf_c01123{height:29.537578px;}
.h8_c01123{height:33.454472px;}
.h1c_c01123{height:36.079217px;}
.h20_c01123{height:38.927565px;}
.ha_c01123{height:39.236484px;}
.h18_c01123{height:39.877015px;}
.h1d_c01123{height:40.826465px;}
.h6_c01123{height:41.301563px;}
.h16_c01123{height:42.725364px;}
.h5_c01123{height:42.751758px;}
.h4_c01123{height:43.900313px;}
.he_c01123{height:46.638281px;}
.h15_c01123{height:55.965938px;}
.h24_c01123{height:68.973816px;}
.h9_c01123{height:69.180117px;}
.h2_c01123{height:70.151748px;}
.h1e_c01123{height:71.038894px;}
.h19_c01123{height:71.864912px;}
.h22_c01123{height:72.095010px;}
.h1a_c01123{height:72.253565px;}
.h25_c01123{height:72.289530px;}
.h1f_c01123{height:73.066641px;}
.h17_c01123{height:73.455293px;}
.h28_c01123{height:73.843945px;}
.h23_c01123{height:74.621444px;}
.h21_c01123{height:76.176054px;}
.h12_c01123{height:76.821113px;}
.h11_c01123{height:77.730469px;}
.h14_c01123{height:78.896426px;}
.h10_c01123{height:79.299207px;}
.h3_c01123{height:80.062577px;}
.h27_c01123{height:82.005839px;}
.h13_c01123{height:84.726211px;}
.h26_c01123{height:85.114863px;}
.h1_c01123{height:1110.000000px;}
.h0_c01123{height:1263.000000px;}
.w1_c01123{width:775.500000px;}
.w0_c01123{width:892.500000px;}
.x0_c01123{left:0.000000px;}
.x1_c01123{left:58.500000px;}
.x6e_c01123{left:86.547435px;}
.x4a_c01123{left:87.616635px;}
.x47_c01123{left:88.685835px;}
.x76_c01123{left:140.725185px;}
.x66_c01123{left:143.026935px;}
.x13_c01123{left:144.091185px;}
.x4_c01123{left:145.170285px;}
.x4b_c01123{left:177.285885px;}
.x1f_c01123{left:182.923935px;}
.xd_c01123{left:187.581885px;}
.x14_c01123{left:189.368835px;}
.x44_c01123{left:190.571685px;}
.x48_c01123{left:198.754035px;}
.x6f_c01123{left:208.946085px;}
.x72_c01123{left:209.970735px;}
.x5d_c01123{left:211.633935px;}
.xe_c01123{left:216.623535px;}
.x77_c01123{left:218.420385px;}
.x5e_c01123{left:221.464635px;}
.x7c_c01123{left:222.504135px;}
.x5_c01123{left:223.578285px;}
.x15_c01123{left:233.903985px;}
.x16_c01123{left:236.304735px;}
.x49_c01123{left:254.560335px;}
.x6_c01123{left:256.500735px;}
.x5f_c01123{left:265.153335px;}
.x17_c01123{left:267.440235px;}
.x45_c01123{left:268.940085px;}
.x20_c01123{left:270.746835px;}
.x21_c01123{left:275.013735px;}
.x4c_c01123{left:277.206585px;}
.x60_c01123{left:278.340135px;}
.x22_c01123{left:281.448735px;}
.x78_c01123{left:287.720385px;}
.x23_c01123{left:290.329035px;}
.xf_c01123{left:293.120835px;}
.x61_c01123{left:299.387535px;}
.x52_c01123{left:300.530985px;}
.x67_c01123{left:308.881635px;}
.x36_c01123{left:310.361685px;}
.x3b_c01123{left:312.316935px;}
.x7_c01123{left:323.984085px;}
.x24_c01123{left:329.943885px;}
.x73_c01123{left:331.814985px;}
.x3c_c01123{left:343.709835px;}
.x25_c01123{left:355.381935px;}
.x79_c01123{left:364.163235px;}
.x4d_c01123{left:367.162935px;}
.x58_c01123{left:376.919385px;}
.x6b_c01123{left:385.933335px;}
.x74_c01123{left:387.185685px;}
.x8_c01123{left:388.576635px;}
.x26_c01123{left:392.269335px;}
.x37_c01123{left:398.407335px;}
.x4e_c01123{left:399.565635px;}
.x3d_c01123{left:401.723835px;}
.x53_c01123{left:410.643735px;}
.x18_c01123{left:411.712935px;}
.x27_c01123{left:414.415635px;}
.x70_c01123{left:420.296235px;}
.x3e_c01123{left:422.885085px;}
.x6c_c01123{left:431.176335px;}
.x62_c01123{left:433.369185px;}
.x9_c01123{left:434.567085px;}
.x7a_c01123{left:442.224735px;}
.x3f_c01123{left:443.680035px;}
.x38_c01123{left:445.224435px;}
.x6d_c01123{left:452.570235px;}
.x19_c01123{left:455.896635px;}
.x68_c01123{left:465.509535px;}
.x1a_c01123{left:467.009385px;}
.x46_c01123{left:468.212235px;}
.x28_c01123{left:470.568435px;}
.x6a_c01123{left:476.602485px;}
.x29_c01123{left:483.987885px;}
.x2a_c01123{left:487.452885px;}
.x40_c01123{left:489.121035px;}
.x2b_c01123{left:492.699885px;}
.x4f_c01123{left:498.704235px;}
.xa_c01123{left:499.778385px;}
.x1b_c01123{left:501.500985px;}
.x59_c01123{left:509.589285px;}
.x63_c01123{left:521.385135px;}
.x1c_c01123{left:522.904785px;}
.x7b_c01123{left:531.314835px;}
.x54_c01123{left:532.596885px;}
.x39_c01123{left:534.675885px;}
.x2c_c01123{left:537.279585px;}
.xb_c01123{left:542.318685px;}
.x41_c01123{left:544.481835px;}
.x1d_c01123{left:553.787835px;}
.x5a_c01123{left:555.332235px;}
.x75_c01123{left:562.692885px;}
.x55_c01123{left:564.479835px;}
.x42_c01123{left:575.166885px;}
.x1e_c01123{left:578.141835px;}
.x10_c01123{left:583.438335px;}
.x2d_c01123{left:584.596635px;}
.x5b_c01123{left:586.621185px;}
.x2e_c01123{left:590.759385px;}
.x2f_c01123{left:601.565235px;}
.x30_c01123{left:604.807485px;}
.x31_c01123{left:612.950235px;}
.x64_c01123{left:619.919835px;}
.x3a_c01123{left:630.770235px;}
.x33_c01123{left:632.393835px;}
.x71_c01123{left:640.759335px;}
.x56_c01123{left:641.818635px;}
.x65_c01123{left:652.441335px;}
.x11_c01123{left:658.217985px;}
.x34_c01123{left:665.172735px;}
.x69_c01123{left:674.805435px;}
.x12_c01123{left:684.853935px;}
.x5c_c01123{left:687.299235px;}
.x43_c01123{left:698.535735px;}
.xc_c01123{left:699.946485px;}
.x32_c01123{left:708.054585px;}
.x57_c01123{left:709.168335px;}
.x35_c01123{left:710.410785px;}
.x2_c01123{left:712.524435px;}
.x50_c01123{left:720.800835px;}
.x51_c01123{left:742.976835px;}
.x3_c01123{left:755.346885px;}
.x7d_c01123{left:776.676435px;}
@media print{
.v0_c01123{vertical-align:0.000000pt;}
.v1_c01123{vertical-align:15.206400pt;}
.ls1f_c01123{letter-spacing:-2.685760pt;}
.ls9_c01123{letter-spacing:-2.537926pt;}
.ls29_c01123{letter-spacing:-2.500960pt;}
.ls19_c01123{letter-spacing:-2.291526pt;}
.ls2e_c01123{letter-spacing:-2.285360pt;}
.ls7_c01123{letter-spacing:-1.355200pt;}
.lsd_c01123{letter-spacing:-1.170400pt;}
.ls10_c01123{letter-spacing:-0.936320pt;}
.ls2b_c01123{letter-spacing:-0.740045pt;}
.ls23_c01123{letter-spacing:-0.689920pt;}
.ls21_c01123{letter-spacing:-0.239290pt;}
.ls2c_c01123{letter-spacing:-0.006653pt;}
.ls5_c01123{letter-spacing:0.000000pt;}
.ls8_c01123{letter-spacing:0.492800pt;}
.lse_c01123{letter-spacing:0.501600pt;}
.ls1a_c01123{letter-spacing:0.982221pt;}
.ls18_c01123{letter-spacing:1.107040pt;}
.lsf_c01123{letter-spacing:1.337600pt;}
.ls12_c01123{letter-spacing:1.384983pt;}
.ls2_c01123{letter-spacing:1.404269pt;}
.lsc_c01123{letter-spacing:1.672000pt;}
.ls1e_c01123{letter-spacing:1.826317pt;}
.ls3_c01123{letter-spacing:2.202323pt;}
.ls1_c01123{letter-spacing:2.233018pt;}
.ls1b_c01123{letter-spacing:2.835226pt;}
.ls2a_c01123{letter-spacing:2.939209pt;}
.ls22_c01123{letter-spacing:3.027209pt;}
.lsb_c01123{letter-spacing:3.132800pt;}
.lsa_c01123{letter-spacing:3.176033pt;}
.ls4_c01123{letter-spacing:3.176800pt;}
.ls0_c01123{letter-spacing:3.234043pt;}
.ls27_c01123{letter-spacing:3.264800pt;}
.ls13_c01123{letter-spacing:3.273609pt;}
.ls24_c01123{letter-spacing:3.308800pt;}
.ls16_c01123{letter-spacing:3.326400pt;}
.ls2d_c01123{letter-spacing:3.344000pt;}
.ls28_c01123{letter-spacing:3.379209pt;}
.ls26_c01123{letter-spacing:3.449609pt;}
.ls11_c01123{letter-spacing:3.520000pt;}
.ls14_c01123{letter-spacing:3.572800pt;}
.ls6_c01123{letter-spacing:3.625609pt;}
.ls1d_c01123{letter-spacing:3.836800pt;}
.ls1c_c01123{letter-spacing:48.153776pt;}
.ls25_c01123{letter-spacing:51.955376pt;}
.ls17_c01123{letter-spacing:53.222576pt;}
.ls20_c01123{letter-spacing:54.489776pt;}
.ls15_c01123{letter-spacing:57.024176pt;}
.ws0_c01123{word-spacing:-18.128044pt;}
.ws1_c01123{word-spacing:-17.864000pt;}
.ws2_c01123{word-spacing:0.000000pt;}
._8_c01123{margin-left:-15.445036pt;}
._10_c01123{width:3.407986pt;}
._9_c01123{width:6.207168pt;}
._e_c01123{width:7.180096pt;}
._13_c01123{width:10.146752pt;}
._12_c01123{width:12.801184pt;}
._7_c01123{width:15.601533pt;}
._a_c01123{width:18.689616pt;}
._0_c01123{width:21.179840pt;}
._1_c01123{width:24.974400pt;}
._f_c01123{width:27.928806pt;}
._11_c01123{width:35.959968pt;}
._b_c01123{width:38.656640pt;}
._c_c01123{width:54.280160pt;}
._2_c01123{width:58.930432pt;}
._d_c01123{width:65.294240pt;}
._5_c01123{width:72.168668pt;}
._3_c01123{width:85.225536pt;}
._4_c01123{width:224.646400pt;}
._6_c01123{width:309.935894pt;}
.fs5_c01123{font-size:5.104176pt;}
.fs6_c01123{font-size:9.856000pt;}
.fsb_c01123{font-size:10.032000pt;}
.fsa_c01123{font-size:15.136000pt;}
.fs19_c01123{font-size:19.712000pt;}
.fs3_c01123{font-size:23.936000pt;}
.fsd_c01123{font-size:26.752000pt;}
.fs7_c01123{font-size:28.512176pt;}
.fs9_c01123{font-size:33.440000pt;}
.fs4_c01123{font-size:35.200000pt;}
.fs2_c01123{font-size:38.720000pt;}
.fsc_c01123{font-size:42.240000pt;}
.fs1a_c01123{font-size:48.153776pt;}
.fs24_c01123{font-size:48.752176pt;}
.fs14_c01123{font-size:50.688000pt;}
.fs1f_c01123{font-size:51.955376pt;}
.fs17_c01123{font-size:53.222576pt;}
.fs1b_c01123{font-size:54.489776pt;}
.fs15_c01123{font-size:57.024176pt;}
.fs22_c01123{font-size:58.784176pt;}
.fs1c_c01123{font-size:60.544176pt;}
.fs8_c01123{font-size:62.656000pt;}
.fs0_c01123{font-size:63.536000pt;}
.fs18_c01123{font-size:65.120000pt;}
.fs21_c01123{font-size:65.296000pt;}
.fs10_c01123{font-size:65.472176pt;}
.fs1e_c01123{font-size:66.176000pt;}
.fs16_c01123{font-size:66.528000pt;}
.fs25_c01123{font-size:66.880000pt;}
.fse_c01123{font-size:67.584176pt;}
.fs20_c01123{font-size:68.992176pt;}
.fs1d_c01123{font-size:70.048000pt;}
.fsf_c01123{font-size:70.400000pt;}
.fs13_c01123{font-size:71.456000pt;}
.fs1_c01123{font-size:72.512176pt;}
.fs12_c01123{font-size:74.272176pt;}
.fs11_c01123{font-size:76.736000pt;}
.fs23_c01123{font-size:77.088000pt;}
.y0_c01123{bottom:0.000000pt;}
.y1_c01123{bottom:68.000000pt;}
.y1f_c01123{bottom:148.184120pt;}
.y1e_c01123{bottom:176.379320pt;}
.y1d_c01123{bottom:206.158520pt;}
.y1c_c01123{bottom:234.670520pt;}
.y1b_c01123{bottom:291.690120pt;}
.y1a_c01123{bottom:320.206520pt;}
.y19_c01123{bottom:349.352120pt;}
.y18_c01123{bottom:377.547320pt;}
.y17_c01123{bottom:434.250120pt;}
.y16_c01123{bottom:462.766520pt;}
.y15_c01123{bottom:491.595320pt;}
.y14_c01123{bottom:519.790520pt;}
.y13_c01123{bottom:575.864120pt;}
.y12_c01123{bottom:632.566920pt;}
.y11_c01123{bottom:644.288520pt;}
.y10_c01123{bottom:688.644920pt;}
.yf_c01123{bottom:717.156920pt;}
.yd_c01123{bottom:745.664520pt;}
.ye_c01123{bottom:749.470520pt;}
.yc_c01123{bottom:774.180920pt;}
.y9_c01123{bottom:798.253320pt;}
.y8_c01123{bottom:803.009720pt;}
.yb_c01123{bottom:803.326520pt;}
.ya_c01123{bottom:814.093320pt;}
.y5_c01123{bottom:825.502520pt;}
.y6_c01123{bottom:827.086520pt;}
.y7_c01123{bottom:828.670520pt;}
.y3_c01123{bottom:831.517320pt;}
.y4_c01123{bottom:831.834120pt;}
.y2_c01123{bottom:955.390520pt;}
.y20_c01123{bottom:978.512520pt;}
.h7_c01123{height:9.673125pt;}
.hd_c01123{height:10.279500pt;}
.hc_c01123{height:10.463063pt;}
.hb_c01123{height:15.786375pt;}
.h1b_c01123{height:20.559000pt;}
.hf_c01123{height:26.255625pt;}
.h8_c01123{height:29.737309pt;}
.h1c_c01123{height:32.070415pt;}
.h20_c01123{height:34.602280pt;}
.ha_c01123{height:34.876875pt;}
.h18_c01123{height:35.446236pt;}
.h1d_c01123{height:36.290191pt;}
.h6_c01123{height:36.712500pt;}
.h16_c01123{height:37.978101pt;}
.h5_c01123{height:38.001563pt;}
.h4_c01123{height:39.022500pt;}
.he_c01123{height:41.456250pt;}
.h15_c01123{height:49.747500pt;}
.h24_c01123{height:61.310059pt;}
.h9_c01123{height:61.493438pt;}
.h2_c01123{height:62.357109pt;}
.h1e_c01123{height:63.145684pt;}
.h19_c01123{height:63.879922pt;}
.h22_c01123{height:64.084453pt;}
.h1a_c01123{height:64.225391pt;}
.h25_c01123{height:64.257360pt;}
.h1f_c01123{height:64.948125pt;}
.h17_c01123{height:65.293594pt;}
.h28_c01123{height:65.639063pt;}
.h23_c01123{height:66.330173pt;}
.h21_c01123{height:67.712048pt;}
.h12_c01123{height:68.285434pt;}
.h11_c01123{height:69.093750pt;}
.h14_c01123{height:70.130156pt;}
.h10_c01123{height:70.488184pt;}
.h3_c01123{height:71.166735pt;}
.h27_c01123{height:72.894079pt;}
.h13_c01123{height:75.312188pt;}
.h26_c01123{height:75.657656pt;}
.h1_c01123{height:986.666667pt;}
.h0_c01123{height:1122.666667pt;}
.w1_c01123{width:689.333333pt;}
.w0_c01123{width:793.333333pt;}
.x0_c01123{left:0.000000pt;}
.x1_c01123{left:52.000000pt;}
.x6e_c01123{left:76.931053pt;}
.x4a_c01123{left:77.881453pt;}
.x47_c01123{left:78.831853pt;}
.x76_c01123{left:125.089053pt;}
.x66_c01123{left:127.135053pt;}
.x13_c01123{left:128.081053pt;}
.x4_c01123{left:129.040253pt;}
.x4b_c01123{left:157.587453pt;}
.x1f_c01123{left:162.599053pt;}
.xd_c01123{left:166.739453pt;}
.x14_c01123{left:168.327853pt;}
.x44_c01123{left:169.397053pt;}
.x48_c01123{left:176.670253pt;}
.x6f_c01123{left:185.729853pt;}
.x72_c01123{left:186.640653pt;}
.x5d_c01123{left:188.119053pt;}
.xe_c01123{left:192.554253pt;}
.x77_c01123{left:194.151453pt;}
.x5e_c01123{left:196.857453pt;}
.x7c_c01123{left:197.781453pt;}
.x5_c01123{left:198.736253pt;}
.x15_c01123{left:207.914653pt;}
.x16_c01123{left:210.048653pt;}
.x49_c01123{left:226.275853pt;}
.x6_c01123{left:228.000653pt;}
.x5f_c01123{left:235.691853pt;}
.x17_c01123{left:237.724653pt;}
.x45_c01123{left:239.057853pt;}
.x20_c01123{left:240.663853pt;}
.x21_c01123{left:244.456653pt;}
.x4c_c01123{left:246.405853pt;}
.x60_c01123{left:247.413453pt;}
.x22_c01123{left:250.176653pt;}
.x78_c01123{left:255.751453pt;}
.x23_c01123{left:258.070253pt;}
.xf_c01123{left:260.551853pt;}
.x61_c01123{left:266.122253pt;}
.x52_c01123{left:267.138653pt;}
.x67_c01123{left:274.561453pt;}
.x36_c01123{left:275.877053pt;}
.x3b_c01123{left:277.615053pt;}
.x7_c01123{left:287.985853pt;}
.x24_c01123{left:293.283453pt;}
.x73_c01123{left:294.946653pt;}
.x3c_c01123{left:305.519853pt;}
.x25_c01123{left:315.895053pt;}
.x79_c01123{left:323.700653pt;}
.x4d_c01123{left:326.367053pt;}
.x58_c01123{left:335.039453pt;}
.x6b_c01123{left:343.051853pt;}
.x74_c01123{left:344.165053pt;}
.x8_c01123{left:345.401453pt;}
.x26_c01123{left:348.683853pt;}
.x37_c01123{left:354.139853pt;}
.x4e_c01123{left:355.169453pt;}
.x3d_c01123{left:357.087853pt;}
.x53_c01123{left:365.016653pt;}
.x18_c01123{left:365.967053pt;}
.x27_c01123{left:368.369453pt;}
.x70_c01123{left:373.596653pt;}
.x3e_c01123{left:375.897853pt;}
.x6c_c01123{left:383.267853pt;}
.x62_c01123{left:385.217053pt;}
.x9_c01123{left:386.281853pt;}
.x7a_c01123{left:393.088653pt;}
.x3f_c01123{left:394.382253pt;}
.x38_c01123{left:395.755053pt;}
.x6d_c01123{left:402.284653pt;}
.x19_c01123{left:405.241453pt;}
.x68_c01123{left:413.786253pt;}
.x1a_c01123{left:415.119453pt;}
.x46_c01123{left:416.188653pt;}
.x28_c01123{left:418.283053pt;}
.x6a_c01123{left:423.646653pt;}
.x29_c01123{left:430.211453pt;}
.x2a_c01123{left:433.291453pt;}
.x40_c01123{left:434.774253pt;}
.x2b_c01123{left:437.955453pt;}
.x4f_c01123{left:443.292653pt;}
.xa_c01123{left:444.247453pt;}
.x1b_c01123{left:445.778653pt;}
.x59_c01123{left:452.968253pt;}
.x63_c01123{left:463.453453pt;}
.x1c_c01123{left:464.804253pt;}
.x7b_c01123{left:472.279853pt;}
.x54_c01123{left:473.419453pt;}
.x39_c01123{left:475.267453pt;}
.x2c_c01123{left:477.581853pt;}
.xb_c01123{left:482.061053pt;}
.x41_c01123{left:483.983853pt;}
.x1d_c01123{left:492.255853pt;}
.x5a_c01123{left:493.628653pt;}
.x75_c01123{left:500.171453pt;}
.x55_c01123{left:501.759853pt;}
.x42_c01123{left:511.259453pt;}
.x1e_c01123{left:513.903853pt;}
.x10_c01123{left:518.611853pt;}
.x2d_c01123{left:519.641453pt;}
.x5b_c01123{left:521.441053pt;}
.x2e_c01123{left:525.119453pt;}
.x2f_c01123{left:534.724653pt;}
.x30_c01123{left:537.606653pt;}
.x31_c01123{left:544.844653pt;}
.x64_c01123{left:551.039853pt;}
.x3a_c01123{left:560.684653pt;}
.x33_c01123{left:562.127853pt;}
.x71_c01123{left:569.563853pt;}
.x56_c01123{left:570.505453pt;}
.x65_c01123{left:579.947853pt;}
.x11_c01123{left:585.082653pt;}
.x34_c01123{left:591.264653pt;}
.x69_c01123{left:599.827053pt;}
.x12_c01123{left:608.759053pt;}
.x5c_c01123{left:610.932653pt;}
.x43_c01123{left:620.920653pt;}
.xc_c01123{left:622.174653pt;}
.x32_c01123{left:629.381853pt;}
.x57_c01123{left:630.371853pt;}
.x35_c01123{left:631.476253pt;}
.x2_c01123{left:633.355053pt;}
.x50_c01123{left:640.711853pt;}
.x51_c01123{left:660.423853pt;}
.x3_c01123{left:671.419453pt;}
.x7d_c01123{left:690.379053pt;}
}





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

.ir_c01124:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01124{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01124;src:url('chunks/assets/font_8c6dd80a7bd009fff5ffe0c1.woff2')format("woff");}.ff1_c01124{font-family:ff1_c01124;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01124;src:url('chunks/assets/font_991d99337fadc8c82eb63cf6.woff2')format("woff");}.ff2_c01124{font-family:ff2_c01124;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01124;src:url('chunks/assets/font_6ecbdc7406dc17f88204562d.woff2')format("woff");}.ff3_c01124{font-family:ff3_c01124;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01124;src:url('chunks/assets/font_865094bc35886e2f4011a29d.woff2')format("woff");}.ff4_c01124{font-family:ff4_c01124;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3f_c01124{transform:matrix(0.019738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.019738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.019738,0.000000,0.000000,0.250000,0,0);}
.m82_c01124{transform:matrix(0.023810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.023810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.023810,0.000000,0.000000,0.250000,0,0);}
.m37_c01124{transform:matrix(0.062501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062501,0.000000,0.000000,0.250000,0,0);}
.m5c_c01124{transform:matrix(0.073170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073170,0.000000,0.000000,0.250000,0,0);}
.m7e_c01124{transform:matrix(0.073468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073468,0.000000,0.000000,0.250000,0,0);}
.m60_c01124{transform:matrix(0.079269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.079269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.079269,0.000000,0.000000,0.250000,0,0);}
.m4c_c01124{transform:matrix(0.085228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085228,0.000000,0.000000,0.250000,0,0);}
.m61_c01124{transform:matrix(0.091464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091464,0.000000,0.000000,0.250000,0,0);}
.m53_c01124{transform:matrix(0.101136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101136,0.000000,0.000000,0.250000,0,0);}
.m2b_c01124{transform:matrix(0.102325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102325,0.000000,0.000000,0.250000,0,0);}
.m3a_c01124{transform:matrix(0.103473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103473,0.000000,0.000000,0.250000,0,0);}
.m5b_c01124{transform:matrix(0.115853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115853,0.000000,0.000000,0.250000,0,0);}
.m81_c01124{transform:matrix(0.119420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119420,0.000000,0.000000,0.250000,0,0);}
.mc_c01124{transform:matrix(0.124074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124074,0.000000,0.000000,0.250000,0,0);}
.m19_c01124{transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);}
.m45_c01124{transform:matrix(0.129506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129506,0.000000,0.000000,0.250000,0,0);}
.m2c_c01124{transform:matrix(0.131229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131229,0.000000,0.000000,0.250000,0,0);}
.m96_c01124{transform:matrix(0.144021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144021,0.000000,0.000000,0.250000,0,0);}
.m3e_c01124{transform:matrix(0.144736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144736,0.000000,0.000000,0.250000,0,0);}
.m5e_c01124{transform:matrix(0.152648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152648,0.000000,0.000000,0.250000,0,0);}
.m1_c01124{transform:matrix(0.154069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154069,0.000000,0.000000,0.250000,0,0);}
.m7d_c01124{transform:matrix(0.154084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154084,0.000000,0.000000,0.250000,0,0);}
.md_c01124{transform:matrix(0.155556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155556,0.000000,0.000000,0.250000,0,0);}
.m5d_c01124{transform:matrix(0.157520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157520,0.000000,0.000000,0.250000,0,0);}
.m94_c01124{transform:matrix(0.157609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157609,0.000000,0.000000,0.250000,0,0);}
.m6b_c01124{transform:matrix(0.160661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160661,0.000000,0.000000,0.250000,0,0);}
.m49_c01124{transform:matrix(0.164774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164774,0.000000,0.000000,0.250000,0,0);}
.m97_c01124{transform:matrix(0.164855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164855,0.000000,0.000000,0.250000,0,0);}
.m2f_c01124{transform:matrix(0.165698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165698,0.000000,0.000000,0.250000,0,0);}
.m4a_c01124{transform:matrix(0.166194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166194,0.000000,0.000000,0.250000,0,0);}
.m7f_c01124{transform:matrix(0.166666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166666,0.000000,0.000000,0.250000,0,0);}
.m8e_c01124{transform:matrix(0.168657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168657,0.000000,0.000000,0.250000,0,0);}
.m2d_c01124{transform:matrix(0.171512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171512,0.000000,0.000000,0.250000,0,0);}
.m48_c01124{transform:matrix(0.173864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173864,0.000000,0.000000,0.250000,0,0);}
.m80_c01124{transform:matrix(0.174429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174429,0.000000,0.000000,0.250000,0,0);}
.m30_c01124{transform:matrix(0.175872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175872,0.000000,0.000000,0.250000,0,0);}
.m12_c01124{transform:matrix(0.182540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182540,0.000000,0.000000,0.250000,0,0);}
.m5f_c01124{transform:matrix(0.182926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182926,0.000000,0.000000,0.250000,0,0);}
.m38_c01124{transform:matrix(0.184027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184027,0.000000,0.000000,0.250000,0,0);}
.m3b_c01124{transform:matrix(0.202632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202632,0.000000,0.000000,0.250000,0,0);}
.m55_c01124{transform:matrix(0.209796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209796,0.000000,0.000000,0.250000,0,0);}
.m40_c01124{transform:matrix(0.223684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223684,0.000000,0.000000,0.250000,0,0);}
.m2e_c01124{transform:matrix(0.226580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226580,0.000000,0.000000,0.250000,0,0);}
.m39_c01124{transform:matrix(0.232318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232318,0.000000,0.000000,0.250000,0,0);}
.m16_c01124{transform:matrix(0.236974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236974,0.000000,0.000000,0.250000,0,0);}
.m54_c01124{transform:matrix(0.238847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238847,0.000000,0.000000,0.250000,0,0);}
.m73_c01124{transform:matrix(0.239663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239663,0.000000,0.000000,0.250000,0,0);}
.m59_c01124{transform:matrix(0.241083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241083,0.000000,0.000000,0.250000,0,0);}
.m58_c01124{transform:matrix(0.248019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248019,0.000000,0.000000,0.250000,0,0);}
.m28_c01124{transform:matrix(0.248281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248281,0.000000,0.000000,0.250000,0,0);}
.m2_c01124{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m29_c01124{transform:matrix(0.257109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257109,0.000000,0.000000,0.250000,0,0);}
.m7b_c01124{transform:matrix(0.257890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257890,0.000000,0.000000,0.250000,0,0);}
.m4e_c01124{transform:matrix(0.261409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261409,0.000000,0.000000,0.250000,0,0);}
.m43_c01124{transform:matrix(0.262691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262691,0.000000,0.000000,0.250000,0,0);}
.m57_c01124{transform:matrix(0.263331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263331,0.000000,0.000000,0.250000,0,0);}
.m8b_c01124{transform:matrix(0.264729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264729,0.000000,0.000000,0.250000,0,0);}
.m35_c01124{transform:matrix(0.265840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265840,0.000000,0.000000,0.250000,0,0);}
.m78_c01124{transform:matrix(0.266202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266202,0.000000,0.000000,0.250000,0,0);}
.ma_c01124{transform:matrix(0.268324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268324,0.000000,0.000000,0.250000,0,0);}
.m56_c01124{transform:matrix(0.269371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269371,0.000000,0.000000,0.250000,0,0);}
.m1d_c01124{transform:matrix(0.270287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270287,0.000000,0.000000,0.250000,0,0);}
.m10_c01124{transform:matrix(0.270809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270809,0.000000,0.000000,0.250000,0,0);}
.m51_c01124{transform:matrix(0.271003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271003,0.000000,0.000000,0.250000,0,0);}
.m14_c01124{transform:matrix(0.271177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271177,0.000000,0.000000,0.250000,0,0);}
.m76_c01124{transform:matrix(0.271770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271770,0.000000,0.000000,0.250000,0,0);}
.m2a_c01124{transform:matrix(0.272698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272698,0.000000,0.000000,0.250000,0,0);}
.m75_c01124{transform:matrix(0.273293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273293,0.000000,0.000000,0.250000,0,0);}
.mb_c01124{transform:matrix(0.274788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274788,0.000000,0.000000,0.250000,0,0);}
.m4f_c01124{transform:matrix(0.274933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274933,0.000000,0.000000,0.250000,0,0);}
.m69_c01124{transform:matrix(0.275018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275018,0.000000,0.000000,0.250000,0,0);}
.m4_c01124{transform:matrix(0.275114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275114,0.000000,0.000000,0.250000,0,0);}
.m83_c01124{transform:matrix(0.276764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276764,0.000000,0.000000,0.250000,0,0);}
.m44_c01124{transform:matrix(0.277987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277987,0.000000,0.000000,0.250000,0,0);}
.m21_c01124{transform:matrix(0.278154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278154,0.000000,0.000000,0.250000,0,0);}
.m74_c01124{transform:matrix(0.278456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278456,0.000000,0.000000,0.250000,0,0);}
.m47_c01124{transform:matrix(0.279414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279414,0.000000,0.000000,0.250000,0,0);}
.m92_c01124{transform:matrix(0.279941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279941,0.000000,0.000000,0.250000,0,0);}
.m34_c01124{transform:matrix(0.279966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279966,0.000000,0.000000,0.250000,0,0);}
.m4b_c01124{transform:matrix(0.281425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281425,0.000000,0.000000,0.250000,0,0);}
.m6e_c01124{transform:matrix(0.281772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281772,0.000000,0.000000,0.250000,0,0);}
.m8_c01124{transform:matrix(0.282175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282175,0.000000,0.000000,0.250000,0,0);}
.m8a_c01124{transform:matrix(0.282874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282874,0.000000,0.000000,0.250000,0,0);}
.m23_c01124{transform:matrix(0.283033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283033,0.000000,0.000000,0.250000,0,0);}
.m27_c01124{transform:matrix(0.284429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284429,0.000000,0.000000,0.250000,0,0);}
.m1a_c01124{transform:matrix(0.285861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285861,0.000000,0.000000,0.250000,0,0);}
.m98_c01124{transform:matrix(0.286873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286873,0.000000,0.000000,0.250000,0,0);}
.m18_c01124{transform:matrix(0.287524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287524,0.000000,0.000000,0.250000,0,0);}
.m6_c01124{transform:matrix(0.287656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287656,0.000000,0.000000,0.250000,0,0);}
.m7c_c01124{transform:matrix(0.287913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287913,0.000000,0.000000,0.250000,0,0);}
.m11_c01124{transform:matrix(0.288617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288617,0.000000,0.000000,0.250000,0,0);}
.m62_c01124{transform:matrix(0.288732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288732,0.000000,0.000000,0.250000,0,0);}
.m71_c01124{transform:matrix(0.289207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289207,0.000000,0.000000,0.250000,0,0);}
.m89_c01124{transform:matrix(0.289394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289394,0.000000,0.000000,0.250000,0,0);}
.m22_c01124{transform:matrix(0.289454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289454,0.000000,0.000000,0.250000,0,0);}
.m9_c01124{transform:matrix(0.289521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289521,0.000000,0.000000,0.250000,0,0);}
.m36_c01124{transform:matrix(0.289616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289616,0.000000,0.000000,0.250000,0,0);}
.me_c01124{transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);}
.m85_c01124{transform:matrix(0.290796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290796,0.000000,0.000000,0.250000,0,0);}
.m95_c01124{transform:matrix(0.291518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291518,0.000000,0.000000,0.250000,0,0);}
.m86_c01124{transform:matrix(0.291753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291753,0.000000,0.000000,0.250000,0,0);}
.mf_c01124{transform:matrix(0.292564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292564,0.000000,0.000000,0.250000,0,0);}
.m0_c01124{transform:matrix(0.293348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293348,0.000000,0.000000,0.250000,0,0);}
.m8d_c01124{transform:matrix(0.293483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293483,0.000000,0.000000,0.250000,0,0);}
.m72_c01124{transform:matrix(0.293514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293514,0.000000,0.000000,0.250000,0,0);}
.m88_c01124{transform:matrix(0.293956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293956,0.000000,0.000000,0.250000,0,0);}
.m91_c01124{transform:matrix(0.295174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295174,0.000000,0.000000,0.250000,0,0);}
.m87_c01124{transform:matrix(0.295511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295511,0.000000,0.000000,0.250000,0,0);}
.m15_c01124{transform:matrix(0.295976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295976,0.000000,0.000000,0.250000,0,0);}
.m65_c01124{transform:matrix(0.301568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301568,0.000000,0.000000,0.250000,0,0);}
.m4d_c01124{transform:matrix(0.302371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302371,0.000000,0.000000,0.250000,0,0);}
.m7a_c01124{transform:matrix(0.304477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304477,0.000000,0.000000,0.250000,0,0);}
.m1f_c01124{transform:matrix(0.304785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304785,0.000000,0.000000,0.250000,0,0);}
.m79_c01124{transform:matrix(0.307879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307879,0.000000,0.000000,0.250000,0,0);}
.m31_c01124{transform:matrix(0.308057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308057,0.000000,0.000000,0.250000,0,0);}
.m24_c01124{transform:matrix(0.308127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308127,0.000000,0.000000,0.250000,0,0);}
.m63_c01124{transform:matrix(0.309288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309288,0.000000,0.000000,0.250000,0,0);}
.m77_c01124{transform:matrix(0.309870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309870,0.000000,0.000000,0.250000,0,0);}
.m70_c01124{transform:matrix(0.313456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313456,0.000000,0.000000,0.250000,0,0);}
.m7_c01124{transform:matrix(0.314140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314140,0.000000,0.000000,0.250000,0,0);}
.m50_c01124{transform:matrix(0.315642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315642,0.000000,0.000000,0.250000,0,0);}
.m52_c01124{transform:matrix(0.315993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315993,0.000000,0.000000,0.250000,0,0);}
.m42_c01124{transform:matrix(0.321064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321064,0.000000,0.000000,0.250000,0,0);}
.m84_c01124{transform:matrix(0.323048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323048,0.000000,0.000000,0.250000,0,0);}
.m20_c01124{transform:matrix(0.324508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324508,0.000000,0.000000,0.250000,0,0);}
.m6c_c01124{transform:matrix(0.328814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328814,0.000000,0.000000,0.250000,0,0);}
.m25_c01124{transform:matrix(0.329810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329810,0.000000,0.000000,0.250000,0,0);}
.m64_c01124{transform:matrix(0.330262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330262,0.000000,0.000000,0.250000,0,0);}
.m66_c01124{transform:matrix(0.330264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330264,0.000000,0.000000,0.250000,0,0);}
.m3d_c01124{transform:matrix(0.330315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330315,0.000000,0.000000,0.250000,0,0);}
.m99_c01124{transform:matrix(0.332326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332326,0.000000,0.000000,0.250000,0,0);}
.m17_c01124{transform:matrix(0.332800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332800,0.000000,0.000000,0.250000,0,0);}
.m8f_c01124{transform:matrix(0.335937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335937,0.000000,0.000000,0.250000,0,0);}
.m67_c01124{transform:matrix(0.342254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342254,0.000000,0.000000,0.250000,0,0);}
.m3c_c01124{transform:matrix(0.343857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343857,0.000000,0.000000,0.250000,0,0);}
.m41_c01124{transform:matrix(0.348169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348169,0.000000,0.000000,0.250000,0,0);}
.m26_c01124{transform:matrix(0.348301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348301,0.000000,0.000000,0.250000,0,0);}
.m68_c01124{transform:matrix(0.354500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354500,0.000000,0.000000,0.250000,0,0);}
.m6a_c01124{transform:matrix(0.354950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354950,0.000000,0.000000,0.250000,0,0);}
.m3_c01124{transform:matrix(0.361535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361535,0.000000,0.000000,0.250000,0,0);}
.m5a_c01124{transform:matrix(0.363915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363915,0.000000,0.000000,0.250000,0,0);}
.m33_c01124{transform:matrix(0.366687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366687,0.000000,0.000000,0.250000,0,0);}
.m8c_c01124{transform:matrix(0.366900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366900,0.000000,0.000000,0.250000,0,0);}
.m1b_c01124{transform:matrix(0.370971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370971,0.000000,0.000000,0.250000,0,0);}
.m6d_c01124{transform:matrix(0.371859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371859,0.000000,0.000000,0.250000,0,0);}
.m32_c01124{transform:matrix(0.372820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372820,0.000000,0.000000,0.250000,0,0);}
.m1e_c01124{transform:matrix(0.379683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379683,0.000000,0.000000,0.250000,0,0);}
.m13_c01124{transform:matrix(0.387664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387664,0.000000,0.000000,0.250000,0,0);}
.m6f_c01124{transform:matrix(0.395417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395417,0.000000,0.000000,0.250000,0,0);}
.m46_c01124{transform:matrix(0.396432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396432,0.000000,0.000000,0.250000,0,0);}
.m93_c01124{transform:matrix(0.402725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402725,0.000000,0.000000,0.250000,0,0);}
.m1c_c01124{transform:matrix(0.409017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409017,0.000000,0.000000,0.250000,0,0);}
.m90_c01124{transform:matrix(0.415310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415310,0.000000,0.000000,0.250000,0,0);}
.m5_c01124{transform:matrix(0.421602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421602,0.000000,0.000000,0.250000,0,0);}
.v0_c01124{vertical-align:0.000000px;}
.v1_c01124{vertical-align:2.882880px;}
.ls2d_c01124{letter-spacing:-4.740127px;}
.ls2a_c01124{letter-spacing:-3.243240px;}
.ls2e_c01124{letter-spacing:-3.021480px;}
.lsb_c01124{letter-spacing:-2.855167px;}
.ls1e_c01124{letter-spacing:-2.626477px;}
.ls1b_c01124{letter-spacing:-2.619540px;}
.ls14_c01124{letter-spacing:-2.522527px;}
.ls28_c01124{letter-spacing:-2.417144px;}
.lsf_c01124{letter-spacing:-2.411640px;}
.ls1c_c01124{letter-spacing:-2.328480px;}
.ls21_c01124{letter-spacing:-2.321550px;}
.ls16_c01124{letter-spacing:-0.480666px;}
.ls4_c01124{letter-spacing:0.000000px;}
.ls30_c01124{letter-spacing:0.318978px;}
.ls22_c01124{letter-spacing:0.472766px;}
.ls18_c01124{letter-spacing:0.604773px;}
.ls1f_c01124{letter-spacing:1.300622px;}
.ls0_c01124{letter-spacing:1.498068px;}
.ls2b_c01124{letter-spacing:1.624115px;}
.ls12_c01124{letter-spacing:1.866670px;}
.ls2c_c01124{letter-spacing:2.637360px;}
.ls31_c01124{letter-spacing:3.009600px;}
.ls7_c01124{letter-spacing:3.090780px;}
.ls23_c01124{letter-spacing:3.128400px;}
.ls25_c01124{letter-spacing:3.207610px;}
.ls1d_c01124{letter-spacing:3.326400px;}
.ls27_c01124{letter-spacing:3.421924px;}
.ls6_c01124{letter-spacing:3.465000px;}
.ls19_c01124{letter-spacing:3.534310px;}
.ls29_c01124{letter-spacing:3.544200px;}
.ls10_c01124{letter-spacing:3.554110px;}
.ls11_c01124{letter-spacing:3.603610px;}
.ls5_c01124{letter-spacing:3.722400px;}
.ls1a_c01124{letter-spacing:3.742200px;}
.ls2_c01124{letter-spacing:3.752110px;}
.ls24_c01124{letter-spacing:3.801610px;}
.ls2f_c01124{letter-spacing:3.960000px;}
.lse_c01124{letter-spacing:3.979810px;}
.lsa_c01124{letter-spacing:3.999610px;}
.lsc_c01124{letter-spacing:4.078810px;}
.ls1_c01124{letter-spacing:22.487256px;}
.lsd_c01124{letter-spacing:31.363200px;}
.ls13_c01124{letter-spacing:51.321798px;}
.ls26_c01124{letter-spacing:52.747398px;}
.ls15_c01124{letter-spacing:54.172998px;}
.ls20_c01124{letter-spacing:58.449798px;}
.ls9_c01124{letter-spacing:59.875398px;}
.ls3_c01124{letter-spacing:61.300998px;}
.ls17_c01124{letter-spacing:62.726400px;}
.ls8_c01124{letter-spacing:64.152198px;}
.ls32_c01124{letter-spacing:65.577798px;}
.sc__c01124{text-shadow:none;}
.sc0_c01124{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01124{-webkit-text-stroke:0px transparent;}
.sc0_c01124{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01124{word-spacing:-21.496622px;}
.ws2_c01124{word-spacing:-20.196000px;}
.ws0_c01124{word-spacing:-19.265400px;}
.ws3_c01124{word-spacing:-18.760550px;}
.ws4_c01124{word-spacing:0.000000px;}
._1_c01124{margin-left:-13.305600px;}
._8_c01124{margin-left:-7.954502px;}
._7_c01124{margin-left:-5.928219px;}
._0_c01124{margin-left:-2.286900px;}
._3_c01124{width:2.590632px;}
._5_c01124{width:4.669315px;}
._6_c01124{width:32.300928px;}
._9_c01124{width:40.372725px;}
._4_c01124{width:454.746600px;}
._2_c01124{width:618.221736px;}
.fc0_c01124{color:transparent;}
.fs14_c01124{font-size:11.286000px;}
.fs2e_c01124{font-size:20.790000px;}
.fsd_c01124{font-size:22.572000px;}
.fsa_c01124{font-size:23.166000px;}
.fsf_c01124{font-size:26.928000px;}
.fs2c_c01124{font-size:27.720000px;}
.fs19_c01124{font-size:28.314000px;}
.fs10_c01124{font-size:30.096000px;}
.fsb_c01124{font-size:31.363200px;}
.fs15_c01124{font-size:34.254000px;}
.fse_c01124{font-size:45.144000px;}
.fs17_c01124{font-size:51.321798px;}
.fs22_c01124{font-size:51.480000px;}
.fs25_c01124{font-size:52.747398px;}
.fs1a_c01124{font-size:54.172998px;}
.fs20_c01124{font-size:58.449798px;}
.fs5_c01124{font-size:59.875398px;}
.fs2b_c01124{font-size:60.192000px;}
.fs1_c01124{font-size:61.300998px;}
.fs13_c01124{font-size:62.568000px;}
.fs1d_c01124{font-size:62.726400px;}
.fs4_c01124{font-size:64.152198px;}
.fs1b_c01124{font-size:64.548000px;}
.fs2d_c01124{font-size:65.577798px;}
.fs1e_c01124{font-size:65.736198px;}
.fs21_c01124{font-size:66.330000px;}
.fs9_c01124{font-size:66.528000px;}
.fs11_c01124{font-size:68.904000px;}
.fs3_c01124{font-size:69.300000px;}
.fs1c_c01124{font-size:70.686198px;}
.fs26_c01124{font-size:70.884000px;}
.fs12_c01124{font-size:71.082198px;}
.fs16_c01124{font-size:72.072198px;}
.fs2_c01124{font-size:74.448000px;}
.fs7_c01124{font-size:74.844000px;}
.fs0_c01124{font-size:75.042198px;}
.fs23_c01124{font-size:76.032198px;}
.fs28_c01124{font-size:79.200000px;}
.fsc_c01124{font-size:79.596198px;}
.fs6_c01124{font-size:79.992198px;}
.fs1f_c01124{font-size:80.784000px;}
.fs8_c01124{font-size:81.576198px;}
.fs24_c01124{font-size:82.368000px;}
.fs18_c01124{font-size:85.140000px;}
.fs2a_c01124{font-size:86.328000px;}
.fs27_c01124{font-size:92.664000px;}
.fs29_c01124{font-size:135.432198px;}
.y0_c01124{bottom:0.000000px;}
.y1_c01124{bottom:76.500000px;}
.y20_c01124{bottom:124.295535px;}
.y1f_c01124{bottom:155.653785px;}
.y1e_c01124{bottom:216.246735px;}
.y1d_c01124{bottom:221.236335px;}
.y1c_c01124{bottom:285.388335px;}
.y1b_c01124{bottom:315.320985px;}
.y1a_c01124{bottom:349.535385px;}
.y19_c01124{bottom:413.330985px;}
.y18_c01124{bottom:445.055535px;}
.y17_c01124{bottom:476.775135px;}
.y16_c01124{bottom:477.487935px;}
.y15_c01124{bottom:508.494735px;}
.y14_c01124{bottom:539.857935px;}
.y13_c01124{bottom:571.928985px;}
.y12_c01124{bottom:604.004985px;}
.y11_c01124{bottom:619.330185px;}
.y10_c01124{bottom:635.724585px;}
.yf_c01124{bottom:660.321135px;}
.ye_c01124{bottom:667.087785px;}
.yd_c01124{bottom:696.312585px;}
.yb_c01124{bottom:699.881535px;}
.yc_c01124{bottom:700.237935px;}
.ya_c01124{bottom:721.973385px;}
.y9_c01124{bottom:732.308985px;}
.y8_c01124{bottom:761.890185px;}
.y7_c01124{bottom:772.587135px;}
.y6_c01124{bottom:785.061135px;}
.y5_c01124{bottom:796.822335px;}
.y4_c01124{bottom:860.261535px;}
.y3_c01124{bottom:925.839135px;}
.y21_c01124{bottom:1076.234985px;}
.y2_c01124{bottom:1080.155385px;}
.hd_c01124{height:20.887891px;}
.h2f_c01124{height:21.683320px;}
.hf_c01124{height:23.541891px;}
.hc_c01124{height:24.161414px;}
.h2d_c01124{height:28.911094px;}
.h18_c01124{height:29.530617px;}
.h14_c01124{height:33.618428px;}
.h16_c01124{height:34.180317px;}
.h26_c01124{height:35.129767px;}
.h19_c01124{height:36.079217px;}
.h20_c01124{height:38.927565px;}
.h7_c01124{height:39.877015px;}
.h3_c01124{height:40.826465px;}
.h1d_c01124{height:41.775782px;}
.h6_c01124{height:42.725364px;}
.h2e_c01124{height:43.674813px;}
.h10_c01124{height:47.083781px;}
.h22_c01124{height:50.524805px;}
.h2c_c01124{height:59.075156px;}
.h25_c01124{height:62.961874px;}
.h21_c01124{height:65.099268px;}
.h13_c01124{height:65.256469px;}
.h1a_c01124{height:67.321547px;}
.h11_c01124{height:67.625508px;}
.h1e_c01124{height:68.560800px;}
.h1c_c01124{height:69.374638px;}
.hb_c01124{height:69.386625px;}
.h27_c01124{height:69.568770px;}
.h12_c01124{height:69.763290px;}
.h15_c01124{height:70.734921px;}
.h5_c01124{height:72.277734px;}
.h4_c01124{height:73.066641px;}
.h9_c01124{height:73.455293px;}
.h2_c01124{height:73.649813px;}
.h29_c01124{height:77.730469px;}
.he_c01124{height:78.119315px;}
.h8_c01124{height:78.507968px;}
.h1f_c01124{height:79.285078px;}
.h23_c01124{height:79.299207px;}
.ha_c01124{height:80.062577px;}
.h1b_c01124{height:85.081425px;}
.h24_c01124{height:88.790130px;}
.h17_c01124{height:88.798359px;}
.h2b_c01124{height:90.037406px;}
.h28_c01124{height:96.645656px;}
.h2a_c01124{height:141.251550px;}
.h1_c01124{height:1110.000000px;}
.h0_c01124{height:1263.000000px;}
.w1_c01124{width:775.500000px;}
.w0_c01124{width:892.500000px;}
.x0_c01124{left:0.000000px;}
.x1_c01124{left:58.500000px;}
.x58_c01124{left:90.863835px;}
.xc_c01124{left:93.368535px;}
.x3_c01124{left:95.150535px;}
.x56_c01124{left:146.006835px;}
.x3a_c01124{left:147.184935px;}
.xd_c01124{left:148.189785px;}
.x4_c01124{left:149.278785px;}
.x5_c01124{left:171.444885px;}
.x5f_c01124{left:179.082735px;}
.x1a_c01124{left:181.671585px;}
.x20_c01124{left:182.740785px;}
.x26_c01124{left:193.442685px;}
.x59_c01124{left:200.892435px;}
.x12_c01124{left:203.852535px;}
.xe_c01124{left:214.128735px;}
.x65_c01124{left:223.147635px;}
.x57_c01124{left:235.507785px;}
.x3b_c01124{left:237.443235px;}
.x6_c01124{left:248.907435px;}
.xf_c01124{left:256.956135px;}
.x1b_c01124{left:259.955835px;}
.x49_c01124{left:268.004535px;}
.x5a_c01124{left:269.286585px;}
.x44_c01124{left:270.296385px;}
.x4a_c01124{left:271.568535px;}
.x27_c01124{left:280.755735px;}
.x7_c01124{left:281.973435px;}
.x66_c01124{left:288.274785px;}
.x1c_c01124{left:292.675335px;}
.x67_c01124{left:302.595135px;}
.x28_c01124{left:303.951435px;}
.x60_c01124{left:309.327135px;}
.x68_c01124{left:312.326835px;}
.x3f_c01124{left:313.980135px;}
.x13_c01124{left:315.014685px;}
.x8_c01124{left:316.870935px;}
.x10_c01124{left:326.830335px;}
.x30_c01124{left:329.612235px;}
.x69_c01124{left:334.586985px;}
.x14_c01124{left:337.893585px;}
.x4b_c01124{left:339.913185px;}
.x61_c01124{left:343.912785px;}
.x31_c01124{left:348.362835px;}
.x5b_c01124{left:349.585485px;}
.x6b_c01124{left:357.604485px;}
.x4c_c01124{left:358.881585px;}
.x40_c01124{left:369.578535px;}
.x11_c01124{left:371.469435px;}
.x15_c01124{left:380.171535px;}
.x41_c01124{left:382.408935px;}
.x6c_c01124{left:390.333885px;}
.x9_c01124{left:405.307635px;}
.x45_c01124{left:413.306835px;}
.x16_c01124{left:414.786885px;}
.x5c_c01124{left:424.063185px;}
.x21_c01124{left:426.473835px;}
.x32_c01124{left:437.111385px;}
.x39_c01124{left:443.887935px;}
.x3c_c01124{left:446.204535px;}
.x1d_c01124{left:448.070685px;}
.x4d_c01124{left:452.976135px;}
.x29_c01124{left:459.742785px;}
.x62_c01124{left:462.950385px;}
.x17_c01124{left:469.677435px;}
.x25_c01124{left:473.365185px;}
.x6d_c01124{left:478.171635px;}
.x1e_c01124{left:481.507935px;}
.x2a_c01124{left:489.680385px;}
.xa_c01124{left:493.036485px;}
.x46_c01124{left:496.357935px;}
.x47_c01124{left:503.050335px;}
.x50_c01124{left:504.065085px;}
.x33_c01124{left:511.029735px;}
.x3d_c01124{left:513.514635px;}
.xb_c01124{left:525.270885px;}
.x4e_c01124{left:526.869735px;}
.x5d_c01124{left:536.136135px;}
.x34_c01124{left:537.210285px;}
.x42_c01124{left:541.714785px;}
.x54_c01124{left:546.298485px;}
.x2b_c01124{left:548.491335px;}
.x22_c01124{left:558.237885px;}
.x6e_c01124{left:566.964735px;}
.x1f_c01124{left:569.900085px;}
.x35_c01124{left:572.721585px;}
.x2c_c01124{left:579.814935px;}
.x48_c01124{left:591.526635px;}
.x36_c01124{left:601.847385px;}
.x63_c01124{left:612.583935px;}
.x23_c01124{left:613.727385px;}
.x37_c01124{left:618.850635px;}
.x51_c01124{left:634.636185px;}
.x2d_c01124{left:637.665585px;}
.x43_c01124{left:640.759335px;}
.x2e_c01124{left:647.209185px;}
.x55_c01124{left:657.455685px;}
.x38_c01124{left:658.970385px;}
.x5e_c01124{left:666.024135px;}
.x6f_c01124{left:667.528935px;}
.x52_c01124{left:669.370335px;}
.x2f_c01124{left:681.072135px;}
.x64_c01124{left:689.506935px;}
.x4f_c01124{left:690.561285px;}
.x24_c01124{left:691.907685px;}
.x3e_c01124{left:701.733435px;}
.x18_c01124{left:703.970835px;}
.x19_c01124{left:705.500385px;}
.x2_c01124{left:709.311885px;}
.x53_c01124{left:713.286735px;}
.x6a_c01124{left:721.944285px;}
.x70_c01124{left:755.148885px;}
@media print{
.v0_c01124{vertical-align:0.000000pt;}
.v1_c01124{vertical-align:2.562560pt;}
.ls2d_c01124{letter-spacing:-4.213446pt;}
.ls2a_c01124{letter-spacing:-2.882880pt;}
.ls2e_c01124{letter-spacing:-2.685760pt;}
.lsb_c01124{letter-spacing:-2.537926pt;}
.ls1e_c01124{letter-spacing:-2.334646pt;}
.ls1b_c01124{letter-spacing:-2.328480pt;}
.ls14_c01124{letter-spacing:-2.242246pt;}
.ls28_c01124{letter-spacing:-2.148573pt;}
.lsf_c01124{letter-spacing:-2.143680pt;}
.ls1c_c01124{letter-spacing:-2.069760pt;}
.ls21_c01124{letter-spacing:-2.063600pt;}
.ls16_c01124{letter-spacing:-0.427259pt;}
.ls4_c01124{letter-spacing:0.000000pt;}
.ls30_c01124{letter-spacing:0.283536pt;}
.ls22_c01124{letter-spacing:0.420236pt;}
.ls18_c01124{letter-spacing:0.537576pt;}
.ls1f_c01124{letter-spacing:1.156109pt;}
.ls0_c01124{letter-spacing:1.331616pt;}
.ls2b_c01124{letter-spacing:1.443658pt;}
.ls12_c01124{letter-spacing:1.659262pt;}
.ls2c_c01124{letter-spacing:2.344320pt;}
.ls31_c01124{letter-spacing:2.675200pt;}
.ls7_c01124{letter-spacing:2.747360pt;}
.ls23_c01124{letter-spacing:2.780800pt;}
.ls25_c01124{letter-spacing:2.851209pt;}
.ls1d_c01124{letter-spacing:2.956800pt;}
.ls27_c01124{letter-spacing:3.041710pt;}
.ls6_c01124{letter-spacing:3.080000pt;}
.ls19_c01124{letter-spacing:3.141609pt;}
.ls29_c01124{letter-spacing:3.150400pt;}
.ls10_c01124{letter-spacing:3.159209pt;}
.ls11_c01124{letter-spacing:3.203209pt;}
.ls5_c01124{letter-spacing:3.308800pt;}
.ls1a_c01124{letter-spacing:3.326400pt;}
.ls2_c01124{letter-spacing:3.335209pt;}
.ls24_c01124{letter-spacing:3.379209pt;}
.ls2f_c01124{letter-spacing:3.520000pt;}
.lse_c01124{letter-spacing:3.537609pt;}
.lsa_c01124{letter-spacing:3.555209pt;}
.lsc_c01124{letter-spacing:3.625609pt;}
.ls1_c01124{letter-spacing:19.988672pt;}
.lsd_c01124{letter-spacing:27.878400pt;}
.ls13_c01124{letter-spacing:45.619376pt;}
.ls26_c01124{letter-spacing:46.886576pt;}
.ls15_c01124{letter-spacing:48.153776pt;}
.ls20_c01124{letter-spacing:51.955376pt;}
.ls9_c01124{letter-spacing:53.222576pt;}
.ls3_c01124{letter-spacing:54.489776pt;}
.ls17_c01124{letter-spacing:55.756800pt;}
.ls8_c01124{letter-spacing:57.024176pt;}
.ls32_c01124{letter-spacing:58.291376pt;}
.ws1_c01124{word-spacing:-19.108109pt;}
.ws2_c01124{word-spacing:-17.952000pt;}
.ws0_c01124{word-spacing:-17.124800pt;}
.ws3_c01124{word-spacing:-16.676044pt;}
.ws4_c01124{word-spacing:0.000000pt;}
._1_c01124{margin-left:-11.827200pt;}
._8_c01124{margin-left:-7.070668pt;}
._7_c01124{margin-left:-5.269528pt;}
._0_c01124{margin-left:-2.032800pt;}
._3_c01124{width:2.302784pt;}
._5_c01124{width:4.150502pt;}
._6_c01124{width:28.711936pt;}
._9_c01124{width:35.886866pt;}
._4_c01124{width:404.219200pt;}
._2_c01124{width:549.530432pt;}
.fs14_c01124{font-size:10.032000pt;}
.fs2e_c01124{font-size:18.480000pt;}
.fsd_c01124{font-size:20.064000pt;}
.fsa_c01124{font-size:20.592000pt;}
.fsf_c01124{font-size:23.936000pt;}
.fs2c_c01124{font-size:24.640000pt;}
.fs19_c01124{font-size:25.168000pt;}
.fs10_c01124{font-size:26.752000pt;}
.fsb_c01124{font-size:27.878400pt;}
.fs15_c01124{font-size:30.448000pt;}
.fse_c01124{font-size:40.128000pt;}
.fs17_c01124{font-size:45.619376pt;}
.fs22_c01124{font-size:45.760000pt;}
.fs25_c01124{font-size:46.886576pt;}
.fs1a_c01124{font-size:48.153776pt;}
.fs20_c01124{font-size:51.955376pt;}
.fs5_c01124{font-size:53.222576pt;}
.fs2b_c01124{font-size:53.504000pt;}
.fs1_c01124{font-size:54.489776pt;}
.fs13_c01124{font-size:55.616000pt;}
.fs1d_c01124{font-size:55.756800pt;}
.fs4_c01124{font-size:57.024176pt;}
.fs1b_c01124{font-size:57.376000pt;}
.fs2d_c01124{font-size:58.291376pt;}
.fs1e_c01124{font-size:58.432176pt;}
.fs21_c01124{font-size:58.960000pt;}
.fs9_c01124{font-size:59.136000pt;}
.fs11_c01124{font-size:61.248000pt;}
.fs3_c01124{font-size:61.600000pt;}
.fs1c_c01124{font-size:62.832176pt;}
.fs26_c01124{font-size:63.008000pt;}
.fs12_c01124{font-size:63.184176pt;}
.fs16_c01124{font-size:64.064176pt;}
.fs2_c01124{font-size:66.176000pt;}
.fs7_c01124{font-size:66.528000pt;}
.fs0_c01124{font-size:66.704176pt;}
.fs23_c01124{font-size:67.584176pt;}
.fs28_c01124{font-size:70.400000pt;}
.fsc_c01124{font-size:70.752176pt;}
.fs6_c01124{font-size:71.104176pt;}
.fs1f_c01124{font-size:71.808000pt;}
.fs8_c01124{font-size:72.512176pt;}
.fs24_c01124{font-size:73.216000pt;}
.fs18_c01124{font-size:75.680000pt;}
.fs2a_c01124{font-size:76.736000pt;}
.fs27_c01124{font-size:82.368000pt;}
.fs29_c01124{font-size:120.384176pt;}
.y0_c01124{bottom:0.000000pt;}
.y1_c01124{bottom:68.000000pt;}
.y20_c01124{bottom:110.484920pt;}
.y1f_c01124{bottom:138.358920pt;}
.y1e_c01124{bottom:192.219320pt;}
.y1d_c01124{bottom:196.654520pt;}
.y1c_c01124{bottom:253.678520pt;}
.y1b_c01124{bottom:280.285320pt;}
.y1a_c01124{bottom:310.698120pt;}
.y19_c01124{bottom:367.405320pt;}
.y18_c01124{bottom:395.604920pt;}
.y17_c01124{bottom:423.800120pt;}
.y16_c01124{bottom:424.433720pt;}
.y15_c01124{bottom:451.995320pt;}
.y14_c01124{bottom:479.873720pt;}
.y13_c01124{bottom:508.381320pt;}
.y12_c01124{bottom:536.893320pt;}
.y11_c01124{bottom:550.515720pt;}
.y10_c01124{bottom:565.088520pt;}
.yf_c01124{bottom:586.952120pt;}
.ye_c01124{bottom:592.966920pt;}
.yd_c01124{bottom:618.944520pt;}
.yb_c01124{bottom:622.116920pt;}
.yc_c01124{bottom:622.433720pt;}
.ya_c01124{bottom:641.754120pt;}
.y9_c01124{bottom:650.941320pt;}
.y8_c01124{bottom:677.235720pt;}
.y7_c01124{bottom:686.744120pt;}
.y6_c01124{bottom:697.832120pt;}
.y5_c01124{bottom:708.286520pt;}
.y4_c01124{bottom:764.676920pt;}
.y3_c01124{bottom:822.968120pt;}
.y21_c01124{bottom:956.653320pt;}
.y2_c01124{bottom:960.138120pt;}
.hd_c01124{height:18.567014pt;}
.h2f_c01124{height:19.274063pt;}
.hf_c01124{height:20.926125pt;}
.hc_c01124{height:21.476813pt;}
.h2d_c01124{height:25.698750pt;}
.h18_c01124{height:26.249438pt;}
.h14_c01124{height:29.883047pt;}
.h16_c01124{height:30.382504pt;}
.h26_c01124{height:31.226460pt;}
.h19_c01124{height:32.070415pt;}
.h20_c01124{height:34.602280pt;}
.h7_c01124{height:35.446236pt;}
.h3_c01124{height:36.290191pt;}
.h1d_c01124{height:37.134029pt;}
.h6_c01124{height:37.978101pt;}
.h2e_c01124{height:38.822056pt;}
.h10_c01124{height:41.852250pt;}
.h22_c01124{height:44.910938pt;}
.h2c_c01124{height:52.511250pt;}
.h25_c01124{height:55.966110pt;}
.h21_c01124{height:57.866016pt;}
.h13_c01124{height:58.005750pt;}
.h1a_c01124{height:59.841375pt;}
.h11_c01124{height:60.111562pt;}
.h1e_c01124{height:60.942934pt;}
.h1c_c01124{height:61.666345pt;}
.hb_c01124{height:61.677000pt;}
.h27_c01124{height:61.838906pt;}
.h12_c01124{height:62.011813pt;}
.h15_c01124{height:62.875485pt;}
.h5_c01124{height:64.246875pt;}
.h4_c01124{height:64.948125pt;}
.h9_c01124{height:65.293594pt;}
.h2_c01124{height:65.466501pt;}
.h29_c01124{height:69.093750pt;}
.he_c01124{height:69.439391pt;}
.h8_c01124{height:69.784860pt;}
.h1f_c01124{height:70.475625pt;}
.h23_c01124{height:70.488184pt;}
.ha_c01124{height:71.166735pt;}
.h1b_c01124{height:75.627934pt;}
.h24_c01124{height:78.924560pt;}
.h17_c01124{height:78.931875pt;}
.h2b_c01124{height:80.033250pt;}
.h28_c01124{height:85.907250pt;}
.h2a_c01124{height:125.556934pt;}
.h1_c01124{height:986.666667pt;}
.h0_c01124{height:1122.666667pt;}
.w1_c01124{width:689.333333pt;}
.w0_c01124{width:793.333333pt;}
.x0_c01124{left:0.000000pt;}
.x1_c01124{left:52.000000pt;}
.x58_c01124{left:80.767853pt;}
.xc_c01124{left:82.994253pt;}
.x3_c01124{left:84.578253pt;}
.x56_c01124{left:129.783853pt;}
.x3a_c01124{left:130.831053pt;}
.xd_c01124{left:131.724253pt;}
.x4_c01124{left:132.692253pt;}
.x5_c01124{left:152.395453pt;}
.x5f_c01124{left:159.184653pt;}
.x1a_c01124{left:161.485853pt;}
.x20_c01124{left:162.436253pt;}
.x26_c01124{left:171.949053pt;}
.x59_c01124{left:178.571053pt;}
.x12_c01124{left:181.202253pt;}
.xe_c01124{left:190.336653pt;}
.x65_c01124{left:198.353453pt;}
.x57_c01124{left:209.340253pt;}
.x3b_c01124{left:211.060653pt;}
.x6_c01124{left:221.251053pt;}
.xf_c01124{left:228.405453pt;}
.x1b_c01124{left:231.071853pt;}
.x49_c01124{left:238.226253pt;}
.x5a_c01124{left:239.365853pt;}
.x44_c01124{left:240.263453pt;}
.x4a_c01124{left:241.394253pt;}
.x27_c01124{left:249.560653pt;}
.x7_c01124{left:250.643053pt;}
.x66_c01124{left:256.244253pt;}
.x1c_c01124{left:260.155853pt;}
.x67_c01124{left:268.973453pt;}
.x28_c01124{left:270.179053pt;}
.x60_c01124{left:274.957453pt;}
.x68_c01124{left:277.623853pt;}
.x3f_c01124{left:279.093453pt;}
.x13_c01124{left:280.013053pt;}
.x8_c01124{left:281.663053pt;}
.x10_c01124{left:290.515853pt;}
.x30_c01124{left:292.988653pt;}
.x69_c01124{left:297.410653pt;}
.x14_c01124{left:300.349853pt;}
.x4b_c01124{left:302.145053pt;}
.x61_c01124{left:305.700253pt;}
.x31_c01124{left:309.655853pt;}
.x5b_c01124{left:310.742653pt;}
.x6b_c01124{left:317.870653pt;}
.x4c_c01124{left:319.005853pt;}
.x40_c01124{left:328.514253pt;}
.x11_c01124{left:330.195053pt;}
.x15_c01124{left:337.930253pt;}
.x41_c01124{left:339.919053pt;}
.x6c_c01124{left:346.963453pt;}
.x9_c01124{left:360.273453pt;}
.x45_c01124{left:367.383853pt;}
.x16_c01124{left:368.699453pt;}
.x5c_c01124{left:376.945053pt;}
.x21_c01124{left:379.087853pt;}
.x32_c01124{left:388.543453pt;}
.x39_c01124{left:394.567053pt;}
.x3c_c01124{left:396.626253pt;}
.x1d_c01124{left:398.285053pt;}
.x4d_c01124{left:402.645453pt;}
.x29_c01124{left:408.660253pt;}
.x62_c01124{left:411.511453pt;}
.x17_c01124{left:417.491053pt;}
.x25_c01124{left:420.769053pt;}
.x6d_c01124{left:425.041453pt;}
.x1e_c01124{left:428.007053pt;}
.x2a_c01124{left:435.271453pt;}
.xa_c01124{left:438.254653pt;}
.x46_c01124{left:441.207053pt;}
.x47_c01124{left:447.155853pt;}
.x50_c01124{left:448.057853pt;}
.x33_c01124{left:454.248653pt;}
.x3d_c01124{left:456.457453pt;}
.xb_c01124{left:466.907453pt;}
.x4e_c01124{left:468.328653pt;}
.x5d_c01124{left:476.565453pt;}
.x34_c01124{left:477.520253pt;}
.x42_c01124{left:481.524253pt;}
.x54_c01124{left:485.598653pt;}
.x2b_c01124{left:487.547853pt;}
.x22_c01124{left:496.211453pt;}
.x6e_c01124{left:503.968653pt;}
.x1f_c01124{left:506.577853pt;}
.x35_c01124{left:509.085853pt;}
.x2c_c01124{left:515.391053pt;}
.x48_c01124{left:525.801453pt;}
.x36_c01124{left:534.975453pt;}
.x63_c01124{left:544.519053pt;}
.x23_c01124{left:545.535453pt;}
.x37_c01124{left:550.089453pt;}
.x51_c01124{left:564.121053pt;}
.x2d_c01124{left:566.813853pt;}
.x43_c01124{left:569.563853pt;}
.x2e_c01124{left:575.297053pt;}
.x55_c01124{left:584.405053pt;}
.x38_c01124{left:585.751453pt;}
.x5e_c01124{left:592.021453pt;}
.x6f_c01124{left:593.359053pt;}
.x52_c01124{left:594.995853pt;}
.x2f_c01124{left:605.397453pt;}
.x64_c01124{left:612.895053pt;}
.x4f_c01124{left:613.832253pt;}
.x24_c01124{left:615.029053pt;}
.x3e_c01124{left:623.763053pt;}
.x18_c01124{left:625.751853pt;}
.x19_c01124{left:627.111453pt;}
.x2_c01124{left:630.499453pt;}
.x53_c01124{left:634.032653pt;}
.x6a_c01124{left:641.728253pt;}
.x70_c01124{left:671.243453pt;}
}





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

.ir_c01125:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01125{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01125;src:url('chunks/assets/font_744757a71e535ec0411a87aa.woff2')format("woff");}.ff1_c01125{font-family:ff1_c01125;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01125;src:url('chunks/assets/font_ed5f5ed2f4f43ae9d872d274.woff2')format("woff");}.ff2_c01125{font-family:ff2_c01125;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01125;src:url('chunks/assets/font_52c1029de887a1f88c16b94b.woff2')format("woff");}.ff3_c01125{font-family:ff3_c01125;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01125;src:url('chunks/assets/font_0463a7087f8d1de4f601f329.woff2')format("woff");}.ff4_c01125{font-family:ff4_c01125;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01125;src:url('chunks/assets/font_7f15953fa8010f18c45c7ddc.woff2')format("woff");}.ff5_c01125{font-family:ff5_c01125;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01125;src:url('chunks/assets/font_c992f75a14324d363827ef5a.woff2')format("woff");}.ff6_c01125{font-family:ff6_c01125;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m58_c01125{transform:matrix(0.020271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020271,0.000000,0.000000,0.250000,0,0);}
.m87_c01125{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);}
.m57_c01125{transform:matrix(0.060812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060812,0.000000,0.000000,0.250000,0,0);}
.m88_c01125{transform:matrix(0.081521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081521,0.000000,0.000000,0.250000,0,0);}
.m20_c01125{transform:matrix(0.098291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098291,0.000000,0.000000,0.250000,0,0);}
.m86_c01125{transform:matrix(0.118207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118207,0.000000,0.000000,0.250000,0,0);}
.m5e_c01125{transform:matrix(0.130785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130785,0.000000,0.000000,0.250000,0,0);}
.m81_c01125{transform:matrix(0.142490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142490,0.000000,0.000000,0.250000,0,0);}
.ma3_c01125{transform:matrix(0.144145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144145,0.000000,0.000000,0.250000,0,0);}
.m89_c01125{transform:matrix(0.145316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145316,0.000000,0.000000,0.250000,0,0);}
.m4_c01125{transform:matrix(0.147672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147672,0.000000,0.000000,0.250000,0,0);}
.maa_c01125{transform:matrix(0.154651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154651,0.000000,0.000000,0.250000,0,0);}
.m84_c01125{transform:matrix(0.155359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155359,0.000000,0.000000,0.250000,0,0);}
.m85_c01125{transform:matrix(0.158424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158424,0.000000,0.000000,0.250000,0,0);}
.m59_c01125{transform:matrix(0.166023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166023,0.000000,0.000000,0.250000,0,0);}
.mb7_c01125{transform:matrix(0.169104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169104,0.000000,0.000000,0.250000,0,0);}
.m44_c01125{transform:matrix(0.173574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173574,0.000000,0.000000,0.250000,0,0);}
.m2e_c01125{transform:matrix(0.177083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177083,0.000000,0.000000,0.250000,0,0);}
.m1f_c01125{transform:matrix(0.213706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213706,0.000000,0.000000,0.250000,0,0);}
.m1e_c01125{transform:matrix(0.223755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223755,0.000000,0.000000,0.250000,0,0);}
.m2c_c01125{transform:matrix(0.230159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230159,0.000000,0.000000,0.250000,0,0);}
.m4c_c01125{transform:matrix(0.231399,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231399,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231399,0.000000,0.000000,0.250000,0,0);}
.m82_c01125{transform:matrix(0.235519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235519,0.000000,0.000000,0.250000,0,0);}
.m3f_c01125{transform:matrix(0.238762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238762,0.000000,0.000000,0.250000,0,0);}
.m3d_c01125{transform:matrix(0.241853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241853,0.000000,0.000000,0.250000,0,0);}
.m29_c01125{transform:matrix(0.246920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246920,0.000000,0.000000,0.250000,0,0);}
.m0_c01125{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m9b_c01125{transform:matrix(0.252964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252964,0.000000,0.000000,0.250000,0,0);}
.mc4_c01125{transform:matrix(0.253634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253634,0.000000,0.000000,0.250000,0,0);}
.m2f_c01125{transform:matrix(0.254492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254492,0.000000,0.000000,0.250000,0,0);}
.m2a_c01125{transform:matrix(0.254934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254934,0.000000,0.000000,0.250000,0,0);}
.m40_c01125{transform:matrix(0.255653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255653,0.000000,0.000000,0.250000,0,0);}
.m1b_c01125{transform:matrix(0.256114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256114,0.000000,0.000000,0.250000,0,0);}
.m64_c01125{transform:matrix(0.258583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258583,0.000000,0.000000,0.250000,0,0);}
.m1d_c01125{transform:matrix(0.259648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259648,0.000000,0.000000,0.250000,0,0);}
.m3e_c01125{transform:matrix(0.259729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259729,0.000000,0.000000,0.250000,0,0);}
.m7b_c01125{transform:matrix(0.259809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259809,0.000000,0.000000,0.250000,0,0);}
.ma7_c01125{transform:matrix(0.260739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260739,0.000000,0.000000,0.250000,0,0);}
.mf_c01125{transform:matrix(0.262455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262455,0.000000,0.000000,0.250000,0,0);}
.mb8_c01125{transform:matrix(0.262468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262468,0.000000,0.000000,0.250000,0,0);}
.mc_c01125{transform:matrix(0.264211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264211,0.000000,0.000000,0.250000,0,0);}
.m4d_c01125{transform:matrix(0.265791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265791,0.000000,0.000000,0.250000,0,0);}
.m99_c01125{transform:matrix(0.266243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266243,0.000000,0.000000,0.250000,0,0);}
.mba_c01125{transform:matrix(0.266519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266519,0.000000,0.000000,0.250000,0,0);}
.m5f_c01125{transform:matrix(0.267283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267283,0.000000,0.000000,0.250000,0,0);}
.m54_c01125{transform:matrix(0.271003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271003,0.000000,0.000000,0.250000,0,0);}
.m60_c01125{transform:matrix(0.271437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271437,0.000000,0.000000,0.250000,0,0);}
.m7_c01125{transform:matrix(0.271526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271526,0.000000,0.000000,0.250000,0,0);}
.m1c_c01125{transform:matrix(0.271527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271527,0.000000,0.000000,0.250000,0,0);}
.m65_c01125{transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);}
.m5d_c01125{transform:matrix(0.271962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271962,0.000000,0.000000,0.250000,0,0);}
.m8f_c01125{transform:matrix(0.272443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272443,0.000000,0.000000,0.250000,0,0);}
.m6_c01125{transform:matrix(0.272741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272741,0.000000,0.000000,0.250000,0,0);}
.mbd_c01125{transform:matrix(0.273387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273387,0.000000,0.000000,0.250000,0,0);}
.m6e_c01125{transform:matrix(0.273997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273997,0.000000,0.000000,0.250000,0,0);}
.m3_c01125{transform:matrix(0.274082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274082,0.000000,0.000000,0.250000,0,0);}
.mc5_c01125{transform:matrix(0.274305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274305,0.000000,0.000000,0.250000,0,0);}
.m10_c01125{transform:matrix(0.275843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275843,0.000000,0.000000,0.250000,0,0);}
.m34_c01125{transform:matrix(0.276494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276494,0.000000,0.000000,0.250000,0,0);}
.m7a_c01125{transform:matrix(0.276894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276894,0.000000,0.000000,0.250000,0,0);}
.mb_c01125{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.mcc_c01125{transform:matrix(0.277981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277981,0.000000,0.000000,0.250000,0,0);}
.m35_c01125{transform:matrix(0.278042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278042,0.000000,0.000000,0.250000,0,0);}
.m39_c01125{transform:matrix(0.278890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278890,0.000000,0.000000,0.250000,0,0);}
.m7d_c01125{transform:matrix(0.279601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279601,0.000000,0.000000,0.250000,0,0);}
.m93_c01125{transform:matrix(0.280054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280054,0.000000,0.000000,0.250000,0,0);}
.m12_c01125{transform:matrix(0.280265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280265,0.000000,0.000000,0.250000,0,0);}
.m3b_c01125{transform:matrix(0.280443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280443,0.000000,0.000000,0.250000,0,0);}
.mc2_c01125{transform:matrix(0.280601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280601,0.000000,0.000000,0.250000,0,0);}
.mab_c01125{transform:matrix(0.280661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280661,0.000000,0.000000,0.250000,0,0);}
.m51_c01125{transform:matrix(0.280682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280682,0.000000,0.000000,0.250000,0,0);}
.m9d_c01125{transform:matrix(0.281410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281410,0.000000,0.000000,0.250000,0,0);}
.m9_c01125{transform:matrix(0.281693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281693,0.000000,0.000000,0.250000,0,0);}
.m8a_c01125{transform:matrix(0.283210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283210,0.000000,0.000000,0.250000,0,0);}
.m16_c01125{transform:matrix(0.283282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283282,0.000000,0.000000,0.250000,0,0);}
.ma1_c01125{transform:matrix(0.283562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283562,0.000000,0.000000,0.250000,0,0);}
.m26_c01125{transform:matrix(0.283782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283782,0.000000,0.000000,0.250000,0,0);}
.m3a_c01125{transform:matrix(0.284071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284071,0.000000,0.000000,0.250000,0,0);}
.mc0_c01125{transform:matrix(0.284448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284448,0.000000,0.000000,0.250000,0,0);}
.m17_c01125{transform:matrix(0.285521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285521,0.000000,0.000000,0.250000,0,0);}
.m7f_c01125{transform:matrix(0.285716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285716,0.000000,0.000000,0.250000,0,0);}
.m5a_c01125{transform:matrix(0.285751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285751,0.000000,0.000000,0.250000,0,0);}
.m9e_c01125{transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);}
.m2_c01125{transform:matrix(0.285899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285899,0.000000,0.000000,0.250000,0,0);}
.m22_c01125{transform:matrix(0.286053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286053,0.000000,0.000000,0.250000,0,0);}
.m77_c01125{transform:matrix(0.286107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286107,0.000000,0.000000,0.250000,0,0);}
.m19_c01125{transform:matrix(0.286384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286384,0.000000,0.000000,0.250000,0,0);}
.m83_c01125{transform:matrix(0.286553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286553,0.000000,0.000000,0.250000,0,0);}
.m5_c01125{transform:matrix(0.287633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287633,0.000000,0.000000,0.250000,0,0);}
.ma9_c01125{transform:matrix(0.287722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287722,0.000000,0.000000,0.250000,0,0);}
.m6b_c01125{transform:matrix(0.288034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288034,0.000000,0.000000,0.250000,0,0);}
.ma2_c01125{transform:matrix(0.288675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288675,0.000000,0.000000,0.250000,0,0);}
.m75_c01125{transform:matrix(0.288714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288714,0.000000,0.000000,0.250000,0,0);}
.m8b_c01125{transform:matrix(0.288987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288987,0.000000,0.000000,0.250000,0,0);}
.m61_c01125{transform:matrix(0.289131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289131,0.000000,0.000000,0.250000,0,0);}
.mce_c01125{transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);}
.m21_c01125{transform:matrix(0.291151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291151,0.000000,0.000000,0.250000,0,0);}
.ma4_c01125{transform:matrix(0.291652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291652,0.000000,0.000000,0.250000,0,0);}
.m1_c01125{transform:matrix(0.291694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291694,0.000000,0.000000,0.250000,0,0);}
.m31_c01125{transform:matrix(0.292290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292290,0.000000,0.000000,0.250000,0,0);}
.m32_c01125{transform:matrix(0.292503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292503,0.000000,0.000000,0.250000,0,0);}
.mca_c01125{transform:matrix(0.292929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292929,0.000000,0.000000,0.250000,0,0);}
.mc8_c01125{transform:matrix(0.292991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292991,0.000000,0.000000,0.250000,0,0);}
.md1_c01125{transform:matrix(0.294580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294580,0.000000,0.000000,0.250000,0,0);}
.m63_c01125{transform:matrix(0.295026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295026,0.000000,0.000000,0.250000,0,0);}
.ma_c01125{transform:matrix(0.295195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295195,0.000000,0.000000,0.250000,0,0);}
.mb1_c01125{transform:matrix(0.296354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296354,0.000000,0.000000,0.250000,0,0);}
.m23_c01125{transform:matrix(0.296646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296646,0.000000,0.000000,0.250000,0,0);}
.mcb_c01125{transform:matrix(0.297050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297050,0.000000,0.000000,0.250000,0,0);}
.ma0_c01125{transform:matrix(0.297061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297061,0.000000,0.000000,0.250000,0,0);}
.md0_c01125{transform:matrix(0.297517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297517,0.000000,0.000000,0.250000,0,0);}
.m8d_c01125{transform:matrix(0.298224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298224,0.000000,0.000000,0.250000,0,0);}
.m6d_c01125{transform:matrix(0.299023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299023,0.000000,0.000000,0.250000,0,0);}
.mb3_c01125{transform:matrix(0.299472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299472,0.000000,0.000000,0.250000,0,0);}
.m6a_c01125{transform:matrix(0.299969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299969,0.000000,0.000000,0.250000,0,0);}
.m30_c01125{transform:matrix(0.301108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301108,0.000000,0.000000,0.250000,0,0);}
.m70_c01125{transform:matrix(0.301622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301622,0.000000,0.000000,0.250000,0,0);}
.mb6_c01125{transform:matrix(0.302271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302271,0.000000,0.000000,0.250000,0,0);}
.maf_c01125{transform:matrix(0.302559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302559,0.000000,0.000000,0.250000,0,0);}
.ma8_c01125{transform:matrix(0.302735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302735,0.000000,0.000000,0.250000,0,0);}
.md2_c01125{transform:matrix(0.302849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302849,0.000000,0.000000,0.250000,0,0);}
.m3c_c01125{transform:matrix(0.303063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303063,0.000000,0.000000,0.250000,0,0);}
.ma5_c01125{transform:matrix(0.303306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303306,0.000000,0.000000,0.250000,0,0);}
.m5c_c01125{transform:matrix(0.304695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304695,0.000000,0.000000,0.250000,0,0);}
.me_c01125{transform:matrix(0.305259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305259,0.000000,0.000000,0.250000,0,0);}
.mc1_c01125{transform:matrix(0.305465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305465,0.000000,0.000000,0.250000,0,0);}
.m14_c01125{transform:matrix(0.305593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305593,0.000000,0.000000,0.250000,0,0);}
.m13_c01125{transform:matrix(0.305646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305646,0.000000,0.000000,0.250000,0,0);}
.m2d_c01125{transform:matrix(0.307761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307761,0.000000,0.000000,0.250000,0,0);}
.m9c_c01125{transform:matrix(0.308113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308113,0.000000,0.000000,0.250000,0,0);}
.m76_c01125{transform:matrix(0.308299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308299,0.000000,0.000000,0.250000,0,0);}
.m53_c01125{transform:matrix(0.308896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308896,0.000000,0.000000,0.250000,0,0);}
.m55_c01125{transform:matrix(0.310731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310731,0.000000,0.000000,0.250000,0,0);}
.m94_c01125{transform:matrix(0.311250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311250,0.000000,0.000000,0.250000,0,0);}
.m98_c01125{transform:matrix(0.311374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311374,0.000000,0.000000,0.250000,0,0);}
.m25_c01125{transform:matrix(0.312207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312207,0.000000,0.000000,0.250000,0,0);}
.mc6_c01125{transform:matrix(0.313044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313044,0.000000,0.000000,0.250000,0,0);}
.m15_c01125{transform:matrix(0.313493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313493,0.000000,0.000000,0.250000,0,0);}
.mcf_c01125{transform:matrix(0.313810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313810,0.000000,0.000000,0.250000,0,0);}
.m91_c01125{transform:matrix(0.313945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313945,0.000000,0.000000,0.250000,0,0);}
.m95_c01125{transform:matrix(0.314231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314231,0.000000,0.000000,0.250000,0,0);}
.m18_c01125{transform:matrix(0.314282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314282,0.000000,0.000000,0.250000,0,0);}
.m67_c01125{transform:matrix(0.314672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314672,0.000000,0.000000,0.250000,0,0);}
.ma6_c01125{transform:matrix(0.315146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315146,0.000000,0.000000,0.250000,0,0);}
.mc9_c01125{transform:matrix(0.315681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315681,0.000000,0.000000,0.250000,0,0);}
.m33_c01125{transform:matrix(0.316450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316450,0.000000,0.000000,0.250000,0,0);}
.m1a_c01125{transform:matrix(0.316958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316958,0.000000,0.000000,0.250000,0,0);}
.m96_c01125{transform:matrix(0.316991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316991,0.000000,0.000000,0.250000,0,0);}
.m50_c01125{transform:matrix(0.317491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317491,0.000000,0.000000,0.250000,0,0);}
.m5b_c01125{transform:matrix(0.317888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317888,0.000000,0.000000,0.250000,0,0);}
.m49_c01125{transform:matrix(0.318609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318609,0.000000,0.000000,0.250000,0,0);}
.m8_c01125{transform:matrix(0.318837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318837,0.000000,0.000000,0.250000,0,0);}
.m80_c01125{transform:matrix(0.318927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318927,0.000000,0.000000,0.250000,0,0);}
.m62_c01125{transform:matrix(0.319817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319817,0.000000,0.000000,0.250000,0,0);}
.mcd_c01125{transform:matrix(0.320473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320473,0.000000,0.000000,0.250000,0,0);}
.m37_c01125{transform:matrix(0.321427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321427,0.000000,0.000000,0.250000,0,0);}
.m4f_c01125{transform:matrix(0.322922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322922,0.000000,0.000000,0.250000,0,0);}
.m24_c01125{transform:matrix(0.324252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324252,0.000000,0.000000,0.250000,0,0);}
.m92_c01125{transform:matrix(0.325745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325745,0.000000,0.000000,0.250000,0,0);}
.mc7_c01125{transform:matrix(0.325764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325764,0.000000,0.000000,0.250000,0,0);}
.mbb_c01125{transform:matrix(0.326224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326224,0.000000,0.000000,0.250000,0,0);}
.mac_c01125{transform:matrix(0.326487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326487,0.000000,0.000000,0.250000,0,0);}
.mc3_c01125{transform:matrix(0.326544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326544,0.000000,0.000000,0.250000,0,0);}
.m56_c01125{transform:matrix(0.326594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326594,0.000000,0.000000,0.250000,0,0);}
.m7c_c01125{transform:matrix(0.326814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326814,0.000000,0.000000,0.250000,0,0);}
.mae_c01125{transform:matrix(0.327491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327491,0.000000,0.000000,0.250000,0,0);}
.m90_c01125{transform:matrix(0.327989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327989,0.000000,0.000000,0.250000,0,0);}
.m27_c01125{transform:matrix(0.328497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328497,0.000000,0.000000,0.250000,0,0);}
.mbe_c01125{transform:matrix(0.328784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328784,0.000000,0.000000,0.250000,0,0);}
.m38_c01125{transform:matrix(0.329076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329076,0.000000,0.000000,0.250000,0,0);}
.m72_c01125{transform:matrix(0.329974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329974,0.000000,0.000000,0.250000,0,0);}
.m78_c01125{transform:matrix(0.330050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330050,0.000000,0.000000,0.250000,0,0);}
.m7e_c01125{transform:matrix(0.330811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330811,0.000000,0.000000,0.250000,0,0);}
.m68_c01125{transform:matrix(0.331738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331738,0.000000,0.000000,0.250000,0,0);}
.m4e_c01125{transform:matrix(0.332065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332065,0.000000,0.000000,0.250000,0,0);}
.m71_c01125{transform:matrix(0.333103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333103,0.000000,0.000000,0.250000,0,0);}
.m79_c01125{transform:matrix(0.334048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334048,0.000000,0.000000,0.250000,0,0);}
.mad_c01125{transform:matrix(0.334372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334372,0.000000,0.000000,0.250000,0,0);}
.m73_c01125{transform:matrix(0.335289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335289,0.000000,0.000000,0.250000,0,0);}
.m9a_c01125{transform:matrix(0.338769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338769,0.000000,0.000000,0.250000,0,0);}
.mb5_c01125{transform:matrix(0.339515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339515,0.000000,0.000000,0.250000,0,0);}
.mb0_c01125{transform:matrix(0.348332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348332,0.000000,0.000000,0.250000,0,0);}
.m66_c01125{transform:matrix(0.349475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349475,0.000000,0.000000,0.250000,0,0);}
.m9f_c01125{transform:matrix(0.351669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351669,0.000000,0.000000,0.250000,0,0);}
.mb4_c01125{transform:matrix(0.353227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353227,0.000000,0.000000,0.250000,0,0);}
.m97_c01125{transform:matrix(0.355438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355438,0.000000,0.000000,0.250000,0,0);}
.mb9_c01125{transform:matrix(0.357441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357441,0.000000,0.000000,0.250000,0,0);}
.m6c_c01125{transform:matrix(0.357676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357676,0.000000,0.000000,0.250000,0,0);}
.m74_c01125{transform:matrix(0.359013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359013,0.000000,0.000000,0.250000,0,0);}
.m2b_c01125{transform:matrix(0.361523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361523,0.000000,0.000000,0.250000,0,0);}
.mbf_c01125{transform:matrix(0.361786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361786,0.000000,0.000000,0.250000,0,0);}
.m6f_c01125{transform:matrix(0.363350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363350,0.000000,0.000000,0.250000,0,0);}
.md_c01125{transform:matrix(0.375943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375943,0.000000,0.000000,0.250000,0,0);}
.m11_c01125{transform:matrix(0.376040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376040,0.000000,0.000000,0.250000,0,0);}
.m69_c01125{transform:matrix(0.383861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383861,0.000000,0.000000,0.250000,0,0);}
.mb2_c01125{transform:matrix(0.384599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384599,0.000000,0.000000,0.250000,0,0);}
.mbc_c01125{transform:matrix(0.384864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384864,0.000000,0.000000,0.250000,0,0);}
.m8c_c01125{transform:matrix(0.389777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389777,0.000000,0.000000,0.250000,0,0);}
.m52_c01125{transform:matrix(0.403791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403791,0.000000,0.000000,0.250000,0,0);}
.m8e_c01125{transform:matrix(0.407021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407021,0.000000,0.000000,0.250000,0,0);}
.m36_c01125{transform:matrix(0.410101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410101,0.000000,0.000000,0.250000,0,0);}
.m28_c01125{transform:matrix(0.430903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430903,0.000000,0.000000,0.250000,0,0);}
.m4b_c01125{transform:matrix(0.450061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450061,0.000000,0.000000,0.250000,0,0);}
.m48_c01125{transform:matrix(0.510596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510596,0.000000,0.000000,0.250000,0,0);}
.m42_c01125{transform:matrix(0.556042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556042,0.000000,0.000000,0.250000,0,0);}
.m41_c01125{transform:matrix(0.703528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.703528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.703528,0.000000,0.000000,0.250000,0,0);}
.m43_c01125{transform:matrix(0.777800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777800,0.000000,0.000000,0.250000,0,0);}
.m46_c01125{transform:matrix(0.817450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.817450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.817450,0.000000,0.000000,0.250000,0,0);}
.m45_c01125{transform:matrix(1.089992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.089992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.089992,0.000000,0.000000,0.250000,0,0);}
.m4a_c01125{transform:matrix(1.326506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.326506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.326506,0.000000,0.000000,0.250000,0,0);}
.m47_c01125{transform:matrix(2.229392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.229392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.229392,0.000000,0.000000,0.250000,0,0);}
.v0_c01125{vertical-align:0.000000px;}
.ls25_c01125{letter-spacing:-4.906447px;}
.ls10_c01125{letter-spacing:-2.993767px;}
.ls23_c01125{letter-spacing:-2.855167px;}
.ls7_c01125{letter-spacing:-2.799727px;}
.lsc_c01125{letter-spacing:-2.661127px;}
.ls27_c01125{letter-spacing:-2.626477px;}
.ls16_c01125{letter-spacing:-2.619540px;}
.lsb_c01125{letter-spacing:-2.598750px;}
.ls33_c01125{letter-spacing:-1.938460px;}
.ls29_c01125{letter-spacing:-1.503817px;}
.ls19_c01125{letter-spacing:-1.476090px;}
.ls5_c01125{letter-spacing:-1.232355px;}
.ls14_c01125{letter-spacing:-1.188000px;}
.ls17_c01125{letter-spacing:-0.383783px;}
.ls15_c01125{letter-spacing:-0.277755px;}
.ls3_c01125{letter-spacing:0.000000px;}
.ls1c_c01125{letter-spacing:0.287110px;}
.ls1a_c01125{letter-spacing:0.297000px;}
.ls18_c01125{letter-spacing:0.891000px;}
.ls1b_c01125{letter-spacing:0.950400px;}
.ls2c_c01125{letter-spacing:1.758834px;}
.ls1d_c01125{letter-spacing:1.930500px;}
.ls0_c01125{letter-spacing:2.103116px;}
.ls2e_c01125{letter-spacing:2.665872px;}
.ls6_c01125{letter-spacing:2.692810px;}
.ls32_c01125{letter-spacing:2.712600px;}
.ls31_c01125{letter-spacing:2.903947px;}
.ls21_c01125{letter-spacing:3.227400px;}
.ls2d_c01125{letter-spacing:3.316500px;}
.ls24_c01125{letter-spacing:3.425400px;}
.ls2f_c01125{letter-spacing:3.474900px;}
.lse_c01125{letter-spacing:3.484810px;}
.ls12_c01125{letter-spacing:3.583810px;}
.ls20_c01125{letter-spacing:3.682810px;}
.lsa_c01125{letter-spacing:3.712500px;}
.ls2a_c01125{letter-spacing:3.722400px;}
.ls4_c01125{letter-spacing:3.742200px;}
.ls26_c01125{letter-spacing:3.752110px;}
.ls1f_c01125{letter-spacing:3.801610px;}
.ls2b_c01125{letter-spacing:3.880810px;}
.ls8_c01125{letter-spacing:4.019400px;}
.ls13_c01125{letter-spacing:4.029310px;}
.lsf_c01125{letter-spacing:4.049110px;}
.ls22_c01125{letter-spacing:4.078810px;}
.ls9_c01125{letter-spacing:4.088700px;}
.ls2_c01125{letter-spacing:15.193332px;}
.ls1e_c01125{letter-spacing:52.747398px;}
.lsd_c01125{letter-spacing:55.598598px;}
.ls1_c01125{letter-spacing:55.860948px;}
.ls11_c01125{letter-spacing:59.875398px;}
.ls30_c01125{letter-spacing:61.300998px;}
.ls28_c01125{letter-spacing:65.577798px;}
.sc__c01125{text-shadow:none;}
.sc0_c01125{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01125{-webkit-text-stroke:0px transparent;}
.sc0_c01125{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01125{word-spacing:-19.404050px;}
.ws0_c01125{word-spacing:-3.903883px;}
.ws2_c01125{word-spacing:0.000000px;}
._1_c01125{margin-left:-6.585876px;}
._7_c01125{margin-left:-3.248190px;}
._4_c01125{width:3.542616px;}
._6_c01125{width:4.734488px;}
._0_c01125{width:36.164146px;}
._8_c01125{width:47.384370px;}
._5_c01125{width:65.741940px;}
._3_c01125{width:144.677907px;}
._2_c01125{width:293.109300px;}
.fc0_c01125{color:transparent;}
.fs17_c01125{font-size:5.742198px;}
.fs15_c01125{font-size:5.940000px;}
.fs14_c01125{font-size:17.820000px;}
.fs16_c01125{font-size:19.008000px;}
.fs10_c01125{font-size:27.720000px;}
.fs2b_c01125{font-size:38.214000px;}
.fs18_c01125{font-size:38.610000px;}
.fsf_c01125{font-size:39.600000px;}
.fs13_c01125{font-size:42.174000px;}
.fs22_c01125{font-size:42.966198px;}
.fs0_c01125{font-size:45.144000px;}
.fs1d_c01125{font-size:50.292000px;}
.fs19_c01125{font-size:52.747398px;}
.fs3_c01125{font-size:53.856198px;}
.fs29_c01125{font-size:54.252000px;}
.fs9_c01125{font-size:55.598598px;}
.fsd_c01125{font-size:59.875398px;}
.fs28_c01125{font-size:61.300998px;}
.fs1b_c01125{font-size:64.548000px;}
.fs21_c01125{font-size:65.577798px;}
.fs12_c01125{font-size:66.132198px;}
.fs25_c01125{font-size:66.330000px;}
.fs2a_c01125{font-size:67.122198px;}
.fs1e_c01125{font-size:68.508000px;}
.fs27_c01125{font-size:69.498000px;}
.fsa_c01125{font-size:69.696198px;}
.fs26_c01125{font-size:71.280000px;}
.fse_c01125{font-size:71.676198px;}
.fs1a_c01125{font-size:73.656198px;}
.fs7_c01125{font-size:74.250000px;}
.fs23_c01125{font-size:74.448000px;}
.fs1_c01125{font-size:74.844000px;}
.fs20_c01125{font-size:75.042198px;}
.fs8_c01125{font-size:76.032198px;}
.fs2_c01125{font-size:77.022198px;}
.fs24_c01125{font-size:77.616198px;}
.fs4_c01125{font-size:79.992198px;}
.fs5_c01125{font-size:80.388000px;}
.fs11_c01125{font-size:80.586198px;}
.fsb_c01125{font-size:80.982198px;}
.fs1c_c01125{font-size:81.576198px;}
.fs6_c01125{font-size:81.774000px;}
.fsc_c01125{font-size:85.536198px;}
.fs1f_c01125{font-size:140.184198px;}
.y0_c01125{bottom:0.000000px;}
.y1_c01125{bottom:76.500000px;}
.y1e_c01125{bottom:120.731535px;}
.y2_c01125{bottom:123.577785px;}
.y1d_c01125{bottom:153.163935px;}
.y1c_c01125{bottom:184.883535px;}
.y1b_c01125{bottom:218.385135px;}
.y1a_c01125{bottom:250.817535px;}
.y19_c01125{bottom:282.893535px;}
.y18_c01125{bottom:315.682335px;}
.y17_c01125{bottom:347.401935px;}
.y16_c01125{bottom:379.829385px;}
.y15_c01125{bottom:411.553935px;}
.y14_c01125{bottom:444.699135px;}
.y13_c01125{bottom:475.700985px;}
.y12_c01125{bottom:508.133385px;}
.y11_c01125{bottom:539.145135px;}
.yf_c01125{bottom:602.940735px;}
.y10_c01125{bottom:608.286735px;}
.ye_c01125{bottom:635.724585px;}
.yd_c01125{bottom:663.885135px;}
.yc_c01125{bottom:668.161935px;}
.yb_c01125{bottom:700.232985px;}
.ya_c01125{bottom:721.621935px;}
.y9_c01125{bottom:735.516585px;}
.y8_c01125{bottom:764.028585px;}
.y7_c01125{bottom:796.104585px;}
.y6_c01125{bottom:828.541935px;}
.y5_c01125{bottom:860.612985px;}
.y4_c01125{bottom:924.408585px;}
.y3_c01125{bottom:1072.314585px;}
.h18_c01125{height:5.829785px;}
.h1a_c01125{height:5.988933px;}
.h16_c01125{height:18.585703px;}
.h19_c01125{height:19.156500px;}
.h12_c01125{height:28.911094px;}
.h1c_c01125{height:35.129767px;}
.hb_c01125{height:37.028666px;}
.hf_c01125{height:39.877015px;}
.h1b_c01125{height:40.269023px;}
.h2c_c01125{height:40.826465px;}
.h11_c01125{height:41.301563px;}
.h17_c01125{height:41.391475px;}
.h25_c01125{height:42.168974px;}
.h15_c01125{height:42.503484px;}
.h24_c01125{height:43.674813px;}
.h2_c01125{height:47.083781px;}
.h20_c01125{height:49.334291px;}
.h5_c01125{height:52.856913px;}
.h2d_c01125{height:53.245371px;}
.h14_c01125{height:64.905136px;}
.h21_c01125{height:67.236855px;}
.h1e_c01125{height:67.321547px;}
.h2b_c01125{height:68.208486px;}
.hc_c01125{height:68.403007px;}
.h28_c01125{height:68.973816px;}
.h29_c01125{height:69.180117px;}
.h2e_c01125{height:70.006355px;}
.h10_c01125{height:70.346269px;}
.h1d_c01125{height:72.289530px;}
.h9_c01125{height:72.872314px;}
.h26_c01125{height:73.066641px;}
.h3_c01125{height:73.455293px;}
.h23_c01125{height:73.613172px;}
.h2a_c01125{height:74.342813px;}
.ha_c01125{height:74.621444px;}
.h27_c01125{height:76.176054px;}
.h6_c01125{height:78.507968px;}
.h7_c01125{height:78.896426px;}
.h13_c01125{height:79.090946px;}
.hd_c01125{height:79.479599px;}
.h1f_c01125{height:80.022745px;}
.h8_c01125{height:80.256709px;}
.h4_c01125{height:80.331746px;}
.he_c01125{height:83.949101px;}
.h22_c01125{height:137.583124px;}
.h1_c01125{height:1110.000000px;}
.h0_c01125{height:1263.000000px;}
.w1_c01125{width:775.500000px;}
.w0_c01125{width:892.500000px;}
.x0_c01125{left:0.000000px;}
.x2_c01125{left:36.418785px;}
.x1_c01125{left:58.500000px;}
.x2e_c01125{left:93.002235px;}
.x4_c01125{left:94.942635px;}
.x4b_c01125{left:148.036335px;}
.xd_c01125{left:149.531235px;}
.x50_c01125{left:151.540935px;}
.x84_c01125{left:159.757935px;}
.x66_c01125{left:181.513185px;}
.x5c_c01125{left:182.958585px;}
.x5_c01125{left:184.527735px;}
.x1a_c01125{left:193.259535px;}
.x85_c01125{left:202.392285px;}
.x71_c01125{left:204.342585px;}
.x34_c01125{left:205.401885px;}
.x79_c01125{left:215.049435px;}
.x25_c01125{left:216.346335px;}
.x67_c01125{left:225.187035px;}
.xe_c01125{left:226.652235px;}
.x6_c01125{left:228.231285px;}
.x7e_c01125{left:235.562235px;}
.x35_c01125{left:237.839235px;}
.x14_c01125{left:239.091585px;}
.x2d_c01125{left:247.575885px;}
.x51_c01125{left:249.268785px;}
.x7_c01125{left:250.481535px;}
.x86_c01125{left:258.109485px;}
.x4c_c01125{left:260.010285px;}
.x2f_c01125{left:261.351735px;}
.x8_c01125{left:262.762485px;}
.x1b_c01125{left:269.831085px;}
.x68_c01125{left:270.994335px;}
.xf_c01125{left:272.390235px;}
.x9_c01125{left:274.449435px;}
.x8a_c01125{left:279.755835px;}
.x5d_c01125{left:281.854635px;}
.x52_c01125{left:283.433685px;}
.x15_c01125{left:293.299035px;}
.xa_c01125{left:294.754335px;}
.x6b_c01125{left:302.986185px;}
.x1c_c01125{left:305.579985px;}
.x82_c01125{left:314.772135px;}
.x6c_c01125{left:317.420385px;}
.x75_c01125{left:326.627385px;}
.x87_c01125{left:335.671035px;}
.x72_c01125{left:336.873885px;}
.x16_c01125{left:338.947935px;}
.xb_c01125{left:340.220085px;}
.x7f_c01125{left:348.347985px;}
.x1d_c01125{left:349.501335px;}
.x61_c01125{left:360.104235px;}
.x6d_c01125{left:368.504385px;}
.x30_c01125{left:370.514085px;}
.x26_c01125{left:372.489135px;}
.x53_c01125{left:373.969185px;}
.x4d_c01125{left:381.433785px;}
.x5e_c01125{left:383.235585px;}
.x54_c01125{left:385.017585px;}
.x62_c01125{left:393.546435px;}
.x55_c01125{left:403.431585px;}
.x27_c01125{left:404.763135px;}
.x1e_c01125{left:405.837285px;}
.x56_c01125{left:413.415735px;}
.x36_c01125{left:415.643235px;}
.x57_c01125{left:417.336135px;}
.xc_c01125{left:418.979535px;}
.x69_c01125{left:426.033285px;}
.x10_c01125{left:428.146935px;}
.x5f_c01125{left:429.651735px;}
.x76_c01125{left:435.725385px;}
.x1f_c01125{left:438.180585px;}
.x28_c01125{left:439.531935px;}
.x3a_c01125{left:442.838535px;}
.x6e_c01125{left:447.229185px;}
.x80_c01125{left:448.852785px;}
.x3b_c01125{left:450.357585px;}
.x3c_c01125{left:454.376985px;}
.x8b_c01125{left:459.153735px;}
.x11_c01125{left:460.544685px;}
.x73_c01125{left:469.984335px;}
.x63_c01125{left:471.301035px;}
.x20_c01125{left:472.573185px;}
.x7c_c01125{left:481.280235px;}
.x3d_c01125{left:490.690185px;}
.x12_c01125{left:493.481985px;}
.x7a_c01125{left:503.367135px;}
.x29_c01125{left:504.391785px;}
.x3e_c01125{left:512.351385px;}
.x74_c01125{left:514.029435px;}
.x17_c01125{left:516.004485px;}
.x4e_c01125{left:525.820335px;}
.x21_c01125{left:527.260785px;}
.x3f_c01125{left:532.225635px;}
.x31_c01125{left:536.319285px;}
.x2a_c01125{left:537.442935px;}
.x22_c01125{left:538.853685px;}
.x8c_c01125{left:548.164635px;}
.x37_c01125{left:549.194235px;}
.x40_c01125{left:553.822485px;}
.x58_c01125{left:559.480335px;}
.x77_c01125{left:568.746735px;}
.x88_c01125{left:569.905035px;}
.x59_c01125{left:572.474085px;}
.x41_c01125{left:580.181235px;}
.x65_c01125{left:582.784935px;}
.x42_c01125{left:584.027385px;}
.x5a_c01125{left:591.858285px;}
.x18_c01125{left:593.184885px;}
.x43_c01125{left:599.436735px;}
.x44_c01125{left:601.669185px;}
.x60_c01125{left:603.812535px;}
.x81_c01125{left:613.455135px;}
.x13_c01125{left:614.905485px;}
.x45_c01125{left:623.577885px;}
.x19_c01125{left:625.929135px;}
.x23_c01125{left:627.018135px;}
.x7b_c01125{left:635.764785px;}
.x46_c01125{left:636.794385px;}
.x2b_c01125{left:637.947735px;}
.x38_c01125{left:642.714585px;}
.x32_c01125{left:647.293335px;}
.x39_c01125{left:649.006035px;}
.x47_c01125{left:652.589835px;}
.x24_c01125{left:658.554585px;}
.x48_c01125{left:661.806735px;}
.x7d_c01125{left:666.890385px;}
.x6f_c01125{left:669.805935px;}
.x83_c01125{left:678.522885px;}
.x4f_c01125{left:680.443485px;}
.x33_c01125{left:681.537435px;}
.x49_c01125{left:688.749585px;}
.x78_c01125{left:689.972235px;}
.x70_c01125{left:691.788885px;}
.x2c_c01125{left:695.437035px;}
.x89_c01125{left:700.283085px;}
.x64_c01125{left:702.837285px;}
.x3_c01125{left:712.880835px;}
.x6a_c01125{left:714.692535px;}
.x4a_c01125{left:716.959635px;}
.x8d_c01125{left:724.582635px;}
.x5b_c01125{left:736.918035px;}
@media print{
.v0_c01125{vertical-align:0.000000pt;}
.ls25_c01125{letter-spacing:-4.361286pt;}
.ls10_c01125{letter-spacing:-2.661126pt;}
.ls23_c01125{letter-spacing:-2.537926pt;}
.ls7_c01125{letter-spacing:-2.488646pt;}
.lsc_c01125{letter-spacing:-2.365446pt;}
.ls27_c01125{letter-spacing:-2.334646pt;}
.ls16_c01125{letter-spacing:-2.328480pt;}
.lsb_c01125{letter-spacing:-2.310000pt;}
.ls33_c01125{letter-spacing:-1.723075pt;}
.ls29_c01125{letter-spacing:-1.336726pt;}
.ls19_c01125{letter-spacing:-1.312080pt;}
.ls5_c01125{letter-spacing:-1.095427pt;}
.ls14_c01125{letter-spacing:-1.056000pt;}
.ls17_c01125{letter-spacing:-0.341141pt;}
.ls15_c01125{letter-spacing:-0.246894pt;}
.ls3_c01125{letter-spacing:0.000000pt;}
.ls1c_c01125{letter-spacing:0.255209pt;}
.ls1a_c01125{letter-spacing:0.264000pt;}
.ls18_c01125{letter-spacing:0.792000pt;}
.ls1b_c01125{letter-spacing:0.844800pt;}
.ls2c_c01125{letter-spacing:1.563408pt;}
.ls1d_c01125{letter-spacing:1.716000pt;}
.ls0_c01125{letter-spacing:1.869437pt;}
.ls2e_c01125{letter-spacing:2.369664pt;}
.ls6_c01125{letter-spacing:2.393609pt;}
.ls32_c01125{letter-spacing:2.411200pt;}
.ls31_c01125{letter-spacing:2.581286pt;}
.ls21_c01125{letter-spacing:2.868800pt;}
.ls2d_c01125{letter-spacing:2.948000pt;}
.ls24_c01125{letter-spacing:3.044800pt;}
.ls2f_c01125{letter-spacing:3.088800pt;}
.lse_c01125{letter-spacing:3.097609pt;}
.ls12_c01125{letter-spacing:3.185609pt;}
.ls20_c01125{letter-spacing:3.273609pt;}
.lsa_c01125{letter-spacing:3.300000pt;}
.ls2a_c01125{letter-spacing:3.308800pt;}
.ls4_c01125{letter-spacing:3.326400pt;}
.ls26_c01125{letter-spacing:3.335209pt;}
.ls1f_c01125{letter-spacing:3.379209pt;}
.ls2b_c01125{letter-spacing:3.449609pt;}
.ls8_c01125{letter-spacing:3.572800pt;}
.ls13_c01125{letter-spacing:3.581609pt;}
.lsf_c01125{letter-spacing:3.599209pt;}
.ls22_c01125{letter-spacing:3.625609pt;}
.ls9_c01125{letter-spacing:3.634400pt;}
.ls2_c01125{letter-spacing:13.505184pt;}
.ls1e_c01125{letter-spacing:46.886576pt;}
.lsd_c01125{letter-spacing:49.420976pt;}
.ls1_c01125{letter-spacing:49.654176pt;}
.ls11_c01125{letter-spacing:53.222576pt;}
.ls30_c01125{letter-spacing:54.489776pt;}
.ls28_c01125{letter-spacing:58.291376pt;}
.ws1_c01125{word-spacing:-17.248044pt;}
.ws0_c01125{word-spacing:-3.470119pt;}
.ws2_c01125{word-spacing:0.000000pt;}
._1_c01125{margin-left:-5.854112pt;}
._7_c01125{margin-left:-2.887280pt;}
._4_c01125{width:3.148992pt;}
._6_c01125{width:4.208434pt;}
._0_c01125{width:32.145907pt;}
._8_c01125{width:42.119440pt;}
._5_c01125{width:58.437280pt;}
._3_c01125{width:128.602584pt;}
._2_c01125{width:260.541600pt;}
.fs17_c01125{font-size:5.104176pt;}
.fs15_c01125{font-size:5.280000pt;}
.fs14_c01125{font-size:15.840000pt;}
.fs16_c01125{font-size:16.896000pt;}
.fs10_c01125{font-size:24.640000pt;}
.fs2b_c01125{font-size:33.968000pt;}
.fs18_c01125{font-size:34.320000pt;}
.fsf_c01125{font-size:35.200000pt;}
.fs13_c01125{font-size:37.488000pt;}
.fs22_c01125{font-size:38.192176pt;}
.fs0_c01125{font-size:40.128000pt;}
.fs1d_c01125{font-size:44.704000pt;}
.fs19_c01125{font-size:46.886576pt;}
.fs3_c01125{font-size:47.872176pt;}
.fs29_c01125{font-size:48.224000pt;}
.fs9_c01125{font-size:49.420976pt;}
.fsd_c01125{font-size:53.222576pt;}
.fs28_c01125{font-size:54.489776pt;}
.fs1b_c01125{font-size:57.376000pt;}
.fs21_c01125{font-size:58.291376pt;}
.fs12_c01125{font-size:58.784176pt;}
.fs25_c01125{font-size:58.960000pt;}
.fs2a_c01125{font-size:59.664176pt;}
.fs1e_c01125{font-size:60.896000pt;}
.fs27_c01125{font-size:61.776000pt;}
.fsa_c01125{font-size:61.952176pt;}
.fs26_c01125{font-size:63.360000pt;}
.fse_c01125{font-size:63.712176pt;}
.fs1a_c01125{font-size:65.472176pt;}
.fs7_c01125{font-size:66.000000pt;}
.fs23_c01125{font-size:66.176000pt;}
.fs1_c01125{font-size:66.528000pt;}
.fs20_c01125{font-size:66.704176pt;}
.fs8_c01125{font-size:67.584176pt;}
.fs2_c01125{font-size:68.464176pt;}
.fs24_c01125{font-size:68.992176pt;}
.fs4_c01125{font-size:71.104176pt;}
.fs5_c01125{font-size:71.456000pt;}
.fs11_c01125{font-size:71.632176pt;}
.fsb_c01125{font-size:71.984176pt;}
.fs1c_c01125{font-size:72.512176pt;}
.fs6_c01125{font-size:72.688000pt;}
.fsc_c01125{font-size:76.032176pt;}
.fs1f_c01125{font-size:124.608176pt;}
.y0_c01125{bottom:0.000000pt;}
.y1_c01125{bottom:68.000000pt;}
.y1e_c01125{bottom:107.316920pt;}
.y2_c01125{bottom:109.846920pt;}
.y1d_c01125{bottom:136.145720pt;}
.y1c_c01125{bottom:164.340920pt;}
.y1b_c01125{bottom:194.120120pt;}
.y1a_c01125{bottom:222.948920pt;}
.y19_c01125{bottom:251.460920pt;}
.y18_c01125{bottom:280.606520pt;}
.y17_c01125{bottom:308.801720pt;}
.y16_c01125{bottom:337.626120pt;}
.y15_c01125{bottom:365.825720pt;}
.y14_c01125{bottom:395.288120pt;}
.y13_c01125{bottom:422.845320pt;}
.y12_c01125{bottom:451.674120pt;}
.y11_c01125{bottom:479.240120pt;}
.yf_c01125{bottom:535.947320pt;}
.y10_c01125{bottom:540.699320pt;}
.ye_c01125{bottom:565.088520pt;}
.yd_c01125{bottom:590.120120pt;}
.yc_c01125{bottom:593.921720pt;}
.yb_c01125{bottom:622.429320pt;}
.ya_c01125{bottom:641.441720pt;}
.y9_c01125{bottom:653.792520pt;}
.y8_c01125{bottom:679.136520pt;}
.y7_c01125{bottom:707.648520pt;}
.y6_c01125{bottom:736.481720pt;}
.y5_c01125{bottom:764.989320pt;}
.y4_c01125{bottom:821.696520pt;}
.y3_c01125{bottom:953.168520pt;}
.h18_c01125{height:5.182031pt;}
.h1a_c01125{height:5.323496pt;}
.h16_c01125{height:16.520625pt;}
.h19_c01125{height:17.028000pt;}
.h12_c01125{height:25.698750pt;}
.h1c_c01125{height:31.226460pt;}
.hb_c01125{height:32.914370pt;}
.hf_c01125{height:35.446236pt;}
.h1b_c01125{height:35.794688pt;}
.h2c_c01125{height:36.290191pt;}
.h11_c01125{height:36.712500pt;}
.h17_c01125{height:36.792422pt;}
.h25_c01125{height:37.483532pt;}
.h15_c01125{height:37.780875pt;}
.h24_c01125{height:38.822056pt;}
.h2_c01125{height:41.852250pt;}
.h20_c01125{height:43.852703pt;}
.h5_c01125{height:46.983923pt;}
.h2d_c01125{height:47.329219pt;}
.h14_c01125{height:57.693454pt;}
.h21_c01125{height:59.766094pt;}
.h1e_c01125{height:59.841375pt;}
.h2b_c01125{height:60.629766pt;}
.hc_c01125{height:60.802673pt;}
.h28_c01125{height:61.310059pt;}
.h29_c01125{height:61.493438pt;}
.h2e_c01125{height:62.227871pt;}
.h10_c01125{height:62.530016pt;}
.h1d_c01125{height:64.257360pt;}
.h9_c01125{height:64.775391pt;}
.h26_c01125{height:64.948125pt;}
.h3_c01125{height:65.293594pt;}
.h23_c01125{height:65.433930pt;}
.h2a_c01125{height:66.082500pt;}
.ha_c01125{height:66.330173pt;}
.h27_c01125{height:67.712048pt;}
.h6_c01125{height:69.784860pt;}
.h7_c01125{height:70.130156pt;}
.h13_c01125{height:70.303063pt;}
.hd_c01125{height:70.648532pt;}
.h1f_c01125{height:71.131329pt;}
.h8_c01125{height:71.339297pt;}
.h4_c01125{height:71.405996pt;}
.he_c01125{height:74.621423pt;}
.h22_c01125{height:122.296110pt;}
.h1_c01125{height:986.666667pt;}
.h0_c01125{height:1122.666667pt;}
.w1_c01125{width:689.333333pt;}
.w0_c01125{width:793.333333pt;}
.x0_c01125{left:0.000000pt;}
.x2_c01125{left:32.372253pt;}
.x1_c01125{left:52.000000pt;}
.x2e_c01125{left:82.668653pt;}
.x4_c01125{left:84.393453pt;}
.x4b_c01125{left:131.587853pt;}
.xd_c01125{left:132.916653pt;}
.x50_c01125{left:134.703053pt;}
.x84_c01125{left:142.007053pt;}
.x66_c01125{left:161.345053pt;}
.x5c_c01125{left:162.629853pt;}
.x5_c01125{left:164.024653pt;}
.x1a_c01125{left:171.786253pt;}
.x85_c01125{left:179.904253pt;}
.x71_c01125{left:181.637853pt;}
.x34_c01125{left:182.579453pt;}
.x79_c01125{left:191.155053pt;}
.x25_c01125{left:192.307853pt;}
.x67_c01125{left:200.166253pt;}
.xe_c01125{left:201.468653pt;}
.x6_c01125{left:202.872253pt;}
.x7e_c01125{left:209.388653pt;}
.x35_c01125{left:211.412653pt;}
.x14_c01125{left:212.525853pt;}
.x2d_c01125{left:220.067453pt;}
.x51_c01125{left:221.572253pt;}
.x7_c01125{left:222.650253pt;}
.x86_c01125{left:229.430653pt;}
.x4c_c01125{left:231.120253pt;}
.x2f_c01125{left:232.312653pt;}
.x8_c01125{left:233.566653pt;}
.x1b_c01125{left:239.849853pt;}
.x68_c01125{left:240.883853pt;}
.xf_c01125{left:242.124653pt;}
.x9_c01125{left:243.955053pt;}
.x8a_c01125{left:248.671853pt;}
.x5d_c01125{left:250.537453pt;}
.x52_c01125{left:251.941053pt;}
.x15_c01125{left:260.710253pt;}
.xa_c01125{left:262.003853pt;}
.x6b_c01125{left:269.321053pt;}
.x1c_c01125{left:271.626653pt;}
.x82_c01125{left:279.797453pt;}
.x6c_c01125{left:282.151453pt;}
.x75_c01125{left:290.335453pt;}
.x87_c01125{left:298.374253pt;}
.x72_c01125{left:299.443453pt;}
.x16_c01125{left:301.287053pt;}
.xb_c01125{left:302.417853pt;}
.x7f_c01125{left:309.642653pt;}
.x1d_c01125{left:310.667853pt;}
.x61_c01125{left:320.092653pt;}
.x6d_c01125{left:327.559453pt;}
.x30_c01125{left:329.345853pt;}
.x26_c01125{left:331.101453pt;}
.x53_c01125{left:332.417053pt;}
.x4d_c01125{left:339.052253pt;}
.x5e_c01125{left:340.653853pt;}
.x54_c01125{left:342.237853pt;}
.x62_c01125{left:349.819053pt;}
.x55_c01125{left:358.605853pt;}
.x27_c01125{left:359.789453pt;}
.x1e_c01125{left:360.744253pt;}
.x56_c01125{left:367.480653pt;}
.x36_c01125{left:369.460653pt;}
.x57_c01125{left:370.965453pt;}
.xc_c01125{left:372.426253pt;}
.x69_c01125{left:378.696253pt;}
.x10_c01125{left:380.575053pt;}
.x5f_c01125{left:381.912653pt;}
.x76_c01125{left:387.311453pt;}
.x1f_c01125{left:389.493853pt;}
.x28_c01125{left:390.695053pt;}
.x3a_c01125{left:393.634253pt;}
.x6e_c01125{left:397.537053pt;}
.x80_c01125{left:398.980253pt;}
.x3b_c01125{left:400.317853pt;}
.x3c_c01125{left:403.890653pt;}
.x8b_c01125{left:408.136653pt;}
.x11_c01125{left:409.373053pt;}
.x73_c01125{left:417.763853pt;}
.x63_c01125{left:418.934253pt;}
.x20_c01125{left:420.065053pt;}
.x7c_c01125{left:427.804653pt;}
.x3d_c01125{left:436.169053pt;}
.x12_c01125{left:438.650653pt;}
.x7a_c01125{left:447.437453pt;}
.x29_c01125{left:448.348253pt;}
.x3e_c01125{left:455.423453pt;}
.x74_c01125{left:456.915053pt;}
.x17_c01125{left:458.670653pt;}
.x4e_c01125{left:467.395853pt;}
.x21_c01125{left:468.676253pt;}
.x3f_c01125{left:473.089453pt;}
.x31_c01125{left:476.728253pt;}
.x2a_c01125{left:477.727053pt;}
.x22_c01125{left:478.981053pt;}
.x8c_c01125{left:487.257453pt;}
.x37_c01125{left:488.172653pt;}
.x40_c01125{left:492.286653pt;}
.x58_c01125{left:497.315853pt;}
.x77_c01125{left:505.552653pt;}
.x88_c01125{left:506.582253pt;}
.x59_c01125{left:508.865853pt;}
.x41_c01125{left:515.716653pt;}
.x65_c01125{left:518.031053pt;}
.x42_c01125{left:519.135453pt;}
.x5a_c01125{left:526.096253pt;}
.x18_c01125{left:527.275453pt;}
.x43_c01125{left:532.832653pt;}
.x44_c01125{left:534.817053pt;}
.x60_c01125{left:536.722253pt;}
.x81_c01125{left:545.293453pt;}
.x13_c01125{left:546.582653pt;}
.x45_c01125{left:554.291453pt;}
.x19_c01125{left:556.381453pt;}
.x23_c01125{left:557.349453pt;}
.x7b_c01125{left:565.124253pt;}
.x46_c01125{left:566.039453pt;}
.x2b_c01125{left:567.064653pt;}
.x38_c01125{left:571.301853pt;}
.x32_c01125{left:575.371853pt;}
.x39_c01125{left:576.894253pt;}
.x47_c01125{left:580.079853pt;}
.x24_c01125{left:585.381853pt;}
.x48_c01125{left:588.272653pt;}
.x7d_c01125{left:592.791453pt;}
.x6f_c01125{left:595.383053pt;}
.x83_c01125{left:603.131453pt;}
.x4f_c01125{left:604.838653pt;}
.x33_c01125{left:605.811053pt;}
.x49_c01125{left:612.221853pt;}
.x78_c01125{left:613.308653pt;}
.x70_c01125{left:614.923453pt;}
.x2c_c01125{left:618.166253pt;}
.x89_c01125{left:622.473853pt;}
.x64_c01125{left:624.744253pt;}
.x3_c01125{left:633.671853pt;}
.x6a_c01125{left:635.282253pt;}
.x4a_c01125{left:637.297453pt;}
.x8d_c01125{left:644.073453pt;}
.x5b_c01125{left:655.038253pt;}
}





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

.ir_c01126:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01126{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01126;src:url('chunks/assets/font_e01f77954595c3a8beaf8ebd.woff2')format("woff");}.ff1_c01126{font-family:ff1_c01126;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01126;src:url('chunks/assets/font_8e7aad3dfb3b1c9b274ea921.woff2')format("woff");}.ff2_c01126{font-family:ff2_c01126;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01126;src:url('chunks/assets/font_b93025f73de6d7f56e826494.woff2')format("woff");}.ff3_c01126{font-family:ff3_c01126;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01126;src:url('chunks/assets/font_d3d206b46b93718e7182aafd.woff2')format("woff");}.ff4_c01126{font-family:ff4_c01126;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01126;src:url('chunks/assets/font_33a16a8b464b62fcefb1f51d.woff2')format("woff");}.ff5_c01126{font-family:ff5_c01126;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01126;src:url('chunks/assets/font_f21a8e91310bd0c2b8af1ece.woff2')format("woff");}.ff6_c01126{font-family:ff6_c01126;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m42_c01126{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);}
.m62_c01126{transform:matrix(0.036977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036977,0.000000,0.000000,0.250000,0,0);}
.m40_c01126{transform:matrix(0.083334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083334,0.000000,0.000000,0.250000,0,0);}
.m5e_c01126{transform:matrix(0.087317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087317,0.000000,0.000000,0.250000,0,0);}
.m65_c01126{transform:matrix(0.088871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088871,0.000000,0.000000,0.250000,0,0);}
.m5f_c01126{transform:matrix(0.091005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091005,0.000000,0.000000,0.250000,0,0);}
.m61_c01126{transform:matrix(0.098684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098684,0.000000,0.000000,0.250000,0,0);}
.ma7_c01126{transform:matrix(0.098837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098837,0.000000,0.000000,0.250000,0,0);}
.m2_c01126{transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);}
.m70_c01126{transform:matrix(0.137125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137125,0.000000,0.000000,0.250000,0,0);}
.m9f_c01126{transform:matrix(0.148124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148124,0.000000,0.000000,0.250000,0,0);}
.m17_c01126{transform:matrix(0.148352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148352,0.000000,0.000000,0.250000,0,0);}
.m41_c01126{transform:matrix(0.157609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157609,0.000000,0.000000,0.250000,0,0);}
.m3d_c01126{transform:matrix(0.157830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157830,0.000000,0.000000,0.250000,0,0);}
.m66_c01126{transform:matrix(0.159884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159884,0.000000,0.000000,0.250000,0,0);}
.m6e_c01126{transform:matrix(0.165179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165179,0.000000,0.000000,0.250000,0,0);}
.m4f_c01126{transform:matrix(0.187079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187079,0.000000,0.000000,0.250000,0,0);}
.m4c_c01126{transform:matrix(0.206397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206397,0.000000,0.000000,0.250000,0,0);}
.mb1_c01126{transform:matrix(0.208422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208422,0.000000,0.000000,0.250000,0,0);}
.m6_c01126{transform:matrix(0.215807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215807,0.000000,0.000000,0.250000,0,0);}
.m4e_c01126{transform:matrix(0.223189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223189,0.000000,0.000000,0.250000,0,0);}
.m91_c01126{transform:matrix(0.229987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229987,0.000000,0.000000,0.250000,0,0);}
.m87_c01126{transform:matrix(0.240692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240692,0.000000,0.000000,0.250000,0,0);}
.m90_c01126{transform:matrix(0.241374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241374,0.000000,0.000000,0.250000,0,0);}
.m44_c01126{transform:matrix(0.244669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244669,0.000000,0.000000,0.250000,0,0);}
.m60_c01126{transform:matrix(0.245336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245336,0.000000,0.000000,0.250000,0,0);}
.m43_c01126{transform:matrix(0.246909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246909,0.000000,0.000000,0.250000,0,0);}
.m3_c01126{transform:matrix(0.249871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249871,0.000000,0.000000,0.250000,0,0);}
.m0_c01126{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m9b_c01126{transform:matrix(0.252435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252435,0.000000,0.000000,0.250000,0,0);}
.m9c_c01126{transform:matrix(0.256346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256346,0.000000,0.000000,0.250000,0,0);}
.maa_c01126{transform:matrix(0.257677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257677,0.000000,0.000000,0.250000,0,0);}
.m86_c01126{transform:matrix(0.260104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260104,0.000000,0.000000,0.250000,0,0);}
.m88_c01126{transform:matrix(0.261831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261831,0.000000,0.000000,0.250000,0,0);}
.m1_c01126{transform:matrix(0.262468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262468,0.000000,0.000000,0.250000,0,0);}
.m85_c01126{transform:matrix(0.265314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265314,0.000000,0.000000,0.250000,0,0);}
.m2b_c01126{transform:matrix(0.265809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265809,0.000000,0.000000,0.250000,0,0);}
.mb2_c01126{transform:matrix(0.266968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266968,0.000000,0.000000,0.250000,0,0);}
.md_c01126{transform:matrix(0.267489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267489,0.000000,0.000000,0.250000,0,0);}
.ma9_c01126{transform:matrix(0.268882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268882,0.000000,0.000000,0.250000,0,0);}
.m3b_c01126{transform:matrix(0.269691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269691,0.000000,0.000000,0.250000,0,0);}
.ma6_c01126{transform:matrix(0.269959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269959,0.000000,0.000000,0.250000,0,0);}
.mb3_c01126{transform:matrix(0.270005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270005,0.000000,0.000000,0.250000,0,0);}
.m15_c01126{transform:matrix(0.271003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271003,0.000000,0.000000,0.250000,0,0);}
.m35_c01126{transform:matrix(0.272356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272356,0.000000,0.000000,0.250000,0,0);}
.m8f_c01126{transform:matrix(0.272767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272767,0.000000,0.000000,0.250000,0,0);}
.m57_c01126{transform:matrix(0.273387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273387,0.000000,0.000000,0.250000,0,0);}
.m47_c01126{transform:matrix(0.273397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273397,0.000000,0.000000,0.250000,0,0);}
.m59_c01126{transform:matrix(0.273997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273997,0.000000,0.000000,0.250000,0,0);}
.m7_c01126{transform:matrix(0.274305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274305,0.000000,0.000000,0.250000,0,0);}
.m84_c01126{transform:matrix(0.274838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274838,0.000000,0.000000,0.250000,0,0);}
.mb_c01126{transform:matrix(0.275843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275843,0.000000,0.000000,0.250000,0,0);}
.m55_c01126{transform:matrix(0.276395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276395,0.000000,0.000000,0.250000,0,0);}
.m99_c01126{transform:matrix(0.276494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276494,0.000000,0.000000,0.250000,0,0);}
.m71_c01126{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.m7a_c01126{transform:matrix(0.278077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278077,0.000000,0.000000,0.250000,0,0);}
.m8b_c01126{transform:matrix(0.278890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278890,0.000000,0.000000,0.250000,0,0);}
.mab_c01126{transform:matrix(0.279464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279464,0.000000,0.000000,0.250000,0,0);}
.m5c_c01126{transform:matrix(0.279778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279778,0.000000,0.000000,0.250000,0,0);}
.m69_c01126{transform:matrix(0.279978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279978,0.000000,0.000000,0.250000,0,0);}
.m4b_c01126{transform:matrix(0.280682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280682,0.000000,0.000000,0.250000,0,0);}
.m3c_c01126{transform:matrix(0.281382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281382,0.000000,0.000000,0.250000,0,0);}
.m39_c01126{transform:matrix(0.282486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282486,0.000000,0.000000,0.250000,0,0);}
.m54_c01126{transform:matrix(0.283742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283742,0.000000,0.000000,0.250000,0,0);}
.m6a_c01126{transform:matrix(0.283774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283774,0.000000,0.000000,0.250000,0,0);}
.m27_c01126{transform:matrix(0.283782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283782,0.000000,0.000000,0.250000,0,0);}
.m7f_c01126{transform:matrix(0.285100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285100,0.000000,0.000000,0.250000,0,0);}
.m9e_c01126{transform:matrix(0.285890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285890,0.000000,0.000000,0.250000,0,0);}
.m6d_c01126{transform:matrix(0.286438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286438,0.000000,0.000000,0.250000,0,0);}
.m63_c01126{transform:matrix(0.286627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286627,0.000000,0.000000,0.250000,0,0);}
.m4_c01126{transform:matrix(0.287262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287262,0.000000,0.000000,0.250000,0,0);}
.m74_c01126{transform:matrix(0.288569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288569,0.000000,0.000000,0.250000,0,0);}
.m22_c01126{transform:matrix(0.288686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288686,0.000000,0.000000,0.250000,0,0);}
.m45_c01126{transform:matrix(0.288863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288863,0.000000,0.000000,0.250000,0,0);}
.m8c_c01126{transform:matrix(0.289473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289473,0.000000,0.000000,0.250000,0,0);}
.m32_c01126{transform:matrix(0.289943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289943,0.000000,0.000000,0.250000,0,0);}
.m79_c01126{transform:matrix(0.290373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290373,0.000000,0.000000,0.250000,0,0);}
.m2c_c01126{transform:matrix(0.290483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290483,0.000000,0.000000,0.250000,0,0);}
.m24_c01126{transform:matrix(0.290901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290901,0.000000,0.000000,0.250000,0,0);}
.m9d_c01126{transform:matrix(0.290942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290942,0.000000,0.000000,0.250000,0,0);}
.m4d_c01126{transform:matrix(0.291651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291651,0.000000,0.000000,0.250000,0,0);}
.m6c_c01126{transform:matrix(0.291838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291838,0.000000,0.000000,0.250000,0,0);}
.mb0_c01126{transform:matrix(0.292259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292259,0.000000,0.000000,0.250000,0,0);}
.m20_c01126{transform:matrix(0.293118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293118,0.000000,0.000000,0.250000,0,0);}
.mc_c01126{transform:matrix(0.293424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293424,0.000000,0.000000,0.250000,0,0);}
.m83_c01126{transform:matrix(0.294456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294456,0.000000,0.000000,0.250000,0,0);}
.m26_c01126{transform:matrix(0.297589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297589,0.000000,0.000000,0.250000,0,0);}
.m58_c01126{transform:matrix(0.298925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298925,0.000000,0.000000,0.250000,0,0);}
.m31_c01126{transform:matrix(0.299906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299906,0.000000,0.000000,0.250000,0,0);}
.m7c_c01126{transform:matrix(0.299960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299960,0.000000,0.000000,0.250000,0,0);}
.m23_c01126{transform:matrix(0.300138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300138,0.000000,0.000000,0.250000,0,0);}
.m50_c01126{transform:matrix(0.300337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300337,0.000000,0.000000,0.250000,0,0);}
.m56_c01126{transform:matrix(0.300411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300411,0.000000,0.000000,0.250000,0,0);}
.m3a_c01126{transform:matrix(0.301674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301674,0.000000,0.000000,0.250000,0,0);}
.m80_c01126{transform:matrix(0.303358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303358,0.000000,0.000000,0.250000,0,0);}
.ma_c01126{transform:matrix(0.303448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303448,0.000000,0.000000,0.250000,0,0);}
.m49_c01126{transform:matrix(0.304182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304182,0.000000,0.000000,0.250000,0,0);}
.m14_c01126{transform:matrix(0.304234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304234,0.000000,0.000000,0.250000,0,0);}
.m34_c01126{transform:matrix(0.304308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304308,0.000000,0.000000,0.250000,0,0);}
.m94_c01126{transform:matrix(0.305015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305015,0.000000,0.000000,0.250000,0,0);}
.m7b_c01126{transform:matrix(0.305185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305185,0.000000,0.000000,0.250000,0,0);}
.m30_c01126{transform:matrix(0.305218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305218,0.000000,0.000000,0.250000,0,0);}
.m53_c01126{transform:matrix(0.305276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305276,0.000000,0.000000,0.250000,0,0);}
.m7d_c01126{transform:matrix(0.305593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305593,0.000000,0.000000,0.250000,0,0);}
.maf_c01126{transform:matrix(0.305680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305680,0.000000,0.000000,0.250000,0,0);}
.m1d_c01126{transform:matrix(0.308810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308810,0.000000,0.000000,0.250000,0,0);}
.m73_c01126{transform:matrix(0.309118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309118,0.000000,0.000000,0.250000,0,0);}
.m5_c01126{transform:matrix(0.309270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309270,0.000000,0.000000,0.250000,0,0);}
.m18_c01126{transform:matrix(0.309640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309640,0.000000,0.000000,0.250000,0,0);}
.me_c01126{transform:matrix(0.309655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309655,0.000000,0.000000,0.250000,0,0);}
.m8_c01126{transform:matrix(0.309804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309804,0.000000,0.000000,0.250000,0,0);}
.m8a_c01126{transform:matrix(0.311458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311458,0.000000,0.000000,0.250000,0,0);}
.m38_c01126{transform:matrix(0.311833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311833,0.000000,0.000000,0.250000,0,0);}
.m4a_c01126{transform:matrix(0.312015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312015,0.000000,0.000000,0.250000,0,0);}
.ma3_c01126{transform:matrix(0.312023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312023,0.000000,0.000000,0.250000,0,0);}
.m68_c01126{transform:matrix(0.312843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312843,0.000000,0.000000,0.250000,0,0);}
.ma5_c01126{transform:matrix(0.313108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313108,0.000000,0.000000,0.250000,0,0);}
.m1b_c01126{transform:matrix(0.313337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313337,0.000000,0.000000,0.250000,0,0);}
.m1c_c01126{transform:matrix(0.313386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313386,0.000000,0.000000,0.250000,0,0);}
.mae_c01126{transform:matrix(0.313493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313493,0.000000,0.000000,0.250000,0,0);}
.m97_c01126{transform:matrix(0.313560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313560,0.000000,0.000000,0.250000,0,0);}
.m37_c01126{transform:matrix(0.314253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314253,0.000000,0.000000,0.250000,0,0);}
.m19_c01126{transform:matrix(0.314396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314396,0.000000,0.000000,0.250000,0,0);}
.m29_c01126{transform:matrix(0.314725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314725,0.000000,0.000000,0.250000,0,0);}
.m12_c01126{transform:matrix(0.314792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314792,0.000000,0.000000,0.250000,0,0);}
.m2e_c01126{transform:matrix(0.315075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315075,0.000000,0.000000,0.250000,0,0);}
.m93_c01126{transform:matrix(0.315831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315831,0.000000,0.000000,0.250000,0,0);}
.m52_c01126{transform:matrix(0.318235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318235,0.000000,0.000000,0.250000,0,0);}
.m28_c01126{transform:matrix(0.318440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318440,0.000000,0.000000,0.250000,0,0);}
.m77_c01126{transform:matrix(0.318693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318693,0.000000,0.000000,0.250000,0,0);}
.m2f_c01126{transform:matrix(0.319640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319640,0.000000,0.000000,0.250000,0,0);}
.m48_c01126{transform:matrix(0.320265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320265,0.000000,0.000000,0.250000,0,0);}
.m78_c01126{transform:matrix(0.320319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320319,0.000000,0.000000,0.250000,0,0);}
.m76_c01126{transform:matrix(0.321791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321791,0.000000,0.000000,0.250000,0,0);}
.m33_c01126{transform:matrix(0.322139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322139,0.000000,0.000000,0.250000,0,0);}
.m1e_c01126{transform:matrix(0.322581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322581,0.000000,0.000000,0.250000,0,0);}
.m1f_c01126{transform:matrix(0.323454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323454,0.000000,0.000000,0.250000,0,0);}
.m2a_c01126{transform:matrix(0.323843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323843,0.000000,0.000000,0.250000,0,0);}
.m25_c01126{transform:matrix(0.323963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323963,0.000000,0.000000,0.250000,0,0);}
.mac_c01126{transform:matrix(0.324323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324323,0.000000,0.000000,0.250000,0,0);}
.m89_c01126{transform:matrix(0.324702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324702,0.000000,0.000000,0.250000,0,0);}
.m2d_c01126{transform:matrix(0.326905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326905,0.000000,0.000000,0.250000,0,0);}
.mf_c01126{transform:matrix(0.327483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327483,0.000000,0.000000,0.250000,0,0);}
.m5b_c01126{transform:matrix(0.327637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327637,0.000000,0.000000,0.250000,0,0);}
.m51_c01126{transform:matrix(0.328618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328618,0.000000,0.000000,0.250000,0,0);}
.ma4_c01126{transform:matrix(0.329517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329517,0.000000,0.000000,0.250000,0,0);}
.m36_c01126{transform:matrix(0.330328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330328,0.000000,0.000000,0.250000,0,0);}
.m3f_c01126{transform:matrix(0.331620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331620,0.000000,0.000000,0.250000,0,0);}
.m9a_c01126{transform:matrix(0.331775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331775,0.000000,0.000000,0.250000,0,0);}
.m81_c01126{transform:matrix(0.333321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333321,0.000000,0.000000,0.250000,0,0);}
.m96_c01126{transform:matrix(0.334476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334476,0.000000,0.000000,0.250000,0,0);}
.m8e_c01126{transform:matrix(0.335060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335060,0.000000,0.000000,0.250000,0,0);}
.m64_c01126{transform:matrix(0.336657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336657,0.000000,0.000000,0.250000,0,0);}
.m82_c01126{transform:matrix(0.338242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338242,0.000000,0.000000,0.250000,0,0);}
.m46_c01126{transform:matrix(0.339857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339857,0.000000,0.000000,0.250000,0,0);}
.m10_c01126{transform:matrix(0.340353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340353,0.000000,0.000000,0.250000,0,0);}
.m92_c01126{transform:matrix(0.340402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340402,0.000000,0.000000,0.250000,0,0);}
.m9_c01126{transform:matrix(0.342745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342745,0.000000,0.000000,0.250000,0,0);}
.m11_c01126{transform:matrix(0.346085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346085,0.000000,0.000000,0.250000,0,0);}
.m6b_c01126{transform:matrix(0.348174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348174,0.000000,0.000000,0.250000,0,0);}
.m5a_c01126{transform:matrix(0.349091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349091,0.000000,0.000000,0.250000,0,0);}
.m6f_c01126{transform:matrix(0.349232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349232,0.000000,0.000000,0.250000,0,0);}
.ma8_c01126{transform:matrix(0.349265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349265,0.000000,0.000000,0.250000,0,0);}
.m75_c01126{transform:matrix(0.349524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349524,0.000000,0.000000,0.250000,0,0);}
.m95_c01126{transform:matrix(0.349785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349785,0.000000,0.000000,0.250000,0,0);}
.ma1_c01126{transform:matrix(0.351863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351863,0.000000,0.000000,0.250000,0,0);}
.m7e_c01126{transform:matrix(0.352826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352826,0.000000,0.000000,0.250000,0,0);}
.m13_c01126{transform:matrix(0.355438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355438,0.000000,0.000000,0.250000,0,0);}
.m21_c01126{transform:matrix(0.358479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358479,0.000000,0.000000,0.250000,0,0);}
.m5d_c01126{transform:matrix(0.363001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363001,0.000000,0.000000,0.250000,0,0);}
.mad_c01126{transform:matrix(0.364193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364193,0.000000,0.000000,0.250000,0,0);}
.ma2_c01126{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);}
.ma0_c01126{transform:matrix(0.375843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375843,0.000000,0.000000,0.250000,0,0);}
.m98_c01126{transform:matrix(0.391173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391173,0.000000,0.000000,0.250000,0,0);}
.m8d_c01126{transform:matrix(0.397006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397006,0.000000,0.000000,0.250000,0,0);}
.m1a_c01126{transform:matrix(0.397482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397482,0.000000,0.000000,0.250000,0,0);}
.m3e_c01126{transform:matrix(0.403791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403791,0.000000,0.000000,0.250000,0,0);}
.m16_c01126{transform:matrix(0.410101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410101,0.000000,0.000000,0.250000,0,0);}
.m67_c01126{transform:matrix(0.451881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451881,0.000000,0.000000,0.250000,0,0);}
.m72_c01126{transform:matrix(0.524943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524943,0.000000,0.000000,0.250000,0,0);}
.v0_c01126{vertical-align:0.000000px;}
.ls25_c01126{letter-spacing:-3.769927px;}
.ls18_c01126{letter-spacing:-2.799727px;}
.ls11_c01126{letter-spacing:-2.661127px;}
.ls10_c01126{letter-spacing:-2.647267px;}
.ls5_c01126{letter-spacing:-2.619540px;}
.ls6_c01126{letter-spacing:-2.605680px;}
.ls21_c01126{letter-spacing:-2.591827px;}
.ls1e_c01126{letter-spacing:-1.803740px;}
.ls1d_c01126{letter-spacing:-1.549271px;}
.ls12_c01126{letter-spacing:-1.427580px;}
.ls16_c01126{letter-spacing:-1.294801px;}
.lsc_c01126{letter-spacing:-1.227442px;}
.ls14_c01126{letter-spacing:-0.942480px;}
.ls2_c01126{letter-spacing:0.000000px;}
.ls0_c01126{letter-spacing:0.621643px;}
.ls1_c01126{letter-spacing:0.675259px;}
.ls1b_c01126{letter-spacing:0.861300px;}
.ls19_c01126{letter-spacing:1.091475px;}
.ls1a_c01126{letter-spacing:1.168200px;}
.ls8_c01126{letter-spacing:2.469852px;}
.ls22_c01126{letter-spacing:2.619540px;}
.lsd_c01126{letter-spacing:2.627024px;}
.ls1f_c01126{letter-spacing:3.247200px;}
.lsa_c01126{letter-spacing:3.405610px;}
.ls7_c01126{letter-spacing:3.420371px;}
.lsf_c01126{letter-spacing:3.702610px;}
.ls3_c01126{letter-spacing:3.742200px;}
.ls1c_c01126{letter-spacing:3.940200px;}
.ls13_c01126{letter-spacing:3.979810px;}
.ls23_c01126{letter-spacing:3.989700px;}
.ls20_c01126{letter-spacing:4.009500px;}
.lsb_c01126{letter-spacing:4.078810px;}
.ls24_c01126{letter-spacing:4.435200px;}
.ls4_c01126{letter-spacing:29.937798px;}
.ls9_c01126{letter-spacing:49.896198px;}
.ls17_c01126{letter-spacing:59.875398px;}
.ls15_c01126{letter-spacing:61.300998px;}
.lse_c01126{letter-spacing:65.577798px;}
.sc__c01126{text-shadow:none;}
.sc0_c01126{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01126{-webkit-text-stroke:0px transparent;}
.sc0_c01126{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01126{word-spacing:0.000000px;}
.ws0_c01126{word-spacing:2.150280px;}
._1_c01126{margin-left:-7.221109px;}
._2_c01126{margin-left:-5.485580px;}
._3_c01126{width:6.408864px;}
._4_c01126{width:10.755122px;}
._5_c01126{width:11.886732px;}
._0_c01126{width:30.506414px;}
._7_c01126{width:37.040296px;}
._6_c01126{width:75.125160px;}
.fc0_c01126{color:transparent;}
.fs1c_c01126{font-size:17.226000px;}
.fs23_c01126{font-size:21.582000px;}
.fs15_c01126{font-size:22.572000px;}
.fs3_c01126{font-size:23.166000px;}
.fs1b_c01126{font-size:23.364000px;}
.fs0_c01126{font-size:25.938000px;}
.fs11_c01126{font-size:26.928000px;}
.fs4_c01126{font-size:29.937798px;}
.fsa_c01126{font-size:30.888000px;}
.fs1a_c01126{font-size:34.650000px;}
.fsb_c01126{font-size:37.026198px;}
.fs6_c01126{font-size:39.204000px;}
.fs13_c01126{font-size:40.788000px;}
.fs7_c01126{font-size:49.896198px;}
.fs18_c01126{font-size:59.875398px;}
.fs16_c01126{font-size:61.300998px;}
.fs1e_c01126{font-size:64.944000px;}
.fse_c01126{font-size:65.577798px;}
.fsc_c01126{font-size:66.132198px;}
.fs8_c01126{font-size:68.112198px;}
.fs17_c01126{font-size:68.706198px;}
.fs2_c01126{font-size:72.864000px;}
.fsd_c01126{font-size:73.062198px;}
.fsf_c01126{font-size:74.052198px;}
.fs5_c01126{font-size:74.448000px;}
.fs1_c01126{font-size:74.844000px;}
.fs10_c01126{font-size:75.636198px;}
.fs12_c01126{font-size:76.032198px;}
.fs1d_c01126{font-size:78.804000px;}
.fs14_c01126{font-size:79.596198px;}
.fs20_c01126{font-size:79.794000px;}
.fs19_c01126{font-size:79.992198px;}
.fs1f_c01126{font-size:80.190000px;}
.fs9_c01126{font-size:81.576198px;}
.fs21_c01126{font-size:88.704000px;}
.fs22_c01126{font-size:107.712198px;}
.y0_c01126{bottom:0.000000px;}
.y1_c01126{bottom:76.500000px;}
.y26_c01126{bottom:159.579135px;}
.y25_c01126{bottom:192.362985px;}
.y24_c01126{bottom:256.163535px;}
.y23_c01126{bottom:288.595935px;}
.y22_c01126{bottom:320.310585px;}
.y21_c01126{bottom:352.742985px;}
.y27_c01126{bottom:367.360335px;}
.y20_c01126{bottom:384.818985px;}
.y1f_c01126{bottom:416.182185px;}
.y1e_c01126{bottom:447.901785px;}
.y1d_c01126{bottom:479.977785px;}
.y1c_c01126{bottom:511.702335px;}
.y1b_c01126{bottom:539.145135px;}
.y1a_c01126{bottom:544.134735px;}
.y19_c01126{bottom:575.492985px;}
.y18_c01126{bottom:592.961535px;}
.y17_c01126{bottom:607.930335px;}
.y16_c01126{bottom:640.362735px;}
.y15_c01126{bottom:668.874735px;}
.y14_c01126{bottom:672.082335px;}
.y13_c01126{bottom:700.232985px;}
.y10_c01126{bottom:704.158335px;}
.y12_c01126{bottom:718.409385px;}
.y11_c01126{bottom:724.829535px;}
.yf_c01126{bottom:735.872985px;}
.y2_c01126{bottom:739.080585px;}
.ye_c01126{bottom:768.310335px;}
.yd_c01126{bottom:800.024985px;}
.yc_c01126{bottom:832.813785px;}
.yb_c01126{bottom:864.538335px;}
.ya_c01126{bottom:896.252985px;}
.y8_c01126{bottom:928.333935px;}
.y7_c01126{bottom:928.690335px;}
.y9_c01126{bottom:939.025935px;}
.y6_c01126{bottom:989.278335px;}
.y5_c01126{bottom:999.970335px;}
.y4_c01126{bottom:1012.439385px;}
.y3_c01126{bottom:1070.532585px;}
.h1e_c01126{height:16.906377px;}
.h1d_c01126{height:17.360578px;}
.h6_c01126{height:19.938573px;}
.h25_c01126{height:22.509352px;}
.h1c_c01126{height:22.919080px;}
.h16_c01126{height:23.541891px;}
.h5_c01126{height:24.161414px;}
.h2_c01126{height:27.052523px;}
.h12_c01126{height:28.085063px;}
.hc_c01126{height:32.215219px;}
.h9_c01126{height:33.230868px;}
.h1b_c01126{height:36.138867px;}
.hd_c01126{height:36.339188px;}
.h8_c01126{height:38.476582px;}
.h19_c01126{height:39.877015px;}
.h17_c01126{height:40.826465px;}
.h14_c01126{height:41.106656px;}
.hf_c01126{height:43.674813px;}
.h18_c01126{height:67.431376px;}
.h20_c01126{height:67.734563px;}
.ha_c01126{height:71.038894px;}
.h4_c01126{height:71.512031px;}
.h10_c01126{height:72.678183px;}
.h7_c01126{height:73.066641px;}
.h3_c01126{height:73.455293px;}
.h11_c01126{height:74.232792px;}
.he_c01126{height:76.201589px;}
.h1f_c01126{height:77.341816px;}
.h15_c01126{height:78.119315px;}
.h22_c01126{height:78.313447px;}
.h1a_c01126{height:78.507968px;}
.h21_c01126{height:78.702100px;}
.h13_c01126{height:79.299207px;}
.hb_c01126{height:80.062577px;}
.h23_c01126{height:87.058125px;}
.h24_c01126{height:105.713632px;}
.h1_c01126{height:1110.000000px;}
.h0_c01126{height:1263.000000px;}
.w1_c01126{width:775.500000px;}
.w0_c01126{width:892.500000px;}
.x0_c01126{left:0.000000px;}
.x2_c01126{left:48.011685px;}
.x1_c01126{left:58.500000px;}
.x75_c01126{left:83.730885px;}
.x61_c01126{left:139.591635px;}
.x3c_c01126{left:141.541935px;}
.x19_c01126{left:143.061585px;}
.x6_c01126{left:144.130785px;}
.x3d_c01126{left:174.177285px;}
.x1a_c01126{left:175.776135px;}
.x70_c01126{left:185.111835px;}
.x7_c01126{left:187.477935px;}
.x42_c01126{left:190.477635px;}
.x48_c01126{left:197.570985px;}
.x6c_c01126{left:208.188735px;}
.x1b_c01126{left:209.347035px;}
.x43_c01126{left:214.945485px;}
.x35_c01126{left:219.845985px;}
.x4c_c01126{left:229.330185px;}
.x44_c01126{left:237.606585px;}
.x53_c01126{left:241.363635px;}
.x1c_c01126{left:242.601135px;}
.x12_c01126{left:243.873285px;}
.x3e_c01126{left:244.892985px;}
.x4d_c01126{left:249.278685px;}
.x74_c01126{left:250.837935px;}
.x76_c01126{left:252.085335px;}
.x3f_c01126{left:263.900985px;}
.x49_c01126{left:264.920685px;}
.x8_c01126{left:265.960185px;}
.x4e_c01126{left:270.811185px;}
.x2a_c01126{left:275.578035px;}
.x45_c01126{left:276.662085px;}
.x4f_c01126{left:279.404385px;}
.x77_c01126{left:283.983135px;}
.x32_c01126{left:286.126485px;}
.x1d_c01126{left:287.250135px;}
.x7d_c01126{left:294.274185px;}
.x67_c01126{left:296.244285px;}
.x24_c01126{left:298.080735px;}
.x9_c01126{left:299.540985px;}
.x2b_c01126{left:309.129135px;}
.x13_c01126{left:321.360585px;}
.x46_c01126{left:330.617085px;}
.xa_c01126{left:333.280185px;}
.x4a_c01126{left:342.284235px;}
.x78_c01126{left:350.323035px;}
.x5c_c01126{left:353.307885px;}
.x33_c01126{left:354.763185px;}
.x40_c01126{left:363.618735px;}
.x25_c01126{left:365.811585px;}
.x2c_c01126{left:376.800585px;}
.x7e_c01126{left:383.413785px;}
.x26_c01126{left:386.289735px;}
.xb_c01126{left:387.418335px;}
.x63_c01126{left:397.471785px;}
.x5b_c01126{left:408.544935px;}
.x1e_c01126{left:409.678485px;}
.x36_c01126{left:418.712235px;}
.x34_c01126{left:420.301185px;}
.x14_c01126{left:422.894985px;}
.x64_c01126{left:429.409185px;}
.x79_c01126{left:439.868535px;}
.x71_c01126{left:451.303035px;}
.x47_c01126{left:452.535585px;}
.x62_c01126{left:463.024635px;}
.x15_c01126{left:464.826435px;}
.x7a_c01126{left:474.097785px;}
.x54_c01126{left:476.295585px;}
.x5f_c01126{left:485.695635px;}
.xc_c01126{left:486.715335px;}
.x50_c01126{left:496.060935px;}
.x41_c01126{left:498.332985px;}
.x5d_c01126{left:508.371585px;}
.x6d_c01126{left:509.406135px;}
.x68_c01126{left:518.974485px;}
.xd_c01126{left:520.761435px;}
.x55_c01126{left:529.191285px;}
.x16_c01126{left:531.478185px;}
.x72_c01126{left:539.546685px;}
.x1f_c01126{left:540.902985px;}
.x69_c01126{left:551.268285px;}
.xe_c01126{left:552.723585px;}
.x73_c01126{left:562.366185px;}
.x17_c01126{left:564.588735px;}
.x37_c01126{left:565.702485px;}
.x60_c01126{left:573.271035px;}
.x20_c01126{left:574.597635px;}
.x6e_c01126{left:575.988585px;}
.x39_c01126{left:584.814435px;}
.x2d_c01126{left:586.433085px;}
.x7b_c01126{left:594.189735px;}
.x27_c01126{left:596.214285px;}
.x18_c01126{left:597.773535px;}
.x5e_c01126{left:606.337035px;}
.x65_c01126{left:607.386435px;}
.x21_c01126{left:608.465535px;}
.x57_c01126{left:617.860635px;}
.x28_c01126{left:620.152485px;}
.x58_c01126{left:624.369885px;}
.x6a_c01126{left:628.062585px;}
.x7c_c01126{left:630.418785px;}
.x51_c01126{left:640.694985px;}
.x59_c01126{left:645.006435px;}
.x29_c01126{left:651.436485px;}
.xf_c01126{left:652.708635px;}
.x2e_c01126{left:653.743185px;}
.x4b_c01126{left:662.291835px;}
.x2f_c01126{left:663.361035px;}
.x22_c01126{left:673.909485px;}
.x3a_c01126{left:675.369735px;}
.x5a_c01126{left:677.414085px;}
.x52_c01126{left:684.522285px;}
.x10_c01126{left:686.358735px;}
.x6f_c01126{left:693.848085px;}
.x66_c01126{left:695.115285px;}
.x23_c01126{left:697.803135px;}
.x4_c01126{left:700.728585px;}
.x5_c01126{left:702.649185px;}
.x3_c01126{left:705.777585px;}
.x38_c01126{left:707.227935px;}
.x31_c01126{left:708.668385px;}
.x56_c01126{left:710.069235px;}
.x30_c01126{left:718.959435px;}
.x6b_c01126{left:728.602035px;}
.x3b_c01126{left:739.165335px;}
.x11_c01126{left:747.199185px;}
.x7f_c01126{left:765.103335px;}
@media print{
.v0_c01126{vertical-align:0.000000pt;}
.ls25_c01126{letter-spacing:-3.351046pt;}
.ls18_c01126{letter-spacing:-2.488646pt;}
.ls11_c01126{letter-spacing:-2.365446pt;}
.ls10_c01126{letter-spacing:-2.353126pt;}
.ls5_c01126{letter-spacing:-2.328480pt;}
.ls6_c01126{letter-spacing:-2.316160pt;}
.ls21_c01126{letter-spacing:-2.303846pt;}
.ls1e_c01126{letter-spacing:-1.603325pt;}
.ls1d_c01126{letter-spacing:-1.377130pt;}
.ls12_c01126{letter-spacing:-1.268960pt;}
.ls16_c01126{letter-spacing:-1.150934pt;}
.lsc_c01126{letter-spacing:-1.091059pt;}
.ls14_c01126{letter-spacing:-0.837760pt;}
.ls2_c01126{letter-spacing:0.000000pt;}
.ls0_c01126{letter-spacing:0.552571pt;}
.ls1_c01126{letter-spacing:0.600230pt;}
.ls1b_c01126{letter-spacing:0.765600pt;}
.ls19_c01126{letter-spacing:0.970200pt;}
.ls1a_c01126{letter-spacing:1.038400pt;}
.ls8_c01126{letter-spacing:2.195424pt;}
.ls22_c01126{letter-spacing:2.328480pt;}
.lsd_c01126{letter-spacing:2.335133pt;}
.ls1f_c01126{letter-spacing:2.886400pt;}
.lsa_c01126{letter-spacing:3.027209pt;}
.ls7_c01126{letter-spacing:3.040330pt;}
.lsf_c01126{letter-spacing:3.291209pt;}
.ls3_c01126{letter-spacing:3.326400pt;}
.ls1c_c01126{letter-spacing:3.502400pt;}
.ls13_c01126{letter-spacing:3.537609pt;}
.ls23_c01126{letter-spacing:3.546400pt;}
.ls20_c01126{letter-spacing:3.564000pt;}
.lsb_c01126{letter-spacing:3.625609pt;}
.ls24_c01126{letter-spacing:3.942400pt;}
.ls4_c01126{letter-spacing:26.611376pt;}
.ls9_c01126{letter-spacing:44.352176pt;}
.ls17_c01126{letter-spacing:53.222576pt;}
.ls15_c01126{letter-spacing:54.489776pt;}
.lse_c01126{letter-spacing:58.291376pt;}
.ws1_c01126{word-spacing:0.000000pt;}
.ws0_c01126{word-spacing:1.911360pt;}
._1_c01126{margin-left:-6.418764pt;}
._2_c01126{margin-left:-4.876071pt;}
._3_c01126{width:5.696768pt;}
._4_c01126{width:9.560109pt;}
._5_c01126{width:10.565984pt;}
._0_c01126{width:27.116813pt;}
._7_c01126{width:32.924707pt;}
._6_c01126{width:66.777920pt;}
.fs1c_c01126{font-size:15.312000pt;}
.fs23_c01126{font-size:19.184000pt;}
.fs15_c01126{font-size:20.064000pt;}
.fs3_c01126{font-size:20.592000pt;}
.fs1b_c01126{font-size:20.768000pt;}
.fs0_c01126{font-size:23.056000pt;}
.fs11_c01126{font-size:23.936000pt;}
.fs4_c01126{font-size:26.611376pt;}
.fsa_c01126{font-size:27.456000pt;}
.fs1a_c01126{font-size:30.800000pt;}
.fsb_c01126{font-size:32.912176pt;}
.fs6_c01126{font-size:34.848000pt;}
.fs13_c01126{font-size:36.256000pt;}
.fs7_c01126{font-size:44.352176pt;}
.fs18_c01126{font-size:53.222576pt;}
.fs16_c01126{font-size:54.489776pt;}
.fs1e_c01126{font-size:57.728000pt;}
.fse_c01126{font-size:58.291376pt;}
.fsc_c01126{font-size:58.784176pt;}
.fs8_c01126{font-size:60.544176pt;}
.fs17_c01126{font-size:61.072176pt;}
.fs2_c01126{font-size:64.768000pt;}
.fsd_c01126{font-size:64.944176pt;}
.fsf_c01126{font-size:65.824176pt;}
.fs5_c01126{font-size:66.176000pt;}
.fs1_c01126{font-size:66.528000pt;}
.fs10_c01126{font-size:67.232176pt;}
.fs12_c01126{font-size:67.584176pt;}
.fs1d_c01126{font-size:70.048000pt;}
.fs14_c01126{font-size:70.752176pt;}
.fs20_c01126{font-size:70.928000pt;}
.fs19_c01126{font-size:71.104176pt;}
.fs1f_c01126{font-size:71.280000pt;}
.fs9_c01126{font-size:72.512176pt;}
.fs21_c01126{font-size:78.848000pt;}
.fs22_c01126{font-size:95.744176pt;}
.y0_c01126{bottom:0.000000pt;}
.y1_c01126{bottom:68.000000pt;}
.y26_c01126{bottom:141.848120pt;}
.y25_c01126{bottom:170.989320pt;}
.y24_c01126{bottom:227.700920pt;}
.y23_c01126{bottom:256.529720pt;}
.y22_c01126{bottom:284.720520pt;}
.y21_c01126{bottom:313.549320pt;}
.y27_c01126{bottom:326.542520pt;}
.y20_c01126{bottom:342.061320pt;}
.y1f_c01126{bottom:369.939720pt;}
.y1e_c01126{bottom:398.134920pt;}
.y1d_c01126{bottom:426.646920pt;}
.y1c_c01126{bottom:454.846520pt;}
.y1b_c01126{bottom:479.240120pt;}
.y1a_c01126{bottom:483.675320pt;}
.y19_c01126{bottom:511.549320pt;}
.y18_c01126{bottom:527.076920pt;}
.y17_c01126{bottom:540.382520pt;}
.y16_c01126{bottom:569.211320pt;}
.y15_c01126{bottom:594.555320pt;}
.y14_c01126{bottom:597.406520pt;}
.y13_c01126{bottom:622.429320pt;}
.y10_c01126{bottom:625.918520pt;}
.y12_c01126{bottom:638.586120pt;}
.y11_c01126{bottom:644.292920pt;}
.yf_c01126{bottom:654.109320pt;}
.y2_c01126{bottom:656.960520pt;}
.ye_c01126{bottom:682.942520pt;}
.yd_c01126{bottom:711.133320pt;}
.yc_c01126{bottom:740.278920pt;}
.yb_c01126{bottom:768.478520pt;}
.ya_c01126{bottom:796.669320pt;}
.y8_c01126{bottom:825.185720pt;}
.y7_c01126{bottom:825.502520pt;}
.y9_c01126{bottom:834.689720pt;}
.y6_c01126{bottom:879.358520pt;}
.y5_c01126{bottom:888.862520pt;}
.y4_c01126{bottom:899.946120pt;}
.y3_c01126{bottom:951.584520pt;}
.h1e_c01126{height:15.027891pt;}
.h1d_c01126{height:15.431625pt;}
.h6_c01126{height:17.723176pt;}
.h25_c01126{height:20.008313pt;}
.h1c_c01126{height:20.372516pt;}
.h16_c01126{height:20.926125pt;}
.h5_c01126{height:21.476813pt;}
.h2_c01126{height:24.046688pt;}
.h12_c01126{height:24.964500pt;}
.hc_c01126{height:28.635750pt;}
.h9_c01126{height:29.538549pt;}
.h1b_c01126{height:32.123438pt;}
.hd_c01126{height:32.301501pt;}
.h8_c01126{height:34.201406pt;}
.h19_c01126{height:35.446236pt;}
.h17_c01126{height:36.290191pt;}
.h14_c01126{height:36.539250pt;}
.hf_c01126{height:38.822056pt;}
.h18_c01126{height:59.939001pt;}
.h20_c01126{height:60.208500pt;}
.ha_c01126{height:63.145684pt;}
.h4_c01126{height:63.566250pt;}
.h10_c01126{height:64.602829pt;}
.h7_c01126{height:64.948125pt;}
.h3_c01126{height:65.293594pt;}
.h11_c01126{height:65.984704pt;}
.he_c01126{height:67.734746pt;}
.h1f_c01126{height:68.748281pt;}
.h15_c01126{height:69.439391pt;}
.h22_c01126{height:69.611953pt;}
.h1a_c01126{height:69.784860pt;}
.h21_c01126{height:69.957422pt;}
.h13_c01126{height:70.488184pt;}
.hb_c01126{height:71.166735pt;}
.h23_c01126{height:77.385000pt;}
.h24_c01126{height:93.967673pt;}
.h1_c01126{height:986.666667pt;}
.h0_c01126{height:1122.666667pt;}
.w1_c01126{width:689.333333pt;}
.w0_c01126{width:793.333333pt;}
.x0_c01126{left:0.000000pt;}
.x2_c01126{left:42.677053pt;}
.x1_c01126{left:52.000000pt;}
.x75_c01126{left:74.427453pt;}
.x61_c01126{left:124.081453pt;}
.x3c_c01126{left:125.815053pt;}
.x19_c01126{left:127.165853pt;}
.x6_c01126{left:128.116253pt;}
.x3d_c01126{left:154.824253pt;}
.x1a_c01126{left:156.245453pt;}
.x70_c01126{left:164.543853pt;}
.x7_c01126{left:166.647053pt;}
.x42_c01126{left:169.313453pt;}
.x48_c01126{left:175.618653pt;}
.x6c_c01126{left:185.056653pt;}
.x1b_c01126{left:186.086253pt;}
.x43_c01126{left:191.062653pt;}
.x35_c01126{left:195.418653pt;}
.x4c_c01126{left:203.849053pt;}
.x44_c01126{left:211.205853pt;}
.x53_c01126{left:214.545453pt;}
.x1c_c01126{left:215.645453pt;}
.x12_c01126{left:216.776253pt;}
.x3e_c01126{left:217.682653pt;}
.x4d_c01126{left:221.581053pt;}
.x74_c01126{left:222.967053pt;}
.x76_c01126{left:224.075853pt;}
.x3f_c01126{left:234.578653pt;}
.x49_c01126{left:235.485053pt;}
.x8_c01126{left:236.409053pt;}
.x4e_c01126{left:240.721053pt;}
.x2a_c01126{left:244.958253pt;}
.x45_c01126{left:245.921853pt;}
.x4f_c01126{left:248.359453pt;}
.x77_c01126{left:252.429453pt;}
.x32_c01126{left:254.334653pt;}
.x1d_c01126{left:255.333453pt;}
.x7d_c01126{left:261.577053pt;}
.x67_c01126{left:263.328253pt;}
.x24_c01126{left:264.960653pt;}
.x9_c01126{left:266.258653pt;}
.x2b_c01126{left:274.781453pt;}
.x13_c01126{left:285.653853pt;}
.x46_c01126{left:293.881853pt;}
.xa_c01126{left:296.249053pt;}
.x4a_c01126{left:304.252653pt;}
.x78_c01126{left:311.398253pt;}
.x5c_c01126{left:314.051453pt;}
.x33_c01126{left:315.345053pt;}
.x40_c01126{left:323.216653pt;}
.x25_c01126{left:325.165853pt;}
.x2c_c01126{left:334.933853pt;}
.x7e_c01126{left:340.812253pt;}
.x26_c01126{left:343.368653pt;}
.xb_c01126{left:344.371853pt;}
.x63_c01126{left:353.308253pt;}
.x5b_c01126{left:363.151053pt;}
.x1e_c01126{left:364.158653pt;}
.x36_c01126{left:372.188653pt;}
.x34_c01126{left:373.601053pt;}
.x14_c01126{left:375.906653pt;}
.x64_c01126{left:381.697053pt;}
.x79_c01126{left:390.994253pt;}
.x71_c01126{left:401.158253pt;}
.x47_c01126{left:402.253853pt;}
.x62_c01126{left:411.577453pt;}
.x15_c01126{left:413.179053pt;}
.x7a_c01126{left:421.420253pt;}
.x54_c01126{left:423.373853pt;}
.x5f_c01126{left:431.729453pt;}
.xc_c01126{left:432.635853pt;}
.x50_c01126{left:440.943053pt;}
.x41_c01126{left:442.962653pt;}
.x5d_c01126{left:451.885853pt;}
.x6d_c01126{left:452.805453pt;}
.x68_c01126{left:461.310653pt;}
.xd_c01126{left:462.899053pt;}
.x55_c01126{left:470.392253pt;}
.x16_c01126{left:472.425053pt;}
.x72_c01126{left:479.597053pt;}
.x1f_c01126{left:480.802653pt;}
.x69_c01126{left:490.016253pt;}
.xe_c01126{left:491.309853pt;}
.x73_c01126{left:499.881053pt;}
.x17_c01126{left:501.856653pt;}
.x37_c01126{left:502.846653pt;}
.x60_c01126{left:509.574253pt;}
.x20_c01126{left:510.753453pt;}
.x6e_c01126{left:511.989853pt;}
.x39_c01126{left:519.835053pt;}
.x2d_c01126{left:521.273853pt;}
.x7b_c01126{left:528.168653pt;}
.x27_c01126{left:529.968253pt;}
.x18_c01126{left:531.354253pt;}
.x5e_c01126{left:538.966253pt;}
.x65_c01126{left:539.899053pt;}
.x21_c01126{left:540.858253pt;}
.x57_c01126{left:549.209453pt;}
.x28_c01126{left:551.246653pt;}
.x58_c01126{left:554.995453pt;}
.x6a_c01126{left:558.277853pt;}
.x7c_c01126{left:560.372253pt;}
.x51_c01126{left:569.506653pt;}
.x59_c01126{left:573.339053pt;}
.x29_c01126{left:579.054653pt;}
.xf_c01126{left:580.185453pt;}
.x2e_c01126{left:581.105053pt;}
.x4b_c01126{left:588.703853pt;}
.x2f_c01126{left:589.654253pt;}
.x22_c01126{left:599.030653pt;}
.x3a_c01126{left:600.328653pt;}
.x5a_c01126{left:602.145853pt;}
.x52_c01126{left:608.464253pt;}
.x10_c01126{left:610.096653pt;}
.x6f_c01126{left:616.753853pt;}
.x66_c01126{left:617.880253pt;}
.x23_c01126{left:620.269453pt;}
.x4_c01126{left:622.869853pt;}
.x5_c01126{left:624.577053pt;}
.x3_c01126{left:627.357853pt;}
.x38_c01126{left:628.647053pt;}
.x31_c01126{left:629.927453pt;}
.x56_c01126{left:631.172653pt;}
.x30_c01126{left:639.075053pt;}
.x6b_c01126{left:647.646253pt;}
.x3b_c01126{left:657.035853pt;}
.x11_c01126{left:664.177053pt;}
.x7f_c01126{left:680.091853pt;}
}





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

.ir_c01127:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01127{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01127;src:url('chunks/assets/font_8d99e481ff329cff6e55e23c.woff2')format("woff");}.ff1_c01127{font-family:ff1_c01127;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01127;src:url('chunks/assets/font_973125e0886aad4bff93eccc.woff2')format("woff");}.ff2_c01127{font-family:ff2_c01127;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01127;src:url('chunks/assets/font_6b98dfcb5375b033c02b3a7a.woff2')format("woff");}.ff3_c01127{font-family:ff3_c01127;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01127;src:url('chunks/assets/font_01e4e2d25ce79d124ba155c4.woff2')format("woff");}.ff4_c01127{font-family:ff4_c01127;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01127;src:url('chunks/assets/font_263ee059f9ac54ce77f5d6ff.woff2')format("woff");}.ff5_c01127{font-family:ff5_c01127;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m18_c01127{transform:matrix(0.051873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.051873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.051873,0.000000,0.000000,0.250000,0,0);}
.m1f_c01127{transform:matrix(0.065219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065219,0.000000,0.000000,0.250000,0,0);}
.m1a_c01127{transform:matrix(0.065447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065447,0.000000,0.000000,0.250000,0,0);}
.m1d_c01127{transform:matrix(0.074211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.074211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.074211,0.000000,0.000000,0.250000,0,0);}
.m1e_c01127{transform:matrix(0.074785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.074785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.074785,0.000000,0.000000,0.250000,0,0);}
.m1b_c01127{transform:matrix(0.082368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.082368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.082368,0.000000,0.000000,0.250000,0,0);}
.m20_c01127{transform:matrix(0.084240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084240,0.000000,0.000000,0.250000,0,0);}
.m19_c01127{transform:matrix(0.085777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085777,0.000000,0.000000,0.250000,0,0);}
.m3f_c01127{transform:matrix(0.106360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106360,0.000000,0.000000,0.250000,0,0);}
.ma0_c01127{transform:matrix(0.112580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112580,0.000000,0.000000,0.250000,0,0);}
.m26_c01127{transform:matrix(0.113470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113470,0.000000,0.000000,0.250000,0,0);}
.ma4_c01127{transform:matrix(0.119048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119048,0.000000,0.000000,0.250000,0,0);}
.ma1_c01127{transform:matrix(0.123255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123255,0.000000,0.000000,0.250000,0,0);}
.m25_c01127{transform:matrix(0.128858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128858,0.000000,0.000000,0.250000,0,0);}
.m27_c01127{transform:matrix(0.129151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129151,0.000000,0.000000,0.250000,0,0);}
.m1c_c01127{transform:matrix(0.129414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129414,0.000000,0.000000,0.250000,0,0);}
.m17_c01127{transform:matrix(0.129577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129577,0.000000,0.000000,0.250000,0,0);}
.m5f_c01127{transform:matrix(0.132543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132543,0.000000,0.000000,0.250000,0,0);}
.m3_c01127{transform:matrix(0.150539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150539,0.000000,0.000000,0.250000,0,0);}
.m7_c01127{transform:matrix(0.158755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158755,0.000000,0.000000,0.250000,0,0);}
.m2d_c01127{transform:matrix(0.158910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158910,0.000000,0.000000,0.250000,0,0);}
.ma3_c01127{transform:matrix(0.160375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160375,0.000000,0.000000,0.250000,0,0);}
.m2b_c01127{transform:matrix(0.164410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164410,0.000000,0.000000,0.250000,0,0);}
.m6c_c01127{transform:matrix(0.176870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176870,0.000000,0.000000,0.250000,0,0);}
.m29_c01127{transform:matrix(0.179662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179662,0.000000,0.000000,0.250000,0,0);}
.m70_c01127{transform:matrix(0.182163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182163,0.000000,0.000000,0.250000,0,0);}
.m16_c01127{transform:matrix(0.184548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184548,0.000000,0.000000,0.250000,0,0);}
.m54_c01127{transform:matrix(0.214667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214667,0.000000,0.000000,0.250000,0,0);}
.m3d_c01127{transform:matrix(0.218612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218612,0.000000,0.000000,0.250000,0,0);}
.m2c_c01127{transform:matrix(0.220480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220480,0.000000,0.000000,0.250000,0,0);}
.m68_c01127{transform:matrix(0.227743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227743,0.000000,0.000000,0.250000,0,0);}
.m40_c01127{transform:matrix(0.228002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228002,0.000000,0.000000,0.250000,0,0);}
.m7f_c01127{transform:matrix(0.232331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232331,0.000000,0.000000,0.250000,0,0);}
.m84_c01127{transform:matrix(0.243700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243700,0.000000,0.000000,0.250000,0,0);}
.m98_c01127{transform:matrix(0.246079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246079,0.000000,0.000000,0.250000,0,0);}
.m0_c01127{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01127{transform:matrix(0.251889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251889,0.000000,0.000000,0.250000,0,0);}
.m9b_c01127{transform:matrix(0.253938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253938,0.000000,0.000000,0.250000,0,0);}
.m88_c01127{transform:matrix(0.254377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254377,0.000000,0.000000,0.250000,0,0);}
.m31_c01127{transform:matrix(0.259916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259916,0.000000,0.000000,0.250000,0,0);}
.m9a_c01127{transform:matrix(0.259977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259977,0.000000,0.000000,0.250000,0,0);}
.m7d_c01127{transform:matrix(0.260062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260062,0.000000,0.000000,0.250000,0,0);}
.m8e_c01127{transform:matrix(0.260946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260946,0.000000,0.000000,0.250000,0,0);}
.m1_c01127{transform:matrix(0.263161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263161,0.000000,0.000000,0.250000,0,0);}
.m7c_c01127{transform:matrix(0.263219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263219,0.000000,0.000000,0.250000,0,0);}
.m95_c01127{transform:matrix(0.263548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263548,0.000000,0.000000,0.250000,0,0);}
.m11_c01127{transform:matrix(0.263909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263909,0.000000,0.000000,0.250000,0,0);}
.m8_c01127{transform:matrix(0.265464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265464,0.000000,0.000000,0.250000,0,0);}
.m30_c01127{transform:matrix(0.265517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265517,0.000000,0.000000,0.250000,0,0);}
.m2_c01127{transform:matrix(0.269035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269035,0.000000,0.000000,0.250000,0,0);}
.m8b_c01127{transform:matrix(0.269140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269140,0.000000,0.000000,0.250000,0,0);}
.m72_c01127{transform:matrix(0.271526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271526,0.000000,0.000000,0.250000,0,0);}
.m8d_c01127{transform:matrix(0.273035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273035,0.000000,0.000000,0.250000,0,0);}
.m38_c01127{transform:matrix(0.273396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273396,0.000000,0.000000,0.250000,0,0);}
.m2e_c01127{transform:matrix(0.273693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273693,0.000000,0.000000,0.250000,0,0);}
.m97_c01127{transform:matrix(0.275358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275358,0.000000,0.000000,0.250000,0,0);}
.m9f_c01127{transform:matrix(0.275373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275373,0.000000,0.000000,0.250000,0,0);}
.md_c01127{transform:matrix(0.275563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275563,0.000000,0.000000,0.250000,0,0);}
.m86_c01127{transform:matrix(0.275821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275821,0.000000,0.000000,0.250000,0,0);}
.mc_c01127{transform:matrix(0.275843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275843,0.000000,0.000000,0.250000,0,0);}
.m34_c01127{transform:matrix(0.276508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276508,0.000000,0.000000,0.250000,0,0);}
.m39_c01127{transform:matrix(0.276697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276697,0.000000,0.000000,0.250000,0,0);}
.m9c_c01127{transform:matrix(0.278436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278436,0.000000,0.000000,0.250000,0,0);}
.m6f_c01127{transform:matrix(0.279761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279761,0.000000,0.000000,0.250000,0,0);}
.m55_c01127{transform:matrix(0.280598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280598,0.000000,0.000000,0.250000,0,0);}
.m56_c01127{transform:matrix(0.280682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280682,0.000000,0.000000,0.250000,0,0);}
.ma2_c01127{transform:matrix(0.281672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281672,0.000000,0.000000,0.250000,0,0);}
.m78_c01127{transform:matrix(0.283031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283031,0.000000,0.000000,0.250000,0,0);}
.m7b_c01127{transform:matrix(0.283102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283102,0.000000,0.000000,0.250000,0,0);}
.m3b_c01127{transform:matrix(0.283338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283338,0.000000,0.000000,0.250000,0,0);}
.m66_c01127{transform:matrix(0.283782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283782,0.000000,0.000000,0.250000,0,0);}
.mb_c01127{transform:matrix(0.285045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285045,0.000000,0.000000,0.250000,0,0);}
.m52_c01127{transform:matrix(0.285699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285699,0.000000,0.000000,0.250000,0,0);}
.m81_c01127{transform:matrix(0.286052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286052,0.000000,0.000000,0.250000,0,0);}
.m6_c01127{transform:matrix(0.288185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288185,0.000000,0.000000,0.250000,0,0);}
.m53_c01127{transform:matrix(0.288210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288210,0.000000,0.000000,0.250000,0,0);}
.m3a_c01127{transform:matrix(0.288469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288469,0.000000,0.000000,0.250000,0,0);}
.m87_c01127{transform:matrix(0.288651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288651,0.000000,0.000000,0.250000,0,0);}
.m71_c01127{transform:matrix(0.288784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288784,0.000000,0.000000,0.250000,0,0);}
.m91_c01127{transform:matrix(0.289600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289600,0.000000,0.000000,0.250000,0,0);}
.m58_c01127{transform:matrix(0.290001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290001,0.000000,0.000000,0.250000,0,0);}
.m32_c01127{transform:matrix(0.291341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291341,0.000000,0.000000,0.250000,0,0);}
.m4b_c01127{transform:matrix(0.291400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291400,0.000000,0.000000,0.250000,0,0);}
.m37_c01127{transform:matrix(0.291791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291791,0.000000,0.000000,0.250000,0,0);}
.m73_c01127{transform:matrix(0.291960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291960,0.000000,0.000000,0.250000,0,0);}
.m33_c01127{transform:matrix(0.292290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292290,0.000000,0.000000,0.250000,0,0);}
.m94_c01127{transform:matrix(0.294245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294245,0.000000,0.000000,0.250000,0,0);}
.m62_c01127{transform:matrix(0.294365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294365,0.000000,0.000000,0.250000,0,0);}
.m6d_c01127{transform:matrix(0.296448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296448,0.000000,0.000000,0.250000,0,0);}
.m85_c01127{transform:matrix(0.296544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296544,0.000000,0.000000,0.250000,0,0);}
.m6e_c01127{transform:matrix(0.297003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297003,0.000000,0.000000,0.250000,0,0);}
.m80_c01127{transform:matrix(0.297182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297182,0.000000,0.000000,0.250000,0,0);}
.m82_c01127{transform:matrix(0.300511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300511,0.000000,0.000000,0.250000,0,0);}
.m4e_c01127{transform:matrix(0.301952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301952,0.000000,0.000000,0.250000,0,0);}
.m12_c01127{transform:matrix(0.302119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302119,0.000000,0.000000,0.250000,0,0);}
.m67_c01127{transform:matrix(0.302559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302559,0.000000,0.000000,0.250000,0,0);}
.m5c_c01127{transform:matrix(0.303154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303154,0.000000,0.000000,0.250000,0,0);}
.m5d_c01127{transform:matrix(0.304624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304624,0.000000,0.000000,0.250000,0,0);}
.m76_c01127{transform:matrix(0.304919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304919,0.000000,0.000000,0.250000,0,0);}
.m92_c01127{transform:matrix(0.306289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306289,0.000000,0.000000,0.250000,0,0);}
.m4_c01127{transform:matrix(0.307308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307308,0.000000,0.000000,0.250000,0,0);}
.m93_c01127{transform:matrix(0.307778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307778,0.000000,0.000000,0.250000,0,0);}
.m5a_c01127{transform:matrix(0.308342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308342,0.000000,0.000000,0.250000,0,0);}
.m77_c01127{transform:matrix(0.308667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308667,0.000000,0.000000,0.250000,0,0);}
.m83_c01127{transform:matrix(0.309472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309472,0.000000,0.000000,0.250000,0,0);}
.m44_c01127{transform:matrix(0.309912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309912,0.000000,0.000000,0.250000,0,0);}
.m65_c01127{transform:matrix(0.309953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309953,0.000000,0.000000,0.250000,0,0);}
.m3c_c01127{transform:matrix(0.310089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310089,0.000000,0.000000,0.250000,0,0);}
.m96_c01127{transform:matrix(0.310103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310103,0.000000,0.000000,0.250000,0,0);}
.m64_c01127{transform:matrix(0.314003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314003,0.000000,0.000000,0.250000,0,0);}
.mf_c01127{transform:matrix(0.314663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314663,0.000000,0.000000,0.250000,0,0);}
.m36_c01127{transform:matrix(0.317157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317157,0.000000,0.000000,0.250000,0,0);}
.m61_c01127{transform:matrix(0.318710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318710,0.000000,0.000000,0.250000,0,0);}
.m90_c01127{transform:matrix(0.319640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319640,0.000000,0.000000,0.250000,0,0);}
.me_c01127{transform:matrix(0.320920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320920,0.000000,0.000000,0.250000,0,0);}
.m75_c01127{transform:matrix(0.321104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321104,0.000000,0.000000,0.250000,0,0);}
.m10_c01127{transform:matrix(0.325255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325255,0.000000,0.000000,0.250000,0,0);}
.m3e_c01127{transform:matrix(0.326375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326375,0.000000,0.000000,0.250000,0,0);}
.m4d_c01127{transform:matrix(0.326915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326915,0.000000,0.000000,0.250000,0,0);}
.m69_c01127{transform:matrix(0.327998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327998,0.000000,0.000000,0.250000,0,0);}
.ma_c01127{transform:matrix(0.328135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328135,0.000000,0.000000,0.250000,0,0);}
.m2f_c01127{transform:matrix(0.328423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328423,0.000000,0.000000,0.250000,0,0);}
.m21_c01127{transform:matrix(0.331477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331477,0.000000,0.000000,0.250000,0,0);}
.m4c_c01127{transform:matrix(0.335236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335236,0.000000,0.000000,0.250000,0,0);}
.m8c_c01127{transform:matrix(0.336302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336302,0.000000,0.000000,0.250000,0,0);}
.m45_c01127{transform:matrix(0.337393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337393,0.000000,0.000000,0.250000,0,0);}
.m23_c01127{transform:matrix(0.341931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341931,0.000000,0.000000,0.250000,0,0);}
.m9d_c01127{transform:matrix(0.342258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342258,0.000000,0.000000,0.250000,0,0);}
.m8a_c01127{transform:matrix(0.342386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342386,0.000000,0.000000,0.250000,0,0);}
.m6b_c01127{transform:matrix(0.344967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344967,0.000000,0.000000,0.250000,0,0);}
.m7a_c01127{transform:matrix(0.344993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344993,0.000000,0.000000,0.250000,0,0);}
.m8f_c01127{transform:matrix(0.345093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345093,0.000000,0.000000,0.250000,0,0);}
.m4a_c01127{transform:matrix(0.345485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345485,0.000000,0.000000,0.250000,0,0);}
.m50_c01127{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);}
.m74_c01127{transform:matrix(0.351382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351382,0.000000,0.000000,0.250000,0,0);}
.m79_c01127{transform:matrix(0.351620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351620,0.000000,0.000000,0.250000,0,0);}
.m5e_c01127{transform:matrix(0.351862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351862,0.000000,0.000000,0.250000,0,0);}
.m5b_c01127{transform:matrix(0.351963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351963,0.000000,0.000000,0.250000,0,0);}
.m99_c01127{transform:matrix(0.357499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357499,0.000000,0.000000,0.250000,0,0);}
.m63_c01127{transform:matrix(0.357855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357855,0.000000,0.000000,0.250000,0,0);}
.m49_c01127{transform:matrix(0.359013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359013,0.000000,0.000000,0.250000,0,0);}
.m7e_c01127{transform:matrix(0.363602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363602,0.000000,0.000000,0.250000,0,0);}
.m6a_c01127{transform:matrix(0.364776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364776,0.000000,0.000000,0.250000,0,0);}
.m89_c01127{transform:matrix(0.364802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364802,0.000000,0.000000,0.250000,0,0);}
.m5_c01127{transform:matrix(0.365097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365097,0.000000,0.000000,0.250000,0,0);}
.m28_c01127{transform:matrix(0.371827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371827,0.000000,0.000000,0.250000,0,0);}
.m59_c01127{transform:matrix(0.372776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372776,0.000000,0.000000,0.250000,0,0);}
.m35_c01127{transform:matrix(0.391173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391173,0.000000,0.000000,0.250000,0,0);}
.m51_c01127{transform:matrix(0.394823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394823,0.000000,0.000000,0.250000,0,0);}
.m57_c01127{transform:matrix(0.397482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397482,0.000000,0.000000,0.250000,0,0);}
.m4f_c01127{transform:matrix(0.399072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399072,0.000000,0.000000,0.250000,0,0);}
.m60_c01127{transform:matrix(0.405507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405507,0.000000,0.000000,0.250000,0,0);}
.m9e_c01127{transform:matrix(0.410303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410303,0.000000,0.000000,0.250000,0,0);}
.m46_c01127{transform:matrix(0.420916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420916,0.000000,0.000000,0.250000,0,0);}
.m42_c01127{transform:matrix(0.501763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501763,0.000000,0.000000,0.250000,0,0);}
.m2a_c01127{transform:matrix(0.619991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.619991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.619991,0.000000,0.000000,0.250000,0,0);}
.m24_c01127{transform:matrix(0.620304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620304,0.000000,0.000000,0.250000,0,0);}
.m22_c01127{transform:matrix(0.706271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.706271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.706271,0.000000,0.000000,0.250000,0,0);}
.m47_c01127{transform:matrix(0.813494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.813494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.813494,0.000000,0.000000,0.250000,0,0);}
.m14_c01127{transform:matrix(0.845609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.845609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.845609,0.000000,0.000000,0.250000,0,0);}
.m43_c01127{transform:matrix(0.906790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.906790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.906790,0.000000,0.000000,0.250000,0,0);}
.m48_c01127{transform:matrix(1.014712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.014712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.014712,0.000000,0.000000,0.250000,0,0);}
.m41_c01127{transform:matrix(1.148278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.148278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.148278,0.000000,0.000000,0.250000,0,0);}
.m15_c01127{transform:matrix(1.537464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.537464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.537464,0.000000,0.000000,0.250000,0,0);}
.m13_c01127{transform:matrix(1.882426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.882426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.882426,0.000000,0.000000,0.250000,0,0);}
.v0_c01127{vertical-align:0.000000px;}
.v1_c01127{vertical-align:2.835360px;}
.ls10_c01127{letter-spacing:-3.998617px;}
.ls2d_c01127{letter-spacing:-3.645180px;}
.lsc_c01127{letter-spacing:-2.619540px;}
.ls3c_c01127{letter-spacing:-2.584890px;}
.ls19_c01127{letter-spacing:-2.577967px;}
.lsa_c01127{letter-spacing:-2.550240px;}
.ls32_c01127{letter-spacing:-2.321550px;}
.ls36_c01127{letter-spacing:-2.224530px;}
.ls15_c01127{letter-spacing:-1.864170px;}
.ls2c_c01127{letter-spacing:-1.829520px;}
.ls1e_c01127{letter-spacing:-1.053360px;}
.ls25_c01127{letter-spacing:-0.821151px;}
.ls13_c01127{letter-spacing:-0.673596px;}
.ls1d_c01127{letter-spacing:-0.134719px;}
.ls20_c01127{letter-spacing:-0.126403px;}
.ls3d_c01127{letter-spacing:-0.103396px;}
.ls6_c01127{letter-spacing:0.000000px;}
.ls2_c01127{letter-spacing:0.043243px;}
.ls17_c01127{letter-spacing:0.090545px;}
.ls9_c01127{letter-spacing:0.269597px;}
.lsf_c01127{letter-spacing:0.287110px;}
.ls21_c01127{letter-spacing:0.485110px;}
.ls22_c01127{letter-spacing:0.554400px;}
.ls26_c01127{letter-spacing:0.722710px;}
.ls24_c01127{letter-spacing:0.792000px;}
.ls14_c01127{letter-spacing:0.821700px;}
.ls0_c01127{letter-spacing:0.839916px;}
.ls23_c01127{letter-spacing:1.346400px;}
.ls12_c01127{letter-spacing:1.386000px;}
.ls1f_c01127{letter-spacing:1.504800px;}
.ls30_c01127{letter-spacing:1.661537px;}
.ls1b_c01127{letter-spacing:1.667085px;}
.ls37_c01127{letter-spacing:1.712700px;}
.lse_c01127{letter-spacing:1.758834px;}
.ls39_c01127{letter-spacing:1.811700px;}
.ls5_c01127{letter-spacing:2.215382px;}
.ls16_c01127{letter-spacing:2.663100px;}
.ls2a_c01127{letter-spacing:2.685520px;}
.ls38_c01127{letter-spacing:2.692810px;}
.ls34_c01127{letter-spacing:2.811600px;}
.ls4_c01127{letter-spacing:2.978791px;}
.ls35_c01127{letter-spacing:3.177900px;}
.lsd_c01127{letter-spacing:3.306610px;}
.ls2f_c01127{letter-spacing:3.445200px;}
.ls2e_c01127{letter-spacing:3.484810px;}
.ls27_c01127{letter-spacing:3.494700px;}
.ls3e_c01127{letter-spacing:3.638616px;}
.lsb_c01127{letter-spacing:3.643200px;}
.ls3b_c01127{letter-spacing:3.663000px;}
.ls1a_c01127{letter-spacing:3.682810px;}
.ls3_c01127{letter-spacing:3.686491px;}
.ls3a_c01127{letter-spacing:3.692700px;}
.ls29_c01127{letter-spacing:3.722400px;}
.ls8_c01127{letter-spacing:3.742200px;}
.ls33_c01127{letter-spacing:3.821400px;}
.ls2b_c01127{letter-spacing:3.910500px;}
.ls7_c01127{letter-spacing:4.078810px;}
.ls28_c01127{letter-spacing:4.118400px;}
.ls1c_c01127{letter-spacing:4.296610px;}
.ls1_c01127{letter-spacing:20.817720px;}
.ls40_c01127{letter-spacing:29.937798px;}
.ls11_c01127{letter-spacing:32.788998px;}
.ls31_c01127{letter-spacing:59.875398px;}
.ls3f_c01127{letter-spacing:61.300998px;}
.ls18_c01127{letter-spacing:67.003200px;}
.sc__c01127{text-shadow:none;}
.sc0_c01127{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01127{-webkit-text-stroke:0px transparent;}
.sc0_c01127{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01127{word-spacing:-25.169541px;}
.ws1_c01127{word-spacing:-18.711000px;}
.ws2_c01127{word-spacing:0.000000px;}
._6_c01127{margin-left:-22.370832px;}
._0_c01127{margin-left:-19.079137px;}
._8_c01127{margin-left:-15.502212px;}
._7_c01127{margin-left:-14.060772px;}
._15_c01127{margin-left:-9.353569px;}
._3_c01127{margin-left:-5.383224px;}
._13_c01127{margin-left:-3.753063px;}
._a_c01127{margin-left:-2.371746px;}
._9_c01127{width:2.942280px;}
._b_c01127{width:5.326992px;}
._4_c01127{width:6.431040px;}
._2_c01127{width:12.550714px;}
._14_c01127{width:23.823439px;}
._1_c01127{width:25.019836px;}
._e_c01127{width:26.749506px;}
._11_c01127{width:28.802664px;}
._f_c01127{width:30.246480px;}
._17_c01127{width:31.552888px;}
._10_c01127{width:38.702664px;}
._d_c01127{width:42.572376px;}
._12_c01127{width:45.987084px;}
._c_c01127{width:57.694032px;}
._16_c01127{width:59.654826px;}
._5_c01127{width:73.119816px;}
.fc0_c01127{color:transparent;}
.fs6_c01127{font-size:5.742198px;}
.fs10_c01127{font-size:9.702198px;}
.fsb_c01127{font-size:10.296000px;}
.fs11_c01127{font-size:11.088000px;}
.fs15_c01127{font-size:14.454198px;}
.fs13_c01127{font-size:15.840000px;}
.fs9_c01127{font-size:16.434000px;}
.fs23_c01127{font-size:22.176000px;}
.fs2d_c01127{font-size:25.344000px;}
.fs12_c01127{font-size:26.928000px;}
.fs0_c01127{font-size:27.720000px;}
.fs2_c01127{font-size:28.314000px;}
.fs2f_c01127{font-size:29.937798px;}
.fsf_c01127{font-size:30.096000px;}
.fs14_c01127{font-size:32.076198px;}
.fs8_c01127{font-size:32.788998px;}
.fs25_c01127{font-size:34.254000px;}
.fs28_c01127{font-size:36.234000px;}
.fs27_c01127{font-size:42.768000px;}
.fs1b_c01127{font-size:52.272000px;}
.fsa_c01127{font-size:53.262000px;}
.fs26_c01127{font-size:53.856198px;}
.fs22_c01127{font-size:56.232000px;}
.fs1f_c01127{font-size:59.875398px;}
.fs2e_c01127{font-size:61.300998px;}
.fs24_c01127{font-size:63.558000px;}
.fs5_c01127{font-size:66.132198px;}
.fs20_c01127{font-size:66.330000px;}
.fsd_c01127{font-size:67.003200px;}
.fs2c_c01127{font-size:67.320000px;}
.fs30_c01127{font-size:68.112198px;}
.fs1e_c01127{font-size:68.904000px;}
.fs1d_c01127{font-size:69.696198px;}
.fs16_c01127{font-size:69.894000px;}
.fs29_c01127{font-size:70.092198px;}
.fs4_c01127{font-size:72.864000px;}
.fs2b_c01127{font-size:73.260000px;}
.fse_c01127{font-size:73.656198px;}
.fs2a_c01127{font-size:73.854000px;}
.fs18_c01127{font-size:74.448000px;}
.fs3_c01127{font-size:74.844000px;}
.fs21_c01127{font-size:76.428000px;}
.fs19_c01127{font-size:77.616198px;}
.fs1a_c01127{font-size:78.210000px;}
.fs1_c01127{font-size:81.576198px;}
.fs17_c01127{font-size:82.368000px;}
.fsc_c01127{font-size:85.932198px;}
.fs1c_c01127{font-size:104.148000px;}
.fs7_c01127{font-size:114.246198px;}
.y0_c01127{bottom:0.000000px;}
.y1_c01127{bottom:76.500000px;}
.y1e_c01127{bottom:162.786735px;}
.y1f_c01127{bottom:168.845535px;}
.y1d_c01127{bottom:179.181135px;}
.y1c_c01127{bottom:192.006585px;}
.y1b_c01127{bottom:228.359385px;}
.y15_c01127{bottom:236.912985px;}
.y19_c01127{bottom:261.509535px;}
.y1a_c01127{bottom:266.494185px;}
.y2_c01127{bottom:291.090735px;}
.y18_c01127{bottom:293.224185px;}
.y17_c01127{bottom:324.943785px;}
.y16_c01127{bottom:357.019785px;}
.y14_c01127{bottom:389.457135px;}
.y13_c01127{bottom:452.183535px;}
.y12_c01127{bottom:580.843935px;}
.y11_c01127{bottom:613.627785px;}
.y10_c01127{bottom:645.708735px;}
.yf_c01127{bottom:678.136185px;}
.ye_c01127{bottom:707.360985px;}
.yc_c01127{bottom:709.860735px;}
.yd_c01127{bottom:711.286335px;}
.yb_c01127{bottom:774.364185px;}
.ya_c01127{bottom:836.734185px;}
.y9_c01127{bottom:868.458735px;}
.y8_c01127{bottom:897.678585px;}
.y7_c01127{bottom:901.955385px;}
.y6_c01127{bottom:934.036335px;}
.y5_c01127{bottom:951.138585px;}
.y4_c01127{bottom:1013.157135px;}
.y3_c01127{bottom:1075.165785px;}
.y20_c01127{bottom:1107.954585px;}
.h8_c01127{height:5.635653px;}
.h12_c01127{height:9.522177px;}
.h13_c01127{height:11.564438px;}
.h17_c01127{height:14.186005px;}
.h15_c01127{height:15.546094px;}
.hb_c01127{height:16.129072px;}
.h31_c01127{height:19.938573px;}
.ha_c01127{height:21.837473px;}
.h25_c01127{height:23.128875px;}
.h2f_c01127{height:24.873750px;}
.h14_c01127{height:28.085063px;}
.h2_c01127{height:28.911094px;}
.h4_c01127{height:29.530617px;}
.h11_c01127{height:31.389188px;}
.h16_c01127{height:33.454472px;}
.h27_c01127{height:35.725852px;}
.h2a_c01127{height:37.790930px;}
.h21_c01127{height:39.877015px;}
.h30_c01127{height:40.826465px;}
.h29_c01127{height:41.974453px;}
.he_c01127{height:44.624131px;}
.h1d_c01127{height:51.302109px;}
.h24_c01127{height:55.188633px;}
.hc_c01127{height:55.550602px;}
.h28_c01127{height:56.170332px;}
.h2e_c01127{height:66.070898px;}
.h22_c01127{height:66.168062px;}
.h26_c01127{height:66.289008px;}
.h20_c01127{height:67.625508px;}
.h18_c01127{height:68.597139px;}
.h7_c01127{height:68.973816px;}
.h32_c01127{height:71.038894px;}
.h6_c01127{height:71.512031px;}
.hf_c01127{height:72.289530px;}
.h2c_c01127{height:72.483662px;}
.h1f_c01127{height:72.690957px;}
.h1a_c01127{height:73.066641px;}
.h2b_c01127{height:73.103972px;}
.h5_c01127{height:73.455293px;}
.h23_c01127{height:74.972584px;}
.h2d_c01127{height:76.407891px;}
.h1c_c01127{height:76.758838px;}
.h3_c01127{height:80.062577px;}
.h19_c01127{height:80.839688px;}
.h1b_c01127{height:80.951269px;}
.h10_c01127{height:84.337753px;}
.hd_c01127{height:87.173113px;}
.h1e_c01127{height:108.623109px;}
.h9_c01127{height:119.155214px;}
.h1_c01127{height:1110.000000px;}
.h0_c01127{height:1263.000000px;}
.w1_c01127{width:775.500000px;}
.w0_c01127{width:892.500000px;}
.x0_c01127{left:0.000000px;}
.x1_c01127{left:58.500000px;}
.x2_c01127{left:82.206285px;}
.x6e_c01127{left:91.225185px;}
.x43_c01127{left:92.299335px;}
.x6_c01127{left:93.368535px;}
.x72_c01127{left:106.109835px;}
.x44_c01127{left:146.006835px;}
.x5d_c01127{left:147.125535px;}
.x7_c01127{left:148.204635px;}
.x18_c01127{left:159.644085px;}
.x7d_c01127{left:170.098485px;}
.x77_c01127{left:179.750985px;}
.x46_c01127{left:181.136985px;}
.x8_c01127{left:184.012935px;}
.x19_c01127{left:186.997785px;}
.x1a_c01127{left:190.987485px;}
.x11_c01127{left:192.338835px;}
.x5e_c01127{left:203.649585px;}
.x9_c01127{left:205.302885px;}
.x3d_c01127{left:215.257335px;}
.x1b_c01127{left:225.375135px;}
.x45_c01127{left:235.869135px;}
.x59_c01127{left:237.052185px;}
.x79_c01127{left:238.354035px;}
.x6a_c01127{left:247.818435px;}
.x1c_c01127{left:252.827835px;}
.x12_c01127{left:259.599435px;}
.x81_c01127{left:269.935035px;}
.xa_c01127{left:271.271535px;}
.x78_c01127{left:272.513985px;}
.x5f_c01127{left:281.344785px;}
.x5_c01127{left:284.933535px;}
.x1d_c01127{left:291.170535px;}
.x13_c01127{left:292.318935px;}
.xb_c01127{left:304.649385px;}
.x73_c01127{left:312.712935px;}
.x63_c01127{left:314.499885px;}
.x5a_c01127{left:315.519585px;}
.x56_c01127{left:325.147335px;}
.x1e_c01127{left:328.151985px;}
.x1f_c01127{left:330.661635px;}
.x7a_c01127{left:334.611735px;}
.x6f_c01127{left:336.908535px;}
.x20_c01127{left:340.571535px;}
.x3e_c01127{left:345.709635px;}
.xc_c01127{left:358.064835px;}
.x47_c01127{left:360.109185px;}
.x21_c01127{left:361.381335px;}
.x64_c01127{left:370.667535px;}
.x7e_c01127{left:379.394385px;}
.x14_c01127{left:381.191235px;}
.x22_c01127{left:387.903435px;}
.x82_c01127{left:389.888385px;}
.xd_c01127{left:392.289135px;}
.x74_c01127{left:394.665135px;}
.x23_c01127{left:397.352985px;}
.x24_c01127{left:399.738885px;}
.x6b_c01127{left:401.545635px;}
.x65_c01127{left:403.916685px;}
.x25_c01127{left:406.708485px;}
.x60_c01127{left:413.737485px;}
.x26_c01127{left:422.597985px;}
.x4a_c01127{left:423.612735px;}
.x27_c01127{left:429.428985px;}
.x28_c01127{left:431.151585px;}
.x57_c01127{left:436.784685px;}
.x4b_c01127{left:446.744085px;}
.x48_c01127{left:448.496385px;}
.x4c_c01127{left:450.377385px;}
.x29_c01127{left:453.683985px;}
.x2a_c01127{left:456.183735px;}
.x7f_c01127{left:458.153835px;}
.x70_c01127{left:459.500235px;}
.x2b_c01127{left:479.235885px;}
.x3f_c01127{left:481.582185px;}
.xe_c01127{left:483.869085px;}
.x6c_c01127{left:490.695135px;}
.x66_c01127{left:492.655335px;}
.x2c_c01127{left:496.224285px;}
.x2d_c01127{left:503.035485px;}
.x4_c01127{left:504.896685px;}
.x7b_c01127{left:512.965185px;}
.x40_c01127{left:515.756985px;}
.x67_c01127{left:523.889835px;}
.x15_c01127{left:526.508385px;}
.x76_c01127{left:536.111385px;}
.x2e_c01127{left:546.318285px;}
.x4d_c01127{left:548.610135px;}
.x2f_c01127{left:557.277585px;}
.xf_c01127{left:558.346785px;}
.x30_c01127{left:560.836635px;}
.x68_c01127{left:568.405185px;}
.x61_c01127{left:569.721885px;}
.x4e_c01127{left:579.067485px;}
.x4f_c01127{left:583.819485px;}
.x31_c01127{left:586.438035px;}
.x32_c01127{left:588.932835px;}
.x41_c01127{left:590.858385px;}
.x6d_c01127{left:592.472085px;}
.x33_c01127{left:596.427135px;}
.x50_c01127{left:597.991335px;}
.x16_c01127{left:601.495935px;}
.x51_c01127{left:605.045085px;}
.x34_c01127{left:606.643935px;}
.x80_c01127{left:609.663435px;}
.x35_c01127{left:612.098835px;}
.x69_c01127{left:614.172885px;}
.x36_c01127{left:622.800735px;}
.x5b_c01127{left:623.988735px;}
.x52_c01127{left:627.859635px;}
.x58_c01127{left:636.279585px;}
.x37_c01127{left:639.462435px;}
.x53_c01127{left:646.719135px;}
.x42_c01127{left:657.925935px;}
.x75_c01127{left:659.688135px;}
.x38_c01127{left:663.242235px;}
.x7c_c01127{left:668.909985px;}
.x5c_c01127{left:680.027685px;}
.x10_c01127{left:681.631485px;}
.x39_c01127{left:688.294185px;}
.x17_c01127{left:690.561285px;}
.x49_c01127{left:692.041335px;}
.x3a_c01127{left:694.961835px;}
.x62_c01127{left:701.946285px;}
.x54_c01127{left:703.168935px;}
.x55_c01127{left:707.490285px;}
.x3b_c01127{left:713.380785px;}
.x3_c01127{left:716.093385px;}
.x3c_c01127{left:720.226635px;}
.x71_c01127{left:734.136135px;}
.x83_c01127{left:775.448835px;}
@media print{
.v0_c01127{vertical-align:0.000000pt;}
.v1_c01127{vertical-align:2.520320pt;}
.ls10_c01127{letter-spacing:-3.554326pt;}
.ls2d_c01127{letter-spacing:-3.240160pt;}
.lsc_c01127{letter-spacing:-2.328480pt;}
.ls3c_c01127{letter-spacing:-2.297680pt;}
.ls19_c01127{letter-spacing:-2.291526pt;}
.lsa_c01127{letter-spacing:-2.266880pt;}
.ls32_c01127{letter-spacing:-2.063600pt;}
.ls36_c01127{letter-spacing:-1.977360pt;}
.ls15_c01127{letter-spacing:-1.657040pt;}
.ls2c_c01127{letter-spacing:-1.626240pt;}
.ls1e_c01127{letter-spacing:-0.936320pt;}
.ls25_c01127{letter-spacing:-0.729912pt;}
.ls13_c01127{letter-spacing:-0.598752pt;}
.ls1d_c01127{letter-spacing:-0.119750pt;}
.ls20_c01127{letter-spacing:-0.112358pt;}
.ls3d_c01127{letter-spacing:-0.091907pt;}
.ls6_c01127{letter-spacing:0.000000pt;}
.ls2_c01127{letter-spacing:0.038438pt;}
.ls17_c01127{letter-spacing:0.080485pt;}
.ls9_c01127{letter-spacing:0.239642pt;}
.lsf_c01127{letter-spacing:0.255209pt;}
.ls21_c01127{letter-spacing:0.431209pt;}
.ls22_c01127{letter-spacing:0.492800pt;}
.ls26_c01127{letter-spacing:0.642409pt;}
.ls24_c01127{letter-spacing:0.704000pt;}
.ls14_c01127{letter-spacing:0.730400pt;}
.ls0_c01127{letter-spacing:0.746592pt;}
.ls23_c01127{letter-spacing:1.196800pt;}
.ls12_c01127{letter-spacing:1.232000pt;}
.ls1f_c01127{letter-spacing:1.337600pt;}
.ls30_c01127{letter-spacing:1.476922pt;}
.ls1b_c01127{letter-spacing:1.481853pt;}
.ls37_c01127{letter-spacing:1.522400pt;}
.lse_c01127{letter-spacing:1.563408pt;}
.ls39_c01127{letter-spacing:1.610400pt;}
.ls5_c01127{letter-spacing:1.969229pt;}
.ls16_c01127{letter-spacing:2.367200pt;}
.ls2a_c01127{letter-spacing:2.387129pt;}
.ls38_c01127{letter-spacing:2.393609pt;}
.ls34_c01127{letter-spacing:2.499200pt;}
.ls4_c01127{letter-spacing:2.647814pt;}
.ls35_c01127{letter-spacing:2.824800pt;}
.lsd_c01127{letter-spacing:2.939209pt;}
.ls2f_c01127{letter-spacing:3.062400pt;}
.ls2e_c01127{letter-spacing:3.097609pt;}
.ls27_c01127{letter-spacing:3.106400pt;}
.ls3e_c01127{letter-spacing:3.234325pt;}
.lsb_c01127{letter-spacing:3.238400pt;}
.ls3b_c01127{letter-spacing:3.256000pt;}
.ls1a_c01127{letter-spacing:3.273609pt;}
.ls3_c01127{letter-spacing:3.276881pt;}
.ls3a_c01127{letter-spacing:3.282400pt;}
.ls29_c01127{letter-spacing:3.308800pt;}
.ls8_c01127{letter-spacing:3.326400pt;}
.ls33_c01127{letter-spacing:3.396800pt;}
.ls2b_c01127{letter-spacing:3.476000pt;}
.ls7_c01127{letter-spacing:3.625609pt;}
.ls28_c01127{letter-spacing:3.660800pt;}
.ls1c_c01127{letter-spacing:3.819209pt;}
.ls1_c01127{letter-spacing:18.504640pt;}
.ls40_c01127{letter-spacing:26.611376pt;}
.ls11_c01127{letter-spacing:29.145776pt;}
.ls31_c01127{letter-spacing:53.222576pt;}
.ls3f_c01127{letter-spacing:54.489776pt;}
.ls18_c01127{letter-spacing:59.558400pt;}
.ws0_c01127{word-spacing:-22.372925pt;}
.ws1_c01127{word-spacing:-16.632000pt;}
.ws2_c01127{word-spacing:0.000000pt;}
._6_c01127{margin-left:-19.885184pt;}
._0_c01127{margin-left:-16.959233pt;}
._8_c01127{margin-left:-13.779744pt;}
._7_c01127{margin-left:-12.498464pt;}
._15_c01127{margin-left:-8.314284pt;}
._3_c01127{margin-left:-4.785088pt;}
._13_c01127{margin-left:-3.336056pt;}
._a_c01127{margin-left:-2.108219pt;}
._9_c01127{width:2.615360pt;}
._b_c01127{width:4.735104pt;}
._4_c01127{width:5.716480pt;}
._2_c01127{width:11.156190pt;}
._14_c01127{width:21.176390pt;}
._1_c01127{width:22.239854pt;}
._e_c01127{width:23.777339pt;}
._11_c01127{width:25.602368pt;}
._f_c01127{width:26.885760pt;}
._17_c01127{width:28.047012pt;}
._10_c01127{width:34.402368pt;}
._d_c01127{width:37.842112pt;}
._12_c01127{width:40.877408pt;}
._c_c01127{width:51.283584pt;}
._16_c01127{width:53.026512pt;}
._5_c01127{width:64.995392pt;}
.fs6_c01127{font-size:5.104176pt;}
.fs10_c01127{font-size:8.624176pt;}
.fsb_c01127{font-size:9.152000pt;}
.fs11_c01127{font-size:9.856000pt;}
.fs15_c01127{font-size:12.848176pt;}
.fs13_c01127{font-size:14.080000pt;}
.fs9_c01127{font-size:14.608000pt;}
.fs23_c01127{font-size:19.712000pt;}
.fs2d_c01127{font-size:22.528000pt;}
.fs12_c01127{font-size:23.936000pt;}
.fs0_c01127{font-size:24.640000pt;}
.fs2_c01127{font-size:25.168000pt;}
.fs2f_c01127{font-size:26.611376pt;}
.fsf_c01127{font-size:26.752000pt;}
.fs14_c01127{font-size:28.512176pt;}
.fs8_c01127{font-size:29.145776pt;}
.fs25_c01127{font-size:30.448000pt;}
.fs28_c01127{font-size:32.208000pt;}
.fs27_c01127{font-size:38.016000pt;}
.fs1b_c01127{font-size:46.464000pt;}
.fsa_c01127{font-size:47.344000pt;}
.fs26_c01127{font-size:47.872176pt;}
.fs22_c01127{font-size:49.984000pt;}
.fs1f_c01127{font-size:53.222576pt;}
.fs2e_c01127{font-size:54.489776pt;}
.fs24_c01127{font-size:56.496000pt;}
.fs5_c01127{font-size:58.784176pt;}
.fs20_c01127{font-size:58.960000pt;}
.fsd_c01127{font-size:59.558400pt;}
.fs2c_c01127{font-size:59.840000pt;}
.fs30_c01127{font-size:60.544176pt;}
.fs1e_c01127{font-size:61.248000pt;}
.fs1d_c01127{font-size:61.952176pt;}
.fs16_c01127{font-size:62.128000pt;}
.fs29_c01127{font-size:62.304176pt;}
.fs4_c01127{font-size:64.768000pt;}
.fs2b_c01127{font-size:65.120000pt;}
.fse_c01127{font-size:65.472176pt;}
.fs2a_c01127{font-size:65.648000pt;}
.fs18_c01127{font-size:66.176000pt;}
.fs3_c01127{font-size:66.528000pt;}
.fs21_c01127{font-size:67.936000pt;}
.fs19_c01127{font-size:68.992176pt;}
.fs1a_c01127{font-size:69.520000pt;}
.fs1_c01127{font-size:72.512176pt;}
.fs17_c01127{font-size:73.216000pt;}
.fsc_c01127{font-size:76.384176pt;}
.fs1c_c01127{font-size:92.576000pt;}
.fs7_c01127{font-size:101.552176pt;}
.y0_c01127{bottom:0.000000pt;}
.y1_c01127{bottom:68.000000pt;}
.y1e_c01127{bottom:144.699320pt;}
.y1f_c01127{bottom:150.084920pt;}
.y1d_c01127{bottom:159.272120pt;}
.y1c_c01127{bottom:170.672520pt;}
.y1b_c01127{bottom:202.986120pt;}
.y15_c01127{bottom:210.589320pt;}
.y19_c01127{bottom:232.452920pt;}
.y1a_c01127{bottom:236.883720pt;}
.y2_c01127{bottom:258.747320pt;}
.y18_c01127{bottom:260.643720pt;}
.y17_c01127{bottom:288.838920pt;}
.y16_c01127{bottom:317.350920pt;}
.y14_c01127{bottom:346.184120pt;}
.y13_c01127{bottom:401.940920pt;}
.y12_c01127{bottom:516.305720pt;}
.y11_c01127{bottom:545.446920pt;}
.y10_c01127{bottom:573.963320pt;}
.yf_c01127{bottom:602.787720pt;}
.ye_c01127{bottom:628.765320pt;}
.yc_c01127{bottom:630.987320pt;}
.yd_c01127{bottom:632.254520pt;}
.yb_c01127{bottom:688.323720pt;}
.ya_c01127{bottom:743.763720pt;}
.y9_c01127{bottom:771.963320pt;}
.y8_c01127{bottom:797.936520pt;}
.y7_c01127{bottom:801.738120pt;}
.y6_c01127{bottom:830.254520pt;}
.y5_c01127{bottom:845.456520pt;}
.y4_c01127{bottom:900.584120pt;}
.y3_c01127{bottom:955.702920pt;}
.y20_c01127{bottom:984.848520pt;}
.h8_c01127{height:5.009470pt;}
.h12_c01127{height:8.464157pt;}
.h13_c01127{height:10.279500pt;}
.h17_c01127{height:12.609782pt;}
.h15_c01127{height:13.818750pt;}
.hb_c01127{height:14.336953pt;}
.h31_c01127{height:17.723176pt;}
.ha_c01127{height:19.411087pt;}
.h25_c01127{height:20.559000pt;}
.h2f_c01127{height:22.110000pt;}
.h14_c01127{height:24.964500pt;}
.h2_c01127{height:25.698750pt;}
.h4_c01127{height:26.249438pt;}
.h11_c01127{height:27.901500pt;}
.h16_c01127{height:29.737309pt;}
.h27_c01127{height:31.756313pt;}
.h2a_c01127{height:33.591938pt;}
.h21_c01127{height:35.446236pt;}
.h30_c01127{height:36.290191pt;}
.h29_c01127{height:37.310625pt;}
.he_c01127{height:39.665894pt;}
.h1d_c01127{height:45.601875pt;}
.h24_c01127{height:49.056562pt;}
.hc_c01127{height:49.378312pt;}
.h28_c01127{height:49.929184pt;}
.h2e_c01127{height:58.729688pt;}
.h22_c01127{height:58.816055pt;}
.h26_c01127{height:58.923563pt;}
.h20_c01127{height:60.111562pt;}
.h18_c01127{height:60.975234pt;}
.h7_c01127{height:61.310059pt;}
.h32_c01127{height:63.145684pt;}
.h6_c01127{height:63.566250pt;}
.hf_c01127{height:64.257360pt;}
.h2c_c01127{height:64.429922pt;}
.h1f_c01127{height:64.614184pt;}
.h1a_c01127{height:64.948125pt;}
.h2b_c01127{height:64.981309pt;}
.h5_c01127{height:65.293594pt;}
.h23_c01127{height:66.642297pt;}
.h2d_c01127{height:67.918125pt;}
.h1c_c01127{height:68.230078pt;}
.h3_c01127{height:71.166735pt;}
.h19_c01127{height:71.857500pt;}
.h1b_c01127{height:71.956684pt;}
.h10_c01127{height:74.966891pt;}
.hd_c01127{height:77.487211pt;}
.h1e_c01127{height:96.553875pt;}
.h9_c01127{height:105.915746pt;}
.h1_c01127{height:986.666667pt;}
.h0_c01127{height:1122.666667pt;}
.w1_c01127{width:689.333333pt;}
.w0_c01127{width:793.333333pt;}
.x0_c01127{left:0.000000pt;}
.x1_c01127{left:52.000000pt;}
.x2_c01127{left:73.072253pt;}
.x6e_c01127{left:81.089053pt;}
.x43_c01127{left:82.043853pt;}
.x6_c01127{left:82.994253pt;}
.x72_c01127{left:94.319853pt;}
.x44_c01127{left:129.783853pt;}
.x5d_c01127{left:130.778253pt;}
.x7_c01127{left:131.737453pt;}
.x18_c01127{left:141.905853pt;}
.x7d_c01127{left:151.198653pt;}
.x77_c01127{left:159.778653pt;}
.x46_c01127{left:161.010653pt;}
.x8_c01127{left:163.567053pt;}
.x19_c01127{left:166.220253pt;}
.x1a_c01127{left:169.766653pt;}
.x11_c01127{left:170.967853pt;}
.x5e_c01127{left:181.021853pt;}
.x9_c01127{left:182.491453pt;}
.x3d_c01127{left:191.339853pt;}
.x1b_c01127{left:200.333453pt;}
.x45_c01127{left:209.661453pt;}
.x59_c01127{left:210.713053pt;}
.x79_c01127{left:211.870253pt;}
.x6a_c01127{left:220.283053pt;}
.x1c_c01127{left:224.735853pt;}
.x12_c01127{left:230.755053pt;}
.x81_c01127{left:239.942253pt;}
.xa_c01127{left:241.130253pt;}
.x78_c01127{left:242.234653pt;}
.x5f_c01127{left:250.084253pt;}
.x5_c01127{left:253.274253pt;}
.x1d_c01127{left:258.818253pt;}
.x13_c01127{left:259.839053pt;}
.xb_c01127{left:270.799453pt;}
.x73_c01127{left:277.967053pt;}
.x63_c01127{left:279.555453pt;}
.x5a_c01127{left:280.461853pt;}
.x56_c01127{left:289.019853pt;}
.x1e_c01127{left:291.690653pt;}
.x1f_c01127{left:293.921453pt;}
.x7a_c01127{left:297.432653pt;}
.x6f_c01127{left:299.474253pt;}
.x20_c01127{left:302.730253pt;}
.x3e_c01127{left:307.297453pt;}
.xc_c01127{left:318.279853pt;}
.x47_c01127{left:320.097053pt;}
.x21_c01127{left:321.227853pt;}
.x64_c01127{left:329.482253pt;}
.x7e_c01127{left:337.239453pt;}
.x14_c01127{left:338.836653pt;}
.x22_c01127{left:344.803053pt;}
.x82_c01127{left:346.567453pt;}
.xd_c01127{left:348.701453pt;}
.x74_c01127{left:350.813453pt;}
.x23_c01127{left:353.202653pt;}
.x24_c01127{left:355.323453pt;}
.x6b_c01127{left:356.929453pt;}
.x65_c01127{left:359.037053pt;}
.x25_c01127{left:361.518653pt;}
.x60_c01127{left:367.766653pt;}
.x26_c01127{left:375.642653pt;}
.x4a_c01127{left:376.544653pt;}
.x27_c01127{left:381.714653pt;}
.x28_c01127{left:383.245853pt;}
.x57_c01127{left:388.253053pt;}
.x4b_c01127{left:397.105853pt;}
.x48_c01127{left:398.663453pt;}
.x4c_c01127{left:400.335453pt;}
.x29_c01127{left:403.274653pt;}
.x2a_c01127{left:405.496653pt;}
.x7f_c01127{left:407.247853pt;}
.x70_c01127{left:408.444653pt;}
.x2b_c01127{left:425.987453pt;}
.x3f_c01127{left:428.073053pt;}
.xe_c01127{left:430.105853pt;}
.x6c_c01127{left:436.173453pt;}
.x66_c01127{left:437.915853pt;}
.x2c_c01127{left:441.088253pt;}
.x2d_c01127{left:447.142653pt;}
.x4_c01127{left:448.797053pt;}
.x7b_c01127{left:455.969053pt;}
.x40_c01127{left:458.450653pt;}
.x67_c01127{left:465.679853pt;}
.x15_c01127{left:468.007453pt;}
.x76_c01127{left:476.543453pt;}
.x2e_c01127{left:485.616253pt;}
.x4d_c01127{left:487.653453pt;}
.x2f_c01127{left:495.357853pt;}
.xf_c01127{left:496.308253pt;}
.x30_c01127{left:498.521453pt;}
.x68_c01127{left:505.249053pt;}
.x61_c01127{left:506.419453pt;}
.x4e_c01127{left:514.726653pt;}
.x4f_c01127{left:518.950653pt;}
.x31_c01127{left:521.278253pt;}
.x32_c01127{left:523.495853pt;}
.x41_c01127{left:525.207453pt;}
.x6d_c01127{left:526.641853pt;}
.x33_c01127{left:530.157453pt;}
.x50_c01127{left:531.547853pt;}
.x16_c01127{left:534.663053pt;}
.x51_c01127{left:537.817853pt;}
.x34_c01127{left:539.239053pt;}
.x80_c01127{left:541.923053pt;}
.x35_c01127{left:544.087853pt;}
.x69_c01127{left:545.931453pt;}
.x36_c01127{left:553.600653pt;}
.x5b_c01127{left:554.656653pt;}
.x52_c01127{left:558.097453pt;}
.x58_c01127{left:565.581853pt;}
.x37_c01127{left:568.411053pt;}
.x53_c01127{left:574.861453pt;}
.x42_c01127{left:584.823053pt;}
.x75_c01127{left:586.389453pt;}
.x38_c01127{left:589.548653pt;}
.x7c_c01127{left:594.586653pt;}
.x5c_c01127{left:604.469053pt;}
.x10_c01127{left:605.894653pt;}
.x39_c01127{left:611.817053pt;}
.x17_c01127{left:613.832253pt;}
.x49_c01127{left:615.147853pt;}
.x3a_c01127{left:617.743853pt;}
.x62_c01127{left:623.952253pt;}
.x54_c01127{left:625.039053pt;}
.x55_c01127{left:628.880253pt;}
.x3b_c01127{left:634.116253pt;}
.x3_c01127{left:636.527453pt;}
.x3c_c01127{left:640.201453pt;}
.x71_c01127{left:652.565453pt;}
.x83_c01127{left:689.287853pt;}
}





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

.ir_c01128:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01128{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01128;src:url('chunks/assets/font_b1036ad703eff79e93ce6e41.woff2')format("woff");}.ff1_c01128{font-family:ff1_c01128;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01128;src:url('chunks/assets/font_3cab0146066a7c91a5634d46.woff2')format("woff");}.ff2_c01128{font-family:ff2_c01128;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01128;src:url('chunks/assets/font_a7200456d7bd0ab570359811.woff2')format("woff");}.ff3_c01128{font-family:ff3_c01128;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01128;src:url('chunks/assets/font_9ba20ec4153ac6da2a084cd4.woff2')format("woff");}.ff4_c01128{font-family:ff4_c01128;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01128;src:url('chunks/assets/font_69283503d6e65a7394c96744.woff2')format("woff");}.ff5_c01128{font-family:ff5_c01128;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01128;src:url('chunks/assets/font_1576bd0578331ad57597f7ce.woff2')format("woff");}.ff6_c01128{font-family:ff6_c01128;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4c_c01128{transform:matrix(0.042554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042554,0.000000,0.000000,0.250000,0,0);}
.m4a_c01128{transform:matrix(0.080319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080319,0.000000,0.000000,0.250000,0,0);}
.m4d_c01128{transform:matrix(0.087524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087524,0.000000,0.000000,0.250000,0,0);}
.m83_c01128{transform:matrix(0.119189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119189,0.000000,0.000000,0.250000,0,0);}
.m4b_c01128{transform:matrix(0.119682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119682,0.000000,0.000000,0.250000,0,0);}
.m80_c01128{transform:matrix(0.140398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140398,0.000000,0.000000,0.250000,0,0);}
.m49_c01128{transform:matrix(0.144805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144805,0.000000,0.000000,0.250000,0,0);}
.m22_c01128{transform:matrix(0.152778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152778,0.000000,0.000000,0.250000,0,0);}
.m82_c01128{transform:matrix(0.165020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165020,0.000000,0.000000,0.250000,0,0);}
.m6d_c01128{transform:matrix(0.195122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195122,0.000000,0.000000,0.250000,0,0);}
.m35_c01128{transform:matrix(0.200371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200371,0.000000,0.000000,0.250000,0,0);}
.m29_c01128{transform:matrix(0.212040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212040,0.000000,0.000000,0.250000,0,0);}
.ma7_c01128{transform:matrix(0.227539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227539,0.000000,0.000000,0.250000,0,0);}
.m84_c01128{transform:matrix(0.228641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228641,0.000000,0.000000,0.250000,0,0);}
.m89_c01128{transform:matrix(0.230096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230096,0.000000,0.000000,0.250000,0,0);}
.m17_c01128{transform:matrix(0.230102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230102,0.000000,0.000000,0.250000,0,0);}
.m54_c01128{transform:matrix(0.234279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234279,0.000000,0.000000,0.250000,0,0);}
.m8a_c01128{transform:matrix(0.235610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235610,0.000000,0.000000,0.250000,0,0);}
.m7_c01128{transform:matrix(0.236974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236974,0.000000,0.000000,0.250000,0,0);}
.m33_c01128{transform:matrix(0.238465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238465,0.000000,0.000000,0.250000,0,0);}
.m48_c01128{transform:matrix(0.245478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245478,0.000000,0.000000,0.250000,0,0);}
.m13_c01128{transform:matrix(0.249906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249906,0.000000,0.000000,0.250000,0,0);}
.ma5_c01128{transform:matrix(0.249968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249968,0.000000,0.000000,0.250000,0,0);}
.m0_c01128{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2_c01128{transform:matrix(0.252414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252414,0.000000,0.000000,0.250000,0,0);}
.m3_c01128{transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);}
.m26_c01128{transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);}
.m56_c01128{transform:matrix(0.253689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253689,0.000000,0.000000,0.250000,0,0);}
.ma1_c01128{transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);}
.m9c_c01128{transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);}
.m5a_c01128{transform:matrix(0.256913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256913,0.000000,0.000000,0.250000,0,0);}
.m1a_c01128{transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);}
.m1f_c01128{transform:matrix(0.258186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258186,0.000000,0.000000,0.250000,0,0);}
.m28_c01128{transform:matrix(0.258809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258809,0.000000,0.000000,0.250000,0,0);}
.m55_c01128{transform:matrix(0.258825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258825,0.000000,0.000000,0.250000,0,0);}
.m57_c01128{transform:matrix(0.258924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258924,0.000000,0.000000,0.250000,0,0);}
.m71_c01128{transform:matrix(0.259006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259006,0.000000,0.000000,0.250000,0,0);}
.m3c_c01128{transform:matrix(0.259090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259090,0.000000,0.000000,0.250000,0,0);}
.m88_c01128{transform:matrix(0.260255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260255,0.000000,0.000000,0.250000,0,0);}
.m93_c01128{transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);}
.m90_c01128{transform:matrix(0.260444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260444,0.000000,0.000000,0.250000,0,0);}
.m73_c01128{transform:matrix(0.260653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260653,0.000000,0.000000,0.250000,0,0);}
.m98_c01128{transform:matrix(0.261055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261055,0.000000,0.000000,0.250000,0,0);}
.maa_c01128{transform:matrix(0.261064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261064,0.000000,0.000000,0.250000,0,0);}
.m1b_c01128{transform:matrix(0.261229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261229,0.000000,0.000000,0.250000,0,0);}
.mf_c01128{transform:matrix(0.262181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262181,0.000000,0.000000,0.250000,0,0);}
.m5f_c01128{transform:matrix(0.262488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262488,0.000000,0.000000,0.250000,0,0);}
.m1d_c01128{transform:matrix(0.263260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263260,0.000000,0.000000,0.250000,0,0);}
.m53_c01128{transform:matrix(0.263334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263334,0.000000,0.000000,0.250000,0,0);}
.m5b_c01128{transform:matrix(0.264495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264495,0.000000,0.000000,0.250000,0,0);}
.m52_c01128{transform:matrix(0.264788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264788,0.000000,0.000000,0.250000,0,0);}
.m9d_c01128{transform:matrix(0.264852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264852,0.000000,0.000000,0.250000,0,0);}
.m60_c01128{transform:matrix(0.265499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265499,0.000000,0.000000,0.250000,0,0);}
.m7a_c01128{transform:matrix(0.265878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265878,0.000000,0.000000,0.250000,0,0);}
.m63_c01128{transform:matrix(0.266260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266260,0.000000,0.000000,0.250000,0,0);}
.m9_c01128{transform:matrix(0.266331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266331,0.000000,0.000000,0.250000,0,0);}
.m5_c01128{transform:matrix(0.266961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266961,0.000000,0.000000,0.250000,0,0);}
.m6c_c01128{transform:matrix(0.267076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267076,0.000000,0.000000,0.250000,0,0);}
.m5d_c01128{transform:matrix(0.267153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267153,0.000000,0.000000,0.250000,0,0);}
.m58_c01128{transform:matrix(0.267410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267410,0.000000,0.000000,0.250000,0,0);}
.m87_c01128{transform:matrix(0.267643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267643,0.000000,0.000000,0.250000,0,0);}
.m92_c01128{transform:matrix(0.268539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268539,0.000000,0.000000,0.250000,0,0);}
.m6f_c01128{transform:matrix(0.268864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268864,0.000000,0.000000,0.250000,0,0);}
.m6_c01128{transform:matrix(0.269116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269116,0.000000,0.000000,0.250000,0,0);}
.m94_c01128{transform:matrix(0.270005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270005,0.000000,0.000000,0.250000,0,0);}
.m2f_c01128{transform:matrix(0.270379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270379,0.000000,0.000000,0.250000,0,0);}
.m72_c01128{transform:matrix(0.271157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271157,0.000000,0.000000,0.250000,0,0);}
.m43_c01128{transform:matrix(0.271572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271572,0.000000,0.000000,0.250000,0,0);}
.m8c_c01128{transform:matrix(0.271614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271614,0.000000,0.000000,0.250000,0,0);}
.m16_c01128{transform:matrix(0.272334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272334,0.000000,0.000000,0.250000,0,0);}
.m91_c01128{transform:matrix(0.273059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273059,0.000000,0.000000,0.250000,0,0);}
.ma_c01128{transform:matrix(0.273555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273555,0.000000,0.000000,0.250000,0,0);}
.m32_c01128{transform:matrix(0.273613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273613,0.000000,0.000000,0.250000,0,0);}
.m86_c01128{transform:matrix(0.274004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274004,0.000000,0.000000,0.250000,0,0);}
.md_c01128{transform:matrix(0.274488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274488,0.000000,0.000000,0.250000,0,0);}
.m70_c01128{transform:matrix(0.274608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274608,0.000000,0.000000,0.250000,0,0);}
.me_c01128{transform:matrix(0.274668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274668,0.000000,0.000000,0.250000,0,0);}
.m61_c01128{transform:matrix(0.276355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276355,0.000000,0.000000,0.250000,0,0);}
.m85_c01128{transform:matrix(0.276861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276861,0.000000,0.000000,0.250000,0,0);}
.ma0_c01128{transform:matrix(0.277049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277049,0.000000,0.000000,0.250000,0,0);}
.ma3_c01128{transform:matrix(0.278210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278210,0.000000,0.000000,0.250000,0,0);}
.m8e_c01128{transform:matrix(0.278743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278743,0.000000,0.000000,0.250000,0,0);}
.m5e_c01128{transform:matrix(0.279186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279186,0.000000,0.000000,0.250000,0,0);}
.m12_c01128{transform:matrix(0.279496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279496,0.000000,0.000000,0.250000,0,0);}
.m99_c01128{transform:matrix(0.279707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279707,0.000000,0.000000,0.250000,0,0);}
.m2c_c01128{transform:matrix(0.279950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279950,0.000000,0.000000,0.250000,0,0);}
.m25_c01128{transform:matrix(0.280056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280056,0.000000,0.000000,0.250000,0,0);}
.m8d_c01128{transform:matrix(0.280798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280798,0.000000,0.000000,0.250000,0,0);}
.m40_c01128{transform:matrix(0.281183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281183,0.000000,0.000000,0.250000,0,0);}
.m6a_c01128{transform:matrix(0.281659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281659,0.000000,0.000000,0.250000,0,0);}
.m97_c01128{transform:matrix(0.281873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281873,0.000000,0.000000,0.250000,0,0);}
.m27_c01128{transform:matrix(0.283286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283286,0.000000,0.000000,0.250000,0,0);}
.m77_c01128{transform:matrix(0.283630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283630,0.000000,0.000000,0.250000,0,0);}
.m69_c01128{transform:matrix(0.284388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284388,0.000000,0.000000,0.250000,0,0);}
.m59_c01128{transform:matrix(0.285175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285175,0.000000,0.000000,0.250000,0,0);}
.m4_c01128{transform:matrix(0.285278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285278,0.000000,0.000000,0.250000,0,0);}
.m3a_c01128{transform:matrix(0.285629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285629,0.000000,0.000000,0.250000,0,0);}
.m9b_c01128{transform:matrix(0.285930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285930,0.000000,0.000000,0.250000,0,0);}
.m42_c01128{transform:matrix(0.286508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286508,0.000000,0.000000,0.250000,0,0);}
.m51_c01128{transform:matrix(0.287572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287572,0.000000,0.000000,0.250000,0,0);}
.m9e_c01128{transform:matrix(0.287621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287621,0.000000,0.000000,0.250000,0,0);}
.m2a_c01128{transform:matrix(0.288349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288349,0.000000,0.000000,0.250000,0,0);}
.m79_c01128{transform:matrix(0.289229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289229,0.000000,0.000000,0.250000,0,0);}
.m36_c01128{transform:matrix(0.289417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289417,0.000000,0.000000,0.250000,0,0);}
.m81_c01128{transform:matrix(0.291011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291011,0.000000,0.000000,0.250000,0,0);}
.m8f_c01128{transform:matrix(0.291470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291470,0.000000,0.000000,0.250000,0,0);}
.m21_c01128{transform:matrix(0.292513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292513,0.000000,0.000000,0.250000,0,0);}
.m6b_c01128{transform:matrix(0.294137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294137,0.000000,0.000000,0.250000,0,0);}
.m75_c01128{transform:matrix(0.294288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294288,0.000000,0.000000,0.250000,0,0);}
.m19_c01128{transform:matrix(0.294945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294945,0.000000,0.000000,0.250000,0,0);}
.m6e_c01128{transform:matrix(0.295251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295251,0.000000,0.000000,0.250000,0,0);}
.m31_c01128{transform:matrix(0.296086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296086,0.000000,0.000000,0.250000,0,0);}
.m15_c01128{transform:matrix(0.296538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296538,0.000000,0.000000,0.250000,0,0);}
.m24_c01128{transform:matrix(0.296594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296594,0.000000,0.000000,0.250000,0,0);}
.m1_c01128{transform:matrix(0.297270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297270,0.000000,0.000000,0.250000,0,0);}
.m44_c01128{transform:matrix(0.298014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298014,0.000000,0.000000,0.250000,0,0);}
.m9f_c01128{transform:matrix(0.300266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300266,0.000000,0.000000,0.250000,0,0);}
.ma6_c01128{transform:matrix(0.300497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300497,0.000000,0.000000,0.250000,0,0);}
.m4e_c01128{transform:matrix(0.300502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300502,0.000000,0.000000,0.250000,0,0);}
.m41_c01128{transform:matrix(0.300902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300902,0.000000,0.000000,0.250000,0,0);}
.ma4_c01128{transform:matrix(0.302741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302741,0.000000,0.000000,0.250000,0,0);}
.m11_c01128{transform:matrix(0.303198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303198,0.000000,0.000000,0.250000,0,0);}
.m50_c01128{transform:matrix(0.303711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303711,0.000000,0.000000,0.250000,0,0);}
.m65_c01128{transform:matrix(0.303858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303858,0.000000,0.000000,0.250000,0,0);}
.m47_c01128{transform:matrix(0.304396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304396,0.000000,0.000000,0.250000,0,0);}
.m96_c01128{transform:matrix(0.304914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304914,0.000000,0.000000,0.250000,0,0);}
.mc_c01128{transform:matrix(0.305309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305309,0.000000,0.000000,0.250000,0,0);}
.ma8_c01128{transform:matrix(0.306741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306741,0.000000,0.000000,0.250000,0,0);}
.m67_c01128{transform:matrix(0.307121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307121,0.000000,0.000000,0.250000,0,0);}
.m76_c01128{transform:matrix(0.307712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307712,0.000000,0.000000,0.250000,0,0);}
.m2d_c01128{transform:matrix(0.308524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308524,0.000000,0.000000,0.250000,0,0);}
.m66_c01128{transform:matrix(0.310003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310003,0.000000,0.000000,0.250000,0,0);}
.m37_c01128{transform:matrix(0.311344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311344,0.000000,0.000000,0.250000,0,0);}
.m46_c01128{transform:matrix(0.313714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313714,0.000000,0.000000,0.250000,0,0);}
.m4f_c01128{transform:matrix(0.313935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313935,0.000000,0.000000,0.250000,0,0);}
.ma2_c01128{transform:matrix(0.314374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314374,0.000000,0.000000,0.250000,0,0);}
.m23_c01128{transform:matrix(0.314459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314459,0.000000,0.000000,0.250000,0,0);}
.m3b_c01128{transform:matrix(0.316843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316843,0.000000,0.000000,0.250000,0,0);}
.m9a_c01128{transform:matrix(0.317067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317067,0.000000,0.000000,0.250000,0,0);}
.m30_c01128{transform:matrix(0.318931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318931,0.000000,0.000000,0.250000,0,0);}
.m3e_c01128{transform:matrix(0.319185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319185,0.000000,0.000000,0.250000,0,0);}
.m39_c01128{transform:matrix(0.319708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319708,0.000000,0.000000,0.250000,0,0);}
.m2b_c01128{transform:matrix(0.321233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321233,0.000000,0.000000,0.250000,0,0);}
.m74_c01128{transform:matrix(0.322788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322788,0.000000,0.000000,0.250000,0,0);}
.m14_c01128{transform:matrix(0.323719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323719,0.000000,0.000000,0.250000,0,0);}
.m34_c01128{transform:matrix(0.325516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325516,0.000000,0.000000,0.250000,0,0);}
.m20_c01128{transform:matrix(0.326139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326139,0.000000,0.000000,0.250000,0,0);}
.m95_c01128{transform:matrix(0.329385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329385,0.000000,0.000000,0.250000,0,0);}
.m64_c01128{transform:matrix(0.329484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329484,0.000000,0.000000,0.250000,0,0);}
.m8_c01128{transform:matrix(0.332800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332800,0.000000,0.000000,0.250000,0,0);}
.m78_c01128{transform:matrix(0.333044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333044,0.000000,0.000000,0.250000,0,0);}
.m62_c01128{transform:matrix(0.336741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336741,0.000000,0.000000,0.250000,0,0);}
.m3d_c01128{transform:matrix(0.341951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341951,0.000000,0.000000,0.250000,0,0);}
.m10_c01128{transform:matrix(0.346042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346042,0.000000,0.000000,0.250000,0,0);}
.mb_c01128{transform:matrix(0.351572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351572,0.000000,0.000000,0.250000,0,0);}
.m2e_c01128{transform:matrix(0.353406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353406,0.000000,0.000000,0.250000,0,0);}
.m18_c01128{transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);}
.m1e_c01128{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);}
.ma9_c01128{transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);}
.m38_c01128{transform:matrix(0.371775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371775,0.000000,0.000000,0.250000,0,0);}
.m45_c01128{transform:matrix(0.373561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373561,0.000000,0.000000,0.250000,0,0);}
.m1c_c01128{transform:matrix(0.376256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376256,0.000000,0.000000,0.250000,0,0);}
.m8b_c01128{transform:matrix(0.377767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377767,0.000000,0.000000,0.250000,0,0);}
.m68_c01128{transform:matrix(0.378742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378742,0.000000,0.000000,0.250000,0,0);}
.m7e_c01128{transform:matrix(0.391544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391544,0.000000,0.000000,0.250000,0,0);}
.m7b_c01128{transform:matrix(0.394340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394340,0.000000,0.000000,0.250000,0,0);}
.m5c_c01128{transform:matrix(0.395342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395342,0.000000,0.000000,0.250000,0,0);}
.m3f_c01128{transform:matrix(0.403692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403692,0.000000,0.000000,0.250000,0,0);}
.m7f_c01128{transform:matrix(0.421232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421232,0.000000,0.000000,0.250000,0,0);}
.m7d_c01128{transform:matrix(0.519372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519372,0.000000,0.000000,0.250000,0,0);}
.m7c_c01128{transform:matrix(0.660851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660851,0.000000,0.000000,0.250000,0,0);}
.v0_c01128{vertical-align:0.000000px;}
.ls2c_c01128{letter-spacing:-3.215527px;}
.ls29_c01128{letter-spacing:-3.104640px;}
.ls1f_c01128{letter-spacing:-3.021480px;}
.lsb_c01128{letter-spacing:-2.855167px;}
.ls2d_c01128{letter-spacing:-2.772000px;}
.lsf_c01128{letter-spacing:-2.692015px;}
.ls2f_c01128{letter-spacing:-2.585965px;}
.ls18_c01128{letter-spacing:-2.577967px;}
.lse_c01128{letter-spacing:-2.508667px;}
.ls1c_c01128{letter-spacing:-2.398340px;}
.ls15_c01128{letter-spacing:-2.370067px;}
.ls1a_c01128{letter-spacing:-1.475025px;}
.ls14_c01128{letter-spacing:-1.337850px;}
.ls33_c01128{letter-spacing:-1.326600px;}
.ls6_c01128{letter-spacing:0.000000px;}
.ls1b_c01128{letter-spacing:0.636294px;}
.ls27_c01128{letter-spacing:0.772210px;}
.ls26_c01128{letter-spacing:0.792000px;}
.ls35_c01128{letter-spacing:0.840235px;}
.ls25_c01128{letter-spacing:0.910800px;}
.ls3_c01128{letter-spacing:1.119690px;}
.ls30_c01128{letter-spacing:1.451581px;}
.ls0_c01128{letter-spacing:1.655997px;}
.ls12_c01128{letter-spacing:1.930500px;}
.ls32_c01128{letter-spacing:2.145949px;}
.ls24_c01128{letter-spacing:2.374146px;}
.ls4_c01128{letter-spacing:3.034635px;}
.ls2_c01128{letter-spacing:3.116211px;}
.ls22_c01128{letter-spacing:3.306610px;}
.ls10_c01128{letter-spacing:3.366000px;}
.ls16_c01128{letter-spacing:3.385810px;}
.ls2a_c01128{letter-spacing:3.497976px;}
.lsa_c01128{letter-spacing:3.499619px;}
.lsd_c01128{letter-spacing:3.583810px;}
.ls31_c01128{letter-spacing:3.621983px;}
.ls5_c01128{letter-spacing:3.638298px;}
.ls23_c01128{letter-spacing:3.643200px;}
.ls1_c01128{letter-spacing:3.662771px;}
.ls7_c01128{letter-spacing:3.702610px;}
.ls19_c01128{letter-spacing:3.801610px;}
.ls34_c01128{letter-spacing:3.809608px;}
.lsc_c01128{letter-spacing:3.821400px;}
.ls8_c01128{letter-spacing:3.899342px;}
.ls2e_c01128{letter-spacing:3.960000px;}
.ls20_c01128{letter-spacing:3.989700px;}
.ls17_c01128{letter-spacing:4.039200px;}
.ls9_c01128{letter-spacing:4.078810px;}
.ls11_c01128{letter-spacing:4.098610px;}
.ls1e_c01128{letter-spacing:4.316400px;}
.ls2b_c01128{letter-spacing:4.336200px;}
.ls13_c01128{letter-spacing:55.598598px;}
.ls21_c01128{letter-spacing:58.449798px;}
.ls28_c01128{letter-spacing:65.577798px;}
.ls1d_c01128{letter-spacing:67.003200px;}
.sc__c01128{text-shadow:none;}
.sc0_c01128{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01128{-webkit-text-stroke:0px transparent;}
.sc0_c01128{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01128{word-spacing:-21.030344px;}
.ws2_c01128{word-spacing:-20.394050px;}
.ws0_c01128{word-spacing:-19.056200px;}
.ws3_c01128{word-spacing:0.000000px;}
._6_c01128{margin-left:-5.791995px;}
._d_c01128{margin-left:-4.649868px;}
._4_c01128{width:4.192992px;}
._8_c01128{width:6.199677px;}
._1_c01128{width:9.936031px;}
._7_c01128{width:15.325101px;}
._c_c01128{width:17.420969px;}
._9_c01128{width:19.915520px;}
._5_c01128{width:21.017720px;}
._3_c01128{width:23.615719px;}
._2_c01128{width:26.417833px;}
._b_c01128{width:33.794028px;}
._a_c01128{width:35.612280px;}
._0_c01128{width:41.685435px;}
.fc0_c01128{color:transparent;}
.fs1c_c01128{font-size:15.444198px;}
.fs1a_c01128{font-size:15.840000px;}
.fs19_c01128{font-size:18.216000px;}
.fs23_c01128{font-size:25.146000px;}
.fs1b_c01128{font-size:33.660000px;}
.fs0_c01128{font-size:34.056198px;}
.fs7_c01128{font-size:38.016198px;}
.fs9_c01128{font-size:38.610000px;}
.fs26_c01128{font-size:39.204000px;}
.fs24_c01128{font-size:44.352000px;}
.fsa_c01128{font-size:55.598598px;}
.fs16_c01128{font-size:58.449798px;}
.fs18_c01128{font-size:64.350000px;}
.fs1d_c01128{font-size:65.577798px;}
.fs17_c01128{font-size:66.132198px;}
.fsf_c01128{font-size:66.330000px;}
.fs11_c01128{font-size:67.003200px;}
.fs13_c01128{font-size:67.122198px;}
.fs6_c01128{font-size:67.320000px;}
.fsc_c01128{font-size:67.716198px;}
.fs5_c01128{font-size:71.676198px;}
.fsb_c01128{font-size:72.864000px;}
.fse_c01128{font-size:73.656198px;}
.fs1_c01128{font-size:74.052198px;}
.fs3_c01128{font-size:74.844000px;}
.fs10_c01128{font-size:76.032198px;}
.fs4_c01128{font-size:76.428000px;}
.fs1f_c01128{font-size:78.606198px;}
.fs22_c01128{font-size:79.200000px;}
.fs14_c01128{font-size:79.794000px;}
.fsd_c01128{font-size:80.784000px;}
.fs2_c01128{font-size:81.576198px;}
.fs8_c01128{font-size:81.972198px;}
.fs15_c01128{font-size:83.556198px;}
.fs12_c01128{font-size:86.328000px;}
.fs20_c01128{font-size:86.724000px;}
.fs1e_c01128{font-size:88.704000px;}
.fs21_c01128{font-size:91.872198px;}
.fs25_c01128{font-size:99.000000px;}
.y21_c01128{bottom:-4.731165px;}
.y0_c01128{bottom:0.000000px;}
.y2_c01128{bottom:9.886185px;}
.y1_c01128{bottom:76.500000px;}
.y20_c01128{bottom:92.214585px;}
.y1f_c01128{bottom:124.651935px;}
.y1e_c01128{bottom:157.797135px;}
.y19_c01128{bottom:224.082585px;}
.y1d_c01128{bottom:246.184335px;}
.y1c_c01128{bottom:255.089385px;}
.y18_c01128{bottom:255.802185px;}
.y1b_c01128{bottom:268.637535px;}
.y1a_c01128{bottom:281.111535px;}
.y17_c01128{bottom:320.310585px;}
.y16_c01128{bottom:351.322335px;}
.y15_c01128{bottom:379.472985px;}
.y14_c01128{bottom:384.106185px;}
.y13_c01128{bottom:416.182185px;}
.y12_c01128{bottom:447.901785px;}
.y11_c01128{bottom:479.977785px;}
.y10_c01128{bottom:512.053785px;}
.yf_c01128{bottom:576.205785px;}
.ye_c01128{bottom:607.212585px;}
.yd_c01128{bottom:641.070585px;}
.yc_c01128{bottom:671.725935px;}
.yb_c01128{bottom:704.158335px;}
.ya_c01128{bottom:735.521535px;}
.y9_c01128{bottom:767.592585px;}
.y7_c01128{bottom:799.317135px;}
.y8_c01128{bottom:804.658185px;}
.y6_c01128{bottom:863.469135px;}
.y5_c01128{bottom:896.252985px;}
.y4_c01128{bottom:928.690335px;}
.y3_c01128{bottom:1077.660585px;}
.h1a_c01128{height:15.546094px;}
.h1c_c01128{height:16.107816px;}
.h19_c01128{height:18.998719px;}
.h24_c01128{height:26.226492px;}
.h1b_c01128{height:33.035449px;}
.h2_c01128{height:35.519550px;}
.hc_c01128{height:37.028666px;}
.h28_c01128{height:38.476582px;}
.h16_c01128{height:38.927565px;}
.h9_c01128{height:39.649707px;}
.hb_c01128{height:40.269023px;}
.h1d_c01128{height:43.674813px;}
.h12_c01128{height:44.624131px;}
.h25_c01128{height:46.257750px;}
.h23_c01128{height:66.070898px;}
.h17_c01128{height:68.973816px;}
.h10_c01128{height:69.180117px;}
.h8_c01128{height:70.212656px;}
.h7_c01128{height:70.346269px;}
.hd_c01128{height:70.625878px;}
.h18_c01128{height:71.512031px;}
.hf_c01128{height:72.289530px;}
.h3_c01128{height:72.678183px;}
.h5_c01128{height:73.455293px;}
.h11_c01128{height:74.621444px;}
.h6_c01128{height:75.009902px;}
.h26_c01128{height:77.147685px;}
.h22_c01128{height:77.691797px;}
.h21_c01128{height:77.730469px;}
.h14_c01128{height:78.313447px;}
.he_c01128{height:79.285078px;}
.h4_c01128{height:80.062577px;}
.ha_c01128{height:80.451229px;}
.h15_c01128{height:82.005839px;}
.h13_c01128{height:84.684059px;}
.h1f_c01128{height:85.114863px;}
.h20_c01128{height:90.167538px;}
.h1e_c01128{height:92.515500px;}
.h27_c01128{height:97.114746px;}
.h1_c01128{height:1110.000000px;}
.h0_c01128{height:1263.000000px;}
.w1_c01128{width:775.500000px;}
.w0_c01128{width:892.500000px;}
.x0_c01128{left:0.000000px;}
.x2_c01128{left:51.100485px;}
.x1_c01128{left:58.500000px;}
.x4c_c01128{left:74.108085px;}
.x4_c01128{left:75.543585px;}
.x5b_c01128{left:129.364935px;}
.x5_c01128{left:130.736085px;}
.x3e_c01128{left:133.191285px;}
.x63_c01128{left:162.980385px;}
.x42_c01128{left:164.084235px;}
.x6_c01128{left:165.638535px;}
.x39_c01128{left:174.543585px;}
.xf_c01128{left:184.488135px;}
.x17_c01128{left:185.611785px;}
.x3a_c01128{left:196.358235px;}
.x67_c01128{left:197.531385px;}
.x32_c01128{left:198.645135px;}
.x2a_c01128{left:208.634235px;}
.x33_c01128{left:220.637985px;}
.x1e_c01128{left:221.984385px;}
.x1f_c01128{left:229.963785px;}
.x7_c01128{left:231.087435px;}
.x18_c01128{left:241.056735px;}
.x2b_c01128{left:242.700135px;}
.x34_c01128{left:252.273435px;}
.x43_c01128{left:253.887135px;}
.x8_c01128{left:263.475285px;}
.x3b_c01128{left:274.721685px;}
.x49_c01128{left:284.290035px;}
.x19_c01128{left:285.730485px;}
.x10_c01128{left:287.383785px;}
.x60_c01128{left:296.100735px;}
.x20_c01128{left:297.372885px;}
.x11_c01128{left:308.391585px;}
.x2c_c01128{left:309.495435px;}
.x4d_c01128{left:319.266735px;}
.x21_c01128{left:330.240885px;}
.x2d_c01128{left:331.513035px;}
.x35_c01128{left:341.002185px;}
.x12_c01128{left:352.961385px;}
.x9_c01128{left:363.128685px;}
.x2e_c01128{left:365.257185px;}
.x4a_c01128{left:373.800885px;}
.x64_c01128{left:375.033435px;}
.xa_c01128{left:384.438435px;}
.x5c_c01128{left:395.308635px;}
.x1a_c01128{left:397.476735px;}
.x44_c01128{left:407.658885px;}
.x5d_c01128{left:409.668585px;}
.x4e_c01128{left:417.232185px;}
.x3c_c01128{left:419.375535px;}
.x36_c01128{left:429.602235px;}
.x4f_c01128{left:431.008035px;}
.x5e_c01128{left:438.334035px;}
.x4b_c01128{left:440.437785px;}
.x3f_c01128{left:442.388085px;}
.x1b_c01128{left:443.947335px;}
.xb_c01128{left:450.723885px;}
.x52_c01128{left:451.926735px;}
.x22_c01128{left:453.109785px;}
.x1c_c01128{left:462.975135px;}
.x23_c01128{left:473.370135px;}
.x37_c01128{left:474.820485px;}
.x65_c01128{left:484.814535px;}
.x30_c01128{left:496.249035px;}
.x13_c01128{left:497.550885px;}
.x24_c01128{left:505.624335px;}
.x2f_c01128{left:507.079635px;}
.x1d_c01128{left:517.930035px;}
.x45_c01128{left:525.325335px;}
.x51_c01128{left:530.032785px;}
.xc_c01128{left:538.769535px;}
.x25_c01128{left:540.432735px;}
.x66_c01128{left:551.075235px;}
.x46_c01128{left:557.752785px;}
.x5f_c01128{left:560.143635px;}
.x14_c01128{left:562.321635px;}
.x53_c01128{left:571.984035px;}
.xd_c01128{left:573.028485px;}
.x26_c01128{left:575.661885px;}
.x55_c01128{left:579.151635px;}
.x50_c01128{left:591.996885px;}
.x69_c01128{left:593.699685px;}
.x27_c01128{left:595.318335px;}
.x68_c01128{left:604.743135px;}
.x40_c01128{left:605.960835px;}
.x38_c01128{left:616.519185px;}
.x15_c01128{left:617.781435px;}
.x56_c01128{left:626.414235px;}
.xe_c01128{left:627.914085px;}
.x57_c01128{left:634.007535px;}
.x41_c01128{left:638.254635px;}
.x28_c01128{left:639.462435px;}
.x47_c01128{left:640.873185px;}
.x16_c01128{left:648.882285px;}
.x54_c01128{left:660.163335px;}
.x31_c01128{left:661.598835px;}
.x58_c01128{left:665.657835px;}
.x29_c01128{left:672.464085px;}
.x48_c01128{left:682.789785px;}
.x59_c01128{left:684.898485px;}
.x3_c01128{left:699.689085px;}
.x61_c01128{left:701.822535px;}
.x62_c01128{left:703.347135px;}
.x5a_c01128{left:704.530185px;}
.x3d_c01128{left:705.742935px;}
.x6a_c01128{left:708.707985px;}
@media print{
.v0_c01128{vertical-align:0.000000pt;}
.ls2c_c01128{letter-spacing:-2.858246pt;}
.ls29_c01128{letter-spacing:-2.759680pt;}
.ls1f_c01128{letter-spacing:-2.685760pt;}
.lsb_c01128{letter-spacing:-2.537926pt;}
.ls2d_c01128{letter-spacing:-2.464000pt;}
.lsf_c01128{letter-spacing:-2.392902pt;}
.ls2f_c01128{letter-spacing:-2.298636pt;}
.ls18_c01128{letter-spacing:-2.291526pt;}
.lse_c01128{letter-spacing:-2.229926pt;}
.ls1c_c01128{letter-spacing:-2.131858pt;}
.ls15_c01128{letter-spacing:-2.106726pt;}
.ls1a_c01128{letter-spacing:-1.311133pt;}
.ls14_c01128{letter-spacing:-1.189200pt;}
.ls33_c01128{letter-spacing:-1.179200pt;}
.ls6_c01128{letter-spacing:0.000000pt;}
.ls1b_c01128{letter-spacing:0.565595pt;}
.ls27_c01128{letter-spacing:0.686409pt;}
.ls26_c01128{letter-spacing:0.704000pt;}
.ls35_c01128{letter-spacing:0.746875pt;}
.ls25_c01128{letter-spacing:0.809600pt;}
.ls3_c01128{letter-spacing:0.995280pt;}
.ls30_c01128{letter-spacing:1.290294pt;}
.ls0_c01128{letter-spacing:1.471997pt;}
.ls12_c01128{letter-spacing:1.716000pt;}
.ls32_c01128{letter-spacing:1.907510pt;}
.ls24_c01128{letter-spacing:2.110352pt;}
.ls4_c01128{letter-spacing:2.697453pt;}
.ls2_c01128{letter-spacing:2.769965pt;}
.ls22_c01128{letter-spacing:2.939209pt;}
.ls10_c01128{letter-spacing:2.992000pt;}
.ls16_c01128{letter-spacing:3.009609pt;}
.ls2a_c01128{letter-spacing:3.109312pt;}
.lsa_c01128{letter-spacing:3.110772pt;}
.lsd_c01128{letter-spacing:3.185609pt;}
.ls31_c01128{letter-spacing:3.219541pt;}
.ls5_c01128{letter-spacing:3.234043pt;}
.ls23_c01128{letter-spacing:3.238400pt;}
.ls1_c01128{letter-spacing:3.255797pt;}
.ls7_c01128{letter-spacing:3.291209pt;}
.ls19_c01128{letter-spacing:3.379209pt;}
.ls34_c01128{letter-spacing:3.386319pt;}
.lsc_c01128{letter-spacing:3.396800pt;}
.ls8_c01128{letter-spacing:3.466082pt;}
.ls2e_c01128{letter-spacing:3.520000pt;}
.ls20_c01128{letter-spacing:3.546400pt;}
.ls17_c01128{letter-spacing:3.590400pt;}
.ls9_c01128{letter-spacing:3.625609pt;}
.ls11_c01128{letter-spacing:3.643209pt;}
.ls1e_c01128{letter-spacing:3.836800pt;}
.ls2b_c01128{letter-spacing:3.854400pt;}
.ls13_c01128{letter-spacing:49.420976pt;}
.ls21_c01128{letter-spacing:51.955376pt;}
.ls28_c01128{letter-spacing:58.291376pt;}
.ls1d_c01128{letter-spacing:59.558400pt;}
.ws1_c01128{word-spacing:-18.693639pt;}
.ws2_c01128{word-spacing:-18.128044pt;}
.ws0_c01128{word-spacing:-16.938844pt;}
.ws3_c01128{word-spacing:0.000000pt;}
._6_c01128{margin-left:-5.148440pt;}
._d_c01128{margin-left:-4.133216pt;}
._4_c01128{width:3.727104pt;}
._8_c01128{width:5.510824pt;}
._1_c01128{width:8.832027pt;}
._7_c01128{width:13.622312pt;}
._c_c01128{width:15.485306pt;}
._9_c01128{width:17.702685pt;}
._5_c01128{width:18.682418pt;}
._3_c01128{width:20.991750pt;}
._2_c01128{width:23.482519pt;}
._b_c01128{width:30.039136pt;}
._a_c01128{width:31.655360pt;}
._0_c01128{width:37.053720pt;}
.fs1c_c01128{font-size:13.728176pt;}
.fs1a_c01128{font-size:14.080000pt;}
.fs19_c01128{font-size:16.192000pt;}
.fs23_c01128{font-size:22.352000pt;}
.fs1b_c01128{font-size:29.920000pt;}
.fs0_c01128{font-size:30.272176pt;}
.fs7_c01128{font-size:33.792176pt;}
.fs9_c01128{font-size:34.320000pt;}
.fs26_c01128{font-size:34.848000pt;}
.fs24_c01128{font-size:39.424000pt;}
.fsa_c01128{font-size:49.420976pt;}
.fs16_c01128{font-size:51.955376pt;}
.fs18_c01128{font-size:57.200000pt;}
.fs1d_c01128{font-size:58.291376pt;}
.fs17_c01128{font-size:58.784176pt;}
.fsf_c01128{font-size:58.960000pt;}
.fs11_c01128{font-size:59.558400pt;}
.fs13_c01128{font-size:59.664176pt;}
.fs6_c01128{font-size:59.840000pt;}
.fsc_c01128{font-size:60.192176pt;}
.fs5_c01128{font-size:63.712176pt;}
.fsb_c01128{font-size:64.768000pt;}
.fse_c01128{font-size:65.472176pt;}
.fs1_c01128{font-size:65.824176pt;}
.fs3_c01128{font-size:66.528000pt;}
.fs10_c01128{font-size:67.584176pt;}
.fs4_c01128{font-size:67.936000pt;}
.fs1f_c01128{font-size:69.872176pt;}
.fs22_c01128{font-size:70.400000pt;}
.fs14_c01128{font-size:70.928000pt;}
.fsd_c01128{font-size:71.808000pt;}
.fs2_c01128{font-size:72.512176pt;}
.fs8_c01128{font-size:72.864176pt;}
.fs15_c01128{font-size:74.272176pt;}
.fs12_c01128{font-size:76.736000pt;}
.fs20_c01128{font-size:77.088000pt;}
.fs1e_c01128{font-size:78.848000pt;}
.fs21_c01128{font-size:81.664176pt;}
.fs25_c01128{font-size:88.000000pt;}
.y21_c01128{bottom:-4.205480pt;}
.y0_c01128{bottom:0.000000pt;}
.y2_c01128{bottom:8.787720pt;}
.y1_c01128{bottom:68.000000pt;}
.y20_c01128{bottom:81.968520pt;}
.y1f_c01128{bottom:110.801720pt;}
.y1e_c01128{bottom:140.264120pt;}
.y19_c01128{bottom:199.184520pt;}
.y1d_c01128{bottom:218.830520pt;}
.y1c_c01128{bottom:226.746120pt;}
.y18_c01128{bottom:227.379720pt;}
.y1b_c01128{bottom:238.788920pt;}
.y1a_c01128{bottom:249.876920pt;}
.y17_c01128{bottom:284.720520pt;}
.y16_c01128{bottom:312.286520pt;}
.y15_c01128{bottom:337.309320pt;}
.y14_c01128{bottom:341.427720pt;}
.y13_c01128{bottom:369.939720pt;}
.y12_c01128{bottom:398.134920pt;}
.y11_c01128{bottom:426.646920pt;}
.y10_c01128{bottom:455.158920pt;}
.yf_c01128{bottom:512.182920pt;}
.ye_c01128{bottom:539.744520pt;}
.yd_c01128{bottom:569.840520pt;}
.yc_c01128{bottom:597.089720pt;}
.yb_c01128{bottom:625.918520pt;}
.ya_c01128{bottom:653.796920pt;}
.y9_c01128{bottom:682.304520pt;}
.y7_c01128{bottom:710.504120pt;}
.y8_c01128{bottom:715.251720pt;}
.y6_c01128{bottom:767.528120pt;}
.y5_c01128{bottom:796.669320pt;}
.y4_c01128{bottom:825.502520pt;}
.y3_c01128{bottom:957.920520pt;}
.h1a_c01128{height:13.818750pt;}
.h1c_c01128{height:14.318059pt;}
.h19_c01128{height:16.887750pt;}
.h24_c01128{height:23.312438pt;}
.h1b_c01128{height:29.364844pt;}
.h2_c01128{height:31.572934pt;}
.hc_c01128{height:32.914370pt;}
.h28_c01128{height:34.201406pt;}
.h16_c01128{height:34.602280pt;}
.h9_c01128{height:35.244184pt;}
.hb_c01128{height:35.794688pt;}
.h1d_c01128{height:38.822056pt;}
.h12_c01128{height:39.665894pt;}
.h25_c01128{height:41.118000pt;}
.h23_c01128{height:58.729688pt;}
.h17_c01128{height:61.310059pt;}
.h10_c01128{height:61.493438pt;}
.h8_c01128{height:62.411250pt;}
.h7_c01128{height:62.530016pt;}
.hd_c01128{height:62.778559pt;}
.h18_c01128{height:63.566250pt;}
.hf_c01128{height:64.257360pt;}
.h3_c01128{height:64.602829pt;}
.h5_c01128{height:65.293594pt;}
.h11_c01128{height:66.330173pt;}
.h6_c01128{height:66.675469pt;}
.h26_c01128{height:68.575720pt;}
.h22_c01128{height:69.059375pt;}
.h21_c01128{height:69.093750pt;}
.h14_c01128{height:69.611953pt;}
.he_c01128{height:70.475625pt;}
.h4_c01128{height:71.166735pt;}
.ha_c01128{height:71.512204pt;}
.h15_c01128{height:72.894079pt;}
.h13_c01128{height:75.274719pt;}
.h1f_c01128{height:75.657656pt;}
.h20_c01128{height:80.148923pt;}
.h1e_c01128{height:82.236000pt;}
.h27_c01128{height:86.324219pt;}
.h1_c01128{height:986.666667pt;}
.h0_c01128{height:1122.666667pt;}
.w1_c01128{width:689.333333pt;}
.w0_c01128{width:793.333333pt;}
.x0_c01128{left:0.000000pt;}
.x2_c01128{left:45.422653pt;}
.x1_c01128{left:52.000000pt;}
.x4c_c01128{left:65.873853pt;}
.x4_c01128{left:67.149853pt;}
.x5b_c01128{left:114.991053pt;}
.x5_c01128{left:116.209853pt;}
.x3e_c01128{left:118.392253pt;}
.x63_c01128{left:144.871453pt;}
.x42_c01128{left:145.852653pt;}
.x6_c01128{left:147.234253pt;}
.x39_c01128{left:155.149853pt;}
.xf_c01128{left:163.989453pt;}
.x17_c01128{left:164.988253pt;}
.x3a_c01128{left:174.540653pt;}
.x67_c01128{left:175.583453pt;}
.x32_c01128{left:176.573453pt;}
.x2a_c01128{left:185.452653pt;}
.x33_c01128{left:196.122653pt;}
.x1e_c01128{left:197.319453pt;}
.x1f_c01128{left:204.412253pt;}
.x7_c01128{left:205.411053pt;}
.x18_c01128{left:214.272653pt;}
.x2b_c01128{left:215.733453pt;}
.x34_c01128{left:224.243053pt;}
.x43_c01128{left:225.677453pt;}
.x8_c01128{left:234.200253pt;}
.x3b_c01128{left:244.197053pt;}
.x49_c01128{left:252.702253pt;}
.x19_c01128{left:253.982653pt;}
.x10_c01128{left:255.452253pt;}
.x60_c01128{left:263.200653pt;}
.x20_c01128{left:264.331453pt;}
.x11_c01128{left:274.125853pt;}
.x2c_c01128{left:275.107053pt;}
.x4d_c01128{left:283.792653pt;}
.x21_c01128{left:293.547453pt;}
.x2d_c01128{left:294.678253pt;}
.x35_c01128{left:303.113053pt;}
.x12_c01128{left:313.743453pt;}
.x9_c01128{left:322.781053pt;}
.x2e_c01128{left:324.673053pt;}
.x4a_c01128{left:332.267453pt;}
.x64_c01128{left:333.363053pt;}
.xa_c01128{left:341.723053pt;}
.x5c_c01128{left:351.385453pt;}
.x1a_c01128{left:353.312653pt;}
.x44_c01128{left:362.363453pt;}
.x5d_c01128{left:364.149853pt;}
.x4e_c01128{left:370.873053pt;}
.x3c_c01128{left:372.778253pt;}
.x36_c01128{left:381.868653pt;}
.x4f_c01128{left:383.118253pt;}
.x5e_c01128{left:389.630253pt;}
.x4b_c01128{left:391.500253pt;}
.x3f_c01128{left:393.233853pt;}
.x1b_c01128{left:394.619853pt;}
.xb_c01128{left:400.643453pt;}
.x52_c01128{left:401.712653pt;}
.x22_c01128{left:402.764253pt;}
.x1c_c01128{left:411.533453pt;}
.x23_c01128{left:420.773453pt;}
.x37_c01128{left:422.062653pt;}
.x65_c01128{left:430.946253pt;}
.x30_c01128{left:441.110253pt;}
.x13_c01128{left:442.267453pt;}
.x24_c01128{left:449.443853pt;}
.x2f_c01128{left:450.737453pt;}
.x1d_c01128{left:460.382253pt;}
.x45_c01128{left:466.955853pt;}
.x51_c01128{left:471.140253pt;}
.xc_c01128{left:478.906253pt;}
.x25_c01128{left:480.384653pt;}
.x66_c01128{left:489.844653pt;}
.x46_c01128{left:495.780253pt;}
.x5f_c01128{left:497.905453pt;}
.x14_c01128{left:499.841453pt;}
.x53_c01128{left:508.430253pt;}
.xd_c01128{left:509.358653pt;}
.x26_c01128{left:511.699453pt;}
.x55_c01128{left:514.801453pt;}
.x50_c01128{left:526.219453pt;}
.x69_c01128{left:527.733053pt;}
.x27_c01128{left:529.171853pt;}
.x68_c01128{left:537.549453pt;}
.x40_c01128{left:538.631853pt;}
.x38_c01128{left:548.017053pt;}
.x15_c01128{left:549.139053pt;}
.x56_c01128{left:556.812653pt;}
.xe_c01128{left:558.145853pt;}
.x57_c01128{left:563.562253pt;}
.x41_c01128{left:567.337453pt;}
.x28_c01128{left:568.411053pt;}
.x47_c01128{left:569.665053pt;}
.x16_c01128{left:576.784253pt;}
.x54_c01128{left:586.811853pt;}
.x31_c01128{left:588.087853pt;}
.x58_c01128{left:591.695853pt;}
.x29_c01128{left:597.745853pt;}
.x48_c01128{left:606.924253pt;}
.x59_c01128{left:608.798653pt;}
.x3_c01128{left:621.945853pt;}
.x61_c01128{left:623.842253pt;}
.x62_c01128{left:625.197453pt;}
.x5a_c01128{left:626.249053pt;}
.x3d_c01128{left:627.327053pt;}
.x6a_c01128{left:629.962653pt;}
}





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

.ir_c01129:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01129{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01129;src:url('chunks/assets/font_db0c59278e83264f2a3158dd.woff2')format("woff");}.ff1_c01129{font-family:ff1_c01129;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01129;src:url('chunks/assets/font_08bc492836cfeee7f21dfce6.woff2')format("woff");}.ff2_c01129{font-family:ff2_c01129;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01129;src:url('chunks/assets/font_f4c6ba764e2e427e5e58a3a6.woff2')format("woff");}.ff3_c01129{font-family:ff3_c01129;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01129;src:url('chunks/assets/font_ffd17cfc38be34a2eb4789f7.woff2')format("woff");}.ff4_c01129{font-family:ff4_c01129;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01129;src:url('chunks/assets/font_72e81f52eecd5e9232f7c0b2.woff2')format("woff");}.ff5_c01129{font-family:ff5_c01129;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m7c_c01129{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);}
.m39_c01129{transform:matrix(0.039774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.039774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.039774,0.000000,0.000000,0.250000,0,0);}
.m12_c01129{transform:matrix(0.057066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.057066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.057066,0.000000,0.000000,0.250000,0,0);}
.m22_c01129{transform:matrix(0.066666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066666,0.000000,0.000000,0.250000,0,0);}
.m3f_c01129{transform:matrix(0.072674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072674,0.000000,0.000000,0.250000,0,0);}
.mb_c01129{transform:matrix(0.076087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076087,0.000000,0.000000,0.250000,0,0);}
.m11_c01129{transform:matrix(0.081521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081521,0.000000,0.000000,0.250000,0,0);}
.m7d_c01129{transform:matrix(0.085227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085227,0.000000,0.000000,0.250000,0,0);}
.m38_c01129{transform:matrix(0.089963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089963,0.000000,0.000000,0.250000,0,0);}
.mf_c01129{transform:matrix(0.098913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098913,0.000000,0.000000,0.250000,0,0);}
.m10_c01129{transform:matrix(0.099638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099638,0.000000,0.000000,0.250000,0,0);}
.m40_c01129{transform:matrix(0.104652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104652,0.000000,0.000000,0.250000,0,0);}
.m7b_c01129{transform:matrix(0.129262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129262,0.000000,0.000000,0.250000,0,0);}
.m41_c01129{transform:matrix(0.135901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135901,0.000000,0.000000,0.250000,0,0);}
.m3e_c01129{transform:matrix(0.139535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139535,0.000000,0.000000,0.250000,0,0);}
.m21_c01129{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01129{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);}
.m20_c01129{transform:matrix(0.163369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163369,0.000000,0.000000,0.250000,0,0);}
.ma_c01129{transform:matrix(0.169254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169254,0.000000,0.000000,0.250000,0,0);}
.m44_c01129{transform:matrix(0.173611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173611,0.000000,0.000000,0.250000,0,0);}
.m42_c01129{transform:matrix(0.174418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174418,0.000000,0.000000,0.250000,0,0);}
.m3d_c01129{transform:matrix(0.175872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175872,0.000000,0.000000,0.250000,0,0);}
.m25_c01129{transform:matrix(0.176282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176282,0.000000,0.000000,0.250000,0,0);}
.m27_c01129{transform:matrix(0.191506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191506,0.000000,0.000000,0.250000,0,0);}
.m23_c01129{transform:matrix(0.193910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193910,0.000000,0.000000,0.250000,0,0);}
.md_c01129{transform:matrix(0.213209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213209,0.000000,0.000000,0.250000,0,0);}
.mc_c01129{transform:matrix(0.216628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216628,0.000000,0.000000,0.250000,0,0);}
.m26_c01129{transform:matrix(0.219780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219780,0.000000,0.000000,0.250000,0,0);}
.m31_c01129{transform:matrix(0.245227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245227,0.000000,0.000000,0.250000,0,0);}
.m58_c01129{transform:matrix(0.249348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249348,0.000000,0.000000,0.250000,0,0);}
.m0_c01129{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01129{transform:matrix(0.254495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254495,0.000000,0.000000,0.250000,0,0);}
.m76_c01129{transform:matrix(0.256561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256561,0.000000,0.000000,0.250000,0,0);}
.m4d_c01129{transform:matrix(0.257900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257900,0.000000,0.000000,0.250000,0,0);}
.m69_c01129{transform:matrix(0.259509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259509,0.000000,0.000000,0.250000,0,0);}
.m37_c01129{transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);}
.m2b_c01129{transform:matrix(0.261270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261270,0.000000,0.000000,0.250000,0,0);}
.m4c_c01129{transform:matrix(0.261316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261316,0.000000,0.000000,0.250000,0,0);}
.m7_c01129{transform:matrix(0.264831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264831,0.000000,0.000000,0.250000,0,0);}
.m13_c01129{transform:matrix(0.266768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266768,0.000000,0.000000,0.250000,0,0);}
.m64_c01129{transform:matrix(0.267555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267555,0.000000,0.000000,0.250000,0,0);}
.m6f_c01129{transform:matrix(0.268174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268174,0.000000,0.000000,0.250000,0,0);}
.m4b_c01129{transform:matrix(0.268359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268359,0.000000,0.000000,0.250000,0,0);}
.m15_c01129{transform:matrix(0.268749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268749,0.000000,0.000000,0.250000,0,0);}
.m60_c01129{transform:matrix(0.269115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269115,0.000000,0.000000,0.250000,0,0);}
.m1f_c01129{transform:matrix(0.269715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269715,0.000000,0.000000,0.250000,0,0);}
.m5c_c01129{transform:matrix(0.269735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269735,0.000000,0.000000,0.250000,0,0);}
.m6c_c01129{transform:matrix(0.271231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271231,0.000000,0.000000,0.250000,0,0);}
.m3_c01129{transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);}
.m6b_c01129{transform:matrix(0.272173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272173,0.000000,0.000000,0.250000,0,0);}
.m4f_c01129{transform:matrix(0.272187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272187,0.000000,0.000000,0.250000,0,0);}
.m2e_c01129{transform:matrix(0.273719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273719,0.000000,0.000000,0.250000,0,0);}
.m33_c01129{transform:matrix(0.273997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273997,0.000000,0.000000,0.250000,0,0);}
.m5e_c01129{transform:matrix(0.274532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274532,0.000000,0.000000,0.250000,0,0);}
.m46_c01129{transform:matrix(0.276577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276577,0.000000,0.000000,0.250000,0,0);}
.m78_c01129{transform:matrix(0.278514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278514,0.000000,0.000000,0.250000,0,0);}
.m8_c01129{transform:matrix(0.279904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279904,0.000000,0.000000,0.250000,0,0);}
.m7a_c01129{transform:matrix(0.279906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279906,0.000000,0.000000,0.250000,0,0);}
.m24_c01129{transform:matrix(0.280749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280749,0.000000,0.000000,0.250000,0,0);}
.m50_c01129{transform:matrix(0.281460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281460,0.000000,0.000000,0.250000,0,0);}
.m18_c01129{transform:matrix(0.281516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281516,0.000000,0.000000,0.250000,0,0);}
.m65_c01129{transform:matrix(0.284164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284164,0.000000,0.000000,0.250000,0,0);}
.m6e_c01129{transform:matrix(0.285601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285601,0.000000,0.000000,0.250000,0,0);}
.m66_c01129{transform:matrix(0.285636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285636,0.000000,0.000000,0.250000,0,0);}
.m56_c01129{transform:matrix(0.286075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286075,0.000000,0.000000,0.250000,0,0);}
.m5a_c01129{transform:matrix(0.286633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286633,0.000000,0.000000,0.250000,0,0);}
.m19_c01129{transform:matrix(0.287239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287239,0.000000,0.000000,0.250000,0,0);}
.m29_c01129{transform:matrix(0.288902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288902,0.000000,0.000000,0.250000,0,0);}
.m74_c01129{transform:matrix(0.289929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289929,0.000000,0.000000,0.250000,0,0);}
.m79_c01129{transform:matrix(0.290129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290129,0.000000,0.000000,0.250000,0,0);}
.m57_c01129{transform:matrix(0.290454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290454,0.000000,0.000000,0.250000,0,0);}
.m5b_c01129{transform:matrix(0.291330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291330,0.000000,0.000000,0.250000,0,0);}
.m16_c01129{transform:matrix(0.293971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293971,0.000000,0.000000,0.250000,0,0);}
.m2f_c01129{transform:matrix(0.294290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294290,0.000000,0.000000,0.250000,0,0);}
.m28_c01129{transform:matrix(0.294336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294336,0.000000,0.000000,0.250000,0,0);}
.m2c_c01129{transform:matrix(0.294502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294502,0.000000,0.000000,0.250000,0,0);}
.m53_c01129{transform:matrix(0.294522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294522,0.000000,0.000000,0.250000,0,0);}
.m43_c01129{transform:matrix(0.295997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295997,0.000000,0.000000,0.250000,0,0);}
.m51_c01129{transform:matrix(0.297049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297049,0.000000,0.000000,0.250000,0,0);}
.m35_c01129{transform:matrix(0.297891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297891,0.000000,0.000000,0.250000,0,0);}
.m1e_c01129{transform:matrix(0.298326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298326,0.000000,0.000000,0.250000,0,0);}
.m1_c01129{transform:matrix(0.298637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298637,0.000000,0.000000,0.250000,0,0);}
.m62_c01129{transform:matrix(0.299738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299738,0.000000,0.000000,0.250000,0,0);}
.m1a_c01129{transform:matrix(0.301171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301171,0.000000,0.000000,0.250000,0,0);}
.m30_c01129{transform:matrix(0.302140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302140,0.000000,0.000000,0.250000,0,0);}
.m63_c01129{transform:matrix(0.302700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302700,0.000000,0.000000,0.250000,0,0);}
.m1c_c01129{transform:matrix(0.302904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302904,0.000000,0.000000,0.250000,0,0);}
.m14_c01129{transform:matrix(0.303209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303209,0.000000,0.000000,0.250000,0,0);}
.m1b_c01129{transform:matrix(0.303306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303306,0.000000,0.000000,0.250000,0,0);}
.m32_c01129{transform:matrix(0.305342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305342,0.000000,0.000000,0.250000,0,0);}
.m5_c01129{transform:matrix(0.305451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305451,0.000000,0.000000,0.250000,0,0);}
.m9_c01129{transform:matrix(0.305872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305872,0.000000,0.000000,0.250000,0,0);}
.m6a_c01129{transform:matrix(0.307351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307351,0.000000,0.000000,0.250000,0,0);}
.m67_c01129{transform:matrix(0.307366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307366,0.000000,0.000000,0.250000,0,0);}
.m45_c01129{transform:matrix(0.308203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308203,0.000000,0.000000,0.250000,0,0);}
.m4e_c01129{transform:matrix(0.309024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309024,0.000000,0.000000,0.250000,0,0);}
.m2_c01129{transform:matrix(0.312069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312069,0.000000,0.000000,0.250000,0,0);}
.m70_c01129{transform:matrix(0.312625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312625,0.000000,0.000000,0.250000,0,0);}
.m48_c01129{transform:matrix(0.314972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314972,0.000000,0.000000,0.250000,0,0);}
.m4a_c01129{transform:matrix(0.315689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315689,0.000000,0.000000,0.250000,0,0);}
.m3b_c01129{transform:matrix(0.316005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316005,0.000000,0.000000,0.250000,0,0);}
.m36_c01129{transform:matrix(0.317616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317616,0.000000,0.000000,0.250000,0,0);}
.m68_c01129{transform:matrix(0.317773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317773,0.000000,0.000000,0.250000,0,0);}
.m77_c01129{transform:matrix(0.317907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317907,0.000000,0.000000,0.250000,0,0);}
.m71_c01129{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);}
.m52_c01129{transform:matrix(0.322372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322372,0.000000,0.000000,0.250000,0,0);}
.m73_c01129{transform:matrix(0.324067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324067,0.000000,0.000000,0.250000,0,0);}
.m72_c01129{transform:matrix(0.325274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325274,0.000000,0.000000,0.250000,0,0);}
.m54_c01129{transform:matrix(0.325439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325439,0.000000,0.000000,0.250000,0,0);}
.m75_c01129{transform:matrix(0.327588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327588,0.000000,0.000000,0.250000,0,0);}
.m1d_c01129{transform:matrix(0.328801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328801,0.000000,0.000000,0.250000,0,0);}
.m5d_c01129{transform:matrix(0.333340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333340,0.000000,0.000000,0.250000,0,0);}
.m3c_c01129{transform:matrix(0.333522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333522,0.000000,0.000000,0.250000,0,0);}
.m47_c01129{transform:matrix(0.335939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335939,0.000000,0.000000,0.250000,0,0);}
.m34_c01129{transform:matrix(0.336704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336704,0.000000,0.000000,0.250000,0,0);}
.me_c01129{transform:matrix(0.337388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337388,0.000000,0.000000,0.250000,0,0);}
.m17_c01129{transform:matrix(0.337969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337969,0.000000,0.000000,0.250000,0,0);}
.m49_c01129{transform:matrix(0.338983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338983,0.000000,0.000000,0.250000,0,0);}
.m61_c01129{transform:matrix(0.340698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340698,0.000000,0.000000,0.250000,0,0);}
.m6d_c01129{transform:matrix(0.343636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343636,0.000000,0.000000,0.250000,0,0);}
.m2d_c01129{transform:matrix(0.349884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349884,0.000000,0.000000,0.250000,0,0);}
.m5f_c01129{transform:matrix(0.356132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356132,0.000000,0.000000,0.250000,0,0);}
.m6_c01129{transform:matrix(0.386524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386524,0.000000,0.000000,0.250000,0,0);}
.m4_c01129{transform:matrix(0.397481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397481,0.000000,0.000000,0.250000,0,0);}
.m59_c01129{transform:matrix(0.408108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408108,0.000000,0.000000,0.250000,0,0);}
.m55_c01129{transform:matrix(0.439460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439460,0.000000,0.000000,0.250000,0,0);}
.v2_c01129{vertical-align:-15.701400px;}
.v0_c01129{vertical-align:0.000000px;}
.v1_c01129{vertical-align:7.128000px;}
.lse_c01129{letter-spacing:-3.437280px;}
.ls24_c01129{letter-spacing:-2.966040px;}
.ls17_c01129{letter-spacing:-2.855167px;}
.lsb_c01129{letter-spacing:-2.654190px;}
.lsa_c01129{letter-spacing:-2.577967px;}
.lsc_c01129{letter-spacing:-0.965609px;}
.ls5_c01129{letter-spacing:0.000000px;}
.ls1b_c01129{letter-spacing:0.092446px;}
.ls10_c01129{letter-spacing:1.084406px;}
.ls1d_c01129{letter-spacing:1.345770px;}
.ls1_c01129{letter-spacing:1.376183px;}
.ls25_c01129{letter-spacing:1.551057px;}
.ls4_c01129{letter-spacing:1.687915px;}
.ls1a_c01129{letter-spacing:1.881000px;}
.ls8_c01129{letter-spacing:1.930500px;}
.lsd_c01129{letter-spacing:1.976837px;}
.ls19_c01129{letter-spacing:2.088351px;}
.ls21_c01129{letter-spacing:2.145949px;}
.ls23_c01129{letter-spacing:2.186395px;}
.ls16_c01129{letter-spacing:2.364287px;}
.ls14_c01129{letter-spacing:2.695500px;}
.ls2_c01129{letter-spacing:2.952418px;}
.ls3_c01129{letter-spacing:3.026081px;}
.ls20_c01129{letter-spacing:3.306610px;}
.ls26_c01129{letter-spacing:3.405610px;}
.ls22_c01129{letter-spacing:3.534310px;}
.ls28_c01129{letter-spacing:3.643200px;}
.ls15_c01129{letter-spacing:3.672900px;}
.ls18_c01129{letter-spacing:3.742200px;}
.ls7_c01129{letter-spacing:3.801610px;}
.ls6_c01129{letter-spacing:3.811500px;}
.ls27_c01129{letter-spacing:3.960000px;}
.ls12_c01129{letter-spacing:4.078810px;}
.ls13_c01129{letter-spacing:4.316400px;}
.ls0_c01129{letter-spacing:16.759908px;}
.ls11_c01129{letter-spacing:55.598598px;}
.ls1f_c01129{letter-spacing:59.875398px;}
.ls1e_c01129{letter-spacing:61.300998px;}
.ls1c_c01129{letter-spacing:62.726400px;}
.lsf_c01129{letter-spacing:64.152198px;}
.ls9_c01129{letter-spacing:65.577798px;}
.sc__c01129{text-shadow:none;}
.sc0_c01129{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01129{-webkit-text-stroke:0px transparent;}
.sc0_c01129{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01129{word-spacing:-24.534418px;}
.ws1_c01129{word-spacing:-22.034131px;}
.ws2_c01129{word-spacing:0.000000px;}
._1_c01129{width:1.383715px;}
._6_c01129{width:6.290391px;}
._3_c01129{width:7.653730px;}
._0_c01129{width:13.457961px;}
._2_c01129{width:21.459535px;}
._5_c01129{width:27.660451px;}
._7_c01129{width:28.755301px;}
._4_c01129{width:48.410851px;}
.fc0_c01129{color:transparent;}
.fs1d_c01129{font-size:22.176000px;}
.fs22_c01129{font-size:22.572000px;}
.fs1e_c01129{font-size:33.264000px;}
.fs7_c01129{font-size:33.660000px;}
.fs14_c01129{font-size:37.620000px;}
.fs3_c01129{font-size:38.610000px;}
.fs0_c01129{font-size:38.808000px;}
.fs15_c01129{font-size:40.194000px;}
.fsf_c01129{font-size:43.956198px;}
.fs12_c01129{font-size:53.856198px;}
.fsc_c01129{font-size:55.598598px;}
.fs18_c01129{font-size:59.875398px;}
.fs17_c01129{font-size:61.300998px;}
.fs16_c01129{font-size:62.726400px;}
.fsa_c01129{font-size:64.152198px;}
.fs4_c01129{font-size:65.577798px;}
.fs19_c01129{font-size:66.132198px;}
.fsb_c01129{font-size:66.528000px;}
.fs1f_c01129{font-size:68.112198px;}
.fs1b_c01129{font-size:70.686198px;}
.fs21_c01129{font-size:72.864000px;}
.fs11_c01129{font-size:73.458000px;}
.fs5_c01129{font-size:73.656198px;}
.fs10_c01129{font-size:74.052198px;}
.fs13_c01129{font-size:74.844000px;}
.fs6_c01129{font-size:75.834000px;}
.fs2_c01129{font-size:76.032198px;}
.fs1_c01129{font-size:76.230000px;}
.fs1a_c01129{font-size:78.606198px;}
.fs20_c01129{font-size:79.200000px;}
.fsd_c01129{font-size:81.576198px;}
.fs1c_c01129{font-size:84.744000px;}
.fse_c01129{font-size:86.328000px;}
.fs8_c01129{font-size:98.208000px;}
.fs9_c01129{font-size:137.808198px;}
.y0_c01129{bottom:0.000000px;}
.y1b_c01129{bottom:0.624735px;}
.y1a_c01129{bottom:4.901535px;}
.y1_c01129{bottom:76.500000px;}
.y19_c01129{bottom:157.792185px;}
.y2_c01129{bottom:202.698585px;}
.y1c_c01129{bottom:214.821135px;}
.y18_c01129{bottom:222.661935px;}
.y17_c01129{bottom:255.450735px;}
.y16_c01129{bottom:287.878185px;}
.y13_c01129{bottom:352.747935px;}
.y15_c01129{bottom:378.403785px;}
.y14_c01129{bottom:384.823935px;}
.y12_c01129{bottom:417.612735px;}
.y11_c01129{bottom:417.969135px;}
.y10_c01129{bottom:481.408335px;}
.yf_c01129{bottom:513.127935px;}
.ye_c01129{bottom:544.491135px;}
.yd_c01129{bottom:575.849385px;}
.yc_c01129{bottom:608.994585px;}
.yb_c01129{bottom:640.719135px;}
.ya_c01129{bottom:674.215785px;}
.y9_c01129{bottom:705.222585px;}
.y8_c01129{bottom:792.540585px;}
.y7_c01129{bottom:833.531535px;}
.y6_c01129{bottom:864.176985px;}
.y4_c01129{bottom:928.328985px;}
.y5_c01129{bottom:934.392735px;}
.y3_c01129{bottom:1079.086185px;}
.h1e_c01129{height:23.128875px;}
.h23_c01129{height:23.541891px;}
.ha_c01129{height:33.035449px;}
.h1f_c01129{height:34.693313px;}
.hf_c01129{height:37.028666px;}
.h15_c01129{height:39.236484px;}
.h19_c01129{height:39.877015px;}
.h5_c01129{height:40.269023px;}
.h2_c01129{height:40.475531px;}
.h18_c01129{height:40.826465px;}
.h17_c01129{height:41.775782px;}
.h16_c01129{height:41.921086px;}
.hd_c01129{height:42.725364px;}
.h6_c01129{height:43.674813px;}
.h13_c01129{height:52.856913px;}
.h1a_c01129{height:68.973816px;}
.h1c_c01129{height:69.340123px;}
.he_c01129{height:69.386625px;}
.h20_c01129{height:71.038894px;}
.h12_c01129{height:72.095010px;}
.h7_c01129{height:72.289530px;}
.h14_c01129{height:73.455293px;}
.h8_c01129{height:74.426924px;}
.h4_c01129{height:74.621444px;}
.h3_c01129{height:74.815576px;}
.h22_c01129{height:75.994875px;}
.h1b_c01129{height:77.147685px;}
.h21_c01129{height:77.730469px;}
.h10_c01129{height:80.062577px;}
.h9_c01129{height:81.554924px;}
.h1d_c01129{height:83.130223px;}
.h11_c01129{height:84.726211px;}
.hb_c01129{height:96.385781px;}
.hc_c01129{height:143.729644px;}
.h1_c01129{height:1110.000000px;}
.h0_c01129{height:1263.000000px;}
.w1_c01129{width:775.500000px;}
.w0_c01129{width:892.500000px;}
.x0_c01129{left:0.000000px;}
.x2_c01129{left:26.919735px;}
.x1_c01129{left:58.500000px;}
.x4f_c01129{left:75.890085px;}
.x22_c01129{left:78.082935px;}
.xb_c01129{left:79.468935px;}
.x6c_c01129{left:130.171785px;}
.x57_c01129{left:131.478585px;}
.x2c_c01129{left:132.572535px;}
.x46_c01129{left:133.641735px;}
.xc_c01129{left:134.651535px;}
.x5_c01129{left:138.522435px;}
.x50_c01129{left:165.133635px;}
.x19_c01129{left:168.098685px;}
.x58_c01129{left:176.444385px;}
.x4b_c01129{left:179.666835px;}
.x5a_c01129{left:185.987985px;}
.x69_c01129{left:187.052235px;}
.xd_c01129{left:189.809385px;}
.x4c_c01129{left:199.239135px;}
.x62_c01129{left:209.302485px;}
.x47_c01129{left:210.510285px;}
.x41_c01129{left:221.687385px;}
.x38_c01129{left:224.132685px;}
.x51_c01129{left:231.443835px;}
.x2d_c01129{left:232.577385px;}
.x31_c01129{left:243.719835px;}
.x23_c01129{left:244.793985px;}
.x6a_c01129{left:253.441635px;}
.x5b_c01129{left:254.585085px;}
.x4d_c01129{left:256.357185px;}
.x6_c01129{left:257.461035px;}
.xe_c01129{left:266.578935px;}
.x1a_c01129{left:279.201435px;}
.x59_c01129{left:286.111635px;}
.x52_c01129{left:288.388635px;}
.x7_c01129{left:290.185485px;}
.x6d_c01129{left:297.605535px;}
.x4e_c01129{left:298.620285px;}
.x32_c01129{left:300.936885px;}
.x63_c01129{left:309.361785px;}
.x1b_c01129{left:311.267535px;}
.x5c_c01129{left:320.053785px;}
.x42_c01129{left:321.815985px;}
.x8_c01129{left:323.890035px;}
.x6e_c01129{left:342.457485px;}
.x48_c01129{left:343.793985px;}
.x2e_c01129{left:344.986935px;}
.xf_c01129{left:348.194535px;}
.x33_c01129{left:356.490735px;}
.x64_c01129{left:364.381035px;}
.x10_c01129{left:367.341135px;}
.x39_c01129{left:376.815435px;}
.x43_c01129{left:385.260135px;}
.x53_c01129{left:387.423285px;}
.x24_c01129{left:389.611185px;}
.x34_c01129{left:400.966485px;}
.x65_c01129{left:409.985385px;}
.x1c_c01129{left:411.519885px;}
.x6f_c01129{left:418.707285px;}
.x5d_c01129{left:419.979435px;}
.x3a_c01129{left:422.449485px;}
.x6b_c01129{left:429.047835px;}
.x11_c01129{left:435.507585px;}
.x9_c01129{left:436.651035px;}
.x70_c01129{left:442.284135px;}
.x25_c01129{left:445.249185px;}
.xa_c01129{left:447.496485px;}
.x2f_c01129{left:454.753185px;}
.x5e_c01129{left:463.791885px;}
.x35_c01129{left:466.578735px;}
.x49_c01129{left:475.993635px;}
.x71_c01129{left:477.211335px;}
.x44_c01129{left:479.701185px;}
.x66_c01129{left:486.898485px;}
.x3b_c01129{left:488.051835px;}
.x5f_c01129{left:497.654835px;}
.x1d_c01129{left:499.179435px;}
.x12_c01129{left:510.094185px;}
.x3c_c01129{left:520.474335px;}
.x4a_c01129{left:521.909835px;}
.x13_c01129{left:524.909535px;}
.x26_c01129{left:533.289885px;}
.x54_c01129{left:542.333535px;}
.x60_c01129{left:551.802885px;}
.x30_c01129{left:553.708635px;}
.x14_c01129{left:556.045035px;}
.x27_c01129{left:563.608635px;}
.x36_c01129{left:564.747135px;}
.x1e_c01129{left:576.335085px;}
.x55_c01129{left:586.581585px;}
.x15_c01129{left:588.403185px;}
.x67_c01129{left:597.080535px;}
.x28_c01129{left:598.872435px;}
.x3d_c01129{left:600.461385px;}
.x56_c01129{left:610.054485px;}
.x29_c01129{left:611.217735px;}
.x37_c01129{left:621.003885px;}
.x68_c01129{left:628.993185px;}
.x2a_c01129{left:630.463335px;}
.x3e_c01129{left:632.007735px;}
.x16_c01129{left:633.670935px;}
.x61_c01129{left:640.041585px;}
.x1f_c01129{left:643.669935px;}
.x17_c01129{left:650.773185px;}
.x45_c01129{left:652.500735px;}
.x18_c01129{left:653.624385px;}
.x2b_c01129{left:655.148985px;}
.x3f_c01129{left:663.608535px;}
.x20_c01129{left:678.443685px;}
.x40_c01129{left:696.748785px;}
.x3_c01129{left:700.040535px;}
.x21_c01129{left:709.846485px;}
.x4_c01129{left:733.606485px;}
.x72_c01129{left:762.242235px;}
@media print{
.v2_c01129{vertical-align:-13.956800pt;}
.v0_c01129{vertical-align:0.000000pt;}
.v1_c01129{vertical-align:6.336000pt;}
.lse_c01129{letter-spacing:-3.055360pt;}
.ls24_c01129{letter-spacing:-2.636480pt;}
.ls17_c01129{letter-spacing:-2.537926pt;}
.lsb_c01129{letter-spacing:-2.359280pt;}
.lsa_c01129{letter-spacing:-2.291526pt;}
.lsc_c01129{letter-spacing:-0.858319pt;}
.ls5_c01129{letter-spacing:0.000000pt;}
.ls1b_c01129{letter-spacing:0.082174pt;}
.ls10_c01129{letter-spacing:0.963917pt;}
.ls1d_c01129{letter-spacing:1.196240pt;}
.ls1_c01129{letter-spacing:1.223274pt;}
.ls25_c01129{letter-spacing:1.378717pt;}
.ls4_c01129{letter-spacing:1.500369pt;}
.ls1a_c01129{letter-spacing:1.672000pt;}
.ls8_c01129{letter-spacing:1.716000pt;}
.lsd_c01129{letter-spacing:1.757189pt;}
.ls19_c01129{letter-spacing:1.856312pt;}
.ls21_c01129{letter-spacing:1.907510pt;}
.ls23_c01129{letter-spacing:1.943462pt;}
.ls16_c01129{letter-spacing:2.101589pt;}
.ls14_c01129{letter-spacing:2.396000pt;}
.ls2_c01129{letter-spacing:2.624371pt;}
.ls3_c01129{letter-spacing:2.689850pt;}
.ls20_c01129{letter-spacing:2.939209pt;}
.ls26_c01129{letter-spacing:3.027209pt;}
.ls22_c01129{letter-spacing:3.141609pt;}
.ls28_c01129{letter-spacing:3.238400pt;}
.ls15_c01129{letter-spacing:3.264800pt;}
.ls18_c01129{letter-spacing:3.326400pt;}
.ls7_c01129{letter-spacing:3.379209pt;}
.ls6_c01129{letter-spacing:3.388000pt;}
.ls27_c01129{letter-spacing:3.520000pt;}
.ls12_c01129{letter-spacing:3.625609pt;}
.ls13_c01129{letter-spacing:3.836800pt;}
.ls0_c01129{letter-spacing:14.897696pt;}
.ls11_c01129{letter-spacing:49.420976pt;}
.ls1f_c01129{letter-spacing:53.222576pt;}
.ls1e_c01129{letter-spacing:54.489776pt;}
.ls1c_c01129{letter-spacing:55.756800pt;}
.lsf_c01129{letter-spacing:57.024176pt;}
.ls9_c01129{letter-spacing:58.291376pt;}
.ws0_c01129{word-spacing:-21.808371pt;}
.ws1_c01129{word-spacing:-19.585894pt;}
.ws2_c01129{word-spacing:0.000000pt;}
._1_c01129{width:1.229969pt;}
._6_c01129{width:5.591458pt;}
._3_c01129{width:6.803315pt;}
._0_c01129{width:11.962632pt;}
._2_c01129{width:19.075142pt;}
._5_c01129{width:24.587068pt;}
._7_c01129{width:25.560268pt;}
._4_c01129{width:43.031868pt;}
.fs1d_c01129{font-size:19.712000pt;}
.fs22_c01129{font-size:20.064000pt;}
.fs1e_c01129{font-size:29.568000pt;}
.fs7_c01129{font-size:29.920000pt;}
.fs14_c01129{font-size:33.440000pt;}
.fs3_c01129{font-size:34.320000pt;}
.fs0_c01129{font-size:34.496000pt;}
.fs15_c01129{font-size:35.728000pt;}
.fsf_c01129{font-size:39.072176pt;}
.fs12_c01129{font-size:47.872176pt;}
.fsc_c01129{font-size:49.420976pt;}
.fs18_c01129{font-size:53.222576pt;}
.fs17_c01129{font-size:54.489776pt;}
.fs16_c01129{font-size:55.756800pt;}
.fsa_c01129{font-size:57.024176pt;}
.fs4_c01129{font-size:58.291376pt;}
.fs19_c01129{font-size:58.784176pt;}
.fsb_c01129{font-size:59.136000pt;}
.fs1f_c01129{font-size:60.544176pt;}
.fs1b_c01129{font-size:62.832176pt;}
.fs21_c01129{font-size:64.768000pt;}
.fs11_c01129{font-size:65.296000pt;}
.fs5_c01129{font-size:65.472176pt;}
.fs10_c01129{font-size:65.824176pt;}
.fs13_c01129{font-size:66.528000pt;}
.fs6_c01129{font-size:67.408000pt;}
.fs2_c01129{font-size:67.584176pt;}
.fs1_c01129{font-size:67.760000pt;}
.fs1a_c01129{font-size:69.872176pt;}
.fs20_c01129{font-size:70.400000pt;}
.fsd_c01129{font-size:72.512176pt;}
.fs1c_c01129{font-size:75.328000pt;}
.fse_c01129{font-size:76.736000pt;}
.fs8_c01129{font-size:87.296000pt;}
.fs9_c01129{font-size:122.496176pt;}
.y0_c01129{bottom:0.000000pt;}
.y1b_c01129{bottom:0.555320pt;}
.y1a_c01129{bottom:4.356920pt;}
.y1_c01129{bottom:68.000000pt;}
.y19_c01129{bottom:140.259720pt;}
.y2_c01129{bottom:180.176520pt;}
.y1c_c01129{bottom:190.952120pt;}
.y18_c01129{bottom:197.921720pt;}
.y17_c01129{bottom:227.067320pt;}
.y16_c01129{bottom:255.891720pt;}
.y13_c01129{bottom:313.553720pt;}
.y15_c01129{bottom:336.358920pt;}
.y14_c01129{bottom:342.065720pt;}
.y12_c01129{bottom:371.211320pt;}
.y11_c01129{bottom:371.528120pt;}
.y10_c01129{bottom:427.918520pt;}
.yf_c01129{bottom:456.113720pt;}
.ye_c01129{bottom:483.992120pt;}
.yd_c01129{bottom:511.866120pt;}
.yc_c01129{bottom:541.328520pt;}
.yb_c01129{bottom:569.528120pt;}
.ya_c01129{bottom:599.302920pt;}
.y9_c01129{bottom:626.864520pt;}
.y8_c01129{bottom:704.480520pt;}
.y7_c01129{bottom:740.916920pt;}
.y6_c01129{bottom:768.157320pt;}
.y4_c01129{bottom:825.181320pt;}
.y5_c01129{bottom:830.571320pt;}
.y3_c01129{bottom:959.187720pt;}
.h1e_c01129{height:20.559000pt;}
.h23_c01129{height:20.926125pt;}
.ha_c01129{height:29.364844pt;}
.h1f_c01129{height:30.838500pt;}
.hf_c01129{height:32.914370pt;}
.h15_c01129{height:34.876875pt;}
.h19_c01129{height:35.446236pt;}
.h5_c01129{height:35.794688pt;}
.h2_c01129{height:35.978250pt;}
.h18_c01129{height:36.290191pt;}
.h17_c01129{height:37.134029pt;}
.h16_c01129{height:37.263188pt;}
.hd_c01129{height:37.978101pt;}
.h6_c01129{height:38.822056pt;}
.h13_c01129{height:46.983923pt;}
.h1a_c01129{height:61.310059pt;}
.h1c_c01129{height:61.635665pt;}
.he_c01129{height:61.677000pt;}
.h20_c01129{height:63.145684pt;}
.h12_c01129{height:64.084453pt;}
.h7_c01129{height:64.257360pt;}
.h14_c01129{height:65.293594pt;}
.h8_c01129{height:66.157266pt;}
.h4_c01129{height:66.330173pt;}
.h3_c01129{height:66.502734pt;}
.h22_c01129{height:67.551000pt;}
.h1b_c01129{height:68.575720pt;}
.h21_c01129{height:69.093750pt;}
.h10_c01129{height:71.166735pt;}
.h9_c01129{height:72.493266pt;}
.h1d_c01129{height:73.893531pt;}
.h11_c01129{height:75.312188pt;}
.hb_c01129{height:85.676250pt;}
.hc_c01129{height:127.759684pt;}
.h1_c01129{height:986.666667pt;}
.h0_c01129{height:1122.666667pt;}
.w1_c01129{width:689.333333pt;}
.w0_c01129{width:793.333333pt;}
.x0_c01129{left:0.000000pt;}
.x2_c01129{left:23.928653pt;}
.x1_c01129{left:52.000000pt;}
.x4f_c01129{left:67.457853pt;}
.x22_c01129{left:69.407053pt;}
.xb_c01129{left:70.639053pt;}
.x6c_c01129{left:115.708253pt;}
.x57_c01129{left:116.869853pt;}
.x2c_c01129{left:117.842253pt;}
.x46_c01129{left:118.792653pt;}
.xc_c01129{left:119.690253pt;}
.x5_c01129{left:123.131053pt;}
.x50_c01129{left:146.785453pt;}
.x19_c01129{left:149.421053pt;}
.x58_c01129{left:156.839453pt;}
.x4b_c01129{left:159.703853pt;}
.x5a_c01129{left:165.322653pt;}
.x69_c01129{left:166.268653pt;}
.xd_c01129{left:168.719453pt;}
.x4c_c01129{left:177.101453pt;}
.x62_c01129{left:186.046653pt;}
.x47_c01129{left:187.120253pt;}
.x41_c01129{left:197.055453pt;}
.x38_c01129{left:199.229053pt;}
.x51_c01129{left:205.727853pt;}
.x2d_c01129{left:206.735453pt;}
.x31_c01129{left:216.639853pt;}
.x23_c01129{left:217.594653pt;}
.x6a_c01129{left:225.281453pt;}
.x5b_c01129{left:226.297853pt;}
.x4d_c01129{left:227.873053pt;}
.x6_c01129{left:228.854253pt;}
.xe_c01129{left:236.959053pt;}
.x1a_c01129{left:248.179053pt;}
.x59_c01129{left:254.321453pt;}
.x52_c01129{left:256.345453pt;}
.x7_c01129{left:257.942653pt;}
.x6d_c01129{left:264.538253pt;}
.x4e_c01129{left:265.440253pt;}
.x32_c01129{left:267.499453pt;}
.x63_c01129{left:274.988253pt;}
.x1b_c01129{left:276.682253pt;}
.x5c_c01129{left:284.492253pt;}
.x42_c01129{left:286.058653pt;}
.x8_c01129{left:287.902253pt;}
.x6e_c01129{left:304.406653pt;}
.x48_c01129{left:305.594653pt;}
.x2e_c01129{left:306.655053pt;}
.xf_c01129{left:309.506253pt;}
.x33_c01129{left:316.880653pt;}
.x64_c01129{left:323.894253pt;}
.x10_c01129{left:326.525453pt;}
.x39_c01129{left:334.947053pt;}
.x43_c01129{left:342.453453pt;}
.x53_c01129{left:344.376253pt;}
.x24_c01129{left:346.321053pt;}
.x34_c01129{left:356.414653pt;}
.x65_c01129{left:364.431453pt;}
.x1c_c01129{left:365.795453pt;}
.x6f_c01129{left:372.184253pt;}
.x5d_c01129{left:373.315053pt;}
.x3a_c01129{left:375.510653pt;}
.x6b_c01129{left:381.375853pt;}
.x11_c01129{left:387.117853pt;}
.x9_c01129{left:388.134253pt;}
.x70_c01129{left:393.141453pt;}
.x25_c01129{left:395.777053pt;}
.xa_c01129{left:397.774653pt;}
.x2f_c01129{left:404.225053pt;}
.x5e_c01129{left:412.259453pt;}
.x35_c01129{left:414.736653pt;}
.x49_c01129{left:423.105453pt;}
.x71_c01129{left:424.187853pt;}
.x44_c01129{left:426.401053pt;}
.x66_c01129{left:432.798653pt;}
.x3b_c01129{left:433.823853pt;}
.x5f_c01129{left:442.359853pt;}
.x1d_c01129{left:443.715053pt;}
.x12_c01129{left:453.417053pt;}
.x3c_c01129{left:462.643853pt;}
.x4a_c01129{left:463.919853pt;}
.x13_c01129{left:466.586253pt;}
.x26_c01129{left:474.035453pt;}
.x54_c01129{left:482.074253pt;}
.x60_c01129{left:490.491453pt;}
.x30_c01129{left:492.185453pt;}
.x14_c01129{left:494.262253pt;}
.x27_c01129{left:500.985453pt;}
.x36_c01129{left:501.997453pt;}
.x1e_c01129{left:512.297853pt;}
.x55_c01129{left:521.405853pt;}
.x15_c01129{left:523.025053pt;}
.x67_c01129{left:530.738253pt;}
.x28_c01129{left:532.331053pt;}
.x3d_c01129{left:533.743453pt;}
.x56_c01129{left:542.270653pt;}
.x29_c01129{left:543.304653pt;}
.x37_c01129{left:552.003453pt;}
.x68_c01129{left:559.105053pt;}
.x2a_c01129{left:560.411853pt;}
.x3e_c01129{left:561.784653pt;}
.x16_c01129{left:563.263053pt;}
.x61_c01129{left:568.925853pt;}
.x1f_c01129{left:572.151053pt;}
.x17_c01129{left:578.465053pt;}
.x45_c01129{left:580.000653pt;}
.x18_c01129{left:580.999453pt;}
.x2b_c01129{left:582.354653pt;}
.x3f_c01129{left:589.874253pt;}
.x20_c01129{left:603.061053pt;}
.x40_c01129{left:619.332253pt;}
.x3_c01129{left:622.258253pt;}
.x21_c01129{left:630.974653pt;}
.x4_c01129{left:652.094653pt;}
.x72_c01129{left:677.548653pt;}
}





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

.ir_c01130:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01130{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01130;src:url('chunks/assets/font_4c66a041f8436f5cf5006dca.woff2')format("woff");}.ff1_c01130{font-family:ff1_c01130;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01130;src:url('chunks/assets/font_ee55c1af6b7568093c0d1000.woff2')format("woff");}.ff2_c01130{font-family:ff2_c01130;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01130;src:url('chunks/assets/font_c5c7d995e37b189294187593.woff2')format("woff");}.ff3_c01130{font-family:ff3_c01130;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01130;src:url('chunks/assets/font_b47677e1e5e483d8091d7c8e.woff2')format("woff");}.ff4_c01130{font-family:ff4_c01130;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01130;src:url('chunks/assets/font_ee934b3fb20b77c9b27dd321.woff2')format("woff");}.ff5_c01130{font-family:ff5_c01130;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m55_c01130{transform:matrix(0.035715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.035715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.035715,0.000000,0.000000,0.250000,0,0);}
.m62_c01130{transform:matrix(0.063954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.063954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.063954,0.000000,0.000000,0.250000,0,0);}
.m71_c01130{transform:matrix(0.079545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.079545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.079545,0.000000,0.000000,0.250000,0,0);}
.m60_c01130{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.ma9_c01130{transform:matrix(0.126398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126398,0.000000,0.000000,0.250000,0,0);}
.m6_c01130{transform:matrix(0.130043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130043,0.000000,0.000000,0.250000,0,0);}
.m64_c01130{transform:matrix(0.136627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136627,0.000000,0.000000,0.250000,0,0);}
.mc_c01130{transform:matrix(0.137501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137501,0.000000,0.000000,0.250000,0,0);}
.m5_c01130{transform:matrix(0.140106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140106,0.000000,0.000000,0.250000,0,0);}
.mc4_c01130{transform:matrix(0.146557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146557,0.000000,0.000000,0.250000,0,0);}
.maf_c01130{transform:matrix(0.147286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147286,0.000000,0.000000,0.250000,0,0);}
.m58_c01130{transform:matrix(0.148256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148256,0.000000,0.000000,0.250000,0,0);}
.ma8_c01130{transform:matrix(0.149433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149433,0.000000,0.000000,0.250000,0,0);}
.m63_c01130{transform:matrix(0.156977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156977,0.000000,0.000000,0.250000,0,0);}
.m46_c01130{transform:matrix(0.157830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157830,0.000000,0.000000,0.250000,0,0);}
.m54_c01130{transform:matrix(0.162698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162698,0.000000,0.000000,0.250000,0,0);}
.m20_c01130{transform:matrix(0.162791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162791,0.000000,0.000000,0.250000,0,0);}
.m70_c01130{transform:matrix(0.165909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165909,0.000000,0.000000,0.250000,0,0);}
.m9b_c01130{transform:matrix(0.166668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166668,0.000000,0.000000,0.250000,0,0);}
.m5d_c01130{transform:matrix(0.166895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166895,0.000000,0.000000,0.250000,0,0);}
.m53_c01130{transform:matrix(0.170015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170015,0.000000,0.000000,0.250000,0,0);}
.m5b_c01130{transform:matrix(0.171512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171512,0.000000,0.000000,0.250000,0,0);}
.m7_c01130{transform:matrix(0.174690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174690,0.000000,0.000000,0.250000,0,0);}
.m72_c01130{transform:matrix(0.181819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181819,0.000000,0.000000,0.250000,0,0);}
.m6c_c01130{transform:matrix(0.184669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184669,0.000000,0.000000,0.250000,0,0);}
.m41_c01130{transform:matrix(0.189024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189024,0.000000,0.000000,0.250000,0,0);}
.mb1_c01130{transform:matrix(0.218261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218261,0.000000,0.000000,0.250000,0,0);}
.m1e_c01130{transform:matrix(0.218308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218308,0.000000,0.000000,0.250000,0,0);}
.mb4_c01130{transform:matrix(0.238196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238196,0.000000,0.000000,0.250000,0,0);}
.m61_c01130{transform:matrix(0.240493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240493,0.000000,0.000000,0.250000,0,0);}
.mb3_c01130{transform:matrix(0.242091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242091,0.000000,0.000000,0.250000,0,0);}
.m95_c01130{transform:matrix(0.245776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245776,0.000000,0.000000,0.250000,0,0);}
.m82_c01130{transform:matrix(0.248060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248060,0.000000,0.000000,0.250000,0,0);}
.m1_c01130{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m94_c01130{transform:matrix(0.250716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250716,0.000000,0.000000,0.250000,0,0);}
.m59_c01130{transform:matrix(0.255165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255165,0.000000,0.000000,0.250000,0,0);}
.m1b_c01130{transform:matrix(0.257015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257015,0.000000,0.000000,0.250000,0,0);}
.m37_c01130{transform:matrix(0.257994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257994,0.000000,0.000000,0.250000,0,0);}
.m7f_c01130{transform:matrix(0.258624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258624,0.000000,0.000000,0.250000,0,0);}
.mb2_c01130{transform:matrix(0.258832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258832,0.000000,0.000000,0.250000,0,0);}
.m81_c01130{transform:matrix(0.258845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258845,0.000000,0.000000,0.250000,0,0);}
.m87_c01130{transform:matrix(0.259327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259327,0.000000,0.000000,0.250000,0,0);}
.m49_c01130{transform:matrix(0.260372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260372,0.000000,0.000000,0.250000,0,0);}
.m65_c01130{transform:matrix(0.260489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260489,0.000000,0.000000,0.250000,0,0);}
.mb6_c01130{transform:matrix(0.260492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260492,0.000000,0.000000,0.250000,0,0);}
.mb0_c01130{transform:matrix(0.261041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261041,0.000000,0.000000,0.250000,0,0);}
.m14_c01130{transform:matrix(0.265062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265062,0.000000,0.000000,0.250000,0,0);}
.m23_c01130{transform:matrix(0.265353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265353,0.000000,0.000000,0.250000,0,0);}
.m6b_c01130{transform:matrix(0.265721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265721,0.000000,0.000000,0.250000,0,0);}
.ma5_c01130{transform:matrix(0.266583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266583,0.000000,0.000000,0.250000,0,0);}
.m39_c01130{transform:matrix(0.267134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267134,0.000000,0.000000,0.250000,0,0);}
.mc0_c01130{transform:matrix(0.267358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267358,0.000000,0.000000,0.250000,0,0);}
.m2_c01130{transform:matrix(0.269035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269035,0.000000,0.000000,0.250000,0,0);}
.m4b_c01130{transform:matrix(0.270154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270154,0.000000,0.000000,0.250000,0,0);}
.m26_c01130{transform:matrix(0.271003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271003,0.000000,0.000000,0.250000,0,0);}
.md_c01130{transform:matrix(0.271526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271526,0.000000,0.000000,0.250000,0,0);}
.mb5_c01130{transform:matrix(0.272620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272620,0.000000,0.000000,0.250000,0,0);}
.m69_c01130{transform:matrix(0.273387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273387,0.000000,0.000000,0.250000,0,0);}
.m3a_c01130{transform:matrix(0.274017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274017,0.000000,0.000000,0.250000,0,0);}
.mb7_c01130{transform:matrix(0.275377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275377,0.000000,0.000000,0.250000,0,0);}
.m7a_c01130{transform:matrix(0.275843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275843,0.000000,0.000000,0.250000,0,0);}
.m76_c01130{transform:matrix(0.276494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276494,0.000000,0.000000,0.250000,0,0);}
.m5c_c01130{transform:matrix(0.276508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276508,0.000000,0.000000,0.250000,0,0);}
.m91_c01130{transform:matrix(0.277137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277137,0.000000,0.000000,0.250000,0,0);}
.m80_c01130{transform:matrix(0.277202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277202,0.000000,0.000000,0.250000,0,0);}
.m22_c01130{transform:matrix(0.278710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278710,0.000000,0.000000,0.250000,0,0);}
.m2b_c01130{transform:matrix(0.278890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278890,0.000000,0.000000,0.250000,0,0);}
.m16_c01130{transform:matrix(0.280682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280682,0.000000,0.000000,0.250000,0,0);}
.m68_c01130{transform:matrix(0.281425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281425,0.000000,0.000000,0.250000,0,0);}
.mae_c01130{transform:matrix(0.281807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281807,0.000000,0.000000,0.250000,0,0);}
.m31_c01130{transform:matrix(0.281848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281848,0.000000,0.000000,0.250000,0,0);}
.m98_c01130{transform:matrix(0.282203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282203,0.000000,0.000000,0.250000,0,0);}
.m35_c01130{transform:matrix(0.282937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282937,0.000000,0.000000,0.250000,0,0);}
.m85_c01130{transform:matrix(0.283141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283141,0.000000,0.000000,0.250000,0,0);}
.m12_c01130{transform:matrix(0.283985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283985,0.000000,0.000000,0.250000,0,0);}
.m34_c01130{transform:matrix(0.285521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285521,0.000000,0.000000,0.250000,0,0);}
.me_c01130{transform:matrix(0.286237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286237,0.000000,0.000000,0.250000,0,0);}
.mc1_c01130{transform:matrix(0.287128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287128,0.000000,0.000000,0.250000,0,0);}
.m29_c01130{transform:matrix(0.287192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287192,0.000000,0.000000,0.250000,0,0);}
.m47_c01130{transform:matrix(0.287437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287437,0.000000,0.000000,0.250000,0,0);}
.m9_c01130{transform:matrix(0.287489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287489,0.000000,0.000000,0.250000,0,0);}
.m8_c01130{transform:matrix(0.287633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287633,0.000000,0.000000,0.250000,0,0);}
.mbe_c01130{transform:matrix(0.287911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287911,0.000000,0.000000,0.250000,0,0);}
.m33_c01130{transform:matrix(0.287986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287986,0.000000,0.000000,0.250000,0,0);}
.ma_c01130{transform:matrix(0.288208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288208,0.000000,0.000000,0.250000,0,0);}
.m7b_c01130{transform:matrix(0.288781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288781,0.000000,0.000000,0.250000,0,0);}
.m45_c01130{transform:matrix(0.288795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288795,0.000000,0.000000,0.250000,0,0);}
.m8e_c01130{transform:matrix(0.289203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289203,0.000000,0.000000,0.250000,0,0);}
.m52_c01130{transform:matrix(0.289306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289306,0.000000,0.000000,0.250000,0,0);}
.m43_c01130{transform:matrix(0.289973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289973,0.000000,0.000000,0.250000,0,0);}
.mbf_c01130{transform:matrix(0.289981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289981,0.000000,0.000000,0.250000,0,0);}
.m3f_c01130{transform:matrix(0.290288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290288,0.000000,0.000000,0.250000,0,0);}
.m66_c01130{transform:matrix(0.290952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290952,0.000000,0.000000,0.250000,0,0);}
.m56_c01130{transform:matrix(0.291067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291067,0.000000,0.000000,0.250000,0,0);}
.m5a_c01130{transform:matrix(0.291184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291184,0.000000,0.000000,0.250000,0,0);}
.m8f_c01130{transform:matrix(0.291276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291276,0.000000,0.000000,0.250000,0,0);}
.m0_c01130{transform:matrix(0.291694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291694,0.000000,0.000000,0.250000,0,0);}
.m6e_c01130{transform:matrix(0.291847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291847,0.000000,0.000000,0.250000,0,0);}
.m7e_c01130{transform:matrix(0.291963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291963,0.000000,0.000000,0.250000,0,0);}
.mc2_c01130{transform:matrix(0.292352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292352,0.000000,0.000000,0.250000,0,0);}
.m30_c01130{transform:matrix(0.293457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293457,0.000000,0.000000,0.250000,0,0);}
.mb_c01130{transform:matrix(0.294267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294267,0.000000,0.000000,0.250000,0,0);}
.m44_c01130{transform:matrix(0.294292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294292,0.000000,0.000000,0.250000,0,0);}
.m48_c01130{transform:matrix(0.294473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294473,0.000000,0.000000,0.250000,0,0);}
.m9a_c01130{transform:matrix(0.294730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294730,0.000000,0.000000,0.250000,0,0);}
.m18_c01130{transform:matrix(0.295989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295989,0.000000,0.000000,0.250000,0,0);}
.m86_c01130{transform:matrix(0.296015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296015,0.000000,0.000000,0.250000,0,0);}
.m24_c01130{transform:matrix(0.296190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296190,0.000000,0.000000,0.250000,0,0);}
.m96_c01130{transform:matrix(0.296472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296472,0.000000,0.000000,0.250000,0,0);}
.m2c_c01130{transform:matrix(0.296900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296900,0.000000,0.000000,0.250000,0,0);}
.m77_c01130{transform:matrix(0.296995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296995,0.000000,0.000000,0.250000,0,0);}
.m21_c01130{transform:matrix(0.297396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297396,0.000000,0.000000,0.250000,0,0);}
.m4_c01130{transform:matrix(0.297747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297747,0.000000,0.000000,0.250000,0,0);}
.ma2_c01130{transform:matrix(0.298068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298068,0.000000,0.000000,0.250000,0,0);}
.m3d_c01130{transform:matrix(0.299128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299128,0.000000,0.000000,0.250000,0,0);}
.mb9_c01130{transform:matrix(0.299472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299472,0.000000,0.000000,0.250000,0,0);}
.m8c_c01130{transform:matrix(0.300076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300076,0.000000,0.000000,0.250000,0,0);}
.m89_c01130{transform:matrix(0.300138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300138,0.000000,0.000000,0.250000,0,0);}
.m27_c01130{transform:matrix(0.300923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300923,0.000000,0.000000,0.250000,0,0);}
.m51_c01130{transform:matrix(0.300964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300964,0.000000,0.000000,0.250000,0,0);}
.mab_c01130{transform:matrix(0.302275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302275,0.000000,0.000000,0.250000,0,0);}
.m57_c01130{transform:matrix(0.302358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302358,0.000000,0.000000,0.250000,0,0);}
.m88_c01130{transform:matrix(0.303054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303054,0.000000,0.000000,0.250000,0,0);}
.m50_c01130{transform:matrix(0.303072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303072,0.000000,0.000000,0.250000,0,0);}
.m3c_c01130{transform:matrix(0.304308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304308,0.000000,0.000000,0.250000,0,0);}
.m79_c01130{transform:matrix(0.304608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304608,0.000000,0.000000,0.250000,0,0);}
.mbd_c01130{transform:matrix(0.304651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304651,0.000000,0.000000,0.250000,0,0);}
.mb8_c01130{transform:matrix(0.304878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304878,0.000000,0.000000,0.250000,0,0);}
.ma6_c01130{transform:matrix(0.306577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306577,0.000000,0.000000,0.250000,0,0);}
.m3e_c01130{transform:matrix(0.306994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306994,0.000000,0.000000,0.250000,0,0);}
.m3_c01130{transform:matrix(0.307241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307241,0.000000,0.000000,0.250000,0,0);}
.m4a_c01130{transform:matrix(0.307565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307565,0.000000,0.000000,0.250000,0,0);}
.m40_c01130{transform:matrix(0.307679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307679,0.000000,0.000000,0.250000,0,0);}
.m8a_c01130{transform:matrix(0.308558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308558,0.000000,0.000000,0.250000,0,0);}
.m1d_c01130{transform:matrix(0.308992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308992,0.000000,0.000000,0.250000,0,0);}
.m15_c01130{transform:matrix(0.309534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309534,0.000000,0.000000,0.250000,0,0);}
.mad_c01130{transform:matrix(0.310074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310074,0.000000,0.000000,0.250000,0,0);}
.mc3_c01130{transform:matrix(0.310134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310134,0.000000,0.000000,0.250000,0,0);}
.m3b_c01130{transform:matrix(0.310584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310584,0.000000,0.000000,0.250000,0,0);}
.m2d_c01130{transform:matrix(0.310989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310989,0.000000,0.000000,0.250000,0,0);}
.m4f_c01130{transform:matrix(0.313909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313909,0.000000,0.000000,0.250000,0,0);}
.m5e_c01130{transform:matrix(0.314683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314683,0.000000,0.000000,0.250000,0,0);}
.m19_c01130{transform:matrix(0.314792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314792,0.000000,0.000000,0.250000,0,0);}
.m78_c01130{transform:matrix(0.316909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316909,0.000000,0.000000,0.250000,0,0);}
.m25_c01130{transform:matrix(0.318297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318297,0.000000,0.000000,0.250000,0,0);}
.mbb_c01130{transform:matrix(0.319433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319433,0.000000,0.000000,0.250000,0,0);}
.m7d_c01130{transform:matrix(0.319528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319528,0.000000,0.000000,0.250000,0,0);}
.m11_c01130{transform:matrix(0.319640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319640,0.000000,0.000000,0.250000,0,0);}
.m2e_c01130{transform:matrix(0.320022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320022,0.000000,0.000000,0.250000,0,0);}
.m74_c01130{transform:matrix(0.321502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321502,0.000000,0.000000,0.250000,0,0);}
.m6a_c01130{transform:matrix(0.321644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321644,0.000000,0.000000,0.250000,0,0);}
.m4e_c01130{transform:matrix(0.323272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323272,0.000000,0.000000,0.250000,0,0);}
.m73_c01130{transform:matrix(0.328585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328585,0.000000,0.000000,0.250000,0,0);}
.m32_c01130{transform:matrix(0.329372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329372,0.000000,0.000000,0.250000,0,0);}
.m92_c01130{transform:matrix(0.329973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329973,0.000000,0.000000,0.250000,0,0);}
.mac_c01130{transform:matrix(0.332065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332065,0.000000,0.000000,0.250000,0,0);}
.m83_c01130{transform:matrix(0.333267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333267,0.000000,0.000000,0.250000,0,0);}
.m8d_c01130{transform:matrix(0.333509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333509,0.000000,0.000000,0.250000,0,0);}
.ma0_c01130{transform:matrix(0.335495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335495,0.000000,0.000000,0.250000,0,0);}
.m2a_c01130{transform:matrix(0.338905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338905,0.000000,0.000000,0.250000,0,0);}
.m93_c01130{transform:matrix(0.338918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338918,0.000000,0.000000,0.250000,0,0);}
.m4d_c01130{transform:matrix(0.340692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340692,0.000000,0.000000,0.250000,0,0);}
.m38_c01130{transform:matrix(0.341332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341332,0.000000,0.000000,0.250000,0,0);}
.m84_c01130{transform:matrix(0.342651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342651,0.000000,0.000000,0.250000,0,0);}
.mbc_c01130{transform:matrix(0.343333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343333,0.000000,0.000000,0.250000,0,0);}
.m7c_c01130{transform:matrix(0.343827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343827,0.000000,0.000000,0.250000,0,0);}
.m1c_c01130{transform:matrix(0.345010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345010,0.000000,0.000000,0.250000,0,0);}
.m6f_c01130{transform:matrix(0.347987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347987,0.000000,0.000000,0.250000,0,0);}
.m10_c01130{transform:matrix(0.348332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348332,0.000000,0.000000,0.250000,0,0);}
.m67_c01130{transform:matrix(0.349199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349199,0.000000,0.000000,0.250000,0,0);}
.maa_c01130{transform:matrix(0.349232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349232,0.000000,0.000000,0.250000,0,0);}
.m75_c01130{transform:matrix(0.351973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351973,0.000000,0.000000,0.250000,0,0);}
.m28_c01130{transform:matrix(0.355438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355438,0.000000,0.000000,0.250000,0,0);}
.m1f_c01130{transform:matrix(0.355582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355582,0.000000,0.000000,0.250000,0,0);}
.m36_c01130{transform:matrix(0.358005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358005,0.000000,0.000000,0.250000,0,0);}
.m2f_c01130{transform:matrix(0.360963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360963,0.000000,0.000000,0.250000,0,0);}
.m17_c01130{transform:matrix(0.363001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363001,0.000000,0.000000,0.250000,0,0);}
.m90_c01130{transform:matrix(0.363231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363231,0.000000,0.000000,0.250000,0,0);}
.m4c_c01130{transform:matrix(0.363905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363905,0.000000,0.000000,0.250000,0,0);}
.m5f_c01130{transform:matrix(0.376561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376561,0.000000,0.000000,0.250000,0,0);}
.m13_c01130{transform:matrix(0.377007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377007,0.000000,0.000000,0.250000,0,0);}
.m42_c01130{transform:matrix(0.380564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380564,0.000000,0.000000,0.250000,0,0);}
.m9d_c01130{transform:matrix(0.381058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381058,0.000000,0.000000,0.250000,0,0);}
.ma7_c01130{transform:matrix(0.386694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386694,0.000000,0.000000,0.250000,0,0);}
.m9c_c01130{transform:matrix(0.388883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388883,0.000000,0.000000,0.250000,0,0);}
.m8b_c01130{transform:matrix(0.396465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396465,0.000000,0.000000,0.250000,0,0);}
.mf_c01130{transform:matrix(0.397482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397482,0.000000,0.000000,0.250000,0,0);}
.m1a_c01130{transform:matrix(0.403791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403791,0.000000,0.000000,0.250000,0,0);}
.mba_c01130{transform:matrix(0.404610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404610,0.000000,0.000000,0.250000,0,0);}
.m6d_c01130{transform:matrix(0.416409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416409,0.000000,0.000000,0.250000,0,0);}
.ma4_c01130{transform:matrix(0.443225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443225,0.000000,0.000000,0.250000,0,0);}
.m9e_c01130{transform:matrix(0.485026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485026,0.000000,0.000000,0.250000,0,0);}
.ma1_c01130{transform:matrix(0.501391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501391,0.000000,0.000000,0.250000,0,0);}
.m9f_c01130{transform:matrix(0.576848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576848,0.000000,0.000000,0.250000,0,0);}
.ma3_c01130{transform:matrix(0.580245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580245,0.000000,0.000000,0.250000,0,0);}
.m97_c01130{transform:matrix(0.921037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.921037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.921037,0.000000,0.000000,0.250000,0,0);}
.m99_c01130{transform:matrix(1.833309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.833309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.833309,0.000000,0.000000,0.250000,0,0);}
.v0_c01130{vertical-align:0.000000px;}
.ls29_c01130{letter-spacing:-2.993767px;}
.ls3_c01130{letter-spacing:-2.952180px;}
.ls4_c01130{letter-spacing:-2.619540px;}
.ls28_c01130{letter-spacing:-2.564100px;}
.ls15_c01130{letter-spacing:-2.224530px;}
.ls26_c01130{letter-spacing:-1.635480px;}
.ls2a_c01130{letter-spacing:-0.609840px;}
.ls16_c01130{letter-spacing:-0.112266px;}
.ls2_c01130{letter-spacing:0.000000px;}
.ls22_c01130{letter-spacing:0.059242px;}
.ls1d_c01130{letter-spacing:0.198000px;}
.ls21_c01130{letter-spacing:0.673210px;}
.ls24_c01130{letter-spacing:0.722710px;}
.ls25_c01130{letter-spacing:0.801900px;}
.ls20_c01130{letter-spacing:0.811800px;}
.ls10_c01130{letter-spacing:0.815443px;}
.ls23_c01130{letter-spacing:1.019700px;}
.ls1e_c01130{letter-spacing:1.376100px;}
.ls11_c01130{letter-spacing:1.826194px;}
.ls1a_c01130{letter-spacing:1.953072px;}
.ls7_c01130{letter-spacing:1.953428px;}
.ls1c_c01130{letter-spacing:2.679415px;}
.ls0_c01130{letter-spacing:2.806650px;}
.ls9_c01130{letter-spacing:3.306610px;}
.ls6_c01130{letter-spacing:3.425400px;}
.lsc_c01130{letter-spacing:3.564000px;}
.ls17_c01130{letter-spacing:3.603610px;}
.ls13_c01130{letter-spacing:3.643200px;}
.ls27_c01130{letter-spacing:3.663000px;}
.lsb_c01130{letter-spacing:3.672900px;}
.ls1_c01130{letter-spacing:3.742200px;}
.ls19_c01130{letter-spacing:3.781810px;}
.ls1b_c01130{letter-spacing:3.870900px;}
.lsd_c01130{letter-spacing:3.950110px;}
.ls12_c01130{letter-spacing:3.960000px;}
.lsa_c01130{letter-spacing:4.098610px;}
.lsf_c01130{letter-spacing:4.237200px;}
.ls1f_c01130{letter-spacing:12.830598px;}
.ls5_c01130{letter-spacing:28.512198px;}
.lse_c01130{letter-spacing:58.449798px;}
.ls14_c01130{letter-spacing:59.875398px;}
.ls8_c01130{letter-spacing:61.300998px;}
.ls18_c01130{letter-spacing:62.726400px;}
.sc__c01130{text-shadow:none;}
.sc0_c01130{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01130{-webkit-text-stroke:0px transparent;}
.sc0_c01130{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01130{word-spacing:-21.517650px;}
.ws3_c01130{word-spacing:-7.545226px;}
.ws2_c01130{word-spacing:-7.485984px;}
.ws5_c01130{word-spacing:0.000000px;}
.ws4_c01130{word-spacing:0.079200px;}
.ws1_c01130{word-spacing:1.365804px;}
._6_c01130{margin-left:-5.091570px;}
._0_c01130{margin-left:-3.106818px;}
._4_c01130{width:1.815066px;}
._9_c01130{width:3.798036px;}
._c_c01130{width:4.927635px;}
._b_c01130{width:6.654291px;}
._8_c01130{width:11.311542px;}
._a_c01130{width:12.842280px;}
._f_c01130{width:16.477511px;}
._2_c01130{width:19.162440px;}
._1_c01130{width:21.787920px;}
._3_c01130{width:27.027000px;}
._5_c01130{width:38.056194px;}
._d_c01130{width:41.090148px;}
._e_c01130{width:45.741856px;}
._10_c01130{width:50.397294px;}
._7_c01130{width:68.271588px;}
.fc0_c01130{color:transparent;}
.fs1e_c01130{font-size:3.960000px;}
.fs21_c01130{font-size:12.830598px;}
.fs24_c01130{font-size:13.464198px;}
.fs26_c01130{font-size:14.454198px;}
.fs27_c01130{font-size:16.038000px;}
.fs23_c01130{font-size:16.236000px;}
.fs2b_c01130{font-size:17.424000px;}
.fs1f_c01130{font-size:20.394000px;}
.fs5_c01130{font-size:21.186000px;}
.fs1_c01130{font-size:22.176000px;}
.fs25_c01130{font-size:26.928000px;}
.fs20_c01130{font-size:27.522000px;}
.fsd_c01130{font-size:27.720000px;}
.fs6_c01130{font-size:28.512198px;}
.fs9_c01130{font-size:32.076198px;}
.fs7_c01130{font-size:44.352000px;}
.fs28_c01130{font-size:46.728000px;}
.fs22_c01130{font-size:47.520000px;}
.fs2c_c01130{font-size:49.500000px;}
.fs2d_c01130{font-size:55.440000px;}
.fs12_c01130{font-size:58.449798px;}
.fs17_c01130{font-size:59.875398px;}
.fsa_c01130{font-size:61.300998px;}
.fs4_c01130{font-size:62.568000px;}
.fs1a_c01130{font-size:62.726400px;}
.fs18_c01130{font-size:63.558000px;}
.fsb_c01130{font-size:66.132198px;}
.fs3_c01130{font-size:66.330000px;}
.fs8_c01130{font-size:68.508000px;}
.fsf_c01130{font-size:70.092198px;}
.fs10_c01130{font-size:71.280000px;}
.fs19_c01130{font-size:72.072198px;}
.fs16_c01130{font-size:72.864000px;}
.fs29_c01130{font-size:73.260000px;}
.fse_c01130{font-size:73.458000px;}
.fs0_c01130{font-size:74.844000px;}
.fs1b_c01130{font-size:75.636198px;}
.fs1d_c01130{font-size:77.418000px;}
.fs11_c01130{font-size:79.002198px;}
.fs15_c01130{font-size:79.200000px;}
.fs1c_c01130{font-size:81.378000px;}
.fsc_c01130{font-size:81.972198px;}
.fs2_c01130{font-size:84.348000px;}
.fs13_c01130{font-size:84.744000px;}
.fs2a_c01130{font-size:85.536198px;}
.fs14_c01130{font-size:92.664000px;}
.y0_c01130{bottom:0.000000px;}
.y25_c01130{bottom:33.057135px;}
.y1_c01130{bottom:76.500000px;}
.y24_c01130{bottom:130.354335px;}
.y23_c01130{bottom:163.494585px;}
.y22_c01130{bottom:195.219135px;}
.y21_c01130{bottom:195.575535px;}
.y20_c01130{bottom:224.082585px;}
.y1f_c01130{bottom:228.364335px;}
.y1e_c01130{bottom:228.720735px;}
.y1d_c01130{bottom:247.253535px;}
.y1c_c01130{bottom:256.876335px;}
.y1b_c01130{bottom:261.865935px;}
.y1a_c01130{bottom:293.580585px;}
.y19_c01130{bottom:325.305135px;}
.y18_c01130{bottom:357.376185px;}
.y17_c01130{bottom:389.452185px;}
.y16_c01130{bottom:421.171785px;}
.y15_c01130{bottom:452.896335px;}
.y14_c01130{bottom:516.686985px;}
.y13_c01130{bottom:549.119385px;}
.y12_c01130{bottom:581.200335px;}
.y11_c01130{bottom:644.278185px;}
.y10_c01130{bottom:677.066985px;}
.yf_c01130{bottom:740.862585px;}
.ye_c01130{bottom:772.587135px;}
.yd_c01130{bottom:791.832735px;}
.yc_c01130{bottom:805.019535px;}
.ya_c01130{bottom:836.382735px;}
.yb_c01130{bottom:836.739135px;}
.y9_c01130{bottom:868.102335px;}
.y8_c01130{bottom:901.603935px;}
.y7_c01130{bottom:913.365135px;}
.y6_c01130{bottom:923.695785px;}
.y4_c01130{bottom:931.541535px;}
.y5_c01130{bottom:942.584985px;}
.y3_c01130{bottom:1001.752335px;}
.y2_c01130{bottom:1079.442585px;}
.h21_c01130{height:4.130156px;}
.h23_c01130{height:8.545178px;}
.h26_c01130{height:14.042738px;}
.h29_c01130{height:14.186005px;}
.h2a_c01130{height:15.740420px;}
.h25_c01130{height:16.933641px;}
.h2e_c01130{height:17.100703px;}
.h8_c01130{height:18.989124px;}
.h28_c01130{height:20.015596px;}
.h7_c01130{height:22.096336px;}
.h3_c01130{height:23.128875px;}
.h27_c01130{height:28.085063px;}
.h22_c01130{height:28.704586px;}
.hf_c01130{height:28.911094px;}
.hb_c01130{height:31.481034px;}
.h14_c01130{height:38.927565px;}
.h19_c01130{height:39.877015px;}
.hc_c01130{height:40.826465px;}
.h1c_c01130{height:41.775782px;}
.h2b_c01130{height:45.860977px;}
.h9_c01130{height:46.257750px;}
.h24_c01130{height:46.638281px;}
.h2f_c01130{height:51.626953px;}
.h30_c01130{height:57.822188px;}
.h1a_c01130{height:62.347667px;}
.h6_c01130{height:65.256469px;}
.ha_c01130{height:67.236855px;}
.hd_c01130{height:68.973816px;}
.h5_c01130{height:69.180117px;}
.h1b_c01130{height:70.734921px;}
.h1f_c01130{height:71.451703px;}
.h18_c01130{height:71.512031px;}
.h2c_c01130{height:71.900684px;}
.h10_c01130{height:72.095010px;}
.h11_c01130{height:73.103972px;}
.h2_c01130{height:73.455293px;}
.h1d_c01130{height:74.232792px;}
.h12_c01130{height:74.342813px;}
.h20_c01130{height:75.981533px;}
.h13_c01130{height:77.536337px;}
.h17_c01130{height:77.730469px;}
.h1e_c01130{height:79.868057px;}
.he_c01130{height:80.411204px;}
.h4_c01130{height:82.782949px;}
.h15_c01130{height:83.171602px;}
.h2d_c01130{height:83.949101px;}
.h16_c01130{height:90.944648px;}
.h1_c01130{height:1110.000000px;}
.h0_c01130{height:1263.000000px;}
.w1_c01130{width:775.500000px;}
.w0_c01130{width:892.500000px;}
.x0_c01130{left:0.000000px;}
.x1_c01130{left:58.500000px;}
.x35_c01130{left:77.320635px;}
.x5_c01130{left:79.112535px;}
.x3a_c01130{left:131.750835px;}
.x6_c01130{left:133.745685px;}
.x56_c01130{left:154.802985px;}
.x57_c01130{left:156.322635px;}
.x43_c01130{left:166.544385px;}
.x7_c01130{left:169.519335px;}
.x8d_c01130{left:175.637535px;}
.x27_c01130{left:177.444285px;}
.x58_c01130{left:187.403685px;}
.x8_c01130{left:188.631285px;}
.x28_c01130{left:200.065785px;}
.x59_c01130{left:209.535135px;}
.x3f_c01130{left:210.643935px;}
.x32_c01130{left:212.589285px;}
.x9_c01130{left:213.950535px;}
.x3b_c01130{left:220.895385px;}
.x12_c01130{left:222.118035px;}
.x8a_c01130{left:231.206235px;}
.x1a_c01130{left:233.592135px;}
.x33_c01130{left:244.061385px;}
.x13_c01130{left:256.327485px;}
.x2e_c01130{left:257.931285px;}
.x5a_c01130{left:267.123435px;}
.x44_c01130{left:275.439435px;}
.x1b_c01130{left:278.434185px;}
.x36_c01130{left:287.903535px;}
.x3c_c01130{left:289.051935px;}
.x5b_c01130{left:299.382585px;}
.xa_c01130{left:301.169535px;}
.x1c_c01130{left:310.856685px;}
.x34_c01130{left:312.356535px;}
.x68_c01130{left:319.944885px;}
.x5c_c01130{left:321.118035px;}
.x14_c01130{left:322.647585px;}
.x69_c01130{left:326.790735px;}
.x3d_c01130{left:332.107035px;}
.x29_c01130{left:333.735585px;}
.x81_c01130{left:342.412935px;}
.x1d_c01130{left:343.511835px;}
.xb_c01130{left:344.882985px;}
.x5f_c01130{left:353.619735px;}
.x45_c01130{left:354.985935px;}
.x52_c01130{left:356.743185px;}
.x82_c01130{left:364.960185px;}
.x15_c01130{left:367.039185px;}
.x4b_c01130{left:374.518635px;}
.x2f_c01130{left:376.864935px;}
.x1e_c01130{left:388.235085px;}
.x46_c01130{left:397.625235px;}
.x86_c01130{left:398.823135px;}
.xc_c01130{left:410.836785px;}
.x3e_c01130{left:412.806885px;}
.x53_c01130{left:418.761735px;}
.x5d_c01130{left:421.023885px;}
.x37_c01130{left:422.805885px;}
.x47_c01130{left:433.017735px;}
.xd_c01130{left:434.106735px;}
.x4_c01130{left:435.779835px;}
.x63_c01130{left:443.145435px;}
.x55_c01130{left:444.457185px;}
.x8b_c01130{left:452.154435px;}
.x38_c01130{left:453.634485px;}
.x2a_c01130{left:455.530335px;}
.x1f_c01130{left:456.965835px;}
.x16_c01130{left:464.633385px;}
.x54_c01130{left:465.945135px;}
.x6a_c01130{left:468.296385px;}
.x6b_c01130{left:470.796135px;}
.x4c_c01130{left:476.874735px;}
.x6c_c01130{left:478.567635px;}
.xe_c01130{left:487.482585px;}
.x60_c01130{left:498.352785px;}
.x20_c01130{left:501.134685px;}
.x6d_c01130{left:506.040135px;}
.x17_c01130{left:509.391285px;}
.x6e_c01130{left:515.964885px;}
.x21_c01130{left:519.627885px;}
.x40_c01130{left:521.840535px;}
.x6f_c01130{left:523.771035px;}
.x70_c01130{left:529.032885px;}
.x87_c01130{left:530.800035px;}
.x4d_c01130{left:532.596885px;}
.x71_c01130{left:534.141285px;}
.x61_c01130{left:542.001885px;}
.x22_c01130{left:545.199585px;}
.x30_c01130{left:553.070085px;}
.x2b_c01130{left:555.243135px;}
.x72_c01130{left:556.317285px;}
.x88_c01130{left:563.093835px;}
.x23_c01130{left:565.321335px;}
.x73_c01130{left:567.652785px;}
.x74_c01130{left:569.761485px;}
.x83_c01130{left:573.746235px;}
.x39_c01130{left:575.572785px;}
.x75_c01130{left:577.968585px;}
.x41_c01130{left:585.903435px;}
.x24_c01130{left:587.333985px;}
.x8c_c01130{left:588.526935px;}
.x76_c01130{left:595.095585px;}
.x64_c01130{left:597.110235px;}
.x84_c01130{left:598.441785px;}
.x77_c01130{left:603.357135px;}
.x5e_c01130{left:607.960635px;}
.x48_c01130{left:609.915885px;}
.x4e_c01130{left:617.474535px;}
.x42_c01130{left:619.009035px;}
.x18_c01130{left:620.627685px;}
.x65_c01130{left:629.839635px;}
.x25_c01130{left:631.591935px;}
.x80_c01130{left:636.690435px;}
.x49_c01130{left:640.086135px;}
.x85_c01130{left:641.472135px;}
.x78_c01130{left:647.035935px;}
.x62_c01130{left:651.708735px;}
.x19_c01130{left:653.381835px;}
.x79_c01130{left:654.965835px;}
.x7a_c01130{left:657.168585px;}
.x31_c01130{left:663.143235px;}
.x2c_c01130{left:664.964835px;}
.x4f_c01130{left:666.459735px;}
.x89_c01130{left:674.449035px;}
.x26_c01130{left:675.864735px;}
.x7b_c01130{left:677.443785px;}
.x7c_c01130{left:679.270335px;}
.x51_c01130{left:685.779585px;}
.x7d_c01130{left:695.342985px;}
.x66_c01130{left:696.347835px;}
.x50_c01130{left:697.842735px;}
.x4a_c01130{left:699.248535px;}
.x2_c01130{left:700.406835px;}
.x2d_c01130{left:701.629485px;}
.xf_c01130{left:704.916285px;}
.x10_c01130{left:706.940835px;}
.x11_c01130{left:709.049535px;}
.x7e_c01130{left:712.207635px;}
.x67_c01130{left:714.454935px;}
.x7f_c01130{left:725.849835px;}
.x3_c01130{left:745.892385px;}
@media print{
.v0_c01130{vertical-align:0.000000pt;}
.ls29_c01130{letter-spacing:-2.661126pt;}
.ls3_c01130{letter-spacing:-2.624160pt;}
.ls4_c01130{letter-spacing:-2.328480pt;}
.ls28_c01130{letter-spacing:-2.279200pt;}
.ls15_c01130{letter-spacing:-1.977360pt;}
.ls26_c01130{letter-spacing:-1.453760pt;}
.ls2a_c01130{letter-spacing:-0.542080pt;}
.ls16_c01130{letter-spacing:-0.099792pt;}
.ls2_c01130{letter-spacing:0.000000pt;}
.ls22_c01130{letter-spacing:0.052659pt;}
.ls1d_c01130{letter-spacing:0.176000pt;}
.ls21_c01130{letter-spacing:0.598409pt;}
.ls24_c01130{letter-spacing:0.642409pt;}
.ls25_c01130{letter-spacing:0.712800pt;}
.ls20_c01130{letter-spacing:0.721600pt;}
.ls10_c01130{letter-spacing:0.724838pt;}
.ls23_c01130{letter-spacing:0.906400pt;}
.ls1e_c01130{letter-spacing:1.223200pt;}
.ls11_c01130{letter-spacing:1.623283pt;}
.ls1a_c01130{letter-spacing:1.736064pt;}
.ls7_c01130{letter-spacing:1.736381pt;}
.ls1c_c01130{letter-spacing:2.381702pt;}
.ls0_c01130{letter-spacing:2.494800pt;}
.ls9_c01130{letter-spacing:2.939209pt;}
.ls6_c01130{letter-spacing:3.044800pt;}
.lsc_c01130{letter-spacing:3.168000pt;}
.ls17_c01130{letter-spacing:3.203209pt;}
.ls13_c01130{letter-spacing:3.238400pt;}
.ls27_c01130{letter-spacing:3.256000pt;}
.lsb_c01130{letter-spacing:3.264800pt;}
.ls1_c01130{letter-spacing:3.326400pt;}
.ls19_c01130{letter-spacing:3.361609pt;}
.ls1b_c01130{letter-spacing:3.440800pt;}
.lsd_c01130{letter-spacing:3.511209pt;}
.ls12_c01130{letter-spacing:3.520000pt;}
.lsa_c01130{letter-spacing:3.643209pt;}
.lsf_c01130{letter-spacing:3.766400pt;}
.ls1f_c01130{letter-spacing:11.404976pt;}
.ls5_c01130{letter-spacing:25.344176pt;}
.lse_c01130{letter-spacing:51.955376pt;}
.ls14_c01130{letter-spacing:53.222576pt;}
.ls8_c01130{letter-spacing:54.489776pt;}
.ls18_c01130{letter-spacing:55.756800pt;}
.ws0_c01130{word-spacing:-19.126800pt;}
.ws3_c01130{word-spacing:-6.706867pt;}
.ws2_c01130{word-spacing:-6.654208pt;}
.ws5_c01130{word-spacing:0.000000pt;}
.ws4_c01130{word-spacing:0.070400pt;}
.ws1_c01130{word-spacing:1.214048pt;}
._6_c01130{margin-left:-4.525840pt;}
._0_c01130{margin-left:-2.761616pt;}
._4_c01130{width:1.613392pt;}
._9_c01130{width:3.376032pt;}
._c_c01130{width:4.380120pt;}
._b_c01130{width:5.914925pt;}
._8_c01130{width:10.054704pt;}
._a_c01130{width:11.415360pt;}
._f_c01130{width:14.646676pt;}
._2_c01130{width:17.033280pt;}
._1_c01130{width:19.367040pt;}
._3_c01130{width:24.024000pt;}
._5_c01130{width:33.827728pt;}
._d_c01130{width:36.524576pt;}
._e_c01130{width:40.659428pt;}
._10_c01130{width:44.797595pt;}
._7_c01130{width:60.685856pt;}
.fs1e_c01130{font-size:3.520000pt;}
.fs21_c01130{font-size:11.404976pt;}
.fs24_c01130{font-size:11.968176pt;}
.fs26_c01130{font-size:12.848176pt;}
.fs27_c01130{font-size:14.256000pt;}
.fs23_c01130{font-size:14.432000pt;}
.fs2b_c01130{font-size:15.488000pt;}
.fs1f_c01130{font-size:18.128000pt;}
.fs5_c01130{font-size:18.832000pt;}
.fs1_c01130{font-size:19.712000pt;}
.fs25_c01130{font-size:23.936000pt;}
.fs20_c01130{font-size:24.464000pt;}
.fsd_c01130{font-size:24.640000pt;}
.fs6_c01130{font-size:25.344176pt;}
.fs9_c01130{font-size:28.512176pt;}
.fs7_c01130{font-size:39.424000pt;}
.fs28_c01130{font-size:41.536000pt;}
.fs22_c01130{font-size:42.240000pt;}
.fs2c_c01130{font-size:44.000000pt;}
.fs2d_c01130{font-size:49.280000pt;}
.fs12_c01130{font-size:51.955376pt;}
.fs17_c01130{font-size:53.222576pt;}
.fsa_c01130{font-size:54.489776pt;}
.fs4_c01130{font-size:55.616000pt;}
.fs1a_c01130{font-size:55.756800pt;}
.fs18_c01130{font-size:56.496000pt;}
.fsb_c01130{font-size:58.784176pt;}
.fs3_c01130{font-size:58.960000pt;}
.fs8_c01130{font-size:60.896000pt;}
.fsf_c01130{font-size:62.304176pt;}
.fs10_c01130{font-size:63.360000pt;}
.fs19_c01130{font-size:64.064176pt;}
.fs16_c01130{font-size:64.768000pt;}
.fs29_c01130{font-size:65.120000pt;}
.fse_c01130{font-size:65.296000pt;}
.fs0_c01130{font-size:66.528000pt;}
.fs1b_c01130{font-size:67.232176pt;}
.fs1d_c01130{font-size:68.816000pt;}
.fs11_c01130{font-size:70.224176pt;}
.fs15_c01130{font-size:70.400000pt;}
.fs1c_c01130{font-size:72.336000pt;}
.fsc_c01130{font-size:72.864176pt;}
.fs2_c01130{font-size:74.976000pt;}
.fs13_c01130{font-size:75.328000pt;}
.fs2a_c01130{font-size:76.032176pt;}
.fs14_c01130{font-size:82.368000pt;}
.y0_c01130{bottom:0.000000pt;}
.y25_c01130{bottom:29.384120pt;}
.y1_c01130{bottom:68.000000pt;}
.y24_c01130{bottom:115.870520pt;}
.y23_c01130{bottom:145.328520pt;}
.y22_c01130{bottom:173.528120pt;}
.y21_c01130{bottom:173.844920pt;}
.y20_c01130{bottom:199.184520pt;}
.y1f_c01130{bottom:202.990520pt;}
.y1e_c01130{bottom:203.307320pt;}
.y1d_c01130{bottom:219.780920pt;}
.y1c_c01130{bottom:228.334520pt;}
.y1b_c01130{bottom:232.769720pt;}
.y1a_c01130{bottom:260.960520pt;}
.y19_c01130{bottom:289.160120pt;}
.y18_c01130{bottom:317.667720pt;}
.y17_c01130{bottom:346.179720pt;}
.y16_c01130{bottom:374.374920pt;}
.y15_c01130{bottom:402.574520pt;}
.y14_c01130{bottom:459.277320pt;}
.y13_c01130{bottom:488.106120pt;}
.y12_c01130{bottom:516.622520pt;}
.y11_c01130{bottom:572.691720pt;}
.y10_c01130{bottom:601.837320pt;}
.yf_c01130{bottom:658.544520pt;}
.ye_c01130{bottom:686.744120pt;}
.yd_c01130{bottom:703.851320pt;}
.yc_c01130{bottom:715.572920pt;}
.ya_c01130{bottom:743.451320pt;}
.yb_c01130{bottom:743.768120pt;}
.y9_c01130{bottom:771.646520pt;}
.y8_c01130{bottom:801.425720pt;}
.y7_c01130{bottom:811.880120pt;}
.y6_c01130{bottom:821.062920pt;}
.y4_c01130{bottom:828.036920pt;}
.y5_c01130{bottom:837.853320pt;}
.y3_c01130{bottom:890.446520pt;}
.y2_c01130{bottom:959.504520pt;}
.h21_c01130{height:3.671250pt;}
.h23_c01130{height:7.595714pt;}
.h26_c01130{height:12.482434pt;}
.h29_c01130{height:12.609782pt;}
.h2a_c01130{height:13.991484pt;}
.h25_c01130{height:15.052125pt;}
.h2e_c01130{height:15.200625pt;}
.h8_c01130{height:16.879221pt;}
.h28_c01130{height:17.791641pt;}
.h7_c01130{height:19.641188pt;}
.h3_c01130{height:20.559000pt;}
.h27_c01130{height:24.964500pt;}
.h22_c01130{height:25.515188pt;}
.hf_c01130{height:25.698750pt;}
.hb_c01130{height:27.983141pt;}
.h14_c01130{height:34.602280pt;}
.h19_c01130{height:35.446236pt;}
.hc_c01130{height:36.290191pt;}
.h1c_c01130{height:37.134029pt;}
.h2b_c01130{height:40.765313pt;}
.h9_c01130{height:41.118000pt;}
.h24_c01130{height:41.456250pt;}
.h2f_c01130{height:45.890625pt;}
.h30_c01130{height:51.397500pt;}
.h1a_c01130{height:55.420148pt;}
.h6_c01130{height:58.005750pt;}
.ha_c01130{height:59.766094pt;}
.hd_c01130{height:61.310059pt;}
.h5_c01130{height:61.493438pt;}
.h1b_c01130{height:62.875485pt;}
.h1f_c01130{height:63.512625pt;}
.h18_c01130{height:63.566250pt;}
.h2c_c01130{height:63.911719pt;}
.h10_c01130{height:64.084453pt;}
.h11_c01130{height:64.981309pt;}
.h2_c01130{height:65.293594pt;}
.h1d_c01130{height:65.984704pt;}
.h12_c01130{height:66.082500pt;}
.h20_c01130{height:67.539141pt;}
.h13_c01130{height:68.921188pt;}
.h17_c01130{height:69.093750pt;}
.h1e_c01130{height:70.993828pt;}
.he_c01130{height:71.476626pt;}
.h4_c01130{height:73.584844pt;}
.h15_c01130{height:73.930313pt;}
.h2d_c01130{height:74.621423pt;}
.h16_c01130{height:80.839688pt;}
.h1_c01130{height:986.666667pt;}
.h0_c01130{height:1122.666667pt;}
.w1_c01130{width:689.333333pt;}
.w0_c01130{width:793.333333pt;}
.x0_c01130{left:0.000000pt;}
.x1_c01130{left:52.000000pt;}
.x35_c01130{left:68.729453pt;}
.x5_c01130{left:70.322253pt;}
.x3a_c01130{left:117.111853pt;}
.x6_c01130{left:118.885053pt;}
.x56_c01130{left:137.602653pt;}
.x57_c01130{left:138.953453pt;}
.x43_c01130{left:148.039453pt;}
.x7_c01130{left:150.683853pt;}
.x8d_c01130{left:156.122253pt;}
.x27_c01130{left:157.728253pt;}
.x58_c01130{left:166.581053pt;}
.x8_c01130{left:167.672253pt;}
.x28_c01130{left:177.836253pt;}
.x59_c01130{left:186.253453pt;}
.x3f_c01130{left:187.239053pt;}
.x32_c01130{left:188.968253pt;}
.x9_c01130{left:190.178253pt;}
.x3b_c01130{left:196.351453pt;}
.x12_c01130{left:197.438253pt;}
.x8a_c01130{left:205.516653pt;}
.x1a_c01130{left:207.637453pt;}
.x33_c01130{left:216.943453pt;}
.x13_c01130{left:227.846653pt;}
.x2e_c01130{left:229.272253pt;}
.x5a_c01130{left:237.443053pt;}
.x44_c01130{left:244.835053pt;}
.x1b_c01130{left:247.497053pt;}
.x36_c01130{left:255.914253pt;}
.x3c_c01130{left:256.935053pt;}
.x5b_c01130{left:266.117853pt;}
.xa_c01130{left:267.706253pt;}
.x1c_c01130{left:276.317053pt;}
.x34_c01130{left:277.650253pt;}
.x68_c01130{left:284.395453pt;}
.x5c_c01130{left:285.438253pt;}
.x14_c01130{left:286.797853pt;}
.x69_c01130{left:290.480653pt;}
.x3d_c01130{left:295.206253pt;}
.x29_c01130{left:296.653853pt;}
.x81_c01130{left:304.367053pt;}
.x1d_c01130{left:305.343853pt;}
.xb_c01130{left:306.562653pt;}
.x5f_c01130{left:314.328653pt;}
.x45_c01130{left:315.543053pt;}
.x52_c01130{left:317.105053pt;}
.x82_c01130{left:324.409053pt;}
.x15_c01130{left:326.257053pt;}
.x4b_c01130{left:332.905453pt;}
.x2f_c01130{left:334.991053pt;}
.x1e_c01130{left:345.097853pt;}
.x46_c01130{left:353.444653pt;}
.x86_c01130{left:354.509453pt;}
.xc_c01130{left:365.188253pt;}
.x3e_c01130{left:366.939453pt;}
.x53_c01130{left:372.232653pt;}
.x5d_c01130{left:374.243453pt;}
.x37_c01130{left:375.827453pt;}
.x47_c01130{left:384.904653pt;}
.xd_c01130{left:385.872653pt;}
.x4_c01130{left:387.359853pt;}
.x63_c01130{left:393.907053pt;}
.x55_c01130{left:395.073053pt;}
.x8b_c01130{left:401.915053pt;}
.x38_c01130{left:403.230653pt;}
.x2a_c01130{left:404.915853pt;}
.x1f_c01130{left:406.191853pt;}
.x16_c01130{left:413.007453pt;}
.x54_c01130{left:414.173453pt;}
.x6a_c01130{left:416.263453pt;}
.x6b_c01130{left:418.485453pt;}
.x4c_c01130{left:423.888653pt;}
.x6c_c01130{left:425.393453pt;}
.xe_c01130{left:433.317853pt;}
.x60_c01130{left:442.980253pt;}
.x20_c01130{left:445.453053pt;}
.x6d_c01130{left:449.813453pt;}
.x17_c01130{left:452.792253pt;}
.x6e_c01130{left:458.635453pt;}
.x21_c01130{left:461.891453pt;}
.x40_c01130{left:463.858253pt;}
.x6f_c01130{left:465.574253pt;}
.x70_c01130{left:470.251453pt;}
.x87_c01130{left:471.822253pt;}
.x4d_c01130{left:473.419453pt;}
.x71_c01130{left:474.792253pt;}
.x61_c01130{left:481.779453pt;}
.x22_c01130{left:484.621853pt;}
.x30_c01130{left:491.617853pt;}
.x2b_c01130{left:493.549453pt;}
.x72_c01130{left:494.504253pt;}
.x88_c01130{left:500.527853pt;}
.x23_c01130{left:502.507853pt;}
.x73_c01130{left:504.580253pt;}
.x74_c01130{left:506.454653pt;}
.x83_c01130{left:509.996653pt;}
.x39_c01130{left:511.620253pt;}
.x75_c01130{left:513.749853pt;}
.x41_c01130{left:520.803053pt;}
.x24_c01130{left:522.074653pt;}
.x8c_c01130{left:523.135053pt;}
.x76_c01130{left:528.973853pt;}
.x64_c01130{left:530.764653pt;}
.x84_c01130{left:531.948253pt;}
.x77_c01130{left:536.317453pt;}
.x5e_c01130{left:540.409453pt;}
.x48_c01130{left:542.147453pt;}
.x4e_c01130{left:548.866253pt;}
.x42_c01130{left:550.230253pt;}
.x18_c01130{left:551.669053pt;}
.x65_c01130{left:559.857453pt;}
.x25_c01130{left:561.415053pt;}
.x80_c01130{left:565.947053pt;}
.x49_c01130{left:568.965453pt;}
.x85_c01130{left:570.197453pt;}
.x78_c01130{left:575.143053pt;}
.x62_c01130{left:579.296653pt;}
.x19_c01130{left:580.783853pt;}
.x79_c01130{left:582.191853pt;}
.x7a_c01130{left:584.149853pt;}
.x31_c01130{left:589.460653pt;}
.x2c_c01130{left:591.079853pt;}
.x4f_c01130{left:592.408653pt;}
.x89_c01130{left:599.510253pt;}
.x26_c01130{left:600.768653pt;}
.x7b_c01130{left:602.172253pt;}
.x7c_c01130{left:603.795853pt;}
.x51_c01130{left:609.581853pt;}
.x7d_c01130{left:618.082653pt;}
.x66_c01130{left:618.975853pt;}
.x50_c01130{left:620.304653pt;}
.x4a_c01130{left:621.554253pt;}
.x2_c01130{left:622.583853pt;}
.x2d_c01130{left:623.670653pt;}
.xf_c01130{left:626.592253pt;}
.x10_c01130{left:628.391853pt;}
.x11_c01130{left:630.266253pt;}
.x7e_c01130{left:633.073453pt;}
.x67_c01130{left:635.071053pt;}
.x7f_c01130{left:645.199853pt;}
.x3_c01130{left:663.015453pt;}
}





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

.ir_c01131:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01131{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01131;src:url('chunks/assets/font_068fff3079e385b6b3c2696c.woff2')format("woff");}.ff1_c01131{font-family:ff1_c01131;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01131;src:url('chunks/assets/font_a0be0eb13d35c6f51353b8fa.woff2')format("woff");}.ff2_c01131{font-family:ff2_c01131;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01131;src:url('chunks/assets/font_f14efab7d9d93c119c74dacf.woff2')format("woff");}.ff3_c01131{font-family:ff3_c01131;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01131;src:url('chunks/assets/font_4cdb068c4d43197ba098daa8.woff2')format("woff");}.ff4_c01131{font-family:ff4_c01131;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01131;src:url('chunks/assets/font_7f15953fa8010f18c45c7ddc.woff2')format("woff");}.ff5_c01131{font-family:ff5_c01131;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1d_c01131{transform:matrix(0.060038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060038,0.000000,0.000000,0.250000,0,0);}
.m20_c01131{transform:matrix(0.147531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147531,0.000000,0.000000,0.250000,0,0);}
.m23_c01131{transform:matrix(0.155148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155148,0.000000,0.000000,0.250000,0,0);}
.m1e_c01131{transform:matrix(0.159700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159700,0.000000,0.000000,0.250000,0,0);}
.m31_c01131{transform:matrix(0.164300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164300,0.000000,0.000000,0.250000,0,0);}
.m2d_c01131{transform:matrix(0.172079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172079,0.000000,0.000000,0.250000,0,0);}
.m2c_c01131{transform:matrix(0.175664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175664,0.000000,0.000000,0.250000,0,0);}
.m2e_c01131{transform:matrix(0.181819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181819,0.000000,0.000000,0.250000,0,0);}
.m4f_c01131{transform:matrix(0.186805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186805,0.000000,0.000000,0.250000,0,0);}
.m4a_c01131{transform:matrix(0.205074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205074,0.000000,0.000000,0.250000,0,0);}
.m38_c01131{transform:matrix(0.233370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233370,0.000000,0.000000,0.250000,0,0);}
.m1a_c01131{transform:matrix(0.243971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243971,0.000000,0.000000,0.250000,0,0);}
.m0_c01131{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m11_c01131{transform:matrix(0.250010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250010,0.000000,0.000000,0.250000,0,0);}
.m26_c01131{transform:matrix(0.250252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250252,0.000000,0.000000,0.250000,0,0);}
.m7_c01131{transform:matrix(0.251404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251404,0.000000,0.000000,0.250000,0,0);}
.m22_c01131{transform:matrix(0.251512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251512,0.000000,0.000000,0.250000,0,0);}
.m1b_c01131{transform:matrix(0.252719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252719,0.000000,0.000000,0.250000,0,0);}
.m37_c01131{transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);}
.m8_c01131{transform:matrix(0.255627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255627,0.000000,0.000000,0.250000,0,0);}
.m28_c01131{transform:matrix(0.256345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256345,0.000000,0.000000,0.250000,0,0);}
.m30_c01131{transform:matrix(0.257206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257206,0.000000,0.000000,0.250000,0,0);}
.m55_c01131{transform:matrix(0.257779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257779,0.000000,0.000000,0.250000,0,0);}
.m2_c01131{transform:matrix(0.260353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260353,0.000000,0.000000,0.250000,0,0);}
.m9_c01131{transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);}
.m32_c01131{transform:matrix(0.261082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261082,0.000000,0.000000,0.250000,0,0);}
.m29_c01131{transform:matrix(0.261126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261126,0.000000,0.000000,0.250000,0,0);}
.m24_c01131{transform:matrix(0.261191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261191,0.000000,0.000000,0.250000,0,0);}
.m14_c01131{transform:matrix(0.263191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263191,0.000000,0.000000,0.250000,0,0);}
.m36_c01131{transform:matrix(0.264688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264688,0.000000,0.000000,0.250000,0,0);}
.m2a_c01131{transform:matrix(0.264711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264711,0.000000,0.000000,0.250000,0,0);}
.m18_c01131{transform:matrix(0.265499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265499,0.000000,0.000000,0.250000,0,0);}
.m4_c01131{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.m6_c01131{transform:matrix(0.267002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267002,0.000000,0.000000,0.250000,0,0);}
.m16_c01131{transform:matrix(0.267153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267153,0.000000,0.000000,0.250000,0,0);}
.m3f_c01131{transform:matrix(0.268141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268141,0.000000,0.000000,0.250000,0,0);}
.m3e_c01131{transform:matrix(0.268934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268934,0.000000,0.000000,0.250000,0,0);}
.m3d_c01131{transform:matrix(0.268967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268967,0.000000,0.000000,0.250000,0,0);}
.m5b_c01131{transform:matrix(0.270399,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270399,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270399,0.000000,0.000000,0.250000,0,0);}
.m41_c01131{transform:matrix(0.271282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271282,0.000000,0.000000,0.250000,0,0);}
.m3a_c01131{transform:matrix(0.271618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271618,0.000000,0.000000,0.250000,0,0);}
.m59_c01131{transform:matrix(0.271931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271931,0.000000,0.000000,0.250000,0,0);}
.mf_c01131{transform:matrix(0.273830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273830,0.000000,0.000000,0.250000,0,0);}
.m1f_c01131{transform:matrix(0.274437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274437,0.000000,0.000000,0.250000,0,0);}
.m19_c01131{transform:matrix(0.275386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275386,0.000000,0.000000,0.250000,0,0);}
.m39_c01131{transform:matrix(0.275990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275990,0.000000,0.000000,0.250000,0,0);}
.md_c01131{transform:matrix(0.276088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276088,0.000000,0.000000,0.250000,0,0);}
.m17_c01131{transform:matrix(0.278437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278437,0.000000,0.000000,0.250000,0,0);}
.m21_c01131{transform:matrix(0.278807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278807,0.000000,0.000000,0.250000,0,0);}
.me_c01131{transform:matrix(0.279877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279877,0.000000,0.000000,0.250000,0,0);}
.m56_c01131{transform:matrix(0.280030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280030,0.000000,0.000000,0.250000,0,0);}
.mc_c01131{transform:matrix(0.280536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280536,0.000000,0.000000,0.250000,0,0);}
.m3_c01131{transform:matrix(0.281659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281659,0.000000,0.000000,0.250000,0,0);}
.m10_c01131{transform:matrix(0.283608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283608,0.000000,0.000000,0.250000,0,0);}
.m50_c01131{transform:matrix(0.284164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284164,0.000000,0.000000,0.250000,0,0);}
.m25_c01131{transform:matrix(0.284615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284615,0.000000,0.000000,0.250000,0,0);}
.m1c_c01131{transform:matrix(0.287556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287556,0.000000,0.000000,0.250000,0,0);}
.m15_c01131{transform:matrix(0.289377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289377,0.000000,0.000000,0.250000,0,0);}
.m4e_c01131{transform:matrix(0.292740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292740,0.000000,0.000000,0.250000,0,0);}
.m12_c01131{transform:matrix(0.292962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292962,0.000000,0.000000,0.250000,0,0);}
.m4d_c01131{transform:matrix(0.293261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293261,0.000000,0.000000,0.250000,0,0);}
.m1_c01131{transform:matrix(0.294627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294627,0.000000,0.000000,0.250000,0,0);}
.m57_c01131{transform:matrix(0.294854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294854,0.000000,0.000000,0.250000,0,0);}
.m51_c01131{transform:matrix(0.295388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295388,0.000000,0.000000,0.250000,0,0);}
.m27_c01131{transform:matrix(0.300125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300125,0.000000,0.000000,0.250000,0,0);}
.m33_c01131{transform:matrix(0.301133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301133,0.000000,0.000000,0.250000,0,0);}
.m2f_c01131{transform:matrix(0.301329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301329,0.000000,0.000000,0.250000,0,0);}
.m58_c01131{transform:matrix(0.301713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301713,0.000000,0.000000,0.250000,0,0);}
.m5a_c01131{transform:matrix(0.302048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302048,0.000000,0.000000,0.250000,0,0);}
.m52_c01131{transform:matrix(0.303637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303637,0.000000,0.000000,0.250000,0,0);}
.m34_c01131{transform:matrix(0.304940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304940,0.000000,0.000000,0.250000,0,0);}
.m3c_c01131{transform:matrix(0.311141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311141,0.000000,0.000000,0.250000,0,0);}
.m2b_c01131{transform:matrix(0.312414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312414,0.000000,0.000000,0.250000,0,0);}
.mb_c01131{transform:matrix(0.312561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312561,0.000000,0.000000,0.250000,0,0);}
.m13_c01131{transform:matrix(0.314240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314240,0.000000,0.000000,0.250000,0,0);}
.m53_c01131{transform:matrix(0.317919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317919,0.000000,0.000000,0.250000,0,0);}
.m35_c01131{transform:matrix(0.326105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326105,0.000000,0.000000,0.250000,0,0);}
.ma_c01131{transform:matrix(0.333044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333044,0.000000,0.000000,0.250000,0,0);}
.m3b_c01131{transform:matrix(0.335883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335883,0.000000,0.000000,0.250000,0,0);}
.m54_c01131{transform:matrix(0.362938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362938,0.000000,0.000000,0.250000,0,0);}
.m5_c01131{transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);}
.m48_c01131{transform:matrix(0.398512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398512,0.000000,0.000000,0.250000,0,0);}
.m4c_c01131{transform:matrix(0.461836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461836,0.000000,0.000000,0.250000,0,0);}
.m47_c01131{transform:matrix(0.613008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613008,0.000000,0.000000,0.250000,0,0);}
.m40_c01131{transform:matrix(0.743974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.743974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.743974,0.000000,0.000000,0.250000,0,0);}
.m4b_c01131{transform:matrix(0.772821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.772821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.772821,0.000000,0.000000,0.250000,0,0);}
.m44_c01131{transform:matrix(0.809558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.809558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.809558,0.000000,0.000000,0.250000,0,0);}
.m43_c01131{transform:matrix(1.065800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.065800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.065800,0.000000,0.000000,0.250000,0,0);}
.m46_c01131{transform:matrix(1.300767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.300767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.300767,0.000000,0.000000,0.250000,0,0);}
.m49_c01131{transform:matrix(1.329330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.329330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.329330,0.000000,0.000000,0.250000,0,0);}
.m42_c01131{transform:matrix(1.794292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.794292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.794292,0.000000,0.000000,0.250000,0,0);}
.m45_c01131{transform:matrix(1.857825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.857825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.857825,0.000000,0.000000,0.250000,0,0);}
.v0_c01131{vertical-align:0.000000px;}
.ls15_c01131{letter-spacing:-3.042277px;}
.lsa_c01131{letter-spacing:-2.855167px;}
.lsc_c01131{letter-spacing:-2.550240px;}
.ls19_c01131{letter-spacing:-1.358280px;}
.ls1e_c01131{letter-spacing:-0.032630px;}
.ls4_c01131{letter-spacing:0.000000px;}
.ls2_c01131{letter-spacing:0.132759px;}
.ls11_c01131{letter-spacing:0.183903px;}
.ls0_c01131{letter-spacing:0.261044px;}
.ls3_c01131{letter-spacing:0.286110px;}
.ls17_c01131{letter-spacing:0.297000px;}
.ls18_c01131{letter-spacing:0.485110px;}
.ls1b_c01131{letter-spacing:0.891000px;}
.ls9_c01131{letter-spacing:1.672312px;}
.ls16_c01131{letter-spacing:1.683000px;}
.ls1a_c01131{letter-spacing:1.940400px;}
.ls13_c01131{letter-spacing:2.479916px;}
.ls10_c01131{letter-spacing:2.574641px;}
.ls12_c01131{letter-spacing:3.247200px;}
.lsf_c01131{letter-spacing:3.316500px;}
.ls1d_c01131{letter-spacing:3.425400px;}
.ls1_c01131{letter-spacing:3.540407px;}
.ls21_c01131{letter-spacing:3.630141px;}
.ls1f_c01131{letter-spacing:3.638298px;}
.ls5_c01131{letter-spacing:3.643200px;}
.lse_c01131{letter-spacing:3.821400px;}
.ls6_c01131{letter-spacing:3.899342px;}
.ls20_c01131{letter-spacing:3.979810px;}
.ls7_c01131{letter-spacing:4.078810px;}
.ls8_c01131{letter-spacing:4.365900px;}
.ls1c_c01131{letter-spacing:51.321798px;}
.lsb_c01131{letter-spacing:58.449798px;}
.ls14_c01131{letter-spacing:62.726400px;}
.lsd_c01131{letter-spacing:64.152198px;}
.sc__c01131{text-shadow:none;}
.sc0_c01131{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01131{-webkit-text-stroke:0px transparent;}
.sc0_c01131{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01131{word-spacing:0.000000px;}
._2_c01131{margin-left:-11.420689px;}
._3_c01131{margin-left:-3.330479px;}
._5_c01131{width:4.521319px;}
._7_c01131{width:5.656464px;}
._4_c01131{width:13.147200px;}
._c_c01131{width:16.806240px;}
._d_c01131{width:19.305000px;}
._10_c01131{width:20.653380px;}
._9_c01131{width:23.907323px;}
._e_c01131{width:25.047000px;}
._a_c01131{width:28.389509px;}
._0_c01131{width:31.431221px;}
._1_c01131{width:34.574814px;}
._8_c01131{width:37.871460px;}
._6_c01131{width:68.706627px;}
._11_c01131{width:95.272848px;}
._b_c01131{width:104.279670px;}
._f_c01131{width:142.280820px;}
.fc0_c01131{color:transparent;}
.fs11_c01131{font-size:5.940000px;}
.fs12_c01131{font-size:9.702198px;}
.fs14_c01131{font-size:17.820000px;}
.fs18_c01131{font-size:22.176000px;}
.fs1b_c01131{font-size:23.166000px;}
.fs0_c01131{font-size:27.720000px;}
.fs8_c01131{font-size:29.502000px;}
.fs19_c01131{font-size:33.264000px;}
.fs10_c01131{font-size:33.660000px;}
.fs13_c01131{font-size:38.808000px;}
.fs1e_c01131{font-size:44.748000px;}
.fs1d_c01131{font-size:50.292000px;}
.fs15_c01131{font-size:51.321798px;}
.fsa_c01131{font-size:58.449798px;}
.fse_c01131{font-size:62.726400px;}
.fsb_c01131{font-size:64.152198px;}
.fsd_c01131{font-size:64.944000px;}
.fs9_c01131{font-size:66.330000px;}
.fs1a_c01131{font-size:67.320000px;}
.fs6_c01131{font-size:68.112198px;}
.fs16_c01131{font-size:68.508000px;}
.fs5_c01131{font-size:69.300000px;}
.fs1_c01131{font-size:72.864000px;}
.fs3_c01131{font-size:74.844000px;}
.fsc_c01131{font-size:76.428000px;}
.fs1c_c01131{font-size:77.616198px;}
.fs17_c01131{font-size:79.596198px;}
.fs7_c01131{font-size:79.992198px;}
.fs2_c01131{font-size:81.576198px;}
.fsf_c01131{font-size:86.922198px;}
.fs4_c01131{font-size:87.318000px;}
.y0_c01131{bottom:0.000000px;}
.y1_c01131{bottom:76.500000px;}
.y13_c01131{bottom:179.537535px;}
.y1d_c01131{bottom:280.042335px;}
.y1c_c01131{bottom:290.729385px;}
.y1b_c01131{bottom:294.298335px;}
.y1a_c01131{bottom:310.336335px;}
.y19_c01131{bottom:313.895385px;}
.y18_c01131{bottom:322.805385px;}
.y17_c01131{bottom:335.279385px;}
.y16_c01131{bottom:413.692335px;}
.y12_c01131{bottom:415.830735px;}
.y15_c01131{bottom:416.899935px;}
.y14_c01131{bottom:423.666585px;}
.y11_c01131{bottom:479.977785px;}
.y10_c01131{bottom:512.766585px;}
.yf_c01131{bottom:544.486185px;}
.ye_c01131{bottom:573.003135px;}
.yd_c01131{bottom:576.567135px;}
.yc_c01131{bottom:608.281785px;}
.yb_c01131{bottom:640.006335px;}
.ya_c01131{bottom:672.077385px;}
.y9_c01131{bottom:703.801935px;}
.y8_c01131{bottom:734.808735px;}
.y7_c01131{bottom:736.234335px;}
.y6_c01131{bottom:800.029935px;}
.y5_c01131{bottom:863.820585px;}
.y4_c01131{bottom:927.977535px;}
.y3_c01131{bottom:1075.878585px;}
.y2_c01131{bottom:1102.964985px;}
.h11_c01131{height:5.829785px;}
.h12_c01131{height:9.522177px;}
.h14_c01131{height:18.585703px;}
.h18_c01131{height:23.128875px;}
.h1b_c01131{height:24.161414px;}
.h2_c01131{height:28.911094px;}
.h10_c01131{height:33.035449px;}
.h15_c01131{height:34.180317px;}
.h19_c01131{height:34.693313px;}
.h8_c01131{height:38.927565px;}
.h13_c01131{height:40.475531px;}
.he_c01131{height:41.775782px;}
.h9_c01131{height:42.725364px;}
.h1e_c01131{height:43.917715px;}
.h1d_c01131{height:49.358848px;}
.h1a_c01131{height:66.070898px;}
.hd_c01131{height:67.734563px;}
.hb_c01131{height:69.180117px;}
.hc_c01131{height:71.038894px;}
.h16_c01131{height:71.451703px;}
.h3_c01131{height:71.512031px;}
.h5_c01131{height:73.455293px;}
.ha_c01131{height:74.972584px;}
.h17_c01131{height:78.119315px;}
.h7_c01131{height:78.507968px;}
.h4_c01131{height:80.062577px;}
.h1c_c01131{height:80.951269px;}
.hf_c01131{height:85.309384px;}
.h6_c01131{height:85.697842px;}
.h1_c01131{height:1110.000000px;}
.h0_c01131{height:1263.000000px;}
.w1_c01131{width:775.500000px;}
.w0_c01131{width:892.500000px;}
.x0_c01131{left:0.000000px;}
.x1_c01131{left:58.500000px;}
.x1b_c01131{left:74.469435px;}
.x4_c01131{left:76.256385px;}
.x37_c01131{left:129.592635px;}
.x5_c01131{left:131.374635px;}
.x3c_c01131{left:159.678735px;}
.x38_c01131{left:164.064435px;}
.x6_c01131{left:165.381135px;}
.x3d_c01131{left:174.494085px;}
.x4e_c01131{left:175.701885px;}
.xd_c01131{left:176.884935px;}
.x23_c01131{left:182.745735px;}
.x1c_c01131{left:184.488135px;}
.x16_c01131{left:185.928585px;}
.x24_c01131{left:197.793735px;}
.xe_c01131{left:208.951035px;}
.x53_c01131{left:229.889535px;}
.x3e_c01131{left:236.799735px;}
.x32_c01131{left:241.710135px;}
.x7_c01131{left:253.357485px;}
.x3f_c01131{left:259.980585px;}
.x1d_c01131{left:264.034635px;}
.x2d_c01131{left:273.350535px;}
.x4f_c01131{left:274.419735px;}
.x8_c01131{left:276.340335px;}
.x39_c01131{left:285.903735px;}
.x25_c01131{left:296.838285px;}
.x17_c01131{left:298.041135px;}
.x33_c01131{left:308.738085px;}
.x54_c01131{left:329.265735px;}
.x18_c01131{left:330.651735px;}
.xf_c01131{left:332.230785px;}
.x9_c01131{left:342.224835px;}
.x40_c01131{left:359.980485px;}
.x2e_c01131{left:361.737735px;}
.x19_c01131{left:363.895935px;}
.x10_c01131{left:365.049285px;}
.xa_c01131{left:376.439235px;}
.x34_c01131{left:386.388735px;}
.x41_c01131{left:392.605935px;}
.x3a_c01131{left:395.902635px;}
.x11_c01131{left:398.387535px;}
.x1a_c01131{left:407.267835px;}
.x26_c01131{left:409.594335px;}
.x42_c01131{left:413.336535px;}
.x43_c01131{left:416.247135px;}
.x1e_c01131{left:419.128035px;}
.x2f_c01131{left:420.593235px;}
.x44_c01131{left:428.503335px;}
.xb_c01131{left:430.968435px;}
.x55_c01131{left:440.284335px;}
.x2a_c01131{left:443.734485px;}
.x50_c01131{left:450.416985px;}
.x45_c01131{left:453.332535px;}
.x46_c01131{left:459.579435px;}
.x12_c01131{left:463.207785px;}
.xc_c01131{left:464.494785px;}
.x2b_c01131{left:473.607735px;}
.x27_c01131{left:486.918285px;}
.x2_c01131{left:504.896685px;}
.x3b_c01131{left:506.040135px;}
.x13_c01131{left:507.143985px;}
.x47_c01131{left:512.732535px;}
.x48_c01131{left:517.043985px;}
.x2c_c01131{left:519.320985px;}
.x1f_c01131{left:530.438685px;}
.x14_c01131{left:532.057335px;}
.x35_c01131{left:539.888235px;}
.x20_c01131{left:551.357385px;}
.x49_c01131{left:557.188485px;}
.x30_c01131{left:572.592885px;}
.x15_c01131{left:574.934235px;}
.x51_c01131{left:584.997585px;}
.x21_c01131{left:593.392785px;}
.x28_c01131{left:595.412385px;}
.x4a_c01131{left:599.634735px;}
.x31_c01131{left:606.935985px;}
.x4b_c01131{left:609.148635px;}
.x56_c01131{left:617.509185px;}
.x4c_c01131{left:646.016235px;}
.x29_c01131{left:661.465185px;}
.x4d_c01131{left:682.745235px;}
.x3_c01131{left:694.709385px;}
.x36_c01131{left:695.803335px;}
.x5b_c01131{left:697.352685px;}
.x57_c01131{left:698.397135px;}
.x58_c01131{left:699.515835px;}
.x59_c01131{left:701.109735px;}
.x5a_c01131{left:702.649185px;}
.x5c_c01131{left:703.748085px;}
.x52_c01131{left:705.822135px;}
.x22_c01131{left:729.161385px;}
@media print{
.v0_c01131{vertical-align:0.000000pt;}
.ls15_c01131{letter-spacing:-2.704246pt;}
.lsa_c01131{letter-spacing:-2.537926pt;}
.lsc_c01131{letter-spacing:-2.266880pt;}
.ls19_c01131{letter-spacing:-1.207360pt;}
.ls1e_c01131{letter-spacing:-0.029005pt;}
.ls4_c01131{letter-spacing:0.000000pt;}
.ls2_c01131{letter-spacing:0.118008pt;}
.ls11_c01131{letter-spacing:0.163469pt;}
.ls0_c01131{letter-spacing:0.232039pt;}
.ls3_c01131{letter-spacing:0.254320pt;}
.ls17_c01131{letter-spacing:0.264000pt;}
.ls18_c01131{letter-spacing:0.431209pt;}
.ls1b_c01131{letter-spacing:0.792000pt;}
.ls9_c01131{letter-spacing:1.486500pt;}
.ls16_c01131{letter-spacing:1.496000pt;}
.ls1a_c01131{letter-spacing:1.724800pt;}
.ls13_c01131{letter-spacing:2.204370pt;}
.ls10_c01131{letter-spacing:2.288570pt;}
.ls12_c01131{letter-spacing:2.886400pt;}
.lsf_c01131{letter-spacing:2.948000pt;}
.ls1d_c01131{letter-spacing:3.044800pt;}
.ls1_c01131{letter-spacing:3.147028pt;}
.ls21_c01131{letter-spacing:3.226792pt;}
.ls1f_c01131{letter-spacing:3.234043pt;}
.ls5_c01131{letter-spacing:3.238400pt;}
.lse_c01131{letter-spacing:3.396800pt;}
.ls6_c01131{letter-spacing:3.466082pt;}
.ls20_c01131{letter-spacing:3.537609pt;}
.ls7_c01131{letter-spacing:3.625609pt;}
.ls8_c01131{letter-spacing:3.880800pt;}
.ls1c_c01131{letter-spacing:45.619376pt;}
.lsb_c01131{letter-spacing:51.955376pt;}
.ls14_c01131{letter-spacing:55.756800pt;}
.lsd_c01131{letter-spacing:57.024176pt;}
.ws0_c01131{word-spacing:0.000000pt;}
._2_c01131{margin-left:-10.151724pt;}
._3_c01131{margin-left:-2.960426pt;}
._5_c01131{width:4.018950pt;}
._7_c01131{width:5.027968pt;}
._4_c01131{width:11.686400pt;}
._c_c01131{width:14.938880pt;}
._d_c01131{width:17.160000pt;}
._10_c01131{width:18.358560pt;}
._9_c01131{width:21.250954pt;}
._e_c01131{width:22.264000pt;}
._a_c01131{width:25.235120pt;}
._0_c01131{width:27.938863pt;}
._1_c01131{width:30.733168pt;}
._8_c01131{width:33.663520pt;}
._6_c01131{width:61.072557pt;}
._11_c01131{width:84.686976pt;}
._b_c01131{width:92.693040pt;}
._f_c01131{width:126.471840pt;}
.fs11_c01131{font-size:5.280000pt;}
.fs12_c01131{font-size:8.624176pt;}
.fs14_c01131{font-size:15.840000pt;}
.fs18_c01131{font-size:19.712000pt;}
.fs1b_c01131{font-size:20.592000pt;}
.fs0_c01131{font-size:24.640000pt;}
.fs8_c01131{font-size:26.224000pt;}
.fs19_c01131{font-size:29.568000pt;}
.fs10_c01131{font-size:29.920000pt;}
.fs13_c01131{font-size:34.496000pt;}
.fs1e_c01131{font-size:39.776000pt;}
.fs1d_c01131{font-size:44.704000pt;}
.fs15_c01131{font-size:45.619376pt;}
.fsa_c01131{font-size:51.955376pt;}
.fse_c01131{font-size:55.756800pt;}
.fsb_c01131{font-size:57.024176pt;}
.fsd_c01131{font-size:57.728000pt;}
.fs9_c01131{font-size:58.960000pt;}
.fs1a_c01131{font-size:59.840000pt;}
.fs6_c01131{font-size:60.544176pt;}
.fs16_c01131{font-size:60.896000pt;}
.fs5_c01131{font-size:61.600000pt;}
.fs1_c01131{font-size:64.768000pt;}
.fs3_c01131{font-size:66.528000pt;}
.fsc_c01131{font-size:67.936000pt;}
.fs1c_c01131{font-size:68.992176pt;}
.fs17_c01131{font-size:70.752176pt;}
.fs7_c01131{font-size:71.104176pt;}
.fs2_c01131{font-size:72.512176pt;}
.fsf_c01131{font-size:77.264176pt;}
.fs4_c01131{font-size:77.616000pt;}
.y0_c01131{bottom:0.000000pt;}
.y1_c01131{bottom:68.000000pt;}
.y13_c01131{bottom:159.588920pt;}
.y1d_c01131{bottom:248.926520pt;}
.y1c_c01131{bottom:258.426120pt;}
.y1b_c01131{bottom:261.598520pt;}
.y1a_c01131{bottom:275.854520pt;}
.y19_c01131{bottom:279.018120pt;}
.y18_c01131{bottom:286.938120pt;}
.y17_c01131{bottom:298.026120pt;}
.y16_c01131{bottom:367.726520pt;}
.y12_c01131{bottom:369.627320pt;}
.y15_c01131{bottom:370.577720pt;}
.y14_c01131{bottom:376.592520pt;}
.y11_c01131{bottom:426.646920pt;}
.y10_c01131{bottom:455.792520pt;}
.yf_c01131{bottom:483.987720pt;}
.ye_c01131{bottom:509.336120pt;}
.yd_c01131{bottom:512.504120pt;}
.yc_c01131{bottom:540.694920pt;}
.yb_c01131{bottom:568.894520pt;}
.ya_c01131{bottom:597.402120pt;}
.y9_c01131{bottom:625.601720pt;}
.y8_c01131{bottom:653.163320pt;}
.y7_c01131{bottom:654.430520pt;}
.y6_c01131{bottom:711.137720pt;}
.y5_c01131{bottom:767.840520pt;}
.y4_c01131{bottom:824.868920pt;}
.y3_c01131{bottom:956.336520pt;}
.y2_c01131{bottom:980.413320pt;}
.h11_c01131{height:5.182031pt;}
.h12_c01131{height:8.464157pt;}
.h14_c01131{height:16.520625pt;}
.h18_c01131{height:20.559000pt;}
.h1b_c01131{height:21.476813pt;}
.h2_c01131{height:25.698750pt;}
.h10_c01131{height:29.364844pt;}
.h15_c01131{height:30.382504pt;}
.h19_c01131{height:30.838500pt;}
.h8_c01131{height:34.602280pt;}
.h13_c01131{height:35.978250pt;}
.he_c01131{height:37.134029pt;}
.h9_c01131{height:37.978101pt;}
.h1e_c01131{height:39.037969pt;}
.h1d_c01131{height:43.874531pt;}
.h1a_c01131{height:58.729688pt;}
.hd_c01131{height:60.208500pt;}
.hb_c01131{height:61.493438pt;}
.hc_c01131{height:63.145684pt;}
.h16_c01131{height:63.512625pt;}
.h3_c01131{height:63.566250pt;}
.h5_c01131{height:65.293594pt;}
.ha_c01131{height:66.642297pt;}
.h17_c01131{height:69.439391pt;}
.h7_c01131{height:69.784860pt;}
.h4_c01131{height:71.166735pt;}
.h1c_c01131{height:71.956684pt;}
.hf_c01131{height:75.830563pt;}
.h6_c01131{height:76.175859pt;}
.h1_c01131{height:986.666667pt;}
.h0_c01131{height:1122.666667pt;}
.w1_c01131{width:689.333333pt;}
.w0_c01131{width:793.333333pt;}
.x0_c01131{left:0.000000pt;}
.x1_c01131{left:52.000000pt;}
.x1b_c01131{left:66.195053pt;}
.x4_c01131{left:67.783453pt;}
.x37_c01131{left:115.193453pt;}
.x5_c01131{left:116.777453pt;}
.x3c_c01131{left:141.936653pt;}
.x38_c01131{left:145.835053pt;}
.x6_c01131{left:147.005453pt;}
.x3d_c01131{left:155.105853pt;}
.x4e_c01131{left:156.179453pt;}
.xd_c01131{left:157.231053pt;}
.x23_c01131{left:162.440653pt;}
.x1c_c01131{left:163.989453pt;}
.x16_c01131{left:165.269853pt;}
.x24_c01131{left:175.816653pt;}
.xe_c01131{left:185.734253pt;}
.x53_c01131{left:204.346253pt;}
.x3e_c01131{left:210.488653pt;}
.x32_c01131{left:214.853453pt;}
.x7_c01131{left:225.206653pt;}
.x3f_c01131{left:231.093853pt;}
.x1d_c01131{left:234.697453pt;}
.x2d_c01131{left:242.978253pt;}
.x4f_c01131{left:243.928653pt;}
.x8_c01131{left:245.635853pt;}
.x39_c01131{left:254.136653pt;}
.x25_c01131{left:263.856253pt;}
.x17_c01131{left:264.925453pt;}
.x33_c01131{left:274.433853pt;}
.x54_c01131{left:292.680653pt;}
.x18_c01131{left:293.912653pt;}
.xf_c01131{left:295.316253pt;}
.x9_c01131{left:304.199853pt;}
.x40_c01131{left:319.982653pt;}
.x2e_c01131{left:321.544653pt;}
.x19_c01131{left:323.463053pt;}
.x10_c01131{left:324.488253pt;}
.xa_c01131{left:334.612653pt;}
.x34_c01131{left:343.456653pt;}
.x41_c01131{left:348.983053pt;}
.x3a_c01131{left:351.913453pt;}
.x11_c01131{left:354.122253pt;}
.x1a_c01131{left:362.015853pt;}
.x26_c01131{left:364.083853pt;}
.x42_c01131{left:367.410253pt;}
.x43_c01131{left:369.997453pt;}
.x1e_c01131{left:372.558253pt;}
.x2f_c01131{left:373.860653pt;}
.x44_c01131{left:380.891853pt;}
.xb_c01131{left:383.083053pt;}
.x55_c01131{left:391.363853pt;}
.x2a_c01131{left:394.430653pt;}
.x50_c01131{left:400.370653pt;}
.x45_c01131{left:402.962253pt;}
.x46_c01131{left:408.515053pt;}
.x12_c01131{left:411.740253pt;}
.xc_c01131{left:412.884253pt;}
.x2b_c01131{left:420.984653pt;}
.x27_c01131{left:432.816253pt;}
.x2_c01131{left:448.797053pt;}
.x3b_c01131{left:449.813453pt;}
.x13_c01131{left:450.794653pt;}
.x47_c01131{left:455.762253pt;}
.x48_c01131{left:459.594653pt;}
.x2c_c01131{left:461.618653pt;}
.x1f_c01131{left:471.501053pt;}
.x14_c01131{left:472.939853pt;}
.x35_c01131{left:479.900653pt;}
.x20_c01131{left:490.095453pt;}
.x49_c01131{left:495.278653pt;}
.x30_c01131{left:508.971453pt;}
.x15_c01131{left:511.052653pt;}
.x51_c01131{left:519.997853pt;}
.x21_c01131{left:527.460253pt;}
.x28_c01131{left:529.255453pt;}
.x4a_c01131{left:533.008653pt;}
.x31_c01131{left:539.498653pt;}
.x4b_c01131{left:541.465453pt;}
.x56_c01131{left:548.897053pt;}
.x4c_c01131{left:574.236653pt;}
.x29_c01131{left:587.969053pt;}
.x4d_c01131{left:606.884653pt;}
.x3_c01131{left:617.519453pt;}
.x36_c01131{left:618.491853pt;}
.x5b_c01131{left:619.869053pt;}
.x57_c01131{left:620.797453pt;}
.x58_c01131{left:621.791853pt;}
.x59_c01131{left:623.208653pt;}
.x5a_c01131{left:624.577053pt;}
.x5c_c01131{left:625.553853pt;}
.x52_c01131{left:627.397453pt;}
.x22_c01131{left:648.143453pt;}
}





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

.ir_c01132:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01132{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01132;src:url('chunks/assets/font_09008586490028461dcefe05.woff2')format("woff");}.ff1_c01132{font-family:ff1_c01132;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01132;src:url('chunks/assets/font_bf4ddd93d53bc665c8ed613b.woff2')format("woff");}.ff2_c01132{font-family:ff2_c01132;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01132;src:url('chunks/assets/font_8a838a6cda8df946de020b57.woff2')format("woff");}.ff3_c01132{font-family:ff3_c01132;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01132;src:url('chunks/assets/font_24971dd9303baedac9901f45.woff2')format("woff");}.ff4_c01132{font-family:ff4_c01132;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1d_c01132{transform:matrix(0.013890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013890,0.000000,0.000000,0.250000,0,0);}
.m7c_c01132{transform:matrix(0.021740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021740,0.000000,0.000000,0.250000,0,0);}
.m4_c01132{transform:matrix(0.025001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.025001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.025001,0.000000,0.000000,0.250000,0,0);}
.m5_c01132{transform:matrix(0.062501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062501,0.000000,0.000000,0.250000,0,0);}
.m7b_c01132{transform:matrix(0.070653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070653,0.000000,0.000000,0.250000,0,0);}
.m40_c01132{transform:matrix(0.090117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090117,0.000000,0.000000,0.250000,0,0);}
.m7d_c01132{transform:matrix(0.116848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116848,0.000000,0.000000,0.250000,0,0);}
.m41_c01132{transform:matrix(0.118217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118217,0.000000,0.000000,0.250000,0,0);}
.m7e_c01132{transform:matrix(0.122710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122710,0.000000,0.000000,0.250000,0,0);}
.m2d_c01132{transform:matrix(0.132448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132448,0.000000,0.000000,0.250000,0,0);}
.m3f_c01132{transform:matrix(0.132848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132848,0.000000,0.000000,0.250000,0,0);}
.m2c_c01132{transform:matrix(0.133169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133169,0.000000,0.000000,0.250000,0,0);}
.m3_c01132{transform:matrix(0.140625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140625,0.000000,0.000000,0.250000,0,0);}
.m7a_c01132{transform:matrix(0.145834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145834,0.000000,0.000000,0.250000,0,0);}
.m29_c01132{transform:matrix(0.146573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146573,0.000000,0.000000,0.250000,0,0);}
.m6_c01132{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m60_c01132{transform:matrix(0.156177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156177,0.000000,0.000000,0.250000,0,0);}
.m14_c01132{transform:matrix(0.156977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156977,0.000000,0.000000,0.250000,0,0);}
.m17_c01132{transform:matrix(0.163621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163621,0.000000,0.000000,0.250000,0,0);}
.m81_c01132{transform:matrix(0.167333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167333,0.000000,0.000000,0.250000,0,0);}
.m1c_c01132{transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);}
.m4a_c01132{transform:matrix(0.197402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197402,0.000000,0.000000,0.250000,0,0);}
.m1e_c01132{transform:matrix(0.203704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203704,0.000000,0.000000,0.250000,0,0);}
.m19_c01132{transform:matrix(0.211262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211262,0.000000,0.000000,0.250000,0,0);}
.m2a_c01132{transform:matrix(0.223370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223370,0.000000,0.000000,0.250000,0,0);}
.m5e_c01132{transform:matrix(0.228105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228105,0.000000,0.000000,0.250000,0,0);}
.m61_c01132{transform:matrix(0.232054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232054,0.000000,0.000000,0.250000,0,0);}
.m18_c01132{transform:matrix(0.238967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238967,0.000000,0.000000,0.250000,0,0);}
.m5d_c01132{transform:matrix(0.244646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244646,0.000000,0.000000,0.250000,0,0);}
.m2e_c01132{transform:matrix(0.245813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245813,0.000000,0.000000,0.250000,0,0);}
.m1_c01132{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m37_c01132{transform:matrix(0.253527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253527,0.000000,0.000000,0.250000,0,0);}
.m4f_c01132{transform:matrix(0.256949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256949,0.000000,0.000000,0.250000,0,0);}
.m62_c01132{transform:matrix(0.257042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257042,0.000000,0.000000,0.250000,0,0);}
.m5a_c01132{transform:matrix(0.257418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257418,0.000000,0.000000,0.250000,0,0);}
.m74_c01132{transform:matrix(0.258919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258919,0.000000,0.000000,0.250000,0,0);}
.m4d_c01132{transform:matrix(0.260132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260132,0.000000,0.000000,0.250000,0,0);}
.m15_c01132{transform:matrix(0.260565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260565,0.000000,0.000000,0.250000,0,0);}
.m2f_c01132{transform:matrix(0.261278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261278,0.000000,0.000000,0.250000,0,0);}
.m65_c01132{transform:matrix(0.263376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263376,0.000000,0.000000,0.250000,0,0);}
.m13_c01132{transform:matrix(0.267039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267039,0.000000,0.000000,0.250000,0,0);}
.m43_c01132{transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);}
.m8e_c01132{transform:matrix(0.269241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269241,0.000000,0.000000,0.250000,0,0);}
.m6e_c01132{transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);}
.m71_c01132{transform:matrix(0.271141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271141,0.000000,0.000000,0.250000,0,0);}
.m27_c01132{transform:matrix(0.272290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272290,0.000000,0.000000,0.250000,0,0);}
.m21_c01132{transform:matrix(0.272564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272564,0.000000,0.000000,0.250000,0,0);}
.m8_c01132{transform:matrix(0.272876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272876,0.000000,0.000000,0.250000,0,0);}
.m45_c01132{transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);}
.ma_c01132{transform:matrix(0.274728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274728,0.000000,0.000000,0.250000,0,0);}
.m7_c01132{transform:matrix(0.275069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275069,0.000000,0.000000,0.250000,0,0);}
.m9_c01132{transform:matrix(0.275197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275197,0.000000,0.000000,0.250000,0,0);}
.m24_c01132{transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);}
.m5f_c01132{transform:matrix(0.276114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276114,0.000000,0.000000,0.250000,0,0);}
.m68_c01132{transform:matrix(0.277661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277661,0.000000,0.000000,0.250000,0,0);}
.m8c_c01132{transform:matrix(0.278463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278463,0.000000,0.000000,0.250000,0,0);}
.m30_c01132{transform:matrix(0.279260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279260,0.000000,0.000000,0.250000,0,0);}
.m16_c01132{transform:matrix(0.280508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280508,0.000000,0.000000,0.250000,0,0);}
.m58_c01132{transform:matrix(0.280624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280624,0.000000,0.000000,0.250000,0,0);}
.m28_c01132{transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);}
.m80_c01132{transform:matrix(0.280992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280992,0.000000,0.000000,0.250000,0,0);}
.m34_c01132{transform:matrix(0.281796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281796,0.000000,0.000000,0.250000,0,0);}
.m31_c01132{transform:matrix(0.282957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282957,0.000000,0.000000,0.250000,0,0);}
.m1f_c01132{transform:matrix(0.283490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283490,0.000000,0.000000,0.250000,0,0);}
.m66_c01132{transform:matrix(0.283503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283503,0.000000,0.000000,0.250000,0,0);}
.m72_c01132{transform:matrix(0.283597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283597,0.000000,0.000000,0.250000,0,0);}
.m1a_c01132{transform:matrix(0.283612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283612,0.000000,0.000000,0.250000,0,0);}
.m3e_c01132{transform:matrix(0.285120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285120,0.000000,0.000000,0.250000,0,0);}
.m22_c01132{transform:matrix(0.285549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285549,0.000000,0.000000,0.250000,0,0);}
.m57_c01132{transform:matrix(0.285652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285652,0.000000,0.000000,0.250000,0,0);}
.m49_c01132{transform:matrix(0.285671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285671,0.000000,0.000000,0.250000,0,0);}
.m48_c01132{transform:matrix(0.285789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285789,0.000000,0.000000,0.250000,0,0);}
.m36_c01132{transform:matrix(0.286478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286478,0.000000,0.000000,0.250000,0,0);}
.m11_c01132{transform:matrix(0.286591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286591,0.000000,0.000000,0.250000,0,0);}
.m86_c01132{transform:matrix(0.286936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286936,0.000000,0.000000,0.250000,0,0);}
.m87_c01132{transform:matrix(0.287247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287247,0.000000,0.000000,0.250000,0,0);}
.m39_c01132{transform:matrix(0.288265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288265,0.000000,0.000000,0.250000,0,0);}
.m32_c01132{transform:matrix(0.288289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288289,0.000000,0.000000,0.250000,0,0);}
.m59_c01132{transform:matrix(0.288727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288727,0.000000,0.000000,0.250000,0,0);}
.m33_c01132{transform:matrix(0.289228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289228,0.000000,0.000000,0.250000,0,0);}
.m0_c01132{transform:matrix(0.289529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289529,0.000000,0.000000,0.250000,0,0);}
.m1b_c01132{transform:matrix(0.291648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291648,0.000000,0.000000,0.250000,0,0);}
.m77_c01132{transform:matrix(0.292809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292809,0.000000,0.000000,0.250000,0,0);}
.m3b_c01132{transform:matrix(0.294030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294030,0.000000,0.000000,0.250000,0,0);}
.m2_c01132{transform:matrix(0.295379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295379,0.000000,0.000000,0.250000,0,0);}
.m6c_c01132{transform:matrix(0.296995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296995,0.000000,0.000000,0.250000,0,0);}
.m70_c01132{transform:matrix(0.297455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297455,0.000000,0.000000,0.250000,0,0);}
.m85_c01132{transform:matrix(0.299082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299082,0.000000,0.000000,0.250000,0,0);}
.m35_c01132{transform:matrix(0.299143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299143,0.000000,0.000000,0.250000,0,0);}
.m6b_c01132{transform:matrix(0.299785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299785,0.000000,0.000000,0.250000,0,0);}
.m8a_c01132{transform:matrix(0.300182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300182,0.000000,0.000000,0.250000,0,0);}
.m53_c01132{transform:matrix(0.300266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300266,0.000000,0.000000,0.250000,0,0);}
.m56_c01132{transform:matrix(0.301916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301916,0.000000,0.000000,0.250000,0,0);}
.m64_c01132{transform:matrix(0.302294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302294,0.000000,0.000000,0.250000,0,0);}
.m47_c01132{transform:matrix(0.304217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304217,0.000000,0.000000,0.250000,0,0);}
.m78_c01132{transform:matrix(0.304709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304709,0.000000,0.000000,0.250000,0,0);}
.m38_c01132{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m89_c01132{transform:matrix(0.306022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306022,0.000000,0.000000,0.250000,0,0);}
.m20_c01132{transform:matrix(0.306067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306067,0.000000,0.000000,0.250000,0,0);}
.m8f_c01132{transform:matrix(0.308395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308395,0.000000,0.000000,0.250000,0,0);}
.m44_c01132{transform:matrix(0.308877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308877,0.000000,0.000000,0.250000,0,0);}
.m4e_c01132{transform:matrix(0.308937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308937,0.000000,0.000000,0.250000,0,0);}
.m23_c01132{transform:matrix(0.310003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310003,0.000000,0.000000,0.250000,0,0);}
.m4b_c01132{transform:matrix(0.310686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310686,0.000000,0.000000,0.250000,0,0);}
.m10_c01132{transform:matrix(0.310889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310889,0.000000,0.000000,0.250000,0,0);}
.m42_c01132{transform:matrix(0.311597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311597,0.000000,0.000000,0.250000,0,0);}
.m50_c01132{transform:matrix(0.311811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311811,0.000000,0.000000,0.250000,0,0);}
.m6f_c01132{transform:matrix(0.312523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312523,0.000000,0.000000,0.250000,0,0);}
.m55_c01132{transform:matrix(0.312654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312654,0.000000,0.000000,0.250000,0,0);}
.m83_c01132{transform:matrix(0.313948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313948,0.000000,0.000000,0.250000,0,0);}
.m5c_c01132{transform:matrix(0.314606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314606,0.000000,0.000000,0.250000,0,0);}
.m7f_c01132{transform:matrix(0.314911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314911,0.000000,0.000000,0.250000,0,0);}
.m90_c01132{transform:matrix(0.315338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315338,0.000000,0.000000,0.250000,0,0);}
.m88_c01132{transform:matrix(0.315838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315838,0.000000,0.000000,0.250000,0,0);}
.m79_c01132{transform:matrix(0.316292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316292,0.000000,0.000000,0.250000,0,0);}
.m3d_c01132{transform:matrix(0.316802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316802,0.000000,0.000000,0.250000,0,0);}
.m51_c01132{transform:matrix(0.316830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316830,0.000000,0.000000,0.250000,0,0);}
.m52_c01132{transform:matrix(0.318271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318271,0.000000,0.000000,0.250000,0,0);}
.m5b_c01132{transform:matrix(0.318650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318650,0.000000,0.000000,0.250000,0,0);}
.mb_c01132{transform:matrix(0.318798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318798,0.000000,0.000000,0.250000,0,0);}
.m73_c01132{transform:matrix(0.322567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322567,0.000000,0.000000,0.250000,0,0);}
.m8b_c01132{transform:matrix(0.324364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324364,0.000000,0.000000,0.250000,0,0);}
.m26_c01132{transform:matrix(0.327078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327078,0.000000,0.000000,0.250000,0,0);}
.m2b_c01132{transform:matrix(0.332311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332311,0.000000,0.000000,0.250000,0,0);}
.m84_c01132{transform:matrix(0.333650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333650,0.000000,0.000000,0.250000,0,0);}
.m67_c01132{transform:matrix(0.334530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334530,0.000000,0.000000,0.250000,0,0);}
.m4c_c01132{transform:matrix(0.334557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334557,0.000000,0.000000,0.250000,0,0);}
.m82_c01132{transform:matrix(0.336298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336298,0.000000,0.000000,0.250000,0,0);}
.md_c01132{transform:matrix(0.338306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338306,0.000000,0.000000,0.250000,0,0);}
.me_c01132{transform:matrix(0.339155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339155,0.000000,0.000000,0.250000,0,0);}
.m75_c01132{transform:matrix(0.341567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341567,0.000000,0.000000,0.250000,0,0);}
.m8d_c01132{transform:matrix(0.342481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342481,0.000000,0.000000,0.250000,0,0);}
.m54_c01132{transform:matrix(0.342862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342862,0.000000,0.000000,0.250000,0,0);}
.m3c_c01132{transform:matrix(0.344527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344527,0.000000,0.000000,0.250000,0,0);}
.m6a_c01132{transform:matrix(0.349111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349111,0.000000,0.000000,0.250000,0,0);}
.m25_c01132{transform:matrix(0.357996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357996,0.000000,0.000000,0.250000,0,0);}
.m63_c01132{transform:matrix(0.359199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359199,0.000000,0.000000,0.250000,0,0);}
.m6d_c01132{transform:matrix(0.362248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362248,0.000000,0.000000,0.250000,0,0);}
.m3a_c01132{transform:matrix(0.363080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363080,0.000000,0.000000,0.250000,0,0);}
.m12_c01132{transform:matrix(0.368347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368347,0.000000,0.000000,0.250000,0,0);}
.m69_c01132{transform:matrix(0.381519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381519,0.000000,0.000000,0.250000,0,0);}
.mc_c01132{transform:matrix(0.384291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384291,0.000000,0.000000,0.250000,0,0);}
.m46_c01132{transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);}
.m76_c01132{transform:matrix(0.405605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405605,0.000000,0.000000,0.250000,0,0);}
.mf_c01132{transform:matrix(0.412048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412048,0.000000,0.000000,0.250000,0,0);}
.v0_c01132{vertical-align:0.000000px;}
.ls20_c01132{letter-spacing:-3.167017px;}
.ls1b_c01132{letter-spacing:-2.841300px;}
.lsd_c01132{letter-spacing:-2.778930px;}
.lsc_c01132{letter-spacing:-2.647267px;}
.ls16_c01132{letter-spacing:-2.439367px;}
.ls10_c01132{letter-spacing:-1.701814px;}
.lse_c01132{letter-spacing:-0.555786px;}
.ls11_c01132{letter-spacing:-0.415999px;}
.ls18_c01132{letter-spacing:-0.145728px;}
.ls3_c01132{letter-spacing:0.000000px;}
.ls17_c01132{letter-spacing:0.166400px;}
.ls14_c01132{letter-spacing:0.975707px;}
.ls0_c01132{letter-spacing:1.028652px;}
.ls12_c01132{letter-spacing:1.210179px;}
.ls22_c01132{letter-spacing:1.414397px;}
.ls8_c01132{letter-spacing:1.686687px;}
.ls1a_c01132{letter-spacing:2.004359px;}
.ls7_c01132{letter-spacing:2.859048px;}
.ls19_c01132{letter-spacing:2.927121px;}
.ls1f_c01132{letter-spacing:3.191800px;}
.ls4_c01132{letter-spacing:3.316500px;}
.ls1d_c01132{letter-spacing:3.406242px;}
.ls15_c01132{letter-spacing:3.484810px;}
.ls6_c01132{letter-spacing:3.781810px;}
.ls2_c01132{letter-spacing:3.801610px;}
.ls1e_c01132{letter-spacing:3.880810px;}
.lsb_c01132{letter-spacing:3.969900px;}
.ls9_c01132{letter-spacing:3.979810px;}
.ls1c_c01132{letter-spacing:4.039200px;}
.lsf_c01132{letter-spacing:51.321798px;}
.ls5_c01132{letter-spacing:57.024198px;}
.lsa_c01132{letter-spacing:61.300998px;}
.ls21_c01132{letter-spacing:65.577798px;}
.ls13_c01132{letter-spacing:67.003200px;}
.ls1_c01132{letter-spacing:887.223678px;}
.sc__c01132{text-shadow:none;}
.sc0_c01132{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01132{-webkit-text-stroke:0px transparent;}
.sc0_c01132{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01132{word-spacing:-18.493050px;}
.ws1_c01132{word-spacing:0.000000px;}
._0_c01132{margin-left:-13.538899px;}
._5_c01132{margin-left:-9.303278px;}
._4_c01132{width:1.588404px;}
._2_c01132{width:40.571272px;}
._1_c01132{width:41.826807px;}
._3_c01132{width:135.883041px;}
.fc0_c01132{color:transparent;}
.fs1_c01132{font-size:22.176000px;}
.fs2_c01132{font-size:27.720000px;}
.fs12_c01132{font-size:37.818000px;}
.fs9_c01132{font-size:51.321798px;}
.fs4_c01132{font-size:57.024198px;}
.fs15_c01132{font-size:60.192000px;}
.fs7_c01132{font-size:61.300998px;}
.fs14_c01132{font-size:65.577798px;}
.fs3_c01132{font-size:66.330000px;}
.fsc_c01132{font-size:66.528000px;}
.fsa_c01132{font-size:67.003200px;}
.fsb_c01132{font-size:69.696198px;}
.fsd_c01132{font-size:72.864000px;}
.fs13_c01132{font-size:73.854000px;}
.fs5_c01132{font-size:75.636198px;}
.fs0_c01132{font-size:76.032198px;}
.fs10_c01132{font-size:77.616198px;}
.fs8_c01132{font-size:79.398000px;}
.fs6_c01132{font-size:79.596198px;}
.fsf_c01132{font-size:80.784000px;}
.fse_c01132{font-size:81.180000px;}
.fs11_c01132{font-size:90.486198px;}
.y0_c01132{bottom:0.000000px;}
.y1_c01132{bottom:76.500000px;}
.y1b_c01132{bottom:122.513535px;}
.y1a_c01132{bottom:128.928735px;}
.y19_c01132{bottom:161.356185px;}
.y18_c01132{bottom:194.506335px;}
.y17_c01132{bottom:227.651535px;}
.y16_c01132{bottom:259.014735px;}
.y15_c01132{bottom:260.440335px;}
.y14_c01132{bottom:292.516335px;}
.y13_c01132{bottom:354.524985px;}
.y12_c01132{bottom:388.739385px;}
.y11_c01132{bottom:420.820335px;}
.y10_c01132{bottom:484.259535px;}
.yf_c01132{bottom:517.043385px;}
.ye_c01132{bottom:547.698735px;}
.yd_c01132{bottom:581.195385px;}
.yc_c01132{bottom:643.926735px;}
.yb_c01132{bottom:675.997785px;}
.ya_c01132{bottom:710.568585px;}
.y9_c01132{bottom:772.230735px;}
.y8_c01132{bottom:806.088735px;}
.y7_c01132{bottom:838.521135px;}
.y6_c01132{bottom:875.586735px;}
.y5_c01132{bottom:931.892985px;}
.y4_c01132{bottom:952.207785px;}
.y3_c01132{bottom:993.198735px;}
.y2_c01132{bottom:1071.245385px;}
.h3_c01132{height:23.128875px;}
.h4_c01132{height:28.911094px;}
.hb_c01132{height:34.180317px;}
.h6_c01132{height:37.978116px;}
.h14_c01132{height:39.442992px;}
.h9_c01132{height:40.826465px;}
.h16_c01132{height:43.674813px;}
.hc_c01132{height:44.624131px;}
.he_c01132{height:65.293594px;}
.hd_c01132{height:68.403007px;}
.h5_c01132{height:69.180117px;}
.h7_c01132{height:74.232792px;}
.h2_c01132{height:74.621444px;}
.hf_c01132{height:75.994875px;}
.h12_c01132{height:76.176054px;}
.h15_c01132{height:77.027414px;}
.ha_c01132{height:77.924795px;}
.h8_c01132{height:78.119315px;}
.h11_c01132{height:79.245633px;}
.h17_c01132{height:79.299207px;}
.h10_c01132{height:79.673730px;}
.h13_c01132{height:88.807255px;}
.h1_c01132{height:1110.000000px;}
.h0_c01132{height:1263.000000px;}
.w1_c01132{width:775.500000px;}
.w0_c01132{width:892.500000px;}
.x0_c01132{left:0.000000px;}
.x1_c01132{left:58.500000px;}
.xc_c01132{left:82.305285px;}
.x24_c01132{left:83.978385px;}
.x38_c01132{left:136.017735px;}
.x5_c01132{left:137.111685px;}
.x16_c01132{left:138.413535px;}
.x4a_c01132{left:139.675785px;}
.xd_c01132{left:170.930085px;}
.x21_c01132{left:182.468535px;}
.x17_c01132{left:192.908085px;}
.x22_c01132{left:194.581185px;}
.x6_c01132{left:205.634535px;}
.x5b_c01132{left:212.044785px;}
.x52_c01132{left:214.653435px;}
.x7_c01132{left:224.167335px;}
.x18_c01132{left:225.909735px;}
.x23_c01132{left:227.825385px;}
.x8_c01132{left:229.508385px;}
.x9_c01132{left:237.354135px;}
.x25_c01132{left:248.174835px;}
.x46_c01132{left:257.916435px;}
.x58_c01132{left:259.624185px;}
.x4b_c01132{left:260.633985px;}
.x2d_c01132{left:270.093435px;}
.x2e_c01132{left:271.400235px;}
.x3_c01132{left:274.330635px;}
.x5c_c01132{left:279.404385px;}
.x4c_c01132{left:282.918885px;}
.xe_c01132{left:292.403085px;}
.x40_c01132{left:293.457435px;}
.x19_c01132{left:294.734535px;}
.x67_c01132{left:297.046185px;}
.x5d_c01132{left:302.213985px;}
.x2f_c01132{left:304.184085px;}
.x26_c01132{left:305.193885px;}
.x41_c01132{left:326.181885px;}
.x5e_c01132{left:333.384135px;}
.x47_c01132{left:334.958235px;}
.xa_c01132{left:337.616385px;}
.x66_c01132{left:338.938035px;}
.x48_c01132{left:347.466885px;}
.x5f_c01132{left:350.035935px;}
.x30_c01132{left:353.698935px;}
.x31_c01132{left:359.955735px;}
.x53_c01132{left:371.117985px;}
.x3c_c01132{left:383.116785px;}
.x4d_c01132{left:392.175285px;}
.x1a_c01132{left:393.947385px;}
.xf_c01132{left:395.422485px;}
.x36_c01132{left:404.525535px;}
.x39_c01132{left:413.762235px;}
.x49_c01132{left:415.217535px;}
.x27_c01132{left:417.875685px;}
.x1b_c01132{left:424.058235px;}
.x4e_c01132{left:426.746085px;}
.x63_c01132{left:436.170885px;}
.x10_c01132{left:438.007335px;}
.x56_c01132{left:448.397385px;}
.x37_c01132{left:449.862585px;}
.x3a_c01132{left:458.638935px;}
.x28_c01132{left:459.767535px;}
.x42_c01132{left:471.276285px;}
.x57_c01132{left:481.577235px;}
.x11_c01132{left:492.556335px;}
.x1c_c01132{left:493.605735px;}
.x54_c01132{left:504.070035px;}
.x64_c01132{left:513.440385px;}
.x29_c01132{left:526.518285px;}
.x12_c01132{left:536.650935px;}
.x3d_c01132{left:546.347985px;}
.x60_c01132{left:547.931985px;}
.x2a_c01132{left:558.881385px;}
.x32_c01132{left:560.732685px;}
.x65_c01132{left:569.281335px;}
.x13_c01132{left:570.301035px;}
.x1d_c01132{left:572.434485px;}
.x61_c01132{left:579.735735px;}
.x1e_c01132{left:589.744635px;}
.x43_c01132{left:591.561285px;}
.x2b_c01132{left:593.031435px;}
.x4_c01132{left:595.778685px;}
.x14_c01132{left:602.025585px;}
.x3e_c01132{left:603.644235px;}
.x33_c01132{left:611.885985px;}
.x59_c01132{left:614.192685px;}
.x55_c01132{left:623.775885px;}
.x62_c01132{left:634.165935px;}
.x15_c01132{left:636.185535px;}
.x5a_c01132{left:639.076335px;}
.xb_c01132{left:641.066235px;}
.x1f_c01132{left:646.446885px;}
.x2c_c01132{left:656.431035px;}
.x3b_c01132{left:658.683285px;}
.x4f_c01132{left:660.475185px;}
.x34_c01132{left:668.568435px;}
.x50_c01132{left:679.666335px;}
.x20_c01132{left:682.220535px;}
.x35_c01132{left:689.576235px;}
.x44_c01132{left:690.665235px;}
.x2_c01132{left:695.055885px;}
.x3f_c01132{left:702.609585px;}
.x51_c01132{left:703.985685px;}
.x45_c01132{left:713.316435px;}
@media print{
.v0_c01132{vertical-align:0.000000pt;}
.ls20_c01132{letter-spacing:-2.815126pt;}
.ls1b_c01132{letter-spacing:-2.525600pt;}
.lsd_c01132{letter-spacing:-2.470160pt;}
.lsc_c01132{letter-spacing:-2.353126pt;}
.ls16_c01132{letter-spacing:-2.168326pt;}
.ls10_c01132{letter-spacing:-1.512724pt;}
.lse_c01132{letter-spacing:-0.494032pt;}
.ls11_c01132{letter-spacing:-0.369777pt;}
.ls18_c01132{letter-spacing:-0.129536pt;}
.ls3_c01132{letter-spacing:0.000000pt;}
.ls17_c01132{letter-spacing:0.147911pt;}
.ls14_c01132{letter-spacing:0.867295pt;}
.ls0_c01132{letter-spacing:0.914358pt;}
.ls12_c01132{letter-spacing:1.075715pt;}
.ls22_c01132{letter-spacing:1.257242pt;}
.ls8_c01132{letter-spacing:1.499278pt;}
.ls1a_c01132{letter-spacing:1.781653pt;}
.ls7_c01132{letter-spacing:2.541376pt;}
.ls19_c01132{letter-spacing:2.601885pt;}
.ls1f_c01132{letter-spacing:2.837155pt;}
.ls4_c01132{letter-spacing:2.948000pt;}
.ls1d_c01132{letter-spacing:3.027771pt;}
.ls15_c01132{letter-spacing:3.097609pt;}
.ls6_c01132{letter-spacing:3.361609pt;}
.ls2_c01132{letter-spacing:3.379209pt;}
.ls1e_c01132{letter-spacing:3.449609pt;}
.lsb_c01132{letter-spacing:3.528800pt;}
.ls9_c01132{letter-spacing:3.537609pt;}
.ls1c_c01132{letter-spacing:3.590400pt;}
.lsf_c01132{letter-spacing:45.619376pt;}
.ls5_c01132{letter-spacing:50.688176pt;}
.lsa_c01132{letter-spacing:54.489776pt;}
.ls21_c01132{letter-spacing:58.291376pt;}
.ls13_c01132{letter-spacing:59.558400pt;}
.ls1_c01132{letter-spacing:788.643269pt;}
.ws0_c01132{word-spacing:-16.438267pt;}
.ws1_c01132{word-spacing:0.000000pt;}
._0_c01132{margin-left:-12.034577pt;}
._5_c01132{margin-left:-8.269580pt;}
._4_c01132{width:1.411915pt;}
._2_c01132{width:36.063353pt;}
._1_c01132{width:37.179384pt;}
._3_c01132{width:120.784925pt;}
.fs1_c01132{font-size:19.712000pt;}
.fs2_c01132{font-size:24.640000pt;}
.fs12_c01132{font-size:33.616000pt;}
.fs9_c01132{font-size:45.619376pt;}
.fs4_c01132{font-size:50.688176pt;}
.fs15_c01132{font-size:53.504000pt;}
.fs7_c01132{font-size:54.489776pt;}
.fs14_c01132{font-size:58.291376pt;}
.fs3_c01132{font-size:58.960000pt;}
.fsc_c01132{font-size:59.136000pt;}
.fsa_c01132{font-size:59.558400pt;}
.fsb_c01132{font-size:61.952176pt;}
.fsd_c01132{font-size:64.768000pt;}
.fs13_c01132{font-size:65.648000pt;}
.fs5_c01132{font-size:67.232176pt;}
.fs0_c01132{font-size:67.584176pt;}
.fs10_c01132{font-size:68.992176pt;}
.fs8_c01132{font-size:70.576000pt;}
.fs6_c01132{font-size:70.752176pt;}
.fsf_c01132{font-size:71.808000pt;}
.fse_c01132{font-size:72.160000pt;}
.fs11_c01132{font-size:80.432176pt;}
.y0_c01132{bottom:0.000000pt;}
.y1_c01132{bottom:68.000000pt;}
.y1b_c01132{bottom:108.900920pt;}
.y1a_c01132{bottom:114.603320pt;}
.y19_c01132{bottom:143.427720pt;}
.y18_c01132{bottom:172.894520pt;}
.y17_c01132{bottom:202.356920pt;}
.y16_c01132{bottom:230.235320pt;}
.y15_c01132{bottom:231.502520pt;}
.y14_c01132{bottom:260.014520pt;}
.y13_c01132{bottom:315.133320pt;}
.y12_c01132{bottom:345.546120pt;}
.y11_c01132{bottom:374.062520pt;}
.y10_c01132{bottom:430.452920pt;}
.yf_c01132{bottom:459.594120pt;}
.ye_c01132{bottom:486.843320pt;}
.yd_c01132{bottom:516.618120pt;}
.yc_c01132{bottom:572.379320pt;}
.yb_c01132{bottom:600.886920pt;}
.ya_c01132{bottom:631.616520pt;}
.y9_c01132{bottom:686.427320pt;}
.y8_c01132{bottom:716.523320pt;}
.y7_c01132{bottom:745.352120pt;}
.y6_c01132{bottom:778.299320pt;}
.y5_c01132{bottom:828.349320pt;}
.y4_c01132{bottom:846.406920pt;}
.y3_c01132{bottom:882.843320pt;}
.y2_c01132{bottom:952.218120pt;}
.h3_c01132{height:20.559000pt;}
.h4_c01132{height:25.698750pt;}
.hb_c01132{height:30.382504pt;}
.h6_c01132{height:33.758325pt;}
.h14_c01132{height:35.060438pt;}
.h9_c01132{height:36.290191pt;}
.h16_c01132{height:38.822056pt;}
.hc_c01132{height:39.665894pt;}
.he_c01132{height:58.038750pt;}
.hd_c01132{height:60.802673pt;}
.h5_c01132{height:61.493438pt;}
.h7_c01132{height:65.984704pt;}
.h2_c01132{height:66.330173pt;}
.hf_c01132{height:67.551000pt;}
.h12_c01132{height:67.712048pt;}
.h15_c01132{height:68.468813pt;}
.ha_c01132{height:69.266484pt;}
.h8_c01132{height:69.439391pt;}
.h11_c01132{height:70.440562pt;}
.h17_c01132{height:70.488184pt;}
.h10_c01132{height:70.821094pt;}
.h13_c01132{height:78.939782pt;}
.h1_c01132{height:986.666667pt;}
.h0_c01132{height:1122.666667pt;}
.w1_c01132{width:689.333333pt;}
.w0_c01132{width:793.333333pt;}
.x0_c01132{left:0.000000pt;}
.x1_c01132{left:52.000000pt;}
.xc_c01132{left:73.160253pt;}
.x24_c01132{left:74.647453pt;}
.x38_c01132{left:120.904653pt;}
.x5_c01132{left:121.877053pt;}
.x16_c01132{left:123.034253pt;}
.x4a_c01132{left:124.156253pt;}
.xd_c01132{left:151.937853pt;}
.x21_c01132{left:162.194253pt;}
.x17_c01132{left:171.473853pt;}
.x22_c01132{left:172.961053pt;}
.x6_c01132{left:182.786253pt;}
.x5b_c01132{left:188.484253pt;}
.x52_c01132{left:190.803053pt;}
.x7_c01132{left:199.259853pt;}
.x18_c01132{left:200.808653pt;}
.x23_c01132{left:202.511453pt;}
.x8_c01132{left:204.007453pt;}
.x9_c01132{left:210.981453pt;}
.x25_c01132{left:220.599853pt;}
.x46_c01132{left:229.259053pt;}
.x58_c01132{left:230.777053pt;}
.x4b_c01132{left:231.674653pt;}
.x2d_c01132{left:240.083053pt;}
.x2e_c01132{left:241.244653pt;}
.x3_c01132{left:243.849453pt;}
.x5c_c01132{left:248.359453pt;}
.x4c_c01132{left:251.483453pt;}
.xe_c01132{left:259.913853pt;}
.x40_c01132{left:260.851053pt;}
.x19_c01132{left:261.986253pt;}
.x67_c01132{left:264.041053pt;}
.x5d_c01132{left:268.634653pt;}
.x2f_c01132{left:270.385853pt;}
.x26_c01132{left:271.283453pt;}
.x41_c01132{left:289.939453pt;}
.x5e_c01132{left:296.341453pt;}
.x47_c01132{left:297.740653pt;}
.xa_c01132{left:300.103453pt;}
.x66_c01132{left:301.278253pt;}
.x48_c01132{left:308.859453pt;}
.x5f_c01132{left:311.143053pt;}
.x30_c01132{left:314.399053pt;}
.x31_c01132{left:319.960653pt;}
.x53_c01132{left:329.882653pt;}
.x3c_c01132{left:340.548253pt;}
.x4d_c01132{left:348.600253pt;}
.x1a_c01132{left:350.175453pt;}
.xf_c01132{left:351.486653pt;}
.x36_c01132{left:359.578253pt;}
.x39_c01132{left:367.788653pt;}
.x49_c01132{left:369.082253pt;}
.x27_c01132{left:371.445053pt;}
.x1b_c01132{left:376.940653pt;}
.x4e_c01132{left:379.329853pt;}
.x63_c01132{left:387.707453pt;}
.x10_c01132{left:389.339853pt;}
.x56_c01132{left:398.575453pt;}
.x37_c01132{left:399.877853pt;}
.x3a_c01132{left:407.679053pt;}
.x28_c01132{left:408.682253pt;}
.x42_c01132{left:418.912253pt;}
.x57_c01132{left:428.068653pt;}
.x11_c01132{left:437.827853pt;}
.x1c_c01132{left:438.760653pt;}
.x54_c01132{left:448.062253pt;}
.x64_c01132{left:456.391453pt;}
.x29_c01132{left:468.016253pt;}
.x12_c01132{left:477.023053pt;}
.x3d_c01132{left:485.642653pt;}
.x60_c01132{left:487.050653pt;}
.x2a_c01132{left:496.783453pt;}
.x32_c01132{left:498.429053pt;}
.x65_c01132{left:506.027853pt;}
.x13_c01132{left:506.934253pt;}
.x1d_c01132{left:508.830653pt;}
.x61_c01132{left:515.320653pt;}
.x1e_c01132{left:524.217453pt;}
.x43_c01132{left:525.832253pt;}
.x2b_c01132{left:527.139053pt;}
.x4_c01132{left:529.581053pt;}
.x14_c01132{left:535.133853pt;}
.x3e_c01132{left:536.572653pt;}
.x33_c01132{left:543.898653pt;}
.x59_c01132{left:545.949053pt;}
.x55_c01132{left:554.467453pt;}
.x62_c01132{left:563.703053pt;}
.x15_c01132{left:565.498253pt;}
.x5a_c01132{left:568.067853pt;}
.xb_c01132{left:569.836653pt;}
.x1f_c01132{left:574.619453pt;}
.x2c_c01132{left:583.494253pt;}
.x3b_c01132{left:585.496253pt;}
.x4f_c01132{left:587.089053pt;}
.x34_c01132{left:594.283053pt;}
.x50_c01132{left:604.147853pt;}
.x20_c01132{left:606.418253pt;}
.x35_c01132{left:612.956653pt;}
.x44_c01132{left:613.924653pt;}
.x2_c01132{left:617.827453pt;}
.x3f_c01132{left:624.541853pt;}
.x51_c01132{left:625.765053pt;}
.x45_c01132{left:634.059053pt;}
}





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

.ir_c01133:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01133{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01133;src:url('chunks/assets/font_4afc8e78258a90d8e1a4c067.woff2')format("woff");}.ff1_c01133{font-family:ff1_c01133;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01133;src:url('chunks/assets/font_1334c4f4d2f234fd594d98cb.woff2')format("woff");}.ff2_c01133{font-family:ff2_c01133;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01133;src:url('chunks/assets/font_f107e0ff0db8c0cc1b58ee12.woff2')format("woff");}.ff3_c01133{font-family:ff3_c01133;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01133;src:url('chunks/assets/font_d7a8bec137d6d37444efa2c9.woff2')format("woff");}.ff4_c01133{font-family:ff4_c01133;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01133;src:url('chunks/assets/font_404270becb254ec1e0e3d375.woff2')format("woff");}.ff5_c01133{font-family:ff5_c01133;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01133;src:url('chunks/assets/font_dd0ea94ad259130c3137025e.woff2')format("woff");}.ff6_c01133{font-family:ff6_c01133;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.md_c01133{transform:matrix(0.015001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015001,0.000000,0.000000,0.250000,0,0);}
.m81_c01133{transform:matrix(0.022728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.022728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.022728,0.000000,0.000000,0.250000,0,0);}
.m7d_c01133{transform:matrix(0.028410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.028410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.028410,0.000000,0.000000,0.250000,0,0);}
.m12_c01133{transform:matrix(0.050001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050001,0.000000,0.000000,0.250000,0,0);}
.m8_c01133{transform:matrix(0.082728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.082728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.082728,0.000000,0.000000,0.250000,0,0);}
.m7c_c01133{transform:matrix(0.088069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088069,0.000000,0.000000,0.250000,0,0);}
.m80_c01133{transform:matrix(0.092658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092658,0.000000,0.000000,0.250000,0,0);}
.mc_c01133{transform:matrix(0.098334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098334,0.000000,0.000000,0.250000,0,0);}
.m69_c01133{transform:matrix(0.103632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103632,0.000000,0.000000,0.250000,0,0);}
.ma_c01133{transform:matrix(0.105001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105001,0.000000,0.000000,0.250000,0,0);}
.m7f_c01133{transform:matrix(0.107955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107955,0.000000,0.000000,0.250000,0,0);}
.me_c01133{transform:matrix(0.121251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121251,0.000000,0.000000,0.250000,0,0);}
.m84_c01133{transform:matrix(0.122160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122160,0.000000,0.000000,0.250000,0,0);}
.m86_c01133{transform:matrix(0.122341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122341,0.000000,0.000000,0.250000,0,0);}
.m9_c01133{transform:matrix(0.131990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131990,0.000000,0.000000,0.250000,0,0);}
.m82_c01133{transform:matrix(0.132102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132102,0.000000,0.000000,0.250000,0,0);}
.m10_c01133{transform:matrix(0.135001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135001,0.000000,0.000000,0.250000,0,0);}
.m14_c01133{transform:matrix(0.142501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142501,0.000000,0.000000,0.250000,0,0);}
.m11_c01133{transform:matrix(0.145001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145001,0.000000,0.000000,0.250000,0,0);}
.m15_c01133{transform:matrix(0.145715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145715,0.000000,0.000000,0.250000,0,0);}
.m68_c01133{transform:matrix(0.145834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145834,0.000000,0.000000,0.250000,0,0);}
.mf_c01133{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m13_c01133{transform:matrix(0.153751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153751,0.000000,0.000000,0.250000,0,0);}
.m87_c01133{transform:matrix(0.157447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157447,0.000000,0.000000,0.250000,0,0);}
.m85_c01133{transform:matrix(0.161348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161348,0.000000,0.000000,0.250000,0,0);}
.m77_c01133{transform:matrix(0.162794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162794,0.000000,0.000000,0.250000,0,0);}
.m7e_c01133{transform:matrix(0.170455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170455,0.000000,0.000000,0.250000,0,0);}
.m21_c01133{transform:matrix(0.171131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171131,0.000000,0.000000,0.250000,0,0);}
.m7_c01133{transform:matrix(0.177326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177326,0.000000,0.000000,0.250000,0,0);}
.m62_c01133{transform:matrix(0.185898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185898,0.000000,0.000000,0.250000,0,0);}
.m83_c01133{transform:matrix(0.215910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215910,0.000000,0.000000,0.250000,0,0);}
.m49_c01133{transform:matrix(0.236996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236996,0.000000,0.000000,0.250000,0,0);}
.m57_c01133{transform:matrix(0.239841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239841,0.000000,0.000000,0.250000,0,0);}
.m16_c01133{transform:matrix(0.242782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242782,0.000000,0.000000,0.250000,0,0);}
.m1_c01133{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01133{transform:matrix(0.251728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251728,0.000000,0.000000,0.250000,0,0);}
.m2b_c01133{transform:matrix(0.252326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252326,0.000000,0.000000,0.250000,0,0);}
.m78_c01133{transform:matrix(0.252453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252453,0.000000,0.000000,0.250000,0,0);}
.m17_c01133{transform:matrix(0.253796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253796,0.000000,0.000000,0.250000,0,0);}
.m92_c01133{transform:matrix(0.255430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255430,0.000000,0.000000,0.250000,0,0);}
.m7a_c01133{transform:matrix(0.258224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258224,0.000000,0.000000,0.250000,0,0);}
.m72_c01133{transform:matrix(0.258525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258525,0.000000,0.000000,0.250000,0,0);}
.m64_c01133{transform:matrix(0.258659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258659,0.000000,0.000000,0.250000,0,0);}
.m1f_c01133{transform:matrix(0.262806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262806,0.000000,0.000000,0.250000,0,0);}
.m5c_c01133{transform:matrix(0.268202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268202,0.000000,0.000000,0.250000,0,0);}
.m52_c01133{transform:matrix(0.268354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268354,0.000000,0.000000,0.250000,0,0);}
.m25_c01133{transform:matrix(0.268461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268461,0.000000,0.000000,0.250000,0,0);}
.m3e_c01133{transform:matrix(0.269009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269009,0.000000,0.000000,0.250000,0,0);}
.m2e_c01133{transform:matrix(0.271860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271860,0.000000,0.000000,0.250000,0,0);}
.m8e_c01133{transform:matrix(0.272081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272081,0.000000,0.000000,0.250000,0,0);}
.m93_c01133{transform:matrix(0.272171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272171,0.000000,0.000000,0.250000,0,0);}
.m8f_c01133{transform:matrix(0.272569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272569,0.000000,0.000000,0.250000,0,0);}
.m8a_c01133{transform:matrix(0.272956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272956,0.000000,0.000000,0.250000,0,0);}
.m48_c01133{transform:matrix(0.273647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273647,0.000000,0.000000,0.250000,0,0);}
.m31_c01133{transform:matrix(0.273900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273900,0.000000,0.000000,0.250000,0,0);}
.m8d_c01133{transform:matrix(0.275437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275437,0.000000,0.000000,0.250000,0,0);}
.m4_c01133{transform:matrix(0.275677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275677,0.000000,0.000000,0.250000,0,0);}
.m44_c01133{transform:matrix(0.276721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276721,0.000000,0.000000,0.250000,0,0);}
.m3a_c01133{transform:matrix(0.276927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276927,0.000000,0.000000,0.250000,0,0);}
.m30_c01133{transform:matrix(0.277210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277210,0.000000,0.000000,0.250000,0,0);}
.m1b_c01133{transform:matrix(0.278694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278694,0.000000,0.000000,0.250000,0,0);}
.m35_c01133{transform:matrix(0.278792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278792,0.000000,0.000000,0.250000,0,0);}
.m76_c01133{transform:matrix(0.279374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279374,0.000000,0.000000,0.250000,0,0);}
.m94_c01133{transform:matrix(0.279912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279912,0.000000,0.000000,0.250000,0,0);}
.m56_c01133{transform:matrix(0.280144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280144,0.000000,0.000000,0.250000,0,0);}
.m1e_c01133{transform:matrix(0.281943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281943,0.000000,0.000000,0.250000,0,0);}
.m75_c01133{transform:matrix(0.283172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283172,0.000000,0.000000,0.250000,0,0);}
.m19_c01133{transform:matrix(0.283683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283683,0.000000,0.000000,0.250000,0,0);}
.m5_c01133{transform:matrix(0.284835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284835,0.000000,0.000000,0.250000,0,0);}
.m9b_c01133{transform:matrix(0.285319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285319,0.000000,0.000000,0.250000,0,0);}
.m97_c01133{transform:matrix(0.285725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285725,0.000000,0.000000,0.250000,0,0);}
.m6f_c01133{transform:matrix(0.285935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285935,0.000000,0.000000,0.250000,0,0);}
.m70_c01133{transform:matrix(0.286130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286130,0.000000,0.000000,0.250000,0,0);}
.m79_c01133{transform:matrix(0.286454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286454,0.000000,0.000000,0.250000,0,0);}
.m71_c01133{transform:matrix(0.287072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287072,0.000000,0.000000,0.250000,0,0);}
.m4a_c01133{transform:matrix(0.290157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290157,0.000000,0.000000,0.250000,0,0);}
.m0_c01133{transform:matrix(0.290678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290678,0.000000,0.000000,0.250000,0,0);}
.m4e_c01133{transform:matrix(0.291035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291035,0.000000,0.000000,0.250000,0,0);}
.m1d_c01133{transform:matrix(0.291691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291691,0.000000,0.000000,0.250000,0,0);}
.m55_c01133{transform:matrix(0.291762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291762,0.000000,0.000000,0.250000,0,0);}
.m43_c01133{transform:matrix(0.293073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293073,0.000000,0.000000,0.250000,0,0);}
.m5d_c01133{transform:matrix(0.293521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293521,0.000000,0.000000,0.250000,0,0);}
.m4b_c01133{transform:matrix(0.293993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293993,0.000000,0.000000,0.250000,0,0);}
.m47_c01133{transform:matrix(0.294297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294297,0.000000,0.000000,0.250000,0,0);}
.m60_c01133{transform:matrix(0.295018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295018,0.000000,0.000000,0.250000,0,0);}
.m45_c01133{transform:matrix(0.295439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295439,0.000000,0.000000,0.250000,0,0);}
.m6c_c01133{transform:matrix(0.295595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295595,0.000000,0.000000,0.250000,0,0);}
.m95_c01133{transform:matrix(0.296638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296638,0.000000,0.000000,0.250000,0,0);}
.m6b_c01133{transform:matrix(0.296642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296642,0.000000,0.000000,0.250000,0,0);}
.m8c_c01133{transform:matrix(0.297886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297886,0.000000,0.000000,0.250000,0,0);}
.m24_c01133{transform:matrix(0.299162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299162,0.000000,0.000000,0.250000,0,0);}
.m39_c01133{transform:matrix(0.299274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299274,0.000000,0.000000,0.250000,0,0);}
.m1a_c01133{transform:matrix(0.300509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300509,0.000000,0.000000,0.250000,0,0);}
.m6e_c01133{transform:matrix(0.300803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300803,0.000000,0.000000,0.250000,0,0);}
.m91_c01133{transform:matrix(0.301476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301476,0.000000,0.000000,0.250000,0,0);}
.m7b_c01133{transform:matrix(0.301898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301898,0.000000,0.000000,0.250000,0,0);}
.m3c_c01133{transform:matrix(0.302831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302831,0.000000,0.000000,0.250000,0,0);}
.m32_c01133{transform:matrix(0.305794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305794,0.000000,0.000000,0.250000,0,0);}
.m4d_c01133{transform:matrix(0.306549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306549,0.000000,0.000000,0.250000,0,0);}
.m5f_c01133{transform:matrix(0.308771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308771,0.000000,0.000000,0.250000,0,0);}
.m50_c01133{transform:matrix(0.308774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308774,0.000000,0.000000,0.250000,0,0);}
.m38_c01133{transform:matrix(0.310030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310030,0.000000,0.000000,0.250000,0,0);}
.m9c_c01133{transform:matrix(0.310309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310309,0.000000,0.000000,0.250000,0,0);}
.m58_c01133{transform:matrix(0.310708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310708,0.000000,0.000000,0.250000,0,0);}
.m53_c01133{transform:matrix(0.314012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314012,0.000000,0.000000,0.250000,0,0);}
.m3f_c01133{transform:matrix(0.314272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314272,0.000000,0.000000,0.250000,0,0);}
.m37_c01133{transform:matrix(0.314752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314752,0.000000,0.000000,0.250000,0,0);}
.m36_c01133{transform:matrix(0.315657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315657,0.000000,0.000000,0.250000,0,0);}
.m66_c01133{transform:matrix(0.315826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315826,0.000000,0.000000,0.250000,0,0);}
.m99_c01133{transform:matrix(0.316437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316437,0.000000,0.000000,0.250000,0,0);}
.m3b_c01133{transform:matrix(0.316516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316516,0.000000,0.000000,0.250000,0,0);}
.m96_c01133{transform:matrix(0.317494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317494,0.000000,0.000000,0.250000,0,0);}
.m29_c01133{transform:matrix(0.318158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318158,0.000000,0.000000,0.250000,0,0);}
.m2a_c01133{transform:matrix(0.319610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319610,0.000000,0.000000,0.250000,0,0);}
.m28_c01133{transform:matrix(0.319764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319764,0.000000,0.000000,0.250000,0,0);}
.m34_c01133{transform:matrix(0.320148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320148,0.000000,0.000000,0.250000,0,0);}
.m61_c01133{transform:matrix(0.320720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320720,0.000000,0.000000,0.250000,0,0);}
.m74_c01133{transform:matrix(0.320930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320930,0.000000,0.000000,0.250000,0,0);}
.m6_c01133{transform:matrix(0.321122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321122,0.000000,0.000000,0.250000,0,0);}
.m54_c01133{transform:matrix(0.322077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322077,0.000000,0.000000,0.250000,0,0);}
.m22_c01133{transform:matrix(0.323809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323809,0.000000,0.000000,0.250000,0,0);}
.m33_c01133{transform:matrix(0.323840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323840,0.000000,0.000000,0.250000,0,0);}
.m51_c01133{transform:matrix(0.324196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324196,0.000000,0.000000,0.250000,0,0);}
.m18_c01133{transform:matrix(0.326062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326062,0.000000,0.000000,0.250000,0,0);}
.m73_c01133{transform:matrix(0.326729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326729,0.000000,0.000000,0.250000,0,0);}
.m4c_c01133{transform:matrix(0.327008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327008,0.000000,0.000000,0.250000,0,0);}
.m20_c01133{transform:matrix(0.330662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330662,0.000000,0.000000,0.250000,0,0);}
.m5b_c01133{transform:matrix(0.334074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334074,0.000000,0.000000,0.250000,0,0);}
.m88_c01133{transform:matrix(0.334567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334567,0.000000,0.000000,0.250000,0,0);}
.m27_c01133{transform:matrix(0.334731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334731,0.000000,0.000000,0.250000,0,0);}
.m2_c01133{transform:matrix(0.335666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335666,0.000000,0.000000,0.250000,0,0);}
.m98_c01133{transform:matrix(0.336317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336317,0.000000,0.000000,0.250000,0,0);}
.m63_c01133{transform:matrix(0.336347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336347,0.000000,0.000000,0.250000,0,0);}
.m9a_c01133{transform:matrix(0.336508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336508,0.000000,0.000000,0.250000,0,0);}
.m65_c01133{transform:matrix(0.337202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337202,0.000000,0.000000,0.250000,0,0);}
.m46_c01133{transform:matrix(0.339567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339567,0.000000,0.000000,0.250000,0,0);}
.m42_c01133{transform:matrix(0.340607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340607,0.000000,0.000000,0.250000,0,0);}
.m3_c01133{transform:matrix(0.344375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344375,0.000000,0.000000,0.250000,0,0);}
.m6d_c01133{transform:matrix(0.347562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347562,0.000000,0.000000,0.250000,0,0);}
.m8b_c01133{transform:matrix(0.348393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348393,0.000000,0.000000,0.250000,0,0);}
.m1c_c01133{transform:matrix(0.350678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350678,0.000000,0.000000,0.250000,0,0);}
.m40_c01133{transform:matrix(0.352824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352824,0.000000,0.000000,0.250000,0,0);}
.m3d_c01133{transform:matrix(0.355345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355345,0.000000,0.000000,0.250000,0,0);}
.m59_c01133{transform:matrix(0.357364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357364,0.000000,0.000000,0.250000,0,0);}
.m5a_c01133{transform:matrix(0.359239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359239,0.000000,0.000000,0.250000,0,0);}
.m5e_c01133{transform:matrix(0.359671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359671,0.000000,0.000000,0.250000,0,0);}
.mb_c01133{transform:matrix(0.361823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361823,0.000000,0.000000,0.250000,0,0);}
.m89_c01133{transform:matrix(0.363425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363425,0.000000,0.000000,0.250000,0,0);}
.m2f_c01133{transform:matrix(0.372069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372069,0.000000,0.000000,0.250000,0,0);}
.m41_c01133{transform:matrix(0.376247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376247,0.000000,0.000000,0.250000,0,0);}
.m2c_c01133{transform:matrix(0.378872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378872,0.000000,0.000000,0.250000,0,0);}
.m67_c01133{transform:matrix(0.386163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386163,0.000000,0.000000,0.250000,0,0);}
.m90_c01133{transform:matrix(0.394968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394968,0.000000,0.000000,0.250000,0,0);}
.m4f_c01133{transform:matrix(0.414486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414486,0.000000,0.000000,0.250000,0,0);}
.m23_c01133{transform:matrix(0.419020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419020,0.000000,0.000000,0.250000,0,0);}
.m2d_c01133{transform:matrix(0.439965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439965,0.000000,0.000000,0.250000,0,0);}
.m6a_c01133{transform:matrix(0.465953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465953,0.000000,0.000000,0.250000,0,0);}
.v1_c01133{vertical-align:-2.831400px;}
.v0_c01133{vertical-align:0.000000px;}
.ls8_c01133{letter-spacing:-3.132367px;}
.ls13_c01133{letter-spacing:-3.104640px;}
.ls14_c01133{letter-spacing:-2.591827px;}
.ls17_c01133{letter-spacing:-2.303023px;}
.ls1d_c01133{letter-spacing:-2.273040px;}
.ls5_c01133{letter-spacing:-1.110783px;}
.ls1f_c01133{letter-spacing:-0.342620px;}
.ls10_c01133{letter-spacing:-0.259183px;}
.lsc_c01133{letter-spacing:-0.191031px;}
.ls15_c01133{letter-spacing:-0.007405px;}
.ls3_c01133{letter-spacing:0.000000px;}
.ls12_c01133{letter-spacing:0.081101px;}
.ls22_c01133{letter-spacing:0.984894px;}
.ls0_c01133{letter-spacing:1.569907px;}
.lse_c01133{letter-spacing:1.584123px;}
.ls18_c01133{letter-spacing:2.051246px;}
.lsf_c01133{letter-spacing:3.203964px;}
.ls1_c01133{letter-spacing:3.231360px;}
.ls1c_c01133{letter-spacing:3.247200px;}
.ls11_c01133{letter-spacing:3.306610px;}
.ls16_c01133{letter-spacing:3.316500px;}
.ls1b_c01133{letter-spacing:3.375900px;}
.ls1a_c01133{letter-spacing:3.534310px;}
.ls1e_c01133{letter-spacing:3.578027px;}
.ls9_c01133{letter-spacing:3.603610px;}
.ls2_c01133{letter-spacing:3.692700px;}
.ls4_c01133{letter-spacing:3.702610px;}
.ls23_c01133{letter-spacing:3.722400px;}
.lsb_c01133{letter-spacing:3.979810px;}
.lsa_c01133{letter-spacing:4.474810px;}
.ls19_c01133{letter-spacing:55.598598px;}
.lsd_c01133{letter-spacing:59.875398px;}
.ls6_c01133{letter-spacing:61.300998px;}
.ls20_c01133{letter-spacing:62.726400px;}
.ls21_c01133{letter-spacing:67.003200px;}
.ls7_c01133{letter-spacing:71.280000px;}
.sc__c01133{text-shadow:none;}
.sc0_c01133{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01133{-webkit-text-stroke:0px transparent;}
.sc0_c01133{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01133{word-spacing:-20.082956px;}
.ws1_c01133{word-spacing:0.000000px;}
._0_c01133{margin-left:-7.923600px;}
._1_c01133{width:2.467440px;}
._a_c01133{width:4.774176px;}
._8_c01133{width:6.221111px;}
._7_c01133{width:8.122615px;}
._6_c01133{width:9.923661px;}
._5_c01133{width:21.779852px;}
._9_c01133{width:32.063669px;}
._2_c01133{width:41.753745px;}
._4_c01133{width:111.868020px;}
._3_c01133{width:248.681664px;}
.fc0_c01133{color:transparent;}
.fs2_c01133{font-size:25.146000px;}
.fsf_c01133{font-size:28.512000px;}
.fs3_c01133{font-size:28.908000px;}
.fsb_c01133{font-size:30.096000px;}
.fs4_c01133{font-size:39.600000px;}
.fs15_c01133{font-size:55.598598px;}
.fsc_c01133{font-size:59.875398px;}
.fs6_c01133{font-size:61.300998px;}
.fs1b_c01133{font-size:62.726400px;}
.fs18_c01133{font-size:64.944000px;}
.fs10_c01133{font-size:66.132198px;}
.fs14_c01133{font-size:66.330000px;}
.fs1_c01133{font-size:66.528000px;}
.fs1c_c01133{font-size:67.003200px;}
.fs17_c01133{font-size:67.518000px;}
.fs16_c01133{font-size:70.686198px;}
.fs7_c01133{font-size:71.280000px;}
.fs9_c01133{font-size:72.072198px;}
.fsd_c01133{font-size:72.666198px;}
.fse_c01133{font-size:72.864000px;}
.fs0_c01133{font-size:73.854000px;}
.fs5_c01133{font-size:74.052198px;}
.fs1d_c01133{font-size:74.448000px;}
.fsa_c01133{font-size:79.596198px;}
.fs19_c01133{font-size:80.586198px;}
.fs1a_c01133{font-size:81.576198px;}
.fs11_c01133{font-size:84.150000px;}
.fs13_c01133{font-size:88.704000px;}
.fs8_c01133{font-size:89.496198px;}
.fs12_c01133{font-size:101.376198px;}
.fs1e_c01133{font-size:108.504000px;}
.y0_c01133{bottom:0.000000px;}
.y1_c01133{bottom:76.500000px;}
.y22_c01133{bottom:118.949535px;}
.y21_c01133{bottom:184.165785px;}
.y20_c01133{bottom:250.817535px;}
.y1f_c01133{bottom:282.180735px;}
.y1a_c01133{bottom:339.199785px;}
.y1e_c01133{bottom:345.976335px;}
.y1d_c01133{bottom:378.765135px;}
.y1c_c01133{bottom:409.766985px;}
.y1b_c01133{bottom:441.486585px;}
.y19_c01133{bottom:473.562585px;}
.y18_c01133{bottom:504.930735px;}
.y17_c01133{bottom:568.726335px;}
.y13_c01133{bottom:600.797385px;}
.y14_c01133{bottom:601.158735px;}
.y15_c01133{bottom:601.515135px;}
.y16_c01133{bottom:602.222985px;}
.y12_c01133{bottom:627.527385px;}
.y11_c01133{bottom:633.586185px;}
.y10_c01133{bottom:665.667135px;}
.yf_c01133{bottom:679.561785px;}
.ye_c01133{bottom:697.381785px;}
.yd_c01133{bottom:698.099535px;}
.yc_c01133{bottom:761.895135px;}
.yb_c01133{bottom:777.571785px;}
.ya_c01133{bottom:824.972985px;}
.y9_c01133{bottom:857.053935px;}
.y8_c01133{bottom:887.342985px;}
.y7_c01133{bottom:921.200985px;}
.y6_c01133{bottom:953.281935px;}
.y5_c01133{bottom:954.346185px;}
.y4_c01133{bottom:962.548335px;}
.y3_c01133{bottom:975.378735px;}
.y2_c01133{bottom:1064.830185px;}
.h4_c01133{height:26.226492px;}
.h11_c01133{height:29.737125px;}
.h5_c01133{height:30.150141px;}
.hd_c01133{height:31.389188px;}
.h17_c01133{height:37.028666px;}
.he_c01133{height:39.877015px;}
.h8_c01133{height:40.826465px;}
.h6_c01133{height:41.301563px;}
.h1d_c01133{height:41.775782px;}
.h1e_c01133{height:44.624131px;}
.h9_c01133{height:47.472480px;}
.h1a_c01133{height:67.734563px;}
.h12_c01133{height:68.973816px;}
.h16_c01133{height:69.180117px;}
.h18_c01133{height:69.374638px;}
.h3_c01133{height:69.386625px;}
.h19_c01133{height:70.419164px;}
.h2_c01133{height:72.483662px;}
.h7_c01133{height:72.678183px;}
.h1f_c01133{height:73.030289px;}
.hb_c01133{height:75.169050px;}
.hf_c01133{height:75.788574px;}
.h10_c01133{height:75.994875px;}
.hc_c01133{height:78.119315px;}
.h1b_c01133{height:79.051598px;}
.h1c_c01133{height:80.062577px;}
.h13_c01133{height:82.547534px;}
.h15_c01133{height:87.058125px;}
.ha_c01133{height:87.835624px;}
.h14_c01133{height:99.495194px;}
.h20_c01133{height:106.490742px;}
.h1_c01133{height:1110.000000px;}
.h0_c01133{height:1263.000000px;}
.w1_c01133{width:775.500000px;}
.w0_c01133{width:892.500000px;}
.x0_c01133{left:0.000000px;}
.x1_c01133{left:58.500000px;}
.x64_c01133{left:74.593185px;}
.x29_c01133{left:76.360335px;}
.x4f_c01133{left:112.723035px;}
.x3d_c01133{left:129.335235px;}
.x1e_c01133{left:130.701435px;}
.x6_c01133{left:131.884485px;}
.x54_c01133{left:133.117035px;}
.x5b_c01133{left:153.179385px;}
.x71_c01133{left:161.757735px;}
.x60_c01133{left:162.821985px;}
.x2d_c01133{left:165.084135px;}
.x26_c01133{left:174.390135px;}
.x6e_c01133{left:175.691985px;}
.x65_c01133{left:184.478235px;}
.x47_c01133{left:185.869185px;}
.x2a_c01133{left:187.200735px;}
.x72_c01133{left:196.521585px;}
.x3e_c01133{left:198.833235px;}
.xe_c01133{left:204.312885px;}
.x61_c01133{left:206.594835px;}
.x1f_c01133{left:208.262985px;}
.xf_c01133{left:210.624135px;}
.x35_c01133{left:218.455035px;}
.x27_c01133{left:219.469785px;}
.x2e_c01133{left:220.964685px;}
.x73_c01133{left:229.364835px;}
.x7_c01133{left:232.854585px;}
.x6f_c01133{left:238.735185px;}
.x43_c01133{left:240.096435px;}
.x2b_c01133{left:242.378385px;}
.x8_c01133{left:252.971385px;}
.x50_c01133{left:261.901185px;}
.x36_c01133{left:264.811785px;}
.x10_c01133{left:273.211935px;}
.x11_c01133{left:274.988985px;}
.x3f_c01133{left:275.998785px;}
.x66_c01133{left:283.943535px;}
.x37_c01133{left:286.552185px;}
.x62_c01133{left:296.075985px;}
.x74_c01133{left:307.520385px;}
.x2c_c01133{left:308.653935px;}
.x12_c01133{left:309.698385px;}
.x44_c01133{left:317.860935px;}
.x9_c01133{left:319.989435px;}
.x45_c01133{left:329.597385px;}
.x20_c01133{left:331.230885px;}
.x40_c01133{left:341.021985px;}
.x2f_c01133{left:342.155535px;}
.x13_c01133{left:351.402135px;}
.x14_c01133{left:352.471335px;}
.x51_c01133{left:353.609835px;}
.x67_c01133{left:361.886235px;}
.x21_c01133{left:364.534485px;}
.x55_c01133{left:372.741585px;}
.x48_c01133{left:375.236385px;}
.xa_c01133{left:387.175785px;}
.x3b_c01133{left:395.838285px;}
.x15_c01133{left:398.798385px;}
.x63_c01133{left:408.208335px;}
.x16_c01133{left:409.495335px;}
.x56_c01133{left:414.187935px;}
.x17_c01133{left:419.830935px;}
.x18_c01133{left:429.453735px;}
.x19_c01133{left:432.304935px;}
.x68_c01133{left:439.789335px;}
.x38_c01133{left:441.858435px;}
.x69_c01133{left:450.481335px;}
.x41_c01133{left:452.401935px;}
.x70_c01133{left:461.831685px;}
.x57_c01133{left:463.252335px;}
.x6a_c01133{left:473.290935px;}
.x22_c01133{left:474.587835px;}
.xb_c01133{left:486.358935px;}
.x5c_c01133{left:496.323285px;}
.x23_c01133{left:497.615235px;}
.x52_c01133{left:498.679485px;}
.x49_c01133{left:507.584535px;}
.x5d_c01133{left:508.950735px;}
.x30_c01133{left:519.454635px;}
.x46_c01133{left:529.547685px;}
.x1a_c01133{left:531.384135px;}
.x53_c01133{left:539.893185px;}
.x4a_c01133{left:541.818735px;}
.x58_c01133{left:551.852385px;}
.x1b_c01133{left:563.455185px;}
.x31_c01133{left:573.741285px;}
.x59_c01133{left:583.774935px;}
.x39_c01133{left:585.349035px;}
.x24_c01133{left:595.070835px;}
.xc_c01133{left:596.130135px;}
.x5e_c01133{left:606.119235px;}
.x75_c01133{left:614.316435px;}
.x3a_c01133{left:617.231985px;}
.x32_c01133{left:618.291285px;}
.x6b_c01133{left:627.607185px;}
.x4b_c01133{left:629.181285px;}
.x5a_c01133{left:638.304135px;}
.x6c_c01133{left:639.368385px;}
.x42_c01133{left:641.323635px;}
.x1c_c01133{left:642.665085px;}
.x33_c01133{left:652.253235px;}
.x4c_c01133{left:661.425585px;}
.x76_c01133{left:671.929485px;}
.x4d_c01133{left:673.374885px;}
.x6d_c01133{left:682.492785px;}
.x25_c01133{left:684.200535px;}
.xd_c01133{left:685.343985px;}
.x34_c01133{left:687.833835px;}
.x5f_c01133{left:695.837985px;}
.x2_c01133{left:696.847785px;}
.x28_c01133{left:698.035785px;}
.x3_c01133{left:703.614435px;}
.x4_c01133{left:704.772735px;}
.x5_c01133{left:706.129035px;}
.x3c_c01133{left:707.960535px;}
.x1d_c01133{left:710.925585px;}
.x4e_c01133{left:729.027735px;}
@media print{
.v1_c01133{vertical-align:-2.516800pt;}
.v0_c01133{vertical-align:0.000000pt;}
.ls8_c01133{letter-spacing:-2.784326pt;}
.ls13_c01133{letter-spacing:-2.759680pt;}
.ls14_c01133{letter-spacing:-2.303846pt;}
.ls17_c01133{letter-spacing:-2.047132pt;}
.ls1d_c01133{letter-spacing:-2.020480pt;}
.ls5_c01133{letter-spacing:-0.987363pt;}
.ls1f_c01133{letter-spacing:-0.304551pt;}
.ls10_c01133{letter-spacing:-0.230385pt;}
.lsc_c01133{letter-spacing:-0.169805pt;}
.ls15_c01133{letter-spacing:-0.006582pt;}
.ls3_c01133{letter-spacing:0.000000pt;}
.ls12_c01133{letter-spacing:0.072090pt;}
.ls22_c01133{letter-spacing:0.875462pt;}
.ls0_c01133{letter-spacing:1.395473pt;}
.lse_c01133{letter-spacing:1.408109pt;}
.ls18_c01133{letter-spacing:1.823330pt;}
.lsf_c01133{letter-spacing:2.847968pt;}
.ls1_c01133{letter-spacing:2.872320pt;}
.ls1c_c01133{letter-spacing:2.886400pt;}
.ls11_c01133{letter-spacing:2.939209pt;}
.ls16_c01133{letter-spacing:2.948000pt;}
.ls1b_c01133{letter-spacing:3.000800pt;}
.ls1a_c01133{letter-spacing:3.141609pt;}
.ls1e_c01133{letter-spacing:3.180469pt;}
.ls9_c01133{letter-spacing:3.203209pt;}
.ls2_c01133{letter-spacing:3.282400pt;}
.ls4_c01133{letter-spacing:3.291209pt;}
.ls23_c01133{letter-spacing:3.308800pt;}
.lsb_c01133{letter-spacing:3.537609pt;}
.lsa_c01133{letter-spacing:3.977609pt;}
.ls19_c01133{letter-spacing:49.420976pt;}
.lsd_c01133{letter-spacing:53.222576pt;}
.ls6_c01133{letter-spacing:54.489776pt;}
.ls20_c01133{letter-spacing:55.756800pt;}
.ls21_c01133{letter-spacing:59.558400pt;}
.ls7_c01133{letter-spacing:63.360000pt;}
.ws0_c01133{word-spacing:-17.851517pt;}
.ws1_c01133{word-spacing:0.000000pt;}
._0_c01133{margin-left:-7.043200pt;}
._1_c01133{width:2.193280pt;}
._a_c01133{width:4.243712pt;}
._8_c01133{width:5.529876pt;}
._7_c01133{width:7.220102pt;}
._6_c01133{width:8.821032pt;}
._5_c01133{width:19.359868pt;}
._9_c01133{width:28.501039pt;}
._2_c01133{width:37.114440pt;}
._4_c01133{width:99.438240pt;}
._3_c01133{width:221.050368pt;}
.fs2_c01133{font-size:22.352000pt;}
.fsf_c01133{font-size:25.344000pt;}
.fs3_c01133{font-size:25.696000pt;}
.fsb_c01133{font-size:26.752000pt;}
.fs4_c01133{font-size:35.200000pt;}
.fs15_c01133{font-size:49.420976pt;}
.fsc_c01133{font-size:53.222576pt;}
.fs6_c01133{font-size:54.489776pt;}
.fs1b_c01133{font-size:55.756800pt;}
.fs18_c01133{font-size:57.728000pt;}
.fs10_c01133{font-size:58.784176pt;}
.fs14_c01133{font-size:58.960000pt;}
.fs1_c01133{font-size:59.136000pt;}
.fs1c_c01133{font-size:59.558400pt;}
.fs17_c01133{font-size:60.016000pt;}
.fs16_c01133{font-size:62.832176pt;}
.fs7_c01133{font-size:63.360000pt;}
.fs9_c01133{font-size:64.064176pt;}
.fsd_c01133{font-size:64.592176pt;}
.fse_c01133{font-size:64.768000pt;}
.fs0_c01133{font-size:65.648000pt;}
.fs5_c01133{font-size:65.824176pt;}
.fs1d_c01133{font-size:66.176000pt;}
.fsa_c01133{font-size:70.752176pt;}
.fs19_c01133{font-size:71.632176pt;}
.fs1a_c01133{font-size:72.512176pt;}
.fs11_c01133{font-size:74.800000pt;}
.fs13_c01133{font-size:78.848000pt;}
.fs8_c01133{font-size:79.552176pt;}
.fs12_c01133{font-size:90.112176pt;}
.fs1e_c01133{font-size:96.448000pt;}
.y0_c01133{bottom:0.000000pt;}
.y1_c01133{bottom:68.000000pt;}
.y22_c01133{bottom:105.732920pt;}
.y21_c01133{bottom:163.702920pt;}
.y20_c01133{bottom:222.948920pt;}
.y1f_c01133{bottom:250.827320pt;}
.y1a_c01133{bottom:301.510920pt;}
.y1e_c01133{bottom:307.534520pt;}
.y1d_c01133{bottom:336.680120pt;}
.y1c_c01133{bottom:364.237320pt;}
.y1b_c01133{bottom:392.432520pt;}
.y19_c01133{bottom:420.944520pt;}
.y18_c01133{bottom:448.827320pt;}
.y17_c01133{bottom:505.534520pt;}
.y13_c01133{bottom:534.042120pt;}
.y14_c01133{bottom:534.363320pt;}
.y15_c01133{bottom:534.680120pt;}
.y16_c01133{bottom:535.309320pt;}
.y12_c01133{bottom:557.802120pt;}
.y11_c01133{bottom:563.187720pt;}
.y10_c01133{bottom:591.704120pt;}
.yf_c01133{bottom:604.054920pt;}
.ye_c01133{bottom:619.894920pt;}
.yd_c01133{bottom:620.532920pt;}
.yc_c01133{bottom:677.240120pt;}
.yb_c01133{bottom:691.174920pt;}
.ya_c01133{bottom:733.309320pt;}
.y9_c01133{bottom:761.825720pt;}
.y8_c01133{bottom:788.749320pt;}
.y7_c01133{bottom:818.845320pt;}
.y6_c01133{bottom:847.361720pt;}
.y5_c01133{bottom:848.307720pt;}
.y4_c01133{bottom:855.598520pt;}
.y3_c01133{bottom:867.003320pt;}
.y2_c01133{bottom:946.515720pt;}
.h4_c01133{height:23.312438pt;}
.h11_c01133{height:26.433000pt;}
.h5_c01133{height:26.800125pt;}
.hd_c01133{height:27.901500pt;}
.h17_c01133{height:32.914370pt;}
.he_c01133{height:35.446236pt;}
.h8_c01133{height:36.290191pt;}
.h6_c01133{height:36.712500pt;}
.h1d_c01133{height:37.134029pt;}
.h1e_c01133{height:39.665894pt;}
.h9_c01133{height:42.197760pt;}
.h1a_c01133{height:60.208500pt;}
.h12_c01133{height:61.310059pt;}
.h16_c01133{height:61.493438pt;}
.h18_c01133{height:61.666345pt;}
.h3_c01133{height:61.677000pt;}
.h19_c01133{height:62.594813pt;}
.h2_c01133{height:64.429922pt;}
.h7_c01133{height:64.602829pt;}
.h1f_c01133{height:64.915813pt;}
.hb_c01133{height:66.816934pt;}
.hf_c01133{height:67.367621pt;}
.h10_c01133{height:67.551000pt;}
.hc_c01133{height:69.439391pt;}
.h1b_c01133{height:70.268087pt;}
.h1c_c01133{height:71.166735pt;}
.h13_c01133{height:73.375586pt;}
.h15_c01133{height:77.385000pt;}
.ha_c01133{height:78.076110pt;}
.h14_c01133{height:88.440173pt;}
.h20_c01133{height:94.658438pt;}
.h1_c01133{height:986.666667pt;}
.h0_c01133{height:1122.666667pt;}
.w1_c01133{width:689.333333pt;}
.w0_c01133{width:793.333333pt;}
.x0_c01133{left:0.000000pt;}
.x1_c01133{left:52.000000pt;}
.x64_c01133{left:66.305053pt;}
.x29_c01133{left:67.875853pt;}
.x4f_c01133{left:100.198253pt;}
.x3d_c01133{left:114.964653pt;}
.x1e_c01133{left:116.179053pt;}
.x6_c01133{left:117.230653pt;}
.x54_c01133{left:118.326253pt;}
.x5b_c01133{left:136.159453pt;}
.x71_c01133{left:143.784653pt;}
.x60_c01133{left:144.730653pt;}
.x2d_c01133{left:146.741453pt;}
.x26_c01133{left:155.013453pt;}
.x6e_c01133{left:156.170653pt;}
.x65_c01133{left:163.980653pt;}
.x47_c01133{left:165.217053pt;}
.x2a_c01133{left:166.400653pt;}
.x72_c01133{left:174.685853pt;}
.x3e_c01133{left:176.740653pt;}
.xe_c01133{left:181.611453pt;}
.x61_c01133{left:183.639853pt;}
.x1f_c01133{left:185.122653pt;}
.xf_c01133{left:187.221453pt;}
.x35_c01133{left:194.182253pt;}
.x27_c01133{left:195.084253pt;}
.x2e_c01133{left:196.413053pt;}
.x73_c01133{left:203.879853pt;}
.x7_c01133{left:206.981853pt;}
.x6f_c01133{left:212.209053pt;}
.x43_c01133{left:213.419053pt;}
.x2b_c01133{left:215.447453pt;}
.x8_c01133{left:224.863453pt;}
.x50_c01133{left:232.801053pt;}
.x36_c01133{left:235.388253pt;}
.x10_c01133{left:242.855053pt;}
.x11_c01133{left:244.434653pt;}
.x3f_c01133{left:245.332253pt;}
.x66_c01133{left:252.394253pt;}
.x37_c01133{left:254.713053pt;}
.x62_c01133{left:263.178653pt;}
.x74_c01133{left:273.351453pt;}
.x2c_c01133{left:274.359053pt;}
.x12_c01133{left:275.287453pt;}
.x44_c01133{left:282.543053pt;}
.x9_c01133{left:284.435053pt;}
.x45_c01133{left:292.975453pt;}
.x20_c01133{left:294.427453pt;}
.x40_c01133{left:303.130653pt;}
.x2f_c01133{left:304.138253pt;}
.x13_c01133{left:312.357453pt;}
.x14_c01133{left:313.307853pt;}
.x51_c01133{left:314.319853pt;}
.x67_c01133{left:321.676653pt;}
.x21_c01133{left:324.030653pt;}
.x55_c01133{left:331.325853pt;}
.x48_c01133{left:333.543453pt;}
.xa_c01133{left:344.156253pt;}
.x3b_c01133{left:351.856253pt;}
.x15_c01133{left:354.487453pt;}
.x63_c01133{left:362.851853pt;}
.x16_c01133{left:363.995853pt;}
.x56_c01133{left:368.167053pt;}
.x17_c01133{left:373.183053pt;}
.x18_c01133{left:381.736653pt;}
.x19_c01133{left:384.271053pt;}
.x68_c01133{left:390.923853pt;}
.x38_c01133{left:392.763053pt;}
.x69_c01133{left:400.427853pt;}
.x41_c01133{left:402.135053pt;}
.x70_c01133{left:410.517053pt;}
.x57_c01133{left:411.779853pt;}
.x6a_c01133{left:420.703053pt;}
.x22_c01133{left:421.855853pt;}
.xb_c01133{left:432.319053pt;}
.x5c_c01133{left:441.176253pt;}
.x23_c01133{left:442.324653pt;}
.x52_c01133{left:443.270653pt;}
.x49_c01133{left:451.186253pt;}
.x5d_c01133{left:452.400653pt;}
.x30_c01133{left:461.737453pt;}
.x46_c01133{left:470.709053pt;}
.x1a_c01133{left:472.341453pt;}
.x53_c01133{left:479.905053pt;}
.x4a_c01133{left:481.616653pt;}
.x58_c01133{left:490.535453pt;}
.x1b_c01133{left:500.849053pt;}
.x31_c01133{left:509.992253pt;}
.x59_c01133{left:518.911053pt;}
.x39_c01133{left:520.310253pt;}
.x24_c01133{left:528.951853pt;}
.xc_c01133{left:529.893453pt;}
.x5e_c01133{left:538.772653pt;}
.x75_c01133{left:546.059053pt;}
.x3a_c01133{left:548.650653pt;}
.x32_c01133{left:549.592253pt;}
.x6b_c01133{left:557.873053pt;}
.x4b_c01133{left:559.272253pt;}
.x5a_c01133{left:567.381453pt;}
.x6c_c01133{left:568.327453pt;}
.x42_c01133{left:570.065453pt;}
.x1c_c01133{left:571.257853pt;}
.x33_c01133{left:579.780653pt;}
.x4c_c01133{left:587.933853pt;}
.x76_c01133{left:597.270653pt;}
.x4d_c01133{left:598.555453pt;}
.x6d_c01133{left:606.660253pt;}
.x25_c01133{left:608.178253pt;}
.xd_c01133{left:609.194653pt;}
.x34_c01133{left:611.407853pt;}
.x5f_c01133{left:618.522653pt;}
.x2_c01133{left:619.420253pt;}
.x28_c01133{left:620.476253pt;}
.x3_c01133{left:625.435053pt;}
.x4_c01133{left:626.464653pt;}
.x5_c01133{left:627.670253pt;}
.x3c_c01133{left:629.298253pt;}
.x1d_c01133{left:631.933853pt;}
.x4e_c01133{left:648.024653pt;}
}





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

.ir_c01134:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01134{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01134;src:url('chunks/assets/font_84798ae14ff626f40aa9dac0.woff2')format("woff");}.ff1_c01134{font-family:ff1_c01134;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01134;src:url('chunks/assets/font_61f4ce96db54a84e202217a6.woff2')format("woff");}.ff2_c01134{font-family:ff2_c01134;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01134;src:url('chunks/assets/font_c6b6ed3490704254a9470ff9.woff2')format("woff");}.ff3_c01134{font-family:ff3_c01134;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01134;src:url('chunks/assets/font_476d30e13c76f2bf2678a32b.woff2')format("woff");}.ff4_c01134{font-family:ff4_c01134;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01134;src:url('chunks/assets/font_55d77e79e01b7d8ed7b23bf9.woff2')format("woff");}.ff5_c01134{font-family:ff5_c01134;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01134;src:url('chunks/assets/font_876e2f28ce3e3eb98a90c82c.woff2')format("woff");}.ff6_c01134{font-family:ff6_c01134;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m52_c01134{transform:matrix(0.022728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.022728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.022728,0.000000,0.000000,0.250000,0,0);}
.m20_c01134{transform:matrix(0.028410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.028410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.028410,0.000000,0.000000,0.250000,0,0);}
.m2d_c01134{transform:matrix(0.038890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.038890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.038890,0.000000,0.000000,0.250000,0,0);}
.m17_c01134{transform:matrix(0.039774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.039774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.039774,0.000000,0.000000,0.250000,0,0);}
.m2f_c01134{transform:matrix(0.050001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050001,0.000000,0.000000,0.250000,0,0);}
.m8f_c01134{transform:matrix(0.065791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065791,0.000000,0.000000,0.250000,0,0);}
.m19_c01134{transform:matrix(0.073864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073864,0.000000,0.000000,0.250000,0,0);}
.mab_c01134{transform:matrix(0.077031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077031,0.000000,0.000000,0.250000,0,0);}
.mad_c01134{transform:matrix(0.087684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087684,0.000000,0.000000,0.250000,0,0);}
.m31_c01134{transform:matrix(0.088771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088771,0.000000,0.000000,0.250000,0,0);}
.m30_c01134{transform:matrix(0.089445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089445,0.000000,0.000000,0.250000,0,0);}
.m1b_c01134{transform:matrix(0.092533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092533,0.000000,0.000000,0.250000,0,0);}
.ma5_c01134{transform:matrix(0.100362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100362,0.000000,0.000000,0.250000,0,0);}
.m84_c01134{transform:matrix(0.105114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105114,0.000000,0.000000,0.250000,0,0);}
.m2c_c01134{transform:matrix(0.106250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106250,0.000000,0.000000,0.250000,0,0);}
.m32_c01134{transform:matrix(0.108334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108334,0.000000,0.000000,0.250000,0,0);}
.m16_c01134{transform:matrix(0.108471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108471,0.000000,0.000000,0.250000,0,0);}
.m1c_c01134{transform:matrix(0.114554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114554,0.000000,0.000000,0.250000,0,0);}
.m38_c01134{transform:matrix(0.117462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117462,0.000000,0.000000,0.250000,0,0);}
.m26_c01134{transform:matrix(0.118207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118207,0.000000,0.000000,0.250000,0,0);}
.m21_c01134{transform:matrix(0.119318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119318,0.000000,0.000000,0.250000,0,0);}
.m2e_c01134{transform:matrix(0.119841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119841,0.000000,0.000000,0.250000,0,0);}
.m72_c01134{transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);}
.m18_c01134{transform:matrix(0.130683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130683,0.000000,0.000000,0.250000,0,0);}
.m9e_c01134{transform:matrix(0.131395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131395,0.000000,0.000000,0.250000,0,0);}
.m25_c01134{transform:matrix(0.132065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132065,0.000000,0.000000,0.250000,0,0);}
.ma8_c01134{transform:matrix(0.134092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134092,0.000000,0.000000,0.250000,0,0);}
.m8c_c01134{transform:matrix(0.144739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144739,0.000000,0.000000,0.250000,0,0);}
.m37_c01134{transform:matrix(0.147636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147636,0.000000,0.000000,0.250000,0,0);}
.m23_c01134{transform:matrix(0.149155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149155,0.000000,0.000000,0.250000,0,0);}
.m33_c01134{transform:matrix(0.151286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151286,0.000000,0.000000,0.250000,0,0);}
.m29_c01134{transform:matrix(0.153138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153138,0.000000,0.000000,0.250000,0,0);}
.m78_c01134{transform:matrix(0.154345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154345,0.000000,0.000000,0.250000,0,0);}
.m99_c01134{transform:matrix(0.156177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156177,0.000000,0.000000,0.250000,0,0);}
.m8d_c01134{transform:matrix(0.157895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157895,0.000000,0.000000,0.250000,0,0);}
.m9f_c01134{transform:matrix(0.162790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162790,0.000000,0.000000,0.250000,0,0);}
.ma7_c01134{transform:matrix(0.163637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163637,0.000000,0.000000,0.250000,0,0);}
.m65_c01134{transform:matrix(0.164244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164244,0.000000,0.000000,0.250000,0,0);}
.m1a_c01134{transform:matrix(0.164774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164774,0.000000,0.000000,0.250000,0,0);}
.m58_c01134{transform:matrix(0.167333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167333,0.000000,0.000000,0.250000,0,0);}
.ma4_c01134{transform:matrix(0.172728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172728,0.000000,0.000000,0.250000,0,0);}
.m36_c01134{transform:matrix(0.172791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172791,0.000000,0.000000,0.250000,0,0);}
.m51_c01134{transform:matrix(0.173702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173702,0.000000,0.000000,0.250000,0,0);}
.m71_c01134{transform:matrix(0.175607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175607,0.000000,0.000000,0.250000,0,0);}
.m2b_c01134{transform:matrix(0.180840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180840,0.000000,0.000000,0.250000,0,0);}
.m39_c01134{transform:matrix(0.185031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185031,0.000000,0.000000,0.250000,0,0);}
.m60_c01134{transform:matrix(0.189318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189318,0.000000,0.000000,0.250000,0,0);}
.m8a_c01134{transform:matrix(0.191621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191621,0.000000,0.000000,0.250000,0,0);}
.mac_c01134{transform:matrix(0.197584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197584,0.000000,0.000000,0.250000,0,0);}
.m34_c01134{transform:matrix(0.207984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207984,0.000000,0.000000,0.250000,0,0);}
.m7c_c01134{transform:matrix(0.208950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208950,0.000000,0.000000,0.250000,0,0);}
.m22_c01134{transform:matrix(0.218779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218779,0.000000,0.000000,0.250000,0,0);}
.m3a_c01134{transform:matrix(0.222050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222050,0.000000,0.000000,0.250000,0,0);}
.m1e_c01134{transform:matrix(0.222232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222232,0.000000,0.000000,0.250000,0,0);}
.m43_c01134{transform:matrix(0.223459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223459,0.000000,0.000000,0.250000,0,0);}
.m9c_c01134{transform:matrix(0.229233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229233,0.000000,0.000000,0.250000,0,0);}
.m9b_c01134{transform:matrix(0.229849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229849,0.000000,0.000000,0.250000,0,0);}
.m10_c01134{transform:matrix(0.231281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231281,0.000000,0.000000,0.250000,0,0);}
.m2a_c01134{transform:matrix(0.235209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235209,0.000000,0.000000,0.250000,0,0);}
.ma0_c01134{transform:matrix(0.241323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241323,0.000000,0.000000,0.250000,0,0);}
.m7a_c01134{transform:matrix(0.242933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242933,0.000000,0.000000,0.250000,0,0);}
.maa_c01134{transform:matrix(0.246438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246438,0.000000,0.000000,0.250000,0,0);}
.m6d_c01134{transform:matrix(0.249825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249825,0.000000,0.000000,0.250000,0,0);}
.m0_c01134{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m57_c01134{transform:matrix(0.250563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250563,0.000000,0.000000,0.250000,0,0);}
.m1f_c01134{transform:matrix(0.252842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252842,0.000000,0.000000,0.250000,0,0);}
.m75_c01134{transform:matrix(0.253568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253568,0.000000,0.000000,0.250000,0,0);}
.m62_c01134{transform:matrix(0.253987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253987,0.000000,0.000000,0.250000,0,0);}
.mc_c01134{transform:matrix(0.254140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254140,0.000000,0.000000,0.250000,0,0);}
.m93_c01134{transform:matrix(0.254270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254270,0.000000,0.000000,0.250000,0,0);}
.m55_c01134{transform:matrix(0.257286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257286,0.000000,0.000000,0.250000,0,0);}
.mb0_c01134{transform:matrix(0.257746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257746,0.000000,0.000000,0.250000,0,0);}
.ma9_c01134{transform:matrix(0.262305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262305,0.000000,0.000000,0.250000,0,0);}
.m6_c01134{transform:matrix(0.263209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263209,0.000000,0.000000,0.250000,0,0);}
.m97_c01134{transform:matrix(0.264524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264524,0.000000,0.000000,0.250000,0,0);}
.m5_c01134{transform:matrix(0.264637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264637,0.000000,0.000000,0.250000,0,0);}
.m3c_c01134{transform:matrix(0.265417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265417,0.000000,0.000000,0.250000,0,0);}
.m96_c01134{transform:matrix(0.266286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266286,0.000000,0.000000,0.250000,0,0);}
.maf_c01134{transform:matrix(0.266442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266442,0.000000,0.000000,0.250000,0,0);}
.m83_c01134{transform:matrix(0.267450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267450,0.000000,0.000000,0.250000,0,0);}
.ma3_c01134{transform:matrix(0.268078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268078,0.000000,0.000000,0.250000,0,0);}
.m41_c01134{transform:matrix(0.268666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268666,0.000000,0.000000,0.250000,0,0);}
.m73_c01134{transform:matrix(0.269932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269932,0.000000,0.000000,0.250000,0,0);}
.me_c01134{transform:matrix(0.270388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270388,0.000000,0.000000,0.250000,0,0);}
.m7b_c01134{transform:matrix(0.270393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270393,0.000000,0.000000,0.250000,0,0);}
.m4d_c01134{transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);}
.m79_c01134{transform:matrix(0.271246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271246,0.000000,0.000000,0.250000,0,0);}
.m50_c01134{transform:matrix(0.271605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271605,0.000000,0.000000,0.250000,0,0);}
.m61_c01134{transform:matrix(0.272258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272258,0.000000,0.000000,0.250000,0,0);}
.m3e_c01134{transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);}
.m6c_c01134{transform:matrix(0.272983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272983,0.000000,0.000000,0.250000,0,0);}
.m8_c01134{transform:matrix(0.273393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273393,0.000000,0.000000,0.250000,0,0);}
.m24_c01134{transform:matrix(0.273683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273683,0.000000,0.000000,0.250000,0,0);}
.m47_c01134{transform:matrix(0.275351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275351,0.000000,0.000000,0.250000,0,0);}
.m13_c01134{transform:matrix(0.275800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275800,0.000000,0.000000,0.250000,0,0);}
.m12_c01134{transform:matrix(0.276947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276947,0.000000,0.000000,0.250000,0,0);}
.m5d_c01134{transform:matrix(0.278832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278832,0.000000,0.000000,0.250000,0,0);}
.m6f_c01134{transform:matrix(0.278843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278843,0.000000,0.000000,0.250000,0,0);}
.m49_c01134{transform:matrix(0.278894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278894,0.000000,0.000000,0.250000,0,0);}
.ma2_c01134{transform:matrix(0.279490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279490,0.000000,0.000000,0.250000,0,0);}
.m8b_c01134{transform:matrix(0.279913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279913,0.000000,0.000000,0.250000,0,0);}
.m5c_c01134{transform:matrix(0.279988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279988,0.000000,0.000000,0.250000,0,0);}
.m59_c01134{transform:matrix(0.280290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280290,0.000000,0.000000,0.250000,0,0);}
.m4f_c01134{transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);}
.ma6_c01134{transform:matrix(0.281299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281299,0.000000,0.000000,0.250000,0,0);}
.m3d_c01134{transform:matrix(0.281450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281450,0.000000,0.000000,0.250000,0,0);}
.m42_c01134{transform:matrix(0.283446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283446,0.000000,0.000000,0.250000,0,0);}
.m92_c01134{transform:matrix(0.284026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284026,0.000000,0.000000,0.250000,0,0);}
.m70_c01134{transform:matrix(0.285018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285018,0.000000,0.000000,0.250000,0,0);}
.m28_c01134{transform:matrix(0.286213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286213,0.000000,0.000000,0.250000,0,0);}
.m9_c01134{transform:matrix(0.286350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286350,0.000000,0.000000,0.250000,0,0);}
.md_c01134{transform:matrix(0.286478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286478,0.000000,0.000000,0.250000,0,0);}
.m3_c01134{transform:matrix(0.286809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286809,0.000000,0.000000,0.250000,0,0);}
.m98_c01134{transform:matrix(0.287355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287355,0.000000,0.000000,0.250000,0,0);}
.m9d_c01134{transform:matrix(0.287514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287514,0.000000,0.000000,0.250000,0,0);}
.m53_c01134{transform:matrix(0.287756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287756,0.000000,0.000000,0.250000,0,0);}
.m4_c01134{transform:matrix(0.288980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288980,0.000000,0.000000,0.250000,0,0);}
.ma1_c01134{transform:matrix(0.289228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289228,0.000000,0.000000,0.250000,0,0);}
.m4e_c01134{transform:matrix(0.290236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290236,0.000000,0.000000,0.250000,0,0);}
.m68_c01134{transform:matrix(0.291194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291194,0.000000,0.000000,0.250000,0,0);}
.m3f_c01134{transform:matrix(0.291546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291546,0.000000,0.000000,0.250000,0,0);}
.m9a_c01134{transform:matrix(0.291799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291799,0.000000,0.000000,0.250000,0,0);}
.m6e_c01134{transform:matrix(0.292912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292912,0.000000,0.000000,0.250000,0,0);}
.m1_c01134{transform:matrix(0.293450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293450,0.000000,0.000000,0.250000,0,0);}
.m5b_c01134{transform:matrix(0.293756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293756,0.000000,0.000000,0.250000,0,0);}
.m3b_c01134{transform:matrix(0.296039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296039,0.000000,0.000000,0.250000,0,0);}
.m67_c01134{transform:matrix(0.296064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296064,0.000000,0.000000,0.250000,0,0);}
.m5f_c01134{transform:matrix(0.296804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296804,0.000000,0.000000,0.250000,0,0);}
.m4b_c01134{transform:matrix(0.298137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298137,0.000000,0.000000,0.250000,0,0);}
.m27_c01134{transform:matrix(0.298886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298886,0.000000,0.000000,0.250000,0,0);}
.m5e_c01134{transform:matrix(0.299096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299096,0.000000,0.000000,0.250000,0,0);}
.m82_c01134{transform:matrix(0.299695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299695,0.000000,0.000000,0.250000,0,0);}
.m45_c01134{transform:matrix(0.301517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301517,0.000000,0.000000,0.250000,0,0);}
.m91_c01134{transform:matrix(0.302633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302633,0.000000,0.000000,0.250000,0,0);}
.m7f_c01134{transform:matrix(0.303805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303805,0.000000,0.000000,0.250000,0,0);}
.m1d_c01134{transform:matrix(0.303913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303913,0.000000,0.000000,0.250000,0,0);}
.mae_c01134{transform:matrix(0.304013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304013,0.000000,0.000000,0.250000,0,0);}
.m6b_c01134{transform:matrix(0.304445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304445,0.000000,0.000000,0.250000,0,0);}
.m7_c01134{transform:matrix(0.306471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306471,0.000000,0.000000,0.250000,0,0);}
.m40_c01134{transform:matrix(0.306963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306963,0.000000,0.000000,0.250000,0,0);}
.m48_c01134{transform:matrix(0.307381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307381,0.000000,0.000000,0.250000,0,0);}
.m6a_c01134{transform:matrix(0.308378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308378,0.000000,0.000000,0.250000,0,0);}
.m80_c01134{transform:matrix(0.309104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309104,0.000000,0.000000,0.250000,0,0);}
.m35_c01134{transform:matrix(0.309356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309356,0.000000,0.000000,0.250000,0,0);}
.m63_c01134{transform:matrix(0.309448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309448,0.000000,0.000000,0.250000,0,0);}
.mb1_c01134{transform:matrix(0.309807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309807,0.000000,0.000000,0.250000,0,0);}
.m4a_c01134{transform:matrix(0.311196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311196,0.000000,0.000000,0.250000,0,0);}
.m76_c01134{transform:matrix(0.313638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313638,0.000000,0.000000,0.250000,0,0);}
.m77_c01134{transform:matrix(0.313769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313769,0.000000,0.000000,0.250000,0,0);}
.mf_c01134{transform:matrix(0.315701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315701,0.000000,0.000000,0.250000,0,0);}
.m8e_c01134{transform:matrix(0.315791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315791,0.000000,0.000000,0.250000,0,0);}
.m7e_c01134{transform:matrix(0.315878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315878,0.000000,0.000000,0.250000,0,0);}
.ma_c01134{transform:matrix(0.319203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319203,0.000000,0.000000,0.250000,0,0);}
.m4c_c01134{transform:matrix(0.321788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321788,0.000000,0.000000,0.250000,0,0);}
.m7d_c01134{transform:matrix(0.322111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322111,0.000000,0.000000,0.250000,0,0);}
.m66_c01134{transform:matrix(0.324336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324336,0.000000,0.000000,0.250000,0,0);}
.m87_c01134{transform:matrix(0.324379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324379,0.000000,0.000000,0.250000,0,0);}
.m56_c01134{transform:matrix(0.328202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328202,0.000000,0.000000,0.250000,0,0);}
.mb_c01134{transform:matrix(0.330522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330522,0.000000,0.000000,0.250000,0,0);}
.m54_c01134{transform:matrix(0.330775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330775,0.000000,0.000000,0.250000,0,0);}
.m81_c01134{transform:matrix(0.332986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332986,0.000000,0.000000,0.250000,0,0);}
.m15_c01134{transform:matrix(0.334481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334481,0.000000,0.000000,0.250000,0,0);}
.m94_c01134{transform:matrix(0.334815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334815,0.000000,0.000000,0.250000,0,0);}
.m44_c01134{transform:matrix(0.335934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335934,0.000000,0.000000,0.250000,0,0);}
.m14_c01134{transform:matrix(0.337566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337566,0.000000,0.000000,0.250000,0,0);}
.m74_c01134{transform:matrix(0.339503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339503,0.000000,0.000000,0.250000,0,0);}
.m46_c01134{transform:matrix(0.340758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340758,0.000000,0.000000,0.250000,0,0);}
.m85_c01134{transform:matrix(0.341585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341585,0.000000,0.000000,0.250000,0,0);}
.m64_c01134{transform:matrix(0.349380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349380,0.000000,0.000000,0.250000,0,0);}
.m69_c01134{transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);}
.m11_c01134{transform:matrix(0.361066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361066,0.000000,0.000000,0.250000,0,0);}
.m5a_c01134{transform:matrix(0.370553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370553,0.000000,0.000000,0.250000,0,0);}
.m95_c01134{transform:matrix(0.389585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389585,0.000000,0.000000,0.250000,0,0);}
.m2_c01134{transform:matrix(0.408915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408915,0.000000,0.000000,0.250000,0,0);}
.m86_c01134{transform:matrix(0.632217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632217,0.000000,0.000000,0.250000,0,0);}
.m90_c01134{transform:matrix(0.648334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.648334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.648334,0.000000,0.000000,0.250000,0,0);}
.m88_c01134{transform:matrix(1.406854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.406854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.406854,0.000000,0.000000,0.250000,0,0);}
.m89_c01134{transform:matrix(2.313976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.313976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.313976,0.000000,0.000000,0.250000,0,0);}
.v2_c01134{vertical-align:-37.085400px;}
.v3_c01134{vertical-align:-1.425600px;}
.v0_c01134{vertical-align:0.000000px;}
.v1_c01134{vertical-align:12.830400px;}
.ls41_c01134{letter-spacing:-3.367980px;}
.ls13_c01134{letter-spacing:-3.319477px;}
.ls36_c01134{letter-spacing:-3.160080px;}
.ls14_c01134{letter-spacing:-3.104640px;}
.lsd_c01134{letter-spacing:-2.647267px;}
.ls3b_c01134{letter-spacing:-2.609449px;}
.lsc_c01134{letter-spacing:-2.577967px;}
.ls29_c01134{letter-spacing:-2.557177px;}
.ls2f_c01134{letter-spacing:-2.550240px;}
.ls9_c01134{letter-spacing:-2.522527px;}
.ls16_c01134{letter-spacing:-2.508667px;}
.ls25_c01134{letter-spacing:-2.480940px;}
.ls17_c01134{letter-spacing:-2.453227px;}
.lse_c01134{letter-spacing:-2.383927px;}
.ls11_c01134{letter-spacing:-2.376990px;}
.ls2d_c01134{letter-spacing:-2.314627px;}
.ls3f_c01134{letter-spacing:-2.291777px;}
.lsb_c01134{letter-spacing:-1.686727px;}
.ls32_c01134{letter-spacing:-1.578381px;}
.ls19_c01134{letter-spacing:-1.550542px;}
.ls37_c01134{letter-spacing:-0.391962px;}
.ls31_c01134{letter-spacing:-0.234472px;}
.ls22_c01134{letter-spacing:-0.155945px;}
.ls6_c01134{letter-spacing:0.000000px;}
.ls10_c01134{letter-spacing:0.030254px;}
.ls27_c01134{letter-spacing:0.143709px;}
.ls2b_c01134{letter-spacing:0.175349px;}
.ls35_c01134{letter-spacing:0.207900px;}
.ls23_c01134{letter-spacing:0.427107px;}
.ls34_c01134{letter-spacing:0.594000px;}
.ls33_c01134{letter-spacing:0.900071px;}
.ls39_c01134{letter-spacing:1.217700px;}
.ls30_c01134{letter-spacing:1.383862px;}
.ls3a_c01134{letter-spacing:2.088900px;}
.ls0_c01134{letter-spacing:2.155632px;}
.ls1e_c01134{letter-spacing:2.229084px;}
.ls4_c01134{letter-spacing:2.473304px;}
.ls1c_c01134{letter-spacing:2.533773px;}
.ls38_c01134{letter-spacing:2.682900px;}
.ls5_c01134{letter-spacing:2.957375px;}
.ls3c_c01134{letter-spacing:3.078393px;}
.ls18_c01134{letter-spacing:3.168000px;}
.ls3e_c01134{letter-spacing:3.206975px;}
.ls2e_c01134{letter-spacing:3.306610px;}
.ls24_c01134{letter-spacing:3.544200px;}
.ls1b_c01134{letter-spacing:3.603610px;}
.ls1a_c01134{letter-spacing:3.643200px;}
.ls2a_c01134{letter-spacing:3.653110px;}
.ls21_c01134{letter-spacing:3.672900px;}
.ls20_c01134{letter-spacing:3.682810px;}
.ls3d_c01134{letter-spacing:3.752110px;}
.ls26_c01134{letter-spacing:3.762000px;}
.ls7_c01134{letter-spacing:3.781810px;}
.ls1d_c01134{letter-spacing:3.801610px;}
.ls8_c01134{letter-spacing:3.999610px;}
.ls2_c01134{letter-spacing:4.269553px;}
.ls1f_c01134{letter-spacing:4.286700px;}
.ls15_c01134{letter-spacing:4.435200px;}
.ls3_c01134{letter-spacing:27.086400px;}
.ls2c_c01134{letter-spacing:31.363200px;}
.ls40_c01134{letter-spacing:59.875398px;}
.ls28_c01134{letter-spacing:61.300998px;}
.lsa_c01134{letter-spacing:62.726400px;}
.ls12_c01134{letter-spacing:64.152198px;}
.ls1_c01134{letter-spacing:64.666800px;}
.lsf_c01134{letter-spacing:65.577798px;}
.sc__c01134{text-shadow:none;}
.sc0_c01134{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01134{-webkit-text-stroke:0px transparent;}
.sc0_c01134{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01134{word-spacing:-22.116024px;}
.ws2_c01134{word-spacing:0.000000px;}
.ws0_c01134{word-spacing:44.313406px;}
._1_c01134{margin-left:-13.944964px;}
._0_c01134{width:1.663923px;}
._a_c01134{width:3.116186px;}
._2_c01134{width:7.790657px;}
._9_c01134{width:41.539272px;}
._3_c01134{width:49.648351px;}
._7_c01134{width:58.241700px;}
._8_c01134{width:61.423481px;}
._b_c01134{width:69.880427px;}
._4_c01134{width:270.639468px;}
._5_c01134{width:303.392914px;}
._6_c01134{width:335.571984px;}
.fc0_c01134{color:transparent;}
.fs26_c01134{font-size:4.158000px;}
.fs22_c01134{font-size:5.346198px;}
.fs23_c01134{font-size:11.286000px;}
.fs25_c01134{font-size:11.880000px;}
.fs14_c01134{font-size:17.028000px;}
.fs2a_c01134{font-size:24.354000px;}
.fs1d_c01134{font-size:25.146000px;}
.fs28_c01134{font-size:27.086400px;}
.fs0_c01134{font-size:27.720000px;}
.fs1e_c01134{font-size:31.363200px;}
.fs2b_c01134{font-size:41.778000px;}
.fs19_c01134{font-size:42.966198px;}
.fs29_c01134{font-size:53.658000px;}
.fs21_c01134{font-size:59.598000px;}
.fs2d_c01134{font-size:59.875398px;}
.fs1b_c01134{font-size:61.300998px;}
.fs7_c01134{font-size:62.726400px;}
.fs11_c01134{font-size:63.360000px;}
.fsc_c01134{font-size:64.152198px;}
.fsa_c01134{font-size:65.577798px;}
.fs1f_c01134{font-size:66.132198px;}
.fs2_c01134{font-size:66.330000px;}
.fs6_c01134{font-size:66.528000px;}
.fsb_c01134{font-size:67.914000px;}
.fs8_c01134{font-size:68.112198px;}
.fs20_c01134{font-size:68.508000px;}
.fs10_c01134{font-size:70.092198px;}
.fs18_c01134{font-size:70.884000px;}
.fsf_c01134{font-size:71.676198px;}
.fs4_c01134{font-size:72.072198px;}
.fs12_c01134{font-size:72.864000px;}
.fs1c_c01134{font-size:73.062198px;}
.fs17_c01134{font-size:73.458000px;}
.fs9_c01134{font-size:73.656198px;}
.fs2c_c01134{font-size:75.042198px;}
.fs1a_c01134{font-size:75.240000px;}
.fs1_c01134{font-size:75.636198px;}
.fs15_c01134{font-size:76.032198px;}
.fs24_c01134{font-size:79.200000px;}
.fs3_c01134{font-size:79.992198px;}
.fs13_c01134{font-size:80.586198px;}
.fs5_c01134{font-size:82.368000px;}
.fs16_c01134{font-size:85.734000px;}
.fse_c01134{font-size:88.704000px;}
.fs27_c01134{font-size:90.288000px;}
.fsd_c01134{font-size:94.842198px;}
.fs2e_c01134{font-size:96.228000px;}
.y0_c01134{bottom:0.000000px;}
.y23_c01134{bottom:66.915135px;}
.y1_c01134{bottom:76.500000px;}
.y2_c01134{bottom:100.411785px;}
.y22_c01134{bottom:115.741935px;}
.y21_c01134{bottom:148.525785px;}
.y20_c01134{bottom:182.383785px;}
.y1b_c01134{bottom:211.608585px;}
.y1d_c01134{bottom:215.533935px;}
.y1c_c01134{bottom:215.890335px;}
.y1f_c01134{bottom:217.315935px;}
.y1e_c01134{bottom:223.018335px;}
.y1a_c01134{bottom:249.391935px;}
.y19_c01134{bottom:278.616735px;}
.y18_c01134{bottom:281.819385px;}
.y17_c01134{bottom:282.180735px;}
.y16_c01134{bottom:345.976335px;}
.y14_c01134{bottom:346.332735px;}
.y15_c01134{bottom:356.668335px;}
.y13_c01134{bottom:377.339535px;}
.y12_c01134{bottom:406.559385px;}
.y11_c01134{bottom:409.766985px;}
.y10_c01134{bottom:442.199385px;}
.yf_c01134{bottom:504.930735px;}
.ye_c01134{bottom:536.650335px;}
.yd_c01134{bottom:569.439135px;}
.yc_c01134{bottom:635.016735px;}
.yb_c01134{bottom:662.815935px;}
.ya_c01134{bottom:666.379935px;}
.y9_c01134{bottom:695.243385px;}
.y8_c01134{bottom:729.819135px;}
.y7_c01134{bottom:760.825935px;}
.y6_c01134{bottom:824.621535px;}
.y5_c01134{bottom:858.474585px;}
.y4_c01134{bottom:922.270185px;}
.y3_c01134{bottom:1078.373385px;}
.h26_c01134{height:4.080850px;}
.h25_c01134{height:11.659570px;}
.h16_c01134{height:17.759672px;}
.h29_c01134{height:18.039542px;}
.h20_c01134{height:20.887891px;}
.h2b_c01134{height:23.902119px;}
.h1f_c01134{height:26.226492px;}
.h2_c01134{height:28.911094px;}
.h2e_c01134{height:39.877015px;}
.h1d_c01134{height:40.826465px;}
.h8_c01134{height:41.775782px;}
.hd_c01134{height:42.725364px;}
.h2c_c01134{height:43.573148px;}
.hb_c01134{height:43.674813px;}
.h2a_c01134{height:52.662393px;}
.h13_c01134{height:62.184375px;}
.h22_c01134{height:68.973816px;}
.h4_c01134{height:69.180117px;}
.h1a_c01134{height:69.568770px;}
.h10_c01134{height:70.346269px;}
.h6_c01134{height:70.734921px;}
.hc_c01134{height:70.832180px;}
.ha_c01134{height:71.038894px;}
.h23_c01134{height:71.451703px;}
.h14_c01134{height:71.512031px;}
.h1e_c01134{height:71.706552px;}
.h19_c01134{height:72.095010px;}
.h9_c01134{height:72.289530px;}
.h12_c01134{height:73.103972px;}
.h2d_c01134{height:73.649813px;}
.h1c_c01134{height:73.843945px;}
.h21_c01134{height:74.231637px;}
.h3_c01134{height:74.232792px;}
.h17_c01134{height:74.584319px;}
.h11_c01134{height:74.756035px;}
.h5_c01134{height:78.507968px;}
.h15_c01134{height:79.090946px;}
.h24_c01134{height:79.818750px;}
.h7_c01134{height:80.839688px;}
.h18_c01134{height:84.143232px;}
.hf_c01134{height:87.058125px;}
.h1b_c01134{height:91.921346px;}
.h27_c01134{height:92.741962px;}
.h28_c01134{height:94.167563px;}
.h2f_c01134{height:94.442520px;}
.he_c01134{height:98.917449px;}
.h1_c01134{height:1110.000000px;}
.h0_c01134{height:1263.000000px;}
.w1_c01134{width:775.500000px;}
.w0_c01134{width:892.500000px;}
.x0_c01134{left:0.000000px;}
.x2_c01134{left:47.279085px;}
.x1_c01134{left:58.500000px;}
.x45_c01134{left:85.126785px;}
.xc_c01134{left:86.938485px;}
.x5f_c01134{left:123.850635px;}
.x4c_c01134{left:129.909435px;}
.x46_c01134{left:139.700535px;}
.x16_c01134{left:141.611235px;}
.x4_c01134{left:143.170485px;}
.x72_c01134{left:145.046535px;}
.x2a_c01134{left:147.254235px;}
.x60_c01134{left:152.362635px;}
.x4d_c01134{left:162.064635px;}
.x3c_c01134{left:173.093235px;}
.x14_c01134{left:175.637535px;}
.x24_c01134{left:176.761185px;}
.x56_c01134{left:182.419035px;}
.x3d_c01134{left:187.438335px;}
.x4e_c01134{left:195.180135px;}
.x5_c01134{left:197.739285px;}
.x15_c01134{left:199.199535px;}
.x6d_c01134{left:201.649785px;}
.x65_c01134{left:207.579885px;}
.x43_c01134{left:209.322285px;}
.x73_c01134{left:211.336935px;}
.x17_c01134{left:217.088835px;}
.x3a_c01134{left:218.360985px;}
.x47_c01134{left:229.275735px;}
.x77_c01134{left:231.042885px;}
.x44_c01134{left:240.091485px;}
.x57_c01134{left:241.987335px;}
.x78_c01134{left:250.857735px;}
.x75_c01134{left:252.218985px;}
.xd_c01134{left:254.891985px;}
.x6e_c01134{left:261.544785px;}
.x2b_c01134{left:264.460335px;}
.x4f_c01134{left:272.944635px;}
.x3e_c01134{left:274.652385px;}
.x25_c01134{left:277.038285px;}
.x76_c01134{left:278.597535px;}
.x50_c01134{left:284.983035px;}
.x2c_c01134{left:286.175985px;}
.x5c_c01134{left:294.615735px;}
.x66_c01134{left:295.759185px;}
.x58_c01134{left:297.041235px;}
.x6f_c01134{left:298.605435px;}
.x79_c01134{left:307.376835px;}
.xe_c01134{left:310.079535px;}
.x48_c01134{left:319.474635px;}
.x6_c01134{left:320.771535px;}
.x83_c01134{left:330.325035px;}
.x2d_c01134{left:339.997335px;}
.x18_c01134{left:343.561335px;}
.x7a_c01134{left:350.639835px;}
.x3f_c01134{left:351.694185px;}
.x74_c01134{left:362.173335px;}
.x7_c01134{left:366.771885px;}
.x7b_c01134{left:370.241835px;}
.x7c_c01134{left:374.691885px;}
.x70_c01134{left:383.438535px;}
.x59_c01134{left:385.175985px;}
.x8_c01134{left:387.660885px;}
.x80_c01134{left:395.907585px;}
.x61_c01134{left:397.570785px;}
.x2e_c01134{left:398.803335px;}
.x71_c01134{left:401.674335px;}
.x2f_c01134{left:405.931335px;}
.x81_c01134{left:407.500485px;}
.x5a_c01134{left:408.530085px;}
.x26_c01134{left:409.851735px;}
.x19_c01134{left:418.048935px;}
.xf_c01134{left:419.707185px;}
.x1a_c01134{left:421.964385px;}
.x67_c01134{left:429.032985px;}
.x9_c01134{left:431.151585px;}
.x7d_c01134{left:437.645985px;}
.x49_c01134{left:440.437785px;}
.x5d_c01134{left:442.724685px;}
.x1b_c01134{left:449.055735px;}
.x27_c01134{left:452.768235px;}
.xa_c01134{left:454.500735px;}
.x64_c01134{left:458.742885px;}
.x30_c01134{left:461.297085px;}
.x1c_c01134{left:464.024535px;}
.x31_c01134{left:465.801585px;}
.x68_c01134{left:474.464085px;}
.x40_c01134{left:475.548135px;}
.x62_c01134{left:484.695735px;}
.x10_c01134{left:485.972835px;}
.x69_c01134{left:495.897585px;}
.xb_c01134{left:497.481585px;}
.x32_c01134{left:506.505435px;}
.x51_c01134{left:517.781535px;}
.x33_c01134{left:518.860635px;}
.x1d_c01134{left:526.642035px;}
.x5b_c01134{left:528.775485px;}
.x28_c01134{left:540.096135px;}
.x41_c01134{left:541.620735px;}
.x52_c01134{left:550.342635px;}
.x3b_c01134{left:561.985035px;}
.x34_c01134{left:564.905535px;}
.x1e_c01134{left:573.256185px;}
.x53_c01134{left:574.285785px;}
.x1f_c01134{left:583.403685px;}
.x11_c01134{left:584.844135px;}
.x35_c01134{left:589.185285px;}
.x36_c01134{left:591.704835px;}
.x6a_c01134{left:593.754135px;}
.x63_c01134{left:604.480785px;}
.x6b_c01134{left:615.801435px;}
.x20_c01134{left:617.860635px;}
.x12_c01134{left:626.458785px;}
.x29_c01134{left:628.671435px;}
.x54_c01134{left:629.824785px;}
.x7e_c01134{left:636.784485px;}
.x4a_c01134{left:639.254535px;}
.x37_c01134{left:652.782885px;}
.x4b_c01134{left:663.336285px;}
.x82_c01134{left:670.652385px;}
.x7f_c01134{left:672.162135px;}
.x38_c01134{left:681.908685px;}
.x55_c01134{left:682.953135px;}
.x21_c01134{left:685.343985px;}
.x6c_c01134{left:693.991635px;}
.x3_c01134{left:695.055885px;}
.x13_c01134{left:696.773535px;}
.x5e_c01134{left:701.921535px;}
.x39_c01134{left:705.658785px;}
.x42_c01134{left:707.148735px;}
.x84_c01134{left:714.885585px;}
.x22_c01134{left:717.068535px;}
.x23_c01134{left:718.137735px;}
@media print{
.v2_c01134{vertical-align:-32.964800pt;}
.v3_c01134{vertical-align:-1.267200pt;}
.v0_c01134{vertical-align:0.000000pt;}
.v1_c01134{vertical-align:11.404800pt;}
.ls41_c01134{letter-spacing:-2.993760pt;}
.ls13_c01134{letter-spacing:-2.950646pt;}
.ls36_c01134{letter-spacing:-2.808960pt;}
.ls14_c01134{letter-spacing:-2.759680pt;}
.lsd_c01134{letter-spacing:-2.353126pt;}
.ls3b_c01134{letter-spacing:-2.319510pt;}
.lsc_c01134{letter-spacing:-2.291526pt;}
.ls29_c01134{letter-spacing:-2.273046pt;}
.ls2f_c01134{letter-spacing:-2.266880pt;}
.ls9_c01134{letter-spacing:-2.242246pt;}
.ls16_c01134{letter-spacing:-2.229926pt;}
.ls25_c01134{letter-spacing:-2.205280pt;}
.ls17_c01134{letter-spacing:-2.180646pt;}
.lse_c01134{letter-spacing:-2.119046pt;}
.ls11_c01134{letter-spacing:-2.112880pt;}
.ls2d_c01134{letter-spacing:-2.057446pt;}
.ls3f_c01134{letter-spacing:-2.037135pt;}
.lsb_c01134{letter-spacing:-1.499313pt;}
.ls32_c01134{letter-spacing:-1.403005pt;}
.ls19_c01134{letter-spacing:-1.378260pt;}
.ls37_c01134{letter-spacing:-0.348410pt;}
.ls31_c01134{letter-spacing:-0.208420pt;}
.ls22_c01134{letter-spacing:-0.138618pt;}
.ls6_c01134{letter-spacing:0.000000pt;}
.ls10_c01134{letter-spacing:0.026893pt;}
.ls27_c01134{letter-spacing:0.127741pt;}
.ls2b_c01134{letter-spacing:0.155866pt;}
.ls35_c01134{letter-spacing:0.184800pt;}
.ls23_c01134{letter-spacing:0.379651pt;}
.ls34_c01134{letter-spacing:0.528000pt;}
.ls33_c01134{letter-spacing:0.800063pt;}
.ls39_c01134{letter-spacing:1.082400pt;}
.ls30_c01134{letter-spacing:1.230099pt;}
.ls3a_c01134{letter-spacing:1.856800pt;}
.ls0_c01134{letter-spacing:1.916117pt;}
.ls1e_c01134{letter-spacing:1.981408pt;}
.ls4_c01134{letter-spacing:2.198492pt;}
.ls1c_c01134{letter-spacing:2.252243pt;}
.ls38_c01134{letter-spacing:2.384800pt;}
.ls5_c01134{letter-spacing:2.628778pt;}
.ls3c_c01134{letter-spacing:2.736350pt;}
.ls18_c01134{letter-spacing:2.816000pt;}
.ls3e_c01134{letter-spacing:2.850644pt;}
.ls2e_c01134{letter-spacing:2.939209pt;}
.ls24_c01134{letter-spacing:3.150400pt;}
.ls1b_c01134{letter-spacing:3.203209pt;}
.ls1a_c01134{letter-spacing:3.238400pt;}
.ls2a_c01134{letter-spacing:3.247209pt;}
.ls21_c01134{letter-spacing:3.264800pt;}
.ls20_c01134{letter-spacing:3.273609pt;}
.ls3d_c01134{letter-spacing:3.335209pt;}
.ls26_c01134{letter-spacing:3.344000pt;}
.ls7_c01134{letter-spacing:3.361609pt;}
.ls1d_c01134{letter-spacing:3.379209pt;}
.ls8_c01134{letter-spacing:3.555209pt;}
.ls2_c01134{letter-spacing:3.795158pt;}
.ls1f_c01134{letter-spacing:3.810400pt;}
.ls15_c01134{letter-spacing:3.942400pt;}
.ls3_c01134{letter-spacing:24.076800pt;}
.ls2c_c01134{letter-spacing:27.878400pt;}
.ls40_c01134{letter-spacing:53.222576pt;}
.ls28_c01134{letter-spacing:54.489776pt;}
.lsa_c01134{letter-spacing:55.756800pt;}
.ls12_c01134{letter-spacing:57.024176pt;}
.ls1_c01134{letter-spacing:57.481600pt;}
.lsf_c01134{letter-spacing:58.291376pt;}
.ws1_c01134{word-spacing:-19.658688pt;}
.ws2_c01134{word-spacing:0.000000pt;}
.ws0_c01134{word-spacing:39.389695pt;}
._1_c01134{margin-left:-12.395524pt;}
._0_c01134{width:1.479042pt;}
._a_c01134{width:2.769943pt;}
._2_c01134{width:6.925028pt;}
._9_c01134{width:36.923798pt;}
._3_c01134{width:44.131868pt;}
._7_c01134{width:51.770400pt;}
._8_c01134{width:54.598650pt;}
._b_c01134{width:62.115936pt;}
._4_c01134{width:240.568416pt;}
._5_c01134{width:269.682590pt;}
._6_c01134{width:298.286208pt;}
.fs26_c01134{font-size:3.696000pt;}
.fs22_c01134{font-size:4.752176pt;}
.fs23_c01134{font-size:10.032000pt;}
.fs25_c01134{font-size:10.560000pt;}
.fs14_c01134{font-size:15.136000pt;}
.fs2a_c01134{font-size:21.648000pt;}
.fs1d_c01134{font-size:22.352000pt;}
.fs28_c01134{font-size:24.076800pt;}
.fs0_c01134{font-size:24.640000pt;}
.fs1e_c01134{font-size:27.878400pt;}
.fs2b_c01134{font-size:37.136000pt;}
.fs19_c01134{font-size:38.192176pt;}
.fs29_c01134{font-size:47.696000pt;}
.fs21_c01134{font-size:52.976000pt;}
.fs2d_c01134{font-size:53.222576pt;}
.fs1b_c01134{font-size:54.489776pt;}
.fs7_c01134{font-size:55.756800pt;}
.fs11_c01134{font-size:56.320000pt;}
.fsc_c01134{font-size:57.024176pt;}
.fsa_c01134{font-size:58.291376pt;}
.fs1f_c01134{font-size:58.784176pt;}
.fs2_c01134{font-size:58.960000pt;}
.fs6_c01134{font-size:59.136000pt;}
.fsb_c01134{font-size:60.368000pt;}
.fs8_c01134{font-size:60.544176pt;}
.fs20_c01134{font-size:60.896000pt;}
.fs10_c01134{font-size:62.304176pt;}
.fs18_c01134{font-size:63.008000pt;}
.fsf_c01134{font-size:63.712176pt;}
.fs4_c01134{font-size:64.064176pt;}
.fs12_c01134{font-size:64.768000pt;}
.fs1c_c01134{font-size:64.944176pt;}
.fs17_c01134{font-size:65.296000pt;}
.fs9_c01134{font-size:65.472176pt;}
.fs2c_c01134{font-size:66.704176pt;}
.fs1a_c01134{font-size:66.880000pt;}
.fs1_c01134{font-size:67.232176pt;}
.fs15_c01134{font-size:67.584176pt;}
.fs24_c01134{font-size:70.400000pt;}
.fs3_c01134{font-size:71.104176pt;}
.fs13_c01134{font-size:71.632176pt;}
.fs5_c01134{font-size:73.216000pt;}
.fs16_c01134{font-size:76.208000pt;}
.fse_c01134{font-size:78.848000pt;}
.fs27_c01134{font-size:80.256000pt;}
.fsd_c01134{font-size:84.304176pt;}
.fs2e_c01134{font-size:85.536000pt;}
.y0_c01134{bottom:0.000000pt;}
.y23_c01134{bottom:59.480120pt;}
.y1_c01134{bottom:68.000000pt;}
.y2_c01134{bottom:89.254920pt;}
.y22_c01134{bottom:102.881720pt;}
.y21_c01134{bottom:132.022920pt;}
.y20_c01134{bottom:162.118920pt;}
.y1b_c01134{bottom:188.096520pt;}
.y1d_c01134{bottom:191.585720pt;}
.y1c_c01134{bottom:191.902520pt;}
.y1f_c01134{bottom:193.169720pt;}
.y1e_c01134{bottom:198.238520pt;}
.y1a_c01134{bottom:221.681720pt;}
.y19_c01134{bottom:247.659320pt;}
.y18_c01134{bottom:250.506120pt;}
.y17_c01134{bottom:250.827320pt;}
.y16_c01134{bottom:307.534520pt;}
.y14_c01134{bottom:307.851320pt;}
.y15_c01134{bottom:317.038520pt;}
.y13_c01134{bottom:335.412920pt;}
.y12_c01134{bottom:361.386120pt;}
.y11_c01134{bottom:364.237320pt;}
.y10_c01134{bottom:393.066120pt;}
.yf_c01134{bottom:448.827320pt;}
.ye_c01134{bottom:477.022520pt;}
.yd_c01134{bottom:506.168120pt;}
.yc_c01134{bottom:564.459320pt;}
.yb_c01134{bottom:589.169720pt;}
.ya_c01134{bottom:592.337720pt;}
.y9_c01134{bottom:617.994120pt;}
.y8_c01134{bottom:648.728120pt;}
.y7_c01134{bottom:676.289720pt;}
.y6_c01134{bottom:732.996920pt;}
.y5_c01134{bottom:763.088520pt;}
.y4_c01134{bottom:819.795720pt;}
.y3_c01134{bottom:958.554120pt;}
.h26_c01134{height:3.627422pt;}
.h25_c01134{height:10.364063pt;}
.h16_c01134{height:15.786375pt;}
.h29_c01134{height:16.035149pt;}
.h20_c01134{height:18.567014pt;}
.h2b_c01134{height:21.246328pt;}
.h1f_c01134{height:23.312438pt;}
.h2_c01134{height:25.698750pt;}
.h2e_c01134{height:35.446236pt;}
.h1d_c01134{height:36.290191pt;}
.h8_c01134{height:37.134029pt;}
.hd_c01134{height:37.978101pt;}
.h2c_c01134{height:38.731688pt;}
.hb_c01134{height:38.822056pt;}
.h2a_c01134{height:46.811016pt;}
.h13_c01134{height:55.275000pt;}
.h22_c01134{height:61.310059pt;}
.h4_c01134{height:61.493438pt;}
.h1a_c01134{height:61.838906pt;}
.h10_c01134{height:62.530016pt;}
.h6_c01134{height:62.875485pt;}
.hc_c01134{height:62.961938pt;}
.ha_c01134{height:63.145684pt;}
.h23_c01134{height:63.512625pt;}
.h14_c01134{height:63.566250pt;}
.h1e_c01134{height:63.739157pt;}
.h19_c01134{height:64.084453pt;}
.h9_c01134{height:64.257360pt;}
.h12_c01134{height:64.981309pt;}
.h2d_c01134{height:65.466501pt;}
.h1c_c01134{height:65.639063pt;}
.h21_c01134{height:65.983677pt;}
.h3_c01134{height:65.984704pt;}
.h17_c01134{height:66.297173pt;}
.h11_c01134{height:66.449809pt;}
.h5_c01134{height:69.784860pt;}
.h15_c01134{height:70.303063pt;}
.h24_c01134{height:70.950000pt;}
.h7_c01134{height:71.857500pt;}
.h18_c01134{height:74.793984pt;}
.hf_c01134{height:77.385000pt;}
.h1b_c01134{height:81.707863pt;}
.h27_c01134{height:82.437300pt;}
.h28_c01134{height:83.704500pt;}
.h2f_c01134{height:83.948906pt;}
.he_c01134{height:87.926621pt;}
.h1_c01134{height:986.666667pt;}
.h0_c01134{height:1122.666667pt;}
.w1_c01134{width:689.333333pt;}
.w0_c01134{width:793.333333pt;}
.x0_c01134{left:0.000000pt;}
.x2_c01134{left:42.025853pt;}
.x1_c01134{left:52.000000pt;}
.x45_c01134{left:75.668253pt;}
.xc_c01134{left:77.278653pt;}
.x5f_c01134{left:110.089453pt;}
.x4c_c01134{left:115.475053pt;}
.x46_c01134{left:124.178253pt;}
.x16_c01134{left:125.876653pt;}
.x4_c01134{left:127.262653pt;}
.x72_c01134{left:128.930253pt;}
.x2a_c01134{left:130.892653pt;}
.x60_c01134{left:135.433453pt;}
.x4d_c01134{left:144.057453pt;}
.x3c_c01134{left:153.860653pt;}
.x14_c01134{left:156.122253pt;}
.x24_c01134{left:157.121053pt;}
.x56_c01134{left:162.150253pt;}
.x3d_c01134{left:166.611853pt;}
.x4e_c01134{left:173.493453pt;}
.x5_c01134{left:175.768253pt;}
.x15_c01134{left:177.066253pt;}
.x6d_c01134{left:179.244253pt;}
.x65_c01134{left:184.515453pt;}
.x43_c01134{left:186.064253pt;}
.x73_c01134{left:187.855053pt;}
.x17_c01134{left:192.967853pt;}
.x3a_c01134{left:194.098653pt;}
.x47_c01134{left:203.800653pt;}
.x77_c01134{left:205.371453pt;}
.x44_c01134{left:213.414653pt;}
.x57_c01134{left:215.099853pt;}
.x78_c01134{left:222.984653pt;}
.x75_c01134{left:224.194653pt;}
.xd_c01134{left:226.570653pt;}
.x6e_c01134{left:232.484253pt;}
.x2b_c01134{left:235.075853pt;}
.x4f_c01134{left:242.617453pt;}
.x3e_c01134{left:244.135453pt;}
.x25_c01134{left:246.256253pt;}
.x76_c01134{left:247.642253pt;}
.x50_c01134{left:253.318253pt;}
.x2c_c01134{left:254.378653pt;}
.x5c_c01134{left:261.880653pt;}
.x66_c01134{left:262.897053pt;}
.x58_c01134{left:264.036653pt;}
.x6f_c01134{left:265.427053pt;}
.x79_c01134{left:273.223853pt;}
.xe_c01134{left:275.626253pt;}
.x48_c01134{left:283.977453pt;}
.x6_c01134{left:285.130253pt;}
.x83_c01134{left:293.622253pt;}
.x2d_c01134{left:302.219853pt;}
.x18_c01134{left:305.387853pt;}
.x7a_c01134{left:311.679853pt;}
.x3f_c01134{left:312.617053pt;}
.x74_c01134{left:321.931853pt;}
.x7_c01134{left:326.019453pt;}
.x7b_c01134{left:329.103853pt;}
.x7c_c01134{left:333.059453pt;}
.x70_c01134{left:340.834253pt;}
.x59_c01134{left:342.378653pt;}
.x8_c01134{left:344.587453pt;}
.x80_c01134{left:351.917853pt;}
.x61_c01134{left:353.396253pt;}
.x2e_c01134{left:354.491853pt;}
.x71_c01134{left:357.043853pt;}
.x2f_c01134{left:360.827853pt;}
.x81_c01134{left:362.222653pt;}
.x5a_c01134{left:363.137853pt;}
.x26_c01134{left:364.312653pt;}
.x19_c01134{left:371.599053pt;}
.xf_c01134{left:373.073053pt;}
.x1a_c01134{left:375.079453pt;}
.x67_c01134{left:381.362653pt;}
.x9_c01134{left:383.245853pt;}
.x7d_c01134{left:389.018653pt;}
.x49_c01134{left:391.500253pt;}
.x5d_c01134{left:393.533053pt;}
.x1b_c01134{left:399.160653pt;}
.x27_c01134{left:402.460653pt;}
.xa_c01134{left:404.000653pt;}
.x64_c01134{left:407.771453pt;}
.x30_c01134{left:410.041853pt;}
.x1c_c01134{left:412.466253pt;}
.x31_c01134{left:414.045853pt;}
.x68_c01134{left:421.745853pt;}
.x40_c01134{left:422.709453pt;}
.x62_c01134{left:430.840653pt;}
.x10_c01134{left:431.975853pt;}
.x69_c01134{left:440.797853pt;}
.xb_c01134{left:442.205853pt;}
.x32_c01134{left:450.227053pt;}
.x51_c01134{left:460.250253pt;}
.x33_c01134{left:461.209453pt;}
.x1d_c01134{left:468.126253pt;}
.x5b_c01134{left:470.022653pt;}
.x28_c01134{left:480.085453pt;}
.x41_c01134{left:481.440653pt;}
.x52_c01134{left:489.193453pt;}
.x3b_c01134{left:499.542253pt;}
.x34_c01134{left:502.138253pt;}
.x1e_c01134{left:509.561053pt;}
.x53_c01134{left:510.476253pt;}
.x1f_c01134{left:518.581053pt;}
.x11_c01134{left:519.861453pt;}
.x35_c01134{left:523.720253pt;}
.x36_c01134{left:525.959853pt;}
.x6a_c01134{left:527.781453pt;}
.x63_c01134{left:537.316253pt;}
.x6b_c01134{left:547.379053pt;}
.x20_c01134{left:549.209453pt;}
.x12_c01134{left:556.852253pt;}
.x29_c01134{left:558.819053pt;}
.x54_c01134{left:559.844253pt;}
.x7e_c01134{left:566.030653pt;}
.x4a_c01134{left:568.226253pt;}
.x37_c01134{left:580.251453pt;}
.x4b_c01134{left:589.632253pt;}
.x82_c01134{left:596.135453pt;}
.x7f_c01134{left:597.477453pt;}
.x38_c01134{left:606.141053pt;}
.x55_c01134{left:607.069453pt;}
.x21_c01134{left:609.194653pt;}
.x6c_c01134{left:616.881453pt;}
.x3_c01134{left:617.827453pt;}
.x13_c01134{left:619.354253pt;}
.x5e_c01134{left:623.930253pt;}
.x39_c01134{left:627.252253pt;}
.x42_c01134{left:628.576653pt;}
.x84_c01134{left:635.453853pt;}
.x22_c01134{left:637.394253pt;}
.x23_c01134{left:638.344653pt;}
}





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

.ir_c01135:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01135{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01135;src:url('chunks/assets/font_6300fa898adea0a06a7d873d.woff2')format("woff");}.ff1_c01135{font-family:ff1_c01135;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01135;src:url('chunks/assets/font_cdbb18782e6c8ee4ca19d3b6.woff2')format("woff");}.ff2_c01135{font-family:ff2_c01135;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01135;src:url('chunks/assets/font_1f3b246babd14e0dfad09f7d.woff2')format("woff");}.ff3_c01135{font-family:ff3_c01135;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01135;src:url('chunks/assets/font_5ac2c175142bef5b3457d517.woff2')format("woff");}.ff4_c01135{font-family:ff4_c01135;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01135;src:url('chunks/assets/font_2a475a07b365d84f8e66e2f4.woff2')format("woff");}.ff5_c01135{font-family:ff5_c01135;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01135;src:url('chunks/assets/font_4a2aac0b2660c210a99e4998.woff2')format("woff");}.ff6_c01135{font-family:ff6_c01135;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01135;src:url('chunks/assets/font_2636ecac969a3effa4a73e0c.woff2')format("woff");}.ff7_c01135{font-family:ff7_c01135;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m16_c01135{transform:matrix(0.015958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015958,0.000000,0.000000,0.250000,0,0);}
.m8c_c01135{transform:matrix(0.022728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.022728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.022728,0.000000,0.000000,0.250000,0,0);}
.m2f_c01135{transform:matrix(0.034092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.034092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.034092,0.000000,0.000000,0.250000,0,0);}
.m99_c01135{transform:matrix(0.058823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.058823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.058823,0.000000,0.000000,0.250000,0,0);}
.mc_c01135{transform:matrix(0.064894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064894,0.000000,0.000000,0.250000,0,0);}
.m98_c01135{transform:matrix(0.072712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072712,0.000000,0.000000,0.250000,0,0);}
.m33_c01135{transform:matrix(0.076705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076705,0.000000,0.000000,0.250000,0,0);}
.m34_c01135{transform:matrix(0.081612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081612,0.000000,0.000000,0.250000,0,0);}
.m18_c01135{transform:matrix(0.083777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083777,0.000000,0.000000,0.250000,0,0);}
.m2d_c01135{transform:matrix(0.085227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085227,0.000000,0.000000,0.250000,0,0);}
.m11_c01135{transform:matrix(0.092929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092929,0.000000,0.000000,0.250000,0,0);}
.m13_c01135{transform:matrix(0.095745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095745,0.000000,0.000000,0.250000,0,0);}
.m8d_c01135{transform:matrix(0.097223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097223,0.000000,0.000000,0.250000,0,0);}
.m32_c01135{transform:matrix(0.104947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104947,0.000000,0.000000,0.250000,0,0);}
.m2e_c01135{transform:matrix(0.107955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107955,0.000000,0.000000,0.250000,0,0);}
.m93_c01135{transform:matrix(0.110606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110606,0.000000,0.000000,0.250000,0,0);}
.m9c_c01135{transform:matrix(0.110702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110702,0.000000,0.000000,0.250000,0,0);}
.m28_c01135{transform:matrix(0.114412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114412,0.000000,0.000000,0.250000,0,0);}
.m5c_c01135{transform:matrix(0.114974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114974,0.000000,0.000000,0.250000,0,0);}
.m9a_c01135{transform:matrix(0.116666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116666,0.000000,0.000000,0.250000,0,0);}
.m12_c01135{transform:matrix(0.122340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122340,0.000000,0.000000,0.250000,0,0);}
.m94_c01135{transform:matrix(0.123737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123737,0.000000,0.000000,0.250000,0,0);}
.m15_c01135{transform:matrix(0.125665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125665,0.000000,0.000000,0.250000,0,0);}
.m17_c01135{transform:matrix(0.127660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127660,0.000000,0.000000,0.250000,0,0);}
.m38_c01135{transform:matrix(0.132810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132810,0.000000,0.000000,0.250000,0,0);}
.m5a_c01135{transform:matrix(0.151989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151989,0.000000,0.000000,0.250000,0,0);}
.m30_c01135{transform:matrix(0.153410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153410,0.000000,0.000000,0.250000,0,0);}
.m14_c01135{transform:matrix(0.154256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154256,0.000000,0.000000,0.250000,0,0);}
.m8b_c01135{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);}
.m25_c01135{transform:matrix(0.167333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167333,0.000000,0.000000,0.250000,0,0);}
.m97_c01135{transform:matrix(0.171602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171602,0.000000,0.000000,0.250000,0,0);}
.m2c_c01135{transform:matrix(0.176137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176137,0.000000,0.000000,0.250000,0,0);}
.m3b_c01135{transform:matrix(0.176588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176588,0.000000,0.000000,0.250000,0,0);}
.m9b_c01135{transform:matrix(0.178488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178488,0.000000,0.000000,0.250000,0,0);}
.m37_c01135{transform:matrix(0.178960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178960,0.000000,0.000000,0.250000,0,0);}
.m6a_c01135{transform:matrix(0.180232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180232,0.000000,0.000000,0.250000,0,0);}
.m42_c01135{transform:matrix(0.180895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180895,0.000000,0.000000,0.250000,0,0);}
.m3c_c01135{transform:matrix(0.180953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180953,0.000000,0.000000,0.250000,0,0);}
.m60_c01135{transform:matrix(0.188262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188262,0.000000,0.000000,0.250000,0,0);}
.mf_c01135{transform:matrix(0.188638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188638,0.000000,0.000000,0.250000,0,0);}
.m36_c01135{transform:matrix(0.189777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189777,0.000000,0.000000,0.250000,0,0);}
.m31_c01135{transform:matrix(0.213896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213896,0.000000,0.000000,0.250000,0,0);}
.m35_c01135{transform:matrix(0.223110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223110,0.000000,0.000000,0.250000,0,0);}
.m10_c01135{transform:matrix(0.223662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223662,0.000000,0.000000,0.250000,0,0);}
.m6d_c01135{transform:matrix(0.230879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230879,0.000000,0.000000,0.250000,0,0);}
.m41_c01135{transform:matrix(0.231906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231906,0.000000,0.000000,0.250000,0,0);}
.m86_c01135{transform:matrix(0.240581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240581,0.000000,0.000000,0.250000,0,0);}
.m53_c01135{transform:matrix(0.248655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248655,0.000000,0.000000,0.250000,0,0);}
.m0_c01135{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m90_c01135{transform:matrix(0.253111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253111,0.000000,0.000000,0.250000,0,0);}
.m45_c01135{transform:matrix(0.253550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253550,0.000000,0.000000,0.250000,0,0);}
.m3d_c01135{transform:matrix(0.254323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254323,0.000000,0.000000,0.250000,0,0);}
.m4b_c01135{transform:matrix(0.255470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255470,0.000000,0.000000,0.250000,0,0);}
.m8_c01135{transform:matrix(0.255916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255916,0.000000,0.000000,0.250000,0,0);}
.m5e_c01135{transform:matrix(0.256913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256913,0.000000,0.000000,0.250000,0,0);}
.m62_c01135{transform:matrix(0.258089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258089,0.000000,0.000000,0.250000,0,0);}
.mad_c01135{transform:matrix(0.258335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258335,0.000000,0.000000,0.250000,0,0);}
.m75_c01135{transform:matrix(0.259852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259852,0.000000,0.000000,0.250000,0,0);}
.m9f_c01135{transform:matrix(0.262219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262219,0.000000,0.000000,0.250000,0,0);}
.m9e_c01135{transform:matrix(0.262306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262306,0.000000,0.000000,0.250000,0,0);}
.m71_c01135{transform:matrix(0.262571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262571,0.000000,0.000000,0.250000,0,0);}
.mae_c01135{transform:matrix(0.263376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263376,0.000000,0.000000,0.250000,0,0);}
.m7e_c01135{transform:matrix(0.263847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263847,0.000000,0.000000,0.250000,0,0);}
.m2b_c01135{transform:matrix(0.267221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267221,0.000000,0.000000,0.250000,0,0);}
.m52_c01135{transform:matrix(0.268040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268040,0.000000,0.000000,0.250000,0,0);}
.m2_c01135{transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);}
.m79_c01135{transform:matrix(0.268246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268246,0.000000,0.000000,0.250000,0,0);}
.ma0_c01135{transform:matrix(0.269102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269102,0.000000,0.000000,0.250000,0,0);}
.m29_c01135{transform:matrix(0.269932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269932,0.000000,0.000000,0.250000,0,0);}
.m6f_c01135{transform:matrix(0.269979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269979,0.000000,0.000000,0.250000,0,0);}
.m4e_c01135{transform:matrix(0.271226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271226,0.000000,0.000000,0.250000,0,0);}
.m59_c01135{transform:matrix(0.271605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271605,0.000000,0.000000,0.250000,0,0);}
.m51_c01135{transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);}
.mb7_c01135{transform:matrix(0.273283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273283,0.000000,0.000000,0.250000,0,0);}
.m80_c01135{transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);}
.m5b_c01135{transform:matrix(0.274203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274203,0.000000,0.000000,0.250000,0,0);}
.mb_c01135{transform:matrix(0.274624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274624,0.000000,0.000000,0.250000,0,0);}
.m43_c01135{transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);}
.m5_c01135{transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);}
.m49_c01135{transform:matrix(0.277993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277993,0.000000,0.000000,0.250000,0,0);}
.m70_c01135{transform:matrix(0.278832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278832,0.000000,0.000000,0.250000,0,0);}
.me_c01135{transform:matrix(0.279155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279155,0.000000,0.000000,0.250000,0,0);}
.m23_c01135{transform:matrix(0.279972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279972,0.000000,0.000000,0.250000,0,0);}
.m87_c01135{transform:matrix(0.280445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280445,0.000000,0.000000,0.250000,0,0);}
.m48_c01135{transform:matrix(0.280478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280478,0.000000,0.000000,0.250000,0,0);}
.m4a_c01135{transform:matrix(0.280831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280831,0.000000,0.000000,0.250000,0,0);}
.m9_c01135{transform:matrix(0.281107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281107,0.000000,0.000000,0.250000,0,0);}
.m2a_c01135{transform:matrix(0.281123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281123,0.000000,0.000000,0.250000,0,0);}
.m6_c01135{transform:matrix(0.281299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281299,0.000000,0.000000,0.250000,0,0);}
.m66_c01135{transform:matrix(0.281556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281556,0.000000,0.000000,0.250000,0,0);}
.m6b_c01135{transform:matrix(0.282678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282678,0.000000,0.000000,0.250000,0,0);}
.m6c_c01135{transform:matrix(0.282698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282698,0.000000,0.000000,0.250000,0,0);}
.m21_c01135{transform:matrix(0.283935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283935,0.000000,0.000000,0.250000,0,0);}
.m7_c01135{transform:matrix(0.284090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284090,0.000000,0.000000,0.250000,0,0);}
.m88_c01135{transform:matrix(0.284811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284811,0.000000,0.000000,0.250000,0,0);}
.m58_c01135{transform:matrix(0.285582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285582,0.000000,0.000000,0.250000,0,0);}
.m72_c01135{transform:matrix(0.285806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285806,0.000000,0.000000,0.250000,0,0);}
.m4c_c01135{transform:matrix(0.287051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287051,0.000000,0.000000,0.250000,0,0);}
.m1d_c01135{transform:matrix(0.287247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287247,0.000000,0.000000,0.250000,0,0);}
.m26_c01135{transform:matrix(0.287758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287758,0.000000,0.000000,0.250000,0,0);}
.m9d_c01135{transform:matrix(0.288934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288934,0.000000,0.000000,0.250000,0,0);}
.ma6_c01135{transform:matrix(0.289287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289287,0.000000,0.000000,0.250000,0,0);}
.m69_c01135{transform:matrix(0.289538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289538,0.000000,0.000000,0.250000,0,0);}
.ma5_c01135{transform:matrix(0.290328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290328,0.000000,0.000000,0.250000,0,0);}
.maf_c01135{transform:matrix(0.290349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290349,0.000000,0.000000,0.250000,0,0);}
.mb4_c01135{transform:matrix(0.290517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290517,0.000000,0.000000,0.250000,0,0);}
.m4f_c01135{transform:matrix(0.291182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291182,0.000000,0.000000,0.250000,0,0);}
.m27_c01135{transform:matrix(0.291185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291185,0.000000,0.000000,0.250000,0,0);}
.m83_c01135{transform:matrix(0.291449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291449,0.000000,0.000000,0.250000,0,0);}
.m20_c01135{transform:matrix(0.292434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292434,0.000000,0.000000,0.250000,0,0);}
.m7f_c01135{transform:matrix(0.293539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293539,0.000000,0.000000,0.250000,0,0);}
.ma4_c01135{transform:matrix(0.293762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293762,0.000000,0.000000,0.250000,0,0);}
.m5f_c01135{transform:matrix(0.294798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294798,0.000000,0.000000,0.250000,0,0);}
.m67_c01135{transform:matrix(0.296494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296494,0.000000,0.000000,0.250000,0,0);}
.m3f_c01135{transform:matrix(0.297602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297602,0.000000,0.000000,0.250000,0,0);}
.m40_c01135{transform:matrix(0.298898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298898,0.000000,0.000000,0.250000,0,0);}
.m22_c01135{transform:matrix(0.299561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299561,0.000000,0.000000,0.250000,0,0);}
.m74_c01135{transform:matrix(0.299662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299662,0.000000,0.000000,0.250000,0,0);}
.m8e_c01135{transform:matrix(0.300122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300122,0.000000,0.000000,0.250000,0,0);}
.m95_c01135{transform:matrix(0.301126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301126,0.000000,0.000000,0.250000,0,0);}
.mb2_c01135{transform:matrix(0.302578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302578,0.000000,0.000000,0.250000,0,0);}
.m46_c01135{transform:matrix(0.303810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303810,0.000000,0.000000,0.250000,0,0);}
.ma7_c01135{transform:matrix(0.305591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305591,0.000000,0.000000,0.250000,0,0);}
.ma8_c01135{transform:matrix(0.306706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306706,0.000000,0.000000,0.250000,0,0);}
.ma2_c01135{transform:matrix(0.306902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306902,0.000000,0.000000,0.250000,0,0);}
.mac_c01135{transform:matrix(0.307267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307267,0.000000,0.000000,0.250000,0,0);}
.mb5_c01135{transform:matrix(0.307521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307521,0.000000,0.000000,0.250000,0,0);}
.m1e_c01135{transform:matrix(0.308459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308459,0.000000,0.000000,0.250000,0,0);}
.m57_c01135{transform:matrix(0.308864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308864,0.000000,0.000000,0.250000,0,0);}
.m55_c01135{transform:matrix(0.310015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310015,0.000000,0.000000,0.250000,0,0);}
.ma_c01135{transform:matrix(0.312581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312581,0.000000,0.000000,0.250000,0,0);}
.m1c_c01135{transform:matrix(0.312775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312775,0.000000,0.000000,0.250000,0,0);}
.mb3_c01135{transform:matrix(0.312820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312820,0.000000,0.000000,0.250000,0,0);}
.m7b_c01135{transform:matrix(0.313067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313067,0.000000,0.000000,0.250000,0,0);}
.m65_c01135{transform:matrix(0.314599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314599,0.000000,0.000000,0.250000,0,0);}
.m96_c01135{transform:matrix(0.314720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314720,0.000000,0.000000,0.250000,0,0);}
.m68_c01135{transform:matrix(0.314722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314722,0.000000,0.000000,0.250000,0,0);}
.m1b_c01135{transform:matrix(0.314874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314874,0.000000,0.000000,0.250000,0,0);}
.m76_c01135{transform:matrix(0.315118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315118,0.000000,0.000000,0.250000,0,0);}
.m4d_c01135{transform:matrix(0.316292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316292,0.000000,0.000000,0.250000,0,0);}
.m84_c01135{transform:matrix(0.317124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317124,0.000000,0.000000,0.250000,0,0);}
.m7c_c01135{transform:matrix(0.317685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317685,0.000000,0.000000,0.250000,0,0);}
.m54_c01135{transform:matrix(0.319887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319887,0.000000,0.000000,0.250000,0,0);}
.m3e_c01135{transform:matrix(0.320386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320386,0.000000,0.000000,0.250000,0,0);}
.m50_c01135{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);}
.mb6_c01135{transform:matrix(0.321791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321791,0.000000,0.000000,0.250000,0,0);}
.mb1_c01135{transform:matrix(0.321845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321845,0.000000,0.000000,0.250000,0,0);}
.m85_c01135{transform:matrix(0.322044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322044,0.000000,0.000000,0.250000,0,0);}
.m91_c01135{transform:matrix(0.324345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324345,0.000000,0.000000,0.250000,0,0);}
.mb0_c01135{transform:matrix(0.325755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325755,0.000000,0.000000,0.250000,0,0);}
.m61_c01135{transform:matrix(0.325969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325969,0.000000,0.000000,0.250000,0,0);}
.mb8_c01135{transform:matrix(0.327075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327075,0.000000,0.000000,0.250000,0,0);}
.m1f_c01135{transform:matrix(0.327542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327542,0.000000,0.000000,0.250000,0,0);}
.m7a_c01135{transform:matrix(0.327721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327721,0.000000,0.000000,0.250000,0,0);}
.m8f_c01135{transform:matrix(0.330423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330423,0.000000,0.000000,0.250000,0,0);}
.m63_c01135{transform:matrix(0.331763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331763,0.000000,0.000000,0.250000,0,0);}
.m47_c01135{transform:matrix(0.332390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332390,0.000000,0.000000,0.250000,0,0);}
.m78_c01135{transform:matrix(0.336096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336096,0.000000,0.000000,0.250000,0,0);}
.m89_c01135{transform:matrix(0.336825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336825,0.000000,0.000000,0.250000,0,0);}
.m19_c01135{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m56_c01135{transform:matrix(0.338652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338652,0.000000,0.000000,0.250000,0,0);}
.m77_c01135{transform:matrix(0.339155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339155,0.000000,0.000000,0.250000,0,0);}
.md_c01135{transform:matrix(0.340057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340057,0.000000,0.000000,0.250000,0,0);}
.m4_c01135{transform:matrix(0.342180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342180,0.000000,0.000000,0.250000,0,0);}
.m8a_c01135{transform:matrix(0.344469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344469,0.000000,0.000000,0.250000,0,0);}
.m6e_c01135{transform:matrix(0.347004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347004,0.000000,0.000000,0.250000,0,0);}
.m82_c01135{transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);}
.m92_c01135{transform:matrix(0.355252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355252,0.000000,0.000000,0.250000,0,0);}
.m81_c01135{transform:matrix(0.356018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356018,0.000000,0.000000,0.250000,0,0);}
.m3a_c01135{transform:matrix(0.356356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356356,0.000000,0.000000,0.250000,0,0);}
.m5d_c01135{transform:matrix(0.359199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359199,0.000000,0.000000,0.250000,0,0);}
.m44_c01135{transform:matrix(0.369101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369101,0.000000,0.000000,0.250000,0,0);}
.mab_c01135{transform:matrix(0.373012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373012,0.000000,0.000000,0.250000,0,0);}
.m1a_c01135{transform:matrix(0.373676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373676,0.000000,0.000000,0.250000,0,0);}
.maa_c01135{transform:matrix(0.373958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373958,0.000000,0.000000,0.250000,0,0);}
.m24_c01135{transform:matrix(0.376282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376282,0.000000,0.000000,0.250000,0,0);}
.m1_c01135{transform:matrix(0.387539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387539,0.000000,0.000000,0.250000,0,0);}
.m73_c01135{transform:matrix(0.388379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388379,0.000000,0.000000,0.250000,0,0);}
.m3_c01135{transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);}
.m7d_c01135{transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);}
.m64_c01135{transform:matrix(0.405805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405805,0.000000,0.000000,0.250000,0,0);}
.ma3_c01135{transform:matrix(0.418190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418190,0.000000,0.000000,0.250000,0,0);}
.m39_c01135{transform:matrix(0.440265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440265,0.000000,0.000000,0.250000,0,0);}
.ma9_c01135{transform:matrix(0.440856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440856,0.000000,0.000000,0.250000,0,0);}
.ma1_c01135{transform:matrix(0.598550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598550,0.000000,0.000000,0.250000,0,0);}
.v0_c01135{vertical-align:0.000000px;}
.v1_c01135{vertical-align:1.425600px;}
.ls11_c01135{letter-spacing:-3.049200px;}
.ls12_c01135{letter-spacing:-2.993767px;}
.ls16_c01135{letter-spacing:-2.882880px;}
.lsb_c01135{letter-spacing:-2.647267px;}
.lse_c01135{letter-spacing:-2.286900px;}
.ls6_c01135{letter-spacing:-1.860650px;}
.ls23_c01135{letter-spacing:-1.512724px;}
.ls2_c01135{letter-spacing:-1.415386px;}
.ls1d_c01135{letter-spacing:-0.476508px;}
.ls3_c01135{letter-spacing:-0.045382px;}
.ls4_c01135{letter-spacing:0.000000px;}
.lsd_c01135{letter-spacing:0.128582px;}
.ls1f_c01135{letter-spacing:0.719532px;}
.ls26_c01135{letter-spacing:0.722710px;}
.ls1c_c01135{letter-spacing:0.839562px;}
.ls21_c01135{letter-spacing:1.212255px;}
.ls1a_c01135{letter-spacing:1.777451px;}
.ls1e_c01135{letter-spacing:2.425500px;}
.ls9_c01135{letter-spacing:2.443043px;}
.ls24_c01135{letter-spacing:3.373374px;}
.ls28_c01135{letter-spacing:3.405610px;}
.ls27_c01135{letter-spacing:3.647961px;}
.lsf_c01135{letter-spacing:3.668356px;}
.ls5_c01135{letter-spacing:3.781810px;}
.ls7_c01135{letter-spacing:3.801610px;}
.ls8_c01135{letter-spacing:3.841200px;}
.ls1b_c01135{letter-spacing:3.890700px;}
.ls20_c01135{letter-spacing:3.910500px;}
.ls29_c01135{letter-spacing:3.940200px;}
.ls15_c01135{letter-spacing:3.960000px;}
.ls17_c01135{letter-spacing:3.999610px;}
.ls18_c01135{letter-spacing:4.078810px;}
.lsc_c01135{letter-spacing:4.118400px;}
.ls0_c01135{letter-spacing:17.671038px;}
.ls1_c01135{letter-spacing:18.001500px;}
.ls14_c01135{letter-spacing:58.449798px;}
.ls13_c01135{letter-spacing:59.875398px;}
.ls19_c01135{letter-spacing:61.300998px;}
.ls10_c01135{letter-spacing:62.726400px;}
.ls22_c01135{letter-spacing:64.152198px;}
.lsa_c01135{letter-spacing:67.003200px;}
.ls25_c01135{letter-spacing:72.705798px;}
.sc__c01135{text-shadow:none;}
.sc0_c01135{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01135{-webkit-text-stroke:0px transparent;}
.sc0_c01135{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01135{word-spacing:-18.863668px;}
.ws1_c01135{word-spacing:-3.857189px;}
.ws2_c01135{word-spacing:0.000000px;}
._2_c01135{margin-left:-9.982940px;}
._8_c01135{width:2.440548px;}
._0_c01135{width:7.064381px;}
._3_c01135{width:13.963021px;}
._1_c01135{width:37.828785px;}
._4_c01135{width:39.104901px;}
._6_c01135{width:43.332152px;}
._7_c01135{width:103.541218px;}
._5_c01135{width:207.413938px;}
.fc0_c01135{color:transparent;}
.fs1e_c01135{font-size:13.662198px;}
.fs20_c01135{font-size:14.454198px;}
.fs1f_c01135{font-size:24.156000px;}
.fs19_c01135{font-size:33.264000px;}
.fs11_c01135{font-size:42.966198px;}
.fs15_c01135{font-size:44.748000px;}
.fs14_c01135{font-size:47.124000px;}
.fs1a_c01135{font-size:48.510000px;}
.fse_c01135{font-size:58.449798px;}
.fs8_c01135{font-size:59.400000px;}
.fsc_c01135{font-size:59.875398px;}
.fs16_c01135{font-size:61.300998px;}
.fsd_c01135{font-size:62.568000px;}
.fs9_c01135{font-size:62.726400px;}
.fs4_c01135{font-size:63.954000px;}
.fs1c_c01135{font-size:64.152198px;}
.fs7_c01135{font-size:65.340000px;}
.fs17_c01135{font-size:66.330000px;}
.fs5_c01135{font-size:67.003200px;}
.fs22_c01135{font-size:68.112198px;}
.fs1d_c01135{font-size:72.705798px;}
.fs1_c01135{font-size:75.636198px;}
.fs2_c01135{font-size:76.032198px;}
.fs3_c01135{font-size:76.824000px;}
.fs21_c01135{font-size:77.616198px;}
.fs18_c01135{font-size:77.814000px;}
.fs1b_c01135{font-size:78.210000px;}
.fs23_c01135{font-size:78.804000px;}
.fsf_c01135{font-size:79.200000px;}
.fs12_c01135{font-size:79.992198px;}
.fs13_c01135{font-size:81.576198px;}
.fs10_c01135{font-size:81.972198px;}
.fs6_c01135{font-size:82.368000px;}
.fsb_c01135{font-size:85.536198px;}
.fsa_c01135{font-size:87.120000px;}
.fs0_c01135{font-size:87.912198px;}
.y0_c01135{bottom:0.000000px;}
.y1_c01135{bottom:76.500000px;}
.y20_c01135{bottom:125.008335px;}
.y1f_c01135{bottom:157.435785px;}
.y1e_c01135{bottom:189.511785px;}
.y1d_c01135{bottom:220.167135px;}
.y1a_c01135{bottom:221.592735px;}
.y1c_c01135{bottom:223.374735px;}
.y19_c01135{bottom:255.445785px;}
.y1b_c01135{bottom:256.163535px;}
.y18_c01135{bottom:288.234585px;}
.y17_c01135{bottom:321.023385px;}
.y16_c01135{bottom:341.694585px;}
.y15_c01135{bottom:352.747935px;}
.y14_c01135{bottom:416.894985px;}
.y13_c01135{bottom:448.975935px;}
.y12_c01135{bottom:511.340985px;}
.y11_c01135{bottom:511.702335px;}
.y10_c01135{bottom:541.278585px;}
.yf_c01135{bottom:544.129785px;}
.ye_c01135{bottom:576.562185px;}
.yc_c01135{bottom:608.994585px;}
.yd_c01135{bottom:609.350985px;}
.yb_c01135{bottom:641.431935px;}
.ya_c01135{bottom:674.215785px;}
.y9_c01135{bottom:704.871135px;}
.y8_c01135{bottom:764.746335px;}
.y7_c01135{bottom:769.023135px;}
.y6_c01135{bottom:801.811935px;}
.y5_c01135{bottom:830.318985px;}
.y4_c01135{bottom:896.257935px;}
.y3_c01135{bottom:929.046735px;}
.y2_c01135{bottom:1085.857785px;}
.h20_c01135{height:14.186005px;}
.h21_c01135{height:14.567121px;}
.h1f_c01135{height:23.707793px;}
.h1a_c01135{height:34.693313px;}
.h10_c01135{height:38.927565px;}
.he_c01135{height:39.877015px;}
.h18_c01135{height:40.826465px;}
.hb_c01135{height:41.775782px;}
.h1d_c01135{height:42.725364px;}
.h16_c01135{height:43.917715px;}
.h7_c01135{height:44.624131px;}
.h15_c01135{height:46.249629px;}
.h1e_c01135{height:48.422061px;}
.h1b_c01135{height:50.594414px;}
.ha_c01135{height:61.836328px;}
.hf_c01135{height:65.256469px;}
.h6_c01135{height:66.702023px;}
.h23_c01135{height:66.848397px;}
.h9_c01135{height:68.019961px;}
.h3_c01135{height:74.232792px;}
.h4_c01135{height:74.621444px;}
.h5_c01135{height:75.398555px;}
.h22_c01135{height:76.176054px;}
.h19_c01135{height:76.370186px;}
.h1c_c01135{height:76.758838px;}
.h24_c01135{height:77.341816px;}
.h13_c01135{height:78.507968px;}
.h14_c01135{height:80.062577px;}
.h17_c01135{height:80.451229px;}
.h8_c01135{height:80.839688px;}
.h12_c01135{height:82.265288px;}
.h11_c01135{height:82.603125px;}
.h2_c01135{height:86.281015px;}
.hd_c01135{height:89.211582px;}
.hc_c01135{height:90.863438px;}
.h1_c01135{height:1110.000000px;}
.h0_c01135{height:1263.000000px;}
.w1_c01135{width:775.500000px;}
.w0_c01135{width:892.500000px;}
.x0_c01135{left:0.000000px;}
.x1_c01135{left:58.500000px;}
.x2e_c01135{left:79.102635px;}
.xf_c01135{left:80.132235px;}
.x54_c01135{left:89.928285px;}
.x10_c01135{left:134.225835px;}
.x3_c01135{left:135.547485px;}
.x11_c01135{left:157.525485px;}
.x77_c01135{left:167.638335px;}
.x5d_c01135{left:178.275885px;}
.x4_c01135{left:180.067785px;}
.x66_c01135{left:189.621285px;}
.x2f_c01135{left:190.967685px;}
.x6a_c01135{left:192.076485px;}
.x12_c01135{left:200.644935px;}
.x48_c01135{left:201.827985px;}
.x5e_c01135{left:211.856685px;}
.x5_c01135{left:213.272385px;}
.x55_c01135{left:222.820935px;}
.x1e_c01135{left:224.320785px;}
.x13_c01135{left:234.621735px;}
.x5f_c01135{left:243.308985px;}
.x6_c01135{left:245.996835px;}
.x1f_c01135{left:257.055135px;}
.x42_c01135{left:258.069885px;}
.x67_c01135{left:267.836235px;}
.x14_c01135{left:268.855935px;}
.x4c_c01135{left:277.874835px;}
.x7_c01135{left:279.533085px;}
.x27_c01135{left:280.617135px;}
.x6b_c01135{left:288.556935px;}
.x5a_c01135{left:289.829085px;}
.x2c_c01135{left:298.847985px;}
.x68_c01135{left:300.719085px;}
.x43_c01135{left:304.406835px;}
.x49_c01135{left:312.985185px;}
.x15_c01135{left:322.657485px;}
.x28_c01135{left:324.380085px;}
.x30_c01135{left:326.860035px;}
.x20_c01135{left:336.992685px;}
.x2d_c01135{left:343.595985px;}
.x31_c01135{left:345.338385px;}
.x62_c01135{left:346.580835px;}
.x32_c01135{left:354.961185px;}
.x29_c01135{left:358.970685px;}
.x33_c01135{left:366.009585px;}
.x4d_c01135{left:367.385685px;}
.x3f_c01135{left:369.316185px;}
.x21_c01135{left:370.588335px;}
.x16_c01135{left:377.414385px;}
.x34_c01135{left:378.483585px;}
.x35_c01135{left:380.265585px;}
.x6c_c01135{left:382.760385px;}
.x6d_c01135{left:389.759685px;}
.x2a_c01135{left:390.982335px;}
.x36_c01135{left:399.006285px;}
.x74_c01135{left:400.110135px;}
.x8_c01135{left:401.798085px;}
.x5b_c01135{left:410.871435px;}
.x37_c01135{left:413.059335px;}
.x6e_c01135{left:414.178035px;}
.x60_c01135{left:423.187035px;}
.x9_c01135{left:434.388885px;}
.x17_c01135{left:435.863985px;}
.x38_c01135{left:443.709735px;}
.x2b_c01135{left:445.070985px;}
.x69_c01135{left:454.758135px;}
.x22_c01135{left:455.772885px;}
.x76_c01135{left:458.411235px;}
.x75_c01135{left:466.113435px;}
.x4e_c01135{left:468.301335px;}
.x56_c01135{left:477.884535px;}
.x5c_c01135{left:489.754635px;}
.x57_c01135{left:499.263585px;}
.x44_c01135{left:500.342685px;}
.x40_c01135{left:510.990135px;}
.x4a_c01135{left:512.628585px;}
.x63_c01135{left:521.880135px;}
.x23_c01135{left:533.621535px;}
.x41_c01135{left:534.720435px;}
.x61_c01135{left:544.986735px;}
.xa_c01135{left:546.308385px;}
.x4f_c01135{left:555.916335px;}
.x39_c01135{left:565.242135px;}
.x58_c01135{left:566.459835px;}
.x51_c01135{left:569.385285px;}
.x18_c01135{left:575.216385px;}
.x4b_c01135{left:577.498335px;}
.x45_c01135{left:580.616835px;}
.x19_c01135{left:589.120935px;}
.x24_c01135{left:590.343585px;}
.x1a_c01135{left:598.030935px;}
.x46_c01135{left:599.590185px;}
.x25_c01135{left:611.143485px;}
.xb_c01135{left:620.791035px;}
.x50_c01135{left:621.909735px;}
.x64_c01135{left:623.013585px;}
.xc_c01135{left:632.557185px;}
.x3a_c01135{left:638.655585px;}
.x70_c01135{left:641.491935px;}
.x6f_c01135{left:643.085835px;}
.x3b_c01135{left:644.516385px;}
.xd_c01135{left:655.896435px;}
.x59_c01135{left:664.648035px;}
.x1b_c01135{left:666.459735px;}
.x1c_c01135{left:667.528935px;}
.x65_c01135{left:675.369735px;}
.x3c_c01135{left:676.532985px;}
.x1d_c01135{left:684.943035px;}
.x3d_c01135{left:686.432985px;}
.x2_c01135{left:688.289235px;}
.x52_c01135{left:689.853435px;}
.x71_c01135{left:694.927185px;}
.x53_c01135{left:698.347635px;}
.x3e_c01135{left:700.218735px;}
.x72_c01135{left:709.108935px;}
.xe_c01135{left:712.306635px;}
.x73_c01135{left:717.078435px;}
.x26_c01135{left:720.855285px;}
.x47_c01135{left:722.538285px;}
@media print{
.v0_c01135{vertical-align:0.000000pt;}
.v1_c01135{vertical-align:1.267200pt;}
.ls11_c01135{letter-spacing:-2.710400pt;}
.ls12_c01135{letter-spacing:-2.661126pt;}
.ls16_c01135{letter-spacing:-2.562560pt;}
.lsb_c01135{letter-spacing:-2.353126pt;}
.lse_c01135{letter-spacing:-2.032800pt;}
.ls6_c01135{letter-spacing:-1.653912pt;}
.ls23_c01135{letter-spacing:-1.344644pt;}
.ls2_c01135{letter-spacing:-1.258121pt;}
.ls1d_c01135{letter-spacing:-0.423563pt;}
.ls3_c01135{letter-spacing:-0.040339pt;}
.ls4_c01135{letter-spacing:0.000000pt;}
.lsd_c01135{letter-spacing:0.114295pt;}
.ls1f_c01135{letter-spacing:0.639584pt;}
.ls26_c01135{letter-spacing:0.642409pt;}
.ls1c_c01135{letter-spacing:0.746277pt;}
.ls21_c01135{letter-spacing:1.077560pt;}
.ls1a_c01135{letter-spacing:1.579956pt;}
.ls1e_c01135{letter-spacing:2.156000pt;}
.ls9_c01135{letter-spacing:2.171594pt;}
.ls24_c01135{letter-spacing:2.998555pt;}
.ls28_c01135{letter-spacing:3.027209pt;}
.ls27_c01135{letter-spacing:3.242632pt;}
.lsf_c01135{letter-spacing:3.260761pt;}
.ls5_c01135{letter-spacing:3.361609pt;}
.ls7_c01135{letter-spacing:3.379209pt;}
.ls8_c01135{letter-spacing:3.414400pt;}
.ls1b_c01135{letter-spacing:3.458400pt;}
.ls20_c01135{letter-spacing:3.476000pt;}
.ls29_c01135{letter-spacing:3.502400pt;}
.ls15_c01135{letter-spacing:3.520000pt;}
.ls17_c01135{letter-spacing:3.555209pt;}
.ls18_c01135{letter-spacing:3.625609pt;}
.lsc_c01135{letter-spacing:3.660800pt;}
.ls0_c01135{letter-spacing:15.707589pt;}
.ls1_c01135{letter-spacing:16.001333pt;}
.ls14_c01135{letter-spacing:51.955376pt;}
.ls13_c01135{letter-spacing:53.222576pt;}
.ls19_c01135{letter-spacing:54.489776pt;}
.ls10_c01135{letter-spacing:55.756800pt;}
.ls22_c01135{letter-spacing:57.024176pt;}
.lsa_c01135{letter-spacing:59.558400pt;}
.ls25_c01135{letter-spacing:64.627376pt;}
.ws0_c01135{word-spacing:-16.767705pt;}
.ws1_c01135{word-spacing:-3.428612pt;}
.ws2_c01135{word-spacing:0.000000pt;}
._2_c01135{margin-left:-8.873724pt;}
._8_c01135{width:2.169376pt;}
._0_c01135{width:6.279450pt;}
._3_c01135{width:12.411574pt;}
._1_c01135{width:33.625587pt;}
._4_c01135{width:34.759912pt;}
._6_c01135{width:38.517468pt;}
._7_c01135{width:92.036638pt;}
._5_c01135{width:184.367944pt;}
.fs1e_c01135{font-size:12.144176pt;}
.fs20_c01135{font-size:12.848176pt;}
.fs1f_c01135{font-size:21.472000pt;}
.fs19_c01135{font-size:29.568000pt;}
.fs11_c01135{font-size:38.192176pt;}
.fs15_c01135{font-size:39.776000pt;}
.fs14_c01135{font-size:41.888000pt;}
.fs1a_c01135{font-size:43.120000pt;}
.fse_c01135{font-size:51.955376pt;}
.fs8_c01135{font-size:52.800000pt;}
.fsc_c01135{font-size:53.222576pt;}
.fs16_c01135{font-size:54.489776pt;}
.fsd_c01135{font-size:55.616000pt;}
.fs9_c01135{font-size:55.756800pt;}
.fs4_c01135{font-size:56.848000pt;}
.fs1c_c01135{font-size:57.024176pt;}
.fs7_c01135{font-size:58.080000pt;}
.fs17_c01135{font-size:58.960000pt;}
.fs5_c01135{font-size:59.558400pt;}
.fs22_c01135{font-size:60.544176pt;}
.fs1d_c01135{font-size:64.627376pt;}
.fs1_c01135{font-size:67.232176pt;}
.fs2_c01135{font-size:67.584176pt;}
.fs3_c01135{font-size:68.288000pt;}
.fs21_c01135{font-size:68.992176pt;}
.fs18_c01135{font-size:69.168000pt;}
.fs1b_c01135{font-size:69.520000pt;}
.fs23_c01135{font-size:70.048000pt;}
.fsf_c01135{font-size:70.400000pt;}
.fs12_c01135{font-size:71.104176pt;}
.fs13_c01135{font-size:72.512176pt;}
.fs10_c01135{font-size:72.864176pt;}
.fs6_c01135{font-size:73.216000pt;}
.fsb_c01135{font-size:76.032176pt;}
.fsa_c01135{font-size:77.440000pt;}
.fs0_c01135{font-size:78.144176pt;}
.y0_c01135{bottom:0.000000pt;}
.y1_c01135{bottom:68.000000pt;}
.y20_c01135{bottom:111.118520pt;}
.y1f_c01135{bottom:139.942920pt;}
.y1e_c01135{bottom:168.454920pt;}
.y1d_c01135{bottom:195.704120pt;}
.y1a_c01135{bottom:196.971320pt;}
.y1c_c01135{bottom:198.555320pt;}
.y19_c01135{bottom:227.062920pt;}
.y1b_c01135{bottom:227.700920pt;}
.y18_c01135{bottom:256.208520pt;}
.y17_c01135{bottom:285.354120pt;}
.y16_c01135{bottom:303.728520pt;}
.y15_c01135{bottom:313.553720pt;}
.y14_c01135{bottom:370.573320pt;}
.y13_c01135{bottom:399.089720pt;}
.y12_c01135{bottom:454.525320pt;}
.y11_c01135{bottom:454.846520pt;}
.y10_c01135{bottom:481.136520pt;}
.yf_c01135{bottom:483.670920pt;}
.ye_c01135{bottom:512.499720pt;}
.yc_c01135{bottom:541.328520pt;}
.yd_c01135{bottom:541.645320pt;}
.yb_c01135{bottom:570.161720pt;}
.ya_c01135{bottom:599.302920pt;}
.y9_c01135{bottom:626.552120pt;}
.y8_c01135{bottom:679.774520pt;}
.y7_c01135{bottom:683.576120pt;}
.y6_c01135{bottom:712.721720pt;}
.y5_c01135{bottom:738.061320pt;}
.y4_c01135{bottom:796.673720pt;}
.y3_c01135{bottom:825.819320pt;}
.y2_c01135{bottom:965.206920pt;}
.h20_c01135{height:12.609782pt;}
.h21_c01135{height:12.948552pt;}
.h1f_c01135{height:21.073594pt;}
.h1a_c01135{height:30.838500pt;}
.h10_c01135{height:34.602280pt;}
.he_c01135{height:35.446236pt;}
.h18_c01135{height:36.290191pt;}
.hb_c01135{height:37.134029pt;}
.h1d_c01135{height:37.978101pt;}
.h16_c01135{height:39.037969pt;}
.h7_c01135{height:39.665894pt;}
.h15_c01135{height:41.110781pt;}
.h1e_c01135{height:43.041832pt;}
.h1b_c01135{height:44.972813pt;}
.ha_c01135{height:54.965625pt;}
.hf_c01135{height:58.005750pt;}
.h6_c01135{height:59.290687pt;}
.h23_c01135{height:59.420798pt;}
.h9_c01135{height:60.462188pt;}
.h3_c01135{height:65.984704pt;}
.h4_c01135{height:66.330173pt;}
.h5_c01135{height:67.020938pt;}
.h22_c01135{height:67.712048pt;}
.h19_c01135{height:67.884609pt;}
.h1c_c01135{height:68.230078pt;}
.h24_c01135{height:68.748281pt;}
.h13_c01135{height:69.784860pt;}
.h14_c01135{height:71.166735pt;}
.h17_c01135{height:71.512204pt;}
.h8_c01135{height:71.857500pt;}
.h12_c01135{height:73.124700pt;}
.h11_c01135{height:73.425000pt;}
.h2_c01135{height:76.694235pt;}
.hd_c01135{height:79.299184pt;}
.hc_c01135{height:80.767500pt;}
.h1_c01135{height:986.666667pt;}
.h0_c01135{height:1122.666667pt;}
.w1_c01135{width:689.333333pt;}
.w0_c01135{width:793.333333pt;}
.x0_c01135{left:0.000000pt;}
.x1_c01135{left:52.000000pt;}
.x2e_c01135{left:70.313453pt;}
.xf_c01135{left:71.228653pt;}
.x54_c01135{left:79.936253pt;}
.x10_c01135{left:119.311853pt;}
.x3_c01135{left:120.486653pt;}
.x11_c01135{left:140.022653pt;}
.x77_c01135{left:149.011853pt;}
.x5d_c01135{left:158.467453pt;}
.x4_c01135{left:160.060253pt;}
.x66_c01135{left:168.552253pt;}
.x2f_c01135{left:169.749053pt;}
.x6a_c01135{left:170.734653pt;}
.x12_c01135{left:178.351053pt;}
.x48_c01135{left:179.402653pt;}
.x5e_c01135{left:188.317053pt;}
.x5_c01135{left:189.575453pt;}
.x55_c01135{left:198.063053pt;}
.x1e_c01135{left:199.396253pt;}
.x13_c01135{left:208.552653pt;}
.x5f_c01135{left:216.274653pt;}
.x6_c01135{left:218.663853pt;}
.x1f_c01135{left:228.493453pt;}
.x42_c01135{left:229.395453pt;}
.x67_c01135{left:238.076653pt;}
.x14_c01135{left:238.983053pt;}
.x4c_c01135{left:246.999853pt;}
.x7_c01135{left:248.473853pt;}
.x27_c01135{left:249.437453pt;}
.x6b_c01135{left:256.495053pt;}
.x5a_c01135{left:257.625853pt;}
.x2c_c01135{left:265.642653pt;}
.x68_c01135{left:267.305853pt;}
.x43_c01135{left:270.583853pt;}
.x49_c01135{left:278.209053pt;}
.x15_c01135{left:286.806653pt;}
.x28_c01135{left:288.337853pt;}
.x30_c01135{left:290.542253pt;}
.x20_c01135{left:299.549053pt;}
.x2d_c01135{left:305.418653pt;}
.x31_c01135{left:306.967453pt;}
.x62_c01135{left:308.071853pt;}
.x32_c01135{left:315.521053pt;}
.x29_c01135{left:319.085053pt;}
.x33_c01135{left:325.341853pt;}
.x4d_c01135{left:326.565053pt;}
.x3f_c01135{left:328.281053pt;}
.x21_c01135{left:329.411853pt;}
.x16_c01135{left:335.479453pt;}
.x34_c01135{left:336.429853pt;}
.x35_c01135{left:338.013853pt;}
.x6c_c01135{left:340.231453pt;}
.x6d_c01135{left:346.453053pt;}
.x2a_c01135{left:347.539853pt;}
.x36_c01135{left:354.672253pt;}
.x74_c01135{left:355.653453pt;}
.x8_c01135{left:357.153853pt;}
.x5b_c01135{left:365.219053pt;}
.x37_c01135{left:367.163853pt;}
.x6e_c01135{left:368.158253pt;}
.x60_c01135{left:376.166253pt;}
.x9_c01135{left:386.123453pt;}
.x17_c01135{left:387.434653pt;}
.x38_c01135{left:394.408653pt;}
.x2b_c01135{left:395.618653pt;}
.x69_c01135{left:404.229453pt;}
.x22_c01135{left:405.131453pt;}
.x76_c01135{left:407.476653pt;}
.x75_c01135{left:414.323053pt;}
.x4e_c01135{left:416.267853pt;}
.x56_c01135{left:424.786253pt;}
.x5c_c01135{left:435.337453pt;}
.x57_c01135{left:443.789853pt;}
.x44_c01135{left:444.749053pt;}
.x40_c01135{left:454.213453pt;}
.x4a_c01135{left:455.669853pt;}
.x63_c01135{left:463.893453pt;}
.x23_c01135{left:474.330253pt;}
.x41_c01135{left:475.307053pt;}
.x61_c01135{left:484.432653pt;}
.xa_c01135{left:485.607453pt;}
.x4f_c01135{left:494.147853pt;}
.x39_c01135{left:502.437453pt;}
.x58_c01135{left:503.519853pt;}
.x51_c01135{left:506.120253pt;}
.x18_c01135{left:511.303453pt;}
.x4b_c01135{left:513.331853pt;}
.x45_c01135{left:516.103853pt;}
.x19_c01135{left:523.663053pt;}
.x24_c01135{left:524.749853pt;}
.x1a_c01135{left:531.583053pt;}
.x46_c01135{left:532.969053pt;}
.x25_c01135{left:543.238653pt;}
.xb_c01135{left:551.814253pt;}
.x50_c01135{left:552.808653pt;}
.x64_c01135{left:553.789853pt;}
.xc_c01135{left:562.273053pt;}
.x3a_c01135{left:567.693853pt;}
.x70_c01135{left:570.215053pt;}
.x6f_c01135{left:571.631853pt;}
.x3b_c01135{left:572.903453pt;}
.xd_c01135{left:583.019053pt;}
.x59_c01135{left:590.798253pt;}
.x1b_c01135{left:592.408653pt;}
.x1c_c01135{left:593.359053pt;}
.x65_c01135{left:600.328653pt;}
.x3c_c01135{left:601.362653pt;}
.x1d_c01135{left:608.838253pt;}
.x3d_c01135{left:610.162653pt;}
.x2_c01135{left:611.812653pt;}
.x52_c01135{left:613.203053pt;}
.x71_c01135{left:617.713053pt;}
.x53_c01135{left:620.753453pt;}
.x3e_c01135{left:622.416653pt;}
.x72_c01135{left:630.319053pt;}
.xe_c01135{left:633.161453pt;}
.x73_c01135{left:637.403053pt;}
.x26_c01135{left:640.760253pt;}
.x47_c01135{left:642.256253pt;}
}





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

.ir_c01136:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01136{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01136;src:url('chunks/assets/font_a1895ea5b65e2a0b92761d27.woff2')format("woff");}.ff1_c01136{font-family:ff1_c01136;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01136;src:url('chunks/assets/font_80f655866524bedf0b8beccc.woff2')format("woff");}.ff2_c01136{font-family:ff2_c01136;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01136;src:url('chunks/assets/font_47126f5f3776944dde199703.woff2')format("woff");}.ff3_c01136{font-family:ff3_c01136;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01136;src:url('chunks/assets/font_d3d206b46b93718e7182aafd.woff2')format("woff");}.ff4_c01136{font-family:ff4_c01136;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m6c_c01136{transform:matrix(0.022223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.022223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.022223,0.000000,0.000000,0.250000,0,0);}
.ma9_c01136{transform:matrix(0.027175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.027175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.027175,0.000000,0.000000,0.250000,0,0);}
.m8f_c01136{transform:matrix(0.035715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.035715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.035715,0.000000,0.000000,0.250000,0,0);}
.m8d_c01136{transform:matrix(0.040817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040817,0.000000,0.000000,0.250000,0,0);}
.ma4_c01136{transform:matrix(0.043479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043479,0.000000,0.000000,0.250000,0,0);}
.m8b_c01136{transform:matrix(0.045919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045919,0.000000,0.000000,0.250000,0,0);}
.m8a_c01136{transform:matrix(0.093038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093038,0.000000,0.000000,0.250000,0,0);}
.m8e_c01136{transform:matrix(0.100341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100341,0.000000,0.000000,0.250000,0,0);}
.ma7_c01136{transform:matrix(0.101087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101087,0.000000,0.000000,0.250000,0,0);}
.m8c_c01136{transform:matrix(0.102041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102041,0.000000,0.000000,0.250000,0,0);}
.ma8_c01136{transform:matrix(0.108696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108696,0.000000,0.000000,0.250000,0,0);}
.m6f_c01136{transform:matrix(0.111806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111806,0.000000,0.000000,0.250000,0,0);}
.m72_c01136{transform:matrix(0.112913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112913,0.000000,0.000000,0.250000,0,0);}
.ma3_c01136{transform:matrix(0.123642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123642,0.000000,0.000000,0.250000,0,0);}
.m1_c01136{transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);}
.m6b_c01136{transform:matrix(0.133951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133951,0.000000,0.000000,0.250000,0,0);}
.maa_c01136{transform:matrix(0.134964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134964,0.000000,0.000000,0.250000,0,0);}
.m5a_c01136{transform:matrix(0.135965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135965,0.000000,0.000000,0.250000,0,0);}
.m90_c01136{transform:matrix(0.136905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136905,0.000000,0.000000,0.250000,0,0);}
.mab_c01136{transform:matrix(0.137681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137681,0.000000,0.000000,0.250000,0,0);}
.m2b_c01136{transform:matrix(0.147534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147534,0.000000,0.000000,0.250000,0,0);}
.m88_c01136{transform:matrix(0.156177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156177,0.000000,0.000000,0.250000,0,0);}
.m5b_c01136{transform:matrix(0.157895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157895,0.000000,0.000000,0.250000,0,0);}
.m89_c01136{transform:matrix(0.158163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158163,0.000000,0.000000,0.250000,0,0);}
.m61_c01136{transform:matrix(0.161842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161842,0.000000,0.000000,0.250000,0,0);}
.m6d_c01136{transform:matrix(0.165148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165148,0.000000,0.000000,0.250000,0,0);}
.m6e_c01136{transform:matrix(0.165741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165741,0.000000,0.000000,0.250000,0,0);}
.m19_c01136{transform:matrix(0.171568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171568,0.000000,0.000000,0.250000,0,0);}
.m74_c01136{transform:matrix(0.175159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175159,0.000000,0.000000,0.250000,0,0);}
.m81_c01136{transform:matrix(0.177384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177384,0.000000,0.000000,0.250000,0,0);}
.m5c_c01136{transform:matrix(0.178290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178290,0.000000,0.000000,0.250000,0,0);}
.m7c_c01136{transform:matrix(0.181251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181251,0.000000,0.000000,0.250000,0,0);}
.m51_c01136{transform:matrix(0.184341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184341,0.000000,0.000000,0.250000,0,0);}
.m7a_c01136{transform:matrix(0.185868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185868,0.000000,0.000000,0.250000,0,0);}
.m59_c01136{transform:matrix(0.197368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197368,0.000000,0.000000,0.250000,0,0);}
.m62_c01136{transform:matrix(0.206757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206757,0.000000,0.000000,0.250000,0,0);}
.m7b_c01136{transform:matrix(0.207144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207144,0.000000,0.000000,0.250000,0,0);}
.ma5_c01136{transform:matrix(0.211957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211957,0.000000,0.000000,0.250000,0,0);}
.m68_c01136{transform:matrix(0.211992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211992,0.000000,0.000000,0.250000,0,0);}
.m75_c01136{transform:matrix(0.222784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222784,0.000000,0.000000,0.250000,0,0);}
.m64_c01136{transform:matrix(0.232264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232264,0.000000,0.000000,0.250000,0,0);}
.m7d_c01136{transform:matrix(0.247766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247766,0.000000,0.000000,0.250000,0,0);}
.m0_c01136{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01136{transform:matrix(0.250952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250952,0.000000,0.000000,0.250000,0,0);}
.m4d_c01136{transform:matrix(0.255361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255361,0.000000,0.000000,0.250000,0,0);}
.m85_c01136{transform:matrix(0.257760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257760,0.000000,0.000000,0.250000,0,0);}
.m31_c01136{transform:matrix(0.260433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260433,0.000000,0.000000,0.250000,0,0);}
.m23_c01136{transform:matrix(0.261954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261954,0.000000,0.000000,0.250000,0,0);}
.m77_c01136{transform:matrix(0.263495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263495,0.000000,0.000000,0.250000,0,0);}
.m10_c01136{transform:matrix(0.263744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263744,0.000000,0.000000,0.250000,0,0);}
.m3e_c01136{transform:matrix(0.267643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267643,0.000000,0.000000,0.250000,0,0);}
.m25_c01136{transform:matrix(0.268053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268053,0.000000,0.000000,0.250000,0,0);}
.m3_c01136{transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);}
.m5e_c01136{transform:matrix(0.270123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270123,0.000000,0.000000,0.250000,0,0);}
.m34_c01136{transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);}
.m7e_c01136{transform:matrix(0.270675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270675,0.000000,0.000000,0.250000,0,0);}
.m36_c01136{transform:matrix(0.271183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271183,0.000000,0.000000,0.250000,0,0);}
.m87_c01136{transform:matrix(0.272238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272238,0.000000,0.000000,0.250000,0,0);}
.m76_c01136{transform:matrix(0.272400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272400,0.000000,0.000000,0.250000,0,0);}
.m1f_c01136{transform:matrix(0.272685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272685,0.000000,0.000000,0.250000,0,0);}
.mb_c01136{transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);}
.m9c_c01136{transform:matrix(0.273894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273894,0.000000,0.000000,0.250000,0,0);}
.m17_c01136{transform:matrix(0.275111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275111,0.000000,0.000000,0.250000,0,0);}
.m93_c01136{transform:matrix(0.276565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276565,0.000000,0.000000,0.250000,0,0);}
.m98_c01136{transform:matrix(0.277516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277516,0.000000,0.000000,0.250000,0,0);}
.m86_c01136{transform:matrix(0.277561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277561,0.000000,0.000000,0.250000,0,0);}
.m3c_c01136{transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);}
.m12_c01136{transform:matrix(0.278601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278601,0.000000,0.000000,0.250000,0,0);}
.me_c01136{transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);}
.m29_c01136{transform:matrix(0.283124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283124,0.000000,0.000000,0.250000,0,0);}
.m39_c01136{transform:matrix(0.283860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283860,0.000000,0.000000,0.250000,0,0);}
.m94_c01136{transform:matrix(0.284347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284347,0.000000,0.000000,0.250000,0,0);}
.m41_c01136{transform:matrix(0.285120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285120,0.000000,0.000000,0.250000,0,0);}
.m32_c01136{transform:matrix(0.285625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285625,0.000000,0.000000,0.250000,0,0);}
.m80_c01136{transform:matrix(0.285764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285764,0.000000,0.000000,0.250000,0,0);}
.m7f_c01136{transform:matrix(0.285957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285957,0.000000,0.000000,0.250000,0,0);}
.m2_c01136{transform:matrix(0.286342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286342,0.000000,0.000000,0.250000,0,0);}
.m99_c01136{transform:matrix(0.286350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286350,0.000000,0.000000,0.250000,0,0);}
.m2f_c01136{transform:matrix(0.286446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286446,0.000000,0.000000,0.250000,0,0);}
.mac_c01136{transform:matrix(0.286701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286701,0.000000,0.000000,0.250000,0,0);}
.m1c_c01136{transform:matrix(0.286743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286743,0.000000,0.000000,0.250000,0,0);}
.m92_c01136{transform:matrix(0.286809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286809,0.000000,0.000000,0.250000,0,0);}
.mad_c01136{transform:matrix(0.286936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286936,0.000000,0.000000,0.250000,0,0);}
.m97_c01136{transform:matrix(0.287758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287758,0.000000,0.000000,0.250000,0,0);}
.m28_c01136{transform:matrix(0.288134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288134,0.000000,0.000000,0.250000,0,0);}
.m96_c01136{transform:matrix(0.289228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289228,0.000000,0.000000,0.250000,0,0);}
.m18_c01136{transform:matrix(0.289431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289431,0.000000,0.000000,0.250000,0,0);}
.ma2_c01136{transform:matrix(0.290493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290493,0.000000,0.000000,0.250000,0,0);}
.m4b_c01136{transform:matrix(0.290670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290670,0.000000,0.000000,0.250000,0,0);}
.m45_c01136{transform:matrix(0.291194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291194,0.000000,0.000000,0.250000,0,0);}
.m24_c01136{transform:matrix(0.291862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291862,0.000000,0.000000,0.250000,0,0);}
.m46_c01136{transform:matrix(0.294095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294095,0.000000,0.000000,0.250000,0,0);}
.m9e_c01136{transform:matrix(0.294270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294270,0.000000,0.000000,0.250000,0,0);}
.m40_c01136{transform:matrix(0.294503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294503,0.000000,0.000000,0.250000,0,0);}
.m4c_c01136{transform:matrix(0.294709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294709,0.000000,0.000000,0.250000,0,0);}
.m11_c01136{transform:matrix(0.294813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294813,0.000000,0.000000,0.250000,0,0);}
.m82_c01136{transform:matrix(0.294886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294886,0.000000,0.000000,0.250000,0,0);}
.m38_c01136{transform:matrix(0.295061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295061,0.000000,0.000000,0.250000,0,0);}
.m30_c01136{transform:matrix(0.295109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295109,0.000000,0.000000,0.250000,0,0);}
.m47_c01136{transform:matrix(0.295378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295378,0.000000,0.000000,0.250000,0,0);}
.m5d_c01136{transform:matrix(0.296843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296843,0.000000,0.000000,0.250000,0,0);}
.m6_c01136{transform:matrix(0.296995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296995,0.000000,0.000000,0.250000,0,0);}
.m2d_c01136{transform:matrix(0.297812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297812,0.000000,0.000000,0.250000,0,0);}
.m65_c01136{transform:matrix(0.297909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297909,0.000000,0.000000,0.250000,0,0);}
.m53_c01136{transform:matrix(0.298020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298020,0.000000,0.000000,0.250000,0,0);}
.m42_c01136{transform:matrix(0.298443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298443,0.000000,0.000000,0.250000,0,0);}
.m84_c01136{transform:matrix(0.299191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299191,0.000000,0.000000,0.250000,0,0);}
.md_c01136{transform:matrix(0.299200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299200,0.000000,0.000000,0.250000,0,0);}
.m50_c01136{transform:matrix(0.299970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299970,0.000000,0.000000,0.250000,0,0);}
.m70_c01136{transform:matrix(0.300485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300485,0.000000,0.000000,0.250000,0,0);}
.m67_c01136{transform:matrix(0.301187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301187,0.000000,0.000000,0.250000,0,0);}
.m2e_c01136{transform:matrix(0.302392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302392,0.000000,0.000000,0.250000,0,0);}
.m52_c01136{transform:matrix(0.303379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303379,0.000000,0.000000,0.250000,0,0);}
.m69_c01136{transform:matrix(0.303439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303439,0.000000,0.000000,0.250000,0,0);}
.m55_c01136{transform:matrix(0.303493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303493,0.000000,0.000000,0.250000,0,0);}
.ma6_c01136{transform:matrix(0.304047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304047,0.000000,0.000000,0.250000,0,0);}
.m44_c01136{transform:matrix(0.304055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304055,0.000000,0.000000,0.250000,0,0);}
.m54_c01136{transform:matrix(0.305163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305163,0.000000,0.000000,0.250000,0,0);}
.m21_c01136{transform:matrix(0.305664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305664,0.000000,0.000000,0.250000,0,0);}
.m9a_c01136{transform:matrix(0.306067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306067,0.000000,0.000000,0.250000,0,0);}
.m91_c01136{transform:matrix(0.306372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306372,0.000000,0.000000,0.250000,0,0);}
.m95_c01136{transform:matrix(0.306966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306966,0.000000,0.000000,0.250000,0,0);}
.m5f_c01136{transform:matrix(0.308438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308438,0.000000,0.000000,0.250000,0,0);}
.m2c_c01136{transform:matrix(0.308524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308524,0.000000,0.000000,0.250000,0,0);}
.m8_c01136{transform:matrix(0.309860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309860,0.000000,0.000000,0.250000,0,0);}
.m1e_c01136{transform:matrix(0.310230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310230,0.000000,0.000000,0.250000,0,0);}
.m3f_c01136{transform:matrix(0.310902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310902,0.000000,0.000000,0.250000,0,0);}
.ma1_c01136{transform:matrix(0.311437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311437,0.000000,0.000000,0.250000,0,0);}
.m7_c01136{transform:matrix(0.311799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311799,0.000000,0.000000,0.250000,0,0);}
.m2a_c01136{transform:matrix(0.312062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312062,0.000000,0.000000,0.250000,0,0);}
.m1b_c01136{transform:matrix(0.312081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312081,0.000000,0.000000,0.250000,0,0);}
.m14_c01136{transform:matrix(0.312878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312878,0.000000,0.000000,0.250000,0,0);}
.m4a_c01136{transform:matrix(0.312919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312919,0.000000,0.000000,0.250000,0,0);}
.m71_c01136{transform:matrix(0.313273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313273,0.000000,0.000000,0.250000,0,0);}
.m3b_c01136{transform:matrix(0.314599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314599,0.000000,0.000000,0.250000,0,0);}
.m60_c01136{transform:matrix(0.318135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318135,0.000000,0.000000,0.250000,0,0);}
.m35_c01136{transform:matrix(0.318540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318540,0.000000,0.000000,0.250000,0,0);}
.ma_c01136{transform:matrix(0.318678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318678,0.000000,0.000000,0.250000,0,0);}
.m48_c01136{transform:matrix(0.319600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319600,0.000000,0.000000,0.250000,0,0);}
.m66_c01136{transform:matrix(0.320712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320712,0.000000,0.000000,0.250000,0,0);}
.m56_c01136{transform:matrix(0.320815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320815,0.000000,0.000000,0.250000,0,0);}
.m22_c01136{transform:matrix(0.320942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320942,0.000000,0.000000,0.250000,0,0);}
.m5_c01136{transform:matrix(0.321379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321379,0.000000,0.000000,0.250000,0,0);}
.m16_c01136{transform:matrix(0.321731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321731,0.000000,0.000000,0.250000,0,0);}
.m58_c01136{transform:matrix(0.323221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323221,0.000000,0.000000,0.250000,0,0);}
.m1a_c01136{transform:matrix(0.329303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329303,0.000000,0.000000,0.250000,0,0);}
.m49_c01136{transform:matrix(0.329909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329909,0.000000,0.000000,0.250000,0,0);}
.m4e_c01136{transform:matrix(0.330559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330559,0.000000,0.000000,0.250000,0,0);}
.m3d_c01136{transform:matrix(0.334181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334181,0.000000,0.000000,0.250000,0,0);}
.m9d_c01136{transform:matrix(0.335265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335265,0.000000,0.000000,0.250000,0,0);}
.m37_c01136{transform:matrix(0.337107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337107,0.000000,0.000000,0.250000,0,0);}
.m33_c01136{transform:matrix(0.337124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337124,0.000000,0.000000,0.250000,0,0);}
.m4f_c01136{transform:matrix(0.339050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339050,0.000000,0.000000,0.250000,0,0);}
.m57_c01136{transform:matrix(0.339155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339155,0.000000,0.000000,0.250000,0,0);}
.m78_c01136{transform:matrix(0.340623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340623,0.000000,0.000000,0.250000,0,0);}
.m63_c01136{transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);}
.m20_c01136{transform:matrix(0.345614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345614,0.000000,0.000000,0.250000,0,0);}
.m43_c01136{transform:matrix(0.348390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348390,0.000000,0.000000,0.250000,0,0);}
.m9f_c01136{transform:matrix(0.351305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351305,0.000000,0.000000,0.250000,0,0);}
.m9_c01136{transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);}
.m6a_c01136{transform:matrix(0.355252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355252,0.000000,0.000000,0.250000,0,0);}
.m1d_c01136{transform:matrix(0.356018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356018,0.000000,0.000000,0.250000,0,0);}
.m4_c01136{transform:matrix(0.359199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359199,0.000000,0.000000,0.250000,0,0);}
.mf_c01136{transform:matrix(0.361546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361546,0.000000,0.000000,0.250000,0,0);}
.m13_c01136{transform:matrix(0.369101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369101,0.000000,0.000000,0.250000,0,0);}
.m27_c01136{transform:matrix(0.371795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371795,0.000000,0.000000,0.250000,0,0);}
.ma0_c01136{transform:matrix(0.371945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371945,0.000000,0.000000,0.250000,0,0);}
.m83_c01136{transform:matrix(0.380738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380738,0.000000,0.000000,0.250000,0,0);}
.m3a_c01136{transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);}
.m15_c01136{transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);}
.m79_c01136{transform:matrix(0.402738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402738,0.000000,0.000000,0.250000,0,0);}
.mc_c01136{transform:matrix(0.412048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412048,0.000000,0.000000,0.250000,0,0);}
.m26_c01136{transform:matrix(0.418190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418190,0.000000,0.000000,0.250000,0,0);}
.m9b_c01136{transform:matrix(1.749368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.749368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.749368,0.000000,0.000000,0.250000,0,0);}
.v0_c01136{vertical-align:0.000000px;}
.ls15_c01136{letter-spacing:-2.882880px;}
.lsc_c01136{letter-spacing:-2.647267px;}
.ls19_c01136{letter-spacing:-2.633400px;}
.ls13_c01136{letter-spacing:-2.522527px;}
.ls12_c01136{letter-spacing:-1.434517px;}
.ls18_c01136{letter-spacing:-0.171191px;}
.ls0_c01136{letter-spacing:0.000000px;}
.ls1c_c01136{letter-spacing:0.188100px;}
.lsd_c01136{letter-spacing:0.355490px;}
.ls7_c01136{letter-spacing:1.081598px;}
.ls16_c01136{letter-spacing:1.860650px;}
.lsb_c01136{letter-spacing:2.623500px;}
.lsa_c01136{letter-spacing:3.048139px;}
.ls10_c01136{letter-spacing:3.405610px;}
.ls11_c01136{letter-spacing:3.435310px;}
.ls1e_c01136{letter-spacing:3.504610px;}
.ls1b_c01136{letter-spacing:3.633310px;}
.ls3_c01136{letter-spacing:3.766683px;}
.ls2_c01136{letter-spacing:3.781810px;}
.ls5_c01136{letter-spacing:4.108500px;}
.ls14_c01136{letter-spacing:4.118400px;}
.ls9_c01136{letter-spacing:4.177810px;}
.ls8_c01136{letter-spacing:4.257000px;}
.ls1_c01136{letter-spacing:31.363200px;}
.ls17_c01136{letter-spacing:42.768000px;}
.lsf_c01136{letter-spacing:52.747398px;}
.lse_c01136{letter-spacing:54.172998px;}
.ls6_c01136{letter-spacing:59.875398px;}
.ls4_c01136{letter-spacing:64.152198px;}
.ls1d_c01136{letter-spacing:65.577798px;}
.ls1a_c01136{letter-spacing:69.854598px;}
.sc__c01136{text-shadow:none;}
.sc0_c01136{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01136{-webkit-text-stroke:0px transparent;}
.sc0_c01136{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01136{word-spacing:0.000000px;}
._0_c01136{margin-left:-23.900679px;}
._4_c01136{margin-left:-1.124491px;}
._3_c01136{width:10.740182px;}
._2_c01136{width:30.883248px;}
._5_c01136{width:32.022144px;}
._1_c01136{width:279.124560px;}
.fc0_c01136{color:transparent;}
.fs19_c01136{font-size:3.762000px;}
.fs1d_c01136{font-size:22.176000px;}
.fs12_c01136{font-size:26.532000px;}
.fs1_c01136{font-size:31.363200px;}
.fs1e_c01136{font-size:33.660000px;}
.fs2_c01136{font-size:39.600000px;}
.fsf_c01136{font-size:40.986198px;}
.fs14_c01136{font-size:41.580000px;}
.fs13_c01136{font-size:42.768000px;}
.fs15_c01136{font-size:51.876198px;}
.fsb_c01136{font-size:52.470000px;}
.fsd_c01136{font-size:52.747398px;}
.fsc_c01136{font-size:54.172998px;}
.fs7_c01136{font-size:59.875398px;}
.fs5_c01136{font-size:64.152198px;}
.fs4_c01136{font-size:64.548000px;}
.fs1b_c01136{font-size:65.577798px;}
.fs0_c01136{font-size:68.112198px;}
.fse_c01136{font-size:68.706198px;}
.fs17_c01136{font-size:69.854598px;}
.fs1c_c01136{font-size:70.092198px;}
.fs10_c01136{font-size:72.072198px;}
.fs18_c01136{font-size:72.666198px;}
.fs1a_c01136{font-size:72.864000px;}
.fs16_c01136{font-size:75.240000px;}
.fs3_c01136{font-size:75.636198px;}
.fs8_c01136{font-size:79.200000px;}
.fs6_c01136{font-size:82.170000px;}
.fs11_c01136{font-size:82.368000px;}
.fsa_c01136{font-size:83.556198px;}
.fs9_c01136{font-size:85.140000px;}
.y0_c01136{bottom:0.000000px;}
.y23_c01136{bottom:54.792585px;}
.y22_c01136{bottom:67.266585px;}
.y1_c01136{bottom:76.500000px;}
.y20_c01136{bottom:118.593135px;}
.y1f_c01136{bottom:122.157135px;}
.y21_c01136{bottom:152.807535px;}
.y1e_c01136{bottom:154.228185px;}
.y1d_c01136{bottom:222.305535px;}
.y1c_c01136{bottom:252.243135px;}
.y19_c01136{bottom:317.820735px;}
.y17_c01136{bottom:318.177135px;}
.y1b_c01136{bottom:318.528585px;}
.y18_c01136{bottom:326.017935px;}
.y16_c01136{bottom:350.965935px;}
.y1a_c01136{bottom:351.317385px;}
.y15_c01136{bottom:382.680585px;}
.y14_c01136{bottom:415.117935px;}
.y13_c01136{bottom:446.837535px;}
.y12_c01136{bottom:479.626335px;}
.y11_c01136{bottom:510.989535px;}
.y10_c01136{bottom:542.709135px;}
.yf_c01136{bottom:605.079135px;}
.ye_c01136{bottom:638.219385px;}
.yd_c01136{bottom:669.943935px;}
.yc_c01136{bottom:702.371385px;}
.yb_c01136{bottom:715.558185px;}
.ya_c01136{bottom:733.739535px;}
.y9_c01136{bottom:766.884735px;}
.y8_c01136{bottom:798.247935px;}
.y7_c01136{bottom:861.687135px;}
.y6_c01136{bottom:894.475935px;}
.y5_c01136{bottom:926.546985px;}
.y4_c01136{bottom:991.768185px;}
.y3_c01136{bottom:999.252585px;}
.y2_c01136{bottom:1012.439385px;}
.h1a_c01136{height:3.923648px;}
.h3_c01136{height:20.887891px;}
.h1e_c01136{height:23.128875px;}
.h14_c01136{height:28.483488px;}
.h1f_c01136{height:33.035449px;}
.hf_c01136{height:35.129767px;}
.he_c01136{height:36.079217px;}
.h9_c01136{height:39.877015px;}
.h11_c01136{height:40.225712px;}
.h4_c01136{height:41.301563px;}
.h7_c01136{height:42.725364px;}
.h15_c01136{height:43.366641px;}
.h1c_c01136{height:43.674813px;}
.h18_c01136{height:46.523162px;}
.hd_c01136{height:51.496436px;}
.h16_c01136{height:54.105253px;}
.h6_c01136{height:67.321547px;}
.h10_c01136{height:67.431376px;}
.h12_c01136{height:70.734921px;}
.h2_c01136{height:71.038894px;}
.h19_c01136{height:71.317899px;}
.h1b_c01136{height:71.512031px;}
.h1d_c01136{height:73.103972px;}
.h17_c01136{height:73.843945px;}
.h5_c01136{height:74.232792px;}
.h8_c01136{height:80.645361px;}
.h13_c01136{height:80.839688px;}
.hc_c01136{height:82.005839px;}
.ha_c01136{height:82.603125px;}
.hb_c01136{height:83.560254px;}
.h1_c01136{height:1110.000000px;}
.h0_c01136{height:1263.000000px;}
.w1_c01136{width:775.500000px;}
.w0_c01136{width:892.500000px;}
.x0_c01136{left:0.000000px;}
.x1_c01136{left:58.500000px;}
.x5e_c01136{left:81.127185px;}
.x1d_c01136{left:82.196385px;}
.x1e_c01136{left:134.597085px;}
.x4_c01136{left:136.512735px;}
.x10_c01136{left:137.685885px;}
.x54_c01136{left:143.249685px;}
.x46_c01136{left:144.685185px;}
.x68_c01136{left:155.342535px;}
.x1b_c01136{left:170.133135px;}
.x51_c01136{left:178.087785px;}
.x37_c01136{left:179.820285px;}
.x55_c01136{left:181.037985px;}
.x5f_c01136{left:189.235185px;}
.x3a_c01136{left:191.398335px;}
.x11_c01136{left:192.566535px;}
.x52_c01136{left:193.789185px;}
.x49_c01136{left:202.491285px;}
.x22_c01136{left:212.297235px;}
.x32_c01136{left:214.297035px;}
.x6d_c01136{left:222.385335px;}
.x42_c01136{left:224.647485px;}
.x12_c01136{left:226.617585px;}
.x27_c01136{left:235.151385px;}
.x5_c01136{left:236.794785px;}
.x69_c01136{left:246.358185px;}
.x13_c01136{left:257.614485px;}
.x3d_c01136{left:258.812385px;}
.x6_c01136{left:269.182635px;}
.x6e_c01136{left:277.879785px;}
.x4b_c01136{left:279.052935px;}
.x1c_c01136{left:280.983435px;}
.x53_c01136{left:290.923035px;}
.x56_c01136{left:293.209935px;}
.x6f_c01136{left:301.506135px;}
.x28_c01136{left:303.194085px;}
.x7_c01136{left:314.054385px;}
.x33_c01136{left:315.197835px;}
.x6a_c01136{left:322.474335px;}
.x14_c01136{left:324.592935px;}
.x57_c01136{left:327.033285px;}
.x3b_c01136{left:334.176135px;}
.x29_c01136{left:335.844285px;}
.x70_c01136{left:340.348785px;}
.x43_c01136{left:345.635385px;}
.x15_c01136{left:347.605485px;}
.x71_c01136{left:354.604785px;}
.x4c_c01136{left:355.678935px;}
.x3e_c01136{left:357.767835px;}
.x4d_c01136{left:359.272635px;}
.x2a_c01136{left:369.598335px;}
.x4a_c01136{left:378.726135px;}
.x58_c01136{left:380.201235px;}
.x8_c01136{left:402.317835px;}
.x3f_c01136{left:403.812735px;}
.x2b_c01136{left:413.014785px;}
.x9_c01136{left:415.222485px;}
.x72_c01136{left:422.325735px;}
.x59_c01136{left:423.513735px;}
.x16_c01136{left:425.132385px;}
.x4e_c01136{left:433.730535px;}
.x65_c01136{left:435.032385px;}
.x34_c01136{left:446.521335px;}
.xa_c01136{left:447.743985px;}
.x6b_c01136{left:456.302535px;}
.x40_c01136{left:458.178585px;}
.x60_c01136{left:466.514385px;}
.x61_c01136{left:468.652785px;}
.x17_c01136{left:470.202135px;}
.x38_c01136{left:480.082335px;}
.x1f_c01136{left:482.250435px;}
.x2c_c01136{left:489.729885px;}
.x44_c01136{left:491.551485px;}
.x66_c01136{left:499.961535px;}
.x5c_c01136{left:501.466335px;}
.x18_c01136{left:502.916685px;}
.x41_c01136{left:512.975085px;}
.x2d_c01136{left:524.107635px;}
.x2f_c01136{left:528.037935px;}
.x4f_c01136{left:534.334335px;}
.xb_c01136{left:536.467785px;}
.x73_c01136{left:544.016535px;}
.x23_c01136{left:546.501435px;}
.x62_c01136{left:553.475985px;}
.x5d_c01136{left:555.589635px;}
.x19_c01136{left:557.906235px;}
.x67_c01136{left:567.400335px;}
.xc_c01136{left:569.578335px;}
.x24_c01136{left:578.859585px;}
.x63_c01136{left:585.195585px;}
.x2e_c01136{left:589.115985px;}
.x1a_c01136{left:590.140635px;}
.x30_c01136{left:591.769185px;}
.xd_c01136{left:601.174185px;}
.x25_c01136{left:612.163185px;}
.x5a_c01136{left:622.127535px;}
.x74_c01136{left:631.423635px;}
.x47_c01136{left:634.047135px;}
.x35_c01136{left:635.542035px;}
.x3c_c01136{left:645.976635px;}
.x31_c01136{left:647.253735px;}
.x64_c01136{left:654.188685px;}
.x45_c01136{left:655.876635px;}
.x20_c01136{left:657.252735px;}
.xe_c01136{left:668.390235px;}
.x50_c01136{left:669.771285px;}
.x39_c01136{left:679.161435px;}
.x48_c01136{left:689.269335px;}
.x21_c01136{left:691.175085px;}
.x75_c01136{left:695.902335px;}
.x5b_c01136{left:699.302985px;}
.xf_c01136{left:701.104785px;}
.x2_c01136{left:703.456035px;}
.x3_c01136{left:706.129035px;}
.x6c_c01136{left:711.118635px;}
.x26_c01136{left:713.291685px;}
.x36_c01136{left:723.627285px;}
@media print{
.v0_c01136{vertical-align:0.000000pt;}
.ls15_c01136{letter-spacing:-2.562560pt;}
.lsc_c01136{letter-spacing:-2.353126pt;}
.ls19_c01136{letter-spacing:-2.340800pt;}
.ls13_c01136{letter-spacing:-2.242246pt;}
.ls12_c01136{letter-spacing:-1.275126pt;}
.ls18_c01136{letter-spacing:-0.152170pt;}
.ls0_c01136{letter-spacing:0.000000pt;}
.ls1c_c01136{letter-spacing:0.167200pt;}
.lsd_c01136{letter-spacing:0.315991pt;}
.ls7_c01136{letter-spacing:0.961420pt;}
.ls16_c01136{letter-spacing:1.653912pt;}
.lsb_c01136{letter-spacing:2.332000pt;}
.lsa_c01136{letter-spacing:2.709457pt;}
.ls10_c01136{letter-spacing:3.027209pt;}
.ls11_c01136{letter-spacing:3.053609pt;}
.ls1e_c01136{letter-spacing:3.115209pt;}
.ls1b_c01136{letter-spacing:3.229609pt;}
.ls3_c01136{letter-spacing:3.348162pt;}
.ls2_c01136{letter-spacing:3.361609pt;}
.ls5_c01136{letter-spacing:3.652000pt;}
.ls14_c01136{letter-spacing:3.660800pt;}
.ls9_c01136{letter-spacing:3.713609pt;}
.ls8_c01136{letter-spacing:3.784000pt;}
.ls1_c01136{letter-spacing:27.878400pt;}
.ls17_c01136{letter-spacing:38.016000pt;}
.lsf_c01136{letter-spacing:46.886576pt;}
.lse_c01136{letter-spacing:48.153776pt;}
.ls6_c01136{letter-spacing:53.222576pt;}
.ls4_c01136{letter-spacing:57.024176pt;}
.ls1d_c01136{letter-spacing:58.291376pt;}
.ls1a_c01136{letter-spacing:62.092976pt;}
.ws0_c01136{word-spacing:0.000000pt;}
._0_c01136{margin-left:-21.245048pt;}
._4_c01136{margin-left:-0.999547pt;}
._3_c01136{width:9.546828pt;}
._2_c01136{width:27.451776pt;}
._5_c01136{width:28.464128pt;}
._1_c01136{width:248.110720pt;}
.fs19_c01136{font-size:3.344000pt;}
.fs1d_c01136{font-size:19.712000pt;}
.fs12_c01136{font-size:23.584000pt;}
.fs1_c01136{font-size:27.878400pt;}
.fs1e_c01136{font-size:29.920000pt;}
.fs2_c01136{font-size:35.200000pt;}
.fsf_c01136{font-size:36.432176pt;}
.fs14_c01136{font-size:36.960000pt;}
.fs13_c01136{font-size:38.016000pt;}
.fs15_c01136{font-size:46.112176pt;}
.fsb_c01136{font-size:46.640000pt;}
.fsd_c01136{font-size:46.886576pt;}
.fsc_c01136{font-size:48.153776pt;}
.fs7_c01136{font-size:53.222576pt;}
.fs5_c01136{font-size:57.024176pt;}
.fs4_c01136{font-size:57.376000pt;}
.fs1b_c01136{font-size:58.291376pt;}
.fs0_c01136{font-size:60.544176pt;}
.fse_c01136{font-size:61.072176pt;}
.fs17_c01136{font-size:62.092976pt;}
.fs1c_c01136{font-size:62.304176pt;}
.fs10_c01136{font-size:64.064176pt;}
.fs18_c01136{font-size:64.592176pt;}
.fs1a_c01136{font-size:64.768000pt;}
.fs16_c01136{font-size:66.880000pt;}
.fs3_c01136{font-size:67.232176pt;}
.fs8_c01136{font-size:70.400000pt;}
.fs6_c01136{font-size:73.040000pt;}
.fs11_c01136{font-size:73.216000pt;}
.fsa_c01136{font-size:74.272176pt;}
.fs9_c01136{font-size:75.680000pt;}
.y0_c01136{bottom:0.000000pt;}
.y23_c01136{bottom:48.704520pt;}
.y22_c01136{bottom:59.792520pt;}
.y1_c01136{bottom:68.000000pt;}
.y20_c01136{bottom:105.416120pt;}
.y1f_c01136{bottom:108.584120pt;}
.y21_c01136{bottom:135.828920pt;}
.y1e_c01136{bottom:137.091720pt;}
.y1d_c01136{bottom:197.604920pt;}
.y1c_c01136{bottom:224.216120pt;}
.y19_c01136{bottom:282.507320pt;}
.y17_c01136{bottom:282.824120pt;}
.y1b_c01136{bottom:283.136520pt;}
.y18_c01136{bottom:289.793720pt;}
.y16_c01136{bottom:311.969720pt;}
.y1a_c01136{bottom:312.282120pt;}
.y15_c01136{bottom:340.160520pt;}
.y14_c01136{bottom:368.993720pt;}
.y13_c01136{bottom:397.188920pt;}
.y12_c01136{bottom:426.334520pt;}
.y11_c01136{bottom:454.212920pt;}
.y10_c01136{bottom:482.408120pt;}
.yf_c01136{bottom:537.848120pt;}
.ye_c01136{bottom:567.306120pt;}
.yd_c01136{bottom:595.505720pt;}
.yc_c01136{bottom:624.330120pt;}
.yb_c01136{bottom:636.051720pt;}
.ya_c01136{bottom:652.212920pt;}
.y9_c01136{bottom:681.675320pt;}
.y8_c01136{bottom:709.553720pt;}
.y7_c01136{bottom:765.944120pt;}
.y6_c01136{bottom:795.089720pt;}
.y5_c01136{bottom:823.597320pt;}
.y4_c01136{bottom:881.571720pt;}
.y3_c01136{bottom:888.224520pt;}
.y2_c01136{bottom:899.946120pt;}
.h1a_c01136{height:3.487688pt;}
.h3_c01136{height:18.567014pt;}
.h1e_c01136{height:20.559000pt;}
.h14_c01136{height:25.318656pt;}
.h1f_c01136{height:29.364844pt;}
.hf_c01136{height:31.226460pt;}
.he_c01136{height:32.070415pt;}
.h9_c01136{height:35.446236pt;}
.h11_c01136{height:35.756188pt;}
.h4_c01136{height:36.712500pt;}
.h7_c01136{height:37.978101pt;}
.h15_c01136{height:38.548125pt;}
.h1c_c01136{height:38.822056pt;}
.h18_c01136{height:41.353922pt;}
.hd_c01136{height:45.774609pt;}
.h16_c01136{height:48.093559pt;}
.h6_c01136{height:59.841375pt;}
.h10_c01136{height:59.939001pt;}
.h12_c01136{height:62.875485pt;}
.h2_c01136{height:63.145684pt;}
.h19_c01136{height:63.393688pt;}
.h1b_c01136{height:63.566250pt;}
.h1d_c01136{height:64.981309pt;}
.h17_c01136{height:65.639063pt;}
.h5_c01136{height:65.984704pt;}
.h8_c01136{height:71.684766pt;}
.h13_c01136{height:71.857500pt;}
.hc_c01136{height:72.894079pt;}
.ha_c01136{height:73.425000pt;}
.hb_c01136{height:74.275781pt;}
.h1_c01136{height:986.666667pt;}
.h0_c01136{height:1122.666667pt;}
.w1_c01136{width:689.333333pt;}
.w0_c01136{width:793.333333pt;}
.x0_c01136{left:0.000000pt;}
.x1_c01136{left:52.000000pt;}
.x5e_c01136{left:72.113053pt;}
.x1d_c01136{left:73.063453pt;}
.x1e_c01136{left:119.641853pt;}
.x4_c01136{left:121.344653pt;}
.x10_c01136{left:122.387453pt;}
.x54_c01136{left:127.333053pt;}
.x46_c01136{left:128.609053pt;}
.x68_c01136{left:138.082253pt;}
.x1b_c01136{left:151.229453pt;}
.x51_c01136{left:158.300253pt;}
.x37_c01136{left:159.840253pt;}
.x55_c01136{left:160.922653pt;}
.x5f_c01136{left:168.209053pt;}
.x3a_c01136{left:170.131853pt;}
.x11_c01136{left:171.170253pt;}
.x52_c01136{left:172.257053pt;}
.x49_c01136{left:179.992253pt;}
.x22_c01136{left:188.708653pt;}
.x32_c01136{left:190.486253pt;}
.x6d_c01136{left:197.675853pt;}
.x42_c01136{left:199.686653pt;}
.x12_c01136{left:201.437853pt;}
.x27_c01136{left:209.023453pt;}
.x5_c01136{left:210.484253pt;}
.x69_c01136{left:218.985053pt;}
.x13_c01136{left:228.990653pt;}
.x3d_c01136{left:230.055453pt;}
.x6_c01136{left:239.273453pt;}
.x6e_c01136{left:247.004253pt;}
.x4b_c01136{left:248.047053pt;}
.x1c_c01136{left:249.763053pt;}
.x53_c01136{left:258.598253pt;}
.x56_c01136{left:260.631053pt;}
.x6f_c01136{left:268.005453pt;}
.x28_c01136{left:269.505853pt;}
.x7_c01136{left:279.159453pt;}
.x33_c01136{left:280.175853pt;}
.x6a_c01136{left:286.643853pt;}
.x14_c01136{left:288.527053pt;}
.x57_c01136{left:290.696253pt;}
.x3b_c01136{left:297.045453pt;}
.x29_c01136{left:298.528253pt;}
.x70_c01136{left:302.532253pt;}
.x43_c01136{left:307.231453pt;}
.x15_c01136{left:308.982653pt;}
.x71_c01136{left:315.204253pt;}
.x4c_c01136{left:316.159053pt;}
.x3e_c01136{left:318.015853pt;}
.x4d_c01136{left:319.353453pt;}
.x2a_c01136{left:328.531853pt;}
.x4a_c01136{left:336.645453pt;}
.x58_c01136{left:337.956653pt;}
.x8_c01136{left:357.615853pt;}
.x3f_c01136{left:358.944653pt;}
.x2b_c01136{left:367.124253pt;}
.x9_c01136{left:369.086653pt;}
.x72_c01136{left:375.400653pt;}
.x59_c01136{left:376.456653pt;}
.x16_c01136{left:377.895453pt;}
.x4e_c01136{left:385.538253pt;}
.x65_c01136{left:386.695453pt;}
.x34_c01136{left:396.907853pt;}
.xa_c01136{left:397.994653pt;}
.x6b_c01136{left:405.602253pt;}
.x40_c01136{left:407.269853pt;}
.x60_c01136{left:414.679453pt;}
.x61_c01136{left:416.580253pt;}
.x17_c01136{left:417.957453pt;}
.x38_c01136{left:426.739853pt;}
.x1f_c01136{left:428.667053pt;}
.x2c_c01136{left:435.315453pt;}
.x44_c01136{left:436.934653pt;}
.x66_c01136{left:444.410253pt;}
.x5c_c01136{left:445.747853pt;}
.x18_c01136{left:447.037053pt;}
.x41_c01136{left:455.977853pt;}
.x2d_c01136{left:465.873453pt;}
.x2f_c01136{left:469.367053pt;}
.x4f_c01136{left:474.963853pt;}
.xb_c01136{left:476.860253pt;}
.x73_c01136{left:483.570253pt;}
.x23_c01136{left:485.779053pt;}
.x62_c01136{left:491.978653pt;}
.x5d_c01136{left:493.857453pt;}
.x19_c01136{left:495.916653pt;}
.x67_c01136{left:504.355853pt;}
.xc_c01136{left:506.291853pt;}
.x24_c01136{left:514.541853pt;}
.x63_c01136{left:520.173853pt;}
.x2e_c01136{left:523.658653pt;}
.x1a_c01136{left:524.569453pt;}
.x30_c01136{left:526.017053pt;}
.xd_c01136{left:534.377053pt;}
.x25_c01136{left:544.145053pt;}
.x5a_c01136{left:553.002253pt;}
.x74_c01136{left:561.265453pt;}
.x47_c01136{left:563.597453pt;}
.x35_c01136{left:564.926253pt;}
.x3c_c01136{left:574.201453pt;}
.x31_c01136{left:575.336653pt;}
.x64_c01136{left:581.501053pt;}
.x45_c01136{left:583.001453pt;}
.x20_c01136{left:584.224653pt;}
.xe_c01136{left:594.124653pt;}
.x50_c01136{left:595.352253pt;}
.x39_c01136{left:603.699053pt;}
.x48_c01136{left:612.683853pt;}
.x21_c01136{left:614.377853pt;}
.x75_c01136{left:618.579853pt;}
.x5b_c01136{left:621.602653pt;}
.xf_c01136{left:623.204253pt;}
.x2_c01136{left:625.294253pt;}
.x3_c01136{left:627.670253pt;}
.x6c_c01136{left:632.105453pt;}
.x26_c01136{left:634.037053pt;}
.x36_c01136{left:643.224253pt;}
}





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

.ir_c01137:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01137{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01137;src:url('chunks/assets/font_90a694e26a3d1d478d23f729.woff2')format("woff");}.ff1_c01137{font-family:ff1_c01137;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01137;src:url('chunks/assets/font_ed375eb12142f3c10838a9db.woff2')format("woff");}.ff2_c01137{font-family:ff2_c01137;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01137;src:url('chunks/assets/font_39a016431c34023d6a5be2be.woff2')format("woff");}.ff3_c01137{font-family:ff3_c01137;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01137;src:url('chunks/assets/font_7f15953fa8010f18c45c7ddc.woff2')format("woff");}.ff4_c01137{font-family:ff4_c01137;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01137;src:url('chunks/assets/font_752100785c92badb534f70fc.woff2')format("woff");}.ff5_c01137{font-family:ff5_c01137;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01137;src:url('chunks/assets/font_8fa0d0878de8faa1a64b7d56.woff2')format("woff");}.ff6_c01137{font-family:ff6_c01137;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m6d_c01137{transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);}
.m78_c01137{transform:matrix(0.146945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146945,0.000000,0.000000,0.250000,0,0);}
.m4_c01137{transform:matrix(0.159869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159869,0.000000,0.000000,0.250000,0,0);}
.m71_c01137{transform:matrix(0.161868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161868,0.000000,0.000000,0.250000,0,0);}
.m19_c01137{transform:matrix(0.170015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170015,0.000000,0.000000,0.250000,0,0);}
.m14_c01137{transform:matrix(0.171053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171053,0.000000,0.000000,0.250000,0,0);}
.m46_c01137{transform:matrix(0.172360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172360,0.000000,0.000000,0.250000,0,0);}
.m5f_c01137{transform:matrix(0.180357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180357,0.000000,0.000000,0.250000,0,0);}
.m15_c01137{transform:matrix(0.185527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185527,0.000000,0.000000,0.250000,0,0);}
.m66_c01137{transform:matrix(0.187282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187282,0.000000,0.000000,0.250000,0,0);}
.m58_c01137{transform:matrix(0.192128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192128,0.000000,0.000000,0.250000,0,0);}
.m13_c01137{transform:matrix(0.207236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207236,0.000000,0.000000,0.250000,0,0);}
.m90_c01137{transform:matrix(0.218992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218992,0.000000,0.000000,0.250000,0,0);}
.m6e_c01137{transform:matrix(0.226962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226962,0.000000,0.000000,0.250000,0,0);}
.m7b_c01137{transform:matrix(0.230943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230943,0.000000,0.000000,0.250000,0,0);}
.m42_c01137{transform:matrix(0.232344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232344,0.000000,0.000000,0.250000,0,0);}
.m50_c01137{transform:matrix(0.240432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240432,0.000000,0.000000,0.250000,0,0);}
.m57_c01137{transform:matrix(0.242010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242010,0.000000,0.000000,0.250000,0,0);}
.m0_c01137{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m12_c01137{transform:matrix(0.250546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250546,0.000000,0.000000,0.250000,0,0);}
.m4c_c01137{transform:matrix(0.251057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251057,0.000000,0.000000,0.250000,0,0);}
.m75_c01137{transform:matrix(0.251399,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251399,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251399,0.000000,0.000000,0.250000,0,0);}
.m7d_c01137{transform:matrix(0.251640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251640,0.000000,0.000000,0.250000,0,0);}
.m41_c01137{transform:matrix(0.251781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251781,0.000000,0.000000,0.250000,0,0);}
.m23_c01137{transform:matrix(0.252313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252313,0.000000,0.000000,0.250000,0,0);}
.m1_c01137{transform:matrix(0.255232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255232,0.000000,0.000000,0.250000,0,0);}
.m82_c01137{transform:matrix(0.255844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255844,0.000000,0.000000,0.250000,0,0);}
.m34_c01137{transform:matrix(0.256343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256343,0.000000,0.000000,0.250000,0,0);}
.m5_c01137{transform:matrix(0.256355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256355,0.000000,0.000000,0.250000,0,0);}
.m7_c01137{transform:matrix(0.256405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256405,0.000000,0.000000,0.250000,0,0);}
.m35_c01137{transform:matrix(0.256413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256413,0.000000,0.000000,0.250000,0,0);}
.m26_c01137{transform:matrix(0.256819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256819,0.000000,0.000000,0.250000,0,0);}
.m8b_c01137{transform:matrix(0.257376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257376,0.000000,0.000000,0.250000,0,0);}
.m84_c01137{transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);}
.m2f_c01137{transform:matrix(0.260579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260579,0.000000,0.000000,0.250000,0,0);}
.m9_c01137{transform:matrix(0.261325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261325,0.000000,0.000000,0.250000,0,0);}
.m8e_c01137{transform:matrix(0.261333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261333,0.000000,0.000000,0.250000,0,0);}
.m5b_c01137{transform:matrix(0.261857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261857,0.000000,0.000000,0.250000,0,0);}
.m2a_c01137{transform:matrix(0.262220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262220,0.000000,0.000000,0.250000,0,0);}
.m88_c01137{transform:matrix(0.262973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262973,0.000000,0.000000,0.250000,0,0);}
.m17_c01137{transform:matrix(0.263778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263778,0.000000,0.000000,0.250000,0,0);}
.m63_c01137{transform:matrix(0.264211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264211,0.000000,0.000000,0.250000,0,0);}
.m4d_c01137{transform:matrix(0.264396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264396,0.000000,0.000000,0.250000,0,0);}
.m8d_c01137{transform:matrix(0.265024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265024,0.000000,0.000000,0.250000,0,0);}
.m2d_c01137{transform:matrix(0.265391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265391,0.000000,0.000000,0.250000,0,0);}
.m3e_c01137{transform:matrix(0.266609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266609,0.000000,0.000000,0.250000,0,0);}
.m8_c01137{transform:matrix(0.267318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267318,0.000000,0.000000,0.250000,0,0);}
.m8c_c01137{transform:matrix(0.267849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267849,0.000000,0.000000,0.250000,0,0);}
.m3f_c01137{transform:matrix(0.268631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268631,0.000000,0.000000,0.250000,0,0);}
.m20_c01137{transform:matrix(0.268813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268813,0.000000,0.000000,0.250000,0,0);}
.m65_c01137{transform:matrix(0.270267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270267,0.000000,0.000000,0.250000,0,0);}
.m91_c01137{transform:matrix(0.272109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272109,0.000000,0.000000,0.250000,0,0);}
.m81_c01137{transform:matrix(0.272196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272196,0.000000,0.000000,0.250000,0,0);}
.m80_c01137{transform:matrix(0.272597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272597,0.000000,0.000000,0.250000,0,0);}
.mc_c01137{transform:matrix(0.272882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272882,0.000000,0.000000,0.250000,0,0);}
.ma_c01137{transform:matrix(0.273892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273892,0.000000,0.000000,0.250000,0,0);}
.m7e_c01137{transform:matrix(0.273896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273896,0.000000,0.000000,0.250000,0,0);}
.m2c_c01137{transform:matrix(0.273973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273973,0.000000,0.000000,0.250000,0,0);}
.m79_c01137{transform:matrix(0.273995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273995,0.000000,0.000000,0.250000,0,0);}
.mb_c01137{transform:matrix(0.274026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274026,0.000000,0.000000,0.250000,0,0);}
.m44_c01137{transform:matrix(0.274068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274068,0.000000,0.000000,0.250000,0,0);}
.m3_c01137{transform:matrix(0.274355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274355,0.000000,0.000000,0.250000,0,0);}
.m2_c01137{transform:matrix(0.274516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274516,0.000000,0.000000,0.250000,0,0);}
.m3a_c01137{transform:matrix(0.276046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276046,0.000000,0.000000,0.250000,0,0);}
.m6b_c01137{transform:matrix(0.276214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276214,0.000000,0.000000,0.250000,0,0);}
.m11_c01137{transform:matrix(0.276245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276245,0.000000,0.000000,0.250000,0,0);}
.me_c01137{transform:matrix(0.276875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276875,0.000000,0.000000,0.250000,0,0);}
.m48_c01137{transform:matrix(0.277124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277124,0.000000,0.000000,0.250000,0,0);}
.m28_c01137{transform:matrix(0.278096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278096,0.000000,0.000000,0.250000,0,0);}
.m87_c01137{transform:matrix(0.278324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278324,0.000000,0.000000,0.250000,0,0);}
.m7f_c01137{transform:matrix(0.278577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278577,0.000000,0.000000,0.250000,0,0);}
.m59_c01137{transform:matrix(0.278732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278732,0.000000,0.000000,0.250000,0,0);}
.m49_c01137{transform:matrix(0.280119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280119,0.000000,0.000000,0.250000,0,0);}
.m67_c01137{transform:matrix(0.280451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280451,0.000000,0.000000,0.250000,0,0);}
.m5c_c01137{transform:matrix(0.283105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283105,0.000000,0.000000,0.250000,0,0);}
.m31_c01137{transform:matrix(0.283852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283852,0.000000,0.000000,0.250000,0,0);}
.m4b_c01137{transform:matrix(0.283895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283895,0.000000,0.000000,0.250000,0,0);}
.m60_c01137{transform:matrix(0.284034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284034,0.000000,0.000000,0.250000,0,0);}
.m64_c01137{transform:matrix(0.284711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284711,0.000000,0.000000,0.250000,0,0);}
.m72_c01137{transform:matrix(0.285385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285385,0.000000,0.000000,0.250000,0,0);}
.m55_c01137{transform:matrix(0.285871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285871,0.000000,0.000000,0.250000,0,0);}
.m74_c01137{transform:matrix(0.286713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286713,0.000000,0.000000,0.250000,0,0);}
.m6f_c01137{transform:matrix(0.286800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286800,0.000000,0.000000,0.250000,0,0);}
.m22_c01137{transform:matrix(0.287977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287977,0.000000,0.000000,0.250000,0,0);}
.m10_c01137{transform:matrix(0.288264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288264,0.000000,0.000000,0.250000,0,0);}
.m36_c01137{transform:matrix(0.288675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288675,0.000000,0.000000,0.250000,0,0);}
.m2e_c01137{transform:matrix(0.289339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289339,0.000000,0.000000,0.250000,0,0);}
.m62_c01137{transform:matrix(0.290675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290675,0.000000,0.000000,0.250000,0,0);}
.m4f_c01137{transform:matrix(0.290815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290815,0.000000,0.000000,0.250000,0,0);}
.m16_c01137{transform:matrix(0.291177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291177,0.000000,0.000000,0.250000,0,0);}
.m8a_c01137{transform:matrix(0.291181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291181,0.000000,0.000000,0.250000,0,0);}
.m29_c01137{transform:matrix(0.292437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292437,0.000000,0.000000,0.250000,0,0);}
.m3b_c01137{transform:matrix(0.292697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292697,0.000000,0.000000,0.250000,0,0);}
.m61_c01137{transform:matrix(0.292732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292732,0.000000,0.000000,0.250000,0,0);}
.m52_c01137{transform:matrix(0.292962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292962,0.000000,0.000000,0.250000,0,0);}
.m2b_c01137{transform:matrix(0.294166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294166,0.000000,0.000000,0.250000,0,0);}
.mf_c01137{transform:matrix(0.294214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294214,0.000000,0.000000,0.250000,0,0);}
.m30_c01137{transform:matrix(0.294626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294626,0.000000,0.000000,0.250000,0,0);}
.m32_c01137{transform:matrix(0.294977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294977,0.000000,0.000000,0.250000,0,0);}
.m5e_c01137{transform:matrix(0.295596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295596,0.000000,0.000000,0.250000,0,0);}
.m53_c01137{transform:matrix(0.296094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296094,0.000000,0.000000,0.250000,0,0);}
.m83_c01137{transform:matrix(0.296843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296843,0.000000,0.000000,0.250000,0,0);}
.m4a_c01137{transform:matrix(0.297396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297396,0.000000,0.000000,0.250000,0,0);}
.m6_c01137{transform:matrix(0.297951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297951,0.000000,0.000000,0.250000,0,0);}
.m33_c01137{transform:matrix(0.299004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299004,0.000000,0.000000,0.250000,0,0);}
.m47_c01137{transform:matrix(0.299573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299573,0.000000,0.000000,0.250000,0,0);}
.m38_c01137{transform:matrix(0.299941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299941,0.000000,0.000000,0.250000,0,0);}
.m37_c01137{transform:matrix(0.299942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299942,0.000000,0.000000,0.250000,0,0);}
.m85_c01137{transform:matrix(0.299964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299964,0.000000,0.000000,0.250000,0,0);}
.m5a_c01137{transform:matrix(0.301022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301022,0.000000,0.000000,0.250000,0,0);}
.m3c_c01137{transform:matrix(0.301509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301509,0.000000,0.000000,0.250000,0,0);}
.m25_c01137{transform:matrix(0.301759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301759,0.000000,0.000000,0.250000,0,0);}
.m76_c01137{transform:matrix(0.301871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301871,0.000000,0.000000,0.250000,0,0);}
.m43_c01137{transform:matrix(0.302546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302546,0.000000,0.000000,0.250000,0,0);}
.m56_c01137{transform:matrix(0.302588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302588,0.000000,0.000000,0.250000,0,0);}
.m70_c01137{transform:matrix(0.302922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302922,0.000000,0.000000,0.250000,0,0);}
.m86_c01137{transform:matrix(0.304360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304360,0.000000,0.000000,0.250000,0,0);}
.m1e_c01137{transform:matrix(0.304783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304783,0.000000,0.000000,0.250000,0,0);}
.m6a_c01137{transform:matrix(0.306538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306538,0.000000,0.000000,0.250000,0,0);}
.m89_c01137{transform:matrix(0.309472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309472,0.000000,0.000000,0.250000,0,0);}
.m40_c01137{transform:matrix(0.310946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310946,0.000000,0.000000,0.250000,0,0);}
.m4e_c01137{transform:matrix(0.312917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312917,0.000000,0.000000,0.250000,0,0);}
.m5d_c01137{transform:matrix(0.314427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314427,0.000000,0.000000,0.250000,0,0);}
.m24_c01137{transform:matrix(0.315483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315483,0.000000,0.000000,0.250000,0,0);}
.m54_c01137{transform:matrix(0.315877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315877,0.000000,0.000000,0.250000,0,0);}
.m6c_c01137{transform:matrix(0.317871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317871,0.000000,0.000000,0.250000,0,0);}
.m3d_c01137{transform:matrix(0.319020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319020,0.000000,0.000000,0.250000,0,0);}
.m69_c01137{transform:matrix(0.321882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321882,0.000000,0.000000,0.250000,0,0);}
.m39_c01137{transform:matrix(0.322565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322565,0.000000,0.000000,0.250000,0,0);}
.m73_c01137{transform:matrix(0.323700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323700,0.000000,0.000000,0.250000,0,0);}
.m68_c01137{transform:matrix(0.325016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325016,0.000000,0.000000,0.250000,0,0);}
.m1a_c01137{transform:matrix(0.326150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326150,0.000000,0.000000,0.250000,0,0);}
.md_c01137{transform:matrix(0.327006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327006,0.000000,0.000000,0.250000,0,0);}
.m51_c01137{transform:matrix(0.330429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330429,0.000000,0.000000,0.250000,0,0);}
.m7c_c01137{transform:matrix(0.337967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337967,0.000000,0.000000,0.250000,0,0);}
.m7a_c01137{transform:matrix(0.358651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358651,0.000000,0.000000,0.250000,0,0);}
.m77_c01137{transform:matrix(0.366533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366533,0.000000,0.000000,0.250000,0,0);}
.m27_c01137{transform:matrix(0.375943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375943,0.000000,0.000000,0.250000,0,0);}
.m8f_c01137{transform:matrix(0.380707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380707,0.000000,0.000000,0.250000,0,0);}
.m21_c01137{transform:matrix(0.399440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399440,0.000000,0.000000,0.250000,0,0);}
.m45_c01137{transform:matrix(0.408030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408030,0.000000,0.000000,0.250000,0,0);}
.m1d_c01137{transform:matrix(0.433465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433465,0.000000,0.000000,0.250000,0,0);}
.m1b_c01137{transform:matrix(0.478971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478971,0.000000,0.000000,0.250000,0,0);}
.m1c_c01137{transform:matrix(0.554584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554584,0.000000,0.000000,0.250000,0,0);}
.m1f_c01137{transform:matrix(0.687158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687158,0.000000,0.000000,0.250000,0,0);}
.m18_c01137{transform:matrix(0.835112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835112,0.000000,0.000000,0.250000,0,0);}
.v0_c01137{vertical-align:0.000000px;}
.ls1c_c01137{letter-spacing:-3.465000px;}
.ls15_c01137{letter-spacing:-2.813580px;}
.lsb_c01137{letter-spacing:-2.644765px;}
.ls1b_c01137{letter-spacing:-2.439367px;}
.ls7_c01137{letter-spacing:-2.314627px;}
.ls25_c01137{letter-spacing:-2.252250px;}
.ls10_c01137{letter-spacing:-2.023567px;}
.ls3_c01137{letter-spacing:0.000000px;}
.ls1_c01137{letter-spacing:0.104504px;}
.lsf_c01137{letter-spacing:0.594000px;}
.ls24_c01137{letter-spacing:0.643104px;}
.ls18_c01137{letter-spacing:0.712800px;}
.ls12_c01137{letter-spacing:0.851400px;}
.lse_c01137{letter-spacing:0.980734px;}
.ls8_c01137{letter-spacing:1.262092px;}
.ls16_c01137{letter-spacing:1.732500px;}
.ls11_c01137{letter-spacing:2.890810px;}
.ls21_c01137{letter-spacing:3.127093px;}
.ls1d_c01137{letter-spacing:3.167505px;}
.ls14_c01137{letter-spacing:3.175326px;}
.ls13_c01137{letter-spacing:3.177900px;}
.ls26_c01137{letter-spacing:3.217500px;}
.ls6_c01137{letter-spacing:3.306610px;}
.ls1a_c01137{letter-spacing:3.326400px;}
.ls2_c01137{letter-spacing:3.328063px;}
.lsa_c01137{letter-spacing:3.400412px;}
.lsc_c01137{letter-spacing:3.512956px;}
.ls1e_c01137{letter-spacing:3.564000px;}
.ls0_c01137{letter-spacing:3.713926px;}
.ls1f_c01137{letter-spacing:3.738042px;}
.ls5_c01137{letter-spacing:3.910500px;}
.ls19_c01137{letter-spacing:3.960000px;}
.ls9_c01137{letter-spacing:4.019400px;}
.ls27_c01137{letter-spacing:4.078810px;}
.ls4_c01137{letter-spacing:4.276810px;}
.ls23_c01137{letter-spacing:29.937798px;}
.lsd_c01137{letter-spacing:54.172998px;}
.ls22_c01137{letter-spacing:58.449798px;}
.ls20_c01137{letter-spacing:59.875398px;}
.ls28_c01137{letter-spacing:61.300998px;}
.ls17_c01137{letter-spacing:65.577798px;}
.sc__c01137{text-shadow:none;}
.sc0_c01137{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01137{-webkit-text-stroke:0px transparent;}
.sc0_c01137{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01137{word-spacing:-20.097000px;}
.ws1_c01137{word-spacing:0.000000px;}
._4_c01137{margin-left:-13.998748px;}
._a_c01137{margin-left:-2.492820px;}
._7_c01137{width:12.137796px;}
._6_c01137{width:13.581216px;}
._9_c01137{width:21.979030px;}
._1_c01137{width:24.670800px;}
._2_c01137{width:27.083113px;}
._5_c01137{width:44.979264px;}
._3_c01137{width:49.895455px;}
._0_c01137{width:73.842991px;}
._8_c01137{width:89.361360px;}
.fc0_c01137{color:transparent;}
.fs6_c01137{font-size:11.880000px;}
.fs8_c01137{font-size:17.028000px;}
.fs14_c01137{font-size:22.176000px;}
.fs16_c01137{font-size:29.937798px;}
.fs20_c01137{font-size:33.660000px;}
.fsa_c01137{font-size:34.650000px;}
.fs0_c01137{font-size:38.808000px;}
.fsc_c01137{font-size:39.204000px;}
.fs1e_c01137{font-size:48.906198px;}
.fs5_c01137{font-size:54.172998px;}
.fs1d_c01137{font-size:55.440000px;}
.fs7_c01137{font-size:57.816198px;}
.fs13_c01137{font-size:58.449798px;}
.fs12_c01137{font-size:59.875398px;}
.fs1f_c01137{font-size:61.300998px;}
.fs9_c01137{font-size:63.558000px;}
.fs17_c01137{font-size:64.350000px;}
.fsb_c01137{font-size:65.577798px;}
.fs3_c01137{font-size:66.132198px;}
.fse_c01137{font-size:66.528000px;}
.fsf_c01137{font-size:69.696198px;}
.fs11_c01137{font-size:71.280000px;}
.fs15_c01137{font-size:72.864000px;}
.fs19_c01137{font-size:74.844000px;}
.fs1a_c01137{font-size:76.428000px;}
.fs2_c01137{font-size:78.210000px;}
.fsd_c01137{font-size:79.200000px;}
.fs4_c01137{font-size:80.388000px;}
.fs18_c01137{font-size:81.378000px;}
.fs1b_c01137{font-size:81.576198px;}
.fs1_c01137{font-size:85.536198px;}
.fs10_c01137{font-size:99.000000px;}
.fs1c_c01137{font-size:108.504000px;}
.y0_c01137{bottom:0.000000px;}
.y1_c01137{bottom:76.500000px;}
.y23_c01137{bottom:94.357935px;}
.y24_c01137{bottom:103.267935px;}
.y22_c01137{bottom:110.039535px;}
.y21_c01137{bottom:117.167535px;}
.y2_c01137{bottom:137.482335px;}
.y20_c01137{bottom:158.866335px;}
.y1f_c01137{bottom:192.362985px;}
.y1e_c01137{bottom:224.800335px;}
.y1d_c01137{bottom:288.952335px;}
.y1c_c01137{bottom:321.741135px;}
.y1b_c01137{bottom:372.349935px;}
.y1a_c01137{bottom:383.036985px;}
.y15_c01137{bottom:384.462585px;}
.y16_c01137{bottom:386.600985px;}
.y19_c01137{bottom:393.372585px;}
.y18_c01137{bottom:406.207935px;}
.y17_c01137{bottom:416.899935px;}
.y14_c01137{bottom:417.612735px;}
.y13_c01137{bottom:481.408335px;}
.y12_c01137{bottom:513.127935px;}
.y25_c01137{bottom:533.081385px;}
.y11_c01137{bottom:577.279935px;}
.y10_c01137{bottom:609.355935px;}
.yf_c01137{bottom:644.995935px;}
.ye_c01137{bottom:673.151535px;}
.yc_c01137{bottom:706.648185px;}
.yd_c01137{bottom:711.281385px;}
.yb_c01137{bottom:738.372735px;}
.ya_c01137{bottom:770.443785px;}
.y9_c01137{bottom:801.806985px;}
.y8_c01137{bottom:833.531535px;}
.y7_c01137{bottom:861.325785px;}
.y6_c01137{bottom:865.602585px;}
.y5_c01137{bottom:898.039935px;}
.y4_c01137{bottom:929.754585px;}
.y3_c01137{bottom:1090.490985px;}
.h8_c01137{height:11.659570px;}
.hc_c01137{height:11.972813px;}
.hb_c01137{height:17.759672px;}
.h1a_c01137{height:19.938573px;}
.h18_c01137{height:23.128875px;}
.h25_c01137{height:33.035449px;}
.h7_c01137{height:36.079217px;}
.he_c01137{height:36.138867px;}
.h10_c01137{height:38.476582px;}
.h17_c01137{height:38.927565px;}
.h16_c01137{height:39.877015px;}
.h2_c01137{height:40.475531px;}
.h23_c01137{height:40.826465px;}
.hf_c01137{height:43.674813px;}
.h22_c01137{height:51.007636px;}
.ha_c01137{height:56.743437px;}
.h21_c01137{height:57.822188px;}
.h9_c01137{height:58.267887px;}
.h12_c01137{height:65.293594px;}
.hd_c01137{height:66.289008px;}
.h1b_c01137{height:67.115039px;}
.h13_c01137{height:68.403007px;}
.h5_c01137{height:68.973816px;}
.h15_c01137{height:69.957422px;}
.h19_c01137{height:71.512031px;}
.h1d_c01137{height:73.455293px;}
.h1e_c01137{height:75.009902px;}
.h4_c01137{height:76.720649px;}
.h24_c01137{height:77.691797px;}
.h11_c01137{height:77.730469px;}
.h6_c01137{height:78.896426px;}
.h1c_c01137{height:79.868057px;}
.h1f_c01137{height:80.062577px;}
.h3_c01137{height:83.949101px;}
.h14_c01137{height:97.163086px;}
.h20_c01137{height:106.490742px;}
.h1_c01137{height:1110.000000px;}
.h0_c01137{height:1263.000000px;}
.w1_c01137{width:775.500000px;}
.w0_c01137{width:892.500000px;}
.x0_c01137{left:0.000000px;}
.x2_c01137{left:46.165335px;}
.x1_c01137{left:58.500000px;}
.x6a_c01137{left:91.452885px;}
.x4b_c01137{left:92.527035px;}
.x57_c01137{left:113.915985px;}
.x47_c01137{left:145.754385px;}
.x4_c01137{left:147.145335px;}
.x69_c01137{left:167.078985px;}
.x6b_c01137{left:178.657035px;}
.xc_c01137{left:179.731185px;}
.x4c_c01137{left:182.409135px;}
.x50_c01137{left:189.443085px;}
.x11_c01137{left:190.606335px;}
.x42_c01137{left:192.447735px;}
.x5_c01137{left:213.886185px;}
.x1d_c01137{left:216.519585px;}
.x6c_c01137{left:223.607985px;}
.x2b_c01137{left:224.667285px;}
.x1e_c01137{left:229.147035px;}
.x58_c01137{left:234.651435px;}
.x3e_c01137{left:236.057235px;}
.x6_c01137{left:237.883785px;}
.x35_c01137{left:247.125435px;}
.x1f_c01137{left:249.694485px;}
.x75_c01137{left:256.243335px;}
.x2c_c01137{left:257.738235px;}
.x7_c01137{left:258.866835px;}
.x6d_c01137{left:267.158085px;}
.xd_c01137{left:268.677735px;}
.x20_c01137{left:277.077885px;}
.x51_c01137{left:279.290535px;}
.x36_c01137{left:280.968585px;}
.x2d_c01137{left:291.769485px;}
.x21_c01137{left:294.972135px;}
.x5b_c01137{left:301.110135px;}
.x12_c01137{left:303.050535px;}
.x76_c01137{left:312.178335px;}
.x43_c01137{left:313.999935px;}
.x4d_c01137{left:324.241485px;}
.x48_c01137{left:334.943385px;}
.x44_c01137{left:336.928335px;}
.x6e_c01137{left:344.882985px;}
.x13_c01137{left:347.239185px;}
.x61_c01137{left:356.545185px;}
.x37_c01137{left:360.698235px;}
.x3f_c01137{left:368.603385px;}
.x52_c01137{left:371.320935px;}
.x38_c01137{left:379.854735px;}
.x22_c01137{left:386.012535px;}
.x2e_c01137{left:391.472385px;}
.x49_c01137{left:393.180135px;}
.x53_c01137{left:400.501185px;}
.x5d_c01137{left:402.075285px;}
.x8_c01137{left:403.570185px;}
.x71_c01137{left:413.123685px;}
.x2f_c01137{left:424.696785px;}
.x23_c01137{left:434.260185px;}
.x5e_c01137{left:435.304635px;}
.x14_c01137{left:436.378785px;}
.x62_c01137{left:444.674985px;}
.xe_c01137{left:446.778735px;}
.x54_c01137{left:455.748135px;}
.x5f_c01137{left:468.568635px;}
.x4e_c01137{left:469.865535px;}
.x5c_c01137{left:478.384485px;}
.x15_c01137{left:479.567535px;}
.x24_c01137{left:488.294385px;}
.x72_c01137{left:489.838785px;}
.x55_c01137{left:492.615735px;}
.x9_c01137{left:502.179135px;}
.x16_c01137{left:503.287935px;}
.x25_c01137{left:505.589685px;}
.x6f_c01137{left:512.618685px;}
.x17_c01137{left:514.049235px;}
.x26_c01137{left:517.029135px;}
.x40_c01137{left:523.711635px;}
.x59_c01137{left:524.963985px;}
.x63_c01137{left:530.943585px;}
.x30_c01137{left:534.552135px;}
.x18_c01137{left:535.621335px;}
.x27_c01137{left:540.175335px;}
.x64_c01137{left:544.214535px;}
.x39_c01137{left:545.937135px;}
.x31_c01137{left:556.183635px;}
.xa_c01137{left:557.926035px;}
.x4f_c01137{left:568.296285px;}
.x3a_c01137{left:570.058485px;}
.x56_c01137{left:579.201135px;}
.x19_c01137{left:580.210935px;}
.x28_c01137{left:584.448135px;}
.xb_c01137{left:591.036585px;}
.x45_c01137{left:592.769085px;}
.x29_c01137{left:594.070935px;}
.xf_c01137{left:600.055485px;}
.x3b_c01137{left:601.971135px;}
.x46_c01137{left:603.871935px;}
.x2a_c01137{left:606.475635px;}
.x65_c01137{left:622.523535px;}
.x41_c01137{left:623.919435px;}
.x66_c01137{left:632.690835px;}
.x73_c01137{left:633.710535px;}
.x32_c01137{left:634.888635px;}
.x70_c01137{left:643.239285px;}
.x5a_c01137{left:645.927135px;}
.x1a_c01137{left:658.049685px;}
.x67_c01137{left:666.524085px;}
.x33_c01137{left:667.613085px;}
.x10_c01137{left:678.710985px;}
.x68_c01137{left:688.467435px;}
.x1b_c01137{left:689.581185px;}
.x3c_c01137{left:691.189935px;}
.x77_c01137{left:695.545935px;}
.x4a_c01137{left:698.728785px;}
.x34_c01137{left:700.634535px;}
.x3_c01137{left:702.188835px;}
.x60_c01137{left:704.787585px;}
.x3d_c01137{left:711.806685px;}
.x1c_c01137{left:712.935285px;}
.x74_c01137{left:722.206635px;}
.x78_c01137{left:770.083035px;}
@media print{
.v0_c01137{vertical-align:0.000000pt;}
.ls1c_c01137{letter-spacing:-3.080000pt;}
.ls15_c01137{letter-spacing:-2.500960pt;}
.lsb_c01137{letter-spacing:-2.350902pt;}
.ls1b_c01137{letter-spacing:-2.168326pt;}
.ls7_c01137{letter-spacing:-2.057446pt;}
.ls25_c01137{letter-spacing:-2.002000pt;}
.ls10_c01137{letter-spacing:-1.798726pt;}
.ls3_c01137{letter-spacing:0.000000pt;}
.ls1_c01137{letter-spacing:0.092893pt;}
.lsf_c01137{letter-spacing:0.528000pt;}
.ls24_c01137{letter-spacing:0.571648pt;}
.ls18_c01137{letter-spacing:0.633600pt;}
.ls12_c01137{letter-spacing:0.756800pt;}
.lse_c01137{letter-spacing:0.871763pt;}
.ls8_c01137{letter-spacing:1.121859pt;}
.ls16_c01137{letter-spacing:1.540000pt;}
.ls11_c01137{letter-spacing:2.569609pt;}
.ls21_c01137{letter-spacing:2.779638pt;}
.ls1d_c01137{letter-spacing:2.815560pt;}
.ls14_c01137{letter-spacing:2.822512pt;}
.ls13_c01137{letter-spacing:2.824800pt;}
.ls26_c01137{letter-spacing:2.860000pt;}
.ls6_c01137{letter-spacing:2.939209pt;}
.ls1a_c01137{letter-spacing:2.956800pt;}
.ls2_c01137{letter-spacing:2.958278pt;}
.lsa_c01137{letter-spacing:3.022589pt;}
.lsc_c01137{letter-spacing:3.122627pt;}
.ls1e_c01137{letter-spacing:3.168000pt;}
.ls0_c01137{letter-spacing:3.301267pt;}
.ls1f_c01137{letter-spacing:3.322704pt;}
.ls5_c01137{letter-spacing:3.476000pt;}
.ls19_c01137{letter-spacing:3.520000pt;}
.ls9_c01137{letter-spacing:3.572800pt;}
.ls27_c01137{letter-spacing:3.625609pt;}
.ls4_c01137{letter-spacing:3.801609pt;}
.ls23_c01137{letter-spacing:26.611376pt;}
.lsd_c01137{letter-spacing:48.153776pt;}
.ls22_c01137{letter-spacing:51.955376pt;}
.ls20_c01137{letter-spacing:53.222576pt;}
.ls28_c01137{letter-spacing:54.489776pt;}
.ls17_c01137{letter-spacing:58.291376pt;}
.ws0_c01137{word-spacing:-17.864000pt;}
.ws1_c01137{word-spacing:0.000000pt;}
._4_c01137{margin-left:-12.443332pt;}
._a_c01137{margin-left:-2.215840pt;}
._7_c01137{width:10.789152pt;}
._6_c01137{width:12.072192pt;}
._9_c01137{width:19.536915pt;}
._1_c01137{width:21.929600pt;}
._2_c01137{width:24.073878pt;}
._5_c01137{width:39.981568pt;}
._3_c01137{width:44.351516pt;}
._0_c01137{width:65.638214pt;}
._8_c01137{width:79.432320pt;}
.fs6_c01137{font-size:10.560000pt;}
.fs8_c01137{font-size:15.136000pt;}
.fs14_c01137{font-size:19.712000pt;}
.fs16_c01137{font-size:26.611376pt;}
.fs20_c01137{font-size:29.920000pt;}
.fsa_c01137{font-size:30.800000pt;}
.fs0_c01137{font-size:34.496000pt;}
.fsc_c01137{font-size:34.848000pt;}
.fs1e_c01137{font-size:43.472176pt;}
.fs5_c01137{font-size:48.153776pt;}
.fs1d_c01137{font-size:49.280000pt;}
.fs7_c01137{font-size:51.392176pt;}
.fs13_c01137{font-size:51.955376pt;}
.fs12_c01137{font-size:53.222576pt;}
.fs1f_c01137{font-size:54.489776pt;}
.fs9_c01137{font-size:56.496000pt;}
.fs17_c01137{font-size:57.200000pt;}
.fsb_c01137{font-size:58.291376pt;}
.fs3_c01137{font-size:58.784176pt;}
.fse_c01137{font-size:59.136000pt;}
.fsf_c01137{font-size:61.952176pt;}
.fs11_c01137{font-size:63.360000pt;}
.fs15_c01137{font-size:64.768000pt;}
.fs19_c01137{font-size:66.528000pt;}
.fs1a_c01137{font-size:67.936000pt;}
.fs2_c01137{font-size:69.520000pt;}
.fsd_c01137{font-size:70.400000pt;}
.fs4_c01137{font-size:71.456000pt;}
.fs18_c01137{font-size:72.336000pt;}
.fs1b_c01137{font-size:72.512176pt;}
.fs1_c01137{font-size:76.032176pt;}
.fs10_c01137{font-size:88.000000pt;}
.fs1c_c01137{font-size:96.448000pt;}
.y0_c01137{bottom:0.000000pt;}
.y1_c01137{bottom:68.000000pt;}
.y23_c01137{bottom:83.873720pt;}
.y24_c01137{bottom:91.793720pt;}
.y22_c01137{bottom:97.812920pt;}
.y21_c01137{bottom:104.148920pt;}
.y2_c01137{bottom:122.206520pt;}
.y20_c01137{bottom:141.214520pt;}
.y1f_c01137{bottom:170.989320pt;}
.y1e_c01137{bottom:199.822520pt;}
.y1d_c01137{bottom:256.846520pt;}
.y1c_c01137{bottom:285.992120pt;}
.y1b_c01137{bottom:330.977720pt;}
.y1a_c01137{bottom:340.477320pt;}
.y15_c01137{bottom:341.744520pt;}
.y16_c01137{bottom:343.645320pt;}
.y19_c01137{bottom:349.664520pt;}
.y18_c01137{bottom:361.073720pt;}
.y17_c01137{bottom:370.577720pt;}
.y14_c01137{bottom:371.211320pt;}
.y13_c01137{bottom:427.918520pt;}
.y12_c01137{bottom:456.113720pt;}
.y25_c01137{bottom:473.850120pt;}
.y11_c01137{bottom:513.137720pt;}
.y10_c01137{bottom:541.649720pt;}
.yf_c01137{bottom:573.329720pt;}
.ye_c01137{bottom:598.356920pt;}
.yc_c01137{bottom:628.131720pt;}
.yd_c01137{bottom:632.250120pt;}
.yb_c01137{bottom:656.331320pt;}
.ya_c01137{bottom:684.838920pt;}
.y9_c01137{bottom:712.717320pt;}
.y8_c01137{bottom:740.916920pt;}
.y7_c01137{bottom:765.622920pt;}
.y6_c01137{bottom:769.424520pt;}
.y5_c01137{bottom:798.257720pt;}
.y4_c01137{bottom:826.448520pt;}
.y3_c01137{bottom:969.325320pt;}
.h8_c01137{height:10.364063pt;}
.hc_c01137{height:10.642500pt;}
.hb_c01137{height:15.786375pt;}
.h1a_c01137{height:17.723176pt;}
.h18_c01137{height:20.559000pt;}
.h25_c01137{height:29.364844pt;}
.h7_c01137{height:32.070415pt;}
.he_c01137{height:32.123438pt;}
.h10_c01137{height:34.201406pt;}
.h17_c01137{height:34.602280pt;}
.h16_c01137{height:35.446236pt;}
.h2_c01137{height:35.978250pt;}
.h23_c01137{height:36.290191pt;}
.hf_c01137{height:38.822056pt;}
.h22_c01137{height:45.340121pt;}
.ha_c01137{height:50.438610pt;}
.h21_c01137{height:51.397500pt;}
.h9_c01137{height:51.793677pt;}
.h12_c01137{height:58.038750pt;}
.hd_c01137{height:58.923563pt;}
.h1b_c01137{height:59.657812pt;}
.h13_c01137{height:60.802673pt;}
.h5_c01137{height:61.310059pt;}
.h15_c01137{height:62.184375pt;}
.h19_c01137{height:63.566250pt;}
.h1d_c01137{height:65.293594pt;}
.h1e_c01137{height:66.675469pt;}
.h4_c01137{height:68.196133pt;}
.h24_c01137{height:69.059375pt;}
.h11_c01137{height:69.093750pt;}
.h6_c01137{height:70.130156pt;}
.h1c_c01137{height:70.993828pt;}
.h1f_c01137{height:71.166735pt;}
.h3_c01137{height:74.621423pt;}
.h14_c01137{height:86.367188pt;}
.h20_c01137{height:94.658438pt;}
.h1_c01137{height:986.666667pt;}
.h0_c01137{height:1122.666667pt;}
.w1_c01137{width:689.333333pt;}
.w0_c01137{width:793.333333pt;}
.x0_c01137{left:0.000000pt;}
.x2_c01137{left:41.035853pt;}
.x1_c01137{left:52.000000pt;}
.x6a_c01137{left:81.291453pt;}
.x4b_c01137{left:82.246253pt;}
.x57_c01137{left:101.258653pt;}
.x47_c01137{left:129.559453pt;}
.x4_c01137{left:130.795853pt;}
.x69_c01137{left:148.514653pt;}
.x6b_c01137{left:158.806253pt;}
.xc_c01137{left:159.761053pt;}
.x4c_c01137{left:162.141453pt;}
.x50_c01137{left:168.393853pt;}
.x11_c01137{left:169.427853pt;}
.x42_c01137{left:171.064653pt;}
.x5_c01137{left:190.121053pt;}
.x1d_c01137{left:192.461853pt;}
.x6c_c01137{left:198.762653pt;}
.x2b_c01137{left:199.704253pt;}
.x1e_c01137{left:203.686253pt;}
.x58_c01137{left:208.579053pt;}
.x3e_c01137{left:209.828653pt;}
.x6_c01137{left:211.452253pt;}
.x35_c01137{left:219.667053pt;}
.x1f_c01137{left:221.950653pt;}
.x75_c01137{left:227.771853pt;}
.x2c_c01137{left:229.100653pt;}
.x7_c01137{left:230.103853pt;}
.x6d_c01137{left:237.473853pt;}
.xd_c01137{left:238.824653pt;}
.x20_c01137{left:246.291453pt;}
.x51_c01137{left:248.258253pt;}
.x36_c01137{left:249.749853pt;}
.x2d_c01137{left:259.350653pt;}
.x21_c01137{left:262.197453pt;}
.x5b_c01137{left:267.653453pt;}
.x12_c01137{left:269.378253pt;}
.x76_c01137{left:277.491853pt;}
.x43_c01137{left:279.111053pt;}
.x4d_c01137{left:288.214653pt;}
.x48_c01137{left:297.727453pt;}
.x44_c01137{left:299.491853pt;}
.x6e_c01137{left:306.562653pt;}
.x13_c01137{left:308.657053pt;}
.x61_c01137{left:316.929053pt;}
.x37_c01137{left:320.620653pt;}
.x3f_c01137{left:327.647453pt;}
.x52_c01137{left:330.063053pt;}
.x38_c01137{left:337.648653pt;}
.x22_c01137{left:343.122253pt;}
.x2e_c01137{left:347.975453pt;}
.x49_c01137{left:349.493453pt;}
.x53_c01137{left:356.001053pt;}
.x5d_c01137{left:357.400253pt;}
.x8_c01137{left:358.729053pt;}
.x71_c01137{left:367.221053pt;}
.x2f_c01137{left:377.508253pt;}
.x23_c01137{left:386.009053pt;}
.x5e_c01137{left:386.937453pt;}
.x14_c01137{left:387.892253pt;}
.x62_c01137{left:395.266653pt;}
.xe_c01137{left:397.136653pt;}
.x54_c01137{left:405.109453pt;}
.x5f_c01137{left:416.505453pt;}
.x4e_c01137{left:417.658253pt;}
.x5c_c01137{left:425.230653pt;}
.x15_c01137{left:426.282253pt;}
.x24_c01137{left:434.039453pt;}
.x72_c01137{left:435.412253pt;}
.x55_c01137{left:437.880653pt;}
.x9_c01137{left:446.381453pt;}
.x16_c01137{left:447.367053pt;}
.x25_c01137{left:449.413053pt;}
.x6f_c01137{left:455.661053pt;}
.x17_c01137{left:456.932653pt;}
.x26_c01137{left:459.581453pt;}
.x40_c01137{left:465.521453pt;}
.x59_c01137{left:466.634653pt;}
.x63_c01137{left:471.949853pt;}
.x30_c01137{left:475.157453pt;}
.x18_c01137{left:476.107853pt;}
.x27_c01137{left:480.155853pt;}
.x64_c01137{left:483.746253pt;}
.x39_c01137{left:485.277453pt;}
.x31_c01137{left:494.385453pt;}
.xa_c01137{left:495.934253pt;}
.x4f_c01137{left:505.152253pt;}
.x3a_c01137{left:506.718653pt;}
.x56_c01137{left:514.845453pt;}
.x19_c01137{left:515.743053pt;}
.x28_c01137{left:519.509453pt;}
.xb_c01137{left:525.365853pt;}
.x45_c01137{left:526.905853pt;}
.x29_c01137{left:528.063053pt;}
.xf_c01137{left:533.382653pt;}
.x3b_c01137{left:535.085453pt;}
.x46_c01137{left:536.775053pt;}
.x2a_c01137{left:539.089453pt;}
.x65_c01137{left:553.354253pt;}
.x41_c01137{left:554.595053pt;}
.x66_c01137{left:562.391853pt;}
.x73_c01137{left:563.298253pt;}
.x32_c01137{left:564.345453pt;}
.x70_c01137{left:571.768253pt;}
.x5a_c01137{left:574.157453pt;}
.x1a_c01137{left:584.933053pt;}
.x67_c01137{left:592.465853pt;}
.x33_c01137{left:593.433853pt;}
.x10_c01137{left:603.298653pt;}
.x68_c01137{left:611.971053pt;}
.x1b_c01137{left:612.961053pt;}
.x3c_c01137{left:614.391053pt;}
.x77_c01137{left:618.263053pt;}
.x4a_c01137{left:621.092253pt;}
.x34_c01137{left:622.786253pt;}
.x3_c01137{left:624.167853pt;}
.x60_c01137{left:626.477853pt;}
.x3d_c01137{left:632.717053pt;}
.x1c_c01137{left:633.720253pt;}
.x74_c01137{left:641.961453pt;}
.x78_c01137{left:684.518253pt;}
}





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

.ir_c01138:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01138{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01138;src:url('chunks/assets/font_f8d75653ba3d6e1e809c088c.woff2')format("woff");}.ff1_c01138{font-family:ff1_c01138;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01138;src:url('chunks/assets/font_a28088978c68fb05efc709d9.woff2')format("woff");}.ff2_c01138{font-family:ff2_c01138;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01138;src:url('chunks/assets/font_5621b9bf7878fdd9ab1fd568.woff2')format("woff");}.ff3_c01138{font-family:ff3_c01138;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m8a_c01138{transform:matrix(0.021740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021740,0.000000,0.000000,0.250000,0,0);}
.m7b_c01138{transform:matrix(0.031916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.031916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.031916,0.000000,0.000000,0.250000,0,0);}
.m30_c01138{transform:matrix(0.068182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.068182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.068182,0.000000,0.000000,0.250000,0,0);}
.m2f_c01138{transform:matrix(0.071023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071023,0.000000,0.000000,0.250000,0,0);}
.m93_c01138{transform:matrix(0.075582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075582,0.000000,0.000000,0.250000,0,0);}
.maa_c01138{transform:matrix(0.079269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.079269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.079269,0.000000,0.000000,0.250000,0,0);}
.m7a_c01138{transform:matrix(0.098405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098405,0.000000,0.000000,0.250000,0,0);}
.m77_c01138{transform:matrix(0.109893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109893,0.000000,0.000000,0.250000,0,0);}
.m89_c01138{transform:matrix(0.111413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111413,0.000000,0.000000,0.250000,0,0);}
.m71_c01138{transform:matrix(0.113914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113914,0.000000,0.000000,0.250000,0,0);}
.m8d_c01138{transform:matrix(0.115942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115942,0.000000,0.000000,0.250000,0,0);}
.m31_c01138{transform:matrix(0.122870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122870,0.000000,0.000000,0.250000,0,0);}
.m76_c01138{transform:matrix(0.127660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127660,0.000000,0.000000,0.250000,0,0);}
.m47_c01138{transform:matrix(0.142045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142045,0.000000,0.000000,0.250000,0,0);}
.m7c_c01138{transform:matrix(0.146277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146277,0.000000,0.000000,0.250000,0,0);}
.m8b_c01138{transform:matrix(0.152429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152429,0.000000,0.000000,0.250000,0,0);}
.m74_c01138{transform:matrix(0.154411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154411,0.000000,0.000000,0.250000,0,0);}
.m91_c01138{transform:matrix(0.159884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159884,0.000000,0.000000,0.250000,0,0);}
.m13_c01138{transform:matrix(0.160715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160715,0.000000,0.000000,0.250000,0,0);}
.m70_c01138{transform:matrix(0.167937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167937,0.000000,0.000000,0.250000,0,0);}
.m38_c01138{transform:matrix(0.169047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169047,0.000000,0.000000,0.250000,0,0);}
.m97_c01138{transform:matrix(0.170543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170543,0.000000,0.000000,0.250000,0,0);}
.m75_c01138{transform:matrix(0.170667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170667,0.000000,0.000000,0.250000,0,0);}
.m8f_c01138{transform:matrix(0.173256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173256,0.000000,0.000000,0.250000,0,0);}
.m92_c01138{transform:matrix(0.177326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177326,0.000000,0.000000,0.250000,0,0);}
.m90_c01138{transform:matrix(0.180233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180233,0.000000,0.000000,0.250000,0,0);}
.m21_c01138{transform:matrix(0.184334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184334,0.000000,0.000000,0.250000,0,0);}
.m6c_c01138{transform:matrix(0.185185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185185,0.000000,0.000000,0.250000,0,0);}
.mb_c01138{transform:matrix(0.185976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185976,0.000000,0.000000,0.250000,0,0);}
.ma9_c01138{transform:matrix(0.186586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186586,0.000000,0.000000,0.250000,0,0);}
.m25_c01138{transform:matrix(0.188008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188008,0.000000,0.000000,0.250000,0,0);}
.m39_c01138{transform:matrix(0.190741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190741,0.000000,0.000000,0.250000,0,0);}
.ma6_c01138{transform:matrix(0.192188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192188,0.000000,0.000000,0.250000,0,0);}
.m58_c01138{transform:matrix(0.202554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202554,0.000000,0.000000,0.250000,0,0);}
.ma8_c01138{transform:matrix(0.206707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206707,0.000000,0.000000,0.250000,0,0);}
.m8c_c01138{transform:matrix(0.208925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208925,0.000000,0.000000,0.250000,0,0);}
.ma_c01138{transform:matrix(0.209092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209092,0.000000,0.000000,0.250000,0,0);}
.m62_c01138{transform:matrix(0.211111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211111,0.000000,0.000000,0.250000,0,0);}
.m57_c01138{transform:matrix(0.211206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211206,0.000000,0.000000,0.250000,0,0);}
.m44_c01138{transform:matrix(0.223109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223109,0.000000,0.000000,0.250000,0,0);}
.m11_c01138{transform:matrix(0.227946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227946,0.000000,0.000000,0.250000,0,0);}
.m10_c01138{transform:matrix(0.230871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230871,0.000000,0.000000,0.250000,0,0);}
.m95_c01138{transform:matrix(0.234349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234349,0.000000,0.000000,0.250000,0,0);}
.m73_c01138{transform:matrix(0.236609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236609,0.000000,0.000000,0.250000,0,0);}
.m27_c01138{transform:matrix(0.242175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242175,0.000000,0.000000,0.250000,0,0);}
.m1_c01138{transform:matrix(0.244129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244129,0.000000,0.000000,0.250000,0,0);}
.m15_c01138{transform:matrix(0.247428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247428,0.000000,0.000000,0.250000,0,0);}
.m79_c01138{transform:matrix(0.247704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247704,0.000000,0.000000,0.250000,0,0);}
.m40_c01138{transform:matrix(0.248505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248505,0.000000,0.000000,0.250000,0,0);}
.m2_c01138{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m80_c01138{transform:matrix(0.251640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251640,0.000000,0.000000,0.250000,0,0);}
.m67_c01138{transform:matrix(0.252313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252313,0.000000,0.000000,0.250000,0,0);}
.m78_c01138{transform:matrix(0.252940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252940,0.000000,0.000000,0.250000,0,0);}
.mad_c01138{transform:matrix(0.253186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253186,0.000000,0.000000,0.250000,0,0);}
.m61_c01138{transform:matrix(0.253232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253232,0.000000,0.000000,0.250000,0,0);}
.m17_c01138{transform:matrix(0.254533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254533,0.000000,0.000000,0.250000,0,0);}
.m5f_c01138{transform:matrix(0.255569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255569,0.000000,0.000000,0.250000,0,0);}
.m4c_c01138{transform:matrix(0.255595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255595,0.000000,0.000000,0.250000,0,0);}
.m41_c01138{transform:matrix(0.256199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256199,0.000000,0.000000,0.250000,0,0);}
.m8_c01138{transform:matrix(0.256819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256819,0.000000,0.000000,0.250000,0,0);}
.m85_c01138{transform:matrix(0.257224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257224,0.000000,0.000000,0.250000,0,0);}
.m5e_c01138{transform:matrix(0.257331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257331,0.000000,0.000000,0.250000,0,0);}
.m36_c01138{transform:matrix(0.258868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258868,0.000000,0.000000,0.250000,0,0);}
.m82_c01138{transform:matrix(0.259656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259656,0.000000,0.000000,0.250000,0,0);}
.m63_c01138{transform:matrix(0.260280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260280,0.000000,0.000000,0.250000,0,0);}
.m72_c01138{transform:matrix(0.260695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260695,0.000000,0.000000,0.250000,0,0);}
.m5b_c01138{transform:matrix(0.261325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261325,0.000000,0.000000,0.250000,0,0);}
.m86_c01138{transform:matrix(0.262220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262220,0.000000,0.000000,0.250000,0,0);}
.m3e_c01138{transform:matrix(0.262577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262577,0.000000,0.000000,0.250000,0,0);}
.m94_c01138{transform:matrix(0.263009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263009,0.000000,0.000000,0.250000,0,0);}
.m35_c01138{transform:matrix(0.263813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263813,0.000000,0.000000,0.250000,0,0);}
.m2b_c01138{transform:matrix(0.264149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264149,0.000000,0.000000,0.250000,0,0);}
.m1e_c01138{transform:matrix(0.264211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264211,0.000000,0.000000,0.250000,0,0);}
.m4d_c01138{transform:matrix(0.264294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264294,0.000000,0.000000,0.250000,0,0);}
.m28_c01138{transform:matrix(0.265172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265172,0.000000,0.000000,0.250000,0,0);}
.m64_c01138{transform:matrix(0.266162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266162,0.000000,0.000000,0.250000,0,0);}
.m37_c01138{transform:matrix(0.266245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266245,0.000000,0.000000,0.250000,0,0);}
.m48_c01138{transform:matrix(0.266496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266496,0.000000,0.000000,0.250000,0,0);}
.m6b_c01138{transform:matrix(0.266860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266860,0.000000,0.000000,0.250000,0,0);}
.m6_c01138{transform:matrix(0.266892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266892,0.000000,0.000000,0.250000,0,0);}
.m33_c01138{transform:matrix(0.266980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266980,0.000000,0.000000,0.250000,0,0);}
.maf_c01138{transform:matrix(0.267320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267320,0.000000,0.000000,0.250000,0,0);}
.m49_c01138{transform:matrix(0.267758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267758,0.000000,0.000000,0.250000,0,0);}
.m22_c01138{transform:matrix(0.268701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268701,0.000000,0.000000,0.250000,0,0);}
.ma4_c01138{transform:matrix(0.269794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269794,0.000000,0.000000,0.250000,0,0);}
.m4a_c01138{transform:matrix(0.270067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270067,0.000000,0.000000,0.250000,0,0);}
.m60_c01138{transform:matrix(0.271102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271102,0.000000,0.000000,0.250000,0,0);}
.m6f_c01138{transform:matrix(0.272126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272126,0.000000,0.000000,0.250000,0,0);}
.m19_c01138{transform:matrix(0.272276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272276,0.000000,0.000000,0.250000,0,0);}
.m99_c01138{transform:matrix(0.272622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272622,0.000000,0.000000,0.250000,0,0);}
.m4b_c01138{transform:matrix(0.272864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272864,0.000000,0.000000,0.250000,0,0);}
.m20_c01138{transform:matrix(0.272901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272901,0.000000,0.000000,0.250000,0,0);}
.m2d_c01138{transform:matrix(0.272947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272947,0.000000,0.000000,0.250000,0,0);}
.m3b_c01138{transform:matrix(0.272973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272973,0.000000,0.000000,0.250000,0,0);}
.ma3_c01138{transform:matrix(0.273053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273053,0.000000,0.000000,0.250000,0,0);}
.m18_c01138{transform:matrix(0.273130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273130,0.000000,0.000000,0.250000,0,0);}
.m4f_c01138{transform:matrix(0.273732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273732,0.000000,0.000000,0.250000,0,0);}
.m9b_c01138{transform:matrix(0.274103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274103,0.000000,0.000000,0.250000,0,0);}
.mab_c01138{transform:matrix(0.274264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274264,0.000000,0.000000,0.250000,0,0);}
.me_c01138{transform:matrix(0.274390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274390,0.000000,0.000000,0.250000,0,0);}
.m50_c01138{transform:matrix(0.274612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274612,0.000000,0.000000,0.250000,0,0);}
.m14_c01138{transform:matrix(0.275584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275584,0.000000,0.000000,0.250000,0,0);}
.m2c_c01138{transform:matrix(0.276188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276188,0.000000,0.000000,0.250000,0,0);}
.m52_c01138{transform:matrix(0.276318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276318,0.000000,0.000000,0.250000,0,0);}
.m9d_c01138{transform:matrix(0.276331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276331,0.000000,0.000000,0.250000,0,0);}
.m3_c01138{transform:matrix(0.277664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277664,0.000000,0.000000,0.250000,0,0);}
.m6a_c01138{transform:matrix(0.278968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278968,0.000000,0.000000,0.250000,0,0);}
.m3f_c01138{transform:matrix(0.279020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279020,0.000000,0.000000,0.250000,0,0);}
.m24_c01138{transform:matrix(0.279439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279439,0.000000,0.000000,0.250000,0,0);}
.m59_c01138{transform:matrix(0.279654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279654,0.000000,0.000000,0.250000,0,0);}
.m51_c01138{transform:matrix(0.279693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279693,0.000000,0.000000,0.250000,0,0);}
.m1d_c01138{transform:matrix(0.279802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279802,0.000000,0.000000,0.250000,0,0);}
.m68_c01138{transform:matrix(0.280078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280078,0.000000,0.000000,0.250000,0,0);}
.m1c_c01138{transform:matrix(0.280440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280440,0.000000,0.000000,0.250000,0,0);}
.m16_c01138{transform:matrix(0.280824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280824,0.000000,0.000000,0.250000,0,0);}
.m32_c01138{transform:matrix(0.281526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281526,0.000000,0.000000,0.250000,0,0);}
.m88_c01138{transform:matrix(0.281703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281703,0.000000,0.000000,0.250000,0,0);}
.m0_c01138{transform:matrix(0.281838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281838,0.000000,0.000000,0.250000,0,0);}
.m7e_c01138{transform:matrix(0.283321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283321,0.000000,0.000000,0.250000,0,0);}
.m9c_c01138{transform:matrix(0.283416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283416,0.000000,0.000000,0.250000,0,0);}
.m2e_c01138{transform:matrix(0.284907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284907,0.000000,0.000000,0.250000,0,0);}
.m56_c01138{transform:matrix(0.285595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285595,0.000000,0.000000,0.250000,0,0);}
.mac_c01138{transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);}
.mb0_c01138{transform:matrix(0.286098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286098,0.000000,0.000000,0.250000,0,0);}
.m7d_c01138{transform:matrix(0.286300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286300,0.000000,0.000000,0.250000,0,0);}
.mb2_c01138{transform:matrix(0.286802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286802,0.000000,0.000000,0.250000,0,0);}
.m81_c01138{transform:matrix(0.287207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287207,0.000000,0.000000,0.250000,0,0);}
.ma7_c01138{transform:matrix(0.287822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287822,0.000000,0.000000,0.250000,0,0);}
.m1b_c01138{transform:matrix(0.288265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288265,0.000000,0.000000,0.250000,0,0);}
.m4e_c01138{transform:matrix(0.289402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289402,0.000000,0.000000,0.250000,0,0);}
.m5c_c01138{transform:matrix(0.289986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289986,0.000000,0.000000,0.250000,0,0);}
.m1f_c01138{transform:matrix(0.290028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290028,0.000000,0.000000,0.250000,0,0);}
.m6d_c01138{transform:matrix(0.290068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290068,0.000000,0.000000,0.250000,0,0);}
.m87_c01138{transform:matrix(0.290714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290714,0.000000,0.000000,0.250000,0,0);}
.mb1_c01138{transform:matrix(0.291534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291534,0.000000,0.000000,0.250000,0,0);}
.m23_c01138{transform:matrix(0.292142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292142,0.000000,0.000000,0.250000,0,0);}
.m42_c01138{transform:matrix(0.292294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292294,0.000000,0.000000,0.250000,0,0);}
.m7_c01138{transform:matrix(0.293249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293249,0.000000,0.000000,0.250000,0,0);}
.m66_c01138{transform:matrix(0.294050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294050,0.000000,0.000000,0.250000,0,0);}
.m46_c01138{transform:matrix(0.294319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294319,0.000000,0.000000,0.250000,0,0);}
.ma1_c01138{transform:matrix(0.296850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296850,0.000000,0.000000,0.250000,0,0);}
.m53_c01138{transform:matrix(0.297379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297379,0.000000,0.000000,0.250000,0,0);}
.m3a_c01138{transform:matrix(0.297596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297596,0.000000,0.000000,0.250000,0,0);}
.m3c_c01138{transform:matrix(0.297939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297939,0.000000,0.000000,0.250000,0,0);}
.m84_c01138{transform:matrix(0.298839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298839,0.000000,0.000000,0.250000,0,0);}
.m5a_c01138{transform:matrix(0.298915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298915,0.000000,0.000000,0.250000,0,0);}
.ma2_c01138{transform:matrix(0.299259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299259,0.000000,0.000000,0.250000,0,0);}
.mc_c01138{transform:matrix(0.300335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300335,0.000000,0.000000,0.250000,0,0);}
.m98_c01138{transform:matrix(0.303392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303392,0.000000,0.000000,0.250000,0,0);}
.m43_c01138{transform:matrix(0.304768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304768,0.000000,0.000000,0.250000,0,0);}
.mb3_c01138{transform:matrix(0.306380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306380,0.000000,0.000000,0.250000,0,0);}
.m34_c01138{transform:matrix(0.306514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306514,0.000000,0.000000,0.250000,0,0);}
.m9f_c01138{transform:matrix(0.307902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307902,0.000000,0.000000,0.250000,0,0);}
.m4_c01138{transform:matrix(0.308823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308823,0.000000,0.000000,0.250000,0,0);}
.m96_c01138{transform:matrix(0.309113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309113,0.000000,0.000000,0.250000,0,0);}
.m65_c01138{transform:matrix(0.309774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309774,0.000000,0.000000,0.250000,0,0);}
.m26_c01138{transform:matrix(0.311836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311836,0.000000,0.000000,0.250000,0,0);}
.md_c01138{transform:matrix(0.312616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312616,0.000000,0.000000,0.250000,0,0);}
.m5d_c01138{transform:matrix(0.315097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315097,0.000000,0.000000,0.250000,0,0);}
.m8e_c01138{transform:matrix(0.318289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318289,0.000000,0.000000,0.250000,0,0);}
.m2a_c01138{transform:matrix(0.320472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320472,0.000000,0.000000,0.250000,0,0);}
.m55_c01138{transform:matrix(0.321435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321435,0.000000,0.000000,0.250000,0,0);}
.mae_c01138{transform:matrix(0.323031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323031,0.000000,0.000000,0.250000,0,0);}
.mf_c01138{transform:matrix(0.324714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324714,0.000000,0.000000,0.250000,0,0);}
.m9a_c01138{transform:matrix(0.330112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330112,0.000000,0.000000,0.250000,0,0);}
.m7f_c01138{transform:matrix(0.330925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330925,0.000000,0.000000,0.250000,0,0);}
.m9_c01138{transform:matrix(0.334253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334253,0.000000,0.000000,0.250000,0,0);}
.m69_c01138{transform:matrix(0.336835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336835,0.000000,0.000000,0.250000,0,0);}
.m9e_c01138{transform:matrix(0.339370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339370,0.000000,0.000000,0.250000,0,0);}
.m54_c01138{transform:matrix(0.343949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343949,0.000000,0.000000,0.250000,0,0);}
.ma5_c01138{transform:matrix(0.344360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344360,0.000000,0.000000,0.250000,0,0);}
.m83_c01138{transform:matrix(0.349741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349741,0.000000,0.000000,0.250000,0,0);}
.ma0_c01138{transform:matrix(0.353894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353894,0.000000,0.000000,0.250000,0,0);}
.m6e_c01138{transform:matrix(0.370070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370070,0.000000,0.000000,0.250000,0,0);}
.m29_c01138{transform:matrix(0.373079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373079,0.000000,0.000000,0.250000,0,0);}
.m1a_c01138{transform:matrix(0.375943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375943,0.000000,0.000000,0.250000,0,0);}
.m45_c01138{transform:matrix(0.381818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381818,0.000000,0.000000,0.250000,0,0);}
.m5_c01138{transform:matrix(0.387692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387692,0.000000,0.000000,0.250000,0,0);}
.m3d_c01138{transform:matrix(0.390602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390602,0.000000,0.000000,0.250000,0,0);}
.m12_c01138{transform:matrix(0.429286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429286,0.000000,0.000000,0.250000,0,0);}
.v2_c01138{vertical-align:-52.767000px;}
.v3_c01138{vertical-align:-21.384000px;}
.v0_c01138{vertical-align:0.000000px;}
.v1_c01138{vertical-align:12.830400px;}
.ls6_c01138{letter-spacing:-3.083850px;}
.ls14_c01138{letter-spacing:-2.813580px;}
.lsd_c01138{letter-spacing:-2.772000px;}
.ls24_c01138{letter-spacing:-2.418577px;}
.ls12_c01138{letter-spacing:-1.784614px;}
.ls2e_c01138{letter-spacing:-1.237975px;}
.ls22_c01138{letter-spacing:-1.077199px;}
.ls28_c01138{letter-spacing:-0.715453px;}
.ls10_c01138{letter-spacing:-0.391962px;}
.ls2a_c01138{letter-spacing:-0.313513px;}
.ls1d_c01138{letter-spacing:-0.233125px;}
.ls9_c01138{letter-spacing:0.000000px;}
.ls7_c01138{letter-spacing:0.192931px;}
.ls18_c01138{letter-spacing:0.241164px;}
.ls1_c01138{letter-spacing:1.109354px;}
.ls26_c01138{letter-spacing:1.330461px;}
.ls25_c01138{letter-spacing:1.607760px;}
.ls2c_c01138{letter-spacing:2.508106px;}
.ls1f_c01138{letter-spacing:2.784276px;}
.ls1a_c01138{letter-spacing:2.926876px;}
.ls11_c01138{letter-spacing:3.039795px;}
.ls13_c01138{letter-spacing:3.092661px;}
.ls20_c01138{letter-spacing:3.427479px;}
.ls15_c01138{letter-spacing:3.524400px;}
.ls1e_c01138{letter-spacing:3.682810px;}
.ls2b_c01138{letter-spacing:3.781810px;}
.ls16_c01138{letter-spacing:3.791700px;}
.lse_c01138{letter-spacing:3.960000px;}
.ls5_c01138{letter-spacing:3.969900px;}
.ls8_c01138{letter-spacing:4.019400px;}
.ls17_c01138{letter-spacing:4.068900px;}
.ls1c_c01138{letter-spacing:4.128310px;}
.ls1b_c01138{letter-spacing:4.217400px;}
.lsa_c01138{letter-spacing:4.405500px;}
.ls4_c01138{letter-spacing:5.385600px;}
.ls0_c01138{letter-spacing:10.909800px;}
.ls3_c01138{letter-spacing:14.746138px;}
.ls2_c01138{letter-spacing:16.434000px;}
.ls21_c01138{letter-spacing:51.321798px;}
.ls2d_c01138{letter-spacing:57.024198px;}
.lsc_c01138{letter-spacing:58.449798px;}
.lsf_c01138{letter-spacing:59.875398px;}
.ls29_c01138{letter-spacing:61.300998px;}
.lsb_c01138{letter-spacing:62.726400px;}
.ls19_c01138{letter-spacing:64.152198px;}
.ls27_c01138{letter-spacing:65.577798px;}
.ls23_c01138{letter-spacing:67.003200px;}
.sc__c01138{text-shadow:none;}
.sc0_c01138{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01138{-webkit-text-stroke:0px transparent;}
.sc0_c01138{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01138{word-spacing:-21.206354px;}
.ws3_c01138{word-spacing:-19.783487px;}
.ws2_c01138{word-spacing:-19.381547px;}
.ws4_c01138{word-spacing:0.000000px;}
.ws1_c01138{word-spacing:4.421340px;}
._6_c01138{margin-left:-32.169496px;}
._0_c01138{margin-left:-15.189081px;}
._5_c01138{margin-left:-11.977812px;}
._7_c01138{margin-left:-10.129680px;}
._3_c01138{margin-left:-1.286208px;}
._1_c01138{width:4.858517px;}
._8_c01138{width:7.516278px;}
._4_c01138{width:40.075051px;}
._2_c01138{width:1776.270672px;}
.fc0_c01138{color:transparent;}
.fsa_c01138{font-size:22.176000px;}
.fs6_c01138{font-size:27.720000px;}
.fs13_c01138{font-size:33.264000px;}
.fsb_c01138{font-size:44.352000px;}
.fs15_c01138{font-size:49.500000px;}
.fs19_c01138{font-size:51.321798px;}
.fs20_c01138{font-size:57.024198px;}
.fs5_c01138{font-size:57.222000px;}
.fs4_c01138{font-size:58.449798px;}
.fs8_c01138{font-size:59.875398px;}
.fs1d_c01138{font-size:61.300998px;}
.fs3_c01138{font-size:62.726400px;}
.fsf_c01138{font-size:64.152198px;}
.fs1c_c01138{font-size:65.577798px;}
.fs18_c01138{font-size:66.132198px;}
.fs1a_c01138{font-size:67.003200px;}
.fs1f_c01138{font-size:68.706198px;}
.fs1b_c01138{font-size:69.102198px;}
.fs17_c01138{font-size:70.092198px;}
.fsc_c01138{font-size:70.488000px;}
.fs16_c01138{font-size:73.656198px;}
.fs14_c01138{font-size:74.844000px;}
.fs1e_c01138{font-size:75.636198px;}
.fsd_c01138{font-size:75.834000px;}
.fs12_c01138{font-size:76.032198px;}
.fs7_c01138{font-size:79.200000px;}
.fs0_c01138{font-size:79.398000px;}
.fs9_c01138{font-size:79.992198px;}
.fs2_c01138{font-size:80.388000px;}
.fse_c01138{font-size:81.378000px;}
.fs11_c01138{font-size:82.566198px;}
.fs10_c01138{font-size:84.348000px;}
.fs1_c01138{font-size:88.110000px;}
.y0_c01138{bottom:0.000000px;}
.y1_c01138{bottom:76.500000px;}
.y22_c01138{bottom:114.316335px;}
.y21_c01138{bottom:148.174335px;}
.y20_c01138{bottom:183.452985px;}
.y1f_c01138{bottom:216.954585px;}
.y1e_c01138{bottom:248.679135px;}
.y1d_c01138{bottom:279.680985px;}
.y1c_c01138{bottom:312.118335px;}
.y1b_c01138{bottom:342.412335px;}
.y1a_c01138{bottom:376.626735px;}
.y19_c01138{bottom:409.054185px;}
.y18_c01138{bottom:440.422335px;}
.y16_c01138{bottom:473.562585px;}
.y17_c01138{bottom:478.913535px;}
.y15_c01138{bottom:505.994985px;}
.y14_c01138{bottom:523.463535px;}
.y13_c01138{bottom:530.947935px;}
.y12_c01138{bottom:537.714585px;}
.y11_c01138{bottom:569.439135px;}
.y10_c01138{bottom:601.871535px;}
.yf_c01138{bottom:633.942585px;}
.ye_c01138{bottom:666.374985px;}
.yd_c01138{bottom:698.455935px;}
.yc_c01138{bottom:730.526985px;}
.yb_c01138{bottom:762.964335px;}
.ya_c01138{bottom:819.275535px;}
.y7_c01138{bottom:825.685785px;}
.y6_c01138{bottom:826.047135px;}
.y8_c01138{bottom:826.754985px;}
.y9_c01138{bottom:827.111385px;}
.y5_c01138{bottom:873.804735px;}
.y4_c01138{bottom:891.624735px;}
.y3_c01138{bottom:923.695785px;}
.y2_c01138{bottom:1093.698585px;}
.hb_c01138{height:23.128875px;}
.h7_c01138{height:28.911094px;}
.h18_c01138{height:34.180317px;}
.h14_c01138{height:34.693313px;}
.h1f_c01138{height:37.978116px;}
.h6_c01138{height:38.927565px;}
.h9_c01138{height:39.877015px;}
.h1c_c01138{height:40.826465px;}
.h5_c01138{height:41.775782px;}
.hf_c01138{height:42.725364px;}
.h1b_c01138{height:43.674813px;}
.h19_c01138{height:44.624131px;}
.h16_c01138{height:51.626953px;}
.h1e_c01138{height:67.431376px;}
.h1a_c01138{height:67.820028px;}
.hc_c01138{height:69.180117px;}
.h17_c01138{height:72.289530px;}
.h15_c01138{height:73.455293px;}
.h1d_c01138{height:74.232792px;}
.hd_c01138{height:74.426924px;}
.h8_c01138{height:77.730469px;}
.h2_c01138{height:77.924795px;}
.ha_c01138{height:78.507968px;}
.h4_c01138{height:78.896426px;}
.h13_c01138{height:79.299207px;}
.he_c01138{height:79.868057px;}
.h11_c01138{height:81.034208px;}
.h12_c01138{height:82.603125px;}
.h10_c01138{height:82.782949px;}
.h3_c01138{height:86.475146px;}
.h1_c01138{height:1110.000000px;}
.h0_c01138{height:1263.000000px;}
.w1_c01138{width:775.500000px;}
.w0_c01138{width:892.500000px;}
.x0_c01138{left:0.000000px;}
.x1_c01138{left:58.500000px;}
.x1a_c01138{left:81.696435px;}
.x3_c01138{left:82.770585px;}
.x35_c01138{left:133.235835px;}
.x30_c01138{left:134.938635px;}
.x4_c01138{left:136.012785px;}
.x24_c01138{left:137.230485px;}
.x14_c01138{left:159.812385px;}
.x20_c01138{left:168.781785px;}
.x5_c01138{left:170.014335px;}
.x29_c01138{left:179.859885px;}
.x15_c01138{left:181.037985px;}
.x4e_c01138{left:190.972635px;}
.x16_c01138{left:202.723935px;}
.x4f_c01138{left:211.589385px;}
.x52_c01138{left:213.722835px;}
.x36_c01138{left:215.742435px;}
.x44_c01138{left:223.088235px;}
.x31_c01138{left:235.879035px;}
.x43_c01138{left:243.279285px;}
.x17_c01138{left:246.996735px;}
.x19_c01138{left:254.015835px;}
.x6a_c01138{left:257.817435px;}
.x6_c01138{left:258.871785px;}
.x2a_c01138{left:259.891485px;}
.x49_c01138{left:269.222235px;}
.x21_c01138{left:270.251835px;}
.x3e_c01138{left:279.488535px;}
.x68_c01138{left:280.943835px;}
.x50_c01138{left:291.170535px;}
.x6f_c01138{left:292.234785px;}
.x37_c01138{left:301.441785px;}
.x18_c01138{left:303.357435px;}
.x55_c01138{left:312.267435px;}
.xe_c01138{left:313.851435px;}
.x56_c01138{left:318.895485px;}
.x60_c01138{left:323.548485px;}
.x1b_c01138{left:324.830535px;}
.x57_c01138{left:333.151485px;}
.x3f_c01138{left:335.720535px;}
.x58_c01138{left:336.834285px;}
.x25_c01138{left:346.363035px;}
.x7_c01138{left:348.333135px;}
.x69_c01138{left:355.931385px;}
.x2b_c01138{left:358.643985px;}
.x70_c01138{left:367.375785px;}
.x8_c01138{left:368.939985px;}
.x6b_c01138{left:378.810285px;}
.x59_c01138{left:380.211135px;}
.x4a_c01138{left:382.517835px;}
.x1c_c01138{left:391.046685px;}
.x32_c01138{left:393.457335px;}
.x2c_c01138{left:397.729185px;}
.x38_c01138{left:401.906985px;}
.x9_c01138{left:404.218635px;}
.x4b_c01138{left:411.866385px;}
.x72_c01138{left:413.079135px;}
.x61_c01138{left:414.242385px;}
.x45_c01138{left:415.440285px;}
.xf_c01138{left:425.063085px;}
.x71_c01138{left:434.948235px;}
.xa_c01138{left:436.670835px;}
.x41_c01138{left:445.026435px;}
.x39_c01138{left:446.937135px;}
.x53_c01138{left:458.460735px;}
.x6c_c01138{left:468.053835px;}
.x2d_c01138{left:478.523085px;}
.x33_c01138{left:480.418935px;}
.x4c_c01138{left:501.590085px;}
.x3a_c01138{left:503.441385px;}
.x66_c01138{left:510.618885px;}
.x46_c01138{left:512.603835px;}
.x26_c01138{left:513.638385px;}
.xb_c01138{left:524.761035px;}
.x67_c01138{left:534.700635px;}
.x10_c01138{left:535.710435px;}
.x22_c01138{left:544.818435px;}
.x27_c01138{left:546.778635px;}
.x5a_c01138{left:554.604585px;}
.x3b_c01138{left:556.267785px;}
.xc_c01138{left:557.515185px;}
.x2e_c01138{left:567.326085px;}
.x3c_c01138{left:579.448635px;}
.x1d_c01138{left:588.660585px;}
.x11_c01138{left:590.150535px;}
.x5b_c01138{left:596.531085px;}
.x5c_c01138{left:599.134785px;}
.x62_c01138{left:600.525735px;}
.xd_c01138{left:601.594935px;}
.x63_c01138{left:610.960335px;}
.x51_c01138{left:612.732435px;}
.x47_c01138{left:622.231485px;}
.x12_c01138{left:625.340085px;}
.x64_c01138{left:630.849435px;}
.x65_c01138{left:632.240385px;}
.x42_c01138{left:633.844185px;}
.x1e_c01138{left:634.888635px;}
.x54_c01138{left:644.357985px;}
.x48_c01138{left:645.496485px;}
.x34_c01138{left:646.535985px;}
.x13_c01138{left:647.917035px;}
.x3d_c01138{left:655.510335px;}
.x28_c01138{left:666.355785px;}
.x1f_c01138{left:668.132835px;}
.x40_c01138{left:678.161535px;}
.x5d_c01138{left:686.774535px;}
.x2f_c01138{left:689.160435px;}
.x5e_c01138{left:690.333585px;}
.x5f_c01138{left:699.243585px;}
.x2_c01138{left:700.758285px;}
.x23_c01138{left:702.109635px;}
.x6d_c01138{left:720.528585px;}
.x4d_c01138{left:722.360085px;}
.x73_c01138{left:733.215435px;}
.x6e_c01138{left:734.294535px;}
@media print{
.v2_c01138{vertical-align:-46.904000pt;}
.v3_c01138{vertical-align:-19.008000pt;}
.v0_c01138{vertical-align:0.000000pt;}
.v1_c01138{vertical-align:11.404800pt;}
.ls6_c01138{letter-spacing:-2.741200pt;}
.ls14_c01138{letter-spacing:-2.500960pt;}
.lsd_c01138{letter-spacing:-2.464000pt;}
.ls24_c01138{letter-spacing:-2.149846pt;}
.ls12_c01138{letter-spacing:-1.586323pt;}
.ls2e_c01138{letter-spacing:-1.100422pt;}
.ls22_c01138{letter-spacing:-0.957510pt;}
.ls28_c01138{letter-spacing:-0.635958pt;}
.ls10_c01138{letter-spacing:-0.348410pt;}
.ls2a_c01138{letter-spacing:-0.278678pt;}
.ls1d_c01138{letter-spacing:-0.207222pt;}
.ls9_c01138{letter-spacing:0.000000pt;}
.ls7_c01138{letter-spacing:0.171494pt;}
.ls18_c01138{letter-spacing:0.214368pt;}
.ls1_c01138{letter-spacing:0.986093pt;}
.ls26_c01138{letter-spacing:1.182632pt;}
.ls25_c01138{letter-spacing:1.429120pt;}
.ls2c_c01138{letter-spacing:2.229427pt;}
.ls1f_c01138{letter-spacing:2.474912pt;}
.ls1a_c01138{letter-spacing:2.601667pt;}
.ls11_c01138{letter-spacing:2.702040pt;}
.ls13_c01138{letter-spacing:2.749032pt;}
.ls20_c01138{letter-spacing:3.046648pt;}
.ls15_c01138{letter-spacing:3.132800pt;}
.ls1e_c01138{letter-spacing:3.273609pt;}
.ls2b_c01138{letter-spacing:3.361609pt;}
.ls16_c01138{letter-spacing:3.370400pt;}
.lse_c01138{letter-spacing:3.520000pt;}
.ls5_c01138{letter-spacing:3.528800pt;}
.ls8_c01138{letter-spacing:3.572800pt;}
.ls17_c01138{letter-spacing:3.616800pt;}
.ls1c_c01138{letter-spacing:3.669609pt;}
.ls1b_c01138{letter-spacing:3.748800pt;}
.lsa_c01138{letter-spacing:3.916000pt;}
.ls4_c01138{letter-spacing:4.787200pt;}
.ls0_c01138{letter-spacing:9.697600pt;}
.ls3_c01138{letter-spacing:13.107678pt;}
.ls2_c01138{letter-spacing:14.608000pt;}
.ls21_c01138{letter-spacing:45.619376pt;}
.ls2d_c01138{letter-spacing:50.688176pt;}
.lsc_c01138{letter-spacing:51.955376pt;}
.lsf_c01138{letter-spacing:53.222576pt;}
.ls29_c01138{letter-spacing:54.489776pt;}
.lsb_c01138{letter-spacing:55.756800pt;}
.ls19_c01138{letter-spacing:57.024176pt;}
.ls27_c01138{letter-spacing:58.291376pt;}
.ls23_c01138{letter-spacing:59.558400pt;}
.ws0_c01138{word-spacing:-18.850093pt;}
.ws3_c01138{word-spacing:-17.585322pt;}
.ws2_c01138{word-spacing:-17.228042pt;}
.ws4_c01138{word-spacing:0.000000pt;}
.ws1_c01138{word-spacing:3.930080pt;}
._6_c01138{margin-left:-28.595107pt;}
._0_c01138{margin-left:-13.501405pt;}
._5_c01138{margin-left:-10.646944pt;}
._7_c01138{margin-left:-9.004160pt;}
._3_c01138{margin-left:-1.143296pt;}
._1_c01138{width:4.318682pt;}
._8_c01138{width:6.681136pt;}
._4_c01138{width:35.622268pt;}
._2_c01138{width:1578.907264pt;}
.fsa_c01138{font-size:19.712000pt;}
.fs6_c01138{font-size:24.640000pt;}
.fs13_c01138{font-size:29.568000pt;}
.fsb_c01138{font-size:39.424000pt;}
.fs15_c01138{font-size:44.000000pt;}
.fs19_c01138{font-size:45.619376pt;}
.fs20_c01138{font-size:50.688176pt;}
.fs5_c01138{font-size:50.864000pt;}
.fs4_c01138{font-size:51.955376pt;}
.fs8_c01138{font-size:53.222576pt;}
.fs1d_c01138{font-size:54.489776pt;}
.fs3_c01138{font-size:55.756800pt;}
.fsf_c01138{font-size:57.024176pt;}
.fs1c_c01138{font-size:58.291376pt;}
.fs18_c01138{font-size:58.784176pt;}
.fs1a_c01138{font-size:59.558400pt;}
.fs1f_c01138{font-size:61.072176pt;}
.fs1b_c01138{font-size:61.424176pt;}
.fs17_c01138{font-size:62.304176pt;}
.fsc_c01138{font-size:62.656000pt;}
.fs16_c01138{font-size:65.472176pt;}
.fs14_c01138{font-size:66.528000pt;}
.fs1e_c01138{font-size:67.232176pt;}
.fsd_c01138{font-size:67.408000pt;}
.fs12_c01138{font-size:67.584176pt;}
.fs7_c01138{font-size:70.400000pt;}
.fs0_c01138{font-size:70.576000pt;}
.fs9_c01138{font-size:71.104176pt;}
.fs2_c01138{font-size:71.456000pt;}
.fse_c01138{font-size:72.336000pt;}
.fs11_c01138{font-size:73.392176pt;}
.fs10_c01138{font-size:74.976000pt;}
.fs1_c01138{font-size:78.320000pt;}
.y0_c01138{bottom:0.000000pt;}
.y1_c01138{bottom:68.000000pt;}
.y22_c01138{bottom:101.614520pt;}
.y21_c01138{bottom:131.710520pt;}
.y20_c01138{bottom:163.069320pt;}
.y1f_c01138{bottom:192.848520pt;}
.y1e_c01138{bottom:221.048120pt;}
.y1d_c01138{bottom:248.605320pt;}
.y1c_c01138{bottom:277.438520pt;}
.y1b_c01138{bottom:304.366520pt;}
.y1a_c01138{bottom:334.779320pt;}
.y19_c01138{bottom:363.603720pt;}
.y18_c01138{bottom:391.486520pt;}
.y16_c01138{bottom:420.944520pt;}
.y17_c01138{bottom:425.700920pt;}
.y15_c01138{bottom:449.773320pt;}
.y14_c01138{bottom:465.300920pt;}
.y13_c01138{bottom:471.953720pt;}
.y12_c01138{bottom:477.968520pt;}
.y11_c01138{bottom:506.168120pt;}
.y10_c01138{bottom:534.996920pt;}
.yf_c01138{bottom:563.504520pt;}
.ye_c01138{bottom:592.333320pt;}
.yd_c01138{bottom:620.849720pt;}
.yc_c01138{bottom:649.357320pt;}
.yb_c01138{bottom:678.190520pt;}
.ya_c01138{bottom:728.244920pt;}
.y7_c01138{bottom:733.942920pt;}
.y6_c01138{bottom:734.264120pt;}
.y8_c01138{bottom:734.893320pt;}
.y9_c01138{bottom:735.210120pt;}
.y5_c01138{bottom:776.715320pt;}
.y4_c01138{bottom:792.555320pt;}
.y3_c01138{bottom:821.062920pt;}
.y2_c01138{bottom:972.176520pt;}
.hb_c01138{height:20.559000pt;}
.h7_c01138{height:25.698750pt;}
.h18_c01138{height:30.382504pt;}
.h14_c01138{height:30.838500pt;}
.h1f_c01138{height:33.758325pt;}
.h6_c01138{height:34.602280pt;}
.h9_c01138{height:35.446236pt;}
.h1c_c01138{height:36.290191pt;}
.h5_c01138{height:37.134029pt;}
.hf_c01138{height:37.978101pt;}
.h1b_c01138{height:38.822056pt;}
.h19_c01138{height:39.665894pt;}
.h16_c01138{height:45.890625pt;}
.h1e_c01138{height:59.939001pt;}
.h1a_c01138{height:60.284470pt;}
.hc_c01138{height:61.493438pt;}
.h17_c01138{height:64.257360pt;}
.h15_c01138{height:65.293594pt;}
.h1d_c01138{height:65.984704pt;}
.hd_c01138{height:66.157266pt;}
.h8_c01138{height:69.093750pt;}
.h2_c01138{height:69.266484pt;}
.ha_c01138{height:69.784860pt;}
.h4_c01138{height:70.130156pt;}
.h13_c01138{height:70.488184pt;}
.he_c01138{height:70.993828pt;}
.h11_c01138{height:72.030407pt;}
.h12_c01138{height:73.425000pt;}
.h10_c01138{height:73.584844pt;}
.h3_c01138{height:76.866797pt;}
.h1_c01138{height:986.666667pt;}
.h0_c01138{height:1122.666667pt;}
.w1_c01138{width:689.333333pt;}
.w0_c01138{width:793.333333pt;}
.x0_c01138{left:0.000000pt;}
.x1_c01138{left:52.000000pt;}
.x1a_c01138{left:72.619053pt;}
.x3_c01138{left:73.573853pt;}
.x35_c01138{left:118.431853pt;}
.x30_c01138{left:119.945453pt;}
.x4_c01138{left:120.900253pt;}
.x24_c01138{left:121.982653pt;}
.x14_c01138{left:142.055453pt;}
.x20_c01138{left:150.028253pt;}
.x5_c01138{left:151.123853pt;}
.x29_c01138{left:159.875453pt;}
.x15_c01138{left:160.922653pt;}
.x4e_c01138{left:169.753453pt;}
.x16_c01138{left:180.199053pt;}
.x4f_c01138{left:188.079453pt;}
.x52_c01138{left:189.975853pt;}
.x36_c01138{left:191.771053pt;}
.x44_c01138{left:198.300653pt;}
.x31_c01138{left:209.670253pt;}
.x43_c01138{left:216.248253pt;}
.x17_c01138{left:219.552653pt;}
.x19_c01138{left:225.791853pt;}
.x6a_c01138{left:229.171053pt;}
.x6_c01138{left:230.108253pt;}
.x2a_c01138{left:231.014653pt;}
.x49_c01138{left:239.308653pt;}
.x21_c01138{left:240.223853pt;}
.x3e_c01138{left:248.434253pt;}
.x68_c01138{left:249.727853pt;}
.x50_c01138{left:258.818253pt;}
.x6f_c01138{left:259.764253pt;}
.x37_c01138{left:267.948253pt;}
.x18_c01138{left:269.651053pt;}
.x55_c01138{left:277.571053pt;}
.xe_c01138{left:278.979053pt;}
.x56_c01138{left:283.462653pt;}
.x60_c01138{left:287.598653pt;}
.x1b_c01138{left:288.738253pt;}
.x57_c01138{left:296.134653pt;}
.x3f_c01138{left:298.418253pt;}
.x58_c01138{left:299.408253pt;}
.x25_c01138{left:307.878253pt;}
.x7_c01138{left:309.629453pt;}
.x69_c01138{left:316.383453pt;}
.x2b_c01138{left:318.794653pt;}
.x70_c01138{left:326.556253pt;}
.x8_c01138{left:327.946653pt;}
.x6b_c01138{left:336.720253pt;}
.x59_c01138{left:337.965453pt;}
.x4a_c01138{left:340.015853pt;}
.x1c_c01138{left:347.597053pt;}
.x32_c01138{left:349.739853pt;}
.x2c_c01138{left:353.537053pt;}
.x38_c01138{left:357.250653pt;}
.x9_c01138{left:359.305453pt;}
.x4b_c01138{left:366.103453pt;}
.x72_c01138{left:367.181453pt;}
.x61_c01138{left:368.215453pt;}
.x45_c01138{left:369.280253pt;}
.xf_c01138{left:377.833853pt;}
.x71_c01138{left:386.620653pt;}
.xa_c01138{left:388.151853pt;}
.x41_c01138{left:395.579053pt;}
.x39_c01138{left:397.277453pt;}
.x53_c01138{left:407.520653pt;}
.x6c_c01138{left:416.047853pt;}
.x2d_c01138{left:425.353853pt;}
.x33_c01138{left:427.039053pt;}
.x4c_c01138{left:445.857853pt;}
.x3a_c01138{left:447.503453pt;}
.x66_c01138{left:453.883453pt;}
.x46_c01138{left:455.647853pt;}
.x26_c01138{left:456.567453pt;}
.xb_c01138{left:466.454253pt;}
.x67_c01138{left:475.289453pt;}
.x10_c01138{left:476.187053pt;}
.x22_c01138{left:484.283053pt;}
.x27_c01138{left:486.025453pt;}
.x5a_c01138{left:492.981853pt;}
.x3b_c01138{left:494.460253pt;}
.xc_c01138{left:495.569053pt;}
.x2e_c01138{left:504.289853pt;}
.x3c_c01138{left:515.065453pt;}
.x1d_c01138{left:523.253853pt;}
.x11_c01138{left:524.578253pt;}
.x5b_c01138{left:530.249853pt;}
.x5c_c01138{left:532.564253pt;}
.x62_c01138{left:533.800653pt;}
.xd_c01138{left:534.751053pt;}
.x63_c01138{left:543.075853pt;}
.x51_c01138{left:544.651053pt;}
.x47_c01138{left:553.094653pt;}
.x12_c01138{left:555.857853pt;}
.x64_c01138{left:560.755053pt;}
.x65_c01138{left:561.991453pt;}
.x42_c01138{left:563.417053pt;}
.x1e_c01138{left:564.345453pt;}
.x54_c01138{left:572.762653pt;}
.x48_c01138{left:573.774653pt;}
.x34_c01138{left:574.698653pt;}
.x13_c01138{left:575.926253pt;}
.x3d_c01138{left:582.675853pt;}
.x28_c01138{left:592.316253pt;}
.x1f_c01138{left:593.895853pt;}
.x40_c01138{left:602.810253pt;}
.x5d_c01138{left:610.466253pt;}
.x2f_c01138{left:612.587053pt;}
.x5e_c01138{left:613.629853pt;}
.x5f_c01138{left:621.549853pt;}
.x2_c01138{left:622.896253pt;}
.x23_c01138{left:624.097453pt;}
.x6d_c01138{left:640.469853pt;}
.x4d_c01138{left:642.097853pt;}
.x73_c01138{left:651.747053pt;}
.x6e_c01138{left:652.706253pt;}
}





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

.ir_c01139:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01139{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01139;src:url('chunks/assets/font_012378f800d80b5908fbf252.woff2')format("woff");}.ff1_c01139{font-family:ff1_c01139;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01139;src:url('chunks/assets/font_1633bf51ac5c1e6cf8e07840.woff2')format("woff");}.ff2_c01139{font-family:ff2_c01139;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01139;src:url('chunks/assets/font_b4fd4cad97898e46c98db64a.woff2')format("woff");}.ff3_c01139{font-family:ff3_c01139;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01139;src:url('chunks/assets/font_7f15953fa8010f18c45c7ddc.woff2')format("woff");}.ff4_c01139{font-family:ff4_c01139;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01139;src:url('chunks/assets/font_9c2a39d9c48436b93e9b1c4f.woff2')format("woff");}.ff5_c01139{font-family:ff5_c01139;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mf_c01139{transform:matrix(0.034884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.034884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.034884,0.000000,0.000000,0.250000,0,0);}
.m24_c01139{transform:matrix(0.046512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.046512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.046512,0.000000,0.000000,0.250000,0,0);}
.m7a_c01139{transform:matrix(0.073170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073170,0.000000,0.000000,0.250000,0,0);}
.mc_c01139{transform:matrix(0.081395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081395,0.000000,0.000000,0.250000,0,0);}
.me_c01139{transform:matrix(0.082849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.082849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.082849,0.000000,0.000000,0.250000,0,0);}
.m38_c01139{transform:matrix(0.088117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088117,0.000000,0.000000,0.250000,0,0);}
.m6f_c01139{transform:matrix(0.091407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091407,0.000000,0.000000,0.250000,0,0);}
.m21_c01139{transform:matrix(0.095930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095930,0.000000,0.000000,0.250000,0,0);}
.m27_c01139{transform:matrix(0.110465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110465,0.000000,0.000000,0.250000,0,0);}
.m7b_c01139{transform:matrix(0.110627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110627,0.000000,0.000000,0.250000,0,0);}
.m26_c01139{transform:matrix(0.111919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111919,0.000000,0.000000,0.250000,0,0);}
.m79_c01139{transform:matrix(0.128049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128049,0.000000,0.000000,0.250000,0,0);}
.m10_c01139{transform:matrix(0.133721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133721,0.000000,0.000000,0.250000,0,0);}
.m25_c01139{transform:matrix(0.142442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142442,0.000000,0.000000,0.250000,0,0);}
.mb1_c01139{transform:matrix(0.144841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144841,0.000000,0.000000,0.250000,0,0);}
.m4b_c01139{transform:matrix(0.147286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147286,0.000000,0.000000,0.250000,0,0);}
.ma8_c01139{transform:matrix(0.147412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147412,0.000000,0.000000,0.250000,0,0);}
.m22_c01139{transform:matrix(0.154069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154069,0.000000,0.000000,0.250000,0,0);}
.m23_c01139{transform:matrix(0.159884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159884,0.000000,0.000000,0.250000,0,0);}
.m17_c01139{transform:matrix(0.160402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160402,0.000000,0.000000,0.250000,0,0);}
.m94_c01139{transform:matrix(0.163581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163581,0.000000,0.000000,0.250000,0,0);}
.m3e_c01139{transform:matrix(0.165277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165277,0.000000,0.000000,0.250000,0,0);}
.m8d_c01139{transform:matrix(0.167087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167087,0.000000,0.000000,0.250000,0,0);}
.md_c01139{transform:matrix(0.174418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174418,0.000000,0.000000,0.250000,0,0);}
.m20_c01139{transform:matrix(0.175872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175872,0.000000,0.000000,0.250000,0,0);}
.m48_c01139{transform:matrix(0.181202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181202,0.000000,0.000000,0.250000,0,0);}
.m46_c01139{transform:matrix(0.183965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183965,0.000000,0.000000,0.250000,0,0);}
.m6e_c01139{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01139{transform:matrix(0.203290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203290,0.000000,0.000000,0.250000,0,0);}
.m32_c01139{transform:matrix(0.217835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217835,0.000000,0.000000,0.250000,0,0);}
.m45_c01139{transform:matrix(0.232494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232494,0.000000,0.000000,0.250000,0,0);}
.m41_c01139{transform:matrix(0.236207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236207,0.000000,0.000000,0.250000,0,0);}
.mae_c01139{transform:matrix(0.242032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242032,0.000000,0.000000,0.250000,0,0);}
.m11_c01139{transform:matrix(0.247365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247365,0.000000,0.000000,0.250000,0,0);}
.mb_c01139{transform:matrix(0.249454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249454,0.000000,0.000000,0.250000,0,0);}
.m1_c01139{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m96_c01139{transform:matrix(0.250053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250053,0.000000,0.000000,0.250000,0,0);}
.m8f_c01139{transform:matrix(0.252333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252333,0.000000,0.000000,0.250000,0,0);}
.m1d_c01139{transform:matrix(0.252485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252485,0.000000,0.000000,0.250000,0,0);}
.m5d_c01139{transform:matrix(0.253071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253071,0.000000,0.000000,0.250000,0,0);}
.m6d_c01139{transform:matrix(0.254671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254671,0.000000,0.000000,0.250000,0,0);}
.m0_c01139{transform:matrix(0.261374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261374,0.000000,0.000000,0.250000,0,0);}
.m7d_c01139{transform:matrix(0.262463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262463,0.000000,0.000000,0.250000,0,0);}
.m19_c01139{transform:matrix(0.262863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262863,0.000000,0.000000,0.250000,0,0);}
.m44_c01139{transform:matrix(0.264030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264030,0.000000,0.000000,0.250000,0,0);}
.m40_c01139{transform:matrix(0.264471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264471,0.000000,0.000000,0.250000,0,0);}
.m64_c01139{transform:matrix(0.265103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265103,0.000000,0.000000,0.250000,0,0);}
.m66_c01139{transform:matrix(0.265393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265393,0.000000,0.000000,0.250000,0,0);}
.mb5_c01139{transform:matrix(0.266277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266277,0.000000,0.000000,0.250000,0,0);}
.m97_c01139{transform:matrix(0.266452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266452,0.000000,0.000000,0.250000,0,0);}
.m1f_c01139{transform:matrix(0.266551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266551,0.000000,0.000000,0.250000,0,0);}
.m30_c01139{transform:matrix(0.267194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267194,0.000000,0.000000,0.250000,0,0);}
.m4d_c01139{transform:matrix(0.268100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268100,0.000000,0.000000,0.250000,0,0);}
.m1e_c01139{transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);}
.m13_c01139{transform:matrix(0.268672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268672,0.000000,0.000000,0.250000,0,0);}
.m18_c01139{transform:matrix(0.270579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270579,0.000000,0.000000,0.250000,0,0);}
.m4c_c01139{transform:matrix(0.270893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270893,0.000000,0.000000,0.250000,0,0);}
.m89_c01139{transform:matrix(0.271330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271330,0.000000,0.000000,0.250000,0,0);}
.m4_c01139{transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);}
.ma9_c01139{transform:matrix(0.273903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273903,0.000000,0.000000,0.250000,0,0);}
.mad_c01139{transform:matrix(0.274600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274600,0.000000,0.000000,0.250000,0,0);}
.ma0_c01139{transform:matrix(0.274610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274610,0.000000,0.000000,0.250000,0,0);}
.m74_c01139{transform:matrix(0.274799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274799,0.000000,0.000000,0.250000,0,0);}
.m6_c01139{transform:matrix(0.275760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275760,0.000000,0.000000,0.250000,0,0);}
.m65_c01139{transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);}
.m9f_c01139{transform:matrix(0.276672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276672,0.000000,0.000000,0.250000,0,0);}
.ma_c01139{transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);}
.m68_c01139{transform:matrix(0.279746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279746,0.000000,0.000000,0.250000,0,0);}
.m2c_c01139{transform:matrix(0.280175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280175,0.000000,0.000000,0.250000,0,0);}
.m16_c01139{transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);}
.m29_c01139{transform:matrix(0.281355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281355,0.000000,0.000000,0.250000,0,0);}
.m1b_c01139{transform:matrix(0.282096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282096,0.000000,0.000000,0.250000,0,0);}
.m77_c01139{transform:matrix(0.282742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282742,0.000000,0.000000,0.250000,0,0);}
.m72_c01139{transform:matrix(0.283296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283296,0.000000,0.000000,0.250000,0,0);}
.m8b_c01139{transform:matrix(0.283406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283406,0.000000,0.000000,0.250000,0,0);}
.m99_c01139{transform:matrix(0.283533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283533,0.000000,0.000000,0.250000,0,0);}
.mb7_c01139{transform:matrix(0.283900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283900,0.000000,0.000000,0.250000,0,0);}
.mb3_c01139{transform:matrix(0.284088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284088,0.000000,0.000000,0.250000,0,0);}
.m4a_c01139{transform:matrix(0.284090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284090,0.000000,0.000000,0.250000,0,0);}
.m53_c01139{transform:matrix(0.284181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284181,0.000000,0.000000,0.250000,0,0);}
.m70_c01139{transform:matrix(0.284229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284229,0.000000,0.000000,0.250000,0,0);}
.m9b_c01139{transform:matrix(0.284709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284709,0.000000,0.000000,0.250000,0,0);}
.m50_c01139{transform:matrix(0.284895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284895,0.000000,0.000000,0.250000,0,0);}
.m9d_c01139{transform:matrix(0.285286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285286,0.000000,0.000000,0.250000,0,0);}
.m63_c01139{transform:matrix(0.285652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285652,0.000000,0.000000,0.250000,0,0);}
.m98_c01139{transform:matrix(0.285915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285915,0.000000,0.000000,0.250000,0,0);}
.m49_c01139{transform:matrix(0.286936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286936,0.000000,0.000000,0.250000,0,0);}
.m28_c01139{transform:matrix(0.287181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287181,0.000000,0.000000,0.250000,0,0);}
.m4f_c01139{transform:matrix(0.289285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289285,0.000000,0.000000,0.250000,0,0);}
.m37_c01139{transform:matrix(0.289451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289451,0.000000,0.000000,0.250000,0,0);}
.m5a_c01139{transform:matrix(0.289480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289480,0.000000,0.000000,0.250000,0,0);}
.m5_c01139{transform:matrix(0.289506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289506,0.000000,0.000000,0.250000,0,0);}
.ma4_c01139{transform:matrix(0.289896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289896,0.000000,0.000000,0.250000,0,0);}
.mb6_c01139{transform:matrix(0.290067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290067,0.000000,0.000000,0.250000,0,0);}
.m60_c01139{transform:matrix(0.290101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290101,0.000000,0.000000,0.250000,0,0);}
.m42_c01139{transform:matrix(0.290167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290167,0.000000,0.000000,0.250000,0,0);}
.mb2_c01139{transform:matrix(0.290328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290328,0.000000,0.000000,0.250000,0,0);}
.m5b_c01139{transform:matrix(0.290484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290484,0.000000,0.000000,0.250000,0,0);}
.m15_c01139{transform:matrix(0.290714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290714,0.000000,0.000000,0.250000,0,0);}
.m69_c01139{transform:matrix(0.291045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291045,0.000000,0.000000,0.250000,0,0);}
.m35_c01139{transform:matrix(0.291751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291751,0.000000,0.000000,0.250000,0,0);}
.m81_c01139{transform:matrix(0.292814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292814,0.000000,0.000000,0.250000,0,0);}
.m1a_c01139{transform:matrix(0.292893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292893,0.000000,0.000000,0.250000,0,0);}
.m73_c01139{transform:matrix(0.292897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292897,0.000000,0.000000,0.250000,0,0);}
.m92_c01139{transform:matrix(0.293938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293938,0.000000,0.000000,0.250000,0,0);}
.m88_c01139{transform:matrix(0.293987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293987,0.000000,0.000000,0.250000,0,0);}
.m8e_c01139{transform:matrix(0.294070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294070,0.000000,0.000000,0.250000,0,0);}
.m80_c01139{transform:matrix(0.294762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294762,0.000000,0.000000,0.250000,0,0);}
.m75_c01139{transform:matrix(0.296995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296995,0.000000,0.000000,0.250000,0,0);}
.m7e_c01139{transform:matrix(0.297381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297381,0.000000,0.000000,0.250000,0,0);}
.m5c_c01139{transform:matrix(0.297812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297812,0.000000,0.000000,0.250000,0,0);}
.m5f_c01139{transform:matrix(0.297840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297840,0.000000,0.000000,0.250000,0,0);}
.m7f_c01139{transform:matrix(0.298516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298516,0.000000,0.000000,0.250000,0,0);}
.m83_c01139{transform:matrix(0.299880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299880,0.000000,0.000000,0.250000,0,0);}
.ma5_c01139{transform:matrix(0.300021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300021,0.000000,0.000000,0.250000,0,0);}
.m6b_c01139{transform:matrix(0.300084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300084,0.000000,0.000000,0.250000,0,0);}
.m5e_c01139{transform:matrix(0.300580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300580,0.000000,0.000000,0.250000,0,0);}
.mab_c01139{transform:matrix(0.300722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300722,0.000000,0.000000,0.250000,0,0);}
.m3d_c01139{transform:matrix(0.301104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301104,0.000000,0.000000,0.250000,0,0);}
.m34_c01139{transform:matrix(0.301222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301222,0.000000,0.000000,0.250000,0,0);}
.mac_c01139{transform:matrix(0.302180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302180,0.000000,0.000000,0.250000,0,0);}
.m9e_c01139{transform:matrix(0.302298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302298,0.000000,0.000000,0.250000,0,0);}
.m36_c01139{transform:matrix(0.303222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303222,0.000000,0.000000,0.250000,0,0);}
.m43_c01139{transform:matrix(0.303741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303741,0.000000,0.000000,0.250000,0,0);}
.maa_c01139{transform:matrix(0.305233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305233,0.000000,0.000000,0.250000,0,0);}
.m1c_c01139{transform:matrix(0.307593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307593,0.000000,0.000000,0.250000,0,0);}
.ma3_c01139{transform:matrix(0.307864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307864,0.000000,0.000000,0.250000,0,0);}
.m90_c01139{transform:matrix(0.308146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308146,0.000000,0.000000,0.250000,0,0);}
.m62_c01139{transform:matrix(0.308201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308201,0.000000,0.000000,0.250000,0,0);}
.m12_c01139{transform:matrix(0.308412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308412,0.000000,0.000000,0.250000,0,0);}
.m87_c01139{transform:matrix(0.309175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309175,0.000000,0.000000,0.250000,0,0);}
.m56_c01139{transform:matrix(0.309310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309310,0.000000,0.000000,0.250000,0,0);}
.m7_c01139{transform:matrix(0.309548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309548,0.000000,0.000000,0.250000,0,0);}
.ma6_c01139{transform:matrix(0.309805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309805,0.000000,0.000000,0.250000,0,0);}
.m93_c01139{transform:matrix(0.310209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310209,0.000000,0.000000,0.250000,0,0);}
.m54_c01139{transform:matrix(0.310895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310895,0.000000,0.000000,0.250000,0,0);}
.mb8_c01139{transform:matrix(0.310902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310902,0.000000,0.000000,0.250000,0,0);}
.m39_c01139{transform:matrix(0.311367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311367,0.000000,0.000000,0.250000,0,0);}
.m31_c01139{transform:matrix(0.312065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312065,0.000000,0.000000,0.250000,0,0);}
.m2f_c01139{transform:matrix(0.312523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312523,0.000000,0.000000,0.250000,0,0);}
.m78_c01139{transform:matrix(0.313136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313136,0.000000,0.000000,0.250000,0,0);}
.m71_c01139{transform:matrix(0.313234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313234,0.000000,0.000000,0.250000,0,0);}
.m6c_c01139{transform:matrix(0.313595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313595,0.000000,0.000000,0.250000,0,0);}
.m51_c01139{transform:matrix(0.314603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314603,0.000000,0.000000,0.250000,0,0);}
.m95_c01139{transform:matrix(0.315312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315312,0.000000,0.000000,0.250000,0,0);}
.ma2_c01139{transform:matrix(0.315587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315587,0.000000,0.000000,0.250000,0,0);}
.m2e_c01139{transform:matrix(0.316292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316292,0.000000,0.000000,0.250000,0,0);}
.m91_c01139{transform:matrix(0.316670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316670,0.000000,0.000000,0.250000,0,0);}
.m52_c01139{transform:matrix(0.318222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318222,0.000000,0.000000,0.250000,0,0);}
.m82_c01139{transform:matrix(0.319030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319030,0.000000,0.000000,0.250000,0,0);}
.m8a_c01139{transform:matrix(0.319203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319203,0.000000,0.000000,0.250000,0,0);}
.m8c_c01139{transform:matrix(0.320183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320183,0.000000,0.000000,0.250000,0,0);}
.m9a_c01139{transform:matrix(0.320356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320356,0.000000,0.000000,0.250000,0,0);}
.m3_c01139{transform:matrix(0.320716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320716,0.000000,0.000000,0.250000,0,0);}
.m84_c01139{transform:matrix(0.321027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321027,0.000000,0.000000,0.250000,0,0);}
.m7c_c01139{transform:matrix(0.321480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321480,0.000000,0.000000,0.250000,0,0);}
.m85_c01139{transform:matrix(0.324205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324205,0.000000,0.000000,0.250000,0,0);}
.m55_c01139{transform:matrix(0.324223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324223,0.000000,0.000000,0.250000,0,0);}
.m2d_c01139{transform:matrix(0.324783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324783,0.000000,0.000000,0.250000,0,0);}
.m9_c01139{transform:matrix(0.325172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325172,0.000000,0.000000,0.250000,0,0);}
.maf_c01139{transform:matrix(0.325629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325629,0.000000,0.000000,0.250000,0,0);}
.mb4_c01139{transform:matrix(0.326483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326483,0.000000,0.000000,0.250000,0,0);}
.m33_c01139{transform:matrix(0.326501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326501,0.000000,0.000000,0.250000,0,0);}
.ma7_c01139{transform:matrix(0.329105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329105,0.000000,0.000000,0.250000,0,0);}
.m4e_c01139{transform:matrix(0.330522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330522,0.000000,0.000000,0.250000,0,0);}
.m2a_c01139{transform:matrix(0.331731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331731,0.000000,0.000000,0.250000,0,0);}
.m3a_c01139{transform:matrix(0.332798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332798,0.000000,0.000000,0.250000,0,0);}
.m57_c01139{transform:matrix(0.333185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333185,0.000000,0.000000,0.250000,0,0);}
.m86_c01139{transform:matrix(0.336096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336096,0.000000,0.000000,0.250000,0,0);}
.m2_c01139{transform:matrix(0.336500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336500,0.000000,0.000000,0.250000,0,0);}
.m14_c01139{transform:matrix(0.336546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336546,0.000000,0.000000,0.250000,0,0);}
.m61_c01139{transform:matrix(0.338724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338724,0.000000,0.000000,0.250000,0,0);}
.m3b_c01139{transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);}
.m8_c01139{transform:matrix(0.346597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346597,0.000000,0.000000,0.250000,0,0);}
.m3f_c01139{transform:matrix(0.352244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352244,0.000000,0.000000,0.250000,0,0);}
.m58_c01139{transform:matrix(0.355232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355232,0.000000,0.000000,0.250000,0,0);}
.m59_c01139{transform:matrix(0.355252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355252,0.000000,0.000000,0.250000,0,0);}
.ma1_c01139{transform:matrix(0.355860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355860,0.000000,0.000000,0.250000,0,0);}
.m9c_c01139{transform:matrix(0.358726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358726,0.000000,0.000000,0.250000,0,0);}
.m67_c01139{transform:matrix(0.377877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377877,0.000000,0.000000,0.250000,0,0);}
.mb0_c01139{transform:matrix(0.379741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379741,0.000000,0.000000,0.250000,0,0);}
.m47_c01139{transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);}
.m76_c01139{transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);}
.m6a_c01139{transform:matrix(0.405805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405805,0.000000,0.000000,0.250000,0,0);}
.m3c_c01139{transform:matrix(0.412048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412048,0.000000,0.000000,0.250000,0,0);}
.v0_c01139{vertical-align:0.000000px;}
.ls14_c01139{letter-spacing:-3.631327px;}
.ls22_c01139{letter-spacing:-2.695777px;}
.lsf_c01139{letter-spacing:-2.647267px;}
.ls13_c01139{letter-spacing:-2.529450px;}
.ls20_c01139{letter-spacing:-2.300767px;}
.ls21_c01139{letter-spacing:-2.284213px;}
.ls6_c01139{letter-spacing:-2.127517px;}
.ls19_c01139{letter-spacing:-1.853087px;}
.ls8_c01139{letter-spacing:-1.593900px;}
.ls1b_c01139{letter-spacing:-1.503817px;}
.ls1d_c01139{letter-spacing:-1.058907px;}
.ls10_c01139{letter-spacing:-0.302545px;}
.ls3_c01139{letter-spacing:0.000000px;}
.ls16_c01139{letter-spacing:0.370617px;}
.ls1_c01139{letter-spacing:0.493497px;}
.ls15_c01139{letter-spacing:0.607862px;}
.ls1e_c01139{letter-spacing:0.872586px;}
.ls5_c01139{letter-spacing:1.565669px;}
.ls0_c01139{letter-spacing:2.011923px;}
.ls17_c01139{letter-spacing:2.374977px;}
.ls9_c01139{letter-spacing:2.574000px;}
.ls1c_c01139{letter-spacing:2.980138px;}
.ls1f_c01139{letter-spacing:3.286810px;}
.lsc_c01139{letter-spacing:3.316500px;}
.ls23_c01139{letter-spacing:3.524400px;}
.lse_c01139{letter-spacing:3.643200px;}
.ls4_c01139{letter-spacing:3.781810px;}
.lsa_c01139{letter-spacing:3.861000px;}
.ls24_c01139{letter-spacing:3.880810px;}
.ls12_c01139{letter-spacing:4.098610px;}
.ls2_c01139{letter-spacing:4.306500px;}
.lsd_c01139{letter-spacing:54.172998px;}
.ls18_c01139{letter-spacing:57.024198px;}
.ls1a_c01139{letter-spacing:58.449798px;}
.ls7_c01139{letter-spacing:61.300998px;}
.lsb_c01139{letter-spacing:62.726400px;}
.ls11_c01139{letter-spacing:64.152198px;}
.sc__c01139{text-shadow:none;}
.sc0_c01139{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01139{-webkit-text-stroke:0px transparent;}
.sc0_c01139{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01139{word-spacing:-20.920972px;}
.ws1_c01139{word-spacing:-18.909050px;}
.ws2_c01139{word-spacing:-18.606505px;}
.ws3_c01139{word-spacing:-17.850143px;}
.ws4_c01139{word-spacing:0.000000px;}
._2_c01139{margin-left:-15.733129px;}
._4_c01139{margin-left:-10.347480px;}
._3_c01139{margin-left:-2.949489px;}
._0_c01139{width:4.160112px;}
._5_c01139{width:11.647856px;}
._1_c01139{width:17.320754px;}
._6_c01139{width:85.728585px;}
.fc0_c01139{color:transparent;}
.fs20_c01139{font-size:22.572000px;}
.fs1f_c01139{font-size:33.660000px;}
.fs1e_c01139{font-size:34.650000px;}
.fs9_c01139{font-size:37.818000px;}
.fs2_c01139{font-size:39.204000px;}
.fs17_c01139{font-size:42.966198px;}
.fs18_c01139{font-size:43.758000px;}
.fs7_c01139{font-size:45.540000px;}
.fs8_c01139{font-size:51.480000px;}
.fsd_c01139{font-size:54.172998px;}
.fs15_c01139{font-size:57.024198px;}
.fs16_c01139{font-size:58.449798px;}
.fs14_c01139{font-size:60.390000px;}
.fs5_c01139{font-size:60.786198px;}
.fs6_c01139{font-size:61.300998px;}
.fsb_c01139{font-size:62.726400px;}
.fs10_c01139{font-size:64.152198px;}
.fs1a_c01139{font-size:65.736198px;}
.fsc_c01139{font-size:66.330000px;}
.fs1_c01139{font-size:66.528000px;}
.fs1c_c01139{font-size:70.488000px;}
.fs12_c01139{font-size:72.270000px;}
.fse_c01139{font-size:72.864000px;}
.fs19_c01139{font-size:73.656198px;}
.fs4_c01139{font-size:74.844000px;}
.fs3_c01139{font-size:75.636198px;}
.fs1b_c01139{font-size:77.022198px;}
.fsa_c01139{font-size:77.220000px;}
.fs1d_c01139{font-size:77.616198px;}
.fsf_c01139{font-size:78.012198px;}
.fs11_c01139{font-size:81.972198px;}
.fs0_c01139{font-size:86.130000px;}
.fs13_c01139{font-size:103.752198px;}
.y0_c01139{bottom:0.000000px;}
.y20_c01139{bottom:45.882585px;}
.y1_c01139{bottom:76.500000px;}
.y1f_c01139{bottom:86.512185px;}
.y1e_c01139{bottom:97.560585px;}
.y1d_c01139{bottom:123.226335px;}
.y1c_c01139{bottom:155.653785px;}
.y1b_c01139{bottom:188.091135px;}
.y1a_c01139{bottom:221.592735px;}
.y19_c01139{bottom:254.025135px;}
.y18_c01139{bottom:345.263535px;}
.y17_c01139{bottom:382.329135px;}
.y16_c01139{bottom:414.043785px;}
.y15_c01139{bottom:446.832585px;}
.y14_c01139{bottom:478.552185px;}
.y13_c01139{bottom:510.628185px;}
.y12_c01139{bottom:543.416985px;}
.y11_c01139{bottom:574.780185px;}
.y10_c01139{bottom:605.786985px;}
.yf_c01139{bottom:638.219385px;}
.ye_c01139{bottom:669.938985px;}
.yd_c01139{bottom:733.378185px;}
.yc_c01139{bottom:765.810585px;}
.yb_c01139{bottom:778.645935px;}
.ya_c01139{bottom:798.247935px;}
.y9_c01139{bottom:829.254735px;}
.y8_c01139{bottom:862.399935px;}
.y7_c01139{bottom:891.624735px;}
.y6_c01139{bottom:894.832335px;}
.y5_c01139{bottom:927.621135px;}
.y4_c01139{bottom:1040.951385px;}
.y3_c01139{bottom:1075.165785px;}
.y2_c01139{bottom:1086.926985px;}
.h21_c01139{height:23.541891px;}
.h20_c01139{height:33.035449px;}
.hf_c01139{height:36.079217px;}
.h1f_c01139{height:36.138867px;}
.h17_c01139{height:37.978116px;}
.h4_c01139{height:38.476582px;}
.h18_c01139{height:38.927565px;}
.hb_c01139{height:39.442992px;}
.h8_c01139{height:40.826465px;}
.hd_c01139{height:41.775782px;}
.h19_c01139{height:42.168974px;}
.h12_c01139{height:42.725364px;}
.h9_c01139{height:44.695020px;}
.h1a_c01139{height:45.638227px;}
.ha_c01139{height:53.692031px;}
.h16_c01139{height:62.984883px;}
.h7_c01139{height:63.398105px;}
.h1c_c01139{height:64.516483px;}
.he_c01139{height:69.180117px;}
.h3_c01139{height:69.386625px;}
.h10_c01139{height:71.512031px;}
.h6_c01139{height:73.455293px;}
.h5_c01139{height:74.232792px;}
.h14_c01139{height:75.375352px;}
.hc_c01139{height:75.787207px;}
.h1e_c01139{height:76.176054px;}
.h1b_c01139{height:76.821113px;}
.h1d_c01139{height:80.331746px;}
.h13_c01139{height:80.411204px;}
.h11_c01139{height:81.364285px;}
.h2_c01139{height:84.531885px;}
.h15_c01139{height:108.210300px;}
.h1_c01139{height:1110.000000px;}
.h0_c01139{height:1263.000000px;}
.w1_c01139{width:775.500000px;}
.w0_c01139{width:892.500000px;}
.x0_c01139{left:0.000000px;}
.x1_c01139{left:58.500000px;}
.x6e_c01139{left:89.215485px;}
.x44_c01139{left:90.304485px;}
.x72_c01139{left:142.180485px;}
.x23_c01139{left:143.927835px;}
.x38_c01139{left:144.972285px;}
.x6_c01139{left:145.991985px;}
.x67_c01139{left:165.801885px;}
.x5e_c01139{left:168.341235px;}
.x61_c01139{left:176.350335px;}
.x45_c01139{left:177.924435px;}
.x24_c01139{left:179.057985px;}
.x68_c01139{left:199.239135px;}
.x58_c01139{left:200.402385px;}
.x4b_c01139{left:201.476535px;}
.x25_c01139{left:212.203185px;}
.x64_c01139{left:219.841035px;}
.x51_c01139{left:221.271585px;}
.x1d_c01139{left:223.929735px;}
.x59_c01139{left:232.013085px;}
.x3e_c01139{left:243.412935px;}
.x78_c01139{left:253.892085px;}
.x7_c01139{left:256.208685px;}
.xe_c01139{left:266.123535px;}
.x2f_c01139{left:268.514385px;}
.x5f_c01139{left:275.365185px;}
.x5a_c01139{left:276.879885px;}
.x8_c01139{left:278.191635px;}
.x80_c01139{left:287.269935px;}
.x30_c01139{left:290.244885px;}
.x6a_c01139{left:298.164885px;}
.x3f_c01139{left:299.917185px;}
.x39_c01139{left:301.689285px;}
.x26_c01139{left:305.421585px;}
.xf_c01139{left:312.341685px;}
.x4c_c01139{left:313.915785px;}
.x27_c01139{left:317.182785px;}
.x46_c01139{left:320.999235px;}
.x28_c01139{left:324.667185px;}
.x73_c01139{left:331.750635px;}
.x54_c01139{left:333.082185px;}
.x31_c01139{left:334.676085px;}
.x81_c01139{left:342.917835px;}
.x10_c01139{left:345.679935px;}
.x40_c01139{left:355.461135px;}
.x9_c01139{left:356.896635px;}
.x5b_c01139{left:365.247285px;}
.x11_c01139{left:368.504385px;}
.x7e_c01139{left:376.369935px;}
.x12_c01139{left:378.127185px;}
.x29_c01139{left:386.685735px;}
.x69_c01139{left:388.393485px;}
.xa_c01139{left:390.165585px;}
.x1e_c01139{left:398.753835px;}
.x2a_c01139{left:405.569985px;}
.x55_c01139{left:409.396335px;}
.x13_c01139{left:410.564535px;}
.x32_c01139{left:411.747585px;}
.x14_c01139{left:413.767185px;}
.x15_c01139{left:420.494235px;}
.x6b_c01139{left:422.993985px;}
.x16_c01139{left:425.290785px;}
.x41_c01139{left:431.908935px;}
.x47_c01139{left:432.968235px;}
.x2b_c01139{left:434.086935px;}
.x82_c01139{left:441.110985px;}
.x74_c01139{left:443.625585px;}
.x17_c01139{left:445.353135px;}
.x6f_c01139{left:452.862285px;}
.x56_c01139{left:455.619435px;}
.x33_c01139{left:456.629235px;}
.x62_c01139{left:476.582685px;}
.x48_c01139{left:479.349735px;}
.x1f_c01139{left:480.522885px;}
.x79_c01139{left:486.853935px;}
.x57_c01139{left:488.507235px;}
.xb_c01139{left:489.705135px;}
.x3a_c01139{left:491.452485px;}
.x5c_c01139{left:499.095285px;}
.x52_c01139{left:500.887185px;}
.x3b_c01139{left:502.852335px;}
.x83_c01139{left:507.990435px;}
.x3c_c01139{left:511.895985px;}
.x84_c01139{left:519.568485px;}
.x53_c01139{left:521.518785px;}
.x18_c01139{left:522.731535px;}
.x7a_c01139{left:531.398985px;}
.x65_c01139{left:532.928535px;}
.x4d_c01139{left:534.062085px;}
.x60_c01139{left:541.967235px;}
.x34_c01139{left:544.724385px;}
.x20_c01139{left:547.110285px;}
.x75_c01139{left:552.045435px;}
.x4e_c01139{left:566.256885px;}
.xc_c01139{left:567.474585px;}
.x49_c01139{left:575.909385px;}
.x35_c01139{left:577.211235px;}
.x2c_c01139{left:579.904035px;}
.x85_c01139{left:586.225185px;}
.x42_c01139{left:588.111135px;}
.x70_c01139{left:597.337935px;}
.x2d_c01139{left:598.689285px;}
.x7f_c01139{left:607.564635px;}
.x3d_c01139{left:609.034785px;}
.x21_c01139{left:612.143385px;}
.x19_c01139{left:613.682835px;}
.x5d_c01139{left:620.251485px;}
.x36_c01139{left:622.370085px;}
.x6c_c01139{left:630.839535px;}
.x1a_c01139{left:631.869135px;}
.x43_c01139{left:633.453135px;}
.x76_c01139{left:640.883085px;}
.x4a_c01139{left:644.145135px;}
.x66_c01139{left:652.154235px;}
.x4f_c01139{left:653.545185px;}
.x87_c01139{left:654.559935px;}
.x2e_c01139{left:666.202335px;}
.x77_c01139{left:674.780685px;}
.x50_c01139{left:677.775435px;}
.x37_c01139{left:685.834035px;}
.x22_c01139{left:687.076485px;}
.x1b_c01139{left:690.021735px;}
.x86_c01139{left:695.085585px;}
.x6d_c01139{left:698.001135px;}
.xd_c01139{left:699.010935px;}
.x63_c01139{left:702.099735px;}
.x7b_c01139{left:705.054885px;}
.x4_c01139{left:706.822035px;}
.x71_c01139{left:709.014885px;}
.x5_c01139{left:710.846385px;}
.x2_c01139{left:714.652935px;}
.x7c_c01139{left:717.415035px;}
.x1c_c01139{left:720.682035px;}
.x7d_c01139{left:739.150485px;}
.x3_c01139{left:748.545585px;}
@media print{
.v0_c01139{vertical-align:0.000000pt;}
.ls14_c01139{letter-spacing:-3.227846pt;}
.ls22_c01139{letter-spacing:-2.396246pt;}
.lsf_c01139{letter-spacing:-2.353126pt;}
.ls13_c01139{letter-spacing:-2.248400pt;}
.ls20_c01139{letter-spacing:-2.045126pt;}
.ls21_c01139{letter-spacing:-2.030412pt;}
.ls6_c01139{letter-spacing:-1.891126pt;}
.ls19_c01139{letter-spacing:-1.647188pt;}
.ls8_c01139{letter-spacing:-1.416800pt;}
.ls1b_c01139{letter-spacing:-1.336726pt;}
.ls1d_c01139{letter-spacing:-0.941250pt;}
.ls10_c01139{letter-spacing:-0.268929pt;}
.ls3_c01139{letter-spacing:0.000000pt;}
.ls16_c01139{letter-spacing:0.329438pt;}
.ls1_c01139{letter-spacing:0.438664pt;}
.ls15_c01139{letter-spacing:0.540322pt;}
.ls1e_c01139{letter-spacing:0.775632pt;}
.ls5_c01139{letter-spacing:1.391706pt;}
.ls0_c01139{letter-spacing:1.788376pt;}
.ls17_c01139{letter-spacing:2.111090pt;}
.ls9_c01139{letter-spacing:2.288000pt;}
.ls1c_c01139{letter-spacing:2.649011pt;}
.ls1f_c01139{letter-spacing:2.921609pt;}
.lsc_c01139{letter-spacing:2.948000pt;}
.ls23_c01139{letter-spacing:3.132800pt;}
.lse_c01139{letter-spacing:3.238400pt;}
.ls4_c01139{letter-spacing:3.361609pt;}
.lsa_c01139{letter-spacing:3.432000pt;}
.ls24_c01139{letter-spacing:3.449609pt;}
.ls12_c01139{letter-spacing:3.643209pt;}
.ls2_c01139{letter-spacing:3.828000pt;}
.lsd_c01139{letter-spacing:48.153776pt;}
.ls18_c01139{letter-spacing:50.688176pt;}
.ls1a_c01139{letter-spacing:51.955376pt;}
.ls7_c01139{letter-spacing:54.489776pt;}
.lsb_c01139{letter-spacing:55.756800pt;}
.ls11_c01139{letter-spacing:57.024176pt;}
.ws0_c01139{word-spacing:-18.596420pt;}
.ws1_c01139{word-spacing:-16.808044pt;}
.ws2_c01139{word-spacing:-16.539115pt;}
.ws3_c01139{word-spacing:-15.866794pt;}
.ws4_c01139{word-spacing:0.000000pt;}
._2_c01139{margin-left:-13.985004pt;}
._4_c01139{margin-left:-9.197760pt;}
._3_c01139{margin-left:-2.621768pt;}
._0_c01139{width:3.697877pt;}
._5_c01139{width:10.353650pt;}
._1_c01139{width:15.396226pt;}
._6_c01139{width:76.203186pt;}
.fs20_c01139{font-size:20.064000pt;}
.fs1f_c01139{font-size:29.920000pt;}
.fs1e_c01139{font-size:30.800000pt;}
.fs9_c01139{font-size:33.616000pt;}
.fs2_c01139{font-size:34.848000pt;}
.fs17_c01139{font-size:38.192176pt;}
.fs18_c01139{font-size:38.896000pt;}
.fs7_c01139{font-size:40.480000pt;}
.fs8_c01139{font-size:45.760000pt;}
.fsd_c01139{font-size:48.153776pt;}
.fs15_c01139{font-size:50.688176pt;}
.fs16_c01139{font-size:51.955376pt;}
.fs14_c01139{font-size:53.680000pt;}
.fs5_c01139{font-size:54.032176pt;}
.fs6_c01139{font-size:54.489776pt;}
.fsb_c01139{font-size:55.756800pt;}
.fs10_c01139{font-size:57.024176pt;}
.fs1a_c01139{font-size:58.432176pt;}
.fsc_c01139{font-size:58.960000pt;}
.fs1_c01139{font-size:59.136000pt;}
.fs1c_c01139{font-size:62.656000pt;}
.fs12_c01139{font-size:64.240000pt;}
.fse_c01139{font-size:64.768000pt;}
.fs19_c01139{font-size:65.472176pt;}
.fs4_c01139{font-size:66.528000pt;}
.fs3_c01139{font-size:67.232176pt;}
.fs1b_c01139{font-size:68.464176pt;}
.fsa_c01139{font-size:68.640000pt;}
.fs1d_c01139{font-size:68.992176pt;}
.fsf_c01139{font-size:69.344176pt;}
.fs11_c01139{font-size:72.864176pt;}
.fs0_c01139{font-size:76.560000pt;}
.fs13_c01139{font-size:92.224176pt;}
.y0_c01139{bottom:0.000000pt;}
.y20_c01139{bottom:40.784520pt;}
.y1_c01139{bottom:68.000000pt;}
.y1f_c01139{bottom:76.899720pt;}
.y1e_c01139{bottom:86.720520pt;}
.y1d_c01139{bottom:109.534520pt;}
.y1c_c01139{bottom:138.358920pt;}
.y1b_c01139{bottom:167.192120pt;}
.y1a_c01139{bottom:196.971320pt;}
.y19_c01139{bottom:225.800120pt;}
.y18_c01139{bottom:306.900920pt;}
.y17_c01139{bottom:339.848120pt;}
.y16_c01139{bottom:368.038920pt;}
.y15_c01139{bottom:397.184520pt;}
.y14_c01139{bottom:425.379720pt;}
.y13_c01139{bottom:453.891720pt;}
.y12_c01139{bottom:483.037320pt;}
.y11_c01139{bottom:510.915720pt;}
.y10_c01139{bottom:538.477320pt;}
.yf_c01139{bottom:567.306120pt;}
.ye_c01139{bottom:595.501320pt;}
.yd_c01139{bottom:651.891720pt;}
.yc_c01139{bottom:680.720520pt;}
.yb_c01139{bottom:692.129720pt;}
.ya_c01139{bottom:709.553720pt;}
.y9_c01139{bottom:737.115320pt;}
.y8_c01139{bottom:766.577720pt;}
.y7_c01139{bottom:792.555320pt;}
.y6_c01139{bottom:795.406520pt;}
.y5_c01139{bottom:824.552120pt;}
.y4_c01139{bottom:925.290120pt;}
.y3_c01139{bottom:955.702920pt;}
.y2_c01139{bottom:966.157320pt;}
.h21_c01139{height:20.926125pt;}
.h20_c01139{height:29.364844pt;}
.hf_c01139{height:32.070415pt;}
.h1f_c01139{height:32.123438pt;}
.h17_c01139{height:33.758325pt;}
.h4_c01139{height:34.201406pt;}
.h18_c01139{height:34.602280pt;}
.hb_c01139{height:35.060438pt;}
.h8_c01139{height:36.290191pt;}
.hd_c01139{height:37.134029pt;}
.h19_c01139{height:37.483532pt;}
.h12_c01139{height:37.978101pt;}
.h9_c01139{height:39.728906pt;}
.h1a_c01139{height:40.567313pt;}
.ha_c01139{height:47.726250pt;}
.h16_c01139{height:55.986563pt;}
.h7_c01139{height:56.353871pt;}
.h1c_c01139{height:57.347985pt;}
.he_c01139{height:61.493438pt;}
.h3_c01139{height:61.677000pt;}
.h10_c01139{height:63.566250pt;}
.h6_c01139{height:65.293594pt;}
.h5_c01139{height:65.984704pt;}
.h14_c01139{height:67.000313pt;}
.hc_c01139{height:67.366406pt;}
.h1e_c01139{height:67.712048pt;}
.h1b_c01139{height:68.285434pt;}
.h1d_c01139{height:71.405996pt;}
.h13_c01139{height:71.476626pt;}
.h11_c01139{height:72.323809pt;}
.h2_c01139{height:75.139453pt;}
.h15_c01139{height:96.186934pt;}
.h1_c01139{height:986.666667pt;}
.h0_c01139{height:1122.666667pt;}
.w1_c01139{width:689.333333pt;}
.w0_c01139{width:793.333333pt;}
.x0_c01139{left:0.000000pt;}
.x1_c01139{left:52.000000pt;}
.x6e_c01139{left:79.302653pt;}
.x44_c01139{left:80.270653pt;}
.x72_c01139{left:126.382653pt;}
.x23_c01139{left:127.935853pt;}
.x38_c01139{left:128.864253pt;}
.x6_c01139{left:129.770653pt;}
.x67_c01139{left:147.379453pt;}
.x5e_c01139{left:149.636653pt;}
.x61_c01139{left:156.755853pt;}
.x45_c01139{left:158.155053pt;}
.x24_c01139{left:159.162653pt;}
.x68_c01139{left:177.101453pt;}
.x58_c01139{left:178.135453pt;}
.x4b_c01139{left:179.090253pt;}
.x25_c01139{left:188.625053pt;}
.x64_c01139{left:195.414253pt;}
.x51_c01139{left:196.685853pt;}
.x1d_c01139{left:199.048653pt;}
.x59_c01139{left:206.233853pt;}
.x3e_c01139{left:216.367053pt;}
.x78_c01139{left:225.681853pt;}
.x7_c01139{left:227.741053pt;}
.xe_c01139{left:236.554253pt;}
.x2f_c01139{left:238.679453pt;}
.x5f_c01139{left:244.769053pt;}
.x5a_c01139{left:246.115453pt;}
.x8_c01139{left:247.281453pt;}
.x80_c01139{left:255.351053pt;}
.x30_c01139{left:257.995453pt;}
.x6a_c01139{left:265.035453pt;}
.x3f_c01139{left:266.593053pt;}
.x39_c01139{left:268.168253pt;}
.x26_c01139{left:271.485853pt;}
.xf_c01139{left:277.637053pt;}
.x4c_c01139{left:279.036253pt;}
.x27_c01139{left:281.940253pt;}
.x46_c01139{left:285.332653pt;}
.x28_c01139{left:288.593053pt;}
.x73_c01139{left:294.889453pt;}
.x54_c01139{left:296.073053pt;}
.x31_c01139{left:297.489853pt;}
.x81_c01139{left:304.815853pt;}
.x10_c01139{left:307.271053pt;}
.x40_c01139{left:315.965453pt;}
.x9_c01139{left:317.241453pt;}
.x5b_c01139{left:324.664253pt;}
.x11_c01139{left:327.559453pt;}
.x7e_c01139{left:334.551053pt;}
.x12_c01139{left:336.113053pt;}
.x29_c01139{left:343.720653pt;}
.x69_c01139{left:345.238653pt;}
.xa_c01139{left:346.813853pt;}
.x1e_c01139{left:354.447853pt;}
.x2a_c01139{left:360.506653pt;}
.x55_c01139{left:363.907853pt;}
.x13_c01139{left:364.946253pt;}
.x32_c01139{left:365.997853pt;}
.x14_c01139{left:367.793053pt;}
.x15_c01139{left:373.772653pt;}
.x6b_c01139{left:375.994653pt;}
.x16_c01139{left:378.036253pt;}
.x41_c01139{left:383.919053pt;}
.x47_c01139{left:384.860653pt;}
.x2b_c01139{left:385.855053pt;}
.x82_c01139{left:392.098653pt;}
.x74_c01139{left:394.333853pt;}
.x17_c01139{left:395.869453pt;}
.x6f_c01139{left:402.544253pt;}
.x56_c01139{left:404.995053pt;}
.x33_c01139{left:405.892653pt;}
.x62_c01139{left:423.629053pt;}
.x48_c01139{left:426.088653pt;}
.x1f_c01139{left:427.131453pt;}
.x79_c01139{left:432.759053pt;}
.x57_c01139{left:434.228653pt;}
.xb_c01139{left:435.293453pt;}
.x3a_c01139{left:436.846653pt;}
.x5c_c01139{left:443.640253pt;}
.x52_c01139{left:445.233053pt;}
.x3b_c01139{left:446.979853pt;}
.x83_c01139{left:451.547053pt;}
.x3c_c01139{left:455.018653pt;}
.x84_c01139{left:461.838653pt;}
.x53_c01139{left:463.572253pt;}
.x18_c01139{left:464.650253pt;}
.x7a_c01139{left:472.354653pt;}
.x65_c01139{left:473.714253pt;}
.x4d_c01139{left:474.721853pt;}
.x60_c01139{left:481.748653pt;}
.x34_c01139{left:484.199453pt;}
.x20_c01139{left:486.320253pt;}
.x75_c01139{left:490.707053pt;}
.x4e_c01139{left:503.339453pt;}
.xc_c01139{left:504.421853pt;}
.x49_c01139{left:511.919453pt;}
.x35_c01139{left:513.076653pt;}
.x2c_c01139{left:515.470253pt;}
.x85_c01139{left:521.089053pt;}
.x42_c01139{left:522.765453pt;}
.x70_c01139{left:530.967053pt;}
.x2d_c01139{left:532.168253pt;}
.x7f_c01139{left:540.057453pt;}
.x3d_c01139{left:541.364253pt;}
.x21_c01139{left:544.127453pt;}
.x19_c01139{left:545.495853pt;}
.x5d_c01139{left:551.334653pt;}
.x36_c01139{left:553.217853pt;}
.x6c_c01139{left:560.746253pt;}
.x1a_c01139{left:561.661453pt;}
.x43_c01139{left:563.069453pt;}
.x76_c01139{left:569.673853pt;}
.x4a_c01139{left:572.573453pt;}
.x66_c01139{left:579.692653pt;}
.x4f_c01139{left:580.929053pt;}
.x87_c01139{left:581.831053pt;}
.x2e_c01139{left:592.179853pt;}
.x77_c01139{left:599.805053pt;}
.x50_c01139{left:602.467053pt;}
.x37_c01139{left:609.630253pt;}
.x22_c01139{left:610.734653pt;}
.x1b_c01139{left:613.352653pt;}
.x86_c01139{left:617.853853pt;}
.x6d_c01139{left:620.445453pt;}
.xd_c01139{left:621.343053pt;}
.x63_c01139{left:624.088653pt;}
.x7b_c01139{left:626.715453pt;}
.x4_c01139{left:628.286253pt;}
.x71_c01139{left:630.235453pt;}
.x5_c01139{left:631.863453pt;}
.x2_c01139{left:635.247053pt;}
.x7c_c01139{left:637.702253pt;}
.x1c_c01139{left:640.606253pt;}
.x7d_c01139{left:657.022653pt;}
.x3_c01139{left:665.373853pt;}
}





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

.ir_c01140:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01140{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01140;src:url('chunks/assets/font_f45fce8b7c059c3bfb0b86df.woff2')format("woff");}.ff1_c01140{font-family:ff1_c01140;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01140;src:url('chunks/assets/font_08e5ec847e296a2dbd402252.woff2')format("woff");}.ff2_c01140{font-family:ff2_c01140;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01140;src:url('chunks/assets/font_edb341b0ed9b70fe947ca598.woff2')format("woff");}.ff3_c01140{font-family:ff3_c01140;line-height:0.666000;font-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_c01140{transform:matrix(0.043479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043479,0.000000,0.000000,0.250000,0,0);}
.m74_c01140{transform:matrix(0.054348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054348,0.000000,0.000000,0.250000,0,0);}
.m35_c01140{transform:matrix(0.066856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066856,0.000000,0.000000,0.250000,0,0);}
.m73_c01140{transform:matrix(0.097827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097827,0.000000,0.000000,0.250000,0,0);}
.m71_c01140{transform:matrix(0.100752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100752,0.000000,0.000000,0.250000,0,0);}
.m84_c01140{transform:matrix(0.142081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142081,0.000000,0.000000,0.250000,0,0);}
.m82_c01140{transform:matrix(0.147308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147308,0.000000,0.000000,0.250000,0,0);}
.m75_c01140{transform:matrix(0.148716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148716,0.000000,0.000000,0.250000,0,0);}
.m85_c01140{transform:matrix(0.156702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156702,0.000000,0.000000,0.250000,0,0);}
.m6b_c01140{transform:matrix(0.173781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173781,0.000000,0.000000,0.250000,0,0);}
.m80_c01140{transform:matrix(0.180568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180568,0.000000,0.000000,0.250000,0,0);}
.mf_c01140{transform:matrix(0.219760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219760,0.000000,0.000000,0.250000,0,0);}
.m36_c01140{transform:matrix(0.225637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225637,0.000000,0.000000,0.250000,0,0);}
.m3f_c01140{transform:matrix(0.237309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237309,0.000000,0.000000,0.250000,0,0);}
.m86_c01140{transform:matrix(0.243554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243554,0.000000,0.000000,0.250000,0,0);}
.m7c_c01140{transform:matrix(0.244696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244696,0.000000,0.000000,0.250000,0,0);}
.m1_c01140{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m81_c01140{transform:matrix(0.251393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251393,0.000000,0.000000,0.250000,0,0);}
.m45_c01140{transform:matrix(0.251525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251525,0.000000,0.000000,0.250000,0,0);}
.m70_c01140{transform:matrix(0.254119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254119,0.000000,0.000000,0.250000,0,0);}
.m6d_c01140{transform:matrix(0.255276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255276,0.000000,0.000000,0.250000,0,0);}
.m2e_c01140{transform:matrix(0.258084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258084,0.000000,0.000000,0.250000,0,0);}
.m11_c01140{transform:matrix(0.258310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258310,0.000000,0.000000,0.250000,0,0);}
.m83_c01140{transform:matrix(0.258635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258635,0.000000,0.000000,0.250000,0,0);}
.m38_c01140{transform:matrix(0.259358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259358,0.000000,0.000000,0.250000,0,0);}
.m46_c01140{transform:matrix(0.262603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262603,0.000000,0.000000,0.250000,0,0);}
.m7e_c01140{transform:matrix(0.262998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262998,0.000000,0.000000,0.250000,0,0);}
.m6c_c01140{transform:matrix(0.264007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264007,0.000000,0.000000,0.250000,0,0);}
.m2d_c01140{transform:matrix(0.264177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264177,0.000000,0.000000,0.250000,0,0);}
.m32_c01140{transform:matrix(0.264477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264477,0.000000,0.000000,0.250000,0,0);}
.me_c01140{transform:matrix(0.264910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264910,0.000000,0.000000,0.250000,0,0);}
.m5b_c01140{transform:matrix(0.265323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265323,0.000000,0.000000,0.250000,0,0);}
.m87_c01140{transform:matrix(0.267001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267001,0.000000,0.000000,0.250000,0,0);}
.m14_c01140{transform:matrix(0.267174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267174,0.000000,0.000000,0.250000,0,0);}
.m2a_c01140{transform:matrix(0.267592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267592,0.000000,0.000000,0.250000,0,0);}
.m3a_c01140{transform:matrix(0.268227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268227,0.000000,0.000000,0.250000,0,0);}
.m3_c01140{transform:matrix(0.270280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270280,0.000000,0.000000,0.250000,0,0);}
.m3c_c01140{transform:matrix(0.270359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270359,0.000000,0.000000,0.250000,0,0);}
.m7_c01140{transform:matrix(0.270539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270539,0.000000,0.000000,0.250000,0,0);}
.m6a_c01140{transform:matrix(0.270935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270935,0.000000,0.000000,0.250000,0,0);}
.m9_c01140{transform:matrix(0.271003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271003,0.000000,0.000000,0.250000,0,0);}
.m58_c01140{transform:matrix(0.271077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271077,0.000000,0.000000,0.250000,0,0);}
.m55_c01140{transform:matrix(0.273481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273481,0.000000,0.000000,0.250000,0,0);}
.m20_c01140{transform:matrix(0.273997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273997,0.000000,0.000000,0.250000,0,0);}
.m79_c01140{transform:matrix(0.275843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275843,0.000000,0.000000,0.250000,0,0);}
.m16_c01140{transform:matrix(0.276494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276494,0.000000,0.000000,0.250000,0,0);}
.m24_c01140{transform:matrix(0.276611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276611,0.000000,0.000000,0.250000,0,0);}
.m12_c01140{transform:matrix(0.276793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276793,0.000000,0.000000,0.250000,0,0);}
.m3e_c01140{transform:matrix(0.277080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277080,0.000000,0.000000,0.250000,0,0);}
.m37_c01140{transform:matrix(0.277242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277242,0.000000,0.000000,0.250000,0,0);}
.m0_c01140{transform:matrix(0.278269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278269,0.000000,0.000000,0.250000,0,0);}
.m1d_c01140{transform:matrix(0.278353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278353,0.000000,0.000000,0.250000,0,0);}
.m33_c01140{transform:matrix(0.278890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278890,0.000000,0.000000,0.250000,0,0);}
.m65_c01140{transform:matrix(0.282639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282639,0.000000,0.000000,0.250000,0,0);}
.m2c_c01140{transform:matrix(0.283782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283782,0.000000,0.000000,0.250000,0,0);}
.m5e_c01140{transform:matrix(0.284205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284205,0.000000,0.000000,0.250000,0,0);}
.m56_c01140{transform:matrix(0.284644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284644,0.000000,0.000000,0.250000,0,0);}
.m22_c01140{transform:matrix(0.284775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284775,0.000000,0.000000,0.250000,0,0);}
.ma_c01140{transform:matrix(0.288138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288138,0.000000,0.000000,0.250000,0,0);}
.m2_c01140{transform:matrix(0.288588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288588,0.000000,0.000000,0.250000,0,0);}
.m31_c01140{transform:matrix(0.289375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289375,0.000000,0.000000,0.250000,0,0);}
.m6e_c01140{transform:matrix(0.289381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289381,0.000000,0.000000,0.250000,0,0);}
.m5f_c01140{transform:matrix(0.289971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289971,0.000000,0.000000,0.250000,0,0);}
.m7a_c01140{transform:matrix(0.291071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291071,0.000000,0.000000,0.250000,0,0);}
.m68_c01140{transform:matrix(0.291424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291424,0.000000,0.000000,0.250000,0,0);}
.m27_c01140{transform:matrix(0.291685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291685,0.000000,0.000000,0.250000,0,0);}
.m23_c01140{transform:matrix(0.292039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292039,0.000000,0.000000,0.250000,0,0);}
.m69_c01140{transform:matrix(0.292098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292098,0.000000,0.000000,0.250000,0,0);}
.m51_c01140{transform:matrix(0.293510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293510,0.000000,0.000000,0.250000,0,0);}
.m78_c01140{transform:matrix(0.295724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295724,0.000000,0.000000,0.250000,0,0);}
.md_c01140{transform:matrix(0.295997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295997,0.000000,0.000000,0.250000,0,0);}
.m1b_c01140{transform:matrix(0.297050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297050,0.000000,0.000000,0.250000,0,0);}
.m3b_c01140{transform:matrix(0.297572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297572,0.000000,0.000000,0.250000,0,0);}
.m5_c01140{transform:matrix(0.297620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297620,0.000000,0.000000,0.250000,0,0);}
.m4d_c01140{transform:matrix(0.297823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297823,0.000000,0.000000,0.250000,0,0);}
.m17_c01140{transform:matrix(0.299710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299710,0.000000,0.000000,0.250000,0,0);}
.m67_c01140{transform:matrix(0.300844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300844,0.000000,0.000000,0.250000,0,0);}
.m1f_c01140{transform:matrix(0.301047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301047,0.000000,0.000000,0.250000,0,0);}
.m42_c01140{transform:matrix(0.301226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301226,0.000000,0.000000,0.250000,0,0);}
.m5a_c01140{transform:matrix(0.301286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301286,0.000000,0.000000,0.250000,0,0);}
.m62_c01140{transform:matrix(0.301331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301331,0.000000,0.000000,0.250000,0,0);}
.m61_c01140{transform:matrix(0.302261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302261,0.000000,0.000000,0.250000,0,0);}
.m47_c01140{transform:matrix(0.302313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302313,0.000000,0.000000,0.250000,0,0);}
.m4c_c01140{transform:matrix(0.302735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302735,0.000000,0.000000,0.250000,0,0);}
.m21_c01140{transform:matrix(0.303070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303070,0.000000,0.000000,0.250000,0,0);}
.m6f_c01140{transform:matrix(0.303513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303513,0.000000,0.000000,0.250000,0,0);}
.m1a_c01140{transform:matrix(0.304280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304280,0.000000,0.000000,0.250000,0,0);}
.m5d_c01140{transform:matrix(0.304308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304308,0.000000,0.000000,0.250000,0,0);}
.m43_c01140{transform:matrix(0.305159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305159,0.000000,0.000000,0.250000,0,0);}
.m13_c01140{transform:matrix(0.305417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305417,0.000000,0.000000,0.250000,0,0);}
.m1e_c01140{transform:matrix(0.305696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305696,0.000000,0.000000,0.250000,0,0);}
.m30_c01140{transform:matrix(0.306465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306465,0.000000,0.000000,0.250000,0,0);}
.m29_c01140{transform:matrix(0.306618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306618,0.000000,0.000000,0.250000,0,0);}
.m40_c01140{transform:matrix(0.307273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307273,0.000000,0.000000,0.250000,0,0);}
.m54_c01140{transform:matrix(0.307364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307364,0.000000,0.000000,0.250000,0,0);}
.m44_c01140{transform:matrix(0.307365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307365,0.000000,0.000000,0.250000,0,0);}
.m1c_c01140{transform:matrix(0.308830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308830,0.000000,0.000000,0.250000,0,0);}
.m53_c01140{transform:matrix(0.309594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309594,0.000000,0.000000,0.250000,0,0);}
.m64_c01140{transform:matrix(0.311092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311092,0.000000,0.000000,0.250000,0,0);}
.m10_c01140{transform:matrix(0.311933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311933,0.000000,0.000000,0.250000,0,0);}
.m4a_c01140{transform:matrix(0.312773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312773,0.000000,0.000000,0.250000,0,0);}
.m8_c01140{transform:matrix(0.313493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313493,0.000000,0.000000,0.250000,0,0);}
.m4b_c01140{transform:matrix(0.313792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313792,0.000000,0.000000,0.250000,0,0);}
.m7f_c01140{transform:matrix(0.314897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314897,0.000000,0.000000,0.250000,0,0);}
.mc_c01140{transform:matrix(0.314981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314981,0.000000,0.000000,0.250000,0,0);}
.m76_c01140{transform:matrix(0.316239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316239,0.000000,0.000000,0.250000,0,0);}
.m41_c01140{transform:matrix(0.317312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317312,0.000000,0.000000,0.250000,0,0);}
.m4e_c01140{transform:matrix(0.319288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319288,0.000000,0.000000,0.250000,0,0);}
.m2f_c01140{transform:matrix(0.321655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321655,0.000000,0.000000,0.250000,0,0);}
.m77_c01140{transform:matrix(0.321999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321999,0.000000,0.000000,0.250000,0,0);}
.m25_c01140{transform:matrix(0.322914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322914,0.000000,0.000000,0.250000,0,0);}
.mb_c01140{transform:matrix(0.324130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324130,0.000000,0.000000,0.250000,0,0);}
.m48_c01140{transform:matrix(0.325458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325458,0.000000,0.000000,0.250000,0,0);}
.m34_c01140{transform:matrix(0.327308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327308,0.000000,0.000000,0.250000,0,0);}
.m5c_c01140{transform:matrix(0.327567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327567,0.000000,0.000000,0.250000,0,0);}
.m2b_c01140{transform:matrix(0.327778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327778,0.000000,0.000000,0.250000,0,0);}
.m57_c01140{transform:matrix(0.328095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328095,0.000000,0.000000,0.250000,0,0);}
.m66_c01140{transform:matrix(0.328772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328772,0.000000,0.000000,0.250000,0,0);}
.m7b_c01140{transform:matrix(0.328881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328881,0.000000,0.000000,0.250000,0,0);}
.m50_c01140{transform:matrix(0.330892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330892,0.000000,0.000000,0.250000,0,0);}
.m59_c01140{transform:matrix(0.336793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336793,0.000000,0.000000,0.250000,0,0);}
.m60_c01140{transform:matrix(0.340462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340462,0.000000,0.000000,0.250000,0,0);}
.m15_c01140{transform:matrix(0.346106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346106,0.000000,0.000000,0.250000,0,0);}
.m63_c01140{transform:matrix(0.348310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348310,0.000000,0.000000,0.250000,0,0);}
.m4f_c01140{transform:matrix(0.348326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348326,0.000000,0.000000,0.250000,0,0);}
.m49_c01140{transform:matrix(0.351005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351005,0.000000,0.000000,0.250000,0,0);}
.m19_c01140{transform:matrix(0.353085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353085,0.000000,0.000000,0.250000,0,0);}
.m52_c01140{transform:matrix(0.353229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353229,0.000000,0.000000,0.250000,0,0);}
.m28_c01140{transform:matrix(0.361786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361786,0.000000,0.000000,0.250000,0,0);}
.m39_c01140{transform:matrix(0.364904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364904,0.000000,0.000000,0.250000,0,0);}
.m18_c01140{transform:matrix(0.366991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366991,0.000000,0.000000,0.250000,0,0);}
.m7d_c01140{transform:matrix(0.369043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369043,0.000000,0.000000,0.250000,0,0);}
.m26_c01140{transform:matrix(0.373079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373079,0.000000,0.000000,0.250000,0,0);}
.m4_c01140{transform:matrix(0.379146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379146,0.000000,0.000000,0.250000,0,0);}
.m6_c01140{transform:matrix(0.403791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403791,0.000000,0.000000,0.250000,0,0);}
.m3d_c01140{transform:matrix(0.411747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411747,0.000000,0.000000,0.250000,0,0);}
.v0_c01140{vertical-align:0.000000px;}
.ls20_c01140{letter-spacing:-2.806650px;}
.lsa_c01140{letter-spacing:-2.640330px;}
.ls12_c01140{letter-spacing:-2.619540px;}
.ls17_c01140{letter-spacing:-2.550240px;}
.ls1f_c01140{letter-spacing:-2.453227px;}
.ls13_c01140{letter-spacing:-1.910700px;}
.ls1d_c01140{letter-spacing:-1.249895px;}
.lsb_c01140{letter-spacing:-1.167566px;}
.ls18_c01140{letter-spacing:-0.302703px;}
.ls5_c01140{letter-spacing:0.000000px;}
.ls16_c01140{letter-spacing:0.169647px;}
.ls8_c01140{letter-spacing:0.777843px;}
.ls1_c01140{letter-spacing:1.491534px;}
.ls1a_c01140{letter-spacing:1.910700px;}
.lse_c01140{letter-spacing:2.140538px;}
.ls3_c01140{letter-spacing:2.619540px;}
.ls0_c01140{letter-spacing:2.854764px;}
.ls1b_c01140{letter-spacing:3.210808px;}
.ls10_c01140{letter-spacing:3.504610px;}
.lsd_c01140{letter-spacing:3.524400px;}
.ls2_c01140{letter-spacing:3.607481px;}
.ls14_c01140{letter-spacing:3.643200px;}
.lsc_c01140{letter-spacing:3.722400px;}
.ls6_c01140{letter-spacing:3.742200px;}
.ls19_c01140{letter-spacing:3.930310px;}
.ls4_c01140{letter-spacing:3.979810px;}
.ls9_c01140{letter-spacing:4.009500px;}
.ls15_c01140{letter-spacing:4.078810px;}
.lsf_c01140{letter-spacing:4.276810px;}
.ls7_c01140{letter-spacing:4.346110px;}
.ls1c_c01140{letter-spacing:58.449798px;}
.ls11_c01140{letter-spacing:62.726400px;}
.ls1e_c01140{letter-spacing:65.577798px;}
.sc__c01140{text-shadow:none;}
.sc0_c01140{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01140{-webkit-text-stroke:0px transparent;}
.sc0_c01140{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01140{word-spacing:0.000000px;}
._0_c01140{margin-left:-15.778620px;}
._3_c01140{margin-left:-9.573696px;}
._2_c01140{margin-left:-6.514348px;}
._1_c01140{width:8.382528px;}
._6_c01140{width:13.771296px;}
._7_c01140{width:27.318060px;}
._5_c01140{width:29.360549px;}
._4_c01140{width:79.309494px;}
.fc0_c01140{color:transparent;}
.fs12_c01140{font-size:25.146000px;}
.fsf_c01140{font-size:27.720000px;}
.fs3_c01140{font-size:33.660000px;}
.fs15_c01140{font-size:38.214000px;}
.fs19_c01140{font-size:50.292000px;}
.fs16_c01140{font-size:58.449798px;}
.fsa_c01140{font-size:62.726400px;}
.fs17_c01140{font-size:65.577798px;}
.fs9_c01140{font-size:70.092198px;}
.fs7_c01140{font-size:70.488000px;}
.fs11_c01140{font-size:72.072198px;}
.fsc_c01140{font-size:72.864000px;}
.fsd_c01140{font-size:73.656198px;}
.fs6_c01140{font-size:74.448000px;}
.fs1_c01140{font-size:74.844000px;}
.fs5_c01140{font-size:75.438000px;}
.fsb_c01140{font-size:76.428000px;}
.fs13_c01140{font-size:78.408000px;}
.fs14_c01140{font-size:78.606198px;}
.fs18_c01140{font-size:78.804000px;}
.fs0_c01140{font-size:79.596198px;}
.fs4_c01140{font-size:80.190000px;}
.fse_c01140{font-size:81.576198px;}
.fs8_c01140{font-size:85.536198px;}
.fs2_c01140{font-size:86.922198px;}
.fs10_c01140{font-size:99.792198px;}
.y0_c01140{bottom:0.000000px;}
.y1_c01140{bottom:76.500000px;}
.y21_c01140{bottom:92.933325px;}
.y20_c01140{bottom:120.369195px;}
.y1f_c01140{bottom:132.136335px;}
.y1e_c01140{bottom:154.228185px;}
.y1d_c01140{bottom:175.968585px;}
.y1c_c01140{bottom:220.167135px;}
.y1a_c01140{bottom:220.879935px;}
.y1b_c01140{bottom:228.007935px;}
.y19_c01140{bottom:253.307385px;}
.y18_c01140{bottom:285.031935px;}
.y17_c01140{bottom:350.604585px;}
.y15_c01140{bottom:382.680585px;}
.y16_c01140{bottom:387.670185px;}
.y14_c01140{bottom:414.761535px;}
.y13_c01140{bottom:446.476185px;}
.y10_c01140{bottom:446.837535px;}
.y12_c01140{bottom:453.960585px;}
.y11_c01140{bottom:465.721785px;}
.yf_c01140{bottom:479.264985px;}
.ye_c01140{bottom:511.345935px;}
.yd_c01140{bottom:574.785135px;}
.yc_c01140{bottom:607.573935px;}
.yb_c01140{bottom:638.580735px;}
.ya_c01140{bottom:669.582585px;}
.y9_c01140{bottom:703.440585px;}
.y8_c01140{bottom:735.165135px;}
.y7_c01140{bottom:767.953935px;}
.y6_c01140{bottom:800.024985px;}
.y5_c01140{bottom:863.820585px;}
.y4_c01140{bottom:878.081535px;}
.y3_c01140{bottom:928.690335px;}
.y2_c01140{bottom:1085.144985px;}
.h13_c01140{height:26.226492px;}
.h10_c01140{height:28.911094px;}
.h5_c01140{height:33.035449px;}
.h17_c01140{height:38.927565px;}
.h16_c01140{height:39.856008px;}
.hc_c01140{height:41.775782px;}
.h18_c01140{height:43.674813px;}
.h1a_c01140{height:49.358848px;}
.hb_c01140{height:68.791659px;}
.h9_c01140{height:69.180117px;}
.he_c01140{height:71.512031px;}
.h8_c01140{height:73.066641px;}
.h3_c01140{height:73.455293px;}
.h12_c01140{height:75.169050px;}
.h14_c01140{height:76.953164px;}
.h15_c01140{height:77.147685px;}
.h19_c01140{height:77.341816px;}
.h2_c01140{height:78.119315px;}
.h7_c01140{height:78.679477px;}
.h6_c01140{height:78.702100px;}
.hd_c01140{height:79.712016px;}
.hf_c01140{height:80.062577px;}
.ha_c01140{height:83.949101px;}
.h4_c01140{height:85.309384px;}
.h11_c01140{height:97.940585px;}
.h1_c01140{height:1110.000000px;}
.h0_c01140{height:1263.000000px;}
.w1_c01140{width:775.500000px;}
.w0_c01140{width:892.500000px;}
.x0_c01140{left:0.000000px;}
.x1_c01140{left:58.500000px;}
.x36_c01140{left:84.567435px;}
.x10_c01140{left:86.349435px;}
.x4d_c01140{left:138.215535px;}
.x11_c01140{left:139.225335px;}
.x4_c01140{left:140.705385px;}
.x2c_c01140{left:151.229085px;}
.x3f_c01140{left:171.553785px;}
.x23_c01140{left:173.355585px;}
.x37_c01140{left:183.577335px;}
.x2d_c01140{left:185.908785px;}
.x4e_c01140{left:192.685335px;}
.x34_c01140{left:194.680185px;}
.x28_c01140{left:206.154285px;}
.x2e_c01140{left:215.608785px;}
.x14_c01140{left:226.563135px;}
.x5_c01140{left:228.241185px;}
.x1d_c01140{left:237.661035px;}
.x57_c01140{left:240.289485px;}
.x40_c01140{left:248.699535px;}
.x38_c01140{left:249.847935px;}
.x29_c01140{left:261.515085px;}
.x6_c01140{left:272.702085px;}
.x1e_c01140{left:274.939485px;}
.x12_c01140{left:283.705935px;}
.x58_c01140{left:285.215685px;}
.x4f_c01140{left:293.571285px;}
.x15_c01140{left:297.179835px;}
.x39_c01140{left:304.644435px;}
.x24_c01140{left:317.207535px;}
.x7_c01140{left:328.255935px;}
.x5a_c01140{left:338.645985px;}
.x13_c01140{left:340.076535px;}
.x16_c01140{left:349.204335px;}
.x43_c01140{left:351.199185px;}
.xf_c01140{left:360.173535px;}
.x8_c01140{left:371.801085px;}
.x1f_c01140{left:373.528635px;}
.x2f_c01140{left:374.701785px;}
.x4a_c01140{left:381.230835px;}
.x30_c01140{left:394.724535px;}
.x50_c01140{left:403.094985px;}
.x20_c01140{left:404.446335px;}
.x9_c01140{left:407.069835px;}
.x41_c01140{left:417.098535px;}
.x3a_c01140{left:426.894585px;}
.xa_c01140{left:439.526985px;}
.x44_c01140{left:449.011185px;}
.x17_c01140{left:450.278385px;}
.x55_c01140{left:470.672385px;}
.x4b_c01140{left:472.137585px;}
.x21_c01140{left:483.750285px;}
.x31_c01140{left:492.076185px;}
.x18_c01140{left:493.981935px;}
.x25_c01140{left:516.845985px;}
.xb_c01140{left:527.617185px;}
.x19_c01140{left:537.923085px;}
.x26_c01140{left:549.223935px;}
.x32_c01140{left:558.366585px;}
.xc_c01140{left:559.406085px;}
.x47_c01140{left:562.489935px;}
.x51_c01140{left:568.444785px;}
.x1a_c01140{left:571.093035px;}
.x52_c01140{left:572.370135px;}
.x48_c01140{left:573.553185px;}
.x4c_c01140{left:580.869285px;}
.x22_c01140{left:583.081935px;}
.x53_c01140{left:590.541585px;}
.x42_c01140{left:593.061135px;}
.xd_c01140{left:594.367935px;}
.x45_c01140{left:604.371885px;}
.x56_c01140{left:613.262085px;}
.x1b_c01140{left:616.677585px;}
.x3d_c01140{left:626.206335px;}
.x3b_c01140{left:636.116235px;}
.x27_c01140{left:638.358585px;}
.x33_c01140{left:647.991285px;}
.x1c_c01140{left:670.489035px;}
.x2a_c01140{left:671.602785px;}
.x3c_c01140{left:681.908685px;}
.xe_c01140{left:683.967885px;}
.x46_c01140{left:692.496735px;}
.x49_c01140{left:693.551085px;}
.x59_c01140{left:697.352685px;}
.x35_c01140{left:701.985885px;}
.x3e_c01140{left:703.119435px;}
.x2b_c01140{left:705.332085px;}
.x2_c01140{left:709.311885px;}
.x54_c01140{left:713.737185px;}
.x3_c01140{left:743.432235px;}
@media print{
.v0_c01140{vertical-align:0.000000pt;}
.ls20_c01140{letter-spacing:-2.494800pt;}
.lsa_c01140{letter-spacing:-2.346960pt;}
.ls12_c01140{letter-spacing:-2.328480pt;}
.ls17_c01140{letter-spacing:-2.266880pt;}
.ls1f_c01140{letter-spacing:-2.180646pt;}
.ls13_c01140{letter-spacing:-1.698400pt;}
.ls1d_c01140{letter-spacing:-1.111018pt;}
.lsb_c01140{letter-spacing:-1.037837pt;}
.ls18_c01140{letter-spacing:-0.269070pt;}
.ls5_c01140{letter-spacing:0.000000pt;}
.ls16_c01140{letter-spacing:0.150797pt;}
.ls8_c01140{letter-spacing:0.691416pt;}
.ls1_c01140{letter-spacing:1.325808pt;}
.ls1a_c01140{letter-spacing:1.698400pt;}
.lse_c01140{letter-spacing:1.902701pt;}
.ls3_c01140{letter-spacing:2.328480pt;}
.ls0_c01140{letter-spacing:2.537568pt;}
.ls1b_c01140{letter-spacing:2.854051pt;}
.ls10_c01140{letter-spacing:3.115209pt;}
.lsd_c01140{letter-spacing:3.132800pt;}
.ls2_c01140{letter-spacing:3.206650pt;}
.ls14_c01140{letter-spacing:3.238400pt;}
.lsc_c01140{letter-spacing:3.308800pt;}
.ls6_c01140{letter-spacing:3.326400pt;}
.ls19_c01140{letter-spacing:3.493609pt;}
.ls4_c01140{letter-spacing:3.537609pt;}
.ls9_c01140{letter-spacing:3.564000pt;}
.ls15_c01140{letter-spacing:3.625609pt;}
.lsf_c01140{letter-spacing:3.801609pt;}
.ls7_c01140{letter-spacing:3.863209pt;}
.ls1c_c01140{letter-spacing:51.955376pt;}
.ls11_c01140{letter-spacing:55.756800pt;}
.ls1e_c01140{letter-spacing:58.291376pt;}
.ws0_c01140{word-spacing:0.000000pt;}
._0_c01140{margin-left:-14.025440pt;}
._3_c01140{margin-left:-8.509952pt;}
._2_c01140{margin-left:-5.790532pt;}
._1_c01140{width:7.451136pt;}
._6_c01140{width:12.241152pt;}
._7_c01140{width:24.282720pt;}
._5_c01140{width:26.098266pt;}
._4_c01140{width:70.497328pt;}
.fs12_c01140{font-size:22.352000pt;}
.fsf_c01140{font-size:24.640000pt;}
.fs3_c01140{font-size:29.920000pt;}
.fs15_c01140{font-size:33.968000pt;}
.fs19_c01140{font-size:44.704000pt;}
.fs16_c01140{font-size:51.955376pt;}
.fsa_c01140{font-size:55.756800pt;}
.fs17_c01140{font-size:58.291376pt;}
.fs9_c01140{font-size:62.304176pt;}
.fs7_c01140{font-size:62.656000pt;}
.fs11_c01140{font-size:64.064176pt;}
.fsc_c01140{font-size:64.768000pt;}
.fsd_c01140{font-size:65.472176pt;}
.fs6_c01140{font-size:66.176000pt;}
.fs1_c01140{font-size:66.528000pt;}
.fs5_c01140{font-size:67.056000pt;}
.fsb_c01140{font-size:67.936000pt;}
.fs13_c01140{font-size:69.696000pt;}
.fs14_c01140{font-size:69.872176pt;}
.fs18_c01140{font-size:70.048000pt;}
.fs0_c01140{font-size:70.752176pt;}
.fs4_c01140{font-size:71.280000pt;}
.fse_c01140{font-size:72.512176pt;}
.fs8_c01140{font-size:76.032176pt;}
.fs2_c01140{font-size:77.264176pt;}
.fs10_c01140{font-size:88.704176pt;}
.y0_c01140{bottom:0.000000pt;}
.y1_c01140{bottom:68.000000pt;}
.y21_c01140{bottom:82.607400pt;}
.y20_c01140{bottom:106.994840pt;}
.y1f_c01140{bottom:117.454520pt;}
.y1e_c01140{bottom:137.091720pt;}
.y1d_c01140{bottom:156.416520pt;}
.y1c_c01140{bottom:195.704120pt;}
.y1a_c01140{bottom:196.337720pt;}
.y1b_c01140{bottom:202.673720pt;}
.y19_c01140{bottom:225.162120pt;}
.y18_c01140{bottom:253.361720pt;}
.y17_c01140{bottom:311.648520pt;}
.y15_c01140{bottom:340.160520pt;}
.y16_c01140{bottom:344.595720pt;}
.y14_c01140{bottom:368.676920pt;}
.y13_c01140{bottom:396.867720pt;}
.y10_c01140{bottom:397.188920pt;}
.y12_c01140{bottom:403.520520pt;}
.y11_c01140{bottom:413.974920pt;}
.yf_c01140{bottom:426.013320pt;}
.ye_c01140{bottom:454.529720pt;}
.yd_c01140{bottom:510.920120pt;}
.yc_c01140{bottom:540.065720pt;}
.yb_c01140{bottom:567.627320pt;}
.ya_c01140{bottom:595.184520pt;}
.y9_c01140{bottom:625.280520pt;}
.y8_c01140{bottom:653.480120pt;}
.y7_c01140{bottom:682.625720pt;}
.y6_c01140{bottom:711.133320pt;}
.y5_c01140{bottom:767.840520pt;}
.y4_c01140{bottom:780.516920pt;}
.y3_c01140{bottom:825.502520pt;}
.y2_c01140{bottom:964.573320pt;}
.h13_c01140{height:23.312438pt;}
.h10_c01140{height:25.698750pt;}
.h5_c01140{height:29.364844pt;}
.h17_c01140{height:34.602280pt;}
.h16_c01140{height:35.427563pt;}
.hc_c01140{height:37.134029pt;}
.h18_c01140{height:38.822056pt;}
.h1a_c01140{height:43.874531pt;}
.hb_c01140{height:61.148141pt;}
.h9_c01140{height:61.493438pt;}
.he_c01140{height:63.566250pt;}
.h8_c01140{height:64.948125pt;}
.h3_c01140{height:65.293594pt;}
.h12_c01140{height:66.816934pt;}
.h14_c01140{height:68.402813pt;}
.h15_c01140{height:68.575720pt;}
.h19_c01140{height:68.748281pt;}
.h2_c01140{height:69.439391pt;}
.h7_c01140{height:69.937313pt;}
.h6_c01140{height:69.957422pt;}
.hd_c01140{height:70.855125pt;}
.hf_c01140{height:71.166735pt;}
.ha_c01140{height:74.621423pt;}
.h4_c01140{height:75.830563pt;}
.h11_c01140{height:87.058298pt;}
.h1_c01140{height:986.666667pt;}
.h0_c01140{height:1122.666667pt;}
.w1_c01140{width:689.333333pt;}
.w0_c01140{width:793.333333pt;}
.x0_c01140{left:0.000000pt;}
.x1_c01140{left:52.000000pt;}
.x36_c01140{left:75.171053pt;}
.x10_c01140{left:76.755053pt;}
.x4d_c01140{left:122.858253pt;}
.x11_c01140{left:123.755853pt;}
.x4_c01140{left:125.071453pt;}
.x2c_c01140{left:134.425853pt;}
.x3f_c01140{left:152.492253pt;}
.x23_c01140{left:154.093853pt;}
.x37_c01140{left:163.179853pt;}
.x2d_c01140{left:165.252253pt;}
.x4e_c01140{left:171.275853pt;}
.x34_c01140{left:173.049053pt;}
.x28_c01140{left:183.248253pt;}
.x2e_c01140{left:191.652253pt;}
.x14_c01140{left:201.389453pt;}
.x5_c01140{left:202.881053pt;}
.x1d_c01140{left:211.254253pt;}
.x57_c01140{left:213.590653pt;}
.x40_c01140{left:221.066253pt;}
.x38_c01140{left:222.087053pt;}
.x29_c01140{left:232.457853pt;}
.x6_c01140{left:242.401853pt;}
.x1e_c01140{left:244.390653pt;}
.x12_c01140{left:252.183053pt;}
.x58_c01140{left:253.525053pt;}
.x4f_c01140{left:260.952253pt;}
.x15_c01140{left:264.159853pt;}
.x39_c01140{left:270.795053pt;}
.x24_c01140{left:281.962253pt;}
.x7_c01140{left:291.783053pt;}
.x5a_c01140{left:301.018653pt;}
.x13_c01140{left:302.290253pt;}
.x16_c01140{left:310.403853pt;}
.x43_c01140{left:312.177053pt;}
.xf_c01140{left:320.154253pt;}
.x8_c01140{left:330.489853pt;}
.x1f_c01140{left:332.025453pt;}
.x2f_c01140{left:333.068253pt;}
.x4a_c01140{left:338.871853pt;}
.x30_c01140{left:350.866253pt;}
.x50_c01140{left:358.306653pt;}
.x20_c01140{left:359.507853pt;}
.x9_c01140{left:361.839853pt;}
.x41_c01140{left:370.754253pt;}
.x3a_c01140{left:379.461853pt;}
.xa_c01140{left:390.690653pt;}
.x44_c01140{left:399.121053pt;}
.x17_c01140{left:400.247453pt;}
.x55_c01140{left:418.375453pt;}
.x4b_c01140{left:419.677853pt;}
.x21_c01140{left:430.000253pt;}
.x31_c01140{left:437.401053pt;}
.x18_c01140{left:439.095053pt;}
.x25_c01140{left:459.418653pt;}
.xb_c01140{left:468.993053pt;}
.x19_c01140{left:478.153853pt;}
.x26_c01140{left:488.199053pt;}
.x32_c01140{left:496.325853pt;}
.xc_c01140{left:497.249853pt;}
.x47_c01140{left:499.991053pt;}
.x51_c01140{left:505.284253pt;}
.x1a_c01140{left:507.638253pt;}
.x52_c01140{left:508.773453pt;}
.x48_c01140{left:509.825053pt;}
.x4c_c01140{left:516.328253pt;}
.x22_c01140{left:518.295053pt;}
.x53_c01140{left:524.925853pt;}
.x42_c01140{left:527.165453pt;}
.xd_c01140{left:528.327053pt;}
.x45_c01140{left:537.219453pt;}
.x56_c01140{left:545.121853pt;}
.x1b_c01140{left:548.157853pt;}
.x3d_c01140{left:556.627853pt;}
.x3b_c01140{left:565.436653pt;}
.x27_c01140{left:567.429853pt;}
.x33_c01140{left:575.992253pt;}
.x1c_c01140{left:595.990253pt;}
.x2a_c01140{left:596.980253pt;}
.x3c_c01140{left:606.141053pt;}
.xe_c01140{left:607.971453pt;}
.x46_c01140{left:615.552653pt;}
.x49_c01140{left:616.489853pt;}
.x59_c01140{left:619.869053pt;}
.x35_c01140{left:623.987453pt;}
.x3e_c01140{left:624.995053pt;}
.x2b_c01140{left:626.961853pt;}
.x2_c01140{left:630.499453pt;}
.x54_c01140{left:634.433053pt;}
.x3_c01140{left:660.828653pt;}
}





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

.ir_c01141:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01141{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01141;src:url('chunks/assets/font_9a5443cccd9d04ca7ee81801.woff2')format("woff");}.ff1_c01141{font-family:ff1_c01141;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01141;src:url('chunks/assets/font_f74df361d180b97b6cd49df0.woff2')format("woff");}.ff2_c01141{font-family:ff2_c01141;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01141;src:url('chunks/assets/font_a0b44ad48ac0cf8a5a532ff9.woff2')format("woff");}.ff3_c01141{font-family:ff3_c01141;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01141;src:url('chunks/assets/font_8d4ff5a9f9352f05a7ba04f6.woff2')format("woff");}.ff4_c01141{font-family:ff4_c01141;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m9e_c01141{transform:matrix(0.010205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.010205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.010205,0.000000,0.000000,0.250000,0,0);}
.ma5_c01141{transform:matrix(0.030613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030613,0.000000,0.000000,0.250000,0,0);}
.m50_c01141{transform:matrix(0.067568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.067568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.067568,0.000000,0.000000,0.250000,0,0);}
.ma6_c01141{transform:matrix(0.072704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072704,0.000000,0.000000,0.250000,0,0);}
.m9d_c01141{transform:matrix(0.087869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087869,0.000000,0.000000,0.250000,0,0);}
.ma2_c01141{transform:matrix(0.090816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090816,0.000000,0.000000,0.250000,0,0);}
.m9f_c01141{transform:matrix(0.092858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092858,0.000000,0.000000,0.250000,0,0);}
.ma4_c01141{transform:matrix(0.106414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106414,0.000000,0.000000,0.250000,0,0);}
.m5f_c01141{transform:matrix(0.129361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129361,0.000000,0.000000,0.250000,0,0);}
.m9_c01141{transform:matrix(0.131627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131627,0.000000,0.000000,0.250000,0,0);}
.ma0_c01141{transform:matrix(0.144959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144959,0.000000,0.000000,0.250000,0,0);}
.ma9_c01141{transform:matrix(0.152084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152084,0.000000,0.000000,0.250000,0,0);}
.m7f_c01141{transform:matrix(0.154069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154069,0.000000,0.000000,0.250000,0,0);}
.m6c_c01141{transform:matrix(0.156177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156177,0.000000,0.000000,0.250000,0,0);}
.mb1_c01141{transform:matrix(0.156977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156977,0.000000,0.000000,0.250000,0,0);}
.m99_c01141{transform:matrix(0.167333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167333,0.000000,0.000000,0.250000,0,0);}
.m38_c01141{transform:matrix(0.172481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172481,0.000000,0.000000,0.250000,0,0);}
.m71_c01141{transform:matrix(0.173588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173588,0.000000,0.000000,0.250000,0,0);}
.m51_c01141{transform:matrix(0.173987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173987,0.000000,0.000000,0.250000,0,0);}
.m5e_c01141{transform:matrix(0.174418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174418,0.000000,0.000000,0.250000,0,0);}
.m40_c01141{transform:matrix(0.177326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177326,0.000000,0.000000,0.250000,0,0);}
.m2f_c01141{transform:matrix(0.179402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179402,0.000000,0.000000,0.250000,0,0);}
.m41_c01141{transform:matrix(0.185976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185976,0.000000,0.000000,0.250000,0,0);}
.m1b_c01141{transform:matrix(0.200799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200799,0.000000,0.000000,0.250000,0,0);}
.m46_c01141{transform:matrix(0.205598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205598,0.000000,0.000000,0.250000,0,0);}
.ma7_c01141{transform:matrix(0.205723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205723,0.000000,0.000000,0.250000,0,0);}
.m4d_c01141{transform:matrix(0.207207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207207,0.000000,0.000000,0.250000,0,0);}
.ma3_c01141{transform:matrix(0.210991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210991,0.000000,0.000000,0.250000,0,0);}
.ma1_c01141{transform:matrix(0.221649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221649,0.000000,0.000000,0.250000,0,0);}
.m7a_c01141{transform:matrix(0.226351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226351,0.000000,0.000000,0.250000,0,0);}
.m8_c01141{transform:matrix(0.229982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229982,0.000000,0.000000,0.250000,0,0);}
.m80_c01141{transform:matrix(0.235844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235844,0.000000,0.000000,0.250000,0,0);}
.m1c_c01141{transform:matrix(0.237013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237013,0.000000,0.000000,0.250000,0,0);}
.m39_c01141{transform:matrix(0.240223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240223,0.000000,0.000000,0.250000,0,0);}
.m20_c01141{transform:matrix(0.246166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246166,0.000000,0.000000,0.250000,0,0);}
.m0_c01141{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01141{transform:matrix(0.250563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250563,0.000000,0.000000,0.250000,0,0);}
.m83_c01141{transform:matrix(0.253809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253809,0.000000,0.000000,0.250000,0,0);}
.m60_c01141{transform:matrix(0.254247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254247,0.000000,0.000000,0.250000,0,0);}
.m2_c01141{transform:matrix(0.254671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254671,0.000000,0.000000,0.250000,0,0);}
.m1_c01141{transform:matrix(0.256089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256089,0.000000,0.000000,0.250000,0,0);}
.m2c_c01141{transform:matrix(0.256617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256617,0.000000,0.000000,0.250000,0,0);}
.m85_c01141{transform:matrix(0.257088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257088,0.000000,0.000000,0.250000,0,0);}
.mb8_c01141{transform:matrix(0.263336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263336,0.000000,0.000000,0.250000,0,0);}
.m4f_c01141{transform:matrix(0.263376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263376,0.000000,0.000000,0.250000,0,0);}
.m64_c01141{transform:matrix(0.263767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263767,0.000000,0.000000,0.250000,0,0);}
.maa_c01141{transform:matrix(0.264891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264891,0.000000,0.000000,0.250000,0,0);}
.mf_c01141{transform:matrix(0.267061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267061,0.000000,0.000000,0.250000,0,0);}
.m6a_c01141{transform:matrix(0.267340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267340,0.000000,0.000000,0.250000,0,0);}
.mb2_c01141{transform:matrix(0.267709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267709,0.000000,0.000000,0.250000,0,0);}
.m3d_c01141{transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);}
.m12_c01141{transform:matrix(0.268310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268310,0.000000,0.000000,0.250000,0,0);}
.m54_c01141{transform:matrix(0.269223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269223,0.000000,0.000000,0.250000,0,0);}
.m3e_c01141{transform:matrix(0.270342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270342,0.000000,0.000000,0.250000,0,0);}
.m47_c01141{transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);}
.m63_c01141{transform:matrix(0.272280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272280,0.000000,0.000000,0.250000,0,0);}
.m1a_c01141{transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);}
.m3f_c01141{transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);}
.m10_c01141{transform:matrix(0.273851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273851,0.000000,0.000000,0.250000,0,0);}
.m77_c01141{transform:matrix(0.275226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275226,0.000000,0.000000,0.250000,0,0);}
.m5_c01141{transform:matrix(0.275540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275540,0.000000,0.000000,0.250000,0,0);}
.m57_c01141{transform:matrix(0.276035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276035,0.000000,0.000000,0.250000,0,0);}
.m4c_c01141{transform:matrix(0.276847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276847,0.000000,0.000000,0.250000,0,0);}
.mae_c01141{transform:matrix(0.277012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277012,0.000000,0.000000,0.250000,0,0);}
.m66_c01141{transform:matrix(0.278717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278717,0.000000,0.000000,0.250000,0,0);}
.m9b_c01141{transform:matrix(0.279917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279917,0.000000,0.000000,0.250000,0,0);}
.m3_c01141{transform:matrix(0.280800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280800,0.000000,0.000000,0.250000,0,0);}
.mb_c01141{transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);}
.me_c01141{transform:matrix(0.280897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280897,0.000000,0.000000,0.250000,0,0);}
.m58_c01141{transform:matrix(0.281556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281556,0.000000,0.000000,0.250000,0,0);}
.m18_c01141{transform:matrix(0.282460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282460,0.000000,0.000000,0.250000,0,0);}
.m55_c01141{transform:matrix(0.282531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282531,0.000000,0.000000,0.250000,0,0);}
.m22_c01141{transform:matrix(0.283340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283340,0.000000,0.000000,0.250000,0,0);}
.m43_c01141{transform:matrix(0.283384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283384,0.000000,0.000000,0.250000,0,0);}
.m8f_c01141{transform:matrix(0.284527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284527,0.000000,0.000000,0.250000,0,0);}
.m37_c01141{transform:matrix(0.285120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285120,0.000000,0.000000,0.250000,0,0);}
.m2a_c01141{transform:matrix(0.285141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285141,0.000000,0.000000,0.250000,0,0);}
.m62_c01141{transform:matrix(0.285582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285582,0.000000,0.000000,0.250000,0,0);}
.m8c_c01141{transform:matrix(0.285652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285652,0.000000,0.000000,0.250000,0,0);}
.m8a_c01141{transform:matrix(0.287314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287314,0.000000,0.000000,0.250000,0,0);}
.m73_c01141{transform:matrix(0.288289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288289,0.000000,0.000000,0.250000,0,0);}
.m7e_c01141{transform:matrix(0.289588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289588,0.000000,0.000000,0.250000,0,0);}
.m52_c01141{transform:matrix(0.289885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289885,0.000000,0.000000,0.250000,0,0);}
.mb3_c01141{transform:matrix(0.290067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290067,0.000000,0.000000,0.250000,0,0);}
.m79_c01141{transform:matrix(0.290207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290207,0.000000,0.000000,0.250000,0,0);}
.m5d_c01141{transform:matrix(0.290332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290332,0.000000,0.000000,0.250000,0,0);}
.m76_c01141{transform:matrix(0.290517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290517,0.000000,0.000000,0.250000,0,0);}
.m2b_c01141{transform:matrix(0.291381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291381,0.000000,0.000000,0.250000,0,0);}
.mb0_c01141{transform:matrix(0.291648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291648,0.000000,0.000000,0.250000,0,0);}
.m74_c01141{transform:matrix(0.291815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291815,0.000000,0.000000,0.250000,0,0);}
.m21_c01141{transform:matrix(0.292897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292897,0.000000,0.000000,0.250000,0,0);}
.m34_c01141{transform:matrix(0.293088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293088,0.000000,0.000000,0.250000,0,0);}
.m33_c01141{transform:matrix(0.293158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293158,0.000000,0.000000,0.250000,0,0);}
.m91_c01141{transform:matrix(0.293607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293607,0.000000,0.000000,0.250000,0,0);}
.m7c_c01141{transform:matrix(0.294223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294223,0.000000,0.000000,0.250000,0,0);}
.m88_c01141{transform:matrix(0.294251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294251,0.000000,0.000000,0.250000,0,0);}
.ma8_c01141{transform:matrix(0.294262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294262,0.000000,0.000000,0.250000,0,0);}
.m4_c01141{transform:matrix(0.294835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294835,0.000000,0.000000,0.250000,0,0);}
.m90_c01141{transform:matrix(0.295309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295309,0.000000,0.000000,0.250000,0,0);}
.m8e_c01141{transform:matrix(0.295590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295590,0.000000,0.000000,0.250000,0,0);}
.m82_c01141{transform:matrix(0.295596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295596,0.000000,0.000000,0.250000,0,0);}
.mb4_c01141{transform:matrix(0.296033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296033,0.000000,0.000000,0.250000,0,0);}
.m6e_c01141{transform:matrix(0.296335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296335,0.000000,0.000000,0.250000,0,0);}
.m23_c01141{transform:matrix(0.296512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296512,0.000000,0.000000,0.250000,0,0);}
.m69_c01141{transform:matrix(0.296896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296896,0.000000,0.000000,0.250000,0,0);}
.m31_c01141{transform:matrix(0.296995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296995,0.000000,0.000000,0.250000,0,0);}
.m9a_c01141{transform:matrix(0.297299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297299,0.000000,0.000000,0.250000,0,0);}
.m75_c01141{transform:matrix(0.299605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299605,0.000000,0.000000,0.250000,0,0);}
.m5b_c01141{transform:matrix(0.300550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300550,0.000000,0.000000,0.250000,0,0);}
.m32_c01141{transform:matrix(0.300658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300658,0.000000,0.000000,0.250000,0,0);}
.m16_c01141{transform:matrix(0.301121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301121,0.000000,0.000000,0.250000,0,0);}
.m3c_c01141{transform:matrix(0.301673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301673,0.000000,0.000000,0.250000,0,0);}
.m3a_c01141{transform:matrix(0.301987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301987,0.000000,0.000000,0.250000,0,0);}
.m53_c01141{transform:matrix(0.302079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302079,0.000000,0.000000,0.250000,0,0);}
.m67_c01141{transform:matrix(0.302607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302607,0.000000,0.000000,0.250000,0,0);}
.m89_c01141{transform:matrix(0.304252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304252,0.000000,0.000000,0.250000,0,0);}
.m7d_c01141{transform:matrix(0.304770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304770,0.000000,0.000000,0.250000,0,0);}
.mb7_c01141{transform:matrix(0.305304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305304,0.000000,0.000000,0.250000,0,0);}
.m56_c01141{transform:matrix(0.305788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305788,0.000000,0.000000,0.250000,0,0);}
.m25_c01141{transform:matrix(0.306031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306031,0.000000,0.000000,0.250000,0,0);}
.mab_c01141{transform:matrix(0.306182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306182,0.000000,0.000000,0.250000,0,0);}
.m84_c01141{transform:matrix(0.306833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306833,0.000000,0.000000,0.250000,0,0);}
.m42_c01141{transform:matrix(0.308571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308571,0.000000,0.000000,0.250000,0,0);}
.m49_c01141{transform:matrix(0.309033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309033,0.000000,0.000000,0.250000,0,0);}
.m6b_c01141{transform:matrix(0.309212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309212,0.000000,0.000000,0.250000,0,0);}
.m4a_c01141{transform:matrix(0.309656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309656,0.000000,0.000000,0.250000,0,0);}
.m6d_c01141{transform:matrix(0.310749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310749,0.000000,0.000000,0.250000,0,0);}
.m98_c01141{transform:matrix(0.310984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310984,0.000000,0.000000,0.250000,0,0);}
.mad_c01141{transform:matrix(0.311367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311367,0.000000,0.000000,0.250000,0,0);}
.ma_c01141{transform:matrix(0.311526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311526,0.000000,0.000000,0.250000,0,0);}
.m44_c01141{transform:matrix(0.312074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312074,0.000000,0.000000,0.250000,0,0);}
.m96_c01141{transform:matrix(0.312698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312698,0.000000,0.000000,0.250000,0,0);}
.m19_c01141{transform:matrix(0.313136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313136,0.000000,0.000000,0.250000,0,0);}
.m30_c01141{transform:matrix(0.314235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314235,0.000000,0.000000,0.250000,0,0);}
.m93_c01141{transform:matrix(0.314456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314456,0.000000,0.000000,0.250000,0,0);}
.m7b_c01141{transform:matrix(0.315040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315040,0.000000,0.000000,0.250000,0,0);}
.m61_c01141{transform:matrix(0.315447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315447,0.000000,0.000000,0.250000,0,0);}
.m29_c01141{transform:matrix(0.316121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316121,0.000000,0.000000,0.250000,0,0);}
.m45_c01141{transform:matrix(0.316292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316292,0.000000,0.000000,0.250000,0,0);}
.m1d_c01141{transform:matrix(0.317739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317739,0.000000,0.000000,0.250000,0,0);}
.m48_c01141{transform:matrix(0.317887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317887,0.000000,0.000000,0.250000,0,0);}
.m13_c01141{transform:matrix(0.319240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319240,0.000000,0.000000,0.250000,0,0);}
.m78_c01141{transform:matrix(0.319871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319871,0.000000,0.000000,0.250000,0,0);}
.m5c_c01141{transform:matrix(0.319887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319887,0.000000,0.000000,0.250000,0,0);}
.m86_c01141{transform:matrix(0.320057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320057,0.000000,0.000000,0.250000,0,0);}
.m11_c01141{transform:matrix(0.320582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320582,0.000000,0.000000,0.250000,0,0);}
.m8b_c01141{transform:matrix(0.320851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320851,0.000000,0.000000,0.250000,0,0);}
.mb6_c01141{transform:matrix(0.320959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320959,0.000000,0.000000,0.250000,0,0);}
.maf_c01141{transform:matrix(0.321442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321442,0.000000,0.000000,0.250000,0,0);}
.mb5_c01141{transform:matrix(0.322591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322591,0.000000,0.000000,0.250000,0,0);}
.m14_c01141{transform:matrix(0.323552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323552,0.000000,0.000000,0.250000,0,0);}
.m2d_c01141{transform:matrix(0.327730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327730,0.000000,0.000000,0.250000,0,0);}
.m6_c01141{transform:matrix(0.329283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329283,0.000000,0.000000,0.250000,0,0);}
.m65_c01141{transform:matrix(0.329795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329795,0.000000,0.000000,0.250000,0,0);}
.m9c_c01141{transform:matrix(0.330555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330555,0.000000,0.000000,0.250000,0,0);}
.m72_c01141{transform:matrix(0.331021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331021,0.000000,0.000000,0.250000,0,0);}
.m95_c01141{transform:matrix(0.331035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331035,0.000000,0.000000,0.250000,0,0);}
.mac_c01141{transform:matrix(0.331410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331410,0.000000,0.000000,0.250000,0,0);}
.m92_c01141{transform:matrix(0.333660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333660,0.000000,0.000000,0.250000,0,0);}
.m4e_c01141{transform:matrix(0.335134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335134,0.000000,0.000000,0.250000,0,0);}
.m27_c01141{transform:matrix(0.335295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335295,0.000000,0.000000,0.250000,0,0);}
.m28_c01141{transform:matrix(0.336697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336697,0.000000,0.000000,0.250000,0,0);}
.m15_c01141{transform:matrix(0.337124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337124,0.000000,0.000000,0.250000,0,0);}
.m26_c01141{transform:matrix(0.338949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338949,0.000000,0.000000,0.250000,0,0);}
.m24_c01141{transform:matrix(0.342830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342830,0.000000,0.000000,0.250000,0,0);}
.m97_c01141{transform:matrix(0.342926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342926,0.000000,0.000000,0.250000,0,0);}
.m87_c01141{transform:matrix(0.344135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344135,0.000000,0.000000,0.250000,0,0);}
.m36_c01141{transform:matrix(0.344343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344343,0.000000,0.000000,0.250000,0,0);}
.md_c01141{transform:matrix(0.344476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344476,0.000000,0.000000,0.250000,0,0);}
.m3b_c01141{transform:matrix(0.344527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344527,0.000000,0.000000,0.250000,0,0);}
.m8d_c01141{transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);}
.m6f_c01141{transform:matrix(0.349655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349655,0.000000,0.000000,0.250000,0,0);}
.m59_c01141{transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);}
.m4b_c01141{transform:matrix(0.355360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355360,0.000000,0.000000,0.250000,0,0);}
.m1f_c01141{transform:matrix(0.357377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357377,0.000000,0.000000,0.250000,0,0);}
.m81_c01141{transform:matrix(0.361373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361373,0.000000,0.000000,0.250000,0,0);}
.mc_c01141{transform:matrix(0.363147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363147,0.000000,0.000000,0.250000,0,0);}
.m5a_c01141{transform:matrix(0.367289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367289,0.000000,0.000000,0.250000,0,0);}
.m35_c01141{transform:matrix(0.377007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377007,0.000000,0.000000,0.250000,0,0);}
.m2e_c01141{transform:matrix(0.383861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383861,0.000000,0.000000,0.250000,0,0);}
.m7_c01141{transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);}
.m17_c01141{transform:matrix(0.405805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405805,0.000000,0.000000,0.250000,0,0);}
.m94_c01141{transform:matrix(0.412048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412048,0.000000,0.000000,0.250000,0,0);}
.m70_c01141{transform:matrix(0.424535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424535,0.000000,0.000000,0.250000,0,0);}
.m68_c01141{transform:matrix(0.425872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425872,0.000000,0.000000,0.250000,0,0);}
.v3_c01141{vertical-align:-82.684800px;}
.v0_c01141{vertical-align:0.000000px;}
.v2_c01141{vertical-align:9.959400px;}
.v1_c01141{vertical-align:18.532800px;}
.lsa_c01141{letter-spacing:-3.270967px;}
.ls21_c01141{letter-spacing:-3.021480px;}
.ls22_c01141{letter-spacing:-3.007627px;}
.lse_c01141{letter-spacing:-2.792790px;}
.lsd_c01141{letter-spacing:-2.647267px;}
.ls24_c01141{letter-spacing:-2.605680px;}
.lsc_c01141{letter-spacing:-2.274129px;}
.ls23_c01141{letter-spacing:-1.072051px;}
.ls1f_c01141{letter-spacing:-0.930325px;}
.ls1d_c01141{letter-spacing:-0.319176px;}
.ls26_c01141{letter-spacing:-0.167567px;}
.ls6_c01141{letter-spacing:0.000000px;}
.ls8_c01141{letter-spacing:0.630354px;}
.ls1b_c01141{letter-spacing:1.081598px;}
.ls17_c01141{letter-spacing:1.412928px;}
.ls1_c01141{letter-spacing:1.555983px;}
.ls1e_c01141{letter-spacing:1.565669px;}
.ls3_c01141{letter-spacing:2.276650px;}
.ls4_c01141{letter-spacing:2.821230px;}
.ls19_c01141{letter-spacing:2.831400px;}
.ls1c_c01141{letter-spacing:2.872584px;}
.ls14_c01141{letter-spacing:2.995193px;}
.ls15_c01141{letter-spacing:3.316500px;}
.lsf_c01141{letter-spacing:3.425400px;}
.ls11_c01141{letter-spacing:3.435310px;}
.ls5_c01141{letter-spacing:3.471701px;}
.ls16_c01141{letter-spacing:3.539774px;}
.ls18_c01141{letter-spacing:3.564000px;}
.ls1a_c01141{letter-spacing:3.603610px;}
.ls9_c01141{letter-spacing:3.781810px;}
.lsb_c01141{letter-spacing:3.989700px;}
.ls7_c01141{letter-spacing:4.296610px;}
.ls2_c01141{letter-spacing:9.741600px;}
.ls0_c01141{letter-spacing:11.721501px;}
.ls13_c01141{letter-spacing:52.747398px;}
.ls25_c01141{letter-spacing:57.024198px;}
.ls12_c01141{letter-spacing:58.449798px;}
.ls10_c01141{letter-spacing:61.300998px;}
.ls20_c01141{letter-spacing:69.854598px;}
.sc__c01141{text-shadow:none;}
.sc0_c01141{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01141{-webkit-text-stroke:0px transparent;}
.sc0_c01141{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01141{word-spacing:-22.380751px;}
.ws1_c01141{word-spacing:-21.730280px;}
.ws0_c01141{word-spacing:-18.909050px;}
.ws3_c01141{word-spacing:0.000000px;}
._5_c01141{margin-left:-26.094505px;}
._9_c01141{margin-left:-3.900600px;}
._1_c01141{margin-left:-1.210047px;}
._4_c01141{width:4.085048px;}
._7_c01141{width:6.286016px;}
._2_c01141{width:21.247479px;}
._6_c01141{width:28.037019px;}
._a_c01141{width:29.202802px;}
._3_c01141{width:34.750287px;}
._0_c01141{width:46.113216px;}
._8_c01141{width:1553.294556px;}
.fc0_c01141{color:transparent;}
.fs1_c01141{font-size:22.176000px;}
.fs0_c01141{font-size:26.928000px;}
.fs1b_c01141{font-size:27.720000px;}
.fs11_c01141{font-size:31.680000px;}
.fs1a_c01141{font-size:40.392000px;}
.fs6_c01141{font-size:45.936198px;}
.fsf_c01141{font-size:52.747398px;}
.fsa_c01141{font-size:56.628000px;}
.fs18_c01141{font-size:57.024198px;}
.fse_c01141{font-size:58.449798px;}
.fsc_c01141{font-size:61.300998px;}
.fs8_c01141{font-size:66.330000px;}
.fsb_c01141{font-size:68.508000px;}
.fsd_c01141{font-size:68.706198px;}
.fs15_c01141{font-size:69.854598px;}
.fs12_c01141{font-size:71.280000px;}
.fs13_c01141{font-size:72.072198px;}
.fs17_c01141{font-size:74.448000px;}
.fs10_c01141{font-size:74.844000px;}
.fs3_c01141{font-size:75.042198px;}
.fs4_c01141{font-size:75.636198px;}
.fs9_c01141{font-size:79.200000px;}
.fs7_c01141{font-size:79.794000px;}
.fs19_c01141{font-size:84.348000px;}
.fs2_c01141{font-size:85.932198px;}
.fs16_c01141{font-size:86.328000px;}
.fs5_c01141{font-size:93.456198px;}
.fs14_c01141{font-size:96.624000px;}
.y0_c01141{bottom:0.000000px;}
.y22_c01141{bottom:34.121385px;}
.y21_c01141{bottom:39.110985px;}
.y1_c01141{bottom:76.500000px;}
.y20_c01141{bottom:158.148585px;}
.y1f_c01141{bottom:222.661935px;}
.y1e_c01141{bottom:256.519935px;}
.y1d_c01141{bottom:287.878185px;}
.y1c_c01141{bottom:321.379785px;}
.y1b_c01141{bottom:353.812185px;}
.y1a_c01141{bottom:385.888185px;}
.y19_c01141{bottom:417.969135px;}
.y18_c01141{bottom:450.396585px;}
.y17_c01141{bottom:482.121135px;}
.y3_c01141{bottom:512.053785px;}
.y16_c01141{bottom:513.835785px;}
.y15_c01141{bottom:545.916735px;}
.y14_c01141{bottom:577.279935px;}
.y12_c01141{bottom:577.992735px;}
.y13_c01141{bottom:579.774735px;}
.y11_c01141{bottom:604.009935px;}
.y10_c01141{bottom:609.712335px;}
.yf_c01141{bottom:610.063785px;}
.ye_c01141{bottom:642.852585px;}
.yd_c01141{bottom:674.933535px;}
.yc_c01141{bottom:707.365935px;}
.yb_c01141{bottom:738.729135px;}
.ya_c01141{bottom:770.443785px;}
.y9_c01141{bottom:803.232585px;}
.y8_c01141{bottom:835.313535px;}
.y2_c01141{bottom:853.133535px;}
.y7_c01141{bottom:867.384585px;}
.y6_c01141{bottom:899.816985px;}
.y5_c01141{bottom:931.541535px;}
.y4_c01141{bottom:1081.580985px;}
.h3_c01141{height:23.128875px;}
.h2_c01141{height:28.085063px;}
.h1c_c01141{height:28.911094px;}
.h11_c01141{height:33.041250px;}
.he_c01141{height:35.129767px;}
.h19_c01141{height:37.978116px;}
.hd_c01141{height:38.927565px;}
.hb_c01141{height:40.826465px;}
.h1b_c01141{height:42.127594px;}
.h15_c01141{height:46.523162px;}
.h13_c01141{height:55.577285px;}
.h1d_c01141{height:59.061234px;}
.ha_c01141{height:67.236855px;}
.hf_c01141{height:69.180117px;}
.h14_c01141{height:70.734921px;}
.hc_c01141{height:71.658417px;}
.h10_c01141{height:73.455293px;}
.h6_c01141{height:74.232792px;}
.h12_c01141{height:74.342813px;}
.h18_c01141{height:77.646938px;}
.h9_c01141{height:77.730469px;}
.h5_c01141{height:78.266667px;}
.h8_c01141{height:78.313447px;}
.h1a_c01141{height:82.782949px;}
.h4_c01141{height:84.337753px;}
.h17_c01141{height:89.624597px;}
.h16_c01141{height:90.037406px;}
.h7_c01141{height:91.722147px;}
.h1_c01141{height:1110.000000px;}
.h0_c01141{height:1263.000000px;}
.w1_c01141{width:775.500000px;}
.w0_c01141{width:892.500000px;}
.x0_c01141{left:0.000000px;}
.x3_c01141{left:23.068635px;}
.x1_c01141{left:58.500000px;}
.x2_c01141{left:66.450435px;}
.x78_c01141{left:86.879085px;}
.x6_c01141{left:89.017485px;}
.x79_c01141{left:139.952985px;}
.x3a_c01141{left:142.061685px;}
.x7_c01141{left:143.145735px;}
.x2c_c01141{left:165.490035px;}
.x8_c01141{left:175.924635px;}
.x3b_c01141{left:177.835335px;}
.x67_c01141{left:187.542285px;}
.x41_c01141{left:188.576835px;}
.x68_c01141{left:193.858485px;}
.x55_c01141{left:196.967085px;}
.x3d_c01141{left:198.437235px;}
.x69_c01141{left:207.990735px;}
.x2d_c01141{left:209.505435px;}
.x9_c01141{left:210.559785px;}
.x4e_c01141{left:218.356035px;}
.x7a_c01141{left:219.479685px;}
.x13_c01141{left:220.568685px;}
.x42_c01141{left:230.938935px;}
.x25_c01141{left:232.384335px;}
.x2e_c01141{left:242.333835px;}
.x33_c01141{left:244.199985px;}
.x61_c01141{left:251.917035px;}
.x1b_c01141{left:253.337685px;}
.x51_c01141{left:264.742485px;}
.x45_c01141{left:275.424585px;}
.x34_c01141{left:277.265985px;}
.x74_c01141{left:285.284985px;}
.x26_c01141{left:286.809585px;}
.x4a_c01141{left:289.180635px;}
.x59_c01141{left:297.521385px;}
.x65_c01141{left:307.995585px;}
.x14_c01141{left:309.267735px;}
.xa_c01141{left:310.371585px;}
.x6a_c01141{left:318.148035px;}
.x56_c01141{left:330.869535px;}
.x3c_c01141{left:332.275335px;}
.x4f_c01141{left:341.388285px;}
.x27_c01141{left:344.031585px;}
.xb_c01141{left:353.847435px;}
.x35_c01141{left:364.544385px;}
.x15_c01141{left:365.677935px;}
.x4b_c01141{left:375.275985px;}
.x1c_c01141{left:377.152035px;}
.x5a_c01141{left:385.260135px;}
.x46_c01141{left:386.264985px;}
.x43_c01141{left:387.749985px;}
.x16_c01141{left:389.581485px;}
.x52_c01141{left:397.447035px;}
.x3e_c01141{left:398.803335px;}
.x36_c01141{left:399.897285px;}
.x57_c01141{left:407.257935px;}
.x28_c01141{left:408.327135px;}
.x2f_c01141{left:421.048635px;}
.x63_c01141{left:428.978535px;}
.x53_c01141{left:430.522935px;}
.x37_c01141{left:431.894085px;}
.x6b_c01141{left:440.145735px;}
.x50_c01141{left:442.442535px;}
.x30_c01141{left:453.768135px;}
.x7b_c01141{left:462.890985px;}
.x17_c01141{left:464.321535px;}
.x1d_c01141{left:465.598635px;}
.x5b_c01141{left:473.870085px;}
.x29_c01141{left:475.909485px;}
.x75_c01141{left:485.928285px;}
.x31_c01141{left:487.319235px;}
.xc_c01141{left:488.769585px;}
.x6c_c01141{left:495.382785px;}
.x6d_c01141{left:496.813335px;}
.x1e_c01141{left:498.095385px;}
.x5c_c01141{left:507.579585px;}
.xd_c01141{left:509.376435px;}
.x1f_c01141{left:519.172485px;}
.x47_c01141{left:529.909035px;}
.x38_c01141{left:531.161385px;}
.x6e_c01141{left:537.814185px;}
.x4c_c01141{left:540.185235px;}
.xe_c01141{left:541.818735px;}
.x20_c01141{left:542.887935px;}
.x76_c01141{left:551.218785px;}
.xf_c01141{left:558.920985px;}
.x6f_c01141{left:562.579035px;}
.x10_c01141{left:565.633185px;}
.x5d_c01141{left:574.414485px;}
.x44_c01141{left:585.086685px;}
.x2a_c01141{left:587.432985px;}
.x5e_c01141{left:595.645035px;}
.x48_c01141{left:597.233985px;}
.x70_c01141{left:605.020335px;}
.x66_c01141{left:607.440885px;}
.x21_c01141{left:608.604135px;}
.x3f_c01141{left:617.533935px;}
.x18_c01141{left:619.004085px;}
.x39_c01141{left:620.192085px;}
.x54_c01141{left:627.859635px;}
.x4d_c01141{left:628.983285px;}
.x22_c01141{left:641.590935px;}
.x11_c01141{left:642.699735px;}
.x58_c01141{left:650.065335px;}
.x2b_c01141{left:653.005635px;}
.x40_c01141{left:663.395685px;}
.x19_c01141{left:664.761885px;}
.x71_c01141{left:671.800785px;}
.x5f_c01141{left:673.379835px;}
.x12_c01141{left:675.122235px;}
.x7c_c01141{left:682.393785px;}
.x32_c01141{left:685.136085px;}
.x23_c01141{left:687.195285px;}
.x77_c01141{left:694.991535px;}
.x1a_c01141{left:696.842835px;}
.x72_c01141{left:700.189035px;}
.x60_c01141{left:705.208335px;}
.x4_c01141{left:706.817085px;}
.x64_c01141{left:717.558585px;}
.x49_c01141{left:721.949235px;}
.x62_c01141{left:729.200985px;}
.x24_c01141{left:731.809635px;}
.x5_c01141{left:740.689935px;}
.x73_c01141{left:749.080185px;}
@media print{
.v3_c01141{vertical-align:-73.497600pt;}
.v0_c01141{vertical-align:0.000000pt;}
.v2_c01141{vertical-align:8.852800pt;}
.v1_c01141{vertical-align:16.473600pt;}
.lsa_c01141{letter-spacing:-2.907526pt;}
.ls21_c01141{letter-spacing:-2.685760pt;}
.ls22_c01141{letter-spacing:-2.673446pt;}
.lse_c01141{letter-spacing:-2.482480pt;}
.lsd_c01141{letter-spacing:-2.353126pt;}
.ls24_c01141{letter-spacing:-2.316160pt;}
.lsc_c01141{letter-spacing:-2.021448pt;}
.ls23_c01141{letter-spacing:-0.952934pt;}
.ls1f_c01141{letter-spacing:-0.826956pt;}
.ls1d_c01141{letter-spacing:-0.283712pt;}
.ls26_c01141{letter-spacing:-0.148949pt;}
.ls6_c01141{letter-spacing:0.000000pt;}
.ls8_c01141{letter-spacing:0.560315pt;}
.ls1b_c01141{letter-spacing:0.961420pt;}
.ls17_c01141{letter-spacing:1.255936pt;}
.ls1_c01141{letter-spacing:1.383096pt;}
.ls1e_c01141{letter-spacing:1.391706pt;}
.ls3_c01141{letter-spacing:2.023688pt;}
.ls4_c01141{letter-spacing:2.507760pt;}
.ls19_c01141{letter-spacing:2.516800pt;}
.ls1c_c01141{letter-spacing:2.553408pt;}
.ls14_c01141{letter-spacing:2.662394pt;}
.ls15_c01141{letter-spacing:2.948000pt;}
.lsf_c01141{letter-spacing:3.044800pt;}
.ls11_c01141{letter-spacing:3.053609pt;}
.ls5_c01141{letter-spacing:3.085957pt;}
.ls16_c01141{letter-spacing:3.146466pt;}
.ls18_c01141{letter-spacing:3.168000pt;}
.ls1a_c01141{letter-spacing:3.203209pt;}
.ls9_c01141{letter-spacing:3.361609pt;}
.lsb_c01141{letter-spacing:3.546400pt;}
.ls7_c01141{letter-spacing:3.819209pt;}
.ls2_c01141{letter-spacing:8.659200pt;}
.ls0_c01141{letter-spacing:10.419112pt;}
.ls13_c01141{letter-spacing:46.886576pt;}
.ls25_c01141{letter-spacing:50.688176pt;}
.ls12_c01141{letter-spacing:51.955376pt;}
.ls10_c01141{letter-spacing:54.489776pt;}
.ls20_c01141{letter-spacing:62.092976pt;}
.ws2_c01141{word-spacing:-19.894001pt;}
.ws1_c01141{word-spacing:-19.315804pt;}
.ws0_c01141{word-spacing:-16.808044pt;}
.ws3_c01141{word-spacing:0.000000pt;}
._5_c01141{margin-left:-23.195116pt;}
._9_c01141{margin-left:-3.467200pt;}
._1_c01141{margin-left:-1.075598pt;}
._4_c01141{width:3.631154pt;}
._7_c01141{width:5.587570pt;}
._2_c01141{width:18.886648pt;}
._6_c01141{width:24.921795pt;}
._a_c01141{width:25.958046pt;}
._3_c01141{width:30.889144pt;}
._0_c01141{width:40.989525pt;}
._8_c01141{width:1380.706272pt;}
.fs1_c01141{font-size:19.712000pt;}
.fs0_c01141{font-size:23.936000pt;}
.fs1b_c01141{font-size:24.640000pt;}
.fs11_c01141{font-size:28.160000pt;}
.fs1a_c01141{font-size:35.904000pt;}
.fs6_c01141{font-size:40.832176pt;}
.fsf_c01141{font-size:46.886576pt;}
.fsa_c01141{font-size:50.336000pt;}
.fs18_c01141{font-size:50.688176pt;}
.fse_c01141{font-size:51.955376pt;}
.fsc_c01141{font-size:54.489776pt;}
.fs8_c01141{font-size:58.960000pt;}
.fsb_c01141{font-size:60.896000pt;}
.fsd_c01141{font-size:61.072176pt;}
.fs15_c01141{font-size:62.092976pt;}
.fs12_c01141{font-size:63.360000pt;}
.fs13_c01141{font-size:64.064176pt;}
.fs17_c01141{font-size:66.176000pt;}
.fs10_c01141{font-size:66.528000pt;}
.fs3_c01141{font-size:66.704176pt;}
.fs4_c01141{font-size:67.232176pt;}
.fs9_c01141{font-size:70.400000pt;}
.fs7_c01141{font-size:70.928000pt;}
.fs19_c01141{font-size:74.976000pt;}
.fs2_c01141{font-size:76.384176pt;}
.fs16_c01141{font-size:76.736000pt;}
.fs5_c01141{font-size:83.072176pt;}
.fs14_c01141{font-size:85.888000pt;}
.y0_c01141{bottom:0.000000pt;}
.y22_c01141{bottom:30.330120pt;}
.y21_c01141{bottom:34.765320pt;}
.y1_c01141{bottom:68.000000pt;}
.y20_c01141{bottom:140.576520pt;}
.y1f_c01141{bottom:197.921720pt;}
.y1e_c01141{bottom:228.017720pt;}
.y1d_c01141{bottom:255.891720pt;}
.y1c_c01141{bottom:285.670920pt;}
.y1b_c01141{bottom:314.499720pt;}
.y1a_c01141{bottom:343.011720pt;}
.y19_c01141{bottom:371.528120pt;}
.y18_c01141{bottom:400.352520pt;}
.y17_c01141{bottom:428.552120pt;}
.y3_c01141{bottom:455.158920pt;}
.y16_c01141{bottom:456.742920pt;}
.y15_c01141{bottom:485.259320pt;}
.y14_c01141{bottom:513.137720pt;}
.y12_c01141{bottom:513.771320pt;}
.y13_c01141{bottom:515.355320pt;}
.y11_c01141{bottom:536.897720pt;}
.y10_c01141{bottom:541.966520pt;}
.yf_c01141{bottom:542.278920pt;}
.ye_c01141{bottom:571.424520pt;}
.yd_c01141{bottom:599.940920pt;}
.yc_c01141{bottom:628.769720pt;}
.yb_c01141{bottom:656.648120pt;}
.ya_c01141{bottom:684.838920pt;}
.y9_c01141{bottom:713.984520pt;}
.y8_c01141{bottom:742.500920pt;}
.y2_c01141{bottom:758.340920pt;}
.y7_c01141{bottom:771.008520pt;}
.y6_c01141{bottom:799.837320pt;}
.y5_c01141{bottom:828.036920pt;}
.y4_c01141{bottom:961.405320pt;}
.h3_c01141{height:20.559000pt;}
.h2_c01141{height:24.964500pt;}
.h1c_c01141{height:25.698750pt;}
.h11_c01141{height:29.370000pt;}
.he_c01141{height:31.226460pt;}
.h19_c01141{height:33.758325pt;}
.hd_c01141{height:34.602280pt;}
.hb_c01141{height:36.290191pt;}
.h1b_c01141{height:37.446750pt;}
.h15_c01141{height:41.353922pt;}
.h13_c01141{height:49.402031pt;}
.h1d_c01141{height:52.498875pt;}
.ha_c01141{height:59.766094pt;}
.hf_c01141{height:61.493438pt;}
.h14_c01141{height:62.875485pt;}
.hc_c01141{height:63.696371pt;}
.h10_c01141{height:65.293594pt;}
.h6_c01141{height:65.984704pt;}
.h12_c01141{height:66.082500pt;}
.h18_c01141{height:69.019500pt;}
.h9_c01141{height:69.093750pt;}
.h5_c01141{height:69.570371pt;}
.h8_c01141{height:69.611953pt;}
.h1a_c01141{height:73.584844pt;}
.h4_c01141{height:74.966891pt;}
.h17_c01141{height:79.666309pt;}
.h16_c01141{height:80.033250pt;}
.h7_c01141{height:81.530798pt;}
.h1_c01141{height:986.666667pt;}
.h0_c01141{height:1122.666667pt;}
.w1_c01141{width:689.333333pt;}
.w0_c01141{width:793.333333pt;}
.x0_c01141{left:0.000000pt;}
.x3_c01141{left:20.505453pt;}
.x1_c01141{left:52.000000pt;}
.x2_c01141{left:59.067053pt;}
.x78_c01141{left:77.225853pt;}
.x6_c01141{left:79.126653pt;}
.x79_c01141{left:124.402653pt;}
.x3a_c01141{left:126.277053pt;}
.x7_c01141{left:127.240653pt;}
.x2c_c01141{left:147.102253pt;}
.x8_c01141{left:156.377453pt;}
.x3b_c01141{left:158.075853pt;}
.x67_c01141{left:166.704253pt;}
.x41_c01141{left:167.623853pt;}
.x68_c01141{left:172.318653pt;}
.x55_c01141{left:175.081853pt;}
.x3d_c01141{left:176.388653pt;}
.x69_c01141{left:184.880653pt;}
.x2d_c01141{left:186.227053pt;}
.x9_c01141{left:187.164253pt;}
.x4e_c01141{left:194.094253pt;}
.x7a_c01141{left:195.093053pt;}
.x13_c01141{left:196.061053pt;}
.x42_c01141{left:205.279053pt;}
.x25_c01141{left:206.563853pt;}
.x2e_c01141{left:215.407853pt;}
.x33_c01141{left:217.066653pt;}
.x61_c01141{left:223.926253pt;}
.x1b_c01141{left:225.189053pt;}
.x51_c01141{left:235.326653pt;}
.x45_c01141{left:244.821853pt;}
.x34_c01141{left:246.458653pt;}
.x74_c01141{left:253.586653pt;}
.x26_c01141{left:254.941853pt;}
.x4a_c01141{left:257.049453pt;}
.x59_c01141{left:264.463453pt;}
.x65_c01141{left:273.773853pt;}
.x14_c01141{left:274.904653pt;}
.xa_c01141{left:275.885853pt;}
.x6a_c01141{left:282.798253pt;}
.x56_c01141{left:294.106253pt;}
.x3c_c01141{left:295.355853pt;}
.x4f_c01141{left:303.456253pt;}
.x27_c01141{left:305.805853pt;}
.xb_c01141{left:314.531053pt;}
.x35_c01141{left:324.039453pt;}
.x15_c01141{left:325.047053pt;}
.x4b_c01141{left:333.578653pt;}
.x1c_c01141{left:335.246253pt;}
.x5a_c01141{left:342.453453pt;}
.x46_c01141{left:343.346653pt;}
.x43_c01141{left:344.666653pt;}
.x16_c01141{left:346.294653pt;}
.x52_c01141{left:353.286253pt;}
.x3e_c01141{left:354.491853pt;}
.x36_c01141{left:355.464253pt;}
.x57_c01141{left:362.007053pt;}
.x28_c01141{left:362.957453pt;}
.x2f_c01141{left:374.265453pt;}
.x63_c01141{left:381.314253pt;}
.x53_c01141{left:382.687053pt;}
.x37_c01141{left:383.905853pt;}
.x6b_c01141{left:391.240653pt;}
.x50_c01141{left:393.282253pt;}
.x30_c01141{left:403.349453pt;}
.x7b_c01141{left:411.458653pt;}
.x17_c01141{left:412.730253pt;}
.x1d_c01141{left:413.865453pt;}
.x5b_c01141{left:421.217853pt;}
.x29_c01141{left:423.030653pt;}
.x75_c01141{left:431.936253pt;}
.x31_c01141{left:433.172653pt;}
.xc_c01141{left:434.461853pt;}
.x6c_c01141{left:440.340253pt;}
.x6d_c01141{left:441.611853pt;}
.x1e_c01141{left:442.751453pt;}
.x5c_c01141{left:451.181853pt;}
.xd_c01141{left:452.779053pt;}
.x1f_c01141{left:461.486653pt;}
.x47_c01141{left:471.030253pt;}
.x38_c01141{left:472.143453pt;}
.x6e_c01141{left:478.057053pt;}
.x4c_c01141{left:480.164653pt;}
.xe_c01141{left:481.616653pt;}
.x20_c01141{left:482.567053pt;}
.x76_c01141{left:489.972253pt;}
.xf_c01141{left:496.818653pt;}
.x6f_c01141{left:500.070253pt;}
.x10_c01141{left:502.785053pt;}
.x5d_c01141{left:510.590653pt;}
.x44_c01141{left:520.077053pt;}
.x2a_c01141{left:522.162653pt;}
.x5e_c01141{left:529.462253pt;}
.x48_c01141{left:530.874653pt;}
.x70_c01141{left:537.795853pt;}
.x66_c01141{left:539.947453pt;}
.x21_c01141{left:540.981453pt;}
.x3f_c01141{left:548.919053pt;}
.x18_c01141{left:550.225853pt;}
.x39_c01141{left:551.281853pt;}
.x54_c01141{left:558.097453pt;}
.x4d_c01141{left:559.096253pt;}
.x22_c01141{left:570.303053pt;}
.x11_c01141{left:571.288653pt;}
.x58_c01141{left:577.835853pt;}
.x2b_c01141{left:580.449453pt;}
.x40_c01141{left:589.685053pt;}
.x19_c01141{left:590.899453pt;}
.x71_c01141{left:597.156253pt;}
.x5f_c01141{left:598.559853pt;}
.x12_c01141{left:600.108653pt;}
.x7c_c01141{left:606.572253pt;}
.x32_c01141{left:609.009853pt;}
.x23_c01141{left:610.840253pt;}
.x77_c01141{left:617.770253pt;}
.x1a_c01141{left:619.415853pt;}
.x72_c01141{left:622.390253pt;}
.x60_c01141{left:626.851853pt;}
.x4_c01141{left:628.281853pt;}
.x64_c01141{left:637.829853pt;}
.x49_c01141{left:641.732653pt;}
.x62_c01141{left:648.178653pt;}
.x24_c01141{left:650.497453pt;}
.x5_c01141{left:658.391053pt;}
.x73_c01141{left:665.849053pt;}
}





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

.ir_c01142:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01142{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01142;src:url('chunks/assets/font_5d1ff201ba11de979b5db760.woff2')format("woff");}.ff1_c01142{font-family:ff1_c01142;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01142;src:url('chunks/assets/font_92741cd21147f56aee9653b0.woff2')format("woff");}.ff2_c01142{font-family:ff2_c01142;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01142;src:url('chunks/assets/font_46c6893b745bd469c4ff49a4.woff2')format("woff");}.ff3_c01142{font-family:ff3_c01142;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01142;src:url('chunks/assets/font_a28a7225f656022091694b25.woff2')format("woff");}.ff4_c01142{font-family:ff4_c01142;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01142;src:url('chunks/assets/font_aa6e5fff3fbd2d43d2c03f7b.woff2')format("woff");}.ff5_c01142{font-family:ff5_c01142;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m9a_c01142{transform:matrix(0.043751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043751,0.000000,0.000000,0.250000,0,0);}
.m32_c01142{transform:matrix(0.065217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065217,0.000000,0.000000,0.250000,0,0);}
.m2f_c01142{transform:matrix(0.094566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094566,0.000000,0.000000,0.250000,0,0);}
.m78_c01142{transform:matrix(0.108659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108659,0.000000,0.000000,0.250000,0,0);}
.m35_c01142{transform:matrix(0.146225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146225,0.000000,0.000000,0.250000,0,0);}
.m34_c01142{transform:matrix(0.156177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156177,0.000000,0.000000,0.250000,0,0);}
.m77_c01142{transform:matrix(0.166303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166303,0.000000,0.000000,0.250000,0,0);}
.m75_c01142{transform:matrix(0.175159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175159,0.000000,0.000000,0.250000,0,0);}
.m6b_c01142{transform:matrix(0.187499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187499,0.000000,0.000000,0.250000,0,0);}
.m99_c01142{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m55_c01142{transform:matrix(0.213293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213293,0.000000,0.000000,0.250000,0,0);}
.m2b_c01142{transform:matrix(0.225806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225806,0.000000,0.000000,0.250000,0,0);}
.m92_c01142{transform:matrix(0.246433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246433,0.000000,0.000000,0.250000,0,0);}
.m4a_c01142{transform:matrix(0.248145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248145,0.000000,0.000000,0.250000,0,0);}
.me_c01142{transform:matrix(0.249229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249229,0.000000,0.000000,0.250000,0,0);}
.m0_c01142{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m36_c01142{transform:matrix(0.250433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250433,0.000000,0.000000,0.250000,0,0);}
.m59_c01142{transform:matrix(0.250563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250563,0.000000,0.000000,0.250000,0,0);}
.m8d_c01142{transform:matrix(0.251721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251721,0.000000,0.000000,0.250000,0,0);}
.m21_c01142{transform:matrix(0.252844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252844,0.000000,0.000000,0.250000,0,0);}
.m16_c01142{transform:matrix(0.253550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253550,0.000000,0.000000,0.250000,0,0);}
.m15_c01142{transform:matrix(0.254718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254718,0.000000,0.000000,0.250000,0,0);}
.m2d_c01142{transform:matrix(0.255165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255165,0.000000,0.000000,0.250000,0,0);}
.m18_c01142{transform:matrix(0.255604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255604,0.000000,0.000000,0.250000,0,0);}
.m41_c01142{transform:matrix(0.257900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257900,0.000000,0.000000,0.250000,0,0);}
.m62_c01142{transform:matrix(0.258183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258183,0.000000,0.000000,0.250000,0,0);}
.m97_c01142{transform:matrix(0.258793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258793,0.000000,0.000000,0.250000,0,0);}
.m70_c01142{transform:matrix(0.261410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261410,0.000000,0.000000,0.250000,0,0);}
.m8b_c01142{transform:matrix(0.261446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261446,0.000000,0.000000,0.250000,0,0);}
.m8a_c01142{transform:matrix(0.263479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263479,0.000000,0.000000,0.250000,0,0);}
.m69_c01142{transform:matrix(0.264304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264304,0.000000,0.000000,0.250000,0,0);}
.m4c_c01142{transform:matrix(0.265584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265584,0.000000,0.000000,0.250000,0,0);}
.m54_c01142{transform:matrix(0.265728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265728,0.000000,0.000000,0.250000,0,0);}
.mb_c01142{transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);}
.m7d_c01142{transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);}
.m44_c01142{transform:matrix(0.270572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270572,0.000000,0.000000,0.250000,0,0);}
.m90_c01142{transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);}
.m2_c01142{transform:matrix(0.272209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272209,0.000000,0.000000,0.250000,0,0);}
.m12_c01142{transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272883,0.000000,0.000000,0.250000,0,0);}
.m5_c01142{transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);}
.m4f_c01142{transform:matrix(0.273384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273384,0.000000,0.000000,0.250000,0,0);}
.m28_c01142{transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);}
.m1a_c01142{transform:matrix(0.275368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275368,0.000000,0.000000,0.250000,0,0);}
.m8_c01142{transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);}
.m63_c01142{transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);}
.m49_c01142{transform:matrix(0.277820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277820,0.000000,0.000000,0.250000,0,0);}
.m26_c01142{transform:matrix(0.278612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278612,0.000000,0.000000,0.250000,0,0);}
.m81_c01142{transform:matrix(0.279192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279192,0.000000,0.000000,0.250000,0,0);}
.m8f_c01142{transform:matrix(0.279747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279747,0.000000,0.000000,0.250000,0,0);}
.m8e_c01142{transform:matrix(0.280199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280199,0.000000,0.000000,0.250000,0,0);}
.m52_c01142{transform:matrix(0.280430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280430,0.000000,0.000000,0.250000,0,0);}
.m47_c01142{transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);}
.m6f_c01142{transform:matrix(0.283345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283345,0.000000,0.000000,0.250000,0,0);}
.m11_c01142{transform:matrix(0.283860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283860,0.000000,0.000000,0.250000,0,0);}
.m33_c01142{transform:matrix(0.285672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285672,0.000000,0.000000,0.250000,0,0);}
.m56_c01142{transform:matrix(0.285887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285887,0.000000,0.000000,0.250000,0,0);}
.m42_c01142{transform:matrix(0.286350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286350,0.000000,0.000000,0.250000,0,0);}
.m5d_c01142{transform:matrix(0.286862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286862,0.000000,0.000000,0.250000,0,0);}
.m83_c01142{transform:matrix(0.287503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287503,0.000000,0.000000,0.250000,0,0);}
.m58_c01142{transform:matrix(0.287745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287745,0.000000,0.000000,0.250000,0,0);}
.m85_c01142{transform:matrix(0.287889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287889,0.000000,0.000000,0.250000,0,0);}
.m3a_c01142{transform:matrix(0.289044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289044,0.000000,0.000000,0.250000,0,0);}
.m30_c01142{transform:matrix(0.290183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290183,0.000000,0.000000,0.250000,0,0);}
.m74_c01142{transform:matrix(0.290275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290275,0.000000,0.000000,0.250000,0,0);}
.m79_c01142{transform:matrix(0.290328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290328,0.000000,0.000000,0.250000,0,0);}
.m57_c01142{transform:matrix(0.290442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290442,0.000000,0.000000,0.250000,0,0);}
.m3e_c01142{transform:matrix(0.290602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290602,0.000000,0.000000,0.250000,0,0);}
.m3b_c01142{transform:matrix(0.291213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291213,0.000000,0.000000,0.250000,0,0);}
.m20_c01142{transform:matrix(0.291220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291220,0.000000,0.000000,0.250000,0,0);}
.m95_c01142{transform:matrix(0.291495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291495,0.000000,0.000000,0.250000,0,0);}
.m48_c01142{transform:matrix(0.291648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291648,0.000000,0.000000,0.250000,0,0);}
.m23_c01142{transform:matrix(0.293071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293071,0.000000,0.000000,0.250000,0,0);}
.m5e_c01142{transform:matrix(0.295659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295659,0.000000,0.000000,0.250000,0,0);}
.m1f_c01142{transform:matrix(0.296512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296512,0.000000,0.000000,0.250000,0,0);}
.m7b_c01142{transform:matrix(0.296770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296770,0.000000,0.000000,0.250000,0,0);}
.m7c_c01142{transform:matrix(0.296896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296896,0.000000,0.000000,0.250000,0,0);}
.m87_c01142{transform:matrix(0.297167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297167,0.000000,0.000000,0.250000,0,0);}
.m82_c01142{transform:matrix(0.297427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297427,0.000000,0.000000,0.250000,0,0);}
.m3_c01142{transform:matrix(0.299295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299295,0.000000,0.000000,0.250000,0,0);}
.m3f_c01142{transform:matrix(0.299390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299390,0.000000,0.000000,0.250000,0,0);}
.m2a_c01142{transform:matrix(0.300565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300565,0.000000,0.000000,0.250000,0,0);}
.m14_c01142{transform:matrix(0.300662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300662,0.000000,0.000000,0.250000,0,0);}
.m5b_c01142{transform:matrix(0.301004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301004,0.000000,0.000000,0.250000,0,0);}
.m6c_c01142{transform:matrix(0.301121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301121,0.000000,0.000000,0.250000,0,0);}
.m88_c01142{transform:matrix(0.302775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302775,0.000000,0.000000,0.250000,0,0);}
.m80_c01142{transform:matrix(0.303885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303885,0.000000,0.000000,0.250000,0,0);}
.m17_c01142{transform:matrix(0.304358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304358,0.000000,0.000000,0.250000,0,0);}
.m1c_c01142{transform:matrix(0.304465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304465,0.000000,0.000000,0.250000,0,0);}
.m2c_c01142{transform:matrix(0.306618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306618,0.000000,0.000000,0.250000,0,0);}
.m29_c01142{transform:matrix(0.307182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307182,0.000000,0.000000,0.250000,0,0);}
.m7a_c01142{transform:matrix(0.307355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307355,0.000000,0.000000,0.250000,0,0);}
.m72_c01142{transform:matrix(0.307594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307594,0.000000,0.000000,0.250000,0,0);}
.m4b_c01142{transform:matrix(0.308358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308358,0.000000,0.000000,0.250000,0,0);}
.m65_c01142{transform:matrix(0.310817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310817,0.000000,0.000000,0.250000,0,0);}
.m3d_c01142{transform:matrix(0.311573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311573,0.000000,0.000000,0.250000,0,0);}
.m4e_c01142{transform:matrix(0.311673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311673,0.000000,0.000000,0.250000,0,0);}
.m6d_c01142{transform:matrix(0.311693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311693,0.000000,0.000000,0.250000,0,0);}
.m46_c01142{transform:matrix(0.312875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312875,0.000000,0.000000,0.250000,0,0);}
.m7_c01142{transform:matrix(0.313222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313222,0.000000,0.000000,0.250000,0,0);}
.ma_c01142{transform:matrix(0.314173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314173,0.000000,0.000000,0.250000,0,0);}
.m64_c01142{transform:matrix(0.316233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316233,0.000000,0.000000,0.250000,0,0);}
.m45_c01142{transform:matrix(0.316352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316352,0.000000,0.000000,0.250000,0,0);}
.m53_c01142{transform:matrix(0.316670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316670,0.000000,0.000000,0.250000,0,0);}
.m43_c01142{transform:matrix(0.316765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316765,0.000000,0.000000,0.250000,0,0);}
.m10_c01142{transform:matrix(0.316985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316985,0.000000,0.000000,0.250000,0,0);}
.m40_c01142{transform:matrix(0.317058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317058,0.000000,0.000000,0.250000,0,0);}
.md_c01142{transform:matrix(0.317173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317173,0.000000,0.000000,0.250000,0,0);}
.m27_c01142{transform:matrix(0.319038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319038,0.000000,0.000000,0.250000,0,0);}
.m5f_c01142{transform:matrix(0.319203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319203,0.000000,0.000000,0.250000,0,0);}
.mf_c01142{transform:matrix(0.319887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319887,0.000000,0.000000,0.250000,0,0);}
.m98_c01142{transform:matrix(0.321690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321690,0.000000,0.000000,0.250000,0,0);}
.m1_c01142{transform:matrix(0.321848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321848,0.000000,0.000000,0.250000,0,0);}
.m25_c01142{transform:matrix(0.322249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322249,0.000000,0.000000,0.250000,0,0);}
.m7f_c01142{transform:matrix(0.323249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323249,0.000000,0.000000,0.250000,0,0);}
.m51_c01142{transform:matrix(0.323363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323363,0.000000,0.000000,0.250000,0,0);}
.m38_c01142{transform:matrix(0.323949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323949,0.000000,0.000000,0.250000,0,0);}
.m19_c01142{transform:matrix(0.324205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324205,0.000000,0.000000,0.250000,0,0);}
.m73_c01142{transform:matrix(0.324920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324920,0.000000,0.000000,0.250000,0,0);}
.m66_c01142{transform:matrix(0.325340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325340,0.000000,0.000000,0.250000,0,0);}
.m94_c01142{transform:matrix(0.326992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326992,0.000000,0.000000,0.250000,0,0);}
.m4_c01142{transform:matrix(0.327542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327542,0.000000,0.000000,0.250000,0,0);}
.m68_c01142{transform:matrix(0.327751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327751,0.000000,0.000000,0.250000,0,0);}
.m91_c01142{transform:matrix(0.330522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330522,0.000000,0.000000,0.250000,0,0);}
.m84_c01142{transform:matrix(0.332211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332211,0.000000,0.000000,0.250000,0,0);}
.m24_c01142{transform:matrix(0.339063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339063,0.000000,0.000000,0.250000,0,0);}
.m71_c01142{transform:matrix(0.339236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339236,0.000000,0.000000,0.250000,0,0);}
.m22_c01142{transform:matrix(0.339710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339710,0.000000,0.000000,0.250000,0,0);}
.m1e_c01142{transform:matrix(0.340265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340265,0.000000,0.000000,0.250000,0,0);}
.m6a_c01142{transform:matrix(0.342348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342348,0.000000,0.000000,0.250000,0,0);}
.m3c_c01142{transform:matrix(0.342830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342830,0.000000,0.000000,0.250000,0,0);}
.m76_c01142{transform:matrix(0.344469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344469,0.000000,0.000000,0.250000,0,0);}
.m93_c01142{transform:matrix(0.344527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344527,0.000000,0.000000,0.250000,0,0);}
.m39_c01142{transform:matrix(0.344678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344678,0.000000,0.000000,0.250000,0,0);}
.m2e_c01142{transform:matrix(0.344976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344976,0.000000,0.000000,0.250000,0,0);}
.m61_c01142{transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);}
.m8c_c01142{transform:matrix(0.345574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345574,0.000000,0.000000,0.250000,0,0);}
.m7e_c01142{transform:matrix(0.346043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346043,0.000000,0.000000,0.250000,0,0);}
.m1d_c01142{transform:matrix(0.346195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346195,0.000000,0.000000,0.250000,0,0);}
.m67_c01142{transform:matrix(0.347328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347328,0.000000,0.000000,0.250000,0,0);}
.m96_c01142{transform:matrix(0.348775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348775,0.000000,0.000000,0.250000,0,0);}
.m5c_c01142{transform:matrix(0.349131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349131,0.000000,0.000000,0.250000,0,0);}
.m1b_c01142{transform:matrix(0.351305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351305,0.000000,0.000000,0.250000,0,0);}
.m86_c01142{transform:matrix(0.351491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351491,0.000000,0.000000,0.250000,0,0);}
.m9_c01142{transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);}
.m50_c01142{transform:matrix(0.355095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355095,0.000000,0.000000,0.250000,0,0);}
.m6_c01142{transform:matrix(0.355252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355252,0.000000,0.000000,0.250000,0,0);}
.m60_c01142{transform:matrix(0.357182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357182,0.000000,0.000000,0.250000,0,0);}
.m6e_c01142{transform:matrix(0.364277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364277,0.000000,0.000000,0.250000,0,0);}
.m37_c01142{transform:matrix(0.375189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375189,0.000000,0.000000,0.250000,0,0);}
.m89_c01142{transform:matrix(0.386524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386524,0.000000,0.000000,0.250000,0,0);}
.m5a_c01142{transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);}
.m13_c01142{transform:matrix(0.401814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401814,0.000000,0.000000,0.250000,0,0);}
.m4d_c01142{transform:matrix(0.405805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405805,0.000000,0.000000,0.250000,0,0);}
.m31_c01142{transform:matrix(0.409990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409990,0.000000,0.000000,0.250000,0,0);}
.mc_c01142{transform:matrix(0.436767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436767,0.000000,0.000000,0.250000,0,0);}
.v0_c01142{vertical-align:0.000000px;}
.ls1a_c01142{letter-spacing:-4.088700px;}
.ls12_c01142{letter-spacing:-3.132367px;}
.lsd_c01142{letter-spacing:-2.827440px;}
.ls9_c01142{letter-spacing:-2.668050px;}
.ls3_c01142{letter-spacing:-2.647267px;}
.ls19_c01142{letter-spacing:-1.434517px;}
.ls15_c01142{letter-spacing:-0.030254px;}
.ls0_c01142{letter-spacing:0.000000px;}
.ls14_c01142{letter-spacing:0.495495px;}
.lse_c01142{letter-spacing:0.589962px;}
.ls1c_c01142{letter-spacing:0.688289px;}
.lsc_c01142{letter-spacing:1.034035px;}
.ls6_c01142{letter-spacing:1.471853px;}
.ls1d_c01142{letter-spacing:1.930500px;}
.ls17_c01142{letter-spacing:2.957375px;}
.ls7_c01142{letter-spacing:3.275047px;}
.lsa_c01142{letter-spacing:3.366000px;}
.ls2_c01142{letter-spacing:3.405610px;}
.ls11_c01142{letter-spacing:3.456574px;}
.ls10_c01142{letter-spacing:3.504610px;}
.ls4_c01142{letter-spacing:3.534310px;}
.ls1b_c01142{letter-spacing:3.663000px;}
.ls16_c01142{letter-spacing:3.774246px;}
.ls1_c01142{letter-spacing:3.781810px;}
.lsf_c01142{letter-spacing:3.801610px;}
.ls8_c01142{letter-spacing:3.811500px;}
.ls5_c01142{letter-spacing:4.118400px;}
.ls13_c01142{letter-spacing:51.321798px;}
.ls18_c01142{letter-spacing:57.024198px;}
.lsb_c01142{letter-spacing:65.577798px;}
.sc__c01142{text-shadow:none;}
.sc0_c01142{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01142{-webkit-text-stroke:0px transparent;}
.sc0_c01142{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01142{word-spacing:0.000000px;}
._1_c01142{margin-left:-5.597509px;}
._6_c01142{width:3.830013px;}
._4_c01142{width:9.605687px;}
._7_c01142{width:14.295303px;}
._3_c01142{width:24.354935px;}
._2_c01142{width:32.447929px;}
._5_c01142{width:42.733202px;}
._0_c01142{width:43.856901px;}
.fc0_c01142{color:transparent;}
.fs19_c01142{font-size:22.176000px;}
.fs18_c01142{font-size:22.572000px;}
.fs0_c01142{font-size:28.314000px;}
.fs1_c01142{font-size:34.056198px;}
.fs17_c01142{font-size:38.610000px;}
.fs14_c01142{font-size:40.986198px;}
.fs10_c01142{font-size:46.332000px;}
.fs12_c01142{font-size:50.688000px;}
.fs11_c01142{font-size:51.321798px;}
.fs13_c01142{font-size:57.024198px;}
.fs9_c01142{font-size:65.577798px;}
.fs8_c01142{font-size:67.320000px;}
.fs3_c01142{font-size:68.112198px;}
.fsd_c01142{font-size:70.092198px;}
.fs4_c01142{font-size:70.686198px;}
.fs6_c01142{font-size:72.864000px;}
.fs16_c01142{font-size:73.260000px;}
.fsc_c01142{font-size:73.656198px;}
.fs2_c01142{font-size:75.636198px;}
.fsb_c01142{font-size:76.032198px;}
.fs7_c01142{font-size:76.230000px;}
.fsa_c01142{font-size:80.784000px;}
.fs5_c01142{font-size:82.368000px;}
.fse_c01142{font-size:84.942198px;}
.fsf_c01142{font-size:89.496198px;}
.fs15_c01142{font-size:116.820000px;}
.y0_c01142{bottom:0.000000px;}
.y22_c01142{bottom:31.275135px;}
.y21_c01142{bottom:56.930985px;}
.y1_c01142{bottom:76.500000px;}
.y20_c01142{bottom:123.226335px;}
.y1f_c01142{bottom:155.653785px;}
.y1e_c01142{bottom:174.547935px;}
.y1c_c01142{bottom:188.798985px;}
.y1d_c01142{bottom:193.437135px;}
.y1b_c01142{bottom:222.305535px;}
.y1a_c01142{bottom:254.737935px;}
.y19_c01142{bottom:286.808985px;}
.y18_c01142{bottom:319.246335px;}
.y17_c01142{bottom:351.317385px;}
.y16_c01142{bottom:383.393385px;}
.y13_c01142{bottom:446.476185px;}
.y15_c01142{bottom:454.673385px;}
.y2_c01142{bottom:468.221535px;}
.y14_c01142{bottom:469.642185px;}
.y12_c01142{bottom:478.552185px;}
.y11_c01142{bottom:541.639935px;}
.y10_c01142{bottom:574.428735px;}
.yf_c01142{bottom:607.221495px;}
.ye_c01142{bottom:626.463135px;}
.yd_c01142{bottom:637.506585px;}
.yc_c01142{bottom:670.656735px;}
.yb_c01142{bottom:701.658585px;}
.ya_c01142{bottom:734.452335px;}
.y9_c01142{bottom:766.171935px;}
.y8_c01142{bottom:791.119935px;}
.y7_c01142{bottom:798.247935px;}
.y6_c01142{bottom:860.617935px;}
.y5_c01142{bottom:893.406735px;}
.y4_c01142{bottom:925.834185px;}
.y3_c01142{bottom:1083.006585px;}
.h1b_c01142{height:23.128875px;}
.h1a_c01142{height:23.541891px;}
.h2_c01142{height:29.530617px;}
.h12_c01142{height:34.180317px;}
.h3_c01142{height:35.519550px;}
.h15_c01142{height:37.978116px;}
.h16_c01142{height:40.225712px;}
.h19_c01142{height:40.269023px;}
.hb_c01142{height:43.674813px;}
.h11_c01142{height:48.322828px;}
.h13_c01142{height:52.866000px;}
.h5_c01142{height:66.848397px;}
.he_c01142{height:68.757434px;}
.h6_c01142{height:69.340123px;}
.ha_c01142{height:70.212656px;}
.h18_c01142{height:71.900684px;}
.h4_c01142{height:74.232792px;}
.hd_c01142{height:74.621444px;}
.h9_c01142{height:74.815576px;}
.h8_c01142{height:75.994875px;}
.hc_c01142{height:79.285078px;}
.h14_c01142{height:79.505508px;}
.h7_c01142{height:80.839688px;}
.hf_c01142{height:83.366122px;}
.h10_c01142{height:87.835624px;}
.h17_c01142{height:114.652441px;}
.h1_c01142{height:1110.000000px;}
.h0_c01142{height:1263.000000px;}
.w1_c01142{width:775.500000px;}
.w0_c01142{width:892.500000px;}
.x0_c01142{left:0.000000px;}
.x1_c01142{left:58.500000px;}
.x3d_c01142{left:75.810885px;}
.x19_c01142{left:77.256285px;}
.x2_c01142{left:103.134885px;}
.x2c_c01142{left:130.092585px;}
.xd_c01142{left:131.384535px;}
.x3_c01142{left:132.498285px;}
.x44_c01142{left:153.634785px;}
.x50_c01142{left:164.594085px;}
.x36_c01142{left:165.752385px;}
.x4_c01142{left:175.286085px;}
.x14_c01142{left:176.454285px;}
.x3e_c01142{left:185.631585px;}
.x60_c01142{left:186.893835px;}
.x55_c01142{left:197.788785px;}
.x63_c01142{left:203.352585px;}
.x48_c01142{left:208.599585px;}
.x1a_c01142{left:218.365935px;}
.x5_c01142{left:220.727085px;}
.x21_c01142{left:231.443835px;}
.x64_c01142{left:242.071485px;}
.x15_c01142{left:243.403035px;}
.x3f_c01142{left:252.862485px;}
.x37_c01142{left:253.897035px;}
.xe_c01142{left:264.405885px;}
.x22_c01142{left:265.979985px;}
.x45_c01142{left:275.568135px;}
.x65_c01142{left:277.374885px;}
.xf_c01142{left:287.403585px;}
.x16_c01142{left:288.537135px;}
.x1b_c01142{left:289.571685px;}
.x27_c01142{left:298.451985px;}
.x38_c01142{left:299.486535px;}
.x67_c01142{left:308.223285px;}
.x46_c01142{left:309.792435px;}
.x6_c01142{left:311.891235px;}
.x10_c01142{left:320.128035px;}
.x5b_c01142{left:321.855585px;}
.x28_c01142{left:330.245835px;}
.x23_c01142{left:331.463535px;}
.x56_c01142{left:342.502035px;}
.x17_c01142{left:352.768335px;}
.x7_c01142{left:353.822685px;}
.x2d_c01142{left:363.519735px;}
.x1c_c01142{left:364.871085px;}
.x51_c01142{left:366.989685px;}
.x18_c01142{left:377.280735px;}
.x5c_c01142{left:385.200735px;}
.x39_c01142{left:387.190635px;}
.x47_c01142{left:398.239035px;}
.x2e_c01142{left:405.659085px;}
.x57_c01142{left:409.188435px;}
.x24_c01142{left:411.396135px;}
.x68_c01142{left:418.395435px;}
.x3a_c01142{left:420.311085px;}
.x8_c01142{left:431.384235px;}
.x58_c01142{left:440.804085px;}
.x49_c01142{left:451.798035px;}
.x40_c01142{left:452.916735px;}
.x2f_c01142{left:456.535185px;}
.x4a_c01142{left:459.064635px;}
.x9_c01142{left:464.138385px;}
.x1d_c01142{left:475.191735px;}
.x52_c01142{left:486.898485px;}
.x4d_c01142{left:497.050935px;}
.x41_c01142{left:498.357735px;}
.x6a_c01142{left:505.990635px;}
.x66_c01142{left:508.648785px;}
.xa_c01142{left:509.742735px;}
.x3c_c01142{left:515.133285px;}
.x11_c01142{left:520.093185px;}
.x42_c01142{left:529.290285px;}
.x4e_c01142{left:530.399085px;}
.x30_c01142{left:531.478185px;}
.x25_c01142{left:541.848435px;}
.x54_c01142{left:543.823485px;}
.x59_c01142{left:551.293035px;}
.x5d_c01142{left:553.332435px;}
.x31_c01142{left:555.366885px;}
.x4f_c01142{left:563.836335px;}
.x12_c01142{left:565.341135px;}
.x32_c01142{left:574.394685px;}
.x5a_c01142{left:584.967885px;}
.x26_c01142{left:586.289535px;}
.x5e_c01142{left:596.734035px;}
.x29_c01142{left:598.129935px;}
.x33_c01142{left:608.519985px;}
.x53_c01142{left:618.489285px;}
.xb_c01142{left:620.251485px;}
.x1e_c01142{left:628.275435px;}
.x2a_c01142{left:629.349585px;}
.x4b_c01142{left:641.155335px;}
.x13_c01142{left:652.144335px;}
.xc_c01142{left:653.332335px;}
.x2b_c01142{left:664.440135px;}
.x1f_c01142{left:674.419335px;}
.x61_c01142{left:675.795435px;}
.x5f_c01142{left:684.141135px;}
.x34_c01142{left:685.299435px;}
.x20_c01142{left:692.655135px;}
.x4c_c01142{left:694.298535px;}
.x62_c01142{left:696.154785px;}
.x3b_c01142{left:698.689185px;}
.x35_c01142{left:708.638685px;}
.x43_c01142{left:718.103085px;}
.x69_c01142{left:730.255335px;}
@media print{
.v0_c01142{vertical-align:0.000000pt;}
.ls1a_c01142{letter-spacing:-3.634400pt;}
.ls12_c01142{letter-spacing:-2.784326pt;}
.lsd_c01142{letter-spacing:-2.513280pt;}
.ls9_c01142{letter-spacing:-2.371600pt;}
.ls3_c01142{letter-spacing:-2.353126pt;}
.ls19_c01142{letter-spacing:-1.275126pt;}
.ls15_c01142{letter-spacing:-0.026893pt;}
.ls0_c01142{letter-spacing:0.000000pt;}
.ls14_c01142{letter-spacing:0.440440pt;}
.lse_c01142{letter-spacing:0.524411pt;}
.ls1c_c01142{letter-spacing:0.611813pt;}
.lsc_c01142{letter-spacing:0.919142pt;}
.ls6_c01142{letter-spacing:1.308314pt;}
.ls1d_c01142{letter-spacing:1.716000pt;}
.ls17_c01142{letter-spacing:2.628778pt;}
.ls7_c01142{letter-spacing:2.911153pt;}
.lsa_c01142{letter-spacing:2.992000pt;}
.ls2_c01142{letter-spacing:3.027209pt;}
.ls11_c01142{letter-spacing:3.072510pt;}
.ls10_c01142{letter-spacing:3.115209pt;}
.ls4_c01142{letter-spacing:3.141609pt;}
.ls1b_c01142{letter-spacing:3.256000pt;}
.ls16_c01142{letter-spacing:3.354886pt;}
.ls1_c01142{letter-spacing:3.361609pt;}
.lsf_c01142{letter-spacing:3.379209pt;}
.ls8_c01142{letter-spacing:3.388000pt;}
.ls5_c01142{letter-spacing:3.660800pt;}
.ls13_c01142{letter-spacing:45.619376pt;}
.ls18_c01142{letter-spacing:50.688176pt;}
.lsb_c01142{letter-spacing:58.291376pt;}
.ws0_c01142{word-spacing:0.000000pt;}
._1_c01142{margin-left:-4.975564pt;}
._6_c01142{width:3.404456pt;}
._4_c01142{width:8.538388pt;}
._7_c01142{width:12.706936pt;}
._3_c01142{width:21.648831pt;}
._2_c01142{width:28.842604pt;}
._5_c01142{width:37.985068pt;}
._0_c01142{width:38.983912pt;}
.fs19_c01142{font-size:19.712000pt;}
.fs18_c01142{font-size:20.064000pt;}
.fs0_c01142{font-size:25.168000pt;}
.fs1_c01142{font-size:30.272176pt;}
.fs17_c01142{font-size:34.320000pt;}
.fs14_c01142{font-size:36.432176pt;}
.fs10_c01142{font-size:41.184000pt;}
.fs12_c01142{font-size:45.056000pt;}
.fs11_c01142{font-size:45.619376pt;}
.fs13_c01142{font-size:50.688176pt;}
.fs9_c01142{font-size:58.291376pt;}
.fs8_c01142{font-size:59.840000pt;}
.fs3_c01142{font-size:60.544176pt;}
.fsd_c01142{font-size:62.304176pt;}
.fs4_c01142{font-size:62.832176pt;}
.fs6_c01142{font-size:64.768000pt;}
.fs16_c01142{font-size:65.120000pt;}
.fsc_c01142{font-size:65.472176pt;}
.fs2_c01142{font-size:67.232176pt;}
.fsb_c01142{font-size:67.584176pt;}
.fs7_c01142{font-size:67.760000pt;}
.fsa_c01142{font-size:71.808000pt;}
.fs5_c01142{font-size:73.216000pt;}
.fse_c01142{font-size:75.504176pt;}
.fsf_c01142{font-size:79.552176pt;}
.fs15_c01142{font-size:103.840000pt;}
.y0_c01142{bottom:0.000000pt;}
.y22_c01142{bottom:27.800120pt;}
.y21_c01142{bottom:50.605320pt;}
.y1_c01142{bottom:68.000000pt;}
.y20_c01142{bottom:109.534520pt;}
.y1f_c01142{bottom:138.358920pt;}
.y1e_c01142{bottom:155.153720pt;}
.y1c_c01142{bottom:167.821320pt;}
.y1d_c01142{bottom:171.944120pt;}
.y1b_c01142{bottom:197.604920pt;}
.y1a_c01142{bottom:226.433720pt;}
.y19_c01142{bottom:254.941320pt;}
.y18_c01142{bottom:283.774520pt;}
.y17_c01142{bottom:312.282120pt;}
.y16_c01142{bottom:340.794120pt;}
.y13_c01142{bottom:396.867720pt;}
.y15_c01142{bottom:404.154120pt;}
.y2_c01142{bottom:416.196920pt;}
.y14_c01142{bottom:417.459720pt;}
.y12_c01142{bottom:425.379720pt;}
.y11_c01142{bottom:481.457720pt;}
.y10_c01142{bottom:510.603320pt;}
.yf_c01142{bottom:539.752440pt;}
.ye_c01142{bottom:556.856120pt;}
.yd_c01142{bottom:566.672520pt;}
.yc_c01142{bottom:596.139320pt;}
.yb_c01142{bottom:623.696520pt;}
.ya_c01142{bottom:652.846520pt;}
.y9_c01142{bottom:681.041720pt;}
.y8_c01142{bottom:703.217720pt;}
.y7_c01142{bottom:709.553720pt;}
.y6_c01142{bottom:764.993720pt;}
.y5_c01142{bottom:794.139320pt;}
.y4_c01142{bottom:822.963720pt;}
.y3_c01142{bottom:962.672520pt;}
.h1b_c01142{height:20.559000pt;}
.h1a_c01142{height:20.926125pt;}
.h2_c01142{height:26.249438pt;}
.h12_c01142{height:30.382504pt;}
.h3_c01142{height:31.572934pt;}
.h15_c01142{height:33.758325pt;}
.h16_c01142{height:35.756188pt;}
.h19_c01142{height:35.794688pt;}
.hb_c01142{height:38.822056pt;}
.h11_c01142{height:42.953625pt;}
.h13_c01142{height:46.992000pt;}
.h5_c01142{height:59.420798pt;}
.he_c01142{height:61.117720pt;}
.h6_c01142{height:61.635665pt;}
.ha_c01142{height:62.411250pt;}
.h18_c01142{height:63.911719pt;}
.h4_c01142{height:65.984704pt;}
.hd_c01142{height:66.330173pt;}
.h9_c01142{height:66.502734pt;}
.h8_c01142{height:67.551000pt;}
.hc_c01142{height:70.475625pt;}
.h14_c01142{height:70.671563pt;}
.h7_c01142{height:71.857500pt;}
.hf_c01142{height:74.103220pt;}
.h10_c01142{height:78.076110pt;}
.h17_c01142{height:101.913281pt;}
.h1_c01142{height:986.666667pt;}
.h0_c01142{height:1122.666667pt;}
.w1_c01142{width:689.333333pt;}
.w0_c01142{width:793.333333pt;}
.x0_c01142{left:0.000000pt;}
.x1_c01142{left:52.000000pt;}
.x3d_c01142{left:67.387453pt;}
.x19_c01142{left:68.672253pt;}
.x2_c01142{left:91.675453pt;}
.x2c_c01142{left:115.637853pt;}
.xd_c01142{left:116.786253pt;}
.x3_c01142{left:117.776253pt;}
.x44_c01142{left:136.564253pt;}
.x50_c01142{left:146.305853pt;}
.x36_c01142{left:147.335453pt;}
.x4_c01142{left:155.809853pt;}
.x14_c01142{left:156.848253pt;}
.x3e_c01142{left:165.005853pt;}
.x60_c01142{left:166.127853pt;}
.x55_c01142{left:175.812253pt;}
.x63_c01142{left:180.757853pt;}
.x48_c01142{left:185.421853pt;}
.x1a_c01142{left:194.103053pt;}
.x5_c01142{left:196.201853pt;}
.x21_c01142{left:205.727853pt;}
.x64_c01142{left:215.174653pt;}
.x15_c01142{left:216.358253pt;}
.x3f_c01142{left:224.766653pt;}
.x37_c01142{left:225.686253pt;}
.xe_c01142{left:235.027453pt;}
.x22_c01142{left:236.426653pt;}
.x45_c01142{left:244.949453pt;}
.x65_c01142{left:246.555453pt;}
.xf_c01142{left:255.469853pt;}
.x16_c01142{left:256.477453pt;}
.x1b_c01142{left:257.397053pt;}
.x27_c01142{left:265.290653pt;}
.x38_c01142{left:266.210253pt;}
.x67_c01142{left:273.976253pt;}
.x46_c01142{left:275.371053pt;}
.x6_c01142{left:277.236653pt;}
.x10_c01142{left:284.558253pt;}
.x5b_c01142{left:286.093853pt;}
.x28_c01142{left:293.551853pt;}
.x23_c01142{left:294.634253pt;}
.x56_c01142{left:304.446253pt;}
.x17_c01142{left:313.571853pt;}
.x7_c01142{left:314.509053pt;}
.x2d_c01142{left:323.128653pt;}
.x1c_c01142{left:324.329853pt;}
.x51_c01142{left:326.213053pt;}
.x18_c01142{left:335.360653pt;}
.x5c_c01142{left:342.400653pt;}
.x39_c01142{left:344.169453pt;}
.x47_c01142{left:353.990253pt;}
.x2e_c01142{left:360.585853pt;}
.x57_c01142{left:363.723053pt;}
.x24_c01142{left:365.685453pt;}
.x68_c01142{left:371.907053pt;}
.x3a_c01142{left:373.609853pt;}
.x8_c01142{left:383.452653pt;}
.x58_c01142{left:391.825853pt;}
.x49_c01142{left:401.598253pt;}
.x40_c01142{left:402.592653pt;}
.x2f_c01142{left:405.809053pt;}
.x4a_c01142{left:408.057453pt;}
.x9_c01142{left:412.567453pt;}
.x1d_c01142{left:422.392653pt;}
.x52_c01142{left:432.798653pt;}
.x4d_c01142{left:441.823053pt;}
.x41_c01142{left:442.984653pt;}
.x6a_c01142{left:449.769453pt;}
.x66_c01142{left:452.132253pt;}
.xa_c01142{left:453.104653pt;}
.x3c_c01142{left:457.896253pt;}
.x11_c01142{left:462.305053pt;}
.x42_c01142{left:470.480253pt;}
.x4e_c01142{left:471.465853pt;}
.x30_c01142{left:472.425053pt;}
.x25_c01142{left:481.643053pt;}
.x54_c01142{left:483.398653pt;}
.x59_c01142{left:490.038253pt;}
.x5d_c01142{left:491.851053pt;}
.x31_c01142{left:493.659453pt;}
.x4f_c01142{left:501.187853pt;}
.x12_c01142{left:502.525453pt;}
.x32_c01142{left:510.573053pt;}
.x5a_c01142{left:519.971453pt;}
.x26_c01142{left:521.146253pt;}
.x5e_c01142{left:530.430253pt;}
.x29_c01142{left:531.671053pt;}
.x33_c01142{left:540.906653pt;}
.x53_c01142{left:549.768253pt;}
.xb_c01142{left:551.334653pt;}
.x1e_c01142{left:558.467053pt;}
.x2a_c01142{left:559.421853pt;}
.x4b_c01142{left:569.915853pt;}
.x13_c01142{left:579.683853pt;}
.xc_c01142{left:580.739853pt;}
.x2b_c01142{left:590.613453pt;}
.x1f_c01142{left:599.483853pt;}
.x61_c01142{left:600.707053pt;}
.x5f_c01142{left:608.125453pt;}
.x34_c01142{left:609.155053pt;}
.x20_c01142{left:615.693453pt;}
.x4c_c01142{left:617.154253pt;}
.x62_c01142{left:618.804253pt;}
.x3b_c01142{left:621.057053pt;}
.x35_c01142{left:629.901053pt;}
.x43_c01142{left:638.313853pt;}
.x69_c01142{left:649.115853pt;}
}





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

.ir_c01143:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01143{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01143;src:url('chunks/assets/font_3032e62ed6c00b5f2ed1aaac.woff2')format("woff");}.ff1_c01143{font-family:ff1_c01143;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01143;src:url('chunks/assets/font_b5fb8fe636c667f6a99e2869.woff2')format("woff");}.ff2_c01143{font-family:ff2_c01143;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01143;src:url('chunks/assets/font_8e6e67d1dd72832ee49c5854.woff2')format("woff");}.ff3_c01143{font-family:ff3_c01143;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01143;src:url('chunks/assets/font_6268dcdd1f47b786e2e4b9f4.woff2')format("woff");}.ff4_c01143{font-family:ff4_c01143;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m38_c01143{transform:matrix(0.047620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.047620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.047620,0.000000,0.000000,0.250000,0,0);}
.m43_c01143{transform:matrix(0.079862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.079862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.079862,0.000000,0.000000,0.250000,0,0);}
.ma_c01143{transform:matrix(0.103497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103497,0.000000,0.000000,0.250000,0,0);}
.m4a_c01143{transform:matrix(0.105597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105597,0.000000,0.000000,0.250000,0,0);}
.m5b_c01143{transform:matrix(0.146179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146179,0.000000,0.000000,0.250000,0,0);}
.m8a_c01143{transform:matrix(0.146225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146225,0.000000,0.000000,0.250000,0,0);}
.m8c_c01143{transform:matrix(0.156670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156670,0.000000,0.000000,0.250000,0,0);}
.m45_c01143{transform:matrix(0.156977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156977,0.000000,0.000000,0.250000,0,0);}
.m89_c01143{transform:matrix(0.167333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167333,0.000000,0.000000,0.250000,0,0);}
.m57_c01143{transform:matrix(0.170543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170543,0.000000,0.000000,0.250000,0,0);}
.m2d_c01143{transform:matrix(0.171085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171085,0.000000,0.000000,0.250000,0,0);}
.m56_c01143{transform:matrix(0.176357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176357,0.000000,0.000000,0.250000,0,0);}
.m37_c01143{transform:matrix(0.184524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184524,0.000000,0.000000,0.250000,0,0);}
.m5a_c01143{transform:matrix(0.186047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186047,0.000000,0.000000,0.250000,0,0);}
.m40_c01143{transform:matrix(0.204673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204673,0.000000,0.000000,0.250000,0,0);}
.m3a_c01143{transform:matrix(0.209263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209263,0.000000,0.000000,0.250000,0,0);}
.m41_c01143{transform:matrix(0.228868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228868,0.000000,0.000000,0.250000,0,0);}
.m4d_c01143{transform:matrix(0.235492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235492,0.000000,0.000000,0.250000,0,0);}
.mc_c01143{transform:matrix(0.236208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236208,0.000000,0.000000,0.250000,0,0);}
.m42_c01143{transform:matrix(0.238818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238818,0.000000,0.000000,0.250000,0,0);}
.m1b_c01143{transform:matrix(0.243474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243474,0.000000,0.000000,0.250000,0,0);}
.m8_c01143{transform:matrix(0.246260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246260,0.000000,0.000000,0.250000,0,0);}
.m21_c01143{transform:matrix(0.247466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247466,0.000000,0.000000,0.250000,0,0);}
.me_c01143{transform:matrix(0.248880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248880,0.000000,0.000000,0.250000,0,0);}
.m0_c01143{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01143{transform:matrix(0.251259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251259,0.000000,0.000000,0.250000,0,0);}
.m50_c01143{transform:matrix(0.252176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252176,0.000000,0.000000,0.250000,0,0);}
.mba_c01143{transform:matrix(0.258529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258529,0.000000,0.000000,0.250000,0,0);}
.m78_c01143{transform:matrix(0.259128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259128,0.000000,0.000000,0.250000,0,0);}
.m15_c01143{transform:matrix(0.261410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261410,0.000000,0.000000,0.250000,0,0);}
.ma7_c01143{transform:matrix(0.263599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263599,0.000000,0.000000,0.250000,0,0);}
.m93_c01143{transform:matrix(0.264376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264376,0.000000,0.000000,0.250000,0,0);}
.m8e_c01143{transform:matrix(0.264561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264561,0.000000,0.000000,0.250000,0,0);}
.m82_c01143{transform:matrix(0.264857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264857,0.000000,0.000000,0.250000,0,0);}
.m34_c01143{transform:matrix(0.266286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266286,0.000000,0.000000,0.250000,0,0);}
.m94_c01143{transform:matrix(0.266782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266782,0.000000,0.000000,0.250000,0,0);}
.m2f_c01143{transform:matrix(0.267300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267300,0.000000,0.000000,0.250000,0,0);}
.m28_c01143{transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);}
.m52_c01143{transform:matrix(0.268461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268461,0.000000,0.000000,0.250000,0,0);}
.m1a_c01143{transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);}
.mb9_c01143{transform:matrix(0.272594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272594,0.000000,0.000000,0.250000,0,0);}
.m6a_c01143{transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);}
.m4b_c01143{transform:matrix(0.273431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273431,0.000000,0.000000,0.250000,0,0);}
.m20_c01143{transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);}
.m6c_c01143{transform:matrix(0.274610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274610,0.000000,0.000000,0.250000,0,0);}
.m31_c01143{transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);}
.m97_c01143{transform:matrix(0.276247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276247,0.000000,0.000000,0.250000,0,0);}
.m60_c01143{transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);}
.mb0_c01143{transform:matrix(0.278905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278905,0.000000,0.000000,0.250000,0,0);}
.m5e_c01143{transform:matrix(0.280473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280473,0.000000,0.000000,0.250000,0,0);}
.m24_c01143{transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);}
.m47_c01143{transform:matrix(0.281184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281184,0.000000,0.000000,0.250000,0,0);}
.m36_c01143{transform:matrix(0.281764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281764,0.000000,0.000000,0.250000,0,0);}
.m10_c01143{transform:matrix(0.281814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281814,0.000000,0.000000,0.250000,0,0);}
.m9_c01143{transform:matrix(0.282306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282306,0.000000,0.000000,0.250000,0,0);}
.mb6_c01143{transform:matrix(0.282940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282940,0.000000,0.000000,0.250000,0,0);}
.ma0_c01143{transform:matrix(0.283285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283285,0.000000,0.000000,0.250000,0,0);}
.m81_c01143{transform:matrix(0.283608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283608,0.000000,0.000000,0.250000,0,0);}
.m4c_c01143{transform:matrix(0.283625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283625,0.000000,0.000000,0.250000,0,0);}
.ma1_c01143{transform:matrix(0.283984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283984,0.000000,0.000000,0.250000,0,0);}
.m22_c01143{transform:matrix(0.284347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284347,0.000000,0.000000,0.250000,0,0);}
.m39_c01143{transform:matrix(0.286164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286164,0.000000,0.000000,0.250000,0,0);}
.m8f_c01143{transform:matrix(0.286465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286465,0.000000,0.000000,0.250000,0,0);}
.m73_c01143{transform:matrix(0.288152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288152,0.000000,0.000000,0.250000,0,0);}
.m16_c01143{transform:matrix(0.288540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288540,0.000000,0.000000,0.250000,0,0);}
.m51_c01143{transform:matrix(0.288980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288980,0.000000,0.000000,0.250000,0,0);}
.m14_c01143{transform:matrix(0.289629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289629,0.000000,0.000000,0.250000,0,0);}
.m8d_c01143{transform:matrix(0.290328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290328,0.000000,0.000000,0.250000,0,0);}
.m5f_c01143{transform:matrix(0.290602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290602,0.000000,0.000000,0.250000,0,0);}
.m86_c01143{transform:matrix(0.291495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291495,0.000000,0.000000,0.250000,0,0);}
.m44_c01143{transform:matrix(0.292897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292897,0.000000,0.000000,0.250000,0,0);}
.ma8_c01143{transform:matrix(0.292973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292973,0.000000,0.000000,0.250000,0,0);}
.m7d_c01143{transform:matrix(0.293938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293938,0.000000,0.000000,0.250000,0,0);}
.m7f_c01143{transform:matrix(0.294503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294503,0.000000,0.000000,0.250000,0,0);}
.m99_c01143{transform:matrix(0.295131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295131,0.000000,0.000000,0.250000,0,0);}
.m77_c01143{transform:matrix(0.295196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295196,0.000000,0.000000,0.250000,0,0);}
.m64_c01143{transform:matrix(0.295425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295425,0.000000,0.000000,0.250000,0,0);}
.m7a_c01143{transform:matrix(0.295642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295642,0.000000,0.000000,0.250000,0,0);}
.m75_c01143{transform:matrix(0.296044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296044,0.000000,0.000000,0.250000,0,0);}
.m6f_c01143{transform:matrix(0.296319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296319,0.000000,0.000000,0.250000,0,0);}
.m1_c01143{transform:matrix(0.297812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297812,0.000000,0.000000,0.250000,0,0);}
.m17_c01143{transform:matrix(0.298058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298058,0.000000,0.000000,0.250000,0,0);}
.ma2_c01143{transform:matrix(0.298521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298521,0.000000,0.000000,0.250000,0,0);}
.m9d_c01143{transform:matrix(0.299002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299002,0.000000,0.000000,0.250000,0,0);}
.m59_c01143{transform:matrix(0.300582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300582,0.000000,0.000000,0.250000,0,0);}
.m3d_c01143{transform:matrix(0.301121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301121,0.000000,0.000000,0.250000,0,0);}
.m4f_c01143{transform:matrix(0.301656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301656,0.000000,0.000000,0.250000,0,0);}
.m4_c01143{transform:matrix(0.302445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302445,0.000000,0.000000,0.250000,0,0);}
.m4e_c01143{transform:matrix(0.302608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302608,0.000000,0.000000,0.250000,0,0);}
.m5d_c01143{transform:matrix(0.302670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302670,0.000000,0.000000,0.250000,0,0);}
.ma5_c01143{transform:matrix(0.305138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305138,0.000000,0.000000,0.250000,0,0);}
.m1e_c01143{transform:matrix(0.305811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305811,0.000000,0.000000,0.250000,0,0);}
.m6d_c01143{transform:matrix(0.306031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306031,0.000000,0.000000,0.250000,0,0);}
.m80_c01143{transform:matrix(0.306119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306119,0.000000,0.000000,0.250000,0,0);}
.m13_c01143{transform:matrix(0.306474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306474,0.000000,0.000000,0.250000,0,0);}
.m19_c01143{transform:matrix(0.306576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306576,0.000000,0.000000,0.250000,0,0);}
.m1c_c01143{transform:matrix(0.306710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306710,0.000000,0.000000,0.250000,0,0);}
.m7c_c01143{transform:matrix(0.306858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306858,0.000000,0.000000,0.250000,0,0);}
.m27_c01143{transform:matrix(0.307864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307864,0.000000,0.000000,0.250000,0,0);}
.m62_c01143{transform:matrix(0.308283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308283,0.000000,0.000000,0.250000,0,0);}
.mad_c01143{transform:matrix(0.309072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309072,0.000000,0.000000,0.250000,0,0);}
.m71_c01143{transform:matrix(0.309215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309215,0.000000,0.000000,0.250000,0,0);}
.m46_c01143{transform:matrix(0.309510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309510,0.000000,0.000000,0.250000,0,0);}
.m87_c01143{transform:matrix(0.310160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310160,0.000000,0.000000,0.250000,0,0);}
.m23_c01143{transform:matrix(0.311111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311111,0.000000,0.000000,0.250000,0,0);}
.m55_c01143{transform:matrix(0.311346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311346,0.000000,0.000000,0.250000,0,0);}
.m26_c01143{transform:matrix(0.311693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311693,0.000000,0.000000,0.250000,0,0);}
.m7_c01143{transform:matrix(0.312698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312698,0.000000,0.000000,0.250000,0,0);}
.m92_c01143{transform:matrix(0.313337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313337,0.000000,0.000000,0.250000,0,0);}
.m30_c01143{transform:matrix(0.313453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313453,0.000000,0.000000,0.250000,0,0);}
.ma3_c01143{transform:matrix(0.313677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313677,0.000000,0.000000,0.250000,0,0);}
.m2a_c01143{transform:matrix(0.313686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313686,0.000000,0.000000,0.250000,0,0);}
.m3c_c01143{transform:matrix(0.314235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314235,0.000000,0.000000,0.250000,0,0);}
.m90_c01143{transform:matrix(0.314370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314370,0.000000,0.000000,0.250000,0,0);}
.m9f_c01143{transform:matrix(0.314718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314718,0.000000,0.000000,0.250000,0,0);}
.m72_c01143{transform:matrix(0.315054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315054,0.000000,0.000000,0.250000,0,0);}
.mb3_c01143{transform:matrix(0.316292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316292,0.000000,0.000000,0.250000,0,0);}
.m84_c01143{transform:matrix(0.317149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317149,0.000000,0.000000,0.250000,0,0);}
.mb1_c01143{transform:matrix(0.319727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319727,0.000000,0.000000,0.250000,0,0);}
.mac_c01143{transform:matrix(0.319887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319887,0.000000,0.000000,0.250000,0,0);}
.m6b_c01143{transform:matrix(0.319976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319976,0.000000,0.000000,0.250000,0,0);}
.m1d_c01143{transform:matrix(0.320418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320418,0.000000,0.000000,0.250000,0,0);}
.md_c01143{transform:matrix(0.320972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320972,0.000000,0.000000,0.250000,0,0);}
.m6_c01143{transform:matrix(0.321356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321356,0.000000,0.000000,0.250000,0,0);}
.m3_c01143{transform:matrix(0.321361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321361,0.000000,0.000000,0.250000,0,0);}
.maf_c01143{transform:matrix(0.321467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321467,0.000000,0.000000,0.250000,0,0);}
.m70_c01143{transform:matrix(0.321737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321737,0.000000,0.000000,0.250000,0,0);}
.m2b_c01143{transform:matrix(0.322136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322136,0.000000,0.000000,0.250000,0,0);}
.mb5_c01143{transform:matrix(0.322662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322662,0.000000,0.000000,0.250000,0,0);}
.m6e_c01143{transform:matrix(0.323481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323481,0.000000,0.000000,0.250000,0,0);}
.mb2_c01143{transform:matrix(0.324205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324205,0.000000,0.000000,0.250000,0,0);}
.m7e_c01143{transform:matrix(0.326305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326305,0.000000,0.000000,0.250000,0,0);}
.m95_c01143{transform:matrix(0.326834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326834,0.000000,0.000000,0.250000,0,0);}
.m61_c01143{transform:matrix(0.326868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326868,0.000000,0.000000,0.250000,0,0);}
.mf_c01143{transform:matrix(0.327721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327721,0.000000,0.000000,0.250000,0,0);}
.mb4_c01143{transform:matrix(0.327889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327889,0.000000,0.000000,0.250000,0,0);}
.m67_c01143{transform:matrix(0.328372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328372,0.000000,0.000000,0.250000,0,0);}
.m83_c01143{transform:matrix(0.328497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328497,0.000000,0.000000,0.250000,0,0);}
.m9c_c01143{transform:matrix(0.329025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329025,0.000000,0.000000,0.250000,0,0);}
.m98_c01143{transform:matrix(0.329283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329283,0.000000,0.000000,0.250000,0,0);}
.m5_c01143{transform:matrix(0.330758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330758,0.000000,0.000000,0.250000,0,0);}
.m12_c01143{transform:matrix(0.331011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331011,0.000000,0.000000,0.250000,0,0);}
.mab_c01143{transform:matrix(0.333633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333633,0.000000,0.000000,0.250000,0,0);}
.m54_c01143{transform:matrix(0.334172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334172,0.000000,0.000000,0.250000,0,0);}
.m3b_c01143{transform:matrix(0.334660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334660,0.000000,0.000000,0.250000,0,0);}
.m96_c01143{transform:matrix(0.335424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335424,0.000000,0.000000,0.250000,0,0);}
.m3e_c01143{transform:matrix(0.336208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336208,0.000000,0.000000,0.250000,0,0);}
.m65_c01143{transform:matrix(0.336587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336587,0.000000,0.000000,0.250000,0,0);}
.m25_c01143{transform:matrix(0.336676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336676,0.000000,0.000000,0.250000,0,0);}
.mb8_c01143{transform:matrix(0.337107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337107,0.000000,0.000000,0.250000,0,0);}
.m7b_c01143{transform:matrix(0.337998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337998,0.000000,0.000000,0.250000,0,0);}
.m76_c01143{transform:matrix(0.339063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339063,0.000000,0.000000,0.250000,0,0);}
.m3f_c01143{transform:matrix(0.341474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341474,0.000000,0.000000,0.250000,0,0);}
.m9b_c01143{transform:matrix(0.341788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341788,0.000000,0.000000,0.250000,0,0);}
.m58_c01143{transform:matrix(0.342481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342481,0.000000,0.000000,0.250000,0,0);}
.m2e_c01143{transform:matrix(0.343223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343223,0.000000,0.000000,0.250000,0,0);}
.mae_c01143{transform:matrix(0.343235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343235,0.000000,0.000000,0.250000,0,0);}
.m5c_c01143{transform:matrix(0.344455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344455,0.000000,0.000000,0.250000,0,0);}
.m88_c01143{transform:matrix(0.344469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344469,0.000000,0.000000,0.250000,0,0);}
.m49_c01143{transform:matrix(0.344684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344684,0.000000,0.000000,0.250000,0,0);}
.m68_c01143{transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);}
.m74_c01143{transform:matrix(0.346260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346260,0.000000,0.000000,0.250000,0,0);}
.m9e_c01143{transform:matrix(0.347358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347358,0.000000,0.000000,0.250000,0,0);}
.m91_c01143{transform:matrix(0.347685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347685,0.000000,0.000000,0.250000,0,0);}
.m33_c01143{transform:matrix(0.348552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348552,0.000000,0.000000,0.250000,0,0);}
.m2c_c01143{transform:matrix(0.349673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349673,0.000000,0.000000,0.250000,0,0);}
.m66_c01143{transform:matrix(0.350869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350869,0.000000,0.000000,0.250000,0,0);}
.m2_c01143{transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);}
.m18_c01143{transform:matrix(0.355252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355252,0.000000,0.000000,0.250000,0,0);}
.m35_c01143{transform:matrix(0.355583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355583,0.000000,0.000000,0.250000,0,0);}
.m11_c01143{transform:matrix(0.356018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356018,0.000000,0.000000,0.250000,0,0);}
.m9a_c01143{transform:matrix(0.356094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356094,0.000000,0.000000,0.250000,0,0);}
.mb7_c01143{transform:matrix(0.359199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359199,0.000000,0.000000,0.250000,0,0);}
.ma6_c01143{transform:matrix(0.360657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360657,0.000000,0.000000,0.250000,0,0);}
.m79_c01143{transform:matrix(0.362487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362487,0.000000,0.000000,0.250000,0,0);}
.m69_c01143{transform:matrix(0.363086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363086,0.000000,0.000000,0.250000,0,0);}
.m1f_c01143{transform:matrix(0.363147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363147,0.000000,0.000000,0.250000,0,0);}
.m85_c01143{transform:matrix(0.364083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364083,0.000000,0.000000,0.250000,0,0);}
.m8b_c01143{transform:matrix(0.364594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364594,0.000000,0.000000,0.250000,0,0);}
.ma4_c01143{transform:matrix(0.370938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370938,0.000000,0.000000,0.250000,0,0);}
.mb_c01143{transform:matrix(0.374433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374433,0.000000,0.000000,0.250000,0,0);}
.m63_c01143{transform:matrix(0.376749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376749,0.000000,0.000000,0.250000,0,0);}
.m48_c01143{transform:matrix(0.387076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387076,0.000000,0.000000,0.250000,0,0);}
.maa_c01143{transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);}
.m32_c01143{transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);}
.m29_c01143{transform:matrix(0.405939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405939,0.000000,0.000000,0.250000,0,0);}
.m53_c01143{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);}
.v0_c01143{vertical-align:0.000000px;}
.v3_c01143{vertical-align:14.275800px;}
.v1_c01143{vertical-align:15.701400px;}
.v2_c01143{vertical-align:17.107200px;}
.lse_c01143{letter-spacing:-3.069990px;}
.ls15_c01143{letter-spacing:-2.986830px;}
.ls24_c01143{letter-spacing:-2.903333px;}
.ls14_c01143{letter-spacing:-2.855167px;}
.ls1f_c01143{letter-spacing:-2.827440px;}
.lsc_c01143{letter-spacing:-2.647267px;}
.ls10_c01143{letter-spacing:-2.577967px;}
.ls17_c01143{letter-spacing:-1.359567px;}
.ls12_c01143{letter-spacing:-0.666626px;}
.ls9_c01143{letter-spacing:0.000000px;}
.ls1b_c01143{letter-spacing:0.098327px;}
.ls21_c01143{letter-spacing:1.499909px;}
.ls1e_c01143{letter-spacing:2.124619px;}
.ls0_c01143{letter-spacing:2.145949px;}
.ls22_c01143{letter-spacing:2.276650px;}
.ls23_c01143{letter-spacing:2.359849px;}
.ls7_c01143{letter-spacing:2.394592px;}
.lsd_c01143{letter-spacing:2.420358px;}
.lsa_c01143{letter-spacing:2.630516px;}
.ls1a_c01143{letter-spacing:2.791810px;}
.ls11_c01143{letter-spacing:3.070830px;}
.ls6_c01143{letter-spacing:3.105076px;}
.ls2_c01143{letter-spacing:3.271732px;}
.ls3_c01143{letter-spacing:3.350675px;}
.ls1d_c01143{letter-spacing:3.433883px;}
.ls8_c01143{letter-spacing:3.587503px;}
.ls19_c01143{letter-spacing:3.672900px;}
.lsf_c01143{letter-spacing:3.722400px;}
.lsb_c01143{letter-spacing:3.781810px;}
.ls5_c01143{letter-spacing:3.824330px;}
.ls1c_c01143{letter-spacing:4.039200px;}
.ls20_c01143{letter-spacing:4.385700px;}
.ls4_c01143{letter-spacing:11.780901px;}
.ls1_c01143{letter-spacing:13.147101px;}
.ls13_c01143{letter-spacing:59.875398px;}
.ls18_c01143{letter-spacing:61.300998px;}
.ls16_c01143{letter-spacing:68.428998px;}
.sc__c01143{text-shadow:none;}
.sc0_c01143{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01143{-webkit-text-stroke:0px transparent;}
.sc0_c01143{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01143{word-spacing:-21.928500px;}
.ws1_c01143{word-spacing:-18.909050px;}
.ws2_c01143{word-spacing:-18.612000px;}
.ws3_c01143{word-spacing:0.000000px;}
._6_c01143{margin-left:-14.522662px;}
._5_c01143{margin-left:-8.168842px;}
._4_c01143{margin-left:-4.854366px;}
._2_c01143{margin-left:-3.245418px;}
._8_c01143{width:4.160090px;}
._7_c01143{width:7.715961px;}
._a_c01143{width:10.076319px;}
._b_c01143{width:29.906078px;}
._9_c01143{width:31.482000px;}
._c_c01143{width:32.805036px;}
._0_c01143{width:34.490106px;}
._1_c01143{width:45.083616px;}
._3_c01143{width:88.033829px;}
.fc0_c01143{color:transparent;}
.fs17_c01143{font-size:22.176000px;}
.fs12_c01143{font-size:25.146000px;}
.fs0_c01143{font-size:27.720000px;}
.fs4_c01143{font-size:45.936198px;}
.fs19_c01143{font-size:50.292000px;}
.fsf_c01143{font-size:55.836198px;}
.fs1a_c01143{font-size:56.628000px;}
.fs8_c01143{font-size:59.875398px;}
.fsd_c01143{font-size:61.300998px;}
.fs18_c01143{font-size:66.132198px;}
.fsb_c01143{font-size:68.428998px;}
.fs1_c01143{font-size:71.676198px;}
.fs10_c01143{font-size:73.260000px;}
.fse_c01143{font-size:73.458000px;}
.fs7_c01143{font-size:73.656198px;}
.fs6_c01143{font-size:74.448000px;}
.fs15_c01143{font-size:74.844000px;}
.fs2_c01143{font-size:75.636198px;}
.fs13_c01143{font-size:78.408000px;}
.fs3_c01143{font-size:78.606198px;}
.fs11_c01143{font-size:78.804000px;}
.fs14_c01143{font-size:80.784000px;}
.fs9_c01143{font-size:81.576198px;}
.fs16_c01143{font-size:81.972198px;}
.fsa_c01143{font-size:85.338000px;}
.fsc_c01143{font-size:85.536198px;}
.fs5_c01143{font-size:87.714000px;}
.y0_c01143{bottom:0.000000px;}
.y22_c01143{bottom:34.121385px;}
.y21_c01143{bottom:64.063935px;}
.y1_c01143{bottom:76.500000px;}
.y20_c01143{bottom:88.299135px;}
.y1f_c01143{bottom:149.238585px;}
.y1e_c01143{bottom:175.968585px;}
.y1d_c01143{bottom:184.522185px;}
.y2_c01143{bottom:209.826585px;}
.y1c_c01143{bottom:219.092985px;}
.y1b_c01143{bottom:250.817535px;}
.y1a_c01143{bottom:282.893535px;}
.y19_c01143{bottom:314.608185px;}
.y18_c01143{bottom:346.689135px;}
.y17_c01143{bottom:379.116585px;}
.y16_c01143{bottom:411.192585px;}
.y15_c01143{bottom:443.629935px;}
.y14_c01143{bottom:453.252735px;}
.y13_c01143{bottom:465.365385px;}
.y12_c01143{bottom:476.062335px;}
.y11_c01143{bottom:508.133385px;}
.y10_c01143{bottom:539.501535px;}
.yf_c01143{bottom:571.572585px;}
.ye_c01143{bottom:603.653535px;}
.yd_c01143{bottom:635.368185px;}
.yc_c01143{bottom:668.513385px;}
.yb_c01143{bottom:699.520185px;}
.ya_c01143{bottom:731.244735px;}
.y9_c01143{bottom:764.033535px;}
.y8_c01143{bottom:795.396735px;}
.y7_c01143{bottom:827.472735px;}
.y6_c01143{bottom:859.900185px;}
.y5_c01143{bottom:892.332585px;}
.y4_c01143{bottom:924.769935px;}
.y3_c01143{bottom:1079.086185px;}
.h17_c01143{height:23.128875px;}
.h12_c01143{height:26.226492px;}
.h2_c01143{height:28.911094px;}
.h9_c01143{height:39.877015px;}
.he_c01143{height:40.826465px;}
.hc_c01143{height:45.573713px;}
.h19_c01143{height:49.358848px;}
.h10_c01143{height:54.800175px;}
.h1a_c01143{height:59.061234px;}
.hf_c01143{height:72.095010px;}
.h8_c01143{height:72.289530px;}
.h7_c01143{height:73.066641px;}
.h15_c01143{height:73.455293px;}
.h4_c01143{height:74.232792px;}
.h3_c01143{height:74.756035px;}
.h13_c01143{height:76.953164px;}
.h5_c01143{height:77.147685px;}
.h11_c01143{height:77.341816px;}
.h18_c01143{height:79.180936px;}
.h14_c01143{height:79.285078px;}
.h16_c01143{height:80.451229px;}
.hb_c01143{height:83.712911px;}
.hd_c01143{height:83.907335px;}
.ha_c01143{height:85.081425px;}
.h6_c01143{height:86.086494px;}
.h1_c01143{height:1110.000000px;}
.h0_c01143{height:1263.000000px;}
.w1_c01143{width:775.500000px;}
.w0_c01143{width:892.500000px;}
.x0_c01143{left:0.000000px;}
.x2_c01143{left:47.635485px;}
.x1_c01143{left:58.500000px;}
.x74_c01143{left:82.216185px;}
.x18_c01143{left:137.552235px;}
.x4_c01143{left:139.363935px;}
.x48_c01143{left:150.154935px;}
.x61_c01143{left:160.441035px;}
.x66_c01143{left:170.836035px;}
.x2d_c01143{left:171.860685px;}
.x57_c01143{left:181.389435px;}
.x19_c01143{left:182.765535px;}
.x5_c01143{left:184.309935px;}
.x5e_c01143{left:192.343785px;}
.x21_c01143{left:194.249535px;}
.xe_c01143{left:199.051035px;}
.x2e_c01143{left:204.530685px;}
.xf_c01143{left:206.263185px;}
.x69_c01143{left:214.138635px;}
.x6_c01143{left:216.277035px;}
.x50_c01143{left:217.435335px;}
.x62_c01143{left:225.538485px;}
.x1a_c01143{left:226.612635px;}
.x10_c01143{left:238.032285px;}
.x49_c01143{left:239.259885px;}
.x67_c01143{left:246.877935px;}
.x35_c01143{left:248.060985px;}
.x42_c01143{left:249.471735px;}
.x75_c01143{left:259.901385px;}
.x1b_c01143{left:261.727935px;}
.x3d_c01143{left:272.009085px;}
.x11_c01143{left:273.573285px;}
.x36_c01143{left:283.255485px;}
.x22_c01143{left:293.630685px;}
.x6a_c01143{left:304.090035px;}
.x12_c01143{left:305.867085px;}
.x51_c01143{left:307.005585px;}
.x23_c01143{left:315.871035px;}
.x7_c01143{left:317.351085px;}
.x4a_c01143{left:328.315335px;}
.x53_c01143{left:330.141885px;}
.x6b_c01143{left:337.210485px;}
.x28_c01143{left:339.032085px;}
.x40_c01143{left:349.748835px;}
.x8_c01143{left:359.589435px;}
.x1c_c01143{left:361.762485px;}
.x54_c01143{left:371.028885px;}
.x43_c01143{left:372.593085px;}
.x5f_c01143{left:382.517835px;}
.x58_c01143{left:383.537535px;}
.x37_c01143{left:394.189935px;}
.x24_c01143{left:404.099835px;}
.x2f_c01143{left:405.139335px;}
.x9_c01143{left:406.371885px;}
.x44_c01143{left:416.034285px;}
.x13_c01143{left:418.974585px;}
.x1d_c01143{left:427.072785px;}
.x25_c01143{left:438.739935px;}
.x45_c01143{left:448.293435px;}
.x63_c01143{left:450.916935px;}
.x68_c01143{left:458.638935px;}
.x6c_c01143{left:459.861585px;}
.x4b_c01143{left:461.519835px;}
.x30_c01143{left:471.083235px;}
.x14_c01143{left:472.300935px;}
.x6f_c01143{left:481.601985px;}
.x29_c01143{left:483.557235px;}
.x64_c01143{left:491.813835px;}
.xa_c01143{left:493.912635px;}
.x3e_c01143{left:504.391785px;}
.x26_c01143{left:516.152985px;}
.x15_c01143{left:525.270885px;}
.x2a_c01143{left:526.840035px;}
.x38_c01143{left:528.567585px;}
.x31_c01143{left:537.576585px;}
.x4d_c01143{left:540.343635px;}
.x55_c01143{left:547.377585px;}
.x1e_c01143{left:548.996235px;}
.x46_c01143{left:558.777435px;}
.x4e_c01143{left:560.316885px;}
.x32_c01143{left:569.820885px;}
.x4c_c01143{left:571.310835px;}
.x39_c01143{left:572.414685px;}
.x60_c01143{left:580.166385px;}
.x52_c01143{left:581.750385px;}
.x1f_c01143{left:591.566235px;}
.xb_c01143{left:593.160135px;}
.x6d_c01143{left:601.545435px;}
.x3f_c01143{left:602.980935px;}
.x16_c01143{left:604.010535px;}
.x33_c01143{left:614.781735px;}
.x59_c01143{left:616.291485px;}
.x3a_c01143{left:622.761135px;}
.x20_c01143{left:626.280585px;}
.x2b_c01143{left:633.621435px;}
.x3b_c01143{left:635.452935px;}
.x5a_c01143{left:636.670635px;}
.xc_c01143{left:637.744785px;}
.x70_c01143{left:645.739035px;}
.x2c_c01143{left:647.946735px;}
.x41_c01143{left:658.346685px;}
.x27_c01143{left:660.054435px;}
.x3c_c01143{left:667.311135px;}
.x65_c01143{left:669.400035px;}
.xd_c01143{left:670.899885px;}
.x5b_c01143{left:680.765235px;}
.x47_c01143{left:681.779985px;}
.x4f_c01143{left:691.001835px;}
.x17_c01143{left:692.600685px;}
.x76_c01143{left:694.407435px;}
.x72_c01143{left:695.961735px;}
.x73_c01143{left:697.377435px;}
.x56_c01143{left:702.263085px;}
.x34_c01143{left:703.525335px;}
.x3_c01143{left:705.846885px;}
.x6e_c01143{left:712.519485px;}
.x5c_c01143{left:715.727085px;}
.x5d_c01143{left:727.433835px;}
.x71_c01143{left:737.071485px;}
@media print{
.v0_c01143{vertical-align:0.000000pt;}
.v3_c01143{vertical-align:12.689600pt;}
.v1_c01143{vertical-align:13.956800pt;}
.v2_c01143{vertical-align:15.206400pt;}
.lse_c01143{letter-spacing:-2.728880pt;}
.ls15_c01143{letter-spacing:-2.654960pt;}
.ls24_c01143{letter-spacing:-2.580741pt;}
.ls14_c01143{letter-spacing:-2.537926pt;}
.ls1f_c01143{letter-spacing:-2.513280pt;}
.lsc_c01143{letter-spacing:-2.353126pt;}
.ls10_c01143{letter-spacing:-2.291526pt;}
.ls17_c01143{letter-spacing:-1.208504pt;}
.ls12_c01143{letter-spacing:-0.592557pt;}
.ls9_c01143{letter-spacing:0.000000pt;}
.ls1b_c01143{letter-spacing:0.087402pt;}
.ls21_c01143{letter-spacing:1.333253pt;}
.ls1e_c01143{letter-spacing:1.888550pt;}
.ls0_c01143{letter-spacing:1.907510pt;}
.ls22_c01143{letter-spacing:2.023688pt;}
.ls23_c01143{letter-spacing:2.097644pt;}
.ls7_c01143{letter-spacing:2.128526pt;}
.lsd_c01143{letter-spacing:2.151430pt;}
.lsa_c01143{letter-spacing:2.338237pt;}
.ls1a_c01143{letter-spacing:2.481609pt;}
.ls11_c01143{letter-spacing:2.729626pt;}
.ls6_c01143{letter-spacing:2.760067pt;}
.ls2_c01143{letter-spacing:2.908206pt;}
.ls3_c01143{letter-spacing:2.978378pt;}
.ls1d_c01143{letter-spacing:3.052341pt;}
.ls8_c01143{letter-spacing:3.188891pt;}
.ls19_c01143{letter-spacing:3.264800pt;}
.lsf_c01143{letter-spacing:3.308800pt;}
.lsb_c01143{letter-spacing:3.361609pt;}
.ls5_c01143{letter-spacing:3.399405pt;}
.ls1c_c01143{letter-spacing:3.590400pt;}
.ls20_c01143{letter-spacing:3.898400pt;}
.ls4_c01143{letter-spacing:10.471912pt;}
.ls1_c01143{letter-spacing:11.686312pt;}
.ls13_c01143{letter-spacing:53.222576pt;}
.ls18_c01143{letter-spacing:54.489776pt;}
.ls16_c01143{letter-spacing:60.825776pt;}
.ws0_c01143{word-spacing:-19.492000pt;}
.ws1_c01143{word-spacing:-16.808044pt;}
.ws2_c01143{word-spacing:-16.544000pt;}
.ws3_c01143{word-spacing:0.000000pt;}
._6_c01143{margin-left:-12.909033pt;}
._5_c01143{margin-left:-7.261193pt;}
._4_c01143{margin-left:-4.314992pt;}
._2_c01143{margin-left:-2.884816pt;}
._8_c01143{width:3.697858pt;}
._7_c01143{width:6.858632pt;}
._a_c01143{width:8.956728pt;}
._b_c01143{width:26.583181pt;}
._9_c01143{width:27.984000pt;}
._c_c01143{width:29.160032pt;}
._0_c01143{width:30.657872pt;}
._1_c01143{width:40.074325pt;}
._3_c01143{width:78.252293pt;}
.fs17_c01143{font-size:19.712000pt;}
.fs12_c01143{font-size:22.352000pt;}
.fs0_c01143{font-size:24.640000pt;}
.fs4_c01143{font-size:40.832176pt;}
.fs19_c01143{font-size:44.704000pt;}
.fsf_c01143{font-size:49.632176pt;}
.fs1a_c01143{font-size:50.336000pt;}
.fs8_c01143{font-size:53.222576pt;}
.fsd_c01143{font-size:54.489776pt;}
.fs18_c01143{font-size:58.784176pt;}
.fsb_c01143{font-size:60.825776pt;}
.fs1_c01143{font-size:63.712176pt;}
.fs10_c01143{font-size:65.120000pt;}
.fse_c01143{font-size:65.296000pt;}
.fs7_c01143{font-size:65.472176pt;}
.fs6_c01143{font-size:66.176000pt;}
.fs15_c01143{font-size:66.528000pt;}
.fs2_c01143{font-size:67.232176pt;}
.fs13_c01143{font-size:69.696000pt;}
.fs3_c01143{font-size:69.872176pt;}
.fs11_c01143{font-size:70.048000pt;}
.fs14_c01143{font-size:71.808000pt;}
.fs9_c01143{font-size:72.512176pt;}
.fs16_c01143{font-size:72.864176pt;}
.fsa_c01143{font-size:75.856000pt;}
.fsc_c01143{font-size:76.032176pt;}
.fs5_c01143{font-size:77.968000pt;}
.y0_c01143{bottom:0.000000pt;}
.y22_c01143{bottom:30.330120pt;}
.y21_c01143{bottom:56.945720pt;}
.y1_c01143{bottom:68.000000pt;}
.y20_c01143{bottom:78.488120pt;}
.y1f_c01143{bottom:132.656520pt;}
.y1e_c01143{bottom:156.416520pt;}
.y1d_c01143{bottom:164.019720pt;}
.y2_c01143{bottom:186.512520pt;}
.y1c_c01143{bottom:194.749320pt;}
.y1b_c01143{bottom:222.948920pt;}
.y1a_c01143{bottom:251.460920pt;}
.y19_c01143{bottom:279.651720pt;}
.y18_c01143{bottom:308.168120pt;}
.y17_c01143{bottom:336.992520pt;}
.y16_c01143{bottom:365.504520pt;}
.y15_c01143{bottom:394.337720pt;}
.y14_c01143{bottom:402.891320pt;}
.y13_c01143{bottom:413.658120pt;}
.y12_c01143{bottom:423.166520pt;}
.y11_c01143{bottom:451.674120pt;}
.y10_c01143{bottom:479.556920pt;}
.yf_c01143{bottom:508.064520pt;}
.ye_c01143{bottom:536.580920pt;}
.yd_c01143{bottom:564.771720pt;}
.yc_c01143{bottom:594.234120pt;}
.yb_c01143{bottom:621.795720pt;}
.ya_c01143{bottom:649.995320pt;}
.y9_c01143{bottom:679.140920pt;}
.y8_c01143{bottom:707.019320pt;}
.y7_c01143{bottom:735.531320pt;}
.y6_c01143{bottom:764.355720pt;}
.y5_c01143{bottom:793.184520pt;}
.y4_c01143{bottom:822.017720pt;}
.y3_c01143{bottom:959.187720pt;}
.h17_c01143{height:20.559000pt;}
.h12_c01143{height:23.312438pt;}
.h2_c01143{height:25.698750pt;}
.h9_c01143{height:35.446236pt;}
.he_c01143{height:36.290191pt;}
.hc_c01143{height:40.509967pt;}
.h19_c01143{height:43.874531pt;}
.h10_c01143{height:48.711266pt;}
.h1a_c01143{height:52.498875pt;}
.hf_c01143{height:64.084453pt;}
.h8_c01143{height:64.257360pt;}
.h7_c01143{height:64.948125pt;}
.h15_c01143{height:65.293594pt;}
.h4_c01143{height:65.984704pt;}
.h3_c01143{height:66.449809pt;}
.h13_c01143{height:68.402813pt;}
.h5_c01143{height:68.575720pt;}
.h11_c01143{height:68.748281pt;}
.h18_c01143{height:70.383054pt;}
.h14_c01143{height:70.475625pt;}
.h16_c01143{height:71.512204pt;}
.hb_c01143{height:74.411477pt;}
.hd_c01143{height:74.584298pt;}
.ha_c01143{height:75.627934pt;}
.h6_c01143{height:76.521328pt;}
.h1_c01143{height:986.666667pt;}
.h0_c01143{height:1122.666667pt;}
.w1_c01143{width:689.333333pt;}
.w0_c01143{width:793.333333pt;}
.x0_c01143{left:0.000000pt;}
.x2_c01143{left:42.342653pt;}
.x1_c01143{left:52.000000pt;}
.x74_c01143{left:73.081053pt;}
.x18_c01143{left:122.268653pt;}
.x4_c01143{left:123.879053pt;}
.x48_c01143{left:133.471053pt;}
.x61_c01143{left:142.614253pt;}
.x66_c01143{left:151.854253pt;}
.x2d_c01143{left:152.765053pt;}
.x57_c01143{left:161.235053pt;}
.x19_c01143{left:162.458253pt;}
.x5_c01143{left:163.831053pt;}
.x5e_c01143{left:170.972253pt;}
.x21_c01143{left:172.666253pt;}
.xe_c01143{left:176.934253pt;}
.x2e_c01143{left:181.805053pt;}
.xf_c01143{left:183.345053pt;}
.x69_c01143{left:190.345453pt;}
.x6_c01143{left:192.246253pt;}
.x50_c01143{left:193.275853pt;}
.x62_c01143{left:200.478653pt;}
.x1a_c01143{left:201.433453pt;}
.x10_c01143{left:211.584253pt;}
.x49_c01143{left:212.675453pt;}
.x67_c01143{left:219.447053pt;}
.x35_c01143{left:220.498653pt;}
.x42_c01143{left:221.752653pt;}
.x75_c01143{left:231.023453pt;}
.x1b_c01143{left:232.647053pt;}
.x3d_c01143{left:241.785853pt;}
.x11_c01143{left:243.176253pt;}
.x36_c01143{left:251.782653pt;}
.x22_c01143{left:261.005053pt;}
.x6a_c01143{left:270.302253pt;}
.x12_c01143{left:271.881853pt;}
.x51_c01143{left:272.893853pt;}
.x23_c01143{left:280.774253pt;}
.x7_c01143{left:282.089853pt;}
.x4a_c01143{left:291.835853pt;}
.x53_c01143{left:293.459453pt;}
.x6b_c01143{left:299.742653pt;}
.x28_c01143{left:301.361853pt;}
.x40_c01143{left:310.887853pt;}
.x8_c01143{left:319.635053pt;}
.x1c_c01143{left:321.566653pt;}
.x54_c01143{left:329.803453pt;}
.x43_c01143{left:331.193853pt;}
.x5f_c01143{left:340.015853pt;}
.x58_c01143{left:340.922253pt;}
.x37_c01143{left:350.391053pt;}
.x24_c01143{left:359.199853pt;}
.x2f_c01143{left:360.123853pt;}
.x9_c01143{left:361.219453pt;}
.x44_c01143{left:369.808253pt;}
.x13_c01143{left:372.421853pt;}
.x1d_c01143{left:379.620253pt;}
.x25_c01143{left:389.991053pt;}
.x45_c01143{left:398.483053pt;}
.x63_c01143{left:400.815053pt;}
.x68_c01143{left:407.679053pt;}
.x6c_c01143{left:408.765853pt;}
.x4b_c01143{left:410.239853pt;}
.x30_c01143{left:418.740653pt;}
.x14_c01143{left:419.823053pt;}
.x6f_c01143{left:428.090653pt;}
.x29_c01143{left:429.828653pt;}
.x64_c01143{left:437.167853pt;}
.xa_c01143{left:439.033453pt;}
.x3e_c01143{left:448.348253pt;}
.x26_c01143{left:458.802653pt;}
.x15_c01143{left:466.907453pt;}
.x2a_c01143{left:468.302253pt;}
.x38_c01143{left:469.837853pt;}
.x31_c01143{left:477.845853pt;}
.x4d_c01143{left:480.305453pt;}
.x55_c01143{left:486.557853pt;}
.x1e_c01143{left:487.996653pt;}
.x46_c01143{left:496.691053pt;}
.x4e_c01143{left:498.059453pt;}
.x32_c01143{left:506.507453pt;}
.x4c_c01143{left:507.831853pt;}
.x39_c01143{left:508.813053pt;}
.x60_c01143{left:515.703453pt;}
.x52_c01143{left:517.111453pt;}
.x1f_c01143{left:525.836653pt;}
.xb_c01143{left:527.253453pt;}
.x6d_c01143{left:534.707053pt;}
.x3f_c01143{left:535.983053pt;}
.x16_c01143{left:536.898253pt;}
.x33_c01143{left:546.472653pt;}
.x59_c01143{left:547.814653pt;}
.x3a_c01143{left:553.565453pt;}
.x20_c01143{left:556.693853pt;}
.x2b_c01143{left:563.219053pt;}
.x3b_c01143{left:564.847053pt;}
.x5a_c01143{left:565.929453pt;}
.xc_c01143{left:566.884253pt;}
.x70_c01143{left:573.990253pt;}
.x2c_c01143{left:575.952653pt;}
.x41_c01143{left:585.197053pt;}
.x27_c01143{left:586.715053pt;}
.x3c_c01143{left:593.165453pt;}
.x65_c01143{left:595.022253pt;}
.xd_c01143{left:596.355453pt;}
.x5b_c01143{left:605.124653pt;}
.x47_c01143{left:606.026653pt;}
.x4f_c01143{left:614.223853pt;}
.x17_c01143{left:615.645053pt;}
.x76_c01143{left:617.251053pt;}
.x72_c01143{left:618.632653pt;}
.x73_c01143{left:619.891053pt;}
.x56_c01143{left:624.233853pt;}
.x34_c01143{left:625.355853pt;}
.x3_c01143{left:627.419453pt;}
.x6e_c01143{left:633.350653pt;}
.x5c_c01143{left:636.201853pt;}
.x5d_c01143{left:646.607853pt;}
.x71_c01143{left:655.174653pt;}
}





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

.ir_c01144:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01144{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01144;src:url('chunks/assets/font_711c531dfff60df26866f442.woff2')format("woff");}.ff1_c01144{font-family:ff1_c01144;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01144;src:url('chunks/assets/font_fe5565b06c7f85a142386c0b.woff2')format("woff");}.ff2_c01144{font-family:ff2_c01144;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01144;src:url('chunks/assets/font_880eca6dfb18372826ca16e7.woff2')format("woff");}.ff3_c01144{font-family:ff3_c01144;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01144;src:url('chunks/assets/font_6c3ab67d041ce2e9efac64ad.woff2')format("woff");}.ff4_c01144{font-family:ff4_c01144;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01144;src:url('chunks/assets/font_d138070b6db105757ad18256.woff2')format("woff");}.ff5_c01144{font-family:ff5_c01144;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m52_c01144{transform:matrix(0.054879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054879,0.000000,0.000000,0.250000,0,0);}
.m4b_c01144{transform:matrix(0.105264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105264,0.000000,0.000000,0.250000,0,0);}
.m53_c01144{transform:matrix(0.121951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121951,0.000000,0.000000,0.250000,0,0);}
.m75_c01144{transform:matrix(0.141749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141749,0.000000,0.000000,0.250000,0,0);}
.m2_c01144{transform:matrix(0.153410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153410,0.000000,0.000000,0.250000,0,0);}
.m76_c01144{transform:matrix(0.160279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160279,0.000000,0.000000,0.250000,0,0);}
.m64_c01144{transform:matrix(0.167151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167151,0.000000,0.000000,0.250000,0,0);}
.m25_c01144{transform:matrix(0.192683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192683,0.000000,0.000000,0.250000,0,0);}
.m14_c01144{transform:matrix(0.222249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222249,0.000000,0.000000,0.250000,0,0);}
.m3f_c01144{transform:matrix(0.225322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225322,0.000000,0.000000,0.250000,0,0);}
.m78_c01144{transform:matrix(0.229832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229832,0.000000,0.000000,0.250000,0,0);}
.m4a_c01144{transform:matrix(0.244190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244190,0.000000,0.000000,0.250000,0,0);}
.m88_c01144{transform:matrix(0.247251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247251,0.000000,0.000000,0.250000,0,0);}
.m3d_c01144{transform:matrix(0.247388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247388,0.000000,0.000000,0.250000,0,0);}
.m1c_c01144{transform:matrix(0.247435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247435,0.000000,0.000000,0.250000,0,0);}
.m0_c01144{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m65_c01144{transform:matrix(0.250628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250628,0.000000,0.000000,0.250000,0,0);}
.m5c_c01144{transform:matrix(0.250967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250967,0.000000,0.000000,0.250000,0,0);}
.ma_c01144{transform:matrix(0.252035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252035,0.000000,0.000000,0.250000,0,0);}
.m13_c01144{transform:matrix(0.255553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255553,0.000000,0.000000,0.250000,0,0);}
.m2f_c01144{transform:matrix(0.255802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255802,0.000000,0.000000,0.250000,0,0);}
.m51_c01144{transform:matrix(0.256098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256098,0.000000,0.000000,0.250000,0,0);}
.m18_c01144{transform:matrix(0.256927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256927,0.000000,0.000000,0.250000,0,0);}
.m1b_c01144{transform:matrix(0.257364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257364,0.000000,0.000000,0.250000,0,0);}
.m45_c01144{transform:matrix(0.257953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257953,0.000000,0.000000,0.250000,0,0);}
.m1_c01144{transform:matrix(0.258290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258290,0.000000,0.000000,0.250000,0,0);}
.mc_c01144{transform:matrix(0.258769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258769,0.000000,0.000000,0.250000,0,0);}
.m77_c01144{transform:matrix(0.259366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259366,0.000000,0.000000,0.250000,0,0);}
.m17_c01144{transform:matrix(0.261453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261453,0.000000,0.000000,0.250000,0,0);}
.m8b_c01144{transform:matrix(0.262567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262567,0.000000,0.000000,0.250000,0,0);}
.m69_c01144{transform:matrix(0.262787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262787,0.000000,0.000000,0.250000,0,0);}
.m63_c01144{transform:matrix(0.263630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263630,0.000000,0.000000,0.250000,0,0);}
.m71_c01144{transform:matrix(0.267955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267955,0.000000,0.000000,0.250000,0,0);}
.m22_c01144{transform:matrix(0.268858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268858,0.000000,0.000000,0.250000,0,0);}
.m5d_c01144{transform:matrix(0.269108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269108,0.000000,0.000000,0.250000,0,0);}
.m5e_c01144{transform:matrix(0.269386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269386,0.000000,0.000000,0.250000,0,0);}
.m55_c01144{transform:matrix(0.269425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269425,0.000000,0.000000,0.250000,0,0);}
.m33_c01144{transform:matrix(0.269576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269576,0.000000,0.000000,0.250000,0,0);}
.m7d_c01144{transform:matrix(0.269956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269956,0.000000,0.000000,0.250000,0,0);}
.m60_c01144{transform:matrix(0.270264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270264,0.000000,0.000000,0.250000,0,0);}
.m6_c01144{transform:matrix(0.270265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270265,0.000000,0.000000,0.250000,0,0);}
.m4f_c01144{transform:matrix(0.270312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270312,0.000000,0.000000,0.250000,0,0);}
.m74_c01144{transform:matrix(0.270797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270797,0.000000,0.000000,0.250000,0,0);}
.m56_c01144{transform:matrix(0.272956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272956,0.000000,0.000000,0.250000,0,0);}
.md_c01144{transform:matrix(0.273562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273562,0.000000,0.000000,0.250000,0,0);}
.m6d_c01144{transform:matrix(0.274317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274317,0.000000,0.000000,0.250000,0,0);}
.m41_c01144{transform:matrix(0.274391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274391,0.000000,0.000000,0.250000,0,0);}
.m30_c01144{transform:matrix(0.275033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275033,0.000000,0.000000,0.250000,0,0);}
.m1a_c01144{transform:matrix(0.275157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275157,0.000000,0.000000,0.250000,0,0);}
.m8_c01144{transform:matrix(0.275828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275828,0.000000,0.000000,0.250000,0,0);}
.m31_c01144{transform:matrix(0.275916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275916,0.000000,0.000000,0.250000,0,0);}
.m5_c01144{transform:matrix(0.277021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277021,0.000000,0.000000,0.250000,0,0);}
.mf_c01144{transform:matrix(0.277085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277085,0.000000,0.000000,0.250000,0,0);}
.m58_c01144{transform:matrix(0.277126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277126,0.000000,0.000000,0.250000,0,0);}
.m61_c01144{transform:matrix(0.277165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277165,0.000000,0.000000,0.250000,0,0);}
.m12_c01144{transform:matrix(0.279147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279147,0.000000,0.000000,0.250000,0,0);}
.m62_c01144{transform:matrix(0.279233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279233,0.000000,0.000000,0.250000,0,0);}
.m7f_c01144{transform:matrix(0.279600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279600,0.000000,0.000000,0.250000,0,0);}
.m10_c01144{transform:matrix(0.280463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280463,0.000000,0.000000,0.250000,0,0);}
.m16_c01144{transform:matrix(0.281595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281595,0.000000,0.000000,0.250000,0,0);}
.m1d_c01144{transform:matrix(0.282289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282289,0.000000,0.000000,0.250000,0,0);}
.m54_c01144{transform:matrix(0.283981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283981,0.000000,0.000000,0.250000,0,0);}
.m11_c01144{transform:matrix(0.284044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284044,0.000000,0.000000,0.250000,0,0);}
.m81_c01144{transform:matrix(0.284213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284213,0.000000,0.000000,0.250000,0,0);}
.m44_c01144{transform:matrix(0.285372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285372,0.000000,0.000000,0.250000,0,0);}
.m82_c01144{transform:matrix(0.285789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285789,0.000000,0.000000,0.250000,0,0);}
.m4e_c01144{transform:matrix(0.286186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286186,0.000000,0.000000,0.250000,0,0);}
.m2a_c01144{transform:matrix(0.286217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286217,0.000000,0.000000,0.250000,0,0);}
.m79_c01144{transform:matrix(0.286936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286936,0.000000,0.000000,0.250000,0,0);}
.m34_c01144{transform:matrix(0.287143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287143,0.000000,0.000000,0.250000,0,0);}
.m3b_c01144{transform:matrix(0.287156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287156,0.000000,0.000000,0.250000,0,0);}
.m43_c01144{transform:matrix(0.287858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287858,0.000000,0.000000,0.250000,0,0);}
.m3e_c01144{transform:matrix(0.287998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287998,0.000000,0.000000,0.250000,0,0);}
.m9_c01144{transform:matrix(0.288195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288195,0.000000,0.000000,0.250000,0,0);}
.m42_c01144{transform:matrix(0.288614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288614,0.000000,0.000000,0.250000,0,0);}
.m6c_c01144{transform:matrix(0.288887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288887,0.000000,0.000000,0.250000,0,0);}
.mb_c01144{transform:matrix(0.289552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289552,0.000000,0.000000,0.250000,0,0);}
.m29_c01144{transform:matrix(0.289651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289651,0.000000,0.000000,0.250000,0,0);}
.m59_c01144{transform:matrix(0.290361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290361,0.000000,0.000000,0.250000,0,0);}
.m5b_c01144{transform:matrix(0.290525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290525,0.000000,0.000000,0.250000,0,0);}
.m5f_c01144{transform:matrix(0.291018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291018,0.000000,0.000000,0.250000,0,0);}
.m4_c01144{transform:matrix(0.291598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291598,0.000000,0.000000,0.250000,0,0);}
.m8a_c01144{transform:matrix(0.291857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291857,0.000000,0.000000,0.250000,0,0);}
.m7_c01144{transform:matrix(0.293061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293061,0.000000,0.000000,0.250000,0,0);}
.m36_c01144{transform:matrix(0.294632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294632,0.000000,0.000000,0.250000,0,0);}
.m3_c01144{transform:matrix(0.295198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295198,0.000000,0.000000,0.250000,0,0);}
.m83_c01144{transform:matrix(0.295486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295486,0.000000,0.000000,0.250000,0,0);}
.m57_c01144{transform:matrix(0.296716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296716,0.000000,0.000000,0.250000,0,0);}
.m6b_c01144{transform:matrix(0.297033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297033,0.000000,0.000000,0.250000,0,0);}
.m15_c01144{transform:matrix(0.297066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297066,0.000000,0.000000,0.250000,0,0);}
.m20_c01144{transform:matrix(0.298576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298576,0.000000,0.000000,0.250000,0,0);}
.m26_c01144{transform:matrix(0.298580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298580,0.000000,0.000000,0.250000,0,0);}
.m39_c01144{transform:matrix(0.299729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299729,0.000000,0.000000,0.250000,0,0);}
.m68_c01144{transform:matrix(0.301839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301839,0.000000,0.000000,0.250000,0,0);}
.m73_c01144{transform:matrix(0.302024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302024,0.000000,0.000000,0.250000,0,0);}
.m46_c01144{transform:matrix(0.303036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303036,0.000000,0.000000,0.250000,0,0);}
.m70_c01144{transform:matrix(0.303261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303261,0.000000,0.000000,0.250000,0,0);}
.m7e_c01144{transform:matrix(0.305127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305127,0.000000,0.000000,0.250000,0,0);}
.m72_c01144{transform:matrix(0.305136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305136,0.000000,0.000000,0.250000,0,0);}
.me_c01144{transform:matrix(0.308210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308210,0.000000,0.000000,0.250000,0,0);}
.m19_c01144{transform:matrix(0.309406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309406,0.000000,0.000000,0.250000,0,0);}
.m5a_c01144{transform:matrix(0.309634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309634,0.000000,0.000000,0.250000,0,0);}
.m7b_c01144{transform:matrix(0.312523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312523,0.000000,0.000000,0.250000,0,0);}
.m40_c01144{transform:matrix(0.314301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314301,0.000000,0.000000,0.250000,0,0);}
.m37_c01144{transform:matrix(0.314881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314881,0.000000,0.000000,0.250000,0,0);}
.m4d_c01144{transform:matrix(0.316899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316899,0.000000,0.000000,0.250000,0,0);}
.m7a_c01144{transform:matrix(0.316944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316944,0.000000,0.000000,0.250000,0,0);}
.m2b_c01144{transform:matrix(0.317607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317607,0.000000,0.000000,0.250000,0,0);}
.m50_c01144{transform:matrix(0.318507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318507,0.000000,0.000000,0.250000,0,0);}
.m6f_c01144{transform:matrix(0.320109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320109,0.000000,0.000000,0.250000,0,0);}
.m2c_c01144{transform:matrix(0.322139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322139,0.000000,0.000000,0.250000,0,0);}
.m86_c01144{transform:matrix(0.324428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324428,0.000000,0.000000,0.250000,0,0);}
.m38_c01144{transform:matrix(0.325184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325184,0.000000,0.000000,0.250000,0,0);}
.m66_c01144{transform:matrix(0.329447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329447,0.000000,0.000000,0.250000,0,0);}
.m80_c01144{transform:matrix(0.332033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332033,0.000000,0.000000,0.250000,0,0);}
.m4c_c01144{transform:matrix(0.332915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332915,0.000000,0.000000,0.250000,0,0);}
.m6e_c01144{transform:matrix(0.333155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333155,0.000000,0.000000,0.250000,0,0);}
.m89_c01144{transform:matrix(0.333406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333406,0.000000,0.000000,0.250000,0,0);}
.m87_c01144{transform:matrix(0.333921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333921,0.000000,0.000000,0.250000,0,0);}
.m6a_c01144{transform:matrix(0.333981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333981,0.000000,0.000000,0.250000,0,0);}
.m2e_c01144{transform:matrix(0.338882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338882,0.000000,0.000000,0.250000,0,0);}
.m32_c01144{transform:matrix(0.339192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339192,0.000000,0.000000,0.250000,0,0);}
.m47_c01144{transform:matrix(0.340057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340057,0.000000,0.000000,0.250000,0,0);}
.m2d_c01144{transform:matrix(0.340358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340358,0.000000,0.000000,0.250000,0,0);}
.m24_c01144{transform:matrix(0.340848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340848,0.000000,0.000000,0.250000,0,0);}
.m67_c01144{transform:matrix(0.344580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344580,0.000000,0.000000,0.250000,0,0);}
.m3a_c01144{transform:matrix(0.347217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347217,0.000000,0.000000,0.250000,0,0);}
.m1f_c01144{transform:matrix(0.348734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348734,0.000000,0.000000,0.250000,0,0);}
.m48_c01144{transform:matrix(0.349090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349090,0.000000,0.000000,0.250000,0,0);}
.m7c_c01144{transform:matrix(0.349661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349661,0.000000,0.000000,0.250000,0,0);}
.m49_c01144{transform:matrix(0.350510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350510,0.000000,0.000000,0.250000,0,0);}
.m35_c01144{transform:matrix(0.351497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351497,0.000000,0.000000,0.250000,0,0);}
.m27_c01144{transform:matrix(0.354043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354043,0.000000,0.000000,0.250000,0,0);}
.m85_c01144{transform:matrix(0.357123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357123,0.000000,0.000000,0.250000,0,0);}
.m23_c01144{transform:matrix(0.363378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363378,0.000000,0.000000,0.250000,0,0);}
.m84_c01144{transform:matrix(0.372395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372395,0.000000,0.000000,0.250000,0,0);}
.m3c_c01144{transform:matrix(0.376562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376562,0.000000,0.000000,0.250000,0,0);}
.m1e_c01144{transform:matrix(0.395390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395390,0.000000,0.000000,0.250000,0,0);}
.m21_c01144{transform:matrix(0.401666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401666,0.000000,0.000000,0.250000,0,0);}
.m28_c01144{transform:matrix(0.406755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406755,0.000000,0.000000,0.250000,0,0);}
.v3_c01144{vertical-align:-9.959400px;}
.v1_c01144{vertical-align:-8.573400px;}
.v5_c01144{vertical-align:-5.702400px;}
.v7_c01144{vertical-align:-2.859120px;}
.v0_c01144{vertical-align:0.000000px;}
.v4_c01144{vertical-align:5.702400px;}
.v2_c01144{vertical-align:9.959400px;}
.v6_c01144{vertical-align:24.235200px;}
.ls13_c01144{letter-spacing:-3.659040px;}
.ls1c_c01144{letter-spacing:-3.492727px;}
.ls9_c01144{letter-spacing:-2.869027px;}
.lsb_c01144{letter-spacing:-2.633400px;}
.ls1d_c01144{letter-spacing:-2.605680px;}
.ls10_c01144{letter-spacing:-2.509947px;}
.ls11_c01144{letter-spacing:-2.465100px;}
.ls1a_c01144{letter-spacing:-2.213244px;}
.ls19_c01144{letter-spacing:-2.149092px;}
.ls7_c01144{letter-spacing:-2.077461px;}
.lsa_c01144{letter-spacing:-1.015245px;}
.ls16_c01144{letter-spacing:-1.000692px;}
.ls4_c01144{letter-spacing:0.000000px;}
.ls14_c01144{letter-spacing:0.496584px;}
.ls2_c01144{letter-spacing:1.226412px;}
.lse_c01144{letter-spacing:1.361844px;}
.ls1f_c01144{letter-spacing:2.099196px;}
.ls17_c01144{letter-spacing:2.100978px;}
.lsc_c01144{letter-spacing:2.881382px;}
.lsf_c01144{letter-spacing:3.199767px;}
.ls8_c01144{letter-spacing:3.596472px;}
.ls1e_c01144{letter-spacing:3.722400px;}
.ls3_c01144{letter-spacing:3.762000px;}
.ls0_c01144{letter-spacing:3.979810px;}
.ls12_c01144{letter-spacing:4.009500px;}
.ls5_c01144{letter-spacing:4.296610px;}
.ls18_c01144{letter-spacing:5.187610px;}
.ls1_c01144{letter-spacing:13.384800px;}
.ls15_c01144{letter-spacing:54.172998px;}
.lsd_c01144{letter-spacing:58.449798px;}
.ls1b_c01144{letter-spacing:61.300998px;}
.ls6_c01144{letter-spacing:62.726400px;}
.sc__c01144{text-shadow:none;}
.sc0_c01144{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01144{-webkit-text-stroke:0px transparent;}
.sc0_c01144{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01144{word-spacing:-22.406472px;}
.ws4_c01144{word-spacing:-20.916720px;}
.ws7_c01144{word-spacing:-20.036412px;}
.ws2_c01144{word-spacing:-17.622000px;}
.ws3_c01144{word-spacing:-13.488255px;}
.ws6_c01144{word-spacing:-3.686760px;}
.ws8_c01144{word-spacing:0.000000px;}
.ws5_c01144{word-spacing:2.382930px;}
.ws0_c01144{word-spacing:5.519335px;}
._4_c01144{margin-left:-10.335402px;}
._5_c01144{margin-left:-1.512720px;}
._8_c01144{width:9.941580px;}
._1_c01144{width:14.099976px;}
._2_c01144{width:17.113747px;}
._3_c01144{width:18.804504px;}
._9_c01144{width:22.872960px;}
._a_c01144{width:23.950772px;}
._7_c01144{width:28.800882px;}
._6_c01144{width:46.553760px;}
._0_c01144{width:48.480300px;}
.fc0_c01144{color:transparent;}
.fs18_c01144{font-size:22.176000px;}
.fs0_c01144{font-size:28.314000px;}
.fs1_c01144{font-size:34.056198px;}
.fs6_c01144{font-size:39.402000px;}
.fsc_c01144{font-size:42.570000px;}
.fs10_c01144{font-size:54.172998px;}
.fs9_c01144{font-size:58.014000px;}
.fsb_c01144{font-size:58.449798px;}
.fs12_c01144{font-size:61.300998px;}
.fs3_c01144{font-size:62.726400px;}
.fs15_c01144{font-size:66.330000px;}
.fs8_c01144{font-size:70.488000px;}
.fs17_c01144{font-size:74.448000px;}
.fsa_c01144{font-size:74.844000px;}
.fs4_c01144{font-size:75.240000px;}
.fs14_c01144{font-size:76.032198px;}
.fs5_c01144{font-size:79.596198px;}
.fsd_c01144{font-size:80.190000px;}
.fs7_c01144{font-size:81.972198px;}
.fse_c01144{font-size:82.170000px;}
.fs13_c01144{font-size:84.942198px;}
.fs2_c01144{font-size:85.932198px;}
.fs16_c01144{font-size:99.792198px;}
.fs11_c01144{font-size:103.752198px;}
.fsf_c01144{font-size:104.544000px;}
.y0_c01144{bottom:0.000000px;}
.y19_c01144{bottom:25.572735px;}
.y1_c01144{bottom:76.500000px;}
.y18_c01144{bottom:128.923785px;}
.y17_c01144{bottom:160.648335px;}
.y16_c01144{bottom:226.933785px;}
.y15_c01144{bottom:259.722585px;}
.y14_c01144{bottom:291.803535px;}
.y13_c01144{bottom:316.395135px;}
.y12_c01144{bottom:323.518185px;}
.y11_c01144{bottom:387.675135px;}
.y10_c01144{bottom:420.463935px;}
.yf_c01144{bottom:484.972335px;}
.ye_c01144{bottom:517.043385px;}
.yd_c01144{bottom:548.767935px;}
.yc_c01144{bottom:612.563535px;}
.yb_c01144{bottom:644.995935px;}
.ya_c01144{bottom:709.147935px;}
.y9_c01144{bottom:774.369135px;}
.y8_c01144{bottom:806.440185px;}
.y7_c01144{bottom:869.171535px;}
.y6_c01144{bottom:901.598985px;}
.y5_c01144{bottom:932.967135px;}
.y3_c01144{bottom:1064.117385px;}
.y2_c01144{bottom:1067.681385px;}
.y4_c01144{bottom:1079.798985px;}
.h17_c01144{height:23.128875px;}
.h2_c01144{height:29.530617px;}
.h3_c01144{height:35.519550px;}
.hf_c01144{height:36.079217px;}
.ha_c01144{height:38.927565px;}
.h11_c01144{height:40.826465px;}
.h5_c01144{height:41.775782px;}
.h14_c01144{height:69.180117px;}
.h16_c01144{height:73.066641px;}
.hd_c01144{height:73.455293px;}
.h6_c01144{height:73.843945px;}
.h7_c01144{height:78.119315px;}
.h9_c01144{height:78.472969px;}
.hc_c01144{height:78.702100px;}
.h13_c01144{height:79.299207px;}
.h8_c01144{height:80.451229px;}
.hb_c01144{height:80.605239px;}
.h12_c01144{height:83.366122px;}
.h4_c01144{height:84.337753px;}
.h15_c01144{height:97.940585px;}
.he_c01144{height:102.604219px;}
.h10_c01144{height:108.210300px;}
.h1_c01144{height:1110.000000px;}
.h0_c01144{height:1263.000000px;}
.w1_c01144{width:775.500000px;}
.w0_c01144{width:892.500000px;}
.x0_c01144{left:0.000000px;}
.x1_c01144{left:58.500000px;}
.x3b_c01144{left:80.607435px;}
.x21_c01144{left:81.681585px;}
.x2_c01144{left:116.712735px;}
.x1b_c01144{left:135.354435px;}
.x4_c01144{left:136.844385px;}
.x12_c01144{left:138.359085px;}
.x60_c01144{left:147.996735px;}
.x3c_c01144{left:168.653085px;}
.x57_c01144{left:170.504385px;}
.x5_c01144{left:180.721185px;}
.x38_c01144{left:182.626935px;}
.x22_c01144{left:192.210135px;}
.x2c_c01144{left:193.541685px;}
.x13_c01144{left:201.392385px;}
.x14_c01144{left:202.837785px;}
.x52_c01144{left:214.623735px;}
.x23_c01144{left:224.256435px;}
.x6_c01144{left:225.276135px;}
.x61_c01144{left:227.780835px;}
.x5c_c01144{left:236.091885px;}
.x2d_c01144{left:244.888035px;}
.x1c_c01144{left:245.897835px;}
.x62_c01144{left:246.996735px;}
.x42_c01144{left:249.001485px;}
.x24_c01144{left:258.465885px;}
.x4a_c01144{left:268.316385px;}
.x7_c01144{left:269.855835px;}
.x43_c01144{left:279.404385px;}
.x33_c01144{left:280.988385px;}
.x5d_c01144{left:290.779485px;}
.x44_c01144{left:293.660385px;}
.x45_c01144{left:296.511585px;}
.x1d_c01144{left:301.783335px;}
.x2e_c01144{left:302.971335px;}
.x4f_c01144{left:312.831735px;}
.x8_c01144{left:314.450385px;}
.x25_c01144{left:324.276135px;}
.x4b_c01144{left:335.458185px;}
.x46_c01144{left:345.927435px;}
.x30_c01144{left:347.219385px;}
.x15_c01144{left:357.020385px;}
.x9_c01144{left:358.282635px;}
.x53_c01144{left:367.747035px;}
.x2f_c01144{left:369.241935px;}
.x3d_c01144{left:379.448835px;}
.x4c_c01144{left:381.557535px;}
.x26_c01144{left:392.150535px;}
.x34_c01144{left:402.100035px;}
.xa_c01144{left:403.213785px;}
.x50_c01144{left:404.896785px;}
.x16_c01144{left:412.990035px;}
.x5e_c01144{left:414.232485px;}
.x1e_c01144{left:424.632435px;}
.x47_c01144{left:426.107535px;}
.x35_c01144{left:436.170885px;}
.x1f_c01144{left:446.239185px;}
.x20_c01144{left:448.199385px;}
.x48_c01144{left:456.396585px;}
.x27_c01144{left:458.119185px;}
.x17_c01144{left:468.474585px;}
.x51_c01144{left:478.963635px;}
.x40_c01144{left:480.225885px;}
.x58_c01144{left:489.234885px;}
.xb_c01144{left:491.422785px;}
.x39_c01144{left:501.397035px;}
.x28_c01144{left:503.183985px;}
.x18_c01144{left:524.077935px;}
.x54_c01144{left:526.315335px;}
.xc_c01144{left:535.977735px;}
.x31_c01144{left:546.105435px;}
.x4d_c01144{left:557.109285px;}
.x59_c01144{left:568.350735px;}
.x19_c01144{left:578.706135px;}
.xd_c01144{left:580.220835px;}
.x55_c01144{left:588.754635px;}
.x41_c01144{left:590.204985px;}
.x36_c01144{left:591.769185px;}
.x63_c01144{left:599.011035px;}
.x32_c01144{left:601.332585px;}
.x29_c01144{left:602.817585px;}
.xe_c01144{left:604.495635px;}
.x37_c01144{left:612.663135px;}
.x2a_c01144{left:623.102685px;}
.xf_c01144{left:624.142185px;}
.x49_c01144{left:633.250185px;}
.x4e_c01144{left:645.560835px;}
.x5a_c01144{left:647.426985px;}
.x3e_c01144{left:659.306985px;}
.x2b_c01144{left:666.811185px;}
.x10_c01144{left:668.365485px;}
.x5f_c01144{left:677.037885px;}
.x5b_c01144{left:678.577335px;}
.x1a_c01144{left:689.249535px;}
.x3f_c01144{left:690.838485px;}
.x11_c01144{left:693.239235px;}
.x3a_c01144{left:700.985985px;}
.x3_c01144{left:706.104285px;}
.x56_c01144{left:734.299485px;}
@media print{
.v3_c01144{vertical-align:-8.852800pt;}
.v1_c01144{vertical-align:-7.620800pt;}
.v5_c01144{vertical-align:-5.068800pt;}
.v7_c01144{vertical-align:-2.541440pt;}
.v0_c01144{vertical-align:0.000000pt;}
.v4_c01144{vertical-align:5.068800pt;}
.v2_c01144{vertical-align:8.852800pt;}
.v6_c01144{vertical-align:21.542400pt;}
.ls13_c01144{letter-spacing:-3.252480pt;}
.ls1c_c01144{letter-spacing:-3.104646pt;}
.ls9_c01144{letter-spacing:-2.550246pt;}
.lsb_c01144{letter-spacing:-2.340800pt;}
.ls1d_c01144{letter-spacing:-2.316160pt;}
.ls10_c01144{letter-spacing:-2.231064pt;}
.ls11_c01144{letter-spacing:-2.191200pt;}
.ls1a_c01144{letter-spacing:-1.967328pt;}
.ls19_c01144{letter-spacing:-1.910304pt;}
.ls7_c01144{letter-spacing:-1.846632pt;}
.lsa_c01144{letter-spacing:-0.902440pt;}
.ls16_c01144{letter-spacing:-0.889504pt;}
.ls4_c01144{letter-spacing:0.000000pt;}
.ls14_c01144{letter-spacing:0.441408pt;}
.ls2_c01144{letter-spacing:1.090144pt;}
.lse_c01144{letter-spacing:1.210528pt;}
.ls1f_c01144{letter-spacing:1.865952pt;}
.ls17_c01144{letter-spacing:1.867536pt;}
.lsc_c01144{letter-spacing:2.561229pt;}
.lsf_c01144{letter-spacing:2.844237pt;}
.ls8_c01144{letter-spacing:3.196864pt;}
.ls1e_c01144{letter-spacing:3.308800pt;}
.ls3_c01144{letter-spacing:3.344000pt;}
.ls0_c01144{letter-spacing:3.537609pt;}
.ls12_c01144{letter-spacing:3.564000pt;}
.ls5_c01144{letter-spacing:3.819209pt;}
.ls18_c01144{letter-spacing:4.611209pt;}
.ls1_c01144{letter-spacing:11.897600pt;}
.ls15_c01144{letter-spacing:48.153776pt;}
.lsd_c01144{letter-spacing:51.955376pt;}
.ls1b_c01144{letter-spacing:54.489776pt;}
.ls6_c01144{letter-spacing:55.756800pt;}
.ws1_c01144{word-spacing:-19.916864pt;}
.ws4_c01144{word-spacing:-18.592640pt;}
.ws7_c01144{word-spacing:-17.810144pt;}
.ws2_c01144{word-spacing:-15.664000pt;}
.ws3_c01144{word-spacing:-11.989560pt;}
.ws6_c01144{word-spacing:-3.277120pt;}
.ws8_c01144{word-spacing:0.000000pt;}
.ws5_c01144{word-spacing:2.118160pt;}
.ws0_c01144{word-spacing:4.906075pt;}
._4_c01144{margin-left:-9.187024pt;}
._5_c01144{margin-left:-1.344640pt;}
._8_c01144{width:8.836960pt;}
._1_c01144{width:12.533312pt;}
._2_c01144{width:15.212219pt;}
._3_c01144{width:16.715115pt;}
._9_c01144{width:20.331520pt;}
._a_c01144{width:21.289575pt;}
._7_c01144{width:25.600784pt;}
._6_c01144{width:41.381120pt;}
._0_c01144{width:43.093600pt;}
.fs18_c01144{font-size:19.712000pt;}
.fs0_c01144{font-size:25.168000pt;}
.fs1_c01144{font-size:30.272176pt;}
.fs6_c01144{font-size:35.024000pt;}
.fsc_c01144{font-size:37.840000pt;}
.fs10_c01144{font-size:48.153776pt;}
.fs9_c01144{font-size:51.568000pt;}
.fsb_c01144{font-size:51.955376pt;}
.fs12_c01144{font-size:54.489776pt;}
.fs3_c01144{font-size:55.756800pt;}
.fs15_c01144{font-size:58.960000pt;}
.fs8_c01144{font-size:62.656000pt;}
.fs17_c01144{font-size:66.176000pt;}
.fsa_c01144{font-size:66.528000pt;}
.fs4_c01144{font-size:66.880000pt;}
.fs14_c01144{font-size:67.584176pt;}
.fs5_c01144{font-size:70.752176pt;}
.fsd_c01144{font-size:71.280000pt;}
.fs7_c01144{font-size:72.864176pt;}
.fse_c01144{font-size:73.040000pt;}
.fs13_c01144{font-size:75.504176pt;}
.fs2_c01144{font-size:76.384176pt;}
.fs16_c01144{font-size:88.704176pt;}
.fs11_c01144{font-size:92.224176pt;}
.fsf_c01144{font-size:92.928000pt;}
.y0_c01144{bottom:0.000000pt;}
.y19_c01144{bottom:22.731320pt;}
.y1_c01144{bottom:68.000000pt;}
.y18_c01144{bottom:114.598920pt;}
.y17_c01144{bottom:142.798520pt;}
.y16_c01144{bottom:201.718920pt;}
.y15_c01144{bottom:230.864520pt;}
.y14_c01144{bottom:259.380920pt;}
.y13_c01144{bottom:281.240120pt;}
.y12_c01144{bottom:287.571720pt;}
.y11_c01144{bottom:344.600120pt;}
.y10_c01144{bottom:373.745720pt;}
.yf_c01144{bottom:431.086520pt;}
.ye_c01144{bottom:459.594120pt;}
.yd_c01144{bottom:487.793720pt;}
.yc_c01144{bottom:544.500920pt;}
.yb_c01144{bottom:573.329720pt;}
.ya_c01144{bottom:630.353720pt;}
.y9_c01144{bottom:688.328120pt;}
.y8_c01144{bottom:716.835720pt;}
.y7_c01144{bottom:772.596920pt;}
.y6_c01144{bottom:801.421320pt;}
.y5_c01144{bottom:829.304120pt;}
.y3_c01144{bottom:945.882120pt;}
.y2_c01144{bottom:949.050120pt;}
.y4_c01144{bottom:959.821320pt;}
.h17_c01144{height:20.559000pt;}
.h2_c01144{height:26.249438pt;}
.h3_c01144{height:31.572934pt;}
.hf_c01144{height:32.070415pt;}
.ha_c01144{height:34.602280pt;}
.h11_c01144{height:36.290191pt;}
.h5_c01144{height:37.134029pt;}
.h14_c01144{height:61.493438pt;}
.h16_c01144{height:64.948125pt;}
.hd_c01144{height:65.293594pt;}
.h6_c01144{height:65.639063pt;}
.h7_c01144{height:69.439391pt;}
.h9_c01144{height:69.753750pt;}
.hc_c01144{height:69.957422pt;}
.h13_c01144{height:70.488184pt;}
.h8_c01144{height:71.512204pt;}
.hb_c01144{height:71.649102pt;}
.h12_c01144{height:74.103220pt;}
.h4_c01144{height:74.966891pt;}
.h15_c01144{height:87.058298pt;}
.he_c01144{height:91.203750pt;}
.h10_c01144{height:96.186934pt;}
.h1_c01144{height:986.666667pt;}
.h0_c01144{height:1122.666667pt;}
.w1_c01144{width:689.333333pt;}
.w0_c01144{width:793.333333pt;}
.x0_c01144{left:0.000000pt;}
.x1_c01144{left:52.000000pt;}
.x3b_c01144{left:71.651053pt;}
.x21_c01144{left:72.605853pt;}
.x2_c01144{left:103.744653pt;}
.x1b_c01144{left:120.315053pt;}
.x4_c01144{left:121.639453pt;}
.x12_c01144{left:122.985853pt;}
.x60_c01144{left:131.552653pt;}
.x3c_c01144{left:149.913853pt;}
.x57_c01144{left:151.559453pt;}
.x5_c01144{left:160.641053pt;}
.x38_c01144{left:162.335053pt;}
.x22_c01144{left:170.853453pt;}
.x2c_c01144{left:172.037053pt;}
.x13_c01144{left:179.015453pt;}
.x14_c01144{left:180.300253pt;}
.x52_c01144{left:190.776653pt;}
.x23_c01144{left:199.339053pt;}
.x6_c01144{left:200.245453pt;}
.x61_c01144{left:202.471853pt;}
.x5c_c01144{left:209.859453pt;}
.x2d_c01144{left:217.678253pt;}
.x1c_c01144{left:218.575853pt;}
.x62_c01144{left:219.552653pt;}
.x42_c01144{left:221.334653pt;}
.x24_c01144{left:229.747453pt;}
.x4a_c01144{left:238.503453pt;}
.x7_c01144{left:239.871853pt;}
.x43_c01144{left:248.359453pt;}
.x33_c01144{left:249.767453pt;}
.x5d_c01144{left:258.470653pt;}
.x44_c01144{left:261.031453pt;}
.x45_c01144{left:263.565853pt;}
.x1d_c01144{left:268.251853pt;}
.x2e_c01144{left:269.307853pt;}
.x4f_c01144{left:278.072653pt;}
.x8_c01144{left:279.511453pt;}
.x25_c01144{left:288.245453pt;}
.x4b_c01144{left:298.185053pt;}
.x46_c01144{left:307.491053pt;}
.x30_c01144{left:308.639453pt;}
.x15_c01144{left:317.351453pt;}
.x9_c01144{left:318.473453pt;}
.x53_c01144{left:326.886253pt;}
.x2f_c01144{left:328.215053pt;}
.x3d_c01144{left:337.287853pt;}
.x4c_c01144{left:339.162253pt;}
.x26_c01144{left:348.578253pt;}
.x34_c01144{left:357.422253pt;}
.xa_c01144{left:358.412253pt;}
.x50_c01144{left:359.908253pt;}
.x16_c01144{left:367.102253pt;}
.x5e_c01144{left:368.206653pt;}
.x1e_c01144{left:377.451053pt;}
.x47_c01144{left:378.762253pt;}
.x35_c01144{left:387.707453pt;}
.x1f_c01144{left:396.657053pt;}
.x20_c01144{left:398.399453pt;}
.x48_c01144{left:405.685853pt;}
.x27_c01144{left:407.217053pt;}
.x17_c01144{left:416.421853pt;}
.x51_c01144{left:425.745453pt;}
.x40_c01144{left:426.867453pt;}
.x58_c01144{left:434.875453pt;}
.xb_c01144{left:436.820253pt;}
.x39_c01144{left:445.686253pt;}
.x28_c01144{left:447.274653pt;}
.x18_c01144{left:465.847053pt;}
.x54_c01144{left:467.835853pt;}
.xc_c01144{left:476.424653pt;}
.x31_c01144{left:485.427053pt;}
.x4d_c01144{left:495.208253pt;}
.x59_c01144{left:505.200653pt;}
.x19_c01144{left:514.405453pt;}
.xd_c01144{left:515.751853pt;}
.x55_c01144{left:523.337453pt;}
.x41_c01144{left:524.626653pt;}
.x36_c01144{left:526.017053pt;}
.x63_c01144{left:532.454253pt;}
.x32_c01144{left:534.517853pt;}
.x29_c01144{left:535.837853pt;}
.xe_c01144{left:537.329453pt;}
.x37_c01144{left:544.589453pt;}
.x2a_c01144{left:553.869053pt;}
.xf_c01144{left:554.793053pt;}
.x49_c01144{left:562.889053pt;}
.x4e_c01144{left:573.831853pt;}
.x5a_c01144{left:575.490653pt;}
.x3e_c01144{left:586.050653pt;}
.x2b_c01144{left:592.721053pt;}
.x10_c01144{left:594.102653pt;}
.x5f_c01144{left:601.811453pt;}
.x5b_c01144{left:603.179853pt;}
.x1a_c01144{left:612.666253pt;}
.x3f_c01144{left:614.078653pt;}
.x11_c01144{left:616.212653pt;}
.x3a_c01144{left:623.098653pt;}
.x3_c01144{left:627.648253pt;}
.x56_c01144{left:652.710653pt;}
}





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

.ir_c01145:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01145{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01145;src:url('chunks/assets/font_7718c5b7e1e9781d9acd8752.woff2')format("woff");}.ff1_c01145{font-family:ff1_c01145;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01145;src:url('chunks/assets/font_f10b54cee23db7337a23ca25.woff2')format("woff");}.ff2_c01145{font-family:ff2_c01145;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01145;src:url('chunks/assets/font_4822c74f25c4796738279250.woff2')format("woff");}.ff3_c01145{font-family:ff3_c01145;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01145;src:url('chunks/assets/font_aaa5cbaebaf4312992973df8.woff2')format("woff");}.ff4_c01145{font-family:ff4_c01145;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m65_c01145{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);}
.m60_c01145{transform:matrix(0.077382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077382,0.000000,0.000000,0.250000,0,0);}
.m64_c01145{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m6b_c01145{transform:matrix(0.112876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112876,0.000000,0.000000,0.250000,0,0);}
.m6a_c01145{transform:matrix(0.129756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129756,0.000000,0.000000,0.250000,0,0);}
.m66_c01145{transform:matrix(0.132609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132609,0.000000,0.000000,0.250000,0,0);}
.m6c_c01145{transform:matrix(0.141305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141305,0.000000,0.000000,0.250000,0,0);}
.m42_c01145{transform:matrix(0.146557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146557,0.000000,0.000000,0.250000,0,0);}
.m78_c01145{transform:matrix(0.148256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148256,0.000000,0.000000,0.250000,0,0);}
.m67_c01145{transform:matrix(0.152173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152173,0.000000,0.000000,0.250000,0,0);}
.m34_c01145{transform:matrix(0.157830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157830,0.000000,0.000000,0.250000,0,0);}
.m1e_c01145{transform:matrix(0.159864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159864,0.000000,0.000000,0.250000,0,0);}
.m61_c01145{transform:matrix(0.162203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162203,0.000000,0.000000,0.250000,0,0);}
.m29_c01145{transform:matrix(0.168956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168956,0.000000,0.000000,0.250000,0,0);}
.m56_c01145{transform:matrix(0.169104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169104,0.000000,0.000000,0.250000,0,0);}
.m77_c01145{transform:matrix(0.174418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174418,0.000000,0.000000,0.250000,0,0);}
.m72_c01145{transform:matrix(0.178447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178447,0.000000,0.000000,0.250000,0,0);}
.m5f_c01145{transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);}
.m1b_c01145{transform:matrix(0.178779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178779,0.000000,0.000000,0.250000,0,0);}
.m76_c01145{transform:matrix(0.182170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182170,0.000000,0.000000,0.250000,0,0);}
.m51_c01145{transform:matrix(0.187940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187940,0.000000,0.000000,0.250000,0,0);}
.m5e_c01145{transform:matrix(0.190476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190476,0.000000,0.000000,0.250000,0,0);}
.m57_c01145{transform:matrix(0.216663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216663,0.000000,0.000000,0.250000,0,0);}
.m46_c01145{transform:matrix(0.220095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220095,0.000000,0.000000,0.250000,0,0);}
.m4e_c01145{transform:matrix(0.220566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220566,0.000000,0.000000,0.250000,0,0);}
.m58_c01145{transform:matrix(0.223959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223959,0.000000,0.000000,0.250000,0,0);}
.m0_c01145{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m7a_c01145{transform:matrix(0.250200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250200,0.000000,0.000000,0.250000,0,0);}
.m62_c01145{transform:matrix(0.253581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253581,0.000000,0.000000,0.250000,0,0);}
.m28_c01145{transform:matrix(0.253866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253866,0.000000,0.000000,0.250000,0,0);}
.m70_c01145{transform:matrix(0.254006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254006,0.000000,0.000000,0.250000,0,0);}
.m2_c01145{transform:matrix(0.255321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255321,0.000000,0.000000,0.250000,0,0);}
.m36_c01145{transform:matrix(0.256962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256962,0.000000,0.000000,0.250000,0,0);}
.m73_c01145{transform:matrix(0.256995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256995,0.000000,0.000000,0.250000,0,0);}
.mb_c01145{transform:matrix(0.257367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257367,0.000000,0.000000,0.250000,0,0);}
.m50_c01145{transform:matrix(0.258665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258665,0.000000,0.000000,0.250000,0,0);}
.m14_c01145{transform:matrix(0.258726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258726,0.000000,0.000000,0.250000,0,0);}
.m43_c01145{transform:matrix(0.260343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260343,0.000000,0.000000,0.250000,0,0);}
.m31_c01145{transform:matrix(0.262130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262130,0.000000,0.000000,0.250000,0,0);}
.m7b_c01145{transform:matrix(0.263560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263560,0.000000,0.000000,0.250000,0,0);}
.m1f_c01145{transform:matrix(0.266231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266231,0.000000,0.000000,0.250000,0,0);}
.m1_c01145{transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266891,0.000000,0.000000,0.250000,0,0);}
.m54_c01145{transform:matrix(0.268308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268308,0.000000,0.000000,0.250000,0,0);}
.m1c_c01145{transform:matrix(0.269278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269278,0.000000,0.000000,0.250000,0,0);}
.m11_c01145{transform:matrix(0.270397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270397,0.000000,0.000000,0.250000,0,0);}
.m5_c01145{transform:matrix(0.271003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271003,0.000000,0.000000,0.250000,0,0);}
.m26_c01145{transform:matrix(0.273997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273997,0.000000,0.000000,0.250000,0,0);}
.m1d_c01145{transform:matrix(0.275843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275843,0.000000,0.000000,0.250000,0,0);}
.m7c_c01145{transform:matrix(0.276494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276494,0.000000,0.000000,0.250000,0,0);}
.m37_c01145{transform:matrix(0.278234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278234,0.000000,0.000000,0.250000,0,0);}
.m4c_c01145{transform:matrix(0.278890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278890,0.000000,0.000000,0.250000,0,0);}
.m2d_c01145{transform:matrix(0.279318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279318,0.000000,0.000000,0.250000,0,0);}
.m2c_c01145{transform:matrix(0.281410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281410,0.000000,0.000000,0.250000,0,0);}
.m39_c01145{transform:matrix(0.282617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282617,0.000000,0.000000,0.250000,0,0);}
.m3a_c01145{transform:matrix(0.282864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282864,0.000000,0.000000,0.250000,0,0);}
.m25_c01145{transform:matrix(0.283432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283432,0.000000,0.000000,0.250000,0,0);}
.m3e_c01145{transform:matrix(0.283485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283485,0.000000,0.000000,0.250000,0,0);}
.m1a_c01145{transform:matrix(0.283782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283782,0.000000,0.000000,0.250000,0,0);}
.m5a_c01145{transform:matrix(0.283819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283819,0.000000,0.000000,0.250000,0,0);}
.m6d_c01145{transform:matrix(0.284903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284903,0.000000,0.000000,0.250000,0,0);}
.m2f_c01145{transform:matrix(0.285869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285869,0.000000,0.000000,0.250000,0,0);}
.m3b_c01145{transform:matrix(0.286491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286491,0.000000,0.000000,0.250000,0,0);}
.m3_c01145{transform:matrix(0.286864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286864,0.000000,0.000000,0.250000,0,0);}
.m35_c01145{transform:matrix(0.287097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287097,0.000000,0.000000,0.250000,0,0);}
.m2e_c01145{transform:matrix(0.287366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287366,0.000000,0.000000,0.250000,0,0);}
.m32_c01145{transform:matrix(0.289381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289381,0.000000,0.000000,0.250000,0,0);}
.m30_c01145{transform:matrix(0.290288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290288,0.000000,0.000000,0.250000,0,0);}
.m79_c01145{transform:matrix(0.290804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290804,0.000000,0.000000,0.250000,0,0);}
.m13_c01145{transform:matrix(0.291714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291714,0.000000,0.000000,0.250000,0,0);}
.m7e_c01145{transform:matrix(0.291838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291838,0.000000,0.000000,0.250000,0,0);}
.m44_c01145{transform:matrix(0.291897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291897,0.000000,0.000000,0.250000,0,0);}
.m5d_c01145{transform:matrix(0.292290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292290,0.000000,0.000000,0.250000,0,0);}
.ma_c01145{transform:matrix(0.292809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292809,0.000000,0.000000,0.250000,0,0);}
.m3c_c01145{transform:matrix(0.293141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293141,0.000000,0.000000,0.250000,0,0);}
.m3d_c01145{transform:matrix(0.293342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293342,0.000000,0.000000,0.250000,0,0);}
.m20_c01145{transform:matrix(0.295083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295083,0.000000,0.000000,0.250000,0,0);}
.m47_c01145{transform:matrix(0.295462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295462,0.000000,0.000000,0.250000,0,0);}
.m48_c01145{transform:matrix(0.295997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295997,0.000000,0.000000,0.250000,0,0);}
.m3f_c01145{transform:matrix(0.296871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296871,0.000000,0.000000,0.250000,0,0);}
.m82_c01145{transform:matrix(0.297050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297050,0.000000,0.000000,0.250000,0,0);}
.m83_c01145{transform:matrix(0.298764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298764,0.000000,0.000000,0.250000,0,0);}
.m19_c01145{transform:matrix(0.303744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303744,0.000000,0.000000,0.250000,0,0);}
.m49_c01145{transform:matrix(0.305052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305052,0.000000,0.000000,0.250000,0,0);}
.m6f_c01145{transform:matrix(0.306503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306503,0.000000,0.000000,0.250000,0,0);}
.m23_c01145{transform:matrix(0.306539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306539,0.000000,0.000000,0.250000,0,0);}
.m8_c01145{transform:matrix(0.307365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307365,0.000000,0.000000,0.250000,0,0);}
.m15_c01145{transform:matrix(0.309089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309089,0.000000,0.000000,0.250000,0,0);}
.m69_c01145{transform:matrix(0.309918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309918,0.000000,0.000000,0.250000,0,0);}
.m71_c01145{transform:matrix(0.311997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311997,0.000000,0.000000,0.250000,0,0);}
.m21_c01145{transform:matrix(0.313090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313090,0.000000,0.000000,0.250000,0,0);}
.m4d_c01145{transform:matrix(0.313909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313909,0.000000,0.000000,0.250000,0,0);}
.m74_c01145{transform:matrix(0.314011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314011,0.000000,0.000000,0.250000,0,0);}
.m2b_c01145{transform:matrix(0.314038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314038,0.000000,0.000000,0.250000,0,0);}
.m45_c01145{transform:matrix(0.315536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315536,0.000000,0.000000,0.250000,0,0);}
.m18_c01145{transform:matrix(0.316179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316179,0.000000,0.000000,0.250000,0,0);}
.m4b_c01145{transform:matrix(0.317327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317327,0.000000,0.000000,0.250000,0,0);}
.m2a_c01145{transform:matrix(0.317694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317694,0.000000,0.000000,0.250000,0,0);}
.md_c01145{transform:matrix(0.317888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317888,0.000000,0.000000,0.250000,0,0);}
.m22_c01145{transform:matrix(0.319242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319242,0.000000,0.000000,0.250000,0,0);}
.m7d_c01145{transform:matrix(0.319817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319817,0.000000,0.000000,0.250000,0,0);}
.m4a_c01145{transform:matrix(0.320170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320170,0.000000,0.000000,0.250000,0,0);}
.m12_c01145{transform:matrix(0.320196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320196,0.000000,0.000000,0.250000,0,0);}
.m24_c01145{transform:matrix(0.320927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320927,0.000000,0.000000,0.250000,0,0);}
.me_c01145{transform:matrix(0.323006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323006,0.000000,0.000000,0.250000,0,0);}
.m63_c01145{transform:matrix(0.325738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325738,0.000000,0.000000,0.250000,0,0);}
.m40_c01145{transform:matrix(0.326031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326031,0.000000,0.000000,0.250000,0,0);}
.mf_c01145{transform:matrix(0.326590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326590,0.000000,0.000000,0.250000,0,0);}
.mc_c01145{transform:matrix(0.328359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328359,0.000000,0.000000,0.250000,0,0);}
.m4_c01145{transform:matrix(0.330961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330961,0.000000,0.000000,0.250000,0,0);}
.m6e_c01145{transform:matrix(0.333009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333009,0.000000,0.000000,0.250000,0,0);}
.m5b_c01145{transform:matrix(0.333064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333064,0.000000,0.000000,0.250000,0,0);}
.m7f_c01145{transform:matrix(0.333322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333322,0.000000,0.000000,0.250000,0,0);}
.m41_c01145{transform:matrix(0.334429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334429,0.000000,0.000000,0.250000,0,0);}
.m38_c01145{transform:matrix(0.335091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335091,0.000000,0.000000,0.250000,0,0);}
.m53_c01145{transform:matrix(0.335429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335429,0.000000,0.000000,0.250000,0,0);}
.m81_c01145{transform:matrix(0.335663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335663,0.000000,0.000000,0.250000,0,0);}
.m5c_c01145{transform:matrix(0.336653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336653,0.000000,0.000000,0.250000,0,0);}
.m80_c01145{transform:matrix(0.339101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339101,0.000000,0.000000,0.250000,0,0);}
.m55_c01145{transform:matrix(0.339538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339538,0.000000,0.000000,0.250000,0,0);}
.m7_c01145{transform:matrix(0.340794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340794,0.000000,0.000000,0.250000,0,0);}
.m16_c01145{transform:matrix(0.344313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344313,0.000000,0.000000,0.250000,0,0);}
.m9_c01145{transform:matrix(0.345934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345934,0.000000,0.000000,0.250000,0,0);}
.m27_c01145{transform:matrix(0.349091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349091,0.000000,0.000000,0.250000,0,0);}
.m33_c01145{transform:matrix(0.349232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349232,0.000000,0.000000,0.250000,0,0);}
.m4f_c01145{transform:matrix(0.351980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351980,0.000000,0.000000,0.250000,0,0);}
.m10_c01145{transform:matrix(0.355438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355438,0.000000,0.000000,0.250000,0,0);}
.m75_c01145{transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);}
.m17_c01145{transform:matrix(0.374720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374720,0.000000,0.000000,0.250000,0,0);}
.m59_c01145{transform:matrix(0.388002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388002,0.000000,0.000000,0.250000,0,0);}
.m6_c01145{transform:matrix(0.397482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397482,0.000000,0.000000,0.250000,0,0);}
.m68_c01145{transform:matrix(0.403791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403791,0.000000,0.000000,0.250000,0,0);}
.m52_c01145{transform:matrix(0.462800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462800,0.000000,0.000000,0.250000,0,0);}
.v1_c01145{vertical-align:-41.342400px;}
.v3_c01145{vertical-align:-5.688540px;}
.v0_c01145{vertical-align:0.000000px;}
.v2_c01145{vertical-align:12.830400px;}
.ls7_c01145{letter-spacing:-2.619540px;}
.ls1_c01145{letter-spacing:0.000000px;}
.ls9_c01145{letter-spacing:0.681080px;}
.ls3_c01145{letter-spacing:2.245320px;}
.ls6_c01145{letter-spacing:2.397820px;}
.lsc_c01145{letter-spacing:3.326400px;}
.lsb_c01145{letter-spacing:3.524400px;}
.ls8_c01145{letter-spacing:3.727231px;}
.ls0_c01145{letter-spacing:3.742200px;}
.ls2_c01145{letter-spacing:3.979810px;}
.ls5_c01145{letter-spacing:59.875398px;}
.ls4_c01145{letter-spacing:61.300998px;}
.lsa_c01145{letter-spacing:65.577798px;}
.sc__c01145{text-shadow:none;}
.sc0_c01145{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01145{-webkit-text-stroke:0px transparent;}
.sc0_c01145{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01145{word-spacing:-18.711000px;}
.ws1_c01145{word-spacing:0.000000px;}
._6_c01145{margin-left:-9.879408px;}
._4_c01145{margin-left:-2.619540px;}
._0_c01145{width:1.122660px;}
._3_c01145{width:2.844072px;}
._8_c01145{width:5.463612px;}
._9_c01145{width:6.585480px;}
._7_c01145{width:28.291032px;}
._5_c01145{width:40.864824px;}
._2_c01145{width:43.580592px;}
._1_c01145{width:1445.736600px;}
.fc0_c01145{color:transparent;}
.fs5_c01145{font-size:22.176000px;}
.fs0_c01145{font-size:27.720000px;}
.fs8_c01145{font-size:38.412000px;}
.fs1_c01145{font-size:44.352000px;}
.fs7_c01145{font-size:59.875398px;}
.fs6_c01145{font-size:61.300998px;}
.fsb_c01145{font-size:65.577798px;}
.fsd_c01145{font-size:66.528000px;}
.fsc_c01145{font-size:70.488000px;}
.fs3_c01145{font-size:74.844000px;}
.fs4_c01145{font-size:79.200000px;}
.fs9_c01145{font-size:79.398000px;}
.fs2_c01145{font-size:79.596198px;}
.fsa_c01145{font-size:81.180000px;}
.y0_c01145{bottom:0.000000px;}
.y1_c01145{bottom:76.500000px;}
.y18_c01145{bottom:131.067135px;}
.y17_c01145{bottom:197.001135px;}
.y16_c01145{bottom:262.217385px;}
.y15_c01145{bottom:293.580585px;}
.y14_c01145{bottom:357.376185px;}
.y13_c01145{bottom:389.457135px;}
.y12_c01145{bottom:421.171785px;}
.y11_c01145{bottom:485.680185px;}
.y3_c01145{bottom:498.510585px;}
.y10_c01145{bottom:550.188585px;}
.yf_c01145{bottom:581.908185px;}
.ye_c01145{bottom:645.347385px;}
.yd_c01145{bottom:710.217135px;}
.yb_c01145{bottom:738.372735px;}
.ya_c01145{bottom:741.580335px;}
.yc_c01145{bottom:743.005935px;}
.y9_c01145{bottom:774.012735px;}
.y8_c01145{bottom:806.083785px;}
.y2_c01145{bottom:860.617935px;}
.y7_c01145{bottom:868.815135px;}
.y6_c01145{bottom:901.603935px;}
.y5_c01145{bottom:934.392735px;}
.y4_c01145{bottom:1076.591385px;}
.h2_c01145{height:28.911094px;}
.h8_c01145{height:39.877015px;}
.h7_c01145{height:40.826465px;}
.hc_c01145{height:43.674813px;}
.h3_c01145{height:46.257750px;}
.hd_c01145{height:69.180117px;}
.he_c01145{height:69.386625px;}
.h5_c01145{height:73.455293px;}
.h6_c01145{height:77.730469px;}
.ha_c01145{height:77.886026px;}
.h4_c01145{height:78.119315px;}
.hb_c01145{height:79.673730px;}
.h9_c01145{height:86.285693px;}
.h1_c01145{height:1110.000000px;}
.h0_c01145{height:1263.000000px;}
.w1_c01145{width:775.500000px;}
.w0_c01145{width:892.500000px;}
.x3_c01145{left:-1.612065px;}
.x0_c01145{left:0.000000px;}
.x2_c01145{left:46.566285px;}
.x1_c01145{left:58.500000px;}
.x53_c01145{left:63.029985px;}
.x34_c01145{left:77.761185px;}
.x1c_c01145{left:78.830385px;}
.x5_c01145{left:80.260935px;}
.x41_c01145{left:131.443935px;}
.x35_c01145{left:132.513135px;}
.x6_c01145{left:133.582335px;}
.x11_c01145{left:134.790135px;}
.x3a_c01145{left:166.564185px;}
.x63_c01145{left:176.558235px;}
.x23_c01145{left:177.983835px;}
.x1b_c01145{left:179.661885px;}
.x29_c01145{left:180.726135px;}
.x54_c01145{left:186.745335px;}
.x7_c01145{left:188.121435px;}
.x12_c01145{left:189.601485px;}
.x51_c01145{left:198.090735px;}
.x1d_c01145{left:200.209335px;}
.x5d_c01145{left:201.308235px;}
.x24_c01145{left:209.554935px;}
.x8_c01145{left:211.361685px;}
.x55_c01145{left:220.246935px;}
.x30_c01145{left:232.612035px;}
.x36_c01145{left:255.114735px;}
.x2a_c01145{left:266.168085px;}
.x37_c01145{left:268.108485px;}
.x13_c01145{left:276.107685px;}
.x9_c01145{left:278.493585px;}
.x38_c01145{left:280.176585px;}
.x1e_c01145{left:288.423285px;}
.x2b_c01145{left:289.868685px;}
.x31_c01145{left:299.486535px;}
.x52_c01145{left:301.506135px;}
.x5e_c01145{left:309.530085px;}
.xa_c01145{left:310.861635px;}
.x3b_c01145{left:311.935785px;}
.x14_c01145{left:322.484235px;}
.x42_c01145{left:333.379185px;}
.xb_c01145{left:344.724585px;}
.x56_c01145{left:351.877335px;}
.x43_c01145{left:353.189085px;}
.x2c_c01145{left:355.203735px;}
.x4c_c01145{left:356.431335px;}
.x61_c01145{left:364.588935px;}
.x47_c01145{left:365.930385px;}
.x39_c01145{left:375.770985px;}
.x4d_c01145{left:389.621085px;}
.x44_c01145{left:397.075785px;}
.x57_c01145{left:398.110335px;}
.x45_c01145{left:399.288435px;}
.x15_c01145{left:401.035785px;}
.x4e_c01145{left:408.386535px;}
.x1f_c01145{left:411.430785px;}
.x32_c01145{left:420.791235px;}
.xc_c01145{left:423.162285px;}
.x48_c01145{left:430.126935px;}
.x5f_c01145{left:433.250385px;}
.x25_c01145{left:434.383935px;}
.x20_c01145{left:442.902885px;}
.x3c_c01145{left:444.105735px;}
.x60_c01145{left:452.674185px;}
.x49_c01145{left:454.916535px;}
.x64_c01145{left:463.960185px;}
.x46_c01145{left:465.469935px;}
.x2d_c01145{left:466.514385px;}
.x58_c01145{left:472.934535px;}
.xd_c01145{left:477.696435px;}
.x4f_c01145{left:485.368935px;}
.x16_c01145{left:489.031935px;}
.x4a_c01145{left:500.788185px;}
.x33_c01145{left:509.232885px;}
.x17_c01145{left:522.266235px;}
.x3d_c01145{left:531.349485px;}
.x26_c01145{left:545.130285px;}
.x4b_c01145{left:552.644385px;}
.x21_c01145{left:555.718335px;}
.x62_c01145{left:565.336185px;}
.xe_c01145{left:566.464785px;}
.x3e_c01145{left:575.879685px;}
.x27_c01145{left:577.448835px;}
.x3f_c01145{left:597.605235px;}
.xf_c01145{left:598.931835px;}
.x18_c01145{left:599.956485px;}
.x2e_c01145{left:611.341485px;}
.x59_c01145{left:612.643335px;}
.x19_c01145{left:620.335635px;}
.x5a_c01145{left:621.904785px;}
.x65_c01145{left:630.849435px;}
.x2f_c01145{left:643.402635px;}
.x40_c01145{left:654.426285px;}
.x66_c01145{left:664.435185px;}
.x22_c01145{left:666.222135px;}
.x28_c01145{left:675.963735px;}
.x50_c01145{left:684.898485px;}
.x1a_c01145{left:686.383485px;}
.x10_c01145{left:698.416935px;}
.x4_c01145{left:700.055385px;}
.x5b_c01145{left:719.563335px;}
.x5c_c01145{left:744.209385px;}
@media print{
.v1_c01145{vertical-align:-36.748800pt;}
.v3_c01145{vertical-align:-5.056480pt;}
.v0_c01145{vertical-align:0.000000pt;}
.v2_c01145{vertical-align:11.404800pt;}
.ls7_c01145{letter-spacing:-2.328480pt;}
.ls1_c01145{letter-spacing:0.000000pt;}
.ls9_c01145{letter-spacing:0.605405pt;}
.ls3_c01145{letter-spacing:1.995840pt;}
.ls6_c01145{letter-spacing:2.131395pt;}
.lsc_c01145{letter-spacing:2.956800pt;}
.lsb_c01145{letter-spacing:3.132800pt;}
.ls8_c01145{letter-spacing:3.313094pt;}
.ls0_c01145{letter-spacing:3.326400pt;}
.ls2_c01145{letter-spacing:3.537609pt;}
.ls5_c01145{letter-spacing:53.222576pt;}
.ls4_c01145{letter-spacing:54.489776pt;}
.lsa_c01145{letter-spacing:58.291376pt;}
.ws0_c01145{word-spacing:-16.632000pt;}
.ws1_c01145{word-spacing:0.000000pt;}
._6_c01145{margin-left:-8.781696pt;}
._4_c01145{margin-left:-2.328480pt;}
._0_c01145{width:0.997920pt;}
._3_c01145{width:2.528064pt;}
._8_c01145{width:4.856544pt;}
._9_c01145{width:5.853760pt;}
._7_c01145{width:25.147584pt;}
._5_c01145{width:36.324288pt;}
._2_c01145{width:38.738304pt;}
._1_c01145{width:1285.099200pt;}
.fs5_c01145{font-size:19.712000pt;}
.fs0_c01145{font-size:24.640000pt;}
.fs8_c01145{font-size:34.144000pt;}
.fs1_c01145{font-size:39.424000pt;}
.fs7_c01145{font-size:53.222576pt;}
.fs6_c01145{font-size:54.489776pt;}
.fsb_c01145{font-size:58.291376pt;}
.fsd_c01145{font-size:59.136000pt;}
.fsc_c01145{font-size:62.656000pt;}
.fs3_c01145{font-size:66.528000pt;}
.fs4_c01145{font-size:70.400000pt;}
.fs9_c01145{font-size:70.576000pt;}
.fs2_c01145{font-size:70.752176pt;}
.fsa_c01145{font-size:72.160000pt;}
.y0_c01145{bottom:0.000000pt;}
.y1_c01145{bottom:68.000000pt;}
.y18_c01145{bottom:116.504120pt;}
.y17_c01145{bottom:175.112120pt;}
.y16_c01145{bottom:233.082120pt;}
.y15_c01145{bottom:260.960520pt;}
.y14_c01145{bottom:317.667720pt;}
.y13_c01145{bottom:346.184120pt;}
.y12_c01145{bottom:374.374920pt;}
.y11_c01145{bottom:431.715720pt;}
.y3_c01145{bottom:443.120520pt;}
.y10_c01145{bottom:489.056520pt;}
.yf_c01145{bottom:517.251720pt;}
.ye_c01145{bottom:573.642120pt;}
.yd_c01145{bottom:631.304120pt;}
.yb_c01145{bottom:656.331320pt;}
.ya_c01145{bottom:659.182520pt;}
.yc_c01145{bottom:660.449720pt;}
.y9_c01145{bottom:688.011320pt;}
.y8_c01145{bottom:716.518920pt;}
.y2_c01145{bottom:764.993720pt;}
.y7_c01145{bottom:772.280120pt;}
.y6_c01145{bottom:801.425720pt;}
.y5_c01145{bottom:830.571320pt;}
.y4_c01145{bottom:956.970120pt;}
.h2_c01145{height:25.698750pt;}
.h8_c01145{height:35.446236pt;}
.h7_c01145{height:36.290191pt;}
.hc_c01145{height:38.822056pt;}
.h3_c01145{height:41.118000pt;}
.hd_c01145{height:61.493438pt;}
.he_c01145{height:61.677000pt;}
.h5_c01145{height:65.293594pt;}
.h6_c01145{height:69.093750pt;}
.ha_c01145{height:69.232023pt;}
.h4_c01145{height:69.439391pt;}
.hb_c01145{height:70.821094pt;}
.h9_c01145{height:76.698394pt;}
.h1_c01145{height:986.666667pt;}
.h0_c01145{height:1122.666667pt;}
.w1_c01145{width:689.333333pt;}
.w0_c01145{width:793.333333pt;}
.x3_c01145{left:-1.432947pt;}
.x0_c01145{left:0.000000pt;}
.x2_c01145{left:41.392253pt;}
.x1_c01145{left:52.000000pt;}
.x53_c01145{left:56.026653pt;}
.x34_c01145{left:69.121053pt;}
.x1c_c01145{left:70.071453pt;}
.x5_c01145{left:71.343053pt;}
.x41_c01145{left:116.839053pt;}
.x35_c01145{left:117.789453pt;}
.x6_c01145{left:118.739853pt;}
.x11_c01145{left:119.813453pt;}
.x3a_c01145{left:148.057053pt;}
.x63_c01145{left:156.940653pt;}
.x23_c01145{left:158.207853pt;}
.x1b_c01145{left:159.699453pt;}
.x29_c01145{left:160.645453pt;}
.x54_c01145{left:165.995853pt;}
.x7_c01145{left:167.219053pt;}
.x12_c01145{left:168.534653pt;}
.x51_c01145{left:176.080653pt;}
.x1d_c01145{left:177.963853pt;}
.x5d_c01145{left:178.940653pt;}
.x24_c01145{left:186.271053pt;}
.x8_c01145{left:187.877053pt;}
.x55_c01145{left:195.775053pt;}
.x30_c01145{left:206.766253pt;}
.x36_c01145{left:226.768653pt;}
.x2a_c01145{left:236.593853pt;}
.x37_c01145{left:238.318653pt;}
.x13_c01145{left:245.429053pt;}
.x9_c01145{left:247.549853pt;}
.x38_c01145{left:249.045853pt;}
.x1e_c01145{left:256.376253pt;}
.x2b_c01145{left:257.661053pt;}
.x31_c01145{left:266.210253pt;}
.x52_c01145{left:268.005453pt;}
.x5e_c01145{left:275.137853pt;}
.xa_c01145{left:276.321453pt;}
.x3b_c01145{left:277.276253pt;}
.x14_c01145{left:286.652653pt;}
.x42_c01145{left:296.337053pt;}
.xb_c01145{left:306.421853pt;}
.x56_c01145{left:312.779853pt;}
.x43_c01145{left:313.945853pt;}
.x2c_c01145{left:315.736653pt;}
.x4c_c01145{left:316.827853pt;}
.x61_c01145{left:324.079053pt;}
.x47_c01145{left:325.271453pt;}
.x39_c01145{left:334.018653pt;}
.x4d_c01145{left:346.329853pt;}
.x44_c01145{left:352.956253pt;}
.x57_c01145{left:353.875853pt;}
.x45_c01145{left:354.923053pt;}
.x15_c01145{left:356.476253pt;}
.x4e_c01145{left:363.010253pt;}
.x1f_c01145{left:365.716253pt;}
.x32_c01145{left:374.036653pt;}
.xc_c01145{left:376.144253pt;}
.x48_c01145{left:382.335053pt;}
.x5f_c01145{left:385.111453pt;}
.x25_c01145{left:386.119053pt;}
.x20_c01145{left:393.691453pt;}
.x3c_c01145{left:394.760653pt;}
.x60_c01145{left:402.377053pt;}
.x49_c01145{left:404.370253pt;}
.x64_c01145{left:412.409053pt;}
.x46_c01145{left:413.751053pt;}
.x2d_c01145{left:414.679453pt;}
.x58_c01145{left:420.386253pt;}
.xd_c01145{left:424.619053pt;}
.x4f_c01145{left:431.439053pt;}
.x16_c01145{left:434.695053pt;}
.x4a_c01145{left:445.145053pt;}
.x33_c01145{left:452.651453pt;}
.x17_c01145{left:464.236653pt;}
.x3d_c01145{left:472.310653pt;}
.x26_c01145{left:484.560253pt;}
.x4b_c01145{left:491.239453pt;}
.x21_c01145{left:493.971853pt;}
.x62_c01145{left:502.521053pt;}
.xe_c01145{left:503.524253pt;}
.x3e_c01145{left:511.893053pt;}
.x27_c01145{left:513.287853pt;}
.x3f_c01145{left:531.204653pt;}
.xf_c01145{left:532.383853pt;}
.x18_c01145{left:533.294653pt;}
.x2e_c01145{left:543.414653pt;}
.x59_c01145{left:544.571853pt;}
.x19_c01145{left:551.409453pt;}
.x5a_c01145{left:552.804253pt;}
.x65_c01145{left:560.755053pt;}
.x2f_c01145{left:571.913453pt;}
.x40_c01145{left:581.712253pt;}
.x66_c01145{left:590.609053pt;}
.x22_c01145{left:592.197453pt;}
.x28_c01145{left:600.856653pt;}
.x50_c01145{left:608.798653pt;}
.x1a_c01145{left:610.118653pt;}
.x10_c01145{left:620.815053pt;}
.x4_c01145{left:622.271453pt;}
.x5b_c01145{left:639.611853pt;}
.x5c_c01145{left:661.519453pt;}
}





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

.ir_c01146:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01146{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01146;src:url('chunks/assets/font_6c9c69d191632ae5f1bd6097.woff2')format("woff");}.ff1_c01146{font-family:ff1_c01146;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01146;src:url('chunks/assets/font_570fe0cbf40192b5023f0f6b.woff2')format("woff");}.ff2_c01146{font-family:ff2_c01146;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01146;src:url('chunks/assets/font_e162e1cdda0f389b07f88f14.woff2')format("woff");}.ff3_c01146{font-family:ff3_c01146;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01146;src:url('chunks/assets/font_feba0154212fc2a1b5ceae56.woff2')format("woff");}.ff4_c01146{font-family:ff4_c01146;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01146;src:url('chunks/assets/font_edcc006c864d99e56da12f3a.woff2')format("woff");}.ff5_c01146{font-family:ff5_c01146;line-height:0.689941;font-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_c01146{transform:matrix(0.012501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012501,0.000000,0.000000,0.250000,0,0);}
.m3c_c01146{transform:matrix(0.046667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.046667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.046667,0.000000,0.000000,0.250000,0,0);}
.m3a_c01146{transform:matrix(0.054264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054264,0.000000,0.000000,0.250000,0,0);}
.m3b_c01146{transform:matrix(0.059091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.059091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.059091,0.000000,0.000000,0.250000,0,0);}
.m4c_c01146{transform:matrix(0.083024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083024,0.000000,0.000000,0.250000,0,0);}
.m61_c01146{transform:matrix(0.090626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090626,0.000000,0.000000,0.250000,0,0);}
.m45_c01146{transform:matrix(0.113638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113638,0.000000,0.000000,0.250000,0,0);}
.m5e_c01146{transform:matrix(0.116666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116666,0.000000,0.000000,0.250000,0,0);}
.m4a_c01146{transform:matrix(0.120371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120371,0.000000,0.000000,0.250000,0,0);}
.m46_c01146{transform:matrix(0.133805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133805,0.000000,0.000000,0.250000,0,0);}
.m3e_c01146{transform:matrix(0.134028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134028,0.000000,0.000000,0.250000,0,0);}
.m31_c01146{transform:matrix(0.134672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134672,0.000000,0.000000,0.250000,0,0);}
.m49_c01146{transform:matrix(0.138151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138151,0.000000,0.000000,0.250000,0,0);}
.m1c_c01146{transform:matrix(0.145256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145256,0.000000,0.000000,0.250000,0,0);}
.m1d_c01146{transform:matrix(0.148777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148777,0.000000,0.000000,0.250000,0,0);}
.m2f_c01146{transform:matrix(0.150974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150974,0.000000,0.000000,0.250000,0,0);}
.m44_c01146{transform:matrix(0.159405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159405,0.000000,0.000000,0.250000,0,0);}
.m18_c01146{transform:matrix(0.164512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164512,0.000000,0.000000,0.250000,0,0);}
.m1f_c01146{transform:matrix(0.167151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167151,0.000000,0.000000,0.250000,0,0);}
.m62_c01146{transform:matrix(0.169687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169687,0.000000,0.000000,0.250000,0,0);}
.m47_c01146{transform:matrix(0.180658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180658,0.000000,0.000000,0.250000,0,0);}
.m5d_c01146{transform:matrix(0.185714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185714,0.000000,0.000000,0.250000,0,0);}
.m60_c01146{transform:matrix(0.188281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188281,0.000000,0.000000,0.250000,0,0);}
.m39_c01146{transform:matrix(0.199552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199552,0.000000,0.000000,0.250000,0,0);}
.m4d_c01146{transform:matrix(0.216146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216146,0.000000,0.000000,0.250000,0,0);}
.m33_c01146{transform:matrix(0.233782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233782,0.000000,0.000000,0.250000,0,0);}
.m50_c01146{transform:matrix(0.237155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237155,0.000000,0.000000,0.250000,0,0);}
.m66_c01146{transform:matrix(0.239103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239103,0.000000,0.000000,0.250000,0,0);}
.m13_c01146{transform:matrix(0.242252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242252,0.000000,0.000000,0.250000,0,0);}
.m63_c01146{transform:matrix(0.243947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243947,0.000000,0.000000,0.250000,0,0);}
.m76_c01146{transform:matrix(0.245168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245168,0.000000,0.000000,0.250000,0,0);}
.m23_c01146{transform:matrix(0.246076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246076,0.000000,0.000000,0.250000,0,0);}
.m5b_c01146{transform:matrix(0.248251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248251,0.000000,0.000000,0.250000,0,0);}
.m1e_c01146{transform:matrix(0.249357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249357,0.000000,0.000000,0.250000,0,0);}
.m0_c01146{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m22_c01146{transform:matrix(0.250301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250301,0.000000,0.000000,0.250000,0,0);}
.m19_c01146{transform:matrix(0.250633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250633,0.000000,0.000000,0.250000,0,0);}
.m42_c01146{transform:matrix(0.252002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252002,0.000000,0.000000,0.250000,0,0);}
.m55_c01146{transform:matrix(0.254388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254388,0.000000,0.000000,0.250000,0,0);}
.md_c01146{transform:matrix(0.255459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255459,0.000000,0.000000,0.250000,0,0);}
.m12_c01146{transform:matrix(0.257706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257706,0.000000,0.000000,0.250000,0,0);}
.m65_c01146{transform:matrix(0.259143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259143,0.000000,0.000000,0.250000,0,0);}
.m27_c01146{transform:matrix(0.259986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259986,0.000000,0.000000,0.250000,0,0);}
.m4_c01146{transform:matrix(0.260021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260021,0.000000,0.000000,0.250000,0,0);}
.m8_c01146{transform:matrix(0.260701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260701,0.000000,0.000000,0.250000,0,0);}
.m5a_c01146{transform:matrix(0.261350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261350,0.000000,0.000000,0.250000,0,0);}
.m52_c01146{transform:matrix(0.261352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261352,0.000000,0.000000,0.250000,0,0);}
.m77_c01146{transform:matrix(0.262894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262894,0.000000,0.000000,0.250000,0,0);}
.m2a_c01146{transform:matrix(0.263331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263331,0.000000,0.000000,0.250000,0,0);}
.m6d_c01146{transform:matrix(0.263599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263599,0.000000,0.000000,0.250000,0,0);}
.mf_c01146{transform:matrix(0.263873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263873,0.000000,0.000000,0.250000,0,0);}
.mc_c01146{transform:matrix(0.263973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263973,0.000000,0.000000,0.250000,0,0);}
.m6e_c01146{transform:matrix(0.264037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264037,0.000000,0.000000,0.250000,0,0);}
.m74_c01146{transform:matrix(0.264935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264935,0.000000,0.000000,0.250000,0,0);}
.m70_c01146{transform:matrix(0.265269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265269,0.000000,0.000000,0.250000,0,0);}
.m37_c01146{transform:matrix(0.266465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266465,0.000000,0.000000,0.250000,0,0);}
.m68_c01146{transform:matrix(0.267506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267506,0.000000,0.000000,0.250000,0,0);}
.m51_c01146{transform:matrix(0.267781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267781,0.000000,0.000000,0.250000,0,0);}
.m5_c01146{transform:matrix(0.268217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268217,0.000000,0.000000,0.250000,0,0);}
.m41_c01146{transform:matrix(0.270528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270528,0.000000,0.000000,0.250000,0,0);}
.m43_c01146{transform:matrix(0.270630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270630,0.000000,0.000000,0.250000,0,0);}
.m4f_c01146{transform:matrix(0.270726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270726,0.000000,0.000000,0.250000,0,0);}
.m35_c01146{transform:matrix(0.271319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271319,0.000000,0.000000,0.250000,0,0);}
.m58_c01146{transform:matrix(0.272118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272118,0.000000,0.000000,0.250000,0,0);}
.m11_c01146{transform:matrix(0.272489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272489,0.000000,0.000000,0.250000,0,0);}
.m67_c01146{transform:matrix(0.272563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272563,0.000000,0.000000,0.250000,0,0);}
.m28_c01146{transform:matrix(0.272783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272783,0.000000,0.000000,0.250000,0,0);}
.m71_c01146{transform:matrix(0.273758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273758,0.000000,0.000000,0.250000,0,0);}
.m26_c01146{transform:matrix(0.274125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274125,0.000000,0.000000,0.250000,0,0);}
.m57_c01146{transform:matrix(0.275092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275092,0.000000,0.000000,0.250000,0,0);}
.mb_c01146{transform:matrix(0.275099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275099,0.000000,0.000000,0.250000,0,0);}
.m36_c01146{transform:matrix(0.275155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275155,0.000000,0.000000,0.250000,0,0);}
.m1a_c01146{transform:matrix(0.275913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275913,0.000000,0.000000,0.250000,0,0);}
.m21_c01146{transform:matrix(0.276572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276572,0.000000,0.000000,0.250000,0,0);}
.m2_c01146{transform:matrix(0.277398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277398,0.000000,0.000000,0.250000,0,0);}
.m73_c01146{transform:matrix(0.277739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277739,0.000000,0.000000,0.250000,0,0);}
.m9_c01146{transform:matrix(0.279642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279642,0.000000,0.000000,0.250000,0,0);}
.ma_c01146{transform:matrix(0.280672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280672,0.000000,0.000000,0.250000,0,0);}
.m7_c01146{transform:matrix(0.281119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281119,0.000000,0.000000,0.250000,0,0);}
.m4b_c01146{transform:matrix(0.281131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281131,0.000000,0.000000,0.250000,0,0);}
.m53_c01146{transform:matrix(0.282350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282350,0.000000,0.000000,0.250000,0,0);}
.m56_c01146{transform:matrix(0.284930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284930,0.000000,0.000000,0.250000,0,0);}
.m2d_c01146{transform:matrix(0.285385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285385,0.000000,0.000000,0.250000,0,0);}
.m6b_c01146{transform:matrix(0.288482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288482,0.000000,0.000000,0.250000,0,0);}
.m5c_c01146{transform:matrix(0.289736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289736,0.000000,0.000000,0.250000,0,0);}
.m24_c01146{transform:matrix(0.294086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294086,0.000000,0.000000,0.250000,0,0);}
.m2c_c01146{transform:matrix(0.294569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294569,0.000000,0.000000,0.250000,0,0);}
.m4e_c01146{transform:matrix(0.295166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295166,0.000000,0.000000,0.250000,0,0);}
.m40_c01146{transform:matrix(0.297981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297981,0.000000,0.000000,0.250000,0,0);}
.m29_c01146{transform:matrix(0.299046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299046,0.000000,0.000000,0.250000,0,0);}
.m3f_c01146{transform:matrix(0.299561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299561,0.000000,0.000000,0.250000,0,0);}
.m14_c01146{transform:matrix(0.300635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300635,0.000000,0.000000,0.250000,0,0);}
.m79_c01146{transform:matrix(0.301180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301180,0.000000,0.000000,0.250000,0,0);}
.m16_c01146{transform:matrix(0.302896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302896,0.000000,0.000000,0.250000,0,0);}
.m78_c01146{transform:matrix(0.303020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303020,0.000000,0.000000,0.250000,0,0);}
.m1_c01146{transform:matrix(0.304085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304085,0.000000,0.000000,0.250000,0,0);}
.m17_c01146{transform:matrix(0.304731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304731,0.000000,0.000000,0.250000,0,0);}
.m10_c01146{transform:matrix(0.313817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313817,0.000000,0.000000,0.250000,0,0);}
.me_c01146{transform:matrix(0.314678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314678,0.000000,0.000000,0.250000,0,0);}
.m32_c01146{transform:matrix(0.317192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317192,0.000000,0.000000,0.250000,0,0);}
.m34_c01146{transform:matrix(0.317344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317344,0.000000,0.000000,0.250000,0,0);}
.m15_c01146{transform:matrix(0.320725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320725,0.000000,0.000000,0.250000,0,0);}
.m25_c01146{transform:matrix(0.323068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323068,0.000000,0.000000,0.250000,0,0);}
.m3_c01146{transform:matrix(0.325433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325433,0.000000,0.000000,0.250000,0,0);}
.m6c_c01146{transform:matrix(0.326587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326587,0.000000,0.000000,0.250000,0,0);}
.m2e_c01146{transform:matrix(0.326795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326795,0.000000,0.000000,0.250000,0,0);}
.m30_c01146{transform:matrix(0.327272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327272,0.000000,0.000000,0.250000,0,0);}
.m6f_c01146{transform:matrix(0.333600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333600,0.000000,0.000000,0.250000,0,0);}
.m72_c01146{transform:matrix(0.334723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334723,0.000000,0.000000,0.250000,0,0);}
.m59_c01146{transform:matrix(0.335052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335052,0.000000,0.000000,0.250000,0,0);}
.m2b_c01146{transform:matrix(0.335445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335445,0.000000,0.000000,0.250000,0,0);}
.m38_c01146{transform:matrix(0.344416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344416,0.000000,0.000000,0.250000,0,0);}
.m6_c01146{transform:matrix(0.345740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345740,0.000000,0.000000,0.250000,0,0);}
.m64_c01146{transform:matrix(0.357485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357485,0.000000,0.000000,0.250000,0,0);}
.m54_c01146{transform:matrix(0.358439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358439,0.000000,0.000000,0.250000,0,0);}
.m6a_c01146{transform:matrix(0.362540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362540,0.000000,0.000000,0.250000,0,0);}
.m75_c01146{transform:matrix(0.368736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368736,0.000000,0.000000,0.250000,0,0);}
.m69_c01146{transform:matrix(0.380631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380631,0.000000,0.000000,0.250000,0,0);}
.m20_c01146{transform:matrix(0.388130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388130,0.000000,0.000000,0.250000,0,0);}
.m1b_c01146{transform:matrix(0.407341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407341,0.000000,0.000000,0.250000,0,0);}
.m3d_c01146{transform:matrix(0.459474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459474,0.000000,0.000000,0.250000,0,0);}
.m48_c01146{transform:matrix(0.489614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489614,0.000000,0.000000,0.250000,0,0);}
.v0_c01146{vertical-align:0.000000px;}
.v2_c01146{vertical-align:12.850200px;}
.v1_c01146{vertical-align:24.235200px;}
.ls25_c01146{letter-spacing:-3.201667px;}
.ls9_c01146{letter-spacing:-3.069990px;}
.ls8_c01146{letter-spacing:-2.778930px;}
.ls1e_c01146{letter-spacing:-2.702700px;}
.ls21_c01146{letter-spacing:-2.499849px;}
.ls22_c01146{letter-spacing:-2.328480px;}
.ls17_c01146{letter-spacing:-2.092867px;}
.lse_c01146{letter-spacing:-1.828832px;}
.ls11_c01146{letter-spacing:-1.473595px;}
.ls1b_c01146{letter-spacing:-1.276450px;}
.lsb_c01146{letter-spacing:-0.676447px;}
.ls1c_c01146{letter-spacing:-0.587545px;}
.ls12_c01146{letter-spacing:-0.555786px;}
.ls1f_c01146{letter-spacing:-0.476388px;}
.ls5_c01146{letter-spacing:0.000000px;}
.ls26_c01146{letter-spacing:0.594595px;}
.lsd_c01146{letter-spacing:1.171945px;}
.ls3_c01146{letter-spacing:1.389465px;}
.ls2_c01146{letter-spacing:1.516502px;}
.ls20_c01146{letter-spacing:1.706443px;}
.ls24_c01146{letter-spacing:2.143746px;}
.ls0_c01146{letter-spacing:2.231084px;}
.lsf_c01146{letter-spacing:2.699532px;}
.ls1d_c01146{letter-spacing:2.945666px;}
.ls15_c01146{letter-spacing:3.390284px;}
.ls16_c01146{letter-spacing:3.672900px;}
.ls7_c01146{letter-spacing:3.969900px;}
.ls19_c01146{letter-spacing:4.098610px;}
.ls13_c01146{letter-spacing:4.118400px;}
.ls6_c01146{letter-spacing:4.131329px;}
.ls1_c01146{letter-spacing:4.262900px;}
.ls14_c01146{letter-spacing:4.297986px;}
.lsc_c01146{letter-spacing:4.385700px;}
.ls4_c01146{letter-spacing:9.939600px;}
.ls1a_c01146{letter-spacing:31.363200px;}
.ls23_c01146{letter-spacing:57.024198px;}
.ls10_c01146{letter-spacing:59.875398px;}
.lsa_c01146{letter-spacing:61.300998px;}
.ls18_c01146{letter-spacing:64.152198px;}
.sc__c01146{text-shadow:none;}
.sc0_c01146{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01146{-webkit-text-stroke:0px transparent;}
.sc0_c01146{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01146{word-spacing:-21.928500px;}
.ws5_c01146{word-spacing:-21.238965px;}
.ws4_c01146{word-spacing:-20.493050px;}
.ws0_c01146{word-spacing:-20.454905px;}
.ws1_c01146{word-spacing:-19.293714px;}
.ws2_c01146{word-spacing:-4.200768px;}
.ws6_c01146{word-spacing:0.000000px;}
._8_c01146{margin-left:-23.321056px;}
._7_c01146{margin-left:-20.097792px;}
._a_c01146{margin-left:-10.559934px;}
._1_c01146{margin-left:-3.695040px;}
._9_c01146{width:3.441944px;}
._5_c01146{width:9.607158px;}
._3_c01146{width:15.928862px;}
._4_c01146{width:23.170198px;}
._6_c01146{width:25.645950px;}
._b_c01146{width:32.883771px;}
._0_c01146{width:34.155000px;}
._2_c01146{width:81.192395px;}
.fc0_c01146{color:transparent;}
.fs19_c01146{font-size:19.206000px;}
.fs16_c01146{font-size:22.572000px;}
.fs12_c01146{font-size:25.344000px;}
.fs0_c01146{font-size:27.720000px;}
.fs13_c01146{font-size:31.363200px;}
.fs6_c01146{font-size:38.808000px;}
.fs17_c01146{font-size:57.024198px;}
.fse_c01146{font-size:59.796198px;}
.fs9_c01146{font-size:59.875398px;}
.fs4_c01146{font-size:61.300998px;}
.fs1a_c01146{font-size:61.776198px;}
.fsf_c01146{font-size:64.152198px;}
.fsa_c01146{font-size:66.528000px;}
.fs11_c01146{font-size:67.320000px;}
.fs8_c01146{font-size:70.092198px;}
.fsc_c01146{font-size:71.676198px;}
.fsd_c01146{font-size:73.458000px;}
.fs7_c01146{font-size:74.646198px;}
.fs14_c01146{font-size:77.220000px;}
.fs3_c01146{font-size:78.804000px;}
.fs2_c01146{font-size:79.398000px;}
.fs10_c01146{font-size:81.972198px;}
.fsb_c01146{font-size:82.368000px;}
.fs1_c01146{font-size:87.714000px;}
.fs15_c01146{font-size:90.288000px;}
.fs18_c01146{font-size:91.476198px;}
.fs5_c01146{font-size:92.664000px;}
.y0_c01146{bottom:0.000000px;}
.y1_c01146{bottom:76.500000px;}
.y1c_c01146{bottom:127.141770px;}
.y1b_c01146{bottom:159.935520px;}
.y2_c01146{bottom:221.592720px;}
.y1a_c01146{bottom:225.508170px;}
.y19_c01146{bottom:245.471520px;}
.y17_c01146{bottom:257.584170px;}
.y18_c01146{bottom:258.658320px;}
.y16_c01146{bottom:290.734320px;}
.y15_c01146{bottom:386.249520px;}
.y14_c01146{bottom:417.612720px;}
.y13_c01146{bottom:467.152320px;}
.y12_c01146{bottom:477.844320px;}
.y10_c01146{bottom:482.472570px;}
.y11_c01146{bottom:490.669770px;}
.yf_c01146{bottom:514.192170px;}
.ye_c01146{bottom:579.418320px;}
.yd_c01146{bottom:611.132970px;}
.yc_c01146{bottom:636.798720px;}
.yb_c01146{bottom:675.284970px;}
.ya_c01146{bottom:739.080570px;}
.y9_c01146{bottom:791.476320px;}
.y8_c01146{bottom:802.519770px;}
.y6_c01146{bottom:866.669295px;}
.y7_c01146{bottom:866.671770px;}
.y5_c01146{bottom:899.460570px;}
.y4_c01146{bottom:931.892970px;}
.y3_c01146{bottom:1075.165770px;}
.h14_c01146{height:20.887891px;}
.h17_c01146{height:23.541891px;}
.h13_c01146{height:24.873750px;}
.h2_c01146{height:28.911094px;}
.h18_c01146{height:37.978116px;}
.ha_c01146{height:39.877015px;}
.h7_c01146{height:40.475531px;}
.h5_c01146{height:40.826465px;}
.h10_c01146{height:42.725364px;}
.hf_c01146{height:58.686698px;}
.hb_c01146{height:65.293594px;}
.h12_c01146{height:66.070898px;}
.he_c01146{height:72.095010px;}
.h9_c01146{height:73.103972px;}
.hd_c01146{height:74.756035px;}
.h15_c01146{height:75.787207px;}
.h8_c01146{height:77.853652px;}
.h4_c01146{height:77.924795px;}
.h11_c01146{height:80.451229px;}
.hc_c01146{height:80.839688px;}
.h3_c01146{height:86.086494px;}
.h16_c01146{height:88.612734px;}
.h19_c01146{height:89.778886px;}
.h6_c01146{height:90.899402px;}
.h1_c01146{height:1110.000000px;}
.h0_c01146{height:1263.000000px;}
.w1_c01146{width:775.500000px;}
.w0_c01146{width:892.500000px;}
.x0_c01146{left:0.000000px;}
.x2_c01146{left:50.843085px;}
.x1_c01146{left:58.500000px;}
.x2a_c01146{left:81.706335px;}
.x21_c01146{left:82.750785px;}
.x37_c01146{left:135.364335px;}
.x22_c01146{left:136.492935px;}
.x4_c01146{left:137.977935px;}
.x58_c01146{left:157.164135px;}
.x18_c01146{left:159.431235px;}
.x2b_c01146{left:169.133235px;}
.x61_c01146{left:178.894635px;}
.x4c_c01146{left:180.241035px;}
.x30_c01146{left:190.423185px;}
.x19_c01146{left:192.586335px;}
.xf_c01146{left:195.689985px;}
.x3f_c01146{left:201.644835px;}
.x53_c01146{left:202.664535px;}
.x5_c01146{left:204.228735px;}
.x29_c01146{left:210.866685px;}
.x5b_c01146{left:212.846685px;}
.x38_c01146{left:214.856385px;}
.x24_c01146{left:224.830635px;}
.x31_c01146{left:226.766085px;}
.x32_c01146{left:234.295035px;}
.x23_c01146{left:237.037335px;}
.x10_c01146{left:238.457985px;}
.x39_c01146{left:246.783885px;}
.x6_c01146{left:248.209485px;}
.x1a_c01146{left:259.564785px;}
.x43_c01146{left:263.143635px;}
.x3a_c01146{left:266.573985px;}
.x2c_c01146{left:268.984635px;}
.x11_c01146{left:270.642885px;}
.x4d_c01146{left:279.839985px;}
.x44_c01146{left:288.368835px;}
.x54_c01146{left:290.576535px;}
.x2d_c01146{left:291.764535px;}
.x33_c01146{left:301.412085px;}
.x1b_c01146{left:302.847585px;}
.x62_c01146{left:304.441485px;}
.x5c_c01146{left:312.460485px;}
.x1c_c01146{left:315.559185px;}
.x4e_c01146{left:323.899935px;}
.x34_c01146{left:325.132485px;}
.x45_c01146{left:327.642135px;}
.x46_c01146{left:333.225735px;}
.x57_c01146{left:336.289785px;}
.x26_c01146{left:337.646085px;}
.x40_c01146{left:346.090785px;}
.x1d_c01146{left:347.115435px;}
.x63_c01146{left:348.669735px;}
.x47_c01146{left:358.104435px;}
.x12_c01146{left:359.396385px;}
.x7_c01146{left:361.772385px;}
.x25_c01146{left:370.316085px;}
.x1e_c01146{left:373.172235px;}
.x8_c01146{left:381.488235px;}
.x35_c01146{left:390.903135px;}
.x13_c01146{left:392.323785px;}
.x27_c01146{left:403.515735px;}
.x1f_c01146{left:412.811835px;}
.x9_c01146{left:414.618585px;}
.x64_c01146{left:424.201785px;}
.x4f_c01146{left:425.968935px;}
.x20_c01146{left:427.775685px;}
.x2e_c01146{left:436.299585px;}
.x14_c01146{left:437.794485px;}
.x5d_c01146{left:447.417285px;}
.xa_c01146{left:449.199285px;}
.x48_c01146{left:457.609335px;}
.x3b_c01146{left:464.826435px;}
.x5e_c01146{left:468.068685px;}
.xb_c01146{left:469.835835px;}
.x50_c01146{left:491.130735px;}
.x3c_c01146{left:507.505335px;}
.x15_c01146{left:513.153285px;}
.x55_c01146{left:524.048235px;}
.x28_c01146{left:525.251085px;}
.x51_c01146{left:546.813285px;}
.x52_c01146{left:554.406585px;}
.x65_c01146{left:556.837035px;}
.x49_c01146{left:558.010185px;}
.x36_c01146{left:570.444585px;}
.x59_c01146{left:578.527935px;}
.x3d_c01146{left:591.199935px;}
.xc_c01146{left:592.788885px;}
.x4a_c01146{left:601.094985px;}
.x4b_c01146{left:622.142385px;}
.xd_c01146{left:624.775785px;}
.x5f_c01146{left:633.037335px;}
.x16_c01146{left:634.705485px;}
.x56_c01146{left:644.714385px;}
.x2f_c01146{left:656.678535px;}
.x60_c01146{left:667.613085px;}
.x5a_c01146{left:669.340635px;}
.xe_c01146{left:680.131635px;}
.x3e_c01146{left:688.868385px;}
.x3_c01146{left:703.614435px;}
.x41_c01146{left:705.030135px;}
.x42_c01146{left:706.371585px;}
.x17_c01146{left:736.512135px;}
@media print{
.v0_c01146{vertical-align:0.000000pt;}
.v2_c01146{vertical-align:11.422400pt;}
.v1_c01146{vertical-align:21.542400pt;}
.ls25_c01146{letter-spacing:-2.845926pt;}
.ls9_c01146{letter-spacing:-2.728880pt;}
.ls8_c01146{letter-spacing:-2.470160pt;}
.ls1e_c01146{letter-spacing:-2.402400pt;}
.ls21_c01146{letter-spacing:-2.222088pt;}
.ls22_c01146{letter-spacing:-2.069760pt;}
.ls17_c01146{letter-spacing:-1.860326pt;}
.lse_c01146{letter-spacing:-1.625628pt;}
.ls11_c01146{letter-spacing:-1.309862pt;}
.ls1b_c01146{letter-spacing:-1.134622pt;}
.lsb_c01146{letter-spacing:-0.601286pt;}
.ls1c_c01146{letter-spacing:-0.522262pt;}
.ls12_c01146{letter-spacing:-0.494032pt;}
.ls1f_c01146{letter-spacing:-0.423456pt;}
.ls5_c01146{letter-spacing:0.000000pt;}
.ls26_c01146{letter-spacing:0.528529pt;}
.lsd_c01146{letter-spacing:1.041729pt;}
.ls3_c01146{letter-spacing:1.235080pt;}
.ls2_c01146{letter-spacing:1.348002pt;}
.ls20_c01146{letter-spacing:1.516838pt;}
.ls24_c01146{letter-spacing:1.905552pt;}
.ls0_c01146{letter-spacing:1.983186pt;}
.lsf_c01146{letter-spacing:2.399584pt;}
.ls1d_c01146{letter-spacing:2.618370pt;}
.ls15_c01146{letter-spacing:3.013586pt;}
.ls16_c01146{letter-spacing:3.264800pt;}
.ls7_c01146{letter-spacing:3.528800pt;}
.ls19_c01146{letter-spacing:3.643209pt;}
.ls13_c01146{letter-spacing:3.660800pt;}
.ls6_c01146{letter-spacing:3.672293pt;}
.ls1_c01146{letter-spacing:3.789245pt;}
.ls14_c01146{letter-spacing:3.820432pt;}
.lsc_c01146{letter-spacing:3.898400pt;}
.ls4_c01146{letter-spacing:8.835200pt;}
.ls1a_c01146{letter-spacing:27.878400pt;}
.ls23_c01146{letter-spacing:50.688176pt;}
.ls10_c01146{letter-spacing:53.222576pt;}
.lsa_c01146{letter-spacing:54.489776pt;}
.ls18_c01146{letter-spacing:57.024176pt;}
.ws3_c01146{word-spacing:-19.492000pt;}
.ws5_c01146{word-spacing:-18.879080pt;}
.ws4_c01146{word-spacing:-18.216044pt;}
.ws0_c01146{word-spacing:-18.182138pt;}
.ws1_c01146{word-spacing:-17.149968pt;}
.ws2_c01146{word-spacing:-3.734016pt;}
.ws6_c01146{word-spacing:0.000000pt;}
._8_c01146{margin-left:-20.729828pt;}
._7_c01146{margin-left:-17.864704pt;}
._a_c01146{margin-left:-9.386608pt;}
._1_c01146{margin-left:-3.284480pt;}
._9_c01146{width:3.059506pt;}
._5_c01146{width:8.539696pt;}
._3_c01146{width:14.158989pt;}
._4_c01146{width:20.595731pt;}
._6_c01146{width:22.796400pt;}
._b_c01146{width:29.230018pt;}
._0_c01146{width:30.360000pt;}
._2_c01146{width:72.171018pt;}
.fs19_c01146{font-size:17.072000pt;}
.fs16_c01146{font-size:20.064000pt;}
.fs12_c01146{font-size:22.528000pt;}
.fs0_c01146{font-size:24.640000pt;}
.fs13_c01146{font-size:27.878400pt;}
.fs6_c01146{font-size:34.496000pt;}
.fs17_c01146{font-size:50.688176pt;}
.fse_c01146{font-size:53.152176pt;}
.fs9_c01146{font-size:53.222576pt;}
.fs4_c01146{font-size:54.489776pt;}
.fs1a_c01146{font-size:54.912176pt;}
.fsf_c01146{font-size:57.024176pt;}
.fsa_c01146{font-size:59.136000pt;}
.fs11_c01146{font-size:59.840000pt;}
.fs8_c01146{font-size:62.304176pt;}
.fsc_c01146{font-size:63.712176pt;}
.fsd_c01146{font-size:65.296000pt;}
.fs7_c01146{font-size:66.352176pt;}
.fs14_c01146{font-size:68.640000pt;}
.fs3_c01146{font-size:70.048000pt;}
.fs2_c01146{font-size:70.576000pt;}
.fs10_c01146{font-size:72.864176pt;}
.fsb_c01146{font-size:73.216000pt;}
.fs1_c01146{font-size:77.968000pt;}
.fs15_c01146{font-size:80.256000pt;}
.fs18_c01146{font-size:81.312176pt;}
.fs5_c01146{font-size:82.368000pt;}
.y0_c01146{bottom:0.000000pt;}
.y1_c01146{bottom:68.000000pt;}
.y1c_c01146{bottom:113.014907pt;}
.y1b_c01146{bottom:142.164907pt;}
.y2_c01146{bottom:196.971307pt;}
.y1a_c01146{bottom:200.451707pt;}
.y19_c01146{bottom:218.196907pt;}
.y17_c01146{bottom:228.963707pt;}
.y18_c01146{bottom:229.918507pt;}
.y16_c01146{bottom:258.430507pt;}
.y15_c01146{bottom:343.332907pt;}
.y14_c01146{bottom:371.211307pt;}
.y13_c01146{bottom:415.246507pt;}
.y12_c01146{bottom:424.750507pt;}
.y10_c01146{bottom:428.864507pt;}
.y11_c01146{bottom:436.150907pt;}
.yf_c01146{bottom:457.059707pt;}
.ye_c01146{bottom:515.038507pt;}
.yd_c01146{bottom:543.229307pt;}
.yc_c01146{bottom:566.043307pt;}
.yb_c01146{bottom:600.253307pt;}
.ya_c01146{bottom:656.960507pt;}
.y9_c01146{bottom:703.534507pt;}
.y8_c01146{bottom:713.350907pt;}
.y6_c01146{bottom:770.372707pt;}
.y7_c01146{bottom:770.374907pt;}
.y5_c01146{bottom:799.520507pt;}
.y4_c01146{bottom:828.349307pt;}
.y3_c01146{bottom:955.702907pt;}
.h14_c01146{height:18.567014pt;}
.h17_c01146{height:20.926125pt;}
.h13_c01146{height:22.110000pt;}
.h2_c01146{height:25.698750pt;}
.h18_c01146{height:33.758325pt;}
.ha_c01146{height:35.446236pt;}
.h7_c01146{height:35.978250pt;}
.h5_c01146{height:36.290191pt;}
.h10_c01146{height:37.978101pt;}
.hf_c01146{height:52.165954pt;}
.hb_c01146{height:58.038750pt;}
.h12_c01146{height:58.729688pt;}
.he_c01146{height:64.084453pt;}
.h9_c01146{height:64.981309pt;}
.hd_c01146{height:66.449809pt;}
.h15_c01146{height:67.366406pt;}
.h8_c01146{height:69.203246pt;}
.h4_c01146{height:69.266484pt;}
.h11_c01146{height:71.512204pt;}
.hc_c01146{height:71.857500pt;}
.h3_c01146{height:76.521328pt;}
.h16_c01146{height:78.766875pt;}
.h19_c01146{height:79.803454pt;}
.h6_c01146{height:80.799469pt;}
.h1_c01146{height:986.666667pt;}
.h0_c01146{height:1122.666667pt;}
.w1_c01146{width:689.333333pt;}
.w0_c01146{width:793.333333pt;}
.x0_c01146{left:0.000000pt;}
.x2_c01146{left:45.193853pt;}
.x1_c01146{left:52.000000pt;}
.x2a_c01146{left:72.627853pt;}
.x21_c01146{left:73.556253pt;}
.x37_c01146{left:120.323853pt;}
.x22_c01146{left:121.327053pt;}
.x4_c01146{left:122.647053pt;}
.x58_c01146{left:139.701453pt;}
.x18_c01146{left:141.716653pt;}
.x2b_c01146{left:150.340653pt;}
.x61_c01146{left:159.017453pt;}
.x4c_c01146{left:160.214253pt;}
.x30_c01146{left:169.265053pt;}
.x19_c01146{left:171.187853pt;}
.xf_c01146{left:173.946653pt;}
.x3f_c01146{left:179.239853pt;}
.x53_c01146{left:180.146253pt;}
.x5_c01146{left:181.536653pt;}
.x29_c01146{left:187.437053pt;}
.x5b_c01146{left:189.197053pt;}
.x38_c01146{left:190.983453pt;}
.x24_c01146{left:199.849453pt;}
.x31_c01146{left:201.569853pt;}
.x32_c01146{left:208.262253pt;}
.x23_c01146{left:210.699853pt;}
.x10_c01146{left:211.962653pt;}
.x39_c01146{left:219.363453pt;}
.x6_c01146{left:220.630653pt;}
.x1a_c01146{left:230.724253pt;}
.x43_c01146{left:233.905453pt;}
.x3a_c01146{left:236.954653pt;}
.x2c_c01146{left:239.097453pt;}
.x11_c01146{left:240.571453pt;}
.x4d_c01146{left:248.746653pt;}
.x44_c01146{left:256.327853pt;}
.x54_c01146{left:258.290253pt;}
.x2d_c01146{left:259.346253pt;}
.x33_c01146{left:267.921853pt;}
.x1b_c01146{left:269.197853pt;}
.x62_c01146{left:270.614653pt;}
.x5c_c01146{left:277.742653pt;}
.x1c_c01146{left:280.497053pt;}
.x4e_c01146{left:287.911053pt;}
.x34_c01146{left:289.006653pt;}
.x45_c01146{left:291.237453pt;}
.x46_c01146{left:296.200653pt;}
.x57_c01146{left:298.924253pt;}
.x26_c01146{left:300.129853pt;}
.x40_c01146{left:307.636253pt;}
.x1d_c01146{left:308.547053pt;}
.x63_c01146{left:309.928653pt;}
.x47_c01146{left:318.315053pt;}
.x12_c01146{left:319.463453pt;}
.x7_c01146{left:321.575453pt;}
.x25_c01146{left:329.169853pt;}
.x1e_c01146{left:331.708653pt;}
.x8_c01146{left:339.100653pt;}
.x35_c01146{left:347.469453pt;}
.x13_c01146{left:348.732253pt;}
.x27_c01146{left:358.680653pt;}
.x1f_c01146{left:366.943853pt;}
.x9_c01146{left:368.549853pt;}
.x64_c01146{left:377.068253pt;}
.x4f_c01146{left:378.639053pt;}
.x20_c01146{left:380.245053pt;}
.x2e_c01146{left:387.821853pt;}
.x14_c01146{left:389.150653pt;}
.x5d_c01146{left:397.704253pt;}
.xa_c01146{left:399.288253pt;}
.x48_c01146{left:406.763853pt;}
.x3b_c01146{left:413.179053pt;}
.x5e_c01146{left:416.061053pt;}
.xb_c01146{left:417.631853pt;}
.x50_c01146{left:436.560653pt;}
.x3c_c01146{left:451.115853pt;}
.x15_c01146{left:456.136253pt;}
.x55_c01146{left:465.820653pt;}
.x28_c01146{left:466.889853pt;}
.x51_c01146{left:486.056253pt;}
.x52_c01146{left:492.805853pt;}
.x65_c01146{left:494.966253pt;}
.x49_c01146{left:496.009053pt;}
.x36_c01146{left:507.061853pt;}
.x59_c01146{left:514.247053pt;}
.x3d_c01146{left:525.511053pt;}
.xc_c01146{left:526.923453pt;}
.x4a_c01146{left:534.306653pt;}
.x4b_c01146{left:553.015453pt;}
.xd_c01146{left:555.356253pt;}
.x5f_c01146{left:562.699853pt;}
.x16_c01146{left:564.182653pt;}
.x56_c01146{left:573.079453pt;}
.x2f_c01146{left:583.714253pt;}
.x60_c01146{left:593.433853pt;}
.x5a_c01146{left:594.969453pt;}
.xe_c01146{left:604.561453pt;}
.x3e_c01146{left:612.327453pt;}
.x3_c01146{left:625.435053pt;}
.x41_c01146{left:626.693453pt;}
.x42_c01146{left:627.885853pt;}
.x17_c01146{left:654.677453pt;}
}





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

.ir_c01147:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01147{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01147;src:url('chunks/assets/font_ec3d47ab9007b6b4c9fe6b66.woff2')format("woff");}.ff1_c01147{font-family:ff1_c01147;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01147;src:url('chunks/assets/font_4b9671b872fbe688f374db41.woff2')format("woff");}.ff2_c01147{font-family:ff2_c01147;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01147;src:url('chunks/assets/font_1f73359fe85a8fbc72bee533.woff2')format("woff");}.ff3_c01147{font-family:ff3_c01147;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01147;src:url('chunks/assets/font_087c0c5725521f9593b74b8b.woff2')format("woff");}.ff4_c01147{font-family:ff4_c01147;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01147;src:url('chunks/assets/font_8b60a25bb1600bc063281e8a.woff2')format("woff");}.ff5_c01147{font-family:ff5_c01147;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2b_c01147{transform:matrix(0.156177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156177,0.000000,0.000000,0.250000,0,0);}
.m67_c01147{transform:matrix(0.167333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167333,0.000000,0.000000,0.250000,0,0);}
.m54_c01147{transform:matrix(0.175607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175607,0.000000,0.000000,0.250000,0,0);}
.m60_c01147{transform:matrix(0.176588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176588,0.000000,0.000000,0.250000,0,0);}
.m21_c01147{transform:matrix(0.178854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178854,0.000000,0.000000,0.250000,0,0);}
.m30_c01147{transform:matrix(0.183689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183689,0.000000,0.000000,0.250000,0,0);}
.m6c_c01147{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m55_c01147{transform:matrix(0.222361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222361,0.000000,0.000000,0.250000,0,0);}
.m1e_c01147{transform:matrix(0.235091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235091,0.000000,0.000000,0.250000,0,0);}
.m82_c01147{transform:matrix(0.239103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239103,0.000000,0.000000,0.250000,0,0);}
.m51_c01147{transform:matrix(0.240391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240391,0.000000,0.000000,0.250000,0,0);}
.m41_c01147{transform:matrix(0.242154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242154,0.000000,0.000000,0.250000,0,0);}
.m68_c01147{transform:matrix(0.242665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242665,0.000000,0.000000,0.250000,0,0);}
.m80_c01147{transform:matrix(0.246487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246487,0.000000,0.000000,0.250000,0,0);}
.m0_c01147{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01147{transform:matrix(0.251515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251515,0.000000,0.000000,0.250000,0,0);}
.m7d_c01147{transform:matrix(0.252474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252474,0.000000,0.000000,0.250000,0,0);}
.m28_c01147{transform:matrix(0.253760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253760,0.000000,0.000000,0.250000,0,0);}
.m7f_c01147{transform:matrix(0.254272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254272,0.000000,0.000000,0.250000,0,0);}
.m9_c01147{transform:matrix(0.254920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254920,0.000000,0.000000,0.250000,0,0);}
.m6b_c01147{transform:matrix(0.255499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255499,0.000000,0.000000,0.250000,0,0);}
.m86_c01147{transform:matrix(0.256181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256181,0.000000,0.000000,0.250000,0,0);}
.m20_c01147{transform:matrix(0.259094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259094,0.000000,0.000000,0.250000,0,0);}
.m1f_c01147{transform:matrix(0.262053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262053,0.000000,0.000000,0.250000,0,0);}
.m17_c01147{transform:matrix(0.263376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263376,0.000000,0.000000,0.250000,0,0);}
.m40_c01147{transform:matrix(0.266548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266548,0.000000,0.000000,0.250000,0,0);}
.m11_c01147{transform:matrix(0.267450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267450,0.000000,0.000000,0.250000,0,0);}
.m49_c01147{transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);}
.m4b_c01147{transform:matrix(0.268870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268870,0.000000,0.000000,0.250000,0,0);}
.m16_c01147{transform:matrix(0.269988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269988,0.000000,0.000000,0.250000,0,0);}
.m23_c01147{transform:matrix(0.270128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270128,0.000000,0.000000,0.250000,0,0);}
.m1b_c01147{transform:matrix(0.270536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270536,0.000000,0.000000,0.250000,0,0);}
.m7a_c01147{transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);}
.m13_c01147{transform:matrix(0.271986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271986,0.000000,0.000000,0.250000,0,0);}
.m42_c01147{transform:matrix(0.272481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272481,0.000000,0.000000,0.250000,0,0);}
.m27_c01147{transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);}
.m66_c01147{transform:matrix(0.273032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273032,0.000000,0.000000,0.250000,0,0);}
.m7_c01147{transform:matrix(0.275368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275368,0.000000,0.000000,0.250000,0,0);}
.mc_c01147{transform:matrix(0.276362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276362,0.000000,0.000000,0.250000,0,0);}
.m69_c01147{transform:matrix(0.276428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276428,0.000000,0.000000,0.250000,0,0);}
.m2a_c01147{transform:matrix(0.276571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276571,0.000000,0.000000,0.250000,0,0);}
.m77_c01147{transform:matrix(0.276685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276685,0.000000,0.000000,0.250000,0,0);}
.mf_c01147{transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);}
.m56_c01147{transform:matrix(0.278331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278331,0.000000,0.000000,0.250000,0,0);}
.m6d_c01147{transform:matrix(0.278465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278465,0.000000,0.000000,0.250000,0,0);}
.m43_c01147{transform:matrix(0.279880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279880,0.000000,0.000000,0.250000,0,0);}
.m3d_c01147{transform:matrix(0.280578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280578,0.000000,0.000000,0.250000,0,0);}
.m70_c01147{transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);}
.m3f_c01147{transform:matrix(0.281074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281074,0.000000,0.000000,0.250000,0,0);}
.m46_c01147{transform:matrix(0.281556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281556,0.000000,0.000000,0.250000,0,0);}
.m3b_c01147{transform:matrix(0.281776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281776,0.000000,0.000000,0.250000,0,0);}
.m39_c01147{transform:matrix(0.282537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282537,0.000000,0.000000,0.250000,0,0);}
.m18_c01147{transform:matrix(0.282836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282836,0.000000,0.000000,0.250000,0,0);}
.m75_c01147{transform:matrix(0.283490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283490,0.000000,0.000000,0.250000,0,0);}
.m83_c01147{transform:matrix(0.283860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283860,0.000000,0.000000,0.250000,0,0);}
.m92_c01147{transform:matrix(0.283967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283967,0.000000,0.000000,0.250000,0,0);}
.m62_c01147{transform:matrix(0.285652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285652,0.000000,0.000000,0.250000,0,0);}
.m22_c01147{transform:matrix(0.285963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285963,0.000000,0.000000,0.250000,0,0);}
.m8f_c01147{transform:matrix(0.286076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286076,0.000000,0.000000,0.250000,0,0);}
.m90_c01147{transform:matrix(0.286185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286185,0.000000,0.000000,0.250000,0,0);}
.m19_c01147{transform:matrix(0.286502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286502,0.000000,0.000000,0.250000,0,0);}
.m52_c01147{transform:matrix(0.287256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287256,0.000000,0.000000,0.250000,0,0);}
.m81_c01147{transform:matrix(0.287758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287758,0.000000,0.000000,0.250000,0,0);}
.m32_c01147{transform:matrix(0.288009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288009,0.000000,0.000000,0.250000,0,0);}
.m98_c01147{transform:matrix(0.288171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288171,0.000000,0.000000,0.250000,0,0);}
.m29_c01147{transform:matrix(0.288790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288790,0.000000,0.000000,0.250000,0,0);}
.m36_c01147{transform:matrix(0.288945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288945,0.000000,0.000000,0.250000,0,0);}
.m4d_c01147{transform:matrix(0.289047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289047,0.000000,0.000000,0.250000,0,0);}
.m53_c01147{transform:matrix(0.290248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290248,0.000000,0.000000,0.250000,0,0);}
.m3c_c01147{transform:matrix(0.290260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290260,0.000000,0.000000,0.250000,0,0);}
.ma_c01147{transform:matrix(0.290353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290353,0.000000,0.000000,0.250000,0,0);}
.m7e_c01147{transform:matrix(0.291185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291185,0.000000,0.000000,0.250000,0,0);}
.m8_c01147{transform:matrix(0.293646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293646,0.000000,0.000000,0.250000,0,0);}
.m7c_c01147{transform:matrix(0.293762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293762,0.000000,0.000000,0.250000,0,0);}
.m3a_c01147{transform:matrix(0.294141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294141,0.000000,0.000000,0.250000,0,0);}
.m5_c01147{transform:matrix(0.294416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294416,0.000000,0.000000,0.250000,0,0);}
.m76_c01147{transform:matrix(0.294452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294452,0.000000,0.000000,0.250000,0,0);}
.m94_c01147{transform:matrix(0.296044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296044,0.000000,0.000000,0.250000,0,0);}
.m25_c01147{transform:matrix(0.296896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296896,0.000000,0.000000,0.250000,0,0);}
.m24_c01147{transform:matrix(0.296995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296995,0.000000,0.000000,0.250000,0,0);}
.m6_c01147{transform:matrix(0.297826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297826,0.000000,0.000000,0.250000,0,0);}
.m37_c01147{transform:matrix(0.299390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299390,0.000000,0.000000,0.250000,0,0);}
.m87_c01147{transform:matrix(0.299546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299546,0.000000,0.000000,0.250000,0,0);}
.m2d_c01147{transform:matrix(0.300097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300097,0.000000,0.000000,0.250000,0,0);}
.m6f_c01147{transform:matrix(0.300610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300610,0.000000,0.000000,0.250000,0,0);}
.m2c_c01147{transform:matrix(0.301202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301202,0.000000,0.000000,0.250000,0,0);}
.m99_c01147{transform:matrix(0.303468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303468,0.000000,0.000000,0.250000,0,0);}
.m14_c01147{transform:matrix(0.303938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303938,0.000000,0.000000,0.250000,0,0);}
.m96_c01147{transform:matrix(0.304659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304659,0.000000,0.000000,0.250000,0,0);}
.m6e_c01147{transform:matrix(0.305011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305011,0.000000,0.000000,0.250000,0,0);}
.m91_c01147{transform:matrix(0.305251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305251,0.000000,0.000000,0.250000,0,0);}
.m64_c01147{transform:matrix(0.305280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305280,0.000000,0.000000,0.250000,0,0);}
.m74_c01147{transform:matrix(0.306475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306475,0.000000,0.000000,0.250000,0,0);}
.m65_c01147{transform:matrix(0.306531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306531,0.000000,0.000000,0.250000,0,0);}
.m4e_c01147{transform:matrix(0.307241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307241,0.000000,0.000000,0.250000,0,0);}
.m50_c01147{transform:matrix(0.307607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307607,0.000000,0.000000,0.250000,0,0);}
.m8e_c01147{transform:matrix(0.308196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308196,0.000000,0.000000,0.250000,0,0);}
.mb_c01147{transform:matrix(0.308239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308239,0.000000,0.000000,0.250000,0,0);}
.m10_c01147{transform:matrix(0.308536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308536,0.000000,0.000000,0.250000,0,0);}
.m5b_c01147{transform:matrix(0.309761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309761,0.000000,0.000000,0.250000,0,0);}
.m5e_c01147{transform:matrix(0.310236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310236,0.000000,0.000000,0.250000,0,0);}
.m4c_c01147{transform:matrix(0.310393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310393,0.000000,0.000000,0.250000,0,0);}
.m2_c01147{transform:matrix(0.312090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312090,0.000000,0.000000,0.250000,0,0);}
.m73_c01147{transform:matrix(0.313252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313252,0.000000,0.000000,0.250000,0,0);}
.m1a_c01147{transform:matrix(0.313428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313428,0.000000,0.000000,0.250000,0,0);}
.m5d_c01147{transform:matrix(0.315985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315985,0.000000,0.000000,0.250000,0,0);}
.m48_c01147{transform:matrix(0.318333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318333,0.000000,0.000000,0.250000,0,0);}
.m8a_c01147{transform:matrix(0.319887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319887,0.000000,0.000000,0.250000,0,0);}
.m59_c01147{transform:matrix(0.320067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320067,0.000000,0.000000,0.250000,0,0);}
.m88_c01147{transform:matrix(0.322661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322661,0.000000,0.000000,0.250000,0,0);}
.m84_c01147{transform:matrix(0.323105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323105,0.000000,0.000000,0.250000,0,0);}
.m35_c01147{transform:matrix(0.324161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324161,0.000000,0.000000,0.250000,0,0);}
.m89_c01147{transform:matrix(0.325340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325340,0.000000,0.000000,0.250000,0,0);}
.m57_c01147{transform:matrix(0.325397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325397,0.000000,0.000000,0.250000,0,0);}
.m79_c01147{transform:matrix(0.328347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328347,0.000000,0.000000,0.250000,0,0);}
.m31_c01147{transform:matrix(0.333176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333176,0.000000,0.000000,0.250000,0,0);}
.m63_c01147{transform:matrix(0.333383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333383,0.000000,0.000000,0.250000,0,0);}
.m1d_c01147{transform:matrix(0.333423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333423,0.000000,0.000000,0.250000,0,0);}
.m8d_c01147{transform:matrix(0.335265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335265,0.000000,0.000000,0.250000,0,0);}
.m4a_c01147{transform:matrix(0.335532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335532,0.000000,0.000000,0.250000,0,0);}
.m93_c01147{transform:matrix(0.336269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336269,0.000000,0.000000,0.250000,0,0);}
.m97_c01147{transform:matrix(0.338356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338356,0.000000,0.000000,0.250000,0,0);}
.m78_c01147{transform:matrix(0.341036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341036,0.000000,0.000000,0.250000,0,0);}
.m45_c01147{transform:matrix(0.341818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341818,0.000000,0.000000,0.250000,0,0);}
.m72_c01147{transform:matrix(0.342460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342460,0.000000,0.000000,0.250000,0,0);}
.m2f_c01147{transform:matrix(0.342830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342830,0.000000,0.000000,0.250000,0,0);}
.m38_c01147{transform:matrix(0.342847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342847,0.000000,0.000000,0.250000,0,0);}
.m61_c01147{transform:matrix(0.342985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342985,0.000000,0.000000,0.250000,0,0);}
.m95_c01147{transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);}
.m12_c01147{transform:matrix(0.346617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346617,0.000000,0.000000,0.250000,0,0);}
.m7b_c01147{transform:matrix(0.346907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346907,0.000000,0.000000,0.250000,0,0);}
.m26_c01147{transform:matrix(0.347106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347106,0.000000,0.000000,0.250000,0,0);}
.m5f_c01147{transform:matrix(0.347328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347328,0.000000,0.000000,0.250000,0,0);}
.m58_c01147{transform:matrix(0.348286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348286,0.000000,0.000000,0.250000,0,0);}
.me_c01147{transform:matrix(0.350620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350620,0.000000,0.000000,0.250000,0,0);}
.m8c_c01147{transform:matrix(0.351305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351305,0.000000,0.000000,0.250000,0,0);}
.m15_c01147{transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);}
.m4f_c01147{transform:matrix(0.352000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352000,0.000000,0.000000,0.250000,0,0);}
.m34_c01147{transform:matrix(0.353093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353093,0.000000,0.000000,0.250000,0,0);}
.m4_c01147{transform:matrix(0.357364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357364,0.000000,0.000000,0.250000,0,0);}
.m44_c01147{transform:matrix(0.357996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357996,0.000000,0.000000,0.250000,0,0);}
.m8b_c01147{transform:matrix(0.358484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358484,0.000000,0.000000,0.250000,0,0);}
.m1c_c01147{transform:matrix(0.364932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364932,0.000000,0.000000,0.250000,0,0);}
.m33_c01147{transform:matrix(0.366002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366002,0.000000,0.000000,0.250000,0,0);}
.m47_c01147{transform:matrix(0.376561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376561,0.000000,0.000000,0.250000,0,0);}
.m71_c01147{transform:matrix(0.380833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380833,0.000000,0.000000,0.250000,0,0);}
.m2e_c01147{transform:matrix(0.383500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383500,0.000000,0.000000,0.250000,0,0);}
.m3_c01147{transform:matrix(0.383975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383975,0.000000,0.000000,0.250000,0,0);}
.md_c01147{transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);}
.m5c_c01147{transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);}
.m5a_c01147{transform:matrix(0.405805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405805,0.000000,0.000000,0.250000,0,0);}
.m6a_c01147{transform:matrix(0.407434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407434,0.000000,0.000000,0.250000,0,0);}
.m85_c01147{transform:matrix(0.438912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438912,0.000000,0.000000,0.250000,0,0);}
.m1_c01147{transform:matrix(0.452378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452378,0.000000,0.000000,0.250000,0,0);}
.v1_c01147{vertical-align:-8.573400px;}
.v0_c01147{vertical-align:0.000000px;}
.v2_c01147{vertical-align:18.513000px;}
.ls22_c01147{letter-spacing:-3.201667px;}
.ls21_c01147{letter-spacing:-3.007627px;}
.ls1e_c01147{letter-spacing:-2.952180px;}
.ls9_c01147{letter-spacing:-2.938327px;}
.lsc_c01147{letter-spacing:-2.882880px;}
.ls16_c01147{letter-spacing:-2.855167px;}
.ls1c_c01147{letter-spacing:-2.661127px;}
.lsf_c01147{letter-spacing:-2.647267px;}
.ls1b_c01147{letter-spacing:-2.522527px;}
.ls19_c01147{letter-spacing:-2.125377px;}
.ls1_c01147{letter-spacing:-2.021111px;}
.lsa_c01147{letter-spacing:-1.019386px;}
.ls5_c01147{letter-spacing:0.000000px;}
.lsd_c01147{letter-spacing:0.411840px;}
.ls2_c01147{letter-spacing:0.910800px;}
.ls20_c01147{letter-spacing:1.846350px;}
.ls13_c01147{letter-spacing:2.564067px;}
.lse_c01147{letter-spacing:2.791810px;}
.ls3_c01147{letter-spacing:3.271732px;}
.ls23_c01147{letter-spacing:3.426320px;}
.ls11_c01147{letter-spacing:3.474900px;}
.ls8_c01147{letter-spacing:3.504610px;}
.ls12_c01147{letter-spacing:3.524400px;}
.ls18_c01147{letter-spacing:3.583810px;}
.ls1a_c01147{letter-spacing:3.603610px;}
.ls7_c01147{letter-spacing:3.643200px;}
.ls4_c01147{letter-spacing:3.722400px;}
.ls6_c01147{letter-spacing:3.781810px;}
.ls14_c01147{letter-spacing:3.861000px;}
.ls17_c01147{letter-spacing:3.950110px;}
.ls15_c01147{letter-spacing:4.078810px;}
.lsb_c01147{letter-spacing:4.177810px;}
.ls0_c01147{letter-spacing:15.938901px;}
.ls1f_c01147{letter-spacing:54.172998px;}
.ls10_c01147{letter-spacing:58.449798px;}
.ls1d_c01147{letter-spacing:59.875398px;}
.sc__c01147{text-shadow:none;}
.sc0_c01147{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01147{-webkit-text-stroke:0px transparent;}
.sc0_c01147{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01147{word-spacing:-20.592000px;}
.ws0_c01147{word-spacing:-19.869664px;}
.ws2_c01147{word-spacing:0.000000px;}
._3_c01147{margin-left:-24.050664px;}
._6_c01147{margin-left:-9.832729px;}
._1_c01147{margin-left:-8.114040px;}
._0_c01147{margin-left:-7.072560px;}
._5_c01147{width:6.096651px;}
._7_c01147{width:12.555081px;}
._2_c01147{width:15.908473px;}
._4_c01147{width:44.860860px;}
.fc0_c01147{color:transparent;}
.fs1_c01147{font-size:18.216000px;}
.fs4_c01147{font-size:22.176000px;}
.fs15_c01147{font-size:51.876198px;}
.fs1e_c01147{font-size:52.272000px;}
.fs1b_c01147{font-size:54.172998px;}
.fsb_c01147{font-size:55.836198px;}
.fsc_c01147{font-size:58.449798px;}
.fs0_c01147{font-size:59.796198px;}
.fs18_c01147{font-size:59.875398px;}
.fsf_c01147{font-size:66.330000px;}
.fsd_c01147{font-size:69.498000px;}
.fs7_c01147{font-size:70.092198px;}
.fse_c01147{font-size:70.488000px;}
.fs14_c01147{font-size:71.676198px;}
.fs16_c01147{font-size:72.072198px;}
.fs6_c01147{font-size:72.864000px;}
.fs2_c01147{font-size:73.854000px;}
.fs3_c01147{font-size:74.448000px;}
.fs12_c01147{font-size:74.844000px;}
.fs5_c01147{font-size:75.636198px;}
.fs17_c01147{font-size:76.032198px;}
.fs10_c01147{font-size:77.220000px;}
.fs13_c01147{font-size:79.002198px;}
.fs11_c01147{font-size:81.576198px;}
.fsa_c01147{font-size:82.368000px;}
.fs9_c01147{font-size:83.556198px;}
.fs8_c01147{font-size:83.952198px;}
.fs19_c01147{font-size:84.348000px;}
.fs1a_c01147{font-size:84.744000px;}
.fs1c_c01147{font-size:85.932198px;}
.fs1d_c01147{font-size:91.476198px;}
.y0_c01147{bottom:0.000000px;}
.y1_c01147{bottom:76.500000px;}
.y1b_c01147{bottom:93.645135px;}
.y1a_c01147{bottom:159.217785px;}
.y19_c01147{bottom:193.075785px;}
.y18_c01147{bottom:257.945535px;}
.y17_c01147{bottom:321.741135px;}
.y16_c01147{bottom:386.249535px;}
.y15_c01147{bottom:419.038335px;}
.y14_c01147{bottom:482.121135px;}
.y3_c01147{bottom:482.833935px;}
.y12_c01147{bottom:483.185385px;}
.y13_c01147{bottom:495.659385px;}
.y11_c01147{bottom:611.850735px;}
.y10_c01147{bottom:643.565385px;}
.ye_c01147{bottom:674.928585px;}
.yf_c01147{bottom:677.071935px;}
.yd_c01147{bottom:707.360985px;}
.yc_c01147{bottom:739.080585px;}
.yb_c01147{bottom:771.512985px;}
.ya_c01147{bottom:803.593935px;}
.y9_c01147{bottom:836.377785px;}
.y8_c01147{bottom:868.097385px;}
.y7_c01147{bottom:901.247535px;}
.y6_c01147{bottom:933.318585px;}
.y5_c01147{bottom:1021.349385px;}
.y4_c01147{bottom:1074.452985px;}
.y2_c01147{bottom:1108.667385px;}
.h3_c01147{height:17.878008px;}
.h6_c01147{height:23.128875px;}
.h1c_c01147{height:36.079217px;}
.he_c01147{height:38.927565px;}
.h19_c01147{height:39.877015px;}
.hd_c01147{height:58.235410px;}
.h2_c01147{height:58.686698px;}
.h16_c01147{height:64.493241px;}
.h9_c01147{height:68.791659px;}
.h10_c01147{height:69.180117px;}
.h15_c01147{height:70.346269px;}
.h17_c01147{height:70.734921px;}
.h8_c01147{height:71.512031px;}
.hf_c01147{height:72.484242px;}
.h5_c01147{height:73.066641px;}
.h1f_c01147{height:73.433250px;}
.h13_c01147{height:73.455293px;}
.h7_c01147{height:74.232792px;}
.h11_c01147{height:75.787207px;}
.h4_c01147{height:77.027414px;}
.h14_c01147{height:77.536337px;}
.h18_c01147{height:79.299207px;}
.h12_c01147{height:80.062577px;}
.hc_c01147{height:80.799469px;}
.hb_c01147{height:82.005839px;}
.ha_c01147{height:82.394491px;}
.h1a_c01147{height:82.782949px;}
.h1d_c01147{height:84.337753px;}
.h1b_c01147{height:88.385344px;}
.h1e_c01147{height:89.778886px;}
.h1_c01147{height:1110.000000px;}
.h0_c01147{height:1263.000000px;}
.w1_c01147{width:775.500000px;}
.w0_c01147{width:892.500000px;}
.x2_c01147{left:-1.042815px;}
.x0_c01147{left:0.000000px;}
.x3_c01147{left:33.745785px;}
.x1_c01147{left:58.500000px;}
.x4_c01147{left:80.275785px;}
.x5b_c01147{left:134.651535px;}
.x26_c01147{left:135.725685px;}
.x8_c01147{left:137.562135px;}
.x27_c01147{left:158.842185px;}
.x1c_c01147{left:168.559035px;}
.x9_c01147{left:180.275685px;}
.x5d_c01147{left:189.586635px;}
.x43_c01147{left:190.794435px;}
.x44_c01147{left:192.333885px;}
.x1d_c01147{left:201.303285px;}
.x28_c01147{left:202.575435px;}
.x4f_c01147{left:213.158535px;}
.x33_c01147{left:214.697985px;}
.x51_c01147{left:224.320785px;}
.x11_c01147{left:235.661235px;}
.x5c_c01147{left:245.516685px;}
.x3f_c01147{left:247.466985px;}
.x57_c01147{left:258.460935px;}
.xa_c01147{left:259.490535px;}
.x4b_c01147{left:267.959985px;}
.x12_c01147{left:269.375685px;}
.x29_c01147{left:270.524085px;}
.x34_c01147{left:279.047985px;}
.x1e_c01147{left:280.587435px;}
.x60_c01147{left:290.967585px;}
.xb_c01147{left:291.987285px;}
.x50_c01147{left:294.917685px;}
.x5a_c01147{left:301.441785px;}
.x2a_c01147{left:302.704035px;}
.x5e_c01147{left:313.292085px;}
.x40_c01147{left:323.914785px;}
.x37_c01147{left:325.360185px;}
.x2b_c01147{left:334.958235px;}
.x58_c01147{left:336.557085px;}
.x13_c01147{left:343.878135px;}
.x52_c01147{left:346.887735px;}
.x4c_c01147{left:357.545085px;}
.x45_c01147{left:359.257785px;}
.x14_c01147{left:369.009285px;}
.x1f_c01147{left:370.063635px;}
.x35_c01147{left:379.156785px;}
.x5f_c01147{left:380.389335px;}
.x4d_c01147{left:391.462485px;}
.x15_c01147{left:401.743635px;}
.xc_c01147{left:402.862335px;}
.x53_c01147{left:413.504835px;}
.x38_c01147{left:416.044185px;}
.x2c_c01147{left:424.612635px;}
.x59_c01147{left:434.374035px;}
.x3d_c01147{left:436.091685px;}
.x46_c01147{left:437.744985px;}
.xd_c01147{left:445.838235px;}
.x20_c01147{left:447.011385px;}
.x2d_c01147{left:458.841885px;}
.x47_c01147{left:470.523885px;}
.x54_c01147{left:477.800385px;}
.x3e_c01147{left:479.537835px;}
.xe_c01147{left:480.557535px;}
.x39_c01147{left:481.567335px;}
.x2e_c01147{left:489.630885px;}
.x16_c01147{left:501.599985px;}
.x61_c01147{left:513.074085px;}
.x48_c01147{left:522.795885px;}
.x21_c01147{left:524.518485px;}
.x3a_c01147{left:535.066935px;}
.x17_c01147{left:545.575785px;}
.x18_c01147{left:568.038885px;}
.x2f_c01147{left:569.612985px;}
.x41_c01147{left:578.577435px;}
.x55_c01147{left:579.592185px;}
.xf_c01147{left:581.007885px;}
.x36_c01147{left:599.763435px;}
.x19_c01147{left:600.896985px;}
.x30_c01147{left:602.768085px;}
.x22_c01147{left:612.182985px;}
.x3b_c01147{left:621.830535px;}
.x31_c01147{left:623.434335px;}
.x7_c01147{left:638.927835px;}
.x49_c01147{left:644.318385px;}
.x10_c01147{left:645.491535px;}
.x1a_c01147{left:656.539935px;}
.x3c_c01147{left:678.057585px;}
.x4a_c01147{left:679.443585px;}
.x23_c01147{left:680.770185px;}
.x1b_c01147{left:688.516935px;}
.x42_c01147{left:691.486935px;}
.x5_c01147{left:697.535835px;}
.x24_c01147{left:700.535535px;}
.x4e_c01147{left:702.094785px;}
.x25_c01147{left:711.202785px;}
.x32_c01147{left:712.366035px;}
.x6_c01147{left:720.543435px;}
.x56_c01147{left:747.412035px;}
@media print{
.v1_c01147{vertical-align:-7.620800pt;}
.v0_c01147{vertical-align:0.000000pt;}
.v2_c01147{vertical-align:16.456000pt;}
.ls22_c01147{letter-spacing:-2.845926pt;}
.ls21_c01147{letter-spacing:-2.673446pt;}
.ls1e_c01147{letter-spacing:-2.624160pt;}
.ls9_c01147{letter-spacing:-2.611846pt;}
.lsc_c01147{letter-spacing:-2.562560pt;}
.ls16_c01147{letter-spacing:-2.537926pt;}
.ls1c_c01147{letter-spacing:-2.365446pt;}
.lsf_c01147{letter-spacing:-2.353126pt;}
.ls1b_c01147{letter-spacing:-2.242246pt;}
.ls19_c01147{letter-spacing:-1.889224pt;}
.ls1_c01147{letter-spacing:-1.796544pt;}
.lsa_c01147{letter-spacing:-0.906121pt;}
.ls5_c01147{letter-spacing:0.000000pt;}
.lsd_c01147{letter-spacing:0.366080pt;}
.ls2_c01147{letter-spacing:0.809600pt;}
.ls20_c01147{letter-spacing:1.641200pt;}
.ls13_c01147{letter-spacing:2.279171pt;}
.lse_c01147{letter-spacing:2.481609pt;}
.ls3_c01147{letter-spacing:2.908206pt;}
.ls23_c01147{letter-spacing:3.045618pt;}
.ls11_c01147{letter-spacing:3.088800pt;}
.ls8_c01147{letter-spacing:3.115209pt;}
.ls12_c01147{letter-spacing:3.132800pt;}
.ls18_c01147{letter-spacing:3.185609pt;}
.ls1a_c01147{letter-spacing:3.203209pt;}
.ls7_c01147{letter-spacing:3.238400pt;}
.ls4_c01147{letter-spacing:3.308800pt;}
.ls6_c01147{letter-spacing:3.361609pt;}
.ls14_c01147{letter-spacing:3.432000pt;}
.ls17_c01147{letter-spacing:3.511209pt;}
.ls15_c01147{letter-spacing:3.625609pt;}
.lsb_c01147{letter-spacing:3.713609pt;}
.ls0_c01147{letter-spacing:14.167912pt;}
.ls1f_c01147{letter-spacing:48.153776pt;}
.ls10_c01147{letter-spacing:51.955376pt;}
.ls1d_c01147{letter-spacing:53.222576pt;}
.ws1_c01147{word-spacing:-18.304000pt;}
.ws0_c01147{word-spacing:-17.661923pt;}
.ws2_c01147{word-spacing:0.000000pt;}
._3_c01147{margin-left:-21.378368pt;}
._6_c01147{margin-left:-8.740204pt;}
._1_c01147{margin-left:-7.212480pt;}
._0_c01147{margin-left:-6.286720pt;}
._5_c01147{width:5.419245pt;}
._7_c01147{width:11.160072pt;}
._2_c01147{width:14.140865pt;}
._4_c01147{width:39.876320pt;}
.fs1_c01147{font-size:16.192000pt;}
.fs4_c01147{font-size:19.712000pt;}
.fs15_c01147{font-size:46.112176pt;}
.fs1e_c01147{font-size:46.464000pt;}
.fs1b_c01147{font-size:48.153776pt;}
.fsb_c01147{font-size:49.632176pt;}
.fsc_c01147{font-size:51.955376pt;}
.fs0_c01147{font-size:53.152176pt;}
.fs18_c01147{font-size:53.222576pt;}
.fsf_c01147{font-size:58.960000pt;}
.fsd_c01147{font-size:61.776000pt;}
.fs7_c01147{font-size:62.304176pt;}
.fse_c01147{font-size:62.656000pt;}
.fs14_c01147{font-size:63.712176pt;}
.fs16_c01147{font-size:64.064176pt;}
.fs6_c01147{font-size:64.768000pt;}
.fs2_c01147{font-size:65.648000pt;}
.fs3_c01147{font-size:66.176000pt;}
.fs12_c01147{font-size:66.528000pt;}
.fs5_c01147{font-size:67.232176pt;}
.fs17_c01147{font-size:67.584176pt;}
.fs10_c01147{font-size:68.640000pt;}
.fs13_c01147{font-size:70.224176pt;}
.fs11_c01147{font-size:72.512176pt;}
.fsa_c01147{font-size:73.216000pt;}
.fs9_c01147{font-size:74.272176pt;}
.fs8_c01147{font-size:74.624176pt;}
.fs19_c01147{font-size:74.976000pt;}
.fs1a_c01147{font-size:75.328000pt;}
.fs1c_c01147{font-size:76.384176pt;}
.fs1d_c01147{font-size:81.312176pt;}
.y0_c01147{bottom:0.000000pt;}
.y1_c01147{bottom:68.000000pt;}
.y1b_c01147{bottom:83.240120pt;}
.y1a_c01147{bottom:141.526920pt;}
.y19_c01147{bottom:171.622920pt;}
.y18_c01147{bottom:229.284920pt;}
.y17_c01147{bottom:285.992120pt;}
.y16_c01147{bottom:343.332920pt;}
.y15_c01147{bottom:372.478520pt;}
.y14_c01147{bottom:428.552120pt;}
.y3_c01147{bottom:429.185720pt;}
.y12_c01147{bottom:429.498120pt;}
.y13_c01147{bottom:440.586120pt;}
.y11_c01147{bottom:543.867320pt;}
.y10_c01147{bottom:572.058120pt;}
.ye_c01147{bottom:599.936520pt;}
.yf_c01147{bottom:601.841720pt;}
.yd_c01147{bottom:628.765320pt;}
.yc_c01147{bottom:656.960520pt;}
.yb_c01147{bottom:685.789320pt;}
.ya_c01147{bottom:714.305720pt;}
.y9_c01147{bottom:743.446920pt;}
.y8_c01147{bottom:771.642120pt;}
.y7_c01147{bottom:801.108920pt;}
.y6_c01147{bottom:829.616520pt;}
.y5_c01147{bottom:907.866120pt;}
.y4_c01147{bottom:955.069320pt;}
.y2_c01147{bottom:985.482120pt;}
.h3_c01147{height:15.891563pt;}
.h6_c01147{height:20.559000pt;}
.h1c_c01147{height:32.070415pt;}
.he_c01147{height:34.602280pt;}
.h19_c01147{height:35.446236pt;}
.hd_c01147{height:51.764809pt;}
.h2_c01147{height:52.165954pt;}
.h16_c01147{height:57.327325pt;}
.h9_c01147{height:61.148141pt;}
.h10_c01147{height:61.493438pt;}
.h15_c01147{height:62.530016pt;}
.h17_c01147{height:62.875485pt;}
.h8_c01147{height:63.566250pt;}
.hf_c01147{height:64.430438pt;}
.h5_c01147{height:64.948125pt;}
.h1f_c01147{height:65.274000pt;}
.h13_c01147{height:65.293594pt;}
.h7_c01147{height:65.984704pt;}
.h11_c01147{height:67.366406pt;}
.h4_c01147{height:68.468813pt;}
.h14_c01147{height:68.921188pt;}
.h18_c01147{height:70.488184pt;}
.h12_c01147{height:71.166735pt;}
.hc_c01147{height:71.821750pt;}
.hb_c01147{height:72.894079pt;}
.ha_c01147{height:73.239548pt;}
.h1a_c01147{height:73.584844pt;}
.h1d_c01147{height:74.966891pt;}
.h1b_c01147{height:78.564750pt;}
.h1e_c01147{height:79.803454pt;}
.h1_c01147{height:986.666667pt;}
.h0_c01147{height:1122.666667pt;}
.w1_c01147{width:689.333333pt;}
.w0_c01147{width:793.333333pt;}
.x2_c01147{left:-0.926947pt;}
.x0_c01147{left:0.000000pt;}
.x3_c01147{left:29.996253pt;}
.x1_c01147{left:52.000000pt;}
.x4_c01147{left:71.356253pt;}
.x5b_c01147{left:119.690253pt;}
.x26_c01147{left:120.645053pt;}
.x8_c01147{left:122.277453pt;}
.x27_c01147{left:141.193053pt;}
.x1c_c01147{left:149.830253pt;}
.x9_c01147{left:160.245053pt;}
.x5d_c01147{left:168.521453pt;}
.x43_c01147{left:169.595053pt;}
.x44_c01147{left:170.963453pt;}
.x1d_c01147{left:178.936253pt;}
.x28_c01147{left:180.067053pt;}
.x4f_c01147{left:189.474253pt;}
.x33_c01147{left:190.842653pt;}
.x51_c01147{left:199.396253pt;}
.x11_c01147{left:209.476653pt;}
.x5c_c01147{left:218.237053pt;}
.x3f_c01147{left:219.970653pt;}
.x57_c01147{left:229.743053pt;}
.xa_c01147{left:230.658253pt;}
.x4b_c01147{left:238.186653pt;}
.x12_c01147{left:239.445053pt;}
.x29_c01147{left:240.465853pt;}
.x34_c01147{left:248.042653pt;}
.x1e_c01147{left:249.411053pt;}
.x60_c01147{left:258.637853pt;}
.xb_c01147{left:259.544253pt;}
.x50_c01147{left:262.149053pt;}
.x5a_c01147{left:267.948253pt;}
.x2a_c01147{left:269.070253pt;}
.x5e_c01147{left:278.481853pt;}
.x40_c01147{left:287.924253pt;}
.x37_c01147{left:289.209053pt;}
.x2b_c01147{left:297.740653pt;}
.x58_c01147{left:299.161853pt;}
.x13_c01147{left:305.669453pt;}
.x52_c01147{left:308.344653pt;}
.x4c_c01147{left:317.817853pt;}
.x45_c01147{left:319.340253pt;}
.x14_c01147{left:328.008253pt;}
.x1f_c01147{left:328.945453pt;}
.x35_c01147{left:337.028253pt;}
.x5f_c01147{left:338.123853pt;}
.x4d_c01147{left:347.966653pt;}
.x15_c01147{left:357.105453pt;}
.xc_c01147{left:358.099853pt;}
.x53_c01147{left:367.559853pt;}
.x38_c01147{left:369.817053pt;}
.x2c_c01147{left:377.433453pt;}
.x59_c01147{left:386.110253pt;}
.x3d_c01147{left:387.637053pt;}
.x46_c01147{left:389.106653pt;}
.xd_c01147{left:396.300653pt;}
.x20_c01147{left:397.343453pt;}
.x2d_c01147{left:407.859453pt;}
.x47_c01147{left:418.243453pt;}
.x54_c01147{left:424.711453pt;}
.x3e_c01147{left:426.255853pt;}
.xe_c01147{left:427.162253pt;}
.x39_c01147{left:428.059853pt;}
.x2e_c01147{left:435.227453pt;}
.x16_c01147{left:445.866653pt;}
.x61_c01147{left:456.065853pt;}
.x48_c01147{left:464.707453pt;}
.x21_c01147{left:466.238653pt;}
.x3a_c01147{left:475.615053pt;}
.x17_c01147{left:484.956253pt;}
.x18_c01147{left:504.923453pt;}
.x2f_c01147{left:506.322653pt;}
.x41_c01147{left:514.291053pt;}
.x55_c01147{left:515.193053pt;}
.xf_c01147{left:516.451453pt;}
.x36_c01147{left:533.123053pt;}
.x19_c01147{left:534.130653pt;}
.x30_c01147{left:535.793853pt;}
.x22_c01147{left:544.162653pt;}
.x3b_c01147{left:552.738253pt;}
.x31_c01147{left:554.163853pt;}
.x7_c01147{left:567.935853pt;}
.x49_c01147{left:572.727453pt;}
.x10_c01147{left:573.770253pt;}
.x1a_c01147{left:583.591053pt;}
.x3c_c01147{left:602.717853pt;}
.x4a_c01147{left:603.949853pt;}
.x23_c01147{left:605.129053pt;}
.x1b_c01147{left:612.015053pt;}
.x42_c01147{left:614.655053pt;}
.x5_c01147{left:620.031853pt;}
.x24_c01147{left:622.698253pt;}
.x4e_c01147{left:624.084253pt;}
.x25_c01147{left:632.180253pt;}
.x32_c01147{left:633.214253pt;}
.x6_c01147{left:640.483053pt;}
.x56_c01147{left:664.366253pt;}
}





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

.ir_c01148:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01148{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01148;src:url('chunks/assets/font_61dcbf019d563e65ea6b7bd4.woff2')format("woff");}.ff1_c01148{font-family:ff1_c01148;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01148;src:url('chunks/assets/font_6c32cc1b6731e6592b5f0f52.woff2')format("woff");}.ff2_c01148{font-family:ff2_c01148;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01148;src:url('chunks/assets/font_58939a78aeba998dabc9ac8d.woff2')format("woff");}.ff3_c01148{font-family:ff3_c01148;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.md_c01148{transform:matrix(0.026515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026515,0.000000,0.000000,0.250000,0,0);}
.m6_c01148{transform:matrix(0.028701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.028701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.028701,0.000000,0.000000,0.250000,0,0);}
.ma_c01148{transform:matrix(0.029854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.029854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.029854,0.000000,0.000000,0.250000,0,0);}
.m49_c01148{transform:matrix(0.032052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032052,0.000000,0.000000,0.250000,0,0);}
.mc_c01148{transform:matrix(0.036562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036562,0.000000,0.000000,0.250000,0,0);}
.m7_c01148{transform:matrix(0.042464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042464,0.000000,0.000000,0.250000,0,0);}
.m36_c01148{transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);}
.m11_c01148{transform:matrix(0.076755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076755,0.000000,0.000000,0.250000,0,0);}
.m12_c01148{transform:matrix(0.078947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078947,0.000000,0.000000,0.250000,0,0);}
.m4_c01148{transform:matrix(0.089696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089696,0.000000,0.000000,0.250000,0,0);}
.m4a_c01148{transform:matrix(0.090545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090545,0.000000,0.000000,0.250000,0,0);}
.m8_c01148{transform:matrix(0.096582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096582,0.000000,0.000000,0.250000,0,0);}
.m48_c01148{transform:matrix(0.098558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098558,0.000000,0.000000,0.250000,0,0);}
.m1_c01148{transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);}
.m9_c01148{transform:matrix(0.126565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126565,0.000000,0.000000,0.250000,0,0);}
.me_c01148{transform:matrix(0.139836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139836,0.000000,0.000000,0.250000,0,0);}
.mb_c01148{transform:matrix(0.140416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140416,0.000000,0.000000,0.250000,0,0);}
.m14_c01148{transform:matrix(0.141448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141448,0.000000,0.000000,0.250000,0,0);}
.m70_c01148{transform:matrix(0.152489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152489,0.000000,0.000000,0.250000,0,0);}
.m34_c01148{transform:matrix(0.154148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154148,0.000000,0.000000,0.250000,0,0);}
.m33_c01148{transform:matrix(0.156679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156679,0.000000,0.000000,0.250000,0,0);}
.m87_c01148{transform:matrix(0.157738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157738,0.000000,0.000000,0.250000,0,0);}
.m2c_c01148{transform:matrix(0.161243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161243,0.000000,0.000000,0.250000,0,0);}
.m2e_c01148{transform:matrix(0.162937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162937,0.000000,0.000000,0.250000,0,0);}
.m10_c01148{transform:matrix(0.166118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166118,0.000000,0.000000,0.250000,0,0);}
.m1b_c01148{transform:matrix(0.168831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168831,0.000000,0.000000,0.250000,0,0);}
.m69_c01148{transform:matrix(0.169193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169193,0.000000,0.000000,0.250000,0,0);}
.m4e_c01148{transform:matrix(0.172760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172760,0.000000,0.000000,0.250000,0,0);}
.m3d_c01148{transform:matrix(0.175170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175170,0.000000,0.000000,0.250000,0,0);}
.m60_c01148{transform:matrix(0.176010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176010,0.000000,0.000000,0.250000,0,0);}
.m7c_c01148{transform:matrix(0.176588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176588,0.000000,0.000000,0.250000,0,0);}
.m72_c01148{transform:matrix(0.186839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186839,0.000000,0.000000,0.250000,0,0);}
.m35_c01148{transform:matrix(0.220053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220053,0.000000,0.000000,0.250000,0,0);}
.m71_c01148{transform:matrix(0.228972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228972,0.000000,0.000000,0.250000,0,0);}
.m0_c01148{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m37_c01148{transform:matrix(0.251493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251493,0.000000,0.000000,0.250000,0,0);}
.m8f_c01148{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m79_c01148{transform:matrix(0.254010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254010,0.000000,0.000000,0.250000,0,0);}
.m8d_c01148{transform:matrix(0.254846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254846,0.000000,0.000000,0.250000,0,0);}
.m15_c01148{transform:matrix(0.255939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255939,0.000000,0.000000,0.250000,0,0);}
.m88_c01148{transform:matrix(0.256864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256864,0.000000,0.000000,0.250000,0,0);}
.m4d_c01148{transform:matrix(0.259013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259013,0.000000,0.000000,0.250000,0,0);}
.m74_c01148{transform:matrix(0.260569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260569,0.000000,0.000000,0.250000,0,0);}
.m3_c01148{transform:matrix(0.261179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261179,0.000000,0.000000,0.250000,0,0);}
.m4f_c01148{transform:matrix(0.262468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262468,0.000000,0.000000,0.250000,0,0);}
.m75_c01148{transform:matrix(0.262794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262794,0.000000,0.000000,0.250000,0,0);}
.m1c_c01148{transform:matrix(0.264385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264385,0.000000,0.000000,0.250000,0,0);}
.m3e_c01148{transform:matrix(0.265132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265132,0.000000,0.000000,0.250000,0,0);}
.m63_c01148{transform:matrix(0.265364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265364,0.000000,0.000000,0.250000,0,0);}
.m8a_c01148{transform:matrix(0.267149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267149,0.000000,0.000000,0.250000,0,0);}
.m82_c01148{transform:matrix(0.268868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268868,0.000000,0.000000,0.250000,0,0);}
.m6f_c01148{transform:matrix(0.270659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270659,0.000000,0.000000,0.250000,0,0);}
.m47_c01148{transform:matrix(0.271841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271841,0.000000,0.000000,0.250000,0,0);}
.m7e_c01148{transform:matrix(0.272281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272281,0.000000,0.000000,0.250000,0,0);}
.m29_c01148{transform:matrix(0.272397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272397,0.000000,0.000000,0.250000,0,0);}
.m2d_c01148{transform:matrix(0.272404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272404,0.000000,0.000000,0.250000,0,0);}
.m46_c01148{transform:matrix(0.273474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273474,0.000000,0.000000,0.250000,0,0);}
.m89_c01148{transform:matrix(0.274923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274923,0.000000,0.000000,0.250000,0,0);}
.m1f_c01148{transform:matrix(0.276862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276862,0.000000,0.000000,0.250000,0,0);}
.m73_c01148{transform:matrix(0.278657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278657,0.000000,0.000000,0.250000,0,0);}
.m24_c01148{transform:matrix(0.279922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279922,0.000000,0.000000,0.250000,0,0);}
.m13_c01148{transform:matrix(0.281468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281468,0.000000,0.000000,0.250000,0,0);}
.m54_c01148{transform:matrix(0.281553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281553,0.000000,0.000000,0.250000,0,0);}
.m53_c01148{transform:matrix(0.281807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281807,0.000000,0.000000,0.250000,0,0);}
.m76_c01148{transform:matrix(0.282472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282472,0.000000,0.000000,0.250000,0,0);}
.m2_c01148{transform:matrix(0.284743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284743,0.000000,0.000000,0.250000,0,0);}
.m6e_c01148{transform:matrix(0.284986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284986,0.000000,0.000000,0.250000,0,0);}
.m8c_c01148{transform:matrix(0.285316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285316,0.000000,0.000000,0.250000,0,0);}
.m17_c01148{transform:matrix(0.285870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285870,0.000000,0.000000,0.250000,0,0);}
.m64_c01148{transform:matrix(0.285977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285977,0.000000,0.000000,0.250000,0,0);}
.m1a_c01148{transform:matrix(0.286313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286313,0.000000,0.000000,0.250000,0,0);}
.m5d_c01148{transform:matrix(0.286730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286730,0.000000,0.000000,0.250000,0,0);}
.m7f_c01148{transform:matrix(0.286751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286751,0.000000,0.000000,0.250000,0,0);}
.m66_c01148{transform:matrix(0.287722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287722,0.000000,0.000000,0.250000,0,0);}
.m21_c01148{transform:matrix(0.288270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288270,0.000000,0.000000,0.250000,0,0);}
.m22_c01148{transform:matrix(0.289918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289918,0.000000,0.000000,0.250000,0,0);}
.m4b_c01148{transform:matrix(0.290288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290288,0.000000,0.000000,0.250000,0,0);}
.m91_c01148{transform:matrix(0.290430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290430,0.000000,0.000000,0.250000,0,0);}
.m38_c01148{transform:matrix(0.290496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290496,0.000000,0.000000,0.250000,0,0);}
.m58_c01148{transform:matrix(0.291289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291289,0.000000,0.000000,0.250000,0,0);}
.m40_c01148{transform:matrix(0.294136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294136,0.000000,0.000000,0.250000,0,0);}
.m7b_c01148{transform:matrix(0.294211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294211,0.000000,0.000000,0.250000,0,0);}
.m5e_c01148{transform:matrix(0.295246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295246,0.000000,0.000000,0.250000,0,0);}
.m42_c01148{transform:matrix(0.296496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296496,0.000000,0.000000,0.250000,0,0);}
.m8e_c01148{transform:matrix(0.297007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297007,0.000000,0.000000,0.250000,0,0);}
.m2f_c01148{transform:matrix(0.297091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297091,0.000000,0.000000,0.250000,0,0);}
.m6a_c01148{transform:matrix(0.297092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297092,0.000000,0.000000,0.250000,0,0);}
.m5c_c01148{transform:matrix(0.297393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297393,0.000000,0.000000,0.250000,0,0);}
.m65_c01148{transform:matrix(0.297696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297696,0.000000,0.000000,0.250000,0,0);}
.m6c_c01148{transform:matrix(0.298208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298208,0.000000,0.000000,0.250000,0,0);}
.m68_c01148{transform:matrix(0.298828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298828,0.000000,0.000000,0.250000,0,0);}
.m97_c01148{transform:matrix(0.299037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299037,0.000000,0.000000,0.250000,0,0);}
.m5f_c01148{transform:matrix(0.300097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300097,0.000000,0.000000,0.250000,0,0);}
.m4c_c01148{transform:matrix(0.301107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301107,0.000000,0.000000,0.250000,0,0);}
.m16_c01148{transform:matrix(0.301582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301582,0.000000,0.000000,0.250000,0,0);}
.m59_c01148{transform:matrix(0.303357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303357,0.000000,0.000000,0.250000,0,0);}
.m39_c01148{transform:matrix(0.303567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303567,0.000000,0.000000,0.250000,0,0);}
.m94_c01148{transform:matrix(0.304055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304055,0.000000,0.000000,0.250000,0,0);}
.m6b_c01148{transform:matrix(0.304288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304288,0.000000,0.000000,0.250000,0,0);}
.m23_c01148{transform:matrix(0.304386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304386,0.000000,0.000000,0.250000,0,0);}
.m32_c01148{transform:matrix(0.304737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304737,0.000000,0.000000,0.250000,0,0);}
.m5b_c01148{transform:matrix(0.307472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307472,0.000000,0.000000,0.250000,0,0);}
.m56_c01148{transform:matrix(0.307726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307726,0.000000,0.000000,0.250000,0,0);}
.m2a_c01148{transform:matrix(0.309006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309006,0.000000,0.000000,0.250000,0,0);}
.m7a_c01148{transform:matrix(0.309364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309364,0.000000,0.000000,0.250000,0,0);}
.m6d_c01148{transform:matrix(0.310076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310076,0.000000,0.000000,0.250000,0,0);}
.m30_c01148{transform:matrix(0.310585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310585,0.000000,0.000000,0.250000,0,0);}
.m84_c01148{transform:matrix(0.311457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311457,0.000000,0.000000,0.250000,0,0);}
.m55_c01148{transform:matrix(0.313697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313697,0.000000,0.000000,0.250000,0,0);}
.m25_c01148{transform:matrix(0.314895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314895,0.000000,0.000000,0.250000,0,0);}
.m1d_c01148{transform:matrix(0.315994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315994,0.000000,0.000000,0.250000,0,0);}
.m5a_c01148{transform:matrix(0.318447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318447,0.000000,0.000000,0.250000,0,0);}
.mf_c01148{transform:matrix(0.318501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318501,0.000000,0.000000,0.250000,0,0);}
.m28_c01148{transform:matrix(0.318559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318559,0.000000,0.000000,0.250000,0,0);}
.m85_c01148{transform:matrix(0.318736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318736,0.000000,0.000000,0.250000,0,0);}
.m43_c01148{transform:matrix(0.319122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319122,0.000000,0.000000,0.250000,0,0);}
.m81_c01148{transform:matrix(0.319779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319779,0.000000,0.000000,0.250000,0,0);}
.m3c_c01148{transform:matrix(0.321062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321062,0.000000,0.000000,0.250000,0,0);}
.m96_c01148{transform:matrix(0.321782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321782,0.000000,0.000000,0.250000,0,0);}
.m67_c01148{transform:matrix(0.322526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322526,0.000000,0.000000,0.250000,0,0);}
.m80_c01148{transform:matrix(0.325392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325392,0.000000,0.000000,0.250000,0,0);}
.m27_c01148{transform:matrix(0.326551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326551,0.000000,0.000000,0.250000,0,0);}
.m18_c01148{transform:matrix(0.329710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329710,0.000000,0.000000,0.250000,0,0);}
.m44_c01148{transform:matrix(0.330262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330262,0.000000,0.000000,0.250000,0,0);}
.m3f_c01148{transform:matrix(0.330693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330693,0.000000,0.000000,0.250000,0,0);}
.m2b_c01148{transform:matrix(0.333314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333314,0.000000,0.000000,0.250000,0,0);}
.m8b_c01148{transform:matrix(0.333401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333401,0.000000,0.000000,0.250000,0,0);}
.m62_c01148{transform:matrix(0.335389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335389,0.000000,0.000000,0.250000,0,0);}
.m3b_c01148{transform:matrix(0.338066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338066,0.000000,0.000000,0.250000,0,0);}
.m52_c01148{transform:matrix(0.338359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338359,0.000000,0.000000,0.250000,0,0);}
.m86_c01148{transform:matrix(0.339516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339516,0.000000,0.000000,0.250000,0,0);}
.m51_c01148{transform:matrix(0.340299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340299,0.000000,0.000000,0.250000,0,0);}
.m7d_c01148{transform:matrix(0.341237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341237,0.000000,0.000000,0.250000,0,0);}
.m45_c01148{transform:matrix(0.342281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342281,0.000000,0.000000,0.250000,0,0);}
.m3a_c01148{transform:matrix(0.346170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346170,0.000000,0.000000,0.250000,0,0);}
.m78_c01148{transform:matrix(0.347597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347597,0.000000,0.000000,0.250000,0,0);}
.m93_c01148{transform:matrix(0.348059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348059,0.000000,0.000000,0.250000,0,0);}
.m41_c01148{transform:matrix(0.351261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351261,0.000000,0.000000,0.250000,0,0);}
.m1e_c01148{transform:matrix(0.351976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351976,0.000000,0.000000,0.250000,0,0);}
.m83_c01148{transform:matrix(0.352736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352736,0.000000,0.000000,0.250000,0,0);}
.m26_c01148{transform:matrix(0.358768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358768,0.000000,0.000000,0.250000,0,0);}
.m77_c01148{transform:matrix(0.361367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361367,0.000000,0.000000,0.250000,0,0);}
.m5_c01148{transform:matrix(0.363018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363018,0.000000,0.000000,0.250000,0,0);}
.m57_c01148{transform:matrix(0.363124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363124,0.000000,0.000000,0.250000,0,0);}
.m31_c01148{transform:matrix(0.371294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371294,0.000000,0.000000,0.250000,0,0);}
.m61_c01148{transform:matrix(0.376093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376093,0.000000,0.000000,0.250000,0,0);}
.m92_c01148{transform:matrix(0.382577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382577,0.000000,0.000000,0.250000,0,0);}
.m50_c01148{transform:matrix(0.388736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388736,0.000000,0.000000,0.250000,0,0);}
.m90_c01148{transform:matrix(0.405453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405453,0.000000,0.000000,0.250000,0,0);}
.m19_c01148{transform:matrix(0.406076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406076,0.000000,0.000000,0.250000,0,0);}
.m95_c01148{transform:matrix(0.412522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412522,0.000000,0.000000,0.250000,0,0);}
.m20_c01148{transform:matrix(0.415049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415049,0.000000,0.000000,0.250000,0,0);}
.v0_c01148{vertical-align:0.000000px;}
.ls11_c01148{letter-spacing:-2.785867px;}
.ls1b_c01148{letter-spacing:-2.716567px;}
.ls5_c01148{letter-spacing:-2.626477px;}
.ls8_c01148{letter-spacing:-2.564100px;}
.ls14_c01148{letter-spacing:-2.550240px;}
.lsf_c01148{letter-spacing:-2.356200px;}
.ls13_c01148{letter-spacing:-2.259180px;}
.ls9_c01148{letter-spacing:-1.697850px;}
.ls1f_c01148{letter-spacing:-1.223442px;}
.ls12_c01148{letter-spacing:-0.400198px;}
.ls1_c01148{letter-spacing:0.000000px;}
.ls1a_c01148{letter-spacing:0.219345px;}
.ls0_c01148{letter-spacing:2.615818px;}
.lse_c01148{letter-spacing:3.366000px;}
.ls1d_c01148{letter-spacing:3.406242px;}
.ls19_c01148{letter-spacing:3.484810px;}
.lsd_c01148{letter-spacing:3.564000px;}
.lsc_c01148{letter-spacing:3.583810px;}
.ls10_c01148{letter-spacing:3.643200px;}
.ls6_c01148{letter-spacing:3.663000px;}
.ls17_c01148{letter-spacing:3.742200px;}
.ls4_c01148{letter-spacing:3.752110px;}
.ls3_c01148{letter-spacing:3.801610px;}
.ls20_c01148{letter-spacing:3.900610px;}
.ls1c_c01148{letter-spacing:3.940200px;}
.ls1e_c01148{letter-spacing:4.039200px;}
.lsb_c01148{letter-spacing:4.395610px;}
.ls2_c01148{letter-spacing:31.363200px;}
.lsa_c01148{letter-spacing:54.172998px;}
.ls18_c01148{letter-spacing:55.598598px;}
.ls15_c01148{letter-spacing:57.024198px;}
.ls16_c01148{letter-spacing:59.875398px;}
.ls7_c01148{letter-spacing:62.726400px;}
.sc__c01148{text-shadow:none;}
.sc0_c01148{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01148{-webkit-text-stroke:0px transparent;}
.sc0_c01148{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01148{word-spacing:-18.315000px;}
.ws2_c01148{word-spacing:-2.042095px;}
.ws3_c01148{word-spacing:0.000000px;}
.ws1_c01148{word-spacing:0.732600px;}
._7_c01148{margin-left:-22.552319px;}
._5_c01148{margin-left:-12.087900px;}
._2_c01148{margin-left:-9.442290px;}
._1_c01148{margin-left:-7.329960px;}
._6_c01148{width:2.051280px;}
._3_c01148{width:4.012959px;}
._8_c01148{width:17.759522px;}
._0_c01148{width:20.732580px;}
._4_c01148{width:38.089260px;}
.fc0_c01148{color:transparent;}
.fs1f_c01148{font-size:22.572000px;}
.fs1_c01148{font-size:25.146000px;}
.fs2_c01148{font-size:31.363200px;}
.fs4_c01148{font-size:32.274000px;}
.fs16_c01148{font-size:33.660000px;}
.fsb_c01148{font-size:39.600000px;}
.fs0_c01148{font-size:43.560000px;}
.fsa_c01148{font-size:48.510000px;}
.fsc_c01148{font-size:54.172998px;}
.fs19_c01148{font-size:55.598598px;}
.fs15_c01148{font-size:57.024198px;}
.fs1e_c01148{font-size:59.796198px;}
.fs17_c01148{font-size:59.875398px;}
.fs9_c01148{font-size:62.726400px;}
.fs14_c01148{font-size:64.548000px;}
.fs8_c01148{font-size:66.330000px;}
.fs11_c01148{font-size:67.320000px;}
.fs1a_c01148{font-size:69.696198px;}
.fsf_c01148{font-size:71.280000px;}
.fse_c01148{font-size:71.676198px;}
.fs10_c01148{font-size:72.864000px;}
.fs5_c01148{font-size:73.260000px;}
.fs18_c01148{font-size:74.844000px;}
.fs6_c01148{font-size:75.042198px;}
.fs12_c01148{font-size:75.636198px;}
.fs3_c01148{font-size:76.032198px;}
.fs1b_c01148{font-size:77.616198px;}
.fs7_c01148{font-size:78.012198px;}
.fs1c_c01148{font-size:78.804000px;}
.fs13_c01148{font-size:79.596198px;}
.fs1d_c01148{font-size:80.784000px;}
.fsd_c01148{font-size:87.912198px;}
.y0_c01148{bottom:0.000000px;}
.y1_c01148{bottom:76.500000px;}
.y22_c01148{bottom:76.889385px;}
.y21_c01148{bottom:119.305935px;}
.y20_c01148{bottom:184.165785px;}
.y1f_c01148{bottom:249.391935px;}
.y1e_c01148{bottom:282.537135px;}
.y1d_c01148{bottom:314.608185px;}
.y1c_c01148{bottom:378.765135px;}
.y1b_c01148{bottom:442.560735px;}
.y1a_c01148{bottom:505.999935px;}
.y19_c01148{bottom:538.788735px;}
.y18_c01148{bottom:570.508335px;}
.y17_c01148{bottom:602.222985px;}
.y16_c01148{bottom:633.229785px;}
.y15_c01148{bottom:666.736335px;}
.y14_c01148{bottom:698.099535px;}
.y10_c01148{bottom:755.479935px;}
.ye_c01148{bottom:761.538735px;}
.yf_c01148{bottom:761.895135px;}
.y13_c01148{bottom:785.417535px;}
.yd_c01148{bottom:793.966185px;}
.y12_c01148{bottom:823.908735px;}
.yb_c01148{bottom:824.972985px;}
.yc_c01148{bottom:826.398585px;}
.y2_c01148{bottom:833.175135px;}
.ya_c01148{bottom:858.123135px;}
.y11_c01148{bottom:858.479535px;}
.y9_c01148{bottom:890.550585px;}
.y8_c01148{bottom:906.237135px;}
.y7_c01148{bottom:922.626585px;}
.y6_c01148{bottom:939.377385px;}
.y5_c01148{bottom:1069.819785px;}
.y4_c01148{bottom:1084.075785px;}
.y3_c01148{bottom:1094.767785px;}
.h4_c01148{height:20.887891px;}
.h21_c01148{height:23.541891px;}
.h3_c01148{height:26.226492px;}
.h6_c01148{height:31.675166px;}
.h18_c01148{height:33.035449px;}
.hd_c01148{height:36.079217px;}
.h1b_c01148{height:37.028666px;}
.h17_c01148{height:37.978116px;}
.h19_c01148{height:39.877015px;}
.hc_c01148{height:41.301563px;}
.ha_c01148{height:41.775782px;}
.h2_c01148{height:42.751758px;}
.hb_c01148{height:47.609912px;}
.h20_c01148{height:58.686698px;}
.h12_c01148{height:66.070898px;}
.h16_c01148{height:67.321547px;}
.h10_c01148{height:69.957422px;}
.hf_c01148{height:70.346269px;}
.h14_c01148{height:71.512031px;}
.h9_c01148{height:71.900684px;}
.h1c_c01148{height:72.690957px;}
.h1a_c01148{height:73.455293px;}
.h8_c01148{height:73.649813px;}
.h5_c01148{height:74.621444px;}
.h11_c01148{height:75.994875px;}
.h1d_c01148{height:76.176054px;}
.h7_c01148{height:76.564706px;}
.h1e_c01148{height:77.341816px;}
.h15_c01148{height:78.119315px;}
.h13_c01148{height:78.886191px;}
.h1f_c01148{height:79.285078px;}
.he_c01148{height:86.281015px;}
.h1_c01148{height:1110.000000px;}
.h0_c01148{height:1263.000000px;}
.w1_c01148{width:775.500000px;}
.w0_c01148{width:892.500000px;}
.x0_c01148{left:0.000000px;}
.x2_c01148{left:52.248885px;}
.x1_c01148{left:58.500000px;}
.x5b_c01148{left:98.363085px;}
.x3a_c01148{left:99.788685px;}
.x2d_c01148{left:152.728935px;}
.x20_c01148{left:153.951585px;}
.x6_c01148{left:155.159385px;}
.x52_c01148{left:186.680985px;}
.x27_c01148{left:188.081835px;}
.x6e_c01148{left:194.645535px;}
.x6d_c01148{left:198.288735px;}
.x60_c01148{left:206.941335px;}
.x6f_c01148{left:209.787585px;}
.x3b_c01148{left:211.366635px;}
.x46_c01148{left:218.717385px;}
.x7_c01148{left:222.172485px;}
.x55_c01148{left:231.770535px;}
.x21_c01148{left:242.135835px;}
.x59_c01148{left:243.195135px;}
.x8_c01148{left:244.397985px;}
.x9_c01148{left:253.307985px;}
.x5a_c01148{left:263.311935px;}
.x50_c01148{left:264.391035px;}
.x15_c01148{left:266.573985px;}
.x3c_c01148{left:275.974035px;}
.x6b_c01148{left:285.819585px;}
.x1e_c01148{left:287.339235px;}
.x65_c01148{left:297.358035px;}
.x5c_c01148{left:298.798485px;}
.x47_c01148{left:308.277735px;}
.xa_c01148{left:309.292485px;}
.x28_c01148{left:310.539885px;}
.x5d_c01148{left:318.479685px;}
.x1f_c01148{left:319.999335px;}
.x3d_c01148{left:321.246735px;}
.x41_c01148{left:322.825785px;}
.x66_c01148{left:329.968635px;}
.x22_c01148{left:331.300185px;}
.x30_c01148{left:334.057335px;}
.x29_c01148{left:342.373335px;}
.xb_c01148{left:352.114935px;}
.x2e_c01148{left:354.179085px;}
.x56_c01148{left:361.411035px;}
.x42_c01148{left:365.578935px;}
.x16_c01148{left:374.919585px;}
.x70_c01148{left:385.299735px;}
.x23_c01148{left:387.205485px;}
.x17_c01148{left:390.249735px;}
.x48_c01148{left:395.952135px;}
.x49_c01148{left:398.798385px;}
.x18_c01148{left:404.550285px;}
.x19_c01148{left:406.550085px;}
.x71_c01148{left:408.346935px;}
.x61_c01148{left:418.623135px;}
.x2a_c01148{left:420.375435px;}
.xc_c01148{left:421.607985px;}
.x62_c01148{left:428.384535px;}
.x69_c01148{left:429.760635px;}
.x63_c01148{left:430.889235px;}
.x2b_c01148{left:432.072285px;}
.x53_c01148{left:440.749635px;}
.x72_c01148{left:441.947535px;}
.x43_c01148{left:443.477085px;}
.x2f_c01148{left:444.526485px;}
.x3e_c01148{left:453.283035px;}
.x5e_c01148{left:464.400735px;}
.xd_c01148{left:472.073235px;}
.x67_c01148{left:474.315585px;}
.x44_c01148{left:476.057985px;}
.x73_c01148{left:485.492685px;}
.x24_c01148{left:486.987585px;}
.x5_c01148{left:493.506735px;}
.x57_c01148{left:494.986785px;}
.x6a_c01148{left:497.620185px;}
.xe_c01148{left:505.525335px;}
.x68_c01148{left:507.500385px;}
.x2c_c01148{left:508.688385px;}
.x5f_c01148{left:518.093385px;}
.x25_c01148{left:519.355635px;}
.xf_c01148{left:522.795885px;}
.x64_c01148{left:530.334735px;}
.x10_c01148{left:531.384135px;}
.x51_c01148{left:542.887935px;}
.x26_c01148{left:552.179085px;}
.x14_c01148{left:553.921485px;}
.x6c_c01148{left:562.192935px;}
.x4a_c01148{left:565.113435px;}
.x1a_c01148{left:575.998485px;}
.x1b_c01148{left:585.165885px;}
.x4b_c01148{left:607.242885px;}
.x34_c01148{left:616.870635px;}
.x3f_c01148{left:618.815985px;}
.x4c_c01148{left:630.814785px;}
.x31_c01148{left:632.240385px;}
.x74_c01148{left:638.546685px;}
.x32_c01148{left:640.298985px;}
.x11_c01148{left:641.892885px;}
.x4d_c01148{left:653.713485px;}
.x4e_c01148{left:660.722685px;}
.x40_c01148{left:663.247185px;}
.x1c_c01148{left:673.008585px;}
.x33_c01148{left:674.409435px;}
.x45_c01148{left:686.403285px;}
.x12_c01148{left:691.764135px;}
.x4_c01148{left:695.060835px;}
.x58_c01148{left:696.902235px;}
.x13_c01148{left:698.105085px;}
.x54_c01148{left:699.307935px;}
.x39_c01148{left:700.891935px;}
.x3_c01148{left:704.772735px;}
.x1d_c01148{left:709.267335px;}
.x4f_c01148{left:719.018835px;}
.x35_c01148{left:732.121485px;}
.x36_c01148{left:740.477085px;}
.x37_c01148{left:754.223235px;}
.x38_c01148{left:765.890385px;}
@media print{
.v0_c01148{vertical-align:0.000000pt;}
.ls11_c01148{letter-spacing:-2.476326pt;}
.ls1b_c01148{letter-spacing:-2.414726pt;}
.ls5_c01148{letter-spacing:-2.334646pt;}
.ls8_c01148{letter-spacing:-2.279200pt;}
.ls14_c01148{letter-spacing:-2.266880pt;}
.lsf_c01148{letter-spacing:-2.094400pt;}
.ls13_c01148{letter-spacing:-2.008160pt;}
.ls9_c01148{letter-spacing:-1.509200pt;}
.ls1f_c01148{letter-spacing:-1.087504pt;}
.ls12_c01148{letter-spacing:-0.355731pt;}
.ls1_c01148{letter-spacing:0.000000pt;}
.ls1a_c01148{letter-spacing:0.194973pt;}
.ls0_c01148{letter-spacing:2.325171pt;}
.lse_c01148{letter-spacing:2.992000pt;}
.ls1d_c01148{letter-spacing:3.027771pt;}
.ls19_c01148{letter-spacing:3.097609pt;}
.lsd_c01148{letter-spacing:3.168000pt;}
.lsc_c01148{letter-spacing:3.185609pt;}
.ls10_c01148{letter-spacing:3.238400pt;}
.ls6_c01148{letter-spacing:3.256000pt;}
.ls17_c01148{letter-spacing:3.326400pt;}
.ls4_c01148{letter-spacing:3.335209pt;}
.ls3_c01148{letter-spacing:3.379209pt;}
.ls20_c01148{letter-spacing:3.467209pt;}
.ls1c_c01148{letter-spacing:3.502400pt;}
.ls1e_c01148{letter-spacing:3.590400pt;}
.lsb_c01148{letter-spacing:3.907209pt;}
.ls2_c01148{letter-spacing:27.878400pt;}
.lsa_c01148{letter-spacing:48.153776pt;}
.ls18_c01148{letter-spacing:49.420976pt;}
.ls15_c01148{letter-spacing:50.688176pt;}
.ls16_c01148{letter-spacing:53.222576pt;}
.ls7_c01148{letter-spacing:55.756800pt;}
.ws0_c01148{word-spacing:-16.280000pt;}
.ws2_c01148{word-spacing:-1.815196pt;}
.ws3_c01148{word-spacing:0.000000pt;}
.ws1_c01148{word-spacing:0.651200pt;}
._7_c01148{margin-left:-20.046506pt;}
._5_c01148{margin-left:-10.744800pt;}
._2_c01148{margin-left:-8.393147pt;}
._1_c01148{margin-left:-6.515520pt;}
._6_c01148{width:1.823360pt;}
._3_c01148{width:3.567075pt;}
._8_c01148{width:15.786242pt;}
._0_c01148{width:18.428960pt;}
._4_c01148{width:33.857120pt;}
.fs1f_c01148{font-size:20.064000pt;}
.fs1_c01148{font-size:22.352000pt;}
.fs2_c01148{font-size:27.878400pt;}
.fs4_c01148{font-size:28.688000pt;}
.fs16_c01148{font-size:29.920000pt;}
.fsb_c01148{font-size:35.200000pt;}
.fs0_c01148{font-size:38.720000pt;}
.fsa_c01148{font-size:43.120000pt;}
.fsc_c01148{font-size:48.153776pt;}
.fs19_c01148{font-size:49.420976pt;}
.fs15_c01148{font-size:50.688176pt;}
.fs1e_c01148{font-size:53.152176pt;}
.fs17_c01148{font-size:53.222576pt;}
.fs9_c01148{font-size:55.756800pt;}
.fs14_c01148{font-size:57.376000pt;}
.fs8_c01148{font-size:58.960000pt;}
.fs11_c01148{font-size:59.840000pt;}
.fs1a_c01148{font-size:61.952176pt;}
.fsf_c01148{font-size:63.360000pt;}
.fse_c01148{font-size:63.712176pt;}
.fs10_c01148{font-size:64.768000pt;}
.fs5_c01148{font-size:65.120000pt;}
.fs18_c01148{font-size:66.528000pt;}
.fs6_c01148{font-size:66.704176pt;}
.fs12_c01148{font-size:67.232176pt;}
.fs3_c01148{font-size:67.584176pt;}
.fs1b_c01148{font-size:68.992176pt;}
.fs7_c01148{font-size:69.344176pt;}
.fs1c_c01148{font-size:70.048000pt;}
.fs13_c01148{font-size:70.752176pt;}
.fs1d_c01148{font-size:71.808000pt;}
.fsd_c01148{font-size:78.144176pt;}
.y0_c01148{bottom:0.000000pt;}
.y1_c01148{bottom:68.000000pt;}
.y22_c01148{bottom:68.346120pt;}
.y21_c01148{bottom:106.049720pt;}
.y20_c01148{bottom:163.702920pt;}
.y1f_c01148{bottom:221.681720pt;}
.y1e_c01148{bottom:251.144120pt;}
.y1d_c01148{bottom:279.651720pt;}
.y1c_c01148{bottom:336.680120pt;}
.y1b_c01148{bottom:393.387320pt;}
.y1a_c01148{bottom:449.777720pt;}
.y19_c01148{bottom:478.923320pt;}
.y18_c01148{bottom:507.118520pt;}
.y17_c01148{bottom:535.309320pt;}
.y16_c01148{bottom:562.870920pt;}
.y15_c01148{bottom:592.654520pt;}
.y14_c01148{bottom:620.532920pt;}
.y10_c01148{bottom:671.537720pt;}
.ye_c01148{bottom:676.923320pt;}
.yf_c01148{bottom:677.240120pt;}
.y13_c01148{bottom:698.148920pt;}
.yd_c01148{bottom:705.747720pt;}
.y12_c01148{bottom:732.363320pt;}
.yb_c01148{bottom:733.309320pt;}
.yc_c01148{bottom:734.576520pt;}
.y2_c01148{bottom:740.600120pt;}
.ya_c01148{bottom:762.776120pt;}
.y11_c01148{bottom:763.092920pt;}
.y9_c01148{bottom:791.600520pt;}
.y8_c01148{bottom:805.544120pt;}
.y7_c01148{bottom:820.112520pt;}
.y6_c01148{bottom:835.002120pt;}
.y5_c01148{bottom:950.950920pt;}
.y4_c01148{bottom:963.622920pt;}
.y3_c01148{bottom:973.126920pt;}
.h4_c01148{height:18.567014pt;}
.h21_c01148{height:20.926125pt;}
.h3_c01148{height:23.312438pt;}
.h6_c01148{height:28.155703pt;}
.h18_c01148{height:29.364844pt;}
.hd_c01148{height:32.070415pt;}
.h1b_c01148{height:32.914370pt;}
.h17_c01148{height:33.758325pt;}
.h19_c01148{height:35.446236pt;}
.hc_c01148{height:36.712500pt;}
.ha_c01148{height:37.134029pt;}
.h2_c01148{height:38.001563pt;}
.hb_c01148{height:42.319922pt;}
.h20_c01148{height:52.165954pt;}
.h12_c01148{height:58.729688pt;}
.h16_c01148{height:59.841375pt;}
.h10_c01148{height:62.184375pt;}
.hf_c01148{height:62.530016pt;}
.h14_c01148{height:63.566250pt;}
.h9_c01148{height:63.911719pt;}
.h1c_c01148{height:64.614184pt;}
.h1a_c01148{height:65.293594pt;}
.h8_c01148{height:65.466501pt;}
.h5_c01148{height:66.330173pt;}
.h11_c01148{height:67.551000pt;}
.h1d_c01148{height:67.712048pt;}
.h7_c01148{height:68.057516pt;}
.h1e_c01148{height:68.748281pt;}
.h15_c01148{height:69.439391pt;}
.h13_c01148{height:70.121059pt;}
.h1f_c01148{height:70.475625pt;}
.he_c01148{height:76.694235pt;}
.h1_c01148{height:986.666667pt;}
.h0_c01148{height:1122.666667pt;}
.w1_c01148{width:689.333333pt;}
.w0_c01148{width:793.333333pt;}
.x0_c01148{left:0.000000pt;}
.x2_c01148{left:46.443453pt;}
.x1_c01148{left:52.000000pt;}
.x5b_c01148{left:87.433853pt;}
.x3a_c01148{left:88.701053pt;}
.x2d_c01148{left:135.759053pt;}
.x20_c01148{left:136.845853pt;}
.x6_c01148{left:137.919453pt;}
.x52_c01148{left:165.938653pt;}
.x27_c01148{left:167.183853pt;}
.x6e_c01148{left:173.018253pt;}
.x6d_c01148{left:176.256653pt;}
.x60_c01148{left:183.947853pt;}
.x6f_c01148{left:186.477853pt;}
.x3b_c01148{left:187.881453pt;}
.x46_c01148{left:194.415453pt;}
.x7_c01148{left:197.486653pt;}
.x55_c01148{left:206.018253pt;}
.x21_c01148{left:215.231853pt;}
.x59_c01148{left:216.173453pt;}
.x8_c01148{left:217.242653pt;}
.x9_c01148{left:225.162653pt;}
.x5a_c01148{left:234.055053pt;}
.x50_c01148{left:235.014253pt;}
.x15_c01148{left:236.954653pt;}
.x3c_c01148{left:245.310253pt;}
.x6b_c01148{left:254.061853pt;}
.x1e_c01148{left:255.412653pt;}
.x65_c01148{left:264.318253pt;}
.x5c_c01148{left:265.598653pt;}
.x47_c01148{left:274.024653pt;}
.xa_c01148{left:274.926653pt;}
.x28_c01148{left:276.035453pt;}
.x5d_c01148{left:283.093053pt;}
.x1f_c01148{left:284.443853pt;}
.x3d_c01148{left:285.552653pt;}
.x41_c01148{left:286.956253pt;}
.x66_c01148{left:293.305453pt;}
.x22_c01148{left:294.489053pt;}
.x30_c01148{left:296.939853pt;}
.x29_c01148{left:304.331853pt;}
.xb_c01148{left:312.991053pt;}
.x2e_c01148{left:314.825853pt;}
.x56_c01148{left:321.254253pt;}
.x42_c01148{left:324.959053pt;}
.x16_c01148{left:333.261853pt;}
.x70_c01148{left:342.488653pt;}
.x23_c01148{left:344.182653pt;}
.x17_c01148{left:346.888653pt;}
.x48_c01148{left:351.957453pt;}
.x49_c01148{left:354.487453pt;}
.x18_c01148{left:359.600253pt;}
.x19_c01148{left:361.377853pt;}
.x71_c01148{left:362.975053pt;}
.x61_c01148{left:372.109453pt;}
.x2a_c01148{left:373.667053pt;}
.xc_c01148{left:374.762653pt;}
.x62_c01148{left:380.786253pt;}
.x69_c01148{left:382.009453pt;}
.x63_c01148{left:383.012653pt;}
.x2b_c01148{left:384.064253pt;}
.x53_c01148{left:391.777453pt;}
.x72_c01148{left:392.842253pt;}
.x43_c01148{left:394.201853pt;}
.x2f_c01148{left:395.134653pt;}
.x3e_c01148{left:402.918253pt;}
.x5e_c01148{left:412.800653pt;}
.xd_c01148{left:419.620653pt;}
.x67_c01148{left:421.613853pt;}
.x44_c01148{left:423.162653pt;}
.x73_c01148{left:431.549053pt;}
.x24_c01148{left:432.877853pt;}
.x5_c01148{left:438.672653pt;}
.x57_c01148{left:439.988253pt;}
.x6a_c01148{left:442.329053pt;}
.xe_c01148{left:449.355853pt;}
.x68_c01148{left:451.111453pt;}
.x2c_c01148{left:452.167453pt;}
.x5f_c01148{left:460.527453pt;}
.x25_c01148{left:461.649453pt;}
.xf_c01148{left:464.707453pt;}
.x64_c01148{left:471.408653pt;}
.x10_c01148{left:472.341453pt;}
.x51_c01148{left:482.567053pt;}
.x26_c01148{left:490.825853pt;}
.x14_c01148{left:492.374653pt;}
.x6c_c01148{left:499.727053pt;}
.x4a_c01148{left:502.323053pt;}
.x1a_c01148{left:511.998653pt;}
.x1b_c01148{left:520.147453pt;}
.x4b_c01148{left:539.771453pt;}
.x34_c01148{left:548.329453pt;}
.x3f_c01148{left:550.058653pt;}
.x4c_c01148{left:560.724253pt;}
.x31_c01148{left:561.991453pt;}
.x74_c01148{left:567.597053pt;}
.x32_c01148{left:569.154653pt;}
.x11_c01148{left:570.571453pt;}
.x4d_c01148{left:581.078653pt;}
.x4e_c01148{left:587.309053pt;}
.x40_c01148{left:589.553053pt;}
.x1c_c01148{left:598.229853pt;}
.x33_c01148{left:599.475053pt;}
.x45_c01148{left:610.136253pt;}
.x12_c01148{left:614.901453pt;}
.x4_c01148{left:617.831853pt;}
.x58_c01148{left:619.468653pt;}
.x13_c01148{left:620.537853pt;}
.x54_c01148{left:621.607053pt;}
.x39_c01148{left:623.015053pt;}
.x3_c01148{left:626.464653pt;}
.x1d_c01148{left:630.459853pt;}
.x4f_c01148{left:639.127853pt;}
.x35_c01148{left:650.774653pt;}
.x36_c01148{left:658.201853pt;}
.x37_c01148{left:670.420653pt;}
.x38_c01148{left:680.791453pt;}
}





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

.ir_c01149:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01149{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01149;src:url('chunks/assets/font_aaa210dbffa41c2442c27f10.woff2')format("woff");}.ff1_c01149{font-family:ff1_c01149;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01149;src:url('chunks/assets/font_2b702506e44d76e73ef32540.woff2')format("woff");}.ff2_c01149{font-family:ff2_c01149;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01149;src:url('chunks/assets/font_460b30723ae09705ff345236.woff2')format("woff");}.ff3_c01149{font-family:ff3_c01149;line-height:0.666000;font-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_c01149{transform:matrix(0.018751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018751,0.000000,0.000000,0.250000,0,0);}
.m40_c01149{transform:matrix(0.059535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.059535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.059535,0.000000,0.000000,0.250000,0,0);}
.m95_c01149{transform:matrix(0.068365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.068365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.068365,0.000000,0.000000,0.250000,0,0);}
.m36_c01149{transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);}
.m15_c01149{transform:matrix(0.089743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089743,0.000000,0.000000,0.250000,0,0);}
.m5b_c01149{transform:matrix(0.098835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098835,0.000000,0.000000,0.250000,0,0);}
.mab_c01149{transform:matrix(0.102547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102547,0.000000,0.000000,0.250000,0,0);}
.m47_c01149{transform:matrix(0.151041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151041,0.000000,0.000000,0.250000,0,0);}
.m5c_c01149{transform:matrix(0.157407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157407,0.000000,0.000000,0.250000,0,0);}
.m2a_c01149{transform:matrix(0.157738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157738,0.000000,0.000000,0.250000,0,0);}
.m17_c01149{transform:matrix(0.159518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159518,0.000000,0.000000,0.250000,0,0);}
.m3b_c01149{transform:matrix(0.170912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170912,0.000000,0.000000,0.250000,0,0);}
.ma7_c01149{transform:matrix(0.173242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173242,0.000000,0.000000,0.250000,0,0);}
.m99_c01149{transform:matrix(0.182306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182306,0.000000,0.000000,0.250000,0,0);}
.m34_c01149{transform:matrix(0.189063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189063,0.000000,0.000000,0.250000,0,0);}
.m6e_c01149{transform:matrix(0.194079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194079,0.000000,0.000000,0.250000,0,0);}
.m29_c01149{transform:matrix(0.205094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205094,0.000000,0.000000,0.250000,0,0);}
.m98_c01149{transform:matrix(0.216488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216488,0.000000,0.000000,0.250000,0,0);}
.m54_c01149{transform:matrix(0.225544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225544,0.000000,0.000000,0.250000,0,0);}
.ma1_c01149{transform:matrix(0.230679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230679,0.000000,0.000000,0.250000,0,0);}
.m55_c01149{transform:matrix(0.231953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231953,0.000000,0.000000,0.250000,0,0);}
.m28_c01149{transform:matrix(0.238925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238925,0.000000,0.000000,0.250000,0,0);}
.m18_c01149{transform:matrix(0.239708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239708,0.000000,0.000000,0.250000,0,0);}
.m27_c01149{transform:matrix(0.244683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244683,0.000000,0.000000,0.250000,0,0);}
.m19_c01149{transform:matrix(0.245716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245716,0.000000,0.000000,0.250000,0,0);}
.m7_c01149{transform:matrix(0.248742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248742,0.000000,0.000000,0.250000,0,0);}
.m0_c01149{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m38_c01149{transform:matrix(0.251470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251470,0.000000,0.000000,0.250000,0,0);}
.m1_c01149{transform:matrix(0.251536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251536,0.000000,0.000000,0.250000,0,0);}
.m4a_c01149{transform:matrix(0.251806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251806,0.000000,0.000000,0.250000,0,0);}
.m2b_c01149{transform:matrix(0.252664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252664,0.000000,0.000000,0.250000,0,0);}
.m9b_c01149{transform:matrix(0.253353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253353,0.000000,0.000000,0.250000,0,0);}
.m3a_c01149{transform:matrix(0.255504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255504,0.000000,0.000000,0.250000,0,0);}
.m96_c01149{transform:matrix(0.260332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260332,0.000000,0.000000,0.250000,0,0);}
.m85_c01149{transform:matrix(0.260878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260878,0.000000,0.000000,0.250000,0,0);}
.m9f_c01149{transform:matrix(0.261660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261660,0.000000,0.000000,0.250000,0,0);}
.m26_c01149{transform:matrix(0.263277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263277,0.000000,0.000000,0.250000,0,0);}
.m43_c01149{transform:matrix(0.264567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264567,0.000000,0.000000,0.250000,0,0);}
.m62_c01149{transform:matrix(0.267702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267702,0.000000,0.000000,0.250000,0,0);}
.m48_c01149{transform:matrix(0.267999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267999,0.000000,0.000000,0.250000,0,0);}
.m68_c01149{transform:matrix(0.269009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269009,0.000000,0.000000,0.250000,0,0);}
.m57_c01149{transform:matrix(0.270031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270031,0.000000,0.000000,0.250000,0,0);}
.m1f_c01149{transform:matrix(0.272253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272253,0.000000,0.000000,0.250000,0,0);}
.m16_c01149{transform:matrix(0.272774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272774,0.000000,0.000000,0.250000,0,0);}
.m8d_c01149{transform:matrix(0.273170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273170,0.000000,0.000000,0.250000,0,0);}
.m3_c01149{transform:matrix(0.273900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273900,0.000000,0.000000,0.250000,0,0);}
.m80_c01149{transform:matrix(0.274010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274010,0.000000,0.000000,0.250000,0,0);}
.m44_c01149{transform:matrix(0.274696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274696,0.000000,0.000000,0.250000,0,0);}
.m1d_c01149{transform:matrix(0.274978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274978,0.000000,0.000000,0.250000,0,0);}
.m10_c01149{transform:matrix(0.275278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275278,0.000000,0.000000,0.250000,0,0);}
.m6f_c01149{transform:matrix(0.275886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275886,0.000000,0.000000,0.250000,0,0);}
.mc_c01149{transform:matrix(0.276927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276927,0.000000,0.000000,0.250000,0,0);}
.m52_c01149{transform:matrix(0.276990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276990,0.000000,0.000000,0.250000,0,0);}
.m5f_c01149{transform:matrix(0.277070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277070,0.000000,0.000000,0.250000,0,0);}
.ma3_c01149{transform:matrix(0.277398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277398,0.000000,0.000000,0.250000,0,0);}
.mf_c01149{transform:matrix(0.278792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278792,0.000000,0.000000,0.250000,0,0);}
.m25_c01149{transform:matrix(0.278989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278989,0.000000,0.000000,0.250000,0,0);}
.m8_c01149{transform:matrix(0.279049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279049,0.000000,0.000000,0.250000,0,0);}
.m75_c01149{transform:matrix(0.279450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279450,0.000000,0.000000,0.250000,0,0);}
.m51_c01149{transform:matrix(0.280372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280372,0.000000,0.000000,0.250000,0,0);}
.m81_c01149{transform:matrix(0.281220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281220,0.000000,0.000000,0.250000,0,0);}
.m8a_c01149{transform:matrix(0.281223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281223,0.000000,0.000000,0.250000,0,0);}
.m45_c01149{transform:matrix(0.281672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281672,0.000000,0.000000,0.250000,0,0);}
.m89_c01149{transform:matrix(0.281872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281872,0.000000,0.000000,0.250000,0,0);}
.m70_c01149{transform:matrix(0.282009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282009,0.000000,0.000000,0.250000,0,0);}
.mb0_c01149{transform:matrix(0.282216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282216,0.000000,0.000000,0.250000,0,0);}
.m14_c01149{transform:matrix(0.282481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282481,0.000000,0.000000,0.250000,0,0);}
.m65_c01149{transform:matrix(0.282590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282590,0.000000,0.000000,0.250000,0,0);}
.m3c_c01149{transform:matrix(0.283092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283092,0.000000,0.000000,0.250000,0,0);}
.m6d_c01149{transform:matrix(0.283683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283683,0.000000,0.000000,0.250000,0,0);}
.mad_c01149{transform:matrix(0.284348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284348,0.000000,0.000000,0.250000,0,0);}
.m33_c01149{transform:matrix(0.284402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284402,0.000000,0.000000,0.250000,0,0);}
.m7c_c01149{transform:matrix(0.284419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284419,0.000000,0.000000,0.250000,0,0);}
.m8f_c01149{transform:matrix(0.285114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285114,0.000000,0.000000,0.250000,0,0);}
.m86_c01149{transform:matrix(0.285455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285455,0.000000,0.000000,0.250000,0,0);}
.m20_c01149{transform:matrix(0.285789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285789,0.000000,0.000000,0.250000,0,0);}
.m13_c01149{transform:matrix(0.285915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285915,0.000000,0.000000,0.250000,0,0);}
.m8e_c01149{transform:matrix(0.286057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286057,0.000000,0.000000,0.250000,0,0);}
.m7a_c01149{transform:matrix(0.286817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286817,0.000000,0.000000,0.250000,0,0);}
.m41_c01149{transform:matrix(0.287224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287224,0.000000,0.000000,0.250000,0,0);}
.m2d_c01149{transform:matrix(0.288051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288051,0.000000,0.000000,0.250000,0,0);}
.m1b_c01149{transform:matrix(0.288599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288599,0.000000,0.000000,0.250000,0,0);}
.m21_c01149{transform:matrix(0.289007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289007,0.000000,0.000000,0.250000,0,0);}
.m4e_c01149{transform:matrix(0.289628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289628,0.000000,0.000000,0.250000,0,0);}
.m11_c01149{transform:matrix(0.289833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289833,0.000000,0.000000,0.250000,0,0);}
.ma0_c01149{transform:matrix(0.289932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289932,0.000000,0.000000,0.250000,0,0);}
.m3d_c01149{transform:matrix(0.290222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290222,0.000000,0.000000,0.250000,0,0);}
.m37_c01149{transform:matrix(0.290708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290708,0.000000,0.000000,0.250000,0,0);}
.m1c_c01149{transform:matrix(0.290785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290785,0.000000,0.000000,0.250000,0,0);}
.m2e_c01149{transform:matrix(0.291180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291180,0.000000,0.000000,0.250000,0,0);}
.m2f_c01149{transform:matrix(0.291436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291436,0.000000,0.000000,0.250000,0,0);}
.maa_c01149{transform:matrix(0.292112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292112,0.000000,0.000000,0.250000,0,0);}
.m9_c01149{transform:matrix(0.292672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292672,0.000000,0.000000,0.250000,0,0);}
.md_c01149{transform:matrix(0.293073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293073,0.000000,0.000000,0.250000,0,0);}
.m4d_c01149{transform:matrix(0.294456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294456,0.000000,0.000000,0.250000,0,0);}
.m46_c01149{transform:matrix(0.295414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295414,0.000000,0.000000,0.250000,0,0);}
.m93_c01149{transform:matrix(0.295571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295571,0.000000,0.000000,0.250000,0,0);}
.m63_c01149{transform:matrix(0.295769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295769,0.000000,0.000000,0.250000,0,0);}
.m39_c01149{transform:matrix(0.295987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295987,0.000000,0.000000,0.250000,0,0);}
.m5e_c01149{transform:matrix(0.296538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296538,0.000000,0.000000,0.250000,0,0);}
.m7b_c01149{transform:matrix(0.297574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297574,0.000000,0.000000,0.250000,0,0);}
.m53_c01149{transform:matrix(0.297601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297601,0.000000,0.000000,0.250000,0,0);}
.m6b_c01149{transform:matrix(0.298136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298136,0.000000,0.000000,0.250000,0,0);}
.m4f_c01149{transform:matrix(0.299307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299307,0.000000,0.000000,0.250000,0,0);}
.m32_c01149{transform:matrix(0.300732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300732,0.000000,0.000000,0.250000,0,0);}
.ma4_c01149{transform:matrix(0.301385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301385,0.000000,0.000000,0.250000,0,0);}
.m64_c01149{transform:matrix(0.302817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302817,0.000000,0.000000,0.250000,0,0);}
.ma_c01149{transform:matrix(0.302888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302888,0.000000,0.000000,0.250000,0,0);}
.m4b_c01149{transform:matrix(0.303204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303204,0.000000,0.000000,0.250000,0,0);}
.m78_c01149{transform:matrix(0.303247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303247,0.000000,0.000000,0.250000,0,0);}
.m24_c01149{transform:matrix(0.304149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304149,0.000000,0.000000,0.250000,0,0);}
.m67_c01149{transform:matrix(0.304638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304638,0.000000,0.000000,0.250000,0,0);}
.m2_c01149{transform:matrix(0.305282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305282,0.000000,0.000000,0.250000,0,0);}
.m97_c01149{transform:matrix(0.305720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305720,0.000000,0.000000,0.250000,0,0);}
.m1a_c01149{transform:matrix(0.306999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306999,0.000000,0.000000,0.250000,0,0);}
.mb1_c01149{transform:matrix(0.308240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308240,0.000000,0.000000,0.250000,0,0);}
.m8b_c01149{transform:matrix(0.308964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308964,0.000000,0.000000,0.250000,0,0);}
.m91_c01149{transform:matrix(0.309918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309918,0.000000,0.000000,0.250000,0,0);}
.m9c_c01149{transform:matrix(0.309950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309950,0.000000,0.000000,0.250000,0,0);}
.m49_c01149{transform:matrix(0.311498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311498,0.000000,0.000000,0.250000,0,0);}
.m30_c01149{transform:matrix(0.311599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311599,0.000000,0.000000,0.250000,0,0);}
.m84_c01149{transform:matrix(0.311654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311654,0.000000,0.000000,0.250000,0,0);}
.ma6_c01149{transform:matrix(0.313672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313672,0.000000,0.000000,0.250000,0,0);}
.m79_c01149{transform:matrix(0.313688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313688,0.000000,0.000000,0.250000,0,0);}
.m9a_c01149{transform:matrix(0.314450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314450,0.000000,0.000000,0.250000,0,0);}
.m56_c01149{transform:matrix(0.314703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314703,0.000000,0.000000,0.250000,0,0);}
.m73_c01149{transform:matrix(0.315351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315351,0.000000,0.000000,0.250000,0,0);}
.m74_c01149{transform:matrix(0.316094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316094,0.000000,0.000000,0.250000,0,0);}
.mb_c01149{transform:matrix(0.316975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316975,0.000000,0.000000,0.250000,0,0);}
.me_c01149{transform:matrix(0.317644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317644,0.000000,0.000000,0.250000,0,0);}
.m82_c01149{transform:matrix(0.319387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319387,0.000000,0.000000,0.250000,0,0);}
.m7d_c01149{transform:matrix(0.319448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319448,0.000000,0.000000,0.250000,0,0);}
.m59_c01149{transform:matrix(0.319807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319807,0.000000,0.000000,0.250000,0,0);}
.m6c_c01149{transform:matrix(0.320054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320054,0.000000,0.000000,0.250000,0,0);}
.m9e_c01149{transform:matrix(0.320103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320103,0.000000,0.000000,0.250000,0,0);}
.m7e_c01149{transform:matrix(0.320446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320446,0.000000,0.000000,0.250000,0,0);}
.m12_c01149{transform:matrix(0.320991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320991,0.000000,0.000000,0.250000,0,0);}
.m87_c01149{transform:matrix(0.322050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322050,0.000000,0.000000,0.250000,0,0);}
.m1e_c01149{transform:matrix(0.322056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322056,0.000000,0.000000,0.250000,0,0);}
.m5_c01149{transform:matrix(0.322343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322343,0.000000,0.000000,0.250000,0,0);}
.m92_c01149{transform:matrix(0.323058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323058,0.000000,0.000000,0.250000,0,0);}
.m94_c01149{transform:matrix(0.324814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324814,0.000000,0.000000,0.250000,0,0);}
.m8c_c01149{transform:matrix(0.326275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326275,0.000000,0.000000,0.250000,0,0);}
.mac_c01149{transform:matrix(0.326627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326627,0.000000,0.000000,0.250000,0,0);}
.m31_c01149{transform:matrix(0.326729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326729,0.000000,0.000000,0.250000,0,0);}
.m5a_c01149{transform:matrix(0.327008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327008,0.000000,0.000000,0.250000,0,0);}
.m88_c01149{transform:matrix(0.327686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327686,0.000000,0.000000,0.250000,0,0);}
.m6_c01149{transform:matrix(0.329565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329565,0.000000,0.000000,0.250000,0,0);}
.m83_c01149{transform:matrix(0.329875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329875,0.000000,0.000000,0.250000,0,0);}
.m23_c01149{transform:matrix(0.330400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330400,0.000000,0.000000,0.250000,0,0);}
.ma9_c01149{transform:matrix(0.331863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331863,0.000000,0.000000,0.250000,0,0);}
.m60_c01149{transform:matrix(0.332595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332595,0.000000,0.000000,0.250000,0,0);}
.m42_c01149{transform:matrix(0.333427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333427,0.000000,0.000000,0.250000,0,0);}
.m6a_c01149{transform:matrix(0.333501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333501,0.000000,0.000000,0.250000,0,0);}
.m3e_c01149{transform:matrix(0.337172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337172,0.000000,0.000000,0.250000,0,0);}
.mb2_c01149{transform:matrix(0.337470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337470,0.000000,0.000000,0.250000,0,0);}
.m5d_c01149{transform:matrix(0.337999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337999,0.000000,0.000000,0.250000,0,0);}
.m76_c01149{transform:matrix(0.338932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338932,0.000000,0.000000,0.250000,0,0);}
.m2c_c01149{transform:matrix(0.338938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338938,0.000000,0.000000,0.250000,0,0);}
.m90_c01149{transform:matrix(0.342467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342467,0.000000,0.000000,0.250000,0,0);}
.m77_c01149{transform:matrix(0.344897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344897,0.000000,0.000000,0.250000,0,0);}
.m9d_c01149{transform:matrix(0.346409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346409,0.000000,0.000000,0.250000,0,0);}
.m22_c01149{transform:matrix(0.347615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347615,0.000000,0.000000,0.250000,0,0);}
.m72_c01149{transform:matrix(0.348962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348962,0.000000,0.000000,0.250000,0,0);}
.m7f_c01149{transform:matrix(0.350163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350163,0.000000,0.000000,0.250000,0,0);}
.m58_c01149{transform:matrix(0.352824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352824,0.000000,0.000000,0.250000,0,0);}
.m4c_c01149{transform:matrix(0.355764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355764,0.000000,0.000000,0.250000,0,0);}
.maf_c01149{transform:matrix(0.356113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356113,0.000000,0.000000,0.250000,0,0);}
.m71_c01149{transform:matrix(0.359022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359022,0.000000,0.000000,0.250000,0,0);}
.m66_c01149{transform:matrix(0.359239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359239,0.000000,0.000000,0.250000,0,0);}
.ma8_c01149{transform:matrix(0.365654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365654,0.000000,0.000000,0.250000,0,0);}
.ma5_c01149{transform:matrix(0.370131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370131,0.000000,0.000000,0.250000,0,0);}
.m50_c01149{transform:matrix(0.376349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376349,0.000000,0.000000,0.250000,0,0);}
.mae_c01149{transform:matrix(0.382022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382022,0.000000,0.000000,0.250000,0,0);}
.m69_c01149{transform:matrix(0.395355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395355,0.000000,0.000000,0.250000,0,0);}
.m3f_c01149{transform:matrix(0.404869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404869,0.000000,0.000000,0.250000,0,0);}
.m4_c01149{transform:matrix(0.408109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408109,0.000000,0.000000,0.250000,0,0);}
.ma2_c01149{transform:matrix(0.413280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413280,0.000000,0.000000,0.250000,0,0);}
.m61_c01149{transform:matrix(0.414486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414486,0.000000,0.000000,0.250000,0,0);}
.v1_c01149{vertical-align:-2.871000px;}
.v0_c01149{vertical-align:0.000000px;}
.v2_c01149{vertical-align:2.855160px;}
.v3_c01149{vertical-align:12.830400px;}
.ls1d_c01149{letter-spacing:-3.367980px;}
.lsb_c01149{letter-spacing:-3.090780px;}
.ls7_c01149{letter-spacing:-3.063067px;}
.lsf_c01149{letter-spacing:-2.721754px;}
.ls9_c01149{letter-spacing:-2.591827px;}
.ls15_c01149{letter-spacing:-2.439367px;}
.ls13_c01149{letter-spacing:-1.839980px;}
.ls14_c01149{letter-spacing:-1.728466px;}
.ls1b_c01149{letter-spacing:-1.703201px;}
.lsa_c01149{letter-spacing:-1.163965px;}
.ls3_c01149{letter-spacing:0.000000px;}
.ls1a_c01149{letter-spacing:1.132999px;}
.ls12_c01149{letter-spacing:1.487855px;}
.ls11_c01149{letter-spacing:2.199350px;}
.ls21_c01149{letter-spacing:2.243782px;}
.ls1f_c01149{letter-spacing:2.263779px;}
.ls1c_c01149{letter-spacing:3.326400px;}
.lse_c01149{letter-spacing:3.603610px;}
.ls6_c01149{letter-spacing:3.658177px;}
.ls5_c01149{letter-spacing:3.702610px;}
.ls19_c01149{letter-spacing:4.227032px;}
.ls18_c01149{letter-spacing:4.336200px;}
.ls1e_c01149{letter-spacing:4.367058px;}
.ls4_c01149{letter-spacing:4.375810px;}
.ls10_c01149{letter-spacing:5.227200px;}
.ls1_c01149{letter-spacing:7.668144px;}
.ls0_c01149{letter-spacing:7.758707px;}
.ls2_c01149{letter-spacing:12.335301px;}
.ls17_c01149{letter-spacing:54.172998px;}
.ls8_c01149{letter-spacing:55.598598px;}
.lsd_c01149{letter-spacing:57.024198px;}
.ls20_c01149{letter-spacing:58.449798px;}
.lsc_c01149{letter-spacing:59.875398px;}
.ls16_c01149{letter-spacing:64.152198px;}
.sc__c01149{text-shadow:none;}
.sc0_c01149{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01149{-webkit-text-stroke:0px transparent;}
.sc0_c01149{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01149{word-spacing:-19.375543px;}
.ws0_c01149{word-spacing:-19.157296px;}
.ws4_c01149{word-spacing:-18.513050px;}
.ws1_c01149{word-spacing:-17.535563px;}
.ws3_c01149{word-spacing:-16.809849px;}
.ws5_c01149{word-spacing:0.000000px;}
._0_c01149{margin-left:-18.637536px;}
._5_c01149{margin-left:-11.988163px;}
._8_c01149{margin-left:-10.089937px;}
._4_c01149{margin-left:-3.749464px;}
._9_c01149{margin-left:-1.777155px;}
._2_c01149{width:5.189618px;}
._7_c01149{width:7.423317px;}
._3_c01149{width:24.526464px;}
._6_c01149{width:41.649300px;}
._1_c01149{width:53.539131px;}
.fc0_c01149{color:transparent;}
.fs17_c01149{font-size:22.176000px;}
.fs11_c01149{font-size:22.374000px;}
.fs16_c01149{font-size:27.720000px;}
.fsb_c01149{font-size:31.284000px;}
.fs13_c01149{font-size:33.264000px;}
.fs0_c01149{font-size:38.808000px;}
.fs9_c01149{font-size:40.788000px;}
.fs10_c01149{font-size:54.172998px;}
.fs3_c01149{font-size:55.598598px;}
.fsf_c01149{font-size:56.034000px;}
.fs7_c01149{font-size:57.024198px;}
.fs19_c01149{font-size:58.449798px;}
.fs6_c01149{font-size:59.875398px;}
.fse_c01149{font-size:64.152198px;}
.fs14_c01149{font-size:66.528000px;}
.fsd_c01149{font-size:69.696198px;}
.fs4_c01149{font-size:70.092198px;}
.fs8_c01149{font-size:72.072198px;}
.fsc_c01149{font-size:73.656198px;}
.fs2_c01149{font-size:74.052198px;}
.fs18_c01149{font-size:79.992198px;}
.fs12_c01149{font-size:86.724000px;}
.fs1_c01149{font-size:87.516198px;}
.fs5_c01149{font-size:88.308000px;}
.fs15_c01149{font-size:96.228000px;}
.fsa_c01149{font-size:104.544000px;}
.y0_c01149{bottom:0.000000px;}
.y1_c01149{bottom:76.500000px;}
.y21_c01149{bottom:128.567385px;}
.y20_c01149{bottom:161.004735px;}
.y1f_c01149{bottom:204.841935px;}
.y1e_c01149{bottom:206.980335px;}
.y1d_c01149{bottom:226.577385px;}
.y1c_c01149{bottom:291.803535px;}
.y1b_c01149{bottom:307.123785px;}
.y1a_c01149{bottom:324.592335px;}
.y19_c01149{bottom:355.955535px;}
.y18_c01149{bottom:376.626735px;}
.y17_c01149{bottom:387.675135px;}
.y16_c01149{bottom:420.102585px;}
.y15_c01149{bottom:451.470735px;}
.y14_c01149{bottom:478.557135px;}
.y13_c01149{bottom:482.833935px;}
.y12_c01149{bottom:496.733535px;}
.y11_c01149{bottom:514.909935px;}
.y10_c01149{bottom:546.980985px;}
.yf_c01149{bottom:578.700585px;}
.yd_c01149{bottom:611.494335px;}
.ye_c01149{bottom:614.340585px;}
.yc_c01149{bottom:644.283135px;}
.yb_c01149{bottom:675.997785px;}
.ya_c01149{bottom:708.078735px;}
.y9_c01149{bottom:740.149785px;}
.y8_c01149{bottom:772.230735px;}
.y2_c01149{bottom:777.933135px;}
.y7_c01149{bottom:804.663135px;}
.y6_c01149{bottom:835.669935px;}
.y5_c01149{bottom:868.458735px;}
.y4_c01149{bottom:932.610735px;}
.y3_c01149{bottom:1076.947785px;}
.h14_c01149{height:21.958857px;}
.h18_c01149{height:23.128875px;}
.h11_c01149{height:23.335383px;}
.h17_c01149{height:28.911094px;}
.hc_c01149{height:30.703535px;}
.h13_c01149{height:34.693313px;}
.h10_c01149{height:36.079217px;}
.h5_c01149{height:37.028666px;}
.h9_c01149{height:37.978116px;}
.h1a_c01149{height:38.927565px;}
.h8_c01149{height:39.877015px;}
.h2_c01149{height:40.475531px;}
.hf_c01149{height:42.725364px;}
.h15_c01149{height:65.293594px;}
.ha_c01149{height:70.734921px;}
.h4_c01149{height:72.678183px;}
.he_c01149{height:72.690957px;}
.h6_c01149{height:73.103972px;}
.hd_c01149{height:76.821113px;}
.h19_c01149{height:78.507968px;}
.h12_c01149{height:85.114863px;}
.h3_c01149{height:85.892362px;}
.h7_c01149{height:86.669473px;}
.h16_c01149{height:94.442520px;}
.hb_c01149{height:102.604219px;}
.h1_c01149{height:1110.000000px;}
.h0_c01149{height:1263.000000px;}
.w1_c01149{width:775.500000px;}
.w0_c01149{width:892.500000px;}
.x0_c01149{left:0.000000px;}
.x2_c01149{left:1.258935px;}
.x1_c01149{left:58.500000px;}
.x72_c01149{left:91.230135px;}
.xc_c01149{left:93.328935px;}
.x68_c01149{left:145.714785px;}
.xd_c01149{left:147.056235px;}
.x4_c01149{left:148.080885px;}
.x20_c01149{left:169.474785px;}
.x65_c01149{left:179.765835px;}
.x2d_c01149{left:181.191435px;}
.x69_c01149{left:191.135985px;}
.xe_c01149{left:192.229935px;}
.x34_c01149{left:194.942535px;}
.x50_c01149{left:200.555835px;}
.x73_c01149{left:202.540785px;}
.x3d_c01149{left:212.772435px;}
.x21_c01149{left:214.034685px;}
.x27_c01149{left:223.706985px;}
.x3e_c01149{left:224.964285px;}
.x16_c01149{left:235.532535px;}
.xf_c01149{left:236.661135px;}
.x5_c01149{left:238.200585px;}
.x4c_c01149{left:245.086035px;}
.x56_c01149{left:246.209685px;}
.x6_c01149{left:247.843185px;}
.x3f_c01149{left:256.847235px;}
.x2e_c01149{left:258.327285px;}
.x35_c01149{left:259.584585px;}
.x57_c01149{left:268.316385px;}
.x22_c01149{left:269.534085px;}
.x66_c01149{left:278.998485px;}
.x7_c01149{left:280.562685px;}
.x75_c01149{left:300.783435px;}
.x62_c01149{left:303.446535px;}
.x8_c01149{left:313.361385px;}
.x36_c01149{left:324.860235px;}
.x51_c01149{left:334.339485px;}
.x44_c01149{left:335.537385px;}
.x10_c01149{left:337.596585px;}
.x70_c01149{left:345.670035px;}
.x2f_c01149{left:346.887735px;}
.x37_c01149{left:357.401535px;}
.x23_c01149{left:358.678635px;}
.x5e_c01149{left:369.375585px;}
.x45_c01149{left:379.849785px;}
.x9_c01149{left:381.136785px;}
.x17_c01149{left:383.532585px;}
.x76_c01149{left:389.838885px;}
.x24_c01149{left:392.185185px;}
.x6a_c01149{left:393.348435px;}
.x64_c01149{left:394.749285px;}
.x6b_c01149{left:401.179335px;}
.x18_c01149{left:402.342585px;}
.xa_c01149{left:412.217835px;}
.x5f_c01149{left:413.900835px;}
.x74_c01149{left:415.554135px;}
.x28_c01149{left:425.429385px;}
.x11_c01149{left:437.418285px;}
.x30_c01149{left:447.392535px;}
.x19_c01149{left:450.481335px;}
.x58_c01149{left:456.847035px;}
.x38_c01149{left:458.470635px;}
.x40_c01149{left:459.549735px;}
.x12_c01149{left:467.836035px;}
.x1a_c01149{left:469.746735px;}
.x46_c01149{left:479.671485px;}
.x41_c01149{left:481.116885px;}
.x6c_c01149{left:482.255385px;}
.x39_c01149{left:491.011935px;}
.x1b_c01149{left:493.353285px;}
.x47_c01149{left:502.109835px;}
.x71_c01149{left:511.059435px;}
.x31_c01149{left:513.321585px;}
.x1c_c01149{left:514.732335px;}
.x25_c01149{left:524.379885px;}
.x3a_c01149{left:525.632235px;}
.xb_c01149{left:534.888735px;}
.x4d_c01149{left:536.952885px;}
.x77_c01149{left:543.803685px;}
.x48_c01149{left:545.857935px;}
.x29_c01149{left:556.520235px;}
.x13_c01149{left:557.861685px;}
.x67_c01149{left:566.984535px;}
.x2a_c01149{left:569.192235px;}
.x60_c01149{left:579.072435px;}
.x1d_c01149{left:581.017785px;}
.x2b_c01149{left:590.185185px;}
.x49_c01149{left:600.619785px;}
.x78_c01149{left:602.381985px;}
.x42_c01149{left:610.277235px;}
.x3b_c01149{left:612.049335px;}
.x59_c01149{left:613.469985px;}
.x43_c01149{left:621.805785px;}
.x4e_c01149{left:622.924485px;}
.x26_c01149{left:624.137235px;}
.x52_c01149{left:625.513335px;}
.x32_c01149{left:633.205635px;}
.x63_c01149{left:634.502535px;}
.x1e_c01149{left:645.224235px;}
.x14_c01149{left:646.649835px;}
.x5b_c01149{left:656.629035px;}
.x2c_c01149{left:659.079285px;}
.x4a_c01149{left:668.033835px;}
.x53_c01149{left:676.607235px;}
.x61_c01149{left:677.943735px;}
.x15_c01149{left:679.795035px;}
.x6d_c01149{left:688.813935px;}
.x1f_c01149{left:690.531585px;}
.x3_c01149{left:696.837885px;}
.x4b_c01149{left:699.486135px;}
.x5c_c01149{left:701.124585px;}
.x33_c01149{left:703.936185px;}
.x5a_c01149{left:706.732935px;}
.x5d_c01149{left:709.341585px;}
.x6e_c01149{left:710.722635px;}
.x3c_c01149{left:712.534335px;}
.x54_c01149{left:714.083685px;}
.x6f_c01149{left:724.265835px;}
.x55_c01149{left:732.438285px;}
.x4f_c01149{left:736.393335px;}
@media print{
.v1_c01149{vertical-align:-2.552000pt;}
.v0_c01149{vertical-align:0.000000pt;}
.v2_c01149{vertical-align:2.537920pt;}
.v3_c01149{vertical-align:11.404800pt;}
.ls1d_c01149{letter-spacing:-2.993760pt;}
.lsb_c01149{letter-spacing:-2.747360pt;}
.ls7_c01149{letter-spacing:-2.722726pt;}
.lsf_c01149{letter-spacing:-2.419337pt;}
.ls9_c01149{letter-spacing:-2.303846pt;}
.ls15_c01149{letter-spacing:-2.168326pt;}
.ls13_c01149{letter-spacing:-1.635537pt;}
.ls14_c01149{letter-spacing:-1.536414pt;}
.ls1b_c01149{letter-spacing:-1.513956pt;}
.lsa_c01149{letter-spacing:-1.034636pt;}
.ls3_c01149{letter-spacing:0.000000pt;}
.ls1a_c01149{letter-spacing:1.007110pt;}
.ls12_c01149{letter-spacing:1.322538pt;}
.ls11_c01149{letter-spacing:1.954978pt;}
.ls21_c01149{letter-spacing:1.994473pt;}
.ls1f_c01149{letter-spacing:2.012248pt;}
.ls1c_c01149{letter-spacing:2.956800pt;}
.lse_c01149{letter-spacing:3.203209pt;}
.ls6_c01149{letter-spacing:3.251713pt;}
.ls5_c01149{letter-spacing:3.291209pt;}
.ls19_c01149{letter-spacing:3.757362pt;}
.ls18_c01149{letter-spacing:3.854400pt;}
.ls1e_c01149{letter-spacing:3.881830pt;}
.ls4_c01149{letter-spacing:3.889609pt;}
.ls10_c01149{letter-spacing:4.646400pt;}
.ls1_c01149{letter-spacing:6.816128pt;}
.ls0_c01149{letter-spacing:6.896628pt;}
.ls2_c01149{letter-spacing:10.964712pt;}
.ls17_c01149{letter-spacing:48.153776pt;}
.ls8_c01149{letter-spacing:49.420976pt;}
.lsd_c01149{letter-spacing:50.688176pt;}
.ls20_c01149{letter-spacing:51.955376pt;}
.lsc_c01149{letter-spacing:53.222576pt;}
.ls16_c01149{letter-spacing:57.024176pt;}
.ws2_c01149{word-spacing:-17.222705pt;}
.ws0_c01149{word-spacing:-17.028707pt;}
.ws4_c01149{word-spacing:-16.456044pt;}
.ws1_c01149{word-spacing:-15.587167pt;}
.ws3_c01149{word-spacing:-14.942088pt;}
.ws5_c01149{word-spacing:0.000000pt;}
._0_c01149{margin-left:-16.566699pt;}
._5_c01149{margin-left:-10.656145pt;}
._8_c01149{margin-left:-8.968833pt;}
._4_c01149{margin-left:-3.332857pt;}
._9_c01149{margin-left:-1.579693pt;}
._2_c01149{width:4.612994pt;}
._7_c01149{width:6.598504pt;}
._3_c01149{width:21.801301pt;}
._6_c01149{width:37.021600pt;}
._1_c01149{width:47.590338pt;}
.fs17_c01149{font-size:19.712000pt;}
.fs11_c01149{font-size:19.888000pt;}
.fs16_c01149{font-size:24.640000pt;}
.fsb_c01149{font-size:27.808000pt;}
.fs13_c01149{font-size:29.568000pt;}
.fs0_c01149{font-size:34.496000pt;}
.fs9_c01149{font-size:36.256000pt;}
.fs10_c01149{font-size:48.153776pt;}
.fs3_c01149{font-size:49.420976pt;}
.fsf_c01149{font-size:49.808000pt;}
.fs7_c01149{font-size:50.688176pt;}
.fs19_c01149{font-size:51.955376pt;}
.fs6_c01149{font-size:53.222576pt;}
.fse_c01149{font-size:57.024176pt;}
.fs14_c01149{font-size:59.136000pt;}
.fsd_c01149{font-size:61.952176pt;}
.fs4_c01149{font-size:62.304176pt;}
.fs8_c01149{font-size:64.064176pt;}
.fsc_c01149{font-size:65.472176pt;}
.fs2_c01149{font-size:65.824176pt;}
.fs18_c01149{font-size:71.104176pt;}
.fs12_c01149{font-size:77.088000pt;}
.fs1_c01149{font-size:77.792176pt;}
.fs5_c01149{font-size:78.496000pt;}
.fs15_c01149{font-size:85.536000pt;}
.fsa_c01149{font-size:92.928000pt;}
.y0_c01149{bottom:0.000000pt;}
.y1_c01149{bottom:68.000000pt;}
.y21_c01149{bottom:114.282120pt;}
.y20_c01149{bottom:143.115320pt;}
.y1f_c01149{bottom:182.081720pt;}
.y1e_c01149{bottom:183.982520pt;}
.y1d_c01149{bottom:201.402120pt;}
.y1c_c01149{bottom:259.380920pt;}
.y1b_c01149{bottom:272.998920pt;}
.y1a_c01149{bottom:288.526520pt;}
.y19_c01149{bottom:316.404920pt;}
.y18_c01149{bottom:334.779320pt;}
.y17_c01149{bottom:344.600120pt;}
.y16_c01149{bottom:373.424520pt;}
.y15_c01149{bottom:401.307320pt;}
.y14_c01149{bottom:425.384120pt;}
.y13_c01149{bottom:429.185720pt;}
.y12_c01149{bottom:441.540920pt;}
.y11_c01149{bottom:457.697720pt;}
.y10_c01149{bottom:486.205320pt;}
.yf_c01149{bottom:514.400520pt;}
.yd_c01149{bottom:543.550520pt;}
.ye_c01149{bottom:546.080520pt;}
.yc_c01149{bottom:572.696120pt;}
.yb_c01149{bottom:600.886920pt;}
.ya_c01149{bottom:629.403320pt;}
.y9_c01149{bottom:657.910920pt;}
.y8_c01149{bottom:686.427320pt;}
.y2_c01149{bottom:691.496120pt;}
.y7_c01149{bottom:715.256120pt;}
.y6_c01149{bottom:742.817720pt;}
.y5_c01149{bottom:771.963320pt;}
.y4_c01149{bottom:828.987320pt;}
.y3_c01149{bottom:957.286920pt;}
.h14_c01149{height:19.518984pt;}
.h18_c01149{height:20.559000pt;}
.h11_c01149{height:20.742563pt;}
.h17_c01149{height:25.698750pt;}
.hc_c01149{height:27.292031pt;}
.h13_c01149{height:30.838500pt;}
.h10_c01149{height:32.070415pt;}
.h5_c01149{height:32.914370pt;}
.h9_c01149{height:33.758325pt;}
.h1a_c01149{height:34.602280pt;}
.h8_c01149{height:35.446236pt;}
.h2_c01149{height:35.978250pt;}
.hf_c01149{height:37.978101pt;}
.h15_c01149{height:58.038750pt;}
.ha_c01149{height:62.875485pt;}
.h4_c01149{height:64.602829pt;}
.he_c01149{height:64.614184pt;}
.h6_c01149{height:64.981309pt;}
.hd_c01149{height:68.285434pt;}
.h19_c01149{height:69.784860pt;}
.h12_c01149{height:75.657656pt;}
.h3_c01149{height:76.348766pt;}
.h7_c01149{height:77.039531pt;}
.h16_c01149{height:83.948906pt;}
.hb_c01149{height:91.203750pt;}
.h1_c01149{height:986.666667pt;}
.h0_c01149{height:1122.666667pt;}
.w1_c01149{width:689.333333pt;}
.w0_c01149{width:793.333333pt;}
.x0_c01149{left:0.000000pt;}
.x2_c01149{left:1.119053pt;}
.x1_c01149{left:52.000000pt;}
.x72_c01149{left:81.093453pt;}
.xc_c01149{left:82.959053pt;}
.x68_c01149{left:129.524253pt;}
.xd_c01149{left:130.716653pt;}
.x4_c01149{left:131.627453pt;}
.x20_c01149{left:150.644253pt;}
.x65_c01149{left:159.791853pt;}
.x2d_c01149{left:161.059053pt;}
.x69_c01149{left:169.898653pt;}
.xe_c01149{left:170.871053pt;}
.x34_c01149{left:173.282253pt;}
.x50_c01149{left:178.271853pt;}
.x73_c01149{left:180.036253pt;}
.x3d_c01149{left:189.131053pt;}
.x21_c01149{left:190.253053pt;}
.x27_c01149{left:198.850653pt;}
.x3e_c01149{left:199.968253pt;}
.x16_c01149{left:209.362253pt;}
.xf_c01149{left:210.365453pt;}
.x5_c01149{left:211.733853pt;}
.x4c_c01149{left:217.854253pt;}
.x56_c01149{left:218.853053pt;}
.x6_c01149{left:220.305053pt;}
.x3f_c01149{left:228.308653pt;}
.x2e_c01149{left:229.624253pt;}
.x35_c01149{left:230.741853pt;}
.x57_c01149{left:238.503453pt;}
.x22_c01149{left:239.585853pt;}
.x66_c01149{left:247.998653pt;}
.x7_c01149{left:249.389053pt;}
.x75_c01149{left:267.363053pt;}
.x62_c01149{left:269.730253pt;}
.x8_c01149{left:278.543453pt;}
.x36_c01149{left:288.764653pt;}
.x51_c01149{left:297.190653pt;}
.x44_c01149{left:298.255453pt;}
.x10_c01149{left:300.085853pt;}
.x70_c01149{left:307.262253pt;}
.x2f_c01149{left:308.344653pt;}
.x37_c01149{left:317.690253pt;}
.x23_c01149{left:318.825453pt;}
.x5e_c01149{left:328.333853pt;}
.x45_c01149{left:337.644253pt;}
.x9_c01149{left:338.788253pt;}
.x17_c01149{left:340.917853pt;}
.x76_c01149{left:346.523453pt;}
.x24_c01149{left:348.609053pt;}
.x6a_c01149{left:349.643053pt;}
.x64_c01149{left:350.888253pt;}
.x6b_c01149{left:356.603853pt;}
.x18_c01149{left:357.637853pt;}
.xa_c01149{left:366.415853pt;}
.x5f_c01149{left:367.911853pt;}
.x74_c01149{left:369.381453pt;}
.x28_c01149{left:378.159453pt;}
.x11_c01149{left:388.816253pt;}
.x30_c01149{left:397.682253pt;}
.x19_c01149{left:400.427853pt;}
.x58_c01149{left:406.086253pt;}
.x38_c01149{left:407.529453pt;}
.x40_c01149{left:408.488653pt;}
.x12_c01149{left:415.854253pt;}
.x1a_c01149{left:417.552653pt;}
.x46_c01149{left:426.374653pt;}
.x41_c01149{left:427.659453pt;}
.x6c_c01149{left:428.671453pt;}
.x39_c01149{left:436.455053pt;}
.x1b_c01149{left:438.536253pt;}
.x47_c01149{left:446.319853pt;}
.x71_c01149{left:454.275053pt;}
.x31_c01149{left:456.285853pt;}
.x1c_c01149{left:457.539853pt;}
.x25_c01149{left:466.115453pt;}
.x3a_c01149{left:467.228653pt;}
.xb_c01149{left:475.456653pt;}
.x4d_c01149{left:477.291453pt;}
.x77_c01149{left:483.381053pt;}
.x48_c01149{left:485.207053pt;}
.x29_c01149{left:494.684653pt;}
.x13_c01149{left:495.877053pt;}
.x67_c01149{left:503.986253pt;}
.x2a_c01149{left:505.948653pt;}
.x60_c01149{left:514.731053pt;}
.x1d_c01149{left:516.460253pt;}
.x2b_c01149{left:524.609053pt;}
.x49_c01149{left:533.884253pt;}
.x78_c01149{left:535.450653pt;}
.x42_c01149{left:542.468653pt;}
.x3b_c01149{left:544.043853pt;}
.x59_c01149{left:545.306653pt;}
.x43_c01149{left:552.716253pt;}
.x4e_c01149{left:553.710653pt;}
.x26_c01149{left:554.788653pt;}
.x52_c01149{left:556.011853pt;}
.x32_c01149{left:562.849453pt;}
.x63_c01149{left:564.002253pt;}
.x1e_c01149{left:573.532653pt;}
.x14_c01149{left:574.799853pt;}
.x5b_c01149{left:583.670253pt;}
.x2c_c01149{left:585.848253pt;}
.x4a_c01149{left:593.807853pt;}
.x53_c01149{left:601.428653pt;}
.x61_c01149{left:602.616653pt;}
.x15_c01149{left:604.262253pt;}
.x6d_c01149{left:612.279053pt;}
.x1f_c01149{left:613.805853pt;}
.x3_c01149{left:619.411453pt;}
.x4b_c01149{left:621.765453pt;}
.x5c_c01149{left:623.221853pt;}
.x33_c01149{left:625.721053pt;}
.x5a_c01149{left:628.207053pt;}
.x5d_c01149{left:630.525853pt;}
.x6e_c01149{left:631.753453pt;}
.x3c_c01149{left:633.363853pt;}
.x54_c01149{left:634.741053pt;}
.x6f_c01149{left:643.791853pt;}
.x55_c01149{left:651.056253pt;}
.x4f_c01149{left:654.571853pt;}
}





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

.ir_c01150:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01150{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01150;src:url('chunks/assets/font_1c165af066c1b9faeebbd9d1.woff2')format("woff");}.ff1_c01150{font-family:ff1_c01150;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01150;src:url('chunks/assets/font_6469a5f3d4a643644bb03729.woff2')format("woff");}.ff2_c01150{font-family:ff2_c01150;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01150;src:url('chunks/assets/font_ea6ba26c781db598c67631da.woff2')format("woff");}.ff3_c01150{font-family:ff3_c01150;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01150;src:url('chunks/assets/font_bd9756b1b7793695468abc7b.woff2')format("woff");}.ff4_c01150{font-family:ff4_c01150;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01150;src:url('chunks/assets/font_5209e4caa03f3b474762584b.woff2')format("woff");}.ff5_c01150{font-family:ff5_c01150;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01150;src:url('chunks/assets/font_7f15953fa8010f18c45c7ddc.woff2')format("woff");}.ff6_c01150{font-family:ff6_c01150;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01150;src:url('chunks/assets/font_dd43b81549321daaeaad1f7f.woff2')format("woff");}.ff7_c01150{font-family:ff7_c01150;line-height:0.666000;font-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_c01150{transform:matrix(0.032052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032052,0.000000,0.000000,0.250000,0,0);}
.m8b_c01150{transform:matrix(0.062501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062501,0.000000,0.000000,0.250000,0,0);}
.m89_c01150{transform:matrix(0.136706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136706,0.000000,0.000000,0.250000,0,0);}
.m8c_c01150{transform:matrix(0.163826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163826,0.000000,0.000000,0.250000,0,0);}
.m9f_c01150{transform:matrix(0.170543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170543,0.000000,0.000000,0.250000,0,0);}
.m84_c01150{transform:matrix(0.182065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182065,0.000000,0.000000,0.250000,0,0);}
.ma1_c01150{transform:matrix(0.192308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192308,0.000000,0.000000,0.250000,0,0);}
.m76_c01150{transform:matrix(0.201299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201299,0.000000,0.000000,0.250000,0,0);}
.m8f_c01150{transform:matrix(0.202096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202096,0.000000,0.000000,0.250000,0,0);}
.m97_c01150{transform:matrix(0.231788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231788,0.000000,0.000000,0.250000,0,0);}
.m9d_c01150{transform:matrix(0.235100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235100,0.000000,0.000000,0.250000,0,0);}
.m21_c01150{transform:matrix(0.237176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237176,0.000000,0.000000,0.250000,0,0);}
.m88_c01150{transform:matrix(0.240428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240428,0.000000,0.000000,0.250000,0,0);}
.m9e_c01150{transform:matrix(0.246332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246332,0.000000,0.000000,0.250000,0,0);}
.m61_c01150{transform:matrix(0.249717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249717,0.000000,0.000000,0.250000,0,0);}
.m0_c01150{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m24_c01150{transform:matrix(0.250329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250329,0.000000,0.000000,0.250000,0,0);}
.m58_c01150{transform:matrix(0.254538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254538,0.000000,0.000000,0.250000,0,0);}
.m7e_c01150{transform:matrix(0.255381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255381,0.000000,0.000000,0.250000,0,0);}
.m62_c01150{transform:matrix(0.255952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255952,0.000000,0.000000,0.250000,0,0);}
.m4e_c01150{transform:matrix(0.256329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256329,0.000000,0.000000,0.250000,0,0);}
.ma6_c01150{transform:matrix(0.257026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257026,0.000000,0.000000,0.250000,0,0);}
.m48_c01150{transform:matrix(0.257125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257125,0.000000,0.000000,0.250000,0,0);}
.m99_c01150{transform:matrix(0.259895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259895,0.000000,0.000000,0.250000,0,0);}
.m1b_c01150{transform:matrix(0.261096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261096,0.000000,0.000000,0.250000,0,0);}
.m1_c01150{transform:matrix(0.262215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262215,0.000000,0.000000,0.250000,0,0);}
.mab_c01150{transform:matrix(0.262303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262303,0.000000,0.000000,0.250000,0,0);}
.ma4_c01150{transform:matrix(0.262585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262585,0.000000,0.000000,0.250000,0,0);}
.m70_c01150{transform:matrix(0.263376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263376,0.000000,0.000000,0.250000,0,0);}
.m9b_c01150{transform:matrix(0.265389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265389,0.000000,0.000000,0.250000,0,0);}
.m52_c01150{transform:matrix(0.265696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265696,0.000000,0.000000,0.250000,0,0);}
.m90_c01150{transform:matrix(0.266029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266029,0.000000,0.000000,0.250000,0,0);}
.mad_c01150{transform:matrix(0.266209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266209,0.000000,0.000000,0.250000,0,0);}
.m50_c01150{transform:matrix(0.266448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266448,0.000000,0.000000,0.250000,0,0);}
.m7_c01150{transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);}
.m27_c01150{transform:matrix(0.268277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268277,0.000000,0.000000,0.250000,0,0);}
.m22_c01150{transform:matrix(0.268758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268758,0.000000,0.000000,0.250000,0,0);}
.m2f_c01150{transform:matrix(0.269685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269685,0.000000,0.000000,0.250000,0,0);}
.m36_c01150{transform:matrix(0.269735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269735,0.000000,0.000000,0.250000,0,0);}
.m4b_c01150{transform:matrix(0.270108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270108,0.000000,0.000000,0.250000,0,0);}
.m7f_c01150{transform:matrix(0.270191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270191,0.000000,0.000000,0.250000,0,0);}
.m14_c01150{transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);}
.m47_c01150{transform:matrix(0.271961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271961,0.000000,0.000000,0.250000,0,0);}
.m8e_c01150{transform:matrix(0.272870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272870,0.000000,0.000000,0.250000,0,0);}
.m19_c01150{transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);}
.m42_c01150{transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);}
.m55_c01150{transform:matrix(0.274304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274304,0.000000,0.000000,0.250000,0,0);}
.m33_c01150{transform:matrix(0.274405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274405,0.000000,0.000000,0.250000,0,0);}
.m83_c01150{transform:matrix(0.274501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274501,0.000000,0.000000,0.250000,0,0);}
.mc_c01150{transform:matrix(0.275028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275028,0.000000,0.000000,0.250000,0,0);}
.m29_c01150{transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);}
.m4c_c01150{transform:matrix(0.276103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276103,0.000000,0.000000,0.250000,0,0);}
.m94_c01150{transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);}
.ma5_c01150{transform:matrix(0.278297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278297,0.000000,0.000000,0.250000,0,0);}
.m20_c01150{transform:matrix(0.278446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278446,0.000000,0.000000,0.250000,0,0);}
.m30_c01150{transform:matrix(0.279146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279146,0.000000,0.000000,0.250000,0,0);}
.m39_c01150{transform:matrix(0.279565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279565,0.000000,0.000000,0.250000,0,0);}
.m6d_c01150{transform:matrix(0.279722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279722,0.000000,0.000000,0.250000,0,0);}
.m5e_c01150{transform:matrix(0.280052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280052,0.000000,0.000000,0.250000,0,0);}
.m87_c01150{transform:matrix(0.280349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280349,0.000000,0.000000,0.250000,0,0);}
.m1e_c01150{transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);}
.ma3_c01150{transform:matrix(0.281408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281408,0.000000,0.000000,0.250000,0,0);}
.m51_c01150{transform:matrix(0.281714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281714,0.000000,0.000000,0.250000,0,0);}
.m2c_c01150{transform:matrix(0.282462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282462,0.000000,0.000000,0.250000,0,0);}
.m35_c01150{transform:matrix(0.282769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282769,0.000000,0.000000,0.250000,0,0);}
.m6b_c01150{transform:matrix(0.283010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283010,0.000000,0.000000,0.250000,0,0);}
.m32_c01150{transform:matrix(0.283497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283497,0.000000,0.000000,0.250000,0,0);}
.m28_c01150{transform:matrix(0.284161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284161,0.000000,0.000000,0.250000,0,0);}
.md_c01150{transform:matrix(0.285101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285101,0.000000,0.000000,0.250000,0,0);}
.m72_c01150{transform:matrix(0.285266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285266,0.000000,0.000000,0.250000,0,0);}
.m41_c01150{transform:matrix(0.285374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285374,0.000000,0.000000,0.250000,0,0);}
.m40_c01150{transform:matrix(0.285459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285459,0.000000,0.000000,0.250000,0,0);}
.ma0_c01150{transform:matrix(0.285652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285652,0.000000,0.000000,0.250000,0,0);}
.ma7_c01150{transform:matrix(0.286149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286149,0.000000,0.000000,0.250000,0,0);}
.m93_c01150{transform:matrix(0.286753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286753,0.000000,0.000000,0.250000,0,0);}
.m57_c01150{transform:matrix(0.288571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288571,0.000000,0.000000,0.250000,0,0);}
.m85_c01150{transform:matrix(0.288782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288782,0.000000,0.000000,0.250000,0,0);}
.m91_c01150{transform:matrix(0.288840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288840,0.000000,0.000000,0.250000,0,0);}
.m4_c01150{transform:matrix(0.289629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289629,0.000000,0.000000,0.250000,0,0);}
.m3a_c01150{transform:matrix(0.289890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289890,0.000000,0.000000,0.250000,0,0);}
.m16_c01150{transform:matrix(0.291172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291172,0.000000,0.000000,0.250000,0,0);}
.ma_c01150{transform:matrix(0.291453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291453,0.000000,0.000000,0.250000,0,0);}
.m2_c01150{transform:matrix(0.291994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291994,0.000000,0.000000,0.250000,0,0);}
.m96_c01150{transform:matrix(0.292385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292385,0.000000,0.000000,0.250000,0,0);}
.m69_c01150{transform:matrix(0.292893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292893,0.000000,0.000000,0.250000,0,0);}
.m4f_c01150{transform:matrix(0.292911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292911,0.000000,0.000000,0.250000,0,0);}
.m44_c01150{transform:matrix(0.293691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293691,0.000000,0.000000,0.250000,0,0);}
.m68_c01150{transform:matrix(0.294167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294167,0.000000,0.000000,0.250000,0,0);}
.maa_c01150{transform:matrix(0.296249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296249,0.000000,0.000000,0.250000,0,0);}
.m3_c01150{transform:matrix(0.296680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296680,0.000000,0.000000,0.250000,0,0);}
.m77_c01150{transform:matrix(0.296934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296934,0.000000,0.000000,0.250000,0,0);}
.m5b_c01150{transform:matrix(0.297812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297812,0.000000,0.000000,0.250000,0,0);}
.m92_c01150{transform:matrix(0.298058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298058,0.000000,0.000000,0.250000,0,0);}
.mae_c01150{transform:matrix(0.298143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298143,0.000000,0.000000,0.250000,0,0);}
.m8d_c01150{transform:matrix(0.299088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299088,0.000000,0.000000,0.250000,0,0);}
.m75_c01150{transform:matrix(0.300737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300737,0.000000,0.000000,0.250000,0,0);}
.m1a_c01150{transform:matrix(0.300870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300870,0.000000,0.000000,0.250000,0,0);}
.m45_c01150{transform:matrix(0.301216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301216,0.000000,0.000000,0.250000,0,0);}
.m3f_c01150{transform:matrix(0.301862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301862,0.000000,0.000000,0.250000,0,0);}
.m98_c01150{transform:matrix(0.301923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301923,0.000000,0.000000,0.250000,0,0);}
.m7a_c01150{transform:matrix(0.302131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302131,0.000000,0.000000,0.250000,0,0);}
.m43_c01150{transform:matrix(0.302495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302495,0.000000,0.000000,0.250000,0,0);}
.m9a_c01150{transform:matrix(0.302620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302620,0.000000,0.000000,0.250000,0,0);}
.m23_c01150{transform:matrix(0.303164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303164,0.000000,0.000000,0.250000,0,0);}
.m66_c01150{transform:matrix(0.305027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305027,0.000000,0.000000,0.250000,0,0);}
.m34_c01150{transform:matrix(0.305137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305137,0.000000,0.000000,0.250000,0,0);}
.m2b_c01150{transform:matrix(0.305233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305233,0.000000,0.000000,0.250000,0,0);}
.m7d_c01150{transform:matrix(0.307690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307690,0.000000,0.000000,0.250000,0,0);}
.m56_c01150{transform:matrix(0.309090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309090,0.000000,0.000000,0.250000,0,0);}
.m8a_c01150{transform:matrix(0.309952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309952,0.000000,0.000000,0.250000,0,0);}
.m63_c01150{transform:matrix(0.311268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311268,0.000000,0.000000,0.250000,0,0);}
.m6a_c01150{transform:matrix(0.312601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312601,0.000000,0.000000,0.250000,0,0);}
.m31_c01150{transform:matrix(0.315104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315104,0.000000,0.000000,0.250000,0,0);}
.m3e_c01150{transform:matrix(0.315235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315235,0.000000,0.000000,0.250000,0,0);}
.ma9_c01150{transform:matrix(0.315336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315336,0.000000,0.000000,0.250000,0,0);}
.m49_c01150{transform:matrix(0.315364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315364,0.000000,0.000000,0.250000,0,0);}
.mf_c01150{transform:matrix(0.315527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315527,0.000000,0.000000,0.250000,0,0);}
.m86_c01150{transform:matrix(0.315578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315578,0.000000,0.000000,0.250000,0,0);}
.m11_c01150{transform:matrix(0.315676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315676,0.000000,0.000000,0.250000,0,0);}
.m54_c01150{transform:matrix(0.315970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315970,0.000000,0.000000,0.250000,0,0);}
.m2e_c01150{transform:matrix(0.316292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316292,0.000000,0.000000,0.250000,0,0);}
.m3d_c01150{transform:matrix(0.318128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318128,0.000000,0.000000,0.250000,0,0);}
.m18_c01150{transform:matrix(0.318432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318432,0.000000,0.000000,0.250000,0,0);}
.m95_c01150{transform:matrix(0.319330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319330,0.000000,0.000000,0.250000,0,0);}
.m4a_c01150{transform:matrix(0.320183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320183,0.000000,0.000000,0.250000,0,0);}
.m5c_c01150{transform:matrix(0.320967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320967,0.000000,0.000000,0.250000,0,0);}
.m78_c01150{transform:matrix(0.321372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321372,0.000000,0.000000,0.250000,0,0);}
.m1c_c01150{transform:matrix(0.321442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321442,0.000000,0.000000,0.250000,0,0);}
.m6e_c01150{transform:matrix(0.323065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323065,0.000000,0.000000,0.250000,0,0);}
.m59_c01150{transform:matrix(0.323190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323190,0.000000,0.000000,0.250000,0,0);}
.m5d_c01150{transform:matrix(0.323385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323385,0.000000,0.000000,0.250000,0,0);}
.m81_c01150{transform:matrix(0.323481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323481,0.000000,0.000000,0.250000,0,0);}
.m46_c01150{transform:matrix(0.323634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323634,0.000000,0.000000,0.250000,0,0);}
.m53_c01150{transform:matrix(0.323662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323662,0.000000,0.000000,0.250000,0,0);}
.m2d_c01150{transform:matrix(0.325340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325340,0.000000,0.000000,0.250000,0,0);}
.m6f_c01150{transform:matrix(0.326408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326408,0.000000,0.000000,0.250000,0,0);}
.m9_c01150{transform:matrix(0.327078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327078,0.000000,0.000000,0.250000,0,0);}
.me_c01150{transform:matrix(0.327409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327409,0.000000,0.000000,0.250000,0,0);}
.m12_c01150{transform:matrix(0.327781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327781,0.000000,0.000000,0.250000,0,0);}
.m64_c01150{transform:matrix(0.327918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327918,0.000000,0.000000,0.250000,0,0);}
.m15_c01150{transform:matrix(0.328864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328864,0.000000,0.000000,0.250000,0,0);}
.m10_c01150{transform:matrix(0.329059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329059,0.000000,0.000000,0.250000,0,0);}
.m79_c01150{transform:matrix(0.329235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329235,0.000000,0.000000,0.250000,0,0);}
.ma8_c01150{transform:matrix(0.330522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330522,0.000000,0.000000,0.250000,0,0);}
.m7b_c01150{transform:matrix(0.331427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331427,0.000000,0.000000,0.250000,0,0);}
.m38_c01150{transform:matrix(0.331528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331528,0.000000,0.000000,0.250000,0,0);}
.m2a_c01150{transform:matrix(0.331550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331550,0.000000,0.000000,0.250000,0,0);}
.m4d_c01150{transform:matrix(0.333568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333568,0.000000,0.000000,0.250000,0,0);}
.m13_c01150{transform:matrix(0.333577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333577,0.000000,0.000000,0.250000,0,0);}
.m60_c01150{transform:matrix(0.334107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334107,0.000000,0.000000,0.250000,0,0);}
.mb_c01150{transform:matrix(0.336916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336916,0.000000,0.000000,0.250000,0,0);}
.m25_c01150{transform:matrix(0.339291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339291,0.000000,0.000000,0.250000,0,0);}
.m6_c01150{transform:matrix(0.340752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340752,0.000000,0.000000,0.250000,0,0);}
.m1d_c01150{transform:matrix(0.343964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343964,0.000000,0.000000,0.250000,0,0);}
.m37_c01150{transform:matrix(0.345834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345834,0.000000,0.000000,0.250000,0,0);}
.m8_c01150{transform:matrix(0.347328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347328,0.000000,0.000000,0.250000,0,0);}
.m5a_c01150{transform:matrix(0.348110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348110,0.000000,0.000000,0.250000,0,0);}
.m82_c01150{transform:matrix(0.350446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350446,0.000000,0.000000,0.250000,0,0);}
.m3b_c01150{transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);}
.m80_c01150{transform:matrix(0.354495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354495,0.000000,0.000000,0.250000,0,0);}
.m65_c01150{transform:matrix(0.355252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355252,0.000000,0.000000,0.250000,0,0);}
.m1f_c01150{transform:matrix(0.357996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357996,0.000000,0.000000,0.250000,0,0);}
.m71_c01150{transform:matrix(0.363147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363147,0.000000,0.000000,0.250000,0,0);}
.m73_c01150{transform:matrix(0.363421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363421,0.000000,0.000000,0.250000,0,0);}
.mac_c01150{transform:matrix(0.366317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366317,0.000000,0.000000,0.250000,0,0);}
.m9c_c01150{transform:matrix(0.370730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370730,0.000000,0.000000,0.250000,0,0);}
.m26_c01150{transform:matrix(0.371372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371372,0.000000,0.000000,0.250000,0,0);}
.m17_c01150{transform:matrix(0.377794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377794,0.000000,0.000000,0.250000,0,0);}
.m67_c01150{transform:matrix(0.380528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380528,0.000000,0.000000,0.250000,0,0);}
.m7c_c01150{transform:matrix(0.380833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380833,0.000000,0.000000,0.250000,0,0);}
.m6c_c01150{transform:matrix(0.385529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385529,0.000000,0.000000,0.250000,0,0);}
.m5_c01150{transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);}
.m3c_c01150{transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);}
.m5f_c01150{transform:matrix(0.412048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412048,0.000000,0.000000,0.250000,0,0);}
.m74_c01150{transform:matrix(0.607136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607136,0.000000,0.000000,0.250000,0,0);}
.v0_c01150{vertical-align:0.000000px;}
.ls1e_c01150{letter-spacing:-2.661127px;}
.ls20_c01150{letter-spacing:-2.647267px;}
.ls10_c01150{letter-spacing:-2.601885px;}
.ls8_c01150{letter-spacing:-2.328480px;}
.ls1c_c01150{letter-spacing:-2.189880px;}
.ls14_c01150{letter-spacing:-1.413720px;}
.ls11_c01150{letter-spacing:-1.126979px;}
.ls3_c01150{letter-spacing:0.000000px;}
.ls0_c01150{letter-spacing:0.456193px;}
.ls22_c01150{letter-spacing:0.552144px;}
.ls7_c01150{letter-spacing:2.691540px;}
.lsc_c01150{letter-spacing:2.729556px;}
.ls2_c01150{letter-spacing:2.798539px;}
.ls1_c01150{letter-spacing:2.901096px;}
.ls13_c01150{letter-spacing:2.968812px;}
.ls17_c01150{letter-spacing:3.316500px;}
.ls9_c01150{letter-spacing:3.326400px;}
.ls15_c01150{letter-spacing:3.385810px;}
.lse_c01150{letter-spacing:3.435310px;}
.ls18_c01150{letter-spacing:3.484810px;}
.lsd_c01150{letter-spacing:3.633310px;}
.ls1f_c01150{letter-spacing:3.663000px;}
.ls24_c01150{letter-spacing:3.702610px;}
.ls5_c01150{letter-spacing:3.781810px;}
.ls6_c01150{letter-spacing:3.801610px;}
.lsa_c01150{letter-spacing:3.841200px;}
.lsf_c01150{letter-spacing:3.979810px;}
.lsb_c01150{letter-spacing:4.068900px;}
.ls12_c01150{letter-spacing:4.078810px;}
.ls4_c01150{letter-spacing:4.197610px;}
.ls16_c01150{letter-spacing:4.672810px;}
.ls19_c01150{letter-spacing:9.979398px;}
.ls1a_c01150{letter-spacing:49.896198px;}
.ls23_c01150{letter-spacing:55.598598px;}
.ls21_c01150{letter-spacing:61.300998px;}
.ls1d_c01150{letter-spacing:62.726400px;}
.ls1b_c01150{letter-spacing:65.577798px;}
.sc__c01150{text-shadow:none;}
.sc0_c01150{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01150{-webkit-text-stroke:0px transparent;}
.sc0_c01150{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01150{word-spacing:0.000000px;}
._1_c01150{width:6.939831px;}
._0_c01150{width:8.801021px;}
._3_c01150{width:41.297355px;}
._2_c01150{width:80.384436px;}
.fc0_c01150{color:transparent;}
.fs18_c01150{font-size:9.979398px;}
.fs1_c01150{font-size:22.176000px;}
.fsa_c01150{font-size:26.928000px;}
.fs0_c01150{font-size:33.264000px;}
.fs23_c01150{font-size:33.660000px;}
.fs15_c01150{font-size:36.630000px;}
.fs21_c01150{font-size:39.798000px;}
.fs13_c01150{font-size:40.392000px;}
.fs1d_c01150{font-size:43.956198px;}
.fs19_c01150{font-size:49.896198px;}
.fs20_c01150{font-size:55.598598px;}
.fs1f_c01150{font-size:61.300998px;}
.fs12_c01150{font-size:62.370000px;}
.fs1c_c01150{font-size:62.568000px;}
.fs1e_c01150{font-size:62.726400px;}
.fs1a_c01150{font-size:65.577798px;}
.fs4_c01150{font-size:66.330000px;}
.fs7_c01150{font-size:66.528000px;}
.fs6_c01150{font-size:67.122198px;}
.fs14_c01150{font-size:67.716198px;}
.fsc_c01150{font-size:68.706198px;}
.fs17_c01150{font-size:69.696198px;}
.fsb_c01150{font-size:72.666198px;}
.fse_c01150{font-size:73.260000px;}
.fs22_c01150{font-size:74.052198px;}
.fs3_c01150{font-size:75.636198px;}
.fs5_c01150{font-size:76.032198px;}
.fs8_c01150{font-size:76.824000px;}
.fsd_c01150{font-size:79.596198px;}
.fs9_c01150{font-size:81.378000px;}
.fs10_c01150{font-size:81.576198px;}
.fs2_c01150{font-size:83.952198px;}
.fs11_c01150{font-size:84.546198px;}
.fsf_c01150{font-size:89.100000px;}
.fs16_c01150{font-size:93.456198px;}
.fs1b_c01150{font-size:102.168000px;}
.y0_c01150{bottom:0.000000px;}
.y24_c01150{bottom:16.301385px;}
.y23_c01150{bottom:46.951785px;}
.y1_c01150{bottom:76.500000px;}
.y22_c01150{bottom:128.210985px;}
.y21_c01150{bottom:189.516735px;}
.y20_c01150{bottom:192.719385px;}
.y1f_c01150{bottom:224.800335px;}
.y1e_c01150{bottom:247.609935px;}
.y1d_c01150{bottom:256.876335px;}
.y1c_c01150{bottom:320.315535px;}
.y1b_c01150{bottom:352.747935px;}
.y1a_c01150{bottom:385.888185px;}
.y19_c01150{bottom:418.676985px;}
.y18_c01150{bottom:447.545385px;}
.y12_c01150{bottom:449.683785px;}
.y17_c01150{bottom:450.396585px;}
.y16_c01150{bottom:514.548585px;}
.y14_c01150{bottom:546.273135px;}
.y15_c01150{bottom:547.698735px;}
.y13_c01150{bottom:578.700585px;}
.y10_c01150{bottom:610.068735px;}
.y11_c01150{bottom:610.776585px;}
.yf_c01150{bottom:674.928585px;}
.y3_c01150{bottom:694.174185px;}
.ye_c01150{bottom:707.009535px;}
.yd_c01150{bottom:738.724185px;}
.y2_c01150{bottom:747.990585px;}
.yc_c01150{bottom:771.156585px;}
.yb_c01150{bottom:791.119935px;}
.ya_c01150{bottom:803.593935px;}
.y9_c01150{bottom:835.669935px;}
.y8_c01150{bottom:867.389535px;}
.y7_c01150{bottom:899.821935px;}
.y6_c01150{bottom:932.610735px;}
.y5_c01150{bottom:1071.245385px;}
.y4_c01150{bottom:1075.527135px;}
.h1a_c01150{height:6.646279px;}
.h3_c01150{height:23.128875px;}
.hc_c01150{height:28.085063px;}
.h27_c01150{height:33.035449px;}
.h1b_c01150{height:33.230868px;}
.h2_c01150{height:34.693313px;}
.h24_c01150{height:37.028666px;}
.h17_c01150{height:38.203945px;}
.h23_c01150{height:40.826465px;}
.h25_c01150{height:41.508070px;}
.h20_c01150{height:41.775782px;}
.h15_c01150{height:42.127594px;}
.h1f_c01150{height:43.140604px;}
.h1c_c01150{height:43.674813px;}
.h22_c01150{height:52.040175px;}
.h14_c01150{height:61.212744px;}
.h1e_c01150{height:65.256469px;}
.he_c01150{height:67.397828px;}
.h19_c01150{height:68.403007px;}
.h6_c01150{height:69.180117px;}
.h9_c01150{height:69.386625px;}
.h8_c01150{height:70.006355px;}
.h16_c01150{height:70.625878px;}
.hd_c01150{height:71.317899px;}
.h21_c01150{height:71.900684px;}
.h26_c01150{height:72.642024px;}
.h5_c01150{height:74.232792px;}
.h7_c01150{height:74.621444px;}
.h10_c01150{height:76.407891px;}
.ha_c01150{height:77.424188px;}
.hf_c01150{height:78.080450px;}
.h12_c01150{height:80.062577px;}
.hb_c01150{height:82.013766px;}
.h4_c01150{height:82.394491px;}
.h13_c01150{height:82.977470px;}
.h11_c01150{height:87.446777px;}
.h18_c01150{height:97.471894px;}
.h1d_c01150{height:106.558031px;}
.h1_c01150{height:1110.000000px;}
.h0_c01150{height:1263.000000px;}
.w1_c01150{width:775.500000px;}
.w0_c01150{width:892.500000px;}
.x0_c01150{left:0.000000px;}
.x2_c01150{left:38.705685px;}
.x1_c01150{left:58.500000px;}
.x3_c01150{left:71.182635px;}
.x3f_c01150{left:97.056285px;}
.x4b_c01150{left:151.407285px;}
.x16_c01150{left:152.481435px;}
.x6_c01150{left:153.560535px;}
.x22_c01150{left:154.897035px;}
.x23_c01150{left:165.089085px;}
.x44_c01150{left:174.291135px;}
.x3a_c01150{left:175.489035px;}
.x4c_c01150{left:185.339535px;}
.x17_c01150{left:197.585835px;}
.x38_c01150{left:208.762935px;}
.x57_c01150{left:218.578785px;}
.xf_c01150{left:219.989535px;}
.x4d_c01150{left:228.746085px;}
.x24_c01150{left:230.503335px;}
.x69_c01150{left:239.027235px;}
.x30_c01150{left:241.625985px;}
.x18_c01150{left:243.997035px;}
.x45_c01150{left:251.243835px;}
.x67_c01150{left:257.465985px;}
.x4e_c01150{left:262.262535px;}
.x5a_c01150{left:263.727735px;}
.x7_c01150{left:274.568235px;}
.x3c_c01150{left:275.865135px;}
.x6d_c01150{left:284.705835px;}
.x46_c01150{left:285.958185px;}
.x19_c01150{left:287.561985px;}
.x5e_c01150{left:294.328635px;}
.x54_c01150{left:296.308635px;}
.x5f_c01150{left:306.852135px;}
.x10_c01150{left:307.866885px;}
.x25_c01150{left:309.109335px;}
.x6a_c01150{left:310.386435px;}
.x8_c01150{left:319.266735px;}
.x6b_c01150{left:331.077435px;}
.x60_c01150{left:338.215335px;}
.x68_c01150{left:340.625985px;}
.x26_c01150{left:341.833785px;}
.x31_c01150{left:342.952485px;}
.x1a_c01150{left:352.743585px;}
.x9_c01150{left:363.608835px;}
.x27_c01150{left:373.390035px;}
.x55_c01150{left:381.082335px;}
.x40_c01150{left:384.497835px;}
.x3d_c01150{left:387.195585px;}
.x6c_c01150{left:394.125585px;}
.x6e_c01150{left:395.377935px;}
.xa_c01150{left:397.501485px;}
.x56_c01150{left:398.803335px;}
.x64_c01150{left:406.287735px;}
.x3e_c01150{left:407.802435px;}
.x41_c01150{left:418.360785px;}
.x1b_c01150{left:419.984385px;}
.x4f_c01150{left:430.750635px;}
.x32_c01150{left:441.130785px;}
.x1c_c01150{left:452.090085px;}
.x11_c01150{left:453.842385px;}
.x33_c01150{left:463.781985px;}
.x6f_c01150{left:472.464285px;}
.x12_c01150{left:475.528335px;}
.xb_c01150{left:486.274785px;}
.x28_c01150{left:487.398435px;}
.x65_c01150{left:495.986685px;}
.x13_c01150{left:497.971635px;}
.x2d_c01150{left:506.782635px;}
.x47_c01150{left:508.302285px;}
.x5b_c01150{left:517.776585px;}
.xc_c01150{left:519.682335px;}
.x61_c01150{left:523.691835px;}
.x1d_c01150{left:530.047635px;}
.x62_c01150{left:540.759435px;}
.x14_c01150{left:542.521635px;}
.x42_c01150{left:549.426885px;}
.x50_c01150{left:551.060385px;}
.x2e_c01150{left:552.431535px;}
.x70_c01150{left:553.748235px;}
.x1e_c01150{left:563.039385px;}
.x29_c01150{left:564.306585px;}
.xd_c01150{left:574.261035px;}
.x58_c01150{left:583.883835px;}
.x48_c01150{left:585.566835px;}
.x34_c01150{left:596.095485px;}
.x2a_c01150{left:598.149735px;}
.x51_c01150{left:605.183685px;}
.x5c_c01150{left:606.718185px;}
.x52_c01150{left:616.930035px;}
.x1f_c01150{left:618.494235px;}
.x3b_c01150{left:629.453535px;}
.x35_c01150{left:630.745485px;}
.x5d_c01150{left:637.848735px;}
.x2f_c01150{left:640.467285px;}
.x20_c01150{left:650.411835px;}
.x2b_c01150{left:651.936435px;}
.x53_c01150{left:660.697935px;}
.x39_c01150{left:662.103735px;}
.x36_c01150{left:664.242135px;}
.x66_c01150{left:672.533385px;}
.x15_c01150{left:674.176785px;}
.x49_c01150{left:683.448135px;}
.x37_c01150{left:685.834035px;}
.x21_c01150{left:694.922235px;}
.x43_c01150{left:697.095285px;}
.x2c_c01150{left:698.679285px;}
.x4_c01150{left:700.045485px;}
.x59_c01150{left:703.391685px;}
.xe_c01150{left:706.648785px;}
.x4a_c01150{left:717.360585px;}
.x5_c01150{left:724.820235px;}
.x63_c01150{left:753.644085px;}
@media print{
.v0_c01150{vertical-align:0.000000pt;}
.ls1e_c01150{letter-spacing:-2.365446pt;}
.ls20_c01150{letter-spacing:-2.353126pt;}
.ls10_c01150{letter-spacing:-2.312787pt;}
.ls8_c01150{letter-spacing:-2.069760pt;}
.ls1c_c01150{letter-spacing:-1.946560pt;}
.ls14_c01150{letter-spacing:-1.256640pt;}
.ls11_c01150{letter-spacing:-1.001759pt;}
.ls3_c01150{letter-spacing:0.000000pt;}
.ls0_c01150{letter-spacing:0.405505pt;}
.ls22_c01150{letter-spacing:0.490795pt;}
.ls7_c01150{letter-spacing:2.392480pt;}
.lsc_c01150{letter-spacing:2.426272pt;}
.ls2_c01150{letter-spacing:2.487591pt;}
.ls1_c01150{letter-spacing:2.578752pt;}
.ls13_c01150{letter-spacing:2.638944pt;}
.ls17_c01150{letter-spacing:2.948000pt;}
.ls9_c01150{letter-spacing:2.956800pt;}
.ls15_c01150{letter-spacing:3.009609pt;}
.lse_c01150{letter-spacing:3.053609pt;}
.ls18_c01150{letter-spacing:3.097609pt;}
.lsd_c01150{letter-spacing:3.229609pt;}
.ls1f_c01150{letter-spacing:3.256000pt;}
.ls24_c01150{letter-spacing:3.291209pt;}
.ls5_c01150{letter-spacing:3.361609pt;}
.ls6_c01150{letter-spacing:3.379209pt;}
.lsa_c01150{letter-spacing:3.414400pt;}
.lsf_c01150{letter-spacing:3.537609pt;}
.lsb_c01150{letter-spacing:3.616800pt;}
.ls12_c01150{letter-spacing:3.625609pt;}
.ls4_c01150{letter-spacing:3.731209pt;}
.ls16_c01150{letter-spacing:4.153609pt;}
.ls19_c01150{letter-spacing:8.870576pt;}
.ls1a_c01150{letter-spacing:44.352176pt;}
.ls23_c01150{letter-spacing:49.420976pt;}
.ls21_c01150{letter-spacing:54.489776pt;}
.ls1d_c01150{letter-spacing:55.756800pt;}
.ls1b_c01150{letter-spacing:58.291376pt;}
.ws0_c01150{word-spacing:0.000000pt;}
._1_c01150{width:6.168738pt;}
._0_c01150{width:7.823130pt;}
._3_c01150{width:36.708760pt;}
._2_c01150{width:71.452832pt;}
.fs18_c01150{font-size:8.870576pt;}
.fs1_c01150{font-size:19.712000pt;}
.fsa_c01150{font-size:23.936000pt;}
.fs0_c01150{font-size:29.568000pt;}
.fs23_c01150{font-size:29.920000pt;}
.fs15_c01150{font-size:32.560000pt;}
.fs21_c01150{font-size:35.376000pt;}
.fs13_c01150{font-size:35.904000pt;}
.fs1d_c01150{font-size:39.072176pt;}
.fs19_c01150{font-size:44.352176pt;}
.fs20_c01150{font-size:49.420976pt;}
.fs1f_c01150{font-size:54.489776pt;}
.fs12_c01150{font-size:55.440000pt;}
.fs1c_c01150{font-size:55.616000pt;}
.fs1e_c01150{font-size:55.756800pt;}
.fs1a_c01150{font-size:58.291376pt;}
.fs4_c01150{font-size:58.960000pt;}
.fs7_c01150{font-size:59.136000pt;}
.fs6_c01150{font-size:59.664176pt;}
.fs14_c01150{font-size:60.192176pt;}
.fsc_c01150{font-size:61.072176pt;}
.fs17_c01150{font-size:61.952176pt;}
.fsb_c01150{font-size:64.592176pt;}
.fse_c01150{font-size:65.120000pt;}
.fs22_c01150{font-size:65.824176pt;}
.fs3_c01150{font-size:67.232176pt;}
.fs5_c01150{font-size:67.584176pt;}
.fs8_c01150{font-size:68.288000pt;}
.fsd_c01150{font-size:70.752176pt;}
.fs9_c01150{font-size:72.336000pt;}
.fs10_c01150{font-size:72.512176pt;}
.fs2_c01150{font-size:74.624176pt;}
.fs11_c01150{font-size:75.152176pt;}
.fsf_c01150{font-size:79.200000pt;}
.fs16_c01150{font-size:83.072176pt;}
.fs1b_c01150{font-size:90.816000pt;}
.y0_c01150{bottom:0.000000pt;}
.y24_c01150{bottom:14.490120pt;}
.y23_c01150{bottom:41.734920pt;}
.y1_c01150{bottom:68.000000pt;}
.y22_c01150{bottom:113.965320pt;}
.y21_c01150{bottom:168.459320pt;}
.y20_c01150{bottom:171.306120pt;}
.y1f_c01150{bottom:199.822520pt;}
.y1e_c01150{bottom:220.097720pt;}
.y1d_c01150{bottom:228.334520pt;}
.y1c_c01150{bottom:284.724920pt;}
.y1b_c01150{bottom:313.553720pt;}
.y1a_c01150{bottom:343.011720pt;}
.y19_c01150{bottom:372.157320pt;}
.y18_c01150{bottom:397.818120pt;}
.y12_c01150{bottom:399.718920pt;}
.y17_c01150{bottom:400.352520pt;}
.y16_c01150{bottom:457.376520pt;}
.y14_c01150{bottom:485.576120pt;}
.y15_c01150{bottom:486.843320pt;}
.y13_c01150{bottom:514.400520pt;}
.y10_c01150{bottom:542.283320pt;}
.y11_c01150{bottom:542.912520pt;}
.yf_c01150{bottom:599.936520pt;}
.y3_c01150{bottom:617.043720pt;}
.ye_c01150{bottom:628.452920pt;}
.yd_c01150{bottom:656.643720pt;}
.y2_c01150{bottom:664.880520pt;}
.yc_c01150{bottom:685.472520pt;}
.yb_c01150{bottom:703.217720pt;}
.ya_c01150{bottom:714.305720pt;}
.y9_c01150{bottom:742.817720pt;}
.y8_c01150{bottom:771.012920pt;}
.y7_c01150{bottom:799.841720pt;}
.y6_c01150{bottom:828.987320pt;}
.y5_c01150{bottom:952.218120pt;}
.y4_c01150{bottom:956.024120pt;}
.h1a_c01150{height:5.907804pt;}
.h3_c01150{height:20.559000pt;}
.hc_c01150{height:24.964500pt;}
.h27_c01150{height:29.364844pt;}
.h1b_c01150{height:29.538549pt;}
.h2_c01150{height:30.838500pt;}
.h24_c01150{height:32.914370pt;}
.h17_c01150{height:33.959063pt;}
.h23_c01150{height:36.290191pt;}
.h25_c01150{height:36.896063pt;}
.h20_c01150{height:37.134029pt;}
.h15_c01150{height:37.446750pt;}
.h1f_c01150{height:38.347204pt;}
.h1c_c01150{height:38.822056pt;}
.h22_c01150{height:46.257934pt;}
.h14_c01150{height:54.411328pt;}
.h1e_c01150{height:58.005750pt;}
.he_c01150{height:59.909180pt;}
.h19_c01150{height:60.802673pt;}
.h6_c01150{height:61.493438pt;}
.h9_c01150{height:61.677000pt;}
.h8_c01150{height:62.227871pt;}
.h16_c01150{height:62.778559pt;}
.hd_c01150{height:63.393688pt;}
.h21_c01150{height:63.911719pt;}
.h26_c01150{height:64.570688pt;}
.h5_c01150{height:65.984704pt;}
.h7_c01150{height:66.330173pt;}
.h10_c01150{height:67.918125pt;}
.ha_c01150{height:68.821500pt;}
.hf_c01150{height:69.404845pt;}
.h12_c01150{height:71.166735pt;}
.hb_c01150{height:72.901125pt;}
.h4_c01150{height:73.239548pt;}
.h13_c01150{height:73.757751pt;}
.h11_c01150{height:77.730469pt;}
.h18_c01150{height:86.641684pt;}
.h1d_c01150{height:94.718250pt;}
.h1_c01150{height:986.666667pt;}
.h0_c01150{height:1122.666667pt;}
.w1_c01150{width:689.333333pt;}
.w0_c01150{width:793.333333pt;}
.x0_c01150{left:0.000000pt;}
.x2_c01150{left:34.405053pt;}
.x1_c01150{left:52.000000pt;}
.x3_c01150{left:63.273453pt;}
.x3f_c01150{left:86.272253pt;}
.x4b_c01150{left:134.584253pt;}
.x16_c01150{left:135.539053pt;}
.x6_c01150{left:136.498253pt;}
.x22_c01150{left:137.686253pt;}
.x23_c01150{left:146.745853pt;}
.x44_c01150{left:154.925453pt;}
.x3a_c01150{left:155.990253pt;}
.x4c_c01150{left:164.746253pt;}
.x17_c01150{left:175.631853pt;}
.x38_c01150{left:185.567053pt;}
.x57_c01150{left:194.292253pt;}
.xf_c01150{left:195.546253pt;}
.x4d_c01150{left:203.329853pt;}
.x24_c01150{left:204.891853pt;}
.x69_c01150{left:212.468653pt;}
.x30_c01150{left:214.778653pt;}
.x18_c01150{left:216.886253pt;}
.x45_c01150{left:223.327853pt;}
.x67_c01150{left:228.858653pt;}
.x4e_c01150{left:233.122253pt;}
.x5a_c01150{left:234.424653pt;}
.x7_c01150{left:244.060653pt;}
.x3c_c01150{left:245.213453pt;}
.x6d_c01150{left:253.071853pt;}
.x46_c01150{left:254.185053pt;}
.x19_c01150{left:255.610653pt;}
.x5e_c01150{left:261.625453pt;}
.x54_c01150{left:263.385453pt;}
.x5f_c01150{left:272.757453pt;}
.x10_c01150{left:273.659453pt;}
.x25_c01150{left:274.763853pt;}
.x6a_c01150{left:275.899053pt;}
.x8_c01150{left:283.792653pt;}
.x6b_c01150{left:294.291053pt;}
.x60_c01150{left:300.635853pt;}
.x68_c01150{left:302.778653pt;}
.x26_c01150{left:303.852253pt;}
.x31_c01150{left:304.846653pt;}
.x1a_c01150{left:313.549853pt;}
.x9_c01150{left:323.207853pt;}
.x27_c01150{left:331.902253pt;}
.x55_c01150{left:338.739853pt;}
.x40_c01150{left:341.775853pt;}
.x3d_c01150{left:344.173853pt;}
.x6c_c01150{left:350.333853pt;}
.x6e_c01150{left:351.447053pt;}
.xa_c01150{left:353.334653pt;}
.x56_c01150{left:354.491853pt;}
.x64_c01150{left:361.144653pt;}
.x3e_c01150{left:362.491053pt;}
.x41_c01150{left:371.876253pt;}
.x1b_c01150{left:373.319453pt;}
.x4f_c01150{left:382.889453pt;}
.x32_c01150{left:392.116253pt;}
.x1c_c01150{left:401.857853pt;}
.x11_c01150{left:403.415453pt;}
.x33_c01150{left:412.250653pt;}
.x6f_c01150{left:419.968253pt;}
.x12_c01150{left:422.691853pt;}
.xb_c01150{left:432.244253pt;}
.x28_c01150{left:433.243053pt;}
.x65_c01150{left:440.877053pt;}
.x13_c01150{left:442.641453pt;}
.x2d_c01150{left:450.473453pt;}
.x47_c01150{left:451.824253pt;}
.x5b_c01150{left:460.245853pt;}
.xc_c01150{left:461.939853pt;}
.x61_c01150{left:465.503853pt;}
.x1d_c01150{left:471.153453pt;}
.x62_c01150{left:480.675053pt;}
.x14_c01150{left:482.241453pt;}
.x42_c01150{left:488.379453pt;}
.x50_c01150{left:489.831453pt;}
.x2e_c01150{left:491.050253pt;}
.x70_c01150{left:492.220653pt;}
.x1e_c01150{left:500.479453pt;}
.x29_c01150{left:501.605853pt;}
.xd_c01150{left:510.454253pt;}
.x58_c01150{left:519.007853pt;}
.x48_c01150{left:520.503853pt;}
.x34_c01150{left:529.862653pt;}
.x2a_c01150{left:531.688653pt;}
.x51_c01150{left:537.941053pt;}
.x5c_c01150{left:539.305053pt;}
.x52_c01150{left:548.382253pt;}
.x1f_c01150{left:549.772653pt;}
.x3b_c01150{left:559.514253pt;}
.x35_c01150{left:560.662653pt;}
.x5d_c01150{left:566.976653pt;}
.x2f_c01150{left:569.304253pt;}
.x20_c01150{left:578.143853pt;}
.x2b_c01150{left:579.499053pt;}
.x53_c01150{left:587.287053pt;}
.x39_c01150{left:588.536653pt;}
.x36_c01150{left:590.437453pt;}
.x66_c01150{left:597.807453pt;}
.x15_c01150{left:599.268253pt;}
.x49_c01150{left:607.509453pt;}
.x37_c01150{left:609.630253pt;}
.x21_c01150{left:617.708653pt;}
.x43_c01150{left:619.640253pt;}
.x2c_c01150{left:621.048253pt;}
.x4_c01150{left:622.262653pt;}
.x59_c01150{left:625.237053pt;}
.xe_c01150{left:628.132253pt;}
.x4a_c01150{left:637.653853pt;}
.x5_c01150{left:644.284653pt;}
.x63_c01150{left:669.905853pt;}
}





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

.ir_c01151:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01151{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01151;src:url('chunks/assets/font_fa077943a16d5e74c823829e.woff2')format("woff");}.ff1_c01151{font-family:ff1_c01151;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01151;src:url('chunks/assets/font_8edbbae92b075df45282192a.woff2')format("woff");}.ff2_c01151{font-family:ff2_c01151;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01151;src:url('chunks/assets/font_f0be971f68987094b7590951.woff2')format("woff");}.ff3_c01151{font-family:ff3_c01151;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01151;src:url('chunks/assets/font_b24ed7a062745e8186b7b625.woff2')format("woff");}.ff4_c01151{font-family:ff4_c01151;line-height:0.666000;font-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_c01151{transform:matrix(0.108107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108107,0.000000,0.000000,0.250000,0,0);}
.m22_c01151{transform:matrix(0.147367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147367,0.000000,0.000000,0.250000,0,0);}
.m9_c01151{transform:matrix(0.158918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158918,0.000000,0.000000,0.250000,0,0);}
.m62_c01151{transform:matrix(0.176588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176588,0.000000,0.000000,0.250000,0,0);}
.md_c01151{transform:matrix(0.186160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186160,0.000000,0.000000,0.250000,0,0);}
.m35_c01151{transform:matrix(0.193453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193453,0.000000,0.000000,0.250000,0,0);}
.me_c01151{transform:matrix(0.207422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207422,0.000000,0.000000,0.250000,0,0);}
.m8_c01151{transform:matrix(0.212713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212713,0.000000,0.000000,0.250000,0,0);}
.m29_c01151{transform:matrix(0.229409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229409,0.000000,0.000000,0.250000,0,0);}
.m93_c01151{transform:matrix(0.235372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235372,0.000000,0.000000,0.250000,0,0);}
.m47_c01151{transform:matrix(0.237156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237156,0.000000,0.000000,0.250000,0,0);}
.m10_c01151{transform:matrix(0.237734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237734,0.000000,0.000000,0.250000,0,0);}
.m12_c01151{transform:matrix(0.240459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240459,0.000000,0.000000,0.250000,0,0);}
.m49_c01151{transform:matrix(0.245050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245050,0.000000,0.000000,0.250000,0,0);}
.m2_c01151{transform:matrix(0.248354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248354,0.000000,0.000000,0.250000,0,0);}
.mf_c01151{transform:matrix(0.249332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249332,0.000000,0.000000,0.250000,0,0);}
.m0_c01151{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m89_c01151{transform:matrix(0.250365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250365,0.000000,0.000000,0.250000,0,0);}
.m21_c01151{transform:matrix(0.254411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254411,0.000000,0.000000,0.250000,0,0);}
.m13_c01151{transform:matrix(0.254542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254542,0.000000,0.000000,0.250000,0,0);}
.ma_c01151{transform:matrix(0.256225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256225,0.000000,0.000000,0.250000,0,0);}
.m36_c01151{transform:matrix(0.257022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257022,0.000000,0.000000,0.250000,0,0);}
.m75_c01151{transform:matrix(0.262601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262601,0.000000,0.000000,0.250000,0,0);}
.m8a_c01151{transform:matrix(0.264767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264767,0.000000,0.000000,0.250000,0,0);}
.m24_c01151{transform:matrix(0.265622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265622,0.000000,0.000000,0.250000,0,0);}
.m1_c01151{transform:matrix(0.269761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269761,0.000000,0.000000,0.250000,0,0);}
.m1b_c01151{transform:matrix(0.271351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271351,0.000000,0.000000,0.250000,0,0);}
.m6e_c01151{transform:matrix(0.271367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271367,0.000000,0.000000,0.250000,0,0);}
.m40_c01151{transform:matrix(0.272522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272522,0.000000,0.000000,0.250000,0,0);}
.m87_c01151{transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);}
.m99_c01151{transform:matrix(0.275442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275442,0.000000,0.000000,0.250000,0,0);}
.m3c_c01151{transform:matrix(0.276450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276450,0.000000,0.000000,0.250000,0,0);}
.m42_c01151{transform:matrix(0.277625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277625,0.000000,0.000000,0.250000,0,0);}
.m4a_c01151{transform:matrix(0.278005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278005,0.000000,0.000000,0.250000,0,0);}
.m4_c01151{transform:matrix(0.278367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278367,0.000000,0.000000,0.250000,0,0);}
.m43_c01151{transform:matrix(0.280069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280069,0.000000,0.000000,0.250000,0,0);}
.m69_c01151{transform:matrix(0.280385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280385,0.000000,0.000000,0.250000,0,0);}
.m4e_c01151{transform:matrix(0.280816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280816,0.000000,0.000000,0.250000,0,0);}
.m15_c01151{transform:matrix(0.282289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282289,0.000000,0.000000,0.250000,0,0);}
.m1c_c01151{transform:matrix(0.283338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283338,0.000000,0.000000,0.250000,0,0);}
.m97_c01151{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m68_c01151{transform:matrix(0.284007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284007,0.000000,0.000000,0.250000,0,0);}
.m71_c01151{transform:matrix(0.285058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285058,0.000000,0.000000,0.250000,0,0);}
.m4f_c01151{transform:matrix(0.285543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285543,0.000000,0.000000,0.250000,0,0);}
.m2d_c01151{transform:matrix(0.286468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286468,0.000000,0.000000,0.250000,0,0);}
.m66_c01151{transform:matrix(0.287355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287355,0.000000,0.000000,0.250000,0,0);}
.m98_c01151{transform:matrix(0.287391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287391,0.000000,0.000000,0.250000,0,0);}
.m90_c01151{transform:matrix(0.288309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288309,0.000000,0.000000,0.250000,0,0);}
.m63_c01151{transform:matrix(0.288486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288486,0.000000,0.000000,0.250000,0,0);}
.m7f_c01151{transform:matrix(0.288932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288932,0.000000,0.000000,0.250000,0,0);}
.m8c_c01151{transform:matrix(0.289138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289138,0.000000,0.000000,0.250000,0,0);}
.m78_c01151{transform:matrix(0.290640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290640,0.000000,0.000000,0.250000,0,0);}
.m60_c01151{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);}
.m56_c01151{transform:matrix(0.291590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291590,0.000000,0.000000,0.250000,0,0);}
.m80_c01151{transform:matrix(0.293446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293446,0.000000,0.000000,0.250000,0,0);}
.m88_c01151{transform:matrix(0.294310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294310,0.000000,0.000000,0.250000,0,0);}
.m19_c01151{transform:matrix(0.296713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296713,0.000000,0.000000,0.250000,0,0);}
.m41_c01151{transform:matrix(0.297525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297525,0.000000,0.000000,0.250000,0,0);}
.m18_c01151{transform:matrix(0.297669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297669,0.000000,0.000000,0.250000,0,0);}
.m3a_c01151{transform:matrix(0.298307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298307,0.000000,0.000000,0.250000,0,0);}
.m58_c01151{transform:matrix(0.298436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298436,0.000000,0.000000,0.250000,0,0);}
.mc_c01151{transform:matrix(0.299096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299096,0.000000,0.000000,0.250000,0,0);}
.m17_c01151{transform:matrix(0.299898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299898,0.000000,0.000000,0.250000,0,0);}
.m38_c01151{transform:matrix(0.301046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301046,0.000000,0.000000,0.250000,0,0);}
.m3b_c01151{transform:matrix(0.301420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301420,0.000000,0.000000,0.250000,0,0);}
.m7_c01151{transform:matrix(0.301546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301546,0.000000,0.000000,0.250000,0,0);}
.m61_c01151{transform:matrix(0.302427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302427,0.000000,0.000000,0.250000,0,0);}
.m37_c01151{transform:matrix(0.303154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303154,0.000000,0.000000,0.250000,0,0);}
.m9b_c01151{transform:matrix(0.303407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303407,0.000000,0.000000,0.250000,0,0);}
.m5c_c01151{transform:matrix(0.304380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304380,0.000000,0.000000,0.250000,0,0);}
.m79_c01151{transform:matrix(0.305584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305584,0.000000,0.000000,0.250000,0,0);}
.m70_c01151{transform:matrix(0.306186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306186,0.000000,0.000000,0.250000,0,0);}
.m82_c01151{transform:matrix(0.306262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306262,0.000000,0.000000,0.250000,0,0);}
.m86_c01151{transform:matrix(0.307478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307478,0.000000,0.000000,0.250000,0,0);}
.m31_c01151{transform:matrix(0.307793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307793,0.000000,0.000000,0.250000,0,0);}
.m4b_c01151{transform:matrix(0.308048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308048,0.000000,0.000000,0.250000,0,0);}
.m1a_c01151{transform:matrix(0.308812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308812,0.000000,0.000000,0.250000,0,0);}
.m5f_c01151{transform:matrix(0.309440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309440,0.000000,0.000000,0.250000,0,0);}
.m2c_c01151{transform:matrix(0.309721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309721,0.000000,0.000000,0.250000,0,0);}
.m72_c01151{transform:matrix(0.310007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310007,0.000000,0.000000,0.250000,0,0);}
.m46_c01151{transform:matrix(0.310222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310222,0.000000,0.000000,0.250000,0,0);}
.m14_c01151{transform:matrix(0.310406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310406,0.000000,0.000000,0.250000,0,0);}
.m1e_c01151{transform:matrix(0.311296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311296,0.000000,0.000000,0.250000,0,0);}
.m7c_c01151{transform:matrix(0.312577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312577,0.000000,0.000000,0.250000,0,0);}
.m4d_c01151{transform:matrix(0.312797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312797,0.000000,0.000000,0.250000,0,0);}
.m23_c01151{transform:matrix(0.313175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313175,0.000000,0.000000,0.250000,0,0);}
.m67_c01151{transform:matrix(0.313661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313661,0.000000,0.000000,0.250000,0,0);}
.m11_c01151{transform:matrix(0.313697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313697,0.000000,0.000000,0.250000,0,0);}
.m95_c01151{transform:matrix(0.314276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314276,0.000000,0.000000,0.250000,0,0);}
.m2a_c01151{transform:matrix(0.314577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314577,0.000000,0.000000,0.250000,0,0);}
.m3_c01151{transform:matrix(0.314639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314639,0.000000,0.000000,0.250000,0,0);}
.m45_c01151{transform:matrix(0.315840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315840,0.000000,0.000000,0.250000,0,0);}
.m6c_c01151{transform:matrix(0.316012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316012,0.000000,0.000000,0.250000,0,0);}
.m2f_c01151{transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316306,0.000000,0.000000,0.250000,0,0);}
.m6_c01151{transform:matrix(0.316762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316762,0.000000,0.000000,0.250000,0,0);}
.m7d_c01151{transform:matrix(0.317123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317123,0.000000,0.000000,0.250000,0,0);}
.m81_c01151{transform:matrix(0.317716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317716,0.000000,0.000000,0.250000,0,0);}
.m9d_c01151{transform:matrix(0.318134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318134,0.000000,0.000000,0.250000,0,0);}
.m50_c01151{transform:matrix(0.318232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318232,0.000000,0.000000,0.250000,0,0);}
.m6b_c01151{transform:matrix(0.318454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318454,0.000000,0.000000,0.250000,0,0);}
.m52_c01151{transform:matrix(0.318550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318550,0.000000,0.000000,0.250000,0,0);}
.m57_c01151{transform:matrix(0.319374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319374,0.000000,0.000000,0.250000,0,0);}
.m91_c01151{transform:matrix(0.319397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319397,0.000000,0.000000,0.250000,0,0);}
.m73_c01151{transform:matrix(0.319577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319577,0.000000,0.000000,0.250000,0,0);}
.m76_c01151{transform:matrix(0.320107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320107,0.000000,0.000000,0.250000,0,0);}
.m96_c01151{transform:matrix(0.321249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321249,0.000000,0.000000,0.250000,0,0);}
.m3d_c01151{transform:matrix(0.322018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322018,0.000000,0.000000,0.250000,0,0);}
.m34_c01151{transform:matrix(0.322859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322859,0.000000,0.000000,0.250000,0,0);}
.m7b_c01151{transform:matrix(0.324514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324514,0.000000,0.000000,0.250000,0,0);}
.m30_c01151{transform:matrix(0.325421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325421,0.000000,0.000000,0.250000,0,0);}
.m54_c01151{transform:matrix(0.325597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325597,0.000000,0.000000,0.250000,0,0);}
.m7a_c01151{transform:matrix(0.326918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326918,0.000000,0.000000,0.250000,0,0);}
.m2b_c01151{transform:matrix(0.327648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327648,0.000000,0.000000,0.250000,0,0);}
.m5e_c01151{transform:matrix(0.327818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327818,0.000000,0.000000,0.250000,0,0);}
.m1f_c01151{transform:matrix(0.328029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328029,0.000000,0.000000,0.250000,0,0);}
.m28_c01151{transform:matrix(0.328100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328100,0.000000,0.000000,0.250000,0,0);}
.m65_c01151{transform:matrix(0.328717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328717,0.000000,0.000000,0.250000,0,0);}
.m27_c01151{transform:matrix(0.328849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328849,0.000000,0.000000,0.250000,0,0);}
.m8d_c01151{transform:matrix(0.329754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329754,0.000000,0.000000,0.250000,0,0);}
.m6f_c01151{transform:matrix(0.330418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330418,0.000000,0.000000,0.250000,0,0);}
.m33_c01151{transform:matrix(0.330486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330486,0.000000,0.000000,0.250000,0,0);}
.m20_c01151{transform:matrix(0.331804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331804,0.000000,0.000000,0.250000,0,0);}
.m32_c01151{transform:matrix(0.333072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333072,0.000000,0.000000,0.250000,0,0);}
.m92_c01151{transform:matrix(0.333120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333120,0.000000,0.000000,0.250000,0,0);}
.m44_c01151{transform:matrix(0.333647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333647,0.000000,0.000000,0.250000,0,0);}
.m5a_c01151{transform:matrix(0.335417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335417,0.000000,0.000000,0.250000,0,0);}
.m8e_c01151{transform:matrix(0.335505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335505,0.000000,0.000000,0.250000,0,0);}
.m55_c01151{transform:matrix(0.335788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335788,0.000000,0.000000,0.250000,0,0);}
.m85_c01151{transform:matrix(0.337215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337215,0.000000,0.000000,0.250000,0,0);}
.m59_c01151{transform:matrix(0.338548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338548,0.000000,0.000000,0.250000,0,0);}
.m84_c01151{transform:matrix(0.339230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339230,0.000000,0.000000,0.250000,0,0);}
.m26_c01151{transform:matrix(0.339522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339522,0.000000,0.000000,0.250000,0,0);}
.m94_c01151{transform:matrix(0.343097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343097,0.000000,0.000000,0.250000,0,0);}
.m77_c01151{transform:matrix(0.345190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345190,0.000000,0.000000,0.250000,0,0);}
.m53_c01151{transform:matrix(0.345327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345327,0.000000,0.000000,0.250000,0,0);}
.m9e_c01151{transform:matrix(0.345410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345410,0.000000,0.000000,0.250000,0,0);}
.m5b_c01151{transform:matrix(0.348825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348825,0.000000,0.000000,0.250000,0,0);}
.m9c_c01151{transform:matrix(0.349631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349631,0.000000,0.000000,0.250000,0,0);}
.m4c_c01151{transform:matrix(0.351255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351255,0.000000,0.000000,0.250000,0,0);}
.m51_c01151{transform:matrix(0.355431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355431,0.000000,0.000000,0.250000,0,0);}
.m16_c01151{transform:matrix(0.357635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357635,0.000000,0.000000,0.250000,0,0);}
.m3e_c01151{transform:matrix(0.358577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358577,0.000000,0.000000,0.250000,0,0);}
.m3f_c01151{transform:matrix(0.359759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359759,0.000000,0.000000,0.250000,0,0);}
.m6a_c01151{transform:matrix(0.360956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360956,0.000000,0.000000,0.250000,0,0);}
.m7e_c01151{transform:matrix(0.362629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362629,0.000000,0.000000,0.250000,0,0);}
.m8b_c01151{transform:matrix(0.363192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363192,0.000000,0.000000,0.250000,0,0);}
.m2e_c01151{transform:matrix(0.368768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368768,0.000000,0.000000,0.250000,0,0);}
.m5_c01151{transform:matrix(0.372865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372865,0.000000,0.000000,0.250000,0,0);}
.m6d_c01151{transform:matrix(0.375302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375302,0.000000,0.000000,0.250000,0,0);}
.m39_c01151{transform:matrix(0.378106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378106,0.000000,0.000000,0.250000,0,0);}
.m48_c01151{transform:matrix(0.380725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380725,0.000000,0.000000,0.250000,0,0);}
.mb_c01151{transform:matrix(0.381275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381275,0.000000,0.000000,0.250000,0,0);}
.m64_c01151{transform:matrix(0.385478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385478,0.000000,0.000000,0.250000,0,0);}
.m83_c01151{transform:matrix(0.386312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386312,0.000000,0.000000,0.250000,0,0);}
.m8f_c01151{transform:matrix(0.387823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387823,0.000000,0.000000,0.250000,0,0);}
.m5d_c01151{transform:matrix(0.408283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408283,0.000000,0.000000,0.250000,0,0);}
.m1d_c01151{transform:matrix(0.414764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414764,0.000000,0.000000,0.250000,0,0);}
.m25_c01151{transform:matrix(0.421245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421245,0.000000,0.000000,0.250000,0,0);}
.m9a_c01151{transform:matrix(0.434206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434206,0.000000,0.000000,0.250000,0,0);}
.v0_c01151{vertical-align:0.000000px;}
.ls3_c01151{letter-spacing:-3.014550px;}
.ls19_c01151{letter-spacing:-2.993767px;}
.ls10_c01151{letter-spacing:-2.550240px;}
.ls18_c01151{letter-spacing:-2.542954px;}
.ls5_c01151{letter-spacing:-2.494800px;}
.ls12_c01151{letter-spacing:-2.480940px;}
.lse_c01151{letter-spacing:-2.363130px;}
.ls1_c01151{letter-spacing:0.000000px;}
.ls0_c01151{letter-spacing:1.635920px;}
.ls13_c01151{letter-spacing:1.930500px;}
.ls7_c01151{letter-spacing:2.084346px;}
.lsc_c01151{letter-spacing:2.392797px;}
.ls9_c01151{letter-spacing:2.567750px;}
.lsb_c01151{letter-spacing:3.019825px;}
.lsf_c01151{letter-spacing:3.267000px;}
.ls1a_c01151{letter-spacing:3.316500px;}
.lsd_c01151{letter-spacing:3.375900px;}
.ls16_c01151{letter-spacing:3.504610px;}
.ls15_c01151{letter-spacing:3.564000px;}
.ls8_c01151{letter-spacing:3.603610px;}
.ls4_c01151{letter-spacing:3.643200px;}
.lsa_c01151{letter-spacing:3.762000px;}
.ls17_c01151{letter-spacing:3.920400px;}
.ls14_c01151{letter-spacing:3.940200px;}
.ls2_c01151{letter-spacing:4.306500px;}
.ls6_c01151{letter-spacing:4.435200px;}
.ls11_c01151{letter-spacing:59.875398px;}
.sc__c01151{text-shadow:none;}
.sc0_c01151{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01151{-webkit-text-stroke:0px transparent;}
.sc0_c01151{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01151{word-spacing:0.000000px;}
._0_c01151{width:82.077413px;}
.fc0_c01151{color:transparent;}
.fs17_c01151{font-size:17.028000px;}
.fs0_c01151{font-size:22.572000px;}
.fs6_c01151{font-size:27.720000px;}
.fsf_c01151{font-size:38.610000px;}
.fs14_c01151{font-size:57.024000px;}
.fsb_c01151{font-size:59.875398px;}
.fsa_c01151{font-size:65.340000px;}
.fs16_c01151{font-size:66.330000px;}
.fs9_c01151{font-size:67.518000px;}
.fs11_c01151{font-size:70.092198px;}
.fsd_c01151{font-size:70.884000px;}
.fs3_c01151{font-size:71.280000px;}
.fs5_c01151{font-size:72.072198px;}
.fs2_c01151{font-size:72.864000px;}
.fs13_c01151{font-size:75.042198px;}
.fs8_c01151{font-size:75.240000px;}
.fse_c01151{font-size:76.032198px;}
.fs12_c01151{font-size:78.408000px;}
.fsc_c01151{font-size:78.804000px;}
.fs7_c01151{font-size:79.992198px;}
.fs10_c01151{font-size:84.546198px;}
.fs15_c01151{font-size:85.536198px;}
.fs1_c01151{font-size:86.130000px;}
.fs4_c01151{font-size:88.704000px;}
.y0_c01151{bottom:0.000000px;}
.y1_c01151{bottom:76.500000px;}
.y1d_c01151{bottom:121.800735px;}
.y1b_c01151{bottom:125.008335px;}
.y1c_c01151{bottom:137.833785px;}
.y1a_c01151{bottom:157.435785px;}
.y19_c01151{bottom:190.229535px;}
.y17_c01151{bottom:223.731135px;}
.y18_c01151{bottom:224.443935px;}
.y16_c01151{bottom:352.386585px;}
.y15_c01151{bottom:384.462585px;}
.y14_c01151{bottom:416.543535px;}
.y13_c01151{bottom:449.332335px;}
.y12_c01151{bottom:480.690585px;}
.y2_c01151{bottom:494.233785px;}
.y11_c01151{bottom:513.127935px;}
.y10_c01151{bottom:544.134735px;}
.yf_c01151{bottom:544.491135px;}
.ye_c01151{bottom:575.849385px;}
.yd_c01151{bottom:607.212585px;}
.yc_c01151{bottom:639.649935px;}
.yb_c01151{bottom:671.008185px;}
.ya_c01151{bottom:703.440585px;}
.y9_c01151{bottom:735.877935px;}
.y8_c01151{bottom:767.592585px;}
.y7_c01151{bottom:800.381385px;}
.y5_c01151{bottom:862.751385px;}
.y6_c01151{bottom:866.676735px;}
.y4_c01151{bottom:927.972585px;}
.y3_c01151{bottom:1075.878585px;}
.h1a_c01151{height:17.759672px;}
.h2_c01151{height:23.541891px;}
.h8_c01151{height:28.911094px;}
.he_c01151{height:39.877015px;}
.h12_c01151{height:40.269023px;}
.h17_c01151{height:59.474250px;}
.hc_c01151{height:68.147578px;}
.h14_c01151{height:68.791659px;}
.h19_c01151{height:69.180117px;}
.h10_c01151{height:69.568770px;}
.hb_c01151{height:70.419164px;}
.h7_c01151{height:70.734921px;}
.h4_c01151{height:71.512031px;}
.ha_c01151{height:73.843945px;}
.h5_c01151{height:74.342813px;}
.h11_c01151{height:74.621444px;}
.hd_c01151{height:75.994875px;}
.h15_c01151{height:76.953164px;}
.hf_c01151{height:77.341816px;}
.h16_c01151{height:78.266667px;}
.h9_c01151{height:78.507968px;}
.h13_c01151{height:82.977470px;}
.h18_c01151{height:83.949101px;}
.h3_c01151{height:84.531885px;}
.h6_c01151{height:87.058125px;}
.h1_c01151{height:1110.000000px;}
.h0_c01151{height:1263.000000px;}
.w1_c01151{width:775.500000px;}
.w0_c01151{width:892.500000px;}
.x0_c01151{left:0.000000px;}
.x2_c01151{left:56.872185px;}
.x1_c01151{left:58.500000px;}
.x60_c01151{left:90.992535px;}
.x11_c01151{left:92.799285px;}
.x40_c01151{left:145.358385px;}
.x12_c01151{left:147.051285px;}
.x5_c01151{left:149.085735px;}
.x4d_c01151{left:179.364885px;}
.x13_c01151{left:180.706335px;}
.x2d_c01151{left:191.848785px;}
.x6_c01151{left:203.649585px;}
.x64_c01151{left:205.525635px;}
.x57_c01151{left:212.039835px;}
.x35_c01151{left:213.985185px;}
.x24_c01151{left:216.054285px;}
.x14_c01151{left:224.989035px;}
.x41_c01151{left:226.028535px;}
.x7_c01151{left:235.681035px;}
.x36_c01151{left:245.541435px;}
.x3b_c01151{left:247.130385px;}
.x15_c01151{left:257.584785px;}
.x1a_c01151{left:259.213335px;}
.x21_c01151{left:269.306385px;}
.x8_c01151{left:279.706335px;}
.x37_c01151{left:280.993335px;}
.x42_c01151{left:288.972735px;}
.x1b_c01151{left:290.893335px;}
.x3c_c01151{left:292.056585px;}
.x58_c01151{left:293.526735px;}
.x29_c01151{left:302.184285px;}
.x52_c01151{left:303.599985px;}
.x16_c01151{left:315.272085px;}
.x61_c01151{left:323.201985px;}
.x25_c01151{left:324.751335px;}
.x2a_c01151{left:325.845285px;}
.x53_c01151{left:334.601835px;}
.x2e_c01151{left:336.230385px;}
.x3d_c01151{left:347.278785px;}
.x17_c01151{left:357.752985px;}
.x1c_c01151{left:358.950885px;}
.x2f_c01151{left:369.241935px;}
.x59_c01151{left:371.098185px;}
.x38_c01151{left:379.097385px;}
.x22_c01151{left:380.775435px;}
.x18_c01151{left:381.785235px;}
.x4e_c01151{left:389.883435px;}
.x9_c01151{left:392.140635px;}
.x49_c01151{left:402.100035px;}
.x1d_c01151{left:414.267135px;}
.x5a_c01151{left:422.672235px;}
.xa_c01151{left:426.275835px;}
.x5e_c01151{left:434.755185px;}
.x46_c01151{left:436.344135px;}
.x23_c01151{left:445.729335px;}
.xb_c01151{left:449.214135px;}
.x3e_c01151{left:457.574685px;}
.xc_c01151{left:469.890285px;}
.x3f_c01151{left:481.240635px;}
.xd_c01151{left:491.363385px;}
.x30_c01151{left:501.951435px;}
.x63_c01151{left:509.856585px;}
.x43_c01151{left:512.079135px;}
.x1e_c01151{left:515.098635px;}
.x39_c01151{left:525.691635px;}
.x31_c01151{left:534.235335px;}
.xe_c01151{left:535.680735px;}
.x54_c01151{left:546.016335px;}
.x5f_c01151{left:547.179585px;}
.x47_c01151{left:548.501235px;}
.x5b_c01151{left:556.450935px;}
.x1f_c01151{left:557.891385px;}
.x32_c01151{left:567.266685px;}
.x4f_c01151{left:579.290235px;}
.xf_c01151{left:581.136585px;}
.x4a_c01151{left:591.021735px;}
.x26_c01151{left:592.387935px;}
.x55_c01151{left:599.773335px;}
.x2b_c01151{left:601.243485px;}
.x48_c01151{left:613.702635px;}
.x50_c01151{left:622.226535px;}
.x4b_c01151{left:623.978835px;}
.x5c_c01151{left:633.690735px;}
.x2c_c01151{left:635.210385px;}
.x33_c01151{left:656.614185px;}
.x51_c01151{left:657.876435px;}
.x10_c01151{left:659.064435px;}
.x20_c01151{left:667.395285px;}
.x3a_c01151{left:668.662485px;}
.x5d_c01151{left:677.141835px;}
.x44_c01151{left:678.527835px;}
.x4c_c01151{left:679.710885px;}
.x27_c01151{left:690.447435px;}
.x19_c01151{left:700.560285px;}
.x3_c01151{left:701.812635px;}
.x34_c01151{left:703.451085px;}
.x62_c01151{left:710.608785px;}
.x45_c01151{left:713.252085px;}
.x28_c01151{left:722.988735px;}
.x4_c01151{left:724.092585px;}
.x56_c01151{left:755.391435px;}
@media print{
.v0_c01151{vertical-align:0.000000pt;}
.ls3_c01151{letter-spacing:-2.679600pt;}
.ls19_c01151{letter-spacing:-2.661126pt;}
.ls10_c01151{letter-spacing:-2.266880pt;}
.ls18_c01151{letter-spacing:-2.260403pt;}
.ls5_c01151{letter-spacing:-2.217600pt;}
.ls12_c01151{letter-spacing:-2.205280pt;}
.lse_c01151{letter-spacing:-2.100560pt;}
.ls1_c01151{letter-spacing:0.000000pt;}
.ls0_c01151{letter-spacing:1.454151pt;}
.ls13_c01151{letter-spacing:1.716000pt;}
.ls7_c01151{letter-spacing:1.852752pt;}
.lsc_c01151{letter-spacing:2.126931pt;}
.ls9_c01151{letter-spacing:2.282444pt;}
.lsb_c01151{letter-spacing:2.684289pt;}
.lsf_c01151{letter-spacing:2.904000pt;}
.ls1a_c01151{letter-spacing:2.948000pt;}
.lsd_c01151{letter-spacing:3.000800pt;}
.ls16_c01151{letter-spacing:3.115209pt;}
.ls15_c01151{letter-spacing:3.168000pt;}
.ls8_c01151{letter-spacing:3.203209pt;}
.ls4_c01151{letter-spacing:3.238400pt;}
.lsa_c01151{letter-spacing:3.344000pt;}
.ls17_c01151{letter-spacing:3.484800pt;}
.ls14_c01151{letter-spacing:3.502400pt;}
.ls2_c01151{letter-spacing:3.828000pt;}
.ls6_c01151{letter-spacing:3.942400pt;}
.ls11_c01151{letter-spacing:53.222576pt;}
.ws0_c01151{word-spacing:0.000000pt;}
._0_c01151{width:72.957701pt;}
.fs17_c01151{font-size:15.136000pt;}
.fs0_c01151{font-size:20.064000pt;}
.fs6_c01151{font-size:24.640000pt;}
.fsf_c01151{font-size:34.320000pt;}
.fs14_c01151{font-size:50.688000pt;}
.fsb_c01151{font-size:53.222576pt;}
.fsa_c01151{font-size:58.080000pt;}
.fs16_c01151{font-size:58.960000pt;}
.fs9_c01151{font-size:60.016000pt;}
.fs11_c01151{font-size:62.304176pt;}
.fsd_c01151{font-size:63.008000pt;}
.fs3_c01151{font-size:63.360000pt;}
.fs5_c01151{font-size:64.064176pt;}
.fs2_c01151{font-size:64.768000pt;}
.fs13_c01151{font-size:66.704176pt;}
.fs8_c01151{font-size:66.880000pt;}
.fse_c01151{font-size:67.584176pt;}
.fs12_c01151{font-size:69.696000pt;}
.fsc_c01151{font-size:70.048000pt;}
.fs7_c01151{font-size:71.104176pt;}
.fs10_c01151{font-size:75.152176pt;}
.fs15_c01151{font-size:76.032176pt;}
.fs1_c01151{font-size:76.560000pt;}
.fs4_c01151{font-size:78.848000pt;}
.y0_c01151{bottom:0.000000pt;}
.y1_c01151{bottom:68.000000pt;}
.y1d_c01151{bottom:108.267320pt;}
.y1b_c01151{bottom:111.118520pt;}
.y1c_c01151{bottom:122.518920pt;}
.y1a_c01151{bottom:139.942920pt;}
.y19_c01151{bottom:169.092920pt;}
.y17_c01151{bottom:198.872120pt;}
.y18_c01151{bottom:199.505720pt;}
.y16_c01151{bottom:313.232520pt;}
.y15_c01151{bottom:341.744520pt;}
.y14_c01151{bottom:370.260920pt;}
.y13_c01151{bottom:399.406520pt;}
.y12_c01151{bottom:427.280520pt;}
.y2_c01151{bottom:439.318920pt;}
.y11_c01151{bottom:456.113720pt;}
.y10_c01151{bottom:483.675320pt;}
.yf_c01151{bottom:483.992120pt;}
.ye_c01151{bottom:511.866120pt;}
.yd_c01151{bottom:539.744520pt;}
.yc_c01151{bottom:568.577720pt;}
.yb_c01151{bottom:596.451720pt;}
.ya_c01151{bottom:625.280520pt;}
.y9_c01151{bottom:654.113720pt;}
.y8_c01151{bottom:682.304520pt;}
.y7_c01151{bottom:711.450120pt;}
.y5_c01151{bottom:766.890120pt;}
.y6_c01151{bottom:770.379320pt;}
.y4_c01151{bottom:824.864520pt;}
.y3_c01151{bottom:956.336520pt;}
.h1a_c01151{height:15.786375pt;}
.h2_c01151{height:20.926125pt;}
.h8_c01151{height:25.698750pt;}
.he_c01151{height:35.446236pt;}
.h12_c01151{height:35.794688pt;}
.h17_c01151{height:52.866000pt;}
.hc_c01151{height:60.575625pt;}
.h14_c01151{height:61.148141pt;}
.h19_c01151{height:61.493438pt;}
.h10_c01151{height:61.838906pt;}
.hb_c01151{height:62.594813pt;}
.h7_c01151{height:62.875485pt;}
.h4_c01151{height:63.566250pt;}
.ha_c01151{height:65.639063pt;}
.h5_c01151{height:66.082500pt;}
.h11_c01151{height:66.330173pt;}
.hd_c01151{height:67.551000pt;}
.h15_c01151{height:68.402813pt;}
.hf_c01151{height:68.748281pt;}
.h16_c01151{height:69.570371pt;}
.h9_c01151{height:69.784860pt;}
.h13_c01151{height:73.757751pt;}
.h18_c01151{height:74.621423pt;}
.h3_c01151{height:75.139453pt;}
.h6_c01151{height:77.385000pt;}
.h1_c01151{height:986.666667pt;}
.h0_c01151{height:1122.666667pt;}
.w1_c01151{width:689.333333pt;}
.w0_c01151{width:793.333333pt;}
.x0_c01151{left:0.000000pt;}
.x2_c01151{left:50.553053pt;}
.x1_c01151{left:52.000000pt;}
.x60_c01151{left:80.882253pt;}
.x11_c01151{left:82.488253pt;}
.x40_c01151{left:129.207453pt;}
.x12_c01151{left:130.712253pt;}
.x5_c01151{left:132.520653pt;}
.x4d_c01151{left:159.435453pt;}
.x13_c01151{left:160.627853pt;}
.x2d_c01151{left:170.532253pt;}
.x6_c01151{left:181.021853pt;}
.x64_c01151{left:182.689453pt;}
.x57_c01151{left:188.479853pt;}
.x35_c01151{left:190.209053pt;}
.x24_c01151{left:192.048253pt;}
.x14_c01151{left:199.990253pt;}
.x41_c01151{left:200.914253pt;}
.x7_c01151{left:209.494253pt;}
.x36_c01151{left:218.259053pt;}
.x3b_c01151{left:219.671453pt;}
.x15_c01151{left:228.964253pt;}
.x1a_c01151{left:230.411853pt;}
.x21_c01151{left:239.383453pt;}
.x8_c01151{left:248.627853pt;}
.x37_c01151{left:249.771853pt;}
.x42_c01151{left:256.864653pt;}
.x1b_c01151{left:258.571853pt;}
.x3c_c01151{left:259.605853pt;}
.x58_c01151{left:260.912653pt;}
.x29_c01151{left:268.608253pt;}
.x52_c01151{left:269.866653pt;}
.x16_c01151{left:280.241853pt;}
.x61_c01151{left:287.290653pt;}
.x25_c01151{left:288.667853pt;}
.x2a_c01151{left:289.640253pt;}
.x53_c01151{left:297.423853pt;}
.x2e_c01151{left:298.871453pt;}
.x3d_c01151{left:308.692253pt;}
.x17_c01151{left:318.002653pt;}
.x1c_c01151{left:319.067453pt;}
.x2f_c01151{left:328.215053pt;}
.x59_c01151{left:329.865053pt;}
.x38_c01151{left:336.975453pt;}
.x22_c01151{left:338.467053pt;}
.x18_c01151{left:339.364653pt;}
.x4e_c01151{left:346.563053pt;}
.x9_c01151{left:348.569453pt;}
.x49_c01151{left:357.422253pt;}
.x1d_c01151{left:368.237453pt;}
.x5a_c01151{left:375.708653pt;}
.xa_c01151{left:378.911853pt;}
.x5e_c01151{left:386.449053pt;}
.x46_c01151{left:387.861453pt;}
.x23_c01151{left:396.203853pt;}
.xb_c01151{left:399.301453pt;}
.x3e_c01151{left:406.733053pt;}
.xc_c01151{left:417.680253pt;}
.x3f_c01151{left:427.769453pt;}
.xd_c01151{left:436.767453pt;}
.x30_c01151{left:446.179053pt;}
.x63_c01151{left:453.205853pt;}
.x43_c01151{left:455.181453pt;}
.x1e_c01151{left:457.865453pt;}
.x39_c01151{left:467.281453pt;}
.x31_c01151{left:474.875853pt;}
.xe_c01151{left:476.160653pt;}
.x54_c01151{left:485.347853pt;}
.x5f_c01151{left:486.381853pt;}
.x47_c01151{left:487.556653pt;}
.x5b_c01151{left:494.623053pt;}
.x1f_c01151{left:495.903453pt;}
.x32_c01151{left:504.237053pt;}
.x4f_c01151{left:514.924653pt;}
.xf_c01151{left:516.565853pt;}
.x4a_c01151{left:525.352653pt;}
.x26_c01151{left:526.567053pt;}
.x55_c01151{left:533.131853pt;}
.x2b_c01151{left:534.438653pt;}
.x48_c01151{left:545.513453pt;}
.x50_c01151{left:553.090253pt;}
.x4b_c01151{left:554.647853pt;}
.x5c_c01151{left:563.280653pt;}
.x2c_c01151{left:564.631453pt;}
.x33_c01151{left:583.657053pt;}
.x51_c01151{left:584.779053pt;}
.x10_c01151{left:585.835053pt;}
.x20_c01151{left:593.240253pt;}
.x3a_c01151{left:594.366653pt;}
.x5d_c01151{left:601.903853pt;}
.x44_c01151{left:603.135853pt;}
.x4c_c01151{left:604.187453pt;}
.x27_c01151{left:613.731053pt;}
.x19_c01151{left:622.720253pt;}
.x3_c01151{left:623.833453pt;}
.x34_c01151{left:625.289853pt;}
.x62_c01151{left:631.652253pt;}
.x45_c01151{left:634.001853pt;}
.x28_c01151{left:642.656653pt;}
.x4_c01151{left:643.637853pt;}
.x56_c01151{left:671.459053pt;}
}





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

.ir_c01152:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01152{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01152;src:url('chunks/assets/font_4c6d31b238cb57994b821f99.woff2')format("woff");}.ff1_c01152{font-family:ff1_c01152;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01152;src:url('chunks/assets/font_0dfcd028c3e6c546b5c2ff57.woff2')format("woff");}.ff2_c01152{font-family:ff2_c01152;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01152;src:url('chunks/assets/font_7f15953fa8010f18c45c7ddc.woff2')format("woff");}.ff3_c01152{font-family:ff3_c01152;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01152;src:url('chunks/assets/font_4937be7c49a304e995e8a575.woff2')format("woff");}.ff4_c01152{font-family:ff4_c01152;line-height:0.666000;font-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_c01152{transform:matrix(0.072369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072369,0.000000,0.000000,0.250000,0,0);}
.m83_c01152{transform:matrix(0.140466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140466,0.000000,0.000000,0.250000,0,0);}
.m72_c01152{transform:matrix(0.155488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155488,0.000000,0.000000,0.250000,0,0);}
.m63_c01152{transform:matrix(0.159518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159518,0.000000,0.000000,0.250000,0,0);}
.m88_c01152{transform:matrix(0.161285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161285,0.000000,0.000000,0.250000,0,0);}
.me_c01152{transform:matrix(0.162794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162794,0.000000,0.000000,0.250000,0,0);}
.m73_c01152{transform:matrix(0.182926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182926,0.000000,0.000000,0.250000,0,0);}
.m30_c01152{transform:matrix(0.186225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186225,0.000000,0.000000,0.250000,0,0);}
.m43_c01152{transform:matrix(0.204004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204004,0.000000,0.000000,0.250000,0,0);}
.m16_c01152{transform:matrix(0.238273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238273,0.000000,0.000000,0.250000,0,0);}
.m8a_c01152{transform:matrix(0.241118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241118,0.000000,0.000000,0.250000,0,0);}
.m0_c01152{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m7c_c01152{transform:matrix(0.250834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250834,0.000000,0.000000,0.250000,0,0);}
.m24_c01152{transform:matrix(0.251099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251099,0.000000,0.000000,0.250000,0,0);}
.m55_c01152{transform:matrix(0.251543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251543,0.000000,0.000000,0.250000,0,0);}
.m7d_c01152{transform:matrix(0.252620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252620,0.000000,0.000000,0.250000,0,0);}
.m8_c01152{transform:matrix(0.252892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252892,0.000000,0.000000,0.250000,0,0);}
.m22_c01152{transform:matrix(0.257099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257099,0.000000,0.000000,0.250000,0,0);}
.m6d_c01152{transform:matrix(0.257457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257457,0.000000,0.000000,0.250000,0,0);}
.m3c_c01152{transform:matrix(0.261259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261259,0.000000,0.000000,0.250000,0,0);}
.m10_c01152{transform:matrix(0.261946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261946,0.000000,0.000000,0.250000,0,0);}
.m3d_c01152{transform:matrix(0.262243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262243,0.000000,0.000000,0.250000,0,0);}
.m23_c01152{transform:matrix(0.263503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263503,0.000000,0.000000,0.250000,0,0);}
.mf_c01152{transform:matrix(0.264637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264637,0.000000,0.000000,0.250000,0,0);}
.m1_c01152{transform:matrix(0.264712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264712,0.000000,0.000000,0.250000,0,0);}
.m65_c01152{transform:matrix(0.264863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264863,0.000000,0.000000,0.250000,0,0);}
.m68_c01152{transform:matrix(0.266901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266901,0.000000,0.000000,0.250000,0,0);}
.m7_c01152{transform:matrix(0.267184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267184,0.000000,0.000000,0.250000,0,0);}
.m35_c01152{transform:matrix(0.268048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268048,0.000000,0.000000,0.250000,0,0);}
.m19_c01152{transform:matrix(0.268234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268234,0.000000,0.000000,0.250000,0,0);}
.m4_c01152{transform:matrix(0.268582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268582,0.000000,0.000000,0.250000,0,0);}
.m5_c01152{transform:matrix(0.268611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268611,0.000000,0.000000,0.250000,0,0);}
.m56_c01152{transform:matrix(0.269009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269009,0.000000,0.000000,0.250000,0,0);}
.m86_c01152{transform:matrix(0.269386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269386,0.000000,0.000000,0.250000,0,0);}
.m6_c01152{transform:matrix(0.269527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269527,0.000000,0.000000,0.250000,0,0);}
.m2a_c01152{transform:matrix(0.271111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271111,0.000000,0.000000,0.250000,0,0);}
.m47_c01152{transform:matrix(0.272425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272425,0.000000,0.000000,0.250000,0,0);}
.m75_c01152{transform:matrix(0.272565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272565,0.000000,0.000000,0.250000,0,0);}
.m4f_c01152{transform:matrix(0.273170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273170,0.000000,0.000000,0.250000,0,0);}
.m44_c01152{transform:matrix(0.273715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273715,0.000000,0.000000,0.250000,0,0);}
.m40_c01152{transform:matrix(0.273900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273900,0.000000,0.000000,0.250000,0,0);}
.m71_c01152{transform:matrix(0.274978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274978,0.000000,0.000000,0.250000,0,0);}
.m67_c01152{transform:matrix(0.275848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275848,0.000000,0.000000,0.250000,0,0);}
.m50_c01152{transform:matrix(0.275886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275886,0.000000,0.000000,0.250000,0,0);}
.m66_c01152{transform:matrix(0.275905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275905,0.000000,0.000000,0.250000,0,0);}
.mb_c01152{transform:matrix(0.277562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277562,0.000000,0.000000,0.250000,0,0);}
.m13_c01152{transform:matrix(0.278792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278792,0.000000,0.000000,0.250000,0,0);}
.md_c01152{transform:matrix(0.279374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279374,0.000000,0.000000,0.250000,0,0);}
.m34_c01152{transform:matrix(0.279503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279503,0.000000,0.000000,0.250000,0,0);}
.m1e_c01152{transform:matrix(0.279569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279569,0.000000,0.000000,0.250000,0,0);}
.m46_c01152{transform:matrix(0.280331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280331,0.000000,0.000000,0.250000,0,0);}
.m62_c01152{transform:matrix(0.280971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280971,0.000000,0.000000,0.250000,0,0);}
.m6e_c01152{transform:matrix(0.281632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281632,0.000000,0.000000,0.250000,0,0);}
.m9_c01152{transform:matrix(0.281928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281928,0.000000,0.000000,0.250000,0,0);}
.m5b_c01152{transform:matrix(0.282590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282590,0.000000,0.000000,0.250000,0,0);}
.m80_c01152{transform:matrix(0.282708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282708,0.000000,0.000000,0.250000,0,0);}
.m8c_c01152{transform:matrix(0.283367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283367,0.000000,0.000000,0.250000,0,0);}
.m2_c01152{transform:matrix(0.284845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284845,0.000000,0.000000,0.250000,0,0);}
.m5f_c01152{transform:matrix(0.285082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285082,0.000000,0.000000,0.250000,0,0);}
.m61_c01152{transform:matrix(0.286352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286352,0.000000,0.000000,0.250000,0,0);}
.m52_c01152{transform:matrix(0.286817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286817,0.000000,0.000000,0.250000,0,0);}
.m41_c01152{transform:matrix(0.287912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287912,0.000000,0.000000,0.250000,0,0);}
.m76_c01152{transform:matrix(0.288293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288293,0.000000,0.000000,0.250000,0,0);}
.m39_c01152{transform:matrix(0.289604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289604,0.000000,0.000000,0.250000,0,0);}
.m4b_c01152{transform:matrix(0.289912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289912,0.000000,0.000000,0.250000,0,0);}
.m17_c01152{transform:matrix(0.289963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289963,0.000000,0.000000,0.250000,0,0);}
.m8d_c01152{transform:matrix(0.290708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290708,0.000000,0.000000,0.250000,0,0);}
.m2c_c01152{transform:matrix(0.291055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291055,0.000000,0.000000,0.250000,0,0);}
.m4d_c01152{transform:matrix(0.291386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291386,0.000000,0.000000,0.250000,0,0);}
.m5c_c01152{transform:matrix(0.291762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291762,0.000000,0.000000,0.250000,0,0);}
.m84_c01152{transform:matrix(0.292025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292025,0.000000,0.000000,0.250000,0,0);}
.m82_c01152{transform:matrix(0.292573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292573,0.000000,0.000000,0.250000,0,0);}
.m36_c01152{transform:matrix(0.292858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292858,0.000000,0.000000,0.250000,0,0);}
.m81_c01152{transform:matrix(0.292969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292969,0.000000,0.000000,0.250000,0,0);}
.m21_c01152{transform:matrix(0.293056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293056,0.000000,0.000000,0.250000,0,0);}
.m48_c01152{transform:matrix(0.294297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294297,0.000000,0.000000,0.250000,0,0);}
.m69_c01152{transform:matrix(0.295806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295806,0.000000,0.000000,0.250000,0,0);}
.m64_c01152{transform:matrix(0.295838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295838,0.000000,0.000000,0.250000,0,0);}
.m2f_c01152{transform:matrix(0.296769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296769,0.000000,0.000000,0.250000,0,0);}
.m2e_c01152{transform:matrix(0.297423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297423,0.000000,0.000000,0.250000,0,0);}
.m77_c01152{transform:matrix(0.297438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297438,0.000000,0.000000,0.250000,0,0);}
.m3_c01152{transform:matrix(0.297886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297886,0.000000,0.000000,0.250000,0,0);}
.m6f_c01152{transform:matrix(0.298638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298638,0.000000,0.000000,0.250000,0,0);}
.m45_c01152{transform:matrix(0.299461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299461,0.000000,0.000000,0.250000,0,0);}
.m3a_c01152{transform:matrix(0.299864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299864,0.000000,0.000000,0.250000,0,0);}
.m7e_c01152{transform:matrix(0.300101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300101,0.000000,0.000000,0.250000,0,0);}
.m7f_c01152{transform:matrix(0.300112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300112,0.000000,0.000000,0.250000,0,0);}
.m70_c01152{transform:matrix(0.300276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300276,0.000000,0.000000,0.250000,0,0);}
.m85_c01152{transform:matrix(0.300803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300803,0.000000,0.000000,0.250000,0,0);}
.m6c_c01152{transform:matrix(0.300813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300813,0.000000,0.000000,0.250000,0,0);}
.m58_c01152{transform:matrix(0.301983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301983,0.000000,0.000000,0.250000,0,0);}
.m78_c01152{transform:matrix(0.302382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302382,0.000000,0.000000,0.250000,0,0);}
.m8b_c01152{transform:matrix(0.302612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302612,0.000000,0.000000,0.250000,0,0);}
.m20_c01152{transform:matrix(0.302837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302837,0.000000,0.000000,0.250000,0,0);}
.m60_c01152{transform:matrix(0.303347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303347,0.000000,0.000000,0.250000,0,0);}
.m79_c01152{transform:matrix(0.303765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303765,0.000000,0.000000,0.250000,0,0);}
.m74_c01152{transform:matrix(0.306071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306071,0.000000,0.000000,0.250000,0,0);}
.m5a_c01152{transform:matrix(0.306920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306920,0.000000,0.000000,0.250000,0,0);}
.m1b_c01152{transform:matrix(0.306995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306995,0.000000,0.000000,0.250000,0,0);}
.ma_c01152{transform:matrix(0.307562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307562,0.000000,0.000000,0.250000,0,0);}
.m12_c01152{transform:matrix(0.307646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307646,0.000000,0.000000,0.250000,0,0);}
.m2d_c01152{transform:matrix(0.308283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308283,0.000000,0.000000,0.250000,0,0);}
.m27_c01152{transform:matrix(0.308860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308860,0.000000,0.000000,0.250000,0,0);}
.m42_c01152{transform:matrix(0.308936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308936,0.000000,0.000000,0.250000,0,0);}
.m11_c01152{transform:matrix(0.309469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309469,0.000000,0.000000,0.250000,0,0);}
.m31_c01152{transform:matrix(0.310486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310486,0.000000,0.000000,0.250000,0,0);}
.m18_c01152{transform:matrix(0.310545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310545,0.000000,0.000000,0.250000,0,0);}
.m32_c01152{transform:matrix(0.311546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311546,0.000000,0.000000,0.250000,0,0);}
.m1d_c01152{transform:matrix(0.311666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311666,0.000000,0.000000,0.250000,0,0);}
.mc_c01152{transform:matrix(0.313343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313343,0.000000,0.000000,0.250000,0,0);}
.m49_c01152{transform:matrix(0.315055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315055,0.000000,0.000000,0.250000,0,0);}
.m3f_c01152{transform:matrix(0.316280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316280,0.000000,0.000000,0.250000,0,0);}
.m5e_c01152{transform:matrix(0.316498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316498,0.000000,0.000000,0.250000,0,0);}
.m37_c01152{transform:matrix(0.316845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316845,0.000000,0.000000,0.250000,0,0);}
.m4e_c01152{transform:matrix(0.316861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316861,0.000000,0.000000,0.250000,0,0);}
.m28_c01152{transform:matrix(0.318339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318339,0.000000,0.000000,0.250000,0,0);}
.m53_c01152{transform:matrix(0.319051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319051,0.000000,0.000000,0.250000,0,0);}
.m7a_c01152{transform:matrix(0.320200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320200,0.000000,0.000000,0.250000,0,0);}
.m29_c01152{transform:matrix(0.320676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320676,0.000000,0.000000,0.250000,0,0);}
.m54_c01152{transform:matrix(0.321329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321329,0.000000,0.000000,0.250000,0,0);}
.m1f_c01152{transform:matrix(0.322781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322781,0.000000,0.000000,0.250000,0,0);}
.m4a_c01152{transform:matrix(0.324023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324023,0.000000,0.000000,0.250000,0,0);}
.m38_c01152{transform:matrix(0.324569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324569,0.000000,0.000000,0.250000,0,0);}
.m8e_c01152{transform:matrix(0.325439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325439,0.000000,0.000000,0.250000,0,0);}
.m1a_c01152{transform:matrix(0.331335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331335,0.000000,0.000000,0.250000,0,0);}
.m15_c01152{transform:matrix(0.334762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334762,0.000000,0.000000,0.250000,0,0);}
.m2b_c01152{transform:matrix(0.337061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337061,0.000000,0.000000,0.250000,0,0);}
.m6a_c01152{transform:matrix(0.339504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339504,0.000000,0.000000,0.250000,0,0);}
.m87_c01152{transform:matrix(0.341432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341432,0.000000,0.000000,0.250000,0,0);}
.m51_c01152{transform:matrix(0.341685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341685,0.000000,0.000000,0.250000,0,0);}
.m8f_c01152{transform:matrix(0.343110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343110,0.000000,0.000000,0.250000,0,0);}
.m89_c01152{transform:matrix(0.343129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343129,0.000000,0.000000,0.250000,0,0);}
.m5d_c01152{transform:matrix(0.343314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343314,0.000000,0.000000,0.250000,0,0);}
.m33_c01152{transform:matrix(0.347006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347006,0.000000,0.000000,0.250000,0,0);}
.m14_c01152{transform:matrix(0.351897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351897,0.000000,0.000000,0.250000,0,0);}
.m25_c01152{transform:matrix(0.355164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355164,0.000000,0.000000,0.250000,0,0);}
.m59_c01152{transform:matrix(0.362885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362885,0.000000,0.000000,0.250000,0,0);}
.m3e_c01152{transform:matrix(0.365654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365654,0.000000,0.000000,0.250000,0,0);}
.m7b_c01152{transform:matrix(0.380900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380900,0.000000,0.000000,0.250000,0,0);}
.m6b_c01152{transform:matrix(0.394158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394158,0.000000,0.000000,0.250000,0,0);}
.m57_c01152{transform:matrix(0.401732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401732,0.000000,0.000000,0.250000,0,0);}
.m1c_c01152{transform:matrix(0.408109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408109,0.000000,0.000000,0.250000,0,0);}
.m4c_c01152{transform:matrix(0.414486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414486,0.000000,0.000000,0.250000,0,0);}
.m26_c01152{transform:matrix(0.420862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420862,0.000000,0.000000,0.250000,0,0);}
.v5_c01152{vertical-align:-18.518544px;}
.v4_c01152{vertical-align:-15.681600px;}
.v2_c01152{vertical-align:-11.387178px;}
.v1_c01152{vertical-align:-10.008900px;}
.v0_c01152{vertical-align:0.000000px;}
.v3_c01152{vertical-align:15.661800px;}
.ls28_c01152{letter-spacing:-2.661127px;}
.ls1e_c01152{letter-spacing:-2.605680px;}
.ls11_c01152{letter-spacing:-2.591827px;}
.ls16_c01152{letter-spacing:-2.362265px;}
.lsf_c01152{letter-spacing:-2.273040px;}
.ls10_c01152{letter-spacing:-1.318129px;}
.ls9_c01152{letter-spacing:0.000000px;}
.ls0_c01152{letter-spacing:0.432432px;}
.lsb_c01152{letter-spacing:0.498960px;}
.ls26_c01152{letter-spacing:0.665280px;}
.lsd_c01152{letter-spacing:1.205820px;}
.ls19_c01152{letter-spacing:2.135588px;}
.ls1a_c01152{letter-spacing:2.243782px;}
.ls1_c01152{letter-spacing:2.968812px;}
.ls17_c01152{letter-spacing:3.085236px;}
.ls22_c01152{letter-spacing:3.243486px;}
.lse_c01152{letter-spacing:3.247200px;}
.ls12_c01152{letter-spacing:3.317538px;}
.ls25_c01152{letter-spacing:3.326400px;}
.ls1d_c01152{letter-spacing:3.465000px;}
.ls6_c01152{letter-spacing:3.583800px;}
.ls13_c01152{letter-spacing:3.593700px;}
.ls24_c01152{letter-spacing:3.603610px;}
.ls20_c01152{letter-spacing:3.623400px;}
.lsc_c01152{letter-spacing:3.702610px;}
.ls1f_c01152{letter-spacing:3.722400px;}
.ls27_c01152{letter-spacing:3.801610px;}
.ls1b_c01152{letter-spacing:3.940200px;}
.ls21_c01152{letter-spacing:3.960000px;}
.ls2_c01152{letter-spacing:4.041576px;}
.lsa_c01152{letter-spacing:4.158000px;}
.ls15_c01152{letter-spacing:4.633200px;}
.ls14_c01152{letter-spacing:4.752000px;}
.ls7_c01152{letter-spacing:13.276296px;}
.ls8_c01152{letter-spacing:18.775944px;}
.ls3_c01152{letter-spacing:20.274507px;}
.ls4_c01152{letter-spacing:22.366476px;}
.ls5_c01152{letter-spacing:23.575464px;}
.ls1c_c01152{letter-spacing:54.172998px;}
.ls23_c01152{letter-spacing:58.449798px;}
.ls18_c01152{letter-spacing:59.875398px;}
.sc__c01152{text-shadow:none;}
.sc0_c01152{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01152{-webkit-text-stroke:0px transparent;}
.sc0_c01152{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01152{word-spacing:0.000000px;}
._3_c01152{width:19.613088px;}
._0_c01152{width:22.881672px;}
._2_c01152{width:30.849683px;}
._1_c01152{width:32.169060px;}
._4_c01152{width:48.775320px;}
.fc0_c01152{color:transparent;}
.fs0_c01152{font-size:27.720000px;}
.fs2_c01152{font-size:33.660000px;}
.fs1b_c01152{font-size:42.768000px;}
.fs10_c01152{font-size:44.352000px;}
.fs18_c01152{font-size:52.272000px;}
.fsf_c01152{font-size:54.172998px;}
.fs13_c01152{font-size:55.638000px;}
.fs16_c01152{font-size:57.222000px;}
.fs17_c01152{font-size:58.449798px;}
.fsa_c01152{font-size:59.875398px;}
.fs4_c01152{font-size:62.568000px;}
.fsc_c01152{font-size:63.756198px;}
.fs5_c01152{font-size:64.944000px;}
.fsd_c01152{font-size:66.330000px;}
.fse_c01152{font-size:66.528000px;}
.fs11_c01152{font-size:69.300000px;}
.fs6_c01152{font-size:70.884000px;}
.fs7_c01152{font-size:71.874000px;}
.fs19_c01152{font-size:72.072198px;}
.fs14_c01152{font-size:72.468000px;}
.fs3_c01152{font-size:74.052198px;}
.fs12_c01152{font-size:74.448000px;}
.fs1a_c01152{font-size:76.032198px;}
.fsb_c01152{font-size:78.804000px;}
.fs15_c01152{font-size:79.200000px;}
.fs1_c01152{font-size:83.160000px;}
.fs9_c01152{font-size:92.664000px;}
.fs8_c01152{font-size:95.040000px;}
.y0_c01152{bottom:0.000000px;}
.y1_c01152{bottom:76.500000px;}
.y22_c01152{bottom:125.008335px;}
.y23_c01152{bottom:129.641535px;}
.y21_c01152{bottom:158.153535px;}
.y20_c01152{bottom:192.011535px;}
.y1e_c01152{bottom:216.598185px;}
.y1f_c01152{bottom:225.151785px;}
.y1d_c01152{bottom:225.508185px;}
.y1c_c01152{bottom:256.876335px;}
.y1b_c01152{bottom:289.308735px;}
.y2_c01152{bottom:297.505935px;}
.y19_c01152{bottom:321.023385px;}
.y1a_c01152{bottom:323.874585px;}
.y18_c01152{bottom:353.460735px;}
.y17_c01152{bottom:385.531785px;}
.y16_c01152{bottom:417.256335px;}
.y14_c01152{bottom:449.688735px;}
.y15_c01152{bottom:452.183535px;}
.y13_c01152{bottom:481.403385px;}
.y12_c01152{bottom:513.479385px;}
.y11_c01152{bottom:531.299385px;}
.y10_c01152{bottom:544.486185px;}
.yf_c01152{bottom:566.231535px;}
.yd_c01152{bottom:577.631385px;}
.ye_c01152{bottom:580.126185px;}
.yc_c01152{bottom:608.999535px;}
.yb_c01152{bottom:641.788335px;}
.ya_c01152{bottom:673.859385px;}
.y9_c01152{bottom:737.303535px;}
.y8_c01152{bottom:770.092335px;}
.y7_c01152{bottom:802.876185px;}
.y6_c01152{bottom:865.602585px;}
.y5_c01152{bottom:929.041785px;}
.y4_c01152{bottom:1034.179785px;}
.y3_c01152{bottom:1074.809385px;}
.h2_c01152{height:28.911094px;}
.h4_c01152{height:33.035449px;}
.h10_c01152{height:36.079217px;}
.h18_c01152{height:38.927565px;}
.hb_c01152{height:39.877015px;}
.h1b_c01152{height:41.974453px;}
.h11_c01152{height:46.257750px;}
.h17_c01152{height:56.160264px;}
.h14_c01152{height:58.028695px;}
.hd_c01152{height:62.573222px;}
.h6_c01152{height:67.734563px;}
.he_c01152{height:69.180117px;}
.hf_c01152{height:69.386625px;}
.h7_c01152{height:69.568770px;}
.h8_c01152{height:70.540400px;}
.h19_c01152{height:70.734921px;}
.h15_c01152{height:71.123379px;}
.h12_c01152{height:72.277734px;}
.h5_c01152{height:72.678183px;}
.h13_c01152{height:73.066641px;}
.h1a_c01152{height:74.621444px;}
.hc_c01152{height:77.341816px;}
.h16_c01152{height:77.730469px;}
.h3_c01152{height:81.616992px;}
.ha_c01152{height:90.944648px;}
.h9_c01152{height:93.276563px;}
.h1_c01152{height:1110.000000px;}
.h0_c01152{height:1263.000000px;}
.w1_c01152{width:775.500000px;}
.w0_c01152{width:892.500000px;}
.x0_c01152{left:0.000000px;}
.x2_c01152{left:49.773885px;}
.x1_c01152{left:58.500000px;}
.x19_c01152{left:95.130735px;}
.xf_c01152{left:96.685035px;}
.x5_c01152{left:98.467035px;}
.x54_c01152{left:148.496685px;}
.x36_c01152{left:149.551035px;}
.x10_c01152{left:151.045935px;}
.x6_c01152{left:152.115135px;}
.x28_c01152{left:153.243735px;}
.x41_c01152{left:161.827035px;}
.x42_c01152{left:172.083435px;}
.x47_c01152{left:183.908985px;}
.x51_c01152{left:184.988085px;}
.x4_c01152{left:188.032335px;}
.x29_c01152{left:194.521785px;}
.x7_c01152{left:206.723535px;}
.x64_c01152{left:207.961035px;}
.x11_c01152{left:217.771935px;}
.x37_c01152{left:226.954185px;}
.x5a_c01152{left:227.968935px;}
.x55_c01152{left:238.002585px;}
.x33_c01152{left:239.641035px;}
.x5d_c01152{left:249.674685px;}
.x8_c01152{left:251.674485px;}
.x20_c01152{left:260.827035px;}
.x12_c01152{left:263.163435px;}
.x4c_c01152{left:272.256585px;}
.x65_c01152{left:273.474285px;}
.x13_c01152{left:274.533585px;}
.x6b_c01152{left:281.730885px;}
.x5f_c01152{left:282.740685px;}
.x1a_c01152{left:284.884035px;}
.x38_c01152{left:293.987085px;}
.x52_c01152{left:295.214685px;}
.x3e_c01152{left:296.986785px;}
.x62_c01152{left:300.298335px;}
.x56_c01152{left:305.010735px;}
.x14_c01152{left:307.228335px;}
.x21_c01152{left:308.757885px;}
.x2a_c01152{left:318.494535px;}
.x22_c01152{left:319.633035px;}
.x69_c01152{left:326.756085px;}
.x66_c01152{left:328.335135px;}
.x9_c01152{left:329.394435px;}
.x5b_c01152{left:338.042085px;}
.x34_c01152{left:340.809135px;}
.x43_c01152{left:348.506385px;}
.x23_c01152{left:351.986235px;}
.x48_c01152{left:361.262535px;}
.x15_c01152{left:362.504985px;}
.x60_c01152{left:371.296185px;}
.x3f_c01152{left:372.840585px;}
.x24_c01152{left:373.954335px;}
.x2b_c01152{left:383.908785px;}
.x16_c01152{left:386.502585px;}
.x6c_c01152{left:393.392985px;}
.x4d_c01152{left:394.660185px;}
.x53_c01152{left:396.768885px;}
.x57_c01152{left:404.946285px;}
.xa_c01152{left:406.208535px;}
.x2c_c01152{left:417.712335px;}
.x1b_c01152{left:429.245835px;}
.x5e_c01152{left:438.309285px;}
.x25_c01152{left:439.373535px;}
.x1c_c01152{left:449.813085px;}
.x35_c01152{left:451.877235px;}
.x6d_c01152{left:460.084335px;}
.xb_c01152{left:461.460435px;}
.x17_c01152{left:472.885035px;}
.x49_c01152{left:482.517735px;}
.x6e_c01152{left:484.225485px;}
.x44_c01152{left:485.477835px;}
.x30_c01152{left:494.694735px;}
.x18_c01152{left:496.669785px;}
.x2d_c01152{left:506.525235px;}
.x6f_c01152{left:514.960035px;}
.xc_c01152{left:516.692535px;}
.x6a_c01152{left:517.885485px;}
.x67_c01152{left:527.127135px;}
.x39_c01152{left:528.285435px;}
.x61_c01152{left:529.344735px;}
.x31_c01152{left:539.358585px;}
.x4e_c01152{left:549.347685px;}
.x26_c01152{left:550.773285px;}
.x70_c01152{left:560.628735px;}
.x40_c01152{left:570.860385px;}
.xd_c01152{left:574.369935px;}
.x58_c01152{left:582.438435px;}
.x45_c01152{left:583.507635px;}
.x2e_c01152{left:593.773935px;}
.x4a_c01152{left:605.277735px;}
.x1d_c01152{left:608.232885px;}
.x59_c01152{left:615.865785px;}
.x71_c01152{left:617.335935px;}
.x4f_c01152{left:626.968635px;}
.x27_c01152{left:628.414035px;}
.x3a_c01152{left:637.863585px;}
.x5c_c01152{left:639.066435px;}
.xe_c01152{left:640.660335px;}
.x1e_c01152{left:650.223735px;}
.x68_c01152{left:660.098985px;}
.x3b_c01152{left:661.950285px;}
.x63_c01152{left:671.097885px;}
.x50_c01152{left:682.255185px;}
.x46_c01152{left:683.606535px;}
.x2f_c01152{left:692.694735px;}
.x1f_c01152{left:694.927185px;}
.x3c_c01152{left:704.327235px;}
.x3_c01152{left:705.391485px;}
.x3d_c01152{left:708.336735px;}
.x4b_c01152{left:715.009335px;}
.x32_c01152{left:717.236835px;}
@media print{
.v5_c01152{vertical-align:-16.460928pt;}
.v4_c01152{vertical-align:-13.939200pt;}
.v2_c01152{vertical-align:-10.121936pt;}
.v1_c01152{vertical-align:-8.896800pt;}
.v0_c01152{vertical-align:0.000000pt;}
.v3_c01152{vertical-align:13.921600pt;}
.ls28_c01152{letter-spacing:-2.365446pt;}
.ls1e_c01152{letter-spacing:-2.316160pt;}
.ls11_c01152{letter-spacing:-2.303846pt;}
.ls16_c01152{letter-spacing:-2.099791pt;}
.lsf_c01152{letter-spacing:-2.020480pt;}
.ls10_c01152{letter-spacing:-1.171670pt;}
.ls9_c01152{letter-spacing:0.000000pt;}
.ls0_c01152{letter-spacing:0.384384pt;}
.lsb_c01152{letter-spacing:0.443520pt;}
.ls26_c01152{letter-spacing:0.591360pt;}
.lsd_c01152{letter-spacing:1.071840pt;}
.ls19_c01152{letter-spacing:1.898301pt;}
.ls1a_c01152{letter-spacing:1.994473pt;}
.ls1_c01152{letter-spacing:2.638944pt;}
.ls17_c01152{letter-spacing:2.742432pt;}
.ls22_c01152{letter-spacing:2.883099pt;}
.lse_c01152{letter-spacing:2.886400pt;}
.ls12_c01152{letter-spacing:2.948923pt;}
.ls25_c01152{letter-spacing:2.956800pt;}
.ls1d_c01152{letter-spacing:3.080000pt;}
.ls6_c01152{letter-spacing:3.185600pt;}
.ls13_c01152{letter-spacing:3.194400pt;}
.ls24_c01152{letter-spacing:3.203209pt;}
.ls20_c01152{letter-spacing:3.220800pt;}
.lsc_c01152{letter-spacing:3.291209pt;}
.ls1f_c01152{letter-spacing:3.308800pt;}
.ls27_c01152{letter-spacing:3.379209pt;}
.ls1b_c01152{letter-spacing:3.502400pt;}
.ls21_c01152{letter-spacing:3.520000pt;}
.ls2_c01152{letter-spacing:3.592512pt;}
.lsa_c01152{letter-spacing:3.696000pt;}
.ls15_c01152{letter-spacing:4.118400pt;}
.ls14_c01152{letter-spacing:4.224000pt;}
.ls7_c01152{letter-spacing:11.801152pt;}
.ls8_c01152{letter-spacing:16.689728pt;}
.ls3_c01152{letter-spacing:18.021784pt;}
.ls4_c01152{letter-spacing:19.881312pt;}
.ls5_c01152{letter-spacing:20.955968pt;}
.ls1c_c01152{letter-spacing:48.153776pt;}
.ls23_c01152{letter-spacing:51.955376pt;}
.ls18_c01152{letter-spacing:53.222576pt;}
.ws0_c01152{word-spacing:0.000000pt;}
._3_c01152{width:17.433856pt;}
._0_c01152{width:20.339264pt;}
._2_c01152{width:27.421940pt;}
._1_c01152{width:28.594720pt;}
._4_c01152{width:43.355840pt;}
.fs0_c01152{font-size:24.640000pt;}
.fs2_c01152{font-size:29.920000pt;}
.fs1b_c01152{font-size:38.016000pt;}
.fs10_c01152{font-size:39.424000pt;}
.fs18_c01152{font-size:46.464000pt;}
.fsf_c01152{font-size:48.153776pt;}
.fs13_c01152{font-size:49.456000pt;}
.fs16_c01152{font-size:50.864000pt;}
.fs17_c01152{font-size:51.955376pt;}
.fsa_c01152{font-size:53.222576pt;}
.fs4_c01152{font-size:55.616000pt;}
.fsc_c01152{font-size:56.672176pt;}
.fs5_c01152{font-size:57.728000pt;}
.fsd_c01152{font-size:58.960000pt;}
.fse_c01152{font-size:59.136000pt;}
.fs11_c01152{font-size:61.600000pt;}
.fs6_c01152{font-size:63.008000pt;}
.fs7_c01152{font-size:63.888000pt;}
.fs19_c01152{font-size:64.064176pt;}
.fs14_c01152{font-size:64.416000pt;}
.fs3_c01152{font-size:65.824176pt;}
.fs12_c01152{font-size:66.176000pt;}
.fs1a_c01152{font-size:67.584176pt;}
.fsb_c01152{font-size:70.048000pt;}
.fs15_c01152{font-size:70.400000pt;}
.fs1_c01152{font-size:73.920000pt;}
.fs9_c01152{font-size:82.368000pt;}
.fs8_c01152{font-size:84.480000pt;}
.y0_c01152{bottom:0.000000pt;}
.y1_c01152{bottom:68.000000pt;}
.y22_c01152{bottom:111.118520pt;}
.y23_c01152{bottom:115.236920pt;}
.y21_c01152{bottom:140.580920pt;}
.y20_c01152{bottom:170.676920pt;}
.y1e_c01152{bottom:192.531720pt;}
.y1f_c01152{bottom:200.134920pt;}
.y1d_c01152{bottom:200.451720pt;}
.y1c_c01152{bottom:228.334520pt;}
.y1b_c01152{bottom:257.163320pt;}
.y2_c01152{bottom:264.449720pt;}
.y19_c01152{bottom:285.354120pt;}
.y1a_c01152{bottom:287.888520pt;}
.y18_c01152{bottom:314.187320pt;}
.y17_c01152{bottom:342.694920pt;}
.y16_c01152{bottom:370.894520pt;}
.y14_c01152{bottom:399.723320pt;}
.y15_c01152{bottom:401.940920pt;}
.y13_c01152{bottom:427.914120pt;}
.y12_c01152{bottom:456.426120pt;}
.y11_c01152{bottom:472.266120pt;}
.y10_c01152{bottom:483.987720pt;}
.yf_c01152{bottom:503.316920pt;}
.yd_c01152{bottom:513.450120pt;}
.ye_c01152{bottom:515.667720pt;}
.yc_c01152{bottom:541.332920pt;}
.yb_c01152{bottom:570.478520pt;}
.ya_c01152{bottom:598.986120pt;}
.y9_c01152{bottom:655.380920pt;}
.y8_c01152{bottom:684.526520pt;}
.y7_c01152{bottom:713.667720pt;}
.y6_c01152{bottom:769.424520pt;}
.y5_c01152{bottom:825.814920pt;}
.y4_c01152{bottom:919.270920pt;}
.y3_c01152{bottom:955.386120pt;}
.h2_c01152{height:25.698750pt;}
.h4_c01152{height:29.364844pt;}
.h10_c01152{height:32.070415pt;}
.h18_c01152{height:34.602280pt;}
.hb_c01152{height:35.446236pt;}
.h1b_c01152{height:37.310625pt;}
.h11_c01152{height:41.118000pt;}
.h17_c01152{height:49.920234pt;}
.h14_c01152{height:51.581063pt;}
.hd_c01152{height:55.620641pt;}
.h6_c01152{height:60.208500pt;}
.he_c01152{height:61.493438pt;}
.hf_c01152{height:61.677000pt;}
.h7_c01152{height:61.838906pt;}
.h8_c01152{height:62.702578pt;}
.h19_c01152{height:62.875485pt;}
.h15_c01152{height:63.220781pt;}
.h12_c01152{height:64.246875pt;}
.h5_c01152{height:64.602829pt;}
.h13_c01152{height:64.948125pt;}
.h1a_c01152{height:66.330173pt;}
.hc_c01152{height:68.748281pt;}
.h16_c01152{height:69.093750pt;}
.h3_c01152{height:72.548438pt;}
.ha_c01152{height:80.839688pt;}
.h9_c01152{height:82.912500pt;}
.h1_c01152{height:986.666667pt;}
.h0_c01152{height:1122.666667pt;}
.w1_c01152{width:689.333333pt;}
.w0_c01152{width:793.333333pt;}
.x0_c01152{left:0.000000pt;}
.x2_c01152{left:44.243453pt;}
.x1_c01152{left:52.000000pt;}
.x19_c01152{left:84.560653pt;}
.xf_c01152{left:85.942253pt;}
.x5_c01152{left:87.526253pt;}
.x54_c01152{left:131.997053pt;}
.x36_c01152{left:132.934253pt;}
.x10_c01152{left:134.263053pt;}
.x6_c01152{left:135.213453pt;}
.x28_c01152{left:136.216653pt;}
.x41_c01152{left:143.846253pt;}
.x42_c01152{left:152.963053pt;}
.x47_c01152{left:163.474653pt;}
.x51_c01152{left:164.433853pt;}
.x4_c01152{left:167.139853pt;}
.x29_c01152{left:172.908253pt;}
.x7_c01152{left:183.754253pt;}
.x64_c01152{left:184.854253pt;}
.x11_c01152{left:193.575053pt;}
.x37_c01152{left:201.737053pt;}
.x5a_c01152{left:202.639053pt;}
.x55_c01152{left:211.557853pt;}
.x33_c01152{left:213.014253pt;}
.x5d_c01152{left:221.933053pt;}
.x8_c01152{left:223.710653pt;}
.x20_c01152{left:231.846253pt;}
.x12_c01152{left:233.923053pt;}
.x4c_c01152{left:242.005853pt;}
.x65_c01152{left:243.088253pt;}
.x13_c01152{left:244.029853pt;}
.x6b_c01152{left:250.427453pt;}
.x5f_c01152{left:251.325053pt;}
.x1a_c01152{left:253.230253pt;}
.x38_c01152{left:261.321853pt;}
.x52_c01152{left:262.413053pt;}
.x3e_c01152{left:263.988253pt;}
.x62_c01152{left:266.931853pt;}
.x56_c01152{left:271.120653pt;}
.x14_c01152{left:273.091853pt;}
.x21_c01152{left:274.451453pt;}
.x2a_c01152{left:283.106253pt;}
.x22_c01152{left:284.118253pt;}
.x69_c01152{left:290.449853pt;}
.x66_c01152{left:291.853453pt;}
.x9_c01152{left:292.795053pt;}
.x5b_c01152{left:300.481853pt;}
.x34_c01152{left:302.941453pt;}
.x43_c01152{left:309.783453pt;}
.x23_c01152{left:312.876653pt;}
.x48_c01152{left:321.122253pt;}
.x15_c01152{left:322.226653pt;}
.x60_c01152{left:330.041053pt;}
.x3f_c01152{left:331.413853pt;}
.x24_c01152{left:332.403853pt;}
.x2b_c01152{left:341.252253pt;}
.x16_c01152{left:343.557853pt;}
.x6c_c01152{left:349.682653pt;}
.x4d_c01152{left:350.809053pt;}
.x53_c01152{left:352.683453pt;}
.x57_c01152{left:359.952253pt;}
.xa_c01152{left:361.074253pt;}
.x2c_c01152{left:371.299853pt;}
.x1b_c01152{left:381.551853pt;}
.x5e_c01152{left:389.608253pt;}
.x25_c01152{left:390.554253pt;}
.x1c_c01152{left:399.833853pt;}
.x35_c01152{left:401.668653pt;}
.x6d_c01152{left:408.963853pt;}
.xb_c01152{left:410.187053pt;}
.x17_c01152{left:420.342253pt;}
.x49_c01152{left:428.904653pt;}
.x6e_c01152{left:430.422653pt;}
.x44_c01152{left:431.535853pt;}
.x30_c01152{left:439.728653pt;}
.x18_c01152{left:441.484253pt;}
.x2d_c01152{left:450.244653pt;}
.x6f_c01152{left:457.742253pt;}
.xc_c01152{left:459.282253pt;}
.x6a_c01152{left:460.342653pt;}
.x67_c01152{left:468.557453pt;}
.x39_c01152{left:469.587053pt;}
.x61_c01152{left:470.528653pt;}
.x31_c01152{left:479.429853pt;}
.x4e_c01152{left:488.309053pt;}
.x26_c01152{left:489.576253pt;}
.x70_c01152{left:498.336653pt;}
.x40_c01152{left:507.431453pt;}
.xd_c01152{left:510.551053pt;}
.x58_c01152{left:517.723053pt;}
.x45_c01152{left:518.673453pt;}
.x2e_c01152{left:527.799053pt;}
.x4a_c01152{left:538.024653pt;}
.x1d_c01152{left:540.651453pt;}
.x59_c01152{left:547.436253pt;}
.x71_c01152{left:548.743053pt;}
.x4f_c01152{left:557.305453pt;}
.x27_c01152{left:558.590253pt;}
.x3a_c01152{left:566.989853pt;}
.x5c_c01152{left:568.059053pt;}
.xe_c01152{left:569.475853pt;}
.x1e_c01152{left:577.976653pt;}
.x68_c01152{left:586.754653pt;}
.x3b_c01152{left:588.400253pt;}
.x63_c01152{left:596.531453pt;}
.x50_c01152{left:606.449053pt;}
.x46_c01152{left:607.650253pt;}
.x2f_c01152{left:615.728653pt;}
.x1f_c01152{left:617.713053pt;}
.x3c_c01152{left:626.068653pt;}
.x3_c01152{left:627.014653pt;}
.x3d_c01152{left:629.632653pt;}
.x4b_c01152{left:635.563853pt;}
.x32_c01152{left:637.543853pt;}
}





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

.ir_c01153:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01153{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01153;src:url('chunks/assets/font_d3a89a8b31341b14da0baa86.woff2')format("woff");}.ff1_c01153{font-family:ff1_c01153;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01153;src:url('chunks/assets/font_3510f6eb1997cf1ef9fa7356.woff2')format("woff");}.ff2_c01153{font-family:ff2_c01153;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01153;src:url('chunks/assets/font_8a26c18090003199a0daa5c6.woff2')format("woff");}.ff3_c01153{font-family:ff3_c01153;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01153;src:url('chunks/assets/font_f31aac48d61f44939a208352.woff2')format("woff");}.ff4_c01153{font-family:ff4_c01153;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01153;src:url('chunks/assets/font_e289691b8e8c44aa59754698.woff2')format("woff");}.ff5_c01153{font-family:ff5_c01153;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m83_c01153{transform:matrix(0.098851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098851,0.000000,0.000000,0.250000,0,0);}
.m71_c01153{transform:matrix(0.141794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141794,0.000000,0.000000,0.250000,0,0);}
.m4d_c01153{transform:matrix(0.156177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156177,0.000000,0.000000,0.250000,0,0);}
.m3c_c01153{transform:matrix(0.167333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167333,0.000000,0.000000,0.250000,0,0);}
.m89_c01153{transform:matrix(0.171511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171511,0.000000,0.000000,0.250000,0,0);}
.m7a_c01153{transform:matrix(0.172042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172042,0.000000,0.000000,0.250000,0,0);}
.m66_c01153{transform:matrix(0.172079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172079,0.000000,0.000000,0.250000,0,0);}
.m8f_c01153{transform:matrix(0.172238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172238,0.000000,0.000000,0.250000,0,0);}
.m6e_c01153{transform:matrix(0.175305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175305,0.000000,0.000000,0.250000,0,0);}
.m72_c01153{transform:matrix(0.179793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179793,0.000000,0.000000,0.250000,0,0);}
.m14_c01153{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);}
.m88_c01153{transform:matrix(0.205406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205406,0.000000,0.000000,0.250000,0,0);}
.m21_c01153{transform:matrix(0.232310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232310,0.000000,0.000000,0.250000,0,0);}
.m32_c01153{transform:matrix(0.234504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234504,0.000000,0.000000,0.250000,0,0);}
.m43_c01153{transform:matrix(0.242141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242141,0.000000,0.000000,0.250000,0,0);}
.m63_c01153{transform:matrix(0.246149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246149,0.000000,0.000000,0.250000,0,0);}
.ma_c01153{transform:matrix(0.248173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248173,0.000000,0.000000,0.250000,0,0);}
.m28_c01153{transform:matrix(0.249684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249684,0.000000,0.000000,0.250000,0,0);}
.m0_c01153{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m67_c01153{transform:matrix(0.250822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250822,0.000000,0.000000,0.250000,0,0);}
.m33_c01153{transform:matrix(0.251868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251868,0.000000,0.000000,0.250000,0,0);}
.m7c_c01153{transform:matrix(0.255811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255811,0.000000,0.000000,0.250000,0,0);}
.m3f_c01153{transform:matrix(0.256751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256751,0.000000,0.000000,0.250000,0,0);}
.m62_c01153{transform:matrix(0.257088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257088,0.000000,0.000000,0.250000,0,0);}
.m65_c01153{transform:matrix(0.258186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258186,0.000000,0.000000,0.250000,0,0);}
.m87_c01153{transform:matrix(0.258513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258513,0.000000,0.000000,0.250000,0,0);}
.m25_c01153{transform:matrix(0.260462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260462,0.000000,0.000000,0.250000,0,0);}
.md_c01153{transform:matrix(0.261418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261418,0.000000,0.000000,0.250000,0,0);}
.m3b_c01153{transform:matrix(0.262535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262535,0.000000,0.000000,0.250000,0,0);}
.m74_c01153{transform:matrix(0.263376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263376,0.000000,0.000000,0.250000,0,0);}
.m5e_c01153{transform:matrix(0.263744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263744,0.000000,0.000000,0.250000,0,0);}
.m47_c01153{transform:matrix(0.264999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264999,0.000000,0.000000,0.250000,0,0);}
.m60_c01153{transform:matrix(0.265113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265113,0.000000,0.000000,0.250000,0,0);}
.m2b_c01153{transform:matrix(0.265607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265607,0.000000,0.000000,0.250000,0,0);}
.m2_c01153{transform:matrix(0.266813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266813,0.000000,0.000000,0.250000,0,0);}
.m6b_c01153{transform:matrix(0.266857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266857,0.000000,0.000000,0.250000,0,0);}
.m31_c01153{transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);}
.m84_c01153{transform:matrix(0.268991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268991,0.000000,0.000000,0.250000,0,0);}
.m8a_c01153{transform:matrix(0.269219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269219,0.000000,0.000000,0.250000,0,0);}
.m2f_c01153{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.mb_c01153{transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);}
.m49_c01153{transform:matrix(0.271580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271580,0.000000,0.000000,0.250000,0,0);}
.m22_c01153{transform:matrix(0.272031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272031,0.000000,0.000000,0.250000,0,0);}
.m23_c01153{transform:matrix(0.272509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272509,0.000000,0.000000,0.250000,0,0);}
.m8_c01153{transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);}
.m6c_c01153{transform:matrix(0.273109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273109,0.000000,0.000000,0.250000,0,0);}
.m69_c01153{transform:matrix(0.273215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273215,0.000000,0.000000,0.250000,0,0);}
.m39_c01153{transform:matrix(0.273358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273358,0.000000,0.000000,0.250000,0,0);}
.m82_c01153{transform:matrix(0.274298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274298,0.000000,0.000000,0.250000,0,0);}
.mf_c01153{transform:matrix(0.274610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274610,0.000000,0.000000,0.250000,0,0);}
.m75_c01153{transform:matrix(0.276103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276103,0.000000,0.000000,0.250000,0,0);}
.m20_c01153{transform:matrix(0.276544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276544,0.000000,0.000000,0.250000,0,0);}
.m91_c01153{transform:matrix(0.277274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277274,0.000000,0.000000,0.250000,0,0);}
.m50_c01153{transform:matrix(0.277433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277433,0.000000,0.000000,0.250000,0,0);}
.m13_c01153{transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);}
.m57_c01153{transform:matrix(0.278463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278463,0.000000,0.000000,0.250000,0,0);}
.m68_c01153{transform:matrix(0.278815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278815,0.000000,0.000000,0.250000,0,0);}
.m3e_c01153{transform:matrix(0.278832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278832,0.000000,0.000000,0.250000,0,0);}
.m1d_c01153{transform:matrix(0.279275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279275,0.000000,0.000000,0.250000,0,0);}
.m5b_c01153{transform:matrix(0.279570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279570,0.000000,0.000000,0.250000,0,0);}
.m4b_c01153{transform:matrix(0.279618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279618,0.000000,0.000000,0.250000,0,0);}
.m55_c01153{transform:matrix(0.280817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280817,0.000000,0.000000,0.250000,0,0);}
.m61_c01153{transform:matrix(0.281107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281107,0.000000,0.000000,0.250000,0,0);}
.m52_c01153{transform:matrix(0.284117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284117,0.000000,0.000000,0.250000,0,0);}
.m45_c01153{transform:matrix(0.285128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285128,0.000000,0.000000,0.250000,0,0);}
.m9_c01153{transform:matrix(0.285266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285266,0.000000,0.000000,0.250000,0,0);}
.m7e_c01153{transform:matrix(0.285652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285652,0.000000,0.000000,0.250000,0,0);}
.m76_c01153{transform:matrix(0.285665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285665,0.000000,0.000000,0.250000,0,0);}
.m18_c01153{transform:matrix(0.286234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286234,0.000000,0.000000,0.250000,0,0);}
.m5f_c01153{transform:matrix(0.286476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286476,0.000000,0.000000,0.250000,0,0);}
.m6d_c01153{transform:matrix(0.286618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286618,0.000000,0.000000,0.250000,0,0);}
.m6a_c01153{transform:matrix(0.286936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286936,0.000000,0.000000,0.250000,0,0);}
.m4f_c01153{transform:matrix(0.287247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287247,0.000000,0.000000,0.250000,0,0);}
.m79_c01153{transform:matrix(0.287835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287835,0.000000,0.000000,0.250000,0,0);}
.m3d_c01153{transform:matrix(0.288069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288069,0.000000,0.000000,0.250000,0,0);}
.m51_c01153{transform:matrix(0.288134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288134,0.000000,0.000000,0.250000,0,0);}
.m1e_c01153{transform:matrix(0.288269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288269,0.000000,0.000000,0.250000,0,0);}
.m38_c01153{transform:matrix(0.288289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288289,0.000000,0.000000,0.250000,0,0);}
.m1c_c01153{transform:matrix(0.289228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289228,0.000000,0.000000,0.250000,0,0);}
.m46_c01153{transform:matrix(0.290980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290980,0.000000,0.000000,0.250000,0,0);}
.m3_c01153{transform:matrix(0.291495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291495,0.000000,0.000000,0.250000,0,0);}
.m59_c01153{transform:matrix(0.291548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291548,0.000000,0.000000,0.250000,0,0);}
.m1f_c01153{transform:matrix(0.291648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291648,0.000000,0.000000,0.250000,0,0);}
.m11_c01153{transform:matrix(0.291951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291951,0.000000,0.000000,0.250000,0,0);}
.m7b_c01153{transform:matrix(0.292312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292312,0.000000,0.000000,0.250000,0,0);}
.m24_c01153{transform:matrix(0.292314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292314,0.000000,0.000000,0.250000,0,0);}
.m8d_c01153{transform:matrix(0.293277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293277,0.000000,0.000000,0.250000,0,0);}
.m4a_c01153{transform:matrix(0.293631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293631,0.000000,0.000000,0.250000,0,0);}
.m4c_c01153{transform:matrix(0.293987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293987,0.000000,0.000000,0.250000,0,0);}
.m90_c01153{transform:matrix(0.295448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295448,0.000000,0.000000,0.250000,0,0);}
.m2d_c01153{transform:matrix(0.295468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295468,0.000000,0.000000,0.250000,0,0);}
.m5_c01153{transform:matrix(0.296335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296335,0.000000,0.000000,0.250000,0,0);}
.m53_c01153{transform:matrix(0.296975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296975,0.000000,0.000000,0.250000,0,0);}
.m2c_c01153{transform:matrix(0.296995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296995,0.000000,0.000000,0.250000,0,0);}
.m64_c01153{transform:matrix(0.298510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298510,0.000000,0.000000,0.250000,0,0);}
.m6f_c01153{transform:matrix(0.298629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298629,0.000000,0.000000,0.250000,0,0);}
.m1a_c01153{transform:matrix(0.298733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298733,0.000000,0.000000,0.250000,0,0);}
.m2a_c01153{transform:matrix(0.299133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299133,0.000000,0.000000,0.250000,0,0);}
.m78_c01153{transform:matrix(0.299838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299838,0.000000,0.000000,0.250000,0,0);}
.m5a_c01153{transform:matrix(0.300097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300097,0.000000,0.000000,0.250000,0,0);}
.m17_c01153{transform:matrix(0.300304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300304,0.000000,0.000000,0.250000,0,0);}
.m37_c01153{transform:matrix(0.300516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300516,0.000000,0.000000,0.250000,0,0);}
.m6_c01153{transform:matrix(0.301004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301004,0.000000,0.000000,0.250000,0,0);}
.m19_c01153{transform:matrix(0.302079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302079,0.000000,0.000000,0.250000,0,0);}
.m10_c01153{transform:matrix(0.302495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302495,0.000000,0.000000,0.250000,0,0);}
.m2e_c01153{transform:matrix(0.302841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302841,0.000000,0.000000,0.250000,0,0);}
.m42_c01153{transform:matrix(0.303668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303668,0.000000,0.000000,0.250000,0,0);}
.m36_c01153{transform:matrix(0.304528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304528,0.000000,0.000000,0.250000,0,0);}
.m48_c01153{transform:matrix(0.305788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305788,0.000000,0.000000,0.250000,0,0);}
.m80_c01153{transform:matrix(0.306273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306273,0.000000,0.000000,0.250000,0,0);}
.m3a_c01153{transform:matrix(0.306561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306561,0.000000,0.000000,0.250000,0,0);}
.m35_c01153{transform:matrix(0.306563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306563,0.000000,0.000000,0.250000,0,0);}
.m7d_c01153{transform:matrix(0.307377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307377,0.000000,0.000000,0.250000,0,0);}
.m86_c01153{transform:matrix(0.307994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307994,0.000000,0.000000,0.250000,0,0);}
.m41_c01153{transform:matrix(0.308387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308387,0.000000,0.000000,0.250000,0,0);}
.m8e_c01153{transform:matrix(0.309154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309154,0.000000,0.000000,0.250000,0,0);}
.m1b_c01153{transform:matrix(0.309272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309272,0.000000,0.000000,0.250000,0,0);}
.m4e_c01153{transform:matrix(0.309694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309694,0.000000,0.000000,0.250000,0,0);}
.m15_c01153{transform:matrix(0.309805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309805,0.000000,0.000000,0.250000,0,0);}
.m70_c01153{transform:matrix(0.310269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310269,0.000000,0.000000,0.250000,0,0);}
.m77_c01153{transform:matrix(0.310563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310563,0.000000,0.000000,0.250000,0,0);}
.m7f_c01153{transform:matrix(0.310940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310940,0.000000,0.000000,0.250000,0,0);}
.m92_c01153{transform:matrix(0.311608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311608,0.000000,0.000000,0.250000,0,0);}
.m7_c01153{transform:matrix(0.311673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311673,0.000000,0.000000,0.250000,0,0);}
.m85_c01153{transform:matrix(0.311968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311968,0.000000,0.000000,0.250000,0,0);}
.m44_c01153{transform:matrix(0.312758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312758,0.000000,0.000000,0.250000,0,0);}
.m34_c01153{transform:matrix(0.313136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313136,0.000000,0.000000,0.250000,0,0);}
.m27_c01153{transform:matrix(0.313882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313882,0.000000,0.000000,0.250000,0,0);}
.m4_c01153{transform:matrix(0.315706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315706,0.000000,0.000000,0.250000,0,0);}
.m54_c01153{transform:matrix(0.319887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319887,0.000000,0.000000,0.250000,0,0);}
.m16_c01153{transform:matrix(0.325628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325628,0.000000,0.000000,0.250000,0,0);}
.me_c01153{transform:matrix(0.331010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331010,0.000000,0.000000,0.250000,0,0);}
.m12_c01153{transform:matrix(0.333793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333793,0.000000,0.000000,0.250000,0,0);}
.m81_c01153{transform:matrix(0.334512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334512,0.000000,0.000000,0.250000,0,0);}
.mc_c01153{transform:matrix(0.339155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339155,0.000000,0.000000,0.250000,0,0);}
.m26_c01153{transform:matrix(0.344589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344589,0.000000,0.000000,0.250000,0,0);}
.m8c_c01153{transform:matrix(0.345470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345470,0.000000,0.000000,0.250000,0,0);}
.m30_c01153{transform:matrix(0.351360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351360,0.000000,0.000000,0.250000,0,0);}
.m40_c01153{transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);}
.m56_c01153{transform:matrix(0.354444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354444,0.000000,0.000000,0.250000,0,0);}
.m1_c01153{transform:matrix(0.356207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356207,0.000000,0.000000,0.250000,0,0);}
.m73_c01153{transform:matrix(0.357377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357377,0.000000,0.000000,0.250000,0,0);}
.m5c_c01153{transform:matrix(0.377794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377794,0.000000,0.000000,0.250000,0,0);}
.m5d_c01153{transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);}
.m29_c01153{transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);}
.m58_c01153{transform:matrix(0.405805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405805,0.000000,0.000000,0.250000,0,0);}
.m8b_c01153{transform:matrix(0.412048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412048,0.000000,0.000000,0.250000,0,0);}
.v2_c01153{vertical-align:-19.965330px;}
.v1_c01153{vertical-align:-9.979200px;}
.v0_c01153{vertical-align:0.000000px;}
.v3_c01153{vertical-align:7.108200px;}
.lsa_c01153{letter-spacing:-2.882880px;}
.ls7_c01153{letter-spacing:-2.647267px;}
.ls16_c01153{letter-spacing:-2.418577px;}
.lsb_c01153{letter-spacing:-2.037420px;}
.lsf_c01153{letter-spacing:-1.829520px;}
.ls5_c01153{letter-spacing:0.000000px;}
.ls1a_c01153{letter-spacing:0.733671px;}
.ls11_c01153{letter-spacing:0.816871px;}
.ls1_c01153{letter-spacing:0.869816px;}
.ls3_c01153{letter-spacing:1.002972px;}
.lse_c01153{letter-spacing:1.149670px;}
.ls17_c01153{letter-spacing:1.558106px;}
.ls14_c01153{letter-spacing:1.817170px;}
.ls8_c01153{letter-spacing:2.405231px;}
.ls18_c01153{letter-spacing:3.017884px;}
.lsc_c01153{letter-spacing:3.191848px;}
.ls15_c01153{letter-spacing:3.455110px;}
.ls1b_c01153{letter-spacing:3.464138px;}
.ls13_c01153{letter-spacing:3.486829px;}
.lsd_c01153{letter-spacing:3.564000px;}
.ls6_c01153{letter-spacing:3.781810px;}
.ls1c_c01153{letter-spacing:3.801610px;}
.ls0_c01153{letter-spacing:19.897020px;}
.ls2_c01153{letter-spacing:23.200650px;}
.ls19_c01153{letter-spacing:52.747398px;}
.ls12_c01153{letter-spacing:58.449798px;}
.ls9_c01153{letter-spacing:61.300998px;}
.ls10_c01153{letter-spacing:62.726400px;}
.ls4_c01153{letter-spacing:1439.593386px;}
.sc__c01153{text-shadow:none;}
.sc0_c01153{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01153{-webkit-text-stroke:0px transparent;}
.sc0_c01153{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01153{word-spacing:0.000000px;}
._1_c01153{margin-left:-14.446542px;}
._2_c01153{margin-left:-8.553600px;}
._0_c01153{width:11.950400px;}
._3_c01153{width:36.715255px;}
._4_c01153{width:45.872054px;}
.fc0_c01153{color:transparent;}
.fsb_c01153{font-size:22.176000px;}
.fs1_c01153{font-size:27.720000px;}
.fs15_c01153{font-size:33.660000px;}
.fsc_c01153{font-size:42.570000px;}
.fs0_c01153{font-size:43.560000px;}
.fs2_c01153{font-size:44.352000px;}
.fs8_c01153{font-size:47.322000px;}
.fs3_c01153{font-size:50.490000px;}
.fsd_c01153{font-size:52.272000px;}
.fs13_c01153{font-size:52.747398px;}
.fs9_c01153{font-size:58.212000px;}
.fs10_c01153{font-size:58.449798px;}
.fs16_c01153{font-size:60.192000px;}
.fsf_c01153{font-size:60.786198px;}
.fs5_c01153{font-size:61.300998px;}
.fs6_c01153{font-size:62.370000px;}
.fse_c01153{font-size:62.726400px;}
.fs12_c01153{font-size:69.102198px;}
.fsa_c01153{font-size:71.280000px;}
.fs4_c01153{font-size:75.636198px;}
.fs11_c01153{font-size:76.032198px;}
.fs7_c01153{font-size:82.368000px;}
.fs14_c01153{font-size:83.556198px;}
.y0_c01153{bottom:0.000000px;}
.y1_c01153{bottom:76.500000px;}
.y26_c01153{bottom:90.081120px;}
.y25_c01153{bottom:118.593120px;}
.y24_c01153{bottom:151.381920px;}
.y23_c01153{bottom:187.734720px;}
.y21_c01153{bottom:220.162170px;}
.y22_c01153{bottom:220.523520px;}
.y20_c01153{bottom:252.950970px;}
.y1f_c01153{bottom:284.675520px;}
.y1e_c01153{bottom:316.751520px;}
.y1d_c01153{bottom:348.471120px;}
.y1c_c01153{bottom:379.477920px;}
.y1a_c01153{bottom:411.905370px;}
.y1b_c01153{bottom:416.899920px;}
.y19_c01153{bottom:443.629920px;}
.y18_c01153{bottom:461.449920px;}
.y17_c01153{bottom:476.413770px;}
.y16_c01153{bottom:508.846170px;}
.y15_c01153{bottom:541.278570px;}
.y4_c01153{bottom:554.113920px;}
.y14_c01153{bottom:573.359520px;}
.y13_c01153{bottom:606.148320px;}
.y12_c01153{bottom:637.862970px;}
.y11_c01153{bottom:669.943920px;}
.y10_c01153{bottom:702.376320px;}
.y3_c01153{bottom:729.462720px;}
.yf_c01153{bottom:733.383120px;}
.ye_c01153{bottom:762.251520px;}
.yd_c01153{bottom:766.171920px;}
.yb_c01153{bottom:797.891520px;}
.yc_c01153{bottom:800.386320px;}
.y9_c01153{bottom:828.898320px;}
.y8_c01153{bottom:861.330720px;}
.y7_c01153{bottom:893.763120px;}
.y6_c01153{bottom:926.551920px;}
.y2_c01153{bottom:938.313120px;}
.y5_c01153{bottom:1014.221370px;}
.ya_c01153{bottom:1074.101520px;}
.hd_c01153{height:23.128875px;}
.h3_c01153{height:28.911094px;}
.h14_c01153{height:35.129767px;}
.h11_c01153{height:38.927565px;}
.h7_c01153{height:40.826465px;}
.h10_c01153{height:41.775782px;}
.he_c01153{height:41.780127px;}
.h2_c01153{height:42.751758px;}
.h4_c01153{height:46.257750px;}
.ha_c01153{height:46.443955px;}
.hf_c01153{height:51.302109px;}
.h5_c01153{height:52.659492px;}
.hb_c01153{height:60.713297px;}
.h8_c01153{height:61.212744px;}
.h16_c01153{height:62.778375px;}
.h13_c01153{height:67.786287px;}
.hc_c01153{height:69.957422px;}
.h6_c01153{height:74.232792px;}
.h12_c01153{height:74.621444px;}
.h15_c01153{height:82.005839px;}
.h9_c01153{height:83.011500px;}
.h1_c01153{height:1110.000000px;}
.h0_c01153{height:1263.000000px;}
.w1_c01153{width:775.500000px;}
.w0_c01153{width:892.500000px;}
.x4_c01153{left:-1.968465px;}
.x0_c01153{left:0.000000px;}
.x3_c01153{left:53.694285px;}
.x1_c01153{left:58.500000px;}
.x2_c01153{left:97.155285px;}
.x67_c01153{left:152.422035px;}
.x31_c01153{left:153.491235px;}
.xe_c01153{left:155.332635px;}
.x6_c01153{left:157.441335px;}
.x24_c01153{left:167.955135px;}
.x63_c01153{left:188.621385px;}
.x2a_c01153{left:190.051935px;}
.x47_c01153{left:198.397635px;}
.x16_c01153{left:211.124085px;}
.x25_c01153{left:221.573535px;}
.xf_c01153{left:232.513035px;}
.x7_c01153{left:233.730735px;}
.x32_c01153{left:243.625785px;}
.x17_c01153{left:245.194935px;}
.x38_c01153{left:254.075235px;}
.x26_c01153{left:255.258285px;}
.x41_c01153{left:265.707735px;}
.x4c_c01153{left:266.960085px;}
.x1a_c01153{left:277.003635px;}
.x40_c01153{left:278.122335px;}
.x10_c01153{left:289.868685px;}
.x64_c01153{left:297.392685px;}
.x33_c01153{left:299.318235px;}
.x5b_c01153{left:306.921435px;}
.x2b_c01153{left:310.668585px;}
.x39_c01153{left:312.668385px;}
.x5c_c01153{left:317.672835px;}
.x68_c01153{left:319.370685px;}
.x42_c01153{left:320.479485px;}
.x48_c01153{left:321.959535px;}
.x8_c01153{left:323.632635px;}
.x5f_c01153{left:331.735785px;}
.x4e_c01153{left:333.111885px;}
.x66_c01153{left:335.106735px;}
.x44_c01153{left:343.412835px;}
.x1f_c01153{left:354.238485px;}
.x9_c01153{left:356.847135px;}
.x4f_c01153{left:364.915635px;}
.x1b_c01153{left:366.123435px;}
.x2c_c01153{left:377.340135px;}
.x27_c01153{left:378.572685px;}
.x4b_c01153{left:383.745435px;}
.x34_c01153{left:387.339135px;}
.x3a_c01153{left:388.883535px;}
.x4d_c01153{left:398.892435px;}
.x49_c01153{left:399.961635px;}
.x20_c01153{left:402.223785px;}
.x50_c01153{left:410.227935px;}
.x11_c01153{left:412.074285px;}
.x21_c01153{left:419.425035px;}
.x55_c01153{left:420.613035px;}
.x3b_c01153{left:422.083185px;}
.x43_c01153{left:431.889135px;}
.x1c_c01153{left:443.293935px;}
.x51_c01153{left:453.283035px;}
.xa_c01153{left:454.391835px;}
.x56_c01153{left:455.857035px;}
.x57_c01153{left:464.682885px;}
.x35_c01153{left:476.206485px;}
.x28_c01153{left:477.359835px;}
.x60_c01153{left:478.364685px;}
.x5d_c01153{left:486.794535px;}
.x22_c01153{left:487.923135px;}
.x52_c01153{left:497.501385px;}
.x36_c01153{left:498.971535px;}
.xb_c01153{left:500.040735px;}
.x12_c01153{left:509.247735px;}
.x4a_c01153{left:520.202085px;}
.x3c_c01153{left:521.553435px;}
.x37_c01153{left:522.914685px;}
.x58_c01153{left:531.735585px;}
.x1d_c01153{left:533.334435px;}
.x23_c01153{left:536.853885px;}
.x2d_c01153{left:541.803885px;}
.x53_c01153{left:542.942385px;}
.x13_c01153{left:544.590735px;}
.x3d_c01153{left:554.832285px;}
.x1e_c01153{left:565.182735px;}
.x2e_c01153{left:566.741985px;}
.x61_c01153{left:574.459035px;}
.x14_c01153{left:577.151835px;}
.x59_c01153{left:586.561785px;}
.xc_c01153{left:588.853635px;}
.x65_c01153{left:597.827985px;}
.x45_c01153{left:600.614835px;}
.x2f_c01153{left:609.881235px;}
.x29_c01153{left:620.088135px;}
.x5e_c01153{left:631.982985px;}
.x54_c01153{left:633.071985px;}
.x3e_c01153{left:641.937435px;}
.x69_c01153{left:643.412535px;}
.x5_c01153{left:653.505585px;}
.x15_c01153{left:655.163835px;}
.x62_c01153{left:675.884535px;}
.xd_c01153{left:676.943835px;}
.x5a_c01153{left:686.432985px;}
.x18_c01153{left:687.952635px;}
.x30_c01153{left:697.936785px;}
.x3f_c01153{left:710.049435px;}
.x19_c01153{left:716.444835px;}
.x46_c01153{left:717.731835px;}
@media print{
.v2_c01153{vertical-align:-17.746960pt;}
.v1_c01153{vertical-align:-8.870400pt;}
.v0_c01153{vertical-align:0.000000pt;}
.v3_c01153{vertical-align:6.318400pt;}
.lsa_c01153{letter-spacing:-2.562560pt;}
.ls7_c01153{letter-spacing:-2.353126pt;}
.ls16_c01153{letter-spacing:-2.149846pt;}
.lsb_c01153{letter-spacing:-1.811040pt;}
.lsf_c01153{letter-spacing:-1.626240pt;}
.ls5_c01153{letter-spacing:0.000000pt;}
.ls1a_c01153{letter-spacing:0.652152pt;}
.ls11_c01153{letter-spacing:0.726108pt;}
.ls1_c01153{letter-spacing:0.773170pt;}
.ls3_c01153{letter-spacing:0.891531pt;}
.lse_c01153{letter-spacing:1.021929pt;}
.ls17_c01153{letter-spacing:1.384983pt;}
.ls14_c01153{letter-spacing:1.615262pt;}
.ls8_c01153{letter-spacing:2.137983pt;}
.ls18_c01153{letter-spacing:2.682564pt;}
.lsc_c01153{letter-spacing:2.837198pt;}
.ls15_c01153{letter-spacing:3.071209pt;}
.ls1b_c01153{letter-spacing:3.079234pt;}
.ls13_c01153{letter-spacing:3.099403pt;}
.lsd_c01153{letter-spacing:3.168000pt;}
.ls6_c01153{letter-spacing:3.361609pt;}
.ls1c_c01153{letter-spacing:3.379209pt;}
.ls0_c01153{letter-spacing:17.686240pt;}
.ls2_c01153{letter-spacing:20.622800pt;}
.ls19_c01153{letter-spacing:46.886576pt;}
.ls12_c01153{letter-spacing:51.955376pt;}
.ls9_c01153{letter-spacing:54.489776pt;}
.ls10_c01153{letter-spacing:55.756800pt;}
.ls4_c01153{letter-spacing:1279.638565pt;}
.ws0_c01153{word-spacing:0.000000pt;}
._1_c01153{margin-left:-12.841371pt;}
._2_c01153{margin-left:-7.603200pt;}
._0_c01153{width:10.622578pt;}
._3_c01153{width:32.635782pt;}
._4_c01153{width:40.775159pt;}
.fsb_c01153{font-size:19.712000pt;}
.fs1_c01153{font-size:24.640000pt;}
.fs15_c01153{font-size:29.920000pt;}
.fsc_c01153{font-size:37.840000pt;}
.fs0_c01153{font-size:38.720000pt;}
.fs2_c01153{font-size:39.424000pt;}
.fs8_c01153{font-size:42.064000pt;}
.fs3_c01153{font-size:44.880000pt;}
.fsd_c01153{font-size:46.464000pt;}
.fs13_c01153{font-size:46.886576pt;}
.fs9_c01153{font-size:51.744000pt;}
.fs10_c01153{font-size:51.955376pt;}
.fs16_c01153{font-size:53.504000pt;}
.fsf_c01153{font-size:54.032176pt;}
.fs5_c01153{font-size:54.489776pt;}
.fs6_c01153{font-size:55.440000pt;}
.fse_c01153{font-size:55.756800pt;}
.fs12_c01153{font-size:61.424176pt;}
.fsa_c01153{font-size:63.360000pt;}
.fs4_c01153{font-size:67.232176pt;}
.fs11_c01153{font-size:67.584176pt;}
.fs7_c01153{font-size:73.216000pt;}
.fs14_c01153{font-size:74.272176pt;}
.y0_c01153{bottom:0.000000pt;}
.y1_c01153{bottom:68.000000pt;}
.y26_c01153{bottom:80.072107pt;}
.y25_c01153{bottom:105.416107pt;}
.y24_c01153{bottom:134.561707pt;}
.y23_c01153{bottom:166.875307pt;}
.y21_c01153{bottom:195.699707pt;}
.y22_c01153{bottom:196.020907pt;}
.y20_c01153{bottom:224.845307pt;}
.y1f_c01153{bottom:253.044907pt;}
.y1e_c01153{bottom:281.556907pt;}
.y1d_c01153{bottom:309.752107pt;}
.y1c_c01153{bottom:337.313707pt;}
.y1a_c01153{bottom:366.138107pt;}
.y1b_c01153{bottom:370.577707pt;}
.y19_c01153{bottom:394.337707pt;}
.y18_c01153{bottom:410.177707pt;}
.y17_c01153{bottom:423.478907pt;}
.y16_c01153{bottom:452.307707pt;}
.y15_c01153{bottom:481.136507pt;}
.y4_c01153{bottom:492.545707pt;}
.y14_c01153{bottom:509.652907pt;}
.y13_c01153{bottom:538.798507pt;}
.y12_c01153{bottom:566.989307pt;}
.y11_c01153{bottom:595.505707pt;}
.y10_c01153{bottom:624.334507pt;}
.y3_c01153{bottom:648.411307pt;}
.yf_c01153{bottom:651.896107pt;}
.ye_c01153{bottom:677.556907pt;}
.yd_c01153{bottom:681.041707pt;}
.yb_c01153{bottom:709.236907pt;}
.yc_c01153{bottom:711.454507pt;}
.y9_c01153{bottom:736.798507pt;}
.y8_c01153{bottom:765.627307pt;}
.y7_c01153{bottom:794.456107pt;}
.y6_c01153{bottom:823.601707pt;}
.y2_c01153{bottom:834.056107pt;}
.y5_c01153{bottom:901.530107pt;}
.ya_c01153{bottom:954.756907pt;}
.hd_c01153{height:20.559000pt;}
.h3_c01153{height:25.698750pt;}
.h14_c01153{height:31.226460pt;}
.h11_c01153{height:34.602280pt;}
.h7_c01153{height:36.290191pt;}
.h10_c01153{height:37.134029pt;}
.he_c01153{height:37.137891pt;}
.h2_c01153{height:38.001563pt;}
.h4_c01153{height:41.118000pt;}
.ha_c01153{height:41.283516pt;}
.hf_c01153{height:45.601875pt;}
.h5_c01153{height:46.808438pt;}
.hb_c01153{height:53.967375pt;}
.h8_c01153{height:54.411328pt;}
.h16_c01153{height:55.803000pt;}
.h13_c01153{height:60.254477pt;}
.hc_c01153{height:62.184375pt;}
.h6_c01153{height:65.984704pt;}
.h12_c01153{height:66.330173pt;}
.h15_c01153{height:72.894079pt;}
.h9_c01153{height:73.788000pt;}
.h1_c01153{height:986.666667pt;}
.h0_c01153{height:1122.666667pt;}
.w1_c01153{width:689.333333pt;}
.w0_c01153{width:793.333333pt;}
.x4_c01153{left:-1.749747pt;}
.x0_c01153{left:0.000000pt;}
.x3_c01153{left:47.728253pt;}
.x1_c01153{left:52.000000pt;}
.x2_c01153{left:86.360253pt;}
.x67_c01153{left:135.486253pt;}
.x31_c01153{left:136.436653pt;}
.xe_c01153{left:138.073453pt;}
.x6_c01153{left:139.947853pt;}
.x24_c01153{left:149.293453pt;}
.x63_c01153{left:167.663453pt;}
.x2a_c01153{left:168.935053pt;}
.x47_c01153{left:176.353453pt;}
.x16_c01153{left:187.665853pt;}
.x25_c01153{left:196.954253pt;}
.xf_c01153{left:206.678253pt;}
.x7_c01153{left:207.760653pt;}
.x32_c01153{left:216.556253pt;}
.x17_c01153{left:217.951053pt;}
.x38_c01153{left:225.844653pt;}
.x26_c01153{left:226.896253pt;}
.x41_c01153{left:236.184653pt;}
.x4c_c01153{left:237.297853pt;}
.x1a_c01153{left:246.225453pt;}
.x40_c01153{left:247.219853pt;}
.x10_c01153{left:257.661053pt;}
.x64_c01153{left:264.349053pt;}
.x33_c01153{left:266.060653pt;}
.x5b_c01153{left:272.819053pt;}
.x2b_c01153{left:276.149853pt;}
.x39_c01153{left:277.927453pt;}
.x5c_c01153{left:282.375853pt;}
.x68_c01153{left:283.885053pt;}
.x42_c01153{left:284.870653pt;}
.x48_c01153{left:286.186253pt;}
.x8_c01153{left:287.673453pt;}
.x5f_c01153{left:294.876253pt;}
.x4e_c01153{left:296.099453pt;}
.x66_c01153{left:297.872653pt;}
.x44_c01153{left:305.255853pt;}
.x1f_c01153{left:314.878653pt;}
.x9_c01153{left:317.197453pt;}
.x4f_c01153{left:324.369453pt;}
.x1b_c01153{left:325.443053pt;}
.x2c_c01153{left:335.413453pt;}
.x27_c01153{left:336.509053pt;}
.x4b_c01153{left:341.107053pt;}
.x34_c01153{left:344.301453pt;}
.x3a_c01153{left:345.674253pt;}
.x4d_c01153{left:354.571053pt;}
.x49_c01153{left:355.521453pt;}
.x20_c01153{left:357.532253pt;}
.x50_c01153{left:364.647053pt;}
.x11_c01153{left:366.288253pt;}
.x21_c01153{left:372.822253pt;}
.x55_c01153{left:373.878253pt;}
.x3b_c01153{left:375.185053pt;}
.x43_c01153{left:383.901453pt;}
.x1c_c01153{left:394.039053pt;}
.x51_c01153{left:402.918253pt;}
.xa_c01153{left:403.903853pt;}
.x56_c01153{left:405.206253pt;}
.x57_c01153{left:413.051453pt;}
.x35_c01153{left:423.294653pt;}
.x28_c01153{left:424.319853pt;}
.x60_c01153{left:425.213053pt;}
.x5d_c01153{left:432.706253pt;}
.x22_c01153{left:433.709453pt;}
.x52_c01153{left:442.223453pt;}
.x36_c01153{left:443.530253pt;}
.xb_c01153{left:444.480653pt;}
.x12_c01153{left:452.664653pt;}
.x4a_c01153{left:462.401853pt;}
.x3c_c01153{left:463.603053pt;}
.x37_c01153{left:464.813053pt;}
.x58_c01153{left:472.653853pt;}
.x1d_c01153{left:474.075053pt;}
.x23_c01153{left:477.203453pt;}
.x2d_c01153{left:481.603453pt;}
.x53_c01153{left:482.615453pt;}
.x13_c01153{left:484.080653pt;}
.x3d_c01153{left:493.184253pt;}
.x1e_c01153{left:502.384653pt;}
.x2e_c01153{left:503.770653pt;}
.x61_c01153{left:510.630253pt;}
.x14_c01153{left:513.023853pt;}
.x59_c01153{left:521.388253pt;}
.xc_c01153{left:523.425453pt;}
.x65_c01153{left:531.402653pt;}
.x45_c01153{left:533.879853pt;}
.x2f_c01153{left:542.116653pt;}
.x29_c01153{left:551.189453pt;}
.x5e_c01153{left:561.762653pt;}
.x54_c01153{left:562.730653pt;}
.x3e_c01153{left:570.611053pt;}
.x69_c01153{left:571.922253pt;}
.x5_c01153{left:580.893853pt;}
.x15_c01153{left:582.367853pt;}
.x62_c01153{left:600.786253pt;}
.xd_c01153{left:601.727853pt;}
.x5a_c01153{left:610.162653pt;}
.x18_c01153{left:611.513453pt;}
.x30_c01153{left:620.388253pt;}
.x3f_c01153{left:631.155053pt;}
.x19_c01153{left:636.839853pt;}
.x46_c01153{left:637.983853pt;}
}





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

.ir_c01154:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01154{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01154;src:url('chunks/assets/font_0af6f3adefbe32f79ab50796.woff2')format("woff");}.ff1_c01154{font-family:ff1_c01154;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01154;src:url('chunks/assets/font_8677068c98a81d1494170bf8.woff2')format("woff");}.ff2_c01154{font-family:ff2_c01154;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01154;src:url('chunks/assets/font_8b0504f4b7ae5ba8a55d24aa.woff2')format("woff");}.ff3_c01154{font-family:ff3_c01154;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01154;src:url('chunks/assets/font_5aa3a43669d113c531b3dcc1.woff2')format("woff");}.ff4_c01154{font-family:ff4_c01154;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01154;src:url('chunks/assets/font_54ad08fd14969e65456bd84c.woff2')format("woff");}.ff5_c01154{font-family:ff5_c01154;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m15_c01154{transform:matrix(0.029070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.029070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.029070,0.000000,0.000000,0.250000,0,0);}
.m2d_c01154{transform:matrix(0.051342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.051342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.051342,0.000000,0.000000,0.250000,0,0);}
.m14_c01154{transform:matrix(0.069767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.069767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.069767,0.000000,0.000000,0.250000,0,0);}
.m77_c01154{transform:matrix(0.076923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076923,0.000000,0.000000,0.250000,0,0);}
.m2c_c01154{transform:matrix(0.079390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.079390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.079390,0.000000,0.000000,0.250000,0,0);}
.m16_c01154{transform:matrix(0.083184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083184,0.000000,0.000000,0.250000,0,0);}
.m17_c01154{transform:matrix(0.088127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088127,0.000000,0.000000,0.250000,0,0);}
.m63_c01154{transform:matrix(0.172256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172256,0.000000,0.000000,0.250000,0,0);}
.m55_c01154{transform:matrix(0.187499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187499,0.000000,0.000000,0.250000,0,0);}
.m78_c01154{transform:matrix(0.189103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189103,0.000000,0.000000,0.250000,0,0);}
.m76_c01154{transform:matrix(0.195513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195513,0.000000,0.000000,0.250000,0,0);}
.m41_c01154{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m7a_c01154{transform:matrix(0.228632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228632,0.000000,0.000000,0.250000,0,0);}
.m0_c01154{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m6c_c01154{transform:matrix(0.252111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252111,0.000000,0.000000,0.250000,0,0);}
.m64_c01154{transform:matrix(0.254671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254671,0.000000,0.000000,0.250000,0,0);}
.m81_c01154{transform:matrix(0.256401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256401,0.000000,0.000000,0.250000,0,0);}
.m87_c01154{transform:matrix(0.258313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258313,0.000000,0.000000,0.250000,0,0);}
.m3_c01154{transform:matrix(0.262404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262404,0.000000,0.000000,0.250000,0,0);}
.m46_c01154{transform:matrix(0.263376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263376,0.000000,0.000000,0.250000,0,0);}
.m6_c01154{transform:matrix(0.265103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265103,0.000000,0.000000,0.250000,0,0);}
.m40_c01154{transform:matrix(0.266166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266166,0.000000,0.000000,0.250000,0,0);}
.m83_c01154{transform:matrix(0.267450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267450,0.000000,0.000000,0.250000,0,0);}
.m11_c01154{transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);}
.m3d_c01154{transform:matrix(0.269411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269411,0.000000,0.000000,0.250000,0,0);}
.m52_c01154{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m33_c01154{transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);}
.m80_c01154{transform:matrix(0.270533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270533,0.000000,0.000000,0.250000,0,0);}
.m59_c01154{transform:matrix(0.271147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271147,0.000000,0.000000,0.250000,0,0);}
.m5b_c01154{transform:matrix(0.271580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271580,0.000000,0.000000,0.250000,0,0);}
.mc_c01154{transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);}
.m1a_c01154{transform:matrix(0.273852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273852,0.000000,0.000000,0.250000,0,0);}
.m74_c01154{transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);}
.m5f_c01154{transform:matrix(0.276428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276428,0.000000,0.000000,0.250000,0,0);}
.m86_c01154{transform:matrix(0.278105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278105,0.000000,0.000000,0.250000,0,0);}
.m2f_c01154{transform:matrix(0.278148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278148,0.000000,0.000000,0.250000,0,0);}
.m5e_c01154{transform:matrix(0.278832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278832,0.000000,0.000000,0.250000,0,0);}
.m18_c01154{transform:matrix(0.280067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280067,0.000000,0.000000,0.250000,0,0);}
.m8_c01154{transform:matrix(0.280304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280304,0.000000,0.000000,0.250000,0,0);}
.m26_c01154{transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);}
.m75_c01154{transform:matrix(0.282606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282606,0.000000,0.000000,0.250000,0,0);}
.m6e_c01154{transform:matrix(0.282883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282883,0.000000,0.000000,0.250000,0,0);}
.m69_c01154{transform:matrix(0.283484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283484,0.000000,0.000000,0.250000,0,0);}
.m35_c01154{transform:matrix(0.284229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284229,0.000000,0.000000,0.250000,0,0);}
.m36_c01154{transform:matrix(0.285517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285517,0.000000,0.000000,0.250000,0,0);}
.m84_c01154{transform:matrix(0.285665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285665,0.000000,0.000000,0.250000,0,0);}
.m6d_c01154{transform:matrix(0.285722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285722,0.000000,0.000000,0.250000,0,0);}
.m7e_c01154{transform:matrix(0.286936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286936,0.000000,0.000000,0.250000,0,0);}
.m7f_c01154{transform:matrix(0.287758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287758,0.000000,0.000000,0.250000,0,0);}
.m62_c01154{transform:matrix(0.288056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288056,0.000000,0.000000,0.250000,0,0);}
.m5a_c01154{transform:matrix(0.288289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288289,0.000000,0.000000,0.250000,0,0);}
.m4d_c01154{transform:matrix(0.289629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289629,0.000000,0.000000,0.250000,0,0);}
.m1_c01154{transform:matrix(0.291458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291458,0.000000,0.000000,0.250000,0,0);}
.m1f_c01154{transform:matrix(0.291514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291514,0.000000,0.000000,0.250000,0,0);}
.m4f_c01154{transform:matrix(0.291864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291864,0.000000,0.000000,0.250000,0,0);}
.m65_c01154{transform:matrix(0.293938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293938,0.000000,0.000000,0.250000,0,0);}
.m6a_c01154{transform:matrix(0.294075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294075,0.000000,0.000000,0.250000,0,0);}
.m21_c01154{transform:matrix(0.294503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294503,0.000000,0.000000,0.250000,0,0);}
.m70_c01154{transform:matrix(0.296044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296044,0.000000,0.000000,0.250000,0,0);}
.m31_c01154{transform:matrix(0.296335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296335,0.000000,0.000000,0.250000,0,0);}
.m85_c01154{transform:matrix(0.296995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296995,0.000000,0.000000,0.250000,0,0);}
.m19_c01154{transform:matrix(0.297270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297270,0.000000,0.000000,0.250000,0,0);}
.m22_c01154{transform:matrix(0.298230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298230,0.000000,0.000000,0.250000,0,0);}
.m2_c01154{transform:matrix(0.299042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299042,0.000000,0.000000,0.250000,0,0);}
.m23_c01154{transform:matrix(0.299051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299051,0.000000,0.000000,0.250000,0,0);}
.m1d_c01154{transform:matrix(0.299361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299361,0.000000,0.000000,0.250000,0,0);}
.m8a_c01154{transform:matrix(0.300046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300046,0.000000,0.000000,0.250000,0,0);}
.m7d_c01154{transform:matrix(0.300126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300126,0.000000,0.000000,0.250000,0,0);}
.m1c_c01154{transform:matrix(0.300352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300352,0.000000,0.000000,0.250000,0,0);}
.m53_c01154{transform:matrix(0.301050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301050,0.000000,0.000000,0.250000,0,0);}
.m4_c01154{transform:matrix(0.301617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301617,0.000000,0.000000,0.250000,0,0);}
.m48_c01154{transform:matrix(0.302495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302495,0.000000,0.000000,0.250000,0,0);}
.m3c_c01154{transform:matrix(0.303960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303960,0.000000,0.000000,0.250000,0,0);}
.m57_c01154{transform:matrix(0.304430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304430,0.000000,0.000000,0.250000,0,0);}
.m5c_c01154{transform:matrix(0.304872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304872,0.000000,0.000000,0.250000,0,0);}
.m43_c01154{transform:matrix(0.304921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304921,0.000000,0.000000,0.250000,0,0);}
.m4b_c01154{transform:matrix(0.305504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305504,0.000000,0.000000,0.250000,0,0);}
.m20_c01154{transform:matrix(0.305938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305938,0.000000,0.000000,0.250000,0,0);}
.m56_c01154{transform:matrix(0.306591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306591,0.000000,0.000000,0.250000,0,0);}
.m7b_c01154{transform:matrix(0.306793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306793,0.000000,0.000000,0.250000,0,0);}
.m45_c01154{transform:matrix(0.307118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307118,0.000000,0.000000,0.250000,0,0);}
.m66_c01154{transform:matrix(0.307280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307280,0.000000,0.000000,0.250000,0,0);}
.m72_c01154{transform:matrix(0.307690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307690,0.000000,0.000000,0.250000,0,0);}
.m3b_c01154{transform:matrix(0.308087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308087,0.000000,0.000000,0.250000,0,0);}
.m10_c01154{transform:matrix(0.308270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308270,0.000000,0.000000,0.250000,0,0);}
.m2a_c01154{transform:matrix(0.308387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308387,0.000000,0.000000,0.250000,0,0);}
.m47_c01154{transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308670,0.000000,0.000000,0.250000,0,0);}
.m27_c01154{transform:matrix(0.309046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309046,0.000000,0.000000,0.250000,0,0);}
.m5_c01154{transform:matrix(0.309483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309483,0.000000,0.000000,0.250000,0,0);}
.m89_c01154{transform:matrix(0.309637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309637,0.000000,0.000000,0.250000,0,0);}
.m51_c01154{transform:matrix(0.310842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310842,0.000000,0.000000,0.250000,0,0);}
.m28_c01154{transform:matrix(0.310940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310940,0.000000,0.000000,0.250000,0,0);}
.m13_c01154{transform:matrix(0.312074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312074,0.000000,0.000000,0.250000,0,0);}
.m7_c01154{transform:matrix(0.312949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312949,0.000000,0.000000,0.250000,0,0);}
.m1e_c01154{transform:matrix(0.313118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313118,0.000000,0.000000,0.250000,0,0);}
.m30_c01154{transform:matrix(0.313655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313655,0.000000,0.000000,0.250000,0,0);}
.m67_c01154{transform:matrix(0.314204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314204,0.000000,0.000000,0.250000,0,0);}
.m32_c01154{transform:matrix(0.314599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314599,0.000000,0.000000,0.250000,0,0);}
.m39_c01154{transform:matrix(0.316013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316013,0.000000,0.000000,0.250000,0,0);}
.mf_c01154{transform:matrix(0.316134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316134,0.000000,0.000000,0.250000,0,0);}
.m2b_c01154{transform:matrix(0.316292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316292,0.000000,0.000000,0.250000,0,0);}
.m82_c01154{transform:matrix(0.316472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316472,0.000000,0.000000,0.250000,0,0);}
.m3f_c01154{transform:matrix(0.316965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316965,0.000000,0.000000,0.250000,0,0);}
.m29_c01154{transform:matrix(0.317328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317328,0.000000,0.000000,0.250000,0,0);}
.m25_c01154{transform:matrix(0.320057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320057,0.000000,0.000000,0.250000,0,0);}
.m61_c01154{transform:matrix(0.320581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320581,0.000000,0.000000,0.250000,0,0);}
.m34_c01154{transform:matrix(0.321275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321275,0.000000,0.000000,0.250000,0,0);}
.m49_c01154{transform:matrix(0.321591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321591,0.000000,0.000000,0.250000,0,0);}
.md_c01154{transform:matrix(0.322928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322928,0.000000,0.000000,0.250000,0,0);}
.m5d_c01154{transform:matrix(0.323438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323438,0.000000,0.000000,0.250000,0,0);}
.m42_c01154{transform:matrix(0.323908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323908,0.000000,0.000000,0.250000,0,0);}
.m58_c01154{transform:matrix(0.324138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324138,0.000000,0.000000,0.250000,0,0);}
.m38_c01154{transform:matrix(0.327881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327881,0.000000,0.000000,0.250000,0,0);}
.m3e_c01154{transform:matrix(0.328760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328760,0.000000,0.000000,0.250000,0,0);}
.m1b_c01154{transform:matrix(0.329226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329226,0.000000,0.000000,0.250000,0,0);}
.m68_c01154{transform:matrix(0.330011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330011,0.000000,0.000000,0.250000,0,0);}
.m24_c01154{transform:matrix(0.330403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330403,0.000000,0.000000,0.250000,0,0);}
.m3a_c01154{transform:matrix(0.330825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330825,0.000000,0.000000,0.250000,0,0);}
.m37_c01154{transform:matrix(0.331226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331226,0.000000,0.000000,0.250000,0,0);}
.m79_c01154{transform:matrix(0.331264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331264,0.000000,0.000000,0.250000,0,0);}
.m9_c01154{transform:matrix(0.334373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334373,0.000000,0.000000,0.250000,0,0);}
.m6b_c01154{transform:matrix(0.339606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339606,0.000000,0.000000,0.250000,0,0);}
.m54_c01154{transform:matrix(0.342020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342020,0.000000,0.000000,0.250000,0,0);}
.m50_c01154{transform:matrix(0.345712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345712,0.000000,0.000000,0.250000,0,0);}
.m6f_c01154{transform:matrix(0.347986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347986,0.000000,0.000000,0.250000,0,0);}
.m4e_c01154{transform:matrix(0.348493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348493,0.000000,0.000000,0.250000,0,0);}
.m12_c01154{transform:matrix(0.355252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355252,0.000000,0.000000,0.250000,0,0);}
.m73_c01154{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_c01154{transform:matrix(0.366367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366367,0.000000,0.000000,0.250000,0,0);}
.ma_c01154{transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);}
.m2e_c01154{transform:matrix(0.366453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366453,0.000000,0.000000,0.250000,0,0);}
.m88_c01154{transform:matrix(0.378805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378805,0.000000,0.000000,0.250000,0,0);}
.m7c_c01154{transform:matrix(0.386710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386710,0.000000,0.000000,0.250000,0,0);}
.m71_c01154{transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);}
.me_c01154{transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);}
.m4c_c01154{transform:matrix(0.405507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405507,0.000000,0.000000,0.250000,0,0);}
.m60_c01154{transform:matrix(0.407434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407434,0.000000,0.000000,0.250000,0,0);}
.m44_c01154{transform:matrix(0.421263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421263,0.000000,0.000000,0.250000,0,0);}
.m4a_c01154{transform:matrix(0.424967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424967,0.000000,0.000000,0.250000,0,0);}
.v0_c01154{vertical-align:0.000000px;}
.ls8_c01154{letter-spacing:-3.451140px;}
.ls7_c01154{letter-spacing:-3.332815px;}
.ls17_c01154{letter-spacing:-0.521890px;}
.ls1_c01154{letter-spacing:0.000000px;}
.lsc_c01154{letter-spacing:0.703417px;}
.ls14_c01154{letter-spacing:1.013525px;}
.ls6_c01154{letter-spacing:1.225306px;}
.ls11_c01154{letter-spacing:1.706447px;}
.ls0_c01154{letter-spacing:1.719194px;}
.ls15_c01154{letter-spacing:1.930500px;}
.lsb_c01154{letter-spacing:3.474900px;}
.lse_c01154{letter-spacing:3.484810px;}
.ls4_c01154{letter-spacing:3.524400px;}
.ls9_c01154{letter-spacing:3.564000px;}
.ls2_c01154{letter-spacing:3.682810px;}
.lsd_c01154{letter-spacing:3.722400px;}
.ls3_c01154{letter-spacing:3.781810px;}
.ls10_c01154{letter-spacing:3.801610px;}
.ls18_c01154{letter-spacing:3.903273px;}
.ls13_c01154{letter-spacing:3.990987px;}
.lsa_c01154{letter-spacing:51.321798px;}
.ls16_c01154{letter-spacing:55.598598px;}
.ls12_c01154{letter-spacing:58.449798px;}
.lsf_c01154{letter-spacing:59.875398px;}
.ls5_c01154{letter-spacing:61.300998px;}
.sc__c01154{text-shadow:none;}
.sc0_c01154{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01154{-webkit-text-stroke:0px transparent;}
.sc0_c01154{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01154{word-spacing:-21.318185px;}
.ws1_c01154{word-spacing:-18.909050px;}
.ws2_c01154{word-spacing:0.000000px;}
._2_c01154{margin-left:-15.882834px;}
._0_c01154{margin-left:-14.178859px;}
._4_c01154{margin-left:-3.688850px;}
._1_c01154{width:9.226701px;}
._3_c01154{width:33.683166px;}
.fc0_c01154{color:transparent;}
.fs1_c01154{font-size:22.176000px;}
.fs3_c01154{font-size:27.720000px;}
.fs16_c01154{font-size:38.610000px;}
.fs0_c01154{font-size:38.808000px;}
.fsa_c01154{font-size:51.321798px;}
.fsc_c01154{font-size:55.440000px;}
.fs18_c01154{font-size:55.598598px;}
.fs14_c01154{font-size:58.449798px;}
.fsf_c01154{font-size:59.875398px;}
.fs6_c01154{font-size:61.300998px;}
.fs7_c01154{font-size:66.330000px;}
.fs10_c01154{font-size:68.112198px;}
.fsb_c01154{font-size:69.498000px;}
.fse_c01154{font-size:69.696198px;}
.fs5_c01154{font-size:70.488000px;}
.fs9_c01154{font-size:71.280000px;}
.fs2_c01154{font-size:73.656198px;}
.fsd_c01154{font-size:74.448000px;}
.fs4_c01154{font-size:75.636198px;}
.fs11_c01154{font-size:76.032198px;}
.fs19_c01154{font-size:78.804000px;}
.fs13_c01154{font-size:79.002198px;}
.fs17_c01154{font-size:79.200000px;}
.fs15_c01154{font-size:81.972198px;}
.fs12_c01154{font-size:87.714000px;}
.fs8_c01154{font-size:98.604000px;}
.y0_c01154{bottom:0.000000px;}
.y1d_c01154{bottom:58.712985px;}
.y1_c01154{bottom:76.500000px;}
.y1c_c01154{bottom:130.349385px;}
.y1b_c01154{bottom:195.219135px;}
.y1a_c01154{bottom:227.290185px;}
.y18_c01154{bottom:260.435385px;}
.y19_c01154{bottom:265.429935px;}
.y17_c01154{bottom:325.305135px;}
.y16_c01154{bottom:357.381135px;}
.y15_c01154{bottom:421.528185px;}
.y14_c01154{bottom:485.323785px;}
.y13_c01154{bottom:548.411535px;}
.y12_c01154{bottom:580.482585px;}
.y11_c01154{bottom:612.563535px;}
.y10_c01154{bottom:623.963385px;}
.yf_c01154{bottom:644.634585px;}
.ye_c01154{bottom:677.423385px;}
.yd_c01154{bottom:708.791535px;}
.yc_c01154{bottom:740.862585px;}
.yb_c01154{bottom:772.943535px;}
.ya_c01154{bottom:804.658185px;}
.y9_c01154{bottom:837.090585px;}
.y8_c01154{bottom:867.384585px;}
.y7_c01154{bottom:900.891135px;}
.y6_c01154{bottom:931.897935px;}
.y5_c01154{bottom:967.181535px;}
.y3_c01154{bottom:996.762735px;}
.y4_c01154{bottom:1074.096585px;}
.y2_c01154{bottom:1105.816185px;}
.h3_c01154{height:23.128875px;}
.h5_c01154{height:28.911094px;}
.hb_c01154{height:34.180317px;}
.h18_c01154{height:37.028666px;}
.h14_c01154{height:38.927565px;}
.h10_c01154{height:39.877015px;}
.h16_c01154{height:40.269023px;}
.h2_c01154{height:40.475531px;}
.h8_c01154{height:40.826465px;}
.hd_c01154{height:57.822188px;}
.hc_c01154{height:68.208486px;}
.h7_c01154{height:69.180117px;}
.ha_c01154{height:69.922617px;}
.h11_c01154{height:71.038894px;}
.h4_c01154{height:72.289530px;}
.hf_c01154{height:72.690957px;}
.he_c01154{height:73.066641px;}
.h6_c01154{height:74.232792px;}
.h12_c01154{height:76.626200px;}
.h19_c01154{height:77.341816px;}
.h17_c01154{height:77.730469px;}
.h15_c01154{height:85.494441px;}
.h13_c01154{height:86.086494px;}
.h9_c01154{height:96.774434px;}
.h1_c01154{height:1110.000000px;}
.h0_c01154{height:1263.000000px;}
.w1_c01154{width:775.500000px;}
.w0_c01154{width:892.500000px;}
.x2_c01154{left:-1.597215px;}
.x0_c01154{left:0.000000px;}
.x1_c01154{left:58.500000px;}
.x42_c01154{left:93.002235px;}
.x43_c01154{left:147.432435px;}
.x48_c01154{left:148.491735px;}
.x35_c01154{left:149.630235px;}
.x5_c01154{left:151.753785px;}
.x50_c01154{left:181.978485px;}
.x2f_c01154{left:183.913935px;}
.x5b_c01154{left:185.943435px;}
.xc_c01154{left:205.149435px;}
.x29_c01154{left:206.490885px;}
.x49_c01154{left:215.846385px;}
.x4a_c01154{left:224.474235px;}
.x47_c01154{left:227.058135px;}
.x14_c01154{left:228.241185px;}
.x44_c01154{left:237.552135px;}
.x36_c01154{left:239.254935px;}
.x6_c01154{left:247.996635px;}
.xd_c01154{left:250.288485px;}
.x7_c01154{left:261.054735px;}
.x51_c01154{left:270.816135px;}
.x3e_c01154{left:272.068485px;}
.x3b_c01154{left:282.686235px;}
.x1f_c01154{left:283.705935px;}
.x2a_c01154{left:293.655435px;}
.x30_c01154{left:294.887985px;}
.x15_c01154{left:306.228435px;}
.x57_c01154{left:315.915585px;}
.x3c_c01154{left:316.950135px;}
.x8_c01154{left:326.716485px;}
.x31_c01154{left:327.983685px;}
.x52_c01154{left:335.720535px;}
.x37_c01154{left:338.309385px;}
.x25_c01154{left:339.794385px;}
.x1c_c01154{left:350.407185px;}
.x4b_c01154{left:359.534985px;}
.x38_c01154{left:372.256485px;}
.x9_c01154{left:382.344585px;}
.x53_c01154{left:393.967185px;}
.xe_c01154{left:395.318535px;}
.x20_c01154{left:405.594735px;}
.x16_c01154{left:416.776785px;}
.x3d_c01154{left:426.543135px;}
.xf_c01154{left:427.587585px;}
.xa_c01154{left:438.012285px;}
.x3f_c01154{left:439.140885px;}
.x17_c01154{left:449.055735px;}
.x32_c01154{left:450.204135px;}
.x54_c01154{left:461.529735px;}
.x18_c01154{left:470.791185px;}
.x19_c01154{left:471.860385px;}
.xb_c01154{left:482.577135px;}
.x45_c01154{left:492.150435px;}
.x56_c01154{left:493.269135px;}
.x10_c01154{left:504.802635px;}
.x58_c01154{left:514.242285px;}
.x26_c01154{left:515.816385px;}
.x4c_c01154{left:525.280785px;}
.x2b_c01154{left:527.226135px;}
.x46_c01154{left:536.853885px;}
.x11_c01154{left:538.239885px;}
.x1a_c01154{left:545.278785px;}
.x40_c01154{left:548.847735px;}
.x2c_c01154{left:558.005235px;}
.x1d_c01154{left:559.915935px;}
.x41_c01154{left:582.106785px;}
.x59_c01154{left:592.244385px;}
.x21_c01154{left:593.744235px;}
.x4d_c01154{left:604.589685px;}
.x27_c01154{left:614.895585px;}
.x1e_c01154{left:636.462735px;}
.x22_c01154{left:637.517085px;}
.x2d_c01154{left:646.545885px;}
.x33_c01154{left:648.105135px;}
.x55_c01154{left:657.069585px;}
.x12_c01154{left:658.346685px;}
.x1b_c01154{left:660.089085px;}
.x39_c01154{left:670.172235px;}
.x34_c01154{left:681.428535px;}
.x5a_c01154{left:692.075985px;}
.x13_c01154{left:693.194685px;}
.x4e_c01154{left:694.699485px;}
.x28_c01154{left:700.208835px;}
.x4_c01154{left:702.342285px;}
.x23_c01154{left:704.000535px;}
.x4f_c01154{left:706.133985px;}
.x3_c01154{left:712.529385px;}
.x2e_c01154{left:714.321285px;}
.x3a_c01154{left:721.122585px;}
.x24_c01154{left:726.651735px;}
@media print{
.v0_c01154{vertical-align:0.000000pt;}
.ls8_c01154{letter-spacing:-3.067680pt;}
.ls7_c01154{letter-spacing:-2.962502pt;}
.ls17_c01154{letter-spacing:-0.463902pt;}
.ls1_c01154{letter-spacing:0.000000pt;}
.lsc_c01154{letter-spacing:0.625259pt;}
.ls14_c01154{letter-spacing:0.900911pt;}
.ls6_c01154{letter-spacing:1.089161pt;}
.ls11_c01154{letter-spacing:1.516842pt;}
.ls0_c01154{letter-spacing:1.528173pt;}
.ls15_c01154{letter-spacing:1.716000pt;}
.lsb_c01154{letter-spacing:3.088800pt;}
.lse_c01154{letter-spacing:3.097609pt;}
.ls4_c01154{letter-spacing:3.132800pt;}
.ls9_c01154{letter-spacing:3.168000pt;}
.ls2_c01154{letter-spacing:3.273609pt;}
.lsd_c01154{letter-spacing:3.308800pt;}
.ls3_c01154{letter-spacing:3.361609pt;}
.ls10_c01154{letter-spacing:3.379209pt;}
.ls18_c01154{letter-spacing:3.469576pt;}
.ls13_c01154{letter-spacing:3.547544pt;}
.lsa_c01154{letter-spacing:45.619376pt;}
.ls16_c01154{letter-spacing:49.420976pt;}
.ls12_c01154{letter-spacing:51.955376pt;}
.lsf_c01154{letter-spacing:53.222576pt;}
.ls5_c01154{letter-spacing:54.489776pt;}
.ws0_c01154{word-spacing:-18.949498pt;}
.ws1_c01154{word-spacing:-16.808044pt;}
.ws2_c01154{word-spacing:0.000000pt;}
._2_c01154{margin-left:-14.118075pt;}
._0_c01154{margin-left:-12.603430pt;}
._4_c01154{margin-left:-3.278978pt;}
._1_c01154{width:8.201512pt;}
._3_c01154{width:29.940592pt;}
.fs1_c01154{font-size:19.712000pt;}
.fs3_c01154{font-size:24.640000pt;}
.fs16_c01154{font-size:34.320000pt;}
.fs0_c01154{font-size:34.496000pt;}
.fsa_c01154{font-size:45.619376pt;}
.fsc_c01154{font-size:49.280000pt;}
.fs18_c01154{font-size:49.420976pt;}
.fs14_c01154{font-size:51.955376pt;}
.fsf_c01154{font-size:53.222576pt;}
.fs6_c01154{font-size:54.489776pt;}
.fs7_c01154{font-size:58.960000pt;}
.fs10_c01154{font-size:60.544176pt;}
.fsb_c01154{font-size:61.776000pt;}
.fse_c01154{font-size:61.952176pt;}
.fs5_c01154{font-size:62.656000pt;}
.fs9_c01154{font-size:63.360000pt;}
.fs2_c01154{font-size:65.472176pt;}
.fsd_c01154{font-size:66.176000pt;}
.fs4_c01154{font-size:67.232176pt;}
.fs11_c01154{font-size:67.584176pt;}
.fs19_c01154{font-size:70.048000pt;}
.fs13_c01154{font-size:70.224176pt;}
.fs17_c01154{font-size:70.400000pt;}
.fs15_c01154{font-size:72.864176pt;}
.fs12_c01154{font-size:77.968000pt;}
.fs8_c01154{font-size:87.648000pt;}
.y0_c01154{bottom:0.000000pt;}
.y1d_c01154{bottom:52.189320pt;}
.y1_c01154{bottom:68.000000pt;}
.y1c_c01154{bottom:115.866120pt;}
.y1b_c01154{bottom:173.528120pt;}
.y1a_c01154{bottom:202.035720pt;}
.y18_c01154{bottom:231.498120pt;}
.y19_c01154{bottom:235.937720pt;}
.y17_c01154{bottom:289.160120pt;}
.y16_c01154{bottom:317.672120pt;}
.y15_c01154{bottom:374.691720pt;}
.y14_c01154{bottom:431.398920pt;}
.y13_c01154{bottom:487.476920pt;}
.y12_c01154{bottom:515.984520pt;}
.y11_c01154{bottom:544.500920pt;}
.y10_c01154{bottom:554.634120pt;}
.yf_c01154{bottom:573.008520pt;}
.ye_c01154{bottom:602.154120pt;}
.yd_c01154{bottom:630.036920pt;}
.yc_c01154{bottom:658.544520pt;}
.yb_c01154{bottom:687.060920pt;}
.ya_c01154{bottom:715.251720pt;}
.y9_c01154{bottom:744.080520pt;}
.y8_c01154{bottom:771.008520pt;}
.y7_c01154{bottom:800.792120pt;}
.y6_c01154{bottom:828.353720pt;}
.y5_c01154{bottom:859.716920pt;}
.y3_c01154{bottom:886.011320pt;}
.y4_c01154{bottom:954.752520pt;}
.y2_c01154{bottom:982.947720pt;}
.h3_c01154{height:20.559000pt;}
.h5_c01154{height:25.698750pt;}
.hb_c01154{height:30.382504pt;}
.h18_c01154{height:32.914370pt;}
.h14_c01154{height:34.602280pt;}
.h10_c01154{height:35.446236pt;}
.h16_c01154{height:35.794688pt;}
.h2_c01154{height:35.978250pt;}
.h8_c01154{height:36.290191pt;}
.hd_c01154{height:51.397500pt;}
.hc_c01154{height:60.629766pt;}
.h7_c01154{height:61.493438pt;}
.ha_c01154{height:62.153438pt;}
.h11_c01154{height:63.145684pt;}
.h4_c01154{height:64.257360pt;}
.hf_c01154{height:64.614184pt;}
.he_c01154{height:64.948125pt;}
.h6_c01154{height:65.984704pt;}
.h12_c01154{height:68.112177pt;}
.h19_c01154{height:68.748281pt;}
.h17_c01154{height:69.093750pt;}
.h15_c01154{height:75.995059pt;}
.h13_c01154{height:76.521328pt;}
.h9_c01154{height:86.021719pt;}
.h1_c01154{height:986.666667pt;}
.h0_c01154{height:1122.666667pt;}
.w1_c01154{width:689.333333pt;}
.w0_c01154{width:793.333333pt;}
.x2_c01154{left:-1.419747pt;}
.x0_c01154{left:0.000000pt;}
.x1_c01154{left:52.000000pt;}
.x42_c01154{left:82.668653pt;}
.x43_c01154{left:131.051053pt;}
.x48_c01154{left:131.992653pt;}
.x35_c01154{left:133.004653pt;}
.x5_c01154{left:134.892253pt;}
.x50_c01154{left:161.758653pt;}
.x2f_c01154{left:163.479053pt;}
.x5b_c01154{left:165.283053pt;}
.xc_c01154{left:182.355053pt;}
.x29_c01154{left:183.547453pt;}
.x49_c01154{left:191.863453pt;}
.x4a_c01154{left:199.532653pt;}
.x47_c01154{left:201.829453pt;}
.x14_c01154{left:202.881053pt;}
.x44_c01154{left:211.157453pt;}
.x36_c01154{left:212.671053pt;}
.x6_c01154{left:220.441453pt;}
.xd_c01154{left:222.478653pt;}
.x7_c01154{left:232.048653pt;}
.x51_c01154{left:240.725453pt;}
.x3e_c01154{left:241.838653pt;}
.x3b_c01154{left:251.276653pt;}
.x1f_c01154{left:252.183053pt;}
.x2a_c01154{left:261.027053pt;}
.x30_c01154{left:262.122653pt;}
.x15_c01154{left:272.203053pt;}
.x57_c01154{left:280.813853pt;}
.x3c_c01154{left:281.733453pt;}
.x8_c01154{left:290.414653pt;}
.x31_c01154{left:291.541053pt;}
.x52_c01154{left:298.418253pt;}
.x37_c01154{left:300.719453pt;}
.x25_c01154{left:302.039453pt;}
.x1c_c01154{left:311.473053pt;}
.x4b_c01154{left:319.586653pt;}
.x38_c01154{left:330.894653pt;}
.x9_c01154{left:339.861853pt;}
.x53_c01154{left:350.193053pt;}
.xe_c01154{left:351.394253pt;}
.x20_c01154{left:360.528653pt;}
.x16_c01154{left:370.468253pt;}
.x3d_c01154{left:379.149453pt;}
.xf_c01154{left:380.077853pt;}
.xa_c01154{left:389.344253pt;}
.x3f_c01154{left:390.347453pt;}
.x17_c01154{left:399.160653pt;}
.x32_c01154{left:400.181453pt;}
.x54_c01154{left:410.248653pt;}
.x18_c01154{left:418.481053pt;}
.x19_c01154{left:419.431453pt;}
.xb_c01154{left:428.957453pt;}
.x45_c01154{left:437.467053pt;}
.x56_c01154{left:438.461453pt;}
.x10_c01154{left:448.713453pt;}
.x58_c01154{left:457.104253pt;}
.x26_c01154{left:458.503453pt;}
.x4c_c01154{left:466.916253pt;}
.x2b_c01154{left:468.645453pt;}
.x46_c01154{left:477.203453pt;}
.x11_c01154{left:478.435453pt;}
.x1a_c01154{left:484.692253pt;}
.x40_c01154{left:487.864653pt;}
.x2c_c01154{left:496.004653pt;}
.x1d_c01154{left:497.703053pt;}
.x41_c01154{left:517.428253pt;}
.x59_c01154{left:526.439453pt;}
.x21_c01154{left:527.772653pt;}
.x4d_c01154{left:537.413053pt;}
.x27_c01154{left:546.573853pt;}
.x1e_c01154{left:565.744653pt;}
.x22_c01154{left:566.681853pt;}
.x2d_c01154{left:574.707453pt;}
.x33_c01154{left:576.093453pt;}
.x55_c01154{left:584.061853pt;}
.x12_c01154{left:585.197053pt;}
.x1b_c01154{left:586.745853pt;}
.x39_c01154{left:595.708653pt;}
.x34_c01154{left:605.714253pt;}
.x5a_c01154{left:615.178653pt;}
.x13_c01154{left:616.173053pt;}
.x4e_c01154{left:617.510653pt;}
.x28_c01154{left:622.407853pt;}
.x4_c01154{left:624.304253pt;}
.x23_c01154{left:625.778253pt;}
.x4f_c01154{left:627.674653pt;}
.x3_c01154{left:633.359453pt;}
.x2e_c01154{left:634.952253pt;}
.x3a_c01154{left:640.997853pt;}
.x24_c01154{left:645.912653pt;}
}





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

.ir_c01155:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01155{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01155;src:url('chunks/assets/font_4eeb30a2f9c649c941a64323.woff2')format("woff");}.ff1_c01155{font-family:ff1_c01155;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01155;src:url('chunks/assets/font_da1b0ce8d8d8509a48abe398.woff2')format("woff");}.ff2_c01155{font-family:ff2_c01155;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01155;src:url('chunks/assets/font_19bf5c32dc31a1473dfdd645.woff2')format("woff");}.ff3_c01155{font-family:ff3_c01155;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01155;src:url('chunks/assets/font_83276aa55f54f94abd5dc846.woff2')format("woff");}.ff4_c01155{font-family:ff4_c01155;line-height:0.666000;font-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_c01155{transform:matrix(0.056910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056910,0.000000,0.000000,0.250000,0,0);}
.m2d_c01155{transform:matrix(0.075582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075582,0.000000,0.000000,0.250000,0,0);}
.m15_c01155{transform:matrix(0.100609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100609,0.000000,0.000000,0.250000,0,0);}
.m16_c01155{transform:matrix(0.137196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137196,0.000000,0.000000,0.250000,0,0);}
.m21_c01155{transform:matrix(0.157413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157413,0.000000,0.000000,0.250000,0,0);}
.m52_c01155{transform:matrix(0.161559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161559,0.000000,0.000000,0.250000,0,0);}
.m10_c01155{transform:matrix(0.171748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171748,0.000000,0.000000,0.250000,0,0);}
.m2c_c01155{transform:matrix(0.177326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177326,0.000000,0.000000,0.250000,0,0);}
.m70_c01155{transform:matrix(0.178919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178919,0.000000,0.000000,0.250000,0,0);}
.m40_c01155{transform:matrix(0.180233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180233,0.000000,0.000000,0.250000,0,0);}
.m14_c01155{transform:matrix(0.186992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186992,0.000000,0.000000,0.250000,0,0);}
.m64_c01155{transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);}
.m74_c01155{transform:matrix(0.237937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237937,0.000000,0.000000,0.250000,0,0);}
.m56_c01155{transform:matrix(0.246313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246313,0.000000,0.000000,0.250000,0,0);}
.m0_c01155{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m75_c01155{transform:matrix(0.252081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252081,0.000000,0.000000,0.250000,0,0);}
.mf_c01155{transform:matrix(0.252547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252547,0.000000,0.000000,0.250000,0,0);}
.m34_c01155{transform:matrix(0.252810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252810,0.000000,0.000000,0.250000,0,0);}
.m62_c01155{transform:matrix(0.253550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253550,0.000000,0.000000,0.250000,0,0);}
.m3f_c01155{transform:matrix(0.254359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254359,0.000000,0.000000,0.250000,0,0);}
.m20_c01155{transform:matrix(0.255325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255325,0.000000,0.000000,0.250000,0,0);}
.md_c01155{transform:matrix(0.260048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260048,0.000000,0.000000,0.250000,0,0);}
.m4d_c01155{transform:matrix(0.260464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260464,0.000000,0.000000,0.250000,0,0);}
.m39_c01155{transform:matrix(0.261008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261008,0.000000,0.000000,0.250000,0,0);}
.m27_c01155{transform:matrix(0.264066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264066,0.000000,0.000000,0.250000,0,0);}
.m5d_c01155{transform:matrix(0.265175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265175,0.000000,0.000000,0.250000,0,0);}
.m26_c01155{transform:matrix(0.265279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265279,0.000000,0.000000,0.250000,0,0);}
.m11_c01155{transform:matrix(0.265460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265460,0.000000,0.000000,0.250000,0,0);}
.m2b_c01155{transform:matrix(0.265491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265491,0.000000,0.000000,0.250000,0,0);}
.m53_c01155{transform:matrix(0.267262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267262,0.000000,0.000000,0.250000,0,0);}
.m66_c01155{transform:matrix(0.269559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269559,0.000000,0.000000,0.250000,0,0);}
.m54_c01155{transform:matrix(0.269567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269567,0.000000,0.000000,0.250000,0,0);}
.m2a_c01155{transform:matrix(0.270287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270287,0.000000,0.000000,0.250000,0,0);}
.me_c01155{transform:matrix(0.270809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270809,0.000000,0.000000,0.250000,0,0);}
.m5e_c01155{transform:matrix(0.272665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272665,0.000000,0.000000,0.250000,0,0);}
.m3e_c01155{transform:matrix(0.273293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273293,0.000000,0.000000,0.250000,0,0);}
.m42_c01155{transform:matrix(0.273336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273336,0.000000,0.000000,0.250000,0,0);}
.ma_c01155{transform:matrix(0.275114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275114,0.000000,0.000000,0.250000,0,0);}
.m22_c01155{transform:matrix(0.275778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275778,0.000000,0.000000,0.250000,0,0);}
.m30_c01155{transform:matrix(0.276784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276784,0.000000,0.000000,0.250000,0,0);}
.m68_c01155{transform:matrix(0.277548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277548,0.000000,0.000000,0.250000,0,0);}
.m6e_c01155{transform:matrix(0.278392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278392,0.000000,0.000000,0.250000,0,0);}
.m6b_c01155{transform:matrix(0.278798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278798,0.000000,0.000000,0.250000,0,0);}
.m63_c01155{transform:matrix(0.279941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279941,0.000000,0.000000,0.250000,0,0);}
.m28_c01155{transform:matrix(0.282618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282618,0.000000,0.000000,0.250000,0,0);}
.m43_c01155{transform:matrix(0.282720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282720,0.000000,0.000000,0.250000,0,0);}
.m38_c01155{transform:matrix(0.283022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283022,0.000000,0.000000,0.250000,0,0);}
.m71_c01155{transform:matrix(0.283033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283033,0.000000,0.000000,0.250000,0,0);}
.m57_c01155{transform:matrix(0.285046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285046,0.000000,0.000000,0.250000,0,0);}
.m78_c01155{transform:matrix(0.285671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285671,0.000000,0.000000,0.250000,0,0);}
.m69_c01155{transform:matrix(0.285870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285870,0.000000,0.000000,0.250000,0,0);}
.m23_c01155{transform:matrix(0.286107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286107,0.000000,0.000000,0.250000,0,0);}
.m4e_c01155{transform:matrix(0.286848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286848,0.000000,0.000000,0.250000,0,0);}
.m36_c01155{transform:matrix(0.287377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287377,0.000000,0.000000,0.250000,0,0);}
.m1c_c01155{transform:matrix(0.287524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287524,0.000000,0.000000,0.250000,0,0);}
.m50_c01155{transform:matrix(0.287913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287913,0.000000,0.000000,0.250000,0,0);}
.m4b_c01155{transform:matrix(0.289012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289012,0.000000,0.000000,0.250000,0,0);}
.m41_c01155{transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);}
.m3a_c01155{transform:matrix(0.291389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291389,0.000000,0.000000,0.250000,0,0);}
.m1f_c01155{transform:matrix(0.294125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294125,0.000000,0.000000,0.250000,0,0);}
.m4_c01155{transform:matrix(0.294328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294328,0.000000,0.000000,0.250000,0,0);}
.m5a_c01155{transform:matrix(0.294502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294502,0.000000,0.000000,0.250000,0,0);}
.m2_c01155{transform:matrix(0.295909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295909,0.000000,0.000000,0.250000,0,0);}
.m60_c01155{transform:matrix(0.296138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296138,0.000000,0.000000,0.250000,0,0);}
.m55_c01155{transform:matrix(0.296265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296265,0.000000,0.000000,0.250000,0,0);}
.m1a_c01155{transform:matrix(0.297127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297127,0.000000,0.000000,0.250000,0,0);}
.m1b_c01155{transform:matrix(0.297708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297708,0.000000,0.000000,0.250000,0,0);}
.m47_c01155{transform:matrix(0.297987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297987,0.000000,0.000000,0.250000,0,0);}
.m61_c01155{transform:matrix(0.299519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299519,0.000000,0.000000,0.250000,0,0);}
.m5c_c01155{transform:matrix(0.302273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302273,0.000000,0.000000,0.250000,0,0);}
.mc_c01155{transform:matrix(0.302300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302300,0.000000,0.000000,0.250000,0,0);}
.m12_c01155{transform:matrix(0.302944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302944,0.000000,0.000000,0.250000,0,0);}
.m2f_c01155{transform:matrix(0.303039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303039,0.000000,0.000000,0.250000,0,0);}
.m49_c01155{transform:matrix(0.304073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304073,0.000000,0.000000,0.250000,0,0);}
.m48_c01155{transform:matrix(0.304888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304888,0.000000,0.000000,0.250000,0,0);}
.m3_c01155{transform:matrix(0.305609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305609,0.000000,0.000000,0.250000,0,0);}
.m3d_c01155{transform:matrix(0.306840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306840,0.000000,0.000000,0.250000,0,0);}
.m8_c01155{transform:matrix(0.307584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307584,0.000000,0.000000,0.250000,0,0);}
.m45_c01155{transform:matrix(0.308245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308245,0.000000,0.000000,0.250000,0,0);}
.m79_c01155{transform:matrix(0.308425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308425,0.000000,0.000000,0.250000,0,0);}
.m6f_c01155{transform:matrix(0.309869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309869,0.000000,0.000000,0.250000,0,0);}
.m32_c01155{transform:matrix(0.310301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310301,0.000000,0.000000,0.250000,0,0);}
.m6_c01155{transform:matrix(0.311239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311239,0.000000,0.000000,0.250000,0,0);}
.m29_c01155{transform:matrix(0.312107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312107,0.000000,0.000000,0.250000,0,0);}
.m33_c01155{transform:matrix(0.312932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312932,0.000000,0.000000,0.250000,0,0);}
.m9_c01155{transform:matrix(0.313523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313523,0.000000,0.000000,0.250000,0,0);}
.mb_c01155{transform:matrix(0.313899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313899,0.000000,0.000000,0.250000,0,0);}
.m44_c01155{transform:matrix(0.314500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01155{transform:matrix(0.315122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315122,0.000000,0.000000,0.250000,0,0);}
.m7_c01155{transform:matrix(0.315173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315173,0.000000,0.000000,0.250000,0,0);}
.m3c_c01155{transform:matrix(0.315174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315174,0.000000,0.000000,0.250000,0,0);}
.m76_c01155{transform:matrix(0.318216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318216,0.000000,0.000000,0.250000,0,0);}
.m25_c01155{transform:matrix(0.318796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318796,0.000000,0.000000,0.250000,0,0);}
.m2e_c01155{transform:matrix(0.320128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320128,0.000000,0.000000,0.250000,0,0);}
.m77_c01155{transform:matrix(0.320660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320660,0.000000,0.000000,0.250000,0,0);}
.m4f_c01155{transform:matrix(0.320918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320918,0.000000,0.000000,0.250000,0,0);}
.m65_c01155{transform:matrix(0.322404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322404,0.000000,0.000000,0.250000,0,0);}
.m1_c01155{transform:matrix(0.324270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324270,0.000000,0.000000,0.250000,0,0);}
.m31_c01155{transform:matrix(0.326559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326559,0.000000,0.000000,0.250000,0,0);}
.m46_c01155{transform:matrix(0.327184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327184,0.000000,0.000000,0.250000,0,0);}
.m5b_c01155{transform:matrix(0.328795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328795,0.000000,0.000000,0.250000,0,0);}
.m67_c01155{transform:matrix(0.329165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329165,0.000000,0.000000,0.250000,0,0);}
.m19_c01155{transform:matrix(0.332892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332892,0.000000,0.000000,0.250000,0,0);}
.m24_c01155{transform:matrix(0.333816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333816,0.000000,0.000000,0.250000,0,0);}
.m6c_c01155{transform:matrix(0.333862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333862,0.000000,0.000000,0.250000,0,0);}
.m3b_c01155{transform:matrix(0.334078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334078,0.000000,0.000000,0.250000,0,0);}
.m18_c01155{transform:matrix(0.334314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334314,0.000000,0.000000,0.250000,0,0);}
.m5f_c01155{transform:matrix(0.335962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335962,0.000000,0.000000,0.250000,0,0);}
.m37_c01155{transform:matrix(0.337573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337573,0.000000,0.000000,0.250000,0,0);}
.m59_c01155{transform:matrix(0.344155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344155,0.000000,0.000000,0.250000,0,0);}
.m51_c01155{transform:matrix(0.345171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345171,0.000000,0.000000,0.250000,0,0);}
.m6d_c01155{transform:matrix(0.347412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347412,0.000000,0.000000,0.250000,0,0);}
.m58_c01155{transform:matrix(0.348169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348169,0.000000,0.000000,0.250000,0,0);}
.m4c_c01155{transform:matrix(0.350516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350516,0.000000,0.000000,0.250000,0,0);}
.m35_c01155{transform:matrix(0.351536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351536,0.000000,0.000000,0.250000,0,0);}
.m72_c01155{transform:matrix(0.354500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354500,0.000000,0.000000,0.250000,0,0);}
.m13_c01155{transform:matrix(0.360514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360514,0.000000,0.000000,0.250000,0,0);}
.m4a_c01155{transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);}
.m6a_c01155{transform:matrix(0.373386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373386,0.000000,0.000000,0.250000,0,0);}
.m5_c01155{transform:matrix(0.396432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396432,0.000000,0.000000,0.250000,0,0);}
.m1e_c01155{transform:matrix(0.399428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399428,0.000000,0.000000,0.250000,0,0);}
.m73_c01155{transform:matrix(0.417545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417545,0.000000,0.000000,0.250000,0,0);}
.v1_c01155{vertical-align:-19.946520px;}
.v0_c01155{vertical-align:0.000000px;}
.lsc_c01155{letter-spacing:-2.869027px;}
.ls6_c01155{letter-spacing:-2.626477px;}
.ls5_c01155{letter-spacing:-2.333812px;}
.ls1_c01155{letter-spacing:0.000000px;}
.ls9_c01155{letter-spacing:1.515852px;}
.lsa_c01155{letter-spacing:1.996122px;}
.ls10_c01155{letter-spacing:2.405700px;}
.lsf_c01155{letter-spacing:2.705076px;}
.ls8_c01155{letter-spacing:2.941654px;}
.lse_c01155{letter-spacing:3.114251px;}
.lsb_c01155{letter-spacing:3.524400px;}
.ls2_c01155{letter-spacing:3.752110px;}
.ls3_c01155{letter-spacing:4.197610px;}
.ls0_c01155{letter-spacing:12.569832px;}
.lsd_c01155{letter-spacing:48.470598px;}
.ls4_c01155{letter-spacing:58.449798px;}
.ls7_c01155{letter-spacing:61.300998px;}
.sc__c01155{text-shadow:none;}
.sc0_c01155{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01155{-webkit-text-stroke:0px transparent;}
.sc0_c01155{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01155{word-spacing:0.000000px;}
._1_c01155{margin-left:-13.782829px;}
._2_c01155{width:4.727577px;}
._3_c01155{width:36.319795px;}
._0_c01155{width:395.717256px;}
.fc0_c01155{color:transparent;}
.fs0_c01155{font-size:22.176000px;}
.fs2_c01155{font-size:27.324000px;}
.fs8_c01155{font-size:38.808000px;}
.fs11_c01155{font-size:48.114000px;}
.fsf_c01155{font-size:48.470598px;}
.fse_c01155{font-size:54.648000px;}
.fs4_c01155{font-size:58.449798px;}
.fsa_c01155{font-size:61.300998px;}
.fs10_c01155{font-size:65.340000px;}
.fs7_c01155{font-size:66.528000px;}
.fsc_c01155{font-size:70.488000px;}
.fsb_c01155{font-size:70.884000px;}
.fs9_c01155{font-size:72.072198px;}
.fs6_c01155{font-size:73.854000px;}
.fs1_c01155{font-size:75.042198px;}
.fsd_c01155{font-size:81.972198px;}
.fs3_c01155{font-size:83.952198px;}
.fs5_c01155{font-size:89.496198px;}
.y0_c01155{bottom:0.000000px;}
.y1_c01155{bottom:76.500000px;}
.y1b_c01155{bottom:125.364720px;}
.y1a_c01155{bottom:157.440720px;}
.y19_c01155{bottom:190.937370px;}
.y18_c01155{bottom:224.443920px;}
.y16_c01155{bottom:256.158570px;}
.y17_c01155{bottom:261.148170px;}
.y15_c01155{bottom:288.239520px;}
.y14_c01155{bottom:321.028320px;}
.y13_c01155{bottom:384.823920px;}
.y12_c01155{bottom:448.970970px;}
.y11_c01155{bottom:480.334170px;}
.y10_c01155{bottom:544.847520px;}
.yf_c01155{bottom:576.562170px;}
.yd_c01155{bottom:626.819520px;}
.ye_c01155{bottom:627.170970px;}
.yc_c01155{bottom:639.644970px;}
.yb_c01155{bottom:651.049770px;}
.ya_c01155{bottom:674.220720px;}
.y9_c01155{bottom:738.016320px;}
.y8_c01155{bottom:759.395370px;}
.y7_c01155{bottom:769.730970px;}
.y5_c01155{bottom:892.693920px;}
.y4_c01155{bottom:897.322170px;}
.y3_c01155{bottom:929.041770px;}
.y2_c01155{bottom:965.043120px;}
.y6_c01155{bottom:1066.255770px;}
.h2_c01155{height:23.128875px;}
.h4_c01155{height:28.498078px;}
.h11_c01155{height:32.281418px;}
.h6_c01155{height:38.927565px;}
.ha_c01155{height:40.475531px;}
.hc_c01155{height:40.826465px;}
.h13_c01155{height:50.181398px;}
.h10_c01155{height:56.996156px;}
.h12_c01155{height:64.127637px;}
.he_c01155{height:69.180117px;}
.h9_c01155{height:69.386625px;}
.hd_c01155{height:69.568770px;}
.h3_c01155{height:73.649813px;}
.hb_c01155{height:75.169050px;}
.h8_c01155{height:77.027414px;}
.hf_c01155{height:80.451229px;}
.h5_c01155{height:82.394491px;}
.h7_c01155{height:87.835624px;}
.h1_c01155{height:1110.000000px;}
.h0_c01155{height:1263.000000px;}
.w1_c01155{width:775.500000px;}
.w0_c01155{width:892.500000px;}
.x0_c01155{left:0.000000px;}
.x1_c01155{left:58.500000px;}
.x38_c01155{left:96.571185px;}
.x11_c01155{left:97.996785px;}
.x63_c01155{left:150.704385px;}
.x43_c01155{left:151.971585px;}
.x12_c01155{left:153.481335px;}
.x3_c01155{left:155.085135px;}
.x64_c01155{left:184.557435px;}
.x39_c01155{left:185.621685px;}
.x13_c01155{left:187.096785px;}
.x21_c01155{left:188.928285px;}
.x44_c01155{left:193.873335px;}
.x5a_c01155{left:196.081035px;}
.x9_c01155{left:198.169935px;}
.x4a_c01155{left:207.490785px;}
.x47_c01155{left:209.292585px;}
.x22_c01155{left:210.386535px;}
.x5c_c01155{left:230.023185px;}
.x4e_c01155{left:231.453735px;}
.x4_c01155{left:242.719935px;}
.x55_c01155{left:252.471435px;}
.x45_c01155{left:263.747535px;}
.x35_c01155{left:265.168185px;}
.x4f_c01155{left:273.652485px;}
.x65_c01155{left:274.894935px;}
.x3a_c01155{left:276.355185px;}
.x2_c01155{left:284.309835px;}
.x2f_c01155{left:286.690785px;}
.x3b_c01155{left:296.026485px;}
.x41_c01155{left:297.605535px;}
.xa_c01155{left:299.471685px;}
.x5d_c01155{left:307.159035px;}
.x23_c01155{left:308.584635px;}
.x46_c01155{left:309.926085px;}
.x14_c01155{left:320.905185px;}
.x3c_c01155{left:330.097335px;}
.x42_c01155{left:342.289185px;}
.x50_c01155{left:343.551435px;}
.x15_c01155{left:349.931985px;}
.x66_c01155{left:351.001185px;}
.x28_c01155{left:352.347585px;}
.x16_c01155{left:353.995935px;}
.x4b_c01155{left:362.742585px;}
.xb_c01155{left:364.737435px;}
.x17_c01155{left:375.711585px;}
.x51_c01155{left:385.715535px;}
.x5e_c01155{left:396.041235px;}
.xc_c01155{left:397.476735px;}
.x5_c01155{left:398.570685px;}
.x18_c01155{left:408.421185px;}
.x24_c01155{left:419.603235px;}
.x3d_c01155{left:429.775485px;}
.x56_c01155{left:430.978335px;}
.x19_c01155{left:439.789335px;}
.x36_c01155{left:442.081185px;}
.x30_c01155{left:444.422535px;}
.x25_c01155{left:452.995935px;}
.x1a_c01155{left:454.758135px;}
.xf_c01155{left:457.079685px;}
.x31_c01155{left:464.168085px;}
.x6_c01155{left:465.836235px;}
.x37_c01155{left:474.805635px;}
.x1b_c01155{left:476.810385px;}
.x3e_c01155{left:485.126385px;}
.x26_c01155{left:487.858785px;}
.xd_c01155{left:497.055885px;}
.x57_c01155{left:500.293185px;}
.x1c_c01155{left:508.574535px;}
.x29_c01155{left:514.677885px;}
.x32_c01155{left:520.132785px;}
.x5f_c01155{left:528.473535px;}
.x7_c01155{left:530.404035px;}
.x1d_c01155{left:536.606385px;}
.x58_c01155{left:539.531835px;}
.x1e_c01155{left:541.957335px;}
.x27_c01155{left:543.249285px;}
.x52_c01155{left:551.797935px;}
.x20_c01155{left:556.599435px;}
.x60_c01155{left:562.222635px;}
.x8_c01155{left:563.836335px;}
.x48_c01155{left:574.528335px;}
.x59_c01155{left:584.274885px;}
.x3f_c01155{left:585.443085px;}
.x2a_c01155{left:595.442085px;}
.xe_c01155{left:598.699185px;}
.x49_c01155{left:606.713235px;}
.x2b_c01155{left:616.811235px;}
.x4c_c01155{left:618.637785px;}
.x61_c01155{left:630.344535px;}
.x33_c01155{left:639.690135px;}
.x1f_c01155{left:641.754285px;}
.x53_c01155{left:653.010585px;}
.x5b_c01155{left:662.935335px;}
.x4d_c01155{left:672.107685px;}
.x34_c01155{left:674.107485px;}
.x40_c01155{left:685.155885px;}
.x54_c01155{left:696.328035px;}
.x2c_c01155{left:705.752835px;}
.x2d_c01155{left:707.559585px;}
.x2e_c01155{left:708.782235px;}
.x10_c01155{left:713.950035px;}
.x62_c01155{left:728.740635px;}
@media print{
.v1_c01155{vertical-align:-17.730240pt;}
.v0_c01155{vertical-align:0.000000pt;}
.lsc_c01155{letter-spacing:-2.550246pt;}
.ls6_c01155{letter-spacing:-2.334646pt;}
.ls5_c01155{letter-spacing:-2.074500pt;}
.ls1_c01155{letter-spacing:0.000000pt;}
.ls9_c01155{letter-spacing:1.347424pt;}
.lsa_c01155{letter-spacing:1.774331pt;}
.ls10_c01155{letter-spacing:2.138400pt;}
.lsf_c01155{letter-spacing:2.404512pt;}
.ls8_c01155{letter-spacing:2.614804pt;}
.lse_c01155{letter-spacing:2.768223pt;}
.lsb_c01155{letter-spacing:3.132800pt;}
.ls2_c01155{letter-spacing:3.335209pt;}
.ls3_c01155{letter-spacing:3.731209pt;}
.ls0_c01155{letter-spacing:11.173184pt;}
.lsd_c01155{letter-spacing:43.084976pt;}
.ls4_c01155{letter-spacing:51.955376pt;}
.ls7_c01155{letter-spacing:54.489776pt;}
.ws0_c01155{word-spacing:0.000000pt;}
._1_c01155{margin-left:-12.251404pt;}
._2_c01155{width:4.202290pt;}
._3_c01155{width:32.284262pt;}
._0_c01155{width:351.748672pt;}
.fs0_c01155{font-size:19.712000pt;}
.fs2_c01155{font-size:24.288000pt;}
.fs8_c01155{font-size:34.496000pt;}
.fs11_c01155{font-size:42.768000pt;}
.fsf_c01155{font-size:43.084976pt;}
.fse_c01155{font-size:48.576000pt;}
.fs4_c01155{font-size:51.955376pt;}
.fsa_c01155{font-size:54.489776pt;}
.fs10_c01155{font-size:58.080000pt;}
.fs7_c01155{font-size:59.136000pt;}
.fsc_c01155{font-size:62.656000pt;}
.fsb_c01155{font-size:63.008000pt;}
.fs9_c01155{font-size:64.064176pt;}
.fs6_c01155{font-size:65.648000pt;}
.fs1_c01155{font-size:66.704176pt;}
.fsd_c01155{font-size:72.864176pt;}
.fs3_c01155{font-size:74.624176pt;}
.fs5_c01155{font-size:79.552176pt;}
.y0_c01155{bottom:0.000000pt;}
.y1_c01155{bottom:68.000000pt;}
.y1b_c01155{bottom:111.435307pt;}
.y1a_c01155{bottom:139.947307pt;}
.y19_c01155{bottom:169.722107pt;}
.y18_c01155{bottom:199.505707pt;}
.y16_c01155{bottom:227.696507pt;}
.y17_c01155{bottom:232.131707pt;}
.y15_c01155{bottom:256.212907pt;}
.y14_c01155{bottom:285.358507pt;}
.y13_c01155{bottom:342.065707pt;}
.y12_c01155{bottom:399.085307pt;}
.y11_c01155{bottom:426.963707pt;}
.y10_c01155{bottom:484.308907pt;}
.yf_c01155{bottom:512.499707pt;}
.yd_c01155{bottom:557.172907pt;}
.ye_c01155{bottom:557.485307pt;}
.yc_c01155{bottom:568.573307pt;}
.yb_c01155{bottom:578.710907pt;}
.ya_c01155{bottom:599.307307pt;}
.y9_c01155{bottom:656.014507pt;}
.y8_c01155{bottom:675.018107pt;}
.y7_c01155{bottom:684.205307pt;}
.y5_c01155{bottom:793.505707pt;}
.y4_c01155{bottom:797.619707pt;}
.y3_c01155{bottom:825.814907pt;}
.y2_c01155{bottom:857.816107pt;}
.y6_c01155{bottom:947.782907pt;}
.h2_c01155{height:20.559000pt;}
.h4_c01155{height:25.331625pt;}
.h11_c01155{height:28.694594pt;}
.h6_c01155{height:34.602280pt;}
.ha_c01155{height:35.978250pt;}
.hc_c01155{height:36.290191pt;}
.h13_c01155{height:44.605688pt;}
.h10_c01155{height:50.663250pt;}
.h12_c01155{height:57.002344pt;}
.he_c01155{height:61.493438pt;}
.h9_c01155{height:61.677000pt;}
.hd_c01155{height:61.838906pt;}
.h3_c01155{height:65.466501pt;}
.hb_c01155{height:66.816934pt;}
.h8_c01155{height:68.468813pt;}
.hf_c01155{height:71.512204pt;}
.h5_c01155{height:73.239548pt;}
.h7_c01155{height:78.076110pt;}
.h1_c01155{height:986.666667pt;}
.h0_c01155{height:1122.666667pt;}
.w1_c01155{width:689.333333pt;}
.w0_c01155{width:793.333333pt;}
.x0_c01155{left:0.000000pt;}
.x1_c01155{left:52.000000pt;}
.x38_c01155{left:85.841053pt;}
.x11_c01155{left:87.108253pt;}
.x63_c01155{left:133.959453pt;}
.x43_c01155{left:135.085853pt;}
.x12_c01155{left:136.427853pt;}
.x3_c01155{left:137.853453pt;}
.x64_c01155{left:164.051053pt;}
.x39_c01155{left:164.997053pt;}
.x13_c01155{left:166.308253pt;}
.x21_c01155{left:167.936253pt;}
.x44_c01155{left:172.331853pt;}
.x5a_c01155{left:174.294253pt;}
.x9_c01155{left:176.151053pt;}
.x4a_c01155{left:184.436253pt;}
.x47_c01155{left:186.037853pt;}
.x22_c01155{left:187.010253pt;}
.x5c_c01155{left:204.465053pt;}
.x4e_c01155{left:205.736653pt;}
.x4_c01155{left:215.751053pt;}
.x55_c01155{left:224.419053pt;}
.x45_c01155{left:234.442253pt;}
.x35_c01155{left:235.705053pt;}
.x4f_c01155{left:243.246653pt;}
.x65_c01155{left:244.351053pt;}
.x3a_c01155{left:245.649053pt;}
.x2_c01155{left:252.719853pt;}
.x2f_c01155{left:254.836253pt;}
.x3b_c01155{left:263.134653pt;}
.x41_c01155{left:264.538253pt;}
.xa_c01155{left:266.197053pt;}
.x5d_c01155{left:273.030253pt;}
.x23_c01155{left:274.297453pt;}
.x46_c01155{left:275.489853pt;}
.x14_c01155{left:285.249053pt;}
.x3c_c01155{left:293.419853pt;}
.x42_c01155{left:304.257053pt;}
.x50_c01155{left:305.379053pt;}
.x15_c01155{left:311.050653pt;}
.x66_c01155{left:312.001053pt;}
.x28_c01155{left:313.197853pt;}
.x16_c01155{left:314.663053pt;}
.x4b_c01155{left:322.437853pt;}
.xb_c01155{left:324.211053pt;}
.x17_c01155{left:333.965853pt;}
.x51_c01155{left:342.858253pt;}
.x5e_c01155{left:352.036653pt;}
.xc_c01155{left:353.312653pt;}
.x5_c01155{left:354.285053pt;}
.x18_c01155{left:363.041053pt;}
.x24_c01155{left:372.980653pt;}
.x3d_c01155{left:382.022653pt;}
.x56_c01155{left:383.091853pt;}
.x19_c01155{left:390.923853pt;}
.x36_c01155{left:392.961053pt;}
.x30_c01155{left:395.042253pt;}
.x25_c01155{left:402.663053pt;}
.x1a_c01155{left:404.229453pt;}
.xf_c01155{left:406.293053pt;}
.x31_c01155{left:412.593853pt;}
.x6_c01155{left:414.076653pt;}
.x37_c01155{left:422.049453pt;}
.x1b_c01155{left:423.831453pt;}
.x3e_c01155{left:431.223453pt;}
.x26_c01155{left:433.652253pt;}
.xd_c01155{left:441.827453pt;}
.x57_c01155{left:444.705053pt;}
.x1c_c01155{left:452.066253pt;}
.x29_c01155{left:457.491453pt;}
.x32_c01155{left:462.340253pt;}
.x5f_c01155{left:469.754253pt;}
.x7_c01155{left:471.470253pt;}
.x1d_c01155{left:476.983453pt;}
.x58_c01155{left:479.583853pt;}
.x1e_c01155{left:481.739853pt;}
.x27_c01155{left:482.888253pt;}
.x52_c01155{left:490.487053pt;}
.x20_c01155{left:494.755053pt;}
.x60_c01155{left:499.753453pt;}
.x8_c01155{left:501.187853pt;}
.x48_c01155{left:510.691853pt;}
.x59_c01155{left:519.355453pt;}
.x3f_c01155{left:520.393853pt;}
.x2a_c01155{left:529.281853pt;}
.xe_c01155{left:532.177053pt;}
.x49_c01155{left:539.300653pt;}
.x2b_c01155{left:548.276653pt;}
.x4c_c01155{left:549.900253pt;}
.x61_c01155{left:560.306253pt;}
.x33_c01155{left:568.613453pt;}
.x1f_c01155{left:570.448253pt;}
.x53_c01155{left:580.453853pt;}
.x5b_c01155{left:589.275853pt;}
.x4d_c01155{left:597.429053pt;}
.x34_c01155{left:599.206653pt;}
.x40_c01155{left:609.027453pt;}
.x54_c01155{left:618.958253pt;}
.x2c_c01155{left:627.335853pt;}
.x2d_c01155{left:628.941853pt;}
.x2e_c01155{left:630.028653pt;}
.x10_c01155{left:634.622253pt;}
.x62_c01155{left:647.769453pt;}
}





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

.ir_c01156:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01156{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01156;src:url('chunks/assets/font_bb43e3fe73b5153be63e44b0.woff2')format("woff");}.ff1_c01156{font-family:ff1_c01156;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01156;src:url('chunks/assets/font_beebf21ec6761c300f010041.woff2')format("woff");}.ff2_c01156{font-family:ff2_c01156;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01156;src:url('chunks/assets/font_72009e2e9b9bbc77b61a0592.woff2')format("woff");}.ff3_c01156{font-family:ff3_c01156;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01156;src:url('chunks/assets/font_7d96f5d86584172eaa06a18a.woff2')format("woff");}.ff4_c01156{font-family:ff4_c01156;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m76_c01156{transform:matrix(0.010417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.010417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.010417,0.000000,0.000000,0.250000,0,0);}
.m7c_c01156{transform:matrix(0.026042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026042,0.000000,0.000000,0.250000,0,0);}
.m74_c01156{transform:matrix(0.046876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.046876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.046876,0.000000,0.000000,0.250000,0,0);}
.m1d_c01156{transform:matrix(0.068182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.068182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.068182,0.000000,0.000000,0.250000,0,0);}
.m77_c01156{transform:matrix(0.074219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.074219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.074219,0.000000,0.000000,0.250000,0,0);}
.m7d_c01156{transform:matrix(0.076389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076389,0.000000,0.000000,0.250000,0,0);}
.m79_c01156{transform:matrix(0.078125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078125,0.000000,0.000000,0.250000,0,0);}
.m75_c01156{transform:matrix(0.097222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097222,0.000000,0.000000,0.250000,0,0);}
.m6_c01156{transform:matrix(0.104166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104166,0.000000,0.000000,0.250000,0,0);}
.m2b_c01156{transform:matrix(0.113373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113373,0.000000,0.000000,0.250000,0,0);}
.m7b_c01156{transform:matrix(0.120739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120739,0.000000,0.000000,0.250000,0,0);}
.ma1_c01156{transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);}
.m2d_c01156{transform:matrix(0.127907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127907,0.000000,0.000000,0.250000,0,0);}
.m2e_c01156{transform:matrix(0.145348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145348,0.000000,0.000000,0.250000,0,0);}
.m98_c01156{transform:matrix(0.151640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151640,0.000000,0.000000,0.250000,0,0);}
.m73_c01156{transform:matrix(0.152778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152778,0.000000,0.000000,0.250000,0,0);}
.m78_c01156{transform:matrix(0.155053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155053,0.000000,0.000000,0.250000,0,0);}
.m5_c01156{transform:matrix(0.159723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159723,0.000000,0.000000,0.250000,0,0);}
.m8_c01156{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);}
.m2c_c01156{transform:matrix(0.174418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174418,0.000000,0.000000,0.250000,0,0);}
.m45_c01156{transform:matrix(0.177982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177982,0.000000,0.000000,0.250000,0,0);}
.m7a_c01156{transform:matrix(0.184410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184410,0.000000,0.000000,0.250000,0,0);}
.m3_c01156{transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);}
.m82_c01156{transform:matrix(0.194708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194708,0.000000,0.000000,0.250000,0,0);}
.m94_c01156{transform:matrix(0.197464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197464,0.000000,0.000000,0.250000,0,0);}
.m1a_c01156{transform:matrix(0.203321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203321,0.000000,0.000000,0.250000,0,0);}
.ma0_c01156{transform:matrix(0.205952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205952,0.000000,0.000000,0.250000,0,0);}
.m8a_c01156{transform:matrix(0.208098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208098,0.000000,0.000000,0.250000,0,0);}
.m7_c01156{transform:matrix(0.213194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213194,0.000000,0.000000,0.250000,0,0);}
.m6e_c01156{transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);}
.m4_c01156{transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);}
.m93_c01156{transform:matrix(0.233503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233503,0.000000,0.000000,0.250000,0,0);}
.m90_c01156{transform:matrix(0.246469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246469,0.000000,0.000000,0.250000,0,0);}
.m34_c01156{transform:matrix(0.247563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247563,0.000000,0.000000,0.250000,0,0);}
.m26_c01156{transform:matrix(0.248363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248363,0.000000,0.000000,0.250000,0,0);}
.m1_c01156{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01156{transform:matrix(0.250546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250546,0.000000,0.000000,0.250000,0,0);}
.m72_c01156{transform:matrix(0.250602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250602,0.000000,0.000000,0.250000,0,0);}
.m3f_c01156{transform:matrix(0.251445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251445,0.000000,0.000000,0.250000,0,0);}
.m47_c01156{transform:matrix(0.251640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251640,0.000000,0.000000,0.250000,0,0);}
.m9a_c01156{transform:matrix(0.251808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251808,0.000000,0.000000,0.250000,0,0);}
.m27_c01156{transform:matrix(0.252313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252313,0.000000,0.000000,0.250000,0,0);}
.m8f_c01156{transform:matrix(0.252800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252800,0.000000,0.000000,0.250000,0,0);}
.m69_c01156{transform:matrix(0.254142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254142,0.000000,0.000000,0.250000,0,0);}
.m11_c01156{transform:matrix(0.254533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254533,0.000000,0.000000,0.250000,0,0);}
.m1c_c01156{transform:matrix(0.255101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255101,0.000000,0.000000,0.250000,0,0);}
.m86_c01156{transform:matrix(0.255119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255119,0.000000,0.000000,0.250000,0,0);}
.m97_c01156{transform:matrix(0.255768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255768,0.000000,0.000000,0.250000,0,0);}
.mb_c01156{transform:matrix(0.256819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256819,0.000000,0.000000,0.250000,0,0);}
.m5d_c01156{transform:matrix(0.257257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257257,0.000000,0.000000,0.250000,0,0);}
.m62_c01156{transform:matrix(0.257425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257425,0.000000,0.000000,0.250000,0,0);}
.m6f_c01156{transform:matrix(0.257438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257438,0.000000,0.000000,0.250000,0,0);}
.m1e_c01156{transform:matrix(0.258727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258727,0.000000,0.000000,0.250000,0,0);}
.m92_c01156{transform:matrix(0.259256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259256,0.000000,0.000000,0.250000,0,0);}
.m10_c01156{transform:matrix(0.259621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259621,0.000000,0.000000,0.250000,0,0);}
.m23_c01156{transform:matrix(0.262007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262007,0.000000,0.000000,0.250000,0,0);}
.m96_c01156{transform:matrix(0.262419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262419,0.000000,0.000000,0.250000,0,0);}
.m31_c01156{transform:matrix(0.264211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264211,0.000000,0.000000,0.250000,0,0);}
.m35_c01156{transform:matrix(0.264236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264236,0.000000,0.000000,0.250000,0,0);}
.m85_c01156{transform:matrix(0.264477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264477,0.000000,0.000000,0.250000,0,0);}
.m4a_c01156{transform:matrix(0.265242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265242,0.000000,0.000000,0.250000,0,0);}
.m3b_c01156{transform:matrix(0.265429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265429,0.000000,0.000000,0.250000,0,0);}
.m19_c01156{transform:matrix(0.266162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266162,0.000000,0.000000,0.250000,0,0);}
.m70_c01156{transform:matrix(0.267081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267081,0.000000,0.000000,0.250000,0,0);}
.m2f_c01156{transform:matrix(0.267885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267885,0.000000,0.000000,0.250000,0,0);}
.m8e_c01156{transform:matrix(0.268331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268331,0.000000,0.000000,0.250000,0,0);}
.m13_c01156{transform:matrix(0.268767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268767,0.000000,0.000000,0.250000,0,0);}
.m1f_c01156{transform:matrix(0.268779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268779,0.000000,0.000000,0.250000,0,0);}
.m21_c01156{transform:matrix(0.268831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268831,0.000000,0.000000,0.250000,0,0);}
.m0_c01156{transform:matrix(0.269315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269315,0.000000,0.000000,0.250000,0,0);}
.m38_c01156{transform:matrix(0.269355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269355,0.000000,0.000000,0.250000,0,0);}
.m7f_c01156{transform:matrix(0.270033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270033,0.000000,0.000000,0.250000,0,0);}
.m42_c01156{transform:matrix(0.270276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270276,0.000000,0.000000,0.250000,0,0);}
.m95_c01156{transform:matrix(0.271225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271225,0.000000,0.000000,0.250000,0,0);}
.m5f_c01156{transform:matrix(0.273485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273485,0.000000,0.000000,0.250000,0,0);}
.m59_c01156{transform:matrix(0.273722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273722,0.000000,0.000000,0.250000,0,0);}
.m83_c01156{transform:matrix(0.274117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274117,0.000000,0.000000,0.250000,0,0);}
.mf_c01156{transform:matrix(0.274264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274264,0.000000,0.000000,0.250000,0,0);}
.m5c_c01156{transform:matrix(0.275304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275304,0.000000,0.000000,0.250000,0,0);}
.m91_c01156{transform:matrix(0.275584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275584,0.000000,0.000000,0.250000,0,0);}
.m52_c01156{transform:matrix(0.275599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275599,0.000000,0.000000,0.250000,0,0);}
.m15_c01156{transform:matrix(0.276563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276563,0.000000,0.000000,0.250000,0,0);}
.ma_c01156{transform:matrix(0.276956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276956,0.000000,0.000000,0.250000,0,0);}
.m3a_c01156{transform:matrix(0.277385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277385,0.000000,0.000000,0.250000,0,0);}
.m3d_c01156{transform:matrix(0.279338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279338,0.000000,0.000000,0.250000,0,0);}
.m9_c01156{transform:matrix(0.279975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279975,0.000000,0.000000,0.250000,0,0);}
.m4e_c01156{transform:matrix(0.280403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280403,0.000000,0.000000,0.250000,0,0);}
.m18_c01156{transform:matrix(0.282819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282819,0.000000,0.000000,0.250000,0,0);}
.m57_c01156{transform:matrix(0.283292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283292,0.000000,0.000000,0.250000,0,0);}
.m66_c01156{transform:matrix(0.284567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284567,0.000000,0.000000,0.250000,0,0);}
.m46_c01156{transform:matrix(0.284678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284678,0.000000,0.000000,0.250000,0,0);}
.m67_c01156{transform:matrix(0.285876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285876,0.000000,0.000000,0.250000,0,0);}
.me_c01156{transform:matrix(0.285925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285925,0.000000,0.000000,0.250000,0,0);}
.m9c_c01156{transform:matrix(0.286498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286498,0.000000,0.000000,0.250000,0,0);}
.m6d_c01156{transform:matrix(0.287101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287101,0.000000,0.000000,0.250000,0,0);}
.m9d_c01156{transform:matrix(0.287626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287626,0.000000,0.000000,0.250000,0,0);}
.m65_c01156{transform:matrix(0.287866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287866,0.000000,0.000000,0.250000,0,0);}
.m3c_c01156{transform:matrix(0.288591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288591,0.000000,0.000000,0.250000,0,0);}
.m40_c01156{transform:matrix(0.289581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289581,0.000000,0.000000,0.250000,0,0);}
.m9e_c01156{transform:matrix(0.290743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290743,0.000000,0.000000,0.250000,0,0);}
.m48_c01156{transform:matrix(0.291181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291181,0.000000,0.000000,0.250000,0,0);}
.m1b_c01156{transform:matrix(0.291315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291315,0.000000,0.000000,0.250000,0,0);}
.m81_c01156{transform:matrix(0.292871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292871,0.000000,0.000000,0.250000,0,0);}
.m9f_c01156{transform:matrix(0.292882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292882,0.000000,0.000000,0.250000,0,0);}
.m49_c01156{transform:matrix(0.293174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293174,0.000000,0.000000,0.250000,0,0);}
.m6c_c01156{transform:matrix(0.294651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294651,0.000000,0.000000,0.250000,0,0);}
.m12_c01156{transform:matrix(0.295712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295712,0.000000,0.000000,0.250000,0,0);}
.m5e_c01156{transform:matrix(0.295858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295858,0.000000,0.000000,0.250000,0,0);}
.m51_c01156{transform:matrix(0.296632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296632,0.000000,0.000000,0.250000,0,0);}
.m4f_c01156{transform:matrix(0.298224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298224,0.000000,0.000000,0.250000,0,0);}
.m5b_c01156{transform:matrix(0.298542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298542,0.000000,0.000000,0.250000,0,0);}
.m4c_c01156{transform:matrix(0.300353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300353,0.000000,0.000000,0.250000,0,0);}
.m55_c01156{transform:matrix(0.300446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300446,0.000000,0.000000,0.250000,0,0);}
.m20_c01156{transform:matrix(0.300730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300730,0.000000,0.000000,0.250000,0,0);}
.m8c_c01156{transform:matrix(0.300791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300791,0.000000,0.000000,0.250000,0,0);}
.m4b_c01156{transform:matrix(0.302358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302358,0.000000,0.000000,0.250000,0,0);}
.m5a_c01156{transform:matrix(0.304905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304905,0.000000,0.000000,0.250000,0,0);}
.m80_c01156{transform:matrix(0.306867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306867,0.000000,0.000000,0.250000,0,0);}
.m54_c01156{transform:matrix(0.307200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307200,0.000000,0.000000,0.250000,0,0);}
.m50_c01156{transform:matrix(0.307392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307392,0.000000,0.000000,0.250000,0,0);}
.m7e_c01156{transform:matrix(0.307805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307805,0.000000,0.000000,0.250000,0,0);}
.m2a_c01156{transform:matrix(0.308425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308425,0.000000,0.000000,0.250000,0,0);}
.m89_c01156{transform:matrix(0.309184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309184,0.000000,0.000000,0.250000,0,0);}
.m87_c01156{transform:matrix(0.310371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310371,0.000000,0.000000,0.250000,0,0);}
.m88_c01156{transform:matrix(0.311931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311931,0.000000,0.000000,0.250000,0,0);}
.m84_c01156{transform:matrix(0.312791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312791,0.000000,0.000000,0.250000,0,0);}
.m4d_c01156{transform:matrix(0.313589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313589,0.000000,0.000000,0.250000,0,0);}
.m43_c01156{transform:matrix(0.316870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316870,0.000000,0.000000,0.250000,0,0);}
.m29_c01156{transform:matrix(0.317563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317563,0.000000,0.000000,0.250000,0,0);}
.m22_c01156{transform:matrix(0.318655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318655,0.000000,0.000000,0.250000,0,0);}
.m17_c01156{transform:matrix(0.320236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320236,0.000000,0.000000,0.250000,0,0);}
.m63_c01156{transform:matrix(0.320430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320430,0.000000,0.000000,0.250000,0,0);}
.m61_c01156{transform:matrix(0.321761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321761,0.000000,0.000000,0.250000,0,0);}
.m41_c01156{transform:matrix(0.321890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321890,0.000000,0.000000,0.250000,0,0);}
.m44_c01156{transform:matrix(0.322321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322321,0.000000,0.000000,0.250000,0,0);}
.m14_c01156{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);}
.m32_c01156{transform:matrix(0.324220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324220,0.000000,0.000000,0.250000,0,0);}
.mc_c01156{transform:matrix(0.324309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324309,0.000000,0.000000,0.250000,0,0);}
.m28_c01156{transform:matrix(0.325001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325001,0.000000,0.000000,0.250000,0,0);}
.m9b_c01156{transform:matrix(0.325791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325791,0.000000,0.000000,0.250000,0,0);}
.m71_c01156{transform:matrix(0.326123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326123,0.000000,0.000000,0.250000,0,0);}
.m2_c01156{transform:matrix(0.328961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328961,0.000000,0.000000,0.250000,0,0);}
.m36_c01156{transform:matrix(0.329245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329245,0.000000,0.000000,0.250000,0,0);}
.m16_c01156{transform:matrix(0.329809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329809,0.000000,0.000000,0.250000,0,0);}
.m6b_c01156{transform:matrix(0.330925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330925,0.000000,0.000000,0.250000,0,0);}
.m58_c01156{transform:matrix(0.332516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332516,0.000000,0.000000,0.250000,0,0);}
.m6a_c01156{transform:matrix(0.332678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332678,0.000000,0.000000,0.250000,0,0);}
.m24_c01156{transform:matrix(0.334584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334584,0.000000,0.000000,0.250000,0,0);}
.m25_c01156{transform:matrix(0.336835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336835,0.000000,0.000000,0.250000,0,0);}
.m30_c01156{transform:matrix(0.337249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337249,0.000000,0.000000,0.250000,0,0);}
.m60_c01156{transform:matrix(0.340619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340619,0.000000,0.000000,0.250000,0,0);}
.m99_c01156{transform:matrix(0.350107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350107,0.000000,0.000000,0.250000,0,0);}
.m68_c01156{transform:matrix(0.350251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350251,0.000000,0.000000,0.250000,0,0);}
.m64_c01156{transform:matrix(0.358075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358075,0.000000,0.000000,0.250000,0,0);}
.m33_c01156{transform:matrix(0.363851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363851,0.000000,0.000000,0.250000,0,0);}
.md_c01156{transform:matrix(0.370070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370070,0.000000,0.000000,0.250000,0,0);}
.m37_c01156{transform:matrix(0.370152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370152,0.000000,0.000000,0.250000,0,0);}
.m39_c01156{transform:matrix(0.375943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375943,0.000000,0.000000,0.250000,0,0);}
.m8b_c01156{transform:matrix(0.378063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378063,0.000000,0.000000,0.250000,0,0);}
.m56_c01156{transform:matrix(0.379142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379142,0.000000,0.000000,0.250000,0,0);}
.m8d_c01156{transform:matrix(0.383350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383350,0.000000,0.000000,0.250000,0,0);}
.m3e_c01156{transform:matrix(0.406429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406429,0.000000,0.000000,0.250000,0,0);}
.v0_c01156{vertical-align:0.000000px;}
.v1_c01156{vertical-align:4.296600px;}
.ls15_c01156{letter-spacing:-3.000690px;}
.ls5_c01156{letter-spacing:-2.813580px;}
.ls12_c01156{letter-spacing:-2.508667px;}
.lsf_c01156{letter-spacing:-1.929312px;}
.ls19_c01156{letter-spacing:-1.690920px;}
.lsd_c01156{letter-spacing:-1.275120px;}
.ls6_c01156{letter-spacing:-0.192931px;}
.ls3_c01156{letter-spacing:0.000000px;}
.ls17_c01156{letter-spacing:0.104504px;}
.ls8_c01156{letter-spacing:1.591682px;}
.lsc_c01156{letter-spacing:2.065972px;}
.ls0_c01156{letter-spacing:2.078208px;}
.ls13_c01156{letter-spacing:2.299097px;}
.ls18_c01156{letter-spacing:2.415600px;}
.lsb_c01156{letter-spacing:3.295908px;}
.lsa_c01156{letter-spacing:3.425400px;}
.ls14_c01156{letter-spacing:3.488839px;}
.lse_c01156{letter-spacing:3.722400px;}
.ls2_c01156{letter-spacing:4.019400px;}
.ls1_c01156{letter-spacing:27.006364px;}
.ls1a_c01156{letter-spacing:31.363200px;}
.ls10_c01156{letter-spacing:48.470598px;}
.ls4_c01156{letter-spacing:51.321798px;}
.ls9_c01156{letter-spacing:61.300998px;}
.ls7_c01156{letter-spacing:62.726400px;}
.ls16_c01156{letter-spacing:65.577798px;}
.ls11_c01156{letter-spacing:68.428998px;}
.sc__c01156{text-shadow:none;}
.sc0_c01156{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01156{-webkit-text-stroke:0px transparent;}
.sc0_c01156{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01156{word-spacing:-22.162972px;}
.ws1_c01156{word-spacing:-21.688682px;}
.ws3_c01156{word-spacing:-20.097000px;}
.ws0_c01156{word-spacing:-1.205820px;}
.ws4_c01156{word-spacing:0.000000px;}
._14_c01156{margin-left:-31.236623px;}
._16_c01156{margin-left:-16.317972px;}
._15_c01156{margin-left:-13.917024px;}
._a_c01156{margin-left:-12.533400px;}
._9_c01156{margin-left:-8.298576px;}
._1_c01156{margin-left:-2.492028px;}
._5_c01156{width:2.090088px;}
._7_c01156{width:5.305608px;}
._0_c01156{width:7.395696px;}
._f_c01156{width:8.441928px;}
._e_c01156{width:10.449648px;}
._b_c01156{width:11.674318px;}
._12_c01156{width:21.142044px;}
._d_c01156{width:24.116796px;}
._10_c01156{width:25.273987px;}
._3_c01156{width:27.411516px;}
._13_c01156{width:28.571400px;}
._8_c01156{width:33.682572px;}
._4_c01156{width:35.853048px;}
._c_c01156{width:38.184300px;}
._2_c01156{width:43.804728px;}
._6_c01156{width:45.178056px;}
._11_c01156{width:50.885604px;}
.fc0_c01156{color:transparent;}
.fs15_c01156{font-size:25.146000px;}
.fsf_c01156{font-size:27.720000px;}
.fs16_c01156{font-size:31.363200px;}
.fs14_c01156{font-size:34.848000px;}
.fs6_c01156{font-size:36.432000px;}
.fs3_c01156{font-size:40.788000px;}
.fs13_c01156{font-size:48.312000px;}
.fs9_c01156{font-size:48.470598px;}
.fs1_c01156{font-size:51.321798px;}
.fs12_c01156{font-size:55.836198px;}
.fsa_c01156{font-size:60.192000px;}
.fs4_c01156{font-size:61.300998px;}
.fs2_c01156{font-size:62.726400px;}
.fs11_c01156{font-size:65.577798px;}
.fsb_c01156{font-size:68.428998px;}
.fs5_c01156{font-size:68.508000px;}
.fsc_c01156{font-size:71.676198px;}
.fs7_c01156{font-size:74.448000px;}
.fs8_c01156{font-size:74.844000px;}
.fs0_c01156{font-size:80.388000px;}
.fse_c01156{font-size:81.180000px;}
.fs10_c01156{font-size:85.734000px;}
.fsd_c01156{font-size:107.712198px;}
.y0_c01156{bottom:0.000000px;}
.y1c_c01156{bottom:53.366985px;}
.y1b_c01156{bottom:64.063935px;}
.y1_c01156{bottom:76.500000px;}
.y1a_c01156{bottom:80.458335px;}
.y19_c01156{bottom:126.077535px;}
.y18_c01156{bottom:157.792185px;}
.y17_c01156{bottom:225.156735px;}
.y16_c01156{bottom:267.919785px;}
.y15_c01156{bottom:288.239535px;}
.y14_c01156{bottom:352.386585px;}
.y13_c01156{bottom:417.612735px;}
.y12_c01156{bottom:449.332335px;}
.y11_c01156{bottom:481.046985px;}
.y10_c01156{bottom:539.501535px;}
.yf_c01156{bottom:546.624585px;}
.ye_c01156{bottom:577.631385px;}
.yd_c01156{bottom:610.420185px;}
.yc_c01156{bottom:642.501135px;}
.yb_c01156{bottom:674.577135px;}
.ya_c01156{bottom:706.296735px;}
.y9_c01156{bottom:738.372735px;}
.y8_c01156{bottom:770.443785px;}
.y7_c01156{bottom:802.163385px;}
.y6_c01156{bottom:834.595785px;}
.y5_c01156{bottom:866.320335px;}
.y4_c01156{bottom:899.109135px;}
.y3_c01156{bottom:930.823785px;}
.y2_c01156{bottom:1072.314585px;}
.h17_c01156{height:20.887891px;}
.h16_c01156{height:26.226492px;}
.h11_c01156{height:28.911094px;}
.hb_c01156{height:32.281418px;}
.h3_c01156{height:34.180317px;}
.h15_c01156{height:34.201406px;}
.h8_c01156{height:37.997438px;}
.h5_c01156{height:40.031191px;}
.h6_c01156{height:40.826465px;}
.h4_c01156{height:41.775782px;}
.h13_c01156{height:43.674813px;}
.hd_c01156{height:45.573713px;}
.h14_c01156{height:50.387906px;}
.hc_c01156{height:62.778375px;}
.h7_c01156{height:67.236855px;}
.he_c01156{height:70.346269px;}
.h9_c01156{height:73.066641px;}
.ha_c01156{height:73.455293px;}
.h2_c01156{height:78.896426px;}
.h10_c01156{height:79.673730px;}
.h12_c01156{height:84.101370px;}
.hf_c01156{height:105.713632px;}
.h1_c01156{height:1110.000000px;}
.h0_c01156{height:1263.000000px;}
.w1_c01156{width:775.500000px;}
.w0_c01156{width:892.500000px;}
.x0_c01156{left:0.000000px;}
.x1_c01156{left:58.500000px;}
.x6e_c01156{left:91.220235px;}
.x5d_c01156{left:92.284485px;}
.x3b_c01156{left:138.571935px;}
.x71_c01156{left:146.803785px;}
.x5e_c01156{left:148.194735px;}
.x1d_c01156{left:149.986635px;}
.x13_c01156{left:151.194435px;}
.x4_c01156{left:152.209185px;}
.x35_c01156{left:181.354785px;}
.x14_c01156{left:183.493185px;}
.x6f_c01156{left:192.130935px;}
.x4e_c01156{left:194.338635px;}
.x5_c01156{left:196.011735px;}
.x72_c01156{left:202.070535px;}
.x5f_c01156{left:203.362485px;}
.x6_c01156{left:205.990935px;}
.x45_c01156{left:207.916485px;}
.x3c_c01156{left:216.767085px;}
.x7_c01156{left:218.459985px;}
.x68_c01156{left:226.241385px;}
.x8_c01156{left:228.439185px;}
.x58_c01156{left:236.631435px;}
.x9_c01156{left:238.779735px;}
.x1e_c01156{left:240.314235px;}
.x2b_c01156{left:241.507185px;}
.x36_c01156{left:249.412335px;}
.x70_c01156{left:259.114335px;}
.x2c_c01156{left:260.470635px;}
.x6b_c01156{left:269.791485px;}
.x28_c01156{left:271.528935px;}
.x15_c01156{left:274.093035px;}
.x60_c01156{left:280.374585px;}
.x59_c01156{left:282.735735px;}
.x3d_c01156{left:284.171235px;}
.x73_c01156{left:291.130935px;}
.x2d_c01156{left:294.694935px;}
.x16_c01156{left:306.545235px;}
.x5b_c01156{left:315.554235px;}
.x46_c01156{left:316.628385px;}
.x5c_c01156{left:319.538985px;}
.x6c_c01156{left:325.701735px;}
.x1f_c01156{left:327.483735px;}
.x37_c01156{left:338.334135px;}
.x3e_c01156{left:349.768635px;}
.xa_c01156{left:351.397185px;}
.x74_c01156{left:358.317285px;}
.x47_c01156{left:359.911185px;}
.x4b_c01156{left:361.742685px;}
.x2e_c01156{left:372.093135px;}
.x20_c01156{left:382.042635px;}
.xb_c01156{left:383.854335px;}
.x75_c01156{left:391.091235px;}
.x69_c01156{left:392.348535px;}
.x48_c01156{left:394.120635px;}
.x4c_c01156{left:403.382085px;}
.x54_c01156{left:405.010635px;}
.x21_c01156{left:406.782735px;}
.x61_c01156{left:413.054385px;}
.x62_c01156{left:415.910535px;}
.x38_c01156{left:417.063885px;}
.x76_c01156{left:423.790935px;}
.x4f_c01156{left:426.726285px;}
.x17_c01156{left:427.953885px;}
.x63_c01156{left:436.933185px;}
.x64_c01156{left:438.358785px;}
.xc_c01156{left:439.903185px;}
.x55_c01156{left:448.293435px;}
.x22_c01156{left:449.367585px;}
.x49_c01156{left:458.980485px;}
.x3f_c01156{left:460.480335px;}
.x29_c01156{left:461.599035px;}
.x50_c01156{left:471.271335px;}
.xd_c01156{left:472.345485px;}
.x56_c01156{left:480.765435px;}
.x2f_c01156{left:483.621585px;}
.x77_c01156{left:490.650585px;}
.x40_c01156{left:492.655335px;}
.xe_c01156{left:494.442285px;}
.x51_c01156{left:500.491185px;}
.x6d_c01156{left:502.520685px;}
.x65_c01156{left:503.941335px;}
.x18_c01156{left:505.124385px;}
.x6a_c01156{left:513.509685px;}
.x4d_c01156{left:515.479785px;}
.x30_c01156{left:517.573635px;}
.x41_c01156{left:525.627285px;}
.x19_c01156{left:537.566685px;}
.x66_c01156{left:542.427585px;}
.x31_c01156{left:547.724085px;}
.xf_c01156{left:548.996235px;}
.x78_c01156{left:553.000785px;}
.x79_c01156{left:555.965835px;}
.x42_c01156{left:558.104235px;}
.x52_c01156{left:559.138785px;}
.x2a_c01156{left:560.747535px;}
.x39_c01156{left:569.959485px;}
.x23_c01156{left:573.469035px;}
.x5a_c01156{left:580.527735px;}
.x10_c01156{left:581.809785px;}
.x57_c01156{left:591.739485px;}
.x24_c01156{left:593.521485px;}
.x3a_c01156{left:603.466035px;}
.x7a_c01156{left:611.113785px;}
.x25_c01156{left:614.722335px;}
.x1a_c01156{left:615.989535px;}
.x32_c01156{left:624.350085px;}
.x11_c01156{left:625.919235px;}
.x1b_c01156{left:637.264635px;}
.x67_c01156{left:651.129585px;}
.x53_c01156{left:658.044735px;}
.x33_c01156{left:659.450535px;}
.x1c_c01156{left:670.112835px;}
.x4a_c01156{left:680.819685px;}
.x12_c01156{left:682.200735px;}
.x26_c01156{left:683.923335px;}
.x7b_c01156{left:689.863335px;}
.x34_c01156{left:692.209635px;}
.x27_c01156{left:704.010435px;}
.x7c_c01156{left:706.287435px;}
.x7d_c01156{left:707.623935px;}
.x2_c01156{left:710.029635px;}
.x43_c01156{left:714.999435px;}
.x3_c01156{left:753.178785px;}
.x44_c01156{left:755.129085px;}
@media print{
.v0_c01156{vertical-align:0.000000pt;}
.v1_c01156{vertical-align:3.819200pt;}
.ls15_c01156{letter-spacing:-2.667280pt;}
.ls5_c01156{letter-spacing:-2.500960pt;}
.ls12_c01156{letter-spacing:-2.229926pt;}
.lsf_c01156{letter-spacing:-1.714944pt;}
.ls19_c01156{letter-spacing:-1.503040pt;}
.lsd_c01156{letter-spacing:-1.133440pt;}
.ls6_c01156{letter-spacing:-0.171494pt;}
.ls3_c01156{letter-spacing:0.000000pt;}
.ls17_c01156{letter-spacing:0.092893pt;}
.ls8_c01156{letter-spacing:1.414829pt;}
.lsc_c01156{letter-spacing:1.836419pt;}
.ls0_c01156{letter-spacing:1.847296pt;}
.ls13_c01156{letter-spacing:2.043642pt;}
.ls18_c01156{letter-spacing:2.147200pt;}
.lsb_c01156{letter-spacing:2.929696pt;}
.lsa_c01156{letter-spacing:3.044800pt;}
.ls14_c01156{letter-spacing:3.101190pt;}
.lse_c01156{letter-spacing:3.308800pt;}
.ls2_c01156{letter-spacing:3.572800pt;}
.ls1_c01156{letter-spacing:24.005657pt;}
.ls1a_c01156{letter-spacing:27.878400pt;}
.ls10_c01156{letter-spacing:43.084976pt;}
.ls4_c01156{letter-spacing:45.619376pt;}
.ls9_c01156{letter-spacing:54.489776pt;}
.ls7_c01156{letter-spacing:55.756800pt;}
.ls16_c01156{letter-spacing:58.291376pt;}
.ls11_c01156{letter-spacing:60.825776pt;}
.ws2_c01156{word-spacing:-19.700419pt;}
.ws1_c01156{word-spacing:-19.278829pt;}
.ws3_c01156{word-spacing:-17.864000pt;}
.ws0_c01156{word-spacing:-1.071840pt;}
.ws4_c01156{word-spacing:0.000000pt;}
._14_c01156{margin-left:-27.765887pt;}
._16_c01156{margin-left:-14.504864pt;}
._15_c01156{margin-left:-12.370688pt;}
._a_c01156{margin-left:-11.140800pt;}
._9_c01156{margin-left:-7.376512pt;}
._1_c01156{margin-left:-2.215136pt;}
._5_c01156{width:1.857856pt;}
._7_c01156{width:4.716096pt;}
._0_c01156{width:6.573952pt;}
._f_c01156{width:7.503936pt;}
._e_c01156{width:9.288576pt;}
._b_c01156{width:10.377171pt;}
._12_c01156{width:18.792928pt;}
._d_c01156{width:21.437152pt;}
._10_c01156{width:22.465766pt;}
._3_c01156{width:24.365792pt;}
._13_c01156{width:25.396800pt;}
._8_c01156{width:29.940064pt;}
._4_c01156{width:31.869376pt;}
._c_c01156{width:33.941600pt;}
._2_c01156{width:38.937536pt;}
._6_c01156{width:40.158272pt;}
._11_c01156{width:45.231648pt;}
.fs15_c01156{font-size:22.352000pt;}
.fsf_c01156{font-size:24.640000pt;}
.fs16_c01156{font-size:27.878400pt;}
.fs14_c01156{font-size:30.976000pt;}
.fs6_c01156{font-size:32.384000pt;}
.fs3_c01156{font-size:36.256000pt;}
.fs13_c01156{font-size:42.944000pt;}
.fs9_c01156{font-size:43.084976pt;}
.fs1_c01156{font-size:45.619376pt;}
.fs12_c01156{font-size:49.632176pt;}
.fsa_c01156{font-size:53.504000pt;}
.fs4_c01156{font-size:54.489776pt;}
.fs2_c01156{font-size:55.756800pt;}
.fs11_c01156{font-size:58.291376pt;}
.fsb_c01156{font-size:60.825776pt;}
.fs5_c01156{font-size:60.896000pt;}
.fsc_c01156{font-size:63.712176pt;}
.fs7_c01156{font-size:66.176000pt;}
.fs8_c01156{font-size:66.528000pt;}
.fs0_c01156{font-size:71.456000pt;}
.fse_c01156{font-size:72.160000pt;}
.fs10_c01156{font-size:76.208000pt;}
.fsd_c01156{font-size:95.744176pt;}
.y0_c01156{bottom:0.000000pt;}
.y1c_c01156{bottom:47.437320pt;}
.y1b_c01156{bottom:56.945720pt;}
.y1_c01156{bottom:68.000000pt;}
.y1a_c01156{bottom:71.518520pt;}
.y19_c01156{bottom:112.068920pt;}
.y18_c01156{bottom:140.259720pt;}
.y17_c01156{bottom:200.139320pt;}
.y16_c01156{bottom:238.150920pt;}
.y15_c01156{bottom:256.212920pt;}
.y14_c01156{bottom:313.232520pt;}
.y13_c01156{bottom:371.211320pt;}
.y12_c01156{bottom:399.406520pt;}
.y11_c01156{bottom:427.597320pt;}
.y10_c01156{bottom:479.556920pt;}
.yf_c01156{bottom:485.888520pt;}
.ye_c01156{bottom:513.450120pt;}
.yd_c01156{bottom:542.595720pt;}
.yc_c01156{bottom:571.112120pt;}
.yb_c01156{bottom:599.624120pt;}
.ya_c01156{bottom:627.819320pt;}
.y9_c01156{bottom:656.331320pt;}
.y8_c01156{bottom:684.838920pt;}
.y7_c01156{bottom:713.034120pt;}
.y6_c01156{bottom:741.862920pt;}
.y5_c01156{bottom:770.062520pt;}
.y4_c01156{bottom:799.208120pt;}
.y3_c01156{bottom:827.398920pt;}
.y2_c01156{bottom:953.168520pt;}
.h17_c01156{height:18.567014pt;}
.h16_c01156{height:23.312438pt;}
.h11_c01156{height:25.698750pt;}
.hb_c01156{height:28.694594pt;}
.h3_c01156{height:30.382504pt;}
.h15_c01156{height:30.401250pt;}
.h8_c01156{height:33.775500pt;}
.h5_c01156{height:35.583281pt;}
.h6_c01156{height:36.290191pt;}
.h4_c01156{height:37.134029pt;}
.h13_c01156{height:38.822056pt;}
.hd_c01156{height:40.509967pt;}
.h14_c01156{height:44.789250pt;}
.hc_c01156{height:55.803000pt;}
.h7_c01156{height:59.766094pt;}
.he_c01156{height:62.530016pt;}
.h9_c01156{height:64.948125pt;}
.ha_c01156{height:65.293594pt;}
.h2_c01156{height:70.130156pt;}
.h10_c01156{height:70.821094pt;}
.h12_c01156{height:74.756773pt;}
.hf_c01156{height:93.967673pt;}
.h1_c01156{height:986.666667pt;}
.h0_c01156{height:1122.666667pt;}
.w1_c01156{width:689.333333pt;}
.w0_c01156{width:793.333333pt;}
.x0_c01156{left:0.000000pt;}
.x1_c01156{left:52.000000pt;}
.x6e_c01156{left:81.084653pt;}
.x5d_c01156{left:82.030653pt;}
.x3b_c01156{left:123.175053pt;}
.x71_c01156{left:130.492253pt;}
.x5e_c01156{left:131.728653pt;}
.x1d_c01156{left:133.321453pt;}
.x13_c01156{left:134.395053pt;}
.x4_c01156{left:135.297053pt;}
.x35_c01156{left:161.204253pt;}
.x14_c01156{left:163.105053pt;}
.x6f_c01156{left:170.783053pt;}
.x4e_c01156{left:172.745453pt;}
.x5_c01156{left:174.232653pt;}
.x72_c01156{left:179.618253pt;}
.x5f_c01156{left:180.766653pt;}
.x6_c01156{left:183.103053pt;}
.x45_c01156{left:184.814653pt;}
.x3c_c01156{left:192.681853pt;}
.x7_c01156{left:194.186653pt;}
.x68_c01156{left:201.103453pt;}
.x8_c01156{left:203.057053pt;}
.x58_c01156{left:210.339053pt;}
.x9_c01156{left:212.248653pt;}
.x1e_c01156{left:213.612653pt;}
.x2b_c01156{left:214.673053pt;}
.x36_c01156{left:221.699853pt;}
.x70_c01156{left:230.323853pt;}
.x2c_c01156{left:231.529453pt;}
.x6b_c01156{left:239.814653pt;}
.x28_c01156{left:241.359053pt;}
.x15_c01156{left:243.638253pt;}
.x60_c01156{left:249.221853pt;}
.x59_c01156{left:251.320653pt;}
.x3d_c01156{left:252.596653pt;}
.x73_c01156{left:258.783053pt;}
.x2d_c01156{left:261.951053pt;}
.x16_c01156{left:272.484653pt;}
.x5b_c01156{left:280.492653pt;}
.x46_c01156{left:281.447453pt;}
.x5c_c01156{left:284.034653pt;}
.x6c_c01156{left:289.512653pt;}
.x1f_c01156{left:291.096653pt;}
.x37_c01156{left:300.741453pt;}
.x3e_c01156{left:310.905453pt;}
.xa_c01156{left:312.353053pt;}
.x74_c01156{left:318.504253pt;}
.x47_c01156{left:319.921053pt;}
.x4b_c01156{left:321.549053pt;}
.x2e_c01156{left:330.749453pt;}
.x20_c01156{left:339.593453pt;}
.xb_c01156{left:341.203853pt;}
.x75_c01156{left:347.636653pt;}
.x69_c01156{left:348.754253pt;}
.x48_c01156{left:350.329453pt;}
.x4c_c01156{left:358.561853pt;}
.x54_c01156{left:360.009453pt;}
.x21_c01156{left:361.584653pt;}
.x61_c01156{left:367.159453pt;}
.x62_c01156{left:369.698253pt;}
.x38_c01156{left:370.723453pt;}
.x76_c01156{left:376.703053pt;}
.x4f_c01156{left:379.312253pt;}
.x17_c01156{left:380.403453pt;}
.x63_c01156{left:388.385053pt;}
.x64_c01156{left:389.652253pt;}
.xc_c01156{left:391.025053pt;}
.x55_c01156{left:398.483053pt;}
.x22_c01156{left:399.437853pt;}
.x49_c01156{left:407.982653pt;}
.x3f_c01156{left:409.315853pt;}
.x29_c01156{left:410.310253pt;}
.x50_c01156{left:418.907853pt;}
.xd_c01156{left:419.862653pt;}
.x56_c01156{left:427.347053pt;}
.x2f_c01156{left:429.885853pt;}
.x77_c01156{left:436.133853pt;}
.x40_c01156{left:437.915853pt;}
.xe_c01156{left:439.504253pt;}
.x51_c01156{left:444.881053pt;}
.x6d_c01156{left:446.685053pt;}
.x65_c01156{left:447.947853pt;}
.x18_c01156{left:448.999453pt;}
.x6a_c01156{left:456.453053pt;}
.x4d_c01156{left:458.204253pt;}
.x30_c01156{left:460.065453pt;}
.x41_c01156{left:467.224253pt;}
.x19_c01156{left:477.837053pt;}
.x66_c01156{left:482.157853pt;}
.x31_c01156{left:486.865853pt;}
.xf_c01156{left:487.996653pt;}
.x78_c01156{left:491.556253pt;}
.x79_c01156{left:494.191853pt;}
.x42_c01156{left:496.092653pt;}
.x52_c01156{left:497.012253pt;}
.x2a_c01156{left:498.442253pt;}
.x39_c01156{left:506.630653pt;}
.x23_c01156{left:509.750253pt;}
.x5a_c01156{left:516.024653pt;}
.x10_c01156{left:517.164253pt;}
.x57_c01156{left:525.990653pt;}
.x24_c01156{left:527.574653pt;}
.x3a_c01156{left:536.414253pt;}
.x7a_c01156{left:543.212253pt;}
.x25_c01156{left:546.419853pt;}
.x1a_c01156{left:547.546253pt;}
.x32_c01156{left:554.977853pt;}
.x11_c01156{left:556.372653pt;}
.x1b_c01156{left:566.457453pt;}
.x67_c01156{left:578.781853pt;}
.x53_c01156{left:584.928653pt;}
.x33_c01156{left:586.178253pt;}
.x1c_c01156{left:595.655853pt;}
.x4a_c01156{left:605.173053pt;}
.x12_c01156{left:606.400653pt;}
.x26_c01156{left:607.931853pt;}
.x7b_c01156{left:613.211853pt;}
.x34_c01156{left:615.297453pt;}
.x27_c01156{left:625.787053pt;}
.x7c_c01156{left:627.811053pt;}
.x7d_c01156{left:628.999053pt;}
.x2_c01156{left:631.137453pt;}
.x43_c01156{left:635.555053pt;}
.x3_c01156{left:669.492253pt;}
.x44_c01156{left:671.225853pt;}
}





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

.ir_c01157:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01157{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01157;src:url('chunks/assets/font_72058cdeabed84afe804fac8.woff2')format("woff");}.ff1_c01157{font-family:ff1_c01157;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01157;src:url('chunks/assets/font_2fee066ec99142b240a475ae.woff2')format("woff");}.ff2_c01157{font-family:ff2_c01157;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01157;src:url('chunks/assets/font_35b5b06378620a5d4b82f2ce.woff2')format("woff");}.ff3_c01157{font-family:ff3_c01157;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01157;src:url('chunks/assets/font_335048056a79d88ba451e66c.woff2')format("woff");}.ff4_c01157{font-family:ff4_c01157;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m71_c01157{transform:matrix(0.074147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.074147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.074147,0.000000,0.000000,0.250000,0,0);}
.m2d_c01157{transform:matrix(0.109235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109235,0.000000,0.000000,0.250000,0,0);}
.m2c_c01157{transform:matrix(0.152916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152916,0.000000,0.000000,0.250000,0,0);}
.m5_c01157{transform:matrix(0.159518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159518,0.000000,0.000000,0.250000,0,0);}
.m5f_c01157{transform:matrix(0.173809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173809,0.000000,0.000000,0.250000,0,0);}
.m7c_c01157{transform:matrix(0.182217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182217,0.000000,0.000000,0.250000,0,0);}
.m47_c01157{transform:matrix(0.183673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183673,0.000000,0.000000,0.250000,0,0);}
.m7b_c01157{transform:matrix(0.203832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203832,0.000000,0.000000,0.250000,0,0);}
.m2a_c01157{transform:matrix(0.208633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208633,0.000000,0.000000,0.250000,0,0);}
.m6e_c01157{transform:matrix(0.226354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226354,0.000000,0.000000,0.250000,0,0);}
.m36_c01157{transform:matrix(0.249879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249879,0.000000,0.000000,0.250000,0,0);}
.m0_c01157{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.me_c01157{transform:matrix(0.252045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252045,0.000000,0.000000,0.250000,0,0);}
.m40_c01157{transform:matrix(0.252054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252054,0.000000,0.000000,0.250000,0,0);}
.m10_c01157{transform:matrix(0.253475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253475,0.000000,0.000000,0.250000,0,0);}
.m73_c01157{transform:matrix(0.254140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254140,0.000000,0.000000,0.250000,0,0);}
.m3a_c01157{transform:matrix(0.255923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255923,0.000000,0.000000,0.250000,0,0);}
.m19_c01157{transform:matrix(0.256061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256061,0.000000,0.000000,0.250000,0,0);}
.m1b_c01157{transform:matrix(0.260119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260119,0.000000,0.000000,0.250000,0,0);}
.m4_c01157{transform:matrix(0.261782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261782,0.000000,0.000000,0.250000,0,0);}
.m46_c01157{transform:matrix(0.262587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262587,0.000000,0.000000,0.250000,0,0);}
.m2b_c01157{transform:matrix(0.263982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263982,0.000000,0.000000,0.250000,0,0);}
.m7a_c01157{transform:matrix(0.264705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264705,0.000000,0.000000,0.250000,0,0);}
.m2e_c01157{transform:matrix(0.265985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265985,0.000000,0.000000,0.250000,0,0);}
.m38_c01157{transform:matrix(0.266656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266656,0.000000,0.000000,0.250000,0,0);}
.m6a_c01157{transform:matrix(0.269254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269254,0.000000,0.000000,0.250000,0,0);}
.m18_c01157{transform:matrix(0.269269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269269,0.000000,0.000000,0.250000,0,0);}
.m43_c01157{transform:matrix(0.269490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269490,0.000000,0.000000,0.250000,0,0);}
.m75_c01157{transform:matrix(0.270298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270298,0.000000,0.000000,0.250000,0,0);}
.m7_c01157{transform:matrix(0.271912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271912,0.000000,0.000000,0.250000,0,0);}
.m4c_c01157{transform:matrix(0.273170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273170,0.000000,0.000000,0.250000,0,0);}
.m15_c01157{transform:matrix(0.273900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273900,0.000000,0.000000,0.250000,0,0);}
.m1_c01157{transform:matrix(0.274429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274429,0.000000,0.000000,0.250000,0,0);}
.m54_c01157{transform:matrix(0.274591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274591,0.000000,0.000000,0.250000,0,0);}
.md_c01157{transform:matrix(0.275815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275815,0.000000,0.000000,0.250000,0,0);}
.m1a_c01157{transform:matrix(0.276947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276947,0.000000,0.000000,0.250000,0,0);}
.m55_c01157{transform:matrix(0.278792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278792,0.000000,0.000000,0.250000,0,0);}
.m41_c01157{transform:matrix(0.278878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278878,0.000000,0.000000,0.250000,0,0);}
.m72_c01157{transform:matrix(0.279358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279358,0.000000,0.000000,0.250000,0,0);}
.m22_c01157{transform:matrix(0.279464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279464,0.000000,0.000000,0.250000,0,0);}
.m9_c01157{transform:matrix(0.281443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281443,0.000000,0.000000,0.250000,0,0);}
.m31_c01157{transform:matrix(0.281872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281872,0.000000,0.000000,0.250000,0,0);}
.m4a_c01157{transform:matrix(0.282916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282916,0.000000,0.000000,0.250000,0,0);}
.m48_c01157{transform:matrix(0.283683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283683,0.000000,0.000000,0.250000,0,0);}
.m6d_c01157{transform:matrix(0.284277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284277,0.000000,0.000000,0.250000,0,0);}
.m57_c01157{transform:matrix(0.284433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284433,0.000000,0.000000,0.250000,0,0);}
.m30_c01157{transform:matrix(0.284874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284874,0.000000,0.000000,0.250000,0,0);}
.m76_c01157{transform:matrix(0.286007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286007,0.000000,0.000000,0.250000,0,0);}
.m61_c01157{transform:matrix(0.286500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286500,0.000000,0.000000,0.250000,0,0);}
.mc_c01157{transform:matrix(0.287323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287323,0.000000,0.000000,0.250000,0,0);}
.m5b_c01157{transform:matrix(0.288751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288751,0.000000,0.000000,0.250000,0,0);}
.m11_c01157{transform:matrix(0.289932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289932,0.000000,0.000000,0.250000,0,0);}
.m8_c01157{transform:matrix(0.290931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290931,0.000000,0.000000,0.250000,0,0);}
.m4f_c01157{transform:matrix(0.291762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291762,0.000000,0.000000,0.250000,0,0);}
.m58_c01157{transform:matrix(0.291777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291777,0.000000,0.000000,0.250000,0,0);}
.m68_c01157{transform:matrix(0.292721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292721,0.000000,0.000000,0.250000,0,0);}
.m59_c01157{transform:matrix(0.293391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293391,0.000000,0.000000,0.250000,0,0);}
.m39_c01157{transform:matrix(0.293649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293649,0.000000,0.000000,0.250000,0,0);}
.m3_c01157{transform:matrix(0.293914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293914,0.000000,0.000000,0.250000,0,0);}
.m60_c01157{transform:matrix(0.294297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294297,0.000000,0.000000,0.250000,0,0);}
.m62_c01157{transform:matrix(0.295018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295018,0.000000,0.000000,0.250000,0,0);}
.m21_c01157{transform:matrix(0.295105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295105,0.000000,0.000000,0.250000,0,0);}
.m6_c01157{transform:matrix(0.297172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297172,0.000000,0.000000,0.250000,0,0);}
.m27_c01157{transform:matrix(0.298403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298403,0.000000,0.000000,0.250000,0,0);}
.m51_c01157{transform:matrix(0.300095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300095,0.000000,0.000000,0.250000,0,0);}
.m3f_c01157{transform:matrix(0.301476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301476,0.000000,0.000000,0.250000,0,0);}
.m6c_c01157{transform:matrix(0.303163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303163,0.000000,0.000000,0.250000,0,0);}
.m4d_c01157{transform:matrix(0.303347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303347,0.000000,0.000000,0.250000,0,0);}
.m33_c01157{transform:matrix(0.303929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303929,0.000000,0.000000,0.250000,0,0);}
.m74_c01157{transform:matrix(0.304085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304085,0.000000,0.000000,0.250000,0,0);}
.m35_c01157{transform:matrix(0.305037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305037,0.000000,0.000000,0.250000,0,0);}
.m1f_c01157{transform:matrix(0.306107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306107,0.000000,0.000000,0.250000,0,0);}
.m52_c01157{transform:matrix(0.306504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306504,0.000000,0.000000,0.250000,0,0);}
.m4e_c01157{transform:matrix(0.307037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307037,0.000000,0.000000,0.250000,0,0);}
.m4b_c01157{transform:matrix(0.308693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308693,0.000000,0.000000,0.250000,0,0);}
.m77_c01157{transform:matrix(0.310591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310591,0.000000,0.000000,0.250000,0,0);}
.m53_c01157{transform:matrix(0.310942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310942,0.000000,0.000000,0.250000,0,0);}
.mf_c01157{transform:matrix(0.311583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311583,0.000000,0.000000,0.250000,0,0);}
.m67_c01157{transform:matrix(0.313149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313149,0.000000,0.000000,0.250000,0,0);}
.m70_c01157{transform:matrix(0.313216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313216,0.000000,0.000000,0.250000,0,0);}
.m7f_c01157{transform:matrix(0.313369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313369,0.000000,0.000000,0.250000,0,0);}
.m78_c01157{transform:matrix(0.315474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315474,0.000000,0.000000,0.250000,0,0);}
.m79_c01157{transform:matrix(0.316240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316240,0.000000,0.000000,0.250000,0,0);}
.m26_c01157{transform:matrix(0.316486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316486,0.000000,0.000000,0.250000,0,0);}
.m34_c01157{transform:matrix(0.318638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318638,0.000000,0.000000,0.250000,0,0);}
.m63_c01157{transform:matrix(0.318972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318972,0.000000,0.000000,0.250000,0,0);}
.m6b_c01157{transform:matrix(0.319377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319377,0.000000,0.000000,0.250000,0,0);}
.m45_c01157{transform:matrix(0.321329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321329,0.000000,0.000000,0.250000,0,0);}
.m1c_c01157{transform:matrix(0.321454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321454,0.000000,0.000000,0.250000,0,0);}
.m20_c01157{transform:matrix(0.322521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322521,0.000000,0.000000,0.250000,0,0);}
.m23_c01157{transform:matrix(0.322701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322701,0.000000,0.000000,0.250000,0,0);}
.m5e_c01157{transform:matrix(0.322818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322818,0.000000,0.000000,0.250000,0,0);}
.m12_c01157{transform:matrix(0.323541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323541,0.000000,0.000000,0.250000,0,0);}
.m24_c01157{transform:matrix(0.327306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327306,0.000000,0.000000,0.250000,0,0);}
.m5d_c01157{transform:matrix(0.331464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331464,0.000000,0.000000,0.250000,0,0);}
.m50_c01157{transform:matrix(0.332439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332439,0.000000,0.000000,0.250000,0,0);}
.m2f_c01157{transform:matrix(0.334069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334069,0.000000,0.000000,0.250000,0,0);}
.m17_c01157{transform:matrix(0.338674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338674,0.000000,0.000000,0.250000,0,0);}
.m7e_c01157{transform:matrix(0.341438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341438,0.000000,0.000000,0.250000,0,0);}
.m56_c01157{transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01157{transform:matrix(0.342129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342129,0.000000,0.000000,0.250000,0,0);}
.m1e_c01157{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);}
.m13_c01157{transform:matrix(0.342440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342440,0.000000,0.000000,0.250000,0,0);}
.ma_c01157{transform:matrix(0.344318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344318,0.000000,0.000000,0.250000,0,0);}
.m3d_c01157{transform:matrix(0.344946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344946,0.000000,0.000000,0.250000,0,0);}
.m49_c01157{transform:matrix(0.346315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346315,0.000000,0.000000,0.250000,0,0);}
.m66_c01157{transform:matrix(0.346409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346409,0.000000,0.000000,0.250000,0,0);}
.m14_c01157{transform:matrix(0.347599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347599,0.000000,0.000000,0.250000,0,0);}
.m25_c01157{transform:matrix(0.347934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347934,0.000000,0.000000,0.250000,0,0);}
.m32_c01157{transform:matrix(0.349282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349282,0.000000,0.000000,0.250000,0,0);}
.m16_c01157{transform:matrix(0.350756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350756,0.000000,0.000000,0.250000,0,0);}
.m7d_c01157{transform:matrix(0.352966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352966,0.000000,0.000000,0.250000,0,0);}
.m65_c01157{transform:matrix(0.357364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357364,0.000000,0.000000,0.250000,0,0);}
.m28_c01157{transform:matrix(0.358819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358819,0.000000,0.000000,0.250000,0,0);}
.m2_c01157{transform:matrix(0.359476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359476,0.000000,0.000000,0.250000,0,0);}
.m69_c01157{transform:matrix(0.363472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363472,0.000000,0.000000,0.250000,0,0);}
.m1d_c01157{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);}
.m42_c01157{transform:matrix(0.375776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375776,0.000000,0.000000,0.250000,0,0);}
.m37_c01157{transform:matrix(0.384314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384314,0.000000,0.000000,0.250000,0,0);}
.m64_c01157{transform:matrix(0.385969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385969,0.000000,0.000000,0.250000,0,0);}
.m6f_c01157{transform:matrix(0.386163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386163,0.000000,0.000000,0.250000,0,0);}
.m3e_c01157{transform:matrix(0.394085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394085,0.000000,0.000000,0.250000,0,0);}
.m5c_c01157{transform:matrix(0.398760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398760,0.000000,0.000000,0.250000,0,0);}
.m44_c01157{transform:matrix(0.408109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408109,0.000000,0.000000,0.250000,0,0);}
.mb_c01157{transform:matrix(0.412552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412552,0.000000,0.000000,0.250000,0,0);}
.m3b_c01157{transform:matrix(0.414486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414486,0.000000,0.000000,0.250000,0,0);}
.m5a_c01157{transform:matrix(0.417662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417662,0.000000,0.000000,0.250000,0,0);}
.m29_c01157{transform:matrix(0.468132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468132,0.000000,0.000000,0.250000,0,0);}
.v0_c01157{vertical-align:0.000000px;}
.lsb_c01157{letter-spacing:-3.769927px;}
.ls13_c01157{letter-spacing:-3.388777px;}
.ls14_c01157{letter-spacing:-2.730427px;}
.ls5_c01157{letter-spacing:-2.591827px;}
.ls9_c01157{letter-spacing:-2.358893px;}
.lsc_c01157{letter-spacing:-2.259180px;}
.ls4_c01157{letter-spacing:-1.058270px;}
.lsa_c01157{letter-spacing:-0.562797px;}
.ls2_c01157{letter-spacing:0.000000px;}
.ls11_c01157{letter-spacing:1.052254px;}
.ls0_c01157{letter-spacing:1.949409px;}
.ls12_c01157{letter-spacing:2.525180px;}
.lse_c01157{letter-spacing:2.574000px;}
.ls7_c01157{letter-spacing:3.029400px;}
.ls1_c01157{letter-spacing:3.208788px;}
.lsd_c01157{letter-spacing:3.366000px;}
.ls10_c01157{letter-spacing:3.405610px;}
.ls8_c01157{letter-spacing:3.564000px;}
.ls6_c01157{letter-spacing:3.643200px;}
.ls3_c01157{letter-spacing:3.702610px;}
.lsf_c01157{letter-spacing:59.875398px;}
.sc__c01157{text-shadow:none;}
.sc0_c01157{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01157{-webkit-text-stroke:0px transparent;}
.sc0_c01157{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01157{word-spacing:0.000000px;}
._1_c01157{margin-left:-5.164038px;}
._2_c01157{margin-left:-3.867336px;}
._6_c01157{width:4.368980px;}
._5_c01157{width:11.330055px;}
._0_c01157{width:13.202640px;}
._3_c01157{width:22.410828px;}
._7_c01157{width:26.436812px;}
._4_c01157{width:35.311716px;}
.fc0_c01157{color:transparent;}
.fs0_c01157{font-size:22.176000px;}
.fs9_c01157{font-size:26.928000px;}
.fs6_c01157{font-size:33.660000px;}
.fs7_c01157{font-size:40.194000px;}
.fse_c01157{font-size:51.480000px;}
.fsf_c01157{font-size:59.875398px;}
.fsc_c01157{font-size:64.548000px;}
.fsd_c01157{font-size:67.320000px;}
.fs10_c01157{font-size:68.112198px;}
.fs5_c01157{font-size:71.280000px;}
.fs11_c01157{font-size:72.072198px;}
.fs4_c01157{font-size:72.864000px;}
.fs1_c01157{font-size:74.052198px;}
.fs8_c01157{font-size:74.844000px;}
.fs2_c01157{font-size:77.814000px;}
.fs13_c01157{font-size:78.012198px;}
.fsa_c01157{font-size:86.724000px;}
.fs3_c01157{font-size:91.476198px;}
.fs12_c01157{font-size:96.822198px;}
.fsb_c01157{font-size:107.712198px;}
.y0_c01157{bottom:0.000000px;}
.y1_c01157{bottom:76.500000px;}
.y18_c01157{bottom:123.582735px;}
.y17_c01157{bottom:190.224585px;}
.y16_c01157{bottom:223.731135px;}
.y15_c01157{bottom:288.234585px;}
.y14_c01157{bottom:314.613135px;}
.y13_c01157{bottom:351.317385px;}
.y12_c01157{bottom:384.106185px;}
.y11_c01157{bottom:416.894985px;}
.y10_c01157{bottom:448.614585px;}
.yf_c01157{bottom:481.051935px;}
.ye_c01157{bottom:545.203935px;}
.yd_c01157{bottom:608.281785px;}
.yc_c01157{bottom:640.362735px;}
.yb_c01157{bottom:657.464985px;}
.ya_c01157{bottom:704.514735px;}
.y9_c01157{bottom:769.018185px;}
.y8_c01157{bottom:833.175135px;}
.y7_c01157{bottom:840.298185px;}
.y6_c01157{bottom:865.246185px;}
.y3_c01157{bottom:927.972585px;}
.y5_c01157{bottom:1050.930585px;}
.y4_c01157{bottom:1067.324985px;}
.y2_c01157{bottom:1073.027385px;}
.h2_c01157{height:23.128875px;}
.ha_c01157{height:28.085063px;}
.h8_c01157{height:33.035449px;}
.h10_c01157{height:39.877015px;}
.hf_c01157{height:53.692031px;}
.hd_c01157{height:67.321547px;}
.h7_c01157{height:69.957422px;}
.he_c01157{height:70.212656px;}
.h11_c01157{height:71.038894px;}
.h6_c01157{height:71.512031px;}
.h3_c01157{height:72.678183px;}
.h9_c01157{height:73.455293px;}
.h12_c01157{height:75.169050px;}
.h4_c01157{height:76.370186px;}
.h14_c01157{height:76.564706px;}
.hb_c01157{height:85.114863px;}
.h5_c01157{height:89.778886px;}
.h13_c01157{height:95.025692px;}
.hc_c01157{height:105.713632px;}
.h1_c01157{height:1110.000000px;}
.h0_c01157{height:1263.000000px;}
.w1_c01157{width:775.500000px;}
.w0_c01157{width:892.500000px;}
.x0_c01157{left:0.000000px;}
.x2_c01157{left:56.926635px;}
.x1_c01157{left:58.500000px;}
.x33_c01157{left:93.715035px;}
.x20_c01157{left:94.784235px;}
.xc_c01157{left:96.219735px;}
.x3_c01157{left:97.640385px;}
.x2c_c01157{left:148.546185px;}
.x34_c01157{left:149.555985px;}
.xd_c01157{left:151.189485px;}
.x4_c01157{left:153.317985px;}
.x16_c01157{left:154.530735px;}
.x54_c01157{left:173.781285px;}
.x21_c01157{left:183.493185px;}
.x17_c01157{left:205.589985px;}
.x58_c01157{left:207.961035px;}
.x2d_c01157{left:214.623735px;}
.x46_c01157{left:217.484835px;}
.x5_c01157{left:218.761935px;}
.x5b_c01157{left:228.572835px;}
.x35_c01157{left:249.060885px;}
.xe_c01157{left:251.347785px;}
.x5c_c01157{left:259.054935px;}
.x56_c01157{left:261.470535px;}
.x6_c01157{left:262.678335px;}
.x2e_c01157{left:270.811185px;}
.x22_c01157{left:272.746635px;}
.x18_c01157{left:274.147485px;}
.x4d_c01157{left:283.884135px;}
.x28_c01157{left:285.205785px;}
.x47_c01157{left:305.020635px;}
.x19_c01157{left:306.550185px;}
.x61_c01157{left:316.069035px;}
.x23_c01157{left:317.638185px;}
.x7_c01157{left:319.553835px;}
.xf_c01157{left:328.359885px;}
.x4a_c01157{left:338.804385px;}
.x2f_c01157{left:349.565685px;}
.x3e_c01157{left:351.115035px;}
.x8_c01157{left:353.288085px;}
.x4e_c01157{left:359.846835px;}
.x10_c01157{left:361.930785px;}
.x30_c01157{left:370.202235px;}
.x1a_c01157{left:372.939585px;}
.x29_c01157{left:374.330535px;}
.x59_c01157{left:383.903835px;}
.x31_c01157{left:387.705435px;}
.x32_c01157{left:389.343885px;}
.x24_c01157{left:393.046485px;}
.x36_c01157{left:396.422385px;}
.x11_c01157{left:404.099835px;}
.x1b_c01157{left:405.698685px;}
.x5d_c01157{left:408.035085px;}
.x62_c01157{left:415.212585px;}
.x4f_c01157{left:416.232285px;}
.x37_c01157{left:426.548085px;}
.x12_c01157{left:430.933785px;}
.x25_c01157{left:436.883685px;}
.x2a_c01157{left:439.195335px;}
.x3f_c01157{left:440.734785px;}
.x13_c01157{left:448.298385px;}
.x1c_c01157{left:450.580335px;}
.x40_c01157{left:461.440635px;}
.x48_c01157{left:472.345485px;}
.x38_c01157{left:481.344585px;}
.x2b_c01157{left:483.720585px;}
.x14_c01157{left:493.907685px;}
.x63_c01157{left:495.848085px;}
.x41_c01157{left:497.224185px;}
.x64_c01157{left:507.559785px;}
.x55_c01157{left:510.980235px;}
.x26_c01157{left:514.143285px;}
.x42_c01157{left:516.435135px;}
.x5e_c01157{left:517.563735px;}
.x1d_c01157{left:527.310285px;}
.x57_c01157{left:529.107135px;}
.x5a_c01157{left:538.650735px;}
.x39_c01157{left:547.733985px;}
.x1e_c01157{left:560.217885px;}
.x43_c01157{left:562.267185px;}
.x4b_c01157{left:571.187085px;}
.x1f_c01157{left:582.299835px;}
.x15_c01157{left:583.438335px;}
.x3a_c01157{left:593.897685px;}
.x50_c01157{left:595.055985px;}
.x65_c01157{left:603.629385px;}
.x5f_c01157{left:604.861935px;}
.x51_c01157{left:615.756885px;}
.x3b_c01157{left:626.132085px;}
.x44_c01157{left:628.547685px;}
.x27_c01157{left:641.323635px;}
.x3c_c01157{left:646.961685px;}
.x60_c01157{left:648.902085px;}
.x52_c01157{left:671.508735px;}
.x3d_c01157{left:682.562085px;}
.x45_c01157{left:693.140235px;}
.xb_c01157{left:710.227635px;}
.x9_c01157{left:711.450285px;}
.x53_c01157{left:716.751735px;}
.x49_c01157{left:728.141685px;}
.x4c_c01157{left:737.462535px;}
.xa_c01157{left:745.313235px;}
@media print{
.v0_c01157{vertical-align:0.000000pt;}
.lsb_c01157{letter-spacing:-3.351046pt;}
.ls13_c01157{letter-spacing:-3.012246pt;}
.ls14_c01157{letter-spacing:-2.427046pt;}
.ls5_c01157{letter-spacing:-2.303846pt;}
.ls9_c01157{letter-spacing:-2.096794pt;}
.lsc_c01157{letter-spacing:-2.008160pt;}
.ls4_c01157{letter-spacing:-0.940685pt;}
.lsa_c01157{letter-spacing:-0.500264pt;}
.ls2_c01157{letter-spacing:0.000000pt;}
.ls11_c01157{letter-spacing:0.935337pt;}
.ls0_c01157{letter-spacing:1.732808pt;}
.ls12_c01157{letter-spacing:2.244604pt;}
.lse_c01157{letter-spacing:2.288000pt;}
.ls7_c01157{letter-spacing:2.692800pt;}
.ls1_c01157{letter-spacing:2.852256pt;}
.lsd_c01157{letter-spacing:2.992000pt;}
.ls10_c01157{letter-spacing:3.027209pt;}
.ls8_c01157{letter-spacing:3.168000pt;}
.ls6_c01157{letter-spacing:3.238400pt;}
.ls3_c01157{letter-spacing:3.291209pt;}
.lsf_c01157{letter-spacing:53.222576pt;}
.ws0_c01157{word-spacing:0.000000pt;}
._1_c01157{margin-left:-4.590256pt;}
._2_c01157{margin-left:-3.437632pt;}
._6_c01157{width:3.883538pt;}
._5_c01157{width:10.071160pt;}
._0_c01157{width:11.735680pt;}
._3_c01157{width:19.920736pt;}
._7_c01157{width:23.499388pt;}
._4_c01157{width:31.388192pt;}
.fs0_c01157{font-size:19.712000pt;}
.fs9_c01157{font-size:23.936000pt;}
.fs6_c01157{font-size:29.920000pt;}
.fs7_c01157{font-size:35.728000pt;}
.fse_c01157{font-size:45.760000pt;}
.fsf_c01157{font-size:53.222576pt;}
.fsc_c01157{font-size:57.376000pt;}
.fsd_c01157{font-size:59.840000pt;}
.fs10_c01157{font-size:60.544176pt;}
.fs5_c01157{font-size:63.360000pt;}
.fs11_c01157{font-size:64.064176pt;}
.fs4_c01157{font-size:64.768000pt;}
.fs1_c01157{font-size:65.824176pt;}
.fs8_c01157{font-size:66.528000pt;}
.fs2_c01157{font-size:69.168000pt;}
.fs13_c01157{font-size:69.344176pt;}
.fsa_c01157{font-size:77.088000pt;}
.fs3_c01157{font-size:81.312176pt;}
.fs12_c01157{font-size:86.064176pt;}
.fsb_c01157{font-size:95.744176pt;}
.y0_c01157{bottom:0.000000pt;}
.y1_c01157{bottom:68.000000pt;}
.y18_c01157{bottom:109.851320pt;}
.y17_c01157{bottom:169.088520pt;}
.y16_c01157{bottom:198.872120pt;}
.y15_c01157{bottom:256.208520pt;}
.y14_c01157{bottom:279.656120pt;}
.y13_c01157{bottom:312.282120pt;}
.y12_c01157{bottom:341.427720pt;}
.y11_c01157{bottom:370.573320pt;}
.y10_c01157{bottom:398.768520pt;}
.yf_c01157{bottom:427.601720pt;}
.ye_c01157{bottom:484.625720pt;}
.yd_c01157{bottom:540.694920pt;}
.yc_c01157{bottom:569.211320pt;}
.yb_c01157{bottom:584.413320pt;}
.ya_c01157{bottom:626.235320pt;}
.y9_c01157{bottom:683.571720pt;}
.y8_c01157{bottom:740.600120pt;}
.y7_c01157{bottom:746.931720pt;}
.y6_c01157{bottom:769.107720pt;}
.y3_c01157{bottom:824.864520pt;}
.y5_c01157{bottom:934.160520pt;}
.y4_c01157{bottom:948.733320pt;}
.y2_c01157{bottom:953.802120pt;}
.h2_c01157{height:20.559000pt;}
.ha_c01157{height:24.964500pt;}
.h8_c01157{height:29.364844pt;}
.h10_c01157{height:35.446236pt;}
.hf_c01157{height:47.726250pt;}
.hd_c01157{height:59.841375pt;}
.h7_c01157{height:62.184375pt;}
.he_c01157{height:62.411250pt;}
.h11_c01157{height:63.145684pt;}
.h6_c01157{height:63.566250pt;}
.h3_c01157{height:64.602829pt;}
.h9_c01157{height:65.293594pt;}
.h12_c01157{height:66.816934pt;}
.h4_c01157{height:67.884609pt;}
.h14_c01157{height:68.057516pt;}
.hb_c01157{height:75.657656pt;}
.h5_c01157{height:79.803454pt;}
.h13_c01157{height:84.467282pt;}
.hc_c01157{height:93.967673pt;}
.h1_c01157{height:986.666667pt;}
.h0_c01157{height:1122.666667pt;}
.w1_c01157{width:689.333333pt;}
.w0_c01157{width:793.333333pt;}
.x0_c01157{left:0.000000pt;}
.x2_c01157{left:50.601453pt;}
.x1_c01157{left:52.000000pt;}
.x33_c01157{left:83.302253pt;}
.x20_c01157{left:84.252653pt;}
.xc_c01157{left:85.528653pt;}
.x3_c01157{left:86.791453pt;}
.x2c_c01157{left:132.041053pt;}
.x34_c01157{left:132.938653pt;}
.xd_c01157{left:134.390653pt;}
.x4_c01157{left:136.282653pt;}
.x16_c01157{left:137.360653pt;}
.x54_c01157{left:154.472253pt;}
.x21_c01157{left:163.105053pt;}
.x17_c01157{left:182.746653pt;}
.x58_c01157{left:184.854253pt;}
.x2d_c01157{left:190.776653pt;}
.x46_c01157{left:193.319853pt;}
.x5_c01157{left:194.455053pt;}
.x5b_c01157{left:203.175853pt;}
.x35_c01157{left:221.387453pt;}
.xe_c01157{left:223.420253pt;}
.x5c_c01157{left:230.271053pt;}
.x56_c01157{left:232.418253pt;}
.x6_c01157{left:233.491853pt;}
.x2e_c01157{left:240.721053pt;}
.x22_c01157{left:242.441453pt;}
.x18_c01157{left:243.686653pt;}
.x4d_c01157{left:252.341453pt;}
.x28_c01157{left:253.516253pt;}
.x47_c01157{left:271.129453pt;}
.x19_c01157{left:272.489053pt;}
.x61_c01157{left:280.950253pt;}
.x23_c01157{left:282.345053pt;}
.x7_c01157{left:284.047853pt;}
.xf_c01157{left:291.875453pt;}
.x4a_c01157{left:301.159453pt;}
.x2f_c01157{left:310.725053pt;}
.x3e_c01157{left:312.102253pt;}
.x8_c01157{left:314.033853pt;}
.x4e_c01157{left:319.863853pt;}
.x10_c01157{left:321.716253pt;}
.x30_c01157{left:329.068653pt;}
.x1a_c01157{left:331.501853pt;}
.x29_c01157{left:332.738253pt;}
.x59_c01157{left:341.247853pt;}
.x31_c01157{left:344.627053pt;}
.x32_c01157{left:346.083453pt;}
.x24_c01157{left:349.374653pt;}
.x36_c01157{left:352.375453pt;}
.x11_c01157{left:359.199853pt;}
.x1b_c01157{left:360.621053pt;}
.x5d_c01157{left:362.697853pt;}
.x62_c01157{left:369.077853pt;}
.x4f_c01157{left:369.984253pt;}
.x37_c01157{left:379.153853pt;}
.x12_c01157{left:383.052253pt;}
.x25_c01157{left:388.341053pt;}
.x2a_c01157{left:390.395853pt;}
.x3f_c01157{left:391.764253pt;}
.x13_c01157{left:398.487453pt;}
.x1c_c01157{left:400.515853pt;}
.x40_c01157{left:410.169453pt;}
.x48_c01157{left:419.862653pt;}
.x38_c01157{left:427.861853pt;}
.x2b_c01157{left:429.973853pt;}
.x14_c01157{left:439.029053pt;}
.x63_c01157{left:440.753853pt;}
.x41_c01157{left:441.977053pt;}
.x64_c01157{left:451.164253pt;}
.x55_c01157{left:454.204653pt;}
.x26_c01157{left:457.016253pt;}
.x42_c01157{left:459.053453pt;}
.x5e_c01157{left:460.056653pt;}
.x1d_c01157{left:468.720253pt;}
.x57_c01157{left:470.317453pt;}
.x5a_c01157{left:478.800653pt;}
.x39_c01157{left:486.874653pt;}
.x1e_c01157{left:497.971453pt;}
.x43_c01157{left:499.793053pt;}
.x4b_c01157{left:507.721853pt;}
.x1f_c01157{left:517.599853pt;}
.x15_c01157{left:518.611853pt;}
.x3a_c01157{left:527.909053pt;}
.x50_c01157{left:528.938653pt;}
.x65_c01157{left:536.559453pt;}
.x5f_c01157{left:537.655053pt;}
.x51_c01157{left:547.339453pt;}
.x3b_c01157{left:556.561853pt;}
.x44_c01157{left:558.709053pt;}
.x27_c01157{left:570.065453pt;}
.x3c_c01157{left:575.077053pt;}
.x60_c01157{left:576.801853pt;}
.x52_c01157{left:596.896653pt;}
.x3d_c01157{left:606.721853pt;}
.x45_c01157{left:616.124653pt;}
.xb_c01157{left:631.313453pt;}
.x9_c01157{left:632.400253pt;}
.x53_c01157{left:637.112653pt;}
.x49_c01157{left:647.237053pt;}
.x4c_c01157{left:655.522253pt;}
.xa_c01157{left:662.500653pt;}
}





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

.ir_c01158:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01158{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01158;src:url('chunks/assets/font_86d4a06979a72d0956fa274b.woff2')format("woff");}.ff1_c01158{font-family:ff1_c01158;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01158;src:url('chunks/assets/font_1dc7013bb93c5059b185ed8f.woff2')format("woff");}.ff2_c01158{font-family:ff2_c01158;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01158;src:url('chunks/assets/font_f16bb40d11f9a78b2c7d5cba.woff2')format("woff");}.ff3_c01158{font-family:ff3_c01158;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01158;src:url('chunks/assets/font_2dbcdf8c21d0a57aa3768c83.woff2')format("woff");}.ff4_c01158{font-family:ff4_c01158;line-height:0.666000;font-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_c01158{transform:matrix(0.023810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.023810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.023810,0.000000,0.000000,0.250000,0,0);}
.m23_c01158{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);}
.m6b_c01158{transform:matrix(0.118519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118519,0.000000,0.000000,0.250000,0,0);}
.m52_c01158{transform:matrix(0.120155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120155,0.000000,0.000000,0.250000,0,0);}
.m21_c01158{transform:matrix(0.133929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133929,0.000000,0.000000,0.250000,0,0);}
.m5a_c01158{transform:matrix(0.146945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146945,0.000000,0.000000,0.250000,0,0);}
.m59_c01158{transform:matrix(0.159405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159405,0.000000,0.000000,0.250000,0,0);}
.m40_c01158{transform:matrix(0.161150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161150,0.000000,0.000000,0.250000,0,0);}
.m25_c01158{transform:matrix(0.167442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167442,0.000000,0.000000,0.250000,0,0);}
.m53_c01158{transform:matrix(0.180879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180879,0.000000,0.000000,0.250000,0,0);}
.m6c_c01158{transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199999,0.000000,0.000000,0.250000,0,0);}
.m3b_c01158{transform:matrix(0.216729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216729,0.000000,0.000000,0.250000,0,0);}
.m1e_c01158{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m4c_c01158{transform:matrix(0.231939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231939,0.000000,0.000000,0.250000,0,0);}
.m20_c01158{transform:matrix(0.235110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235110,0.000000,0.000000,0.250000,0,0);}
.m54_c01158{transform:matrix(0.241286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241286,0.000000,0.000000,0.250000,0,0);}
.m0_c01158{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01158{transform:matrix(0.251360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251360,0.000000,0.000000,0.250000,0,0);}
.md_c01158{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m5f_c01158{transform:matrix(0.253555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253555,0.000000,0.000000,0.250000,0,0);}
.m55_c01158{transform:matrix(0.254687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254687,0.000000,0.000000,0.250000,0,0);}
.m29_c01158{transform:matrix(0.254771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254771,0.000000,0.000000,0.250000,0,0);}
.m19_c01158{transform:matrix(0.254904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254904,0.000000,0.000000,0.250000,0,0);}
.m12_c01158{transform:matrix(0.255459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255459,0.000000,0.000000,0.250000,0,0);}
.m60_c01158{transform:matrix(0.255980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255980,0.000000,0.000000,0.250000,0,0);}
.m43_c01158{transform:matrix(0.255994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255994,0.000000,0.000000,0.250000,0,0);}
.m36_c01158{transform:matrix(0.258282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258282,0.000000,0.000000,0.250000,0,0);}
.mb_c01158{transform:matrix(0.259616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259616,0.000000,0.000000,0.250000,0,0);}
.m1c_c01158{transform:matrix(0.260021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260021,0.000000,0.000000,0.250000,0,0);}
.m47_c01158{transform:matrix(0.260635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260635,0.000000,0.000000,0.250000,0,0);}
.m34_c01158{transform:matrix(0.261022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261022,0.000000,0.000000,0.250000,0,0);}
.m64_c01158{transform:matrix(0.262186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262186,0.000000,0.000000,0.250000,0,0);}
.m3c_c01158{transform:matrix(0.262450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262450,0.000000,0.000000,0.250000,0,0);}
.m39_c01158{transform:matrix(0.262502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262502,0.000000,0.000000,0.250000,0,0);}
.m4f_c01158{transform:matrix(0.263330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263330,0.000000,0.000000,0.250000,0,0);}
.m32_c01158{transform:matrix(0.263935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263935,0.000000,0.000000,0.250000,0,0);}
.m2b_c01158{transform:matrix(0.264583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264583,0.000000,0.000000,0.250000,0,0);}
.m56_c01158{transform:matrix(0.264763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264763,0.000000,0.000000,0.250000,0,0);}
.m13_c01158{transform:matrix(0.266686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266686,0.000000,0.000000,0.250000,0,0);}
.m16_c01158{transform:matrix(0.267227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267227,0.000000,0.000000,0.250000,0,0);}
.m8_c01158{transform:matrix(0.267506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267506,0.000000,0.000000,0.250000,0,0);}
.m2_c01158{transform:matrix(0.268039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268039,0.000000,0.000000,0.250000,0,0);}
.m35_c01158{transform:matrix(0.270793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270793,0.000000,0.000000,0.250000,0,0);}
.me_c01158{transform:matrix(0.271866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271866,0.000000,0.000000,0.250000,0,0);}
.m48_c01158{transform:matrix(0.272118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272118,0.000000,0.000000,0.250000,0,0);}
.m58_c01158{transform:matrix(0.272137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272137,0.000000,0.000000,0.250000,0,0);}
.m15_c01158{transform:matrix(0.272783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272783,0.000000,0.000000,0.250000,0,0);}
.m5b_c01158{transform:matrix(0.273758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273758,0.000000,0.000000,0.250000,0,0);}
.m18_c01158{transform:matrix(0.274125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274125,0.000000,0.000000,0.250000,0,0);}
.m24_c01158{transform:matrix(0.274483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274483,0.000000,0.000000,0.250000,0,0);}
.m9_c01158{transform:matrix(0.276359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276359,0.000000,0.000000,0.250000,0,0);}
.mf_c01158{transform:matrix(0.276584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276584,0.000000,0.000000,0.250000,0,0);}
.mc_c01158{transform:matrix(0.277690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277690,0.000000,0.000000,0.250000,0,0);}
.m26_c01158{transform:matrix(0.279020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279020,0.000000,0.000000,0.250000,0,0);}
.m49_c01158{transform:matrix(0.280058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280058,0.000000,0.000000,0.250000,0,0);}
.m10_c01158{transform:matrix(0.280253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280253,0.000000,0.000000,0.250000,0,0);}
.m3f_c01158{transform:matrix(0.280497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280497,0.000000,0.000000,0.250000,0,0);}
.m4d_c01158{transform:matrix(0.281372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281372,0.000000,0.000000,0.250000,0,0);}
.m28_c01158{transform:matrix(0.282295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282295,0.000000,0.000000,0.250000,0,0);}
.m50_c01158{transform:matrix(0.283864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283864,0.000000,0.000000,0.250000,0,0);}
.m62_c01158{transform:matrix(0.284950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284950,0.000000,0.000000,0.250000,0,0);}
.m2d_c01158{transform:matrix(0.284954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284954,0.000000,0.000000,0.250000,0,0);}
.m1b_c01158{transform:matrix(0.285867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285867,0.000000,0.000000,0.250000,0,0);}
.m2f_c01158{transform:matrix(0.285919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285919,0.000000,0.000000,0.250000,0,0);}
.m41_c01158{transform:matrix(0.286538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286538,0.000000,0.000000,0.250000,0,0);}
.m3d_c01158{transform:matrix(0.287767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287767,0.000000,0.000000,0.250000,0,0);}
.m33_c01158{transform:matrix(0.288994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288994,0.000000,0.000000,0.250000,0,0);}
.m65_c01158{transform:matrix(0.289837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289837,0.000000,0.000000,0.250000,0,0);}
.m1a_c01158{transform:matrix(0.290229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290229,0.000000,0.000000,0.250000,0,0);}
.m4e_c01158{transform:matrix(0.290252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290252,0.000000,0.000000,0.250000,0,0);}
.m66_c01158{transform:matrix(0.291517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291517,0.000000,0.000000,0.250000,0,0);}
.m69_c01158{transform:matrix(0.291531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291531,0.000000,0.000000,0.250000,0,0);}
.m4b_c01158{transform:matrix(0.291781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291781,0.000000,0.000000,0.250000,0,0);}
.m67_c01158{transform:matrix(0.292799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292799,0.000000,0.000000,0.250000,0,0);}
.m11_c01158{transform:matrix(0.293393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293393,0.000000,0.000000,0.250000,0,0);}
.m27_c01158{transform:matrix(0.293822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293822,0.000000,0.000000,0.250000,0,0);}
.m38_c01158{transform:matrix(0.294655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294655,0.000000,0.000000,0.250000,0,0);}
.m7_c01158{transform:matrix(0.295120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295120,0.000000,0.000000,0.250000,0,0);}
.m5c_c01158{transform:matrix(0.296529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296529,0.000000,0.000000,0.250000,0,0);}
.m1d_c01158{transform:matrix(0.297792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297792,0.000000,0.000000,0.250000,0,0);}
.m46_c01158{transform:matrix(0.299134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299134,0.000000,0.000000,0.250000,0,0);}
.m6a_c01158{transform:matrix(0.299347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299347,0.000000,0.000000,0.250000,0,0);}
.m5_c01158{transform:matrix(0.300593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300593,0.000000,0.000000,0.250000,0,0);}
.m3a_c01158{transform:matrix(0.300708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300708,0.000000,0.000000,0.250000,0,0);}
.m45_c01158{transform:matrix(0.300890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300890,0.000000,0.000000,0.250000,0,0);}
.m4a_c01158{transform:matrix(0.304939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304939,0.000000,0.000000,0.250000,0,0);}
.m5d_c01158{transform:matrix(0.307342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307342,0.000000,0.000000,0.250000,0,0);}
.m63_c01158{transform:matrix(0.308108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308108,0.000000,0.000000,0.250000,0,0);}
.m31_c01158{transform:matrix(0.308831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308831,0.000000,0.000000,0.250000,0,0);}
.m68_c01158{transform:matrix(0.309641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309641,0.000000,0.000000,0.250000,0,0);}
.m2a_c01158{transform:matrix(0.310106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310106,0.000000,0.000000,0.250000,0,0);}
.m61_c01158{transform:matrix(0.312503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312503,0.000000,0.000000,0.250000,0,0);}
.m2c_c01158{transform:matrix(0.319409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319409,0.000000,0.000000,0.250000,0,0);}
.m57_c01158{transform:matrix(0.320026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320026,0.000000,0.000000,0.250000,0,0);}
.m44_c01158{transform:matrix(0.320725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320725,0.000000,0.000000,0.250000,0,0);}
.m3_c01158{transform:matrix(0.323167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323167,0.000000,0.000000,0.250000,0,0);}
.m51_c01158{transform:matrix(0.336935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336935,0.000000,0.000000,0.250000,0,0);}
.m3e_c01158{transform:matrix(0.337550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337550,0.000000,0.000000,0.250000,0,0);}
.m30_c01158{transform:matrix(0.339830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339830,0.000000,0.000000,0.250000,0,0);}
.m1f_c01158{transform:matrix(0.345012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345012,0.000000,0.000000,0.250000,0,0);}
.m5e_c01158{transform:matrix(0.348388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348388,0.000000,0.000000,0.250000,0,0);}
.m2e_c01158{transform:matrix(0.349075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349075,0.000000,0.000000,0.250000,0,0);}
.m6_c01158{transform:matrix(0.353306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353306,0.000000,0.000000,0.250000,0,0);}
.ma_c01158{transform:matrix(0.357821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357821,0.000000,0.000000,0.250000,0,0);}
.m42_c01158{transform:matrix(0.358454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358454,0.000000,0.000000,0.250000,0,0);}
.m14_c01158{transform:matrix(0.358695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358695,0.000000,0.000000,0.250000,0,0);}
.m4_c01158{transform:matrix(0.364531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364531,0.000000,0.000000,0.250000,0,0);}
.m37_c01158{transform:matrix(0.386579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386579,0.000000,0.000000,0.250000,0,0);}
.m17_c01158{transform:matrix(0.390807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390807,0.000000,0.000000,0.250000,0,0);}
.v1_c01158{vertical-align:-11.404800px;}
.v0_c01158{vertical-align:0.000000px;}
.ls14_c01158{letter-spacing:-3.229380px;}
.lsd_c01158{letter-spacing:-3.014550px;}
.lsc_c01158{letter-spacing:-2.778930px;}
.ls21_c01158{letter-spacing:-2.421639px;}
.ls20_c01158{letter-spacing:-1.945251px;}
.ls6_c01158{letter-spacing:-1.262428px;}
.ls13_c01158{letter-spacing:-1.000415px;}
.ls10_c01158{letter-spacing:-0.701712px;}
.ls3_c01158{letter-spacing:0.000000px;}
.ls1f_c01158{letter-spacing:0.100683px;}
.ls18_c01158{letter-spacing:0.763112px;}
.lsb_c01158{letter-spacing:1.223046px;}
.ls0_c01158{letter-spacing:1.318007px;}
.ls1c_c01158{letter-spacing:1.325947px;}
.lsa_c01158{letter-spacing:1.608061px;}
.lsf_c01158{letter-spacing:1.619244px;}
.ls2_c01158{letter-spacing:1.696761px;}
.ls8_c01158{letter-spacing:1.831500px;}
.ls1b_c01158{letter-spacing:2.170476px;}
.ls1a_c01158{letter-spacing:2.207264px;}
.ls1d_c01158{letter-spacing:3.182256px;}
.ls1_c01158{letter-spacing:3.329735px;}
.ls16_c01158{letter-spacing:3.564000px;}
.ls9_c01158{letter-spacing:3.861000px;}
.ls1e_c01158{letter-spacing:3.880810px;}
.ls7_c01158{letter-spacing:3.938141px;}
.ls5_c01158{letter-spacing:3.969900px;}
.ls17_c01158{letter-spacing:4.280443px;}
.ls4_c01158{letter-spacing:4.306500px;}
.ls15_c01158{letter-spacing:4.385700px;}
.ls11_c01158{letter-spacing:4.824230px;}
.ls19_c01158{letter-spacing:58.449798px;}
.lse_c01158{letter-spacing:59.875398px;}
.ls12_c01158{letter-spacing:61.300998px;}
.ls22_c01158{letter-spacing:64.152198px;}
.sc__c01158{text-shadow:none;}
.sc0_c01158{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01158{-webkit-text-stroke:0px transparent;}
.sc0_c01158{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01158{word-spacing:-28.512000px;}
.ws2_c01158{word-spacing:-22.733784px;}
.ws1_c01158{word-spacing:-21.167507px;}
.ws3_c01158{word-spacing:-17.904249px;}
.ws4_c01158{word-spacing:0.000000px;}
._2_c01158{margin-left:-16.194816px;}
._9_c01158{margin-left:-11.282040px;}
._e_c01158{margin-left:-4.010853px;}
._8_c01158{width:2.072272px;}
._b_c01158{width:3.651912px;}
._3_c01158{width:6.432030px;}
._d_c01158{width:9.088101px;}
._7_c01158{width:10.949400px;}
._f_c01158{width:15.541148px;}
._0_c01158{width:19.968597px;}
._4_c01158{width:21.754260px;}
._5_c01158{width:23.009540px;}
._c_c01158{width:28.076301px;}
._6_c01158{width:30.250638px;}
._1_c01158{width:39.493476px;}
._a_c01158{width:47.054205px;}
.fc0_c01158{color:transparent;}
.fsd_c01158{font-size:22.176000px;}
.fs6_c01158{font-size:22.572000px;}
.fs8_c01158{font-size:25.146000px;}
.fs16_c01158{font-size:27.720000px;}
.fs0_c01158{font-size:28.314000px;}
.fs17_c01158{font-size:33.264000px;}
.fs7_c01158{font-size:33.660000px;}
.fs3_c01158{font-size:36.630000px;}
.fs11_c01158{font-size:52.074000px;}
.fs12_c01158{font-size:57.024000px;}
.fs10_c01158{font-size:58.449798px;}
.fs9_c01158{font-size:59.875398px;}
.fsc_c01158{font-size:61.300998px;}
.fs19_c01158{font-size:64.152198px;}
.fs13_c01158{font-size:64.944000px;}
.fs1a_c01158{font-size:66.132198px;}
.fs18_c01158{font-size:67.122198px;}
.fsf_c01158{font-size:71.280000px;}
.fs4_c01158{font-size:77.220000px;}
.fs15_c01158{font-size:77.616198px;}
.fs2_c01158{font-size:79.398000px;}
.fs1_c01158{font-size:86.130000px;}
.fs5_c01158{font-size:86.922198px;}
.fsa_c01158{font-size:87.714000px;}
.fse_c01158{font-size:92.268000px;}
.fsb_c01158{font-size:114.048000px;}
.fs14_c01158{font-size:117.216198px;}
.y0_c01158{bottom:0.000000px;}
.y2_c01158{bottom:41.962185px;}
.y1_c01158{bottom:76.500000px;}
.y1f_c01158{bottom:122.157135px;}
.y1e_c01158{bottom:155.653785px;}
.y1d_c01158{bottom:189.160335px;}
.y1c_c01158{bottom:225.151785px;}
.y1b_c01158{bottom:244.397385px;}
.y1a_c01158{bottom:255.094335px;}
.y18_c01158{bottom:287.170335px;}
.y19_c01158{bottom:290.021535px;}
.y17_c01158{bottom:351.678735px;}
.y15_c01158{bottom:383.749241px;}
.y16_c01158{bottom:383.754735px;}
.y14_c01158{bottom:446.837535px;}
.y13_c01158{bottom:478.557135px;}
.y12_c01158{bottom:511.345935px;}
.y11_c01158{bottom:528.809535px;}
.y10_c01158{bottom:543.060585px;}
.yf_c01158{bottom:607.573935px;}
.ye_c01158{bottom:671.369535px;}
.yd_c01158{bottom:703.796985px;}
.yc_c01158{bottom:719.478585px;}
.yb_c01158{bottom:734.095935px;}
.ya_c01158{bottom:739.436985px;}
.y9_c01158{bottom:767.953935px;}
.y8_c01158{bottom:832.105935px;}
.y7_c01158{bottom:866.320335px;}
.y6_c01158{bottom:895.901535px;}
.y4_c01158{bottom:927.972585px;}
.y5_c01158{bottom:933.318585px;}
.y3_c01158{bottom:1066.612185px;}
.he_c01158{height:23.128875px;}
.h8_c01158{height:23.541891px;}
.ha_c01158{height:26.226492px;}
.h17_c01158{height:28.911094px;}
.h2_c01158{height:29.530617px;}
.h9_c01158{height:33.035449px;}
.h18_c01158{height:34.693313px;}
.h5_c01158{height:38.203945px;}
.h12_c01158{height:38.927565px;}
.hb_c01158{height:39.877015px;}
.hd_c01158{height:40.826465px;}
.h19_c01158{height:42.725364px;}
.h13_c01158{height:66.519995px;}
.h14_c01158{height:67.734563px;}
.h1a_c01158{height:68.973816px;}
.h11_c01158{height:69.957422px;}
.h6_c01158{height:75.749502px;}
.h16_c01158{height:76.176054px;}
.h4_c01158{height:77.924795px;}
.h3_c01158{height:84.531885px;}
.h7_c01158{height:85.266941px;}
.h10_c01158{height:86.086494px;}
.hf_c01158{height:96.232641px;}
.hc_c01158{height:111.931875px;}
.h15_c01158{height:115.041288px;}
.h1_c01158{height:1110.000000px;}
.h0_c01158{height:1263.000000px;}
.w1_c01158{width:775.500000px;}
.w0_c01158{width:892.500000px;}
.x0_c01158{left:0.000000px;}
.x2_c01158{left:37.235535px;}
.x1_c01158{left:58.500000px;}
.x47_c01158{left:89.047185px;}
.x2d_c01158{left:90.116385px;}
.x1b_c01158{left:91.185585px;}
.x4_c01158{left:92.254785px;}
.x37_c01158{left:144.997035px;}
.x15_c01158{left:146.769135px;}
.x5_c01158{left:147.838335px;}
.x4d_c01158{left:167.757135px;}
.x53_c01158{left:177.112635px;}
.x29_c01158{left:190.621185px;}
.x2a_c01158{left:201.600285px;}
.x1c_c01158{left:204.025785px;}
.x6_c01158{left:206.169135px;}
.x54_c01158{left:212.772435px;}
.x3c_c01158{left:223.340685px;}
.xe_c01158{left:225.335535px;}
.x33_c01158{left:234.819735px;}
.x2e_c01158{left:245.140485px;}
.x1d_c01158{left:247.011585px;}
.x58_c01158{left:256.693785px;}
.x16_c01158{left:257.822385px;}
.x3f_c01158{left:290.878485px;}
.x43_c01158{left:302.679285px;}
.x1e_c01158{left:313.999935px;}
.x48_c01158{left:323.003985px;}
.x2b_c01158{left:325.028535px;}
.x52_c01158{left:329.884485px;}
.x7_c01158{left:337.928235px;}
.x17_c01158{left:346.268985px;}
.x55_c01158{left:356.069985px;}
.x20_c01158{left:357.965835px;}
.x4e_c01158{left:359.614185px;}
.x34_c01158{left:368.088585px;}
.xf_c01158{left:369.717135px;}
.x38_c01158{left:378.800385px;}
.x49_c01158{left:388.819185px;}
.x21_c01158{left:390.784335px;}
.x44_c01158{left:400.179435px;}
.x3d_c01158{left:401.471385px;}
.x18_c01158{left:403.233585px;}
.x59_c01158{left:413.054385px;}
.x4a_c01158{left:422.365335px;}
.x2f_c01158{left:424.251285px;}
.x3e_c01158{left:434.388885px;}
.x19_c01158{left:436.472835px;}
.x2c_c01158{left:446.872785px;}
.x30_c01158{left:457.381635px;}
.x10_c01158{left:459.510135px;}
.x8_c01158{left:461.272335px;}
.x45_c01158{left:469.028985px;}
.x9_c01158{left:471.612885px;}
.x4f_c01158{left:477.513285px;}
.x4b_c01158{left:487.541985px;}
.x56_c01158{left:488.729985px;}
.x39_c01158{left:490.705035px;}
.x22_c01158{left:500.288235px;}
.xa_c01158{left:502.253385px;}
.x11_c01158{left:512.440485px;}
.x35_c01158{left:522.370185px;}
.x50_c01158{left:544.947135px;}
.x23_c01158{left:546.110385px;}
.x1a_c01158{left:555.005535px;}
.x46_c01158{left:556.129185px;}
.x32_c01158{left:557.668635px;}
.x5a_c01158{left:566.761785px;}
.x3a_c01158{left:578.938785px;}
.x12_c01158{left:580.547535px;}
.x24_c01158{left:589.477335px;}
.x51_c01158{left:597.625035px;}
.x31_c01158{left:600.629685px;}
.xb_c01158{left:612.673035px;}
.x14_c01158{left:614.638185px;}
.x13_c01158{left:622.934385px;}
.x4c_c01158{left:631.433535px;}
.x40_c01158{left:643.966935px;}
.x25_c01158{left:657.762585px;}
.xc_c01158{left:659.227785px;}
.x5b_c01158{left:665.746935px;}
.x41_c01158{left:666.964635px;}
.x57_c01158{left:677.290335px;}
.x26_c01158{left:678.572385px;}
.x36_c01158{left:681.240435px;}
.x3b_c01158{left:688.804035px;}
.xd_c01158{left:691.170135px;}
.x3_c01158{left:701.832435px;}
.x1f_c01158{left:706.589385px;}
.x27_c01158{left:710.296935px;}
.x42_c01158{left:711.836385px;}
.x28_c01158{left:714.573735px;}
@media print{
.v1_c01158{vertical-align:-10.137600pt;}
.v0_c01158{vertical-align:0.000000pt;}
.ls14_c01158{letter-spacing:-2.870560pt;}
.lsd_c01158{letter-spacing:-2.679600pt;}
.lsc_c01158{letter-spacing:-2.470160pt;}
.ls21_c01158{letter-spacing:-2.152568pt;}
.ls20_c01158{letter-spacing:-1.729112pt;}
.ls6_c01158{letter-spacing:-1.122158pt;}
.ls13_c01158{letter-spacing:-0.889258pt;}
.ls10_c01158{letter-spacing:-0.623744pt;}
.ls3_c01158{letter-spacing:0.000000pt;}
.ls1f_c01158{letter-spacing:0.089496pt;}
.ls18_c01158{letter-spacing:0.678322pt;}
.lsb_c01158{letter-spacing:1.087152pt;}
.ls0_c01158{letter-spacing:1.171562pt;}
.ls1c_c01158{letter-spacing:1.178619pt;}
.lsa_c01158{letter-spacing:1.429387pt;}
.lsf_c01158{letter-spacing:1.439328pt;}
.ls2_c01158{letter-spacing:1.508232pt;}
.ls8_c01158{letter-spacing:1.628000pt;}
.ls1b_c01158{letter-spacing:1.929312pt;}
.ls1a_c01158{letter-spacing:1.962013pt;}
.ls1d_c01158{letter-spacing:2.828672pt;}
.ls1_c01158{letter-spacing:2.959764pt;}
.ls16_c01158{letter-spacing:3.168000pt;}
.ls9_c01158{letter-spacing:3.432000pt;}
.ls1e_c01158{letter-spacing:3.449609pt;}
.ls7_c01158{letter-spacing:3.500570pt;}
.ls5_c01158{letter-spacing:3.528800pt;}
.ls17_c01158{letter-spacing:3.804838pt;}
.ls4_c01158{letter-spacing:3.828000pt;}
.ls15_c01158{letter-spacing:3.898400pt;}
.ls11_c01158{letter-spacing:4.288205pt;}
.ls19_c01158{letter-spacing:51.955376pt;}
.lse_c01158{letter-spacing:53.222576pt;}
.ls12_c01158{letter-spacing:54.489776pt;}
.ls22_c01158{letter-spacing:57.024176pt;}
.ws0_c01158{word-spacing:-25.344000pt;}
.ws2_c01158{word-spacing:-20.207808pt;}
.ws1_c01158{word-spacing:-18.815562pt;}
.ws3_c01158{word-spacing:-15.914888pt;}
.ws4_c01158{word-spacing:0.000000pt;}
._2_c01158{margin-left:-14.395392pt;}
._9_c01158{margin-left:-10.028480pt;}
._e_c01158{margin-left:-3.565203pt;}
._8_c01158{width:1.842019pt;}
._b_c01158{width:3.246144pt;}
._3_c01158{width:5.717360pt;}
._d_c01158{width:8.078312pt;}
._7_c01158{width:9.732800pt;}
._f_c01158{width:13.814354pt;}
._0_c01158{width:17.749864pt;}
._4_c01158{width:19.337120pt;}
._5_c01158{width:20.452925pt;}
._c_c01158{width:24.956712pt;}
._6_c01158{width:26.889456pt;}
._1_c01158{width:35.105312pt;}
._a_c01158{width:41.825960pt;}
.fsd_c01158{font-size:19.712000pt;}
.fs6_c01158{font-size:20.064000pt;}
.fs8_c01158{font-size:22.352000pt;}
.fs16_c01158{font-size:24.640000pt;}
.fs0_c01158{font-size:25.168000pt;}
.fs17_c01158{font-size:29.568000pt;}
.fs7_c01158{font-size:29.920000pt;}
.fs3_c01158{font-size:32.560000pt;}
.fs11_c01158{font-size:46.288000pt;}
.fs12_c01158{font-size:50.688000pt;}
.fs10_c01158{font-size:51.955376pt;}
.fs9_c01158{font-size:53.222576pt;}
.fsc_c01158{font-size:54.489776pt;}
.fs19_c01158{font-size:57.024176pt;}
.fs13_c01158{font-size:57.728000pt;}
.fs1a_c01158{font-size:58.784176pt;}
.fs18_c01158{font-size:59.664176pt;}
.fsf_c01158{font-size:63.360000pt;}
.fs4_c01158{font-size:68.640000pt;}
.fs15_c01158{font-size:68.992176pt;}
.fs2_c01158{font-size:70.576000pt;}
.fs1_c01158{font-size:76.560000pt;}
.fs5_c01158{font-size:77.264176pt;}
.fsa_c01158{font-size:77.968000pt;}
.fse_c01158{font-size:82.016000pt;}
.fsb_c01158{font-size:101.376000pt;}
.fs14_c01158{font-size:104.192176pt;}
.y0_c01158{bottom:0.000000pt;}
.y2_c01158{bottom:37.299720pt;}
.y1_c01158{bottom:68.000000pt;}
.y1f_c01158{bottom:108.584120pt;}
.y1e_c01158{bottom:138.358920pt;}
.y1d_c01158{bottom:168.142520pt;}
.y1c_c01158{bottom:200.134920pt;}
.y1b_c01158{bottom:217.242120pt;}
.y1a_c01158{bottom:226.750520pt;}
.y18_c01158{bottom:255.262520pt;}
.y19_c01158{bottom:257.796920pt;}
.y17_c01158{bottom:312.603320pt;}
.y15_c01158{bottom:341.110436pt;}
.y16_c01158{bottom:341.115320pt;}
.y14_c01158{bottom:397.188920pt;}
.y13_c01158{bottom:425.384120pt;}
.y12_c01158{bottom:454.529720pt;}
.y11_c01158{bottom:470.052920pt;}
.y10_c01158{bottom:482.720520pt;}
.yf_c01158{bottom:540.065720pt;}
.ye_c01158{bottom:596.772920pt;}
.yd_c01158{bottom:625.597320pt;}
.yc_c01158{bottom:639.536520pt;}
.yb_c01158{bottom:652.529720pt;}
.ya_c01158{bottom:657.277320pt;}
.y9_c01158{bottom:682.625720pt;}
.y8_c01158{bottom:739.649720pt;}
.y7_c01158{bottom:770.062520pt;}
.y6_c01158{bottom:796.356920pt;}
.y4_c01158{bottom:824.864520pt;}
.y5_c01158{bottom:829.616520pt;}
.y3_c01158{bottom:948.099720pt;}
.he_c01158{height:20.559000pt;}
.h8_c01158{height:20.926125pt;}
.ha_c01158{height:23.312438pt;}
.h17_c01158{height:25.698750pt;}
.h2_c01158{height:26.249438pt;}
.h9_c01158{height:29.364844pt;}
.h18_c01158{height:30.838500pt;}
.h5_c01158{height:33.959063pt;}
.h12_c01158{height:34.602280pt;}
.hb_c01158{height:35.446236pt;}
.hd_c01158{height:36.290191pt;}
.h19_c01158{height:37.978101pt;}
.h13_c01158{height:59.128884pt;}
.h14_c01158{height:60.208500pt;}
.h1a_c01158{height:61.310059pt;}
.h11_c01158{height:62.184375pt;}
.h6_c01158{height:67.332891pt;}
.h16_c01158{height:67.712048pt;}
.h4_c01158{height:69.266484pt;}
.h3_c01158{height:75.139453pt;}
.h7_c01158{height:75.792837pt;}
.h10_c01158{height:76.521328pt;}
.hf_c01158{height:85.540125pt;}
.hc_c01158{height:99.495000pt;}
.h15_c01158{height:102.258923pt;}
.h1_c01158{height:986.666667pt;}
.h0_c01158{height:1122.666667pt;}
.w1_c01158{width:689.333333pt;}
.w0_c01158{width:793.333333pt;}
.x0_c01158{left:0.000000pt;}
.x2_c01158{left:33.098253pt;}
.x1_c01158{left:52.000000pt;}
.x47_c01158{left:79.153053pt;}
.x2d_c01158{left:80.103453pt;}
.x1b_c01158{left:81.053853pt;}
.x4_c01158{left:82.004253pt;}
.x37_c01158{left:128.886253pt;}
.x15_c01158{left:130.461453pt;}
.x5_c01158{left:131.411853pt;}
.x4d_c01158{left:149.117453pt;}
.x53_c01158{left:157.433453pt;}
.x29_c01158{left:169.441053pt;}
.x2a_c01158{left:179.200253pt;}
.x1c_c01158{left:181.356253pt;}
.x6_c01158{left:183.261453pt;}
.x54_c01158{left:189.131053pt;}
.x3c_c01158{left:198.525053pt;}
.xe_c01158{left:200.298253pt;}
.x33_c01158{left:208.728653pt;}
.x2e_c01158{left:217.902653pt;}
.x1d_c01158{left:219.565853pt;}
.x58_c01158{left:228.172253pt;}
.x16_c01158{left:229.175453pt;}
.x3f_c01158{left:258.558653pt;}
.x43_c01158{left:269.048253pt;}
.x1e_c01158{left:279.111053pt;}
.x48_c01158{left:287.114653pt;}
.x2b_c01158{left:288.914253pt;}
.x52_c01158{left:293.230653pt;}
.x7_c01158{left:300.380653pt;}
.x17_c01158{left:307.794653pt;}
.x55_c01158{left:316.506653pt;}
.x20_c01158{left:318.191853pt;}
.x4e_c01158{left:319.657053pt;}
.x34_c01158{left:327.189853pt;}
.xf_c01158{left:328.637453pt;}
.x38_c01158{left:336.711453pt;}
.x49_c01158{left:345.617053pt;}
.x21_c01158{left:347.363853pt;}
.x44_c01158{left:355.715053pt;}
.x3d_c01158{left:356.863453pt;}
.x18_c01158{left:358.429853pt;}
.x59_c01158{left:367.159453pt;}
.x4a_c01158{left:375.435853pt;}
.x2f_c01158{left:377.112253pt;}
.x3e_c01158{left:386.123453pt;}
.x19_c01158{left:387.975853pt;}
.x2c_c01158{left:397.220253pt;}
.x30_c01158{left:406.561453pt;}
.x10_c01158{left:408.453453pt;}
.x8_c01158{left:410.019853pt;}
.x45_c01158{left:416.914653pt;}
.x9_c01158{left:419.211453pt;}
.x4f_c01158{left:424.456253pt;}
.x4b_c01158{left:433.370653pt;}
.x56_c01158{left:434.426653pt;}
.x39_c01158{left:436.182253pt;}
.x22_c01158{left:444.700653pt;}
.xa_c01158{left:446.447453pt;}
.x11_c01158{left:455.502653pt;}
.x35_c01158{left:464.329053pt;}
.x50_c01158{left:484.397453pt;}
.x23_c01158{left:485.431453pt;}
.x1a_c01158{left:493.338253pt;}
.x46_c01158{left:494.337053pt;}
.x32_c01158{left:495.705453pt;}
.x5a_c01158{left:503.788253pt;}
.x3a_c01158{left:514.612253pt;}
.x12_c01158{left:516.042253pt;}
.x24_c01158{left:523.979853pt;}
.x51_c01158{left:531.222253pt;}
.x31_c01158{left:533.893053pt;}
.xb_c01158{left:544.598253pt;}
.x14_c01158{left:546.345053pt;}
.x13_c01158{left:553.719453pt;}
.x4c_c01158{left:561.274253pt;}
.x40_c01158{left:572.415053pt;}
.x25_c01158{left:584.677853pt;}
.xc_c01158{left:585.980253pt;}
.x5b_c01158{left:591.775053pt;}
.x41_c01158{left:592.857453pt;}
.x57_c01158{left:602.035853pt;}
.x26_c01158{left:603.175453pt;}
.x36_c01158{left:605.547053pt;}
.x3b_c01158{left:612.270253pt;}
.xd_c01158{left:614.373453pt;}
.x3_c01158{left:623.851053pt;}
.x1f_c01158{left:628.079453pt;}
.x27_c01158{left:631.375053pt;}
.x42_c01158{left:632.743453pt;}
.x28_c01158{left:635.176653pt;}
}





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

.ir_c01159:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01159{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01159;src:url('chunks/assets/font_b00cc63107015419a554b16f.woff2')format("woff");}.ff1_c01159{font-family:ff1_c01159;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01159;src:url('chunks/assets/font_ed439308a5fff605884a32f1.woff2')format("woff");}.ff2_c01159{font-family:ff2_c01159;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01159;src:url('chunks/assets/font_3af0b7fb8d573360e206b489.woff2')format("woff");}.ff3_c01159{font-family:ff3_c01159;line-height:0.666000;font-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_c01159{transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);}
.m53_c01159{transform:matrix(0.187499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187499,0.000000,0.000000,0.250000,0,0);}
.m55_c01159{transform:matrix(0.190625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190625,0.000000,0.000000,0.250000,0,0);}
.mf_c01159{transform:matrix(0.244192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244192,0.000000,0.000000,0.250000,0,0);}
.m1_c01159{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m29_c01159{transform:matrix(0.253075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253075,0.000000,0.000000,0.250000,0,0);}
.m22_c01159{transform:matrix(0.253744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253744,0.000000,0.000000,0.250000,0,0);}
.m76_c01159{transform:matrix(0.255723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255723,0.000000,0.000000,0.250000,0,0);}
.m6d_c01159{transform:matrix(0.256303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256303,0.000000,0.000000,0.250000,0,0);}
.m5_c01159{transform:matrix(0.256619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256619,0.000000,0.000000,0.250000,0,0);}
.m47_c01159{transform:matrix(0.256942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256942,0.000000,0.000000,0.250000,0,0);}
.m10_c01159{transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);}
.m3f_c01159{transform:matrix(0.257240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257240,0.000000,0.000000,0.250000,0,0);}
.m72_c01159{transform:matrix(0.258043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258043,0.000000,0.000000,0.250000,0,0);}
.m7e_c01159{transform:matrix(0.258288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258288,0.000000,0.000000,0.250000,0,0);}
.mc_c01159{transform:matrix(0.258499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258499,0.000000,0.000000,0.250000,0,0);}
.m49_c01159{transform:matrix(0.260714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260714,0.000000,0.000000,0.250000,0,0);}
.m4e_c01159{transform:matrix(0.266057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266057,0.000000,0.000000,0.250000,0,0);}
.m19_c01159{transform:matrix(0.266768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266768,0.000000,0.000000,0.250000,0,0);}
.m7f_c01159{transform:matrix(0.267031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267031,0.000000,0.000000,0.250000,0,0);}
.m2_c01159{transform:matrix(0.267283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267283,0.000000,0.000000,0.250000,0,0);}
.m34_c01159{transform:matrix(0.269115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269115,0.000000,0.000000,0.250000,0,0);}
.m58_c01159{transform:matrix(0.270005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270005,0.000000,0.000000,0.250000,0,0);}
.m21_c01159{transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271531,0.000000,0.000000,0.250000,0,0);}
.m36_c01159{transform:matrix(0.272173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272173,0.000000,0.000000,0.250000,0,0);}
.m3b_c01159{transform:matrix(0.272187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272187,0.000000,0.000000,0.250000,0,0);}
.m5f_c01159{transform:matrix(0.273180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273180,0.000000,0.000000,0.250000,0,0);}
.m2a_c01159{transform:matrix(0.273764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273764,0.000000,0.000000,0.250000,0,0);}
.m7d_c01159{transform:matrix(0.273899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273899,0.000000,0.000000,0.250000,0,0);}
.m1a_c01159{transform:matrix(0.274412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274412,0.000000,0.000000,0.250000,0,0);}
.m42_c01159{transform:matrix(0.274532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274532,0.000000,0.000000,0.250000,0,0);}
.m5d_c01159{transform:matrix(0.276190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276190,0.000000,0.000000,0.250000,0,0);}
.m66_c01159{transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);}
.m39_c01159{transform:matrix(0.276661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276661,0.000000,0.000000,0.250000,0,0);}
.m4_c01159{transform:matrix(0.278200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278200,0.000000,0.000000,0.250000,0,0);}
.m2f_c01159{transform:matrix(0.278444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278444,0.000000,0.000000,0.250000,0,0);}
.m82_c01159{transform:matrix(0.278910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278910,0.000000,0.000000,0.250000,0,0);}
.m6c_c01159{transform:matrix(0.279999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279999,0.000000,0.000000,0.250000,0,0);}
.m20_c01159{transform:matrix(0.282014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282014,0.000000,0.000000,0.250000,0,0);}
.m27_c01159{transform:matrix(0.282148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282148,0.000000,0.000000,0.250000,0,0);}
.m48_c01159{transform:matrix(0.283193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283193,0.000000,0.000000,0.250000,0,0);}
.m1b_c01159{transform:matrix(0.283997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283997,0.000000,0.000000,0.250000,0,0);}
.m7_c01159{transform:matrix(0.284473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284473,0.000000,0.000000,0.250000,0,0);}
.m3a_c01159{transform:matrix(0.285577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285577,0.000000,0.000000,0.250000,0,0);}
.m54_c01159{transform:matrix(0.286514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286514,0.000000,0.000000,0.250000,0,0);}
.m81_c01159{transform:matrix(0.286515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286515,0.000000,0.000000,0.250000,0,0);}
.m4a_c01159{transform:matrix(0.287133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287133,0.000000,0.000000,0.250000,0,0);}
.m1c_c01159{transform:matrix(0.287277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287277,0.000000,0.000000,0.250000,0,0);}
.m57_c01159{transform:matrix(0.287608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287608,0.000000,0.000000,0.250000,0,0);}
.m4f_c01159{transform:matrix(0.289687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289687,0.000000,0.000000,0.250000,0,0);}
.m65_c01159{transform:matrix(0.289851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289851,0.000000,0.000000,0.250000,0,0);}
.m2c_c01159{transform:matrix(0.291329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291329,0.000000,0.000000,0.250000,0,0);}
.m24_c01159{transform:matrix(0.291711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291711,0.000000,0.000000,0.250000,0,0);}
.m59_c01159{transform:matrix(0.292407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292407,0.000000,0.000000,0.250000,0,0);}
.m3d_c01159{transform:matrix(0.292564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292564,0.000000,0.000000,0.250000,0,0);}
.m2b_c01159{transform:matrix(0.292969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292969,0.000000,0.000000,0.250000,0,0);}
.m60_c01159{transform:matrix(0.293564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293564,0.000000,0.000000,0.250000,0,0);}
.m62_c01159{transform:matrix(0.293722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293722,0.000000,0.000000,0.250000,0,0);}
.m70_c01159{transform:matrix(0.296869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296869,0.000000,0.000000,0.250000,0,0);}
.m0_c01159{transform:matrix(0.297270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297270,0.000000,0.000000,0.250000,0,0);}
.m61_c01159{transform:matrix(0.297842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297842,0.000000,0.000000,0.250000,0,0);}
.m16_c01159{transform:matrix(0.297978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297978,0.000000,0.000000,0.250000,0,0);}
.m30_c01159{transform:matrix(0.298736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298736,0.000000,0.000000,0.250000,0,0);}
.m80_c01159{transform:matrix(0.299261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299261,0.000000,0.000000,0.250000,0,0);}
.m7a_c01159{transform:matrix(0.299671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299671,0.000000,0.000000,0.250000,0,0);}
.m11_c01159{transform:matrix(0.299841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299841,0.000000,0.000000,0.250000,0,0);}
.m6a_c01159{transform:matrix(0.299874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299874,0.000000,0.000000,0.250000,0,0);}
.m40_c01159{transform:matrix(0.299940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299940,0.000000,0.000000,0.250000,0,0);}
.m78_c01159{transform:matrix(0.300817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300817,0.000000,0.000000,0.250000,0,0);}
.m6f_c01159{transform:matrix(0.301564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301564,0.000000,0.000000,0.250000,0,0);}
.m5a_c01159{transform:matrix(0.302895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302895,0.000000,0.000000,0.250000,0,0);}
.ma_c01159{transform:matrix(0.303172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303172,0.000000,0.000000,0.250000,0,0);}
.m26_c01159{transform:matrix(0.303494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303494,0.000000,0.000000,0.250000,0,0);}
.m68_c01159{transform:matrix(0.303643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303643,0.000000,0.000000,0.250000,0,0);}
.m67_c01159{transform:matrix(0.303907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303907,0.000000,0.000000,0.250000,0,0);}
.m50_c01159{transform:matrix(0.304372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304372,0.000000,0.000000,0.250000,0,0);}
.m4d_c01159{transform:matrix(0.304437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304437,0.000000,0.000000,0.250000,0,0);}
.m38_c01159{transform:matrix(0.306065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306065,0.000000,0.000000,0.250000,0,0);}
.m28_c01159{transform:matrix(0.306158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306158,0.000000,0.000000,0.250000,0,0);}
.m5c_c01159{transform:matrix(0.306342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306342,0.000000,0.000000,0.250000,0,0);}
.m1f_c01159{transform:matrix(0.306408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306408,0.000000,0.000000,0.250000,0,0);}
.m35_c01159{transform:matrix(0.308545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308545,0.000000,0.000000,0.250000,0,0);}
.m3_c01159{transform:matrix(0.308631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308631,0.000000,0.000000,0.250000,0,0);}
.m7b_c01159{transform:matrix(0.308797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308797,0.000000,0.000000,0.250000,0,0);}
.m74_c01159{transform:matrix(0.309646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309646,0.000000,0.000000,0.250000,0,0);}
.m6b_c01159{transform:matrix(0.309873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309873,0.000000,0.000000,0.250000,0,0);}
.m17_c01159{transform:matrix(0.309994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309994,0.000000,0.000000,0.250000,0,0);}
.m14_c01159{transform:matrix(0.311070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311070,0.000000,0.000000,0.250000,0,0);}
.m32_c01159{transform:matrix(0.311129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311129,0.000000,0.000000,0.250000,0,0);}
.m52_c01159{transform:matrix(0.311478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311478,0.000000,0.000000,0.250000,0,0);}
.m25_c01159{transform:matrix(0.311931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311931,0.000000,0.000000,0.250000,0,0);}
.m5e_c01159{transform:matrix(0.312180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312180,0.000000,0.000000,0.250000,0,0);}
.m69_c01159{transform:matrix(0.312471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312471,0.000000,0.000000,0.250000,0,0);}
.m75_c01159{transform:matrix(0.312930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312930,0.000000,0.000000,0.250000,0,0);}
.m4c_c01159{transform:matrix(0.313055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313055,0.000000,0.000000,0.250000,0,0);}
.m73_c01159{transform:matrix(0.313887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313887,0.000000,0.000000,0.250000,0,0);}
.m77_c01159{transform:matrix(0.316066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316066,0.000000,0.000000,0.250000,0,0);}
.m37_c01159{transform:matrix(0.316249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316249,0.000000,0.000000,0.250000,0,0);}
.m3c_c01159{transform:matrix(0.316435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316435,0.000000,0.000000,0.250000,0,0);}
.m7c_c01159{transform:matrix(0.317306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317306,0.000000,0.000000,0.250000,0,0);}
.m41_c01159{transform:matrix(0.318470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318470,0.000000,0.000000,0.250000,0,0);}
.m8_c01159{transform:matrix(0.318782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318782,0.000000,0.000000,0.250000,0,0);}
.m15_c01159{transform:matrix(0.319439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319439,0.000000,0.000000,0.250000,0,0);}
.m46_c01159{transform:matrix(0.320936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320936,0.000000,0.000000,0.250000,0,0);}
.m5b_c01159{transform:matrix(0.328682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328682,0.000000,0.000000,0.250000,0,0);}
.m23_c01159{transform:matrix(0.331259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331259,0.000000,0.000000,0.250000,0,0);}
.m43_c01159{transform:matrix(0.331441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331441,0.000000,0.000000,0.250000,0,0);}
.m9_c01159{transform:matrix(0.332940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332940,0.000000,0.000000,0.250000,0,0);}
.m45_c01159{transform:matrix(0.336976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336976,0.000000,0.000000,0.250000,0,0);}
.md_c01159{transform:matrix(0.337554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337554,0.000000,0.000000,0.250000,0,0);}
.m56_c01159{transform:matrix(0.338403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338403,0.000000,0.000000,0.250000,0,0);}
.m79_c01159{transform:matrix(0.339251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339251,0.000000,0.000000,0.250000,0,0);}
.m1d_c01159{transform:matrix(0.340243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340243,0.000000,0.000000,0.250000,0,0);}
.me_c01159{transform:matrix(0.340676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340676,0.000000,0.000000,0.250000,0,0);}
.m63_c01159{transform:matrix(0.341951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341951,0.000000,0.000000,0.250000,0,0);}
.m4b_c01159{transform:matrix(0.342733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342733,0.000000,0.000000,0.250000,0,0);}
.m2e_c01159{transform:matrix(0.342888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342888,0.000000,0.000000,0.250000,0,0);}
.m71_c01159{transform:matrix(0.344792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344792,0.000000,0.000000,0.250000,0,0);}
.m3e_c01159{transform:matrix(0.345101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345101,0.000000,0.000000,0.250000,0,0);}
.m6_c01159{transform:matrix(0.345753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345753,0.000000,0.000000,0.250000,0,0);}
.m13_c01159{transform:matrix(0.347312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347312,0.000000,0.000000,0.250000,0,0);}
.m6e_c01159{transform:matrix(0.349884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349884,0.000000,0.000000,0.250000,0,0);}
.m33_c01159{transform:matrix(0.353946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353946,0.000000,0.000000,0.250000,0,0);}
.m31_c01159{transform:matrix(0.355928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355928,0.000000,0.000000,0.250000,0,0);}
.m64_c01159{transform:matrix(0.356132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356132,0.000000,0.000000,0.250000,0,0);}
.mb_c01159{transform:matrix(0.357328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357328,0.000000,0.000000,0.250000,0,0);}
.m51_c01159{transform:matrix(0.361464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361464,0.000000,0.000000,0.250000,0,0);}
.m18_c01159{transform:matrix(0.378849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378849,0.000000,0.000000,0.250000,0,0);}
.m1e_c01159{transform:matrix(0.385060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385060,0.000000,0.000000,0.250000,0,0);}
.m12_c01159{transform:matrix(0.391270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391270,0.000000,0.000000,0.250000,0,0);}
.m44_c01159{transform:matrix(0.397481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397481,0.000000,0.000000,0.250000,0,0);}
.m2d_c01159{transform:matrix(0.403692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403692,0.000000,0.000000,0.250000,0,0);}
.v0_c01159{vertical-align:0.000000px;}
.v2_c01159{vertical-align:15.701400px;}
.v1_c01159{vertical-align:18.532800px;}
.ls7_c01159{letter-spacing:-2.862090px;}
.lsf_c01159{letter-spacing:-1.034038px;}
.ls4_c01159{letter-spacing:0.000000px;}
.lsb_c01159{letter-spacing:0.790735px;}
.ls10_c01159{letter-spacing:2.220140px;}
.lsc_c01159{letter-spacing:2.422813px;}
.lsa_c01159{letter-spacing:3.484810px;}
.ls3_c01159{letter-spacing:3.702610px;}
.ls9_c01159{letter-spacing:3.755991px;}
.ls6_c01159{letter-spacing:3.777959px;}
.ls5_c01159{letter-spacing:3.801610px;}
.ls8_c01159{letter-spacing:4.088700px;}
.ls1_c01159{letter-spacing:4.177810px;}
.ls0_c01159{letter-spacing:11.523501px;}
.ls2_c01159{letter-spacing:12.790701px;}
.ls11_c01159{letter-spacing:31.363200px;}
.lsd_c01159{letter-spacing:39.916800px;}
.lse_c01159{letter-spacing:57.024198px;}
.sc__c01159{text-shadow:none;}
.sc0_c01159{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01159{-webkit-text-stroke:0px transparent;}
.sc0_c01159{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01159{word-spacing:-20.394050px;}
.ws1_c01159{word-spacing:0.000000px;}
._3_c01159{margin-left:-18.599427px;}
._2_c01159{margin-left:-14.844555px;}
._1_c01159{margin-left:-1.292613px;}
._0_c01159{width:30.163787px;}
._4_c01159{width:41.599800px;}
.fc0_c01159{color:transparent;}
.fs1_c01159{font-size:22.176000px;}
.fs12_c01159{font-size:23.166000px;}
.fs9_c01159{font-size:26.928000px;}
.fs8_c01159{font-size:27.720000px;}
.fs13_c01159{font-size:31.363200px;}
.fsf_c01159{font-size:33.660000px;}
.fsd_c01159{font-size:39.204000px;}
.fse_c01159{font-size:39.916800px;}
.fs3_c01159{font-size:45.936198px;}
.fs6_c01159{font-size:49.302000px;}
.fs10_c01159{font-size:57.024198px;}
.fsa_c01159{font-size:69.696198px;}
.fs7_c01159{font-size:70.092198px;}
.fs11_c01159{font-size:72.864000px;}
.fs0_c01159{font-size:74.052198px;}
.fs2_c01159{font-size:76.032198px;}
.fsb_c01159{font-size:81.576198px;}
.fs5_c01159{font-size:81.774000px;}
.fs4_c01159{font-size:83.556198px;}
.fsc_c01159{font-size:83.952198px;}
.y0_c01159{bottom:0.000000px;}
.y1_c01159{bottom:76.500000px;}
.y1e_c01159{bottom:128.923785px;}
.y1c_c01159{bottom:129.280185px;}
.y1d_c01159{bottom:139.615785px;}
.y1b_c01159{bottom:194.506335px;}
.y13_c01159{bottom:216.959535px;}
.y1a_c01159{bottom:226.933785px;}
.y19_c01159{bottom:259.009785px;}
.y18_c01159{bottom:291.090735px;}
.y17_c01159{bottom:323.166735px;}
.y16_c01159{bottom:354.886335px;}
.y15_c01159{bottom:386.962335px;}
.y14_c01159{bottom:419.038335px;}
.y12_c01159{bottom:451.470735px;}
.y11_c01159{bottom:514.553535px;}
.y10_c01159{bottom:522.745785px;}
.yf_c01159{bottom:547.342335px;}
.ye_c01159{bottom:579.413385px;}
.yd_c01159{bottom:643.926735px;}
.yc_c01159{bottom:676.359135px;}
.yb_c01159{bottom:739.436985px;}
.ya_c01159{bottom:770.800185px;}
.y9_c01159{bottom:803.588985px;}
.y8_c01159{bottom:818.201385px;}
.y7_c01159{bottom:859.192335px;}
.y6_c01159{bottom:867.384585px;}
.y5_c01159{bottom:932.249385px;}
.y4_c01159{bottom:955.420335px;}
.y3_c01159{bottom:973.948185px;}
.y2_c01159{bottom:1069.819785px;}
.h12_c01159{height:20.887891px;}
.h3_c01159{height:23.128875px;}
.h11_c01159{height:24.161414px;}
.he_c01159{height:26.584589px;}
.h9_c01159{height:28.085063px;}
.h8_c01159{height:28.911094px;}
.hf_c01159{height:33.035449px;}
.h10_c01159{height:37.978116px;}
.hd_c01159{height:38.476582px;}
.h2_c01159{height:72.678183px;}
.ha_c01159{height:72.690957px;}
.h7_c01159{height:73.103972px;}
.h4_c01159{height:74.621444px;}
.hb_c01159{height:80.062577px;}
.h6_c01159{height:80.256709px;}
.h5_c01159{height:82.005839px;}
.hc_c01159{height:82.394491px;}
.h1_c01159{height:1110.000000px;}
.h0_c01159{height:1263.000000px;}
.w1_c01159{width:775.500000px;}
.w0_c01159{width:892.500000px;}
.x0_c01159{left:0.000000px;}
.x1_c01159{left:58.500000px;}
.x30_c01159{left:98.343285px;}
.xe_c01159{left:99.417435px;}
.x5_c01159{left:100.491585px;}
.x46_c01159{left:121.741935px;}
.x5b_c01159{left:152.832885px;}
.x31_c01159{left:153.897135px;}
.x6_c01159{left:155.124735px;}
.x4b_c01159{left:156.773085px;}
.x41_c01159{left:168.405585px;}
.x3e_c01159{left:186.824535px;}
.x4c_c01159{left:188.561985px;}
.x32_c01159{left:189.641085px;}
.x37_c01159{left:199.011435px;}
.x23_c01159{left:208.728285px;}
.x19_c01159{left:210.000435px;}
.xf_c01159{left:220.712235px;}
.x7_c01159{left:231.617085px;}
.x4d_c01159{left:233.210985px;}
.x50_c01159{left:242.304135px;}
.x1a_c01159{left:243.497085px;}
.x47_c01159{left:254.461335px;}
.x10_c01159{left:264.391035px;}
.x8_c01159{left:267.509535px;}
.x38_c01159{left:275.835435px;}
.x3b_c01159{left:277.018485px;}
.x24_c01159{left:289.066785px;}
.x53_c01159{left:298.674735px;}
.x4e_c01159{left:308.955885px;}
.x11_c01159{left:310.396335px;}
.x9_c01159{left:311.579385px;}
.x25_c01159{left:321.771435px;}
.x5c_c01159{left:330.320085px;}
.x3f_c01159{left:331.527885px;}
.x1b_c01159{left:343.680135px;}
.x56_c01159{left:352.768335px;}
.x4f_c01159{left:355.352235px;}
.x33_c01159{left:365.024535px;}
.x40_c01159{left:366.083835px;}
.x2d_c01159{left:374.805735px;}
.x3c_c01159{left:376.790685px;}
.x1c_c01159{left:387.502485px;}
.xa_c01159{left:399.392385px;}
.x42_c01159{left:410.302185px;}
.x26_c01159{left:420.142785px;}
.x52_c01159{left:431.710935px;}
.x43_c01159{left:442.734585px;}
.xb_c01159{left:443.962185px;}
.x57_c01159{left:454.134435px;}
.x27_c01159{left:455.564985px;}
.x1d_c01159{left:463.905735px;}
.x48_c01159{left:465.247185px;}
.x2e_c01159{left:466.311435px;}
.x44_c01159{left:476.295585px;}
.xc_c01159{left:487.987485px;}
.x28_c01159{left:498.387435px;}
.x49_c01159{left:508.569585px;}
.x3_c01159{left:510.267435px;}
.x2f_c01159{left:519.999135px;}
.x58_c01159{left:530.265435px;}
.x29_c01159{left:531.889035px;}
.x34_c01159{left:542.165235px;}
.x12_c01159{left:552.733485px;}
.xd_c01159{left:554.649135px;}
.x1e_c01159{left:563.450235px;}
.x35_c01159{left:575.948985px;}
.x18_c01159{left:583.586835px;}
.x2a_c01159{left:585.086685px;}
.x45_c01159{left:586.388535px;}
.x13_c01159{left:587.804235px;}
.x59_c01159{left:597.035985px;}
.x39_c01159{left:598.535835px;}
.x17_c01159{left:605.401485px;}
.x4a_c01159{left:609.148635px;}
.x4_c01159{left:616.119225px;}
.x14_c01159{left:618.969435px;}
.x54_c01159{left:620.211885px;}
.x5a_c01159{left:630.547485px;}
.x1f_c01159{left:631.681035px;}
.x51_c01159{left:641.175135px;}
.x15_c01159{left:642.481935px;}
.x20_c01159{left:652.659135px;}
.x3d_c01159{left:654.069885px;}
.x2b_c01159{left:664.667835px;}
.x16_c01159{left:665.766735px;}
.x3a_c01159{left:673.473885px;}
.x36_c01159{left:675.810285px;}
.x55_c01159{left:685.467735px;}
.x21_c01159{left:686.571585px;}
.x2c_c01159{left:698.253585px;}
.x22_c01159{left:706.777485px;}
.x2_c01159{left:708.242685px;}
.x5d_c01159{left:709.777185px;}
@media print{
.v0_c01159{vertical-align:0.000000pt;}
.v2_c01159{vertical-align:13.956800pt;}
.v1_c01159{vertical-align:16.473600pt;}
.ls7_c01159{letter-spacing:-2.544080pt;}
.lsf_c01159{letter-spacing:-0.919145pt;}
.ls4_c01159{letter-spacing:0.000000pt;}
.lsb_c01159{letter-spacing:0.702875pt;}
.ls10_c01159{letter-spacing:1.973458pt;}
.lsc_c01159{letter-spacing:2.153612pt;}
.lsa_c01159{letter-spacing:3.097609pt;}
.ls3_c01159{letter-spacing:3.291209pt;}
.ls9_c01159{letter-spacing:3.338658pt;}
.ls6_c01159{letter-spacing:3.358186pt;}
.ls5_c01159{letter-spacing:3.379209pt;}
.ls8_c01159{letter-spacing:3.634400pt;}
.ls1_c01159{letter-spacing:3.713609pt;}
.ls0_c01159{letter-spacing:10.243112pt;}
.ls2_c01159{letter-spacing:11.369512pt;}
.ls11_c01159{letter-spacing:27.878400pt;}
.lsd_c01159{letter-spacing:35.481600pt;}
.lse_c01159{letter-spacing:50.688176pt;}
.ws0_c01159{word-spacing:-18.128044pt;}
.ws1_c01159{word-spacing:0.000000pt;}
._3_c01159{margin-left:-16.532824pt;}
._2_c01159{margin-left:-13.195160pt;}
._1_c01159{margin-left:-1.148990pt;}
._0_c01159{width:26.812256pt;}
._4_c01159{width:36.977600pt;}
.fs1_c01159{font-size:19.712000pt;}
.fs12_c01159{font-size:20.592000pt;}
.fs9_c01159{font-size:23.936000pt;}
.fs8_c01159{font-size:24.640000pt;}
.fs13_c01159{font-size:27.878400pt;}
.fsf_c01159{font-size:29.920000pt;}
.fsd_c01159{font-size:34.848000pt;}
.fse_c01159{font-size:35.481600pt;}
.fs3_c01159{font-size:40.832176pt;}
.fs6_c01159{font-size:43.824000pt;}
.fs10_c01159{font-size:50.688176pt;}
.fsa_c01159{font-size:61.952176pt;}
.fs7_c01159{font-size:62.304176pt;}
.fs11_c01159{font-size:64.768000pt;}
.fs0_c01159{font-size:65.824176pt;}
.fs2_c01159{font-size:67.584176pt;}
.fsb_c01159{font-size:72.512176pt;}
.fs5_c01159{font-size:72.688000pt;}
.fs4_c01159{font-size:74.272176pt;}
.fsc_c01159{font-size:74.624176pt;}
.y0_c01159{bottom:0.000000pt;}
.y1_c01159{bottom:68.000000pt;}
.y1e_c01159{bottom:114.598920pt;}
.y1c_c01159{bottom:114.915720pt;}
.y1d_c01159{bottom:124.102920pt;}
.y1b_c01159{bottom:172.894520pt;}
.y13_c01159{bottom:192.852920pt;}
.y1a_c01159{bottom:201.718920pt;}
.y19_c01159{bottom:230.230920pt;}
.y18_c01159{bottom:258.747320pt;}
.y17_c01159{bottom:287.259320pt;}
.y16_c01159{bottom:315.454520pt;}
.y15_c01159{bottom:343.966520pt;}
.y14_c01159{bottom:372.478520pt;}
.y12_c01159{bottom:401.307320pt;}
.y11_c01159{bottom:457.380920pt;}
.y10_c01159{bottom:464.662920pt;}
.yf_c01159{bottom:486.526520pt;}
.ye_c01159{bottom:515.034120pt;}
.yd_c01159{bottom:572.379320pt;}
.yc_c01159{bottom:601.208120pt;}
.yb_c01159{bottom:657.277320pt;}
.ya_c01159{bottom:685.155720pt;}
.y9_c01159{bottom:714.301320pt;}
.y8_c01159{bottom:727.290120pt;}
.y7_c01159{bottom:763.726520pt;}
.y6_c01159{bottom:771.008520pt;}
.y5_c01159{bottom:828.666120pt;}
.y4_c01159{bottom:849.262520pt;}
.y3_c01159{bottom:865.731720pt;}
.y2_c01159{bottom:950.950920pt;}
.h12_c01159{height:18.567014pt;}
.h3_c01159{height:20.559000pt;}
.h11_c01159{height:21.476813pt;}
.he_c01159{height:23.630746pt;}
.h9_c01159{height:24.964500pt;}
.h8_c01159{height:25.698750pt;}
.hf_c01159{height:29.364844pt;}
.h10_c01159{height:33.758325pt;}
.hd_c01159{height:34.201406pt;}
.h2_c01159{height:64.602829pt;}
.ha_c01159{height:64.614184pt;}
.h7_c01159{height:64.981309pt;}
.h4_c01159{height:66.330173pt;}
.hb_c01159{height:71.166735pt;}
.h6_c01159{height:71.339297pt;}
.h5_c01159{height:72.894079pt;}
.hc_c01159{height:73.239548pt;}
.h1_c01159{height:986.666667pt;}
.h0_c01159{height:1122.666667pt;}
.w1_c01159{width:689.333333pt;}
.w0_c01159{width:793.333333pt;}
.x0_c01159{left:0.000000pt;}
.x1_c01159{left:52.000000pt;}
.x30_c01159{left:87.416253pt;}
.xe_c01159{left:88.371053pt;}
.x5_c01159{left:89.325853pt;}
.x46_c01159{left:108.215053pt;}
.x5b_c01159{left:135.851453pt;}
.x31_c01159{left:136.797453pt;}
.x6_c01159{left:137.888653pt;}
.x4b_c01159{left:139.353853pt;}
.x41_c01159{left:149.693853pt;}
.x3e_c01159{left:166.066253pt;}
.x4c_c01159{left:167.610653pt;}
.x32_c01159{left:168.569853pt;}
.x37_c01159{left:176.899053pt;}
.x23_c01159{left:185.536253pt;}
.x19_c01159{left:186.667053pt;}
.xf_c01159{left:196.188653pt;}
.x7_c01159{left:205.881853pt;}
.x4d_c01159{left:207.298653pt;}
.x50_c01159{left:215.381453pt;}
.x1a_c01159{left:216.441853pt;}
.x47_c01159{left:226.187853pt;}
.x10_c01159{left:235.014253pt;}
.x8_c01159{left:237.786253pt;}
.x38_c01159{left:245.187053pt;}
.x3b_c01159{left:246.238653pt;}
.x24_c01159{left:256.948253pt;}
.x53_c01159{left:265.488653pt;}
.x4e_c01159{left:274.627453pt;}
.x11_c01159{left:275.907853pt;}
.x9_c01159{left:276.959453pt;}
.x25_c01159{left:286.019053pt;}
.x5c_c01159{left:293.617853pt;}
.x3f_c01159{left:294.691453pt;}
.x1b_c01159{left:305.493453pt;}
.x56_c01159{left:313.571853pt;}
.x4f_c01159{left:315.868653pt;}
.x33_c01159{left:324.466253pt;}
.x40_c01159{left:325.407853pt;}
.x2d_c01159{left:333.160653pt;}
.x3c_c01159{left:334.925053pt;}
.x1c_c01159{left:344.446653pt;}
.xa_c01159{left:355.015453pt;}
.x42_c01159{left:364.713053pt;}
.x26_c01159{left:373.460253pt;}
.x52_c01159{left:383.743053pt;}
.x43_c01159{left:393.541853pt;}
.xb_c01159{left:394.633053pt;}
.x57_c01159{left:403.675053pt;}
.x27_c01159{left:404.946653pt;}
.x1d_c01159{left:412.360653pt;}
.x48_c01159{left:413.553053pt;}
.x2e_c01159{left:414.499053pt;}
.x44_c01159{left:423.373853pt;}
.xc_c01159{left:433.766653pt;}
.x28_c01159{left:443.011053pt;}
.x49_c01159{left:452.061853pt;}
.x3_c01159{left:453.571053pt;}
.x2f_c01159{left:462.221453pt;}
.x58_c01159{left:471.347053pt;}
.x29_c01159{left:472.790253pt;}
.x34_c01159{left:481.924653pt;}
.x12_c01159{left:491.318653pt;}
.xd_c01159{left:493.021453pt;}
.x1e_c01159{left:500.844653pt;}
.x35_c01159{left:511.954653pt;}
.x18_c01159{left:518.743853pt;}
.x2a_c01159{left:520.077053pt;}
.x45_c01159{left:521.234253pt;}
.x13_c01159{left:522.492653pt;}
.x59_c01159{left:530.698653pt;}
.x39_c01159{left:532.031853pt;}
.x17_c01159{left:538.134653pt;}
.x4a_c01159{left:541.465453pt;}
.x4_c01159{left:547.661533pt;}
.x14_c01159{left:550.195053pt;}
.x54_c01159{left:551.299453pt;}
.x5a_c01159{left:560.486653pt;}
.x1f_c01159{left:561.494253pt;}
.x51_c01159{left:569.933453pt;}
.x15_c01159{left:571.095053pt;}
.x20_c01159{left:580.141453pt;}
.x3d_c01159{left:581.395453pt;}
.x2b_c01159{left:590.815853pt;}
.x16_c01159{left:591.792653pt;}
.x3a_c01159{left:598.643453pt;}
.x36_c01159{left:600.720253pt;}
.x55_c01159{left:609.304653pt;}
.x21_c01159{left:610.285853pt;}
.x2c_c01159{left:620.669853pt;}
.x22_c01159{left:628.246653pt;}
.x2_c01159{left:629.549053pt;}
.x5d_c01159{left:630.913053pt;}
}





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

.ir_c01160:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01160{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01160;src:url('chunks/assets/font_baa7ec4e161bb6b3252a1c9f.woff2')format("woff");}.ff1_c01160{font-family:ff1_c01160;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01160;src:url('chunks/assets/font_a23a4be8e9b4e157f19bba6d.woff2')format("woff");}.ff2_c01160{font-family:ff2_c01160;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01160;src:url('chunks/assets/font_2f920196a8909236e6652a43.woff2')format("woff");}.ff3_c01160{font-family:ff3_c01160;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01160;src:url('chunks/assets/font_13f9a3dbbde0763bfaf50a64.woff2')format("woff");}.ff4_c01160{font-family:ff4_c01160;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01160;src:url('chunks/assets/font_d559d2fa20428ae6d7d9c546.woff2')format("woff");}.ff5_c01160{font-family:ff5_c01160;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3c_c01160{transform:matrix(0.107612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107612,0.000000,0.000000,0.250000,0,0);}
.m3b_c01160{transform:matrix(0.127340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127340,0.000000,0.000000,0.250000,0,0);}
.mf_c01160{transform:matrix(0.127982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127982,0.000000,0.000000,0.250000,0,0);}
.m37_c01160{transform:matrix(0.150656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150656,0.000000,0.000000,0.250000,0,0);}
.m7_c01160{transform:matrix(0.169824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169824,0.000000,0.000000,0.250000,0,0);}
.m21_c01160{transform:matrix(0.175595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175595,0.000000,0.000000,0.250000,0,0);}
.m41_c01160{transform:matrix(0.182693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182693,0.000000,0.000000,0.250000,0,0);}
.m20_c01160{transform:matrix(0.190476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190476,0.000000,0.000000,0.250000,0,0);}
.m22_c01160{transform:matrix(0.213887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213887,0.000000,0.000000,0.250000,0,0);}
.m1c_c01160{transform:matrix(0.217350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217350,0.000000,0.000000,0.250000,0,0);}
.m40_c01160{transform:matrix(0.227873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227873,0.000000,0.000000,0.250000,0,0);}
.m2c_c01160{transform:matrix(0.234243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234243,0.000000,0.000000,0.250000,0,0);}
.m83_c01160{transform:matrix(0.238685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238685,0.000000,0.000000,0.250000,0,0);}
.m5b_c01160{transform:matrix(0.243086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243086,0.000000,0.000000,0.250000,0,0);}
.m45_c01160{transform:matrix(0.243955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243955,0.000000,0.000000,0.250000,0,0);}
.m0_c01160{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01160{transform:matrix(0.252475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252475,0.000000,0.000000,0.250000,0,0);}
.m34_c01160{transform:matrix(0.254680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254680,0.000000,0.000000,0.250000,0,0);}
.m25_c01160{transform:matrix(0.255030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255030,0.000000,0.000000,0.250000,0,0);}
.m69_c01160{transform:matrix(0.255547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255547,0.000000,0.000000,0.250000,0,0);}
.m13_c01160{transform:matrix(0.256595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256595,0.000000,0.000000,0.250000,0,0);}
.m87_c01160{transform:matrix(0.256648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256648,0.000000,0.000000,0.250000,0,0);}
.m4a_c01160{transform:matrix(0.257621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257621,0.000000,0.000000,0.250000,0,0);}
.m5f_c01160{transform:matrix(0.257657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257657,0.000000,0.000000,0.250000,0,0);}
.m1_c01160{transform:matrix(0.257881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257881,0.000000,0.000000,0.250000,0,0);}
.m62_c01160{transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257995,0.000000,0.000000,0.250000,0,0);}
.m4c_c01160{transform:matrix(0.258245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258245,0.000000,0.000000,0.250000,0,0);}
.m6_c01160{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m32_c01160{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m36_c01160{transform:matrix(0.262614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262614,0.000000,0.000000,0.250000,0,0);}
.m4_c01160{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m8f_c01160{transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263926,0.000000,0.000000,0.250000,0,0);}
.m90_c01160{transform:matrix(0.264610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264610,0.000000,0.000000,0.250000,0,0);}
.mc_c01160{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m2a_c01160{transform:matrix(0.267159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267159,0.000000,0.000000,0.250000,0,0);}
.m18_c01160{transform:matrix(0.267199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267199,0.000000,0.000000,0.250000,0,0);}
.m2_c01160{transform:matrix(0.269191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269191,0.000000,0.000000,0.250000,0,0);}
.m88_c01160{transform:matrix(0.270439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270439,0.000000,0.000000,0.250000,0,0);}
.m47_c01160{transform:matrix(0.271754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271754,0.000000,0.000000,0.250000,0,0);}
.m4b_c01160{transform:matrix(0.272084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272084,0.000000,0.000000,0.250000,0,0);}
.md_c01160{transform:matrix(0.272249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272249,0.000000,0.000000,0.250000,0,0);}
.m74_c01160{transform:matrix(0.272456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272456,0.000000,0.000000,0.250000,0,0);}
.m12_c01160{transform:matrix(0.272466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272466,0.000000,0.000000,0.250000,0,0);}
.m81_c01160{transform:matrix(0.272779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272779,0.000000,0.000000,0.250000,0,0);}
.m57_c01160{transform:matrix(0.272970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272970,0.000000,0.000000,0.250000,0,0);}
.m49_c01160{transform:matrix(0.273493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273493,0.000000,0.000000,0.250000,0,0);}
.m5e_c01160{transform:matrix(0.273705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273705,0.000000,0.000000,0.250000,0,0);}
.m63_c01160{transform:matrix(0.273802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273802,0.000000,0.000000,0.250000,0,0);}
.m52_c01160{transform:matrix(0.274838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274838,0.000000,0.000000,0.250000,0,0);}
.m15_c01160{transform:matrix(0.275040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275040,0.000000,0.000000,0.250000,0,0);}
.m3d_c01160{transform:matrix(0.275569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275569,0.000000,0.000000,0.250000,0,0);}
.m16_c01160{transform:matrix(0.276314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276314,0.000000,0.000000,0.250000,0,0);}
.m39_c01160{transform:matrix(0.276350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276350,0.000000,0.000000,0.250000,0,0);}
.m4d_c01160{transform:matrix(0.276698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276698,0.000000,0.000000,0.250000,0,0);}
.m4e_c01160{transform:matrix(0.277979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277979,0.000000,0.000000,0.250000,0,0);}
.m29_c01160{transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);}
.m58_c01160{transform:matrix(0.278629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278629,0.000000,0.000000,0.250000,0,0);}
.m79_c01160{transform:matrix(0.278968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278968,0.000000,0.000000,0.250000,0,0);}
.m17_c01160{transform:matrix(0.279162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279162,0.000000,0.000000,0.250000,0,0);}
.m65_c01160{transform:matrix(0.280247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280247,0.000000,0.000000,0.250000,0,0);}
.m60_c01160{transform:matrix(0.280687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280687,0.000000,0.000000,0.250000,0,0);}
.m3a_c01160{transform:matrix(0.281807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281807,0.000000,0.000000,0.250000,0,0);}
.m5d_c01160{transform:matrix(0.282543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282543,0.000000,0.000000,0.250000,0,0);}
.m6a_c01160{transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283547,0.000000,0.000000,0.250000,0,0);}
.m91_c01160{transform:matrix(0.284197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284197,0.000000,0.000000,0.250000,0,0);}
.m1a_c01160{transform:matrix(0.284463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284463,0.000000,0.000000,0.250000,0,0);}
.m2f_c01160{transform:matrix(0.285711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285711,0.000000,0.000000,0.250000,0,0);}
.m6e_c01160{transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285859,0.000000,0.000000,0.250000,0,0);}
.m28_c01160{transform:matrix(0.286030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286030,0.000000,0.000000,0.250000,0,0);}
.m5_c01160{transform:matrix(0.286788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286788,0.000000,0.000000,0.250000,0,0);}
.m2b_c01160{transform:matrix(0.287284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287284,0.000000,0.000000,0.250000,0,0);}
.m6b_c01160{transform:matrix(0.288042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288042,0.000000,0.000000,0.250000,0,0);}
.m7d_c01160{transform:matrix(0.288806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288806,0.000000,0.000000,0.250000,0,0);}
.m1b_c01160{transform:matrix(0.289761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289761,0.000000,0.000000,0.250000,0,0);}
.m43_c01160{transform:matrix(0.289977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289977,0.000000,0.000000,0.250000,0,0);}
.m9_c01160{transform:matrix(0.290624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290624,0.000000,0.000000,0.250000,0,0);}
.m50_c01160{transform:matrix(0.290629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290629,0.000000,0.000000,0.250000,0,0);}
.m7e_c01160{transform:matrix(0.291008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291008,0.000000,0.000000,0.250000,0,0);}
.m33_c01160{transform:matrix(0.291278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291278,0.000000,0.000000,0.250000,0,0);}
.m72_c01160{transform:matrix(0.291385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291385,0.000000,0.000000,0.250000,0,0);}
.m1f_c01160{transform:matrix(0.291407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291407,0.000000,0.000000,0.250000,0,0);}
.m10_c01160{transform:matrix(0.291492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291492,0.000000,0.000000,0.250000,0,0);}
.m8_c01160{transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);}
.m31_c01160{transform:matrix(0.291837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291837,0.000000,0.000000,0.250000,0,0);}
.m38_c01160{transform:matrix(0.292807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292807,0.000000,0.000000,0.250000,0,0);}
.m7b_c01160{transform:matrix(0.293131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293131,0.000000,0.000000,0.250000,0,0);}
.m96_c01160{transform:matrix(0.293217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293217,0.000000,0.000000,0.250000,0,0);}
.m84_c01160{transform:matrix(0.293439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293439,0.000000,0.000000,0.250000,0,0);}
.ma_c01160{transform:matrix(0.293597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293597,0.000000,0.000000,0.250000,0,0);}
.m3f_c01160{transform:matrix(0.293689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293689,0.000000,0.000000,0.250000,0,0);}
.m64_c01160{transform:matrix(0.294549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294549,0.000000,0.000000,0.250000,0,0);}
.m4f_c01160{transform:matrix(0.294978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294978,0.000000,0.000000,0.250000,0,0);}
.m8b_c01160{transform:matrix(0.295212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295212,0.000000,0.000000,0.250000,0,0);}
.m1e_c01160{transform:matrix(0.295255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295255,0.000000,0.000000,0.250000,0,0);}
.m55_c01160{transform:matrix(0.296068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296068,0.000000,0.000000,0.250000,0,0);}
.m23_c01160{transform:matrix(0.297306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297306,0.000000,0.000000,0.250000,0,0);}
.m80_c01160{transform:matrix(0.298080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298080,0.000000,0.000000,0.250000,0,0);}
.m86_c01160{transform:matrix(0.298177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298177,0.000000,0.000000,0.250000,0,0);}
.m77_c01160{transform:matrix(0.298376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298376,0.000000,0.000000,0.250000,0,0);}
.m2e_c01160{transform:matrix(0.299520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299520,0.000000,0.000000,0.250000,0,0);}
.m3_c01160{transform:matrix(0.299696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299696,0.000000,0.000000,0.250000,0,0);}
.m27_c01160{transform:matrix(0.300064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300064,0.000000,0.000000,0.250000,0,0);}
.m82_c01160{transform:matrix(0.300859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300859,0.000000,0.000000,0.250000,0,0);}
.m11_c01160{transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);}
.m7a_c01160{transform:matrix(0.302504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302504,0.000000,0.000000,0.250000,0,0);}
.m8d_c01160{transform:matrix(0.303162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303162,0.000000,0.000000,0.250000,0,0);}
.m95_c01160{transform:matrix(0.303409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303409,0.000000,0.000000,0.250000,0,0);}
.m76_c01160{transform:matrix(0.304223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304223,0.000000,0.000000,0.250000,0,0);}
.m6f_c01160{transform:matrix(0.304748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304748,0.000000,0.000000,0.250000,0,0);}
.m14_c01160{transform:matrix(0.305282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305282,0.000000,0.000000,0.250000,0,0);}
.m98_c01160{transform:matrix(0.306565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306565,0.000000,0.000000,0.250000,0,0);}
.mb_c01160{transform:matrix(0.307720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307720,0.000000,0.000000,0.250000,0,0);}
.m68_c01160{transform:matrix(0.307893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307893,0.000000,0.000000,0.250000,0,0);}
.m94_c01160{transform:matrix(0.309730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309730,0.000000,0.000000,0.250000,0,0);}
.m6d_c01160{transform:matrix(0.310152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310152,0.000000,0.000000,0.250000,0,0);}
.m75_c01160{transform:matrix(0.311069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311069,0.000000,0.000000,0.250000,0,0);}
.m5a_c01160{transform:matrix(0.311886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311886,0.000000,0.000000,0.250000,0,0);}
.m97_c01160{transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316136,0.000000,0.000000,0.250000,0,0);}
.m19_c01160{transform:matrix(0.316796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316796,0.000000,0.000000,0.250000,0,0);}
.m35_c01160{transform:matrix(0.317435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317435,0.000000,0.000000,0.250000,0,0);}
.m85_c01160{transform:matrix(0.318542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318542,0.000000,0.000000,0.250000,0,0);}
.m56_c01160{transform:matrix(0.318576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318576,0.000000,0.000000,0.250000,0,0);}
.m7f_c01160{transform:matrix(0.319036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319036,0.000000,0.000000,0.250000,0,0);}
.m42_c01160{transform:matrix(0.319808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319808,0.000000,0.000000,0.250000,0,0);}
.m92_c01160{transform:matrix(0.321349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321349,0.000000,0.000000,0.250000,0,0);}
.m70_c01160{transform:matrix(0.321839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321839,0.000000,0.000000,0.250000,0,0);}
.m93_c01160{transform:matrix(0.323442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323442,0.000000,0.000000,0.250000,0,0);}
.m54_c01160{transform:matrix(0.323461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323461,0.000000,0.000000,0.250000,0,0);}
.m73_c01160{transform:matrix(0.325364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325364,0.000000,0.000000,0.250000,0,0);}
.m89_c01160{transform:matrix(0.325840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325840,0.000000,0.000000,0.250000,0,0);}
.m78_c01160{transform:matrix(0.326100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326100,0.000000,0.000000,0.250000,0,0);}
.m51_c01160{transform:matrix(0.327085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327085,0.000000,0.000000,0.250000,0,0);}
.m67_c01160{transform:matrix(0.327299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327299,0.000000,0.000000,0.250000,0,0);}
.m6c_c01160{transform:matrix(0.330073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330073,0.000000,0.000000,0.250000,0,0);}
.m61_c01160{transform:matrix(0.330374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330374,0.000000,0.000000,0.250000,0,0);}
.m7c_c01160{transform:matrix(0.330803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330803,0.000000,0.000000,0.250000,0,0);}
.me_c01160{transform:matrix(0.333466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333466,0.000000,0.000000,0.250000,0,0);}
.m59_c01160{transform:matrix(0.335301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335301,0.000000,0.000000,0.250000,0,0);}
.m26_c01160{transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339282,0.000000,0.000000,0.250000,0,0);}
.m46_c01160{transform:matrix(0.341934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341934,0.000000,0.000000,0.250000,0,0);}
.m30_c01160{transform:matrix(0.342694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342694,0.000000,0.000000,0.250000,0,0);}
.m8e_c01160{transform:matrix(0.343771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343771,0.000000,0.000000,0.250000,0,0);}
.m2d_c01160{transform:matrix(0.346796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346796,0.000000,0.000000,0.250000,0,0);}
.m66_c01160{transform:matrix(0.348765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348765,0.000000,0.000000,0.250000,0,0);}
.m48_c01160{transform:matrix(0.353258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353258,0.000000,0.000000,0.250000,0,0);}
.m71_c01160{transform:matrix(0.353499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353499,0.000000,0.000000,0.250000,0,0);}
.m8a_c01160{transform:matrix(0.359561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359561,0.000000,0.000000,0.250000,0,0);}
.m44_c01160{transform:matrix(0.361231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361231,0.000000,0.000000,0.250000,0,0);}
.m53_c01160{transform:matrix(0.367708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367708,0.000000,0.000000,0.250000,0,0);}
.m8c_c01160{transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);}
.m24_c01160{transform:matrix(0.385437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385437,0.000000,0.000000,0.250000,0,0);}
.m5c_c01160{transform:matrix(0.393031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393031,0.000000,0.000000,0.250000,0,0);}
.m3e_c01160{transform:matrix(0.409527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409527,0.000000,0.000000,0.250000,0,0);}
.v0_c01160{vertical-align:0.000000px;}
.ls17_c01160{letter-spacing:-2.785867px;}
.ls9_c01160{letter-spacing:-2.744280px;}
.ls15_c01160{letter-spacing:-2.605680px;}
.ls14_c01160{letter-spacing:-1.466230px;}
.ls18_c01160{letter-spacing:-1.427026px;}
.ls4_c01160{letter-spacing:-1.126541px;}
.ls2_c01160{letter-spacing:0.000000px;}
.lsc_c01160{letter-spacing:0.784080px;}
.ls1_c01160{letter-spacing:1.121234px;}
.ls0_c01160{letter-spacing:1.850429px;}
.ls5_c01160{letter-spacing:1.894746px;}
.ls16_c01160{letter-spacing:2.226787px;}
.ls10_c01160{letter-spacing:2.356047px;}
.lsb_c01160{letter-spacing:2.462011px;}
.ls13_c01160{letter-spacing:3.332340px;}
.lse_c01160{letter-spacing:3.559723px;}
.ls12_c01160{letter-spacing:3.564000px;}
.ls11_c01160{letter-spacing:3.722400px;}
.lsa_c01160{letter-spacing:3.818470px;}
.ls7_c01160{letter-spacing:3.920400px;}
.ls6_c01160{letter-spacing:3.979810px;}
.ls3_c01160{letter-spacing:4.197610px;}
.lsf_c01160{letter-spacing:55.598598px;}
.lsd_c01160{letter-spacing:59.875398px;}
.ls8_c01160{letter-spacing:62.726400px;}
.sc__c01160{text-shadow:none;}
.sc0_c01160{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01160{-webkit-text-stroke:0px transparent;}
.sc0_c01160{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01160{word-spacing:-20.723234px;}
.ws1_c01160{word-spacing:-19.602000px;}
.ws2_c01160{word-spacing:0.000000px;}
._6_c01160{margin-left:-25.785991px;}
._7_c01160{margin-left:-15.147073px;}
._2_c01160{margin-left:-9.173340px;}
._5_c01160{width:2.979108px;}
._8_c01160{width:4.469256px;}
._a_c01160{width:10.200881px;}
._1_c01160{width:19.689754px;}
._3_c01160{width:23.130360px;}
._9_c01160{width:24.136992px;}
._4_c01160{width:29.559816px;}
._c_c01160{width:35.976551px;}
._0_c01160{width:39.711672px;}
._b_c01160{width:43.619301px;}
.fc0_c01160{color:transparent;}
.fs10_c01160{font-size:22.572000px;}
.fs1_c01160{font-size:28.314000px;}
.fsc_c01160{font-size:55.598598px;}
.fsa_c01160{font-size:59.875398px;}
.fs7_c01160{font-size:62.726400px;}
.fs0_c01160{font-size:69.300000px;}
.fsf_c01160{font-size:71.280000px;}
.fs9_c01160{font-size:72.072198px;}
.fs8_c01160{font-size:72.864000px;}
.fse_c01160{font-size:74.448000px;}
.fs4_c01160{font-size:77.022198px;}
.fs6_c01160{font-size:78.408000px;}
.fs5_c01160{font-size:79.596198px;}
.fs2_c01160{font-size:83.952198px;}
.fsd_c01160{font-size:84.942198px;}
.fs3_c01160{font-size:88.704000px;}
.fsb_c01160{font-size:115.632198px;}
.y0_c01160{bottom:0.000000px;}
.y1_c01160{bottom:76.500000px;}
.y1b_c01160{bottom:120.018735px;}
.y1a_c01160{bottom:152.451135px;}
.y19_c01160{bottom:184.878585px;}
.y18_c01160{bottom:249.748335px;}
.y17_c01160{bottom:282.180735px;}
.y16_c01160{bottom:314.964585px;}
.y15_c01160{bottom:347.040585px;}
.y14_c01160{bottom:364.147785px;}
.y13_c01160{bottom:379.477935px;}
.y12_c01160{bottom:443.986335px;}
.y11_c01160{bottom:508.138335px;}
.y10_c01160{bottom:540.209385px;}
.yf_c01160{bottom:602.579385px;}
.ye_c01160{bottom:635.368185px;}
.yd_c01160{bottom:667.800585px;}
.yc_c01160{bottom:699.525135px;}
.yb_c01160{bottom:731.952585px;}
.ya_c01160{bottom:764.028585px;}
.y9_c01160{bottom:796.109535px;}
.y8_c01160{bottom:827.829135px;}
.y7_c01160{bottom:859.905135px;}
.y6_c01160{bottom:892.332585px;}
.y5_c01160{bottom:924.057135px;}
.y4_c01160{bottom:1066.968585px;}
.y3_c01160{bottom:1095.124185px;}
.y2_c01160{bottom:1102.252185px;}
.h10_c01160{height:23.541891px;}
.h3_c01160{height:29.530617px;}
.hc_c01160{height:37.028666px;}
.ha_c01160{height:39.877015px;}
.h8_c01160{height:41.775782px;}
.h9_c01160{height:70.734921px;}
.hf_c01160{height:71.836875px;}
.h2_c01160{height:72.277734px;}
.he_c01160{height:73.066641px;}
.h7_c01160{height:76.953164px;}
.h6_c01160{height:78.119315px;}
.h4_c01160{height:82.394491px;}
.hd_c01160{height:83.366122px;}
.h5_c01160{height:87.014813px;}
.hb_c01160{height:120.600769px;}
.h1_c01160{height:1110.000000px;}
.h0_c01160{height:1263.000000px;}
.w1_c01160{width:775.500000px;}
.w0_c01160{width:892.500000px;}
.x0_c01160{left:0.000000px;}
.x1_c01160{left:58.500000px;}
.x4a_c01160{left:92.284485px;}
.x5_c01160{left:96.165285px;}
.x61_c01160{left:147.506685px;}
.x26_c01160{left:148.575885px;}
.x1d_c01160{left:150.179685px;}
.xe_c01160{left:151.204335px;}
.x27_c01160{left:171.593385px;}
.x5a_c01160{left:181.775535px;}
.x6_c01160{left:183.136785px;}
.x53_c01160{left:192.571485px;}
.x1e_c01160{left:194.021835px;}
.x4f_c01160{left:204.085185px;}
.x38_c01160{left:216.692835px;}
.x43_c01160{left:225.493935px;}
.x1f_c01160{left:226.919535px;}
.xf_c01160{left:237.665985px;}
.x2e_c01160{left:239.636085px;}
.x50_c01160{left:245.947335px;}
.x7_c01160{left:249.555885px;}
.x2f_c01160{left:260.247885px;}
.x54_c01160{left:271.345785px;}
.x10_c01160{left:272.761485px;}
.x3d_c01160{left:273.810885px;}
.x28_c01160{left:282.364485px;}
.x5b_c01160{left:293.437635px;}
.x30_c01160{left:294.531585px;}
.x44_c01160{left:296.199735px;}
.x11_c01160{left:304.936485px;}
.x41_c01160{left:315.361185px;}
.x8_c01160{left:316.623435px;}
.x20_c01160{left:326.538285px;}
.x17_c01160{left:327.676785px;}
.x29_c01160{left:328.736085px;}
.x31_c01160{left:338.631135px;}
.x5e_c01160{left:348.565785px;}
.x9_c01160{left:349.639935px;}
.x18_c01160{left:360.520035px;}
.x65_c01160{left:369.533985px;}
.x32_c01160{left:372.177285px;}
.x3e_c01160{left:380.869485px;}
.x12_c01160{left:384.161235px;}
.x39_c01160{left:393.571185px;}
.x5f_c01160{left:403.743435px;}
.x51_c01160{left:415.237335px;}
.x45_c01160{left:416.390685px;}
.x21_c01160{left:427.107435px;}
.x19_c01160{left:428.181585px;}
.x3a_c01160{left:436.893585px;}
.x33_c01160{left:438.833985px;}
.x62_c01160{left:448.115235px;}
.x13_c01160{left:449.194335px;}
.x22_c01160{left:458.559735px;}
.x14_c01160{left:459.703185px;}
.x2a_c01160{left:461.524785px;}
.x60_c01160{left:470.103135px;}
.x46_c01160{left:471.647535px;}
.x1a_c01160{left:481.448535px;}
.xa_c01160{left:482.710785px;}
.x64_c01160{left:491.972235px;}
.x23_c01160{left:493.561185px;}
.x55_c01160{left:503.505735px;}
.x34_c01160{left:504.787785px;}
.x59_c01160{left:511.994985px;}
.x4b_c01160{left:513.861135px;}
.xb_c01160{left:514.984785px;}
.x3b_c01160{left:525.830235px;}
.x52_c01160{left:536.824185px;}
.x35_c01160{left:537.833985px;}
.x47_c01160{left:538.972485px;}
.x1b_c01160{left:548.367585px;}
.x63_c01160{left:557.841885px;}
.x48_c01160{left:560.465385px;}
.x4c_c01160{left:568.127985px;}
.x36_c01160{left:570.251535px;}
.x2b_c01160{left:581.433585px;}
.x56_c01160{left:591.764235px;}
.x15_c01160{left:592.803735px;}
.x4d_c01160{left:603.287835px;}
.x2c_c01160{left:612.915585px;}
.x57_c01160{left:624.785685px;}
.xc_c01160{left:626.206335px;}
.x42_c01160{left:633.982785px;}
.x5c_c01160{left:635.517285px;}
.x16_c01160{left:636.824085px;}
.x37_c01160{left:648.040785px;}
.x4e_c01160{left:649.392135px;}
.x3f_c01160{left:653.802585px;}
.x1c_c01160{left:657.079485px;}
.xd_c01160{left:658.574385px;}
.x24_c01160{left:668.944635px;}
.x2d_c01160{left:670.177185px;}
.x40_c01160{left:679.290135px;}
.x58_c01160{left:681.245385px;}
.x3c_c01160{left:690.640485px;}
.x49_c01160{left:694.649985px;}
.x5d_c01160{left:701.020635px;}
.x3_c01160{left:702.277935px;}
.x4_c01160{left:706.109235px;}
.x2_c01160{left:711.133485px;}
.x25_c01160{left:712.831335px;}
@media print{
.v0_c01160{vertical-align:0.000000pt;}
.ls17_c01160{letter-spacing:-2.476326pt;}
.ls9_c01160{letter-spacing:-2.439360pt;}
.ls15_c01160{letter-spacing:-2.316160pt;}
.ls14_c01160{letter-spacing:-1.303315pt;}
.ls18_c01160{letter-spacing:-1.268467pt;}
.ls4_c01160{letter-spacing:-1.001370pt;}
.ls2_c01160{letter-spacing:0.000000pt;}
.lsc_c01160{letter-spacing:0.696960pt;}
.ls1_c01160{letter-spacing:0.996653pt;}
.ls0_c01160{letter-spacing:1.644826pt;}
.ls5_c01160{letter-spacing:1.684219pt;}
.ls16_c01160{letter-spacing:1.979366pt;}
.ls10_c01160{letter-spacing:2.094264pt;}
.lsb_c01160{letter-spacing:2.188454pt;}
.ls13_c01160{letter-spacing:2.962080pt;}
.lse_c01160{letter-spacing:3.164198pt;}
.ls12_c01160{letter-spacing:3.168000pt;}
.ls11_c01160{letter-spacing:3.308800pt;}
.lsa_c01160{letter-spacing:3.394195pt;}
.ls7_c01160{letter-spacing:3.484800pt;}
.ls6_c01160{letter-spacing:3.537609pt;}
.ls3_c01160{letter-spacing:3.731209pt;}
.lsf_c01160{letter-spacing:49.420976pt;}
.lsd_c01160{letter-spacing:53.222576pt;}
.ls8_c01160{letter-spacing:55.756800pt;}
.ws0_c01160{word-spacing:-18.420653pt;}
.ws1_c01160{word-spacing:-17.424000pt;}
.ws2_c01160{word-spacing:0.000000pt;}
._6_c01160{margin-left:-22.920881pt;}
._7_c01160{margin-left:-13.464065pt;}
._2_c01160{margin-left:-8.154080pt;}
._5_c01160{width:2.648096pt;}
._8_c01160{width:3.972672pt;}
._a_c01160{width:9.067450pt;}
._1_c01160{width:17.502003pt;}
._3_c01160{width:20.560320pt;}
._9_c01160{width:21.455104pt;}
._4_c01160{width:26.275392pt;}
._c_c01160{width:31.979156pt;}
._0_c01160{width:35.299264pt;}
._b_c01160{width:38.772712pt;}
.fs10_c01160{font-size:20.064000pt;}
.fs1_c01160{font-size:25.168000pt;}
.fsc_c01160{font-size:49.420976pt;}
.fsa_c01160{font-size:53.222576pt;}
.fs7_c01160{font-size:55.756800pt;}
.fs0_c01160{font-size:61.600000pt;}
.fsf_c01160{font-size:63.360000pt;}
.fs9_c01160{font-size:64.064176pt;}
.fs8_c01160{font-size:64.768000pt;}
.fse_c01160{font-size:66.176000pt;}
.fs4_c01160{font-size:68.464176pt;}
.fs6_c01160{font-size:69.696000pt;}
.fs5_c01160{font-size:70.752176pt;}
.fs2_c01160{font-size:74.624176pt;}
.fsd_c01160{font-size:75.504176pt;}
.fs3_c01160{font-size:78.848000pt;}
.fsb_c01160{font-size:102.784176pt;}
.y0_c01160{bottom:0.000000pt;}
.y1_c01160{bottom:68.000000pt;}
.y1b_c01160{bottom:106.683320pt;}
.y1a_c01160{bottom:135.512120pt;}
.y19_c01160{bottom:164.336520pt;}
.y18_c01160{bottom:221.998520pt;}
.y17_c01160{bottom:250.827320pt;}
.y16_c01160{bottom:279.968520pt;}
.y15_c01160{bottom:308.480520pt;}
.y14_c01160{bottom:323.686920pt;}
.y13_c01160{bottom:337.313720pt;}
.y12_c01160{bottom:394.654520pt;}
.y11_c01160{bottom:451.678520pt;}
.y10_c01160{bottom:480.186120pt;}
.yf_c01160{bottom:535.626120pt;}
.ye_c01160{bottom:564.771720pt;}
.yd_c01160{bottom:593.600520pt;}
.yc_c01160{bottom:621.800120pt;}
.yb_c01160{bottom:650.624520pt;}
.ya_c01160{bottom:679.136520pt;}
.y9_c01160{bottom:707.652920pt;}
.y8_c01160{bottom:735.848120pt;}
.y7_c01160{bottom:764.360120pt;}
.y6_c01160{bottom:793.184520pt;}
.y5_c01160{bottom:821.384120pt;}
.y4_c01160{bottom:948.416520pt;}
.y3_c01160{bottom:973.443720pt;}
.y2_c01160{bottom:979.779720pt;}
.h10_c01160{height:20.926125pt;}
.h3_c01160{height:26.249438pt;}
.hc_c01160{height:32.914370pt;}
.ha_c01160{height:35.446236pt;}
.h8_c01160{height:37.134029pt;}
.h9_c01160{height:62.875485pt;}
.hf_c01160{height:63.855000pt;}
.h2_c01160{height:64.246875pt;}
.he_c01160{height:64.948125pt;}
.h7_c01160{height:68.402813pt;}
.h6_c01160{height:69.439391pt;}
.h4_c01160{height:73.239548pt;}
.hd_c01160{height:74.103220pt;}
.h5_c01160{height:77.346500pt;}
.hb_c01160{height:107.200684pt;}
.h1_c01160{height:986.666667pt;}
.h0_c01160{height:1122.666667pt;}
.w1_c01160{width:689.333333pt;}
.w0_c01160{width:793.333333pt;}
.x0_c01160{left:0.000000pt;}
.x1_c01160{left:52.000000pt;}
.x4a_c01160{left:82.030653pt;}
.x5_c01160{left:85.480253pt;}
.x61_c01160{left:131.117053pt;}
.x26_c01160{left:132.067453pt;}
.x1d_c01160{left:133.493053pt;}
.xe_c01160{left:134.403853pt;}
.x27_c01160{left:152.527453pt;}
.x5a_c01160{left:161.578253pt;}
.x6_c01160{left:162.788253pt;}
.x53_c01160{left:171.174653pt;}
.x1e_c01160{left:172.463853pt;}
.x4f_c01160{left:181.409053pt;}
.x38_c01160{left:192.615853pt;}
.x43_c01160{left:200.439053pt;}
.x1f_c01160{left:201.706253pt;}
.xf_c01160{left:211.258653pt;}
.x2e_c01160{left:213.009853pt;}
.x50_c01160{left:218.619853pt;}
.x7_c01160{left:221.827453pt;}
.x2f_c01160{left:231.331453pt;}
.x54_c01160{left:241.196253pt;}
.x10_c01160{left:242.454653pt;}
.x3d_c01160{left:243.387453pt;}
.x28_c01160{left:250.990653pt;}
.x5b_c01160{left:260.833453pt;}
.x30_c01160{left:261.805853pt;}
.x44_c01160{left:263.288653pt;}
.x11_c01160{left:271.054653pt;}
.x41_c01160{left:280.321053pt;}
.x8_c01160{left:281.443053pt;}
.x20_c01160{left:290.256253pt;}
.x17_c01160{left:291.268253pt;}
.x29_c01160{left:292.209853pt;}
.x31_c01160{left:301.005453pt;}
.x5e_c01160{left:309.836253pt;}
.x9_c01160{left:310.791053pt;}
.x18_c01160{left:320.462253pt;}
.x65_c01160{left:328.474653pt;}
.x32_c01160{left:330.824253pt;}
.x3e_c01160{left:338.550653pt;}
.x12_c01160{left:341.476653pt;}
.x39_c01160{left:349.841053pt;}
.x5f_c01160{left:358.883053pt;}
.x51_c01160{left:369.099853pt;}
.x45_c01160{left:370.125053pt;}
.x21_c01160{left:379.651053pt;}
.x19_c01160{left:380.605853pt;}
.x3a_c01160{left:388.349853pt;}
.x33_c01160{left:390.074653pt;}
.x62_c01160{left:398.324653pt;}
.x13_c01160{left:399.283853pt;}
.x22_c01160{left:407.608653pt;}
.x14_c01160{left:408.625053pt;}
.x2a_c01160{left:410.244253pt;}
.x60_c01160{left:417.869453pt;}
.x46_c01160{left:419.242253pt;}
.x1a_c01160{left:427.954253pt;}
.xa_c01160{left:429.076253pt;}
.x64_c01160{left:437.308653pt;}
.x23_c01160{left:438.721053pt;}
.x55_c01160{left:447.560653pt;}
.x34_c01160{left:448.700253pt;}
.x59_c01160{left:455.106653pt;}
.x4b_c01160{left:456.765453pt;}
.xb_c01160{left:457.764253pt;}
.x3b_c01160{left:467.404653pt;}
.x52_c01160{left:477.177053pt;}
.x35_c01160{left:478.074653pt;}
.x47_c01160{left:479.086653pt;}
.x1b_c01160{left:487.437853pt;}
.x63_c01160{left:495.859453pt;}
.x48_c01160{left:498.191453pt;}
.x4c_c01160{left:505.002653pt;}
.x36_c01160{left:506.890253pt;}
.x2b_c01160{left:516.829853pt;}
.x56_c01160{left:526.012653pt;}
.x15_c01160{left:526.936653pt;}
.x4d_c01160{left:536.255853pt;}
.x2c_c01160{left:544.813853pt;}
.x57_c01160{left:555.365053pt;}
.xc_c01160{left:556.627853pt;}
.x42_c01160{left:563.540253pt;}
.x5c_c01160{left:564.904253pt;}
.x16_c01160{left:566.065853pt;}
.x37_c01160{left:576.036253pt;}
.x4e_c01160{left:577.237453pt;}
.x3f_c01160{left:581.157853pt;}
.x1c_c01160{left:584.070653pt;}
.xd_c01160{left:585.399453pt;}
.x24_c01160{left:594.617453pt;}
.x2d_c01160{left:595.713053pt;}
.x40_c01160{left:603.813453pt;}
.x58_c01160{left:605.551453pt;}
.x3c_c01160{left:613.902653pt;}
.x49_c01160{left:617.466653pt;}
.x5d_c01160{left:623.129453pt;}
.x3_c01160{left:624.247053pt;}
.x4_c01160{left:627.652653pt;}
.x2_c01160{left:632.118653pt;}
.x25_c01160{left:633.627853pt;}
}





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

.ir_c01161:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01161{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01161;src:url('chunks/assets/font_fcdd68d643199ac13018c289.woff2')format("woff");}.ff1_c01161{font-family:ff1_c01161;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01161;src:url('chunks/assets/font_a0fb963df2a8d601c9df1b2e.woff2')format("woff");}.ff2_c01161{font-family:ff2_c01161;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01161;src:url('chunks/assets/font_15e398ca12749e6d5640bb86.woff2')format("woff");}.ff3_c01161{font-family:ff3_c01161;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01161;src:url('chunks/assets/font_7f15953fa8010f18c45c7ddc.woff2')format("woff");}.ff4_c01161{font-family:ff4_c01161;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01161;src:url('chunks/assets/font_d51dd20c3524cf93641e1370.woff2')format("woff");}.ff5_c01161{font-family:ff5_c01161;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01161;src:url('chunks/assets/font_972e97a30e74e97ce1fb6018.woff2')format("woff");}.ff6_c01161{font-family:ff6_c01161;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m85_c01161{transform:matrix(0.034092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.034092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.034092,0.000000,0.000000,0.250000,0,0);}
.m14_c01161{transform:matrix(0.065342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065342,0.000000,0.000000,0.250000,0,0);}
.m8d_c01161{transform:matrix(0.111768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111768,0.000000,0.000000,0.250000,0,0);}
.m15_c01161{transform:matrix(0.122565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122565,0.000000,0.000000,0.250000,0,0);}
.m76_c01161{transform:matrix(0.159393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159393,0.000000,0.000000,0.250000,0,0);}
.m87_c01161{transform:matrix(0.161933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161933,0.000000,0.000000,0.250000,0,0);}
.m9_c01161{transform:matrix(0.168657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168657,0.000000,0.000000,0.250000,0,0);}
.m86_c01161{transform:matrix(0.174243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174243,0.000000,0.000000,0.250000,0,0);}
.m28_c01161{transform:matrix(0.177206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177206,0.000000,0.000000,0.250000,0,0);}
.m12_c01161{transform:matrix(0.184933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184933,0.000000,0.000000,0.250000,0,0);}
.m57_c01161{transform:matrix(0.191463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191463,0.000000,0.000000,0.250000,0,0);}
.m7e_c01161{transform:matrix(0.220581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220581,0.000000,0.000000,0.250000,0,0);}
.m20_c01161{transform:matrix(0.249211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249211,0.000000,0.000000,0.250000,0,0);}
.mf_c01161{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m11_c01161{transform:matrix(0.250077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250077,0.000000,0.000000,0.250000,0,0);}
.m8f_c01161{transform:matrix(0.250432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250432,0.000000,0.000000,0.250000,0,0);}
.m13_c01161{transform:matrix(0.251884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251884,0.000000,0.000000,0.250000,0,0);}
.m43_c01161{transform:matrix(0.253507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253507,0.000000,0.000000,0.250000,0,0);}
.m5b_c01161{transform:matrix(0.255325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255325,0.000000,0.000000,0.250000,0,0);}
.m1_c01161{transform:matrix(0.260634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260634,0.000000,0.000000,0.250000,0,0);}
.m52_c01161{transform:matrix(0.263999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263999,0.000000,0.000000,0.250000,0,0);}
.m3a_c01161{transform:matrix(0.265787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265787,0.000000,0.000000,0.250000,0,0);}
.m81_c01161{transform:matrix(0.266926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266926,0.000000,0.000000,0.250000,0,0);}
.m21_c01161{transform:matrix(0.268394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268394,0.000000,0.000000,0.250000,0,0);}
.m96_c01161{transform:matrix(0.268900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268900,0.000000,0.000000,0.250000,0,0);}
.m16_c01161{transform:matrix(0.269175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269175,0.000000,0.000000,0.250000,0,0);}
.m1e_c01161{transform:matrix(0.269336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269336,0.000000,0.000000,0.250000,0,0);}
.m4_c01161{transform:matrix(0.270287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270287,0.000000,0.000000,0.250000,0,0);}
.m92_c01161{transform:matrix(0.270809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270809,0.000000,0.000000,0.250000,0,0);}
.m24_c01161{transform:matrix(0.270878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270878,0.000000,0.000000,0.250000,0,0);}
.m27_c01161{transform:matrix(0.270885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270885,0.000000,0.000000,0.250000,0,0);}
.m1d_c01161{transform:matrix(0.271410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271410,0.000000,0.000000,0.250000,0,0);}
.m1a_c01161{transform:matrix(0.271828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271828,0.000000,0.000000,0.250000,0,0);}
.m56_c01161{transform:matrix(0.271888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271888,0.000000,0.000000,0.250000,0,0);}
.m6e_c01161{transform:matrix(0.272665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272665,0.000000,0.000000,0.250000,0,0);}
.m2e_c01161{transform:matrix(0.273274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273274,0.000000,0.000000,0.250000,0,0);}
.m1c_c01161{transform:matrix(0.273293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273293,0.000000,0.000000,0.250000,0,0);}
.m36_c01161{transform:matrix(0.273475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273475,0.000000,0.000000,0.250000,0,0);}
.m75_c01161{transform:matrix(0.273537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273537,0.000000,0.000000,0.250000,0,0);}
.m7f_c01161{transform:matrix(0.273929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273929,0.000000,0.000000,0.250000,0,0);}
.m4a_c01161{transform:matrix(0.273950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273950,0.000000,0.000000,0.250000,0,0);}
.m4b_c01161{transform:matrix(0.274357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274357,0.000000,0.000000,0.250000,0,0);}
.m8_c01161{transform:matrix(0.274392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274392,0.000000,0.000000,0.250000,0,0);}
.m3e_c01161{transform:matrix(0.275090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275090,0.000000,0.000000,0.250000,0,0);}
.m32_c01161{transform:matrix(0.275114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275114,0.000000,0.000000,0.250000,0,0);}
.m68_c01161{transform:matrix(0.275474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275474,0.000000,0.000000,0.250000,0,0);}
.m51_c01161{transform:matrix(0.276784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276784,0.000000,0.000000,0.250000,0,0);}
.m54_c01161{transform:matrix(0.276873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276873,0.000000,0.000000,0.250000,0,0);}
.m62_c01161{transform:matrix(0.278410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278410,0.000000,0.000000,0.250000,0,0);}
.m2b_c01161{transform:matrix(0.278739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278739,0.000000,0.000000,0.250000,0,0);}
.m63_c01161{transform:matrix(0.278862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278862,0.000000,0.000000,0.250000,0,0);}
.m38_c01161{transform:matrix(0.278884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278884,0.000000,0.000000,0.250000,0,0);}
.m91_c01161{transform:matrix(0.280672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280672,0.000000,0.000000,0.250000,0,0);}
.m4c_c01161{transform:matrix(0.281321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281321,0.000000,0.000000,0.250000,0,0);}
.m77_c01161{transform:matrix(0.281397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281397,0.000000,0.000000,0.250000,0,0);}
.m2d_c01161{transform:matrix(0.281976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281976,0.000000,0.000000,0.250000,0,0);}
.m64_c01161{transform:matrix(0.283033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283033,0.000000,0.000000,0.250000,0,0);}
.m6a_c01161{transform:matrix(0.283743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283743,0.000000,0.000000,0.250000,0,0);}
.m66_c01161{transform:matrix(0.284045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284045,0.000000,0.000000,0.250000,0,0);}
.m37_c01161{transform:matrix(0.285123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285123,0.000000,0.000000,0.250000,0,0);}
.m1b_c01161{transform:matrix(0.285528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285528,0.000000,0.000000,0.250000,0,0);}
.m0_c01161{transform:matrix(0.286075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286075,0.000000,0.000000,0.250000,0,0);}
.m93_c01161{transform:matrix(0.286107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286107,0.000000,0.000000,0.250000,0,0);}
.m2c_c01161{transform:matrix(0.286731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286731,0.000000,0.000000,0.250000,0,0);}
.m80_c01161{transform:matrix(0.287004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287004,0.000000,0.000000,0.250000,0,0);}
.m84_c01161{transform:matrix(0.287913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287913,0.000000,0.000000,0.250000,0,0);}
.m7c_c01161{transform:matrix(0.288386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288386,0.000000,0.000000,0.250000,0,0);}
.m5d_c01161{transform:matrix(0.288617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288617,0.000000,0.000000,0.250000,0,0);}
.m29_c01161{transform:matrix(0.289521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289521,0.000000,0.000000,0.250000,0,0);}
.m49_c01161{transform:matrix(0.289648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289648,0.000000,0.000000,0.250000,0,0);}
.m89_c01161{transform:matrix(0.291067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291067,0.000000,0.000000,0.250000,0,0);}
.m5c_c01161{transform:matrix(0.291576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291576,0.000000,0.000000,0.250000,0,0);}
.ma_c01161{transform:matrix(0.292298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292298,0.000000,0.000000,0.250000,0,0);}
.m22_c01161{transform:matrix(0.292724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292724,0.000000,0.000000,0.250000,0,0);}
.m6b_c01161{transform:matrix(0.292734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292734,0.000000,0.000000,0.250000,0,0);}
.m4e_c01161{transform:matrix(0.293704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293704,0.000000,0.000000,0.250000,0,0);}
.m3_c01161{transform:matrix(0.293938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293938,0.000000,0.000000,0.250000,0,0);}
.m33_c01161{transform:matrix(0.295477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295477,0.000000,0.000000,0.250000,0,0);}
.m71_c01161{transform:matrix(0.296265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296265,0.000000,0.000000,0.250000,0,0);}
.m5e_c01161{transform:matrix(0.296423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296423,0.000000,0.000000,0.250000,0,0);}
.m2a_c01161{transform:matrix(0.296509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296509,0.000000,0.000000,0.250000,0,0);}
.m8b_c01161{transform:matrix(0.297583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297583,0.000000,0.000000,0.250000,0,0);}
.m53_c01161{transform:matrix(0.298619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298619,0.000000,0.000000,0.250000,0,0);}
.m97_c01161{transform:matrix(0.298684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298684,0.000000,0.000000,0.250000,0,0);}
.m40_c01161{transform:matrix(0.299307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299307,0.000000,0.000000,0.250000,0,0);}
.m34_c01161{transform:matrix(0.299346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299346,0.000000,0.000000,0.250000,0,0);}
.m82_c01161{transform:matrix(0.300125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300125,0.000000,0.000000,0.250000,0,0);}
.m3b_c01161{transform:matrix(0.300267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300267,0.000000,0.000000,0.250000,0,0);}
.m4d_c01161{transform:matrix(0.302254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302254,0.000000,0.000000,0.250000,0,0);}
.m6f_c01161{transform:matrix(0.302505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302505,0.000000,0.000000,0.250000,0,0);}
.m3c_c01161{transform:matrix(0.304541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304541,0.000000,0.000000,0.250000,0,0);}
.me_c01161{transform:matrix(0.308497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308497,0.000000,0.000000,0.250000,0,0);}
.m41_c01161{transform:matrix(0.309111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309111,0.000000,0.000000,0.250000,0,0);}
.m72_c01161{transform:matrix(0.310197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310197,0.000000,0.000000,0.250000,0,0);}
.m4f_c01161{transform:matrix(0.311754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311754,0.000000,0.000000,0.250000,0,0);}
.m95_c01161{transform:matrix(0.312017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312017,0.000000,0.000000,0.250000,0,0);}
.m31_c01161{transform:matrix(0.313173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313173,0.000000,0.000000,0.250000,0,0);}
.m7_c01161{transform:matrix(0.315154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315154,0.000000,0.000000,0.250000,0,0);}
.m67_c01161{transform:matrix(0.315316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315316,0.000000,0.000000,0.250000,0,0);}
.m83_c01161{transform:matrix(0.315655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315655,0.000000,0.000000,0.250000,0,0);}
.m45_c01161{transform:matrix(0.315782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315782,0.000000,0.000000,0.250000,0,0);}
.m19_c01161{transform:matrix(0.316931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316931,0.000000,0.000000,0.250000,0,0);}
.m1f_c01161{transform:matrix(0.318526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318526,0.000000,0.000000,0.250000,0,0);}
.m88_c01161{transform:matrix(0.320038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320038,0.000000,0.000000,0.250000,0,0);}
.m35_c01161{transform:matrix(0.322518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322518,0.000000,0.000000,0.250000,0,0);}
.m8c_c01161{transform:matrix(0.323415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323415,0.000000,0.000000,0.250000,0,0);}
.m70_c01161{transform:matrix(0.325126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325126,0.000000,0.000000,0.250000,0,0);}
.m7b_c01161{transform:matrix(0.325336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325336,0.000000,0.000000,0.250000,0,0);}
.m5f_c01161{transform:matrix(0.327353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327353,0.000000,0.000000,0.250000,0,0);}
.m3d_c01161{transform:matrix(0.327398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327398,0.000000,0.000000,0.250000,0,0);}
.m7a_c01161{transform:matrix(0.327703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327703,0.000000,0.000000,0.250000,0,0);}
.m7d_c01161{transform:matrix(0.330315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330315,0.000000,0.000000,0.250000,0,0);}
.m60_c01161{transform:matrix(0.331491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331491,0.000000,0.000000,0.250000,0,0);}
.m5a_c01161{transform:matrix(0.332205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332205,0.000000,0.000000,0.250000,0,0);}
.md_c01161{transform:matrix(0.337909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337909,0.000000,0.000000,0.250000,0,0);}
.m5_c01161{transform:matrix(0.337949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337949,0.000000,0.000000,0.250000,0,0);}
.m44_c01161{transform:matrix(0.339341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339341,0.000000,0.000000,0.250000,0,0);}
.m6_c01161{transform:matrix(0.339508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339508,0.000000,0.000000,0.250000,0,0);}
.mb_c01161{transform:matrix(0.341839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341839,0.000000,0.000000,0.250000,0,0);}
.m65_c01161{transform:matrix(0.344493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344493,0.000000,0.000000,0.250000,0,0);}
.m48_c01161{transform:matrix(0.345149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345149,0.000000,0.000000,0.250000,0,0);}
.m47_c01161{transform:matrix(0.345192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345192,0.000000,0.000000,0.250000,0,0);}
.m3f_c01161{transform:matrix(0.345552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345552,0.000000,0.000000,0.250000,0,0);}
.m18_c01161{transform:matrix(0.346440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346440,0.000000,0.000000,0.250000,0,0);}
.m30_c01161{transform:matrix(0.347412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347412,0.000000,0.000000,0.250000,0,0);}
.m61_c01161{transform:matrix(0.348169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348169,0.000000,0.000000,0.250000,0,0);}
.m6d_c01161{transform:matrix(0.349653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349653,0.000000,0.000000,0.250000,0,0);}
.m79_c01161{transform:matrix(0.351894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351894,0.000000,0.000000,0.250000,0,0);}
.m26_c01161{transform:matrix(0.351907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351907,0.000000,0.000000,0.250000,0,0);}
.m69_c01161{transform:matrix(0.353552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353552,0.000000,0.000000,0.250000,0,0);}
.m42_c01161{transform:matrix(0.354500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354500,0.000000,0.000000,0.250000,0,0);}
.m25_c01161{transform:matrix(0.356201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356201,0.000000,0.000000,0.250000,0,0);}
.m10_c01161{transform:matrix(0.356992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356992,0.000000,0.000000,0.250000,0,0);}
.mc_c01161{transform:matrix(0.357205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357205,0.000000,0.000000,0.250000,0,0);}
.m17_c01161{transform:matrix(0.357532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357532,0.000000,0.000000,0.250000,0,0);}
.m39_c01161{transform:matrix(0.358064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358064,0.000000,0.000000,0.250000,0,0);}
.m23_c01161{transform:matrix(0.358676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358676,0.000000,0.000000,0.250000,0,0);}
.m50_c01161{transform:matrix(0.364408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364408,0.000000,0.000000,0.250000,0,0);}
.m73_c01161{transform:matrix(0.378546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378546,0.000000,0.000000,0.250000,0,0);}
.m8e_c01161{transform:matrix(0.389770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389770,0.000000,0.000000,0.250000,0,0);}
.m74_c01161{transform:matrix(0.389971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389971,0.000000,0.000000,0.250000,0,0);}
.m2_c01161{transform:matrix(0.390139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390139,0.000000,0.000000,0.250000,0,0);}
.m2f_c01161{transform:matrix(0.396432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396432,0.000000,0.000000,0.250000,0,0);}
.m6c_c01161{transform:matrix(0.402725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402725,0.000000,0.000000,0.250000,0,0);}
.m8a_c01161{transform:matrix(0.403496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403496,0.000000,0.000000,0.250000,0,0);}
.m58_c01161{transform:matrix(0.404995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404995,0.000000,0.000000,0.250000,0,0);}
.m55_c01161{transform:matrix(0.407418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407418,0.000000,0.000000,0.250000,0,0);}
.m46_c01161{transform:matrix(0.407916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407916,0.000000,0.000000,0.250000,0,0);}
.m90_c01161{transform:matrix(0.410357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410357,0.000000,0.000000,0.250000,0,0);}
.m59_c01161{transform:matrix(0.413236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413236,0.000000,0.000000,0.250000,0,0);}
.m94_c01161{transform:matrix(0.421500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421500,0.000000,0.000000,0.250000,0,0);}
.m78_c01161{transform:matrix(0.648943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.648943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.648943,0.000000,0.000000,0.250000,0,0);}
.v2_c01161{vertical-align:-22.825440px;}
.v1_c01161{vertical-align:-4.276800px;}
.v0_c01161{vertical-align:0.000000px;}
.ls18_c01161{letter-spacing:-2.862090px;}
.ls5_c01161{letter-spacing:-2.626477px;}
.lsb_c01161{letter-spacing:-2.571030px;}
.ls1f_c01161{letter-spacing:-2.321550px;}
.lsf_c01161{letter-spacing:-1.480723px;}
.ls21_c01161{letter-spacing:-0.420236px;}
.lsa_c01161{letter-spacing:-0.211148px;}
.ls22_c01161{letter-spacing:-0.127572px;}
.ls9_c01161{letter-spacing:0.000000px;}
.ls7_c01161{letter-spacing:0.112563px;}
.lse_c01161{letter-spacing:0.345194px;}
.ls1_c01161{letter-spacing:0.450890px;}
.ls14_c01161{letter-spacing:0.570321px;}
.ls0_c01161{letter-spacing:0.630354px;}
.ls6_c01161{letter-spacing:1.500844px;}
.ls1a_c01161{letter-spacing:1.515852px;}
.ls11_c01161{letter-spacing:1.534302px;}
.ls17_c01161{letter-spacing:1.619046px;}
.ls16_c01161{letter-spacing:1.831500px;}
.ls3_c01161{letter-spacing:1.951097px;}
.ls1c_c01161{letter-spacing:1.966106px;}
.ls20_c01161{letter-spacing:2.098810px;}
.ls15_c01161{letter-spacing:2.534400px;}
.ls8_c01161{letter-spacing:3.181789px;}
.ls12_c01161{letter-spacing:3.316500px;}
.ls1b_c01161{letter-spacing:3.643200px;}
.ls19_c01161{letter-spacing:3.682810px;}
.ls1e_c01161{letter-spacing:3.742200px;}
.ls4_c01161{letter-spacing:3.752110px;}
.ls1d_c01161{letter-spacing:3.801610px;}
.ls13_c01161{letter-spacing:3.960000px;}
.lsc_c01161{letter-spacing:5.068810px;}
.ls2_c01161{letter-spacing:19.349836px;}
.ls10_c01161{letter-spacing:57.024198px;}
.lsd_c01161{letter-spacing:62.726400px;}
.sc__c01161{text-shadow:none;}
.sc0_c01161{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01161{-webkit-text-stroke:0px transparent;}
.sc0_c01161{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01161{word-spacing:-18.760550px;}
.ws1_c01161{word-spacing:0.000000px;}
._2_c01161{margin-left:-2.552319px;}
._1_c01161{width:1.088901px;}
._4_c01161{width:6.603597px;}
._5_c01161{width:24.343951px;}
._0_c01161{width:27.983327px;}
._3_c01161{width:31.399630px;}
.fc0_c01161{color:transparent;}
.fsf_c01161{font-size:11.286000px;}
.fse_c01161{font-size:11.682198px;}
.fs1a_c01161{font-size:22.176000px;}
.fs7_c01161{font-size:23.166000px;}
.fs13_c01161{font-size:27.720000px;}
.fs12_c01161{font-size:36.630000px;}
.fs17_c01161{font-size:41.976198px;}
.fs18_c01161{font-size:45.738000px;}
.fs11_c01161{font-size:50.688000px;}
.fs9_c01161{font-size:51.876198px;}
.fsa_c01161{font-size:57.024198px;}
.fs4_c01161{font-size:62.726400px;}
.fs8_c01161{font-size:64.944000px;}
.fsc_c01161{font-size:66.330000px;}
.fs6_c01161{font-size:66.528000px;}
.fs2_c01161{font-size:68.112198px;}
.fs10_c01161{font-size:72.864000px;}
.fs1_c01161{font-size:73.458000px;}
.fs15_c01161{font-size:73.656198px;}
.fsb_c01161{font-size:74.844000px;}
.fs0_c01161{font-size:75.042198px;}
.fs16_c01161{font-size:76.032198px;}
.fs19_c01161{font-size:78.804000px;}
.fsd_c01161{font-size:79.200000px;}
.fs5_c01161{font-size:79.596198px;}
.fs14_c01161{font-size:81.774000px;}
.fs3_c01161{font-size:101.376198px;}
.y0_c01161{bottom:0.000000px;}
.y25_c01161{bottom:58.711599px;}
.y1_c01161{bottom:76.500000px;}
.y24_c01161{bottom:112.177935px;}
.y23_c01161{bottom:156.366585px;}
.y22_c01161{bottom:183.809385px;}
.y21_c01161{bottom:223.374735px;}
.y20_c01161{bottom:255.089385px;}
.y1f_c01161{bottom:286.813935px;}
.y1e_c01161{bottom:319.597785px;}
.y1c_c01161{bottom:350.960985px;}
.y1d_c01161{bottom:354.886335px;}
.y1b_c01161{bottom:383.749785px;}
.y1a_c01161{bottom:416.543535px;}
.y19_c01161{bottom:479.977785px;}
.y18_c01161{bottom:501.005385px;}
.y16_c01161{bottom:511.697385px;}
.y17_c01161{bottom:517.048335px;}
.y15_c01161{bottom:543.421935px;}
.y14_c01161{bottom:575.136585px;}
.y13_c01161{bottom:591.887385px;}
.y12_c01161{bottom:602.222985px;}
.y11_c01161{bottom:607.925385px;}
.y10_c01161{bottom:640.357785px;}
.yf_c01161{bottom:703.084185px;}
.yd_c01161{bottom:736.590735px;}
.ye_c01161{bottom:742.293135px;}
.yc_c01161{bottom:768.661785px;}
.yb_c01161{bottom:769.379535px;}
.ya_c01161{bottom:790.407135px;}
.y9_c01161{bottom:803.237535px;}
.y7_c01161{bottom:833.526585px;}
.y8_c01161{bottom:834.600735px;}
.y5_c01161{bottom:864.177480px;}
.y6_c01161{bottom:864.181935px;}
.y4_c01161{bottom:897.327135px;}
.y3_c01161{bottom:929.041785px;}
.y2_c01161{bottom:1065.542985px;}
.hf_c01161{height:11.465438px;}
.h10_c01161{height:11.770945px;}
.h1b_c01161{height:23.128875px;}
.h8_c01161{height:24.161414px;}
.h14_c01161{height:28.911094px;}
.hb_c01161{height:37.978116px;}
.h13_c01161{height:38.203945px;}
.h18_c01161{height:41.197343px;}
.h5_c01161{height:41.775782px;}
.h19_c01161{height:44.889346px;}
.h12_c01161{height:49.747500px;}
.ha_c01161{height:54.105253px;}
.h9_c01161{height:67.734563px;}
.hd_c01161{height:69.180117px;}
.h7_c01161{height:69.386625px;}
.h11_c01161{height:71.512031px;}
.h3_c01161{height:72.095010px;}
.hc_c01161{height:73.455293px;}
.h2_c01161{height:73.649813px;}
.h16_c01161{height:74.231637px;}
.h17_c01161{height:74.621444px;}
.h1a_c01161{height:77.341816px;}
.he_c01161{height:77.691797px;}
.h6_c01161{height:78.119315px;}
.h15_c01161{height:80.256709px;}
.h4_c01161{height:99.495194px;}
.h1_c01161{height:1110.000000px;}
.h0_c01161{height:1263.000000px;}
.w1_c01161{width:775.500000px;}
.w0_c01161{width:892.500000px;}
.x0_c01161{left:0.000000px;}
.x1_c01161{left:58.500000px;}
.x4e_c01161{left:102.981435px;}
.x22_c01161{left:104.050635px;}
.x4f_c01161{left:158.530335px;}
.x12_c01161{left:159.712197px;}
.x1a_c01161{left:160.861785px;}
.x3_c01161{left:162.668535px;}
.x4a_c01161{left:183.458535px;}
.x50_c01161{left:190.621185px;}
.x5b_c01161{left:192.531885px;}
.x4_c01161{left:194.323785px;}
.x4b_c01161{left:204.253485px;}
.x31_c01161{left:205.401885px;}
.x69_c01161{left:214.094085px;}
.x23_c01161{left:215.153385px;}
.x3b_c01161{left:224.776185px;}
.x5_c01161{left:227.394735px;}
.x32_c01161{left:237.086835px;}
.x2d_c01161{left:239.240085px;}
.x41_c01161{left:247.813485px;}
.x37_c01161{left:248.897535px;}
.x1b_c01161{left:251.768535px;}
.x24_c01161{left:259.584585px;}
.xc_c01161{left:260.930985px;}
.x2e_c01161{left:268.747035px;}
.x25_c01161{left:271.088385px;}
.x66_c01161{left:280.562685px;}
.x42_c01161{left:281.998185px;}
.x13_c01161{left:283.765335px;}
.x5c_c01161{left:291.616035px;}
.x6a_c01161{left:292.650585px;}
.x4c_c01161{left:303.515835px;}
.x67_c01161{left:315.212685px;}
.x45_c01161{left:316.430385px;}
.x1c_c01161{left:324.909735px;}
.x60_c01161{left:334.547385px;}
.x33_c01161{left:335.666085px;}
.x4d_c01161{left:337.561935px;}
.xd_c01161{left:338.641035px;}
.x14_c01161{left:340.239885px;}
.x3c_c01161{left:348.115335px;}
.x51_c01161{left:360.361635px;}
.x26_c01161{left:361.995135px;}
.x55_c01161{left:370.311135px;}
.x6_c01161{left:371.513985px;}
.x5d_c01161{left:380.592285px;}
.x3d_c01161{left:381.651585px;}
.x27_c01161{left:382.918785px;}
.x34_c01161{left:392.893035px;}
.x61_c01161{left:401.550585px;}
.x5e_c01161{left:403.169235px;}
.x7_c01161{left:404.278035px;}
.x43_c01161{left:413.762235px;}
.x28_c01161{left:416.039235px;}
.x35_c01161{left:424.726485px;}
.x1d_c01161{left:426.553035px;}
.x46_c01161{left:437.061885px;}
.x29_c01161{left:446.803485px;}
.x52_c01161{left:448.298385px;}
.x8_c01161{left:449.511135px;}
.xe_c01161{left:470.652585px;}
.x38_c01161{left:471.662385px;}
.x56_c01161{left:491.957385px;}
.x15_c01161{left:493.526535px;}
.x53_c01161{left:504.416535px;}
.x1e_c01161{left:513.514635px;}
.x3e_c01161{left:515.049135px;}
.x16_c01161{left:519.261585px;}
.x2f_c01161{left:523.488885px;}
.x64_c01161{left:526.429185px;}
.x39_c01161{left:536.883585px;}
.x17_c01161{left:538.150785px;}
.x1f_c01161{left:547.021185px;}
.x3f_c01161{left:548.639835px;}
.x68_c01161{left:553.010685px;}
.xf_c01161{left:556.837035px;}
.x9_c01161{left:559.203135px;}
.x57_c01161{left:560.425785px;}
.x3a_c01161{left:567.974535px;}
.x2a_c01161{left:570.301035px;}
.x62_c01161{left:571.979085px;}
.x5f_c01161{left:578.671485px;}
.x58_c01161{left:580.894035px;}
.x30_c01161{left:590.848485px;}
.x10_c01161{left:603.139335px;}
.x54_c01161{left:624.132285px;}
.x59_c01161{left:633.656085px;}
.x2b_c01161{left:635.056935px;}
.x6b_c01161{left:642.491835px;}
.x44_c01161{left:645.748935px;}
.x36_c01161{left:647.595285px;}
.x6c_c01161{left:654.965835px;}
.x18_c01161{left:658.415985px;}
.x5a_c01161{left:669.370335px;}
.x11_c01161{left:679.829685px;}
.x19_c01161{left:683.260035px;}
.x65_c01161{left:691.363185px;}
.x40_c01161{left:692.481885px;}
.x47_c01161{left:693.956985px;}
.xa_c01161{left:702.401685px;}
.x48_c01161{left:704.342085px;}
.x2_c01161{left:706.470585px;}
.x20_c01161{left:707.891235px;}
.x21_c01161{left:709.420785px;}
.x2c_c01161{left:713.529285px;}
.x63_c01161{left:723.399585px;}
.xb_c01161{left:737.823885px;}
.x49_c01161{left:760.237485px;}
@media print{
.v2_c01161{vertical-align:-20.289280pt;}
.v1_c01161{vertical-align:-3.801600pt;}
.v0_c01161{vertical-align:0.000000pt;}
.ls18_c01161{letter-spacing:-2.544080pt;}
.ls5_c01161{letter-spacing:-2.334646pt;}
.lsb_c01161{letter-spacing:-2.285360pt;}
.ls1f_c01161{letter-spacing:-2.063600pt;}
.lsf_c01161{letter-spacing:-1.316198pt;}
.ls21_c01161{letter-spacing:-0.373543pt;}
.lsa_c01161{letter-spacing:-0.187687pt;}
.ls22_c01161{letter-spacing:-0.113397pt;}
.ls9_c01161{letter-spacing:0.000000pt;}
.ls7_c01161{letter-spacing:0.100056pt;}
.lse_c01161{letter-spacing:0.306839pt;}
.ls1_c01161{letter-spacing:0.400791pt;}
.ls14_c01161{letter-spacing:0.506952pt;}
.ls0_c01161{letter-spacing:0.560315pt;}
.ls6_c01161{letter-spacing:1.334084pt;}
.ls1a_c01161{letter-spacing:1.347424pt;}
.ls11_c01161{letter-spacing:1.363824pt;}
.ls17_c01161{letter-spacing:1.439152pt;}
.ls16_c01161{letter-spacing:1.628000pt;}
.ls3_c01161{letter-spacing:1.734309pt;}
.ls1c_c01161{letter-spacing:1.747649pt;}
.ls20_c01161{letter-spacing:1.865609pt;}
.ls15_c01161{letter-spacing:2.252800pt;}
.ls8_c01161{letter-spacing:2.828257pt;}
.ls12_c01161{letter-spacing:2.948000pt;}
.ls1b_c01161{letter-spacing:3.238400pt;}
.ls19_c01161{letter-spacing:3.273609pt;}
.ls1e_c01161{letter-spacing:3.326400pt;}
.ls4_c01161{letter-spacing:3.335209pt;}
.ls1d_c01161{letter-spacing:3.379209pt;}
.ls13_c01161{letter-spacing:3.520000pt;}
.lsc_c01161{letter-spacing:4.505609pt;}
.ls2_c01161{letter-spacing:17.199854pt;}
.ls10_c01161{letter-spacing:50.688176pt;}
.lsd_c01161{letter-spacing:55.756800pt;}
.ws0_c01161{word-spacing:-16.676044pt;}
.ws1_c01161{word-spacing:0.000000pt;}
._2_c01161{margin-left:-2.268728pt;}
._1_c01161{width:0.967912pt;}
._4_c01161{width:5.869864pt;}
._5_c01161{width:21.639068pt;}
._0_c01161{width:24.874068pt;}
._3_c01161{width:27.910782pt;}
.fsf_c01161{font-size:10.032000pt;}
.fse_c01161{font-size:10.384176pt;}
.fs1a_c01161{font-size:19.712000pt;}
.fs7_c01161{font-size:20.592000pt;}
.fs13_c01161{font-size:24.640000pt;}
.fs12_c01161{font-size:32.560000pt;}
.fs17_c01161{font-size:37.312176pt;}
.fs18_c01161{font-size:40.656000pt;}
.fs11_c01161{font-size:45.056000pt;}
.fs9_c01161{font-size:46.112176pt;}
.fsa_c01161{font-size:50.688176pt;}
.fs4_c01161{font-size:55.756800pt;}
.fs8_c01161{font-size:57.728000pt;}
.fsc_c01161{font-size:58.960000pt;}
.fs6_c01161{font-size:59.136000pt;}
.fs2_c01161{font-size:60.544176pt;}
.fs10_c01161{font-size:64.768000pt;}
.fs1_c01161{font-size:65.296000pt;}
.fs15_c01161{font-size:65.472176pt;}
.fsb_c01161{font-size:66.528000pt;}
.fs0_c01161{font-size:66.704176pt;}
.fs16_c01161{font-size:67.584176pt;}
.fs19_c01161{font-size:70.048000pt;}
.fsd_c01161{font-size:70.400000pt;}
.fs5_c01161{font-size:70.752176pt;}
.fs14_c01161{font-size:72.688000pt;}
.fs3_c01161{font-size:90.112176pt;}
.y0_c01161{bottom:0.000000pt;}
.y25_c01161{bottom:52.188088pt;}
.y1_c01161{bottom:68.000000pt;}
.y24_c01161{bottom:99.713720pt;}
.y23_c01161{bottom:138.992520pt;}
.y22_c01161{bottom:163.386120pt;}
.y21_c01161{bottom:198.555320pt;}
.y20_c01161{bottom:226.746120pt;}
.y1f_c01161{bottom:254.945720pt;}
.y1e_c01161{bottom:284.086920pt;}
.y1c_c01161{bottom:311.965320pt;}
.y1d_c01161{bottom:315.454520pt;}
.y1b_c01161{bottom:341.110920pt;}
.y1a_c01161{bottom:370.260920pt;}
.y19_c01161{bottom:426.646920pt;}
.y18_c01161{bottom:445.338120pt;}
.y16_c01161{bottom:454.842120pt;}
.y17_c01161{bottom:459.598520pt;}
.y15_c01161{bottom:483.041720pt;}
.y14_c01161{bottom:511.232520pt;}
.y13_c01161{bottom:526.122120pt;}
.y12_c01161{bottom:535.309320pt;}
.y11_c01161{bottom:540.378120pt;}
.y10_c01161{bottom:569.206920pt;}
.yf_c01161{bottom:624.963720pt;}
.yd_c01161{bottom:654.747320pt;}
.ye_c01161{bottom:659.816120pt;}
.yc_c01161{bottom:683.254920pt;}
.yb_c01161{bottom:683.892920pt;}
.ya_c01161{bottom:702.584120pt;}
.y9_c01161{bottom:713.988920pt;}
.y7_c01161{bottom:740.912520pt;}
.y8_c01161{bottom:741.867320pt;}
.y5_c01161{bottom:768.157760pt;}
.y6_c01161{bottom:768.161720pt;}
.y4_c01161{bottom:797.624120pt;}
.y3_c01161{bottom:825.814920pt;}
.y2_c01161{bottom:947.149320pt;}
.hf_c01161{height:10.191501pt;}
.h10_c01161{height:10.463063pt;}
.h1b_c01161{height:20.559000pt;}
.h8_c01161{height:21.476813pt;}
.h14_c01161{height:25.698750pt;}
.hb_c01161{height:33.758325pt;}
.h13_c01161{height:33.959063pt;}
.h18_c01161{height:36.619860pt;}
.h5_c01161{height:37.134029pt;}
.h19_c01161{height:39.901641pt;}
.h12_c01161{height:44.220000pt;}
.ha_c01161{height:48.093559pt;}
.h9_c01161{height:60.208500pt;}
.hd_c01161{height:61.493438pt;}
.h7_c01161{height:61.677000pt;}
.h11_c01161{height:63.566250pt;}
.h3_c01161{height:64.084453pt;}
.hc_c01161{height:65.293594pt;}
.h2_c01161{height:65.466501pt;}
.h16_c01161{height:65.983677pt;}
.h17_c01161{height:66.330173pt;}
.h1a_c01161{height:68.748281pt;}
.he_c01161{height:69.059375pt;}
.h6_c01161{height:69.439391pt;}
.h15_c01161{height:71.339297pt;}
.h4_c01161{height:88.440173pt;}
.h1_c01161{height:986.666667pt;}
.h0_c01161{height:1122.666667pt;}
.w1_c01161{width:689.333333pt;}
.w0_c01161{width:793.333333pt;}
.x0_c01161{left:0.000000pt;}
.x1_c01161{left:52.000000pt;}
.x4e_c01161{left:91.539053pt;}
.x22_c01161{left:92.489453pt;}
.x4f_c01161{left:140.915853pt;}
.x12_c01161{left:141.966397pt;}
.x1a_c01161{left:142.988253pt;}
.x3_c01161{left:144.594253pt;}
.x4a_c01161{left:163.074253pt;}
.x50_c01161{left:169.441053pt;}
.x5b_c01161{left:171.139453pt;}
.x4_c01161{left:172.732253pt;}
.x4b_c01161{left:181.558653pt;}
.x31_c01161{left:182.579453pt;}
.x69_c01161{left:190.305853pt;}
.x23_c01161{left:191.247453pt;}
.x3b_c01161{left:199.801053pt;}
.x5_c01161{left:202.128653pt;}
.x32_c01161{left:210.743853pt;}
.x2d_c01161{left:212.657853pt;}
.x41_c01161{left:220.278653pt;}
.x37_c01161{left:221.242253pt;}
.x1b_c01161{left:223.794253pt;}
.x24_c01161{left:230.741853pt;}
.xc_c01161{left:231.938653pt;}
.x2e_c01161{left:238.886253pt;}
.x25_c01161{left:240.967453pt;}
.x66_c01161{left:249.389053pt;}
.x42_c01161{left:250.665053pt;}
.x13_c01161{left:252.235853pt;}
.x5c_c01161{left:259.214253pt;}
.x6a_c01161{left:260.133853pt;}
.x4c_c01161{left:269.791853pt;}
.x67_c01161{left:280.189053pt;}
.x45_c01161{left:281.271453pt;}
.x1c_c01161{left:288.808653pt;}
.x60_c01161{left:297.375453pt;}
.x33_c01161{left:298.369853pt;}
.x4d_c01161{left:300.055053pt;}
.xd_c01161{left:301.014253pt;}
.x14_c01161{left:302.435453pt;}
.x3c_c01161{left:309.435853pt;}
.x51_c01161{left:320.321453pt;}
.x26_c01161{left:321.773453pt;}
.x55_c01161{left:329.165453pt;}
.x6_c01161{left:330.234653pt;}
.x5d_c01161{left:338.304253pt;}
.x3d_c01161{left:339.245853pt;}
.x27_c01161{left:340.372253pt;}
.x34_c01161{left:349.238253pt;}
.x61_c01161{left:356.933853pt;}
.x5e_c01161{left:358.372653pt;}
.x7_c01161{left:359.358253pt;}
.x43_c01161{left:367.788653pt;}
.x28_c01161{left:369.812653pt;}
.x35_c01161{left:377.534653pt;}
.x1d_c01161{left:379.158253pt;}
.x46_c01161{left:388.499453pt;}
.x29_c01161{left:397.158653pt;}
.x52_c01161{left:398.487453pt;}
.x8_c01161{left:399.565453pt;}
.xe_c01161{left:418.357853pt;}
.x38_c01161{left:419.255453pt;}
.x56_c01161{left:437.295453pt;}
.x15_c01161{left:438.690253pt;}
.x53_c01161{left:448.370253pt;}
.x1e_c01161{left:456.457453pt;}
.x3e_c01161{left:457.821453pt;}
.x16_c01161{left:461.565853pt;}
.x2f_c01161{left:465.323453pt;}
.x64_c01161{left:467.937053pt;}
.x39_c01161{left:477.229853pt;}
.x17_c01161{left:478.356253pt;}
.x1f_c01161{left:486.241053pt;}
.x3f_c01161{left:487.679853pt;}
.x68_c01161{left:491.565053pt;}
.xf_c01161{left:494.966253pt;}
.x9_c01161{left:497.069453pt;}
.x57_c01161{left:498.156253pt;}
.x3a_c01161{left:504.866253pt;}
.x2a_c01161{left:506.934253pt;}
.x62_c01161{left:508.425853pt;}
.x5f_c01161{left:514.374653pt;}
.x58_c01161{left:516.350253pt;}
.x30_c01161{left:525.198653pt;}
.x10_c01161{left:536.123853pt;}
.x54_c01161{left:554.784253pt;}
.x59_c01161{left:563.249853pt;}
.x2b_c01161{left:564.495053pt;}
.x6b_c01161{left:571.103853pt;}
.x44_c01161{left:573.999053pt;}
.x36_c01161{left:575.640253pt;}
.x6c_c01161{left:582.191853pt;}
.x18_c01161{left:585.258653pt;}
.x5a_c01161{left:594.995853pt;}
.x11_c01161{left:604.293053pt;}
.x19_c01161{left:607.342253pt;}
.x65_c01161{left:614.545053pt;}
.x40_c01161{left:615.539453pt;}
.x47_c01161{left:616.850653pt;}
.xa_c01161{left:624.357053pt;}
.x48_c01161{left:626.081853pt;}
.x2_c01161{left:627.973853pt;}
.x20_c01161{left:629.236653pt;}
.x21_c01161{left:630.596253pt;}
.x2c_c01161{left:634.248253pt;}
.x63_c01161{left:643.021853pt;}
.xb_c01161{left:655.843453pt;}
.x49_c01161{left:675.766653pt;}
}





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

.ir_c01162:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01162{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01162;src:url('chunks/assets/font_cc20810f9623f538040a5854.woff2')format("woff");}.ff1_c01162{font-family:ff1_c01162;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01162;src:url('chunks/assets/font_a499c428d615ed619c51c4a6.woff2')format("woff");}.ff2_c01162{font-family:ff2_c01162;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01162;src:url('chunks/assets/font_82002fde38bceb90a19dc7d1.woff2')format("woff");}.ff3_c01162{font-family:ff3_c01162;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01162;src:url('chunks/assets/font_db159a0cbda826ac8f855878.woff2')format("woff");}.ff4_c01162{font-family:ff4_c01162;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01162;src:url('chunks/assets/font_c50192f8949a9a6979142885.woff2')format("woff");}.ff5_c01162{font-family:ff5_c01162;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m81_c01162{transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);}
.m7e_c01162{transform:matrix(0.164774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164774,0.000000,0.000000,0.250000,0,0);}
.m2d_c01162{transform:matrix(0.165722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165722,0.000000,0.000000,0.250000,0,0);}
.m15_c01162{transform:matrix(0.195122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195122,0.000000,0.000000,0.250000,0,0);}
.m64_c01162{transform:matrix(0.204399,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204399,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204399,0.000000,0.000000,0.250000,0,0);}
.m44_c01162{transform:matrix(0.218991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218991,0.000000,0.000000,0.250000,0,0);}
.m68_c01162{transform:matrix(0.237249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237249,0.000000,0.000000,0.250000,0,0);}
.m27_c01162{transform:matrix(0.248397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248397,0.000000,0.000000,0.250000,0,0);}
.m0_c01162{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01162{transform:matrix(0.250124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250124,0.000000,0.000000,0.250000,0,0);}
.m29_c01162{transform:matrix(0.250503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250503,0.000000,0.000000,0.250000,0,0);}
.md_c01162{transform:matrix(0.250861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250861,0.000000,0.000000,0.250000,0,0);}
.m4a_c01162{transform:matrix(0.253550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253550,0.000000,0.000000,0.250000,0,0);}
.m51_c01162{transform:matrix(0.253642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253642,0.000000,0.000000,0.250000,0,0);}
.m38_c01162{transform:matrix(0.253861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253861,0.000000,0.000000,0.250000,0,0);}
.m3a_c01162{transform:matrix(0.254521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254521,0.000000,0.000000,0.250000,0,0);}
.m7c_c01162{transform:matrix(0.255745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255745,0.000000,0.000000,0.250000,0,0);}
.m28_c01162{transform:matrix(0.256058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256058,0.000000,0.000000,0.250000,0,0);}
.m2f_c01162{transform:matrix(0.256691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256691,0.000000,0.000000,0.250000,0,0);}
.m8_c01162{transform:matrix(0.256703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256703,0.000000,0.000000,0.250000,0,0);}
.m7b_c01162{transform:matrix(0.258555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258555,0.000000,0.000000,0.250000,0,0);}
.m39_c01162{transform:matrix(0.259004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259004,0.000000,0.000000,0.250000,0,0);}
.m10_c01162{transform:matrix(0.259299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259299,0.000000,0.000000,0.250000,0,0);}
.m2e_c01162{transform:matrix(0.260666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260666,0.000000,0.000000,0.250000,0,0);}
.m12_c01162{transform:matrix(0.260941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260941,0.000000,0.000000,0.250000,0,0);}
.m80_c01162{transform:matrix(0.261045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261045,0.000000,0.000000,0.250000,0,0);}
.ma_c01162{transform:matrix(0.261191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261191,0.000000,0.000000,0.250000,0,0);}
.m52_c01162{transform:matrix(0.261882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261882,0.000000,0.000000,0.250000,0,0);}
.m3d_c01162{transform:matrix(0.262948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262948,0.000000,0.000000,0.250000,0,0);}
.m1_c01162{transform:matrix(0.263151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263151,0.000000,0.000000,0.250000,0,0);}
.m6_c01162{transform:matrix(0.263514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263514,0.000000,0.000000,0.250000,0,0);}
.m3b_c01162{transform:matrix(0.263688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263688,0.000000,0.000000,0.250000,0,0);}
.m74_c01162{transform:matrix(0.263841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263841,0.000000,0.000000,0.250000,0,0);}
.mb_c01162{transform:matrix(0.265472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265472,0.000000,0.000000,0.250000,0,0);}
.m79_c01162{transform:matrix(0.265494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265494,0.000000,0.000000,0.250000,0,0);}
.m5e_c01162{transform:matrix(0.269974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269974,0.000000,0.000000,0.250000,0,0);}
.m65_c01162{transform:matrix(0.270287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270287,0.000000,0.000000,0.250000,0,0);}
.m16_c01162{transform:matrix(0.270830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270830,0.000000,0.000000,0.250000,0,0);}
.m57_c01162{transform:matrix(0.273274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273274,0.000000,0.000000,0.250000,0,0);}
.me_c01162{transform:matrix(0.273381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273381,0.000000,0.000000,0.250000,0,0);}
.m53_c01162{transform:matrix(0.274836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274836,0.000000,0.000000,0.250000,0,0);}
.m5a_c01162{transform:matrix(0.274897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274897,0.000000,0.000000,0.250000,0,0);}
.m1b_c01162{transform:matrix(0.275114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275114,0.000000,0.000000,0.250000,0,0);}
.m32_c01162{transform:matrix(0.275623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275623,0.000000,0.000000,0.250000,0,0);}
.m40_c01162{transform:matrix(0.278883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278883,0.000000,0.000000,0.250000,0,0);}
.m4b_c01162{transform:matrix(0.279545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279545,0.000000,0.000000,0.250000,0,0);}
.m78_c01162{transform:matrix(0.279941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279941,0.000000,0.000000,0.250000,0,0);}
.m3e_c01162{transform:matrix(0.280359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280359,0.000000,0.000000,0.250000,0,0);}
.m3c_c01162{transform:matrix(0.280784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280784,0.000000,0.000000,0.250000,0,0);}
.m17_c01162{transform:matrix(0.281447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281447,0.000000,0.000000,0.250000,0,0);}
.m23_c01162{transform:matrix(0.284451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284451,0.000000,0.000000,0.250000,0,0);}
.m19_c01162{transform:matrix(0.284650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284650,0.000000,0.000000,0.250000,0,0);}
.m83_c01162{transform:matrix(0.285289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285289,0.000000,0.000000,0.250000,0,0);}
.m66_c01162{transform:matrix(0.285428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285428,0.000000,0.000000,0.250000,0,0);}
.m26_c01162{transform:matrix(0.286586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286586,0.000000,0.000000,0.250000,0,0);}
.m69_c01162{transform:matrix(0.286969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286969,0.000000,0.000000,0.250000,0,0);}
.m67_c01162{transform:matrix(0.287913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287913,0.000000,0.000000,0.250000,0,0);}
.m11_c01162{transform:matrix(0.288258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288258,0.000000,0.000000,0.250000,0,0);}
.m6a_c01162{transform:matrix(0.288386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288386,0.000000,0.000000,0.250000,0,0);}
.mf_c01162{transform:matrix(0.290036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290036,0.000000,0.000000,0.250000,0,0);}
.m2c_c01162{transform:matrix(0.290349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290349,0.000000,0.000000,0.250000,0,0);}
.m7f_c01162{transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);}
.m72_c01162{transform:matrix(0.290571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290571,0.000000,0.000000,0.250000,0,0);}
.m5d_c01162{transform:matrix(0.291067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291067,0.000000,0.000000,0.250000,0,0);}
.m33_c01162{transform:matrix(0.292417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292417,0.000000,0.000000,0.250000,0,0);}
.m5b_c01162{transform:matrix(0.293968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293968,0.000000,0.000000,0.250000,0,0);}
.m5_c01162{transform:matrix(0.295692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295692,0.000000,0.000000,0.250000,0,0);}
.m45_c01162{transform:matrix(0.296243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296243,0.000000,0.000000,0.250000,0,0);}
.m2_c01162{transform:matrix(0.296348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296348,0.000000,0.000000,0.250000,0,0);}
.m56_c01162{transform:matrix(0.296423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296423,0.000000,0.000000,0.250000,0,0);}
.m55_c01162{transform:matrix(0.296834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296834,0.000000,0.000000,0.250000,0,0);}
.m73_c01162{transform:matrix(0.298119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298119,0.000000,0.000000,0.250000,0,0);}
.m48_c01162{transform:matrix(0.299266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299266,0.000000,0.000000,0.250000,0,0);}
.m22_c01162{transform:matrix(0.299379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299379,0.000000,0.000000,0.250000,0,0);}
.m75_c01162{transform:matrix(0.299616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299616,0.000000,0.000000,0.250000,0,0);}
.m62_c01162{transform:matrix(0.300199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300199,0.000000,0.000000,0.250000,0,0);}
.m18_c01162{transform:matrix(0.300939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300939,0.000000,0.000000,0.250000,0,0);}
.m6c_c01162{transform:matrix(0.300977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300977,0.000000,0.000000,0.250000,0,0);}
.m1e_c01162{transform:matrix(0.302264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302264,0.000000,0.000000,0.250000,0,0);}
.m60_c01162{transform:matrix(0.302364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302364,0.000000,0.000000,0.250000,0,0);}
.m7d_c01162{transform:matrix(0.302971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302971,0.000000,0.000000,0.250000,0,0);}
.m4c_c01162{transform:matrix(0.303171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303171,0.000000,0.000000,0.250000,0,0);}
.m30_c01162{transform:matrix(0.305252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305252,0.000000,0.000000,0.250000,0,0);}
.m6e_c01162{transform:matrix(0.305287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305287,0.000000,0.000000,0.250000,0,0);}
.m9_c01162{transform:matrix(0.306601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306601,0.000000,0.000000,0.250000,0,0);}
.m47_c01162{transform:matrix(0.308916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308916,0.000000,0.000000,0.250000,0,0);}
.m4e_c01162{transform:matrix(0.309150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309150,0.000000,0.000000,0.250000,0,0);}
.m6b_c01162{transform:matrix(0.310505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310505,0.000000,0.000000,0.250000,0,0);}
.m1f_c01162{transform:matrix(0.310887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310887,0.000000,0.000000,0.250000,0,0);}
.m31_c01162{transform:matrix(0.313832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313832,0.000000,0.000000,0.250000,0,0);}
.m42_c01162{transform:matrix(0.313961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313961,0.000000,0.000000,0.250000,0,0);}
.m76_c01162{transform:matrix(0.315632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315632,0.000000,0.000000,0.250000,0,0);}
.m2b_c01162{transform:matrix(0.316646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316646,0.000000,0.000000,0.250000,0,0);}
.m5c_c01162{transform:matrix(0.317041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317041,0.000000,0.000000,0.250000,0,0);}
.m36_c01162{transform:matrix(0.319347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319347,0.000000,0.000000,0.250000,0,0);}
.m41_c01162{transform:matrix(0.322221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322221,0.000000,0.000000,0.250000,0,0);}
.m4f_c01162{transform:matrix(0.322419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322419,0.000000,0.000000,0.250000,0,0);}
.m37_c01162{transform:matrix(0.323530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323530,0.000000,0.000000,0.250000,0,0);}
.m20_c01162{transform:matrix(0.323915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323915,0.000000,0.000000,0.250000,0,0);}
.m54_c01162{transform:matrix(0.324835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324835,0.000000,0.000000,0.250000,0,0);}
.m50_c01162{transform:matrix(0.325710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325710,0.000000,0.000000,0.250000,0,0);}
.m46_c01162{transform:matrix(0.326074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326074,0.000000,0.000000,0.250000,0,0);}
.m4d_c01162{transform:matrix(0.326714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326714,0.000000,0.000000,0.250000,0,0);}
.m14_c01162{transform:matrix(0.328619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328619,0.000000,0.000000,0.250000,0,0);}
.m71_c01162{transform:matrix(0.329491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329491,0.000000,0.000000,0.250000,0,0);}
.m35_c01162{transform:matrix(0.329590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329590,0.000000,0.000000,0.250000,0,0);}
.m2a_c01162{transform:matrix(0.330315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330315,0.000000,0.000000,0.250000,0,0);}
.mc_c01162{transform:matrix(0.335509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335509,0.000000,0.000000,0.250000,0,0);}
.m3_c01162{transform:matrix(0.336062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336062,0.000000,0.000000,0.250000,0,0);}
.m1c_c01162{transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);}
.m4_c01162{transform:matrix(0.338011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338011,0.000000,0.000000,0.250000,0,0);}
.m34_c01162{transform:matrix(0.339719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339719,0.000000,0.000000,0.250000,0,0);}
.m3f_c01162{transform:matrix(0.339775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339775,0.000000,0.000000,0.250000,0,0);}
.m7_c01162{transform:matrix(0.341839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341839,0.000000,0.000000,0.250000,0,0);}
.m1a_c01162{transform:matrix(0.346529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346529,0.000000,0.000000,0.250000,0,0);}
.m59_c01162{transform:matrix(0.347412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347412,0.000000,0.000000,0.250000,0,0);}
.m77_c01162{transform:matrix(0.348153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348153,0.000000,0.000000,0.250000,0,0);}
.m61_c01162{transform:matrix(0.348169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348169,0.000000,0.000000,0.250000,0,0);}
.m43_c01162{transform:matrix(0.353033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353033,0.000000,0.000000,0.250000,0,0);}
.m6f_c01162{transform:matrix(0.358064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358064,0.000000,0.000000,0.250000,0,0);}
.m6d_c01162{transform:matrix(0.360830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360830,0.000000,0.000000,0.250000,0,0);}
.m49_c01162{transform:matrix(0.363298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363298,0.000000,0.000000,0.250000,0,0);}
.m13_c01162{transform:matrix(0.365424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365424,0.000000,0.000000,0.250000,0,0);}
.m21_c01162{transform:matrix(0.367436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367436,0.000000,0.000000,0.250000,0,0);}
.m5f_c01162{transform:matrix(0.378957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378957,0.000000,0.000000,0.250000,0,0);}
.m63_c01162{transform:matrix(0.390139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390139,0.000000,0.000000,0.250000,0,0);}
.m58_c01162{transform:matrix(0.396432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396432,0.000000,0.000000,0.250000,0,0);}
.m25_c01162{transform:matrix(0.397503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397503,0.000000,0.000000,0.250000,0,0);}
.m70_c01162{transform:matrix(0.402725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402725,0.000000,0.000000,0.250000,0,0);}
.m82_c01162{transform:matrix(0.407827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407827,0.000000,0.000000,0.250000,0,0);}
.m1d_c01162{transform:matrix(0.409017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409017,0.000000,0.000000,0.250000,0,0);}
.m7a_c01162{transform:matrix(0.412152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412152,0.000000,0.000000,0.250000,0,0);}
.v0_c01162{vertical-align:0.000000px;}
.ls13_c01162{letter-spacing:-3.215527px;}
.lse_c01162{letter-spacing:-2.626477px;}
.ls18_c01162{letter-spacing:-2.577967px;}
.lsf_c01162{letter-spacing:-2.494800px;}
.ls10_c01162{letter-spacing:-2.371730px;}
.ls7_c01162{letter-spacing:-1.086805px;}
.ls16_c01162{letter-spacing:-0.066370px;}
.ls2_c01162{letter-spacing:0.000000px;}
.ls15_c01162{letter-spacing:0.186278px;}
.ls1a_c01162{letter-spacing:0.487873px;}
.ls6_c01162{letter-spacing:0.714780px;}
.ls12_c01162{letter-spacing:1.080608px;}
.ls4_c01162{letter-spacing:2.605013px;}
.ls1d_c01162{letter-spacing:2.626477px;}
.ls1_c01162{letter-spacing:3.077898px;}
.ls8_c01162{letter-spacing:3.204302px;}
.ls19_c01162{letter-spacing:3.276900px;}
.ls14_c01162{letter-spacing:3.425400px;}
.ls0_c01162{letter-spacing:3.559078px;}
.ls5_c01162{letter-spacing:3.752110px;}
.ls17_c01162{letter-spacing:3.801610px;}
.lsc_c01162{letter-spacing:3.880810px;}
.lsd_c01162{letter-spacing:3.900610px;}
.lsb_c01162{letter-spacing:3.910500px;}
.lsa_c01162{letter-spacing:3.960000px;}
.ls3_c01162{letter-spacing:4.148110px;}
.ls11_c01162{letter-spacing:4.336200px;}
.ls1c_c01162{letter-spacing:29.937798px;}
.ls9_c01162{letter-spacing:58.449798px;}
.ls1b_c01162{letter-spacing:62.726400px;}
.sc__c01162{text-shadow:none;}
.sc0_c01162{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01162{-webkit-text-stroke:0px transparent;}
.sc0_c01162{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01162{word-spacing:-20.740550px;}
.ws1_c01162{word-spacing:0.000000px;}
._0_c01162{margin-left:-10.121414px;}
._3_c01162{width:26.790055px;}
._1_c01162{width:28.904731px;}
._2_c01162{width:30.680962px;}
._4_c01162{width:35.391550px;}
.fc0_c01162{color:transparent;}
.fs2_c01162{font-size:22.176000px;}
.fs19_c01162{font-size:22.374000px;}
.fs17_c01162{font-size:25.146000px;}
.fs1a_c01162{font-size:27.720000px;}
.fs18_c01162{font-size:29.937798px;}
.fs0_c01162{font-size:44.352000px;}
.fs6_c01162{font-size:58.449798px;}
.fs16_c01162{font-size:62.726400px;}
.fs14_c01162{font-size:65.538000px;}
.fsd_c01162{font-size:67.320000px;}
.fs11_c01162{font-size:68.508000px;}
.fs5_c01162{font-size:69.300000px;}
.fs15_c01162{font-size:69.696198px;}
.fsc_c01162{font-size:71.280000px;}
.fs13_c01162{font-size:72.270000px;}
.fse_c01162{font-size:73.656198px;}
.fs3_c01162{font-size:75.042198px;}
.fs4_c01162{font-size:75.240000px;}
.fs7_c01162{font-size:76.032198px;}
.fsa_c01162{font-size:77.616198px;}
.fsb_c01162{font-size:78.012198px;}
.fs9_c01162{font-size:78.210000px;}
.fs8_c01162{font-size:79.200000px;}
.fs1_c01162{font-size:82.962198px;}
.fsf_c01162{font-size:86.724000px;}
.fs12_c01162{font-size:88.704000px;}
.fs10_c01162{font-size:91.872198px;}
.y0_c01162{bottom:0.000000px;}
.y1c_c01162{bottom:6.327135px;}
.y2_c01162{bottom:45.174735px;}
.y1_c01162{bottom:76.500000px;}
.y1d_c01162{bottom:115.380585px;}
.y1b_c01162{bottom:149.599935px;}
.y1a_c01162{bottom:183.809385px;}
.y19_c01162{bottom:194.149935px;}
.y18_c01162{bottom:217.315935px;}
.y17_c01162{bottom:281.106585px;}
.y16_c01162{bottom:313.182585px;}
.y15_c01162{bottom:376.978185px;}
.y14_c01162{bottom:409.410585px;}
.y13_c01162{bottom:441.486585px;}
.y12_c01162{bottom:474.275385px;}
.y11_c01162{bottom:538.432335px;}
.y10_c01162{bottom:570.146985px;}
.ye_c01162{bottom:601.505235px;}
.yf_c01162{bottom:601.510185px;}
.yd_c01162{bottom:664.597935px;}
.yc_c01162{bottom:697.738185px;}
.yb_c01162{bottom:729.819135px;}
.ya_c01162{bottom:794.322585px;}
.y9_c01162{bottom:826.759935px;}
.y8_c01162{bottom:852.415785px;}
.y7_c01162{bottom:858.835935px;}
.y6_c01162{bottom:890.550585px;}
.y5_c01162{bottom:923.695785px;}
.y4_c01162{bottom:1030.615785px;}
.y3_c01162{bottom:1066.612185px;}
.h19_c01162{height:19.938573px;}
.h1a_c01162{height:21.958857px;}
.h4_c01162{height:23.128875px;}
.h18_c01162{height:26.226492px;}
.h1b_c01162{height:28.911094px;}
.h7_c01162{height:38.927565px;}
.h17_c01162{height:41.775782px;}
.h2_c01162{height:46.257750px;}
.h12_c01162{height:67.236855px;}
.h16_c01162{height:68.354086px;}
.hd_c01162{height:69.957422px;}
.he_c01162{height:70.212656px;}
.hf_c01162{height:72.289530px;}
.h5_c01162{height:73.649813px;}
.h6_c01162{height:73.807207px;}
.h14_c01162{height:74.621444px;}
.h15_c01162{height:75.375352px;}
.hb_c01162{height:76.176054px;}
.hc_c01162{height:76.564706px;}
.ha_c01162{height:76.758838px;}
.h8_c01162{height:79.299207px;}
.h9_c01162{height:79.818750px;}
.h3_c01162{height:81.422860px;}
.h10_c01162{height:85.072518px;}
.h13_c01162{height:87.058125px;}
.h11_c01162{height:95.819832px;}
.h1_c01162{height:1110.000000px;}
.h0_c01162{height:1263.000000px;}
.w1_c01162{width:775.500000px;}
.w0_c01162{width:892.500000px;}
.x0_c01162{left:0.000000px;}
.x2_c01162{left:15.138735px;}
.x1_c01162{left:58.500000px;}
.x5f_c01162{left:98.694735px;}
.x3b_c01162{left:100.128552px;}
.x2c_c01162{left:101.189535px;}
.x5_c01162{left:103.684335px;}
.x60_c01162{left:153.134835px;}
.x47_c01162{left:155.278185px;}
.x27_c01162{left:156.431535px;}
.x20_c01162{left:157.441335px;}
.x6_c01162{left:158.535285px;}
.x4f_c01162{left:179.295585px;}
.x10_c01162{left:188.799585px;}
.x33_c01162{left:190.561785px;}
.x6b_c01162{left:199.214385px;}
.x28_c01162{left:200.946885px;}
.x50_c01162{left:210.213285px;}
.x21_c01162{left:212.911035px;}
.x39_c01162{left:222.682335px;}
.x29_c01162{left:223.716885px;}
.x2d_c01162{left:235.651335px;}
.x58_c01162{left:242.304135px;}
.x67_c01162{left:243.675285px;}
.x11_c01162{left:245.486985px;}
.x61_c01162{left:253.689135px;}
.x2a_c01162{left:256.164135px;}
.x1a_c01162{left:258.535185px;}
.x51_c01162{left:264.841485px;}
.x6c_c01162{left:265.885935px;}
.x34_c01162{left:267.534285px;}
.x7_c01162{left:269.583585px;}
.x1b_c01162{left:278.691585px;}
.x8_c01162{left:291.264585px;}
.x68_c01162{left:298.253985px;}
.x48_c01162{left:300.456735px;}
.x45_c01162{left:301.501185px;}
.x5e_c01162{left:310.500285px;}
.x12_c01162{left:313.148535px;}
.x6d_c01162{left:319.979535px;}
.x3c_c01162{left:325.122585px;}
.x59_c01162{left:332.042685px;}
.x3a_c01162{left:333.527685px;}
.x69_c01162{left:342.808935px;}
.x62_c01162{left:344.071185px;}
.x49_c01162{left:345.090885px;}
.x2b_c01162{left:346.491735px;}
.x13_c01162{left:347.555985px;}
.x6a_c01162{left:364.554285px;}
.x41_c01162{left:367.370835px;}
.x9_c01162{left:368.925135px;}
.x63_c01162{left:377.018385px;}
.x14_c01162{left:378.439035px;}
.x52_c01162{left:389.957685px;}
.x2e_c01162{left:400.832835px;}
.x64_c01162{left:410.292285px;}
.x22_c01162{left:412.826685px;}
.x3d_c01162{left:423.553335px;}
.x1c_c01162{left:424.780935px;}
.x4a_c01162{left:445.615485px;}
.xa_c01162{left:447.392535px;}
.x5a_c01162{left:456.302535px;}
.x42_c01162{left:457.342035px;}
.x46_c01162{left:466.108485px;}
.x3e_c01162{left:467.672685px;}
.x4b_c01162{left:477.656835px;}
.x43_c01162{left:488.210235px;}
.x1d_c01162{left:491.185185px;}
.x53_c01162{left:500.481285px;}
.x35_c01162{left:502.758285px;}
.x65_c01162{left:509.143785px;}
.x4c_c01162{left:511.153485px;}
.x15_c01162{left:512.514735px;}
.x4_c01162{left:514.187835px;}
.x1e_c01162{left:523.142385px;}
.x2f_c01162{left:524.716485px;}
.x36_c01162{left:532.834485px;}
.x30_c01162{left:544.358085px;}
.xb_c01162{left:546.842985px;}
.x6e_c01162{left:552.317685px;}
.x54_c01162{left:555.000585px;}
.x3f_c01162{left:556.035135px;}
.x5b_c01162{left:566.048985px;}
.x44_c01162{left:567.152835px;}
.x16_c01162{left:568.167585px;}
.x4d_c01162{left:575.528235px;}
.xc_c01162{left:579.567435px;}
.x55_c01162{left:587.314185px;}
.x23_c01162{left:600.104985px;}
.xd_c01162{left:611.871135px;}
.x17_c01162{left:613.390785px;}
.x66_c01162{left:621.983985px;}
.x40_c01162{left:633.106635px;}
.x4e_c01162{left:634.111485px;}
.x18_c01162{left:644.679735px;}
.x24_c01162{left:655.604385px;}
.x31_c01162{left:657.886335px;}
.xe_c01162{left:665.920185px;}
.x37_c01162{left:676.592385px;}
.x1f_c01162{left:678.008085px;}
.x25_c01162{left:688.086285px;}
.x5c_c01162{left:689.794035px;}
.x56_c01162{left:697.788285px;}
.x19_c01162{left:699.550485px;}
.xf_c01162{left:700.936485px;}
.x3_c01162{left:704.327235px;}
.x32_c01162{left:709.930635px;}
.x57_c01162{left:711.143385px;}
.x6f_c01162{left:728.359485px;}
.x26_c01162{left:733.482735px;}
.x38_c01162{left:744.635085px;}
.x5d_c01162{left:754.802385px;}
@media print{
.v0_c01162{vertical-align:0.000000pt;}
.ls13_c01162{letter-spacing:-2.858246pt;}
.lse_c01162{letter-spacing:-2.334646pt;}
.ls18_c01162{letter-spacing:-2.291526pt;}
.lsf_c01162{letter-spacing:-2.217600pt;}
.ls10_c01162{letter-spacing:-2.108204pt;}
.ls7_c01162{letter-spacing:-0.966049pt;}
.ls16_c01162{letter-spacing:-0.058995pt;}
.ls2_c01162{letter-spacing:0.000000pt;}
.ls15_c01162{letter-spacing:0.165581pt;}
.ls1a_c01162{letter-spacing:0.433665pt;}
.ls6_c01162{letter-spacing:0.635360pt;}
.ls12_c01162{letter-spacing:0.960540pt;}
.ls4_c01162{letter-spacing:2.315567pt;}
.ls1d_c01162{letter-spacing:2.334646pt;}
.ls1_c01162{letter-spacing:2.735909pt;}
.ls8_c01162{letter-spacing:2.848268pt;}
.ls19_c01162{letter-spacing:2.912800pt;}
.ls14_c01162{letter-spacing:3.044800pt;}
.ls0_c01162{letter-spacing:3.163625pt;}
.ls5_c01162{letter-spacing:3.335209pt;}
.ls17_c01162{letter-spacing:3.379209pt;}
.lsc_c01162{letter-spacing:3.449609pt;}
.lsd_c01162{letter-spacing:3.467209pt;}
.lsb_c01162{letter-spacing:3.476000pt;}
.lsa_c01162{letter-spacing:3.520000pt;}
.ls3_c01162{letter-spacing:3.687209pt;}
.ls11_c01162{letter-spacing:3.854400pt;}
.ls1c_c01162{letter-spacing:26.611376pt;}
.ls9_c01162{letter-spacing:51.955376pt;}
.ls1b_c01162{letter-spacing:55.756800pt;}
.ws0_c01162{word-spacing:-18.436044pt;}
.ws1_c01162{word-spacing:0.000000pt;}
._0_c01162{margin-left:-8.996812pt;}
._3_c01162{width:23.813382pt;}
._1_c01162{width:25.693094pt;}
._2_c01162{width:27.271966pt;}
._4_c01162{width:31.459156pt;}
.fs2_c01162{font-size:19.712000pt;}
.fs19_c01162{font-size:19.888000pt;}
.fs17_c01162{font-size:22.352000pt;}
.fs1a_c01162{font-size:24.640000pt;}
.fs18_c01162{font-size:26.611376pt;}
.fs0_c01162{font-size:39.424000pt;}
.fs6_c01162{font-size:51.955376pt;}
.fs16_c01162{font-size:55.756800pt;}
.fs14_c01162{font-size:58.256000pt;}
.fsd_c01162{font-size:59.840000pt;}
.fs11_c01162{font-size:60.896000pt;}
.fs5_c01162{font-size:61.600000pt;}
.fs15_c01162{font-size:61.952176pt;}
.fsc_c01162{font-size:63.360000pt;}
.fs13_c01162{font-size:64.240000pt;}
.fse_c01162{font-size:65.472176pt;}
.fs3_c01162{font-size:66.704176pt;}
.fs4_c01162{font-size:66.880000pt;}
.fs7_c01162{font-size:67.584176pt;}
.fsa_c01162{font-size:68.992176pt;}
.fsb_c01162{font-size:69.344176pt;}
.fs9_c01162{font-size:69.520000pt;}
.fs8_c01162{font-size:70.400000pt;}
.fs1_c01162{font-size:73.744176pt;}
.fsf_c01162{font-size:77.088000pt;}
.fs12_c01162{font-size:78.848000pt;}
.fs10_c01162{font-size:81.664176pt;}
.y0_c01162{bottom:0.000000pt;}
.y1c_c01162{bottom:5.624120pt;}
.y2_c01162{bottom:40.155320pt;}
.y1_c01162{bottom:68.000000pt;}
.y1d_c01162{bottom:102.560520pt;}
.y1b_c01162{bottom:132.977720pt;}
.y1a_c01162{bottom:163.386120pt;}
.y19_c01162{bottom:172.577720pt;}
.y18_c01162{bottom:193.169720pt;}
.y17_c01162{bottom:249.872520pt;}
.y16_c01162{bottom:278.384520pt;}
.y15_c01162{bottom:335.091720pt;}
.y14_c01162{bottom:363.920520pt;}
.y13_c01162{bottom:392.432520pt;}
.y12_c01162{bottom:421.578120pt;}
.y11_c01162{bottom:478.606520pt;}
.y10_c01162{bottom:506.797320pt;}
.ye_c01162{bottom:534.671320pt;}
.yf_c01162{bottom:534.675720pt;}
.yd_c01162{bottom:590.753720pt;}
.yc_c01162{bottom:620.211720pt;}
.yb_c01162{bottom:648.728120pt;}
.ya_c01162{bottom:706.064520pt;}
.y9_c01162{bottom:734.897720pt;}
.y8_c01162{bottom:757.702920pt;}
.y7_c01162{bottom:763.409720pt;}
.y6_c01162{bottom:791.600520pt;}
.y5_c01162{bottom:821.062920pt;}
.y4_c01162{bottom:916.102920pt;}
.y3_c01162{bottom:948.099720pt;}
.h19_c01162{height:17.723176pt;}
.h1a_c01162{height:19.518984pt;}
.h4_c01162{height:20.559000pt;}
.h18_c01162{height:23.312438pt;}
.h1b_c01162{height:25.698750pt;}
.h7_c01162{height:34.602280pt;}
.h17_c01162{height:37.134029pt;}
.h2_c01162{height:41.118000pt;}
.h12_c01162{height:59.766094pt;}
.h16_c01162{height:60.759188pt;}
.hd_c01162{height:62.184375pt;}
.he_c01162{height:62.411250pt;}
.hf_c01162{height:64.257360pt;}
.h5_c01162{height:65.466501pt;}
.h6_c01162{height:65.606406pt;}
.h14_c01162{height:66.330173pt;}
.h15_c01162{height:67.000313pt;}
.hb_c01162{height:67.712048pt;}
.hc_c01162{height:68.057516pt;}
.ha_c01162{height:68.230078pt;}
.h8_c01162{height:70.488184pt;}
.h9_c01162{height:70.950000pt;}
.h3_c01162{height:72.375876pt;}
.h10_c01162{height:75.620016pt;}
.h13_c01162{height:77.385000pt;}
.h11_c01162{height:85.173184pt;}
.h1_c01162{height:986.666667pt;}
.h0_c01162{height:1122.666667pt;}
.w1_c01162{width:689.333333pt;}
.w0_c01162{width:793.333333pt;}
.x0_c01162{left:0.000000pt;}
.x2_c01162{left:13.456653pt;}
.x1_c01162{left:52.000000pt;}
.x5f_c01162{left:87.728653pt;}
.x3b_c01162{left:89.003157pt;}
.x2c_c01162{left:89.946253pt;}
.x5_c01162{left:92.163853pt;}
.x60_c01162{left:136.119853pt;}
.x47_c01162{left:138.025053pt;}
.x27_c01162{left:139.050253pt;}
.x20_c01162{left:139.947853pt;}
.x6_c01162{left:140.920253pt;}
.x4f_c01162{left:159.373853pt;}
.x10_c01162{left:167.821853pt;}
.x33_c01162{left:169.388253pt;}
.x6b_c01162{left:177.079453pt;}
.x28_c01162{left:178.619453pt;}
.x50_c01162{left:186.856253pt;}
.x21_c01162{left:189.254253pt;}
.x39_c01162{left:197.939853pt;}
.x29_c01162{left:198.859453pt;}
.x2d_c01162{left:209.467853pt;}
.x58_c01162{left:215.381453pt;}
.x67_c01162{left:216.600253pt;}
.x11_c01162{left:218.210653pt;}
.x61_c01162{left:225.501453pt;}
.x2a_c01162{left:227.701453pt;}
.x1a_c01162{left:229.809053pt;}
.x51_c01162{left:235.414653pt;}
.x6c_c01162{left:236.343053pt;}
.x34_c01162{left:237.808253pt;}
.x7_c01162{left:239.629853pt;}
.x1b_c01162{left:247.725853pt;}
.x8_c01162{left:258.901853pt;}
.x68_c01162{left:265.114653pt;}
.x48_c01162{left:267.072653pt;}
.x45_c01162{left:268.001053pt;}
.x5e_c01162{left:276.000253pt;}
.x12_c01162{left:278.354253pt;}
.x6d_c01162{left:284.426253pt;}
.x3c_c01162{left:288.997853pt;}
.x59_c01162{left:295.149053pt;}
.x3a_c01162{left:296.469053pt;}
.x69_c01162{left:304.719053pt;}
.x62_c01162{left:305.841053pt;}
.x49_c01162{left:306.747453pt;}
.x2b_c01162{left:307.992653pt;}
.x13_c01162{left:308.938653pt;}
.x6a_c01162{left:324.048253pt;}
.x41_c01162{left:326.551853pt;}
.x9_c01162{left:327.933453pt;}
.x63_c01162{left:335.127453pt;}
.x14_c01162{left:336.390253pt;}
.x52_c01162{left:346.629053pt;}
.x2e_c01162{left:356.295853pt;}
.x64_c01162{left:364.704253pt;}
.x22_c01162{left:366.957053pt;}
.x3d_c01162{left:376.491853pt;}
.x1c_c01162{left:377.583053pt;}
.x4a_c01162{left:396.102653pt;}
.xa_c01162{left:397.682253pt;}
.x5a_c01162{left:405.602253pt;}
.x42_c01162{left:406.526253pt;}
.x46_c01162{left:414.318653pt;}
.x3e_c01162{left:415.709053pt;}
.x4b_c01162{left:424.583853pt;}
.x43_c01162{left:433.964653pt;}
.x1d_c01162{left:436.609053pt;}
.x53_c01162{left:444.872253pt;}
.x35_c01162{left:446.896253pt;}
.x65_c01162{left:452.572253pt;}
.x4c_c01162{left:454.358653pt;}
.x15_c01162{left:455.568653pt;}
.x4_c01162{left:457.055853pt;}
.x1e_c01162{left:465.015453pt;}
.x2f_c01162{left:466.414653pt;}
.x36_c01162{left:473.630653pt;}
.x30_c01162{left:483.873853pt;}
.xb_c01162{left:486.082653pt;}
.x6e_c01162{left:490.949053pt;}
.x54_c01162{left:493.333853pt;}
.x3f_c01162{left:494.253453pt;}
.x5b_c01162{left:503.154653pt;}
.x44_c01162{left:504.135853pt;}
.x16_c01162{left:505.037853pt;}
.x4d_c01162{left:511.580653pt;}
.xc_c01162{left:515.171053pt;}
.x55_c01162{left:522.057053pt;}
.x23_c01162{left:533.426653pt;}
.xd_c01162{left:543.885453pt;}
.x17_c01162{left:545.236253pt;}
.x66_c01162{left:552.874653pt;}
.x40_c01162{left:562.761453pt;}
.x4e_c01162{left:563.654653pt;}
.x18_c01162{left:573.048653pt;}
.x24_c01162{left:582.759453pt;}
.x31_c01162{left:584.787853pt;}
.xe_c01162{left:591.929053pt;}
.x37_c01162{left:601.415453pt;}
.x1f_c01162{left:602.673853pt;}
.x25_c01162{left:611.632253pt;}
.x5c_c01162{left:613.150253pt;}
.x56_c01162{left:620.256253pt;}
.x19_c01162{left:621.822653pt;}
.xf_c01162{left:623.054653pt;}
.x3_c01162{left:626.068653pt;}
.x32_c01162{left:631.049453pt;}
.x57_c01162{left:632.127453pt;}
.x6f_c01162{left:647.430653pt;}
.x26_c01162{left:651.984653pt;}
.x38_c01162{left:661.897853pt;}
.x5d_c01162{left:670.935453pt;}
}





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

.ir_c01163:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01163{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01163;src:url('chunks/assets/font_fa6479917e1a25821f256b2d.woff2')format("woff");}.ff1_c01163{font-family:ff1_c01163;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01163;src:url('chunks/assets/font_5e6187e751f75bbde6c1ab44.woff2')format("woff");}.ff2_c01163{font-family:ff2_c01163;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01163;src:url('chunks/assets/font_ee3976830cc1b5b2bff44205.woff2')format("woff");}.ff3_c01163{font-family:ff3_c01163;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01163;src:url('chunks/assets/font_7fe2d80f8d3fb1a6cac163c6.woff2')format("woff");}.ff4_c01163{font-family:ff4_c01163;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m42_c01163{transform:matrix(0.081395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081395,0.000000,0.000000,0.250000,0,0);}
.m3e_c01163{transform:matrix(0.108139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108139,0.000000,0.000000,0.250000,0,0);}
.m40_c01163{transform:matrix(0.116280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116280,0.000000,0.000000,0.250000,0,0);}
.m43_c01163{transform:matrix(0.122508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122508,0.000000,0.000000,0.250000,0,0);}
.m44_c01163{transform:matrix(0.125969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125969,0.000000,0.000000,0.250000,0,0);}
.m7f_c01163{transform:matrix(0.130970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130970,0.000000,0.000000,0.250000,0,0);}
.m3b_c01163{transform:matrix(0.150539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150539,0.000000,0.000000,0.250000,0,0);}
.m41_c01163{transform:matrix(0.159884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159884,0.000000,0.000000,0.250000,0,0);}
.m83_c01163{transform:matrix(0.179052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179052,0.000000,0.000000,0.250000,0,0);}
.m5c_c01163{transform:matrix(0.180895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180895,0.000000,0.000000,0.250000,0,0);}
.m22_c01163{transform:matrix(0.183179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183179,0.000000,0.000000,0.250000,0,0);}
.m13_c01163{transform:matrix(0.200625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200625,0.000000,0.000000,0.250000,0,0);}
.m90_c01163{transform:matrix(0.209324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209324,0.000000,0.000000,0.250000,0,0);}
.m29_c01163{transform:matrix(0.233214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233214,0.000000,0.000000,0.250000,0,0);}
.m12_c01163{transform:matrix(0.244148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244148,0.000000,0.000000,0.250000,0,0);}
.m53_c01163{transform:matrix(0.246031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246031,0.000000,0.000000,0.250000,0,0);}
.m0_c01163{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m47_c01163{transform:matrix(0.253407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253407,0.000000,0.000000,0.250000,0,0);}
.m2f_c01163{transform:matrix(0.254462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254462,0.000000,0.000000,0.250000,0,0);}
.m1_c01163{transform:matrix(0.255887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255887,0.000000,0.000000,0.250000,0,0);}
.m9a_c01163{transform:matrix(0.260941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260941,0.000000,0.000000,0.250000,0,0);}
.m7_c01163{transform:matrix(0.262435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262435,0.000000,0.000000,0.250000,0,0);}
.m9e_c01163{transform:matrix(0.264377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264377,0.000000,0.000000,0.250000,0,0);}
.m2_c01163{transform:matrix(0.264831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264831,0.000000,0.000000,0.250000,0,0);}
.m96_c01163{transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265634,0.000000,0.000000,0.250000,0,0);}
.m6e_c01163{transform:matrix(0.266331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266331,0.000000,0.000000,0.250000,0,0);}
.m19_c01163{transform:matrix(0.267283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267283,0.000000,0.000000,0.250000,0,0);}
.m27_c01163{transform:matrix(0.267770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267770,0.000000,0.000000,0.250000,0,0);}
.m69_c01163{transform:matrix(0.267824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267824,0.000000,0.000000,0.250000,0,0);}
.m4b_c01163{transform:matrix(0.268070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268070,0.000000,0.000000,0.250000,0,0);}
.m85_c01163{transform:matrix(0.268168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268168,0.000000,0.000000,0.250000,0,0);}
.m6f_c01163{transform:matrix(0.269114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269114,0.000000,0.000000,0.250000,0,0);}
.m71_c01163{transform:matrix(0.269735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269735,0.000000,0.000000,0.250000,0,0);}
.m7e_c01163{transform:matrix(0.270702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270702,0.000000,0.000000,0.250000,0,0);}
.m75_c01163{transform:matrix(0.270789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270789,0.000000,0.000000,0.250000,0,0);}
.m2a_c01163{transform:matrix(0.271395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271395,0.000000,0.000000,0.250000,0,0);}
.m48_c01163{transform:matrix(0.271440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271440,0.000000,0.000000,0.250000,0,0);}
.m5b_c01163{transform:matrix(0.271616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271616,0.000000,0.000000,0.250000,0,0);}
.m86_c01163{transform:matrix(0.271619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271619,0.000000,0.000000,0.250000,0,0);}
.m39_c01163{transform:matrix(0.272187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272187,0.000000,0.000000,0.250000,0,0);}
.m7d_c01163{transform:matrix(0.273396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273396,0.000000,0.000000,0.250000,0,0);}
.m8d_c01163{transform:matrix(0.277082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277082,0.000000,0.000000,0.250000,0,0);}
.m95_c01163{transform:matrix(0.277625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277625,0.000000,0.000000,0.250000,0,0);}
.m1d_c01163{transform:matrix(0.278367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278367,0.000000,0.000000,0.250000,0,0);}
.md_c01163{transform:matrix(0.278950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278950,0.000000,0.000000,0.250000,0,0);}
.m82_c01163{transform:matrix(0.279462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279462,0.000000,0.000000,0.250000,0,0);}
.m8f_c01163{transform:matrix(0.280204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280204,0.000000,0.000000,0.250000,0,0);}
.m9d_c01163{transform:matrix(0.280816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280816,0.000000,0.000000,0.250000,0,0);}
.m9f_c01163{transform:matrix(0.281356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281356,0.000000,0.000000,0.250000,0,0);}
.m38_c01163{transform:matrix(0.281844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281844,0.000000,0.000000,0.250000,0,0);}
.m3a_c01163{transform:matrix(0.282595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282595,0.000000,0.000000,0.250000,0,0);}
.m50_c01163{transform:matrix(0.283338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283338,0.000000,0.000000,0.250000,0,0);}
.m59_c01163{transform:matrix(0.284486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284486,0.000000,0.000000,0.250000,0,0);}
.m63_c01163{transform:matrix(0.285128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285128,0.000000,0.000000,0.250000,0,0);}
.m32_c01163{transform:matrix(0.286316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286316,0.000000,0.000000,0.250000,0,0);}
.m28_c01163{transform:matrix(0.286468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286468,0.000000,0.000000,0.250000,0,0);}
.m91_c01163{transform:matrix(0.287198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287198,0.000000,0.000000,0.250000,0,0);}
.m6_c01163{transform:matrix(0.287603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287603,0.000000,0.000000,0.250000,0,0);}
.m16_c01163{transform:matrix(0.287722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287722,0.000000,0.000000,0.250000,0,0);}
.m3_c01163{transform:matrix(0.289490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289490,0.000000,0.000000,0.250000,0,0);}
.m4c_c01163{transform:matrix(0.289861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289861,0.000000,0.000000,0.250000,0,0);}
.m18_c01163{transform:matrix(0.290086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290086,0.000000,0.000000,0.250000,0,0);}
.m58_c01163{transform:matrix(0.290624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290624,0.000000,0.000000,0.250000,0,0);}
.m6b_c01163{transform:matrix(0.292078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292078,0.000000,0.000000,0.250000,0,0);}
.m1c_c01163{transform:matrix(0.295200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295200,0.000000,0.000000,0.250000,0,0);}
.m84_c01163{transform:matrix(0.295289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295289,0.000000,0.000000,0.250000,0,0);}
.m17_c01163{transform:matrix(0.295449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295449,0.000000,0.000000,0.250000,0,0);}
.m9_c01163{transform:matrix(0.295967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295967,0.000000,0.000000,0.250000,0,0);}
.m15_c01163{transform:matrix(0.296448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296448,0.000000,0.000000,0.250000,0,0);}
.m61_c01163{transform:matrix(0.297838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297838,0.000000,0.000000,0.250000,0,0);}
.m81_c01163{transform:matrix(0.297853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297853,0.000000,0.000000,0.250000,0,0);}
.m21_c01163{transform:matrix(0.298120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298120,0.000000,0.000000,0.250000,0,0);}
.m37_c01163{transform:matrix(0.299096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299096,0.000000,0.000000,0.250000,0,0);}
.m26_c01163{transform:matrix(0.299728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299728,0.000000,0.000000,0.250000,0,0);}
.m97_c01163{transform:matrix(0.299768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299768,0.000000,0.000000,0.250000,0,0);}
.m78_c01163{transform:matrix(0.300452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300452,0.000000,0.000000,0.250000,0,0);}
.m36_c01163{transform:matrix(0.301159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301159,0.000000,0.000000,0.250000,0,0);}
.mc_c01163{transform:matrix(0.301324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301324,0.000000,0.000000,0.250000,0,0);}
.m8_c01163{transform:matrix(0.301707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301707,0.000000,0.000000,0.250000,0,0);}
.m54_c01163{transform:matrix(0.302559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302559,0.000000,0.000000,0.250000,0,0);}
.m70_c01163{transform:matrix(0.302744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302744,0.000000,0.000000,0.250000,0,0);}
.m11_c01163{transform:matrix(0.305192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305192,0.000000,0.000000,0.250000,0,0);}
.m67_c01163{transform:matrix(0.306180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306180,0.000000,0.000000,0.250000,0,0);}
.m92_c01163{transform:matrix(0.306549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306549,0.000000,0.000000,0.250000,0,0);}
.m66_c01163{transform:matrix(0.306776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306776,0.000000,0.000000,0.250000,0,0);}
.m64_c01163{transform:matrix(0.307129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307129,0.000000,0.000000,0.250000,0,0);}
.m93_c01163{transform:matrix(0.307609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307609,0.000000,0.000000,0.250000,0,0);}
.m7a_c01163{transform:matrix(0.307623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307623,0.000000,0.000000,0.250000,0,0);}
.m55_c01163{transform:matrix(0.308214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308214,0.000000,0.000000,0.250000,0,0);}
.m52_c01163{transform:matrix(0.308757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308757,0.000000,0.000000,0.250000,0,0);}
.m8b_c01163{transform:matrix(0.308893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308893,0.000000,0.000000,0.250000,0,0);}
.ma_c01163{transform:matrix(0.310566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310566,0.000000,0.000000,0.250000,0,0);}
.m1b_c01163{transform:matrix(0.310781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310781,0.000000,0.000000,0.250000,0,0);}
.m6a_c01163{transform:matrix(0.310961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310961,0.000000,0.000000,0.250000,0,0);}
.m8a_c01163{transform:matrix(0.311217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311217,0.000000,0.000000,0.250000,0,0);}
.m5f_c01163{transform:matrix(0.311563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311563,0.000000,0.000000,0.250000,0,0);}
.m6d_c01163{transform:matrix(0.312395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312395,0.000000,0.000000,0.250000,0,0);}
.m31_c01163{transform:matrix(0.312505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312505,0.000000,0.000000,0.250000,0,0);}
.m2d_c01163{transform:matrix(0.313150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313150,0.000000,0.000000,0.250000,0,0);}
.m7b_c01163{transform:matrix(0.313546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313546,0.000000,0.000000,0.250000,0,0);}
.m73_c01163{transform:matrix(0.314188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314188,0.000000,0.000000,0.250000,0,0);}
.m46_c01163{transform:matrix(0.314607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314607,0.000000,0.000000,0.250000,0,0);}
.m57_c01163{transform:matrix(0.316857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316857,0.000000,0.000000,0.250000,0,0);}
.m3c_c01163{transform:matrix(0.317452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317452,0.000000,0.000000,0.250000,0,0);}
.m74_c01163{transform:matrix(0.317577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317577,0.000000,0.000000,0.250000,0,0);}
.m34_c01163{transform:matrix(0.318280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318280,0.000000,0.000000,0.250000,0,0);}
.m8e_c01163{transform:matrix(0.318954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318954,0.000000,0.000000,0.250000,0,0);}
.m89_c01163{transform:matrix(0.319414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319414,0.000000,0.000000,0.250000,0,0);}
.m2e_c01163{transform:matrix(0.319731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319731,0.000000,0.000000,0.250000,0,0);}
.m88_c01163{transform:matrix(0.319914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319914,0.000000,0.000000,0.250000,0,0);}
.m3d_c01163{transform:matrix(0.319919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319919,0.000000,0.000000,0.250000,0,0);}
.m1a_c01163{transform:matrix(0.320170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320170,0.000000,0.000000,0.250000,0,0);}
.m7c_c01163{transform:matrix(0.321396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321396,0.000000,0.000000,0.250000,0,0);}
.m72_c01163{transform:matrix(0.322137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322137,0.000000,0.000000,0.250000,0,0);}
.m65_c01163{transform:matrix(0.322957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322957,0.000000,0.000000,0.250000,0,0);}
.m4f_c01163{transform:matrix(0.323948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323948,0.000000,0.000000,0.250000,0,0);}
.m3f_c01163{transform:matrix(0.324595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324595,0.000000,0.000000,0.250000,0,0);}
.m5_c01163{transform:matrix(0.326112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326112,0.000000,0.000000,0.250000,0,0);}
.mf_c01163{transform:matrix(0.328326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328326,0.000000,0.000000,0.250000,0,0);}
.m1f_c01163{transform:matrix(0.329075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329075,0.000000,0.000000,0.250000,0,0);}
.m49_c01163{transform:matrix(0.329476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329476,0.000000,0.000000,0.250000,0,0);}
.m60_c01163{transform:matrix(0.329898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329898,0.000000,0.000000,0.250000,0,0);}
.m2b_c01163{transform:matrix(0.331385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331385,0.000000,0.000000,0.250000,0,0);}
.m9b_c01163{transform:matrix(0.332044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332044,0.000000,0.000000,0.250000,0,0);}
.m9c_c01163{transform:matrix(0.332793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332793,0.000000,0.000000,0.250000,0,0);}
.m20_c01163{transform:matrix(0.333599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333599,0.000000,0.000000,0.250000,0,0);}
.m8c_c01163{transform:matrix(0.333647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333647,0.000000,0.000000,0.250000,0,0);}
.m2c_c01163{transform:matrix(0.334108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334108,0.000000,0.000000,0.250000,0,0);}
.m5d_c01163{transform:matrix(0.334121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334121,0.000000,0.000000,0.250000,0,0);}
.m45_c01163{transform:matrix(0.335648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335648,0.000000,0.000000,0.250000,0,0);}
.m24_c01163{transform:matrix(0.335788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335788,0.000000,0.000000,0.250000,0,0);}
.m14_c01163{transform:matrix(0.336180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336180,0.000000,0.000000,0.250000,0,0);}
.m68_c01163{transform:matrix(0.336615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336615,0.000000,0.000000,0.250000,0,0);}
.m79_c01163{transform:matrix(0.337396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337396,0.000000,0.000000,0.250000,0,0);}
.m56_c01163{transform:matrix(0.339451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339451,0.000000,0.000000,0.250000,0,0);}
.m4_c01163{transform:matrix(0.340190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340190,0.000000,0.000000,0.250000,0,0);}
.m62_c01163{transform:matrix(0.341145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341145,0.000000,0.000000,0.250000,0,0);}
.me_c01163{transform:matrix(0.342497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342497,0.000000,0.000000,0.250000,0,0);}
.m98_c01163{transform:matrix(0.343124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343124,0.000000,0.000000,0.250000,0,0);}
.m76_c01163{transform:matrix(0.352058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352058,0.000000,0.000000,0.250000,0,0);}
.m33_c01163{transform:matrix(0.358577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358577,0.000000,0.000000,0.250000,0,0);}
.m25_c01163{transform:matrix(0.359055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359055,0.000000,0.000000,0.250000,0,0);}
.m35_c01163{transform:matrix(0.360234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360234,0.000000,0.000000,0.250000,0,0);}
.m10_c01163{transform:matrix(0.361139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361139,0.000000,0.000000,0.250000,0,0);}
.m4e_c01163{transform:matrix(0.362904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362904,0.000000,0.000000,0.250000,0,0);}
.m4d_c01163{transform:matrix(0.364671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364671,0.000000,0.000000,0.250000,0,0);}
.m5e_c01163{transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);}
.m94_c01163{transform:matrix(0.368768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368768,0.000000,0.000000,0.250000,0,0);}
.mb_c01163{transform:matrix(0.369429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369429,0.000000,0.000000,0.250000,0,0);}
.m6c_c01163{transform:matrix(0.371906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371906,0.000000,0.000000,0.250000,0,0);}
.m51_c01163{transform:matrix(0.372865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372865,0.000000,0.000000,0.250000,0,0);}
.m30_c01163{transform:matrix(0.374088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374088,0.000000,0.000000,0.250000,0,0);}
.m77_c01163{transform:matrix(0.382060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382060,0.000000,0.000000,0.250000,0,0);}
.m5a_c01163{transform:matrix(0.390631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390631,0.000000,0.000000,0.250000,0,0);}
.m23_c01163{transform:matrix(0.395010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395010,0.000000,0.000000,0.250000,0,0);}
.m99_c01163{transform:matrix(0.403119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403119,0.000000,0.000000,0.250000,0,0);}
.m87_c01163{transform:matrix(0.408283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408283,0.000000,0.000000,0.250000,0,0);}
.m1e_c01163{transform:matrix(0.421245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421245,0.000000,0.000000,0.250000,0,0);}
.m4a_c01163{transform:matrix(0.434101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434101,0.000000,0.000000,0.250000,0,0);}
.m80_c01163{transform:matrix(0.443441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443441,0.000000,0.000000,0.250000,0,0);}
.v1_c01163{vertical-align:-34.214400px;}
.v0_c01163{vertical-align:0.000000px;}
.ls7_c01163{letter-spacing:-3.298680px;}
.ls4_c01163{letter-spacing:-2.550240px;}
.ls15_c01163{letter-spacing:-2.494800px;}
.ls17_c01163{letter-spacing:-2.432430px;}
.ls5_c01163{letter-spacing:-1.607767px;}
.ls18_c01163{letter-spacing:-1.180397px;}
.ls8_c01163{letter-spacing:-0.951905px;}
.ls0_c01163{letter-spacing:0.000000px;}
.lsa_c01163{letter-spacing:0.881654px;}
.ls16_c01163{letter-spacing:1.726877px;}
.lse_c01163{letter-spacing:2.302502px;}
.ls3_c01163{letter-spacing:2.797978px;}
.ls6_c01163{letter-spacing:3.424608px;}
.lsf_c01163{letter-spacing:3.474900px;}
.ls13_c01163{letter-spacing:3.524400px;}
.ls9_c01163{letter-spacing:3.555763px;}
.ls2_c01163{letter-spacing:3.643200px;}
.lsd_c01163{letter-spacing:3.703471px;}
.ls1_c01163{letter-spacing:3.801610px;}
.ls11_c01163{letter-spacing:3.867494px;}
.ls14_c01163{letter-spacing:4.078810px;}
.ls10_c01163{letter-spacing:4.276810px;}
.lsc_c01163{letter-spacing:4.316400px;}
.ls12_c01163{letter-spacing:58.449798px;}
.lsb_c01163{letter-spacing:61.300998px;}
.sc__c01163{text-shadow:none;}
.sc0_c01163{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01163{-webkit-text-stroke:0px transparent;}
.sc0_c01163{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01163{word-spacing:-22.610095px;}
.ws0_c01163{word-spacing:-19.008050px;}
.ws2_c01163{word-spacing:-18.216000px;}
.ws3_c01163{word-spacing:0.000000px;}
._3_c01163{margin-left:-14.891580px;}
._8_c01163{margin-left:-6.775560px;}
._2_c01163{margin-left:-3.561782px;}
._6_c01163{width:1.456884px;}
._1_c01163{width:4.029597px;}
._5_c01163{width:7.868916px;}
._9_c01163{width:17.123040px;}
._7_c01163{width:21.087000px;}
._4_c01163{width:27.186588px;}
._0_c01163{width:1651.991616px;}
.fc0_c01163{color:transparent;}
.fs10_c01163{font-size:22.176000px;}
.fs1_c01163{font-size:28.314000px;}
.fs3_c01163{font-size:33.660000px;}
.fs0_c01163{font-size:38.808000px;}
.fs5_c01163{font-size:45.936198px;}
.fsc_c01163{font-size:58.449798px;}
.fs8_c01163{font-size:61.300998px;}
.fs7_c01163{font-size:66.330000px;}
.fsa_c01163{font-size:69.498000px;}
.fsd_c01163{font-size:70.488000px;}
.fsf_c01163{font-size:71.280000px;}
.fs4_c01163{font-size:72.864000px;}
.fs2_c01163{font-size:76.032198px;}
.fse_c01163{font-size:81.576198px;}
.fsb_c01163{font-size:85.536198px;}
.fs9_c01163{font-size:86.328000px;}
.fs6_c01163{font-size:94.248000px;}
.y0_c01163{bottom:0.000000px;}
.y1b_c01163{bottom:17.370585px;}
.y2_c01163{bottom:45.169785px;}
.y1_c01163{bottom:76.500000px;}
.y1a_c01163{bottom:119.305935px;}
.y19_c01163{bottom:151.381935px;}
.y18_c01163{bottom:219.810735px;}
.y17_c01163{bottom:252.599535px;}
.y16_c01163{bottom:285.031935px;}
.y15_c01163{bottom:317.459385px;}
.y14_c01163{bottom:349.540335px;}
.y13_c01163{bottom:412.979535px;}
.y12_c01163{bottom:445.763385px;}
.y11_c01163{bottom:478.200735px;}
.y10_c01163{bottom:509.558985px;}
.yf_c01163{bottom:541.996335px;}
.ye_c01163{bottom:605.074185px;}
.yd_c01163{bottom:637.150185px;}
.yc_c01163{bottom:701.302185px;}
.yb_c01163{bottom:733.383135px;}
.ya_c01163{bottom:766.171935px;}
.y9_c01163{bottom:798.242985px;}
.y8_c01163{bottom:862.038585px;}
.y7_c01163{bottom:893.763135px;}
.y6_c01163{bottom:925.834185px;}
.y5_c01163{bottom:956.840985px;}
.y4_c01163{bottom:1066.612185px;}
.y3_c01163{bottom:1075.165785px;}
.h12_c01163{height:23.128875px;}
.h5_c01163{height:33.035449px;}
.he_c01163{height:38.927565px;}
.h3_c01163{height:40.407044px;}
.h2_c01163{height:40.475531px;}
.ha_c01163{height:40.826465px;}
.h7_c01163{height:45.083866px;}
.hc_c01163{height:68.174552px;}
.h9_c01163{height:69.180117px;}
.h10_c01163{height:69.957422px;}
.h6_c01163{height:71.512031px;}
.h11_c01163{height:72.484242px;}
.h4_c01163{height:74.621444px;}
.hf_c01163{height:80.062577px;}
.hd_c01163{height:83.949101px;}
.hb_c01163{height:84.726211px;}
.h8_c01163{height:92.499258px;}
.h1_c01163{height:1110.000000px;}
.h0_c01163{height:1263.000000px;}
.w1_c01163{width:775.500000px;}
.w0_c01163{width:892.500000px;}
.x0_c01163{left:0.000000px;}
.x2_c01163{left:23.712135px;}
.x1_c01163{left:58.500000px;}
.x45_c01163{left:90.868785px;}
.x1f_c01163{left:91.937985px;}
.x6_c01163{left:94.081335px;}
.x58_c01163{left:145.982085px;}
.x10_c01163{left:147.373035px;}
.x7_c01163{left:148.907535px;}
.x28_c01163{left:150.644985px;}
.x63_c01163{left:168.658035px;}
.x29_c01163{left:180.290535px;}
.x11_c01163{left:182.126985px;}
.x1d_c01163{left:191.423085px;}
.x20_c01163{left:201.704235px;}
.x39_c01163{left:203.095185px;}
.x1e_c01163{left:204.293085px;}
.x8_c01163{left:205.436535px;}
.x46_c01163{left:213.237735px;}
.x67_c01163{left:223.048635px;}
.x2a_c01163{left:225.345435px;}
.x9_c01163{left:226.384935px;}
.x5d_c01163{left:233.696085px;}
.x3a_c01163{left:235.809735px;}
.x53_c01163{left:246.373035px;}
.x21_c01163{left:248.442135px;}
.x61_c01163{left:257.030385px;}
.x47_c01163{left:258.114435px;}
.x2b_c01163{left:269.652885px;}
.x12_c01163{left:270.964635px;}
.xa_c01163{left:280.785435px;}
.x3_c01163{left:289.566735px;}
.x59_c01163{left:291.680385px;}
.x3b_c01163{left:302.491185px;}
.x13_c01163{left:304.495935px;}
.x68_c01163{left:313.727685px;}
.x64_c01163{left:323.236635px;}
.x3c_c01163{left:324.904785px;}
.x14_c01163{left:326.914485px;}
.x37_c01163{left:335.661135px;}
.x2c_c01163{left:337.091685px;}
.x60_c01163{left:346.724385px;}
.x32_c01163{left:347.991585px;}
.x22_c01163{left:358.683585px;}
.x62_c01163{left:368.529135px;}
.x15_c01163{left:369.692385px;}
.x50_c01163{left:370.726935px;}
.x33_c01163{left:380.349735px;}
.x5e_c01163{left:390.190335px;}
.x23_c01163{left:391.398135px;}
.xb_c01163{left:402.595035px;}
.x69_c01163{left:412.311885px;}
.x2d_c01163{left:413.381085px;}
.x16_c01163{left:415.880835px;}
.x4c_c01163{left:424.073085px;}
.x24_c01163{left:425.988735px;}
.x2e_c01163{left:435.586785px;}
.x17_c01163{left:437.804385px;}
.x38_c01163{left:447.709335px;}
.x56_c01163{left:457.470735px;}
.x42_c01163{left:459.124035px;}
.x6a_c01163{left:468.024135px;}
.x34_c01163{left:470.014035px;}
.x18_c01163{left:478.597335px;}
.x48_c01163{left:480.567435px;}
.x3d_c01163{left:491.586135px;}
.xc_c01163{left:500.991135px;}
.x25_c01163{left:502.094985px;}
.x5_c01163{left:505.228335px;}
.x49_c01163{left:512.960235px;}
.x19_c01163{left:516.712335px;}
.x43_c01163{left:524.518485px;}
.x1a_c01163{left:535.601535px;}
.x57_c01163{left:545.585685px;}
.x2f_c01163{left:547.545885px;}
.x35_c01163{left:548.793285px;}
.x26_c01163{left:555.881685px;}
.x65_c01163{left:557.198385px;}
.x4a_c01163{left:558.599235px;}
.x54_c01163{left:567.340935px;}
.x5a_c01163{left:568.791285px;}
.x4d_c01163{left:575.453985px;}
.xd_c01163{left:578.582385px;}
.x3e_c01163{left:580.567335px;}
.x51_c01163{left:590.699985px;}
.x3f_c01163{left:600.525735px;}
.x30_c01163{left:601.713735px;}
.x1b_c01163{left:611.108835px;}
.x44_c01163{left:612.663135px;}
.x40_c01163{left:617.989335px;}
.x27_c01163{left:622.845285px;}
.x5b_c01163{left:624.785685px;}
.x4e_c01163{left:646.164735px;}
.x6c_c01163{left:651.758235px;}
.x5c_c01163{left:654.946035px;}
.xe_c01163{left:655.990485px;}
.x36_c01163{left:657.614085px;}
.x31_c01163{left:669.098085px;}
.x6b_c01163{left:679.666335px;}
.xf_c01163{left:688.868385px;}
.x4b_c01163{left:690.447435px;}
.x4f_c01163{left:691.976985px;}
.x1c_c01163{left:700.614735px;}
.x52_c01163{left:712.568985px;}
.x66_c01163{left:716.890335px;}
.x4_c01163{left:718.241685px;}
.x41_c01163{left:722.058135px;}
.x55_c01163{left:723.998535px;}
.x5f_c01163{left:743.407485px;}
@media print{
.v1_c01163{vertical-align:-30.412800pt;}
.v0_c01163{vertical-align:0.000000pt;}
.ls7_c01163{letter-spacing:-2.932160pt;}
.ls4_c01163{letter-spacing:-2.266880pt;}
.ls15_c01163{letter-spacing:-2.217600pt;}
.ls17_c01163{letter-spacing:-2.162160pt;}
.ls5_c01163{letter-spacing:-1.429126pt;}
.ls18_c01163{letter-spacing:-1.049242pt;}
.ls8_c01163{letter-spacing:-0.846138pt;}
.ls0_c01163{letter-spacing:0.000000pt;}
.lsa_c01163{letter-spacing:0.783693pt;}
.ls16_c01163{letter-spacing:1.535002pt;}
.lse_c01163{letter-spacing:2.046669pt;}
.ls3_c01163{letter-spacing:2.487091pt;}
.ls6_c01163{letter-spacing:3.044096pt;}
.lsf_c01163{letter-spacing:3.088800pt;}
.ls13_c01163{letter-spacing:3.132800pt;}
.ls9_c01163{letter-spacing:3.160678pt;}
.ls2_c01163{letter-spacing:3.238400pt;}
.lsd_c01163{letter-spacing:3.291974pt;}
.ls1_c01163{letter-spacing:3.379209pt;}
.ls11_c01163{letter-spacing:3.437773pt;}
.ls14_c01163{letter-spacing:3.625609pt;}
.ls10_c01163{letter-spacing:3.801609pt;}
.lsc_c01163{letter-spacing:3.836800pt;}
.ls12_c01163{letter-spacing:51.955376pt;}
.lsb_c01163{letter-spacing:54.489776pt;}
.ws1_c01163{word-spacing:-20.097862pt;}
.ws0_c01163{word-spacing:-16.896044pt;}
.ws2_c01163{word-spacing:-16.192000pt;}
.ws3_c01163{word-spacing:0.000000pt;}
._3_c01163{margin-left:-13.236960pt;}
._8_c01163{margin-left:-6.022720pt;}
._2_c01163{margin-left:-3.166029pt;}
._6_c01163{width:1.295008pt;}
._1_c01163{width:3.581864pt;}
._5_c01163{width:6.994592pt;}
._9_c01163{width:15.220480pt;}
._7_c01163{width:18.744000pt;}
._4_c01163{width:24.165856pt;}
._0_c01163{width:1468.436992pt;}
.fs10_c01163{font-size:19.712000pt;}
.fs1_c01163{font-size:25.168000pt;}
.fs3_c01163{font-size:29.920000pt;}
.fs0_c01163{font-size:34.496000pt;}
.fs5_c01163{font-size:40.832176pt;}
.fsc_c01163{font-size:51.955376pt;}
.fs8_c01163{font-size:54.489776pt;}
.fs7_c01163{font-size:58.960000pt;}
.fsa_c01163{font-size:61.776000pt;}
.fsd_c01163{font-size:62.656000pt;}
.fsf_c01163{font-size:63.360000pt;}
.fs4_c01163{font-size:64.768000pt;}
.fs2_c01163{font-size:67.584176pt;}
.fse_c01163{font-size:72.512176pt;}
.fsb_c01163{font-size:76.032176pt;}
.fs9_c01163{font-size:76.736000pt;}
.fs6_c01163{font-size:83.776000pt;}
.y0_c01163{bottom:0.000000pt;}
.y1b_c01163{bottom:15.440520pt;}
.y2_c01163{bottom:40.150920pt;}
.y1_c01163{bottom:68.000000pt;}
.y1a_c01163{bottom:106.049720pt;}
.y19_c01163{bottom:134.561720pt;}
.y18_c01163{bottom:195.387320pt;}
.y17_c01163{bottom:224.532920pt;}
.y16_c01163{bottom:253.361720pt;}
.y15_c01163{bottom:282.186120pt;}
.y14_c01163{bottom:310.702520pt;}
.y13_c01163{bottom:367.092920pt;}
.y12_c01163{bottom:396.234120pt;}
.y11_c01163{bottom:425.067320pt;}
.y10_c01163{bottom:452.941320pt;}
.yf_c01163{bottom:481.774520pt;}
.ye_c01163{bottom:537.843720pt;}
.yd_c01163{bottom:566.355720pt;}
.yc_c01163{bottom:623.379720pt;}
.yb_c01163{bottom:651.896120pt;}
.ya_c01163{bottom:681.041720pt;}
.y9_c01163{bottom:709.549320pt;}
.y8_c01163{bottom:766.256520pt;}
.y7_c01163{bottom:794.456120pt;}
.y6_c01163{bottom:822.963720pt;}
.y5_c01163{bottom:850.525320pt;}
.y4_c01163{bottom:948.099720pt;}
.y3_c01163{bottom:955.702920pt;}
.h12_c01163{height:20.559000pt;}
.h5_c01163{height:29.364844pt;}
.he_c01163{height:34.602280pt;}
.h3_c01163{height:35.917373pt;}
.h2_c01163{height:35.978250pt;}
.ha_c01163{height:36.290191pt;}
.h7_c01163{height:40.074548pt;}
.hc_c01163{height:60.599602pt;}
.h9_c01163{height:61.493438pt;}
.h10_c01163{height:62.184375pt;}
.h6_c01163{height:63.566250pt;}
.h11_c01163{height:64.430438pt;}
.h4_c01163{height:66.330173pt;}
.hf_c01163{height:71.166735pt;}
.hd_c01163{height:74.621423pt;}
.hb_c01163{height:75.312188pt;}
.h8_c01163{height:82.221563pt;}
.h1_c01163{height:986.666667pt;}
.h0_c01163{height:1122.666667pt;}
.w1_c01163{width:689.333333pt;}
.w0_c01163{width:793.333333pt;}
.x0_c01163{left:0.000000pt;}
.x2_c01163{left:21.077453pt;}
.x1_c01163{left:52.000000pt;}
.x45_c01163{left:80.772253pt;}
.x1f_c01163{left:81.722653pt;}
.x6_c01163{left:83.627853pt;}
.x58_c01163{left:129.761853pt;}
.x10_c01163{left:130.998253pt;}
.x7_c01163{left:132.362253pt;}
.x28_c01163{left:133.906653pt;}
.x63_c01163{left:149.918253pt;}
.x29_c01163{left:160.258253pt;}
.x11_c01163{left:161.890653pt;}
.x1d_c01163{left:170.153853pt;}
.x20_c01163{left:179.292653pt;}
.x39_c01163{left:180.529053pt;}
.x1e_c01163{left:181.593853pt;}
.x8_c01163{left:182.610253pt;}
.x46_c01163{left:189.544653pt;}
.x67_c01163{left:198.265453pt;}
.x2a_c01163{left:200.307053pt;}
.x9_c01163{left:201.231053pt;}
.x5d_c01163{left:207.729853pt;}
.x3a_c01163{left:209.608653pt;}
.x53_c01163{left:218.998253pt;}
.x21_c01163{left:220.837453pt;}
.x61_c01163{left:228.471453pt;}
.x47_c01163{left:229.435053pt;}
.x2b_c01163{left:239.691453pt;}
.x12_c01163{left:240.857453pt;}
.xa_c01163{left:249.587053pt;}
.x3_c01163{left:257.392653pt;}
.x59_c01163{left:259.271453pt;}
.x3b_c01163{left:268.881053pt;}
.x13_c01163{left:270.663053pt;}
.x68_c01163{left:278.869053pt;}
.x64_c01163{left:287.321453pt;}
.x3c_c01163{left:288.804253pt;}
.x14_c01163{left:290.590653pt;}
.x37_c01163{left:298.365453pt;}
.x2c_c01163{left:299.637053pt;}
.x60_c01163{left:308.199453pt;}
.x32_c01163{left:309.325853pt;}
.x22_c01163{left:318.829853pt;}
.x62_c01163{left:327.581453pt;}
.x15_c01163{left:328.615453pt;}
.x50_c01163{left:329.535053pt;}
.x33_c01163{left:338.088653pt;}
.x5e_c01163{left:346.835853pt;}
.x23_c01163{left:347.909453pt;}
.xb_c01163{left:357.862253pt;}
.x69_c01163{left:366.499453pt;}
.x2d_c01163{left:367.449853pt;}
.x16_c01163{left:369.671853pt;}
.x4c_c01163{left:376.953853pt;}
.x24_c01163{left:378.656653pt;}
.x2e_c01163{left:387.188253pt;}
.x17_c01163{left:389.159453pt;}
.x38_c01163{left:397.963853pt;}
.x56_c01163{left:406.640653pt;}
.x42_c01163{left:408.110253pt;}
.x6a_c01163{left:416.021453pt;}
.x34_c01163{left:417.790253pt;}
.x18_c01163{left:425.419853pt;}
.x48_c01163{left:427.171053pt;}
.x3d_c01163{left:436.965453pt;}
.xc_c01163{left:445.325453pt;}
.x25_c01163{left:446.306653pt;}
.x5_c01163{left:449.091853pt;}
.x49_c01163{left:455.964653pt;}
.x19_c01163{left:459.299853pt;}
.x43_c01163{left:466.238653pt;}
.x1a_c01163{left:476.090253pt;}
.x57_c01163{left:484.965053pt;}
.x2f_c01163{left:486.707453pt;}
.x35_c01163{left:487.816253pt;}
.x26_c01163{left:494.117053pt;}
.x65_c01163{left:495.287453pt;}
.x4a_c01163{left:496.532653pt;}
.x54_c01163{left:504.303053pt;}
.x5a_c01163{left:505.592253pt;}
.x4d_c01163{left:511.514653pt;}
.xd_c01163{left:514.295453pt;}
.x3e_c01163{left:516.059853pt;}
.x51_c01163{left:525.066653pt;}
.x3f_c01163{left:533.800653pt;}
.x30_c01163{left:534.856653pt;}
.x1b_c01163{left:543.207853pt;}
.x44_c01163{left:544.589453pt;}
.x40_c01163{left:549.323853pt;}
.x27_c01163{left:553.640253pt;}
.x5b_c01163{left:555.365053pt;}
.x4e_c01163{left:574.368653pt;}
.x6c_c01163{left:579.340653pt;}
.x5c_c01163{left:582.174253pt;}
.xe_c01163{left:583.102653pt;}
.x36_c01163{left:584.545853pt;}
.x31_c01163{left:594.753853pt;}
.x6b_c01163{left:604.147853pt;}
.xf_c01163{left:612.327453pt;}
.x4b_c01163{left:613.731053pt;}
.x4f_c01163{left:615.090653pt;}
.x1c_c01163{left:622.768653pt;}
.x52_c01163{left:633.394653pt;}
.x66_c01163{left:637.235853pt;}
.x4_c01163{left:638.437053pt;}
.x41_c01163{left:641.829453pt;}
.x55_c01163{left:643.554253pt;}
.x5f_c01163{left:660.806653pt;}
}





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

.ir_c01164:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01164{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01164;src:url('chunks/assets/font_272b047504b33e7be0713f63.woff2')format("woff");}.ff1_c01164{font-family:ff1_c01164;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01164;src:url('chunks/assets/font_e6eea85fe4eeb0c681cf3782.woff2')format("woff");}.ff2_c01164{font-family:ff2_c01164;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01164;src:url('chunks/assets/font_c0815076fbd735d004962ffb.woff2')format("woff");}.ff3_c01164{font-family:ff3_c01164;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01164;src:url('chunks/assets/font_4fe5d678fceb1b04d945ff21.woff2')format("woff");}.ff4_c01164{font-family:ff4_c01164;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01164;src:url('chunks/assets/font_89762f21b9b95795fe1d9ed3.woff2')format("woff");}.ff5_c01164{font-family:ff5_c01164;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.me_c01164{transform:matrix(0.098684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098684,0.000000,0.000000,0.250000,0,0);}
.m16_c01164{transform:matrix(0.117887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117887,0.000000,0.000000,0.250000,0,0);}
.m47_c01164{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);}
.m89_c01164{transform:matrix(0.148124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148124,0.000000,0.000000,0.250000,0,0);}
.m46_c01164{transform:matrix(0.148809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148809,0.000000,0.000000,0.250000,0,0);}
.md_c01164{transform:matrix(0.157895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157895,0.000000,0.000000,0.250000,0,0);}
.m30_c01164{transform:matrix(0.158703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158703,0.000000,0.000000,0.250000,0,0);}
.m54_c01164{transform:matrix(0.159518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159518,0.000000,0.000000,0.250000,0,0);}
.m51_c01164{transform:matrix(0.175159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175159,0.000000,0.000000,0.250000,0,0);}
.m31_c01164{transform:matrix(0.184982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184982,0.000000,0.000000,0.250000,0,0);}
.m24_c01164{transform:matrix(0.185465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185465,0.000000,0.000000,0.250000,0,0);}
.m76_c01164{transform:matrix(0.186992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186992,0.000000,0.000000,0.250000,0,0);}
.m14_c01164{transform:matrix(0.187415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187415,0.000000,0.000000,0.250000,0,0);}
.m32_c01164{transform:matrix(0.195513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195513,0.000000,0.000000,0.250000,0,0);}
.mf_c01164{transform:matrix(0.205263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205263,0.000000,0.000000,0.250000,0,0);}
.m3e_c01164{transform:matrix(0.245454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245454,0.000000,0.000000,0.250000,0,0);}
.m9_c01164{transform:matrix(0.248409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248409,0.000000,0.000000,0.250000,0,0);}
.m0_c01164{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m61_c01164{transform:matrix(0.254215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254215,0.000000,0.000000,0.250000,0,0);}
.m19_c01164{transform:matrix(0.255858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255858,0.000000,0.000000,0.250000,0,0);}
.m6f_c01164{transform:matrix(0.255923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255923,0.000000,0.000000,0.250000,0,0);}
.m9d_c01164{transform:matrix(0.259711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259711,0.000000,0.000000,0.250000,0,0);}
.m2e_c01164{transform:matrix(0.260380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260380,0.000000,0.000000,0.250000,0,0);}
.m55_c01164{transform:matrix(0.262587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262587,0.000000,0.000000,0.250000,0,0);}
.m6a_c01164{transform:matrix(0.262625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262625,0.000000,0.000000,0.250000,0,0);}
.m7f_c01164{transform:matrix(0.263127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263127,0.000000,0.000000,0.250000,0,0);}
.m4a_c01164{transform:matrix(0.268624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268624,0.000000,0.000000,0.250000,0,0);}
.m9c_c01164{transform:matrix(0.269009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269009,0.000000,0.000000,0.250000,0,0);}
.m53_c01164{transform:matrix(0.270019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270019,0.000000,0.000000,0.250000,0,0);}
.m2b_c01164{transform:matrix(0.271982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271982,0.000000,0.000000,0.250000,0,0);}
.m1a_c01164{transform:matrix(0.273900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273900,0.000000,0.000000,0.250000,0,0);}
.m4f_c01164{transform:matrix(0.275890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275890,0.000000,0.000000,0.250000,0,0);}
.m36_c01164{transform:matrix(0.276310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276310,0.000000,0.000000,0.250000,0,0);}
.m97_c01164{transform:matrix(0.276947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276947,0.000000,0.000000,0.250000,0,0);}
.m49_c01164{transform:matrix(0.277013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277013,0.000000,0.000000,0.250000,0,0);}
.m58_c01164{transform:matrix(0.277134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277134,0.000000,0.000000,0.250000,0,0);}
.m98_c01164{transform:matrix(0.277390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277390,0.000000,0.000000,0.250000,0,0);}
.m11_c01164{transform:matrix(0.278792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278792,0.000000,0.000000,0.250000,0,0);}
.m5a_c01164{transform:matrix(0.280977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280977,0.000000,0.000000,0.250000,0,0);}
.m7_c01164{transform:matrix(0.281170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281170,0.000000,0.000000,0.250000,0,0);}
.m6e_c01164{transform:matrix(0.281543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281543,0.000000,0.000000,0.250000,0,0);}
.m3a_c01164{transform:matrix(0.281872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281872,0.000000,0.000000,0.250000,0,0);}
.m81_c01164{transform:matrix(0.282522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282522,0.000000,0.000000,0.250000,0,0);}
.m79_c01164{transform:matrix(0.282868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282868,0.000000,0.000000,0.250000,0,0);}
.m9a_c01164{transform:matrix(0.283683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283683,0.000000,0.000000,0.250000,0,0);}
.m22_c01164{transform:matrix(0.284868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284868,0.000000,0.000000,0.250000,0,0);}
.m6b_c01164{transform:matrix(0.285043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285043,0.000000,0.000000,0.250000,0,0);}
.m7c_c01164{transform:matrix(0.285122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285122,0.000000,0.000000,0.250000,0,0);}
.m38_c01164{transform:matrix(0.285899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285899,0.000000,0.000000,0.250000,0,0);}
.m69_c01164{transform:matrix(0.286635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286635,0.000000,0.000000,0.250000,0,0);}
.m3b_c01164{transform:matrix(0.286806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286806,0.000000,0.000000,0.250000,0,0);}
.m8_c01164{transform:matrix(0.286817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286817,0.000000,0.000000,0.250000,0,0);}
.m1f_c01164{transform:matrix(0.289043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289043,0.000000,0.000000,0.250000,0,0);}
.m2_c01164{transform:matrix(0.289779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289779,0.000000,0.000000,0.250000,0,0);}
.m8b_c01164{transform:matrix(0.291218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291218,0.000000,0.000000,0.250000,0,0);}
.m1e_c01164{transform:matrix(0.291691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291691,0.000000,0.000000,0.250000,0,0);}
.m8f_c01164{transform:matrix(0.291902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291902,0.000000,0.000000,0.250000,0,0);}
.m80_c01164{transform:matrix(0.293073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293073,0.000000,0.000000,0.250000,0,0);}
.m7e_c01164{transform:matrix(0.293169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293169,0.000000,0.000000,0.250000,0,0);}
.m6_c01164{transform:matrix(0.293867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293867,0.000000,0.000000,0.250000,0,0);}
.m20_c01164{transform:matrix(0.293906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293906,0.000000,0.000000,0.250000,0,0);}
.m87_c01164{transform:matrix(0.294297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294297,0.000000,0.000000,0.250000,0,0);}
.m1_c01164{transform:matrix(0.294813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294813,0.000000,0.000000,0.250000,0,0);}
.m41_c01164{transform:matrix(0.294962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294962,0.000000,0.000000,0.250000,0,0);}
.m92_c01164{transform:matrix(0.296295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296295,0.000000,0.000000,0.250000,0,0);}
.m88_c01164{transform:matrix(0.296356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296356,0.000000,0.000000,0.250000,0,0);}
.m8a_c01164{transform:matrix(0.296577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296577,0.000000,0.000000,0.250000,0,0);}
.m72_c01164{transform:matrix(0.297741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297741,0.000000,0.000000,0.250000,0,0);}
.m52_c01164{transform:matrix(0.298744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298744,0.000000,0.000000,0.250000,0,0);}
.m5b_c01164{transform:matrix(0.299259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299259,0.000000,0.000000,0.250000,0,0);}
.m4d_c01164{transform:matrix(0.299424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299424,0.000000,0.000000,0.250000,0,0);}
.m83_c01164{transform:matrix(0.299455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299455,0.000000,0.000000,0.250000,0,0);}
.m63_c01164{transform:matrix(0.300202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300202,0.000000,0.000000,0.250000,0,0);}
.m13_c01164{transform:matrix(0.300447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300447,0.000000,0.000000,0.250000,0,0);}
.m15_c01164{transform:matrix(0.302855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302855,0.000000,0.000000,0.250000,0,0);}
.m6d_c01164{transform:matrix(0.303105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303105,0.000000,0.000000,0.250000,0,0);}
.m18_c01164{transform:matrix(0.303192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303192,0.000000,0.000000,0.250000,0,0);}
.m23_c01164{transform:matrix(0.303307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303307,0.000000,0.000000,0.250000,0,0);}
.m37_c01164{transform:matrix(0.303347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303347,0.000000,0.000000,0.250000,0,0);}
.m2d_c01164{transform:matrix(0.303803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303803,0.000000,0.000000,0.250000,0,0);}
.m45_c01164{transform:matrix(0.304698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304698,0.000000,0.000000,0.250000,0,0);}
.m91_c01164{transform:matrix(0.305132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305132,0.000000,0.000000,0.250000,0,0);}
.m73_c01164{transform:matrix(0.305809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305809,0.000000,0.000000,0.250000,0,0);}
.m9b_c01164{transform:matrix(0.306700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306700,0.000000,0.000000,0.250000,0,0);}
.m1b_c01164{transform:matrix(0.307122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307122,0.000000,0.000000,0.250000,0,0);}
.m8c_c01164{transform:matrix(0.307443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307443,0.000000,0.000000,0.250000,0,0);}
.m86_c01164{transform:matrix(0.308712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308712,0.000000,0.000000,0.250000,0,0);}
.m93_c01164{transform:matrix(0.309553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309553,0.000000,0.000000,0.250000,0,0);}
.m96_c01164{transform:matrix(0.310310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310310,0.000000,0.000000,0.250000,0,0);}
.m62_c01164{transform:matrix(0.312369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312369,0.000000,0.000000,0.250000,0,0);}
.m74_c01164{transform:matrix(0.313087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313087,0.000000,0.000000,0.250000,0,0);}
.m7b_c01164{transform:matrix(0.313293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313293,0.000000,0.000000,0.250000,0,0);}
.m99_c01164{transform:matrix(0.313742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313742,0.000000,0.000000,0.250000,0,0);}
.m40_c01164{transform:matrix(0.313873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313873,0.000000,0.000000,0.250000,0,0);}
.m90_c01164{transform:matrix(0.315386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315386,0.000000,0.000000,0.250000,0,0);}
.m5e_c01164{transform:matrix(0.315568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315568,0.000000,0.000000,0.250000,0,0);}
.m10_c01164{transform:matrix(0.316026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316026,0.000000,0.000000,0.250000,0,0);}
.m66_c01164{transform:matrix(0.316027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316027,0.000000,0.000000,0.250000,0,0);}
.m27_c01164{transform:matrix(0.317148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317148,0.000000,0.000000,0.250000,0,0);}
.m4c_c01164{transform:matrix(0.317714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317714,0.000000,0.000000,0.250000,0,0);}
.m60_c01164{transform:matrix(0.318158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318158,0.000000,0.000000,0.250000,0,0);}
.m94_c01164{transform:matrix(0.319436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319436,0.000000,0.000000,0.250000,0,0);}
.m2a_c01164{transform:matrix(0.319951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319951,0.000000,0.000000,0.250000,0,0);}
.m33_c01164{transform:matrix(0.320749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320749,0.000000,0.000000,0.250000,0,0);}
.m5f_c01164{transform:matrix(0.321537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321537,0.000000,0.000000,0.250000,0,0);}
.m25_c01164{transform:matrix(0.322081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322081,0.000000,0.000000,0.250000,0,0);}
.m4e_c01164{transform:matrix(0.322234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322234,0.000000,0.000000,0.250000,0,0);}
.m1d_c01164{transform:matrix(0.322446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322446,0.000000,0.000000,0.250000,0,0);}
.m29_c01164{transform:matrix(0.322586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322586,0.000000,0.000000,0.250000,0,0);}
.m3c_c01164{transform:matrix(0.322662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322662,0.000000,0.000000,0.250000,0,0);}
.m3_c01164{transform:matrix(0.323444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323444,0.000000,0.000000,0.250000,0,0);}
.m56_c01164{transform:matrix(0.324097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324097,0.000000,0.000000,0.250000,0,0);}
.m2f_c01164{transform:matrix(0.326729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326729,0.000000,0.000000,0.250000,0,0);}
.m50_c01164{transform:matrix(0.327032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327032,0.000000,0.000000,0.250000,0,0);}
.m21_c01164{transform:matrix(0.327735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327735,0.000000,0.000000,0.250000,0,0);}
.mb_c01164{transform:matrix(0.328619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328619,0.000000,0.000000,0.250000,0,0);}
.m65_c01164{transform:matrix(0.330050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330050,0.000000,0.000000,0.250000,0,0);}
.m82_c01164{transform:matrix(0.330115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330115,0.000000,0.000000,0.250000,0,0);}
.m43_c01164{transform:matrix(0.330733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330733,0.000000,0.000000,0.250000,0,0);}
.m5_c01164{transform:matrix(0.331082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331082,0.000000,0.000000,0.250000,0,0);}
.m75_c01164{transform:matrix(0.332135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332135,0.000000,0.000000,0.250000,0,0);}
.m5c_c01164{transform:matrix(0.332412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332412,0.000000,0.000000,0.250000,0,0);}
.m57_c01164{transform:matrix(0.333779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333779,0.000000,0.000000,0.250000,0,0);}
.m28_c01164{transform:matrix(0.334354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334354,0.000000,0.000000,0.250000,0,0);}
.m85_c01164{transform:matrix(0.337490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337490,0.000000,0.000000,0.250000,0,0);}
.m8e_c01164{transform:matrix(0.339928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339928,0.000000,0.000000,0.250000,0,0);}
.m95_c01164{transform:matrix(0.340795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340795,0.000000,0.000000,0.250000,0,0);}
.m48_c01164{transform:matrix(0.342496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342496,0.000000,0.000000,0.250000,0,0);}
.m71_c01164{transform:matrix(0.342530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342530,0.000000,0.000000,0.250000,0,0);}
.m34_c01164{transform:matrix(0.343878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343878,0.000000,0.000000,0.250000,0,0);}
.m42_c01164{transform:matrix(0.343981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343981,0.000000,0.000000,0.250000,0,0);}
.m39_c01164{transform:matrix(0.344296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344296,0.000000,0.000000,0.250000,0,0);}
.m3f_c01164{transform:matrix(0.345242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345242,0.000000,0.000000,0.250000,0,0);}
.m84_c01164{transform:matrix(0.346315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346315,0.000000,0.000000,0.250000,0,0);}
.m4_c01164{transform:matrix(0.346409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346409,0.000000,0.000000,0.250000,0,0);}
.m1c_c01164{transform:matrix(0.346506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346506,0.000000,0.000000,0.250000,0,0);}
.m70_c01164{transform:matrix(0.349861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349861,0.000000,0.000000,0.250000,0,0);}
.ma_c01164{transform:matrix(0.350784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350784,0.000000,0.000000,0.250000,0,0);}
.m78_c01164{transform:matrix(0.352824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352824,0.000000,0.000000,0.250000,0,0);}
.m7d_c01164{transform:matrix(0.352841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352841,0.000000,0.000000,0.250000,0,0);}
.m67_c01164{transform:matrix(0.353107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353107,0.000000,0.000000,0.250000,0,0);}
.m7a_c01164{transform:matrix(0.353463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353463,0.000000,0.000000,0.250000,0,0);}
.m59_c01164{transform:matrix(0.354148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354148,0.000000,0.000000,0.250000,0,0);}
.m2c_c01164{transform:matrix(0.354788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354788,0.000000,0.000000,0.250000,0,0);}
.m3d_c01164{transform:matrix(0.358668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358668,0.000000,0.000000,0.250000,0,0);}
.m35_c01164{transform:matrix(0.358819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358819,0.000000,0.000000,0.250000,0,0);}
.m68_c01164{transform:matrix(0.359239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359239,0.000000,0.000000,0.250000,0,0);}
.mc_c01164{transform:matrix(0.362851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362851,0.000000,0.000000,0.250000,0,0);}
.m5d_c01164{transform:matrix(0.367041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367041,0.000000,0.000000,0.250000,0,0);}
.m8d_c01164{transform:matrix(0.367440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367440,0.000000,0.000000,0.250000,0,0);}
.m4b_c01164{transform:matrix(0.368772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368772,0.000000,0.000000,0.250000,0,0);}
.m64_c01164{transform:matrix(0.369903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369903,0.000000,0.000000,0.250000,0,0);}
.m6c_c01164{transform:matrix(0.385974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385974,0.000000,0.000000,0.250000,0,0);}
.m26_c01164{transform:matrix(0.388800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388800,0.000000,0.000000,0.250000,0,0);}
.m77_c01164{transform:matrix(0.394981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394981,0.000000,0.000000,0.250000,0,0);}
.m12_c01164{transform:matrix(0.401732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401732,0.000000,0.000000,0.250000,0,0);}
.m44_c01164{transform:matrix(0.408109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408109,0.000000,0.000000,0.250000,0,0);}
.m17_c01164{transform:matrix(0.414486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414486,0.000000,0.000000,0.250000,0,0);}
.v0_c01164{vertical-align:0.000000px;}
.lse_c01164{letter-spacing:-2.702700px;}
.ls5_c01164{letter-spacing:-2.591827px;}
.lsb_c01164{letter-spacing:-2.363130px;}
.ls14_c01164{letter-spacing:-1.535134px;}
.ls13_c01164{letter-spacing:-1.434517px;}
.lsd_c01164{letter-spacing:-0.229562px;}
.ls2_c01164{letter-spacing:0.000000px;}
.ls1_c01164{letter-spacing:0.110742px;}
.lsf_c01164{letter-spacing:0.402020px;}
.ls0_c01164{letter-spacing:0.607228px;}
.ls4_c01164{letter-spacing:1.103378px;}
.ls1a_c01164{letter-spacing:1.117670px;}
.ls1b_c01164{letter-spacing:1.258887px;}
.ls15_c01164{letter-spacing:1.540286px;}
.ls12_c01164{letter-spacing:1.769848px;}
.ls16_c01164{letter-spacing:1.831500px;}
.ls1c_c01164{letter-spacing:2.145949px;}
.ls17_c01164{letter-spacing:2.243782px;}
.ls9_c01164{letter-spacing:2.902846px;}
.ls18_c01164{letter-spacing:3.227400px;}
.lsa_c01164{letter-spacing:3.375900px;}
.ls8_c01164{letter-spacing:3.564000px;}
.ls3_c01164{letter-spacing:3.702610px;}
.ls19_c01164{letter-spacing:3.762000px;}
.ls11_c01164{letter-spacing:3.920400px;}
.ls6_c01164{letter-spacing:54.172998px;}
.lsc_c01164{letter-spacing:55.598598px;}
.ls7_c01164{letter-spacing:58.449798px;}
.ls10_c01164{letter-spacing:59.875398px;}
.sc__c01164{text-shadow:none;}
.sc0_c01164{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01164{-webkit-text-stroke:0px transparent;}
.sc0_c01164{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01164{word-spacing:-18.513050px;}
.ws0_c01164{word-spacing:-18.220273px;}
.ws2_c01164{word-spacing:0.000000px;}
._7_c01164{margin-left:-19.624451px;}
._5_c01164{margin-left:-6.813730px;}
._2_c01164{width:4.814084px;}
._6_c01164{width:7.479351px;}
._3_c01164{width:10.090468px;}
._1_c01164{width:33.556326px;}
._4_c01164{width:39.713256px;}
._0_c01164{width:44.241775px;}
.fc0_c01164{color:transparent;}
.fs3_c01164{font-size:22.176000px;}
.fs18_c01164{font-size:22.374000px;}
.fs0_c01164{font-size:27.720000px;}
.fs1_c01164{font-size:33.264000px;}
.fs14_c01164{font-size:36.630000px;}
.fs11_c01164{font-size:40.986198px;}
.fs5_c01164{font-size:54.172998px;}
.fs9_c01164{font-size:55.598598px;}
.fs19_c01164{font-size:56.628000px;}
.fs6_c01164{font-size:58.449798px;}
.fse_c01164{font-size:59.875398px;}
.fsf_c01164{font-size:64.548000px;}
.fsd_c01164{font-size:65.142198px;}
.fs13_c01164{font-size:66.132198px;}
.fs8_c01164{font-size:67.518000px;}
.fs7_c01164{font-size:71.280000px;}
.fsa_c01164{font-size:73.260000px;}
.fs2_c01164{font-size:74.052198px;}
.fs15_c01164{font-size:75.240000px;}
.fs4_c01164{font-size:77.022198px;}
.fsb_c01164{font-size:77.220000px;}
.fs10_c01164{font-size:78.408000px;}
.fs17_c01164{font-size:78.606198px;}
.fs12_c01164{font-size:84.348000px;}
.fsc_c01164{font-size:85.536198px;}
.fs16_c01164{font-size:88.704000px;}
.y0_c01164{bottom:0.000000px;}
.y20_c01164{bottom:38.754570px;}
.y1_c01164{bottom:76.500000px;}
.y1f_c01164{bottom:101.129520px;}
.y1e_c01164{bottom:129.280170px;}
.y1d_c01164{bottom:194.862720px;}
.y1c_c01164{bottom:227.651520px;}
.y1b_c01164{bottom:292.511370px;}
.y1a_c01164{bottom:324.943770px;}
.y3_c01164{bottom:385.888170px;}
.y19_c01164{bottom:388.031520px;}
.y18_c01164{bottom:420.463920px;}
.y17_c01164{bottom:451.822170px;}
.y15_c01164{bottom:483.898170px;}
.y16_c01164{bottom:489.605520px;}
.y14_c01164{bottom:515.974170px;}
.y13_c01164{bottom:548.762970px;}
.y12_c01164{bottom:580.843920px;}
.y11_c01164{bottom:613.632720px;}
.y10_c01164{bottom:645.347370px;}
.yf_c01164{bottom:677.071920px;}
.ye_c01164{bottom:708.791520px;}
.yd_c01164{bottom:740.867520px;}
.yc_c01164{bottom:773.294970px;}
.yb_c01164{bottom:835.308570px;}
.ya_c01164{bottom:867.389520px;}
.y9_c01164{bottom:899.821920px;}
.y8_c01164{bottom:923.344320px;}
.y7_c01164{bottom:932.254320px;}
.y2_c01164{bottom:955.415370px;}
.y6_c01164{bottom:1012.794285px;}
.y5_c01164{bottom:1059.840570px;}
.y4_c01164{bottom:1064.473770px;}
.h1a_c01164{height:21.958857px;}
.h5_c01164{height:23.128875px;}
.h2_c01164{height:28.911094px;}
.h3_c01164{height:34.693313px;}
.h7_c01164{height:36.079217px;}
.hb_c01164{height:37.028666px;}
.h16_c01164{height:38.203945px;}
.h8_c01164{height:38.927565px;}
.h10_c01164{height:39.877015px;}
.h12_c01164{height:40.225712px;}
.h1b_c01164{height:59.061234px;}
.h15_c01164{height:67.321547px;}
.hf_c01164{height:67.941277px;}
.h14_c01164{height:68.973816px;}
.h9_c01164{height:69.957422px;}
.ha_c01164{height:70.419164px;}
.hc_c01164{height:71.900684px;}
.h4_c01164{height:72.678183px;}
.h17_c01164{height:73.807207px;}
.hd_c01164{height:75.787207px;}
.h11_c01164{height:76.953164px;}
.h19_c01164{height:77.147685px;}
.h6_c01164{height:80.331746px;}
.h13_c01164{height:82.782949px;}
.he_c01164{height:83.949101px;}
.h18_c01164{height:87.014813px;}
.h1_c01164{height:1110.000000px;}
.h0_c01164{height:1263.000000px;}
.w1_c01164{width:775.500000px;}
.w0_c01164{width:892.500000px;}
.x0_c01164{left:0.000000px;}
.x2_c01164{left:53.674485px;}
.x1_c01164{left:58.500000px;}
.x5d_c01164{left:92.715135px;}
.x22_c01164{left:94.274385px;}
.x5e_c01164{left:104.877285px;}
.x5f_c01164{left:147.432435px;}
.x17_c01164{left:149.095635px;}
.xf_c01164{left:150.362835px;}
.x6_c01164{left:152.644785px;}
.x18_c01164{left:162.623985px;}
.x4e_c01164{left:181.349835px;}
.x10_c01164{left:183.305085px;}
.x47_c01164{left:203.436735px;}
.x23_c01164{left:216.470085px;}
.x19_c01164{left:227.374935px;}
.x39_c01164{left:229.231185px;}
.x21_c01164{left:237.769935px;}
.x4f_c01164{left:247.996635px;}
.x4a_c01164{left:249.130185px;}
.x7_c01164{left:250.204335px;}
.x1a_c01164{left:260.599335px;}
.x5c_c01164{left:262.203135px;}
.x35_c01164{left:271.514085px;}
.x3a_c01164{left:282.701085px;}
.x2b_c01164{left:284.200935px;}
.x64_c01164{left:292.516935px;}
.x1b_c01164{left:293.605935px;}
.x11_c01164{left:305.183985px;}
.x8_c01164{left:306.565035px;}
.x3b_c01164{left:315.717585px;}
.x56_c01164{left:316.771935px;}
.x24_c01164{left:327.983685px;}
.x4b_c01164{left:337.591635px;}
.x9_c01164{left:339.032085px;}
.x52_c01164{left:348.145035px;}
.x12_c01164{left:349.788435px;}
.x59_c01164{left:359.470635px;}
.x30_c01164{left:361.470435px;}
.x1c_c01164{left:372.028785px;}
.x62_c01164{left:381.542685px;}
.x31_c01164{left:383.626635px;}
.x48_c01164{left:393.407835px;}
.x3c_c01164{left:395.239335px;}
.x1d_c01164{left:405.728385px;}
.x32_c01164{left:415.682835px;}
.x25_c01164{left:417.128235px;}
.x63_c01164{left:425.058135px;}
.x65_c01164{left:426.746085px;}
.x1e_c01164{left:438.116235px;}
.xa_c01164{left:439.215135px;}
.x33_c01164{left:449.174535px;}
.x57_c01164{left:450.595185px;}
.x4c_c01164{left:451.689135px;}
.x66_c01164{left:459.515085px;}
.x26_c01164{left:461.405985px;}
.x13_c01164{left:464.380935px;}
.x14_c01164{left:470.078385px;}
.x60_c01164{left:471.301035px;}
.x27_c01164{left:472.310835px;}
.x5a_c01164{left:480.740685px;}
.x40_c01164{left:482.720685px;}
.x36_c01164{left:484.408635px;}
.x2c_c01164{left:493.368135px;}
.x4_c01164{left:498.506235px;}
.x61_c01164{left:503.708685px;}
.x53_c01164{left:506.876685px;}
.x3d_c01164{left:515.296635px;}
.x1f_c01164{left:516.563835px;}
.x5b_c01164{left:526.533135px;}
.x54_c01164{left:528.612135px;}
.x41_c01164{left:537.046935px;}
.xb_c01164{left:539.026935px;}
.x50_c01164{left:549.288285px;}
.x5_c01164{left:558.026520px;}
.x3e_c01164{left:560.039685px;}
.x42_c01164{left:561.277185px;}
.x49_c01164{left:569.835735px;}
.x28_c01164{left:571.003935px;}
.x3f_c01164{left:580.874235px;}
.x4d_c01164{left:582.809685px;}
.x55_c01164{left:591.947385px;}
.x58_c01164{left:593.056185px;}
.x43_c01164{left:595.283685px;}
.xc_c01164{left:602.966085px;}
.x20_c01164{left:604.891635px;}
.x15_c01164{left:615.286635px;}
.x44_c01164{left:617.004285px;}
.x37_c01164{left:624.290685px;}
.x2d_c01164{left:635.413335px;}
.x29_c01164{left:637.165635px;}
.x16_c01164{left:648.016035px;}
.x34_c01164{left:659.564385px;}
.x2e_c01164{left:670.493985px;}
.x45_c01164{left:681.190935px;}
.xd_c01164{left:682.260135px;}
.x67_c01164{left:691.085985px;}
.x51_c01164{left:692.843235px;}
.x2a_c01164{left:703.639185px;}
.xe_c01164{left:705.549885px;}
.x3_c01164{left:713.950035px;}
.x46_c01164{left:716.459685px;}
.x38_c01164{left:726.047835px;}
.x2f_c01164{left:727.468485px;}
@media print{
.v0_c01164{vertical-align:0.000000pt;}
.lse_c01164{letter-spacing:-2.402400pt;}
.ls5_c01164{letter-spacing:-2.303846pt;}
.lsb_c01164{letter-spacing:-2.100560pt;}
.ls14_c01164{letter-spacing:-1.364563pt;}
.ls13_c01164{letter-spacing:-1.275126pt;}
.lsd_c01164{letter-spacing:-0.204055pt;}
.ls2_c01164{letter-spacing:0.000000pt;}
.ls1_c01164{letter-spacing:0.098437pt;}
.lsf_c01164{letter-spacing:0.357351pt;}
.ls0_c01164{letter-spacing:0.539758pt;}
.ls4_c01164{letter-spacing:0.980780pt;}
.ls1a_c01164{letter-spacing:0.993485pt;}
.ls1b_c01164{letter-spacing:1.119011pt;}
.ls15_c01164{letter-spacing:1.369143pt;}
.ls12_c01164{letter-spacing:1.573198pt;}
.ls16_c01164{letter-spacing:1.628000pt;}
.ls1c_c01164{letter-spacing:1.907510pt;}
.ls17_c01164{letter-spacing:1.994473pt;}
.ls9_c01164{letter-spacing:2.580308pt;}
.ls18_c01164{letter-spacing:2.868800pt;}
.lsa_c01164{letter-spacing:3.000800pt;}
.ls8_c01164{letter-spacing:3.168000pt;}
.ls3_c01164{letter-spacing:3.291209pt;}
.ls19_c01164{letter-spacing:3.344000pt;}
.ls11_c01164{letter-spacing:3.484800pt;}
.ls6_c01164{letter-spacing:48.153776pt;}
.lsc_c01164{letter-spacing:49.420976pt;}
.ls7_c01164{letter-spacing:51.955376pt;}
.ls10_c01164{letter-spacing:53.222576pt;}
.ws1_c01164{word-spacing:-16.456044pt;}
.ws0_c01164{word-spacing:-16.195798pt;}
.ws2_c01164{word-spacing:0.000000pt;}
._7_c01164{margin-left:-17.443956pt;}
._5_c01164{margin-left:-6.056649pt;}
._2_c01164{width:4.279186pt;}
._6_c01164{width:6.648312pt;}
._3_c01164{width:8.969305pt;}
._1_c01164{width:29.827846pt;}
._4_c01164{width:35.300672pt;}
._0_c01164{width:39.326022pt;}
.fs3_c01164{font-size:19.712000pt;}
.fs18_c01164{font-size:19.888000pt;}
.fs0_c01164{font-size:24.640000pt;}
.fs1_c01164{font-size:29.568000pt;}
.fs14_c01164{font-size:32.560000pt;}
.fs11_c01164{font-size:36.432176pt;}
.fs5_c01164{font-size:48.153776pt;}
.fs9_c01164{font-size:49.420976pt;}
.fs19_c01164{font-size:50.336000pt;}
.fs6_c01164{font-size:51.955376pt;}
.fse_c01164{font-size:53.222576pt;}
.fsf_c01164{font-size:57.376000pt;}
.fsd_c01164{font-size:57.904176pt;}
.fs13_c01164{font-size:58.784176pt;}
.fs8_c01164{font-size:60.016000pt;}
.fs7_c01164{font-size:63.360000pt;}
.fsa_c01164{font-size:65.120000pt;}
.fs2_c01164{font-size:65.824176pt;}
.fs15_c01164{font-size:66.880000pt;}
.fs4_c01164{font-size:68.464176pt;}
.fsb_c01164{font-size:68.640000pt;}
.fs10_c01164{font-size:69.696000pt;}
.fs17_c01164{font-size:69.872176pt;}
.fs12_c01164{font-size:74.976000pt;}
.fsc_c01164{font-size:76.032176pt;}
.fs16_c01164{font-size:78.848000pt;}
.y0_c01164{bottom:0.000000pt;}
.y20_c01164{bottom:34.448507pt;}
.y1_c01164{bottom:68.000000pt;}
.y1f_c01164{bottom:89.892907pt;}
.y1e_c01164{bottom:114.915707pt;}
.y1d_c01164{bottom:173.211307pt;}
.y1c_c01164{bottom:202.356907pt;}
.y1b_c01164{bottom:260.010107pt;}
.y1a_c01164{bottom:288.838907pt;}
.y3_c01164{bottom:343.011707pt;}
.y19_c01164{bottom:344.916907pt;}
.y18_c01164{bottom:373.745707pt;}
.y17_c01164{bottom:401.619707pt;}
.y15_c01164{bottom:430.131707pt;}
.y16_c01164{bottom:435.204907pt;}
.y14_c01164{bottom:458.643707pt;}
.y13_c01164{bottom:487.789307pt;}
.y12_c01164{bottom:516.305707pt;}
.y11_c01164{bottom:545.451307pt;}
.y10_c01164{bottom:573.642107pt;}
.yf_c01164{bottom:601.841707pt;}
.ye_c01164{bottom:630.036907pt;}
.yd_c01164{bottom:658.548907pt;}
.yc_c01164{bottom:687.373307pt;}
.yb_c01164{bottom:742.496507pt;}
.ya_c01164{bottom:771.012907pt;}
.y9_c01164{bottom:799.841707pt;}
.y8_c01164{bottom:820.750507pt;}
.y7_c01164{bottom:828.670507pt;}
.y2_c01164{bottom:849.258107pt;}
.y6_c01164{bottom:900.261587pt;}
.y5_c01164{bottom:942.080507pt;}
.y4_c01164{bottom:946.198907pt;}
.h1a_c01164{height:19.518984pt;}
.h5_c01164{height:20.559000pt;}
.h2_c01164{height:25.698750pt;}
.h3_c01164{height:30.838500pt;}
.h7_c01164{height:32.070415pt;}
.hb_c01164{height:32.914370pt;}
.h16_c01164{height:33.959063pt;}
.h8_c01164{height:34.602280pt;}
.h10_c01164{height:35.446236pt;}
.h12_c01164{height:35.756188pt;}
.h1b_c01164{height:52.498875pt;}
.h15_c01164{height:59.841375pt;}
.hf_c01164{height:60.392246pt;}
.h14_c01164{height:61.310059pt;}
.h9_c01164{height:62.184375pt;}
.ha_c01164{height:62.594813pt;}
.hc_c01164{height:63.911719pt;}
.h4_c01164{height:64.602829pt;}
.h17_c01164{height:65.606406pt;}
.hd_c01164{height:67.366406pt;}
.h11_c01164{height:68.402813pt;}
.h19_c01164{height:68.575720pt;}
.h6_c01164{height:71.405996pt;}
.h13_c01164{height:73.584844pt;}
.he_c01164{height:74.621423pt;}
.h18_c01164{height:77.346500pt;}
.h1_c01164{height:986.666667pt;}
.h0_c01164{height:1122.666667pt;}
.w1_c01164{width:689.333333pt;}
.w0_c01164{width:793.333333pt;}
.x0_c01164{left:0.000000pt;}
.x2_c01164{left:47.710653pt;}
.x1_c01164{left:52.000000pt;}
.x5d_c01164{left:82.413453pt;}
.x22_c01164{left:83.799453pt;}
.x5e_c01164{left:93.224253pt;}
.x5f_c01164{left:131.051053pt;}
.x17_c01164{left:132.529453pt;}
.xf_c01164{left:133.655853pt;}
.x6_c01164{left:135.684253pt;}
.x18_c01164{left:144.554653pt;}
.x4e_c01164{left:161.199853pt;}
.x10_c01164{left:162.937853pt;}
.x47_c01164{left:180.832653pt;}
.x23_c01164{left:192.417853pt;}
.x19_c01164{left:202.111053pt;}
.x39_c01164{left:203.761053pt;}
.x21_c01164{left:211.351053pt;}
.x4f_c01164{left:220.441453pt;}
.x4a_c01164{left:221.449053pt;}
.x7_c01164{left:222.403853pt;}
.x1a_c01164{left:231.643853pt;}
.x5c_c01164{left:233.069453pt;}
.x35_c01164{left:241.345853pt;}
.x3a_c01164{left:251.289853pt;}
.x2b_c01164{left:252.623053pt;}
.x64_c01164{left:260.015053pt;}
.x1b_c01164{left:260.983053pt;}
.x11_c01164{left:271.274653pt;}
.x8_c01164{left:272.502253pt;}
.x3b_c01164{left:280.637853pt;}
.x56_c01164{left:281.575053pt;}
.x24_c01164{left:291.541053pt;}
.x4b_c01164{left:300.081453pt;}
.x9_c01164{left:301.361853pt;}
.x52_c01164{left:309.462253pt;}
.x12_c01164{left:310.923053pt;}
.x59_c01164{left:319.529453pt;}
.x30_c01164{left:321.307053pt;}
.x1c_c01164{left:330.692253pt;}
.x62_c01164{left:339.149053pt;}
.x31_c01164{left:341.001453pt;}
.x48_c01164{left:349.695853pt;}
.x3c_c01164{left:351.323853pt;}
.x1d_c01164{left:360.647453pt;}
.x32_c01164{left:369.495853pt;}
.x25_c01164{left:370.780653pt;}
.x63_c01164{left:377.829453pt;}
.x65_c01164{left:379.329853pt;}
.x1e_c01164{left:389.436653pt;}
.xa_c01164{left:390.413453pt;}
.x33_c01164{left:399.266253pt;}
.x57_c01164{left:400.529053pt;}
.x4c_c01164{left:401.501453pt;}
.x66_c01164{left:408.457853pt;}
.x26_c01164{left:410.138653pt;}
.x13_c01164{left:412.783053pt;}
.x14_c01164{left:417.847453pt;}
.x60_c01164{left:418.934253pt;}
.x27_c01164{left:419.831853pt;}
.x5a_c01164{left:427.325053pt;}
.x40_c01164{left:429.085053pt;}
.x36_c01164{left:430.585453pt;}
.x2c_c01164{left:438.549453pt;}
.x4_c01164{left:443.116653pt;}
.x61_c01164{left:447.741053pt;}
.x53_c01164{left:450.557053pt;}
.x3d_c01164{left:458.041453pt;}
.x1f_c01164{left:459.167853pt;}
.x5b_c01164{left:468.029453pt;}
.x54_c01164{left:469.877453pt;}
.x41_c01164{left:477.375053pt;}
.xb_c01164{left:479.135053pt;}
.x50_c01164{left:488.256253pt;}
.x5_c01164{left:496.023573pt;}
.x3e_c01164{left:497.813053pt;}
.x42_c01164{left:498.913053pt;}
.x49_c01164{left:506.520653pt;}
.x28_c01164{left:507.559053pt;}
.x3f_c01164{left:516.332653pt;}
.x4d_c01164{left:518.053053pt;}
.x55_c01164{left:526.175453pt;}
.x58_c01164{left:527.161053pt;}
.x43_c01164{left:529.141053pt;}
.xc_c01164{left:535.969853pt;}
.x20_c01164{left:537.681453pt;}
.x15_c01164{left:546.921453pt;}
.x44_c01164{left:548.448253pt;}
.x37_c01164{left:554.925053pt;}
.x2d_c01164{left:564.811853pt;}
.x29_c01164{left:566.369453pt;}
.x16_c01164{left:576.014253pt;}
.x34_c01164{left:586.279453pt;}
.x2e_c01164{left:595.994653pt;}
.x45_c01164{left:605.503053pt;}
.xd_c01164{left:606.453453pt;}
.x67_c01164{left:614.298653pt;}
.x51_c01164{left:615.860653pt;}
.x2a_c01164{left:625.457053pt;}
.xe_c01164{left:627.155453pt;}
.x3_c01164{left:634.622253pt;}
.x46_c01164{left:636.853053pt;}
.x38_c01164{left:645.375853pt;}
.x2f_c01164{left:646.638653pt;}
}





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

.ir_c01165:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01165{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01165;src:url('chunks/assets/font_53f28d9a3498d1ecfdc45c2e.woff2')format("woff");}.ff1_c01165{font-family:ff1_c01165;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01165;src:url('chunks/assets/font_280b79c857dd983bb3625882.woff2')format("woff");}.ff2_c01165{font-family:ff2_c01165;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01165;src:url('chunks/assets/font_4b5dbfb0ef3589030dfec1bd.woff2')format("woff");}.ff3_c01165{font-family:ff3_c01165;line-height:0.666000;font-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_c01165{transform:matrix(0.123234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123234,0.000000,0.000000,0.250000,0,0);}
.m26_c01165{transform:matrix(0.127907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127907,0.000000,0.000000,0.250000,0,0);}
.m24_c01165{transform:matrix(0.152755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152755,0.000000,0.000000,0.250000,0,0);}
.m38_c01165{transform:matrix(0.156944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156944,0.000000,0.000000,0.250000,0,0);}
.m69_c01165{transform:matrix(0.170543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170543,0.000000,0.000000,0.250000,0,0);}
.m43_c01165{transform:matrix(0.177982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177982,0.000000,0.000000,0.250000,0,0);}
.m25_c01165{transform:matrix(0.184843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184843,0.000000,0.000000,0.250000,0,0);}
.m30_c01165{transform:matrix(0.184960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184960,0.000000,0.000000,0.250000,0,0);}
.mf_c01165{transform:matrix(0.197222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197222,0.000000,0.000000,0.250000,0,0);}
.m5e_c01165{transform:matrix(0.201181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201181,0.000000,0.000000,0.250000,0,0);}
.m2b_c01165{transform:matrix(0.201733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201733,0.000000,0.000000,0.250000,0,0);}
.m58_c01165{transform:matrix(0.214191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214191,0.000000,0.000000,0.250000,0,0);}
.ma_c01165{transform:matrix(0.216821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216821,0.000000,0.000000,0.250000,0,0);}
.me_c01165{transform:matrix(0.232639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232639,0.000000,0.000000,0.250000,0,0);}
.m51_c01165{transform:matrix(0.246275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246275,0.000000,0.000000,0.250000,0,0);}
.m36_c01165{transform:matrix(0.249732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249732,0.000000,0.000000,0.250000,0,0);}
.m0_c01165{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01165{transform:matrix(0.250051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250051,0.000000,0.000000,0.250000,0,0);}
.m15_c01165{transform:matrix(0.250875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250875,0.000000,0.000000,0.250000,0,0);}
.m34_c01165{transform:matrix(0.250906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250906,0.000000,0.000000,0.250000,0,0);}
.m1b_c01165{transform:matrix(0.252482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252482,0.000000,0.000000,0.250000,0,0);}
.m32_c01165{transform:matrix(0.252849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252849,0.000000,0.000000,0.250000,0,0);}
.m31_c01165{transform:matrix(0.253423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253423,0.000000,0.000000,0.250000,0,0);}
.m2d_c01165{transform:matrix(0.253455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253455,0.000000,0.000000,0.250000,0,0);}
.m50_c01165{transform:matrix(0.255047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255047,0.000000,0.000000,0.250000,0,0);}
.m4f_c01165{transform:matrix(0.255971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255971,0.000000,0.000000,0.250000,0,0);}
.m4e_c01165{transform:matrix(0.256942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256942,0.000000,0.000000,0.250000,0,0);}
.m5d_c01165{transform:matrix(0.257903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257903,0.000000,0.000000,0.250000,0,0);}
.m6d_c01165{transform:matrix(0.258686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258686,0.000000,0.000000,0.250000,0,0);}
.m1e_c01165{transform:matrix(0.258702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258702,0.000000,0.000000,0.250000,0,0);}
.m4c_c01165{transform:matrix(0.262770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262770,0.000000,0.000000,0.250000,0,0);}
.m2f_c01165{transform:matrix(0.264296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264296,0.000000,0.000000,0.250000,0,0);}
.m8_c01165{transform:matrix(0.268669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268669,0.000000,0.000000,0.250000,0,0);}
.m18_c01165{transform:matrix(0.270287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270287,0.000000,0.000000,0.250000,0,0);}
.m49_c01165{transform:matrix(0.271161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271161,0.000000,0.000000,0.250000,0,0);}
.m6b_c01165{transform:matrix(0.273274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273274,0.000000,0.000000,0.250000,0,0);}
.m61_c01165{transform:matrix(0.273873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273873,0.000000,0.000000,0.250000,0,0);}
.m3c_c01165{transform:matrix(0.274557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274557,0.000000,0.000000,0.250000,0,0);}
.m14_c01165{transform:matrix(0.275114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275114,0.000000,0.000000,0.250000,0,0);}
.m44_c01165{transform:matrix(0.278154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278154,0.000000,0.000000,0.250000,0,0);}
.m1c_c01165{transform:matrix(0.279941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279941,0.000000,0.000000,0.250000,0,0);}
.m39_c01165{transform:matrix(0.283597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283597,0.000000,0.000000,0.250000,0,0);}
.m3e_c01165{transform:matrix(0.285037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285037,0.000000,0.000000,0.250000,0,0);}
.m64_c01165{transform:matrix(0.285185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285185,0.000000,0.000000,0.250000,0,0);}
.m5b_c01165{transform:matrix(0.285627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285627,0.000000,0.000000,0.250000,0,0);}
.m6c_c01165{transform:matrix(0.285870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285870,0.000000,0.000000,0.250000,0,0);}
.m35_c01165{transform:matrix(0.286107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286107,0.000000,0.000000,0.250000,0,0);}
.m2a_c01165{transform:matrix(0.286225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286225,0.000000,0.000000,0.250000,0,0);}
.m3f_c01165{transform:matrix(0.287656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287656,0.000000,0.000000,0.250000,0,0);}
.m33_c01165{transform:matrix(0.287819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287819,0.000000,0.000000,0.250000,0,0);}
.m5a_c01165{transform:matrix(0.288366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288366,0.000000,0.000000,0.250000,0,0);}
.m16_c01165{transform:matrix(0.288639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288639,0.000000,0.000000,0.250000,0,0);}
.m5_c01165{transform:matrix(0.290332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290332,0.000000,0.000000,0.250000,0,0);}
.m52_c01165{transform:matrix(0.290571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290571,0.000000,0.000000,0.250000,0,0);}
.m19_c01165{transform:matrix(0.291591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291591,0.000000,0.000000,0.250000,0,0);}
.m3b_c01165{transform:matrix(0.293496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293496,0.000000,0.000000,0.250000,0,0);}
.m1_c01165{transform:matrix(0.294028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294028,0.000000,0.000000,0.250000,0,0);}
.m5f_c01165{transform:matrix(0.297427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297427,0.000000,0.000000,0.250000,0,0);}
.m7_c01165{transform:matrix(0.297532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297532,0.000000,0.000000,0.250000,0,0);}
.m54_c01165{transform:matrix(0.297646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297646,0.000000,0.000000,0.250000,0,0);}
.m21_c01165{transform:matrix(0.297689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297689,0.000000,0.000000,0.250000,0,0);}
.m63_c01165{transform:matrix(0.300074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300074,0.000000,0.000000,0.250000,0,0);}
.mb_c01165{transform:matrix(0.300169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300169,0.000000,0.000000,0.250000,0,0);}
.m56_c01165{transform:matrix(0.300636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300636,0.000000,0.000000,0.250000,0,0);}
.m10_c01165{transform:matrix(0.301254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301254,0.000000,0.000000,0.250000,0,0);}
.m1f_c01165{transform:matrix(0.301351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301351,0.000000,0.000000,0.250000,0,0);}
.m1a_c01165{transform:matrix(0.301648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301648,0.000000,0.000000,0.250000,0,0);}
.m65_c01165{transform:matrix(0.301760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301760,0.000000,0.000000,0.250000,0,0);}
.m53_c01165{transform:matrix(0.302460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302460,0.000000,0.000000,0.250000,0,0);}
.m20_c01165{transform:matrix(0.302605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302605,0.000000,0.000000,0.250000,0,0);}
.m40_c01165{transform:matrix(0.303012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303012,0.000000,0.000000,0.250000,0,0);}
.m4d_c01165{transform:matrix(0.303616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303616,0.000000,0.000000,0.250000,0,0);}
.m45_c01165{transform:matrix(0.304032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304032,0.000000,0.000000,0.250000,0,0);}
.m68_c01165{transform:matrix(0.304477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304477,0.000000,0.000000,0.250000,0,0);}
.m57_c01165{transform:matrix(0.304640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304640,0.000000,0.000000,0.250000,0,0);}
.m3a_c01165{transform:matrix(0.306095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306095,0.000000,0.000000,0.250000,0,0);}
.m3d_c01165{transform:matrix(0.306861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306861,0.000000,0.000000,0.250000,0,0);}
.m22_c01165{transform:matrix(0.309764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309764,0.000000,0.000000,0.250000,0,0);}
.m23_c01165{transform:matrix(0.309980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309980,0.000000,0.000000,0.250000,0,0);}
.m46_c01165{transform:matrix(0.310070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310070,0.000000,0.000000,0.250000,0,0);}
.m6_c01165{transform:matrix(0.311190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311190,0.000000,0.000000,0.250000,0,0);}
.m17_c01165{transform:matrix(0.311239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311239,0.000000,0.000000,0.250000,0,0);}
.m6a_c01165{transform:matrix(0.311763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311763,0.000000,0.000000,0.250000,0,0);}
.m59_c01165{transform:matrix(0.313134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313134,0.000000,0.000000,0.250000,0,0);}
.m2e_c01165{transform:matrix(0.313771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313771,0.000000,0.000000,0.250000,0,0);}
.m4a_c01165{transform:matrix(0.315816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315816,0.000000,0.000000,0.250000,0,0);}
.m67_c01165{transform:matrix(0.316852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316852,0.000000,0.000000,0.250000,0,0);}
.md_c01165{transform:matrix(0.317671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317671,0.000000,0.000000,0.250000,0,0);}
.m27_c01165{transform:matrix(0.318251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318251,0.000000,0.000000,0.250000,0,0);}
.m62_c01165{transform:matrix(0.320450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320450,0.000000,0.000000,0.250000,0,0);}
.m13_c01165{transform:matrix(0.322590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322590,0.000000,0.000000,0.250000,0,0);}
.m41_c01165{transform:matrix(0.322906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322906,0.000000,0.000000,0.250000,0,0);}
.m2_c01165{transform:matrix(0.324049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324049,0.000000,0.000000,0.250000,0,0);}
.m4b_c01165{transform:matrix(0.324502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324502,0.000000,0.000000,0.250000,0,0);}
.m9_c01165{transform:matrix(0.325252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325252,0.000000,0.000000,0.250000,0,0);}
.m55_c01165{transform:matrix(0.334152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334152,0.000000,0.000000,0.250000,0,0);}
.m3_c01165{transform:matrix(0.334389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334389,0.000000,0.000000,0.250000,0,0);}
.m47_c01165{transform:matrix(0.339793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339793,0.000000,0.000000,0.250000,0,0);}
.m42_c01165{transform:matrix(0.340882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340882,0.000000,0.000000,0.250000,0,0);}
.m5c_c01165{transform:matrix(0.341510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341510,0.000000,0.000000,0.250000,0,0);}
.m28_c01165{transform:matrix(0.350016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350016,0.000000,0.000000,0.250000,0,0);}
.m12_c01165{transform:matrix(0.350644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350644,0.000000,0.000000,0.250000,0,0);}
.m11_c01165{transform:matrix(0.351845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351845,0.000000,0.000000,0.250000,0,0);}
.m2c_c01165{transform:matrix(0.364923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364923,0.000000,0.000000,0.250000,0,0);}
.m48_c01165{transform:matrix(0.370152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370152,0.000000,0.000000,0.250000,0,0);}
.m60_c01165{transform:matrix(0.371262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371262,0.000000,0.000000,0.250000,0,0);}
.m66_c01165{transform:matrix(0.389235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389235,0.000000,0.000000,0.250000,0,0);}
.m4_c01165{transform:matrix(0.396432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396432,0.000000,0.000000,0.250000,0,0);}
.mc_c01165{transform:matrix(0.402725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402725,0.000000,0.000000,0.250000,0,0);}
.m37_c01165{transform:matrix(0.410659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410659,0.000000,0.000000,0.250000,0,0);}
.v0_c01165{vertical-align:0.000000px;}
.v1_c01165{vertical-align:11.404800px;}
.ls17_c01165{letter-spacing:-3.153150px;}
.ls11_c01165{letter-spacing:-2.626477px;}
.lsd_c01165{letter-spacing:-2.612617px;}
.lsf_c01165{letter-spacing:-1.545176px;}
.ls1e_c01165{letter-spacing:-1.538365px;}
.ls12_c01165{letter-spacing:-1.335751px;}
.ls1c_c01165{letter-spacing:-1.295917px;}
.ls19_c01165{letter-spacing:-1.275120px;}
.ls16_c01165{letter-spacing:-0.153153px;}
.ls5_c01165{letter-spacing:0.000000px;}
.ls1a_c01165{letter-spacing:0.155905px;}
.ls4_c01165{letter-spacing:0.996138px;}
.ls20_c01165{letter-spacing:1.043087px;}
.ls3_c01165{letter-spacing:1.523357px;}
.ls1_c01165{letter-spacing:1.603602px;}
.ls15_c01165{letter-spacing:1.983762px;}
.lsb_c01165{letter-spacing:2.191945px;}
.lsc_c01165{letter-spacing:2.281752px;}
.ls1d_c01165{letter-spacing:2.750022px;}
.ls0_c01165{letter-spacing:2.901103px;}
.ls2_c01165{letter-spacing:3.243834px;}
.ls9_c01165{letter-spacing:3.267000px;}
.ls1b_c01165{letter-spacing:3.425400px;}
.ls6_c01165{letter-spacing:3.712500px;}
.ls10_c01165{letter-spacing:3.732310px;}
.ls7_c01165{letter-spacing:3.752110px;}
.ls13_c01165{letter-spacing:3.999610px;}
.ls1f_c01165{letter-spacing:4.098610px;}
.lsa_c01165{letter-spacing:4.257000px;}
.ls8_c01165{letter-spacing:51.321798px;}
.ls14_c01165{letter-spacing:58.449798px;}
.lse_c01165{letter-spacing:61.300998px;}
.ls18_c01165{letter-spacing:64.152198px;}
.sc__c01165{text-shadow:none;}
.sc0_c01165{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01165{-webkit-text-stroke:0px transparent;}
.sc0_c01165{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01165{word-spacing:-24.528834px;}
.ws2_c01165{word-spacing:-22.281138px;}
.ws3_c01165{word-spacing:-17.222184px;}
.ws4_c01165{word-spacing:0.000000px;}
.ws0_c01165{word-spacing:7.428459px;}
._6_c01165{margin-left:-16.006320px;}
._5_c01165{margin-left:-6.249276px;}
._a_c01165{width:2.476336px;}
._8_c01165{width:12.132450px;}
._1_c01165{width:20.124741px;}
._9_c01165{width:28.303951px;}
._3_c01165{width:31.462200px;}
._7_c01165{width:35.598150px;}
._2_c01165{width:38.976151px;}
._0_c01165{width:43.991640px;}
._4_c01165{width:1138.758390px;}
.fc0_c01165{color:transparent;}
.fs2_c01165{font-size:22.176000px;}
.fs11_c01165{font-size:25.146000px;}
.fs0_c01165{font-size:27.720000px;}
.fs13_c01165{font-size:33.264000px;}
.fs18_c01165{font-size:34.650000px;}
.fs14_c01165{font-size:36.432000px;}
.fs19_c01165{font-size:37.026198px;}
.fs15_c01165{font-size:50.292000px;}
.fs4_c01165{font-size:51.321798px;}
.fsd_c01165{font-size:58.449798px;}
.fsa_c01165{font-size:61.300998px;}
.fs10_c01165{font-size:64.152198px;}
.fs6_c01165{font-size:65.340000px;}
.fs17_c01165{font-size:66.330000px;}
.fse_c01165{font-size:67.320000px;}
.fs16_c01165{font-size:68.508000px;}
.fs5_c01165{font-size:72.864000px;}
.fs1_c01165{font-size:74.250000px;}
.fs9_c01165{font-size:74.646198px;}
.fsb_c01165{font-size:74.844000px;}
.fs3_c01165{font-size:75.042198px;}
.fs12_c01165{font-size:77.616198px;}
.fsc_c01165{font-size:79.992198px;}
.fs8_c01165{font-size:80.586198px;}
.fs1a_c01165{font-size:81.972198px;}
.fs7_c01165{font-size:85.140000px;}
.fsf_c01165{font-size:90.090000px;}
.y0_c01165{bottom:0.000000px;}
.y1_c01165{bottom:76.500000px;}
.y1e_c01165{bottom:224.800335px;}
.y1d_c01165{bottom:257.227785px;}
.y1c_c01165{bottom:288.590985px;}
.y19_c01165{bottom:324.230985px;}
.y1b_c01165{bottom:331.002585px;}
.y1a_c01165{bottom:338.848335px;}
.y18_c01165{bottom:353.099385px;}
.y17_c01165{bottom:385.536735px;}
.y16_c01165{bottom:421.176735px;}
.y2_c01165{bottom:447.545385px;}
.y15_c01165{bottom:449.332335px;}
.y14_c01165{bottom:481.759785px;}
.y13_c01165{bottom:514.548585px;}
.y10_c01165{bottom:544.847535px;}
.y12_c01165{bottom:546.273135px;}
.y11_c01165{bottom:600.797385px;}
.yf_c01165{bottom:601.158735px;}
.ye_c01165{bottom:610.425135px;}
.yd_c01165{bottom:626.101785px;}
.yc_c01165{bottom:673.146585px;}
.yb_c01165{bottom:706.291785px;}
.ya_c01165{bottom:737.659935px;}
.y9_c01165{bottom:801.811935px;}
.y8_c01165{bottom:833.882985px;}
.y7_c01165{bottom:866.671785px;}
.y6_c01165{bottom:899.104185px;}
.y5_c01165{bottom:931.185135px;}
.y4_c01165{bottom:983.219535px;}
.y3_c01165{bottom:1063.760985px;}
.h17_c01165{height:23.128875px;}
.h2_c01165{height:28.911094px;}
.h5_c01165{height:34.180317px;}
.h13_c01165{height:34.693313px;}
.h19_c01165{height:36.138867px;}
.h1a_c01165{height:36.339188px;}
.h14_c01165{height:37.997438px;}
.he_c01165{height:38.927565px;}
.hb_c01165{height:40.826465px;}
.h11_c01165{height:42.725364px;}
.h15_c01165{height:49.358848px;}
.hf_c01165{height:66.070898px;}
.h16_c01165{height:67.236855px;}
.h7_c01165{height:68.147578px;}
.h18_c01165{height:69.180117px;}
.h6_c01165{height:71.512031px;}
.h3_c01165{height:72.872314px;}
.ha_c01165{height:73.261161px;}
.hc_c01165{height:73.455293px;}
.h4_c01165{height:73.649813px;}
.hd_c01165{height:78.507968px;}
.h9_c01165{height:79.090946px;}
.h1b_c01165{height:80.451229px;}
.h12_c01165{height:80.951269px;}
.h8_c01165{height:83.560254px;}
.h10_c01165{height:88.418408px;}
.h1_c01165{height:1110.000000px;}
.h0_c01165{height:1263.000000px;}
.w1_c01165{width:775.500000px;}
.w0_c01165{width:892.500000px;}
.x0_c01165{left:0.000000px;}
.x2_c01165{left:13.064685px;}
.x1_c01165{left:58.500000px;}
.x3f_c01165{left:98.635335px;}
.x2a_c01165{left:100.100535px;}
.x1d_c01165{left:154.199085px;}
.x16_c01165{left:155.684085px;}
.xd_c01165{left:156.733485px;}
.x5_c01165{left:158.465985px;}
.x3b_c01165{left:167.752185px;}
.x47_c01165{left:177.399735px;}
.x6_c01165{left:178.483785px;}
.x56_c01165{left:189.403485px;}
.x48_c01165{left:200.729085px;}
.xe_c01165{left:210.945885px;}
.x53_c01165{left:220.548885px;}
.x27_c01165{left:222.999135px;}
.x49_c01165{left:224.602935px;}
.xf_c01165{left:234.141585px;}
.x4a_c01165{left:243.021885px;}
.x58_c01165{left:244.501935px;}
.x7_c01165{left:255.485985px;}
.x4d_c01165{left:265.455285px;}
.x44_c01165{left:266.519535px;}
.x2b_c01165{left:269.608335px;}
.x34_c01165{left:277.592685px;}
.x17_c01165{left:278.835135px;}
.x1e_c01165{left:292.289235px;}
.x35_c01165{left:300.922035px;}
.x59_c01165{left:310.148835px;}
.x1f_c01165{left:311.995185px;}
.x40_c01165{left:321.043785px;}
.x3d_c01165{left:322.172385px;}
.x54_c01165{left:331.666485px;}
.x28_c01165{left:333.958335px;}
.x50_c01165{left:343.477185px;}
.x8_c01165{left:344.719635px;}
.x4e_c01165{left:346.061085px;}
.x2c_c01165{left:355.381935px;}
.x36_c01165{left:366.880785px;}
.x2d_c01165{left:377.122335px;}
.x9_c01165{left:378.879585px;}
.x5a_c01165{left:387.339135px;}
.x10_c01165{left:388.908285px;}
.x57_c01165{left:390.328935px;}
.x37_c01165{left:400.223985px;}
.x29_c01165{left:422.281185px;}
.x11_c01165{left:423.850335px;}
.x20_c01165{left:434.240385px;}
.x41_c01165{left:435.463035px;}
.x18_c01165{left:444.927435px;}
.x21_c01165{left:466.311435px;}
.xa_c01165{left:468.038985px;}
.x38_c01165{left:476.820285px;}
.x19_c01165{left:477.879585px;}
.x2e_c01165{left:488.566635px;}
.x45_c01165{left:491.254485px;}
.x55_c01165{left:498.644835px;}
.x46_c01165{left:502.288035px;}
.x12_c01165{left:509.643735px;}
.x5b_c01165{left:510.752535px;}
.x22_c01165{left:522.627585px;}
.x4b_c01165{left:531.285135px;}
.x13_c01165{left:533.873985px;}
.x5c_c01165{left:542.026635px;}
.x23_c01165{left:544.358085px;}
.xb_c01165{left:554.505585px;}
.x2f_c01165{left:555.515385px;}
.x30_c01165{left:567.271635px;}
.x1a_c01165{left:576.364785px;}
.x24_c01165{left:578.027985px;}
.x14_c01165{left:598.926885px;}
.x39_c01165{left:609.386235px;}
.x1b_c01165{left:612.351285px;}
.x42_c01165{left:620.573235px;}
.x31_c01165{left:622.102785px;}
.x4_c01165{left:626.785485px;}
.x4c_c01165{left:631.775085px;}
.x25_c01165{left:642.160185px;}
.x32_c01165{left:652.822485px;}
.x43_c01165{left:655.450935px;}
.x4f_c01165{left:669.221835px;}
.xc_c01165{left:677.290335px;}
.x33_c01165{left:687.076485px;}
.x15_c01165{left:699.307935px;}
.x51_c01165{left:705.218235px;}
.x3c_c01165{left:708.237735px;}
.x3e_c01165{left:709.272285px;}
.x26_c01165{left:711.583935px;}
.x52_c01165{left:714.276735px;}
.x3_c01165{left:715.732035px;}
.x3a_c01165{left:721.053285px;}
.x1c_c01165{left:732.547185px;}
@media print{
.v0_c01165{vertical-align:0.000000pt;}
.v1_c01165{vertical-align:10.137600pt;}
.ls17_c01165{letter-spacing:-2.802800pt;}
.ls11_c01165{letter-spacing:-2.334646pt;}
.lsd_c01165{letter-spacing:-2.322326pt;}
.lsf_c01165{letter-spacing:-1.373490pt;}
.ls1e_c01165{letter-spacing:-1.367436pt;}
.ls12_c01165{letter-spacing:-1.187334pt;}
.ls1c_c01165{letter-spacing:-1.151926pt;}
.ls19_c01165{letter-spacing:-1.133440pt;}
.ls16_c01165{letter-spacing:-0.136136pt;}
.ls5_c01165{letter-spacing:0.000000pt;}
.ls1a_c01165{letter-spacing:0.138582pt;}
.ls4_c01165{letter-spacing:0.885456pt;}
.ls20_c01165{letter-spacing:0.927188pt;}
.ls3_c01165{letter-spacing:1.354095pt;}
.ls1_c01165{letter-spacing:1.425424pt;}
.ls15_c01165{letter-spacing:1.763344pt;}
.lsb_c01165{letter-spacing:1.948395pt;}
.lsc_c01165{letter-spacing:2.028224pt;}
.ls1d_c01165{letter-spacing:2.444464pt;}
.ls0_c01165{letter-spacing:2.578758pt;}
.ls2_c01165{letter-spacing:2.883408pt;}
.ls9_c01165{letter-spacing:2.904000pt;}
.ls1b_c01165{letter-spacing:3.044800pt;}
.ls6_c01165{letter-spacing:3.300000pt;}
.ls10_c01165{letter-spacing:3.317609pt;}
.ls7_c01165{letter-spacing:3.335209pt;}
.ls13_c01165{letter-spacing:3.555209pt;}
.ls1f_c01165{letter-spacing:3.643209pt;}
.lsa_c01165{letter-spacing:3.784000pt;}
.ls8_c01165{letter-spacing:45.619376pt;}
.ls14_c01165{letter-spacing:51.955376pt;}
.lse_c01165{letter-spacing:54.489776pt;}
.ls18_c01165{letter-spacing:57.024176pt;}
.ws1_c01165{word-spacing:-21.803408pt;}
.ws2_c01165{word-spacing:-19.805456pt;}
.ws3_c01165{word-spacing:-15.308608pt;}
.ws4_c01165{word-spacing:0.000000pt;}
.ws0_c01165{word-spacing:6.603075pt;}
._6_c01165{margin-left:-14.227840pt;}
._5_c01165{margin-left:-5.554912pt;}
._a_c01165{width:2.201188pt;}
._8_c01165{width:10.784400pt;}
._1_c01165{width:17.888659pt;}
._9_c01165{width:25.159068pt;}
._3_c01165{width:27.966400pt;}
._7_c01165{width:31.642800pt;}
._2_c01165{width:34.645468pt;}
._0_c01165{width:39.103680pt;}
._4_c01165{width:1012.229680pt;}
.fs2_c01165{font-size:19.712000pt;}
.fs11_c01165{font-size:22.352000pt;}
.fs0_c01165{font-size:24.640000pt;}
.fs13_c01165{font-size:29.568000pt;}
.fs18_c01165{font-size:30.800000pt;}
.fs14_c01165{font-size:32.384000pt;}
.fs19_c01165{font-size:32.912176pt;}
.fs15_c01165{font-size:44.704000pt;}
.fs4_c01165{font-size:45.619376pt;}
.fsd_c01165{font-size:51.955376pt;}
.fsa_c01165{font-size:54.489776pt;}
.fs10_c01165{font-size:57.024176pt;}
.fs6_c01165{font-size:58.080000pt;}
.fs17_c01165{font-size:58.960000pt;}
.fse_c01165{font-size:59.840000pt;}
.fs16_c01165{font-size:60.896000pt;}
.fs5_c01165{font-size:64.768000pt;}
.fs1_c01165{font-size:66.000000pt;}
.fs9_c01165{font-size:66.352176pt;}
.fsb_c01165{font-size:66.528000pt;}
.fs3_c01165{font-size:66.704176pt;}
.fs12_c01165{font-size:68.992176pt;}
.fsc_c01165{font-size:71.104176pt;}
.fs8_c01165{font-size:71.632176pt;}
.fs1a_c01165{font-size:72.864176pt;}
.fs7_c01165{font-size:75.680000pt;}
.fsf_c01165{font-size:80.080000pt;}
.y0_c01165{bottom:0.000000pt;}
.y1_c01165{bottom:68.000000pt;}
.y1e_c01165{bottom:199.822520pt;}
.y1d_c01165{bottom:228.646920pt;}
.y1c_c01165{bottom:256.525320pt;}
.y19_c01165{bottom:288.205320pt;}
.y1b_c01165{bottom:294.224520pt;}
.y1a_c01165{bottom:301.198520pt;}
.y18_c01165{bottom:313.866120pt;}
.y17_c01165{bottom:342.699320pt;}
.y16_c01165{bottom:374.379320pt;}
.y2_c01165{bottom:397.818120pt;}
.y15_c01165{bottom:399.406520pt;}
.y14_c01165{bottom:428.230920pt;}
.y13_c01165{bottom:457.376520pt;}
.y10_c01165{bottom:484.308920pt;}
.y12_c01165{bottom:485.576120pt;}
.y11_c01165{bottom:534.042120pt;}
.yf_c01165{bottom:534.363320pt;}
.ye_c01165{bottom:542.600120pt;}
.yd_c01165{bottom:556.534920pt;}
.yc_c01165{bottom:598.352520pt;}
.yb_c01165{bottom:627.814920pt;}
.ya_c01165{bottom:655.697720pt;}
.y9_c01165{bottom:712.721720pt;}
.y8_c01165{bottom:741.229320pt;}
.y7_c01165{bottom:770.374920pt;}
.y6_c01165{bottom:799.203720pt;}
.y5_c01165{bottom:827.720120pt;}
.y4_c01165{bottom:873.972920pt;}
.y3_c01165{bottom:945.565320pt;}
.h17_c01165{height:20.559000pt;}
.h2_c01165{height:25.698750pt;}
.h5_c01165{height:30.382504pt;}
.h13_c01165{height:30.838500pt;}
.h19_c01165{height:32.123438pt;}
.h1a_c01165{height:32.301501pt;}
.h14_c01165{height:33.775500pt;}
.he_c01165{height:34.602280pt;}
.hb_c01165{height:36.290191pt;}
.h11_c01165{height:37.978101pt;}
.h15_c01165{height:43.874531pt;}
.hf_c01165{height:58.729688pt;}
.h16_c01165{height:59.766094pt;}
.h7_c01165{height:60.575625pt;}
.h18_c01165{height:61.493438pt;}
.h6_c01165{height:63.566250pt;}
.h3_c01165{height:64.775391pt;}
.ha_c01165{height:65.121032pt;}
.hc_c01165{height:65.293594pt;}
.h4_c01165{height:65.466501pt;}
.hd_c01165{height:69.784860pt;}
.h9_c01165{height:70.303063pt;}
.h1b_c01165{height:71.512204pt;}
.h12_c01165{height:71.956684pt;}
.h8_c01165{height:74.275781pt;}
.h10_c01165{height:78.594141pt;}
.h1_c01165{height:986.666667pt;}
.h0_c01165{height:1122.666667pt;}
.w1_c01165{width:689.333333pt;}
.w0_c01165{width:793.333333pt;}
.x0_c01165{left:0.000000pt;}
.x2_c01165{left:11.613053pt;}
.x1_c01165{left:52.000000pt;}
.x3f_c01165{left:87.675853pt;}
.x2a_c01165{left:88.978253pt;}
.x1d_c01165{left:137.065853pt;}
.x16_c01165{left:138.385853pt;}
.xd_c01165{left:139.318653pt;}
.x5_c01165{left:140.858653pt;}
.x3b_c01165{left:149.113053pt;}
.x47_c01165{left:157.688653pt;}
.x6_c01165{left:158.652253pt;}
.x56_c01165{left:168.358653pt;}
.x48_c01165{left:178.425853pt;}
.xe_c01165{left:187.507453pt;}
.x53_c01165{left:196.043453pt;}
.x27_c01165{left:198.221453pt;}
.x49_c01165{left:199.647053pt;}
.xf_c01165{left:208.125853pt;}
.x4a_c01165{left:216.019453pt;}
.x58_c01165{left:217.335053pt;}
.x7_c01165{left:227.098653pt;}
.x4d_c01165{left:235.960253pt;}
.x44_c01165{left:236.906253pt;}
.x2b_c01165{left:239.651853pt;}
.x34_c01165{left:246.749053pt;}
.x17_c01165{left:247.853453pt;}
.x1e_c01165{left:259.812653pt;}
.x35_c01165{left:267.486253pt;}
.x59_c01165{left:275.687853pt;}
.x1f_c01165{left:277.329053pt;}
.x40_c01165{left:285.372253pt;}
.x3d_c01165{left:286.375453pt;}
.x54_c01165{left:294.814653pt;}
.x28_c01165{left:296.851853pt;}
.x50_c01165{left:305.313053pt;}
.x8_c01165{left:306.417453pt;}
.x4e_c01165{left:307.609853pt;}
.x2c_c01165{left:315.895053pt;}
.x36_c01165{left:326.116253pt;}
.x2d_c01165{left:335.219853pt;}
.x9_c01165{left:336.781853pt;}
.x5a_c01165{left:344.301453pt;}
.x10_c01165{left:345.696253pt;}
.x57_c01165{left:346.959053pt;}
.x37_c01165{left:355.754653pt;}
.x29_c01165{left:375.361053pt;}
.x11_c01165{left:376.755853pt;}
.x20_c01165{left:385.991453pt;}
.x41_c01165{left:387.078253pt;}
.x18_c01165{left:395.491053pt;}
.x21_c01165{left:414.499053pt;}
.xa_c01165{left:416.034653pt;}
.x38_c01165{left:423.840253pt;}
.x19_c01165{left:424.781853pt;}
.x2e_c01165{left:434.281453pt;}
.x45_c01165{left:436.670653pt;}
.x55_c01165{left:443.239853pt;}
.x46_c01165{left:446.478253pt;}
.x12_c01165{left:453.016653pt;}
.x5b_c01165{left:454.002253pt;}
.x22_c01165{left:464.557853pt;}
.x4b_c01165{left:472.253453pt;}
.x13_c01165{left:474.554653pt;}
.x5c_c01165{left:481.801453pt;}
.x23_c01165{left:483.873853pt;}
.xb_c01165{left:492.893853pt;}
.x2f_c01165{left:493.791453pt;}
.x30_c01165{left:504.241453pt;}
.x1a_c01165{left:512.324253pt;}
.x24_c01165{left:513.802653pt;}
.x14_c01165{left:532.379453pt;}
.x39_c01165{left:541.676653pt;}
.x1b_c01165{left:544.312253pt;}
.x42_c01165{left:551.620653pt;}
.x31_c01165{left:552.980253pt;}
.x4_c01165{left:557.142653pt;}
.x4c_c01165{left:561.577853pt;}
.x25_c01165{left:570.809053pt;}
.x32_c01165{left:580.286653pt;}
.x43_c01165{left:582.623053pt;}
.x4f_c01165{left:594.863853pt;}
.xc_c01165{left:602.035853pt;}
.x33_c01165{left:610.734653pt;}
.x15_c01165{left:621.607053pt;}
.x51_c01165{left:626.860653pt;}
.x3c_c01165{left:629.544653pt;}
.x3e_c01165{left:630.464253pt;}
.x26_c01165{left:632.519053pt;}
.x52_c01165{left:634.912653pt;}
.x3_c01165{left:636.206253pt;}
.x3a_c01165{left:640.936253pt;}
.x1c_c01165{left:651.153053pt;}
}





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

.ir_c01166:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01166{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01166;src:url('chunks/assets/font_d9c53050336e11e181acdb2f.woff2')format("woff");}.ff1_c01166{font-family:ff1_c01166;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01166;src:url('chunks/assets/font_eef8fe9082b4f051549bfe01.woff2')format("woff");}.ff2_c01166{font-family:ff2_c01166;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01166;src:url('chunks/assets/font_dc6d1bd377ca2214a818a2c3.woff2')format("woff");}.ff3_c01166{font-family:ff3_c01166;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01166;src:url('chunks/assets/font_23e18519227b6118c403ae15.woff2')format("woff");}.ff4_c01166{font-family:ff4_c01166;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01166;src:url('chunks/assets/font_9169acb4d21063b49710f894.woff2')format("woff");}.ff5_c01166{font-family:ff5_c01166;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01166;src:url('chunks/assets/font_b1640ae7578c0ba308311a6f.woff2')format("woff");}.ff6_c01166{font-family:ff6_c01166;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m29_c01166{transform:matrix(0.032896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032896,0.000000,0.000000,0.250000,0,0);}
.m10_c01166{transform:matrix(0.034884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.034884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.034884,0.000000,0.000000,0.250000,0,0);}
.m57_c01166{transform:matrix(0.073864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073864,0.000000,0.000000,0.250000,0,0);}
.m58_c01166{transform:matrix(0.086649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086649,0.000000,0.000000,0.250000,0,0);}
.m42_c01166{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);}
.m59_c01166{transform:matrix(0.089015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089015,0.000000,0.000000,0.250000,0,0);}
.m80_c01166{transform:matrix(0.121887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121887,0.000000,0.000000,0.250000,0,0);}
.m11_c01166{transform:matrix(0.122480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122480,0.000000,0.000000,0.250000,0,0);}
.m88_c01166{transform:matrix(0.145022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145022,0.000000,0.000000,0.250000,0,0);}
.m5a_c01166{transform:matrix(0.145455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145455,0.000000,0.000000,0.250000,0,0);}
.m50_c01166{transform:matrix(0.148450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148450,0.000000,0.000000,0.250000,0,0);}
.m6e_c01166{transform:matrix(0.171131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171131,0.000000,0.000000,0.250000,0,0);}
.m55_c01166{transform:matrix(0.173655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173655,0.000000,0.000000,0.250000,0,0);}
.mf_c01166{transform:matrix(0.174418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174418,0.000000,0.000000,0.250000,0,0);}
.m40_c01166{transform:matrix(0.179750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179750,0.000000,0.000000,0.250000,0,0);}
.m26_c01166{transform:matrix(0.180060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180060,0.000000,0.000000,0.250000,0,0);}
.m6c_c01166{transform:matrix(0.181548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181548,0.000000,0.000000,0.250000,0,0);}
.m6d_c01166{transform:matrix(0.181973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181973,0.000000,0.000000,0.250000,0,0);}
.m24_c01166{transform:matrix(0.184523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184523,0.000000,0.000000,0.250000,0,0);}
.m7e_c01166{transform:matrix(0.190149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190149,0.000000,0.000000,0.250000,0,0);}
.m28_c01166{transform:matrix(0.199162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199162,0.000000,0.000000,0.250000,0,0);}
.m53_c01166{transform:matrix(0.204747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204747,0.000000,0.000000,0.250000,0,0);}
.m54_c01166{transform:matrix(0.206924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206924,0.000000,0.000000,0.250000,0,0);}
.m33_c01166{transform:matrix(0.210424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210424,0.000000,0.000000,0.250000,0,0);}
.m21_c01166{transform:matrix(0.229182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229182,0.000000,0.000000,0.250000,0,0);}
.m1d_c01166{transform:matrix(0.233820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233820,0.000000,0.000000,0.250000,0,0);}
.m0_c01166{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m52_c01166{transform:matrix(0.250180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250180,0.000000,0.000000,0.250000,0,0);}
.m82_c01166{transform:matrix(0.251194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251194,0.000000,0.000000,0.250000,0,0);}
.m73_c01166{transform:matrix(0.253747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253747,0.000000,0.000000,0.250000,0,0);}
.m84_c01166{transform:matrix(0.254538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254538,0.000000,0.000000,0.250000,0,0);}
.m43_c01166{transform:matrix(0.254675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254675,0.000000,0.000000,0.250000,0,0);}
.m12_c01166{transform:matrix(0.255296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255296,0.000000,0.000000,0.250000,0,0);}
.m87_c01166{transform:matrix(0.256287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256287,0.000000,0.000000,0.250000,0,0);}
.m22_c01166{transform:matrix(0.257266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257266,0.000000,0.000000,0.250000,0,0);}
.m64_c01166{transform:matrix(0.259440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259440,0.000000,0.000000,0.250000,0,0);}
.m31_c01166{transform:matrix(0.259947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259947,0.000000,0.000000,0.250000,0,0);}
.m2d_c01166{transform:matrix(0.266547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266547,0.000000,0.000000,0.250000,0,0);}
.m66_c01166{transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);}
.md_c01166{transform:matrix(0.268817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268817,0.000000,0.000000,0.250000,0,0);}
.m4f_c01166{transform:matrix(0.269704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269704,0.000000,0.000000,0.250000,0,0);}
.m7b_c01166{transform:matrix(0.272144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272144,0.000000,0.000000,0.250000,0,0);}
.m18_c01166{transform:matrix(0.272194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272194,0.000000,0.000000,0.250000,0,0);}
.m32_c01166{transform:matrix(0.272615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272615,0.000000,0.000000,0.250000,0,0);}
.m38_c01166{transform:matrix(0.272709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272709,0.000000,0.000000,0.250000,0,0);}
.m69_c01166{transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);}
.m85_c01166{transform:matrix(0.272954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272954,0.000000,0.000000,0.250000,0,0);}
.m6f_c01166{transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);}
.m60_c01166{transform:matrix(0.274610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274610,0.000000,0.000000,0.250000,0,0);}
.m72_c01166{transform:matrix(0.275125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275125,0.000000,0.000000,0.250000,0,0);}
.me_c01166{transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);}
.m5b_c01166{transform:matrix(0.276847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276847,0.000000,0.000000,0.250000,0,0);}
.m4_c01166{transform:matrix(0.277112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277112,0.000000,0.000000,0.250000,0,0);}
.m7_c01166{transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);}
.m3b_c01166{transform:matrix(0.277815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277815,0.000000,0.000000,0.250000,0,0);}
.m1_c01166{transform:matrix(0.278880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278880,0.000000,0.000000,0.250000,0,0);}
.m7a_c01166{transform:matrix(0.278988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278988,0.000000,0.000000,0.250000,0,0);}
.m4e_c01166{transform:matrix(0.279435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279435,0.000000,0.000000,0.250000,0,0);}
.m5e_c01166{transform:matrix(0.280175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280175,0.000000,0.000000,0.250000,0,0);}
.m8a_c01166{transform:matrix(0.281107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281107,0.000000,0.000000,0.250000,0,0);}
.m1c_c01166{transform:matrix(0.283281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283281,0.000000,0.000000,0.250000,0,0);}
.m1a_c01166{transform:matrix(0.283296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283296,0.000000,0.000000,0.250000,0,0);}
.m83_c01166{transform:matrix(0.283860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283860,0.000000,0.000000,0.250000,0,0);}
.m2b_c01166{transform:matrix(0.284007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284007,0.000000,0.000000,0.250000,0,0);}
.m4b_c01166{transform:matrix(0.284598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284598,0.000000,0.000000,0.250000,0,0);}
.m5_c01166{transform:matrix(0.285156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285156,0.000000,0.000000,0.250000,0,0);}
.m67_c01166{transform:matrix(0.285639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285639,0.000000,0.000000,0.250000,0,0);}
.m70_c01166{transform:matrix(0.285995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285995,0.000000,0.000000,0.250000,0,0);}
.m23_c01166{transform:matrix(0.287607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287607,0.000000,0.000000,0.250000,0,0);}
.m8b_c01166{transform:matrix(0.287688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287688,0.000000,0.000000,0.250000,0,0);}
.m2a_c01166{transform:matrix(0.288216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288216,0.000000,0.000000,0.250000,0,0);}
.m71_c01166{transform:matrix(0.288629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288629,0.000000,0.000000,0.250000,0,0);}
.m81_c01166{transform:matrix(0.290116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290116,0.000000,0.000000,0.250000,0,0);}
.m4d_c01166{transform:matrix(0.290167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290167,0.000000,0.000000,0.250000,0,0);}
.m41_c01166{transform:matrix(0.291107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291107,0.000000,0.000000,0.250000,0,0);}
.m76_c01166{transform:matrix(0.292185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292185,0.000000,0.000000,0.250000,0,0);}
.m1b_c01166{transform:matrix(0.292893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292893,0.000000,0.000000,0.250000,0,0);}
.m17_c01166{transform:matrix(0.295741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295741,0.000000,0.000000,0.250000,0,0);}
.m45_c01166{transform:matrix(0.296367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296367,0.000000,0.000000,0.250000,0,0);}
.m56_c01166{transform:matrix(0.297114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297114,0.000000,0.000000,0.250000,0,0);}
.m3d_c01166{transform:matrix(0.297150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297150,0.000000,0.000000,0.250000,0,0);}
.m44_c01166{transform:matrix(0.297244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297244,0.000000,0.000000,0.250000,0,0);}
.m15_c01166{transform:matrix(0.298058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298058,0.000000,0.000000,0.250000,0,0);}
.m2_c01166{transform:matrix(0.298230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298230,0.000000,0.000000,0.250000,0,0);}
.m30_c01166{transform:matrix(0.298317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298317,0.000000,0.000000,0.250000,0,0);}
.m5f_c01166{transform:matrix(0.300324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300324,0.000000,0.000000,0.250000,0,0);}
.m7d_c01166{transform:matrix(0.300924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300924,0.000000,0.000000,0.250000,0,0);}
.m19_c01166{transform:matrix(0.301082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301082,0.000000,0.000000,0.250000,0,0);}
.m37_c01166{transform:matrix(0.303329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303329,0.000000,0.000000,0.250000,0,0);}
.m9_c01166{transform:matrix(0.304451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304451,0.000000,0.000000,0.250000,0,0);}
.m3_c01166{transform:matrix(0.305008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305008,0.000000,0.000000,0.250000,0,0);}
.m3c_c01166{transform:matrix(0.305385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305385,0.000000,0.000000,0.250000,0,0);}
.ma_c01166{transform:matrix(0.305493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305493,0.000000,0.000000,0.250000,0,0);}
.m48_c01166{transform:matrix(0.306433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306433,0.000000,0.000000,0.250000,0,0);}
.m74_c01166{transform:matrix(0.306829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306829,0.000000,0.000000,0.250000,0,0);}
.m2c_c01166{transform:matrix(0.306869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306869,0.000000,0.000000,0.250000,0,0);}
.m6_c01166{transform:matrix(0.307387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307387,0.000000,0.000000,0.250000,0,0);}
.mc_c01166{transform:matrix(0.308551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308551,0.000000,0.000000,0.250000,0,0);}
.mb_c01166{transform:matrix(0.309104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309104,0.000000,0.000000,0.250000,0,0);}
.m46_c01166{transform:matrix(0.311367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311367,0.000000,0.000000,0.250000,0,0);}
.m51_c01166{transform:matrix(0.311876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311876,0.000000,0.000000,0.250000,0,0);}
.m14_c01166{transform:matrix(0.312698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312698,0.000000,0.000000,0.250000,0,0);}
.m16_c01166{transform:matrix(0.313509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313509,0.000000,0.000000,0.250000,0,0);}
.m86_c01166{transform:matrix(0.314385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314385,0.000000,0.000000,0.250000,0,0);}
.m1e_c01166{transform:matrix(0.315943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315943,0.000000,0.000000,0.250000,0,0);}
.m39_c01166{transform:matrix(0.316830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316830,0.000000,0.000000,0.250000,0,0);}
.m65_c01166{transform:matrix(0.316974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316974,0.000000,0.000000,0.250000,0,0);}
.m36_c01166{transform:matrix(0.318271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318271,0.000000,0.000000,0.250000,0,0);}
.m79_c01166{transform:matrix(0.318553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318553,0.000000,0.000000,0.250000,0,0);}
.m78_c01166{transform:matrix(0.318892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318892,0.000000,0.000000,0.250000,0,0);}
.m1f_c01166{transform:matrix(0.320451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320451,0.000000,0.000000,0.250000,0,0);}
.m47_c01166{transform:matrix(0.321180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321180,0.000000,0.000000,0.250000,0,0);}
.m3e_c01166{transform:matrix(0.321848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321848,0.000000,0.000000,0.250000,0,0);}
.m61_c01166{transform:matrix(0.328860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328860,0.000000,0.000000,0.250000,0,0);}
.m20_c01166{transform:matrix(0.328888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328888,0.000000,0.000000,0.250000,0,0);}
.m34_c01166{transform:matrix(0.329340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329340,0.000000,0.000000,0.250000,0,0);}
.m27_c01166{transform:matrix(0.330131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330131,0.000000,0.000000,0.250000,0,0);}
.m63_c01166{transform:matrix(0.330550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330550,0.000000,0.000000,0.250000,0,0);}
.m5d_c01166{transform:matrix(0.330926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330926,0.000000,0.000000,0.250000,0,0);}
.m77_c01166{transform:matrix(0.333203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333203,0.000000,0.000000,0.250000,0,0);}
.m49_c01166{transform:matrix(0.335296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335296,0.000000,0.000000,0.250000,0,0);}
.m35_c01166{transform:matrix(0.337051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337051,0.000000,0.000000,0.250000,0,0);}
.m25_c01166{transform:matrix(0.337124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337124,0.000000,0.000000,0.250000,0,0);}
.m7c_c01166{transform:matrix(0.338806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338806,0.000000,0.000000,0.250000,0,0);}
.m75_c01166{transform:matrix(0.342583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342583,0.000000,0.000000,0.250000,0,0);}
.m4a_c01166{transform:matrix(0.343146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343146,0.000000,0.000000,0.250000,0,0);}
.m2e_c01166{transform:matrix(0.343767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343767,0.000000,0.000000,0.250000,0,0);}
.m62_c01166{transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);}
.m6b_c01166{transform:matrix(0.348427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348427,0.000000,0.000000,0.250000,0,0);}
.m13_c01166{transform:matrix(0.348755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348755,0.000000,0.000000,0.250000,0,0);}
.m5c_c01166{transform:matrix(0.359199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359199,0.000000,0.000000,0.250000,0,0);}
.m7f_c01166{transform:matrix(0.360827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360827,0.000000,0.000000,0.250000,0,0);}
.m4c_c01166{transform:matrix(0.363725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363725,0.000000,0.000000,0.250000,0,0);}
.m68_c01166{transform:matrix(0.364057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364057,0.000000,0.000000,0.250000,0,0);}
.m3a_c01166{transform:matrix(0.365449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365449,0.000000,0.000000,0.250000,0,0);}
.m2f_c01166{transform:matrix(0.365460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365460,0.000000,0.000000,0.250000,0,0);}
.m3f_c01166{transform:matrix(0.375189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375189,0.000000,0.000000,0.250000,0,0);}
.m8_c01166{transform:matrix(0.387076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387076,0.000000,0.000000,0.250000,0,0);}
.m6a_c01166{transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);}
.m89_c01166{transform:matrix(0.399440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399440,0.000000,0.000000,0.250000,0,0);}
.v0_c01166{vertical-align:0.000000px;}
.ls22_c01166{letter-spacing:-3.090780px;}
.ls24_c01166{letter-spacing:-3.076927px;}
.lsa_c01166{letter-spacing:-2.875950px;}
.lsb_c01166{letter-spacing:-2.730427px;}
.ls13_c01166{letter-spacing:-2.688840px;}
.ls25_c01166{letter-spacing:-2.647267px;}
.ls1c_c01166{letter-spacing:-2.543317px;}
.ls1d_c01166{letter-spacing:-2.383927px;}
.ls1b_c01166{letter-spacing:-2.314627px;}
.ls6_c01166{letter-spacing:-0.550836px;}
.ls19_c01166{letter-spacing:-0.499199px;}
.ls5_c01166{letter-spacing:-0.076270px;}
.ls21_c01166{letter-spacing:-0.015127px;}
.ls1_c01166{letter-spacing:0.000000px;}
.ls0_c01166{letter-spacing:0.141768px;}
.ls15_c01166{letter-spacing:1.235718px;}
.lsf_c01166{letter-spacing:1.243539px;}
.ls20_c01166{letter-spacing:2.534400px;}
.ls23_c01166{letter-spacing:2.692810px;}
.ls2_c01166{letter-spacing:3.196908px;}
.ls14_c01166{letter-spacing:3.306610px;}
.ls8_c01166{letter-spacing:3.316500px;}
.ls12_c01166{letter-spacing:3.405610px;}
.ls1a_c01166{letter-spacing:3.524400px;}
.ls17_c01166{letter-spacing:3.543100px;}
.ls10_c01166{letter-spacing:3.643200px;}
.ls26_c01166{letter-spacing:3.702610px;}
.ls1f_c01166{letter-spacing:3.722400px;}
.ls3_c01166{letter-spacing:3.781810px;}
.ls18_c01166{letter-spacing:3.801610px;}
.ls7_c01166{letter-spacing:3.861000px;}
.ls9_c01166{letter-spacing:3.960000px;}
.lsc_c01166{letter-spacing:4.108500px;}
.ls11_c01166{letter-spacing:52.747398px;}
.lse_c01166{letter-spacing:54.172998px;}
.ls16_c01166{letter-spacing:57.024198px;}
.lsd_c01166{letter-spacing:59.875398px;}
.ls4_c01166{letter-spacing:61.300998px;}
.ls1e_c01166{letter-spacing:62.726400px;}
.sc__c01166{text-shadow:none;}
.sc0_c01166{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01166{-webkit-text-stroke:0px transparent;}
.sc0_c01166{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01166{word-spacing:-18.909050px;}
.ws1_c01166{word-spacing:-18.893922px;}
.ws2_c01166{word-spacing:0.000000px;}
._1_c01166{margin-left:-28.019376px;}
._5_c01166{margin-left:-16.791654px;}
._4_c01166{margin-left:-10.664379px;}
._6_c01166{width:1.451343px;}
._3_c01166{width:3.328688px;}
._0_c01166{width:5.575284px;}
._8_c01166{width:7.296300px;}
._9_c01166{width:14.526270px;}
._7_c01166{width:31.924618px;}
._2_c01166{width:131.128668px;}
.fc0_c01166{color:transparent;}
.fs2_c01166{font-size:22.176000px;}
.fs0_c01166{font-size:33.264000px;}
.fs1b_c01166{font-size:50.688000px;}
.fsf_c01166{font-size:52.747398px;}
.fs1d_c01166{font-size:53.856198px;}
.fsc_c01166{font-size:54.172998px;}
.fs13_c01166{font-size:57.024198px;}
.fsb_c01166{font-size:59.875398px;}
.fs5_c01166{font-size:61.300998px;}
.fs18_c01166{font-size:62.726400px;}
.fs12_c01166{font-size:66.132198px;}
.fs7_c01166{font-size:66.330000px;}
.fs20_c01166{font-size:66.528000px;}
.fs10_c01166{font-size:68.112198px;}
.fs16_c01166{font-size:70.488000px;}
.fs14_c01166{font-size:70.884000px;}
.fs3_c01166{font-size:71.478000px;}
.fs17_c01166{font-size:72.666198px;}
.fse_c01166{font-size:72.864000px;}
.fs1f_c01166{font-size:74.052198px;}
.fs1a_c01166{font-size:74.448000px;}
.fs19_c01166{font-size:74.844000px;}
.fs4_c01166{font-size:75.636198px;}
.fs15_c01166{font-size:76.032198px;}
.fs11_c01166{font-size:76.824000px;}
.fs1_c01166{font-size:77.220000px;}
.fsa_c01166{font-size:78.012198px;}
.fsd_c01166{font-size:78.210000px;}
.fs8_c01166{font-size:79.200000px;}
.fs9_c01166{font-size:82.170000px;}
.fs6_c01166{font-size:84.744000px;}
.fs1e_c01166{font-size:87.912198px;}
.fs1c_c01166{font-size:88.308000px;}
.y0_c01166{bottom:0.000000px;}
.y17_c01166{bottom:59.425785px;}
.y1_c01166{bottom:76.500000px;}
.y16_c01166{bottom:135.343935px;}
.y15_c01166{bottom:202.347135px;}
.y14_c01166{bottom:235.843785px;}
.y13_c01166{bottom:267.924735px;}
.y12_c01166{bottom:300.000735px;}
.y11_c01166{bottom:364.147785px;}
.y10_c01166{bottom:396.228735px;}
.y2_c01166{bottom:438.640335px;}
.yf_c01166{bottom:461.444985px;}
.ye_c01166{bottom:492.813135px;}
.yd_c01166{bottom:556.603785px;}
.yc_c01166{bottom:588.328335px;}
.yb_c01166{bottom:620.399385px;}
.ya_c01166{bottom:652.831785px;}
.y9_c01166{bottom:685.269135px;}
.y8_c01166{bottom:749.772585px;}
.y7_c01166{bottom:781.848585px;}
.y6_c01166{bottom:813.568185px;}
.y5_c01166{bottom:846.356985px;}
.y4_c01166{bottom:880.214985px;}
.y3_c01166{bottom:1068.394185px;}
.h4_c01166{height:23.128875px;}
.h2_c01166{height:34.693313px;}
.h11_c01166{height:35.129767px;}
.he_c01166{height:36.079217px;}
.h15_c01166{height:37.978116px;}
.hd_c01166{height:39.877015px;}
.h7_c01166{height:40.826465px;}
.h19_c01166{height:41.775782px;}
.h1f_c01166{height:52.856913px;}
.h1c_c01166{height:52.866000px;}
.h14_c01166{height:68.973816px;}
.h9_c01166{height:69.180117px;}
.h22_c01166{height:69.386625px;}
.h5_c01166{height:70.151748px;}
.h12_c01166{height:71.038894px;}
.h10_c01166{height:71.512031px;}
.h1b_c01166{height:73.066641px;}
.h1d_c01166{height:73.433250px;}
.h1a_c01166{height:73.455293px;}
.h17_c01166{height:74.195860px;}
.h6_c01166{height:74.232792px;}
.h16_c01166{height:74.621444px;}
.h21_c01166{height:74.630731px;}
.h13_c01166{height:75.398555px;}
.h3_c01166{height:75.787207px;}
.h18_c01166{height:75.788574px;}
.hf_c01166{height:76.758838px;}
.ha_c01166{height:77.691797px;}
.hc_c01166{height:78.621668px;}
.hb_c01166{height:80.645361px;}
.h8_c01166{height:83.171602px;}
.h1e_c01166{height:86.626354px;}
.h20_c01166{height:91.689675px;}
.h1_c01166{height:1110.000000px;}
.h0_c01166{height:1263.000000px;}
.w1_c01166{width:775.500000px;}
.w0_c01166{width:892.500000px;}
.x0_c01166{left:0.000000px;}
.x2_c01166{left:30.152085px;}
.x1_c01166{left:58.500000px;}
.x4f_c01166{left:84.532785px;}
.x5_c01166{left:85.611885px;}
.x2f_c01166{left:138.933285px;}
.x6_c01166{left:140.353935px;}
.x45_c01166{left:160.064835px;}
.x3d_c01166{left:165.653385px;}
.x59_c01166{left:171.370635px;}
.x46_c01166{left:173.652585px;}
.x38_c01166{left:175.320735px;}
.x5a_c01166{left:183.379335px;}
.x5b_c01166{left:194.110935px;}
.x7_c01166{left:195.541485px;}
.x2b_c01166{left:205.946385px;}
.x18_c01166{left:207.178935px;}
.xf_c01166{left:218.563935px;}
.x53_c01166{left:226.256235px;}
.x30_c01166{left:228.726285px;}
.x50_c01166{left:240.319185px;}
.x1e_c01166{left:249.778635px;}
.x19_c01166{left:252.704085px;}
.x47_c01166{left:260.158785px;}
.x1f_c01166{left:261.529935px;}
.x4d_c01166{left:263.138685px;}
.x8_c01166{left:273.286185px;}
.x22_c01166{left:274.523685px;}
.x34_c01166{left:275.795835px;}
.x35_c01166{left:284.695935px;}
.x48_c01166{left:295.085985px;}
.x4e_c01166{left:296.580885px;}
.x1a_c01166{left:315.712635px;}
.x10_c01166{left:318.375735px;}
.x39_c01166{left:328.196535px;}
.x20_c01166{left:329.364735px;}
.x36_c01166{left:330.953685px;}
.x3e_c01166{left:339.358785px;}
.x9_c01166{left:350.912085px;}
.x11_c01166{left:362.722785px;}
.x1b_c01166{left:372.528735px;}
.x21_c01166{left:373.657335px;}
.x23_c01166{left:383.641485px;}
.x5c_c01166{left:386.091735px;}
.x49_c01166{left:394.848285px;}
.x3a_c01166{left:396.422385px;}
.x5d_c01166{left:406.302585px;}
.x24_c01166{left:417.063885px;}
.x37_c01166{left:419.231985px;}
.x12_c01166{left:426.909435px;}
.x28_c01166{left:428.523135px;}
.x2c_c01166{left:440.279385px;}
.xa_c01166{left:442.576185px;}
.x31_c01166{left:452.020785px;}
.x1c_c01166{left:472.187085px;}
.x5e_c01166{left:473.310735px;}
.x4a_c01166{left:474.409635px;}
.x32_c01166{left:483.215685px;}
.x29_c01166{left:494.823435px;}
.x13_c01166{left:495.867885px;}
.x3f_c01166{left:504.253185px;}
.x51_c01166{left:505.668885px;}
.x4_c01166{left:509.198235px;}
.x25_c01166{left:515.702535px;}
.x56_c01166{left:517.063785px;}
.x14_c01166{left:527.820135px;}
.x15_c01166{left:538.155735px;}
.xb_c01166{left:540.031785px;}
.x40_c01166{left:561.376185px;}
.x33_c01166{left:572.875035px;}
.x2d_c01166{left:583.547235px;}
.x41_c01166{left:585.383685px;}
.x1d_c01166{left:593.645235px;}
.x42_c01166{left:596.318235px;}
.x57_c01166{left:604.322385px;}
.x3b_c01166{left:606.322185px;}
.x2e_c01166{left:616.133085px;}
.x4b_c01166{left:627.399285px;}
.x2a_c01166{left:629.240685px;}
.x54_c01166{left:636.784485px;}
.xc_c01166{left:649.139685px;}
.x16_c01166{left:653.579835px;}
.x17_c01166{left:655.713285px;}
.x26_c01166{left:660.321735px;}
.x43_c01166{left:662.093835px;}
.x55_c01166{left:669.746535px;}
.x4c_c01166{left:671.048385px;}
.x52_c01166{left:672.162135px;}
.xd_c01166{left:682.235385px;}
.x3c_c01166{left:683.339235px;}
.x44_c01166{left:684.868785px;}
.x27_c01166{left:694.610385px;}
.xe_c01166{left:704.104485px;}
.x3_c01166{left:711.128535px;}
.x58_c01166{left:726.815085px;}
@media print{
.v0_c01166{vertical-align:0.000000pt;}
.ls22_c01166{letter-spacing:-2.747360pt;}
.ls24_c01166{letter-spacing:-2.735046pt;}
.lsa_c01166{letter-spacing:-2.556400pt;}
.lsb_c01166{letter-spacing:-2.427046pt;}
.ls13_c01166{letter-spacing:-2.390080pt;}
.ls25_c01166{letter-spacing:-2.353126pt;}
.ls1c_c01166{letter-spacing:-2.260726pt;}
.ls1d_c01166{letter-spacing:-2.119046pt;}
.ls1b_c01166{letter-spacing:-2.057446pt;}
.ls6_c01166{letter-spacing:-0.489632pt;}
.ls19_c01166{letter-spacing:-0.443732pt;}
.ls5_c01166{letter-spacing:-0.067795pt;}
.ls21_c01166{letter-spacing:-0.013446pt;}
.ls1_c01166{letter-spacing:0.000000pt;}
.ls0_c01166{letter-spacing:0.126016pt;}
.ls15_c01166{letter-spacing:1.098416pt;}
.lsf_c01166{letter-spacing:1.105368pt;}
.ls20_c01166{letter-spacing:2.252800pt;}
.ls23_c01166{letter-spacing:2.393609pt;}
.ls2_c01166{letter-spacing:2.841696pt;}
.ls14_c01166{letter-spacing:2.939209pt;}
.ls8_c01166{letter-spacing:2.948000pt;}
.ls12_c01166{letter-spacing:3.027209pt;}
.ls1a_c01166{letter-spacing:3.132800pt;}
.ls17_c01166{letter-spacing:3.149423pt;}
.ls10_c01166{letter-spacing:3.238400pt;}
.ls26_c01166{letter-spacing:3.291209pt;}
.ls1f_c01166{letter-spacing:3.308800pt;}
.ls3_c01166{letter-spacing:3.361609pt;}
.ls18_c01166{letter-spacing:3.379209pt;}
.ls7_c01166{letter-spacing:3.432000pt;}
.ls9_c01166{letter-spacing:3.520000pt;}
.lsc_c01166{letter-spacing:3.652000pt;}
.ls11_c01166{letter-spacing:46.886576pt;}
.lse_c01166{letter-spacing:48.153776pt;}
.ls16_c01166{letter-spacing:50.688176pt;}
.lsd_c01166{letter-spacing:53.222576pt;}
.ls4_c01166{letter-spacing:54.489776pt;}
.ls1e_c01166{letter-spacing:55.756800pt;}
.ws0_c01166{word-spacing:-16.808044pt;}
.ws1_c01166{word-spacing:-16.794598pt;}
.ws2_c01166{word-spacing:0.000000pt;}
._1_c01166{margin-left:-24.906112pt;}
._5_c01166{margin-left:-14.925915pt;}
._4_c01166{margin-left:-9.479448pt;}
._6_c01166{width:1.290082pt;}
._3_c01166{width:2.958834pt;}
._0_c01166{width:4.955808pt;}
._8_c01166{width:6.485600pt;}
._9_c01166{width:12.912240pt;}
._7_c01166{width:28.377438pt;}
._2_c01166{width:116.558816pt;}
.fs2_c01166{font-size:19.712000pt;}
.fs0_c01166{font-size:29.568000pt;}
.fs1b_c01166{font-size:45.056000pt;}
.fsf_c01166{font-size:46.886576pt;}
.fs1d_c01166{font-size:47.872176pt;}
.fsc_c01166{font-size:48.153776pt;}
.fs13_c01166{font-size:50.688176pt;}
.fsb_c01166{font-size:53.222576pt;}
.fs5_c01166{font-size:54.489776pt;}
.fs18_c01166{font-size:55.756800pt;}
.fs12_c01166{font-size:58.784176pt;}
.fs7_c01166{font-size:58.960000pt;}
.fs20_c01166{font-size:59.136000pt;}
.fs10_c01166{font-size:60.544176pt;}
.fs16_c01166{font-size:62.656000pt;}
.fs14_c01166{font-size:63.008000pt;}
.fs3_c01166{font-size:63.536000pt;}
.fs17_c01166{font-size:64.592176pt;}
.fse_c01166{font-size:64.768000pt;}
.fs1f_c01166{font-size:65.824176pt;}
.fs1a_c01166{font-size:66.176000pt;}
.fs19_c01166{font-size:66.528000pt;}
.fs4_c01166{font-size:67.232176pt;}
.fs15_c01166{font-size:67.584176pt;}
.fs11_c01166{font-size:68.288000pt;}
.fs1_c01166{font-size:68.640000pt;}
.fsa_c01166{font-size:69.344176pt;}
.fsd_c01166{font-size:69.520000pt;}
.fs8_c01166{font-size:70.400000pt;}
.fs9_c01166{font-size:73.040000pt;}
.fs6_c01166{font-size:75.328000pt;}
.fs1e_c01166{font-size:78.144176pt;}
.fs1c_c01166{font-size:78.496000pt;}
.y0_c01166{bottom:0.000000pt;}
.y17_c01166{bottom:52.822920pt;}
.y1_c01166{bottom:68.000000pt;}
.y16_c01166{bottom:120.305720pt;}
.y15_c01166{bottom:179.864120pt;}
.y14_c01166{bottom:209.638920pt;}
.y13_c01166{bottom:238.155320pt;}
.y12_c01166{bottom:266.667320pt;}
.y11_c01166{bottom:323.686920pt;}
.y10_c01166{bottom:352.203320pt;}
.y2_c01166{bottom:389.902520pt;}
.yf_c01166{bottom:410.173320pt;}
.ye_c01166{bottom:438.056120pt;}
.yd_c01166{bottom:494.758920pt;}
.yc_c01166{bottom:522.958520pt;}
.yb_c01166{bottom:551.466120pt;}
.ya_c01166{bottom:580.294920pt;}
.y9_c01166{bottom:609.128120pt;}
.y8_c01166{bottom:666.464520pt;}
.y7_c01166{bottom:694.976520pt;}
.y6_c01166{bottom:723.171720pt;}
.y5_c01166{bottom:752.317320pt;}
.y4_c01166{bottom:782.413320pt;}
.y3_c01166{bottom:949.683720pt;}
.h4_c01166{height:20.559000pt;}
.h2_c01166{height:30.838500pt;}
.h11_c01166{height:31.226460pt;}
.he_c01166{height:32.070415pt;}
.h15_c01166{height:33.758325pt;}
.hd_c01166{height:35.446236pt;}
.h7_c01166{height:36.290191pt;}
.h19_c01166{height:37.134029pt;}
.h1f_c01166{height:46.983923pt;}
.h1c_c01166{height:46.992000pt;}
.h14_c01166{height:61.310059pt;}
.h9_c01166{height:61.493438pt;}
.h22_c01166{height:61.677000pt;}
.h5_c01166{height:62.357109pt;}
.h12_c01166{height:63.145684pt;}
.h10_c01166{height:63.566250pt;}
.h1b_c01166{height:64.948125pt;}
.h1d_c01166{height:65.274000pt;}
.h1a_c01166{height:65.293594pt;}
.h17_c01166{height:65.951876pt;}
.h6_c01166{height:65.984704pt;}
.h16_c01166{height:66.330173pt;}
.h21_c01166{height:66.338427pt;}
.h13_c01166{height:67.020938pt;}
.h3_c01166{height:67.366406pt;}
.h18_c01166{height:67.367621pt;}
.hf_c01166{height:68.230078pt;}
.ha_c01166{height:69.059375pt;}
.hc_c01166{height:69.885927pt;}
.hb_c01166{height:71.684766pt;}
.h8_c01166{height:73.930313pt;}
.h1e_c01166{height:77.001203pt;}
.h20_c01166{height:81.501934pt;}
.h1_c01166{height:986.666667pt;}
.h0_c01166{height:1122.666667pt;}
.w1_c01166{width:689.333333pt;}
.w0_c01166{width:793.333333pt;}
.x0_c01166{left:0.000000pt;}
.x2_c01166{left:26.801853pt;}
.x1_c01166{left:52.000000pt;}
.x4f_c01166{left:75.140253pt;}
.x5_c01166{left:76.099453pt;}
.x2f_c01166{left:123.496253pt;}
.x6_c01166{left:124.759053pt;}
.x45_c01166{left:142.279853pt;}
.x3d_c01166{left:147.247453pt;}
.x59_c01166{left:152.329453pt;}
.x46_c01166{left:154.357853pt;}
.x38_c01166{left:155.840653pt;}
.x5a_c01166{left:163.003853pt;}
.x5b_c01166{left:172.543053pt;}
.x7_c01166{left:173.814653pt;}
.x2b_c01166{left:183.063453pt;}
.x18_c01166{left:184.159053pt;}
.xf_c01166{left:194.279053pt;}
.x53_c01166{left:201.116653pt;}
.x30_c01166{left:203.312253pt;}
.x50_c01166{left:213.617053pt;}
.x1e_c01166{left:222.025453pt;}
.x19_c01166{left:224.625853pt;}
.x47_c01166{left:231.252253pt;}
.x1f_c01166{left:232.471053pt;}
.x4d_c01166{left:233.901053pt;}
.x8_c01166{left:242.921053pt;}
.x22_c01166{left:244.021053pt;}
.x34_c01166{left:245.151853pt;}
.x35_c01166{left:253.063053pt;}
.x48_c01166{left:262.298653pt;}
.x4e_c01166{left:263.627453pt;}
.x1a_c01166{left:280.633453pt;}
.x10_c01166{left:283.000653pt;}
.x39_c01166{left:291.730253pt;}
.x20_c01166{left:292.768653pt;}
.x36_c01166{left:294.181053pt;}
.x3e_c01166{left:301.652253pt;}
.x9_c01166{left:311.921853pt;}
.x11_c01166{left:322.420253pt;}
.x1b_c01166{left:331.136653pt;}
.x21_c01166{left:332.139853pt;}
.x23_c01166{left:341.014653pt;}
.x5c_c01166{left:343.192653pt;}
.x49_c01166{left:350.976253pt;}
.x3a_c01166{left:352.375453pt;}
.x5d_c01166{left:361.157853pt;}
.x24_c01166{left:370.723453pt;}
.x37_c01166{left:372.650653pt;}
.x12_c01166{left:379.475053pt;}
.x28_c01166{left:380.909453pt;}
.x2c_c01166{left:391.359453pt;}
.xa_c01166{left:393.401053pt;}
.x31_c01166{left:401.796253pt;}
.x1c_c01166{left:419.721853pt;}
.x5e_c01166{left:420.720653pt;}
.x4a_c01166{left:421.697453pt;}
.x32_c01166{left:429.525053pt;}
.x29_c01166{left:439.843053pt;}
.x13_c01166{left:440.771453pt;}
.x3f_c01166{left:448.225053pt;}
.x51_c01166{left:449.483453pt;}
.x4_c01166{left:452.620653pt;}
.x25_c01166{left:458.402253pt;}
.x56_c01166{left:459.612253pt;}
.x14_c01166{left:469.173453pt;}
.x15_c01166{left:478.360653pt;}
.xb_c01166{left:480.028253pt;}
.x40_c01166{left:499.001053pt;}
.x33_c01166{left:509.222253pt;}
.x2d_c01166{left:518.708653pt;}
.x41_c01166{left:520.341053pt;}
.x1d_c01166{left:527.684653pt;}
.x42_c01166{left:530.060653pt;}
.x57_c01166{left:537.175453pt;}
.x3b_c01166{left:538.953053pt;}
.x2e_c01166{left:547.673853pt;}
.x4b_c01166{left:557.688253pt;}
.x2a_c01166{left:559.325053pt;}
.x54_c01166{left:566.030653pt;}
.xc_c01166{left:577.013053pt;}
.x16_c01166{left:580.959853pt;}
.x17_c01166{left:582.856253pt;}
.x26_c01166{left:586.952653pt;}
.x43_c01166{left:588.527853pt;}
.x55_c01166{left:595.330253pt;}
.x4c_c01166{left:596.487453pt;}
.x52_c01166{left:597.477453pt;}
.xd_c01166{left:606.431453pt;}
.x3c_c01166{left:607.412653pt;}
.x44_c01166{left:608.772253pt;}
.x27_c01166{left:617.431453pt;}
.xe_c01166{left:625.870653pt;}
.x3_c01166{left:632.114253pt;}
.x58_c01166{left:646.057853pt;}
}





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

.ir_c01167:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01167{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01167;src:url('chunks/assets/font_71a84ab35f85515a1d6424b8.woff2')format("woff");}.ff1_c01167{font-family:ff1_c01167;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01167;src:url('chunks/assets/font_74caceccb7b43e9d6ab1df94.woff2')format("woff");}.ff2_c01167{font-family:ff2_c01167;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01167;src:url('chunks/assets/font_7209debe9abbed5add63dc75.woff2')format("woff");}.ff3_c01167{font-family:ff3_c01167;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01167;src:url('chunks/assets/font_41e51efbc807daf542b55ef2.woff2')format("woff");}.ff4_c01167{font-family:ff4_c01167;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01167;src:url('chunks/assets/font_32fd224f11a3a1c1a760b0f4.woff2')format("woff");}.ff5_c01167{font-family:ff5_c01167;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m68_c01167{transform:matrix(0.016667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.016667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.016667,0.000000,0.000000,0.250000,0,0);}
.m3e_c01167{transform:matrix(0.041667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.041667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.041667,0.000000,0.000000,0.250000,0,0);}
.m69_c01167{transform:matrix(0.055556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.055556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.055556,0.000000,0.000000,0.250000,0,0);}
.m58_c01167{transform:matrix(0.073864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073864,0.000000,0.000000,0.250000,0,0);}
.m6b_c01167{transform:matrix(0.080392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080392,0.000000,0.000000,0.250000,0,0);}
.m67_c01167{transform:matrix(0.094445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094445,0.000000,0.000000,0.250000,0,0);}
.m84_c01167{transform:matrix(0.106707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106707,0.000000,0.000000,0.250000,0,0);}
.m56_c01167{transform:matrix(0.126421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126421,0.000000,0.000000,0.250000,0,0);}
.m35_c01167{transform:matrix(0.134146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134146,0.000000,0.000000,0.250000,0,0);}
.m54_c01167{transform:matrix(0.140129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140129,0.000000,0.000000,0.250000,0,0);}
.m20_c01167{transform:matrix(0.143604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143604,0.000000,0.000000,0.250000,0,0);}
.m6a_c01167{transform:matrix(0.144445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144445,0.000000,0.000000,0.250000,0,0);}
.m2d_c01167{transform:matrix(0.152193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152193,0.000000,0.000000,0.250000,0,0);}
.m86_c01167{transform:matrix(0.164634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164634,0.000000,0.000000,0.250000,0,0);}
.m3f_c01167{transform:matrix(0.166666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166666,0.000000,0.000000,0.250000,0,0);}
.m5c_c01167{transform:matrix(0.167333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167333,0.000000,0.000000,0.250000,0,0);}
.m3d_c01167{transform:matrix(0.168650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168650,0.000000,0.000000,0.250000,0,0);}
.m57_c01167{transform:matrix(0.174243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174243,0.000000,0.000000,0.250000,0,0);}
.m85_c01167{transform:matrix(0.178862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178862,0.000000,0.000000,0.250000,0,0);}
.m25_c01167{transform:matrix(0.182926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182926,0.000000,0.000000,0.250000,0,0);}
.m1e_c01167{transform:matrix(0.228647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228647,0.000000,0.000000,0.250000,0,0);}
.m64_c01167{transform:matrix(0.229653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229653,0.000000,0.000000,0.250000,0,0);}
.m8b_c01167{transform:matrix(0.237013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237013,0.000000,0.000000,0.250000,0,0);}
.m0_c01167{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.md_c01167{transform:matrix(0.250079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250079,0.000000,0.000000,0.250000,0,0);}
.m1b_c01167{transform:matrix(0.251283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251283,0.000000,0.000000,0.250000,0,0);}
.m2f_c01167{transform:matrix(0.252935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252935,0.000000,0.000000,0.250000,0,0);}
.m40_c01167{transform:matrix(0.254323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254323,0.000000,0.000000,0.250000,0,0);}
.m65_c01167{transform:matrix(0.254671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254671,0.000000,0.000000,0.250000,0,0);}
.m22_c01167{transform:matrix(0.257677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257677,0.000000,0.000000,0.250000,0,0);}
.m1_c01167{transform:matrix(0.258701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258701,0.000000,0.000000,0.250000,0,0);}
.m82_c01167{transform:matrix(0.263376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263376,0.000000,0.000000,0.250000,0,0);}
.m51_c01167{transform:matrix(0.263590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263590,0.000000,0.000000,0.250000,0,0);}
.m2a_c01167{transform:matrix(0.264294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264294,0.000000,0.000000,0.250000,0,0);}
.m4d_c01167{transform:matrix(0.264610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264610,0.000000,0.000000,0.250000,0,0);}
.m3c_c01167{transform:matrix(0.264761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264761,0.000000,0.000000,0.250000,0,0);}
.m2e_c01167{transform:matrix(0.266418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266418,0.000000,0.000000,0.250000,0,0);}
.m80_c01167{transform:matrix(0.266485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266485,0.000000,0.000000,0.250000,0,0);}
.m1a_c01167{transform:matrix(0.266726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266726,0.000000,0.000000,0.250000,0,0);}
.m8c_c01167{transform:matrix(0.267769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267769,0.000000,0.000000,0.250000,0,0);}
.m13_c01167{transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);}
.m4a_c01167{transform:matrix(0.269932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269932,0.000000,0.000000,0.250000,0,0);}
.m2c_c01167{transform:matrix(0.270355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270355,0.000000,0.000000,0.250000,0,0);}
.m96_c01167{transform:matrix(0.270858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270858,0.000000,0.000000,0.250000,0,0);}
.m71_c01167{transform:matrix(0.271075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271075,0.000000,0.000000,0.250000,0,0);}
.m32_c01167{transform:matrix(0.271867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271867,0.000000,0.000000,0.250000,0,0);}
.m24_c01167{transform:matrix(0.272215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272215,0.000000,0.000000,0.250000,0,0);}
.m73_c01167{transform:matrix(0.272274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272274,0.000000,0.000000,0.250000,0,0);}
.m16_c01167{transform:matrix(0.272770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272770,0.000000,0.000000,0.250000,0,0);}
.m5_c01167{transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);}
.m5d_c01167{transform:matrix(0.273393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273393,0.000000,0.000000,0.250000,0,0);}
.m95_c01167{transform:matrix(0.274467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274467,0.000000,0.000000,0.250000,0,0);}
.m76_c01167{transform:matrix(0.274746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274746,0.000000,0.000000,0.250000,0,0);}
.m8d_c01167{transform:matrix(0.275243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275243,0.000000,0.000000,0.250000,0,0);}
.m7c_c01167{transform:matrix(0.275368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275368,0.000000,0.000000,0.250000,0,0);}
.m8f_c01167{transform:matrix(0.275540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275540,0.000000,0.000000,0.250000,0,0);}
.m4f_c01167{transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276296,0.000000,0.000000,0.250000,0,0);}
.m4c_c01167{transform:matrix(0.276520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276520,0.000000,0.000000,0.250000,0,0);}
.m99_c01167{transform:matrix(0.278463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278463,0.000000,0.000000,0.250000,0,0);}
.ma_c01167{transform:matrix(0.279920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279920,0.000000,0.000000,0.250000,0,0);}
.m43_c01167{transform:matrix(0.280495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280495,0.000000,0.000000,0.250000,0,0);}
.m5b_c01167{transform:matrix(0.280516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280516,0.000000,0.000000,0.250000,0,0);}
.mf_c01167{transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);}
.m63_c01167{transform:matrix(0.281099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281099,0.000000,0.000000,0.250000,0,0);}
.m41_c01167{transform:matrix(0.282877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282877,0.000000,0.000000,0.250000,0,0);}
.mc_c01167{transform:matrix(0.282908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282908,0.000000,0.000000,0.250000,0,0);}
.m7f_c01167{transform:matrix(0.283630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283630,0.000000,0.000000,0.250000,0,0);}
.m1c_c01167{transform:matrix(0.283860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283860,0.000000,0.000000,0.250000,0,0);}
.m7b_c01167{transform:matrix(0.284347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284347,0.000000,0.000000,0.250000,0,0);}
.m78_c01167{transform:matrix(0.285133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285133,0.000000,0.000000,0.250000,0,0);}
.m9_c01167{transform:matrix(0.285582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285582,0.000000,0.000000,0.250000,0,0);}
.m55_c01167{transform:matrix(0.285652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285652,0.000000,0.000000,0.250000,0,0);}
.m4e_c01167{transform:matrix(0.286145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286145,0.000000,0.000000,0.250000,0,0);}
.m8_c01167{transform:matrix(0.286268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286268,0.000000,0.000000,0.250000,0,0);}
.m5f_c01167{transform:matrix(0.286620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286620,0.000000,0.000000,0.250000,0,0);}
.m88_c01167{transform:matrix(0.287776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287776,0.000000,0.000000,0.250000,0,0);}
.m5a_c01167{transform:matrix(0.288686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288686,0.000000,0.000000,0.250000,0,0);}
.m6f_c01167{transform:matrix(0.288781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288781,0.000000,0.000000,0.250000,0,0);}
.m4b_c01167{transform:matrix(0.288840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288840,0.000000,0.000000,0.250000,0,0);}
.m10_c01167{transform:matrix(0.289228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289228,0.000000,0.000000,0.250000,0,0);}
.m19_c01167{transform:matrix(0.289864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289864,0.000000,0.000000,0.250000,0,0);}
.m2b_c01167{transform:matrix(0.290328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290328,0.000000,0.000000,0.250000,0,0);}
.m6c_c01167{transform:matrix(0.291194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291194,0.000000,0.000000,0.250000,0,0);}
.m18_c01167{transform:matrix(0.291209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291209,0.000000,0.000000,0.250000,0,0);}
.m91_c01167{transform:matrix(0.292521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292521,0.000000,0.000000,0.250000,0,0);}
.m3a_c01167{transform:matrix(0.293280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293280,0.000000,0.000000,0.250000,0,0);}
.m37_c01167{transform:matrix(0.293640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293640,0.000000,0.000000,0.250000,0,0);}
.m9b_c01167{transform:matrix(0.293938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293938,0.000000,0.000000,0.250000,0,0);}
.m36_c01167{transform:matrix(0.294423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294423,0.000000,0.000000,0.250000,0,0);}
.m1d_c01167{transform:matrix(0.295425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295425,0.000000,0.000000,0.250000,0,0);}
.m52_c01167{transform:matrix(0.296016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296016,0.000000,0.000000,0.250000,0,0);}
.m90_c01167{transform:matrix(0.296878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296878,0.000000,0.000000,0.250000,0,0);}
.m61_c01167{transform:matrix(0.296896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296896,0.000000,0.000000,0.250000,0,0);}
.m30_c01167{transform:matrix(0.296995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296995,0.000000,0.000000,0.250000,0,0);}
.m46_c01167{transform:matrix(0.298176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298176,0.000000,0.000000,0.250000,0,0);}
.m7_c01167{transform:matrix(0.299140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299140,0.000000,0.000000,0.250000,0,0);}
.m44_c01167{transform:matrix(0.301281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301281,0.000000,0.000000,0.250000,0,0);}
.m79_c01167{transform:matrix(0.301446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301446,0.000000,0.000000,0.250000,0,0);}
.m83_c01167{transform:matrix(0.302569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302569,0.000000,0.000000,0.250000,0,0);}
.m15_c01167{transform:matrix(0.303455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303455,0.000000,0.000000,0.250000,0,0);}
.m3b_c01167{transform:matrix(0.304451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304451,0.000000,0.000000,0.250000,0,0);}
.m72_c01167{transform:matrix(0.304658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304658,0.000000,0.000000,0.250000,0,0);}
.m8e_c01167{transform:matrix(0.305092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305092,0.000000,0.000000,0.250000,0,0);}
.m29_c01167{transform:matrix(0.305662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305662,0.000000,0.000000,0.250000,0,0);}
.m9c_c01167{transform:matrix(0.306071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306071,0.000000,0.000000,0.250000,0,0);}
.me_c01167{transform:matrix(0.307331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307331,0.000000,0.000000,0.250000,0,0);}
.m87_c01167{transform:matrix(0.307595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307595,0.000000,0.000000,0.250000,0,0);}
.m26_c01167{transform:matrix(0.308672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308672,0.000000,0.000000,0.250000,0,0);}
.m6d_c01167{transform:matrix(0.309220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309220,0.000000,0.000000,0.250000,0,0);}
.m12_c01167{transform:matrix(0.310209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310209,0.000000,0.000000,0.250000,0,0);}
.m39_c01167{transform:matrix(0.311495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311495,0.000000,0.000000,0.250000,0,0);}
.m4_c01167{transform:matrix(0.311673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311673,0.000000,0.000000,0.250000,0,0);}
.m98_c01167{transform:matrix(0.312131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312131,0.000000,0.000000,0.250000,0,0);}
.m7a_c01167{transform:matrix(0.312172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312172,0.000000,0.000000,0.250000,0,0);}
.m94_c01167{transform:matrix(0.313379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313379,0.000000,0.000000,0.250000,0,0);}
.m21_c01167{transform:matrix(0.313668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313668,0.000000,0.000000,0.250000,0,0);}
.m62_c01167{transform:matrix(0.313859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313859,0.000000,0.000000,0.250000,0,0);}
.m1f_c01167{transform:matrix(0.316446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316446,0.000000,0.000000,0.250000,0,0);}
.mb_c01167{transform:matrix(0.316504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316504,0.000000,0.000000,0.250000,0,0);}
.m75_c01167{transform:matrix(0.317433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317433,0.000000,0.000000,0.250000,0,0);}
.m45_c01167{transform:matrix(0.317942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317942,0.000000,0.000000,0.250000,0,0);}
.m42_c01167{transform:matrix(0.318066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318066,0.000000,0.000000,0.250000,0,0);}
.m81_c01167{transform:matrix(0.319008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319008,0.000000,0.000000,0.250000,0,0);}
.m7e_c01167{transform:matrix(0.319887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319887,0.000000,0.000000,0.250000,0,0);}
.m5e_c01167{transform:matrix(0.320122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320122,0.000000,0.000000,0.250000,0,0);}
.m60_c01167{transform:matrix(0.320142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320142,0.000000,0.000000,0.250000,0,0);}
.m59_c01167{transform:matrix(0.320692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320692,0.000000,0.000000,0.250000,0,0);}
.m47_c01167{transform:matrix(0.327343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327343,0.000000,0.000000,0.250000,0,0);}
.m92_c01167{transform:matrix(0.327730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327730,0.000000,0.000000,0.250000,0,0);}
.m34_c01167{transform:matrix(0.330114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330114,0.000000,0.000000,0.250000,0,0);}
.m2_c01167{transform:matrix(0.331763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331763,0.000000,0.000000,0.250000,0,0);}
.m8a_c01167{transform:matrix(0.333462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333462,0.000000,0.000000,0.250000,0,0);}
.m77_c01167{transform:matrix(0.334871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334871,0.000000,0.000000,0.250000,0,0);}
.m9d_c01167{transform:matrix(0.335207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335207,0.000000,0.000000,0.250000,0,0);}
.m50_c01167{transform:matrix(0.335265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335265,0.000000,0.000000,0.250000,0,0);}
.m48_c01167{transform:matrix(0.336612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336612,0.000000,0.000000,0.250000,0,0);}
.m23_c01167{transform:matrix(0.337051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337051,0.000000,0.000000,0.250000,0,0);}
.m6e_c01167{transform:matrix(0.337791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337791,0.000000,0.000000,0.250000,0,0);}
.m74_c01167{transform:matrix(0.339735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339735,0.000000,0.000000,0.250000,0,0);}
.m49_c01167{transform:matrix(0.339794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339794,0.000000,0.000000,0.250000,0,0);}
.m89_c01167{transform:matrix(0.341654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341654,0.000000,0.000000,0.250000,0,0);}
.m93_c01167{transform:matrix(0.344527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344527,0.000000,0.000000,0.250000,0,0);}
.m28_c01167{transform:matrix(0.344668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344668,0.000000,0.000000,0.250000,0,0);}
.m7d_c01167{transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);}
.m33_c01167{transform:matrix(0.348048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348048,0.000000,0.000000,0.250000,0,0);}
.m27_c01167{transform:matrix(0.349950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349950,0.000000,0.000000,0.250000,0,0);}
.m9a_c01167{transform:matrix(0.355336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355336,0.000000,0.000000,0.250000,0,0);}
.m11_c01167{transform:matrix(0.358726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358726,0.000000,0.000000,0.250000,0,0);}
.m97_c01167{transform:matrix(0.358756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358756,0.000000,0.000000,0.250000,0,0);}
.m66_c01167{transform:matrix(0.359199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359199,0.000000,0.000000,0.250000,0,0);}
.m17_c01167{transform:matrix(0.362057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362057,0.000000,0.000000,0.250000,0,0);}
.m70_c01167{transform:matrix(0.366202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366202,0.000000,0.000000,0.250000,0,0);}
.m53_c01167{transform:matrix(0.370938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370938,0.000000,0.000000,0.250000,0,0);}
.m31_c01167{transform:matrix(0.373012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373012,0.000000,0.000000,0.250000,0,0);}
.m38_c01167{transform:matrix(0.380571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380571,0.000000,0.000000,0.250000,0,0);}
.m6_c01167{transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);}
.m14_c01167{transform:matrix(0.405805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405805,0.000000,0.000000,0.250000,0,0);}
.m3_c01167{transform:matrix(0.412048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412048,0.000000,0.000000,0.250000,0,0);}
.v3_c01167{vertical-align:-12.862080px;}
.v0_c01167{vertical-align:0.000000px;}
.v2_c01167{vertical-align:9.959400px;}
.v1_c01167{vertical-align:21.364200px;}
.ls19_c01167{letter-spacing:-3.693690px;}
.ls12_c01167{letter-spacing:-2.716567px;}
.ls1e_c01167{letter-spacing:-2.647267px;}
.lsd_c01167{letter-spacing:-2.619540px;}
.ls9_c01167{letter-spacing:-1.164797px;}
.ls16_c01167{letter-spacing:-0.892507px;}
.ls1a_c01167{letter-spacing:-0.605090px;}
.ls11_c01167{letter-spacing:-0.446254px;}
.ls5_c01167{letter-spacing:-0.015523px;}
.ls3_c01167{letter-spacing:0.000000px;}
.ls13_c01167{letter-spacing:0.302545px;}
.ls1c_c01167{letter-spacing:0.551075px;}
.lsa_c01167{letter-spacing:1.045918px;}
.ls18_c01167{letter-spacing:2.624576px;}
.ls14_c01167{letter-spacing:2.730467px;}
.ls20_c01167{letter-spacing:2.775848px;}
.ls1f_c01167{letter-spacing:3.048139px;}
.ls2_c01167{letter-spacing:3.093520px;}
.ls1d_c01167{letter-spacing:3.343120px;}
.ls8_c01167{letter-spacing:3.484810px;}
.ls10_c01167{letter-spacing:3.643200px;}
.lsb_c01167{letter-spacing:3.663000px;}
.ls6_c01167{letter-spacing:3.781810px;}
.lsc_c01167{letter-spacing:3.801610px;}
.ls7_c01167{letter-spacing:3.880810px;}
.ls17_c01167{letter-spacing:3.950110px;}
.ls4_c01167{letter-spacing:4.078810px;}
.ls1_c01167{letter-spacing:11.444301px;}
.ls0_c01167{letter-spacing:13.147101px;}
.lsf_c01167{letter-spacing:58.449798px;}
.ls15_c01167{letter-spacing:59.875398px;}
.lse_c01167{letter-spacing:61.300998px;}
.ls1b_c01167{letter-spacing:62.726400px;}
.ls21_c01167{letter-spacing:64.152198px;}
.sc__c01167{text-shadow:none;}
.sc0_c01167{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01167{-webkit-text-stroke:0px transparent;}
.sc0_c01167{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01167{word-spacing:-22.002570px;}
.ws1_c01167{word-spacing:-18.909050px;}
.ws2_c01167{word-spacing:-12.329856px;}
.ws3_c01167{word-spacing:0.000000px;}
._0_c01167{margin-left:-14.144009px;}
._5_c01167{margin-left:-8.093102px;}
._7_c01167{margin-left:-4.480344px;}
._1_c01167{margin-left:-1.630071px;}
._2_c01167{width:6.353770px;}
._3_c01167{width:7.956973px;}
._6_c01167{width:30.173479px;}
._4_c01167{width:33.422400px;}
.fc0_c01167{color:transparent;}
.fs0_c01167{font-size:28.314000px;}
.fs1_c01167{font-size:33.264000px;}
.fs2_c01167{font-size:34.056198px;}
.fs11_c01167{font-size:42.966198px;}
.fs17_c01167{font-size:44.352000px;}
.fs7_c01167{font-size:45.936198px;}
.fsf_c01167{font-size:58.449798px;}
.fs12_c01167{font-size:59.875398px;}
.fse_c01167{font-size:61.300998px;}
.fs15_c01167{font-size:62.726400px;}
.fs16_c01167{font-size:64.152198px;}
.fs9_c01167{font-size:64.548000px;}
.fs8_c01167{font-size:69.696198px;}
.fs10_c01167{font-size:72.864000px;}
.fsb_c01167{font-size:73.260000px;}
.fsa_c01167{font-size:73.656198px;}
.fsd_c01167{font-size:74.844000px;}
.fs4_c01167{font-size:75.240000px;}
.fs6_c01167{font-size:75.636198px;}
.fsc_c01167{font-size:76.032198px;}
.fs5_c01167{font-size:77.616198px;}
.fs13_c01167{font-size:79.002198px;}
.fs3_c01167{font-size:81.576198px;}
.fs14_c01167{font-size:105.534000px;}
.y0_c01167{bottom:0.000000px;}
.y1_c01167{bottom:76.500000px;}
.y1b_c01167{bottom:131.418585px;}
.y1a_c01167{bottom:164.212335px;}
.y19_c01167{bottom:198.070335px;}
.y18_c01167{bottom:230.146335px;}
.y16_c01167{bottom:262.573785px;}
.y17_c01167{bottom:265.786335px;}
.y15_c01167{bottom:295.011135px;}
.y14_c01167{bottom:326.017935px;}
.y13_c01167{bottom:391.239135px;}
.y3_c01167{bottom:443.629935px;}
.y12_c01167{bottom:455.742585px;}
.y11_c01167{bottom:487.823535px;}
.y10_c01167{bottom:551.262735px;}
.yf_c01167{bottom:583.333785px;}
.ye_c01167{bottom:615.414735px;}
.yd_c01167{bottom:647.129385px;}
.yc_c01167{bottom:710.929935px;}
.yb_c01167{bottom:743.362335px;}
.ya_c01167{bottom:807.157935px;}
.y9_c01167{bottom:839.590335px;}
.y8_c01167{bottom:901.242585px;}
.y7_c01167{bottom:934.392735px;}
.y4_c01167{bottom:1033.823385px;}
.y6_c01167{bottom:1041.307785px;}
.y2_c01167{bottom:1066.612185px;}
.y5_c01167{bottom:1066.968585px;}
.h2_c01167{height:29.530617px;}
.h3_c01167{height:34.693313px;}
.h4_c01167{height:35.519550px;}
.hf_c01167{height:38.927565px;}
.h12_c01167{height:39.877015px;}
.he_c01167{height:40.826465px;}
.h15_c01167{height:41.775782px;}
.h16_c01167{height:42.725364px;}
.h11_c01167{height:44.812402px;}
.h17_c01167{height:46.257750px;}
.h9_c01167{height:68.403007px;}
.h10_c01167{height:71.512031px;}
.hb_c01167{height:71.864912px;}
.ha_c01167{height:72.253565px;}
.hd_c01167{height:73.455293px;}
.h8_c01167{height:74.232792px;}
.hc_c01167{height:74.621444px;}
.h7_c01167{height:76.176054px;}
.h6_c01167{height:78.472969px;}
.h13_c01167{height:79.619403px;}
.h5_c01167{height:80.062577px;}
.h14_c01167{height:103.575850px;}
.h1_c01167{height:1110.000000px;}
.h0_c01167{height:1263.000000px;}
.w1_c01167{width:775.500000px;}
.w0_c01167{width:892.500000px;}
.x0_c01167{left:0.000000px;}
.x2_c01167{left:28.013685px;}
.x1_c01167{left:58.500000px;}
.x2e_c01167{left:87.294885px;}
.x1f_c01167{left:88.507635px;}
.x6_c01167{left:89.943135px;}
.x3f_c01167{left:142.502235px;}
.x7_c01167{left:143.576385px;}
.x49_c01167{left:167.687835px;}
.x36_c01167{left:177.221535px;}
.x40_c01167{left:188.324385px;}
.x11_c01167{left:189.814335px;}
.x1b_c01167{left:197.694735px;}
.x4a_c01167{left:199.689585px;}
.x63_c01167{left:209.446035px;}
.x44_c01167{left:211.757685px;}
.x55_c01167{left:220.603335px;}
.x2f_c01167{left:222.410085px;}
.x4b_c01167{left:231.369585px;}
.x8_c01167{left:232.438785px;}
.x26_c01167{left:254.065335px;}
.x12_c01167{left:256.005735px;}
.x37_c01167{left:265.118685px;}
.x9_c01167{left:267.024435px;}
.x20_c01167{left:276.805635px;}
.x13_c01167{left:287.547135px;}
.x56_c01167{left:293.660385px;}
.x57_c01167{left:296.872935px;}
.x5d_c01167{left:298.179735px;}
.x58_c01167{left:299.362785px;}
.x59_c01167{left:306.847185px;}
.x21_c01167{left:309.554835px;}
.x5a_c01167{left:311.128935px;}
.x45_c01167{left:318.920235px;}
.x30_c01167{left:321.974385px;}
.x38_c01167{left:332.780235px;}
.x14_c01167{left:341.729835px;}
.x27_c01167{left:344.194935px;}
.x15_c01167{left:353.887035px;}
.xa_c01167{left:355.471035px;}
.x6b_c01167{left:365.093835px;}
.x31_c01167{left:366.875835px;}
.x22_c01167{left:376.350135px;}
.x28_c01167{left:377.864835px;}
.x69_c01167{left:385.878885px;}
.xb_c01167{left:388.195485px;}
.x4c_c01167{left:390.957585px;}
.x1c_c01167{left:399.125085px;}
.x4d_c01167{left:408.683535px;}
.x29_c01167{left:410.391285px;}
.x1d_c01167{left:420.355635px;}
.xc_c01167{left:421.499085px;}
.x1e_c01167{left:423.300885px;}
.x41_c01167{left:430.829835px;}
.x5e_c01167{left:432.448485px;}
.x46_c01167{left:434.745285px;}
.x16_c01167{left:443.437485px;}
.x39_c01167{left:455.208585px;}
.x42_c01167{left:466.628235px;}
.x5f_c01167{left:476.226285px;}
.x17_c01167{left:477.661785px;}
.x3a_c01167{left:486.824235px;}
.x47_c01167{left:487.997385px;}
.x4e_c01167{left:499.214085px;}
.xd_c01167{left:509.609085px;}
.x60_c01167{left:510.792135px;}
.x23_c01167{left:517.717185px;}
.x4f_c01167{left:522.553335px;}
.x3b_c01167{left:531.339585px;}
.x51_c01167{left:533.398785px;}
.x6a_c01167{left:540.907935px;}
.xe_c01167{left:542.719635px;}
.x32_c01167{left:554.381835px;}
.x33_c01167{left:564.128385px;}
.x18_c01167{left:565.751985px;}
.x5b_c01167{left:576.726135px;}
.x2a_c01167{left:585.903435px;}
.x6c_c01167{left:587.116185px;}
.xf_c01167{left:597.209235px;}
.x48_c01167{left:598.540785px;}
.x52_c01167{left:600.713835px;}
.x3c_c01167{left:609.232785px;}
.x66_c01167{left:619.296135px;}
.x34_c01167{left:620.484135px;}
.x6d_c01167{left:629.349585px;}
.x19_c01167{left:630.700935px;}
.x24_c01167{left:642.709635px;}
.x2b_c01167{left:653.649135px;}
.x35_c01167{left:663.242235px;}
.x25_c01167{left:667.519035px;}
.x53_c01167{left:674.265885px;}
.x64_c01167{left:675.434085px;}
.x61_c01167{left:684.537135px;}
.x10_c01167{left:686.363685px;}
.x3d_c01167{left:687.838785px;}
.x67_c01167{left:694.971735px;}
.x43_c01167{left:697.060635px;}
.x50_c01167{left:699.689085px;}
.x3_c01167{left:705.807285px;}
.x2c_c01167{left:708.128835px;}
.x5c_c01167{left:709.618785px;}
.x4_c01167{left:712.177935px;}
.x5_c01167{left:714.643035px;}
.x3e_c01167{left:718.137735px;}
.x1a_c01167{left:719.528685px;}
.x54_c01167{left:721.414635px;}
.x62_c01167{left:729.136635px;}
.x65_c01167{left:739.298985px;}
.x68_c01167{left:741.655185px;}
.x2d_c01167{left:744.258885px;}
@media print{
.v3_c01167{vertical-align:-11.432960pt;}
.v0_c01167{vertical-align:0.000000pt;}
.v2_c01167{vertical-align:8.852800pt;}
.v1_c01167{vertical-align:18.990400pt;}
.ls19_c01167{letter-spacing:-3.283280pt;}
.ls12_c01167{letter-spacing:-2.414726pt;}
.ls1e_c01167{letter-spacing:-2.353126pt;}
.lsd_c01167{letter-spacing:-2.328480pt;}
.ls9_c01167{letter-spacing:-1.035376pt;}
.ls16_c01167{letter-spacing:-0.793340pt;}
.ls1a_c01167{letter-spacing:-0.537857pt;}
.ls11_c01167{letter-spacing:-0.396670pt;}
.ls5_c01167{letter-spacing:-0.013798pt;}
.ls3_c01167{letter-spacing:0.000000pt;}
.ls13_c01167{letter-spacing:0.268929pt;}
.ls1c_c01167{letter-spacing:0.489844pt;}
.lsa_c01167{letter-spacing:0.929705pt;}
.ls18_c01167{letter-spacing:2.332957pt;}
.ls14_c01167{letter-spacing:2.427082pt;}
.ls20_c01167{letter-spacing:2.467421pt;}
.ls1f_c01167{letter-spacing:2.709457pt;}
.ls2_c01167{letter-spacing:2.749796pt;}
.ls1d_c01167{letter-spacing:2.971662pt;}
.ls8_c01167{letter-spacing:3.097609pt;}
.ls10_c01167{letter-spacing:3.238400pt;}
.lsb_c01167{letter-spacing:3.256000pt;}
.ls6_c01167{letter-spacing:3.361609pt;}
.lsc_c01167{letter-spacing:3.379209pt;}
.ls7_c01167{letter-spacing:3.449609pt;}
.ls17_c01167{letter-spacing:3.511209pt;}
.ls4_c01167{letter-spacing:3.625609pt;}
.ls1_c01167{letter-spacing:10.172712pt;}
.ls0_c01167{letter-spacing:11.686312pt;}
.lsf_c01167{letter-spacing:51.955376pt;}
.ls15_c01167{letter-spacing:53.222576pt;}
.lse_c01167{letter-spacing:54.489776pt;}
.ls1b_c01167{letter-spacing:55.756800pt;}
.ls21_c01167{letter-spacing:57.024176pt;}
.ws0_c01167{word-spacing:-19.557840pt;}
.ws1_c01167{word-spacing:-16.808044pt;}
.ws2_c01167{word-spacing:-10.959872pt;}
.ws3_c01167{word-spacing:0.000000pt;}
._0_c01167{margin-left:-12.572452pt;}
._5_c01167{margin-left:-7.193868pt;}
._7_c01167{margin-left:-3.982528pt;}
._1_c01167{margin-left:-1.448952pt;}
._2_c01167{width:5.647796pt;}
._3_c01167{width:7.072865pt;}
._6_c01167{width:26.820870pt;}
._4_c01167{width:29.708800pt;}
.fs0_c01167{font-size:25.168000pt;}
.fs1_c01167{font-size:29.568000pt;}
.fs2_c01167{font-size:30.272176pt;}
.fs11_c01167{font-size:38.192176pt;}
.fs17_c01167{font-size:39.424000pt;}
.fs7_c01167{font-size:40.832176pt;}
.fsf_c01167{font-size:51.955376pt;}
.fs12_c01167{font-size:53.222576pt;}
.fse_c01167{font-size:54.489776pt;}
.fs15_c01167{font-size:55.756800pt;}
.fs16_c01167{font-size:57.024176pt;}
.fs9_c01167{font-size:57.376000pt;}
.fs8_c01167{font-size:61.952176pt;}
.fs10_c01167{font-size:64.768000pt;}
.fsb_c01167{font-size:65.120000pt;}
.fsa_c01167{font-size:65.472176pt;}
.fsd_c01167{font-size:66.528000pt;}
.fs4_c01167{font-size:66.880000pt;}
.fs6_c01167{font-size:67.232176pt;}
.fsc_c01167{font-size:67.584176pt;}
.fs5_c01167{font-size:68.992176pt;}
.fs13_c01167{font-size:70.224176pt;}
.fs3_c01167{font-size:72.512176pt;}
.fs14_c01167{font-size:93.808000pt;}
.y0_c01167{bottom:0.000000pt;}
.y1_c01167{bottom:68.000000pt;}
.y1b_c01167{bottom:116.816520pt;}
.y1a_c01167{bottom:145.966520pt;}
.y19_c01167{bottom:176.062520pt;}
.y18_c01167{bottom:204.574520pt;}
.y16_c01167{bottom:233.398920pt;}
.y17_c01167{bottom:236.254520pt;}
.y15_c01167{bottom:262.232120pt;}
.y14_c01167{bottom:289.793720pt;}
.y13_c01167{bottom:347.768120pt;}
.y3_c01167{bottom:394.337720pt;}
.y12_c01167{bottom:405.104520pt;}
.y11_c01167{bottom:433.620920pt;}
.y10_c01167{bottom:490.011320pt;}
.yf_c01167{bottom:518.518920pt;}
.ye_c01167{bottom:547.035320pt;}
.yd_c01167{bottom:575.226120pt;}
.yc_c01167{bottom:631.937720pt;}
.yb_c01167{bottom:660.766520pt;}
.ya_c01167{bottom:717.473720pt;}
.y9_c01167{bottom:746.302520pt;}
.y8_c01167{bottom:801.104520pt;}
.y7_c01167{bottom:830.571320pt;}
.y4_c01167{bottom:918.954120pt;}
.y6_c01167{bottom:925.606920pt;}
.y2_c01167{bottom:948.099720pt;}
.y5_c01167{bottom:948.416520pt;}
.h2_c01167{height:26.249438pt;}
.h3_c01167{height:30.838500pt;}
.h4_c01167{height:31.572934pt;}
.hf_c01167{height:34.602280pt;}
.h12_c01167{height:35.446236pt;}
.he_c01167{height:36.290191pt;}
.h15_c01167{height:37.134029pt;}
.h16_c01167{height:37.978101pt;}
.h11_c01167{height:39.833246pt;}
.h17_c01167{height:41.118000pt;}
.h9_c01167{height:60.802673pt;}
.h10_c01167{height:63.566250pt;}
.hb_c01167{height:63.879922pt;}
.ha_c01167{height:64.225391pt;}
.hd_c01167{height:65.293594pt;}
.h8_c01167{height:65.984704pt;}
.hc_c01167{height:66.330173pt;}
.h7_c01167{height:67.712048pt;}
.h6_c01167{height:69.753750pt;}
.h13_c01167{height:70.772802pt;}
.h5_c01167{height:71.166735pt;}
.h14_c01167{height:92.067422pt;}
.h1_c01167{height:986.666667pt;}
.h0_c01167{height:1122.666667pt;}
.w1_c01167{width:689.333333pt;}
.w0_c01167{width:793.333333pt;}
.x0_c01167{left:0.000000pt;}
.x2_c01167{left:24.901053pt;}
.x1_c01167{left:52.000000pt;}
.x2e_c01167{left:77.595453pt;}
.x1f_c01167{left:78.673453pt;}
.x6_c01167{left:79.949453pt;}
.x3f_c01167{left:126.668653pt;}
.x7_c01167{left:127.623453pt;}
.x49_c01167{left:149.055853pt;}
.x36_c01167{left:157.530253pt;}
.x40_c01167{left:167.399453pt;}
.x11_c01167{left:168.723853pt;}
.x1b_c01167{left:175.728653pt;}
.x4a_c01167{left:177.501853pt;}
.x63_c01167{left:186.174253pt;}
.x44_c01167{left:188.229053pt;}
.x55_c01167{left:196.091853pt;}
.x2f_c01167{left:197.697853pt;}
.x4b_c01167{left:205.661853pt;}
.x8_c01167{left:206.612253pt;}
.x26_c01167{left:225.835853pt;}
.x12_c01167{left:227.560653pt;}
.x37_c01167{left:235.661053pt;}
.x9_c01167{left:237.355053pt;}
.x20_c01167{left:246.049453pt;}
.x13_c01167{left:255.597453pt;}
.x56_c01167{left:261.031453pt;}
.x57_c01167{left:263.887053pt;}
.x5d_c01167{left:265.048653pt;}
.x58_c01167{left:266.100253pt;}
.x59_c01167{left:272.753053pt;}
.x21_c01167{left:275.159853pt;}
.x5a_c01167{left:276.559053pt;}
.x45_c01167{left:283.484653pt;}
.x30_c01167{left:286.199453pt;}
.x38_c01167{left:295.804653pt;}
.x14_c01167{left:303.759853pt;}
.x27_c01167{left:305.951053pt;}
.x15_c01167{left:314.566253pt;}
.xa_c01167{left:315.974253pt;}
.x6b_c01167{left:324.527853pt;}
.x31_c01167{left:326.111853pt;}
.x22_c01167{left:334.533453pt;}
.x28_c01167{left:335.879853pt;}
.x69_c01167{left:343.003453pt;}
.xb_c01167{left:345.062653pt;}
.x4c_c01167{left:347.517853pt;}
.x1c_c01167{left:354.777853pt;}
.x4d_c01167{left:363.274253pt;}
.x29_c01167{left:364.792253pt;}
.x1d_c01167{left:373.649453pt;}
.xc_c01167{left:374.665853pt;}
.x1e_c01167{left:376.267453pt;}
.x41_c01167{left:382.959853pt;}
.x5e_c01167{left:384.398653pt;}
.x46_c01167{left:386.440253pt;}
.x16_c01167{left:394.166653pt;}
.x39_c01167{left:404.629853pt;}
.x42_c01167{left:414.780653pt;}
.x5f_c01167{left:423.312253pt;}
.x17_c01167{left:424.588253pt;}
.x3a_c01167{left:432.732653pt;}
.x47_c01167{left:433.775453pt;}
.x4e_c01167{left:443.745853pt;}
.xd_c01167{left:452.985853pt;}
.x60_c01167{left:454.037453pt;}
.x23_c01167{left:460.193053pt;}
.x4f_c01167{left:464.491853pt;}
.x3b_c01167{left:472.301853pt;}
.x51_c01167{left:474.132253pt;}
.x6a_c01167{left:480.807053pt;}
.xe_c01167{left:482.417453pt;}
.x32_c01167{left:492.783853pt;}
.x33_c01167{left:501.447453pt;}
.x18_c01167{left:502.890653pt;}
.x5b_c01167{left:512.645453pt;}
.x2a_c01167{left:520.803053pt;}
.x6c_c01167{left:521.881053pt;}
.xf_c01167{left:530.852653pt;}
.x48_c01167{left:532.036253pt;}
.x52_c01167{left:533.967853pt;}
.x3c_c01167{left:541.540253pt;}
.x66_c01167{left:550.485453pt;}
.x34_c01167{left:551.541453pt;}
.x6d_c01167{left:559.421853pt;}
.x19_c01167{left:560.623053pt;}
.x24_c01167{left:571.297453pt;}
.x2b_c01167{left:581.021453pt;}
.x35_c01167{left:589.548653pt;}
.x25_c01167{left:593.350253pt;}
.x53_c01167{left:599.347453pt;}
.x64_c01167{left:600.385853pt;}
.x61_c01167{left:608.477453pt;}
.x10_c01167{left:610.101053pt;}
.x3d_c01167{left:611.412253pt;}
.x67_c01167{left:617.752653pt;}
.x43_c01167{left:619.609453pt;}
.x50_c01167{left:621.945853pt;}
.x3_c01167{left:627.384253pt;}
.x2c_c01167{left:629.447853pt;}
.x5c_c01167{left:630.772253pt;}
.x4_c01167{left:633.047053pt;}
.x5_c01167{left:635.238253pt;}
.x3e_c01167{left:638.344653pt;}
.x1a_c01167{left:639.581053pt;}
.x54_c01167{left:641.257453pt;}
.x62_c01167{left:648.121453pt;}
.x65_c01167{left:657.154653pt;}
.x68_c01167{left:659.249053pt;}
.x2d_c01167{left:661.563453pt;}
}





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

.ir_c01168:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01168{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01168;src:url('chunks/assets/font_fc2519e1b8f24009e1173dac.woff2')format("woff");}.ff1_c01168{font-family:ff1_c01168;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01168;src:url('chunks/assets/font_30de78924bd9011f8dc8b5a9.woff2')format("woff");}.ff2_c01168{font-family:ff2_c01168;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01168;src:url('chunks/assets/font_f6f1d081bd8ddcac06bccc28.woff2')format("woff");}.ff3_c01168{font-family:ff3_c01168;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01168;src:url('chunks/assets/font_e289691b8e8c44aa59754698.woff2')format("woff");}.ff4_c01168{font-family:ff4_c01168;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01168;src:url('chunks/assets/font_dc8843e125c7178d9befdee2.woff2')format("woff");}.ff5_c01168{font-family:ff5_c01168;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ma8_c01168{transform:matrix(0.022223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.022223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.022223,0.000000,0.000000,0.250000,0,0);}
.m8_c01168{transform:matrix(0.029763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.029763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.029763,0.000000,0.000000,0.250000,0,0);}
.m5f_c01168{transform:matrix(0.032896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032896,0.000000,0.000000,0.250000,0,0);}
.m4_c01168{transform:matrix(0.041667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.041667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.041667,0.000000,0.000000,0.250000,0,0);}
.m97_c01168{transform:matrix(0.055556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.055556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.055556,0.000000,0.000000,0.250000,0,0);}
.mb5_c01168{transform:matrix(0.071809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071809,0.000000,0.000000,0.250000,0,0);}
.m3_c01168{transform:matrix(0.077382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077382,0.000000,0.000000,0.250000,0,0);}
.mb6_c01168{transform:matrix(0.077660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077660,0.000000,0.000000,0.250000,0,0);}
.ma5_c01168{transform:matrix(0.078395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078395,0.000000,0.000000,0.250000,0,0);}
.ma9_c01168{transform:matrix(0.079166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.079166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.079166,0.000000,0.000000,0.250000,0,0);}
.m7_c01168{transform:matrix(0.086310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086310,0.000000,0.000000,0.250000,0,0);}
.mab_c01168{transform:matrix(0.088889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088889,0.000000,0.000000,0.250000,0,0);}
.m5_c01168{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);}
.m3f_c01168{transform:matrix(0.110974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110974,0.000000,0.000000,0.250000,0,0);}
.mb9_c01168{transform:matrix(0.111703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111703,0.000000,0.000000,0.250000,0,0);}
.mb7_c01168{transform:matrix(0.114554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114554,0.000000,0.000000,0.250000,0,0);}
.m6_c01168{transform:matrix(0.117064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117064,0.000000,0.000000,0.250000,0,0);}
.ma7_c01168{transform:matrix(0.127273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127273,0.000000,0.000000,0.250000,0,0);}
.mb4_c01168{transform:matrix(0.131916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131916,0.000000,0.000000,0.250000,0,0);}
.m5d_c01168{transform:matrix(0.134502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134502,0.000000,0.000000,0.250000,0,0);}
.m9_c01168{transform:matrix(0.135417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135417,0.000000,0.000000,0.250000,0,0);}
.m7d_c01168{transform:matrix(0.136178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136178,0.000000,0.000000,0.250000,0,0);}
.mba_c01168{transform:matrix(0.140707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140707,0.000000,0.000000,0.250000,0,0);}
.mc_c01168{transform:matrix(0.141535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141535,0.000000,0.000000,0.250000,0,0);}
.m7f_c01168{transform:matrix(0.143633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143633,0.000000,0.000000,0.250000,0,0);}
.m5e_c01168{transform:matrix(0.146382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146382,0.000000,0.000000,0.250000,0,0);}
.ma6_c01168{transform:matrix(0.148043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148043,0.000000,0.000000,0.250000,0,0);}
.m45_c01168{transform:matrix(0.149627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149627,0.000000,0.000000,0.250000,0,0);}
.mb_c01168{transform:matrix(0.149815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149815,0.000000,0.000000,0.250000,0,0);}
.maa_c01168{transform:matrix(0.151851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151851,0.000000,0.000000,0.250000,0,0);}
.m80_c01168{transform:matrix(0.152173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152173,0.000000,0.000000,0.250000,0,0);}
.m87_c01168{transform:matrix(0.157609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157609,0.000000,0.000000,0.250000,0,0);}
.m73_c01168{transform:matrix(0.160375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160375,0.000000,0.000000,0.250000,0,0);}
.m81_c01168{transform:matrix(0.163043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163043,0.000000,0.000000,0.250000,0,0);}
.m3c_c01168{transform:matrix(0.163160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163160,0.000000,0.000000,0.250000,0,0);}
.mb8_c01168{transform:matrix(0.164476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164476,0.000000,0.000000,0.250000,0,0);}
.m7e_c01168{transform:matrix(0.170731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170731,0.000000,0.000000,0.250000,0,0);}
.m4a_c01168{transform:matrix(0.191441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191441,0.000000,0.000000,0.250000,0,0);}
.m46_c01168{transform:matrix(0.193939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193939,0.000000,0.000000,0.250000,0,0);}
.m6a_c01168{transform:matrix(0.197376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197376,0.000000,0.000000,0.250000,0,0);}
.ma_c01168{transform:matrix(0.198846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198846,0.000000,0.000000,0.250000,0,0);}
.m60_c01168{transform:matrix(0.200658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200658,0.000000,0.000000,0.250000,0,0);}
.m5c_c01168{transform:matrix(0.201087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201087,0.000000,0.000000,0.250000,0,0);}
.m56_c01168{transform:matrix(0.202303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202303,0.000000,0.000000,0.250000,0,0);}
.m23_c01168{transform:matrix(0.204200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204200,0.000000,0.000000,0.250000,0,0);}
.m96_c01168{transform:matrix(0.204861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204861,0.000000,0.000000,0.250000,0,0);}
.m1c_c01168{transform:matrix(0.229419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229419,0.000000,0.000000,0.250000,0,0);}
.m19_c01168{transform:matrix(0.233615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233615,0.000000,0.000000,0.250000,0,0);}
.m70_c01168{transform:matrix(0.237217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237217,0.000000,0.000000,0.250000,0,0);}
.m89_c01168{transform:matrix(0.240347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240347,0.000000,0.000000,0.250000,0,0);}
.m63_c01168{transform:matrix(0.244447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244447,0.000000,0.000000,0.250000,0,0);}
.m77_c01168{transform:matrix(0.244998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244998,0.000000,0.000000,0.250000,0,0);}
.me_c01168{transform:matrix(0.247810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247810,0.000000,0.000000,0.250000,0,0);}
.m0_c01168{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m49_c01168{transform:matrix(0.255008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255008,0.000000,0.000000,0.250000,0,0);}
.m1b_c01168{transform:matrix(0.255133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255133,0.000000,0.000000,0.250000,0,0);}
.m83_c01168{transform:matrix(0.256993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256993,0.000000,0.000000,0.250000,0,0);}
.m4d_c01168{transform:matrix(0.257241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257241,0.000000,0.000000,0.250000,0,0);}
.m51_c01168{transform:matrix(0.257917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257917,0.000000,0.000000,0.250000,0,0);}
.m32_c01168{transform:matrix(0.259507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259507,0.000000,0.000000,0.250000,0,0);}
.m22_c01168{transform:matrix(0.259636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259636,0.000000,0.000000,0.250000,0,0);}
.m1_c01168{transform:matrix(0.260048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260048,0.000000,0.000000,0.250000,0,0);}
.ma0_c01168{transform:matrix(0.261113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261113,0.000000,0.000000,0.250000,0,0);}
.m48_c01168{transform:matrix(0.261138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261138,0.000000,0.000000,0.250000,0,0);}
.m62_c01168{transform:matrix(0.261360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261360,0.000000,0.000000,0.250000,0,0);}
.m3a_c01168{transform:matrix(0.261517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261517,0.000000,0.000000,0.250000,0,0);}
.m4b_c01168{transform:matrix(0.262281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262281,0.000000,0.000000,0.250000,0,0);}
.m59_c01168{transform:matrix(0.263327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263327,0.000000,0.000000,0.250000,0,0);}
.m20_c01168{transform:matrix(0.264255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264255,0.000000,0.000000,0.250000,0,0);}
.m35_c01168{transform:matrix(0.264282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264282,0.000000,0.000000,0.250000,0,0);}
.m2d_c01168{transform:matrix(0.265397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265397,0.000000,0.000000,0.250000,0,0);}
.m17_c01168{transform:matrix(0.265571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265571,0.000000,0.000000,0.250000,0,0);}
.mf_c01168{transform:matrix(0.265698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265698,0.000000,0.000000,0.250000,0,0);}
.m8f_c01168{transform:matrix(0.265735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265735,0.000000,0.000000,0.250000,0,0);}
.m3b_c01168{transform:matrix(0.268425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268425,0.000000,0.000000,0.250000,0,0);}
.m34_c01168{transform:matrix(0.268492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268492,0.000000,0.000000,0.250000,0,0);}
.m9f_c01168{transform:matrix(0.271054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271054,0.000000,0.000000,0.250000,0,0);}
.m30_c01168{transform:matrix(0.271548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271548,0.000000,0.000000,0.250000,0,0);}
.m53_c01168{transform:matrix(0.272012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272012,0.000000,0.000000,0.250000,0,0);}
.m88_c01168{transform:matrix(0.272299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272299,0.000000,0.000000,0.250000,0,0);}
.m91_c01168{transform:matrix(0.274435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274435,0.000000,0.000000,0.250000,0,0);}
.m55_c01168{transform:matrix(0.274792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274792,0.000000,0.000000,0.250000,0,0);}
.m28_c01168{transform:matrix(0.275373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275373,0.000000,0.000000,0.250000,0,0);}
.m6b_c01168{transform:matrix(0.275394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275394,0.000000,0.000000,0.250000,0,0);}
.m14_c01168{transform:matrix(0.275949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275949,0.000000,0.000000,0.250000,0,0);}
.m38_c01168{transform:matrix(0.277141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277141,0.000000,0.000000,0.250000,0,0);}
.m6d_c01168{transform:matrix(0.277188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277188,0.000000,0.000000,0.250000,0,0);}
.maf_c01168{transform:matrix(0.277796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277796,0.000000,0.000000,0.250000,0,0);}
.m84_c01168{transform:matrix(0.278416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278416,0.000000,0.000000,0.250000,0,0);}
.m5b_c01168{transform:matrix(0.280017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280017,0.000000,0.000000,0.250000,0,0);}
.m16_c01168{transform:matrix(0.280165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280165,0.000000,0.000000,0.250000,0,0);}
.m54_c01168{transform:matrix(0.282298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282298,0.000000,0.000000,0.250000,0,0);}
.mac_c01168{transform:matrix(0.284109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284109,0.000000,0.000000,0.250000,0,0);}
.m44_c01168{transform:matrix(0.284147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284147,0.000000,0.000000,0.250000,0,0);}
.m52_c01168{transform:matrix(0.285208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285208,0.000000,0.000000,0.250000,0,0);}
.m98_c01168{transform:matrix(0.285292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285292,0.000000,0.000000,0.250000,0,0);}
.m3e_c01168{transform:matrix(0.287815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287815,0.000000,0.000000,0.250000,0,0);}
.m11_c01168{transform:matrix(0.288359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288359,0.000000,0.000000,0.250000,0,0);}
.m9e_c01168{transform:matrix(0.288558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288558,0.000000,0.000000,0.250000,0,0);}
.m26_c01168{transform:matrix(0.288842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288842,0.000000,0.000000,0.250000,0,0);}
.md_c01168{transform:matrix(0.288933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288933,0.000000,0.000000,0.250000,0,0);}
.mae_c01168{transform:matrix(0.290120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290120,0.000000,0.000000,0.250000,0,0);}
.m2f_c01168{transform:matrix(0.290352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290352,0.000000,0.000000,0.250000,0,0);}
.m2a_c01168{transform:matrix(0.290552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290552,0.000000,0.000000,0.250000,0,0);}
.m4f_c01168{transform:matrix(0.291490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291490,0.000000,0.000000,0.250000,0,0);}
.m99_c01168{transform:matrix(0.292759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292759,0.000000,0.000000,0.250000,0,0);}
.ma1_c01168{transform:matrix(0.293175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293175,0.000000,0.000000,0.250000,0,0);}
.mb3_c01168{transform:matrix(0.293331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293331,0.000000,0.000000,0.250000,0,0);}
.m2e_c01168{transform:matrix(0.294048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294048,0.000000,0.000000,0.250000,0,0);}
.m39_c01168{transform:matrix(0.294968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294968,0.000000,0.000000,0.250000,0,0);}
.m67_c01168{transform:matrix(0.295964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295964,0.000000,0.000000,0.250000,0,0);}
.m69_c01168{transform:matrix(0.296505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296505,0.000000,0.000000,0.250000,0,0);}
.m9d_c01168{transform:matrix(0.296544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296544,0.000000,0.000000,0.250000,0,0);}
.m78_c01168{transform:matrix(0.297200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297200,0.000000,0.000000,0.250000,0,0);}
.m3d_c01168{transform:matrix(0.298783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298783,0.000000,0.000000,0.250000,0,0);}
.m68_c01168{transform:matrix(0.299037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299037,0.000000,0.000000,0.250000,0,0);}
.m76_c01168{transform:matrix(0.299097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299097,0.000000,0.000000,0.250000,0,0);}
.m18_c01168{transform:matrix(0.300771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300771,0.000000,0.000000,0.250000,0,0);}
.m61_c01168{transform:matrix(0.302728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302728,0.000000,0.000000,0.250000,0,0);}
.m8a_c01168{transform:matrix(0.304124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304124,0.000000,0.000000,0.250000,0,0);}
.m50_c01168{transform:matrix(0.304141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304141,0.000000,0.000000,0.250000,0,0);}
.m7b_c01168{transform:matrix(0.304301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304301,0.000000,0.000000,0.250000,0,0);}
.m82_c01168{transform:matrix(0.304978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304978,0.000000,0.000000,0.250000,0,0);}
.m10_c01168{transform:matrix(0.306574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306574,0.000000,0.000000,0.250000,0,0);}
.m2_c01168{transform:matrix(0.307696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307696,0.000000,0.000000,0.250000,0,0);}
.m6f_c01168{transform:matrix(0.308183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308183,0.000000,0.000000,0.250000,0,0);}
.m72_c01168{transform:matrix(0.309027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309027,0.000000,0.000000,0.250000,0,0);}
.m13_c01168{transform:matrix(0.310082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310082,0.000000,0.000000,0.250000,0,0);}
.m42_c01168{transform:matrix(0.311564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311564,0.000000,0.000000,0.250000,0,0);}
.m33_c01168{transform:matrix(0.312752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312752,0.000000,0.000000,0.250000,0,0);}
.m12_c01168{transform:matrix(0.313025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313025,0.000000,0.000000,0.250000,0,0);}
.m92_c01168{transform:matrix(0.314299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314299,0.000000,0.000000,0.250000,0,0);}
.m36_c01168{transform:matrix(0.314518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314518,0.000000,0.000000,0.250000,0,0);}
.m24_c01168{transform:matrix(0.315106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315106,0.000000,0.000000,0.250000,0,0);}
.ma3_c01168{transform:matrix(0.315700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315700,0.000000,0.000000,0.250000,0,0);}
.m27_c01168{transform:matrix(0.316486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316486,0.000000,0.000000,0.250000,0,0);}
.m7c_c01168{transform:matrix(0.316580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316580,0.000000,0.000000,0.250000,0,0);}
.m4c_c01168{transform:matrix(0.317413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317413,0.000000,0.000000,0.250000,0,0);}
.ma2_c01168{transform:matrix(0.317917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317917,0.000000,0.000000,0.250000,0,0);}
.m1f_c01168{transform:matrix(0.318067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318067,0.000000,0.000000,0.250000,0,0);}
.m15_c01168{transform:matrix(0.318552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318552,0.000000,0.000000,0.250000,0,0);}
.m9b_c01168{transform:matrix(0.318951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318951,0.000000,0.000000,0.250000,0,0);}
.m47_c01168{transform:matrix(0.319806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319806,0.000000,0.000000,0.250000,0,0);}
.ma4_c01168{transform:matrix(0.319947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319947,0.000000,0.000000,0.250000,0,0);}
.m2b_c01168{transform:matrix(0.320634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320634,0.000000,0.000000,0.250000,0,0);}
.m65_c01168{transform:matrix(0.320654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320654,0.000000,0.000000,0.250000,0,0);}
.m21_c01168{transform:matrix(0.321104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321104,0.000000,0.000000,0.250000,0,0);}
.mad_c01168{transform:matrix(0.321301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321301,0.000000,0.000000,0.250000,0,0);}
.m31_c01168{transform:matrix(0.322436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322436,0.000000,0.000000,0.250000,0,0);}
.mb2_c01168{transform:matrix(0.322565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322565,0.000000,0.000000,0.250000,0,0);}
.m9c_c01168{transform:matrix(0.324292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324292,0.000000,0.000000,0.250000,0,0);}
.m8d_c01168{transform:matrix(0.324835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324835,0.000000,0.000000,0.250000,0,0);}
.m66_c01168{transform:matrix(0.325347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325347,0.000000,0.000000,0.250000,0,0);}
.m2c_c01168{transform:matrix(0.325433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325433,0.000000,0.000000,0.250000,0,0);}
.m7a_c01168{transform:matrix(0.326687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326687,0.000000,0.000000,0.250000,0,0);}
.m4e_c01168{transform:matrix(0.327410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327410,0.000000,0.000000,0.250000,0,0);}
.m8b_c01168{transform:matrix(0.327784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327784,0.000000,0.000000,0.250000,0,0);}
.m94_c01168{transform:matrix(0.329912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329912,0.000000,0.000000,0.250000,0,0);}
.m58_c01168{transform:matrix(0.330499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330499,0.000000,0.000000,0.250000,0,0);}
.m9a_c01168{transform:matrix(0.333977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333977,0.000000,0.000000,0.250000,0,0);}
.m86_c01168{transform:matrix(0.334086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334086,0.000000,0.000000,0.250000,0,0);}
.m85_c01168{transform:matrix(0.335398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335398,0.000000,0.000000,0.250000,0,0);}
.m5a_c01168{transform:matrix(0.335937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335937,0.000000,0.000000,0.250000,0,0);}
.m29_c01168{transform:matrix(0.336679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336679,0.000000,0.000000,0.250000,0,0);}
.m95_c01168{transform:matrix(0.336897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336897,0.000000,0.000000,0.250000,0,0);}
.m74_c01168{transform:matrix(0.338905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338905,0.000000,0.000000,0.250000,0,0);}
.m8c_c01168{transform:matrix(0.339822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339822,0.000000,0.000000,0.250000,0,0);}
.m43_c01168{transform:matrix(0.340477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340477,0.000000,0.000000,0.250000,0,0);}
.m64_c01168{transform:matrix(0.341154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341154,0.000000,0.000000,0.250000,0,0);}
.m57_c01168{transform:matrix(0.341936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341936,0.000000,0.000000,0.250000,0,0);}
.m1a_c01168{transform:matrix(0.342252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342252,0.000000,0.000000,0.250000,0,0);}
.m37_c01168{transform:matrix(0.344956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344956,0.000000,0.000000,0.250000,0,0);}
.mb1_c01168{transform:matrix(0.345131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345131,0.000000,0.000000,0.250000,0,0);}
.m6c_c01168{transform:matrix(0.346640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346640,0.000000,0.000000,0.250000,0,0);}
.m1e_c01168{transform:matrix(0.352079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352079,0.000000,0.000000,0.250000,0,0);}
.m79_c01168{transform:matrix(0.353599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353599,0.000000,0.000000,0.250000,0,0);}
.m6e_c01168{transform:matrix(0.353949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353949,0.000000,0.000000,0.250000,0,0);}
.m93_c01168{transform:matrix(0.361170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361170,0.000000,0.000000,0.250000,0,0);}
.m75_c01168{transform:matrix(0.361680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361680,0.000000,0.000000,0.250000,0,0);}
.m40_c01168{transform:matrix(0.368855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368855,0.000000,0.000000,0.250000,0,0);}
.m41_c01168{transform:matrix(0.371352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371352,0.000000,0.000000,0.250000,0,0);}
.m8e_c01168{transform:matrix(0.385974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385974,0.000000,0.000000,0.250000,0,0);}
.m1d_c01168{transform:matrix(0.397481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397481,0.000000,0.000000,0.250000,0,0);}
.m71_c01168{transform:matrix(0.397547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397547,0.000000,0.000000,0.250000,0,0);}
.m25_c01168{transform:matrix(0.403892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403892,0.000000,0.000000,0.250000,0,0);}
.mb0_c01168{transform:matrix(0.410303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410303,0.000000,0.000000,0.250000,0,0);}
.m90_c01168{transform:matrix(0.416714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416714,0.000000,0.000000,0.250000,0,0);}
.v2_c01168{vertical-align:-9.943560px;}
.v0_c01168{vertical-align:0.000000px;}
.v1_c01168{vertical-align:4.272048px;}
.lsf_c01168{letter-spacing:-3.991680px;}
.ls7_c01168{letter-spacing:-3.548167px;}
.ls21_c01168{letter-spacing:-3.257100px;}
.ls9_c01168{letter-spacing:-3.049200px;}
.ls24_c01168{letter-spacing:-2.938327px;}
.ls17_c01168{letter-spacing:-2.882880px;}
.ls8_c01168{letter-spacing:-2.577967px;}
.lse_c01168{letter-spacing:-2.550240px;}
.ls15_c01168{letter-spacing:-2.425500px;}
.ls11_c01168{letter-spacing:-1.711717px;}
.ls18_c01168{letter-spacing:-0.780756px;}
.ls3_c01168{letter-spacing:0.000000px;}
.ls1a_c01168{letter-spacing:0.559787px;}
.ls1_c01168{letter-spacing:1.333177px;}
.lsc_c01168{letter-spacing:1.633742px;}
.ls1e_c01168{letter-spacing:1.831500px;}
.ls12_c01168{letter-spacing:1.843764px;}
.ls10_c01168{letter-spacing:2.273040px;}
.ls22_c01168{letter-spacing:2.318031px;}
.ls1d_c01168{letter-spacing:2.946248px;}
.ls19_c01168{letter-spacing:3.447110px;}
.ls0_c01168{letter-spacing:3.525992px;}
.lsa_c01168{letter-spacing:3.593700px;}
.lsd_c01168{letter-spacing:3.643200px;}
.ls5_c01168{letter-spacing:3.682810px;}
.lsb_c01168{letter-spacing:3.781810px;}
.ls2_c01168{letter-spacing:3.977534px;}
.ls16_c01168{letter-spacing:4.118400px;}
.ls4_c01168{letter-spacing:4.197610px;}
.ls1f_c01168{letter-spacing:51.321798px;}
.ls13_c01168{letter-spacing:52.747398px;}
.ls14_c01168{letter-spacing:54.172998px;}
.ls1b_c01168{letter-spacing:58.449798px;}
.ls6_c01168{letter-spacing:59.875398px;}
.ls20_c01168{letter-spacing:64.152198px;}
.ls1c_c01168{letter-spacing:65.577798px;}
.ls23_c01168{letter-spacing:67.003200px;}
.sc__c01168{text-shadow:none;}
.sc0_c01168{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01168{-webkit-text-stroke:0px transparent;}
.sc0_c01168{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01168{word-spacing:-24.514042px;}
.ws1_c01168{word-spacing:-19.747227px;}
.ws2_c01168{word-spacing:0.000000px;}
._5_c01168{margin-left:-11.784992px;}
._1_c01168{width:6.380715px;}
._4_c01168{width:8.801819px;}
._2_c01168{width:34.717221px;}
._3_c01168{width:39.627035px;}
._0_c01168{width:47.368332px;}
.fc0_c01168{color:transparent;}
.fs1_c01168{font-size:22.176000px;}
.fsc_c01168{font-size:25.344000px;}
.fs0_c01168{font-size:34.056198px;}
.fs18_c01168{font-size:36.630000px;}
.fse_c01168{font-size:48.906198px;}
.fs19_c01168{font-size:51.321798px;}
.fs10_c01168{font-size:52.747398px;}
.fs11_c01168{font-size:54.172998px;}
.fs15_c01168{font-size:58.449798px;}
.fs4_c01168{font-size:59.875398px;}
.fs1a_c01168{font-size:64.152198px;}
.fs16_c01168{font-size:65.577798px;}
.fsf_c01168{font-size:66.330000px;}
.fs1d_c01168{font-size:67.003200px;}
.fs13_c01168{font-size:67.122198px;}
.fsd_c01168{font-size:69.300000px;}
.fs8_c01168{font-size:71.874000px;}
.fsa_c01168{font-size:72.864000px;}
.fs3_c01168{font-size:73.656198px;}
.fs9_c01168{font-size:75.636198px;}
.fs14_c01168{font-size:76.230000px;}
.fs12_c01168{font-size:82.368000px;}
.fs2_c01168{font-size:83.952198px;}
.fs1c_c01168{font-size:85.536198px;}
.fs6_c01168{font-size:87.120000px;}
.fs1b_c01168{font-size:93.060000px;}
.fs17_c01168{font-size:99.792198px;}
.fs5_c01168{font-size:101.376198px;}
.fsb_c01168{font-size:114.048000px;}
.fs7_c01168{font-size:136.224198px;}
.y0_c01168{bottom:0.000000px;}
.y1_c01168{bottom:76.500000px;}
.y1f_c01168{bottom:185.239935px;}
.y20_c01168{bottom:187.734735px;}
.y1e_c01168{bottom:222.305535px;}
.y1d_c01168{bottom:252.599535px;}
.y1c_c01168{bottom:317.459385px;}
.y1b_c01168{bottom:348.822585px;}
.y1a_c01168{bottom:381.259935px;}
.y18_c01168{bottom:412.618185px;}
.y19_c01168{bottom:417.964185px;}
.y16_c01168{bottom:426.517785px;}
.y17_c01168{bottom:427.235535px;}
.y15_c01168{bottom:444.337785px;}
.y3_c01168{bottom:457.880985px;}
.y14_c01168{bottom:477.839385px;}
.y13_c01168{bottom:509.915385px;}
.y2_c01168{bottom:523.107135px;}
.y12_c01168{bottom:573.359535px;}
.y11_c01168{bottom:606.499785px;}
.y10_c01168{bottom:637.862985px;}
.yf_c01168{bottom:669.943935px;}
.ye_c01168{bottom:700.950735px;}
.yd_c01168{bottom:716.270985px;}
.yc_c01168{bottom:733.383135px;}
.yb_c01168{bottom:765.097785px;}
.ya_c01168{bottom:817.488585px;}
.y9_c01168{bottom:829.967535px;}
.y8_c01168{bottom:862.038585px;}
.y7_c01168{bottom:894.119535px;}
.y6_c01168{bottom:924.769935px;}
.y5_c01168{bottom:1065.542985px;}
.y4_c01168{bottom:1085.855310px;}
.h3_c01168{height:23.128875px;}
.he_c01168{height:24.873750px;}
.h1d_c01168{height:34.180317px;}
.h12_c01168{height:35.129767px;}
.h2_c01168{height:35.519550px;}
.h13_c01168{height:36.079217px;}
.h1c_c01168{height:38.203945px;}
.h18_c01168{height:38.927565px;}
.h6_c01168{height:39.877015px;}
.h1e_c01168{height:42.725364px;}
.h19_c01168{height:43.674813px;}
.h21_c01168{height:44.624131px;}
.h10_c01168{height:51.007636px;}
.h14_c01168{height:68.014160px;}
.h11_c01168{height:69.180117px;}
.h16_c01168{height:70.006355px;}
.hc_c01168{height:71.476453px;}
.hf_c01168{height:72.277734px;}
.h5_c01168{height:72.289530px;}
.hb_c01168{height:74.232792px;}
.h17_c01168{height:74.815576px;}
.ha_c01168{height:74.962336px;}
.h1b_c01168{height:76.561578px;}
.h15_c01168{height:80.839688px;}
.h4_c01168{height:82.394491px;}
.h20_c01168{height:83.949101px;}
.h8_c01168{height:85.503516px;}
.h22_c01168{height:90.863438px;}
.h1f_c01168{height:97.058672px;}
.h7_c01168{height:99.495194px;}
.h1a_c01168{height:104.080144px;}
.hd_c01168{height:111.931875px;}
.h9_c01168{height:142.077582px;}
.h1_c01168{height:1110.000000px;}
.h0_c01168{height:1263.000000px;}
.w1_c01168{width:775.500000px;}
.w0_c01168{width:892.500000px;}
.x0_c01168{left:0.000000px;}
.x2_c01168{left:19.380885px;}
.x3_c01168{left:52.649835px;}
.x1_c01168{left:58.500000px;}
.x2e_c01168{left:82.052835px;}
.x77_c01168{left:136.487985px;}
.x18_c01168{left:137.799735px;}
.x6_c01168{left:139.779735px;}
.x5b_c01168{left:171.504285px;}
.x58_c01168{left:173.246685px;}
.x3b_c01168{left:182.740785px;}
.x78_c01168{left:190.304385px;}
.x2f_c01168{left:192.571485px;}
.x20_c01168{left:193.828785px;}
.x42_c01168{left:195.655335px;}
.x35_c01168{left:203.575335px;}
.x61_c01168{left:205.990935px;}
.x4b_c01168{left:216.821535px;}
.x79_c01168{left:222.202185px;}
.x7_c01168{left:225.587985px;}
.x8_c01168{left:230.226135px;}
.x59_c01168{left:236.982885px;}
.x3c_c01168{left:238.086735px;}
.x9_c01168{left:239.492535px;}
.x2d_c01168{left:247.363035px;}
.x62_c01168{left:249.115335px;}
.x21_c01168{left:251.001285px;}
.xa_c01168{left:259.089585px;}
.x4c_c01168{left:260.163735px;}
.x5a_c01168{left:261.213135px;}
.x54_c01168{left:271.103235px;}
.x66_c01168{left:272.122935px;}
.xb_c01168{left:280.834935px;}
.x43_c01168{left:281.849685px;}
.x6e_c01168{left:283.775235px;}
.xc_c01168{left:291.170535px;}
.xd_c01168{left:294.729585px;}
.x29_c01168{left:304.936485px;}
.x36_c01168{left:314.638485px;}
.x44_c01168{left:316.593735px;}
.x30_c01168{left:326.548185px;}
.x22_c01168{left:327.647085px;}
.xe_c01168{left:336.349185px;}
.x19_c01168{left:337.754985px;}
.x74_c01168{left:343.878135px;}
.x55_c01168{left:348.773685px;}
.xf_c01168{left:350.719035px;}
.x10_c01168{left:357.634185px;}
.x45_c01168{left:359.193435px;}
.x11_c01168{left:360.312135px;}
.x75_c01168{left:370.236885px;}
.x63_c01168{left:372.810885px;}
.x5c_c01168{left:379.161735px;}
.x2a_c01168{left:394.288935px;}
.x7a_c01168{left:395.343285px;}
.x37_c01168{left:404.094885px;}
.x6b_c01168{left:405.277935px;}
.x31_c01168{left:414.613635px;}
.x1a_c01168{left:416.207535px;}
.x2b_c01168{left:426.345135px;}
.x46_c01168{left:428.122185px;}
.x4d_c01168{left:437.368785px;}
.x23_c01168{left:439.180485px;}
.x12_c01168{left:440.502135px;}
.x67_c01168{left:449.075535px;}
.x13_c01168{left:460.044735px;}
.x5d_c01168{left:461.079285px;}
.x24_c01168{left:471.627735px;}
.x70_c01168{left:480.775335px;}
.x32_c01168{left:482.324685px;}
.x5e_c01168{left:483.393885px;}
.x1b_c01168{left:492.392985px;}
.x47_c01168{left:503.881935px;}
.x6c_c01168{left:505.470885px;}
.x3d_c01168{left:510.782235px;}
.x14_c01168{left:513.826485px;}
.x38_c01168{left:515.989635px;}
.x5f_c01168{left:517.232085px;}
.x3e_c01168{left:518.786385px;}
.x2c_c01168{left:525.419385px;}
.x76_c01168{left:526.523235px;}
.x71_c01168{left:527.800335px;}
.x3f_c01168{left:535.571835px;}
.x60_c01168{left:537.056835px;}
.x1c_c01168{left:539.304135px;}
.x4e_c01168{left:544.947135px;}
.x15_c01168{left:548.085435px;}
.x39_c01168{left:558.406185px;}
.x48_c01168{left:559.663485px;}
.x68_c01168{left:570.147585px;}
.x6f_c01168{left:571.439535px;}
.x56_c01168{left:580.686135px;}
.x25_c01168{left:582.809685px;}
.x6d_c01168{left:593.160135px;}
.x4f_c01168{left:604.644135px;}
.x49_c01168{left:613.653135px;}
.x64_c01168{left:614.806485px;}
.x4_c01168{left:624.313950px;}
.x1d_c01168{left:625.493535px;}
.x16_c01168{left:627.884385px;}
.x50_c01168{left:637.175535px;}
.x40_c01168{left:647.129985px;}
.x26_c01168{left:648.798135px;}
.x33_c01168{left:658.500135px;}
.x51_c01168{left:659.688135px;}
.x27_c01168{left:669.400035px;}
.x41_c01168{left:670.642485px;}
.x57_c01168{left:679.938585px;}
.x1e_c01168{left:682.250235px;}
.x4a_c01168{left:691.224585px;}
.x52_c01168{left:692.471985px;}
.x5_c01168{left:701.832435px;}
.x28_c01168{left:704.000535px;}
.x3a_c01168{left:707.797185px;}
.x65_c01168{left:712.034385px;}
.x1f_c01168{left:713.469885px;}
.x17_c01168{left:715.048935px;}
.x69_c01168{left:716.796285px;}
.x53_c01168{left:725.745885px;}
.x6a_c01168{left:727.255635px;}
.x34_c01168{left:736.799235px;}
.x72_c01168{left:758.767335px;}
.x73_c01168{left:762.331335px;}
@media print{
.v2_c01168{vertical-align:-8.838720pt;}
.v0_c01168{vertical-align:0.000000pt;}
.v1_c01168{vertical-align:3.797376pt;}
.lsf_c01168{letter-spacing:-3.548160pt;}
.ls7_c01168{letter-spacing:-3.153926pt;}
.ls21_c01168{letter-spacing:-2.895200pt;}
.ls9_c01168{letter-spacing:-2.710400pt;}
.ls24_c01168{letter-spacing:-2.611846pt;}
.ls17_c01168{letter-spacing:-2.562560pt;}
.ls8_c01168{letter-spacing:-2.291526pt;}
.lse_c01168{letter-spacing:-2.266880pt;}
.ls15_c01168{letter-spacing:-2.156000pt;}
.ls11_c01168{letter-spacing:-1.521526pt;}
.ls18_c01168{letter-spacing:-0.694005pt;}
.ls3_c01168{letter-spacing:0.000000pt;}
.ls1a_c01168{letter-spacing:0.497589pt;}
.ls1_c01168{letter-spacing:1.185046pt;}
.lsc_c01168{letter-spacing:1.452215pt;}
.ls1e_c01168{letter-spacing:1.628000pt;}
.ls12_c01168{letter-spacing:1.638901pt;}
.ls10_c01168{letter-spacing:2.020480pt;}
.ls22_c01168{letter-spacing:2.060472pt;}
.ls1d_c01168{letter-spacing:2.618887pt;}
.ls19_c01168{letter-spacing:3.064098pt;}
.ls0_c01168{letter-spacing:3.134215pt;}
.lsa_c01168{letter-spacing:3.194400pt;}
.lsd_c01168{letter-spacing:3.238400pt;}
.ls5_c01168{letter-spacing:3.273609pt;}
.lsb_c01168{letter-spacing:3.361609pt;}
.ls2_c01168{letter-spacing:3.535586pt;}
.ls16_c01168{letter-spacing:3.660800pt;}
.ls4_c01168{letter-spacing:3.731209pt;}
.ls1f_c01168{letter-spacing:45.619376pt;}
.ls13_c01168{letter-spacing:46.886576pt;}
.ls14_c01168{letter-spacing:48.153776pt;}
.ls1b_c01168{letter-spacing:51.955376pt;}
.ls6_c01168{letter-spacing:53.222576pt;}
.ls20_c01168{letter-spacing:57.024176pt;}
.ls1c_c01168{letter-spacing:58.291376pt;}
.ls23_c01168{letter-spacing:59.558400pt;}
.ws0_c01168{word-spacing:-21.790259pt;}
.ws1_c01168{word-spacing:-17.553090pt;}
.ws2_c01168{word-spacing:0.000000pt;}
._5_c01168{margin-left:-10.475548pt;}
._1_c01168{width:5.671746pt;}
._4_c01168{width:7.823839pt;}
._2_c01168{width:30.859752pt;}
._3_c01168{width:35.224031pt;}
._0_c01168{width:42.105184pt;}
.fs1_c01168{font-size:19.712000pt;}
.fsc_c01168{font-size:22.528000pt;}
.fs0_c01168{font-size:30.272176pt;}
.fs18_c01168{font-size:32.560000pt;}
.fse_c01168{font-size:43.472176pt;}
.fs19_c01168{font-size:45.619376pt;}
.fs10_c01168{font-size:46.886576pt;}
.fs11_c01168{font-size:48.153776pt;}
.fs15_c01168{font-size:51.955376pt;}
.fs4_c01168{font-size:53.222576pt;}
.fs1a_c01168{font-size:57.024176pt;}
.fs16_c01168{font-size:58.291376pt;}
.fsf_c01168{font-size:58.960000pt;}
.fs1d_c01168{font-size:59.558400pt;}
.fs13_c01168{font-size:59.664176pt;}
.fsd_c01168{font-size:61.600000pt;}
.fs8_c01168{font-size:63.888000pt;}
.fsa_c01168{font-size:64.768000pt;}
.fs3_c01168{font-size:65.472176pt;}
.fs9_c01168{font-size:67.232176pt;}
.fs14_c01168{font-size:67.760000pt;}
.fs12_c01168{font-size:73.216000pt;}
.fs2_c01168{font-size:74.624176pt;}
.fs1c_c01168{font-size:76.032176pt;}
.fs6_c01168{font-size:77.440000pt;}
.fs1b_c01168{font-size:82.720000pt;}
.fs17_c01168{font-size:88.704176pt;}
.fs5_c01168{font-size:90.112176pt;}
.fsb_c01168{font-size:101.376000pt;}
.fs7_c01168{font-size:121.088176pt;}
.y0_c01168{bottom:0.000000pt;}
.y1_c01168{bottom:68.000000pt;}
.y1f_c01168{bottom:164.657720pt;}
.y20_c01168{bottom:166.875320pt;}
.y1e_c01168{bottom:197.604920pt;}
.y1d_c01168{bottom:224.532920pt;}
.y1c_c01168{bottom:282.186120pt;}
.y1b_c01168{bottom:310.064520pt;}
.y1a_c01168{bottom:338.897720pt;}
.y18_c01168{bottom:366.771720pt;}
.y19_c01168{bottom:371.523720pt;}
.y16_c01168{bottom:379.126920pt;}
.y17_c01168{bottom:379.764920pt;}
.y15_c01168{bottom:394.966920pt;}
.y3_c01168{bottom:407.005320pt;}
.y14_c01168{bottom:424.746120pt;}
.y13_c01168{bottom:453.258120pt;}
.y2_c01168{bottom:464.984120pt;}
.y12_c01168{bottom:509.652920pt;}
.y11_c01168{bottom:539.110920pt;}
.y10_c01168{bottom:566.989320pt;}
.yf_c01168{bottom:595.505720pt;}
.ye_c01168{bottom:623.067320pt;}
.yd_c01168{bottom:636.685320pt;}
.yc_c01168{bottom:651.896120pt;}
.yb_c01168{bottom:680.086920pt;}
.ya_c01168{bottom:726.656520pt;}
.y9_c01168{bottom:737.748920pt;}
.y8_c01168{bottom:766.256520pt;}
.y7_c01168{bottom:794.772920pt;}
.y6_c01168{bottom:822.017720pt;}
.y5_c01168{bottom:947.149320pt;}
.y4_c01168{bottom:965.204720pt;}
.h3_c01168{height:20.559000pt;}
.he_c01168{height:22.110000pt;}
.h1d_c01168{height:30.382504pt;}
.h12_c01168{height:31.226460pt;}
.h2_c01168{height:31.572934pt;}
.h13_c01168{height:32.070415pt;}
.h1c_c01168{height:33.959063pt;}
.h18_c01168{height:34.602280pt;}
.h6_c01168{height:35.446236pt;}
.h1e_c01168{height:37.978101pt;}
.h19_c01168{height:38.822056pt;}
.h21_c01168{height:39.665894pt;}
.h10_c01168{height:45.340121pt;}
.h14_c01168{height:60.457031pt;}
.h11_c01168{height:61.493438pt;}
.h16_c01168{height:62.227871pt;}
.hc_c01168{height:63.534625pt;}
.hf_c01168{height:64.246875pt;}
.h5_c01168{height:64.257360pt;}
.hb_c01168{height:65.984704pt;}
.h17_c01168{height:66.502734pt;}
.ha_c01168{height:66.633188pt;}
.h1b_c01168{height:68.054736pt;}
.h15_c01168{height:71.857500pt;}
.h4_c01168{height:73.239548pt;}
.h20_c01168{height:74.621423pt;}
.h8_c01168{height:76.003125pt;}
.h22_c01168{height:80.767500pt;}
.h1f_c01168{height:86.274375pt;}
.h7_c01168{height:88.440173pt;}
.h1a_c01168{height:92.515684pt;}
.hd_c01168{height:99.495000pt;}
.h9_c01168{height:126.291184pt;}
.h1_c01168{height:986.666667pt;}
.h0_c01168{height:1122.666667pt;}
.w1_c01168{width:689.333333pt;}
.w0_c01168{width:793.333333pt;}
.x0_c01168{left:0.000000pt;}
.x2_c01168{left:17.227453pt;}
.x3_c01168{left:46.799853pt;}
.x1_c01168{left:52.000000pt;}
.x2e_c01168{left:72.935853pt;}
.x77_c01168{left:121.322653pt;}
.x18_c01168{left:122.488653pt;}
.x6_c01168{left:124.248653pt;}
.x5b_c01168{left:152.448253pt;}
.x58_c01168{left:153.997053pt;}
.x3b_c01168{left:162.436253pt;}
.x78_c01168{left:169.159453pt;}
.x2f_c01168{left:171.174653pt;}
.x20_c01168{left:172.292253pt;}
.x42_c01168{left:173.915853pt;}
.x35_c01168{left:180.955853pt;}
.x61_c01168{left:183.103053pt;}
.x4b_c01168{left:192.730253pt;}
.x79_c01168{left:197.513053pt;}
.x7_c01168{left:200.522653pt;}
.x8_c01168{left:204.645453pt;}
.x59_c01168{left:210.651453pt;}
.x3c_c01168{left:211.632653pt;}
.x9_c01168{left:212.882253pt;}
.x2d_c01168{left:219.878253pt;}
.x62_c01168{left:221.435853pt;}
.x21_c01168{left:223.112253pt;}
.xa_c01168{left:230.301853pt;}
.x4c_c01168{left:231.256653pt;}
.x5a_c01168{left:232.189453pt;}
.x54_c01168{left:240.980653pt;}
.x66_c01168{left:241.887053pt;}
.xb_c01168{left:249.631053pt;}
.x43_c01168{left:250.533053pt;}
.x6e_c01168{left:252.244653pt;}
.xc_c01168{left:258.818253pt;}
.xd_c01168{left:261.981853pt;}
.x29_c01168{left:271.054653pt;}
.x36_c01168{left:279.678653pt;}
.x44_c01168{left:281.416653pt;}
.x30_c01168{left:290.265053pt;}
.x22_c01168{left:291.241853pt;}
.xe_c01168{left:298.977053pt;}
.x19_c01168{left:300.226653pt;}
.x74_c01168{left:305.669453pt;}
.x55_c01168{left:310.021053pt;}
.xf_c01168{left:311.750253pt;}
.x10_c01168{left:317.897053pt;}
.x45_c01168{left:319.283053pt;}
.x11_c01168{left:320.277453pt;}
.x75_c01168{left:329.099453pt;}
.x63_c01168{left:331.387453pt;}
.x5c_c01168{left:337.032653pt;}
.x2a_c01168{left:350.479053pt;}
.x7a_c01168{left:351.416253pt;}
.x37_c01168{left:359.195453pt;}
.x6b_c01168{left:360.247053pt;}
.x31_c01168{left:368.545453pt;}
.x1a_c01168{left:369.962253pt;}
.x2b_c01168{left:378.973453pt;}
.x46_c01168{left:380.553053pt;}
.x4d_c01168{left:388.772253pt;}
.x23_c01168{left:390.382653pt;}
.x12_c01168{left:391.557453pt;}
.x67_c01168{left:399.178253pt;}
.x13_c01168{left:408.928653pt;}
.x5d_c01168{left:409.848253pt;}
.x24_c01168{left:419.224653pt;}
.x70_c01168{left:427.355853pt;}
.x32_c01168{left:428.733053pt;}
.x5e_c01168{left:429.683453pt;}
.x1b_c01168{left:437.682653pt;}
.x47_c01168{left:447.895053pt;}
.x6c_c01168{left:449.307453pt;}
.x3d_c01168{left:454.028653pt;}
.x14_c01168{left:456.734653pt;}
.x38_c01168{left:458.657453pt;}
.x5f_c01168{left:459.761853pt;}
.x3e_c01168{left:461.143453pt;}
.x2c_c01168{left:467.039453pt;}
.x76_c01168{left:468.020653pt;}
.x71_c01168{left:469.155853pt;}
.x3f_c01168{left:476.063853pt;}
.x60_c01168{left:477.383853pt;}
.x1c_c01168{left:479.381453pt;}
.x4e_c01168{left:484.397453pt;}
.x15_c01168{left:487.187053pt;}
.x39_c01168{left:496.361053pt;}
.x48_c01168{left:497.478653pt;}
.x68_c01168{left:506.797853pt;}
.x6f_c01168{left:507.946253pt;}
.x56_c01168{left:516.165453pt;}
.x25_c01168{left:518.053053pt;}
.x6d_c01168{left:527.253453pt;}
.x4f_c01168{left:537.461453pt;}
.x49_c01168{left:545.469453pt;}
.x64_c01168{left:546.494653pt;}
.x4_c01168{left:554.945733pt;}
.x1d_c01168{left:555.994253pt;}
.x16_c01168{left:558.119453pt;}
.x50_c01168{left:566.378253pt;}
.x40_c01168{left:575.226653pt;}
.x26_c01168{left:576.709453pt;}
.x33_c01168{left:585.333453pt;}
.x51_c01168{left:586.389453pt;}
.x27_c01168{left:595.022253pt;}
.x41_c01168{left:596.126653pt;}
.x57_c01168{left:604.389853pt;}
.x1e_c01168{left:606.444653pt;}
.x4a_c01168{left:614.421853pt;}
.x52_c01168{left:615.530653pt;}
.x5_c01168{left:623.851053pt;}
.x28_c01168{left:625.778253pt;}
.x3a_c01168{left:629.153053pt;}
.x65_c01168{left:632.919453pt;}
.x1f_c01168{left:634.195453pt;}
.x17_c01168{left:635.599053pt;}
.x69_c01168{left:637.152253pt;}
.x53_c01168{left:645.107453pt;}
.x6a_c01168{left:646.449453pt;}
.x34_c01168{left:654.932653pt;}
.x72_c01168{left:674.459853pt;}
.x73_c01168{left:677.627853pt;}
}





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

.ir_c01169:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01169{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01169;src:url('chunks/assets/font_150aae6049d443d9a8cd84dd.woff2')format("woff");}.ff1_c01169{font-family:ff1_c01169;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01169;src:url('chunks/assets/font_2b261e16652a948841c8a964.woff2')format("woff");}.ff2_c01169{font-family:ff2_c01169;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01169;src:url('chunks/assets/font_ca8f34237030262a60b99e15.woff2')format("woff");}.ff3_c01169{font-family:ff3_c01169;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01169;src:url('chunks/assets/font_7d96f5d86584172eaa06a18a.woff2')format("woff");}.ff4_c01169{font-family:ff4_c01169;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1d_c01169{transform:matrix(0.103339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103339,0.000000,0.000000,0.250000,0,0);}
.m7c_c01169{transform:matrix(0.109606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109606,0.000000,0.000000,0.250000,0,0);}
.m86_c01169{transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);}
.mc_c01169{transform:matrix(0.133189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133189,0.000000,0.000000,0.250000,0,0);}
.m57_c01169{transform:matrix(0.169048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169048,0.000000,0.000000,0.250000,0,0);}
.m75_c01169{transform:matrix(0.175159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175159,0.000000,0.000000,0.250000,0,0);}
.m7f_c01169{transform:matrix(0.210870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210870,0.000000,0.000000,0.250000,0,0);}
.m83_c01169{transform:matrix(0.223394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223394,0.000000,0.000000,0.250000,0,0);}
.m20_c01169{transform:matrix(0.241013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241013,0.000000,0.000000,0.250000,0,0);}
.m5d_c01169{transform:matrix(0.247039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247039,0.000000,0.000000,0.250000,0,0);}
.m0_c01169{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01169{transform:matrix(0.250118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250118,0.000000,0.000000,0.250000,0,0);}
.m2f_c01169{transform:matrix(0.252120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252120,0.000000,0.000000,0.250000,0,0);}
.m87_c01169{transform:matrix(0.254915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254915,0.000000,0.000000,0.250000,0,0);}
.m61_c01169{transform:matrix(0.256632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256632,0.000000,0.000000,0.250000,0,0);}
.m53_c01169{transform:matrix(0.257367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257367,0.000000,0.000000,0.250000,0,0);}
.m4e_c01169{transform:matrix(0.257755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257755,0.000000,0.000000,0.250000,0,0);}
.m72_c01169{transform:matrix(0.258118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258118,0.000000,0.000000,0.250000,0,0);}
.m17_c01169{transform:matrix(0.259013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259013,0.000000,0.000000,0.250000,0,0);}
.m3_c01169{transform:matrix(0.261495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261495,0.000000,0.000000,0.250000,0,0);}
.m73_c01169{transform:matrix(0.262088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262088,0.000000,0.000000,0.250000,0,0);}
.m52_c01169{transform:matrix(0.262322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262322,0.000000,0.000000,0.250000,0,0);}
.m79_c01169{transform:matrix(0.262591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262591,0.000000,0.000000,0.250000,0,0);}
.m4f_c01169{transform:matrix(0.264107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264107,0.000000,0.000000,0.250000,0,0);}
.m31_c01169{transform:matrix(0.265396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265396,0.000000,0.000000,0.250000,0,0);}
.m69_c01169{transform:matrix(0.270269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270269,0.000000,0.000000,0.250000,0,0);}
.m68_c01169{transform:matrix(0.270914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270914,0.000000,0.000000,0.250000,0,0);}
.ma_c01169{transform:matrix(0.271003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271003,0.000000,0.000000,0.250000,0,0);}
.m7d_c01169{transform:matrix(0.271208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271208,0.000000,0.000000,0.250000,0,0);}
.m15_c01169{transform:matrix(0.272762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272762,0.000000,0.000000,0.250000,0,0);}
.m3f_c01169{transform:matrix(0.273387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273387,0.000000,0.000000,0.250000,0,0);}
.m13_c01169{transform:matrix(0.273540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273540,0.000000,0.000000,0.250000,0,0);}
.me_c01169{transform:matrix(0.275843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275843,0.000000,0.000000,0.250000,0,0);}
.m22_c01169{transform:matrix(0.276286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276286,0.000000,0.000000,0.250000,0,0);}
.m2c_c01169{transform:matrix(0.279601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279601,0.000000,0.000000,0.250000,0,0);}
.m8b_c01169{transform:matrix(0.280158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280158,0.000000,0.000000,0.250000,0,0);}
.m70_c01169{transform:matrix(0.282849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282849,0.000000,0.000000,0.250000,0,0);}
.m2a_c01169{transform:matrix(0.283024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283024,0.000000,0.000000,0.250000,0,0);}
.m32_c01169{transform:matrix(0.283286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283286,0.000000,0.000000,0.250000,0,0);}
.m33_c01169{transform:matrix(0.283782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283782,0.000000,0.000000,0.250000,0,0);}
.m16_c01169{transform:matrix(0.283990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283990,0.000000,0.000000,0.250000,0,0);}
.m3c_c01169{transform:matrix(0.284473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284473,0.000000,0.000000,0.250000,0,0);}
.m3a_c01169{transform:matrix(0.286044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286044,0.000000,0.000000,0.250000,0,0);}
.m29_c01169{transform:matrix(0.286429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286429,0.000000,0.000000,0.250000,0,0);}
.m4a_c01169{transform:matrix(0.286530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286530,0.000000,0.000000,0.250000,0,0);}
.m78_c01169{transform:matrix(0.286627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286627,0.000000,0.000000,0.250000,0,0);}
.m14_c01169{transform:matrix(0.287733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287733,0.000000,0.000000,0.250000,0,0);}
.m6a_c01169{transform:matrix(0.288138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288138,0.000000,0.000000,0.250000,0,0);}
.m21_c01169{transform:matrix(0.288286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288286,0.000000,0.000000,0.250000,0,0);}
.m7_c01169{transform:matrix(0.288675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288675,0.000000,0.000000,0.250000,0,0);}
.m35_c01169{transform:matrix(0.290482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290482,0.000000,0.000000,0.250000,0,0);}
.m1_c01169{transform:matrix(0.291694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291694,0.000000,0.000000,0.250000,0,0);}
.m62_c01169{transform:matrix(0.291897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291897,0.000000,0.000000,0.250000,0,0);}
.mf_c01169{transform:matrix(0.292290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292290,0.000000,0.000000,0.250000,0,0);}
.m2d_c01169{transform:matrix(0.292918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292918,0.000000,0.000000,0.250000,0,0);}
.m5c_c01169{transform:matrix(0.293401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293401,0.000000,0.000000,0.250000,0,0);}
.m77_c01169{transform:matrix(0.294954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294954,0.000000,0.000000,0.250000,0,0);}
.m6_c01169{transform:matrix(0.295035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295035,0.000000,0.000000,0.250000,0,0);}
.m40_c01169{transform:matrix(0.295448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295448,0.000000,0.000000,0.250000,0,0);}
.m5f_c01169{transform:matrix(0.295997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295997,0.000000,0.000000,0.250000,0,0);}
.m88_c01169{transform:matrix(0.296112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296112,0.000000,0.000000,0.250000,0,0);}
.m3e_c01169{transform:matrix(0.296282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296282,0.000000,0.000000,0.250000,0,0);}
.m6b_c01169{transform:matrix(0.296400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296400,0.000000,0.000000,0.250000,0,0);}
.m81_c01169{transform:matrix(0.297620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297620,0.000000,0.000000,0.250000,0,0);}
.m2e_c01169{transform:matrix(0.297888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297888,0.000000,0.000000,0.250000,0,0);}
.m12_c01169{transform:matrix(0.298663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298663,0.000000,0.000000,0.250000,0,0);}
.md_c01169{transform:matrix(0.298771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298771,0.000000,0.000000,0.250000,0,0);}
.m60_c01169{transform:matrix(0.299019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299019,0.000000,0.000000,0.250000,0,0);}
.m1f_c01169{transform:matrix(0.299083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299083,0.000000,0.000000,0.250000,0,0);}
.m38_c01169{transform:matrix(0.299868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299868,0.000000,0.000000,0.250000,0,0);}
.m30_c01169{transform:matrix(0.300076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300076,0.000000,0.000000,0.250000,0,0);}
.m4_c01169{transform:matrix(0.300138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300138,0.000000,0.000000,0.250000,0,0);}
.m8c_c01169{transform:matrix(0.300532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300532,0.000000,0.000000,0.250000,0,0);}
.m85_c01169{transform:matrix(0.300573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300573,0.000000,0.000000,0.250000,0,0);}
.m64_c01169{transform:matrix(0.304202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304202,0.000000,0.000000,0.250000,0,0);}
.m4c_c01169{transform:matrix(0.304308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304308,0.000000,0.000000,0.250000,0,0);}
.m84_c01169{transform:matrix(0.304603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304603,0.000000,0.000000,0.250000,0,0);}
.m65_c01169{transform:matrix(0.304915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304915,0.000000,0.000000,0.250000,0,0);}
.m37_c01169{transform:matrix(0.305646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305646,0.000000,0.000000,0.250000,0,0);}
.m66_c01169{transform:matrix(0.306785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306785,0.000000,0.000000,0.250000,0,0);}
.m23_c01169{transform:matrix(0.306845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306845,0.000000,0.000000,0.250000,0,0);}
.m63_c01169{transform:matrix(0.307134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307134,0.000000,0.000000,0.250000,0,0);}
.m50_c01169{transform:matrix(0.307156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307156,0.000000,0.000000,0.250000,0,0);}
.m51_c01169{transform:matrix(0.308237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308237,0.000000,0.000000,0.250000,0,0);}
.mb_c01169{transform:matrix(0.308703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308703,0.000000,0.000000,0.250000,0,0);}
.m28_c01169{transform:matrix(0.308909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308909,0.000000,0.000000,0.250000,0,0);}
.m56_c01169{transform:matrix(0.308932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308932,0.000000,0.000000,0.250000,0,0);}
.m6e_c01169{transform:matrix(0.309147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309147,0.000000,0.000000,0.250000,0,0);}
.m42_c01169{transform:matrix(0.309273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309273,0.000000,0.000000,0.250000,0,0);}
.m34_c01169{transform:matrix(0.309448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309448,0.000000,0.000000,0.250000,0,0);}
.m45_c01169{transform:matrix(0.309561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309561,0.000000,0.000000,0.250000,0,0);}
.m11_c01169{transform:matrix(0.309702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309702,0.000000,0.000000,0.250000,0,0);}
.m5_c01169{transform:matrix(0.309930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309930,0.000000,0.000000,0.250000,0,0);}
.m55_c01169{transform:matrix(0.311716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311716,0.000000,0.000000,0.250000,0,0);}
.m5b_c01169{transform:matrix(0.312003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312003,0.000000,0.000000,0.250000,0,0);}
.m59_c01169{transform:matrix(0.312979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312979,0.000000,0.000000,0.250000,0,0);}
.m24_c01169{transform:matrix(0.313401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313401,0.000000,0.000000,0.250000,0,0);}
.m46_c01169{transform:matrix(0.313782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313782,0.000000,0.000000,0.250000,0,0);}
.m1c_c01169{transform:matrix(0.315545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315545,0.000000,0.000000,0.250000,0,0);}
.m49_c01169{transform:matrix(0.316026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316026,0.000000,0.000000,0.250000,0,0);}
.m1b_c01169{transform:matrix(0.316450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316450,0.000000,0.000000,0.250000,0,0);}
.m27_c01169{transform:matrix(0.316512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316512,0.000000,0.000000,0.250000,0,0);}
.m76_c01169{transform:matrix(0.316687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316687,0.000000,0.000000,0.250000,0,0);}
.m39_c01169{transform:matrix(0.318677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318677,0.000000,0.000000,0.250000,0,0);}
.m36_c01169{transform:matrix(0.319640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319640,0.000000,0.000000,0.250000,0,0);}
.m7b_c01169{transform:matrix(0.320192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320192,0.000000,0.000000,0.250000,0,0);}
.m9_c01169{transform:matrix(0.321057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321057,0.000000,0.000000,0.250000,0,0);}
.m5a_c01169{transform:matrix(0.322479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322479,0.000000,0.000000,0.250000,0,0);}
.m2_c01169{transform:matrix(0.322616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322616,0.000000,0.000000,0.250000,0,0);}
.m1e_c01169{transform:matrix(0.322922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322922,0.000000,0.000000,0.250000,0,0);}
.m47_c01169{transform:matrix(0.323048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323048,0.000000,0.000000,0.250000,0,0);}
.m41_c01169{transform:matrix(0.323136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323136,0.000000,0.000000,0.250000,0,0);}
.m74_c01169{transform:matrix(0.323220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323220,0.000000,0.000000,0.250000,0,0);}
.m8a_c01169{transform:matrix(0.323288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323288,0.000000,0.000000,0.250000,0,0);}
.m44_c01169{transform:matrix(0.328069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328069,0.000000,0.000000,0.250000,0,0);}
.m4b_c01169{transform:matrix(0.328868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328868,0.000000,0.000000,0.250000,0,0);}
.m26_c01169{transform:matrix(0.329956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329956,0.000000,0.000000,0.250000,0,0);}
.m3b_c01169{transform:matrix(0.330062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330062,0.000000,0.000000,0.250000,0,0);}
.m3d_c01169{transform:matrix(0.330328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330328,0.000000,0.000000,0.250000,0,0);}
.m6f_c01169{transform:matrix(0.331238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331238,0.000000,0.000000,0.250000,0,0);}
.m67_c01169{transform:matrix(0.331335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331335,0.000000,0.000000,0.250000,0,0);}
.m4d_c01169{transform:matrix(0.331818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331818,0.000000,0.000000,0.250000,0,0);}
.m19_c01169{transform:matrix(0.333722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333722,0.000000,0.000000,0.250000,0,0);}
.m48_c01169{transform:matrix(0.335504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335504,0.000000,0.000000,0.250000,0,0);}
.m18_c01169{transform:matrix(0.336440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336440,0.000000,0.000000,0.250000,0,0);}
.m89_c01169{transform:matrix(0.338438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338438,0.000000,0.000000,0.250000,0,0);}
.m10_c01169{transform:matrix(0.344774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344774,0.000000,0.000000,0.250000,0,0);}
.m80_c01169{transform:matrix(0.349621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349621,0.000000,0.000000,0.250000,0,0);}
.m7e_c01169{transform:matrix(0.353101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353101,0.000000,0.000000,0.250000,0,0);}
.m43_c01169{transform:matrix(0.355438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355438,0.000000,0.000000,0.250000,0,0);}
.m25_c01169{transform:matrix(0.363001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363001,0.000000,0.000000,0.250000,0,0);}
.m82_c01169{transform:matrix(0.369931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369931,0.000000,0.000000,0.250000,0,0);}
.m58_c01169{transform:matrix(0.375843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375843,0.000000,0.000000,0.250000,0,0);}
.m54_c01169{transform:matrix(0.384864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384864,0.000000,0.000000,0.250000,0,0);}
.m8_c01169{transform:matrix(0.403791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403791,0.000000,0.000000,0.250000,0,0);}
.m5e_c01169{transform:matrix(0.408907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408907,0.000000,0.000000,0.250000,0,0);}
.m1a_c01169{transform:matrix(0.410101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410101,0.000000,0.000000,0.250000,0,0);}
.m7a_c01169{transform:matrix(0.414136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414136,0.000000,0.000000,0.250000,0,0);}
.m6d_c01169{transform:matrix(0.547888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547888,0.000000,0.000000,0.250000,0,0);}
.m6c_c01169{transform:matrix(0.617806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617806,0.000000,0.000000,0.250000,0,0);}
.m71_c01169{transform:matrix(0.945899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.945899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.945899,0.000000,0.000000,0.250000,0,0);}
.v0_c01169{vertical-align:0.000000px;}
.v1_c01169{vertical-align:31.363200px;}
.ls1e_c01169{letter-spacing:-3.367980px;}
.ls11_c01169{letter-spacing:-2.993767px;}
.ls9_c01169{letter-spacing:-2.744280px;}
.ls8_c01169{letter-spacing:-2.619540px;}
.ls3_c01169{letter-spacing:-2.571030px;}
.ls6_c01169{letter-spacing:-1.960913px;}
.ls1a_c01169{letter-spacing:-1.434517px;}
.ls1c_c01169{letter-spacing:-1.375546px;}
.ls4_c01169{letter-spacing:-1.137629px;}
.ls1_c01169{letter-spacing:0.000000px;}
.lse_c01169{letter-spacing:0.374220px;}
.ls19_c01169{letter-spacing:0.389150px;}
.ls13_c01169{letter-spacing:0.591268px;}
.ls1b_c01169{letter-spacing:0.800831px;}
.ls17_c01169{letter-spacing:1.029600px;}
.ls10_c01169{letter-spacing:1.087020px;}
.ls16_c01169{letter-spacing:1.148400px;}
.lsa_c01169{letter-spacing:1.190020px;}
.ls15_c01169{letter-spacing:1.818947px;}
.ls1d_c01169{letter-spacing:1.953428px;}
.ls0_c01169{letter-spacing:2.260289px;}
.ls18_c01169{letter-spacing:2.910600px;}
.lsc_c01169{letter-spacing:3.008729px;}
.ls5_c01169{letter-spacing:3.173386px;}
.ls14_c01169{letter-spacing:3.405610px;}
.lsd_c01169{letter-spacing:3.425400px;}
.ls21_c01169{letter-spacing:3.525152px;}
.lsb_c01169{letter-spacing:3.653110px;}
.ls12_c01169{letter-spacing:3.682810px;}
.ls7_c01169{letter-spacing:3.719747px;}
.ls2_c01169{letter-spacing:3.742200px;}
.ls20_c01169{letter-spacing:4.950000px;}
.ls1f_c01169{letter-spacing:29.937798px;}
.lsf_c01169{letter-spacing:59.875398px;}
.sc__c01169{text-shadow:none;}
.sc0_c01169{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01169{-webkit-text-stroke:0px transparent;}
.sc0_c01169{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01169{word-spacing:0.000000px;}
.ws0_c01169{word-spacing:3.953664px;}
._b_c01169{margin-left:-11.600820px;}
._5_c01169{margin-left:-6.627060px;}
._d_c01169{margin-left:-4.490640px;}
._3_c01169{width:3.230568px;}
._4_c01169{width:7.240860px;}
._0_c01169{width:11.028600px;}
._6_c01169{width:15.343020px;}
._c_c01169{width:22.727276px;}
._7_c01169{width:24.908400px;}
._2_c01169{width:28.505664px;}
._a_c01169{width:31.764744px;}
._1_c01169{width:36.560146px;}
._8_c01169{width:65.366849px;}
._9_c01169{width:81.576792px;}
._e_c01169{width:2386.446638px;}
.fc0_c01169{color:transparent;}
.fs14_c01169{font-size:20.592000px;}
.fs1_c01169{font-size:22.176000px;}
.fs1e_c01169{font-size:22.572000px;}
.fs13_c01169{font-size:22.968000px;}
.fs9_c01169{font-size:26.928000px;}
.fs0_c01169{font-size:27.720000px;}
.fs1c_c01169{font-size:29.937798px;}
.fs6_c01169{font-size:33.264000px;}
.fse_c01169{font-size:34.056198px;}
.fs17_c01169{font-size:40.986198px;}
.fs15_c01169{font-size:58.212000px;}
.fsd_c01169{font-size:59.875398px;}
.fs16_c01169{font-size:62.766198px;}
.fs18_c01169{font-size:65.538000px;}
.fsb_c01169{font-size:66.330000px;}
.fsa_c01169{font-size:67.122198px;}
.fs1a_c01169{font-size:67.320000px;}
.fs12_c01169{font-size:68.112198px;}
.fs5_c01169{font-size:68.310000px;}
.fsc_c01169{font-size:68.508000px;}
.fsf_c01169{font-size:72.468000px;}
.fs7_c01169{font-size:73.062198px;}
.fs3_c01169{font-size:73.458000px;}
.fs11_c01169{font-size:73.656198px;}
.fs2_c01169{font-size:74.844000px;}
.fs4_c01169{font-size:78.408000px;}
.fs19_c01169{font-size:82.368000px;}
.fs10_c01169{font-size:85.536198px;}
.fs8_c01169{font-size:91.872198px;}
.fs1b_c01169{font-size:96.228000px;}
.fs1d_c01169{font-size:99.000000px;}
.y0_c01169{bottom:0.000000px;}
.y28_c01169{bottom:37.328985px;}
.y1_c01169{bottom:76.500000px;}
.y27_c01169{bottom:122.157135px;}
.y26_c01169{bottom:139.977135px;}
.y24_c01169{bottom:153.520335px;}
.y25_c01169{bottom:154.584585px;}
.y23_c01169{bottom:155.297385px;}
.y22_c01169{bottom:221.592735px;}
.y21_c01169{bottom:252.243135px;}
.y20_c01169{bottom:252.955935px;}
.y1e_c01169{bottom:282.180735px;}
.y1f_c01169{bottom:284.670585px;}
.y1d_c01169{bottom:285.383385px;}
.y1c_c01169{bottom:317.464335px;}
.y1b_c01169{bottom:382.329135px;}
.y1a_c01169{bottom:401.213385px;}
.y11_c01169{bottom:435.427785px;}
.y19_c01169{bottom:446.124735px;}
.y18_c01169{bottom:476.057385px;}
.y10_c01169{bottom:478.200735px;}
.y3_c01169{bottom:546.629535px;}
.y2_c01169{bottom:558.029385px;}
.y17_c01169{bottom:574.423785px;}
.y16_c01169{bottom:606.856185px;}
.y15_c01169{bottom:639.288585px;}
.y14_c01169{bottom:670.651785px;}
.y13_c01169{bottom:703.089135px;}
.y12_c01169{bottom:722.334735px;}
.yf_c01169{bottom:734.803785px;}
.ye_c01169{bottom:783.279135px;}
.yd_c01169{bottom:797.535135px;}
.yc_c01169{bottom:831.031785px;}
.yb_c01169{bottom:863.469135px;}
.ya_c01169{bottom:883.783935px;}
.y9_c01169{bottom:895.183785px;}
.y8_c01169{bottom:921.557385px;}
.y6_c01169{bottom:927.972585px;}
.y7_c01169{bottom:928.333935px;}
.y5_c01169{bottom:983.575935px;}
.y4_c01169{bottom:1066.612185px;}
.h1b_c01169{height:19.938573px;}
.h15_c01169{height:20.209922px;}
.h3_c01169{height:23.128875px;}
.h1d_c01169{height:23.541891px;}
.h14_c01169{height:23.954906px;}
.ha_c01169{height:28.085063px;}
.h2_c01169{height:28.911094px;}
.h7_c01169{height:34.693313px;}
.hf_c01169{height:35.519550px;}
.he_c01169{height:39.877015px;}
.h18_c01169{height:40.225712px;}
.h16_c01169{height:60.713297px;}
.h17_c01169{height:65.463183px;}
.hc_c01169{height:69.180117px;}
.hb_c01169{height:70.006355px;}
.h13_c01169{height:71.038894px;}
.h10_c01169{height:71.123379px;}
.hd_c01169{height:71.451703px;}
.h8_c01169{height:71.706552px;}
.h5_c01169{height:72.095010px;}
.h12_c01169{height:72.289530px;}
.h4_c01169{height:73.455293px;}
.h6_c01169{height:76.953164px;}
.h11_c01169{height:83.907335px;}
.h9_c01169{height:90.167538px;}
.h1a_c01169{height:94.442520px;}
.h1c_c01169{height:97.163086px;}
.h19_c01169{height:97.434098px;}
.h1_c01169{height:1110.000000px;}
.h0_c01169{height:1263.000000px;}
.w1_c01169{width:775.500000px;}
.w0_c01169{width:892.500000px;}
.x0_c01169{left:0.000000px;}
.x2_c01169{left:1.303485px;}
.x3_c01169{left:10.594635px;}
.x1_c01169{left:58.500000px;}
.x2f_c01169{left:78.741285px;}
.x27_c01169{left:79.810485px;}
.x30_c01169{left:114.826785px;}
.x5e_c01169{left:133.587285px;}
.x4d_c01169{left:134.592135px;}
.x1a_c01169{left:135.730635px;}
.x6_c01169{left:137.081985px;}
.x31_c01169{left:138.265035px;}
.x6b_c01169{left:145.284135px;}
.x3e_c01169{left:159.069885px;}
.x76_c01169{left:168.103635px;}
.x37_c01169{left:169.301535px;}
.x56_c01169{left:179.656935px;}
.x45_c01169{left:180.745935px;}
.x19_c01169{left:182.735835px;}
.x59_c01169{left:188.408535px;}
.x53_c01169{left:190.685535px;}
.x46_c01169{left:193.507035px;}
.x55_c01169{left:200.199435px;}
.x4e_c01169{left:201.902235px;}
.x11_c01169{left:202.931835px;}
.x5f_c01169{left:204.421785px;}
.x4f_c01169{left:212.361585px;}
.x7_c01169{left:213.707985px;}
.x12_c01169{left:222.697185px;}
.x38_c01169{left:223.771335px;}
.x21_c01169{left:225.028635px;}
.x32_c01169{left:235.715685px;}
.x60_c01169{left:242.502135px;}
.x57_c01169{left:245.927535px;}
.x54_c01169{left:247.570935px;}
.x1b_c01169{left:249.560835px;}
.x22_c01169{left:257.411535px;}
.x47_c01169{left:260.500335px;}
.x28_c01169{left:269.360835px;}
.x61_c01169{left:270.603285px;}
.x33_c01169{left:280.433985px;}
.x3f_c01169{left:281.894235px;}
.x62_c01169{left:290.259735px;}
.x63_c01169{left:299.352885px;}
.x58_c01169{left:301.011135px;}
.x8_c01169{left:304.382085px;}
.x64_c01169{left:310.302285px;}
.x6c_c01169{left:313.064385px;}
.x39_c01169{left:314.093985px;}
.x65_c01169{left:317.063985px;}
.x48_c01169{left:323.840535px;}
.x40_c01169{left:324.964185px;}
.x66_c01169{left:326.498685px;}
.x9_c01169{left:336.453135px;}
.x23_c01169{left:345.571035px;}
.x1c_c01169{left:347.654985px;}
.x24_c01169{left:357.198585px;}
.x49_c01169{left:368.118285px;}
.x72_c01169{left:369.870585px;}
.x6d_c01169{left:379.280535px;}
.x13_c01169{left:380.775435px;}
.x5a_c01169{left:388.705335px;}
.x29_c01169{left:391.071435px;}
.x41_c01169{left:392.541585px;}
.x1d_c01169{left:402.446535px;}
.x73_c01169{left:411.717885px;}
.x14_c01169{left:412.999935px;}
.x42_c01169{left:414.831435px;}
.x3a_c01169{left:423.385035px;}
.xa_c01169{left:424.840335px;}
.x4a_c01169{left:435.111585px;}
.x2a_c01169{left:436.250085px;}
.x74_c01169{left:445.862985px;}
.x34_c01169{left:448.927035px;}
.x5b_c01169{left:455.069985px;}
.x43_c01169{left:458.099385px;}
.x35_c01169{left:459.544785px;}
.x50_c01169{left:469.078485px;}
.x3b_c01169{left:470.212035px;}
.x2b_c01169{left:480.433785px;}
.x15_c01169{left:490.551585px;}
.x52_c01169{left:493.749285px;}
.x25_c01169{left:501.664335px;}
.x1e_c01169{left:503.812635px;}
.x5_c01169{left:506.678685px;}
.x67_c01169{left:511.014885px;}
.xb_c01169{left:514.034385px;}
.x3c_c01169{left:524.765985px;}
.x6e_c01169{left:533.765085px;}
.x2c_c01169{left:535.814385px;}
.xc_c01169{left:546.437085px;}
.x6f_c01169{left:552.238485px;}
.x51_c01169{left:556.431135px;}
.x3d_c01169{left:557.846835px;}
.x2d_c01169{left:567.840885px;}
.x77_c01169{left:577.245885px;}
.xd_c01169{left:578.305185px;}
.x75_c01169{left:588.818985px;}
.x44_c01169{left:601.743435px;}
.x68_c01169{left:609.846585px;}
.x5c_c01169{left:611.727585px;}
.x16_c01169{left:613.816485px;}
.x10_c01169{left:616.093485px;}
.x36_c01169{left:621.860235px;}
.x1f_c01169{left:623.647185px;}
.x4b_c01169{left:625.820235px;}
.x69_c01169{left:634.527285px;}
.x2e_c01169{left:644.843085px;}
.x78_c01169{left:645.867735px;}
.x70_c01169{left:646.912185px;}
.x26_c01169{left:655.317285px;}
.xe_c01169{left:668.751585px;}
.x6a_c01169{left:678.314985px;}
.x4c_c01169{left:690.194985px;}
.x4_c01169{left:697.199235px;}
.xf_c01169{left:701.599785px;}
.x71_c01169{left:710.123685px;}
.x20_c01169{left:712.158135px;}
.x17_c01169{left:713.608485px;}
.x5d_c01169{left:721.904685px;}
.x79_c01169{left:729.854385px;}
.x18_c01169{left:744.110385px;}
@media print{
.v0_c01169{vertical-align:0.000000pt;}
.v1_c01169{vertical-align:27.878400pt;}
.ls1e_c01169{letter-spacing:-2.993760pt;}
.ls11_c01169{letter-spacing:-2.661126pt;}
.ls9_c01169{letter-spacing:-2.439360pt;}
.ls8_c01169{letter-spacing:-2.328480pt;}
.ls3_c01169{letter-spacing:-2.285360pt;}
.ls6_c01169{letter-spacing:-1.743034pt;}
.ls1a_c01169{letter-spacing:-1.275126pt;}
.ls1c_c01169{letter-spacing:-1.222707pt;}
.ls4_c01169{letter-spacing:-1.011226pt;}
.ls1_c01169{letter-spacing:0.000000pt;}
.lse_c01169{letter-spacing:0.332640pt;}
.ls19_c01169{letter-spacing:0.345911pt;}
.ls13_c01169{letter-spacing:0.525571pt;}
.ls1b_c01169{letter-spacing:0.711850pt;}
.ls17_c01169{letter-spacing:0.915200pt;}
.ls10_c01169{letter-spacing:0.966240pt;}
.ls16_c01169{letter-spacing:1.020800pt;}
.lsa_c01169{letter-spacing:1.057795pt;}
.ls15_c01169{letter-spacing:1.616842pt;}
.ls1d_c01169{letter-spacing:1.736381pt;}
.ls0_c01169{letter-spacing:2.009146pt;}
.ls18_c01169{letter-spacing:2.587200pt;}
.lsc_c01169{letter-spacing:2.674426pt;}
.ls5_c01169{letter-spacing:2.820787pt;}
.ls14_c01169{letter-spacing:3.027209pt;}
.lsd_c01169{letter-spacing:3.044800pt;}
.ls21_c01169{letter-spacing:3.133469pt;}
.lsb_c01169{letter-spacing:3.247209pt;}
.ls12_c01169{letter-spacing:3.273609pt;}
.ls7_c01169{letter-spacing:3.306442pt;}
.ls2_c01169{letter-spacing:3.326400pt;}
.ls20_c01169{letter-spacing:4.400000pt;}
.ls1f_c01169{letter-spacing:26.611376pt;}
.lsf_c01169{letter-spacing:53.222576pt;}
.ws1_c01169{word-spacing:0.000000pt;}
.ws0_c01169{word-spacing:3.514368pt;}
._b_c01169{margin-left:-10.311840pt;}
._5_c01169{margin-left:-5.890720pt;}
._d_c01169{margin-left:-3.991680pt;}
._3_c01169{width:2.871616pt;}
._4_c01169{width:6.436320pt;}
._0_c01169{width:9.803200pt;}
._6_c01169{width:13.638240pt;}
._c_c01169{width:20.202023pt;}
._7_c01169{width:22.140800pt;}
._2_c01169{width:25.338368pt;}
._a_c01169{width:28.235328pt;}
._1_c01169{width:32.497907pt;}
._8_c01169{width:58.103866pt;}
._9_c01169{width:72.512704pt;}
._e_c01169{width:2121.285901pt;}
.fs14_c01169{font-size:18.304000pt;}
.fs1_c01169{font-size:19.712000pt;}
.fs1e_c01169{font-size:20.064000pt;}
.fs13_c01169{font-size:20.416000pt;}
.fs9_c01169{font-size:23.936000pt;}
.fs0_c01169{font-size:24.640000pt;}
.fs1c_c01169{font-size:26.611376pt;}
.fs6_c01169{font-size:29.568000pt;}
.fse_c01169{font-size:30.272176pt;}
.fs17_c01169{font-size:36.432176pt;}
.fs15_c01169{font-size:51.744000pt;}
.fsd_c01169{font-size:53.222576pt;}
.fs16_c01169{font-size:55.792176pt;}
.fs18_c01169{font-size:58.256000pt;}
.fsb_c01169{font-size:58.960000pt;}
.fsa_c01169{font-size:59.664176pt;}
.fs1a_c01169{font-size:59.840000pt;}
.fs12_c01169{font-size:60.544176pt;}
.fs5_c01169{font-size:60.720000pt;}
.fsc_c01169{font-size:60.896000pt;}
.fsf_c01169{font-size:64.416000pt;}
.fs7_c01169{font-size:64.944176pt;}
.fs3_c01169{font-size:65.296000pt;}
.fs11_c01169{font-size:65.472176pt;}
.fs2_c01169{font-size:66.528000pt;}
.fs4_c01169{font-size:69.696000pt;}
.fs19_c01169{font-size:73.216000pt;}
.fs10_c01169{font-size:76.032176pt;}
.fs8_c01169{font-size:81.664176pt;}
.fs1b_c01169{font-size:85.536000pt;}
.fs1d_c01169{font-size:88.000000pt;}
.y0_c01169{bottom:0.000000pt;}
.y28_c01169{bottom:33.181320pt;}
.y1_c01169{bottom:68.000000pt;}
.y27_c01169{bottom:108.584120pt;}
.y26_c01169{bottom:124.424120pt;}
.y24_c01169{bottom:136.462520pt;}
.y25_c01169{bottom:137.408520pt;}
.y23_c01169{bottom:138.042120pt;}
.y22_c01169{bottom:196.971320pt;}
.y21_c01169{bottom:224.216120pt;}
.y20_c01169{bottom:224.849720pt;}
.y1e_c01169{bottom:250.827320pt;}
.y1f_c01169{bottom:253.040520pt;}
.y1d_c01169{bottom:253.674120pt;}
.y1c_c01169{bottom:282.190520pt;}
.y1b_c01169{bottom:339.848120pt;}
.y1a_c01169{bottom:356.634120pt;}
.y11_c01169{bottom:387.046920pt;}
.y19_c01169{bottom:396.555320pt;}
.y18_c01169{bottom:423.162120pt;}
.y10_c01169{bottom:425.067320pt;}
.y3_c01169{bottom:485.892920pt;}
.y2_c01169{bottom:496.026120pt;}
.y17_c01169{bottom:510.598920pt;}
.y16_c01169{bottom:539.427720pt;}
.y15_c01169{bottom:568.256520pt;}
.y14_c01169{bottom:596.134920pt;}
.y13_c01169{bottom:624.968120pt;}
.y12_c01169{bottom:642.075320pt;}
.yf_c01169{bottom:653.158920pt;}
.ye_c01169{bottom:696.248120pt;}
.yd_c01169{bottom:708.920120pt;}
.yc_c01169{bottom:738.694920pt;}
.yb_c01169{bottom:767.528120pt;}
.ya_c01169{bottom:785.585720pt;}
.y9_c01169{bottom:795.718920pt;}
.y8_c01169{bottom:819.162120pt;}
.y6_c01169{bottom:824.864520pt;}
.y7_c01169{bottom:825.185720pt;}
.y5_c01169{bottom:874.289720pt;}
.y4_c01169{bottom:948.099720pt;}
.h1b_c01169{height:17.723176pt;}
.h15_c01169{height:17.964375pt;}
.h3_c01169{height:20.559000pt;}
.h1d_c01169{height:20.926125pt;}
.h14_c01169{height:21.293250pt;}
.ha_c01169{height:24.964500pt;}
.h2_c01169{height:25.698750pt;}
.h7_c01169{height:30.838500pt;}
.hf_c01169{height:31.572934pt;}
.he_c01169{height:35.446236pt;}
.h18_c01169{height:35.756188pt;}
.h16_c01169{height:53.967375pt;}
.h17_c01169{height:58.189496pt;}
.hc_c01169{height:61.493438pt;}
.hb_c01169{height:62.227871pt;}
.h13_c01169{height:63.145684pt;}
.h10_c01169{height:63.220781pt;}
.hd_c01169{height:63.512625pt;}
.h8_c01169{height:63.739157pt;}
.h5_c01169{height:64.084453pt;}
.h12_c01169{height:64.257360pt;}
.h4_c01169{height:65.293594pt;}
.h6_c01169{height:68.402813pt;}
.h11_c01169{height:74.584298pt;}
.h9_c01169{height:80.148923pt;}
.h1a_c01169{height:83.948906pt;}
.h1c_c01169{height:86.367188pt;}
.h19_c01169{height:86.608087pt;}
.h1_c01169{height:986.666667pt;}
.h0_c01169{height:1122.666667pt;}
.w1_c01169{width:689.333333pt;}
.w0_c01169{width:793.333333pt;}
.x0_c01169{left:0.000000pt;}
.x2_c01169{left:1.158653pt;}
.x3_c01169{left:9.417453pt;}
.x1_c01169{left:52.000000pt;}
.x2f_c01169{left:69.992253pt;}
.x27_c01169{left:70.942653pt;}
.x30_c01169{left:102.068253pt;}
.x5e_c01169{left:118.744253pt;}
.x4d_c01169{left:119.637453pt;}
.x1a_c01169{left:120.649453pt;}
.x6_c01169{left:121.850653pt;}
.x31_c01169{left:122.902253pt;}
.x6b_c01169{left:129.141453pt;}
.x3e_c01169{left:141.395453pt;}
.x76_c01169{left:149.425453pt;}
.x37_c01169{left:150.490253pt;}
.x56_c01169{left:159.695053pt;}
.x45_c01169{left:160.663053pt;}
.x19_c01169{left:162.431853pt;}
.x59_c01169{left:167.474253pt;}
.x53_c01169{left:169.498253pt;}
.x46_c01169{left:172.006253pt;}
.x55_c01169{left:177.955053pt;}
.x4e_c01169{left:179.468653pt;}
.x11_c01169{left:180.383853pt;}
.x5f_c01169{left:181.708253pt;}
.x4f_c01169{left:188.765853pt;}
.x7_c01169{left:189.962653pt;}
.x12_c01169{left:197.953053pt;}
.x38_c01169{left:198.907853pt;}
.x21_c01169{left:200.025453pt;}
.x32_c01169{left:209.525053pt;}
.x60_c01169{left:215.557453pt;}
.x57_c01169{left:218.602253pt;}
.x54_c01169{left:220.063053pt;}
.x1b_c01169{left:221.831853pt;}
.x22_c01169{left:228.810253pt;}
.x47_c01169{left:231.555853pt;}
.x28_c01169{left:239.431853pt;}
.x61_c01169{left:240.536253pt;}
.x33_c01169{left:249.274653pt;}
.x3f_c01169{left:250.572653pt;}
.x62_c01169{left:258.008653pt;}
.x63_c01169{left:266.091453pt;}
.x58_c01169{left:267.565453pt;}
.x8_c01169{left:270.561853pt;}
.x64_c01169{left:275.824253pt;}
.x6c_c01169{left:278.279453pt;}
.x39_c01169{left:279.194653pt;}
.x65_c01169{left:281.834653pt;}
.x48_c01169{left:287.858253pt;}
.x40_c01169{left:288.857053pt;}
.x66_c01169{left:290.221053pt;}
.x9_c01169{left:299.069453pt;}
.x23_c01169{left:307.174253pt;}
.x1c_c01169{left:309.026653pt;}
.x24_c01169{left:317.509853pt;}
.x49_c01169{left:327.216253pt;}
.x72_c01169{left:328.773853pt;}
.x6d_c01169{left:337.138253pt;}
.x13_c01169{left:338.467053pt;}
.x5a_c01169{left:345.515853pt;}
.x29_c01169{left:347.619053pt;}
.x41_c01169{left:348.925853pt;}
.x1d_c01169{left:357.730253pt;}
.x73_c01169{left:365.971453pt;}
.x14_c01169{left:367.111053pt;}
.x42_c01169{left:368.739053pt;}
.x3a_c01169{left:376.342253pt;}
.xa_c01169{left:377.635853pt;}
.x4a_c01169{left:386.765853pt;}
.x2a_c01169{left:387.777853pt;}
.x74_c01169{left:396.322653pt;}
.x34_c01169{left:399.046253pt;}
.x5b_c01169{left:404.506653pt;}
.x43_c01169{left:407.199453pt;}
.x35_c01169{left:408.484253pt;}
.x50_c01169{left:416.958653pt;}
.x3b_c01169{left:417.966253pt;}
.x2b_c01169{left:427.052253pt;}
.x15_c01169{left:436.045853pt;}
.x52_c01169{left:438.888253pt;}
.x25_c01169{left:445.923853pt;}
.x1e_c01169{left:447.833453pt;}
.x5_c01169{left:450.381053pt;}
.x67_c01169{left:454.235453pt;}
.xb_c01169{left:456.919453pt;}
.x3c_c01169{left:466.458653pt;}
.x6e_c01169{left:474.457853pt;}
.x2c_c01169{left:476.279453pt;}
.xc_c01169{left:485.721853pt;}
.x6f_c01169{left:490.878653pt;}
.x51_c01169{left:494.605453pt;}
.x3d_c01169{left:495.863853pt;}
.x2d_c01169{left:504.747453pt;}
.x77_c01169{left:513.107453pt;}
.xd_c01169{left:514.049053pt;}
.x75_c01169{left:523.394653pt;}
.x44_c01169{left:534.883053pt;}
.x68_c01169{left:542.085853pt;}
.x5c_c01169{left:543.757853pt;}
.x16_c01169{left:545.614653pt;}
.x10_c01169{left:547.638653pt;}
.x36_c01169{left:552.764653pt;}
.x1f_c01169{left:554.353053pt;}
.x4b_c01169{left:556.284653pt;}
.x69_c01169{left:564.024253pt;}
.x2e_c01169{left:573.193853pt;}
.x78_c01169{left:574.104653pt;}
.x70_c01169{left:575.033053pt;}
.x26_c01169{left:582.504253pt;}
.xe_c01169{left:594.445853pt;}
.x6a_c01169{left:602.946653pt;}
.x4c_c01169{left:613.506653pt;}
.x4_c01169{left:619.732653pt;}
.xf_c01169{left:623.644253pt;}
.x71_c01169{left:631.221053pt;}
.x20_c01169{left:633.029453pt;}
.x17_c01169{left:634.318653pt;}
.x5d_c01169{left:641.693053pt;}
.x79_c01169{left:648.759453pt;}
.x18_c01169{left:661.431453pt;}
}





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

.ir_c01170:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01170{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01170;src:url('chunks/assets/font_dbcaa79b6bbc2de806210b3f.woff2')format("woff");}.ff1_c01170{font-family:ff1_c01170;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01170;src:url('chunks/assets/font_77df98cea21a9191c5f7d95f.woff2')format("woff");}.ff2_c01170{font-family:ff2_c01170;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01170;src:url('chunks/assets/font_8f257a6dd61587d96f041dd3.woff2')format("woff");}.ff3_c01170{font-family:ff3_c01170;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01170;src:url('chunks/assets/font_aaa5cbaebaf4312992973df8.woff2')format("woff");}.ff4_c01170{font-family:ff4_c01170;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01170;src:url('chunks/assets/font_19bf5c32dc31a1473dfdd645.woff2')format("woff");}.ff5_c01170{font-family:ff5_c01170;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c01170{transform:matrix(0.137557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137557,0.000000,0.000000,0.250000,0,0);}
.m5e_c01170{transform:matrix(0.155364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155364,0.000000,0.000000,0.250000,0,0);}
.m26_c01170{transform:matrix(0.163871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163871,0.000000,0.000000,0.250000,0,0);}
.m3e_c01170{transform:matrix(0.166159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166159,0.000000,0.000000,0.250000,0,0);}
.m61_c01170{transform:matrix(0.167442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167442,0.000000,0.000000,0.250000,0,0);}
.m3f_c01170{transform:matrix(0.173781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173781,0.000000,0.000000,0.250000,0,0);}
.m7a_c01170{transform:matrix(0.174209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174209,0.000000,0.000000,0.250000,0,0);}
.m83_c01170{transform:matrix(0.175159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175159,0.000000,0.000000,0.250000,0,0);}
.m52_c01170{transform:matrix(0.181548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181548,0.000000,0.000000,0.250000,0,0);}
.m3c_c01170{transform:matrix(0.184146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184146,0.000000,0.000000,0.250000,0,0);}
.m8d_c01170{transform:matrix(0.214494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214494,0.000000,0.000000,0.250000,0,0);}
.m3d_c01170{transform:matrix(0.215447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215447,0.000000,0.000000,0.250000,0,0);}
.m79_c01170{transform:matrix(0.219494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219494,0.000000,0.000000,0.250000,0,0);}
.m60_c01170{transform:matrix(0.228376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228376,0.000000,0.000000,0.250000,0,0);}
.m28_c01170{transform:matrix(0.240723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240723,0.000000,0.000000,0.250000,0,0);}
.m25_c01170{transform:matrix(0.241118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241118,0.000000,0.000000,0.250000,0,0);}
.m17_c01170{transform:matrix(0.243265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243265,0.000000,0.000000,0.250000,0,0);}
.m2b_c01170{transform:matrix(0.248021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248021,0.000000,0.000000,0.250000,0,0);}
.m5a_c01170{transform:matrix(0.248820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248820,0.000000,0.000000,0.250000,0,0);}
.m0_c01170{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m45_c01170{transform:matrix(0.250035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250035,0.000000,0.000000,0.250000,0,0);}
.m71_c01170{transform:matrix(0.250959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250959,0.000000,0.000000,0.250000,0,0);}
.m41_c01170{transform:matrix(0.251881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251881,0.000000,0.000000,0.250000,0,0);}
.m5f_c01170{transform:matrix(0.253345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253345,0.000000,0.000000,0.250000,0,0);}
.m58_c01170{transform:matrix(0.253619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253619,0.000000,0.000000,0.250000,0,0);}
.m27_c01170{transform:matrix(0.254168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254168,0.000000,0.000000,0.250000,0,0);}
.m63_c01170{transform:matrix(0.254829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254829,0.000000,0.000000,0.250000,0,0);}
.m2f_c01170{transform:matrix(0.260119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260119,0.000000,0.000000,0.250000,0,0);}
.m2a_c01170{transform:matrix(0.261344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261344,0.000000,0.000000,0.250000,0,0);}
.m23_c01170{transform:matrix(0.261433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261433,0.000000,0.000000,0.250000,0,0);}
.m5b_c01170{transform:matrix(0.265352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265352,0.000000,0.000000,0.250000,0,0);}
.m8_c01170{transform:matrix(0.265931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265931,0.000000,0.000000,0.250000,0,0);}
.m78_c01170{transform:matrix(0.266277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266277,0.000000,0.000000,0.250000,0,0);}
.m87_c01170{transform:matrix(0.267617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267617,0.000000,0.000000,0.250000,0,0);}
.m84_c01170{transform:matrix(0.267699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267699,0.000000,0.000000,0.250000,0,0);}
.m2d_c01170{transform:matrix(0.273900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273900,0.000000,0.000000,0.250000,0,0);}
.m21_c01170{transform:matrix(0.275886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275886,0.000000,0.000000,0.250000,0,0);}
.m73_c01170{transform:matrix(0.276310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276310,0.000000,0.000000,0.250000,0,0);}
.m67_c01170{transform:matrix(0.276927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276927,0.000000,0.000000,0.250000,0,0);}
.m5d_c01170{transform:matrix(0.277934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277934,0.000000,0.000000,0.250000,0,0);}
.m89_c01170{transform:matrix(0.278061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278061,0.000000,0.000000,0.250000,0,0);}
.m1c_c01170{transform:matrix(0.278098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278098,0.000000,0.000000,0.250000,0,0);}
.m1a_c01170{transform:matrix(0.278511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278511,0.000000,0.000000,0.250000,0,0);}
.m3_c01170{transform:matrix(0.278792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278792,0.000000,0.000000,0.250000,0,0);}
.m6c_c01170{transform:matrix(0.279850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279850,0.000000,0.000000,0.250000,0,0);}
.m4_c01170{transform:matrix(0.280955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280955,0.000000,0.000000,0.250000,0,0);}
.m88_c01170{transform:matrix(0.280962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280962,0.000000,0.000000,0.250000,0,0);}
.m39_c01170{transform:matrix(0.281872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281872,0.000000,0.000000,0.250000,0,0);}
.m37_c01170{transform:matrix(0.281959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281959,0.000000,0.000000,0.250000,0,0);}
.m70_c01170{transform:matrix(0.282233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282233,0.000000,0.000000,0.250000,0,0);}
.m2_c01170{transform:matrix(0.282350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282350,0.000000,0.000000,0.250000,0,0);}
.m7b_c01170{transform:matrix(0.282492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282492,0.000000,0.000000,0.250000,0,0);}
.m6e_c01170{transform:matrix(0.283042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283042,0.000000,0.000000,0.250000,0,0);}
.m56_c01170{transform:matrix(0.284284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284284,0.000000,0.000000,0.250000,0,0);}
.m50_c01170{transform:matrix(0.284995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284995,0.000000,0.000000,0.250000,0,0);}
.m44_c01170{transform:matrix(0.285036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285036,0.000000,0.000000,0.250000,0,0);}
.m8e_c01170{transform:matrix(0.285148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285148,0.000000,0.000000,0.250000,0,0);}
.m40_c01170{transform:matrix(0.287120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287120,0.000000,0.000000,0.250000,0,0);}
.m64_c01170{transform:matrix(0.288515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288515,0.000000,0.000000,0.250000,0,0);}
.m76_c01170{transform:matrix(0.288993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288993,0.000000,0.000000,0.250000,0,0);}
.m11_c01170{transform:matrix(0.289692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289692,0.000000,0.000000,0.250000,0,0);}
.m42_c01170{transform:matrix(0.289932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289932,0.000000,0.000000,0.250000,0,0);}
.m55_c01170{transform:matrix(0.290157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290157,0.000000,0.000000,0.250000,0,0);}
.m12_c01170{transform:matrix(0.290279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290279,0.000000,0.000000,0.250000,0,0);}
.m4f_c01170{transform:matrix(0.290708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290708,0.000000,0.000000,0.250000,0,0);}
.m33_c01170{transform:matrix(0.291762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291762,0.000000,0.000000,0.250000,0,0);}
.m29_c01170{transform:matrix(0.292112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292112,0.000000,0.000000,0.250000,0,0);}
.m51_c01170{transform:matrix(0.292475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292475,0.000000,0.000000,0.250000,0,0);}
.m4e_c01170{transform:matrix(0.293234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293234,0.000000,0.000000,0.250000,0,0);}
.m48_c01170{transform:matrix(0.294157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294157,0.000000,0.000000,0.250000,0,0);}
.m5c_c01170{transform:matrix(0.294297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294297,0.000000,0.000000,0.250000,0,0);}
.m85_c01170{transform:matrix(0.294700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294700,0.000000,0.000000,0.250000,0,0);}
.m86_c01170{transform:matrix(0.296538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296538,0.000000,0.000000,0.250000,0,0);}
.m8f_c01170{transform:matrix(0.296707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296707,0.000000,0.000000,0.250000,0,0);}
.m49_c01170{transform:matrix(0.298186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298186,0.000000,0.000000,0.250000,0,0);}
.m62_c01170{transform:matrix(0.299162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299162,0.000000,0.000000,0.250000,0,0);}
.m24_c01170{transform:matrix(0.300201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300201,0.000000,0.000000,0.250000,0,0);}
.m53_c01170{transform:matrix(0.300755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300755,0.000000,0.000000,0.250000,0,0);}
.m9_c01170{transform:matrix(0.301548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301548,0.000000,0.000000,0.250000,0,0);}
.m6b_c01170{transform:matrix(0.302192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302192,0.000000,0.000000,0.250000,0,0);}
.m7e_c01170{transform:matrix(0.302348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302348,0.000000,0.000000,0.250000,0,0);}
.m30_c01170{transform:matrix(0.302836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302836,0.000000,0.000000,0.250000,0,0);}
.m5_c01170{transform:matrix(0.304182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304182,0.000000,0.000000,0.250000,0,0);}
.m66_c01170{transform:matrix(0.304916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304916,0.000000,0.000000,0.250000,0,0);}
.m1b_c01170{transform:matrix(0.306550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306550,0.000000,0.000000,0.250000,0,0);}
.m35_c01170{transform:matrix(0.306676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306676,0.000000,0.000000,0.250000,0,0);}
.m38_c01170{transform:matrix(0.307687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307687,0.000000,0.000000,0.250000,0,0);}
.m43_c01170{transform:matrix(0.308828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308828,0.000000,0.000000,0.250000,0,0);}
.m68_c01170{transform:matrix(0.308852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308852,0.000000,0.000000,0.250000,0,0);}
.m1e_c01170{transform:matrix(0.309007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309007,0.000000,0.000000,0.250000,0,0);}
.m7_c01170{transform:matrix(0.310916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310916,0.000000,0.000000,0.250000,0,0);}
.ma_c01170{transform:matrix(0.311533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311533,0.000000,0.000000,0.250000,0,0);}
.m14_c01170{transform:matrix(0.311677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311677,0.000000,0.000000,0.250000,0,0);}
.m2e_c01170{transform:matrix(0.312406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312406,0.000000,0.000000,0.250000,0,0);}
.m6d_c01170{transform:matrix(0.313013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313013,0.000000,0.000000,0.250000,0,0);}
.m7f_c01170{transform:matrix(0.313908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313908,0.000000,0.000000,0.250000,0,0);}
.m46_c01170{transform:matrix(0.314847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314847,0.000000,0.000000,0.250000,0,0);}
.m16_c01170{transform:matrix(0.315027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315027,0.000000,0.000000,0.250000,0,0);}
.m2c_c01170{transform:matrix(0.315926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315926,0.000000,0.000000,0.250000,0,0);}
.m65_c01170{transform:matrix(0.316125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316125,0.000000,0.000000,0.250000,0,0);}
.m59_c01170{transform:matrix(0.319242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319242,0.000000,0.000000,0.250000,0,0);}
.m32_c01170{transform:matrix(0.319834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319834,0.000000,0.000000,0.250000,0,0);}
.m3b_c01170{transform:matrix(0.320215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320215,0.000000,0.000000,0.250000,0,0);}
.m82_c01170{transform:matrix(0.320877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320877,0.000000,0.000000,0.250000,0,0);}
.m15_c01170{transform:matrix(0.320990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320990,0.000000,0.000000,0.250000,0,0);}
.m18_c01170{transform:matrix(0.321784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321784,0.000000,0.000000,0.250000,0,0);}
.m4c_c01170{transform:matrix(0.322587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322587,0.000000,0.000000,0.250000,0,0);}
.m6f_c01170{transform:matrix(0.323039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323039,0.000000,0.000000,0.250000,0,0);}
.m4b_c01170{transform:matrix(0.323616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323616,0.000000,0.000000,0.250000,0,0);}
.mb_c01170{transform:matrix(0.326031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326031,0.000000,0.000000,0.250000,0,0);}
.m8c_c01170{transform:matrix(0.326861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326861,0.000000,0.000000,0.250000,0,0);}
.m69_c01170{transform:matrix(0.327306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327306,0.000000,0.000000,0.250000,0,0);}
.m6a_c01170{transform:matrix(0.327686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327686,0.000000,0.000000,0.250000,0,0);}
.m1f_c01170{transform:matrix(0.328206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328206,0.000000,0.000000,0.250000,0,0);}
.m74_c01170{transform:matrix(0.332268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332268,0.000000,0.000000,0.250000,0,0);}
.m4d_c01170{transform:matrix(0.334091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334091,0.000000,0.000000,0.250000,0,0);}
.m34_c01170{transform:matrix(0.334345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334345,0.000000,0.000000,0.250000,0,0);}
.md_c01170{transform:matrix(0.335458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335458,0.000000,0.000000,0.250000,0,0);}
.m81_c01170{transform:matrix(0.336098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336098,0.000000,0.000000,0.250000,0,0);}
.m57_c01170{transform:matrix(0.336383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336383,0.000000,0.000000,0.250000,0,0);}
.m80_c01170{transform:matrix(0.340636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340636,0.000000,0.000000,0.250000,0,0);}
.m75_c01170{transform:matrix(0.342272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342272,0.000000,0.000000,0.250000,0,0);}
.m72_c01170{transform:matrix(0.342637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342637,0.000000,0.000000,0.250000,0,0);}
.m8b_c01170{transform:matrix(0.343231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343231,0.000000,0.000000,0.250000,0,0);}
.m10_c01170{transform:matrix(0.345012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345012,0.000000,0.000000,0.250000,0,0);}
.mf_c01170{transform:matrix(0.346315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346315,0.000000,0.000000,0.250000,0,0);}
.m13_c01170{transform:matrix(0.346409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346409,0.000000,0.000000,0.250000,0,0);}
.m19_c01170{transform:matrix(0.352824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352824,0.000000,0.000000,0.250000,0,0);}
.m54_c01170{transform:matrix(0.356474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356474,0.000000,0.000000,0.250000,0,0);}
.m1d_c01170{transform:matrix(0.359239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359239,0.000000,0.000000,0.250000,0,0);}
.m4a_c01170{transform:matrix(0.369849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369849,0.000000,0.000000,0.250000,0,0);}
.m36_c01170{transform:matrix(0.370310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370310,0.000000,0.000000,0.250000,0,0);}
.mc_c01170{transform:matrix(0.370846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370846,0.000000,0.000000,0.250000,0,0);}
.m20_c01170{transform:matrix(0.371254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371254,0.000000,0.000000,0.250000,0,0);}
.me_c01170{transform:matrix(0.373931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373931,0.000000,0.000000,0.250000,0,0);}
.m77_c01170{transform:matrix(0.387554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387554,0.000000,0.000000,0.250000,0,0);}
.m47_c01170{transform:matrix(0.395355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395355,0.000000,0.000000,0.250000,0,0);}
.m31_c01170{transform:matrix(0.401732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401732,0.000000,0.000000,0.250000,0,0);}
.m6_c01170{transform:matrix(0.408109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408109,0.000000,0.000000,0.250000,0,0);}
.m3a_c01170{transform:matrix(0.414486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414486,0.000000,0.000000,0.250000,0,0);}
.m7d_c01170{transform:matrix(0.435581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435581,0.000000,0.000000,0.250000,0,0);}
.m22_c01170{transform:matrix(0.439965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439965,0.000000,0.000000,0.250000,0,0);}
.m7c_c01170{transform:matrix(0.446483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446483,0.000000,0.000000,0.250000,0,0);}
.m8a_c01170{transform:matrix(0.459634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459634,0.000000,0.000000,0.250000,0,0);}
.v1_c01170{vertical-align:-19.920780px;}
.v2_c01170{vertical-align:-5.702400px;}
.v0_c01170{vertical-align:0.000000px;}
.ls18_c01170{letter-spacing:-3.354127px;}
.ls17_c01170{letter-spacing:-2.661127px;}
.lsb_c01170{letter-spacing:-2.591827px;}
.ls5_c01170{letter-spacing:-2.293830px;}
.ls16_c01170{letter-spacing:-1.733534px;}
.ls1c_c01170{letter-spacing:-1.677067px;}
.ls21_c01170{letter-spacing:-1.434517px;}
.ls11_c01170{letter-spacing:-1.429405px;}
.ls22_c01170{letter-spacing:-1.119096px;}
.lsf_c01170{letter-spacing:-0.525888px;}
.ls4_c01170{letter-spacing:0.000000px;}
.ls15_c01170{letter-spacing:0.955273px;}
.ls1e_c01170{letter-spacing:1.019700px;}
.ls13_c01170{letter-spacing:1.155214px;}
.ls1_c01170{letter-spacing:1.540286px;}
.ls12_c01170{letter-spacing:1.548518px;}
.ls1f_c01170{letter-spacing:1.584000px;}
.ls1d_c01170{letter-spacing:1.603810px;}
.ls9_c01170{letter-spacing:1.718011px;}
.lsa_c01170{letter-spacing:2.075679px;}
.ls23_c01170{letter-spacing:2.206756px;}
.ls1a_c01170{letter-spacing:2.243782px;}
.ls3_c01170{letter-spacing:2.643663px;}
.lsc_c01170{letter-spacing:2.790382px;}
.ls1b_c01170{letter-spacing:3.306610px;}
.ls20_c01170{letter-spacing:3.554506px;}
.ls8_c01170{letter-spacing:3.665584px;}
.ls7_c01170{letter-spacing:3.702610px;}
.ls6_c01170{letter-spacing:3.801610px;}
.lse_c01170{letter-spacing:4.108500px;}
.ls10_c01170{letter-spacing:4.336200px;}
.ls0_c01170{letter-spacing:12.657832px;}
.ls2_c01170{letter-spacing:13.255429px;}
.lsd_c01170{letter-spacing:58.449798px;}
.ls14_c01170{letter-spacing:59.875398px;}
.ls19_c01170{letter-spacing:61.300998px;}
.sc__c01170{text-shadow:none;}
.sc0_c01170{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01170{-webkit-text-stroke:0px transparent;}
.sc0_c01170{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01170{word-spacing:-20.053335px;}
.ws1_c01170{word-spacing:-17.274515px;}
.ws2_c01170{word-spacing:0.000000px;}
._8_c01170{width:3.405600px;}
._0_c01170{width:4.887344px;}
._2_c01170{width:6.190097px;}
._4_c01170{width:8.515881px;}
._1_c01170{width:13.625667px;}
._6_c01170{width:15.404301px;}
._5_c01170{width:24.884335px;}
._3_c01170{width:27.771029px;}
._a_c01170{width:32.927400px;}
._b_c01170{width:55.344960px;}
._9_c01170{width:58.305654px;}
._c_c01170{width:82.071000px;}
._7_c01170{width:1030.688852px;}
.fc0_c01170{color:transparent;}
.fs11_c01170{font-size:20.394000px;}
.fs4_c01170{font-size:22.176000px;}
.fs13_c01170{font-size:27.324000px;}
.fs1_c01170{font-size:27.720000px;}
.fs12_c01170{font-size:31.680000px;}
.fs10_c01170{font-size:32.076198px;}
.fs0_c01170{font-size:33.264000px;}
.fs16_c01170{font-size:38.808000px;}
.fs14_c01170{font-size:40.986198px;}
.fsf_c01170{font-size:47.916198px;}
.fs6_c01170{font-size:51.876198px;}
.fs7_c01170{font-size:58.449798px;}
.fsb_c01170{font-size:59.875398px;}
.fsd_c01170{font-size:61.300998px;}
.fs2_c01170{font-size:65.538000px;}
.fse_c01170{font-size:66.132198px;}
.fs5_c01170{font-size:74.052198px;}
.fsa_c01170{font-size:74.448000px;}
.fs3_c01170{font-size:76.032198px;}
.fs8_c01170{font-size:82.170000px;}
.fs9_c01170{font-size:86.724000px;}
.fs15_c01170{font-size:93.258000px;}
.fsc_c01170{font-size:95.832198px;}
.y0_c01170{bottom:0.000000px;}
.y4_c01170{bottom:23.785785px;}
.y3_c01170{bottom:36.617571px;}
.y1_c01170{bottom:76.500000px;}
.y20_c01170{bottom:84.022335px;}
.y1f_c01170{bottom:120.375135px;}
.y1e_c01170{bottom:186.309135px;}
.y1d_c01170{bottom:219.810735px;}
.y1c_c01170{bottom:246.897135px;}
.y1b_c01170{bottom:252.243135px;}
.y1a_c01170{bottom:285.383385px;}
.y19_c01170{bottom:317.459385px;}
.y18_c01170{bottom:381.616335px;}
.y17_c01170{bottom:414.405135px;}
.y16_c01170{bottom:445.050585px;}
.y15_c01170{bottom:478.552185px;}
.y13_c01170{bottom:542.709135px;}
.y14_c01170{bottom:544.134735px;}
.y11_c01170{bottom:575.845920px;}
.y12_c01170{bottom:575.849385px;}
.y2_c01170{bottom:599.020335px;}
.y10_c01170{bottom:640.719135px;}
.yf_c01170{bottom:673.502985px;}
.y21_c01170{bottom:689.545935px;}
.ye_c01170{bottom:737.654985px;}
.yd_c01170{bottom:770.443785px;}
.yc_c01170{bottom:802.168335px;}
.ya_c01170{bottom:864.894735px;}
.yb_c01170{bottom:869.879385px;}
.y9_c01170{bottom:897.327135px;}
.y8_c01170{bottom:930.115935px;}
.y7_c01170{bottom:962.548335px;}
.y6_c01170{bottom:1068.037785px;}
.y5_c01170{bottom:1090.490985px;}
.h14_c01170{height:20.015596px;}
.h6_c01170{height:23.128875px;}
.h3_c01170{height:28.911094px;}
.h15_c01170{height:31.092188px;}
.h13_c01170{height:33.454472px;}
.h2_c01170{height:34.693313px;}
.h9_c01170{height:38.927565px;}
.hd_c01170{height:39.877015px;}
.h16_c01170{height:40.225712px;}
.h18_c01170{height:40.475531px;}
.h10_c01170{height:40.826465px;}
.h12_c01170{height:47.027128px;}
.h8_c01170{height:54.105253px;}
.h4_c01170{height:64.321963px;}
.h11_c01170{height:68.973816px;}
.h7_c01170{height:72.678183px;}
.hc_c01170{height:73.066641px;}
.h5_c01170{height:74.621444px;}
.ha_c01170{height:80.645361px;}
.hb_c01170{height:90.450422px;}
.hf_c01170{height:94.007268px;}
.he_c01170{height:94.054062px;}
.h17_c01170{height:97.265180px;}
.h1_c01170{height:1110.000000px;}
.h0_c01170{height:1263.000000px;}
.w1_c01170{width:775.500000px;}
.w0_c01170{width:892.500000px;}
.x0_c01170{left:0.000000px;}
.x2_c01170{left:3.065685px;}
.x3_c01170{left:49.061085px;}
.x1_c01170{left:58.500000px;}
.x47_c01170{left:77.107785px;}
.x1e_c01170{left:80.057985px;}
.x4_c01170{left:119.905485px;}
.x3e_c01170{left:132.869535px;}
.x7_c01170{left:134.146635px;}
.x2f_c01170{left:154.991085px;}
.x37_c01170{left:156.283035px;}
.x45_c01170{left:158.119485px;}
.x8_c01170{left:166.915635px;}
.x3f_c01170{left:188.740185px;}
.x30_c01170{left:190.467735px;}
.x67_c01170{left:198.110535px;}
.x24_c01170{left:199.536135px;}
.x11_c01170{left:201.516135px;}
.x4b_c01170{left:210.153885px;}
.x1c_c01170{left:211.297335px;}
.x48_c01170{left:220.603335px;}
.x63_c01170{left:221.964585px;}
.x12_c01170{left:223.499085px;}
.x6a_c01170{left:232.671435px;}
.x25_c01170{left:233.691135px;}
.x31_c01170{left:244.081185px;}
.x9_c01170{left:245.214735px;}
.x68_c01170{left:246.699735px;}
.x46_c01170{left:254.614785px;}
.x26_c01170{left:257.104635px;}
.x1d_c01170{left:269.534085px;}
.x13_c01170{left:278.107485px;}
.xa_c01170{left:289.116285px;}
.x4c_c01170{left:298.615335px;}
.x27_c01170{left:300.956685px;}
.x38_c01170{left:311.227935px;}
.x14_c01170{left:322.484235px;}
.xb_c01170{left:324.330585px;}
.x5b_c01170{left:326.840235px;}
.x52_c01170{left:332.899035px;}
.x1f_c01170{left:333.958335px;}
.x40_c01170{left:336.294735px;}
.x6_c01170{left:339.908235px;}
.x55_c01170{left:343.195035px;}
.x32_c01170{left:344.363235px;}
.x4d_c01170{left:352.788135px;}
.x28_c01170{left:356.228385px;}
.x6b_c01170{left:358.119285px;}
.x49_c01170{left:366.326385px;}
.x29_c01170{left:367.910385px;}
.x33_c01170{left:378.577635px;}
.x69_c01170{left:380.018085px;}
.x56_c01170{left:389.284485px;}
.x15_c01170{left:390.566535px;}
.xc_c01170{left:400.124985px;}
.x2a_c01170{left:411.826785px;}
.x51_c01170{left:419.717085px;}
.x2b_c01170{left:421.211985px;}
.x53_c01170{left:422.845485px;}
.x4e_c01170{left:424.924485px;}
.x16_c01170{left:435.195735px;}
.x2c_c01170{left:445.660035px;}
.xd_c01170{left:455.352135px;}
.x17_c01170{left:467.044035px;}
.x64_c01170{left:476.449035px;}
.x41_c01170{left:478.349835px;}
.x2d_c01170{left:485.576835px;}
.x20_c01170{left:489.472485px;}
.x4f_c01170{left:491.180235px;}
.x34_c01170{left:499.803135px;}
.x39_c01170{left:501.446535px;}
.x42_c01170{left:510.806985px;}
.x57_c01170{left:521.781135px;}
.x6c_c01170{left:532.651335px;}
.x21_c01170{left:533.938335px;}
.x43_c01170{left:543.090885px;}
.xe_c01170{left:544.150185px;}
.x3a_c01170{left:554.545185px;}
.x18_c01170{left:556.445985px;}
.x22_c01170{left:566.331135px;}
.x65_c01170{left:576.414285px;}
.x35_c01170{left:578.859585px;}
.x6d_c01170{left:587.091435px;}
.x2e_c01170{left:589.511985px;}
.x5c_c01170{left:595.833135px;}
.x5d_c01170{left:606.762735px;}
.x3b_c01170{left:610.168335px;}
.x50_c01170{left:612.034485px;}
.x5e_c01170{left:616.068735px;}
.x6e_c01170{left:619.726785px;}
.xf_c01170{left:621.578085px;}
.x5f_c01170{left:623.087835px;}
.x60_c01170{left:628.616985px;}
.x54_c01170{left:632.329485px;}
.x19_c01170{left:633.740235px;}
.x44_c01170{left:644.115435px;}
.x61_c01170{left:648.798135px;}
.x4a_c01170{left:653.852085px;}
.x3c_c01170{left:655.634085px;}
.x59_c01170{left:664.499535px;}
.x1a_c01170{left:666.736935px;}
.x62_c01170{left:668.682285px;}
.x58_c01170{left:676.141935px;}
.x10_c01170{left:677.423985px;}
.x5a_c01170{left:686.012235px;}
.x23_c01170{left:689.006985px;}
.x5_c01170{left:696.134985px;}
.x1b_c01170{left:698.793135px;}
.x36_c01170{left:709.173285px;}
.x3d_c01170{left:711.737385px;}
.x66_c01170{left:722.959035px;}
.x6f_c01170{left:751.480935px;}
@media print{
.v1_c01170{vertical-align:-17.707360pt;}
.v2_c01170{vertical-align:-5.068800pt;}
.v0_c01170{vertical-align:0.000000pt;}
.ls18_c01170{letter-spacing:-2.981446pt;}
.ls17_c01170{letter-spacing:-2.365446pt;}
.lsb_c01170{letter-spacing:-2.303846pt;}
.ls5_c01170{letter-spacing:-2.038960pt;}
.ls16_c01170{letter-spacing:-1.540919pt;}
.ls1c_c01170{letter-spacing:-1.490726pt;}
.ls21_c01170{letter-spacing:-1.275126pt;}
.ls11_c01170{letter-spacing:-1.270583pt;}
.ls22_c01170{letter-spacing:-0.994752pt;}
.lsf_c01170{letter-spacing:-0.467456pt;}
.ls4_c01170{letter-spacing:0.000000pt;}
.ls15_c01170{letter-spacing:0.849132pt;}
.ls1e_c01170{letter-spacing:0.906400pt;}
.ls13_c01170{letter-spacing:1.026857pt;}
.ls1_c01170{letter-spacing:1.369143pt;}
.ls12_c01170{letter-spacing:1.376461pt;}
.ls1f_c01170{letter-spacing:1.408000pt;}
.ls1d_c01170{letter-spacing:1.425609pt;}
.ls9_c01170{letter-spacing:1.527121pt;}
.lsa_c01170{letter-spacing:1.845048pt;}
.ls23_c01170{letter-spacing:1.961560pt;}
.ls1a_c01170{letter-spacing:1.994473pt;}
.ls3_c01170{letter-spacing:2.349923pt;}
.lsc_c01170{letter-spacing:2.480339pt;}
.ls1b_c01170{letter-spacing:2.939209pt;}
.ls20_c01170{letter-spacing:3.159560pt;}
.ls8_c01170{letter-spacing:3.258297pt;}
.ls7_c01170{letter-spacing:3.291209pt;}
.ls6_c01170{letter-spacing:3.379209pt;}
.lse_c01170{letter-spacing:3.652000pt;}
.ls10_c01170{letter-spacing:3.854400pt;}
.ls0_c01170{letter-spacing:11.251406pt;}
.ls2_c01170{letter-spacing:11.782604pt;}
.lsd_c01170{letter-spacing:51.955376pt;}
.ls14_c01170{letter-spacing:53.222576pt;}
.ls19_c01170{letter-spacing:54.489776pt;}
.ws0_c01170{word-spacing:-17.825187pt;}
.ws1_c01170{word-spacing:-15.355125pt;}
.ws2_c01170{word-spacing:0.000000pt;}
._8_c01170{width:3.027200pt;}
._0_c01170{width:4.344306pt;}
._2_c01170{width:5.502308pt;}
._4_c01170{width:7.569672pt;}
._1_c01170{width:12.111704pt;}
._6_c01170{width:13.692712pt;}
._5_c01170{width:22.119409pt;}
._3_c01170{width:24.685359pt;}
._a_c01170{width:29.268800pt;}
._b_c01170{width:49.195520pt;}
._9_c01170{width:51.827248pt;}
._c_c01170{width:72.952000pt;}
._7_c01170{width:916.167868pt;}
.fs11_c01170{font-size:18.128000pt;}
.fs4_c01170{font-size:19.712000pt;}
.fs13_c01170{font-size:24.288000pt;}
.fs1_c01170{font-size:24.640000pt;}
.fs12_c01170{font-size:28.160000pt;}
.fs10_c01170{font-size:28.512176pt;}
.fs0_c01170{font-size:29.568000pt;}
.fs16_c01170{font-size:34.496000pt;}
.fs14_c01170{font-size:36.432176pt;}
.fsf_c01170{font-size:42.592176pt;}
.fs6_c01170{font-size:46.112176pt;}
.fs7_c01170{font-size:51.955376pt;}
.fsb_c01170{font-size:53.222576pt;}
.fsd_c01170{font-size:54.489776pt;}
.fs2_c01170{font-size:58.256000pt;}
.fse_c01170{font-size:58.784176pt;}
.fs5_c01170{font-size:65.824176pt;}
.fsa_c01170{font-size:66.176000pt;}
.fs3_c01170{font-size:67.584176pt;}
.fs8_c01170{font-size:73.040000pt;}
.fs9_c01170{font-size:77.088000pt;}
.fs15_c01170{font-size:82.896000pt;}
.fsc_c01170{font-size:85.184176pt;}
.y0_c01170{bottom:0.000000pt;}
.y4_c01170{bottom:21.142920pt;}
.y3_c01170{bottom:32.548952pt;}
.y1_c01170{bottom:68.000000pt;}
.y20_c01170{bottom:74.686520pt;}
.y1f_c01170{bottom:107.000120pt;}
.y1e_c01170{bottom:165.608120pt;}
.y1d_c01170{bottom:195.387320pt;}
.y1c_c01170{bottom:219.464120pt;}
.y1b_c01170{bottom:224.216120pt;}
.y1a_c01170{bottom:253.674120pt;}
.y19_c01170{bottom:282.186120pt;}
.y18_c01170{bottom:339.214520pt;}
.y17_c01170{bottom:368.360120pt;}
.y16_c01170{bottom:395.600520pt;}
.y15_c01170{bottom:425.379720pt;}
.y13_c01170{bottom:482.408120pt;}
.y14_c01170{bottom:483.675320pt;}
.y11_c01170{bottom:511.863040pt;}
.y12_c01170{bottom:511.866120pt;}
.y2_c01170{bottom:532.462520pt;}
.y10_c01170{bottom:569.528120pt;}
.yf_c01170{bottom:598.669320pt;}
.y21_c01170{bottom:612.929720pt;}
.ye_c01170{bottom:655.693320pt;}
.yd_c01170{bottom:684.838920pt;}
.yc_c01170{bottom:713.038520pt;}
.ya_c01170{bottom:768.795320pt;}
.yb_c01170{bottom:773.226120pt;}
.y9_c01170{bottom:797.624120pt;}
.y8_c01170{bottom:826.769720pt;}
.y7_c01170{bottom:855.598520pt;}
.y6_c01170{bottom:949.366920pt;}
.y5_c01170{bottom:969.325320pt;}
.h14_c01170{height:17.791641pt;}
.h6_c01170{height:20.559000pt;}
.h3_c01170{height:25.698750pt;}
.h15_c01170{height:27.637500pt;}
.h13_c01170{height:29.737309pt;}
.h2_c01170{height:30.838500pt;}
.h9_c01170{height:34.602280pt;}
.hd_c01170{height:35.446236pt;}
.h16_c01170{height:35.756188pt;}
.h18_c01170{height:35.978250pt;}
.h10_c01170{height:36.290191pt;}
.h12_c01170{height:41.801891pt;}
.h8_c01170{height:48.093559pt;}
.h4_c01170{height:57.175078pt;}
.h11_c01170{height:61.310059pt;}
.h7_c01170{height:64.602829pt;}
.hc_c01170{height:64.948125pt;}
.h5_c01170{height:66.330173pt;}
.ha_c01170{height:71.684766pt;}
.hb_c01170{height:80.400375pt;}
.hf_c01170{height:83.562016pt;}
.he_c01170{height:83.603610pt;}
.h17_c01170{height:86.457938pt;}
.h1_c01170{height:986.666667pt;}
.h0_c01170{height:1122.666667pt;}
.w1_c01170{width:689.333333pt;}
.w0_c01170{width:793.333333pt;}
.x0_c01170{left:0.000000pt;}
.x2_c01170{left:2.725053pt;}
.x3_c01170{left:43.609853pt;}
.x1_c01170{left:52.000000pt;}
.x47_c01170{left:68.540253pt;}
.x1e_c01170{left:71.162653pt;}
.x4_c01170{left:106.582653pt;}
.x3e_c01170{left:118.106253pt;}
.x7_c01170{left:119.241453pt;}
.x2f_c01170{left:137.769853pt;}
.x37_c01170{left:138.918253pt;}
.x45_c01170{left:140.550653pt;}
.x8_c01170{left:148.369453pt;}
.x3f_c01170{left:167.769053pt;}
.x30_c01170{left:169.304653pt;}
.x67_c01170{left:176.098253pt;}
.x24_c01170{left:177.365453pt;}
.x11_c01170{left:179.125453pt;}
.x4b_c01170{left:186.803453pt;}
.x1c_c01170{left:187.819853pt;}
.x48_c01170{left:196.091853pt;}
.x63_c01170{left:197.301853pt;}
.x12_c01170{left:198.665853pt;}
.x6a_c01170{left:206.819053pt;}
.x25_c01170{left:207.725453pt;}
.x31_c01170{left:216.961053pt;}
.x9_c01170{left:217.968653pt;}
.x68_c01170{left:219.288653pt;}
.x46_c01170{left:226.324253pt;}
.x26_c01170{left:228.537453pt;}
.x1d_c01170{left:239.585853pt;}
.x13_c01170{left:247.206653pt;}
.xa_c01170{left:256.992253pt;}
.x4c_c01170{left:265.435853pt;}
.x27_c01170{left:267.517053pt;}
.x38_c01170{left:276.647053pt;}
.x14_c01170{left:286.652653pt;}
.xb_c01170{left:288.293853pt;}
.x5b_c01170{left:290.524653pt;}
.x52_c01170{left:295.910253pt;}
.x1f_c01170{left:296.851853pt;}
.x40_c01170{left:298.928653pt;}
.x6_c01170{left:302.140653pt;}
.x55_c01170{left:305.062253pt;}
.x32_c01170{left:306.100653pt;}
.x4d_c01170{left:313.589453pt;}
.x28_c01170{left:316.647453pt;}
.x6b_c01170{left:318.328253pt;}
.x49_c01170{left:325.623453pt;}
.x29_c01170{left:327.031453pt;}
.x33_c01170{left:336.513453pt;}
.x69_c01170{left:337.793853pt;}
.x56_c01170{left:346.030653pt;}
.x15_c01170{left:347.170253pt;}
.xc_c01170{left:355.666653pt;}
.x2a_c01170{left:366.068253pt;}
.x51_c01170{left:373.081853pt;}
.x2b_c01170{left:374.410653pt;}
.x53_c01170{left:375.862653pt;}
.x4e_c01170{left:377.710653pt;}
.x16_c01170{left:386.840653pt;}
.x2c_c01170{left:396.142253pt;}
.xd_c01170{left:404.757453pt;}
.x17_c01170{left:415.150253pt;}
.x64_c01170{left:423.510253pt;}
.x41_c01170{left:425.199853pt;}
.x2d_c01170{left:431.623853pt;}
.x20_c01170{left:435.086653pt;}
.x4f_c01170{left:436.604653pt;}
.x34_c01170{left:444.269453pt;}
.x39_c01170{left:445.730253pt;}
.x42_c01170{left:454.050653pt;}
.x57_c01170{left:463.805453pt;}
.x6c_c01170{left:473.467853pt;}
.x21_c01170{left:474.611853pt;}
.x43_c01170{left:482.747453pt;}
.xe_c01170{left:483.689053pt;}
.x3a_c01170{left:492.929053pt;}
.x18_c01170{left:494.618653pt;}
.x22_c01170{left:503.405453pt;}
.x65_c01170{left:512.368253pt;}
.x35_c01170{left:514.541853pt;}
.x6d_c01170{left:521.859053pt;}
.x2e_c01170{left:524.010653pt;}
.x5c_c01170{left:529.629453pt;}
.x5d_c01170{left:539.344653pt;}
.x3b_c01170{left:542.371853pt;}
.x50_c01170{left:544.030653pt;}
.x5e_c01170{left:547.616653pt;}
.x6e_c01170{left:550.868253pt;}
.xf_c01170{left:552.513853pt;}
.x5f_c01170{left:553.855853pt;}
.x60_c01170{left:558.770653pt;}
.x54_c01170{left:562.070653pt;}
.x19_c01170{left:563.324653pt;}
.x44_c01170{left:572.547053pt;}
.x61_c01170{left:576.709453pt;}
.x4a_c01170{left:581.201853pt;}
.x3c_c01170{left:582.785853pt;}
.x59_c01170{left:590.666253pt;}
.x1a_c01170{left:592.655053pt;}
.x62_c01170{left:594.384253pt;}
.x58_c01170{left:601.015053pt;}
.x10_c01170{left:602.154653pt;}
.x5a_c01170{left:609.788653pt;}
.x23_c01170{left:612.450653pt;}
.x5_c01170{left:618.786653pt;}
.x1b_c01170{left:621.149453pt;}
.x36_c01170{left:630.376253pt;}
.x3d_c01170{left:632.655453pt;}
.x66_c01170{left:642.630253pt;}
.x6f_c01170{left:667.983053pt;}
}





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

.ir_c01171:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01171{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01171;src:url('chunks/assets/font_e66ea8b593316bbaa6d7807f.woff2')format("woff");}.ff1_c01171{font-family:ff1_c01171;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01171;src:url('chunks/assets/font_4fe99946d7dba099e4aed141.woff2')format("woff");}.ff2_c01171{font-family:ff2_c01171;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01171;src:url('chunks/assets/font_800ab4b74260270c7a89f167.woff2')format("woff");}.ff3_c01171{font-family:ff3_c01171;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01171;src:url('chunks/assets/font_7f15953fa8010f18c45c7ddc.woff2')format("woff");}.ff4_c01171{font-family:ff4_c01171;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01171;src:url('chunks/assets/font_0d59f09eac86b47c6fb40f72.woff2')format("woff");}.ff5_c01171{font-family:ff5_c01171;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01171;src:url('chunks/assets/font_eeaf91755c0cb3ae716cefd1.woff2')format("woff");}.ff6_c01171{font-family:ff6_c01171;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01171;src:url('chunks/assets/font_a1e44a88795b8c1148baa9b2.woff2')format("woff");}.ff7_c01171{font-family:ff7_c01171;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m6f_c01171{transform:matrix(0.105042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105042,0.000000,0.000000,0.250000,0,0);}
.m3_c01171{transform:matrix(0.145238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145238,0.000000,0.000000,0.250000,0,0);}
.m83_c01171{transform:matrix(0.156177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156177,0.000000,0.000000,0.250000,0,0);}
.m71_c01171{transform:matrix(0.167333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167333,0.000000,0.000000,0.250000,0,0);}
.m18_c01171{transform:matrix(0.176744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176744,0.000000,0.000000,0.250000,0,0);}
.m15_c01171{transform:matrix(0.177741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177741,0.000000,0.000000,0.250000,0,0);}
.m45_c01171{transform:matrix(0.178862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178862,0.000000,0.000000,0.250000,0,0);}
.m17_c01171{transform:matrix(0.180233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180233,0.000000,0.000000,0.250000,0,0);}
.m19_c01171{transform:matrix(0.181685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181685,0.000000,0.000000,0.250000,0,0);}
.m48_c01171{transform:matrix(0.182927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182927,0.000000,0.000000,0.250000,0,0);}
.m14_c01171{transform:matrix(0.186047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186047,0.000000,0.000000,0.250000,0,0);}
.m4_c01171{transform:matrix(0.188837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188837,0.000000,0.000000,0.250000,0,0);}
.ma_c01171{transform:matrix(0.189643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189643,0.000000,0.000000,0.250000,0,0);}
.m7e_c01171{transform:matrix(0.200039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200039,0.000000,0.000000,0.250000,0,0);}
.m4c_c01171{transform:matrix(0.206446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206446,0.000000,0.000000,0.250000,0,0);}
.m82_c01171{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m23_c01171{transform:matrix(0.210235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210235,0.000000,0.000000,0.250000,0,0);}
.m7b_c01171{transform:matrix(0.220710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220710,0.000000,0.000000,0.250000,0,0);}
.m38_c01171{transform:matrix(0.231906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231906,0.000000,0.000000,0.250000,0,0);}
.m2f_c01171{transform:matrix(0.241319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241319,0.000000,0.000000,0.250000,0,0);}
.m25_c01171{transform:matrix(0.242141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242141,0.000000,0.000000,0.250000,0,0);}
.m0_c01171{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m54_c01171{transform:matrix(0.252384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252384,0.000000,0.000000,0.250000,0,0);}
.m7f_c01171{transform:matrix(0.253135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253135,0.000000,0.000000,0.250000,0,0);}
.m6_c01171{transform:matrix(0.254332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254332,0.000000,0.000000,0.250000,0,0);}
.m8_c01171{transform:matrix(0.255107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255107,0.000000,0.000000,0.250000,0,0);}
.m3a_c01171{transform:matrix(0.256892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256892,0.000000,0.000000,0.250000,0,0);}
.m24_c01171{transform:matrix(0.257176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257176,0.000000,0.000000,0.250000,0,0);}
.m73_c01171{transform:matrix(0.261217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261217,0.000000,0.000000,0.250000,0,0);}
.m22_c01171{transform:matrix(0.261967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261967,0.000000,0.000000,0.250000,0,0);}
.m2_c01171{transform:matrix(0.262189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262189,0.000000,0.000000,0.250000,0,0);}
.m46_c01171{transform:matrix(0.262747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262747,0.000000,0.000000,0.250000,0,0);}
.m5d_c01171{transform:matrix(0.264013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264013,0.000000,0.000000,0.250000,0,0);}
.m75_c01171{transform:matrix(0.265624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265624,0.000000,0.000000,0.250000,0,0);}
.m35_c01171{transform:matrix(0.267450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267450,0.000000,0.000000,0.250000,0,0);}
.m42_c01171{transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);}
.mf_c01171{transform:matrix(0.268602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268602,0.000000,0.000000,0.250000,0,0);}
.m57_c01171{transform:matrix(0.269064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269064,0.000000,0.000000,0.250000,0,0);}
.m1f_c01171{transform:matrix(0.270288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270288,0.000000,0.000000,0.250000,0,0);}
.m3f_c01171{transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);}
.m7a_c01171{transform:matrix(0.270998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270998,0.000000,0.000000,0.250000,0,0);}
.m47_c01171{transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);}
.m70_c01171{transform:matrix(0.272238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272238,0.000000,0.000000,0.250000,0,0);}
.m1e_c01171{transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);}
.m29_c01171{transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);}
.m33_c01171{transform:matrix(0.274403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274403,0.000000,0.000000,0.250000,0,0);}
.m59_c01171{transform:matrix(0.275226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275226,0.000000,0.000000,0.250000,0,0);}
.m26_c01171{transform:matrix(0.275540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275540,0.000000,0.000000,0.250000,0,0);}
.m6d_c01171{transform:matrix(0.276140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276140,0.000000,0.000000,0.250000,0,0);}
.m27_c01171{transform:matrix(0.276672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276672,0.000000,0.000000,0.250000,0,0);}
.m64_c01171{transform:matrix(0.276803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276803,0.000000,0.000000,0.250000,0,0);}
.m3c_c01171{transform:matrix(0.278675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278675,0.000000,0.000000,0.250000,0,0);}
.m20_c01171{transform:matrix(0.279306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279306,0.000000,0.000000,0.250000,0,0);}
.m7_c01171{transform:matrix(0.279511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279511,0.000000,0.000000,0.250000,0,0);}
.m58_c01171{transform:matrix(0.280064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280064,0.000000,0.000000,0.250000,0,0);}
.m5_c01171{transform:matrix(0.280313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280313,0.000000,0.000000,0.250000,0,0);}
.m13_c01171{transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);}
.m88_c01171{transform:matrix(0.280861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280861,0.000000,0.000000,0.250000,0,0);}
.m6e_c01171{transform:matrix(0.281776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281776,0.000000,0.000000,0.250000,0,0);}
.m2d_c01171{transform:matrix(0.282109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282109,0.000000,0.000000,0.250000,0,0);}
.m3e_c01171{transform:matrix(0.282256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282256,0.000000,0.000000,0.250000,0,0);}
.m3d_c01171{transform:matrix(0.283900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283900,0.000000,0.000000,0.250000,0,0);}
.m4b_c01171{transform:matrix(0.283997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283997,0.000000,0.000000,0.250000,0,0);}
.m1_c01171{transform:matrix(0.286234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286234,0.000000,0.000000,0.250000,0,0);}
.m2a_c01171{transform:matrix(0.286620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286620,0.000000,0.000000,0.250000,0,0);}
.m7d_c01171{transform:matrix(0.287556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287556,0.000000,0.000000,0.250000,0,0);}
.m79_c01171{transform:matrix(0.287626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287626,0.000000,0.000000,0.250000,0,0);}
.mb_c01171{transform:matrix(0.288840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288840,0.000000,0.000000,0.250000,0,0);}
.m62_c01171{transform:matrix(0.290493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290493,0.000000,0.000000,0.250000,0,0);}
.m86_c01171{transform:matrix(0.291330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291330,0.000000,0.000000,0.250000,0,0);}
.m9_c01171{transform:matrix(0.291648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291648,0.000000,0.000000,0.250000,0,0);}
.md_c01171{transform:matrix(0.293328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293328,0.000000,0.000000,0.250000,0,0);}
.m89_c01171{transform:matrix(0.293878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293878,0.000000,0.000000,0.250000,0,0);}
.m72_c01171{transform:matrix(0.293923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293923,0.000000,0.000000,0.250000,0,0);}
.m49_c01171{transform:matrix(0.294902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294902,0.000000,0.000000,0.250000,0,0);}
.m44_c01171{transform:matrix(0.294964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294964,0.000000,0.000000,0.250000,0,0);}
.m1c_c01171{transform:matrix(0.295751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295751,0.000000,0.000000,0.250000,0,0);}
.m39_c01171{transform:matrix(0.296896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296896,0.000000,0.000000,0.250000,0,0);}
.m3b_c01171{transform:matrix(0.297191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297191,0.000000,0.000000,0.250000,0,0);}
.m21_c01171{transform:matrix(0.297396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297396,0.000000,0.000000,0.250000,0,0);}
.m6a_c01171{transform:matrix(0.297812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297812,0.000000,0.000000,0.250000,0,0);}
.m37_c01171{transform:matrix(0.298126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298126,0.000000,0.000000,0.250000,0,0);}
.m5f_c01171{transform:matrix(0.298457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298457,0.000000,0.000000,0.250000,0,0);}
.m80_c01171{transform:matrix(0.298602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298602,0.000000,0.000000,0.250000,0,0);}
.m78_c01171{transform:matrix(0.298967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298967,0.000000,0.000000,0.250000,0,0);}
.m30_c01171{transform:matrix(0.299095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299095,0.000000,0.000000,0.250000,0,0);}
.m4a_c01171{transform:matrix(0.300072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300072,0.000000,0.000000,0.250000,0,0);}
.m16_c01171{transform:matrix(0.300106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300106,0.000000,0.000000,0.250000,0,0);}
.m6c_c01171{transform:matrix(0.301022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301022,0.000000,0.000000,0.250000,0,0);}
.m60_c01171{transform:matrix(0.301207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301207,0.000000,0.000000,0.250000,0,0);}
.m1d_c01171{transform:matrix(0.301485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301485,0.000000,0.000000,0.250000,0,0);}
.m2e_c01171{transform:matrix(0.301663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301663,0.000000,0.000000,0.250000,0,0);}
.m63_c01171{transform:matrix(0.301837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301837,0.000000,0.000000,0.250000,0,0);}
.m5a_c01171{transform:matrix(0.302495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302495,0.000000,0.000000,0.250000,0,0);}
.m52_c01171{transform:matrix(0.302669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302669,0.000000,0.000000,0.250000,0,0);}
.me_c01171{transform:matrix(0.302680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302680,0.000000,0.000000,0.250000,0,0);}
.m51_c01171{transform:matrix(0.303047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303047,0.000000,0.000000,0.250000,0,0);}
.mc_c01171{transform:matrix(0.303692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303692,0.000000,0.000000,0.250000,0,0);}
.m10_c01171{transform:matrix(0.304466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304466,0.000000,0.000000,0.250000,0,0);}
.m8a_c01171{transform:matrix(0.305008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305008,0.000000,0.000000,0.250000,0,0);}
.m87_c01171{transform:matrix(0.306067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306067,0.000000,0.000000,0.250000,0,0);}
.m5c_c01171{transform:matrix(0.306782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306782,0.000000,0.000000,0.250000,0,0);}
.m56_c01171{transform:matrix(0.307663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307663,0.000000,0.000000,0.250000,0,0);}
.m61_c01171{transform:matrix(0.308024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308024,0.000000,0.000000,0.250000,0,0);}
.m2c_c01171{transform:matrix(0.308215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308215,0.000000,0.000000,0.250000,0,0);}
.m85_c01171{transform:matrix(0.309567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309567,0.000000,0.000000,0.250000,0,0);}
.m77_c01171{transform:matrix(0.310434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310434,0.000000,0.000000,0.250000,0,0);}
.m36_c01171{transform:matrix(0.311495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311495,0.000000,0.000000,0.250000,0,0);}
.m5b_c01171{transform:matrix(0.311747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311747,0.000000,0.000000,0.250000,0,0);}
.m41_c01171{transform:matrix(0.311963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311963,0.000000,0.000000,0.250000,0,0);}
.m65_c01171{transform:matrix(0.312146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312146,0.000000,0.000000,0.250000,0,0);}
.m5e_c01171{transform:matrix(0.313789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313789,0.000000,0.000000,0.250000,0,0);}
.m69_c01171{transform:matrix(0.313794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313794,0.000000,0.000000,0.250000,0,0);}
.m7c_c01171{transform:matrix(0.314349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314349,0.000000,0.000000,0.250000,0,0);}
.m50_c01171{transform:matrix(0.318436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318436,0.000000,0.000000,0.250000,0,0);}
.m55_c01171{transform:matrix(0.319377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319377,0.000000,0.000000,0.250000,0,0);}
.m1b_c01171{transform:matrix(0.319887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319887,0.000000,0.000000,0.250000,0,0);}
.m28_c01171{transform:matrix(0.321247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321247,0.000000,0.000000,0.250000,0,0);}
.m1a_c01171{transform:matrix(0.322249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322249,0.000000,0.000000,0.250000,0,0);}
.m8c_c01171{transform:matrix(0.326103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326103,0.000000,0.000000,0.250000,0,0);}
.m66_c01171{transform:matrix(0.329620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329620,0.000000,0.000000,0.250000,0,0);}
.m74_c01171{transform:matrix(0.330256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330256,0.000000,0.000000,0.250000,0,0);}
.m53_c01171{transform:matrix(0.330403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330403,0.000000,0.000000,0.250000,0,0);}
.m2b_c01171{transform:matrix(0.331528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331528,0.000000,0.000000,0.250000,0,0);}
.m81_c01171{transform:matrix(0.334051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334051,0.000000,0.000000,0.250000,0,0);}
.m4e_c01171{transform:matrix(0.334828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334828,0.000000,0.000000,0.250000,0,0);}
.m4d_c01171{transform:matrix(0.335295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335295,0.000000,0.000000,0.250000,0,0);}
.m11_c01171{transform:matrix(0.336209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336209,0.000000,0.000000,0.250000,0,0);}
.m68_c01171{transform:matrix(0.336345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336345,0.000000,0.000000,0.250000,0,0);}
.m34_c01171{transform:matrix(0.336634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336634,0.000000,0.000000,0.250000,0,0);}
.m84_c01171{transform:matrix(0.336900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336900,0.000000,0.000000,0.250000,0,0);}
.m76_c01171{transform:matrix(0.337051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337051,0.000000,0.000000,0.250000,0,0);}
.m40_c01171{transform:matrix(0.344527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344527,0.000000,0.000000,0.250000,0,0);}
.m4f_c01171{transform:matrix(0.347703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347703,0.000000,0.000000,0.250000,0,0);}
.m32_c01171{transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);}
.m8d_c01171{transform:matrix(0.352132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352132,0.000000,0.000000,0.250000,0,0);}
.m67_c01171{transform:matrix(0.355252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355252,0.000000,0.000000,0.250000,0,0);}
.m6b_c01171{transform:matrix(0.358928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358928,0.000000,0.000000,0.250000,0,0);}
.m31_c01171{transform:matrix(0.364148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364148,0.000000,0.000000,0.250000,0,0);}
.m43_c01171{transform:matrix(0.364930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364930,0.000000,0.000000,0.250000,0,0);}
.m12_c01171{transform:matrix(0.376879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376879,0.000000,0.000000,0.250000,0,0);}
.m8b_c01171{transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);}
.m8f_c01171{transform:matrix(0.611944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611944,0.000000,0.000000,0.250000,0,0);}
.m8e_c01171{transform:matrix(0.639553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639553,0.000000,0.000000,0.250000,0,0);}
.m90_c01171{transform:matrix(1.461568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.461568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.461568,0.000000,0.000000,0.250000,0,0);}
.v0_c01171{vertical-align:0.000000px;}
.v1_c01171{vertical-align:15.661800px;}
.ls4_c01171{letter-spacing:-3.132367px;}
.lsf_c01171{letter-spacing:-2.827440px;}
.ls7_c01171{letter-spacing:-2.647267px;}
.ls1c_c01171{letter-spacing:-2.605680px;}
.ls1f_c01171{letter-spacing:-2.571030px;}
.ls17_c01171{letter-spacing:-2.550240px;}
.ls6_c01171{letter-spacing:-0.960580px;}
.ls0_c01171{letter-spacing:0.000000px;}
.ls21_c01171{letter-spacing:0.702900px;}
.ls1b_c01171{letter-spacing:0.786616px;}
.ls2_c01171{letter-spacing:1.210179px;}
.ls1a_c01171{letter-spacing:1.300943px;}
.ls20_c01171{letter-spacing:1.817051px;}
.ls8_c01171{letter-spacing:2.206769px;}
.ls19_c01171{letter-spacing:2.821230px;}
.ls11_c01171{letter-spacing:3.048527px;}
.ls22_c01171{letter-spacing:3.078900px;}
.lsd_c01171{letter-spacing:3.306610px;}
.ls16_c01171{letter-spacing:3.366000px;}
.ls15_c01171{letter-spacing:3.425400px;}
.ls14_c01171{letter-spacing:3.465000px;}
.ls1d_c01171{letter-spacing:3.623400px;}
.ls12_c01171{letter-spacing:3.643200px;}
.ls1e_c01171{letter-spacing:3.672900px;}
.ls10_c01171{letter-spacing:3.722400px;}
.ls18_c01171{letter-spacing:3.728865px;}
.ls1_c01171{letter-spacing:3.781810px;}
.ls9_c01171{letter-spacing:3.791700px;}
.lsc_c01171{letter-spacing:3.801610px;}
.ls5_c01171{letter-spacing:4.009500px;}
.lse_c01171{letter-spacing:4.039200px;}
.lsb_c01171{letter-spacing:4.247110px;}
.ls13_c01171{letter-spacing:58.449798px;}
.ls3_c01171{letter-spacing:59.875398px;}
.lsa_c01171{letter-spacing:61.300998px;}
.sc__c01171{text-shadow:none;}
.sc0_c01171{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01171{-webkit-text-stroke:0px transparent;}
.sc0_c01171{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01171{word-spacing:0.000000px;}
._2_c01171{margin-left:-17.320314px;}
._3_c01171{margin-left:-11.722166px;}
._4_c01171{margin-left:-1.210245px;}
._1_c01171{width:21.196296px;}
._0_c01171{width:51.103008px;}
.fc0_c01171{color:transparent;}
.fs1e_c01171{font-size:14.058000px;}
.fs1_c01171{font-size:22.176000px;}
.fsb_c01171{font-size:25.344000px;}
.fs3_c01171{font-size:27.720000px;}
.fs16_c01171{font-size:30.888000px;}
.fs0_c01171{font-size:38.808000px;}
.fs17_c01171{font-size:40.986198px;}
.fs15_c01171{font-size:45.144000px;}
.fsd_c01171{font-size:48.114000px;}
.fs14_c01171{font-size:58.449798px;}
.fs4_c01171{font-size:59.875398px;}
.fs8_c01171{font-size:61.300998px;}
.fs1f_c01171{font-size:61.578000px;}
.fs10_c01171{font-size:66.132198px;}
.fs1a_c01171{font-size:67.320000px;}
.fs19_c01171{font-size:68.508000px;}
.fs18_c01171{font-size:69.300000px;}
.fse_c01171{font-size:69.498000px;}
.fs1b_c01171{font-size:72.468000px;}
.fs13_c01171{font-size:72.864000px;}
.fs1c_c01171{font-size:73.458000px;}
.fs12_c01171{font-size:74.448000px;}
.fs2_c01171{font-size:75.636198px;}
.fs7_c01171{font-size:75.834000px;}
.fsf_c01171{font-size:76.032198px;}
.fsc_c01171{font-size:77.616198px;}
.fs9_c01171{font-size:78.804000px;}
.fs1d_c01171{font-size:79.002198px;}
.fs6_c01171{font-size:80.190000px;}
.fs11_c01171{font-size:80.784000px;}
.fsa_c01171{font-size:84.942198px;}
.fs5_c01171{font-size:89.496198px;}
.y0_c01171{bottom:0.000000px;}
.y24_c01171{bottom:39.110985px;}
.y1_c01171{bottom:76.500000px;}
.y23_c01171{bottom:114.311385px;}
.y22_c01171{bottom:120.018735px;}
.y21_c01171{bottom:184.883535px;}
.y20_c01171{bottom:248.679135px;}
.y1f_c01171{bottom:281.467935px;}
.y1e_c01171{bottom:313.900335px;}
.y1d_c01171{bottom:352.747935px;}
.y1c_c01171{bottom:363.796335px;}
.y1b_c01171{bottom:376.621785px;}
.y1a_c01171{bottom:409.771935px;}
.y19_c01171{bottom:442.199385px;}
.y16_c01171{bottom:474.631785px;}
.y18_c01171{bottom:500.297535px;}
.y15_c01171{bottom:505.638585px;}
.y17_c01171{bottom:508.489785px;}
.y14_c01171{bottom:537.719535px;}
.y13_c01171{bottom:569.795535px;}
.y11_c01171{bottom:573.710985px;}
.y2_c01171{bottom:599.733135px;}
.y12_c01171{bottom:601.866585px;}
.y10_c01171{bottom:634.655385px;}
.yf_c01171{bottom:667.087785px;}
.ye_c01171{bottom:729.814185px;}
.yd_c01171{bottom:758.687535px;}
.yc_c01171{bottom:762.602985px;}
.yb_c01171{bottom:771.512985px;}
.ya_c01171{bottom:783.635535px;}
.y9_c01171{bottom:794.327535px;}
.y8_c01171{bottom:826.398585px;}
.y7_c01171{bottom:889.129935px;}
.y6_c01171{bottom:922.626585px;}
.y5_c01171{bottom:1051.643385px;}
.y4_c01171{bottom:1061.622585px;}
.y3_c01171{bottom:1081.580985px;}
.h1f_c01171{height:13.797158px;}
.h20_c01171{height:14.167828px;}
.h3_c01171{height:23.128875px;}
.hd_c01171{height:24.873750px;}
.h5_c01171{height:28.911094px;}
.h17_c01171{height:32.215219px;}
.h15_c01171{height:38.927565px;}
.h6_c01171{height:39.877015px;}
.h18_c01171{height:40.225712px;}
.h2_c01171{height:40.475531px;}
.ha_c01171{height:40.826465px;}
.h16_c01171{height:47.083781px;}
.h21_c01171{height:64.223930px;}
.h1b_c01171{height:66.070898px;}
.h11_c01171{height:68.973816px;}
.h1c_c01171{height:71.087994px;}
.h1a_c01171{height:71.451703px;}
.h1d_c01171{height:72.095010px;}
.h19_c01171{height:72.277734px;}
.h13_c01171{height:73.066641px;}
.h4_c01171{height:74.232792px;}
.h9_c01171{height:74.426924px;}
.h10_c01171{height:74.621444px;}
.h14_c01171{height:75.994875px;}
.hb_c01171{height:77.341816px;}
.h1e_c01171{height:77.536337px;}
.h8_c01171{height:78.702100px;}
.h12_c01171{height:79.245633px;}
.he_c01171{height:80.951269px;}
.hc_c01171{height:83.366122px;}
.hf_c01171{height:83.870286px;}
.h7_c01171{height:87.835624px;}
.h1_c01171{height:1110.000000px;}
.h0_c01171{height:1263.000000px;}
.w1_c01171{width:775.500000px;}
.w0_c01171{width:892.500000px;}
.x2_c01171{left:-1.592265px;}
.x0_c01171{left:0.000000px;}
.x1_c01171{left:58.500000px;}
.x5f_c01171{left:87.428535px;}
.x28_c01171{left:88.497735px;}
.x11_c01171{left:89.680785px;}
.x35_c01171{left:106.466235px;}
.x66_c01171{left:140.353935px;}
.x54_c01171{left:141.428085px;}
.x6_c01171{left:142.804185px;}
.xf_c01171{left:144.244635px;}
.x5e_c01171{left:164.579235px;}
.x36_c01171{left:166.257285px;}
.x48_c01171{left:175.286085px;}
.x29_c01171{left:176.721585px;}
.x60_c01171{left:184.859385px;}
.x4f_c01171{left:186.804735px;}
.x18_c01171{left:188.289735px;}
.x61_c01171{left:195.536535px;}
.x12_c01171{left:198.749085px;}
.x40_c01171{left:208.762935px;}
.x7_c01171{left:210.431085px;}
.x58_c01171{left:218.365935px;}
.x19_c01171{left:219.534135px;}
.x10_c01171{left:221.722035px;}
.x3_c01171{left:225.147435px;}
.x50_c01171{left:231.735885px;}
.x27_c01171{left:242.883285px;}
.x8_c01171{left:254.099985px;}
.x46_c01171{left:264.158385px;}
.x2a_c01171{left:265.975035px;}
.x37_c01171{left:267.029385px;}
.x62_c01171{left:274.657335px;}
.x41_c01171{left:287.042235px;}
.x3b_c01171{left:288.443085px;}
.x67_c01171{left:295.689885px;}
.x51_c01171{left:297.531285px;}
.x1a_c01171{left:298.649985px;}
.x9_c01171{left:307.837185px;}
.x13_c01171{left:310.351785px;}
.x42_c01171{left:318.959835px;}
.x32_c01171{left:319.989435px;}
.x3c_c01171{left:322.177335px;}
.x59_c01171{left:342.383235px;}
.x4d_c01171{left:352.426785px;}
.x2b_c01171{left:354.045435px;}
.x63_c01171{left:361.688235px;}
.x6f_c01171{left:368.420235px;}
.x64_c01171{left:376.181835px;}
.x52_c01171{left:377.463885px;}
.x1b_c01171{left:386.651085px;}
.x43_c01171{left:388.264785px;}
.xa_c01171{left:396.259035px;}
.x14_c01171{left:398.328135px;}
.x5_c01171{left:404.035485px;}
.x1c_c01171{left:408.629085px;}
.x38_c01171{left:409.787385px;}
.x65_c01171{left:413.717685px;}
.x55_c01171{left:422.508885px;}
.x68_c01171{left:430.102185px;}
.x33_c01171{left:432.364335px;}
.x6b_c01171{left:437.952885px;}
.x49_c01171{left:441.516885px;}
.x1d_c01171{left:442.635585px;}
.x44_c01171{left:453.708735px;}
.x6c_c01171{left:457.431135px;}
.x2c_c01171{left:464.509635px;}
.x56_c01171{left:476.216385px;}
.x5a_c01171{left:484.294785px;}
.xb_c01171{left:486.116385px;}
.x3d_c01171{left:487.566735px;}
.x15_c01171{left:489.284385px;}
.x4e_c01171{left:497.283585px;}
.x4a_c01171{left:508.188435px;}
.x2d_c01171{left:509.411085px;}
.xc_c01171{left:519.583335px;}
.x69_c01171{left:529.329885px;}
.x34_c01171{left:530.958435px;}
.x16_c01171{left:532.195935px;}
.x1e_c01171{left:540.650535px;}
.x22_c01171{left:542.224635px;}
.x5b_c01171{left:543.605685px;}
.x3e_c01171{left:553.772985px;}
.x57_c01171{left:561.930585px;}
.x2e_c01171{left:565.009485px;}
.x23_c01171{left:574.741185px;}
.x39_c01171{left:587.086485px;}
.x6d_c01171{left:591.051435px;}
.x6e_c01171{left:594.056085px;}
.x4b_c01171{left:606.544935px;}
.x3f_c01171{left:608.005185px;}
.x5c_c01171{left:610.237635px;}
.x2f_c01171{left:619.177335px;}
.xd_c01171{left:629.740635px;}
.x45_c01171{left:641.303835px;}
.x6a_c01171{left:651.248385px;}
.x4c_c01171{left:652.297785px;}
.x17_c01171{left:653.342235px;}
.x24_c01171{left:655.371735px;}
.x1f_c01171{left:662.895735px;}
.x5d_c01171{left:673.166985px;}
.x3a_c01171{left:674.810385px;}
.xe_c01171{left:697.129935px;}
.x25_c01171{left:698.986185px;}
.x4_c01171{left:700.050435px;}
.x21_c01171{left:708.559485px;}
.x20_c01171{left:709.579185px;}
.x47_c01171{left:711.504735px;}
.x30_c01171{left:719.365335px;}
.x53_c01171{left:721.488885px;}
.x31_c01171{left:752.475885px;}
.x26_c01171{left:772.360035px;}
@media print{
.v0_c01171{vertical-align:0.000000pt;}
.v1_c01171{vertical-align:13.921600pt;}
.ls4_c01171{letter-spacing:-2.784326pt;}
.lsf_c01171{letter-spacing:-2.513280pt;}
.ls7_c01171{letter-spacing:-2.353126pt;}
.ls1c_c01171{letter-spacing:-2.316160pt;}
.ls1f_c01171{letter-spacing:-2.285360pt;}
.ls17_c01171{letter-spacing:-2.266880pt;}
.ls6_c01171{letter-spacing:-0.853849pt;}
.ls0_c01171{letter-spacing:0.000000pt;}
.ls21_c01171{letter-spacing:0.624800pt;}
.ls1b_c01171{letter-spacing:0.699215pt;}
.ls2_c01171{letter-spacing:1.075715pt;}
.ls1a_c01171{letter-spacing:1.156393pt;}
.ls20_c01171{letter-spacing:1.615156pt;}
.ls8_c01171{letter-spacing:1.961573pt;}
.ls19_c01171{letter-spacing:2.507760pt;}
.ls11_c01171{letter-spacing:2.709802pt;}
.ls22_c01171{letter-spacing:2.736800pt;}
.lsd_c01171{letter-spacing:2.939209pt;}
.ls16_c01171{letter-spacing:2.992000pt;}
.ls15_c01171{letter-spacing:3.044800pt;}
.ls14_c01171{letter-spacing:3.080000pt;}
.ls1d_c01171{letter-spacing:3.220800pt;}
.ls12_c01171{letter-spacing:3.238400pt;}
.ls1e_c01171{letter-spacing:3.264800pt;}
.ls10_c01171{letter-spacing:3.308800pt;}
.ls18_c01171{letter-spacing:3.314546pt;}
.ls1_c01171{letter-spacing:3.361609pt;}
.ls9_c01171{letter-spacing:3.370400pt;}
.lsc_c01171{letter-spacing:3.379209pt;}
.ls5_c01171{letter-spacing:3.564000pt;}
.lse_c01171{letter-spacing:3.590400pt;}
.lsb_c01171{letter-spacing:3.775209pt;}
.ls13_c01171{letter-spacing:51.955376pt;}
.ls3_c01171{letter-spacing:53.222576pt;}
.lsa_c01171{letter-spacing:54.489776pt;}
.ws0_c01171{word-spacing:0.000000pt;}
._2_c01171{margin-left:-15.395835pt;}
._3_c01171{margin-left:-10.419704pt;}
._4_c01171{margin-left:-1.075774pt;}
._1_c01171{width:18.841152pt;}
._0_c01171{width:45.424896pt;}
.fs1e_c01171{font-size:12.496000pt;}
.fs1_c01171{font-size:19.712000pt;}
.fsb_c01171{font-size:22.528000pt;}
.fs3_c01171{font-size:24.640000pt;}
.fs16_c01171{font-size:27.456000pt;}
.fs0_c01171{font-size:34.496000pt;}
.fs17_c01171{font-size:36.432176pt;}
.fs15_c01171{font-size:40.128000pt;}
.fsd_c01171{font-size:42.768000pt;}
.fs14_c01171{font-size:51.955376pt;}
.fs4_c01171{font-size:53.222576pt;}
.fs8_c01171{font-size:54.489776pt;}
.fs1f_c01171{font-size:54.736000pt;}
.fs10_c01171{font-size:58.784176pt;}
.fs1a_c01171{font-size:59.840000pt;}
.fs19_c01171{font-size:60.896000pt;}
.fs18_c01171{font-size:61.600000pt;}
.fse_c01171{font-size:61.776000pt;}
.fs1b_c01171{font-size:64.416000pt;}
.fs13_c01171{font-size:64.768000pt;}
.fs1c_c01171{font-size:65.296000pt;}
.fs12_c01171{font-size:66.176000pt;}
.fs2_c01171{font-size:67.232176pt;}
.fs7_c01171{font-size:67.408000pt;}
.fsf_c01171{font-size:67.584176pt;}
.fsc_c01171{font-size:68.992176pt;}
.fs9_c01171{font-size:70.048000pt;}
.fs1d_c01171{font-size:70.224176pt;}
.fs6_c01171{font-size:71.280000pt;}
.fs11_c01171{font-size:71.808000pt;}
.fsa_c01171{font-size:75.504176pt;}
.fs5_c01171{font-size:79.552176pt;}
.y0_c01171{bottom:0.000000pt;}
.y24_c01171{bottom:34.765320pt;}
.y1_c01171{bottom:68.000000pt;}
.y23_c01171{bottom:101.610120pt;}
.y22_c01171{bottom:106.683320pt;}
.y21_c01171{bottom:164.340920pt;}
.y20_c01171{bottom:221.048120pt;}
.y1f_c01171{bottom:250.193720pt;}
.y1e_c01171{bottom:279.022520pt;}
.y1d_c01171{bottom:313.553720pt;}
.y1c_c01171{bottom:323.374520pt;}
.y1b_c01171{bottom:334.774920pt;}
.y1a_c01171{bottom:364.241720pt;}
.y19_c01171{bottom:393.066120pt;}
.y16_c01171{bottom:421.894920pt;}
.y18_c01171{bottom:444.708920pt;}
.y15_c01171{bottom:449.456520pt;}
.y17_c01171{bottom:451.990920pt;}
.y14_c01171{bottom:477.972920pt;}
.y13_c01171{bottom:506.484920pt;}
.y11_c01171{bottom:509.965320pt;}
.y2_c01171{bottom:533.096120pt;}
.y12_c01171{bottom:534.992520pt;}
.y10_c01171{bottom:564.138120pt;}
.yf_c01171{bottom:592.966920pt;}
.ye_c01171{bottom:648.723720pt;}
.yd_c01171{bottom:674.388920pt;}
.yc_c01171{bottom:677.869320pt;}
.yb_c01171{bottom:685.789320pt;}
.ya_c01171{bottom:696.564920pt;}
.y9_c01171{bottom:706.068920pt;}
.y8_c01171{bottom:734.576520pt;}
.y7_c01171{bottom:790.337720pt;}
.y6_c01171{bottom:820.112520pt;}
.y5_c01171{bottom:934.794120pt;}
.y4_c01171{bottom:943.664520pt;}
.y3_c01171{bottom:961.405320pt;}
.h1f_c01171{height:12.264141pt;}
.h20_c01171{height:12.593625pt;}
.h3_c01171{height:20.559000pt;}
.hd_c01171{height:22.110000pt;}
.h5_c01171{height:25.698750pt;}
.h17_c01171{height:28.635750pt;}
.h15_c01171{height:34.602280pt;}
.h6_c01171{height:35.446236pt;}
.h18_c01171{height:35.756188pt;}
.h2_c01171{height:35.978250pt;}
.ha_c01171{height:36.290191pt;}
.h16_c01171{height:41.852250pt;}
.h21_c01171{height:57.087938pt;}
.h1b_c01171{height:58.729688pt;}
.h11_c01171{height:61.310059pt;}
.h1c_c01171{height:63.189328pt;}
.h1a_c01171{height:63.512625pt;}
.h1d_c01171{height:64.084453pt;}
.h19_c01171{height:64.246875pt;}
.h13_c01171{height:64.948125pt;}
.h4_c01171{height:65.984704pt;}
.h9_c01171{height:66.157266pt;}
.h10_c01171{height:66.330173pt;}
.h14_c01171{height:67.551000pt;}
.hb_c01171{height:68.748281pt;}
.h1e_c01171{height:68.921188pt;}
.h8_c01171{height:69.957422pt;}
.h12_c01171{height:70.440562pt;}
.he_c01171{height:71.956684pt;}
.hc_c01171{height:74.103220pt;}
.hf_c01171{height:74.551366pt;}
.h7_c01171{height:78.076110pt;}
.h1_c01171{height:986.666667pt;}
.h0_c01171{height:1122.666667pt;}
.w1_c01171{width:689.333333pt;}
.w0_c01171{width:793.333333pt;}
.x2_c01171{left:-1.415347pt;}
.x0_c01171{left:0.000000pt;}
.x1_c01171{left:52.000000pt;}
.x5f_c01171{left:77.714253pt;}
.x28_c01171{left:78.664653pt;}
.x11_c01171{left:79.716253pt;}
.x35_c01171{left:94.636653pt;}
.x66_c01171{left:124.759053pt;}
.x54_c01171{left:125.713853pt;}
.x6_c01171{left:126.937053pt;}
.xf_c01171{left:128.217453pt;}
.x5e_c01171{left:146.292653pt;}
.x36_c01171{left:147.784253pt;}
.x48_c01171{left:155.809853pt;}
.x29_c01171{left:157.085853pt;}
.x60_c01171{left:164.319453pt;}
.x4f_c01171{left:166.048653pt;}
.x18_c01171{left:167.368653pt;}
.x61_c01171{left:173.810253pt;}
.x12_c01171{left:176.665853pt;}
.x40_c01171{left:185.567053pt;}
.x7_c01171{left:187.049853pt;}
.x58_c01171{left:194.103053pt;}
.x19_c01171{left:195.141453pt;}
.x10_c01171{left:197.086253pt;}
.x3_c01171{left:200.131053pt;}
.x50_c01171{left:205.987453pt;}
.x27_c01171{left:215.896253pt;}
.x8_c01171{left:225.866653pt;}
.x46_c01171{left:234.807453pt;}
.x2a_c01171{left:236.422253pt;}
.x37_c01171{left:237.359453pt;}
.x62_c01171{left:244.139853pt;}
.x41_c01171{left:255.148653pt;}
.x3b_c01171{left:256.393853pt;}
.x67_c01171{left:262.835453pt;}
.x51_c01171{left:264.472253pt;}
.x1a_c01171{left:265.466653pt;}
.x9_c01171{left:273.633053pt;}
.x13_c01171{left:275.868253pt;}
.x42_c01171{left:283.519853pt;}
.x32_c01171{left:284.435053pt;}
.x3c_c01171{left:286.379853pt;}
.x59_c01171{left:304.340653pt;}
.x4d_c01171{left:313.268253pt;}
.x2b_c01171{left:314.707053pt;}
.x63_c01171{left:321.500653pt;}
.x6f_c01171{left:327.484653pt;}
.x64_c01171{left:334.383853pt;}
.x52_c01171{left:335.523453pt;}
.x1b_c01171{left:343.689853pt;}
.x43_c01171{left:345.124253pt;}
.xa_c01171{left:352.230253pt;}
.x14_c01171{left:354.069453pt;}
.x5_c01171{left:359.142653pt;}
.x1c_c01171{left:363.225853pt;}
.x38_c01171{left:364.255453pt;}
.x65_c01171{left:367.749053pt;}
.x55_c01171{left:375.563453pt;}
.x68_c01171{left:382.313053pt;}
.x33_c01171{left:384.323853pt;}
.x6b_c01171{left:389.291453pt;}
.x49_c01171{left:392.459453pt;}
.x1d_c01171{left:393.453853pt;}
.x44_c01171{left:403.296653pt;}
.x6c_c01171{left:406.605453pt;}
.x2c_c01171{left:412.897453pt;}
.x56_c01171{left:423.303453pt;}
.x5a_c01171{left:430.484253pt;}
.xb_c01171{left:432.103453pt;}
.x3d_c01171{left:433.392653pt;}
.x15_c01171{left:434.919453pt;}
.x4e_c01171{left:442.029853pt;}
.x4a_c01171{left:451.723053pt;}
.x2d_c01171{left:452.809853pt;}
.xc_c01171{left:461.851853pt;}
.x69_c01171{left:470.515453pt;}
.x34_c01171{left:471.963053pt;}
.x16_c01171{left:473.063053pt;}
.x1e_c01171{left:480.578253pt;}
.x22_c01171{left:481.977453pt;}
.x5b_c01171{left:483.205053pt;}
.x3e_c01171{left:492.242653pt;}
.x57_c01171{left:499.493853pt;}
.x2e_c01171{left:502.230653pt;}
.x23_c01171{left:510.881053pt;}
.x39_c01171{left:521.854653pt;}
.x6d_c01171{left:525.379053pt;}
.x6e_c01171{left:528.049853pt;}
.x4b_c01171{left:539.151053pt;}
.x3f_c01171{left:540.449053pt;}
.x5c_c01171{left:542.433453pt;}
.x2f_c01171{left:550.379853pt;}
.xd_c01171{left:559.769453pt;}
.x45_c01171{left:570.047853pt;}
.x6a_c01171{left:578.887453pt;}
.x4c_c01171{left:579.820253pt;}
.x17_c01171{left:580.748653pt;}
.x24_c01171{left:582.552653pt;}
.x1f_c01171{left:589.240653pt;}
.x5d_c01171{left:598.370653pt;}
.x3a_c01171{left:599.831453pt;}
.xe_c01171{left:619.671053pt;}
.x25_c01171{left:621.321053pt;}
.x4_c01171{left:622.267053pt;}
.x21_c01171{left:629.830653pt;}
.x20_c01171{left:630.737053pt;}
.x47_c01171{left:632.448653pt;}
.x30_c01171{left:639.435853pt;}
.x53_c01171{left:641.323453pt;}
.x31_c01171{left:668.867453pt;}
.x26_c01171{left:686.542253pt;}
}





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

.ir_c01172:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01172{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01172;src:url('chunks/assets/font_774a91d4c220ab5e482276be.woff2')format("woff");}.ff1_c01172{font-family:ff1_c01172;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01172;src:url('chunks/assets/font_b1f30277c0ce55476f0faf46.woff2')format("woff");}.ff2_c01172{font-family:ff2_c01172;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01172;src:url('chunks/assets/font_8147d065f2b36a96b1368044.woff2')format("woff");}.ff3_c01172{font-family:ff3_c01172;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01172;src:url('chunks/assets/font_3437a45ba02408318dbc04c4.woff2')format("woff");}.ff4_c01172{font-family:ff4_c01172;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m98_c01172{transform:matrix(0.042398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042398,0.000000,0.000000,0.250000,0,0);}
.m95_c01172{transform:matrix(0.047863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.047863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.047863,0.000000,0.000000,0.250000,0,0);}
.m94_c01172{transform:matrix(0.051852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.051852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.051852,0.000000,0.000000,0.250000,0,0);}
.m96_c01172{transform:matrix(0.059927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.059927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.059927,0.000000,0.000000,0.250000,0,0);}
.m99_c01172{transform:matrix(0.124934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124934,0.000000,0.000000,0.250000,0,0);}
.m58_c01172{transform:matrix(0.136143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136143,0.000000,0.000000,0.250000,0,0);}
.m9a_c01172{transform:matrix(0.137501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137501,0.000000,0.000000,0.250000,0,0);}
.m97_c01172{transform:matrix(0.138888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138888,0.000000,0.000000,0.250000,0,0);}
.m88_c01172{transform:matrix(0.160326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160326,0.000000,0.000000,0.250000,0,0);}
.m2_c01172{transform:matrix(0.173085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173085,0.000000,0.000000,0.250000,0,0);}
.m16_c01172{transform:matrix(0.180232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180232,0.000000,0.000000,0.250000,0,0);}
.m83_c01172{transform:matrix(0.189049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189049,0.000000,0.000000,0.250000,0,0);}
.m52_c01172{transform:matrix(0.200100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200100,0.000000,0.000000,0.250000,0,0);}
.m56_c01172{transform:matrix(0.206671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206671,0.000000,0.000000,0.250000,0,0);}
.mb_c01172{transform:matrix(0.218198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218198,0.000000,0.000000,0.250000,0,0);}
.m3e_c01172{transform:matrix(0.226985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226985,0.000000,0.000000,0.250000,0,0);}
.m15_c01172{transform:matrix(0.227960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227960,0.000000,0.000000,0.250000,0,0);}
.m8e_c01172{transform:matrix(0.235606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235606,0.000000,0.000000,0.250000,0,0);}
.m29_c01172{transform:matrix(0.238223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238223,0.000000,0.000000,0.250000,0,0);}
.m24_c01172{transform:matrix(0.249210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249210,0.000000,0.000000,0.250000,0,0);}
.m0_c01172{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01172{transform:matrix(0.250690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250690,0.000000,0.000000,0.250000,0,0);}
.mf_c01172{transform:matrix(0.251871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251871,0.000000,0.000000,0.250000,0,0);}
.m89_c01172{transform:matrix(0.252475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252475,0.000000,0.000000,0.250000,0,0);}
.m12_c01172{transform:matrix(0.253461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253461,0.000000,0.000000,0.250000,0,0);}
.m4d_c01172{transform:matrix(0.253999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253999,0.000000,0.000000,0.250000,0,0);}
.m40_c01172{transform:matrix(0.255842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255842,0.000000,0.000000,0.250000,0,0);}
.m36_c01172{transform:matrix(0.256657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256657,0.000000,0.000000,0.250000,0,0);}
.mc_c01172{transform:matrix(0.257161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257161,0.000000,0.000000,0.250000,0,0);}
.m9e_c01172{transform:matrix(0.257524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257524,0.000000,0.000000,0.250000,0,0);}
.m81_c01172{transform:matrix(0.257994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257994,0.000000,0.000000,0.250000,0,0);}
.m26_c01172{transform:matrix(0.258604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258604,0.000000,0.000000,0.250000,0,0);}
.m1c_c01172{transform:matrix(0.259702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259702,0.000000,0.000000,0.250000,0,0);}
.m8c_c01172{transform:matrix(0.260909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260909,0.000000,0.000000,0.250000,0,0);}
.m54_c01172{transform:matrix(0.265541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265541,0.000000,0.000000,0.250000,0,0);}
.m4_c01172{transform:matrix(0.267465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267465,0.000000,0.000000,0.250000,0,0);}
.m8_c01172{transform:matrix(0.267842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267842,0.000000,0.000000,0.250000,0,0);}
.m3_c01172{transform:matrix(0.269051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269051,0.000000,0.000000,0.250000,0,0);}
.m17_c01172{transform:matrix(0.269181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269181,0.000000,0.000000,0.250000,0,0);}
.m11_c01172{transform:matrix(0.269367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269367,0.000000,0.000000,0.250000,0,0);}
.m69_c01172{transform:matrix(0.270420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270420,0.000000,0.000000,0.250000,0,0);}
.m85_c01172{transform:matrix(0.270911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270911,0.000000,0.000000,0.250000,0,0);}
.m6_c01172{transform:matrix(0.272242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272242,0.000000,0.000000,0.250000,0,0);}
.m31_c01172{transform:matrix(0.272884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272884,0.000000,0.000000,0.250000,0,0);}
.m9_c01172{transform:matrix(0.273744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273744,0.000000,0.000000,0.250000,0,0);}
.m13_c01172{transform:matrix(0.273856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273856,0.000000,0.000000,0.250000,0,0);}
.m51_c01172{transform:matrix(0.274158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274158,0.000000,0.000000,0.250000,0,0);}
.m87_c01172{transform:matrix(0.274469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274469,0.000000,0.000000,0.250000,0,0);}
.m4a_c01172{transform:matrix(0.275454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275454,0.000000,0.000000,0.250000,0,0);}
.m3c_c01172{transform:matrix(0.275711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275711,0.000000,0.000000,0.250000,0,0);}
.m28_c01172{transform:matrix(0.275950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275950,0.000000,0.000000,0.250000,0,0);}
.m47_c01172{transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277018,0.000000,0.000000,0.250000,0,0);}
.m7c_c01172{transform:matrix(0.277086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277086,0.000000,0.000000,0.250000,0,0);}
.m55_c01172{transform:matrix(0.277894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277894,0.000000,0.000000,0.250000,0,0);}
.m9d_c01172{transform:matrix(0.278869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278869,0.000000,0.000000,0.250000,0,0);}
.m1b_c01172{transform:matrix(0.278908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278908,0.000000,0.000000,0.250000,0,0);}
.m19_c01172{transform:matrix(0.279379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279379,0.000000,0.000000,0.250000,0,0);}
.ma_c01172{transform:matrix(0.279705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279705,0.000000,0.000000,0.250000,0,0);}
.m7a_c01172{transform:matrix(0.280078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280078,0.000000,0.000000,0.250000,0,0);}
.m39_c01172{transform:matrix(0.280370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280370,0.000000,0.000000,0.250000,0,0);}
.m61_c01172{transform:matrix(0.280822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280822,0.000000,0.000000,0.250000,0,0);}
.me_c01172{transform:matrix(0.282923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282923,0.000000,0.000000,0.250000,0,0);}
.m4e_c01172{transform:matrix(0.283145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283145,0.000000,0.000000,0.250000,0,0);}
.m7d_c01172{transform:matrix(0.283588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283588,0.000000,0.000000,0.250000,0,0);}
.m6c_c01172{transform:matrix(0.284065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284065,0.000000,0.000000,0.250000,0,0);}
.m8b_c01172{transform:matrix(0.284230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284230,0.000000,0.000000,0.250000,0,0);}
.m14_c01172{transform:matrix(0.284419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284419,0.000000,0.000000,0.250000,0,0);}
.m25_c01172{transform:matrix(0.284772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284772,0.000000,0.000000,0.250000,0,0);}
.m38_c01172{transform:matrix(0.285202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285202,0.000000,0.000000,0.250000,0,0);}
.m4b_c01172{transform:matrix(0.285795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285795,0.000000,0.000000,0.250000,0,0);}
.m3a_c01172{transform:matrix(0.286187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286187,0.000000,0.000000,0.250000,0,0);}
.m6d_c01172{transform:matrix(0.286570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286570,0.000000,0.000000,0.250000,0,0);}
.m33_c01172{transform:matrix(0.287300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287300,0.000000,0.000000,0.250000,0,0);}
.m10_c01172{transform:matrix(0.287383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287383,0.000000,0.000000,0.250000,0,0);}
.m1e_c01172{transform:matrix(0.287537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287537,0.000000,0.000000,0.250000,0,0);}
.m8a_c01172{transform:matrix(0.288086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288086,0.000000,0.000000,0.250000,0,0);}
.m7f_c01172{transform:matrix(0.288192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288192,0.000000,0.000000,0.250000,0,0);}
.m5f_c01172{transform:matrix(0.288473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288473,0.000000,0.000000,0.250000,0,0);}
.m5a_c01172{transform:matrix(0.288970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288970,0.000000,0.000000,0.250000,0,0);}
.m23_c01172{transform:matrix(0.289980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289980,0.000000,0.000000,0.250000,0,0);}
.m1a_c01172{transform:matrix(0.289988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289988,0.000000,0.000000,0.250000,0,0);}
.m1_c01172{transform:matrix(0.290159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290159,0.000000,0.000000,0.250000,0,0);}
.m2a_c01172{transform:matrix(0.290445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290445,0.000000,0.000000,0.250000,0,0);}
.m20_c01172{transform:matrix(0.290887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290887,0.000000,0.000000,0.250000,0,0);}
.m9c_c01172{transform:matrix(0.291054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291054,0.000000,0.000000,0.250000,0,0);}
.m59_c01172{transform:matrix(0.291346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291346,0.000000,0.000000,0.250000,0,0);}
.m9b_c01172{transform:matrix(0.291746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291746,0.000000,0.000000,0.250000,0,0);}
.m8d_c01172{transform:matrix(0.291764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291764,0.000000,0.000000,0.250000,0,0);}
.m4c_c01172{transform:matrix(0.291998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291998,0.000000,0.000000,0.250000,0,0);}
.m93_c01172{transform:matrix(0.292303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292303,0.000000,0.000000,0.250000,0,0);}
.m68_c01172{transform:matrix(0.292702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292702,0.000000,0.000000,0.250000,0,0);}
.m32_c01172{transform:matrix(0.292946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292946,0.000000,0.000000,0.250000,0,0);}
.m86_c01172{transform:matrix(0.294392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294392,0.000000,0.000000,0.250000,0,0);}
.m7_c01172{transform:matrix(0.295562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295562,0.000000,0.000000,0.250000,0,0);}
.m6b_c01172{transform:matrix(0.296055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296055,0.000000,0.000000,0.250000,0,0);}
.m42_c01172{transform:matrix(0.296970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296970,0.000000,0.000000,0.250000,0,0);}
.m80_c01172{transform:matrix(0.297952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297952,0.000000,0.000000,0.250000,0,0);}
.m50_c01172{transform:matrix(0.300330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300330,0.000000,0.000000,0.250000,0,0);}
.m46_c01172{transform:matrix(0.300886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300886,0.000000,0.000000,0.250000,0,0);}
.m48_c01172{transform:matrix(0.301281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301281,0.000000,0.000000,0.250000,0,0);}
.m70_c01172{transform:matrix(0.301296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301296,0.000000,0.000000,0.250000,0,0);}
.m2f_c01172{transform:matrix(0.301983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301983,0.000000,0.000000,0.250000,0,0);}
.m90_c01172{transform:matrix(0.303942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303942,0.000000,0.000000,0.250000,0,0);}
.m49_c01172{transform:matrix(0.304813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304813,0.000000,0.000000,0.250000,0,0);}
.m76_c01172{transform:matrix(0.305232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305232,0.000000,0.000000,0.250000,0,0);}
.m8f_c01172{transform:matrix(0.305268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305268,0.000000,0.000000,0.250000,0,0);}
.m30_c01172{transform:matrix(0.308667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308667,0.000000,0.000000,0.250000,0,0);}
.m22_c01172{transform:matrix(0.309400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309400,0.000000,0.000000,0.250000,0,0);}
.m5d_c01172{transform:matrix(0.310475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310475,0.000000,0.000000,0.250000,0,0);}
.m6f_c01172{transform:matrix(0.311175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311175,0.000000,0.000000,0.250000,0,0);}
.m4f_c01172{transform:matrix(0.312245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312245,0.000000,0.000000,0.250000,0,0);}
.m75_c01172{transform:matrix(0.312272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312272,0.000000,0.000000,0.250000,0,0);}
.m34_c01172{transform:matrix(0.312319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312319,0.000000,0.000000,0.250000,0,0);}
.m2c_c01172{transform:matrix(0.312859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312859,0.000000,0.000000,0.250000,0,0);}
.m82_c01172{transform:matrix(0.313217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313217,0.000000,0.000000,0.250000,0,0);}
.m65_c01172{transform:matrix(0.313622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313622,0.000000,0.000000,0.250000,0,0);}
.m2b_c01172{transform:matrix(0.313782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313782,0.000000,0.000000,0.250000,0,0);}
.m77_c01172{transform:matrix(0.314663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314663,0.000000,0.000000,0.250000,0,0);}
.m7e_c01172{transform:matrix(0.314899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314899,0.000000,0.000000,0.250000,0,0);}
.m44_c01172{transform:matrix(0.315612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315612,0.000000,0.000000,0.250000,0,0);}
.m72_c01172{transform:matrix(0.315902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315902,0.000000,0.000000,0.250000,0,0);}
.m43_c01172{transform:matrix(0.316161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316161,0.000000,0.000000,0.250000,0,0);}
.m9f_c01172{transform:matrix(0.316201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316201,0.000000,0.000000,0.250000,0,0);}
.m5b_c01172{transform:matrix(0.316977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316977,0.000000,0.000000,0.250000,0,0);}
.m73_c01172{transform:matrix(0.318093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318093,0.000000,0.000000,0.250000,0,0);}
.m64_c01172{transform:matrix(0.319052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319052,0.000000,0.000000,0.250000,0,0);}
.m7b_c01172{transform:matrix(0.325266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325266,0.000000,0.000000,0.250000,0,0);}
.md_c01172{transform:matrix(0.325384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325384,0.000000,0.000000,0.250000,0,0);}
.m63_c01172{transform:matrix(0.326200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326200,0.000000,0.000000,0.250000,0,0);}
.m27_c01172{transform:matrix(0.326492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326492,0.000000,0.000000,0.250000,0,0);}
.m79_c01172{transform:matrix(0.326736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326736,0.000000,0.000000,0.250000,0,0);}
.m78_c01172{transform:matrix(0.328201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328201,0.000000,0.000000,0.250000,0,0);}
.m2e_c01172{transform:matrix(0.328367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328367,0.000000,0.000000,0.250000,0,0);}
.m5_c01172{transform:matrix(0.328534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328534,0.000000,0.000000,0.250000,0,0);}
.m18_c01172{transform:matrix(0.329250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329250,0.000000,0.000000,0.250000,0,0);}
.m71_c01172{transform:matrix(0.330155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330155,0.000000,0.000000,0.250000,0,0);}
.m5c_c01172{transform:matrix(0.330960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330960,0.000000,0.000000,0.250000,0,0);}
.m37_c01172{transform:matrix(0.331941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331941,0.000000,0.000000,0.250000,0,0);}
.m2d_c01172{transform:matrix(0.334420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334420,0.000000,0.000000,0.250000,0,0);}
.m60_c01172{transform:matrix(0.334977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334977,0.000000,0.000000,0.250000,0,0);}
.m57_c01172{transform:matrix(0.336245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336245,0.000000,0.000000,0.250000,0,0);}
.m41_c01172{transform:matrix(0.336488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336488,0.000000,0.000000,0.250000,0,0);}
.m1d_c01172{transform:matrix(0.339087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339087,0.000000,0.000000,0.250000,0,0);}
.m67_c01172{transform:matrix(0.340104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340104,0.000000,0.000000,0.250000,0,0);}
.m92_c01172{transform:matrix(0.340661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340661,0.000000,0.000000,0.250000,0,0);}
.m21_c01172{transform:matrix(0.340763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340763,0.000000,0.000000,0.250000,0,0);}
.m6e_c01172{transform:matrix(0.341935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341935,0.000000,0.000000,0.250000,0,0);}
.m5e_c01172{transform:matrix(0.344193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344193,0.000000,0.000000,0.250000,0,0);}
.m74_c01172{transform:matrix(0.345630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345630,0.000000,0.000000,0.250000,0,0);}
.m6a_c01172{transform:matrix(0.350798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350798,0.000000,0.000000,0.250000,0,0);}
.m3d_c01172{transform:matrix(0.354514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354514,0.000000,0.000000,0.250000,0,0);}
.m45_c01172{transform:matrix(0.357549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357549,0.000000,0.000000,0.250000,0,0);}
.m3f_c01172{transform:matrix(0.358239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358239,0.000000,0.000000,0.250000,0,0);}
.m91_c01172{transform:matrix(0.363327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363327,0.000000,0.000000,0.250000,0,0);}
.m53_c01172{transform:matrix(0.371439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371439,0.000000,0.000000,0.250000,0,0);}
.m84_c01172{transform:matrix(0.379874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379874,0.000000,0.000000,0.250000,0,0);}
.m3b_c01172{transform:matrix(0.392293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392293,0.000000,0.000000,0.250000,0,0);}
.m66_c01172{transform:matrix(0.398520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398520,0.000000,0.000000,0.250000,0,0);}
.m62_c01172{transform:matrix(0.404747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404747,0.000000,0.000000,0.250000,0,0);}
.ma0_c01172{transform:matrix(0.406371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406371,0.000000,0.000000,0.250000,0,0);}
.m35_c01172{transform:matrix(0.423428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423428,0.000000,0.000000,0.250000,0,0);}
.v3_c01172{vertical-align:-35.640000px;}
.v2_c01172{vertical-align:-21.403800px;}
.v1_c01172{vertical-align:-4.276800px;}
.v0_c01172{vertical-align:0.000000px;}
.v4_c01172{vertical-align:45.639000px;}
.ls17_c01172{letter-spacing:-2.938327px;}
.lsa_c01172{letter-spacing:-2.716567px;}
.ls6_c01172{letter-spacing:-2.654190px;}
.ls22_c01172{letter-spacing:-2.614550px;}
.ls15_c01172{letter-spacing:-2.605680px;}
.ls16_c01172{letter-spacing:-1.898820px;}
.ls4_c01172{letter-spacing:-1.857240px;}
.ls11_c01172{letter-spacing:-0.463320px;}
.ls25_c01172{letter-spacing:-0.371587px;}
.lse_c01172{letter-spacing:-0.204752px;}
.ls2_c01172{letter-spacing:0.000000px;}
.ls10_c01172{letter-spacing:0.462587px;}
.ls18_c01172{letter-spacing:0.682506px;}
.ls1e_c01172{letter-spacing:0.686189px;}
.ls0_c01172{letter-spacing:1.001009px;}
.ls24_c01172{letter-spacing:1.562180px;}
.ls1a_c01172{letter-spacing:2.146102px;}
.ls7_c01172{letter-spacing:2.176436px;}
.ls19_c01172{letter-spacing:2.692810px;}
.lsd_c01172{letter-spacing:2.699690px;}
.ls20_c01172{letter-spacing:2.899987px;}
.ls1_c01172{letter-spacing:2.942359px;}
.lsc_c01172{letter-spacing:3.079712px;}
.ls8_c01172{letter-spacing:3.405610px;}
.ls12_c01172{letter-spacing:3.425400px;}
.ls1b_c01172{letter-spacing:3.564000px;}
.ls23_c01172{letter-spacing:3.602115px;}
.ls1d_c01172{letter-spacing:3.643200px;}
.ls13_c01172{letter-spacing:3.708283px;}
.ls3_c01172{letter-spacing:3.762000px;}
.ls5_c01172{letter-spacing:3.791700px;}
.ls9_c01172{letter-spacing:3.880810px;}
.ls14_c01172{letter-spacing:3.989700px;}
.lsf_c01172{letter-spacing:4.207747px;}
.ls21_c01172{letter-spacing:28.512198px;}
.lsb_c01172{letter-spacing:61.300998px;}
.ls1f_c01172{letter-spacing:64.152198px;}
.ls1c_c01172{letter-spacing:65.577798px;}
.sc__c01172{text-shadow:none;}
.sc0_c01172{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01172{-webkit-text-stroke:0px transparent;}
.sc0_c01172{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01172{word-spacing:-19.959509px;}
.ws1_c01172{word-spacing:-18.958500px;}
.ws2_c01172{word-spacing:0.000000px;}
._3_c01172{margin-left:-13.877622px;}
._1_c01172{margin-left:-11.147598px;}
._c_c01172{margin-left:-7.810902px;}
._4_c01172{margin-left:-3.715866px;}
._2_c01172{width:1.729015px;}
._a_c01172{width:3.033360px;}
._d_c01172{width:9.288774px;}
._5_c01172{width:10.768428px;}
._f_c01172{width:14.988006px;}
._b_c01172{width:17.248968px;}
._e_c01172{width:25.598430px;}
._6_c01172{width:30.301524px;}
._0_c01172{width:34.900910px;}
._9_c01172{width:37.083420px;}
._10_c01172{width:39.815424px;}
._7_c01172{width:250.952724px;}
._8_c01172{width:252.225754px;}
._11_c01172{width:1623.752618px;}
.fc0_c01172{color:transparent;}
.fs1_c01172{font-size:22.176000px;}
.fs6_c01172{font-size:22.572000px;}
.fs20_c01172{font-size:23.166000px;}
.fsf_c01172{font-size:25.146000px;}
.fs3_c01172{font-size:28.314000px;}
.fs21_c01172{font-size:28.512198px;}
.fs10_c01172{font-size:33.660000px;}
.fs0_c01172{font-size:34.056198px;}
.fs23_c01172{font-size:39.204000px;}
.fs5_c01172{font-size:39.600000px;}
.fs1b_c01172{font-size:42.372000px;}
.fs4_c01172{font-size:53.064000px;}
.fse_c01172{font-size:53.856198px;}
.fs17_c01172{font-size:54.252000px;}
.fsa_c01172{font-size:61.300998px;}
.fs1f_c01172{font-size:64.152198px;}
.fs1c_c01172{font-size:65.577798px;}
.fs19_c01172{font-size:66.330000px;}
.fs1d_c01172{font-size:66.528000px;}
.fs8_c01172{font-size:68.112198px;}
.fs11_c01172{font-size:68.508000px;}
.fs13_c01172{font-size:70.092198px;}
.fs1a_c01172{font-size:71.280000px;}
.fs16_c01172{font-size:72.864000px;}
.fsb_c01172{font-size:73.854000px;}
.fs15_c01172{font-size:74.448000px;}
.fs12_c01172{font-size:74.844000px;}
.fs2_c01172{font-size:75.240000px;}
.fs7_c01172{font-size:75.834000px;}
.fs9_c01172{font-size:77.616198px;}
.fs22_c01172{font-size:77.814000px;}
.fs14_c01172{font-size:79.794000px;}
.fs18_c01172{font-size:83.952198px;}
.fsd_c01172{font-size:89.100000px;}
.fs1e_c01172{font-size:90.288000px;}
.fsc_c01172{font-size:91.872198px;}
.y0_c01172{bottom:0.000000px;}
.y26_c01172{bottom:71.191935px;}
.y1_c01172{bottom:76.500000px;}
.y25_c01172{bottom:123.939135px;}
.y24_c01172{bottom:190.224585px;}
.y23_c01172{bottom:212.682735px;}
.y3_c01172{bottom:219.092985px;}
.y20_c01172{bottom:221.592735px;}
.y22_c01172{bottom:223.731135px;}
.y21_c01172{bottom:224.443935px;}
.y1f_c01172{bottom:235.843785px;}
.y1e_c01172{bottom:256.514985px;}
.y1c_c01172{bottom:319.602735px;}
.y1d_c01172{bottom:334.927935px;}
.y1b_c01172{bottom:352.035135px;}
.y2_c01172{bottom:358.093935px;}
.y1a_c01172{bottom:384.823935px;}
.y18_c01172{bottom:416.894985px;}
.y17_c01172{bottom:449.332335px;}
.y16_c01172{bottom:481.408335px;}
.y15_c01172{bottom:513.127935px;}
.y14_c01172{bottom:544.842585px;}
.y13_c01172{bottom:576.923535px;}
.y12_c01172{bottom:608.994585px;}
.y11_c01172{bottom:668.874735px;}
.y10_c01172{bottom:672.790185px;}
.yf_c01172{bottom:704.871135px;}
.ye_c01172{bottom:737.654985px;}
.yd_c01172{bottom:770.443785px;}
.yc_c01172{bottom:802.163385px;}
.yb_c01172{bottom:833.887935px;}
.ya_c01172{bottom:833.894370px;}
.y9_c01172{bottom:898.391385px;}
.y19_c01172{bottom:903.385935px;}
.y8_c01172{bottom:929.754585px;}
.y7_c01172{bottom:962.543385px;}
.y6_c01172{bottom:985.714335px;}
.y5_c01172{bottom:1059.840585px;}
.y4_c01172{bottom:1068.037785px;}
.h23_c01172{height:18.989124px;}
.h3_c01172{height:23.128875px;}
.h8_c01172{height:23.541891px;}
.h22_c01172{height:24.161414px;}
.h5_c01172{height:29.530617px;}
.h11_c01172{height:31.242750px;}
.h2_c01172{height:35.519550px;}
.h25_c01172{height:38.476582px;}
.hc_c01172{height:40.826465px;}
.h7_c01172{height:41.301563px;}
.h21_c01172{height:42.725364px;}
.h1d_c01172{height:43.674813px;}
.h1c_c01172{height:44.192672px;}
.h10_c01172{height:52.856913px;}
.h18_c01172{height:53.245371px;}
.h6_c01172{height:55.344094px;}
.h1a_c01172{height:69.180117px;}
.h1f_c01172{height:69.386625px;}
.ha_c01172{height:71.038894px;}
.h12_c01172{height:71.451703px;}
.h17_c01172{height:71.476453px;}
.h1e_c01172{height:71.512031px;}
.hd_c01172{height:72.483662px;}
.h16_c01172{height:73.066641px;}
.h14_c01172{height:73.103972px;}
.h13_c01172{height:73.455293px;}
.h4_c01172{height:73.843945px;}
.h1b_c01172{height:74.342813px;}
.h9_c01172{height:74.426924px;}
.hb_c01172{height:76.176054px;}
.h15_c01172{height:78.313447px;}
.h24_c01172{height:84.115582px;}
.hf_c01172{height:87.403271px;}
.h19_c01172{height:87.559519px;}
.h20_c01172{height:88.612734px;}
.he_c01172{height:90.167538px;}
.h1_c01172{height:1110.000000px;}
.h0_c01172{height:1263.000000px;}
.w1_c01172{width:775.500000px;}
.w0_c01172{width:892.500000px;}
.x0_c01172{left:0.000000px;}
.x2_c01172{left:26.152485px;}
.x1_c01172{left:58.500000px;}
.x44_c01172{left:85.646535px;}
.x19_c01172{left:87.788004px;}
.x73_c01172{left:91.779585px;}
.x9_c01172{left:127.988835px;}
.x5e_c01172{left:138.175935px;}
.x4a_c01172{left:139.255035px;}
.x1a_c01172{left:140.358885px;}
.xa_c01172{left:142.066635px;}
.x4b_c01172{left:161.544885px;}
.x41_c01172{left:162.599235px;}
.x52_c01172{left:172.375485px;}
.x1b_c01172{left:173.875335px;}
.x25_c01172{left:176.182035px;}
.x5f_c01172{left:184.394085px;}
.x2d_c01172{left:185.829585px;}
.x68_c01172{left:192.695235px;}
.x26_c01172{left:194.833635px;}
.x64_c01172{left:197.684835px;}
.x45_c01172{left:205.243485px;}
.x56_c01172{left:207.129435px;}
.x14_c01172{left:208.614435px;}
.x2e_c01172{left:217.296735px;}
.xb_c01172{left:219.331185px;}
.x69_c01172{left:226.206735px;}
.x4f_c01172{left:227.949135px;}
.x3b_c01172{left:229.226235px;}
.x42_c01172{left:239.794485px;}
.x1c_c01172{left:251.233935px;}
.xc_c01172{left:252.456585px;}
.x53_c01172{left:261.965535px;}
.x2f_c01172{left:263.519835px;}
.x1d_c01172{left:272.984235px;}
.x4c_c01172{left:283.557435px;}
.x27_c01172{left:284.799885px;}
.x15_c01172{left:296.199735px;}
.x6d_c01172{left:298.298535px;}
.x30_c01172{left:306.896685px;}
.x1e_c01172{left:309.025185px;}
.x31_c01172{left:318.930135px;}
.x54_c01172{left:326.404635px;}
.x4d_c01172{left:329.087535px;}
.x46_c01172{left:330.131985px;}
.x43_c01172{left:339.596385px;}
.x57_c01172{left:350.768535px;}
.x28_c01172{left:353.060385px;}
.x71_c01172{left:359.500335px;}
.x32_c01172{left:361.331835px;}
.x16_c01172{left:363.539535px;}
.x29_c01172{left:372.736635px;}
.x33_c01172{left:375.508635px;}
.x1f_c01172{left:384.547335px;}
.x65_c01172{left:395.214585px;}
.x2a_c01172{left:396.328335px;}
.x17_c01172{left:406.990635px;}
.xd_c01172{left:408.020235px;}
.x3c_c01172{left:416.930235px;}
.x34_c01172{left:418.430085px;}
.x6_c01172{left:419.578485px;}
.x7_c01172{left:428.468685px;}
.x5b_c01172{left:440.858535px;}
.x5a_c01172{left:449.303235px;}
.xe_c01172{left:450.827835px;}
.x2b_c01172{left:452.164335px;}
.x20_c01172{left:460.841685px;}
.x39_c01172{left:462.747435px;}
.x66_c01172{left:471.810885px;}
.x35_c01172{left:473.434485px;}
.x8_c01172{left:484.908585px;}
.x72_c01172{left:494.001735px;}
.x67_c01172{left:495.031335px;}
.xf_c01172{left:497.308335px;}
.x60_c01172{left:504.644235px;}
.x58_c01172{left:506.455935px;}
.x3a_c01172{left:507.980535px;}
.x5_c01172{left:510.891135px;}
.x36_c01172{left:517.093485px;}
.x3d_c01172{left:528.047835px;}
.x6e_c01172{left:532.804785px;}
.x21_c01172{left:540.452535px;}
.x4e_c01172{left:549.095235px;}
.x47_c01172{left:550.718835px;}
.x18_c01172{left:552.005835px;}
.x50_c01172{left:560.143635px;}
.x6a_c01172{left:571.706835px;}
.x61_c01172{left:574.493685px;}
.x5c_c01172{left:583.443285px;}
.x48_c01172{left:584.611485px;}
.x3e_c01172{left:591.922635px;}
.x10_c01172{left:594.447135px;}
.x3f_c01172{left:604.337235px;}
.x11_c01172{left:617.568585px;}
.x22_c01172{left:627.983385px;}
.x55_c01172{left:629.800035px;}
.x6f_c01172{left:636.527085px;}
.x2c_c01172{left:637.888335px;}
.x37_c01172{left:650.174235px;}
.x51_c01172{left:660.519735px;}
.x23_c01172{left:671.365185px;}
.x49_c01172{left:672.800685px;}
.x70_c01172{left:680.913735px;}
.x3_c01172{left:682.190835px;}
.x12_c01172{left:684.457935px;}
.x40_c01172{left:694.407435px;}
.x6b_c01172{left:696.090435px;}
.x4_c01172{left:698.624835px;}
.x24_c01172{left:706.529985px;}
.x6c_c01172{left:707.534835px;}
.x13_c01172{left:715.187535px;}
.x59_c01172{left:717.400185px;}
.x38_c01172{left:727.780335px;}
.x62_c01172{left:762.519435px;}
.x5d_c01172{left:765.751785px;}
.x63_c01172{left:773.884635px;}
@media print{
.v3_c01172{vertical-align:-31.680000pt;}
.v2_c01172{vertical-align:-19.025600pt;}
.v1_c01172{vertical-align:-3.801600pt;}
.v0_c01172{vertical-align:0.000000pt;}
.v4_c01172{vertical-align:40.568000pt;}
.ls17_c01172{letter-spacing:-2.611846pt;}
.lsa_c01172{letter-spacing:-2.414726pt;}
.ls6_c01172{letter-spacing:-2.359280pt;}
.ls22_c01172{letter-spacing:-2.324045pt;}
.ls15_c01172{letter-spacing:-2.316160pt;}
.ls16_c01172{letter-spacing:-1.687840pt;}
.ls4_c01172{letter-spacing:-1.650880pt;}
.ls11_c01172{letter-spacing:-0.411840pt;}
.ls25_c01172{letter-spacing:-0.330299pt;}
.lse_c01172{letter-spacing:-0.182002pt;}
.ls2_c01172{letter-spacing:0.000000pt;}
.ls10_c01172{letter-spacing:0.411189pt;}
.ls18_c01172{letter-spacing:0.606672pt;}
.ls1e_c01172{letter-spacing:0.609946pt;}
.ls0_c01172{letter-spacing:0.889786pt;}
.ls24_c01172{letter-spacing:1.388605pt;}
.ls1a_c01172{letter-spacing:1.907646pt;}
.ls7_c01172{letter-spacing:1.934610pt;}
.ls19_c01172{letter-spacing:2.393609pt;}
.lsd_c01172{letter-spacing:2.399725pt;}
.ls20_c01172{letter-spacing:2.577766pt;}
.ls1_c01172{letter-spacing:2.615430pt;}
.lsc_c01172{letter-spacing:2.737522pt;}
.ls8_c01172{letter-spacing:3.027209pt;}
.ls12_c01172{letter-spacing:3.044800pt;}
.ls1b_c01172{letter-spacing:3.168000pt;}
.ls23_c01172{letter-spacing:3.201880pt;}
.ls1d_c01172{letter-spacing:3.238400pt;}
.ls13_c01172{letter-spacing:3.296251pt;}
.ls3_c01172{letter-spacing:3.344000pt;}
.ls5_c01172{letter-spacing:3.370400pt;}
.ls9_c01172{letter-spacing:3.449609pt;}
.ls14_c01172{letter-spacing:3.546400pt;}
.lsf_c01172{letter-spacing:3.740219pt;}
.ls21_c01172{letter-spacing:25.344176pt;}
.lsb_c01172{letter-spacing:54.489776pt;}
.ls1f_c01172{letter-spacing:57.024176pt;}
.ls1c_c01172{letter-spacing:58.291376pt;}
.ws0_c01172{word-spacing:-17.741786pt;}
.ws1_c01172{word-spacing:-16.852000pt;}
.ws2_c01172{word-spacing:0.000000pt;}
._3_c01172{margin-left:-12.335664pt;}
._1_c01172{margin-left:-9.908976pt;}
._c_c01172{margin-left:-6.943024pt;}
._4_c01172{margin-left:-3.302992pt;}
._2_c01172{width:1.536902pt;}
._a_c01172{width:2.696320pt;}
._d_c01172{width:8.256688pt;}
._5_c01172{width:9.571936pt;}
._f_c01172{width:13.322672pt;}
._b_c01172{width:15.332416pt;}
._e_c01172{width:22.754160pt;}
._6_c01172{width:26.934688pt;}
._0_c01172{width:31.023031pt;}
._9_c01172{width:32.963040pt;}
._10_c01172{width:35.391488pt;}
._7_c01172{width:223.069088pt;}
._8_c01172{width:224.200670pt;}
._11_c01172{width:1443.335661pt;}
.fs1_c01172{font-size:19.712000pt;}
.fs6_c01172{font-size:20.064000pt;}
.fs20_c01172{font-size:20.592000pt;}
.fsf_c01172{font-size:22.352000pt;}
.fs3_c01172{font-size:25.168000pt;}
.fs21_c01172{font-size:25.344176pt;}
.fs10_c01172{font-size:29.920000pt;}
.fs0_c01172{font-size:30.272176pt;}
.fs23_c01172{font-size:34.848000pt;}
.fs5_c01172{font-size:35.200000pt;}
.fs1b_c01172{font-size:37.664000pt;}
.fs4_c01172{font-size:47.168000pt;}
.fse_c01172{font-size:47.872176pt;}
.fs17_c01172{font-size:48.224000pt;}
.fsa_c01172{font-size:54.489776pt;}
.fs1f_c01172{font-size:57.024176pt;}
.fs1c_c01172{font-size:58.291376pt;}
.fs19_c01172{font-size:58.960000pt;}
.fs1d_c01172{font-size:59.136000pt;}
.fs8_c01172{font-size:60.544176pt;}
.fs11_c01172{font-size:60.896000pt;}
.fs13_c01172{font-size:62.304176pt;}
.fs1a_c01172{font-size:63.360000pt;}
.fs16_c01172{font-size:64.768000pt;}
.fsb_c01172{font-size:65.648000pt;}
.fs15_c01172{font-size:66.176000pt;}
.fs12_c01172{font-size:66.528000pt;}
.fs2_c01172{font-size:66.880000pt;}
.fs7_c01172{font-size:67.408000pt;}
.fs9_c01172{font-size:68.992176pt;}
.fs22_c01172{font-size:69.168000pt;}
.fs14_c01172{font-size:70.928000pt;}
.fs18_c01172{font-size:74.624176pt;}
.fsd_c01172{font-size:79.200000pt;}
.fs1e_c01172{font-size:80.256000pt;}
.fsc_c01172{font-size:81.664176pt;}
.y0_c01172{bottom:0.000000pt;}
.y26_c01172{bottom:63.281720pt;}
.y1_c01172{bottom:68.000000pt;}
.y25_c01172{bottom:110.168120pt;}
.y24_c01172{bottom:169.088520pt;}
.y23_c01172{bottom:189.051320pt;}
.y3_c01172{bottom:194.749320pt;}
.y20_c01172{bottom:196.971320pt;}
.y22_c01172{bottom:198.872120pt;}
.y21_c01172{bottom:199.505720pt;}
.y1f_c01172{bottom:209.638920pt;}
.y1e_c01172{bottom:228.013320pt;}
.y1c_c01172{bottom:284.091320pt;}
.y1d_c01172{bottom:297.713720pt;}
.y1b_c01172{bottom:312.920120pt;}
.y2_c01172{bottom:318.305720pt;}
.y1a_c01172{bottom:342.065720pt;}
.y18_c01172{bottom:370.573320pt;}
.y17_c01172{bottom:399.406520pt;}
.y16_c01172{bottom:427.918520pt;}
.y15_c01172{bottom:456.113720pt;}
.y14_c01172{bottom:484.304520pt;}
.y13_c01172{bottom:512.820920pt;}
.y12_c01172{bottom:541.328520pt;}
.y11_c01172{bottom:594.555320pt;}
.y10_c01172{bottom:598.035720pt;}
.yf_c01172{bottom:626.552120pt;}
.ye_c01172{bottom:655.693320pt;}
.yd_c01172{bottom:684.838920pt;}
.yc_c01172{bottom:713.034120pt;}
.yb_c01172{bottom:741.233720pt;}
.ya_c01172{bottom:741.239440pt;}
.y9_c01172{bottom:798.570120pt;}
.y19_c01172{bottom:803.009720pt;}
.y8_c01172{bottom:826.448520pt;}
.y7_c01172{bottom:855.594120pt;}
.y6_c01172{bottom:876.190520pt;}
.y5_c01172{bottom:942.080520pt;}
.y4_c01172{bottom:949.366920pt;}
.h23_c01172{height:16.879221pt;}
.h3_c01172{height:20.559000pt;}
.h8_c01172{height:20.926125pt;}
.h22_c01172{height:21.476813pt;}
.h5_c01172{height:26.249438pt;}
.h11_c01172{height:27.771334pt;}
.h2_c01172{height:31.572934pt;}
.h25_c01172{height:34.201406pt;}
.hc_c01172{height:36.290191pt;}
.h7_c01172{height:36.712500pt;}
.h21_c01172{height:37.978101pt;}
.h1d_c01172{height:38.822056pt;}
.h1c_c01172{height:39.282375pt;}
.h10_c01172{height:46.983923pt;}
.h18_c01172{height:47.329219pt;}
.h6_c01172{height:49.194750pt;}
.h1a_c01172{height:61.493438pt;}
.h1f_c01172{height:61.677000pt;}
.ha_c01172{height:63.145684pt;}
.h12_c01172{height:63.512625pt;}
.h17_c01172{height:63.534625pt;}
.h1e_c01172{height:63.566250pt;}
.hd_c01172{height:64.429922pt;}
.h16_c01172{height:64.948125pt;}
.h14_c01172{height:64.981309pt;}
.h13_c01172{height:65.293594pt;}
.h4_c01172{height:65.639063pt;}
.h1b_c01172{height:66.082500pt;}
.h9_c01172{height:66.157266pt;}
.hb_c01172{height:67.712048pt;}
.h15_c01172{height:69.611953pt;}
.h24_c01172{height:74.769406pt;}
.hf_c01172{height:77.691797pt;}
.h19_c01172{height:77.830684pt;}
.h20_c01172{height:78.766875pt;}
.he_c01172{height:80.148923pt;}
.h1_c01172{height:986.666667pt;}
.h0_c01172{height:1122.666667pt;}
.w1_c01172{width:689.333333pt;}
.w0_c01172{width:793.333333pt;}
.x0_c01172{left:0.000000pt;}
.x2_c01172{left:23.246653pt;}
.x1_c01172{left:52.000000pt;}
.x44_c01172{left:76.130253pt;}
.x19_c01172{left:78.033781pt;}
.x73_c01172{left:81.581853pt;}
.x9_c01172{left:113.767853pt;}
.x5e_c01172{left:122.823053pt;}
.x4a_c01172{left:123.782253pt;}
.x1a_c01172{left:124.763453pt;}
.xa_c01172{left:126.281453pt;}
.x4b_c01172{left:143.595453pt;}
.x41_c01172{left:144.532653pt;}
.x52_c01172{left:153.222653pt;}
.x1b_c01172{left:154.555853pt;}
.x25_c01172{left:156.606253pt;}
.x5f_c01172{left:163.905853pt;}
.x2d_c01172{left:165.181853pt;}
.x68_c01172{left:171.284653pt;}
.x26_c01172{left:173.185453pt;}
.x64_c01172{left:175.719853pt;}
.x45_c01172{left:182.438653pt;}
.x56_c01172{left:184.115053pt;}
.x14_c01172{left:185.435053pt;}
.x2e_c01172{left:193.152653pt;}
.xb_c01172{left:194.961053pt;}
.x69_c01172{left:201.072653pt;}
.x4f_c01172{left:202.621453pt;}
.x3b_c01172{left:203.756653pt;}
.x42_c01172{left:213.150653pt;}
.x1c_c01172{left:223.319053pt;}
.xc_c01172{left:224.405853pt;}
.x53_c01172{left:232.858253pt;}
.x2f_c01172{left:234.239853pt;}
.x1d_c01172{left:242.652653pt;}
.x4c_c01172{left:252.051053pt;}
.x27_c01172{left:253.155453pt;}
.x15_c01172{left:263.288653pt;}
.x6d_c01172{left:265.154253pt;}
.x30_c01172{left:272.797053pt;}
.x1e_c01172{left:274.689053pt;}
.x31_c01172{left:283.493453pt;}
.x54_c01172{left:290.137453pt;}
.x4d_c01172{left:292.522253pt;}
.x46_c01172{left:293.450653pt;}
.x43_c01172{left:301.863453pt;}
.x57_c01172{left:311.794253pt;}
.x28_c01172{left:313.831453pt;}
.x71_c01172{left:319.555853pt;}
.x32_c01172{left:321.183853pt;}
.x16_c01172{left:323.146253pt;}
.x29_c01172{left:331.321453pt;}
.x33_c01172{left:333.785453pt;}
.x1f_c01172{left:341.819853pt;}
.x65_c01172{left:351.301853pt;}
.x2a_c01172{left:352.291853pt;}
.x17_c01172{left:361.769453pt;}
.xd_c01172{left:362.684653pt;}
.x3c_c01172{left:370.604653pt;}
.x34_c01172{left:371.937853pt;}
.x6_c01172{left:372.958653pt;}
.x7_c01172{left:380.861053pt;}
.x5b_c01172{left:391.874253pt;}
.x5a_c01172{left:399.380653pt;}
.xe_c01172{left:400.735853pt;}
.x2b_c01172{left:401.923853pt;}
.x20_c01172{left:409.637053pt;}
.x39_c01172{left:411.331053pt;}
.x66_c01172{left:419.387453pt;}
.x35_c01172{left:420.830653pt;}
.x8_c01172{left:431.029853pt;}
.x72_c01172{left:439.112653pt;}
.x67_c01172{left:440.027853pt;}
.xf_c01172{left:442.051853pt;}
.x60_c01172{left:448.572653pt;}
.x58_c01172{left:450.183053pt;}
.x3a_c01172{left:451.538253pt;}
.x5_c01172{left:454.125453pt;}
.x36_c01172{left:459.638653pt;}
.x3d_c01172{left:469.375853pt;}
.x6e_c01172{left:473.604253pt;}
.x21_c01172{left:480.402253pt;}
.x4e_c01172{left:488.084653pt;}
.x47_c01172{left:489.527853pt;}
.x18_c01172{left:490.671853pt;}
.x50_c01172{left:497.905453pt;}
.x6a_c01172{left:508.183853pt;}
.x61_c01172{left:510.661053pt;}
.x5c_c01172{left:518.616253pt;}
.x48_c01172{left:519.654653pt;}
.x3e_c01172{left:526.153453pt;}
.x10_c01172{left:528.397453pt;}
.x3f_c01172{left:537.188653pt;}
.x11_c01172{left:548.949853pt;}
.x22_c01172{left:558.207453pt;}
.x55_c01172{left:559.822253pt;}
.x6f_c01172{left:565.801853pt;}
.x2c_c01172{left:567.011853pt;}
.x37_c01172{left:577.932653pt;}
.x51_c01172{left:587.128653pt;}
.x23_c01172{left:596.769053pt;}
.x49_c01172{left:598.045053pt;}
.x70_c01172{left:605.256653pt;}
.x3_c01172{left:606.391853pt;}
.x12_c01172{left:608.407053pt;}
.x40_c01172{left:617.251053pt;}
.x6b_c01172{left:618.747053pt;}
.x4_c01172{left:620.999853pt;}
.x24_c01172{left:628.026653pt;}
.x6c_c01172{left:628.919853pt;}
.x13_c01172{left:635.722253pt;}
.x59_c01172{left:637.689053pt;}
.x38_c01172{left:646.915853pt;}
.x62_c01172{left:677.795053pt;}
.x5d_c01172{left:680.668253pt;}
.x63_c01172{left:687.897453pt;}
}





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

.ir_c01173:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01173{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01173;src:url('chunks/assets/font_32ce522891c08e4607ca400e.woff2')format("woff");}.ff1_c01173{font-family:ff1_c01173;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01173;src:url('chunks/assets/font_d865a39e8ca82448133fc079.woff2')format("woff");}.ff2_c01173{font-family:ff2_c01173;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01173;src:url('chunks/assets/font_f09c6f77a48f9d5731a23ac8.woff2')format("woff");}.ff3_c01173{font-family:ff3_c01173;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01173;src:url('chunks/assets/font_7f15953fa8010f18c45c7ddc.woff2')format("woff");}.ff4_c01173{font-family:ff4_c01173;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01173;src:url('chunks/assets/font_c50192f8949a9a6979142885.woff2')format("woff");}.ff5_c01173{font-family:ff5_c01173;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01173;src:url('chunks/assets/font_4feec2199ef972443e5deaf7.woff2')format("woff");}.ff6_c01173{font-family:ff6_c01173;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4c_c01173{transform:matrix(0.134884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134884,0.000000,0.000000,0.250000,0,0);}
.m33_c01173{transform:matrix(0.156504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156504,0.000000,0.000000,0.250000,0,0);}
.m1a_c01173{transform:matrix(0.160511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160511,0.000000,0.000000,0.250000,0,0);}
.m5e_c01173{transform:matrix(0.182823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182823,0.000000,0.000000,0.250000,0,0);}
.m34_c01173{transform:matrix(0.183943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183943,0.000000,0.000000,0.250000,0,0);}
.m20_c01173{transform:matrix(0.224789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224789,0.000000,0.000000,0.250000,0,0);}
.m35_c01173{transform:matrix(0.229245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229245,0.000000,0.000000,0.250000,0,0);}
.m78_c01173{transform:matrix(0.235544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235544,0.000000,0.000000,0.250000,0,0);}
.m16_c01173{transform:matrix(0.237579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237579,0.000000,0.000000,0.250000,0,0);}
.m24_c01173{transform:matrix(0.240917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240917,0.000000,0.000000,0.250000,0,0);}
.m30_c01173{transform:matrix(0.248723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248723,0.000000,0.000000,0.250000,0,0);}
.m0_c01173{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01173{transform:matrix(0.250054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250054,0.000000,0.000000,0.250000,0,0);}
.m17_c01173{transform:matrix(0.251101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251101,0.000000,0.000000,0.250000,0,0);}
.m2b_c01173{transform:matrix(0.252030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252030,0.000000,0.000000,0.250000,0,0);}
.m71_c01173{transform:matrix(0.252185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252185,0.000000,0.000000,0.250000,0,0);}
.m4f_c01173{transform:matrix(0.252568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252568,0.000000,0.000000,0.250000,0,0);}
.m39_c01173{transform:matrix(0.253487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253487,0.000000,0.000000,0.250000,0,0);}
.m74_c01173{transform:matrix(0.253531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253531,0.000000,0.000000,0.250000,0,0);}
.m5_c01173{transform:matrix(0.257384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257384,0.000000,0.000000,0.250000,0,0);}
.m3e_c01173{transform:matrix(0.257879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257879,0.000000,0.000000,0.250000,0,0);}
.m60_c01173{transform:matrix(0.259372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259372,0.000000,0.000000,0.250000,0,0);}
.m1d_c01173{transform:matrix(0.260097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260097,0.000000,0.000000,0.250000,0,0);}
.m7f_c01173{transform:matrix(0.261294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261294,0.000000,0.000000,0.250000,0,0);}
.m80_c01173{transform:matrix(0.261469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261469,0.000000,0.000000,0.250000,0,0);}
.m1e_c01173{transform:matrix(0.261981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261981,0.000000,0.000000,0.250000,0,0);}
.m14_c01173{transform:matrix(0.262137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262137,0.000000,0.000000,0.250000,0,0);}
.mf_c01173{transform:matrix(0.262600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262600,0.000000,0.000000,0.250000,0,0);}
.m44_c01173{transform:matrix(0.262767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262767,0.000000,0.000000,0.250000,0,0);}
.m72_c01173{transform:matrix(0.264875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264875,0.000000,0.000000,0.250000,0,0);}
.m81_c01173{transform:matrix(0.265519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265519,0.000000,0.000000,0.250000,0,0);}
.m22_c01173{transform:matrix(0.265735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265735,0.000000,0.000000,0.250000,0,0);}
.m63_c01173{transform:matrix(0.265962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265962,0.000000,0.000000,0.250000,0,0);}
.m86_c01173{transform:matrix(0.266361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266361,0.000000,0.000000,0.250000,0,0);}
.m2_c01173{transform:matrix(0.266759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266759,0.000000,0.000000,0.250000,0,0);}
.m6b_c01173{transform:matrix(0.269512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269512,0.000000,0.000000,0.250000,0,0);}
.m1b_c01173{transform:matrix(0.269740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269740,0.000000,0.000000,0.250000,0,0);}
.m15_c01173{transform:matrix(0.269779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269779,0.000000,0.000000,0.250000,0,0);}
.m13_c01173{transform:matrix(0.269815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269815,0.000000,0.000000,0.250000,0,0);}
.m28_c01173{transform:matrix(0.271160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271160,0.000000,0.000000,0.250000,0,0);}
.m12_c01173{transform:matrix(0.271898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271898,0.000000,0.000000,0.250000,0,0);}
.m6c_c01173{transform:matrix(0.272948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272948,0.000000,0.000000,0.250000,0,0);}
.m55_c01173{transform:matrix(0.272995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272995,0.000000,0.000000,0.250000,0,0);}
.m31_c01173{transform:matrix(0.273179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273179,0.000000,0.000000,0.250000,0,0);}
.m67_c01173{transform:matrix(0.273799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273799,0.000000,0.000000,0.250000,0,0);}
.m66_c01173{transform:matrix(0.274102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274102,0.000000,0.000000,0.250000,0,0);}
.m1c_c01173{transform:matrix(0.274839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274839,0.000000,0.000000,0.250000,0,0);}
.m7a_c01173{transform:matrix(0.275700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275700,0.000000,0.000000,0.250000,0,0);}
.m5c_c01173{transform:matrix(0.276153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276153,0.000000,0.000000,0.250000,0,0);}
.m85_c01173{transform:matrix(0.276191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276191,0.000000,0.000000,0.250000,0,0);}
.m2c_c01173{transform:matrix(0.276552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276552,0.000000,0.000000,0.250000,0,0);}
.m2d_c01173{transform:matrix(0.277569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277569,0.000000,0.000000,0.250000,0,0);}
.m27_c01173{transform:matrix(0.278657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278657,0.000000,0.000000,0.250000,0,0);}
.m32_c01173{transform:matrix(0.280238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280238,0.000000,0.000000,0.250000,0,0);}
.m70_c01173{transform:matrix(0.280366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280366,0.000000,0.000000,0.250000,0,0);}
.m10_c01173{transform:matrix(0.281906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281906,0.000000,0.000000,0.250000,0,0);}
.m45_c01173{transform:matrix(0.282665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282665,0.000000,0.000000,0.250000,0,0);}
.m4d_c01173{transform:matrix(0.282879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282879,0.000000,0.000000,0.250000,0,0);}
.m3c_c01173{transform:matrix(0.284258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284258,0.000000,0.000000,0.250000,0,0);}
.m36_c01173{transform:matrix(0.284341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284341,0.000000,0.000000,0.250000,0,0);}
.m6a_c01173{transform:matrix(0.284426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284426,0.000000,0.000000,0.250000,0,0);}
.m76_c01173{transform:matrix(0.284932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284932,0.000000,0.000000,0.250000,0,0);}
.m26_c01173{transform:matrix(0.285749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285749,0.000000,0.000000,0.250000,0,0);}
.m4a_c01173{transform:matrix(0.285840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285840,0.000000,0.000000,0.250000,0,0);}
.m53_c01173{transform:matrix(0.286279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286279,0.000000,0.000000,0.250000,0,0);}
.m5f_c01173{transform:matrix(0.286295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286295,0.000000,0.000000,0.250000,0,0);}
.mc_c01173{transform:matrix(0.286343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286343,0.000000,0.000000,0.250000,0,0);}
.m82_c01173{transform:matrix(0.287861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287861,0.000000,0.000000,0.250000,0,0);}
.m3_c01173{transform:matrix(0.289434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289434,0.000000,0.000000,0.250000,0,0);}
.m6d_c01173{transform:matrix(0.289927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289927,0.000000,0.000000,0.250000,0,0);}
.mb_c01173{transform:matrix(0.290236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290236,0.000000,0.000000,0.250000,0,0);}
.me_c01173{transform:matrix(0.290340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290340,0.000000,0.000000,0.250000,0,0);}
.m49_c01173{transform:matrix(0.290438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290438,0.000000,0.000000,0.250000,0,0);}
.m3f_c01173{transform:matrix(0.291259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291259,0.000000,0.000000,0.250000,0,0);}
.m21_c01173{transform:matrix(0.291335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291335,0.000000,0.000000,0.250000,0,0);}
.m4_c01173{transform:matrix(0.291364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291364,0.000000,0.000000,0.250000,0,0);}
.m25_c01173{transform:matrix(0.293521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293521,0.000000,0.000000,0.250000,0,0);}
.m7c_c01173{transform:matrix(0.293585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293585,0.000000,0.000000,0.250000,0,0);}
.m62_c01173{transform:matrix(0.294291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294291,0.000000,0.000000,0.250000,0,0);}
.m2e_c01173{transform:matrix(0.295411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295411,0.000000,0.000000,0.250000,0,0);}
.m23_c01173{transform:matrix(0.296540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296540,0.000000,0.000000,0.250000,0,0);}
.m8_c01173{transform:matrix(0.297485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297485,0.000000,0.000000,0.250000,0,0);}
.m43_c01173{transform:matrix(0.297834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297834,0.000000,0.000000,0.250000,0,0);}
.m5d_c01173{transform:matrix(0.297989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297989,0.000000,0.000000,0.250000,0,0);}
.m69_c01173{transform:matrix(0.298906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298906,0.000000,0.000000,0.250000,0,0);}
.m1_c01173{transform:matrix(0.299565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299565,0.000000,0.000000,0.250000,0,0);}
.m7_c01173{transform:matrix(0.299820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299820,0.000000,0.000000,0.250000,0,0);}
.m77_c01173{transform:matrix(0.299896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299896,0.000000,0.000000,0.250000,0,0);}
.m7d_c01173{transform:matrix(0.300662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300662,0.000000,0.000000,0.250000,0,0);}
.m83_c01173{transform:matrix(0.301518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301518,0.000000,0.000000,0.250000,0,0);}
.m75_c01173{transform:matrix(0.301634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301634,0.000000,0.000000,0.250000,0,0);}
.m2a_c01173{transform:matrix(0.303073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303073,0.000000,0.000000,0.250000,0,0);}
.m42_c01173{transform:matrix(0.303736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303736,0.000000,0.000000,0.250000,0,0);}
.m68_c01173{transform:matrix(0.304695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304695,0.000000,0.000000,0.250000,0,0);}
.m5b_c01173{transform:matrix(0.306372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306372,0.000000,0.000000,0.250000,0,0);}
.m59_c01173{transform:matrix(0.307028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307028,0.000000,0.000000,0.250000,0,0);}
.m58_c01173{transform:matrix(0.307712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307712,0.000000,0.000000,0.250000,0,0);}
.m11_c01173{transform:matrix(0.308436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308436,0.000000,0.000000,0.250000,0,0);}
.m7e_c01173{transform:matrix(0.312484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312484,0.000000,0.000000,0.250000,0,0);}
.m40_c01173{transform:matrix(0.313376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313376,0.000000,0.000000,0.250000,0,0);}
.m48_c01173{transform:matrix(0.313552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313552,0.000000,0.000000,0.250000,0,0);}
.m61_c01173{transform:matrix(0.313611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313611,0.000000,0.000000,0.250000,0,0);}
.m3a_c01173{transform:matrix(0.313729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313729,0.000000,0.000000,0.250000,0,0);}
.m9_c01173{transform:matrix(0.313851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313851,0.000000,0.000000,0.250000,0,0);}
.md_c01173{transform:matrix(0.313899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313899,0.000000,0.000000,0.250000,0,0);}
.m56_c01173{transform:matrix(0.314585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314585,0.000000,0.000000,0.250000,0,0);}
.m4e_c01173{transform:matrix(0.314933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314933,0.000000,0.000000,0.250000,0,0);}
.m54_c01173{transform:matrix(0.315071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315071,0.000000,0.000000,0.250000,0,0);}
.m79_c01173{transform:matrix(0.315326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315326,0.000000,0.000000,0.250000,0,0);}
.m46_c01173{transform:matrix(0.315976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315976,0.000000,0.000000,0.250000,0,0);}
.m57_c01173{transform:matrix(0.316351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316351,0.000000,0.000000,0.250000,0,0);}
.m3b_c01173{transform:matrix(0.317126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317126,0.000000,0.000000,0.250000,0,0);}
.m29_c01173{transform:matrix(0.321788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321788,0.000000,0.000000,0.250000,0,0);}
.m6f_c01173{transform:matrix(0.322806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322806,0.000000,0.000000,0.250000,0,0);}
.m65_c01173{transform:matrix(0.324283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324283,0.000000,0.000000,0.250000,0,0);}
.m50_c01173{transform:matrix(0.325388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325388,0.000000,0.000000,0.250000,0,0);}
.m4b_c01173{transform:matrix(0.325521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325521,0.000000,0.000000,0.250000,0,0);}
.m6e_c01173{transform:matrix(0.327989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327989,0.000000,0.000000,0.250000,0,0);}
.m2f_c01173{transform:matrix(0.329985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329985,0.000000,0.000000,0.250000,0,0);}
.m52_c01173{transform:matrix(0.331053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331053,0.000000,0.000000,0.250000,0,0);}
.m37_c01173{transform:matrix(0.333153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333153,0.000000,0.000000,0.250000,0,0);}
.m38_c01173{transform:matrix(0.333227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333227,0.000000,0.000000,0.250000,0,0);}
.m51_c01173{transform:matrix(0.333639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333639,0.000000,0.000000,0.250000,0,0);}
.m73_c01173{transform:matrix(0.340972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340972,0.000000,0.000000,0.250000,0,0);}
.m47_c01173{transform:matrix(0.341707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341707,0.000000,0.000000,0.250000,0,0);}
.m18_c01173{transform:matrix(0.341875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341875,0.000000,0.000000,0.250000,0,0);}
.m5a_c01173{transform:matrix(0.343381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343381,0.000000,0.000000,0.250000,0,0);}
.m64_c01173{transform:matrix(0.355239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355239,0.000000,0.000000,0.250000,0,0);}
.m3d_c01173{transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);}
.m41_c01173{transform:matrix(0.371840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371840,0.000000,0.000000,0.250000,0,0);}
.m6_c01173{transform:matrix(0.377508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377508,0.000000,0.000000,0.250000,0,0);}
.ma_c01173{transform:matrix(0.383500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383500,0.000000,0.000000,0.250000,0,0);}
.m19_c01173{transform:matrix(0.388359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388359,0.000000,0.000000,0.250000,0,0);}
.m7b_c01173{transform:matrix(0.390889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390889,0.000000,0.000000,0.250000,0,0);}
.m84_c01173{transform:matrix(0.430236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430236,0.000000,0.000000,0.250000,0,0);}
.v0_c01173{vertical-align:0.000000px;}
.v1_c01173{vertical-align:51.321600px;}
.ls7_c01173{letter-spacing:-2.758140px;}
.lse_c01173{letter-spacing:-2.222273px;}
.ls2_c01173{letter-spacing:-0.604771px;}
.ls17_c01173{letter-spacing:-0.543748px;}
.ls5_c01173{letter-spacing:0.000000px;}
.ls1_c01173{letter-spacing:0.063043px;}
.ls3_c01173{letter-spacing:0.504346px;}
.ls14_c01173{letter-spacing:0.764399px;}
.ls11_c01173{letter-spacing:0.977170px;}
.ls15_c01173{letter-spacing:1.339668px;}
.ls1b_c01173{letter-spacing:1.536678px;}
.lsd_c01173{letter-spacing:1.639123px;}
.ls6_c01173{letter-spacing:2.253794px;}
.ls0_c01173{letter-spacing:2.308957px;}
.lsc_c01173{letter-spacing:2.963030px;}
.ls18_c01173{letter-spacing:3.227400px;}
.ls13_c01173{letter-spacing:3.247200px;}
.ls10_c01173{letter-spacing:3.524400px;}
.ls1a_c01173{letter-spacing:3.534310px;}
.lsb_c01173{letter-spacing:3.643200px;}
.lsa_c01173{letter-spacing:3.680147px;}
.ls19_c01173{letter-spacing:3.722400px;}
.ls4_c01173{letter-spacing:3.940200px;}
.ls9_c01173{letter-spacing:4.019400px;}
.lsf_c01173{letter-spacing:58.449798px;}
.ls16_c01173{letter-spacing:59.875398px;}
.ls12_c01173{letter-spacing:61.300998px;}
.ls8_c01173{letter-spacing:62.726400px;}
.sc__c01173{text-shadow:none;}
.sc0_c01173{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01173{-webkit-text-stroke:0px transparent;}
.sc0_c01173{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01173{word-spacing:0.000000px;}
._1_c01173{margin-left:-11.426580px;}
._4_c01173{margin-left:-6.383124px;}
._0_c01173{width:3.853080px;}
._2_c01173{width:17.922881px;}
._3_c01173{width:25.379719px;}
.fc0_c01173{color:transparent;}
.fse_c01173{font-size:27.720000px;}
.fs6_c01173{font-size:58.449798px;}
.fsb_c01173{font-size:59.875398px;}
.fs8_c01173{font-size:61.300998px;}
.fs3_c01173{font-size:62.726400px;}
.fs5_c01173{font-size:64.548000px;}
.fs9_c01173{font-size:64.944000px;}
.fs7_c01173{font-size:70.488000px;}
.fsd_c01173{font-size:70.686198px;}
.fs0_c01173{font-size:72.864000px;}
.fsc_c01173{font-size:74.448000px;}
.fsa_c01173{font-size:76.032198px;}
.fs1_c01173{font-size:78.804000px;}
.fs4_c01173{font-size:80.388000px;}
.fs2_c01173{font-size:89.496198px;}
.y0_c01173{bottom:0.000000px;}
.y1_c01173{bottom:69.000000px;}
.y17_c01173{bottom:165.118935px;}
.y16_c01173{bottom:211.094535px;}
.y15_c01173{bottom:232.122135px;}
.y14_c01173{bottom:264.198135px;}
.y13_c01173{bottom:296.630535px;}
.y12_c01173{bottom:328.706535px;}
.y11_c01173{bottom:360.426135px;}
.y10_c01173{bottom:417.806535px;}
.yf_c01173{bottom:424.578135px;}
.ye_c01173{bottom:456.297735px;}
.yd_c01173{bottom:488.012385px;}
.yc_c01173{bottom:520.801185px;}
.yb_c01173{bottom:552.525735px;}
.ya_c01173{bottom:617.029185px;}
.y9_c01173{bottom:649.466535px;}
.y8_c01173{bottom:712.544385px;}
.y7_c01173{bottom:744.620385px;}
.y6_c01173{bottom:808.772385px;}
.y5_c01173{bottom:872.216535px;}
.y4_c01173{bottom:903.931185px;}
.y3_c01173{bottom:936.719985px;}
.y2_c01173{bottom:1075.359585px;}
.h10_c01173{height:28.911094px;}
.h8_c01173{height:38.927565px;}
.hd_c01173{height:39.877015px;}
.ha_c01173{height:40.826465px;}
.h5_c01173{height:41.775782px;}
.hb_c01173{height:63.738984px;}
.h7_c01173{height:67.321547px;}
.h9_c01173{height:69.180117px;}
.hf_c01173{height:69.340123px;}
.h2_c01173{height:71.512031px;}
.he_c01173{height:75.029625px;}
.h3_c01173{height:77.341816px;}
.h6_c01173{height:78.896426px;}
.hc_c01173{height:79.299207px;}
.h4_c01173{height:139.157224px;}
.h1_c01173{height:1125.000000px;}
.h0_c01173{height:1263.000000px;}
.w1_c01173{width:799.500000px;}
.w0_c01173{width:892.500000px;}
.x0_c01173{left:0.000000px;}
.x1_c01173{left:46.500000px;}
.x49_c01173{left:95.829885px;}
.x13_c01173{left:96.899085px;}
.x23_c01173{left:149.641335px;}
.x14_c01173{left:150.750135px;}
.x3_c01173{left:152.111385px;}
.x15_c01173{left:183.801285px;}
.x4_c01173{left:185.756535px;}
.x58_c01173{left:194.953635px;}
.x5a_c01173{left:205.566435px;}
.x16_c01173{left:206.635635px;}
.x50_c01173{left:216.614835px;}
.x2d_c01173{left:218.263185px;}
.x30_c01173{left:227.757285px;}
.x17_c01173{left:240.211485px;}
.x41_c01173{left:251.111385px;}
.x5_c01173{left:262.738935px;}
.x24_c01173{left:264.580335px;}
.x36_c01173{left:272.965635px;}
.x3b_c01173{left:274.856535px;}
.x26_c01173{left:282.979485px;}
.xc_c01173{left:284.424885px;}
.x2e_c01173{left:293.324985px;}
.x1d_c01173{left:295.884135px;}
.x47_c01173{left:305.789085px;}
.xd_c01173{left:308.417535px;}
.x18_c01173{left:317.154285px;}
.x31_c01173{left:327.890835px;}
.x3c_c01173{left:329.029335px;}
.x6_c01173{left:330.177735px;}
.x42_c01173{left:340.513335px;}
.x27_c01173{left:341.627085px;}
.x19_c01173{left:352.685385px;}
.x28_c01173{left:360.328185px;}
.x51_c01173{left:362.308185px;}
.x1a_c01173{left:371.035035px;}
.x3d_c01173{left:374.341635px;}
.x4a_c01173{left:383.474385px;}
.x12_c01173{left:396.319635px;}
.x1e_c01173{left:398.834235px;}
.x25_c01173{left:407.313585px;}
.x29_c01173{left:418.485735px;}
.x4d_c01173{left:428.573835px;}
.xe_c01173{left:430.024185px;}
.x48_c01173{left:441.023085px;}
.x43_c01173{left:450.175635px;}
.x1b_c01173{left:452.007135px;}
.x2a_c01173{left:461.530935px;}
.x7_c01173{left:462.783285px;}
.x2f_c01173{left:473.445585px;}
.x4e_c01173{left:482.509035px;}
.x37_c01173{left:485.206785px;}
.xf_c01173{left:496.180935px;}
.x5b_c01173{left:505.580985px;}
.x1f_c01173{left:507.001635px;}
.x55_c01173{left:515.669085px;}
.x4b_c01173{left:516.787785px;}
.x1c_c01173{left:518.252985px;}
.x59_c01173{left:524.915685px;}
.x44_c01173{left:528.727185px;}
.x3e_c01173{left:530.365635px;}
.x56_c01173{left:539.750835px;}
.x8_c01173{left:540.864585px;}
.x3f_c01173{left:563.228685px;}
.x2b_c01173{left:572.014935px;}
.x9_c01173{left:573.589035px;}
.x10_c01173{left:585.058185px;}
.x38_c01173{left:593.780085px;}
.x57_c01173{left:604.452285px;}
.xa_c01173{left:606.575835px;}
.x20_c01173{left:616.545135px;}
.x32_c01173{left:617.782635px;}
.x52_c01173{left:627.633135px;}
.x39_c01173{left:628.791435px;}
.x21_c01173{left:638.463735px;}
.x4c_c01173{left:639.527985px;}
.x45_c01173{left:649.695285px;}
.x33_c01173{left:661.659435px;}
.x53_c01173{left:672.346485px;}
.x4f_c01173{left:682.701885px;}
.x2c_c01173{left:683.721585px;}
.x40_c01173{left:693.725535px;}
.x34_c01173{left:695.467935px;}
.x2_c01173{left:703.006785px;}
.x54_c01173{left:704.768985px;}
.x11_c01173{left:706.461885px;}
.xb_c01173{left:712.971135px;}
.x35_c01173{left:726.341085px;}
.x46_c01173{left:727.578585px;}
.x3a_c01173{left:728.608185px;}
.x22_c01173{left:747.715185px;}
@media print{
.v0_c01173{vertical-align:0.000000pt;}
.v1_c01173{vertical-align:45.619200pt;}
.ls7_c01173{letter-spacing:-2.451680pt;}
.lse_c01173{letter-spacing:-1.975354pt;}
.ls2_c01173{letter-spacing:-0.537574pt;}
.ls17_c01173{letter-spacing:-0.483331pt;}
.ls5_c01173{letter-spacing:0.000000pt;}
.ls1_c01173{letter-spacing:0.056038pt;}
.ls3_c01173{letter-spacing:0.448307pt;}
.ls14_c01173{letter-spacing:0.679466pt;}
.ls11_c01173{letter-spacing:0.868595pt;}
.ls15_c01173{letter-spacing:1.190816pt;}
.ls1b_c01173{letter-spacing:1.365936pt;}
.lsd_c01173{letter-spacing:1.456998pt;}
.ls6_c01173{letter-spacing:2.003373pt;}
.ls0_c01173{letter-spacing:2.052406pt;}
.lsc_c01173{letter-spacing:2.633805pt;}
.ls18_c01173{letter-spacing:2.868800pt;}
.ls13_c01173{letter-spacing:2.886400pt;}
.ls10_c01173{letter-spacing:3.132800pt;}
.ls1a_c01173{letter-spacing:3.141609pt;}
.lsb_c01173{letter-spacing:3.238400pt;}
.lsa_c01173{letter-spacing:3.271242pt;}
.ls19_c01173{letter-spacing:3.308800pt;}
.ls4_c01173{letter-spacing:3.502400pt;}
.ls9_c01173{letter-spacing:3.572800pt;}
.lsf_c01173{letter-spacing:51.955376pt;}
.ls16_c01173{letter-spacing:53.222576pt;}
.ls12_c01173{letter-spacing:54.489776pt;}
.ls8_c01173{letter-spacing:55.756800pt;}
.ws0_c01173{word-spacing:0.000000pt;}
._1_c01173{margin-left:-10.156960pt;}
._4_c01173{margin-left:-5.673888pt;}
._0_c01173{width:3.424960pt;}
._2_c01173{width:15.931450pt;}
._3_c01173{width:22.559750pt;}
.fse_c01173{font-size:24.640000pt;}
.fs6_c01173{font-size:51.955376pt;}
.fsb_c01173{font-size:53.222576pt;}
.fs8_c01173{font-size:54.489776pt;}
.fs3_c01173{font-size:55.756800pt;}
.fs5_c01173{font-size:57.376000pt;}
.fs9_c01173{font-size:57.728000pt;}
.fs7_c01173{font-size:62.656000pt;}
.fsd_c01173{font-size:62.832176pt;}
.fs0_c01173{font-size:64.768000pt;}
.fsc_c01173{font-size:66.176000pt;}
.fsa_c01173{font-size:67.584176pt;}
.fs1_c01173{font-size:70.048000pt;}
.fs4_c01173{font-size:71.456000pt;}
.fs2_c01173{font-size:79.552176pt;}
.y0_c01173{bottom:0.000000pt;}
.y1_c01173{bottom:61.333333pt;}
.y17_c01173{bottom:146.772387pt;}
.y16_c01173{bottom:187.639587pt;}
.y15_c01173{bottom:206.330787pt;}
.y14_c01173{bottom:234.842787pt;}
.y13_c01173{bottom:263.671587pt;}
.y12_c01173{bottom:292.183587pt;}
.y11_c01173{bottom:320.378787pt;}
.y10_c01173{bottom:371.383587pt;}
.yf_c01173{bottom:377.402787pt;}
.ye_c01173{bottom:405.597987pt;}
.yd_c01173{bottom:433.788787pt;}
.yc_c01173{bottom:462.934387pt;}
.yb_c01173{bottom:491.133987pt;}
.ya_c01173{bottom:548.470387pt;}
.y9_c01173{bottom:577.303587pt;}
.y8_c01173{bottom:633.372787pt;}
.y7_c01173{bottom:661.884787pt;}
.y6_c01173{bottom:718.908787pt;}
.y5_c01173{bottom:775.303587pt;}
.y4_c01173{bottom:803.494387pt;}
.y3_c01173{bottom:832.639987pt;}
.y2_c01173{bottom:955.875187pt;}
.h10_c01173{height:25.698750pt;}
.h8_c01173{height:34.602280pt;}
.hd_c01173{height:35.446236pt;}
.ha_c01173{height:36.290191pt;}
.h5_c01173{height:37.134029pt;}
.hb_c01173{height:56.656875pt;}
.h7_c01173{height:59.841375pt;}
.h9_c01173{height:61.493438pt;}
.hf_c01173{height:61.635665pt;}
.h2_c01173{height:63.566250pt;}
.he_c01173{height:66.693000pt;}
.h3_c01173{height:68.748281pt;}
.h6_c01173{height:70.130156pt;}
.hc_c01173{height:70.488184pt;}
.h4_c01173{height:123.695310pt;}
.h1_c01173{height:1000.000000pt;}
.h0_c01173{height:1122.666667pt;}
.w1_c01173{width:710.666667pt;}
.w0_c01173{width:793.333333pt;}
.x0_c01173{left:0.000000pt;}
.x1_c01173{left:41.333333pt;}
.x49_c01173{left:85.182120pt;}
.x13_c01173{left:86.132520pt;}
.x23_c01173{left:133.014520pt;}
.x14_c01173{left:134.000120pt;}
.x3_c01173{left:135.210120pt;}
.x15_c01173{left:163.378920pt;}
.x4_c01173{left:165.116920pt;}
.x58_c01173{left:173.292120pt;}
.x5a_c01173{left:182.725720pt;}
.x16_c01173{left:183.676120pt;}
.x50_c01173{left:192.546520pt;}
.x2d_c01173{left:194.011720pt;}
.x30_c01173{left:202.450920pt;}
.x17_c01173{left:213.521320pt;}
.x41_c01173{left:223.210120pt;}
.x5_c01173{left:233.545720pt;}
.x24_c01173{left:235.182520pt;}
.x36_c01173{left:242.636120pt;}
.x3b_c01173{left:244.316920pt;}
.x26_c01173{left:251.537320pt;}
.xc_c01173{left:252.822120pt;}
.x2e_c01173{left:260.733320pt;}
.x1d_c01173{left:263.008120pt;}
.x47_c01173{left:271.812520pt;}
.xd_c01173{left:274.148920pt;}
.x18_c01173{left:281.914920pt;}
.x31_c01173{left:291.458520pt;}
.x3c_c01173{left:292.470520pt;}
.x6_c01173{left:293.491320pt;}
.x42_c01173{left:302.678520pt;}
.x27_c01173{left:303.668520pt;}
.x19_c01173{left:313.498120pt;}
.x28_c01173{left:320.291720pt;}
.x51_c01173{left:322.051720pt;}
.x1a_c01173{left:329.808920pt;}
.x3d_c01173{left:332.748120pt;}
.x4a_c01173{left:340.866120pt;}
.x12_c01173{left:352.284120pt;}
.x1e_c01173{left:354.519320pt;}
.x25_c01173{left:362.056520pt;}
.x29_c01173{left:371.987320pt;}
.x4d_c01173{left:380.954520pt;}
.xe_c01173{left:382.243720pt;}
.x48_c01173{left:392.020520pt;}
.x43_c01173{left:400.156120pt;}
.x1b_c01173{left:401.784120pt;}
.x2a_c01173{left:410.249720pt;}
.x7_c01173{left:411.362920pt;}
.x2f_c01173{left:420.840520pt;}
.x4e_c01173{left:428.896920pt;}
.x37_c01173{left:431.294920pt;}
.xf_c01173{left:441.049720pt;}
.x5b_c01173{left:449.405320pt;}
.x1f_c01173{left:450.668120pt;}
.x55_c01173{left:458.372520pt;}
.x4b_c01173{left:459.366920pt;}
.x1c_c01173{left:460.669320pt;}
.x59_c01173{left:466.591720pt;}
.x44_c01173{left:469.979720pt;}
.x3e_c01173{left:471.436120pt;}
.x56_c01173{left:479.778520pt;}
.x8_c01173{left:480.768520pt;}
.x3f_c01173{left:500.647720pt;}
.x2b_c01173{left:508.457720pt;}
.x9_c01173{left:509.856920pt;}
.x10_c01173{left:520.051720pt;}
.x38_c01173{left:527.804520pt;}
.x57_c01173{left:537.290920pt;}
.xa_c01173{left:539.178520pt;}
.x20_c01173{left:548.040120pt;}
.x32_c01173{left:549.140120pt;}
.x52_c01173{left:557.896120pt;}
.x39_c01173{left:558.925720pt;}
.x21_c01173{left:567.523320pt;}
.x4c_c01173{left:568.469320pt;}
.x45_c01173{left:577.506920pt;}
.x33_c01173{left:588.141720pt;}
.x53_c01173{left:597.641320pt;}
.x4f_c01173{left:606.846120pt;}
.x2c_c01173{left:607.752520pt;}
.x40_c01173{left:616.644920pt;}
.x34_c01173{left:618.193720pt;}
.x2_c01173{left:624.894920pt;}
.x54_c01173{left:626.461320pt;}
.x11_c01173{left:627.966120pt;}
.xb_c01173{left:633.752120pt;}
.x35_c01173{left:645.636520pt;}
.x46_c01173{left:646.736520pt;}
.x3a_c01173{left:647.651720pt;}
.x22_c01173{left:664.635720pt;}
}





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

.ir_c01174:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01174{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01174;src:url('chunks/assets/font_4235600b97491b8c13b5e2ea.woff2')format("woff");}.ff1_c01174{font-family:ff1_c01174;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01174;src:url('chunks/assets/font_885b830292e9f7c22dabe7a4.woff2')format("woff");}.ff2_c01174{font-family:ff2_c01174;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01174;src:url('chunks/assets/font_10478b447c0c299ca9935ee3.woff2')format("woff");}.ff3_c01174{font-family:ff3_c01174;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m75_c01174{transform:matrix(0.027175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.027175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.027175,0.000000,0.000000,0.250000,0,0);}
.m74_c01174{transform:matrix(0.081521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081521,0.000000,0.000000,0.250000,0,0);}
.m23_c01174{transform:matrix(0.096592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096592,0.000000,0.000000,0.250000,0,0);}
.m77_c01174{transform:matrix(0.103261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103261,0.000000,0.000000,0.250000,0,0);}
.m72_c01174{transform:matrix(0.117935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117935,0.000000,0.000000,0.250000,0,0);}
.m71_c01174{transform:matrix(0.119565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119565,0.000000,0.000000,0.250000,0,0);}
.mb6_c01174{transform:matrix(0.129263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129263,0.000000,0.000000,0.250000,0,0);}
.m64_c01174{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);}
.m2d_c01174{transform:matrix(0.139571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139571,0.000000,0.000000,0.250000,0,0);}
.m73_c01174{transform:matrix(0.141305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141305,0.000000,0.000000,0.250000,0,0);}
.m82_c01174{transform:matrix(0.154830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154830,0.000000,0.000000,0.250000,0,0);}
.m65_c01174{transform:matrix(0.160736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160736,0.000000,0.000000,0.250000,0,0);}
.mb8_c01174{transform:matrix(0.161050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161050,0.000000,0.000000,0.250000,0,0);}
.m7a_c01174{transform:matrix(0.163043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163043,0.000000,0.000000,0.250000,0,0);}
.m62_c01174{transform:matrix(0.164774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164774,0.000000,0.000000,0.250000,0,0);}
.m76_c01174{transform:matrix(0.165761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165761,0.000000,0.000000,0.250000,0,0);}
.m78_c01174{transform:matrix(0.171195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171195,0.000000,0.000000,0.250000,0,0);}
.m61_c01174{transform:matrix(0.176847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176847,0.000000,0.000000,0.250000,0,0);}
.m80_c01174{transform:matrix(0.176948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176948,0.000000,0.000000,0.250000,0,0);}
.m63_c01174{transform:matrix(0.181819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181819,0.000000,0.000000,0.250000,0,0);}
.mbd_c01174{transform:matrix(0.182065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182065,0.000000,0.000000,0.250000,0,0);}
.m79_c01174{transform:matrix(0.190218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190218,0.000000,0.000000,0.250000,0,0);}
.m0_c01174{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.mcc_c01174{transform:matrix(0.254158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254158,0.000000,0.000000,0.250000,0,0);}
.m84_c01174{transform:matrix(0.254513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254513,0.000000,0.000000,0.250000,0,0);}
.m8e_c01174{transform:matrix(0.254671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254671,0.000000,0.000000,0.250000,0,0);}
.m83_c01174{transform:matrix(0.256274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256274,0.000000,0.000000,0.250000,0,0);}
.m42_c01174{transform:matrix(0.258587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258587,0.000000,0.000000,0.250000,0,0);}
.m4c_c01174{transform:matrix(0.259525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259525,0.000000,0.000000,0.250000,0,0);}
.m9d_c01174{transform:matrix(0.262270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262270,0.000000,0.000000,0.250000,0,0);}
.m5e_c01174{transform:matrix(0.262285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262285,0.000000,0.000000,0.250000,0,0);}
.m20_c01174{transform:matrix(0.262998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262998,0.000000,0.000000,0.250000,0,0);}
.m3c_c01174{transform:matrix(0.263376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263376,0.000000,0.000000,0.250000,0,0);}
.m36_c01174{transform:matrix(0.263590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263590,0.000000,0.000000,0.250000,0,0);}
.ma6_c01174{transform:matrix(0.265132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265132,0.000000,0.000000,0.250000,0,0);}
.mb2_c01174{transform:matrix(0.265364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265364,0.000000,0.000000,0.250000,0,0);}
.m6b_c01174{transform:matrix(0.266709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266709,0.000000,0.000000,0.250000,0,0);}
.ma1_c01174{transform:matrix(0.267450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267450,0.000000,0.000000,0.250000,0,0);}
.mc8_c01174{transform:matrix(0.267971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267971,0.000000,0.000000,0.250000,0,0);}
.m17_c01174{transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);}
.m25_c01174{transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);}
.m32_c01174{transform:matrix(0.271059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271059,0.000000,0.000000,0.250000,0,0);}
.ma2_c01174{transform:matrix(0.271551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271551,0.000000,0.000000,0.250000,0,0);}
.m11_c01174{transform:matrix(0.271658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271658,0.000000,0.000000,0.250000,0,0);}
.m2_c01174{transform:matrix(0.272030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272030,0.000000,0.000000,0.250000,0,0);}
.m9b_c01174{transform:matrix(0.272258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272258,0.000000,0.000000,0.250000,0,0);}
.m1c_c01174{transform:matrix(0.272870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272870,0.000000,0.000000,0.250000,0,0);}
.m14_c01174{transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);}
.m24_c01174{transform:matrix(0.273055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273055,0.000000,0.000000,0.250000,0,0);}
.m28_c01174{transform:matrix(0.273113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273113,0.000000,0.000000,0.250000,0,0);}
.mac_c01174{transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);}
.m30_c01174{transform:matrix(0.273620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273620,0.000000,0.000000,0.250000,0,0);}
.m19_c01174{transform:matrix(0.273751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273751,0.000000,0.000000,0.250000,0,0);}
.ma0_c01174{transform:matrix(0.273763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273763,0.000000,0.000000,0.250000,0,0);}
.m1f_c01174{transform:matrix(0.274334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274334,0.000000,0.000000,0.250000,0,0);}
.m39_c01174{transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);}
.m33_c01174{transform:matrix(0.276442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276442,0.000000,0.000000,0.250000,0,0);}
.m21_c01174{transform:matrix(0.276480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276480,0.000000,0.000000,0.250000,0,0);}
.m4b_c01174{transform:matrix(0.276824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276824,0.000000,0.000000,0.250000,0,0);}
.m15_c01174{transform:matrix(0.277991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277991,0.000000,0.000000,0.250000,0,0);}
.md_c01174{transform:matrix(0.278463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278463,0.000000,0.000000,0.250000,0,0);}
.mc3_c01174{transform:matrix(0.278892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278892,0.000000,0.000000,0.250000,0,0);}
.m4e_c01174{transform:matrix(0.279430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279430,0.000000,0.000000,0.250000,0,0);}
.mcd_c01174{transform:matrix(0.280236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280236,0.000000,0.000000,0.250000,0,0);}
.m6d_c01174{transform:matrix(0.280349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280349,0.000000,0.000000,0.250000,0,0);}
.ma_c01174{transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);}
.mb5_c01174{transform:matrix(0.280836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280836,0.000000,0.000000,0.250000,0,0);}
.ma3_c01174{transform:matrix(0.281589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281589,0.000000,0.000000,0.250000,0,0);}
.m6c_c01174{transform:matrix(0.281669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281669,0.000000,0.000000,0.250000,0,0);}
.m7_c01174{transform:matrix(0.282232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282232,0.000000,0.000000,0.250000,0,0);}
.mbf_c01174{transform:matrix(0.282883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282883,0.000000,0.000000,0.250000,0,0);}
.m29_c01174{transform:matrix(0.283135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283135,0.000000,0.000000,0.250000,0,0);}
.m48_c01174{transform:matrix(0.283384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283384,0.000000,0.000000,0.250000,0,0);}
.m4f_c01174{transform:matrix(0.283625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283625,0.000000,0.000000,0.250000,0,0);}
.m91_c01174{transform:matrix(0.284367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284367,0.000000,0.000000,0.250000,0,0);}
.m3b_c01174{transform:matrix(0.284881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284881,0.000000,0.000000,0.250000,0,0);}
.mae_c01174{transform:matrix(0.284970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284970,0.000000,0.000000,0.250000,0,0);}
.m69_c01174{transform:matrix(0.285120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285120,0.000000,0.000000,0.250000,0,0);}
.mc4_c01174{transform:matrix(0.286023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286023,0.000000,0.000000,0.250000,0,0);}
.m18_c01174{transform:matrix(0.286194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286194,0.000000,0.000000,0.250000,0,0);}
.m7b_c01174{transform:matrix(0.286302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286302,0.000000,0.000000,0.250000,0,0);}
.mca_c01174{transform:matrix(0.286468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286468,0.000000,0.000000,0.250000,0,0);}
.m66_c01174{transform:matrix(0.286956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286956,0.000000,0.000000,0.250000,0,0);}
.mcb_c01174{transform:matrix(0.287370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287370,0.000000,0.000000,0.250000,0,0);}
.mb7_c01174{transform:matrix(0.288237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288237,0.000000,0.000000,0.250000,0,0);}
.m37_c01174{transform:matrix(0.288340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288340,0.000000,0.000000,0.250000,0,0);}
.m5b_c01174{transform:matrix(0.288781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288781,0.000000,0.000000,0.250000,0,0);}
.m95_c01174{transform:matrix(0.289440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289440,0.000000,0.000000,0.250000,0,0);}
.mba_c01174{transform:matrix(0.289472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289472,0.000000,0.000000,0.250000,0,0);}
.m1_c01174{transform:matrix(0.289659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289659,0.000000,0.000000,0.250000,0,0);}
.m9a_c01174{transform:matrix(0.290351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290351,0.000000,0.000000,0.250000,0,0);}
.m81_c01174{transform:matrix(0.291404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291404,0.000000,0.000000,0.250000,0,0);}
.ma9_c01174{transform:matrix(0.291647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291647,0.000000,0.000000,0.250000,0,0);}
.m22_c01174{transform:matrix(0.291991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291991,0.000000,0.000000,0.250000,0,0);}
.mc2_c01174{transform:matrix(0.292173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292173,0.000000,0.000000,0.250000,0,0);}
.m6a_c01174{transform:matrix(0.292849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292849,0.000000,0.000000,0.250000,0,0);}
.m2c_c01174{transform:matrix(0.292987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292987,0.000000,0.000000,0.250000,0,0);}
.m38_c01174{transform:matrix(0.293190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293190,0.000000,0.000000,0.250000,0,0);}
.m85_c01174{transform:matrix(0.293309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293309,0.000000,0.000000,0.250000,0,0);}
.m4d_c01174{transform:matrix(0.293629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293629,0.000000,0.000000,0.250000,0,0);}
.m3e_c01174{transform:matrix(0.293790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293790,0.000000,0.000000,0.250000,0,0);}
.m56_c01174{transform:matrix(0.293859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293859,0.000000,0.000000,0.250000,0,0);}
.ma7_c01174{transform:matrix(0.294030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294030,0.000000,0.000000,0.250000,0,0);}
.m87_c01174{transform:matrix(0.294798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294798,0.000000,0.000000,0.250000,0,0);}
.m8a_c01174{transform:matrix(0.295018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295018,0.000000,0.000000,0.250000,0,0);}
.mb3_c01174{transform:matrix(0.295729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295729,0.000000,0.000000,0.250000,0,0);}
.m7e_c01174{transform:matrix(0.296279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296279,0.000000,0.000000,0.250000,0,0);}
.m10_c01174{transform:matrix(0.296855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296855,0.000000,0.000000,0.250000,0,0);}
.m6f_c01174{transform:matrix(0.296936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296936,0.000000,0.000000,0.250000,0,0);}
.m96_c01174{transform:matrix(0.297215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297215,0.000000,0.000000,0.250000,0,0);}
.mc9_c01174{transform:matrix(0.297829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297829,0.000000,0.000000,0.250000,0,0);}
.m93_c01174{transform:matrix(0.298325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298325,0.000000,0.000000,0.250000,0,0);}
.m90_c01174{transform:matrix(0.298378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298378,0.000000,0.000000,0.250000,0,0);}
.m1e_c01174{transform:matrix(0.299221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299221,0.000000,0.000000,0.250000,0,0);}
.m60_c01174{transform:matrix(0.299347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299347,0.000000,0.000000,0.250000,0,0);}
.m55_c01174{transform:matrix(0.299618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299618,0.000000,0.000000,0.250000,0,0);}
.me_c01174{transform:matrix(0.299963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299963,0.000000,0.000000,0.250000,0,0);}
.m27_c01174{transform:matrix(0.300423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300423,0.000000,0.000000,0.250000,0,0);}
.m99_c01174{transform:matrix(0.301186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301186,0.000000,0.000000,0.250000,0,0);}
.m47_c01174{transform:matrix(0.302021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302021,0.000000,0.000000,0.250000,0,0);}
.m2a_c01174{transform:matrix(0.302400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302400,0.000000,0.000000,0.250000,0,0);}
.maf_c01174{transform:matrix(0.302495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302495,0.000000,0.000000,0.250000,0,0);}
.ma4_c01174{transform:matrix(0.303047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303047,0.000000,0.000000,0.250000,0,0);}
.m35_c01174{transform:matrix(0.303443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303443,0.000000,0.000000,0.250000,0,0);}
.mb4_c01174{transform:matrix(0.303567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303567,0.000000,0.000000,0.250000,0,0);}
.m1d_c01174{transform:matrix(0.304572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304572,0.000000,0.000000,0.250000,0,0);}
.m3_c01174{transform:matrix(0.304713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304713,0.000000,0.000000,0.250000,0,0);}
.m5f_c01174{transform:matrix(0.305258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305258,0.000000,0.000000,0.250000,0,0);}
.m5a_c01174{transform:matrix(0.305326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305326,0.000000,0.000000,0.250000,0,0);}
.m3a_c01174{transform:matrix(0.305927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305927,0.000000,0.000000,0.250000,0,0);}
.mb_c01174{transform:matrix(0.306753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306753,0.000000,0.000000,0.250000,0,0);}
.m9f_c01174{transform:matrix(0.306940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306940,0.000000,0.000000,0.250000,0,0);}
.m8d_c01174{transform:matrix(0.307127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307127,0.000000,0.000000,0.250000,0,0);}
.m50_c01174{transform:matrix(0.307761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307761,0.000000,0.000000,0.250000,0,0);}
.mc0_c01174{transform:matrix(0.309072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309072,0.000000,0.000000,0.250000,0,0);}
.m92_c01174{transform:matrix(0.309180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309180,0.000000,0.000000,0.250000,0,0);}
.mbe_c01174{transform:matrix(0.311714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311714,0.000000,0.000000,0.250000,0,0);}
.maa_c01174{transform:matrix(0.312517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312517,0.000000,0.000000,0.250000,0,0);}
.mb9_c01174{transform:matrix(0.312764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312764,0.000000,0.000000,0.250000,0,0);}
.m88_c01174{transform:matrix(0.312995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312995,0.000000,0.000000,0.250000,0,0);}
.mbc_c01174{transform:matrix(0.313163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313163,0.000000,0.000000,0.250000,0,0);}
.mad_c01174{transform:matrix(0.313201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313201,0.000000,0.000000,0.250000,0,0);}
.m94_c01174{transform:matrix(0.313533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313533,0.000000,0.000000,0.250000,0,0);}
.m4_c01174{transform:matrix(0.313589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313589,0.000000,0.000000,0.250000,0,0);}
.m7c_c01174{transform:matrix(0.313919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313919,0.000000,0.000000,0.250000,0,0);}
.m52_c01174{transform:matrix(0.313999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313999,0.000000,0.000000,0.250000,0,0);}
.m49_c01174{transform:matrix(0.314603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314603,0.000000,0.000000,0.250000,0,0);}
.mf_c01174{transform:matrix(0.315439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315439,0.000000,0.000000,0.250000,0,0);}
.m53_c01174{transform:matrix(0.316228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316228,0.000000,0.000000,0.250000,0,0);}
.m8c_c01174{transform:matrix(0.316292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316292,0.000000,0.000000,0.250000,0,0);}
.m5d_c01174{transform:matrix(0.317008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317008,0.000000,0.000000,0.250000,0,0);}
.m51_c01174{transform:matrix(0.317650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317650,0.000000,0.000000,0.250000,0,0);}
.mb0_c01174{transform:matrix(0.318355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318355,0.000000,0.000000,0.250000,0,0);}
.m7f_c01174{transform:matrix(0.319887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319887,0.000000,0.000000,0.250000,0,0);}
.mc1_c01174{transform:matrix(0.320060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320060,0.000000,0.000000,0.250000,0,0);}
.m1b_c01174{transform:matrix(0.322135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322135,0.000000,0.000000,0.250000,0,0);}
.m44_c01174{transform:matrix(0.322809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322809,0.000000,0.000000,0.250000,0,0);}
.mc7_c01174{transform:matrix(0.324205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324205,0.000000,0.000000,0.250000,0,0);}
.m26_c01174{transform:matrix(0.324345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324345,0.000000,0.000000,0.250000,0,0);}
.m70_c01174{transform:matrix(0.325477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325477,0.000000,0.000000,0.250000,0,0);}
.m9_c01174{transform:matrix(0.329522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329522,0.000000,0.000000,0.250000,0,0);}
.m98_c01174{transform:matrix(0.330003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330003,0.000000,0.000000,0.250000,0,0);}
.m45_c01174{transform:matrix(0.330281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330281,0.000000,0.000000,0.250000,0,0);}
.m2b_c01174{transform:matrix(0.330417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330417,0.000000,0.000000,0.250000,0,0);}
.m41_c01174{transform:matrix(0.330576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330576,0.000000,0.000000,0.250000,0,0);}
.m58_c01174{transform:matrix(0.330926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330926,0.000000,0.000000,0.250000,0,0);}
.m59_c01174{transform:matrix(0.330982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330982,0.000000,0.000000,0.250000,0,0);}
.m1a_c01174{transform:matrix(0.331240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331240,0.000000,0.000000,0.250000,0,0);}
.mc_c01174{transform:matrix(0.331468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331468,0.000000,0.000000,0.250000,0,0);}
.ma5_c01174{transform:matrix(0.332710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332710,0.000000,0.000000,0.250000,0,0);}
.mc6_c01174{transform:matrix(0.332874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332874,0.000000,0.000000,0.250000,0,0);}
.m3f_c01174{transform:matrix(0.332993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332993,0.000000,0.000000,0.250000,0,0);}
.m4a_c01174{transform:matrix(0.333423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333423,0.000000,0.000000,0.250000,0,0);}
.m8_c01174{transform:matrix(0.334822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334822,0.000000,0.000000,0.250000,0,0);}
.m43_c01174{transform:matrix(0.334926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334926,0.000000,0.000000,0.250000,0,0);}
.m54_c01174{transform:matrix(0.334950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334950,0.000000,0.000000,0.250000,0,0);}
.mab_c01174{transform:matrix(0.335265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335265,0.000000,0.000000,0.250000,0,0);}
.m46_c01174{transform:matrix(0.335295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335295,0.000000,0.000000,0.250000,0,0);}
.m5_c01174{transform:matrix(0.337663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337663,0.000000,0.000000,0.250000,0,0);}
.m89_c01174{transform:matrix(0.339063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339063,0.000000,0.000000,0.250000,0,0);}
.m8b_c01174{transform:matrix(0.340545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340545,0.000000,0.000000,0.250000,0,0);}
.m3d_c01174{transform:matrix(0.341616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341616,0.000000,0.000000,0.250000,0,0);}
.mc5_c01174{transform:matrix(0.342022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342022,0.000000,0.000000,0.250000,0,0);}
.m6_c01174{transform:matrix(0.342460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342460,0.000000,0.000000,0.250000,0,0);}
.m13_c01174{transform:matrix(0.344684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344684,0.000000,0.000000,0.250000,0,0);}
.m6e_c01174{transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);}
.m68_c01174{transform:matrix(0.349986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349986,0.000000,0.000000,0.250000,0,0);}
.m7d_c01174{transform:matrix(0.351066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351066,0.000000,0.000000,0.250000,0,0);}
.m8f_c01174{transform:matrix(0.351277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351277,0.000000,0.000000,0.250000,0,0);}
.m9e_c01174{transform:matrix(0.351305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351305,0.000000,0.000000,0.250000,0,0);}
.mb1_c01174{transform:matrix(0.354724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354724,0.000000,0.000000,0.250000,0,0);}
.mbb_c01174{transform:matrix(0.355040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355040,0.000000,0.000000,0.250000,0,0);}
.m57_c01174{transform:matrix(0.355252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355252,0.000000,0.000000,0.250000,0,0);}
.m2f_c01174{transform:matrix(0.360913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360913,0.000000,0.000000,0.250000,0,0);}
.m5c_c01174{transform:matrix(0.361546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361546,0.000000,0.000000,0.250000,0,0);}
.ma8_c01174{transform:matrix(0.362869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362869,0.000000,0.000000,0.250000,0,0);}
.m2e_c01174{transform:matrix(0.364536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364536,0.000000,0.000000,0.250000,0,0);}
.m34_c01174{transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);}
.m40_c01174{transform:matrix(0.385592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385592,0.000000,0.000000,0.250000,0,0);}
.m16_c01174{transform:matrix(0.387076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387076,0.000000,0.000000,0.250000,0,0);}
.m97_c01174{transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);}
.m12_c01174{transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);}
.m31_c01174{transform:matrix(0.405805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405805,0.000000,0.000000,0.250000,0,0);}
.m67_c01174{transform:matrix(0.412048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412048,0.000000,0.000000,0.250000,0,0);}
.m86_c01174{transform:matrix(0.425872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425872,0.000000,0.000000,0.250000,0,0);}
.m9c_c01174{transform:matrix(0.436181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436181,0.000000,0.000000,0.250000,0,0);}
.v0_c01174{vertical-align:0.000000px;}
.v1_c01174{vertical-align:18.532800px;}
.lsc_c01174{letter-spacing:-2.647267px;}
.lse_c01174{letter-spacing:-1.679124px;}
.ls11_c01174{letter-spacing:-1.205820px;}
.ls14_c01174{letter-spacing:-1.108800px;}
.ls8_c01174{letter-spacing:-0.960580px;}
.ls4_c01174{letter-spacing:0.000000px;}
.ls0_c01174{letter-spacing:0.544581px;}
.ls9_c01174{letter-spacing:0.605090px;}
.lsf_c01174{letter-spacing:0.900071px;}
.ls3_c01174{letter-spacing:1.020096px;}
.ls6_c01174{letter-spacing:1.203840px;}
.ls15_c01174{letter-spacing:1.584000px;}
.lsd_c01174{letter-spacing:3.524400px;}
.ls2_c01174{letter-spacing:3.539774px;}
.ls10_c01174{letter-spacing:3.564000px;}
.ls13_c01174{letter-spacing:3.603610px;}
.lsa_c01174{letter-spacing:3.643200px;}
.ls7_c01174{letter-spacing:3.781810px;}
.ls5_c01174{letter-spacing:3.831310px;}
.ls1_c01174{letter-spacing:17.484137px;}
.lsb_c01174{letter-spacing:62.726400px;}
.ls12_c01174{letter-spacing:65.577798px;}
.sc__c01174{text-shadow:none;}
.sc0_c01174{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01174{-webkit-text-stroke:0px transparent;}
.sc0_c01174{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01174{word-spacing:-7.920000px;}
.ws1_c01174{word-spacing:-1.007424px;}
.ws2_c01174{word-spacing:0.000000px;}
._4_c01174{margin-left:-2.670822px;}
._6_c01174{width:2.027520px;}
._0_c01174{width:3.100611px;}
._3_c01174{width:7.525188px;}
._7_c01174{width:22.841280px;}
._2_c01174{width:25.372749px;}
._1_c01174{width:26.906479px;}
._8_c01174{width:43.868995px;}
._5_c01174{width:148.254678px;}
.fc0_c01174{color:transparent;}
.fs11_c01174{font-size:20.394000px;}
.fs0_c01174{font-size:28.314000px;}
.fs12_c01174{font-size:31.680000px;}
.fsa_c01174{font-size:34.452000px;}
.fs10_c01174{font-size:34.650000px;}
.fsf_c01174{font-size:54.648000px;}
.fs5_c01174{font-size:62.726400px;}
.fsc_c01174{font-size:65.577798px;}
.fs8_c01174{font-size:66.330000px;}
.fsd_c01174{font-size:69.102198px;}
.fs6_c01174{font-size:70.488000px;}
.fs9_c01174{font-size:71.280000px;}
.fse_c01174{font-size:72.072198px;}
.fs4_c01174{font-size:72.864000px;}
.fs2_c01174{font-size:75.240000px;}
.fs3_c01174{font-size:75.636198px;}
.fsb_c01174{font-size:76.032198px;}
.fs1_c01174{font-size:76.626198px;}
.fs7_c01174{font-size:83.556198px;}
.y0_c01174{bottom:0.000000px;}
.y1_c01174{bottom:76.500000px;}
.y23_c01174{bottom:119.662335px;}
.y22_c01174{bottom:152.451135px;}
.y21_c01174{bottom:186.309135px;}
.y20_c01174{bottom:220.879935px;}
.y1d_c01174{bottom:221.236335px;}
.y1f_c01174{bottom:247.966335px;}
.y1e_c01174{bottom:252.955935px;}
.y1c_c01174{bottom:253.312335px;}
.y1b_c01174{bottom:285.388335px;}
.y2_c01174{bottom:308.197935px;}
.y1a_c01174{bottom:316.395135px;}
.y19_c01174{bottom:348.822585px;}
.y17_c01174{bottom:380.542185px;}
.y18_c01174{bottom:381.616335px;}
.y16_c01174{bottom:412.266735px;}
.y15_c01174{bottom:444.699135px;}
.y14_c01174{bottom:476.775135px;}
.y13_c01174{bottom:508.494735px;}
.y12_c01174{bottom:533.081385px;}
.y11_c01174{bottom:540.927135px;}
.y10_c01174{bottom:559.459935px;}
.yf_c01174{bottom:573.354585px;}
.ye_c01174{bottom:605.430585px;}
.yd_c01174{bottom:637.867935px;}
.yc_c01174{bottom:669.582585px;}
.yb_c01174{bottom:700.945785px;}
.ya_c01174{bottom:732.670335px;}
.y9_c01174{bottom:764.389935px;}
.y8_c01174{bottom:796.822335px;}
.y7_c01174{bottom:828.536985px;}
.y6_c01174{bottom:860.969385px;}
.y5_c01174{bottom:893.406735px;}
.y4_c01174{bottom:925.839135px;}
.y3_c01174{bottom:1067.329935px;}
.h2_c01174{height:29.530617px;}
.h11_c01174{height:31.092188px;}
.hb_c01174{height:33.812754px;}
.h7_c01174{height:41.775782px;}
.hd_c01174{height:43.674813px;}
.h10_c01174{height:56.996156px;}
.h8_c01174{height:69.180117px;}
.ha_c01174{height:69.957422px;}
.hf_c01174{height:70.734921px;}
.h6_c01174{height:71.512031px;}
.he_c01174{height:72.071433px;}
.h5_c01174{height:74.232792px;}
.h3_c01174{height:75.204423px;}
.h4_c01174{height:78.472969px;}
.hc_c01174{height:79.299207px;}
.h9_c01174{height:82.005839px;}
.h1_c01174{height:1110.000000px;}
.h0_c01174{height:1263.000000px;}
.w1_c01174{width:775.500000px;}
.w0_c01174{width:892.500000px;}
.x0_c01174{left:0.000000px;}
.x2_c01174{left:53.629935px;}
.x1_c01174{left:58.500000px;}
.x4_c01174{left:85.809885px;}
.x5c_c01174{left:99.833235px;}
.x44_c01174{left:137.096835px;}
.x20_c01174{left:138.720435px;}
.xe_c01174{left:139.982685px;}
.x5_c01174{left:141.264735px;}
.x48_c01174{left:160.485585px;}
.x41_c01174{left:172.261635px;}
.x36_c01174{left:182.716035px;}
.x65_c01174{left:193.244685px;}
.x3c_c01174{left:194.378235px;}
.xf_c01174{left:195.417735px;}
.x2e_c01174{left:203.580285px;}
.x5d_c01174{left:204.708885px;}
.x49_c01174{left:206.089935px;}
.x21_c01174{left:207.871935px;}
.x6f_c01174{left:214.000035px;}
.x2f_c01174{left:215.247435px;}
.x6_c01174{left:216.638385px;}
.x62_c01174{left:225.914685px;}
.x10_c01174{left:227.330385px;}
.x7e_c01174{left:236.636385px;}
.x3d_c01174{left:237.661035px;}
.x17_c01174{left:238.863885px;}
.x63_c01174{left:247.630335px;}
.x37_c01174{left:248.645085px;}
.x7_c01174{left:250.491435px;}
.x4b_c01174{left:258.990585px;}
.x5f_c01174{left:260.411235px;}
.x50_c01174{left:271.286385px;}
.x18_c01174{left:272.721885px;}
.x30_c01174{left:284.473185px;}
.x66_c01174{left:293.779185px;}
.x22_c01174{left:295.239435px;}
.x69_c01174{left:303.510885px;}
.x70_c01174{left:304.867185px;}
.x45_c01174{left:305.901735px;}
.x76_c01174{left:314.643435px;}
.x8_c01174{left:315.752235px;}
.x26_c01174{left:316.925385px;}
.x11_c01174{left:317.984685px;}
.x4c_c01174{left:325.622535px;}
.x64_c01174{left:326.934285px;}
.x60_c01174{left:328.315335px;}
.x23_c01174{left:329.424135px;}
.x42_c01174{left:338.081685px;}
.x19_c01174{left:339.433035px;}
.x81_c01174{left:348.704385px;}
.x27_c01174{left:350.065635px;}
.x61_c01174{left:359.594385px;}
.x38_c01174{left:361.861485px;}
.x5e_c01174{left:371.078385px;}
.x1a_c01174{left:373.038585px;}
.x71_c01174{left:381.290235px;}
.x31_c01174{left:382.730685px;}
.x72_c01174{left:393.477135px;}
.x24_c01174{left:394.541385px;}
.x32_c01174{left:405.654135px;}
.x51_c01174{left:415.420485px;}
.x4d_c01174{left:416.509485px;}
.x46_c01174{left:424.706685px;}
.x75_c01174{left:426.132285px;}
.x9_c01174{left:428.265735px;}
.x28_c01174{left:439.229985px;}
.x56_c01174{left:448.342935px;}
.x52_c01174{left:449.857635px;}
.x12_c01174{left:450.976335px;}
.x25_c01174{left:460.406085px;}
.xa_c01174{left:461.618835px;}
.x7f_c01174{left:470.721885px;}
.x29_c01174{left:472.241535px;}
.x6a_c01174{left:481.809885px;}
.x57_c01174{left:482.908785px;}
.x13_c01174{left:494.764035px;}
.x47_c01174{left:504.426435px;}
.x39_c01174{left:505.876785px;}
.x53_c01174{left:516.212385px;}
.x73_c01174{left:525.988635px;}
.x6d_c01174{left:527.260785px;}
.xb_c01174{left:528.334935px;}
.x67_c01174{left:536.843985px;}
.x3a_c01174{left:538.611135px;}
.x54_c01174{left:547.308285px;}
.x6e_c01174{left:559.302135px;}
.x1b_c01174{left:560.702985px;}
.x33_c01174{left:571.078185px;}
.x2a_c01174{left:572.850285px;}
.x58_c01174{left:580.918785px;}
.x4e_c01174{left:582.344385px;}
.xc_c01174{left:583.888785px;}
.x3e_c01174{left:592.600785px;}
.x1c_c01174{left:593.907585px;}
.x59_c01174{left:603.371985px;}
.x14_c01174{left:605.272785px;}
.x3f_c01174{left:615.598485px;}
.x43_c01174{left:624.656985px;}
.x1d_c01174{left:625.948935px;}
.x55_c01174{left:636.398385px;}
.x3b_c01174{left:637.522035px;}
.x77_c01174{left:638.982285px;}
.x78_c01174{left:643.125435px;}
.x79_c01174{left:645.946935px;}
.x1e_c01174{left:649.486185px;}
.x7a_c01174{left:654.257985px;}
.x5a_c01174{left:657.549735px;}
.x6b_c01174{left:660.197985px;}
.x7b_c01174{left:664.940085px;}
.x2b_c01174{left:669.617835px;}
.x34_c01174{left:671.528535px;}
.xd_c01174{left:681.383985px;}
.x40_c01174{left:682.844235px;}
.x2c_c01174{left:691.981935px;}
.x15_c01174{left:695.016285px;}
.x3_c01174{left:696.481485px;}
.x7c_c01174{left:699.055485px;}
.x5b_c01174{left:701.030535px;}
.x80_c01174{left:702.213585px;}
.x35_c01174{left:703.480785px;}
.x4f_c01174{left:706.891335px;}
.x16_c01174{left:713.742135px;}
.x68_c01174{left:715.439985px;}
.x1f_c01174{left:716.509185px;}
.x4a_c01174{left:724.498485px;}
.x2d_c01174{left:726.438885px;}
.x74_c01174{left:735.873585px;}
.x6c_c01174{left:746.337885px;}
.x7d_c01174{left:750.441435px;}
@media print{
.v0_c01174{vertical-align:0.000000pt;}
.v1_c01174{vertical-align:16.473600pt;}
.lsc_c01174{letter-spacing:-2.353126pt;}
.lse_c01174{letter-spacing:-1.492554pt;}
.ls11_c01174{letter-spacing:-1.071840pt;}
.ls14_c01174{letter-spacing:-0.985600pt;}
.ls8_c01174{letter-spacing:-0.853849pt;}
.ls4_c01174{letter-spacing:0.000000pt;}
.ls0_c01174{letter-spacing:0.484072pt;}
.ls9_c01174{letter-spacing:0.537857pt;}
.lsf_c01174{letter-spacing:0.800063pt;}
.ls3_c01174{letter-spacing:0.906752pt;}
.ls6_c01174{letter-spacing:1.070080pt;}
.ls15_c01174{letter-spacing:1.408000pt;}
.lsd_c01174{letter-spacing:3.132800pt;}
.ls2_c01174{letter-spacing:3.146466pt;}
.ls10_c01174{letter-spacing:3.168000pt;}
.ls13_c01174{letter-spacing:3.203209pt;}
.lsa_c01174{letter-spacing:3.238400pt;}
.ls7_c01174{letter-spacing:3.361609pt;}
.ls5_c01174{letter-spacing:3.405609pt;}
.ls1_c01174{letter-spacing:15.541455pt;}
.lsb_c01174{letter-spacing:55.756800pt;}
.ls12_c01174{letter-spacing:58.291376pt;}
.ws0_c01174{word-spacing:-7.040000pt;}
.ws1_c01174{word-spacing:-0.895488pt;}
.ws2_c01174{word-spacing:0.000000pt;}
._4_c01174{margin-left:-2.374064pt;}
._6_c01174{width:1.802240pt;}
._0_c01174{width:2.756098pt;}
._3_c01174{width:6.689056pt;}
._7_c01174{width:20.303360pt;}
._2_c01174{width:22.553555pt;}
._1_c01174{width:23.916870pt;}
._8_c01174{width:38.994662pt;}
._5_c01174{width:131.781936pt;}
.fs11_c01174{font-size:18.128000pt;}
.fs0_c01174{font-size:25.168000pt;}
.fs12_c01174{font-size:28.160000pt;}
.fsa_c01174{font-size:30.624000pt;}
.fs10_c01174{font-size:30.800000pt;}
.fsf_c01174{font-size:48.576000pt;}
.fs5_c01174{font-size:55.756800pt;}
.fsc_c01174{font-size:58.291376pt;}
.fs8_c01174{font-size:58.960000pt;}
.fsd_c01174{font-size:61.424176pt;}
.fs6_c01174{font-size:62.656000pt;}
.fs9_c01174{font-size:63.360000pt;}
.fse_c01174{font-size:64.064176pt;}
.fs4_c01174{font-size:64.768000pt;}
.fs2_c01174{font-size:66.880000pt;}
.fs3_c01174{font-size:67.232176pt;}
.fsb_c01174{font-size:67.584176pt;}
.fs1_c01174{font-size:68.112176pt;}
.fs7_c01174{font-size:74.272176pt;}
.y0_c01174{bottom:0.000000pt;}
.y1_c01174{bottom:68.000000pt;}
.y23_c01174{bottom:106.366520pt;}
.y22_c01174{bottom:135.512120pt;}
.y21_c01174{bottom:165.608120pt;}
.y20_c01174{bottom:196.337720pt;}
.y1d_c01174{bottom:196.654520pt;}
.y1f_c01174{bottom:220.414520pt;}
.y1e_c01174{bottom:224.849720pt;}
.y1c_c01174{bottom:225.166520pt;}
.y1b_c01174{bottom:253.678520pt;}
.y2_c01174{bottom:273.953720pt;}
.y1a_c01174{bottom:281.240120pt;}
.y19_c01174{bottom:310.064520pt;}
.y17_c01174{bottom:338.259720pt;}
.y18_c01174{bottom:339.214520pt;}
.y16_c01174{bottom:366.459320pt;}
.y15_c01174{bottom:395.288120pt;}
.y14_c01174{bottom:423.800120pt;}
.y13_c01174{bottom:451.995320pt;}
.y12_c01174{bottom:473.850120pt;}
.y11_c01174{bottom:480.824120pt;}
.y10_c01174{bottom:497.297720pt;}
.yf_c01174{bottom:509.648520pt;}
.ye_c01174{bottom:538.160520pt;}
.yd_c01174{bottom:566.993720pt;}
.yc_c01174{bottom:595.184520pt;}
.yb_c01174{bottom:623.062920pt;}
.ya_c01174{bottom:651.262520pt;}
.y9_c01174{bottom:679.457720pt;}
.y8_c01174{bottom:708.286520pt;}
.y7_c01174{bottom:736.477320pt;}
.y6_c01174{bottom:765.306120pt;}
.y5_c01174{bottom:794.139320pt;}
.y4_c01174{bottom:822.968120pt;}
.y3_c01174{bottom:948.737720pt;}
.h2_c01174{height:26.249438pt;}
.h11_c01174{height:27.637500pt;}
.hb_c01174{height:30.055781pt;}
.h7_c01174{height:37.134029pt;}
.hd_c01174{height:38.822056pt;}
.h10_c01174{height:50.663250pt;}
.h8_c01174{height:61.493438pt;}
.ha_c01174{height:62.184375pt;}
.hf_c01174{height:62.875485pt;}
.h6_c01174{height:63.566250pt;}
.he_c01174{height:64.063496pt;}
.h5_c01174{height:65.984704pt;}
.h3_c01174{height:66.848376pt;}
.h4_c01174{height:69.753750pt;}
.hc_c01174{height:70.488184pt;}
.h9_c01174{height:72.894079pt;}
.h1_c01174{height:986.666667pt;}
.h0_c01174{height:1122.666667pt;}
.w1_c01174{width:689.333333pt;}
.w0_c01174{width:793.333333pt;}
.x0_c01174{left:0.000000pt;}
.x2_c01174{left:47.671053pt;}
.x1_c01174{left:52.000000pt;}
.x4_c01174{left:76.275453pt;}
.x5c_c01174{left:88.740653pt;}
.x44_c01174{left:121.863853pt;}
.x20_c01174{left:123.307053pt;}
.xe_c01174{left:124.429053pt;}
.x5_c01174{left:125.568653pt;}
.x48_c01174{left:142.653853pt;}
.x41_c01174{left:153.121453pt;}
.x36_c01174{left:162.414253pt;}
.x65_c01174{left:171.773053pt;}
.x3c_c01174{left:172.780653pt;}
.xf_c01174{left:173.704653pt;}
.x2e_c01174{left:180.960253pt;}
.x5d_c01174{left:181.963453pt;}
.x49_c01174{left:183.191053pt;}
.x21_c01174{left:184.775053pt;}
.x6f_c01174{left:190.222253pt;}
.x2f_c01174{left:191.331053pt;}
.x6_c01174{left:192.567453pt;}
.x62_c01174{left:200.813053pt;}
.x10_c01174{left:202.071453pt;}
.x7e_c01174{left:210.343453pt;}
.x3d_c01174{left:211.254253pt;}
.x17_c01174{left:212.323453pt;}
.x63_c01174{left:220.115853pt;}
.x37_c01174{left:221.017853pt;}
.x7_c01174{left:222.659053pt;}
.x4b_c01174{left:230.213853pt;}
.x5f_c01174{left:231.476653pt;}
.x50_c01174{left:241.143453pt;}
.x18_c01174{left:242.419453pt;}
.x30_c01174{left:252.865053pt;}
.x66_c01174{left:261.137053pt;}
.x22_c01174{left:262.435053pt;}
.x69_c01174{left:269.787453pt;}
.x70_c01174{left:270.993053pt;}
.x45_c01174{left:271.912653pt;}
.x76_c01174{left:279.683053pt;}
.x8_c01174{left:280.668653pt;}
.x26_c01174{left:281.711453pt;}
.x11_c01174{left:282.653053pt;}
.x4c_c01174{left:289.442253pt;}
.x64_c01174{left:290.608253pt;}
.x60_c01174{left:291.835853pt;}
.x23_c01174{left:292.821453pt;}
.x42_c01174{left:300.517053pt;}
.x19_c01174{left:301.718253pt;}
.x81_c01174{left:309.959453pt;}
.x27_c01174{left:311.169453pt;}
.x61_c01174{left:319.639453pt;}
.x38_c01174{left:321.654653pt;}
.x5e_c01174{left:329.847453pt;}
.x1a_c01174{left:331.589853pt;}
.x71_c01174{left:338.924653pt;}
.x31_c01174{left:340.205053pt;}
.x72_c01174{left:349.757453pt;}
.x24_c01174{left:350.703453pt;}
.x32_c01174{left:360.581453pt;}
.x51_c01174{left:369.262653pt;}
.x4d_c01174{left:370.230653pt;}
.x46_c01174{left:377.517053pt;}
.x75_c01174{left:378.784253pt;}
.x9_c01174{left:380.680653pt;}
.x28_c01174{left:390.426653pt;}
.x56_c01174{left:398.527053pt;}
.x52_c01174{left:399.873453pt;}
.x12_c01174{left:400.867853pt;}
.x25_c01174{left:409.249853pt;}
.xa_c01174{left:410.327853pt;}
.x7f_c01174{left:418.419453pt;}
.x29_c01174{left:419.770253pt;}
.x6a_c01174{left:428.275453pt;}
.x57_c01174{left:429.252253pt;}
.x13_c01174{left:439.790253pt;}
.x47_c01174{left:448.379053pt;}
.x39_c01174{left:449.668253pt;}
.x53_c01174{left:458.855453pt;}
.x73_c01174{left:467.545453pt;}
.x6d_c01174{left:468.676253pt;}
.xb_c01174{left:469.631053pt;}
.x67_c01174{left:477.194653pt;}
.x3a_c01174{left:478.765453pt;}
.x54_c01174{left:486.496253pt;}
.x6e_c01174{left:497.157453pt;}
.x1b_c01174{left:498.402653pt;}
.x33_c01174{left:507.625053pt;}
.x2a_c01174{left:509.200253pt;}
.x58_c01174{left:516.372253pt;}
.x4e_c01174{left:517.639453pt;}
.xc_c01174{left:519.012253pt;}
.x3e_c01174{left:526.756253pt;}
.x1c_c01174{left:527.917853pt;}
.x59_c01174{left:536.330653pt;}
.x14_c01174{left:538.020253pt;}
.x3f_c01174{left:547.198653pt;}
.x43_c01174{left:555.250653pt;}
.x1d_c01174{left:556.399053pt;}
.x55_c01174{left:565.687453pt;}
.x3b_c01174{left:566.686253pt;}
.x77_c01174{left:567.984253pt;}
.x78_c01174{left:571.667053pt;}
.x79_c01174{left:574.175053pt;}
.x1e_c01174{left:577.321053pt;}
.x7a_c01174{left:581.562653pt;}
.x5a_c01174{left:584.488653pt;}
.x6b_c01174{left:586.842653pt;}
.x7b_c01174{left:591.057853pt;}
.x2b_c01174{left:595.215853pt;}
.x34_c01174{left:596.914253pt;}
.xd_c01174{left:605.674653pt;}
.x40_c01174{left:606.972653pt;}
.x2c_c01174{left:615.095053pt;}
.x15_c01174{left:617.792253pt;}
.x3_c01174{left:619.094653pt;}
.x7c_c01174{left:621.382653pt;}
.x5b_c01174{left:623.138253pt;}
.x80_c01174{left:624.189853pt;}
.x35_c01174{left:625.316253pt;}
.x4f_c01174{left:628.347853pt;}
.x16_c01174{left:634.437453pt;}
.x68_c01174{left:635.946653pt;}
.x1f_c01174{left:636.897053pt;}
.x4a_c01174{left:643.998653pt;}
.x2d_c01174{left:645.723453pt;}
.x74_c01174{left:654.109853pt;}
.x6c_c01174{left:663.411453pt;}
.x7d_c01174{left:667.059053pt;}
}





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

.ir_c01175:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01175{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01175;src:url('chunks/assets/font_c4ee8649500e179ef2a4bd1a.woff2')format("woff");}.ff1_c01175{font-family:ff1_c01175;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01175;src:url('chunks/assets/font_10272085a977ad2cc4923640.woff2')format("woff");}.ff2_c01175{font-family:ff2_c01175;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01175;src:url('chunks/assets/font_11a0556b080afb6567aeb1cd.woff2')format("woff");}.ff3_c01175{font-family:ff3_c01175;line-height:0.666000;font-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_c01175{transform:matrix(0.119048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119048,0.000000,0.000000,0.250000,0,0);}
.m7c_c01175{transform:matrix(0.156994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156994,0.000000,0.000000,0.250000,0,0);}
.m40_c01175{transform:matrix(0.157413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157413,0.000000,0.000000,0.250000,0,0);}
.m21_c01175{transform:matrix(0.161477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161477,0.000000,0.000000,0.250000,0,0);}
.m4b_c01175{transform:matrix(0.180272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180272,0.000000,0.000000,0.250000,0,0);}
.m7a_c01175{transform:matrix(0.203939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203939,0.000000,0.000000,0.250000,0,0);}
.ma7_c01175{transform:matrix(0.220017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220017,0.000000,0.000000,0.250000,0,0);}
.m17_c01175{transform:matrix(0.223886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223886,0.000000,0.000000,0.250000,0,0);}
.m34_c01175{transform:matrix(0.228893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228893,0.000000,0.000000,0.250000,0,0);}
.m16_c01175{transform:matrix(0.241879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241879,0.000000,0.000000,0.250000,0,0);}
.m47_c01175{transform:matrix(0.245762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245762,0.000000,0.000000,0.250000,0,0);}
.m1c_c01175{transform:matrix(0.247885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247885,0.000000,0.000000,0.250000,0,0);}
.m1_c01175{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m19_c01175{transform:matrix(0.253550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253550,0.000000,0.000000,0.250000,0,0);}
.m0_c01175{transform:matrix(0.254056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254056,0.000000,0.000000,0.250000,0,0);}
.m7f_c01175{transform:matrix(0.254400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254400,0.000000,0.000000,0.250000,0,0);}
.m64_c01175{transform:matrix(0.256336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256336,0.000000,0.000000,0.250000,0,0);}
.m27_c01175{transform:matrix(0.256596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256596,0.000000,0.000000,0.250000,0,0);}
.m6c_c01175{transform:matrix(0.259123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259123,0.000000,0.000000,0.250000,0,0);}
.m26_c01175{transform:matrix(0.260944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260944,0.000000,0.000000,0.250000,0,0);}
.m96_c01175{transform:matrix(0.262573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262573,0.000000,0.000000,0.250000,0,0);}
.m90_c01175{transform:matrix(0.264302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264302,0.000000,0.000000,0.250000,0,0);}
.m24_c01175{transform:matrix(0.265460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265460,0.000000,0.000000,0.250000,0,0);}
.m7d_c01175{transform:matrix(0.267283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267283,0.000000,0.000000,0.250000,0,0);}
.m23_c01175{transform:matrix(0.267906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267906,0.000000,0.000000,0.250000,0,0);}
.m10_c01175{transform:matrix(0.268159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268159,0.000000,0.000000,0.250000,0,0);}
.m3f_c01175{transform:matrix(0.269175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269175,0.000000,0.000000,0.250000,0,0);}
.m5e_c01175{transform:matrix(0.269567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269567,0.000000,0.000000,0.250000,0,0);}
.mab_c01175{transform:matrix(0.269572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269572,0.000000,0.000000,0.250000,0,0);}
.m11_c01175{transform:matrix(0.270287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270287,0.000000,0.000000,0.250000,0,0);}
.m3_c01175{transform:matrix(0.272246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272246,0.000000,0.000000,0.250000,0,0);}
.m4d_c01175{transform:matrix(0.272665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272665,0.000000,0.000000,0.250000,0,0);}
.m32_c01175{transform:matrix(0.273274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273274,0.000000,0.000000,0.250000,0,0);}
.m99_c01175{transform:matrix(0.275018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275018,0.000000,0.000000,0.250000,0,0);}
.m9_c01175{transform:matrix(0.275114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275114,0.000000,0.000000,0.250000,0,0);}
.m9d_c01175{transform:matrix(0.275764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275764,0.000000,0.000000,0.250000,0,0);}
.mb_c01175{transform:matrix(0.276071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276071,0.000000,0.000000,0.250000,0,0);}
.m74_c01175{transform:matrix(0.276158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276158,0.000000,0.000000,0.250000,0,0);}
.ma6_c01175{transform:matrix(0.276576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276576,0.000000,0.000000,0.250000,0,0);}
.m4e_c01175{transform:matrix(0.277282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277282,0.000000,0.000000,0.250000,0,0);}
.m14_c01175{transform:matrix(0.278154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278154,0.000000,0.000000,0.250000,0,0);}
.m25_c01175{transform:matrix(0.278830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278830,0.000000,0.000000,0.250000,0,0);}
.m43_c01175{transform:matrix(0.278862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278862,0.000000,0.000000,0.250000,0,0);}
.m15_c01175{transform:matrix(0.280380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280380,0.000000,0.000000,0.250000,0,0);}
.m58_c01175{transform:matrix(0.280662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280662,0.000000,0.000000,0.250000,0,0);}
.m57_c01175{transform:matrix(0.282454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282454,0.000000,0.000000,0.250000,0,0);}
.m95_c01175{transform:matrix(0.283022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283022,0.000000,0.000000,0.250000,0,0);}
.m59_c01175{transform:matrix(0.283033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283033,0.000000,0.000000,0.250000,0,0);}
.m39_c01175{transform:matrix(0.283321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283321,0.000000,0.000000,0.250000,0,0);}
.m4c_c01175{transform:matrix(0.283785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283785,0.000000,0.000000,0.250000,0,0);}
.m1f_c01175{transform:matrix(0.285388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285388,0.000000,0.000000,0.250000,0,0);}
.m48_c01175{transform:matrix(0.285774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285774,0.000000,0.000000,0.250000,0,0);}
.m1d_c01175{transform:matrix(0.286107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286107,0.000000,0.000000,0.250000,0,0);}
.m55_c01175{transform:matrix(0.286339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286339,0.000000,0.000000,0.250000,0,0);}
.ma1_c01175{transform:matrix(0.286379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286379,0.000000,0.000000,0.250000,0,0);}
.m22_c01175{transform:matrix(0.286957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286957,0.000000,0.000000,0.250000,0,0);}
.m53_c01175{transform:matrix(0.286982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286982,0.000000,0.000000,0.250000,0,0);}
.m29_c01175{transform:matrix(0.287296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287296,0.000000,0.000000,0.250000,0,0);}
.m3d_c01175{transform:matrix(0.287659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287659,0.000000,0.000000,0.250000,0,0);}
.mb2_c01175{transform:matrix(0.287926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287926,0.000000,0.000000,0.250000,0,0);}
.m9c_c01175{transform:matrix(0.288037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288037,0.000000,0.000000,0.250000,0,0);}
.mb0_c01175{transform:matrix(0.288258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288258,0.000000,0.000000,0.250000,0,0);}
.m8d_c01175{transform:matrix(0.288362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288362,0.000000,0.000000,0.250000,0,0);}
.m3c_c01175{transform:matrix(0.289207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289207,0.000000,0.000000,0.250000,0,0);}
.m33_c01175{transform:matrix(0.289521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289521,0.000000,0.000000,0.250000,0,0);}
.m41_c01175{transform:matrix(0.290037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290037,0.000000,0.000000,0.250000,0,0);}
.m70_c01175{transform:matrix(0.290225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290225,0.000000,0.000000,0.250000,0,0);}
.m30_c01175{transform:matrix(0.290315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290315,0.000000,0.000000,0.250000,0,0);}
.m3a_c01175{transform:matrix(0.290693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290693,0.000000,0.000000,0.250000,0,0);}
.m20_c01175{transform:matrix(0.290697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290697,0.000000,0.000000,0.250000,0,0);}
.m88_c01175{transform:matrix(0.290855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290855,0.000000,0.000000,0.250000,0,0);}
.m89_c01175{transform:matrix(0.291411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291411,0.000000,0.000000,0.250000,0,0);}
.m2b_c01175{transform:matrix(0.291518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291518,0.000000,0.000000,0.250000,0,0);}
.m18_c01175{transform:matrix(0.292415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292415,0.000000,0.000000,0.250000,0,0);}
.m84_c01175{transform:matrix(0.292567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292567,0.000000,0.000000,0.250000,0,0);}
.m2e_c01175{transform:matrix(0.292763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292763,0.000000,0.000000,0.250000,0,0);}
.m86_c01175{transform:matrix(0.292902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292902,0.000000,0.000000,0.250000,0,0);}
.m76_c01175{transform:matrix(0.293156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293156,0.000000,0.000000,0.250000,0,0);}
.m2_c01175{transform:matrix(0.293499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293499,0.000000,0.000000,0.250000,0,0);}
.m5f_c01175{transform:matrix(0.293802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293802,0.000000,0.000000,0.250000,0,0);}
.m8c_c01175{transform:matrix(0.294290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294290,0.000000,0.000000,0.250000,0,0);}
.m2d_c01175{transform:matrix(0.294677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294677,0.000000,0.000000,0.250000,0,0);}
.m2f_c01175{transform:matrix(0.295216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295216,0.000000,0.000000,0.250000,0,0);}
.ma_c01175{transform:matrix(0.295237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295237,0.000000,0.000000,0.250000,0,0);}
.m77_c01175{transform:matrix(0.297685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297685,0.000000,0.000000,0.250000,0,0);}
.m5c_c01175{transform:matrix(0.298388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298388,0.000000,0.000000,0.250000,0,0);}
.m9e_c01175{transform:matrix(0.299346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299346,0.000000,0.000000,0.250000,0,0);}
.m87_c01175{transform:matrix(0.299353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299353,0.000000,0.000000,0.250000,0,0);}
.m6b_c01175{transform:matrix(0.299545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299545,0.000000,0.000000,0.250000,0,0);}
.m1e_c01175{transform:matrix(0.300251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300251,0.000000,0.000000,0.250000,0,0);}
.m94_c01175{transform:matrix(0.300375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300375,0.000000,0.000000,0.250000,0,0);}
.m97_c01175{transform:matrix(0.300394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300394,0.000000,0.000000,0.250000,0,0);}
.m93_c01175{transform:matrix(0.300716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300716,0.000000,0.000000,0.250000,0,0);}
.m66_c01175{transform:matrix(0.301154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301154,0.000000,0.000000,0.250000,0,0);}
.mb3_c01175{transform:matrix(0.301291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301291,0.000000,0.000000,0.250000,0,0);}
.m72_c01175{transform:matrix(0.301418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301418,0.000000,0.000000,0.250000,0,0);}
.ma2_c01175{transform:matrix(0.301462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301462,0.000000,0.000000,0.250000,0,0);}
.m6_c01175{transform:matrix(0.301760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301760,0.000000,0.000000,0.250000,0,0);}
.m98_c01175{transform:matrix(0.301991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301991,0.000000,0.000000,0.250000,0,0);}
.m85_c01175{transform:matrix(0.302681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302681,0.000000,0.000000,0.250000,0,0);}
.m49_c01175{transform:matrix(0.302944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302944,0.000000,0.000000,0.250000,0,0);}
.m73_c01175{transform:matrix(0.302961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302961,0.000000,0.000000,0.250000,0,0);}
.m69_c01175{transform:matrix(0.303240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303240,0.000000,0.000000,0.250000,0,0);}
.m4_c01175{transform:matrix(0.304122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304122,0.000000,0.000000,0.250000,0,0);}
.m28_c01175{transform:matrix(0.304400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304400,0.000000,0.000000,0.250000,0,0);}
.m5b_c01175{transform:matrix(0.306121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306121,0.000000,0.000000,0.250000,0,0);}
.m7e_c01175{transform:matrix(0.307967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307967,0.000000,0.000000,0.250000,0,0);}
.m3e_c01175{transform:matrix(0.308302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308302,0.000000,0.000000,0.250000,0,0);}
.m80_c01175{transform:matrix(0.308494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308494,0.000000,0.000000,0.250000,0,0);}
.m81_c01175{transform:matrix(0.308680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308680,0.000000,0.000000,0.250000,0,0);}
.m50_c01175{transform:matrix(0.308971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308971,0.000000,0.000000,0.250000,0,0);}
.m31_c01175{transform:matrix(0.309764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309764,0.000000,0.000000,0.250000,0,0);}
.m3b_c01175{transform:matrix(0.310006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310006,0.000000,0.000000,0.250000,0,0);}
.m5_c01175{transform:matrix(0.310301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310301,0.000000,0.000000,0.250000,0,0);}
.m68_c01175{transform:matrix(0.310432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310432,0.000000,0.000000,0.250000,0,0);}
.m60_c01175{transform:matrix(0.310693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310693,0.000000,0.000000,0.250000,0,0);}
.mad_c01175{transform:matrix(0.311324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311324,0.000000,0.000000,0.250000,0,0);}
.m79_c01175{transform:matrix(0.311405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311405,0.000000,0.000000,0.250000,0,0);}
.m63_c01175{transform:matrix(0.312205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312205,0.000000,0.000000,0.250000,0,0);}
.m37_c01175{transform:matrix(0.312665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312665,0.000000,0.000000,0.250000,0,0);}
.m83_c01175{transform:matrix(0.315078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315078,0.000000,0.000000,0.250000,0,0);}
.m8f_c01175{transform:matrix(0.315173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315173,0.000000,0.000000,0.250000,0,0);}
.mf_c01175{transform:matrix(0.315917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315917,0.000000,0.000000,0.250000,0,0);}
.ma0_c01175{transform:matrix(0.316623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316623,0.000000,0.000000,0.250000,0,0);}
.m4f_c01175{transform:matrix(0.316889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316889,0.000000,0.000000,0.250000,0,0);}
.m65_c01175{transform:matrix(0.316913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316913,0.000000,0.000000,0.250000,0,0);}
.m91_c01175{transform:matrix(0.318796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318796,0.000000,0.000000,0.250000,0,0);}
.m9b_c01175{transform:matrix(0.319425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319425,0.000000,0.000000,0.250000,0,0);}
.m56_c01175{transform:matrix(0.320083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320083,0.000000,0.000000,0.250000,0,0);}
.m1b_c01175{transform:matrix(0.320966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320966,0.000000,0.000000,0.250000,0,0);}
.m2a_c01175{transform:matrix(0.321363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321363,0.000000,0.000000,0.250000,0,0);}
.mac_c01175{transform:matrix(0.321754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321754,0.000000,0.000000,0.250000,0,0);}
.me_c01175{transform:matrix(0.322419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322419,0.000000,0.000000,0.250000,0,0);}
.m2c_c01175{transform:matrix(0.322605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322605,0.000000,0.000000,0.250000,0,0);}
.m6d_c01175{transform:matrix(0.322653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322653,0.000000,0.000000,0.250000,0,0);}
.m8a_c01175{transform:matrix(0.322988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322988,0.000000,0.000000,0.250000,0,0);}
.maf_c01175{transform:matrix(0.323999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323999,0.000000,0.000000,0.250000,0,0);}
.m9f_c01175{transform:matrix(0.325335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325335,0.000000,0.000000,0.250000,0,0);}
.m61_c01175{transform:matrix(0.325483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325483,0.000000,0.000000,0.250000,0,0);}
.m35_c01175{transform:matrix(0.325544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325544,0.000000,0.000000,0.250000,0,0);}
.m51_c01175{transform:matrix(0.326041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326041,0.000000,0.000000,0.250000,0,0);}
.mae_c01175{transform:matrix(0.330324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330324,0.000000,0.000000,0.250000,0,0);}
.m6e_c01175{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);}
.m9a_c01175{transform:matrix(0.333138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333138,0.000000,0.000000,0.250000,0,0);}
.ma9_c01175{transform:matrix(0.333596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333596,0.000000,0.000000,0.250000,0,0);}
.m8_c01175{transform:matrix(0.333684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333684,0.000000,0.000000,0.250000,0,0);}
.m8b_c01175{transform:matrix(0.335962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335962,0.000000,0.000000,0.250000,0,0);}
.maa_c01175{transform:matrix(0.336845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336845,0.000000,0.000000,0.250000,0,0);}
.m7_c01175{transform:matrix(0.338243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338243,0.000000,0.000000,0.250000,0,0);}
.m67_c01175{transform:matrix(0.339014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339014,0.000000,0.000000,0.250000,0,0);}
.m45_c01175{transform:matrix(0.340310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340310,0.000000,0.000000,0.250000,0,0);}
.m5a_c01175{transform:matrix(0.341704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341704,0.000000,0.000000,0.250000,0,0);}
.m4a_c01175{transform:matrix(0.341839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341839,0.000000,0.000000,0.250000,0,0);}
.m6f_c01175{transform:matrix(0.341997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341997,0.000000,0.000000,0.250000,0,0);}
.m8e_c01175{transform:matrix(0.343029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343029,0.000000,0.000000,0.250000,0,0);}
.m44_c01175{transform:matrix(0.343491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343491,0.000000,0.000000,0.250000,0,0);}
.m7b_c01175{transform:matrix(0.344211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344211,0.000000,0.000000,0.250000,0,0);}
.ma4_c01175{transform:matrix(0.345192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345192,0.000000,0.000000,0.250000,0,0);}
.m54_c01175{transform:matrix(0.345332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345332,0.000000,0.000000,0.250000,0,0);}
.m92_c01175{transform:matrix(0.345543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345543,0.000000,0.000000,0.250000,0,0);}
.ma5_c01175{transform:matrix(0.346011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346011,0.000000,0.000000,0.250000,0,0);}
.m13_c01175{transform:matrix(0.347412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347412,0.000000,0.000000,0.250000,0,0);}
.m5d_c01175{transform:matrix(0.348169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348169,0.000000,0.000000,0.250000,0,0);}
.m75_c01175{transform:matrix(0.349341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349341,0.000000,0.000000,0.250000,0,0);}
.ma3_c01175{transform:matrix(0.352339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352339,0.000000,0.000000,0.250000,0,0);}
.mc_c01175{transform:matrix(0.354727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354727,0.000000,0.000000,0.250000,0,0);}
.m46_c01175{transform:matrix(0.355849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355849,0.000000,0.000000,0.250000,0,0);}
.m38_c01175{transform:matrix(0.358064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358064,0.000000,0.000000,0.250000,0,0);}
.md_c01175{transform:matrix(0.361755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361755,0.000000,0.000000,0.250000,0,0);}
.m62_c01175{transform:matrix(0.362043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362043,0.000000,0.000000,0.250000,0,0);}
.m6a_c01175{transform:matrix(0.366415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366415,0.000000,0.000000,0.250000,0,0);}
.m78_c01175{transform:matrix(0.381169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381169,0.000000,0.000000,0.250000,0,0);}
.m71_c01175{transform:matrix(0.381803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381803,0.000000,0.000000,0.250000,0,0);}
.m82_c01175{transform:matrix(0.385974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385974,0.000000,0.000000,0.250000,0,0);}
.mb1_c01175{transform:matrix(0.388907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388907,0.000000,0.000000,0.250000,0,0);}
.m12_c01175{transform:matrix(0.390139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390139,0.000000,0.000000,0.250000,0,0);}
.m42_c01175{transform:matrix(0.396432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396432,0.000000,0.000000,0.250000,0,0);}
.m1a_c01175{transform:matrix(0.402725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402725,0.000000,0.000000,0.250000,0,0);}
.m36_c01175{transform:matrix(0.409017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409017,0.000000,0.000000,0.250000,0,0);}
.ma8_c01175{transform:matrix(0.429279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429279,0.000000,0.000000,0.250000,0,0);}
.m52_c01175{transform:matrix(0.467873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467873,0.000000,0.000000,0.250000,0,0);}
.v0_c01175{vertical-align:0.000000px;}
.v1_c01175{vertical-align:18.532800px;}
.lsb_c01175{letter-spacing:-3.132367px;}
.ls7_c01175{letter-spacing:-2.661127px;}
.ls10_c01175{letter-spacing:-2.647267px;}
.ls5_c01175{letter-spacing:-2.626477px;}
.lse_c01175{letter-spacing:-2.221249px;}
.ls11_c01175{letter-spacing:-2.086173px;}
.ls6_c01175{letter-spacing:-1.884967px;}
.ls8_c01175{letter-spacing:-1.413720px;}
.ls12_c01175{letter-spacing:-0.232631px;}
.ls3_c01175{letter-spacing:0.000000px;}
.lsa_c01175{letter-spacing:0.482625px;}
.ls13_c01175{letter-spacing:0.810456px;}
.ls1_c01175{letter-spacing:1.103120px;}
.ls14_c01175{letter-spacing:1.831500px;}
.lsd_c01175{letter-spacing:2.994184px;}
.lsf_c01175{letter-spacing:3.326400px;}
.ls4_c01175{letter-spacing:3.752110px;}
.ls9_c01175{letter-spacing:3.960000px;}
.ls2_c01175{letter-spacing:4.296610px;}
.ls0_c01175{letter-spacing:12.018501px;}
.ls15_c01175{letter-spacing:29.937798px;}
.lsc_c01175{letter-spacing:59.875398px;}
.sc__c01175{text-shadow:none;}
.sc0_c01175{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01175{-webkit-text-stroke:0px transparent;}
.sc0_c01175{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01175{word-spacing:-18.760550px;}
.ws1_c01175{word-spacing:0.000000px;}
._0_c01175{margin-left:-35.431022px;}
._2_c01175{margin-left:-7.309736px;}
._3_c01175{width:3.902283px;}
._4_c01175{width:9.680444px;}
._1_c01175{width:35.501400px;}
.fc0_c01175{color:transparent;}
.fs12_c01175{font-size:25.344000px;}
.fs14_c01175{font-size:28.314000px;}
.fs13_c01175{font-size:29.937798px;}
.fs1_c01175{font-size:34.056198px;}
.fse_c01175{font-size:36.630000px;}
.fs11_c01175{font-size:39.600000px;}
.fs5_c01175{font-size:40.392000px;}
.fsf_c01175{font-size:45.936198px;}
.fsa_c01175{font-size:49.500000px;}
.fs3_c01175{font-size:53.856198px;}
.fs9_c01175{font-size:59.875398px;}
.fs10_c01175{font-size:66.330000px;}
.fsc_c01175{font-size:66.528000px;}
.fs7_c01175{font-size:74.250000px;}
.fsb_c01175{font-size:74.844000px;}
.fs2_c01175{font-size:75.042198px;}
.fsd_c01175{font-size:75.636198px;}
.fs4_c01175{font-size:76.032198px;}
.fs6_c01175{font-size:79.200000px;}
.fs0_c01175{font-size:85.932198px;}
.fs8_c01175{font-size:89.496198px;}
.y0_c01175{bottom:0.000000px;}
.y1f_c01175{bottom:40.541520px;}
.y1_c01175{bottom:76.500000px;}
.y1e_c01175{bottom:153.515370px;}
.y1d_c01175{bottom:163.850970px;}
.y1c_c01175{bottom:176.686320px;}
.y1b_c01175{bottom:197.001120px;}
.y1a_c01175{bottom:229.433520px;}
.y19_c01175{bottom:246.184320px;}
.y18_c01175{bottom:261.860970px;}
.y17_c01175{bottom:294.298320px;}
.y16_c01175{bottom:326.374320px;}
.y15_c01175{bottom:357.732570px;}
.y12_c01175{bottom:389.447517px;}
.y13_c01175{bottom:389.452170px;}
.y14_c01175{bottom:395.159520px;}
.y11_c01175{bottom:422.240970px;}
.y10_c01175{bottom:455.391120px;}
.yf_c01175{bottom:486.754320px;}
.ye_c01175{bottom:518.117520px;}
.yd_c01175{bottom:550.544970px;}
.yc_c01175{bottom:582.620970px;}
.yb_c01175{bottom:646.421520px;}
.ya_c01175{bottom:678.497520px;}
.y9_c01175{bottom:710.924970px;}
.y8_c01175{bottom:774.720570px;}
.y7_c01175{bottom:807.152970px;}
.y6_c01175{bottom:871.304970px;}
.y5_c01175{bottom:904.098720px;}
.y4_c01175{bottom:936.526170px;}
.y3_c01175{bottom:1000.683120px;}
.y2_c01175{bottom:1066.612170px;}
.h15_c01175{height:19.938573px;}
.h14_c01175{height:24.873750px;}
.h16_c01175{height:29.530617px;}
.h3_c01175{height:35.519550px;}
.h10_c01175{height:38.203945px;}
.hb_c01175{height:39.877015px;}
.h12_c01175{height:41.301563px;}
.h7_c01175{height:42.127594px;}
.hc_c01175{height:51.626953px;}
.h5_c01175{height:56.170332px;}
.he_c01175{height:65.293594px;}
.h11_c01175{height:69.180117px;}
.h13_c01175{height:69.386625px;}
.hd_c01175{height:73.455293px;}
.h4_c01175{height:73.649813px;}
.hf_c01175{height:74.232792px;}
.h9_c01175{height:77.440430px;}
.h8_c01175{height:77.730469px;}
.h6_c01175{height:79.299207px;}
.h2_c01175{height:84.337753px;}
.ha_c01175{height:87.835624px;}
.h1_c01175{height:1110.000000px;}
.h0_c01175{height:1263.000000px;}
.w1_c01175{width:775.500000px;}
.w0_c01175{width:892.500000px;}
.x0_c01175{left:0.000000px;}
.x1_c01175{left:58.500000px;}
.x40_c01175{left:79.721385px;}
.x1a_c01175{left:80.820285px;}
.x1b_c01175{left:100.942035px;}
.x5a_c01175{left:133.192127px;}
.x1c_c01175{left:134.295135px;}
.x4_c01175{left:136.156335px;}
.x67_c01175{left:138.027435px;}
.x50_c01175{left:146.135535px;}
.x3b_c01175{left:156.896835px;}
.x42_c01175{left:158.030385px;}
.x68_c01175{left:168.133335px;}
.x5_c01175{left:178.864935px;}
.x14_c01175{left:189.007485px;}
.x1d_c01175{left:190.522185px;}
.x4a_c01175{left:201.867585px;}
.x62_c01175{left:202.897185px;}
.x5f_c01175{left:211.609185px;}
.x6_c01175{left:213.074385px;}
.x15_c01175{left:222.697185px;}
.x5b_c01175{left:224.310885px;}
.x43_c01175{left:225.528585px;}
.x4b_c01175{left:233.691135px;}
.x3c_c01175{left:234.988035px;}
.x51_c01175{left:244.789035px;}
.x2f_c01175{left:246.387885px;}
.x35_c01175{left:257.253135px;}
.xe_c01175{left:268.831185px;}
.x60_c01175{left:270.073635px;}
.x1e_c01175{left:278.463885px;}
.x7_c01175{left:280.493385px;}
.x3d_c01175{left:290.051835px;}
.x29_c01175{left:300.342885px;}
.x5c_c01175{left:303.357435px;}
.x16_c01175{left:311.792235px;}
.xf_c01175{left:312.990135px;}
.x2a_c01175{left:314.074185px;}
.x63_c01175{left:321.157635px;}
.x6c_c01175{left:322.484235px;}
.x8_c01175{left:333.928635px;}
.x1f_c01175{left:335.146335px;}
.x44_c01175{left:345.793785px;}
.x52_c01175{left:347.239185px;}
.x30_c01175{left:355.589835px;}
.x17_c01175{left:357.253035px;}
.x41_c01175{left:367.930185px;}
.x64_c01175{left:376.909485px;}
.x69_c01175{left:379.013235px;}
.x9_c01175{left:380.607135px;}
.x18_c01175{left:389.977485px;}
.x56_c01175{left:391.403085px;}
.x20_c01175{left:393.239535px;}
.x3e_c01175{left:401.411985px;}
.x21_c01175{left:412.287135px;}
.x19_c01175{left:422.993985px;}
.x10_c01175{left:424.592835px;}
.x53_c01175{left:434.938335px;}
.x36_c01175{left:445.080885px;}
.x3f_c01175{left:446.283735px;}
.x2b_c01175{left:457.495485px;}
.x4c_c01175{left:458.708235px;}
.x22_c01175{left:467.548935px;}
.x66_c01175{left:469.009185px;}
.x6a_c01175{left:477.879585px;}
.x45_c01175{left:479.453685px;}
.x31_c01175{left:489.764535px;}
.x2c_c01175{left:490.863435px;}
.x11_c01175{left:501.599985px;}
.x3_c01175{left:511.212885px;}
.x57_c01175{left:512.915685px;}
.x6d_c01175{left:522.944385px;}
.x32_c01175{left:523.993785px;}
.x12_c01175{left:533.972985px;}
.x2d_c01175{left:535.423335px;}
.x23_c01175{left:545.793585px;}
.x6b_c01175{left:547.283535px;}
.x37_c01175{left:555.515385px;}
.x13_c01175{left:567.826035px;}
.x24_c01175{left:569.924835px;}
.x25_c01175{left:579.275385px;}
.x54_c01175{left:589.210035px;}
.x46_c01175{left:592.081035px;}
.x38_c01175{left:600.545535px;}
.x4d_c01175{left:601.718685px;}
.x5d_c01175{left:602.748285px;}
.x58_c01175{left:610.113885px;}
.x33_c01175{left:612.083985px;}
.x47_c01175{left:613.806585px;}
.x39_c01175{left:624.508485px;}
.x4e_c01175{left:631.794885px;}
.xa_c01175{left:633.819435px;}
.x48_c01175{left:634.878735px;}
.x3a_c01175{left:643.595685px;}
.x2e_c01175{left:644.739135px;}
.x4f_c01175{left:655.876635px;}
.x26_c01175{left:658.005135px;}
.xb_c01175{left:667.301235px;}
.x55_c01175{left:678.013035px;}
.x27_c01175{left:686.809185px;}
.x61_c01175{left:688.323885px;}
.x28_c01175{left:689.526735px;}
.x65_c01175{left:699.119835px;}
.x2_c01175{left:700.406835px;}
.x70_c01175{left:704.059935px;}
.x6e_c01175{left:706.822035px;}
.x6f_c01175{left:708.153585px;}
.xc_c01175{left:710.999835px;}
.x59_c01175{left:722.048235px;}
.x49_c01175{left:723.246135px;}
.xd_c01175{left:733.383735px;}
.x5e_c01175{left:743.135235px;}
.x34_c01175{left:745.714185px;}
@media print{
.v0_c01175{vertical-align:0.000000pt;}
.v1_c01175{vertical-align:16.473600pt;}
.lsb_c01175{letter-spacing:-2.784326pt;}
.ls7_c01175{letter-spacing:-2.365446pt;}
.ls10_c01175{letter-spacing:-2.353126pt;}
.ls5_c01175{letter-spacing:-2.334646pt;}
.lse_c01175{letter-spacing:-1.974444pt;}
.ls11_c01175{letter-spacing:-1.854376pt;}
.ls6_c01175{letter-spacing:-1.675526pt;}
.ls8_c01175{letter-spacing:-1.256640pt;}
.ls12_c01175{letter-spacing:-0.206783pt;}
.ls3_c01175{letter-spacing:0.000000pt;}
.lsa_c01175{letter-spacing:0.429000pt;}
.ls13_c01175{letter-spacing:0.720405pt;}
.ls1_c01175{letter-spacing:0.980551pt;}
.ls14_c01175{letter-spacing:1.628000pt;}
.lsd_c01175{letter-spacing:2.661497pt;}
.lsf_c01175{letter-spacing:2.956800pt;}
.ls4_c01175{letter-spacing:3.335209pt;}
.ls9_c01175{letter-spacing:3.520000pt;}
.ls2_c01175{letter-spacing:3.819209pt;}
.ls0_c01175{letter-spacing:10.683112pt;}
.ls15_c01175{letter-spacing:26.611376pt;}
.lsc_c01175{letter-spacing:53.222576pt;}
.ws0_c01175{word-spacing:-16.676044pt;}
.ws1_c01175{word-spacing:0.000000pt;}
._0_c01175{margin-left:-31.494242pt;}
._2_c01175{margin-left:-6.497543pt;}
._3_c01175{width:3.468696pt;}
._4_c01175{width:8.604839pt;}
._1_c01175{width:31.556800pt;}
.fs12_c01175{font-size:22.528000pt;}
.fs14_c01175{font-size:25.168000pt;}
.fs13_c01175{font-size:26.611376pt;}
.fs1_c01175{font-size:30.272176pt;}
.fse_c01175{font-size:32.560000pt;}
.fs11_c01175{font-size:35.200000pt;}
.fs5_c01175{font-size:35.904000pt;}
.fsf_c01175{font-size:40.832176pt;}
.fsa_c01175{font-size:44.000000pt;}
.fs3_c01175{font-size:47.872176pt;}
.fs9_c01175{font-size:53.222576pt;}
.fs10_c01175{font-size:58.960000pt;}
.fsc_c01175{font-size:59.136000pt;}
.fs7_c01175{font-size:66.000000pt;}
.fsb_c01175{font-size:66.528000pt;}
.fs2_c01175{font-size:66.704176pt;}
.fsd_c01175{font-size:67.232176pt;}
.fs4_c01175{font-size:67.584176pt;}
.fs6_c01175{font-size:70.400000pt;}
.fs0_c01175{font-size:76.384176pt;}
.fs8_c01175{font-size:79.552176pt;}
.y0_c01175{bottom:0.000000pt;}
.y1f_c01175{bottom:36.036907pt;}
.y1_c01175{bottom:68.000000pt;}
.y1e_c01175{bottom:136.458107pt;}
.y1d_c01175{bottom:145.645307pt;}
.y1c_c01175{bottom:157.054507pt;}
.y1b_c01175{bottom:175.112107pt;}
.y1a_c01175{bottom:203.940907pt;}
.y19_c01175{bottom:218.830507pt;}
.y18_c01175{bottom:232.765307pt;}
.y17_c01175{bottom:261.598507pt;}
.y16_c01175{bottom:290.110507pt;}
.y15_c01175{bottom:317.984507pt;}
.y12_c01175{bottom:346.175571pt;}
.y13_c01175{bottom:346.179707pt;}
.y14_c01175{bottom:351.252907pt;}
.y11_c01175{bottom:375.325307pt;}
.y10_c01175{bottom:404.792107pt;}
.yf_c01175{bottom:432.670507pt;}
.ye_c01175{bottom:460.548907pt;}
.yd_c01175{bottom:489.373307pt;}
.yc_c01175{bottom:517.885307pt;}
.yb_c01175{bottom:574.596907pt;}
.ya_c01175{bottom:603.108907pt;}
.y9_c01175{bottom:631.933307pt;}
.y8_c01175{bottom:688.640507pt;}
.y7_c01175{bottom:717.469307pt;}
.y6_c01175{bottom:774.493307pt;}
.y5_c01175{bottom:803.643307pt;}
.y4_c01175{bottom:832.467707pt;}
.y3_c01175{bottom:889.496107pt;}
.y2_c01175{bottom:948.099707pt;}
.h15_c01175{height:17.723176pt;}
.h14_c01175{height:22.110000pt;}
.h16_c01175{height:26.249438pt;}
.h3_c01175{height:31.572934pt;}
.h10_c01175{height:33.959063pt;}
.hb_c01175{height:35.446236pt;}
.h12_c01175{height:36.712500pt;}
.h7_c01175{height:37.446750pt;}
.hc_c01175{height:45.890625pt;}
.h5_c01175{height:49.929184pt;}
.he_c01175{height:58.038750pt;}
.h11_c01175{height:61.493438pt;}
.h13_c01175{height:61.677000pt;}
.hd_c01175{height:65.293594pt;}
.h4_c01175{height:65.466501pt;}
.hf_c01175{height:65.984704pt;}
.h9_c01175{height:68.835938pt;}
.h8_c01175{height:69.093750pt;}
.h6_c01175{height:70.488184pt;}
.h2_c01175{height:74.966891pt;}
.ha_c01175{height:78.076110pt;}
.h1_c01175{height:986.666667pt;}
.h0_c01175{height:1122.666667pt;}
.w1_c01175{width:689.333333pt;}
.w0_c01175{width:793.333333pt;}
.x0_c01175{left:0.000000pt;}
.x1_c01175{left:52.000000pt;}
.x40_c01175{left:70.863453pt;}
.x1a_c01175{left:71.840253pt;}
.x1b_c01175{left:89.726253pt;}
.x5a_c01175{left:118.393001pt;}
.x1c_c01175{left:119.373453pt;}
.x4_c01175{left:121.027853pt;}
.x67_c01175{left:122.691053pt;}
.x50_c01175{left:129.898253pt;}
.x3b_c01175{left:139.463853pt;}
.x42_c01175{left:140.471453pt;}
.x68_c01175{left:149.451853pt;}
.x5_c01175{left:158.991053pt;}
.x14_c01175{left:168.006653pt;}
.x1d_c01175{left:169.353053pt;}
.x4a_c01175{left:179.437853pt;}
.x62_c01175{left:180.353053pt;}
.x5f_c01175{left:188.097053pt;}
.x6_c01175{left:189.399453pt;}
.x15_c01175{left:197.953053pt;}
.x5b_c01175{left:199.387453pt;}
.x43_c01175{left:200.469853pt;}
.x4b_c01175{left:207.725453pt;}
.x3c_c01175{left:208.878253pt;}
.x51_c01175{left:217.590253pt;}
.x2f_c01175{left:219.011453pt;}
.x35_c01175{left:228.669453pt;}
.xe_c01175{left:238.961053pt;}
.x60_c01175{left:240.065453pt;}
.x1e_c01175{left:247.523453pt;}
.x7_c01175{left:249.327453pt;}
.x3d_c01175{left:257.823853pt;}
.x29_c01175{left:266.971453pt;}
.x5c_c01175{left:269.651053pt;}
.x16_c01175{left:277.148653pt;}
.xf_c01175{left:278.213453pt;}
.x2a_c01175{left:279.177053pt;}
.x63_c01175{left:285.473453pt;}
.x6c_c01175{left:286.652653pt;}
.x8_c01175{left:296.825453pt;}
.x1f_c01175{left:297.907853pt;}
.x44_c01175{left:307.372253pt;}
.x52_c01175{left:308.657053pt;}
.x30_c01175{left:316.079853pt;}
.x17_c01175{left:317.558253pt;}
.x41_c01175{left:327.049053pt;}
.x64_c01175{left:335.030653pt;}
.x69_c01175{left:336.900653pt;}
.x9_c01175{left:338.317453pt;}
.x18_c01175{left:346.646653pt;}
.x56_c01175{left:347.913853pt;}
.x20_c01175{left:349.546253pt;}
.x3e_c01175{left:356.810653pt;}
.x21_c01175{left:366.477453pt;}
.x19_c01175{left:375.994653pt;}
.x10_c01175{left:377.415853pt;}
.x53_c01175{left:386.611853pt;}
.x36_c01175{left:395.627453pt;}
.x3f_c01175{left:396.696653pt;}
.x2b_c01175{left:406.662653pt;}
.x4c_c01175{left:407.740653pt;}
.x22_c01175{left:415.599053pt;}
.x66_c01175{left:416.897053pt;}
.x6a_c01175{left:424.781853pt;}
.x45_c01175{left:426.181053pt;}
.x31_c01175{left:435.346253pt;}
.x2c_c01175{left:436.323053pt;}
.x11_c01175{left:445.866653pt;}
.x3_c01175{left:454.411453pt;}
.x57_c01175{left:455.925053pt;}
.x6d_c01175{left:464.839453pt;}
.x32_c01175{left:465.772253pt;}
.x12_c01175{left:474.642653pt;}
.x2d_c01175{left:475.931853pt;}
.x23_c01175{left:485.149853pt;}
.x6b_c01175{left:486.474253pt;}
.x37_c01175{left:493.791453pt;}
.x13_c01175{left:504.734253pt;}
.x24_c01175{left:506.599853pt;}
.x25_c01175{left:514.911453pt;}
.x54_c01175{left:523.742253pt;}
.x46_c01175{left:526.294253pt;}
.x38_c01175{left:533.818253pt;}
.x4d_c01175{left:534.861053pt;}
.x5d_c01175{left:535.776253pt;}
.x58_c01175{left:542.323453pt;}
.x33_c01175{left:544.074653pt;}
.x47_c01175{left:545.605853pt;}
.x39_c01175{left:555.118653pt;}
.x4e_c01175{left:561.595453pt;}
.xa_c01175{left:563.395053pt;}
.x48_c01175{left:564.336653pt;}
.x3a_c01175{left:572.085053pt;}
.x2e_c01175{left:573.101453pt;}
.x4f_c01175{left:583.001453pt;}
.x26_c01175{left:584.893453pt;}
.xb_c01175{left:593.156653pt;}
.x55_c01175{left:602.678253pt;}
.x27_c01175{left:610.497053pt;}
.x61_c01175{left:611.843453pt;}
.x28_c01175{left:612.912653pt;}
.x65_c01175{left:621.439853pt;}
.x2_c01175{left:622.583853pt;}
.x70_c01175{left:625.831053pt;}
.x6e_c01175{left:628.286253pt;}
.x6f_c01175{left:629.469853pt;}
.xc_c01175{left:631.999853pt;}
.x59_c01175{left:641.820653pt;}
.x49_c01175{left:642.885453pt;}
.xd_c01175{left:651.896653pt;}
.x5e_c01175{left:660.564653pt;}
.x34_c01175{left:662.857053pt;}
}





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

.ir_c01176:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01176{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01176;src:url('chunks/assets/font_0b7b6c9fe95112a2d81957a2.woff2')format("woff");}.ff1_c01176{font-family:ff1_c01176;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01176;src:url('chunks/assets/font_1e2af9ea0d766a4e270ec75a.woff2')format("woff");}.ff2_c01176{font-family:ff2_c01176;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01176;src:url('chunks/assets/font_428ed0a825fba5970179ef62.woff2')format("woff");}.ff3_c01176{font-family:ff3_c01176;line-height:0.666000;font-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_c01176{transform:matrix(0.022728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.022728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.022728,0.000000,0.000000,0.250000,0,0);}
.m27_c01176{transform:matrix(0.027778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.027778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.027778,0.000000,0.000000,0.250000,0,0);}
.m2a_c01176{transform:matrix(0.055556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.055556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.055556,0.000000,0.000000,0.250000,0,0);}
.m25_c01176{transform:matrix(0.072223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072223,0.000000,0.000000,0.250000,0,0);}
.m92_c01176{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);}
.m29_c01176{transform:matrix(0.142593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142593,0.000000,0.000000,0.250000,0,0);}
.m95_c01176{transform:matrix(0.147728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147728,0.000000,0.000000,0.250000,0,0);}
.m2b_c01176{transform:matrix(0.148148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148148,0.000000,0.000000,0.250000,0,0);}
.m28_c01176{transform:matrix(0.164815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164815,0.000000,0.000000,0.250000,0,0);}
.mc8_c01176{transform:matrix(0.165873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165873,0.000000,0.000000,0.250000,0,0);}
.m76_c01176{transform:matrix(0.166666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166666,0.000000,0.000000,0.250000,0,0);}
.m26_c01176{transform:matrix(0.168056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168056,0.000000,0.000000,0.250000,0,0);}
.mc7_c01176{transform:matrix(0.169841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169841,0.000000,0.000000,0.250000,0,0);}
.m93_c01176{transform:matrix(0.170455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170455,0.000000,0.000000,0.250000,0,0);}
.mc1_c01176{transform:matrix(0.172066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172066,0.000000,0.000000,0.250000,0,0);}
.m97_c01176{transform:matrix(0.182455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182455,0.000000,0.000000,0.250000,0,0);}
.m70_c01176{transform:matrix(0.183334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183334,0.000000,0.000000,0.250000,0,0);}
.m75_c01176{transform:matrix(0.194445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194445,0.000000,0.000000,0.250000,0,0);}
.m24_c01176{transform:matrix(0.195267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195267,0.000000,0.000000,0.250000,0,0);}
.m96_c01176{transform:matrix(0.204510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204510,0.000000,0.000000,0.250000,0,0);}
.m6d_c01176{transform:matrix(0.218158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218158,0.000000,0.000000,0.250000,0,0);}
.m11_c01176{transform:matrix(0.224645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224645,0.000000,0.000000,0.250000,0,0);}
.m7d_c01176{transform:matrix(0.242064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242064,0.000000,0.000000,0.250000,0,0);}
.m1_c01176{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m4f_c01176{transform:matrix(0.250507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250507,0.000000,0.000000,0.250000,0,0);}
.m21_c01176{transform:matrix(0.251662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251662,0.000000,0.000000,0.250000,0,0);}
.mbc_c01176{transform:matrix(0.253277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253277,0.000000,0.000000,0.250000,0,0);}
.mc6_c01176{transform:matrix(0.253889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253889,0.000000,0.000000,0.250000,0,0);}
.m7e_c01176{transform:matrix(0.256150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256150,0.000000,0.000000,0.250000,0,0);}
.mc5_c01176{transform:matrix(0.259384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259384,0.000000,0.000000,0.250000,0,0);}
.m22_c01176{transform:matrix(0.261251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261251,0.000000,0.000000,0.250000,0,0);}
.m3f_c01176{transform:matrix(0.263376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263376,0.000000,0.000000,0.250000,0,0);}
.m2_c01176{transform:matrix(0.263524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263524,0.000000,0.000000,0.250000,0,0);}
.m50_c01176{transform:matrix(0.264524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264524,0.000000,0.000000,0.250000,0,0);}
.md3_c01176{transform:matrix(0.265113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265113,0.000000,0.000000,0.250000,0,0);}
.mb4_c01176{transform:matrix(0.266286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266286,0.000000,0.000000,0.250000,0,0);}
.mb0_c01176{transform:matrix(0.267035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267035,0.000000,0.000000,0.250000,0,0);}
.m51_c01176{transform:matrix(0.267450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267450,0.000000,0.000000,0.250000,0,0);}
.m14_c01176{transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);}
.m7_c01176{transform:matrix(0.268646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268646,0.000000,0.000000,0.250000,0,0);}
.m85_c01176{transform:matrix(0.270309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270309,0.000000,0.000000,0.250000,0,0);}
.m9_c01176{transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);}
.m18_c01176{transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);}
.m10_c01176{transform:matrix(0.271211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271211,0.000000,0.000000,0.250000,0,0);}
.m83_c01176{transform:matrix(0.271838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271838,0.000000,0.000000,0.250000,0,0);}
.md0_c01176{transform:matrix(0.272127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272127,0.000000,0.000000,0.250000,0,0);}
.m2c_c01176{transform:matrix(0.272650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272650,0.000000,0.000000,0.250000,0,0);}
.m74_c01176{transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);}
.ma4_c01176{transform:matrix(0.273016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273016,0.000000,0.000000,0.250000,0,0);}
.m46_c01176{transform:matrix(0.273525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273525,0.000000,0.000000,0.250000,0,0);}
.m7a_c01176{transform:matrix(0.273567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273567,0.000000,0.000000,0.250000,0,0);}
.m78_c01176{transform:matrix(0.273568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273568,0.000000,0.000000,0.250000,0,0);}
.m79_c01176{transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);}
.maa_c01176{transform:matrix(0.273821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273821,0.000000,0.000000,0.250000,0,0);}
.mae_c01176{transform:matrix(0.273989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273989,0.000000,0.000000,0.250000,0,0);}
.m61_c01176{transform:matrix(0.274944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274944,0.000000,0.000000,0.250000,0,0);}
.m23_c01176{transform:matrix(0.275104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275104,0.000000,0.000000,0.250000,0,0);}
.m4a_c01176{transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);}
.m8a_c01176{transform:matrix(0.276672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276672,0.000000,0.000000,0.250000,0,0);}
.ma1_c01176{transform:matrix(0.276850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276850,0.000000,0.000000,0.250000,0,0);}
.m7b_c01176{transform:matrix(0.277790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277790,0.000000,0.000000,0.250000,0,0);}
.m9e_c01176{transform:matrix(0.278463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278463,0.000000,0.000000,0.250000,0,0);}
.mcd_c01176{transform:matrix(0.278676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278676,0.000000,0.000000,0.250000,0,0);}
.m5d_c01176{transform:matrix(0.280067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280067,0.000000,0.000000,0.250000,0,0);}
.m19_c01176{transform:matrix(0.280175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280175,0.000000,0.000000,0.250000,0,0);}
.m9d_c01176{transform:matrix(0.280416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280416,0.000000,0.000000,0.250000,0,0);}
.mcc_c01176{transform:matrix(0.280486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280486,0.000000,0.000000,0.250000,0,0);}
.m2e_c01176{transform:matrix(0.280516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280516,0.000000,0.000000,0.250000,0,0);}
.m98_c01176{transform:matrix(0.280710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280710,0.000000,0.000000,0.250000,0,0);}
.m59_c01176{transform:matrix(0.280800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280800,0.000000,0.000000,0.250000,0,0);}
.m52_c01176{transform:matrix(0.280809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280809,0.000000,0.000000,0.250000,0,0);}
.m38_c01176{transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);}
.m8e_c01176{transform:matrix(0.281230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281230,0.000000,0.000000,0.250000,0,0);}
.m1b_c01176{transform:matrix(0.281370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281370,0.000000,0.000000,0.250000,0,0);}
.ma6_c01176{transform:matrix(0.281425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281425,0.000000,0.000000,0.250000,0,0);}
.m53_c01176{transform:matrix(0.282511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282511,0.000000,0.000000,0.250000,0,0);}
.m89_c01176{transform:matrix(0.283239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283239,0.000000,0.000000,0.250000,0,0);}
.me_c01176{transform:matrix(0.283359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283359,0.000000,0.000000,0.250000,0,0);}
.m84_c01176{transform:matrix(0.283815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283815,0.000000,0.000000,0.250000,0,0);}
.mc_c01176{transform:matrix(0.284430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284430,0.000000,0.000000,0.250000,0,0);}
.m2d_c01176{transform:matrix(0.284620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284620,0.000000,0.000000,0.250000,0,0);}
.mce_c01176{transform:matrix(0.285120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285120,0.000000,0.000000,0.250000,0,0);}
.mcf_c01176{transform:matrix(0.285244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285244,0.000000,0.000000,0.250000,0,0);}
.m42_c01176{transform:matrix(0.285582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285582,0.000000,0.000000,0.250000,0,0);}
.ma8_c01176{transform:matrix(0.285652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285652,0.000000,0.000000,0.250000,0,0);}
.mc9_c01176{transform:matrix(0.285722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285722,0.000000,0.000000,0.250000,0,0);}
.m82_c01176{transform:matrix(0.286468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286468,0.000000,0.000000,0.250000,0,0);}
.m9c_c01176{transform:matrix(0.286542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286542,0.000000,0.000000,0.250000,0,0);}
.m66_c01176{transform:matrix(0.286635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286635,0.000000,0.000000,0.250000,0,0);}
.mc0_c01176{transform:matrix(0.287247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287247,0.000000,0.000000,0.250000,0,0);}
.mb1_c01176{transform:matrix(0.287438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287438,0.000000,0.000000,0.250000,0,0);}
.m31_c01176{transform:matrix(0.287776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287776,0.000000,0.000000,0.250000,0,0);}
.mc3_c01176{transform:matrix(0.288134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288134,0.000000,0.000000,0.250000,0,0);}
.m6f_c01176{transform:matrix(0.288340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288340,0.000000,0.000000,0.250000,0,0);}
.ma_c01176{transform:matrix(0.288440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288440,0.000000,0.000000,0.250000,0,0);}
.mc4_c01176{transform:matrix(0.289678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289678,0.000000,0.000000,0.250000,0,0);}
.m5e_c01176{transform:matrix(0.289726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289726,0.000000,0.000000,0.250000,0,0);}
.m8f_c01176{transform:matrix(0.290579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290579,0.000000,0.000000,0.250000,0,0);}
.m20_c01176{transform:matrix(0.291398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291398,0.000000,0.000000,0.250000,0,0);}
.m6_c01176{transform:matrix(0.291495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291495,0.000000,0.000000,0.250000,0,0);}
.mc2_c01176{transform:matrix(0.293085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293085,0.000000,0.000000,0.250000,0,0);}
.m0_c01176{transform:matrix(0.293303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293303,0.000000,0.000000,0.250000,0,0);}
.m5_c01176{transform:matrix(0.294025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294025,0.000000,0.000000,0.250000,0,0);}
.m3_c01176{transform:matrix(0.294640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294640,0.000000,0.000000,0.250000,0,0);}
.ma7_c01176{transform:matrix(0.295219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295219,0.000000,0.000000,0.250000,0,0);}
.m1c_c01176{transform:matrix(0.295425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295425,0.000000,0.000000,0.250000,0,0);}
.md2_c01176{transform:matrix(0.295890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295890,0.000000,0.000000,0.250000,0,0);}
.m3c_c01176{transform:matrix(0.296044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296044,0.000000,0.000000,0.250000,0,0);}
.m15_c01176{transform:matrix(0.296335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296335,0.000000,0.000000,0.250000,0,0);}
.m39_c01176{transform:matrix(0.296442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296442,0.000000,0.000000,0.250000,0,0);}
.m8d_c01176{transform:matrix(0.296995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296995,0.000000,0.000000,0.250000,0,0);}
.m30_c01176{transform:matrix(0.297233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297233,0.000000,0.000000,0.250000,0,0);}
.m4b_c01176{transform:matrix(0.297652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297652,0.000000,0.000000,0.250000,0,0);}
.m6c_c01176{transform:matrix(0.297812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297812,0.000000,0.000000,0.250000,0,0);}
.m57_c01176{transform:matrix(0.298071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298071,0.000000,0.000000,0.250000,0,0);}
.mb9_c01176{transform:matrix(0.298230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298230,0.000000,0.000000,0.250000,0,0);}
.m9a_c01176{transform:matrix(0.298317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298317,0.000000,0.000000,0.250000,0,0);}
.m56_c01176{transform:matrix(0.298749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298749,0.000000,0.000000,0.250000,0,0);}
.mb5_c01176{transform:matrix(0.299237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299237,0.000000,0.000000,0.250000,0,0);}
.mb7_c01176{transform:matrix(0.299971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299971,0.000000,0.000000,0.250000,0,0);}
.m3d_c01176{transform:matrix(0.300559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300559,0.000000,0.000000,0.250000,0,0);}
.m60_c01176{transform:matrix(0.300565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300565,0.000000,0.000000,0.250000,0,0);}
.m6b_c01176{transform:matrix(0.301417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301417,0.000000,0.000000,0.250000,0,0);}
.m45_c01176{transform:matrix(0.302457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302457,0.000000,0.000000,0.250000,0,0);}
.maf_c01176{transform:matrix(0.302602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302602,0.000000,0.000000,0.250000,0,0);}
.m5a_c01176{transform:matrix(0.303043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303043,0.000000,0.000000,0.250000,0,0);}
.m5c_c01176{transform:matrix(0.303518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303518,0.000000,0.000000,0.250000,0,0);}
.m41_c01176{transform:matrix(0.303939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303939,0.000000,0.000000,0.250000,0,0);}
.mba_c01176{transform:matrix(0.303983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303983,0.000000,0.000000,0.250000,0,0);}
.mb8_c01176{transform:matrix(0.304308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304308,0.000000,0.000000,0.250000,0,0);}
.ma5_c01176{transform:matrix(0.304894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304894,0.000000,0.000000,0.250000,0,0);}
.m49_c01176{transform:matrix(0.306071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306071,0.000000,0.000000,0.250000,0,0);}
.mb6_c01176{transform:matrix(0.306436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306436,0.000000,0.000000,0.250000,0,0);}
.m4d_c01176{transform:matrix(0.306458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306458,0.000000,0.000000,0.250000,0,0);}
.m2f_c01176{transform:matrix(0.307188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307188,0.000000,0.000000,0.250000,0,0);}
.m4c_c01176{transform:matrix(0.307262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307262,0.000000,0.000000,0.250000,0,0);}
.m71_c01176{transform:matrix(0.307436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307436,0.000000,0.000000,0.250000,0,0);}
.m7f_c01176{transform:matrix(0.308652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308652,0.000000,0.000000,0.250000,0,0);}
.m63_c01176{transform:matrix(0.309761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309761,0.000000,0.000000,0.250000,0,0);}
.m48_c01176{transform:matrix(0.309891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309891,0.000000,0.000000,0.250000,0,0);}
.m17_c01176{transform:matrix(0.310929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310929,0.000000,0.000000,0.250000,0,0);}
.m3b_c01176{transform:matrix(0.311059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311059,0.000000,0.000000,0.250000,0,0);}
.m86_c01176{transform:matrix(0.311099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311099,0.000000,0.000000,0.250000,0,0);}
.m73_c01176{transform:matrix(0.311134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311134,0.000000,0.000000,0.250000,0,0);}
.m91_c01176{transform:matrix(0.312345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312345,0.000000,0.000000,0.250000,0,0);}
.m67_c01176{transform:matrix(0.312698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312698,0.000000,0.000000,0.250000,0,0);}
.mbe_c01176{transform:matrix(0.313252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313252,0.000000,0.000000,0.250000,0,0);}
.m87_c01176{transform:matrix(0.316292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316292,0.000000,0.000000,0.250000,0,0);}
.m64_c01176{transform:matrix(0.316960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316960,0.000000,0.000000,0.250000,0,0);}
.m35_c01176{transform:matrix(0.318012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318012,0.000000,0.000000,0.250000,0,0);}
.md1_c01176{transform:matrix(0.318584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318584,0.000000,0.000000,0.250000,0,0);}
.m8b_c01176{transform:matrix(0.319203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319203,0.000000,0.000000,0.250000,0,0);}
.m8_c01176{transform:matrix(0.320581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320581,0.000000,0.000000,0.250000,0,0);}
.m68_c01176{transform:matrix(0.320692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320692,0.000000,0.000000,0.250000,0,0);}
.m6a_c01176{transform:matrix(0.321031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321031,0.000000,0.000000,0.250000,0,0);}
.ma3_c01176{transform:matrix(0.322320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322320,0.000000,0.000000,0.250000,0,0);}
.m80_c01176{transform:matrix(0.323194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323194,0.000000,0.000000,0.250000,0,0);}
.m1f_c01176{transform:matrix(0.323341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323341,0.000000,0.000000,0.250000,0,0);}
.mbd_c01176{transform:matrix(0.324021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324021,0.000000,0.000000,0.250000,0,0);}
.m62_c01176{transform:matrix(0.324101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324101,0.000000,0.000000,0.250000,0,0);}
.m5f_c01176{transform:matrix(0.325448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325448,0.000000,0.000000,0.250000,0,0);}
.m1d_c01176{transform:matrix(0.326406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326406,0.000000,0.000000,0.250000,0,0);}
.m69_c01176{transform:matrix(0.327721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327721,0.000000,0.000000,0.250000,0,0);}
.mcb_c01176{transform:matrix(0.329915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329915,0.000000,0.000000,0.250000,0,0);}
.mca_c01176{transform:matrix(0.330299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330299,0.000000,0.000000,0.250000,0,0);}
.m43_c01176{transform:matrix(0.331366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331366,0.000000,0.000000,0.250000,0,0);}
.m33_c01176{transform:matrix(0.331567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331567,0.000000,0.000000,0.250000,0,0);}
.m16_c01176{transform:matrix(0.331575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331575,0.000000,0.000000,0.250000,0,0);}
.ma2_c01176{transform:matrix(0.332850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332850,0.000000,0.000000,0.250000,0,0);}
.m7c_c01176{transform:matrix(0.332874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332874,0.000000,0.000000,0.250000,0,0);}
.m8c_c01176{transform:matrix(0.333209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333209,0.000000,0.000000,0.250000,0,0);}
.m99_c01176{transform:matrix(0.334293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334293,0.000000,0.000000,0.250000,0,0);}
.m55_c01176{transform:matrix(0.334531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334531,0.000000,0.000000,0.250000,0,0);}
.m1a_c01176{transform:matrix(0.334964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334964,0.000000,0.000000,0.250000,0,0);}
.m3e_c01176{transform:matrix(0.335919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335919,0.000000,0.000000,0.250000,0,0);}
.m90_c01176{transform:matrix(0.336676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336676,0.000000,0.000000,0.250000,0,0);}
.m32_c01176{transform:matrix(0.338854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338854,0.000000,0.000000,0.250000,0,0);}
.m65_c01176{transform:matrix(0.339155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339155,0.000000,0.000000,0.250000,0,0);}
.m36_c01176{transform:matrix(0.340091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340091,0.000000,0.000000,0.250000,0,0);}
.m37_c01176{transform:matrix(0.341189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341189,0.000000,0.000000,0.250000,0,0);}
.m77_c01176{transform:matrix(0.341599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341599,0.000000,0.000000,0.250000,0,0);}
.ma0_c01176{transform:matrix(0.341992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341992,0.000000,0.000000,0.250000,0,0);}
.m54_c01176{transform:matrix(0.342460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342460,0.000000,0.000000,0.250000,0,0);}
.md_c01176{transform:matrix(0.342830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342830,0.000000,0.000000,0.250000,0,0);}
.mbf_c01176{transform:matrix(0.343085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343085,0.000000,0.000000,0.250000,0,0);}
.m13_c01176{transform:matrix(0.344151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344151,0.000000,0.000000,0.250000,0,0);}
.m34_c01176{transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);}
.m47_c01176{transform:matrix(0.346921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346921,0.000000,0.000000,0.250000,0,0);}
.m9b_c01176{transform:matrix(0.347635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347635,0.000000,0.000000,0.250000,0,0);}
.m44_c01176{transform:matrix(0.347685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347685,0.000000,0.000000,0.250000,0,0);}
.mac_c01176{transform:matrix(0.348177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348177,0.000000,0.000000,0.250000,0,0);}
.m1e_c01176{transform:matrix(0.351053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351053,0.000000,0.000000,0.250000,0,0);}
.m72_c01176{transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);}
.mb_c01176{transform:matrix(0.354598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354598,0.000000,0.000000,0.250000,0,0);}
.m12_c01176{transform:matrix(0.354724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354724,0.000000,0.000000,0.250000,0,0);}
.m40_c01176{transform:matrix(0.355252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355252,0.000000,0.000000,0.250000,0,0);}
.mb2_c01176{transform:matrix(0.357991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357991,0.000000,0.000000,0.250000,0,0);}
.mf_c01176{transform:matrix(0.362510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362510,0.000000,0.000000,0.250000,0,0);}
.ma9_c01176{transform:matrix(0.362517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362517,0.000000,0.000000,0.250000,0,0);}
.m3a_c01176{transform:matrix(0.363147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363147,0.000000,0.000000,0.250000,0,0);}
.m9f_c01176{transform:matrix(0.364057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364057,0.000000,0.000000,0.250000,0,0);}
.m4e_c01176{transform:matrix(0.364277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364277,0.000000,0.000000,0.250000,0,0);}
.m88_c01176{transform:matrix(0.365515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365515,0.000000,0.000000,0.250000,0,0);}
.mad_c01176{transform:matrix(0.366057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366057,0.000000,0.000000,0.250000,0,0);}
.mbb_c01176{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);}
.m58_c01176{transform:matrix(0.368367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368367,0.000000,0.000000,0.250000,0,0);}
.mab_c01176{transform:matrix(0.375189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375189,0.000000,0.000000,0.250000,0,0);}
.m5b_c01176{transform:matrix(0.386710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386710,0.000000,0.000000,0.250000,0,0);}
.m4_c01176{transform:matrix(0.387414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387414,0.000000,0.000000,0.250000,0,0);}
.mb3_c01176{transform:matrix(0.388962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388962,0.000000,0.000000,0.250000,0,0);}
.m81_c01176{transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);}
.m6e_c01176{transform:matrix(0.408331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408331,0.000000,0.000000,0.250000,0,0);}
.v0_c01176{vertical-align:0.000000px;}
.ls1b_c01176{letter-spacing:-3.132367px;}
.ls11_c01176{letter-spacing:-2.772000px;}
.ls5_c01176{letter-spacing:-2.647267px;}
.ls10_c01176{letter-spacing:-2.518685px;}
.ls7_c01176{letter-spacing:-1.358280px;}
.lsc_c01176{letter-spacing:-1.239325px;}
.ls18_c01176{letter-spacing:-1.073536px;}
.lsf_c01176{letter-spacing:-0.242036px;}
.ls1d_c01176{letter-spacing:-0.121018px;}
.ls1_c01176{letter-spacing:0.000000px;}
.ls4_c01176{letter-spacing:0.574835px;}
.ls17_c01176{letter-spacing:0.694744px;}
.ls6_c01176{letter-spacing:1.210179px;}
.ls1a_c01176{letter-spacing:1.300943px;}
.ls19_c01176{letter-spacing:1.930500px;}
.ls9_c01176{letter-spacing:2.155632px;}
.ls16_c01176{letter-spacing:3.405610px;}
.ls12_c01176{letter-spacing:3.504610px;}
.ls1c_c01176{letter-spacing:3.539774px;}
.ls15_c01176{letter-spacing:3.577592px;}
.ls14_c01176{letter-spacing:3.603610px;}
.ls2_c01176{letter-spacing:3.722400px;}
.ls3_c01176{letter-spacing:3.781810px;}
.lsb_c01176{letter-spacing:3.801610px;}
.ls0_c01176{letter-spacing:3.880810px;}
.lsd_c01176{letter-spacing:4.177810px;}
.ls13_c01176{letter-spacing:4.375810px;}
.lsa_c01176{letter-spacing:59.875398px;}
.lse_c01176{letter-spacing:62.726400px;}
.ls8_c01176{letter-spacing:64.152198px;}
.sc__c01176{text-shadow:none;}
.sc0_c01176{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01176{-webkit-text-stroke:0px transparent;}
.sc0_c01176{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01176{word-spacing:-0.475200px;}
.ws1_c01176{word-spacing:0.000000px;}
._4_c01176{margin-left:-8.396454px;}
._6_c01176{margin-left:-6.509097px;}
._0_c01176{margin-left:-3.932316px;}
._2_c01176{width:1.313878px;}
._8_c01176{width:5.168988px;}
._3_c01176{width:6.202229px;}
._5_c01176{width:7.941890px;}
._7_c01176{width:14.826240px;}
._1_c01176{width:51.083901px;}
.fc0_c01176{color:transparent;}
.fs15_c01176{font-size:27.720000px;}
.fs12_c01176{font-size:38.610000px;}
.fs4_c01176{font-size:38.808000px;}
.fs1_c01176{font-size:39.600000px;}
.fs9_c01176{font-size:59.875398px;}
.fsc_c01176{font-size:62.726400px;}
.fs5_c01176{font-size:64.152198px;}
.fs8_c01176{font-size:66.330000px;}
.fs11_c01176{font-size:67.518000px;}
.fs10_c01176{font-size:68.112198px;}
.fsd_c01176{font-size:70.092198px;}
.fsf_c01176{font-size:72.072198px;}
.fs2_c01176{font-size:74.448000px;}
.fs3_c01176{font-size:75.636198px;}
.fsa_c01176{font-size:76.032198px;}
.fs0_c01176{font-size:77.616198px;}
.fs7_c01176{font-size:79.200000px;}
.fsb_c01176{font-size:83.556198px;}
.fse_c01176{font-size:87.516198px;}
.fs13_c01176{font-size:89.496198px;}
.fs14_c01176{font-size:90.684000px;}
.fs6_c01176{font-size:93.852198px;}
.y0_c01176{bottom:0.000000px;}
.y1_c01176{bottom:76.500000px;}
.y1e_c01176{bottom:85.086585px;}
.y1d_c01176{bottom:121.444335px;}
.y1c_c01176{bottom:154.228185px;}
.y1b_c01176{bottom:219.810735px;}
.y19_c01176{bottom:253.668735px;}
.y1a_c01176{bottom:259.014735px;}
.y18_c01176{bottom:285.383385px;}
.y17_c01176{bottom:317.820735px;}
.y16_c01176{bottom:349.891785px;}
.y15_c01176{bottom:382.329135px;}
.y14_c01176{bottom:413.687385px;}
.y13_c01176{bottom:446.837535px;}
.y12_c01176{bottom:479.264985px;}
.y11_c01176{bottom:510.989535px;}
.y10_c01176{bottom:542.709135px;}
.yf_c01176{bottom:574.423785px;}
.ye_c01176{bottom:606.504735px;}
.yd_c01176{bottom:638.219385px;}
.yc_c01176{bottom:670.651785px;}
.yb_c01176{bottom:703.089135px;}
.ya_c01176{bottom:734.803785px;}
.y9_c01176{bottom:767.236185px;}
.y8_c01176{bottom:799.668585px;}
.y7_c01176{bottom:831.749535px;}
.y6_c01176{bottom:864.176985px;}
.y5_c01176{bottom:895.901535px;}
.y4_c01176{bottom:926.908335px;}
.y3_c01176{bottom:945.436185px;}
.y2_c01176{bottom:1074.096585px;}
.h17_c01176{height:28.911094px;}
.h6_c01176{height:38.087930px;}
.hb_c01176{height:39.877015px;}
.h14_c01176{height:40.269023px;}
.h3_c01176{height:41.301563px;}
.he_c01176{height:41.775782px;}
.h7_c01176{height:42.725364px;}
.ha_c01176{height:69.180117px;}
.h13_c01176{height:70.419164px;}
.h11_c01176{height:70.734921px;}
.h12_c01176{height:71.038894px;}
.h4_c01176{height:73.066641px;}
.hf_c01176{height:73.103972px;}
.h5_c01176{height:74.232792px;}
.hc_c01176{height:74.621444px;}
.h2_c01176{height:76.176054px;}
.h9_c01176{height:77.730469px;}
.hd_c01176{height:82.005839px;}
.h10_c01176{height:85.892362px;}
.h15_c01176{height:87.835624px;}
.h16_c01176{height:89.001387px;}
.h8_c01176{height:92.110800px;}
.h1_c01176{height:1110.000000px;}
.h0_c01176{height:1263.000000px;}
.w1_c01176{width:775.500000px;}
.w0_c01176{width:892.500000px;}
.x0_c01176{left:0.000000px;}
.x1_c01176{left:58.500000px;}
.x6e_c01176{left:85.958385px;}
.x5_c01176{left:88.809585px;}
.x2a_c01176{left:140.368785px;}
.x4d_c01176{left:141.437985px;}
.x6_c01176{left:143.502135px;}
.x6c_c01176{left:166.158285px;}
.x41_c01176{left:174.855435px;}
.x6d_c01176{left:185.695935px;}
.x2b_c01176{left:189.344085px;}
.x38_c01176{left:196.244385px;}
.x19_c01176{left:197.392785px;}
.x7_c01176{left:209.465835px;}
.x53_c01176{left:220.034085px;}
.x37_c01176{left:221.449785px;}
.x72_c01176{left:229.137135px;}
.x4b_c01176{left:231.028035px;}
.x69_c01176{left:240.635985px;}
.x4e_c01176{left:241.650735px;}
.x20_c01176{left:243.863385px;}
.x57_c01176{left:252.560535px;}
.x8_c01176{left:253.768335px;}
.x2c_c01176{left:256.218585px;}
.x6f_c01176{left:263.722785px;}
.x4c_c01176{left:264.866235px;}
.x66_c01176{left:273.810885px;}
.x31_c01176{left:275.612685px;}
.x1a_c01176{left:277.038285px;}
.x42_c01176{left:286.448235px;}
.x3a_c01176{left:297.115485px;}
.x10_c01176{left:298.793535px;}
.x6a_c01176{left:307.035285px;}
.x39_c01176{left:308.589585px;}
.x1b_c01176{left:309.846885px;}
.x73_c01176{left:317.766885px;}
.x2d_c01176{left:319.647885px;}
.x9_c01176{left:322.207035px;}
.x34_c01176{left:331.201185px;}
.x43_c01176{left:340.591335px;}
.x11_c01176{left:342.764385px;}
.x54_c01176{left:352.619835px;}
.xa_c01176{left:354.055335px;}
.x58_c01176{left:361.980285px;}
.x4f_c01176{left:363.410835px;}
.x21_c01176{left:374.875035px;}
.x62_c01176{left:384.537435px;}
.xb_c01176{left:387.774735px;}
.x5a_c01176{left:395.595735px;}
.x55_c01176{left:398.224185px;}
.x3b_c01176{left:409.787385px;}
.x32_c01176{left:420.563535px;}
.x12_c01176{left:423.880035px;}
.x74_c01176{left:428.335035px;}
.x70_c01176{left:429.448785px;}
.x50_c01176{left:430.522935px;}
.x13_c01176{left:432.092085px;}
.xc_c01176{left:441.526785px;}
.x44_c01176{left:443.397885px;}
.x14_c01176{left:453.287985px;}
.x3c_c01176{left:463.979985px;}
.x22_c01176{left:465.583785px;}
.x3d_c01176{left:475.518435px;}
.x2e_c01176{left:476.592585px;}
.x63_c01176{left:484.289835px;}
.x45_c01176{left:485.898585px;}
.x15_c01176{left:488.220135px;}
.x67_c01176{left:495.046185px;}
.x61_c01176{left:496.580685px;}
.xd_c01176{left:498.031035px;}
.x1c_c01176{left:507.386535px;}
.x5b_c01176{left:517.835985px;}
.x64_c01176{left:519.038835px;}
.x16_c01176{left:521.434635px;}
.x5c_c01176{left:528.889335px;}
.x2f_c01176{left:531.052485px;}
.x23_c01176{left:533.255235px;}
.xe_c01176{left:543.264135px;}
.x24_c01176{left:544.922385px;}
.x5d_c01176{left:545.981685px;}
.x71_c01176{left:549.530835px;}
.x17_c01176{left:553.045335px;}
.x25_c01176{left:563.103735px;}
.x5e_c01176{left:573.107685px;}
.x46_c01176{left:575.320335px;}
.x1d_c01176{left:584.388735px;}
.x51_c01176{left:586.007385px;}
.x35_c01176{left:587.066685px;}
.x3e_c01176{left:588.754635px;}
.x5f_c01176{left:596.036085px;}
.x1e_c01176{left:597.456735px;}
.x26_c01176{left:606.935985px;}
.x27_c01176{left:608.010135px;}
.x33_c01176{left:609.104085px;}
.x65_c01176{left:627.557685px;}
.x3f_c01176{left:629.161485px;}
.xf_c01176{left:630.186135px;}
.x47_c01176{left:639.363435px;}
.x4_c01176{left:641.595885px;}
.x1f_c01176{left:652.688835px;}
.x56_c01176{left:662.692785px;}
.x30_c01176{left:663.885735px;}
.x75_c01176{left:669.197085px;}
.x68_c01176{left:672.399735px;}
.x18_c01176{left:673.577835px;}
.x48_c01176{left:683.532285px;}
.x6b_c01176{left:693.872835px;}
.x59_c01176{left:695.412285px;}
.x36_c01176{left:697.540785px;}
.x2_c01176{left:699.684135px;}
.x40_c01176{left:704.109435px;}
.x28_c01176{left:706.020135px;}
.x60_c01176{left:707.445735px;}
.x29_c01176{left:708.871335px;}
.x49_c01176{left:716.662635px;}
.x4a_c01176{left:718.241685px;}
.x3_c01176{left:733.368885px;}
.x52_c01176{left:740.942385px;}
@media print{
.v0_c01176{vertical-align:0.000000pt;}
.ls1b_c01176{letter-spacing:-2.784326pt;}
.ls11_c01176{letter-spacing:-2.464000pt;}
.ls5_c01176{letter-spacing:-2.353126pt;}
.ls10_c01176{letter-spacing:-2.238831pt;}
.ls7_c01176{letter-spacing:-1.207360pt;}
.lsc_c01176{letter-spacing:-1.101622pt;}
.ls18_c01176{letter-spacing:-0.954254pt;}
.lsf_c01176{letter-spacing:-0.215143pt;}
.ls1d_c01176{letter-spacing:-0.107571pt;}
.ls1_c01176{letter-spacing:0.000000pt;}
.ls4_c01176{letter-spacing:0.510965pt;}
.ls17_c01176{letter-spacing:0.617551pt;}
.ls6_c01176{letter-spacing:1.075715pt;}
.ls1a_c01176{letter-spacing:1.156393pt;}
.ls19_c01176{letter-spacing:1.716000pt;}
.ls9_c01176{letter-spacing:1.916117pt;}
.ls16_c01176{letter-spacing:3.027209pt;}
.ls12_c01176{letter-spacing:3.115209pt;}
.ls1c_c01176{letter-spacing:3.146466pt;}
.ls15_c01176{letter-spacing:3.180082pt;}
.ls14_c01176{letter-spacing:3.203209pt;}
.ls2_c01176{letter-spacing:3.308800pt;}
.ls3_c01176{letter-spacing:3.361609pt;}
.lsb_c01176{letter-spacing:3.379209pt;}
.ls0_c01176{letter-spacing:3.449609pt;}
.lsd_c01176{letter-spacing:3.713609pt;}
.ls13_c01176{letter-spacing:3.889609pt;}
.lsa_c01176{letter-spacing:53.222576pt;}
.lse_c01176{letter-spacing:55.756800pt;}
.ls8_c01176{letter-spacing:57.024176pt;}
.ws0_c01176{word-spacing:-0.422400pt;}
.ws1_c01176{word-spacing:0.000000pt;}
._4_c01176{margin-left:-7.463515pt;}
._6_c01176{margin-left:-5.785864pt;}
._0_c01176{margin-left:-3.495392pt;}
._2_c01176{width:1.167892pt;}
._8_c01176{width:4.594656pt;}
._3_c01176{width:5.513092pt;}
._5_c01176{width:7.059458pt;}
._7_c01176{width:13.178880pt;}
._1_c01176{width:45.407912pt;}
.fs15_c01176{font-size:24.640000pt;}
.fs12_c01176{font-size:34.320000pt;}
.fs4_c01176{font-size:34.496000pt;}
.fs1_c01176{font-size:35.200000pt;}
.fs9_c01176{font-size:53.222576pt;}
.fsc_c01176{font-size:55.756800pt;}
.fs5_c01176{font-size:57.024176pt;}
.fs8_c01176{font-size:58.960000pt;}
.fs11_c01176{font-size:60.016000pt;}
.fs10_c01176{font-size:60.544176pt;}
.fsd_c01176{font-size:62.304176pt;}
.fsf_c01176{font-size:64.064176pt;}
.fs2_c01176{font-size:66.176000pt;}
.fs3_c01176{font-size:67.232176pt;}
.fsa_c01176{font-size:67.584176pt;}
.fs0_c01176{font-size:68.992176pt;}
.fs7_c01176{font-size:70.400000pt;}
.fsb_c01176{font-size:74.272176pt;}
.fse_c01176{font-size:77.792176pt;}
.fs13_c01176{font-size:79.552176pt;}
.fs14_c01176{font-size:80.608000pt;}
.fs6_c01176{font-size:83.424176pt;}
.y0_c01176{bottom:0.000000pt;}
.y1_c01176{bottom:68.000000pt;}
.y1e_c01176{bottom:75.632520pt;}
.y1d_c01176{bottom:107.950520pt;}
.y1c_c01176{bottom:137.091720pt;}
.y1b_c01176{bottom:195.387320pt;}
.y19_c01176{bottom:225.483320pt;}
.y1a_c01176{bottom:230.235320pt;}
.y18_c01176{bottom:253.674120pt;}
.y17_c01176{bottom:282.507320pt;}
.y16_c01176{bottom:311.014920pt;}
.y15_c01176{bottom:339.848120pt;}
.y14_c01176{bottom:367.722120pt;}
.y13_c01176{bottom:397.188920pt;}
.y12_c01176{bottom:426.013320pt;}
.y11_c01176{bottom:454.212920pt;}
.y10_c01176{bottom:482.408120pt;}
.yf_c01176{bottom:510.598920pt;}
.ye_c01176{bottom:539.115320pt;}
.yd_c01176{bottom:567.306120pt;}
.yc_c01176{bottom:596.134920pt;}
.yb_c01176{bottom:624.968120pt;}
.ya_c01176{bottom:653.158920pt;}
.y9_c01176{bottom:681.987720pt;}
.y8_c01176{bottom:710.816520pt;}
.y7_c01176{bottom:739.332920pt;}
.y6_c01176{bottom:768.157320pt;}
.y5_c01176{bottom:796.356920pt;}
.y4_c01176{bottom:823.918520pt;}
.y3_c01176{bottom:840.387720pt;}
.y2_c01176{bottom:954.752520pt;}
.h17_c01176{height:25.698750pt;}
.h6_c01176{height:33.855938pt;}
.hb_c01176{height:35.446236pt;}
.h14_c01176{height:35.794688pt;}
.h3_c01176{height:36.712500pt;}
.he_c01176{height:37.134029pt;}
.h7_c01176{height:37.978101pt;}
.ha_c01176{height:61.493438pt;}
.h13_c01176{height:62.594813pt;}
.h11_c01176{height:62.875485pt;}
.h12_c01176{height:63.145684pt;}
.h4_c01176{height:64.948125pt;}
.hf_c01176{height:64.981309pt;}
.h5_c01176{height:65.984704pt;}
.hc_c01176{height:66.330173pt;}
.h2_c01176{height:67.712048pt;}
.h9_c01176{height:69.093750pt;}
.hd_c01176{height:72.894079pt;}
.h10_c01176{height:76.348766pt;}
.h15_c01176{height:78.076110pt;}
.h16_c01176{height:79.112344pt;}
.h8_c01176{height:81.876266pt;}
.h1_c01176{height:986.666667pt;}
.h0_c01176{height:1122.666667pt;}
.w1_c01176{width:689.333333pt;}
.w0_c01176{width:793.333333pt;}
.x0_c01176{left:0.000000pt;}
.x1_c01176{left:52.000000pt;}
.x6e_c01176{left:76.407453pt;}
.x5_c01176{left:78.941853pt;}
.x2a_c01176{left:124.772253pt;}
.x4d_c01176{left:125.722653pt;}
.x6_c01176{left:127.557453pt;}
.x6c_c01176{left:147.696253pt;}
.x41_c01176{left:155.427053pt;}
.x6d_c01176{left:165.063053pt;}
.x2b_c01176{left:168.305853pt;}
.x38_c01176{left:174.439453pt;}
.x19_c01176{left:175.460253pt;}
.x7_c01176{left:186.191853pt;}
.x53_c01176{left:195.585853pt;}
.x37_c01176{left:196.844253pt;}
.x72_c01176{left:203.677453pt;}
.x4b_c01176{left:205.358253pt;}
.x69_c01176{left:213.898653pt;}
.x4e_c01176{left:214.800653pt;}
.x20_c01176{left:216.767453pt;}
.x57_c01176{left:224.498253pt;}
.x8_c01176{left:225.571853pt;}
.x2c_c01176{left:227.749853pt;}
.x6f_c01176{left:234.420253pt;}
.x4c_c01176{left:235.436653pt;}
.x66_c01176{left:243.387453pt;}
.x31_c01176{left:244.989053pt;}
.x1a_c01176{left:246.256253pt;}
.x42_c01176{left:254.620653pt;}
.x3a_c01176{left:264.102653pt;}
.x10_c01176{left:265.594253pt;}
.x6a_c01176{left:272.920253pt;}
.x39_c01176{left:274.301853pt;}
.x1b_c01176{left:275.419453pt;}
.x73_c01176{left:282.459453pt;}
.x2d_c01176{left:284.131453pt;}
.x9_c01176{left:286.406253pt;}
.x34_c01176{left:294.401053pt;}
.x43_c01176{left:302.747853pt;}
.x11_c01176{left:304.679453pt;}
.x54_c01176{left:313.439853pt;}
.xa_c01176{left:314.715853pt;}
.x58_c01176{left:321.760253pt;}
.x4f_c01176{left:323.031853pt;}
.x21_c01176{left:333.222253pt;}
.x62_c01176{left:341.811053pt;}
.xb_c01176{left:344.688653pt;}
.x5a_c01176{left:351.640653pt;}
.x55_c01176{left:353.977053pt;}
.x3b_c01176{left:364.255453pt;}
.x32_c01176{left:373.834253pt;}
.x12_c01176{left:376.782253pt;}
.x74_c01176{left:380.742253pt;}
.x70_c01176{left:381.732253pt;}
.x50_c01176{left:382.687053pt;}
.x13_c01176{left:384.081853pt;}
.xc_c01176{left:392.468253pt;}
.x44_c01176{left:394.131453pt;}
.x14_c01176{left:402.922653pt;}
.x3c_c01176{left:412.426653pt;}
.x22_c01176{left:413.852253pt;}
.x3d_c01176{left:422.683053pt;}
.x2e_c01176{left:423.637853pt;}
.x63_c01176{left:430.479853pt;}
.x45_c01176{left:431.909853pt;}
.x15_c01176{left:433.973453pt;}
.x67_c01176{left:440.041053pt;}
.x61_c01176{left:441.405053pt;}
.xd_c01176{left:442.694253pt;}
.x1c_c01176{left:451.010253pt;}
.x5b_c01176{left:460.298653pt;}
.x64_c01176{left:461.367853pt;}
.x16_c01176{left:463.497453pt;}
.x5c_c01176{left:470.123853pt;}
.x2f_c01176{left:472.046653pt;}
.x23_c01176{left:474.004653pt;}
.xe_c01176{left:482.901453pt;}
.x24_c01176{left:484.375453pt;}
.x5d_c01176{left:485.317053pt;}
.x71_c01176{left:488.471853pt;}
.x17_c01176{left:491.595853pt;}
.x25_c01176{left:500.536653pt;}
.x5e_c01176{left:509.429053pt;}
.x46_c01176{left:511.395853pt;}
.x1d_c01176{left:519.456653pt;}
.x51_c01176{left:520.895453pt;}
.x35_c01176{left:521.837053pt;}
.x3e_c01176{left:523.337453pt;}
.x5f_c01176{left:529.809853pt;}
.x1e_c01176{left:531.072653pt;}
.x26_c01176{left:539.498653pt;}
.x27_c01176{left:540.453453pt;}
.x33_c01176{left:541.425853pt;}
.x65_c01176{left:557.829053pt;}
.x3f_c01176{left:559.254653pt;}
.xf_c01176{left:560.165453pt;}
.x47_c01176{left:568.323053pt;}
.x4_c01176{left:570.307453pt;}
.x1f_c01176{left:580.167853pt;}
.x56_c01176{left:589.060253pt;}
.x30_c01176{left:590.120653pt;}
.x75_c01176{left:594.841853pt;}
.x68_c01176{left:597.688653pt;}
.x18_c01176{left:598.735853pt;}
.x48_c01176{left:607.584253pt;}
.x6b_c01176{left:616.775853pt;}
.x59_c01176{left:618.144253pt;}
.x36_c01176{left:620.036253pt;}
.x2_c01176{left:621.941453pt;}
.x40_c01176{left:625.875053pt;}
.x28_c01176{left:627.573453pt;}
.x60_c01176{left:628.840653pt;}
.x29_c01176{left:630.107853pt;}
.x49_c01176{left:637.033453pt;}
.x4a_c01176{left:638.437053pt;}
.x3_c01176{left:651.883453pt;}
.x52_c01176{left:658.615453pt;}
}





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

.ir_c01177:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01177{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01177;src:url('chunks/assets/font_bea351db94825c1d284a88e6.woff2')format("woff");}.ff1_c01177{font-family:ff1_c01177;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01177;src:url('chunks/assets/font_4ee4fccf0e5f0eee31f60011.woff2')format("woff");}.ff2_c01177{font-family:ff2_c01177;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01177;src:url('chunks/assets/font_74ceb6d283a67eb85c5eeff8.woff2')format("woff");}.ff3_c01177{font-family:ff3_c01177;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4f_c01177{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01177{transform:matrix(0.116013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116013,0.000000,0.000000,0.250000,0,0);}
.m5a_c01177{transform:matrix(0.121031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121031,0.000000,0.000000,0.250000,0,0);}
.m72_c01177{transform:matrix(0.152020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152020,0.000000,0.000000,0.250000,0,0);}
.m94_c01177{transform:matrix(0.156177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156177,0.000000,0.000000,0.250000,0,0);}
.m5b_c01177{transform:matrix(0.185268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185268,0.000000,0.000000,0.250000,0,0);}
.m7a_c01177{transform:matrix(0.189190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189190,0.000000,0.000000,0.250000,0,0);}
.m5c_c01177{transform:matrix(0.191153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191153,0.000000,0.000000,0.250000,0,0);}
.mf_c01177{transform:matrix(0.192983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192983,0.000000,0.000000,0.250000,0,0);}
.m54_c01177{transform:matrix(0.207072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207072,0.000000,0.000000,0.250000,0,0);}
.m8b_c01177{transform:matrix(0.209460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209460,0.000000,0.000000,0.250000,0,0);}
.m11_c01177{transform:matrix(0.216618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216618,0.000000,0.000000,0.250000,0,0);}
.m64_c01177{transform:matrix(0.230160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230160,0.000000,0.000000,0.250000,0,0);}
.mb_c01177{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m52_c01177{transform:matrix(0.250387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250387,0.000000,0.000000,0.250000,0,0);}
.m84_c01177{transform:matrix(0.250471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250471,0.000000,0.000000,0.250000,0,0);}
.m65_c01177{transform:matrix(0.252647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252647,0.000000,0.000000,0.250000,0,0);}
.m41_c01177{transform:matrix(0.254129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254129,0.000000,0.000000,0.250000,0,0);}
.m1d_c01177{transform:matrix(0.255951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255951,0.000000,0.000000,0.250000,0,0);}
.m51_c01177{transform:matrix(0.256016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256016,0.000000,0.000000,0.250000,0,0);}
.m67_c01177{transform:matrix(0.257054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257054,0.000000,0.000000,0.250000,0,0);}
.m75_c01177{transform:matrix(0.260697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260697,0.000000,0.000000,0.250000,0,0);}
.m22_c01177{transform:matrix(0.263376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263376,0.000000,0.000000,0.250000,0,0);}
.m6_c01177{transform:matrix(0.266551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266551,0.000000,0.000000,0.250000,0,0);}
.m26_c01177{transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);}
.m27_c01177{transform:matrix(0.269486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269486,0.000000,0.000000,0.250000,0,0);}
.m5d_c01177{transform:matrix(0.270168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270168,0.000000,0.000000,0.250000,0,0);}
.m2_c01177{transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);}
.m18_c01177{transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);}
.ma_c01177{transform:matrix(0.275960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275960,0.000000,0.000000,0.250000,0,0);}
.md_c01177{transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);}
.m32_c01177{transform:matrix(0.276641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276641,0.000000,0.000000,0.250000,0,0);}
.m85_c01177{transform:matrix(0.277350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277350,0.000000,0.000000,0.250000,0,0);}
.m7d_c01177{transform:matrix(0.277832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277832,0.000000,0.000000,0.250000,0,0);}
.m4c_c01177{transform:matrix(0.278463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278463,0.000000,0.000000,0.250000,0,0);}
.me_c01177{transform:matrix(0.279258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279258,0.000000,0.000000,0.250000,0,0);}
.m4a_c01177{transform:matrix(0.279718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279718,0.000000,0.000000,0.250000,0,0);}
.m79_c01177{transform:matrix(0.279776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279776,0.000000,0.000000,0.250000,0,0);}
.m2c_c01177{transform:matrix(0.280349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280349,0.000000,0.000000,0.250000,0,0);}
.m71_c01177{transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);}
.m59_c01177{transform:matrix(0.280858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280858,0.000000,0.000000,0.250000,0,0);}
.m14_c01177{transform:matrix(0.281099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281099,0.000000,0.000000,0.250000,0,0);}
.m0_c01177{transform:matrix(0.283828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283828,0.000000,0.000000,0.250000,0,0);}
.m42_c01177{transform:matrix(0.284001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284001,0.000000,0.000000,0.250000,0,0);}
.m4d_c01177{transform:matrix(0.284877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284877,0.000000,0.000000,0.250000,0,0);}
.m6b_c01177{transform:matrix(0.285652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285652,0.000000,0.000000,0.250000,0,0);}
.m78_c01177{transform:matrix(0.286273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286273,0.000000,0.000000,0.250000,0,0);}
.m76_c01177{transform:matrix(0.286350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286350,0.000000,0.000000,0.250000,0,0);}
.m24_c01177{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);}
.m13_c01177{transform:matrix(0.286936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286936,0.000000,0.000000,0.250000,0,0);}
.m39_c01177{transform:matrix(0.287720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287720,0.000000,0.000000,0.250000,0,0);}
.m55_c01177{transform:matrix(0.287758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287758,0.000000,0.000000,0.250000,0,0);}
.m49_c01177{transform:matrix(0.287946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287946,0.000000,0.000000,0.250000,0,0);}
.m15_c01177{transform:matrix(0.288134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288134,0.000000,0.000000,0.250000,0,0);}
.m3a_c01177{transform:matrix(0.288247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288247,0.000000,0.000000,0.250000,0,0);}
.m57_c01177{transform:matrix(0.288840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288840,0.000000,0.000000,0.250000,0,0);}
.m61_c01177{transform:matrix(0.289228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289228,0.000000,0.000000,0.250000,0,0);}
.m21_c01177{transform:matrix(0.290031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290031,0.000000,0.000000,0.250000,0,0);}
.m63_c01177{transform:matrix(0.290071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290071,0.000000,0.000000,0.250000,0,0);}
.m92_c01177{transform:matrix(0.290326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290326,0.000000,0.000000,0.250000,0,0);}
.m62_c01177{transform:matrix(0.290328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290328,0.000000,0.000000,0.250000,0,0);}
.m33_c01177{transform:matrix(0.290493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290493,0.000000,0.000000,0.250000,0,0);}
.m37_c01177{transform:matrix(0.290651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290651,0.000000,0.000000,0.250000,0,0);}
.m7e_c01177{transform:matrix(0.290932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290932,0.000000,0.000000,0.250000,0,0);}
.m56_c01177{transform:matrix(0.291592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291592,0.000000,0.000000,0.250000,0,0);}
.m7c_c01177{transform:matrix(0.291648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291648,0.000000,0.000000,0.250000,0,0);}
.m9_c01177{transform:matrix(0.292042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292042,0.000000,0.000000,0.250000,0,0);}
.m74_c01177{transform:matrix(0.292897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292897,0.000000,0.000000,0.250000,0,0);}
.m1c_c01177{transform:matrix(0.293088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293088,0.000000,0.000000,0.250000,0,0);}
.m50_c01177{transform:matrix(0.293296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293296,0.000000,0.000000,0.250000,0,0);}
.m58_c01177{transform:matrix(0.293531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293531,0.000000,0.000000,0.250000,0,0);}
.m16_c01177{transform:matrix(0.293588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293588,0.000000,0.000000,0.250000,0,0);}
.m3d_c01177{transform:matrix(0.294459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294459,0.000000,0.000000,0.250000,0,0);}
.m5_c01177{transform:matrix(0.294503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294503,0.000000,0.000000,0.250000,0,0);}
.m30_c01177{transform:matrix(0.294622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294622,0.000000,0.000000,0.250000,0,0);}
.m73_c01177{transform:matrix(0.294770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294770,0.000000,0.000000,0.250000,0,0);}
.m35_c01177{transform:matrix(0.295109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295109,0.000000,0.000000,0.250000,0,0);}
.m66_c01177{transform:matrix(0.295425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295425,0.000000,0.000000,0.250000,0,0);}
.m31_c01177{transform:matrix(0.295706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295706,0.000000,0.000000,0.250000,0,0);}
.m36_c01177{transform:matrix(0.295729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295729,0.000000,0.000000,0.250000,0,0);}
.m8e_c01177{transform:matrix(0.296239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296239,0.000000,0.000000,0.250000,0,0);}
.m8_c01177{transform:matrix(0.298099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298099,0.000000,0.000000,0.250000,0,0);}
.m7_c01177{transform:matrix(0.298230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298230,0.000000,0.000000,0.250000,0,0);}
.m82_c01177{transform:matrix(0.298531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298531,0.000000,0.000000,0.250000,0,0);}
.mc_c01177{transform:matrix(0.299337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299337,0.000000,0.000000,0.250000,0,0);}
.m91_c01177{transform:matrix(0.299635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299635,0.000000,0.000000,0.250000,0,0);}
.m77_c01177{transform:matrix(0.299859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299859,0.000000,0.000000,0.250000,0,0);}
.m8d_c01177{transform:matrix(0.300072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300072,0.000000,0.000000,0.250000,0,0);}
.m3e_c01177{transform:matrix(0.300873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300873,0.000000,0.000000,0.250000,0,0);}
.m60_c01177{transform:matrix(0.301082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301082,0.000000,0.000000,0.250000,0,0);}
.m4b_c01177{transform:matrix(0.301169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301169,0.000000,0.000000,0.250000,0,0);}
.m2d_c01177{transform:matrix(0.301639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301639,0.000000,0.000000,0.250000,0,0);}
.m3_c01177{transform:matrix(0.301674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301674,0.000000,0.000000,0.250000,0,0);}
.m6f_c01177{transform:matrix(0.302309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302309,0.000000,0.000000,0.250000,0,0);}
.m44_c01177{transform:matrix(0.303047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303047,0.000000,0.000000,0.250000,0,0);}
.m1b_c01177{transform:matrix(0.303623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303623,0.000000,0.000000,0.250000,0,0);}
.m6c_c01177{transform:matrix(0.305011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305011,0.000000,0.000000,0.250000,0,0);}
.m68_c01177{transform:matrix(0.305643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305643,0.000000,0.000000,0.250000,0,0);}
.m95_c01177{transform:matrix(0.306249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306249,0.000000,0.000000,0.250000,0,0);}
.m8f_c01177{transform:matrix(0.306523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306523,0.000000,0.000000,0.250000,0,0);}
.m12_c01177{transform:matrix(0.307427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307427,0.000000,0.000000,0.250000,0,0);}
.m3b_c01177{transform:matrix(0.307690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307690,0.000000,0.000000,0.250000,0,0);}
.m86_c01177{transform:matrix(0.308524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308524,0.000000,0.000000,0.250000,0,0);}
.m29_c01177{transform:matrix(0.308959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308959,0.000000,0.000000,0.250000,0,0);}
.m88_c01177{transform:matrix(0.309758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309758,0.000000,0.000000,0.250000,0,0);}
.m8c_c01177{transform:matrix(0.309952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309952,0.000000,0.000000,0.250000,0,0);}
.m47_c01177{transform:matrix(0.310701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310701,0.000000,0.000000,0.250000,0,0);}
.m4_c01177{transform:matrix(0.310768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310768,0.000000,0.000000,0.250000,0,0);}
.m5e_c01177{transform:matrix(0.313216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313216,0.000000,0.000000,0.250000,0,0);}
.m38_c01177{transform:matrix(0.313494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313494,0.000000,0.000000,0.250000,0,0);}
.m1e_c01177{transform:matrix(0.314110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314110,0.000000,0.000000,0.250000,0,0);}
.m4e_c01177{transform:matrix(0.315671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315671,0.000000,0.000000,0.250000,0,0);}
.m28_c01177{transform:matrix(0.316292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316292,0.000000,0.000000,0.250000,0,0);}
.m70_c01177{transform:matrix(0.316839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316839,0.000000,0.000000,0.250000,0,0);}
.m1f_c01177{transform:matrix(0.318502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318502,0.000000,0.000000,0.250000,0,0);}
.m2a_c01177{transform:matrix(0.318516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318516,0.000000,0.000000,0.250000,0,0);}
.m3c_c01177{transform:matrix(0.319379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319379,0.000000,0.000000,0.250000,0,0);}
.m5f_c01177{transform:matrix(0.319605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319605,0.000000,0.000000,0.250000,0,0);}
.m8a_c01177{transform:matrix(0.319985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319985,0.000000,0.000000,0.250000,0,0);}
.m83_c01177{transform:matrix(0.320581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320581,0.000000,0.000000,0.250000,0,0);}
.m90_c01177{transform:matrix(0.321372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321372,0.000000,0.000000,0.250000,0,0);}
.m48_c01177{transform:matrix(0.321936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321936,0.000000,0.000000,0.250000,0,0);}
.m17_c01177{transform:matrix(0.321950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321950,0.000000,0.000000,0.250000,0,0);}
.m10_c01177{transform:matrix(0.324437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324437,0.000000,0.000000,0.250000,0,0);}
.m69_c01177{transform:matrix(0.324773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324773,0.000000,0.000000,0.250000,0,0);}
.m43_c01177{transform:matrix(0.326712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326712,0.000000,0.000000,0.250000,0,0);}
.m45_c01177{transform:matrix(0.327092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327092,0.000000,0.000000,0.250000,0,0);}
.m23_c01177{transform:matrix(0.328761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328761,0.000000,0.000000,0.250000,0,0);}
.m7f_c01177{transform:matrix(0.329766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329766,0.000000,0.000000,0.250000,0,0);}
.m6a_c01177{transform:matrix(0.331974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331974,0.000000,0.000000,0.250000,0,0);}
.m40_c01177{transform:matrix(0.334398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334398,0.000000,0.000000,0.250000,0,0);}
.m19_c01177{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m89_c01177{transform:matrix(0.339063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339063,0.000000,0.000000,0.250000,0,0);}
.m46_c01177{transform:matrix(0.340967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340967,0.000000,0.000000,0.250000,0,0);}
.m2e_c01177{transform:matrix(0.345712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345712,0.000000,0.000000,0.250000,0,0);}
.m93_c01177{transform:matrix(0.346611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346611,0.000000,0.000000,0.250000,0,0);}
.m80_c01177{transform:matrix(0.350014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350014,0.000000,0.000000,0.250000,0,0);}
.m81_c01177{transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);}
.m34_c01177{transform:matrix(0.357996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357996,0.000000,0.000000,0.250000,0,0);}
.m87_c01177{transform:matrix(0.359199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359199,0.000000,0.000000,0.250000,0,0);}
.m53_c01177{transform:matrix(0.361316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361316,0.000000,0.000000,0.250000,0,0);}
.m25_c01177{transform:matrix(0.362536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362536,0.000000,0.000000,0.250000,0,0);}
.m1a_c01177{transform:matrix(0.367094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367094,0.000000,0.000000,0.250000,0,0);}
.m1_c01177{transform:matrix(0.383975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383975,0.000000,0.000000,0.250000,0,0);}
.m6d_c01177{transform:matrix(0.389938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389938,0.000000,0.000000,0.250000,0,0);}
.m6e_c01177{transform:matrix(0.392848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392848,0.000000,0.000000,0.250000,0,0);}
.m3f_c01177{transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);}
.m2b_c01177{transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);}
.m7b_c01177{transform:matrix(0.404625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404625,0.000000,0.000000,0.250000,0,0);}
.m20_c01177{transform:matrix(0.414278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414278,0.000000,0.000000,0.250000,0,0);}
.v2_c01177{vertical-align:-17.103240px;}
.v0_c01177{vertical-align:0.000000px;}
.v1_c01177{vertical-align:17.107200px;}
.ls15_c01177{letter-spacing:-3.631327px;}
.lsd_c01177{letter-spacing:-2.882880px;}
.ls4_c01177{letter-spacing:-2.647267px;}
.lsf_c01177{letter-spacing:-2.522527px;}
.ls11_c01177{letter-spacing:-1.462230px;}
.ls7_c01177{letter-spacing:-0.983271px;}
.ls6_c01177{letter-spacing:-0.098327px;}
.ls2_c01177{letter-spacing:0.000000px;}
.ls13_c01177{letter-spacing:1.686687px;}
.ls8_c01177{letter-spacing:2.150761px;}
.ls10_c01177{letter-spacing:2.827440px;}
.ls14_c01177{letter-spacing:3.366000px;}
.ls12_c01177{letter-spacing:3.465000px;}
.lsb_c01177{letter-spacing:3.603610px;}
.lsa_c01177{letter-spacing:3.682810px;}
.ls9_c01177{letter-spacing:3.759119px;}
.ls1_c01177{letter-spacing:3.781810px;}
.ls5_c01177{letter-spacing:4.266900px;}
.ls0_c01177{letter-spacing:13.028301px;}
.ls16_c01177{letter-spacing:52.747398px;}
.ls3_c01177{letter-spacing:54.172998px;}
.lse_c01177{letter-spacing:59.875398px;}
.lsc_c01177{letter-spacing:64.152198px;}
.sc__c01177{text-shadow:none;}
.sc0_c01177{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01177{-webkit-text-stroke:0px transparent;}
.sc0_c01177{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01177{word-spacing:0.000000px;}
._0_c01177{margin-left:-7.941835px;}
._3_c01177{width:3.900501px;}
._2_c01177{width:9.165222px;}
._4_c01177{width:52.446240px;}
._1_c01177{width:71.673267px;}
.fc0_c01177{color:transparent;}
.fs11_c01177{font-size:22.176000px;}
.fsf_c01177{font-size:27.720000px;}
.fsc_c01177{font-size:41.778000px;}
.fs4_c01177{font-size:52.074000px;}
.fs12_c01177{font-size:52.747398px;}
.fs2_c01177{font-size:54.172998px;}
.fs10_c01177{font-size:57.024000px;}
.fs9_c01177{font-size:59.875398px;}
.fs7_c01177{font-size:64.152198px;}
.fs1_c01177{font-size:66.330000px;}
.fsa_c01177{font-size:66.528000px;}
.fsd_c01177{font-size:67.320000px;}
.fsb_c01177{font-size:69.300000px;}
.fs6_c01177{font-size:72.072198px;}
.fs5_c01177{font-size:73.656198px;}
.fs0_c01177{font-size:75.636198px;}
.fs8_c01177{font-size:82.368000px;}
.fs3_c01177{font-size:85.338000px;}
.fse_c01177{font-size:103.752198px;}
.y0_c01177{bottom:0.000000px;}
.y1d_c01177{bottom:27.711135px;}
.y1_c01177{bottom:76.500000px;}
.y1e_c01177{bottom:85.447935px;}
.y1c_c01177{bottom:124.290585px;}
.y1b_c01177{bottom:157.079385px;}
.y1a_c01177{bottom:190.942335px;}
.y19_c01177{bottom:249.391935px;}
.y18_c01177{bottom:256.519935px;}
.y17_c01177{bottom:288.952335px;}
.y16_c01177{bottom:320.310585px;}
.y15_c01177{bottom:384.111135px;}
.y14_c01177{bottom:385.175385px;}
.y13_c01177{bottom:417.969135px;}
.yf_c01177{bottom:482.121135px;}
.y12_c01177{bottom:503.505135px;}
.ye_c01177{bottom:513.835785px;}
.y11_c01177{bottom:514.197135px;}
.y10_c01177{bottom:527.022585px;}
.yd_c01177{bottom:576.923535px;}
.yc_c01177{bottom:641.426985px;}
.yb_c01177{bottom:674.577135px;}
.ya_c01177{bottom:705.940335px;}
.y9_c01177{bottom:738.011385px;}
.y8_c01177{bottom:769.735935px;}
.y7_c01177{bottom:802.163385px;}
.y6_c01177{bottom:833.531535px;}
.y5_c01177{bottom:865.602585px;}
.y4_c01177{bottom:898.039935px;}
.y3_c01177{bottom:930.472335px;}
.y2_c01177{bottom:1073.740185px;}
.h14_c01177{height:23.128875px;}
.h13_c01177{height:28.911094px;}
.h15_c01177{height:35.129767px;}
.h4_c01177{height:36.079217px;}
.hc_c01177{height:39.877015px;}
.he_c01177{height:41.002822px;}
.h9_c01177{height:42.725364px;}
.h6_c01177{height:54.311555px;}
.h10_c01177{height:68.014160px;}
.h3_c01177{height:69.180117px;}
.hd_c01177{height:69.386625px;}
.h11_c01177{height:70.212656px;}
.hf_c01177{height:72.277734px;}
.ha_c01177{height:72.289530px;}
.h2_c01177{height:74.232792px;}
.h8_c01177{height:75.169050px;}
.h7_c01177{height:76.821113px;}
.hb_c01177{height:80.839688px;}
.h5_c01177{height:83.754580px;}
.h12_c01177{height:101.827108px;}
.h1_c01177{height:1110.000000px;}
.h0_c01177{height:1263.000000px;}
.w1_c01177{width:775.500000px;}
.w0_c01177{width:892.500000px;}
.x0_c01177{left:0.000000px;}
.x1_c01177{left:58.500000px;}
.x44_c01177{left:76.335585px;}
.x49_c01177{left:130.374735px;}
.x14_c01177{left:131.800335px;}
.x3_c01177{left:133.641735px;}
.xc_c01177{left:135.012885px;}
.x22_c01177{left:153.897135px;}
.x2b_c01177{left:165.113835px;}
.x5c_c01177{left:169.880685px;}
.x15_c01177{left:174.518835px;}
.x3e_c01177{left:176.434485px;}
.x4_c01177{left:177.602685px;}
.x4a_c01177{left:185.829585px;}
.x5d_c01177{left:186.878985px;}
.x5f_c01177{left:195.566235px;}
.x45_c01177{left:198.085785px;}
.x46_c01177{left:207.050235px;}
.x5_c01177{left:209.673735px;}
.x65_c01177{left:211.935885px;}
.xd_c01177{left:219.806385px;}
.x64_c01177{left:221.033985px;}
.x47_c01177{left:222.761535px;}
.x60_c01177{left:231.087435px;}
.x2c_c01177{left:233.864385px;}
.x48_c01177{left:242.719935px;}
.xe_c01177{left:244.991985px;}
.x34_c01177{left:254.971185px;}
.x23_c01177{left:256.471035px;}
.x16_c01177{left:264.049485px;}
.x35_c01177{left:275.706735px;}
.x5e_c01177{left:276.879885px;}
.x6_c01177{left:278.523285px;}
.x41_c01177{left:286.977885px;}
.x53_c01177{left:296.397735px;}
.x3f_c01177{left:299.075685px;}
.x17_c01177{left:308.980635px;}
.x36_c01177{left:310.534935px;}
.x24_c01177{left:321.578385px;}
.x18_c01177{left:331.819935px;}
.x5a_c01177{left:342.002085px;}
.x39_c01177{left:343.279185px;}
.x56_c01177{left:355.921485px;}
.x2d_c01177{left:365.093835px;}
.x1e_c01177{left:366.138285px;}
.x19_c01177{left:375.211635px;}
.x25_c01177{left:376.463985px;}
.xf_c01177{left:377.543085px;}
.x7_c01177{left:387.418335px;}
.x1f_c01177{left:388.858785px;}
.x4b_c01177{left:398.446935px;}
.x2e_c01177{left:400.055685px;}
.x10_c01177{left:409.267635px;}
.x57_c01177{left:419.825985px;}
.x20_c01177{left:422.870235px;}
.x8_c01177{left:432.101985px;}
.x26_c01177{left:443.496885px;}
.x37_c01177{left:454.050285px;}
.x42_c01177{left:463.663185px;}
.x3a_c01177{left:465.247185px;}
.x9_c01177{left:475.671885px;}
.x11_c01177{left:477.562785px;}
.x38_c01177{left:487.937985px;}
.x2f_c01177{left:489.388335px;}
.x62_c01177{left:495.976785px;}
.x4c_c01177{left:497.437035px;}
.x3b_c01177{left:498.778485px;}
.x4f_c01177{left:508.158735px;}
.x1a_c01177{left:509.312085px;}
.x30_c01177{left:511.148535px;}
.x4d_c01177{left:512.831535px;}
.x4e_c01177{left:521.018835px;}
.x3c_c01177{left:531.879135px;}
.x58_c01177{left:539.912985px;}
.x27_c01177{left:542.546385px;}
.xa_c01177{left:552.297885px;}
.x54_c01177{left:563.415585px;}
.x43_c01177{left:566.390535px;}
.x31_c01177{left:574.434285px;}
.x12_c01177{left:585.789585px;}
.x28_c01177{left:587.442885px;}
.x1b_c01177{left:597.466635px;}
.x3d_c01177{left:600.020835px;}
.x21_c01177{left:606.841935px;}
.xb_c01177{left:619.533735px;}
.x1c_c01177{left:629.701035px;}
.x50_c01177{left:630.859335px;}
.x40_c01177{left:641.640435px;}
.x29_c01177{left:652.485885px;}
.x32_c01177{left:653.762985px;}
.x63_c01177{left:661.351335px;}
.x5b_c01177{left:665.791485px;}
.x61_c01177{left:674.325285px;}
.x55_c01177{left:675.483585px;}
.x51_c01177{left:686.898285px;}
.x2_c01177{left:697.916985px;}
.x13_c01177{left:706.896285px;}
.x52_c01177{left:708.208035px;}
.x1d_c01177{left:718.598085px;}
.x33_c01177{left:731.077035px;}
.x2a_c01177{left:742.798635px;}
.x59_c01177{left:749.486085px;}
.x66_c01177{left:760.103835px;}
@media print{
.v2_c01177{vertical-align:-15.202880pt;}
.v0_c01177{vertical-align:0.000000pt;}
.v1_c01177{vertical-align:15.206400pt;}
.ls15_c01177{letter-spacing:-3.227846pt;}
.lsd_c01177{letter-spacing:-2.562560pt;}
.ls4_c01177{letter-spacing:-2.353126pt;}
.lsf_c01177{letter-spacing:-2.242246pt;}
.ls11_c01177{letter-spacing:-1.299760pt;}
.ls7_c01177{letter-spacing:-0.874018pt;}
.ls6_c01177{letter-spacing:-0.087402pt;}
.ls2_c01177{letter-spacing:0.000000pt;}
.ls13_c01177{letter-spacing:1.499278pt;}
.ls8_c01177{letter-spacing:1.911788pt;}
.ls10_c01177{letter-spacing:2.513280pt;}
.ls14_c01177{letter-spacing:2.992000pt;}
.ls12_c01177{letter-spacing:3.080000pt;}
.lsb_c01177{letter-spacing:3.203209pt;}
.lsa_c01177{letter-spacing:3.273609pt;}
.ls9_c01177{letter-spacing:3.341439pt;}
.ls1_c01177{letter-spacing:3.361609pt;}
.ls5_c01177{letter-spacing:3.792800pt;}
.ls0_c01177{letter-spacing:11.580712pt;}
.ls16_c01177{letter-spacing:46.886576pt;}
.ls3_c01177{letter-spacing:48.153776pt;}
.lse_c01177{letter-spacing:53.222576pt;}
.lsc_c01177{letter-spacing:57.024176pt;}
.ws0_c01177{word-spacing:0.000000pt;}
._0_c01177{margin-left:-7.059409pt;}
._3_c01177{width:3.467112pt;}
._2_c01177{width:8.146864pt;}
._4_c01177{width:46.618880pt;}
._1_c01177{width:63.709571pt;}
.fs11_c01177{font-size:19.712000pt;}
.fsf_c01177{font-size:24.640000pt;}
.fsc_c01177{font-size:37.136000pt;}
.fs4_c01177{font-size:46.288000pt;}
.fs12_c01177{font-size:46.886576pt;}
.fs2_c01177{font-size:48.153776pt;}
.fs10_c01177{font-size:50.688000pt;}
.fs9_c01177{font-size:53.222576pt;}
.fs7_c01177{font-size:57.024176pt;}
.fs1_c01177{font-size:58.960000pt;}
.fsa_c01177{font-size:59.136000pt;}
.fsd_c01177{font-size:59.840000pt;}
.fsb_c01177{font-size:61.600000pt;}
.fs6_c01177{font-size:64.064176pt;}
.fs5_c01177{font-size:65.472176pt;}
.fs0_c01177{font-size:67.232176pt;}
.fs8_c01177{font-size:73.216000pt;}
.fs3_c01177{font-size:75.856000pt;}
.fse_c01177{font-size:92.224176pt;}
.y0_c01177{bottom:0.000000pt;}
.y1d_c01177{bottom:24.632120pt;}
.y1_c01177{bottom:68.000000pt;}
.y1e_c01177{bottom:75.953720pt;}
.y1c_c01177{bottom:110.480520pt;}
.y1b_c01177{bottom:139.626120pt;}
.y1a_c01177{bottom:169.726520pt;}
.y19_c01177{bottom:221.681720pt;}
.y18_c01177{bottom:228.017720pt;}
.y17_c01177{bottom:256.846520pt;}
.y16_c01177{bottom:284.720520pt;}
.y15_c01177{bottom:341.432120pt;}
.y14_c01177{bottom:342.378120pt;}
.y13_c01177{bottom:371.528120pt;}
.yf_c01177{bottom:428.552120pt;}
.y12_c01177{bottom:447.560120pt;}
.ye_c01177{bottom:456.742920pt;}
.y11_c01177{bottom:457.064120pt;}
.y10_c01177{bottom:468.464520pt;}
.yd_c01177{bottom:512.820920pt;}
.yc_c01177{bottom:570.157320pt;}
.yb_c01177{bottom:599.624120pt;}
.ya_c01177{bottom:627.502520pt;}
.y9_c01177{bottom:656.010120pt;}
.y8_c01177{bottom:684.209720pt;}
.y7_c01177{bottom:713.034120pt;}
.y6_c01177{bottom:740.916920pt;}
.y5_c01177{bottom:769.424520pt;}
.y4_c01177{bottom:798.257720pt;}
.y3_c01177{bottom:827.086520pt;}
.y2_c01177{bottom:954.435720pt;}
.h14_c01177{height:20.559000pt;}
.h13_c01177{height:25.698750pt;}
.h15_c01177{height:31.226460pt;}
.h4_c01177{height:32.070415pt;}
.hc_c01177{height:35.446236pt;}
.he_c01177{height:36.446953pt;}
.h9_c01177{height:37.978101pt;}
.h6_c01177{height:48.276938pt;}
.h10_c01177{height:60.457031pt;}
.h3_c01177{height:61.493438pt;}
.hd_c01177{height:61.677000pt;}
.h11_c01177{height:62.411250pt;}
.hf_c01177{height:64.246875pt;}
.ha_c01177{height:64.257360pt;}
.h2_c01177{height:65.984704pt;}
.h8_c01177{height:66.816934pt;}
.h7_c01177{height:68.285434pt;}
.hb_c01177{height:71.857500pt;}
.h5_c01177{height:74.448516pt;}
.h12_c01177{height:90.512985pt;}
.h1_c01177{height:986.666667pt;}
.h0_c01177{height:1122.666667pt;}
.w1_c01177{width:689.333333pt;}
.w0_c01177{width:793.333333pt;}
.x0_c01177{left:0.000000pt;}
.x1_c01177{left:52.000000pt;}
.x44_c01177{left:67.853853pt;}
.x49_c01177{left:115.888653pt;}
.x14_c01177{left:117.155853pt;}
.x3_c01177{left:118.792653pt;}
.xc_c01177{left:120.011453pt;}
.x22_c01177{left:136.797453pt;}
.x2b_c01177{left:146.767853pt;}
.x5c_c01177{left:151.005053pt;}
.x15_c01177{left:155.127853pt;}
.x3e_c01177{left:156.830653pt;}
.x4_c01177{left:157.869053pt;}
.x4a_c01177{left:165.181853pt;}
.x5d_c01177{left:166.114653pt;}
.x5f_c01177{left:173.836653pt;}
.x45_c01177{left:176.076253pt;}
.x46_c01177{left:184.044653pt;}
.x5_c01177{left:186.376653pt;}
.x65_c01177{left:188.387453pt;}
.xd_c01177{left:195.383453pt;}
.x64_c01177{left:196.474653pt;}
.x47_c01177{left:198.010253pt;}
.x60_c01177{left:205.411053pt;}
.x2c_c01177{left:207.879453pt;}
.x48_c01177{left:215.751053pt;}
.xe_c01177{left:217.770653pt;}
.x34_c01177{left:226.641053pt;}
.x23_c01177{left:227.974253pt;}
.x16_c01177{left:234.710653pt;}
.x35_c01177{left:245.072653pt;}
.x5e_c01177{left:246.115453pt;}
.x6_c01177{left:247.576253pt;}
.x41_c01177{left:255.091453pt;}
.x53_c01177{left:263.464653pt;}
.x3f_c01177{left:265.845053pt;}
.x17_c01177{left:274.649453pt;}
.x36_c01177{left:276.031053pt;}
.x24_c01177{left:285.847453pt;}
.x18_c01177{left:294.951053pt;}
.x5a_c01177{left:304.001853pt;}
.x39_c01177{left:305.137053pt;}
.x56_c01177{left:316.374653pt;}
.x2d_c01177{left:324.527853pt;}
.x1e_c01177{left:325.456253pt;}
.x19_c01177{left:333.521453pt;}
.x25_c01177{left:334.634653pt;}
.xf_c01177{left:335.593853pt;}
.x7_c01177{left:344.371853pt;}
.x1f_c01177{left:345.652253pt;}
.x4b_c01177{left:354.175053pt;}
.x2e_c01177{left:355.605053pt;}
.x10_c01177{left:363.793453pt;}
.x57_c01177{left:373.178653pt;}
.x20_c01177{left:375.884653pt;}
.x8_c01177{left:384.090653pt;}
.x26_c01177{left:394.219453pt;}
.x37_c01177{left:403.600253pt;}
.x42_c01177{left:412.145053pt;}
.x3a_c01177{left:413.553053pt;}
.x9_c01177{left:422.819453pt;}
.x11_c01177{left:424.500253pt;}
.x38_c01177{left:433.722653pt;}
.x2f_c01177{left:435.011853pt;}
.x62_c01177{left:440.868253pt;}
.x4c_c01177{left:442.166253pt;}
.x3b_c01177{left:443.358653pt;}
.x4f_c01177{left:451.696653pt;}
.x1a_c01177{left:452.721853pt;}
.x30_c01177{left:454.354253pt;}
.x4d_c01177{left:455.850253pt;}
.x4e_c01177{left:463.127853pt;}
.x3c_c01177{left:472.781453pt;}
.x58_c01177{left:479.922653pt;}
.x27_c01177{left:482.263453pt;}
.xa_c01177{left:490.931453pt;}
.x54_c01177{left:500.813853pt;}
.x43_c01177{left:503.458253pt;}
.x31_c01177{left:510.608253pt;}
.x12_c01177{left:520.701853pt;}
.x28_c01177{left:522.171453pt;}
.x1b_c01177{left:531.081453pt;}
.x3d_c01177{left:533.351853pt;}
.x21_c01177{left:539.415053pt;}
.xb_c01177{left:550.696653pt;}
.x1c_c01177{left:559.734253pt;}
.x50_c01177{left:560.763853pt;}
.x40_c01177{left:570.347053pt;}
.x29_c01177{left:579.987453pt;}
.x32_c01177{left:581.122653pt;}
.x63_c01177{left:587.867853pt;}
.x5b_c01177{left:591.814653pt;}
.x61_c01177{left:599.400253pt;}
.x55_c01177{left:600.429853pt;}
.x51_c01177{left:610.576253pt;}
.x2_c01177{left:620.370653pt;}
.x13_c01177{left:628.352253pt;}
.x52_c01177{left:629.518253pt;}
.x1d_c01177{left:638.753853pt;}
.x33_c01177{left:649.846253pt;}
.x2a_c01177{left:660.265453pt;}
.x59_c01177{left:666.209853pt;}
.x66_c01177{left:675.647853pt;}
}





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

.ir_c01178:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01178{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01178;src:url('chunks/assets/font_40b8ed618ec42336a68471e7.woff2')format("woff");}.ff1_c01178{font-family:ff1_c01178;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01178;src:url('chunks/assets/font_b7776d8ef616e5d4cbee6dae.woff2')format("woff");}.ff2_c01178{font-family:ff2_c01178;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01178;src:url('chunks/assets/font_572a67c8eebb44794a40da6e.woff2')format("woff");}.ff3_c01178{font-family:ff3_c01178;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01178;src:url('chunks/assets/font_19bf5c32dc31a1473dfdd645.woff2')format("woff");}.ff4_c01178{font-family:ff4_c01178;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m89_c01178{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);}
.m17_c01178{transform:matrix(0.142883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142883,0.000000,0.000000,0.250000,0,0);}
.m6b_c01178{transform:matrix(0.170003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170003,0.000000,0.000000,0.250000,0,0);}
.m43_c01178{transform:matrix(0.177084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177084,0.000000,0.000000,0.250000,0,0);}
.m42_c01178{transform:matrix(0.220824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220824,0.000000,0.000000,0.250000,0,0);}
.m1f_c01178{transform:matrix(0.222122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222122,0.000000,0.000000,0.250000,0,0);}
.m19_c01178{transform:matrix(0.230280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230280,0.000000,0.000000,0.250000,0,0);}
.m5c_c01178{transform:matrix(0.248302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248302,0.000000,0.000000,0.250000,0,0);}
.m4_c01178{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m34_c01178{transform:matrix(0.254138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254138,0.000000,0.000000,0.250000,0,0);}
.m3c_c01178{transform:matrix(0.254505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254505,0.000000,0.000000,0.250000,0,0);}
.m44_c01178{transform:matrix(0.254930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254930,0.000000,0.000000,0.250000,0,0);}
.ma_c01178{transform:matrix(0.256680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256680,0.000000,0.000000,0.250000,0,0);}
.m47_c01178{transform:matrix(0.257622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257622,0.000000,0.000000,0.250000,0,0);}
.m24_c01178{transform:matrix(0.258329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258329,0.000000,0.000000,0.250000,0,0);}
.m2b_c01178{transform:matrix(0.258736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258736,0.000000,0.000000,0.250000,0,0);}
.m60_c01178{transform:matrix(0.259168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259168,0.000000,0.000000,0.250000,0,0);}
.m73_c01178{transform:matrix(0.259674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259674,0.000000,0.000000,0.250000,0,0);}
.m1_c01178{transform:matrix(0.260102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260102,0.000000,0.000000,0.250000,0,0);}
.m54_c01178{transform:matrix(0.261191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261191,0.000000,0.000000,0.250000,0,0);}
.m1d_c01178{transform:matrix(0.261630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261630,0.000000,0.000000,0.250000,0,0);}
.m2a_c01178{transform:matrix(0.261728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261728,0.000000,0.000000,0.250000,0,0);}
.m32_c01178{transform:matrix(0.262721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262721,0.000000,0.000000,0.250000,0,0);}
.m7d_c01178{transform:matrix(0.262944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262944,0.000000,0.000000,0.250000,0,0);}
.m8_c01178{transform:matrix(0.266398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266398,0.000000,0.000000,0.250000,0,0);}
.me_c01178{transform:matrix(0.268410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268410,0.000000,0.000000,0.250000,0,0);}
.m59_c01178{transform:matrix(0.271982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271982,0.000000,0.000000,0.250000,0,0);}
.m3e_c01178{transform:matrix(0.272436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272436,0.000000,0.000000,0.250000,0,0);}
.m55_c01178{transform:matrix(0.272444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272444,0.000000,0.000000,0.250000,0,0);}
.m4d_c01178{transform:matrix(0.272686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272686,0.000000,0.000000,0.250000,0,0);}
.m76_c01178{transform:matrix(0.273166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273166,0.000000,0.000000,0.250000,0,0);}
.mc_c01178{transform:matrix(0.276542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276542,0.000000,0.000000,0.250000,0,0);}
.m2d_c01178{transform:matrix(0.277310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277310,0.000000,0.000000,0.250000,0,0);}
.m29_c01178{transform:matrix(0.277396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277396,0.000000,0.000000,0.250000,0,0);}
.m4f_c01178{transform:matrix(0.277965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277965,0.000000,0.000000,0.250000,0,0);}
.m72_c01178{transform:matrix(0.278594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278594,0.000000,0.000000,0.250000,0,0);}
.m81_c01178{transform:matrix(0.279257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279257,0.000000,0.000000,0.250000,0,0);}
.m23_c01178{transform:matrix(0.280202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280202,0.000000,0.000000,0.250000,0,0);}
.m40_c01178{transform:matrix(0.280374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280374,0.000000,0.000000,0.250000,0,0);}
.m11_c01178{transform:matrix(0.280868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280868,0.000000,0.000000,0.250000,0,0);}
.m1a_c01178{transform:matrix(0.281412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281412,0.000000,0.000000,0.250000,0,0);}
.m6a_c01178{transform:matrix(0.281860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281860,0.000000,0.000000,0.250000,0,0);}
.m18_c01178{transform:matrix(0.282175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282175,0.000000,0.000000,0.250000,0,0);}
.m87_c01178{transform:matrix(0.283515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283515,0.000000,0.000000,0.250000,0,0);}
.m26_c01178{transform:matrix(0.284440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284440,0.000000,0.000000,0.250000,0,0);}
.m5f_c01178{transform:matrix(0.285292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285292,0.000000,0.000000,0.250000,0,0);}
.m6e_c01178{transform:matrix(0.285740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285740,0.000000,0.000000,0.250000,0,0);}
.mb_c01178{transform:matrix(0.285860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285860,0.000000,0.000000,0.250000,0,0);}
.m88_c01178{transform:matrix(0.286199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286199,0.000000,0.000000,0.250000,0,0);}
.m6c_c01178{transform:matrix(0.287718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287718,0.000000,0.000000,0.250000,0,0);}
.m67_c01178{transform:matrix(0.288124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288124,0.000000,0.000000,0.250000,0,0);}
.m82_c01178{transform:matrix(0.289589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289589,0.000000,0.000000,0.250000,0,0);}
.m4e_c01178{transform:matrix(0.289765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289765,0.000000,0.000000,0.250000,0,0);}
.m7f_c01178{transform:matrix(0.290140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290140,0.000000,0.000000,0.250000,0,0);}
.m13_c01178{transform:matrix(0.290211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290211,0.000000,0.000000,0.250000,0,0);}
.m0_c01178{transform:matrix(0.290803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290803,0.000000,0.000000,0.250000,0,0);}
.m2_c01178{transform:matrix(0.290920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290920,0.000000,0.000000,0.250000,0,0);}
.m4a_c01178{transform:matrix(0.291037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291037,0.000000,0.000000,0.250000,0,0);}
.m63_c01178{transform:matrix(0.292211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292211,0.000000,0.000000,0.250000,0,0);}
.m33_c01178{transform:matrix(0.292351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292351,0.000000,0.000000,0.250000,0,0);}
.m83_c01178{transform:matrix(0.292890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292890,0.000000,0.000000,0.250000,0,0);}
.m84_c01178{transform:matrix(0.293844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293844,0.000000,0.000000,0.250000,0,0);}
.m21_c01178{transform:matrix(0.294185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294185,0.000000,0.000000,0.250000,0,0);}
.m28_c01178{transform:matrix(0.294961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294961,0.000000,0.000000,0.250000,0,0);}
.m7b_c01178{transform:matrix(0.295212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295212,0.000000,0.000000,0.250000,0,0);}
.m9_c01178{transform:matrix(0.295832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295832,0.000000,0.000000,0.250000,0,0);}
.m75_c01178{transform:matrix(0.295857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295857,0.000000,0.000000,0.250000,0,0);}
.md_c01178{transform:matrix(0.295996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295996,0.000000,0.000000,0.250000,0,0);}
.m69_c01178{transform:matrix(0.296303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296303,0.000000,0.000000,0.250000,0,0);}
.m15_c01178{transform:matrix(0.296329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296329,0.000000,0.000000,0.250000,0,0);}
.m86_c01178{transform:matrix(0.297029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297029,0.000000,0.000000,0.250000,0,0);}
.m16_c01178{transform:matrix(0.297107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297107,0.000000,0.000000,0.250000,0,0);}
.m38_c01178{transform:matrix(0.297385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297385,0.000000,0.000000,0.250000,0,0);}
.m6d_c01178{transform:matrix(0.297489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297489,0.000000,0.000000,0.250000,0,0);}
.m22_c01178{transform:matrix(0.297572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297572,0.000000,0.000000,0.250000,0,0);}
.m41_c01178{transform:matrix(0.297955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297955,0.000000,0.000000,0.250000,0,0);}
.m71_c01178{transform:matrix(0.299666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299666,0.000000,0.000000,0.250000,0,0);}
.m65_c01178{transform:matrix(0.300314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300314,0.000000,0.000000,0.250000,0,0);}
.m20_c01178{transform:matrix(0.300971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300971,0.000000,0.000000,0.250000,0,0);}
.m7c_c01178{transform:matrix(0.301650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301650,0.000000,0.000000,0.250000,0,0);}
.m3_c01178{transform:matrix(0.301754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301754,0.000000,0.000000,0.250000,0,0);}
.m4c_c01178{transform:matrix(0.301986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301986,0.000000,0.000000,0.250000,0,0);}
.m79_c01178{transform:matrix(0.302655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302655,0.000000,0.000000,0.250000,0,0);}
.m66_c01178{transform:matrix(0.302766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302766,0.000000,0.000000,0.250000,0,0);}
.m70_c01178{transform:matrix(0.303406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303406,0.000000,0.000000,0.250000,0,0);}
.m31_c01178{transform:matrix(0.303862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303862,0.000000,0.000000,0.250000,0,0);}
.m36_c01178{transform:matrix(0.304674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304674,0.000000,0.000000,0.250000,0,0);}
.m1c_c01178{transform:matrix(0.304743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304743,0.000000,0.000000,0.250000,0,0);}
.m62_c01178{transform:matrix(0.308731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308731,0.000000,0.000000,0.250000,0,0);}
.m57_c01178{transform:matrix(0.309268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309268,0.000000,0.000000,0.250000,0,0);}
.m14_c01178{transform:matrix(0.309339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309339,0.000000,0.000000,0.250000,0,0);}
.m37_c01178{transform:matrix(0.310915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310915,0.000000,0.000000,0.250000,0,0);}
.m7a_c01178{transform:matrix(0.313190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313190,0.000000,0.000000,0.250000,0,0);}
.m2f_c01178{transform:matrix(0.314247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314247,0.000000,0.000000,0.250000,0,0);}
.m2c_c01178{transform:matrix(0.314602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314602,0.000000,0.000000,0.250000,0,0);}
.m5d_c01178{transform:matrix(0.314707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314707,0.000000,0.000000,0.250000,0,0);}
.m61_c01178{transform:matrix(0.314742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314742,0.000000,0.000000,0.250000,0,0);}
.m49_c01178{transform:matrix(0.315414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315414,0.000000,0.000000,0.250000,0,0);}
.m7e_c01178{transform:matrix(0.316395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316395,0.000000,0.000000,0.250000,0,0);}
.m3d_c01178{transform:matrix(0.318659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318659,0.000000,0.000000,0.250000,0,0);}
.m53_c01178{transform:matrix(0.318673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318673,0.000000,0.000000,0.250000,0,0);}
.m4b_c01178{transform:matrix(0.318914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318914,0.000000,0.000000,0.250000,0,0);}
.m35_c01178{transform:matrix(0.319222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319222,0.000000,0.000000,0.250000,0,0);}
.m1e_c01178{transform:matrix(0.319223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319223,0.000000,0.000000,0.250000,0,0);}
.m3b_c01178{transform:matrix(0.321340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321340,0.000000,0.000000,0.250000,0,0);}
.m25_c01178{transform:matrix(0.321873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321873,0.000000,0.000000,0.250000,0,0);}
.m85_c01178{transform:matrix(0.321943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321943,0.000000,0.000000,0.250000,0,0);}
.m6_c01178{transform:matrix(0.322088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322088,0.000000,0.000000,0.250000,0,0);}
.m1b_c01178{transform:matrix(0.325672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325672,0.000000,0.000000,0.250000,0,0);}
.m68_c01178{transform:matrix(0.325956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325956,0.000000,0.000000,0.250000,0,0);}
.m5b_c01178{transform:matrix(0.326696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326696,0.000000,0.000000,0.250000,0,0);}
.m3f_c01178{transform:matrix(0.327467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327467,0.000000,0.000000,0.250000,0,0);}
.m51_c01178{transform:matrix(0.327765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327765,0.000000,0.000000,0.250000,0,0);}
.m5_c01178{transform:matrix(0.328736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328736,0.000000,0.000000,0.250000,0,0);}
.m6f_c01178{transform:matrix(0.329397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329397,0.000000,0.000000,0.250000,0,0);}
.m30_c01178{transform:matrix(0.330951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330951,0.000000,0.000000,0.250000,0,0);}
.m46_c01178{transform:matrix(0.332951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332951,0.000000,0.000000,0.250000,0,0);}
.m48_c01178{transform:matrix(0.334797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334797,0.000000,0.000000,0.250000,0,0);}
.m12_c01178{transform:matrix(0.335552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335552,0.000000,0.000000,0.250000,0,0);}
.m50_c01178{transform:matrix(0.335629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335629,0.000000,0.000000,0.250000,0,0);}
.m52_c01178{transform:matrix(0.336207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336207,0.000000,0.000000,0.250000,0,0);}
.m58_c01178{transform:matrix(0.336461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336461,0.000000,0.000000,0.250000,0,0);}
.m78_c01178{transform:matrix(0.336612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336612,0.000000,0.000000,0.250000,0,0);}
.m80_c01178{transform:matrix(0.339665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339665,0.000000,0.000000,0.250000,0,0);}
.m3a_c01178{transform:matrix(0.341850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341850,0.000000,0.000000,0.250000,0,0);}
.m5e_c01178{transform:matrix(0.343757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343757,0.000000,0.000000,0.250000,0,0);}
.m39_c01178{transform:matrix(0.344568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344568,0.000000,0.000000,0.250000,0,0);}
.m56_c01178{transform:matrix(0.346534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346534,0.000000,0.000000,0.250000,0,0);}
.m74_c01178{transform:matrix(0.348334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348334,0.000000,0.000000,0.250000,0,0);}
.m45_c01178{transform:matrix(0.350205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350205,0.000000,0.000000,0.250000,0,0);}
.m64_c01178{transform:matrix(0.354806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354806,0.000000,0.000000,0.250000,0,0);}
.m10_c01178{transform:matrix(0.357279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357279,0.000000,0.000000,0.250000,0,0);}
.m77_c01178{transform:matrix(0.360922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360922,0.000000,0.000000,0.250000,0,0);}
.mf_c01178{transform:matrix(0.382951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382951,0.000000,0.000000,0.250000,0,0);}
.m7_c01178{transform:matrix(0.405373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405373,0.000000,0.000000,0.250000,0,0);}
.m2e_c01178{transform:matrix(0.405939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405939,0.000000,0.000000,0.250000,0,0);}
.m27_c01178{transform:matrix(0.411082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411082,0.000000,0.000000,0.250000,0,0);}
.m5a_c01178{transform:matrix(0.657381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657381,0.000000,0.000000,0.250000,0,0);}
.v0_c01178{vertical-align:0.000000px;}
.ls4_c01178{letter-spacing:-3.465000px;}
.ls8_c01178{letter-spacing:-3.035340px;}
.ls5_c01178{letter-spacing:-2.605680px;}
.ls6_c01178{letter-spacing:-2.591827px;}
.lsd_c01178{letter-spacing:-2.217600px;}
.ls7_c01178{letter-spacing:-0.444313px;}
.ls1_c01178{letter-spacing:0.000000px;}
.ls3_c01178{letter-spacing:1.838866px;}
.lsf_c01178{letter-spacing:2.091989px;}
.ls10_c01178{letter-spacing:2.412115px;}
.lsb_c01178{letter-spacing:3.286810px;}
.ls12_c01178{letter-spacing:3.435310px;}
.lsc_c01178{letter-spacing:3.465000px;}
.lse_c01178{letter-spacing:3.610728px;}
.lsa_c01178{letter-spacing:3.655397px;}
.ls0_c01178{letter-spacing:3.722400px;}
.ls11_c01178{letter-spacing:4.019400px;}
.ls2_c01178{letter-spacing:4.158000px;}
.ls13_c01178{letter-spacing:31.363200px;}
.ls9_c01178{letter-spacing:62.726400px;}
.sc__c01178{text-shadow:none;}
.sc0_c01178{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01178{-webkit-text-stroke:0px transparent;}
.sc0_c01178{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01178{word-spacing:-18.612000px;}
.ws1_c01178{word-spacing:0.000000px;}
._0_c01178{margin-left:-23.299056px;}
._1_c01178{margin-left:-14.071464px;}
._4_c01178{margin-left:-2.765268px;}
._2_c01178{width:23.898600px;}
._3_c01178{width:204.081372px;}
._5_c01178{width:279.990612px;}
.fc0_c01178{color:transparent;}
.fs10_c01178{font-size:25.344000px;}
.fse_c01178{font-size:27.918000px;}
.fs11_c01178{font-size:31.363200px;}
.fs6_c01178{font-size:62.726400px;}
.fs9_c01178{font-size:63.360000px;}
.fs7_c01178{font-size:65.736198px;}
.fsf_c01178{font-size:66.528000px;}
.fsd_c01178{font-size:68.706198px;}
.fs8_c01178{font-size:69.300000px;}
.fsc_c01178{font-size:72.864000px;}
.fs4_c01178{font-size:74.052198px;}
.fs0_c01178{font-size:74.448000px;}
.fs2_c01178{font-size:74.844000px;}
.fsa_c01178{font-size:79.200000px;}
.fsb_c01178{font-size:80.388000px;}
.fs1_c01178{font-size:83.160000px;}
.fs5_c01178{font-size:86.724000px;}
.fs3_c01178{font-size:99.000000px;}
.y0_c01178{bottom:0.000000px;}
.y1_c01178{bottom:76.500000px;}
.y19_c01178{bottom:141.046335px;}
.y17_c01178{bottom:150.669135px;}
.y18_c01178{bottom:151.381935px;}
.y16_c01178{bottom:164.212335px;}
.y15_c01178{bottom:184.165785px;}
.y14_c01178{bottom:213.751935px;}
.y13_c01178{bottom:218.023785px;}
.y12_c01178{bottom:250.461135px;}
.y11_c01178{bottom:282.893535px;}
.y10_c01178{bottom:347.396985px;}
.yf_c01178{bottom:380.190735px;}
.ye_c01178{bottom:444.342735px;}
.yd_c01178{bottom:476.062335px;}
.yc_c01178{bottom:508.494735px;}
.yb_c01178{bottom:571.221135px;}
.ya_c01178{bottom:602.935785px;}
.y9_c01178{bottom:635.724585px;}
.y8_c01178{bottom:668.156985px;}
.y7_c01178{bottom:732.308985px;}
.y6_c01178{bottom:796.465935px;}
.y5_c01178{bottom:828.893385px;}
.y4_c01178{bottom:860.617935px;}
.y3_c01178{bottom:925.482735px;}
.y2_c01178{bottom:1074.096585px;}
.h13_c01178{height:20.887891px;}
.h12_c01178{height:24.873750px;}
.h10_c01178{height:29.117602px;}
.h8_c01178{height:41.775782px;}
.hb_c01178{height:66.082500px;}
.hf_c01178{height:67.431376px;}
.h9_c01178{height:68.560800px;}
.h11_c01178{height:69.386625px;}
.he_c01178{height:71.512031px;}
.ha_c01178{height:72.277734px;}
.h6_c01178{height:72.678183px;}
.h2_c01178{height:73.066641px;}
.h4_c01178{height:73.455293px;}
.hc_c01178{height:77.730469px;}
.hd_c01178{height:78.896426px;}
.h3_c01178{height:81.616992px;}
.h7_c01178{height:85.114863px;}
.h5_c01178{height:97.163086px;}
.h1_c01178{height:1110.000000px;}
.h0_c01178{height:1263.000000px;}
.w1_c01178{width:775.500000px;}
.w0_c01178{width:892.500000px;}
.x0_c01178{left:0.000000px;}
.x1_c01178{left:58.500000px;}
.x41_c01178{left:90.977685px;}
.x27_c01178{left:92.046885px;}
.x3_c01178{left:93.086385px;}
.x1e_c01178{left:144.917835px;}
.x4_c01178{left:146.769135px;}
.x2b_c01178{left:179.468835px;}
.x35_c01178{left:189.903435px;}
.x12_c01178{left:192.437835px;}
.x5_c01178{left:200.526135px;}
.xc_c01178{left:203.278335px;}
.x3d_c01178{left:213.930735px;}
.x47_c01178{left:221.444835px;}
.x55_c01178{left:223.924785px;}
.x1f_c01178{left:236.166135px;}
.x28_c01178{left:247.016535px;}
.x48_c01178{left:255.847335px;}
.x36_c01178{left:258.480735px;}
.x30_c01178{left:268.598535px;}
.x13_c01178{left:269.900385px;}
.x42_c01178{left:278.498535px;}
.x3e_c01178{left:279.874635px;}
.x6_c01178{left:281.092335px;}
.xd_c01178{left:291.823935px;}
.x43_c01178{left:301.441785px;}
.x31_c01178{left:303.758385px;}
.x14_c01178{left:305.258235px;}
.x7_c01178{left:312.069435px;}
.x29_c01178{left:313.643535px;}
.x50_c01178{left:323.370285px;}
.x56_c01178{left:333.106935px;}
.x20_c01178{left:345.244335px;}
.x15_c01178{left:347.278785px;}
.x37_c01178{left:349.224135px;}
.x39_c01178{left:356.342235px;}
.x32_c01178{left:359.000385px;}
.x51_c01178{left:367.019385px;}
.x2a_c01178{left:370.514085px;}
.x2c_c01178{left:379.156785px;}
.x44_c01178{left:380.389335px;}
.x3b_c01178{left:382.131735px;}
.xe_c01178{left:389.497335px;}
.x21_c01178{left:401.609985px;}
.xf_c01178{left:404.827485px;}
.x4e_c01178{left:413.188035px;}
.x8_c01178{left:414.940335px;}
.x49_c01178{left:422.736585px;}
.x16_c01178{left:425.107635px;}
.x3f_c01178{left:434.002785px;}
.x22_c01178{left:444.679935px;}
.x45_c01178{left:445.763985px;}
.x33_c01178{left:447.367785px;}
.x4a_c01178{left:457.272735px;}
.x2d_c01178{left:459.124035px;}
.x17_c01178{left:468.623085px;}
.x9_c01178{left:469.771485px;}
.x59_c01178{left:477.340035px;}
.x10_c01178{left:480.161535px;}
.x52_c01178{left:488.908185px;}
.x4f_c01178{left:491.254485px;}
.x18_c01178{left:493.526535px;}
.x4b_c01178{left:500.704035px;}
.x38_c01178{left:524.038335px;}
.x4c_c01178{left:533.220585px;}
.xa_c01178{left:535.324335px;}
.x2e_c01178{left:545.882685px;}
.x53_c01178{left:555.208485px;}
.x40_c01178{left:568.197285px;}
.x58_c01178{left:572.889885px;}
.x23_c01178{left:578.750685px;}
.x4d_c01178{left:580.651485px;}
.xb_c01178{left:589.412985px;}
.x19_c01178{left:592.541385px;}
.x3c_c01178{left:601.030635px;}
.x11_c01178{left:613.677885px;}
.x57_c01178{left:621.508785px;}
.x54_c01178{left:622.756185px;}
.x1a_c01178{left:623.835285px;}
.x34_c01178{left:646.585485px;}
.x1b_c01178{left:657.366585px;}
.x2f_c01178{left:666.840885px;}
.x46_c01178{left:677.745735px;}
.x3a_c01178{left:688.779285px;}
.x1c_c01178{left:690.482085px;}
.x2_c01178{left:704.683635px;}
.x24_c01178{left:705.708285px;}
.x5b_c01178{left:707.891235px;}
.x5c_c01178{left:709.579185px;}
.x25_c01178{left:712.544235px;}
.x5a_c01178{left:720.320685px;}
.x1d_c01178{left:725.834985px;}
.x26_c01178{left:733.230285px;}
@media print{
.v0_c01178{vertical-align:0.000000pt;}
.ls4_c01178{letter-spacing:-3.080000pt;}
.ls8_c01178{letter-spacing:-2.698080pt;}
.ls5_c01178{letter-spacing:-2.316160pt;}
.ls6_c01178{letter-spacing:-2.303846pt;}
.lsd_c01178{letter-spacing:-1.971200pt;}
.ls7_c01178{letter-spacing:-0.394945pt;}
.ls1_c01178{letter-spacing:0.000000pt;}
.ls3_c01178{letter-spacing:1.634547pt;}
.lsf_c01178{letter-spacing:1.859546pt;}
.ls10_c01178{letter-spacing:2.144102pt;}
.lsb_c01178{letter-spacing:2.921609pt;}
.ls12_c01178{letter-spacing:3.053609pt;}
.lsc_c01178{letter-spacing:3.080000pt;}
.lse_c01178{letter-spacing:3.209536pt;}
.lsa_c01178{letter-spacing:3.249242pt;}
.ls0_c01178{letter-spacing:3.308800pt;}
.ls11_c01178{letter-spacing:3.572800pt;}
.ls2_c01178{letter-spacing:3.696000pt;}
.ls13_c01178{letter-spacing:27.878400pt;}
.ls9_c01178{letter-spacing:55.756800pt;}
.ws0_c01178{word-spacing:-16.544000pt;}
.ws1_c01178{word-spacing:0.000000pt;}
._0_c01178{margin-left:-20.710272pt;}
._1_c01178{margin-left:-12.507968pt;}
._4_c01178{margin-left:-2.458016pt;}
._2_c01178{width:21.243200pt;}
._3_c01178{width:181.405664pt;}
._5_c01178{width:248.880544pt;}
.fs10_c01178{font-size:22.528000pt;}
.fse_c01178{font-size:24.816000pt;}
.fs11_c01178{font-size:27.878400pt;}
.fs6_c01178{font-size:55.756800pt;}
.fs9_c01178{font-size:56.320000pt;}
.fs7_c01178{font-size:58.432176pt;}
.fsf_c01178{font-size:59.136000pt;}
.fsd_c01178{font-size:61.072176pt;}
.fs8_c01178{font-size:61.600000pt;}
.fsc_c01178{font-size:64.768000pt;}
.fs4_c01178{font-size:65.824176pt;}
.fs0_c01178{font-size:66.176000pt;}
.fs2_c01178{font-size:66.528000pt;}
.fsa_c01178{font-size:70.400000pt;}
.fsb_c01178{font-size:71.456000pt;}
.fs1_c01178{font-size:73.920000pt;}
.fs5_c01178{font-size:77.088000pt;}
.fs3_c01178{font-size:88.000000pt;}
.y0_c01178{bottom:0.000000pt;}
.y1_c01178{bottom:68.000000pt;}
.y19_c01178{bottom:125.374520pt;}
.y17_c01178{bottom:133.928120pt;}
.y18_c01178{bottom:134.561720pt;}
.y16_c01178{bottom:145.966520pt;}
.y15_c01178{bottom:163.702920pt;}
.y14_c01178{bottom:190.001720pt;}
.y13_c01178{bottom:193.798920pt;}
.y12_c01178{bottom:222.632120pt;}
.y11_c01178{bottom:251.460920pt;}
.y10_c01178{bottom:308.797320pt;}
.yf_c01178{bottom:337.947320pt;}
.ye_c01178{bottom:394.971320pt;}
.yd_c01178{bottom:423.166520pt;}
.yc_c01178{bottom:451.995320pt;}
.yb_c01178{bottom:507.752120pt;}
.ya_c01178{bottom:535.942920pt;}
.y9_c01178{bottom:565.088520pt;}
.y8_c01178{bottom:593.917320pt;}
.y7_c01178{bottom:650.941320pt;}
.y6_c01178{bottom:707.969720pt;}
.y5_c01178{bottom:736.794120pt;}
.y4_c01178{bottom:764.993720pt;}
.y3_c01178{bottom:822.651320pt;}
.y2_c01178{bottom:954.752520pt;}
.h13_c01178{height:18.567014pt;}
.h12_c01178{height:22.110000pt;}
.h10_c01178{height:25.882313pt;}
.h8_c01178{height:37.134029pt;}
.hb_c01178{height:58.740000pt;}
.hf_c01178{height:59.939001pt;}
.h9_c01178{height:60.942934pt;}
.h11_c01178{height:61.677000pt;}
.he_c01178{height:63.566250pt;}
.ha_c01178{height:64.246875pt;}
.h6_c01178{height:64.602829pt;}
.h2_c01178{height:64.948125pt;}
.h4_c01178{height:65.293594pt;}
.hc_c01178{height:69.093750pt;}
.hd_c01178{height:70.130156pt;}
.h3_c01178{height:72.548438pt;}
.h7_c01178{height:75.657656pt;}
.h5_c01178{height:86.367188pt;}
.h1_c01178{height:986.666667pt;}
.h0_c01178{height:1122.666667pt;}
.w1_c01178{width:689.333333pt;}
.w0_c01178{width:793.333333pt;}
.x0_c01178{left:0.000000pt;}
.x1_c01178{left:52.000000pt;}
.x41_c01178{left:80.869053pt;}
.x27_c01178{left:81.819453pt;}
.x3_c01178{left:82.743453pt;}
.x1e_c01178{left:128.815853pt;}
.x4_c01178{left:130.461453pt;}
.x2b_c01178{left:159.527853pt;}
.x35_c01178{left:168.803053pt;}
.x12_c01178{left:171.055853pt;}
.x5_c01178{left:178.245453pt;}
.xc_c01178{left:180.691853pt;}
.x3d_c01178{left:190.160653pt;}
.x47_c01178{left:196.839853pt;}
.x55_c01178{left:199.044253pt;}
.x1f_c01178{left:209.925453pt;}
.x28_c01178{left:219.570253pt;}
.x48_c01178{left:227.419853pt;}
.x36_c01178{left:229.760653pt;}
.x30_c01178{left:238.754253pt;}
.x13_c01178{left:239.911453pt;}
.x42_c01178{left:247.554253pt;}
.x3e_c01178{left:248.777453pt;}
.x6_c01178{left:249.859853pt;}
.xd_c01178{left:259.399053pt;}
.x43_c01178{left:267.948253pt;}
.x31_c01178{left:270.007453pt;}
.x14_c01178{left:271.340653pt;}
.x7_c01178{left:277.395053pt;}
.x29_c01178{left:278.794253pt;}
.x50_c01178{left:287.440253pt;}
.x56_c01178{left:296.095053pt;}
.x20_c01178{left:306.883853pt;}
.x15_c01178{left:308.692253pt;}
.x37_c01178{left:310.421453pt;}
.x39_c01178{left:316.748653pt;}
.x32_c01178{left:319.111453pt;}
.x51_c01178{left:326.239453pt;}
.x2a_c01178{left:329.345853pt;}
.x2c_c01178{left:337.028253pt;}
.x44_c01178{left:338.123853pt;}
.x3b_c01178{left:339.672653pt;}
.xe_c01178{left:346.219853pt;}
.x21_c01178{left:356.986653pt;}
.xf_c01178{left:359.846653pt;}
.x4e_c01178{left:367.278253pt;}
.x8_c01178{left:368.835853pt;}
.x49_c01178{left:375.765853pt;}
.x16_c01178{left:377.873453pt;}
.x3f_c01178{left:385.780253pt;}
.x22_c01178{left:395.271053pt;}
.x45_c01178{left:396.234653pt;}
.x33_c01178{left:397.660253pt;}
.x4a_c01178{left:406.464653pt;}
.x2d_c01178{left:408.110253pt;}
.x17_c01178{left:416.553853pt;}
.x9_c01178{left:417.574653pt;}
.x59_c01178{left:424.302253pt;}
.x10_c01178{left:426.810253pt;}
.x52_c01178{left:434.585053pt;}
.x4f_c01178{left:436.670653pt;}
.x18_c01178{left:438.690253pt;}
.x4b_c01178{left:445.070253pt;}
.x38_c01178{left:465.811853pt;}
.x4c_c01178{left:473.973853pt;}
.xa_c01178{left:475.843853pt;}
.x2e_c01178{left:485.229053pt;}
.x53_c01178{left:493.518653pt;}
.x40_c01178{left:505.064253pt;}
.x58_c01178{left:509.235453pt;}
.x23_c01178{left:514.445053pt;}
.x4d_c01178{left:516.134653pt;}
.xb_c01178{left:523.922653pt;}
.x19_c01178{left:526.703453pt;}
.x3c_c01178{left:534.249453pt;}
.x11_c01178{left:545.491453pt;}
.x57_c01178{left:552.452253pt;}
.x54_c01178{left:553.561053pt;}
.x1a_c01178{left:554.520253pt;}
.x34_c01178{left:574.742653pt;}
.x1b_c01178{left:584.325853pt;}
.x2f_c01178{left:592.747453pt;}
.x46_c01178{left:602.440653pt;}
.x3a_c01178{left:612.248253pt;}
.x1c_c01178{left:613.761853pt;}
.x2_c01178{left:626.385453pt;}
.x24_c01178{left:627.296253pt;}
.x5b_c01178{left:629.236653pt;}
.x5c_c01178{left:630.737053pt;}
.x25_c01178{left:633.372653pt;}
.x5a_c01178{left:640.285053pt;}
.x1d_c01178{left:645.186653pt;}
.x26_c01178{left:651.760253pt;}
}





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

.ir_c01179:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01179{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01179;src:url('chunks/assets/font_4a5dc24c67d3ac8d4907596b.woff2')format("woff");}.ff1_c01179{font-family:ff1_c01179;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01179;src:url('chunks/assets/font_6e5aafed7f910eb574e531c1.woff2')format("woff");}.ff2_c01179{font-family:ff2_c01179;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01179;src:url('chunks/assets/font_a7a55eec0f0fa5fa57f18b36.woff2')format("woff");}.ff3_c01179{font-family:ff3_c01179;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01179;src:url('chunks/assets/font_edcc006c864d99e56da12f3a.woff2')format("woff");}.ff4_c01179{font-family:ff4_c01179;line-height:0.689941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01179;src:url('chunks/assets/font_07a8e16d46d95b6a253a799c.woff2')format("woff");}.ff5_c01179{font-family:ff5_c01179;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ma_c01179{transform:matrix(0.079269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.079269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.079269,0.000000,0.000000,0.250000,0,0);}
.m1d_c01179{transform:matrix(0.154120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154120,0.000000,0.000000,0.250000,0,0);}
.m4b_c01179{transform:matrix(0.154762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154762,0.000000,0.000000,0.250000,0,0);}
.m12_c01179{transform:matrix(0.218495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218495,0.000000,0.000000,0.250000,0,0);}
.m4d_c01179{transform:matrix(0.225435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225435,0.000000,0.000000,0.250000,0,0);}
.m62_c01179{transform:matrix(0.235465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235465,0.000000,0.000000,0.250000,0,0);}
.m1_c01179{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2_c01179{transform:matrix(0.251531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251531,0.000000,0.000000,0.250000,0,0);}
.m61_c01179{transform:matrix(0.253407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253407,0.000000,0.000000,0.250000,0,0);}
.m5b_c01179{transform:matrix(0.254486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254486,0.000000,0.000000,0.250000,0,0);}
.m0_c01179{transform:matrix(0.259213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259213,0.000000,0.000000,0.250000,0,0);}
.m41_c01179{transform:matrix(0.260794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260794,0.000000,0.000000,0.250000,0,0);}
.m63_c01179{transform:matrix(0.262534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262534,0.000000,0.000000,0.250000,0,0);}
.m2e_c01179{transform:matrix(0.262950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262950,0.000000,0.000000,0.250000,0,0);}
.m17_c01179{transform:matrix(0.263111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263111,0.000000,0.000000,0.250000,0,0);}
.m54_c01179{transform:matrix(0.263273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263273,0.000000,0.000000,0.250000,0,0);}
.m6e_c01179{transform:matrix(0.263376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263376,0.000000,0.000000,0.250000,0,0);}
.m34_c01179{transform:matrix(0.264376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264376,0.000000,0.000000,0.250000,0,0);}
.m6c_c01179{transform:matrix(0.264484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264484,0.000000,0.000000,0.250000,0,0);}
.m73_c01179{transform:matrix(0.266101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266101,0.000000,0.000000,0.250000,0,0);}
.mb_c01179{transform:matrix(0.266154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266154,0.000000,0.000000,0.250000,0,0);}
.m70_c01179{transform:matrix(0.267783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267783,0.000000,0.000000,0.250000,0,0);}
.m21_c01179{transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);}
.m22_c01179{transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);}
.m45_c01179{transform:matrix(0.271815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271815,0.000000,0.000000,0.250000,0,0);}
.m52_c01179{transform:matrix(0.272667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272667,0.000000,0.000000,0.250000,0,0);}
.m42_c01179{transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);}
.m33_c01179{transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);}
.m18_c01179{transform:matrix(0.276174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276174,0.000000,0.000000,0.250000,0,0);}
.m25_c01179{transform:matrix(0.276641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276641,0.000000,0.000000,0.250000,0,0);}
.m2c_c01179{transform:matrix(0.277026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277026,0.000000,0.000000,0.250000,0,0);}
.m68_c01179{transform:matrix(0.277367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277367,0.000000,0.000000,0.250000,0,0);}
.m5d_c01179{transform:matrix(0.278126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278126,0.000000,0.000000,0.250000,0,0);}
.m50_c01179{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m30_c01179{transform:matrix(0.280272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280272,0.000000,0.000000,0.250000,0,0);}
.m59_c01179{transform:matrix(0.280370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280370,0.000000,0.000000,0.250000,0,0);}
.m8_c01179{transform:matrix(0.281885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281885,0.000000,0.000000,0.250000,0,0);}
.m24_c01179{transform:matrix(0.282472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282472,0.000000,0.000000,0.250000,0,0);}
.m57_c01179{transform:matrix(0.283810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283810,0.000000,0.000000,0.250000,0,0);}
.me_c01179{transform:matrix(0.283860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283860,0.000000,0.000000,0.250000,0,0);}
.m1c_c01179{transform:matrix(0.284184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284184,0.000000,0.000000,0.250000,0,0);}
.m5a_c01179{transform:matrix(0.284620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284620,0.000000,0.000000,0.250000,0,0);}
.m5_c01179{transform:matrix(0.285652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285652,0.000000,0.000000,0.250000,0,0);}
.m6d_c01179{transform:matrix(0.287086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287086,0.000000,0.000000,0.250000,0,0);}
.m4e_c01179{transform:matrix(0.287096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287096,0.000000,0.000000,0.250000,0,0);}
.m6a_c01179{transform:matrix(0.287758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287758,0.000000,0.000000,0.250000,0,0);}
.mc_c01179{transform:matrix(0.289440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289440,0.000000,0.000000,0.250000,0,0);}
.m56_c01179{transform:matrix(0.290328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290328,0.000000,0.000000,0.250000,0,0);}
.m3_c01179{transform:matrix(0.291495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291495,0.000000,0.000000,0.250000,0,0);}
.m51_c01179{transform:matrix(0.292362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292362,0.000000,0.000000,0.250000,0,0);}
.m40_c01179{transform:matrix(0.292897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292897,0.000000,0.000000,0.250000,0,0);}
.m3a_c01179{transform:matrix(0.293280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293280,0.000000,0.000000,0.250000,0,0);}
.m2a_c01179{transform:matrix(0.294503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294503,0.000000,0.000000,0.250000,0,0);}
.m3d_c01179{transform:matrix(0.294709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294709,0.000000,0.000000,0.250000,0,0);}
.md_c01179{transform:matrix(0.295010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295010,0.000000,0.000000,0.250000,0,0);}
.m64_c01179{transform:matrix(0.295125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295125,0.000000,0.000000,0.250000,0,0);}
.m16_c01179{transform:matrix(0.295162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295162,0.000000,0.000000,0.250000,0,0);}
.m11_c01179{transform:matrix(0.295425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295425,0.000000,0.000000,0.250000,0,0);}
.m4c_c01179{transform:matrix(0.297564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297564,0.000000,0.000000,0.250000,0,0);}
.m43_c01179{transform:matrix(0.299784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299784,0.000000,0.000000,0.250000,0,0);}
.m5e_c01179{transform:matrix(0.300302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300302,0.000000,0.000000,0.250000,0,0);}
.m1e_c01179{transform:matrix(0.300494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300494,0.000000,0.000000,0.250000,0,0);}
.m28_c01179{transform:matrix(0.300789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300789,0.000000,0.000000,0.250000,0,0);}
.m9_c01179{transform:matrix(0.301121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301121,0.000000,0.000000,0.250000,0,0);}
.m46_c01179{transform:matrix(0.302097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302097,0.000000,0.000000,0.250000,0,0);}
.m1a_c01179{transform:matrix(0.303218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303218,0.000000,0.000000,0.250000,0,0);}
.m38_c01179{transform:matrix(0.303946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303946,0.000000,0.000000,0.250000,0,0);}
.m3b_c01179{transform:matrix(0.304146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304146,0.000000,0.000000,0.250000,0,0);}
.m2d_c01179{transform:matrix(0.305927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305927,0.000000,0.000000,0.250000,0,0);}
.m58_c01179{transform:matrix(0.306031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306031,0.000000,0.000000,0.250000,0,0);}
.m32_c01179{transform:matrix(0.307690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307690,0.000000,0.000000,0.250000,0,0);}
.m23_c01179{transform:matrix(0.308974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308974,0.000000,0.000000,0.250000,0,0);}
.m72_c01179{transform:matrix(0.310808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310808,0.000000,0.000000,0.250000,0,0);}
.m71_c01179{transform:matrix(0.311245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311245,0.000000,0.000000,0.250000,0,0);}
.m1b_c01179{transform:matrix(0.312698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312698,0.000000,0.000000,0.250000,0,0);}
.m3f_c01179{transform:matrix(0.313326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313326,0.000000,0.000000,0.250000,0,0);}
.m14_c01179{transform:matrix(0.314146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314146,0.000000,0.000000,0.250000,0,0);}
.m31_c01179{transform:matrix(0.315372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315372,0.000000,0.000000,0.250000,0,0);}
.m29_c01179{transform:matrix(0.315907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315907,0.000000,0.000000,0.250000,0,0);}
.m19_c01179{transform:matrix(0.316480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316480,0.000000,0.000000,0.250000,0,0);}
.m5c_c01179{transform:matrix(0.316817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316817,0.000000,0.000000,0.250000,0,0);}
.m3c_c01179{transform:matrix(0.316894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316894,0.000000,0.000000,0.250000,0,0);}
.m49_c01179{transform:matrix(0.317366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317366,0.000000,0.000000,0.250000,0,0);}
.m36_c01179{transform:matrix(0.318265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318265,0.000000,0.000000,0.250000,0,0);}
.m67_c01179{transform:matrix(0.319572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319572,0.000000,0.000000,0.250000,0,0);}
.m5f_c01179{transform:matrix(0.319910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319910,0.000000,0.000000,0.250000,0,0);}
.m10_c01179{transform:matrix(0.322215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322215,0.000000,0.000000,0.250000,0,0);}
.m13_c01179{transform:matrix(0.322240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322240,0.000000,0.000000,0.250000,0,0);}
.m37_c01179{transform:matrix(0.322699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322699,0.000000,0.000000,0.250000,0,0);}
.m44_c01179{transform:matrix(0.328481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328481,0.000000,0.000000,0.250000,0,0);}
.mf_c01179{transform:matrix(0.330522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330522,0.000000,0.000000,0.250000,0,0);}
.m2f_c01179{transform:matrix(0.331031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331031,0.000000,0.000000,0.250000,0,0);}
.m6b_c01179{transform:matrix(0.333038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333038,0.000000,0.000000,0.250000,0,0);}
.m66_c01179{transform:matrix(0.334327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334327,0.000000,0.000000,0.250000,0,0);}
.m65_c01179{transform:matrix(0.334341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334341,0.000000,0.000000,0.250000,0,0);}
.m4_c01179{transform:matrix(0.334498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334498,0.000000,0.000000,0.250000,0,0);}
.m35_c01179{transform:matrix(0.335295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335295,0.000000,0.000000,0.250000,0,0);}
.m27_c01179{transform:matrix(0.336489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336489,0.000000,0.000000,0.250000,0,0);}
.m20_c01179{transform:matrix(0.339063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339063,0.000000,0.000000,0.250000,0,0);}
.m1f_c01179{transform:matrix(0.345851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345851,0.000000,0.000000,0.250000,0,0);}
.m7_c01179{transform:matrix(0.350394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350394,0.000000,0.000000,0.250000,0,0);}
.m26_c01179{transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);}
.m48_c01179{transform:matrix(0.353714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353714,0.000000,0.000000,0.250000,0,0);}
.m4f_c01179{transform:matrix(0.357996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357996,0.000000,0.000000,0.250000,0,0);}
.m4a_c01179{transform:matrix(0.359199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359199,0.000000,0.000000,0.250000,0,0);}
.m39_c01179{transform:matrix(0.362061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362061,0.000000,0.000000,0.250000,0,0);}
.m2b_c01179{transform:matrix(0.368014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368014,0.000000,0.000000,0.250000,0,0);}
.m47_c01179{transform:matrix(0.371568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371568,0.000000,0.000000,0.250000,0,0);}
.m69_c01179{transform:matrix(0.385542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385542,0.000000,0.000000,0.250000,0,0);}
.m6_c01179{transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);}
.m15_c01179{transform:matrix(0.393783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393783,0.000000,0.000000,0.250000,0,0);}
.m53_c01179{transform:matrix(0.395594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395594,0.000000,0.000000,0.250000,0,0);}
.m6f_c01179{transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);}
.m3e_c01179{transform:matrix(0.403171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403171,0.000000,0.000000,0.250000,0,0);}
.m55_c01179{transform:matrix(0.407434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407434,0.000000,0.000000,0.250000,0,0);}
.m60_c01179{transform:matrix(0.410244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410244,0.000000,0.000000,0.250000,0,0);}
.v0_c01179{vertical-align:0.000000px;}
.v1_c01179{vertical-align:5.702400px;}
.ls9_c01179{letter-spacing:-3.021480px;}
.lsf_c01179{letter-spacing:-2.647267px;}
.ls8_c01179{letter-spacing:-2.304958px;}
.ls17_c01179{letter-spacing:-2.125377px;}
.ls16_c01179{letter-spacing:-1.588435px;}
.ls3_c01179{letter-spacing:0.000000px;}
.ls5_c01179{letter-spacing:0.589962px;}
.ls14_c01179{letter-spacing:2.503558px;}
.ls12_c01179{letter-spacing:2.911994px;}
.ls0_c01179{letter-spacing:3.365811px;}
.ls1_c01179{letter-spacing:3.401323px;}
.ls11_c01179{letter-spacing:3.547338px;}
.ls4_c01179{letter-spacing:3.722400px;}
.ls10_c01179{letter-spacing:3.742200px;}
.ls19_c01179{letter-spacing:3.781166px;}
.ls6_c01179{letter-spacing:3.781810px;}
.lsc_c01179{letter-spacing:3.999610px;}
.ls18_c01179{letter-spacing:4.136735px;}
.ls13_c01179{letter-spacing:4.299134px;}
.ls2_c01179{letter-spacing:4.316400px;}
.lsd_c01179{letter-spacing:5.187610px;}
.lsb_c01179{letter-spacing:55.598598px;}
.ls7_c01179{letter-spacing:58.449798px;}
.lse_c01179{letter-spacing:59.875398px;}
.ls15_c01179{letter-spacing:61.300998px;}
.lsa_c01179{letter-spacing:62.726400px;}
.sc__c01179{text-shadow:none;}
.sc0_c01179{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01179{-webkit-text-stroke:0px transparent;}
.sc0_c01179{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01179{word-spacing:-22.274860px;}
.ws1_c01179{word-spacing:-3.622974px;}
.ws2_c01179{word-spacing:0.000000px;}
._4_c01179{margin-left:-18.455232px;}
._0_c01179{margin-left:-12.858170px;}
._1_c01179{width:3.136201px;}
._3_c01179{width:11.458860px;}
._6_c01179{width:55.064117px;}
._5_c01179{width:90.996206px;}
._2_c01179{width:468.586800px;}
._7_c01179{width:941.847984px;}
.fc0_c01179{color:transparent;}
.fs8_c01179{font-size:17.424000px;}
.fsf_c01179{font-size:22.572000px;}
.fs9_c01179{font-size:37.818000px;}
.fse_c01179{font-size:39.600000px;}
.fs6_c01179{font-size:55.598598px;}
.fs4_c01179{font-size:58.449798px;}
.fsc_c01179{font-size:59.875398px;}
.fs10_c01179{font-size:61.300998px;}
.fs5_c01179{font-size:62.726400px;}
.fs7_c01179{font-size:66.528000px;}
.fs1_c01179{font-size:72.864000px;}
.fs2_c01179{font-size:74.448000px;}
.fsd_c01179{font-size:74.844000px;}
.fs3_c01179{font-size:75.636198px;}
.fsa_c01179{font-size:79.992198px;}
.fs0_c01179{font-size:86.328000px;}
.fs11_c01179{font-size:86.724000px;}
.fsb_c01179{font-size:103.752198px;}
.y0_c01179{bottom:0.000000px;}
.y1_c01179{bottom:76.500000px;}
.y1a_c01179{bottom:160.291935px;}
.y19_c01179{bottom:194.149935px;}
.y18_c01179{bottom:259.727535px;}
.y17_c01179{bottom:324.235935px;}
.y16_c01179{bottom:355.950585px;}
.y15_c01179{bottom:419.394735px;}
.y14_c01179{bottom:451.822185px;}
.y13_c01179{bottom:482.828985px;}
.y12_c01179{bottom:534.863385px;}
.y11_c01179{bottom:546.624585px;}
.y10_c01179{bottom:579.061935px;}
.yf_c01179{bottom:611.137935px;}
.yd_c01179{bottom:643.208985px;}
.ye_c01179{bottom:648.916335px;}
.yc_c01179{bottom:669.938985px;}
.yb_c01179{bottom:675.646335px;}
.ya_c01179{bottom:707.360985px;}
.y9_c01179{bottom:767.948985px;}
.y8_c01179{bottom:771.156585px;}
.y7_c01179{bottom:803.945385px;}
.y6_c01179{bottom:836.377785px;}
.y5_c01179{bottom:899.465535px;}
.y4_c01179{bottom:931.897935px;}
.y3_c01179{bottom:950.425785px;}
.y2_c01179{bottom:1070.888985px;}
.ha_c01179{height:17.100703px;}
.h11_c01179{height:23.541891px;}
.h8_c01179{height:37.028666px;}
.h6_c01179{height:38.927565px;}
.hb_c01179{height:39.442992px;}
.he_c01179{height:39.877015px;}
.h12_c01179{height:40.826465px;}
.h10_c01179{height:41.301563px;}
.h7_c01179{height:41.775782px;}
.h9_c01179{height:69.386625px;}
.h3_c01179{height:71.512031px;}
.h4_c01179{height:73.066641px;}
.hf_c01179{height:73.455293px;}
.h5_c01179{height:74.232792px;}
.hc_c01179{height:78.507968px;}
.h2_c01179{height:84.726211px;}
.h13_c01179{height:85.072518px;}
.hd_c01179{height:101.827108px;}
.h1_c01179{height:1110.000000px;}
.h0_c01179{height:1263.000000px;}
.w1_c01179{width:775.500000px;}
.w0_c01179{width:892.500000px;}
.x0_c01179{left:0.000000px;}
.x1_c01179{left:58.500000px;}
.x45_c01179{left:84.889185px;}
.x11_c01179{left:85.958385px;}
.x4_c01179{left:87.067185px;}
.x4e_c01179{left:138.368985px;}
.x12_c01179{left:139.641135px;}
.x5_c01179{left:140.923185px;}
.xf_c01179{left:162.376485px;}
.x4b_c01179{left:174.385185px;}
.x42_c01179{left:184.290135px;}
.x6_c01179{left:186.775035px;}
.x46_c01179{left:194.457435px;}
.x10_c01179{left:196.249335px;}
.x32_c01179{left:207.371985px;}
.x50_c01179{left:208.451085px;}
.x7_c01179{left:218.954985px;}
.x1b_c01179{left:228.671835px;}
.x2a_c01179{left:230.379585px;}
.x4f_c01179{left:239.546985px;}
.x1e_c01179{left:251.704185px;}
.x4c_c01179{left:263.099085px;}
.x3f_c01179{left:264.183135px;}
.x13_c01179{left:273.301035px;}
.x23_c01179{left:274.533585px;}
.x51_c01179{left:283.651485px;}
.x2b_c01179{left:286.324485px;}
.x33_c01179{left:295.912635px;}
.x43_c01179{left:306.089835px;}
.x4d_c01179{left:307.332285px;}
.x8_c01179{left:308.391585px;}
.x3b_c01179{left:317.653035px;}
.x40_c01179{left:320.934885px;}
.x2c_c01179{left:326.503635px;}
.x2d_c01179{left:329.434035px;}
.x38_c01179{left:331.711035px;}
.x9_c01179{left:340.799235px;}
.x24_c01179{left:343.254435px;}
.x1f_c01179{left:350.639835px;}
.x54_c01179{left:360.569535px;}
.x25_c01179{left:362.014935px;}
.x3c_c01179{left:363.519735px;}
.xa_c01179{left:373.617735px;}
.x14_c01179{left:383.359335px;}
.x2e_c01179{left:387.339135px;}
.x34_c01179{left:396.788685px;}
.x1c_c01179{left:407.827185px;}
.x47_c01179{left:417.370785px;}
.x39_c01179{left:418.538985px;}
.x2f_c01179{left:429.379485px;}
.xb_c01179{left:439.734885px;}
.x35_c01179{left:447.031185px;}
.x3d_c01179{left:448.828035px;}
.x52_c01179{left:450.634785px;}
.x15_c01179{left:463.212735px;}
.x41_c01179{left:473.731485px;}
.x30_c01179{left:483.581985px;}
.x20_c01179{left:485.532285px;}
.x16_c01179{left:494.189835px;}
.x26_c01179{left:506.901435px;}
.x21_c01179{left:516.766785px;}
.x3e_c01179{left:517.999335px;}
.xc_c01179{left:528.909135px;}
.x48_c01179{left:538.452735px;}
.x36_c01179{left:553.609635px;}
.x44_c01179{left:560.554485px;}
.x31_c01179{left:562.514685px;}
.xd_c01179{left:572.370135px;}
.x37_c01179{left:574.944135px;}
.x27_c01179{left:584.151135px;}
.x17_c01179{left:595.991535px;}
.xe_c01179{left:605.292585px;}
.x49_c01179{left:615.737085px;}
.x28_c01179{left:627.701235px;}
.x1d_c01179{left:639.011985px;}
.x18_c01179{left:650.114835px;}
.x4a_c01179{left:651.134535px;}
.x22_c01179{left:652.292835px;}
.x29_c01179{left:661.183035px;}
.x19_c01179{left:683.517435px;}
.x3a_c01179{left:694.323285px;}
.x53_c01179{left:695.833035px;}
.x2_c01179{left:700.401885px;}
.x3_c01179{left:702.866985px;}
.x1a_c01179{left:716.731935px;}
@media print{
.v0_c01179{vertical-align:0.000000pt;}
.v1_c01179{vertical-align:5.068800pt;}
.ls9_c01179{letter-spacing:-2.685760pt;}
.lsf_c01179{letter-spacing:-2.353126pt;}
.ls8_c01179{letter-spacing:-2.048851pt;}
.ls17_c01179{letter-spacing:-1.889224pt;}
.ls16_c01179{letter-spacing:-1.411942pt;}
.ls3_c01179{letter-spacing:0.000000pt;}
.ls5_c01179{letter-spacing:0.524411pt;}
.ls14_c01179{letter-spacing:2.225385pt;}
.ls12_c01179{letter-spacing:2.588439pt;}
.ls0_c01179{letter-spacing:2.991832pt;}
.ls1_c01179{letter-spacing:3.023398pt;}
.ls11_c01179{letter-spacing:3.153189pt;}
.ls4_c01179{letter-spacing:3.308800pt;}
.ls10_c01179{letter-spacing:3.326400pt;}
.ls19_c01179{letter-spacing:3.361037pt;}
.ls6_c01179{letter-spacing:3.361609pt;}
.lsc_c01179{letter-spacing:3.555209pt;}
.ls18_c01179{letter-spacing:3.677098pt;}
.ls13_c01179{letter-spacing:3.821453pt;}
.ls2_c01179{letter-spacing:3.836800pt;}
.lsd_c01179{letter-spacing:4.611209pt;}
.lsb_c01179{letter-spacing:49.420976pt;}
.ls7_c01179{letter-spacing:51.955376pt;}
.lse_c01179{letter-spacing:53.222576pt;}
.ls15_c01179{letter-spacing:54.489776pt;}
.lsa_c01179{letter-spacing:55.756800pt;}
.ws0_c01179{word-spacing:-19.799876pt;}
.ws1_c01179{word-spacing:-3.220421pt;}
.ws2_c01179{word-spacing:0.000000pt;}
._4_c01179{margin-left:-16.404651pt;}
._0_c01179{margin-left:-11.429484pt;}
._1_c01179{width:2.787734pt;}
._3_c01179{width:10.185654pt;}
._6_c01179{width:48.945882pt;}
._5_c01179{width:80.885517pt;}
._2_c01179{width:416.521600pt;}
._7_c01179{width:837.198208pt;}
.fs8_c01179{font-size:15.488000pt;}
.fsf_c01179{font-size:20.064000pt;}
.fs9_c01179{font-size:33.616000pt;}
.fse_c01179{font-size:35.200000pt;}
.fs6_c01179{font-size:49.420976pt;}
.fs4_c01179{font-size:51.955376pt;}
.fsc_c01179{font-size:53.222576pt;}
.fs10_c01179{font-size:54.489776pt;}
.fs5_c01179{font-size:55.756800pt;}
.fs7_c01179{font-size:59.136000pt;}
.fs1_c01179{font-size:64.768000pt;}
.fs2_c01179{font-size:66.176000pt;}
.fsd_c01179{font-size:66.528000pt;}
.fs3_c01179{font-size:67.232176pt;}
.fsa_c01179{font-size:71.104176pt;}
.fs0_c01179{font-size:76.736000pt;}
.fs11_c01179{font-size:77.088000pt;}
.fsb_c01179{font-size:92.224176pt;}
.y0_c01179{bottom:0.000000pt;}
.y1_c01179{bottom:68.000000pt;}
.y1a_c01179{bottom:142.481720pt;}
.y19_c01179{bottom:172.577720pt;}
.y18_c01179{bottom:230.868920pt;}
.y17_c01179{bottom:288.209720pt;}
.y16_c01179{bottom:316.400520pt;}
.y15_c01179{bottom:372.795320pt;}
.y14_c01179{bottom:401.619720pt;}
.y13_c01179{bottom:429.181320pt;}
.y12_c01179{bottom:475.434120pt;}
.y11_c01179{bottom:485.888520pt;}
.y10_c01179{bottom:514.721720pt;}
.yf_c01179{bottom:543.233720pt;}
.yd_c01179{bottom:571.741320pt;}
.ye_c01179{bottom:576.814520pt;}
.yc_c01179{bottom:595.501320pt;}
.yb_c01179{bottom:600.574520pt;}
.ya_c01179{bottom:628.765320pt;}
.y9_c01179{bottom:682.621320pt;}
.y8_c01179{bottom:685.472520pt;}
.y7_c01179{bottom:714.618120pt;}
.y6_c01179{bottom:743.446920pt;}
.y5_c01179{bottom:799.524920pt;}
.y4_c01179{bottom:828.353720pt;}
.y3_c01179{bottom:844.822920pt;}
.y2_c01179{bottom:951.901320pt;}
.ha_c01179{height:15.200625pt;}
.h11_c01179{height:20.926125pt;}
.h8_c01179{height:32.914370pt;}
.h6_c01179{height:34.602280pt;}
.hb_c01179{height:35.060438pt;}
.he_c01179{height:35.446236pt;}
.h12_c01179{height:36.290191pt;}
.h10_c01179{height:36.712500pt;}
.h7_c01179{height:37.134029pt;}
.h9_c01179{height:61.677000pt;}
.h3_c01179{height:63.566250pt;}
.h4_c01179{height:64.948125pt;}
.hf_c01179{height:65.293594pt;}
.h5_c01179{height:65.984704pt;}
.hc_c01179{height:69.784860pt;}
.h2_c01179{height:75.312188pt;}
.h13_c01179{height:75.620016pt;}
.hd_c01179{height:90.512985pt;}
.h1_c01179{height:986.666667pt;}
.h0_c01179{height:1122.666667pt;}
.w1_c01179{width:689.333333pt;}
.w0_c01179{width:793.333333pt;}
.x0_c01179{left:0.000000pt;}
.x1_c01179{left:52.000000pt;}
.x45_c01179{left:75.457053pt;}
.x11_c01179{left:76.407453pt;}
.x4_c01179{left:77.393053pt;}
.x4e_c01179{left:122.994653pt;}
.x12_c01179{left:124.125453pt;}
.x5_c01179{left:125.265053pt;}
.xf_c01179{left:144.334653pt;}
.x4b_c01179{left:155.009053pt;}
.x42_c01179{left:163.813453pt;}
.x6_c01179{left:166.022253pt;}
.x46_c01179{left:172.851053pt;}
.x10_c01179{left:174.443853pt;}
.x32_c01179{left:184.330653pt;}
.x50_c01179{left:185.289853pt;}
.x7_c01179{left:194.626653pt;}
.x1b_c01179{left:203.263853pt;}
.x2a_c01179{left:204.781853pt;}
.x4f_c01179{left:212.930653pt;}
.x1e_c01179{left:223.737053pt;}
.x4c_c01179{left:233.865853pt;}
.x3f_c01179{left:234.829453pt;}
.x13_c01179{left:242.934253pt;}
.x23_c01179{left:244.029853pt;}
.x51_c01179{left:252.134653pt;}
.x2b_c01179{left:254.510653pt;}
.x33_c01179{left:263.033453pt;}
.x43_c01179{left:272.079853pt;}
.x4d_c01179{left:273.184253pt;}
.x8_c01179{left:274.125853pt;}
.x3b_c01179{left:282.358253pt;}
.x40_c01179{left:285.275453pt;}
.x2c_c01179{left:290.225453pt;}
.x2d_c01179{left:292.830253pt;}
.x38_c01179{left:294.854253pt;}
.x9_c01179{left:302.932653pt;}
.x24_c01179{left:305.115053pt;}
.x1f_c01179{left:311.679853pt;}
.x54_c01179{left:320.506253pt;}
.x25_c01179{left:321.791053pt;}
.x3c_c01179{left:323.128653pt;}
.xa_c01179{left:332.104653pt;}
.x14_c01179{left:340.763853pt;}
.x2e_c01179{left:344.301453pt;}
.x34_c01179{left:352.701053pt;}
.x1c_c01179{left:362.513053pt;}
.x47_c01179{left:370.996253pt;}
.x39_c01179{left:372.034653pt;}
.x2f_c01179{left:381.670653pt;}
.xb_c01179{left:390.875453pt;}
.x35_c01179{left:397.361053pt;}
.x3d_c01179{left:398.958253pt;}
.x52_c01179{left:400.564253pt;}
.x15_c01179{left:411.744653pt;}
.x41_c01179{left:421.094653pt;}
.x30_c01179{left:429.850653pt;}
.x20_c01179{left:431.584253pt;}
.x16_c01179{left:439.279853pt;}
.x26_c01179{left:450.579053pt;}
.x21_c01179{left:459.348253pt;}
.x3e_c01179{left:460.443853pt;}
.xc_c01179{left:470.141453pt;}
.x48_c01179{left:478.624653pt;}
.x36_c01179{left:492.097453pt;}
.x44_c01179{left:498.270653pt;}
.x31_c01179{left:500.013053pt;}
.xd_c01179{left:508.773453pt;}
.x37_c01179{left:511.061453pt;}
.x27_c01179{left:519.245453pt;}
.x17_c01179{left:529.770253pt;}
.xe_c01179{left:538.037853pt;}
.x49_c01179{left:547.321853pt;}
.x28_c01179{left:557.956653pt;}
.x1d_c01179{left:568.010653pt;}
.x18_c01179{left:577.879853pt;}
.x4a_c01179{left:578.786253pt;}
.x22_c01179{left:579.815853pt;}
.x29_c01179{left:587.718253pt;}
.x19_c01179{left:607.571053pt;}
.x3a_c01179{left:617.176253pt;}
.x53_c01179{left:618.518253pt;}
.x2_c01179{left:622.579453pt;}
.x3_c01179{left:624.770653pt;}
.x1a_c01179{left:637.095053pt;}
}





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

.ir_c01180:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01180{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01180;src:url('chunks/assets/font_ea0c5ce1c3c81e931479621a.woff2')format("woff");}.ff1_c01180{font-family:ff1_c01180;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01180;src:url('chunks/assets/font_02f97c26e9d256a08644d0cd.woff2')format("woff");}.ff2_c01180{font-family:ff2_c01180;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01180;src:url('chunks/assets/font_d6a0a932ca7aff41e6edddc3.woff2')format("woff");}.ff3_c01180{font-family:ff3_c01180;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m40_c01180{transform:matrix(0.073170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073170,0.000000,0.000000,0.250000,0,0);}
.m64_c01180{transform:matrix(0.119048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119048,0.000000,0.000000,0.250000,0,0);}
.m27_c01180{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m54_c01180{transform:matrix(0.152439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152439,0.000000,0.000000,0.250000,0,0);}
.m2d_c01180{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01180{transform:matrix(0.167683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167683,0.000000,0.000000,0.250000,0,0);}
.m28_c01180{transform:matrix(0.179167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179167,0.000000,0.000000,0.250000,0,0);}
.m62_c01180{transform:matrix(0.183484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183484,0.000000,0.000000,0.250000,0,0);}
.m69_c01180{transform:matrix(0.184282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184282,0.000000,0.000000,0.250000,0,0);}
.m26_c01180{transform:matrix(0.185417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185417,0.000000,0.000000,0.250000,0,0);}
.m2c_c01180{transform:matrix(0.189063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189063,0.000000,0.000000,0.250000,0,0);}
.m2b_c01180{transform:matrix(0.189286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189286,0.000000,0.000000,0.250000,0,0);}
.m74_c01180{transform:matrix(0.191295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191295,0.000000,0.000000,0.250000,0,0);}
.mad_c01180{transform:matrix(0.212706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212706,0.000000,0.000000,0.250000,0,0);}
.m2_c01180{transform:matrix(0.246077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246077,0.000000,0.000000,0.250000,0,0);}
.m9d_c01180{transform:matrix(0.249358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249358,0.000000,0.000000,0.250000,0,0);}
.m0_c01180{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01180{transform:matrix(0.254319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254319,0.000000,0.000000,0.250000,0,0);}
.m21_c01180{transform:matrix(0.255119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255119,0.000000,0.000000,0.250000,0,0);}
.m31_c01180{transform:matrix(0.255183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255183,0.000000,0.000000,0.250000,0,0);}
.m6e_c01180{transform:matrix(0.257801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257801,0.000000,0.000000,0.250000,0,0);}
.m1_c01180{transform:matrix(0.257881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257881,0.000000,0.000000,0.250000,0,0);}
.m77_c01180{transform:matrix(0.260878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260878,0.000000,0.000000,0.250000,0,0);}
.m4c_c01180{transform:matrix(0.261647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261647,0.000000,0.000000,0.250000,0,0);}
.m9b_c01180{transform:matrix(0.265562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265562,0.000000,0.000000,0.250000,0,0);}
.ma3_c01180{transform:matrix(0.267040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267040,0.000000,0.000000,0.250000,0,0);}
.me_c01180{transform:matrix(0.269009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269009,0.000000,0.000000,0.250000,0,0);}
.m4a_c01180{transform:matrix(0.269477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269477,0.000000,0.000000,0.250000,0,0);}
.m19_c01180{transform:matrix(0.269490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269490,0.000000,0.000000,0.250000,0,0);}
.m87_c01180{transform:matrix(0.270898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270898,0.000000,0.000000,0.250000,0,0);}
.md_c01180{transform:matrix(0.271288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271288,0.000000,0.000000,0.250000,0,0);}
.m14_c01180{transform:matrix(0.272594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272594,0.000000,0.000000,0.250000,0,0);}
.m4b_c01180{transform:matrix(0.272774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272774,0.000000,0.000000,0.250000,0,0);}
.m7a_c01180{transform:matrix(0.273170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273170,0.000000,0.000000,0.250000,0,0);}
.m6_c01180{transform:matrix(0.273900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273900,0.000000,0.000000,0.250000,0,0);}
.m25_c01180{transform:matrix(0.274676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274676,0.000000,0.000000,0.250000,0,0);}
.m7f_c01180{transform:matrix(0.275058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275058,0.000000,0.000000,0.250000,0,0);}
.m16_c01180{transform:matrix(0.275413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275413,0.000000,0.000000,0.250000,0,0);}
.m1d_c01180{transform:matrix(0.277013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277013,0.000000,0.000000,0.250000,0,0);}
.ma_c01180{transform:matrix(0.278098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278098,0.000000,0.000000,0.250000,0,0);}
.m17_c01180{transform:matrix(0.278792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278792,0.000000,0.000000,0.250000,0,0);}
.m67_c01180{transform:matrix(0.278942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278942,0.000000,0.000000,0.250000,0,0);}
.m7_c01180{transform:matrix(0.279418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279418,0.000000,0.000000,0.250000,0,0);}
.m41_c01180{transform:matrix(0.280359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280359,0.000000,0.000000,0.250000,0,0);}
.m84_c01180{transform:matrix(0.280841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280841,0.000000,0.000000,0.250000,0,0);}
.m32_c01180{transform:matrix(0.281259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281259,0.000000,0.000000,0.250000,0,0);}
.m90_c01180{transform:matrix(0.281275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281275,0.000000,0.000000,0.250000,0,0);}
.m10_c01180{transform:matrix(0.281872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281872,0.000000,0.000000,0.250000,0,0);}
.m4d_c01180{transform:matrix(0.282394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282394,0.000000,0.000000,0.250000,0,0);}
.m71_c01180{transform:matrix(0.282966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282966,0.000000,0.000000,0.250000,0,0);}
.mab_c01180{transform:matrix(0.283258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283258,0.000000,0.000000,0.250000,0,0);}
.m3b_c01180{transform:matrix(0.283283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283283,0.000000,0.000000,0.250000,0,0);}
.m49_c01180{transform:matrix(0.283683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283683,0.000000,0.000000,0.250000,0,0);}
.m85_c01180{transform:matrix(0.283753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283753,0.000000,0.000000,0.250000,0,0);}
.m76_c01180{transform:matrix(0.284041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284041,0.000000,0.000000,0.250000,0,0);}
.m52_c01180{transform:matrix(0.284128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284128,0.000000,0.000000,0.250000,0,0);}
.mf_c01180{transform:matrix(0.284930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284930,0.000000,0.000000,0.250000,0,0);}
.m38_c01180{transform:matrix(0.285597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285597,0.000000,0.000000,0.250000,0,0);}
.m89_c01180{transform:matrix(0.286449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286449,0.000000,0.000000,0.250000,0,0);}
.m3_c01180{transform:matrix(0.286806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286806,0.000000,0.000000,0.250000,0,0);}
.m5b_c01180{transform:matrix(0.286817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286817,0.000000,0.000000,0.250000,0,0);}
.m91_c01180{transform:matrix(0.287072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287072,0.000000,0.000000,0.250000,0,0);}
.m95_c01180{transform:matrix(0.287388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287388,0.000000,0.000000,0.250000,0,0);}
.m3a_c01180{transform:matrix(0.287565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287565,0.000000,0.000000,0.250000,0,0);}
.m73_c01180{transform:matrix(0.288795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288795,0.000000,0.000000,0.250000,0,0);}
.m9f_c01180{transform:matrix(0.289210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289210,0.000000,0.000000,0.250000,0,0);}
.m65_c01180{transform:matrix(0.289680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289680,0.000000,0.000000,0.250000,0,0);}
.m33_c01180{transform:matrix(0.290970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290970,0.000000,0.000000,0.250000,0,0);}
.m78_c01180{transform:matrix(0.291762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291762,0.000000,0.000000,0.250000,0,0);}
.m92_c01180{transform:matrix(0.291780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291780,0.000000,0.000000,0.250000,0,0);}
.m7b_c01180{transform:matrix(0.292112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292112,0.000000,0.000000,0.250000,0,0);}
.m9e_c01180{transform:matrix(0.292475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292475,0.000000,0.000000,0.250000,0,0);}
.m5a_c01180{transform:matrix(0.292783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292783,0.000000,0.000000,0.250000,0,0);}
.m1a_c01180{transform:matrix(0.293391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293391,0.000000,0.000000,0.250000,0,0);}
.m23_c01180{transform:matrix(0.293478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293478,0.000000,0.000000,0.250000,0,0);}
.m2e_c01180{transform:matrix(0.294297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294297,0.000000,0.000000,0.250000,0,0);}
.m20_c01180{transform:matrix(0.294781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294781,0.000000,0.000000,0.250000,0,0);}
.m9a_c01180{transform:matrix(0.296538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296538,0.000000,0.000000,0.250000,0,0);}
.m8_c01180{transform:matrix(0.297730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297730,0.000000,0.000000,0.250000,0,0);}
.m94_c01180{transform:matrix(0.297873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297873,0.000000,0.000000,0.250000,0,0);}
.m93_c01180{transform:matrix(0.297886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297886,0.000000,0.000000,0.250000,0,0);}
.m45_c01180{transform:matrix(0.298330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298330,0.000000,0.000000,0.250000,0,0);}
.m18_c01180{transform:matrix(0.298499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298499,0.000000,0.000000,0.250000,0,0);}
.m6f_c01180{transform:matrix(0.298937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298937,0.000000,0.000000,0.250000,0,0);}
.m4_c01180{transform:matrix(0.300254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300254,0.000000,0.000000,0.250000,0,0);}
.m37_c01180{transform:matrix(0.300803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300803,0.000000,0.000000,0.250000,0,0);}
.m75_c01180{transform:matrix(0.301075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301075,0.000000,0.000000,0.250000,0,0);}
.m56_c01180{transform:matrix(0.301714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301714,0.000000,0.000000,0.250000,0,0);}
.m4f_c01180{transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302377,0.000000,0.000000,0.250000,0,0);}
.m5c_c01180{transform:matrix(0.302783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302783,0.000000,0.000000,0.250000,0,0);}
.m1b_c01180{transform:matrix(0.304182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304182,0.000000,0.000000,0.250000,0,0);}
.m98_c01180{transform:matrix(0.304226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304226,0.000000,0.000000,0.250000,0,0);}
.mac_c01180{transform:matrix(0.304984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304984,0.000000,0.000000,0.250000,0,0);}
.m7e_c01180{transform:matrix(0.305240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305240,0.000000,0.000000,0.250000,0,0);}
.m51_c01180{transform:matrix(0.305600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305600,0.000000,0.000000,0.250000,0,0);}
.m6c_c01180{transform:matrix(0.305680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305680,0.000000,0.000000,0.250000,0,0);}
.m39_c01180{transform:matrix(0.305732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305732,0.000000,0.000000,0.250000,0,0);}
.m8b_c01180{transform:matrix(0.307565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307565,0.000000,0.000000,0.250000,0,0);}
.m6d_c01180{transform:matrix(0.307805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307805,0.000000,0.000000,0.250000,0,0);}
.m30_c01180{transform:matrix(0.308463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308463,0.000000,0.000000,0.250000,0,0);}
.ma2_c01180{transform:matrix(0.308482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308482,0.000000,0.000000,0.250000,0,0);}
.m96_c01180{transform:matrix(0.308510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308510,0.000000,0.000000,0.250000,0,0);}
.m5f_c01180{transform:matrix(0.309151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309151,0.000000,0.000000,0.250000,0,0);}
.m97_c01180{transform:matrix(0.310436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310436,0.000000,0.000000,0.250000,0,0);}
.ma6_c01180{transform:matrix(0.310672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310672,0.000000,0.000000,0.250000,0,0);}
.m36_c01180{transform:matrix(0.311733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311733,0.000000,0.000000,0.250000,0,0);}
.m12_c01180{transform:matrix(0.311867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311867,0.000000,0.000000,0.250000,0,0);}
.m58_c01180{transform:matrix(0.312279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312279,0.000000,0.000000,0.250000,0,0);}
.m8c_c01180{transform:matrix(0.312553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312553,0.000000,0.000000,0.250000,0,0);}
.m42_c01180{transform:matrix(0.313388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313388,0.000000,0.000000,0.250000,0,0);}
.m55_c01180{transform:matrix(0.313722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313722,0.000000,0.000000,0.250000,0,0);}
.maa_c01180{transform:matrix(0.314396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314396,0.000000,0.000000,0.250000,0,0);}
.m70_c01180{transform:matrix(0.314951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314951,0.000000,0.000000,0.250000,0,0);}
.mae_c01180{transform:matrix(0.315037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315037,0.000000,0.000000,0.250000,0,0);}
.m61_c01180{transform:matrix(0.315810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315810,0.000000,0.000000,0.250000,0,0);}
.m2f_c01180{transform:matrix(0.317369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317369,0.000000,0.000000,0.250000,0,0);}
.m53_c01180{transform:matrix(0.318158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318158,0.000000,0.000000,0.250000,0,0);}
.m82_c01180{transform:matrix(0.319387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319387,0.000000,0.000000,0.250000,0,0);}
.m59_c01180{transform:matrix(0.320856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320856,0.000000,0.000000,0.250000,0,0);}
.ma8_c01180{transform:matrix(0.321427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321427,0.000000,0.000000,0.250000,0,0);}
.ma1_c01180{transform:matrix(0.322103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322103,0.000000,0.000000,0.250000,0,0);}
.ma7_c01180{transform:matrix(0.323607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323607,0.000000,0.000000,0.250000,0,0);}
.m35_c01180{transform:matrix(0.324563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324563,0.000000,0.000000,0.250000,0,0);}
.ma4_c01180{transform:matrix(0.325079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325079,0.000000,0.000000,0.250000,0,0);}
.m43_c01180{transform:matrix(0.325367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325367,0.000000,0.000000,0.250000,0,0);}
.m47_c01180{transform:matrix(0.326269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326269,0.000000,0.000000,0.250000,0,0);}
.m8e_c01180{transform:matrix(0.326690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326690,0.000000,0.000000,0.250000,0,0);}
.m46_c01180{transform:matrix(0.326729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326729,0.000000,0.000000,0.250000,0,0);}
.m66_c01180{transform:matrix(0.326949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326949,0.000000,0.000000,0.250000,0,0);}
.m3e_c01180{transform:matrix(0.327306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327306,0.000000,0.000000,0.250000,0,0);}
.m81_c01180{transform:matrix(0.330129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330129,0.000000,0.000000,0.250000,0,0);}
.ma9_c01180{transform:matrix(0.330139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330139,0.000000,0.000000,0.250000,0,0);}
.m3d_c01180{transform:matrix(0.333895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333895,0.000000,0.000000,0.250000,0,0);}
.m29_c01180{transform:matrix(0.334220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334220,0.000000,0.000000,0.250000,0,0);}
.m88_c01180{transform:matrix(0.334635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334635,0.000000,0.000000,0.250000,0,0);}
.m8d_c01180{transform:matrix(0.335770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335770,0.000000,0.000000,0.250000,0,0);}
.m8f_c01180{transform:matrix(0.336571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336571,0.000000,0.000000,0.250000,0,0);}
.m72_c01180{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);}
.m7d_c01180{transform:matrix(0.337203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337203,0.000000,0.000000,0.250000,0,0);}
.m80_c01180{transform:matrix(0.337218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337218,0.000000,0.000000,0.250000,0,0);}
.m48_c01180{transform:matrix(0.339417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339417,0.000000,0.000000,0.250000,0,0);}
.m5d_c01180{transform:matrix(0.339714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339714,0.000000,0.000000,0.250000,0,0);}
.m86_c01180{transform:matrix(0.341621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341621,0.000000,0.000000,0.250000,0,0);}
.ma0_c01180{transform:matrix(0.342440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342440,0.000000,0.000000,0.250000,0,0);}
.mc_c01180{transform:matrix(0.342567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342567,0.000000,0.000000,0.250000,0,0);}
.m83_c01180{transform:matrix(0.343815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343815,0.000000,0.000000,0.250000,0,0);}
.m9c_c01180{transform:matrix(0.344787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344787,0.000000,0.000000,0.250000,0,0);}
.m15_c01180{transform:matrix(0.346409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346409,0.000000,0.000000,0.250000,0,0);}
.m22_c01180{transform:matrix(0.346605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346605,0.000000,0.000000,0.250000,0,0);}
.m4e_c01180{transform:matrix(0.347053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347053,0.000000,0.000000,0.250000,0,0);}
.m57_c01180{transform:matrix(0.347399,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347399,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347399,0.000000,0.000000,0.250000,0,0);}
.m6b_c01180{transform:matrix(0.349274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349274,0.000000,0.000000,0.250000,0,0);}
.m79_c01180{transform:matrix(0.349807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349807,0.000000,0.000000,0.250000,0,0);}
.ma5_c01180{transform:matrix(0.350416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350416,0.000000,0.000000,0.250000,0,0);}
.m44_c01180{transform:matrix(0.352824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352824,0.000000,0.000000,0.250000,0,0);}
.m6a_c01180{transform:matrix(0.353546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353546,0.000000,0.000000,0.250000,0,0);}
.m7c_c01180{transform:matrix(0.357893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357893,0.000000,0.000000,0.250000,0,0);}
.m8a_c01180{transform:matrix(0.358819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358819,0.000000,0.000000,0.250000,0,0);}
.m3c_c01180{transform:matrix(0.359199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359199,0.000000,0.000000,0.250000,0,0);}
.m11_c01180{transform:matrix(0.359239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359239,0.000000,0.000000,0.250000,0,0);}
.m5e_c01180{transform:matrix(0.362851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362851,0.000000,0.000000,0.250000,0,0);}
.m9_c01180{transform:matrix(0.363291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363291,0.000000,0.000000,0.250000,0,0);}
.m5_c01180{transform:matrix(0.365621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365621,0.000000,0.000000,0.250000,0,0);}
.mb_c01180{transform:matrix(0.365654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365654,0.000000,0.000000,0.250000,0,0);}
.m68_c01180{transform:matrix(0.366368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366368,0.000000,0.000000,0.250000,0,0);}
.m60_c01180{transform:matrix(0.374897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374897,0.000000,0.000000,0.250000,0,0);}
.m24_c01180{transform:matrix(0.375747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375747,0.000000,0.000000,0.250000,0,0);}
.m2a_c01180{transform:matrix(0.387624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387624,0.000000,0.000000,0.250000,0,0);}
.m13_c01180{transform:matrix(0.395355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395355,0.000000,0.000000,0.250000,0,0);}
.m1f_c01180{transform:matrix(0.401415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401415,0.000000,0.000000,0.250000,0,0);}
.m34_c01180{transform:matrix(0.401732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401732,0.000000,0.000000,0.250000,0,0);}
.m1c_c01180{transform:matrix(0.408109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408109,0.000000,0.000000,0.250000,0,0);}
.m99_c01180{transform:matrix(0.413280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413280,0.000000,0.000000,0.250000,0,0);}
.m50_c01180{transform:matrix(0.414486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414486,0.000000,0.000000,0.250000,0,0);}
.m63_c01180{transform:matrix(0.420862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420862,0.000000,0.000000,0.250000,0,0);}
.v1_c01180{vertical-align:-4.276800px;}
.v0_c01180{vertical-align:0.000000px;}
.lsd_c01180{letter-spacing:-4.310467px;}
.ls15_c01180{letter-spacing:-3.367980px;}
.ls5_c01180{letter-spacing:-3.069990px;}
.lsf_c01180{letter-spacing:-2.591827px;}
.ls13_c01180{letter-spacing:-1.888331px;}
.ls8_c01180{letter-spacing:-0.933058px;}
.ls12_c01180{letter-spacing:-0.400515px;}
.ls3_c01180{letter-spacing:0.000000px;}
.ls0_c01180{letter-spacing:0.499970px;}
.lsc_c01180{letter-spacing:1.369966px;}
.ls14_c01180{letter-spacing:2.154919px;}
.ls10_c01180{letter-spacing:2.525180px;}
.ls1_c01180{letter-spacing:2.828794px;}
.ls11_c01180{letter-spacing:2.997093px;}
.ls6_c01180{letter-spacing:3.702610px;}
.lsa_c01180{letter-spacing:3.781810px;}
.ls4_c01180{letter-spacing:4.197610px;}
.ls9_c01180{letter-spacing:4.257000px;}
.lse_c01180{letter-spacing:29.937798px;}
.ls2_c01180{letter-spacing:37.749888px;}
.ls7_c01180{letter-spacing:57.024198px;}
.lsb_c01180{letter-spacing:58.449798px;}
.sc__c01180{text-shadow:none;}
.sc0_c01180{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01180{-webkit-text-stroke:0px transparent;}
.sc0_c01180{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01180{word-spacing:-21.341843px;}
.ws1_c01180{word-spacing:-18.513050px;}
.ws2_c01180{word-spacing:0.000000px;}
._2_c01180{margin-left:-3.583279px;}
._5_c01180{width:1.036678px;}
._3_c01180{width:6.220280px;}
._7_c01180{width:9.330486px;}
._4_c01180{width:12.292731px;}
._6_c01180{width:26.510715px;}
._1_c01180{width:28.454422px;}
._0_c01180{width:44.124696px;}
.fc0_c01180{color:transparent;}
.fsd_c01180{font-size:25.344000px;}
.fs0_c01180{font-size:27.720000px;}
.fse_c01180{font-size:29.937798px;}
.fsb_c01180{font-size:57.024000px;}
.fs4_c01180{font-size:57.024198px;}
.fs9_c01180{font-size:58.449798px;}
.fs5_c01180{font-size:62.568000px;}
.fs10_c01180{font-size:66.330000px;}
.fsa_c01180{font-size:70.092198px;}
.fs3_c01180{font-size:74.052198px;}
.fsf_c01180{font-size:74.844000px;}
.fs8_c01180{font-size:75.636198px;}
.fs11_c01180{font-size:77.022198px;}
.fs1_c01180{font-size:83.952198px;}
.fs7_c01180{font-size:85.140000px;}
.fs6_c01180{font-size:86.328000px;}
.fs2_c01180{font-size:87.714000px;}
.fs12_c01180{font-size:96.228000px;}
.fsc_c01180{font-size:123.156198px;}
.y0_c01180{bottom:0.000000px;}
.y1_c01180{bottom:76.500000px;}
.y1f_c01180{bottom:117.880335px;}
.y1e_c01180{bottom:150.669135px;}
.y1d_c01180{bottom:218.023785px;}
.y2_c01180{bottom:271.127385px;}
.y8_c01180{bottom:281.111535px;}
.y1c_c01180{bottom:312.826185px;}
.y1b_c01180{bottom:346.327785px;}
.y1a_c01180{bottom:378.760185px;}
.y19_c01180{bottom:411.197535px;}
.y18_c01180{bottom:442.917135px;}
.y17_c01180{bottom:474.993135px;}
.y16_c01180{bottom:507.425535px;}
.y15_c01180{bottom:522.394335px;}
.y14_c01180{bottom:532.729935px;}
.y13_c01180{bottom:538.788735px;}
.y12_c01180{bottom:570.859785px;}
.y11_c01180{bottom:602.227935px;}
.yf_c01180{bottom:634.298985px;}
.y10_c01180{bottom:635.373135px;}
.ye_c01180{bottom:666.023535px;}
.yd_c01180{bottom:698.094585px;}
.yc_c01180{bottom:731.239785px;}
.yb_c01180{bottom:763.320735px;}
.y9_c01180{bottom:795.035385px;}
.ya_c01180{bottom:795.753135px;}
.y7_c01180{bottom:828.185535px;}
.y6_c01180{bottom:860.617935px;}
.y5_c01180{bottom:892.337535px;}
.y4_c01180{bottom:924.413535px;}
.y3_c01180{bottom:1075.878585px;}
.hf_c01180{height:19.938573px;}
.he_c01180{height:24.873750px;}
.h2_c01180{height:28.911094px;}
.h6_c01180{height:37.978116px;}
.ha_c01180{height:38.927565px;}
.hc_c01180{height:59.474250px;}
.h11_c01180{height:69.180117px;}
.h5_c01180{height:72.678183px;}
.hb_c01180{height:73.103972px;}
.h10_c01180{height:73.455293px;}
.h9_c01180{height:74.232792px;}
.h12_c01180{height:80.331746px;}
.h3_c01180{height:82.394491px;}
.h8_c01180{height:83.560254px;}
.h7_c01180{height:84.726211px;}
.h4_c01180{height:86.086494px;}
.h13_c01180{height:94.442520px;}
.hd_c01180{height:120.871073px;}
.h1_c01180{height:1110.000000px;}
.h0_c01180{height:1263.000000px;}
.w1_c01180{width:775.500000px;}
.w0_c01180{width:892.500000px;}
.x0_c01180{left:0.000000px;}
.x2_c01180{left:55.119885px;}
.x1_c01180{left:58.500000px;}
.x69_c01180{left:86.319735px;}
.x4_c01180{left:88.849185px;}
.x2e_c01180{left:116.980035px;}
.x54_c01180{left:140.373735px;}
.x5_c01180{left:142.066635px;}
.x1a_c01180{left:143.140785px;}
.x55_c01180{left:164.797035px;}
.x35_c01180{left:175.073235px;}
.x6_c01180{left:176.429535px;}
.x6f_c01180{left:184.562385px;}
.x47_c01180{left:186.106785px;}
.x2f_c01180{left:188.027385px;}
.x6d_c01180{left:195.526635px;}
.x4a_c01180{left:196.595835px;}
.x3b_c01180{left:198.466935px;}
.x10_c01180{left:206.951235px;}
.x1b_c01180{left:208.074885px;}
.x23_c01180{left:210.069735px;}
.x48_c01180{left:219.553935px;}
.x62_c01180{left:220.637985px;}
.x3a_c01180{left:229.404435px;}
.x24_c01180{left:231.087435px;}
.x5c_c01180{left:241.873485px;}
.x49_c01180{left:243.373335px;}
.x58_c01180{left:252.535785px;}
.x25_c01180{left:262.549635px;}
.x3c_c01180{left:263.836635px;}
.x50_c01180{left:264.920685px;}
.x1c_c01180{left:275.508735px;}
.x6a_c01180{left:285.265185px;}
.x40_c01180{left:287.314485px;}
.x7_c01180{left:297.857985px;}
.x64_c01180{left:308.431185px;}
.x11_c01180{left:309.827085px;}
.x1d_c01180{left:319.766685px;}
.x41_c01180{left:320.870535px;}
.x6e_c01180{left:329.547885px;}
.x30_c01180{left:331.240785px;}
.x26_c01180{left:332.507985px;}
.x59_c01180{left:340.819035px;}
.x12_c01180{left:342.907935px;}
.x1e_c01180{left:353.327685px;}
.x27_c01180{left:363.519735px;}
.x36_c01180{left:365.014635px;}
.x5d_c01180{left:373.107885px;}
.x13_c01180{left:374.711685px;}
.x4b_c01180{left:376.374885px;}
.x8_c01180{left:386.839185px;}
.x37_c01180{left:396.808485px;}
.x31_c01180{left:398.001435px;}
.x6b_c01180{left:399.570585px;}
.x65_c01180{left:407.267835px;}
.x28_c01180{left:408.327135px;}
.x42_c01180{left:419.588385px;}
.x9_c01180{left:420.677385px;}
.x67_c01180{left:429.725985px;}
.x56_c01180{left:431.750535px;}
.x29_c01180{left:442.511835px;}
.x5e_c01180{left:443.788935px;}
.x68_c01180{left:452.030685px;}
.x14_c01180{left:453.485985px;}
.x43_c01180{left:464.128485px;}
.x32_c01180{left:475.884735px;}
.x5a_c01180{left:477.547935px;}
.x15_c01180{left:486.215385px;}
.xa_c01180{left:498.625035px;}
.x3d_c01180{left:506.436135px;}
.x4e_c01180{left:508.594335px;}
.x70_c01180{left:517.756785px;}
.x16_c01180{left:519.043785px;}
.xb_c01180{left:530.790135px;}
.x2a_c01180{left:540.571335px;}
.x44_c01180{left:542.516685px;}
.x33_c01180{left:551.644485px;}
.x1f_c01180{left:561.935535px;}
.x4c_c01180{left:563.950185px;}
.x2b_c01180{left:573.379935px;}
.x38_c01180{left:574.528335px;}
.x5f_c01180{left:575.795535px;}
.x3e_c01180{left:584.131335px;}
.x6c_c01180{left:585.195585px;}
.x66_c01180{left:595.491585px;}
.x20_c01180{left:596.734035px;}
.xc_c01180{left:607.797285px;}
.x39_c01180{left:618.073485px;}
.x17_c01180{left:619.484235px;}
.x2c_c01180{left:627.968535px;}
.x51_c01180{left:629.507985px;}
.x45_c01180{left:640.229685px;}
.x21_c01180{left:642.665085px;}
.x63_c01180{left:648.768435px;}
.x18_c01180{left:650.773185px;}
.xd_c01180{left:651.901785px;}
.x34_c01180{left:661.772085px;}
.x4f_c01180{left:663.014535px;}
.x46_c01180{left:671.711685px;}
.x57_c01180{left:674.369835px;}
.x60_c01180{left:683.512485px;}
.xe_c01180{left:685.774635px;}
.x3f_c01180{left:695.239035px;}
.x3_c01180{left:702.188835px;}
.x22_c01180{left:706.817085px;}
.x53_c01180{left:708.866385px;}
.x19_c01180{left:717.009135px;}
.x61_c01180{left:718.251585px;}
.x4d_c01180{left:719.558385px;}
.x52_c01180{left:728.547585px;}
.xf_c01180{left:740.363235px;}
.x5b_c01180{left:741.714585px;}
.x2d_c01180{left:750.213735px;}
@media print{
.v1_c01180{vertical-align:-3.801600pt;}
.v0_c01180{vertical-align:0.000000pt;}
.lsd_c01180{letter-spacing:-3.831526pt;}
.ls15_c01180{letter-spacing:-2.993760pt;}
.ls5_c01180{letter-spacing:-2.728880pt;}
.lsf_c01180{letter-spacing:-2.303846pt;}
.ls13_c01180{letter-spacing:-1.678516pt;}
.ls8_c01180{letter-spacing:-0.829385pt;}
.ls12_c01180{letter-spacing:-0.356014pt;}
.ls3_c01180{letter-spacing:0.000000pt;}
.ls0_c01180{letter-spacing:0.444418pt;}
.lsc_c01180{letter-spacing:1.217747pt;}
.ls14_c01180{letter-spacing:1.915484pt;}
.ls10_c01180{letter-spacing:2.244604pt;}
.ls1_c01180{letter-spacing:2.514484pt;}
.ls11_c01180{letter-spacing:2.664083pt;}
.ls6_c01180{letter-spacing:3.291209pt;}
.lsa_c01180{letter-spacing:3.361609pt;}
.ls4_c01180{letter-spacing:3.731209pt;}
.ls9_c01180{letter-spacing:3.784000pt;}
.lse_c01180{letter-spacing:26.611376pt;}
.ls2_c01180{letter-spacing:33.555456pt;}
.ls7_c01180{letter-spacing:50.688176pt;}
.lsb_c01180{letter-spacing:51.955376pt;}
.ws0_c01180{word-spacing:-18.970528pt;}
.ws1_c01180{word-spacing:-16.456044pt;}
.ws2_c01180{word-spacing:0.000000pt;}
._2_c01180{margin-left:-3.185136pt;}
._5_c01180{width:0.921492pt;}
._3_c01180{width:5.529138pt;}
._7_c01180{width:8.293765pt;}
._4_c01180{width:10.926872pt;}
._6_c01180{width:23.565080pt;}
._1_c01180{width:25.292819pt;}
._0_c01180{width:39.221952pt;}
.fsd_c01180{font-size:22.528000pt;}
.fs0_c01180{font-size:24.640000pt;}
.fse_c01180{font-size:26.611376pt;}
.fsb_c01180{font-size:50.688000pt;}
.fs4_c01180{font-size:50.688176pt;}
.fs9_c01180{font-size:51.955376pt;}
.fs5_c01180{font-size:55.616000pt;}
.fs10_c01180{font-size:58.960000pt;}
.fsa_c01180{font-size:62.304176pt;}
.fs3_c01180{font-size:65.824176pt;}
.fsf_c01180{font-size:66.528000pt;}
.fs8_c01180{font-size:67.232176pt;}
.fs11_c01180{font-size:68.464176pt;}
.fs1_c01180{font-size:74.624176pt;}
.fs7_c01180{font-size:75.680000pt;}
.fs6_c01180{font-size:76.736000pt;}
.fs2_c01180{font-size:77.968000pt;}
.fs12_c01180{font-size:85.536000pt;}
.fsc_c01180{font-size:109.472176pt;}
.y0_c01180{bottom:0.000000pt;}
.y1_c01180{bottom:68.000000pt;}
.y1f_c01180{bottom:104.782520pt;}
.y1e_c01180{bottom:133.928120pt;}
.y1d_c01180{bottom:193.798920pt;}
.y2_c01180{bottom:241.002120pt;}
.y8_c01180{bottom:249.876920pt;}
.y1c_c01180{bottom:278.067720pt;}
.y1b_c01180{bottom:307.846920pt;}
.y1a_c01180{bottom:336.675720pt;}
.y19_c01180{bottom:365.508920pt;}
.y18_c01180{bottom:393.704120pt;}
.y17_c01180{bottom:422.216120pt;}
.y16_c01180{bottom:451.044920pt;}
.y15_c01180{bottom:464.350520pt;}
.y14_c01180{bottom:473.537720pt;}
.y13_c01180{bottom:478.923320pt;}
.y12_c01180{bottom:507.430920pt;}
.y11_c01180{bottom:535.313720pt;}
.yf_c01180{bottom:563.821320pt;}
.y10_c01180{bottom:564.776120pt;}
.ye_c01180{bottom:592.020920pt;}
.yd_c01180{bottom:620.528520pt;}
.yc_c01180{bottom:649.990920pt;}
.yb_c01180{bottom:678.507320pt;}
.y9_c01180{bottom:706.698120pt;}
.ya_c01180{bottom:707.336120pt;}
.y7_c01180{bottom:736.164920pt;}
.y6_c01180{bottom:764.993720pt;}
.y5_c01180{bottom:793.188920pt;}
.y4_c01180{bottom:821.700920pt;}
.y3_c01180{bottom:956.336520pt;}
.hf_c01180{height:17.723176pt;}
.he_c01180{height:22.110000pt;}
.h2_c01180{height:25.698750pt;}
.h6_c01180{height:33.758325pt;}
.ha_c01180{height:34.602280pt;}
.hc_c01180{height:52.866000pt;}
.h11_c01180{height:61.493438pt;}
.h5_c01180{height:64.602829pt;}
.hb_c01180{height:64.981309pt;}
.h10_c01180{height:65.293594pt;}
.h9_c01180{height:65.984704pt;}
.h12_c01180{height:71.405996pt;}
.h3_c01180{height:73.239548pt;}
.h8_c01180{height:74.275781pt;}
.h7_c01180{height:75.312188pt;}
.h4_c01180{height:76.521328pt;}
.h13_c01180{height:83.948906pt;}
.hd_c01180{height:107.440954pt;}
.h1_c01180{height:986.666667pt;}
.h0_c01180{height:1122.666667pt;}
.w1_c01180{width:689.333333pt;}
.w0_c01180{width:793.333333pt;}
.x0_c01180{left:0.000000pt;}
.x2_c01180{left:48.995453pt;}
.x1_c01180{left:52.000000pt;}
.x69_c01180{left:76.728653pt;}
.x4_c01180{left:78.977053pt;}
.x2e_c01180{left:103.982253pt;}
.x54_c01180{left:124.776653pt;}
.x5_c01180{left:126.281453pt;}
.x1a_c01180{left:127.236253pt;}
.x55_c01180{left:146.486253pt;}
.x35_c01180{left:155.620653pt;}
.x6_c01180{left:156.826253pt;}
.x6f_c01180{left:164.055453pt;}
.x47_c01180{left:165.428253pt;}
.x2f_c01180{left:167.135453pt;}
.x6d_c01180{left:173.801453pt;}
.x4a_c01180{left:174.751853pt;}
.x3b_c01180{left:176.415053pt;}
.x10_c01180{left:183.956653pt;}
.x1b_c01180{left:184.955453pt;}
.x23_c01180{left:186.728653pt;}
.x48_c01180{left:195.159053pt;}
.x62_c01180{left:196.122653pt;}
.x3a_c01180{left:203.915053pt;}
.x24_c01180{left:205.411053pt;}
.x5c_c01180{left:214.998653pt;}
.x49_c01180{left:216.331853pt;}
.x58_c01180{left:224.476253pt;}
.x25_c01180{left:233.377453pt;}
.x3c_c01180{left:234.521453pt;}
.x50_c01180{left:235.485053pt;}
.x1c_c01180{left:244.896653pt;}
.x6a_c01180{left:253.569053pt;}
.x40_c01180{left:255.390653pt;}
.x7_c01180{left:264.762653pt;}
.x64_c01180{left:274.161053pt;}
.x11_c01180{left:275.401853pt;}
.x1d_c01180{left:284.237053pt;}
.x41_c01180{left:285.218253pt;}
.x6e_c01180{left:292.931453pt;}
.x30_c01180{left:294.436253pt;}
.x26_c01180{left:295.562653pt;}
.x59_c01180{left:302.950253pt;}
.x12_c01180{left:304.807053pt;}
.x1e_c01180{left:314.069053pt;}
.x27_c01180{left:323.128653pt;}
.x36_c01180{left:324.457453pt;}
.x5d_c01180{left:331.651453pt;}
.x13_c01180{left:333.077053pt;}
.x4b_c01180{left:334.555453pt;}
.x8_c01180{left:343.857053pt;}
.x37_c01180{left:352.718653pt;}
.x31_c01180{left:353.779053pt;}
.x6b_c01180{left:355.173853pt;}
.x65_c01180{left:362.015853pt;}
.x28_c01180{left:362.957453pt;}
.x42_c01180{left:372.967453pt;}
.x9_c01180{left:373.935453pt;}
.x67_c01180{left:381.978653pt;}
.x56_c01180{left:383.778253pt;}
.x29_c01180{left:393.343853pt;}
.x5e_c01180{left:394.479053pt;}
.x68_c01180{left:401.805053pt;}
.x14_c01180{left:403.098653pt;}
.x43_c01180{left:412.558653pt;}
.x32_c01180{left:423.008653pt;}
.x5a_c01180{left:424.487053pt;}
.x15_c01180{left:432.191453pt;}
.xa_c01180{left:443.222253pt;}
.x3d_c01180{left:450.165453pt;}
.x4e_c01180{left:452.083853pt;}
.x70_c01180{left:460.228253pt;}
.x16_c01180{left:461.372253pt;}
.xb_c01180{left:471.813453pt;}
.x2a_c01180{left:480.507853pt;}
.x44_c01180{left:482.237053pt;}
.x33_c01180{left:490.350653pt;}
.x1f_c01180{left:499.498253pt;}
.x4c_c01180{left:501.289053pt;}
.x2b_c01180{left:509.671053pt;}
.x38_c01180{left:510.691853pt;}
.x5f_c01180{left:511.818253pt;}
.x3e_c01180{left:519.227853pt;}
.x6c_c01180{left:520.173853pt;}
.x66_c01180{left:529.325853pt;}
.x20_c01180{left:530.430253pt;}
.xc_c01180{left:540.264253pt;}
.x39_c01180{left:549.398653pt;}
.x17_c01180{left:550.652653pt;}
.x2c_c01180{left:558.194253pt;}
.x51_c01180{left:559.562653pt;}
.x45_c01180{left:569.093053pt;}
.x21_c01180{left:571.257853pt;}
.x63_c01180{left:576.683053pt;}
.x18_c01180{left:578.465053pt;}
.xd_c01180{left:579.468253pt;}
.x34_c01180{left:588.241853pt;}
.x4f_c01180{left:589.346253pt;}
.x46_c01180{left:597.077053pt;}
.x57_c01180{left:599.439853pt;}
.x60_c01180{left:607.566653pt;}
.xe_c01180{left:609.577453pt;}
.x3f_c01180{left:617.990253pt;}
.x3_c01180{left:624.167853pt;}
.x22_c01180{left:628.281853pt;}
.x53_c01180{left:630.103453pt;}
.x19_c01180{left:637.341453pt;}
.x61_c01180{left:638.445853pt;}
.x4d_c01180{left:639.607453pt;}
.x52_c01180{left:647.597853pt;}
.xf_c01180{left:658.100653pt;}
.x5b_c01180{left:659.301853pt;}
.x2d_c01180{left:666.856653pt;}
}





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

.ir_c01181:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01181{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01181;src:url('chunks/assets/font_ca8c919dc770fd07a98537f3.woff2')format("woff");}.ff1_c01181{font-family:ff1_c01181;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01181;src:url('chunks/assets/font_a327bf761c09433163d4eb66.woff2')format("woff");}.ff2_c01181{font-family:ff2_c01181;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01181;src:url('chunks/assets/font_59ecc6e97c3219fe35005a58.woff2')format("woff");}.ff3_c01181{font-family:ff3_c01181;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01181;src:url('chunks/assets/font_8d05b539e9dad7235f72e5c3.woff2')format("woff");}.ff4_c01181{font-family:ff4_c01181;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01181;src:url('chunks/assets/font_feba0154212fc2a1b5ceae56.woff2')format("woff");}.ff5_c01181{font-family:ff5_c01181;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m58_c01181{transform:matrix(0.032896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032896,0.000000,0.000000,0.250000,0,0);}
.m49_c01181{transform:matrix(0.145179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145179,0.000000,0.000000,0.250000,0,0);}
.m77_c01181{transform:matrix(0.166666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166666,0.000000,0.000000,0.250000,0,0);}
.m6b_c01181{transform:matrix(0.168555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168555,0.000000,0.000000,0.250000,0,0);}
.m66_c01181{transform:matrix(0.170031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170031,0.000000,0.000000,0.250000,0,0);}
.m5e_c01181{transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);}
.m57_c01181{transform:matrix(0.197368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197368,0.000000,0.000000,0.250000,0,0);}
.m59_c01181{transform:matrix(0.216009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216009,0.000000,0.000000,0.250000,0,0);}
.m46_c01181{transform:matrix(0.216850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216850,0.000000,0.000000,0.250000,0,0);}
.m56_c01181{transform:matrix(0.226297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226297,0.000000,0.000000,0.250000,0,0);}
.m1a_c01181{transform:matrix(0.226887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226887,0.000000,0.000000,0.250000,0,0);}
.m35_c01181{transform:matrix(0.235741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235741,0.000000,0.000000,0.250000,0,0);}
.m0_c01181{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m4d_c01181{transform:matrix(0.250897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250897,0.000000,0.000000,0.250000,0,0);}
.m33_c01181{transform:matrix(0.254778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254778,0.000000,0.000000,0.250000,0,0);}
.m10_c01181{transform:matrix(0.255118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255118,0.000000,0.000000,0.250000,0,0);}
.m2_c01181{transform:matrix(0.255459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255459,0.000000,0.000000,0.250000,0,0);}
.m61_c01181{transform:matrix(0.255989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255989,0.000000,0.000000,0.250000,0,0);}
.m5d_c01181{transform:matrix(0.256181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256181,0.000000,0.000000,0.250000,0,0);}
.m40_c01181{transform:matrix(0.256280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256280,0.000000,0.000000,0.250000,0,0);}
.m75_c01181{transform:matrix(0.256870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256870,0.000000,0.000000,0.250000,0,0);}
.m82_c01181{transform:matrix(0.256908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256908,0.000000,0.000000,0.250000,0,0);}
.m48_c01181{transform:matrix(0.257431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257431,0.000000,0.000000,0.250000,0,0);}
.m6a_c01181{transform:matrix(0.258119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258119,0.000000,0.000000,0.250000,0,0);}
.m80_c01181{transform:matrix(0.258282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258282,0.000000,0.000000,0.250000,0,0);}
.m5a_c01181{transform:matrix(0.258949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258949,0.000000,0.000000,0.250000,0,0);}
.mc_c01181{transform:matrix(0.260021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260021,0.000000,0.000000,0.250000,0,0);}
.m44_c01181{transform:matrix(0.260261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260261,0.000000,0.000000,0.250000,0,0);}
.m5f_c01181{transform:matrix(0.260605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260605,0.000000,0.000000,0.250000,0,0);}
.m18_c01181{transform:matrix(0.261252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261252,0.000000,0.000000,0.250000,0,0);}
.m12_c01181{transform:matrix(0.263287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263287,0.000000,0.000000,0.250000,0,0);}
.m38_c01181{transform:matrix(0.263380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263380,0.000000,0.000000,0.250000,0,0);}
.m60_c01181{transform:matrix(0.264057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264057,0.000000,0.000000,0.250000,0,0);}
.m3c_c01181{transform:matrix(0.264583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264583,0.000000,0.000000,0.250000,0,0);}
.m7a_c01181{transform:matrix(0.265269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265269,0.000000,0.000000,0.250000,0,0);}
.m65_c01181{transform:matrix(0.265585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265585,0.000000,0.000000,0.250000,0,0);}
.m2c_c01181{transform:matrix(0.266375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266375,0.000000,0.000000,0.250000,0,0);}
.m7c_c01181{transform:matrix(0.267165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267165,0.000000,0.000000,0.250000,0,0);}
.m2a_c01181{transform:matrix(0.267496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267496,0.000000,0.000000,0.250000,0,0);}
.m1e_c01181{transform:matrix(0.267506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267506,0.000000,0.000000,0.250000,0,0);}
.mf_c01181{transform:matrix(0.268168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268168,0.000000,0.000000,0.250000,0,0);}
.m27_c01181{transform:matrix(0.269481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269481,0.000000,0.000000,0.250000,0,0);}
.m24_c01181{transform:matrix(0.269863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269863,0.000000,0.000000,0.250000,0,0);}
.m54_c01181{transform:matrix(0.270148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270148,0.000000,0.000000,0.250000,0,0);}
.m28_c01181{transform:matrix(0.270454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270454,0.000000,0.000000,0.250000,0,0);}
.m4a_c01181{transform:matrix(0.270693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270693,0.000000,0.000000,0.250000,0,0);}
.m79_c01181{transform:matrix(0.271872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271872,0.000000,0.000000,0.250000,0,0);}
.me_c01181{transform:matrix(0.272052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272052,0.000000,0.000000,0.250000,0,0);}
.m67_c01181{transform:matrix(0.272347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272347,0.000000,0.000000,0.250000,0,0);}
.m71_c01181{transform:matrix(0.272445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272445,0.000000,0.000000,0.250000,0,0);}
.m50_c01181{transform:matrix(0.273385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273385,0.000000,0.000000,0.250000,0,0);}
.m64_c01181{transform:matrix(0.273638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273638,0.000000,0.000000,0.250000,0,0);}
.mb_c01181{transform:matrix(0.273646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273646,0.000000,0.000000,0.250000,0,0);}
.m62_c01181{transform:matrix(0.273859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273859,0.000000,0.000000,0.250000,0,0);}
.m4_c01181{transform:matrix(0.274125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274125,0.000000,0.000000,0.250000,0,0);}
.m11_c01181{transform:matrix(0.274483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274483,0.000000,0.000000,0.250000,0,0);}
.m3_c01181{transform:matrix(0.275525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275525,0.000000,0.000000,0.250000,0,0);}
.m69_c01181{transform:matrix(0.276572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276572,0.000000,0.000000,0.250000,0,0);}
.m7b_c01181{transform:matrix(0.276574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276574,0.000000,0.000000,0.250000,0,0);}
.m78_c01181{transform:matrix(0.276946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276946,0.000000,0.000000,0.250000,0,0);}
.m2b_c01181{transform:matrix(0.277897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277897,0.000000,0.000000,0.250000,0,0);}
.m30_c01181{transform:matrix(0.278651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278651,0.000000,0.000000,0.250000,0,0);}
.m3e_c01181{transform:matrix(0.279294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279294,0.000000,0.000000,0.250000,0,0);}
.m41_c01181{transform:matrix(0.279728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279728,0.000000,0.000000,0.250000,0,0);}
.m5_c01181{transform:matrix(0.279844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279844,0.000000,0.000000,0.250000,0,0);}
.m7e_c01181{transform:matrix(0.280778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280778,0.000000,0.000000,0.250000,0,0);}
.m7_c01181{transform:matrix(0.280826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280826,0.000000,0.000000,0.250000,0,0);}
.m5c_c01181{transform:matrix(0.282900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282900,0.000000,0.000000,0.250000,0,0);}
.m85_c01181{transform:matrix(0.282923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282923,0.000000,0.000000,0.250000,0,0);}
.m4b_c01181{transform:matrix(0.283228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283228,0.000000,0.000000,0.250000,0,0);}
.m6d_c01181{transform:matrix(0.284145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284145,0.000000,0.000000,0.250000,0,0);}
.m7d_c01181{transform:matrix(0.285204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285204,0.000000,0.000000,0.250000,0,0);}
.m4e_c01181{transform:matrix(0.285652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285652,0.000000,0.000000,0.250000,0,0);}
.m53_c01181{transform:matrix(0.286008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286008,0.000000,0.000000,0.250000,0,0);}
.m1c_c01181{transform:matrix(0.287080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287080,0.000000,0.000000,0.250000,0,0);}
.m4f_c01181{transform:matrix(0.287712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287712,0.000000,0.000000,0.250000,0,0);}
.m47_c01181{transform:matrix(0.287905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287905,0.000000,0.000000,0.250000,0,0);}
.m5b_c01181{transform:matrix(0.288251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288251,0.000000,0.000000,0.250000,0,0);}
.m23_c01181{transform:matrix(0.289052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289052,0.000000,0.000000,0.250000,0,0);}
.m3a_c01181{transform:matrix(0.289190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289190,0.000000,0.000000,0.250000,0,0);}
.m63_c01181{transform:matrix(0.290180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290180,0.000000,0.000000,0.250000,0,0);}
.m8b_c01181{transform:matrix(0.291130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291130,0.000000,0.000000,0.250000,0,0);}
.m9_c01181{transform:matrix(0.291878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291878,0.000000,0.000000,0.250000,0,0);}
.m29_c01181{transform:matrix(0.292016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292016,0.000000,0.000000,0.250000,0,0);}
.m55_c01181{transform:matrix(0.292091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292091,0.000000,0.000000,0.250000,0,0);}
.m81_c01181{transform:matrix(0.292193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292193,0.000000,0.000000,0.250000,0,0);}
.m25_c01181{transform:matrix(0.292219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292219,0.000000,0.000000,0.250000,0,0);}
.m2d_c01181{transform:matrix(0.293060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293060,0.000000,0.000000,0.250000,0,0);}
.m76_c01181{transform:matrix(0.293651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293651,0.000000,0.000000,0.250000,0,0);}
.m3b_c01181{transform:matrix(0.294004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294004,0.000000,0.000000,0.250000,0,0);}
.m4c_c01181{transform:matrix(0.294594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294594,0.000000,0.000000,0.250000,0,0);}
.m7f_c01181{transform:matrix(0.295334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295334,0.000000,0.000000,0.250000,0,0);}
.m1f_c01181{transform:matrix(0.296307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296307,0.000000,0.000000,0.250000,0,0);}
.m37_c01181{transform:matrix(0.298213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298213,0.000000,0.000000,0.250000,0,0);}
.m51_c01181{transform:matrix(0.299576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299576,0.000000,0.000000,0.250000,0,0);}
.m19_c01181{transform:matrix(0.300931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300931,0.000000,0.000000,0.250000,0,0);}
.md_c01181{transform:matrix(0.303232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303232,0.000000,0.000000,0.250000,0,0);}
.m3d_c01181{transform:matrix(0.304324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304324,0.000000,0.000000,0.250000,0,0);}
.m45_c01181{transform:matrix(0.304561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304561,0.000000,0.000000,0.250000,0,0);}
.m6_c01181{transform:matrix(0.304983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304983,0.000000,0.000000,0.250000,0,0);}
.m2e_c01181{transform:matrix(0.305468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305468,0.000000,0.000000,0.250000,0,0);}
.m8d_c01181{transform:matrix(0.306329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306329,0.000000,0.000000,0.250000,0,0);}
.m8c_c01181{transform:matrix(0.307251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307251,0.000000,0.000000,0.250000,0,0);}
.m8a_c01181{transform:matrix(0.311027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311027,0.000000,0.000000,0.250000,0,0);}
.m1_c01181{transform:matrix(0.311635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311635,0.000000,0.000000,0.250000,0,0);}
.m32_c01181{transform:matrix(0.316939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316939,0.000000,0.000000,0.250000,0,0);}
.m1d_c01181{transform:matrix(0.317464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317464,0.000000,0.000000,0.250000,0,0);}
.m3f_c01181{transform:matrix(0.318157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318157,0.000000,0.000000,0.250000,0,0);}
.m16_c01181{transform:matrix(0.318182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318182,0.000000,0.000000,0.250000,0,0);}
.m8f_c01181{transform:matrix(0.318834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318834,0.000000,0.000000,0.250000,0,0);}
.m15_c01181{transform:matrix(0.319325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319325,0.000000,0.000000,0.250000,0,0);}
.m86_c01181{transform:matrix(0.319387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319387,0.000000,0.000000,0.250000,0,0);}
.m52_c01181{transform:matrix(0.320852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320852,0.000000,0.000000,0.250000,0,0);}
.m26_c01181{transform:matrix(0.322420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322420,0.000000,0.000000,0.250000,0,0);}
.m84_c01181{transform:matrix(0.322534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322534,0.000000,0.000000,0.250000,0,0);}
.m1b_c01181{transform:matrix(0.323718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323718,0.000000,0.000000,0.250000,0,0);}
.m42_c01181{transform:matrix(0.324733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324733,0.000000,0.000000,0.250000,0,0);}
.m6c_c01181{transform:matrix(0.326255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326255,0.000000,0.000000,0.250000,0,0);}
.m6f_c01181{transform:matrix(0.326305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326305,0.000000,0.000000,0.250000,0,0);}
.m21_c01181{transform:matrix(0.326587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326587,0.000000,0.000000,0.250000,0,0);}
.m70_c01181{transform:matrix(0.326893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326893,0.000000,0.000000,0.250000,0,0);}
.m43_c01181{transform:matrix(0.327309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327309,0.000000,0.000000,0.250000,0,0);}
.m39_c01181{transform:matrix(0.328196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328196,0.000000,0.000000,0.250000,0,0);}
.m17_c01181{transform:matrix(0.328204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328204,0.000000,0.000000,0.250000,0,0);}
.m2f_c01181{transform:matrix(0.329069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329069,0.000000,0.000000,0.250000,0,0);}
.m6e_c01181{transform:matrix(0.330872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330872,0.000000,0.000000,0.250000,0,0);}
.m13_c01181{transform:matrix(0.330900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330900,0.000000,0.000000,0.250000,0,0);}
.m31_c01181{transform:matrix(0.332887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332887,0.000000,0.000000,0.250000,0,0);}
.m36_c01181{transform:matrix(0.333793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333793,0.000000,0.000000,0.250000,0,0);}
.m73_c01181{transform:matrix(0.335052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335052,0.000000,0.000000,0.250000,0,0);}
.m88_c01181{transform:matrix(0.335776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335776,0.000000,0.000000,0.250000,0,0);}
.m14_c01181{transform:matrix(0.337394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337394,0.000000,0.000000,0.250000,0,0);}
.m20_c01181{transform:matrix(0.337918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337918,0.000000,0.000000,0.250000,0,0);}
.m34_c01181{transform:matrix(0.342457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342457,0.000000,0.000000,0.250000,0,0);}
.m72_c01181{transform:matrix(0.342494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342494,0.000000,0.000000,0.250000,0,0);}
.m8e_c01181{transform:matrix(0.342977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342977,0.000000,0.000000,0.250000,0,0);}
.m22_c01181{transform:matrix(0.360796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360796,0.000000,0.000000,0.250000,0,0);}
.m87_c01181{transform:matrix(0.368736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368736,0.000000,0.000000,0.250000,0,0);}
.m8_c01181{transform:matrix(0.380631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380631,0.000000,0.000000,0.250000,0,0);}
.m74_c01181{transform:matrix(0.382754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382754,0.000000,0.000000,0.250000,0,0);}
.m68_c01181{transform:matrix(0.385454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385454,0.000000,0.000000,0.250000,0,0);}
.m83_c01181{transform:matrix(0.386579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386579,0.000000,0.000000,0.250000,0,0);}
.m89_c01181{transform:matrix(0.392526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392526,0.000000,0.000000,0.250000,0,0);}
.ma_c01181{transform:matrix(0.429803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429803,0.000000,0.000000,0.250000,0,0);}
.v0_c01181{vertical-align:0.000000px;}
.v1_c01181{vertical-align:12.850200px;}
.lsc_c01181{letter-spacing:-2.778930px;}
.ls17_c01181{letter-spacing:-2.383927px;}
.ls10_c01181{letter-spacing:-2.370067px;}
.ls16_c01181{letter-spacing:-1.833797px;}
.ls5_c01181{letter-spacing:0.000000px;}
.ls1_c01181{letter-spacing:0.293773px;}
.ls2_c01181{letter-spacing:0.833679px;}
.lse_c01181{letter-spacing:1.000415px;}
.ls7_c01181{letter-spacing:1.516502px;}
.ls3_c01181{letter-spacing:1.794395px;}
.ls18_c01181{letter-spacing:2.008769px;}
.lsb_c01181{letter-spacing:2.231084px;}
.ls4_c01181{letter-spacing:2.945666px;}
.ls15_c01181{letter-spacing:3.144161px;}
.ls8_c01181{letter-spacing:3.326400px;}
.ls11_c01181{letter-spacing:3.385810px;}
.lsa_c01181{letter-spacing:3.405610px;}
.ls1a_c01181{letter-spacing:3.425400px;}
.ls14_c01181{letter-spacing:3.593700px;}
.ls0_c01181{letter-spacing:3.628489px;}
.ls6_c01181{letter-spacing:3.969900px;}
.lsf_c01181{letter-spacing:4.059000px;}
.ls9_c01181{letter-spacing:4.078810px;}
.ls12_c01181{letter-spacing:54.172998px;}
.ls13_c01181{letter-spacing:57.024198px;}
.lsd_c01181{letter-spacing:62.726400px;}
.ls19_c01181{letter-spacing:64.152198px;}
.sc__c01181{text-shadow:none;}
.sc0_c01181{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01181{-webkit-text-stroke:0px transparent;}
.sc0_c01181{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01181{word-spacing:-20.683179px;}
.ws0_c01181{word-spacing:-20.143273px;}
.ws2_c01181{word-spacing:0.000000px;}
._1_c01181{width:6.399677px;}
._2_c01181{width:12.161847px;}
._0_c01181{width:25.921546px;}
._5_c01181{width:35.634931px;}
._4_c01181{width:36.748800px;}
._6_c01181{width:81.351191px;}
._3_c01181{width:926.440416px;}
.fc0_c01181{color:transparent;}
.fs0_c01181{font-size:22.176000px;}
.fs8_c01181{font-size:23.364000px;}
.fs14_c01181{font-size:27.720000px;}
.fsd_c01181{font-size:30.888000px;}
.fs1_c01181{font-size:39.204000px;}
.fsa_c01181{font-size:44.352000px;}
.fsb_c01181{font-size:54.172998px;}
.fsc_c01181{font-size:57.024198px;}
.fs6_c01181{font-size:62.726400px;}
.fs11_c01181{font-size:64.152198px;}
.fs12_c01181{font-size:66.330000px;}
.fs3_c01181{font-size:66.528000px;}
.fs9_c01181{font-size:67.716198px;}
.fs5_c01181{font-size:68.112198px;}
.fs13_c01181{font-size:68.508000px;}
.fse_c01181{font-size:71.874000px;}
.fs2_c01181{font-size:79.398000px;}
.fsf_c01181{font-size:80.784000px;}
.fs7_c01181{font-size:81.180000px;}
.fs4_c01181{font-size:81.576198px;}
.fs10_c01181{font-size:86.328000px;}
.y0_c01181{bottom:0.000000px;}
.y1_c01181{bottom:76.500000px;}
.y1f_c01181{bottom:96.496335px;}
.y1e_c01181{bottom:163.138185px;}
.y1d_c01181{bottom:175.617135px;}
.y1c_c01181{bottom:196.644735px;}
.y1b_c01181{bottom:229.077135px;}
.y1a_c01181{bottom:260.791785px;}
.y19_c01181{bottom:282.893535px;}
.y18_c01181{bottom:293.580585px;}
.y17_c01181{bottom:357.737535px;}
.y16_c01181{bottom:420.820335px;}
.y15_c01181{bottom:453.247785px;}
.y14_c01181{bottom:485.328735px;}
.y13_c01181{bottom:517.048335px;}
.y12_c01181{bottom:540.927135px;}
.y11_c01181{bottom:549.475785px;}
.y10_c01181{bottom:576.567135px;}
.yf_c01181{bottom:581.200335px;}
.ye_c01181{bottom:612.563535px;}
.yd_c01181{bottom:644.995935px;}
.yc_c01181{bottom:676.710585px;}
.yb_c01181{bottom:709.499385px;}
.ya_c01181{bottom:741.580335px;}
.y9_c01181{bottom:805.019535px;}
.y8_c01181{bottom:828.536985px;}
.y7_c01181{bottom:837.090585px;}
.y2_c01181{bottom:855.266985px;}
.y6_c01181{bottom:868.815135px;}
.y5_c01181{bottom:932.249385px;}
.y4_c01181{bottom:1096.193385px;}
.y3_c01181{bottom:1105.817175px;}
.h2_c01181{height:23.128875px;}
.ha_c01181{height:24.367922px;}
.h15_c01181{height:28.911094px;}
.hd_c01181{height:36.079217px;}
.he_c01181{height:37.978116px;}
.h3_c01181{height:38.476582px;}
.h8_c01181{height:41.775782px;}
.h12_c01181{height:42.725364px;}
.hc_c01181{height:46.257750px;}
.hb_c01181{height:66.459745px;}
.h13_c01181{height:69.180117px;}
.h5_c01181{height:69.386625px;}
.hf_c01181{height:70.540400px;}
.h7_c01181{height:71.038894px;}
.h14_c01181{height:71.451703px;}
.h4_c01181{height:77.924795px;}
.h10_c01181{height:79.245633px;}
.h9_c01181{height:79.673730px;}
.h6_c01181{height:80.062577px;}
.h11_c01181{height:84.726211px;}
.h1_c01181{height:1110.000000px;}
.h0_c01181{height:1263.000000px;}
.w1_c01181{width:775.500000px;}
.w0_c01181{width:892.500000px;}
.x0_c01181{left:0.000000px;}
.x2_c01181{left:53.719035px;}
.x1_c01181{left:58.500000px;}
.x4c_c01181{left:80.637135px;}
.x1f_c01181{left:82.097385px;}
.x9_c01181{left:83.522985px;}
.x52_c01181{left:116.980035px;}
.x3e_c01181{left:135.032685px;}
.xa_c01181{left:136.695885px;}
.x4_c01181{left:138.685785px;}
.x3f_c01181{left:168.167985px;}
.x17_c01181{left:169.326285px;}
.x20_c01181{left:170.479635px;}
.x18_c01181{left:181.062735px;}
.x47_c01181{left:182.112135px;}
.xb_c01181{left:191.531985px;}
.x53_c01181{left:201.352785px;}
.x5_c01181{left:204.005985px;}
.x4d_c01181{left:210.554835px;}
.x4f_c01181{left:212.886285px;}
.x36_c01181{left:213.985185px;}
.x28_c01181{left:215.296935px;}
.x44_c01181{left:224.820735px;}
.xc_c01181{left:227.404635px;}
.x4b_c01181{left:234.804885px;}
.x6_c01181{left:236.225535px;}
.x37_c01181{left:246.704685px;}
.xd_c01181{left:248.199585px;}
.x29_c01181{left:257.980785px;}
.x5e_c01181{left:269.489535px;}
.x21_c01181{left:270.964635px;}
.xe_c01181{left:280.919085px;}
.x40_c01181{left:291.046785px;}
.x58_c01181{left:301.956585px;}
.x5f_c01181{left:303.015885px;}
.x7_c01181{left:304.020735px;}
.xf_c01181{left:314.277135px;}
.x2c_c01181{left:324.983985px;}
.x59_c01181{left:335.309685px;}
.x22_c01181{left:337.220385px;}
.x41_c01181{left:338.853885px;}
.x30_c01181{left:346.363035px;}
.x19_c01181{left:348.273735px;}
.x8_c01181{left:358.104435px;}
.x43_c01181{left:359.193435px;}
.x38_c01181{left:370.004235px;}
.x54_c01181{left:379.196385px;}
.x31_c01181{left:380.389335px;}
.x10_c01181{left:381.473385px;}
.x48_c01181{left:391.175385px;}
.x42_c01181{left:392.873235px;}
.x11_c01181{left:402.867285px;}
.x1a_c01181{left:414.970035px;}
.x4e_c01181{left:424.860135px;}
.x5a_c01181{left:435.665985px;}
.x2d_c01181{left:436.720335px;}
.x12_c01181{left:437.784585px;}
.x23_c01181{left:447.357885px;}
.x32_c01181{left:448.486485px;}
.x34_c01181{left:458.465685px;}
.x5b_c01181{left:468.019185px;}
.x13_c01181{left:470.231835px;}
.x24_c01181{left:481.250535px;}
.x2a_c01181{left:490.388235px;}
.x35_c01181{left:492.264285px;}
.x49_c01181{left:501.887085px;}
.x14_c01181{left:503.005785px;}
.x55_c01181{left:511.415835px;}
.x4a_c01181{left:512.653335px;}
.x39_c01181{left:514.044285px;}
.x2b_c01181{left:525.845085px;}
.x50_c01181{left:535.636185px;}
.x2e_c01181{left:547.540935px;}
.x3a_c01181{left:560.574285px;}
.x3b_c01181{left:568.321035px;}
.x15_c01181{left:578.676435px;}
.x1b_c01181{left:581.423685px;}
.x5c_c01181{left:588.868485px;}
.x33_c01181{left:590.417835px;}
.x25_c01181{left:591.769185px;}
.x1c_c01181{left:602.728485px;}
.x5d_c01181{left:606.495435px;}
.x2f_c01181{left:613.375935px;}
.x3d_c01181{left:623.919435px;}
.x26_c01181{left:625.077735px;}
.x45_c01181{left:634.111485px;}
.x1d_c01181{left:657.569535px;}
.x16_c01181{left:667.825935px;}
.x46_c01181{left:669.073335px;}
.x56_c01181{left:678.730785px;}
.x27_c01181{left:700.674135px;}
.x1e_c01181{left:702.723435px;}
.x3_c01181{left:706.641360px;}
.x57_c01181{left:711.445335px;}
.x51_c01181{left:712.910535px;}
.x3c_c01181{left:723.587685px;}
@media print{
.v0_c01181{vertical-align:0.000000pt;}
.v1_c01181{vertical-align:11.422400pt;}
.lsc_c01181{letter-spacing:-2.470160pt;}
.ls17_c01181{letter-spacing:-2.119046pt;}
.ls10_c01181{letter-spacing:-2.106726pt;}
.ls16_c01181{letter-spacing:-1.630042pt;}
.ls5_c01181{letter-spacing:0.000000pt;}
.ls1_c01181{letter-spacing:0.261131pt;}
.ls2_c01181{letter-spacing:0.741048pt;}
.lse_c01181{letter-spacing:0.889258pt;}
.ls7_c01181{letter-spacing:1.348002pt;}
.ls3_c01181{letter-spacing:1.595018pt;}
.ls18_c01181{letter-spacing:1.785573pt;}
.lsb_c01181{letter-spacing:1.983186pt;}
.ls4_c01181{letter-spacing:2.618370pt;}
.ls15_c01181{letter-spacing:2.794810pt;}
.ls8_c01181{letter-spacing:2.956800pt;}
.ls11_c01181{letter-spacing:3.009609pt;}
.lsa_c01181{letter-spacing:3.027209pt;}
.ls1a_c01181{letter-spacing:3.044800pt;}
.ls14_c01181{letter-spacing:3.194400pt;}
.ls0_c01181{letter-spacing:3.225323pt;}
.ls6_c01181{letter-spacing:3.528800pt;}
.lsf_c01181{letter-spacing:3.608000pt;}
.ls9_c01181{letter-spacing:3.625609pt;}
.ls12_c01181{letter-spacing:48.153776pt;}
.ls13_c01181{letter-spacing:50.688176pt;}
.lsd_c01181{letter-spacing:55.756800pt;}
.ls19_c01181{letter-spacing:57.024176pt;}
.ws1_c01181{word-spacing:-18.385048pt;}
.ws0_c01181{word-spacing:-17.905131pt;}
.ws2_c01181{word-spacing:0.000000pt;}
._1_c01181{width:5.688602pt;}
._2_c01181{width:10.810531pt;}
._0_c01181{width:23.041374pt;}
._5_c01181{width:31.675494pt;}
._4_c01181{width:32.665600pt;}
._6_c01181{width:72.312170pt;}
._3_c01181{width:823.502592pt;}
.fs0_c01181{font-size:19.712000pt;}
.fs8_c01181{font-size:20.768000pt;}
.fs14_c01181{font-size:24.640000pt;}
.fsd_c01181{font-size:27.456000pt;}
.fs1_c01181{font-size:34.848000pt;}
.fsa_c01181{font-size:39.424000pt;}
.fsb_c01181{font-size:48.153776pt;}
.fsc_c01181{font-size:50.688176pt;}
.fs6_c01181{font-size:55.756800pt;}
.fs11_c01181{font-size:57.024176pt;}
.fs12_c01181{font-size:58.960000pt;}
.fs3_c01181{font-size:59.136000pt;}
.fs9_c01181{font-size:60.192176pt;}
.fs5_c01181{font-size:60.544176pt;}
.fs13_c01181{font-size:60.896000pt;}
.fse_c01181{font-size:63.888000pt;}
.fs2_c01181{font-size:70.576000pt;}
.fsf_c01181{font-size:71.808000pt;}
.fs7_c01181{font-size:72.160000pt;}
.fs4_c01181{font-size:72.512176pt;}
.fs10_c01181{font-size:76.736000pt;}
.y0_c01181{bottom:0.000000pt;}
.y1_c01181{bottom:68.000000pt;}
.y1f_c01181{bottom:85.774520pt;}
.y1e_c01181{bottom:145.011720pt;}
.y1d_c01181{bottom:156.104120pt;}
.y1c_c01181{bottom:174.795320pt;}
.y1b_c01181{bottom:203.624120pt;}
.y1a_c01181{bottom:231.814920pt;}
.y19_c01181{bottom:251.460920pt;}
.y18_c01181{bottom:260.960520pt;}
.y17_c01181{bottom:317.988920pt;}
.y16_c01181{bottom:374.062520pt;}
.y15_c01181{bottom:402.886920pt;}
.y14_c01181{bottom:431.403320pt;}
.y13_c01181{bottom:459.598520pt;}
.y12_c01181{bottom:480.824120pt;}
.y11_c01181{bottom:488.422920pt;}
.y10_c01181{bottom:512.504120pt;}
.yf_c01181{bottom:516.622520pt;}
.ye_c01181{bottom:544.500920pt;}
.yd_c01181{bottom:573.329720pt;}
.yc_c01181{bottom:601.520520pt;}
.yb_c01181{bottom:630.666120pt;}
.ya_c01181{bottom:659.182520pt;}
.y9_c01181{bottom:715.572920pt;}
.y8_c01181{bottom:736.477320pt;}
.y7_c01181{bottom:744.080520pt;}
.y2_c01181{bottom:760.237320pt;}
.y6_c01181{bottom:772.280120pt;}
.y5_c01181{bottom:828.666120pt;}
.y4_c01181{bottom:974.394120pt;}
.y3_c01181{bottom:982.948600pt;}
.h2_c01181{height:20.559000pt;}
.ha_c01181{height:21.660375pt;}
.h15_c01181{height:25.698750pt;}
.hd_c01181{height:32.070415pt;}
.he_c01181{height:33.758325pt;}
.h3_c01181{height:34.201406pt;}
.h8_c01181{height:37.134029pt;}
.h12_c01181{height:37.978101pt;}
.hc_c01181{height:41.118000pt;}
.hb_c01181{height:59.075329pt;}
.h13_c01181{height:61.493438pt;}
.h5_c01181{height:61.677000pt;}
.hf_c01181{height:62.702578pt;}
.h7_c01181{height:63.145684pt;}
.h14_c01181{height:63.512625pt;}
.h4_c01181{height:69.266484pt;}
.h10_c01181{height:70.440562pt;}
.h9_c01181{height:70.821094pt;}
.h6_c01181{height:71.166735pt;}
.h11_c01181{height:75.312188pt;}
.h1_c01181{height:986.666667pt;}
.h0_c01181{height:1122.666667pt;}
.w1_c01181{width:689.333333pt;}
.w0_c01181{width:793.333333pt;}
.x0_c01181{left:0.000000pt;}
.x2_c01181{left:47.750253pt;}
.x1_c01181{left:52.000000pt;}
.x4c_c01181{left:71.677453pt;}
.x1f_c01181{left:72.975453pt;}
.x9_c01181{left:74.242653pt;}
.x52_c01181{left:103.982253pt;}
.x3e_c01181{left:120.029053pt;}
.xa_c01181{left:121.507453pt;}
.x4_c01181{left:123.276253pt;}
.x3f_c01181{left:149.482653pt;}
.x17_c01181{left:150.512253pt;}
.x20_c01181{left:151.537453pt;}
.x18_c01181{left:160.944653pt;}
.x47_c01181{left:161.877453pt;}
.xb_c01181{left:170.250653pt;}
.x53_c01181{left:178.980253pt;}
.x5_c01181{left:181.338653pt;}
.x4d_c01181{left:187.159853pt;}
.x4f_c01181{left:189.232253pt;}
.x36_c01181{left:190.209053pt;}
.x28_c01181{left:191.375053pt;}
.x44_c01181{left:199.840653pt;}
.xc_c01181{left:202.137453pt;}
.x4b_c01181{left:208.715453pt;}
.x6_c01181{left:209.978253pt;}
.x37_c01181{left:219.293053pt;}
.xd_c01181{left:220.621853pt;}
.x29_c01181{left:229.316253pt;}
.x5e_c01181{left:239.546253pt;}
.x21_c01181{left:240.857453pt;}
.xe_c01181{left:249.705853pt;}
.x40_c01181{left:258.708253pt;}
.x58_c01181{left:268.405853pt;}
.x5f_c01181{left:269.347453pt;}
.x7_c01181{left:270.240653pt;}
.xf_c01181{left:279.357453pt;}
.x2c_c01181{left:288.874653pt;}
.x59_c01181{left:298.053053pt;}
.x22_c01181{left:299.751453pt;}
.x41_c01181{left:301.203453pt;}
.x30_c01181{left:307.878253pt;}
.x19_c01181{left:309.576653pt;}
.x8_c01181{left:318.315053pt;}
.x43_c01181{left:319.283053pt;}
.x38_c01181{left:328.892653pt;}
.x54_c01181{left:337.063453pt;}
.x31_c01181{left:338.123853pt;}
.x10_c01181{left:339.087453pt;}
.x48_c01181{left:347.711453pt;}
.x42_c01181{left:349.220653pt;}
.x11_c01181{left:358.104253pt;}
.x1a_c01181{left:368.862253pt;}
.x4e_c01181{left:377.653453pt;}
.x5a_c01181{left:387.258653pt;}
.x2d_c01181{left:388.195853pt;}
.x12_c01181{left:389.141853pt;}
.x23_c01181{left:397.651453pt;}
.x32_c01181{left:398.654653pt;}
.x34_c01181{left:407.525053pt;}
.x5b_c01181{left:416.017053pt;}
.x13_c01181{left:417.983853pt;}
.x24_c01181{left:427.778253pt;}
.x2a_c01181{left:435.900653pt;}
.x35_c01181{left:437.568253pt;}
.x49_c01181{left:446.121853pt;}
.x14_c01181{left:447.116253pt;}
.x55_c01181{left:454.591853pt;}
.x4a_c01181{left:455.691853pt;}
.x39_c01181{left:456.928253pt;}
.x2b_c01181{left:467.417853pt;}
.x50_c01181{left:476.121053pt;}
.x2e_c01181{left:486.703053pt;}
.x3a_c01181{left:498.288253pt;}
.x3b_c01181{left:505.174253pt;}
.x15_c01181{left:514.379053pt;}
.x1b_c01181{left:516.821053pt;}
.x5c_c01181{left:523.438653pt;}
.x33_c01181{left:524.815853pt;}
.x25_c01181{left:526.017053pt;}
.x1c_c01181{left:535.758653pt;}
.x5d_c01181{left:539.107053pt;}
.x2f_c01181{left:545.223053pt;}
.x3d_c01181{left:554.595053pt;}
.x26_c01181{left:555.624653pt;}
.x45_c01181{left:563.654653pt;}
.x1d_c01181{left:584.506253pt;}
.x16_c01181{left:593.623053pt;}
.x46_c01181{left:594.731853pt;}
.x56_c01181{left:603.316253pt;}
.x27_c01181{left:622.821453pt;}
.x1e_c01181{left:624.643053pt;}
.x3_c01181{left:628.125653pt;}
.x57_c01181{left:632.395853pt;}
.x51_c01181{left:633.698253pt;}
.x3c_c01181{left:643.189053pt;}
}





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

.ir_c01182:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01182{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01182;src:url('chunks/assets/font_c91ef584aa8a4a15fff282f5.woff2')format("woff");}.ff1_c01182{font-family:ff1_c01182;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01182;src:url('chunks/assets/font_90be2cb9985992bdbaeee874.woff2')format("woff");}.ff2_c01182{font-family:ff2_c01182;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01182;src:url('chunks/assets/font_398e56ff60a18e2654b6424f.woff2')format("woff");}.ff3_c01182{font-family:ff3_c01182;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01182;src:url('chunks/assets/font_bbfa03acddfa4cd801559b1f.woff2')format("woff");}.ff4_c01182{font-family:ff4_c01182;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01182;src:url('chunks/assets/font_6dd1011f77d557c85fb05116.woff2')format("woff");}.ff5_c01182{font-family:ff5_c01182;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c01182{transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);}
.m51_c01182{transform:matrix(0.147728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147728,0.000000,0.000000,0.250000,0,0);}
.m54_c01182{transform:matrix(0.151420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151420,0.000000,0.000000,0.250000,0,0);}
.m50_c01182{transform:matrix(0.161933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161933,0.000000,0.000000,0.250000,0,0);}
.m2c_c01182{transform:matrix(0.168016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168016,0.000000,0.000000,0.250000,0,0);}
.m18_c01182{transform:matrix(0.200203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200203,0.000000,0.000000,0.250000,0,0);}
.m4f_c01182{transform:matrix(0.228581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228581,0.000000,0.000000,0.250000,0,0);}
.m39_c01182{transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);}
.m17_c01182{transform:matrix(0.248083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248083,0.000000,0.000000,0.250000,0,0);}
.m2d_c01182{transform:matrix(0.248354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248354,0.000000,0.000000,0.250000,0,0);}
.m0_c01182{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m35_c01182{transform:matrix(0.253083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253083,0.000000,0.000000,0.250000,0,0);}
.m12_c01182{transform:matrix(0.254846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254846,0.000000,0.000000,0.250000,0,0);}
.m1_c01182{transform:matrix(0.257008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257008,0.000000,0.000000,0.250000,0,0);}
.m3_c01182{transform:matrix(0.257235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257235,0.000000,0.000000,0.250000,0,0);}
.m1d_c01182{transform:matrix(0.258200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258200,0.000000,0.000000,0.250000,0,0);}
.m26_c01182{transform:matrix(0.259331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259331,0.000000,0.000000,0.250000,0,0);}
.m56_c01182{transform:matrix(0.265834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265834,0.000000,0.000000,0.250000,0,0);}
.m58_c01182{transform:matrix(0.266519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266519,0.000000,0.000000,0.250000,0,0);}
.m36_c01182{transform:matrix(0.270280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270280,0.000000,0.000000,0.250000,0,0);}
.mf_c01182{transform:matrix(0.271003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271003,0.000000,0.000000,0.250000,0,0);}
.m25_c01182{transform:matrix(0.272512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272512,0.000000,0.000000,0.250000,0,0);}
.m21_c01182{transform:matrix(0.273537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273537,0.000000,0.000000,0.250000,0,0);}
.m60_c01182{transform:matrix(0.274108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274108,0.000000,0.000000,0.250000,0,0);}
.m1c_c01182{transform:matrix(0.274240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274240,0.000000,0.000000,0.250000,0,0);}
.m33_c01182{transform:matrix(0.275525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275525,0.000000,0.000000,0.250000,0,0);}
.mb_c01182{transform:matrix(0.275843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275843,0.000000,0.000000,0.250000,0,0);}
.m5a_c01182{transform:matrix(0.276494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276494,0.000000,0.000000,0.250000,0,0);}
.m45_c01182{transform:matrix(0.276670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276670,0.000000,0.000000,0.250000,0,0);}
.m37_c01182{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m34_c01182{transform:matrix(0.277461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277461,0.000000,0.000000,0.250000,0,0);}
.m5f_c01182{transform:matrix(0.278460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278460,0.000000,0.000000,0.250000,0,0);}
.m3c_c01182{transform:matrix(0.278890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278890,0.000000,0.000000,0.250000,0,0);}
.m19_c01182{transform:matrix(0.279354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279354,0.000000,0.000000,0.250000,0,0);}
.m4a_c01182{transform:matrix(0.279472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279472,0.000000,0.000000,0.250000,0,0);}
.m41_c01182{transform:matrix(0.279846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279846,0.000000,0.000000,0.250000,0,0);}
.m15_c01182{transform:matrix(0.280236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280236,0.000000,0.000000,0.250000,0,0);}
.m27_c01182{transform:matrix(0.281165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281165,0.000000,0.000000,0.250000,0,0);}
.m5_c01182{transform:matrix(0.281466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281466,0.000000,0.000000,0.250000,0,0);}
.m46_c01182{transform:matrix(0.283782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283782,0.000000,0.000000,0.250000,0,0);}
.ma_c01182{transform:matrix(0.286405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286405,0.000000,0.000000,0.250000,0,0);}
.m1e_c01182{transform:matrix(0.286864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286864,0.000000,0.000000,0.250000,0,0);}
.m4_c01182{transform:matrix(0.286916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286916,0.000000,0.000000,0.250000,0,0);}
.m8_c01182{transform:matrix(0.287237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287237,0.000000,0.000000,0.250000,0,0);}
.m16_c01182{transform:matrix(0.289381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289381,0.000000,0.000000,0.250000,0,0);}
.m55_c01182{transform:matrix(0.290804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290804,0.000000,0.000000,0.250000,0,0);}
.mc_c01182{transform:matrix(0.292099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292099,0.000000,0.000000,0.250000,0,0);}
.m44_c01182{transform:matrix(0.293118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293118,0.000000,0.000000,0.250000,0,0);}
.m4d_c01182{transform:matrix(0.294580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294580,0.000000,0.000000,0.250000,0,0);}
.m5e_c01182{transform:matrix(0.294735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294735,0.000000,0.000000,0.250000,0,0);}
.m22_c01182{transform:matrix(0.294769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294769,0.000000,0.000000,0.250000,0,0);}
.m14_c01182{transform:matrix(0.295880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295880,0.000000,0.000000,0.250000,0,0);}
.m1b_c01182{transform:matrix(0.295997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295997,0.000000,0.000000,0.250000,0,0);}
.md_c01182{transform:matrix(0.296019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296019,0.000000,0.000000,0.250000,0,0);}
.m47_c01182{transform:matrix(0.296288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296288,0.000000,0.000000,0.250000,0,0);}
.m24_c01182{transform:matrix(0.296509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296509,0.000000,0.000000,0.250000,0,0);}
.m11_c01182{transform:matrix(0.299203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299203,0.000000,0.000000,0.250000,0,0);}
.m5b_c01182{transform:matrix(0.300138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300138,0.000000,0.000000,0.250000,0,0);}
.m53_c01182{transform:matrix(0.303317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303317,0.000000,0.000000,0.250000,0,0);}
.m2f_c01182{transform:matrix(0.303815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303815,0.000000,0.000000,0.250000,0,0);}
.m3e_c01182{transform:matrix(0.308830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308830,0.000000,0.000000,0.250000,0,0);}
.m1f_c01182{transform:matrix(0.309591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309591,0.000000,0.000000,0.250000,0,0);}
.me_c01182{transform:matrix(0.312341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312341,0.000000,0.000000,0.250000,0,0);}
.m32_c01182{transform:matrix(0.312485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312485,0.000000,0.000000,0.250000,0,0);}
.m42_c01182{transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);}
.m2a_c01182{transform:matrix(0.312853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312853,0.000000,0.000000,0.250000,0,0);}
.m6_c01182{transform:matrix(0.313091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313091,0.000000,0.000000,0.250000,0,0);}
.m13_c01182{transform:matrix(0.316958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316958,0.000000,0.000000,0.250000,0,0);}
.m57_c01182{transform:matrix(0.317115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317115,0.000000,0.000000,0.250000,0,0);}
.m28_c01182{transform:matrix(0.318026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318026,0.000000,0.000000,0.250000,0,0);}
.m7_c01182{transform:matrix(0.319805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319805,0.000000,0.000000,0.250000,0,0);}
.m40_c01182{transform:matrix(0.320343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320343,0.000000,0.000000,0.250000,0,0);}
.m3b_c01182{transform:matrix(0.324229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324229,0.000000,0.000000,0.250000,0,0);}
.m30_c01182{transform:matrix(0.324845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324845,0.000000,0.000000,0.250000,0,0);}
.m43_c01182{transform:matrix(0.330294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330294,0.000000,0.000000,0.250000,0,0);}
.m2e_c01182{transform:matrix(0.330605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330605,0.000000,0.000000,0.250000,0,0);}
.m10_c01182{transform:matrix(0.331229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331229,0.000000,0.000000,0.250000,0,0);}
.m38_c01182{transform:matrix(0.332886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332886,0.000000,0.000000,0.250000,0,0);}
.m3d_c01182{transform:matrix(0.334021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334021,0.000000,0.000000,0.250000,0,0);}
.m9_c01182{transform:matrix(0.334448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334448,0.000000,0.000000,0.250000,0,0);}
.m31_c01182{transform:matrix(0.336502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336502,0.000000,0.000000,0.250000,0,0);}
.m2b_c01182{transform:matrix(0.336509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336509,0.000000,0.000000,0.250000,0,0);}
.m4c_c01182{transform:matrix(0.338814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338814,0.000000,0.000000,0.250000,0,0);}
.m29_c01182{transform:matrix(0.343993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343993,0.000000,0.000000,0.250000,0,0);}
.m52_c01182{transform:matrix(0.350059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350059,0.000000,0.000000,0.250000,0,0);}
.m3a_c01182{transform:matrix(0.351862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351862,0.000000,0.000000,0.250000,0,0);}
.m4e_c01182{transform:matrix(0.353647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353647,0.000000,0.000000,0.250000,0,0);}
.m3f_c01182{transform:matrix(0.355438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355438,0.000000,0.000000,0.250000,0,0);}
.m5d_c01182{transform:matrix(0.359013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359013,0.000000,0.000000,0.250000,0,0);}
.m5c_c01182{transform:matrix(0.361610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361610,0.000000,0.000000,0.250000,0,0);}
.m49_c01182{transform:matrix(0.362934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362934,0.000000,0.000000,0.250000,0,0);}
.m4b_c01182{transform:matrix(0.363001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363001,0.000000,0.000000,0.250000,0,0);}
.m48_c01182{transform:matrix(0.377007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377007,0.000000,0.000000,0.250000,0,0);}
.m20_c01182{transform:matrix(0.380265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380265,0.000000,0.000000,0.250000,0,0);}
.m23_c01182{transform:matrix(0.387331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387331,0.000000,0.000000,0.250000,0,0);}
.m59_c01182{transform:matrix(0.403791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403791,0.000000,0.000000,0.250000,0,0);}
.m1a_c01182{transform:matrix(0.408907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408907,0.000000,0.000000,0.250000,0,0);}
.v0_c01182{vertical-align:0.000000px;}
.v1_c01182{vertical-align:9.959400px;}
.ls1e_c01182{letter-spacing:-3.243240px;}
.ls1a_c01182{letter-spacing:-2.744280px;}
.ls22_c01182{letter-spacing:-2.730427px;}
.lsc_c01182{letter-spacing:-2.661127px;}
.ls9_c01182{letter-spacing:-2.324916px;}
.ls13_c01182{letter-spacing:-1.189188px;}
.ls1d_c01182{letter-spacing:-0.822017px;}
.ls4_c01182{letter-spacing:0.000000px;}
.lsa_c01182{letter-spacing:0.030096px;}
.lsf_c01182{letter-spacing:1.211328px;}
.ls11_c01182{letter-spacing:1.551849px;}
.ls1_c01182{letter-spacing:1.886069px;}
.ls19_c01182{letter-spacing:2.230351px;}
.ls2_c01182{letter-spacing:2.386817px;}
.ls17_c01182{letter-spacing:2.829071px;}
.ls3_c01182{letter-spacing:2.858811px;}
.ls12_c01182{letter-spacing:3.267000px;}
.lse_c01182{letter-spacing:3.316500px;}
.ls21_c01182{letter-spacing:3.326400px;}
.ls20_c01182{letter-spacing:3.405610px;}
.ls1b_c01182{letter-spacing:3.425400px;}
.ls7_c01182{letter-spacing:3.465000px;}
.ls1c_c01182{letter-spacing:3.564000px;}
.lsb_c01182{letter-spacing:3.682810px;}
.ls8_c01182{letter-spacing:3.742200px;}
.ls15_c01182{letter-spacing:3.781810px;}
.ls5_c01182{letter-spacing:3.801610px;}
.ls18_c01182{letter-spacing:3.920400px;}
.ls10_c01182{letter-spacing:3.940200px;}
.ls16_c01182{letter-spacing:3.969900px;}
.ls23_c01182{letter-spacing:4.118400px;}
.ls0_c01182{letter-spacing:13.642200px;}
.ls6_c01182{letter-spacing:31.363200px;}
.ls14_c01182{letter-spacing:54.172998px;}
.lsd_c01182{letter-spacing:58.449798px;}
.ls1f_c01182{letter-spacing:62.726400px;}
.sc__c01182{text-shadow:none;}
.sc0_c01182{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01182{-webkit-text-stroke:0px transparent;}
.sc0_c01182{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01182{word-spacing:0.000000px;}
._9_c01182{margin-left:-11.978208px;}
._5_c01182{margin-left:-5.538456px;}
._6_c01182{width:3.617856px;}
._7_c01182{width:6.586272px;}
._0_c01182{width:8.457372px;}
._4_c01182{width:11.016720px;}
._b_c01182{width:23.995719px;}
._2_c01182{width:28.614010px;}
._1_c01182{width:32.650200px;}
._3_c01182{width:33.875820px;}
._a_c01182{width:47.233296px;}
._8_c01182{width:86.596041px;}
.fc0_c01182{color:transparent;}
.fs20_c01182{font-size:20.196000px;}
.fs2_c01182{font-size:31.363200px;}
.fs8_c01182{font-size:34.056198px;}
.fs10_c01182{font-size:54.172998px;}
.fs9_c01182{font-size:58.449798px;}
.fs5_c01182{font-size:59.400000px;}
.fs11_c01182{font-size:62.568000px;}
.fs1b_c01182{font-size:62.726400px;}
.fsf_c01182{font-size:65.340000px;}
.fsa_c01182{font-size:66.330000px;}
.fs1d_c01182{font-size:66.528000px;}
.fs1c_c01182{font-size:68.112198px;}
.fs17_c01182{font-size:68.508000px;}
.fs3_c01182{font-size:69.300000px;}
.fs15_c01182{font-size:71.082198px;}
.fs18_c01182{font-size:71.280000px;}
.fsb_c01182{font-size:71.676198px;}
.fs0_c01182{font-size:72.864000px;}
.fs7_c01182{font-size:73.656198px;}
.fs4_c01182{font-size:74.844000px;}
.fs6_c01182{font-size:75.240000px;}
.fs12_c01182{font-size:75.636198px;}
.fs1_c01182{font-size:76.032198px;}
.fs1e_c01182{font-size:78.012198px;}
.fs16_c01182{font-size:78.408000px;}
.fsd_c01182{font-size:78.804000px;}
.fs13_c01182{font-size:79.398000px;}
.fse_c01182{font-size:79.992198px;}
.fs1f_c01182{font-size:82.368000px;}
.fs19_c01182{font-size:84.744000px;}
.fs1a_c01182{font-size:92.664000px;}
.fs14_c01182{font-size:96.624000px;}
.fsc_c01182{font-size:101.376198px;}
.y0_c01182{bottom:0.000000px;}
.y1_c01182{bottom:76.500000px;}
.y16_c01182{bottom:162.073935px;}
.y15_c01182{bottom:195.570585px;}
.y17_c01182{bottom:256.163535px;}
.y14_c01182{bottom:260.796735px;}
.y13_c01182{bottom:324.943785px;}
.y12_c01182{bottom:389.452185px;}
.y11_c01182{bottom:421.176735px;}
.y10_c01182{bottom:453.252735px;}
.yf_c01182{bottom:515.979135px;}
.yd_c01182{bottom:548.411535px;}
.ye_c01182{bottom:549.119385px;}
.yc_c01182{bottom:580.838985px;}
.yb_c01182{bottom:644.278185px;}
.ya_c01182{bottom:708.430185px;}
.y9_c01182{bottom:771.869385px;}
.y8_c01182{bottom:791.832735px;}
.y7_c01182{bottom:835.313535px;}
.y6_c01182{bottom:900.173385px;}
.y5_c01182{bottom:932.967135px;}
.y4_c01182{bottom:1068.394185px;}
.y3_c01182{bottom:1075.878585px;}
.y2_c01182{bottom:1091.560185px;}
.h4_c01182{height:20.887891px;}
.h21_c01182{height:21.063797px;}
.h9_c01182{height:35.519550px;}
.h11_c01182{height:36.079217px;}
.ha_c01182{height:38.927565px;}
.h1c_c01182{height:41.775782px;}
.h1e_c01182{height:65.293594px;}
.h18_c01182{height:67.236855px;}
.h10_c01182{height:68.147578px;}
.hb_c01182{height:69.180117px;}
.h16_c01182{height:69.728582px;}
.h19_c01182{height:69.957422px;}
.h12_c01182{height:70.346269px;}
.h1d_c01182{height:71.038894px;}
.h2_c01182{height:71.512031px;}
.h5_c01182{height:72.277734px;}
.h8_c01182{height:72.289530px;}
.h6_c01182{height:73.455293px;}
.h7_c01182{height:73.843945px;}
.h13_c01182{height:74.232792px;}
.h3_c01182{height:74.621444px;}
.hc_c01182{height:74.756035px;}
.h1f_c01182{height:76.564706px;}
.h17_c01182{height:76.953164px;}
.he_c01182{height:77.303338px;}
.h15_c01182{height:77.924795px;}
.hf_c01182{height:78.507968px;}
.h20_c01182{height:80.839688px;}
.h1a_c01182{height:83.171602px;}
.h1b_c01182{height:90.944648px;}
.h14_c01182{height:94.831172px;}
.hd_c01182{height:99.495194px;}
.h1_c01182{height:1110.000000px;}
.h0_c01182{height:1263.000000px;}
.w1_c01182{width:775.500000px;}
.w0_c01182{width:892.500000px;}
.x0_c01182{left:0.000000px;}
.x1_c01182{left:58.500000px;}
.x33_c01182{left:82.315185px;}
.x22_c01182{left:83.696235px;}
.x14_c01182{left:84.814935px;}
.x4_c01182{left:87.091935px;}
.x4c_c01182{left:136.072185px;}
.x2f_c01182{left:137.502735px;}
.xb_c01182{left:138.522435px;}
.x5_c01182{left:139.972785px;}
.x34_c01182{left:171.217185px;}
.x6_c01182{left:174.404985px;}
.x30_c01182{left:181.414185px;}
.x23_c01182{left:183.235785px;}
.x47_c01182{left:192.937785px;}
.x18_c01182{left:195.199935px;}
.x3b_c01182{left:204.624735px;}
.x31_c01182{left:214.841535px;}
.x15_c01182{left:215.935485px;}
.x24_c01182{left:222.875385px;}
.x48_c01182{left:227.478885px;}
.xc_c01182{left:228.592635px;}
.x3c_c01182{left:237.799635px;}
.x49_c01182{left:239.532135px;}
.x35_c01182{left:247.679835px;}
.x29_c01182{left:249.471735px;}
.x1d_c01182{left:250.605285px;}
.x4a_c01182{left:259.470735px;}
.xd_c01182{left:261.807135px;}
.x7_c01182{left:272.023935px;}
.x1e_c01182{left:281.503185px;}
.x32_c01182{left:283.201035px;}
.x25_c01182{left:294.358335px;}
.x46_c01182{left:305.421585px;}
.x4d_c01182{left:313.707885px;}
.x4b_c01182{left:314.945385px;}
.x1f_c01182{left:316.885785px;}
.x3d_c01182{left:326.963985px;}
.xe_c01182{left:327.993585px;}
.x36_c01182{left:337.992585px;}
.x20_c01182{left:340.799235px;}
.x26_c01182{left:348.194535px;}
.x41_c01182{left:349.417185px;}
.x3e_c01182{left:359.406285px;}
.x21_c01182{left:361.059585px;}
.x2a_c01182{left:381.339735px;}
.x19_c01182{left:384.334485px;}
.x27_c01182{left:385.611585px;}
.x4e_c01182{left:393.482085px;}
.x8_c01182{left:416.558985px;}
.x42_c01182{left:426.696585px;}
.x1a_c01182{left:428.067735px;}
.x37_c01182{left:447.580635px;}
.xf_c01182{left:450.258585px;}
.x28_c01182{left:471.919785px;}
.x38_c01182{left:481.606935px;}
.x10_c01182{left:483.502785px;}
.x4f_c01182{left:491.937585px;}
.x1b_c01182{left:494.338335px;}
.x2b_c01182{left:503.802735px;}
.x43_c01182{left:505.396635px;}
.x16_c01182{left:528.750735px;}
.x44_c01182{left:536.675685px;}
.x2c_c01182{left:538.596285px;}
.x9_c01182{left:548.382435px;}
.x1c_c01182{left:550.728735px;}
.x50_c01182{left:568.919985px;}
.x3f_c01182{left:570.251535px;}
.x11_c01182{left:572.167185px;}
.x2d_c01182{left:580.488135px;}
.x12_c01182{left:604.579785px;}
.x51_c01182{left:613.375935px;}
.x40_c01182{left:626.236035px;}
.xa_c01182{left:637.789335px;}
.x45_c01182{left:639.685185px;}
.x13_c01182{left:648.723885px;}
.x39_c01182{left:659.811885px;}
.x2e_c01182{left:681.497835px;}
.x3a_c01182{left:692.551185px;}
.x17_c01182{left:700.104885px;}
.x2_c01182{left:702.154185px;}
.x3_c01182{left:703.163985px;}
@media print{
.v0_c01182{vertical-align:0.000000pt;}
.v1_c01182{vertical-align:8.852800pt;}
.ls1e_c01182{letter-spacing:-2.882880pt;}
.ls1a_c01182{letter-spacing:-2.439360pt;}
.ls22_c01182{letter-spacing:-2.427046pt;}
.lsc_c01182{letter-spacing:-2.365446pt;}
.ls9_c01182{letter-spacing:-2.066592pt;}
.ls13_c01182{letter-spacing:-1.057056pt;}
.ls1d_c01182{letter-spacing:-0.730682pt;}
.ls4_c01182{letter-spacing:0.000000pt;}
.lsa_c01182{letter-spacing:0.026752pt;}
.lsf_c01182{letter-spacing:1.076736pt;}
.ls11_c01182{letter-spacing:1.379421pt;}
.ls1_c01182{letter-spacing:1.676506pt;}
.ls19_c01182{letter-spacing:1.982534pt;}
.ls2_c01182{letter-spacing:2.121615pt;}
.ls17_c01182{letter-spacing:2.514730pt;}
.ls3_c01182{letter-spacing:2.541165pt;}
.ls12_c01182{letter-spacing:2.904000pt;}
.lse_c01182{letter-spacing:2.948000pt;}
.ls21_c01182{letter-spacing:2.956800pt;}
.ls20_c01182{letter-spacing:3.027209pt;}
.ls1b_c01182{letter-spacing:3.044800pt;}
.ls7_c01182{letter-spacing:3.080000pt;}
.ls1c_c01182{letter-spacing:3.168000pt;}
.lsb_c01182{letter-spacing:3.273609pt;}
.ls8_c01182{letter-spacing:3.326400pt;}
.ls15_c01182{letter-spacing:3.361609pt;}
.ls5_c01182{letter-spacing:3.379209pt;}
.ls18_c01182{letter-spacing:3.484800pt;}
.ls10_c01182{letter-spacing:3.502400pt;}
.ls16_c01182{letter-spacing:3.528800pt;}
.ls23_c01182{letter-spacing:3.660800pt;}
.ls0_c01182{letter-spacing:12.126400pt;}
.ls6_c01182{letter-spacing:27.878400pt;}
.ls14_c01182{letter-spacing:48.153776pt;}
.lsd_c01182{letter-spacing:51.955376pt;}
.ls1f_c01182{letter-spacing:55.756800pt;}
.ws0_c01182{word-spacing:0.000000pt;}
._9_c01182{margin-left:-10.647296pt;}
._5_c01182{margin-left:-4.923072pt;}
._6_c01182{width:3.215872pt;}
._7_c01182{width:5.854464pt;}
._0_c01182{width:7.517664pt;}
._4_c01182{width:9.792640pt;}
._b_c01182{width:21.329528pt;}
._2_c01182{width:25.434675pt;}
._1_c01182{width:29.022400pt;}
._3_c01182{width:30.111840pt;}
._a_c01182{width:41.985152pt;}
._8_c01182{width:76.974259pt;}
.fs20_c01182{font-size:17.952000pt;}
.fs2_c01182{font-size:27.878400pt;}
.fs8_c01182{font-size:30.272176pt;}
.fs10_c01182{font-size:48.153776pt;}
.fs9_c01182{font-size:51.955376pt;}
.fs5_c01182{font-size:52.800000pt;}
.fs11_c01182{font-size:55.616000pt;}
.fs1b_c01182{font-size:55.756800pt;}
.fsf_c01182{font-size:58.080000pt;}
.fsa_c01182{font-size:58.960000pt;}
.fs1d_c01182{font-size:59.136000pt;}
.fs1c_c01182{font-size:60.544176pt;}
.fs17_c01182{font-size:60.896000pt;}
.fs3_c01182{font-size:61.600000pt;}
.fs15_c01182{font-size:63.184176pt;}
.fs18_c01182{font-size:63.360000pt;}
.fsb_c01182{font-size:63.712176pt;}
.fs0_c01182{font-size:64.768000pt;}
.fs7_c01182{font-size:65.472176pt;}
.fs4_c01182{font-size:66.528000pt;}
.fs6_c01182{font-size:66.880000pt;}
.fs12_c01182{font-size:67.232176pt;}
.fs1_c01182{font-size:67.584176pt;}
.fs1e_c01182{font-size:69.344176pt;}
.fs16_c01182{font-size:69.696000pt;}
.fsd_c01182{font-size:70.048000pt;}
.fs13_c01182{font-size:70.576000pt;}
.fse_c01182{font-size:71.104176pt;}
.fs1f_c01182{font-size:73.216000pt;}
.fs19_c01182{font-size:75.328000pt;}
.fs1a_c01182{font-size:82.368000pt;}
.fs14_c01182{font-size:85.888000pt;}
.fsc_c01182{font-size:90.112176pt;}
.y0_c01182{bottom:0.000000pt;}
.y1_c01182{bottom:68.000000pt;}
.y16_c01182{bottom:144.065720pt;}
.y15_c01182{bottom:173.840520pt;}
.y17_c01182{bottom:227.700920pt;}
.y14_c01182{bottom:231.819320pt;}
.y13_c01182{bottom:288.838920pt;}
.y12_c01182{bottom:346.179720pt;}
.y11_c01182{bottom:374.379320pt;}
.y10_c01182{bottom:402.891320pt;}
.yf_c01182{bottom:458.648120pt;}
.yd_c01182{bottom:487.476920pt;}
.ye_c01182{bottom:488.106120pt;}
.yc_c01182{bottom:516.301320pt;}
.yb_c01182{bottom:572.691720pt;}
.ya_c01182{bottom:629.715720pt;}
.y9_c01182{bottom:686.106120pt;}
.y8_c01182{bottom:703.851320pt;}
.y7_c01182{bottom:742.500920pt;}
.y6_c01182{bottom:800.154120pt;}
.y5_c01182{bottom:829.304120pt;}
.y4_c01182{bottom:949.683720pt;}
.y3_c01182{bottom:956.336520pt;}
.y2_c01182{bottom:970.275720pt;}
.h4_c01182{height:18.567014pt;}
.h21_c01182{height:18.723375pt;}
.h9_c01182{height:31.572934pt;}
.h11_c01182{height:32.070415pt;}
.ha_c01182{height:34.602280pt;}
.h1c_c01182{height:37.134029pt;}
.h1e_c01182{height:58.038750pt;}
.h18_c01182{height:59.766094pt;}
.h10_c01182{height:60.575625pt;}
.hb_c01182{height:61.493438pt;}
.h16_c01182{height:61.980962pt;}
.h19_c01182{height:62.184375pt;}
.h12_c01182{height:62.530016pt;}
.h1d_c01182{height:63.145684pt;}
.h2_c01182{height:63.566250pt;}
.h5_c01182{height:64.246875pt;}
.h8_c01182{height:64.257360pt;}
.h6_c01182{height:65.293594pt;}
.h7_c01182{height:65.639063pt;}
.h13_c01182{height:65.984704pt;}
.h3_c01182{height:66.330173pt;}
.hc_c01182{height:66.449809pt;}
.h1f_c01182{height:68.057516pt;}
.h17_c01182{height:68.402813pt;}
.he_c01182{height:68.714078pt;}
.h15_c01182{height:69.266484pt;}
.hf_c01182{height:69.784860pt;}
.h20_c01182{height:71.857500pt;}
.h1a_c01182{height:73.930313pt;}
.h1b_c01182{height:80.839688pt;}
.h14_c01182{height:84.294375pt;}
.hd_c01182{height:88.440173pt;}
.h1_c01182{height:986.666667pt;}
.h0_c01182{height:1122.666667pt;}
.w1_c01182{width:689.333333pt;}
.w0_c01182{width:793.333333pt;}
.x0_c01182{left:0.000000pt;}
.x1_c01182{left:52.000000pt;}
.x33_c01182{left:73.169053pt;}
.x22_c01182{left:74.396653pt;}
.x14_c01182{left:75.391053pt;}
.x4_c01182{left:77.415053pt;}
.x4c_c01182{left:120.953053pt;}
.x2f_c01182{left:122.224653pt;}
.xb_c01182{left:123.131053pt;}
.x5_c01182{left:124.420253pt;}
.x34_c01182{left:152.193053pt;}
.x6_c01182{left:155.026653pt;}
.x30_c01182{left:161.257053pt;}
.x23_c01182{left:162.876253pt;}
.x47_c01182{left:171.500253pt;}
.x18_c01182{left:173.511053pt;}
.x3b_c01182{left:181.888653pt;}
.x31_c01182{left:190.970253pt;}
.x15_c01182{left:191.942653pt;}
.x24_c01182{left:198.111453pt;}
.x48_c01182{left:202.203453pt;}
.xc_c01182{left:203.193453pt;}
.x3c_c01182{left:211.377453pt;}
.x49_c01182{left:212.917453pt;}
.x35_c01182{left:220.159853pt;}
.x29_c01182{left:221.752653pt;}
.x1d_c01182{left:222.760253pt;}
.x4a_c01182{left:230.640653pt;}
.xd_c01182{left:232.717453pt;}
.x7_c01182{left:241.799053pt;}
.x1e_c01182{left:250.225053pt;}
.x32_c01182{left:251.734253pt;}
.x25_c01182{left:261.651853pt;}
.x46_c01182{left:271.485853pt;}
.x4d_c01182{left:278.851453pt;}
.x4b_c01182{left:279.951453pt;}
.x1f_c01182{left:281.676253pt;}
.x3d_c01182{left:290.634653pt;}
.xe_c01182{left:291.549853pt;}
.x36_c01182{left:300.437853pt;}
.x20_c01182{left:302.932653pt;}
.x26_c01182{left:309.506253pt;}
.x41_c01182{left:310.593053pt;}
.x3e_c01182{left:319.472253pt;}
.x21_c01182{left:320.941853pt;}
.x2a_c01182{left:338.968653pt;}
.x19_c01182{left:341.630653pt;}
.x27_c01182{left:342.765853pt;}
.x4e_c01182{left:349.761853pt;}
.x8_c01182{left:370.274653pt;}
.x42_c01182{left:379.285853pt;}
.x1a_c01182{left:380.504653pt;}
.x37_c01182{left:397.849453pt;}
.xf_c01182{left:400.229853pt;}
.x28_c01182{left:419.484253pt;}
.x38_c01182{left:428.095053pt;}
.x10_c01182{left:429.780253pt;}
.x4f_c01182{left:437.277853pt;}
.x1b_c01182{left:439.411853pt;}
.x2b_c01182{left:447.824653pt;}
.x43_c01182{left:449.241453pt;}
.x16_c01182{left:470.000653pt;}
.x44_c01182{left:477.045053pt;}
.x2c_c01182{left:478.752253pt;}
.x9_c01182{left:487.451053pt;}
.x1c_c01182{left:489.536653pt;}
.x50_c01182{left:505.706653pt;}
.x3f_c01182{left:506.890253pt;}
.x11_c01182{left:508.593053pt;}
.x2d_c01182{left:515.989453pt;}
.x12_c01182{left:537.404253pt;}
.x51_c01182{left:545.223053pt;}
.x40_c01182{left:556.654253pt;}
.xa_c01182{left:566.923853pt;}
.x45_c01182{left:568.609053pt;}
.x13_c01182{left:576.643453pt;}
.x39_c01182{left:586.499453pt;}
.x2e_c01182{left:605.775853pt;}
.x3a_c01182{left:615.601053pt;}
.x17_c01182{left:622.315453pt;}
.x2_c01182{left:624.137053pt;}
.x3_c01182{left:625.034653pt;}
}





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

.ir_c01183:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01183{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01183;src:url('chunks/assets/font_4da7c8443c3163318f65ebdd.woff2')format("woff");}.ff1_c01183{font-family:ff1_c01183;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01183;src:url('chunks/assets/font_18c6e46a4c6ee7c2ae34d7fb.woff2')format("woff");}.ff2_c01183{font-family:ff2_c01183;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01183;src:url('chunks/assets/font_24032e93eff47277b212280f.woff2')format("woff");}.ff3_c01183{font-family:ff3_c01183;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01183;src:url('chunks/assets/font_590cc0d7ba43de90dcf683d6.woff2')format("woff");}.ff4_c01183{font-family:ff4_c01183;line-height:0.666000;font-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_c01183{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m6d_c01183{transform:matrix(0.113783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113783,0.000000,0.000000,0.250000,0,0);}
.m73_c01183{transform:matrix(0.156944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156944,0.000000,0.000000,0.250000,0,0);}
.m71_c01183{transform:matrix(0.166666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166666,0.000000,0.000000,0.250000,0,0);}
.m86_c01183{transform:matrix(0.176087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176087,0.000000,0.000000,0.250000,0,0);}
.m6c_c01183{transform:matrix(0.227907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227907,0.000000,0.000000,0.250000,0,0);}
.m2f_c01183{transform:matrix(0.246046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246046,0.000000,0.000000,0.250000,0,0);}
.m5_c01183{transform:matrix(0.247057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247057,0.000000,0.000000,0.250000,0,0);}
.m76_c01183{transform:matrix(0.249829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249829,0.000000,0.000000,0.250000,0,0);}
.m1_c01183{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m52_c01183{transform:matrix(0.250338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250338,0.000000,0.000000,0.250000,0,0);}
.mf_c01183{transform:matrix(0.251876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251876,0.000000,0.000000,0.250000,0,0);}
.m26_c01183{transform:matrix(0.252831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252831,0.000000,0.000000,0.250000,0,0);}
.m0_c01183{transform:matrix(0.254056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254056,0.000000,0.000000,0.250000,0,0);}
.m70_c01183{transform:matrix(0.254517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254517,0.000000,0.000000,0.250000,0,0);}
.me_c01183{transform:matrix(0.254574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254574,0.000000,0.000000,0.250000,0,0);}
.m1d_c01183{transform:matrix(0.255557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255557,0.000000,0.000000,0.250000,0,0);}
.m89_c01183{transform:matrix(0.256654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256654,0.000000,0.000000,0.250000,0,0);}
.m4_c01183{transform:matrix(0.256692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256692,0.000000,0.000000,0.250000,0,0);}
.m32_c01183{transform:matrix(0.256737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256737,0.000000,0.000000,0.250000,0,0);}
.m6a_c01183{transform:matrix(0.257617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257617,0.000000,0.000000,0.250000,0,0);}
.m7b_c01183{transform:matrix(0.258177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258177,0.000000,0.000000,0.250000,0,0);}
.m4b_c01183{transform:matrix(0.259305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259305,0.000000,0.000000,0.250000,0,0);}
.m72_c01183{transform:matrix(0.261763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261763,0.000000,0.000000,0.250000,0,0);}
.m51_c01183{transform:matrix(0.266379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266379,0.000000,0.000000,0.250000,0,0);}
.m46_c01183{transform:matrix(0.267358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267358,0.000000,0.000000,0.250000,0,0);}
.m19_c01183{transform:matrix(0.267717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267717,0.000000,0.000000,0.250000,0,0);}
.m49_c01183{transform:matrix(0.268083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268083,0.000000,0.000000,0.250000,0,0);}
.m7a_c01183{transform:matrix(0.268278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268278,0.000000,0.000000,0.250000,0,0);}
.m4f_c01183{transform:matrix(0.269198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269198,0.000000,0.000000,0.250000,0,0);}
.m4a_c01183{transform:matrix(0.269483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269483,0.000000,0.000000,0.250000,0,0);}
.m40_c01183{transform:matrix(0.269567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269567,0.000000,0.000000,0.250000,0,0);}
.ma_c01183{transform:matrix(0.270287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270287,0.000000,0.000000,0.250000,0,0);}
.m59_c01183{transform:matrix(0.271958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271958,0.000000,0.000000,0.250000,0,0);}
.m23_c01183{transform:matrix(0.273274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273274,0.000000,0.000000,0.250000,0,0);}
.m4c_c01183{transform:matrix(0.273688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273688,0.000000,0.000000,0.250000,0,0);}
.m82_c01183{transform:matrix(0.273826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273826,0.000000,0.000000,0.250000,0,0);}
.m74_c01183{transform:matrix(0.274918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274918,0.000000,0.000000,0.250000,0,0);}
.m7_c01183{transform:matrix(0.275114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275114,0.000000,0.000000,0.250000,0,0);}
.m34_c01183{transform:matrix(0.275764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275764,0.000000,0.000000,0.250000,0,0);}
.m75_c01183{transform:matrix(0.276636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276636,0.000000,0.000000,0.250000,0,0);}
.m5e_c01183{transform:matrix(0.277861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277861,0.000000,0.000000,0.250000,0,0);}
.m3d_c01183{transform:matrix(0.278239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278239,0.000000,0.000000,0.250000,0,0);}
.m25_c01183{transform:matrix(0.280650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280650,0.000000,0.000000,0.250000,0,0);}
.m18_c01183{transform:matrix(0.282645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282645,0.000000,0.000000,0.250000,0,0);}
.m87_c01183{transform:matrix(0.282771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282771,0.000000,0.000000,0.250000,0,0);}
.m12_c01183{transform:matrix(0.283033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283033,0.000000,0.000000,0.250000,0,0);}
.m22_c01183{transform:matrix(0.283351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283351,0.000000,0.000000,0.250000,0,0);}
.m2_c01183{transform:matrix(0.283597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283597,0.000000,0.000000,0.250000,0,0);}
.m6_c01183{transform:matrix(0.283886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283886,0.000000,0.000000,0.250000,0,0);}
.m68_c01183{transform:matrix(0.286084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286084,0.000000,0.000000,0.250000,0,0);}
.m42_c01183{transform:matrix(0.286767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286767,0.000000,0.000000,0.250000,0,0);}
.m5b_c01183{transform:matrix(0.286848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286848,0.000000,0.000000,0.250000,0,0);}
.m6f_c01183{transform:matrix(0.286873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286873,0.000000,0.000000,0.250000,0,0);}
.m7e_c01183{transform:matrix(0.287367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287367,0.000000,0.000000,0.250000,0,0);}
.m8_c01183{transform:matrix(0.287377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287377,0.000000,0.000000,0.250000,0,0);}
.m6e_c01183{transform:matrix(0.288617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288617,0.000000,0.000000,0.250000,0,0);}
.m55_c01183{transform:matrix(0.288700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288700,0.000000,0.000000,0.250000,0,0);}
.md_c01183{transform:matrix(0.289193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289193,0.000000,0.000000,0.250000,0,0);}
.m8a_c01183{transform:matrix(0.289207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289207,0.000000,0.000000,0.250000,0,0);}
.mb_c01183{transform:matrix(0.289648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289648,0.000000,0.000000,0.250000,0,0);}
.m5c_c01183{transform:matrix(0.290507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290507,0.000000,0.000000,0.250000,0,0);}
.m1b_c01183{transform:matrix(0.291714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291714,0.000000,0.000000,0.250000,0,0);}
.m2d_c01183{transform:matrix(0.292329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292329,0.000000,0.000000,0.250000,0,0);}
.m63_c01183{transform:matrix(0.292866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292866,0.000000,0.000000,0.250000,0,0);}
.m3_c01183{transform:matrix(0.292893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292893,0.000000,0.000000,0.250000,0,0);}
.m10_c01183{transform:matrix(0.293802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293802,0.000000,0.000000,0.250000,0,0);}
.m6b_c01183{transform:matrix(0.293956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293956,0.000000,0.000000,0.250000,0,0);}
.m61_c01183{transform:matrix(0.294923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294923,0.000000,0.000000,0.250000,0,0);}
.m43_c01183{transform:matrix(0.295357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295357,0.000000,0.000000,0.250000,0,0);}
.m79_c01183{transform:matrix(0.295408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295408,0.000000,0.000000,0.250000,0,0);}
.m88_c01183{transform:matrix(0.295708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295708,0.000000,0.000000,0.250000,0,0);}
.m84_c01183{transform:matrix(0.296302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296302,0.000000,0.000000,0.250000,0,0);}
.m3b_c01183{transform:matrix(0.296834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296834,0.000000,0.000000,0.250000,0,0);}
.m5d_c01183{transform:matrix(0.296959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296959,0.000000,0.000000,0.250000,0,0);}
.m16_c01183{transform:matrix(0.298408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298408,0.000000,0.000000,0.250000,0,0);}
.m60_c01183{transform:matrix(0.298435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298435,0.000000,0.000000,0.250000,0,0);}
.m54_c01183{transform:matrix(0.298681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298681,0.000000,0.000000,0.250000,0,0);}
.m11_c01183{transform:matrix(0.298859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298859,0.000000,0.000000,0.250000,0,0);}
.m1a_c01183{transform:matrix(0.299059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299059,0.000000,0.000000,0.250000,0,0);}
.m2b_c01183{transform:matrix(0.299346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299346,0.000000,0.000000,0.250000,0,0);}
.m4e_c01183{transform:matrix(0.300397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300397,0.000000,0.000000,0.250000,0,0);}
.m27_c01183{transform:matrix(0.301532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301532,0.000000,0.000000,0.250000,0,0);}
.m64_c01183{transform:matrix(0.302944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302944,0.000000,0.000000,0.250000,0,0);}
.m2a_c01183{transform:matrix(0.304061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304061,0.000000,0.000000,0.250000,0,0);}
.m15_c01183{transform:matrix(0.304632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304632,0.000000,0.000000,0.250000,0,0);}
.m47_c01183{transform:matrix(0.304749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304749,0.000000,0.000000,0.250000,0,0);}
.m81_c01183{transform:matrix(0.304983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304983,0.000000,0.000000,0.250000,0,0);}
.m4d_c01183{transform:matrix(0.305824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305824,0.000000,0.000000,0.250000,0,0);}
.m31_c01183{transform:matrix(0.307316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307316,0.000000,0.000000,0.250000,0,0);}
.m48_c01183{transform:matrix(0.308494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308494,0.000000,0.000000,0.250000,0,0);}
.m3a_c01183{transform:matrix(0.308648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308648,0.000000,0.000000,0.250000,0,0);}
.m80_c01183{transform:matrix(0.309157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309157,0.000000,0.000000,0.250000,0,0);}
.m85_c01183{transform:matrix(0.310891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310891,0.000000,0.000000,0.250000,0,0);}
.m45_c01183{transform:matrix(0.310994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310994,0.000000,0.000000,0.250000,0,0);}
.m24_c01183{transform:matrix(0.311139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311139,0.000000,0.000000,0.250000,0,0);}
.m39_c01183{transform:matrix(0.311710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311710,0.000000,0.000000,0.250000,0,0);}
.m3e_c01183{transform:matrix(0.313609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313609,0.000000,0.000000,0.250000,0,0);}
.m13_c01183{transform:matrix(0.314037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314037,0.000000,0.000000,0.250000,0,0);}
.m41_c01183{transform:matrix(0.314157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314157,0.000000,0.000000,0.250000,0,0);}
.m9_c01183{transform:matrix(0.315126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315126,0.000000,0.000000,0.250000,0,0);}
.m28_c01183{transform:matrix(0.315166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315166,0.000000,0.000000,0.250000,0,0);}
.m56_c01183{transform:matrix(0.315173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315173,0.000000,0.000000,0.250000,0,0);}
.m67_c01183{transform:matrix(0.315175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315175,0.000000,0.000000,0.250000,0,0);}
.m53_c01183{transform:matrix(0.315850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315850,0.000000,0.000000,0.250000,0,0);}
.m7c_c01183{transform:matrix(0.315979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315979,0.000000,0.000000,0.250000,0,0);}
.m3c_c01183{transform:matrix(0.318059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318059,0.000000,0.000000,0.250000,0,0);}
.m1f_c01183{transform:matrix(0.319549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319549,0.000000,0.000000,0.250000,0,0);}
.m62_c01183{transform:matrix(0.320438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320438,0.000000,0.000000,0.250000,0,0);}
.m30_c01183{transform:matrix(0.322931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322931,0.000000,0.000000,0.250000,0,0);}
.m36_c01183{transform:matrix(0.324191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324191,0.000000,0.000000,0.250000,0,0);}
.m77_c01183{transform:matrix(0.325170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325170,0.000000,0.000000,0.250000,0,0);}
.m66_c01183{transform:matrix(0.325774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325774,0.000000,0.000000,0.250000,0,0);}
.m58_c01183{transform:matrix(0.329598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329598,0.000000,0.000000,0.250000,0,0);}
.mc_c01183{transform:matrix(0.334520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334520,0.000000,0.000000,0.250000,0,0);}
.m33_c01183{transform:matrix(0.335509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335509,0.000000,0.000000,0.250000,0,0);}
.m3f_c01183{transform:matrix(0.337919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337919,0.000000,0.000000,0.250000,0,0);}
.m50_c01183{transform:matrix(0.338602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338602,0.000000,0.000000,0.250000,0,0);}
.m78_c01183{transform:matrix(0.339294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339294,0.000000,0.000000,0.250000,0,0);}
.m5f_c01183{transform:matrix(0.341746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341746,0.000000,0.000000,0.250000,0,0);}
.m1c_c01183{transform:matrix(0.341936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341936,0.000000,0.000000,0.250000,0,0);}
.m21_c01183{transform:matrix(0.342875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342875,0.000000,0.000000,0.250000,0,0);}
.m2e_c01183{transform:matrix(0.343322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343322,0.000000,0.000000,0.250000,0,0);}
.m35_c01183{transform:matrix(0.345192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345192,0.000000,0.000000,0.250000,0,0);}
.m14_c01183{transform:matrix(0.345841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345841,0.000000,0.000000,0.250000,0,0);}
.m69_c01183{transform:matrix(0.346175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346175,0.000000,0.000000,0.250000,0,0);}
.m57_c01183{transform:matrix(0.348479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348479,0.000000,0.000000,0.250000,0,0);}
.m7d_c01183{transform:matrix(0.349341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349341,0.000000,0.000000,0.250000,0,0);}
.m38_c01183{transform:matrix(0.349475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349475,0.000000,0.000000,0.250000,0,0);}
.m2c_c01183{transform:matrix(0.349850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349850,0.000000,0.000000,0.250000,0,0);}
.m29_c01183{transform:matrix(0.350078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350078,0.000000,0.000000,0.250000,0,0);}
.m44_c01183{transform:matrix(0.354859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354859,0.000000,0.000000,0.250000,0,0);}
.m65_c01183{transform:matrix(0.358275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358275,0.000000,0.000000,0.250000,0,0);}
.m1e_c01183{transform:matrix(0.363409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363409,0.000000,0.000000,0.250000,0,0);}
.m5a_c01183{transform:matrix(0.378006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378006,0.000000,0.000000,0.250000,0,0);}
.m7f_c01183{transform:matrix(0.378568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378568,0.000000,0.000000,0.250000,0,0);}
.m17_c01183{transform:matrix(0.410659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410659,0.000000,0.000000,0.250000,0,0);}
.m37_c01183{transform:matrix(0.415310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415310,0.000000,0.000000,0.250000,0,0);}
.m20_c01183{transform:matrix(0.456391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456391,0.000000,0.000000,0.250000,0,0);}
.v1_c01183{vertical-align:-15.677640px;}
.v0_c01183{vertical-align:0.000000px;}
.v2_c01183{vertical-align:18.532800px;}
.ls8_c01183{letter-spacing:-3.007627px;}
.ls4_c01183{letter-spacing:-2.741237px;}
.lsc_c01183{letter-spacing:-2.626477px;}
.lse_c01183{letter-spacing:-1.314763px;}
.lsf_c01183{letter-spacing:-0.705397px;}
.ls7_c01183{letter-spacing:0.000000px;}
.ls9_c01183{letter-spacing:2.048434px;}
.ls2_c01183{letter-spacing:2.260017px;}
.lsd_c01183{letter-spacing:2.513914px;}
.ls15_c01183{letter-spacing:2.689678px;}
.ls6_c01183{letter-spacing:3.316500px;}
.lsa_c01183{letter-spacing:3.405610px;}
.lsb_c01183{letter-spacing:3.425400px;}
.ls13_c01183{letter-spacing:3.626339px;}
.ls5_c01183{letter-spacing:3.752110px;}
.ls10_c01183{letter-spacing:4.107559px;}
.ls16_c01183{letter-spacing:4.108500px;}
.ls11_c01183{letter-spacing:4.159118px;}
.ls0_c01183{letter-spacing:4.227864px;}
.ls3_c01183{letter-spacing:4.296610px;}
.ls1_c01183{letter-spacing:13.444101px;}
.ls12_c01183{letter-spacing:55.598598px;}
.ls14_c01183{letter-spacing:64.152198px;}
.ls17_c01183{letter-spacing:65.577798px;}
.sc__c01183{text-shadow:none;}
.sc0_c01183{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01183{-webkit-text-stroke:0px transparent;}
.sc0_c01183{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01183{word-spacing:-18.760550px;}
.ws0_c01183{word-spacing:-10.183140px;}
.ws2_c01183{word-spacing:0.000000px;}
._5_c01183{margin-left:-16.290130px;}
._6_c01183{margin-left:-7.648809px;}
._1_c01183{width:4.563831px;}
._2_c01183{width:7.203190px;}
._0_c01183{width:17.098948px;}
._3_c01183{width:41.817600px;}
._4_c01183{width:85.384981px;}
.fc0_c01183{color:transparent;}
.fs3_c01183{font-size:36.630000px;}
.fs10_c01183{font-size:45.936198px;}
.fs5_c01183{font-size:50.688000px;}
.fsc_c01183{font-size:55.598598px;}
.fsd_c01183{font-size:64.152198px;}
.fsf_c01183{font-size:65.577798px;}
.fsa_c01183{font-size:66.132198px;}
.fs2_c01183{font-size:66.330000px;}
.fs6_c01183{font-size:68.112198px;}
.fs8_c01183{font-size:68.508000px;}
.fsb_c01183{font-size:70.092198px;}
.fs9_c01183{font-size:74.448000px;}
.fs7_c01183{font-size:74.844000px;}
.fs1_c01183{font-size:75.042198px;}
.fse_c01183{font-size:82.170000px;}
.fs4_c01183{font-size:83.952198px;}
.fs0_c01183{font-size:85.932198px;}
.y0_c01183{bottom:0.000000px;}
.y1_c01183{bottom:76.500000px;}
.y18_c01183{bottom:161.717535px;}
.y17_c01183{bottom:194.506335px;}
.y16_c01183{bottom:228.007935px;}
.y15_c01183{bottom:292.154985px;}
.y14_c01183{bottom:323.523135px;}
.y13_c01183{bottom:387.670185px;}
.y12_c01183{bottom:420.107535px;}
.y11_c01183{bottom:452.896335px;}
.y10_c01183{bottom:515.622735px;}
.yf_c01183{bottom:549.119385px;}
.ye_c01183{bottom:582.269535px;}
.yd_c01183{bottom:645.703785px;}
.yc_c01183{bottom:677.784735px;}
.yb_c01183{bottom:708.435135px;}
.ya_c01183{bottom:740.862585px;}
.y9_c01183{bottom:772.938585px;}
.y8_c01183{bottom:805.727385px;}
.y7_c01183{bottom:833.531535px;}
.y6_c01183{bottom:837.446985px;}
.y4_c01183{bottom:869.171535px;}
.y5_c01183{bottom:873.086985px;}
.y3_c01183{bottom:933.318585px;}
.y2_c01183{bottom:1071.958185px;}
.he_c01183{height:37.028666px;}
.h5_c01183{height:38.203945px;}
.hf_c01183{height:42.725364px;}
.h11_c01183{height:43.674813px;}
.h7_c01183{height:52.866000px;}
.hc_c01183{height:68.973816px;}
.h4_c01183{height:69.180117px;}
.h8_c01183{height:71.038894px;}
.ha_c01183{height:71.451703px;}
.hb_c01183{height:73.066641px;}
.hd_c01183{height:73.103972px;}
.h9_c01183{height:73.455293px;}
.h3_c01183{height:73.649813px;}
.h10_c01183{height:80.645361px;}
.h6_c01183{height:82.394491px;}
.h2_c01183{height:84.337753px;}
.h1_c01183{height:1110.000000px;}
.h0_c01183{height:1263.000000px;}
.w1_c01183{width:775.500000px;}
.w0_c01183{width:892.500000px;}
.x0_c01183{left:0.000000px;}
.x1_c01183{left:58.500000px;}
.x40_c01183{left:87.052335px;}
.x8_c01183{left:88.839285px;}
.x3_c01183{left:89.903535px;}
.x9_c01183{left:108.866985px;}
.x47_c01183{left:141.616185px;}
.xa_c01183{left:142.853685px;}
.x4_c01183{left:154.609935px;}
.x3c_c01183{left:164.599035px;}
.x13_c01183{left:177.959085px;}
.x53_c01183{left:185.443485px;}
.x41_c01183{left:195.907785px;}
.x1c_c01183{left:198.229335px;}
.x4c_c01183{left:199.521285px;}
.x5_c01183{left:209.970735px;}
.x2a_c01183{left:219.484635px;}
.x2b_c01183{left:231.740835px;}
.xb_c01183{left:241.497285px;}
.x14_c01183{left:243.799035px;}
.x1d_c01183{left:251.852685px;}
.x6_c01183{left:254.203935px;}
.x32_c01183{left:255.367185px;}
.x23_c01183{left:264.490035px;}
.xc_c01183{left:276.221535px;}
.x4d_c01183{left:286.685835px;}
.x2c_c01183{left:287.725335px;}
.x48_c01183{left:289.081635px;}
.x5d_c01183{left:297.828285px;}
.x24_c01183{left:299.080635px;}
.x33_c01183{left:310.628985px;}
.x5c_c01183{left:318.563835px;}
.x4e_c01183{left:319.806285px;}
.x2d_c01183{left:320.811135px;}
.x62_c01183{left:321.870435px;}
.x1e_c01183{left:332.280285px;}
.x63_c01183{left:340.833885px;}
.x7_c01183{left:342.071385px;}
.x15_c01183{left:343.323735px;}
.x42_c01183{left:344.843385px;}
.x54_c01183{left:352.060485px;}
.x4b_c01183{left:353.659335px;}
.x58_c01183{left:363.876135px;}
.x4f_c01183{left:364.880985px;}
.x16_c01183{left:374.820585px;}
.x2e_c01183{left:376.830285px;}
.x1b_c01183{left:386.012535px;}
.x43_c01183{left:397.333185px;}
.xd_c01183{left:398.956785px;}
.x5e_c01183{left:407.297535px;}
.x25_c01183{left:408.549885px;}
.x17_c01183{left:410.272485px;}
.x34_c01183{left:421.023885px;}
.xe_c01183{left:430.513035px;}
.x2f_c01183{left:433.042485px;}
.x50_c01183{left:442.229685px;}
.x64_c01183{left:452.416785px;}
.x35_c01183{left:454.119585px;}
.x59_c01183{left:462.876135px;}
.x30_c01183{left:464.861085px;}
.xf_c01183{left:466.148085px;}
.x44_c01183{left:475.939185px;}
.x55_c01183{left:484.596735px;}
.x36_c01183{left:486.626235px;}
.x39_c01183{left:487.700385px;}
.x26_c01183{left:498.719085px;}
.x18_c01183{left:508.529985px;}
.x5f_c01183{left:518.192385px;}
.x3d_c01183{left:529.824885px;}
.x27_c01183{left:531.403935px;}
.x51_c01183{left:532.859235px;}
.x10_c01183{left:533.883885px;}
.x65_c01183{left:539.903085px;}
.x5a_c01183{left:541.363335px;}
.x1f_c01183{left:551.599935px;}
.x3a_c01183{left:553.555185px;}
.x37_c01183{left:564.613485px;}
.x56_c01183{left:574.107585px;}
.x52_c01183{left:584.007585px;}
.x31_c01183{left:585.507435px;}
.x20_c01183{left:596.362785px;}
.x28_c01183{left:606.832035px;}
.x45_c01183{left:608.841735px;}
.x66_c01183{left:616.098435px;}
.x3e_c01183{left:619.944585px;}
.x11_c01183{left:629.334735px;}
.x19_c01183{left:630.923685px;}
.x21_c01183{left:640.383135px;}
.x5b_c01183{left:650.654385px;}
.x49_c01183{left:651.901785px;}
.x60_c01183{left:660.381135px;}
.x38_c01183{left:663.761985px;}
.x1a_c01183{left:675.052935px;}
.x4a_c01183{left:676.166685px;}
.x29_c01183{left:677.201235px;}
.x46_c01183{left:684.764835px;}
.x57_c01183{left:686.175585px;}
.x61_c01183{left:692.476935px;}
.x12_c01183{left:696.367635px;}
.x3b_c01183{left:697.852635px;}
.x67_c01183{left:705.619185px;}
.x22_c01183{left:707.411085px;}
.x2_c01183{left:709.673235px;}
.x3f_c01183{left:718.256535px;}
@media print{
.v1_c01183{vertical-align:-13.935680pt;}
.v0_c01183{vertical-align:0.000000pt;}
.v2_c01183{vertical-align:16.473600pt;}
.ls8_c01183{letter-spacing:-2.673446pt;}
.ls4_c01183{letter-spacing:-2.436655pt;}
.lsc_c01183{letter-spacing:-2.334646pt;}
.lse_c01183{letter-spacing:-1.168678pt;}
.lsf_c01183{letter-spacing:-0.627019pt;}
.ls7_c01183{letter-spacing:0.000000pt;}
.ls9_c01183{letter-spacing:1.820830pt;}
.ls2_c01183{letter-spacing:2.008904pt;}
.lsd_c01183{letter-spacing:2.234590pt;}
.ls15_c01183{letter-spacing:2.390825pt;}
.ls6_c01183{letter-spacing:2.948000pt;}
.lsa_c01183{letter-spacing:3.027209pt;}
.lsb_c01183{letter-spacing:3.044800pt;}
.ls13_c01183{letter-spacing:3.223412pt;}
.ls5_c01183{letter-spacing:3.335209pt;}
.ls10_c01183{letter-spacing:3.651164pt;}
.ls16_c01183{letter-spacing:3.652000pt;}
.ls11_c01183{letter-spacing:3.696994pt;}
.ls0_c01183{letter-spacing:3.758101pt;}
.ls3_c01183{letter-spacing:3.819209pt;}
.ls1_c01183{letter-spacing:11.950312pt;}
.ls12_c01183{letter-spacing:49.420976pt;}
.ls14_c01183{letter-spacing:57.024176pt;}
.ls17_c01183{letter-spacing:58.291376pt;}
.ws1_c01183{word-spacing:-16.676044pt;}
.ws0_c01183{word-spacing:-9.051680pt;}
.ws2_c01183{word-spacing:0.000000pt;}
._5_c01183{margin-left:-14.480115pt;}
._6_c01183{margin-left:-6.798942pt;}
._1_c01183{width:4.056738pt;}
._2_c01183{width:6.402836pt;}
._0_c01183{width:15.199065pt;}
._3_c01183{width:37.171200pt;}
._4_c01183{width:75.897761pt;}
.fs3_c01183{font-size:32.560000pt;}
.fs10_c01183{font-size:40.832176pt;}
.fs5_c01183{font-size:45.056000pt;}
.fsc_c01183{font-size:49.420976pt;}
.fsd_c01183{font-size:57.024176pt;}
.fsf_c01183{font-size:58.291376pt;}
.fsa_c01183{font-size:58.784176pt;}
.fs2_c01183{font-size:58.960000pt;}
.fs6_c01183{font-size:60.544176pt;}
.fs8_c01183{font-size:60.896000pt;}
.fsb_c01183{font-size:62.304176pt;}
.fs9_c01183{font-size:66.176000pt;}
.fs7_c01183{font-size:66.528000pt;}
.fs1_c01183{font-size:66.704176pt;}
.fse_c01183{font-size:73.040000pt;}
.fs4_c01183{font-size:74.624176pt;}
.fs0_c01183{font-size:76.384176pt;}
.y0_c01183{bottom:0.000000pt;}
.y1_c01183{bottom:68.000000pt;}
.y18_c01183{bottom:143.748920pt;}
.y17_c01183{bottom:172.894520pt;}
.y16_c01183{bottom:202.673720pt;}
.y15_c01183{bottom:259.693320pt;}
.y14_c01183{bottom:287.576120pt;}
.y13_c01183{bottom:344.595720pt;}
.y12_c01183{bottom:373.428920pt;}
.y11_c01183{bottom:402.574520pt;}
.y10_c01183{bottom:458.331320pt;}
.yf_c01183{bottom:488.106120pt;}
.ye_c01183{bottom:517.572920pt;}
.yd_c01183{bottom:573.958920pt;}
.yc_c01183{bottom:602.475320pt;}
.yb_c01183{bottom:629.720120pt;}
.ya_c01183{bottom:658.544520pt;}
.y9_c01183{bottom:687.056520pt;}
.y8_c01183{bottom:716.202120pt;}
.y7_c01183{bottom:740.916920pt;}
.y6_c01183{bottom:744.397320pt;}
.y4_c01183{bottom:772.596920pt;}
.y5_c01183{bottom:776.077320pt;}
.y3_c01183{bottom:829.616520pt;}
.y2_c01183{bottom:952.851720pt;}
.he_c01183{height:32.914370pt;}
.h5_c01183{height:33.959063pt;}
.hf_c01183{height:37.978101pt;}
.h11_c01183{height:38.822056pt;}
.h7_c01183{height:46.992000pt;}
.hc_c01183{height:61.310059pt;}
.h4_c01183{height:61.493438pt;}
.h8_c01183{height:63.145684pt;}
.ha_c01183{height:63.512625pt;}
.hb_c01183{height:64.948125pt;}
.hd_c01183{height:64.981309pt;}
.h9_c01183{height:65.293594pt;}
.h3_c01183{height:65.466501pt;}
.h10_c01183{height:71.684766pt;}
.h6_c01183{height:73.239548pt;}
.h2_c01183{height:74.966891pt;}
.h1_c01183{height:986.666667pt;}
.h0_c01183{height:1122.666667pt;}
.w1_c01183{width:689.333333pt;}
.w0_c01183{width:793.333333pt;}
.x0_c01183{left:0.000000pt;}
.x1_c01183{left:52.000000pt;}
.x40_c01183{left:77.379853pt;}
.x8_c01183{left:78.968253pt;}
.x3_c01183{left:79.914253pt;}
.x9_c01183{left:96.770653pt;}
.x47_c01183{left:125.881053pt;}
.xa_c01183{left:126.981053pt;}
.x4_c01183{left:137.431053pt;}
.x3c_c01183{left:146.310253pt;}
.x13_c01183{left:158.185853pt;}
.x53_c01183{left:164.838653pt;}
.x41_c01183{left:174.140253pt;}
.x1c_c01183{left:176.203853pt;}
.x4c_c01183{left:177.352253pt;}
.x5_c01183{left:186.640653pt;}
.x2a_c01183{left:195.097453pt;}
.x2b_c01183{left:205.991853pt;}
.xb_c01183{left:214.664253pt;}
.x14_c01183{left:216.710253pt;}
.x1d_c01183{left:223.869053pt;}
.x6_c01183{left:225.959053pt;}
.x32_c01183{left:226.993053pt;}
.x23_c01183{left:235.102253pt;}
.xc_c01183{left:245.530253pt;}
.x4d_c01183{left:254.831853pt;}
.x2c_c01183{left:255.755853pt;}
.x48_c01183{left:256.961453pt;}
.x5d_c01183{left:264.736253pt;}
.x24_c01183{left:265.849453pt;}
.x33_c01183{left:276.114653pt;}
.x5c_c01183{left:283.167853pt;}
.x4e_c01183{left:284.272253pt;}
.x2d_c01183{left:285.165453pt;}
.x62_c01183{left:286.107053pt;}
.x1e_c01183{left:295.360253pt;}
.x63_c01183{left:302.963453pt;}
.x7_c01183{left:304.063453pt;}
.x15_c01183{left:305.176653pt;}
.x42_c01183{left:306.527453pt;}
.x54_c01183{left:312.942653pt;}
.x4b_c01183{left:314.363853pt;}
.x58_c01183{left:323.445453pt;}
.x4f_c01183{left:324.338653pt;}
.x16_c01183{left:333.173853pt;}
.x2e_c01183{left:334.960253pt;}
.x1b_c01183{left:343.122253pt;}
.x43_c01183{left:353.185053pt;}
.xd_c01183{left:354.628253pt;}
.x5e_c01183{left:362.042253pt;}
.x25_c01183{left:363.155453pt;}
.x17_c01183{left:364.686653pt;}
.x34_c01183{left:374.243453pt;}
.xe_c01183{left:382.678253pt;}
.x2f_c01183{left:384.926653pt;}
.x50_c01183{left:393.093053pt;}
.x64_c01183{left:402.148253pt;}
.x35_c01183{left:403.661853pt;}
.x59_c01183{left:411.445453pt;}
.x30_c01183{left:413.209853pt;}
.xf_c01183{left:414.353853pt;}
.x44_c01183{left:423.057053pt;}
.x55_c01183{left:430.752653pt;}
.x36_c01183{left:432.556653pt;}
.x39_c01183{left:433.511453pt;}
.x26_c01183{left:443.305853pt;}
.x18_c01183{left:452.026653pt;}
.x5f_c01183{left:460.615453pt;}
.x3d_c01183{left:470.955453pt;}
.x27_c01183{left:472.359053pt;}
.x51_c01183{left:473.652653pt;}
.x10_c01183{left:474.563453pt;}
.x65_c01183{left:479.913853pt;}
.x5a_c01183{left:481.211853pt;}
.x1f_c01183{left:490.311053pt;}
.x3a_c01183{left:492.049053pt;}
.x37_c01183{left:501.878653pt;}
.x56_c01183{left:510.317853pt;}
.x52_c01183{left:519.117853pt;}
.x31_c01183{left:520.451053pt;}
.x20_c01183{left:530.100253pt;}
.x28_c01183{left:539.406253pt;}
.x45_c01183{left:541.192653pt;}
.x66_c01183{left:547.643053pt;}
.x3e_c01183{left:551.061853pt;}
.x11_c01183{left:559.408653pt;}
.x19_c01183{left:560.821053pt;}
.x21_c01183{left:569.229453pt;}
.x5b_c01183{left:578.359453pt;}
.x49_c01183{left:579.468253pt;}
.x60_c01183{left:587.005453pt;}
.x38_c01183{left:590.010653pt;}
.x1a_c01183{left:600.047053pt;}
.x4a_c01183{left:601.037053pt;}
.x29_c01183{left:601.956653pt;}
.x46_c01183{left:608.679853pt;}
.x57_c01183{left:609.933853pt;}
.x61_c01183{left:615.535053pt;}
.x12_c01183{left:618.993453pt;}
.x3b_c01183{left:620.313453pt;}
.x67_c01183{left:627.217053pt;}
.x22_c01183{left:628.809853pt;}
.x2_c01183{left:630.820653pt;}
.x3f_c01183{left:638.450253pt;}
}





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

.ir_c01184:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01184{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01184;src:url('chunks/assets/font_ec324fe10e5d744e81648da3.woff2')format("woff");}.ff1_c01184{font-family:ff1_c01184;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01184;src:url('chunks/assets/font_cd5e4ecee40199ce275b2a9d.woff2')format("woff");}.ff2_c01184{font-family:ff2_c01184;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01184;src:url('chunks/assets/font_5e606ec5471fbbc06450008e.woff2')format("woff");}.ff3_c01184{font-family:ff3_c01184;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01184;src:url('chunks/assets/font_ad12c74010c105f728919d01.woff2')format("woff");}.ff4_c01184{font-family:ff4_c01184;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01184;src:url('chunks/assets/font_7f15953fa8010f18c45c7ddc.woff2')format("woff");}.ff5_c01184{font-family:ff5_c01184;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m52_c01184{transform:matrix(0.044533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.044533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.044533,0.000000,0.000000,0.250000,0,0);}
.m53_c01184{transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01184{transform:matrix(0.129604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129604,0.000000,0.000000,0.250000,0,0);}
.m1c_c01184{transform:matrix(0.150313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150313,0.000000,0.000000,0.250000,0,0);}
.m51_c01184{transform:matrix(0.152004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152004,0.000000,0.000000,0.250000,0,0);}
.m32_c01184{transform:matrix(0.159518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159518,0.000000,0.000000,0.250000,0,0);}
.m19_c01184{transform:matrix(0.168223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168223,0.000000,0.000000,0.250000,0,0);}
.m43_c01184{transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);}
.m54_c01184{transform:matrix(0.173334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173334,0.000000,0.000000,0.250000,0,0);}
.m9_c01184{transform:matrix(0.176339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176339,0.000000,0.000000,0.250000,0,0);}
.m8b_c01184{transform:matrix(0.177982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177982,0.000000,0.000000,0.250000,0,0);}
.m2d_c01184{transform:matrix(0.182926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182926,0.000000,0.000000,0.250000,0,0);}
.m74_c01184{transform:matrix(0.211110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211110,0.000000,0.000000,0.250000,0,0);}
.m71_c01184{transform:matrix(0.218539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218539,0.000000,0.000000,0.250000,0,0);}
.m0_c01184{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m45_c01184{transform:matrix(0.250258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250258,0.000000,0.000000,0.250000,0,0);}
.m8f_c01184{transform:matrix(0.252885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252885,0.000000,0.000000,0.250000,0,0);}
.m75_c01184{transform:matrix(0.254400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254400,0.000000,0.000000,0.250000,0,0);}
.m1a_c01184{transform:matrix(0.254654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254654,0.000000,0.000000,0.250000,0,0);}
.m31_c01184{transform:matrix(0.255504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255504,0.000000,0.000000,0.250000,0,0);}
.m4e_c01184{transform:matrix(0.255548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255548,0.000000,0.000000,0.250000,0,0);}
.m5b_c01184{transform:matrix(0.256113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256113,0.000000,0.000000,0.250000,0,0);}
.m8_c01184{transform:matrix(0.258346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258346,0.000000,0.000000,0.250000,0,0);}
.m2_c01184{transform:matrix(0.259765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259765,0.000000,0.000000,0.250000,0,0);}
.m6_c01184{transform:matrix(0.260479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260479,0.000000,0.000000,0.250000,0,0);}
.m6d_c01184{transform:matrix(0.263348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263348,0.000000,0.000000,0.250000,0,0);}
.m2f_c01184{transform:matrix(0.263656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263656,0.000000,0.000000,0.250000,0,0);}
.md_c01184{transform:matrix(0.264118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264118,0.000000,0.000000,0.250000,0,0);}
.m7e_c01184{transform:matrix(0.265567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265567,0.000000,0.000000,0.250000,0,0);}
.m14_c01184{transform:matrix(0.265621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265621,0.000000,0.000000,0.250000,0,0);}
.m30_c01184{transform:matrix(0.266601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266601,0.000000,0.000000,0.250000,0,0);}
.m88_c01184{transform:matrix(0.268077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268077,0.000000,0.000000,0.250000,0,0);}
.m85_c01184{transform:matrix(0.269009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269009,0.000000,0.000000,0.250000,0,0);}
.m50_c01184{transform:matrix(0.269573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269573,0.000000,0.000000,0.250000,0,0);}
.m5_c01184{transform:matrix(0.270478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270478,0.000000,0.000000,0.250000,0,0);}
.m11_c01184{transform:matrix(0.271257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271257,0.000000,0.000000,0.250000,0,0);}
.m18_c01184{transform:matrix(0.273900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273900,0.000000,0.000000,0.250000,0,0);}
.m67_c01184{transform:matrix(0.274390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274390,0.000000,0.000000,0.250000,0,0);}
.m7f_c01184{transform:matrix(0.274429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274429,0.000000,0.000000,0.250000,0,0);}
.m42_c01184{transform:matrix(0.275146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275146,0.000000,0.000000,0.250000,0,0);}
.m21_c01184{transform:matrix(0.275769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275769,0.000000,0.000000,0.250000,0,0);}
.m7d_c01184{transform:matrix(0.276113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276113,0.000000,0.000000,0.250000,0,0);}
.m44_c01184{transform:matrix(0.276947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276947,0.000000,0.000000,0.250000,0,0);}
.m5a_c01184{transform:matrix(0.277157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277157,0.000000,0.000000,0.250000,0,0);}
.m5d_c01184{transform:matrix(0.277390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277390,0.000000,0.000000,0.250000,0,0);}
.m82_c01184{transform:matrix(0.277965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277965,0.000000,0.000000,0.250000,0,0);}
.m40_c01184{transform:matrix(0.278451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278451,0.000000,0.000000,0.250000,0,0);}
.m12_c01184{transform:matrix(0.278771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278771,0.000000,0.000000,0.250000,0,0);}
.m78_c01184{transform:matrix(0.278792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278792,0.000000,0.000000,0.250000,0,0);}
.m79_c01184{transform:matrix(0.279328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279328,0.000000,0.000000,0.250000,0,0);}
.m5c_c01184{transform:matrix(0.280219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280219,0.000000,0.000000,0.250000,0,0);}
.m36_c01184{transform:matrix(0.281633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281633,0.000000,0.000000,0.250000,0,0);}
.m23_c01184{transform:matrix(0.282293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282293,0.000000,0.000000,0.250000,0,0);}
.me_c01184{transform:matrix(0.282394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282394,0.000000,0.000000,0.250000,0,0);}
.m63_c01184{transform:matrix(0.282968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282968,0.000000,0.000000,0.250000,0,0);}
.m5e_c01184{transform:matrix(0.283683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283683,0.000000,0.000000,0.250000,0,0);}
.m22_c01184{transform:matrix(0.286500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01184{transform:matrix(0.286806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286806,0.000000,0.000000,0.250000,0,0);}
.m8c_c01184{transform:matrix(0.286817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286817,0.000000,0.000000,0.250000,0,0);}
.m7_c01184{transform:matrix(0.288474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288474,0.000000,0.000000,0.250000,0,0);}
.m69_c01184{transform:matrix(0.288790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288790,0.000000,0.000000,0.250000,0,0);}
.m55_c01184{transform:matrix(0.289420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289420,0.000000,0.000000,0.250000,0,0);}
.m70_c01184{transform:matrix(0.289932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289932,0.000000,0.000000,0.250000,0,0);}
.m37_c01184{transform:matrix(0.290308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290308,0.000000,0.000000,0.250000,0,0);}
.m76_c01184{transform:matrix(0.290793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290793,0.000000,0.000000,0.250000,0,0);}
.m89_c01184{transform:matrix(0.291549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291549,0.000000,0.000000,0.250000,0,0);}
.m2e_c01184{transform:matrix(0.291691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291691,0.000000,0.000000,0.250000,0,0);}
.m4a_c01184{transform:matrix(0.291762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291762,0.000000,0.000000,0.250000,0,0);}
.m73_c01184{transform:matrix(0.292337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292337,0.000000,0.000000,0.250000,0,0);}
.m1_c01184{transform:matrix(0.292357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292357,0.000000,0.000000,0.250000,0,0);}
.m80_c01184{transform:matrix(0.292475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292475,0.000000,0.000000,0.250000,0,0);}
.m39_c01184{transform:matrix(0.292592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292592,0.000000,0.000000,0.250000,0,0);}
.m81_c01184{transform:matrix(0.292606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292606,0.000000,0.000000,0.250000,0,0);}
.m77_c01184{transform:matrix(0.293007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293007,0.000000,0.000000,0.250000,0,0);}
.m34_c01184{transform:matrix(0.293039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293039,0.000000,0.000000,0.250000,0,0);}
.m58_c01184{transform:matrix(0.293073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293073,0.000000,0.000000,0.250000,0,0);}
.m6f_c01184{transform:matrix(0.293391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293391,0.000000,0.000000,0.250000,0,0);}
.m47_c01184{transform:matrix(0.294200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294200,0.000000,0.000000,0.250000,0,0);}
.m65_c01184{transform:matrix(0.294456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294456,0.000000,0.000000,0.250000,0,0);}
.m61_c01184{transform:matrix(0.295339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295339,0.000000,0.000000,0.250000,0,0);}
.m7c_c01184{transform:matrix(0.295414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295414,0.000000,0.000000,0.250000,0,0);}
.m59_c01184{transform:matrix(0.297438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297438,0.000000,0.000000,0.250000,0,0);}
.m3f_c01184{transform:matrix(0.298409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298409,0.000000,0.000000,0.250000,0,0);}
.m87_c01184{transform:matrix(0.299007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299007,0.000000,0.000000,0.250000,0,0);}
.m64_c01184{transform:matrix(0.300952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300952,0.000000,0.000000,0.250000,0,0);}
.m8e_c01184{transform:matrix(0.300979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300979,0.000000,0.000000,0.250000,0,0);}
.m46_c01184{transform:matrix(0.301084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301084,0.000000,0.000000,0.250000,0,0);}
.m68_c01184{transform:matrix(0.302674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302674,0.000000,0.000000,0.250000,0,0);}
.m3b_c01184{transform:matrix(0.303347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303347,0.000000,0.000000,0.250000,0,0);}
.m1e_c01184{transform:matrix(0.304172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304172,0.000000,0.000000,0.250000,0,0);}
.m60_c01184{transform:matrix(0.304339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304339,0.000000,0.000000,0.250000,0,0);}
.ma_c01184{transform:matrix(0.304434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304434,0.000000,0.000000,0.250000,0,0);}
.m7b_c01184{transform:matrix(0.306546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306546,0.000000,0.000000,0.250000,0,0);}
.m10_c01184{transform:matrix(0.308971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308971,0.000000,0.000000,0.250000,0,0);}
.m3_c01184{transform:matrix(0.309481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309481,0.000000,0.000000,0.250000,0,0);}
.m57_c01184{transform:matrix(0.309797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309797,0.000000,0.000000,0.250000,0,0);}
.m33_c01184{transform:matrix(0.311861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311861,0.000000,0.000000,0.250000,0,0);}
.m38_c01184{transform:matrix(0.312632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312632,0.000000,0.000000,0.250000,0,0);}
.m3d_c01184{transform:matrix(0.313565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313565,0.000000,0.000000,0.250000,0,0);}
.m6e_c01184{transform:matrix(0.313738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313738,0.000000,0.000000,0.250000,0,0);}
.m29_c01184{transform:matrix(0.315351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315351,0.000000,0.000000,0.250000,0,0);}
.m15_c01184{transform:matrix(0.315474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315474,0.000000,0.000000,0.250000,0,0);}
.m66_c01184{transform:matrix(0.315523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315523,0.000000,0.000000,0.250000,0,0);}
.m7a_c01184{transform:matrix(0.316242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316242,0.000000,0.000000,0.250000,0,0);}
.m1f_c01184{transform:matrix(0.317111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317111,0.000000,0.000000,0.250000,0,0);}
.m72_c01184{transform:matrix(0.317766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317766,0.000000,0.000000,0.250000,0,0);}
.m3e_c01184{transform:matrix(0.321289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321289,0.000000,0.000000,0.250000,0,0);}
.m48_c01184{transform:matrix(0.322270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322270,0.000000,0.000000,0.250000,0,0);}
.m83_c01184{transform:matrix(0.322400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322400,0.000000,0.000000,0.250000,0,0);}
.m20_c01184{transform:matrix(0.322521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322521,0.000000,0.000000,0.250000,0,0);}
.m62_c01184{transform:matrix(0.323889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323889,0.000000,0.000000,0.250000,0,0);}
.m13_c01184{transform:matrix(0.323930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323930,0.000000,0.000000,0.250000,0,0);}
.m49_c01184{transform:matrix(0.326650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326650,0.000000,0.000000,0.250000,0,0);}
.m2a_c01184{transform:matrix(0.327457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327457,0.000000,0.000000,0.250000,0,0);}
.m84_c01184{transform:matrix(0.327678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327678,0.000000,0.000000,0.250000,0,0);}
.m1b_c01184{transform:matrix(0.330720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330720,0.000000,0.000000,0.250000,0,0);}
.m1d_c01184{transform:matrix(0.333941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333941,0.000000,0.000000,0.250000,0,0);}
.m56_c01184{transform:matrix(0.334180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334180,0.000000,0.000000,0.250000,0,0);}
.m35_c01184{transform:matrix(0.334423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334423,0.000000,0.000000,0.250000,0,0);}
.m86_c01184{transform:matrix(0.338619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338619,0.000000,0.000000,0.250000,0,0);}
.m6b_c01184{transform:matrix(0.340795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340795,0.000000,0.000000,0.250000,0,0);}
.m2c_c01184{transform:matrix(0.342254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342254,0.000000,0.000000,0.250000,0,0);}
.m4f_c01184{transform:matrix(0.344261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344261,0.000000,0.000000,0.250000,0,0);}
.m17_c01184{transform:matrix(0.345650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345650,0.000000,0.000000,0.250000,0,0);}
.m27_c01184{transform:matrix(0.346095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346095,0.000000,0.000000,0.250000,0,0);}
.m26_c01184{transform:matrix(0.348083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348083,0.000000,0.000000,0.250000,0,0);}
.mf_c01184{transform:matrix(0.348629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348629,0.000000,0.000000,0.250000,0,0);}
.m4c_c01184{transform:matrix(0.350196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350196,0.000000,0.000000,0.250000,0,0);}
.m6a_c01184{transform:matrix(0.350803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350803,0.000000,0.000000,0.250000,0,0);}
.m3c_c01184{transform:matrix(0.352400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352400,0.000000,0.000000,0.250000,0,0);}
.m8a_c01184{transform:matrix(0.355345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355345,0.000000,0.000000,0.250000,0,0);}
.m24_c01184{transform:matrix(0.358819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358819,0.000000,0.000000,0.250000,0,0);}
.mb_c01184{transform:matrix(0.359239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359239,0.000000,0.000000,0.250000,0,0);}
.m25_c01184{transform:matrix(0.361750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361750,0.000000,0.000000,0.250000,0,0);}
.mc_c01184{transform:matrix(0.361980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361980,0.000000,0.000000,0.250000,0,0);}
.m16_c01184{transform:matrix(0.363472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363472,0.000000,0.000000,0.250000,0,0);}
.m2b_c01184{transform:matrix(0.400826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400826,0.000000,0.000000,0.250000,0,0);}
.m28_c01184{transform:matrix(0.401732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401732,0.000000,0.000000,0.250000,0,0);}
.m8d_c01184{transform:matrix(0.407540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407540,0.000000,0.000000,0.250000,0,0);}
.m5f_c01184{transform:matrix(0.408109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408109,0.000000,0.000000,0.250000,0,0);}
.m4d_c01184{transform:matrix(0.409659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409659,0.000000,0.000000,0.250000,0,0);}
.m4_c01184{transform:matrix(0.410409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410409,0.000000,0.000000,0.250000,0,0);}
.m41_c01184{transform:matrix(0.416149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416149,0.000000,0.000000,0.250000,0,0);}
.m6c_c01184{transform:matrix(0.458444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458444,0.000000,0.000000,0.250000,0,0);}
.v0_c01184{vertical-align:0.000000px;}
.lsf_c01184{letter-spacing:-3.257100px;}
.ls7_c01184{letter-spacing:-2.591827px;}
.ls13_c01184{letter-spacing:-2.453227px;}
.lsd_c01184{letter-spacing:-1.316700px;}
.ls14_c01184{letter-spacing:-1.275120px;}
.ls3_c01184{letter-spacing:0.000000px;}
.ls2_c01184{letter-spacing:1.954978px;}
.ls12_c01184{letter-spacing:2.584422px;}
.ls0_c01184{letter-spacing:3.120171px;}
.ls15_c01184{letter-spacing:3.227400px;}
.ls8_c01184{letter-spacing:3.273107px;}
.lse_c01184{letter-spacing:3.395700px;}
.lsa_c01184{letter-spacing:3.534310px;}
.ls4_c01184{letter-spacing:3.702610px;}
.lsb_c01184{letter-spacing:3.801610px;}
.ls5_c01184{letter-spacing:3.880810px;}
.ls11_c01184{letter-spacing:4.257000px;}
.ls1_c01184{letter-spacing:4.815360px;}
.lsc_c01184{letter-spacing:57.024198px;}
.ls9_c01184{letter-spacing:58.449798px;}
.ls6_c01184{letter-spacing:59.875398px;}
.ls10_c01184{letter-spacing:64.152198px;}
.sc__c01184{text-shadow:none;}
.sc0_c01184{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01184{-webkit-text-stroke:0px transparent;}
.sc0_c01184{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01184{word-spacing:-18.513050px;}
.ws1_c01184{word-spacing:0.000000px;}
._8_c01184{margin-left:-30.657627px;}
._3_c01184{margin-left:-17.977410px;}
._4_c01184{margin-left:-13.939907px;}
._7_c01184{margin-left:-10.585624px;}
._6_c01184{margin-left:-5.998349px;}
._5_c01184{margin-left:-1.707621px;}
._2_c01184{width:6.447870px;}
._0_c01184{width:9.108506px;}
._a_c01184{width:12.218679px;}
._1_c01184{width:27.325133px;}
._9_c01184{width:36.418120px;}
.fc0_c01184{color:transparent;}
.fs13_c01184{font-size:27.720000px;}
.fs1a_c01184{font-size:33.264000px;}
.fs2_c01184{font-size:33.660000px;}
.fs17_c01184{font-size:36.432000px;}
.fs6_c01184{font-size:44.352000px;}
.fs18_c01184{font-size:50.688000px;}
.fsc_c01184{font-size:57.024198px;}
.fs8_c01184{font-size:58.449798px;}
.fs5_c01184{font-size:59.875398px;}
.fs12_c01184{font-size:64.152198px;}
.fs19_c01184{font-size:64.548000px;}
.fsd_c01184{font-size:66.330000px;}
.fs10_c01184{font-size:67.914000px;}
.fs9_c01184{font-size:68.706198px;}
.fs16_c01184{font-size:70.092198px;}
.fsa_c01184{font-size:70.686198px;}
.fs1_c01184{font-size:74.052198px;}
.fsf_c01184{font-size:74.844000px;}
.fse_c01184{font-size:75.240000px;}
.fsb_c01184{font-size:76.032198px;}
.fs3_c01184{font-size:77.616198px;}
.fs4_c01184{font-size:78.804000px;}
.fs14_c01184{font-size:79.200000px;}
.fs15_c01184{font-size:85.140000px;}
.fs0_c01184{font-size:86.328000px;}
.fs11_c01184{font-size:93.060000px;}
.fs7_c01184{font-size:99.198000px;}
.y0_c01184{bottom:0.000000px;}
.y1_c01184{bottom:73.500000px;}
.y19_c01184{bottom:136.913385px;}
.y1a_c01184{bottom:142.620735px;}
.y18_c01184{bottom:169.350735px;}
.y17_c01184{bottom:234.566985px;}
.y16_c01184{bottom:266.642985px;}
.y15_c01184{bottom:329.374335px;}
.y14_c01184{bottom:362.870985px;}
.y13_c01184{bottom:395.659785px;}
.y1b_c01184{bottom:443.417385px;}
.y12_c01184{bottom:459.816735px;}
.y11_c01184{bottom:474.785535px;}
.y10_c01184{bottom:490.818585px;}
.yf_c01184{bottom:524.681535px;}
.ye_c01184{bottom:588.477135px;}
.y2_c01184{bottom:625.894185px;}
.yd_c01184{bottom:651.554985px;}
.yc_c01184{bottom:683.630985px;}
.yb_c01184{bottom:747.782985px;}
.ya_c01184{bottom:779.863935px;}
.y9_c01184{bottom:844.010985px;}
.y8_c01184{bottom:875.730585px;}
.y7_c01184{bottom:903.529785px;}
.y6_c01184{bottom:908.162985px;}
.y5_c01184{bottom:939.887535px;}
.y4_c01184{bottom:1043.238585px;}
.y3_c01184{bottom:1075.670985px;}
.h15_c01184{height:28.911094px;}
.h4_c01184{height:33.035449px;}
.h1c_c01184{height:34.693313px;}
.he_c01184{height:37.978116px;}
.h19_c01184{height:37.997438px;}
.ha_c01184{height:38.927565px;}
.h7_c01184{height:39.877015px;}
.h14_c01184{height:42.725364px;}
.h8_c01184{height:46.257750px;}
.h1a_c01184{height:52.866000px;}
.h1b_c01184{height:67.321547px;}
.hb_c01184{height:67.431376px;}
.hf_c01184{height:69.180117px;}
.hc_c01184{height:69.374638px;}
.h12_c01184{height:70.832180px;}
.h3_c01184{height:72.678183px;}
.h18_c01184{height:73.103972px;}
.h11_c01184{height:73.455293px;}
.h10_c01184{height:73.843945px;}
.hd_c01184{height:74.584319px;}
.h5_c01184{height:76.138155px;}
.h6_c01184{height:77.341816px;}
.h16_c01184{height:77.730469px;}
.h17_c01184{height:83.518682px;}
.h2_c01184{height:84.726211px;}
.h13_c01184{height:91.333301px;}
.h9_c01184{height:97.357412px;}
.h1_c01184{height:1116.000000px;}
.h0_c01184{height:1263.000000px;}
.w1_c01184{width:787.500000px;}
.w0_c01184{width:892.500000px;}
.x0_c01184{left:0.000000px;}
.x1_c01184{left:52.500000px;}
.x2_c01184{left:73.975035px;}
.x3c_c01184{left:89.914035px;}
.x28_c01184{left:91.829685px;}
.x5_c01184{left:94.680885px;}
.x4e_c01184{left:122.772135px;}
.x5e_c01184{left:144.750135px;}
.x24_c01184{left:145.834185px;}
.x6_c01184{left:148.675485px;}
.x3d_c01184{left:156.877635px;}
.x63_c01184{left:167.935935px;}
.x64_c01184{left:178.627935px;}
.x11_c01184{left:179.964435px;}
.x30_c01184{left:181.622685px;}
.x19_c01184{left:191.255385px;}
.x56_c01184{left:199.903035px;}
.x48_c01184{left:201.081135px;}
.x7_c01184{left:203.303685px;}
.x3e_c01184{left:210.981135px;}
.x29_c01184{left:213.000735px;}
.x12_c01184{left:214.371885px;}
.x25_c01184{left:222.093885px;}
.x49_c01184{left:223.301685px;}
.x41_c01184{left:224.375835px;}
.x1a_c01184{left:225.692535px;}
.x5f_c01184{left:233.429385px;}
.x31_c01184{left:234.478785px;}
.x3a_c01184{left:245.616285px;}
.x65_c01184{left:247.066635px;}
.x2a_c01184{left:258.223935px;}
.x42_c01184{left:267.732885px;}
.x66_c01184{left:268.995135px;}
.x8_c01184{left:270.242535px;}
.x26_c01184{left:282.127485px;}
.x32_c01184{left:290.186085px;}
.x13_c01184{left:292.517535px;}
.x60_c01184{left:300.769185px;}
.x3f_c01184{left:302.283885px;}
.x33_c01184{left:312.436335px;}
.x9_c01184{left:314.361885px;}
.x1b_c01184{left:323.984685px;}
.x43_c01184{left:335.255835px;}
.x1c_c01184{left:337.067535px;}
.xa_c01184{left:346.497285px;}
.x27_c01184{left:349.442535px;}
.x1d_c01184{left:357.817935px;}
.x34_c01184{left:368.118885px;}
.xb_c01184{left:369.950385px;}
.x2b_c01184{left:379.271235px;}
.x3b_c01184{left:380.483985px;}
.x44_c01184{left:382.028385px;}
.x53_c01184{left:390.725535px;}
.x1e_c01184{left:392.601585px;}
.x4a_c01184{left:400.239435px;}
.x57_c01184{left:401.778885px;}
.x40_c01184{left:404.159835px;}
.x45_c01184{left:413.292585px;}
.x1f_c01184{left:414.752835px;}
.x14_c01184{left:416.138835px;}
.x58_c01184{left:423.108435px;}
.xc_c01184{left:424.172685px;}
.x2e_c01184{left:434.097435px;}
.x35_c01184{left:435.523035px;}
.x15_c01184{left:436.844685px;}
.x46_c01184{left:445.249785px;}
.x4f_c01184{left:446.833785px;}
.x5c_c01184{left:477.578235px;}
.x20_c01184{left:479.073135px;}
.xd_c01184{left:480.538335px;}
.x4b_c01184{left:489.383985px;}
.x21_c01184{left:492.101535px;}
.x59_c01184{left:500.437335px;}
.x16_c01184{left:512.485635px;}
.x2f_c01184{left:523.331085px;}
.x36_c01184{left:544.581435px;}
.x17_c01184{left:546.927735px;}
.x5a_c01184{left:555.704085px;}
.x4c_c01184{left:557.515785px;}
.x50_c01184{left:566.995035px;}
.x54_c01184{left:568.544385px;}
.x61_c01184{left:577.964235px;}
.xe_c01184{left:579.998685px;}
.x22_c01184{left:590.185785px;}
.x4d_c01184{left:600.244185px;}
.x5b_c01184{left:612.564735px;}
.x62_c01184{left:621.959835px;}
.x37_c01184{left:633.532935px;}
.x2c_c01184{left:635.012985px;}
.x18_c01184{left:637.176135px;}
.x51_c01184{left:644.739735px;}
.xf_c01184{left:646.323735px;}
.x2d_c01184{left:667.143435px;}
.x5d_c01184{left:676.855335px;}
.x47_c01184{left:677.983935px;}
.x10_c01184{left:679.463985px;}
.x23_c01184{left:689.839185px;}
.x4_c01184{left:709.208535px;}
.x38_c01184{left:710.995485px;}
.x52_c01184{left:712.114185px;}
.x3_c01184{left:716.207835px;}
.x55_c01184{left:720.652935px;}
.x39_c01184{left:744.026835px;}
.x67_c01184{left:757.327485px;}
@media print{
.v0_c01184{vertical-align:0.000000pt;}
.lsf_c01184{letter-spacing:-2.895200pt;}
.ls7_c01184{letter-spacing:-2.303846pt;}
.ls13_c01184{letter-spacing:-2.180646pt;}
.lsd_c01184{letter-spacing:-1.170400pt;}
.ls14_c01184{letter-spacing:-1.133440pt;}
.ls3_c01184{letter-spacing:0.000000pt;}
.ls2_c01184{letter-spacing:1.737758pt;}
.ls12_c01184{letter-spacing:2.297264pt;}
.ls0_c01184{letter-spacing:2.773485pt;}
.ls15_c01184{letter-spacing:2.868800pt;}
.ls8_c01184{letter-spacing:2.909429pt;}
.lse_c01184{letter-spacing:3.018400pt;}
.lsa_c01184{letter-spacing:3.141609pt;}
.ls4_c01184{letter-spacing:3.291209pt;}
.lsb_c01184{letter-spacing:3.379209pt;}
.ls5_c01184{letter-spacing:3.449609pt;}
.ls11_c01184{letter-spacing:3.784000pt;}
.ls1_c01184{letter-spacing:4.280320pt;}
.lsc_c01184{letter-spacing:50.688176pt;}
.ls9_c01184{letter-spacing:51.955376pt;}
.ls6_c01184{letter-spacing:53.222576pt;}
.ls10_c01184{letter-spacing:57.024176pt;}
.ws0_c01184{word-spacing:-16.456044pt;}
.ws1_c01184{word-spacing:0.000000pt;}
._8_c01184{margin-left:-27.251224pt;}
._3_c01184{margin-left:-15.979920pt;}
._4_c01184{margin-left:-12.391028pt;}
._7_c01184{margin-left:-9.409444pt;}
._6_c01184{margin-left:-5.331866pt;}
._5_c01184{margin-left:-1.517886pt;}
._2_c01184{width:5.731440pt;}
._0_c01184{width:8.096450pt;}
._a_c01184{width:10.861048pt;}
._1_c01184{width:24.289007pt;}
._9_c01184{width:32.371662pt;}
.fs13_c01184{font-size:24.640000pt;}
.fs1a_c01184{font-size:29.568000pt;}
.fs2_c01184{font-size:29.920000pt;}
.fs17_c01184{font-size:32.384000pt;}
.fs6_c01184{font-size:39.424000pt;}
.fs18_c01184{font-size:45.056000pt;}
.fsc_c01184{font-size:50.688176pt;}
.fs8_c01184{font-size:51.955376pt;}
.fs5_c01184{font-size:53.222576pt;}
.fs12_c01184{font-size:57.024176pt;}
.fs19_c01184{font-size:57.376000pt;}
.fsd_c01184{font-size:58.960000pt;}
.fs10_c01184{font-size:60.368000pt;}
.fs9_c01184{font-size:61.072176pt;}
.fs16_c01184{font-size:62.304176pt;}
.fsa_c01184{font-size:62.832176pt;}
.fs1_c01184{font-size:65.824176pt;}
.fsf_c01184{font-size:66.528000pt;}
.fse_c01184{font-size:66.880000pt;}
.fsb_c01184{font-size:67.584176pt;}
.fs3_c01184{font-size:68.992176pt;}
.fs4_c01184{font-size:70.048000pt;}
.fs14_c01184{font-size:70.400000pt;}
.fs15_c01184{font-size:75.680000pt;}
.fs0_c01184{font-size:76.736000pt;}
.fs11_c01184{font-size:82.720000pt;}
.fs7_c01184{font-size:88.176000pt;}
.y0_c01184{bottom:0.000000pt;}
.y1_c01184{bottom:65.333333pt;}
.y19_c01184{bottom:121.700787pt;}
.y1a_c01184{bottom:126.773987pt;}
.y18_c01184{bottom:150.533987pt;}
.y17_c01184{bottom:208.503987pt;}
.y16_c01184{bottom:237.015987pt;}
.y15_c01184{bottom:292.777187pt;}
.y14_c01184{bottom:322.551987pt;}
.y13_c01184{bottom:351.697587pt;}
.y1b_c01184{bottom:394.148787pt;}
.y12_c01184{bottom:408.725987pt;}
.y11_c01184{bottom:422.031587pt;}
.y10_c01184{bottom:436.283187pt;}
.yf_c01184{bottom:466.383587pt;}
.ye_c01184{bottom:523.090787pt;}
.y2_c01184{bottom:556.350387pt;}
.yd_c01184{bottom:579.159987pt;}
.yc_c01184{bottom:607.671987pt;}
.yb_c01184{bottom:664.695987pt;}
.ya_c01184{bottom:693.212387pt;}
.y9_c01184{bottom:750.231987pt;}
.y8_c01184{bottom:778.427187pt;}
.y7_c01184{bottom:803.137587pt;}
.y6_c01184{bottom:807.255987pt;}
.y5_c01184{bottom:835.455587pt;}
.y4_c01184{bottom:927.323187pt;}
.y3_c01184{bottom:956.151987pt;}
.h15_c01184{height:25.698750pt;}
.h4_c01184{height:29.364844pt;}
.h1c_c01184{height:30.838500pt;}
.he_c01184{height:33.758325pt;}
.h19_c01184{height:33.775500pt;}
.ha_c01184{height:34.602280pt;}
.h7_c01184{height:35.446236pt;}
.h14_c01184{height:37.978101pt;}
.h8_c01184{height:41.118000pt;}
.h1a_c01184{height:46.992000pt;}
.h1b_c01184{height:59.841375pt;}
.hb_c01184{height:59.939001pt;}
.hf_c01184{height:61.493438pt;}
.hc_c01184{height:61.666345pt;}
.h12_c01184{height:62.961938pt;}
.h3_c01184{height:64.602829pt;}
.h18_c01184{height:64.981309pt;}
.h11_c01184{height:65.293594pt;}
.h10_c01184{height:65.639063pt;}
.hd_c01184{height:66.297173pt;}
.h5_c01184{height:67.678360pt;}
.h6_c01184{height:68.748281pt;}
.h16_c01184{height:69.093750pt;}
.h17_c01184{height:74.238828pt;}
.h2_c01184{height:75.312188pt;}
.h13_c01184{height:81.185156pt;}
.h9_c01184{height:86.539922pt;}
.h1_c01184{height:992.000000pt;}
.h0_c01184{height:1122.666667pt;}
.w1_c01184{width:700.000000pt;}
.w0_c01184{width:793.333333pt;}
.x0_c01184{left:0.000000pt;}
.x1_c01184{left:46.666667pt;}
.x2_c01184{left:65.755587pt;}
.x3c_c01184{left:79.923587pt;}
.x28_c01184{left:81.626387pt;}
.x5_c01184{left:84.160787pt;}
.x4e_c01184{left:109.130787pt;}
.x5e_c01184{left:128.666787pt;}
.x24_c01184{left:129.630387pt;}
.x6_c01184{left:132.155987pt;}
.x3d_c01184{left:139.446787pt;}
.x63_c01184{left:149.276387pt;}
.x64_c01184{left:158.780387pt;}
.x11_c01184{left:159.968387pt;}
.x30_c01184{left:161.442387pt;}
.x19_c01184{left:170.004787pt;}
.x56_c01184{left:177.691587pt;}
.x48_c01184{left:178.738787pt;}
.x7_c01184{left:180.714387pt;}
.x3e_c01184{left:187.538787pt;}
.x29_c01184{left:189.333987pt;}
.x12_c01184{left:190.552787pt;}
.x25_c01184{left:197.416787pt;}
.x49_c01184{left:198.490387pt;}
.x41_c01184{left:199.445187pt;}
.x1a_c01184{left:200.615587pt;}
.x5f_c01184{left:207.492787pt;}
.x31_c01184{left:208.425587pt;}
.x3a_c01184{left:218.325587pt;}
.x65_c01184{left:219.614787pt;}
.x2a_c01184{left:229.532387pt;}
.x42_c01184{left:237.984787pt;}
.x66_c01184{left:239.106787pt;}
.x8_c01184{left:240.215587pt;}
.x26_c01184{left:250.779987pt;}
.x32_c01184{left:257.943187pt;}
.x13_c01184{left:260.015587pt;}
.x60_c01184{left:267.350387pt;}
.x3f_c01184{left:268.696787pt;}
.x33_c01184{left:277.721187pt;}
.x9_c01184{left:279.432787pt;}
.x1b_c01184{left:287.986387pt;}
.x43_c01184{left:298.005187pt;}
.x1c_c01184{left:299.615587pt;}
.xa_c01184{left:307.997587pt;}
.x27_c01184{left:310.615587pt;}
.x1d_c01184{left:318.060387pt;}
.x34_c01184{left:327.216787pt;}
.xb_c01184{left:328.844787pt;}
.x2b_c01184{left:337.129987pt;}
.x3b_c01184{left:338.207987pt;}
.x44_c01184{left:339.580787pt;}
.x53_c01184{left:347.311587pt;}
.x1e_c01184{left:348.979187pt;}
.x4a_c01184{left:355.768387pt;}
.x57_c01184{left:357.136787pt;}
.x40_c01184{left:359.253187pt;}
.x45_c01184{left:367.371187pt;}
.x1f_c01184{left:368.669187pt;}
.x14_c01184{left:369.901187pt;}
.x58_c01184{left:376.096387pt;}
.xc_c01184{left:377.042387pt;}
.x2e_c01184{left:385.864387pt;}
.x35_c01184{left:387.131587pt;}
.x15_c01184{left:388.306387pt;}
.x46_c01184{left:395.777587pt;}
.x4f_c01184{left:397.185587pt;}
.x5c_c01184{left:424.513987pt;}
.x20_c01184{left:425.842787pt;}
.xd_c01184{left:427.145187pt;}
.x4b_c01184{left:435.007987pt;}
.x21_c01184{left:437.423587pt;}
.x59_c01184{left:444.833187pt;}
.x16_c01184{left:455.542787pt;}
.x2f_c01184{left:465.183187pt;}
.x36_c01184{left:484.072387pt;}
.x17_c01184{left:486.157987pt;}
.x5a_c01184{left:493.959187pt;}
.x4c_c01184{left:495.569587pt;}
.x50_c01184{left:503.995587pt;}
.x54_c01184{left:505.372787pt;}
.x61_c01184{left:513.745987pt;}
.xe_c01184{left:515.554387pt;}
.x22_c01184{left:524.609587pt;}
.x4d_c01184{left:533.550387pt;}
.x5b_c01184{left:544.501987pt;}
.x62_c01184{left:552.853187pt;}
.x37_c01184{left:563.140387pt;}
.x2c_c01184{left:564.455987pt;}
.x18_c01184{left:566.378787pt;}
.x51_c01184{left:573.101987pt;}
.xf_c01184{left:574.509987pt;}
.x2d_c01184{left:593.016387pt;}
.x5d_c01184{left:601.649187pt;}
.x47_c01184{left:602.652387pt;}
.x10_c01184{left:603.967987pt;}
.x23_c01184{left:613.190387pt;}
.x4_c01184{left:630.407587pt;}
.x38_c01184{left:631.995987pt;}
.x52_c01184{left:632.990387pt;}
.x3_c01184{left:636.629187pt;}
.x55_c01184{left:640.580387pt;}
.x39_c01184{left:661.357187pt;}
.x67_c01184{left:673.179987pt;}
}





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

.ir_c01185:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01185{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01185;src:url('chunks/assets/font_2046d8b0e32d98ea824efcf8.woff2')format("woff");}.ff1_c01185{font-family:ff1_c01185;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01185;src:url('chunks/assets/font_824894f49d9dd3ea40c1500f.woff2')format("woff");}.ff2_c01185{font-family:ff2_c01185;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01185;src:url('chunks/assets/font_d54ef6c2bd8e5a59fe8e14e3.woff2')format("woff");}.ff3_c01185{font-family:ff3_c01185;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01185;src:url('chunks/assets/font_7f15953fa8010f18c45c7ddc.woff2')format("woff");}.ff4_c01185{font-family:ff4_c01185;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mf_c01185{transform:matrix(0.066861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066861,0.000000,0.000000,0.250000,0,0);}
.me_c01185{transform:matrix(0.069767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.069767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.069767,0.000000,0.000000,0.250000,0,0);}
.m1f_c01185{transform:matrix(0.103742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103742,0.000000,0.000000,0.250000,0,0);}
.m5_c01185{transform:matrix(0.113406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113406,0.000000,0.000000,0.250000,0,0);}
.m6_c01185{transform:matrix(0.117589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117589,0.000000,0.000000,0.250000,0,0);}
.m65_c01185{transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);}
.m1d_c01185{transform:matrix(0.139698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139698,0.000000,0.000000,0.250000,0,0);}
.m68_c01185{transform:matrix(0.158689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158689,0.000000,0.000000,0.250000,0,0);}
.m35_c01185{transform:matrix(0.173699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173699,0.000000,0.000000,0.250000,0,0);}
.m10_c01185{transform:matrix(0.178779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178779,0.000000,0.000000,0.250000,0,0);}
.m54_c01185{transform:matrix(0.208742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208742,0.000000,0.000000,0.250000,0,0);}
.m1e_c01185{transform:matrix(0.222822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222822,0.000000,0.000000,0.250000,0,0);}
.m20_c01185{transform:matrix(0.237074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237074,0.000000,0.000000,0.250000,0,0);}
.m0_c01185{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01185{transform:matrix(0.252054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252054,0.000000,0.000000,0.250000,0,0);}
.m32_c01185{transform:matrix(0.256164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256164,0.000000,0.000000,0.250000,0,0);}
.ma_c01185{transform:matrix(0.256592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256592,0.000000,0.000000,0.250000,0,0);}
.m25_c01185{transform:matrix(0.256862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256862,0.000000,0.000000,0.250000,0,0);}
.m3c_c01185{transform:matrix(0.257234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257234,0.000000,0.000000,0.250000,0,0);}
.m13_c01185{transform:matrix(0.257512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257512,0.000000,0.000000,0.250000,0,0);}
.m46_c01185{transform:matrix(0.258946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258946,0.000000,0.000000,0.250000,0,0);}
.m2e_c01185{transform:matrix(0.259621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259621,0.000000,0.000000,0.250000,0,0);}
.m6c_c01185{transform:matrix(0.261956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261956,0.000000,0.000000,0.250000,0,0);}
.m8_c01185{transform:matrix(0.265543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265543,0.000000,0.000000,0.250000,0,0);}
.m6a_c01185{transform:matrix(0.265687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265687,0.000000,0.000000,0.250000,0,0);}
.m4e_c01185{transform:matrix(0.265835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265835,0.000000,0.000000,0.250000,0,0);}
.m2a_c01185{transform:matrix(0.266199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266199,0.000000,0.000000,0.250000,0,0);}
.m2b_c01185{transform:matrix(0.267714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267714,0.000000,0.000000,0.250000,0,0);}
.m24_c01185{transform:matrix(0.268202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268202,0.000000,0.000000,0.250000,0,0);}
.m2f_c01185{transform:matrix(0.271766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271766,0.000000,0.000000,0.250000,0,0);}
.m17_c01185{transform:matrix(0.272430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272430,0.000000,0.000000,0.250000,0,0);}
.m1_c01185{transform:matrix(0.273787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273787,0.000000,0.000000,0.250000,0,0);}
.m26_c01185{transform:matrix(0.273852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273852,0.000000,0.000000,0.250000,0,0);}
.m63_c01185{transform:matrix(0.275371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275371,0.000000,0.000000,0.250000,0,0);}
.m29_c01185{transform:matrix(0.276214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276214,0.000000,0.000000,0.250000,0,0);}
.mc_c01185{transform:matrix(0.276927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276927,0.000000,0.000000,0.250000,0,0);}
.m50_c01185{transform:matrix(0.276947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276947,0.000000,0.000000,0.250000,0,0);}
.m4a_c01185{transform:matrix(0.278065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278065,0.000000,0.000000,0.250000,0,0);}
.m41_c01185{transform:matrix(0.278495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278495,0.000000,0.000000,0.250000,0,0);}
.m14_c01185{transform:matrix(0.278792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278792,0.000000,0.000000,0.250000,0,0);}
.m1b_c01185{transform:matrix(0.278890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278890,0.000000,0.000000,0.250000,0,0);}
.m2c_c01185{transform:matrix(0.278904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278904,0.000000,0.000000,0.250000,0,0);}
.m59_c01185{transform:matrix(0.279031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279031,0.000000,0.000000,0.250000,0,0);}
.m1a_c01185{transform:matrix(0.279831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279831,0.000000,0.000000,0.250000,0,0);}
.m30_c01185{transform:matrix(0.281207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281207,0.000000,0.000000,0.250000,0,0);}
.m3f_c01185{transform:matrix(0.281463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281463,0.000000,0.000000,0.250000,0,0);}
.m34_c01185{transform:matrix(0.282381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282381,0.000000,0.000000,0.250000,0,0);}
.m5e_c01185{transform:matrix(0.283367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283367,0.000000,0.000000,0.250000,0,0);}
.m5a_c01185{transform:matrix(0.283683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283683,0.000000,0.000000,0.250000,0,0);}
.m4_c01185{transform:matrix(0.284362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284362,0.000000,0.000000,0.250000,0,0);}
.m19_c01185{transform:matrix(0.285539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285539,0.000000,0.000000,0.250000,0,0);}
.m3_c01185{transform:matrix(0.286817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286817,0.000000,0.000000,0.250000,0,0);}
.m18_c01185{transform:matrix(0.287388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287388,0.000000,0.000000,0.250000,0,0);}
.m12_c01185{transform:matrix(0.288598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288598,0.000000,0.000000,0.250000,0,0);}
.m3d_c01185{transform:matrix(0.288751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288751,0.000000,0.000000,0.250000,0,0);}
.m27_c01185{transform:matrix(0.289493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289493,0.000000,0.000000,0.250000,0,0);}
.m67_c01185{transform:matrix(0.289645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289645,0.000000,0.000000,0.250000,0,0);}
.m47_c01185{transform:matrix(0.289932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289932,0.000000,0.000000,0.250000,0,0);}
.m33_c01185{transform:matrix(0.290297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290297,0.000000,0.000000,0.250000,0,0);}
.m3b_c01185{transform:matrix(0.290308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290308,0.000000,0.000000,0.250000,0,0);}
.m55_c01185{transform:matrix(0.290708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290708,0.000000,0.000000,0.250000,0,0);}
.m60_c01185{transform:matrix(0.291218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291218,0.000000,0.000000,0.250000,0,0);}
.m28_c01185{transform:matrix(0.291691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291691,0.000000,0.000000,0.250000,0,0);}
.m4d_c01185{transform:matrix(0.292272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292272,0.000000,0.000000,0.250000,0,0);}
.m36_c01185{transform:matrix(0.292475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292475,0.000000,0.000000,0.250000,0,0);}
.m40_c01185{transform:matrix(0.292557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292557,0.000000,0.000000,0.250000,0,0);}
.m39_c01185{transform:matrix(0.292606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292606,0.000000,0.000000,0.250000,0,0);}
.m42_c01185{transform:matrix(0.293073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293073,0.000000,0.000000,0.250000,0,0);}
.m4b_c01185{transform:matrix(0.293391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293391,0.000000,0.000000,0.250000,0,0);}
.m52_c01185{transform:matrix(0.294456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294456,0.000000,0.000000,0.250000,0,0);}
.m43_c01185{transform:matrix(0.295414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295414,0.000000,0.000000,0.250000,0,0);}
.m5c_c01185{transform:matrix(0.295838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295838,0.000000,0.000000,0.250000,0,0);}
.m64_c01185{transform:matrix(0.296120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296120,0.000000,0.000000,0.250000,0,0);}
.m3a_c01185{transform:matrix(0.296317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296317,0.000000,0.000000,0.250000,0,0);}
.m9_c01185{transform:matrix(0.298001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298001,0.000000,0.000000,0.250000,0,0);}
.m62_c01185{transform:matrix(0.299291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299291,0.000000,0.000000,0.250000,0,0);}
.m44_c01185{transform:matrix(0.301022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301022,0.000000,0.000000,0.250000,0,0);}
.m21_c01185{transform:matrix(0.301426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301426,0.000000,0.000000,0.250000,0,0);}
.m2_c01185{transform:matrix(0.302130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302130,0.000000,0.000000,0.250000,0,0);}
.mb_c01185{transform:matrix(0.303228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303228,0.000000,0.000000,0.250000,0,0);}
.m51_c01185{transform:matrix(0.303432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303432,0.000000,0.000000,0.250000,0,0);}
.m66_c01185{transform:matrix(0.305426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305426,0.000000,0.000000,0.250000,0,0);}
.m48_c01185{transform:matrix(0.305510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305510,0.000000,0.000000,0.250000,0,0);}
.m5d_c01185{transform:matrix(0.308276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308276,0.000000,0.000000,0.250000,0,0);}
.m7_c01185{transform:matrix(0.308983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308983,0.000000,0.000000,0.250000,0,0);}
.m15_c01185{transform:matrix(0.309453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309453,0.000000,0.000000,0.250000,0,0);}
.m61_c01185{transform:matrix(0.311948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311948,0.000000,0.000000,0.250000,0,0);}
.m23_c01185{transform:matrix(0.313036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313036,0.000000,0.000000,0.250000,0,0);}
.m5b_c01185{transform:matrix(0.314084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314084,0.000000,0.000000,0.250000,0,0);}
.m49_c01185{transform:matrix(0.314150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314150,0.000000,0.000000,0.250000,0,0);}
.m69_c01185{transform:matrix(0.314601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314601,0.000000,0.000000,0.250000,0,0);}
.md_c01185{transform:matrix(0.319169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319169,0.000000,0.000000,0.250000,0,0);}
.m11_c01185{transform:matrix(0.319534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319534,0.000000,0.000000,0.250000,0,0);}
.m2d_c01185{transform:matrix(0.325921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325921,0.000000,0.000000,0.250000,0,0);}
.m38_c01185{transform:matrix(0.326764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326764,0.000000,0.000000,0.250000,0,0);}
.m16_c01185{transform:matrix(0.329250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329250,0.000000,0.000000,0.250000,0,0);}
.m3e_c01185{transform:matrix(0.331694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331694,0.000000,0.000000,0.250000,0,0);}
.m37_c01185{transform:matrix(0.333634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333634,0.000000,0.000000,0.250000,0,0);}
.m57_c01185{transform:matrix(0.336058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336058,0.000000,0.000000,0.250000,0,0);}
.m5f_c01185{transform:matrix(0.340422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340422,0.000000,0.000000,0.250000,0,0);}
.m1c_c01185{transform:matrix(0.340795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340795,0.000000,0.000000,0.250000,0,0);}
.m4f_c01185{transform:matrix(0.344787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344787,0.000000,0.000000,0.250000,0,0);}
.m6b_c01185{transform:matrix(0.348644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348644,0.000000,0.000000,0.250000,0,0);}
.m45_c01185{transform:matrix(0.349151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349151,0.000000,0.000000,0.250000,0,0);}
.m22_c01185{transform:matrix(0.352824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352824,0.000000,0.000000,0.250000,0,0);}
.m31_c01185{transform:matrix(0.355035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355035,0.000000,0.000000,0.250000,0,0);}
.m58_c01185{transform:matrix(0.387072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387072,0.000000,0.000000,0.250000,0,0);}
.m53_c01185{transform:matrix(0.397503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397503,0.000000,0.000000,0.250000,0,0);}
.m4c_c01185{transform:matrix(0.418900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418900,0.000000,0.000000,0.250000,0,0);}
.v0_c01185{vertical-align:0.000000px;}
.v1_c01185{vertical-align:11.404800px;}
.ls13_c01185{letter-spacing:-3.160080px;}
.lse_c01185{letter-spacing:-2.621520px;}
.lsb_c01185{letter-spacing:-2.591827px;}
.lsd_c01185{letter-spacing:-2.550240px;}
.lsa_c01185{letter-spacing:-2.418577px;}
.ls11_c01185{letter-spacing:-1.694880px;}
.ls8_c01185{letter-spacing:-0.473934px;}
.ls1_c01185{letter-spacing:0.000000px;}
.ls14_c01185{letter-spacing:1.706447px;}
.ls5_c01185{letter-spacing:2.589840px;}
.ls10_c01185{letter-spacing:3.306610px;}
.lsf_c01185{letter-spacing:3.405610px;}
.ls2_c01185{letter-spacing:3.643200px;}
.ls3_c01185{letter-spacing:3.702610px;}
.ls9_c01185{letter-spacing:3.742200px;}
.ls12_c01185{letter-spacing:3.900610px;}
.ls6_c01185{letter-spacing:3.960000px;}
.lsc_c01185{letter-spacing:4.197610px;}
.ls0_c01185{letter-spacing:15.206301px;}
.ls15_c01185{letter-spacing:29.937798px;}
.ls7_c01185{letter-spacing:61.300998px;}
.ls4_c01185{letter-spacing:65.577798px;}
.ls16_c01185{letter-spacing:67.003200px;}
.sc__c01185{text-shadow:none;}
.sc0_c01185{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01185{-webkit-text-stroke:0px transparent;}
.sc0_c01185{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01185{word-spacing:0.000000px;}
._1_c01185{margin-left:-2.813327px;}
._2_c01185{width:29.422800px;}
._0_c01185{width:32.091840px;}
.fc0_c01185{color:transparent;}
.fs13_c01185{font-size:25.146000px;}
.fs0_c01185{font-size:27.720000px;}
.fs14_c01185{font-size:29.937798px;}
.fs7_c01185{font-size:30.096000px;}
.fsc_c01185{font-size:33.660000px;}
.fs15_c01185{font-size:39.204000px;}
.fs12_c01185{font-size:49.302000px;}
.fs6_c01185{font-size:61.300998px;}
.fs3_c01185{font-size:65.577798px;}
.fsd_c01185{font-size:66.132198px;}
.fs4_c01185{font-size:66.330000px;}
.fs11_c01185{font-size:66.528000px;}
.fs17_c01185{font-size:67.003200px;}
.fsb_c01185{font-size:68.112198px;}
.fs9_c01185{font-size:69.102198px;}
.fs1_c01185{font-size:72.864000px;}
.fs2_c01185{font-size:74.052198px;}
.fs8_c01185{font-size:74.844000px;}
.fse_c01185{font-size:78.012198px;}
.fs10_c01185{font-size:79.002198px;}
.fs5_c01185{font-size:79.200000px;}
.fs16_c01185{font-size:81.972198px;}
.fsa_c01185{font-size:83.952198px;}
.fsf_c01185{font-size:90.288000px;}
.y0_c01185{bottom:0.000000px;}
.y2_c01185{bottom:2.763135px;}
.y1_c01185{bottom:76.500000px;}
.y1a_c01185{bottom:185.591385px;}
.y19_c01185{bottom:241.551135px;}
.y16_c01185{bottom:251.530335px;}
.y18_c01185{bottom:252.594585px;}
.y17_c01185{bottom:262.930185px;}
.y15_c01185{bottom:275.760585px;}
.y14_c01185{bottom:316.390185px;}
.y13_c01185{bottom:380.903535px;}
.y12_c01185{bottom:443.981385px;}
.y11_c01185{bottom:508.851135px;}
.y10_c01185{bottom:572.646735px;}
.yf_c01185{bottom:597.589785px;}
.ye_c01185{bottom:604.009935px;}
.yd_c01185{bottom:658.895535px;}
.yc_c01185{bottom:669.587535px;}
.yb_c01185{bottom:731.601135px;}
.ya_c01185{bottom:764.741385px;}
.y9_c01185{bottom:796.104585px;}
.y7_c01185{bottom:797.178735px;}
.y8_c01185{bottom:797.886585px;}
.y6_c01185{bottom:811.791135px;}
.y5_c01185{bottom:829.611135px;}
.y4_c01185{bottom:893.763135px;}
.y3_c01185{bottom:925.477785px;}
.h15_c01185{height:19.938573px;}
.h14_c01185{height:26.226492px;}
.h2_c01185{height:28.911094px;}
.h9_c01185{height:31.389188px;}
.he_c01185{height:33.035449px;}
.h16_c01185{height:38.476582px;}
.h8_c01185{height:40.826465px;}
.h5_c01185{height:43.674813px;}
.h18_c01185{height:44.624131px;}
.hb_c01185{height:67.820028px;}
.hf_c01185{height:68.973816px;}
.h6_c01185{height:69.180117px;}
.h13_c01185{height:69.386625px;}
.hd_c01185{height:71.038894px;}
.h3_c01185{height:71.512031px;}
.h4_c01185{height:72.678183px;}
.ha_c01185{height:73.455293px;}
.h10_c01185{height:76.564706px;}
.h12_c01185{height:77.536337px;}
.h7_c01185{height:77.730469px;}
.h17_c01185{height:80.451229px;}
.hc_c01185{height:82.394491px;}
.h11_c01185{height:94.167563px;}
.h1_c01185{height:1110.000000px;}
.h0_c01185{height:1263.000000px;}
.w1_c01185{width:775.500000px;}
.w0_c01185{width:892.500000px;}
.x0_c01185{left:0.000000px;}
.x2_c01185{left:54.763485px;}
.x1_c01185{left:58.500000px;}
.x59_c01185{left:73.756635px;}
.x3f_c01185{left:75.182235px;}
.x2e_c01185{left:76.256385px;}
.xe_c01185{left:77.325585px;}
.x3_c01185{left:79.122435px;}
.x52_c01185{left:129.597585px;}
.x45_c01185{left:130.731135px;}
.x2f_c01185{left:132.067635px;}
.x4_c01185{left:133.527885px;}
.x3e_c01185{left:155.377185px;}
.x53_c01185{left:164.425785px;}
.x5a_c01185{left:184.854435px;}
.x40_c01185{left:186.151335px;}
.x19_c01185{left:187.765035px;}
.x4c_c01185{left:195.546435px;}
.x30_c01185{left:197.338335px;}
.x24_c01185{left:200.050935px;}
.x3d_c01185{left:212.267535px;}
.x25_c01185{left:233.498085px;}
.x54_c01185{left:241.418085px;}
.x5_c01185{left:245.313735px;}
.x46_c01185{left:253.689135px;}
.x5b_c01185{left:262.975335px;}
.x31_c01185{left:265.118685px;}
.x1a_c01185{left:266.163135px;}
.x26_c01185{left:267.212535px;}
.x5f_c01185{left:273.954435px;}
.xf_c01185{left:276.766035px;}
.x6_c01185{left:278.300535px;}
.x4d_c01185{left:285.408735px;}
.x5c_c01185{left:297.684735px;}
.x32_c01185{left:299.313285px;}
.x10_c01185{left:309.341985px;}
.x11_c01185{left:312.549585px;}
.x12_c01185{left:320.746785px;}
.x27_c01185{left:330.329985px;}
.x55_c01185{left:350.575485px;}
.x47_c01185{left:352.194135px;}
.x5d_c01185{left:362.772285px;}
.x33_c01185{left:368.207385px;}
.x60_c01185{left:373.493985px;}
.x13_c01185{left:376.310535px;}
.x4e_c01185{left:384.284985px;}
.x28_c01185{left:386.230335px;}
.x7_c01185{left:388.824135px;}
.x41_c01185{left:396.556035px;}
.x1b_c01185{left:410.104185px;}
.x4f_c01185{left:430.899135px;}
.x39_c01185{left:432.196035px;}
.x34_c01185{left:433.606785px;}
.x5e_c01185{left:440.091285px;}
.x48_c01185{left:441.160485px;}
.x29_c01185{left:444.016635px;}
.x61_c01185{left:451.149585px;}
.x35_c01185{left:464.653185px;}
.x50_c01185{left:476.374785px;}
.x42_c01185{left:485.705535px;}
.x36_c01185{left:488.477535px;}
.x14_c01185{left:498.550785px;}
.x1c_c01185{left:500.179335px;}
.x51_c01185{left:507.094485px;}
.x3a_c01185{left:508.109235px;}
.x2a_c01185{left:509.153685px;}
.x8_c01185{left:510.351585px;}
.x18_c01185{left:513.846285px;}
.x15_c01185{left:531.646485px;}
.x1d_c01185{left:533.289885px;}
.x2b_c01185{left:541.610835px;}
.x56_c01185{left:550.956435px;}
.x43_c01185{left:552.827535px;}
.x1e_c01185{left:555.055035px;}
.x1f_c01185{left:566.652885px;}
.x49_c01185{left:574.567935px;}
.x16_c01185{left:575.572785px;}
.x37_c01185{left:577.443885px;}
.x57_c01185{left:595.481685px;}
.x20_c01185{left:597.337935px;}
.x62_c01185{left:605.495535px;}
.x9_c01185{left:609.034785px;}
.x21_c01185{left:618.023985px;}
.x58_c01185{left:619.043685px;}
.x2c_c01185{left:630.403935px;}
.x22_c01185{left:631.804785px;}
.xa_c01185{left:633.042285px;}
.x17_c01185{left:644.026335px;}
.x44_c01185{left:653.248185px;}
.xb_c01185{left:655.173735px;}
.x4a_c01185{left:662.128485px;}
.x3b_c01185{left:664.380735px;}
.x38_c01185{left:685.235085px;}
.xc_c01185{left:686.333985px;}
.x2d_c01185{left:697.842735px;}
.x23_c01185{left:706.416135px;}
.x3c_c01185{left:708.940635px;}
.xd_c01185{left:710.386035px;}
.x4b_c01185{left:715.637985px;}
@media print{
.v0_c01185{vertical-align:0.000000pt;}
.v1_c01185{vertical-align:10.137600pt;}
.ls13_c01185{letter-spacing:-2.808960pt;}
.lse_c01185{letter-spacing:-2.330240pt;}
.lsb_c01185{letter-spacing:-2.303846pt;}
.lsd_c01185{letter-spacing:-2.266880pt;}
.lsa_c01185{letter-spacing:-2.149846pt;}
.ls11_c01185{letter-spacing:-1.506560pt;}
.ls8_c01185{letter-spacing:-0.421275pt;}
.ls1_c01185{letter-spacing:0.000000pt;}
.ls14_c01185{letter-spacing:1.516842pt;}
.ls5_c01185{letter-spacing:2.302080pt;}
.ls10_c01185{letter-spacing:2.939209pt;}
.lsf_c01185{letter-spacing:3.027209pt;}
.ls2_c01185{letter-spacing:3.238400pt;}
.ls3_c01185{letter-spacing:3.291209pt;}
.ls9_c01185{letter-spacing:3.326400pt;}
.ls12_c01185{letter-spacing:3.467209pt;}
.ls6_c01185{letter-spacing:3.520000pt;}
.lsc_c01185{letter-spacing:3.731209pt;}
.ls0_c01185{letter-spacing:13.516712pt;}
.ls15_c01185{letter-spacing:26.611376pt;}
.ls7_c01185{letter-spacing:54.489776pt;}
.ls4_c01185{letter-spacing:58.291376pt;}
.ls16_c01185{letter-spacing:59.558400pt;}
.ws0_c01185{word-spacing:0.000000pt;}
._1_c01185{margin-left:-2.500735pt;}
._2_c01185{width:26.153600pt;}
._0_c01185{width:28.526080pt;}
.fs13_c01185{font-size:22.352000pt;}
.fs0_c01185{font-size:24.640000pt;}
.fs14_c01185{font-size:26.611376pt;}
.fs7_c01185{font-size:26.752000pt;}
.fsc_c01185{font-size:29.920000pt;}
.fs15_c01185{font-size:34.848000pt;}
.fs12_c01185{font-size:43.824000pt;}
.fs6_c01185{font-size:54.489776pt;}
.fs3_c01185{font-size:58.291376pt;}
.fsd_c01185{font-size:58.784176pt;}
.fs4_c01185{font-size:58.960000pt;}
.fs11_c01185{font-size:59.136000pt;}
.fs17_c01185{font-size:59.558400pt;}
.fsb_c01185{font-size:60.544176pt;}
.fs9_c01185{font-size:61.424176pt;}
.fs1_c01185{font-size:64.768000pt;}
.fs2_c01185{font-size:65.824176pt;}
.fs8_c01185{font-size:66.528000pt;}
.fse_c01185{font-size:69.344176pt;}
.fs10_c01185{font-size:70.224176pt;}
.fs5_c01185{font-size:70.400000pt;}
.fs16_c01185{font-size:72.864176pt;}
.fsa_c01185{font-size:74.624176pt;}
.fsf_c01185{font-size:80.256000pt;}
.y0_c01185{bottom:0.000000pt;}
.y2_c01185{bottom:2.456120pt;}
.y1_c01185{bottom:68.000000pt;}
.y1a_c01185{bottom:164.970120pt;}
.y19_c01185{bottom:214.712120pt;}
.y16_c01185{bottom:223.582520pt;}
.y18_c01185{bottom:224.528520pt;}
.y17_c01185{bottom:233.715720pt;}
.y15_c01185{bottom:245.120520pt;}
.y14_c01185{bottom:281.235720pt;}
.y13_c01185{bottom:338.580920pt;}
.y12_c01185{bottom:394.650120pt;}
.y11_c01185{bottom:452.312120pt;}
.y10_c01185{bottom:509.019320pt;}
.yf_c01185{bottom:531.190920pt;}
.ye_c01185{bottom:536.897720pt;}
.yd_c01185{bottom:585.684920pt;}
.yc_c01185{bottom:595.188920pt;}
.yb_c01185{bottom:650.312120pt;}
.ya_c01185{bottom:679.770120pt;}
.y9_c01185{bottom:707.648520pt;}
.y7_c01185{bottom:708.603320pt;}
.y8_c01185{bottom:709.232520pt;}
.y6_c01185{bottom:721.592120pt;}
.y5_c01185{bottom:737.432120pt;}
.y4_c01185{bottom:794.456120pt;}
.y3_c01185{bottom:822.646920pt;}
.h15_c01185{height:17.723176pt;}
.h14_c01185{height:23.312438pt;}
.h2_c01185{height:25.698750pt;}
.h9_c01185{height:27.901500pt;}
.he_c01185{height:29.364844pt;}
.h16_c01185{height:34.201406pt;}
.h8_c01185{height:36.290191pt;}
.h5_c01185{height:38.822056pt;}
.h18_c01185{height:39.665894pt;}
.hb_c01185{height:60.284470pt;}
.hf_c01185{height:61.310059pt;}
.h6_c01185{height:61.493438pt;}
.h13_c01185{height:61.677000pt;}
.hd_c01185{height:63.145684pt;}
.h3_c01185{height:63.566250pt;}
.h4_c01185{height:64.602829pt;}
.ha_c01185{height:65.293594pt;}
.h10_c01185{height:68.057516pt;}
.h12_c01185{height:68.921188pt;}
.h7_c01185{height:69.093750pt;}
.h17_c01185{height:71.512204pt;}
.hc_c01185{height:73.239548pt;}
.h11_c01185{height:83.704500pt;}
.h1_c01185{height:986.666667pt;}
.h0_c01185{height:1122.666667pt;}
.w1_c01185{width:689.333333pt;}
.w0_c01185{width:793.333333pt;}
.x0_c01185{left:0.000000pt;}
.x2_c01185{left:48.678653pt;}
.x1_c01185{left:52.000000pt;}
.x59_c01185{left:65.561453pt;}
.x3f_c01185{left:66.828653pt;}
.x2e_c01185{left:67.783453pt;}
.xe_c01185{left:68.733853pt;}
.x3_c01185{left:70.331053pt;}
.x52_c01185{left:115.197853pt;}
.x45_c01185{left:116.205453pt;}
.x2f_c01185{left:117.393453pt;}
.x4_c01185{left:118.691453pt;}
.x3e_c01185{left:138.113053pt;}
.x53_c01185{left:146.156253pt;}
.x5a_c01185{left:164.315053pt;}
.x40_c01185{left:165.467853pt;}
.x19_c01185{left:166.902253pt;}
.x4c_c01185{left:173.819053pt;}
.x30_c01185{left:175.411853pt;}
.x24_c01185{left:177.823053pt;}
.x3d_c01185{left:188.682253pt;}
.x25_c01185{left:207.553853pt;}
.x54_c01185{left:214.593853pt;}
.x5_c01185{left:218.056653pt;}
.x46_c01185{left:225.501453pt;}
.x5b_c01185{left:233.755853pt;}
.x31_c01185{left:235.661053pt;}
.x1a_c01185{left:236.589453pt;}
.x26_c01185{left:237.522253pt;}
.x5f_c01185{left:243.515053pt;}
.xf_c01185{left:246.014253pt;}
.x6_c01185{left:247.378253pt;}
.x4d_c01185{left:253.696653pt;}
.x5c_c01185{left:264.608653pt;}
.x32_c01185{left:266.056253pt;}
.x10_c01185{left:274.970653pt;}
.x11_c01185{left:277.821853pt;}
.x12_c01185{left:285.108253pt;}
.x27_c01185{left:293.626653pt;}
.x55_c01185{left:311.622653pt;}
.x47_c01185{left:313.061453pt;}
.x5d_c01185{left:322.464253pt;}
.x33_c01185{left:327.295453pt;}
.x60_c01185{left:331.994653pt;}
.x13_c01185{left:334.498253pt;}
.x4e_c01185{left:341.586653pt;}
.x28_c01185{left:343.315853pt;}
.x7_c01185{left:345.621453pt;}
.x41_c01185{left:352.494253pt;}
.x1b_c01185{left:364.537053pt;}
.x4f_c01185{left:383.021453pt;}
.x39_c01185{left:384.174253pt;}
.x34_c01185{left:385.428253pt;}
.x5e_c01185{left:391.192253pt;}
.x48_c01185{left:392.142653pt;}
.x29_c01185{left:394.681453pt;}
.x61_c01185{left:401.021853pt;}
.x35_c01185{left:413.025053pt;}
.x50_c01185{left:423.444253pt;}
.x42_c01185{left:431.738253pt;}
.x36_c01185{left:434.202253pt;}
.x14_c01185{left:443.156253pt;}
.x1c_c01185{left:444.603853pt;}
.x51_c01185{left:450.750653pt;}
.x3a_c01185{left:451.652653pt;}
.x2a_c01185{left:452.581053pt;}
.x8_c01185{left:453.645853pt;}
.x18_c01185{left:456.752253pt;}
.x15_c01185{left:472.574653pt;}
.x1d_c01185{left:474.035453pt;}
.x2b_c01185{left:481.431853pt;}
.x56_c01185{left:489.739053pt;}
.x43_c01185{left:491.402253pt;}
.x1e_c01185{left:493.382253pt;}
.x1f_c01185{left:503.691453pt;}
.x49_c01185{left:510.727053pt;}
.x16_c01185{left:511.620253pt;}
.x37_c01185{left:513.283453pt;}
.x57_c01185{left:529.317053pt;}
.x20_c01185{left:530.967053pt;}
.x62_c01185{left:538.218253pt;}
.x9_c01185{left:541.364253pt;}
.x21_c01185{left:549.354653pt;}
.x58_c01185{left:550.261053pt;}
.x2c_c01185{left:560.359053pt;}
.x22_c01185{left:561.604253pt;}
.xa_c01185{left:562.704253pt;}
.x17_c01185{left:572.467853pt;}
.x44_c01185{left:580.665053pt;}
.xb_c01185{left:582.376653pt;}
.x4a_c01185{left:588.558653pt;}
.x3b_c01185{left:590.560653pt;}
.x38_c01185{left:609.097853pt;}
.xc_c01185{left:610.074653pt;}
.x2d_c01185{left:620.304653pt;}
.x23_c01185{left:627.925453pt;}
.x3c_c01185{left:630.169453pt;}
.xd_c01185{left:631.454253pt;}
.x4b_c01185{left:636.122653pt;}
}





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

.ir_c01186:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01186{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01186;src:url('chunks/assets/font_9f595f3a950b9613e3c74cef.woff2')format("woff");}.ff1_c01186{font-family:ff1_c01186;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01186;src:url('chunks/assets/font_95a07127ad9356eb690c1016.woff2')format("woff");}.ff2_c01186{font-family:ff2_c01186;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01186;src:url('chunks/assets/font_e0b9d969f91f64d18165bc25.woff2')format("woff");}.ff3_c01186{font-family:ff3_c01186;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01186;src:url('chunks/assets/font_57f26bb0f408b0febb938245.woff2')format("woff");}.ff4_c01186{font-family:ff4_c01186;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.md_c01186{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);}
.m2c_c01186{transform:matrix(0.126017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126017,0.000000,0.000000,0.250000,0,0);}
.mf_c01186{transform:matrix(0.142460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142460,0.000000,0.000000,0.250000,0,0);}
.mb_c01186{transform:matrix(0.153254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153254,0.000000,0.000000,0.250000,0,0);}
.m3_c01186{transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);}
.m53_c01186{transform:matrix(0.176588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176588,0.000000,0.000000,0.250000,0,0);}
.m67_c01186{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m73_c01186{transform:matrix(0.189024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189024,0.000000,0.000000,0.250000,0,0);}
.me_c01186{transform:matrix(0.190476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190476,0.000000,0.000000,0.250000,0,0);}
.m22_c01186{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m1_c01186{transform:matrix(0.219885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219885,0.000000,0.000000,0.250000,0,0);}
.m62_c01186{transform:matrix(0.243929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243929,0.000000,0.000000,0.250000,0,0);}
.m15_c01186{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m12_c01186{transform:matrix(0.250059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250059,0.000000,0.000000,0.250000,0,0);}
.m8e_c01186{transform:matrix(0.250991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250991,0.000000,0.000000,0.250000,0,0);}
.m41_c01186{transform:matrix(0.251447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251447,0.000000,0.000000,0.250000,0,0);}
.m23_c01186{transform:matrix(0.256140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256140,0.000000,0.000000,0.250000,0,0);}
.m1c_c01186{transform:matrix(0.256476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256476,0.000000,0.000000,0.250000,0,0);}
.m27_c01186{transform:matrix(0.256997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256997,0.000000,0.000000,0.250000,0,0);}
.m93_c01186{transform:matrix(0.259521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259521,0.000000,0.000000,0.250000,0,0);}
.m39_c01186{transform:matrix(0.260634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260634,0.000000,0.000000,0.250000,0,0);}
.m37_c01186{transform:matrix(0.261179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261179,0.000000,0.000000,0.250000,0,0);}
.m5_c01186{transform:matrix(0.261360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261360,0.000000,0.000000,0.250000,0,0);}
.m58_c01186{transform:matrix(0.262980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262980,0.000000,0.000000,0.250000,0,0);}
.m44_c01186{transform:matrix(0.263927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263927,0.000000,0.000000,0.250000,0,0);}
.m10_c01186{transform:matrix(0.264612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264612,0.000000,0.000000,0.250000,0,0);}
.m1b_c01186{transform:matrix(0.265460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265460,0.000000,0.000000,0.250000,0,0);}
.ma_c01186{transform:matrix(0.266124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266124,0.000000,0.000000,0.250000,0,0);}
.m52_c01186{transform:matrix(0.266638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266638,0.000000,0.000000,0.250000,0,0);}
.m3b_c01186{transform:matrix(0.267299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267299,0.000000,0.000000,0.250000,0,0);}
.m78_c01186{transform:matrix(0.268394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268394,0.000000,0.000000,0.250000,0,0);}
.m6_c01186{transform:matrix(0.269184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269184,0.000000,0.000000,0.250000,0,0);}
.m6f_c01186{transform:matrix(0.269567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269567,0.000000,0.000000,0.250000,0,0);}
.m57_c01186{transform:matrix(0.270219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270219,0.000000,0.000000,0.250000,0,0);}
.m2d_c01186{transform:matrix(0.270287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270287,0.000000,0.000000,0.250000,0,0);}
.m4d_c01186{transform:matrix(0.271074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271074,0.000000,0.000000,0.250000,0,0);}
.m8c_c01186{transform:matrix(0.272956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272956,0.000000,0.000000,0.250000,0,0);}
.m1d_c01186{transform:matrix(0.273220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273220,0.000000,0.000000,0.250000,0,0);}
.m5d_c01186{transform:matrix(0.275114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275114,0.000000,0.000000,0.250000,0,0);}
.m8f_c01186{transform:matrix(0.275563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275563,0.000000,0.000000,0.250000,0,0);}
.m55_c01186{transform:matrix(0.276784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276784,0.000000,0.000000,0.250000,0,0);}
.m26_c01186{transform:matrix(0.277274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277274,0.000000,0.000000,0.250000,0,0);}
.m88_c01186{transform:matrix(0.277657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277657,0.000000,0.000000,0.250000,0,0);}
.m48_c01186{transform:matrix(0.278154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278154,0.000000,0.000000,0.250000,0,0);}
.m3a_c01186{transform:matrix(0.278731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278731,0.000000,0.000000,0.250000,0,0);}
.m2_c01186{transform:matrix(0.279587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279587,0.000000,0.000000,0.250000,0,0);}
.m6c_c01186{transform:matrix(0.279941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279941,0.000000,0.000000,0.250000,0,0);}
.m8a_c01186{transform:matrix(0.281085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281085,0.000000,0.000000,0.250000,0,0);}
.m84_c01186{transform:matrix(0.281654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281654,0.000000,0.000000,0.250000,0,0);}
.m86_c01186{transform:matrix(0.282706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282706,0.000000,0.000000,0.250000,0,0);}
.m4e_c01186{transform:matrix(0.283022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283022,0.000000,0.000000,0.250000,0,0);}
.m65_c01186{transform:matrix(0.283033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283033,0.000000,0.000000,0.250000,0,0);}
.m7a_c01186{transform:matrix(0.283073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283073,0.000000,0.000000,0.250000,0,0);}
.m90_c01186{transform:matrix(0.283852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283852,0.000000,0.000000,0.250000,0,0);}
.m1e_c01186{transform:matrix(0.286083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286083,0.000000,0.000000,0.250000,0,0);}
.m18_c01186{transform:matrix(0.286566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286566,0.000000,0.000000,0.250000,0,0);}
.m81_c01186{transform:matrix(0.286848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286848,0.000000,0.000000,0.250000,0,0);}
.m82_c01186{transform:matrix(0.287118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287118,0.000000,0.000000,0.250000,0,0);}
.m87_c01186{transform:matrix(0.287377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287377,0.000000,0.000000,0.250000,0,0);}
.m45_c01186{transform:matrix(0.287524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287524,0.000000,0.000000,0.250000,0,0);}
.m21_c01186{transform:matrix(0.287843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287843,0.000000,0.000000,0.250000,0,0);}
.m91_c01186{transform:matrix(0.288203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288203,0.000000,0.000000,0.250000,0,0);}
.m2a_c01186{transform:matrix(0.288556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288556,0.000000,0.000000,0.250000,0,0);}
.m47_c01186{transform:matrix(0.289658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289658,0.000000,0.000000,0.250000,0,0);}
.m33_c01186{transform:matrix(0.289819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289819,0.000000,0.000000,0.250000,0,0);}
.m8d_c01186{transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);}
.m74_c01186{transform:matrix(0.290976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290976,0.000000,0.000000,0.250000,0,0);}
.m60_c01186{transform:matrix(0.291067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291067,0.000000,0.000000,0.250000,0,0);}
.m0_c01186{transform:matrix(0.291533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291533,0.000000,0.000000,0.250000,0,0);}
.m6a_c01186{transform:matrix(0.295413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295413,0.000000,0.000000,0.250000,0,0);}
.m14_c01186{transform:matrix(0.296090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296090,0.000000,0.000000,0.250000,0,0);}
.m29_c01186{transform:matrix(0.297544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297544,0.000000,0.000000,0.250000,0,0);}
.m71_c01186{transform:matrix(0.297584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297584,0.000000,0.000000,0.250000,0,0);}
.m85_c01186{transform:matrix(0.298769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298769,0.000000,0.000000,0.250000,0,0);}
.m89_c01186{transform:matrix(0.298789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298789,0.000000,0.000000,0.250000,0,0);}
.m30_c01186{transform:matrix(0.298803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298803,0.000000,0.000000,0.250000,0,0);}
.m8b_c01186{transform:matrix(0.299050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299050,0.000000,0.000000,0.250000,0,0);}
.m20_c01186{transform:matrix(0.300014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300014,0.000000,0.000000,0.250000,0,0);}
.m7c_c01186{transform:matrix(0.300362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300362,0.000000,0.000000,0.250000,0,0);}
.m95_c01186{transform:matrix(0.300575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300575,0.000000,0.000000,0.250000,0,0);}
.m72_c01186{transform:matrix(0.301214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301214,0.000000,0.000000,0.250000,0,0);}
.m64_c01186{transform:matrix(0.301757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301757,0.000000,0.000000,0.250000,0,0);}
.m35_c01186{transform:matrix(0.302326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302326,0.000000,0.000000,0.250000,0,0);}
.m34_c01186{transform:matrix(0.303209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303209,0.000000,0.000000,0.250000,0,0);}
.m5c_c01186{transform:matrix(0.303440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303440,0.000000,0.000000,0.250000,0,0);}
.m4c_c01186{transform:matrix(0.303465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303465,0.000000,0.000000,0.250000,0,0);}
.m28_c01186{transform:matrix(0.303685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303685,0.000000,0.000000,0.250000,0,0);}
.m32_c01186{transform:matrix(0.304470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304470,0.000000,0.000000,0.250000,0,0);}
.m7f_c01186{transform:matrix(0.305291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305291,0.000000,0.000000,0.250000,0,0);}
.mc_c01186{transform:matrix(0.305400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305400,0.000000,0.000000,0.250000,0,0);}
.m2e_c01186{transform:matrix(0.305859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305859,0.000000,0.000000,0.250000,0,0);}
.m6e_c01186{transform:matrix(0.307232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307232,0.000000,0.000000,0.250000,0,0);}
.m94_c01186{transform:matrix(0.307729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307729,0.000000,0.000000,0.250000,0,0);}
.m1a_c01186{transform:matrix(0.307911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307911,0.000000,0.000000,0.250000,0,0);}
.m3f_c01186{transform:matrix(0.308494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308494,0.000000,0.000000,0.250000,0,0);}
.m4b_c01186{transform:matrix(0.308779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308779,0.000000,0.000000,0.250000,0,0);}
.m69_c01186{transform:matrix(0.309253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309253,0.000000,0.000000,0.250000,0,0);}
.m61_c01186{transform:matrix(0.310063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310063,0.000000,0.000000,0.250000,0,0);}
.m42_c01186{transform:matrix(0.310693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310693,0.000000,0.000000,0.250000,0,0);}
.m76_c01186{transform:matrix(0.310836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310836,0.000000,0.000000,0.250000,0,0);}
.m6b_c01186{transform:matrix(0.311791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311791,0.000000,0.000000,0.250000,0,0);}
.m16_c01186{transform:matrix(0.312435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312435,0.000000,0.000000,0.250000,0,0);}
.m51_c01186{transform:matrix(0.313170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313170,0.000000,0.000000,0.250000,0,0);}
.m63_c01186{transform:matrix(0.313623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313623,0.000000,0.000000,0.250000,0,0);}
.m2f_c01186{transform:matrix(0.314090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314090,0.000000,0.000000,0.250000,0,0);}
.m1f_c01186{transform:matrix(0.314535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314535,0.000000,0.000000,0.250000,0,0);}
.m59_c01186{transform:matrix(0.314997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314997,0.000000,0.000000,0.250000,0,0);}
.m19_c01186{transform:matrix(0.315497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315497,0.000000,0.000000,0.250000,0,0);}
.m2b_c01186{transform:matrix(0.315695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315695,0.000000,0.000000,0.250000,0,0);}
.m70_c01186{transform:matrix(0.316093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316093,0.000000,0.000000,0.250000,0,0);}
.m7_c01186{transform:matrix(0.316278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316278,0.000000,0.000000,0.250000,0,0);}
.m43_c01186{transform:matrix(0.318020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318020,0.000000,0.000000,0.250000,0,0);}
.m3c_c01186{transform:matrix(0.318692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318692,0.000000,0.000000,0.250000,0,0);}
.m83_c01186{transform:matrix(0.318779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318779,0.000000,0.000000,0.250000,0,0);}
.m80_c01186{transform:matrix(0.319705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319705,0.000000,0.000000,0.250000,0,0);}
.m3d_c01186{transform:matrix(0.322394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322394,0.000000,0.000000,0.250000,0,0);}
.m7b_c01186{transform:matrix(0.324510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324510,0.000000,0.000000,0.250000,0,0);}
.m6d_c01186{transform:matrix(0.324885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324885,0.000000,0.000000,0.250000,0,0);}
.m8_c01186{transform:matrix(0.325170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325170,0.000000,0.000000,0.250000,0,0);}
.m9_c01186{transform:matrix(0.326024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326024,0.000000,0.000000,0.250000,0,0);}
.m4_c01186{transform:matrix(0.326714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326714,0.000000,0.000000,0.250000,0,0);}
.m77_c01186{transform:matrix(0.327483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327483,0.000000,0.000000,0.250000,0,0);}
.m13_c01186{transform:matrix(0.327750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327750,0.000000,0.000000,0.250000,0,0);}
.m4f_c01186{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);}
.m31_c01186{transform:matrix(0.329880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329880,0.000000,0.000000,0.250000,0,0);}
.m40_c01186{transform:matrix(0.329956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329956,0.000000,0.000000,0.250000,0,0);}
.m3e_c01186{transform:matrix(0.330053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330053,0.000000,0.000000,0.250000,0,0);}
.m79_c01186{transform:matrix(0.331380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331380,0.000000,0.000000,0.250000,0,0);}
.m4a_c01186{transform:matrix(0.334152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334152,0.000000,0.000000,0.250000,0,0);}
.m17_c01186{transform:matrix(0.336689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336689,0.000000,0.000000,0.250000,0,0);}
.m66_c01186{transform:matrix(0.337045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337045,0.000000,0.000000,0.250000,0,0);}
.m11_c01186{transform:matrix(0.341463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341463,0.000000,0.000000,0.250000,0,0);}
.m38_c01186{transform:matrix(0.341571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341571,0.000000,0.000000,0.250000,0,0);}
.m49_c01186{transform:matrix(0.341839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341839,0.000000,0.000000,0.250000,0,0);}
.m75_c01186{transform:matrix(0.341969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341969,0.000000,0.000000,0.250000,0,0);}
.m56_c01186{transform:matrix(0.342399,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342399,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342399,0.000000,0.000000,0.250000,0,0);}
.m50_c01186{transform:matrix(0.348173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348173,0.000000,0.000000,0.250000,0,0);}
.m5f_c01186{transform:matrix(0.349653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349653,0.000000,0.000000,0.250000,0,0);}
.m5b_c01186{transform:matrix(0.349816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349816,0.000000,0.000000,0.250000,0,0);}
.m5a_c01186{transform:matrix(0.350107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350107,0.000000,0.000000,0.250000,0,0);}
.m25_c01186{transform:matrix(0.361534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361534,0.000000,0.000000,0.250000,0,0);}
.m7e_c01186{transform:matrix(0.362043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362043,0.000000,0.000000,0.250000,0,0);}
.m54_c01186{transform:matrix(0.364408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364408,0.000000,0.000000,0.250000,0,0);}
.m7d_c01186{transform:matrix(0.367214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367214,0.000000,0.000000,0.250000,0,0);}
.m92_c01186{transform:matrix(0.369472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369472,0.000000,0.000000,0.250000,0,0);}
.m36_c01186{transform:matrix(0.370440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370440,0.000000,0.000000,0.250000,0,0);}
.m24_c01186{transform:matrix(0.371041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371041,0.000000,0.000000,0.250000,0,0);}
.m46_c01186{transform:matrix(0.390139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390139,0.000000,0.000000,0.250000,0,0);}
.m68_c01186{transform:matrix(0.396432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396432,0.000000,0.000000,0.250000,0,0);}
.m5e_c01186{transform:matrix(0.402725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402725,0.000000,0.000000,0.250000,0,0);}
.v0_c01186{vertical-align:0.000000px;}
.ls2_c01186{letter-spacing:-2.702700px;}
.ls5_c01186{letter-spacing:-2.626477px;}
.lsf_c01186{letter-spacing:-1.215684px;}
.ls6_c01186{letter-spacing:0.000000px;}
.lsd_c01186{letter-spacing:0.090051px;}
.ls13_c01186{letter-spacing:0.141768px;}
.lsa_c01186{letter-spacing:0.652867px;}
.ls11_c01186{letter-spacing:1.515852px;}
.ls14_c01186{letter-spacing:2.019600px;}
.ls15_c01186{letter-spacing:2.118600px;}
.ls10_c01186{letter-spacing:2.613600px;}
.ls0_c01186{letter-spacing:2.682392px;}
.ls12_c01186{letter-spacing:3.326400px;}
.lsb_c01186{letter-spacing:3.339378px;}
.ls8_c01186{letter-spacing:3.455110px;}
.ls9_c01186{letter-spacing:3.722400px;}
.ls3_c01186{letter-spacing:3.752110px;}
.ls1_c01186{letter-spacing:3.861000px;}
.lse_c01186{letter-spacing:3.979810px;}
.ls4_c01186{letter-spacing:57.024198px;}
.lsc_c01186{letter-spacing:58.449798px;}
.ls7_c01186{letter-spacing:59.875398px;}
.sc__c01186{text-shadow:none;}
.sc0_c01186{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01186{-webkit-text-stroke:0px transparent;}
.sc0_c01186{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01186{word-spacing:-18.760550px;}
.ws1_c01186{word-spacing:0.000000px;}
._2_c01186{margin-left:-10.880474px;}
._0_c01186{margin-left:-6.003415px;}
._1_c01186{width:68.283312px;}
.fc0_c01186{color:transparent;}
.fsd_c01186{font-size:40.392000px;}
.fse_c01186{font-size:42.372000px;}
.fs9_c01186{font-size:52.272000px;}
.fs2_c01186{font-size:57.024198px;}
.fs7_c01186{font-size:58.449798px;}
.fs3_c01186{font-size:59.875398px;}
.fs8_c01186{font-size:66.330000px;}
.fsb_c01186{font-size:66.528000px;}
.fs4_c01186{font-size:69.102198px;}
.fsc_c01186{font-size:70.884000px;}
.fs5_c01186{font-size:74.448000px;}
.fsa_c01186{font-size:74.844000px;}
.fs1_c01186{font-size:75.042198px;}
.fs0_c01186{font-size:77.220000px;}
.fs6_c01186{font-size:79.596198px;}
.y0_c01186{bottom:0.000000px;}
.y1_c01186{bottom:76.500000px;}
.y19_c01186{bottom:155.297385px;}
.y17_c01186{bottom:159.217785px;}
.y18_c01186{bottom:164.563785px;}
.y16_c01186{bottom:192.362985px;}
.y15_c01186{bottom:225.869535px;}
.y14_c01186{bottom:258.296985px;}
.y13_c01186{bottom:322.092585px;}
.y12_c01186{bottom:354.173535px;}
.y11_c01186{bottom:386.600985px;}
.y10_c01186{bottom:418.676985px;}
.yf_c01186{bottom:451.109385px;}
.ye_c01186{bottom:482.833935px;}
.yd_c01186{bottom:514.909935px;}
.yc_c01186{bottom:578.700585px;}
.yb_c01186{bottom:610.425135px;}
.ya_c01186{bottom:642.857535px;}
.y9_c01186{bottom:675.646335px;}
.y8_c01186{bottom:707.009535px;}
.y7_c01186{bottom:739.441935px;}
.y6_c01186{bottom:770.805135px;}
.y5_c01186{bottom:804.301785px;}
.y4_c01186{bottom:836.377785px;}
.y3_c01186{bottom:932.254335px;}
.y2_c01186{bottom:1071.958185px;}
.h4_c01186{height:37.978116px;}
.h9_c01186{height:38.927565px;}
.h5_c01186{height:39.877015px;}
.hf_c01186{height:42.127594px;}
.h10_c01186{height:44.192672px;}
.hb_c01186{height:51.302109px;}
.h6_c01186{height:67.820028px;}
.ha_c01186{height:69.180117px;}
.hd_c01186{height:69.386625px;}
.h7_c01186{height:73.066641px;}
.hc_c01186{height:73.455293px;}
.h3_c01186{height:73.649813px;}
.he_c01186{height:73.929797px;}
.h2_c01186{height:75.787207px;}
.h8_c01186{height:78.119315px;}
.h1_c01186{height:1110.000000px;}
.h0_c01186{height:1263.000000px;}
.w1_c01186{width:775.500000px;}
.w0_c01186{width:892.500000px;}
.x0_c01186{left:0.000000px;}
.x1_c01186{left:58.500000px;}
.x8_c01186{left:85.527735px;}
.x56_c01186{left:138.161085px;}
.x39_c01186{left:139.294635px;}
.x9_c01186{left:140.348985px;}
.x4_c01186{left:142.274535px;}
.x1b_c01186{left:173.702085px;}
.x3a_c01186{left:182.711085px;}
.x14_c01186{left:195.858285px;}
.xa_c01186{left:207.857085px;}
.x5_c01186{left:209.193585px;}
.x4f_c01186{left:218.534235px;}
.x57_c01186{left:219.593535px;}
.x47_c01186{left:239.457885px;}
.x6_c01186{left:241.378485px;}
.x2c_c01186{left:262.252635px;}
.x15_c01186{left:263.316885px;}
.xb_c01186{left:274.885035px;}
.x4d_c01186{left:284.552385px;}
.x44_c01186{left:294.249435px;}
.x48_c01186{left:296.308635px;}
.x1c_c01186{left:297.689685px;}
.x22_c01186{left:308.421285px;}
.x58_c01186{left:317.405535px;}
.x16_c01186{left:328.067835px;}
.x2d_c01186{left:329.161785px;}
.x27_c01186{left:330.730935px;}
.x17_c01186{left:334.181085px;}
.x7_c01186{left:340.918035px;}
.xc_c01186{left:350.585385px;}
.x2e_c01186{left:362.405985px;}
.x3b_c01186{left:373.102935px;}
.x54_c01186{left:375.186885px;}
.xd_c01186{left:383.775135px;}
.x50_c01186{left:385.982835px;}
.x23_c01186{left:388.160835px;}
.x36_c01186{left:395.551185px;}
.x2f_c01186{left:396.734235px;}
.x24_c01186{left:405.832335px;}
.xe_c01186{left:418.707285px;}
.x28_c01186{left:429.963585px;}
.x30_c01186{left:431.022885px;}
.x1d_c01186{left:439.324035px;}
.x4e_c01186{left:440.625885px;}
.x5b_c01186{left:442.427685px;}
.x45_c01186{left:451.312935px;}
.x31_c01186{left:452.783085px;}
.x29_c01186{left:461.990085px;}
.x59_c01186{left:471.400035px;}
.x51_c01186{left:472.533585px;}
.x32_c01186{left:473.771085px;}
.x37_c01186{left:474.805635px;}
.x40_c01186{left:484.304685px;}
.x3c_c01186{left:485.834235px;}
.x5c_c01186{left:494.174985px;}
.x18_c01186{left:495.348135px;}
.x41_c01186{left:506.812335px;}
.xf_c01186{left:516.771735px;}
.x3d_c01186{left:518.182485px;}
.x10_c01186{left:522.474135px;}
.x1e_c01186{left:528.186435px;}
.x11_c01186{left:532.448385px;}
.x33_c01186{left:540.808935px;}
.x2a_c01186{left:550.481235px;}
.x4b_c01186{left:552.025635px;}
.x5a_c01186{left:560.198085px;}
.x19_c01186{left:561.975135px;}
.x42_c01186{left:563.103735px;}
.x34_c01186{left:571.919685px;}
.x49_c01186{left:573.899685px;}
.x3e_c01186{left:581.948385px;}
.x25_c01186{left:584.017485px;}
.x35_c01186{left:605.762835px;}
.x52_c01186{left:615.449985px;}
.x38_c01186{left:616.499385px;}
.x4c_c01186{left:617.751735px;}
.x3f_c01186{left:627.849735px;}
.x55_c01186{left:638.195235px;}
.x1f_c01186{left:639.586185px;}
.x26_c01186{left:649.570335px;}
.x1a_c01186{left:651.233535px;}
.x5d_c01186{left:659.935635px;}
.x43_c01186{left:671.409735px;}
.x12_c01186{left:673.389735px;}
.x20_c01186{left:675.706335px;}
.x4a_c01186{left:683.685735px;}
.x2b_c01186{left:694.491585px;}
.x53_c01186{left:703.837185px;}
.x13_c01186{left:706.327035px;}
.x2_c01186{left:711.088935px;}
.x46_c01186{left:716.860635px;}
.x21_c01186{left:718.211985px;}
.x3_c01186{left:744.783585px;}
@media print{
.v0_c01186{vertical-align:0.000000pt;}
.ls2_c01186{letter-spacing:-2.402400pt;}
.ls5_c01186{letter-spacing:-2.334646pt;}
.lsf_c01186{letter-spacing:-1.080608pt;}
.ls6_c01186{letter-spacing:0.000000pt;}
.lsd_c01186{letter-spacing:0.080045pt;}
.ls13_c01186{letter-spacing:0.126016pt;}
.lsa_c01186{letter-spacing:0.580326pt;}
.ls11_c01186{letter-spacing:1.347424pt;}
.ls14_c01186{letter-spacing:1.795200pt;}
.ls15_c01186{letter-spacing:1.883200pt;}
.ls10_c01186{letter-spacing:2.323200pt;}
.ls0_c01186{letter-spacing:2.384348pt;}
.ls12_c01186{letter-spacing:2.956800pt;}
.lsb_c01186{letter-spacing:2.968336pt;}
.ls8_c01186{letter-spacing:3.071209pt;}
.ls9_c01186{letter-spacing:3.308800pt;}
.ls3_c01186{letter-spacing:3.335209pt;}
.ls1_c01186{letter-spacing:3.432000pt;}
.lse_c01186{letter-spacing:3.537609pt;}
.ls4_c01186{letter-spacing:50.688176pt;}
.lsc_c01186{letter-spacing:51.955376pt;}
.ls7_c01186{letter-spacing:53.222576pt;}
.ws0_c01186{word-spacing:-16.676044pt;}
.ws1_c01186{word-spacing:0.000000pt;}
._2_c01186{margin-left:-9.671532pt;}
._0_c01186{margin-left:-5.336369pt;}
._1_c01186{width:60.696278pt;}
.fsd_c01186{font-size:35.904000pt;}
.fse_c01186{font-size:37.664000pt;}
.fs9_c01186{font-size:46.464000pt;}
.fs2_c01186{font-size:50.688176pt;}
.fs7_c01186{font-size:51.955376pt;}
.fs3_c01186{font-size:53.222576pt;}
.fs8_c01186{font-size:58.960000pt;}
.fsb_c01186{font-size:59.136000pt;}
.fs4_c01186{font-size:61.424176pt;}
.fsc_c01186{font-size:63.008000pt;}
.fs5_c01186{font-size:66.176000pt;}
.fsa_c01186{font-size:66.528000pt;}
.fs1_c01186{font-size:66.704176pt;}
.fs0_c01186{font-size:68.640000pt;}
.fs6_c01186{font-size:70.752176pt;}
.y0_c01186{bottom:0.000000pt;}
.y1_c01186{bottom:68.000000pt;}
.y19_c01186{bottom:138.042120pt;}
.y17_c01186{bottom:141.526920pt;}
.y18_c01186{bottom:146.278920pt;}
.y16_c01186{bottom:170.989320pt;}
.y15_c01186{bottom:200.772920pt;}
.y14_c01186{bottom:229.597320pt;}
.y13_c01186{bottom:286.304520pt;}
.y12_c01186{bottom:314.820920pt;}
.y11_c01186{bottom:343.645320pt;}
.y10_c01186{bottom:372.157320pt;}
.yf_c01186{bottom:400.986120pt;}
.ye_c01186{bottom:429.185720pt;}
.yd_c01186{bottom:457.697720pt;}
.yc_c01186{bottom:514.400520pt;}
.yb_c01186{bottom:542.600120pt;}
.ya_c01186{bottom:571.428920pt;}
.y9_c01186{bottom:600.574520pt;}
.y8_c01186{bottom:628.452920pt;}
.y7_c01186{bottom:657.281720pt;}
.y6_c01186{bottom:685.160120pt;}
.y5_c01186{bottom:714.934920pt;}
.y4_c01186{bottom:743.446920pt;}
.y3_c01186{bottom:828.670520pt;}
.y2_c01186{bottom:952.851720pt;}
.h4_c01186{height:33.758325pt;}
.h9_c01186{height:34.602280pt;}
.h5_c01186{height:35.446236pt;}
.hf_c01186{height:37.446750pt;}
.h10_c01186{height:39.282375pt;}
.hb_c01186{height:45.601875pt;}
.h6_c01186{height:60.284470pt;}
.ha_c01186{height:61.493438pt;}
.hd_c01186{height:61.677000pt;}
.h7_c01186{height:64.948125pt;}
.hc_c01186{height:65.293594pt;}
.h3_c01186{height:65.466501pt;}
.he_c01186{height:65.715375pt;}
.h2_c01186{height:67.366406pt;}
.h8_c01186{height:69.439391pt;}
.h1_c01186{height:986.666667pt;}
.h0_c01186{height:1122.666667pt;}
.w1_c01186{width:689.333333pt;}
.w0_c01186{width:793.333333pt;}
.x0_c01186{left:0.000000pt;}
.x1_c01186{left:52.000000pt;}
.x8_c01186{left:76.024653pt;}
.x56_c01186{left:122.809853pt;}
.x39_c01186{left:123.817453pt;}
.x9_c01186{left:124.754653pt;}
.x4_c01186{left:126.466253pt;}
.x1b_c01186{left:154.401853pt;}
.x3a_c01186{left:162.409853pt;}
.x14_c01186{left:174.096253pt;}
.xa_c01186{left:184.761853pt;}
.x5_c01186{left:185.949853pt;}
.x4f_c01186{left:194.252653pt;}
.x57_c01186{left:195.194253pt;}
.x47_c01186{left:212.851453pt;}
.x6_c01186{left:214.558653pt;}
.x2c_c01186{left:233.113453pt;}
.x15_c01186{left:234.059453pt;}
.xb_c01186{left:244.342253pt;}
.x4d_c01186{left:252.935453pt;}
.x44_c01186{left:261.555053pt;}
.x48_c01186{left:263.385453pt;}
.x1c_c01186{left:264.613053pt;}
.x22_c01186{left:274.152253pt;}
.x58_c01186{left:282.138253pt;}
.x16_c01186{left:291.615853pt;}
.x2d_c01186{left:292.588253pt;}
.x27_c01186{left:293.983053pt;}
.x17_c01186{left:297.049853pt;}
.x7_c01186{left:303.038253pt;}
.xc_c01186{left:311.631453pt;}
.x2e_c01186{left:322.138653pt;}
.x3b_c01186{left:331.647053pt;}
.x54_c01186{left:333.499453pt;}
.xd_c01186{left:341.133453pt;}
.x50_c01186{left:343.095853pt;}
.x23_c01186{left:345.031853pt;}
.x36_c01186{left:351.601053pt;}
.x2f_c01186{left:352.652653pt;}
.x24_c01186{left:360.739853pt;}
.xe_c01186{left:372.184253pt;}
.x28_c01186{left:382.189853pt;}
.x30_c01186{left:383.131453pt;}
.x1d_c01186{left:390.510253pt;}
.x4e_c01186{left:391.667453pt;}
.x5b_c01186{left:393.269053pt;}
.x45_c01186{left:401.167053pt;}
.x31_c01186{left:402.473853pt;}
.x29_c01186{left:410.657853pt;}
.x59_c01186{left:419.022253pt;}
.x51_c01186{left:420.029853pt;}
.x32_c01186{left:421.129853pt;}
.x37_c01186{left:422.049453pt;}
.x40_c01186{left:430.493053pt;}
.x3c_c01186{left:431.852653pt;}
.x5c_c01186{left:439.266653pt;}
.x18_c01186{left:440.309453pt;}
.x41_c01186{left:450.499853pt;}
.xf_c01186{left:459.352653pt;}
.x3d_c01186{left:460.606653pt;}
.x10_c01186{left:464.421453pt;}
.x1e_c01186{left:469.499053pt;}
.x11_c01186{left:473.287453pt;}
.x33_c01186{left:480.719053pt;}
.x2a_c01186{left:489.316653pt;}
.x4b_c01186{left:490.689453pt;}
.x5a_c01186{left:497.953853pt;}
.x19_c01186{left:499.533453pt;}
.x42_c01186{left:500.536653pt;}
.x34_c01186{left:508.373053pt;}
.x49_c01186{left:510.133053pt;}
.x3e_c01186{left:517.287453pt;}
.x25_c01186{left:519.126653pt;}
.x35_c01186{left:538.455853pt;}
.x52_c01186{left:547.066653pt;}
.x38_c01186{left:547.999453pt;}
.x4c_c01186{left:549.112653pt;}
.x3f_c01186{left:558.088653pt;}
.x55_c01186{left:567.284653pt;}
.x1f_c01186{left:568.521053pt;}
.x26_c01186{left:577.395853pt;}
.x1a_c01186{left:578.874253pt;}
.x5d_c01186{left:586.609453pt;}
.x43_c01186{left:596.808653pt;}
.x12_c01186{left:598.568653pt;}
.x20_c01186{left:600.627853pt;}
.x4a_c01186{left:607.720653pt;}
.x2b_c01186{left:617.325853pt;}
.x53_c01186{left:625.633053pt;}
.x13_c01186{left:627.846253pt;}
.x2_c01186{left:632.079053pt;}
.x46_c01186{left:637.209453pt;}
.x21_c01186{left:638.410653pt;}
.x3_c01186{left:662.029853pt;}
}





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

.ir_c01187:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01187{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01187;src:url('chunks/assets/font_96516bfee7e351b55e654888.woff2')format("woff");}.ff1_c01187{font-family:ff1_c01187;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01187;src:url('chunks/assets/font_0d5b63c39da577e8e44b1691.woff2')format("woff");}.ff2_c01187{font-family:ff2_c01187;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01187;src:url('chunks/assets/font_46f8f71a74e1ee8146ebde7a.woff2')format("woff");}.ff3_c01187{font-family:ff3_c01187;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01187;src:url('chunks/assets/font_d4dd106efcef4e2b30914949.woff2')format("woff");}.ff4_c01187{font-family:ff4_c01187;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01187;src:url('chunks/assets/font_e289691b8e8c44aa59754698.woff2')format("woff");}.ff5_c01187{font-family:ff5_c01187;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m48_c01187{transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);}
.m40_c01187{transform:matrix(0.137196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137196,0.000000,0.000000,0.250000,0,0);}
.m59_c01187{transform:matrix(0.156177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156177,0.000000,0.000000,0.250000,0,0);}
.m73_c01187{transform:matrix(0.182539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182539,0.000000,0.000000,0.250000,0,0);}
.m1b_c01187{transform:matrix(0.195946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195946,0.000000,0.000000,0.250000,0,0);}
.m6c_c01187{transform:matrix(0.204728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204728,0.000000,0.000000,0.250000,0,0);}
.m7_c01187{transform:matrix(0.213850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213850,0.000000,0.000000,0.250000,0,0);}
.m5f_c01187{transform:matrix(0.236996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236996,0.000000,0.000000,0.250000,0,0);}
.m63_c01187{transform:matrix(0.238523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238523,0.000000,0.000000,0.250000,0,0);}
.m5b_c01187{transform:matrix(0.241320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241320,0.000000,0.000000,0.250000,0,0);}
.m1d_c01187{transform:matrix(0.242014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242014,0.000000,0.000000,0.250000,0,0);}
.m14_c01187{transform:matrix(0.243822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243822,0.000000,0.000000,0.250000,0,0);}
.m1_c01187{transform:matrix(0.244941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244941,0.000000,0.000000,0.250000,0,0);}
.m45_c01187{transform:matrix(0.248996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248996,0.000000,0.000000,0.250000,0,0);}
.m51_c01187{transform:matrix(0.249024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249024,0.000000,0.000000,0.250000,0,0);}
.m0_c01187{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m69_c01187{transform:matrix(0.250466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250466,0.000000,0.000000,0.250000,0,0);}
.m47_c01187{transform:matrix(0.252831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252831,0.000000,0.000000,0.250000,0,0);}
.m2_c01187{transform:matrix(0.253175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253175,0.000000,0.000000,0.250000,0,0);}
.m72_c01187{transform:matrix(0.256745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256745,0.000000,0.000000,0.250000,0,0);}
.m7e_c01187{transform:matrix(0.259852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259852,0.000000,0.000000,0.250000,0,0);}
.m16_c01187{transform:matrix(0.259900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259900,0.000000,0.000000,0.250000,0,0);}
.m53_c01187{transform:matrix(0.260578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260578,0.000000,0.000000,0.250000,0,0);}
.m49_c01187{transform:matrix(0.260735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260735,0.000000,0.000000,0.250000,0,0);}
.m3_c01187{transform:matrix(0.261992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261992,0.000000,0.000000,0.250000,0,0);}
.m4d_c01187{transform:matrix(0.262254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262254,0.000000,0.000000,0.250000,0,0);}
.m38_c01187{transform:matrix(0.262299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262299,0.000000,0.000000,0.250000,0,0);}
.m2f_c01187{transform:matrix(0.262616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262616,0.000000,0.000000,0.250000,0,0);}
.m86_c01187{transform:matrix(0.267450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267450,0.000000,0.000000,0.250000,0,0);}
.m62_c01187{transform:matrix(0.267564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267564,0.000000,0.000000,0.250000,0,0);}
.m70_c01187{transform:matrix(0.267650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267650,0.000000,0.000000,0.250000,0,0);}
.m4_c01187{transform:matrix(0.267832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267832,0.000000,0.000000,0.250000,0,0);}
.m9_c01187{transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);}
.m34_c01187{transform:matrix(0.270128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270128,0.000000,0.000000,0.250000,0,0);}
.m20_c01187{transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270524,0.000000,0.000000,0.250000,0,0);}
.m2e_c01187{transform:matrix(0.270675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270675,0.000000,0.000000,0.250000,0,0);}
.m10_c01187{transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);}
.m11_c01187{transform:matrix(0.272684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272684,0.000000,0.000000,0.250000,0,0);}
.md_c01187{transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);}
.m82_c01187{transform:matrix(0.274692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274692,0.000000,0.000000,0.250000,0,0);}
.m81_c01187{transform:matrix(0.276366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276366,0.000000,0.000000,0.250000,0,0);}
.m3d_c01187{transform:matrix(0.276952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276952,0.000000,0.000000,0.250000,0,0);}
.m7f_c01187{transform:matrix(0.277182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277182,0.000000,0.000000,0.250000,0,0);}
.m6d_c01187{transform:matrix(0.277353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277353,0.000000,0.000000,0.250000,0,0);}
.m7a_c01187{transform:matrix(0.277400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277400,0.000000,0.000000,0.250000,0,0);}
.m12_c01187{transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);}
.m54_c01187{transform:matrix(0.278579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278579,0.000000,0.000000,0.250000,0,0);}
.m5a_c01187{transform:matrix(0.280017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280017,0.000000,0.000000,0.250000,0,0);}
.m6f_c01187{transform:matrix(0.280370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280370,0.000000,0.000000,0.250000,0,0);}
.m23_c01187{transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);}
.m55_c01187{transform:matrix(0.281445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281445,0.000000,0.000000,0.250000,0,0);}
.ma_c01187{transform:matrix(0.281755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281755,0.000000,0.000000,0.250000,0,0);}
.m66_c01187{transform:matrix(0.282109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282109,0.000000,0.000000,0.250000,0,0);}
.m58_c01187{transform:matrix(0.282600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282600,0.000000,0.000000,0.250000,0,0);}
.m5_c01187{transform:matrix(0.282853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282853,0.000000,0.000000,0.250000,0,0);}
.m75_c01187{transform:matrix(0.283438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283438,0.000000,0.000000,0.250000,0,0);}
.m35_c01187{transform:matrix(0.283539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283539,0.000000,0.000000,0.250000,0,0);}
.mb_c01187{transform:matrix(0.283970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283970,0.000000,0.000000,0.250000,0,0);}
.m31_c01187{transform:matrix(0.285247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285247,0.000000,0.000000,0.250000,0,0);}
.m2c_c01187{transform:matrix(0.285904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285904,0.000000,0.000000,0.250000,0,0);}
.m6_c01187{transform:matrix(0.285982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285982,0.000000,0.000000,0.250000,0,0);}
.m3b_c01187{transform:matrix(0.286357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286357,0.000000,0.000000,0.250000,0,0);}
.m67_c01187{transform:matrix(0.288289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288289,0.000000,0.000000,0.250000,0,0);}
.m1e_c01187{transform:matrix(0.288817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288817,0.000000,0.000000,0.250000,0,0);}
.m60_c01187{transform:matrix(0.289261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289261,0.000000,0.000000,0.250000,0,0);}
.m56_c01187{transform:matrix(0.289865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289865,0.000000,0.000000,0.250000,0,0);}
.m6b_c01187{transform:matrix(0.290328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290328,0.000000,0.000000,0.250000,0,0);}
.m18_c01187{transform:matrix(0.290456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290456,0.000000,0.000000,0.250000,0,0);}
.m4a_c01187{transform:matrix(0.290850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290850,0.000000,0.000000,0.250000,0,0);}
.m68_c01187{transform:matrix(0.291209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291209,0.000000,0.000000,0.250000,0,0);}
.m13_c01187{transform:matrix(0.291796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291796,0.000000,0.000000,0.250000,0,0);}
.m37_c01187{transform:matrix(0.292171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292171,0.000000,0.000000,0.250000,0,0);}
.m5e_c01187{transform:matrix(0.292897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292897,0.000000,0.000000,0.250000,0,0);}
.m74_c01187{transform:matrix(0.293088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293088,0.000000,0.000000,0.250000,0,0);}
.m4e_c01187{transform:matrix(0.294617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294617,0.000000,0.000000,0.250000,0,0);}
.m76_c01187{transform:matrix(0.294658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294658,0.000000,0.000000,0.250000,0,0);}
.m42_c01187{transform:matrix(0.295803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295803,0.000000,0.000000,0.250000,0,0);}
.m6a_c01187{transform:matrix(0.296064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296064,0.000000,0.000000,0.250000,0,0);}
.m85_c01187{transform:matrix(0.296165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296165,0.000000,0.000000,0.250000,0,0);}
.m77_c01187{transform:matrix(0.296260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296260,0.000000,0.000000,0.250000,0,0);}
.m7b_c01187{transform:matrix(0.296714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296714,0.000000,0.000000,0.250000,0,0);}
.m24_c01187{transform:matrix(0.296936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296936,0.000000,0.000000,0.250000,0,0);}
.m28_c01187{transform:matrix(0.299177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299177,0.000000,0.000000,0.250000,0,0);}
.m7c_c01187{transform:matrix(0.299771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299771,0.000000,0.000000,0.250000,0,0);}
.m1a_c01187{transform:matrix(0.302079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302079,0.000000,0.000000,0.250000,0,0);}
.m3f_c01187{transform:matrix(0.302214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302214,0.000000,0.000000,0.250000,0,0);}
.m3e_c01187{transform:matrix(0.302392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302392,0.000000,0.000000,0.250000,0,0);}
.m36_c01187{transform:matrix(0.302606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302606,0.000000,0.000000,0.250000,0,0);}
.m17_c01187{transform:matrix(0.302851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302851,0.000000,0.000000,0.250000,0,0);}
.m7d_c01187{transform:matrix(0.305233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305233,0.000000,0.000000,0.250000,0,0);}
.m6e_c01187{transform:matrix(0.306031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306031,0.000000,0.000000,0.250000,0,0);}
.m33_c01187{transform:matrix(0.306824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306824,0.000000,0.000000,0.250000,0,0);}
.m8_c01187{transform:matrix(0.307208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307208,0.000000,0.000000,0.250000,0,0);}
.m30_c01187{transform:matrix(0.308400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308400,0.000000,0.000000,0.250000,0,0);}
.m22_c01187{transform:matrix(0.308435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308435,0.000000,0.000000,0.250000,0,0);}
.m26_c01187{transform:matrix(0.309104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309104,0.000000,0.000000,0.250000,0,0);}
.m5c_c01187{transform:matrix(0.311189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311189,0.000000,0.000000,0.250000,0,0);}
.m83_c01187{transform:matrix(0.312699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312699,0.000000,0.000000,0.250000,0,0);}
.m71_c01187{transform:matrix(0.313241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313241,0.000000,0.000000,0.250000,0,0);}
.m39_c01187{transform:matrix(0.313557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313557,0.000000,0.000000,0.250000,0,0);}
.m19_c01187{transform:matrix(0.314296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314296,0.000000,0.000000,0.250000,0,0);}
.m4f_c01187{transform:matrix(0.314901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314901,0.000000,0.000000,0.250000,0,0);}
.m88_c01187{transform:matrix(0.315290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315290,0.000000,0.000000,0.250000,0,0);}
.me_c01187{transform:matrix(0.318813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318813,0.000000,0.000000,0.250000,0,0);}
.m4c_c01187{transform:matrix(0.319125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319125,0.000000,0.000000,0.250000,0,0);}
.mf_c01187{transform:matrix(0.320202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320202,0.000000,0.000000,0.250000,0,0);}
.m1c_c01187{transform:matrix(0.322399,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322399,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322399,0.000000,0.000000,0.250000,0,0);}
.m64_c01187{transform:matrix(0.322585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322585,0.000000,0.000000,0.250000,0,0);}
.m79_c01187{transform:matrix(0.325448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325448,0.000000,0.000000,0.250000,0,0);}
.m29_c01187{transform:matrix(0.325560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325560,0.000000,0.000000,0.250000,0,0);}
.m43_c01187{transform:matrix(0.326461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326461,0.000000,0.000000,0.250000,0,0);}
.m78_c01187{transform:matrix(0.329785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329785,0.000000,0.000000,0.250000,0,0);}
.m1f_c01187{transform:matrix(0.331064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331064,0.000000,0.000000,0.250000,0,0);}
.m4b_c01187{transform:matrix(0.331117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331117,0.000000,0.000000,0.250000,0,0);}
.m84_c01187{transform:matrix(0.331455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331455,0.000000,0.000000,0.250000,0,0);}
.m46_c01187{transform:matrix(0.333127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333127,0.000000,0.000000,0.250000,0,0);}
.m3a_c01187{transform:matrix(0.333147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333147,0.000000,0.000000,0.250000,0,0);}
.m61_c01187{transform:matrix(0.333776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333776,0.000000,0.000000,0.250000,0,0);}
.m41_c01187{transform:matrix(0.334135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334135,0.000000,0.000000,0.250000,0,0);}
.m3c_c01187{transform:matrix(0.334217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334217,0.000000,0.000000,0.250000,0,0);}
.m32_c01187{transform:matrix(0.334359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334359,0.000000,0.000000,0.250000,0,0);}
.m27_c01187{transform:matrix(0.337165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337165,0.000000,0.000000,0.250000,0,0);}
.m44_c01187{transform:matrix(0.337903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337903,0.000000,0.000000,0.250000,0,0);}
.m2d_c01187{transform:matrix(0.338050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338050,0.000000,0.000000,0.250000,0,0);}
.m50_c01187{transform:matrix(0.339739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339739,0.000000,0.000000,0.250000,0,0);}
.m80_c01187{transform:matrix(0.340091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340091,0.000000,0.000000,0.250000,0,0);}
.m52_c01187{transform:matrix(0.343665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343665,0.000000,0.000000,0.250000,0,0);}
.m25_c01187{transform:matrix(0.343964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343964,0.000000,0.000000,0.250000,0,0);}
.m65_c01187{transform:matrix(0.343979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343979,0.000000,0.000000,0.250000,0,0);}
.m2b_c01187{transform:matrix(0.344604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344604,0.000000,0.000000,0.250000,0,0);}
.m21_c01187{transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);}
.m89_c01187{transform:matrix(0.347328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347328,0.000000,0.000000,0.250000,0,0);}
.m15_c01187{transform:matrix(0.352577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352577,0.000000,0.000000,0.250000,0,0);}
.mc_c01187{transform:matrix(0.376548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376548,0.000000,0.000000,0.250000,0,0);}
.m87_c01187{transform:matrix(0.387076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387076,0.000000,0.000000,0.250000,0,0);}
.m2a_c01187{transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);}
.m5d_c01187{transform:matrix(0.404625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404625,0.000000,0.000000,0.250000,0,0);}
.m57_c01187{transform:matrix(0.407434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407434,0.000000,0.000000,0.250000,0,0);}
.v1_c01187{vertical-align:-21.364200px;}
.v0_c01187{vertical-align:0.000000px;}
.ls6_c01187{letter-spacing:-3.132367px;}
.ls16_c01187{letter-spacing:-3.104640px;}
.ls18_c01187{letter-spacing:-3.063067px;}
.lsc_c01187{letter-spacing:-3.035340px;}
.ls1_c01187{letter-spacing:-3.007627px;}
.ls1a_c01187{letter-spacing:-2.799727px;}
.ls5_c01187{letter-spacing:-2.647267px;}
.ls0_c01187{letter-spacing:0.000000px;}
.ls13_c01187{letter-spacing:2.906244px;}
.ls10_c01187{letter-spacing:2.957375px;}
.ls2_c01187{letter-spacing:2.999700px;}
.ls15_c01187{letter-spacing:3.059186px;}
.ls8_c01187{letter-spacing:3.247200px;}
.ls3_c01187{letter-spacing:3.306610px;}
.ls9_c01187{letter-spacing:3.425400px;}
.lsf_c01187{letter-spacing:3.623400px;}
.ls17_c01187{letter-spacing:3.668356px;}
.ls4_c01187{letter-spacing:3.781810px;}
.ls1b_c01187{letter-spacing:3.801610px;}
.ls12_c01187{letter-spacing:3.861000px;}
.lsa_c01187{letter-spacing:3.900610px;}
.ls19_c01187{letter-spacing:3.969900px;}
.ls14_c01187{letter-spacing:4.098610px;}
.ls11_c01187{letter-spacing:4.197610px;}
.lsd_c01187{letter-spacing:4.296610px;}
.lse_c01187{letter-spacing:31.363200px;}
.ls7_c01187{letter-spacing:52.747398px;}
.lsb_c01187{letter-spacing:58.449798px;}
.ls1c_c01187{letter-spacing:59.875398px;}
.sc__c01187{text-shadow:none;}
.sc0_c01187{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01187{-webkit-text-stroke:0px transparent;}
.sc0_c01187{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01187{word-spacing:-18.909050px;}
.ws1_c01187{word-spacing:0.000000px;}
._1_c01187{margin-left:-2.345648px;}
._4_c01187{width:3.478811px;}
._2_c01187{width:8.773311px;}
._3_c01187{width:14.143041px;}
._0_c01187{width:33.183051px;}
.fc0_c01187{color:transparent;}
.fs10_c01187{font-size:23.166000px;}
.fs11_c01187{font-size:31.363200px;}
.fs6_c01187{font-size:51.876198px;}
.fs8_c01187{font-size:52.747398px;}
.fsd_c01187{font-size:58.449798px;}
.fs1d_c01187{font-size:59.875398px;}
.fs2_c01187{font-size:59.994000px;}
.fs1_c01187{font-size:60.588000px;}
.fsa_c01187{font-size:64.944000px;}
.fs3_c01187{font-size:66.132198px;}
.fsf_c01187{font-size:66.528000px;}
.fsb_c01187{font-size:68.508000px;}
.fs15_c01187{font-size:70.884000px;}
.fs12_c01187{font-size:72.468000px;}
.fs5_c01187{font-size:74.844000px;}
.fs4_c01187{font-size:75.636198px;}
.fs1c_c01187{font-size:76.032198px;}
.fs1b_c01187{font-size:77.022198px;}
.fs14_c01187{font-size:77.220000px;}
.fsc_c01187{font-size:78.012198px;}
.fs9_c01187{font-size:78.804000px;}
.fs19_c01187{font-size:79.398000px;}
.fs1a_c01187{font-size:79.992198px;}
.fs16_c01187{font-size:81.972198px;}
.fs13_c01187{font-size:83.952198px;}
.fs0_c01187{font-size:85.932198px;}
.fse_c01187{font-size:86.724000px;}
.fs18_c01187{font-size:87.516198px;}
.fs17_c01187{font-size:88.704000px;}
.fs7_c01187{font-size:89.496198px;}
.y0_c01187{bottom:0.000000px;}
.y1_c01187{bottom:76.500000px;}
.y1c_c01187{bottom:127.146735px;}
.y1b_c01187{bottom:159.217785px;}
.y1a_c01187{bottom:193.075785px;}
.y17_c01187{bottom:257.227785px;}
.y19_c01187{bottom:288.590985px;}
.y16_c01187{bottom:289.303785px;}
.y15_c01187{bottom:321.379785px;}
.y18_c01187{bottom:337.774185px;}
.y14_c01187{bottom:385.888185px;}
.y13_c01187{bottom:449.683785px;}
.y12_c01187{bottom:513.840735px;}
.y11_c01187{bottom:545.911785px;}
.y10_c01187{bottom:606.856185px;}
.ye_c01187{bottom:609.350985px;}
.yf_c01187{bottom:617.553135px;}
.yd_c01187{bottom:630.027135px;}
.yc_c01187{bottom:642.139785px;}
.yb_c01187{bottom:706.291785px;}
.ya_c01187{bottom:738.367785px;}
.y9_c01187{bottom:770.805135px;}
.y8_c01187{bottom:802.519785px;}
.y7_c01187{bottom:834.957135px;}
.y6_c01187{bottom:866.315385px;}
.y5_c01187{bottom:898.039935px;}
.y3_c01187{bottom:929.759535px;}
.y4_c01187{bottom:935.100585px;}
.y2_c01187{bottom:1069.463385px;}
.h13_c01187{height:20.887891px;}
.h12_c01187{height:24.161414px;}
.ha_c01187{height:35.129767px;}
.hf_c01187{height:38.927565px;}
.h1f_c01187{height:39.877015px;}
.h8_c01187{height:54.105253px;}
.h4_c01187{height:62.571867px;}
.h3_c01187{height:63.191391px;}
.hc_c01187{height:67.734563px;}
.h5_c01187{height:68.973816px;}
.h11_c01187{height:69.386625px;}
.h14_c01187{height:71.123379px;}
.hd_c01187{height:71.451703px;}
.h7_c01187{height:73.455293px;}
.h17_c01187{height:73.929797px;}
.h6_c01187{height:74.232792px;}
.h1e_c01187{height:74.621444px;}
.h16_c01187{height:75.749502px;}
.he_c01187{height:76.564706px;}
.hb_c01187{height:77.341816px;}
.h1c_c01187{height:78.507968px;}
.h1d_c01187{height:80.331746px;}
.h18_c01187{height:80.451229px;}
.h15_c01187{height:82.394491px;}
.h1b_c01187{height:82.809633px;}
.h2_c01187{height:84.337753px;}
.h10_c01187{height:85.114863px;}
.h1a_c01187{height:85.892362px;}
.h19_c01187{height:87.058125px;}
.h9_c01187{height:87.835624px;}
.h1_c01187{height:1110.000000px;}
.h0_c01187{height:1263.000000px;}
.w1_c01187{width:775.500000px;}
.w0_c01187{width:892.500000px;}
.x0_c01187{left:0.000000px;}
.x1_c01187{left:58.500000px;}
.x49_c01187{left:80.152035px;}
.x39_c01187{left:81.250935px;}
.x2c_c01187{left:135.012885px;}
.x4_c01187{left:136.775085px;}
.x5_c01187{left:158.723385px;}
.x24_c01187{left:170.415285px;}
.x11_c01187{left:181.191435px;}
.x47_c01187{left:191.061735px;}
.x2d_c01187{left:192.517035px;}
.x3e_c01187{left:201.659685px;}
.x25_c01187{left:202.803135px;}
.x4a_c01187{left:204.134685px;}
.x12_c01187{left:213.430785px;}
.x51_c01187{left:223.043685px;}
.x34_c01187{left:225.028635px;}
.x18_c01187{left:226.097835px;}
.x6_c01187{left:235.225635px;}
.x1d_c01187{left:236.725485px;}
.x52_c01187{left:246.397785px;}
.x48_c01187{left:257.688735px;}
.x3a_c01187{left:268.801485px;}
.x7_c01187{left:281.255685px;}
.x4c_c01187{left:288.923235px;}
.x1e_c01187{left:292.051635px;}
.x53_c01187{left:300.738885px;}
.x2e_c01187{left:302.184285px;}
.x19_c01187{left:313.485135px;}
.x8_c01187{left:324.993885px;}
.x2f_c01187{left:326.231385px;}
.x46_c01187{left:347.021385px;}
.x9_c01187{left:348.239085px;}
.x26_c01187{left:358.648935px;}
.x1a_c01187{left:368.662785px;}
.x4d_c01187{left:378.780585px;}
.x54_c01187{left:380.389335px;}
.x35_c01187{left:381.849585px;}
.x40_c01187{left:400.813035px;}
.xa_c01187{left:401.961435px;}
.x27_c01187{left:404.129535px;}
.x56_c01187{left:411.584235px;}
.x43_c01187{left:412.643535px;}
.x30_c01187{left:415.301685px;}
.x1f_c01187{left:424.771035px;}
.x59_c01187{left:434.685885px;}
.x1b_c01187{left:436.759935px;}
.x13_c01187{left:437.774685px;}
.x4e_c01187{left:447.377685px;}
.x38_c01187{left:458.341935px;}
.x14_c01187{left:469.677435px;}
.xb_c01187{left:472.078185px;}
.x55_c01187{left:477.810285px;}
.x44_c01187{left:480.770385px;}
.x28_c01187{left:481.869285px;}
.x41_c01187{left:490.541685px;}
.xc_c01187{left:502.629585px;}
.x5a_c01187{left:512.648385px;}
.x31_c01187{left:514.430385px;}
.x36_c01187{left:523.157235px;}
.x45_c01187{left:524.864985px;}
.x4f_c01187{left:534.967935px;}
.x32_c01187{left:536.913285px;}
.x29_c01187{left:545.630235px;}
.x20_c01187{left:547.219185px;}
.x5b_c01187{left:556.426185px;}
.xd_c01187{left:557.911185px;}
.x37_c01187{left:567.687435px;}
.x3b_c01187{left:578.394285px;}
.x21_c01187{left:579.646635px;}
.x50_c01187{left:590.244585px;}
.xe_c01187{left:591.422685px;}
.x15_c01187{left:602.094885px;}
.x42_c01187{left:610.747485px;}
.x1c_c01187{left:623.221485px;}
.x22_c01187{left:624.468885px;}
.x4b_c01187{left:629.908935px;}
.x16_c01187{left:634.601535px;}
.x23_c01187{left:656.594385px;}
.xf_c01187{left:659.430735px;}
.x2a_c01187{left:667.969485px;}
.x57_c01187{left:669.627735px;}
.x2b_c01187{left:701.084985px;}
.x10_c01187{left:703.817385px;}
.x3d_c01187{left:705.040035px;}
.x3f_c01187{left:706.569585px;}
.x3c_c01187{left:710.544435px;}
.x33_c01187{left:711.905685px;}
.x17_c01187{left:712.915485px;}
.x2_c01187{left:714.311385px;}
.x3_c01187{left:726.419085px;}
.x58_c01187{left:733.586685px;}
@media print{
.v1_c01187{vertical-align:-18.990400pt;}
.v0_c01187{vertical-align:0.000000pt;}
.ls6_c01187{letter-spacing:-2.784326pt;}
.ls16_c01187{letter-spacing:-2.759680pt;}
.ls18_c01187{letter-spacing:-2.722726pt;}
.lsc_c01187{letter-spacing:-2.698080pt;}
.ls1_c01187{letter-spacing:-2.673446pt;}
.ls1a_c01187{letter-spacing:-2.488646pt;}
.ls5_c01187{letter-spacing:-2.353126pt;}
.ls0_c01187{letter-spacing:0.000000pt;}
.ls13_c01187{letter-spacing:2.583328pt;}
.ls10_c01187{letter-spacing:2.628778pt;}
.ls2_c01187{letter-spacing:2.666400pt;}
.ls15_c01187{letter-spacing:2.719277pt;}
.ls8_c01187{letter-spacing:2.886400pt;}
.ls3_c01187{letter-spacing:2.939209pt;}
.ls9_c01187{letter-spacing:3.044800pt;}
.lsf_c01187{letter-spacing:3.220800pt;}
.ls17_c01187{letter-spacing:3.260761pt;}
.ls4_c01187{letter-spacing:3.361609pt;}
.ls1b_c01187{letter-spacing:3.379209pt;}
.ls12_c01187{letter-spacing:3.432000pt;}
.lsa_c01187{letter-spacing:3.467209pt;}
.ls19_c01187{letter-spacing:3.528800pt;}
.ls14_c01187{letter-spacing:3.643209pt;}
.ls11_c01187{letter-spacing:3.731209pt;}
.lsd_c01187{letter-spacing:3.819209pt;}
.lse_c01187{letter-spacing:27.878400pt;}
.ls7_c01187{letter-spacing:46.886576pt;}
.lsb_c01187{letter-spacing:51.955376pt;}
.ls1c_c01187{letter-spacing:53.222576pt;}
.ws0_c01187{word-spacing:-16.808044pt;}
.ws1_c01187{word-spacing:0.000000pt;}
._1_c01187{margin-left:-2.085021pt;}
._4_c01187{width:3.092276pt;}
._2_c01187{width:7.798498pt;}
._3_c01187{width:12.571592pt;}
._0_c01187{width:29.496045pt;}
.fs10_c01187{font-size:20.592000pt;}
.fs11_c01187{font-size:27.878400pt;}
.fs6_c01187{font-size:46.112176pt;}
.fs8_c01187{font-size:46.886576pt;}
.fsd_c01187{font-size:51.955376pt;}
.fs1d_c01187{font-size:53.222576pt;}
.fs2_c01187{font-size:53.328000pt;}
.fs1_c01187{font-size:53.856000pt;}
.fsa_c01187{font-size:57.728000pt;}
.fs3_c01187{font-size:58.784176pt;}
.fsf_c01187{font-size:59.136000pt;}
.fsb_c01187{font-size:60.896000pt;}
.fs15_c01187{font-size:63.008000pt;}
.fs12_c01187{font-size:64.416000pt;}
.fs5_c01187{font-size:66.528000pt;}
.fs4_c01187{font-size:67.232176pt;}
.fs1c_c01187{font-size:67.584176pt;}
.fs1b_c01187{font-size:68.464176pt;}
.fs14_c01187{font-size:68.640000pt;}
.fsc_c01187{font-size:69.344176pt;}
.fs9_c01187{font-size:70.048000pt;}
.fs19_c01187{font-size:70.576000pt;}
.fs1a_c01187{font-size:71.104176pt;}
.fs16_c01187{font-size:72.864176pt;}
.fs13_c01187{font-size:74.624176pt;}
.fs0_c01187{font-size:76.384176pt;}
.fse_c01187{font-size:77.088000pt;}
.fs18_c01187{font-size:77.792176pt;}
.fs17_c01187{font-size:78.848000pt;}
.fs7_c01187{font-size:79.552176pt;}
.y0_c01187{bottom:0.000000pt;}
.y1_c01187{bottom:68.000000pt;}
.y1c_c01187{bottom:113.019320pt;}
.y1b_c01187{bottom:141.526920pt;}
.y1a_c01187{bottom:171.622920pt;}
.y17_c01187{bottom:228.646920pt;}
.y19_c01187{bottom:256.525320pt;}
.y16_c01187{bottom:257.158920pt;}
.y15_c01187{bottom:285.670920pt;}
.y18_c01187{bottom:300.243720pt;}
.y14_c01187{bottom:343.011720pt;}
.y13_c01187{bottom:399.718920pt;}
.y12_c01187{bottom:456.747320pt;}
.y11_c01187{bottom:485.254920pt;}
.y10_c01187{bottom:539.427720pt;}
.ye_c01187{bottom:541.645320pt;}
.yf_c01187{bottom:548.936120pt;}
.yd_c01187{bottom:560.024120pt;}
.yc_c01187{bottom:570.790920pt;}
.yb_c01187{bottom:627.814920pt;}
.ya_c01187{bottom:656.326920pt;}
.y9_c01187{bottom:685.160120pt;}
.y8_c01187{bottom:713.350920pt;}
.y7_c01187{bottom:742.184120pt;}
.y6_c01187{bottom:770.058120pt;}
.y5_c01187{bottom:798.257720pt;}
.y3_c01187{bottom:826.452920pt;}
.y4_c01187{bottom:831.200520pt;}
.y2_c01187{bottom:950.634120pt;}
.h13_c01187{height:18.567014pt;}
.h12_c01187{height:21.476813pt;}
.ha_c01187{height:31.226460pt;}
.hf_c01187{height:34.602280pt;}
.h1f_c01187{height:35.446236pt;}
.h8_c01187{height:48.093559pt;}
.h4_c01187{height:55.619438pt;}
.h3_c01187{height:56.170125pt;}
.hc_c01187{height:60.208500pt;}
.h5_c01187{height:61.310059pt;}
.h11_c01187{height:61.677000pt;}
.h14_c01187{height:63.220781pt;}
.hd_c01187{height:63.512625pt;}
.h7_c01187{height:65.293594pt;}
.h17_c01187{height:65.715375pt;}
.h6_c01187{height:65.984704pt;}
.h1e_c01187{height:66.330173pt;}
.h16_c01187{height:67.332891pt;}
.he_c01187{height:68.057516pt;}
.hb_c01187{height:68.748281pt;}
.h1c_c01187{height:69.784860pt;}
.h1d_c01187{height:71.405996pt;}
.h18_c01187{height:71.512204pt;}
.h15_c01187{height:73.239548pt;}
.h1b_c01187{height:73.608563pt;}
.h2_c01187{height:74.966891pt;}
.h10_c01187{height:75.657656pt;}
.h1a_c01187{height:76.348766pt;}
.h19_c01187{height:77.385000pt;}
.h9_c01187{height:78.076110pt;}
.h1_c01187{height:986.666667pt;}
.h0_c01187{height:1122.666667pt;}
.w1_c01187{width:689.333333pt;}
.w0_c01187{width:793.333333pt;}
.x0_c01187{left:0.000000pt;}
.x1_c01187{left:52.000000pt;}
.x49_c01187{left:71.246253pt;}
.x39_c01187{left:72.223053pt;}
.x2c_c01187{left:120.011453pt;}
.x4_c01187{left:121.577853pt;}
.x5_c01187{left:141.087453pt;}
.x24_c01187{left:151.480253pt;}
.x11_c01187{left:161.059053pt;}
.x47_c01187{left:169.832653pt;}
.x2d_c01187{left:171.126253pt;}
.x3e_c01187{left:179.253053pt;}
.x25_c01187{left:180.269453pt;}
.x4a_c01187{left:181.453053pt;}
.x12_c01187{left:189.716253pt;}
.x51_c01187{left:198.261053pt;}
.x34_c01187{left:200.025453pt;}
.x18_c01187{left:200.975853pt;}
.x6_c01187{left:209.089453pt;}
.x1d_c01187{left:210.422653pt;}
.x52_c01187{left:219.020253pt;}
.x48_c01187{left:229.056653pt;}
.x3a_c01187{left:238.934653pt;}
.x7_c01187{left:250.005053pt;}
.x4c_c01187{left:256.820653pt;}
.x1e_c01187{left:259.601453pt;}
.x53_c01187{left:267.323453pt;}
.x2e_c01187{left:268.608253pt;}
.x19_c01187{left:278.653453pt;}
.x8_c01187{left:288.883453pt;}
.x2f_c01187{left:289.983453pt;}
.x46_c01187{left:308.463453pt;}
.x9_c01187{left:309.545853pt;}
.x26_c01187{left:318.799053pt;}
.x1a_c01187{left:327.700253pt;}
.x4d_c01187{left:336.693853pt;}
.x54_c01187{left:338.123853pt;}
.x35_c01187{left:339.421853pt;}
.x40_c01187{left:356.278253pt;}
.xa_c01187{left:357.299053pt;}
.x27_c01187{left:359.226253pt;}
.x56_c01187{left:365.852653pt;}
.x43_c01187{left:366.794253pt;}
.x30_c01187{left:369.157053pt;}
.x1f_c01187{left:377.574253pt;}
.x59_c01187{left:386.387453pt;}
.x1b_c01187{left:388.231053pt;}
.x13_c01187{left:389.133053pt;}
.x4e_c01187{left:397.669053pt;}
.x38_c01187{left:407.415053pt;}
.x14_c01187{left:417.491053pt;}
.xb_c01187{left:419.625053pt;}
.x55_c01187{left:424.720253pt;}
.x44_c01187{left:427.351453pt;}
.x28_c01187{left:428.328253pt;}
.x41_c01187{left:436.037053pt;}
.xc_c01187{left:446.781853pt;}
.x5a_c01187{left:455.687453pt;}
.x31_c01187{left:457.271453pt;}
.x36_c01187{left:465.028653pt;}
.x45_c01187{left:466.546653pt;}
.x4f_c01187{left:475.527053pt;}
.x32_c01187{left:477.256253pt;}
.x29_c01187{left:485.004653pt;}
.x20_c01187{left:486.417053pt;}
.x5b_c01187{left:494.601053pt;}
.xd_c01187{left:495.921053pt;}
.x37_c01187{left:504.611053pt;}
.x3b_c01187{left:514.128253pt;}
.x21_c01187{left:515.241453pt;}
.x50_c01187{left:524.661853pt;}
.xe_c01187{left:525.709053pt;}
.x15_c01187{left:535.195453pt;}
.x42_c01187{left:542.886653pt;}
.x1c_c01187{left:553.974653pt;}
.x22_c01187{left:555.083453pt;}
.x4b_c01187{left:559.919053pt;}
.x16_c01187{left:564.090253pt;}
.x23_c01187{left:583.639453pt;}
.xf_c01187{left:586.160653pt;}
.x2a_c01187{left:593.750653pt;}
.x57_c01187{left:595.224653pt;}
.x2b_c01187{left:623.186653pt;}
.x10_c01187{left:625.615453pt;}
.x3d_c01187{left:626.702253pt;}
.x3f_c01187{left:628.061853pt;}
.x3c_c01187{left:631.595053pt;}
.x33_c01187{left:632.805053pt;}
.x17_c01187{left:633.702653pt;}
.x2_c01187{left:634.943453pt;}
.x3_c01187{left:645.705853pt;}
.x58_c01187{left:652.077053pt;}
}





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

.ir_c01188:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01188{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01188;src:url('chunks/assets/font_3182b765b2ad4f8885ddeed9.woff2')format("woff");}.ff1_c01188{font-family:ff1_c01188;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01188;src:url('chunks/assets/font_234efe09b8b99442352c1167.woff2')format("woff");}.ff2_c01188{font-family:ff2_c01188;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01188;src:url('chunks/assets/font_6655e58b33397f00959c65d8.woff2')format("woff");}.ff3_c01188{font-family:ff3_c01188;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m69_c01188{transform:matrix(0.135174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135174,0.000000,0.000000,0.250000,0,0);}
.m46_c01188{transform:matrix(0.146170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146170,0.000000,0.000000,0.250000,0,0);}
.m5a_c01188{transform:matrix(0.165698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165698,0.000000,0.000000,0.250000,0,0);}
.m67_c01188{transform:matrix(0.174418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174418,0.000000,0.000000,0.250000,0,0);}
.m60_c01188{transform:matrix(0.231471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231471,0.000000,0.000000,0.250000,0,0);}
.m4b_c01188{transform:matrix(0.240056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240056,0.000000,0.000000,0.250000,0,0);}
.m6b_c01188{transform:matrix(0.245710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245710,0.000000,0.000000,0.250000,0,0);}
.m49_c01188{transform:matrix(0.248100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248100,0.000000,0.000000,0.250000,0,0);}
.m10_c01188{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m61_c01188{transform:matrix(0.252810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252810,0.000000,0.000000,0.250000,0,0);}
.m77_c01188{transform:matrix(0.255322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255322,0.000000,0.000000,0.250000,0,0);}
.me_c01188{transform:matrix(0.256687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256687,0.000000,0.000000,0.250000,0,0);}
.m2e_c01188{transform:matrix(0.259123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259123,0.000000,0.000000,0.250000,0,0);}
.m36_c01188{transform:matrix(0.259874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259874,0.000000,0.000000,0.250000,0,0);}
.m6f_c01188{transform:matrix(0.261751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261751,0.000000,0.000000,0.250000,0,0);}
.m31_c01188{transform:matrix(0.265460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265460,0.000000,0.000000,0.250000,0,0);}
.m5_c01188{transform:matrix(0.265832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265832,0.000000,0.000000,0.250000,0,0);}
.m0_c01188{transform:matrix(0.267622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267622,0.000000,0.000000,0.250000,0,0);}
.md_c01188{transform:matrix(0.268580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268580,0.000000,0.000000,0.250000,0,0);}
.m2d_c01188{transform:matrix(0.268972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268972,0.000000,0.000000,0.250000,0,0);}
.m55_c01188{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m6_c01188{transform:matrix(0.269007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269007,0.000000,0.000000,0.250000,0,0);}
.m11_c01188{transform:matrix(0.270287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270287,0.000000,0.000000,0.250000,0,0);}
.mc_c01188{transform:matrix(0.270969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270969,0.000000,0.000000,0.250000,0,0);}
.m8_c01188{transform:matrix(0.271198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271198,0.000000,0.000000,0.250000,0,0);}
.m73_c01188{transform:matrix(0.271417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271417,0.000000,0.000000,0.250000,0,0);}
.m65_c01188{transform:matrix(0.271820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271820,0.000000,0.000000,0.250000,0,0);}
.m28_c01188{transform:matrix(0.272069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272069,0.000000,0.000000,0.250000,0,0);}
.m7_c01188{transform:matrix(0.272246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272246,0.000000,0.000000,0.250000,0,0);}
.m2_c01188{transform:matrix(0.273580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273580,0.000000,0.000000,0.250000,0,0);}
.m17_c01188{transform:matrix(0.275114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275114,0.000000,0.000000,0.250000,0,0);}
.m15_c01188{transform:matrix(0.275557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275557,0.000000,0.000000,0.250000,0,0);}
.m6d_c01188{transform:matrix(0.276158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276158,0.000000,0.000000,0.250000,0,0);}
.m50_c01188{transform:matrix(0.277471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277471,0.000000,0.000000,0.250000,0,0);}
.m64_c01188{transform:matrix(0.278154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278154,0.000000,0.000000,0.250000,0,0);}
.m5f_c01188{transform:matrix(0.278755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278755,0.000000,0.000000,0.250000,0,0);}
.m6c_c01188{transform:matrix(0.278809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278809,0.000000,0.000000,0.250000,0,0);}
.m2a_c01188{transform:matrix(0.280605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280605,0.000000,0.000000,0.250000,0,0);}
.m5e_c01188{transform:matrix(0.280707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280707,0.000000,0.000000,0.250000,0,0);}
.m5d_c01188{transform:matrix(0.281085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281085,0.000000,0.000000,0.250000,0,0);}
.m35_c01188{transform:matrix(0.281400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281400,0.000000,0.000000,0.250000,0,0);}
.m25_c01188{transform:matrix(0.281675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281675,0.000000,0.000000,0.250000,0,0);}
.m5c_c01188{transform:matrix(0.282117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282117,0.000000,0.000000,0.250000,0,0);}
.m1c_c01188{transform:matrix(0.282523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282523,0.000000,0.000000,0.250000,0,0);}
.m3c_c01188{transform:matrix(0.283033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283033,0.000000,0.000000,0.250000,0,0);}
.m2b_c01188{transform:matrix(0.283171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283171,0.000000,0.000000,0.250000,0,0);}
.m1_c01188{transform:matrix(0.285498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285498,0.000000,0.000000,0.250000,0,0);}
.m21_c01188{transform:matrix(0.286318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286318,0.000000,0.000000,0.250000,0,0);}
.m7e_c01188{transform:matrix(0.287524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287524,0.000000,0.000000,0.250000,0,0);}
.m54_c01188{transform:matrix(0.287913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287913,0.000000,0.000000,0.250000,0,0);}
.m45_c01188{transform:matrix(0.287933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287933,0.000000,0.000000,0.250000,0,0);}
.m62_c01188{transform:matrix(0.288208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288208,0.000000,0.000000,0.250000,0,0);}
.m70_c01188{transform:matrix(0.288484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288484,0.000000,0.000000,0.250000,0,0);}
.m4a_c01188{transform:matrix(0.289269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289269,0.000000,0.000000,0.250000,0,0);}
.m27_c01188{transform:matrix(0.289521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289521,0.000000,0.000000,0.250000,0,0);}
.m6e_c01188{transform:matrix(0.291067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291067,0.000000,0.000000,0.250000,0,0);}
.m29_c01188{transform:matrix(0.291126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291126,0.000000,0.000000,0.250000,0,0);}
.m47_c01188{transform:matrix(0.291192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291192,0.000000,0.000000,0.250000,0,0);}
.m1b_c01188{transform:matrix(0.291518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291518,0.000000,0.000000,0.250000,0,0);}
.m59_c01188{transform:matrix(0.291706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291706,0.000000,0.000000,0.250000,0,0);}
.m39_c01188{transform:matrix(0.292626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292626,0.000000,0.000000,0.250000,0,0);}
.m32_c01188{transform:matrix(0.292696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292696,0.000000,0.000000,0.250000,0,0);}
.m24_c01188{transform:matrix(0.293476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293476,0.000000,0.000000,0.250000,0,0);}
.m38_c01188{transform:matrix(0.293514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293514,0.000000,0.000000,0.250000,0,0);}
.m63_c01188{transform:matrix(0.294170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294170,0.000000,0.000000,0.250000,0,0);}
.m18_c01188{transform:matrix(0.295238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295238,0.000000,0.000000,0.250000,0,0);}
.m4f_c01188{transform:matrix(0.296116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296116,0.000000,0.000000,0.250000,0,0);}
.m7c_c01188{transform:matrix(0.297378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297378,0.000000,0.000000,0.250000,0,0);}
.m68_c01188{transform:matrix(0.297437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297437,0.000000,0.000000,0.250000,0,0);}
.m3a_c01188{transform:matrix(0.298684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298684,0.000000,0.000000,0.250000,0,0);}
.m3_c01188{transform:matrix(0.300169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300169,0.000000,0.000000,0.250000,0,0);}
.m16_c01188{transform:matrix(0.301254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301254,0.000000,0.000000,0.250000,0,0);}
.m1a_c01188{transform:matrix(0.301456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301456,0.000000,0.000000,0.250000,0,0);}
.m72_c01188{transform:matrix(0.303112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303112,0.000000,0.000000,0.250000,0,0);}
.m66_c01188{transform:matrix(0.305763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305763,0.000000,0.000000,0.250000,0,0);}
.mf_c01188{transform:matrix(0.307464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307464,0.000000,0.000000,0.250000,0,0);}
.m5b_c01188{transform:matrix(0.308348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308348,0.000000,0.000000,0.250000,0,0);}
.m58_c01188{transform:matrix(0.309253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309253,0.000000,0.000000,0.250000,0,0);}
.m79_c01188{transform:matrix(0.310833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310833,0.000000,0.000000,0.250000,0,0);}
.m3b_c01188{transform:matrix(0.310862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310862,0.000000,0.000000,0.250000,0,0);}
.m75_c01188{transform:matrix(0.311455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311455,0.000000,0.000000,0.250000,0,0);}
.m22_c01188{transform:matrix(0.311959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311959,0.000000,0.000000,0.250000,0,0);}
.m71_c01188{transform:matrix(0.312495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312495,0.000000,0.000000,0.250000,0,0);}
.m26_c01188{transform:matrix(0.312669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312669,0.000000,0.000000,0.250000,0,0);}
.m34_c01188{transform:matrix(0.312965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312965,0.000000,0.000000,0.250000,0,0);}
.m52_c01188{transform:matrix(0.313119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313119,0.000000,0.000000,0.250000,0,0);}
.m4c_c01188{transform:matrix(0.313961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313961,0.000000,0.000000,0.250000,0,0);}
.m14_c01188{transform:matrix(0.315608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315608,0.000000,0.000000,0.250000,0,0);}
.m43_c01188{transform:matrix(0.315615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315615,0.000000,0.000000,0.250000,0,0);}
.m4d_c01188{transform:matrix(0.317936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317936,0.000000,0.000000,0.250000,0,0);}
.m3e_c01188{transform:matrix(0.319272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319272,0.000000,0.000000,0.250000,0,0);}
.m44_c01188{transform:matrix(0.319740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319740,0.000000,0.000000,0.250000,0,0);}
.m48_c01188{transform:matrix(0.322419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322419,0.000000,0.000000,0.250000,0,0);}
.m56_c01188{transform:matrix(0.323105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323105,0.000000,0.000000,0.250000,0,0);}
.m19_c01188{transform:matrix(0.323316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323316,0.000000,0.000000,0.250000,0,0);}
.m76_c01188{transform:matrix(0.325099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325099,0.000000,0.000000,0.250000,0,0);}
.m23_c01188{transform:matrix(0.327750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327750,0.000000,0.000000,0.250000,0,0);}
.m42_c01188{transform:matrix(0.330498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330498,0.000000,0.000000,0.250000,0,0);}
.m37_c01188{transform:matrix(0.331133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331133,0.000000,0.000000,0.250000,0,0);}
.m51_c01188{transform:matrix(0.331604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331604,0.000000,0.000000,0.250000,0,0);}
.m33_c01188{transform:matrix(0.333487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333487,0.000000,0.000000,0.250000,0,0);}
.ma_c01188{transform:matrix(0.333620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333620,0.000000,0.000000,0.250000,0,0);}
.m2c_c01188{transform:matrix(0.334039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334039,0.000000,0.000000,0.250000,0,0);}
.m3f_c01188{transform:matrix(0.337861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337861,0.000000,0.000000,0.250000,0,0);}
.m40_c01188{transform:matrix(0.339090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339090,0.000000,0.000000,0.250000,0,0);}
.m13_c01188{transform:matrix(0.339894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339894,0.000000,0.000000,0.250000,0,0);}
.m1f_c01188{transform:matrix(0.340310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340310,0.000000,0.000000,0.250000,0,0);}
.m1e_c01188{transform:matrix(0.343491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343491,0.000000,0.000000,0.250000,0,0);}
.m78_c01188{transform:matrix(0.344431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344431,0.000000,0.000000,0.250000,0,0);}
.m6a_c01188{transform:matrix(0.345192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345192,0.000000,0.000000,0.250000,0,0);}
.m41_c01188{transform:matrix(0.348310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348310,0.000000,0.000000,0.250000,0,0);}
.m7b_c01188{transform:matrix(0.354085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354085,0.000000,0.000000,0.250000,0,0);}
.m9_c01188{transform:matrix(0.354500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01188{transform:matrix(0.356978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356978,0.000000,0.000000,0.250000,0,0);}
.m3d_c01188{transform:matrix(0.358064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358064,0.000000,0.000000,0.250000,0,0);}
.m53_c01188{transform:matrix(0.358836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358836,0.000000,0.000000,0.250000,0,0);}
.mb_c01188{transform:matrix(0.366697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366697,0.000000,0.000000,0.250000,0,0);}
.m7d_c01188{transform:matrix(0.368758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368758,0.000000,0.000000,0.250000,0,0);}
.m30_c01188{transform:matrix(0.369890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369890,0.000000,0.000000,0.250000,0,0);}
.m74_c01188{transform:matrix(0.377464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377464,0.000000,0.000000,0.250000,0,0);}
.m4_c01188{transform:matrix(0.378159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378159,0.000000,0.000000,0.250000,0,0);}
.m4e_c01188{transform:matrix(0.379592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379592,0.000000,0.000000,0.250000,0,0);}
.m20_c01188{transform:matrix(0.396432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396432,0.000000,0.000000,0.250000,0,0);}
.m12_c01188{transform:matrix(0.402725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402725,0.000000,0.000000,0.250000,0,0);}
.m2f_c01188{transform:matrix(0.408202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408202,0.000000,0.000000,0.250000,0,0);}
.m57_c01188{transform:matrix(0.409017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409017,0.000000,0.000000,0.250000,0,0);}
.m7a_c01188{transform:matrix(0.421500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421500,0.000000,0.000000,0.250000,0,0);}
.v0_c01188{vertical-align:0.000000px;}
.v1_c01188{vertical-align:15.683580px;}
.ls5_c01188{letter-spacing:-2.626477px;}
.ls7_c01188{letter-spacing:-0.915515px;}
.ls3_c01188{letter-spacing:0.000000px;}
.ls0_c01188{letter-spacing:0.165093px;}
.ls4_c01188{letter-spacing:3.204302px;}
.ls2_c01188{letter-spacing:3.752110px;}
.ls1_c01188{letter-spacing:4.078810px;}
.ls6_c01188{letter-spacing:61.300998px;}
.sc__c01188{text-shadow:none;}
.sc0_c01188{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01188{-webkit-text-stroke:0px transparent;}
.sc0_c01188{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01188{word-spacing:-18.760550px;}
.ws1_c01188{word-spacing:0.000000px;}
._2_c01188{margin-left:-21.475976px;}
._3_c01188{margin-left:-5.702436px;}
._1_c01188{margin-left:-1.312085px;}
._4_c01188{width:39.378814px;}
._0_c01188{width:42.049260px;}
.fc0_c01188{color:transparent;}
.fs6_c01188{font-size:61.300998px;}
.fs3_c01188{font-size:66.330000px;}
.fs9_c01188{font-size:67.320000px;}
.fs8_c01188{font-size:68.706198px;}
.fs2_c01188{font-size:70.092198px;}
.fsa_c01188{font-size:71.280000px;}
.fs5_c01188{font-size:74.844000px;}
.fs1_c01188{font-size:75.042198px;}
.fs7_c01188{font-size:80.388000px;}
.fs0_c01188{font-size:81.576198px;}
.fs4_c01188{font-size:131.472198px;}
.y0_c01188{bottom:0.000000px;}
.y1_c01188{bottom:76.500000px;}
.y17_c01188{bottom:132.492735px;}
.y16_c01188{bottom:164.563785px;}
.y15_c01188{bottom:197.713935px;}
.y14_c01188{bottom:218.380185px;}
.y13_c01188{bottom:230.502735px;}
.y12_c01188{bottom:262.930185px;}
.y11_c01188{bottom:327.087135px;}
.y10_c01188{bottom:358.801785px;}
.yf_c01188{bottom:423.310185px;}
.ye_c01188{bottom:486.754335px;}
.yd_c01188{bottom:515.261385px;}
.yc_c01188{bottom:519.186735px;}
.yb_c01188{bottom:583.338735px;}
.ya_c01188{bottom:615.409785px;}
.y9_c01188{bottom:648.203535px;}
.y8_c01188{bottom:711.281385px;}
.y7_c01188{bottom:743.362335px;}
.y6_c01188{bottom:775.433385px;}
.y5_c01188{bottom:839.585385px;}
.y4_c01188{bottom:904.098735px;}
.y3_c01188{bottom:937.595385px;}
.y2_c01188{bottom:1074.452985px;}
.h8_c01188{height:40.826465px;}
.hb_c01188{height:66.070898px;}
.ha_c01188{height:67.431376px;}
.h4_c01188{height:73.103972px;}
.h6_c01188{height:73.455293px;}
.h3_c01188{height:73.649813px;}
.hc_c01188{height:74.342813px;}
.h9_c01188{height:78.896426px;}
.h2_c01188{height:80.062577px;}
.h7_c01188{height:89.333393px;}
.h5_c01188{height:129.032772px;}
.h1_c01188{height:1110.000000px;}
.h0_c01188{height:1263.000000px;}
.w1_c01188{width:775.500000px;}
.w0_c01188{width:892.500000px;}
.x0_c01188{left:0.000000px;}
.x1_c01188{left:58.500000px;}
.x25_c01188{left:77.320635px;}
.xf_c01188{left:78.756135px;}
.x4f_c01188{left:131.097435px;}
.x10_c01188{left:133.166535px;}
.xd_c01188{left:135.012885px;}
.x3_c01188{left:136.091985px;}
.x11_c01188{left:167.163135px;}
.x1d_c01188{left:178.627335px;}
.xe_c01188{left:179.958885px;}
.x57_c01188{left:197.699685px;}
.x2f_c01188{left:199.154985px;}
.x26_c01188{left:200.239035px;}
.x3c_c01188{left:201.832935px;}
.x50_c01188{left:209.327235px;}
.x58_c01188{left:211.074585px;}
.x3d_c01188{left:220.900335px;}
.x3a_c01188{left:222.538785px;}
.x17_c01188{left:233.938635px;}
.x4_c01188{left:235.982985px;}
.x12_c01188{left:245.689935px;}
.x3b_c01188{left:255.827535px;}
.x44_c01188{left:265.366185px;}
.x13_c01188{left:267.801585px;}
.x31_c01188{left:276.850185px;}
.x27_c01188{left:278.825235px;}
.x22_c01188{left:287.854035px;}
.x5_c01188{left:290.477535px;}
.x45_c01188{left:298.778685px;}
.x14_c01188{left:300.521085px;}
.x51_c01188{left:309.970635px;}
.x3f_c01188{left:311.232885px;}
.x30_c01188{left:321.385335px;}
.x2b_c01188{left:332.418885px;}
.x15_c01188{left:334.032585px;}
.x6_c01188{left:335.661135px;}
.x32_c01188{left:344.387985px;}
.x2c_c01188{left:346.140285px;}
.x18_c01188{left:355.238385px;}
.x52_c01188{left:365.608635px;}
.x7_c01188{left:367.029285px;}
.x3e_c01188{left:377.795535px;}
.x33_c01188{left:388.423185px;}
.x42_c01188{left:399.595335px;}
.x16_c01188{left:412.133685px;}
.x1e_c01188{left:413.212785px;}
.x53_c01188{left:421.167435px;}
.x19_c01188{left:422.885085px;}
.x43_c01188{left:432.260385px;}
.x1f_c01188{left:433.819635px;}
.x8_c01188{left:435.651135px;}
.x54_c01188{left:442.170285px;}
.x59_c01188{left:444.179985px;}
.x23_c01188{left:445.432335px;}
.x34_c01188{left:455.956035px;}
.x20_c01188{left:468.697335px;}
.x40_c01188{left:477.498435px;}
.x46_c01188{left:499.817985px;}
.x55_c01188{left:509.227935px;}
.x35_c01188{left:510.307035px;}
.x9_c01188{left:511.386135px;}
.x24_c01188{left:521.706885px;}
.x47_c01188{left:532.057335px;}
.x1a_c01188{left:533.408685px;}
.xa_c01188{left:546.491535px;}
.x4a_c01188{left:554.545185px;}
.x21_c01188{left:556.426185px;}
.x28_c01188{left:588.724935px;}
.x56_c01188{left:608.871435px;}
.x4b_c01188{left:610.252485px;}
.x2d_c01188{left:620.964285px;}
.x36_c01188{left:622.419585px;}
.x41_c01188{left:631.814685px;}
.x1b_c01188{left:641.823585px;}
.x37_c01188{left:643.377885px;}
.xb_c01188{left:645.135135px;}
.x1c_c01188{left:654.282735px;}
.x29_c01188{left:665.355885px;}
.x48_c01188{left:675.344985px;}
.xc_c01188{left:677.889285px;}
.x4c_c01188{left:685.670685px;}
.x2a_c01188{left:687.922935px;}
.x38_c01188{left:699.174285px;}
.x4e_c01188{left:706.099335px;}
.x2e_c01188{left:709.128735px;}
.x2_c01188{left:712.168035px;}
.x5a_c01188{left:719.682135px;}
.x49_c01188{left:722.483835px;}
.x4d_c01188{left:732.349185px;}
.x39_c01188{left:744.288585px;}
@media print{
.v0_c01188{vertical-align:0.000000pt;}
.v1_c01188{vertical-align:13.940960pt;}
.ls5_c01188{letter-spacing:-2.334646pt;}
.ls7_c01188{letter-spacing:-0.813791pt;}
.ls3_c01188{letter-spacing:0.000000pt;}
.ls0_c01188{letter-spacing:0.146749pt;}
.ls4_c01188{letter-spacing:2.848268pt;}
.ls2_c01188{letter-spacing:3.335209pt;}
.ls1_c01188{letter-spacing:3.625609pt;}
.ls6_c01188{letter-spacing:54.489776pt;}
.ws0_c01188{word-spacing:-16.676044pt;}
.ws1_c01188{word-spacing:0.000000pt;}
._2_c01188{margin-left:-19.089757pt;}
._3_c01188{margin-left:-5.068832pt;}
._1_c01188{margin-left:-1.166298pt;}
._4_c01188{width:35.003390pt;}
._0_c01188{width:37.377120pt;}
.fs6_c01188{font-size:54.489776pt;}
.fs3_c01188{font-size:58.960000pt;}
.fs9_c01188{font-size:59.840000pt;}
.fs8_c01188{font-size:61.072176pt;}
.fs2_c01188{font-size:62.304176pt;}
.fsa_c01188{font-size:63.360000pt;}
.fs5_c01188{font-size:66.528000pt;}
.fs1_c01188{font-size:66.704176pt;}
.fs7_c01188{font-size:71.456000pt;}
.fs0_c01188{font-size:72.512176pt;}
.fs4_c01188{font-size:116.864176pt;}
.y0_c01188{bottom:0.000000pt;}
.y1_c01188{bottom:68.000000pt;}
.y17_c01188{bottom:117.771320pt;}
.y16_c01188{bottom:146.278920pt;}
.y15_c01188{bottom:175.745720pt;}
.y14_c01188{bottom:194.115720pt;}
.y13_c01188{bottom:204.891320pt;}
.y12_c01188{bottom:233.715720pt;}
.y11_c01188{bottom:290.744120pt;}
.y10_c01188{bottom:318.934920pt;}
.yf_c01188{bottom:376.275720pt;}
.ye_c01188{bottom:432.670520pt;}
.yd_c01188{bottom:458.010120pt;}
.yc_c01188{bottom:461.499320pt;}
.yb_c01188{bottom:518.523320pt;}
.ya_c01188{bottom:547.030920pt;}
.y9_c01188{bottom:576.180920pt;}
.y8_c01188{bottom:632.250120pt;}
.y7_c01188{bottom:660.766520pt;}
.y6_c01188{bottom:689.274120pt;}
.y5_c01188{bottom:746.298120pt;}
.y4_c01188{bottom:803.643320pt;}
.y3_c01188{bottom:833.418120pt;}
.y2_c01188{bottom:955.069320pt;}
.h8_c01188{height:36.290191pt;}
.hb_c01188{height:58.729688pt;}
.ha_c01188{height:59.939001pt;}
.h4_c01188{height:64.981309pt;}
.h6_c01188{height:65.293594pt;}
.h3_c01188{height:65.466501pt;}
.hc_c01188{height:66.082500pt;}
.h9_c01188{height:70.130156pt;}
.h2_c01188{height:71.166735pt;}
.h7_c01188{height:79.407461pt;}
.h5_c01188{height:114.695798pt;}
.h1_c01188{height:986.666667pt;}
.h0_c01188{height:1122.666667pt;}
.w1_c01188{width:689.333333pt;}
.w0_c01188{width:793.333333pt;}
.x0_c01188{left:0.000000pt;}
.x1_c01188{left:52.000000pt;}
.x25_c01188{left:68.729453pt;}
.xf_c01188{left:70.005453pt;}
.x4f_c01188{left:116.531053pt;}
.x10_c01188{left:118.370253pt;}
.xd_c01188{left:120.011453pt;}
.x3_c01188{left:120.970653pt;}
.x11_c01188{left:148.589453pt;}
.x1d_c01188{left:158.779853pt;}
.xe_c01188{left:159.963453pt;}
.x57_c01188{left:175.733053pt;}
.x2f_c01188{left:177.026653pt;}
.x26_c01188{left:177.990253pt;}
.x3c_c01188{left:179.407053pt;}
.x50_c01188{left:186.068653pt;}
.x58_c01188{left:187.621853pt;}
.x3d_c01188{left:196.355853pt;}
.x3a_c01188{left:197.812253pt;}
.x17_c01188{left:207.945453pt;}
.x4_c01188{left:209.762653pt;}
.x12_c01188{left:218.391053pt;}
.x3b_c01188{left:227.402253pt;}
.x44_c01188{left:235.881053pt;}
.x13_c01188{left:238.045853pt;}
.x31_c01188{left:246.089053pt;}
.x27_c01188{left:247.844653pt;}
.x22_c01188{left:255.870253pt;}
.x5_c01188{left:258.202253pt;}
.x45_c01188{left:265.581053pt;}
.x14_c01188{left:267.129853pt;}
.x51_c01188{left:275.529453pt;}
.x3f_c01188{left:276.651453pt;}
.x30_c01188{left:285.675853pt;}
.x2b_c01188{left:295.483453pt;}
.x15_c01188{left:296.917853pt;}
.x6_c01188{left:298.365453pt;}
.x32_c01188{left:306.122653pt;}
.x2c_c01188{left:307.680253pt;}
.x18_c01188{left:315.767453pt;}
.x52_c01188{left:324.985453pt;}
.x7_c01188{left:326.248253pt;}
.x3e_c01188{left:335.818253pt;}
.x33_c01188{left:345.265053pt;}
.x42_c01188{left:355.195853pt;}
.x16_c01188{left:366.341053pt;}
.x1e_c01188{left:367.300253pt;}
.x53_c01188{left:374.371053pt;}
.x19_c01188{left:375.897853pt;}
.x43_c01188{left:384.231453pt;}
.x1f_c01188{left:385.617453pt;}
.x8_c01188{left:387.245453pt;}
.x54_c01188{left:393.040253pt;}
.x59_c01188{left:394.826653pt;}
.x23_c01188{left:395.939853pt;}
.x34_c01188{left:405.294253pt;}
.x20_c01188{left:416.619853pt;}
.x40_c01188{left:424.443053pt;}
.x46_c01188{left:444.282653pt;}
.x55_c01188{left:452.647053pt;}
.x35_c01188{left:453.606253pt;}
.x9_c01188{left:454.565453pt;}
.x24_c01188{left:463.739453pt;}
.x47_c01188{left:472.939853pt;}
.x1a_c01188{left:474.141053pt;}
.xa_c01188{left:485.770253pt;}
.x4a_c01188{left:492.929053pt;}
.x21_c01188{left:494.601053pt;}
.x28_c01188{left:523.311053pt;}
.x56_c01188{left:541.219053pt;}
.x4b_c01188{left:542.446653pt;}
.x2d_c01188{left:551.968253pt;}
.x36_c01188{left:553.261853pt;}
.x41_c01188{left:561.613053pt;}
.x1b_c01188{left:570.509853pt;}
.x37_c01188{left:571.891453pt;}
.xb_c01188{left:573.453453pt;}
.x1c_c01188{left:581.584653pt;}
.x29_c01188{left:591.427453pt;}
.x48_c01188{left:600.306653pt;}
.xc_c01188{left:602.568253pt;}
.x4c_c01188{left:609.485053pt;}
.x2a_c01188{left:611.487053pt;}
.x38_c01188{left:621.488253pt;}
.x4e_c01188{left:627.643853pt;}
.x2e_c01188{left:630.336653pt;}
.x2_c01188{left:633.038253pt;}
.x5a_c01188{left:639.717453pt;}
.x49_c01188{left:642.207853pt;}
.x4d_c01188{left:650.977053pt;}
.x39_c01188{left:661.589853pt;}
}





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

.ir_c01189:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01189{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01189;src:url('chunks/assets/font_a7f652b91c1eb8a2a28805dc.woff2')format("woff");}.ff1_c01189{font-family:ff1_c01189;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01189;src:url('chunks/assets/font_335bf5e7de89d176d0a3b03d.woff2')format("woff");}.ff2_c01189{font-family:ff2_c01189;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01189;src:url('chunks/assets/font_f8fb2ef057b17d7965b30923.woff2')format("woff");}.ff3_c01189{font-family:ff3_c01189;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01189;src:url('chunks/assets/font_59fc8efbb7de71b14132aa30.woff2')format("woff");}.ff4_c01189{font-family:ff4_c01189;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01189;src:url('chunks/assets/font_c50192f8949a9a6979142885.woff2')format("woff");}.ff5_c01189{font-family:ff5_c01189;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01189;src:url('chunks/assets/font_4989e5fccab8866d2e195344.woff2')format("woff");}.ff6_c01189{font-family:ff6_c01189;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m25_c01189{transform:matrix(0.034884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.034884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.034884,0.000000,0.000000,0.250000,0,0);}
.m3a_c01189{transform:matrix(0.130435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130435,0.000000,0.000000,0.250000,0,0);}
.m14_c01189{transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);}
.m24_c01189{transform:matrix(0.139535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139535,0.000000,0.000000,0.250000,0,0);}
.m1c_c01189{transform:matrix(0.158914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158914,0.000000,0.000000,0.250000,0,0);}
.m26_c01189{transform:matrix(0.159884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159884,0.000000,0.000000,0.250000,0,0);}
.m1e_c01189{transform:matrix(0.164244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164244,0.000000,0.000000,0.250000,0,0);}
.m8a_c01189{transform:matrix(0.170371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170371,0.000000,0.000000,0.250000,0,0);}
.ma_c01189{transform:matrix(0.171831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171831,0.000000,0.000000,0.250000,0,0);}
.m40_c01189{transform:matrix(0.196762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196762,0.000000,0.000000,0.250000,0,0);}
.m2_c01189{transform:matrix(0.201785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201785,0.000000,0.000000,0.250000,0,0);}
.m60_c01189{transform:matrix(0.229451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229451,0.000000,0.000000,0.250000,0,0);}
.m39_c01189{transform:matrix(0.233207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233207,0.000000,0.000000,0.250000,0,0);}
.m83_c01189{transform:matrix(0.243265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243265,0.000000,0.000000,0.250000,0,0);}
.m0_c01189{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m5f_c01189{transform:matrix(0.251856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251856,0.000000,0.000000,0.250000,0,0);}
.m7e_c01189{transform:matrix(0.252902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252902,0.000000,0.000000,0.250000,0,0);}
.m7d_c01189{transform:matrix(0.253210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253210,0.000000,0.000000,0.250000,0,0);}
.m31_c01189{transform:matrix(0.254818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254818,0.000000,0.000000,0.250000,0,0);}
.m45_c01189{transform:matrix(0.255259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255259,0.000000,0.000000,0.250000,0,0);}
.m73_c01189{transform:matrix(0.255923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255923,0.000000,0.000000,0.250000,0,0);}
.m5b_c01189{transform:matrix(0.256838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256838,0.000000,0.000000,0.250000,0,0);}
.m37_c01189{transform:matrix(0.257108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257108,0.000000,0.000000,0.250000,0,0);}
.m16_c01189{transform:matrix(0.260119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260119,0.000000,0.000000,0.250000,0,0);}
.m81_c01189{transform:matrix(0.262368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262368,0.000000,0.000000,0.250000,0,0);}
.m22_c01189{transform:matrix(0.268979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268979,0.000000,0.000000,0.250000,0,0);}
.m41_c01189{transform:matrix(0.270096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270096,0.000000,0.000000,0.250000,0,0);}
.m4c_c01189{transform:matrix(0.273170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273170,0.000000,0.000000,0.250000,0,0);}
.m6_c01189{transform:matrix(0.273900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273900,0.000000,0.000000,0.250000,0,0);}
.m55_c01189{transform:matrix(0.276356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276356,0.000000,0.000000,0.250000,0,0);}
.m1b_c01189{transform:matrix(0.276549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276549,0.000000,0.000000,0.250000,0,0);}
.m15_c01189{transform:matrix(0.277188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277188,0.000000,0.000000,0.250000,0,0);}
.m32_c01189{transform:matrix(0.277251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277251,0.000000,0.000000,0.250000,0,0);}
.m50_c01189{transform:matrix(0.277456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277456,0.000000,0.000000,0.250000,0,0);}
.m2f_c01189{transform:matrix(0.278412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278412,0.000000,0.000000,0.250000,0,0);}
.m3_c01189{transform:matrix(0.278792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278792,0.000000,0.000000,0.250000,0,0);}
.m30_c01189{transform:matrix(0.278921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278921,0.000000,0.000000,0.250000,0,0);}
.m85_c01189{transform:matrix(0.279450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279450,0.000000,0.000000,0.250000,0,0);}
.m36_c01189{transform:matrix(0.280742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280742,0.000000,0.000000,0.250000,0,0);}
.mc_c01189{transform:matrix(0.281259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281259,0.000000,0.000000,0.250000,0,0);}
.m9_c01189{transform:matrix(0.281672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281672,0.000000,0.000000,0.250000,0,0);}
.m2a_c01189{transform:matrix(0.281872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281872,0.000000,0.000000,0.250000,0,0);}
.m10_c01189{transform:matrix(0.282239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282239,0.000000,0.000000,0.250000,0,0);}
.m79_c01189{transform:matrix(0.282685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282685,0.000000,0.000000,0.250000,0,0);}
.m8_c01189{transform:matrix(0.282890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282890,0.000000,0.000000,0.250000,0,0);}
.m84_c01189{transform:matrix(0.282947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282947,0.000000,0.000000,0.250000,0,0);}
.m5e_c01189{transform:matrix(0.283683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283683,0.000000,0.000000,0.250000,0,0);}
.m82_c01189{transform:matrix(0.286782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286782,0.000000,0.000000,0.250000,0,0);}
.me_c01189{transform:matrix(0.286817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286817,0.000000,0.000000,0.250000,0,0);}
.m77_c01189{transform:matrix(0.288890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288890,0.000000,0.000000,0.250000,0,0);}
.m46_c01189{transform:matrix(0.288992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288992,0.000000,0.000000,0.250000,0,0);}
.m75_c01189{transform:matrix(0.289692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289692,0.000000,0.000000,0.250000,0,0);}
.m3f_c01189{transform:matrix(0.290457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290457,0.000000,0.000000,0.250000,0,0);}
.m59_c01189{transform:matrix(0.290866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290866,0.000000,0.000000,0.250000,0,0);}
.m62_c01189{transform:matrix(0.291341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291341,0.000000,0.000000,0.250000,0,0);}
.m4a_c01189{transform:matrix(0.291762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291762,0.000000,0.000000,0.250000,0,0);}
.m66_c01189{transform:matrix(0.294412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294412,0.000000,0.000000,0.250000,0,0);}
.m89_c01189{transform:matrix(0.294958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294958,0.000000,0.000000,0.250000,0,0);}
.m6d_c01189{transform:matrix(0.295422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295422,0.000000,0.000000,0.250000,0,0);}
.m54_c01189{transform:matrix(0.295681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295681,0.000000,0.000000,0.250000,0,0);}
.m2d_c01189{transform:matrix(0.295711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295711,0.000000,0.000000,0.250000,0,0);}
.m3e_c01189{transform:matrix(0.296538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296538,0.000000,0.000000,0.250000,0,0);}
.m3d_c01189{transform:matrix(0.297003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297003,0.000000,0.000000,0.250000,0,0);}
.mb_c01189{transform:matrix(0.298356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298356,0.000000,0.000000,0.250000,0,0);}
.m2e_c01189{transform:matrix(0.299361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299361,0.000000,0.000000,0.250000,0,0);}
.m5a_c01189{transform:matrix(0.299755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299755,0.000000,0.000000,0.250000,0,0);}
.m1_c01189{transform:matrix(0.301339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301339,0.000000,0.000000,0.250000,0,0);}
.m7_c01189{transform:matrix(0.301626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301626,0.000000,0.000000,0.250000,0,0);}
.m7c_c01189{transform:matrix(0.301658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301658,0.000000,0.000000,0.250000,0,0);}
.m1d_c01189{transform:matrix(0.302179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302179,0.000000,0.000000,0.250000,0,0);}
.m29_c01189{transform:matrix(0.302198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302198,0.000000,0.000000,0.250000,0,0);}
.m43_c01189{transform:matrix(0.302677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302677,0.000000,0.000000,0.250000,0,0);}
.m6f_c01189{transform:matrix(0.303803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303803,0.000000,0.000000,0.250000,0,0);}
.m19_c01189{transform:matrix(0.303818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303818,0.000000,0.000000,0.250000,0,0);}
.m7b_c01189{transform:matrix(0.304041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304041,0.000000,0.000000,0.250000,0,0);}
.m4e_c01189{transform:matrix(0.304164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304164,0.000000,0.000000,0.250000,0,0);}
.m28_c01189{transform:matrix(0.306706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306706,0.000000,0.000000,0.250000,0,0);}
.m1f_c01189{transform:matrix(0.307263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307263,0.000000,0.000000,0.250000,0,0);}
.m76_c01189{transform:matrix(0.308126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308126,0.000000,0.000000,0.250000,0,0);}
.m4f_c01189{transform:matrix(0.308936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308936,0.000000,0.000000,0.250000,0,0);}
.m61_c01189{transform:matrix(0.308964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308964,0.000000,0.000000,0.250000,0,0);}
.m72_c01189{transform:matrix(0.309600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309600,0.000000,0.000000,0.250000,0,0);}
.m6c_c01189{transform:matrix(0.310277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310277,0.000000,0.000000,0.250000,0,0);}
.m17_c01189{transform:matrix(0.310652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310652,0.000000,0.000000,0.250000,0,0);}
.m47_c01189{transform:matrix(0.310979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310979,0.000000,0.000000,0.250000,0,0);}
.m6b_c01189{transform:matrix(0.313936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313936,0.000000,0.000000,0.250000,0,0);}
.m44_c01189{transform:matrix(0.316067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316067,0.000000,0.000000,0.250000,0,0);}
.m52_c01189{transform:matrix(0.316437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316437,0.000000,0.000000,0.250000,0,0);}
.m3b_c01189{transform:matrix(0.317689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317689,0.000000,0.000000,0.250000,0,0);}
.m20_c01189{transform:matrix(0.319208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319208,0.000000,0.000000,0.250000,0,0);}
.m5c_c01189{transform:matrix(0.319738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319738,0.000000,0.000000,0.250000,0,0);}
.m38_c01189{transform:matrix(0.319772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319772,0.000000,0.000000,0.250000,0,0);}
.m4b_c01189{transform:matrix(0.319834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319834,0.000000,0.000000,0.250000,0,0);}
.m64_c01189{transform:matrix(0.319861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319861,0.000000,0.000000,0.250000,0,0);}
.m51_c01189{transform:matrix(0.320470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320470,0.000000,0.000000,0.250000,0,0);}
.m88_c01189{transform:matrix(0.320619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320619,0.000000,0.000000,0.250000,0,0);}
.m67_c01189{transform:matrix(0.322100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322100,0.000000,0.000000,0.250000,0,0);}
.m78_c01189{transform:matrix(0.323710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323710,0.000000,0.000000,0.250000,0,0);}
.m5_c01189{transform:matrix(0.325951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325951,0.000000,0.000000,0.250000,0,0);}
.m48_c01189{transform:matrix(0.327306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327306,0.000000,0.000000,0.250000,0,0);}
.m86_c01189{transform:matrix(0.328119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328119,0.000000,0.000000,0.250000,0,0);}
.m3c_c01189{transform:matrix(0.330539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330539,0.000000,0.000000,0.250000,0,0);}
.m21_c01189{transform:matrix(0.330964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330964,0.000000,0.000000,0.250000,0,0);}
.m11_c01189{transform:matrix(0.331779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331779,0.000000,0.000000,0.250000,0,0);}
.m70_c01189{transform:matrix(0.331851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331851,0.000000,0.000000,0.250000,0,0);}
.m2c_c01189{transform:matrix(0.333545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333545,0.000000,0.000000,0.250000,0,0);}
.m87_c01189{transform:matrix(0.334731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334731,0.000000,0.000000,0.250000,0,0);}
.m1a_c01189{transform:matrix(0.336766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336766,0.000000,0.000000,0.250000,0,0);}
.m65_c01189{transform:matrix(0.337250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337250,0.000000,0.000000,0.250000,0,0);}
.m7f_c01189{transform:matrix(0.337485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337485,0.000000,0.000000,0.250000,0,0);}
.m13_c01189{transform:matrix(0.339029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339029,0.000000,0.000000,0.250000,0,0);}
.md_c01189{transform:matrix(0.342282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342282,0.000000,0.000000,0.250000,0,0);}
.mf_c01189{transform:matrix(0.342467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342467,0.000000,0.000000,0.250000,0,0);}
.m34_c01189{transform:matrix(0.342597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342597,0.000000,0.000000,0.250000,0,0);}
.m49_c01189{transform:matrix(0.343830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343830,0.000000,0.000000,0.250000,0,0);}
.m8b_c01189{transform:matrix(0.344502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344502,0.000000,0.000000,0.250000,0,0);}
.m2b_c01189{transform:matrix(0.346315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346315,0.000000,0.000000,0.250000,0,0);}
.m23_c01189{transform:matrix(0.347992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347992,0.000000,0.000000,0.250000,0,0);}
.m5d_c01189{transform:matrix(0.348644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348644,0.000000,0.000000,0.250000,0,0);}
.m71_c01189{transform:matrix(0.348873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348873,0.000000,0.000000,0.250000,0,0);}
.m35_c01189{transform:matrix(0.349763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349763,0.000000,0.000000,0.250000,0,0);}
.m53_c01189{transform:matrix(0.351926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351926,0.000000,0.000000,0.250000,0,0);}
.m63_c01189{transform:matrix(0.352824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352824,0.000000,0.000000,0.250000,0,0);}
.m12_c01189{transform:matrix(0.353514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353514,0.000000,0.000000,0.250000,0,0);}
.m7a_c01189{transform:matrix(0.358171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358171,0.000000,0.000000,0.250000,0,0);}
.m6a_c01189{transform:matrix(0.358675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358675,0.000000,0.000000,0.250000,0,0);}
.m6e_c01189{transform:matrix(0.358819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358819,0.000000,0.000000,0.250000,0,0);}
.m58_c01189{transform:matrix(0.362493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362493,0.000000,0.000000,0.250000,0,0);}
.m4d_c01189{transform:matrix(0.363529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363529,0.000000,0.000000,0.250000,0,0);}
.m68_c01189{transform:matrix(0.365654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365654,0.000000,0.000000,0.250000,0,0);}
.m69_c01189{transform:matrix(0.366016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366016,0.000000,0.000000,0.250000,0,0);}
.m74_c01189{transform:matrix(0.366152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366152,0.000000,0.000000,0.250000,0,0);}
.m80_c01189{transform:matrix(0.381275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381275,0.000000,0.000000,0.250000,0,0);}
.m42_c01189{transform:matrix(0.386227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386227,0.000000,0.000000,0.250000,0,0);}
.m18_c01189{transform:matrix(0.389138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389138,0.000000,0.000000,0.250000,0,0);}
.m56_c01189{transform:matrix(0.392664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392664,0.000000,0.000000,0.250000,0,0);}
.m27_c01189{transform:matrix(0.401251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401251,0.000000,0.000000,0.250000,0,0);}
.m4_c01189{transform:matrix(0.401732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401732,0.000000,0.000000,0.250000,0,0);}
.m33_c01189{transform:matrix(0.408109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408109,0.000000,0.000000,0.250000,0,0);}
.m57_c01189{transform:matrix(0.465953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465953,0.000000,0.000000,0.250000,0,0);}
.v0_c01189{vertical-align:0.000000px;}
.v1_c01189{vertical-align:8.573400px;}
.ls10_c01189{letter-spacing:-2.772000px;}
.ls13_c01189{letter-spacing:-2.591827px;}
.ls7_c01189{letter-spacing:-2.577967px;}
.ls16_c01189{letter-spacing:-0.953251px;}
.ls3_c01189{letter-spacing:0.000000px;}
.ls1_c01189{letter-spacing:0.185803px;}
.ls15_c01189{letter-spacing:0.792359px;}
.lsb_c01189{letter-spacing:1.577312px;}
.ls12_c01189{letter-spacing:1.915848px;}
.ls1b_c01189{letter-spacing:2.496945px;}
.lsd_c01189{letter-spacing:3.056732px;}
.ls2_c01189{letter-spacing:3.240765px;}
.lsf_c01189{letter-spacing:3.375900px;}
.ls9_c01189{letter-spacing:3.385810px;}
.lse_c01189{letter-spacing:3.405610px;}
.ls8_c01189{letter-spacing:3.484810px;}
.ls18_c01189{letter-spacing:3.643200px;}
.ls4_c01189{letter-spacing:3.682810px;}
.ls6_c01189{letter-spacing:3.702610px;}
.ls14_c01189{letter-spacing:3.841200px;}
.ls19_c01189{letter-spacing:3.870900px;}
.ls17_c01189{letter-spacing:4.108500px;}
.ls1a_c01189{letter-spacing:4.435200px;}
.ls0_c01189{letter-spacing:13.661901px;}
.lsa_c01189{letter-spacing:29.937798px;}
.ls5_c01189{letter-spacing:49.896198px;}
.lsc_c01189{letter-spacing:61.300998px;}
.ls1c_c01189{letter-spacing:64.152198px;}
.ls11_c01189{letter-spacing:65.577798px;}
.sc__c01189{text-shadow:none;}
.sc0_c01189{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01189{-webkit-text-stroke:0px transparent;}
.sc0_c01189{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01189{word-spacing:0.000000px;}
._5_c01189{margin-left:-10.165369px;}
._7_c01189{margin-left:-6.628991px;}
._3_c01189{margin-left:-5.439368px;}
._4_c01189{margin-left:-1.841499px;}
._0_c01189{width:2.443631px;}
._2_c01189{width:4.887542px;}
._1_c01189{width:24.363114px;}
._6_c01189{width:85.591915px;}
.fc0_c01189{color:transparent;}
.fs1e_c01189{font-size:22.176000px;}
.fs7_c01189{font-size:23.166000px;}
.fs0_c01189{font-size:27.720000px;}
.fs8_c01189{font-size:29.937798px;}
.fs1b_c01189{font-size:33.264000px;}
.fs1d_c01189{font-size:33.660000px;}
.fs1a_c01189{font-size:39.204000px;}
.fs4_c01189{font-size:42.966198px;}
.fs2_c01189{font-size:49.896198px;}
.fsa_c01189{font-size:61.300998px;}
.fs1c_c01189{font-size:64.152198px;}
.fsc_c01189{font-size:64.548000px;}
.fsf_c01189{font-size:65.577798px;}
.fs13_c01189{font-size:66.330000px;}
.fsd_c01189{font-size:67.518000px;}
.fs6_c01189{font-size:67.716198px;}
.fsb_c01189{font-size:68.112198px;}
.fs5_c01189{font-size:69.696198px;}
.fs9_c01189{font-size:70.092198px;}
.fs17_c01189{font-size:72.864000px;}
.fs1_c01189{font-size:73.656198px;}
.fs3_c01189{font-size:74.052198px;}
.fs12_c01189{font-size:75.240000px;}
.fs11_c01189{font-size:76.824000px;}
.fs18_c01189{font-size:77.418000px;}
.fse_c01189{font-size:79.200000px;}
.fs14_c01189{font-size:79.992198px;}
.fs15_c01189{font-size:80.784000px;}
.fs10_c01189{font-size:81.180000px;}
.fs16_c01189{font-size:82.170000px;}
.fs19_c01189{font-size:88.704000px;}
.y0_c01189{bottom:0.000000px;}
.y23_c01189{bottom:46.593009px;}
.y22_c01189{bottom:62.276985px;}
.y21_c01189{bottom:68.340735px;}
.y1_c01189{bottom:76.500000px;}
.y20_c01189{bottom:122.869935px;}
.y1d_c01189{bottom:190.229535px;}
.y1c_c01189{bottom:256.163535px;}
.y1f_c01189{bottom:286.813935px;}
.y1e_c01189{bottom:291.803535px;}
.y1b_c01189{bottom:319.602735px;}
.y1a_c01189{bottom:350.609535px;}
.y19_c01189{bottom:383.398335px;}
.y18_c01189{bottom:415.117935px;}
.y17_c01189{bottom:478.913535px;}
.y16_c01189{bottom:510.984585px;}
.y15_c01189{bottom:543.416985px;}
.y14_c01189{bottom:575.497935px;}
.y12_c01189{bottom:638.575785px;}
.y13_c01189{bottom:642.144735px;}
.y2_c01189{bottom:660.672585px;}
.y10_c01189{bottom:670.300335px;}
.y11_c01189{bottom:671.008185px;}
.yf_c01189{bottom:734.452335px;}
.ye_c01189{bottom:766.523385px;}
.yd_c01189{bottom:799.317135px;}
.yc_c01189{bottom:831.388185px;}
.y6_c01189{bottom:895.901535px;}
.yb_c01189{bottom:911.226735px;}
.ya_c01189{bottom:921.913785px;}
.y5_c01189{bottom:924.413535px;}
.y9_c01189{bottom:927.264735px;}
.y4_c01189{bottom:928.328985px;}
.y7_c01189{bottom:930.472335px;}
.y8_c01189{bottom:932.249385px;}
.y3_c01189{bottom:1077.304185px;}
.ha_c01189{height:19.938573px;}
.h1f_c01189{height:23.128875px;}
.h9_c01189{height:24.161414px;}
.h2_c01189{height:28.911094px;}
.h1e_c01189{height:33.035449px;}
.h4_c01189{height:33.230868px;}
.h1c_c01189{height:34.693313px;}
.h1b_c01189{height:38.476582px;}
.hc_c01189{height:40.826465px;}
.h1d_c01189{height:42.725364px;}
.h10_c01189{height:43.674813px;}
.h6_c01189{height:44.812402px;}
.h7_c01189{height:68.403007px;}
.h14_c01189{height:69.180117px;}
.he_c01189{height:70.419164px;}
.h8_c01189{height:70.625878px;}
.hd_c01189{height:71.038894px;}
.h18_c01189{height:71.512031px;}
.h3_c01189{height:72.289530px;}
.h5_c01189{height:72.678183px;}
.hb_c01189{height:73.103972px;}
.h19_c01189{height:75.981533px;}
.h12_c01189{height:77.424188px;}
.hf_c01189{height:77.730469px;}
.h13_c01189{height:78.472969px;}
.h16_c01189{height:79.245633px;}
.h11_c01189{height:79.673730px;}
.h17_c01189{height:80.645361px;}
.h15_c01189{height:83.429363px;}
.h1a_c01189{height:87.058125px;}
.h1_c01189{height:1110.000000px;}
.h0_c01189{height:1263.000000px;}
.w1_c01189{width:775.500000px;}
.w0_c01189{width:892.500000px;}
.x0_c01189{left:0.000000px;}
.x2_c01189{left:50.843085px;}
.x1_c01189{left:58.500000px;}
.x34_c01189{left:76.602885px;}
.x17_c01189{left:78.033435px;}
.x3a_c01189{left:122.647785px;}
.x62_c01189{left:130.736085px;}
.x4b_c01189{left:131.805285px;}
.x18_c01189{left:132.810135px;}
.x5_c01189{left:133.998135px;}
.x30_c01189{left:135.166335px;}
.x46_c01189{left:144.002085px;}
.x55_c01189{left:153.911985px;}
.x35_c01189{left:166.158285px;}
.xf_c01189{left:167.638335px;}
.x19_c01189{left:169.469835px;}
.x63_c01189{left:176.469135px;}
.x44_c01189{left:178.300635px;}
.x4c_c01189{left:187.542285px;}
.x6_c01189{left:189.388635px;}
.x65_c01189{left:198.046185px;}
.x36_c01189{left:200.075685px;}
.x66_c01189{left:208.634235px;}
.x5d_c01189{left:210.064785px;}
.x10_c01189{left:211.069635px;}
.x1a_c01189{left:212.173485px;}
.x3b_c01189{left:221.192385px;}
.x7_c01189{left:222.474435px;}
.x52_c01189{left:232.513035px;}
.x31_c01189{left:233.903985px;}
.x5e_c01189{left:243.566385px;}
.x11_c01189{left:245.635485px;}
.x4d_c01189{left:253.283235px;}
.x8_c01189{left:254.689035px;}
.x1b_c01189{left:266.672985px;}
.x32_c01189{left:268.821285px;}
.x2b_c01189{left:278.077785px;}
.x4e_c01189{left:288.418335px;}
.x64_c01189{left:297.160035px;}
.x21_c01189{left:301.278435px;}
.x58_c01189{left:310.000335px;}
.x56_c01189{left:311.227935px;}
.x3c_c01189{left:321.048735px;}
.x53_c01189{left:332.656485px;}
.x37_c01189{left:336.566985px;}
.x4f_c01189{left:343.605885px;}
.x9_c01189{left:345.496785px;}
.x54_c01189{left:364.885935px;}
.x22_c01189{left:366.227385px;}
.x57_c01189{left:376.805535px;}
.xa_c01189{left:378.077685px;}
.x3d_c01189{left:389.200335px;}
.x47_c01189{left:399.412185px;}
.x23_c01189{left:401.030835px;}
.x1c_c01189{left:409.737885px;}
.x33_c01189{left:411.727785px;}
.x59_c01189{left:412.757385px;}
.x67_c01189{left:419.781435px;}
.x12_c01189{left:422.271285px;}
.x5a_c01189{left:432.423735px;}
.x3e_c01189{left:444.467085px;}
.x38_c01189{left:455.198685px;}
.x50_c01189{left:465.534285px;}
.x48_c01189{left:477.151935px;}
.x2c_c01189{left:478.404285px;}
.x39_c01189{left:486.398535px;}
.xb_c01189{left:487.438035px;}
.x24_c01189{left:489.611085px;}
.x5f_c01189{left:500.060535px;}
.x2d_c01189{left:510.480285px;}
.x1d_c01189{left:511.668285px;}
.x68_c01189{left:519.771435px;}
.x60_c01189{left:532.577085px;}
.x13_c01189{left:533.626485px;}
.x3f_c01189{left:542.001885px;}
.x5b_c01189{left:543.254235px;}
.x2e_c01189{left:554.159085px;}
.x25_c01189{left:555.317385px;}
.xc_c01189{left:558.054735px;}
.x40_c01189{left:565.024335px;}
.xd_c01189{left:576.627135px;}
.x2f_c01189{left:578.419035px;}
.x49_c01189{left:588.116085px;}
.x41_c01189{left:598.931835px;}
.x1e_c01189{left:608.614035px;}
.x26_c01189{left:610.633635px;}
.x45_c01189{left:619.761435px;}
.xe_c01189{left:623.063085px;}
.x42_c01189{left:631.453335px;}
.x14_c01189{left:655.252935px;}
.x4a_c01189{left:664.266885px;}
.x51_c01189{left:675.335085px;}
.x1f_c01189{left:676.349835px;}
.x61_c01189{left:685.997385px;}
.x43_c01189{left:687.012135px;}
.x5c_c01189{left:697.233885px;}
.x27_c01189{left:698.857485px;}
.x20_c01189{left:699.956385px;}
.x69_c01189{left:701.604735px;}
.x15_c01189{left:702.644235px;}
.x16_c01189{left:704.431185px;}
.x3_c01189{left:709.311885px;}
.x28_c01189{left:722.409585px;}
.x29_c01189{left:731.680935px;}
.x2a_c01189{left:734.532135px;}
.x6a_c01189{left:738.006045px;}
.x4_c01189{left:757.118985px;}
@media print{
.v0_c01189{vertical-align:0.000000pt;}
.v1_c01189{vertical-align:7.620800pt;}
.ls10_c01189{letter-spacing:-2.464000pt;}
.ls13_c01189{letter-spacing:-2.303846pt;}
.ls7_c01189{letter-spacing:-2.291526pt;}
.ls16_c01189{letter-spacing:-0.847334pt;}
.ls3_c01189{letter-spacing:0.000000pt;}
.ls1_c01189{letter-spacing:0.165158pt;}
.ls15_c01189{letter-spacing:0.704319pt;}
.lsb_c01189{letter-spacing:1.402055pt;}
.ls12_c01189{letter-spacing:1.702976pt;}
.ls1b_c01189{letter-spacing:2.219507pt;}
.lsd_c01189{letter-spacing:2.717095pt;}
.ls2_c01189{letter-spacing:2.880680pt;}
.lsf_c01189{letter-spacing:3.000800pt;}
.ls9_c01189{letter-spacing:3.009609pt;}
.lse_c01189{letter-spacing:3.027209pt;}
.ls8_c01189{letter-spacing:3.097609pt;}
.ls18_c01189{letter-spacing:3.238400pt;}
.ls4_c01189{letter-spacing:3.273609pt;}
.ls6_c01189{letter-spacing:3.291209pt;}
.ls14_c01189{letter-spacing:3.414400pt;}
.ls19_c01189{letter-spacing:3.440800pt;}
.ls17_c01189{letter-spacing:3.652000pt;}
.ls1a_c01189{letter-spacing:3.942400pt;}
.ls0_c01189{letter-spacing:12.143912pt;}
.lsa_c01189{letter-spacing:26.611376pt;}
.ls5_c01189{letter-spacing:44.352176pt;}
.lsc_c01189{letter-spacing:54.489776pt;}
.ls1c_c01189{letter-spacing:57.024176pt;}
.ls11_c01189{letter-spacing:58.291376pt;}
.ws0_c01189{word-spacing:0.000000pt;}
._5_c01189{margin-left:-9.035884pt;}
._7_c01189{margin-left:-5.892436pt;}
._3_c01189{margin-left:-4.834994pt;}
._4_c01189{margin-left:-1.636888pt;}
._0_c01189{width:2.172116pt;}
._2_c01189{width:4.344482pt;}
._1_c01189{width:21.656101pt;}
._6_c01189{width:76.081702pt;}
.fs1e_c01189{font-size:19.712000pt;}
.fs7_c01189{font-size:20.592000pt;}
.fs0_c01189{font-size:24.640000pt;}
.fs8_c01189{font-size:26.611376pt;}
.fs1b_c01189{font-size:29.568000pt;}
.fs1d_c01189{font-size:29.920000pt;}
.fs1a_c01189{font-size:34.848000pt;}
.fs4_c01189{font-size:38.192176pt;}
.fs2_c01189{font-size:44.352176pt;}
.fsa_c01189{font-size:54.489776pt;}
.fs1c_c01189{font-size:57.024176pt;}
.fsc_c01189{font-size:57.376000pt;}
.fsf_c01189{font-size:58.291376pt;}
.fs13_c01189{font-size:58.960000pt;}
.fsd_c01189{font-size:60.016000pt;}
.fs6_c01189{font-size:60.192176pt;}
.fsb_c01189{font-size:60.544176pt;}
.fs5_c01189{font-size:61.952176pt;}
.fs9_c01189{font-size:62.304176pt;}
.fs17_c01189{font-size:64.768000pt;}
.fs1_c01189{font-size:65.472176pt;}
.fs3_c01189{font-size:65.824176pt;}
.fs12_c01189{font-size:66.880000pt;}
.fs11_c01189{font-size:68.288000pt;}
.fs18_c01189{font-size:68.816000pt;}
.fse_c01189{font-size:70.400000pt;}
.fs14_c01189{font-size:71.104176pt;}
.fs15_c01189{font-size:71.808000pt;}
.fs10_c01189{font-size:72.160000pt;}
.fs16_c01189{font-size:73.040000pt;}
.fs19_c01189{font-size:78.848000pt;}
.y0_c01189{bottom:0.000000pt;}
.y23_c01189{bottom:41.416008pt;}
.y22_c01189{bottom:55.357320pt;}
.y21_c01189{bottom:60.747320pt;}
.y1_c01189{bottom:68.000000pt;}
.y20_c01189{bottom:109.217720pt;}
.y1d_c01189{bottom:169.092920pt;}
.y1c_c01189{bottom:227.700920pt;}
.y1f_c01189{bottom:254.945720pt;}
.y1e_c01189{bottom:259.380920pt;}
.y1b_c01189{bottom:284.091320pt;}
.y1a_c01189{bottom:311.652920pt;}
.y19_c01189{bottom:340.798520pt;}
.y18_c01189{bottom:368.993720pt;}
.y17_c01189{bottom:425.700920pt;}
.y16_c01189{bottom:454.208520pt;}
.y15_c01189{bottom:483.037320pt;}
.y14_c01189{bottom:511.553720pt;}
.y12_c01189{bottom:567.622920pt;}
.y13_c01189{bottom:570.795320pt;}
.y2_c01189{bottom:587.264520pt;}
.y10_c01189{bottom:595.822520pt;}
.y11_c01189{bottom:596.451720pt;}
.yf_c01189{bottom:652.846520pt;}
.ye_c01189{bottom:681.354120pt;}
.yd_c01189{bottom:710.504120pt;}
.yc_c01189{bottom:739.011720pt;}
.y6_c01189{bottom:796.356920pt;}
.yb_c01189{bottom:809.979320pt;}
.ya_c01189{bottom:819.478920pt;}
.y5_c01189{bottom:821.700920pt;}
.y9_c01189{bottom:824.235320pt;}
.y4_c01189{bottom:825.181320pt;}
.y7_c01189{bottom:827.086520pt;}
.y8_c01189{bottom:828.666120pt;}
.y3_c01189{bottom:957.603720pt;}
.ha_c01189{height:17.723176pt;}
.h1f_c01189{height:20.559000pt;}
.h9_c01189{height:21.476813pt;}
.h2_c01189{height:25.698750pt;}
.h1e_c01189{height:29.364844pt;}
.h4_c01189{height:29.538549pt;}
.h1c_c01189{height:30.838500pt;}
.h1b_c01189{height:34.201406pt;}
.hc_c01189{height:36.290191pt;}
.h1d_c01189{height:37.978101pt;}
.h10_c01189{height:38.822056pt;}
.h6_c01189{height:39.833246pt;}
.h7_c01189{height:60.802673pt;}
.h14_c01189{height:61.493438pt;}
.he_c01189{height:62.594813pt;}
.h8_c01189{height:62.778559pt;}
.hd_c01189{height:63.145684pt;}
.h18_c01189{height:63.566250pt;}
.h3_c01189{height:64.257360pt;}
.h5_c01189{height:64.602829pt;}
.hb_c01189{height:64.981309pt;}
.h19_c01189{height:67.539141pt;}
.h12_c01189{height:68.821500pt;}
.hf_c01189{height:69.093750pt;}
.h13_c01189{height:69.753750pt;}
.h16_c01189{height:70.440562pt;}
.h11_c01189{height:70.821094pt;}
.h17_c01189{height:71.684766pt;}
.h15_c01189{height:74.159434pt;}
.h1a_c01189{height:77.385000pt;}
.h1_c01189{height:986.666667pt;}
.h0_c01189{height:1122.666667pt;}
.w1_c01189{width:689.333333pt;}
.w0_c01189{width:793.333333pt;}
.x0_c01189{left:0.000000pt;}
.x2_c01189{left:45.193853pt;}
.x1_c01189{left:52.000000pt;}
.x34_c01189{left:68.091453pt;}
.x17_c01189{left:69.363053pt;}
.x3a_c01189{left:109.020253pt;}
.x62_c01189{left:116.209853pt;}
.x4b_c01189{left:117.160253pt;}
.x18_c01189{left:118.053453pt;}
.x5_c01189{left:119.109453pt;}
.x30_c01189{left:120.147853pt;}
.x46_c01189{left:128.001853pt;}
.x55_c01189{left:136.810653pt;}
.x35_c01189{left:147.696253pt;}
.xf_c01189{left:149.011853pt;}
.x19_c01189{left:150.639853pt;}
.x63_c01189{left:156.861453pt;}
.x44_c01189{left:158.489453pt;}
.x4c_c01189{left:166.704253pt;}
.x6_c01189{left:168.345453pt;}
.x65_c01189{left:176.041053pt;}
.x36_c01189{left:177.845053pt;}
.x66_c01189{left:185.452653pt;}
.x5d_c01189{left:186.724253pt;}
.x10_c01189{left:187.617453pt;}
.x1a_c01189{left:188.598653pt;}
.x3b_c01189{left:196.615453pt;}
.x7_c01189{left:197.755053pt;}
.x52_c01189{left:206.678253pt;}
.x31_c01189{left:207.914653pt;}
.x5e_c01189{left:216.503453pt;}
.x11_c01189{left:218.342653pt;}
.x4d_c01189{left:225.140653pt;}
.x8_c01189{left:226.390253pt;}
.x1b_c01189{left:237.042653pt;}
.x32_c01189{left:238.952253pt;}
.x2b_c01189{left:247.180253pt;}
.x4e_c01189{left:256.371853pt;}
.x64_c01189{left:264.142253pt;}
.x21_c01189{left:267.803053pt;}
.x58_c01189{left:275.555853pt;}
.x56_c01189{left:276.647053pt;}
.x3c_c01189{left:285.376653pt;}
.x53_c01189{left:295.694653pt;}
.x37_c01189{left:299.170653pt;}
.x4f_c01189{left:305.427453pt;}
.x9_c01189{left:307.108253pt;}
.x54_c01189{left:324.343053pt;}
.x22_c01189{left:325.535453pt;}
.x57_c01189{left:334.938253pt;}
.xa_c01189{left:336.069053pt;}
.x3d_c01189{left:345.955853pt;}
.x47_c01189{left:355.033053pt;}
.x23_c01189{left:356.471853pt;}
.x1c_c01189{left:364.211453pt;}
.x33_c01189{left:365.980253pt;}
.x59_c01189{left:366.895453pt;}
.x67_c01189{left:373.139053pt;}
.x12_c01189{left:375.352253pt;}
.x5a_c01189{left:384.376653pt;}
.x3e_c01189{left:395.081853pt;}
.x38_c01189{left:404.621053pt;}
.x50_c01189{left:413.808253pt;}
.x48_c01189{left:424.135053pt;}
.x2c_c01189{left:425.248253pt;}
.x39_c01189{left:432.354253pt;}
.xb_c01189{left:433.278253pt;}
.x24_c01189{left:435.209853pt;}
.x5f_c01189{left:444.498253pt;}
.x2d_c01189{left:453.760253pt;}
.x1d_c01189{left:454.816253pt;}
.x68_c01189{left:462.019053pt;}
.x60_c01189{left:473.401853pt;}
.x13_c01189{left:474.334653pt;}
.x3f_c01189{left:481.779453pt;}
.x5b_c01189{left:482.892653pt;}
.x2e_c01189{left:492.585853pt;}
.x25_c01189{left:493.615453pt;}
.xc_c01189{left:496.048653pt;}
.x40_c01189{left:502.243853pt;}
.xd_c01189{left:512.557453pt;}
.x2f_c01189{left:514.150253pt;}
.x49_c01189{left:522.769853pt;}
.x41_c01189{left:532.383853pt;}
.x1e_c01189{left:540.990253pt;}
.x26_c01189{left:542.785453pt;}
.x45_c01189{left:550.899053pt;}
.xe_c01189{left:553.833853pt;}
.x42_c01189{left:561.291853pt;}
.x14_c01189{left:582.447053pt;}
.x4a_c01189{left:590.459453pt;}
.x51_c01189{left:600.297853pt;}
.x1f_c01189{left:601.199853pt;}
.x61_c01189{left:609.775453pt;}
.x43_c01189{left:610.677453pt;}
.x5c_c01189{left:619.763453pt;}
.x27_c01189{left:621.206653pt;}
.x20_c01189{left:622.183453pt;}
.x69_c01189{left:623.648653pt;}
.x15_c01189{left:624.572653pt;}
.x16_c01189{left:626.161053pt;}
.x3_c01189{left:630.499453pt;}
.x28_c01189{left:642.141853pt;}
.x29_c01189{left:650.383053pt;}
.x2a_c01189{left:652.917453pt;}
.x6a_c01189{left:656.005373pt;}
.x4_c01189{left:672.994653pt;}
}





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

.ir_c01190:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01190{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01190;src:url('chunks/assets/font_12ecd2ea9fddfdab9af0821a.woff2')format("woff");}.ff1_c01190{font-family:ff1_c01190;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01190;src:url('chunks/assets/font_291f8c91d2513780bc07900e.woff2')format("woff");}.ff2_c01190{font-family:ff2_c01190;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01190;src:url('chunks/assets/font_f8bf616c96e6f3bf550dfe6a.woff2')format("woff");}.ff3_c01190{font-family:ff3_c01190;line-height:0.666000;font-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_c01190{transform:matrix(0.027779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.027779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.027779,0.000000,0.000000,0.250000,0,0);}
.m64_c01190{transform:matrix(0.107639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107639,0.000000,0.000000,0.250000,0,0);}
.m36_c01190{transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);}
.m1e_c01190{transform:matrix(0.146557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146557,0.000000,0.000000,0.250000,0,0);}
.m66_c01190{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m41_c01190{transform:matrix(0.209983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209983,0.000000,0.000000,0.250000,0,0);}
.m19_c01190{transform:matrix(0.241405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241405,0.000000,0.000000,0.250000,0,0);}
.m4_c01190{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m12_c01190{transform:matrix(0.251856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251856,0.000000,0.000000,0.250000,0,0);}
.m37_c01190{transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);}
.m22_c01190{transform:matrix(0.253409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253409,0.000000,0.000000,0.250000,0,0);}
.m31_c01190{transform:matrix(0.256632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256632,0.000000,0.000000,0.250000,0,0);}
.m49_c01190{transform:matrix(0.258793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258793,0.000000,0.000000,0.250000,0,0);}
.m4f_c01190{transform:matrix(0.260578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260578,0.000000,0.000000,0.250000,0,0);}
.m42_c01190{transform:matrix(0.260602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260602,0.000000,0.000000,0.250000,0,0);}
.m4d_c01190{transform:matrix(0.261061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261061,0.000000,0.000000,0.250000,0,0);}
.m68_c01190{transform:matrix(0.261647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261647,0.000000,0.000000,0.250000,0,0);}
.m35_c01190{transform:matrix(0.267859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267859,0.000000,0.000000,0.250000,0,0);}
.m16_c01190{transform:matrix(0.269711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269711,0.000000,0.000000,0.250000,0,0);}
.m5_c01190{transform:matrix(0.269753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269753,0.000000,0.000000,0.250000,0,0);}
.m2_c01190{transform:matrix(0.273900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273900,0.000000,0.000000,0.250000,0,0);}
.m50_c01190{transform:matrix(0.274674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274674,0.000000,0.000000,0.250000,0,0);}
.m25_c01190{transform:matrix(0.275965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275965,0.000000,0.000000,0.250000,0,0);}
.m5c_c01190{transform:matrix(0.276012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276012,0.000000,0.000000,0.250000,0,0);}
.m1d_c01190{transform:matrix(0.277202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277202,0.000000,0.000000,0.250000,0,0);}
.m44_c01190{transform:matrix(0.278709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278709,0.000000,0.000000,0.250000,0,0);}
.m43_c01190{transform:matrix(0.278792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278792,0.000000,0.000000,0.250000,0,0);}
.me_c01190{transform:matrix(0.281872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281872,0.000000,0.000000,0.250000,0,0);}
.m56_c01190{transform:matrix(0.282527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282527,0.000000,0.000000,0.250000,0,0);}
.m3c_c01190{transform:matrix(0.282590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282590,0.000000,0.000000,0.250000,0,0);}
.m2c_c01190{transform:matrix(0.282599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282599,0.000000,0.000000,0.250000,0,0);}
.m9_c01190{transform:matrix(0.283683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283683,0.000000,0.000000,0.250000,0,0);}
.m34_c01190{transform:matrix(0.284402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284402,0.000000,0.000000,0.250000,0,0);}
.m5b_c01190{transform:matrix(0.286817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286817,0.000000,0.000000,0.250000,0,0);}
.m52_c01190{transform:matrix(0.289932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289932,0.000000,0.000000,0.250000,0,0);}
.m67_c01190{transform:matrix(0.290708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290708,0.000000,0.000000,0.250000,0,0);}
.m11_c01190{transform:matrix(0.291276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291276,0.000000,0.000000,0.250000,0,0);}
.m18_c01190{transform:matrix(0.291762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291762,0.000000,0.000000,0.250000,0,0);}
.m21_c01190{transform:matrix(0.292290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292290,0.000000,0.000000,0.250000,0,0);}
.m13_c01190{transform:matrix(0.292475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292475,0.000000,0.000000,0.250000,0,0);}
.md_c01190{transform:matrix(0.293037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293037,0.000000,0.000000,0.250000,0,0);}
.m2e_c01190{transform:matrix(0.293073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293073,0.000000,0.000000,0.250000,0,0);}
.m46_c01190{transform:matrix(0.293138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293138,0.000000,0.000000,0.250000,0,0);}
.m0_c01190{transform:matrix(0.294125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294125,0.000000,0.000000,0.250000,0,0);}
.m4b_c01190{transform:matrix(0.294271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294271,0.000000,0.000000,0.250000,0,0);}
.m3a_c01190{transform:matrix(0.294292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294292,0.000000,0.000000,0.250000,0,0);}
.m59_c01190{transform:matrix(0.294391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294391,0.000000,0.000000,0.250000,0,0);}
.m20_c01190{transform:matrix(0.294456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294456,0.000000,0.000000,0.250000,0,0);}
.m27_c01190{transform:matrix(0.294968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294968,0.000000,0.000000,0.250000,0,0);}
.m6_c01190{transform:matrix(0.295039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295039,0.000000,0.000000,0.250000,0,0);}
.m3_c01190{transform:matrix(0.296015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296015,0.000000,0.000000,0.250000,0,0);}
.m63_c01190{transform:matrix(0.297027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297027,0.000000,0.000000,0.250000,0,0);}
.m2f_c01190{transform:matrix(0.299162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299162,0.000000,0.000000,0.250000,0,0);}
.mf_c01190{transform:matrix(0.299216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299216,0.000000,0.000000,0.250000,0,0);}
.m7_c01190{transform:matrix(0.299654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299654,0.000000,0.000000,0.250000,0,0);}
.m53_c01190{transform:matrix(0.299910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299910,0.000000,0.000000,0.250000,0,0);}
.m57_c01190{transform:matrix(0.300803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300803,0.000000,0.000000,0.250000,0,0);}
.m5e_c01190{transform:matrix(0.300809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300809,0.000000,0.000000,0.250000,0,0);}
.m33_c01190{transform:matrix(0.301098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301098,0.000000,0.000000,0.250000,0,0);}
.m23_c01190{transform:matrix(0.302107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302107,0.000000,0.000000,0.250000,0,0);}
.m14_c01190{transform:matrix(0.302653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302653,0.000000,0.000000,0.250000,0,0);}
.m29_c01190{transform:matrix(0.307562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307562,0.000000,0.000000,0.250000,0,0);}
.m3b_c01190{transform:matrix(0.307778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307778,0.000000,0.000000,0.250000,0,0);}
.mc_c01190{transform:matrix(0.307978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307978,0.000000,0.000000,0.250000,0,0);}
.m61_c01190{transform:matrix(0.308376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308376,0.000000,0.000000,0.250000,0,0);}
.m24_c01190{transform:matrix(0.309962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309962,0.000000,0.000000,0.250000,0,0);}
.m3e_c01190{transform:matrix(0.310277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310277,0.000000,0.000000,0.250000,0,0);}
.m55_c01190{transform:matrix(0.310867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310867,0.000000,0.000000,0.250000,0,0);}
.m4c_c01190{transform:matrix(0.310992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310992,0.000000,0.000000,0.250000,0,0);}
.m17_c01190{transform:matrix(0.311126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311126,0.000000,0.000000,0.250000,0,0);}
.m5a_c01190{transform:matrix(0.313256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313256,0.000000,0.000000,0.250000,0,0);}
.m54_c01190{transform:matrix(0.313908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313908,0.000000,0.000000,0.250000,0,0);}
.m26_c01190{transform:matrix(0.315038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315038,0.000000,0.000000,0.250000,0,0);}
.m1a_c01190{transform:matrix(0.316560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316560,0.000000,0.000000,0.250000,0,0);}
.m60_c01190{transform:matrix(0.317407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317407,0.000000,0.000000,0.250000,0,0);}
.m28_c01190{transform:matrix(0.317661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317661,0.000000,0.000000,0.250000,0,0);}
.m38_c01190{transform:matrix(0.317851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317851,0.000000,0.000000,0.250000,0,0);}
.m30_c01190{transform:matrix(0.317888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317888,0.000000,0.000000,0.250000,0,0);}
.m3f_c01190{transform:matrix(0.318339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318339,0.000000,0.000000,0.250000,0,0);}
.m2b_c01190{transform:matrix(0.319834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319834,0.000000,0.000000,0.250000,0,0);}
.m51_c01190{transform:matrix(0.321289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321289,0.000000,0.000000,0.250000,0,0);}
.m1c_c01190{transform:matrix(0.321692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321692,0.000000,0.000000,0.250000,0,0);}
.m2d_c01190{transform:matrix(0.322198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322198,0.000000,0.000000,0.250000,0,0);}
.m1_c01190{transform:matrix(0.324707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324707,0.000000,0.000000,0.250000,0,0);}
.m1b_c01190{transform:matrix(0.324789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324789,0.000000,0.000000,0.250000,0,0);}
.m1f_c01190{transform:matrix(0.327994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327994,0.000000,0.000000,0.250000,0,0);}
.m47_c01190{transform:matrix(0.329015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329015,0.000000,0.000000,0.250000,0,0);}
.m32_c01190{transform:matrix(0.329841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329841,0.000000,0.000000,0.250000,0,0);}
.m58_c01190{transform:matrix(0.330021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330021,0.000000,0.000000,0.250000,0,0);}
.m8_c01190{transform:matrix(0.332299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332299,0.000000,0.000000,0.250000,0,0);}
.m62_c01190{transform:matrix(0.333105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333105,0.000000,0.000000,0.250000,0,0);}
.m40_c01190{transform:matrix(0.333545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333545,0.000000,0.000000,0.250000,0,0);}
.m4a_c01190{transform:matrix(0.338859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338859,0.000000,0.000000,0.250000,0,0);}
.m45_c01190{transform:matrix(0.343494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343494,0.000000,0.000000,0.250000,0,0);}
.m15_c01190{transform:matrix(0.346409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346409,0.000000,0.000000,0.250000,0,0);}
.m4e_c01190{transform:matrix(0.350938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350938,0.000000,0.000000,0.250000,0,0);}
.ma_c01190{transform:matrix(0.354758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354758,0.000000,0.000000,0.250000,0,0);}
.m48_c01190{transform:matrix(0.356803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356803,0.000000,0.000000,0.250000,0,0);}
.m39_c01190{transform:matrix(0.358972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358972,0.000000,0.000000,0.250000,0,0);}
.m10_c01190{transform:matrix(0.359547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359547,0.000000,0.000000,0.250000,0,0);}
.mb_c01190{transform:matrix(0.368361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368361,0.000000,0.000000,0.250000,0,0);}
.m3d_c01190{transform:matrix(0.408109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408109,0.000000,0.000000,0.250000,0,0);}
.m2a_c01190{transform:matrix(0.414486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414486,0.000000,0.000000,0.250000,0,0);}
.m5d_c01190{transform:matrix(0.427135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427135,0.000000,0.000000,0.250000,0,0);}
.m5f_c01190{transform:matrix(0.428597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428597,0.000000,0.000000,0.250000,0,0);}
.v1_c01190{vertical-align:-21.367170px;}
.v0_c01190{vertical-align:0.000000px;}
.ls6_c01190{letter-spacing:-2.619540px;}
.ls5_c01190{letter-spacing:-2.591827px;}
.lsd_c01190{letter-spacing:-2.390850px;}
.ls15_c01190{letter-spacing:-2.367452px;}
.ls3_c01190{letter-spacing:0.000000px;}
.ls4_c01190{letter-spacing:0.197090px;}
.lsc_c01190{letter-spacing:0.204930px;}
.ls9_c01190{letter-spacing:2.277481px;}
.lse_c01190{letter-spacing:2.621448px;}
.ls12_c01190{letter-spacing:3.405610px;}
.ls14_c01190{letter-spacing:3.474900px;}
.ls13_c01190{letter-spacing:3.564000px;}
.ls7_c01190{letter-spacing:3.570059px;}
.ls8_c01190{letter-spacing:3.682810px;}
.ls2_c01190{letter-spacing:3.702610px;}
.ls1_c01190{letter-spacing:3.742200px;}
.lsa_c01190{letter-spacing:3.999610px;}
.ls10_c01190{letter-spacing:4.197610px;}
.ls11_c01190{letter-spacing:4.435200px;}
.lsf_c01190{letter-spacing:5.524200px;}
.ls0_c01190{letter-spacing:18.267084px;}
.lsb_c01190{letter-spacing:31.363200px;}
.ls16_c01190{letter-spacing:51.321798px;}
.sc__c01190{text-shadow:none;}
.sc0_c01190{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01190{-webkit-text-stroke:0px transparent;}
.sc0_c01190{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01190{word-spacing:0.000000px;}
._1_c01190{margin-left:-13.479097px;}
._0_c01190{margin-left:-4.295146px;}
._3_c01190{width:6.130044px;}
._2_c01190{width:34.986732px;}
.fc0_c01190{color:transparent;}
.fs3_c01190{font-size:22.176000px;}
.fs12_c01190{font-size:27.720000px;}
.fs9_c01190{font-size:31.363200px;}
.fs8_c01190{font-size:32.868000px;}
.fse_c01190{font-size:37.818000px;}
.fs13_c01190{font-size:51.321798px;}
.fs7_c01190{font-size:67.320000px;}
.fsf_c01190{font-size:68.112198px;}
.fsa_c01190{font-size:68.310000px;}
.fs11_c01190{font-size:69.498000px;}
.fs10_c01190{font-size:71.280000px;}
.fs5_c01190{font-size:72.072198px;}
.fs4_c01190{font-size:73.656198px;}
.fs1_c01190{font-size:74.052198px;}
.fs0_c01190{font-size:74.844000px;}
.fs6_c01190{font-size:79.992198px;}
.fsc_c01190{font-size:83.952198px;}
.fsd_c01190{font-size:88.704000px;}
.fs2_c01190{font-size:93.852198px;}
.fsb_c01190{font-size:110.484000px;}
.y0_c01190{bottom:0.000000px;}
.y1_c01190{bottom:76.500000px;}
.y1b_c01190{bottom:149.956335px;}
.y1a_c01190{bottom:151.025535px;}
.y19_c01190{bottom:216.241785px;}
.y17_c01190{bottom:218.380185px;}
.y18_c01190{bottom:222.305535px;}
.y15_c01190{bottom:251.168985px;}
.y16_c01190{bottom:256.514985px;}
.y14_c01190{bottom:314.969535px;}
.y13_c01190{bottom:347.753385px;}
.y12_c01190{bottom:379.829385px;}
.y11_c01190{bottom:411.910335px;}
.yd_c01190{bottom:476.418735px;}
.y10_c01190{bottom:494.590185px;}
.yf_c01190{bottom:505.282185px;}
.ye_c01190{bottom:518.117535px;}
.yc_c01190{bottom:539.852985px;}
.yb_c01190{bottom:571.928985px;}
.ya_c01190{bottom:635.373135px;}
.y9_c01190{bottom:699.876585px;}
.y8_c01190{bottom:718.052985px;}
.y7_c01190{bottom:764.746335px;}
.y6_c01190{bottom:797.178735px;}
.y5_c01190{bottom:859.900185px;}
.y4_c01190{bottom:892.688985px;}
.y3_c01190{bottom:925.126335px;}
.y2_c01190{bottom:1075.165785px;}
.hb_c01190{height:20.887891px;}
.h5_c01190{height:23.128875px;}
.h15_c01190{height:28.911094px;}
.h16_c01190{height:34.180317px;}
.ha_c01190{height:34.280297px;}
.h10_c01190{height:39.442992px;}
.h9_c01190{height:66.070898px;}
.h11_c01190{height:66.848397px;}
.hc_c01190{height:67.042529px;}
.h13_c01190{height:68.208486px;}
.h12_c01190{height:69.957422px;}
.h6_c01190{height:72.289530px;}
.h3_c01190{height:72.678183px;}
.h2_c01190{height:73.455293px;}
.h7_c01190{height:75.169050px;}
.h14_c01190{height:78.059953px;}
.h8_c01190{height:78.507968px;}
.he_c01190{height:82.394491px;}
.hf_c01190{height:87.058125px;}
.h4_c01190{height:92.110800px;}
.hd_c01190{height:108.434004px;}
.h1_c01190{height:1110.000000px;}
.h0_c01190{height:1263.000000px;}
.w1_c01190{width:775.500000px;}
.w0_c01190{width:892.500000px;}
.x0_c01190{left:0.000000px;}
.x1_c01190{left:58.500000px;}
.x31_c01190{left:87.789885px;}
.x13_c01190{left:88.967985px;}
.x21_c01190{left:108.040335px;}
.x2b_c01190{left:141.368685px;}
.x12_c01190{left:142.512135px;}
.x3_c01190{left:143.997135px;}
.x42_c01190{left:175.786035px;}
.x3a_c01190{left:186.116685px;}
.x1a_c01190{left:188.675835px;}
.x32_c01190{left:197.358135px;}
.x1b_c01190{left:198.457035px;}
.x14_c01190{left:200.917185px;}
.x2c_c01190{left:207.297735px;}
.x3b_c01190{left:219.682635px;}
.x1c_c01190{left:230.919135px;}
.x22_c01190{left:242.645685px;}
.x1f_c01190{left:252.570435px;}
.x4_c01190{left:254.971185px;}
.x33_c01190{left:274.355385px;}
.xd_c01190{left:277.369935px;}
.x1d_c01190{left:278.458935px;}
.x4c_c01190{left:285.710685px;}
.x5_c01190{left:288.482685px;}
.x46_c01190{left:317.341185px;}
.x3c_c01190{left:319.524135px;}
.x20_c01190{left:342.076335px;}
.x43_c01190{left:344.180085px;}
.x15_c01190{left:354.679035px;}
.x2d_c01190{left:363.054435px;}
.x23_c01190{left:364.841385px;}
.x47_c01190{left:372.746535px;}
.x6_c01190{left:375.959085px;}
.x16_c01190{left:388.447935px;}
.x3f_c01190{left:397.882635px;}
.x7_c01190{left:399.179535px;}
.x48_c01190{left:408.193485px;}
.x4d_c01190{left:409.495335px;}
.x34_c01190{left:419.974485px;}
.x3d_c01190{left:431.478285px;}
.xe_c01190{left:432.765285px;}
.x2e_c01190{left:434.497785px;}
.x49_c01190{left:441.591135px;}
.x24_c01190{left:443.293935px;}
.x2f_c01190{left:452.931585px;}
.x8_c01190{left:454.886835px;}
.x35_c01190{left:464.108685px;}
.x4e_c01190{left:478.636935px;}
.x26_c01190{left:485.977785px;}
.x4f_c01190{left:488.259735px;}
.x36_c01190{left:497.545935px;}
.x25_c01190{left:519.212085px;}
.x9_c01190{left:543.655185px;}
.x27_c01190{left:551.946435px;}
.x50_c01190{left:562.326585px;}
.x44_c01190{left:574.528335px;}
.xf_c01190{left:577.369635px;}
.x17_c01190{left:578.423985px;}
.x40_c01190{left:584.032335px;}
.x37_c01190{left:586.715235px;}
.xa_c01190{left:598.412085px;}
.x10_c01190{left:609.237735px;}
.x45_c01190{left:618.548685px;}
.x28_c01190{left:628.641735px;}
.x3e_c01190{left:629.656485px;}
.x29_c01190{left:640.739535px;}
.x18_c01190{left:641.937435px;}
.xb_c01190{left:664.464885px;}
.x41_c01190{left:673.171935px;}
.x38_c01190{left:675.716235px;}
.x19_c01190{left:678.275385px;}
.x1e_c01190{left:682.052235px;}
.x11_c01190{left:687.215085px;}
.xc_c01190{left:698.238735px;}
.x4b_c01190{left:702.698685px;}
.x30_c01190{left:707.524935px;}
.x2a_c01190{left:708.534735px;}
.x4a_c01190{left:711.465135px;}
.x2_c01190{left:716.083485px;}
.x39_c01190{left:719.612835px;}
@media print{
.v1_c01190{vertical-align:-18.993040pt;}
.v0_c01190{vertical-align:0.000000pt;}
.ls6_c01190{letter-spacing:-2.328480pt;}
.ls5_c01190{letter-spacing:-2.303846pt;}
.lsd_c01190{letter-spacing:-2.125200pt;}
.ls15_c01190{letter-spacing:-2.104402pt;}
.ls3_c01190{letter-spacing:0.000000pt;}
.ls4_c01190{letter-spacing:0.175191pt;}
.lsc_c01190{letter-spacing:0.182160pt;}
.ls9_c01190{letter-spacing:2.024428pt;}
.lse_c01190{letter-spacing:2.330176pt;}
.ls12_c01190{letter-spacing:3.027209pt;}
.ls14_c01190{letter-spacing:3.088800pt;}
.ls13_c01190{letter-spacing:3.168000pt;}
.ls7_c01190{letter-spacing:3.173386pt;}
.ls8_c01190{letter-spacing:3.273609pt;}
.ls2_c01190{letter-spacing:3.291209pt;}
.ls1_c01190{letter-spacing:3.326400pt;}
.lsa_c01190{letter-spacing:3.555209pt;}
.ls10_c01190{letter-spacing:3.731209pt;}
.ls11_c01190{letter-spacing:3.942400pt;}
.lsf_c01190{letter-spacing:4.910400pt;}
.ls0_c01190{letter-spacing:16.237408pt;}
.lsb_c01190{letter-spacing:27.878400pt;}
.ls16_c01190{letter-spacing:45.619376pt;}
.ws0_c01190{word-spacing:0.000000pt;}
._1_c01190{margin-left:-11.981420pt;}
._0_c01190{margin-left:-3.817908pt;}
._3_c01190{width:5.448928pt;}
._2_c01190{width:31.099317pt;}
.fs3_c01190{font-size:19.712000pt;}
.fs12_c01190{font-size:24.640000pt;}
.fs9_c01190{font-size:27.878400pt;}
.fs8_c01190{font-size:29.216000pt;}
.fse_c01190{font-size:33.616000pt;}
.fs13_c01190{font-size:45.619376pt;}
.fs7_c01190{font-size:59.840000pt;}
.fsf_c01190{font-size:60.544176pt;}
.fsa_c01190{font-size:60.720000pt;}
.fs11_c01190{font-size:61.776000pt;}
.fs10_c01190{font-size:63.360000pt;}
.fs5_c01190{font-size:64.064176pt;}
.fs4_c01190{font-size:65.472176pt;}
.fs1_c01190{font-size:65.824176pt;}
.fs0_c01190{font-size:66.528000pt;}
.fs6_c01190{font-size:71.104176pt;}
.fsc_c01190{font-size:74.624176pt;}
.fsd_c01190{font-size:78.848000pt;}
.fs2_c01190{font-size:83.424176pt;}
.fsb_c01190{font-size:98.208000pt;}
.y0_c01190{bottom:0.000000pt;}
.y1_c01190{bottom:68.000000pt;}
.y1b_c01190{bottom:133.294520pt;}
.y1a_c01190{bottom:134.244920pt;}
.y19_c01190{bottom:192.214920pt;}
.y17_c01190{bottom:194.115720pt;}
.y18_c01190{bottom:197.604920pt;}
.y15_c01190{bottom:223.261320pt;}
.y16_c01190{bottom:228.013320pt;}
.y14_c01190{bottom:279.972920pt;}
.y13_c01190{bottom:309.114120pt;}
.y12_c01190{bottom:337.626120pt;}
.y11_c01190{bottom:366.142520pt;}
.yd_c01190{bottom:423.483320pt;}
.y10_c01190{bottom:439.635720pt;}
.yf_c01190{bottom:449.139720pt;}
.ye_c01190{bottom:460.548920pt;}
.yc_c01190{bottom:479.869320pt;}
.yb_c01190{bottom:508.381320pt;}
.ya_c01190{bottom:564.776120pt;}
.y9_c01190{bottom:622.112520pt;}
.y8_c01190{bottom:638.269320pt;}
.y7_c01190{bottom:679.774520pt;}
.y6_c01190{bottom:708.603320pt;}
.y5_c01190{bottom:764.355720pt;}
.y4_c01190{bottom:793.501320pt;}
.y3_c01190{bottom:822.334520pt;}
.y2_c01190{bottom:955.702920pt;}
.hb_c01190{height:18.567014pt;}
.h5_c01190{height:20.559000pt;}
.h15_c01190{height:25.698750pt;}
.h16_c01190{height:30.382504pt;}
.ha_c01190{height:30.471375pt;}
.h10_c01190{height:35.060438pt;}
.h9_c01190{height:58.729688pt;}
.h11_c01190{height:59.420798pt;}
.hc_c01190{height:59.593359pt;}
.h13_c01190{height:60.629766pt;}
.h12_c01190{height:62.184375pt;}
.h6_c01190{height:64.257360pt;}
.h3_c01190{height:64.602829pt;}
.h2_c01190{height:65.293594pt;}
.h7_c01190{height:66.816934pt;}
.h14_c01190{height:69.386625pt;}
.h8_c01190{height:69.784860pt;}
.he_c01190{height:73.239548pt;}
.hf_c01190{height:77.385000pt;}
.h4_c01190{height:81.876266pt;}
.hd_c01190{height:96.385781pt;}
.h1_c01190{height:986.666667pt;}
.h0_c01190{height:1122.666667pt;}
.w1_c01190{width:689.333333pt;}
.w0_c01190{width:793.333333pt;}
.x0_c01190{left:0.000000pt;}
.x1_c01190{left:52.000000pt;}
.x31_c01190{left:78.035453pt;}
.x13_c01190{left:79.082653pt;}
.x21_c01190{left:96.035853pt;}
.x2b_c01190{left:125.661053pt;}
.x12_c01190{left:126.677453pt;}
.x3_c01190{left:127.997453pt;}
.x42_c01190{left:156.254253pt;}
.x3a_c01190{left:165.437053pt;}
.x1a_c01190{left:167.711853pt;}
.x32_c01190{left:175.429453pt;}
.x1b_c01190{left:176.406253pt;}
.x14_c01190{left:178.593053pt;}
.x2c_c01190{left:184.264653pt;}
.x3b_c01190{left:195.273453pt;}
.x1c_c01190{left:205.261453pt;}
.x22_c01190{left:215.685053pt;}
.x1f_c01190{left:224.507053pt;}
.x4_c01190{left:226.641053pt;}
.x33_c01190{left:243.871453pt;}
.xd_c01190{left:246.551053pt;}
.x1d_c01190{left:247.519053pt;}
.x4c_c01190{left:253.965053pt;}
.x5_c01190{left:256.429053pt;}
.x46_c01190{left:282.081053pt;}
.x3c_c01190{left:284.021453pt;}
.x20_c01190{left:304.067853pt;}
.x43_c01190{left:305.937853pt;}
.x15_c01190{left:315.270253pt;}
.x2d_c01190{left:322.715053pt;}
.x23_c01190{left:324.303453pt;}
.x47_c01190{left:331.330253pt;}
.x6_c01190{left:334.185853pt;}
.x16_c01190{left:345.287053pt;}
.x3f_c01190{left:353.673453pt;}
.x7_c01190{left:354.826253pt;}
.x48_c01190{left:362.838653pt;}
.x4d_c01190{left:363.995853pt;}
.x34_c01190{left:373.310653pt;}
.x3d_c01190{left:383.536253pt;}
.xe_c01190{left:384.680253pt;}
.x2e_c01190{left:386.220253pt;}
.x49_c01190{left:392.525453pt;}
.x24_c01190{left:394.039053pt;}
.x2f_c01190{left:402.605853pt;}
.x8_c01190{left:404.343853pt;}
.x35_c01190{left:412.541053pt;}
.x4e_c01190{left:425.455053pt;}
.x26_c01190{left:431.980253pt;}
.x4f_c01190{left:434.008653pt;}
.x36_c01190{left:442.263053pt;}
.x25_c01190{left:461.521853pt;}
.x9_c01190{left:483.249053pt;}
.x27_c01190{left:490.619053pt;}
.x50_c01190{left:499.845853pt;}
.x44_c01190{left:510.691853pt;}
.xf_c01190{left:513.217453pt;}
.x17_c01190{left:514.154653pt;}
.x40_c01190{left:519.139853pt;}
.x37_c01190{left:521.524653pt;}
.xa_c01190{left:531.921853pt;}
.x10_c01190{left:541.544653pt;}
.x45_c01190{left:549.821053pt;}
.x28_c01190{left:558.792653pt;}
.x3e_c01190{left:559.694653pt;}
.x29_c01190{left:569.546253pt;}
.x18_c01190{left:570.611053pt;}
.xb_c01190{left:590.635453pt;}
.x41_c01190{left:598.375053pt;}
.x38_c01190{left:600.636653pt;}
.x19_c01190{left:602.911453pt;}
.x1e_c01190{left:606.268653pt;}
.x11_c01190{left:610.857853pt;}
.xc_c01190{left:620.656653pt;}
.x4b_c01190{left:624.621053pt;}
.x30_c01190{left:628.911053pt;}
.x2a_c01190{left:629.808653pt;}
.x4a_c01190{left:632.413453pt;}
.x2_c01190{left:636.518653pt;}
.x39_c01190{left:639.655853pt;}
}





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

.ir_c01191:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01191{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01191;src:url('chunks/assets/font_81c85c9a7392efc9897cbafc.woff2')format("woff");}.ff1_c01191{font-family:ff1_c01191;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01191;src:url('chunks/assets/font_9c3c842de9fd30c59fe034ee.woff2')format("woff");}.ff2_c01191{font-family:ff2_c01191;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01191;src:url('chunks/assets/font_780708b54e076cbf56dc5d42.woff2')format("woff");}.ff3_c01191{font-family:ff3_c01191;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01191;src:url('chunks/assets/font_7f15953fa8010f18c45c7ddc.woff2')format("woff");}.ff4_c01191{font-family:ff4_c01191;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01191;src:url('chunks/assets/font_75c084596ea2ab9a39e657e6.woff2')format("woff");}.ff5_c01191{font-family:ff5_c01191;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mf_c01191{transform:matrix(0.159518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159518,0.000000,0.000000,0.250000,0,0);}
.m1a_c01191{transform:matrix(0.167530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167530,0.000000,0.000000,0.250000,0,0);}
.ma_c01191{transform:matrix(0.174107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174107,0.000000,0.000000,0.250000,0,0);}
.m51_c01191{transform:matrix(0.176357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176357,0.000000,0.000000,0.250000,0,0);}
.m1b_c01191{transform:matrix(0.239289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239289,0.000000,0.000000,0.250000,0,0);}
.m4b_c01191{transform:matrix(0.244679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244679,0.000000,0.000000,0.250000,0,0);}
.m0_c01191{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m11_c01191{transform:matrix(0.250217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250217,0.000000,0.000000,0.250000,0,0);}
.mb_c01191{transform:matrix(0.253786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253786,0.000000,0.000000,0.250000,0,0);}
.m49_c01191{transform:matrix(0.253953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253953,0.000000,0.000000,0.250000,0,0);}
.m15_c01191{transform:matrix(0.255103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255103,0.000000,0.000000,0.250000,0,0);}
.md_c01191{transform:matrix(0.257862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257862,0.000000,0.000000,0.250000,0,0);}
.me_c01191{transform:matrix(0.258343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258343,0.000000,0.000000,0.250000,0,0);}
.m47_c01191{transform:matrix(0.261400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261400,0.000000,0.000000,0.250000,0,0);}
.m42_c01191{transform:matrix(0.264795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264795,0.000000,0.000000,0.250000,0,0);}
.m5a_c01191{transform:matrix(0.267199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267199,0.000000,0.000000,0.250000,0,0);}
.m23_c01191{transform:matrix(0.269009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269009,0.000000,0.000000,0.250000,0,0);}
.m1f_c01191{transform:matrix(0.272565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272565,0.000000,0.000000,0.250000,0,0);}
.m2_c01191{transform:matrix(0.273900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273900,0.000000,0.000000,0.250000,0,0);}
.m2a_c01191{transform:matrix(0.274845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274845,0.000000,0.000000,0.250000,0,0);}
.m20_c01191{transform:matrix(0.278792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278792,0.000000,0.000000,0.250000,0,0);}
.m19_c01191{transform:matrix(0.279422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279422,0.000000,0.000000,0.250000,0,0);}
.m5_c01191{transform:matrix(0.279956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279956,0.000000,0.000000,0.250000,0,0);}
.m39_c01191{transform:matrix(0.281692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281692,0.000000,0.000000,0.250000,0,0);}
.m32_c01191{transform:matrix(0.281872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281872,0.000000,0.000000,0.250000,0,0);}
.m29_c01191{transform:matrix(0.284285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284285,0.000000,0.000000,0.250000,0,0);}
.m1d_c01191{transform:matrix(0.286817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286817,0.000000,0.000000,0.250000,0,0);}
.m12_c01191{transform:matrix(0.288817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288817,0.000000,0.000000,0.250000,0,0);}
.m28_c01191{transform:matrix(0.289100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289100,0.000000,0.000000,0.250000,0,0);}
.m9_c01191{transform:matrix(0.289345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289345,0.000000,0.000000,0.250000,0,0);}
.m33_c01191{transform:matrix(0.289446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289446,0.000000,0.000000,0.250000,0,0);}
.m16_c01191{transform:matrix(0.289932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289932,0.000000,0.000000,0.250000,0,0);}
.m55_c01191{transform:matrix(0.291345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291345,0.000000,0.000000,0.250000,0,0);}
.m14_c01191{transform:matrix(0.291368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291368,0.000000,0.000000,0.250000,0,0);}
.m59_c01191{transform:matrix(0.291691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291691,0.000000,0.000000,0.250000,0,0);}
.m27_c01191{transform:matrix(0.292475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292475,0.000000,0.000000,0.250000,0,0);}
.m3d_c01191{transform:matrix(0.292605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292605,0.000000,0.000000,0.250000,0,0);}
.m13_c01191{transform:matrix(0.293073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293073,0.000000,0.000000,0.250000,0,0);}
.m4d_c01191{transform:matrix(0.293391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293391,0.000000,0.000000,0.250000,0,0);}
.m35_c01191{transform:matrix(0.293411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293411,0.000000,0.000000,0.250000,0,0);}
.m44_c01191{transform:matrix(0.294456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294456,0.000000,0.000000,0.250000,0,0);}
.m48_c01191{transform:matrix(0.294920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294920,0.000000,0.000000,0.250000,0,0);}
.m45_c01191{transform:matrix(0.295085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295085,0.000000,0.000000,0.250000,0,0);}
.m18_c01191{transform:matrix(0.297396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297396,0.000000,0.000000,0.250000,0,0);}
.m24_c01191{transform:matrix(0.297438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297438,0.000000,0.000000,0.250000,0,0);}
.m26_c01191{transform:matrix(0.297873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297873,0.000000,0.000000,0.250000,0,0);}
.m3a_c01191{transform:matrix(0.300296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300296,0.000000,0.000000,0.250000,0,0);}
.m3b_c01191{transform:matrix(0.300482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300482,0.000000,0.000000,0.250000,0,0);}
.m2c_c01191{transform:matrix(0.300914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300914,0.000000,0.000000,0.250000,0,0);}
.m46_c01191{transform:matrix(0.301124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301124,0.000000,0.000000,0.250000,0,0);}
.m57_c01191{transform:matrix(0.301196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301196,0.000000,0.000000,0.250000,0,0);}
.m36_c01191{transform:matrix(0.301809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301809,0.000000,0.000000,0.250000,0,0);}
.m56_c01191{transform:matrix(0.302357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302357,0.000000,0.000000,0.250000,0,0);}
.m3_c01191{transform:matrix(0.302478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302478,0.000000,0.000000,0.250000,0,0);}
.m41_c01191{transform:matrix(0.303048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303048,0.000000,0.000000,0.250000,0,0);}
.m43_c01191{transform:matrix(0.303815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303815,0.000000,0.000000,0.250000,0,0);}
.m3c_c01191{transform:matrix(0.304327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304327,0.000000,0.000000,0.250000,0,0);}
.m22_c01191{transform:matrix(0.304655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304655,0.000000,0.000000,0.250000,0,0);}
.m4c_c01191{transform:matrix(0.305424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305424,0.000000,0.000000,0.250000,0,0);}
.m2f_c01191{transform:matrix(0.307208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307208,0.000000,0.000000,0.250000,0,0);}
.m10_c01191{transform:matrix(0.308744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308744,0.000000,0.000000,0.250000,0,0);}
.m25_c01191{transform:matrix(0.308878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308878,0.000000,0.000000,0.250000,0,0);}
.m38_c01191{transform:matrix(0.310230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310230,0.000000,0.000000,0.250000,0,0);}
.m37_c01191{transform:matrix(0.310367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310367,0.000000,0.000000,0.250000,0,0);}
.m4e_c01191{transform:matrix(0.312600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312600,0.000000,0.000000,0.250000,0,0);}
.m52_c01191{transform:matrix(0.314321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314321,0.000000,0.000000,0.250000,0,0);}
.m1e_c01191{transform:matrix(0.314805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314805,0.000000,0.000000,0.250000,0,0);}
.m1c_c01191{transform:matrix(0.315303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315303,0.000000,0.000000,0.250000,0,0);}
.m40_c01191{transform:matrix(0.316845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316845,0.000000,0.000000,0.250000,0,0);}
.m1_c01191{transform:matrix(0.318615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318615,0.000000,0.000000,0.250000,0,0);}
.m58_c01191{transform:matrix(0.318647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318647,0.000000,0.000000,0.250000,0,0);}
.m4_c01191{transform:matrix(0.323058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323058,0.000000,0.000000,0.250000,0,0);}
.mc_c01191{transform:matrix(0.324016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324016,0.000000,0.000000,0.250000,0,0);}
.m54_c01191{transform:matrix(0.325607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325607,0.000000,0.000000,0.250000,0,0);}
.m2b_c01191{transform:matrix(0.333171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333171,0.000000,0.000000,0.250000,0,0);}
.m31_c01191{transform:matrix(0.336541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336541,0.000000,0.000000,0.250000,0,0);}
.m8_c01191{transform:matrix(0.337907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337907,0.000000,0.000000,0.250000,0,0);}
.m21_c01191{transform:matrix(0.338619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338619,0.000000,0.000000,0.250000,0,0);}
.m4a_c01191{transform:matrix(0.340422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340422,0.000000,0.000000,0.250000,0,0);}
.m7_c01191{transform:matrix(0.341014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341014,0.000000,0.000000,0.250000,0,0);}
.m30_c01191{transform:matrix(0.343899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343899,0.000000,0.000000,0.250000,0,0);}
.m2d_c01191{transform:matrix(0.346409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346409,0.000000,0.000000,0.250000,0,0);}
.m6_c01191{transform:matrix(0.364531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364531,0.000000,0.000000,0.250000,0,0);}
.m4f_c01191{transform:matrix(0.365654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365654,0.000000,0.000000,0.250000,0,0);}
.m3e_c01191{transform:matrix(0.369776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369776,0.000000,0.000000,0.250000,0,0);}
.m2e_c01191{transform:matrix(0.369849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369849,0.000000,0.000000,0.250000,0,0);}
.m53_c01191{transform:matrix(0.388923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388923,0.000000,0.000000,0.250000,0,0);}
.m17_c01191{transform:matrix(0.391473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391473,0.000000,0.000000,0.250000,0,0);}
.m34_c01191{transform:matrix(0.400589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400589,0.000000,0.000000,0.250000,0,0);}
.m3f_c01191{transform:matrix(0.401732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401732,0.000000,0.000000,0.250000,0,0);}
.m50_c01191{transform:matrix(0.435511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435511,0.000000,0.000000,0.250000,0,0);}
.v0_c01191{vertical-align:0.000000px;}
.lsa_c01191{letter-spacing:-3.146227px;}
.ls9_c01191{letter-spacing:-2.661127px;}
.ls5_c01191{letter-spacing:-2.591827px;}
.ls10_c01191{letter-spacing:-0.807206px;}
.ls0_c01191{letter-spacing:0.000000px;}
.lsc_c01191{letter-spacing:0.204574px;}
.ls2_c01191{letter-spacing:1.831500px;}
.ls6_c01191{letter-spacing:2.190989px;}
.ls7_c01191{letter-spacing:3.306610px;}
.ls4_c01191{letter-spacing:3.332349px;}
.lsb_c01191{letter-spacing:3.484810px;}
.lse_c01191{letter-spacing:3.672900px;}
.ls1_c01191{letter-spacing:3.702610px;}
.ls8_c01191{letter-spacing:3.801610px;}
.lsd_c01191{letter-spacing:4.118400px;}
.ls3_c01191{letter-spacing:59.875398px;}
.lsf_c01191{letter-spacing:61.300998px;}
.sc__c01191{text-shadow:none;}
.sc0_c01191{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01191{-webkit-text-stroke:0px transparent;}
.sc0_c01191{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01191{word-spacing:-18.513050px;}
.ws1_c01191{word-spacing:0.000000px;}
._1_c01191{margin-left:-2.221596px;}
._2_c01191{width:4.591125px;}
._0_c01191{width:5.998162px;}
._3_c01191{width:13.826835px;}
.fc0_c01191{color:transparent;}
.fs10_c01191{font-size:22.176000px;}
.fs2_c01191{font-size:36.630000px;}
.fsf_c01191{font-size:39.600000px;}
.fs0_c01191{font-size:42.174000px;}
.fs3_c01191{font-size:59.875398px;}
.fs5_c01191{font-size:60.192000px;}
.fse_c01191{font-size:61.300998px;}
.fs6_c01191{font-size:66.132198px;}
.fsd_c01191{font-size:68.112198px;}
.fs9_c01191{font-size:69.696198px;}
.fsa_c01191{font-size:73.062198px;}
.fsc_c01191{font-size:73.458000px;}
.fs1_c01191{font-size:74.052198px;}
.fs7_c01191{font-size:76.032198px;}
.fsb_c01191{font-size:82.368000px;}
.fs4_c01191{font-size:89.496198px;}
.fs8_c01191{font-size:89.892198px;}
.y0_c01191{bottom:0.000000px;}
.y1_c01191{bottom:76.500000px;}
.y19_c01191{bottom:80.458335px;}
.y18_c01191{bottom:161.356185px;}
.y17_c01191{bottom:224.438985px;}
.y16_c01191{bottom:228.002985px;}
.y15_c01191{bottom:260.440335px;}
.y14_c01191{bottom:325.305135px;}
.y13_c01191{bottom:388.739385px;}
.y12_c01191{bottom:451.822185px;}
.y11_c01191{bottom:483.903135px;}
.y10_c01191{bottom:547.693785px;}
.yf_c01191{bottom:579.418335px;}
.ye_c01191{bottom:611.845785px;}
.yd_c01191{bottom:675.641385px;}
.yc_c01191{bottom:707.009535px;}
.yb_c01191{bottom:771.161535px;}
.ya_c01191{bottom:835.664985px;}
.y5_c01191{bottom:898.391385px;}
.y9_c01191{bottom:900.178335px;}
.y8_c01191{bottom:909.444735px;}
.y7_c01191{bottom:930.115935px;}
.y2_c01191{bottom:930.823785px;}
.y3_c01191{bottom:931.185135px;}
.y4_c01191{bottom:935.818335px;}
.y6_c01191{bottom:1083.006585px;}
.h12_c01191{height:23.128875px;}
.h4_c01191{height:38.203945px;}
.h5_c01191{height:39.877015px;}
.h10_c01191{height:40.826465px;}
.h11_c01191{height:41.301563px;}
.h2_c01191{height:41.391475px;}
.h7_c01191{height:59.075156px;}
.hb_c01191{height:68.403007px;}
.h8_c01191{height:68.973816px;}
.hf_c01191{height:71.038894px;}
.he_c01191{height:72.095010px;}
.h3_c01191{height:72.678183px;}
.h9_c01191{height:74.584319px;}
.hc_c01191{height:76.201589px;}
.hd_c01191{height:80.839688px;}
.h6_c01191{height:87.835624px;}
.ha_c01191{height:88.224276px;}
.h1_c01191{height:1110.000000px;}
.h0_c01191{height:1263.000000px;}
.w1_c01191{width:775.500000px;}
.w0_c01191{width:892.500000px;}
.x0_c01191{left:0.000000px;}
.x2_c01191{left:53.323035px;}
.x1_c01191{left:58.500000px;}
.x42_c01191{left:75.098085px;}
.x20_c01191{left:77.068185px;}
.x13_c01191{left:78.528435px;}
.x29_c01191{left:129.612435px;}
.x3_c01191{left:131.602335px;}
.xb_c01191{left:132.676485px;}
.x32_c01191{left:164.722785px;}
.x14_c01191{left:167.247285px;}
.x47_c01191{left:185.695935px;}
.x15_c01191{left:187.695735px;}
.x3b_c01191{left:194.501985px;}
.x4b_c01191{left:195.600885px;}
.x50_c01191{left:196.873035px;}
.xc_c01191{left:198.461985px;}
.x3c_c01191{left:208.089735px;}
.x4_c01191{left:210.421185px;}
.x2a_c01191{left:219.113385px;}
.x48_c01191{left:220.707285px;}
.x51_c01191{left:229.736085px;}
.x1c_c01191{left:231.706185px;}
.x49_c01191{left:240.710235px;}
.x3e_c01191{left:242.462535px;}
.x5_c01191{left:245.823585px;}
.x2d_c01191{left:252.570435px;}
.x16_c01191{left:254.614785px;}
.x21_c01191{left:264.564285px;}
.x2b_c01191{left:273.479235px;}
.x3d_c01191{left:275.508735px;}
.x52_c01191{left:276.642285px;}
.x1d_c01191{left:278.750985px;}
.x43_c01191{left:284.290035px;}
.x17_c01191{left:286.086885px;}
.x2c_c01191{left:287.269935px;}
.x53_c01191{left:296.100735px;}
.x1e_c01191{left:298.357935px;}
.x4a_c01191{left:308.975685px;}
.x33_c01191{left:320.519085px;}
.x22_c01191{left:331.290285px;}
.x2e_c01191{left:333.537585px;}
.x3f_c01191{left:340.700235px;}
.x18_c01191{left:343.091085px;}
.x34_c01191{left:352.337685px;}
.x6_c01191{left:354.723585px;}
.x44_c01191{left:374.147385px;}
.x2f_c01191{left:385.814535px;}
.x23_c01191{left:387.190635px;}
.x35_c01191{left:397.466835px;}
.x7_c01191{left:398.674635px;}
.x54_c01191{left:416.870835px;}
.x24_c01191{left:419.959635px;}
.x1f_c01191{left:422.192085px;}
.x40_c01191{left:430.612035px;}
.x55_c01191{left:437.205435px;}
.x36_c01191{left:440.818935px;}
.x37_c01191{left:443.387985px;}
.x8_c01191{left:445.947135px;}
.x9_c01191{left:457.020285px;}
.x19_c01191{left:463.559235px;}
.x25_c01191{left:465.331335px;}
.x45_c01191{left:473.587935px;}
.xa_c01191{left:476.340135px;}
.x30_c01191{left:486.611385px;}
.x4c_c01191{left:496.605435px;}
.x38_c01191{left:497.659785px;}
.x46_c01191{left:507.089535px;}
.x4d_c01191{left:529.240785px;}
.x26_c01191{left:531.537585px;}
.x1a_c01191{left:539.710035px;}
.x1b_c01191{left:552.718635px;}
.x27_c01191{left:562.653285px;}
.x4e_c01191{left:573.226485px;}
.xe_c01191{left:585.101535px;}
.xf_c01191{left:609.094185px;}
.x39_c01191{left:618.479385px;}
.x28_c01191{left:619.657485px;}
.x3a_c01191{left:641.036535px;}
.x4f_c01191{left:650.441535px;}
.x31_c01191{left:651.956235px;}
.x10_c01191{left:684.537135px;}
.x12_c01191{left:702.683835px;}
.xd_c01191{left:708.514935px;}
.x11_c01191{left:711.653235px;}
.x41_c01191{left:727.176435px;}
@media print{
.v0_c01191{vertical-align:0.000000pt;}
.lsa_c01191{letter-spacing:-2.796646pt;}
.ls9_c01191{letter-spacing:-2.365446pt;}
.ls5_c01191{letter-spacing:-2.303846pt;}
.ls10_c01191{letter-spacing:-0.717517pt;}
.ls0_c01191{letter-spacing:0.000000pt;}
.lsc_c01191{letter-spacing:0.181844pt;}
.ls2_c01191{letter-spacing:1.628000pt;}
.ls6_c01191{letter-spacing:1.947546pt;}
.ls7_c01191{letter-spacing:2.939209pt;}
.ls4_c01191{letter-spacing:2.962088pt;}
.lsb_c01191{letter-spacing:3.097609pt;}
.lse_c01191{letter-spacing:3.264800pt;}
.ls1_c01191{letter-spacing:3.291209pt;}
.ls8_c01191{letter-spacing:3.379209pt;}
.lsd_c01191{letter-spacing:3.660800pt;}
.ls3_c01191{letter-spacing:53.222576pt;}
.lsf_c01191{letter-spacing:54.489776pt;}
.ws0_c01191{word-spacing:-16.456044pt;}
.ws1_c01191{word-spacing:0.000000pt;}
._1_c01191{margin-left:-1.974752pt;}
._2_c01191{width:4.081000pt;}
._0_c01191{width:5.331700pt;}
._3_c01191{width:12.290520pt;}
.fs10_c01191{font-size:19.712000pt;}
.fs2_c01191{font-size:32.560000pt;}
.fsf_c01191{font-size:35.200000pt;}
.fs0_c01191{font-size:37.488000pt;}
.fs3_c01191{font-size:53.222576pt;}
.fs5_c01191{font-size:53.504000pt;}
.fse_c01191{font-size:54.489776pt;}
.fs6_c01191{font-size:58.784176pt;}
.fsd_c01191{font-size:60.544176pt;}
.fs9_c01191{font-size:61.952176pt;}
.fsa_c01191{font-size:64.944176pt;}
.fsc_c01191{font-size:65.296000pt;}
.fs1_c01191{font-size:65.824176pt;}
.fs7_c01191{font-size:67.584176pt;}
.fsb_c01191{font-size:73.216000pt;}
.fs4_c01191{font-size:79.552176pt;}
.fs8_c01191{font-size:79.904176pt;}
.y0_c01191{bottom:0.000000pt;}
.y1_c01191{bottom:68.000000pt;}
.y19_c01191{bottom:71.518520pt;}
.y18_c01191{bottom:143.427720pt;}
.y17_c01191{bottom:199.501320pt;}
.y16_c01191{bottom:202.669320pt;}
.y15_c01191{bottom:231.502520pt;}
.y14_c01191{bottom:289.160120pt;}
.y13_c01191{bottom:345.546120pt;}
.y12_c01191{bottom:401.619720pt;}
.y11_c01191{bottom:430.136120pt;}
.y10_c01191{bottom:486.838920pt;}
.yf_c01191{bottom:515.038520pt;}
.ye_c01191{bottom:543.862920pt;}
.yd_c01191{bottom:600.570120pt;}
.yc_c01191{bottom:628.452920pt;}
.yb_c01191{bottom:685.476920pt;}
.ya_c01191{bottom:742.813320pt;}
.y5_c01191{bottom:798.570120pt;}
.y9_c01191{bottom:800.158520pt;}
.y8_c01191{bottom:808.395320pt;}
.y7_c01191{bottom:826.769720pt;}
.y2_c01191{bottom:827.398920pt;}
.y3_c01191{bottom:827.720120pt;}
.y4_c01191{bottom:831.838520pt;}
.y6_c01191{bottom:962.672520pt;}
.h12_c01191{height:20.559000pt;}
.h4_c01191{height:33.959063pt;}
.h5_c01191{height:35.446236pt;}
.h10_c01191{height:36.290191pt;}
.h11_c01191{height:36.712500pt;}
.h2_c01191{height:36.792422pt;}
.h7_c01191{height:52.511250pt;}
.hb_c01191{height:60.802673pt;}
.h8_c01191{height:61.310059pt;}
.hf_c01191{height:63.145684pt;}
.he_c01191{height:64.084453pt;}
.h3_c01191{height:64.602829pt;}
.h9_c01191{height:66.297173pt;}
.hc_c01191{height:67.734746pt;}
.hd_c01191{height:71.857500pt;}
.h6_c01191{height:78.076110pt;}
.ha_c01191{height:78.421579pt;}
.h1_c01191{height:986.666667pt;}
.h0_c01191{height:1122.666667pt;}
.w1_c01191{width:689.333333pt;}
.w0_c01191{width:793.333333pt;}
.x0_c01191{left:0.000000pt;}
.x2_c01191{left:47.398253pt;}
.x1_c01191{left:52.000000pt;}
.x42_c01191{left:66.753853pt;}
.x20_c01191{left:68.505053pt;}
.x13_c01191{left:69.803053pt;}
.x29_c01191{left:115.211053pt;}
.x3_c01191{left:116.979853pt;}
.xb_c01191{left:117.934653pt;}
.x32_c01191{left:146.420253pt;}
.x14_c01191{left:148.664253pt;}
.x47_c01191{left:165.063053pt;}
.x15_c01191{left:166.840653pt;}
.x3b_c01191{left:172.890653pt;}
.x4b_c01191{left:173.867453pt;}
.x50_c01191{left:174.998253pt;}
.xc_c01191{left:176.410653pt;}
.x3c_c01191{left:184.968653pt;}
.x4_c01191{left:187.041053pt;}
.x2a_c01191{left:194.767453pt;}
.x48_c01191{left:196.184253pt;}
.x51_c01191{left:204.209853pt;}
.x1c_c01191{left:205.961053pt;}
.x49_c01191{left:213.964653pt;}
.x3e_c01191{left:215.522253pt;}
.x5_c01191{left:218.509853pt;}
.x2d_c01191{left:224.507053pt;}
.x16_c01191{left:226.324253pt;}
.x21_c01191{left:235.168253pt;}
.x2b_c01191{left:243.092653pt;}
.x3d_c01191{left:244.896653pt;}
.x52_c01191{left:245.904253pt;}
.x1d_c01191{left:247.778653pt;}
.x43_c01191{left:252.702253pt;}
.x17_c01191{left:254.299453pt;}
.x2c_c01191{left:255.351053pt;}
.x53_c01191{left:263.200653pt;}
.x1e_c01191{left:265.207053pt;}
.x4a_c01191{left:274.645053pt;}
.x33_c01191{left:284.905853pt;}
.x22_c01191{left:294.480253pt;}
.x2e_c01191{left:296.477853pt;}
.x3f_c01191{left:302.844653pt;}
.x18_c01191{left:304.969853pt;}
.x34_c01191{left:313.189053pt;}
.x6_c01191{left:315.309853pt;}
.x44_c01191{left:332.575453pt;}
.x2f_c01191{left:342.946253pt;}
.x23_c01191{left:344.169453pt;}
.x35_c01191{left:353.303853pt;}
.x7_c01191{left:354.377453pt;}
.x54_c01191{left:370.551853pt;}
.x24_c01191{left:373.297453pt;}
.x1f_c01191{left:375.281853pt;}
.x40_c01191{left:382.766253pt;}
.x55_c01191{left:388.627053pt;}
.x36_c01191{left:391.839053pt;}
.x37_c01191{left:394.122653pt;}
.x8_c01191{left:396.397453pt;}
.x9_c01191{left:406.240253pt;}
.x19_c01191{left:412.052653pt;}
.x25_c01191{left:413.627853pt;}
.x45_c01191{left:420.967053pt;}
.xa_c01191{left:423.413453pt;}
.x30_c01191{left:432.543453pt;}
.x4c_c01191{left:441.427053pt;}
.x38_c01191{left:442.364253pt;}
.x46_c01191{left:450.746253pt;}
.x4d_c01191{left:470.436253pt;}
.x26_c01191{left:472.477853pt;}
.x1a_c01191{left:479.742253pt;}
.x1b_c01191{left:491.305453pt;}
.x27_c01191{left:500.136253pt;}
.x4e_c01191{left:509.534653pt;}
.xe_c01191{left:520.090253pt;}
.xf_c01191{left:541.417053pt;}
.x39_c01191{left:549.759453pt;}
.x28_c01191{left:550.806653pt;}
.x3a_c01191{left:569.810253pt;}
.x4f_c01191{left:578.170253pt;}
.x31_c01191{left:579.516653pt;}
.x10_c01191{left:608.477453pt;}
.x12_c01191{left:624.607853pt;}
.xd_c01191{left:629.791053pt;}
.x11_c01191{left:632.580653pt;}
.x41_c01191{left:646.379053pt;}
}





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

.ir_c01192:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01192{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01192;src:url('chunks/assets/font_dc3507201e76618e40df27c4.woff2')format("woff");}.ff1_c01192{font-family:ff1_c01192;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01192;src:url('chunks/assets/font_4b2c210f0ec23d5a14d69d5d.woff2')format("woff");}.ff2_c01192{font-family:ff2_c01192;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01192;src:url('chunks/assets/font_7fd5946c9510aefb1d8aaf9e.woff2')format("woff");}.ff3_c01192{font-family:ff3_c01192;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01192;src:url('chunks/assets/font_7dff4c2bc65cb694a7f0cd2a.woff2')format("woff");}.ff4_c01192{font-family:ff4_c01192;line-height:0.666000;font-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_c01192{transform:matrix(0.034884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.034884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.034884,0.000000,0.000000,0.250000,0,0);}
.m91_c01192{transform:matrix(0.108524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108524,0.000000,0.000000,0.250000,0,0);}
.m83_c01192{transform:matrix(0.109331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109331,0.000000,0.000000,0.250000,0,0);}
.m39_c01192{transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);}
.m93_c01192{transform:matrix(0.133523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133523,0.000000,0.000000,0.250000,0,0);}
.ma0_c01192{transform:matrix(0.144887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144887,0.000000,0.000000,0.250000,0,0);}
.m34_c01192{transform:matrix(0.145348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145348,0.000000,0.000000,0.250000,0,0);}
.m4b_c01192{transform:matrix(0.146170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146170,0.000000,0.000000,0.250000,0,0);}
.m5b_c01192{transform:matrix(0.157313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157313,0.000000,0.000000,0.250000,0,0);}
.m96_c01192{transform:matrix(0.157413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157413,0.000000,0.000000,0.250000,0,0);}
.m4d_c01192{transform:matrix(0.168657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168657,0.000000,0.000000,0.250000,0,0);}
.m59_c01192{transform:matrix(0.172619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172619,0.000000,0.000000,0.250000,0,0);}
.m36_c01192{transform:matrix(0.172757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172757,0.000000,0.000000,0.250000,0,0);}
.m61_c01192{transform:matrix(0.179167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179167,0.000000,0.000000,0.250000,0,0);}
.m53_c01192{transform:matrix(0.189787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189787,0.000000,0.000000,0.250000,0,0);}
.m3b_c01192{transform:matrix(0.192292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192292,0.000000,0.000000,0.250000,0,0);}
.m97_c01192{transform:matrix(0.224876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224876,0.000000,0.000000,0.250000,0,0);}
.m69_c01192{transform:matrix(0.228400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228400,0.000000,0.000000,0.250000,0,0);}
.m49_c01192{transform:matrix(0.231896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231896,0.000000,0.000000,0.250000,0,0);}
.ma1_c01192{transform:matrix(0.239003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239003,0.000000,0.000000,0.250000,0,0);}
.m7f_c01192{transform:matrix(0.240103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240103,0.000000,0.000000,0.250000,0,0);}
.m68_c01192{transform:matrix(0.244057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244057,0.000000,0.000000,0.250000,0,0);}
.m8d_c01192{transform:matrix(0.247268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247268,0.000000,0.000000,0.250000,0,0);}
.m0_c01192{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2_c01192{transform:matrix(0.251252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251252,0.000000,0.000000,0.250000,0,0);}
.m67_c01192{transform:matrix(0.254517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254517,0.000000,0.000000,0.250000,0,0);}
.m21_c01192{transform:matrix(0.255331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255331,0.000000,0.000000,0.250000,0,0);}
.m46_c01192{transform:matrix(0.257952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257952,0.000000,0.000000,0.250000,0,0);}
.m4c_c01192{transform:matrix(0.261364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261364,0.000000,0.000000,0.250000,0,0);}
.m8_c01192{transform:matrix(0.262509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262509,0.000000,0.000000,0.250000,0,0);}
.m1e_c01192{transform:matrix(0.262928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262928,0.000000,0.000000,0.250000,0,0);}
.m94_c01192{transform:matrix(0.264027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264027,0.000000,0.000000,0.250000,0,0);}
.ma4_c01192{transform:matrix(0.265007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265007,0.000000,0.000000,0.250000,0,0);}
.m95_c01192{transform:matrix(0.266348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266348,0.000000,0.000000,0.250000,0,0);}
.m8e_c01192{transform:matrix(0.266530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266530,0.000000,0.000000,0.250000,0,0);}
.m5a_c01192{transform:matrix(0.266943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266943,0.000000,0.000000,0.250000,0,0);}
.m89_c01192{transform:matrix(0.267311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267311,0.000000,0.000000,0.250000,0,0);}
.m55_c01192{transform:matrix(0.267836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267836,0.000000,0.000000,0.250000,0,0);}
.m8f_c01192{transform:matrix(0.267896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267896,0.000000,0.000000,0.250000,0,0);}
.m7e_c01192{transform:matrix(0.268835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268835,0.000000,0.000000,0.250000,0,0);}
.m57_c01192{transform:matrix(0.269567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269567,0.000000,0.000000,0.250000,0,0);}
.m60_c01192{transform:matrix(0.269633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269633,0.000000,0.000000,0.250000,0,0);}
.m6_c01192{transform:matrix(0.270287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270287,0.000000,0.000000,0.250000,0,0);}
.m23_c01192{transform:matrix(0.270350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270350,0.000000,0.000000,0.250000,0,0);}
.m19_c01192{transform:matrix(0.271470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271470,0.000000,0.000000,0.250000,0,0);}
.m98_c01192{transform:matrix(0.271547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271547,0.000000,0.000000,0.250000,0,0);}
.m9e_c01192{transform:matrix(0.272815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272815,0.000000,0.000000,0.250000,0,0);}
.m88_c01192{transform:matrix(0.273415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273415,0.000000,0.000000,0.250000,0,0);}
.m10_c01192{transform:matrix(0.275114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275114,0.000000,0.000000,0.250000,0,0);}
.m62_c01192{transform:matrix(0.275231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275231,0.000000,0.000000,0.250000,0,0);}
.m99_c01192{transform:matrix(0.275346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275346,0.000000,0.000000,0.250000,0,0);}
.m9a_c01192{transform:matrix(0.277104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277104,0.000000,0.000000,0.250000,0,0);}
.m56_c01192{transform:matrix(0.278154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278154,0.000000,0.000000,0.250000,0,0);}
.m33_c01192{transform:matrix(0.278755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278755,0.000000,0.000000,0.250000,0,0);}
.m2e_c01192{transform:matrix(0.278862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278862,0.000000,0.000000,0.250000,0,0);}
.m76_c01192{transform:matrix(0.279462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279462,0.000000,0.000000,0.250000,0,0);}
.m8c_c01192{transform:matrix(0.279670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279670,0.000000,0.000000,0.250000,0,0);}
.mb_c01192{transform:matrix(0.282450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282450,0.000000,0.000000,0.250000,0,0);}
.m1c_c01192{transform:matrix(0.283033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283033,0.000000,0.000000,0.250000,0,0);}
.m72_c01192{transform:matrix(0.283080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283080,0.000000,0.000000,0.250000,0,0);}
.ma2_c01192{transform:matrix(0.283132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283132,0.000000,0.000000,0.250000,0,0);}
.m50_c01192{transform:matrix(0.283601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283601,0.000000,0.000000,0.250000,0,0);}
.m9f_c01192{transform:matrix(0.285766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285766,0.000000,0.000000,0.250000,0,0);}
.m66_c01192{transform:matrix(0.286208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286208,0.000000,0.000000,0.250000,0,0);}
.m2c_c01192{transform:matrix(0.286522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286522,0.000000,0.000000,0.250000,0,0);}
.m4f_c01192{transform:matrix(0.286734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286734,0.000000,0.000000,0.250000,0,0);}
.m90_c01192{transform:matrix(0.287377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287377,0.000000,0.000000,0.250000,0,0);}
.m22_c01192{transform:matrix(0.287913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287913,0.000000,0.000000,0.250000,0,0);}
.m47_c01192{transform:matrix(0.288617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288617,0.000000,0.000000,0.250000,0,0);}
.m65_c01192{transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);}
.m5c_c01192{transform:matrix(0.290571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290571,0.000000,0.000000,0.250000,0,0);}
.m12_c01192{transform:matrix(0.290706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290706,0.000000,0.000000,0.250000,0,0);}
.m45_c01192{transform:matrix(0.291518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291518,0.000000,0.000000,0.250000,0,0);}
.m8b_c01192{transform:matrix(0.291598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291598,0.000000,0.000000,0.250000,0,0);}
.m58_c01192{transform:matrix(0.292630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292630,0.000000,0.000000,0.250000,0,0);}
.m52_c01192{transform:matrix(0.292749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292749,0.000000,0.000000,0.250000,0,0);}
.m7d_c01192{transform:matrix(0.293144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293144,0.000000,0.000000,0.250000,0,0);}
.m1_c01192{transform:matrix(0.293348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293348,0.000000,0.000000,0.250000,0,0);}
.m5d_c01192{transform:matrix(0.293514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293514,0.000000,0.000000,0.250000,0,0);}
.m8a_c01192{transform:matrix(0.293956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293956,0.000000,0.000000,0.250000,0,0);}
.m81_c01192{transform:matrix(0.296011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296011,0.000000,0.000000,0.250000,0,0);}
.m30_c01192{transform:matrix(0.296265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296265,0.000000,0.000000,0.250000,0,0);}
.m80_c01192{transform:matrix(0.296523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296523,0.000000,0.000000,0.250000,0,0);}
.m51_c01192{transform:matrix(0.297917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297917,0.000000,0.000000,0.250000,0,0);}
.m13_c01192{transform:matrix(0.298070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298070,0.000000,0.000000,0.250000,0,0);}
.m15_c01192{transform:matrix(0.298467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298467,0.000000,0.000000,0.250000,0,0);}
.m9d_c01192{transform:matrix(0.299261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299261,0.000000,0.000000,0.250000,0,0);}
.m29_c01192{transform:matrix(0.299346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299346,0.000000,0.000000,0.250000,0,0);}
.m41_c01192{transform:matrix(0.300169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300169,0.000000,0.000000,0.250000,0,0);}
.m31_c01192{transform:matrix(0.301094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301094,0.000000,0.000000,0.250000,0,0);}
.m9c_c01192{transform:matrix(0.301453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301453,0.000000,0.000000,0.250000,0,0);}
.m6d_c01192{transform:matrix(0.301771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301771,0.000000,0.000000,0.250000,0,0);}
.m26_c01192{transform:matrix(0.302362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302362,0.000000,0.000000,0.250000,0,0);}
.m73_c01192{transform:matrix(0.302447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302447,0.000000,0.000000,0.250000,0,0);}
.m1b_c01192{transform:matrix(0.302497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302497,0.000000,0.000000,0.250000,0,0);}
.m3e_c01192{transform:matrix(0.302505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302505,0.000000,0.000000,0.250000,0,0);}
.m3a_c01192{transform:matrix(0.303152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303152,0.000000,0.000000,0.250000,0,0);}
.m18_c01192{transform:matrix(0.303465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303465,0.000000,0.000000,0.250000,0,0);}
.m77_c01192{transform:matrix(0.303718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303718,0.000000,0.000000,0.250000,0,0);}
.m4e_c01192{transform:matrix(0.304246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304246,0.000000,0.000000,0.250000,0,0);}
.m44_c01192{transform:matrix(0.304470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304470,0.000000,0.000000,0.250000,0,0);}
.ma3_c01192{transform:matrix(0.305628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305628,0.000000,0.000000,0.250000,0,0);}
.m5_c01192{transform:matrix(0.305970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305970,0.000000,0.000000,0.250000,0,0);}
.m11_c01192{transform:matrix(0.306311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306311,0.000000,0.000000,0.250000,0,0);}
.m6a_c01192{transform:matrix(0.307480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307480,0.000000,0.000000,0.250000,0,0);}
.m92_c01192{transform:matrix(0.307911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307911,0.000000,0.000000,0.250000,0,0);}
.m87_c01192{transform:matrix(0.308014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308014,0.000000,0.000000,0.250000,0,0);}
.m84_c01192{transform:matrix(0.308022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308022,0.000000,0.000000,0.250000,0,0);}
.mf_c01192{transform:matrix(0.308494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308494,0.000000,0.000000,0.250000,0,0);}
.m25_c01192{transform:matrix(0.308525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308525,0.000000,0.000000,0.250000,0,0);}
.m32_c01192{transform:matrix(0.308665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308665,0.000000,0.000000,0.250000,0,0);}
.ma_c01192{transform:matrix(0.308890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308890,0.000000,0.000000,0.250000,0,0);}
.m3d_c01192{transform:matrix(0.309086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309086,0.000000,0.000000,0.250000,0,0);}
.m5f_c01192{transform:matrix(0.311190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311190,0.000000,0.000000,0.250000,0,0);}
.m5e_c01192{transform:matrix(0.311824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311824,0.000000,0.000000,0.250000,0,0);}
.m64_c01192{transform:matrix(0.312017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312017,0.000000,0.000000,0.250000,0,0);}
.m28_c01192{transform:matrix(0.312250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312250,0.000000,0.000000,0.250000,0,0);}
.m3f_c01192{transform:matrix(0.312954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312954,0.000000,0.000000,0.250000,0,0);}
.m38_c01192{transform:matrix(0.314677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314677,0.000000,0.000000,0.250000,0,0);}
.m2b_c01192{transform:matrix(0.315234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315234,0.000000,0.000000,0.250000,0,0);}
.m1a_c01192{transform:matrix(0.316299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316299,0.000000,0.000000,0.250000,0,0);}
.m48_c01192{transform:matrix(0.316404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316404,0.000000,0.000000,0.250000,0,0);}
.m74_c01192{transform:matrix(0.316623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316623,0.000000,0.000000,0.250000,0,0);}
.m85_c01192{transform:matrix(0.316739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316739,0.000000,0.000000,0.250000,0,0);}
.m7b_c01192{transform:matrix(0.317649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317649,0.000000,0.000000,0.250000,0,0);}
.m86_c01192{transform:matrix(0.319748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319748,0.000000,0.000000,0.250000,0,0);}
.m7a_c01192{transform:matrix(0.320459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320459,0.000000,0.000000,0.250000,0,0);}
.m16_c01192{transform:matrix(0.321555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321555,0.000000,0.000000,0.250000,0,0);}
.m2a_c01192{transform:matrix(0.322929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322929,0.000000,0.000000,0.250000,0,0);}
.m3_c01192{transform:matrix(0.323119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323119,0.000000,0.000000,0.250000,0,0);}
.m40_c01192{transform:matrix(0.324305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324305,0.000000,0.000000,0.250000,0,0);}
.m71_c01192{transform:matrix(0.324998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324998,0.000000,0.000000,0.250000,0,0);}
.m4_c01192{transform:matrix(0.326222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326222,0.000000,0.000000,0.250000,0,0);}
.m24_c01192{transform:matrix(0.326714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326714,0.000000,0.000000,0.250000,0,0);}
.m79_c01192{transform:matrix(0.327353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327353,0.000000,0.000000,0.250000,0,0);}
.m17_c01192{transform:matrix(0.327391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327391,0.000000,0.000000,0.250000,0,0);}
.m1f_c01192{transform:matrix(0.328840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328840,0.000000,0.000000,0.250000,0,0);}
.m43_c01192{transform:matrix(0.329880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329880,0.000000,0.000000,0.250000,0,0);}
.m3c_c01192{transform:matrix(0.333407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333407,0.000000,0.000000,0.250000,0,0);}
.m7c_c01192{transform:matrix(0.334351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334351,0.000000,0.000000,0.250000,0,0);}
.m6c_c01192{transform:matrix(0.337747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337747,0.000000,0.000000,0.250000,0,0);}
.m14_c01192{transform:matrix(0.337911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337911,0.000000,0.000000,0.250000,0,0);}
.m75_c01192{transform:matrix(0.339341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339341,0.000000,0.000000,0.250000,0,0);}
.m2f_c01192{transform:matrix(0.340399,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340399,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340399,0.000000,0.000000,0.250000,0,0);}
.m4a_c01192{transform:matrix(0.341977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341977,0.000000,0.000000,0.250000,0,0);}
.md_c01192{transform:matrix(0.342064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342064,0.000000,0.000000,0.250000,0,0);}
.m6f_c01192{transform:matrix(0.343314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343314,0.000000,0.000000,0.250000,0,0);}
.m7_c01192{transform:matrix(0.344431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344431,0.000000,0.000000,0.250000,0,0);}
.m6b_c01192{transform:matrix(0.345552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345552,0.000000,0.000000,0.250000,0,0);}
.m54_c01192{transform:matrix(0.348169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348169,0.000000,0.000000,0.250000,0,0);}
.m78_c01192{transform:matrix(0.350820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350820,0.000000,0.000000,0.250000,0,0);}
.m1d_c01192{transform:matrix(0.354500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354500,0.000000,0.000000,0.250000,0,0);}
.mc_c01192{transform:matrix(0.354643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354643,0.000000,0.000000,0.250000,0,0);}
.m27_c01192{transform:matrix(0.357595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357595,0.000000,0.000000,0.250000,0,0);}
.m42_c01192{transform:matrix(0.358222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358222,0.000000,0.000000,0.250000,0,0);}
.m6e_c01192{transform:matrix(0.360830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360830,0.000000,0.000000,0.250000,0,0);}
.m70_c01192{transform:matrix(0.362043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362043,0.000000,0.000000,0.250000,0,0);}
.m20_c01192{transform:matrix(0.366938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366938,0.000000,0.000000,0.250000,0,0);}
.m9_c01192{transform:matrix(0.366985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366985,0.000000,0.000000,0.250000,0,0);}
.m82_c01192{transform:matrix(0.376002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376002,0.000000,0.000000,0.250000,0,0);}
.me_c01192{transform:matrix(0.390139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390139,0.000000,0.000000,0.250000,0,0);}
.m37_c01192{transform:matrix(0.396432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396432,0.000000,0.000000,0.250000,0,0);}
.m9b_c01192{transform:matrix(0.398378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398378,0.000000,0.000000,0.250000,0,0);}
.m2d_c01192{transform:matrix(0.402725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402725,0.000000,0.000000,0.250000,0,0);}
.m63_c01192{transform:matrix(0.421500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421500,0.000000,0.000000,0.250000,0,0);}
.v0_c01192{vertical-align:0.000000px;}
.v1_c01192{vertical-align:2.855160px;}
.lsb_c01192{letter-spacing:-3.090780px;}
.lsa_c01192{letter-spacing:-2.626477px;}
.ls3_c01192{letter-spacing:-2.596460px;}
.ls14_c01192{letter-spacing:-2.078669px;}
.ls1a_c01192{letter-spacing:-1.770996px;}
.ls12_c01192{letter-spacing:-0.292665px;}
.ls1_c01192{letter-spacing:0.000000px;}
.ls6_c01192{letter-spacing:1.050591px;}
.ls13_c01192{letter-spacing:1.658433px;}
.ls4_c01192{letter-spacing:1.853542px;}
.lsf_c01192{letter-spacing:2.168720px;}
.ls0_c01192{letter-spacing:2.611468px;}
.ls15_c01192{letter-spacing:2.949158px;}
.ls7_c01192{letter-spacing:3.234319px;}
.ls18_c01192{letter-spacing:3.436933px;}
.ls11_c01192{letter-spacing:3.484810px;}
.ls17_c01192{letter-spacing:3.583810px;}
.ls5_c01192{letter-spacing:3.663000px;}
.ls2_c01192{letter-spacing:3.752110px;}
.ls19_c01192{letter-spacing:3.762000px;}
.ls16_c01192{letter-spacing:3.979810px;}
.ls10_c01192{letter-spacing:4.138200px;}
.ls9_c01192{letter-spacing:31.363200px;}
.lsd_c01192{letter-spacing:58.449798px;}
.lse_c01192{letter-spacing:59.875398px;}
.ls8_c01192{letter-spacing:61.300998px;}
.lsc_c01192{letter-spacing:62.726400px;}
.sc__c01192{text-shadow:none;}
.sc0_c01192{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01192{-webkit-text-stroke:0px transparent;}
.sc0_c01192{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01192{word-spacing:-18.760550px;}
.ws1_c01192{word-spacing:0.000000px;}
._3_c01192{margin-left:-16.959344px;}
._4_c01192{margin-left:-12.907064px;}
._6_c01192{margin-left:-8.179416px;}
._0_c01192{margin-left:-1.051416px;}
._5_c01192{width:2.176328px;}
._1_c01192{width:4.728171px;}
._2_c01192{width:6.228387px;}
._9_c01192{width:11.959101px;}
._8_c01192{width:24.452901px;}
._7_c01192{width:34.647921px;}
._a_c01192{width:2081.079000px;}
.fc0_c01192{color:transparent;}
.fs1_c01192{font-size:22.176000px;}
.fs5_c01192{font-size:25.344000px;}
.fs0_c01192{font-size:27.720000px;}
.fs7_c01192{font-size:31.363200px;}
.fsa_c01192{font-size:58.449798px;}
.fsb_c01192{font-size:59.875398px;}
.fs6_c01192{font-size:61.300998px;}
.fs9_c01192{font-size:62.726400px;}
.fs4_c01192{font-size:66.528000px;}
.fsd_c01192{font-size:69.696198px;}
.fsf_c01192{font-size:71.676198px;}
.fs3_c01192{font-size:73.260000px;}
.fs2_c01192{font-size:75.042198px;}
.fs10_c01192{font-size:75.240000px;}
.fse_c01192{font-size:79.596198px;}
.fsc_c01192{font-size:82.764000px;}
.fs8_c01192{font-size:88.308000px;}
.y0_c01192{bottom:0.000000px;}
.y20_c01192{bottom:66.558735px;}
.y1_c01192{bottom:76.500000px;}
.y1f_c01192{bottom:119.305935px;}
.y1e_c01192{bottom:152.094735px;}
.y1d_c01192{bottom:184.878585px;}
.y1c_c01192{bottom:218.380185px;}
.y1b_c01192{bottom:250.817535px;}
.y1a_c01192{bottom:282.893535px;}
.y19_c01192{bottom:315.320985px;}
.y18_c01192{bottom:347.758335px;}
.y17_c01192{bottom:410.479785px;}
.y16_c01192{bottom:435.432735px;}
.y15_c01192{bottom:442.560735px;}
.y14_c01192{bottom:474.275385px;}
.y13_c01192{bottom:507.069135px;}
.y12_c01192{bottom:570.146985px;}
.y11_c01192{bottom:634.660335px;}
.y10_c01192{bottom:667.800585px;}
.yd_c01192{bottom:699.881535px;}
.yf_c01192{bottom:700.237935px;}
.ye_c01192{bottom:714.488985px;}
.yc_c01192{bottom:724.824585px;}
.yb_c01192{bottom:737.659935px;}
.ya_c01192{bottom:764.389935px;}
.y9_c01192{bottom:796.104585px;}
.y8_c01192{bottom:827.472735px;}
.y7_c01192{bottom:859.192335px;}
.y6_c01192{bottom:890.906985px;}
.y5_c01192{bottom:922.987935px;}
.y2_c01192{bottom:983.932335px;}
.y3_c01192{bottom:1085.149935px;}
.y4_c01192{bottom:1086.926985px;}
.h9_c01192{height:20.887891px;}
.h3_c01192{height:23.128875px;}
.h7_c01192{height:24.873750px;}
.h2_c01192{height:28.911094px;}
.h13_c01192{height:31.766254px;}
.hc_c01192{height:38.927565px;}
.hd_c01192{height:39.877015px;}
.h8_c01192{height:40.826465px;}
.hb_c01192{height:41.775782px;}
.h6_c01192{height:69.386625px;}
.h11_c01192{height:70.346269px;}
.h5_c01192{height:71.864912px;}
.hf_c01192{height:72.690957px;}
.h4_c01192{height:73.649813px;}
.h12_c01192{height:73.843945px;}
.h10_c01192{height:78.119315px;}
.he_c01192{height:81.228340px;}
.ha_c01192{height:86.626354px;}
.h1_c01192{height:1110.000000px;}
.h0_c01192{height:1263.000000px;}
.w1_c01192{width:775.500000px;}
.w0_c01192{width:892.500000px;}
.x0_c01192{left:0.000000px;}
.x2_c01192{left:22.331085px;}
.x1_c01192{left:58.500000px;}
.x3f_c01192{left:78.662085px;}
.x5_c01192{left:80.805435px;}
.x47_c01192{left:131.750835px;}
.x6_c01192{left:133.790235px;}
.x20_c01192{left:135.443535px;}
.x51_c01192{left:144.813885px;}
.x27_c01192{left:156.921585px;}
.x37_c01192{left:165.272235px;}
.x18_c01192{left:167.420535px;}
.x38_c01192{left:179.003535px;}
.x64_c01192{left:182.711085px;}
.x7_c01192{left:188.839185px;}
.x21_c01192{left:190.428135px;}
.x4e_c01192{left:198.828285px;}
.x2d_c01192{left:200.372685px;}
.x48_c01192{left:221.251785px;}
.x19_c01192{left:223.558485px;}
.xf_c01192{left:233.022885px;}
.x3d_c01192{left:241.586385px;}
.x8_c01192{left:245.298885px;}
.x3e_c01192{left:254.758335px;}
.x22_c01192{left:256.263135px;}
.x59_c01192{left:266.697735px;}
.x2e_c01192{left:277.775835px;}
.x39_c01192{left:288.913335px;}
.x49_c01192{left:299.684535px;}
.x1a_c01192{left:310.317135px;}
.x10_c01192{left:312.277335px;}
.x4b_c01192{left:321.350685px;}
.x1b_c01192{left:323.390085px;}
.x5a_c01192{left:332.503035px;}
.x11_c01192{left:334.215735px;}
.x9_c01192{left:344.595885px;}
.x5f_c01192{left:354.985935px;}
.x23_c01192{left:356.173935px;}
.x4c_c01192{left:366.390735px;}
.xa_c01192{left:367.563885px;}
.x35_c01192{left:376.350135px;}
.x1c_c01192{left:377.741085px;}
.x4a_c01192{left:388.556835px;}
.x2f_c01192{left:389.962635px;}
.x28_c01192{left:392.219835px;}
.x60_c01192{left:398.719185px;}
.x12_c01192{left:400.322985px;}
.x4d_c01192{left:410.519985px;}
.x52_c01192{left:411.722835px;}
.x24_c01192{left:422.954385px;}
.x13_c01192{left:432.973185px;}
.x29_c01192{left:434.205735px;}
.x40_c01192{left:435.631335px;}
.x5b_c01192{left:444.085935px;}
.xb_c01192{left:445.288785px;}
.x41_c01192{left:446.907435px;}
.x55_c01192{left:452.931585px;}
.x3a_c01192{left:455.911485px;}
.x61_c01192{left:464.074035px;}
.x36_c01192{left:466.252035px;}
.xc_c01192{left:478.701285px;}
.x1d_c01192{left:488.145885px;}
.x44_c01192{left:498.134985px;}
.x25_c01192{left:500.530785px;}
.x14_c01192{left:511.217835px;}
.x43_c01192{left:520.989135px;}
.x42_c01192{left:522.414735px;}
.xd_c01192{left:532.403835px;}
.x15_c01192{left:543.605685px;}
.x30_c01192{left:544.957035px;}
.x4f_c01192{left:555.698535px;}
.x2a_c01192{left:557.653785px;}
.x31_c01192{left:577.379535px;}
.x56_c01192{left:586.126185px;}
.x3b_c01192{left:588.259635px;}
.x2b_c01192{left:589.502085px;}
.x57_c01192{left:590.769285px;}
.xe_c01192{left:598.852635px;}
.x58_c01192{left:599.921835px;}
.x53_c01192{left:608.252685px;}
.x1e_c01192{left:609.787185px;}
.x16_c01192{left:621.058335px;}
.x26_c01192{left:631.681035px;}
.x3c_c01192{left:642.100785px;}
.x45_c01192{left:653.272935px;}
.x50_c01192{left:654.361935px;}
.x5c_c01192{left:655.535085px;}
.x3_c01192{left:665.301435px;}
.x63_c01192{left:674.706435px;}
.x62_c01192{left:676.028085px;}
.x54_c01192{left:677.285385px;}
.x5d_c01192{left:684.893535px;}
.x1f_c01192{left:687.502185px;}
.x17_c01192{left:697.956585px;}
.x5e_c01192{left:699.599985px;}
.x33_c01192{left:702.188835px;}
.x34_c01192{left:703.876785px;}
.x4_c01192{left:705.035085px;}
.x2c_c01192{left:710.049435px;}
.x32_c01192{left:722.459085px;}
.x46_c01192{left:723.533235px;}
@media print{
.v0_c01192{vertical-align:0.000000pt;}
.v1_c01192{vertical-align:2.537920pt;}
.lsb_c01192{letter-spacing:-2.747360pt;}
.lsa_c01192{letter-spacing:-2.334646pt;}
.ls3_c01192{letter-spacing:-2.307964pt;}
.ls14_c01192{letter-spacing:-1.847706pt;}
.ls1a_c01192{letter-spacing:-1.574219pt;}
.ls12_c01192{letter-spacing:-0.260146pt;}
.ls1_c01192{letter-spacing:0.000000pt;}
.ls6_c01192{letter-spacing:0.933858pt;}
.ls13_c01192{letter-spacing:1.474162pt;}
.ls4_c01192{letter-spacing:1.647593pt;}
.lsf_c01192{letter-spacing:1.927751pt;}
.ls0_c01192{letter-spacing:2.321305pt;}
.ls15_c01192{letter-spacing:2.621474pt;}
.ls7_c01192{letter-spacing:2.874950pt;}
.ls18_c01192{letter-spacing:3.055051pt;}
.ls11_c01192{letter-spacing:3.097609pt;}
.ls17_c01192{letter-spacing:3.185609pt;}
.ls5_c01192{letter-spacing:3.256000pt;}
.ls2_c01192{letter-spacing:3.335209pt;}
.ls19_c01192{letter-spacing:3.344000pt;}
.ls16_c01192{letter-spacing:3.537609pt;}
.ls10_c01192{letter-spacing:3.678400pt;}
.ls9_c01192{letter-spacing:27.878400pt;}
.lsd_c01192{letter-spacing:51.955376pt;}
.lse_c01192{letter-spacing:53.222576pt;}
.ls8_c01192{letter-spacing:54.489776pt;}
.lsc_c01192{letter-spacing:55.756800pt;}
.ws0_c01192{word-spacing:-16.676044pt;}
.ws1_c01192{word-spacing:0.000000pt;}
._3_c01192{margin-left:-15.074972pt;}
._4_c01192{margin-left:-11.472946pt;}
._6_c01192{margin-left:-7.270592pt;}
._0_c01192{margin-left:-0.934592pt;}
._5_c01192{width:1.934514pt;}
._1_c01192{width:4.202818pt;}
._2_c01192{width:5.536344pt;}
._9_c01192{width:10.630312pt;}
._8_c01192{width:21.735912pt;}
._7_c01192{width:30.798152pt;}
._a_c01192{width:1849.848000pt;}
.fs1_c01192{font-size:19.712000pt;}
.fs5_c01192{font-size:22.528000pt;}
.fs0_c01192{font-size:24.640000pt;}
.fs7_c01192{font-size:27.878400pt;}
.fsa_c01192{font-size:51.955376pt;}
.fsb_c01192{font-size:53.222576pt;}
.fs6_c01192{font-size:54.489776pt;}
.fs9_c01192{font-size:55.756800pt;}
.fs4_c01192{font-size:59.136000pt;}
.fsd_c01192{font-size:61.952176pt;}
.fsf_c01192{font-size:63.712176pt;}
.fs3_c01192{font-size:65.120000pt;}
.fs2_c01192{font-size:66.704176pt;}
.fs10_c01192{font-size:66.880000pt;}
.fse_c01192{font-size:70.752176pt;}
.fsc_c01192{font-size:73.568000pt;}
.fs8_c01192{font-size:78.496000pt;}
.y0_c01192{bottom:0.000000pt;}
.y20_c01192{bottom:59.163320pt;}
.y1_c01192{bottom:68.000000pt;}
.y1f_c01192{bottom:106.049720pt;}
.y1e_c01192{bottom:135.195320pt;}
.y1d_c01192{bottom:164.336520pt;}
.y1c_c01192{bottom:194.115720pt;}
.y1b_c01192{bottom:222.948920pt;}
.y1a_c01192{bottom:251.460920pt;}
.y19_c01192{bottom:280.285320pt;}
.y18_c01192{bottom:309.118520pt;}
.y17_c01192{bottom:364.870920pt;}
.y16_c01192{bottom:387.051320pt;}
.y15_c01192{bottom:393.387320pt;}
.y14_c01192{bottom:421.578120pt;}
.y13_c01192{bottom:450.728120pt;}
.y12_c01192{bottom:506.797320pt;}
.y11_c01192{bottom:564.142520pt;}
.y10_c01192{bottom:593.600520pt;}
.yd_c01192{bottom:622.116920pt;}
.yf_c01192{bottom:622.433720pt;}
.ye_c01192{bottom:635.101320pt;}
.yc_c01192{bottom:644.288520pt;}
.yb_c01192{bottom:655.697720pt;}
.ya_c01192{bottom:679.457720pt;}
.y9_c01192{bottom:707.648520pt;}
.y8_c01192{bottom:735.531320pt;}
.y7_c01192{bottom:763.726520pt;}
.y6_c01192{bottom:791.917320pt;}
.y5_c01192{bottom:820.433720pt;}
.y2_c01192{bottom:874.606520pt;}
.y3_c01192{bottom:964.577720pt;}
.y4_c01192{bottom:966.157320pt;}
.h9_c01192{height:18.567014pt;}
.h3_c01192{height:20.559000pt;}
.h7_c01192{height:22.110000pt;}
.h2_c01192{height:25.698750pt;}
.h13_c01192{height:28.236670pt;}
.hc_c01192{height:34.602280pt;}
.hd_c01192{height:35.446236pt;}
.h8_c01192{height:36.290191pt;}
.hb_c01192{height:37.134029pt;}
.h6_c01192{height:61.677000pt;}
.h11_c01192{height:62.530016pt;}
.h5_c01192{height:63.879922pt;}
.hf_c01192{height:64.614184pt;}
.h4_c01192{height:65.466501pt;}
.h12_c01192{height:65.639063pt;}
.h10_c01192{height:69.439391pt;}
.he_c01192{height:72.202969pt;}
.ha_c01192{height:77.001203pt;}
.h1_c01192{height:986.666667pt;}
.h0_c01192{height:1122.666667pt;}
.w1_c01192{width:689.333333pt;}
.w0_c01192{width:793.333333pt;}
.x0_c01192{left:0.000000pt;}
.x2_c01192{left:19.849853pt;}
.x1_c01192{left:52.000000pt;}
.x3f_c01192{left:69.921853pt;}
.x5_c01192{left:71.827053pt;}
.x47_c01192{left:117.111853pt;}
.x6_c01192{left:118.924653pt;}
.x20_c01192{left:120.394253pt;}
.x51_c01192{left:128.723453pt;}
.x27_c01192{left:139.485853pt;}
.x37_c01192{left:146.908653pt;}
.x18_c01192{left:148.818253pt;}
.x38_c01192{left:159.114253pt;}
.x64_c01192{left:162.409853pt;}
.x7_c01192{left:167.857053pt;}
.x21_c01192{left:169.269453pt;}
.x4e_c01192{left:176.736253pt;}
.x2d_c01192{left:178.109053pt;}
.x48_c01192{left:196.668253pt;}
.x19_c01192{left:198.718653pt;}
.xf_c01192{left:207.131453pt;}
.x3d_c01192{left:214.743453pt;}
.x8_c01192{left:218.043453pt;}
.x3e_c01192{left:226.451853pt;}
.x22_c01192{left:227.789453pt;}
.x59_c01192{left:237.064653pt;}
.x2e_c01192{left:246.911853pt;}
.x39_c01192{left:256.811853pt;}
.x49_c01192{left:266.386253pt;}
.x1a_c01192{left:275.837453pt;}
.x10_c01192{left:277.579853pt;}
.x4b_c01192{left:285.645053pt;}
.x1b_c01192{left:287.457853pt;}
.x5a_c01192{left:295.558253pt;}
.x11_c01192{left:297.080653pt;}
.x9_c01192{left:306.307453pt;}
.x5f_c01192{left:315.543053pt;}
.x23_c01192{left:316.599053pt;}
.x4c_c01192{left:325.680653pt;}
.xa_c01192{left:326.723453pt;}
.x35_c01192{left:334.533453pt;}
.x1c_c01192{left:335.769853pt;}
.x4a_c01192{left:345.383853pt;}
.x2f_c01192{left:346.633453pt;}
.x28_c01192{left:348.639853pt;}
.x60_c01192{left:354.417053pt;}
.x12_c01192{left:355.842653pt;}
.x4d_c01192{left:364.906653pt;}
.x52_c01192{left:365.975853pt;}
.x24_c01192{left:375.959453pt;}
.x13_c01192{left:384.865053pt;}
.x29_c01192{left:385.960653pt;}
.x40_c01192{left:387.227853pt;}
.x5b_c01192{left:394.743053pt;}
.xb_c01192{left:395.812253pt;}
.x41_c01192{left:397.251053pt;}
.x55_c01192{left:402.605853pt;}
.x3a_c01192{left:405.254653pt;}
.x61_c01192{left:412.510253pt;}
.x36_c01192{left:414.446253pt;}
.xc_c01192{left:425.512253pt;}
.x1d_c01192{left:433.907453pt;}
.x44_c01192{left:442.786653pt;}
.x25_c01192{left:444.916253pt;}
.x14_c01192{left:454.415853pt;}
.x43_c01192{left:463.101453pt;}
.x42_c01192{left:464.368653pt;}
.xd_c01192{left:473.247853pt;}
.x15_c01192{left:483.205053pt;}
.x30_c01192{left:484.406253pt;}
.x4f_c01192{left:493.954253pt;}
.x2a_c01192{left:495.692253pt;}
.x31_c01192{left:513.226253pt;}
.x56_c01192{left:521.001053pt;}
.x3b_c01192{left:522.897453pt;}
.x2b_c01192{left:524.001853pt;}
.x57_c01192{left:525.128253pt;}
.xe_c01192{left:532.313453pt;}
.x58_c01192{left:533.263853pt;}
.x53_c01192{left:540.669053pt;}
.x1e_c01192{left:542.033053pt;}
.x16_c01192{left:552.051853pt;}
.x26_c01192{left:561.494253pt;}
.x3c_c01192{left:570.756253pt;}
.x45_c01192{left:580.687053pt;}
.x50_c01192{left:581.655053pt;}
.x5c_c01192{left:582.697853pt;}
.x3_c01192{left:591.379053pt;}
.x63_c01192{left:599.739053pt;}
.x62_c01192{left:600.913853pt;}
.x54_c01192{left:602.031453pt;}
.x5d_c01192{left:608.794253pt;}
.x1f_c01192{left:611.113053pt;}
.x17_c01192{left:620.405853pt;}
.x5e_c01192{left:621.866653pt;}
.x33_c01192{left:624.167853pt;}
.x34_c01192{left:625.668253pt;}
.x4_c01192{left:626.697853pt;}
.x2c_c01192{left:631.155053pt;}
.x32_c01192{left:642.185853pt;}
.x46_c01192{left:643.140653pt;}
}





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

.ir_c01193:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01193{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01193;src:url('chunks/assets/font_e70d7be2c52b5593bea9886f.woff2')format("woff");}.ff1_c01193{font-family:ff1_c01193;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01193;src:url('chunks/assets/font_0d6f7f3a56bcab4548592f4a.woff2')format("woff");}.ff2_c01193{font-family:ff2_c01193;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01193;src:url('chunks/assets/font_d9aeec4d47dc79942706acd8.woff2')format("woff");}.ff3_c01193{font-family:ff3_c01193;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01193;src:url('chunks/assets/font_edcc006c864d99e56da12f3a.woff2')format("woff");}.ff4_c01193{font-family:ff4_c01193;line-height:0.689941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01193;src:url('chunks/assets/font_7f15953fa8010f18c45c7ddc.woff2')format("woff");}.ff5_c01193{font-family:ff5_c01193;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01193;src:url('chunks/assets/font_ca9cc07c1ec24b7b233e3b4f.woff2')format("woff");}.ff6_c01193{font-family:ff6_c01193;line-height:0.666000;font-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_c01193{transform:matrix(0.142960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142960,0.000000,0.000000,0.250000,0,0);}
.m77_c01193{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m72_c01193{transform:matrix(0.164244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164244,0.000000,0.000000,0.250000,0,0);}
.m33_c01193{transform:matrix(0.164953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164953,0.000000,0.000000,0.250000,0,0);}
.m76_c01193{transform:matrix(0.172222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172222,0.000000,0.000000,0.250000,0,0);}
.m7e_c01193{transform:matrix(0.175117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175117,0.000000,0.000000,0.250000,0,0);}
.m27_c01193{transform:matrix(0.181714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181714,0.000000,0.000000,0.250000,0,0);}
.m7d_c01193{transform:matrix(0.213632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213632,0.000000,0.000000,0.250000,0,0);}
.m70_c01193{transform:matrix(0.249541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249541,0.000000,0.000000,0.250000,0,0);}
.m0_c01193{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m42_c01193{transform:matrix(0.251241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251241,0.000000,0.000000,0.250000,0,0);}
.m25_c01193{transform:matrix(0.254339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254339,0.000000,0.000000,0.250000,0,0);}
.m2_c01193{transform:matrix(0.254602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254602,0.000000,0.000000,0.250000,0,0);}
.m6f_c01193{transform:matrix(0.255199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255199,0.000000,0.000000,0.250000,0,0);}
.m53_c01193{transform:matrix(0.257168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257168,0.000000,0.000000,0.250000,0,0);}
.m13_c01193{transform:matrix(0.258042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258042,0.000000,0.000000,0.250000,0,0);}
.m47_c01193{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m3d_c01193{transform:matrix(0.261179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261179,0.000000,0.000000,0.250000,0,0);}
.m26_c01193{transform:matrix(0.261437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261437,0.000000,0.000000,0.250000,0,0);}
.m2f_c01193{transform:matrix(0.263615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263615,0.000000,0.000000,0.250000,0,0);}
.m32_c01193{transform:matrix(0.264124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264124,0.000000,0.000000,0.250000,0,0);}
.m50_c01193{transform:matrix(0.265851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265851,0.000000,0.000000,0.250000,0,0);}
.m56_c01193{transform:matrix(0.266826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266826,0.000000,0.000000,0.250000,0,0);}
.m69_c01193{transform:matrix(0.266926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266926,0.000000,0.000000,0.250000,0,0);}
.m66_c01193{transform:matrix(0.267714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267714,0.000000,0.000000,0.250000,0,0);}
.m5_c01193{transform:matrix(0.268385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268385,0.000000,0.000000,0.250000,0,0);}
.m45_c01193{transform:matrix(0.269380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269380,0.000000,0.000000,0.250000,0,0);}
.m4_c01193{transform:matrix(0.270185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270185,0.000000,0.000000,0.250000,0,0);}
.m43_c01193{transform:matrix(0.270873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270873,0.000000,0.000000,0.250000,0,0);}
.m30_c01193{transform:matrix(0.270894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270894,0.000000,0.000000,0.250000,0,0);}
.m6b_c01193{transform:matrix(0.271410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271410,0.000000,0.000000,0.250000,0,0);}
.m55_c01193{transform:matrix(0.271487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271487,0.000000,0.000000,0.250000,0,0);}
.m63_c01193{transform:matrix(0.272237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272237,0.000000,0.000000,0.250000,0,0);}
.m17_c01193{transform:matrix(0.273743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273743,0.000000,0.000000,0.250000,0,0);}
.m6_c01193{transform:matrix(0.273817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273817,0.000000,0.000000,0.250000,0,0);}
.ma_c01193{transform:matrix(0.274836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274836,0.000000,0.000000,0.250000,0,0);}
.m3_c01193{transform:matrix(0.274959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274959,0.000000,0.000000,0.250000,0,0);}
.m2b_c01193{transform:matrix(0.275114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275114,0.000000,0.000000,0.250000,0,0);}
.m81_c01193{transform:matrix(0.275222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275222,0.000000,0.000000,0.250000,0,0);}
.m34_c01193{transform:matrix(0.275309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275309,0.000000,0.000000,0.250000,0,0);}
.me_c01193{transform:matrix(0.276140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276140,0.000000,0.000000,0.250000,0,0);}
.m5a_c01193{transform:matrix(0.276522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276522,0.000000,0.000000,0.250000,0,0);}
.m3e_c01193{transform:matrix(0.276739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276739,0.000000,0.000000,0.250000,0,0);}
.m73_c01193{transform:matrix(0.277858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277858,0.000000,0.000000,0.250000,0,0);}
.m39_c01193{transform:matrix(0.278154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278154,0.000000,0.000000,0.250000,0,0);}
.m24_c01193{transform:matrix(0.278579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278579,0.000000,0.000000,0.250000,0,0);}
.m67_c01193{transform:matrix(0.280463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280463,0.000000,0.000000,0.250000,0,0);}
.m75_c01193{transform:matrix(0.281762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281762,0.000000,0.000000,0.250000,0,0);}
.m3f_c01193{transform:matrix(0.282018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282018,0.000000,0.000000,0.250000,0,0);}
.m19_c01193{transform:matrix(0.283033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283033,0.000000,0.000000,0.250000,0,0);}
.m44_c01193{transform:matrix(0.283082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283082,0.000000,0.000000,0.250000,0,0);}
.m23_c01193{transform:matrix(0.283164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283164,0.000000,0.000000,0.250000,0,0);}
.m5c_c01193{transform:matrix(0.283579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283579,0.000000,0.000000,0.250000,0,0);}
.m14_c01193{transform:matrix(0.286107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286107,0.000000,0.000000,0.250000,0,0);}
.m1c_c01193{transform:matrix(0.286513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286513,0.000000,0.000000,0.250000,0,0);}
.m1b_c01193{transform:matrix(0.287020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287020,0.000000,0.000000,0.250000,0,0);}
.m49_c01193{transform:matrix(0.287524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287524,0.000000,0.000000,0.250000,0,0);}
.m78_c01193{transform:matrix(0.287897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287897,0.000000,0.000000,0.250000,0,0);}
.m62_c01193{transform:matrix(0.287913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287913,0.000000,0.000000,0.250000,0,0);}
.m1_c01193{transform:matrix(0.288500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01193{transform:matrix(0.288702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288702,0.000000,0.000000,0.250000,0,0);}
.m68_c01193{transform:matrix(0.289207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289207,0.000000,0.000000,0.250000,0,0);}
.m4c_c01193{transform:matrix(0.289285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289285,0.000000,0.000000,0.250000,0,0);}
.m10_c01193{transform:matrix(0.289521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289521,0.000000,0.000000,0.250000,0,0);}
.m11_c01193{transform:matrix(0.290036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290036,0.000000,0.000000,0.250000,0,0);}
.m1f_c01193{transform:matrix(0.291518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291518,0.000000,0.000000,0.250000,0,0);}
.m7b_c01193{transform:matrix(0.292626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292626,0.000000,0.000000,0.250000,0,0);}
.m4b_c01193{transform:matrix(0.294235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294235,0.000000,0.000000,0.250000,0,0);}
.m1a_c01193{transform:matrix(0.294609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294609,0.000000,0.000000,0.250000,0,0);}
.m2e_c01193{transform:matrix(0.295651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295651,0.000000,0.000000,0.250000,0,0);}
.m7c_c01193{transform:matrix(0.296045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296045,0.000000,0.000000,0.250000,0,0);}
.m4a_c01193{transform:matrix(0.296554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296554,0.000000,0.000000,0.250000,0,0);}
.m31_c01193{transform:matrix(0.296791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296791,0.000000,0.000000,0.250000,0,0);}
.m51_c01193{transform:matrix(0.297929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297929,0.000000,0.000000,0.250000,0,0);}
.mb_c01193{transform:matrix(0.298100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298100,0.000000,0.000000,0.250000,0,0);}
.mc_c01193{transform:matrix(0.299300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299300,0.000000,0.000000,0.250000,0,0);}
.m60_c01193{transform:matrix(0.299650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299650,0.000000,0.000000,0.250000,0,0);}
.m59_c01193{transform:matrix(0.300125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300125,0.000000,0.000000,0.250000,0,0);}
.mf_c01193{transform:matrix(0.300210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300210,0.000000,0.000000,0.250000,0,0);}
.m12_c01193{transform:matrix(0.300873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300873,0.000000,0.000000,0.250000,0,0);}
.m5b_c01193{transform:matrix(0.302747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302747,0.000000,0.000000,0.250000,0,0);}
.m28_c01193{transform:matrix(0.302795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302795,0.000000,0.000000,0.250000,0,0);}
.m41_c01193{transform:matrix(0.304073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304073,0.000000,0.000000,0.250000,0,0);}
.m57_c01193{transform:matrix(0.304572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304572,0.000000,0.000000,0.250000,0,0);}
.m54_c01193{transform:matrix(0.306928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306928,0.000000,0.000000,0.250000,0,0);}
.m4d_c01193{transform:matrix(0.308453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308453,0.000000,0.000000,0.250000,0,0);}
.m16_c01193{transform:matrix(0.308494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308494,0.000000,0.000000,0.250000,0,0);}
.m7f_c01193{transform:matrix(0.308773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308773,0.000000,0.000000,0.250000,0,0);}
.m1d_c01193{transform:matrix(0.309453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309453,0.000000,0.000000,0.250000,0,0);}
.m18_c01193{transform:matrix(0.309991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309991,0.000000,0.000000,0.250000,0,0);}
.m7a_c01193{transform:matrix(0.310818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310818,0.000000,0.000000,0.250000,0,0);}
.m61_c01193{transform:matrix(0.310875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310875,0.000000,0.000000,0.250000,0,0);}
.m79_c01193{transform:matrix(0.311924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311924,0.000000,0.000000,0.250000,0,0);}
.m64_c01193{transform:matrix(0.312073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312073,0.000000,0.000000,0.250000,0,0);}
.m35_c01193{transform:matrix(0.313980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313980,0.000000,0.000000,0.250000,0,0);}
.m5f_c01193{transform:matrix(0.314059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314059,0.000000,0.000000,0.250000,0,0);}
.m21_c01193{transform:matrix(0.314140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314140,0.000000,0.000000,0.250000,0,0);}
.m46_c01193{transform:matrix(0.314456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314456,0.000000,0.000000,0.250000,0,0);}
.m4f_c01193{transform:matrix(0.316268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316268,0.000000,0.000000,0.250000,0,0);}
.m6c_c01193{transform:matrix(0.316633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316633,0.000000,0.000000,0.250000,0,0);}
.m5e_c01193{transform:matrix(0.316723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316723,0.000000,0.000000,0.250000,0,0);}
.m2d_c01193{transform:matrix(0.317478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317478,0.000000,0.000000,0.250000,0,0);}
.m3b_c01193{transform:matrix(0.317997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317997,0.000000,0.000000,0.250000,0,0);}
.m20_c01193{transform:matrix(0.319394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319394,0.000000,0.000000,0.250000,0,0);}
.m6a_c01193{transform:matrix(0.321212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321212,0.000000,0.000000,0.250000,0,0);}
.m38_c01193{transform:matrix(0.322515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322515,0.000000,0.000000,0.250000,0,0);}
.m7_c01193{transform:matrix(0.325400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325400,0.000000,0.000000,0.250000,0,0);}
.m52_c01193{transform:matrix(0.325623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325623,0.000000,0.000000,0.250000,0,0);}
.m22_c01193{transform:matrix(0.325938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325938,0.000000,0.000000,0.250000,0,0);}
.m58_c01193{transform:matrix(0.325992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325992,0.000000,0.000000,0.250000,0,0);}
.md_c01193{transform:matrix(0.326731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326731,0.000000,0.000000,0.250000,0,0);}
.m65_c01193{transform:matrix(0.333393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333393,0.000000,0.000000,0.250000,0,0);}
.m4e_c01193{transform:matrix(0.334033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334033,0.000000,0.000000,0.250000,0,0);}
.m36_c01193{transform:matrix(0.340545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340545,0.000000,0.000000,0.250000,0,0);}
.m5d_c01193{transform:matrix(0.341210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341210,0.000000,0.000000,0.250000,0,0);}
.m29_c01193{transform:matrix(0.341839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341839,0.000000,0.000000,0.250000,0,0);}
.m40_c01193{transform:matrix(0.343500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343500,0.000000,0.000000,0.250000,0,0);}
.m9_c01193{transform:matrix(0.344163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344163,0.000000,0.000000,0.250000,0,0);}
.m2c_c01193{transform:matrix(0.345543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345543,0.000000,0.000000,0.250000,0,0);}
.m3a_c01193{transform:matrix(0.348169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348169,0.000000,0.000000,0.250000,0,0);}
.m37_c01193{transform:matrix(0.350078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350078,0.000000,0.000000,0.250000,0,0);}
.m48_c01193{transform:matrix(0.350708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350708,0.000000,0.000000,0.250000,0,0);}
.m74_c01193{transform:matrix(0.354500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354500,0.000000,0.000000,0.250000,0,0);}
.m8_c01193{transform:matrix(0.355531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355531,0.000000,0.000000,0.250000,0,0);}
.m71_c01193{transform:matrix(0.355719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355719,0.000000,0.000000,0.250000,0,0);}
.m1e_c01193{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);}
.m3c_c01193{transform:matrix(0.374850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374850,0.000000,0.000000,0.250000,0,0);}
.m15_c01193{transform:matrix(0.402725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402725,0.000000,0.000000,0.250000,0,0);}
.m6d_c01193{transform:matrix(0.407827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407827,0.000000,0.000000,0.250000,0,0);}
.m80_c01193{transform:matrix(0.410659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410659,0.000000,0.000000,0.250000,0,0);}
.v0_c01193{vertical-align:0.000000px;}
.v2_c01193{vertical-align:4.233240px;}
.v1_c01193{vertical-align:7.129980px;}
.ls1c_c01193{letter-spacing:-4.158000px;}
.ls15_c01193{letter-spacing:-3.132367px;}
.lsb_c01193{letter-spacing:-2.709630px;}
.lse_c01193{letter-spacing:-2.702700px;}
.ls1b_c01193{letter-spacing:-2.626477px;}
.ls1a_c01193{letter-spacing:-1.996122px;}
.ls8_c01193{letter-spacing:-1.335751px;}
.ls18_c01193{letter-spacing:-0.844193px;}
.ls11_c01193{letter-spacing:-0.109771px;}
.ls2_c01193{letter-spacing:0.000000px;}
.ls5_c01193{letter-spacing:1.515852px;}
.ls6_c01193{letter-spacing:1.910700px;}
.ls4_c01193{letter-spacing:2.101182px;}
.ls16_c01193{letter-spacing:2.145949px;}
.lsc_c01193{letter-spacing:2.814082px;}
.lsd_c01193{letter-spacing:3.054217px;}
.ls7_c01193{letter-spacing:3.306610px;}
.ls13_c01193{letter-spacing:3.316500px;}
.ls12_c01193{letter-spacing:3.484810px;}
.lsf_c01193{letter-spacing:3.623400px;}
.ls3_c01193{letter-spacing:3.752110px;}
.ls9_c01193{letter-spacing:3.861000px;}
.ls10_c01193{letter-spacing:3.920400px;}
.ls14_c01193{letter-spacing:3.979810px;}
.ls1d_c01193{letter-spacing:4.063792px;}
.lsa_c01193{letter-spacing:4.286700px;}
.ls0_c01193{letter-spacing:8.029593px;}
.ls1_c01193{letter-spacing:9.507960px;}
.ls17_c01193{letter-spacing:61.300998px;}
.ls19_c01193{letter-spacing:64.152198px;}
.sc__c01193{text-shadow:none;}
.sc0_c01193{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01193{-webkit-text-stroke:0px transparent;}
.sc0_c01193{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01193{word-spacing:-19.492229px;}
.ws2_c01193{word-spacing:-18.760550px;}
.ws0_c01193{word-spacing:-0.075042px;}
.ws3_c01193{word-spacing:0.000000px;}
._2_c01193{margin-left:-23.789055px;}
._5_c01193{margin-left:-5.703228px;}
._6_c01193{margin-left:-2.776675px;}
._3_c01193{width:1.787702px;}
._4_c01193{width:4.427577px;}
._7_c01193{width:28.882915px;}
._0_c01193{width:32.043019px;}
._1_c01193{width:35.008380px;}
.fc0_c01193{color:transparent;}
.fsf_c01193{font-size:22.572000px;}
.fs16_c01193{font-size:28.314000px;}
.fs4_c01193{font-size:38.214000px;}
.fs2_c01193{font-size:50.490000px;}
.fs12_c01193{font-size:61.300998px;}
.fs14_c01193{font-size:64.152198px;}
.fs5_c01193{font-size:66.132198px;}
.fsd_c01193{font-size:66.330000px;}
.fs3_c01193{font-size:69.696198px;}
.fs9_c01193{font-size:72.468000px;}
.fsc_c01193{font-size:74.844000px;}
.fs1_c01193{font-size:75.042198px;}
.fs0_c01193{font-size:77.022198px;}
.fs6_c01193{font-size:77.220000px;}
.fs8_c01193{font-size:77.418000px;}
.fsa_c01193{font-size:78.408000px;}
.fs11_c01193{font-size:78.606198px;}
.fse_c01193{font-size:79.596198px;}
.fs13_c01193{font-size:82.764000px;}
.fs7_c01193{font-size:85.734000px;}
.fs10_c01193{font-size:89.496198px;}
.fsb_c01193{font-size:107.712198px;}
.fs15_c01193{font-size:118.800000px;}
.y0_c01193{bottom:0.000000px;}
.y1c_c01193{bottom:59.069385px;}
.y1_c01193{bottom:76.500000px;}
.y1d_c01193{bottom:83.309535px;}
.y1b_c01193{bottom:125.008335px;}
.y1a_c01193{bottom:190.580985px;}
.y19_c01193{bottom:223.374735px;}
.y18_c01193{bottom:287.170335px;}
.y16_c01193{bottom:351.317385px;}
.y17_c01193{bottom:353.460735px;}
.y15_c01193{bottom:415.830735px;}
.y14_c01193{bottom:447.901785px;}
.y13_c01193{bottom:479.977785px;}
.y12_c01193{bottom:512.771535px;}
.y11_c01193{bottom:537.001785px;}
.y10_c01193{bottom:544.842585px;}
.yf_c01193{bottom:545.203935px;}
.ye_c01193{bottom:608.281785px;}
.yd_c01193{bottom:640.001385px;}
.yc_c01193{bottom:671.369535px;}
.yb_c01193{bottom:703.796985px;}
.ya_c01193{bottom:767.592585px;}
.y9_c01193{bottom:800.024985px;}
.y7_c01193{bottom:832.457385px;}
.y8_c01193{bottom:837.808335px;}
.y6_c01193{bottom:896.257935px;}
.y5_c01193{bottom:926.190585px;}
.y4_c01193{bottom:927.972585px;}
.y3_c01193{bottom:1077.304185px;}
.y2_c01193{bottom:1091.916585px;}
.h13_c01193{height:23.541891px;}
.h1a_c01193{height:29.530617px;}
.h6_c01193{height:39.856008px;}
.h16_c01193{height:40.826465px;}
.h18_c01193{height:42.725364px;}
.h5_c01193{height:68.403007px;}
.h7_c01193{height:68.973816px;}
.h11_c01193{height:69.180117px;}
.hb_c01193{height:71.123379px;}
.hf_c01193{height:73.455293px;}
.h3_c01193{height:73.649813px;}
.h8_c01193{height:75.749502px;}
.ha_c01193{height:75.981533px;}
.hc_c01193{height:76.953164px;}
.h15_c01193{height:77.147685px;}
.h12_c01193{height:78.119315px;}
.h2_c01193{height:80.331746px;}
.h10_c01193{height:80.538047px;}
.h4_c01193{height:80.779793px;}
.hd_c01193{height:81.186404px;}
.h9_c01193{height:84.101370px;}
.h17_c01193{height:86.320266px;}
.h14_c01193{height:87.835624px;}
.he_c01193{height:105.713632px;}
.h19_c01193{height:116.595703px;}
.h1_c01193{height:1110.000000px;}
.h0_c01193{height:1263.000000px;}
.w1_c01193{width:775.500000px;}
.w0_c01193{width:892.500000px;}
.x0_c01193{left:0.000000px;}
.x1_c01193{left:58.500000px;}
.x59_c01193{left:81.681585px;}
.x30_c01193{left:82.750785px;}
.x19_c01193{left:83.819985px;}
.x6_c01193{left:85.077285px;}
.x5c_c01193{left:136.012785px;}
.x31_c01193{left:137.260185px;}
.x7_c01193{left:139.240185px;}
.x23_c01193{left:160.812285px;}
.x43_c01193{left:170.068785px;}
.x5d_c01193{left:171.133035px;}
.x2b_c01193{left:172.934835px;}
.x39_c01193{left:182.419035px;}
.x65_c01193{left:190.952835px;}
.x11_c01193{left:193.734735px;}
.x8_c01193{left:195.130635px;}
.x1a_c01193{left:196.689885px;}
.x4c_c01193{left:203.491185px;}
.x53_c01193{left:205.302885px;}
.x66_c01193{left:206.881935px;}
.x55_c01193{left:214.990035px;}
.x44_c01193{left:216.049335px;}
.x5e_c01193{left:225.988935px;}
.x32_c01193{left:227.657085px;}
.x48_c01193{left:249.209385px;}
.x9_c01193{left:250.872585px;}
.x56_c01193{left:257.916435px;}
.x45_c01193{left:259.346985px;}
.x12_c01193{left:260.955735px;}
.x4d_c01193{left:270.954735px;}
.x24_c01193{left:272.088285px;}
.x25_c01193{left:283.111935px;}
.xa_c01193{left:293.204985px;}
.x3a_c01193{left:294.764235px;}
.x49_c01193{left:303.609885px;}
.x1b_c01193{left:304.797885px;}
.x2c_c01193{left:315.371085px;}
.x33_c01193{left:328.043085px;}
.x1c_c01193{left:337.457985px;}
.x2d_c01193{left:339.413235px;}
.x13_c01193{left:340.764585px;}
.x57_c01193{left:347.486685px;}
.x5f_c01193{left:349.006335px;}
.x34_c01193{left:350.045835px;}
.x60_c01193{left:357.455985px;}
.x40_c01193{left:360.757635px;}
.x5a_c01193{left:369.890385px;}
.xb_c01193{left:371.612985px;}
.x58_c01193{left:382.126785px;}
.x35_c01193{left:384.685935px;}
.x4e_c01193{left:404.565135px;}
.x61_c01193{left:414.484935px;}
.x1d_c01193{left:416.430285px;}
.x26_c01193{left:419.167635px;}
.x3b_c01193{left:425.830335px;}
.x62_c01193{left:436.131285px;}
.x27_c01193{left:437.942985px;}
.xc_c01193{left:448.634985px;}
.x14_c01193{left:459.287385px;}
.x2e_c01193{left:461.168385px;}
.x1e_c01193{left:471.523785px;}
.x46_c01193{left:473.182035px;}
.x4f_c01193{left:479.661585px;}
.x28_c01193{left:481.592085px;}
.x41_c01193{left:483.413685px;}
.x3c_c01193{left:493.922535px;}
.x2f_c01193{left:504.253185px;}
.x5b_c01193{left:508.787385px;}
.x63_c01193{left:512.687985px;}
.x15_c01193{left:516.187635px;}
.xd_c01193{left:518.835885px;}
.x36_c01193{left:527.196435px;}
.x3d_c01193{left:528.399285px;}
.x16_c01193{left:548.080485px;}
.x3e_c01193{left:549.664485px;}
.x50_c01193{left:559.406085px;}
.xe_c01193{left:560.529735px;}
.x1f_c01193{left:562.682985px;}
.x4a_c01193{left:572.068185px;}
.x20_c01193{left:573.553185px;}
.x29_c01193{left:580.473285px;}
.x21_c01193{left:593.872935px;}
.x64_c01193{left:601.550385px;}
.x17_c01193{left:607.787385px;}
.x2a_c01193{left:614.727285px;}
.xf_c01193{left:615.801435px;}
.x47_c01193{left:623.929335px;}
.x22_c01193{left:625.661835px;}
.x51_c01193{left:634.646085px;}
.x37_c01193{left:636.784485px;}
.x3f_c01193{left:648.718935px;}
.x18_c01193{left:669.583185px;}
.x54_c01193{left:680.527635px;}
.x4b_c01193{left:690.595935px;}
.x3_c01193{left:699.298035px;}
.x2_c01193{left:707.856585px;}
.x4_c01193{left:708.960435px;}
.x52_c01193{left:713.103585px;}
.x42_c01193{left:714.346035px;}
.x10_c01193{left:715.692435px;}
.x38_c01193{left:726.131985px;}
.x67_c01193{left:750.070185px;}
.x5_c01193{left:751.688835px;}
@media print{
.v0_c01193{vertical-align:0.000000pt;}
.v2_c01193{vertical-align:3.762880pt;}
.v1_c01193{vertical-align:6.337760pt;}
.ls1c_c01193{letter-spacing:-3.696000pt;}
.ls15_c01193{letter-spacing:-2.784326pt;}
.lsb_c01193{letter-spacing:-2.408560pt;}
.lse_c01193{letter-spacing:-2.402400pt;}
.ls1b_c01193{letter-spacing:-2.334646pt;}
.ls1a_c01193{letter-spacing:-1.774331pt;}
.ls8_c01193{letter-spacing:-1.187334pt;}
.ls18_c01193{letter-spacing:-0.750394pt;}
.ls11_c01193{letter-spacing:-0.097574pt;}
.ls2_c01193{letter-spacing:0.000000pt;}
.ls5_c01193{letter-spacing:1.347424pt;}
.ls6_c01193{letter-spacing:1.698400pt;}
.ls4_c01193{letter-spacing:1.867717pt;}
.ls16_c01193{letter-spacing:1.907510pt;}
.lsc_c01193{letter-spacing:2.501407pt;}
.lsd_c01193{letter-spacing:2.714860pt;}
.ls7_c01193{letter-spacing:2.939209pt;}
.ls13_c01193{letter-spacing:2.948000pt;}
.ls12_c01193{letter-spacing:3.097609pt;}
.lsf_c01193{letter-spacing:3.220800pt;}
.ls3_c01193{letter-spacing:3.335209pt;}
.ls9_c01193{letter-spacing:3.432000pt;}
.ls10_c01193{letter-spacing:3.484800pt;}
.ls14_c01193{letter-spacing:3.537609pt;}
.ls1d_c01193{letter-spacing:3.612259pt;}
.lsa_c01193{letter-spacing:3.810400pt;}
.ls0_c01193{letter-spacing:7.137416pt;}
.ls1_c01193{letter-spacing:8.451520pt;}
.ls17_c01193{letter-spacing:54.489776pt;}
.ls19_c01193{letter-spacing:57.024176pt;}
.ws1_c01193{word-spacing:-17.326426pt;}
.ws2_c01193{word-spacing:-16.676044pt;}
.ws0_c01193{word-spacing:-0.066704pt;}
.ws3_c01193{word-spacing:0.000000pt;}
._2_c01193{margin-left:-21.145827pt;}
._5_c01193{margin-left:-5.069536pt;}
._6_c01193{margin-left:-2.468156pt;}
._3_c01193{width:1.589069pt;}
._4_c01193{width:3.935624pt;}
._7_c01193{width:25.673702pt;}
._0_c01193{width:28.482683pt;}
._1_c01193{width:31.118560pt;}
.fsf_c01193{font-size:20.064000pt;}
.fs16_c01193{font-size:25.168000pt;}
.fs4_c01193{font-size:33.968000pt;}
.fs2_c01193{font-size:44.880000pt;}
.fs12_c01193{font-size:54.489776pt;}
.fs14_c01193{font-size:57.024176pt;}
.fs5_c01193{font-size:58.784176pt;}
.fsd_c01193{font-size:58.960000pt;}
.fs3_c01193{font-size:61.952176pt;}
.fs9_c01193{font-size:64.416000pt;}
.fsc_c01193{font-size:66.528000pt;}
.fs1_c01193{font-size:66.704176pt;}
.fs0_c01193{font-size:68.464176pt;}
.fs6_c01193{font-size:68.640000pt;}
.fs8_c01193{font-size:68.816000pt;}
.fsa_c01193{font-size:69.696000pt;}
.fs11_c01193{font-size:69.872176pt;}
.fse_c01193{font-size:70.752176pt;}
.fs13_c01193{font-size:73.568000pt;}
.fs7_c01193{font-size:76.208000pt;}
.fs10_c01193{font-size:79.552176pt;}
.fsb_c01193{font-size:95.744176pt;}
.fs15_c01193{font-size:105.600000pt;}
.y0_c01193{bottom:0.000000pt;}
.y1c_c01193{bottom:52.506120pt;}
.y1_c01193{bottom:68.000000pt;}
.y1d_c01193{bottom:74.052920pt;}
.y1b_c01193{bottom:111.118520pt;}
.y1a_c01193{bottom:169.405320pt;}
.y19_c01193{bottom:198.555320pt;}
.y18_c01193{bottom:255.262520pt;}
.y16_c01193{bottom:312.282120pt;}
.y17_c01193{bottom:314.187320pt;}
.y15_c01193{bottom:369.627320pt;}
.y14_c01193{bottom:398.134920pt;}
.y13_c01193{bottom:426.646920pt;}
.y12_c01193{bottom:455.796920pt;}
.y11_c01193{bottom:477.334920pt;}
.y10_c01193{bottom:484.304520pt;}
.yf_c01193{bottom:484.625720pt;}
.ye_c01193{bottom:540.694920pt;}
.yd_c01193{bottom:568.890120pt;}
.yc_c01193{bottom:596.772920pt;}
.yb_c01193{bottom:625.597320pt;}
.ya_c01193{bottom:682.304520pt;}
.y9_c01193{bottom:711.133320pt;}
.y7_c01193{bottom:739.962120pt;}
.y8_c01193{bottom:744.718520pt;}
.y6_c01193{bottom:796.673720pt;}
.y5_c01193{bottom:823.280520pt;}
.y4_c01193{bottom:824.864520pt;}
.y3_c01193{bottom:957.603720pt;}
.y2_c01193{bottom:970.592520pt;}
.h13_c01193{height:20.926125pt;}
.h1a_c01193{height:26.249438pt;}
.h6_c01193{height:35.427563pt;}
.h16_c01193{height:36.290191pt;}
.h18_c01193{height:37.978101pt;}
.h5_c01193{height:60.802673pt;}
.h7_c01193{height:61.310059pt;}
.h11_c01193{height:61.493438pt;}
.hb_c01193{height:63.220781pt;}
.hf_c01193{height:65.293594pt;}
.h3_c01193{height:65.466501pt;}
.h8_c01193{height:67.332891pt;}
.ha_c01193{height:67.539141pt;}
.hc_c01193{height:68.402813pt;}
.h15_c01193{height:68.575720pt;}
.h12_c01193{height:69.439391pt;}
.h2_c01193{height:71.405996pt;}
.h10_c01193{height:71.589375pt;}
.h4_c01193{height:71.804261pt;}
.hd_c01193{height:72.165692pt;}
.h9_c01193{height:74.756773pt;}
.h17_c01193{height:76.729125pt;}
.h14_c01193{height:78.076110pt;}
.he_c01193{height:93.967673pt;}
.h19_c01193{height:103.640625pt;}
.h1_c01193{height:986.666667pt;}
.h0_c01193{height:1122.666667pt;}
.w1_c01193{width:689.333333pt;}
.w0_c01193{width:793.333333pt;}
.x0_c01193{left:0.000000pt;}
.x1_c01193{left:52.000000pt;}
.x59_c01193{left:72.605853pt;}
.x30_c01193{left:73.556253pt;}
.x19_c01193{left:74.506653pt;}
.x6_c01193{left:75.624253pt;}
.x5c_c01193{left:120.900253pt;}
.x31_c01193{left:122.009053pt;}
.x7_c01193{left:123.769053pt;}
.x23_c01193{left:142.944253pt;}
.x43_c01193{left:151.172253pt;}
.x5d_c01193{left:152.118253pt;}
.x2b_c01193{left:153.719853pt;}
.x39_c01193{left:162.150253pt;}
.x65_c01193{left:169.735853pt;}
.x11_c01193{left:172.208653pt;}
.x8_c01193{left:173.449453pt;}
.x1a_c01193{left:174.835453pt;}
.x4c_c01193{left:180.881053pt;}
.x53_c01193{left:182.491453pt;}
.x66_c01193{left:183.895053pt;}
.x55_c01193{left:191.102253pt;}
.x44_c01193{left:192.043853pt;}
.x5e_c01193{left:200.879053pt;}
.x32_c01193{left:202.361853pt;}
.x48_c01193{left:221.519453pt;}
.x9_c01193{left:222.997853pt;}
.x56_c01193{left:229.259053pt;}
.x45_c01193{left:230.530653pt;}
.x12_c01193{left:231.960653pt;}
.x4d_c01193{left:240.848653pt;}
.x24_c01193{left:241.856253pt;}
.x25_c01193{left:251.655053pt;}
.xa_c01193{left:260.626653pt;}
.x3a_c01193{left:262.012653pt;}
.x49_c01193{left:269.875453pt;}
.x1b_c01193{left:270.931453pt;}
.x2c_c01193{left:280.329853pt;}
.x33_c01193{left:291.593853pt;}
.x1c_c01193{left:299.962653pt;}
.x2d_c01193{left:301.700653pt;}
.x13_c01193{left:302.901853pt;}
.x57_c01193{left:308.877053pt;}
.x5f_c01193{left:310.227853pt;}
.x34_c01193{left:311.151853pt;}
.x60_c01193{left:317.738653pt;}
.x40_c01193{left:320.673453pt;}
.x5a_c01193{left:328.791453pt;}
.xb_c01193{left:330.322653pt;}
.x58_c01193{left:339.668253pt;}
.x35_c01193{left:341.943053pt;}
.x4e_c01193{left:359.613453pt;}
.x61_c01193{left:368.431053pt;}
.x1d_c01193{left:370.160253pt;}
.x26_c01193{left:372.593453pt;}
.x3b_c01193{left:378.515853pt;}
.x62_c01193{left:387.672253pt;}
.x27_c01193{left:389.282653pt;}
.xc_c01193{left:398.786653pt;}
.x14_c01193{left:408.255453pt;}
.x2e_c01193{left:409.927453pt;}
.x1e_c01193{left:419.132253pt;}
.x46_c01193{left:420.606253pt;}
.x4f_c01193{left:426.365853pt;}
.x28_c01193{left:428.081853pt;}
.x41_c01193{left:429.701053pt;}
.x3c_c01193{left:439.042253pt;}
.x2f_c01193{left:448.225053pt;}
.x5b_c01193{left:452.255453pt;}
.x63_c01193{left:455.722653pt;}
.x15_c01193{left:458.833453pt;}
.xd_c01193{left:461.187453pt;}
.x36_c01193{left:468.619053pt;}
.x3d_c01193{left:469.688253pt;}
.x16_c01193{left:487.182653pt;}
.x3e_c01193{left:488.590653pt;}
.x50_c01193{left:497.249853pt;}
.xe_c01193{left:498.248653pt;}
.x1f_c01193{left:500.162653pt;}
.x4a_c01193{left:508.505053pt;}
.x20_c01193{left:509.825053pt;}
.x29_c01193{left:515.976253pt;}
.x21_c01193{left:527.887053pt;}
.x64_c01193{left:534.711453pt;}
.x17_c01193{left:540.255453pt;}
.x2a_c01193{left:546.424253pt;}
.xf_c01193{left:547.379053pt;}
.x47_c01193{left:554.603853pt;}
.x22_c01193{left:556.143853pt;}
.x51_c01193{left:564.129853pt;}
.x37_c01193{left:566.030653pt;}
.x3f_c01193{left:576.639053pt;}
.x18_c01193{left:595.185053pt;}
.x54_c01193{left:604.913453pt;}
.x4b_c01193{left:613.863053pt;}
.x3_c01193{left:621.598253pt;}
.x2_c01193{left:629.205853pt;}
.x4_c01193{left:630.187053pt;}
.x52_c01193{left:633.869853pt;}
.x42_c01193{left:634.974253pt;}
.x10_c01193{left:636.171053pt;}
.x38_c01193{left:645.450653pt;}
.x67_c01193{left:666.729053pt;}
.x5_c01193{left:668.167853pt;}
}





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

.ir_c01194:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01194{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01194;src:url('chunks/assets/font_abd792438dc1ccd7a2819cca.woff2')format("woff");}.ff1_c01194{font-family:ff1_c01194;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01194;src:url('chunks/assets/font_cfce879a1d9aedc000d1a299.woff2')format("woff");}.ff2_c01194{font-family:ff2_c01194;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01194;src:url('chunks/assets/font_f0dc968adb2499fb7150ab32.woff2')format("woff");}.ff3_c01194{font-family:ff3_c01194;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01194;src:url('chunks/assets/font_7f15953fa8010f18c45c7ddc.woff2')format("woff");}.ff4_c01194{font-family:ff4_c01194;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01194;src:url('chunks/assets/font_1db444b0cf15927137b8f667.woff2')format("woff");}.ff5_c01194{font-family:ff5_c01194;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01194;src:url('chunks/assets/font_3c1ca23ccd61d8cacb772ba6.woff2')format("woff");}.ff6_c01194{font-family:ff6_c01194;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5b_c01194{transform:matrix(0.162444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162444,0.000000,0.000000,0.250000,0,0);}
.m1f_c01194{transform:matrix(0.172619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172619,0.000000,0.000000,0.250000,0,0);}
.m2_c01194{transform:matrix(0.173781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173781,0.000000,0.000000,0.250000,0,0);}
.m13_c01194{transform:matrix(0.176588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176588,0.000000,0.000000,0.250000,0,0);}
.m14_c01194{transform:matrix(0.177827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177827,0.000000,0.000000,0.250000,0,0);}
.m43_c01194{transform:matrix(0.193700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193700,0.000000,0.000000,0.250000,0,0);}
.m19_c01194{transform:matrix(0.218775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218775,0.000000,0.000000,0.250000,0,0);}
.m51_c01194{transform:matrix(0.220854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220854,0.000000,0.000000,0.250000,0,0);}
.m74_c01194{transform:matrix(0.242230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242230,0.000000,0.000000,0.250000,0,0);}
.m4b_c01194{transform:matrix(0.248219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248219,0.000000,0.000000,0.250000,0,0);}
.m1_c01194{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01194{transform:matrix(0.250123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250123,0.000000,0.000000,0.250000,0,0);}
.m27_c01194{transform:matrix(0.250513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250513,0.000000,0.000000,0.250000,0,0);}
.m78_c01194{transform:matrix(0.251070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251070,0.000000,0.000000,0.250000,0,0);}
.ma_c01194{transform:matrix(0.251233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251233,0.000000,0.000000,0.250000,0,0);}
.m41_c01194{transform:matrix(0.252345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252345,0.000000,0.000000,0.250000,0,0);}
.m34_c01194{transform:matrix(0.253581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253581,0.000000,0.000000,0.250000,0,0);}
.m3b_c01194{transform:matrix(0.254649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254649,0.000000,0.000000,0.250000,0,0);}
.m6d_c01194{transform:matrix(0.254912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254912,0.000000,0.000000,0.250000,0,0);}
.m5d_c01194{transform:matrix(0.255091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255091,0.000000,0.000000,0.250000,0,0);}
.m2a_c01194{transform:matrix(0.256775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256775,0.000000,0.000000,0.250000,0,0);}
.m45_c01194{transform:matrix(0.256962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256962,0.000000,0.000000,0.250000,0,0);}
.m2e_c01194{transform:matrix(0.260119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260119,0.000000,0.000000,0.250000,0,0);}
.m5_c01194{transform:matrix(0.260529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260529,0.000000,0.000000,0.250000,0,0);}
.m76_c01194{transform:matrix(0.261670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261670,0.000000,0.000000,0.250000,0,0);}
.m65_c01194{transform:matrix(0.263127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263127,0.000000,0.000000,0.250000,0,0);}
.m5a_c01194{transform:matrix(0.267644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267644,0.000000,0.000000,0.250000,0,0);}
.m7_c01194{transform:matrix(0.269009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269009,0.000000,0.000000,0.250000,0,0);}
.m1a_c01194{transform:matrix(0.273436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273436,0.000000,0.000000,0.250000,0,0);}
.m38_c01194{transform:matrix(0.273900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273900,0.000000,0.000000,0.250000,0,0);}
.m1b_c01194{transform:matrix(0.275918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275918,0.000000,0.000000,0.250000,0,0);}
.m6f_c01194{transform:matrix(0.278792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278792,0.000000,0.000000,0.250000,0,0);}
.m64_c01194{transform:matrix(0.280219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280219,0.000000,0.000000,0.250000,0,0);}
.m18_c01194{transform:matrix(0.280360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280360,0.000000,0.000000,0.250000,0,0);}
.m6a_c01194{transform:matrix(0.281269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281269,0.000000,0.000000,0.250000,0,0);}
.m37_c01194{transform:matrix(0.281452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281452,0.000000,0.000000,0.250000,0,0);}
.m75_c01194{transform:matrix(0.281487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281487,0.000000,0.000000,0.250000,0,0);}
.m53_c01194{transform:matrix(0.281839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281839,0.000000,0.000000,0.250000,0,0);}
.m40_c01194{transform:matrix(0.281872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281872,0.000000,0.000000,0.250000,0,0);}
.m26_c01194{transform:matrix(0.286817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286817,0.000000,0.000000,0.250000,0,0);}
.m2c_c01194{transform:matrix(0.287537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287537,0.000000,0.000000,0.250000,0,0);}
.m23_c01194{transform:matrix(0.288071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288071,0.000000,0.000000,0.250000,0,0);}
.m10_c01194{transform:matrix(0.288574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288574,0.000000,0.000000,0.250000,0,0);}
.m35_c01194{transform:matrix(0.289932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289932,0.000000,0.000000,0.250000,0,0);}
.m6c_c01194{transform:matrix(0.291218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291218,0.000000,0.000000,0.250000,0,0);}
.m0_c01194{transform:matrix(0.291694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291694,0.000000,0.000000,0.250000,0,0);}
.m4c_c01194{transform:matrix(0.292033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292033,0.000000,0.000000,0.250000,0,0);}
.m29_c01194{transform:matrix(0.292398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292398,0.000000,0.000000,0.250000,0,0);}
.m72_c01194{transform:matrix(0.293259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293259,0.000000,0.000000,0.250000,0,0);}
.m1d_c01194{transform:matrix(0.293914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293914,0.000000,0.000000,0.250000,0,0);}
.m63_c01194{transform:matrix(0.294292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294292,0.000000,0.000000,0.250000,0,0);}
.m69_c01194{transform:matrix(0.295414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295414,0.000000,0.000000,0.250000,0,0);}
.m17_c01194{transform:matrix(0.296044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296044,0.000000,0.000000,0.250000,0,0);}
.me_c01194{transform:matrix(0.296184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296184,0.000000,0.000000,0.250000,0,0);}
.m4f_c01194{transform:matrix(0.296275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296275,0.000000,0.000000,0.250000,0,0);}
.m32_c01194{transform:matrix(0.296538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296538,0.000000,0.000000,0.250000,0,0);}
.m67_c01194{transform:matrix(0.296923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296923,0.000000,0.000000,0.250000,0,0);}
.m15_c01194{transform:matrix(0.297438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297438,0.000000,0.000000,0.250000,0,0);}
.m2b_c01194{transform:matrix(0.297886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297886,0.000000,0.000000,0.250000,0,0);}
.m54_c01194{transform:matrix(0.299553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299553,0.000000,0.000000,0.250000,0,0);}
.m44_c01194{transform:matrix(0.300979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300979,0.000000,0.000000,0.250000,0,0);}
.m48_c01194{transform:matrix(0.301035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301035,0.000000,0.000000,0.250000,0,0);}
.m5c_c01194{transform:matrix(0.302855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302855,0.000000,0.000000,0.250000,0,0);}
.m52_c01194{transform:matrix(0.303347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303347,0.000000,0.000000,0.250000,0,0);}
.m73_c01194{transform:matrix(0.303825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303825,0.000000,0.000000,0.250000,0,0);}
.md_c01194{transform:matrix(0.304640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304640,0.000000,0.000000,0.250000,0,0);}
.m16_c01194{transform:matrix(0.304695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304695,0.000000,0.000000,0.250000,0,0);}
.m4_c01194{transform:matrix(0.304708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304708,0.000000,0.000000,0.250000,0,0);}
.m3d_c01194{transform:matrix(0.305593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305593,0.000000,0.000000,0.250000,0,0);}
.m4e_c01194{transform:matrix(0.305881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305881,0.000000,0.000000,0.250000,0,0);}
.m71_c01194{transform:matrix(0.307884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307884,0.000000,0.000000,0.250000,0,0);}
.m33_c01194{transform:matrix(0.307954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307954,0.000000,0.000000,0.250000,0,0);}
.m68_c01194{transform:matrix(0.308541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308541,0.000000,0.000000,0.250000,0,0);}
.m1e_c01194{transform:matrix(0.308660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308660,0.000000,0.000000,0.250000,0,0);}
.m70_c01194{transform:matrix(0.308769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308769,0.000000,0.000000,0.250000,0,0);}
.m47_c01194{transform:matrix(0.309117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309117,0.000000,0.000000,0.250000,0,0);}
.m31_c01194{transform:matrix(0.310799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310799,0.000000,0.000000,0.250000,0,0);}
.m60_c01194{transform:matrix(0.311492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311492,0.000000,0.000000,0.250000,0,0);}
.m3e_c01194{transform:matrix(0.311578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311578,0.000000,0.000000,0.250000,0,0);}
.m22_c01194{transform:matrix(0.313909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313909,0.000000,0.000000,0.250000,0,0);}
.m3a_c01194{transform:matrix(0.315054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315054,0.000000,0.000000,0.250000,0,0);}
.m49_c01194{transform:matrix(0.315662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315662,0.000000,0.000000,0.250000,0,0);}
.m55_c01194{transform:matrix(0.316245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316245,0.000000,0.000000,0.250000,0,0);}
.m36_c01194{transform:matrix(0.316674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316674,0.000000,0.000000,0.250000,0,0);}
.m8_c01194{transform:matrix(0.317714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317714,0.000000,0.000000,0.250000,0,0);}
.m5f_c01194{transform:matrix(0.318339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318339,0.000000,0.000000,0.250000,0,0);}
.m3c_c01194{transform:matrix(0.318539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318539,0.000000,0.000000,0.250000,0,0);}
.m58_c01194{transform:matrix(0.320263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320263,0.000000,0.000000,0.250000,0,0);}
.m77_c01194{transform:matrix(0.320297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320297,0.000000,0.000000,0.250000,0,0);}
.m50_c01194{transform:matrix(0.320780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320780,0.000000,0.000000,0.250000,0,0);}
.m6b_c01194{transform:matrix(0.321289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321289,0.000000,0.000000,0.250000,0,0);}
.m21_c01194{transform:matrix(0.322081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322081,0.000000,0.000000,0.250000,0,0);}
.m57_c01194{transform:matrix(0.325493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325493,0.000000,0.000000,0.250000,0,0);}
.m30_c01194{transform:matrix(0.328072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328072,0.000000,0.000000,0.250000,0,0);}
.m12_c01194{transform:matrix(0.333260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333260,0.000000,0.000000,0.250000,0,0);}
.m5e_c01194{transform:matrix(0.333334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333334,0.000000,0.000000,0.250000,0,0);}
.m25_c01194{transform:matrix(0.333360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333360,0.000000,0.000000,0.250000,0,0);}
.m24_c01194{transform:matrix(0.335233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335233,0.000000,0.000000,0.250000,0,0);}
.m46_c01194{transform:matrix(0.335592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335592,0.000000,0.000000,0.250000,0,0);}
.m3f_c01194{transform:matrix(0.337310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337310,0.000000,0.000000,0.250000,0,0);}
.m20_c01194{transform:matrix(0.337592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337592,0.000000,0.000000,0.250000,0,0);}
.m59_c01194{transform:matrix(0.338499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338499,0.000000,0.000000,0.250000,0,0);}
.m1c_c01194{transform:matrix(0.338529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338529,0.000000,0.000000,0.250000,0,0);}
.mc_c01194{transform:matrix(0.339986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339986,0.000000,0.000000,0.250000,0,0);}
.m11_c01194{transform:matrix(0.341252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341252,0.000000,0.000000,0.250000,0,0);}
.m66_c01194{transform:matrix(0.343494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343494,0.000000,0.000000,0.250000,0,0);}
.m79_c01194{transform:matrix(0.346506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346506,0.000000,0.000000,0.250000,0,0);}
.m61_c01194{transform:matrix(0.347625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347625,0.000000,0.000000,0.250000,0,0);}
.m6_c01194{transform:matrix(0.349413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349413,0.000000,0.000000,0.250000,0,0);}
.m2f_c01194{transform:matrix(0.352824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352824,0.000000,0.000000,0.250000,0,0);}
.m4a_c01194{transform:matrix(0.362851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362851,0.000000,0.000000,0.250000,0,0);}
.mf_c01194{transform:matrix(0.363907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363907,0.000000,0.000000,0.250000,0,0);}
.m62_c01194{transform:matrix(0.369801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369801,0.000000,0.000000,0.250000,0,0);}
.mb_c01194{transform:matrix(0.373653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373653,0.000000,0.000000,0.250000,0,0);}
.m28_c01194{transform:matrix(0.378800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378800,0.000000,0.000000,0.250000,0,0);}
.m42_c01194{transform:matrix(0.379861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379861,0.000000,0.000000,0.250000,0,0);}
.m39_c01194{transform:matrix(0.395355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395355,0.000000,0.000000,0.250000,0,0);}
.m3_c01194{transform:matrix(0.400167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400167,0.000000,0.000000,0.250000,0,0);}
.m56_c01194{transform:matrix(0.401732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401732,0.000000,0.000000,0.250000,0,0);}
.m4d_c01194{transform:matrix(0.435511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435511,0.000000,0.000000,0.250000,0,0);}
.m6e_c01194{transform:matrix(0.457779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457779,0.000000,0.000000,0.250000,0,0);}
.m9_c01194{transform:matrix(0.470271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470271,0.000000,0.000000,0.250000,0,0);}
.v0_c01194{vertical-align:0.000000px;}
.ls1c_c01194{letter-spacing:-3.617467px;}
.ls1a_c01194{letter-spacing:-2.591827px;}
.ls6_c01194{letter-spacing:-2.562285px;}
.ls21_c01194{letter-spacing:-2.383927px;}
.ls11_c01194{letter-spacing:-2.217600px;}
.ls7_c01194{letter-spacing:-1.725416px;}
.ls22_c01194{letter-spacing:-1.591603px;}
.ls2_c01194{letter-spacing:-1.414199px;}
.ls13_c01194{letter-spacing:-1.262134px;}
.ls1b_c01194{letter-spacing:-0.436908px;}
.ls3_c01194{letter-spacing:0.000000px;}
.ls1f_c01194{letter-spacing:0.984894px;}
.lsc_c01194{letter-spacing:1.347750px;}
.ls0_c01194{letter-spacing:1.547691px;}
.ls17_c01194{letter-spacing:1.718011px;}
.ls12_c01194{letter-spacing:1.932762px;}
.ls10_c01194{letter-spacing:2.277481px;}
.ls19_c01194{letter-spacing:2.653200px;}
.lsb_c01194{letter-spacing:2.752200px;}
.ls9_c01194{letter-spacing:2.970000px;}
.lse_c01194{letter-spacing:3.227400px;}
.ls8_c01194{letter-spacing:3.316500px;}
.ls1d_c01194{letter-spacing:3.484810px;}
.ls18_c01194{letter-spacing:3.603610px;}
.lsf_c01194{letter-spacing:3.682810px;}
.ls5_c01194{letter-spacing:3.702610px;}
.ls20_c01194{letter-spacing:3.717974px;}
.ls1_c01194{letter-spacing:3.742200px;}
.ls1e_c01194{letter-spacing:3.781810px;}
.ls15_c01194{letter-spacing:3.801610px;}
.ls14_c01194{letter-spacing:3.841200px;}
.ls16_c01194{letter-spacing:3.870900px;}
.lsa_c01194{letter-spacing:3.900610px;}
.ls4_c01194{letter-spacing:58.449798px;}
.lsd_c01194{letter-spacing:59.875398px;}
.sc__c01194{text-shadow:none;}
.sc0_c01194{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01194{-webkit-text-stroke:0px transparent;}
.sc0_c01194{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01194{word-spacing:-20.060740px;}
.ws0_c01194{word-spacing:-19.722752px;}
.ws1_c01194{word-spacing:-16.787633px;}
.ws3_c01194{word-spacing:0.000000px;}
._1_c01194{margin-left:-34.062446px;}
._0_c01194{margin-left:-2.037672px;}
._3_c01194{width:6.102022px;}
._2_c01194{width:9.226844px;}
._6_c01194{width:10.434501px;}
._4_c01194{width:26.310883px;}
._5_c01194{width:39.840037px;}
.fc0_c01194{color:transparent;}
.fs5_c01194{font-size:25.344000px;}
.fs11_c01194{font-size:34.056198px;}
.fs12_c01194{font-size:53.064000px;}
.fs9_c01194{font-size:55.044000px;}
.fs2_c01194{font-size:58.449798px;}
.fs7_c01194{font-size:59.400000px;}
.fsa_c01194{font-size:59.875398px;}
.fs17_c01194{font-size:62.172000px;}
.fse_c01194{font-size:63.360000px;}
.fsb_c01194{font-size:64.548000px;}
.fs6_c01194{font-size:66.330000px;}
.fs16_c01194{font-size:68.112198px;}
.fs14_c01194{font-size:69.696198px;}
.fsd_c01194{font-size:72.072198px;}
.fsc_c01194{font-size:73.656198px;}
.fs3_c01194{font-size:74.052198px;}
.fs0_c01194{font-size:74.844000px;}
.fs15_c01194{font-size:75.636198px;}
.fs1_c01194{font-size:76.032198px;}
.fsf_c01194{font-size:76.824000px;}
.fs10_c01194{font-size:77.418000px;}
.fs8_c01194{font-size:78.012198px;}
.fs4_c01194{font-size:79.200000px;}
.fs13_c01194{font-size:103.356198px;}
.y0_c01194{bottom:0.000000px;}
.y1_c01194{bottom:76.500000px;}
.y1a_c01194{bottom:154.940985px;}
.y19_c01194{bottom:187.378335px;}
.y18_c01194{bottom:252.243135px;}
.y17_c01194{bottom:252.247392px;}
.y16_c01194{bottom:316.395135px;}
.y15_c01194{bottom:348.466185px;}
.y14_c01194{bottom:381.254985px;}
.y13_c01194{bottom:444.337785px;}
.y12_c01194{bottom:476.418735px;}
.y11_c01194{bottom:541.278585px;}
.y10_c01194{bottom:573.003135px;}
.yf_c01194{bottom:623.611935px;}
.ye_c01194{bottom:637.155135px;}
.yd_c01194{bottom:700.237935px;}
.yc_c01194{bottom:733.026735px;}
.yb_c01194{bottom:765.454185px;}
.ya_c01194{bottom:798.604335px;}
.y9_c01194{bottom:860.617935px;}
.y5_c01194{bottom:893.045385px;}
.y7_c01194{bottom:893.763135px;}
.y8_c01194{bottom:894.114585px;}
.y6_c01194{bottom:898.039935px;}
.y4_c01194{bottom:910.865385px;}
.y3_c01194{bottom:926.195535px;}
.y2_c01194{bottom:1069.463385px;}
.h7_c01194{height:24.873750px;}
.h14_c01194{height:35.519550px;}
.h4_c01194{height:38.927565px;}
.hc_c01194{height:39.877015px;}
.h16_c01194{height:52.079414px;}
.hb_c01194{height:54.022676px;}
.h9_c01194{height:58.297852px;}
.h1b_c01194{height:64.843453px;}
.h10_c01194{height:66.082500px;}
.hd_c01194{height:67.321547px;}
.h8_c01194{height:69.180117px;}
.h18_c01194{height:70.240700px;}
.h15_c01194{height:70.734921px;}
.h1a_c01194{height:71.038894px;}
.he_c01194{height:72.253565px;}
.h5_c01194{height:72.678183px;}
.h2_c01194{height:73.455293px;}
.h19_c01194{height:74.232792px;}
.h11_c01194{height:74.621444px;}
.hf_c01194{height:75.169050px;}
.h13_c01194{height:75.981533px;}
.ha_c01194{height:76.564706px;}
.h12_c01194{height:77.424188px;}
.h6_c01194{height:77.730469px;}
.h3_c01194{height:79.299207px;}
.h17_c01194{height:101.438456px;}
.h1_c01194{height:1110.000000px;}
.h0_c01194{height:1263.000000px;}
.w1_c01194{width:775.500000px;}
.w0_c01194{width:892.500000px;}
.x0_c01194{left:0.000000px;}
.x1_c01194{left:58.500000px;}
.x52_c01194{left:67.675263px;}
.x53_c01194{left:80.642085px;}
.x2f_c01194{left:81.681585px;}
.x3_c01194{left:82.795335px;}
.x56_c01194{left:134.577285px;}
.x33_c01194{left:135.720735px;}
.x4_c01194{left:136.849335px;}
.x11_c01194{left:148.773885px;}
.x2a_c01194{left:159.381735px;}
.x57_c01194{left:169.063935px;}
.x30_c01194{left:170.771685px;}
.x37_c01194{left:180.815235px;}
.x3b_c01194{left:190.215285px;}
.x5_c01194{left:192.224985px;}
.xe_c01194{left:194.422785px;}
.x31_c01194{left:203.600085px;}
.x58_c01194{left:213.168435px;}
.x1f_c01194{left:214.598985px;}
.x12_c01194{left:224.830635px;}
.x46_c01194{left:234.765285px;}
.x1b_c01194{left:235.864185px;}
.x47_c01194{left:241.823985px;}
.x6_c01194{left:246.194835px;}
.x20_c01194{left:248.927235px;}
.x4c_c01194{left:256.505685px;}
.x59_c01194{left:258.173835px;}
.xf_c01194{left:259.361835px;}
.x13_c01194{left:265.742385px;}
.x3c_c01194{left:270.256785px;}
.x7_c01194{left:282.171435px;}
.x1c_c01194{left:289.705335px;}
.x21_c01194{left:290.710185px;}
.x41_c01194{left:291.838785px;}
.x26_c01194{left:302.679285px;}
.x1d_c01194{left:303.703935px;}
.x48_c01194{left:312.777285px;}
.x38_c01194{left:326.221485px;}
.x10_c01194{left:328.533135px;}
.x4d_c01194{left:332.829735px;}
.x2b_c01194{left:336.042285px;}
.x42_c01194{left:346.046235px;}
.x1e_c01194{left:347.437185px;}
.x54_c01194{left:357.347085px;}
.x39_c01194{left:359.812185px;}
.x8_c01194{left:369.543885px;}
.x14_c01194{left:370.944735px;}
.x27_c01194{left:380.874435px;}
.x43_c01194{left:390.917985px;}
.x4e_c01194{left:399.827985px;}
.x15_c01194{left:403.911735px;}
.x4f_c01194{left:413.791935px;}
.x32_c01194{left:435.398685px;}
.x16_c01194{left:436.725285px;}
.x22_c01194{left:446.496585px;}
.x3a_c01194{left:450.179385px;}
.x28_c01194{left:459.346785px;}
.x50_c01194{left:467.925135px;}
.x17_c01194{left:469.959585px;}
.x55_c01194{left:478.933935px;}
.x9_c01194{left:481.478235px;}
.x44_c01194{left:492.303885px;}
.x49_c01194{left:502.253385px;}
.x51_c01194{left:503.990835px;}
.xa_c01194{left:513.841335px;}
.x34_c01194{left:524.869935px;}
.x23_c01194{left:536.393535px;}
.x2c_c01194{left:546.649935px;}
.x45_c01194{left:557.351835px;}
.x5a_c01194{left:568.603185px;}
.x35_c01194{left:570.231735px;}
.x29_c01194{left:571.528635px;}
.x18_c01194{left:579.770385px;}
.x3d_c01194{left:581.438535px;}
.x24_c01194{left:590.452485px;}
.xb_c01194{left:591.769185px;}
.x2d_c01194{left:593.511585px;}
.x19_c01194{left:601.446435px;}
.x4a_c01194{left:623.845185px;}
.xc_c01194{left:624.874785px;}
.x25_c01194{left:635.096535px;}
.x3e_c01194{left:646.238985px;}
.x4b_c01194{left:656.782485px;}
.x3f_c01194{left:667.642785px;}
.x5b_c01194{left:677.780385px;}
.x2e_c01194{left:680.022735px;}
.x36_c01194{left:681.968085px;}
.x5c_c01194{left:689.645535px;}
.x1a_c01194{left:691.764135px;}
.x5d_c01194{left:699.500985px;}
.x2_c01194{left:701.119635px;}
.xd_c01194{left:703.520385px;}
.x40_c01194{left:712.692735px;}
@media print{
.v0_c01194{vertical-align:0.000000pt;}
.ls1c_c01194{letter-spacing:-3.215526pt;}
.ls1a_c01194{letter-spacing:-2.303846pt;}
.ls6_c01194{letter-spacing:-2.277587pt;}
.ls21_c01194{letter-spacing:-2.119046pt;}
.ls11_c01194{letter-spacing:-1.971200pt;}
.ls7_c01194{letter-spacing:-1.533703pt;}
.ls22_c01194{letter-spacing:-1.414758pt;}
.ls2_c01194{letter-spacing:-1.257066pt;}
.ls13_c01194{letter-spacing:-1.121897pt;}
.ls1b_c01194{letter-spacing:-0.388363pt;}
.ls3_c01194{letter-spacing:0.000000pt;}
.ls1f_c01194{letter-spacing:0.875462pt;}
.lsc_c01194{letter-spacing:1.198000pt;}
.ls0_c01194{letter-spacing:1.375725pt;}
.ls17_c01194{letter-spacing:1.527121pt;}
.ls12_c01194{letter-spacing:1.718011pt;}
.ls10_c01194{letter-spacing:2.024428pt;}
.ls19_c01194{letter-spacing:2.358400pt;}
.lsb_c01194{letter-spacing:2.446400pt;}
.ls9_c01194{letter-spacing:2.640000pt;}
.lse_c01194{letter-spacing:2.868800pt;}
.ls8_c01194{letter-spacing:2.948000pt;}
.ls1d_c01194{letter-spacing:3.097609pt;}
.ls18_c01194{letter-spacing:3.203209pt;}
.lsf_c01194{letter-spacing:3.273609pt;}
.ls5_c01194{letter-spacing:3.291209pt;}
.ls20_c01194{letter-spacing:3.304866pt;}
.ls1_c01194{letter-spacing:3.326400pt;}
.ls1e_c01194{letter-spacing:3.361609pt;}
.ls15_c01194{letter-spacing:3.379209pt;}
.ls14_c01194{letter-spacing:3.414400pt;}
.ls16_c01194{letter-spacing:3.440800pt;}
.lsa_c01194{letter-spacing:3.467209pt;}
.ls4_c01194{letter-spacing:51.955376pt;}
.lsd_c01194{letter-spacing:53.222576pt;}
.ws2_c01194{word-spacing:-17.831769pt;}
.ws0_c01194{word-spacing:-17.531335pt;}
.ws1_c01194{word-spacing:-14.922341pt;}
.ws3_c01194{word-spacing:0.000000pt;}
._1_c01194{margin-left:-30.277730pt;}
._0_c01194{margin-left:-1.811264pt;}
._3_c01194{width:5.424020pt;}
._2_c01194{width:8.201640pt;}
._6_c01194{width:9.275112pt;}
._4_c01194{width:23.387452pt;}
._5_c01194{width:35.413366pt;}
.fs5_c01194{font-size:22.528000pt;}
.fs11_c01194{font-size:30.272176pt;}
.fs12_c01194{font-size:47.168000pt;}
.fs9_c01194{font-size:48.928000pt;}
.fs2_c01194{font-size:51.955376pt;}
.fs7_c01194{font-size:52.800000pt;}
.fsa_c01194{font-size:53.222576pt;}
.fs17_c01194{font-size:55.264000pt;}
.fse_c01194{font-size:56.320000pt;}
.fsb_c01194{font-size:57.376000pt;}
.fs6_c01194{font-size:58.960000pt;}
.fs16_c01194{font-size:60.544176pt;}
.fs14_c01194{font-size:61.952176pt;}
.fsd_c01194{font-size:64.064176pt;}
.fsc_c01194{font-size:65.472176pt;}
.fs3_c01194{font-size:65.824176pt;}
.fs0_c01194{font-size:66.528000pt;}
.fs15_c01194{font-size:67.232176pt;}
.fs1_c01194{font-size:67.584176pt;}
.fsf_c01194{font-size:68.288000pt;}
.fs10_c01194{font-size:68.816000pt;}
.fs8_c01194{font-size:69.344176pt;}
.fs4_c01194{font-size:70.400000pt;}
.fs13_c01194{font-size:91.872176pt;}
.y0_c01194{bottom:0.000000pt;}
.y1_c01194{bottom:68.000000pt;}
.y1a_c01194{bottom:137.725320pt;}
.y19_c01194{bottom:166.558520pt;}
.y18_c01194{bottom:224.216120pt;}
.y17_c01194{bottom:224.219904pt;}
.y16_c01194{bottom:281.240120pt;}
.y15_c01194{bottom:309.747720pt;}
.y14_c01194{bottom:338.893320pt;}
.y13_c01194{bottom:394.966920pt;}
.y12_c01194{bottom:423.483320pt;}
.y11_c01194{bottom:481.136520pt;}
.y10_c01194{bottom:509.336120pt;}
.yf_c01194{bottom:554.321720pt;}
.ye_c01194{bottom:566.360120pt;}
.yd_c01194{bottom:622.433720pt;}
.yc_c01194{bottom:651.579320pt;}
.yb_c01194{bottom:680.403720pt;}
.ya_c01194{bottom:709.870520pt;}
.y9_c01194{bottom:764.993720pt;}
.y5_c01194{bottom:793.818120pt;}
.y7_c01194{bottom:794.456120pt;}
.y8_c01194{bottom:794.768520pt;}
.y6_c01194{bottom:798.257720pt;}
.y4_c01194{bottom:809.658120pt;}
.y3_c01194{bottom:823.284920pt;}
.y2_c01194{bottom:950.634120pt;}
.h7_c01194{height:22.110000pt;}
.h14_c01194{height:31.572934pt;}
.h4_c01194{height:34.602280pt;}
.hc_c01194{height:35.446236pt;}
.h16_c01194{height:46.292813pt;}
.hb_c01194{height:48.020156pt;}
.h9_c01194{height:51.820313pt;}
.h1b_c01194{height:57.638625pt;}
.h10_c01194{height:58.740000pt;}
.hd_c01194{height:59.841375pt;}
.h8_c01194{height:61.493438pt;}
.h18_c01194{height:62.436177pt;}
.h15_c01194{height:62.875485pt;}
.h1a_c01194{height:63.145684pt;}
.he_c01194{height:64.225391pt;}
.h5_c01194{height:64.602829pt;}
.h2_c01194{height:65.293594pt;}
.h19_c01194{height:65.984704pt;}
.h11_c01194{height:66.330173pt;}
.hf_c01194{height:66.816934pt;}
.h13_c01194{height:67.539141pt;}
.ha_c01194{height:68.057516pt;}
.h12_c01194{height:68.821500pt;}
.h6_c01194{height:69.093750pt;}
.h3_c01194{height:70.488184pt;}
.h17_c01194{height:90.167516pt;}
.h1_c01194{height:986.666667pt;}
.h0_c01194{height:1122.666667pt;}
.w1_c01194{width:689.333333pt;}
.w0_c01194{width:793.333333pt;}
.x0_c01194{left:0.000000pt;}
.x1_c01194{left:52.000000pt;}
.x52_c01194{left:60.155789pt;}
.x53_c01194{left:71.681853pt;}
.x2f_c01194{left:72.605853pt;}
.x3_c01194{left:73.595853pt;}
.x56_c01194{left:119.624253pt;}
.x33_c01194{left:120.640653pt;}
.x4_c01194{left:121.643853pt;}
.x11_c01194{left:132.243453pt;}
.x2a_c01194{left:141.672653pt;}
.x57_c01194{left:150.279053pt;}
.x30_c01194{left:151.797053pt;}
.x37_c01194{left:160.724653pt;}
.x3b_c01194{left:169.080253pt;}
.x5_c01194{left:170.866653pt;}
.xe_c01194{left:172.820253pt;}
.x31_c01194{left:180.977853pt;}
.x58_c01194{left:189.483053pt;}
.x1f_c01194{left:190.754653pt;}
.x12_c01194{left:199.849453pt;}
.x46_c01194{left:208.680253pt;}
.x1b_c01194{left:209.657053pt;}
.x47_c01194{left:214.954653pt;}
.x6_c01194{left:218.839853pt;}
.x20_c01194{left:221.268653pt;}
.x4c_c01194{left:228.005053pt;}
.x59_c01194{left:229.487853pt;}
.xf_c01194{left:230.543853pt;}
.x13_c01194{left:236.215453pt;}
.x3c_c01194{left:240.228253pt;}
.x7_c01194{left:250.819053pt;}
.x1c_c01194{left:257.515853pt;}
.x21_c01194{left:258.409053pt;}
.x41_c01194{left:259.412253pt;}
.x26_c01194{left:269.048253pt;}
.x1d_c01194{left:269.959053pt;}
.x48_c01194{left:278.024253pt;}
.x38_c01194{left:289.974653pt;}
.x10_c01194{left:292.029453pt;}
.x4d_c01194{left:295.848653pt;}
.x2b_c01194{left:298.704253pt;}
.x42_c01194{left:307.596653pt;}
.x1e_c01194{left:308.833053pt;}
.x54_c01194{left:317.641853pt;}
.x39_c01194{left:319.833053pt;}
.x8_c01194{left:328.483453pt;}
.x14_c01194{left:329.728653pt;}
.x27_c01194{left:338.555053pt;}
.x43_c01194{left:347.482653pt;}
.x4e_c01194{left:355.402653pt;}
.x15_c01194{left:359.032653pt;}
.x4f_c01194{left:367.815053pt;}
.x32_c01194{left:387.021053pt;}
.x16_c01194{left:388.200253pt;}
.x22_c01194{left:396.885853pt;}
.x3a_c01194{left:400.159453pt;}
.x28_c01194{left:408.308253pt;}
.x50_c01194{left:415.933453pt;}
.x17_c01194{left:417.741853pt;}
.x55_c01194{left:425.719053pt;}
.x9_c01194{left:427.980653pt;}
.x44_c01194{left:437.603453pt;}
.x49_c01194{left:446.447453pt;}
.x51_c01194{left:447.991853pt;}
.xa_c01194{left:456.747853pt;}
.x34_c01194{left:466.551053pt;}
.x23_c01194{left:476.794253pt;}
.x2c_c01194{left:485.911053pt;}
.x45_c01194{left:495.423853pt;}
.x5a_c01194{left:505.425053pt;}
.x35_c01194{left:506.872653pt;}
.x29_c01194{left:508.025453pt;}
.x18_c01194{left:515.351453pt;}
.x3d_c01194{left:516.834253pt;}
.x24_c01194{left:524.846653pt;}
.xb_c01194{left:526.017053pt;}
.x2d_c01194{left:527.565853pt;}
.x19_c01194{left:534.619053pt;}
.x4a_c01194{left:554.529053pt;}
.xc_c01194{left:555.444253pt;}
.x25_c01194{left:564.530253pt;}
.x3e_c01194{left:574.434653pt;}
.x4b_c01194{left:583.806653pt;}
.x3f_c01194{left:593.460253pt;}
.x5b_c01194{left:602.471453pt;}
.x2e_c01194{left:604.464653pt;}
.x36_c01194{left:606.193853pt;}
.x5c_c01194{left:613.018253pt;}
.x1a_c01194{left:614.901453pt;}
.x5d_c01194{left:621.778653pt;}
.x2_c01194{left:623.217453pt;}
.xd_c01194{left:625.351453pt;}
.x40_c01194{left:633.504653pt;}
}





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

.ir_c01195:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01195{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01195;src:url('chunks/assets/font_096d4a88129f523429c56a02.woff2')format("woff");}.ff1_c01195{font-family:ff1_c01195;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01195;src:url('chunks/assets/font_1f932aaddc6b025a83f65d0e.woff2')format("woff");}.ff2_c01195{font-family:ff2_c01195;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01195;src:url('chunks/assets/font_0a09cd6987f6516add7dd65b.woff2')format("woff");}.ff3_c01195{font-family:ff3_c01195;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m67_c01195{transform:matrix(0.023810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.023810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.023810,0.000000,0.000000,0.250000,0,0);}
.m68_c01195{transform:matrix(0.158482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158482,0.000000,0.000000,0.250000,0,0);}
.m66_c01195{transform:matrix(0.170238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170238,0.000000,0.000000,0.250000,0,0);}
.m14_c01195{transform:matrix(0.193910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193910,0.000000,0.000000,0.250000,0,0);}
.m6f_c01195{transform:matrix(0.204763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204763,0.000000,0.000000,0.250000,0,0);}
.m27_c01195{transform:matrix(0.211309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211309,0.000000,0.000000,0.250000,0,0);}
.m51_c01195{transform:matrix(0.241379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241379,0.000000,0.000000,0.250000,0,0);}
.m20_c01195{transform:matrix(0.242248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242248,0.000000,0.000000,0.250000,0,0);}
.m18_c01195{transform:matrix(0.242739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242739,0.000000,0.000000,0.250000,0,0);}
.m1_c01195{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m42_c01195{transform:matrix(0.252912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252912,0.000000,0.000000,0.250000,0,0);}
.m53_c01195{transform:matrix(0.253550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253550,0.000000,0.000000,0.250000,0,0);}
.m0_c01195{transform:matrix(0.254056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254056,0.000000,0.000000,0.250000,0,0);}
.m4_c01195{transform:matrix(0.254574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254574,0.000000,0.000000,0.250000,0,0);}
.m4f_c01195{transform:matrix(0.256284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256284,0.000000,0.000000,0.250000,0,0);}
.m37_c01195{transform:matrix(0.256687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256687,0.000000,0.000000,0.250000,0,0);}
.m4b_c01195{transform:matrix(0.256777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256777,0.000000,0.000000,0.250000,0,0);}
.m36_c01195{transform:matrix(0.259454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259454,0.000000,0.000000,0.250000,0,0);}
.m34_c01195{transform:matrix(0.260174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260174,0.000000,0.000000,0.250000,0,0);}
.m19_c01195{transform:matrix(0.260749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260749,0.000000,0.000000,0.250000,0,0);}
.m2a_c01195{transform:matrix(0.260827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260827,0.000000,0.000000,0.250000,0,0);}
.m60_c01195{transform:matrix(0.265460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265460,0.000000,0.000000,0.250000,0,0);}
.m29_c01195{transform:matrix(0.265976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265976,0.000000,0.000000,0.250000,0,0);}
.m23_c01195{transform:matrix(0.270287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270287,0.000000,0.000000,0.250000,0,0);}
.m57_c01195{transform:matrix(0.270309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270309,0.000000,0.000000,0.250000,0,0);}
.m55_c01195{transform:matrix(0.272665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272665,0.000000,0.000000,0.250000,0,0);}
.m4a_c01195{transform:matrix(0.272956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272956,0.000000,0.000000,0.250000,0,0);}
.m13_c01195{transform:matrix(0.274311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274311,0.000000,0.000000,0.250000,0,0);}
.m35_c01195{transform:matrix(0.274838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274838,0.000000,0.000000,0.250000,0,0);}
.m8_c01195{transform:matrix(0.275114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275114,0.000000,0.000000,0.250000,0,0);}
.m71_c01195{transform:matrix(0.275764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275764,0.000000,0.000000,0.250000,0,0);}
.m3e_c01195{transform:matrix(0.276343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276343,0.000000,0.000000,0.250000,0,0);}
.m6b_c01195{transform:matrix(0.276470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276470,0.000000,0.000000,0.250000,0,0);}
.m28_c01195{transform:matrix(0.276721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276721,0.000000,0.000000,0.250000,0,0);}
.m40_c01195{transform:matrix(0.277264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277264,0.000000,0.000000,0.250000,0,0);}
.m44_c01195{transform:matrix(0.278154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278154,0.000000,0.000000,0.250000,0,0);}
.m5d_c01195{transform:matrix(0.278669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278669,0.000000,0.000000,0.250000,0,0);}
.m62_c01195{transform:matrix(0.279118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279118,0.000000,0.000000,0.250000,0,0);}
.me_c01195{transform:matrix(0.279602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279602,0.000000,0.000000,0.250000,0,0);}
.m64_c01195{transform:matrix(0.279660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279660,0.000000,0.000000,0.250000,0,0);}
.m4e_c01195{transform:matrix(0.279695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279695,0.000000,0.000000,0.250000,0,0);}
.m1f_c01195{transform:matrix(0.280154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280154,0.000000,0.000000,0.250000,0,0);}
.m58_c01195{transform:matrix(0.280796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280796,0.000000,0.000000,0.250000,0,0);}
.m41_c01195{transform:matrix(0.281595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281595,0.000000,0.000000,0.250000,0,0);}
.m38_c01195{transform:matrix(0.283022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283022,0.000000,0.000000,0.250000,0,0);}
.m26_c01195{transform:matrix(0.283132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283132,0.000000,0.000000,0.250000,0,0);}
.m16_c01195{transform:matrix(0.283792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283792,0.000000,0.000000,0.250000,0,0);}
.m69_c01195{transform:matrix(0.284520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284520,0.000000,0.000000,0.250000,0,0);}
.m63_c01195{transform:matrix(0.285084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285084,0.000000,0.000000,0.250000,0,0);}
.m4d_c01195{transform:matrix(0.285268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285268,0.000000,0.000000,0.250000,0,0);}
.m10_c01195{transform:matrix(0.286107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286107,0.000000,0.000000,0.250000,0,0);}
.m6a_c01195{transform:matrix(0.287843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287843,0.000000,0.000000,0.250000,0,0);}
.m21_c01195{transform:matrix(0.288617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288617,0.000000,0.000000,0.250000,0,0);}
.m1d_c01195{transform:matrix(0.289235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289235,0.000000,0.000000,0.250000,0,0);}
.m61_c01195{transform:matrix(0.289648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289648,0.000000,0.000000,0.250000,0,0);}
.m2f_c01195{transform:matrix(0.289668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289668,0.000000,0.000000,0.250000,0,0);}
.m17_c01195{transform:matrix(0.291278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291278,0.000000,0.000000,0.250000,0,0);}
.mb_c01195{transform:matrix(0.292186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292186,0.000000,0.000000,0.250000,0,0);}
.m1a_c01195{transform:matrix(0.292626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292626,0.000000,0.000000,0.250000,0,0);}
.m3_c01195{transform:matrix(0.292793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292793,0.000000,0.000000,0.250000,0,0);}
.m30_c01195{transform:matrix(0.293654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293654,0.000000,0.000000,0.250000,0,0);}
.m6e_c01195{transform:matrix(0.294125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294125,0.000000,0.000000,0.250000,0,0);}
.m76_c01195{transform:matrix(0.295068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295068,0.000000,0.000000,0.250000,0,0);}
.m15_c01195{transform:matrix(0.295222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295222,0.000000,0.000000,0.250000,0,0);}
.m2_c01195{transform:matrix(0.295633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295633,0.000000,0.000000,0.250000,0,0);}
.m2b_c01195{transform:matrix(0.296503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296503,0.000000,0.000000,0.250000,0,0);}
.m1b_c01195{transform:matrix(0.298535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298535,0.000000,0.000000,0.250000,0,0);}
.m5a_c01195{transform:matrix(0.299287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299287,0.000000,0.000000,0.250000,0,0);}
.mc_c01195{transform:matrix(0.300937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300937,0.000000,0.000000,0.250000,0,0);}
.m72_c01195{transform:matrix(0.301135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301135,0.000000,0.000000,0.250000,0,0);}
.m56_c01195{transform:matrix(0.303004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303004,0.000000,0.000000,0.250000,0,0);}
.m73_c01195{transform:matrix(0.303293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303293,0.000000,0.000000,0.250000,0,0);}
.m49_c01195{transform:matrix(0.303465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303465,0.000000,0.000000,0.250000,0,0);}
.m43_c01195{transform:matrix(0.304997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304997,0.000000,0.000000,0.250000,0,0);}
.m52_c01195{transform:matrix(0.305386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305386,0.000000,0.000000,0.250000,0,0);}
.m2e_c01195{transform:matrix(0.305427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305427,0.000000,0.000000,0.250000,0,0);}
.m25_c01195{transform:matrix(0.305940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305940,0.000000,0.000000,0.250000,0,0);}
.m48_c01195{transform:matrix(0.306206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306206,0.000000,0.000000,0.250000,0,0);}
.m12_c01195{transform:matrix(0.306553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306553,0.000000,0.000000,0.250000,0,0);}
.m1c_c01195{transform:matrix(0.307704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307704,0.000000,0.000000,0.250000,0,0);}
.m3a_c01195{transform:matrix(0.307911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307911,0.000000,0.000000,0.250000,0,0);}
.m70_c01195{transform:matrix(0.308580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308580,0.000000,0.000000,0.250000,0,0);}
.m11_c01195{transform:matrix(0.309993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309993,0.000000,0.000000,0.250000,0,0);}
.m39_c01195{transform:matrix(0.310126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310126,0.000000,0.000000,0.250000,0,0);}
.m2d_c01195{transform:matrix(0.311758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311758,0.000000,0.000000,0.250000,0,0);}
.m7_c01195{transform:matrix(0.312665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312665,0.000000,0.000000,0.250000,0,0);}
.m65_c01195{transform:matrix(0.313406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313406,0.000000,0.000000,0.250000,0,0);}
.m1e_c01195{transform:matrix(0.313961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313961,0.000000,0.000000,0.250000,0,0);}
.m33_c01195{transform:matrix(0.315033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315033,0.000000,0.000000,0.250000,0,0);}
.m75_c01195{transform:matrix(0.315588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315588,0.000000,0.000000,0.250000,0,0);}
.m31_c01195{transform:matrix(0.316623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316623,0.000000,0.000000,0.250000,0,0);}
.m47_c01195{transform:matrix(0.317050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317050,0.000000,0.000000,0.250000,0,0);}
.m54_c01195{transform:matrix(0.318517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318517,0.000000,0.000000,0.250000,0,0);}
.m3c_c01195{transform:matrix(0.321730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321730,0.000000,0.000000,0.250000,0,0);}
.m50_c01195{transform:matrix(0.322221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322221,0.000000,0.000000,0.250000,0,0);}
.m59_c01195{transform:matrix(0.322404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322404,0.000000,0.000000,0.250000,0,0);}
.m46_c01195{transform:matrix(0.322777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322777,0.000000,0.000000,0.250000,0,0);}
.m74_c01195{transform:matrix(0.324872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324872,0.000000,0.000000,0.250000,0,0);}
.m9_c01195{transform:matrix(0.329535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329535,0.000000,0.000000,0.250000,0,0);}
.m3b_c01195{transform:matrix(0.329956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329956,0.000000,0.000000,0.250000,0,0);}
.m24_c01195{transform:matrix(0.333491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333491,0.000000,0.000000,0.250000,0,0);}
.m5e_c01195{transform:matrix(0.334504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334504,0.000000,0.000000,0.250000,0,0);}
.m3d_c01195{transform:matrix(0.339898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339898,0.000000,0.000000,0.250000,0,0);}
.m4c_c01195{transform:matrix(0.340952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340952,0.000000,0.000000,0.250000,0,0);}
.md_c01195{transform:matrix(0.341235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341235,0.000000,0.000000,0.250000,0,0);}
.m5f_c01195{transform:matrix(0.343500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343500,0.000000,0.000000,0.250000,0,0);}
.m22_c01195{transform:matrix(0.350657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350657,0.000000,0.000000,0.250000,0,0);}
.ma_c01195{transform:matrix(0.352591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352591,0.000000,0.000000,0.250000,0,0);}
.m32_c01195{transform:matrix(0.354500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354500,0.000000,0.000000,0.250000,0,0);}
.m5c_c01195{transform:matrix(0.358064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358064,0.000000,0.000000,0.250000,0,0);}
.m5_c01195{transform:matrix(0.363231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363231,0.000000,0.000000,0.250000,0,0);}
.m3f_c01195{transform:matrix(0.368068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368068,0.000000,0.000000,0.250000,0,0);}
.m5b_c01195{transform:matrix(0.371145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371145,0.000000,0.000000,0.250000,0,0);}
.mf_c01195{transform:matrix(0.386961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386961,0.000000,0.000000,0.250000,0,0);}
.m2c_c01195{transform:matrix(0.396432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396432,0.000000,0.000000,0.250000,0,0);}
.m6d_c01195{transform:matrix(0.401718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401718,0.000000,0.000000,0.250000,0,0);}
.m6_c01195{transform:matrix(0.402725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402725,0.000000,0.000000,0.250000,0,0);}
.m45_c01195{transform:matrix(0.409017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409017,0.000000,0.000000,0.250000,0,0);}
.m6c_c01195{transform:matrix(0.421500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421500,0.000000,0.000000,0.250000,0,0);}
.v2_c01195{vertical-align:-22.789800px;}
.v0_c01195{vertical-align:0.000000px;}
.v1_c01195{vertical-align:25.664760px;}
.lsb_c01195{letter-spacing:-3.160080px;}
.ls3_c01195{letter-spacing:-2.758424px;}
.ls8_c01195{letter-spacing:-2.626477px;}
.ls10_c01195{letter-spacing:-1.331949px;}
.ls5_c01195{letter-spacing:0.000000px;}
.ls11_c01195{letter-spacing:0.082546px;}
.ls6_c01195{letter-spacing:0.705397px;}
.lsc_c01195{letter-spacing:1.080608px;}
.lsf_c01195{letter-spacing:1.384974px;}
.ls12_c01195{letter-spacing:2.934150px;}
.ls0_c01195{letter-spacing:3.205271px;}
.ls14_c01195{letter-spacing:3.653110px;}
.lsa_c01195{letter-spacing:3.722400px;}
.ls4_c01195{letter-spacing:3.752110px;}
.ls9_c01195{letter-spacing:3.960000px;}
.lse_c01195{letter-spacing:3.979810px;}
.ls2_c01195{letter-spacing:4.296610px;}
.ls15_c01195{letter-spacing:4.900500px;}
.ls1_c01195{letter-spacing:16.059744px;}
.lsd_c01195{letter-spacing:51.321798px;}
.ls7_c01195{letter-spacing:55.598598px;}
.ls13_c01195{letter-spacing:59.875398px;}
.sc__c01195{text-shadow:none;}
.sc0_c01195{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01195{-webkit-text-stroke:0px transparent;}
.sc0_c01195{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01195{word-spacing:-24.688320px;}
.ws1_c01195{word-spacing:0.000000px;}
._3_c01195{margin-left:-29.406960px;}
._4_c01195{margin-left:-16.958848px;}
._2_c01195{margin-left:-13.405442px;}
._7_c01195{margin-left:-8.555616px;}
._1_c01195{margin-left:-4.829408px;}
._9_c01195{width:5.778344px;}
._5_c01195{width:7.058700px;}
._8_c01195{width:30.679952px;}
._0_c01195{width:36.233901px;}
._6_c01195{width:46.104300px;}
._a_c01195{width:48.072651px;}
.fc0_c01195{color:transparent;}
.fs10_c01195{font-size:22.176000px;}
.fs11_c01195{font-size:27.720000px;}
.fs6_c01195{font-size:51.321798px;}
.fsc_c01195{font-size:51.876198px;}
.fs2_c01195{font-size:55.598598px;}
.fsd_c01195{font-size:59.875398px;}
.fs8_c01195{font-size:61.380000px;}
.fs9_c01195{font-size:65.538000px;}
.fsb_c01195{font-size:72.864000px;}
.fse_c01195{font-size:73.062198px;}
.fs4_c01195{font-size:74.448000px;}
.fs1_c01195{font-size:75.042198px;}
.fs3_c01195{font-size:79.200000px;}
.fs7_c01195{font-size:79.596198px;}
.fsa_c01195{font-size:81.972198px;}
.fs0_c01195{font-size:85.932198px;}
.fs5_c01195{font-size:90.288000px;}
.fsf_c01195{font-size:98.010000px;}
.y0_c01195{bottom:0.000000px;}
.y1_c01195{bottom:76.500000px;}
.y1c_c01195{bottom:84.378735px;}
.y1a_c01195{bottom:129.280185px;}
.y19_c01195{bottom:161.361135px;}
.y17_c01195{bottom:195.575535px;}
.y18_c01195{bottom:201.272985px;}
.y16_c01195{bottom:227.646585px;}
.y15_c01195{bottom:261.148185px;}
.y14_c01195{bottom:324.230985px;}
.y13_c01195{bottom:387.313785px;}
.y12_c01195{bottom:420.102585px;}
.y11_c01195{bottom:484.610985px;}
.y10_c01195{bottom:517.399785px;}
.yf_c01195{bottom:581.913135px;}
.ye_c01195{bottom:614.340585px;}
.y1b_c01195{bottom:655.682985px;}
.yd_c01195{bottom:677.428335px;}
.yc_c01195{bottom:710.217135px;}
.ya_c01195{bottom:710.568585px;}
.yb_c01195{bottom:711.286335px;}
.y9_c01195{bottom:774.007785px;}
.y8_c01195{bottom:806.445135px;}
.y7_c01195{bottom:832.100985px;}
.y5_c01195{bottom:838.507275px;}
.y6_c01195{bottom:838.516185px;}
.y4_c01195{bottom:902.311785px;}
.y3_c01195{bottom:934.036335px;}
.y2_c01195{bottom:1069.819785px;}
.h11_c01195{height:23.128875px;}
.h12_c01195{height:28.911094px;}
.h9_c01195{height:34.180317px;}
.h4_c01195{height:37.028666px;}
.he_c01195{height:39.877015px;}
.hd_c01195{height:54.105253px;}
.hc_c01195{height:71.512031px;}
.hf_c01195{height:71.706552px;}
.h7_c01195{height:73.066641px;}
.h3_c01195{height:73.649813px;}
.h6_c01195{height:77.730469px;}
.ha_c01195{height:78.119315px;}
.hb_c01195{height:80.451229px;}
.h2_c01195{height:84.337753px;}
.h8_c01195{height:88.612734px;}
.h10_c01195{height:96.191455px;}
.h5_c01195{height:99.314573px;}
.h1_c01195{height:1110.000000px;}
.h0_c01195{height:1263.000000px;}
.w1_c01195{width:775.500000px;}
.w0_c01195{width:892.500000px;}
.x0_c01195{left:0.000000px;}
.x1_c01195{left:58.500000px;}
.x20_c01195{left:80.968785px;}
.x3_c01195{left:82.042935px;}
.x3e_c01195{left:100.907385px;}
.x42_c01195{left:133.963485px;}
.x13_c01195{left:135.364335px;}
.x4_c01195{left:136.438485px;}
.x43_c01195{left:158.317485px;}
.x2b_c01195{left:168.365985px;}
.x3f_c01195{left:170.157885px;}
.x38_c01195{left:178.454085px;}
.x52_c01195{left:186.032535px;}
.x21_c01195{left:190.195485px;}
.x30_c01195{left:191.794335px;}
.x14_c01195{left:194.086185px;}
.x29_c01195{left:202.446735px;}
.x39_c01195{left:212.708085px;}
.x31_c01195{left:224.642535px;}
.xe_c01195{left:225.880035px;}
.x40_c01195{left:235.492935px;}
.x44_c01195{left:246.640335px;}
.x5_c01195{left:247.798635px;}
.x3d_c01195{left:256.901685px;}
.xf_c01195{left:257.960985px;}
.x2a_c01195{left:259.544985px;}
.x3a_c01195{left:268.301535px;}
.x49_c01195{left:269.514285px;}
.x6_c01195{left:280.062735px;}
.x2c_c01195{left:292.031835px;}
.x22_c01195{left:293.279235px;}
.x4d_c01195{left:303.100035px;}
.x10_c01195{left:313.490085px;}
.x32_c01195{left:322.741635px;}
.x23_c01195{left:325.548285px;}
.x11_c01195{left:336.344235px;}
.x7_c01195{left:346.402635px;}
.x41_c01195{left:348.412335px;}
.x57_c01195{left:357.188685px;}
.x24_c01195{left:358.683585px;}
.x4a_c01195{left:360.227985px;}
.x45_c01195{left:368.885535px;}
.x15_c01195{left:379.998285px;}
.x35_c01195{left:381.785235px;}
.x25_c01195{left:390.754635px;}
.x12_c01195{left:394.576035px;}
.x4b_c01195{left:402.639585px;}
.x33_c01195{left:412.643535px;}
.x16_c01195{left:414.608685px;}
.x8_c01195{left:435.953085px;}
.x2d_c01195{left:437.037135px;}
.x53_c01195{left:445.026435px;}
.x1b_c01195{left:457.574685px;}
.x17_c01195{left:469.519035px;}
.x9_c01195{left:470.533785px;}
.x34_c01195{left:480.082335px;}
.x4e_c01195{left:492.279135px;}
.x18_c01195{left:501.931635px;}
.x1c_c01195{left:515.425335px;}
.x26_c01195{left:524.048235px;}
.x54_c01195{left:534.215535px;}
.x58_c01195{left:535.745085px;}
.x2e_c01195{left:536.853885px;}
.x4c_c01195{left:545.585685px;}
.x3b_c01195{left:546.798435px;}
.xa_c01195{left:558.262635px;}
.x4f_c01195{left:578.300235px;}
.xb_c01195{left:580.166385px;}
.x55_c01195{left:581.686035px;}
.xc_c01195{left:590.422785px;}
.x27_c01195{left:591.744435px;}
.x1d_c01195{left:601.971135px;}
.x50_c01195{left:611.534535px;}
.x2f_c01195{left:623.092785px;}
.x19_c01195{left:634.141185px;}
.x36_c01195{left:635.512335px;}
.x3c_c01195{left:645.669735px;}
.x46_c01195{left:656.629035px;}
.x1e_c01195{left:658.465485px;}
.x37_c01195{left:668.340735px;}
.x28_c01195{left:677.859585px;}
.xd_c01195{left:680.087085px;}
.x1a_c01195{left:685.482585px;}
.x47_c01195{left:689.140635px;}
.x51_c01195{left:690.432585px;}
.x2_c01195{left:699.694035px;}
.x1f_c01195{left:712.291785px;}
.x48_c01195{left:722.904585px;}
.x56_c01195{left:724.656885px;}
.x59_c01195{left:756.896235px;}
.x5a_c01195{left:758.297085px;}
@media print{
.v2_c01195{vertical-align:-20.257600pt;}
.v0_c01195{vertical-align:0.000000pt;}
.v1_c01195{vertical-align:22.813120pt;}
.lsb_c01195{letter-spacing:-2.808960pt;}
.ls3_c01195{letter-spacing:-2.451932pt;}
.ls8_c01195{letter-spacing:-2.334646pt;}
.ls10_c01195{letter-spacing:-1.183955pt;}
.ls5_c01195{letter-spacing:0.000000pt;}
.ls11_c01195{letter-spacing:0.073375pt;}
.ls6_c01195{letter-spacing:0.627019pt;}
.lsc_c01195{letter-spacing:0.960540pt;}
.lsf_c01195{letter-spacing:1.231088pt;}
.ls12_c01195{letter-spacing:2.608133pt;}
.ls0_c01195{letter-spacing:2.849130pt;}
.ls14_c01195{letter-spacing:3.247209pt;}
.lsa_c01195{letter-spacing:3.308800pt;}
.ls4_c01195{letter-spacing:3.335209pt;}
.ls9_c01195{letter-spacing:3.520000pt;}
.lse_c01195{letter-spacing:3.537609pt;}
.ls2_c01195{letter-spacing:3.819209pt;}
.ls15_c01195{letter-spacing:4.356000pt;}
.ls1_c01195{letter-spacing:14.275328pt;}
.lsd_c01195{letter-spacing:45.619376pt;}
.ls7_c01195{letter-spacing:49.420976pt;}
.ls13_c01195{letter-spacing:53.222576pt;}
.ws0_c01195{word-spacing:-21.945174pt;}
.ws1_c01195{word-spacing:0.000000pt;}
._3_c01195{margin-left:-26.139520pt;}
._4_c01195{margin-left:-15.074532pt;}
._2_c01195{margin-left:-11.915948pt;}
._7_c01195{margin-left:-7.604992pt;}
._1_c01195{margin-left:-4.292807pt;}
._9_c01195{width:5.136306pt;}
._5_c01195{width:6.274400pt;}
._8_c01195{width:27.271068pt;}
._0_c01195{width:32.207912pt;}
._6_c01195{width:40.981600pt;}
._a_c01195{width:42.731245pt;}
.fs10_c01195{font-size:19.712000pt;}
.fs11_c01195{font-size:24.640000pt;}
.fs6_c01195{font-size:45.619376pt;}
.fsc_c01195{font-size:46.112176pt;}
.fs2_c01195{font-size:49.420976pt;}
.fsd_c01195{font-size:53.222576pt;}
.fs8_c01195{font-size:54.560000pt;}
.fs9_c01195{font-size:58.256000pt;}
.fsb_c01195{font-size:64.768000pt;}
.fse_c01195{font-size:64.944176pt;}
.fs4_c01195{font-size:66.176000pt;}
.fs1_c01195{font-size:66.704176pt;}
.fs3_c01195{font-size:70.400000pt;}
.fs7_c01195{font-size:70.752176pt;}
.fsa_c01195{font-size:72.864176pt;}
.fs0_c01195{font-size:76.384176pt;}
.fs5_c01195{font-size:80.256000pt;}
.fsf_c01195{font-size:87.120000pt;}
.y0_c01195{bottom:0.000000pt;}
.y1_c01195{bottom:68.000000pt;}
.y1c_c01195{bottom:75.003320pt;}
.y1a_c01195{bottom:114.915720pt;}
.y19_c01195{bottom:143.432120pt;}
.y17_c01195{bottom:173.844920pt;}
.y18_c01195{bottom:178.909320pt;}
.y16_c01195{bottom:202.352520pt;}
.y15_c01195{bottom:232.131720pt;}
.y14_c01195{bottom:288.205320pt;}
.y13_c01195{bottom:344.278920pt;}
.y12_c01195{bottom:373.424520pt;}
.y11_c01195{bottom:430.765320pt;}
.y10_c01195{bottom:459.910920pt;}
.yf_c01195{bottom:517.256120pt;}
.ye_c01195{bottom:546.080520pt;}
.y1b_c01195{bottom:582.829320pt;}
.yd_c01195{bottom:602.158520pt;}
.yc_c01195{bottom:631.304120pt;}
.ya_c01195{bottom:631.616520pt;}
.yb_c01195{bottom:632.254520pt;}
.y9_c01195{bottom:688.006920pt;}
.y8_c01195{bottom:716.840120pt;}
.y7_c01195{bottom:739.645320pt;}
.y5_c01195{bottom:745.339800pt;}
.y6_c01195{bottom:745.347720pt;}
.y4_c01195{bottom:802.054920pt;}
.y3_c01195{bottom:830.254520pt;}
.y2_c01195{bottom:950.950920pt;}
.h11_c01195{height:20.559000pt;}
.h12_c01195{height:25.698750pt;}
.h9_c01195{height:30.382504pt;}
.h4_c01195{height:32.914370pt;}
.he_c01195{height:35.446236pt;}
.hd_c01195{height:48.093559pt;}
.hc_c01195{height:63.566250pt;}
.hf_c01195{height:63.739157pt;}
.h7_c01195{height:64.948125pt;}
.h3_c01195{height:65.466501pt;}
.h6_c01195{height:69.093750pt;}
.ha_c01195{height:69.439391pt;}
.hb_c01195{height:71.512204pt;}
.h2_c01195{height:74.966891pt;}
.h8_c01195{height:78.766875pt;}
.h10_c01195{height:85.503516pt;}
.h5_c01195{height:88.279621pt;}
.h1_c01195{height:986.666667pt;}
.h0_c01195{height:1122.666667pt;}
.w1_c01195{width:689.333333pt;}
.w0_c01195{width:793.333333pt;}
.x0_c01195{left:0.000000pt;}
.x1_c01195{left:52.000000pt;}
.x20_c01195{left:71.972253pt;}
.x3_c01195{left:72.927053pt;}
.x3e_c01195{left:89.695453pt;}
.x42_c01195{left:119.078653pt;}
.x13_c01195{left:120.323853pt;}
.x4_c01195{left:121.278653pt;}
.x43_c01195{left:140.726653pt;}
.x2b_c01195{left:149.658653pt;}
.x3f_c01195{left:151.251453pt;}
.x38_c01195{left:158.625853pt;}
.x52_c01195{left:165.362253pt;}
.x21_c01195{left:169.062653pt;}
.x30_c01195{left:170.483853pt;}
.x14_c01195{left:172.521053pt;}
.x29_c01195{left:179.952653pt;}
.x39_c01195{left:189.073853pt;}
.x31_c01195{left:199.682253pt;}
.xe_c01195{left:200.782253pt;}
.x40_c01195{left:209.327053pt;}
.x44_c01195{left:219.235853pt;}
.x5_c01195{left:220.265453pt;}
.x3d_c01195{left:228.357053pt;}
.xf_c01195{left:229.298653pt;}
.x2a_c01195{left:230.706653pt;}
.x3a_c01195{left:238.490253pt;}
.x49_c01195{left:239.568253pt;}
.x6_c01195{left:248.944653pt;}
.x2c_c01195{left:259.583853pt;}
.x22_c01195{left:260.692653pt;}
.x4d_c01195{left:269.422253pt;}
.x10_c01195{left:278.657853pt;}
.x32_c01195{left:286.881453pt;}
.x23_c01195{left:289.376253pt;}
.x11_c01195{left:298.972653pt;}
.x7_c01195{left:307.913453pt;}
.x41_c01195{left:309.699853pt;}
.x57_c01195{left:317.501053pt;}
.x24_c01195{left:318.829853pt;}
.x4a_c01195{left:320.202653pt;}
.x45_c01195{left:327.898253pt;}
.x15_c01195{left:337.776253pt;}
.x35_c01195{left:339.364653pt;}
.x25_c01195{left:347.337453pt;}
.x12_c01195{left:350.734253pt;}
.x4b_c01195{left:357.901853pt;}
.x33_c01195{left:366.794253pt;}
.x16_c01195{left:368.541053pt;}
.x8_c01195{left:387.513853pt;}
.x2d_c01195{left:388.477453pt;}
.x53_c01195{left:395.579053pt;}
.x1b_c01195{left:406.733053pt;}
.x17_c01195{left:417.350253pt;}
.x9_c01195{left:418.252253pt;}
.x34_c01195{left:426.739853pt;}
.x4e_c01195{left:437.581453pt;}
.x18_c01195{left:446.161453pt;}
.x1c_c01195{left:458.155853pt;}
.x26_c01195{left:465.820653pt;}
.x54_c01195{left:474.858253pt;}
.x58_c01195{left:476.217853pt;}
.x2e_c01195{left:477.203453pt;}
.x4c_c01195{left:484.965053pt;}
.x3b_c01195{left:486.043053pt;}
.xa_c01195{left:496.233453pt;}
.x4f_c01195{left:514.044653pt;}
.xb_c01195{left:515.703453pt;}
.x55_c01195{left:517.054253pt;}
.xc_c01195{left:524.820253pt;}
.x27_c01195{left:525.995053pt;}
.x1d_c01195{left:535.085453pt;}
.x50_c01195{left:543.586253pt;}
.x2f_c01195{left:553.860253pt;}
.x19_c01195{left:563.681053pt;}
.x36_c01195{left:564.899853pt;}
.x3c_c01195{left:573.928653pt;}
.x46_c01195{left:583.670253pt;}
.x1e_c01195{left:585.302653pt;}
.x37_c01195{left:594.080653pt;}
.x28_c01195{left:602.541853pt;}
.xd_c01195{left:604.521853pt;}
.x1a_c01195{left:609.317853pt;}
.x47_c01195{left:612.569453pt;}
.x51_c01195{left:613.717853pt;}
.x2_c01195{left:621.950253pt;}
.x1f_c01195{left:633.148253pt;}
.x48_c01195{left:642.581853pt;}
.x56_c01195{left:644.139453pt;}
.x59_c01195{left:672.796653pt;}
.x5a_c01195{left:674.041853pt;}
}





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

.ir_c01196:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01196{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01196;src:url('chunks/assets/font_68542146314bd580390a3e93.woff2')format("woff");}.ff1_c01196{font-family:ff1_c01196;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01196;src:url('chunks/assets/font_a754ed3c8bfa63a4747c9a46.woff2')format("woff");}.ff2_c01196{font-family:ff2_c01196;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01196;src:url('chunks/assets/font_60d0fcaa8319f696d18d41f1.woff2')format("woff");}.ff3_c01196{font-family:ff3_c01196;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01196;src:url('chunks/assets/font_9c3a71b033c22621b557b1b8.woff2')format("woff");}.ff4_c01196{font-family:ff4_c01196;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01196;src:url('chunks/assets/font_0a1c8a79f756cbd263e5fef0.woff2')format("woff");}.ff5_c01196{font-family:ff5_c01196;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m82_c01196{transform:matrix(0.157407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157407,0.000000,0.000000,0.250000,0,0);}
.m60_c01196{transform:matrix(0.172256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172256,0.000000,0.000000,0.250000,0,0);}
.m2_c01196{transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);}
.m77_c01196{transform:matrix(0.184524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184524,0.000000,0.000000,0.250000,0,0);}
.m5e_c01196{transform:matrix(0.194935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194935,0.000000,0.000000,0.250000,0,0);}
.m96_c01196{transform:matrix(0.229987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229987,0.000000,0.000000,0.250000,0,0);}
.m6a_c01196{transform:matrix(0.238782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238782,0.000000,0.000000,0.250000,0,0);}
.m6c_c01196{transform:matrix(0.243573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243573,0.000000,0.000000,0.250000,0,0);}
.m0_c01196{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01196{transform:matrix(0.251961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251961,0.000000,0.000000,0.250000,0,0);}
.m50_c01196{transform:matrix(0.252652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252652,0.000000,0.000000,0.250000,0,0);}
.m8b_c01196{transform:matrix(0.253216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253216,0.000000,0.000000,0.250000,0,0);}
.m33_c01196{transform:matrix(0.253582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253582,0.000000,0.000000,0.250000,0,0);}
.m86_c01196{transform:matrix(0.254120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254120,0.000000,0.000000,0.250000,0,0);}
.m63_c01196{transform:matrix(0.255503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255503,0.000000,0.000000,0.250000,0,0);}
.m2d_c01196{transform:matrix(0.256963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256963,0.000000,0.000000,0.250000,0,0);}
.m1d_c01196{transform:matrix(0.257015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257015,0.000000,0.000000,0.250000,0,0);}
.m3a_c01196{transform:matrix(0.258239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258239,0.000000,0.000000,0.250000,0,0);}
.m87_c01196{transform:matrix(0.258519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258519,0.000000,0.000000,0.250000,0,0);}
.m12_c01196{transform:matrix(0.259809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259809,0.000000,0.000000,0.250000,0,0);}
.m2a_c01196{transform:matrix(0.261179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261179,0.000000,0.000000,0.250000,0,0);}
.m7d_c01196{transform:matrix(0.261255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261255,0.000000,0.000000,0.250000,0,0);}
.m44_c01196{transform:matrix(0.262610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262610,0.000000,0.000000,0.250000,0,0);}
.m2c_c01196{transform:matrix(0.262640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262640,0.000000,0.000000,0.250000,0,0);}
.m14_c01196{transform:matrix(0.264215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264215,0.000000,0.000000,0.250000,0,0);}
.m59_c01196{transform:matrix(0.265899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265899,0.000000,0.000000,0.250000,0,0);}
.m64_c01196{transform:matrix(0.267323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267323,0.000000,0.000000,0.250000,0,0);}
.m16_c01196{transform:matrix(0.267563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267563,0.000000,0.000000,0.250000,0,0);}
.mc_c01196{transform:matrix(0.268056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268056,0.000000,0.000000,0.250000,0,0);}
.m93_c01196{transform:matrix(0.268426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268426,0.000000,0.000000,0.250000,0,0);}
.m7a_c01196{transform:matrix(0.269027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269027,0.000000,0.000000,0.250000,0,0);}
.m88_c01196{transform:matrix(0.270249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270249,0.000000,0.000000,0.250000,0,0);}
.m9_c01196{transform:matrix(0.271003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271003,0.000000,0.000000,0.250000,0,0);}
.m17_c01196{transform:matrix(0.272967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272967,0.000000,0.000000,0.250000,0,0);}
.m57_c01196{transform:matrix(0.273107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273107,0.000000,0.000000,0.250000,0,0);}
.m5_c01196{transform:matrix(0.273387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273387,0.000000,0.000000,0.250000,0,0);}
.m58_c01196{transform:matrix(0.273674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273674,0.000000,0.000000,0.250000,0,0);}
.m74_c01196{transform:matrix(0.273721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273721,0.000000,0.000000,0.250000,0,0);}
.m47_c01196{transform:matrix(0.273997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273997,0.000000,0.000000,0.250000,0,0);}
.m6f_c01196{transform:matrix(0.274599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274599,0.000000,0.000000,0.250000,0,0);}
.m5d_c01196{transform:matrix(0.274911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274911,0.000000,0.000000,0.250000,0,0);}
.m80_c01196{transform:matrix(0.275843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275843,0.000000,0.000000,0.250000,0,0);}
.m7b_c01196{transform:matrix(0.276066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276066,0.000000,0.000000,0.250000,0,0);}
.m62_c01196{transform:matrix(0.276376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276376,0.000000,0.000000,0.250000,0,0);}
.m21_c01196{transform:matrix(0.276494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276494,0.000000,0.000000,0.250000,0,0);}
.m3d_c01196{transform:matrix(0.276706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276706,0.000000,0.000000,0.250000,0,0);}
.m78_c01196{transform:matrix(0.277691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277691,0.000000,0.000000,0.250000,0,0);}
.m94_c01196{transform:matrix(0.278247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278247,0.000000,0.000000,0.250000,0,0);}
.m29_c01196{transform:matrix(0.278890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278890,0.000000,0.000000,0.250000,0,0);}
.m81_c01196{transform:matrix(0.279546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279546,0.000000,0.000000,0.250000,0,0);}
.m6e_c01196{transform:matrix(0.279880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279880,0.000000,0.000000,0.250000,0,0);}
.m1e_c01196{transform:matrix(0.279976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279976,0.000000,0.000000,0.250000,0,0);}
.m61_c01196{transform:matrix(0.280454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280454,0.000000,0.000000,0.250000,0,0);}
.m1a_c01196{transform:matrix(0.280682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280682,0.000000,0.000000,0.250000,0,0);}
.m48_c01196{transform:matrix(0.281784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281784,0.000000,0.000000,0.250000,0,0);}
.m55_c01196{transform:matrix(0.283663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283663,0.000000,0.000000,0.250000,0,0);}
.m84_c01196{transform:matrix(0.283772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283772,0.000000,0.000000,0.250000,0,0);}
.m3_c01196{transform:matrix(0.283782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283782,0.000000,0.000000,0.250000,0,0);}
.m76_c01196{transform:matrix(0.284348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284348,0.000000,0.000000,0.250000,0,0);}
.m3c_c01196{transform:matrix(0.284610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284610,0.000000,0.000000,0.250000,0,0);}
.m1f_c01196{transform:matrix(0.284901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284901,0.000000,0.000000,0.250000,0,0);}
.m6d_c01196{transform:matrix(0.285243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285243,0.000000,0.000000,0.250000,0,0);}
.m8a_c01196{transform:matrix(0.286099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286099,0.000000,0.000000,0.250000,0,0);}
.m79_c01196{transform:matrix(0.286579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286579,0.000000,0.000000,0.250000,0,0);}
.m69_c01196{transform:matrix(0.286627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286627,0.000000,0.000000,0.250000,0,0);}
.m4f_c01196{transform:matrix(0.286864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286864,0.000000,0.000000,0.250000,0,0);}
.m27_c01196{transform:matrix(0.286872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286872,0.000000,0.000000,0.250000,0,0);}
.m65_c01196{transform:matrix(0.286905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286905,0.000000,0.000000,0.250000,0,0);}
.m3f_c01196{transform:matrix(0.286910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286910,0.000000,0.000000,0.250000,0,0);}
.m4a_c01196{transform:matrix(0.287076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287076,0.000000,0.000000,0.250000,0,0);}
.m8f_c01196{transform:matrix(0.287320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287320,0.000000,0.000000,0.250000,0,0);}
.m95_c01196{transform:matrix(0.287359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287359,0.000000,0.000000,0.250000,0,0);}
.m97_c01196{transform:matrix(0.287556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287556,0.000000,0.000000,0.250000,0,0);}
.m5c_c01196{transform:matrix(0.287723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287723,0.000000,0.000000,0.250000,0,0);}
.m32_c01196{transform:matrix(0.288286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288286,0.000000,0.000000,0.250000,0,0);}
.m51_c01196{transform:matrix(0.289134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289134,0.000000,0.000000,0.250000,0,0);}
.m38_c01196{transform:matrix(0.289381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289381,0.000000,0.000000,0.250000,0,0);}
.m37_c01196{transform:matrix(0.289720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289720,0.000000,0.000000,0.250000,0,0);}
.m45_c01196{transform:matrix(0.290288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290288,0.000000,0.000000,0.250000,0,0);}
.m89_c01196{transform:matrix(0.290804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290804,0.000000,0.000000,0.250000,0,0);}
.m2b_c01196{transform:matrix(0.290890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290890,0.000000,0.000000,0.250000,0,0);}
.m54_c01196{transform:matrix(0.291184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291184,0.000000,0.000000,0.250000,0,0);}
.m70_c01196{transform:matrix(0.291341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291341,0.000000,0.000000,0.250000,0,0);}
.m41_c01196{transform:matrix(0.292503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292503,0.000000,0.000000,0.250000,0,0);}
.m36_c01196{transform:matrix(0.293401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293401,0.000000,0.000000,0.250000,0,0);}
.m28_c01196{transform:matrix(0.293571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293571,0.000000,0.000000,0.250000,0,0);}
.m2f_c01196{transform:matrix(0.293656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293656,0.000000,0.000000,0.250000,0,0);}
.m39_c01196{transform:matrix(0.294120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294120,0.000000,0.000000,0.250000,0,0);}
.m75_c01196{transform:matrix(0.294267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294267,0.000000,0.000000,0.250000,0,0);}
.m71_c01196{transform:matrix(0.294292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294292,0.000000,0.000000,0.250000,0,0);}
.m8d_c01196{transform:matrix(0.296871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296871,0.000000,0.000000,0.250000,0,0);}
.m56_c01196{transform:matrix(0.297573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297573,0.000000,0.000000,0.250000,0,0);}
.m26_c01196{transform:matrix(0.297804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297804,0.000000,0.000000,0.250000,0,0);}
.m1_c01196{transform:matrix(0.298235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298235,0.000000,0.000000,0.250000,0,0);}
.m31_c01196{transform:matrix(0.299015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299015,0.000000,0.000000,0.250000,0,0);}
.m24_c01196{transform:matrix(0.299472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299472,0.000000,0.000000,0.250000,0,0);}
.m18_c01196{transform:matrix(0.300138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300138,0.000000,0.000000,0.250000,0,0);}
.m3e_c01196{transform:matrix(0.300424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300424,0.000000,0.000000,0.250000,0,0);}
.m7f_c01196{transform:matrix(0.300589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300589,0.000000,0.000000,0.250000,0,0);}
.m19_c01196{transform:matrix(0.301479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301479,0.000000,0.000000,0.250000,0,0);}
.m7_c01196{transform:matrix(0.302559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302559,0.000000,0.000000,0.250000,0,0);}
.m4e_c01196{transform:matrix(0.303261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303261,0.000000,0.000000,0.250000,0,0);}
.m30_c01196{transform:matrix(0.304012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304012,0.000000,0.000000,0.250000,0,0);}
.m11_c01196{transform:matrix(0.304496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304496,0.000000,0.000000,0.250000,0,0);}
.m23_c01196{transform:matrix(0.305156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305156,0.000000,0.000000,0.250000,0,0);}
.m42_c01196{transform:matrix(0.305754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305754,0.000000,0.000000,0.250000,0,0);}
.m72_c01196{transform:matrix(0.307183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307183,0.000000,0.000000,0.250000,0,0);}
.m4b_c01196{transform:matrix(0.307634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307634,0.000000,0.000000,0.250000,0,0);}
.m68_c01196{transform:matrix(0.308120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308120,0.000000,0.000000,0.250000,0,0);}
.m4d_c01196{transform:matrix(0.308306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308306,0.000000,0.000000,0.250000,0,0);}
.m91_c01196{transform:matrix(0.309270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309270,0.000000,0.000000,0.250000,0,0);}
.m90_c01196{transform:matrix(0.309311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309311,0.000000,0.000000,0.250000,0,0);}
.m46_c01196{transform:matrix(0.309483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309483,0.000000,0.000000,0.250000,0,0);}
.m2e_c01196{transform:matrix(0.309702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309702,0.000000,0.000000,0.250000,0,0);}
.m83_c01196{transform:matrix(0.312153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312153,0.000000,0.000000,0.250000,0,0);}
.m4c_c01196{transform:matrix(0.312301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312301,0.000000,0.000000,0.250000,0,0);}
.m66_c01196{transform:matrix(0.314064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314064,0.000000,0.000000,0.250000,0,0);}
.m5a_c01196{transform:matrix(0.315306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315306,0.000000,0.000000,0.250000,0,0);}
.m85_c01196{transform:matrix(0.317161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317161,0.000000,0.000000,0.250000,0,0);}
.m67_c01196{transform:matrix(0.317966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317966,0.000000,0.000000,0.250000,0,0);}
.m3b_c01196{transform:matrix(0.318517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318517,0.000000,0.000000,0.250000,0,0);}
.m73_c01196{transform:matrix(0.319242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319242,0.000000,0.000000,0.250000,0,0);}
.m10_c01196{transform:matrix(0.319640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319640,0.000000,0.000000,0.250000,0,0);}
.m22_c01196{transform:matrix(0.323074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323074,0.000000,0.000000,0.250000,0,0);}
.m7c_c01196{transform:matrix(0.323272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323272,0.000000,0.000000,0.250000,0,0);}
.md_c01196{transform:matrix(0.327240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327240,0.000000,0.000000,0.250000,0,0);}
.m25_c01196{transform:matrix(0.328840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328840,0.000000,0.000000,0.250000,0,0);}
.m6_c01196{transform:matrix(0.331732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331732,0.000000,0.000000,0.250000,0,0);}
.m1b_c01196{transform:matrix(0.332937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332937,0.000000,0.000000,0.250000,0,0);}
.m1c_c01196{transform:matrix(0.334374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334374,0.000000,0.000000,0.250000,0,0);}
.mb_c01196{transform:matrix(0.336678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336678,0.000000,0.000000,0.250000,0,0);}
.m6b_c01196{transform:matrix(0.337100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337100,0.000000,0.000000,0.250000,0,0);}
.m20_c01196{transform:matrix(0.337738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337738,0.000000,0.000000,0.250000,0,0);}
.m4_c01196{transform:matrix(0.342651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342651,0.000000,0.000000,0.250000,0,0);}
.me_c01196{transform:matrix(0.345343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345343,0.000000,0.000000,0.250000,0,0);}
.m13_c01196{transform:matrix(0.345405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345405,0.000000,0.000000,0.250000,0,0);}
.m15_c01196{transform:matrix(0.348239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348239,0.000000,0.000000,0.250000,0,0);}
.m43_c01196{transform:matrix(0.351045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351045,0.000000,0.000000,0.250000,0,0);}
.m5b_c01196{transform:matrix(0.351069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351069,0.000000,0.000000,0.250000,0,0);}
.m8_c01196{transform:matrix(0.351676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351676,0.000000,0.000000,0.250000,0,0);}
.m8e_c01196{transform:matrix(0.352210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352210,0.000000,0.000000,0.250000,0,0);}
.m7e_c01196{transform:matrix(0.355023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355023,0.000000,0.000000,0.250000,0,0);}
.m52_c01196{transform:matrix(0.359964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359964,0.000000,0.000000,0.250000,0,0);}
.m49_c01196{transform:matrix(0.362522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362522,0.000000,0.000000,0.250000,0,0);}
.m40_c01196{transform:matrix(0.370264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370264,0.000000,0.000000,0.250000,0,0);}
.m92_c01196{transform:matrix(0.393090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393090,0.000000,0.000000,0.250000,0,0);}
.mf_c01196{transform:matrix(0.397482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397482,0.000000,0.000000,0.250000,0,0);}
.m53_c01196{transform:matrix(0.403228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403228,0.000000,0.000000,0.250000,0,0);}
.ma_c01196{transform:matrix(0.403791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403791,0.000000,0.000000,0.250000,0,0);}
.m35_c01196{transform:matrix(0.406067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406067,0.000000,0.000000,0.250000,0,0);}
.m5f_c01196{transform:matrix(0.408907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408907,0.000000,0.000000,0.250000,0,0);}
.m8c_c01196{transform:matrix(0.411747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411747,0.000000,0.000000,0.250000,0,0);}
.v0_c01196{vertical-align:0.000000px;}
.lse_c01196{letter-spacing:-2.619540px;}
.lsa_c01196{letter-spacing:-1.288980px;}
.ls9_c01196{letter-spacing:-0.774774px;}
.ls12_c01196{letter-spacing:-0.613721px;}
.ls4_c01196{letter-spacing:0.000000px;}
.ls0_c01196{letter-spacing:0.613721px;}
.lsb_c01196{letter-spacing:0.853222px;}
.ls1_c01196{letter-spacing:1.451974px;}
.ls7_c01196{letter-spacing:1.702810px;}
.ls14_c01196{letter-spacing:2.237836px;}
.ls6_c01196{letter-spacing:3.375464px;}
.lsd_c01196{letter-spacing:3.390433px;}
.ls8_c01196{letter-spacing:3.472762px;}
.ls13_c01196{letter-spacing:3.504610px;}
.ls2_c01196{letter-spacing:3.742200px;}
.ls10_c01196{letter-spacing:3.752110px;}
.lsf_c01196{letter-spacing:3.821400px;}
.ls5_c01196{letter-spacing:4.276810px;}
.lsc_c01196{letter-spacing:58.449798px;}
.ls3_c01196{letter-spacing:59.875398px;}
.ls11_c01196{letter-spacing:64.152198px;}
.sc__c01196{text-shadow:none;}
.sc0_c01196{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01196{-webkit-text-stroke:0px transparent;}
.sc0_c01196{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01196{word-spacing:-20.948836px;}
.ws0_c01196{word-spacing:-18.711000px;}
.ws2_c01196{word-spacing:0.000000px;}
._3_c01196{margin-left:-5.239080px;}
._0_c01196{width:13.322232px;}
._1_c01196{width:14.968800px;}
._2_c01196{width:32.496869px;}
.fc0_c01196{color:transparent;}
.fs8_c01196{font-size:28.314000px;}
.fs3_c01196{font-size:34.056198px;}
.fs6_c01196{font-size:36.828000px;}
.fs4_c01196{font-size:37.818000px;}
.fs7_c01196{font-size:58.449798px;}
.fs1_c01196{font-size:59.875398px;}
.fsc_c01196{font-size:64.152198px;}
.fsb_c01196{font-size:68.112198px;}
.fsd_c01196{font-size:70.092198px;}
.fs0_c01196{font-size:74.844000px;}
.fsa_c01196{font-size:75.042198px;}
.fs9_c01196{font-size:76.428000px;}
.fs5_c01196{font-size:85.140000px;}
.fs2_c01196{font-size:85.536198px;}
.y0_c01196{bottom:0.000000px;}
.y1_c01196{bottom:76.500000px;}
.y1a_c01196{bottom:119.662335px;}
.y19_c01196{bottom:151.738335px;}
.y18_c01196{bottom:220.879935px;}
.y17_c01196{bottom:253.663785px;}
.y16_c01196{bottom:285.388335px;}
.y15_c01196{bottom:317.107935px;}
.y14_c01196{bottom:341.699535px;}
.y13_c01196{bottom:349.183935px;}
.y11_c01196{bottom:381.616335px;}
.y12_c01196{bottom:386.962335px;}
.y10_c01196{bottom:413.692335px;}
.yf_c01196{bottom:477.487935px;}
.ye_c01196{bottom:508.489785px;}
.yd_c01196{bottom:509.915385px;}
.yb_c01196{bottom:574.067385px;}
.yc_c01196{bottom:579.061935px;}
.ya_c01196{bottom:606.499785px;}
.y9_c01196{bottom:669.943935px;}
.y8_c01196{bottom:733.739535px;}
.y7_c01196{bottom:797.178735px;}
.y6_c01196{bottom:829.249785px;}
.y5_c01196{bottom:860.974335px;}
.y4_c01196{bottom:893.401785px;}
.y3_c01196{bottom:926.551935px;}
.y2_c01196{bottom:1075.165785px;}
.ha_c01196{height:29.530617px;}
.h5_c01196{height:35.519550px;}
.h8_c01196{height:36.144668px;}
.h9_c01196{height:38.927565px;}
.h6_c01196{height:39.442992px;}
.h3_c01196{height:39.877015px;}
.he_c01196{height:42.725364px;}
.hf_c01196{height:68.791659px;}
.hd_c01196{height:71.038894px;}
.h2_c01196{height:73.455293px;}
.hb_c01196{height:74.972584px;}
.hc_c01196{height:75.628465px;}
.h4_c01196{height:83.949101px;}
.h7_c01196{height:88.798359px;}
.h1_c01196{height:1110.000000px;}
.h0_c01196{height:1263.000000px;}
.w1_c01196{width:775.500000px;}
.w0_c01196{width:892.500000px;}
.x0_c01196{left:0.000000px;}
.x1_c01196{left:58.500000px;}
.x62_c01196{left:78.899685px;}
.x2b_c01196{left:80.320335px;}
.x59_c01196{left:132.107235px;}
.x2f_c01196{left:133.582335px;}
.x1f_c01196{left:134.676285px;}
.x3_c01196{left:135.864285px;}
.x60_c01196{left:146.110785px;}
.x16_c01196{left:148.041285px;}
.x20_c01196{left:157.540335px;}
.x53_c01196{left:166.673085px;}
.xd_c01196{left:168.167985px;}
.x34_c01196{left:170.464785px;}
.x2c_c01196{left:180.077685px;}
.x35_c01196{left:181.542885px;}
.x30_c01196{left:188.413485px;}
.x4c_c01196{left:190.566735px;}
.x17_c01196{left:192.838785px;}
.x36_c01196{left:201.837885px;}
.x63_c01196{left:211.376535px;}
.x5a_c01196{left:221.608185px;}
.x4_c01196{left:224.167335px;}
.x37_c01196{left:232.943685px;}
.x27_c01196{left:246.283935px;}
.x5e_c01196{left:247.293735px;}
.x42_c01196{left:255.832485px;}
.x4d_c01196{left:257.089785px;}
.x21_c01196{left:258.366885px;}
.x31_c01196{left:266.118585px;}
.x38_c01196{left:267.504585px;}
.x45_c01196{left:270.108285px;}
.x3d_c01196{left:277.954035px;}
.x2d_c01196{left:279.429135px;}
.xe_c01196{left:282.013035px;}
.x54_c01196{left:290.289435px;}
.x18_c01196{left:291.680385px;}
.x61_c01196{left:299.506335px;}
.x22_c01196{left:302.011035px;}
.x52_c01196{left:306.317535px;}
.x6a_c01196{left:310.361685px;}
.x46_c01196{left:312.217935px;}
.x5b_c01196{left:323.692035px;}
.x3e_c01196{left:326.404635px;}
.x64_c01196{left:332.800035px;}
.x5_c01196{left:335.839335px;}
.x32_c01196{left:344.180085px;}
.x55_c01196{left:345.496785px;}
.x23_c01196{left:346.853085px;}
.x19_c01196{left:356.708535px;}
.x39_c01196{left:366.925335px;}
.x6_c01196{left:368.276685px;}
.x28_c01196{left:369.335985px;}
.x47_c01196{left:378.082635px;}
.x4e_c01196{left:380.057685px;}
.x65_c01196{left:388.982535px;}
.xf_c01196{left:391.071435px;}
.x2e_c01196{left:401.154585px;}
.x24_c01196{left:402.466335px;}
.x7_c01196{left:413.207835px;}
.x43_c01196{left:423.439485px;}
.x1a_c01196{left:424.592835px;}
.x29_c01196{left:435.294735px;}
.x4f_c01196{left:445.803585px;}
.x33_c01196{left:448.535985px;}
.x48_c01196{left:456.134235px;}
.x8_c01196{left:457.317285px;}
.x1b_c01196{left:458.831985px;}
.x56_c01196{left:467.880585px;}
.x3f_c01196{left:469.053735px;}
.x5c_c01196{left:477.503385px;}
.x66_c01196{left:478.760685px;}
.x10_c01196{left:480.126885px;}
.x25_c01196{left:489.319035px;}
.x3a_c01196{left:491.596035px;}
.x50_c01196{left:499.654635px;}
.x6b_c01196{left:508.708185px;}
.x1c_c01196{left:511.737585px;}
.x3b_c01196{left:522.068235px;}
.x57_c01196{left:532.443435px;}
.x11_c01196{left:534.324435px;}
.x9_c01196{left:535.814385px;}
.x6c_c01196{left:543.100785px;}
.x51_c01196{left:544.165035px;}
.xa_c01196{left:555.253035px;}
.x40_c01196{left:557.143935px;}
.x2a_c01196{left:566.261835px;}
.x12_c01196{left:567.850785px;}
.x3c_c01196{left:588.353685px;}
.x1d_c01196{left:589.962435px;}
.x67_c01196{left:598.342785px;}
.xb_c01196{left:600.471285px;}
.x49_c01196{left:602.768085px;}
.x13_c01196{left:612.059235px;}
.x4a_c01196{left:613.920435px;}
.x1e_c01196{left:621.860235px;}
.x58_c01196{left:632.473035px;}
.x26_c01196{left:634.487685px;}
.x41_c01196{left:655.648935px;}
.x5f_c01196{left:664.806435px;}
.x14_c01196{left:666.053835px;}
.x4b_c01196{left:667.335885px;}
.x68_c01196{left:677.245785px;}
.x5d_c01196{left:686.299335px;}
.x44_c01196{left:689.239635px;}
.x2_c01196{left:694.387635px;}
.xc_c01196{left:701.183985px;}
.x69_c01196{left:710.346435px;}
.x15_c01196{left:712.168035px;}
@media print{
.v0_c01196{vertical-align:0.000000pt;}
.lse_c01196{letter-spacing:-2.328480pt;}
.lsa_c01196{letter-spacing:-1.145760pt;}
.ls9_c01196{letter-spacing:-0.688688pt;}
.ls12_c01196{letter-spacing:-0.545530pt;}
.ls4_c01196{letter-spacing:0.000000pt;}
.ls0_c01196{letter-spacing:0.545530pt;}
.lsb_c01196{letter-spacing:0.758419pt;}
.ls1_c01196{letter-spacing:1.290643pt;}
.ls7_c01196{letter-spacing:1.513609pt;}
.ls14_c01196{letter-spacing:1.989187pt;}
.ls6_c01196{letter-spacing:3.000413pt;}
.lsd_c01196{letter-spacing:3.013718pt;}
.ls8_c01196{letter-spacing:3.086899pt;}
.ls13_c01196{letter-spacing:3.115209pt;}
.ls2_c01196{letter-spacing:3.326400pt;}
.ls10_c01196{letter-spacing:3.335209pt;}
.lsf_c01196{letter-spacing:3.396800pt;}
.ls5_c01196{letter-spacing:3.801609pt;}
.lsc_c01196{letter-spacing:51.955376pt;}
.ls3_c01196{letter-spacing:53.222576pt;}
.ls11_c01196{letter-spacing:57.024176pt;}
.ws1_c01196{word-spacing:-18.621187pt;}
.ws0_c01196{word-spacing:-16.632000pt;}
.ws2_c01196{word-spacing:0.000000pt;}
._3_c01196{margin-left:-4.656960pt;}
._0_c01196{width:11.841984pt;}
._1_c01196{width:13.305600pt;}
._2_c01196{width:28.886106pt;}
.fs8_c01196{font-size:25.168000pt;}
.fs3_c01196{font-size:30.272176pt;}
.fs6_c01196{font-size:32.736000pt;}
.fs4_c01196{font-size:33.616000pt;}
.fs7_c01196{font-size:51.955376pt;}
.fs1_c01196{font-size:53.222576pt;}
.fsc_c01196{font-size:57.024176pt;}
.fsb_c01196{font-size:60.544176pt;}
.fsd_c01196{font-size:62.304176pt;}
.fs0_c01196{font-size:66.528000pt;}
.fsa_c01196{font-size:66.704176pt;}
.fs9_c01196{font-size:67.936000pt;}
.fs5_c01196{font-size:75.680000pt;}
.fs2_c01196{font-size:76.032176pt;}
.y0_c01196{bottom:0.000000pt;}
.y1_c01196{bottom:68.000000pt;}
.y1a_c01196{bottom:106.366520pt;}
.y19_c01196{bottom:134.878520pt;}
.y18_c01196{bottom:196.337720pt;}
.y17_c01196{bottom:225.478920pt;}
.y16_c01196{bottom:253.678520pt;}
.y15_c01196{bottom:281.873720pt;}
.y14_c01196{bottom:303.732920pt;}
.y13_c01196{bottom:310.385720pt;}
.y11_c01196{bottom:339.214520pt;}
.y12_c01196{bottom:343.966520pt;}
.y10_c01196{bottom:367.726520pt;}
.yf_c01196{bottom:424.433720pt;}
.ye_c01196{bottom:451.990920pt;}
.yd_c01196{bottom:453.258120pt;}
.yb_c01196{bottom:510.282120pt;}
.yc_c01196{bottom:514.721720pt;}
.ya_c01196{bottom:539.110920pt;}
.y9_c01196{bottom:595.505720pt;}
.y8_c01196{bottom:652.212920pt;}
.y7_c01196{bottom:708.603320pt;}
.y6_c01196{bottom:737.110920pt;}
.y5_c01196{bottom:765.310520pt;}
.y4_c01196{bottom:794.134920pt;}
.y3_c01196{bottom:823.601720pt;}
.y2_c01196{bottom:955.702920pt;}
.ha_c01196{height:26.249438pt;}
.h5_c01196{height:31.572934pt;}
.h8_c01196{height:32.128594pt;}
.h9_c01196{height:34.602280pt;}
.h6_c01196{height:35.060438pt;}
.h3_c01196{height:35.446236pt;}
.he_c01196{height:37.978101pt;}
.hf_c01196{height:61.148141pt;}
.hd_c01196{height:63.145684pt;}
.h2_c01196{height:65.293594pt;}
.hb_c01196{height:66.642297pt;}
.hc_c01196{height:67.225302pt;}
.h4_c01196{height:74.621423pt;}
.h7_c01196{height:78.931875pt;}
.h1_c01196{height:986.666667pt;}
.h0_c01196{height:1122.666667pt;}
.w1_c01196{width:689.333333pt;}
.w0_c01196{width:793.333333pt;}
.x0_c01196{left:0.000000pt;}
.x1_c01196{left:52.000000pt;}
.x62_c01196{left:70.133053pt;}
.x2b_c01196{left:71.395853pt;}
.x59_c01196{left:117.428653pt;}
.x2f_c01196{left:118.739853pt;}
.x1f_c01196{left:119.712253pt;}
.x3_c01196{left:120.768253pt;}
.x60_c01196{left:129.876253pt;}
.x16_c01196{left:131.592253pt;}
.x20_c01196{left:140.035853pt;}
.x53_c01196{left:148.153853pt;}
.xd_c01196{left:149.482653pt;}
.x34_c01196{left:151.524253pt;}
.x2c_c01196{left:160.069053pt;}
.x35_c01196{left:161.371453pt;}
.x30_c01196{left:167.478653pt;}
.x4c_c01196{left:169.392653pt;}
.x17_c01196{left:171.412253pt;}
.x36_c01196{left:179.411453pt;}
.x63_c01196{left:187.890253pt;}
.x5a_c01196{left:196.985053pt;}
.x4_c01196{left:199.259853pt;}
.x37_c01196{left:207.061053pt;}
.x27_c01196{left:218.919053pt;}
.x5e_c01196{left:219.816653pt;}
.x42_c01196{left:227.406653pt;}
.x4d_c01196{left:228.524253pt;}
.x21_c01196{left:229.659453pt;}
.x31_c01196{left:236.549853pt;}
.x38_c01196{left:237.781853pt;}
.x45_c01196{left:240.096253pt;}
.x3d_c01196{left:247.070253pt;}
.x2d_c01196{left:248.381453pt;}
.xe_c01196{left:250.678253pt;}
.x54_c01196{left:258.035053pt;}
.x18_c01196{left:259.271453pt;}
.x61_c01196{left:266.227853pt;}
.x22_c01196{left:268.454253pt;}
.x52_c01196{left:272.282253pt;}
.x6a_c01196{left:275.877053pt;}
.x46_c01196{left:277.527053pt;}
.x5b_c01196{left:287.726253pt;}
.x3e_c01196{left:290.137453pt;}
.x64_c01196{left:295.822253pt;}
.x5_c01196{left:298.523853pt;}
.x32_c01196{left:305.937853pt;}
.x55_c01196{left:307.108253pt;}
.x23_c01196{left:308.313853pt;}
.x19_c01196{left:317.074253pt;}
.x39_c01196{left:326.155853pt;}
.x6_c01196{left:327.357053pt;}
.x28_c01196{left:328.298653pt;}
.x47_c01196{left:336.073453pt;}
.x4e_c01196{left:337.829053pt;}
.x65_c01196{left:345.762253pt;}
.xf_c01196{left:347.619053pt;}
.x2e_c01196{left:356.581853pt;}
.x24_c01196{left:357.747853pt;}
.x7_c01196{left:367.295853pt;}
.x43_c01196{left:376.390653pt;}
.x1a_c01196{left:377.415853pt;}
.x29_c01196{left:386.928653pt;}
.x4f_c01196{left:396.269853pt;}
.x33_c01196{left:398.698653pt;}
.x48_c01196{left:405.452653pt;}
.x8_c01196{left:406.504253pt;}
.x1b_c01196{left:407.850653pt;}
.x56_c01196{left:415.893853pt;}
.x3f_c01196{left:416.936653pt;}
.x5c_c01196{left:424.447453pt;}
.x66_c01196{left:425.565053pt;}
.x10_c01196{left:426.779453pt;}
.x25_c01196{left:434.950253pt;}
.x3a_c01196{left:436.974253pt;}
.x50_c01196{left:444.137453pt;}
.x6b_c01196{left:452.185053pt;}
.x1c_c01196{left:454.877853pt;}
.x3b_c01196{left:464.060653pt;}
.x57_c01196{left:473.283053pt;}
.x11_c01196{left:474.955053pt;}
.x9_c01196{left:476.279453pt;}
.x6c_c01196{left:482.756253pt;}
.x51_c01196{left:483.702253pt;}
.xa_c01196{left:493.558253pt;}
.x40_c01196{left:495.239053pt;}
.x2a_c01196{left:503.343853pt;}
.x12_c01196{left:504.756253pt;}
.x3c_c01196{left:522.981053pt;}
.x1d_c01196{left:524.411053pt;}
.x67_c01196{left:531.860253pt;}
.xb_c01196{left:533.752253pt;}
.x49_c01196{left:535.793853pt;}
.x13_c01196{left:544.052653pt;}
.x4a_c01196{left:545.707053pt;}
.x1e_c01196{left:552.764653pt;}
.x58_c01196{left:562.198253pt;}
.x26_c01196{left:563.989053pt;}
.x41_c01196{left:582.799053pt;}
.x5f_c01196{left:590.939053pt;}
.x14_c01196{left:592.047853pt;}
.x4b_c01196{left:593.187453pt;}
.x68_c01196{left:601.996253pt;}
.x5d_c01196{left:610.043853pt;}
.x44_c01196{left:612.657453pt;}
.x2_c01196{left:617.233453pt;}
.xc_c01196{left:623.274653pt;}
.x69_c01196{left:631.419053pt;}
.x15_c01196{left:633.038253pt;}
}





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

.ir_c01197:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01197{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01197;src:url('chunks/assets/font_2371b3e3c73e64dbfa839656.woff2')format("woff");}.ff1_c01197{font-family:ff1_c01197;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01197;src:url('chunks/assets/font_0ce80c166523eaae996abd9e.woff2')format("woff");}.ff2_c01197{font-family:ff2_c01197;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01197;src:url('chunks/assets/font_6ee2f50c1940590ad21217fd.woff2')format("woff");}.ff3_c01197{font-family:ff3_c01197;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01197;src:url('chunks/assets/font_7f15953fa8010f18c45c7ddc.woff2')format("woff");}.ff4_c01197{font-family:ff4_c01197;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01197;src:url('chunks/assets/font_fcdb78efff66245dfaeae681.woff2')format("woff");}.ff5_c01197{font-family:ff5_c01197;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01197;src:url('chunks/assets/font_f31aac48d61f44939a208352.woff2')format("woff");}.ff6_c01197{font-family:ff6_c01197;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m6b_c01197{transform:matrix(0.138713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138713,0.000000,0.000000,0.250000,0,0);}
.m33_c01197{transform:matrix(0.179704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179704,0.000000,0.000000,0.250000,0,0);}
.m47_c01197{transform:matrix(0.188604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188604,0.000000,0.000000,0.250000,0,0);}
.m32_c01197{transform:matrix(0.191860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191860,0.000000,0.000000,0.250000,0,0);}
.m2f_c01197{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m16_c01197{transform:matrix(0.239451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239451,0.000000,0.000000,0.250000,0,0);}
.m76_c01197{transform:matrix(0.248233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248233,0.000000,0.000000,0.250000,0,0);}
.m46_c01197{transform:matrix(0.248297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248297,0.000000,0.000000,0.250000,0,0);}
.m1_c01197{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m51_c01197{transform:matrix(0.251095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251095,0.000000,0.000000,0.250000,0,0);}
.m5b_c01197{transform:matrix(0.252827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252827,0.000000,0.000000,0.250000,0,0);}
.m4e_c01197{transform:matrix(0.253276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253276,0.000000,0.000000,0.250000,0,0);}
.m28_c01197{transform:matrix(0.257582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257582,0.000000,0.000000,0.250000,0,0);}
.m3c_c01197{transform:matrix(0.258208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258208,0.000000,0.000000,0.250000,0,0);}
.m63_c01197{transform:matrix(0.258752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258752,0.000000,0.000000,0.250000,0,0);}
.m6_c01197{transform:matrix(0.259042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259042,0.000000,0.000000,0.250000,0,0);}
.m4b_c01197{transform:matrix(0.262221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262221,0.000000,0.000000,0.250000,0,0);}
.m62_c01197{transform:matrix(0.263999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263999,0.000000,0.000000,0.250000,0,0);}
.m1a_c01197{transform:matrix(0.264170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264170,0.000000,0.000000,0.250000,0,0);}
.m67_c01197{transform:matrix(0.265460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265460,0.000000,0.000000,0.250000,0,0);}
.m40_c01197{transform:matrix(0.269854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269854,0.000000,0.000000,0.250000,0,0);}
.m3f_c01197{transform:matrix(0.269988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269988,0.000000,0.000000,0.250000,0,0);}
.m18_c01197{transform:matrix(0.270287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270287,0.000000,0.000000,0.250000,0,0);}
.m35_c01197{transform:matrix(0.272324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272324,0.000000,0.000000,0.250000,0,0);}
.m37_c01197{transform:matrix(0.272394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272394,0.000000,0.000000,0.250000,0,0);}
.m1e_c01197{transform:matrix(0.272665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272665,0.000000,0.000000,0.250000,0,0);}
.m2c_c01197{transform:matrix(0.273702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273702,0.000000,0.000000,0.250000,0,0);}
.m14_c01197{transform:matrix(0.274306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274306,0.000000,0.000000,0.250000,0,0);}
.m2b_c01197{transform:matrix(0.274651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274651,0.000000,0.000000,0.250000,0,0);}
.m24_c01197{transform:matrix(0.275114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275114,0.000000,0.000000,0.250000,0,0);}
.m55_c01197{transform:matrix(0.275340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275340,0.000000,0.000000,0.250000,0,0);}
.m6f_c01197{transform:matrix(0.275764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275764,0.000000,0.000000,0.250000,0,0);}
.m2d_c01197{transform:matrix(0.276986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276986,0.000000,0.000000,0.250000,0,0);}
.m20_c01197{transform:matrix(0.277512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277512,0.000000,0.000000,0.250000,0,0);}
.mb_c01197{transform:matrix(0.277548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277548,0.000000,0.000000,0.250000,0,0);}
.m52_c01197{transform:matrix(0.278008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278008,0.000000,0.000000,0.250000,0,0);}
.m3_c01197{transform:matrix(0.278154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278154,0.000000,0.000000,0.250000,0,0);}
.m78_c01197{transform:matrix(0.280220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280220,0.000000,0.000000,0.250000,0,0);}
.m58_c01197{transform:matrix(0.281039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281039,0.000000,0.000000,0.250000,0,0);}
.m2a_c01197{transform:matrix(0.282188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282188,0.000000,0.000000,0.250000,0,0);}
.m1c_c01197{transform:matrix(0.283033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283033,0.000000,0.000000,0.250000,0,0);}
.ma_c01197{transform:matrix(0.283410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283410,0.000000,0.000000,0.250000,0,0);}
.me_c01197{transform:matrix(0.285026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285026,0.000000,0.000000,0.250000,0,0);}
.m2_c01197{transform:matrix(0.285187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285187,0.000000,0.000000,0.250000,0,0);}
.m5f_c01197{transform:matrix(0.285506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285506,0.000000,0.000000,0.250000,0,0);}
.m3e_c01197{transform:matrix(0.285824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285824,0.000000,0.000000,0.250000,0,0);}
.m4a_c01197{transform:matrix(0.286090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286090,0.000000,0.000000,0.250000,0,0);}
.m49_c01197{transform:matrix(0.286117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286117,0.000000,0.000000,0.250000,0,0);}
.m38_c01197{transform:matrix(0.286862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286862,0.000000,0.000000,0.250000,0,0);}
.m2e_c01197{transform:matrix(0.287524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287524,0.000000,0.000000,0.250000,0,0);}
.m43_c01197{transform:matrix(0.288337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288337,0.000000,0.000000,0.250000,0,0);}
.m22_c01197{transform:matrix(0.288352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288352,0.000000,0.000000,0.250000,0,0);}
.m0_c01197{transform:matrix(0.288500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01197{transform:matrix(0.288617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288617,0.000000,0.000000,0.250000,0,0);}
.m6d_c01197{transform:matrix(0.289521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289521,0.000000,0.000000,0.250000,0,0);}
.mc_c01197{transform:matrix(0.289648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289648,0.000000,0.000000,0.250000,0,0);}
.m69_c01197{transform:matrix(0.289801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289801,0.000000,0.000000,0.250000,0,0);}
.m7_c01197{transform:matrix(0.290652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290652,0.000000,0.000000,0.250000,0,0);}
.m39_c01197{transform:matrix(0.291518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291518,0.000000,0.000000,0.250000,0,0);}
.m23_c01197{transform:matrix(0.292046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292046,0.000000,0.000000,0.250000,0,0);}
.m3a_c01197{transform:matrix(0.292893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292893,0.000000,0.000000,0.250000,0,0);}
.m42_c01197{transform:matrix(0.293069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293069,0.000000,0.000000,0.250000,0,0);}
.m5_c01197{transform:matrix(0.295834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295834,0.000000,0.000000,0.250000,0,0);}
.m15_c01197{transform:matrix(0.296834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296834,0.000000,0.000000,0.250000,0,0);}
.m3b_c01197{transform:matrix(0.297288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297288,0.000000,0.000000,0.250000,0,0);}
.m68_c01197{transform:matrix(0.298100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298100,0.000000,0.000000,0.250000,0,0);}
.m5c_c01197{transform:matrix(0.299064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299064,0.000000,0.000000,0.250000,0,0);}
.m70_c01197{transform:matrix(0.299346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299346,0.000000,0.000000,0.250000,0,0);}
.m25_c01197{transform:matrix(0.299499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299499,0.000000,0.000000,0.250000,0,0);}
.m5d_c01197{transform:matrix(0.300169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300169,0.000000,0.000000,0.250000,0,0);}
.m57_c01197{transform:matrix(0.301456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301456,0.000000,0.000000,0.250000,0,0);}
.m59_c01197{transform:matrix(0.301662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301662,0.000000,0.000000,0.250000,0,0);}
.m79_c01197{transform:matrix(0.302460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302460,0.000000,0.000000,0.250000,0,0);}
.m31_c01197{transform:matrix(0.303107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303107,0.000000,0.000000,0.250000,0,0);}
.m5a_c01197{transform:matrix(0.303465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303465,0.000000,0.000000,0.250000,0,0);}
.m19_c01197{transform:matrix(0.304839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304839,0.000000,0.000000,0.250000,0,0);}
.m21_c01197{transform:matrix(0.304888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304888,0.000000,0.000000,0.250000,0,0);}
.m5e_c01197{transform:matrix(0.306183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306183,0.000000,0.000000,0.250000,0,0);}
.m72_c01197{transform:matrix(0.309980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309980,0.000000,0.000000,0.250000,0,0);}
.m1f_c01197{transform:matrix(0.310741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310741,0.000000,0.000000,0.250000,0,0);}
.m41_c01197{transform:matrix(0.310960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310960,0.000000,0.000000,0.250000,0,0);}
.m56_c01197{transform:matrix(0.311318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311318,0.000000,0.000000,0.250000,0,0);}
.m75_c01197{transform:matrix(0.311485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311485,0.000000,0.000000,0.250000,0,0);}
.mf_c01197{transform:matrix(0.311541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311541,0.000000,0.000000,0.250000,0,0);}
.m71_c01197{transform:matrix(0.312324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312324,0.000000,0.000000,0.250000,0,0);}
.m10_c01197{transform:matrix(0.312477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312477,0.000000,0.000000,0.250000,0,0);}
.m66_c01197{transform:matrix(0.312665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312665,0.000000,0.000000,0.250000,0,0);}
.m61_c01197{transform:matrix(0.313402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313402,0.000000,0.000000,0.250000,0,0);}
.m45_c01197{transform:matrix(0.313832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313832,0.000000,0.000000,0.250000,0,0);}
.m54_c01197{transform:matrix(0.315173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315173,0.000000,0.000000,0.250000,0,0);}
.m30_c01197{transform:matrix(0.315695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315695,0.000000,0.000000,0.250000,0,0);}
.m36_c01197{transform:matrix(0.316242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316242,0.000000,0.000000,0.250000,0,0);}
.m29_c01197{transform:matrix(0.317416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317416,0.000000,0.000000,0.250000,0,0);}
.m26_c01197{transform:matrix(0.317520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317520,0.000000,0.000000,0.250000,0,0);}
.m53_c01197{transform:matrix(0.317830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317830,0.000000,0.000000,0.250000,0,0);}
.m73_c01197{transform:matrix(0.319538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319538,0.000000,0.000000,0.250000,0,0);}
.m17_c01197{transform:matrix(0.321175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321175,0.000000,0.000000,0.250000,0,0);}
.m8_c01197{transform:matrix(0.321254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321254,0.000000,0.000000,0.250000,0,0);}
.m6c_c01197{transform:matrix(0.321363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321363,0.000000,0.000000,0.250000,0,0);}
.md_c01197{transform:matrix(0.322104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322104,0.000000,0.000000,0.250000,0,0);}
.m77_c01197{transform:matrix(0.325490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325490,0.000000,0.000000,0.250000,0,0);}
.m50_c01197{transform:matrix(0.327647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327647,0.000000,0.000000,0.250000,0,0);}
.m6a_c01197{transform:matrix(0.327838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327838,0.000000,0.000000,0.250000,0,0);}
.m44_c01197{transform:matrix(0.328209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328209,0.000000,0.000000,0.250000,0,0);}
.m12_c01197{transform:matrix(0.328935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328935,0.000000,0.000000,0.250000,0,0);}
.m4c_c01197{transform:matrix(0.328997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328997,0.000000,0.000000,0.250000,0,0);}
.m1b_c01197{transform:matrix(0.329785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329785,0.000000,0.000000,0.250000,0,0);}
.m27_c01197{transform:matrix(0.329877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329877,0.000000,0.000000,0.250000,0,0);}
.m64_c01197{transform:matrix(0.331293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331293,0.000000,0.000000,0.250000,0,0);}
.m48_c01197{transform:matrix(0.341670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341670,0.000000,0.000000,0.250000,0,0);}
.m13_c01197{transform:matrix(0.344431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344431,0.000000,0.000000,0.250000,0,0);}
.m4d_c01197{transform:matrix(0.345552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345552,0.000000,0.000000,0.250000,0,0);}
.m74_c01197{transform:matrix(0.346129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346129,0.000000,0.000000,0.250000,0,0);}
.m4_c01197{transform:matrix(0.348169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348169,0.000000,0.000000,0.250000,0,0);}
.m60_c01197{transform:matrix(0.349582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349582,0.000000,0.000000,0.250000,0,0);}
.m11_c01197{transform:matrix(0.354500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354500,0.000000,0.000000,0.250000,0,0);}
.m34_c01197{transform:matrix(0.354684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354684,0.000000,0.000000,0.250000,0,0);}
.m9_c01197{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);}
.m4f_c01197{transform:matrix(0.369108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369108,0.000000,0.000000,0.250000,0,0);}
.m65_c01197{transform:matrix(0.396432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396432,0.000000,0.000000,0.250000,0,0);}
.m1d_c01197{transform:matrix(0.402725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402725,0.000000,0.000000,0.250000,0,0);}
.m6e_c01197{transform:matrix(0.409017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409017,0.000000,0.000000,0.250000,0,0);}
.v0_c01197{vertical-align:0.000000px;}
.v1_c01197{vertical-align:7.147800px;}
.lsc_c01197{letter-spacing:-3.465000px;}
.ls8_c01197{letter-spacing:-3.028417px;}
.ls16_c01197{letter-spacing:-2.690965px;}
.ls10_c01197{letter-spacing:-2.626477px;}
.ls4_c01197{letter-spacing:-2.431386px;}
.lsa_c01197{letter-spacing:-2.378838px;}
.ls12_c01197{letter-spacing:-1.981450px;}
.ls14_c01197{letter-spacing:-1.263282px;}
.ls3_c01197{letter-spacing:-0.891477px;}
.ls9_c01197{letter-spacing:-0.068785px;}
.ls7_c01197{letter-spacing:0.000000px;}
.ls15_c01197{letter-spacing:0.712901px;}
.ls6_c01197{letter-spacing:1.930500px;}
.ls13_c01197{letter-spacing:2.960979px;}
.ls11_c01197{letter-spacing:3.151772px;}
.lse_c01197{letter-spacing:3.316500px;}
.lsb_c01197{letter-spacing:3.643200px;}
.lsf_c01197{letter-spacing:3.682810px;}
.ls2_c01197{letter-spacing:3.752110px;}
.ls5_c01197{letter-spacing:4.326310px;}
.ls0_c01197{letter-spacing:13.463901px;}
.ls1_c01197{letter-spacing:16.577352px;}
.lsd_c01197{letter-spacing:61.300998px;}
.sc__c01197{text-shadow:none;}
.sc0_c01197{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01197{-webkit-text-stroke:0px transparent;}
.sc0_c01197{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01197{word-spacing:-18.760550px;}
.ws1_c01197{word-spacing:0.000000px;}
._0_c01197{margin-left:-12.757096px;}
._2_c01197{width:84.753559px;}
._1_c01197{width:89.051828px;}
.fc0_c01197{color:transparent;}
.fsb_c01197{font-size:22.176000px;}
.fs3_c01197{font-size:38.610000px;}
.fs4_c01197{font-size:39.204000px;}
.fsc_c01197{font-size:53.658000px;}
.fs8_c01197{font-size:61.300998px;}
.fsd_c01197{font-size:64.548000px;}
.fs9_c01197{font-size:66.330000px;}
.fs6_c01197{font-size:72.864000px;}
.fsa_c01197{font-size:73.656198px;}
.fs0_c01197{font-size:75.042198px;}
.fs5_c01197{font-size:76.428000px;}
.fs1_c01197{font-size:79.596198px;}
.fs2_c01197{font-size:86.526198px;}
.fs7_c01197{font-size:99.000000px;}
.y0_c01197{bottom:0.000000px;}
.y18_c01197{bottom:32.695785px;}
.y1_c01197{bottom:76.500000px;}
.y17_c01197{bottom:162.073935px;}
.y16_c01197{bottom:227.646585px;}
.y15_c01197{bottom:259.727535px;}
.y14_c01197{bottom:290.734335px;}
.y13_c01197{bottom:323.161785px;}
.y12_c01197{bottom:343.481535px;}
.y11_c01197{bottom:386.957385px;}
.y10_c01197{bottom:452.534985px;}
.yf_c01197{bottom:515.979135px;}
.ye_c01197{bottom:549.119385px;}
.yd_c01197{bottom:581.200335px;}
.yc_c01197{bottom:645.347385px;}
.yb_c01197{bottom:677.066985px;}
.ya_c01197{bottom:710.217135px;}
.y9_c01197{bottom:743.005935px;}
.y8_c01197{bottom:774.012735px;}
.y7_c01197{bottom:806.083785px;}
.y6_c01197{bottom:838.516185px;}
.y4_c01197{bottom:870.240735px;}
.y5_c01197{bottom:876.299535px;}
.y3_c01197{bottom:932.610735px;}
.y2_c01197{bottom:1080.155385px;}
.hd_c01197{height:23.128875px;}
.h6_c01197{height:38.476582px;}
.h5_c01197{height:40.269023px;}
.ha_c01197{height:40.826465px;}
.he_c01197{height:67.321547px;}
.hb_c01197{height:69.180117px;}
.h8_c01197{height:71.512031px;}
.hc_c01197{height:72.253565px;}
.h2_c01197{height:73.649813px;}
.h3_c01197{height:78.119315px;}
.h7_c01197{height:79.712016px;}
.h4_c01197{height:84.920731px;}
.h9_c01197{height:97.163086px;}
.h1_c01197{height:1110.000000px;}
.h0_c01197{height:1263.000000px;}
.w1_c01197{width:775.500000px;}
.w0_c01197{width:892.500000px;}
.x0_c01197{left:0.000000px;}
.x1_c01197{left:58.500000px;}
.x33_c01197{left:80.538135px;}
.x4_c01197{left:81.721185px;}
.x4f_c01197{left:134.260485px;}
.x3_c01197{left:135.433635px;}
.x5_c01197{left:137.156235px;}
.x11_c01197{left:138.512535px;}
.x41_c01197{left:168.083835px;}
.x39_c01197{left:169.751985px;}
.x47_c01197{left:179.830185px;}
.x17_c01197{left:181.978485px;}
.x34_c01197{left:190.433085px;}
.x6_c01197{left:192.215085px;}
.x12_c01197{left:201.659685px;}
.x20_c01197{left:203.159535px;}
.x18_c01197{left:213.054585px;}
.x3a_c01197{left:223.761435px;}
.x7_c01197{left:225.657285px;}
.x40_c01197{left:234.735585px;}
.x21_c01197{left:236.062185px;}
.x42_c01197{left:245.645385px;}
.x8_c01197{left:258.866835px;}
.x4a_c01197{left:268.737135px;}
.x25_c01197{left:270.222135px;}
.x58_c01197{left:278.939085px;}
.x2e_c01197{left:291.398235px;}
.x3b_c01197{left:292.695135px;}
.x3c_c01197{left:302.852535px;}
.x9_c01197{left:313.188135px;}
.x22_c01197{left:314.757285px;}
.x53_c01197{left:322.746585px;}
.x57_c01197{left:324.083085px;}
.x26_c01197{left:325.568085px;}
.x54_c01197{left:327.800535px;}
.x2f_c01197{left:336.740235px;}
.x19_c01197{left:347.635185px;}
.x35_c01197{left:357.426285px;}
.x2c_c01197{left:358.985535px;}
.x13_c01197{left:368.093535px;}
.x43_c01197{left:369.370635px;}
.xa_c01197{left:371.647635px;}
.x1a_c01197{left:379.547835px;}
.x36_c01197{left:380.899185px;}
.x59_c01197{left:400.887285px;}
.x4b_c01197{left:401.956485px;}
.x48_c01197{left:412.287135px;}
.xb_c01197{left:413.915685px;}
.x1b_c01197{left:424.058235px;}
.x27_c01197{left:426.028335px;}
.x4c_c01197{left:447.397485px;}
.x23_c01197{left:448.456785px;}
.x3d_c01197{left:457.371735px;}
.x37_c01197{left:458.960685px;}
.x28_c01197{left:468.370635px;}
.x14_c01197{left:470.142735px;}
.x4d_c01197{left:479.433885px;}
.x30_c01197{left:490.338735px;}
.x1c_c01197{left:491.893035px;}
.xc_c01197{left:494.046285px;}
.x15_c01197{left:502.085085px;}
.xd_c01197{left:504.767985px;}
.x29_c01197{left:512.079135px;}
.xe_c01197{left:524.746185px;}
.x31_c01197{left:544.169985px;}
.x55_c01197{left:546.145035px;}
.x44_c01197{left:556.931085px;}
.x1d_c01197{left:558.232935px;}
.x3e_c01197{left:568.058685px;}
.x16_c01197{left:569.583285px;}
.x49_c01197{left:575.488635px;}
.x2a_c01197{left:579.032835px;}
.x1e_c01197{left:590.630685px;}
.x32_c01197{left:600.837585px;}
.x50_c01197{left:612.440385px;}
.x56_c01197{left:622.998735px;}
.xf_c01197{left:624.186735px;}
.x2d_c01197{left:633.146235px;}
.x51_c01197{left:644.580735px;}
.x2b_c01197{left:656.732985px;}
.x24_c01197{left:662.375985px;}
.x10_c01197{left:667.162635px;}
.x1f_c01197{left:668.964435px;}
.x45_c01197{left:677.478435px;}
.x38_c01197{left:689.071335px;}
.x3f_c01197{left:690.858285px;}
.x2_c01197{left:692.922435px;}
.x52_c01197{left:711.846285px;}
.x4e_c01197{left:722.023485px;}
.x46_c01197{left:724.597485px;}
.x5a_c01197{left:746.560635px;}
@media print{
.v0_c01197{vertical-align:0.000000pt;}
.v1_c01197{vertical-align:6.353600pt;}
.lsc_c01197{letter-spacing:-3.080000pt;}
.ls8_c01197{letter-spacing:-2.691926pt;}
.ls16_c01197{letter-spacing:-2.391969pt;}
.ls10_c01197{letter-spacing:-2.334646pt;}
.ls4_c01197{letter-spacing:-2.161232pt;}
.lsa_c01197{letter-spacing:-2.114522pt;}
.ls12_c01197{letter-spacing:-1.761289pt;}
.ls14_c01197{letter-spacing:-1.122918pt;}
.ls3_c01197{letter-spacing:-0.792424pt;}
.ls9_c01197{letter-spacing:-0.061142pt;}
.ls7_c01197{letter-spacing:0.000000pt;}
.ls15_c01197{letter-spacing:0.633690pt;}
.ls6_c01197{letter-spacing:1.716000pt;}
.ls13_c01197{letter-spacing:2.631981pt;}
.ls11_c01197{letter-spacing:2.801575pt;}
.lse_c01197{letter-spacing:2.948000pt;}
.lsb_c01197{letter-spacing:3.238400pt;}
.lsf_c01197{letter-spacing:3.273609pt;}
.ls2_c01197{letter-spacing:3.335209pt;}
.ls5_c01197{letter-spacing:3.845609pt;}
.ls0_c01197{letter-spacing:11.967912pt;}
.ls1_c01197{letter-spacing:14.735424pt;}
.lsd_c01197{letter-spacing:54.489776pt;}
.ws0_c01197{word-spacing:-16.676044pt;}
.ws1_c01197{word-spacing:0.000000pt;}
._0_c01197{margin-left:-11.339641pt;}
._2_c01197{width:75.336496pt;}
._1_c01197{width:79.157181pt;}
.fsb_c01197{font-size:19.712000pt;}
.fs3_c01197{font-size:34.320000pt;}
.fs4_c01197{font-size:34.848000pt;}
.fsc_c01197{font-size:47.696000pt;}
.fs8_c01197{font-size:54.489776pt;}
.fsd_c01197{font-size:57.376000pt;}
.fs9_c01197{font-size:58.960000pt;}
.fs6_c01197{font-size:64.768000pt;}
.fsa_c01197{font-size:65.472176pt;}
.fs0_c01197{font-size:66.704176pt;}
.fs5_c01197{font-size:67.936000pt;}
.fs1_c01197{font-size:70.752176pt;}
.fs2_c01197{font-size:76.912176pt;}
.fs7_c01197{font-size:88.000000pt;}
.y0_c01197{bottom:0.000000pt;}
.y18_c01197{bottom:29.062920pt;}
.y1_c01197{bottom:68.000000pt;}
.y17_c01197{bottom:144.065720pt;}
.y16_c01197{bottom:202.352520pt;}
.y15_c01197{bottom:230.868920pt;}
.y14_c01197{bottom:258.430520pt;}
.y13_c01197{bottom:287.254920pt;}
.y12_c01197{bottom:305.316920pt;}
.y11_c01197{bottom:343.962120pt;}
.y10_c01197{bottom:402.253320pt;}
.yf_c01197{bottom:458.648120pt;}
.ye_c01197{bottom:488.106120pt;}
.yd_c01197{bottom:516.622520pt;}
.yc_c01197{bottom:573.642120pt;}
.yb_c01197{bottom:601.837320pt;}
.ya_c01197{bottom:631.304120pt;}
.y9_c01197{bottom:660.449720pt;}
.y8_c01197{bottom:688.011320pt;}
.y7_c01197{bottom:716.518920pt;}
.y6_c01197{bottom:745.347720pt;}
.y4_c01197{bottom:773.547320pt;}
.y5_c01197{bottom:778.932920pt;}
.y3_c01197{bottom:828.987320pt;}
.y2_c01197{bottom:960.138120pt;}
.hd_c01197{height:20.559000pt;}
.h6_c01197{height:34.201406pt;}
.h5_c01197{height:35.794688pt;}
.ha_c01197{height:36.290191pt;}
.he_c01197{height:59.841375pt;}
.hb_c01197{height:61.493438pt;}
.h8_c01197{height:63.566250pt;}
.hc_c01197{height:64.225391pt;}
.h2_c01197{height:65.466501pt;}
.h3_c01197{height:69.439391pt;}
.h7_c01197{height:70.855125pt;}
.h4_c01197{height:75.485095pt;}
.h9_c01197{height:86.367188pt;}
.h1_c01197{height:986.666667pt;}
.h0_c01197{height:1122.666667pt;}
.w1_c01197{width:689.333333pt;}
.w0_c01197{width:793.333333pt;}
.x0_c01197{left:0.000000pt;}
.x1_c01197{left:52.000000pt;}
.x33_c01197{left:71.589453pt;}
.x4_c01197{left:72.641053pt;}
.x4f_c01197{left:119.342653pt;}
.x3_c01197{left:120.385453pt;}
.x5_c01197{left:121.916653pt;}
.x11_c01197{left:123.122253pt;}
.x41_c01197{left:149.407853pt;}
.x39_c01197{left:150.890653pt;}
.x47_c01197{left:159.849053pt;}
.x17_c01197{left:161.758653pt;}
.x34_c01197{left:169.273853pt;}
.x6_c01197{left:170.857853pt;}
.x12_c01197{left:179.253053pt;}
.x20_c01197{left:180.586253pt;}
.x18_c01197{left:189.381853pt;}
.x3a_c01197{left:198.899053pt;}
.x7_c01197{left:200.584253pt;}
.x40_c01197{left:208.653853pt;}
.x21_c01197{left:209.833053pt;}
.x42_c01197{left:218.351453pt;}
.x8_c01197{left:230.103853pt;}
.x4a_c01197{left:238.877453pt;}
.x25_c01197{left:240.197453pt;}
.x58_c01197{left:247.945853pt;}
.x2e_c01197{left:259.020653pt;}
.x3b_c01197{left:260.173453pt;}
.x3c_c01197{left:269.202253pt;}
.x9_c01197{left:278.389453pt;}
.x22_c01197{left:279.784253pt;}
.x53_c01197{left:286.885853pt;}
.x57_c01197{left:288.073853pt;}
.x26_c01197{left:289.393853pt;}
.x54_c01197{left:291.378253pt;}
.x2f_c01197{left:299.324653pt;}
.x19_c01197{left:309.009053pt;}
.x35_c01197{left:317.712253pt;}
.x2c_c01197{left:319.098253pt;}
.x13_c01197{left:327.194253pt;}
.x43_c01197{left:328.329453pt;}
.xa_c01197{left:330.353453pt;}
.x1a_c01197{left:337.375853pt;}
.x36_c01197{left:338.577053pt;}
.x59_c01197{left:356.344253pt;}
.x4b_c01197{left:357.294653pt;}
.x48_c01197{left:366.477453pt;}
.xb_c01197{left:367.925053pt;}
.x1b_c01197{left:376.940653pt;}
.x27_c01197{left:378.691853pt;}
.x4c_c01197{left:397.686653pt;}
.x23_c01197{left:398.628253pt;}
.x3d_c01197{left:406.552653pt;}
.x37_c01197{left:407.965053pt;}
.x28_c01197{left:416.329453pt;}
.x14_c01197{left:417.904653pt;}
.x4d_c01197{left:426.163453pt;}
.x30_c01197{left:435.856653pt;}
.x1c_c01197{left:437.238253pt;}
.xc_c01197{left:439.152253pt;}
.x15_c01197{left:446.297853pt;}
.xd_c01197{left:448.682653pt;}
.x29_c01197{left:455.181453pt;}
.xe_c01197{left:466.441053pt;}
.x31_c01197{left:483.706653pt;}
.x55_c01197{left:485.462253pt;}
.x44_c01197{left:495.049853pt;}
.x1d_c01197{left:496.207053pt;}
.x3e_c01197{left:504.941053pt;}
.x16_c01197{left:506.296253pt;}
.x49_c01197{left:511.545453pt;}
.x2a_c01197{left:514.695853pt;}
.x1e_c01197{left:525.005053pt;}
.x32_c01197{left:534.077853pt;}
.x50_c01197{left:544.391453pt;}
.x56_c01197{left:553.776653pt;}
.xf_c01197{left:554.832653pt;}
.x2d_c01197{left:562.796653pt;}
.x51_c01197{left:572.960653pt;}
.x2b_c01197{left:583.762653pt;}
.x24_c01197{left:588.778653pt;}
.x10_c01197{left:593.033453pt;}
.x1f_c01197{left:594.635053pt;}
.x45_c01197{left:602.203053pt;}
.x38_c01197{left:612.507853pt;}
.x3f_c01197{left:614.096253pt;}
.x2_c01197{left:615.931053pt;}
.x52_c01197{left:632.752253pt;}
.x4e_c01197{left:641.798653pt;}
.x46_c01197{left:644.086653pt;}
.x5a_c01197{left:663.609453pt;}
}





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

.ir_c01198:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01198{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01198;src:url('chunks/assets/font_41d09d8b029bc46a52fbb1f4.woff2')format("woff");}.ff1_c01198{font-family:ff1_c01198;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01198;src:url('chunks/assets/font_9a69757ba46067400f9285f8.woff2')format("woff");}.ff2_c01198{font-family:ff2_c01198;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01198;src:url('chunks/assets/font_2343606c6eb14d3ba10a4e60.woff2')format("woff");}.ff3_c01198{font-family:ff3_c01198;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01198;src:url('chunks/assets/font_08bf10110fb28b78d90acac7.woff2')format("woff");}.ff4_c01198{font-family:ff4_c01198;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m56_c01198{transform:matrix(0.138723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138723,0.000000,0.000000,0.250000,0,0);}
.m3e_c01198{transform:matrix(0.180233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180233,0.000000,0.000000,0.250000,0,0);}
.m5d_c01198{transform:matrix(0.192146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192146,0.000000,0.000000,0.250000,0,0);}
.ma4_c01198{transform:matrix(0.203704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203704,0.000000,0.000000,0.250000,0,0);}
.ma7_c01198{transform:matrix(0.219246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219246,0.000000,0.000000,0.250000,0,0);}
.m2f_c01198{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);}
.m26_c01198{transform:matrix(0.239650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239650,0.000000,0.000000,0.250000,0,0);}
.m95_c01198{transform:matrix(0.244985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244985,0.000000,0.000000,0.250000,0,0);}
.m7_c01198{transform:matrix(0.247578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247578,0.000000,0.000000,0.250000,0,0);}
.m6_c01198{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m62_c01198{transform:matrix(0.250185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250185,0.000000,0.000000,0.250000,0,0);}
.m1f_c01198{transform:matrix(0.250522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250522,0.000000,0.000000,0.250000,0,0);}
.m59_c01198{transform:matrix(0.253150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253150,0.000000,0.000000,0.250000,0,0);}
.m1_c01198{transform:matrix(0.254811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254811,0.000000,0.000000,0.250000,0,0);}
.m4b_c01198{transform:matrix(0.256575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256575,0.000000,0.000000,0.250000,0,0);}
.m69_c01198{transform:matrix(0.257342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257342,0.000000,0.000000,0.250000,0,0);}
.m17_c01198{transform:matrix(0.261179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261179,0.000000,0.000000,0.250000,0,0);}
.m9d_c01198{transform:matrix(0.263567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263567,0.000000,0.000000,0.250000,0,0);}
.m8c_c01198{transform:matrix(0.264018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264018,0.000000,0.000000,0.250000,0,0);}
.m79_c01198{transform:matrix(0.265460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265460,0.000000,0.000000,0.250000,0,0);}
.m64_c01198{transform:matrix(0.268394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268394,0.000000,0.000000,0.250000,0,0);}
.m86_c01198{transform:matrix(0.268477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268477,0.000000,0.000000,0.250000,0,0);}
.m55_c01198{transform:matrix(0.268507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268507,0.000000,0.000000,0.250000,0,0);}
.m67_c01198{transform:matrix(0.269112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269112,0.000000,0.000000,0.250000,0,0);}
.m41_c01198{transform:matrix(0.269567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269567,0.000000,0.000000,0.250000,0,0);}
.m31_c01198{transform:matrix(0.270287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270287,0.000000,0.000000,0.250000,0,0);}
.m3c_c01198{transform:matrix(0.271779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271779,0.000000,0.000000,0.250000,0,0);}
.m27_c01198{transform:matrix(0.272665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272665,0.000000,0.000000,0.250000,0,0);}
.m7a_c01198{transform:matrix(0.273189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273189,0.000000,0.000000,0.250000,0,0);}
.m1e_c01198{transform:matrix(0.273274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273274,0.000000,0.000000,0.250000,0,0);}
.m60_c01198{transform:matrix(0.273487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273487,0.000000,0.000000,0.250000,0,0);}
.m6d_c01198{transform:matrix(0.274903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274903,0.000000,0.000000,0.250000,0,0);}
.m1c_c01198{transform:matrix(0.275114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275114,0.000000,0.000000,0.250000,0,0);}
.m9_c01198{transform:matrix(0.275764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275764,0.000000,0.000000,0.250000,0,0);}
.m71_c01198{transform:matrix(0.276669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276669,0.000000,0.000000,0.250000,0,0);}
.m8b_c01198{transform:matrix(0.277270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277270,0.000000,0.000000,0.250000,0,0);}
.m43_c01198{transform:matrix(0.277548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277548,0.000000,0.000000,0.250000,0,0);}
.m99_c01198{transform:matrix(0.277572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277572,0.000000,0.000000,0.250000,0,0);}
.m22_c01198{transform:matrix(0.278154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278154,0.000000,0.000000,0.250000,0,0);}
.m3_c01198{transform:matrix(0.278628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278628,0.000000,0.000000,0.250000,0,0);}
.mb1_c01198{transform:matrix(0.279854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279854,0.000000,0.000000,0.250000,0,0);}
.m9b_c01198{transform:matrix(0.280377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280377,0.000000,0.000000,0.250000,0,0);}
.m84_c01198{transform:matrix(0.280667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280667,0.000000,0.000000,0.250000,0,0);}
.m5_c01198{transform:matrix(0.281039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281039,0.000000,0.000000,0.250000,0,0);}
.m63_c01198{transform:matrix(0.281619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281619,0.000000,0.000000,0.250000,0,0);}
.mbb_c01198{transform:matrix(0.282939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282939,0.000000,0.000000,0.250000,0,0);}
.m36_c01198{transform:matrix(0.283033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283033,0.000000,0.000000,0.250000,0,0);}
.m94_c01198{transform:matrix(0.283252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283252,0.000000,0.000000,0.250000,0,0);}
.m5a_c01198{transform:matrix(0.284502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284502,0.000000,0.000000,0.250000,0,0);}
.m68_c01198{transform:matrix(0.284662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284662,0.000000,0.000000,0.250000,0,0);}
.mbc_c01198{transform:matrix(0.285114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285114,0.000000,0.000000,0.250000,0,0);}
.ma_c01198{transform:matrix(0.287818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287818,0.000000,0.000000,0.250000,0,0);}
.m81_c01198{transform:matrix(0.287913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287913,0.000000,0.000000,0.250000,0,0);}
.ma6_c01198{transform:matrix(0.288258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288258,0.000000,0.000000,0.250000,0,0);}
.m0_c01198{transform:matrix(0.288500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288500,0.000000,0.000000,0.250000,0,0);}
.m92_c01198{transform:matrix(0.288889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288889,0.000000,0.000000,0.250000,0,0);}
.m46_c01198{transform:matrix(0.289458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289458,0.000000,0.000000,0.250000,0,0);}
.maa_c01198{transform:matrix(0.289648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289648,0.000000,0.000000,0.250000,0,0);}
.m61_c01198{transform:matrix(0.289661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289661,0.000000,0.000000,0.250000,0,0);}
.ma9_c01198{transform:matrix(0.290369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290369,0.000000,0.000000,0.250000,0,0);}
.m28_c01198{transform:matrix(0.290528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290528,0.000000,0.000000,0.250000,0,0);}
.mb4_c01198{transform:matrix(0.290584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290584,0.000000,0.000000,0.250000,0,0);}
.mb5_c01198{transform:matrix(0.290687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290687,0.000000,0.000000,0.250000,0,0);}
.m50_c01198{transform:matrix(0.291067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291067,0.000000,0.000000,0.250000,0,0);}
.m9e_c01198{transform:matrix(0.291181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291181,0.000000,0.000000,0.250000,0,0);}
.m3b_c01198{transform:matrix(0.291547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291547,0.000000,0.000000,0.250000,0,0);}
.mae_c01198{transform:matrix(0.292344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292344,0.000000,0.000000,0.250000,0,0);}
.m83_c01198{transform:matrix(0.292504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292504,0.000000,0.000000,0.250000,0,0);}
.m75_c01198{transform:matrix(0.292623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292623,0.000000,0.000000,0.250000,0,0);}
.m7f_c01198{transform:matrix(0.292729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292729,0.000000,0.000000,0.250000,0,0);}
.ma8_c01198{transform:matrix(0.292926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292926,0.000000,0.000000,0.250000,0,0);}
.m53_c01198{transform:matrix(0.292931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292931,0.000000,0.000000,0.250000,0,0);}
.m49_c01198{transform:matrix(0.293258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293258,0.000000,0.000000,0.250000,0,0);}
.mb6_c01198{transform:matrix(0.293656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293656,0.000000,0.000000,0.250000,0,0);}
.me_c01198{transform:matrix(0.294485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294485,0.000000,0.000000,0.250000,0,0);}
.m7c_c01198{transform:matrix(0.295206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295206,0.000000,0.000000,0.250000,0,0);}
.m42_c01198{transform:matrix(0.295330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295330,0.000000,0.000000,0.250000,0,0);}
.mab_c01198{transform:matrix(0.296673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296673,0.000000,0.000000,0.250000,0,0);}
.m15_c01198{transform:matrix(0.297437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297437,0.000000,0.000000,0.250000,0,0);}
.m9c_c01198{transform:matrix(0.297488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297488,0.000000,0.000000,0.250000,0,0);}
.m20_c01198{transform:matrix(0.299068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299068,0.000000,0.000000,0.250000,0,0);}
.m33_c01198{transform:matrix(0.299346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299346,0.000000,0.000000,0.250000,0,0);}
.m37_c01198{transform:matrix(0.299369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299369,0.000000,0.000000,0.250000,0,0);}
.m6e_c01198{transform:matrix(0.301760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301760,0.000000,0.000000,0.250000,0,0);}
.mc_c01198{transform:matrix(0.302210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302210,0.000000,0.000000,0.250000,0,0);}
.m8d_c01198{transform:matrix(0.302919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302919,0.000000,0.000000,0.250000,0,0);}
.m90_c01198{transform:matrix(0.302944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302944,0.000000,0.000000,0.250000,0,0);}
.mb_c01198{transform:matrix(0.303102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303102,0.000000,0.000000,0.250000,0,0);}
.m30_c01198{transform:matrix(0.303568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303568,0.000000,0.000000,0.250000,0,0);}
.m65_c01198{transform:matrix(0.303806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303806,0.000000,0.000000,0.250000,0,0);}
.mf_c01198{transform:matrix(0.304061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304061,0.000000,0.000000,0.250000,0,0);}
.mbd_c01198{transform:matrix(0.304096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304096,0.000000,0.000000,0.250000,0,0);}
.m4_c01198{transform:matrix(0.304470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304470,0.000000,0.000000,0.250000,0,0);}
.m38_c01198{transform:matrix(0.304582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304582,0.000000,0.000000,0.250000,0,0);}
.mb2_c01198{transform:matrix(0.304603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304603,0.000000,0.000000,0.250000,0,0);}
.mb3_c01198{transform:matrix(0.305292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305292,0.000000,0.000000,0.250000,0,0);}
.m57_c01198{transform:matrix(0.306167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306167,0.000000,0.000000,0.250000,0,0);}
.m78_c01198{transform:matrix(0.306380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306380,0.000000,0.000000,0.250000,0,0);}
.m7e_c01198{transform:matrix(0.306910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306910,0.000000,0.000000,0.250000,0,0);}
.m45_c01198{transform:matrix(0.307329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307329,0.000000,0.000000,0.250000,0,0);}
.m40_c01198{transform:matrix(0.307365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307365,0.000000,0.000000,0.250000,0,0);}
.mac_c01198{transform:matrix(0.307375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307375,0.000000,0.000000,0.250000,0,0);}
.m34_c01198{transform:matrix(0.307541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307541,0.000000,0.000000,0.250000,0,0);}
.m58_c01198{transform:matrix(0.307850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307850,0.000000,0.000000,0.250000,0,0);}
.m48_c01198{transform:matrix(0.308489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308489,0.000000,0.000000,0.250000,0,0);}
.m54_c01198{transform:matrix(0.310809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310809,0.000000,0.000000,0.250000,0,0);}
.mad_c01198{transform:matrix(0.310976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310976,0.000000,0.000000,0.250000,0,0);}
.m8_c01198{transform:matrix(0.311924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311924,0.000000,0.000000,0.250000,0,0);}
.m11_c01198{transform:matrix(0.311933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311933,0.000000,0.000000,0.250000,0,0);}
.m66_c01198{transform:matrix(0.312669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312669,0.000000,0.000000,0.250000,0,0);}
.m5f_c01198{transform:matrix(0.313093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313093,0.000000,0.000000,0.250000,0,0);}
.m2c_c01198{transform:matrix(0.313623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313623,0.000000,0.000000,0.250000,0,0);}
.ma1_c01198{transform:matrix(0.313940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313940,0.000000,0.000000,0.250000,0,0);}
.m35_c01198{transform:matrix(0.313960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313960,0.000000,0.000000,0.250000,0,0);}
.mb8_c01198{transform:matrix(0.314088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314088,0.000000,0.000000,0.250000,0,0);}
.m1b_c01198{transform:matrix(0.315730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315730,0.000000,0.000000,0.250000,0,0);}
.m9a_c01198{transform:matrix(0.316283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316283,0.000000,0.000000,0.250000,0,0);}
.m39_c01198{transform:matrix(0.316454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316454,0.000000,0.000000,0.250000,0,0);}
.m16_c01198{transform:matrix(0.316640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316640,0.000000,0.000000,0.250000,0,0);}
.m8a_c01198{transform:matrix(0.316881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316881,0.000000,0.000000,0.250000,0,0);}
.mba_c01198{transform:matrix(0.317833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317833,0.000000,0.000000,0.250000,0,0);}
.m70_c01198{transform:matrix(0.318028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318028,0.000000,0.000000,0.250000,0,0);}
.m13_c01198{transform:matrix(0.318796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318796,0.000000,0.000000,0.250000,0,0);}
.m74_c01198{transform:matrix(0.319177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319177,0.000000,0.000000,0.250000,0,0);}
.m73_c01198{transform:matrix(0.320839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320839,0.000000,0.000000,0.250000,0,0);}
.m47_c01198{transform:matrix(0.320966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320966,0.000000,0.000000,0.250000,0,0);}
.m93_c01198{transform:matrix(0.322031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322031,0.000000,0.000000,0.250000,0,0);}
.m87_c01198{transform:matrix(0.322083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322083,0.000000,0.000000,0.250000,0,0);}
.m4a_c01198{transform:matrix(0.322404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322404,0.000000,0.000000,0.250000,0,0);}
.m89_c01198{transform:matrix(0.322419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322419,0.000000,0.000000,0.250000,0,0);}
.m1a_c01198{transform:matrix(0.322639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322639,0.000000,0.000000,0.250000,0,0);}
.ma2_c01198{transform:matrix(0.324021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324021,0.000000,0.000000,0.250000,0,0);}
.m7b_c01198{transform:matrix(0.324599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324599,0.000000,0.000000,0.250000,0,0);}
.m2d_c01198{transform:matrix(0.325226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325226,0.000000,0.000000,0.250000,0,0);}
.m12_c01198{transform:matrix(0.326214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326214,0.000000,0.000000,0.250000,0,0);}
.m2_c01198{transform:matrix(0.327750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327750,0.000000,0.000000,0.250000,0,0);}
.m82_c01198{transform:matrix(0.328442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328442,0.000000,0.000000,0.250000,0,0);}
.m96_c01198{transform:matrix(0.330376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330376,0.000000,0.000000,0.250000,0,0);}
.ma0_c01198{transform:matrix(0.330423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330423,0.000000,0.000000,0.250000,0,0);}
.m44_c01198{transform:matrix(0.331456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331456,0.000000,0.000000,0.250000,0,0);}
.m4f_c01198{transform:matrix(0.331705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331705,0.000000,0.000000,0.250000,0,0);}
.m80_c01198{transform:matrix(0.332535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332535,0.000000,0.000000,0.250000,0,0);}
.mb9_c01198{transform:matrix(0.332555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332555,0.000000,0.000000,0.250000,0,0);}
.m19_c01198{transform:matrix(0.332775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332775,0.000000,0.000000,0.250000,0,0);}
.m6c_c01198{transform:matrix(0.332927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332927,0.000000,0.000000,0.250000,0,0);}
.m14_c01198{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_c01198{transform:matrix(0.334152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334152,0.000000,0.000000,0.250000,0,0);}
.m5e_c01198{transform:matrix(0.335323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335323,0.000000,0.000000,0.250000,0,0);}
.m76_c01198{transform:matrix(0.335448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335448,0.000000,0.000000,0.250000,0,0);}
.m98_c01198{transform:matrix(0.336297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336297,0.000000,0.000000,0.250000,0,0);}
.m6f_c01198{transform:matrix(0.336644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336644,0.000000,0.000000,0.250000,0,0);}
.m5b_c01198{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);}
.m3a_c01198{transform:matrix(0.337739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337739,0.000000,0.000000,0.250000,0,0);}
.m24_c01198{transform:matrix(0.338584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338584,0.000000,0.000000,0.250000,0,0);}
.m9f_c01198{transform:matrix(0.338888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338888,0.000000,0.000000,0.250000,0,0);}
.ma5_c01198{transform:matrix(0.339341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339341,0.000000,0.000000,0.250000,0,0);}
.ma3_c01198{transform:matrix(0.339622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339622,0.000000,0.000000,0.250000,0,0);}
.m4e_c01198{transform:matrix(0.339775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339775,0.000000,0.000000,0.250000,0,0);}
.m32_c01198{transform:matrix(0.341480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341480,0.000000,0.000000,0.250000,0,0);}
.m10_c01198{transform:matrix(0.343047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343047,0.000000,0.000000,0.250000,0,0);}
.m6b_c01198{transform:matrix(0.343992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343992,0.000000,0.000000,0.250000,0,0);}
.m52_c01198{transform:matrix(0.344771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344771,0.000000,0.000000,0.250000,0,0);}
.m88_c01198{transform:matrix(0.345576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345576,0.000000,0.000000,0.250000,0,0);}
.m3f_c01198{transform:matrix(0.346042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346042,0.000000,0.000000,0.250000,0,0);}
.m51_c01198{transform:matrix(0.346156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346156,0.000000,0.000000,0.250000,0,0);}
.md_c01198{transform:matrix(0.347068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347068,0.000000,0.000000,0.250000,0,0);}
.m2b_c01198{transform:matrix(0.347412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347412,0.000000,0.000000,0.250000,0,0);}
.m2e_c01198{transform:matrix(0.347899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347899,0.000000,0.000000,0.250000,0,0);}
.m23_c01198{transform:matrix(0.348169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348169,0.000000,0.000000,0.250000,0,0);}
.m29_c01198{transform:matrix(0.348725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348725,0.000000,0.000000,0.250000,0,0);}
.m7d_c01198{transform:matrix(0.348998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348998,0.000000,0.000000,0.250000,0,0);}
.maf_c01198{transform:matrix(0.351161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351161,0.000000,0.000000,0.250000,0,0);}
.m21_c01198{transform:matrix(0.353632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353632,0.000000,0.000000,0.250000,0,0);}
.m4c_c01198{transform:matrix(0.355266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355266,0.000000,0.000000,0.250000,0,0);}
.m8f_c01198{transform:matrix(0.356686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356686,0.000000,0.000000,0.250000,0,0);}
.mb0_c01198{transform:matrix(0.357483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357483,0.000000,0.000000,0.250000,0,0);}
.m6a_c01198{transform:matrix(0.358064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358064,0.000000,0.000000,0.250000,0,0);}
.m4d_c01198{transform:matrix(0.358519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358519,0.000000,0.000000,0.250000,0,0);}
.m91_c01198{transform:matrix(0.360680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360680,0.000000,0.000000,0.250000,0,0);}
.m5c_c01198{transform:matrix(0.363329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363329,0.000000,0.000000,0.250000,0,0);}
.m18_c01198{transform:matrix(0.364969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364969,0.000000,0.000000,0.250000,0,0);}
.m25_c01198{transform:matrix(0.371188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371188,0.000000,0.000000,0.250000,0,0);}
.m3d_c01198{transform:matrix(0.371223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371223,0.000000,0.000000,0.250000,0,0);}
.mb7_c01198{transform:matrix(0.379401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379401,0.000000,0.000000,0.250000,0,0);}
.m72_c01198{transform:matrix(0.380324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380324,0.000000,0.000000,0.250000,0,0);}
.m2a_c01198{transform:matrix(0.390139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390139,0.000000,0.000000,0.250000,0,0);}
.m97_c01198{transform:matrix(0.391521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391521,0.000000,0.000000,0.250000,0,0);}
.m8e_c01198{transform:matrix(0.396432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396432,0.000000,0.000000,0.250000,0,0);}
.m1d_c01198{transform:matrix(0.402725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402725,0.000000,0.000000,0.250000,0,0);}
.m77_c01198{transform:matrix(0.415310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415310,0.000000,0.000000,0.250000,0,0);}
.v1_c01198{vertical-align:-21.364200px;}
.v2_c01198{vertical-align:-2.861100px;}
.v0_c01198{vertical-align:0.000000px;}
.ls9_c01198{letter-spacing:-3.437280px;}
.ls7_c01198{letter-spacing:-3.118500px;}
.ls12_c01198{letter-spacing:-2.626477px;}
.ls10_c01198{letter-spacing:-2.494800px;}
.ls19_c01198{letter-spacing:-1.395785px;}
.lse_c01198{letter-spacing:-0.622850px;}
.ls6_c01198{letter-spacing:0.000000px;}
.lsc_c01198{letter-spacing:0.240135px;}
.ls1_c01198{letter-spacing:0.247639px;}
.lsa_c01198{letter-spacing:1.043087px;}
.ls18_c01198{letter-spacing:1.515852px;}
.ls17_c01198{letter-spacing:1.605903px;}
.ls15_c01198{letter-spacing:1.996122px;}
.ls14_c01198{letter-spacing:2.101182px;}
.ls13_c01198{letter-spacing:2.455200px;}
.ls0_c01198{letter-spacing:3.144268px;}
.lsf_c01198{letter-spacing:3.326400px;}
.ls8_c01198{letter-spacing:3.366000px;}
.ls16_c01198{letter-spacing:3.481958px;}
.ls11_c01198{letter-spacing:3.564000px;}
.ls5_c01198{letter-spacing:3.752110px;}
.ls3_c01198{letter-spacing:9.646560px;}
.ls4_c01198{letter-spacing:13.657754px;}
.ls2_c01198{letter-spacing:26.317368px;}
.lsb_c01198{letter-spacing:51.321798px;}
.lsd_c01198{letter-spacing:61.300998px;}
.sc__c01198{text-shadow:none;}
.sc0_c01198{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01198{-webkit-text-stroke:0px transparent;}
.sc0_c01198{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01198{word-spacing:-19.008189px;}
.ws1_c01198{word-spacing:-18.760550px;}
.ws2_c01198{word-spacing:0.000000px;}
._2_c01198{width:2.461298px;}
._3_c01198{width:8.781696px;}
._4_c01198{width:10.881189px;}
._0_c01198{width:16.659445px;}
._1_c01198{width:19.526034px;}
._5_c01198{width:27.015181px;}
.fc0_c01198{color:transparent;}
.fse_c01198{font-size:33.264000px;}
.fsb_c01198{font-size:49.104000px;}
.fs5_c01198{font-size:51.321798px;}
.fs9_c01198{font-size:55.638000px;}
.fs6_c01198{font-size:61.300998px;}
.fs7_c01198{font-size:66.330000px;}
.fs8_c01198{font-size:66.528000px;}
.fs2_c01198{font-size:67.320000px;}
.fsa_c01198{font-size:71.280000px;}
.fsd_c01198{font-size:74.844000px;}
.fs0_c01198{font-size:75.042198px;}
.fs3_c01198{font-size:79.200000px;}
.fs1_c01198{font-size:89.100000px;}
.fsc_c01198{font-size:91.872198px;}
.fs4_c01198{font-size:98.208000px;}
.y0_c01198{bottom:0.000000px;}
.y22_c01198{bottom:18.444735px;}
.y1_c01198{bottom:76.500000px;}
.y21_c01198{bottom:134.987535px;}
.y20_c01198{bottom:167.776335px;}
.y1f_c01198{bottom:200.916585px;}
.y1e_c01198{bottom:233.353935px;}
.y1d_c01198{bottom:265.073535px;}
.y1c_c01198{bottom:297.149535px;}
.y1b_c01198{bottom:328.864185px;}
.y1a_c01198{bottom:360.583785px;}
.y19_c01198{bottom:393.021135px;}
.y18_c01198{bottom:425.097135px;}
.y17_c01198{bottom:457.529535px;}
.y16_c01198{bottom:489.605535px;}
.y11_c01198{bottom:515.617785px;}
.y15_c01198{bottom:522.037935px;}
.y10_c01198{bottom:522.394335px;}
.y13_c01198{bottom:553.752585px;}
.yf_c01198{bottom:554.108985px;}
.y14_c01198{bottom:554.470335px;}
.y12_c01198{bottom:577.274985px;}
.ye_c01198{bottom:586.897785px;}
.yc_c01198{bottom:618.265935px;}
.yd_c01198{bottom:623.606985px;}
.yb_c01198{bottom:650.693385px;}
.ya_c01198{bottom:682.417935px;}
.y9_c01198{bottom:713.781135px;}
.y8_c01198{bottom:745.495785px;}
.y7_c01198{bottom:777.576735px;}
.y6_c01198{bottom:809.291385px;}
.y5_c01198{bottom:841.372335px;}
.y4_c01198{bottom:873.804735px;}
.y3_c01198{bottom:937.956735px;}
.y2_c01198{bottom:1075.522185px;}
.h7_c01198{height:34.180317px;}
.h10_c01198{height:34.693313px;}
.h8_c01198{height:40.826465px;}
.hd_c01198{height:49.487625px;}
.hb_c01198{height:54.605654px;}
.h9_c01198{height:69.180117px;}
.ha_c01198{height:69.386625px;}
.hc_c01198{height:69.957422px;}
.h4_c01198{height:70.212656px;}
.hf_c01198{height:73.455293px;}
.h2_c01198{height:73.649813px;}
.h5_c01198{height:77.730469px;}
.h3_c01198{height:87.446777px;}
.he_c01198{height:95.819832px;}
.h6_c01198{height:102.427875px;}
.h1_c01198{height:1110.000000px;}
.h0_c01198{height:1263.000000px;}
.w1_c01198{width:775.500000px;}
.w0_c01198{width:892.500000px;}
.x0_c01198{left:0.000000px;}
.x1_c01198{left:58.500000px;}
.x9_c01198{left:66.163335px;}
.x3_c01198{left:83.037885px;}
.x4e_c01198{left:124.266435px;}
.x30_c01198{left:135.775185px;}
.x4_c01198{left:137.052285px;}
.x47_c01198{left:138.764985px;}
.x48_c01198{left:146.754285px;}
.x5f_c01198{left:148.422435px;}
.xa_c01198{left:158.901585px;}
.x31_c01198{left:159.926235px;}
.x69_c01198{left:168.153135px;}
.x13_c01198{left:170.826135px;}
.x24_c01198{left:172.538835px;}
.x6c_c01198{left:179.211435px;}
.x52_c01198{left:180.414285px;}
.x32_c01198{left:181.924035px;}
.x3b_c01198{left:190.210335px;}
.xb_c01198{left:192.596235px;}
.x6e_c01198{left:202.699185px;}
.x5_c01198{left:204.342585px;}
.x53_c01198{left:213.945585px;}
.x33_c01198{left:215.054385px;}
.x6d_c01198{left:224.835585px;}
.x4d_c01198{left:226.102785px;}
.xc_c01198{left:237.824385px;}
.x49_c01198{left:238.888635px;}
.x2c_c01198{left:246.976935px;}
.x25_c01198{left:248.338185px;}
.x5a_c01198{left:258.099585px;}
.x3c_c01198{left:259.455885px;}
.x60_c01198{left:268.266885px;}
.x66_c01198{left:269.954835px;}
.x41_c01198{left:271.246785px;}
.x6_c01198{left:281.077485px;}
.x2f_c01198{left:283.403985px;}
.x14_c01198{left:292.665435px;}
.x6f_c01198{left:302.184285px;}
.x42_c01198{left:303.411885px;}
.x34_c01198{left:313.529685px;}
.x61_c01198{left:315.559185px;}
.x1c_c01198{left:325.825485px;}
.xd_c01198{left:327.632235px;}
.x26_c01198{left:335.710635px;}
.x4a_c01198{left:337.957935px;}
.x62_c01198{left:343.219785px;}
.x35_c01198{left:347.961885px;}
.x6a_c01198{left:357.426285px;}
.x4b_c01198{left:358.480635px;}
.x15_c01198{left:359.713185px;}
.x43_c01198{left:370.444785px;}
.x1d_c01198{left:371.484285px;}
.xe_c01198{left:380.235885px;}
.x2d_c01198{left:381.849585px;}
.x4c_c01198{left:383.839485px;}
.x1e_c01198{left:393.620685px;}
.x36_c01198{left:394.650285px;}
.x7_c01198{left:403.050435px;}
.x16_c01198{left:404.174085px;}
.x63_c01198{left:413.856285px;}
.xf_c01198{left:415.262085px;}
.x3d_c01198{left:417.316335px;}
.x1f_c01198{left:425.493735px;}
.x54_c01198{left:436.190685px;}
.x72_c01198{left:445.001685px;}
.x5b_c01198{left:446.907435px;}
.x50_c01198{left:448.135035px;}
.x8_c01198{left:450.169485px;}
.x55_c01198{left:457.911285px;}
.x27_c01198{left:459.128985px;}
.x5d_c01198{left:469.325985px;}
.x17_c01198{left:471.256485px;}
.x39_c01198{left:480.334785px;}
.x67_c01198{left:481.879185px;}
.x20_c01198{left:483.819585px;}
.x5c_c01198{left:491.066385px;}
.x28_c01198{left:492.620685px;}
.x59_c01198{left:502.109835px;}
.x18_c01198{left:503.372085px;}
.x2e_c01198{left:504.396735px;}
.x68_c01198{left:512.494935px;}
.x10_c01198{left:514.762035px;}
.x44_c01198{left:525.795585px;}
.x70_c01198{left:527.156835px;}
.x6b_c01198{left:536.037135px;}
.x3a_c01198{left:537.833985px;}
.x71_c01198{left:545.174835px;}
.x64_c01198{left:556.990485px;}
.x29_c01198{left:558.990285px;}
.x5e_c01198{left:569.236785px;}
.x11_c01198{left:570.711885px;}
.x45_c01198{left:580.720785px;}
.x56_c01198{left:590.180235px;}
.x19_c01198{left:591.368235px;}
.x3e_c01198{left:602.584935px;}
.x2a_c01198{left:613.306635px;}
.x21_c01198{left:614.549085px;}
.x12_c01198{left:623.642235px;}
.x1a_c01198{left:625.562835px;}
.x37_c01198{left:634.680735px;}
.x57_c01198{left:636.863685px;}
.x4f_c01198{left:644.140185px;}
.x22_c01198{left:647.634885px;}
.x3f_c01198{left:658.000185px;}
.x65_c01198{left:666.786435px;}
.x23_c01198{left:680.785035px;}
.x51_c01198{left:690.388035px;}
.x2_c01198{left:700.406835px;}
.x2b_c01198{left:701.698785px;}
.x1b_c01198{left:703.668885px;}
.x38_c01198{left:713.232285px;}
.x58_c01198{left:722.815485px;}
.x46_c01198{left:723.973785px;}
.x40_c01198{left:725.112285px;}
@media print{
.v1_c01198{vertical-align:-18.990400pt;}
.v2_c01198{vertical-align:-2.543200pt;}
.v0_c01198{vertical-align:0.000000pt;}
.ls9_c01198{letter-spacing:-3.055360pt;}
.ls7_c01198{letter-spacing:-2.772000pt;}
.ls12_c01198{letter-spacing:-2.334646pt;}
.ls10_c01198{letter-spacing:-2.217600pt;}
.ls19_c01198{letter-spacing:-1.240698pt;}
.lse_c01198{letter-spacing:-0.553645pt;}
.ls6_c01198{letter-spacing:0.000000pt;}
.lsc_c01198{letter-spacing:0.213453pt;}
.ls1_c01198{letter-spacing:0.220124pt;}
.lsa_c01198{letter-spacing:0.927188pt;}
.ls18_c01198{letter-spacing:1.347424pt;}
.ls17_c01198{letter-spacing:1.427469pt;}
.ls15_c01198{letter-spacing:1.774331pt;}
.ls14_c01198{letter-spacing:1.867717pt;}
.ls13_c01198{letter-spacing:2.182400pt;}
.ls0_c01198{letter-spacing:2.794905pt;}
.lsf_c01198{letter-spacing:2.956800pt;}
.ls8_c01198{letter-spacing:2.992000pt;}
.ls16_c01198{letter-spacing:3.095074pt;}
.ls11_c01198{letter-spacing:3.168000pt;}
.ls5_c01198{letter-spacing:3.335209pt;}
.ls3_c01198{letter-spacing:8.574720pt;}
.ls4_c01198{letter-spacing:12.140226pt;}
.ls2_c01198{letter-spacing:23.393216pt;}
.lsb_c01198{letter-spacing:45.619376pt;}
.lsd_c01198{letter-spacing:54.489776pt;}
.ws0_c01198{word-spacing:-16.896168pt;}
.ws1_c01198{word-spacing:-16.676044pt;}
.ws2_c01198{word-spacing:0.000000pt;}
._2_c01198{width:2.187820pt;}
._3_c01198{width:7.805952pt;}
._4_c01198{width:9.672168pt;}
._0_c01198{width:14.808396pt;}
._1_c01198{width:17.356475pt;}
._5_c01198{width:24.013494pt;}
.fse_c01198{font-size:29.568000pt;}
.fsb_c01198{font-size:43.648000pt;}
.fs5_c01198{font-size:45.619376pt;}
.fs9_c01198{font-size:49.456000pt;}
.fs6_c01198{font-size:54.489776pt;}
.fs7_c01198{font-size:58.960000pt;}
.fs8_c01198{font-size:59.136000pt;}
.fs2_c01198{font-size:59.840000pt;}
.fsa_c01198{font-size:63.360000pt;}
.fsd_c01198{font-size:66.528000pt;}
.fs0_c01198{font-size:66.704176pt;}
.fs3_c01198{font-size:70.400000pt;}
.fs1_c01198{font-size:79.200000pt;}
.fsc_c01198{font-size:81.664176pt;}
.fs4_c01198{font-size:87.296000pt;}
.y0_c01198{bottom:0.000000pt;}
.y22_c01198{bottom:16.395320pt;}
.y1_c01198{bottom:68.000000pt;}
.y21_c01198{bottom:119.988920pt;}
.y20_c01198{bottom:149.134520pt;}
.y1f_c01198{bottom:178.592520pt;}
.y1e_c01198{bottom:207.425720pt;}
.y1d_c01198{bottom:235.620920pt;}
.y1c_c01198{bottom:264.132920pt;}
.y1b_c01198{bottom:292.323720pt;}
.y1a_c01198{bottom:320.518920pt;}
.y19_c01198{bottom:349.352120pt;}
.y18_c01198{bottom:377.864120pt;}
.y17_c01198{bottom:406.692920pt;}
.y16_c01198{bottom:435.204920pt;}
.y11_c01198{bottom:458.326920pt;}
.y15_c01198{bottom:464.033720pt;}
.y10_c01198{bottom:464.350520pt;}
.y13_c01198{bottom:492.224520pt;}
.yf_c01198{bottom:492.541320pt;}
.y14_c01198{bottom:492.862520pt;}
.y12_c01198{bottom:513.133320pt;}
.ye_c01198{bottom:521.686920pt;}
.yc_c01198{bottom:549.569720pt;}
.yd_c01198{bottom:554.317320pt;}
.yb_c01198{bottom:578.394120pt;}
.ya_c01198{bottom:606.593720pt;}
.y9_c01198{bottom:634.472120pt;}
.y8_c01198{bottom:662.662920pt;}
.y7_c01198{bottom:691.179320pt;}
.y6_c01198{bottom:719.370120pt;}
.y5_c01198{bottom:747.886520pt;}
.y4_c01198{bottom:776.715320pt;}
.y3_c01198{bottom:833.739320pt;}
.y2_c01198{bottom:956.019720pt;}
.h7_c01198{height:30.382504pt;}
.h10_c01198{height:30.838500pt;}
.h8_c01198{height:36.290191pt;}
.hd_c01198{height:43.989000pt;}
.hb_c01198{height:48.538359pt;}
.h9_c01198{height:61.493438pt;}
.ha_c01198{height:61.677000pt;}
.hc_c01198{height:62.184375pt;}
.h4_c01198{height:62.411250pt;}
.hf_c01198{height:65.293594pt;}
.h2_c01198{height:65.466501pt;}
.h5_c01198{height:69.093750pt;}
.h3_c01198{height:77.730469pt;}
.he_c01198{height:85.173184pt;}
.h6_c01198{height:91.047000pt;}
.h1_c01198{height:986.666667pt;}
.h0_c01198{height:1122.666667pt;}
.w1_c01198{width:689.333333pt;}
.w0_c01198{width:793.333333pt;}
.x0_c01198{left:0.000000pt;}
.x1_c01198{left:52.000000pt;}
.x9_c01198{left:58.811853pt;}
.x3_c01198{left:73.811453pt;}
.x4e_c01198{left:110.459053pt;}
.x30_c01198{left:120.689053pt;}
.x4_c01198{left:121.824253pt;}
.x47_c01198{left:123.346653pt;}
.x48_c01198{left:130.448253pt;}
.x5f_c01198{left:131.931053pt;}
.xa_c01198{left:141.245853pt;}
.x31_c01198{left:142.156653pt;}
.x69_c01198{left:149.469453pt;}
.x13_c01198{left:151.845453pt;}
.x24_c01198{left:153.367853pt;}
.x6c_c01198{left:159.299053pt;}
.x52_c01198{left:160.368253pt;}
.x32_c01198{left:161.710253pt;}
.x3b_c01198{left:169.075853pt;}
.xb_c01198{left:171.196653pt;}
.x6e_c01198{left:180.177053pt;}
.x5_c01198{left:181.637853pt;}
.x53_c01198{left:190.173853pt;}
.x33_c01198{left:191.159453pt;}
.x6d_c01198{left:199.853853pt;}
.x4d_c01198{left:200.980253pt;}
.xc_c01198{left:211.399453pt;}
.x49_c01198{left:212.345453pt;}
.x2c_c01198{left:219.535053pt;}
.x25_c01198{left:220.745053pt;}
.x5a_c01198{left:229.421853pt;}
.x3c_c01198{left:230.627453pt;}
.x60_c01198{left:238.459453pt;}
.x66_c01198{left:239.959853pt;}
.x41_c01198{left:241.108253pt;}
.x6_c01198{left:249.846653pt;}
.x2f_c01198{left:251.914653pt;}
.x14_c01198{left:260.147053pt;}
.x6f_c01198{left:268.608253pt;}
.x42_c01198{left:269.699453pt;}
.x34_c01198{left:278.693053pt;}
.x61_c01198{left:280.497053pt;}
.x1c_c01198{left:289.622653pt;}
.xd_c01198{left:291.228653pt;}
.x26_c01198{left:298.409453pt;}
.x4a_c01198{left:300.407053pt;}
.x62_c01198{left:305.084253pt;}
.x35_c01198{left:309.299453pt;}
.x6a_c01198{left:317.712253pt;}
.x4b_c01198{left:318.649453pt;}
.x15_c01198{left:319.745053pt;}
.x43_c01198{left:329.284253pt;}
.x1d_c01198{left:330.208253pt;}
.xe_c01198{left:337.987453pt;}
.x2d_c01198{left:339.421853pt;}
.x4c_c01198{left:341.190653pt;}
.x1e_c01198{left:349.885053pt;}
.x36_c01198{left:350.800253pt;}
.x7_c01198{left:358.267053pt;}
.x16_c01198{left:359.265853pt;}
.x63_c01198{left:367.872253pt;}
.xf_c01198{left:369.121853pt;}
.x3d_c01198{left:370.947853pt;}
.x1f_c01198{left:378.216653pt;}
.x54_c01198{left:387.725053pt;}
.x72_c01198{left:395.557053pt;}
.x5b_c01198{left:397.251053pt;}
.x50_c01198{left:398.342253pt;}
.x8_c01198{left:400.150653pt;}
.x55_c01198{left:407.032253pt;}
.x27_c01198{left:408.114653pt;}
.x5d_c01198{left:417.178653pt;}
.x17_c01198{left:418.894653pt;}
.x39_c01198{left:426.964253pt;}
.x67_c01198{left:428.337053pt;}
.x20_c01198{left:430.061853pt;}
.x5c_c01198{left:436.503453pt;}
.x28_c01198{left:437.885053pt;}
.x59_c01198{left:446.319853pt;}
.x18_c01198{left:447.441853pt;}
.x2e_c01198{left:448.352653pt;}
.x68_c01198{left:455.551053pt;}
.x10_c01198{left:457.566253pt;}
.x44_c01198{left:467.373853pt;}
.x70_c01198{left:468.583853pt;}
.x6b_c01198{left:476.477453pt;}
.x3a_c01198{left:478.074653pt;}
.x71_c01198{left:484.599853pt;}
.x64_c01198{left:495.102653pt;}
.x29_c01198{left:496.880253pt;}
.x5e_c01198{left:505.988253pt;}
.x11_c01198{left:507.299453pt;}
.x45_c01198{left:516.196253pt;}
.x56_c01198{left:524.604653pt;}
.x19_c01198{left:525.660653pt;}
.x3e_c01198{left:535.631053pt;}
.x2a_c01198{left:545.161453pt;}
.x21_c01198{left:546.265853pt;}
.x12_c01198{left:554.348653pt;}
.x1a_c01198{left:556.055853pt;}
.x37_c01198{left:564.160653pt;}
.x57_c01198{left:566.101053pt;}
.x4f_c01198{left:572.569053pt;}
.x22_c01198{left:575.675453pt;}
.x3f_c01198{left:584.889053pt;}
.x65_c01198{left:592.699053pt;}
.x23_c01198{left:605.142253pt;}
.x51_c01198{left:613.678253pt;}
.x2_c01198{left:622.583853pt;}
.x2b_c01198{left:623.732253pt;}
.x1b_c01198{left:625.483453pt;}
.x38_c01198{left:633.984253pt;}
.x58_c01198{left:642.502653pt;}
.x46_c01198{left:643.532253pt;}
.x40_c01198{left:644.544253pt;}
}





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

.ir_c01199:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01199{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01199;src:url('chunks/assets/font_a16f0bc82b399072739f2b81.woff2')format("woff");}.ff1_c01199{font-family:ff1_c01199;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01199;src:url('chunks/assets/font_6fcaff39c4a741c7406e013c.woff2')format("woff");}.ff2_c01199{font-family:ff2_c01199;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01199;src:url('chunks/assets/font_b4c91956ea1515dcca1dbece.woff2')format("woff");}.ff3_c01199{font-family:ff3_c01199;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01199;src:url('chunks/assets/font_e09c6ffb732ba439c88870e9.woff2')format("woff");}.ff4_c01199{font-family:ff4_c01199;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01199;src:url('chunks/assets/font_4b4a1f1863051d1e132b5f08.woff2')format("woff");}.ff5_c01199{font-family:ff5_c01199;line-height:0.666000;font-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_c01199{transform:matrix(0.123016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123016,0.000000,0.000000,0.250000,0,0);}
.m43_c01199{transform:matrix(0.129329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129329,0.000000,0.000000,0.250000,0,0);}
.m3d_c01199{transform:matrix(0.160375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160375,0.000000,0.000000,0.250000,0,0);}
.m73_c01199{transform:matrix(0.162790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162790,0.000000,0.000000,0.250000,0,0);}
.m46_c01199{transform:matrix(0.168154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168154,0.000000,0.000000,0.250000,0,0);}
.m1d_c01199{transform:matrix(0.229807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229807,0.000000,0.000000,0.250000,0,0);}
.m6_c01199{transform:matrix(0.236055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236055,0.000000,0.000000,0.250000,0,0);}
.m6f_c01199{transform:matrix(0.237285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237285,0.000000,0.000000,0.250000,0,0);}
.m70_c01199{transform:matrix(0.243063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243063,0.000000,0.000000,0.250000,0,0);}
.m55_c01199{transform:matrix(0.245469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245469,0.000000,0.000000,0.250000,0,0);}
.m65_c01199{transform:matrix(0.246888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246888,0.000000,0.000000,0.250000,0,0);}
.m21_c01199{transform:matrix(0.247395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247395,0.000000,0.000000,0.250000,0,0);}
.m10_c01199{transform:matrix(0.249425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249425,0.000000,0.000000,0.250000,0,0);}
.m0_c01199{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m16_c01199{transform:matrix(0.250926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250926,0.000000,0.000000,0.250000,0,0);}
.m30_c01199{transform:matrix(0.252387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252387,0.000000,0.000000,0.250000,0,0);}
.m66_c01199{transform:matrix(0.254029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254029,0.000000,0.000000,0.250000,0,0);}
.m75_c01199{transform:matrix(0.254563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254563,0.000000,0.000000,0.250000,0,0);}
.m6c_c01199{transform:matrix(0.254828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254828,0.000000,0.000000,0.250000,0,0);}
.m38_c01199{transform:matrix(0.255491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255491,0.000000,0.000000,0.250000,0,0);}
.m4e_c01199{transform:matrix(0.255664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255664,0.000000,0.000000,0.250000,0,0);}
.m20_c01199{transform:matrix(0.262012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262012,0.000000,0.000000,0.250000,0,0);}
.m57_c01199{transform:matrix(0.262531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262531,0.000000,0.000000,0.250000,0,0);}
.m74_c01199{transform:matrix(0.263297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263297,0.000000,0.000000,0.250000,0,0);}
.m78_c01199{transform:matrix(0.263519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263519,0.000000,0.000000,0.250000,0,0);}
.m14_c01199{transform:matrix(0.264540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264540,0.000000,0.000000,0.250000,0,0);}
.m40_c01199{transform:matrix(0.265460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265460,0.000000,0.000000,0.250000,0,0);}
.mf_c01199{transform:matrix(0.266468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266468,0.000000,0.000000,0.250000,0,0);}
.m4_c01199{transform:matrix(0.266478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266478,0.000000,0.000000,0.250000,0,0);}
.m71_c01199{transform:matrix(0.267894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267894,0.000000,0.000000,0.250000,0,0);}
.m6d_c01199{transform:matrix(0.268895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268895,0.000000,0.000000,0.250000,0,0);}
.m8_c01199{transform:matrix(0.269567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269567,0.000000,0.000000,0.250000,0,0);}
.m3_c01199{transform:matrix(0.269915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269915,0.000000,0.000000,0.250000,0,0);}
.m37_c01199{transform:matrix(0.270287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270287,0.000000,0.000000,0.250000,0,0);}
.m22_c01199{transform:matrix(0.270893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270893,0.000000,0.000000,0.250000,0,0);}
.m4f_c01199{transform:matrix(0.271437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271437,0.000000,0.000000,0.250000,0,0);}
.m76_c01199{transform:matrix(0.271472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271472,0.000000,0.000000,0.250000,0,0);}
.m18_c01199{transform:matrix(0.272823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272823,0.000000,0.000000,0.250000,0,0);}
.m5b_c01199{transform:matrix(0.273274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273274,0.000000,0.000000,0.250000,0,0);}
.m69_c01199{transform:matrix(0.274441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274441,0.000000,0.000000,0.250000,0,0);}
.m7_c01199{transform:matrix(0.274635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274635,0.000000,0.000000,0.250000,0,0);}
.m2_c01199{transform:matrix(0.274646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274646,0.000000,0.000000,0.250000,0,0);}
.m3e_c01199{transform:matrix(0.274971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274971,0.000000,0.000000,0.250000,0,0);}
.m6b_c01199{transform:matrix(0.275114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275114,0.000000,0.000000,0.250000,0,0);}
.m17_c01199{transform:matrix(0.275262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275262,0.000000,0.000000,0.250000,0,0);}
.m47_c01199{transform:matrix(0.276927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276927,0.000000,0.000000,0.250000,0,0);}
.m60_c01199{transform:matrix(0.277856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277856,0.000000,0.000000,0.250000,0,0);}
.m12_c01199{transform:matrix(0.278154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278154,0.000000,0.000000,0.250000,0,0);}
.m5d_c01199{transform:matrix(0.278644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278644,0.000000,0.000000,0.250000,0,0);}
.m25_c01199{transform:matrix(0.278768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278768,0.000000,0.000000,0.250000,0,0);}
.m2c_c01199{transform:matrix(0.279067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279067,0.000000,0.000000,0.250000,0,0);}
.m3b_c01199{transform:matrix(0.279415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279415,0.000000,0.000000,0.250000,0,0);}
.m3f_c01199{transform:matrix(0.279670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279670,0.000000,0.000000,0.250000,0,0);}
.m63_c01199{transform:matrix(0.280361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280361,0.000000,0.000000,0.250000,0,0);}
.m1b_c01199{transform:matrix(0.280729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280729,0.000000,0.000000,0.250000,0,0);}
.m15_c01199{transform:matrix(0.280908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280908,0.000000,0.000000,0.250000,0,0);}
.m53_c01199{transform:matrix(0.283033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283033,0.000000,0.000000,0.250000,0,0);}
.m2a_c01199{transform:matrix(0.283296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283296,0.000000,0.000000,0.250000,0,0);}
.m2e_c01199{transform:matrix(0.283927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283927,0.000000,0.000000,0.250000,0,0);}
.m5_c01199{transform:matrix(0.285392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285392,0.000000,0.000000,0.250000,0,0);}
.m31_c01199{transform:matrix(0.286107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286107,0.000000,0.000000,0.250000,0,0);}
.m52_c01199{transform:matrix(0.286367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286367,0.000000,0.000000,0.250000,0,0);}
.m50_c01199{transform:matrix(0.287392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287392,0.000000,0.000000,0.250000,0,0);}
.m27_c01199{transform:matrix(0.287397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287397,0.000000,0.000000,0.250000,0,0);}
.m1e_c01199{transform:matrix(0.287735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287735,0.000000,0.000000,0.250000,0,0);}
.m3a_c01199{transform:matrix(0.287843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287843,0.000000,0.000000,0.250000,0,0);}
.m1_c01199{transform:matrix(0.289787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289787,0.000000,0.000000,0.250000,0,0);}
.m11_c01199{transform:matrix(0.289795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289795,0.000000,0.000000,0.250000,0,0);}
.m56_c01199{transform:matrix(0.290036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290036,0.000000,0.000000,0.250000,0,0);}
.m39_c01199{transform:matrix(0.290751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290751,0.000000,0.000000,0.250000,0,0);}
.m13_c01199{transform:matrix(0.291067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291067,0.000000,0.000000,0.250000,0,0);}
.m34_c01199{transform:matrix(0.291470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291470,0.000000,0.000000,0.250000,0,0);}
.md_c01199{transform:matrix(0.293004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293004,0.000000,0.000000,0.250000,0,0);}
.m3c_c01199{transform:matrix(0.293351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293351,0.000000,0.000000,0.250000,0,0);}
.m72_c01199{transform:matrix(0.294144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294144,0.000000,0.000000,0.250000,0,0);}
.m45_c01199{transform:matrix(0.298450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298450,0.000000,0.000000,0.250000,0,0);}
.m33_c01199{transform:matrix(0.298594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298594,0.000000,0.000000,0.250000,0,0);}
.m67_c01199{transform:matrix(0.299351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299351,0.000000,0.000000,0.250000,0,0);}
.m2d_c01199{transform:matrix(0.301433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301433,0.000000,0.000000,0.250000,0,0);}
.m41_c01199{transform:matrix(0.302820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302820,0.000000,0.000000,0.250000,0,0);}
.m2b_c01199{transform:matrix(0.304053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304053,0.000000,0.000000,0.250000,0,0);}
.m35_c01199{transform:matrix(0.304061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304061,0.000000,0.000000,0.250000,0,0);}
.m4d_c01199{transform:matrix(0.306973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306973,0.000000,0.000000,0.250000,0,0);}
.m2f_c01199{transform:matrix(0.307075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307075,0.000000,0.000000,0.250000,0,0);}
.m61_c01199{transform:matrix(0.307158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307158,0.000000,0.000000,0.250000,0,0);}
.m23_c01199{transform:matrix(0.308453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308453,0.000000,0.000000,0.250000,0,0);}
.m26_c01199{transform:matrix(0.311190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311190,0.000000,0.000000,0.250000,0,0);}
.m29_c01199{transform:matrix(0.311309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311309,0.000000,0.000000,0.250000,0,0);}
.m4b_c01199{transform:matrix(0.313411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313411,0.000000,0.000000,0.250000,0,0);}
.m4a_c01199{transform:matrix(0.314140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314140,0.000000,0.000000,0.250000,0,0);}
.m59_c01199{transform:matrix(0.315730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315730,0.000000,0.000000,0.250000,0,0);}
.m1f_c01199{transform:matrix(0.315981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315981,0.000000,0.000000,0.250000,0,0);}
.me_c01199{transform:matrix(0.318796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318796,0.000000,0.000000,0.250000,0,0);}
.m64_c01199{transform:matrix(0.321074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321074,0.000000,0.000000,0.250000,0,0);}
.m5c_c01199{transform:matrix(0.325663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325663,0.000000,0.000000,0.250000,0,0);}
.m9_c01199{transform:matrix(0.325945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325945,0.000000,0.000000,0.250000,0,0);}
.m5a_c01199{transform:matrix(0.326914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326914,0.000000,0.000000,0.250000,0,0);}
.ma_c01199{transform:matrix(0.327353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327353,0.000000,0.000000,0.250000,0,0);}
.m51_c01199{transform:matrix(0.327453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327453,0.000000,0.000000,0.250000,0,0);}
.m32_c01199{transform:matrix(0.328644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328644,0.000000,0.000000,0.250000,0,0);}
.m1a_c01199{transform:matrix(0.331133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331133,0.000000,0.000000,0.250000,0,0);}
.mb_c01199{transform:matrix(0.331491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331491,0.000000,0.000000,0.250000,0,0);}
.m48_c01199{transform:matrix(0.334389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334389,0.000000,0.000000,0.250000,0,0);}
.m36_c01199{transform:matrix(0.340640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340640,0.000000,0.000000,0.250000,0,0);}
.m58_c01199{transform:matrix(0.341746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341746,0.000000,0.000000,0.250000,0,0);}
.m5f_c01199{transform:matrix(0.345543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345543,0.000000,0.000000,0.250000,0,0);}
.m68_c01199{transform:matrix(0.347775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347775,0.000000,0.000000,0.250000,0,0);}
.m4c_c01199{transform:matrix(0.347919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347919,0.000000,0.000000,0.250000,0,0);}
.m6a_c01199{transform:matrix(0.354085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354085,0.000000,0.000000,0.250000,0,0);}
.m5e_c01199{transform:matrix(0.356721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356721,0.000000,0.000000,0.250000,0,0);}
.m6e_c01199{transform:matrix(0.362041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362041,0.000000,0.000000,0.250000,0,0);}
.m1c_c01199{transform:matrix(0.367190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367190,0.000000,0.000000,0.250000,0,0);}
.m28_c01199{transform:matrix(0.373665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373665,0.000000,0.000000,0.250000,0,0);}
.m19_c01199{transform:matrix(0.376990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376990,0.000000,0.000000,0.250000,0,0);}
.m54_c01199{transform:matrix(0.379260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379260,0.000000,0.000000,0.250000,0,0);}
.mc_c01199{transform:matrix(0.381875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381875,0.000000,0.000000,0.250000,0,0);}
.m62_c01199{transform:matrix(0.385974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385974,0.000000,0.000000,0.250000,0,0);}
.m24_c01199{transform:matrix(0.396432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396432,0.000000,0.000000,0.250000,0,0);}
.m44_c01199{transform:matrix(0.401569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401569,0.000000,0.000000,0.250000,0,0);}
.m77_c01199{transform:matrix(0.402163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402163,0.000000,0.000000,0.250000,0,0);}
.m49_c01199{transform:matrix(0.402725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402725,0.000000,0.000000,0.250000,0,0);}
.v0_c01199{vertical-align:0.000000px;}
.v1_c01199{vertical-align:8.531820px;}
.ls1a_c01199{letter-spacing:-3.049200px;}
.ls5_c01199{letter-spacing:-2.626477px;}
.lsf_c01199{letter-spacing:-2.577967px;}
.ls17_c01199{letter-spacing:-2.494800px;}
.ls16_c01199{letter-spacing:-2.311300px;}
.ls6_c01199{letter-spacing:-2.123694px;}
.ls8_c01199{letter-spacing:-0.795447px;}
.ls13_c01199{letter-spacing:-0.630354px;}
.ls18_c01199{letter-spacing:-0.240135px;}
.ls1_c01199{letter-spacing:0.000000px;}
.lsd_c01199{letter-spacing:0.821621px;}
.ls15_c01199{letter-spacing:1.831500px;}
.ls14_c01199{letter-spacing:3.129260px;}
.ls9_c01199{letter-spacing:3.399412px;}
.lsc_c01199{letter-spacing:3.465000px;}
.ls7_c01199{letter-spacing:3.564000px;}
.lsa_c01199{letter-spacing:3.583810px;}
.ls11_c01199{letter-spacing:3.623400px;}
.lse_c01199{letter-spacing:3.682810px;}
.ls12_c01199{letter-spacing:3.722400px;}
.ls3_c01199{letter-spacing:3.752110px;}
.lsb_c01199{letter-spacing:3.837834px;}
.ls2_c01199{letter-spacing:3.861000px;}
.ls19_c01199{letter-spacing:3.940200px;}
.ls4_c01199{letter-spacing:3.960000px;}
.ls1c_c01199{letter-spacing:4.118400px;}
.ls0_c01199{letter-spacing:4.677750px;}
.ls10_c01199{letter-spacing:59.875398px;}
.ls1b_c01199{letter-spacing:61.300998px;}
.sc__c01199{text-shadow:none;}
.sc0_c01199{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01199{-webkit-text-stroke:0px transparent;}
.sc0_c01199{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01199{word-spacing:-16.449250px;}
.ws1_c01199{word-spacing:0.000000px;}
._2_c01199{margin-left:-1.563012px;}
._4_c01199{width:4.787694px;}
._1_c01199{width:6.453711px;}
._3_c01199{width:16.134140px;}
._0_c01199{width:25.318915px;}
.fc0_c01199{color:transparent;}
.fs1_c01199{font-size:22.176000px;}
.fs7_c01199{font-size:32.076198px;}
.fs10_c01199{font-size:36.630000px;}
.fs6_c01199{font-size:37.422000px;}
.fs0_c01199{font-size:45.144000px;}
.fsa_c01199{font-size:54.054000px;}
.fsd_c01199{font-size:59.875398px;}
.fs13_c01199{font-size:61.300998px;}
.fs15_c01199{font-size:66.528000px;}
.fsc_c01199{font-size:67.914000px;}
.fs9_c01199{font-size:69.300000px;}
.fs5_c01199{font-size:71.280000px;}
.fs8_c01199{font-size:71.676198px;}
.fse_c01199{font-size:72.468000px;}
.fsb_c01199{font-size:73.656198px;}
.fsf_c01199{font-size:74.448000px;}
.fs3_c01199{font-size:75.042198px;}
.fs2_c01199{font-size:77.220000px;}
.fs11_c01199{font-size:78.804000px;}
.fs4_c01199{font-size:79.200000px;}
.fs14_c01199{font-size:82.368000px;}
.fs12_c01199{font-size:87.120000px;}
.y0_c01199{bottom:0.000000px;}
.y1c_c01199{bottom:37.685370px;}
.y1_c01199{bottom:76.500000px;}
.y1b_c01199{bottom:127.854570px;}
.y1a_c01199{bottom:192.367920px;}
.y19_c01199{bottom:225.151770px;}
.y18_c01199{bottom:225.152067px;}
.y16_c01199{bottom:257.945520px;}
.y17_c01199{bottom:263.647920px;}
.y15_c01199{bottom:290.377920px;}
.y14_c01199{bottom:354.168570px;}
.y13_c01199{bottom:386.962320px;}
.y12_c01199{bottom:450.045120px;}
.y11_c01199{bottom:482.121120px;}
.y10_c01199{bottom:544.847520px;}
.yf_c01199{bottom:545.911770px;}
.ye_c01199{bottom:578.344170px;}
.yd_c01199{bottom:610.781520px;}
.yc_c01199{bottom:675.284970px;}
.yb_c01199{bottom:739.441920px;}
.ya_c01199{bottom:769.379520px;}
.y9_c01199{bottom:771.512970px;}
.y2_c01199{bottom:786.481770px;}
.y8_c01199{bottom:804.301770px;}
.y7_c01199{bottom:867.740970px;}
.y6_c01199{bottom:900.886170px;}
.y5_c01199{bottom:932.610720px;}
.y4_c01199{bottom:1079.442570px;}
.y3_c01199{bottom:1087.283370px;}
.h3_c01199{height:23.128875px;}
.h9_c01199{height:31.481034px;}
.h13_c01199{height:38.203945px;}
.h10_c01199{height:39.877015px;}
.h16_c01199{height:40.826465px;}
.h2_c01199{height:47.083781px;}
.h8_c01199{height:47.561797px;}
.hc_c01199{height:53.051045px;}
.hf_c01199{height:68.444578px;}
.h18_c01199{height:69.386625px;}
.h7_c01199{height:69.957422px;}
.ha_c01199{height:70.346269px;}
.hb_c01199{height:72.277734px;}
.hd_c01199{height:72.289530px;}
.h11_c01199{height:73.034156px;}
.h12_c01199{height:73.066641px;}
.h5_c01199{height:73.649813px;}
.he_c01199{height:74.342813px;}
.h4_c01199{height:75.787207px;}
.h6_c01199{height:77.691797px;}
.h14_c01199{height:79.419656px;}
.h17_c01199{height:80.799469px;}
.h15_c01199{height:85.503516px;}
.h1_c01199{height:1110.000000px;}
.h0_c01199{height:1263.000000px;}
.w1_c01199{width:775.500000px;}
.w0_c01199{width:892.500000px;}
.x0_c01199{left:0.000000px;}
.x1_c01199{left:58.500000px;}
.x2_c01199{left:75.266385px;}
.x41_c01199{left:82.438935px;}
.x17_c01199{left:83.745735px;}
.x56_c01199{left:135.017835px;}
.x33_c01199{left:136.780035px;}
.x16_c01199{left:137.864085px;}
.x5_c01199{left:140.195535px;}
.x4e_c01199{left:159.391635px;}
.x20_c01199{left:170.920185px;}
.x34_c01199{left:177.068085px;}
.x28_c01199{left:182.765535px;}
.x49_c01199{left:184.092135px;}
.x4f_c01199{left:192.031935px;}
.x2d_c01199{left:193.338735px;}
.x42_c01199{left:195.610785px;}
.x57_c01199{left:203.100135px;}
.x39_c01199{left:206.144385px;}
.x46_c01199{left:215.767185px;}
.xf_c01199{left:217.905585px;}
.x3c_c01199{left:226.746285px;}
.x3a_c01199{left:236.997735px;}
.x18_c01199{left:238.596585px;}
.x47_c01199{left:247.813485px;}
.x2a_c01199{left:249.417285px;}
.x21_c01199{left:252.273435px;}
.x58_c01199{left:257.624385px;}
.x3d_c01199{left:260.965635px;}
.x6_c01199{left:267.311535px;}
.x22_c01199{left:271.212135px;}
.x5c_c01199{left:281.567535px;}
.x2e_c01199{left:283.577235px;}
.x50_c01199{left:293.462385px;}
.x19_c01199{left:294.749385px;}
.x43_c01199{left:303.951435px;}
.x10_c01199{left:305.258235px;}
.x2b_c01199{left:315.697785px;}
.x59_c01199{left:316.950135px;}
.x23_c01199{left:318.529185px;}
.x5a_c01199{left:325.295835px;}
.x7_c01199{left:326.399685px;}
.x8_c01199{left:339.626085px;}
.x24_c01199{left:349.164735px;}
.x1a_c01199{left:361.861485px;}
.x29_c01199{left:370.588335px;}
.x25_c01199{left:382.027785px;}
.x3e_c01199{left:383.389035px;}
.x1b_c01199{left:392.294085px;}
.x9_c01199{left:396.164985px;}
.x2f_c01199{left:404.743335px;}
.x4a_c01199{left:406.728285px;}
.x35_c01199{left:415.504635px;}
.x1c_c01199{left:416.727285px;}
.x4b_c01199{left:424.726485px;}
.x2c_c01199{left:426.632235px;}
.x11_c01199{left:428.498385px;}
.x26_c01199{left:439.170585px;}
.x51_c01199{left:448.238985px;}
.x5b_c01199{left:458.633985px;}
.xa_c01199{left:471.934635px;}
.x1d_c01199{left:481.968285px;}
.x52_c01199{left:492.298935px;}
.x3b_c01199{left:494.897685px;}
.x30_c01199{left:503.495835px;}
.xb_c01199{left:505.683735px;}
.x12_c01199{left:514.940235px;}
.x36_c01199{left:517.232085px;}
.x53_c01199{left:536.878635px;}
.x31_c01199{left:538.635885px;}
.xc_c01199{left:549.357585px;}
.x3f_c01199{left:559.019985px;}
.x54_c01199{left:570.583185px;}
.x37_c01199{left:581.260335px;}
.x1e_c01199{left:592.793835px;}
.xd_c01199{left:593.863035px;}
.x48_c01199{left:602.782935px;}
.x38_c01199{left:604.312485px;}
.x3_c01199{left:613.267035px;}
.x13_c01199{left:637.715085px;}
.x40_c01199{left:650.134635px;}
.x4c_c01199{left:659.490135px;}
.x44_c01199{left:666.776535px;}
.x14_c01199{left:671.840385px;}
.x27_c01199{left:682.274985px;}
.x45_c01199{left:683.616435px;}
.x4d_c01199{left:691.719585px;}
.xe_c01199{left:693.268935px;}
.x4_c01199{left:700.401885px;}
.x15_c01199{left:702.763035px;}
.x32_c01199{left:704.391585px;}
.x1f_c01199{left:715.113285px;}
.x55_c01199{left:725.102385px;}
@media print{
.v0_c01199{vertical-align:0.000000pt;}
.v1_c01199{vertical-align:7.583840pt;}
.ls1a_c01199{letter-spacing:-2.710400pt;}
.ls5_c01199{letter-spacing:-2.334646pt;}
.lsf_c01199{letter-spacing:-2.291526pt;}
.ls17_c01199{letter-spacing:-2.217600pt;}
.ls16_c01199{letter-spacing:-2.054489pt;}
.ls6_c01199{letter-spacing:-1.887728pt;}
.ls8_c01199{letter-spacing:-0.707064pt;}
.ls13_c01199{letter-spacing:-0.560315pt;}
.ls18_c01199{letter-spacing:-0.213453pt;}
.ls1_c01199{letter-spacing:0.000000pt;}
.lsd_c01199{letter-spacing:0.730330pt;}
.ls15_c01199{letter-spacing:1.628000pt;}
.ls14_c01199{letter-spacing:2.781564pt;}
.ls9_c01199{letter-spacing:3.021699pt;}
.lsc_c01199{letter-spacing:3.080000pt;}
.ls7_c01199{letter-spacing:3.168000pt;}
.lsa_c01199{letter-spacing:3.185609pt;}
.ls11_c01199{letter-spacing:3.220800pt;}
.lse_c01199{letter-spacing:3.273609pt;}
.ls12_c01199{letter-spacing:3.308800pt;}
.ls3_c01199{letter-spacing:3.335209pt;}
.lsb_c01199{letter-spacing:3.411408pt;}
.ls2_c01199{letter-spacing:3.432000pt;}
.ls19_c01199{letter-spacing:3.502400pt;}
.ls4_c01199{letter-spacing:3.520000pt;}
.ls1c_c01199{letter-spacing:3.660800pt;}
.ls0_c01199{letter-spacing:4.158000pt;}
.ls10_c01199{letter-spacing:53.222576pt;}
.ls1b_c01199{letter-spacing:54.489776pt;}
.ws0_c01199{word-spacing:-14.621555pt;}
.ws1_c01199{word-spacing:0.000000pt;}
._2_c01199{margin-left:-1.389344pt;}
._4_c01199{width:4.255728pt;}
._1_c01199{width:5.736632pt;}
._3_c01199{width:14.341458pt;}
._0_c01199{width:22.505702pt;}
.fs1_c01199{font-size:19.712000pt;}
.fs7_c01199{font-size:28.512176pt;}
.fs10_c01199{font-size:32.560000pt;}
.fs6_c01199{font-size:33.264000pt;}
.fs0_c01199{font-size:40.128000pt;}
.fsa_c01199{font-size:48.048000pt;}
.fsd_c01199{font-size:53.222576pt;}
.fs13_c01199{font-size:54.489776pt;}
.fs15_c01199{font-size:59.136000pt;}
.fsc_c01199{font-size:60.368000pt;}
.fs9_c01199{font-size:61.600000pt;}
.fs5_c01199{font-size:63.360000pt;}
.fs8_c01199{font-size:63.712176pt;}
.fse_c01199{font-size:64.416000pt;}
.fsb_c01199{font-size:65.472176pt;}
.fsf_c01199{font-size:66.176000pt;}
.fs3_c01199{font-size:66.704176pt;}
.fs2_c01199{font-size:68.640000pt;}
.fs11_c01199{font-size:70.048000pt;}
.fs4_c01199{font-size:70.400000pt;}
.fs14_c01199{font-size:73.216000pt;}
.fs12_c01199{font-size:77.440000pt;}
.y0_c01199{bottom:0.000000pt;}
.y1c_c01199{bottom:33.498107pt;}
.y1_c01199{bottom:68.000000pt;}
.y1b_c01199{bottom:113.648507pt;}
.y1a_c01199{bottom:170.993707pt;}
.y19_c01199{bottom:200.134907pt;}
.y18_c01199{bottom:200.135171pt;}
.y16_c01199{bottom:229.284907pt;}
.y17_c01199{bottom:234.353707pt;}
.y15_c01199{bottom:258.113707pt;}
.y14_c01199{bottom:314.816507pt;}
.y13_c01199{bottom:343.966507pt;}
.y12_c01199{bottom:400.040107pt;}
.y11_c01199{bottom:428.552107pt;}
.y10_c01199{bottom:484.308907pt;}
.yf_c01199{bottom:485.254907pt;}
.ye_c01199{bottom:514.083707pt;}
.yd_c01199{bottom:542.916907pt;}
.yc_c01199{bottom:600.253307pt;}
.yb_c01199{bottom:657.281707pt;}
.ya_c01199{bottom:683.892907pt;}
.y9_c01199{bottom:685.789307pt;}
.y2_c01199{bottom:699.094907pt;}
.y8_c01199{bottom:714.934907pt;}
.y7_c01199{bottom:771.325307pt;}
.y6_c01199{bottom:800.787707pt;}
.y5_c01199{bottom:828.987307pt;}
.y4_c01199{bottom:959.504507pt;}
.y3_c01199{bottom:966.474107pt;}
.h3_c01199{height:20.559000pt;}
.h9_c01199{height:27.983141pt;}
.h13_c01199{height:33.959063pt;}
.h10_c01199{height:35.446236pt;}
.h16_c01199{height:36.290191pt;}
.h2_c01199{height:41.852250pt;}
.h8_c01199{height:42.277153pt;}
.hc_c01199{height:47.156484pt;}
.hf_c01199{height:60.839625pt;}
.h18_c01199{height:61.677000pt;}
.h7_c01199{height:62.184375pt;}
.ha_c01199{height:62.530016pt;}
.hb_c01199{height:64.246875pt;}
.hd_c01199{height:64.257360pt;}
.h11_c01199{height:64.919250pt;}
.h12_c01199{height:64.948125pt;}
.h5_c01199{height:65.466501pt;}
.he_c01199{height:66.082500pt;}
.h4_c01199{height:67.366406pt;}
.h6_c01199{height:69.059375pt;}
.h14_c01199{height:70.595250pt;}
.h17_c01199{height:71.821750pt;}
.h15_c01199{height:76.003125pt;}
.h1_c01199{height:986.666667pt;}
.h0_c01199{height:1122.666667pt;}
.w1_c01199{width:689.333333pt;}
.w0_c01199{width:793.333333pt;}
.x0_c01199{left:0.000000pt;}
.x1_c01199{left:52.000000pt;}
.x2_c01199{left:66.903453pt;}
.x41_c01199{left:73.279053pt;}
.x17_c01199{left:74.440653pt;}
.x56_c01199{left:120.015853pt;}
.x33_c01199{left:121.582253pt;}
.x16_c01199{left:122.545853pt;}
.x5_c01199{left:124.618253pt;}
.x4e_c01199{left:141.681453pt;}
.x20_c01199{left:151.929053pt;}
.x34_c01199{left:157.393853pt;}
.x28_c01199{left:162.458253pt;}
.x49_c01199{left:163.637453pt;}
.x4f_c01199{left:170.695053pt;}
.x2d_c01199{left:171.856653pt;}
.x42_c01199{left:173.876253pt;}
.x57_c01199{left:180.533453pt;}
.x39_c01199{left:183.239453pt;}
.x46_c01199{left:191.793053pt;}
.xf_c01199{left:193.693853pt;}
.x3c_c01199{left:201.552253pt;}
.x3a_c01199{left:210.664653pt;}
.x18_c01199{left:212.085853pt;}
.x47_c01199{left:220.278653pt;}
.x2a_c01199{left:221.704253pt;}
.x21_c01199{left:224.243053pt;}
.x58_c01199{left:228.999453pt;}
.x3d_c01199{left:231.969453pt;}
.x6_c01199{left:237.610253pt;}
.x22_c01199{left:241.077453pt;}
.x5c_c01199{left:250.282253pt;}
.x2e_c01199{left:252.068653pt;}
.x50_c01199{left:260.855453pt;}
.x19_c01199{left:261.999453pt;}
.x43_c01199{left:270.179053pt;}
.x10_c01199{left:271.340653pt;}
.x2b_c01199{left:280.620253pt;}
.x59_c01199{left:281.733453pt;}
.x23_c01199{left:283.137053pt;}
.x5a_c01199{left:289.151853pt;}
.x7_c01199{left:290.133053pt;}
.x8_c01199{left:301.889853pt;}
.x24_c01199{left:310.368653pt;}
.x1a_c01199{left:321.654653pt;}
.x29_c01199{left:329.411853pt;}
.x25_c01199{left:339.580253pt;}
.x3e_c01199{left:340.790253pt;}
.x1b_c01199{left:348.705853pt;}
.x9_c01199{left:352.146653pt;}
.x2f_c01199{left:359.771853pt;}
.x4a_c01199{left:361.536253pt;}
.x35_c01199{left:369.337453pt;}
.x1c_c01199{left:370.424253pt;}
.x4b_c01199{left:377.534653pt;}
.x2c_c01199{left:379.228653pt;}
.x11_c01199{left:380.887453pt;}
.x26_c01199{left:390.373853pt;}
.x51_c01199{left:398.434653pt;}
.x5b_c01199{left:407.674653pt;}
.xa_c01199{left:419.497453pt;}
.x1d_c01199{left:428.416253pt;}
.x52_c01199{left:437.599053pt;}
.x3b_c01199{left:439.909053pt;}
.x30_c01199{left:447.551853pt;}
.xb_c01199{left:449.496653pt;}
.x12_c01199{left:457.724653pt;}
.x36_c01199{left:459.761853pt;}
.x53_c01199{left:477.225453pt;}
.x31_c01199{left:478.787453pt;}
.xc_c01199{left:488.317853pt;}
.x3f_c01199{left:496.906653pt;}
.x54_c01199{left:507.185053pt;}
.x37_c01199{left:516.675853pt;}
.x1e_c01199{left:526.927853pt;}
.xd_c01199{left:527.878253pt;}
.x48_c01199{left:535.807053pt;}
.x38_c01199{left:537.166653pt;}
.x3_c01199{left:545.126253pt;}
.x13_c01199{left:566.857853pt;}
.x40_c01199{left:577.897453pt;}
.x4c_c01199{left:586.213453pt;}
.x44_c01199{left:592.690253pt;}
.x14_c01199{left:597.191453pt;}
.x27_c01199{left:606.466653pt;}
.x45_c01199{left:607.659053pt;}
.x4d_c01199{left:614.861853pt;}
.xe_c01199{left:616.239053pt;}
.x4_c01199{left:622.579453pt;}
.x15_c01199{left:624.678253pt;}
.x32_c01199{left:626.125853pt;}
.x1f_c01199{left:635.656253pt;}
.x55_c01199{left:644.535453pt;}
}





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

.ir_c01200:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01200{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01200;src:url('chunks/assets/font_c7e2bdd0cc4e8fc09b005d80.woff2')format("woff");}.ff1_c01200{font-family:ff1_c01200;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01200;src:url('chunks/assets/font_b6871cea7b2e3795badb9272.woff2')format("woff");}.ff2_c01200{font-family:ff2_c01200;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01200;src:url('chunks/assets/font_c666299b3ebdab54736a61bc.woff2')format("woff");}.ff3_c01200{font-family:ff3_c01200;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01200;src:url('chunks/assets/font_f275561f66e3d29489fa1ce6.woff2')format("woff");}.ff4_c01200{font-family:ff4_c01200;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01200;src:url('chunks/assets/font_afce457828852efeeee2a57c.woff2')format("woff");}.ff5_c01200{font-family:ff5_c01200;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4a_c01200{transform:matrix(0.135558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135558,0.000000,0.000000,0.250000,0,0);}
.m46_c01200{transform:matrix(0.144186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144186,0.000000,0.000000,0.250000,0,0);}
.m49_c01200{transform:matrix(0.146170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146170,0.000000,0.000000,0.250000,0,0);}
.m47_c01200{transform:matrix(0.156977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156977,0.000000,0.000000,0.250000,0,0);}
.m33_c01200{transform:matrix(0.157413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157413,0.000000,0.000000,0.250000,0,0);}
.m22_c01200{transform:matrix(0.173878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173878,0.000000,0.000000,0.250000,0,0);}
.md_c01200{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m61_c01200{transform:matrix(0.208959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208959,0.000000,0.000000,0.250000,0,0);}
.m2e_c01200{transform:matrix(0.227910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227910,0.000000,0.000000,0.250000,0,0);}
.m9_c01200{transform:matrix(0.245226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245226,0.000000,0.000000,0.250000,0,0);}
.m0_c01200{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m31_c01200{transform:matrix(0.255585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255585,0.000000,0.000000,0.250000,0,0);}
.m7_c01200{transform:matrix(0.256338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256338,0.000000,0.000000,0.250000,0,0);}
.m2c_c01200{transform:matrix(0.257697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257697,0.000000,0.000000,0.250000,0,0);}
.m1_c01200{transform:matrix(0.259711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259711,0.000000,0.000000,0.250000,0,0);}
.m14_c01200{transform:matrix(0.259809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259809,0.000000,0.000000,0.250000,0,0);}
.m28_c01200{transform:matrix(0.263084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263084,0.000000,0.000000,0.250000,0,0);}
.m5a_c01200{transform:matrix(0.264028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264028,0.000000,0.000000,0.250000,0,0);}
.m3d_c01200{transform:matrix(0.266617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266617,0.000000,0.000000,0.250000,0,0);}
.m6_c01200{transform:matrix(0.268307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268307,0.000000,0.000000,0.250000,0,0);}
.m5d_c01200{transform:matrix(0.268324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268324,0.000000,0.000000,0.250000,0,0);}
.m39_c01200{transform:matrix(0.269717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269717,0.000000,0.000000,0.250000,0,0);}
.m21_c01200{transform:matrix(0.270287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270287,0.000000,0.000000,0.250000,0,0);}
.m48_c01200{transform:matrix(0.270809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270809,0.000000,0.000000,0.250000,0,0);}
.m12_c01200{transform:matrix(0.270960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270960,0.000000,0.000000,0.250000,0,0);}
.m20_c01200{transform:matrix(0.271820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271820,0.000000,0.000000,0.250000,0,0);}
.m5f_c01200{transform:matrix(0.273274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273274,0.000000,0.000000,0.250000,0,0);}
.m34_c01200{transform:matrix(0.273293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273293,0.000000,0.000000,0.250000,0,0);}
.mf_c01200{transform:matrix(0.273418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273418,0.000000,0.000000,0.250000,0,0);}
.m40_c01200{transform:matrix(0.273994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273994,0.000000,0.000000,0.250000,0,0);}
.m32_c01200{transform:matrix(0.274185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274185,0.000000,0.000000,0.250000,0,0);}
.m3c_c01200{transform:matrix(0.275404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275404,0.000000,0.000000,0.250000,0,0);}
.m59_c01200{transform:matrix(0.275710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275710,0.000000,0.000000,0.250000,0,0);}
.mc_c01200{transform:matrix(0.275917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275917,0.000000,0.000000,0.250000,0,0);}
.me_c01200{transform:matrix(0.276374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276374,0.000000,0.000000,0.250000,0,0);}
.m37_c01200{transform:matrix(0.276645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276645,0.000000,0.000000,0.250000,0,0);}
.m3a_c01200{transform:matrix(0.276775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276775,0.000000,0.000000,0.250000,0,0);}
.m5c_c01200{transform:matrix(0.278755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278755,0.000000,0.000000,0.250000,0,0);}
.m2d_c01200{transform:matrix(0.279376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279376,0.000000,0.000000,0.250000,0,0);}
.m41_c01200{transform:matrix(0.279589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279589,0.000000,0.000000,0.250000,0,0);}
.m8_c01200{transform:matrix(0.281087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281087,0.000000,0.000000,0.250000,0,0);}
.m23_c01200{transform:matrix(0.281859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281859,0.000000,0.000000,0.250000,0,0);}
.m1e_c01200{transform:matrix(0.283033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283033,0.000000,0.000000,0.250000,0,0);}
.mb_c01200{transform:matrix(0.283584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283584,0.000000,0.000000,0.250000,0,0);}
.ma_c01200{transform:matrix(0.284267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284267,0.000000,0.000000,0.250000,0,0);}
.m4f_c01200{transform:matrix(0.284738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284738,0.000000,0.000000,0.250000,0,0);}
.m4d_c01200{transform:matrix(0.284803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284803,0.000000,0.000000,0.250000,0,0);}
.m10_c01200{transform:matrix(0.285528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285528,0.000000,0.000000,0.250000,0,0);}
.m4e_c01200{transform:matrix(0.285700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285700,0.000000,0.000000,0.250000,0,0);}
.m35_c01200{transform:matrix(0.286107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286107,0.000000,0.000000,0.250000,0,0);}
.m57_c01200{transform:matrix(0.286580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286580,0.000000,0.000000,0.250000,0,0);}
.m52_c01200{transform:matrix(0.287377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287377,0.000000,0.000000,0.250000,0,0);}
.m5_c01200{transform:matrix(0.287524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287524,0.000000,0.000000,0.250000,0,0);}
.m3b_c01200{transform:matrix(0.287913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287913,0.000000,0.000000,0.250000,0,0);}
.m3f_c01200{transform:matrix(0.288109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288109,0.000000,0.000000,0.250000,0,0);}
.m43_c01200{transform:matrix(0.288113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288113,0.000000,0.000000,0.250000,0,0);}
.m51_c01200{transform:matrix(0.289521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289521,0.000000,0.000000,0.250000,0,0);}
.m4c_c01200{transform:matrix(0.289879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289879,0.000000,0.000000,0.250000,0,0);}
.m27_c01200{transform:matrix(0.289904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289904,0.000000,0.000000,0.250000,0,0);}
.m5b_c01200{transform:matrix(0.290127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290127,0.000000,0.000000,0.250000,0,0);}
.m42_c01200{transform:matrix(0.290220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290220,0.000000,0.000000,0.250000,0,0);}
.m26_c01200{transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);}
.m2f_c01200{transform:matrix(0.290590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290590,0.000000,0.000000,0.250000,0,0);}
.m2_c01200{transform:matrix(0.291270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291270,0.000000,0.000000,0.250000,0,0);}
.m18_c01200{transform:matrix(0.293489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293489,0.000000,0.000000,0.250000,0,0);}
.m1b_c01200{transform:matrix(0.296051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296051,0.000000,0.000000,0.250000,0,0);}
.m1c_c01200{transform:matrix(0.296803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296803,0.000000,0.000000,0.250000,0,0);}
.m19_c01200{transform:matrix(0.298138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298138,0.000000,0.000000,0.250000,0,0);}
.m15_c01200{transform:matrix(0.298478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298478,0.000000,0.000000,0.250000,0,0);}
.m1a_c01200{transform:matrix(0.300208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300208,0.000000,0.000000,0.250000,0,0);}
.m4_c01200{transform:matrix(0.301456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301456,0.000000,0.000000,0.250000,0,0);}
.m29_c01200{transform:matrix(0.301647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301647,0.000000,0.000000,0.250000,0,0);}
.m11_c01200{transform:matrix(0.304465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304465,0.000000,0.000000,0.250000,0,0);}
.m30_c01200{transform:matrix(0.305016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305016,0.000000,0.000000,0.250000,0,0);}
.m5e_c01200{transform:matrix(0.308136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308136,0.000000,0.000000,0.250000,0,0);}
.m63_c01200{transform:matrix(0.309400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309400,0.000000,0.000000,0.250000,0,0);}
.m56_c01200{transform:matrix(0.309822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309822,0.000000,0.000000,0.250000,0,0);}
.m44_c01200{transform:matrix(0.310126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310126,0.000000,0.000000,0.250000,0,0);}
.m64_c01200{transform:matrix(0.310165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310165,0.000000,0.000000,0.250000,0,0);}
.m16_c01200{transform:matrix(0.311382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311382,0.000000,0.000000,0.250000,0,0);}
.m55_c01200{transform:matrix(0.312954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312954,0.000000,0.000000,0.250000,0,0);}
.m53_c01200{transform:matrix(0.313390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313390,0.000000,0.000000,0.250000,0,0);}
.m54_c01200{transform:matrix(0.316072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316072,0.000000,0.000000,0.250000,0,0);}
.m36_c01200{transform:matrix(0.316759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316759,0.000000,0.000000,0.250000,0,0);}
.m3e_c01200{transform:matrix(0.317123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317123,0.000000,0.000000,0.250000,0,0);}
.m45_c01200{transform:matrix(0.318431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318431,0.000000,0.000000,0.250000,0,0);}
.m13_c01200{transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);}
.m17_c01200{transform:matrix(0.323915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323915,0.000000,0.000000,0.250000,0,0);}
.m3_c01200{transform:matrix(0.326738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326738,0.000000,0.000000,0.250000,0,0);}
.m1d_c01200{transform:matrix(0.331689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331689,0.000000,0.000000,0.250000,0,0);}
.m4b_c01200{transform:matrix(0.337471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337471,0.000000,0.000000,0.250000,0,0);}
.m38_c01200{transform:matrix(0.339772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339772,0.000000,0.000000,0.250000,0,0);}
.m58_c01200{transform:matrix(0.341192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341192,0.000000,0.000000,0.250000,0,0);}
.m24_c01200{transform:matrix(0.341977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341977,0.000000,0.000000,0.250000,0,0);}
.m62_c01200{transform:matrix(0.348458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348458,0.000000,0.000000,0.250000,0,0);}
.m50_c01200{transform:matrix(0.350583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350583,0.000000,0.000000,0.250000,0,0);}
.m2a_c01200{transform:matrix(0.352135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352135,0.000000,0.000000,0.250000,0,0);}
.m1f_c01200{transform:matrix(0.354500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354500,0.000000,0.000000,0.250000,0,0);}
.m60_c01200{transform:matrix(0.402725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402725,0.000000,0.000000,0.250000,0,0);}
.m2b_c01200{transform:matrix(0.421209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421209,0.000000,0.000000,0.250000,0,0);}
.m25_c01200{transform:matrix(0.439827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439827,0.000000,0.000000,0.250000,0,0);}
.v0_c01200{vertical-align:0.000000px;}
.ls9_c01200{letter-spacing:-3.104640px;}
.ls2_c01200{letter-spacing:-2.626477px;}
.lse_c01200{letter-spacing:-2.550240px;}
.ls7_c01200{letter-spacing:-1.770996px;}
.ls6_c01200{letter-spacing:-1.559769px;}
.lsf_c01200{letter-spacing:-1.185667px;}
.lsd_c01200{letter-spacing:-0.315177px;}
.ls0_c01200{letter-spacing:0.000000px;}
.lsc_c01200{letter-spacing:1.778500px;}
.ls3_c01200{letter-spacing:3.168000px;}
.lsa_c01200{letter-spacing:3.264336px;}
.ls8_c01200{letter-spacing:3.583810px;}
.ls1_c01200{letter-spacing:3.752110px;}
.ls5_c01200{letter-spacing:55.598598px;}
.ls4_c01200{letter-spacing:57.024198px;}
.lsb_c01200{letter-spacing:61.300998px;}
.sc__c01200{text-shadow:none;}
.sc0_c01200{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01200{-webkit-text-stroke:0px transparent;}
.sc0_c01200{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01200{word-spacing:-20.539050px;}
.ws1_c01200{word-spacing:0.000000px;}
._1_c01200{margin-left:-6.558281px;}
._3_c01200{width:4.097262px;}
._2_c01200{width:45.225111px;}
._0_c01200{width:47.502111px;}
.fc0_c01200{color:transparent;}
.fsd_c01200{font-size:22.176000px;}
.fs5_c01200{font-size:55.598598px;}
.fs4_c01200{font-size:57.024198px;}
.fs9_c01200{font-size:61.300998px;}
.fs0_c01200{font-size:62.568000px;}
.fs3_c01200{font-size:63.360000px;}
.fsa_c01200{font-size:66.330000px;}
.fs6_c01200{font-size:68.112198px;}
.fs7_c01200{font-size:71.676198px;}
.fsc_c01200{font-size:72.864000px;}
.fs1_c01200{font-size:75.042198px;}
.fs2_c01200{font-size:77.022198px;}
.fs8_c01200{font-size:88.704000px;}
.fsb_c01200{font-size:91.872198px;}
.y0_c01200{bottom:0.000000px;}
.y1_c01200{bottom:76.500000px;}
.y17_c01200{bottom:153.876735px;}
.y16_c01200{bottom:169.201935px;}
.y15_c01200{bottom:187.021935px;}
.y14_c01200{bottom:252.950985px;}
.y13_c01200{bottom:276.478335px;}
.y12_c01200{bottom:284.675535px;}
.y11_c01200{bottom:285.026985px;}
.y10_c01200{bottom:317.820735px;}
.yf_c01200{bottom:381.616335px;}
.ye_c01200{bottom:445.406985px;}
.yd_c01200{bottom:477.126585px;}
.yc_c01200{bottom:541.639935px;}
.yb_c01200{bottom:605.430585px;}
.ya_c01200{bottom:669.943935px;}
.y9_c01200{bottom:702.376335px;}
.y8_c01200{bottom:767.597535px;}
.y7_c01200{bottom:828.541935px;}
.y6_c01200{bottom:861.330735px;}
.y3_c01200{bottom:924.408585px;}
.y2_c01200{bottom:978.586335px;}
.y5_c01200{bottom:1071.958185px;}
.y4_c01200{bottom:1080.511785px;}
.hf_c01200{height:23.128875px;}
.h7_c01200{height:37.028666px;}
.h6_c01200{height:37.978116px;}
.hb_c01200{height:40.826465px;}
.h2_c01200{height:65.256469px;}
.h5_c01200{height:66.082500px;}
.hc_c01200{height:69.180117px;}
.h9_c01200{height:70.311270px;}
.h8_c01200{height:71.038894px;}
.he_c01200{height:71.512031px;}
.h3_c01200{height:73.649813px;}
.h4_c01200{height:80.331746px;}
.ha_c01200{height:92.515500px;}
.hd_c01200{height:95.819832px;}
.h1_c01200{height:1110.000000px;}
.h0_c01200{height:1263.000000px;}
.w1_c01200{width:775.500000px;}
.w0_c01200{width:892.500000px;}
.x0_c01200{left:0.000000px;}
.x1_c01200{left:58.500000px;}
.x36_c01200{left:79.815435px;}
.x2a_c01200{left:80.879685px;}
.x13_c01200{left:82.087485px;}
.x3_c01200{left:83.869485px;}
.x42_c01200{left:133.513035px;}
.x34_c01200{left:134.938635px;}
.x12_c01200{left:136.091985px;}
.xb_c01200{left:137.146335px;}
.x4_c01200{left:139.289685px;}
.x52_c01200{left:152.798235px;}
.x53_c01200{left:157.149285px;}
.x2b_c01200{left:160.342035px;}
.x43_c01200{left:180.097485px;}
.x2c_c01200{left:181.344885px;}
.x5_c01200{left:192.323985px;}
.x3a_c01200{left:200.887485px;}
.x4b_c01200{left:203.258535px;}
.x3b_c01200{left:206.396835px;}
.x54_c01200{left:212.717985px;}
.x3c_c01200{left:214.985085px;}
.x27_c01200{left:223.716885px;}
.x23_c01200{left:225.746385px;}
.x4c_c01200{left:234.047535px;}
.x14_c01200{left:237.136335px;}
.xc_c01200{left:248.313435px;}
.x24_c01200{left:258.376785px;}
.x1c_c01200{left:269.370735px;}
.x6_c01200{left:281.077485px;}
.x4e_c01200{left:290.898285px;}
.x2d_c01200{left:292.002135px;}
.x44_c01200{left:301.728885px;}
.x28_c01200{left:303.550485px;}
.x15_c01200{left:304.807785px;}
.x4f_c01200{left:323.508885px;}
.x3d_c01200{left:324.889935px;}
.x29_c01200{left:327.206535px;}
.x45_c01200{left:334.606785px;}
.x2_c01200{left:336.398685px;}
.xd_c01200{left:347.372835px;}
.x16_c01200{left:357.361935px;}
.x37_c01200{left:369.598335px;}
.x30_c01200{left:372.023835px;}
.x35_c01200{left:380.518035px;}
.xe_c01200{left:391.615935px;}
.x7_c01200{left:403.030635px;}
.x1d_c01200{left:412.653435px;}
.x46_c01200{left:413.722635px;}
.x3e_c01200{left:415.643235px;}
.x2e_c01200{left:424.008735px;}
.x17_c01200{left:446.808435px;}
.x4d_c01200{left:459.851685px;}
.xf_c01200{left:470.078385px;}
.x38_c01200{left:478.988385px;}
.x47_c01200{left:480.428835px;}
.x1e_c01200{left:483.676035px;}
.x50_c01200{left:501.055485px;}
.x1f_c01200{left:502.466235px;}
.x31_c01200{left:504.079935px;}
.x18_c01200{left:513.856185px;}
.x39_c01200{left:525.320385px;}
.x10_c01200{left:535.200585px;}
.x25_c01200{left:536.631135px;}
.x32_c01200{left:546.961785px;}
.x2f_c01200{left:560.000085px;}
.x19_c01200{left:568.741785px;}
.x20_c01200{left:580.022835px;}
.x48_c01200{left:591.066285px;}
.x49_c01200{left:602.787885px;}
.x3f_c01200{left:622.894785px;}
.x1a_c01200{left:623.973885px;}
.x26_c01200{left:625.231185px;}
.x11_c01200{left:635.329185px;}
.x40_c01200{left:645.199485px;}
.x4a_c01200{left:646.580535px;}
.x51_c01200{left:666.791385px;}
.x1b_c01200{left:670.781085px;}
.x21_c01200{left:681.190935px;}
.x8_c01200{left:696.877485px;}
.xa_c01200{left:707.143785px;}
.x9_c01200{left:708.608985px;}
.x33_c01200{left:713.618385px;}
.x22_c01200{left:714.633135px;}
.x41_c01200{left:737.076435px;}
@media print{
.v0_c01200{vertical-align:0.000000pt;}
.ls9_c01200{letter-spacing:-2.759680pt;}
.ls2_c01200{letter-spacing:-2.334646pt;}
.lse_c01200{letter-spacing:-2.266880pt;}
.ls7_c01200{letter-spacing:-1.574219pt;}
.ls6_c01200{letter-spacing:-1.386462pt;}
.lsf_c01200{letter-spacing:-1.053926pt;}
.lsd_c01200{letter-spacing:-0.280158pt;}
.ls0_c01200{letter-spacing:0.000000pt;}
.lsc_c01200{letter-spacing:1.580889pt;}
.ls3_c01200{letter-spacing:2.816000pt;}
.lsa_c01200{letter-spacing:2.901632pt;}
.ls8_c01200{letter-spacing:3.185609pt;}
.ls1_c01200{letter-spacing:3.335209pt;}
.ls5_c01200{letter-spacing:49.420976pt;}
.ls4_c01200{letter-spacing:50.688176pt;}
.lsb_c01200{letter-spacing:54.489776pt;}
.ws0_c01200{word-spacing:-18.256933pt;}
.ws1_c01200{word-spacing:0.000000pt;}
._1_c01200{margin-left:-5.829583pt;}
._3_c01200{width:3.642011pt;}
._2_c01200{width:40.200098pt;}
._0_c01200{width:42.224098pt;}
.fsd_c01200{font-size:19.712000pt;}
.fs5_c01200{font-size:49.420976pt;}
.fs4_c01200{font-size:50.688176pt;}
.fs9_c01200{font-size:54.489776pt;}
.fs0_c01200{font-size:55.616000pt;}
.fs3_c01200{font-size:56.320000pt;}
.fsa_c01200{font-size:58.960000pt;}
.fs6_c01200{font-size:60.544176pt;}
.fs7_c01200{font-size:63.712176pt;}
.fsc_c01200{font-size:64.768000pt;}
.fs1_c01200{font-size:66.704176pt;}
.fs2_c01200{font-size:68.464176pt;}
.fs8_c01200{font-size:78.848000pt;}
.fsb_c01200{font-size:81.664176pt;}
.y0_c01200{bottom:0.000000pt;}
.y1_c01200{bottom:68.000000pt;}
.y17_c01200{bottom:136.779320pt;}
.y16_c01200{bottom:150.401720pt;}
.y15_c01200{bottom:166.241720pt;}
.y14_c01200{bottom:224.845320pt;}
.y13_c01200{bottom:245.758520pt;}
.y12_c01200{bottom:253.044920pt;}
.y11_c01200{bottom:253.357320pt;}
.y10_c01200{bottom:282.507320pt;}
.yf_c01200{bottom:339.214520pt;}
.ye_c01200{bottom:395.917320pt;}
.yd_c01200{bottom:424.112520pt;}
.yc_c01200{bottom:481.457720pt;}
.yb_c01200{bottom:538.160520pt;}
.ya_c01200{bottom:595.505720pt;}
.y9_c01200{bottom:624.334520pt;}
.y8_c01200{bottom:682.308920pt;}
.y7_c01200{bottom:736.481720pt;}
.y6_c01200{bottom:765.627320pt;}
.y3_c01200{bottom:821.696520pt;}
.y2_c01200{bottom:869.854520pt;}
.y5_c01200{bottom:952.851720pt;}
.y4_c01200{bottom:960.454920pt;}
.hf_c01200{height:20.559000pt;}
.h7_c01200{height:32.914370pt;}
.h6_c01200{height:33.758325pt;}
.hb_c01200{height:36.290191pt;}
.h2_c01200{height:58.005750pt;}
.h5_c01200{height:58.740000pt;}
.hc_c01200{height:61.493438pt;}
.h9_c01200{height:62.498907pt;}
.h8_c01200{height:63.145684pt;}
.he_c01200{height:63.566250pt;}
.h3_c01200{height:65.466501pt;}
.h4_c01200{height:71.405996pt;}
.ha_c01200{height:82.236000pt;}
.hd_c01200{height:85.173184pt;}
.h1_c01200{height:986.666667pt;}
.h0_c01200{height:1122.666667pt;}
.w1_c01200{width:689.333333pt;}
.w0_c01200{width:793.333333pt;}
.x0_c01200{left:0.000000pt;}
.x1_c01200{left:52.000000pt;}
.x36_c01200{left:70.947053pt;}
.x2a_c01200{left:71.893053pt;}
.x13_c01200{left:72.966653pt;}
.x3_c01200{left:74.550653pt;}
.x42_c01200{left:118.678253pt;}
.x34_c01200{left:119.945453pt;}
.x12_c01200{left:120.970653pt;}
.xb_c01200{left:121.907853pt;}
.x4_c01200{left:123.813053pt;}
.x52_c01200{left:135.820653pt;}
.x53_c01200{left:139.688253pt;}
.x2b_c01200{left:142.526253pt;}
.x43_c01200{left:160.086653pt;}
.x2c_c01200{left:161.195453pt;}
.x5_c01200{left:170.954653pt;}
.x3a_c01200{left:178.566653pt;}
.x4b_c01200{left:180.674253pt;}
.x3b_c01200{left:183.463853pt;}
.x54_c01200{left:189.082653pt;}
.x3c_c01200{left:191.097853pt;}
.x27_c01200{left:198.859453pt;}
.x23_c01200{left:200.663453pt;}
.x4c_c01200{left:208.042253pt;}
.x14_c01200{left:210.787853pt;}
.xc_c01200{left:220.723053pt;}
.x24_c01200{left:229.668253pt;}
.x1c_c01200{left:239.440653pt;}
.x6_c01200{left:249.846653pt;}
.x4e_c01200{left:258.576253pt;}
.x2d_c01200{left:259.557453pt;}
.x44_c01200{left:268.203453pt;}
.x28_c01200{left:269.822653pt;}
.x15_c01200{left:270.940253pt;}
.x4f_c01200{left:287.563453pt;}
.x3d_c01200{left:288.791053pt;}
.x29_c01200{left:290.850253pt;}
.x45_c01200{left:297.428253pt;}
.x2_c01200{left:299.021053pt;}
.xd_c01200{left:308.775853pt;}
.x16_c01200{left:317.655053pt;}
.x37_c01200{left:328.531853pt;}
.x30_c01200{left:330.687853pt;}
.x35_c01200{left:338.238253pt;}
.xe_c01200{left:348.103053pt;}
.x7_c01200{left:358.249453pt;}
.x1d_c01200{left:366.803053pt;}
.x46_c01200{left:367.753453pt;}
.x3e_c01200{left:369.460653pt;}
.x2e_c01200{left:376.896653pt;}
.x17_c01200{left:397.163053pt;}
.x4d_c01200{left:408.757053pt;}
.xf_c01200{left:417.847453pt;}
.x38_c01200{left:425.767453pt;}
.x47_c01200{left:427.047853pt;}
.x1e_c01200{left:429.934253pt;}
.x50_c01200{left:445.382653pt;}
.x1f_c01200{left:446.636653pt;}
.x31_c01200{left:448.071053pt;}
.x18_c01200{left:456.761053pt;}
.x39_c01200{left:466.951453pt;}
.x10_c01200{left:475.733853pt;}
.x25_c01200{left:477.005453pt;}
.x32_c01200{left:486.188253pt;}
.x2f_c01200{left:497.777853pt;}
.x19_c01200{left:505.548253pt;}
.x20_c01200{left:515.575853pt;}
.x48_c01200{left:525.392253pt;}
.x49_c01200{left:535.811453pt;}
.x3f_c01200{left:553.684253pt;}
.x1a_c01200{left:554.643453pt;}
.x26_c01200{left:555.761053pt;}
.x11_c01200{left:564.737053pt;}
.x40_c01200{left:573.510653pt;}
.x4a_c01200{left:574.738253pt;}
.x51_c01200{left:592.703453pt;}
.x1b_c01200{left:596.249853pt;}
.x21_c01200{left:605.503053pt;}
.x8_c01200{left:619.446653pt;}
.xa_c01200{left:628.572253pt;}
.x9_c01200{left:629.874653pt;}
.x33_c01200{left:634.327453pt;}
.x22_c01200{left:635.229453pt;}
.x41_c01200{left:655.179053pt;}
}





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

.ir_c01201:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01201{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01201;src:url('chunks/assets/font_637c34af301a75e222e352b5.woff2')format("woff");}.ff1_c01201{font-family:ff1_c01201;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01201;src:url('chunks/assets/font_1688589ec7bc2422c5c0f1ce.woff2')format("woff");}.ff2_c01201{font-family:ff2_c01201;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01201;src:url('chunks/assets/font_e289691b8e8c44aa59754698.woff2')format("woff");}.ff3_c01201{font-family:ff3_c01201;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01201;src:url('chunks/assets/font_e5214ec4c130bdf2b98817b8.woff2')format("woff");}.ff4_c01201{font-family:ff4_c01201;line-height:0.666000;font-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_c01201{transform:matrix(0.085366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085366,0.000000,0.000000,0.250000,0,0);}
.m52_c01201{transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);}
.m4e_c01201{transform:matrix(0.169208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169208,0.000000,0.000000,0.250000,0,0);}
.m43_c01201{transform:matrix(0.173621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173621,0.000000,0.000000,0.250000,0,0);}
.m4c_c01201{transform:matrix(0.176830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176830,0.000000,0.000000,0.250000,0,0);}
.m48_c01201{transform:matrix(0.178572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178572,0.000000,0.000000,0.250000,0,0);}
.m4d_c01201{transform:matrix(0.185976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185976,0.000000,0.000000,0.250000,0,0);}
.m0_c01201{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01201{transform:matrix(0.252458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252458,0.000000,0.000000,0.250000,0,0);}
.m3f_c01201{transform:matrix(0.253254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253254,0.000000,0.000000,0.250000,0,0);}
.m2b_c01201{transform:matrix(0.255172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255172,0.000000,0.000000,0.250000,0,0);}
.m1c_c01201{transform:matrix(0.256263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256263,0.000000,0.000000,0.250000,0,0);}
.m45_c01201{transform:matrix(0.256806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256806,0.000000,0.000000,0.250000,0,0);}
.m3d_c01201{transform:matrix(0.257378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257378,0.000000,0.000000,0.250000,0,0);}
.m1_c01201{transform:matrix(0.258149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258149,0.000000,0.000000,0.250000,0,0);}
.mf_c01201{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m1f_c01201{transform:matrix(0.259184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259184,0.000000,0.000000,0.250000,0,0);}
.m1e_c01201{transform:matrix(0.259457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259457,0.000000,0.000000,0.250000,0,0);}
.m18_c01201{transform:matrix(0.261259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261259,0.000000,0.000000,0.250000,0,0);}
.m24_c01201{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.m36_c01201{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m39_c01201{transform:matrix(0.263842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263842,0.000000,0.000000,0.250000,0,0);}
.ma_c01201{transform:matrix(0.265249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265249,0.000000,0.000000,0.250000,0,0);}
.m2d_c01201{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m3e_c01201{transform:matrix(0.266955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266955,0.000000,0.000000,0.250000,0,0);}
.m7_c01201{transform:matrix(0.267184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267184,0.000000,0.000000,0.250000,0,0);}
.m1a_c01201{transform:matrix(0.267731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267731,0.000000,0.000000,0.250000,0,0);}
.m8_c01201{transform:matrix(0.269021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269021,0.000000,0.000000,0.250000,0,0);}
.m23_c01201{transform:matrix(0.270873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270873,0.000000,0.000000,0.250000,0,0);}
.m12_c01201{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m31_c01201{transform:matrix(0.271423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271423,0.000000,0.000000,0.250000,0,0);}
.m22_c01201{transform:matrix(0.273271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273271,0.000000,0.000000,0.250000,0,0);}
.m9_c01201{transform:matrix(0.274559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274559,0.000000,0.000000,0.250000,0,0);}
.m2f_c01201{transform:matrix(0.274757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274757,0.000000,0.000000,0.250000,0,0);}
.m6_c01201{transform:matrix(0.274855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274855,0.000000,0.000000,0.250000,0,0);}
.m41_c01201{transform:matrix(0.274957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274957,0.000000,0.000000,0.250000,0,0);}
.m50_c01201{transform:matrix(0.274974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274974,0.000000,0.000000,0.250000,0,0);}
.m51_c01201{transform:matrix(0.275182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275182,0.000000,0.000000,0.250000,0,0);}
.m5_c01201{transform:matrix(0.276113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276113,0.000000,0.000000,0.250000,0,0);}
.m49_c01201{transform:matrix(0.277092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277092,0.000000,0.000000,0.250000,0,0);}
.m29_c01201{transform:matrix(0.277131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277131,0.000000,0.000000,0.250000,0,0);}
.m19_c01201{transform:matrix(0.280064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280064,0.000000,0.000000,0.250000,0,0);}
.m11_c01201{transform:matrix(0.280426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280426,0.000000,0.000000,0.250000,0,0);}
.m4a_c01201{transform:matrix(0.282790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282790,0.000000,0.000000,0.250000,0,0);}
.m28_c01201{transform:matrix(0.286496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286496,0.000000,0.000000,0.250000,0,0);}
.m3c_c01201{transform:matrix(0.287325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287325,0.000000,0.000000,0.250000,0,0);}
.m16_c01201{transform:matrix(0.287672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287672,0.000000,0.000000,0.250000,0,0);}
.m3b_c01201{transform:matrix(0.288902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288902,0.000000,0.000000,0.250000,0,0);}
.m17_c01201{transform:matrix(0.289477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289477,0.000000,0.000000,0.250000,0,0);}
.m34_c01201{transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);}
.m4f_c01201{transform:matrix(0.290689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290689,0.000000,0.000000,0.250000,0,0);}
.m40_c01201{transform:matrix(0.291513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291513,0.000000,0.000000,0.250000,0,0);}
.m20_c01201{transform:matrix(0.292093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292093,0.000000,0.000000,0.250000,0,0);}
.m46_c01201{transform:matrix(0.294292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294292,0.000000,0.000000,0.250000,0,0);}
.m2_c01201{transform:matrix(0.294408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294408,0.000000,0.000000,0.250000,0,0);}
.m21_c01201{transform:matrix(0.295524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295524,0.000000,0.000000,0.250000,0,0);}
.mb_c01201{transform:matrix(0.297644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297644,0.000000,0.000000,0.250000,0,0);}
.m4b_c01201{transform:matrix(0.299037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299037,0.000000,0.000000,0.250000,0,0);}
.m33_c01201{transform:matrix(0.301823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301823,0.000000,0.000000,0.250000,0,0);}
.m44_c01201{transform:matrix(0.304008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304008,0.000000,0.000000,0.250000,0,0);}
.md_c01201{transform:matrix(0.306461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306461,0.000000,0.000000,0.250000,0,0);}
.m32_c01201{transform:matrix(0.306522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306522,0.000000,0.000000,0.250000,0,0);}
.m35_c01201{transform:matrix(0.307528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307528,0.000000,0.000000,0.250000,0,0);}
.m1d_c01201{transform:matrix(0.307567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307567,0.000000,0.000000,0.250000,0,0);}
.m27_c01201{transform:matrix(0.309695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309695,0.000000,0.000000,0.250000,0,0);}
.m42_c01201{transform:matrix(0.311940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311940,0.000000,0.000000,0.250000,0,0);}
.m3_c01201{transform:matrix(0.313301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313301,0.000000,0.000000,0.250000,0,0);}
.m37_c01201{transform:matrix(0.314298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314298,0.000000,0.000000,0.250000,0,0);}
.m26_c01201{transform:matrix(0.314941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314941,0.000000,0.000000,0.250000,0,0);}
.m13_c01201{transform:matrix(0.316088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316088,0.000000,0.000000,0.250000,0,0);}
.m25_c01201{transform:matrix(0.316807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316807,0.000000,0.000000,0.250000,0,0);}
.m38_c01201{transform:matrix(0.317604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317604,0.000000,0.000000,0.250000,0,0);}
.m2c_c01201{transform:matrix(0.317989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317989,0.000000,0.000000,0.250000,0,0);}
.m3a_c01201{transform:matrix(0.321611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321611,0.000000,0.000000,0.250000,0,0);}
.m4_c01201{transform:matrix(0.324729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324729,0.000000,0.000000,0.250000,0,0);}
.mc_c01201{transform:matrix(0.327402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327402,0.000000,0.000000,0.250000,0,0);}
.m2a_c01201{transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333223,0.000000,0.000000,0.250000,0,0);}
.m30_c01201{transform:matrix(0.339158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339158,0.000000,0.000000,0.250000,0,0);}
.m14_c01201{transform:matrix(0.351222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351222,0.000000,0.000000,0.250000,0,0);}
.m1b_c01201{transform:matrix(0.351336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351336,0.000000,0.000000,0.250000,0,0);}
.m10_c01201{transform:matrix(0.367188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367188,0.000000,0.000000,0.250000,0,0);}
.m2e_c01201{transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);}
.me_c01201{transform:matrix(0.385974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385974,0.000000,0.000000,0.250000,0,0);}
.v0_c01201{vertical-align:0.000000px;}
.ls12_c01201{letter-spacing:-2.744280px;}
.lsb_c01201{letter-spacing:-0.925214px;}
.ls4_c01201{letter-spacing:0.000000px;}
.ls9_c01201{letter-spacing:1.442707px;}
.ls3_c01201{letter-spacing:1.466230px;}
.lsa_c01201{letter-spacing:1.831500px;}
.ls11_c01201{letter-spacing:2.145949px;}
.ls0_c01201{letter-spacing:2.611224px;}
.ls2_c01201{letter-spacing:2.968812px;}
.ls8_c01201{letter-spacing:3.442824px;}
.lsc_c01201{letter-spacing:3.564000px;}
.ls7_c01201{letter-spacing:3.801610px;}
.lsd_c01201{letter-spacing:3.821400px;}
.ls10_c01201{letter-spacing:3.841200px;}
.lse_c01201{letter-spacing:3.857674px;}
.ls6_c01201{letter-spacing:3.920400px;}
.lsf_c01201{letter-spacing:4.118400px;}
.ls5_c01201{letter-spacing:4.158000px;}
.ls1_c01201{letter-spacing:28.939680px;}
.ls14_c01201{letter-spacing:31.363200px;}
.ls13_c01201{letter-spacing:58.449798px;}
.sc__c01201{text-shadow:none;}
.sc0_c01201{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01201{-webkit-text-stroke:0px transparent;}
.sc0_c01201{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01201{word-spacing:-19.602000px;}
.ws2_c01201{word-spacing:0.000000px;}
.ws1_c01201{word-spacing:4.861296px;}
._3_c01201{margin-left:-13.172544px;}
._5_c01201{margin-left:-10.271448px;}
._4_c01201{margin-left:-7.370352px;}
._6_c01201{width:13.564584px;}
._0_c01201{width:20.542104px;}
._1_c01201{width:22.665060px;}
._7_c01201{width:23.997600px;}
._2_c01201{width:77.986260px;}
.fc0_c01201{color:transparent;}
.fs10_c01201{font-size:31.363200px;}
.fs0_c01201{font-size:33.264000px;}
.fsf_c01201{font-size:34.650000px;}
.fs6_c01201{font-size:36.630000px;}
.fsa_c01201{font-size:45.144000px;}
.fsd_c01201{font-size:58.449798px;}
.fs1_c01201{font-size:65.538000px;}
.fs5_c01201{font-size:66.330000px;}
.fs7_c01201{font-size:71.280000px;}
.fse_c01201{font-size:73.656198px;}
.fs4_c01201{font-size:76.032198px;}
.fs8_c01201{font-size:76.428000px;}
.fsb_c01201{font-size:76.824000px;}
.fs3_c01201{font-size:78.408000px;}
.fsc_c01201{font-size:78.606198px;}
.fs9_c01201{font-size:82.368000px;}
.fs2_c01201{font-size:83.160000px;}
.y0_c01201{bottom:0.000000px;}
.y1_c01201{bottom:76.500000px;}
.y17_c01201{bottom:90.793935px;}
.y16_c01201{bottom:102.550185px;}
.y15_c01201{bottom:120.018735px;}
.y14_c01201{bottom:151.738335px;}
.y13_c01201{bottom:221.236335px;}
.y12_c01201{bottom:284.670585px;}
.y11_c01201{bottom:347.753385px;}
.y10_c01201{bottom:476.770185px;}
.yf_c01201{bottom:509.563935px;}
.ye_c01201{bottom:560.529135px;}
.yd_c01201{bottom:573.359535px;}
.yc_c01201{bottom:605.430585px;}
.yb_c01201{bottom:670.300335px;}
.ya_c01201{bottom:733.739535px;}
.y9_c01201{bottom:766.166985px;}
.y7_c01201{bottom:798.599385px;}
.y8_c01201{bottom:804.301785px;}
.y3_c01201{bottom:809.291385px;}
.y2_c01201{bottom:832.813785px;}
.y6_c01201{bottom:860.969385px;}
.y5_c01201{bottom:926.190585px;}
.y4_c01201{bottom:1082.650185px;}
.h11_c01201{height:20.887891px;}
.h2_c01201{height:34.693313px;}
.h10_c01201{height:36.138867px;}
.h7_c01201{height:38.203945px;}
.he_c01201{height:38.927565px;}
.hb_c01201{height:47.083781px;}
.h3_c01201{height:64.321963px;}
.h8_c01201{height:69.957422px;}
.h6_c01201{height:74.584319px;}
.h9_c01201{height:75.009902px;}
.hc_c01201{height:75.398555px;}
.hf_c01201{height:76.821113px;}
.h5_c01201{height:76.953164px;}
.hd_c01201{height:77.147685px;}
.ha_c01201{height:80.839688px;}
.h4_c01201{height:81.616992px;}
.h1_c01201{height:1110.000000px;}
.h0_c01201{height:1263.000000px;}
.w1_c01201{width:775.500000px;}
.w0_c01201{width:892.500000px;}
.x0_c01201{left:0.000000px;}
.x3_c01201{left:17.608785px;}
.x2_c01201{left:31.934085px;}
.x1_c01201{left:58.500000px;}
.xd_c01201{left:62.312235px;}
.x2c_c01201{left:76.241535px;}
.x11_c01201{left:77.310735px;}
.x5_c01201{left:79.092735px;}
.x41_c01201{left:142.071585px;}
.x22_c01201{left:143.120985px;}
.xe_c01201{left:144.274335px;}
.x6_c01201{left:145.338585px;}
.x33_c01201{left:155.466285px;}
.x1a_c01201{left:177.325485px;}
.x2d_c01201{left:197.971935px;}
.xf_c01201{left:199.595535px;}
.x12_c01201{left:201.892335px;}
.x2e_c01201{left:209.995485px;}
.x7_c01201{left:211.059735px;}
.x34_c01201{left:231.537885px;}
.x10_c01201{left:242.635785px;}
.x27_c01201{left:243.789135px;}
.x13_c01201{left:254.906835px;}
.x3b_c01201{left:269.781585px;}
.x3c_c01201{left:276.914535px;}
.x8_c01201{left:278.082735px;}
.x2f_c01201{left:286.438335px;}
.x1b_c01201{left:299.120235px;}
.x38_c01201{left:309.312285px;}
.x35_c01201{left:323.033685px;}
.x3e_c01201{left:332.151585px;}
.x28_c01201{left:333.290085px;}
.x42_c01201{left:345.006735px;}
.x20_c01201{left:353.441535px;}
.x23_c01201{left:354.495885px;}
.x9_c01201{left:355.659135px;}
.x3d_c01201{left:363.821685px;}
.x14_c01201{left:366.727335px;}
.x39_c01201{left:377.770785px;}
.x3f_c01201{left:388.111335px;}
.x30_c01201{left:389.536935px;}
.xa_c01201{left:398.709285px;}
.x29_c01201{left:411.366435px;}
.x36_c01201{left:421.632735px;}
.x1c_c01201{left:432.205935px;}
.x40_c01201{left:441.883185px;}
.xb_c01201{left:442.977135px;}
.x3a_c01201{left:455.381835px;}
.x37_c01201{left:467.093535px;}
.x1d_c01201{left:475.577835px;}
.x31_c01201{left:476.647035px;}
.x15_c01201{left:490.125885px;}
.x21_c01201{left:502.822635px;}
.xc_c01201{left:508.861635px;}
.x16_c01201{left:510.153585px;}
.x17_c01201{left:541.615785px;}
.x2a_c01201{left:542.882985px;}
.x1e_c01201{left:553.367085px;}
.x2b_c01201{left:574.810485px;}
.x24_c01201{left:588.175485px;}
.x32_c01201{left:597.808185px;}
.x18_c01201{left:609.272385px;}
.x19_c01201{left:642.877935px;}
.x1f_c01201{left:674.602485px;}
.x25_c01201{left:676.201335px;}
.x4_c01201{left:693.283785px;}
.x26_c01201{left:709.326735px;}
@media print{
.v0_c01201{vertical-align:0.000000pt;}
.ls12_c01201{letter-spacing:-2.439360pt;}
.lsb_c01201{letter-spacing:-0.822413pt;}
.ls4_c01201{letter-spacing:0.000000pt;}
.ls9_c01201{letter-spacing:1.282406pt;}
.ls3_c01201{letter-spacing:1.303315pt;}
.lsa_c01201{letter-spacing:1.628000pt;}
.ls11_c01201{letter-spacing:1.907510pt;}
.ls0_c01201{letter-spacing:2.321088pt;}
.ls2_c01201{letter-spacing:2.638944pt;}
.ls8_c01201{letter-spacing:3.060288pt;}
.lsc_c01201{letter-spacing:3.168000pt;}
.ls7_c01201{letter-spacing:3.379209pt;}
.lsd_c01201{letter-spacing:3.396800pt;}
.ls10_c01201{letter-spacing:3.414400pt;}
.lse_c01201{letter-spacing:3.429043pt;}
.ls6_c01201{letter-spacing:3.484800pt;}
.lsf_c01201{letter-spacing:3.660800pt;}
.ls5_c01201{letter-spacing:3.696000pt;}
.ls1_c01201{letter-spacing:25.724160pt;}
.ls14_c01201{letter-spacing:27.878400pt;}
.ls13_c01201{letter-spacing:51.955376pt;}
.ws0_c01201{word-spacing:-17.424000pt;}
.ws2_c01201{word-spacing:0.000000pt;}
.ws1_c01201{word-spacing:4.321152pt;}
._3_c01201{margin-left:-11.708928pt;}
._5_c01201{margin-left:-9.130176pt;}
._4_c01201{margin-left:-6.551424pt;}
._6_c01201{width:12.057408pt;}
._0_c01201{width:18.259648pt;}
._1_c01201{width:20.146720pt;}
._7_c01201{width:21.331200pt;}
._2_c01201{width:69.321120pt;}
.fs10_c01201{font-size:27.878400pt;}
.fs0_c01201{font-size:29.568000pt;}
.fsf_c01201{font-size:30.800000pt;}
.fs6_c01201{font-size:32.560000pt;}
.fsa_c01201{font-size:40.128000pt;}
.fsd_c01201{font-size:51.955376pt;}
.fs1_c01201{font-size:58.256000pt;}
.fs5_c01201{font-size:58.960000pt;}
.fs7_c01201{font-size:63.360000pt;}
.fse_c01201{font-size:65.472176pt;}
.fs4_c01201{font-size:67.584176pt;}
.fs8_c01201{font-size:67.936000pt;}
.fsb_c01201{font-size:68.288000pt;}
.fs3_c01201{font-size:69.696000pt;}
.fsc_c01201{font-size:69.872176pt;}
.fs9_c01201{font-size:73.216000pt;}
.fs2_c01201{font-size:73.920000pt;}
.y0_c01201{bottom:0.000000pt;}
.y1_c01201{bottom:68.000000pt;}
.y17_c01201{bottom:80.705720pt;}
.y16_c01201{bottom:91.155720pt;}
.y15_c01201{bottom:106.683320pt;}
.y14_c01201{bottom:134.878520pt;}
.y13_c01201{bottom:196.654520pt;}
.y12_c01201{bottom:253.040520pt;}
.y11_c01201{bottom:309.114120pt;}
.y10_c01201{bottom:423.795720pt;}
.yf_c01201{bottom:452.945720pt;}
.ye_c01201{bottom:498.248120pt;}
.yd_c01201{bottom:509.652920pt;}
.yc_c01201{bottom:538.160520pt;}
.yb_c01201{bottom:595.822520pt;}
.ya_c01201{bottom:652.212920pt;}
.y9_c01201{bottom:681.037320pt;}
.y7_c01201{bottom:709.866120pt;}
.y8_c01201{bottom:714.934920pt;}
.y3_c01201{bottom:719.370120pt;}
.y2_c01201{bottom:740.278920pt;}
.y6_c01201{bottom:765.306120pt;}
.y5_c01201{bottom:823.280520pt;}
.y4_c01201{bottom:962.355720pt;}
.h11_c01201{height:18.567014pt;}
.h2_c01201{height:30.838500pt;}
.h10_c01201{height:32.123438pt;}
.h7_c01201{height:33.959063pt;}
.he_c01201{height:34.602280pt;}
.hb_c01201{height:41.852250pt;}
.h3_c01201{height:57.175078pt;}
.h8_c01201{height:62.184375pt;}
.h6_c01201{height:66.297173pt;}
.h9_c01201{height:66.675469pt;}
.hc_c01201{height:67.020938pt;}
.hf_c01201{height:68.285434pt;}
.h5_c01201{height:68.402813pt;}
.hd_c01201{height:68.575720pt;}
.ha_c01201{height:71.857500pt;}
.h4_c01201{height:72.548438pt;}
.h1_c01201{height:986.666667pt;}
.h0_c01201{height:1122.666667pt;}
.w1_c01201{width:689.333333pt;}
.w0_c01201{width:793.333333pt;}
.x0_c01201{left:0.000000pt;}
.x3_c01201{left:15.652253pt;}
.x2_c01201{left:28.385853pt;}
.x1_c01201{left:52.000000pt;}
.xd_c01201{left:55.388653pt;}
.x2c_c01201{left:67.770253pt;}
.x11_c01201{left:68.720653pt;}
.x5_c01201{left:70.304653pt;}
.x41_c01201{left:126.285853pt;}
.x22_c01201{left:127.218653pt;}
.xe_c01201{left:128.243853pt;}
.x6_c01201{left:129.189853pt;}
.x33_c01201{left:138.192253pt;}
.x1a_c01201{left:157.622653pt;}
.x2d_c01201{left:175.975053pt;}
.xf_c01201{left:177.418253pt;}
.x12_c01201{left:179.459853pt;}
.x2e_c01201{left:186.662653pt;}
.x7_c01201{left:187.608653pt;}
.x34_c01201{left:205.811453pt;}
.x10_c01201{left:215.676253pt;}
.x27_c01201{left:216.701453pt;}
.x13_c01201{left:226.583853pt;}
.x3b_c01201{left:239.805853pt;}
.x3c_c01201{left:246.146253pt;}
.x8_c01201{left:247.184653pt;}
.x2f_c01201{left:254.611853pt;}
.x1b_c01201{left:265.884653pt;}
.x38_c01201{left:274.944253pt;}
.x35_c01201{left:287.141053pt;}
.x3e_c01201{left:295.245853pt;}
.x28_c01201{left:296.257853pt;}
.x42_c01201{left:306.672653pt;}
.x20_c01201{left:314.170253pt;}
.x23_c01201{left:315.107453pt;}
.x9_c01201{left:316.141453pt;}
.x3d_c01201{left:323.397053pt;}
.x14_c01201{left:325.979853pt;}
.x39_c01201{left:335.796253pt;}
.x3f_c01201{left:344.987853pt;}
.x30_c01201{left:346.255053pt;}
.xa_c01201{left:354.408253pt;}
.x29_c01201{left:365.659053pt;}
.x36_c01201{left:374.784653pt;}
.x1c_c01201{left:384.183053pt;}
.x40_c01201{left:392.785053pt;}
.xb_c01201{left:393.757453pt;}
.x3a_c01201{left:404.783853pt;}
.x37_c01201{left:415.194253pt;}
.x1d_c01201{left:422.735853pt;}
.x31_c01201{left:423.686253pt;}
.x15_c01201{left:435.667453pt;}
.x21_c01201{left:446.953453pt;}
.xc_c01201{left:452.321453pt;}
.x16_c01201{left:453.469853pt;}
.x17_c01201{left:481.436253pt;}
.x2a_c01201{left:482.562653pt;}
.x1e_c01201{left:491.881853pt;}
.x2b_c01201{left:510.942653pt;}
.x24_c01201{left:522.822653pt;}
.x32_c01201{left:531.385053pt;}
.x18_c01201{left:541.575453pt;}
.x19_c01201{left:571.447053pt;}
.x1f_c01201{left:599.646653pt;}
.x25_c01201{left:601.067853pt;}
.x4_c01201{left:616.252253pt;}
.x26_c01201{left:630.512653pt;}
}





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

.ir_c01202:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01202{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01202;src:url('chunks/assets/font_ca904340afd169abad90e035.woff2')format("woff");}.ff1_c01202{font-family:ff1_c01202;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01202;src:url('chunks/assets/font_4a898894060e97936400be3d.woff2')format("woff");}.ff2_c01202{font-family:ff2_c01202;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01202;src:url('chunks/assets/font_072c4819971e914729803956.woff2')format("woff");}.ff3_c01202{font-family:ff3_c01202;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01202;src:url('chunks/assets/font_563a2da547a7c82829d9c71c.woff2')format("woff");}.ff4_c01202{font-family:ff4_c01202;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01202;src:url('chunks/assets/font_05536fe8528b3ae9a6e53db9.woff2')format("woff");}.ff5_c01202{font-family:ff5_c01202;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m88_c01202{transform:matrix(0.032896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032896,0.000000,0.000000,0.250000,0,0);}
.m2a_c01202{transform:matrix(0.038462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.038462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.038462,0.000000,0.000000,0.250000,0,0);}
.m52_c01202{transform:matrix(0.073576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073576,0.000000,0.000000,0.250000,0,0);}
.m29_c01202{transform:matrix(0.083334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083334,0.000000,0.000000,0.250000,0,0);}
.m87_c01202{transform:matrix(0.105264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105264,0.000000,0.000000,0.250000,0,0);}
.m62_c01202{transform:matrix(0.107812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107812,0.000000,0.000000,0.250000,0,0);}
.m89_c01202{transform:matrix(0.121711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121711,0.000000,0.000000,0.250000,0,0);}
.m2b_c01202{transform:matrix(0.133449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133449,0.000000,0.000000,0.250000,0,0);}
.m20_c01202{transform:matrix(0.139038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139038,0.000000,0.000000,0.250000,0,0);}
.m86_c01202{transform:matrix(0.140789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140789,0.000000,0.000000,0.250000,0,0);}
.m4f_c01202{transform:matrix(0.146170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146170,0.000000,0.000000,0.250000,0,0);}
.m22_c01202{transform:matrix(0.167405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167405,0.000000,0.000000,0.250000,0,0);}
.m9f_c01202{transform:matrix(0.173781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173781,0.000000,0.000000,0.250000,0,0);}
.m23_c01202{transform:matrix(0.176830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176830,0.000000,0.000000,0.250000,0,0);}
.m6b_c01202{transform:matrix(0.179131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179131,0.000000,0.000000,0.250000,0,0);}
.m25_c01202{transform:matrix(0.189088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189088,0.000000,0.000000,0.250000,0,0);}
.m3e_c01202{transform:matrix(0.200487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200487,0.000000,0.000000,0.250000,0,0);}
.ma1_c01202{transform:matrix(0.205976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205976,0.000000,0.000000,0.250000,0,0);}
.m7_c01202{transform:matrix(0.206282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206282,0.000000,0.000000,0.250000,0,0);}
.m47_c01202{transform:matrix(0.216066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216066,0.000000,0.000000,0.250000,0,0);}
.m53_c01202{transform:matrix(0.247993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247993,0.000000,0.000000,0.250000,0,0);}
.m2_c01202{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01202{transform:matrix(0.250438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250438,0.000000,0.000000,0.250000,0,0);}
.m13_c01202{transform:matrix(0.250511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250511,0.000000,0.000000,0.250000,0,0);}
.m77_c01202{transform:matrix(0.256367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256367,0.000000,0.000000,0.250000,0,0);}
.m3_c01202{transform:matrix(0.263901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263901,0.000000,0.000000,0.250000,0,0);}
.m48_c01202{transform:matrix(0.263953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263953,0.000000,0.000000,0.250000,0,0);}
.m1d_c01202{transform:matrix(0.264215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264215,0.000000,0.000000,0.250000,0,0);}
.m92_c01202{transform:matrix(0.264474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264474,0.000000,0.000000,0.250000,0,0);}
.me_c01202{transform:matrix(0.264918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264918,0.000000,0.000000,0.250000,0,0);}
.m1f_c01202{transform:matrix(0.265076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265076,0.000000,0.000000,0.250000,0,0);}
.m0_c01202{transform:matrix(0.265840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265840,0.000000,0.000000,0.250000,0,0);}
.m2f_c01202{transform:matrix(0.266970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266970,0.000000,0.000000,0.250000,0,0);}
.m41_c01202{transform:matrix(0.267569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267569,0.000000,0.000000,0.250000,0,0);}
.m1_c01202{transform:matrix(0.268324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268324,0.000000,0.000000,0.250000,0,0);}
.m3f_c01202{transform:matrix(0.269567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269567,0.000000,0.000000,0.250000,0,0);}
.m4b_c01202{transform:matrix(0.270287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270287,0.000000,0.000000,0.250000,0,0);}
.m24_c01202{transform:matrix(0.270809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270809,0.000000,0.000000,0.250000,0,0);}
.m5_c01202{transform:matrix(0.271417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271417,0.000000,0.000000,0.250000,0,0);}
.m27_c01202{transform:matrix(0.272085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272085,0.000000,0.000000,0.250000,0,0);}
.m66_c01202{transform:matrix(0.272665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272665,0.000000,0.000000,0.250000,0,0);}
.m85_c01202{transform:matrix(0.273274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273274,0.000000,0.000000,0.250000,0,0);}
.ma4_c01202{transform:matrix(0.273429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273429,0.000000,0.000000,0.250000,0,0);}
.m57_c01202{transform:matrix(0.274784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274784,0.000000,0.000000,0.250000,0,0);}
.ma2_c01202{transform:matrix(0.274960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274960,0.000000,0.000000,0.250000,0,0);}
.m34_c01202{transform:matrix(0.275114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275114,0.000000,0.000000,0.250000,0,0);}
.mb_c01202{transform:matrix(0.276422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276422,0.000000,0.000000,0.250000,0,0);}
.mc_c01202{transform:matrix(0.276735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276735,0.000000,0.000000,0.250000,0,0);}
.m1e_c01202{transform:matrix(0.277034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277034,0.000000,0.000000,0.250000,0,0);}
.m8c_c01202{transform:matrix(0.277721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277721,0.000000,0.000000,0.250000,0,0);}
.m10_c01202{transform:matrix(0.278010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278010,0.000000,0.000000,0.250000,0,0);}
.m56_c01202{transform:matrix(0.278154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278154,0.000000,0.000000,0.250000,0,0);}
.m8f_c01202{transform:matrix(0.279941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279941,0.000000,0.000000,0.250000,0,0);}
.m63_c01202{transform:matrix(0.280667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280667,0.000000,0.000000,0.250000,0,0);}
.m42_c01202{transform:matrix(0.283033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283033,0.000000,0.000000,0.250000,0,0);}
.m16_c01202{transform:matrix(0.283332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283332,0.000000,0.000000,0.250000,0,0);}
.m35_c01202{transform:matrix(0.283348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283348,0.000000,0.000000,0.250000,0,0);}
.m82_c01202{transform:matrix(0.284045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284045,0.000000,0.000000,0.250000,0,0);}
.ma9_c01202{transform:matrix(0.285092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285092,0.000000,0.000000,0.250000,0,0);}
.m8a_c01202{transform:matrix(0.285123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285123,0.000000,0.000000,0.250000,0,0);}
.m76_c01202{transform:matrix(0.285321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285321,0.000000,0.000000,0.250000,0,0);}
.m1a_c01202{transform:matrix(0.285528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285528,0.000000,0.000000,0.250000,0,0);}
.m9c_c01202{transform:matrix(0.286062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286062,0.000000,0.000000,0.250000,0,0);}
.m37_c01202{transform:matrix(0.286963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286963,0.000000,0.000000,0.250000,0,0);}
.ma5_c01202{transform:matrix(0.287377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287377,0.000000,0.000000,0.250000,0,0);}
.m32_c01202{transform:matrix(0.287519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287519,0.000000,0.000000,0.250000,0,0);}
.mab_c01202{transform:matrix(0.287524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287524,0.000000,0.000000,0.250000,0,0);}
.m9b_c01202{transform:matrix(0.287725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287725,0.000000,0.000000,0.250000,0,0);}
.m7f_c01202{transform:matrix(0.288179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288179,0.000000,0.000000,0.250000,0,0);}
.m83_c01202{transform:matrix(0.288258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288258,0.000000,0.000000,0.250000,0,0);}
.m15_c01202{transform:matrix(0.289521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289521,0.000000,0.000000,0.250000,0,0);}
.m11_c01202{transform:matrix(0.289801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289801,0.000000,0.000000,0.250000,0,0);}
.m97_c01202{transform:matrix(0.290514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290514,0.000000,0.000000,0.250000,0,0);}
.m38_c01202{transform:matrix(0.291067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291067,0.000000,0.000000,0.250000,0,0);}
.m40_c01202{transform:matrix(0.292007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292007,0.000000,0.000000,0.250000,0,0);}
.m55_c01202{transform:matrix(0.293011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293011,0.000000,0.000000,0.250000,0,0);}
.m51_c01202{transform:matrix(0.293146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293146,0.000000,0.000000,0.250000,0,0);}
.m8d_c01202{transform:matrix(0.293958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293958,0.000000,0.000000,0.250000,0,0);}
.m67_c01202{transform:matrix(0.296406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296406,0.000000,0.000000,0.250000,0,0);}
.m7d_c01202{transform:matrix(0.296834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296834,0.000000,0.000000,0.250000,0,0);}
.m91_c01202{transform:matrix(0.297679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297679,0.000000,0.000000,0.250000,0,0);}
.m2e_c01202{transform:matrix(0.297704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297704,0.000000,0.000000,0.250000,0,0);}
.m84_c01202{transform:matrix(0.298030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298030,0.000000,0.000000,0.250000,0,0);}
.m50_c01202{transform:matrix(0.298070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298070,0.000000,0.000000,0.250000,0,0);}
.m70_c01202{transform:matrix(0.299535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299535,0.000000,0.000000,0.250000,0,0);}
.m9_c01202{transform:matrix(0.300169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300169,0.000000,0.000000,0.250000,0,0);}
.m9a_c01202{transform:matrix(0.301306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301306,0.000000,0.000000,0.250000,0,0);}
.m14_c01202{transform:matrix(0.301456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301456,0.000000,0.000000,0.250000,0,0);}
.m74_c01202{transform:matrix(0.301760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301760,0.000000,0.000000,0.250000,0,0);}
.m19_c01202{transform:matrix(0.302460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302460,0.000000,0.000000,0.250000,0,0);}
.m3c_c01202{transform:matrix(0.302772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302772,0.000000,0.000000,0.250000,0,0);}
.m39_c01202{transform:matrix(0.304785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304785,0.000000,0.000000,0.250000,0,0);}
.m7e_c01202{transform:matrix(0.305766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305766,0.000000,0.000000,0.250000,0,0);}
.m78_c01202{transform:matrix(0.306046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306046,0.000000,0.000000,0.250000,0,0);}
.m3a_c01202{transform:matrix(0.306294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306294,0.000000,0.000000,0.250000,0,0);}
.m96_c01202{transform:matrix(0.306590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306590,0.000000,0.000000,0.250000,0,0);}
.m26_c01202{transform:matrix(0.306949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306949,0.000000,0.000000,0.250000,0,0);}
.m79_c01202{transform:matrix(0.307316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307316,0.000000,0.000000,0.250000,0,0);}
.m94_c01202{transform:matrix(0.307670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307670,0.000000,0.000000,0.250000,0,0);}
.m5a_c01202{transform:matrix(0.310252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310252,0.000000,0.000000,0.250000,0,0);}
.ma8_c01202{transform:matrix(0.310450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310450,0.000000,0.000000,0.250000,0,0);}
.ma6_c01202{transform:matrix(0.310692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310692,0.000000,0.000000,0.250000,0,0);}
.m1c_c01202{transform:matrix(0.310795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310795,0.000000,0.000000,0.250000,0,0);}
.m4a_c01202{transform:matrix(0.310981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310981,0.000000,0.000000,0.250000,0,0);}
.m75_c01202{transform:matrix(0.311384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311384,0.000000,0.000000,0.250000,0,0);}
.m7b_c01202{transform:matrix(0.312397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312397,0.000000,0.000000,0.250000,0,0);}
.m49_c01202{transform:matrix(0.313533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313533,0.000000,0.000000,0.250000,0,0);}
.m80_c01202{transform:matrix(0.313540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313540,0.000000,0.000000,0.250000,0,0);}
.m6c_c01202{transform:matrix(0.313574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313574,0.000000,0.000000,0.250000,0,0);}
.m17_c01202{transform:matrix(0.313700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313700,0.000000,0.000000,0.250000,0,0);}
.m4e_c01202{transform:matrix(0.313961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313961,0.000000,0.000000,0.250000,0,0);}
.m18_c01202{transform:matrix(0.314733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314733,0.000000,0.000000,0.250000,0,0);}
.m54_c01202{transform:matrix(0.315173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315173,0.000000,0.000000,0.250000,0,0);}
.m4_c01202{transform:matrix(0.316165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316165,0.000000,0.000000,0.250000,0,0);}
.m1b_c01202{transform:matrix(0.316278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316278,0.000000,0.000000,0.250000,0,0);}
.m21_c01202{transform:matrix(0.317748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317748,0.000000,0.000000,0.250000,0,0);}
.m4c_c01202{transform:matrix(0.318216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318216,0.000000,0.000000,0.250000,0,0);}
.m3b_c01202{transform:matrix(0.318516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318516,0.000000,0.000000,0.250000,0,0);}
.m60_c01202{transform:matrix(0.318796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318796,0.000000,0.000000,0.250000,0,0);}
.m6d_c01202{transform:matrix(0.319342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319342,0.000000,0.000000,0.250000,0,0);}
.m65_c01202{transform:matrix(0.319490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319490,0.000000,0.000000,0.250000,0,0);}
.m81_c01202{transform:matrix(0.320953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320953,0.000000,0.000000,0.250000,0,0);}
.m9e_c01202{transform:matrix(0.321415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321415,0.000000,0.000000,0.250000,0,0);}
.m28_c01202{transform:matrix(0.322148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322148,0.000000,0.000000,0.250000,0,0);}
.m6a_c01202{transform:matrix(0.322419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322419,0.000000,0.000000,0.250000,0,0);}
.ma0_c01202{transform:matrix(0.323192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323192,0.000000,0.000000,0.250000,0,0);}
.m95_c01202{transform:matrix(0.323314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323314,0.000000,0.000000,0.250000,0,0);}
.mf_c01202{transform:matrix(0.324186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324186,0.000000,0.000000,0.250000,0,0);}
.m61_c01202{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m8b_c01202{transform:matrix(0.325843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325843,0.000000,0.000000,0.250000,0,0);}
.m43_c01202{transform:matrix(0.326902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326902,0.000000,0.000000,0.250000,0,0);}
.m6e_c01202{transform:matrix(0.328024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328024,0.000000,0.000000,0.250000,0,0);}
.m45_c01202{transform:matrix(0.329190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329190,0.000000,0.000000,0.250000,0,0);}
.m73_c01202{transform:matrix(0.330616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330616,0.000000,0.000000,0.250000,0,0);}
.m36_c01202{transform:matrix(0.331645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331645,0.000000,0.000000,0.250000,0,0);}
.ma_c01202{transform:matrix(0.331651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331651,0.000000,0.000000,0.250000,0,0);}
.m59_c01202{transform:matrix(0.331861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331861,0.000000,0.000000,0.250000,0,0);}
.m7a_c01202{transform:matrix(0.332611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332611,0.000000,0.000000,0.250000,0,0);}
.m98_c01202{transform:matrix(0.332684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332684,0.000000,0.000000,0.250000,0,0);}
.m69_c01202{transform:matrix(0.333036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333036,0.000000,0.000000,0.250000,0,0);}
.m8e_c01202{transform:matrix(0.333252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333252,0.000000,0.000000,0.250000,0,0);}
.m9d_c01202{transform:matrix(0.333811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333811,0.000000,0.000000,0.250000,0,0);}
.m72_c01202{transform:matrix(0.334373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334373,0.000000,0.000000,0.250000,0,0);}
.ma7_c01202{transform:matrix(0.336794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336794,0.000000,0.000000,0.250000,0,0);}
.m12_c01202{transform:matrix(0.336909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336909,0.000000,0.000000,0.250000,0,0);}
.m44_c01202{transform:matrix(0.337824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337824,0.000000,0.000000,0.250000,0,0);}
.m31_c01202{transform:matrix(0.340758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340758,0.000000,0.000000,0.250000,0,0);}
.m58_c01202{transform:matrix(0.341210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341210,0.000000,0.000000,0.250000,0,0);}
.m6_c01202{transform:matrix(0.341839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341839,0.000000,0.000000,0.250000,0,0);}
.md_c01202{transform:matrix(0.342161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342161,0.000000,0.000000,0.250000,0,0);}
.m5f_c01202{transform:matrix(0.342655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342655,0.000000,0.000000,0.250000,0,0);}
.m93_c01202{transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);}
.maa_c01202{transform:matrix(0.346630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346630,0.000000,0.000000,0.250000,0,0);}
.ma3_c01202{transform:matrix(0.348506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348506,0.000000,0.000000,0.250000,0,0);}
.m5e_c01202{transform:matrix(0.354500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01202{transform:matrix(0.356109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356109,0.000000,0.000000,0.250000,0,0);}
.m8_c01202{transform:matrix(0.358000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01202{transform:matrix(0.359106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359106,0.000000,0.000000,0.250000,0,0);}
.m99_c01202{transform:matrix(0.359755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359755,0.000000,0.000000,0.250000,0,0);}
.m33_c01202{transform:matrix(0.370936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370936,0.000000,0.000000,0.250000,0,0);}
.m71_c01202{transform:matrix(0.372317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372317,0.000000,0.000000,0.250000,0,0);}
.m30_c01202{transform:matrix(0.390139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390139,0.000000,0.000000,0.250000,0,0);}
.m68_c01202{transform:matrix(0.396432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396432,0.000000,0.000000,0.250000,0,0);}
.m7c_c01202{transform:matrix(0.396907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396907,0.000000,0.000000,0.250000,0,0);}
.m64_c01202{transform:matrix(0.398587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398587,0.000000,0.000000,0.250000,0,0);}
.m90_c01202{transform:matrix(0.402725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402725,0.000000,0.000000,0.250000,0,0);}
.m6f_c01202{transform:matrix(0.409017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409017,0.000000,0.000000,0.250000,0,0);}
.m46_c01202{transform:matrix(0.412867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412867,0.000000,0.000000,0.250000,0,0);}
.m3d_c01202{transform:matrix(0.499990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499990,0.000000,0.000000,0.250000,0,0);}
.m5c_c01202{transform:matrix(0.561620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561620,0.000000,0.000000,0.250000,0,0);}
.m5b_c01202{transform:matrix(0.615781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615781,0.000000,0.000000,0.250000,0,0);}
.m5d_c01202{transform:matrix(0.853389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.853389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.853389,0.000000,0.000000,0.250000,0,0);}
.v0_c01202{vertical-align:0.000000px;}
.ls9_c01202{letter-spacing:-2.778930px;}
.ls5_c01202{letter-spacing:-2.626477px;}
.ls12_c01202{letter-spacing:-2.328480px;}
.ls1c_c01202{letter-spacing:-1.208179px;}
.ls2_c01202{letter-spacing:0.000000px;}
.ls14_c01202{letter-spacing:1.029600px;}
.ls15_c01202{letter-spacing:1.133137px;}
.ls18_c01202{letter-spacing:1.515852px;}
.ls0_c01202{letter-spacing:1.526822px;}
.ls10_c01202{letter-spacing:1.866110px;}
.ls1a_c01202{letter-spacing:3.226815px;}
.ls11_c01202{letter-spacing:3.326400px;}
.ls1b_c01202{letter-spacing:3.524400px;}
.ls13_c01202{letter-spacing:3.547972px;}
.ls4_c01202{letter-spacing:3.677068px;}
.lsd_c01202{letter-spacing:3.722400px;}
.ls7_c01202{letter-spacing:3.742200px;}
.ls1_c01202{letter-spacing:3.752110px;}
.ls3_c01202{letter-spacing:3.771900px;}
.ls17_c01202{letter-spacing:3.801610px;}
.ls8_c01202{letter-spacing:3.969900px;}
.lsc_c01202{letter-spacing:4.118400px;}
.ls6_c01202{letter-spacing:4.262039px;}
.lse_c01202{letter-spacing:9.979398px;}
.lsf_c01202{letter-spacing:39.916800px;}
.ls19_c01202{letter-spacing:54.172998px;}
.lsb_c01202{letter-spacing:55.598598px;}
.ls16_c01202{letter-spacing:57.024198px;}
.lsa_c01202{letter-spacing:58.449798px;}
.sc__c01202{text-shadow:none;}
.sc0_c01202{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01202{-webkit-text-stroke:0px transparent;}
.sc0_c01202{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01202{word-spacing:0.000000px;}
._4_c01202{margin-left:-18.144720px;}
._7_c01202{margin-left:-15.585933px;}
._6_c01202{margin-left:-8.254532px;}
._2_c01202{margin-left:-5.824986px;}
._1_c01202{width:6.678089px;}
._3_c01202{width:28.994361px;}
._0_c01202{width:31.505859px;}
._5_c01202{width:33.679888px;}
.fc0_c01202{color:transparent;}
.fs9_c01202{font-size:9.979398px;}
.fs12_c01202{font-size:20.592000px;}
.fsb_c01202{font-size:39.916800px;}
.fsc_c01202{font-size:45.144000px;}
.fsf_c01202{font-size:47.124000px;}
.fsa_c01202{font-size:53.856198px;}
.fs16_c01202{font-size:54.172998px;}
.fs6_c01202{font-size:55.598598px;}
.fs13_c01202{font-size:57.024198px;}
.fs5_c01202{font-size:58.449798px;}
.fsd_c01202{font-size:64.152198px;}
.fs15_c01202{font-size:66.330000px;}
.fs10_c01202{font-size:66.528000px;}
.fs17_c01202{font-size:70.488000px;}
.fs11_c01202{font-size:71.676198px;}
.fs8_c01202{font-size:74.448000px;}
.fs3_c01202{font-size:74.844000px;}
.fs0_c01202{font-size:75.042198px;}
.fs1_c01202{font-size:75.438000px;}
.fs14_c01202{font-size:76.032198px;}
.fs4_c01202{font-size:79.398000px;}
.fse_c01202{font-size:81.180000px;}
.fs7_c01202{font-size:82.368000px;}
.fs2_c01202{font-size:87.516198px;}
.y0_c01202{bottom:0.000000px;}
.y1_c01202{bottom:76.500000px;}
.y20_c01202{bottom:153.876735px;}
.y1f_c01202{bottom:188.447535px;}
.y1e_c01202{bottom:221.592735px;}
.y1d_c01202{bottom:253.663785px;}
.y1c_c01202{bottom:285.739785px;}
.y1b_c01202{bottom:316.746585px;}
.y1a_c01202{bottom:349.896735px;}
.y19_c01202{bottom:381.972735px;}
.y18_c01202{bottom:413.692335px;}
.y17_c01202{bottom:446.119785px;}
.y16_c01202{bottom:478.200735px;}
.y15_c01202{bottom:504.930735px;}
.y13_c01202{bottom:510.628185px;}
.y14_c01202{bottom:511.345935px;}
.y11_c01202{bottom:542.709135px;}
.y12_c01202{bottom:543.060585px;}
.y10_c01202{bottom:560.880585px;}
.yd_c01202{bottom:573.715935px;}
.yf_c01202{bottom:575.141535px;}
.ye_c01202{bottom:585.115785px;}
.yc_c01202{bottom:607.930335px;}
.yb_c01202{bottom:640.001385px;}
.ya_c01202{bottom:702.371385px;}
.y9_c01202{bottom:766.166985px;}
.y3_c01202{bottom:797.173785px;}
.y8_c01202{bottom:798.599385px;}
.y7_c01202{bottom:861.687135px;}
.y6_c01202{bottom:895.540185px;}
.y2_c01202{bottom:926.546985px;}
.y5_c01202{bottom:927.972585px;}
.y4_c01202{bottom:1079.798985px;}
.hb_c01202{height:6.646279px;}
.h13_c01202{height:20.209922px;}
.h12_c01202{height:20.752875px;}
.hd_c01202{height:26.584589px;}
.h17_c01202{height:36.079217px;}
.h8_c01202{height:37.028666px;}
.h14_c01202{height:37.978116px;}
.h7_c01202{height:38.927565px;}
.he_c01202{height:47.083781px;}
.hc_c01202{height:52.856913px;}
.h10_c01202{height:65.293594px;}
.h16_c01202{height:69.180117px;}
.h11_c01202{height:70.346269px;}
.ha_c01202{height:73.066641px;}
.h5_c01202{height:73.418748px;}
.h2_c01202{height:73.649813px;}
.h3_c01202{height:74.038271px;}
.h15_c01202{height:76.626200px;}
.h6_c01202{height:77.886026px;}
.h9_c01202{height:80.799469px;}
.hf_c01202{height:84.668203px;}
.h4_c01202{height:85.892362px;}
.h1_c01202{height:1110.000000px;}
.h0_c01202{height:1263.000000px;}
.w1_c01202{width:775.500000px;}
.w0_c01202{width:892.500000px;}
.x0_c01202{left:0.000000px;}
.x1_c01202{left:58.500000px;}
.x2_c01202{left:85.537635px;}
.x5_c01202{left:151.996335px;}
.x1e_c01202{left:153.214035px;}
.x51_c01202{left:154.604985px;}
.x30_c01202{left:156.164235px;}
.x21_c01202{left:162.767535px;}
.x31_c01202{left:184.963335px;}
.x1f_c01202{left:195.982035px;}
.x17_c01202{left:197.155185px;}
.x35_c01202{left:200.362785px;}
.x2a_c01202{left:207.921435px;}
.x18_c01202{left:218.672835px;}
.x52_c01202{left:226.271085px;}
.x22_c01202{left:230.369685px;}
.x39_c01202{left:231.770535px;}
.x2f_c01202{left:233.037735px;}
.x62_c01202{left:240.561735px;}
.x2b_c01202{left:241.576485px;}
.x49_c01202{left:251.565585px;}
.x6_c01202{left:252.664485px;}
.x23_c01202{left:261.945735px;}
.x3a_c01202{left:263.232735px;}
.x10_c01202{left:264.593985px;}
.x24_c01202{left:266.578935px;}
.x25_c01202{left:269.068785px;}
.x46_c01202{left:273.998985px;}
.x20_c01202{left:276.444285px;}
.x7_c01202{left:286.606635px;}
.x19_c01202{left:296.402685px;}
.x63_c01202{left:299.506335px;}
.x53_c01202{left:306.842235px;}
.x11_c01202{left:308.416335px;}
.x8_c01202{left:318.920235px;}
.x2c_c01202{left:330.245835px;}
.x56_c01202{left:331.478385px;}
.x47_c01202{left:341.536785px;}
.x12_c01202{left:352.060485px;}
.x36_c01202{left:353.278185px;}
.x26_c01202{left:361.995135px;}
.x57_c01202{left:363.539535px;}
.x3b_c01202{left:365.267085px;}
.x3c_c01202{left:368.286585px;}
.x4a_c01202{left:375.013635px;}
.x27_c01202{left:386.091735px;}
.x37_c01202{left:394.506735px;}
.x13_c01202{left:397.184685px;}
.x9_c01202{left:408.262785px;}
.x1a_c01202{left:418.360785px;}
.x28_c01202{left:419.786385px;}
.x66_c01202{left:429.409185px;}
.x32_c01202{left:431.008035px;}
.x4f_c01202{left:441.704985px;}
.xa_c01202{left:452.020785px;}
.x58_c01202{left:453.456285px;}
.x4b_c01202{left:463.781985px;}
.x64_c01202{left:472.746435px;}
.x54_c01202{left:473.919585px;}
.x2d_c01202{left:475.463985px;}
.x59_c01202{left:484.695735px;}
.x3d_c01202{left:485.883735px;}
.x14_c01202{left:488.309235px;}
.x1b_c01202{left:495.679785px;}
.xb_c01202{left:497.679585px;}
.x33_c01202{left:502.837485px;}
.x15_c01202{left:507.391485px;}
.x4c_c01202{left:510.232785px;}
.xc_c01202{left:518.573535px;}
.x4d_c01202{left:519.716985px;}
.x34_c01202{left:530.433735px;}
.x5e_c01202{left:540.794085px;}
.x29_c01202{left:552.149385px;}
.xd_c01202{left:562.673085px;}
.x5a_c01202{left:567.024135px;}
.x5b_c01202{left:568.093335px;}
.x5f_c01202{left:573.523485px;}
.x67_c01202{left:576.171735px;}
.x16_c01202{left:584.373885px;}
.x2e_c01202{left:595.491585px;}
.x3e_c01202{left:597.085485px;}
.x60_c01202{left:605.812335px;}
.x65_c01202{left:616.870635px;}
.x38_c01202{left:618.499185px;}
.x41_c01202{left:627.824985px;}
.x3f_c01202{left:629.339685px;}
.x42_c01202{left:634.393635px;}
.xe_c01202{left:639.244635px;}
.x1c_c01202{left:647.882385px;}
.x1d_c01202{left:650.015835px;}
.x55_c01202{left:651.223635px;}
.x5c_c01202{left:661.064235px;}
.x61_c01202{left:662.559135px;}
.x43_c01202{left:664.945035px;}
.x48_c01202{left:673.726335px;}
.xf_c01202{left:684.418335px;}
.x4e_c01202{left:695.278635px;}
.x3_c01202{left:705.431085px;}
.x40_c01202{left:707.881335px;}
.x4_c01202{left:716.845785px;}
.x50_c01202{left:717.929835px;}
.x44_c01202{left:725.825085px;}
.x5d_c01202{left:728.978235px;}
.x45_c01202{left:732.161085px;}
@media print{
.v0_c01202{vertical-align:0.000000pt;}
.ls9_c01202{letter-spacing:-2.470160pt;}
.ls5_c01202{letter-spacing:-2.334646pt;}
.ls12_c01202{letter-spacing:-2.069760pt;}
.ls1c_c01202{letter-spacing:-1.073937pt;}
.ls2_c01202{letter-spacing:0.000000pt;}
.ls14_c01202{letter-spacing:0.915200pt;}
.ls15_c01202{letter-spacing:1.007233pt;}
.ls18_c01202{letter-spacing:1.347424pt;}
.ls0_c01202{letter-spacing:1.357175pt;}
.ls10_c01202{letter-spacing:1.658765pt;}
.ls1a_c01202{letter-spacing:2.868280pt;}
.ls11_c01202{letter-spacing:2.956800pt;}
.ls1b_c01202{letter-spacing:3.132800pt;}
.ls13_c01202{letter-spacing:3.153753pt;}
.ls4_c01202{letter-spacing:3.268505pt;}
.lsd_c01202{letter-spacing:3.308800pt;}
.ls7_c01202{letter-spacing:3.326400pt;}
.ls1_c01202{letter-spacing:3.335209pt;}
.ls3_c01202{letter-spacing:3.352800pt;}
.ls17_c01202{letter-spacing:3.379209pt;}
.ls8_c01202{letter-spacing:3.528800pt;}
.lsc_c01202{letter-spacing:3.660800pt;}
.ls6_c01202{letter-spacing:3.788479pt;}
.lse_c01202{letter-spacing:8.870576pt;}
.lsf_c01202{letter-spacing:35.481600pt;}
.ls19_c01202{letter-spacing:48.153776pt;}
.lsb_c01202{letter-spacing:49.420976pt;}
.ls16_c01202{letter-spacing:50.688176pt;}
.lsa_c01202{letter-spacing:51.955376pt;}
.ws0_c01202{word-spacing:0.000000pt;}
._4_c01202{margin-left:-16.128640pt;}
._7_c01202{margin-left:-13.854163pt;}
._6_c01202{margin-left:-7.337362pt;}
._2_c01202{margin-left:-5.177765pt;}
._1_c01202{width:5.936079pt;}
._3_c01202{width:25.772765pt;}
._0_c01202{width:28.005208pt;}
._5_c01202{width:29.937678pt;}
.fs9_c01202{font-size:8.870576pt;}
.fs12_c01202{font-size:18.304000pt;}
.fsb_c01202{font-size:35.481600pt;}
.fsc_c01202{font-size:40.128000pt;}
.fsf_c01202{font-size:41.888000pt;}
.fsa_c01202{font-size:47.872176pt;}
.fs16_c01202{font-size:48.153776pt;}
.fs6_c01202{font-size:49.420976pt;}
.fs13_c01202{font-size:50.688176pt;}
.fs5_c01202{font-size:51.955376pt;}
.fsd_c01202{font-size:57.024176pt;}
.fs15_c01202{font-size:58.960000pt;}
.fs10_c01202{font-size:59.136000pt;}
.fs17_c01202{font-size:62.656000pt;}
.fs11_c01202{font-size:63.712176pt;}
.fs8_c01202{font-size:66.176000pt;}
.fs3_c01202{font-size:66.528000pt;}
.fs0_c01202{font-size:66.704176pt;}
.fs1_c01202{font-size:67.056000pt;}
.fs14_c01202{font-size:67.584176pt;}
.fs4_c01202{font-size:70.576000pt;}
.fse_c01202{font-size:72.160000pt;}
.fs7_c01202{font-size:73.216000pt;}
.fs2_c01202{font-size:77.792176pt;}
.y0_c01202{bottom:0.000000pt;}
.y1_c01202{bottom:68.000000pt;}
.y20_c01202{bottom:136.779320pt;}
.y1f_c01202{bottom:167.508920pt;}
.y1e_c01202{bottom:196.971320pt;}
.y1d_c01202{bottom:225.478920pt;}
.y1c_c01202{bottom:253.990920pt;}
.y1b_c01202{bottom:281.552520pt;}
.y1a_c01202{bottom:311.019320pt;}
.y19_c01202{bottom:339.531320pt;}
.y18_c01202{bottom:367.726520pt;}
.y17_c01202{bottom:396.550920pt;}
.y16_c01202{bottom:425.067320pt;}
.y15_c01202{bottom:448.827320pt;}
.y13_c01202{bottom:453.891720pt;}
.y14_c01202{bottom:454.529720pt;}
.y11_c01202{bottom:482.408120pt;}
.y12_c01202{bottom:482.720520pt;}
.y10_c01202{bottom:498.560520pt;}
.yd_c01202{bottom:509.969720pt;}
.yf_c01202{bottom:511.236920pt;}
.ye_c01202{bottom:520.102920pt;}
.yc_c01202{bottom:540.382520pt;}
.yb_c01202{bottom:568.890120pt;}
.ya_c01202{bottom:624.330120pt;}
.y9_c01202{bottom:681.037320pt;}
.y3_c01202{bottom:708.598920pt;}
.y8_c01202{bottom:709.866120pt;}
.y7_c01202{bottom:765.944120pt;}
.y6_c01202{bottom:796.035720pt;}
.y2_c01202{bottom:823.597320pt;}
.y5_c01202{bottom:824.864520pt;}
.y4_c01202{bottom:959.821320pt;}
.hb_c01202{height:5.907804pt;}
.h13_c01202{height:17.964375pt;}
.h12_c01202{height:18.447000pt;}
.hd_c01202{height:23.630746pt;}
.h17_c01202{height:32.070415pt;}
.h8_c01202{height:32.914370pt;}
.h14_c01202{height:33.758325pt;}
.h7_c01202{height:34.602280pt;}
.he_c01202{height:41.852250pt;}
.hc_c01202{height:46.983923pt;}
.h10_c01202{height:58.038750pt;}
.h16_c01202{height:61.493438pt;}
.h11_c01202{height:62.530016pt;}
.ha_c01202{height:64.948125pt;}
.h5_c01202{height:65.261109pt;}
.h2_c01202{height:65.466501pt;}
.h3_c01202{height:65.811797pt;}
.h15_c01202{height:68.112177pt;}
.h6_c01202{height:69.232023pt;}
.h9_c01202{height:71.821750pt;}
.hf_c01202{height:75.260625pt;}
.h4_c01202{height:76.348766pt;}
.h1_c01202{height:986.666667pt;}
.h0_c01202{height:1122.666667pt;}
.w1_c01202{width:689.333333pt;}
.w0_c01202{width:793.333333pt;}
.x0_c01202{left:0.000000pt;}
.x1_c01202{left:52.000000pt;}
.x2_c01202{left:76.033453pt;}
.x5_c01202{left:135.107853pt;}
.x1e_c01202{left:136.190253pt;}
.x51_c01202{left:137.426653pt;}
.x30_c01202{left:138.812653pt;}
.x21_c01202{left:144.682253pt;}
.x31_c01202{left:164.411853pt;}
.x1f_c01202{left:174.206253pt;}
.x17_c01202{left:175.249053pt;}
.x35_c01202{left:178.100253pt;}
.x2a_c01202{left:184.819053pt;}
.x18_c01202{left:194.375853pt;}
.x52_c01202{left:201.129853pt;}
.x22_c01202{left:204.773053pt;}
.x39_c01202{left:206.018253pt;}
.x2f_c01202{left:207.144653pt;}
.x62_c01202{left:213.832653pt;}
.x2b_c01202{left:214.734653pt;}
.x49_c01202{left:223.613853pt;}
.x6_c01202{left:224.590653pt;}
.x23_c01202{left:232.840653pt;}
.x3a_c01202{left:233.984653pt;}
.x10_c01202{left:235.194653pt;}
.x24_c01202{left:236.959053pt;}
.x25_c01202{left:239.172253pt;}
.x46_c01202{left:243.554653pt;}
.x20_c01202{left:245.728253pt;}
.x7_c01202{left:254.761453pt;}
.x19_c01202{left:263.469053pt;}
.x63_c01202{left:266.227853pt;}
.x53_c01202{left:272.748653pt;}
.x11_c01202{left:274.147853pt;}
.x8_c01202{left:283.484653pt;}
.x2c_c01202{left:293.551853pt;}
.x56_c01202{left:294.647453pt;}
.x47_c01202{left:303.588253pt;}
.x12_c01202{left:312.942653pt;}
.x36_c01202{left:314.025053pt;}
.x26_c01202{left:321.773453pt;}
.x57_c01202{left:323.146253pt;}
.x3b_c01202{left:324.681853pt;}
.x3c_c01202{left:327.365853pt;}
.x4a_c01202{left:333.345453pt;}
.x27_c01202{left:343.192653pt;}
.x37_c01202{left:350.672653pt;}
.x13_c01202{left:353.053053pt;}
.x9_c01202{left:362.900253pt;}
.x1a_c01202{left:371.876253pt;}
.x28_c01202{left:373.143453pt;}
.x66_c01202{left:381.697053pt;}
.x32_c01202{left:383.118253pt;}
.x4f_c01202{left:392.626653pt;}
.xa_c01202{left:401.796253pt;}
.x58_c01202{left:403.072253pt;}
.x4b_c01202{left:412.250653pt;}
.x64_c01202{left:420.219053pt;}
.x54_c01202{left:421.261853pt;}
.x2d_c01202{left:422.634653pt;}
.x59_c01202{left:430.840653pt;}
.x3d_c01202{left:431.896653pt;}
.x14_c01202{left:434.052653pt;}
.x1b_c01202{left:440.604253pt;}
.xb_c01202{left:442.381853pt;}
.x33_c01202{left:446.966653pt;}
.x15_c01202{left:451.014653pt;}
.x4c_c01202{left:453.540253pt;}
.xc_c01202{left:460.954253pt;}
.x4d_c01202{left:461.970653pt;}
.x34_c01202{left:471.496653pt;}
.x5e_c01202{left:480.705853pt;}
.x29_c01202{left:490.799453pt;}
.xd_c01202{left:500.153853pt;}
.x5a_c01202{left:504.021453pt;}
.x5b_c01202{left:504.971853pt;}
.x5f_c01202{left:509.798653pt;}
.x67_c01202{left:512.152653pt;}
.x16_c01202{left:519.443453pt;}
.x2e_c01202{left:529.325853pt;}
.x3e_c01202{left:530.742653pt;}
.x60_c01202{left:538.499853pt;}
.x65_c01202{left:548.329453pt;}
.x38_c01202{left:549.777053pt;}
.x41_c01202{left:558.066653pt;}
.x3f_c01202{left:559.413053pt;}
.x42_c01202{left:563.905453pt;}
.xe_c01202{left:568.217453pt;}
.x1c_c01202{left:575.895453pt;}
.x1d_c01202{left:577.791853pt;}
.x55_c01202{left:578.865453pt;}
.x5c_c01202{left:587.612653pt;}
.x61_c01202{left:588.941453pt;}
.x43_c01202{left:591.062253pt;}
.x48_c01202{left:598.867853pt;}
.xf_c01202{left:608.371853pt;}
.x4e_c01202{left:618.025453pt;}
.x3_c01202{left:627.049853pt;}
.x40_c01202{left:629.227853pt;}
.x4_c01202{left:637.196253pt;}
.x50_c01202{left:638.159853pt;}
.x44_c01202{left:645.177853pt;}
.x5d_c01202{left:647.980653pt;}
.x45_c01202{left:650.809853pt;}
}





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

.ir_c01203:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01203{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01203;src:url('chunks/assets/font_a56e9e3a0d19b0c66310ba59.woff2')format("woff");}.ff1_c01203{font-family:ff1_c01203;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01203;src:url('chunks/assets/font_18d14de4b32b74a91e1248b0.woff2')format("woff");}.ff2_c01203{font-family:ff2_c01203;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01203;src:url('chunks/assets/font_d92d1021879778a69988e66c.woff2')format("woff");}.ff3_c01203{font-family:ff3_c01203;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01203;src:url('chunks/assets/font_ba5d0d565bd830b73bf11222.woff2')format("woff");}.ff4_c01203{font-family:ff4_c01203;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01203;src:url('chunks/assets/font_f63289625c0f68ae803df01a.woff2')format("woff");}.ff5_c01203{font-family:ff5_c01203;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m60_c01203{transform:matrix(0.023810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.023810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.023810,0.000000,0.000000,0.250000,0,0);}
.m83_c01203{transform:matrix(0.113638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113638,0.000000,0.000000,0.250000,0,0);}
.m4a_c01203{transform:matrix(0.122071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122071,0.000000,0.000000,0.250000,0,0);}
.m24_c01203{transform:matrix(0.124648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124648,0.000000,0.000000,0.250000,0,0);}
.m5f_c01203{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);}
.mb_c01203{transform:matrix(0.149726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149726,0.000000,0.000000,0.250000,0,0);}
.m68_c01203{transform:matrix(0.157049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157049,0.000000,0.000000,0.250000,0,0);}
.m1b_c01203{transform:matrix(0.159615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159615,0.000000,0.000000,0.250000,0,0);}
.m49_c01203{transform:matrix(0.161243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161243,0.000000,0.000000,0.250000,0,0);}
.m15_c01203{transform:matrix(0.162162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162162,0.000000,0.000000,0.250000,0,0);}
.m31_c01203{transform:matrix(0.176809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176809,0.000000,0.000000,0.250000,0,0);}
.m5d_c01203{transform:matrix(0.189058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189058,0.000000,0.000000,0.250000,0,0);}
.m4b_c01203{transform:matrix(0.189616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189616,0.000000,0.000000,0.250000,0,0);}
.m1a_c01203{transform:matrix(0.230017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230017,0.000000,0.000000,0.250000,0,0);}
.m10_c01203{transform:matrix(0.237060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237060,0.000000,0.000000,0.250000,0,0);}
.m0_c01203{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m23_c01203{transform:matrix(0.250656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250656,0.000000,0.000000,0.250000,0,0);}
.m7e_c01203{transform:matrix(0.252044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252044,0.000000,0.000000,0.250000,0,0);}
.m6a_c01203{transform:matrix(0.252724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252724,0.000000,0.000000,0.250000,0,0);}
.m5b_c01203{transform:matrix(0.253387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253387,0.000000,0.000000,0.250000,0,0);}
.m1_c01203{transform:matrix(0.256307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256307,0.000000,0.000000,0.250000,0,0);}
.m26_c01203{transform:matrix(0.257867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257867,0.000000,0.000000,0.250000,0,0);}
.m19_c01203{transform:matrix(0.258691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258691,0.000000,0.000000,0.250000,0,0);}
.m32_c01203{transform:matrix(0.261951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261951,0.000000,0.000000,0.250000,0,0);}
.m73_c01203{transform:matrix(0.262061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262061,0.000000,0.000000,0.250000,0,0);}
.m8_c01203{transform:matrix(0.263424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263424,0.000000,0.000000,0.250000,0,0);}
.m67_c01203{transform:matrix(0.264946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264946,0.000000,0.000000,0.250000,0,0);}
.m2a_c01203{transform:matrix(0.268184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268184,0.000000,0.000000,0.250000,0,0);}
.m34_c01203{transform:matrix(0.271918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271918,0.000000,0.000000,0.250000,0,0);}
.m2d_c01203{transform:matrix(0.272770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272770,0.000000,0.000000,0.250000,0,0);}
.m4c_c01203{transform:matrix(0.273447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273447,0.000000,0.000000,0.250000,0,0);}
.ma_c01203{transform:matrix(0.273834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273834,0.000000,0.000000,0.250000,0,0);}
.m7a_c01203{transform:matrix(0.275723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275723,0.000000,0.000000,0.250000,0,0);}
.m16_c01203{transform:matrix(0.276862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276862,0.000000,0.000000,0.250000,0,0);}
.m51_c01203{transform:matrix(0.276864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276864,0.000000,0.000000,0.250000,0,0);}
.m42_c01203{transform:matrix(0.277043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277043,0.000000,0.000000,0.250000,0,0);}
.m2_c01203{transform:matrix(0.277397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277397,0.000000,0.000000,0.250000,0,0);}
.m56_c01203{transform:matrix(0.278040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278040,0.000000,0.000000,0.250000,0,0);}
.m72_c01203{transform:matrix(0.279922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279922,0.000000,0.000000,0.250000,0,0);}
.mc_c01203{transform:matrix(0.279942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279942,0.000000,0.000000,0.250000,0,0);}
.m3a_c01203{transform:matrix(0.281807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281807,0.000000,0.000000,0.250000,0,0);}
.m30_c01203{transform:matrix(0.282689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282689,0.000000,0.000000,0.250000,0,0);}
.m18_c01203{transform:matrix(0.283195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283195,0.000000,0.000000,0.250000,0,0);}
.m25_c01203{transform:matrix(0.284252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284252,0.000000,0.000000,0.250000,0,0);}
.mf_c01203{transform:matrix(0.284468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284468,0.000000,0.000000,0.250000,0,0);}
.m2f_c01203{transform:matrix(0.284920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284920,0.000000,0.000000,0.250000,0,0);}
.m2c_c01203{transform:matrix(0.285551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285551,0.000000,0.000000,0.250000,0,0);}
.m22_c01203{transform:matrix(0.286574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286574,0.000000,0.000000,0.250000,0,0);}
.m6d_c01203{transform:matrix(0.287423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287423,0.000000,0.000000,0.250000,0,0);}
.m6f_c01203{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m38_c01203{transform:matrix(0.287584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287584,0.000000,0.000000,0.250000,0,0);}
.m48_c01203{transform:matrix(0.288028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288028,0.000000,0.000000,0.250000,0,0);}
.m36_c01203{transform:matrix(0.288718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288718,0.000000,0.000000,0.250000,0,0);}
.m81_c01203{transform:matrix(0.289277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289277,0.000000,0.000000,0.250000,0,0);}
.m14_c01203{transform:matrix(0.289918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289918,0.000000,0.000000,0.250000,0,0);}
.m21_c01203{transform:matrix(0.290410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290410,0.000000,0.000000,0.250000,0,0);}
.md_c01203{transform:matrix(0.290496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290496,0.000000,0.000000,0.250000,0,0);}
.m1f_c01203{transform:matrix(0.291766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291766,0.000000,0.000000,0.250000,0,0);}
.m78_c01203{transform:matrix(0.292307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292307,0.000000,0.000000,0.250000,0,0);}
.m80_c01203{transform:matrix(0.292474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292474,0.000000,0.000000,0.250000,0,0);}
.me_c01203{transform:matrix(0.293307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293307,0.000000,0.000000,0.250000,0,0);}
.m1c_c01203{transform:matrix(0.293682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293682,0.000000,0.000000,0.250000,0,0);}
.m6_c01203{transform:matrix(0.294009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294009,0.000000,0.000000,0.250000,0,0);}
.m41_c01203{transform:matrix(0.294519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294519,0.000000,0.000000,0.250000,0,0);}
.m6e_c01203{transform:matrix(0.294567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294567,0.000000,0.000000,0.250000,0,0);}
.m69_c01203{transform:matrix(0.294795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294795,0.000000,0.000000,0.250000,0,0);}
.m77_c01203{transform:matrix(0.295003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295003,0.000000,0.000000,0.250000,0,0);}
.m27_c01203{transform:matrix(0.295245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295245,0.000000,0.000000,0.250000,0,0);}
.m5c_c01203{transform:matrix(0.295271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295271,0.000000,0.000000,0.250000,0,0);}
.m45_c01203{transform:matrix(0.295516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295516,0.000000,0.000000,0.250000,0,0);}
.m29_c01203{transform:matrix(0.296564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296564,0.000000,0.000000,0.250000,0,0);}
.m20_c01203{transform:matrix(0.297969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297969,0.000000,0.000000,0.250000,0,0);}
.m5_c01203{transform:matrix(0.298318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298318,0.000000,0.000000,0.250000,0,0);}
.m4e_c01203{transform:matrix(0.299030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299030,0.000000,0.000000,0.250000,0,0);}
.m39_c01203{transform:matrix(0.299768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299768,0.000000,0.000000,0.250000,0,0);}
.m40_c01203{transform:matrix(0.300095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300095,0.000000,0.000000,0.250000,0,0);}
.m17_c01203{transform:matrix(0.304054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304054,0.000000,0.000000,0.250000,0,0);}
.m35_c01203{transform:matrix(0.305123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305123,0.000000,0.000000,0.250000,0,0);}
.m3f_c01203{transform:matrix(0.305845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305845,0.000000,0.000000,0.250000,0,0);}
.m43_c01203{transform:matrix(0.306628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306628,0.000000,0.000000,0.250000,0,0);}
.m3e_c01203{transform:matrix(0.306721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306721,0.000000,0.000000,0.250000,0,0);}
.m7_c01203{transform:matrix(0.307757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307757,0.000000,0.000000,0.250000,0,0);}
.m82_c01203{transform:matrix(0.308251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308251,0.000000,0.000000,0.250000,0,0);}
.m7d_c01203{transform:matrix(0.308582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308582,0.000000,0.000000,0.250000,0,0);}
.m33_c01203{transform:matrix(0.309873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309873,0.000000,0.000000,0.250000,0,0);}
.m5e_c01203{transform:matrix(0.311130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311130,0.000000,0.000000,0.250000,0,0);}
.m74_c01203{transform:matrix(0.313141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313141,0.000000,0.000000,0.250000,0,0);}
.m71_c01203{transform:matrix(0.314011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314011,0.000000,0.000000,0.250000,0,0);}
.m64_c01203{transform:matrix(0.314597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314597,0.000000,0.000000,0.250000,0,0);}
.m55_c01203{transform:matrix(0.315155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315155,0.000000,0.000000,0.250000,0,0);}
.m63_c01203{transform:matrix(0.315382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315382,0.000000,0.000000,0.250000,0,0);}
.m79_c01203{transform:matrix(0.318562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318562,0.000000,0.000000,0.250000,0,0);}
.m66_c01203{transform:matrix(0.318691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318691,0.000000,0.000000,0.250000,0,0);}
.m46_c01203{transform:matrix(0.319849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319849,0.000000,0.000000,0.250000,0,0);}
.m6c_c01203{transform:matrix(0.322660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322660,0.000000,0.000000,0.250000,0,0);}
.m7b_c01203{transform:matrix(0.323283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323283,0.000000,0.000000,0.250000,0,0);}
.m57_c01203{transform:matrix(0.323364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323364,0.000000,0.000000,0.250000,0,0);}
.m4_c01203{transform:matrix(0.323521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323521,0.000000,0.000000,0.250000,0,0);}
.m70_c01203{transform:matrix(0.323861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323861,0.000000,0.000000,0.250000,0,0);}
.m13_c01203{transform:matrix(0.325908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325908,0.000000,0.000000,0.250000,0,0);}
.m1e_c01203{transform:matrix(0.326780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326780,0.000000,0.000000,0.250000,0,0);}
.m59_c01203{transform:matrix(0.329301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329301,0.000000,0.000000,0.250000,0,0);}
.m3b_c01203{transform:matrix(0.329376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329376,0.000000,0.000000,0.250000,0,0);}
.m3d_c01203{transform:matrix(0.332051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332051,0.000000,0.000000,0.250000,0,0);}
.m2e_c01203{transform:matrix(0.332073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332073,0.000000,0.000000,0.250000,0,0);}
.m58_c01203{transform:matrix(0.332916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332916,0.000000,0.000000,0.250000,0,0);}
.m47_c01203{transform:matrix(0.333849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333849,0.000000,0.000000,0.250000,0,0);}
.m52_c01203{transform:matrix(0.334471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334471,0.000000,0.000000,0.250000,0,0);}
.m54_c01203{transform:matrix(0.337072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337072,0.000000,0.000000,0.250000,0,0);}
.m50_c01203{transform:matrix(0.338507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338507,0.000000,0.000000,0.250000,0,0);}
.m28_c01203{transform:matrix(0.339189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339189,0.000000,0.000000,0.250000,0,0);}
.m4d_c01203{transform:matrix(0.339914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339914,0.000000,0.000000,0.250000,0,0);}
.m75_c01203{transform:matrix(0.340891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340891,0.000000,0.000000,0.250000,0,0);}
.m9_c01203{transform:matrix(0.341561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341561,0.000000,0.000000,0.250000,0,0);}
.m6b_c01203{transform:matrix(0.341570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341570,0.000000,0.000000,0.250000,0,0);}
.m37_c01203{transform:matrix(0.343809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343809,0.000000,0.000000,0.250000,0,0);}
.m44_c01203{transform:matrix(0.343981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343981,0.000000,0.000000,0.250000,0,0);}
.m11_c01203{transform:matrix(0.344795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344795,0.000000,0.000000,0.250000,0,0);}
.m12_c01203{transform:matrix(0.345173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345173,0.000000,0.000000,0.250000,0,0);}
.m3_c01203{transform:matrix(0.345955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345955,0.000000,0.000000,0.250000,0,0);}
.m76_c01203{transform:matrix(0.346085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346085,0.000000,0.000000,0.250000,0,0);}
.m7c_c01203{transform:matrix(0.352277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352277,0.000000,0.000000,0.250000,0,0);}
.m3c_c01203{transform:matrix(0.355627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355627,0.000000,0.000000,0.250000,0,0);}
.m62_c01203{transform:matrix(0.355922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355922,0.000000,0.000000,0.250000,0,0);}
.m65_c01203{transform:matrix(0.356783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356783,0.000000,0.000000,0.250000,0,0);}
.m2b_c01203{transform:matrix(0.357114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357114,0.000000,0.000000,0.250000,0,0);}
.m7f_c01203{transform:matrix(0.358738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358738,0.000000,0.000000,0.250000,0,0);}
.m4f_c01203{transform:matrix(0.361228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361228,0.000000,0.000000,0.250000,0,0);}
.m53_c01203{transform:matrix(0.363124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363124,0.000000,0.000000,0.250000,0,0);}
.m1d_c01203{transform:matrix(0.374766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374766,0.000000,0.000000,0.250000,0,0);}
.m5a_c01203{transform:matrix(0.385361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385361,0.000000,0.000000,0.250000,0,0);}
.m61_c01203{transform:matrix(0.462182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462182,0.000000,0.000000,0.250000,0,0);}
.v1_c01203{vertical-align:-37.065600px;}
.v0_c01203{vertical-align:0.000000px;}
.lsf_c01203{letter-spacing:-2.661127px;}
.ls4_c01203{letter-spacing:-2.564100px;}
.ls15_c01203{letter-spacing:-2.356200px;}
.lsa_c01203{letter-spacing:-1.296702px;}
.ls6_c01203{letter-spacing:-1.226016px;}
.ls12_c01203{letter-spacing:-0.893772px;}
.ls2_c01203{letter-spacing:0.000000px;}
.lsb_c01203{letter-spacing:0.469973px;}
.ls8_c01203{letter-spacing:0.984060px;}
.lsd_c01203{letter-spacing:1.111968px;}
.ls1_c01203{letter-spacing:1.267398px;}
.ls10_c01203{letter-spacing:1.732500px;}
.ls0_c01203{letter-spacing:2.673990px;}
.ls16_c01203{letter-spacing:3.316500px;}
.ls14_c01203{letter-spacing:3.366000px;}
.ls17_c01203{letter-spacing:3.405610px;}
.ls11_c01203{letter-spacing:3.564000px;}
.ls3_c01203{letter-spacing:3.663000px;}
.lse_c01203{letter-spacing:3.702610px;}
.ls9_c01203{letter-spacing:4.682700px;}
.ls18_c01203{letter-spacing:31.363200px;}
.ls5_c01203{letter-spacing:52.747398px;}
.lsc_c01203{letter-spacing:54.172998px;}
.ls7_c01203{letter-spacing:57.024198px;}
.ls13_c01203{letter-spacing:59.875398px;}
.sc__c01203{text-shadow:none;}
.sc0_c01203{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01203{-webkit-text-stroke:0px transparent;}
.sc0_c01203{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01203{word-spacing:-20.988990px;}
.ws3_c01203{word-spacing:-19.582398px;}
.ws0_c01203{word-spacing:-18.315000px;}
.ws1_c01203{word-spacing:-17.018298px;}
.ws4_c01203{word-spacing:0.000000px;}
._1_c01203{margin-left:-12.527460px;}
._0_c01203{margin-left:-5.128200px;}
._6_c01203{margin-left:-2.695968px;}
._2_c01203{margin-left:-1.509156px;}
._5_c01203{width:7.619040px;}
._3_c01203{width:12.307680px;}
._7_c01203{width:27.985320px;}
._4_c01203{width:38.259540px;}
._8_c01203{width:147.879072px;}
.fc0_c01203{color:transparent;}
.fs2_c01203{font-size:22.176000px;}
.fs15_c01203{font-size:25.146000px;}
.fsf_c01203{font-size:26.928000px;}
.fs16_c01203{font-size:31.363200px;}
.fs10_c01203{font-size:34.650000px;}
.fsb_c01203{font-size:36.432000px;}
.fsd_c01203{font-size:50.292000px;}
.fs3_c01203{font-size:52.747398px;}
.fsc_c01203{font-size:54.172998px;}
.fs8_c01203{font-size:56.232000px;}
.fs7_c01203{font-size:57.024198px;}
.fs12_c01203{font-size:59.875398px;}
.fsa_c01203{font-size:66.330000px;}
.fs14_c01203{font-size:66.528000px;}
.fs13_c01203{font-size:67.320000px;}
.fs5_c01203{font-size:68.112198px;}
.fs6_c01203{font-size:71.280000px;}
.fs0_c01203{font-size:73.260000px;}
.fs4_c01203{font-size:74.052198px;}
.fs1_c01203{font-size:74.844000px;}
.fse_c01203{font-size:76.032198px;}
.fs11_c01203{font-size:79.200000px;}
.fs9_c01203{font-size:93.654000px;}
.y0_c01203{bottom:0.000000px;}
.y21_c01203{bottom:24.498585px;}
.y22_c01203{bottom:31.626585px;}
.y20_c01203{bottom:35.190585px;}
.y1f_c01203{bottom:57.287385px;}
.y1_c01203{bottom:76.500000px;}
.y1e_c01203{bottom:126.077535px;}
.y1d_c01203{bottom:158.148585px;}
.y1c_c01203{bottom:191.293785px;}
.y1b_c01203{bottom:191.295270px;}
.y1a_c01203{bottom:256.514985px;}
.y19_c01203{bottom:318.884985px;}
.y18_c01203{bottom:343.120185px;}
.y17_c01203{bottom:351.678735px;}
.y15_c01203{bottom:352.030185px;}
.y16_c01203{bottom:357.376185px;}
.y14_c01203{bottom:384.467535px;}
.y13_c01203{bottom:441.491535px;}
.y12_c01203{bottom:448.975935px;}
.y11_c01203{bottom:481.051935px;}
.y10_c01203{bottom:513.479385px;}
.yf_c01203{bottom:540.209385px;}
.ye_c01203{bottom:546.268185px;}
.yd_c01203{bottom:608.999535px;}
.yc_c01203{bottom:641.426985px;}
.y9_c01203{bottom:703.089135px;}
.yb_c01203{bottom:704.866185px;}
.y8_c01203{bottom:736.947135px;}
.ya_c01203{bottom:737.298585px;}
.y7_c01203{bottom:802.168335px;}
.y6_c01203{bottom:835.308585px;}
.y5_c01203{bottom:869.879385px;}
.y4_c01203{bottom:898.034985px;}
.y3_c01203{bottom:931.185135px;}
.y2_c01203{bottom:1075.522185px;}
.h1a_c01203{height:20.887891px;}
.h4_c01203{height:23.128875px;}
.h19_c01203{height:26.226492px;}
.h12_c01203{height:28.085063px;}
.h18_c01203{height:32.321025px;}
.h5_c01203{height:35.129767px;}
.he_c01203{height:36.079217px;}
.h14_c01203{height:36.138867px;}
.hd_c01203{height:36.716625px;}
.h9_c01203{height:37.978116px;}
.h16_c01203{height:39.877015px;}
.hf_c01203{height:49.358848px;}
.ha_c01203{height:55.188633px;}
.hc_c01203{height:69.180117px;}
.h10_c01203{height:69.957422px;}
.h17_c01203{height:70.212656px;}
.h7_c01203{height:71.038894px;}
.h2_c01203{height:71.900684px;}
.h6_c01203{height:72.678183px;}
.h3_c01203{height:73.455293px;}
.h8_c01203{height:74.342813px;}
.h11_c01203{height:74.621444px;}
.h13_c01203{height:79.299207px;}
.h15_c01203{height:79.818750px;}
.hb_c01203{height:91.916279px;}
.h1_c01203{height:1110.000000px;}
.h0_c01203{height:1263.000000px;}
.w1_c01203{width:775.500000px;}
.w0_c01203{width:892.500000px;}
.x0_c01203{left:0.000000px;}
.x1_c01203{left:58.500000px;}
.x25_c01203{left:98.348235px;}
.x4_c01203{left:99.422385px;}
.x1d_c01203{left:113.257635px;}
.x5_c01203{left:165.915735px;}
.x14_c01203{left:167.242335px;}
.x1e_c01203{left:198.744135px;}
.x23_c01203{left:201.120135px;}
.x34_c01203{left:211.777485px;}
.xf_c01203{left:221.207235px;}
.xc_c01203{left:232.369485px;}
.x51_c01203{left:243.789135px;}
.x43_c01203{left:245.506785px;}
.x4d_c01203{left:253.263435px;}
.x2c_c01203{left:255.322635px;}
.x38_c01203{left:265.593885px;}
.x15_c01203{left:266.697735px;}
.x6_c01203{left:276.142335px;}
.xd_c01203{left:279.171735px;}
.x26_c01203{left:286.428435px;}
.x44_c01203{left:287.685735px;}
.x58_c01203{left:289.804335px;}
.x16_c01203{left:298.244085px;}
.x4b_c01203{left:299.432085px;}
.x52_c01203{left:309.119235px;}
.x17_c01203{left:311.841735px;}
.x24_c01203{left:321.870435px;}
.x10_c01203{left:330.899235px;}
.x4e_c01203{left:332.245635px;}
.x39_c01203{left:342.427785px;}
.x18_c01203{left:344.363235px;}
.x27_c01203{left:353.015835px;}
.x4c_c01203{left:355.084935px;}
.x45_c01203{left:364.524585px;}
.x19_c01203{left:366.167985px;}
.x2d_c01203{left:375.785835px;}
.x40_c01203{left:376.840185px;}
.x35_c01203{left:388.022235px;}
.x7_c01203{left:399.021135px;}
.x1f_c01203{left:410.717985px;}
.x4f_c01203{left:419.464635px;}
.x3a_c01203{left:421.731735px;}
.x2e_c01203{left:422.805885px;}
.x36_c01203{left:433.205835px;}
.x11_c01203{left:434.898735px;}
.x20_c01203{left:444.105735px;}
.x3d_c01203{left:453.134535px;}
.x3b_c01203{left:455.074935px;}
.x2f_c01203{left:476.003535px;}
.x53_c01203{left:486.754935px;}
.x46_c01203{left:488.447835px;}
.x8_c01203{left:490.130835px;}
.x28_c01203{left:498.912135px;}
.x3e_c01203{left:508.030035px;}
.x1a_c01203{left:510.153585px;}
.xe_c01203{left:515.613435px;}
.x47_c01203{left:520.221885px;}
.x2b_c01203{left:521.993985px;}
.x12_c01203{left:531.611835px;}
.x3f_c01203{left:535.522335px;}
.x1b_c01203{left:542.056335px;}
.x3c_c01203{left:544.318485px;}
.x41_c01203{left:553.758135px;}
.x30_c01203{left:555.391635px;}
.x37_c01203{left:564.123435px;}
.x54_c01203{left:576.057885px;}
.x1c_c01203{left:585.522285px;}
.x9_c01203{left:586.947885px;}
.x48_c01203{left:599.134785px;}
.xa_c01203{left:609.188235px;}
.x13_c01203{left:619.370385px;}
.x49_c01203{left:629.903985px;}
.x31_c01203{left:631.067235px;}
.x42_c01203{left:641.972085px;}
.x55_c01203{left:662.692785px;}
.x29_c01203{left:664.801485px;}
.x59_c01203{left:669.934635px;}
.x21_c01203{left:676.290435px;}
.x32_c01203{left:686.363685px;}
.x56_c01203{left:696.402285px;}
.x2a_c01203{left:697.615035px;}
.x50_c01203{left:707.569485px;}
.x5a_c01203{left:711.900735px;}
.xb_c01203{left:718.751535px;}
.x22_c01203{left:720.315735px;}
.x2_c01203{left:724.330185px;}
.x33_c01203{left:730.403835px;}
.x3_c01203{left:736.457685px;}
.x57_c01203{left:740.739435px;}
.x4a_c01203{left:747.214035px;}
.x5b_c01203{left:759.747435px;}
@media print{
.v1_c01203{vertical-align:-32.947200pt;}
.v0_c01203{vertical-align:0.000000pt;}
.lsf_c01203{letter-spacing:-2.365446pt;}
.ls4_c01203{letter-spacing:-2.279200pt;}
.ls15_c01203{letter-spacing:-2.094400pt;}
.lsa_c01203{letter-spacing:-1.152624pt;}
.ls6_c01203{letter-spacing:-1.089792pt;}
.ls12_c01203{letter-spacing:-0.794464pt;}
.ls2_c01203{letter-spacing:0.000000pt;}
.lsb_c01203{letter-spacing:0.417754pt;}
.ls8_c01203{letter-spacing:0.874720pt;}
.lsd_c01203{letter-spacing:0.988416pt;}
.ls1_c01203{letter-spacing:1.126576pt;}
.ls10_c01203{letter-spacing:1.540000pt;}
.ls0_c01203{letter-spacing:2.376880pt;}
.ls16_c01203{letter-spacing:2.948000pt;}
.ls14_c01203{letter-spacing:2.992000pt;}
.ls17_c01203{letter-spacing:3.027209pt;}
.ls11_c01203{letter-spacing:3.168000pt;}
.ls3_c01203{letter-spacing:3.256000pt;}
.lse_c01203{letter-spacing:3.291209pt;}
.ls9_c01203{letter-spacing:4.162400pt;}
.ls18_c01203{letter-spacing:27.878400pt;}
.ls5_c01203{letter-spacing:46.886576pt;}
.lsc_c01203{letter-spacing:48.153776pt;}
.ls7_c01203{letter-spacing:50.688176pt;}
.ls13_c01203{letter-spacing:53.222576pt;}
.ws2_c01203{word-spacing:-18.656880pt;}
.ws3_c01203{word-spacing:-17.406576pt;}
.ws0_c01203{word-spacing:-16.280000pt;}
.ws1_c01203{word-spacing:-15.127376pt;}
.ws4_c01203{word-spacing:0.000000pt;}
._1_c01203{margin-left:-11.135520pt;}
._0_c01203{margin-left:-4.558400pt;}
._6_c01203{margin-left:-2.396416pt;}
._2_c01203{margin-left:-1.341472pt;}
._5_c01203{width:6.772480pt;}
._3_c01203{width:10.940160pt;}
._7_c01203{width:24.875840pt;}
._4_c01203{width:34.008480pt;}
._8_c01203{width:131.448064pt;}
.fs2_c01203{font-size:19.712000pt;}
.fs15_c01203{font-size:22.352000pt;}
.fsf_c01203{font-size:23.936000pt;}
.fs16_c01203{font-size:27.878400pt;}
.fs10_c01203{font-size:30.800000pt;}
.fsb_c01203{font-size:32.384000pt;}
.fsd_c01203{font-size:44.704000pt;}
.fs3_c01203{font-size:46.886576pt;}
.fsc_c01203{font-size:48.153776pt;}
.fs8_c01203{font-size:49.984000pt;}
.fs7_c01203{font-size:50.688176pt;}
.fs12_c01203{font-size:53.222576pt;}
.fsa_c01203{font-size:58.960000pt;}
.fs14_c01203{font-size:59.136000pt;}
.fs13_c01203{font-size:59.840000pt;}
.fs5_c01203{font-size:60.544176pt;}
.fs6_c01203{font-size:63.360000pt;}
.fs0_c01203{font-size:65.120000pt;}
.fs4_c01203{font-size:65.824176pt;}
.fs1_c01203{font-size:66.528000pt;}
.fse_c01203{font-size:67.584176pt;}
.fs11_c01203{font-size:70.400000pt;}
.fs9_c01203{font-size:83.248000pt;}
.y0_c01203{bottom:0.000000pt;}
.y21_c01203{bottom:21.776520pt;}
.y22_c01203{bottom:28.112520pt;}
.y20_c01203{bottom:31.280520pt;}
.y1f_c01203{bottom:50.922120pt;}
.y1_c01203{bottom:68.000000pt;}
.y1e_c01203{bottom:112.068920pt;}
.y1d_c01203{bottom:140.576520pt;}
.y1c_c01203{bottom:170.038920pt;}
.y1b_c01203{bottom:170.040240pt;}
.y1a_c01203{bottom:228.013320pt;}
.y19_c01203{bottom:283.453320pt;}
.y18_c01203{bottom:304.995720pt;}
.y17_c01203{bottom:312.603320pt;}
.y15_c01203{bottom:312.915720pt;}
.y16_c01203{bottom:317.667720pt;}
.y14_c01203{bottom:341.748920pt;}
.y13_c01203{bottom:392.436920pt;}
.y12_c01203{bottom:399.089720pt;}
.y11_c01203{bottom:427.601720pt;}
.y10_c01203{bottom:456.426120pt;}
.yf_c01203{bottom:480.186120pt;}
.ye_c01203{bottom:485.571720pt;}
.yd_c01203{bottom:541.332920pt;}
.yc_c01203{bottom:570.157320pt;}
.y9_c01203{bottom:624.968120pt;}
.yb_c01203{bottom:626.547720pt;}
.y8_c01203{bottom:655.064120pt;}
.ya_c01203{bottom:655.376520pt;}
.y7_c01203{bottom:713.038520pt;}
.y6_c01203{bottom:742.496520pt;}
.y5_c01203{bottom:773.226120pt;}
.y4_c01203{bottom:798.253320pt;}
.y3_c01203{bottom:827.720120pt;}
.y2_c01203{bottom:956.019720pt;}
.h1a_c01203{height:18.567014pt;}
.h4_c01203{height:20.559000pt;}
.h19_c01203{height:23.312438pt;}
.h12_c01203{height:24.964500pt;}
.h18_c01203{height:28.729800pt;}
.h5_c01203{height:31.226460pt;}
.he_c01203{height:32.070415pt;}
.h14_c01203{height:32.123438pt;}
.hd_c01203{height:32.637000pt;}
.h9_c01203{height:33.758325pt;}
.h16_c01203{height:35.446236pt;}
.hf_c01203{height:43.874531pt;}
.ha_c01203{height:49.056562pt;}
.hc_c01203{height:61.493438pt;}
.h10_c01203{height:62.184375pt;}
.h17_c01203{height:62.411250pt;}
.h7_c01203{height:63.145684pt;}
.h2_c01203{height:63.911719pt;}
.h6_c01203{height:64.602829pt;}
.h3_c01203{height:65.293594pt;}
.h8_c01203{height:66.082500pt;}
.h11_c01203{height:66.330173pt;}
.h13_c01203{height:70.488184pt;}
.h15_c01203{height:70.950000pt;}
.hb_c01203{height:81.703359pt;}
.h1_c01203{height:986.666667pt;}
.h0_c01203{height:1122.666667pt;}
.w1_c01203{width:689.333333pt;}
.w0_c01203{width:793.333333pt;}
.x0_c01203{left:0.000000pt;}
.x1_c01203{left:52.000000pt;}
.x25_c01203{left:87.420653pt;}
.x4_c01203{left:88.375453pt;}
.x1d_c01203{left:100.673453pt;}
.x5_c01203{left:147.480653pt;}
.x14_c01203{left:148.659853pt;}
.x1e_c01203{left:176.661453pt;}
.x23_c01203{left:178.773453pt;}
.x34_c01203{left:188.246653pt;}
.xf_c01203{left:196.628653pt;}
.xc_c01203{left:206.550653pt;}
.x51_c01203{left:216.701453pt;}
.x43_c01203{left:218.228253pt;}
.x4d_c01203{left:225.123053pt;}
.x2c_c01203{left:226.953453pt;}
.x38_c01203{left:236.083453pt;}
.x15_c01203{left:237.064653pt;}
.x6_c01203{left:245.459853pt;}
.xd_c01203{left:248.152653pt;}
.x26_c01203{left:254.603053pt;}
.x44_c01203{left:255.720653pt;}
.x58_c01203{left:257.603853pt;}
.x16_c01203{left:265.105853pt;}
.x4b_c01203{left:266.161853pt;}
.x52_c01203{left:274.772653pt;}
.x17_c01203{left:277.192653pt;}
.x24_c01203{left:286.107053pt;}
.x10_c01203{left:294.132653pt;}
.x4e_c01203{left:295.329453pt;}
.x39_c01203{left:304.380253pt;}
.x18_c01203{left:306.100653pt;}
.x27_c01203{left:313.791853pt;}
.x4c_c01203{left:315.631053pt;}
.x45_c01203{left:324.021853pt;}
.x19_c01203{left:325.482653pt;}
.x2d_c01203{left:334.031853pt;}
.x40_c01203{left:334.969053pt;}
.x35_c01203{left:344.908653pt;}
.x7_c01203{left:354.685453pt;}
.x1f_c01203{left:365.082653pt;}
.x4f_c01203{left:372.857453pt;}
.x3a_c01203{left:374.872653pt;}
.x2e_c01203{left:375.827453pt;}
.x36_c01203{left:385.071853pt;}
.x11_c01203{left:386.576653pt;}
.x20_c01203{left:394.760653pt;}
.x3d_c01203{left:402.786253pt;}
.x3b_c01203{left:404.511053pt;}
.x2f_c01203{left:423.114253pt;}
.x53_c01203{left:432.671053pt;}
.x46_c01203{left:434.175853pt;}
.x8_c01203{left:435.671853pt;}
.x28_c01203{left:443.477453pt;}
.x3e_c01203{left:451.582253pt;}
.x1a_c01203{left:453.469853pt;}
.xe_c01203{left:458.323053pt;}
.x47_c01203{left:462.419453pt;}
.x2b_c01203{left:463.994653pt;}
.x12_c01203{left:472.543853pt;}
.x3f_c01203{left:476.019853pt;}
.x1b_c01203{left:481.827853pt;}
.x3c_c01203{left:483.838653pt;}
.x41_c01203{left:492.229453pt;}
.x30_c01203{left:493.681453pt;}
.x37_c01203{left:501.443053pt;}
.x54_c01203{left:512.051453pt;}
.x1c_c01203{left:520.464253pt;}
.x9_c01203{left:521.731453pt;}
.x48_c01203{left:532.564253pt;}
.xa_c01203{left:541.500653pt;}
.x13_c01203{left:550.551453pt;}
.x49_c01203{left:559.914653pt;}
.x31_c01203{left:560.948653pt;}
.x42_c01203{left:570.641853pt;}
.x55_c01203{left:589.060253pt;}
.x29_c01203{left:590.934653pt;}
.x59_c01203{left:595.497453pt;}
.x21_c01203{left:601.147053pt;}
.x32_c01203{left:610.101053pt;}
.x56_c01203{left:619.024253pt;}
.x2a_c01203{left:620.102253pt;}
.x50_c01203{left:628.950653pt;}
.x5a_c01203{left:632.800653pt;}
.xb_c01203{left:638.890253pt;}
.x22_c01203{left:640.280653pt;}
.x2_c01203{left:643.849053pt;}
.x33_c01203{left:649.247853pt;}
.x3_c01203{left:654.629053pt;}
.x57_c01203{left:658.435053pt;}
.x4a_c01203{left:664.190253pt;}
.x5b_c01203{left:675.331053pt;}
}





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

.ir_c01204:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01204{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01204;src:url('chunks/assets/font_cc1a2a6d7016121fd6daa15b.woff2')format("woff");}.ff1_c01204{font-family:ff1_c01204;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01204;src:url('chunks/assets/font_0ed26d26ac6a8218a9d4267e.woff2')format("woff");}.ff2_c01204{font-family:ff2_c01204;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01204;src:url('chunks/assets/font_e92fe5838637e73f093512e4.woff2')format("woff");}.ff3_c01204{font-family:ff3_c01204;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01204;src:url('chunks/assets/font_61bc7097c6a076e6c09d6f6c.woff2')format("woff");}.ff4_c01204{font-family:ff4_c01204;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m9_c01204{transform:matrix(0.119048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119048,0.000000,0.000000,0.250000,0,0);}
.m1e_c01204{transform:matrix(0.131579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131579,0.000000,0.000000,0.250000,0,0);}
.m7_c01204{transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);}
.m1c_c01204{transform:matrix(0.190790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190790,0.000000,0.000000,0.250000,0,0);}
.m1f_c01204{transform:matrix(0.197369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197369,0.000000,0.000000,0.250000,0,0);}
.m1d_c01204{transform:matrix(0.202067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202067,0.000000,0.000000,0.250000,0,0);}
.me_c01204{transform:matrix(0.226061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226061,0.000000,0.000000,0.250000,0,0);}
.m0_c01204{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m5_c01204{transform:matrix(0.251421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251421,0.000000,0.000000,0.250000,0,0);}
.m3_c01204{transform:matrix(0.254401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254401,0.000000,0.000000,0.250000,0,0);}
.mb_c01204{transform:matrix(0.255923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255923,0.000000,0.000000,0.250000,0,0);}
.m20_c01204{transform:matrix(0.256164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256164,0.000000,0.000000,0.250000,0,0);}
.m1_c01204{transform:matrix(0.271895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271895,0.000000,0.000000,0.250000,0,0);}
.m6_c01204{transform:matrix(0.273396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273396,0.000000,0.000000,0.250000,0,0);}
.mc_c01204{transform:matrix(0.276002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276002,0.000000,0.000000,0.250000,0,0);}
.ma_c01204{transform:matrix(0.276346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276346,0.000000,0.000000,0.250000,0,0);}
.m4_c01204{transform:matrix(0.278367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278367,0.000000,0.000000,0.250000,0,0);}
.m24_c01204{transform:matrix(0.278904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278904,0.000000,0.000000,0.250000,0,0);}
.m8_c01204{transform:matrix(0.280028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280028,0.000000,0.000000,0.250000,0,0);}
.m16_c01204{transform:matrix(0.281463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281463,0.000000,0.000000,0.250000,0,0);}
.m21_c01204{transform:matrix(0.283338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283338,0.000000,0.000000,0.250000,0,0);}
.m2_c01204{transform:matrix(0.284022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284022,0.000000,0.000000,0.250000,0,0);}
.md_c01204{transform:matrix(0.284336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284336,0.000000,0.000000,0.250000,0,0);}
.mf_c01204{transform:matrix(0.284788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284788,0.000000,0.000000,0.250000,0,0);}
.m1b_c01204{transform:matrix(0.286468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286468,0.000000,0.000000,0.250000,0,0);}
.m1a_c01204{transform:matrix(0.289124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289124,0.000000,0.000000,0.250000,0,0);}
.m23_c01204{transform:matrix(0.292007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292007,0.000000,0.000000,0.250000,0,0);}
.m17_c01204{transform:matrix(0.292075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292075,0.000000,0.000000,0.250000,0,0);}
.m18_c01204{transform:matrix(0.297414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297414,0.000000,0.000000,0.250000,0,0);}
.m22_c01204{transform:matrix(0.315077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315077,0.000000,0.000000,0.250000,0,0);}
.m13_c01204{transform:matrix(0.321588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321588,0.000000,0.000000,0.250000,0,0);}
.m10_c01204{transform:matrix(0.324595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324595,0.000000,0.000000,0.250000,0,0);}
.m12_c01204{transform:matrix(0.324851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324851,0.000000,0.000000,0.250000,0,0);}
.m11_c01204{transform:matrix(0.327926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327926,0.000000,0.000000,0.250000,0,0);}
.m15_c01204{transform:matrix(0.336431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336431,0.000000,0.000000,0.250000,0,0);}
.m14_c01204{transform:matrix(0.337514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337514,0.000000,0.000000,0.250000,0,0);}
.m19_c01204{transform:matrix(0.346915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346915,0.000000,0.000000,0.250000,0,0);}
.v2_c01204{vertical-align:-18.513000px;}
.v1_c01204{vertical-align:-12.830400px;}
.v0_c01204{vertical-align:0.000000px;}
.ls9_c01204{letter-spacing:-1.552320px;}
.ls1_c01204{letter-spacing:0.000000px;}
.ls7_c01204{letter-spacing:1.237500px;}
.ls8_c01204{letter-spacing:1.584000px;}
.lsa_c01204{letter-spacing:2.207779px;}
.ls4_c01204{letter-spacing:2.491949px;}
.ls3_c01204{letter-spacing:3.643200px;}
.ls2_c01204{letter-spacing:3.702610px;}
.ls0_c01204{letter-spacing:13.959000px;}
.ls6_c01204{letter-spacing:29.937798px;}
.lsb_c01204{letter-spacing:54.172998px;}
.ls5_c01204{letter-spacing:55.598598px;}
.sc__c01204{text-shadow:none;}
.sc0_c01204{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01204{-webkit-text-stroke:0px transparent;}
.sc0_c01204{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01204{word-spacing:0.000000px;}
._0_c01204{width:535.728600px;}
.fc0_c01204{color:transparent;}
.fse_c01204{font-size:22.176000px;}
.fs4_c01204{font-size:23.166000px;}
.fs9_c01204{font-size:24.750000px;}
.fs5_c01204{font-size:29.937798px;}
.fsa_c01204{font-size:31.680000px;}
.fs6_c01204{font-size:33.660000px;}
.fsb_c01204{font-size:44.352000px;}
.fsc_c01204{font-size:49.500000px;}
.fsd_c01204{font-size:54.172998px;}
.fs2_c01204{font-size:55.598598px;}
.fs3_c01204{font-size:66.528000px;}
.fs8_c01204{font-size:70.884000px;}
.fs1_c01204{font-size:72.864000px;}
.fs0_c01204{font-size:74.052198px;}
.fs7_c01204{font-size:79.200000px;}
.y0_c01204{bottom:0.000000px;}
.y1_c01204{bottom:76.500000px;}
.y14_c01204{bottom:201.990735px;}
.y13_c01204{bottom:638.932185px;}
.y12_c01204{bottom:671.720985px;}
.y11_c01204{bottom:736.590735px;}
.y10_c01204{bottom:768.666735px;}
.yd_c01204{bottom:828.893385px;}
.yb_c01204{bottom:829.249785px;}
.y8_c01204{bottom:832.100985px;}
.ye_c01204{bottom:832.462335px;}
.y9_c01204{bottom:832.818735px;}
.yc_c01204{bottom:835.313535px;}
.yf_c01204{bottom:836.734185px;}
.ya_c01204{bottom:844.579935px;}
.y7_c01204{bottom:858.830985px;}
.y6_c01204{bottom:869.527935px;}
.y5_c01204{bottom:880.219935px;}
.y4_c01204{bottom:895.896585px;}
.y3_c01204{bottom:928.328985px;}
.y2_c01204{bottom:1070.888985px;}
.h6_c01204{height:19.938573px;}
.hf_c01204{height:23.128875px;}
.h5_c01204{height:24.161414px;}
.ha_c01204{height:24.290771px;}
.h7_c01204{height:33.035449px;}
.hb_c01204{height:33.041250px;}
.he_c01204{height:36.079217px;}
.h4_c01204{height:37.028666px;}
.hc_c01204{height:46.257750px;}
.hd_c01204{height:51.626953px;}
.h9_c01204{height:69.568770px;}
.h3_c01204{height:71.512031px;}
.h2_c01204{height:72.678183px;}
.h8_c01204{height:82.603125px;}
.h1_c01204{height:1110.000000px;}
.h0_c01204{height:1263.000000px;}
.w1_c01204{width:775.500000px;}
.w0_c01204{width:892.500000px;}
.x0_c01204{left:0.000000px;}
.x1_c01204{left:58.500000px;}
.x24_c01204{left:97.996785px;}
.x4_c01204{left:99.056085px;}
.xf_c01204{left:165.242535px;}
.x5_c01204{left:166.687935px;}
.x11_c01204{left:199.130235px;}
.x12_c01204{left:211.965585px;}
.x10_c01204{left:213.693135px;}
.x13_c01204{left:223.677285px;}
.x21_c01204{left:232.844685px;}
.x14_c01204{left:253.728735px;}
.x6_c01204{left:254.971185px;}
.x7_c01204{left:289.700385px;}
.x15_c01204{left:299.486535px;}
.x22_c01204{left:321.261585px;}
.x16_c01204{left:343.670235px;}
.x23_c01204{left:353.500935px;}
.x8_c01204{left:378.369735px;}
.x9_c01204{left:410.717985px;}
.x17_c01204{left:421.702035px;}
.x1c_c01204{left:443.833485px;}
.xa_c01204{left:445.486785px;}
.x1d_c01204{left:475.780785px;}
.x1e_c01204{left:508.569585px;}
.xb_c01204{left:519.617985px;}
.x18_c01204{left:523.023585px;}
.x19_c01204{left:564.613485px;}
.xc_c01204{left:566.633085px;}
.x1f_c01204{left:585.551985px;}
.x20_c01204{left:619.414935px;}
.x1a_c01204{left:640.734585px;}
.x25_c01204{left:646.412235px;}
.x1b_c01204{left:686.522085px;}
.xd_c01204{left:711.202785px;}
.xe_c01204{left:714.078735px;}
.x2_c01204{left:718.622835px;}
.x3_c01204{left:729.671235px;}
@media print{
.v2_c01204{vertical-align:-16.456000pt;}
.v1_c01204{vertical-align:-11.404800pt;}
.v0_c01204{vertical-align:0.000000pt;}
.ls9_c01204{letter-spacing:-1.379840pt;}
.ls1_c01204{letter-spacing:0.000000pt;}
.ls7_c01204{letter-spacing:1.100000pt;}
.ls8_c01204{letter-spacing:1.408000pt;}
.lsa_c01204{letter-spacing:1.962470pt;}
.ls4_c01204{letter-spacing:2.215066pt;}
.ls3_c01204{letter-spacing:3.238400pt;}
.ls2_c01204{letter-spacing:3.291209pt;}
.ls0_c01204{letter-spacing:12.408000pt;}
.ls6_c01204{letter-spacing:26.611376pt;}
.lsb_c01204{letter-spacing:48.153776pt;}
.ls5_c01204{letter-spacing:49.420976pt;}
.ws0_c01204{word-spacing:0.000000pt;}
._0_c01204{width:476.203200pt;}
.fse_c01204{font-size:19.712000pt;}
.fs4_c01204{font-size:20.592000pt;}
.fs9_c01204{font-size:22.000000pt;}
.fs5_c01204{font-size:26.611376pt;}
.fsa_c01204{font-size:28.160000pt;}
.fs6_c01204{font-size:29.920000pt;}
.fsb_c01204{font-size:39.424000pt;}
.fsc_c01204{font-size:44.000000pt;}
.fsd_c01204{font-size:48.153776pt;}
.fs2_c01204{font-size:49.420976pt;}
.fs3_c01204{font-size:59.136000pt;}
.fs8_c01204{font-size:63.008000pt;}
.fs1_c01204{font-size:64.768000pt;}
.fs0_c01204{font-size:65.824176pt;}
.fs7_c01204{font-size:70.400000pt;}
.y0_c01204{bottom:0.000000pt;}
.y1_c01204{bottom:68.000000pt;}
.y14_c01204{bottom:179.547320pt;}
.y13_c01204{bottom:567.939720pt;}
.y12_c01204{bottom:597.085320pt;}
.y11_c01204{bottom:654.747320pt;}
.y10_c01204{bottom:683.259320pt;}
.yd_c01204{bottom:736.794120pt;}
.yb_c01204{bottom:737.110920pt;}
.y8_c01204{bottom:739.645320pt;}
.ye_c01204{bottom:739.966520pt;}
.y9_c01204{bottom:740.283320pt;}
.yc_c01204{bottom:742.500920pt;}
.yf_c01204{bottom:743.763720pt;}
.ya_c01204{bottom:750.737720pt;}
.y7_c01204{bottom:763.405320pt;}
.y6_c01204{bottom:772.913720pt;}
.y5_c01204{bottom:782.417720pt;}
.y4_c01204{bottom:796.352520pt;}
.y3_c01204{bottom:825.181320pt;}
.y2_c01204{bottom:951.901320pt;}
.h6_c01204{height:17.723176pt;}
.hf_c01204{height:20.559000pt;}
.h5_c01204{height:21.476813pt;}
.ha_c01204{height:21.591797pt;}
.h7_c01204{height:29.364844pt;}
.hb_c01204{height:29.370000pt;}
.he_c01204{height:32.070415pt;}
.h4_c01204{height:32.914370pt;}
.hc_c01204{height:41.118000pt;}
.hd_c01204{height:45.890625pt;}
.h9_c01204{height:61.838906pt;}
.h3_c01204{height:63.566250pt;}
.h2_c01204{height:64.602829pt;}
.h8_c01204{height:73.425000pt;}
.h1_c01204{height:986.666667pt;}
.h0_c01204{height:1122.666667pt;}
.w1_c01204{width:689.333333pt;}
.w0_c01204{width:793.333333pt;}
.x0_c01204{left:0.000000pt;}
.x1_c01204{left:52.000000pt;}
.x24_c01204{left:87.108253pt;}
.x4_c01204{left:88.049853pt;}
.xf_c01204{left:146.882253pt;}
.x5_c01204{left:148.167053pt;}
.x11_c01204{left:177.004653pt;}
.x12_c01204{left:188.413853pt;}
.x10_c01204{left:189.949453pt;}
.x13_c01204{left:198.824253pt;}
.x21_c01204{left:206.973053pt;}
.x14_c01204{left:225.536653pt;}
.x6_c01204{left:226.641053pt;}
.x7_c01204{left:257.511453pt;}
.x15_c01204{left:266.210253pt;}
.x22_c01204{left:285.565853pt;}
.x16_c01204{left:305.484653pt;}
.x23_c01204{left:314.223053pt;}
.x8_c01204{left:336.328653pt;}
.x9_c01204{left:365.082653pt;}
.x17_c01204{left:374.846253pt;}
.x1c_c01204{left:394.518653pt;}
.xa_c01204{left:395.988253pt;}
.x1d_c01204{left:422.916253pt;}
.x1e_c01204{left:452.061853pt;}
.xb_c01204{left:461.882653pt;}
.x18_c01204{left:464.909853pt;}
.x19_c01204{left:501.878653pt;}
.xc_c01204{left:503.673853pt;}
.x1f_c01204{left:520.490653pt;}
.x20_c01204{left:550.591053pt;}
.x1a_c01204{left:569.541853pt;}
.x25_c01204{left:574.588653pt;}
.x1b_c01204{left:610.241853pt;}
.xd_c01204{left:632.180253pt;}
.xe_c01204{left:634.736653pt;}
.x2_c01204{left:638.775853pt;}
.x3_c01204{left:648.596653pt;}
}





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

.ir_c01205:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01205{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01205;src:url('chunks/assets/font_de5e98dcbf78b740eef759bf.woff2')format("woff");}.ff1_c01205{font-family:ff1_c01205;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01205;src:url('chunks/assets/font_a11cac9121fc3ebd2f6b8585.woff2')format("woff");}.ff2_c01205{font-family:ff2_c01205;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01205;src:url('chunks/assets/font_4641fd1c10dd8fba208bbfb5.woff2')format("woff");}.ff3_c01205{font-family:ff3_c01205;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01205{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01205{transform:matrix(0.297346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297346,0.000000,0.000000,0.250000,0,0);}
.v0_c01205{vertical-align:0.000000px;}
.ls0_c01205{letter-spacing:0.000000px;}
.ls2_c01205{letter-spacing:0.144461px;}
.ls1_c01205{letter-spacing:3.801610px;}
.sc__c01205{text-shadow:none;}
.sc0_c01205{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01205{-webkit-text-stroke:0px transparent;}
.sc0_c01205{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01205{word-spacing:0.000000px;}
._1_c01205{width:14.295204px;}
._3_c01205{width:16.348068px;}
._0_c01205{width:20.720700px;}
._2_c01205{width:90.687564px;}
.fc0_c01205{color:transparent;}
.fs3_c01205{font-size:9.108000px;}
.fs4_c01205{font-size:13.068000px;}
.fs1_c01205{font-size:22.176000px;}
.fs6_c01205{font-size:23.166000px;}
.fs0_c01205{font-size:32.472000px;}
.fs8_c01205{font-size:33.264000px;}
.fs5_c01205{font-size:73.656198px;}
.fs2_c01205{font-size:76.032198px;}
.fs7_c01205{font-size:77.616198px;}
.y0_c01205{bottom:0.000000px;}
.y1_c01205{bottom:76.500000px;}
.y7_c01205{bottom:90.078561px;}
.y6_c01205{bottom:229.072185px;}
.y5_c01205{bottom:300.000735px;}
.y4_c01205{bottom:302.846985px;}
.y3_c01205{bottom:694.886985px;}
.yc_c01205{bottom:942.589935px;}
.yb_c01205{bottom:942.941385px;}
.ya_c01205{bottom:955.058985px;}
.y9_c01205{bottom:973.596735px;}
.y8_c01205{bottom:1023.482835px;}
.y2_c01205{bottom:1104.746985px;}
.h5_c01205{height:13.629516px;}
.h3_c01205{height:23.128875px;}
.h7_c01205{height:24.161414px;}
.h2_c01205{height:33.867281px;}
.h9_c01205{height:34.693313px;}
.h4_c01205{height:74.621444px;}
.h6_c01205{height:76.821113px;}
.h8_c01205{height:80.951269px;}
.h1_c01205{height:1110.000000px;}
.h0_c01205{height:1263.000000px;}
.w1_c01205{width:775.500000px;}
.w0_c01205{width:892.500000px;}
.x2_c01205{left:-1.572465px;}
.x0_c01205{left:0.000000px;}
.x3_c01205{left:50.867835px;}
.x1_c01205{left:58.500000px;}
.x7_c01205{left:167.767035px;}
.x4_c01205{left:246.199785px;}
.x8_c01205{left:299.276259px;}
.x5_c01205{left:313.168335px;}
.x6_c01205{left:334.304835px;}
.x9_c01205{left:604.357035px;}
.xa_c01205{left:702.708585px;}
.xb_c01205{left:704.431185px;}
.xc_c01205{left:705.886485px;}
@media print{
.v0_c01205{vertical-align:0.000000pt;}
.ls0_c01205{letter-spacing:0.000000pt;}
.ls2_c01205{letter-spacing:0.128410pt;}
.ls1_c01205{letter-spacing:3.379209pt;}
.ws0_c01205{word-spacing:0.000000pt;}
._1_c01205{width:12.706848pt;}
._3_c01205{width:14.531616pt;}
._0_c01205{width:18.418400pt;}
._2_c01205{width:80.611168pt;}
.fs3_c01205{font-size:8.096000pt;}
.fs4_c01205{font-size:11.616000pt;}
.fs1_c01205{font-size:19.712000pt;}
.fs6_c01205{font-size:20.592000pt;}
.fs0_c01205{font-size:28.864000pt;}
.fs8_c01205{font-size:29.568000pt;}
.fs5_c01205{font-size:65.472176pt;}
.fs2_c01205{font-size:67.584176pt;}
.fs7_c01205{font-size:68.992176pt;}
.y0_c01205{bottom:0.000000pt;}
.y1_c01205{bottom:68.000000pt;}
.y7_c01205{bottom:80.069832pt;}
.y6_c01205{bottom:203.619720pt;}
.y5_c01205{bottom:266.667320pt;}
.y4_c01205{bottom:269.197320pt;}
.y3_c01205{bottom:617.677320pt;}
.yc_c01205{bottom:837.857720pt;}
.yb_c01205{bottom:838.170120pt;}
.ya_c01205{bottom:848.941320pt;}
.y9_c01205{bottom:865.419320pt;}
.y8_c01205{bottom:909.762520pt;}
.y2_c01205{bottom:981.997320pt;}
.h5_c01205{height:12.115125pt;}
.h3_c01205{height:20.559000pt;}
.h7_c01205{height:21.476813pt;}
.h2_c01205{height:30.104250pt;}
.h9_c01205{height:30.838500pt;}
.h4_c01205{height:66.330173pt;}
.h6_c01205{height:68.285434pt;}
.h8_c01205{height:71.956684pt;}
.h1_c01205{height:986.666667pt;}
.h0_c01205{height:1122.666667pt;}
.w1_c01205{width:689.333333pt;}
.w0_c01205{width:793.333333pt;}
.x2_c01205{left:-1.397747pt;}
.x0_c01205{left:0.000000pt;}
.x3_c01205{left:45.215853pt;}
.x1_c01205{left:52.000000pt;}
.x7_c01205{left:149.126253pt;}
.x4_c01205{left:218.844253pt;}
.x8_c01205{left:266.023341pt;}
.x5_c01205{left:278.371853pt;}
.x6_c01205{left:297.159853pt;}
.x9_c01205{left:537.206253pt;}
.xa_c01205{left:624.629853pt;}
.xb_c01205{left:626.161053pt;}
.xc_c01205{left:627.454653pt;}
}





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

.ir_c01206:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01206{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01206;src:url('chunks/assets/font_9ef76661d8373505254e5b9d.woff2')format("woff");}.ff1_c01206{font-family:ff1_c01206;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01206;src:url('chunks/assets/font_49e42c9f228c4528827d6b8a.woff2')format("woff");}.ff2_c01206{font-family:ff2_c01206;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01206;src:url('chunks/assets/font_61a7654cbb3351b993e96e96.woff2')format("woff");}.ff3_c01206{font-family:ff3_c01206;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01206;src:url('chunks/assets/font_e31a7326feb57ad598503daf.woff2')format("woff");}.ff4_c01206{font-family:ff4_c01206;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01206;src:url('chunks/assets/font_41ffa1e12ee39b0d7c5c9928.woff2')format("woff");}.ff5_c01206{font-family:ff5_c01206;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4a_c01206{transform:matrix(0.169643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169643,0.000000,0.000000,0.250000,0,0);}
.m2d_c01206{transform:matrix(0.175595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175595,0.000000,0.000000,0.250000,0,0);}
.m4b_c01206{transform:matrix(0.177083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177083,0.000000,0.000000,0.250000,0,0);}
.m39_c01206{transform:matrix(0.194643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194643,0.000000,0.000000,0.250000,0,0);}
.m15_c01206{transform:matrix(0.229093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229093,0.000000,0.000000,0.250000,0,0);}
.mc_c01206{transform:matrix(0.232712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232712,0.000000,0.000000,0.250000,0,0);}
.m1_c01206{transform:matrix(0.233539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233539,0.000000,0.000000,0.250000,0,0);}
.m4f_c01206{transform:matrix(0.235167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235167,0.000000,0.000000,0.250000,0,0);}
.m40_c01206{transform:matrix(0.242946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242946,0.000000,0.000000,0.250000,0,0);}
.m62_c01206{transform:matrix(0.249954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249954,0.000000,0.000000,0.250000,0,0);}
.m0_c01206{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.ma_c01206{transform:matrix(0.260062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260062,0.000000,0.000000,0.250000,0,0);}
.m1e_c01206{transform:matrix(0.261464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261464,0.000000,0.000000,0.250000,0,0);}
.m1d_c01206{transform:matrix(0.263458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263458,0.000000,0.000000,0.250000,0,0);}
.m5c_c01206{transform:matrix(0.263945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263945,0.000000,0.000000,0.250000,0,0);}
.m6d_c01206{transform:matrix(0.264592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264592,0.000000,0.000000,0.250000,0,0);}
.m63_c01206{transform:matrix(0.265702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265702,0.000000,0.000000,0.250000,0,0);}
.m1c_c01206{transform:matrix(0.266163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266163,0.000000,0.000000,0.250000,0,0);}
.m57_c01206{transform:matrix(0.268865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268865,0.000000,0.000000,0.250000,0,0);}
.m33_c01206{transform:matrix(0.269372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269372,0.000000,0.000000,0.250000,0,0);}
.m51_c01206{transform:matrix(0.269888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269888,0.000000,0.000000,0.250000,0,0);}
.m2a_c01206{transform:matrix(0.270329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270329,0.000000,0.000000,0.250000,0,0);}
.m26_c01206{transform:matrix(0.271003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271003,0.000000,0.000000,0.250000,0,0);}
.m4e_c01206{transform:matrix(0.271770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271770,0.000000,0.000000,0.250000,0,0);}
.m8_c01206{transform:matrix(0.275355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275355,0.000000,0.000000,0.250000,0,0);}
.m3b_c01206{transform:matrix(0.275782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275782,0.000000,0.000000,0.250000,0,0);}
.m5_c01206{transform:matrix(0.275843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275843,0.000000,0.000000,0.250000,0,0);}
.m2f_c01206{transform:matrix(0.278890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278890,0.000000,0.000000,0.250000,0,0);}
.m10_c01206{transform:matrix(0.280682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280682,0.000000,0.000000,0.250000,0,0);}
.m55_c01206{transform:matrix(0.281091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281091,0.000000,0.000000,0.250000,0,0);}
.m2b_c01206{transform:matrix(0.281126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281126,0.000000,0.000000,0.250000,0,0);}
.m4c_c01206{transform:matrix(0.281169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281169,0.000000,0.000000,0.250000,0,0);}
.m52_c01206{transform:matrix(0.281269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281269,0.000000,0.000000,0.250000,0,0);}
.m42_c01206{transform:matrix(0.283271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283271,0.000000,0.000000,0.250000,0,0);}
.m5b_c01206{transform:matrix(0.283356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283356,0.000000,0.000000,0.250000,0,0);}
.m19_c01206{transform:matrix(0.283782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283782,0.000000,0.000000,0.250000,0,0);}
.m6c_c01206{transform:matrix(0.283882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283882,0.000000,0.000000,0.250000,0,0);}
.m58_c01206{transform:matrix(0.284034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284034,0.000000,0.000000,0.250000,0,0);}
.m3e_c01206{transform:matrix(0.284082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284082,0.000000,0.000000,0.250000,0,0);}
.m17_c01206{transform:matrix(0.284400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284400,0.000000,0.000000,0.250000,0,0);}
.m3f_c01206{transform:matrix(0.286007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286007,0.000000,0.000000,0.250000,0,0);}
.m44_c01206{transform:matrix(0.286943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286943,0.000000,0.000000,0.250000,0,0);}
.m41_c01206{transform:matrix(0.287163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287163,0.000000,0.000000,0.250000,0,0);}
.m61_c01206{transform:matrix(0.287458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287458,0.000000,0.000000,0.250000,0,0);}
.m4d_c01206{transform:matrix(0.288286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288286,0.000000,0.000000,0.250000,0,0);}
.m3d_c01206{transform:matrix(0.290288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290288,0.000000,0.000000,0.250000,0,0);}
.m32_c01206{transform:matrix(0.290932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290932,0.000000,0.000000,0.250000,0,0);}
.m60_c01206{transform:matrix(0.291184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291184,0.000000,0.000000,0.250000,0,0);}
.m67_c01206{transform:matrix(0.291722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291722,0.000000,0.000000,0.250000,0,0);}
.m45_c01206{transform:matrix(0.291838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291838,0.000000,0.000000,0.250000,0,0);}
.m5f_c01206{transform:matrix(0.292290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292290,0.000000,0.000000,0.250000,0,0);}
.m5a_c01206{transform:matrix(0.293888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293888,0.000000,0.000000,0.250000,0,0);}
.me_c01206{transform:matrix(0.294166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294166,0.000000,0.000000,0.250000,0,0);}
.m43_c01206{transform:matrix(0.294463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294463,0.000000,0.000000,0.250000,0,0);}
.m54_c01206{transform:matrix(0.294946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294946,0.000000,0.000000,0.250000,0,0);}
.m21_c01206{transform:matrix(0.295415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295415,0.000000,0.000000,0.250000,0,0);}
.md_c01206{transform:matrix(0.295936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295936,0.000000,0.000000,0.250000,0,0);}
.m6e_c01206{transform:matrix(0.296103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296103,0.000000,0.000000,0.250000,0,0);}
.m36_c01206{transform:matrix(0.296378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296378,0.000000,0.000000,0.250000,0,0);}
.m9_c01206{transform:matrix(0.296757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296757,0.000000,0.000000,0.250000,0,0);}
.m35_c01206{transform:matrix(0.297290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297290,0.000000,0.000000,0.250000,0,0);}
.mb_c01206{transform:matrix(0.297890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297890,0.000000,0.000000,0.250000,0,0);}
.m64_c01206{transform:matrix(0.299124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299124,0.000000,0.000000,0.250000,0,0);}
.m6_c01206{transform:matrix(0.299392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299392,0.000000,0.000000,0.250000,0,0);}
.m2_c01206{transform:matrix(0.299632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299632,0.000000,0.000000,0.250000,0,0);}
.m12_c01206{transform:matrix(0.302039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302039,0.000000,0.000000,0.250000,0,0);}
.m23_c01206{transform:matrix(0.302774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302774,0.000000,0.000000,0.250000,0,0);}
.m30_c01206{transform:matrix(0.302835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302835,0.000000,0.000000,0.250000,0,0);}
.m22_c01206{transform:matrix(0.303022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303022,0.000000,0.000000,0.250000,0,0);}
.m68_c01206{transform:matrix(0.303815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303815,0.000000,0.000000,0.250000,0,0);}
.m1b_c01206{transform:matrix(0.304651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304651,0.000000,0.000000,0.250000,0,0);}
.m34_c01206{transform:matrix(0.304681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304681,0.000000,0.000000,0.250000,0,0);}
.m50_c01206{transform:matrix(0.305278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305278,0.000000,0.000000,0.250000,0,0);}
.m13_c01206{transform:matrix(0.305586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305586,0.000000,0.000000,0.250000,0,0);}
.m11_c01206{transform:matrix(0.306953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306953,0.000000,0.000000,0.250000,0,0);}
.m37_c01206{transform:matrix(0.307220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307220,0.000000,0.000000,0.250000,0,0);}
.m3_c01206{transform:matrix(0.307365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307365,0.000000,0.000000,0.250000,0,0);}
.mf_c01206{transform:matrix(0.309306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309306,0.000000,0.000000,0.250000,0,0);}
.m2e_c01206{transform:matrix(0.309311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309311,0.000000,0.000000,0.250000,0,0);}
.m18_c01206{transform:matrix(0.310189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310189,0.000000,0.000000,0.250000,0,0);}
.m5e_c01206{transform:matrix(0.310702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310702,0.000000,0.000000,0.250000,0,0);}
.m6b_c01206{transform:matrix(0.311007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311007,0.000000,0.000000,0.250000,0,0);}
.m66_c01206{transform:matrix(0.311231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311231,0.000000,0.000000,0.250000,0,0);}
.m31_c01206{transform:matrix(0.311695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311695,0.000000,0.000000,0.250000,0,0);}
.m25_c01206{transform:matrix(0.311833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311833,0.000000,0.000000,0.250000,0,0);}
.m2c_c01206{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);}
.m20_c01206{transform:matrix(0.315127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315127,0.000000,0.000000,0.250000,0,0);}
.m28_c01206{transform:matrix(0.316392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316392,0.000000,0.000000,0.250000,0,0);}
.m16_c01206{transform:matrix(0.316908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316908,0.000000,0.000000,0.250000,0,0);}
.m5d_c01206{transform:matrix(0.319279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319279,0.000000,0.000000,0.250000,0,0);}
.m65_c01206{transform:matrix(0.320192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320192,0.000000,0.000000,0.250000,0,0);}
.m24_c01206{transform:matrix(0.320700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320700,0.000000,0.000000,0.250000,0,0);}
.m38_c01206{transform:matrix(0.325919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325919,0.000000,0.000000,0.250000,0,0);}
.m14_c01206{transform:matrix(0.327054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327054,0.000000,0.000000,0.250000,0,0);}
.m53_c01206{transform:matrix(0.328618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328618,0.000000,0.000000,0.250000,0,0);}
.m46_c01206{transform:matrix(0.331513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331513,0.000000,0.000000,0.250000,0,0);}
.m7_c01206{transform:matrix(0.333204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333204,0.000000,0.000000,0.250000,0,0);}
.m3a_c01206{transform:matrix(0.336713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336713,0.000000,0.000000,0.250000,0,0);}
.m56_c01206{transform:matrix(0.339499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339499,0.000000,0.000000,0.250000,0,0);}
.m27_c01206{transform:matrix(0.340062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340062,0.000000,0.000000,0.250000,0,0);}
.m59_c01206{transform:matrix(0.341938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341938,0.000000,0.000000,0.250000,0,0);}
.m6a_c01206{transform:matrix(0.344406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344406,0.000000,0.000000,0.250000,0,0);}
.m29_c01206{transform:matrix(0.351418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351418,0.000000,0.000000,0.250000,0,0);}
.m1a_c01206{transform:matrix(0.355023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355023,0.000000,0.000000,0.250000,0,0);}
.m69_c01206{transform:matrix(0.357146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357146,0.000000,0.000000,0.250000,0,0);}
.m47_c01206{transform:matrix(0.359013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359013,0.000000,0.000000,0.250000,0,0);}
.m1f_c01206{transform:matrix(0.359351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359351,0.000000,0.000000,0.250000,0,0);}
.m49_c01206{transform:matrix(0.362464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362464,0.000000,0.000000,0.250000,0,0);}
.m3c_c01206{transform:matrix(0.362735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362735,0.000000,0.000000,0.250000,0,0);}
.m4_c01206{transform:matrix(0.383656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383656,0.000000,0.000000,0.250000,0,0);}
.m48_c01206{transform:matrix(0.389239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389239,0.000000,0.000000,0.250000,0,0);}
.v0_c01206{vertical-align:0.000000px;}
.ls2_c01206{letter-spacing:-2.619540px;}
.ls8_c01206{letter-spacing:-2.013304px;}
.lsc_c01206{letter-spacing:-1.728896px;}
.ls10_c01206{letter-spacing:-1.407067px;}
.lsf_c01206{letter-spacing:-1.160082px;}
.lsa_c01206{letter-spacing:-0.965488px;}
.ls7_c01206{letter-spacing:-0.875675px;}
.ls12_c01206{letter-spacing:-0.246985px;}
.ls0_c01206{letter-spacing:0.000000px;}
.ls13_c01206{letter-spacing:0.313632px;}
.ls1_c01206{letter-spacing:0.523908px;}
.ls14_c01206{letter-spacing:1.526818px;}
.ls4_c01206{letter-spacing:1.631599px;}
.ls6_c01206{letter-spacing:2.948854px;}
.ls9_c01206{letter-spacing:3.405610px;}
.lsb_c01206{letter-spacing:3.593700px;}
.ls11_c01206{letter-spacing:3.644903px;}
.ls5_c01206{letter-spacing:3.653110px;}
.ls3_c01206{letter-spacing:3.742200px;}
.lse_c01206{letter-spacing:57.024198px;}
.lsd_c01206{letter-spacing:59.875398px;}
.sc__c01206{text-shadow:none;}
.sc0_c01206{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01206{-webkit-text-stroke:0px transparent;}
.sc0_c01206{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01206{word-spacing:-18.711000px;}
.ws1_c01206{word-spacing:0.000000px;}
._1_c01206{margin-left:-13.921380px;}
._0_c01206{width:16.071154px;}
._3_c01206{width:37.603368px;}
._2_c01206{width:50.965200px;}
._4_c01206{width:53.289720px;}
.fc0_c01206{color:transparent;}
.fs0_c01206{font-size:22.176000px;}
.fs2_c01206{font-size:39.600000px;}
.fsc_c01206{font-size:48.114000px;}
.fs1_c01206{font-size:53.856198px;}
.fsa_c01206{font-size:57.024198px;}
.fs9_c01206{font-size:59.875398px;}
.fs8_c01206{font-size:66.330000px;}
.fs6_c01206{font-size:68.112198px;}
.fs4_c01206{font-size:68.706198px;}
.fsd_c01206{font-size:71.280000px;}
.fs7_c01206{font-size:71.874000px;}
.fs5_c01206{font-size:73.062198px;}
.fs3_c01206{font-size:74.844000px;}
.fsb_c01206{font-size:79.200000px;}
.y0_c01206{bottom:0.000000px;}
.y19_c01206{bottom:25.567785px;}
.y1_c01206{bottom:76.500000px;}
.y18_c01206{bottom:125.008335px;}
.y17_c01206{bottom:156.722985px;}
.y15_c01206{bottom:221.236335px;}
.y14_c01206{bottom:252.599535px;}
.y13_c01206{bottom:316.033785px;}
.y12_c01206{bottom:348.471135px;}
.y11_c01206{bottom:411.905385px;}
.y10_c01206{bottom:443.986335px;}
.yf_c01206{bottom:507.064185px;}
.ye_c01206{bottom:539.145135px;}
.yd_c01206{bottom:570.859785px;}
.yc_c01206{bottom:633.586185px;}
.yb_c01206{bottom:665.310735px;}
.ya_c01206{bottom:697.381785px;}
.y9_c01206{bottom:728.388585px;}
.y8_c01206{bottom:791.476335px;}
.y7_c01206{bottom:822.121785px;}
.y6_c01206{bottom:885.560985px;}
.y5_c01206{bottom:917.998335px;}
.y3_c01206{bottom:986.070735px;}
.y2_c01206{bottom:1015.290585px;}
.y4_c01206{bottom:1056.989385px;}
.y16_c01206{bottom:1064.830185px;}
.h2_c01206{height:23.128875px;}
.hb_c01206{height:37.978116px;}
.ha_c01206{height:39.877015px;}
.he_c01206{height:41.301563px;}
.hd_c01206{height:50.181398px;}
.h3_c01206{height:56.170332px;}
.h5_c01206{height:67.431376px;}
.h9_c01206{height:69.180117px;}
.hf_c01206{height:69.922617px;}
.h8_c01206{height:70.540400px;}
.h7_c01206{height:71.038894px;}
.h6_c01206{height:71.706552px;}
.h4_c01206{height:73.455293px;}
.hc_c01206{height:77.730469px;}
.h1_c01206{height:1110.000000px;}
.h0_c01206{height:1263.000000px;}
.w1_c01206{width:775.500000px;}
.w0_c01206{width:892.500000px;}
.x0_c01206{left:0.000000px;}
.x3_c01206{left:57.357285px;}
.x1_c01206{left:58.500000px;}
.x30_c01206{left:65.168385px;}
.x2_c01206{left:71.539035px;}
.x3e_c01206{left:87.621585px;}
.x5_c01206{left:88.690785px;}
.x55_c01206{left:121.479585px;}
.x6_c01206{left:153.709035px;}
.x4c_c01206{left:164.188185px;}
.x1d_c01206{left:176.924535px;}
.x12_c01206{left:186.992835px;}
.x31_c01206{left:188.948085px;}
.x10_c01206{left:198.397635px;}
.x59_c01206{left:199.496535px;}
.x7_c01206{left:200.833035px;}
.x45_c01206{left:208.753035px;}
.x4d_c01206{left:212.346735px;}
.x13_c01206{left:220.192485px;}
.x2a_c01206{left:231.587385px;}
.x46_c01206{left:234.017835px;}
.x35_c01206{left:242.229885px;}
.x8_c01206{left:243.536685px;}
.x39_c01206{left:253.471335px;}
.x42_c01206{left:255.174135px;}
.x1e_c01206{left:264.861285px;}
.x56_c01206{left:266.014635px;}
.x14_c01206{left:267.638235px;}
.x4b_c01206{left:276.147285px;}
.x43_c01206{left:277.270935px;}
.x11_c01206{left:278.419335px;}
.x3f_c01206{left:288.205485px;}
.x32_c01206{left:289.259835px;}
.x9_c01206{left:298.397535px;}
.x27_c01206{left:299.803335px;}
.x2e_c01206{left:308.990535px;}
.x1f_c01206{left:312.138735px;}
.x15_c01206{left:320.608185px;}
.x4e_c01206{left:321.741735px;}
.x3a_c01206{left:330.636885px;}
.x28_c01206{left:332.889135px;}
.x20_c01206{left:354.377085px;}
.x2f_c01206{left:356.436285px;}
.x2b_c01206{left:365.544285px;}
.x16_c01206{left:376.137285px;}
.x57_c01206{left:379.087485px;}
.x36_c01206{left:387.873735px;}
.x4f_c01206{left:399.634935px;}
.xa_c01206{left:409.643835px;}
.x47_c01206{left:410.717985px;}
.x3b_c01206{left:420.489285px;}
.x21_c01206{left:432.423735px;}
.xb_c01206{left:441.813885px;}
.x48_c01206{left:443.308785px;}
.x22_c01206{left:464.856135px;}
.x17_c01206{left:486.443085px;}
.x3c_c01206{left:488.279535px;}
.x53_c01206{left:489.729885px;}
.x2c_c01206{left:498.471585px;}
.x18_c01206{left:508.683435px;}
.x23_c01206{left:510.123885px;}
.x5a_c01206{left:519.523935px;}
.xc_c01206{left:521.291085px;}
.x3d_c01206{left:530.983185px;}
.x50_c01206{left:531.988035px;}
.xd_c01206{left:543.031485px;}
.x37_c01206{left:554.446185px;}
.x24_c01206{left:576.443985px;}
.x49_c01206{left:587.640885px;}
.x19_c01206{left:597.451785px;}
.x1a_c01206{left:600.253485px;}
.x25_c01206{left:608.153685px;}
.x33_c01206{left:611.752335px;}
.x58_c01206{left:620.637585px;}
.x1b_c01206{left:628.938735px;}
.x2d_c01206{left:631.032585px;}
.x40_c01206{left:632.369085px;}
.xe_c01206{left:639.977235px;}
.x51_c01206{left:642.462135px;}
.x4a_c01206{left:652.451235px;}
.x38_c01206{left:663.964935px;}
.x4_c01206{left:675.498435px;}
.x1c_c01206{left:685.284585px;}
.x26_c01206{left:687.898185px;}
.x52_c01206{left:698.897085px;}
.x44_c01206{left:702.936285px;}
.xf_c01206{left:708.123885px;}
.x41_c01206{left:709.321785px;}
.x5c_c01206{left:712.702635px;}
.x34_c01206{left:721.008735px;}
.x29_c01206{left:731.992785px;}
.x54_c01206{left:765.647835px;}
.x5b_c01206{left:766.652685px;}
@media print{
.v0_c01206{vertical-align:0.000000pt;}
.ls2_c01206{letter-spacing:-2.328480pt;}
.ls8_c01206{letter-spacing:-1.789603pt;}
.lsc_c01206{letter-spacing:-1.536797pt;}
.ls10_c01206{letter-spacing:-1.250726pt;}
.lsf_c01206{letter-spacing:-1.031184pt;}
.lsa_c01206{letter-spacing:-0.858211pt;}
.ls7_c01206{letter-spacing:-0.778378pt;}
.ls12_c01206{letter-spacing:-0.219542pt;}
.ls0_c01206{letter-spacing:0.000000pt;}
.ls13_c01206{letter-spacing:0.278784pt;}
.ls1_c01206{letter-spacing:0.465696pt;}
.ls14_c01206{letter-spacing:1.357171pt;}
.ls4_c01206{letter-spacing:1.450310pt;}
.ls6_c01206{letter-spacing:2.621203pt;}
.ls9_c01206{letter-spacing:3.027209pt;}
.lsb_c01206{letter-spacing:3.194400pt;}
.ls11_c01206{letter-spacing:3.239914pt;}
.ls5_c01206{letter-spacing:3.247209pt;}
.ls3_c01206{letter-spacing:3.326400pt;}
.lse_c01206{letter-spacing:50.688176pt;}
.lsd_c01206{letter-spacing:53.222576pt;}
.ws0_c01206{word-spacing:-16.632000pt;}
.ws1_c01206{word-spacing:0.000000pt;}
._1_c01206{margin-left:-12.374560pt;}
._0_c01206{width:14.285470pt;}
._3_c01206{width:33.425216pt;}
._2_c01206{width:45.302400pt;}
._4_c01206{width:47.368640pt;}
.fs0_c01206{font-size:19.712000pt;}
.fs2_c01206{font-size:35.200000pt;}
.fsc_c01206{font-size:42.768000pt;}
.fs1_c01206{font-size:47.872176pt;}
.fsa_c01206{font-size:50.688176pt;}
.fs9_c01206{font-size:53.222576pt;}
.fs8_c01206{font-size:58.960000pt;}
.fs6_c01206{font-size:60.544176pt;}
.fs4_c01206{font-size:61.072176pt;}
.fsd_c01206{font-size:63.360000pt;}
.fs7_c01206{font-size:63.888000pt;}
.fs5_c01206{font-size:64.944176pt;}
.fs3_c01206{font-size:66.528000pt;}
.fsb_c01206{font-size:70.400000pt;}
.y0_c01206{bottom:0.000000pt;}
.y19_c01206{bottom:22.726920pt;}
.y1_c01206{bottom:68.000000pt;}
.y18_c01206{bottom:111.118520pt;}
.y17_c01206{bottom:139.309320pt;}
.y15_c01206{bottom:196.654520pt;}
.y14_c01206{bottom:224.532920pt;}
.y13_c01206{bottom:280.918920pt;}
.y12_c01206{bottom:309.752120pt;}
.y11_c01206{bottom:366.138120pt;}
.y10_c01206{bottom:394.654520pt;}
.yf_c01206{bottom:450.723720pt;}
.ye_c01206{bottom:479.240120pt;}
.yd_c01206{bottom:507.430920pt;}
.yc_c01206{bottom:563.187720pt;}
.yb_c01206{bottom:591.387320pt;}
.ya_c01206{bottom:619.894920pt;}
.y9_c01206{bottom:647.456520pt;}
.y8_c01206{bottom:703.534520pt;}
.y7_c01206{bottom:730.774920pt;}
.y6_c01206{bottom:787.165320pt;}
.y5_c01206{bottom:815.998520pt;}
.y3_c01206{bottom:876.507320pt;}
.y2_c01206{bottom:902.480520pt;}
.y4_c01206{bottom:939.546120pt;}
.y16_c01206{bottom:946.515720pt;}
.h2_c01206{height:20.559000pt;}
.hb_c01206{height:33.758325pt;}
.ha_c01206{height:35.446236pt;}
.he_c01206{height:36.712500pt;}
.hd_c01206{height:44.605688pt;}
.h3_c01206{height:49.929184pt;}
.h5_c01206{height:59.939001pt;}
.h9_c01206{height:61.493438pt;}
.hf_c01206{height:62.153438pt;}
.h8_c01206{height:62.702578pt;}
.h7_c01206{height:63.145684pt;}
.h6_c01206{height:63.739157pt;}
.h4_c01206{height:65.293594pt;}
.hc_c01206{height:69.093750pt;}
.h1_c01206{height:986.666667pt;}
.h0_c01206{height:1122.666667pt;}
.w1_c01206{width:689.333333pt;}
.w0_c01206{width:793.333333pt;}
.x0_c01206{left:0.000000pt;}
.x3_c01206{left:50.984253pt;}
.x1_c01206{left:52.000000pt;}
.x30_c01206{left:57.927453pt;}
.x2_c01206{left:63.590253pt;}
.x3e_c01206{left:77.885853pt;}
.x5_c01206{left:78.836253pt;}
.x55_c01206{left:107.981853pt;}
.x6_c01206{left:136.630253pt;}
.x4c_c01206{left:145.945053pt;}
.x1d_c01206{left:157.266253pt;}
.x12_c01206{left:166.215853pt;}
.x31_c01206{left:167.953853pt;}
.x10_c01206{left:176.353453pt;}
.x59_c01206{left:177.330253pt;}
.x7_c01206{left:178.518253pt;}
.x45_c01206{left:185.558253pt;}
.x4d_c01206{left:188.752653pt;}
.x13_c01206{left:195.726653pt;}
.x2a_c01206{left:205.855453pt;}
.x46_c01206{left:208.015853pt;}
.x35_c01206{left:215.315453pt;}
.x8_c01206{left:216.477053pt;}
.x39_c01206{left:225.307853pt;}
.x42_c01206{left:226.821453pt;}
.x1e_c01206{left:235.432253pt;}
.x56_c01206{left:236.457453pt;}
.x14_c01206{left:237.900653pt;}
.x4b_c01206{left:245.464253pt;}
.x43_c01206{left:246.463053pt;}
.x11_c01206{left:247.483853pt;}
.x3f_c01206{left:256.182653pt;}
.x32_c01206{left:257.119853pt;}
.x9_c01206{left:265.242253pt;}
.x27_c01206{left:266.491853pt;}
.x2e_c01206{left:274.658253pt;}
.x1f_c01206{left:277.456653pt;}
.x15_c01206{left:284.985053pt;}
.x4e_c01206{left:285.992653pt;}
.x3a_c01206{left:293.899453pt;}
.x28_c01206{left:295.901453pt;}
.x20_c01206{left:315.001853pt;}
.x2f_c01206{left:316.832253pt;}
.x2b_c01206{left:324.928253pt;}
.x16_c01206{left:334.344253pt;}
.x57_c01206{left:336.966653pt;}
.x36_c01206{left:344.776653pt;}
.x4f_c01206{left:355.231053pt;}
.xa_c01206{left:364.127853pt;}
.x47_c01206{left:365.082653pt;}
.x3b_c01206{left:373.768253pt;}
.x21_c01206{left:384.376653pt;}
.xb_c01206{left:392.723453pt;}
.x48_c01206{left:394.052253pt;}
.x22_c01206{left:413.205453pt;}
.x17_c01206{left:432.393853pt;}
.x3c_c01206{left:434.026253pt;}
.x53_c01206{left:435.315453pt;}
.x2c_c01206{left:443.085853pt;}
.x18_c01206{left:452.163053pt;}
.x23_c01206{left:453.443453pt;}
.x5a_c01206{left:461.799053pt;}
.xc_c01206{left:463.369853pt;}
.x3d_c01206{left:471.985053pt;}
.x50_c01206{left:472.878253pt;}
.xd_c01206{left:482.694653pt;}
.x37_c01206{left:492.841053pt;}
.x24_c01206{left:512.394653pt;}
.x49_c01206{left:522.347453pt;}
.x19_c01206{left:531.068253pt;}
.x1a_c01206{left:533.558653pt;}
.x25_c01206{left:540.581053pt;}
.x33_c01206{left:543.779853pt;}
.x58_c01206{left:551.677853pt;}
.x1b_c01206{left:559.056653pt;}
.x2d_c01206{left:560.917853pt;}
.x40_c01206{left:562.105853pt;}
.xe_c01206{left:568.868653pt;}
.x51_c01206{left:571.077453pt;}
.x4a_c01206{left:579.956653pt;}
.x38_c01206{left:590.191053pt;}
.x4_c01206{left:600.443053pt;}
.x1c_c01206{left:609.141853pt;}
.x26_c01206{left:611.465053pt;}
.x52_c01206{left:621.241853pt;}
.x44_c01206{left:624.832253pt;}
.xf_c01206{left:629.443453pt;}
.x41_c01206{left:630.508253pt;}
.x5c_c01206{left:633.513453pt;}
.x34_c01206{left:640.896653pt;}
.x29_c01206{left:650.660253pt;}
.x54_c01206{left:680.575853pt;}
.x5b_c01206{left:681.469053pt;}
}





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

.ir_c01207:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01207{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01207;src:url('chunks/assets/font_155cf1321395216095642484.woff2')format("woff");}.ff1_c01207{font-family:ff1_c01207;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01207;src:url('chunks/assets/font_6dae4945b7e765112084ff7b.woff2')format("woff");}.ff2_c01207{font-family:ff2_c01207;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01207;src:url('chunks/assets/font_032039a4aad668dd1ab6c3ad.woff2')format("woff");}.ff3_c01207{font-family:ff3_c01207;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01207;src:url('chunks/assets/font_61a7654cbb3351b993e96e96.woff2')format("woff");}.ff4_c01207{font-family:ff4_c01207;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mc_c01207{transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);}
.m1c_c01207{transform:matrix(0.177910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177910,0.000000,0.000000,0.250000,0,0);}
.m2b_c01207{transform:matrix(0.183692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183692,0.000000,0.000000,0.250000,0,0);}
.m2a_c01207{transform:matrix(0.184460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184460,0.000000,0.000000,0.250000,0,0);}
.m23_c01207{transform:matrix(0.187068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187068,0.000000,0.000000,0.250000,0,0);}
.m36_c01207{transform:matrix(0.188262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188262,0.000000,0.000000,0.250000,0,0);}
.m63_c01207{transform:matrix(0.193243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193243,0.000000,0.000000,0.250000,0,0);}
.m24_c01207{transform:matrix(0.205068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205068,0.000000,0.000000,0.250000,0,0);}
.m5c_c01207{transform:matrix(0.213814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213814,0.000000,0.000000,0.250000,0,0);}
.m3c_c01207{transform:matrix(0.220903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220903,0.000000,0.000000,0.250000,0,0);}
.m55_c01207{transform:matrix(0.222841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222841,0.000000,0.000000,0.250000,0,0);}
.m4f_c01207{transform:matrix(0.223209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223209,0.000000,0.000000,0.250000,0,0);}
.m2_c01207{transform:matrix(0.226835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226835,0.000000,0.000000,0.250000,0,0);}
.md_c01207{transform:matrix(0.230254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230254,0.000000,0.000000,0.250000,0,0);}
.m4e_c01207{transform:matrix(0.234277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234277,0.000000,0.000000,0.250000,0,0);}
.m44_c01207{transform:matrix(0.238423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238423,0.000000,0.000000,0.250000,0,0);}
.m3_c01207{transform:matrix(0.247113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247113,0.000000,0.000000,0.250000,0,0);}
.m0_c01207{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m35_c01207{transform:matrix(0.252466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252466,0.000000,0.000000,0.250000,0,0);}
.m49_c01207{transform:matrix(0.253573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253573,0.000000,0.000000,0.250000,0,0);}
.m2e_c01207{transform:matrix(0.254532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254532,0.000000,0.000000,0.250000,0,0);}
.m54_c01207{transform:matrix(0.255807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255807,0.000000,0.000000,0.250000,0,0);}
.m1_c01207{transform:matrix(0.255850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255850,0.000000,0.000000,0.250000,0,0);}
.m15_c01207{transform:matrix(0.256895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256895,0.000000,0.000000,0.250000,0,0);}
.m43_c01207{transform:matrix(0.259485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259485,0.000000,0.000000,0.250000,0,0);}
.m17_c01207{transform:matrix(0.259722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259722,0.000000,0.000000,0.250000,0,0);}
.m21_c01207{transform:matrix(0.260301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260301,0.000000,0.000000,0.250000,0,0);}
.m41_c01207{transform:matrix(0.260688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260688,0.000000,0.000000,0.250000,0,0);}
.m3d_c01207{transform:matrix(0.261191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261191,0.000000,0.000000,0.250000,0,0);}
.ma_c01207{transform:matrix(0.261941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261941,0.000000,0.000000,0.250000,0,0);}
.m56_c01207{transform:matrix(0.262484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262484,0.000000,0.000000,0.250000,0,0);}
.m3e_c01207{transform:matrix(0.263131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263131,0.000000,0.000000,0.250000,0,0);}
.m46_c01207{transform:matrix(0.263334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263334,0.000000,0.000000,0.250000,0,0);}
.m2f_c01207{transform:matrix(0.263657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263657,0.000000,0.000000,0.250000,0,0);}
.m10_c01207{transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);}
.m62_c01207{transform:matrix(0.264147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264147,0.000000,0.000000,0.250000,0,0);}
.mb_c01207{transform:matrix(0.265686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265686,0.000000,0.000000,0.250000,0,0);}
.m30_c01207{transform:matrix(0.266507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266507,0.000000,0.000000,0.250000,0,0);}
.m60_c01207{transform:matrix(0.266971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266971,0.000000,0.000000,0.250000,0,0);}
.m42_c01207{transform:matrix(0.267239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267239,0.000000,0.000000,0.250000,0,0);}
.m39_c01207{transform:matrix(0.267519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267519,0.000000,0.000000,0.250000,0,0);}
.m13_c01207{transform:matrix(0.272039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272039,0.000000,0.000000,0.250000,0,0);}
.mf_c01207{transform:matrix(0.273050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273050,0.000000,0.000000,0.250000,0,0);}
.m5e_c01207{transform:matrix(0.273532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273532,0.000000,0.000000,0.250000,0,0);}
.m19_c01207{transform:matrix(0.274205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274205,0.000000,0.000000,0.250000,0,0);}
.m58_c01207{transform:matrix(0.275054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275054,0.000000,0.000000,0.250000,0,0);}
.m50_c01207{transform:matrix(0.276366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276366,0.000000,0.000000,0.250000,0,0);}
.m26_c01207{transform:matrix(0.276616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276616,0.000000,0.000000,0.250000,0,0);}
.m61_c01207{transform:matrix(0.276634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276634,0.000000,0.000000,0.250000,0,0);}
.m27_c01207{transform:matrix(0.276645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276645,0.000000,0.000000,0.250000,0,0);}
.m3b_c01207{transform:matrix(0.277265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277265,0.000000,0.000000,0.250000,0,0);}
.m32_c01207{transform:matrix(0.277414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277414,0.000000,0.000000,0.250000,0,0);}
.m47_c01207{transform:matrix(0.279030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279030,0.000000,0.000000,0.250000,0,0);}
.m1b_c01207{transform:matrix(0.279406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279406,0.000000,0.000000,0.250000,0,0);}
.m5b_c01207{transform:matrix(0.280755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280755,0.000000,0.000000,0.250000,0,0);}
.m52_c01207{transform:matrix(0.281096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281096,0.000000,0.000000,0.250000,0,0);}
.m3a_c01207{transform:matrix(0.281150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281150,0.000000,0.000000,0.250000,0,0);}
.m48_c01207{transform:matrix(0.282396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282396,0.000000,0.000000,0.250000,0,0);}
.m16_c01207{transform:matrix(0.282456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282456,0.000000,0.000000,0.250000,0,0);}
.m14_c01207{transform:matrix(0.282563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282563,0.000000,0.000000,0.250000,0,0);}
.m40_c01207{transform:matrix(0.282667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282667,0.000000,0.000000,0.250000,0,0);}
.m12_c01207{transform:matrix(0.283900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283900,0.000000,0.000000,0.250000,0,0);}
.m51_c01207{transform:matrix(0.285286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285286,0.000000,0.000000,0.250000,0,0);}
.m31_c01207{transform:matrix(0.286173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286173,0.000000,0.000000,0.250000,0,0);}
.m3f_c01207{transform:matrix(0.286699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286699,0.000000,0.000000,0.250000,0,0);}
.m11_c01207{transform:matrix(0.287167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287167,0.000000,0.000000,0.250000,0,0);}
.m5_c01207{transform:matrix(0.287996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287996,0.000000,0.000000,0.250000,0,0);}
.m8_c01207{transform:matrix(0.288297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288297,0.000000,0.000000,0.250000,0,0);}
.m4a_c01207{transform:matrix(0.288556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288556,0.000000,0.000000,0.250000,0,0);}
.m28_c01207{transform:matrix(0.289427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289427,0.000000,0.000000,0.250000,0,0);}
.m34_c01207{transform:matrix(0.291573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291573,0.000000,0.000000,0.250000,0,0);}
.m4c_c01207{transform:matrix(0.291684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291684,0.000000,0.000000,0.250000,0,0);}
.m29_c01207{transform:matrix(0.292941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292941,0.000000,0.000000,0.250000,0,0);}
.m1e_c01207{transform:matrix(0.293888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293888,0.000000,0.000000,0.250000,0,0);}
.m37_c01207{transform:matrix(0.293943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293943,0.000000,0.000000,0.250000,0,0);}
.m6_c01207{transform:matrix(0.294383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294383,0.000000,0.000000,0.250000,0,0);}
.m4b_c01207{transform:matrix(0.295221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295221,0.000000,0.000000,0.250000,0,0);}
.m5a_c01207{transform:matrix(0.297342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297342,0.000000,0.000000,0.250000,0,0);}
.m22_c01207{transform:matrix(0.300051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300051,0.000000,0.000000,0.250000,0,0);}
.m9_c01207{transform:matrix(0.301190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301190,0.000000,0.000000,0.250000,0,0);}
.m1a_c01207{transform:matrix(0.301282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301282,0.000000,0.000000,0.250000,0,0);}
.m53_c01207{transform:matrix(0.301304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301304,0.000000,0.000000,0.250000,0,0);}
.m1f_c01207{transform:matrix(0.302166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302166,0.000000,0.000000,0.250000,0,0);}
.m5d_c01207{transform:matrix(0.302804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302804,0.000000,0.000000,0.250000,0,0);}
.m5f_c01207{transform:matrix(0.304700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304700,0.000000,0.000000,0.250000,0,0);}
.m2d_c01207{transform:matrix(0.305185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305185,0.000000,0.000000,0.250000,0,0);}
.m7_c01207{transform:matrix(0.305237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305237,0.000000,0.000000,0.250000,0,0);}
.m59_c01207{transform:matrix(0.306016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306016,0.000000,0.000000,0.250000,0,0);}
.m25_c01207{transform:matrix(0.308679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308679,0.000000,0.000000,0.250000,0,0);}
.m38_c01207{transform:matrix(0.308972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308972,0.000000,0.000000,0.250000,0,0);}
.me_c01207{transform:matrix(0.309555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309555,0.000000,0.000000,0.250000,0,0);}
.m4_c01207{transform:matrix(0.312396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312396,0.000000,0.000000,0.250000,0,0);}
.m57_c01207{transform:matrix(0.314150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314150,0.000000,0.000000,0.250000,0,0);}
.m4d_c01207{transform:matrix(0.316669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316669,0.000000,0.000000,0.250000,0,0);}
.m18_c01207{transform:matrix(0.328941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328941,0.000000,0.000000,0.250000,0,0);}
.m20_c01207{transform:matrix(0.341306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341306,0.000000,0.000000,0.250000,0,0);}
.m45_c01207{transform:matrix(0.350694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350694,0.000000,0.000000,0.250000,0,0);}
.m33_c01207{transform:matrix(0.363797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363797,0.000000,0.000000,0.250000,0,0);}
.m2c_c01207{transform:matrix(0.371981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371981,0.000000,0.000000,0.250000,0,0);}
.m1d_c01207{transform:matrix(0.380340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380340,0.000000,0.000000,0.250000,0,0);}
.v0_c01207{vertical-align:0.000000px;}
.v1_c01207{vertical-align:4.276800px;}
.lsb_c01207{letter-spacing:-2.952180px;}
.ls5_c01207{letter-spacing:-2.862090px;}
.ls8_c01207{letter-spacing:-0.269854px;}
.ls3_c01207{letter-spacing:0.000000px;}
.ls1_c01207{letter-spacing:0.598871px;}
.ls17_c01207{letter-spacing:0.899514px;}
.ls0_c01207{letter-spacing:1.300207px;}
.lsd_c01207{letter-spacing:1.890900px;}
.ls6_c01207{letter-spacing:1.897157px;}
.ls10_c01207{letter-spacing:1.978931px;}
.ls15_c01207{letter-spacing:2.011640px;}
.ls14_c01207{letter-spacing:2.077060px;}
.ls12_c01207{letter-spacing:2.412333px;}
.lsf_c01207{letter-spacing:3.401798px;}
.ls13_c01207{letter-spacing:3.459040px;}
.lsc_c01207{letter-spacing:3.583810px;}
.lse_c01207{letter-spacing:3.742200px;}
.ls2_c01207{letter-spacing:3.745249px;}
.ls16_c01207{letter-spacing:3.835201px;}
.ls4_c01207{letter-spacing:4.088700px;}
.lsa_c01207{letter-spacing:4.217400px;}
.ls7_c01207{letter-spacing:31.363200px;}
.ls18_c01207{letter-spacing:52.747398px;}
.ls11_c01207{letter-spacing:58.449798px;}
.ls9_c01207{letter-spacing:59.875398px;}
.sc__c01207{text-shadow:none;}
.sc0_c01207{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01207{-webkit-text-stroke:0px transparent;}
.sc0_c01207{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01207{word-spacing:-24.188749px;}
.ws1_c01207{word-spacing:0.000000px;}
._3_c01207{margin-left:-1.962180px;}
._0_c01207{width:30.270240px;}
._1_c01207{width:34.383195px;}
._2_c01207{width:40.225601px;}
.fc0_c01207{color:transparent;}
.fs1_c01207{font-size:22.176000px;}
.fs0_c01207{font-size:27.720000px;}
.fs4_c01207{font-size:31.363200px;}
.fs3_c01207{font-size:32.868000px;}
.fsd_c01207{font-size:33.660000px;}
.fsa_c01207{font-size:37.818000px;}
.fs10_c01207{font-size:39.204000px;}
.fs11_c01207{font-size:52.747398px;}
.fse_c01207{font-size:58.449798px;}
.fs7_c01207{font-size:59.875398px;}
.fs9_c01207{font-size:71.676198px;}
.fs6_c01207{font-size:72.468000px;}
.fsf_c01207{font-size:73.854000px;}
.fsb_c01207{font-size:74.844000px;}
.fsc_c01207{font-size:75.240000px;}
.fs2_c01207{font-size:81.774000px;}
.fs5_c01207{font-size:84.348000px;}
.fs8_c01207{font-size:90.288000px;}
.y0_c01207{bottom:0.000000px;}
.y1_c01207{bottom:76.500000px;}
.y22_c01207{bottom:123.939135px;}
.y21_c01207{bottom:155.297385px;}
.y20_c01207{bottom:187.378335px;}
.y1f_c01207{bottom:208.757385px;}
.y1e_c01207{bottom:252.243135px;}
.y1d_c01207{bottom:315.325935px;}
.y1c_c01207{bottom:347.401935px;}
.y1b_c01207{bottom:409.771935px;}
.y1a_c01207{bottom:472.141935px;}
.y19_c01207{bottom:504.930735px;}
.y18_c01207{bottom:540.570735px;}
.y15_c01207{bottom:547.693785px;}
.y14_c01207{bottom:567.300735px;}
.y17_c01207{bottom:600.089535px;}
.y12_c01207{bottom:600.445935px;}
.y13_c01207{bottom:605.430585px;}
.y16_c01207{bottom:617.909535px;}
.y3_c01207{bottom:648.911385px;}
.y11_c01207{bottom:663.167385px;}
.y2_c01207{bottom:678.492585px;}
.y10_c01207{bottom:695.604735px;}
.yf_c01207{bottom:758.682585px;}
.yc_c01207{bottom:790.407135px;}
.ye_c01207{bottom:791.114985px;}
.yb_c01207{bottom:821.413935px;}
.yd_c01207{bottom:821.770335px;}
.y8_c01207{bottom:884.491785px;}
.ya_c01207{bottom:886.635135px;}
.y9_c01207{bottom:897.327135px;}
.y7_c01207{bottom:917.280585px;}
.y6_c01207{bottom:1011.375135px;}
.y5_c01207{bottom:1054.138185px;}
.y4_c01207{bottom:1056.276585px;}
.h6_c01207{height:20.887891px;}
.h3_c01207{height:23.128875px;}
.h2_c01207{height:28.911094px;}
.he_c01207{height:33.035449px;}
.h5_c01207{height:34.280297px;}
.h12_c01207{height:35.129767px;}
.h11_c01207{height:38.476582px;}
.hf_c01207{height:38.927565px;}
.hb_c01207{height:39.442992px;}
.h8_c01207{height:39.877015px;}
.hc_c01207{height:73.455293px;}
.ha_c01207{height:74.756035px;}
.h10_c01207{height:77.027414px;}
.hd_c01207{height:78.472969px;}
.h4_c01207{height:80.256709px;}
.h7_c01207{height:82.782949px;}
.h9_c01207{height:88.612734px;}
.h1_c01207{height:1110.000000px;}
.h0_c01207{height:1263.000000px;}
.w1_c01207{width:775.500000px;}
.w0_c01207{width:892.500000px;}
.x0_c01207{left:0.000000px;}
.x3_c01207{left:56.213835px;}
.x1_c01207{left:58.500000px;}
.x2_c01207{left:69.732285px;}
.x7_c01207{left:98.313585px;}
.x3b_c01207{left:100.244085px;}
.x42_c01207{left:152.070585px;}
.x6_c01207{left:161.327085px;}
.x4b_c01207{left:166.529535px;}
.x29_c01207{left:174.182235px;}
.x8_c01207{left:175.612785px;}
.x4f_c01207{left:177.662085px;}
.x14_c01207{left:184.854435px;}
.x43_c01207{left:198.635235px;}
.x10_c01207{left:208.079835px;}
.x35_c01207{left:209.530185px;}
.x5a_c01207{left:220.464735px;}
.x9_c01207{left:221.627985px;}
.x3c_c01207{left:241.729935px;}
.x11_c01207{left:243.274335px;}
.x4_c01207{left:245.793885px;}
.x24_c01207{left:252.852585px;}
.x50_c01207{left:263.871285px;}
.x55_c01207{left:265.658235px;}
.xa_c01207{left:274.711785px;}
.x21_c01207{left:276.137385px;}
.x12_c01207{left:285.770085px;}
.x56_c01207{left:298.744035px;}
.x2a_c01207{left:300.347835px;}
.x16_c01207{left:308.228235px;}
.x36_c01207{left:309.599385px;}
.x44_c01207{left:320.261685px;}
.x15_c01207{left:321.518985px;}
.x22_c01207{left:330.607185px;}
.x4c_c01207{left:332.305035px;}
.x3d_c01207{left:342.378285px;}
.x40_c01207{left:353.124735px;}
.x45_c01207{left:354.367185px;}
.xb_c01207{left:365.059185px;}
.x17_c01207{left:375.563085px;}
.x1b_c01207{left:385.769985px;}
.x57_c01207{left:387.344085px;}
.xc_c01207{left:397.659885px;}
.x2b_c01207{left:409.876485px;}
.x18_c01207{left:419.073585px;}
.x4d_c01207{left:420.850635px;}
.x41_c01207{left:422.177235px;}
.x46_c01207{left:431.448585px;}
.xd_c01207{left:442.714785px;}
.x2c_c01207{left:443.858235px;}
.x2d_c01207{left:454.060185px;}
.x51_c01207{left:464.168085px;}
.x2e_c01207{left:476.988585px;}
.x47_c01207{left:486.601485px;}
.x2f_c01207{left:488.165685px;}
.x19_c01207{left:495.991635px;}
.x25_c01207{left:497.630085px;}
.x58_c01207{left:499.179435px;}
.x30_c01207{left:500.852535px;}
.x1c_c01207{left:509.029935px;}
.x31_c01207{left:520.296135px;}
.x48_c01207{left:522.493935px;}
.x23_c01207{left:540.957435px;}
.x49_c01207{left:543.090885px;}
.x32_c01207{left:544.887735px;}
.xe_c01207{left:563.415585px;}
.x33_c01207{left:564.469935px;}
.x52_c01207{left:574.760985px;}
.x34_c01207{left:595.838085px;}
.x5b_c01207{left:596.852835px;}
.x3e_c01207{left:598.179435px;}
.x1d_c01207{left:608.510085px;}
.x4e_c01207{left:609.693135px;}
.x37_c01207{left:627.166635px;}
.x26_c01207{left:630.408885px;}
.x1e_c01207{left:640.546485px;}
.x38_c01207{left:644.110485px;}
.xf_c01207{left:651.302835px;}
.x53_c01207{left:663.227385px;}
.x3f_c01207{left:664.672785px;}
.x1a_c01207{left:675.250935px;}
.x5_c01207{left:685.804335px;}
.x27_c01207{left:695.936985px;}
.x54_c01207{left:698.015985px;}
.x3a_c01207{left:704.099535px;}
.x1f_c01207{left:707.406135px;}
.x28_c01207{left:708.960435px;}
.x13_c01207{left:714.049035px;}
.x59_c01207{left:718.033785px;}
.x20_c01207{left:729.790035px;}
.x39_c01207{left:731.344335px;}
.x4a_c01207{left:766.172535px;}
@media print{
.v0_c01207{vertical-align:0.000000pt;}
.v1_c01207{vertical-align:3.801600pt;}
.lsb_c01207{letter-spacing:-2.624160pt;}
.ls5_c01207{letter-spacing:-2.544080pt;}
.ls8_c01207{letter-spacing:-0.239870pt;}
.ls3_c01207{letter-spacing:0.000000pt;}
.ls1_c01207{letter-spacing:0.532330pt;}
.ls17_c01207{letter-spacing:0.799568pt;}
.ls0_c01207{letter-spacing:1.155739pt;}
.lsd_c01207{letter-spacing:1.680800pt;}
.ls6_c01207{letter-spacing:1.686362pt;}
.ls10_c01207{letter-spacing:1.759050pt;}
.ls15_c01207{letter-spacing:1.788125pt;}
.ls14_c01207{letter-spacing:1.846275pt;}
.ls12_c01207{letter-spacing:2.144296pt;}
.lsf_c01207{letter-spacing:3.023821pt;}
.ls13_c01207{letter-spacing:3.074702pt;}
.lsc_c01207{letter-spacing:3.185609pt;}
.lse_c01207{letter-spacing:3.326400pt;}
.ls2_c01207{letter-spacing:3.329110pt;}
.ls16_c01207{letter-spacing:3.409067pt;}
.ls4_c01207{letter-spacing:3.634400pt;}
.lsa_c01207{letter-spacing:3.748800pt;}
.ls7_c01207{letter-spacing:27.878400pt;}
.ls18_c01207{letter-spacing:46.886576pt;}
.ls11_c01207{letter-spacing:51.955376pt;}
.ls9_c01207{letter-spacing:53.222576pt;}
.ws0_c01207{word-spacing:-21.501110pt;}
.ws1_c01207{word-spacing:0.000000pt;}
._3_c01207{margin-left:-1.744160pt;}
._0_c01207{width:26.906880pt;}
._1_c01207{width:30.562840pt;}
._2_c01207{width:35.756090pt;}
.fs1_c01207{font-size:19.712000pt;}
.fs0_c01207{font-size:24.640000pt;}
.fs4_c01207{font-size:27.878400pt;}
.fs3_c01207{font-size:29.216000pt;}
.fsd_c01207{font-size:29.920000pt;}
.fsa_c01207{font-size:33.616000pt;}
.fs10_c01207{font-size:34.848000pt;}
.fs11_c01207{font-size:46.886576pt;}
.fse_c01207{font-size:51.955376pt;}
.fs7_c01207{font-size:53.222576pt;}
.fs9_c01207{font-size:63.712176pt;}
.fs6_c01207{font-size:64.416000pt;}
.fsf_c01207{font-size:65.648000pt;}
.fsb_c01207{font-size:66.528000pt;}
.fsc_c01207{font-size:66.880000pt;}
.fs2_c01207{font-size:72.688000pt;}
.fs5_c01207{font-size:74.976000pt;}
.fs8_c01207{font-size:80.256000pt;}
.y0_c01207{bottom:0.000000pt;}
.y1_c01207{bottom:68.000000pt;}
.y22_c01207{bottom:110.168120pt;}
.y21_c01207{bottom:138.042120pt;}
.y20_c01207{bottom:166.558520pt;}
.y1f_c01207{bottom:185.562120pt;}
.y1e_c01207{bottom:224.216120pt;}
.y1d_c01207{bottom:280.289720pt;}
.y1c_c01207{bottom:308.801720pt;}
.y1b_c01207{bottom:364.241720pt;}
.y1a_c01207{bottom:419.681720pt;}
.y19_c01207{bottom:448.827320pt;}
.y18_c01207{bottom:480.507320pt;}
.y15_c01207{bottom:486.838920pt;}
.y14_c01207{bottom:504.267320pt;}
.y17_c01207{bottom:533.412920pt;}
.y12_c01207{bottom:533.729720pt;}
.y13_c01207{bottom:538.160520pt;}
.y16_c01207{bottom:549.252920pt;}
.y3_c01207{bottom:576.810120pt;}
.y11_c01207{bottom:589.482120pt;}
.y2_c01207{bottom:603.104520pt;}
.y10_c01207{bottom:618.315320pt;}
.yf_c01207{bottom:674.384520pt;}
.yc_c01207{bottom:702.584120pt;}
.ye_c01207{bottom:703.213320pt;}
.yb_c01207{bottom:730.145720pt;}
.yd_c01207{bottom:730.462520pt;}
.y8_c01207{bottom:786.214920pt;}
.ya_c01207{bottom:788.120120pt;}
.y9_c01207{bottom:797.624120pt;}
.y7_c01207{bottom:815.360520pt;}
.y6_c01207{bottom:899.000120pt;}
.y5_c01207{bottom:937.011720pt;}
.y4_c01207{bottom:938.912520pt;}
.h6_c01207{height:18.567014pt;}
.h3_c01207{height:20.559000pt;}
.h2_c01207{height:25.698750pt;}
.he_c01207{height:29.364844pt;}
.h5_c01207{height:30.471375pt;}
.h12_c01207{height:31.226460pt;}
.h11_c01207{height:34.201406pt;}
.hf_c01207{height:34.602280pt;}
.hb_c01207{height:35.060438pt;}
.h8_c01207{height:35.446236pt;}
.hc_c01207{height:65.293594pt;}
.ha_c01207{height:66.449809pt;}
.h10_c01207{height:68.468813pt;}
.hd_c01207{height:69.753750pt;}
.h4_c01207{height:71.339297pt;}
.h7_c01207{height:73.584844pt;}
.h9_c01207{height:78.766875pt;}
.h1_c01207{height:986.666667pt;}
.h0_c01207{height:1122.666667pt;}
.w1_c01207{width:689.333333pt;}
.w0_c01207{width:793.333333pt;}
.x0_c01207{left:0.000000pt;}
.x3_c01207{left:49.967853pt;}
.x1_c01207{left:52.000000pt;}
.x2_c01207{left:61.984253pt;}
.x7_c01207{left:87.389853pt;}
.x3b_c01207{left:89.105853pt;}
.x42_c01207{left:135.173853pt;}
.x6_c01207{left:143.401853pt;}
.x4b_c01207{left:148.026253pt;}
.x29_c01207{left:154.828653pt;}
.x8_c01207{left:156.100253pt;}
.x4f_c01207{left:157.921853pt;}
.x14_c01207{left:164.315053pt;}
.x43_c01207{left:176.564653pt;}
.x10_c01207{left:184.959853pt;}
.x35_c01207{left:186.249053pt;}
.x5a_c01207{left:195.968653pt;}
.x9_c01207{left:197.002653pt;}
.x3c_c01207{left:214.871053pt;}
.x11_c01207{left:216.243853pt;}
.x4_c01207{left:218.483453pt;}
.x24_c01207{left:224.757853pt;}
.x50_c01207{left:234.552253pt;}
.x55_c01207{left:236.140653pt;}
.xa_c01207{left:244.188253pt;}
.x21_c01207{left:245.455453pt;}
.x12_c01207{left:254.017853pt;}
.x56_c01207{left:265.550253pt;}
.x2a_c01207{left:266.975853pt;}
.x16_c01207{left:273.980653pt;}
.x36_c01207{left:275.199453pt;}
.x44_c01207{left:284.677053pt;}
.x15_c01207{left:285.794653pt;}
.x22_c01207{left:293.873053pt;}
.x4c_c01207{left:295.382253pt;}
.x3d_c01207{left:304.336253pt;}
.x40_c01207{left:313.888653pt;}
.x45_c01207{left:314.993053pt;}
.xb_c01207{left:324.497053pt;}
.x17_c01207{left:333.833853pt;}
.x1b_c01207{left:342.906653pt;}
.x57_c01207{left:344.305853pt;}
.xc_c01207{left:353.475453pt;}
.x2b_c01207{left:364.334653pt;}
.x18_c01207{left:372.509853pt;}
.x4d_c01207{left:374.089453pt;}
.x41_c01207{left:375.268653pt;}
.x46_c01207{left:383.509853pt;}
.xd_c01207{left:393.524253pt;}
.x2c_c01207{left:394.540653pt;}
.x2d_c01207{left:403.609053pt;}
.x51_c01207{left:412.593853pt;}
.x2e_c01207{left:423.989853pt;}
.x47_c01207{left:432.534653pt;}
.x2f_c01207{left:433.925053pt;}
.x19_c01207{left:440.881453pt;}
.x25_c01207{left:442.337853pt;}
.x58_c01207{left:443.715053pt;}
.x30_c01207{left:445.202253pt;}
.x1c_c01207{left:452.471053pt;}
.x31_c01207{left:462.485453pt;}
.x48_c01207{left:464.439053pt;}
.x23_c01207{left:480.851053pt;}
.x49_c01207{left:482.747453pt;}
.x32_c01207{left:484.344653pt;}
.xe_c01207{left:500.813853pt;}
.x33_c01207{left:501.751053pt;}
.x52_c01207{left:510.898653pt;}
.x34_c01207{left:529.633853pt;}
.x5b_c01207{left:530.535853pt;}
.x3e_c01207{left:531.715053pt;}
.x1d_c01207{left:540.897853pt;}
.x4e_c01207{left:541.949453pt;}
.x37_c01207{left:557.481453pt;}
.x26_c01207{left:560.363453pt;}
.x1e_c01207{left:569.374653pt;}
.x38_c01207{left:572.542653pt;}
.xf_c01207{left:578.935853pt;}
.x53_c01207{left:589.535453pt;}
.x3f_c01207{left:590.820253pt;}
.x1a_c01207{left:600.223053pt;}
.x5_c01207{left:609.603853pt;}
.x27_c01207{left:618.610653pt;}
.x54_c01207{left:620.458653pt;}
.x3a_c01207{left:625.866253pt;}
.x1f_c01207{left:628.805453pt;}
.x28_c01207{left:630.187053pt;}
.x13_c01207{left:634.710253pt;}
.x59_c01207{left:638.252253pt;}
.x20_c01207{left:648.702253pt;}
.x39_c01207{left:650.083853pt;}
.x4a_c01207{left:681.042253pt;}
}





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

.ir_c01208:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01208{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01208;src:url('chunks/assets/font_987790e33e0007e8d2c7f6dc.woff2')format("woff");}.ff1_c01208{font-family:ff1_c01208;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01208;src:url('chunks/assets/font_903ec870d3114e7fade9e9ee.woff2')format("woff");}.ff2_c01208{font-family:ff2_c01208;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01208;src:url('chunks/assets/font_f3561507ce491d27a3655904.woff2')format("woff");}.ff3_c01208{font-family:ff3_c01208;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01208;src:url('chunks/assets/font_619546a9b94ad6f7381937d7.woff2')format("woff");}.ff4_c01208{font-family:ff4_c01208;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m49_c01208{transform:matrix(0.174418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174418,0.000000,0.000000,0.250000,0,0);}
.m28_c01208{transform:matrix(0.203321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203321,0.000000,0.000000,0.250000,0,0);}
.m15_c01208{transform:matrix(0.204271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204271,0.000000,0.000000,0.250000,0,0);}
.m1f_c01208{transform:matrix(0.205221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205221,0.000000,0.000000,0.250000,0,0);}
.m30_c01208{transform:matrix(0.207262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207262,0.000000,0.000000,0.250000,0,0);}
.m2_c01208{transform:matrix(0.213107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213107,0.000000,0.000000,0.250000,0,0);}
.m20_c01208{transform:matrix(0.216340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216340,0.000000,0.000000,0.250000,0,0);}
.m29_c01208{transform:matrix(0.217257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217257,0.000000,0.000000,0.250000,0,0);}
.m16_c01208{transform:matrix(0.218174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218174,0.000000,0.000000,0.250000,0,0);}
.m2a_c01208{transform:matrix(0.219755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219755,0.000000,0.000000,0.250000,0,0);}
.m40_c01208{transform:matrix(0.224089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224089,0.000000,0.000000,0.250000,0,0);}
.m2f_c01208{transform:matrix(0.227188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227188,0.000000,0.000000,0.250000,0,0);}
.ma_c01208{transform:matrix(0.227266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227266,0.000000,0.000000,0.250000,0,0);}
.m32_c01208{transform:matrix(0.233562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233562,0.000000,0.000000,0.250000,0,0);}
.mc_c01208{transform:matrix(0.234588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234588,0.000000,0.000000,0.250000,0,0);}
.md_c01208{transform:matrix(0.238278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238278,0.000000,0.000000,0.250000,0,0);}
.m0_c01208{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01208{transform:matrix(0.251908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251908,0.000000,0.000000,0.250000,0,0);}
.m25_c01208{transform:matrix(0.252702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252702,0.000000,0.000000,0.250000,0,0);}
.m43_c01208{transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);}
.mb_c01208{transform:matrix(0.253875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253875,0.000000,0.000000,0.250000,0,0);}
.m19_c01208{transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);}
.m37_c01208{transform:matrix(0.255881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255881,0.000000,0.000000,0.250000,0,0);}
.m1b_c01208{transform:matrix(0.256664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256664,0.000000,0.000000,0.250000,0,0);}
.m3e_c01208{transform:matrix(0.257099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257099,0.000000,0.000000,0.250000,0,0);}
.m4e_c01208{transform:matrix(0.257407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257407,0.000000,0.000000,0.250000,0,0);}
.m3b_c01208{transform:matrix(0.257856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257856,0.000000,0.000000,0.250000,0,0);}
.m1_c01208{transform:matrix(0.257881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257881,0.000000,0.000000,0.250000,0,0);}
.m1d_c01208{transform:matrix(0.257926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257926,0.000000,0.000000,0.250000,0,0);}
.m4d_c01208{transform:matrix(0.259160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259160,0.000000,0.000000,0.250000,0,0);}
.m7_c01208{transform:matrix(0.259183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259183,0.000000,0.000000,0.250000,0,0);}
.m3f_c01208{transform:matrix(0.260011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260011,0.000000,0.000000,0.250000,0,0);}
.m3_c01208{transform:matrix(0.260353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260353,0.000000,0.000000,0.250000,0,0);}
.m2d_c01208{transform:matrix(0.260772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260772,0.000000,0.000000,0.250000,0,0);}
.m42_c01208{transform:matrix(0.262470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262470,0.000000,0.000000,0.250000,0,0);}
.m4f_c01208{transform:matrix(0.263643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263643,0.000000,0.000000,0.250000,0,0);}
.m34_c01208{transform:matrix(0.264359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264359,0.000000,0.000000,0.250000,0,0);}
.m14_c01208{transform:matrix(0.264495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264495,0.000000,0.000000,0.250000,0,0);}
.m1e_c01208{transform:matrix(0.264788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264788,0.000000,0.000000,0.250000,0,0);}
.m3a_c01208{transform:matrix(0.264852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264852,0.000000,0.000000,0.250000,0,0);}
.m9_c01208{transform:matrix(0.266042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266042,0.000000,0.000000,0.250000,0,0);}
.m27_c01208{transform:matrix(0.266331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266331,0.000000,0.000000,0.250000,0,0);}
.m1a_c01208{transform:matrix(0.268070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268070,0.000000,0.000000,0.250000,0,0);}
.m46_c01208{transform:matrix(0.268168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268168,0.000000,0.000000,0.250000,0,0);}
.m12_c01208{transform:matrix(0.272477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272477,0.000000,0.000000,0.250000,0,0);}
.m6_c01208{transform:matrix(0.272941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272941,0.000000,0.000000,0.250000,0,0);}
.m45_c01208{transform:matrix(0.274401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274401,0.000000,0.000000,0.250000,0,0);}
.m31_c01208{transform:matrix(0.274453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274453,0.000000,0.000000,0.250000,0,0);}
.m51_c01208{transform:matrix(0.275273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275273,0.000000,0.000000,0.250000,0,0);}
.m10_c01208{transform:matrix(0.276302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276302,0.000000,0.000000,0.250000,0,0);}
.m2b_c01208{transform:matrix(0.277122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277122,0.000000,0.000000,0.250000,0,0);}
.m18_c01208{transform:matrix(0.278680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278680,0.000000,0.000000,0.250000,0,0);}
.m13_c01208{transform:matrix(0.280083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280083,0.000000,0.000000,0.250000,0,0);}
.m4a_c01208{transform:matrix(0.281055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281055,0.000000,0.000000,0.250000,0,0);}
.m44_c01208{transform:matrix(0.281375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281375,0.000000,0.000000,0.250000,0,0);}
.m23_c01208{transform:matrix(0.282283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282283,0.000000,0.000000,0.250000,0,0);}
.m4b_c01208{transform:matrix(0.284082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284082,0.000000,0.000000,0.250000,0,0);}
.m4_c01208{transform:matrix(0.285286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285286,0.000000,0.000000,0.250000,0,0);}
.m33_c01208{transform:matrix(0.286548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286548,0.000000,0.000000,0.250000,0,0);}
.m39_c01208{transform:matrix(0.286724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286724,0.000000,0.000000,0.250000,0,0);}
.m4c_c01208{transform:matrix(0.288695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288695,0.000000,0.000000,0.250000,0,0);}
.m48_c01208{transform:matrix(0.290414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290414,0.000000,0.000000,0.250000,0,0);}
.m11_c01208{transform:matrix(0.290647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290647,0.000000,0.000000,0.250000,0,0);}
.m5_c01208{transform:matrix(0.292515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292515,0.000000,0.000000,0.250000,0,0);}
.m3c_c01208{transform:matrix(0.293261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293261,0.000000,0.000000,0.250000,0,0);}
.m38_c01208{transform:matrix(0.295472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295472,0.000000,0.000000,0.250000,0,0);}
.m2c_c01208{transform:matrix(0.297449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297449,0.000000,0.000000,0.250000,0,0);}
.m26_c01208{transform:matrix(0.298054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298054,0.000000,0.000000,0.250000,0,0);}
.m47_c01208{transform:matrix(0.298674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298674,0.000000,0.000000,0.250000,0,0);}
.m21_c01208{transform:matrix(0.299088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299088,0.000000,0.000000,0.250000,0,0);}
.m36_c01208{transform:matrix(0.302155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302155,0.000000,0.000000,0.250000,0,0);}
.m35_c01208{transform:matrix(0.302452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302452,0.000000,0.000000,0.250000,0,0);}
.m24_c01208{transform:matrix(0.303528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303528,0.000000,0.000000,0.250000,0,0);}
.m3d_c01208{transform:matrix(0.304344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304344,0.000000,0.000000,0.250000,0,0);}
.m17_c01208{transform:matrix(0.307545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307545,0.000000,0.000000,0.250000,0,0);}
.me_c01208{transform:matrix(0.312655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312655,0.000000,0.000000,0.250000,0,0);}
.m50_c01208{transform:matrix(0.315275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315275,0.000000,0.000000,0.250000,0,0);}
.m8_c01208{transform:matrix(0.315866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315866,0.000000,0.000000,0.250000,0,0);}
.mf_c01208{transform:matrix(0.316062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316062,0.000000,0.000000,0.250000,0,0);}
.m41_c01208{transform:matrix(0.357270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357270,0.000000,0.000000,0.250000,0,0);}
.m22_c01208{transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364679,0.000000,0.000000,0.250000,0,0);}
.m2e_c01208{transform:matrix(0.407418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407418,0.000000,0.000000,0.250000,0,0);}
.v0_c01208{vertical-align:0.000000px;}
.ls2_c01208{letter-spacing:-2.855167px;}
.ls11_c01208{letter-spacing:-1.859937px;}
.ls0_c01208{letter-spacing:0.000000px;}
.ls5_c01208{letter-spacing:0.081576px;}
.lsd_c01208{letter-spacing:0.179468px;}
.lsb_c01208{letter-spacing:1.831500px;}
.lsc_c01208{letter-spacing:1.835464px;}
.ls3_c01208{letter-spacing:2.553335px;}
.lsf_c01208{letter-spacing:3.132526px;}
.ls8_c01208{letter-spacing:3.263048px;}
.ls6_c01208{letter-spacing:3.415500px;}
.lse_c01208{letter-spacing:3.455110px;}
.ls9_c01208{letter-spacing:3.638298px;}
.ls7_c01208{letter-spacing:3.643200px;}
.ls4_c01208{letter-spacing:4.078810px;}
.ls1_c01208{letter-spacing:4.197610px;}
.lsa_c01208{letter-spacing:52.747398px;}
.ls10_c01208{letter-spacing:61.300998px;}
.sc__c01208{text-shadow:none;}
.sc0_c01208{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01208{-webkit-text-stroke:0px transparent;}
.sc0_c01208{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01208{word-spacing:0.000000px;}
.fc0_c01208{color:transparent;}
.fsd_c01208{font-size:26.928000px;}
.fs11_c01208{font-size:28.314000px;}
.fsf_c01208{font-size:33.660000px;}
.fsb_c01208{font-size:34.056198px;}
.fsa_c01208{font-size:36.630000px;}
.fs0_c01208{font-size:45.144000px;}
.fse_c01208{font-size:49.896198px;}
.fs9_c01208{font-size:52.747398px;}
.fs10_c01208{font-size:61.300998px;}
.fs4_c01208{font-size:62.568000px;}
.fs5_c01208{font-size:68.310000px;}
.fsc_c01208{font-size:69.102198px;}
.fs8_c01208{font-size:72.864000px;}
.fs6_c01208{font-size:76.032198px;}
.fs7_c01208{font-size:78.408000px;}
.fs2_c01208{font-size:81.576198px;}
.fs1_c01208{font-size:83.952198px;}
.fs3_c01208{font-size:89.100000px;}
.y0_c01208{bottom:0.000000px;}
.y1_c01208{bottom:76.500000px;}
.y1e_c01208{bottom:116.454735px;}
.y1d_c01208{bottom:192.724335px;}
.y1c_c01208{bottom:225.151785px;}
.y1b_c01208{bottom:247.253535px;}
.y1a_c01208{bottom:252.594585px;}
.y19_c01208{bottom:260.791785px;}
.y18_c01208{bottom:289.308735px;}
.y17_c01208{bottom:321.384735px;}
.y16_c01208{bottom:353.102603px;}
.y15_c01208{bottom:379.121535px;}
.y14_c01208{bottom:385.180335px;}
.y13_c01208{bottom:417.607785px;}
.y12_c01208{bottom:448.975935px;}
.y11_c01208{bottom:512.058735px;}
.yf_c01208{bottom:543.773385px;}
.y10_c01208{bottom:548.767935px;}
.ye_c01208{bottom:606.499785px;}
.yd_c01208{bottom:638.575785px;}
.yc_c01208{bottom:702.376335px;}
.ya_c01208{bottom:734.452335px;}
.yb_c01208{bottom:734.808735px;}
.y9_c01208{bottom:775.433385px;}
.y8_c01208{bottom:779.358735px;}
.y7_c01208{bottom:797.535135px;}
.y6_c01208{bottom:829.249785px;}
.y5_c01208{bottom:892.688985px;}
.y4_c01208{bottom:925.126335px;}
.y2_c01208{bottom:955.776735px;}
.y3_c01208{bottom:1062.335385px;}
.hf_c01208{height:28.085063px;}
.h13_c01208{height:29.530617px;}
.h11_c01208{height:33.035449px;}
.hb_c01208{height:35.129767px;}
.hd_c01208{height:35.519550px;}
.hc_c01208{height:38.203945px;}
.h12_c01208{height:40.826465px;}
.h2_c01208{height:47.083781px;}
.h10_c01208{height:52.040175px;}
.h6_c01208{height:65.256469px;}
.h7_c01208{height:71.245195px;}
.ha_c01208{height:71.512031px;}
.he_c01208{height:72.071433px;}
.h8_c01208{height:74.621444px;}
.h9_c01208{height:76.953164px;}
.h4_c01208{height:80.062577px;}
.h3_c01208{height:82.394491px;}
.h5_c01208{height:87.446777px;}
.h1_c01208{height:1110.000000px;}
.h0_c01208{height:1263.000000px;}
.w1_c01208{width:775.500000px;}
.w0_c01208{width:892.500000px;}
.x0_c01208{left:0.000000px;}
.x1_c01208{left:58.500000px;}
.x2_c01208{left:64.574385px;}
.x4_c01208{left:87.977985px;}
.x5_c01208{left:163.475385px;}
.x18_c01208{left:176.578035px;}
.xc_c01208{left:196.972035px;}
.x20_c01208{left:198.457035px;}
.x14_c01208{left:199.605435px;}
.x6_c01208{left:208.713435px;}
.x3a_c01208{left:210.020235px;}
.x46_c01208{left:218.643135px;}
.xe_c01208{left:220.910235px;}
.x40_c01208{left:233.522835px;}
.x7_c01208{left:241.942785px;}
.xf_c01208{left:252.575385px;}
.x15_c01208{left:253.634685px;}
.x2d_c01208{left:254.995935px;}
.x39_c01208{left:262.089285px;}
.x21_c01208{left:264.668235px;}
.x41_c01208{left:265.975035px;}
.x19_c01208{left:274.662285px;}
.x2c_c01208{left:278.775735px;}
.xd_c01208{left:286.532385px;}
.x44_c01208{left:288.774735px;}
.x22_c01208{left:297.476835px;}
.x34_c01208{left:299.743935px;}
.x27_c01208{left:312.470385px;}
.x8_c01208{left:321.221985px;}
.x10_c01208{left:331.646685px;}
.x3b_c01208{left:333.017835px;}
.x37_c01208{left:355.114635px;}
.x3c_c01208{left:364.885935px;}
.x16_c01208{left:375.587835px;}
.x23_c01208{left:386.992635px;}
.x42_c01208{left:388.779585px;}
.x2e_c01208{left:400.362585px;}
.x1a_c01208{left:410.727885px;}
.x2f_c01208{left:420.410085px;}
.x9_c01208{left:431.809935px;}
.x1b_c01208{left:433.116735px;}
.x45_c01208{left:442.917735px;}
.x11_c01208{left:454.827435px;}
.x3d_c01208{left:465.667935px;}
.x35_c01208{left:477.325185px;}
.x24_c01208{left:487.279635px;}
.x30_c01208{left:499.100235px;}
.x36_c01208{left:509.722935px;}
.x25_c01208{left:519.934785px;}
.x1c_c01208{left:521.528685px;}
.x31_c01208{left:531.592035px;}
.xa_c01208{left:542.199885px;}
.x12_c01208{left:575.330235px;}
.x28_c01208{left:577.127085px;}
.x38_c01208{left:597.625035px;}
.x26_c01208{left:599.189235px;}
.x43_c01208{left:600.619785px;}
.x29_c01208{left:609.564435px;}
.x3e_c01208{left:619.241685px;}
.x1d_c01208{left:632.042385px;}
.x32_c01208{left:642.729435px;}
.x1e_c01208{left:651.446385px;}
.xb_c01208{left:652.758135px;}
.x3_c01208{left:664.054035px;}
.x33_c01208{left:675.176685px;}
.x2a_c01208{left:678.290235px;}
.x13_c01208{left:686.626035px;}
.x2b_c01208{left:689.680185px;}
.x17_c01208{left:701.817585px;}
.x1f_c01208{left:707.346735px;}
.x3f_c01208{left:708.811935px;}
@media print{
.v0_c01208{vertical-align:0.000000pt;}
.ls2_c01208{letter-spacing:-2.537926pt;}
.ls11_c01208{letter-spacing:-1.653278pt;}
.ls0_c01208{letter-spacing:0.000000pt;}
.ls5_c01208{letter-spacing:0.072512pt;}
.lsd_c01208{letter-spacing:0.159527pt;}
.lsb_c01208{letter-spacing:1.628000pt;}
.lsc_c01208{letter-spacing:1.631524pt;}
.ls3_c01208{letter-spacing:2.269631pt;}
.lsf_c01208{letter-spacing:2.784468pt;}
.ls8_c01208{letter-spacing:2.900487pt;}
.ls6_c01208{letter-spacing:3.036000pt;}
.lse_c01208{letter-spacing:3.071209pt;}
.ls9_c01208{letter-spacing:3.234043pt;}
.ls7_c01208{letter-spacing:3.238400pt;}
.ls4_c01208{letter-spacing:3.625609pt;}
.ls1_c01208{letter-spacing:3.731209pt;}
.lsa_c01208{letter-spacing:46.886576pt;}
.ls10_c01208{letter-spacing:54.489776pt;}
.ws0_c01208{word-spacing:0.000000pt;}
.fsd_c01208{font-size:23.936000pt;}
.fs11_c01208{font-size:25.168000pt;}
.fsf_c01208{font-size:29.920000pt;}
.fsb_c01208{font-size:30.272176pt;}
.fsa_c01208{font-size:32.560000pt;}
.fs0_c01208{font-size:40.128000pt;}
.fse_c01208{font-size:44.352176pt;}
.fs9_c01208{font-size:46.886576pt;}
.fs10_c01208{font-size:54.489776pt;}
.fs4_c01208{font-size:55.616000pt;}
.fs5_c01208{font-size:60.720000pt;}
.fsc_c01208{font-size:61.424176pt;}
.fs8_c01208{font-size:64.768000pt;}
.fs6_c01208{font-size:67.584176pt;}
.fs7_c01208{font-size:69.696000pt;}
.fs2_c01208{font-size:72.512176pt;}
.fs1_c01208{font-size:74.624176pt;}
.fs3_c01208{font-size:79.200000pt;}
.y0_c01208{bottom:0.000000pt;}
.y1_c01208{bottom:68.000000pt;}
.y1e_c01208{bottom:103.515320pt;}
.y1d_c01208{bottom:171.310520pt;}
.y1c_c01208{bottom:200.134920pt;}
.y1b_c01208{bottom:219.780920pt;}
.y1a_c01208{bottom:224.528520pt;}
.y19_c01208{bottom:231.814920pt;}
.y18_c01208{bottom:257.163320pt;}
.y17_c01208{bottom:285.675320pt;}
.y16_c01208{bottom:313.868980pt;}
.y15_c01208{bottom:336.996920pt;}
.y14_c01208{bottom:342.382520pt;}
.y13_c01208{bottom:371.206920pt;}
.y12_c01208{bottom:399.089720pt;}
.y11_c01208{bottom:455.163320pt;}
.yf_c01208{bottom:483.354120pt;}
.y10_c01208{bottom:487.793720pt;}
.ye_c01208{bottom:539.110920pt;}
.yd_c01208{bottom:567.622920pt;}
.yc_c01208{bottom:624.334520pt;}
.ya_c01208{bottom:652.846520pt;}
.yb_c01208{bottom:653.163320pt;}
.y9_c01208{bottom:689.274120pt;}
.y8_c01208{bottom:692.763320pt;}
.y7_c01208{bottom:708.920120pt;}
.y6_c01208{bottom:737.110920pt;}
.y5_c01208{bottom:793.501320pt;}
.y4_c01208{bottom:822.334520pt;}
.y2_c01208{bottom:849.579320pt;}
.y3_c01208{bottom:944.298120pt;}
.hf_c01208{height:24.964500pt;}
.h13_c01208{height:26.249438pt;}
.h11_c01208{height:29.364844pt;}
.hb_c01208{height:31.226460pt;}
.hd_c01208{height:31.572934pt;}
.hc_c01208{height:33.959063pt;}
.h12_c01208{height:36.290191pt;}
.h2_c01208{height:41.852250pt;}
.h10_c01208{height:46.257934pt;}
.h6_c01208{height:58.005750pt;}
.h7_c01208{height:63.329063pt;}
.ha_c01208{height:63.566250pt;}
.he_c01208{height:64.063496pt;}
.h8_c01208{height:66.330173pt;}
.h9_c01208{height:68.402813pt;}
.h4_c01208{height:71.166735pt;}
.h3_c01208{height:73.239548pt;}
.h5_c01208{height:77.730469pt;}
.h1_c01208{height:986.666667pt;}
.h0_c01208{height:1122.666667pt;}
.w1_c01208{width:689.333333pt;}
.w0_c01208{width:793.333333pt;}
.x0_c01208{left:0.000000pt;}
.x1_c01208{left:52.000000pt;}
.x2_c01208{left:57.399453pt;}
.x4_c01208{left:78.202653pt;}
.x5_c01208{left:145.311453pt;}
.x18_c01208{left:156.958253pt;}
.xc_c01208{left:175.086253pt;}
.x20_c01208{left:176.406253pt;}
.x14_c01208{left:177.427053pt;}
.x6_c01208{left:185.523053pt;}
.x3a_c01208{left:186.684653pt;}
.x46_c01208{left:194.349453pt;}
.xe_c01208{left:196.364653pt;}
.x40_c01208{left:207.575853pt;}
.x7_c01208{left:215.060253pt;}
.xf_c01208{left:224.511453pt;}
.x15_c01208{left:225.453053pt;}
.x2d_c01208{left:226.663053pt;}
.x39_c01208{left:232.968253pt;}
.x21_c01208{left:235.260653pt;}
.x41_c01208{left:236.422253pt;}
.x19_c01208{left:244.144253pt;}
.x2c_c01208{left:247.800653pt;}
.xd_c01208{left:254.695453pt;}
.x44_c01208{left:256.688653pt;}
.x22_c01208{left:264.423853pt;}
.x34_c01208{left:266.439053pt;}
.x27_c01208{left:277.751453pt;}
.x8_c01208{left:285.530653pt;}
.x10_c01208{left:294.797053pt;}
.x3b_c01208{left:296.015853pt;}
.x37_c01208{left:315.657453pt;}
.x3c_c01208{left:324.343053pt;}
.x16_c01208{left:333.855853pt;}
.x23_c01208{left:343.993453pt;}
.x42_c01208{left:345.581853pt;}
.x2e_c01208{left:355.877853pt;}
.x1a_c01208{left:365.091453pt;}
.x2f_c01208{left:373.697853pt;}
.x9_c01208{left:383.831053pt;}
.x1b_c01208{left:384.992653pt;}
.x45_c01208{left:393.704653pt;}
.x11_c01208{left:404.291053pt;}
.x3d_c01208{left:413.927053pt;}
.x35_c01208{left:424.289053pt;}
.x24_c01208{left:433.137453pt;}
.x30_c01208{left:443.644653pt;}
.x36_c01208{left:453.087053pt;}
.x25_c01208{left:462.164253pt;}
.x1c_c01208{left:463.581053pt;}
.x31_c01208{left:472.526253pt;}
.xa_c01208{left:481.955453pt;}
.x12_c01208{left:511.404653pt;}
.x28_c01208{left:513.001853pt;}
.x38_c01208{left:531.222253pt;}
.x26_c01208{left:532.612653pt;}
.x43_c01208{left:533.884253pt;}
.x29_c01208{left:541.835053pt;}
.x3e_c01208{left:550.437053pt;}
.x1d_c01208{left:561.815453pt;}
.x32_c01208{left:571.315053pt;}
.x1e_c01208{left:579.063453pt;}
.xb_c01208{left:580.229453pt;}
.x3_c01208{left:590.270253pt;}
.x33_c01208{left:600.157053pt;}
.x2a_c01208{left:602.924653pt;}
.x13_c01208{left:610.334253pt;}
.x2b_c01208{left:613.049053pt;}
.x17_c01208{left:623.837853pt;}
.x1f_c01208{left:628.752653pt;}
.x3f_c01208{left:630.055053pt;}
}





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

.ir_c01209:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01209{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01209;src:url('chunks/assets/font_bedeb259cb79123250e4f298.woff2')format("woff");}.ff1_c01209{font-family:ff1_c01209;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01209;src:url('chunks/assets/font_274bb768af2e22d273ad8104.woff2')format("woff");}.ff2_c01209{font-family:ff2_c01209;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01209;src:url('chunks/assets/font_aa0d663a73d732a8e2998f0a.woff2')format("woff");}.ff3_c01209{font-family:ff3_c01209;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01209;src:url('chunks/assets/font_3ca8c3994b8a26497a32afbf.woff2')format("woff");}.ff4_c01209{font-family:ff4_c01209;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m30_c01209{transform:matrix(0.183333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183333,0.000000,0.000000,0.250000,0,0);}
.m64_c01209{transform:matrix(0.205355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205355,0.000000,0.000000,0.250000,0,0);}
.m78_c01209{transform:matrix(0.208561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208561,0.000000,0.000000,0.250000,0,0);}
.m2_c01209{transform:matrix(0.217401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217401,0.000000,0.000000,0.250000,0,0);}
.m79_c01209{transform:matrix(0.223697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223697,0.000000,0.000000,0.250000,0,0);}
.m1e_c01209{transform:matrix(0.223906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223906,0.000000,0.000000,0.250000,0,0);}
.m47_c01209{transform:matrix(0.226870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226870,0.000000,0.000000,0.250000,0,0);}
.m34_c01209{transform:matrix(0.228159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228159,0.000000,0.000000,0.250000,0,0);}
.m4_c01209{transform:matrix(0.230943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230943,0.000000,0.000000,0.250000,0,0);}
.m1a_c01209{transform:matrix(0.232371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232371,0.000000,0.000000,0.250000,0,0);}
.m7e_c01209{transform:matrix(0.246275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246275,0.000000,0.000000,0.250000,0,0);}
.m0_c01209{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m7_c01209{transform:matrix(0.251275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251275,0.000000,0.000000,0.250000,0,0);}
.m3d_c01209{transform:matrix(0.251517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251517,0.000000,0.000000,0.250000,0,0);}
.m4d_c01209{transform:matrix(0.251528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251528,0.000000,0.000000,0.250000,0,0);}
.m17_c01209{transform:matrix(0.251531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251531,0.000000,0.000000,0.250000,0,0);}
.m42_c01209{transform:matrix(0.251781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251781,0.000000,0.000000,0.250000,0,0);}
.m3e_c01209{transform:matrix(0.251994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251994,0.000000,0.000000,0.250000,0,0);}
.m4e_c01209{transform:matrix(0.252089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252089,0.000000,0.000000,0.250000,0,0);}
.mf_c01209{transform:matrix(0.253140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253140,0.000000,0.000000,0.250000,0,0);}
.m69_c01209{transform:matrix(0.255443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255443,0.000000,0.000000,0.250000,0,0);}
.m31_c01209{transform:matrix(0.255564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255564,0.000000,0.000000,0.250000,0,0);}
.m2b_c01209{transform:matrix(0.255682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255682,0.000000,0.000000,0.250000,0,0);}
.m5a_c01209{transform:matrix(0.256078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256078,0.000000,0.000000,0.250000,0,0);}
.m38_c01209{transform:matrix(0.256742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256742,0.000000,0.000000,0.250000,0,0);}
.m14_c01209{transform:matrix(0.256819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256819,0.000000,0.000000,0.250000,0,0);}
.m1d_c01209{transform:matrix(0.256898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256898,0.000000,0.000000,0.250000,0,0);}
.m21_c01209{transform:matrix(0.257569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257569,0.000000,0.000000,0.250000,0,0);}
.m45_c01209{transform:matrix(0.257780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257780,0.000000,0.000000,0.250000,0,0);}
.m5b_c01209{transform:matrix(0.258084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258084,0.000000,0.000000,0.250000,0,0);}
.m48_c01209{transform:matrix(0.258974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258974,0.000000,0.000000,0.250000,0,0);}
.m55_c01209{transform:matrix(0.259240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259240,0.000000,0.000000,0.250000,0,0);}
.m70_c01209{transform:matrix(0.259656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259656,0.000000,0.000000,0.250000,0,0);}
.m44_c01209{transform:matrix(0.261004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261004,0.000000,0.000000,0.250000,0,0);}
.m53_c01209{transform:matrix(0.261032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261032,0.000000,0.000000,0.250000,0,0);}
.m52_c01209{transform:matrix(0.261184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261184,0.000000,0.000000,0.250000,0,0);}
.m68_c01209{transform:matrix(0.261799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261799,0.000000,0.000000,0.250000,0,0);}
.m49_c01209{transform:matrix(0.262564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262564,0.000000,0.000000,0.250000,0,0);}
.m36_c01209{transform:matrix(0.262820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262820,0.000000,0.000000,0.250000,0,0);}
.m7d_c01209{transform:matrix(0.264211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264211,0.000000,0.000000,0.250000,0,0);}
.m54_c01209{transform:matrix(0.264259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264259,0.000000,0.000000,0.250000,0,0);}
.m32_c01209{transform:matrix(0.264490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264490,0.000000,0.000000,0.250000,0,0);}
.m82_c01209{transform:matrix(0.265438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265438,0.000000,0.000000,0.250000,0,0);}
.m4c_c01209{transform:matrix(0.266124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266124,0.000000,0.000000,0.250000,0,0);}
.m80_c01209{transform:matrix(0.266360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266360,0.000000,0.000000,0.250000,0,0);}
.m71_c01209{transform:matrix(0.266633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266633,0.000000,0.000000,0.250000,0,0);}
.m56_c01209{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m5e_c01209{transform:matrix(0.267539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267539,0.000000,0.000000,0.250000,0,0);}
.m1b_c01209{transform:matrix(0.267796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267796,0.000000,0.000000,0.250000,0,0);}
.m60_c01209{transform:matrix(0.268001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268001,0.000000,0.000000,0.250000,0,0);}
.m66_c01209{transform:matrix(0.268510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268510,0.000000,0.000000,0.250000,0,0);}
.m46_c01209{transform:matrix(0.270267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270267,0.000000,0.000000,0.250000,0,0);}
.m33_c01209{transform:matrix(0.270650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270650,0.000000,0.000000,0.250000,0,0);}
.m76_c01209{transform:matrix(0.271866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271866,0.000000,0.000000,0.250000,0,0);}
.m20_c01209{transform:matrix(0.272243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272243,0.000000,0.000000,0.250000,0,0);}
.m18_c01209{transform:matrix(0.272447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272447,0.000000,0.000000,0.250000,0,0);}
.m8_c01209{transform:matrix(0.272911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272911,0.000000,0.000000,0.250000,0,0);}
.m26_c01209{transform:matrix(0.273813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273813,0.000000,0.000000,0.250000,0,0);}
.m27_c01209{transform:matrix(0.273829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273829,0.000000,0.000000,0.250000,0,0);}
.m1_c01209{transform:matrix(0.273841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273841,0.000000,0.000000,0.250000,0,0);}
.m67_c01209{transform:matrix(0.274410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274410,0.000000,0.000000,0.250000,0,0);}
.m6e_c01209{transform:matrix(0.274755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274755,0.000000,0.000000,0.250000,0,0);}
.m5d_c01209{transform:matrix(0.275082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275082,0.000000,0.000000,0.250000,0,0);}
.m10_c01209{transform:matrix(0.276709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276709,0.000000,0.000000,0.250000,0,0);}
.m65_c01209{transform:matrix(0.277345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277345,0.000000,0.000000,0.250000,0,0);}
.m75_c01209{transform:matrix(0.278821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278821,0.000000,0.000000,0.250000,0,0);}
.m6b_c01209{transform:matrix(0.278847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278847,0.000000,0.000000,0.250000,0,0);}
.m29_c01209{transform:matrix(0.278986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278986,0.000000,0.000000,0.250000,0,0);}
.m35_c01209{transform:matrix(0.279341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279341,0.000000,0.000000,0.250000,0,0);}
.m51_c01209{transform:matrix(0.280119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280119,0.000000,0.000000,0.250000,0,0);}
.m62_c01209{transform:matrix(0.280608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280608,0.000000,0.000000,0.250000,0,0);}
.m81_c01209{transform:matrix(0.281506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281506,0.000000,0.000000,0.250000,0,0);}
.m3_c01209{transform:matrix(0.282454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282454,0.000000,0.000000,0.250000,0,0);}
.m73_c01209{transform:matrix(0.282857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282857,0.000000,0.000000,0.250000,0,0);}
.m12_c01209{transform:matrix(0.282862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282862,0.000000,0.000000,0.250000,0,0);}
.m16_c01209{transform:matrix(0.283669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283669,0.000000,0.000000,0.250000,0,0);}
.m74_c01209{transform:matrix(0.283788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283788,0.000000,0.000000,0.250000,0,0);}
.m1c_c01209{transform:matrix(0.285270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285270,0.000000,0.000000,0.250000,0,0);}
.m6_c01209{transform:matrix(0.285833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285833,0.000000,0.000000,0.250000,0,0);}
.m7a_c01209{transform:matrix(0.285942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285942,0.000000,0.000000,0.250000,0,0);}
.m1f_c01209{transform:matrix(0.286259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286259,0.000000,0.000000,0.250000,0,0);}
.m28_c01209{transform:matrix(0.287190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287190,0.000000,0.000000,0.250000,0,0);}
.m2d_c01209{transform:matrix(0.289364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289364,0.000000,0.000000,0.250000,0,0);}
.m2c_c01209{transform:matrix(0.289772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289772,0.000000,0.000000,0.250000,0,0);}
.m3f_c01209{transform:matrix(0.290273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290273,0.000000,0.000000,0.250000,0,0);}
.m77_c01209{transform:matrix(0.290544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290544,0.000000,0.000000,0.250000,0,0);}
.m59_c01209{transform:matrix(0.290687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290687,0.000000,0.000000,0.250000,0,0);}
.me_c01209{transform:matrix(0.291485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291485,0.000000,0.000000,0.250000,0,0);}
.m43_c01209{transform:matrix(0.291904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291904,0.000000,0.000000,0.250000,0,0);}
.m2e_c01209{transform:matrix(0.292014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292014,0.000000,0.000000,0.250000,0,0);}
.m2f_c01209{transform:matrix(0.292017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292017,0.000000,0.000000,0.250000,0,0);}
.m3c_c01209{transform:matrix(0.292962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292962,0.000000,0.000000,0.250000,0,0);}
.m5f_c01209{transform:matrix(0.293037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293037,0.000000,0.000000,0.250000,0,0);}
.m25_c01209{transform:matrix(0.293720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293720,0.000000,0.000000,0.250000,0,0);}
.m24_c01209{transform:matrix(0.296094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296094,0.000000,0.000000,0.250000,0,0);}
.m50_c01209{transform:matrix(0.297101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297101,0.000000,0.000000,0.250000,0,0);}
.m3b_c01209{transform:matrix(0.297605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297605,0.000000,0.000000,0.250000,0,0);}
.m4b_c01209{transform:matrix(0.298102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298102,0.000000,0.000000,0.250000,0,0);}
.m4a_c01209{transform:matrix(0.298890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298890,0.000000,0.000000,0.250000,0,0);}
.m11_c01209{transform:matrix(0.301645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301645,0.000000,0.000000,0.250000,0,0);}
.m19_c01209{transform:matrix(0.302026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302026,0.000000,0.000000,0.250000,0,0);}
.m7c_c01209{transform:matrix(0.305430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305430,0.000000,0.000000,0.250000,0,0);}
.m72_c01209{transform:matrix(0.305664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305664,0.000000,0.000000,0.250000,0,0);}
.m5c_c01209{transform:matrix(0.306444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306444,0.000000,0.000000,0.250000,0,0);}
.m58_c01209{transform:matrix(0.307639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307639,0.000000,0.000000,0.250000,0,0);}
.m7b_c01209{transform:matrix(0.308031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308031,0.000000,0.000000,0.250000,0,0);}
.m4f_c01209{transform:matrix(0.310035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310035,0.000000,0.000000,0.250000,0,0);}
.md_c01209{transform:matrix(0.310226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310226,0.000000,0.000000,0.250000,0,0);}
.m57_c01209{transform:matrix(0.311272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311272,0.000000,0.000000,0.250000,0,0);}
.m41_c01209{transform:matrix(0.315440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315440,0.000000,0.000000,0.250000,0,0);}
.m39_c01209{transform:matrix(0.317128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317128,0.000000,0.000000,0.250000,0,0);}
.m63_c01209{transform:matrix(0.317780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317780,0.000000,0.000000,0.250000,0,0);}
.m9_c01209{transform:matrix(0.318703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318703,0.000000,0.000000,0.250000,0,0);}
.m6c_c01209{transform:matrix(0.319107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319107,0.000000,0.000000,0.250000,0,0);}
.mc_c01209{transform:matrix(0.321693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321693,0.000000,0.000000,0.250000,0,0);}
.m40_c01209{transform:matrix(0.321765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321765,0.000000,0.000000,0.250000,0,0);}
.m5_c01209{transform:matrix(0.321980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321980,0.000000,0.000000,0.250000,0,0);}
.m6a_c01209{transform:matrix(0.322032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322032,0.000000,0.000000,0.250000,0,0);}
.m22_c01209{transform:matrix(0.322296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322296,0.000000,0.000000,0.250000,0,0);}
.m23_c01209{transform:matrix(0.322595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322595,0.000000,0.000000,0.250000,0,0);}
.m6f_c01209{transform:matrix(0.322825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322825,0.000000,0.000000,0.250000,0,0);}
.m2a_c01209{transform:matrix(0.323355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323355,0.000000,0.000000,0.250000,0,0);}
.m61_c01209{transform:matrix(0.325633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325633,0.000000,0.000000,0.250000,0,0);}
.m3a_c01209{transform:matrix(0.329198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329198,0.000000,0.000000,0.250000,0,0);}
.mb_c01209{transform:matrix(0.334974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334974,0.000000,0.000000,0.250000,0,0);}
.m6d_c01209{transform:matrix(0.340699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340699,0.000000,0.000000,0.250000,0,0);}
.m13_c01209{transform:matrix(0.340861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340861,0.000000,0.000000,0.250000,0,0);}
.ma_c01209{transform:matrix(0.341610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341610,0.000000,0.000000,0.250000,0,0);}
.m37_c01209{transform:matrix(0.349305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349305,0.000000,0.000000,0.250000,0,0);}
.m7f_c01209{transform:matrix(0.385756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385756,0.000000,0.000000,0.250000,0,0);}
.m15_c01209{transform:matrix(0.393566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393566,0.000000,0.000000,0.250000,0,0);}
.v4_c01209{vertical-align:-7.147800px;}
.v0_c01209{vertical-align:0.000000px;}
.v2_c01209{vertical-align:9.999000px;}
.v1_c01209{vertical-align:17.107200px;}
.v3_c01209{vertical-align:18.528840px;}
.ls5_c01209{letter-spacing:-2.813580px;}
.lsb_c01209{letter-spacing:-2.451834px;}
.lsf_c01209{letter-spacing:-2.134440px;}
.ls6_c01209{letter-spacing:-1.085377px;}
.ls3_c01209{letter-spacing:0.000000px;}
.lse_c01209{letter-spacing:2.122243px;}
.ls2_c01209{letter-spacing:2.186554px;}
.lsd_c01209{letter-spacing:2.660843px;}
.ls7_c01209{letter-spacing:2.845735px;}
.lsa_c01209{letter-spacing:3.746081px;}
.ls9_c01209{letter-spacing:3.861000px;}
.ls4_c01209{letter-spacing:4.019400px;}
.ls1_c01209{letter-spacing:9.444600px;}
.ls0_c01209{letter-spacing:10.692000px;}
.ls8_c01209{letter-spacing:55.598598px;}
.lsc_c01209{letter-spacing:64.152198px;}
.sc__c01209{text-shadow:none;}
.sc0_c01209{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01209{-webkit-text-stroke:0px transparent;}
.sc0_c01209{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01209{word-spacing:-22.283554px;}
.ws0_c01209{word-spacing:-20.097000px;}
.ws2_c01209{word-spacing:0.000000px;}
._0_c01209{margin-left:-32.476752px;}
._1_c01209{margin-left:-19.212732px;}
._5_c01209{margin-left:-4.415400px;}
._3_c01209{margin-left:-2.717114px;}
._2_c01209{width:2.090088px;}
._4_c01209{width:189.204840px;}
.fc0_c01209{color:transparent;}
.fs9_c01209{font-size:22.176000px;}
.fs0_c01209{font-size:27.720000px;}
.fsb_c01209{font-size:33.660000px;}
.fs2_c01209{font-size:37.818000px;}
.fs5_c01209{font-size:39.600000px;}
.fs3_c01209{font-size:54.648000px;}
.fs4_c01209{font-size:55.598598px;}
.fsa_c01209{font-size:60.984000px;}
.fs8_c01209{font-size:63.756198px;}
.fs7_c01209{font-size:64.152198px;}
.fs6_c01209{font-size:77.220000px;}
.fs1_c01209{font-size:80.388000px;}
.y0_c01209{bottom:0.000000px;}
.y1_c01209{bottom:76.500000px;}
.y1c_c01209{bottom:85.805325px;}
.y1b_c01209{bottom:90.081135px;}
.y1a_c01209{bottom:124.651935px;}
.y19_c01209{bottom:156.727935px;}
.y18_c01209{bottom:221.236335px;}
.y17_c01209{bottom:253.668735px;}
.y16_c01209{bottom:286.096185px;}
.y15_c01209{bottom:340.981785px;}
.y14_c01209{bottom:349.540335px;}
.y13_c01209{bottom:381.616335px;}
.y12_c01209{bottom:413.335935px;}
.y11_c01209{bottom:434.714985px;}
.y10_c01209{bottom:476.418735px;}
.yf_c01209{bottom:508.489785px;}
.ye_c01209{bottom:571.928985px;}
.yd_c01209{bottom:604.009935px;}
.yc_c01209{bottom:636.442335px;}
.yb_c01209{bottom:699.168735px;}
.ya_c01209{bottom:731.239785px;}
.y9_c01209{bottom:762.246585px;}
.y8_c01209{bottom:778.640985px;}
.y7_c01209{bottom:824.616585px;}
.y6_c01209{bottom:856.341135px;}
.y5_c01209{bottom:889.129935px;}
.y4_c01209{bottom:920.844585px;}
.y3_c01209{bottom:1058.414985px;}
.y2_c01209{bottom:1082.293785px;}
.h9_c01209{height:23.128875px;}
.h2_c01209{height:28.911094px;}
.h5_c01209{height:37.028666px;}
.h4_c01209{height:39.442992px;}
.h6_c01209{height:41.301563px;}
.h8_c01209{height:42.725364px;}
.hb_c01209{height:51.564289px;}
.ha_c01209{height:63.604406px;}
.h7_c01209{height:75.749502px;}
.h3_c01209{height:78.896426px;}
.h1_c01209{height:1110.000000px;}
.h0_c01209{height:1263.000000px;}
.w1_c01209{width:775.500000px;}
.w0_c01209{width:892.500000px;}
.x0_c01209{left:0.000000px;}
.x1_c01209{left:58.500000px;}
.x20_c01209{left:84.720885px;}
.x4_c01209{left:85.795035px;}
.x44_c01209{left:151.357785px;}
.x30_c01209{left:162.044835px;}
.x45_c01209{left:173.692185px;}
.x5_c01209{left:183.423885px;}
.x3c_c01209{left:184.740585px;}
.x52_c01209{left:194.596035px;}
.x10_c01209{left:195.784035px;}
.x4d_c01209{left:208.797585px;}
.x46_c01209{left:219.850935px;}
.x31_c01209{left:227.731335px;}
.x11_c01209{left:228.864885px;}
.x6_c01209{left:230.859735px;}
.x2c_c01209{left:239.700435px;}
.x21_c01209{left:241.913085px;}
.x7_c01209{left:250.798335px;}
.x3a_c01209{left:252.105135px;}
.x4e_c01209{left:261.713085px;}
.x8_c01209{left:273.360435px;}
.x40_c01209{left:282.562485px;}
.x26_c01209{left:284.126685px;}
.x9_c01209{left:285.190935px;}
.x32_c01209{left:295.912635px;}
.x19_c01209{left:317.494635px;}
.x35_c01209{left:318.727185px;}
.x12_c01209{left:320.291385px;}
.xa_c01209{left:329.770635px;}
.x41_c01209{left:342.214935px;}
.x13_c01209{left:349.154835px;}
.x36_c01209{left:351.540735px;}
.x22_c01209{left:362.940585px;}
.x27_c01209{left:373.018785px;}
.x28_c01209{left:385.274985px;}
.x1a_c01209{left:394.486935px;}
.xb_c01209{left:406.797585px;}
.x23_c01209{left:408.044985px;}
.x14_c01209{left:418.182585px;}
.x49_c01209{left:426.919335px;}
.x37_c01209{left:427.924185px;}
.x1b_c01209{left:430.022985px;}
.xc_c01209{left:440.304135px;}
.x3d_c01209{left:441.328785px;}
.x29_c01209{left:452.401935px;}
.x1c_c01209{left:461.108985px;}
.x33_c01209{left:462.727635px;}
.x4a_c01209{left:464.460135px;}
.x2d_c01209{left:470.791185px;}
.x51_c01209{left:472.538535px;}
.x3e_c01209{left:473.894835px;}
.x3b_c01209{left:484.205685px;}
.x2a_c01209{left:495.679785px;}
.xd_c01209{left:506.861835px;}
.x2e_c01209{left:507.960735px;}
.x43_c01209{left:512.762235px;}
.x4f_c01209{left:517.722135px;}
.x2b_c01209{left:528.686385px;}
.x15_c01209{left:539.086335px;}
.x47_c01209{left:540.789135px;}
.x38_c01209{left:551.258385px;}
.x42_c01209{left:552.792885px;}
.x16_c01209{left:561.950385px;}
.x3f_c01209{left:571.196985px;}
.x24_c01209{left:572.652285px;}
.x1d_c01209{left:583.769985px;}
.x4b_c01209{left:596.144985px;}
.x2_c01209{left:604.688685px;}
.x34_c01209{left:606.574635px;}
.x25_c01209{left:616.415235px;}
.x2f_c01209{left:628.062585px;}
.x39_c01209{left:639.497085px;}
.x1f_c01209{left:641.595885px;}
.xe_c01209{left:649.654485px;}
.x1e_c01209{left:650.797935px;}
.x17_c01209{left:661.618635px;}
.x3_c01209{left:672.246285px;}
.x48_c01209{left:683.462985px;}
.x18_c01209{left:694.328235px;}
.x50_c01209{left:704.896485px;}
.xf_c01209{left:705.940935px;}
.x4c_c01209{left:707.331885px;}
.x53_c01209{left:709.153485px;}
@media print{
.v4_c01209{vertical-align:-6.353600pt;}
.v0_c01209{vertical-align:0.000000pt;}
.v2_c01209{vertical-align:8.888000pt;}
.v1_c01209{vertical-align:15.206400pt;}
.v3_c01209{vertical-align:16.470080pt;}
.ls5_c01209{letter-spacing:-2.500960pt;}
.lsb_c01209{letter-spacing:-2.179408pt;}
.lsf_c01209{letter-spacing:-1.897280pt;}
.ls6_c01209{letter-spacing:-0.964779pt;}
.ls3_c01209{letter-spacing:0.000000pt;}
.lse_c01209{letter-spacing:1.886438pt;}
.ls2_c01209{letter-spacing:1.943603pt;}
.lsd_c01209{letter-spacing:2.365194pt;}
.ls7_c01209{letter-spacing:2.529542pt;}
.lsa_c01209{letter-spacing:3.329850pt;}
.ls9_c01209{letter-spacing:3.432000pt;}
.ls4_c01209{letter-spacing:3.572800pt;}
.ls1_c01209{letter-spacing:8.395200pt;}
.ls0_c01209{letter-spacing:9.504000pt;}
.ls8_c01209{letter-spacing:49.420976pt;}
.lsc_c01209{letter-spacing:57.024176pt;}
.ws1_c01209{word-spacing:-19.807603pt;}
.ws0_c01209{word-spacing:-17.864000pt;}
.ws2_c01209{word-spacing:0.000000pt;}
._0_c01209{margin-left:-28.868224pt;}
._1_c01209{margin-left:-17.077984pt;}
._5_c01209{margin-left:-3.924800pt;}
._3_c01209{margin-left:-2.415213pt;}
._2_c01209{width:1.857856pt;}
._4_c01209{width:168.182080pt;}
.fs9_c01209{font-size:19.712000pt;}
.fs0_c01209{font-size:24.640000pt;}
.fsb_c01209{font-size:29.920000pt;}
.fs2_c01209{font-size:33.616000pt;}
.fs5_c01209{font-size:35.200000pt;}
.fs3_c01209{font-size:48.576000pt;}
.fs4_c01209{font-size:49.420976pt;}
.fsa_c01209{font-size:54.208000pt;}
.fs8_c01209{font-size:56.672176pt;}
.fs7_c01209{font-size:57.024176pt;}
.fs6_c01209{font-size:68.640000pt;}
.fs1_c01209{font-size:71.456000pt;}
.y0_c01209{bottom:0.000000pt;}
.y1_c01209{bottom:68.000000pt;}
.y1c_c01209{bottom:76.271400pt;}
.y1b_c01209{bottom:80.072120pt;}
.y1a_c01209{bottom:110.801720pt;}
.y19_c01209{bottom:139.313720pt;}
.y18_c01209{bottom:196.654520pt;}
.y17_c01209{bottom:225.483320pt;}
.y16_c01209{bottom:254.307720pt;}
.y15_c01209{bottom:303.094920pt;}
.y14_c01209{bottom:310.702520pt;}
.y13_c01209{bottom:339.214520pt;}
.y12_c01209{bottom:367.409720pt;}
.y11_c01209{bottom:386.413320pt;}
.y10_c01209{bottom:423.483320pt;}
.yf_c01209{bottom:451.990920pt;}
.ye_c01209{bottom:508.381320pt;}
.yd_c01209{bottom:536.897720pt;}
.yc_c01209{bottom:565.726520pt;}
.yb_c01209{bottom:621.483320pt;}
.ya_c01209{bottom:649.990920pt;}
.y9_c01209{bottom:677.552520pt;}
.y8_c01209{bottom:692.125320pt;}
.y7_c01209{bottom:732.992520pt;}
.y6_c01209{bottom:761.192120pt;}
.y5_c01209{bottom:790.337720pt;}
.y4_c01209{bottom:818.528520pt;}
.y3_c01209{bottom:940.813320pt;}
.y2_c01209{bottom:962.038920pt;}
.h9_c01209{height:20.559000pt;}
.h2_c01209{height:25.698750pt;}
.h5_c01209{height:32.914370pt;}
.h4_c01209{height:35.060438pt;}
.h6_c01209{height:36.712500pt;}
.h8_c01209{height:37.978101pt;}
.hb_c01209{height:45.834924pt;}
.ha_c01209{height:56.537250pt;}
.h7_c01209{height:67.332891pt;}
.h3_c01209{height:70.130156pt;}
.h1_c01209{height:986.666667pt;}
.h0_c01209{height:1122.666667pt;}
.w1_c01209{width:689.333333pt;}
.w0_c01209{width:793.333333pt;}
.x0_c01209{left:0.000000pt;}
.x1_c01209{left:52.000000pt;}
.x20_c01209{left:75.307453pt;}
.x4_c01209{left:76.262253pt;}
.x44_c01209{left:134.540253pt;}
.x30_c01209{left:144.039853pt;}
.x45_c01209{left:154.393053pt;}
.x5_c01209{left:163.043453pt;}
.x3c_c01209{left:164.213853pt;}
.x52_c01209{left:172.974253pt;}
.x10_c01209{left:174.030253pt;}
.x4d_c01209{left:185.597853pt;}
.x46_c01209{left:195.423053pt;}
.x31_c01209{left:202.427853pt;}
.x11_c01209{left:203.435453pt;}
.x6_c01209{left:205.208653pt;}
.x2c_c01209{left:213.067053pt;}
.x21_c01209{left:215.033853pt;}
.x7_c01209{left:222.931853pt;}
.x3a_c01209{left:224.093453pt;}
.x4e_c01209{left:232.633853pt;}
.x8_c01209{left:242.987053pt;}
.x40_c01209{left:251.166653pt;}
.x26_c01209{left:252.557053pt;}
.x9_c01209{left:253.503053pt;}
.x32_c01209{left:263.033453pt;}
.x19_c01209{left:282.217453pt;}
.x35_c01209{left:283.313053pt;}
.x12_c01209{left:284.703453pt;}
.xa_c01209{left:293.129453pt;}
.x41_c01209{left:304.191053pt;}
.x13_c01209{left:310.359853pt;}
.x36_c01209{left:312.480653pt;}
.x22_c01209{left:322.613853pt;}
.x27_c01209{left:331.572253pt;}
.x28_c01209{left:342.466653pt;}
.x1a_c01209{left:350.655053pt;}
.xb_c01209{left:361.597853pt;}
.x23_c01209{left:362.706653pt;}
.x14_c01209{left:371.717853pt;}
.x49_c01209{left:379.483853pt;}
.x37_c01209{left:380.377053pt;}
.x1b_c01209{left:382.242653pt;}
.xc_c01209{left:391.381453pt;}
.x3d_c01209{left:392.292253pt;}
.x29_c01209{left:402.135053pt;}
.x1c_c01209{left:409.874653pt;}
.x33_c01209{left:411.313453pt;}
.x4a_c01209{left:412.853453pt;}
.x2d_c01209{left:418.481053pt;}
.x51_c01209{left:420.034253pt;}
.x3e_c01209{left:421.239853pt;}
.x3b_c01209{left:430.405053pt;}
.x2a_c01209{left:440.604253pt;}
.xd_c01209{left:450.543853pt;}
.x2e_c01209{left:451.520653pt;}
.x43_c01209{left:455.788653pt;}
.x4f_c01209{left:460.197453pt;}
.x2b_c01209{left:469.943453pt;}
.x15_c01209{left:479.187853pt;}
.x47_c01209{left:480.701453pt;}
.x38_c01209{left:490.007453pt;}
.x42_c01209{left:491.371453pt;}
.x16_c01209{left:499.511453pt;}
.x3f_c01209{left:507.730653pt;}
.x24_c01209{left:509.024253pt;}
.x1d_c01209{left:518.906653pt;}
.x4b_c01209{left:529.906653pt;}
.x2_c01209{left:537.501053pt;}
.x34_c01209{left:539.177453pt;}
.x25_c01209{left:547.924653pt;}
.x2f_c01209{left:558.277853pt;}
.x39_c01209{left:568.441853pt;}
.x1f_c01209{left:570.307453pt;}
.xe_c01209{left:577.470653pt;}
.x1e_c01209{left:578.487053pt;}
.x17_c01209{left:588.105453pt;}
.x3_c01209{left:597.552253pt;}
.x48_c01209{left:607.522653pt;}
.x18_c01209{left:617.180653pt;}
.x50_c01209{left:626.574653pt;}
.xf_c01209{left:627.503053pt;}
.x4c_c01209{left:628.739453pt;}
.x53_c01209{left:630.358653pt;}
}





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

.ir_c01210:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01210{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01210;src:url('chunks/assets/font_e92487b66e403969bc2d9f54.woff2')format("woff");}.ff1_c01210{font-family:ff1_c01210;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01210;src:url('chunks/assets/font_824d137dc69a53ea11f7c810.woff2')format("woff");}.ff2_c01210{font-family:ff2_c01210;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01210;src:url('chunks/assets/font_74de7e7f2b29fc1b5eccb2e5.woff2')format("woff");}.ff3_c01210{font-family:ff3_c01210;line-height:0.666000;font-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_c01210{transform:matrix(0.156204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156204,0.000000,0.000000,0.250000,0,0);}
.m7d_c01210{transform:matrix(0.163637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163637,0.000000,0.000000,0.250000,0,0);}
.m2e_c01210{transform:matrix(0.167683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167683,0.000000,0.000000,0.250000,0,0);}
.m26_c01210{transform:matrix(0.180577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180577,0.000000,0.000000,0.250000,0,0);}
.m3c_c01210{transform:matrix(0.180640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180640,0.000000,0.000000,0.250000,0,0);}
.m5a_c01210{transform:matrix(0.182926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182926,0.000000,0.000000,0.250000,0,0);}
.m50_c01210{transform:matrix(0.204323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204323,0.000000,0.000000,0.250000,0,0);}
.m65_c01210{transform:matrix(0.206738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206738,0.000000,0.000000,0.250000,0,0);}
.m3d_c01210{transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);}
.m10_c01210{transform:matrix(0.219595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219595,0.000000,0.000000,0.250000,0,0);}
.me_c01210{transform:matrix(0.219775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219775,0.000000,0.000000,0.250000,0,0);}
.m23_c01210{transform:matrix(0.221589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221589,0.000000,0.000000,0.250000,0,0);}
.m25_c01210{transform:matrix(0.227638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227638,0.000000,0.000000,0.250000,0,0);}
.m4e_c01210{transform:matrix(0.230600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230600,0.000000,0.000000,0.250000,0,0);}
.m56_c01210{transform:matrix(0.238279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238279,0.000000,0.000000,0.250000,0,0);}
.m6f_c01210{transform:matrix(0.238760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238760,0.000000,0.000000,0.250000,0,0);}
.m44_c01210{transform:matrix(0.239138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239138,0.000000,0.000000,0.250000,0,0);}
.m63_c01210{transform:matrix(0.242447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242447,0.000000,0.000000,0.250000,0,0);}
.m2_c01210{transform:matrix(0.242530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242530,0.000000,0.000000,0.250000,0,0);}
.m40_c01210{transform:matrix(0.243130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243130,0.000000,0.000000,0.250000,0,0);}
.m49_c01210{transform:matrix(0.244834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244834,0.000000,0.000000,0.250000,0,0);}
.m38_c01210{transform:matrix(0.245132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245132,0.000000,0.000000,0.250000,0,0);}
.m0_c01210{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01210{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m1_c01210{transform:matrix(0.253472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253472,0.000000,0.000000,0.250000,0,0);}
.m28_c01210{transform:matrix(0.253559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253559,0.000000,0.000000,0.250000,0,0);}
.m53_c01210{transform:matrix(0.253780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253780,0.000000,0.000000,0.250000,0,0);}
.m31_c01210{transform:matrix(0.253990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253990,0.000000,0.000000,0.250000,0,0);}
.m78_c01210{transform:matrix(0.255574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255574,0.000000,0.000000,0.250000,0,0);}
.mb_c01210{transform:matrix(0.255729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255729,0.000000,0.000000,0.250000,0,0);}
.m55_c01210{transform:matrix(0.256103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256103,0.000000,0.000000,0.250000,0,0);}
.m2a_c01210{transform:matrix(0.256378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256378,0.000000,0.000000,0.250000,0,0);}
.md_c01210{transform:matrix(0.259761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259761,0.000000,0.000000,0.250000,0,0);}
.m3b_c01210{transform:matrix(0.260233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260233,0.000000,0.000000,0.250000,0,0);}
.m45_c01210{transform:matrix(0.261274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261274,0.000000,0.000000,0.250000,0,0);}
.m27_c01210{transform:matrix(0.261505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261505,0.000000,0.000000,0.250000,0,0);}
.m2f_c01210{transform:matrix(0.262497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262497,0.000000,0.000000,0.250000,0,0);}
.m6e_c01210{transform:matrix(0.264033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264033,0.000000,0.000000,0.250000,0,0);}
.m7b_c01210{transform:matrix(0.264800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264800,0.000000,0.000000,0.250000,0,0);}
.m33_c01210{transform:matrix(0.265460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265460,0.000000,0.000000,0.250000,0,0);}
.m21_c01210{transform:matrix(0.266931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266931,0.000000,0.000000,0.250000,0,0);}
.mc_c01210{transform:matrix(0.267788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267788,0.000000,0.000000,0.250000,0,0);}
.m24_c01210{transform:matrix(0.270287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270287,0.000000,0.000000,0.250000,0,0);}
.m79_c01210{transform:matrix(0.270442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270442,0.000000,0.000000,0.250000,0,0);}
.m32_c01210{transform:matrix(0.271135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271135,0.000000,0.000000,0.250000,0,0);}
.m34_c01210{transform:matrix(0.271562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271562,0.000000,0.000000,0.250000,0,0);}
.m62_c01210{transform:matrix(0.273027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273027,0.000000,0.000000,0.250000,0,0);}
.m16_c01210{transform:matrix(0.273274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273274,0.000000,0.000000,0.250000,0,0);}
.m4f_c01210{transform:matrix(0.274166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274166,0.000000,0.000000,0.250000,0,0);}
.m1b_c01210{transform:matrix(0.275114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275114,0.000000,0.000000,0.250000,0,0);}
.m70_c01210{transform:matrix(0.275407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275407,0.000000,0.000000,0.250000,0,0);}
.m1a_c01210{transform:matrix(0.275599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275599,0.000000,0.000000,0.250000,0,0);}
.m14_c01210{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);}
.m57_c01210{transform:matrix(0.276898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276898,0.000000,0.000000,0.250000,0,0);}
.m75_c01210{transform:matrix(0.277584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277584,0.000000,0.000000,0.250000,0,0);}
.m5e_c01210{transform:matrix(0.278483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278483,0.000000,0.000000,0.250000,0,0);}
.m3_c01210{transform:matrix(0.279333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279333,0.000000,0.000000,0.250000,0,0);}
.m41_c01210{transform:matrix(0.280380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280380,0.000000,0.000000,0.250000,0,0);}
.m51_c01210{transform:matrix(0.280561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280561,0.000000,0.000000,0.250000,0,0);}
.m67_c01210{transform:matrix(0.281485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281485,0.000000,0.000000,0.250000,0,0);}
.m7c_c01210{transform:matrix(0.282478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282478,0.000000,0.000000,0.250000,0,0);}
.m2b_c01210{transform:matrix(0.283033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283033,0.000000,0.000000,0.250000,0,0);}
.m2d_c01210{transform:matrix(0.284028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284028,0.000000,0.000000,0.250000,0,0);}
.m59_c01210{transform:matrix(0.285627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285627,0.000000,0.000000,0.250000,0,0);}
.m76_c01210{transform:matrix(0.285925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285925,0.000000,0.000000,0.250000,0,0);}
.m64_c01210{transform:matrix(0.286591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286591,0.000000,0.000000,0.250000,0,0);}
.m7a_c01210{transform:matrix(0.287377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287377,0.000000,0.000000,0.250000,0,0);}
.ma_c01210{transform:matrix(0.287843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287843,0.000000,0.000000,0.250000,0,0);}
.m58_c01210{transform:matrix(0.288389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288389,0.000000,0.000000,0.250000,0,0);}
.m30_c01210{transform:matrix(0.289207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289207,0.000000,0.000000,0.250000,0,0);}
.m5_c01210{transform:matrix(0.291067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291067,0.000000,0.000000,0.250000,0,0);}
.m19_c01210{transform:matrix(0.292009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292009,0.000000,0.000000,0.250000,0,0);}
.m39_c01210{transform:matrix(0.293278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293278,0.000000,0.000000,0.250000,0,0);}
.m74_c01210{transform:matrix(0.293704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293704,0.000000,0.000000,0.250000,0,0);}
.m6_c01210{transform:matrix(0.294677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294677,0.000000,0.000000,0.250000,0,0);}
.m13_c01210{transform:matrix(0.295941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295941,0.000000,0.000000,0.250000,0,0);}
.m18_c01210{transform:matrix(0.296357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296357,0.000000,0.000000,0.250000,0,0);}
.m35_c01210{transform:matrix(0.297520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297520,0.000000,0.000000,0.250000,0,0);}
.m73_c01210{transform:matrix(0.297904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297904,0.000000,0.000000,0.250000,0,0);}
.m69_c01210{transform:matrix(0.301075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301075,0.000000,0.000000,0.250000,0,0);}
.m6d_c01210{transform:matrix(0.301973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301973,0.000000,0.000000,0.250000,0,0);}
.m54_c01210{transform:matrix(0.302015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302015,0.000000,0.000000,0.250000,0,0);}
.m4_c01210{transform:matrix(0.302134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302134,0.000000,0.000000,0.250000,0,0);}
.m6b_c01210{transform:matrix(0.302828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302828,0.000000,0.000000,0.250000,0,0);}
.m43_c01210{transform:matrix(0.302885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302885,0.000000,0.000000,0.250000,0,0);}
.m46_c01210{transform:matrix(0.305249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305249,0.000000,0.000000,0.250000,0,0);}
.m3a_c01210{transform:matrix(0.305886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305886,0.000000,0.000000,0.250000,0,0);}
.m5b_c01210{transform:matrix(0.309760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309760,0.000000,0.000000,0.250000,0,0);}
.m36_c01210{transform:matrix(0.311018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311018,0.000000,0.000000,0.250000,0,0);}
.m4b_c01210{transform:matrix(0.311248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311248,0.000000,0.000000,0.250000,0,0);}
.m1c_c01210{transform:matrix(0.313306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313306,0.000000,0.000000,0.250000,0,0);}
.m3e_c01210{transform:matrix(0.313593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313593,0.000000,0.000000,0.250000,0,0);}
.m47_c01210{transform:matrix(0.315431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315431,0.000000,0.000000,0.250000,0,0);}
.m29_c01210{transform:matrix(0.315840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315840,0.000000,0.000000,0.250000,0,0);}
.m42_c01210{transform:matrix(0.316834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316834,0.000000,0.000000,0.250000,0,0);}
.m3f_c01210{transform:matrix(0.317979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317979,0.000000,0.000000,0.250000,0,0);}
.m6a_c01210{transform:matrix(0.319338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319338,0.000000,0.000000,0.250000,0,0);}
.m5c_c01210{transform:matrix(0.319707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319707,0.000000,0.000000,0.250000,0,0);}
.m71_c01210{transform:matrix(0.320529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320529,0.000000,0.000000,0.250000,0,0);}
.m5f_c01210{transform:matrix(0.320877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320877,0.000000,0.000000,0.250000,0,0);}
.m22_c01210{transform:matrix(0.322181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322181,0.000000,0.000000,0.250000,0,0);}
.m8_c01210{transform:matrix(0.322419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322419,0.000000,0.000000,0.250000,0,0);}
.m77_c01210{transform:matrix(0.322828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322828,0.000000,0.000000,0.250000,0,0);}
.m68_c01210{transform:matrix(0.324395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324395,0.000000,0.000000,0.250000,0,0);}
.mf_c01210{transform:matrix(0.325895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325895,0.000000,0.000000,0.250000,0,0);}
.m66_c01210{transform:matrix(0.331664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331664,0.000000,0.000000,0.250000,0,0);}
.m15_c01210{transform:matrix(0.332555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332555,0.000000,0.000000,0.250000,0,0);}
.m4a_c01210{transform:matrix(0.332606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332606,0.000000,0.000000,0.250000,0,0);}
.m6c_c01210{transform:matrix(0.334084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334084,0.000000,0.000000,0.250000,0,0);}
.m61_c01210{transform:matrix(0.336689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336689,0.000000,0.000000,0.250000,0,0);}
.m60_c01210{transform:matrix(0.337128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337128,0.000000,0.000000,0.250000,0,0);}
.m9_c01210{transform:matrix(0.337349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337349,0.000000,0.000000,0.250000,0,0);}
.m2c_c01210{transform:matrix(0.337766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337766,0.000000,0.000000,0.250000,0,0);}
.m5d_c01210{transform:matrix(0.343295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343295,0.000000,0.000000,0.250000,0,0);}
.m12_c01210{transform:matrix(0.343496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343496,0.000000,0.000000,0.250000,0,0);}
.m1d_c01210{transform:matrix(0.348117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348117,0.000000,0.000000,0.250000,0,0);}
.m17_c01210{transform:matrix(0.348169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348169,0.000000,0.000000,0.250000,0,0);}
.m37_c01210{transform:matrix(0.348181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348181,0.000000,0.000000,0.250000,0,0);}
.m48_c01210{transform:matrix(0.351434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351434,0.000000,0.000000,0.250000,0,0);}
.m7_c01210{transform:matrix(0.371665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371665,0.000000,0.000000,0.250000,0,0);}
.m4c_c01210{transform:matrix(0.384719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384719,0.000000,0.000000,0.250000,0,0);}
.m11_c01210{transform:matrix(0.400250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400250,0.000000,0.000000,0.250000,0,0);}
.m1e_c01210{transform:matrix(0.405453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405453,0.000000,0.000000,0.250000,0,0);}
.m72_c01210{transform:matrix(0.405552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405552,0.000000,0.000000,0.250000,0,0);}
.m1f_c01210{transform:matrix(0.413236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413236,0.000000,0.000000,0.250000,0,0);}
.m4d_c01210{transform:matrix(0.418856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418856,0.000000,0.000000,0.250000,0,0);}
.v0_c01210{vertical-align:0.000000px;}
.v1_c01210{vertical-align:11.404800px;}
.ls14_c01210{letter-spacing:-3.014550px;}
.ls5_c01210{letter-spacing:-2.626477px;}
.ls8_c01210{letter-spacing:-2.378838px;}
.ls11_c01210{letter-spacing:-1.643424px;}
.lse_c01210{letter-spacing:-1.576179px;}
.ls16_c01210{letter-spacing:-0.541728px;}
.lsb_c01210{letter-spacing:-0.322681px;}
.ls13_c01210{letter-spacing:-0.067538px;}
.ls12_c01210{letter-spacing:-0.031363px;}
.ls3_c01210{letter-spacing:0.000000px;}
.lsc_c01210{letter-spacing:1.179981px;}
.ls1_c01210{letter-spacing:2.101572px;}
.ls0_c01210{letter-spacing:2.401350px;}
.ls17_c01210{letter-spacing:2.504700px;}
.ls2_c01210{letter-spacing:3.346882px;}
.ls15_c01210{letter-spacing:3.564000px;}
.lsa_c01210{letter-spacing:3.643200px;}
.ls6_c01210{letter-spacing:3.752110px;}
.ls10_c01210{letter-spacing:3.798333px;}
.lsd_c01210{letter-spacing:3.900610px;}
.ls7_c01210{letter-spacing:3.969900px;}
.ls4_c01210{letter-spacing:4.306500px;}
.ls9_c01210{letter-spacing:52.747398px;}
.lsf_c01210{letter-spacing:58.449798px;}
.ls18_c01210{letter-spacing:62.726400px;}
.sc__c01210{text-shadow:none;}
.sc0_c01210{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01210{-webkit-text-stroke:0px transparent;}
.sc0_c01210{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01210{word-spacing:-23.634072px;}
.ws3_c01210{word-spacing:-22.107432px;}
.ws1_c01210{word-spacing:-19.815840px;}
.ws0_c01210{word-spacing:-18.760550px;}
.ws4_c01210{word-spacing:0.000000px;}
._a_c01210{margin-left:-23.512633px;}
._c_c01210{margin-left:-20.187057px;}
._1_c01210{margin-left:-14.032997px;}
._e_c01210{margin-left:-12.474000px;}
._6_c01210{margin-left:-2.775883px;}
._7_c01210{width:1.800073px;}
._3_c01210{width:3.227364px;}
._10_c01210{width:8.029559px;}
._2_c01210{width:11.781528px;}
._5_c01210{width:13.543101px;}
._d_c01210{width:23.997014px;}
._12_c01210{width:27.465515px;}
._0_c01210{width:31.782168px;}
._11_c01210{width:35.044675px;}
._4_c01210{width:36.273501px;}
._8_c01210{width:38.798001px;}
._9_c01210{width:42.967437px;}
._f_c01210{width:48.252133px;}
._b_c01210{width:52.091319px;}
.fc0_c01210{color:transparent;}
.fs1_c01210{font-size:17.028000px;}
.fs0_c01210{font-size:22.572000px;}
.fs12_c01210{font-size:27.720000px;}
.fse_c01210{font-size:33.264000px;}
.fsc_c01210{font-size:34.848000px;}
.fs10_c01210{font-size:50.094000px;}
.fs8_c01210{font-size:50.292000px;}
.fs5_c01210{font-size:52.747398px;}
.fs9_c01210{font-size:58.449798px;}
.fsa_c01210{font-size:59.400000px;}
.fs11_c01210{font-size:62.726400px;}
.fsd_c01210{font-size:71.280000px;}
.fs6_c01210{font-size:72.864000px;}
.fs3_c01210{font-size:75.042198px;}
.fsf_c01210{font-size:75.240000px;}
.fs7_c01210{font-size:78.012198px;}
.fs4_c01210{font-size:79.398000px;}
.fs2_c01210{font-size:86.130000px;}
.fsb_c01210{font-size:104.544000px;}
.y0_c01210{bottom:0.000000px;}
.y1b_c01210{bottom:31.982985px;}
.y1_c01210{bottom:76.500000px;}
.y1a_c01210{bottom:97.209135px;}
.y19_c01210{bottom:129.636585px;}
.y18_c01210{bottom:147.100185px;}
.y2_c01210{bottom:170.271135px;}
.y17_c01210{bottom:192.362985px;}
.y16_c01210{bottom:225.513135px;}
.y15_c01210{bottom:289.665135px;}
.y14_c01210{bottom:311.405535px;}
.y13_c01210{bottom:322.453935px;}
.y12_c01210{bottom:385.175385px;}
.y11_c01210{bottom:416.899935px;}
.y10_c01210{bottom:443.273535px;}
.yf_c01210{bottom:448.970985px;}
.ye_c01210{bottom:449.332335px;}
.yd_c01210{bottom:512.058735px;}
.yc_c01210{bottom:574.785135px;}
.yb_c01210{bottom:607.217535px;}
.ya_c01210{bottom:670.295385px;}
.y9_c01210{bottom:702.376335px;}
.y8_c01210{bottom:765.097785px;}
.y7_c01210{bottom:797.535135px;}
.y6_c01210{bottom:828.898335px;}
.y5_c01210{bottom:892.693935px;}
.y4_c01210{bottom:925.126335px;}
.y3_c01210{bottom:1061.978985px;}
.h2_c01210{height:23.541891px;}
.h13_c01210{height:28.911094px;}
.hc_c01210{height:34.201406px;}
.he_c01210{height:34.693313px;}
.h6_c01210{height:35.129767px;}
.ha_c01210{height:38.927565px;}
.h12_c01210{height:41.775782px;}
.h9_c01210{height:49.358848px;}
.h11_c01210{height:52.246477px;}
.hd_c01210{height:69.957422px;}
.h7_c01210{height:71.512031px;}
.h4_c01210{height:73.649813px;}
.hf_c01210{height:74.342813px;}
.h8_c01210{height:76.564706px;}
.h5_c01210{height:77.924795px;}
.h10_c01210{height:78.472969px;}
.h3_c01210{height:84.531885px;}
.hb_c01210{height:102.604219px;}
.h1_c01210{height:1110.000000px;}
.h0_c01210{height:1263.000000px;}
.w1_c01210{width:775.500000px;}
.w0_c01210{width:892.500000px;}
.x0_c01210{left:0.000000px;}
.x2_c01210{left:53.664585px;}
.x1_c01210{left:58.500000px;}
.x54_c01210{left:83.295285px;}
.x26_c01210{left:84.374385px;}
.x10_c01210{left:85.443585px;}
.x4_c01210{left:86.502885px;}
.x3a_c01210{left:117.484935px;}
.x3b_c01210{left:125.939535px;}
.x27_c01210{left:140.210385px;}
.x5d_c01210{left:149.580735px;}
.x3c_c01210{left:160.940985px;}
.x11_c01210{left:162.668535px;}
.x5_c01210{left:173.865435px;}
.x55_c01210{left:182.691285px;}
.x5e_c01210{left:183.844635px;}
.xc_c01210{left:194.665335px;}
.x1c_c01210{left:195.977085px;}
.x28_c01210{left:206.619585px;}
.x61_c01210{left:215.920635px;}
.x6_c01210{left:217.222485px;}
.x56_c01210{left:219.222285px;}
.x24_c01210{left:228.399585px;}
.x42_c01210{left:230.552835px;}
.x29_c01210{left:231.701235px;}
.x4e_c01210{left:238.358985px;}
.x3d_c01210{left:239.626185px;}
.x31_c01210{left:249.605385px;}
.x12_c01210{left:250.778535px;}
.x52_c01210{left:252.268485px;}
.x1d_c01210{left:262.094235px;}
.x47_c01210{left:271.751685px;}
.x5a_c01210{left:272.900085px;}
.x62_c01210{left:274.503885px;}
.x37_c01210{left:275.894835px;}
.x2f_c01210{left:283.220835px;}
.x43_c01210{left:284.324685px;}
.x2a_c01210{left:286.299735px;}
.x13_c01210{left:295.090935px;}
.xd_c01210{left:305.674035px;}
.x48_c01210{left:317.450085px;}
.x3e_c01210{left:318.766785px;}
.x14_c01210{left:328.676685px;}
.x25_c01210{left:330.226035px;}
.x3f_c01210{left:338.447985px;}
.x49_c01210{left:340.878435px;}
.x57_c01210{left:350.615085px;}
.x7_c01210{left:362.960385px;}
.x1e_c01210{left:373.399935px;}
.x2b_c01210{left:383.577135px;}
.x8_c01210{left:385.294785px;}
.xe_c01210{left:394.818585px;}
.x15_c01210{left:396.229335px;}
.x63_c01210{left:415.806585px;}
.x4f_c01210{left:416.846085px;}
.x9_c01210{left:418.870635px;}
.x5f_c01210{left:429.597285px;}
.x30_c01210{left:440.165535px;}
.x1f_c01210{left:450.674385px;}
.x16_c01210{left:452.015835px;}
.x4a_c01210{left:453.738435px;}
.xa_c01210{left:462.668235px;}
.x38_c01210{left:472.523685px;}
.x58_c01210{left:473.761185px;}
.x17_c01210{left:485.542185px;}
.x4b_c01210{left:494.917485px;}
.x32_c01210{left:496.278735px;}
.x40_c01210{left:505.159035px;}
.x59_c01210{left:506.198535px;}
.xf_c01210{left:507.589485px;}
.x5b_c01210{left:517.934985px;}
.x20_c01210{left:527.354835px;}
.x33_c01210{left:528.503235px;}
.x39_c01210{left:539.957535px;}
.xb_c01210{left:551.099985px;}
.x34_c01210{left:561.618735px;}
.x53_c01210{left:571.959285px;}
.x2c_c01210{left:573.558135px;}
.x44_c01210{left:582.859185px;}
.x18_c01210{left:584.908485px;}
.x41_c01210{left:593.645235px;}
.x2d_c01210{left:607.039935px;}
.x21_c01210{left:616.162785px;}
.x19_c01210{left:618.731835px;}
.x60_c01210{left:626.844885px;}
.x45_c01210{left:628.131885px;}
.x4c_c01210{left:637.893285px;}
.x35_c01210{left:639.848535px;}
.x46_c01210{left:649.941585px;}
.x50_c01210{left:661.583985px;}
.x64_c01210{left:663.613485px;}
.x22_c01210{left:672.424485px;}
.x1a_c01210{left:681.740385px;}
.x3_c01210{left:683.299635px;}
.x36_c01210{left:684.759885px;}
.x1b_c01210{left:694.808385px;}
.x51_c01210{left:701.966085px;}
.x23_c01210{left:705.876585px;}
.x5c_c01210{left:710.722635px;}
.x4d_c01210{left:717.162585px;}
.x2e_c01210{left:741.264135px;}
@media print{
.v0_c01210{vertical-align:0.000000pt;}
.v1_c01210{vertical-align:10.137600pt;}
.ls14_c01210{letter-spacing:-2.679600pt;}
.ls5_c01210{letter-spacing:-2.334646pt;}
.ls8_c01210{letter-spacing:-2.114522pt;}
.ls11_c01210{letter-spacing:-1.460821pt;}
.lse_c01210{letter-spacing:-1.401048pt;}
.ls16_c01210{letter-spacing:-0.481536pt;}
.lsb_c01210{letter-spacing:-0.286828pt;}
.ls13_c01210{letter-spacing:-0.060034pt;}
.ls12_c01210{letter-spacing:-0.027878pt;}
.ls3_c01210{letter-spacing:0.000000pt;}
.lsc_c01210{letter-spacing:1.048872pt;}
.ls1_c01210{letter-spacing:1.868064pt;}
.ls0_c01210{letter-spacing:2.134534pt;}
.ls17_c01210{letter-spacing:2.226400pt;}
.ls2_c01210{letter-spacing:2.975006pt;}
.ls15_c01210{letter-spacing:3.168000pt;}
.lsa_c01210{letter-spacing:3.238400pt;}
.ls6_c01210{letter-spacing:3.335209pt;}
.ls10_c01210{letter-spacing:3.376296pt;}
.lsd_c01210{letter-spacing:3.467209pt;}
.ls7_c01210{letter-spacing:3.528800pt;}
.ls4_c01210{letter-spacing:3.828000pt;}
.ls9_c01210{letter-spacing:46.886576pt;}
.lsf_c01210{letter-spacing:51.955376pt;}
.ls18_c01210{letter-spacing:55.756800pt;}
.ws2_c01210{word-spacing:-21.008064pt;}
.ws3_c01210{word-spacing:-19.651050pt;}
.ws1_c01210{word-spacing:-17.614080pt;}
.ws0_c01210{word-spacing:-16.676044pt;}
.ws4_c01210{word-spacing:0.000000pt;}
._a_c01210{margin-left:-20.900118pt;}
._c_c01210{margin-left:-17.944051pt;}
._1_c01210{margin-left:-12.473775pt;}
._e_c01210{margin-left:-11.088000pt;}
._6_c01210{margin-left:-2.467452pt;}
._7_c01210{width:1.600065pt;}
._3_c01210{width:2.868768pt;}
._10_c01210{width:7.137386pt;}
._2_c01210{width:10.472469pt;}
._5_c01210{width:12.038312pt;}
._d_c01210{width:21.330679pt;}
._12_c01210{width:24.413791pt;}
._0_c01210{width:28.250816pt;}
._11_c01210{width:31.150822pt;}
._4_c01210{width:32.243112pt;}
._8_c01210{width:34.487112pt;}
._9_c01210{width:38.193277pt;}
._f_c01210{width:42.890785pt;}
._b_c01210{width:46.303395pt;}
.fs1_c01210{font-size:15.136000pt;}
.fs0_c01210{font-size:20.064000pt;}
.fs12_c01210{font-size:24.640000pt;}
.fse_c01210{font-size:29.568000pt;}
.fsc_c01210{font-size:30.976000pt;}
.fs10_c01210{font-size:44.528000pt;}
.fs8_c01210{font-size:44.704000pt;}
.fs5_c01210{font-size:46.886576pt;}
.fs9_c01210{font-size:51.955376pt;}
.fsa_c01210{font-size:52.800000pt;}
.fs11_c01210{font-size:55.756800pt;}
.fsd_c01210{font-size:63.360000pt;}
.fs6_c01210{font-size:64.768000pt;}
.fs3_c01210{font-size:66.704176pt;}
.fsf_c01210{font-size:66.880000pt;}
.fs7_c01210{font-size:69.344176pt;}
.fs4_c01210{font-size:70.576000pt;}
.fs2_c01210{font-size:76.560000pt;}
.fsb_c01210{font-size:92.928000pt;}
.y0_c01210{bottom:0.000000pt;}
.y1b_c01210{bottom:28.429320pt;}
.y1_c01210{bottom:68.000000pt;}
.y1a_c01210{bottom:86.408120pt;}
.y19_c01210{bottom:115.232520pt;}
.y18_c01210{bottom:130.755720pt;}
.y2_c01210{bottom:151.352120pt;}
.y17_c01210{bottom:170.989320pt;}
.y16_c01210{bottom:200.456120pt;}
.y15_c01210{bottom:257.480120pt;}
.y14_c01210{bottom:276.804920pt;}
.y13_c01210{bottom:286.625720pt;}
.y12_c01210{bottom:342.378120pt;}
.y11_c01210{bottom:370.577720pt;}
.y10_c01210{bottom:394.020920pt;}
.yf_c01210{bottom:399.085320pt;}
.ye_c01210{bottom:399.406520pt;}
.yd_c01210{bottom:455.163320pt;}
.yc_c01210{bottom:510.920120pt;}
.yb_c01210{bottom:539.748920pt;}
.ya_c01210{bottom:595.818120pt;}
.y9_c01210{bottom:624.334520pt;}
.y8_c01210{bottom:680.086920pt;}
.y7_c01210{bottom:708.920120pt;}
.y6_c01210{bottom:736.798520pt;}
.y5_c01210{bottom:793.505720pt;}
.y4_c01210{bottom:822.334520pt;}
.y3_c01210{bottom:943.981320pt;}
.h2_c01210{height:20.926125pt;}
.h13_c01210{height:25.698750pt;}
.hc_c01210{height:30.401250pt;}
.he_c01210{height:30.838500pt;}
.h6_c01210{height:31.226460pt;}
.ha_c01210{height:34.602280pt;}
.h12_c01210{height:37.134029pt;}
.h9_c01210{height:43.874531pt;}
.h11_c01210{height:46.441313pt;}
.hd_c01210{height:62.184375pt;}
.h7_c01210{height:63.566250pt;}
.h4_c01210{height:65.466501pt;}
.hf_c01210{height:66.082500pt;}
.h8_c01210{height:68.057516pt;}
.h5_c01210{height:69.266484pt;}
.h10_c01210{height:69.753750pt;}
.h3_c01210{height:75.139453pt;}
.hb_c01210{height:91.203750pt;}
.h1_c01210{height:986.666667pt;}
.h0_c01210{height:1122.666667pt;}
.w1_c01210{width:689.333333pt;}
.w0_c01210{width:793.333333pt;}
.x0_c01210{left:0.000000pt;}
.x2_c01210{left:47.701853pt;}
.x1_c01210{left:52.000000pt;}
.x54_c01210{left:74.040253pt;}
.x26_c01210{left:74.999453pt;}
.x10_c01210{left:75.949853pt;}
.x4_c01210{left:76.891453pt;}
.x3a_c01210{left:104.431053pt;}
.x3b_c01210{left:111.946253pt;}
.x27_c01210{left:124.631453pt;}
.x5d_c01210{left:132.960653pt;}
.x3c_c01210{left:143.058653pt;}
.x11_c01210{left:144.594253pt;}
.x5_c01210{left:154.547053pt;}
.x55_c01210{left:162.392253pt;}
.x5e_c01210{left:163.417453pt;}
.xc_c01210{left:173.035853pt;}
.x1c_c01210{left:174.201853pt;}
.x28_c01210{left:183.661853pt;}
.x61_c01210{left:191.929453pt;}
.x6_c01210{left:193.086653pt;}
.x56_c01210{left:194.864253pt;}
.x24_c01210{left:203.021853pt;}
.x42_c01210{left:204.935853pt;}
.x29_c01210{left:205.956653pt;}
.x4e_c01210{left:211.874653pt;}
.x3d_c01210{left:213.001053pt;}
.x31_c01210{left:221.871453pt;}
.x12_c01210{left:222.914253pt;}
.x52_c01210{left:224.238653pt;}
.x1d_c01210{left:232.972653pt;}
.x47_c01210{left:241.557053pt;}
.x5a_c01210{left:242.577853pt;}
.x62_c01210{left:244.003453pt;}
.x37_c01210{left:245.239853pt;}
.x2f_c01210{left:251.751853pt;}
.x43_c01210{left:252.733053pt;}
.x2a_c01210{left:254.488653pt;}
.x13_c01210{left:262.303053pt;}
.xd_c01210{left:271.710253pt;}
.x48_c01210{left:282.177853pt;}
.x3e_c01210{left:283.348253pt;}
.x14_c01210{left:292.157053pt;}
.x25_c01210{left:293.534253pt;}
.x3f_c01210{left:300.842653pt;}
.x49_c01210{left:303.003053pt;}
.x57_c01210{left:311.657853pt;}
.x7_c01210{left:322.631453pt;}
.x1e_c01210{left:331.911053pt;}
.x2b_c01210{left:340.957453pt;}
.x8_c01210{left:342.484253pt;}
.xe_c01210{left:350.949853pt;}
.x15_c01210{left:352.203853pt;}
.x63_c01210{left:369.605853pt;}
.x4f_c01210{left:370.529853pt;}
.x9_c01210{left:372.329453pt;}
.x5f_c01210{left:381.864253pt;}
.x30_c01210{left:391.258253pt;}
.x1f_c01210{left:400.599453pt;}
.x16_c01210{left:401.791853pt;}
.x4a_c01210{left:403.323053pt;}
.xa_c01210{left:411.260653pt;}
.x38_c01210{left:420.021053pt;}
.x58_c01210{left:421.121053pt;}
.x17_c01210{left:431.593053pt;}
.x4b_c01210{left:439.926653pt;}
.x32_c01210{left:441.136653pt;}
.x40_c01210{left:449.030253pt;}
.x59_c01210{left:449.954253pt;}
.xf_c01210{left:451.190653pt;}
.x5b_c01210{left:460.386653pt;}
.x20_c01210{left:468.759853pt;}
.x33_c01210{left:469.780653pt;}
.x39_c01210{left:479.962253pt;}
.xb_c01210{left:489.866653pt;}
.x34_c01210{left:499.216653pt;}
.x53_c01210{left:508.408253pt;}
.x2c_c01210{left:509.829453pt;}
.x44_c01210{left:518.097053pt;}
.x18_c01210{left:519.918653pt;}
.x41_c01210{left:527.684653pt;}
.x2d_c01210{left:539.591053pt;}
.x21_c01210{left:547.700253pt;}
.x19_c01210{left:549.983853pt;}
.x60_c01210{left:557.195453pt;}
.x45_c01210{left:558.339453pt;}
.x4c_c01210{left:567.016253pt;}
.x35_c01210{left:568.754253pt;}
.x46_c01210{left:577.725853pt;}
.x50_c01210{left:588.074653pt;}
.x64_c01210{left:589.878653pt;}
.x22_c01210{left:597.710653pt;}
.x1a_c01210{left:605.991453pt;}
.x3_c01210{left:607.377453pt;}
.x36_c01210{left:608.675453pt;}
.x1b_c01210{left:617.607453pt;}
.x51_c01210{left:623.969853pt;}
.x23_c01210{left:627.445853pt;}
.x5c_c01210{left:631.753453pt;}
.x4d_c01210{left:637.477853pt;}
.x2e_c01210{left:658.901453pt;}
}





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

.ir_c01211:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01211{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01211;src:url('chunks/assets/font_3f1593bd49840897858b9541.woff2')format("woff");}.ff1_c01211{font-family:ff1_c01211;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01211;src:url('chunks/assets/font_5acf5e032a0eb2a1f3541fd0.woff2')format("woff");}.ff2_c01211{font-family:ff2_c01211;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01211;src:url('chunks/assets/font_19c37a195728792f68d1794f.woff2')format("woff");}.ff3_c01211{font-family:ff3_c01211;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01211;src:url('chunks/assets/font_9da3e571b2e779d6835e3f7a.woff2')format("woff");}.ff4_c01211{font-family:ff4_c01211;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m6f_c01211{transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);}
.m1_c01211{transform:matrix(0.152455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152455,0.000000,0.000000,0.250000,0,0);}
.m40_c01211{transform:matrix(0.186374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186374,0.000000,0.000000,0.250000,0,0);}
.m5c_c01211{transform:matrix(0.196428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196428,0.000000,0.000000,0.250000,0,0);}
.m2b_c01211{transform:matrix(0.203832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203832,0.000000,0.000000,0.250000,0,0);}
.m1a_c01211{transform:matrix(0.221579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221579,0.000000,0.000000,0.250000,0,0);}
.m29_c01211{transform:matrix(0.222837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222837,0.000000,0.000000,0.250000,0,0);}
.m61_c01211{transform:matrix(0.241334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241334,0.000000,0.000000,0.250000,0,0);}
.m4e_c01211{transform:matrix(0.243032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243032,0.000000,0.000000,0.250000,0,0);}
.m55_c01211{transform:matrix(0.244412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244412,0.000000,0.000000,0.250000,0,0);}
.m33_c01211{transform:matrix(0.246022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246022,0.000000,0.000000,0.250000,0,0);}
.m4d_c01211{transform:matrix(0.247173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247173,0.000000,0.000000,0.250000,0,0);}
.m0_c01211{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m18_c01211{transform:matrix(0.250533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250533,0.000000,0.000000,0.250000,0,0);}
.m60_c01211{transform:matrix(0.250800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250800,0.000000,0.000000,0.250000,0,0);}
.m4f_c01211{transform:matrix(0.251661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251661,0.000000,0.000000,0.250000,0,0);}
.m5d_c01211{transform:matrix(0.251985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251985,0.000000,0.000000,0.250000,0,0);}
.m39_c01211{transform:matrix(0.253413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253413,0.000000,0.000000,0.250000,0,0);}
.m35_c01211{transform:matrix(0.254968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254968,0.000000,0.000000,0.250000,0,0);}
.m27_c01211{transform:matrix(0.257887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257887,0.000000,0.000000,0.250000,0,0);}
.m1c_c01211{transform:matrix(0.258983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258983,0.000000,0.000000,0.250000,0,0);}
.m2_c01211{transform:matrix(0.259076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259076,0.000000,0.000000,0.250000,0,0);}
.m15_c01211{transform:matrix(0.262025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262025,0.000000,0.000000,0.250000,0,0);}
.m12_c01211{transform:matrix(0.264209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264209,0.000000,0.000000,0.250000,0,0);}
.m56_c01211{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m13_c01211{transform:matrix(0.265460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265460,0.000000,0.000000,0.250000,0,0);}
.m46_c01211{transform:matrix(0.265991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265991,0.000000,0.000000,0.250000,0,0);}
.m48_c01211{transform:matrix(0.269012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269012,0.000000,0.000000,0.250000,0,0);}
.m4_c01211{transform:matrix(0.269175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269175,0.000000,0.000000,0.250000,0,0);}
.m8_c01211{transform:matrix(0.269717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269717,0.000000,0.000000,0.250000,0,0);}
.m2f_c01211{transform:matrix(0.270287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270287,0.000000,0.000000,0.250000,0,0);}
.m6e_c01211{transform:matrix(0.272116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272116,0.000000,0.000000,0.250000,0,0);}
.m20_c01211{transform:matrix(0.273234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273234,0.000000,0.000000,0.250000,0,0);}
.m49_c01211{transform:matrix(0.276633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276633,0.000000,0.000000,0.250000,0,0);}
.m2d_c01211{transform:matrix(0.276718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276718,0.000000,0.000000,0.250000,0,0);}
.m69_c01211{transform:matrix(0.276916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276916,0.000000,0.000000,0.250000,0,0);}
.m57_c01211{transform:matrix(0.276921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276921,0.000000,0.000000,0.250000,0,0);}
.m52_c01211{transform:matrix(0.277664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277664,0.000000,0.000000,0.250000,0,0);}
.m45_c01211{transform:matrix(0.280034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280034,0.000000,0.000000,0.250000,0,0);}
.m5b_c01211{transform:matrix(0.281638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281638,0.000000,0.000000,0.250000,0,0);}
.m37_c01211{transform:matrix(0.282284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282284,0.000000,0.000000,0.250000,0,0);}
.me_c01211{transform:matrix(0.283022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283022,0.000000,0.000000,0.250000,0,0);}
.m4c_c01211{transform:matrix(0.283332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283332,0.000000,0.000000,0.250000,0,0);}
.m3_c01211{transform:matrix(0.283562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283562,0.000000,0.000000,0.250000,0,0);}
.m24_c01211{transform:matrix(0.285869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285869,0.000000,0.000000,0.250000,0,0);}
.m5e_c01211{transform:matrix(0.286183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286183,0.000000,0.000000,0.250000,0,0);}
.m43_c01211{transform:matrix(0.286452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286452,0.000000,0.000000,0.250000,0,0);}
.m32_c01211{transform:matrix(0.286479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286479,0.000000,0.000000,0.250000,0,0);}
.m28_c01211{transform:matrix(0.286873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286873,0.000000,0.000000,0.250000,0,0);}
.m30_c01211{transform:matrix(0.287933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287933,0.000000,0.000000,0.250000,0,0);}
.m4a_c01211{transform:matrix(0.287960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287960,0.000000,0.000000,0.250000,0,0);}
.m59_c01211{transform:matrix(0.287962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287962,0.000000,0.000000,0.250000,0,0);}
.m3f_c01211{transform:matrix(0.289207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289207,0.000000,0.000000,0.250000,0,0);}
.m6d_c01211{transform:matrix(0.290190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290190,0.000000,0.000000,0.250000,0,0);}
.m4b_c01211{transform:matrix(0.291518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291518,0.000000,0.000000,0.250000,0,0);}
.m68_c01211{transform:matrix(0.291830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291830,0.000000,0.000000,0.250000,0,0);}
.m58_c01211{transform:matrix(0.293704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293704,0.000000,0.000000,0.250000,0,0);}
.m6b_c01211{transform:matrix(0.294936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294936,0.000000,0.000000,0.250000,0,0);}
.m62_c01211{transform:matrix(0.294991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294991,0.000000,0.000000,0.250000,0,0);}
.mf_c01211{transform:matrix(0.296714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296714,0.000000,0.000000,0.250000,0,0);}
.m6c_c01211{transform:matrix(0.297256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297256,0.000000,0.000000,0.250000,0,0);}
.m3c_c01211{transform:matrix(0.298188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298188,0.000000,0.000000,0.250000,0,0);}
.m65_c01211{transform:matrix(0.298839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298839,0.000000,0.000000,0.250000,0,0);}
.m16_c01211{transform:matrix(0.299765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299765,0.000000,0.000000,0.250000,0,0);}
.m64_c01211{transform:matrix(0.299830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299830,0.000000,0.000000,0.250000,0,0);}
.m6a_c01211{transform:matrix(0.300385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300385,0.000000,0.000000,0.250000,0,0);}
.m3a_c01211{transform:matrix(0.300678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300678,0.000000,0.000000,0.250000,0,0);}
.m7_c01211{transform:matrix(0.302517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302517,0.000000,0.000000,0.250000,0,0);}
.m2c_c01211{transform:matrix(0.303328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303328,0.000000,0.000000,0.250000,0,0);}
.m47_c01211{transform:matrix(0.303717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303717,0.000000,0.000000,0.250000,0,0);}
.m54_c01211{transform:matrix(0.304470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304470,0.000000,0.000000,0.250000,0,0);}
.m22_c01211{transform:matrix(0.304593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304593,0.000000,0.000000,0.250000,0,0);}
.m17_c01211{transform:matrix(0.308208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308208,0.000000,0.000000,0.250000,0,0);}
.m5a_c01211{transform:matrix(0.309236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309236,0.000000,0.000000,0.250000,0,0);}
.m23_c01211{transform:matrix(0.309530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309530,0.000000,0.000000,0.250000,0,0);}
.m53_c01211{transform:matrix(0.309822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309822,0.000000,0.000000,0.250000,0,0);}
.m25_c01211{transform:matrix(0.311359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311359,0.000000,0.000000,0.250000,0,0);}
.m9_c01211{transform:matrix(0.311993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311993,0.000000,0.000000,0.250000,0,0);}
.m1d_c01211{transform:matrix(0.312212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312212,0.000000,0.000000,0.250000,0,0);}
.m66_c01211{transform:matrix(0.314140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314140,0.000000,0.000000,0.250000,0,0);}
.m3e_c01211{transform:matrix(0.314240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314240,0.000000,0.000000,0.250000,0,0);}
.m50_c01211{transform:matrix(0.314412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314412,0.000000,0.000000,0.250000,0,0);}
.m36_c01211{transform:matrix(0.317004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317004,0.000000,0.000000,0.250000,0,0);}
.m38_c01211{transform:matrix(0.317186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317186,0.000000,0.000000,0.250000,0,0);}
.m1b_c01211{transform:matrix(0.317818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317818,0.000000,0.000000,0.250000,0,0);}
.m51_c01211{transform:matrix(0.318796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318796,0.000000,0.000000,0.250000,0,0);}
.md_c01211{transform:matrix(0.318839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318839,0.000000,0.000000,0.250000,0,0);}
.m67_c01211{transform:matrix(0.319272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319272,0.000000,0.000000,0.250000,0,0);}
.m1e_c01211{transform:matrix(0.319338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319338,0.000000,0.000000,0.250000,0,0);}
.m63_c01211{transform:matrix(0.319538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319538,0.000000,0.000000,0.250000,0,0);}
.m34_c01211{transform:matrix(0.321857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321857,0.000000,0.000000,0.250000,0,0);}
.m6_c01211{transform:matrix(0.321907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321907,0.000000,0.000000,0.250000,0,0);}
.m2a_c01211{transform:matrix(0.322142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322142,0.000000,0.000000,0.250000,0,0);}
.m3b_c01211{transform:matrix(0.324843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324843,0.000000,0.000000,0.250000,0,0);}
.m41_c01211{transform:matrix(0.325895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325895,0.000000,0.000000,0.250000,0,0);}
.mb_c01211{transform:matrix(0.326246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326246,0.000000,0.000000,0.250000,0,0);}
.m42_c01211{transform:matrix(0.327377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327377,0.000000,0.000000,0.250000,0,0);}
.m1f_c01211{transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);}
.m31_c01211{transform:matrix(0.328913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328913,0.000000,0.000000,0.250000,0,0);}
.m26_c01211{transform:matrix(0.332037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332037,0.000000,0.000000,0.250000,0,0);}
.mc_c01211{transform:matrix(0.336689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336689,0.000000,0.000000,0.250000,0,0);}
.m11_c01211{transform:matrix(0.336982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336982,0.000000,0.000000,0.250000,0,0);}
.ma_c01211{transform:matrix(0.339452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339452,0.000000,0.000000,0.250000,0,0);}
.m5f_c01211{transform:matrix(0.340923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340923,0.000000,0.000000,0.250000,0,0);}
.m3d_c01211{transform:matrix(0.343549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343549,0.000000,0.000000,0.250000,0,0);}
.m14_c01211{transform:matrix(0.364409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364409,0.000000,0.000000,0.250000,0,0);}
.m44_c01211{transform:matrix(0.364969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364969,0.000000,0.000000,0.250000,0,0);}
.m21_c01211{transform:matrix(0.366821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366821,0.000000,0.000000,0.250000,0,0);}
.m5_c01211{transform:matrix(0.371973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371973,0.000000,0.000000,0.250000,0,0);}
.m2e_c01211{transform:matrix(0.379057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379057,0.000000,0.000000,0.250000,0,0);}
.m19_c01211{transform:matrix(0.379515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379515,0.000000,0.000000,0.250000,0,0);}
.m10_c01211{transform:matrix(0.402725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402725,0.000000,0.000000,0.250000,0,0);}
.v1_c01211{vertical-align:-2.860704px;}
.v0_c01211{vertical-align:0.000000px;}
.v2_c01211{vertical-align:45.619200px;}
.ls14_c01211{letter-spacing:-2.869027px;}
.lsc_c01211{letter-spacing:-2.626477px;}
.ls9_c01211{letter-spacing:-2.348821px;}
.ls16_c01211{letter-spacing:-1.838534px;}
.ls7_c01211{letter-spacing:0.000000px;}
.ls17_c01211{letter-spacing:1.125633px;}
.lsf_c01211{letter-spacing:1.405820px;}
.ls12_c01211{letter-spacing:1.523357px;}
.lse_c01211{letter-spacing:1.632609px;}
.ls0_c01211{letter-spacing:1.842410px;}
.ls1_c01211{letter-spacing:2.567149px;}
.ls13_c01211{letter-spacing:3.279344px;}
.ls19_c01211{letter-spacing:3.405402px;}
.lsd_c01211{letter-spacing:3.474900px;}
.lsa_c01211{letter-spacing:3.663000px;}
.ls6_c01211{letter-spacing:3.752110px;}
.ls2_c01211{letter-spacing:3.763406px;}
.ls3_c01211{letter-spacing:3.894383px;}
.ls8_c01211{letter-spacing:4.121410px;}
.ls1a_c01211{letter-spacing:4.197610px;}
.ls15_c01211{letter-spacing:4.217400px;}
.lsb_c01211{letter-spacing:4.365900px;}
.ls5_c01211{letter-spacing:5.306400px;}
.ls1b_c01211{letter-spacing:31.363200px;}
.ls11_c01211{letter-spacing:52.747398px;}
.ls18_c01211{letter-spacing:54.172998px;}
.ls10_c01211{letter-spacing:58.449798px;}
.ls4_c01211{letter-spacing:61.300998px;}
.sc__c01211{text-shadow:none;}
.sc0_c01211{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01211{-webkit-text-stroke:0px transparent;}
.sc0_c01211{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01211{word-spacing:-24.396649px;}
.ws1_c01211{word-spacing:0.000000px;}
._0_c01211{margin-left:-17.244909px;}
._2_c01211{margin-left:-3.091849px;}
._3_c01211{width:1436.224165px;}
._1_c01211{width:1983.333132px;}
.fc0_c01211{color:transparent;}
.fsd_c01211{font-size:22.176000px;}
.fs14_c01211{font-size:31.363200px;}
.fs13_c01211{font-size:32.868000px;}
.fs9_c01211{font-size:33.264000px;}
.fs11_c01211{font-size:39.204000px;}
.fsa_c01211{font-size:52.747398px;}
.fse_c01211{font-size:54.172998px;}
.fs15_c01211{font-size:54.846198px;}
.fs8_c01211{font-size:58.449798px;}
.fs1_c01211{font-size:61.300998px;}
.fs4_c01211{font-size:62.568000px;}
.fs12_c01211{font-size:66.528000px;}
.fs7_c01211{font-size:68.310000px;}
.fs6_c01211{font-size:69.498000px;}
.fs5_c01211{font-size:73.260000px;}
.fs3_c01211{font-size:75.042198px;}
.fs10_c01211{font-size:78.804000px;}
.fsb_c01211{font-size:81.972198px;}
.fsf_c01211{font-size:83.952198px;}
.fsc_c01211{font-size:84.348000px;}
.fs0_c01211{font-size:87.318000px;}
.fs2_c01211{font-size:106.128000px;}
.y0_c01211{bottom:0.000000px;}
.y1_c01211{bottom:76.500000px;}
.y1b_c01211{bottom:84.735135px;}
.y1a_c01211{bottom:95.422185px;}
.y19_c01211{bottom:96.852735px;}
.y18_c01211{bottom:119.662335px;}
.y17_c01211{bottom:128.923785px;}
.y16_c01211{bottom:161.361135px;}
.y15_c01211{bottom:225.513135px;}
.y14_c01211{bottom:257.589135px;}
.y13_c01211{bottom:291.090735px;}
.y12_c01211{bottom:321.028335px;}
.y11_c01211{bottom:384.111135px;}
.y1c_c01211{bottom:410.841135px;}
.y10_c01211{bottom:415.830735px;}
.yf_c01211{bottom:478.552185px;}
.ye_c01211{bottom:511.345935px;}
.yd_c01211{bottom:537.714585px;}
.yc_c01211{bottom:574.780185px;}
.ya_c01211{bottom:605.430585px;}
.yb_c01211{bottom:607.212585px;}
.y9_c01211{bottom:669.582585px;}
.y8_c01211{bottom:701.663535px;}
.y7_c01211{bottom:733.378185px;}
.y6_c01211{bottom:796.822335px;}
.y5_c01211{bottom:829.254735px;}
.y4_c01211{bottom:892.688985px;}
.y3_c01211{bottom:925.839135px;}
.y2_c01211{bottom:1061.978985px;}
.h16_c01211{height:20.887891px;}
.hf_c01211{height:23.128875px;}
.h15_c01211{height:34.280297px;}
.hb_c01211{height:34.693313px;}
.hc_c01211{height:35.129767px;}
.h10_c01211{height:36.079217px;}
.h13_c01211{height:38.476582px;}
.ha_c01211{height:38.927565px;}
.h3_c01211{height:40.826465px;}
.h17_c01211{height:57.202871px;}
.h6_c01211{height:65.256469px;}
.h9_c01211{height:67.042529px;}
.h8_c01211{height:68.208486px;}
.h7_c01211{height:71.900684px;}
.h5_c01211{height:73.649813px;}
.h12_c01211{height:77.341816px;}
.hd_c01211{height:80.451229px;}
.h11_c01211{height:82.353499px;}
.he_c01211{height:82.782949px;}
.h2_c01211{height:85.697842px;}
.h4_c01211{height:104.158828px;}
.h14_c01211{height:115.005825px;}
.h1_c01211{height:1110.000000px;}
.h0_c01211{height:1263.000000px;}
.w1_c01211{width:775.500000px;}
.w0_c01211{width:892.500000px;}
.x0_c01211{left:0.000000px;}
.x1_c01211{left:58.500000px;}
.x41_c01211{left:87.928485px;}
.x1c_c01211{left:89.007585px;}
.x3_c01211{left:90.512385px;}
.x12_c01211{left:91.710285px;}
.x1d_c01211{left:164.524785px;}
.x3c_c01211{left:166.019685px;}
.x4_c01211{left:187.888785px;}
.x42_c01211{left:198.333285px;}
.xc_c01211{left:199.496535px;}
.x3d_c01211{left:210.010335px;}
.x40_c01211{left:213.029835px;}
.x30_c01211{left:220.811235px;}
.x36_c01211{left:221.910135px;}
.x29_c01211{left:231.651735px;}
.x1e_c01211{left:235.190985px;}
.x5_c01211{left:243.640635px;}
.x3a_c01211{left:253.644585px;}
.x43_c01211{left:265.455285px;}
.xd_c01211{left:266.732385px;}
.x37_c01211{left:268.549035px;}
.x13_c01211{left:276.429435px;}
.x2b_c01211{left:277.929285px;}
.x47_c01211{left:287.547135px;}
.x1f_c01211{left:288.695535px;}
.xe_c01211{left:300.689385px;}
.x46_c01211{left:309.643935px;}
.x14_c01211{left:312.227835px;}
.x34_c01211{left:322.058535px;}
.x6_c01211{left:333.379185px;}
.x3b_c01211{left:343.541535px;}
.x1a_c01211{left:354.193935px;}
.x20_c01211{left:356.149185px;}
.xf_c01211{left:364.900785px;}
.x7_c01211{left:365.960085px;}
.x10_c01211{left:377.647035px;}
.x21_c01211{left:388.037085px;}
.x2c_c01211{left:399.035985px;}
.x25_c01211{left:400.501185px;}
.x35_c01211{left:409.742835px;}
.x15_c01211{left:420.820935px;}
.x1b_c01211{left:422.771235px;}
.x22_c01211{left:432.740535px;}
.x8_c01211{left:443.447385px;}
.x38_c01211{left:444.917535px;}
.x11_c01211{left:454.342335px;}
.x31_c01211{left:456.228285px;}
.x44_c01211{left:465.747135px;}
.x16_c01211{left:477.146985px;}
.x23_c01211{left:499.793235px;}
.x26_c01211{left:509.727885px;}
.x3e_c01211{left:520.934685px;}
.x24_c01211{left:532.309785px;}
.x2d_c01211{left:542.680035px;}
.x32_c01211{left:543.823485px;}
.x9_c01211{left:566.197485px;}
.x2a_c01211{left:577.597335px;}
.x33_c01211{left:587.294385px;}
.x39_c01211{left:620.023785px;}
.x17_c01211{left:621.706785px;}
.x2e_c01211{left:631.829535px;}
.x27_c01211{left:640.759335px;}
.x3f_c01211{left:642.877935px;}
.x18_c01211{left:654.530235px;}
.xa_c01211{left:666.954735px;}
.x2_c01211{left:677.240835px;}
.x19_c01211{left:688.348635px;}
.x28_c01211{left:700.753335px;}
.x45_c01211{left:703.376835px;}
.x2f_c01211{left:704.817285px;}
.x48_c01211{left:708.346635px;}
.xb_c01211{left:710.504835px;}
.x49_c01211{left:759.257385px;}
@media print{
.v1_c01211{vertical-align:-2.542848pt;}
.v0_c01211{vertical-align:0.000000pt;}
.v2_c01211{vertical-align:40.550400pt;}
.ls14_c01211{letter-spacing:-2.550246pt;}
.lsc_c01211{letter-spacing:-2.334646pt;}
.ls9_c01211{letter-spacing:-2.087841pt;}
.ls16_c01211{letter-spacing:-1.634252pt;}
.ls7_c01211{letter-spacing:0.000000pt;}
.ls17_c01211{letter-spacing:1.000563pt;}
.lsf_c01211{letter-spacing:1.249618pt;}
.ls12_c01211{letter-spacing:1.354095pt;}
.lse_c01211{letter-spacing:1.451208pt;}
.ls0_c01211{letter-spacing:1.637698pt;}
.ls1_c01211{letter-spacing:2.281910pt;}
.ls13_c01211{letter-spacing:2.914972pt;}
.ls19_c01211{letter-spacing:3.027024pt;}
.lsd_c01211{letter-spacing:3.088800pt;}
.lsa_c01211{letter-spacing:3.256000pt;}
.ls6_c01211{letter-spacing:3.335209pt;}
.ls2_c01211{letter-spacing:3.345250pt;}
.ls3_c01211{letter-spacing:3.461674pt;}
.ls8_c01211{letter-spacing:3.663475pt;}
.ls1a_c01211{letter-spacing:3.731209pt;}
.ls15_c01211{letter-spacing:3.748800pt;}
.lsb_c01211{letter-spacing:3.880800pt;}
.ls5_c01211{letter-spacing:4.716800pt;}
.ls1b_c01211{letter-spacing:27.878400pt;}
.ls11_c01211{letter-spacing:46.886576pt;}
.ls18_c01211{letter-spacing:48.153776pt;}
.ls10_c01211{letter-spacing:51.955376pt;}
.ls4_c01211{letter-spacing:54.489776pt;}
.ws0_c01211{word-spacing:-21.685910pt;}
.ws1_c01211{word-spacing:0.000000pt;}
._0_c01211{margin-left:-15.328808pt;}
._2_c01211{margin-left:-2.748310pt;}
._3_c01211{width:1276.643702pt;}
._1_c01211{width:1762.962784pt;}
.fsd_c01211{font-size:19.712000pt;}
.fs14_c01211{font-size:27.878400pt;}
.fs13_c01211{font-size:29.216000pt;}
.fs9_c01211{font-size:29.568000pt;}
.fs11_c01211{font-size:34.848000pt;}
.fsa_c01211{font-size:46.886576pt;}
.fse_c01211{font-size:48.153776pt;}
.fs15_c01211{font-size:48.752176pt;}
.fs8_c01211{font-size:51.955376pt;}
.fs1_c01211{font-size:54.489776pt;}
.fs4_c01211{font-size:55.616000pt;}
.fs12_c01211{font-size:59.136000pt;}
.fs7_c01211{font-size:60.720000pt;}
.fs6_c01211{font-size:61.776000pt;}
.fs5_c01211{font-size:65.120000pt;}
.fs3_c01211{font-size:66.704176pt;}
.fs10_c01211{font-size:70.048000pt;}
.fsb_c01211{font-size:72.864176pt;}
.fsf_c01211{font-size:74.624176pt;}
.fsc_c01211{font-size:74.976000pt;}
.fs0_c01211{font-size:77.616000pt;}
.fs2_c01211{font-size:94.336000pt;}
.y0_c01211{bottom:0.000000pt;}
.y1_c01211{bottom:68.000000pt;}
.y1b_c01211{bottom:75.320120pt;}
.y1a_c01211{bottom:84.819720pt;}
.y19_c01211{bottom:86.091320pt;}
.y18_c01211{bottom:106.366520pt;}
.y17_c01211{bottom:114.598920pt;}
.y16_c01211{bottom:143.432120pt;}
.y15_c01211{bottom:200.456120pt;}
.y14_c01211{bottom:228.968120pt;}
.y13_c01211{bottom:258.747320pt;}
.y12_c01211{bottom:285.358520pt;}
.y11_c01211{bottom:341.432120pt;}
.y1c_c01211{bottom:365.192120pt;}
.y10_c01211{bottom:369.627320pt;}
.yf_c01211{bottom:425.379720pt;}
.ye_c01211{bottom:454.529720pt;}
.yd_c01211{bottom:477.968520pt;}
.yc_c01211{bottom:510.915720pt;}
.ya_c01211{bottom:538.160520pt;}
.yb_c01211{bottom:539.744520pt;}
.y9_c01211{bottom:595.184520pt;}
.y8_c01211{bottom:623.700920pt;}
.y7_c01211{bottom:651.891720pt;}
.y6_c01211{bottom:708.286520pt;}
.y5_c01211{bottom:737.115320pt;}
.y4_c01211{bottom:793.501320pt;}
.y3_c01211{bottom:822.968120pt;}
.y2_c01211{bottom:943.981320pt;}
.h16_c01211{height:18.567014pt;}
.hf_c01211{height:20.559000pt;}
.h15_c01211{height:30.471375pt;}
.hb_c01211{height:30.838500pt;}
.hc_c01211{height:31.226460pt;}
.h10_c01211{height:32.070415pt;}
.h13_c01211{height:34.201406pt;}
.ha_c01211{height:34.602280pt;}
.h3_c01211{height:36.290191pt;}
.h17_c01211{height:50.846996pt;}
.h6_c01211{height:58.005750pt;}
.h9_c01211{height:59.593359pt;}
.h8_c01211{height:60.629766pt;}
.h7_c01211{height:63.911719pt;}
.h5_c01211{height:65.466501pt;}
.h12_c01211{height:68.748281pt;}
.hd_c01211{height:71.512204pt;}
.h11_c01211{height:73.203110pt;}
.he_c01211{height:73.584844pt;}
.h2_c01211{height:76.175859pt;}
.h4_c01211{height:92.585625pt;}
.h14_c01211{height:102.227400pt;}
.h1_c01211{height:986.666667pt;}
.h0_c01211{height:1122.666667pt;}
.w1_c01211{width:689.333333pt;}
.w0_c01211{width:793.333333pt;}
.x0_c01211{left:0.000000pt;}
.x1_c01211{left:52.000000pt;}
.x41_c01211{left:78.158653pt;}
.x1c_c01211{left:79.117853pt;}
.x3_c01211{left:80.455453pt;}
.x12_c01211{left:81.520253pt;}
.x1d_c01211{left:146.244253pt;}
.x3c_c01211{left:147.573053pt;}
.x4_c01211{left:167.012253pt;}
.x42_c01211{left:176.296253pt;}
.xc_c01211{left:177.330253pt;}
.x3d_c01211{left:186.675853pt;}
.x40_c01211{left:189.359853pt;}
.x30_c01211{left:196.276653pt;}
.x36_c01211{left:197.253453pt;}
.x29_c01211{left:205.912653pt;}
.x1e_c01211{left:209.058653pt;}
.x5_c01211{left:216.569453pt;}
.x3a_c01211{left:225.461853pt;}
.x43_c01211{left:235.960253pt;}
.xd_c01211{left:237.095453pt;}
.x37_c01211{left:238.710253pt;}
.x13_c01211{left:245.715053pt;}
.x2b_c01211{left:247.048253pt;}
.x47_c01211{left:255.597453pt;}
.x1f_c01211{left:256.618253pt;}
.xe_c01211{left:267.279453pt;}
.x46_c01211{left:275.239053pt;}
.x14_c01211{left:277.535853pt;}
.x34_c01211{left:286.274253pt;}
.x6_c01211{left:296.337053pt;}
.x3b_c01211{left:305.370253pt;}
.x1a_c01211{left:314.839053pt;}
.x20_c01211{left:316.577053pt;}
.xf_c01211{left:324.356253pt;}
.x7_c01211{left:325.297853pt;}
.x10_c01211{left:335.686253pt;}
.x21_c01211{left:344.921853pt;}
.x2c_c01211{left:354.698653pt;}
.x25_c01211{left:356.001053pt;}
.x35_c01211{left:364.215853pt;}
.x15_c01211{left:374.063053pt;}
.x1b_c01211{left:375.796653pt;}
.x22_c01211{left:384.658253pt;}
.x8_c01211{left:394.175453pt;}
.x38_c01211{left:395.482253pt;}
.x11_c01211{left:403.859853pt;}
.x31_c01211{left:405.536253pt;}
.x44_c01211{left:413.997453pt;}
.x16_c01211{left:424.130653pt;}
.x23_c01211{left:444.260653pt;}
.x26_c01211{left:453.091453pt;}
.x3e_c01211{left:463.053053pt;}
.x24_c01211{left:473.164253pt;}
.x2d_c01211{left:482.382253pt;}
.x32_c01211{left:483.398653pt;}
.x9_c01211{left:503.286653pt;}
.x2a_c01211{left:513.419853pt;}
.x33_c01211{left:522.039453pt;}
.x39_c01211{left:551.132253pt;}
.x17_c01211{left:552.628253pt;}
.x2e_c01211{left:561.626253pt;}
.x27_c01211{left:569.563853pt;}
.x3f_c01211{left:571.447053pt;}
.x18_c01211{left:581.804653pt;}
.xa_c01211{left:592.848653pt;}
.x2_c01211{left:601.991853pt;}
.x19_c01211{left:611.865453pt;}
.x28_c01211{left:622.891853pt;}
.x45_c01211{left:625.223853pt;}
.x2f_c01211{left:626.504253pt;}
.x48_c01211{left:629.641453pt;}
.xb_c01211{left:631.559853pt;}
.x49_c01211{left:674.895453pt;}
}





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

.ir_c01212:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01212{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01212;src:url('chunks/assets/font_9e648b75cac953dd7873cd3e.woff2')format("woff");}.ff1_c01212{font-family:ff1_c01212;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01212;src:url('chunks/assets/font_ac4fe295f3b9f64d30506c4c.woff2')format("woff");}.ff2_c01212{font-family:ff2_c01212;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01212;src:url('chunks/assets/font_b883f14ef35e25bee28a4174.woff2')format("woff");}.ff3_c01212{font-family:ff3_c01212;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01212;src:url('chunks/assets/font_b6d56cf8432851ac1d721408.woff2')format("woff");}.ff4_c01212{font-family:ff4_c01212;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c01212{transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);}
.m38_c01212{transform:matrix(0.183334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183334,0.000000,0.000000,0.250000,0,0);}
.m6f_c01212{transform:matrix(0.189474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189474,0.000000,0.000000,0.250000,0,0);}
.m72_c01212{transform:matrix(0.195723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195723,0.000000,0.000000,0.250000,0,0);}
.m10_c01212{transform:matrix(0.207805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207805,0.000000,0.000000,0.250000,0,0);}
.m50_c01212{transform:matrix(0.212297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212297,0.000000,0.000000,0.250000,0,0);}
.m2a_c01212{transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);}
.m19_c01212{transform:matrix(0.215291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215291,0.000000,0.000000,0.250000,0,0);}
.m11_c01212{transform:matrix(0.218165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218165,0.000000,0.000000,0.250000,0,0);}
.m42_c01212{transform:matrix(0.223027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223027,0.000000,0.000000,0.250000,0,0);}
.m39_c01212{transform:matrix(0.224244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224244,0.000000,0.000000,0.250000,0,0);}
.m55_c01212{transform:matrix(0.225178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225178,0.000000,0.000000,0.250000,0,0);}
.m1f_c01212{transform:matrix(0.234657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234657,0.000000,0.000000,0.250000,0,0);}
.m68_c01212{transform:matrix(0.236327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236327,0.000000,0.000000,0.250000,0,0);}
.m3_c01212{transform:matrix(0.238897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238897,0.000000,0.000000,0.250000,0,0);}
.m6d_c01212{transform:matrix(0.241527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241527,0.000000,0.000000,0.250000,0,0);}
.m69_c01212{transform:matrix(0.243564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243564,0.000000,0.000000,0.250000,0,0);}
.m49_c01212{transform:matrix(0.245218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245218,0.000000,0.000000,0.250000,0,0);}
.m0_c01212{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01212{transform:matrix(0.253561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253561,0.000000,0.000000,0.250000,0,0);}
.m57_c01212{transform:matrix(0.254640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254640,0.000000,0.000000,0.250000,0,0);}
.m63_c01212{transform:matrix(0.254956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254956,0.000000,0.000000,0.250000,0,0);}
.m4b_c01212{transform:matrix(0.255291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255291,0.000000,0.000000,0.250000,0,0);}
.m1_c01212{transform:matrix(0.255910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255910,0.000000,0.000000,0.250000,0,0);}
.m5b_c01212{transform:matrix(0.257209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257209,0.000000,0.000000,0.250000,0,0);}
.m5_c01212{transform:matrix(0.257612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257612,0.000000,0.000000,0.250000,0,0);}
.m4d_c01212{transform:matrix(0.257705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257705,0.000000,0.000000,0.250000,0,0);}
.m35_c01212{transform:matrix(0.258090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258090,0.000000,0.000000,0.250000,0,0);}
.m6b_c01212{transform:matrix(0.258290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258290,0.000000,0.000000,0.250000,0,0);}
.m16_c01212{transform:matrix(0.259288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259288,0.000000,0.000000,0.250000,0,0);}
.m32_c01212{transform:matrix(0.260941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260941,0.000000,0.000000,0.250000,0,0);}
.m6a_c01212{transform:matrix(0.261424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261424,0.000000,0.000000,0.250000,0,0);}
.m37_c01212{transform:matrix(0.261505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261505,0.000000,0.000000,0.250000,0,0);}
.m3c_c01212{transform:matrix(0.261908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261908,0.000000,0.000000,0.250000,0,0);}
.m29_c01212{transform:matrix(0.264156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264156,0.000000,0.000000,0.250000,0,0);}
.m66_c01212{transform:matrix(0.265799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265799,0.000000,0.000000,0.250000,0,0);}
.m30_c01212{transform:matrix(0.266353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266353,0.000000,0.000000,0.250000,0,0);}
.m3d_c01212{transform:matrix(0.266914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266914,0.000000,0.000000,0.250000,0,0);}
.m4_c01212{transform:matrix(0.267203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267203,0.000000,0.000000,0.250000,0,0);}
.m23_c01212{transform:matrix(0.267471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267471,0.000000,0.000000,0.250000,0,0);}
.m67_c01212{transform:matrix(0.267594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267594,0.000000,0.000000,0.250000,0,0);}
.m28_c01212{transform:matrix(0.267729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267729,0.000000,0.000000,0.250000,0,0);}
.mf_c01212{transform:matrix(0.267859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267859,0.000000,0.000000,0.250000,0,0);}
.m71_c01212{transform:matrix(0.269121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269121,0.000000,0.000000,0.250000,0,0);}
.m4c_c01212{transform:matrix(0.269581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269581,0.000000,0.000000,0.250000,0,0);}
.m3e_c01212{transform:matrix(0.270031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270031,0.000000,0.000000,0.250000,0,0);}
.m5c_c01212{transform:matrix(0.270096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270096,0.000000,0.000000,0.250000,0,0);}
.m3b_c01212{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.m18_c01212{transform:matrix(0.271311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271311,0.000000,0.000000,0.250000,0,0);}
.m70_c01212{transform:matrix(0.273478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273478,0.000000,0.000000,0.250000,0,0);}
.m1c_c01212{transform:matrix(0.273554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273554,0.000000,0.000000,0.250000,0,0);}
.m31_c01212{transform:matrix(0.274139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274139,0.000000,0.000000,0.250000,0,0);}
.m3f_c01212{transform:matrix(0.275351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275351,0.000000,0.000000,0.250000,0,0);}
.m48_c01212{transform:matrix(0.275374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275374,0.000000,0.000000,0.250000,0,0);}
.m1d_c01212{transform:matrix(0.275404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275404,0.000000,0.000000,0.250000,0,0);}
.m41_c01212{transform:matrix(0.275683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275683,0.000000,0.000000,0.250000,0,0);}
.m40_c01212{transform:matrix(0.276442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276442,0.000000,0.000000,0.250000,0,0);}
.m54_c01212{transform:matrix(0.276656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276656,0.000000,0.000000,0.250000,0,0);}
.m52_c01212{transform:matrix(0.278018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278018,0.000000,0.000000,0.250000,0,0);}
.m44_c01212{transform:matrix(0.278962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278962,0.000000,0.000000,0.250000,0,0);}
.m4a_c01212{transform:matrix(0.280079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280079,0.000000,0.000000,0.250000,0,0);}
.m20_c01212{transform:matrix(0.282270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282270,0.000000,0.000000,0.250000,0,0);}
.m2f_c01212{transform:matrix(0.284726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284726,0.000000,0.000000,0.250000,0,0);}
.m64_c01212{transform:matrix(0.285819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285819,0.000000,0.000000,0.250000,0,0);}
.m22_c01212{transform:matrix(0.285856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285856,0.000000,0.000000,0.250000,0,0);}
.m1b_c01212{transform:matrix(0.286553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286553,0.000000,0.000000,0.250000,0,0);}
.m34_c01212{transform:matrix(0.286905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286905,0.000000,0.000000,0.250000,0,0);}
.m12_c01212{transform:matrix(0.287357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287357,0.000000,0.000000,0.250000,0,0);}
.m61_c01212{transform:matrix(0.287692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287692,0.000000,0.000000,0.250000,0,0);}
.m25_c01212{transform:matrix(0.288280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288280,0.000000,0.000000,0.250000,0,0);}
.m47_c01212{transform:matrix(0.288790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288790,0.000000,0.000000,0.250000,0,0);}
.m7_c01212{transform:matrix(0.289663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289663,0.000000,0.000000,0.250000,0,0);}
.me_c01212{transform:matrix(0.290772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290772,0.000000,0.000000,0.250000,0,0);}
.m24_c01212{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.m45_c01212{transform:matrix(0.291944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291944,0.000000,0.000000,0.250000,0,0);}
.m58_c01212{transform:matrix(0.293122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293122,0.000000,0.000000,0.250000,0,0);}
.m51_c01212{transform:matrix(0.293413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293413,0.000000,0.000000,0.250000,0,0);}
.m65_c01212{transform:matrix(0.293784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293784,0.000000,0.000000,0.250000,0,0);}
.m17_c01212{transform:matrix(0.294606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294606,0.000000,0.000000,0.250000,0,0);}
.mc_c01212{transform:matrix(0.295010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295010,0.000000,0.000000,0.250000,0,0);}
.m13_c01212{transform:matrix(0.296559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296559,0.000000,0.000000,0.250000,0,0);}
.m26_c01212{transform:matrix(0.299426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299426,0.000000,0.000000,0.250000,0,0);}
.m60_c01212{transform:matrix(0.300111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300111,0.000000,0.000000,0.250000,0,0);}
.m4e_c01212{transform:matrix(0.300522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300522,0.000000,0.000000,0.250000,0,0);}
.ma_c01212{transform:matrix(0.300546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300546,0.000000,0.000000,0.250000,0,0);}
.m8_c01212{transform:matrix(0.301206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301206,0.000000,0.000000,0.250000,0,0);}
.mb_c01212{transform:matrix(0.302354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302354,0.000000,0.000000,0.250000,0,0);}
.m1a_c01212{transform:matrix(0.304148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304148,0.000000,0.000000,0.250000,0,0);}
.m5a_c01212{transform:matrix(0.307163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307163,0.000000,0.000000,0.250000,0,0);}
.m21_c01212{transform:matrix(0.307753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307753,0.000000,0.000000,0.250000,0,0);}
.m14_c01212{transform:matrix(0.307965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307965,0.000000,0.000000,0.250000,0,0);}
.m46_c01212{transform:matrix(0.310400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310400,0.000000,0.000000,0.250000,0,0);}
.m2d_c01212{transform:matrix(0.311309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311309,0.000000,0.000000,0.250000,0,0);}
.m5d_c01212{transform:matrix(0.311906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311906,0.000000,0.000000,0.250000,0,0);}
.m27_c01212{transform:matrix(0.313379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313379,0.000000,0.000000,0.250000,0,0);}
.m6c_c01212{transform:matrix(0.313627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313627,0.000000,0.000000,0.250000,0,0);}
.m33_c01212{transform:matrix(0.315197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315197,0.000000,0.000000,0.250000,0,0);}
.m62_c01212{transform:matrix(0.316518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316518,0.000000,0.000000,0.250000,0,0);}
.m6_c01212{transform:matrix(0.316664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316664,0.000000,0.000000,0.250000,0,0);}
.m15_c01212{transform:matrix(0.316840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316840,0.000000,0.000000,0.250000,0,0);}
.md_c01212{transform:matrix(0.319864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319864,0.000000,0.000000,0.250000,0,0);}
.m59_c01212{transform:matrix(0.320685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320685,0.000000,0.000000,0.250000,0,0);}
.m36_c01212{transform:matrix(0.326390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326390,0.000000,0.000000,0.250000,0,0);}
.m4f_c01212{transform:matrix(0.326526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326526,0.000000,0.000000,0.250000,0,0);}
.m9_c01212{transform:matrix(0.329402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329402,0.000000,0.000000,0.250000,0,0);}
.m6e_c01212{transform:matrix(0.329422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329422,0.000000,0.000000,0.250000,0,0);}
.m2e_c01212{transform:matrix(0.332175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332175,0.000000,0.000000,0.250000,0,0);}
.m53_c01212{transform:matrix(0.345378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345378,0.000000,0.000000,0.250000,0,0);}
.m3a_c01212{transform:matrix(0.349237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349237,0.000000,0.000000,0.250000,0,0);}
.m43_c01212{transform:matrix(0.358079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358079,0.000000,0.000000,0.250000,0,0);}
.m5e_c01212{transform:matrix(0.371901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371901,0.000000,0.000000,0.250000,0,0);}
.m2c_c01212{transform:matrix(0.377509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377509,0.000000,0.000000,0.250000,0,0);}
.m56_c01212{transform:matrix(0.382026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382026,0.000000,0.000000,0.250000,0,0);}
.m2b_c01212{transform:matrix(0.383861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383861,0.000000,0.000000,0.250000,0,0);}
.m5f_c01212{transform:matrix(0.431353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431353,0.000000,0.000000,0.250000,0,0);}
.v1_c01212{vertical-align:-11.404800px;}
.v0_c01212{vertical-align:0.000000px;}
.ls5_c01212{letter-spacing:-2.799727px;}
.lsc_c01212{letter-spacing:-2.356200px;}
.ls11_c01212{letter-spacing:-1.127890px;}
.ls2_c01212{letter-spacing:0.000000px;}
.lsb_c01212{letter-spacing:1.831821px;}
.ls7_c01212{letter-spacing:2.215784px;}
.ls12_c01212{letter-spacing:2.255780px;}
.ls0_c01212{letter-spacing:3.135694px;}
.ls1_c01212{letter-spacing:3.167691px;}
.lsd_c01212{letter-spacing:3.366000px;}
.ls9_c01212{letter-spacing:3.425400px;}
.lse_c01212{letter-spacing:3.504610px;}
.ls10_c01212{letter-spacing:3.695640px;}
.lsf_c01212{letter-spacing:3.702610px;}
.ls6_c01212{letter-spacing:3.999610px;}
.ls3_c01212{letter-spacing:4.395610px;}
.ls4_c01212{letter-spacing:31.363200px;}
.ls8_c01212{letter-spacing:51.321798px;}
.ls13_c01212{letter-spacing:54.172998px;}
.lsa_c01212{letter-spacing:55.598598px;}
.sc__c01212{text-shadow:none;}
.sc0_c01212{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01212{-webkit-text-stroke:0px transparent;}
.sc0_c01212{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01212{word-spacing:-18.870160px;}
.ws1_c01212{word-spacing:0.000000px;}
._2_c01212{margin-left:-6.879249px;}
._5_c01212{margin-left:-2.159703px;}
._7_c01212{width:1.143168px;}
._3_c01212{width:7.920525px;}
._1_c01212{width:15.743184px;}
._4_c01212{width:27.182875px;}
._0_c01212{width:31.645944px;}
._6_c01212{width:1640.557195px;}
.fc0_c01212{color:transparent;}
.fs1_c01212{font-size:22.374000px;}
.fs0_c01212{font-size:22.572000px;}
.fs8_c01212{font-size:27.720000px;}
.fs11_c01212{font-size:28.314000px;}
.fs5_c01212{font-size:31.363200px;}
.fs13_c01212{font-size:33.264000px;}
.fs16_c01212{font-size:33.660000px;}
.fse_c01212{font-size:34.056198px;}
.fs4_c01212{font-size:34.650000px;}
.fs15_c01212{font-size:39.204000px;}
.fsa_c01212{font-size:51.321798px;}
.fs14_c01212{font-size:54.172998px;}
.fsd_c01212{font-size:55.598598px;}
.fs3_c01212{font-size:66.528000px;}
.fsf_c01212{font-size:67.320000px;}
.fsb_c01212{font-size:68.508000px;}
.fs10_c01212{font-size:70.092198px;}
.fs12_c01212{font-size:74.052198px;}
.fsc_c01212{font-size:74.844000px;}
.fs6_c01212{font-size:79.992198px;}
.fs7_c01212{font-size:81.180000px;}
.fs9_c01212{font-size:81.972198px;}
.fs2_c01212{font-size:87.912198px;}
.y0_c01212{bottom:0.000000px;}
.y23_c01212{bottom:67.266585px;}
.y1_c01212{bottom:76.500000px;}
.y22_c01212{bottom:97.921935px;}
.y21_c01212{bottom:105.762735px;}
.y20_c01212{bottom:138.546585px;}
.y1f_c01212{bottom:185.596335px;}
.y1e_c01212{bottom:201.634335px;}
.y1d_c01212{bottom:234.774585px;}
.y19_c01212{bottom:266.855535px;}
.y1c_c01212{bottom:267.206985px;}
.y1b_c01212{bottom:329.938335px;}
.y3_c01212{bottom:332.428185px;}
.y1a_c01212{bottom:361.657935px;}
.y18_c01212{bottom:393.372585px;}
.y17_c01212{bottom:424.740735px;}
.y16_c01212{bottom:487.467135px;}
.y15_c01212{bottom:515.979135px;}
.y13_c01212{bottom:519.894585px;}
.y14_c01212{bottom:520.255935px;}
.y12_c01212{bottom:582.625935px;}
.y11_c01212{bottom:615.414735px;}
.y10_c01212{bottom:646.421535px;}
.yf_c01212{bottom:679.566735px;}
.y2_c01212{bottom:705.222585px;}
.ye_c01212{bottom:709.147935px;}
.yd_c01212{bottom:741.218985px;}
.yc_c01212{bottom:780.071535px;}
.yb_c01212{bottom:804.306735px;}
.ya_c01212{bottom:836.021385px;}
.y9_c01212{bottom:899.816985px;}
.y8_c01212{bottom:932.254335px;}
.y7_c01212{bottom:956.128185px;}
.y6_c01212{bottom:966.463785px;}
.y5_c01212{bottom:979.299135px;}
.y4_c01212{bottom:1068.750585px;}
.h7_c01212{height:20.887891px;}
.h3_c01212{height:21.958857px;}
.h2_c01212{height:23.541891px;}
.ha_c01212{height:28.911094px;}
.h18_c01212{height:33.035449px;}
.hc_c01212{height:34.180317px;}
.h15_c01212{height:34.693313px;}
.h10_c01212{height:35.519550px;}
.h16_c01212{height:36.079217px;}
.h6_c01212{height:36.138867px;}
.hf_c01212{height:37.028666px;}
.h17_c01212{height:38.476582px;}
.h11_c01212{height:66.070898px;}
.hd_c01212{height:67.236855px;}
.h12_c01212{height:68.757434px;}
.h5_c01212{height:69.386625px;}
.h13_c01212{height:72.678183px;}
.h14_c01212{height:73.103972px;}
.he_c01212{height:73.455293px;}
.h8_c01212{height:78.507968px;}
.h9_c01212{height:79.673730px;}
.hb_c01212{height:80.451229px;}
.h4_c01212{height:86.281015px;}
.h1_c01212{height:1110.000000px;}
.h0_c01212{height:1263.000000px;}
.w1_c01212{width:775.500000px;}
.w0_c01212{width:892.500000px;}
.x0_c01212{left:0.000000px;}
.x2_c01212{left:55.802985px;}
.x1_c01212{left:58.500000px;}
.x3_c01212{left:68.326485px;}
.x4f_c01212{left:74.865435px;}
.x32_c01212{left:84.973335px;}
.x13_c01212{left:86.057385px;}
.x7_c01212{left:87.458235px;}
.x44_c01212{left:140.933085px;}
.x14_c01212{left:153.149685px;}
.x25_c01212{left:162.470535px;}
.x1f_c01212{left:185.879085px;}
.x43_c01212{left:195.303885px;}
.xf_c01212{left:196.571085px;}
.x8_c01212{left:207.545235px;}
.x33_c01212{left:218.291685px;}
.x48_c01212{left:228.889635px;}
.x39_c01212{left:229.978635px;}
.x29_c01212{left:241.071585px;}
.x1c_c01212{left:250.788435px;}
.x9_c01212{left:254.055435px;}
.x49_c01212{left:262.346685px;}
.x26_c01212{left:263.391135px;}
.x3b_c01212{left:265.118685px;}
.x3e_c01212{left:270.454785px;}
.x4d_c01212{left:272.528835px;}
.x15_c01212{left:273.588135px;}
.x3a_c01212{left:274.894935px;}
.x10_c01212{left:285.844335px;}
.x45_c01212{left:298.253985px;}
.x16_c01212{left:317.999535px;}
.x3f_c01212{left:320.499285px;}
.x53_c01212{left:329.325135px;}
.xa_c01212{left:330.805185px;}
.x1d_c01212{left:340.665585px;}
.x34_c01212{left:341.912985px;}
.x11_c01212{left:362.648535px;}
.x30_c01212{left:363.673185px;}
.x50_c01212{left:374.345385px;}
.x4a_c01212{left:386.071935px;}
.x17_c01212{left:396.268935px;}
.x40_c01212{left:397.645035px;}
.x2a_c01212{left:408.223185px;}
.x27_c01212{left:418.365735px;}
.x18_c01212{left:419.825985px;}
.x20_c01212{left:429.537885px;}
.x3c_c01212{left:438.952785px;}
.x2b_c01212{left:441.437685px;}
.xb_c01212{left:452.392035px;}
.x35_c01212{left:463.811685px;}
.x31_c01212{left:474.711585px;}
.xc_c01212{left:484.987785px;}
.x4b_c01212{left:486.878685px;}
.x51_c01212{left:496.338135px;}
.x28_c01212{left:497.654835px;}
.x21_c01212{left:519.063585px;}
.x2c_c01212{left:530.611935px;}
.x38_c01212{left:533.309685px;}
.x46_c01212{left:538.106235px;}
.xd_c01212{left:541.937535px;}
.x22_c01212{left:553.079985px;}
.x3d_c01212{left:561.910785px;}
.x19_c01212{left:584.685735px;}
.x4c_c01212{left:594.734235px;}
.x36_c01212{left:605.762835px;}
.x2d_c01212{left:607.777485px;}
.x23_c01212{left:615.855885px;}
.x12_c01212{left:617.588385px;}
.x47_c01212{left:629.151585px;}
.x2e_c01212{left:639.848535px;}
.x41_c01212{left:650.352435px;}
.xe_c01212{left:652.560135px;}
.x4_c01212{left:662.618535px;}
.x24_c01212{left:673.889685px;}
.x2f_c01212{left:685.066785px;}
.x1a_c01212{left:695.050935px;}
.x1e_c01212{left:703.767885px;}
.x5_c01212{left:705.752835px;}
.x6_c01212{left:707.272485px;}
.x54_c01212{left:709.089135px;}
.x52_c01212{left:716.251785px;}
.x1b_c01212{left:729.295035px;}
.x42_c01212{left:730.898835px;}
.x4e_c01212{left:734.398485px;}
.x37_c01212{left:749.075235px;}
@media print{
.v1_c01212{vertical-align:-10.137600pt;}
.v0_c01212{vertical-align:0.000000pt;}
.ls5_c01212{letter-spacing:-2.488646pt;}
.lsc_c01212{letter-spacing:-2.094400pt;}
.ls11_c01212{letter-spacing:-1.002569pt;}
.ls2_c01212{letter-spacing:0.000000pt;}
.lsb_c01212{letter-spacing:1.628286pt;}
.ls7_c01212{letter-spacing:1.969586pt;}
.ls12_c01212{letter-spacing:2.005138pt;}
.ls0_c01212{letter-spacing:2.787284pt;}
.ls1_c01212{letter-spacing:2.815725pt;}
.lsd_c01212{letter-spacing:2.992000pt;}
.ls9_c01212{letter-spacing:3.044800pt;}
.lse_c01212{letter-spacing:3.115209pt;}
.ls10_c01212{letter-spacing:3.285013pt;}
.lsf_c01212{letter-spacing:3.291209pt;}
.ls6_c01212{letter-spacing:3.555209pt;}
.ls3_c01212{letter-spacing:3.907209pt;}
.ls4_c01212{letter-spacing:27.878400pt;}
.ls8_c01212{letter-spacing:45.619376pt;}
.ls13_c01212{letter-spacing:48.153776pt;}
.lsa_c01212{letter-spacing:49.420976pt;}
.ws0_c01212{word-spacing:-16.773475pt;}
.ws1_c01212{word-spacing:0.000000pt;}
._2_c01212{margin-left:-6.114888pt;}
._5_c01212{margin-left:-1.919736pt;}
._7_c01212{width:1.016149pt;}
._3_c01212{width:7.040466pt;}
._1_c01212{width:13.993941pt;}
._4_c01212{width:24.162556pt;}
._0_c01212{width:28.129728pt;}
._6_c01212{width:1458.273062pt;}
.fs1_c01212{font-size:19.888000pt;}
.fs0_c01212{font-size:20.064000pt;}
.fs8_c01212{font-size:24.640000pt;}
.fs11_c01212{font-size:25.168000pt;}
.fs5_c01212{font-size:27.878400pt;}
.fs13_c01212{font-size:29.568000pt;}
.fs16_c01212{font-size:29.920000pt;}
.fse_c01212{font-size:30.272176pt;}
.fs4_c01212{font-size:30.800000pt;}
.fs15_c01212{font-size:34.848000pt;}
.fsa_c01212{font-size:45.619376pt;}
.fs14_c01212{font-size:48.153776pt;}
.fsd_c01212{font-size:49.420976pt;}
.fs3_c01212{font-size:59.136000pt;}
.fsf_c01212{font-size:59.840000pt;}
.fsb_c01212{font-size:60.896000pt;}
.fs10_c01212{font-size:62.304176pt;}
.fs12_c01212{font-size:65.824176pt;}
.fsc_c01212{font-size:66.528000pt;}
.fs6_c01212{font-size:71.104176pt;}
.fs7_c01212{font-size:72.160000pt;}
.fs9_c01212{font-size:72.864176pt;}
.fs2_c01212{font-size:78.144176pt;}
.y0_c01212{bottom:0.000000pt;}
.y23_c01212{bottom:59.792520pt;}
.y1_c01212{bottom:68.000000pt;}
.y22_c01212{bottom:87.041720pt;}
.y21_c01212{bottom:94.011320pt;}
.y20_c01212{bottom:123.152520pt;}
.y1f_c01212{bottom:164.974520pt;}
.y1e_c01212{bottom:179.230520pt;}
.y1d_c01212{bottom:208.688520pt;}
.y19_c01212{bottom:237.204920pt;}
.y1c_c01212{bottom:237.517320pt;}
.y1b_c01212{bottom:293.278520pt;}
.y3_c01212{bottom:295.491720pt;}
.y1a_c01212{bottom:321.473720pt;}
.y18_c01212{bottom:349.664520pt;}
.y17_c01212{bottom:377.547320pt;}
.y16_c01212{bottom:433.304120pt;}
.y15_c01212{bottom:458.648120pt;}
.y13_c01212{bottom:462.128520pt;}
.y14_c01212{bottom:462.449720pt;}
.y12_c01212{bottom:517.889720pt;}
.y11_c01212{bottom:547.035320pt;}
.y10_c01212{bottom:574.596920pt;}
.yf_c01212{bottom:604.059320pt;}
.y2_c01212{bottom:626.864520pt;}
.ye_c01212{bottom:630.353720pt;}
.yd_c01212{bottom:658.861320pt;}
.yc_c01212{bottom:693.396920pt;}
.yb_c01212{bottom:714.939320pt;}
.ya_c01212{bottom:743.130120pt;}
.y9_c01212{bottom:799.837320pt;}
.y8_c01212{bottom:828.670520pt;}
.y7_c01212{bottom:849.891720pt;}
.y6_c01212{bottom:859.078920pt;}
.y5_c01212{bottom:870.488120pt;}
.y4_c01212{bottom:950.000520pt;}
.h7_c01212{height:18.567014pt;}
.h3_c01212{height:19.518984pt;}
.h2_c01212{height:20.926125pt;}
.ha_c01212{height:25.698750pt;}
.h18_c01212{height:29.364844pt;}
.hc_c01212{height:30.382504pt;}
.h15_c01212{height:30.838500pt;}
.h10_c01212{height:31.572934pt;}
.h16_c01212{height:32.070415pt;}
.h6_c01212{height:32.123438pt;}
.hf_c01212{height:32.914370pt;}
.h17_c01212{height:34.201406pt;}
.h11_c01212{height:58.729688pt;}
.hd_c01212{height:59.766094pt;}
.h12_c01212{height:61.117720pt;}
.h5_c01212{height:61.677000pt;}
.h13_c01212{height:64.602829pt;}
.h14_c01212{height:64.981309pt;}
.he_c01212{height:65.293594pt;}
.h8_c01212{height:69.784860pt;}
.h9_c01212{height:70.821094pt;}
.hb_c01212{height:71.512204pt;}
.h4_c01212{height:76.694235pt;}
.h1_c01212{height:986.666667pt;}
.h0_c01212{height:1122.666667pt;}
.w1_c01212{width:689.333333pt;}
.w0_c01212{width:793.333333pt;}
.x0_c01212{left:0.000000pt;}
.x2_c01212{left:49.602653pt;}
.x1_c01212{left:52.000000pt;}
.x3_c01212{left:60.734653pt;}
.x4f_c01212{left:66.547053pt;}
.x32_c01212{left:75.531853pt;}
.x13_c01212{left:76.495453pt;}
.x7_c01212{left:77.740653pt;}
.x44_c01212{left:125.273853pt;}
.x14_c01212{left:136.133053pt;}
.x25_c01212{left:144.418253pt;}
.x1f_c01212{left:165.225853pt;}
.x43_c01212{left:173.603453pt;}
.xf_c01212{left:174.729853pt;}
.x8_c01212{left:184.484653pt;}
.x33_c01212{left:194.037053pt;}
.x48_c01212{left:203.457453pt;}
.x39_c01212{left:204.425453pt;}
.x29_c01212{left:214.285853pt;}
.x1c_c01212{left:222.923053pt;}
.x9_c01212{left:225.827053pt;}
.x49_c01212{left:233.197053pt;}
.x26_c01212{left:234.125453pt;}
.x3b_c01212{left:235.661053pt;}
.x3e_c01212{left:240.404253pt;}
.x4d_c01212{left:242.247853pt;}
.x15_c01212{left:243.189453pt;}
.x3a_c01212{left:244.351053pt;}
.x10_c01212{left:254.083853pt;}
.x45_c01212{left:265.114653pt;}
.x16_c01212{left:282.666253pt;}
.x3f_c01212{left:284.888253pt;}
.x53_c01212{left:292.733453pt;}
.xa_c01212{left:294.049053pt;}
.x1d_c01212{left:302.813853pt;}
.x34_c01212{left:303.922653pt;}
.x11_c01212{left:322.354253pt;}
.x30_c01212{left:323.265053pt;}
.x50_c01212{left:332.751453pt;}
.x4a_c01212{left:343.175053pt;}
.x17_c01212{left:352.239053pt;}
.x40_c01212{left:353.462253pt;}
.x2a_c01212{left:362.865053pt;}
.x27_c01212{left:371.880653pt;}
.x18_c01212{left:373.178653pt;}
.x20_c01212{left:381.811453pt;}
.x3c_c01212{left:390.180253pt;}
.x2b_c01212{left:392.389053pt;}
.xb_c01212{left:402.126253pt;}
.x35_c01212{left:412.277053pt;}
.x31_c01212{left:421.965853pt;}
.xc_c01212{left:431.100253pt;}
.x4b_c01212{left:432.781053pt;}
.x51_c01212{left:441.189453pt;}
.x28_c01212{left:442.359853pt;}
.x21_c01212{left:461.389853pt;}
.x2c_c01212{left:471.655053pt;}
.x38_c01212{left:474.053053pt;}
.x46_c01212{left:478.316653pt;}
.xd_c01212{left:481.722253pt;}
.x22_c01212{left:491.626653pt;}
.x3d_c01212{left:499.476253pt;}
.x19_c01212{left:519.720653pt;}
.x4c_c01212{left:528.652653pt;}
.x36_c01212{left:538.455853pt;}
.x2d_c01212{left:540.246653pt;}
.x23_c01212{left:547.427453pt;}
.x12_c01212{left:548.967453pt;}
.x47_c01212{left:559.245853pt;}
.x2e_c01212{left:568.754253pt;}
.x41_c01212{left:578.091053pt;}
.xe_c01212{left:580.053453pt;}
.x4_c01212{left:588.994253pt;}
.x24_c01212{left:599.013053pt;}
.x2f_c01212{left:608.948253pt;}
.x1a_c01212{left:617.823053pt;}
.x1e_c01212{left:625.571453pt;}
.x5_c01212{left:627.335853pt;}
.x6_c01212{left:628.686653pt;}
.x54_c01212{left:630.301453pt;}
.x52_c01212{left:636.668253pt;}
.x1b_c01212{left:648.262253pt;}
.x42_c01212{left:649.687853pt;}
.x4e_c01212{left:652.798653pt;}
.x37_c01212{left:665.844653pt;}
}





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

.ir_c01213:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01213{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01213;src:url('chunks/assets/font_6514cc7b96e2f787f515d379.woff2')format("woff");}.ff1_c01213{font-family:ff1_c01213;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01213;src:url('chunks/assets/font_59f883cc0a2e72451b6b5262.woff2')format("woff");}.ff2_c01213{font-family:ff2_c01213;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01213;src:url('chunks/assets/font_0560e1a2b2619c022822e787.woff2')format("woff");}.ff3_c01213{font-family:ff3_c01213;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01213;src:url('chunks/assets/font_7c92ecc719c2c44419e02534.woff2')format("woff");}.ff4_c01213{font-family:ff4_c01213;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m51_c01213{transform:matrix(0.085714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085714,0.000000,0.000000,0.250000,0,0);}
.m5_c01213{transform:matrix(0.141464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141464,0.000000,0.000000,0.250000,0,0);}
.m46_c01213{transform:matrix(0.149726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149726,0.000000,0.000000,0.250000,0,0);}
.m6_c01213{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m50_c01213{transform:matrix(0.173810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173810,0.000000,0.000000,0.250000,0,0);}
.m2c_c01213{transform:matrix(0.204167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204167,0.000000,0.000000,0.250000,0,0);}
.m4a_c01213{transform:matrix(0.234771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234771,0.000000,0.000000,0.250000,0,0);}
.m2_c01213{transform:matrix(0.235099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235099,0.000000,0.000000,0.250000,0,0);}
.mf_c01213{transform:matrix(0.237102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237102,0.000000,0.000000,0.250000,0,0);}
.m44_c01213{transform:matrix(0.239001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239001,0.000000,0.000000,0.250000,0,0);}
.m5a_c01213{transform:matrix(0.247310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247310,0.000000,0.000000,0.250000,0,0);}
.m3_c01213{transform:matrix(0.248783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248783,0.000000,0.000000,0.250000,0,0);}
.m0_c01213{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m49_c01213{transform:matrix(0.251373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251373,0.000000,0.000000,0.250000,0,0);}
.me_c01213{transform:matrix(0.257278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257278,0.000000,0.000000,0.250000,0,0);}
.m63_c01213{transform:matrix(0.257572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257572,0.000000,0.000000,0.250000,0,0);}
.m52_c01213{transform:matrix(0.263605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263605,0.000000,0.000000,0.250000,0,0);}
.m25_c01213{transform:matrix(0.266004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266004,0.000000,0.000000,0.250000,0,0);}
.m7_c01213{transform:matrix(0.273075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273075,0.000000,0.000000,0.250000,0,0);}
.m8_c01213{transform:matrix(0.276862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276862,0.000000,0.000000,0.250000,0,0);}
.ma_c01213{transform:matrix(0.277569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277569,0.000000,0.000000,0.250000,0,0);}
.m45_c01213{transform:matrix(0.278347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278347,0.000000,0.000000,0.250000,0,0);}
.m5e_c01213{transform:matrix(0.280855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280855,0.000000,0.000000,0.250000,0,0);}
.m30_c01213{transform:matrix(0.281807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281807,0.000000,0.000000,0.250000,0,0);}
.m48_c01213{transform:matrix(0.281848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281848,0.000000,0.000000,0.250000,0,0);}
.m18_c01213{transform:matrix(0.283776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283776,0.000000,0.000000,0.250000,0,0);}
.m3c_c01213{transform:matrix(0.284300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284300,0.000000,0.000000,0.250000,0,0);}
.m2e_c01213{transform:matrix(0.285447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285447,0.000000,0.000000,0.250000,0,0);}
.m5c_c01213{transform:matrix(0.288333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288333,0.000000,0.000000,0.250000,0,0);}
.m47_c01213{transform:matrix(0.289443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289443,0.000000,0.000000,0.250000,0,0);}
.m24_c01213{transform:matrix(0.290224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290224,0.000000,0.000000,0.250000,0,0);}
.m59_c01213{transform:matrix(0.290841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290841,0.000000,0.000000,0.250000,0,0);}
.m39_c01213{transform:matrix(0.291457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291457,0.000000,0.000000,0.250000,0,0);}
.m66_c01213{transform:matrix(0.292576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292576,0.000000,0.000000,0.250000,0,0);}
.m1a_c01213{transform:matrix(0.294519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294519,0.000000,0.000000,0.250000,0,0);}
.m20_c01213{transform:matrix(0.294845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294845,0.000000,0.000000,0.250000,0,0);}
.m27_c01213{transform:matrix(0.295229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295229,0.000000,0.000000,0.250000,0,0);}
.m12_c01213{transform:matrix(0.296564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296564,0.000000,0.000000,0.250000,0,0);}
.mc_c01213{transform:matrix(0.297111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297111,0.000000,0.000000,0.250000,0,0);}
.m58_c01213{transform:matrix(0.297480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297480,0.000000,0.000000,0.250000,0,0);}
.m34_c01213{transform:matrix(0.297882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297882,0.000000,0.000000,0.250000,0,0);}
.m43_c01213{transform:matrix(0.298025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298025,0.000000,0.000000,0.250000,0,0);}
.m3d_c01213{transform:matrix(0.298148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298148,0.000000,0.000000,0.250000,0,0);}
.m4c_c01213{transform:matrix(0.298609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298609,0.000000,0.000000,0.250000,0,0);}
.m4f_c01213{transform:matrix(0.299834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299834,0.000000,0.000000,0.250000,0,0);}
.m10_c01213{transform:matrix(0.299900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299900,0.000000,0.000000,0.250000,0,0);}
.m1_c01213{transform:matrix(0.300484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300484,0.000000,0.000000,0.250000,0,0);}
.m1c_c01213{transform:matrix(0.301396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301396,0.000000,0.000000,0.250000,0,0);}
.m2b_c01213{transform:matrix(0.301846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301846,0.000000,0.000000,0.250000,0,0);}
.m67_c01213{transform:matrix(0.304007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304007,0.000000,0.000000,0.250000,0,0);}
.m1f_c01213{transform:matrix(0.306149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306149,0.000000,0.000000,0.250000,0,0);}
.m32_c01213{transform:matrix(0.309717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309717,0.000000,0.000000,0.250000,0,0);}
.m2a_c01213{transform:matrix(0.309818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309818,0.000000,0.000000,0.250000,0,0);}
.m19_c01213{transform:matrix(0.310847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310847,0.000000,0.000000,0.250000,0,0);}
.m55_c01213{transform:matrix(0.312010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312010,0.000000,0.000000,0.250000,0,0);}
.m31_c01213{transform:matrix(0.312107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312107,0.000000,0.000000,0.250000,0,0);}
.m21_c01213{transform:matrix(0.312906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312906,0.000000,0.000000,0.250000,0,0);}
.m16_c01213{transform:matrix(0.313066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313066,0.000000,0.000000,0.250000,0,0);}
.m29_c01213{transform:matrix(0.313655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313655,0.000000,0.000000,0.250000,0,0);}
.m13_c01213{transform:matrix(0.313764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313764,0.000000,0.000000,0.250000,0,0);}
.m42_c01213{transform:matrix(0.313824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313824,0.000000,0.000000,0.250000,0,0);}
.m28_c01213{transform:matrix(0.314771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314771,0.000000,0.000000,0.250000,0,0);}
.m40_c01213{transform:matrix(0.314851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314851,0.000000,0.000000,0.250000,0,0);}
.m3f_c01213{transform:matrix(0.314972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314972,0.000000,0.000000,0.250000,0,0);}
.m57_c01213{transform:matrix(0.315802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315802,0.000000,0.000000,0.250000,0,0);}
.m14_c01213{transform:matrix(0.316181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316181,0.000000,0.000000,0.250000,0,0);}
.mb_c01213{transform:matrix(0.319949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319949,0.000000,0.000000,0.250000,0,0);}
.m54_c01213{transform:matrix(0.320567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320567,0.000000,0.000000,0.250000,0,0);}
.m17_c01213{transform:matrix(0.321416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321416,0.000000,0.000000,0.250000,0,0);}
.m69_c01213{transform:matrix(0.322199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322199,0.000000,0.000000,0.250000,0,0);}
.m5f_c01213{transform:matrix(0.322636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322636,0.000000,0.000000,0.250000,0,0);}
.m4e_c01213{transform:matrix(0.323412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323412,0.000000,0.000000,0.250000,0,0);}
.m3b_c01213{transform:matrix(0.323761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323761,0.000000,0.000000,0.250000,0,0);}
.m1e_c01213{transform:matrix(0.326521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326521,0.000000,0.000000,0.250000,0,0);}
.m15_c01213{transform:matrix(0.326551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326551,0.000000,0.000000,0.250000,0,0);}
.md_c01213{transform:matrix(0.327391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327391,0.000000,0.000000,0.250000,0,0);}
.m5b_c01213{transform:matrix(0.329930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329930,0.000000,0.000000,0.250000,0,0);}
.m41_c01213{transform:matrix(0.331888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331888,0.000000,0.000000,0.250000,0,0);}
.m35_c01213{transform:matrix(0.332784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332784,0.000000,0.000000,0.250000,0,0);}
.m33_c01213{transform:matrix(0.336034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336034,0.000000,0.000000,0.250000,0,0);}
.m64_c01213{transform:matrix(0.336785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336785,0.000000,0.000000,0.250000,0,0);}
.m2f_c01213{transform:matrix(0.337086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337086,0.000000,0.000000,0.250000,0,0);}
.m5d_c01213{transform:matrix(0.337234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337234,0.000000,0.000000,0.250000,0,0);}
.m53_c01213{transform:matrix(0.338177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338177,0.000000,0.000000,0.250000,0,0);}
.m37_c01213{transform:matrix(0.339468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339468,0.000000,0.000000,0.250000,0,0);}
.m11_c01213{transform:matrix(0.341561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341561,0.000000,0.000000,0.250000,0,0);}
.m26_c01213{transform:matrix(0.341825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341825,0.000000,0.000000,0.250000,0,0);}
.m62_c01213{transform:matrix(0.343271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343271,0.000000,0.000000,0.250000,0,0);}
.m1d_c01213{transform:matrix(0.344753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344753,0.000000,0.000000,0.250000,0,0);}
.m22_c01213{transform:matrix(0.344880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344880,0.000000,0.000000,0.250000,0,0);}
.m61_c01213{transform:matrix(0.347010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347010,0.000000,0.000000,0.250000,0,0);}
.m2d_c01213{transform:matrix(0.348458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348458,0.000000,0.000000,0.250000,0,0);}
.m36_c01213{transform:matrix(0.348486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348486,0.000000,0.000000,0.250000,0,0);}
.m23_c01213{transform:matrix(0.350017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350017,0.000000,0.000000,0.250000,0,0);}
.m68_c01213{transform:matrix(0.351108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351108,0.000000,0.000000,0.250000,0,0);}
.m65_c01213{transform:matrix(0.354235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354235,0.000000,0.000000,0.250000,0,0);}
.m3e_c01213{transform:matrix(0.355118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355118,0.000000,0.000000,0.250000,0,0);}
.m56_c01213{transform:matrix(0.369983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369983,0.000000,0.000000,0.250000,0,0);}
.m4b_c01213{transform:matrix(0.370578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370578,0.000000,0.000000,0.250000,0,0);}
.m38_c01213{transform:matrix(0.381310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381310,0.000000,0.000000,0.250000,0,0);}
.m3a_c01213{transform:matrix(0.388378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388378,0.000000,0.000000,0.250000,0,0);}
.m4_c01213{transform:matrix(0.390984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390984,0.000000,0.000000,0.250000,0,0);}
.m1b_c01213{transform:matrix(0.395811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395811,0.000000,0.000000,0.250000,0,0);}
.m9_c01213{transform:matrix(0.412522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412522,0.000000,0.000000,0.250000,0,0);}
.m4d_c01213{transform:matrix(0.431754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431754,0.000000,0.000000,0.250000,0,0);}
.m60_c01213{transform:matrix(0.563897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563897,0.000000,0.000000,0.250000,0,0);}
.v0_c01213{vertical-align:0.000000px;}
.ls3_c01213{letter-spacing:-2.564100px;}
.lsd_c01213{letter-spacing:-2.029302px;}
.ls8_c01213{letter-spacing:-0.783882px;}
.lse_c01213{letter-spacing:-0.608058px;}
.ls7_c01213{letter-spacing:-0.454212px;}
.lsf_c01213{letter-spacing:-0.432234px;}
.ls1_c01213{letter-spacing:0.000000px;}
.lsa_c01213{letter-spacing:0.087912px;}
.ls6_c01213{letter-spacing:0.131868px;}
.ls11_c01213{letter-spacing:0.285714px;}
.ls9_c01213{letter-spacing:0.827838px;}
.ls0_c01213{letter-spacing:1.230768px;}
.lsb_c01213{letter-spacing:3.316500px;}
.ls2_c01213{letter-spacing:3.663000px;}
.ls10_c01213{letter-spacing:49.896198px;}
.lsc_c01213{letter-spacing:51.321798px;}
.ls5_c01213{letter-spacing:57.024198px;}
.ls4_c01213{letter-spacing:58.449798px;}
.sc__c01213{text-shadow:none;}
.sc0_c01213{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01213{-webkit-text-stroke:0px transparent;}
.sc0_c01213{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01213{word-spacing:-18.446868px;}
.ws1_c01213{word-spacing:-18.315000px;}
.ws2_c01213{word-spacing:0.000000px;}
._3_c01213{margin-left:-14.754564px;}
._1_c01213{margin-left:-1.509156px;}
._5_c01213{width:2.051280px;}
._2_c01213{width:4.908420px;}
._0_c01213{width:16.387954px;}
._8_c01213{width:25.494480px;}
._7_c01213{width:27.331722px;}
._4_c01213{width:28.579122px;}
._9_c01213{width:30.256380px;}
._6_c01213{width:38.314980px;}
.fc0_c01213{color:transparent;}
.fs1_c01213{font-size:26.928000px;}
.fs9_c01213{font-size:49.896198px;}
.fs6_c01213{font-size:51.321798px;}
.fs0_c01213{font-size:53.856198px;}
.fs4_c01213{font-size:57.024198px;}
.fs3_c01213{font-size:58.449798px;}
.fs7_c01213{font-size:64.548000px;}
.fs5_c01213{font-size:66.330000px;}
.fs8_c01213{font-size:72.864000px;}
.fs2_c01213{font-size:73.260000px;}
.y0_c01213{bottom:0.000000px;}
.y1_c01213{bottom:76.500000px;}
.y17_c01213{bottom:150.312735px;}
.y16_c01213{bottom:184.165785px;}
.y15_c01213{bottom:248.679135px;}
.y14_c01213{bottom:281.467935px;}
.y2_c01213{bottom:339.556185px;}
.y13_c01213{bottom:343.837935px;}
.y12_c01213{bottom:375.908985px;}
.y11_c01213{bottom:438.991785px;}
.y10_c01213{bottom:470.716335px;}
.yf_c01213{bottom:502.435935px;}
.ye_c01213{bottom:534.155535px;}
.yd_c01213{bottom:568.726335px;}
.yc_c01213{bottom:597.589785px;}
.yb_c01213{bottom:661.028985px;}
.ya_c01213{bottom:693.109935px;}
.y9_c01213{bottom:755.479935px;}
.y8_c01213{bottom:788.625135px;}
.y7_c01213{bottom:852.064335px;}
.y6_c01213{bottom:884.135385px;}
.y4_c01213{bottom:914.434335px;}
.y5_c01213{bottom:914.785785px;}
.y3_c01213{bottom:1052.712585px;}
.h8_c01213{height:33.230868px;}
.h7_c01213{height:34.180317px;}
.h5_c01213{height:37.978116px;}
.h4_c01213{height:38.927565px;}
.h2_c01213{height:56.170332px;}
.h6_c01213{height:69.180117px;}
.h3_c01213{height:71.900684px;}
.h1_c01213{height:1110.000000px;}
.h0_c01213{height:1263.000000px;}
.w1_c01213{width:775.500000px;}
.w0_c01213{width:892.500000px;}
.x0_c01213{left:0.000000px;}
.x2_c01213{left:55.223835px;}
.x1_c01213{left:58.500000px;}
.x36_c01213{left:83.899185px;}
.x16_c01213{left:84.968385px;}
.x4_c01213{left:86.408835px;}
.x29_c01213{left:150.125235px;}
.x5_c01213{left:162.099285px;}
.x1e_c01213{left:184.423785px;}
.x6_c01213{left:185.686035px;}
.xd_c01213{left:195.605835px;}
.x2c_c01213{left:196.833435px;}
.x37_c01213{left:205.545435px;}
.x2e_c01213{left:217.267035px;}
.x2a_c01213{left:218.356035px;}
.x17_c01213{left:228.548085px;}
.x1f_c01213{left:231.221085px;}
.x4d_c01213{left:240.982485px;}
.x2f_c01213{left:251.679435px;}
.x15_c01213{left:262.247685px;}
.x18_c01213{left:273.642585px;}
.x38_c01213{left:275.102835px;}
.x7_c01213{left:284.933535px;}
.x41_c01213{left:287.962935px;}
.x3f_c01213{left:294.967185px;}
.x39_c01213{left:307.723335px;}
.x24_c01213{left:318.484635px;}
.x3a_c01213{left:320.157735px;}
.x40_c01213{left:326.419485px;}
.x8_c01213{left:328.943985px;}
.x33_c01213{left:330.057735px;}
.x44_c01213{left:339.581535px;}
.x20_c01213{left:340.947735px;}
.x47_c01213{left:350.654685px;}
.xe_c01213{left:352.624785px;}
.x19_c01213{left:363.277185px;}
.x30_c01213{left:374.092935px;}
.xf_c01213{left:385.121535px;}
.x48_c01213{left:387.250035px;}
.x4e_c01213{left:395.105685px;}
.x25_c01213{left:397.615335px;}
.x45_c01213{left:407.262885px;}
.x1a_c01213{left:408.549885px;}
.x3b_c01213{left:419.241885px;}
.x26_c01213{left:432.181185px;}
.x21_c01213{left:439.309185px;}
.x2b_c01213{left:440.739735px;}
.x2d_c01213{left:447.239085px;}
.x31_c01213{left:463.192935px;}
.x10_c01213{left:474.211635px;}
.x9_c01213{left:485.759985px;}
.x27_c01213{left:495.333285px;}
.x49_c01213{left:497.179635px;}
.x3c_c01213{left:507.307335px;}
.x34_c01213{left:518.142885px;}
.x1b_c01213{left:520.301085px;}
.x22_c01213{left:528.651735px;}
.x46_c01213{left:530.532735px;}
.x4a_c01213{left:539.922885px;}
.x1c_c01213{left:541.140585px;}
.x11_c01213{left:551.956335px;}
.x28_c01213{left:563.123535px;}
.x35_c01213{left:584.725335px;}
.x12_c01213{left:587.408235px;}
.xa_c01213{left:596.451885px;}
.x3d_c01213{left:606.495435px;}
.x13_c01213{left:607.569585px;}
.x1d_c01213{left:617.875485px;}
.x42_c01213{left:636.487485px;}
.x23_c01213{left:649.600035px;}
.xb_c01213{left:652.000785px;}
.x3e_c01213{left:653.688735px;}
.x4b_c01213{left:663.039285px;}
.x32_c01213{left:674.424285px;}
.x3_c01213{left:685.076685px;}
.x4c_c01213{left:695.055885px;}
.x14_c01213{left:705.926085px;}
.xc_c01213{left:718.984185px;}
.x43_c01213{left:741.071085px;}
@media print{
.v0_c01213{vertical-align:0.000000pt;}
.ls3_c01213{letter-spacing:-2.279200pt;}
.lsd_c01213{letter-spacing:-1.803824pt;}
.ls8_c01213{letter-spacing:-0.696784pt;}
.lse_c01213{letter-spacing:-0.540496pt;}
.ls7_c01213{letter-spacing:-0.403744pt;}
.lsf_c01213{letter-spacing:-0.384208pt;}
.ls1_c01213{letter-spacing:0.000000pt;}
.lsa_c01213{letter-spacing:0.078144pt;}
.ls6_c01213{letter-spacing:0.117216pt;}
.ls11_c01213{letter-spacing:0.253968pt;}
.ls9_c01213{letter-spacing:0.735856pt;}
.ls0_c01213{letter-spacing:1.094016pt;}
.lsb_c01213{letter-spacing:2.948000pt;}
.ls2_c01213{letter-spacing:3.256000pt;}
.ls10_c01213{letter-spacing:44.352176pt;}
.lsc_c01213{letter-spacing:45.619376pt;}
.ls5_c01213{letter-spacing:50.688176pt;}
.ls4_c01213{letter-spacing:51.955376pt;}
.ws0_c01213{word-spacing:-16.397216pt;}
.ws1_c01213{word-spacing:-16.280000pt;}
.ws2_c01213{word-spacing:0.000000pt;}
._3_c01213{margin-left:-13.115168pt;}
._1_c01213{margin-left:-1.341472pt;}
._5_c01213{width:1.823360pt;}
._2_c01213{width:4.363040pt;}
._0_c01213{width:14.567070pt;}
._8_c01213{width:22.661760pt;}
._7_c01213{width:24.294864pt;}
._4_c01213{width:25.403664pt;}
._9_c01213{width:26.894560pt;}
._6_c01213{width:34.057760pt;}
.fs1_c01213{font-size:23.936000pt;}
.fs9_c01213{font-size:44.352176pt;}
.fs6_c01213{font-size:45.619376pt;}
.fs0_c01213{font-size:47.872176pt;}
.fs4_c01213{font-size:50.688176pt;}
.fs3_c01213{font-size:51.955376pt;}
.fs7_c01213{font-size:57.376000pt;}
.fs5_c01213{font-size:58.960000pt;}
.fs8_c01213{font-size:64.768000pt;}
.fs2_c01213{font-size:65.120000pt;}
.y0_c01213{bottom:0.000000pt;}
.y1_c01213{bottom:68.000000pt;}
.y17_c01213{bottom:133.611320pt;}
.y16_c01213{bottom:163.702920pt;}
.y15_c01213{bottom:221.048120pt;}
.y14_c01213{bottom:250.193720pt;}
.y2_c01213{bottom:301.827720pt;}
.y13_c01213{bottom:305.633720pt;}
.y12_c01213{bottom:334.141320pt;}
.y11_c01213{bottom:390.214920pt;}
.y10_c01213{bottom:418.414520pt;}
.yf_c01213{bottom:446.609720pt;}
.ye_c01213{bottom:474.804920pt;}
.yd_c01213{bottom:505.534520pt;}
.yc_c01213{bottom:531.190920pt;}
.yb_c01213{bottom:587.581320pt;}
.ya_c01213{bottom:616.097720pt;}
.y9_c01213{bottom:671.537720pt;}
.y8_c01213{bottom:701.000120pt;}
.y7_c01213{bottom:757.390520pt;}
.y6_c01213{bottom:785.898120pt;}
.y4_c01213{bottom:812.830520pt;}
.y5_c01213{bottom:813.142920pt;}
.y3_c01213{bottom:935.744520pt;}
.h8_c01213{height:29.538549pt;}
.h7_c01213{height:30.382504pt;}
.h5_c01213{height:33.758325pt;}
.h4_c01213{height:34.602280pt;}
.h2_c01213{height:49.929184pt;}
.h6_c01213{height:61.493438pt;}
.h3_c01213{height:63.911719pt;}
.h1_c01213{height:986.666667pt;}
.h0_c01213{height:1122.666667pt;}
.w1_c01213{width:689.333333pt;}
.w0_c01213{width:793.333333pt;}
.x0_c01213{left:0.000000pt;}
.x2_c01213{left:49.087853pt;}
.x1_c01213{left:52.000000pt;}
.x36_c01213{left:74.577053pt;}
.x16_c01213{left:75.527453pt;}
.x4_c01213{left:76.807853pt;}
.x29_c01213{left:133.444653pt;}
.x5_c01213{left:144.088253pt;}
.x1e_c01213{left:163.932253pt;}
.x6_c01213{left:165.054253pt;}
.xd_c01213{left:173.871853pt;}
.x2c_c01213{left:174.963053pt;}
.x37_c01213{left:182.707053pt;}
.x2e_c01213{left:193.126253pt;}
.x2a_c01213{left:194.094253pt;}
.x17_c01213{left:203.153853pt;}
.x1f_c01213{left:205.529853pt;}
.x4d_c01213{left:214.206653pt;}
.x2f_c01213{left:223.715053pt;}
.x15_c01213{left:233.109053pt;}
.x18_c01213{left:243.237853pt;}
.x38_c01213{left:244.535853pt;}
.x7_c01213{left:253.274253pt;}
.x41_c01213{left:255.967053pt;}
.x3f_c01213{left:262.193053pt;}
.x39_c01213{left:273.531853pt;}
.x24_c01213{left:283.097453pt;}
.x3a_c01213{left:284.584653pt;}
.x40_c01213{left:290.150653pt;}
.x8_c01213{left:292.394653pt;}
.x33_c01213{left:293.384653pt;}
.x44_c01213{left:301.850253pt;}
.x20_c01213{left:303.064653pt;}
.x47_c01213{left:311.693053pt;}
.xe_c01213{left:313.444253pt;}
.x19_c01213{left:322.913053pt;}
.x30_c01213{left:332.527053pt;}
.xf_c01213{left:342.330253pt;}
.x48_c01213{left:344.222253pt;}
.x4e_c01213{left:351.205053pt;}
.x25_c01213{left:353.435853pt;}
.x45_c01213{left:362.011453pt;}
.x1a_c01213{left:363.155453pt;}
.x3b_c01213{left:372.659453pt;}
.x26_c01213{left:384.161053pt;}
.x21_c01213{left:390.497053pt;}
.x2b_c01213{left:391.768653pt;}
.x2d_c01213{left:397.545853pt;}
.x31_c01213{left:411.727053pt;}
.x10_c01213{left:421.521453pt;}
.x9_c01213{left:431.786653pt;}
.x27_c01213{left:440.296253pt;}
.x49_c01213{left:441.937453pt;}
.x3c_c01213{left:450.939853pt;}
.x34_c01213{left:460.571453pt;}
.x1b_c01213{left:462.489853pt;}
.x22_c01213{left:469.912653pt;}
.x46_c01213{left:471.584653pt;}
.x4a_c01213{left:479.931453pt;}
.x1c_c01213{left:481.013853pt;}
.x11_c01213{left:490.627853pt;}
.x28_c01213{left:500.554253pt;}
.x35_c01213{left:519.755853pt;}
.x12_c01213{left:522.140653pt;}
.xa_c01213{left:530.179453pt;}
.x3d_c01213{left:539.107053pt;}
.x13_c01213{left:540.061853pt;}
.x1d_c01213{left:549.222653pt;}
.x42_c01213{left:565.766653pt;}
.x23_c01213{left:577.422253pt;}
.xb_c01213{left:579.556253pt;}
.x3e_c01213{left:581.056653pt;}
.x4b_c01213{left:589.368253pt;}
.x32_c01213{left:599.488253pt;}
.x3_c01213{left:608.957053pt;}
.x4c_c01213{left:617.827453pt;}
.x14_c01213{left:627.489853pt;}
.xc_c01213{left:639.097053pt;}
.x43_c01213{left:658.729853pt;}
}





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

.ir_c01214:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01214{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01214;src:url('chunks/assets/font_bf54c315d54816d8f5b9bb71.woff2')format("woff");}.ff1_c01214{font-family:ff1_c01214;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01214;src:url('chunks/assets/font_a22c842194b9ae8a25180f19.woff2')format("woff");}.ff2_c01214{font-family:ff2_c01214;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01214;src:url('chunks/assets/font_f994e6a201c14709929fa480.woff2')format("woff");}.ff3_c01214{font-family:ff3_c01214;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01214;src:url('chunks/assets/font_619546a9b94ad6f7381937d7.woff2')format("woff");}.ff4_c01214{font-family:ff4_c01214;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m7c_c01214{transform:matrix(0.073170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073170,0.000000,0.000000,0.250000,0,0);}
.m7d_c01214{transform:matrix(0.106707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106707,0.000000,0.000000,0.250000,0,0);}
.me_c01214{transform:matrix(0.149503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149503,0.000000,0.000000,0.250000,0,0);}
.md_c01214{transform:matrix(0.172481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172481,0.000000,0.000000,0.250000,0,0);}
.m7b_c01214{transform:matrix(0.182926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182926,0.000000,0.000000,0.250000,0,0);}
.m29_c01214{transform:matrix(0.184146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184146,0.000000,0.000000,0.250000,0,0);}
.m68_c01214{transform:matrix(0.188021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188021,0.000000,0.000000,0.250000,0,0);}
.m64_c01214{transform:matrix(0.189584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189584,0.000000,0.000000,0.250000,0,0);}
.m1_c01214{transform:matrix(0.218585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218585,0.000000,0.000000,0.250000,0,0);}
.m7a_c01214{transform:matrix(0.227982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227982,0.000000,0.000000,0.250000,0,0);}
.m15_c01214{transform:matrix(0.243666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243666,0.000000,0.000000,0.250000,0,0);}
.m3b_c01214{transform:matrix(0.246222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246222,0.000000,0.000000,0.250000,0,0);}
.m21_c01214{transform:matrix(0.249793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249793,0.000000,0.000000,0.250000,0,0);}
.ma_c01214{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01214{transform:matrix(0.253907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253907,0.000000,0.000000,0.250000,0,0);}
.m82_c01214{transform:matrix(0.257536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257536,0.000000,0.000000,0.250000,0,0);}
.m38_c01214{transform:matrix(0.264003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264003,0.000000,0.000000,0.250000,0,0);}
.m59_c01214{transform:matrix(0.266196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266196,0.000000,0.000000,0.250000,0,0);}
.m36_c01214{transform:matrix(0.268645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268645,0.000000,0.000000,0.250000,0,0);}
.m3e_c01214{transform:matrix(0.270510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270510,0.000000,0.000000,0.250000,0,0);}
.m3a_c01214{transform:matrix(0.271051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271051,0.000000,0.000000,0.250000,0,0);}
.m5d_c01214{transform:matrix(0.271918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271918,0.000000,0.000000,0.250000,0,0);}
.m84_c01214{transform:matrix(0.272166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272166,0.000000,0.000000,0.250000,0,0);}
.mb_c01214{transform:matrix(0.272488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272488,0.000000,0.000000,0.250000,0,0);}
.m40_c01214{transform:matrix(0.273103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273103,0.000000,0.000000,0.250000,0,0);}
.m55_c01214{transform:matrix(0.276862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276862,0.000000,0.000000,0.250000,0,0);}
.m51_c01214{transform:matrix(0.278168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278168,0.000000,0.000000,0.250000,0,0);}
.m6f_c01214{transform:matrix(0.279454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279454,0.000000,0.000000,0.250000,0,0);}
.m9_c01214{transform:matrix(0.280407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280407,0.000000,0.000000,0.250000,0,0);}
.m35_c01214{transform:matrix(0.281807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281807,0.000000,0.000000,0.250000,0,0);}
.m7f_c01214{transform:matrix(0.282778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282778,0.000000,0.000000,0.250000,0,0);}
.m4a_c01214{transform:matrix(0.283359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283359,0.000000,0.000000,0.250000,0,0);}
.mf_c01214{transform:matrix(0.283534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283534,0.000000,0.000000,0.250000,0,0);}
.m7e_c01214{transform:matrix(0.283634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283634,0.000000,0.000000,0.250000,0,0);}
.m2f_c01214{transform:matrix(0.284037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284037,0.000000,0.000000,0.250000,0,0);}
.m22_c01214{transform:matrix(0.284464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284464,0.000000,0.000000,0.250000,0,0);}
.m53_c01214{transform:matrix(0.284523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284523,0.000000,0.000000,0.250000,0,0);}
.m28_c01214{transform:matrix(0.286751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286751,0.000000,0.000000,0.250000,0,0);}
.m5f_c01214{transform:matrix(0.287734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287734,0.000000,0.000000,0.250000,0,0);}
.m19_c01214{transform:matrix(0.288220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288220,0.000000,0.000000,0.250000,0,0);}
.m1b_c01214{transform:matrix(0.288605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288605,0.000000,0.000000,0.250000,0,0);}
.m2c_c01214{transform:matrix(0.289016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289016,0.000000,0.000000,0.250000,0,0);}
.m5e_c01214{transform:matrix(0.289273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289273,0.000000,0.000000,0.250000,0,0);}
.m25_c01214{transform:matrix(0.289918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289918,0.000000,0.000000,0.250000,0,0);}
.m3f_c01214{transform:matrix(0.290063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290063,0.000000,0.000000,0.250000,0,0);}
.m30_c01214{transform:matrix(0.290121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290121,0.000000,0.000000,0.250000,0,0);}
.m78_c01214{transform:matrix(0.290224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290224,0.000000,0.000000,0.250000,0,0);}
.m24_c01214{transform:matrix(0.290939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290939,0.000000,0.000000,0.250000,0,0);}
.m34_c01214{transform:matrix(0.291289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291289,0.000000,0.000000,0.250000,0,0);}
.m2d_c01214{transform:matrix(0.291578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291578,0.000000,0.000000,0.250000,0,0);}
.m5c_c01214{transform:matrix(0.291604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291604,0.000000,0.000000,0.250000,0,0);}
.m44_c01214{transform:matrix(0.292108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292108,0.000000,0.000000,0.250000,0,0);}
.m20_c01214{transform:matrix(0.292474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292474,0.000000,0.000000,0.250000,0,0);}
.m61_c01214{transform:matrix(0.292529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292529,0.000000,0.000000,0.250000,0,0);}
.m52_c01214{transform:matrix(0.293154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293154,0.000000,0.000000,0.250000,0,0);}
.m12_c01214{transform:matrix(0.293852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293852,0.000000,0.000000,0.250000,0,0);}
.m66_c01214{transform:matrix(0.293877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293877,0.000000,0.000000,0.250000,0,0);}
.m47_c01214{transform:matrix(0.294020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294020,0.000000,0.000000,0.250000,0,0);}
.m17_c01214{transform:matrix(0.294368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294368,0.000000,0.000000,0.250000,0,0);}
.m50_c01214{transform:matrix(0.294519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294519,0.000000,0.000000,0.250000,0,0);}
.m79_c01214{transform:matrix(0.294568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294568,0.000000,0.000000,0.250000,0,0);}
.m6b_c01214{transform:matrix(0.295917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295917,0.000000,0.000000,0.250000,0,0);}
.m1f_c01214{transform:matrix(0.296243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296243,0.000000,0.000000,0.250000,0,0);}
.m2a_c01214{transform:matrix(0.296291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296291,0.000000,0.000000,0.250000,0,0);}
.m6e_c01214{transform:matrix(0.296545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296545,0.000000,0.000000,0.250000,0,0);}
.m7_c01214{transform:matrix(0.296620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296620,0.000000,0.000000,0.250000,0,0);}
.m6c_c01214{transform:matrix(0.298574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298574,0.000000,0.000000,0.250000,0,0);}
.m10_c01214{transform:matrix(0.298598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298598,0.000000,0.000000,0.250000,0,0);}
.m4f_c01214{transform:matrix(0.298809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298809,0.000000,0.000000,0.250000,0,0);}
.m32_c01214{transform:matrix(0.299247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299247,0.000000,0.000000,0.250000,0,0);}
.m6_c01214{transform:matrix(0.300849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300849,0.000000,0.000000,0.250000,0,0);}
.m11_c01214{transform:matrix(0.301997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301997,0.000000,0.000000,0.250000,0,0);}
.m3d_c01214{transform:matrix(0.302688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302688,0.000000,0.000000,0.250000,0,0);}
.m67_c01214{transform:matrix(0.302805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302805,0.000000,0.000000,0.250000,0,0);}
.m81_c01214{transform:matrix(0.303102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303102,0.000000,0.000000,0.250000,0,0);}
.m14_c01214{transform:matrix(0.303290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303290,0.000000,0.000000,0.250000,0,0);}
.m65_c01214{transform:matrix(0.304268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304268,0.000000,0.000000,0.250000,0,0);}
.m77_c01214{transform:matrix(0.304330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304330,0.000000,0.000000,0.250000,0,0);}
.m4c_c01214{transform:matrix(0.305154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305154,0.000000,0.000000,0.250000,0,0);}
.m54_c01214{transform:matrix(0.305920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305920,0.000000,0.000000,0.250000,0,0);}
.m2e_c01214{transform:matrix(0.307260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307260,0.000000,0.000000,0.250000,0,0);}
.m39_c01214{transform:matrix(0.307374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307374,0.000000,0.000000,0.250000,0,0);}
.m74_c01214{transform:matrix(0.307737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307737,0.000000,0.000000,0.250000,0,0);}
.m3c_c01214{transform:matrix(0.308282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308282,0.000000,0.000000,0.250000,0,0);}
.m46_c01214{transform:matrix(0.308671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308671,0.000000,0.000000,0.250000,0,0);}
.m1e_c01214{transform:matrix(0.309086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309086,0.000000,0.000000,0.250000,0,0);}
.m71_c01214{transform:matrix(0.309804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309804,0.000000,0.000000,0.250000,0,0);}
.m72_c01214{transform:matrix(0.310193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310193,0.000000,0.000000,0.250000,0,0);}
.m8_c01214{transform:matrix(0.310380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310380,0.000000,0.000000,0.250000,0,0);}
.m27_c01214{transform:matrix(0.312345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312345,0.000000,0.000000,0.250000,0,0);}
.m4e_c01214{transform:matrix(0.315826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315826,0.000000,0.000000,0.250000,0,0);}
.m6a_c01214{transform:matrix(0.315874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315874,0.000000,0.000000,0.250000,0,0);}
.m57_c01214{transform:matrix(0.317302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317302,0.000000,0.000000,0.250000,0,0);}
.m18_c01214{transform:matrix(0.317670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317670,0.000000,0.000000,0.250000,0,0);}
.m76_c01214{transform:matrix(0.318343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318343,0.000000,0.000000,0.250000,0,0);}
.m5b_c01214{transform:matrix(0.320379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320379,0.000000,0.000000,0.250000,0,0);}
.m62_c01214{transform:matrix(0.320797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320797,0.000000,0.000000,0.250000,0,0);}
.m42_c01214{transform:matrix(0.321466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321466,0.000000,0.000000,0.250000,0,0);}
.m2_c01214{transform:matrix(0.321743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321743,0.000000,0.000000,0.250000,0,0);}
.m6d_c01214{transform:matrix(0.321901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321901,0.000000,0.000000,0.250000,0,0);}
.m33_c01214{transform:matrix(0.322841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322841,0.000000,0.000000,0.250000,0,0);}
.m37_c01214{transform:matrix(0.323284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323284,0.000000,0.000000,0.250000,0,0);}
.m1c_c01214{transform:matrix(0.324326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324326,0.000000,0.000000,0.250000,0,0);}
.m49_c01214{transform:matrix(0.324478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324478,0.000000,0.000000,0.250000,0,0);}
.m45_c01214{transform:matrix(0.327106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327106,0.000000,0.000000,0.250000,0,0);}
.m75_c01214{transform:matrix(0.327334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327334,0.000000,0.000000,0.250000,0,0);}
.m69_c01214{transform:matrix(0.327645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327645,0.000000,0.000000,0.250000,0,0);}
.m43_c01214{transform:matrix(0.328595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328595,0.000000,0.000000,0.250000,0,0);}
.mc_c01214{transform:matrix(0.328616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328616,0.000000,0.000000,0.250000,0,0);}
.m5_c01214{transform:matrix(0.330907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330907,0.000000,0.000000,0.250000,0,0);}
.m41_c01214{transform:matrix(0.331666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331666,0.000000,0.000000,0.250000,0,0);}
.m4_c01214{transform:matrix(0.334229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334229,0.000000,0.000000,0.250000,0,0);}
.m23_c01214{transform:matrix(0.338253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338253,0.000000,0.000000,0.250000,0,0);}
.m0_c01214{transform:matrix(0.339084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339084,0.000000,0.000000,0.250000,0,0);}
.m1a_c01214{transform:matrix(0.339648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339648,0.000000,0.000000,0.250000,0,0);}
.m73_c01214{transform:matrix(0.340297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340297,0.000000,0.000000,0.250000,0,0);}
.m4b_c01214{transform:matrix(0.341061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341061,0.000000,0.000000,0.250000,0,0);}
.m63_c01214{transform:matrix(0.341185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341185,0.000000,0.000000,0.250000,0,0);}
.m60_c01214{transform:matrix(0.343509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343509,0.000000,0.000000,0.250000,0,0);}
.m5a_c01214{transform:matrix(0.343932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343932,0.000000,0.000000,0.250000,0,0);}
.m13_c01214{transform:matrix(0.345748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345748,0.000000,0.000000,0.250000,0,0);}
.m80_c01214{transform:matrix(0.345832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345832,0.000000,0.000000,0.250000,0,0);}
.m58_c01214{transform:matrix(0.345980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345980,0.000000,0.000000,0.250000,0,0);}
.m70_c01214{transform:matrix(0.346913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346913,0.000000,0.000000,0.250000,0,0);}
.m48_c01214{transform:matrix(0.347984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347984,0.000000,0.000000,0.250000,0,0);}
.m4d_c01214{transform:matrix(0.351930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351930,0.000000,0.000000,0.250000,0,0);}
.m1d_c01214{transform:matrix(0.356639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356639,0.000000,0.000000,0.250000,0,0);}
.m85_c01214{transform:matrix(0.360209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360209,0.000000,0.000000,0.250000,0,0);}
.m2b_c01214{transform:matrix(0.361399,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361399,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361399,0.000000,0.000000,0.250000,0,0);}
.m16_c01214{transform:matrix(0.361413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361413,0.000000,0.000000,0.250000,0,0);}
.m26_c01214{transform:matrix(0.362699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362699,0.000000,0.000000,0.250000,0,0);}
.m56_c01214{transform:matrix(0.367188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367188,0.000000,0.000000,0.250000,0,0);}
.m83_c01214{transform:matrix(0.373848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373848,0.000000,0.000000,0.250000,0,0);}
.m31_c01214{transform:matrix(0.406076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406076,0.000000,0.000000,0.250000,0,0);}
.v0_c01214{vertical-align:0.000000px;}
.ls5_c01214{letter-spacing:-3.236317px;}
.ls2_c01214{letter-spacing:-2.564100px;}
.ls6_c01214{letter-spacing:-1.457874px;}
.lsb_c01214{letter-spacing:-0.131868px;}
.ls3_c01214{letter-spacing:0.000000px;}
.ls9_c01214{letter-spacing:0.417582px;}
.lse_c01214{letter-spacing:1.450548px;}
.lsa_c01214{letter-spacing:2.835162px;}
.ls7_c01214{letter-spacing:3.415500px;}
.ls0_c01214{letter-spacing:3.465198px;}
.lsd_c01214{letter-spacing:3.564000px;}
.lsc_c01214{letter-spacing:3.575088px;}
.ls1_c01214{letter-spacing:3.663000px;}
.lsf_c01214{letter-spacing:57.024198px;}
.ls8_c01214{letter-spacing:58.449798px;}
.ls4_c01214{letter-spacing:61.300998px;}
.sc__c01214{text-shadow:none;}
.sc0_c01214{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01214{-webkit-text-stroke:0px transparent;}
.sc0_c01214{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01214{word-spacing:0.000000px;}
._4_c01214{margin-left:-17.867520px;}
._5_c01214{width:3.956040px;}
._0_c01214{width:6.959700px;}
._2_c01214{width:11.282040px;}
._1_c01214{width:33.218856px;}
._3_c01214{width:44.304480px;}
.fc0_c01214{color:transparent;}
.fsa_c01214{font-size:22.176000px;}
.fs1_c01214{font-size:22.572000px;}
.fs5_c01214{font-size:25.938000px;}
.fsb_c01214{font-size:28.314000px;}
.fse_c01214{font-size:39.204000px;}
.fs9_c01214{font-size:45.144000px;}
.fsd_c01214{font-size:57.024198px;}
.fs7_c01214{font-size:58.449798px;}
.fs2_c01214{font-size:61.300998px;}
.fs8_c01214{font-size:68.112198px;}
.fs4_c01214{font-size:68.310000px;}
.fsc_c01214{font-size:71.280000px;}
.fs0_c01214{font-size:73.260000px;}
.fs6_c01214{font-size:79.200000px;}
.fs3_c01214{font-size:92.466198px;}
.y0_c01214{bottom:0.000000px;}
.y1c_c01214{bottom:59.782185px;}
.y1_c01214{bottom:76.500000px;}
.y1b_c01214{bottom:90.793935px;}
.y1a_c01214{bottom:125.008335px;}
.y19_c01214{bottom:157.079385px;}
.y18_c01214{bottom:221.236335px;}
.y17_c01214{bottom:253.312335px;}
.y16_c01214{bottom:285.388335px;}
.y15_c01214{bottom:347.758335px;}
.y14_c01214{bottom:380.542185px;}
.y13_c01214{bottom:404.782335px;}
.y12_c01214{bottom:419.751135px;}
.y11_c01214{bottom:443.629935px;}
.y10_c01214{bottom:475.700985px;}
.yf_c01214{bottom:508.133385px;}
.ye_c01214{bottom:567.295785px;}
.yd_c01214{bottom:571.221135px;}
.yc_c01214{bottom:603.297135px;}
.yb_c01214{bottom:666.379935px;}
.ya_c01214{bottom:697.386735px;}
.y9_c01214{bottom:760.464585px;}
.y8_c01214{bottom:778.284585px;}
.y7_c01214{bottom:792.896985px;}
.y6_c01214{bottom:855.984735px;}
.y5_c01214{bottom:888.417135px;}
.y4_c01214{bottom:909.444735px;}
.y3_c01214{bottom:920.136735px;}
.y2_c01214{bottom:1056.989385px;}
.hb_c01214{height:23.128875px;}
.h3_c01214{height:23.541891px;}
.h7_c01214{height:27.052523px;}
.hc_c01214{height:29.530617px;}
.he_c01214{height:37.978116px;}
.hf_c01214{height:38.476582px;}
.h9_c01214{height:38.927565px;}
.h4_c01214{height:40.826465px;}
.ha_c01214{height:47.083781px;}
.hd_c01214{height:69.957422px;}
.h6_c01214{height:71.245195px;}
.h2_c01214{height:71.900684px;}
.h8_c01214{height:77.730469px;}
.h5_c01214{height:90.750517px;}
.h1_c01214{height:1110.000000px;}
.h0_c01214{height:1263.000000px;}
.w1_c01214{width:775.500000px;}
.w0_c01214{width:892.500000px;}
.x0_c01214{left:0.000000px;}
.x1_c01214{left:58.500000px;}
.x16_c01214{left:89.250135px;}
.x3_c01214{left:90.695535px;}
.x54_c01214{left:134.710935px;}
.x55_c01214{left:151.818135px;}
.x37_c01214{left:177.949185px;}
.x21_c01214{left:179.038185px;}
.x17_c01214{left:189.482685px;}
.x2c_c01214{left:191.645835px;}
.x4_c01214{left:200.144985px;}
.xd_c01214{left:201.852735px;}
.x22_c01214{left:221.202285px;}
.x46_c01214{left:223.400085px;}
.x4e_c01214{left:225.167235px;}
.xe_c01214{left:231.597285px;}
.x1f_c01214{left:234.631635px;}
.x42_c01214{left:246.041385px;}
.x5_c01214{left:247.323435px;}
.x18_c01214{left:255.995835px;}
.x3d_c01214{left:257.688735px;}
.x31_c01214{left:265.762185px;}
.x45_c01214{left:267.242235px;}
.x27_c01214{left:268.484685px;}
.x4d_c01214{left:278.280735px;}
.x4a_c01214{left:279.542985px;}
.x56_c01214{left:283.384185px;}
.xf_c01214{left:291.526935px;}
.x19_c01214{left:299.946885px;}
.x6_c01214{left:301.075485px;}
.x3e_c01214{left:312.861435px;}
.x32_c01214{left:321.063585px;}
.x2d_c01214{left:323.335635px;}
.x4b_c01214{left:324.558285px;}
.x1a_c01214{left:333.537585px;}
.x47_c01214{left:346.541235px;}
.x28_c01214{left:357.262935px;}
.x10_c01214{left:358.752885px;}
.x4f_c01214{left:368.103435px;}
.x33_c01214{left:370.014135px;}
.x38_c01214{left:380.052735px;}
.x11_c01214{left:387.646035px;}
.x51_c01214{left:389.472585px;}
.x4c_c01214{left:400.803135px;}
.x20_c01214{left:410.173485px;}
.x1b_c01214{left:413.178135px;}
.x7_c01214{left:423.112785px;}
.x23_c01214{left:446.956935px;}
.x52_c01214{left:448.065735px;}
.x34_c01214{left:457.272735px;}
.x29_c01214{left:466.643085px;}
.x48_c01214{left:478.572585px;}
.x35_c01214{left:480.834735px;}
.x12_c01214{left:487.853835px;}
.x2e_c01214{left:490.516935px;}
.x36_c01214{left:500.293185px;}
.x50_c01214{left:501.728685px;}
.x57_c01214{left:505.495635px;}
.x40_c01214{left:509.911035px;}
.x1c_c01214{left:512.940435px;}
.x8_c01214{left:523.320585px;}
.x39_c01214{left:524.369985px;}
.x24_c01214{left:534.710535px;}
.x2a_c01214{left:544.694685px;}
.x3f_c01214{left:545.892585px;}
.x3a_c01214{left:556.614285px;}
.x13_c01214{left:558.554685px;}
.x9_c01214{left:567.623085px;}
.x49_c01214{left:568.924935px;}
.x53_c01214{left:579.186285px;}
.x2f_c01214{left:589.982235px;}
.x1d_c01214{left:599.580285px;}
.x3b_c01214{left:600.609885px;}
.x25_c01214{left:610.816785px;}
.x30_c01214{left:623.587785px;}
.x14_c01214{left:625.533135px;}
.x2b_c01214{left:633.200685px;}
.x15_c01214{left:645.451935px;}
.xa_c01214{left:667.301235px;}
.x2_c01214{left:677.557635px;}
.x3c_c01214{left:679.403985px;}
.xb_c01214{left:689.407935px;}
.x26_c01214{left:700.461285px;}
.x43_c01214{left:702.451185px;}
.x41_c01214{left:703.703535px;}
.x1e_c01214{left:712.455135px;}
.x44_c01214{left:721.602735px;}
.xc_c01214{left:729.398985px;}
@media print{
.v0_c01214{vertical-align:0.000000pt;}
.ls5_c01214{letter-spacing:-2.876726pt;}
.ls2_c01214{letter-spacing:-2.279200pt;}
.ls6_c01214{letter-spacing:-1.295888pt;}
.lsb_c01214{letter-spacing:-0.117216pt;}
.ls3_c01214{letter-spacing:0.000000pt;}
.ls9_c01214{letter-spacing:0.371184pt;}
.lse_c01214{letter-spacing:1.289376pt;}
.lsa_c01214{letter-spacing:2.520144pt;}
.ls7_c01214{letter-spacing:3.036000pt;}
.ls0_c01214{letter-spacing:3.080176pt;}
.lsd_c01214{letter-spacing:3.168000pt;}
.lsc_c01214{letter-spacing:3.177856pt;}
.ls1_c01214{letter-spacing:3.256000pt;}
.lsf_c01214{letter-spacing:50.688176pt;}
.ls8_c01214{letter-spacing:51.955376pt;}
.ls4_c01214{letter-spacing:54.489776pt;}
.ws0_c01214{word-spacing:0.000000pt;}
._4_c01214{margin-left:-15.882240pt;}
._5_c01214{width:3.516480pt;}
._0_c01214{width:6.186400pt;}
._2_c01214{width:10.028480pt;}
._1_c01214{width:29.527872pt;}
._3_c01214{width:39.381760pt;}
.fsa_c01214{font-size:19.712000pt;}
.fs1_c01214{font-size:20.064000pt;}
.fs5_c01214{font-size:23.056000pt;}
.fsb_c01214{font-size:25.168000pt;}
.fse_c01214{font-size:34.848000pt;}
.fs9_c01214{font-size:40.128000pt;}
.fsd_c01214{font-size:50.688176pt;}
.fs7_c01214{font-size:51.955376pt;}
.fs2_c01214{font-size:54.489776pt;}
.fs8_c01214{font-size:60.544176pt;}
.fs4_c01214{font-size:60.720000pt;}
.fsc_c01214{font-size:63.360000pt;}
.fs0_c01214{font-size:65.120000pt;}
.fs6_c01214{font-size:70.400000pt;}
.fs3_c01214{font-size:82.192176pt;}
.y0_c01214{bottom:0.000000pt;}
.y1c_c01214{bottom:53.139720pt;}
.y1_c01214{bottom:68.000000pt;}
.y1b_c01214{bottom:80.705720pt;}
.y1a_c01214{bottom:111.118520pt;}
.y19_c01214{bottom:139.626120pt;}
.y18_c01214{bottom:196.654520pt;}
.y17_c01214{bottom:225.166520pt;}
.y16_c01214{bottom:253.678520pt;}
.y15_c01214{bottom:309.118520pt;}
.y14_c01214{bottom:338.259720pt;}
.y13_c01214{bottom:359.806520pt;}
.y12_c01214{bottom:373.112120pt;}
.y11_c01214{bottom:394.337720pt;}
.y10_c01214{bottom:422.845320pt;}
.yf_c01214{bottom:451.674120pt;}
.ye_c01214{bottom:504.262920pt;}
.yd_c01214{bottom:507.752120pt;}
.yc_c01214{bottom:536.264120pt;}
.yb_c01214{bottom:592.337720pt;}
.ya_c01214{bottom:619.899320pt;}
.y9_c01214{bottom:675.968520pt;}
.y8_c01214{bottom:691.808520pt;}
.y7_c01214{bottom:704.797320pt;}
.y6_c01214{bottom:760.875320pt;}
.y5_c01214{bottom:789.704120pt;}
.y4_c01214{bottom:808.395320pt;}
.y3_c01214{bottom:817.899320pt;}
.y2_c01214{bottom:939.546120pt;}
.hb_c01214{height:20.559000pt;}
.h3_c01214{height:20.926125pt;}
.h7_c01214{height:24.046688pt;}
.hc_c01214{height:26.249438pt;}
.he_c01214{height:33.758325pt;}
.hf_c01214{height:34.201406pt;}
.h9_c01214{height:34.602280pt;}
.h4_c01214{height:36.290191pt;}
.ha_c01214{height:41.852250pt;}
.hd_c01214{height:62.184375pt;}
.h6_c01214{height:63.329063pt;}
.h2_c01214{height:63.911719pt;}
.h8_c01214{height:69.093750pt;}
.h5_c01214{height:80.667126pt;}
.h1_c01214{height:986.666667pt;}
.h0_c01214{height:1122.666667pt;}
.w1_c01214{width:689.333333pt;}
.w0_c01214{width:793.333333pt;}
.x0_c01214{left:0.000000pt;}
.x1_c01214{left:52.000000pt;}
.x16_c01214{left:79.333453pt;}
.x3_c01214{left:80.618253pt;}
.x54_c01214{left:119.743053pt;}
.x55_c01214{left:134.949453pt;}
.x37_c01214{left:158.177053pt;}
.x21_c01214{left:159.145053pt;}
.x17_c01214{left:168.429053pt;}
.x2c_c01214{left:170.351853pt;}
.x4_c01214{left:177.906653pt;}
.xd_c01214{left:179.424653pt;}
.x22_c01214{left:196.624253pt;}
.x46_c01214{left:198.577853pt;}
.x4e_c01214{left:200.148653pt;}
.xe_c01214{left:205.864253pt;}
.x1f_c01214{left:208.561453pt;}
.x42_c01214{left:218.703453pt;}
.x5_c01214{left:219.843053pt;}
.x18_c01214{left:227.551853pt;}
.x3d_c01214{left:229.056653pt;}
.x31_c01214{left:236.233053pt;}
.x45_c01214{left:237.548653pt;}
.x27_c01214{left:238.653053pt;}
.x4d_c01214{left:247.360653pt;}
.x4a_c01214{left:248.482653pt;}
.x56_c01214{left:251.897053pt;}
.xf_c01214{left:259.135053pt;}
.x19_c01214{left:266.619453pt;}
.x6_c01214{left:267.622653pt;}
.x3e_c01214{left:278.099053pt;}
.x32_c01214{left:285.389853pt;}
.x2d_c01214{left:287.409453pt;}
.x4b_c01214{left:288.496253pt;}
.x1a_c01214{left:296.477853pt;}
.x47_c01214{left:308.036653pt;}
.x28_c01214{left:317.567053pt;}
.x10_c01214{left:318.891453pt;}
.x4f_c01214{left:327.203053pt;}
.x33_c01214{left:328.901453pt;}
.x38_c01214{left:337.824653pt;}
.x11_c01214{left:344.574253pt;}
.x51_c01214{left:346.197853pt;}
.x4c_c01214{left:356.269453pt;}
.x20_c01214{left:364.598653pt;}
.x1b_c01214{left:367.269453pt;}
.x7_c01214{left:376.100253pt;}
.x23_c01214{left:397.295053pt;}
.x52_c01214{left:398.280653pt;}
.x34_c01214{left:406.464653pt;}
.x29_c01214{left:414.793853pt;}
.x48_c01214{left:425.397853pt;}
.x35_c01214{left:427.408653pt;}
.x12_c01214{left:433.647853pt;}
.x2e_c01214{left:436.015053pt;}
.x36_c01214{left:444.705053pt;}
.x50_c01214{left:445.981053pt;}
.x57_c01214{left:449.329453pt;}
.x40_c01214{left:453.254253pt;}
.x1c_c01214{left:455.947053pt;}
.x8_c01214{left:465.173853pt;}
.x39_c01214{left:466.106653pt;}
.x24_c01214{left:475.298253pt;}
.x2a_c01214{left:484.173053pt;}
.x3f_c01214{left:485.237853pt;}
.x3a_c01214{left:494.768253pt;}
.x13_c01214{left:496.493053pt;}
.x9_c01214{left:504.553853pt;}
.x49_c01214{left:505.711053pt;}
.x53_c01214{left:514.832253pt;}
.x2f_c01214{left:524.428653pt;}
.x1d_c01214{left:532.960253pt;}
.x3b_c01214{left:533.875453pt;}
.x25_c01214{left:542.948253pt;}
.x30_c01214{left:554.300253pt;}
.x14_c01214{left:556.029453pt;}
.x2b_c01214{left:562.845053pt;}
.x15_c01214{left:573.735053pt;}
.xa_c01214{left:593.156653pt;}
.x2_c01214{left:602.273453pt;}
.x3c_c01214{left:603.914653pt;}
.xb_c01214{left:612.807053pt;}
.x26_c01214{left:622.632253pt;}
.x43_c01214{left:624.401053pt;}
.x41_c01214{left:625.514253pt;}
.x1e_c01214{left:633.293453pt;}
.x44_c01214{left:641.424653pt;}
.xc_c01214{left:648.354653pt;}
}





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

.ir_c01215:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01215{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01215;src:url('chunks/assets/font_9953a7201bd6c41e7a955658.woff2')format("woff");}.ff1_c01215{font-family:ff1_c01215;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01215;src:url('chunks/assets/font_df1ad1bc10312745942f5228.woff2')format("woff");}.ff2_c01215{font-family:ff2_c01215;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01215;src:url('chunks/assets/font_d952ee83e3a3cc02ab51a1ed.woff2')format("woff");}.ff3_c01215{font-family:ff3_c01215;line-height:0.666000;font-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_c01215{transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);}
.m58_c01215{transform:matrix(0.228390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228390,0.000000,0.000000,0.250000,0,0);}
.m10_c01215{transform:matrix(0.231576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231576,0.000000,0.000000,0.250000,0,0);}
.m63_c01215{transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);}
.m21_c01215{transform:matrix(0.242483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242483,0.000000,0.000000,0.250000,0,0);}
.m20_c01215{transform:matrix(0.243660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243660,0.000000,0.000000,0.250000,0,0);}
.m0_c01215{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m6_c01215{transform:matrix(0.250778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250778,0.000000,0.000000,0.250000,0,0);}
.m3f_c01215{transform:matrix(0.250959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250959,0.000000,0.000000,0.250000,0,0);}
.m5_c01215{transform:matrix(0.255919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255919,0.000000,0.000000,0.250000,0,0);}
.mf_c01215{transform:matrix(0.263205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263205,0.000000,0.000000,0.250000,0,0);}
.m47_c01215{transform:matrix(0.264303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264303,0.000000,0.000000,0.250000,0,0);}
.m45_c01215{transform:matrix(0.264308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264308,0.000000,0.000000,0.250000,0,0);}
.m13_c01215{transform:matrix(0.264767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264767,0.000000,0.000000,0.250000,0,0);}
.m11_c01215{transform:matrix(0.265001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265001,0.000000,0.000000,0.250000,0,0);}
.m2f_c01215{transform:matrix(0.273900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273900,0.000000,0.000000,0.250000,0,0);}
.m30_c01215{transform:matrix(0.274252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274252,0.000000,0.000000,0.250000,0,0);}
.m4_c01215{transform:matrix(0.276927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276927,0.000000,0.000000,0.250000,0,0);}
.m32_c01215{transform:matrix(0.278792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278792,0.000000,0.000000,0.250000,0,0);}
.m3a_c01215{transform:matrix(0.279850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279850,0.000000,0.000000,0.250000,0,0);}
.m16_c01215{transform:matrix(0.280851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280851,0.000000,0.000000,0.250000,0,0);}
.m24_c01215{transform:matrix(0.281872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281872,0.000000,0.000000,0.250000,0,0);}
.m4b_c01215{transform:matrix(0.282394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282394,0.000000,0.000000,0.250000,0,0);}
.m31_c01215{transform:matrix(0.282874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282874,0.000000,0.000000,0.250000,0,0);}
.m53_c01215{transform:matrix(0.284198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284198,0.000000,0.000000,0.250000,0,0);}
.m33_c01215{transform:matrix(0.287046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287046,0.000000,0.000000,0.250000,0,0);}
.m2c_c01215{transform:matrix(0.287120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287120,0.000000,0.000000,0.250000,0,0);}
.m1e_c01215{transform:matrix(0.287471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287471,0.000000,0.000000,0.250000,0,0);}
.m2_c01215{transform:matrix(0.289900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289900,0.000000,0.000000,0.250000,0,0);}
.me_c01215{transform:matrix(0.290708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290708,0.000000,0.000000,0.250000,0,0);}
.m49_c01215{transform:matrix(0.291368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291368,0.000000,0.000000,0.250000,0,0);}
.m2a_c01215{transform:matrix(0.291691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291691,0.000000,0.000000,0.250000,0,0);}
.m41_c01215{transform:matrix(0.292833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292833,0.000000,0.000000,0.250000,0,0);}
.m52_c01215{transform:matrix(0.293073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293073,0.000000,0.000000,0.250000,0,0);}
.m2b_c01215{transform:matrix(0.293391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293391,0.000000,0.000000,0.250000,0,0);}
.m44_c01215{transform:matrix(0.293962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293962,0.000000,0.000000,0.250000,0,0);}
.m50_c01215{transform:matrix(0.293980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293980,0.000000,0.000000,0.250000,0,0);}
.m17_c01215{transform:matrix(0.295122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295122,0.000000,0.000000,0.250000,0,0);}
.m1f_c01215{transform:matrix(0.295380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295380,0.000000,0.000000,0.250000,0,0);}
.m64_c01215{transform:matrix(0.295414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295414,0.000000,0.000000,0.250000,0,0);}
.m40_c01215{transform:matrix(0.295744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295744,0.000000,0.000000,0.250000,0,0);}
.m29_c01215{transform:matrix(0.295987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295987,0.000000,0.000000,0.250000,0,0);}
.m1c_c01215{transform:matrix(0.296188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296188,0.000000,0.000000,0.250000,0,0);}
.md_c01215{transform:matrix(0.297438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297438,0.000000,0.000000,0.250000,0,0);}
.m65_c01215{transform:matrix(0.297491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297491,0.000000,0.000000,0.250000,0,0);}
.m12_c01215{transform:matrix(0.297578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297578,0.000000,0.000000,0.250000,0,0);}
.m38_c01215{transform:matrix(0.298141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298141,0.000000,0.000000,0.250000,0,0);}
.m3e_c01215{transform:matrix(0.299184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299184,0.000000,0.000000,0.250000,0,0);}
.m2d_c01215{transform:matrix(0.299307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299307,0.000000,0.000000,0.250000,0,0);}
.m62_c01215{transform:matrix(0.299638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299638,0.000000,0.000000,0.250000,0,0);}
.m5e_c01215{transform:matrix(0.303075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303075,0.000000,0.000000,0.250000,0,0);}
.m35_c01215{transform:matrix(0.304591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304591,0.000000,0.000000,0.250000,0,0);}
.m37_c01215{transform:matrix(0.305078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305078,0.000000,0.000000,0.250000,0,0);}
.m14_c01215{transform:matrix(0.305971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305971,0.000000,0.000000,0.250000,0,0);}
.m48_c01215{transform:matrix(0.308445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308445,0.000000,0.000000,0.250000,0,0);}
.m4f_c01215{transform:matrix(0.308828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308828,0.000000,0.000000,0.250000,0,0);}
.m2e_c01215{transform:matrix(0.308832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308832,0.000000,0.000000,0.250000,0,0);}
.m36_c01215{transform:matrix(0.309559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309559,0.000000,0.000000,0.250000,0,0);}
.m57_c01215{transform:matrix(0.310008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310008,0.000000,0.000000,0.250000,0,0);}
.m4e_c01215{transform:matrix(0.310336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310336,0.000000,0.000000,0.250000,0,0);}
.m9_c01215{transform:matrix(0.310792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310792,0.000000,0.000000,0.250000,0,0);}
.mb_c01215{transform:matrix(0.312553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312553,0.000000,0.000000,0.250000,0,0);}
.m4c_c01215{transform:matrix(0.312618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312618,0.000000,0.000000,0.250000,0,0);}
.m3b_c01215{transform:matrix(0.313654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313654,0.000000,0.000000,0.250000,0,0);}
.m28_c01215{transform:matrix(0.313976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313976,0.000000,0.000000,0.250000,0,0);}
.m56_c01215{transform:matrix(0.315970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315970,0.000000,0.000000,0.250000,0,0);}
.m5d_c01215{transform:matrix(0.316198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316198,0.000000,0.000000,0.250000,0,0);}
.m4d_c01215{transform:matrix(0.316574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316574,0.000000,0.000000,0.250000,0,0);}
.m19_c01215{transform:matrix(0.317663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317663,0.000000,0.000000,0.250000,0,0);}
.m55_c01215{transform:matrix(0.317726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317726,0.000000,0.000000,0.250000,0,0);}
.m60_c01215{transform:matrix(0.318488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318488,0.000000,0.000000,0.250000,0,0);}
.m34_c01215{transform:matrix(0.321867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321867,0.000000,0.000000,0.250000,0,0);}
.m15_c01215{transform:matrix(0.323607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323607,0.000000,0.000000,0.250000,0,0);}
.m5a_c01215{transform:matrix(0.325079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325079,0.000000,0.000000,0.250000,0,0);}
.m51_c01215{transform:matrix(0.326527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326527,0.000000,0.000000,0.250000,0,0);}
.m22_c01215{transform:matrix(0.327211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327211,0.000000,0.000000,0.250000,0,0);}
.m5b_c01215{transform:matrix(0.327615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327615,0.000000,0.000000,0.250000,0,0);}
.m43_c01215{transform:matrix(0.329591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329591,0.000000,0.000000,0.250000,0,0);}
.m54_c01215{transform:matrix(0.330345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330345,0.000000,0.000000,0.250000,0,0);}
.m7_c01215{transform:matrix(0.330495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330495,0.000000,0.000000,0.250000,0,0);}
.m59_c01215{transform:matrix(0.331066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331066,0.000000,0.000000,0.250000,0,0);}
.m1b_c01215{transform:matrix(0.332238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332238,0.000000,0.000000,0.250000,0,0);}
.m27_c01215{transform:matrix(0.336293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336293,0.000000,0.000000,0.250000,0,0);}
.m46_c01215{transform:matrix(0.339750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339750,0.000000,0.000000,0.250000,0,0);}
.m23_c01215{transform:matrix(0.343148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343148,0.000000,0.000000,0.250000,0,0);}
.m61_c01215{transform:matrix(0.344595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344595,0.000000,0.000000,0.250000,0,0);}
.m39_c01215{transform:matrix(0.344770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344770,0.000000,0.000000,0.250000,0,0);}
.m1a_c01215{transform:matrix(0.345093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345093,0.000000,0.000000,0.250000,0,0);}
.m5f_c01215{transform:matrix(0.345654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345654,0.000000,0.000000,0.250000,0,0);}
.m3_c01215{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);}
.m5c_c01215{transform:matrix(0.362192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362192,0.000000,0.000000,0.250000,0,0);}
.m26_c01215{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);}
.m42_c01215{transform:matrix(0.378369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378369,0.000000,0.000000,0.250000,0,0);}
.m4a_c01215{transform:matrix(0.387262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387262,0.000000,0.000000,0.250000,0,0);}
.m3d_c01215{transform:matrix(0.387297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387297,0.000000,0.000000,0.250000,0,0);}
.m1d_c01215{transform:matrix(0.396984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396984,0.000000,0.000000,0.250000,0,0);}
.mc_c01215{transform:matrix(0.399148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399148,0.000000,0.000000,0.250000,0,0);}
.m25_c01215{transform:matrix(0.401732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401732,0.000000,0.000000,0.250000,0,0);}
.m18_c01215{transform:matrix(0.407295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407295,0.000000,0.000000,0.250000,0,0);}
.m8_c01215{transform:matrix(0.408109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408109,0.000000,0.000000,0.250000,0,0);}
.m3c_c01215{transform:matrix(0.408493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408493,0.000000,0.000000,0.250000,0,0);}
.ma_c01215{transform:matrix(0.418760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418760,0.000000,0.000000,0.250000,0,0);}
.v0_c01215{vertical-align:0.000000px;}
.ls4_c01215{letter-spacing:-2.591827px;}
.ls9_c01215{letter-spacing:-2.310429px;}
.lsc_c01215{letter-spacing:-1.577312px;}
.lsb_c01215{letter-spacing:-0.118484px;}
.ls0_c01215{letter-spacing:0.000000px;}
.ls3_c01215{letter-spacing:0.722146px;}
.lsd_c01215{letter-spacing:0.955273px;}
.ls8_c01215{letter-spacing:1.036731px;}
.ls7_c01215{letter-spacing:1.732821px;}
.ls6_c01215{letter-spacing:1.811700px;}
.ls5_c01215{letter-spacing:3.276900px;}
.ls2_c01215{letter-spacing:3.702610px;}
.ls1_c01215{letter-spacing:31.363200px;}
.lsa_c01215{letter-spacing:58.449798px;}
.sc__c01215{text-shadow:none;}
.sc0_c01215{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01215{-webkit-text-stroke:0px transparent;}
.sc0_c01215{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01215{word-spacing:-18.513050px;}
.ws1_c01215{word-spacing:0.000000px;}
._1_c01215{width:4.591125px;}
._0_c01215{width:29.837016px;}
._3_c01215{width:38.732779px;}
._2_c01215{width:43.542675px;}
.fc0_c01215{color:transparent;}
.fs1_c01215{font-size:26.928000px;}
.fs3_c01215{font-size:27.324000px;}
.fse_c01215{font-size:27.720000px;}
.fs0_c01215{font-size:28.314000px;}
.fs4_c01215{font-size:31.363200px;}
.fsa_c01215{font-size:33.264000px;}
.fs8_c01215{font-size:36.234000px;}
.fsb_c01215{font-size:38.808000px;}
.fs2_c01215{font-size:44.748000px;}
.fsd_c01215{font-size:58.449798px;}
.fs7_c01215{font-size:65.538000px;}
.fs5_c01215{font-size:74.052198px;}
.fs6_c01215{font-size:74.448000px;}
.fsc_c01215{font-size:74.844000px;}
.fs9_c01215{font-size:75.240000px;}
.y0_c01215{bottom:0.000000px;}
.y1_c01215{bottom:76.500000px;}
.y21_c01215{bottom:77.963520px;}
.y20_c01215{bottom:110.395920px;}
.y1f_c01215{bottom:142.471920px;}
.y1d_c01215{bottom:207.331770px;}
.y1e_c01215{bottom:229.789920px;}
.y1b_c01215{bottom:239.412720px;}
.y1c_c01215{bottom:239.769120px;}
.y1a_c01215{bottom:303.208320px;}
.y19_c01215{bottom:335.284320px;}
.y18_c01215{bottom:398.362170px;}
.y17_c01215{bottom:430.086720px;}
.y16_c01215{bottom:462.875520px;}
.y15_c01215{bottom:492.808170px;}
.y14_c01215{bottom:524.884170px;}
.y13_c01215{bottom:556.965120px;}
.y12_c01215{bottom:587.971920px;}
.y11_c01215{bottom:619.691520px;}
.y10_c01215{bottom:682.774320px;}
.ye_c01215{bottom:714.493920px;}
.yf_c01215{bottom:715.201770px;}
.yd_c01215{bottom:747.282720px;}
.yc_c01215{bottom:802.168320px;}
.yb_c01215{bottom:810.360570px;}
.y2_c01215{bottom:833.531520px;}
.y9_c01215{bottom:842.085120px;}
.ya_c01215{bottom:847.426170px;}
.y8_c01215{bottom:904.455120px;}
.y7_c01215{bottom:936.887520px;}
.y6_c01215{bottom:1063.404570px;}
.y5_c01215{bottom:1079.086170px;}
.y4_c01215{bottom:1089.421770px;}
.y3_c01215{bottom:1104.034170px;}
.h5_c01215{height:20.887891px;}
.h4_c01215{height:26.817012px;}
.hf_c01215{height:28.911094px;}
.h2_c01215{height:29.530617px;}
.hb_c01215{height:34.693313px;}
.h9_c01215{height:37.790930px;}
.he_c01215{height:38.927565px;}
.hc_c01215{height:40.475531px;}
.h3_c01215{height:43.917715px;}
.h8_c01215{height:68.354086px;}
.h6_c01215{height:72.678183px;}
.h7_c01215{height:73.066641px;}
.hd_c01215{height:73.455293px;}
.ha_c01215{height:78.472969px;}
.h1_c01215{height:1110.000000px;}
.h0_c01215{height:1263.000000px;}
.w1_c01215{width:775.500000px;}
.w0_c01215{width:892.500000px;}
.x0_c01215{left:0.000000px;}
.x2_c01215{left:57.193935px;}
.x1_c01215{left:58.500000px;}
.x3e_c01215{left:66.955335px;}
.x31_c01215{left:87.057285px;}
.x15_c01215{left:88.190835px;}
.x24_c01215{left:165.306885px;}
.x4a_c01215{left:177.013635px;}
.x3f_c01215{left:186.864135px;}
.x25_c01215{left:188.076885px;}
.x51_c01215{left:197.734335px;}
.x11_c01215{left:199.159935px;}
.x7_c01215{left:200.684535px;}
.x4b_c01215{left:220.811235px;}
.x32_c01215{left:222.523935px;}
.x16_c01215{left:231.948735px;}
.x44_c01215{left:233.889135px;}
.x30_c01215{left:244.076235px;}
.x12_c01215{left:254.040585px;}
.x45_c01215{left:265.024635px;}
.x8_c01215{left:267.415485px;}
.x4c_c01215{left:276.152235px;}
.x17_c01215{left:279.736035px;}
.x3b_c01215{left:287.492685px;}
.x33_c01215{left:288.695535px;}
.x46_c01215{left:298.253985px;}
.x9_c01215{left:299.610285px;}
.x43_c01215{left:309.450885px;}
.x26_c01215{left:310.975485px;}
.x36_c01215{left:320.697285px;}
.x13_c01215{left:322.553535px;}
.x2a_c01215{left:324.370185px;}
.xa_c01215{left:332.829735px;}
.x1e_c01215{left:343.328685px;}
.x49_c01215{left:353.842485px;}
.x3c_c01215{left:365.361135px;}
.x14_c01215{left:367.667835px;}
.x2b_c01215{left:376.810485px;}
.x18_c01215{left:378.245985px;}
.x37_c01215{left:387.957885px;}
.xb_c01215{left:402.570285px;}
.x19_c01215{left:411.173385px;}
.x4e_c01215{left:420.746685px;}
.x4d_c01215{left:421.999035px;}
.x40_c01215{left:433.888935px;}
.x1f_c01215{left:444.199785px;}
.x27_c01215{left:445.204635px;}
.x41_c01215{left:454.990785px;}
.x20_c01215{left:476.914335px;}
.xc_c01215{left:488.343885px;}
.x38_c01215{left:498.585435px;}
.x34_c01215{left:511.173285px;}
.x2c_c01215{left:513.262185px;}
.xd_c01215{left:520.216935px;}
.x4f_c01215{left:521.696985px;}
.x2d_c01215{left:531.681135px;}
.x42_c01215{left:533.027535px;}
.x39_c01215{left:543.358185px;}
.x21_c01215{left:544.590735px;}
.x2e_c01215{left:575.468835px;}
.x28_c01215{left:577.092435px;}
.x1a_c01215{left:588.229935px;}
.x29_c01215{left:610.257435px;}
.x1b_c01215{left:620.929635px;}
.x35_c01215{left:631.641435px;}
.x50_c01215{left:641.818635px;}
.xe_c01215{left:654.604485px;}
.x2f_c01215{left:664.979685px;}
.x5_c01215{left:666.197385px;}
.x3a_c01215{left:675.275685px;}
.xf_c01215{left:687.700185px;}
.x47_c01215{left:698.040735px;}
.x3d_c01215{left:705.505335px;}
.x23_c01215{left:706.554735px;}
.x3_c01215{left:709.752435px;}
.x4_c01215{left:711.361185px;}
.x6_c01215{left:713.994585px;}
.x22_c01215{left:715.355835px;}
.x10_c01215{left:721.226535px;}
.x1c_c01215{left:724.127235px;}
.x1d_c01215{left:735.373635px;}
.x48_c01215{left:743.570835px;}
@media print{
.v0_c01215{vertical-align:0.000000pt;}
.ls4_c01215{letter-spacing:-2.303846pt;}
.ls9_c01215{letter-spacing:-2.053714pt;}
.lsc_c01215{letter-spacing:-1.402055pt;}
.lsb_c01215{letter-spacing:-0.105319pt;}
.ls0_c01215{letter-spacing:0.000000pt;}
.ls3_c01215{letter-spacing:0.641907pt;}
.lsd_c01215{letter-spacing:0.849132pt;}
.ls8_c01215{letter-spacing:0.921538pt;}
.ls7_c01215{letter-spacing:1.540286pt;}
.ls6_c01215{letter-spacing:1.610400pt;}
.ls5_c01215{letter-spacing:2.912800pt;}
.ls2_c01215{letter-spacing:3.291209pt;}
.ls1_c01215{letter-spacing:27.878400pt;}
.lsa_c01215{letter-spacing:51.955376pt;}
.ws0_c01215{word-spacing:-16.456044pt;}
.ws1_c01215{word-spacing:0.000000pt;}
._1_c01215{width:4.081000pt;}
._0_c01215{width:26.521792pt;}
._3_c01215{width:34.429137pt;}
._2_c01215{width:38.704600pt;}
.fs1_c01215{font-size:23.936000pt;}
.fs3_c01215{font-size:24.288000pt;}
.fse_c01215{font-size:24.640000pt;}
.fs0_c01215{font-size:25.168000pt;}
.fs4_c01215{font-size:27.878400pt;}
.fsa_c01215{font-size:29.568000pt;}
.fs8_c01215{font-size:32.208000pt;}
.fsb_c01215{font-size:34.496000pt;}
.fs2_c01215{font-size:39.776000pt;}
.fsd_c01215{font-size:51.955376pt;}
.fs7_c01215{font-size:58.256000pt;}
.fs5_c01215{font-size:65.824176pt;}
.fs6_c01215{font-size:66.176000pt;}
.fsc_c01215{font-size:66.528000pt;}
.fs9_c01215{font-size:66.880000pt;}
.y0_c01215{bottom:0.000000pt;}
.y1_c01215{bottom:68.000000pt;}
.y21_c01215{bottom:69.300907pt;}
.y20_c01215{bottom:98.129707pt;}
.y1f_c01215{bottom:126.641707pt;}
.y1d_c01215{bottom:184.294907pt;}
.y1e_c01215{bottom:204.257707pt;}
.y1b_c01215{bottom:212.811307pt;}
.y1c_c01215{bottom:213.128107pt;}
.y1a_c01215{bottom:269.518507pt;}
.y19_c01215{bottom:298.030507pt;}
.y18_c01215{bottom:354.099707pt;}
.y17_c01215{bottom:382.299307pt;}
.y16_c01215{bottom:411.444907pt;}
.y15_c01215{bottom:438.051707pt;}
.y14_c01215{bottom:466.563707pt;}
.y13_c01215{bottom:495.080107pt;}
.y12_c01215{bottom:522.641707pt;}
.y11_c01215{bottom:550.836907pt;}
.y10_c01215{bottom:606.910507pt;}
.ye_c01215{bottom:635.105707pt;}
.yf_c01215{bottom:635.734907pt;}
.yd_c01215{bottom:664.251307pt;}
.yc_c01215{bottom:713.038507pt;}
.yb_c01215{bottom:720.320507pt;}
.y2_c01215{bottom:740.916907pt;}
.y9_c01215{bottom:748.520107pt;}
.ya_c01215{bottom:753.267707pt;}
.y8_c01215{bottom:803.960107pt;}
.y7_c01215{bottom:832.788907pt;}
.y6_c01215{bottom:945.248507pt;}
.y5_c01215{bottom:959.187707pt;}
.y4_c01215{bottom:968.374907pt;}
.y3_c01215{bottom:981.363707pt;}
.h5_c01215{height:18.567014pt;}
.h4_c01215{height:23.837344pt;}
.hf_c01215{height:25.698750pt;}
.h2_c01215{height:26.249438pt;}
.hb_c01215{height:30.838500pt;}
.h9_c01215{height:33.591938pt;}
.he_c01215{height:34.602280pt;}
.hc_c01215{height:35.978250pt;}
.h3_c01215{height:39.037969pt;}
.h8_c01215{height:60.759188pt;}
.h6_c01215{height:64.602829pt;}
.h7_c01215{height:64.948125pt;}
.hd_c01215{height:65.293594pt;}
.ha_c01215{height:69.753750pt;}
.h1_c01215{height:986.666667pt;}
.h0_c01215{height:1122.666667pt;}
.w1_c01215{width:689.333333pt;}
.w0_c01215{width:793.333333pt;}
.x0_c01215{left:0.000000pt;}
.x2_c01215{left:50.839053pt;}
.x1_c01215{left:52.000000pt;}
.x3e_c01215{left:59.515853pt;}
.x31_c01215{left:77.384253pt;}
.x15_c01215{left:78.391853pt;}
.x24_c01215{left:146.939453pt;}
.x4a_c01215{left:157.345453pt;}
.x3f_c01215{left:166.101453pt;}
.x25_c01215{left:167.179453pt;}
.x51_c01215{left:175.763853pt;}
.x11_c01215{left:177.031053pt;}
.x7_c01215{left:178.386253pt;}
.x4b_c01215{left:196.276653pt;}
.x32_c01215{left:197.799053pt;}
.x16_c01215{left:206.176653pt;}
.x44_c01215{left:207.901453pt;}
.x30_c01215{left:216.956653pt;}
.x12_c01215{left:225.813853pt;}
.x45_c01215{left:235.577453pt;}
.x8_c01215{left:237.702653pt;}
.x4c_c01215{left:245.468653pt;}
.x17_c01215{left:248.654253pt;}
.x3b_c01215{left:255.549053pt;}
.x33_c01215{left:256.618253pt;}
.x46_c01215{left:265.114653pt;}
.x9_c01215{left:266.320253pt;}
.x43_c01215{left:275.067453pt;}
.x26_c01215{left:276.422653pt;}
.x36_c01215{left:285.064253pt;}
.x13_c01215{left:286.714253pt;}
.x2a_c01215{left:288.329053pt;}
.xa_c01215{left:295.848653pt;}
.x1e_c01215{left:305.181053pt;}
.x49_c01215{left:314.526653pt;}
.x3c_c01215{left:324.765453pt;}
.x14_c01215{left:326.815853pt;}
.x2b_c01215{left:334.942653pt;}
.x18_c01215{left:336.218653pt;}
.x37_c01215{left:344.851453pt;}
.xb_c01215{left:357.840253pt;}
.x19_c01215{left:365.487453pt;}
.x4e_c01215{left:373.997053pt;}
.x4d_c01215{left:375.110253pt;}
.x40_c01215{left:385.679053pt;}
.x1f_c01215{left:394.844253pt;}
.x27_c01215{left:395.737453pt;}
.x41_c01215{left:404.436253pt;}
.x20_c01215{left:423.923853pt;}
.xc_c01215{left:434.083453pt;}
.x38_c01215{left:443.187053pt;}
.x34_c01215{left:454.376253pt;}
.x2c_c01215{left:456.233053pt;}
.xd_c01215{left:462.415053pt;}
.x4f_c01215{left:463.730653pt;}
.x2d_c01215{left:472.605453pt;}
.x42_c01215{left:473.802253pt;}
.x39_c01215{left:482.985053pt;}
.x21_c01215{left:484.080653pt;}
.x2e_c01215{left:511.527853pt;}
.x28_c01215{left:512.971053pt;}
.x1a_c01215{left:522.871053pt;}
.x29_c01215{left:542.451053pt;}
.x1b_c01215{left:551.937453pt;}
.x35_c01215{left:561.459053pt;}
.x50_c01215{left:570.505453pt;}
.xe_c01215{left:581.870653pt;}
.x2f_c01215{left:591.093053pt;}
.x5_c01215{left:592.175453pt;}
.x3a_c01215{left:600.245053pt;}
.xf_c01215{left:611.289053pt;}
.x47_c01215{left:620.480653pt;}
.x3d_c01215{left:627.115853pt;}
.x23_c01215{left:628.048653pt;}
.x3_c01215{left:630.891053pt;}
.x4_c01215{left:632.321053pt;}
.x6_c01215{left:634.661853pt;}
.x22_c01215{left:635.871853pt;}
.x10_c01215{left:641.090253pt;}
.x1c_c01215{left:643.668653pt;}
.x1d_c01215{left:653.665453pt;}
.x48_c01215{left:660.951853pt;}
}





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

.ir_c01216:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01216{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01216;src:url('chunks/assets/font_a4995f725a63e8fa54aae05e.woff2')format("woff");}.ff1_c01216{font-family:ff1_c01216;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01216;src:url('chunks/assets/font_db8f06aec8fc84b3903fad7a.woff2')format("woff");}.ff2_c01216{font-family:ff2_c01216;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01216;src:url('chunks/assets/font_9a1cae1288ef6f20f0075396.woff2')format("woff");}.ff3_c01216{font-family:ff3_c01216;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01216;src:url('chunks/assets/font_416a9f1399f7a4924a1b78fe.woff2')format("woff");}.ff4_c01216{font-family:ff4_c01216;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m74_c01216{transform:matrix(0.047620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.047620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.047620,0.000000,0.000000,0.250000,0,0);}
.m75_c01216{transform:matrix(0.059524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.059524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.059524,0.000000,0.000000,0.250000,0,0);}
.me_c01216{transform:matrix(0.195713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195713,0.000000,0.000000,0.250000,0,0);}
.m4_c01216{transform:matrix(0.196154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196154,0.000000,0.000000,0.250000,0,0);}
.m1b_c01216{transform:matrix(0.219218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219218,0.000000,0.000000,0.250000,0,0);}
.md_c01216{transform:matrix(0.220235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220235,0.000000,0.000000,0.250000,0,0);}
.m5a_c01216{transform:matrix(0.226257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226257,0.000000,0.000000,0.250000,0,0);}
.m3e_c01216{transform:matrix(0.231471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231471,0.000000,0.000000,0.250000,0,0);}
.m27_c01216{transform:matrix(0.232675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232675,0.000000,0.000000,0.250000,0,0);}
.m40_c01216{transform:matrix(0.233902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233902,0.000000,0.000000,0.250000,0,0);}
.m37_c01216{transform:matrix(0.234099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234099,0.000000,0.000000,0.250000,0,0);}
.m28_c01216{transform:matrix(0.236588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236588,0.000000,0.000000,0.250000,0,0);}
.m4d_c01216{transform:matrix(0.238042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238042,0.000000,0.000000,0.250000,0,0);}
.m1_c01216{transform:matrix(0.240406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240406,0.000000,0.000000,0.250000,0,0);}
.m62_c01216{transform:matrix(0.241092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241092,0.000000,0.000000,0.250000,0,0);}
.m2_c01216{transform:matrix(0.241112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241112,0.000000,0.000000,0.250000,0,0);}
.m29_c01216{transform:matrix(0.245874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245874,0.000000,0.000000,0.250000,0,0);}
.m0_c01216{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m52_c01216{transform:matrix(0.252685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252685,0.000000,0.000000,0.250000,0,0);}
.m31_c01216{transform:matrix(0.254400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254400,0.000000,0.000000,0.250000,0,0);}
.mf_c01216{transform:matrix(0.255501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255501,0.000000,0.000000,0.250000,0,0);}
.m5b_c01216{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m33_c01216{transform:matrix(0.265460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265460,0.000000,0.000000,0.250000,0,0);}
.m14_c01216{transform:matrix(0.266590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266590,0.000000,0.000000,0.250000,0,0);}
.m42_c01216{transform:matrix(0.266988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266988,0.000000,0.000000,0.250000,0,0);}
.m3d_c01216{transform:matrix(0.269175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269175,0.000000,0.000000,0.250000,0,0);}
.m6c_c01216{transform:matrix(0.270287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270287,0.000000,0.000000,0.250000,0,0);}
.m6_c01216{transform:matrix(0.271350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271350,0.000000,0.000000,0.250000,0,0);}
.m5c_c01216{transform:matrix(0.272374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272374,0.000000,0.000000,0.250000,0,0);}
.m12_c01216{transform:matrix(0.273274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273274,0.000000,0.000000,0.250000,0,0);}
.m16_c01216{transform:matrix(0.275114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275114,0.000000,0.000000,0.250000,0,0);}
.m2c_c01216{transform:matrix(0.278154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278154,0.000000,0.000000,0.250000,0,0);}
.m58_c01216{transform:matrix(0.279684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279684,0.000000,0.000000,0.250000,0,0);}
.m8_c01216{transform:matrix(0.279941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279941,0.000000,0.000000,0.250000,0,0);}
.m49_c01216{transform:matrix(0.280365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280365,0.000000,0.000000,0.250000,0,0);}
.m71_c01216{transform:matrix(0.280452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280452,0.000000,0.000000,0.250000,0,0);}
.m24_c01216{transform:matrix(0.281208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281208,0.000000,0.000000,0.250000,0,0);}
.m36_c01216{transform:matrix(0.281508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281508,0.000000,0.000000,0.250000,0,0);}
.m70_c01216{transform:matrix(0.281580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281580,0.000000,0.000000,0.250000,0,0);}
.m13_c01216{transform:matrix(0.281819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281819,0.000000,0.000000,0.250000,0,0);}
.m2d_c01216{transform:matrix(0.282143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282143,0.000000,0.000000,0.250000,0,0);}
.m53_c01216{transform:matrix(0.282427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282427,0.000000,0.000000,0.250000,0,0);}
.m1d_c01216{transform:matrix(0.282523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282523,0.000000,0.000000,0.250000,0,0);}
.m3_c01216{transform:matrix(0.282869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282869,0.000000,0.000000,0.250000,0,0);}
.m4a_c01216{transform:matrix(0.283933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283933,0.000000,0.000000,0.250000,0,0);}
.m17_c01216{transform:matrix(0.285007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285007,0.000000,0.000000,0.250000,0,0);}
.m35_c01216{transform:matrix(0.285981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285981,0.000000,0.000000,0.250000,0,0);}
.m25_c01216{transform:matrix(0.286339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286339,0.000000,0.000000,0.250000,0,0);}
.mc_c01216{transform:matrix(0.287524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287524,0.000000,0.000000,0.250000,0,0);}
.m23_c01216{transform:matrix(0.287843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287843,0.000000,0.000000,0.250000,0,0);}
.m44_c01216{transform:matrix(0.288086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288086,0.000000,0.000000,0.250000,0,0);}
.m20_c01216{transform:matrix(0.288667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288667,0.000000,0.000000,0.250000,0,0);}
.mb_c01216{transform:matrix(0.289207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289207,0.000000,0.000000,0.250000,0,0);}
.m3c_c01216{transform:matrix(0.289521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289521,0.000000,0.000000,0.250000,0,0);}
.m1c_c01216{transform:matrix(0.289941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289941,0.000000,0.000000,0.250000,0,0);}
.m46_c01216{transform:matrix(0.290573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290573,0.000000,0.000000,0.250000,0,0);}
.m10_c01216{transform:matrix(0.291504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291504,0.000000,0.000000,0.250000,0,0);}
.m3a_c01216{transform:matrix(0.291641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291641,0.000000,0.000000,0.250000,0,0);}
.m9_c01216{transform:matrix(0.291733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291733,0.000000,0.000000,0.250000,0,0);}
.m2a_c01216{transform:matrix(0.292931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292931,0.000000,0.000000,0.250000,0,0);}
.m19_c01216{transform:matrix(0.293514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293514,0.000000,0.000000,0.250000,0,0);}
.m6b_c01216{transform:matrix(0.293547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293547,0.000000,0.000000,0.250000,0,0);}
.m5_c01216{transform:matrix(0.293800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293800,0.000000,0.000000,0.250000,0,0);}
.m4f_c01216{transform:matrix(0.293815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293815,0.000000,0.000000,0.250000,0,0);}
.m1a_c01216{transform:matrix(0.293943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293943,0.000000,0.000000,0.250000,0,0);}
.m34_c01216{transform:matrix(0.294353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294353,0.000000,0.000000,0.250000,0,0);}
.m6d_c01216{transform:matrix(0.294447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294447,0.000000,0.000000,0.250000,0,0);}
.m2b_c01216{transform:matrix(0.295011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295011,0.000000,0.000000,0.250000,0,0);}
.m47_c01216{transform:matrix(0.296136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296136,0.000000,0.000000,0.250000,0,0);}
.ma_c01216{transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296860,0.000000,0.000000,0.250000,0,0);}
.m66_c01216{transform:matrix(0.297042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297042,0.000000,0.000000,0.250000,0,0);}
.m63_c01216{transform:matrix(0.297349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297349,0.000000,0.000000,0.250000,0,0);}
.m60_c01216{transform:matrix(0.298394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298394,0.000000,0.000000,0.250000,0,0);}
.m4c_c01216{transform:matrix(0.299241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299241,0.000000,0.000000,0.250000,0,0);}
.m6e_c01216{transform:matrix(0.299303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299303,0.000000,0.000000,0.250000,0,0);}
.m5f_c01216{transform:matrix(0.302460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302460,0.000000,0.000000,0.250000,0,0);}
.m3f_c01216{transform:matrix(0.302478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302478,0.000000,0.000000,0.250000,0,0);}
.m7_c01216{transform:matrix(0.302654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302654,0.000000,0.000000,0.250000,0,0);}
.m39_c01216{transform:matrix(0.303245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303245,0.000000,0.000000,0.250000,0,0);}
.m22_c01216{transform:matrix(0.303598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303598,0.000000,0.000000,0.250000,0,0);}
.m54_c01216{transform:matrix(0.304842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304842,0.000000,0.000000,0.250000,0,0);}
.m38_c01216{transform:matrix(0.305055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305055,0.000000,0.000000,0.250000,0,0);}
.m2e_c01216{transform:matrix(0.306601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306601,0.000000,0.000000,0.250000,0,0);}
.m15_c01216{transform:matrix(0.306689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306689,0.000000,0.000000,0.250000,0,0);}
.m2f_c01216{transform:matrix(0.307006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307006,0.000000,0.000000,0.250000,0,0);}
.m65_c01216{transform:matrix(0.308435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308435,0.000000,0.000000,0.250000,0,0);}
.m43_c01216{transform:matrix(0.308906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308906,0.000000,0.000000,0.250000,0,0);}
.m30_c01216{transform:matrix(0.309091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309091,0.000000,0.000000,0.250000,0,0);}
.m73_c01216{transform:matrix(0.309341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309341,0.000000,0.000000,0.250000,0,0);}
.m21_c01216{transform:matrix(0.311234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311234,0.000000,0.000000,0.250000,0,0);}
.m32_c01216{transform:matrix(0.311758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311758,0.000000,0.000000,0.250000,0,0);}
.m11_c01216{transform:matrix(0.312250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312250,0.000000,0.000000,0.250000,0,0);}
.m41_c01216{transform:matrix(0.312770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312770,0.000000,0.000000,0.250000,0,0);}
.m67_c01216{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m1e_c01216{transform:matrix(0.313583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313583,0.000000,0.000000,0.250000,0,0);}
.m56_c01216{transform:matrix(0.313832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313832,0.000000,0.000000,0.250000,0,0);}
.m59_c01216{transform:matrix(0.314600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314600,0.000000,0.000000,0.250000,0,0);}
.m68_c01216{transform:matrix(0.316140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316140,0.000000,0.000000,0.250000,0,0);}
.m4e_c01216{transform:matrix(0.316450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316450,0.000000,0.000000,0.250000,0,0);}
.m72_c01216{transform:matrix(0.318471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318471,0.000000,0.000000,0.250000,0,0);}
.m5d_c01216{transform:matrix(0.318493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318493,0.000000,0.000000,0.250000,0,0);}
.m5e_c01216{transform:matrix(0.320787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320787,0.000000,0.000000,0.250000,0,0);}
.m18_c01216{transform:matrix(0.323231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323231,0.000000,0.000000,0.250000,0,0);}
.m26_c01216{transform:matrix(0.328549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328549,0.000000,0.000000,0.250000,0,0);}
.m48_c01216{transform:matrix(0.331201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331201,0.000000,0.000000,0.250000,0,0);}
.m45_c01216{transform:matrix(0.333862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333862,0.000000,0.000000,0.250000,0,0);}
.m4b_c01216{transform:matrix(0.334853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334853,0.000000,0.000000,0.250000,0,0);}
.m3b_c01216{transform:matrix(0.336689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336689,0.000000,0.000000,0.250000,0,0);}
.m6f_c01216{transform:matrix(0.337919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337919,0.000000,0.000000,0.250000,0,0);}
.m69_c01216{transform:matrix(0.338602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338602,0.000000,0.000000,0.250000,0,0);}
.m6a_c01216{transform:matrix(0.339587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339587,0.000000,0.000000,0.250000,0,0);}
.m50_c01216{transform:matrix(0.339719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339719,0.000000,0.000000,0.250000,0,0);}
.m51_c01216{transform:matrix(0.342090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342090,0.000000,0.000000,0.250000,0,0);}
.m1f_c01216{transform:matrix(0.351479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351479,0.000000,0.000000,0.250000,0,0);}
.m55_c01216{transform:matrix(0.357070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357070,0.000000,0.000000,0.250000,0,0);}
.m57_c01216{transform:matrix(0.365542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365542,0.000000,0.000000,0.250000,0,0);}
.m64_c01216{transform:matrix(0.396432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396432,0.000000,0.000000,0.250000,0,0);}
.m61_c01216{transform:matrix(0.402942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402942,0.000000,0.000000,0.250000,0,0);}
.v0_c01216{vertical-align:0.000000px;}
.ls2_c01216{letter-spacing:-2.626477px;}
.ls6_c01216{letter-spacing:-1.958601px;}
.ls8_c01216{letter-spacing:-1.740979px;}
.lsc_c01216{letter-spacing:-1.244113px;}
.ls9_c01216{letter-spacing:-1.110625px;}
.lse_c01216{letter-spacing:-0.721989px;}
.ls5_c01216{letter-spacing:-0.292665px;}
.ls0_c01216{letter-spacing:0.000000px;}
.lsd_c01216{letter-spacing:0.757926px;}
.ls7_c01216{letter-spacing:1.193171px;}
.lsf_c01216{letter-spacing:2.334460px;}
.ls1_c01216{letter-spacing:2.465938px;}
.lsb_c01216{letter-spacing:3.494700px;}
.ls3_c01216{letter-spacing:3.752110px;}
.lsa_c01216{letter-spacing:3.880810px;}
.ls10_c01216{letter-spacing:4.217400px;}
.ls4_c01216{letter-spacing:55.598598px;}
.ls11_c01216{letter-spacing:59.875398px;}
.sc__c01216{text-shadow:none;}
.sc0_c01216{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01216{-webkit-text-stroke:0px transparent;}
.sc0_c01216{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01216{word-spacing:0.000000px;}
._2_c01216{margin-left:-40.174200px;}
._9_c01216{margin-left:-23.587047px;}
._7_c01216{margin-left:-21.263016px;}
._4_c01216{margin-left:-17.959788px;}
._c_c01216{margin-left:-16.430227px;}
._0_c01216{margin-left:-9.860142px;}
._3_c01216{margin-left:-1.215324px;}
._5_c01216{width:1.988316px;}
._8_c01216{width:3.301779px;}
._1_c01216{width:4.726191px;}
._a_c01216{width:6.528604px;}
._b_c01216{width:26.882741px;}
._6_c01216{width:40.510701px;}
.fc0_c01216{color:transparent;}
.fs5_c01216{font-size:22.176000px;}
.fs4_c01216{font-size:22.572000px;}
.fs0_c01216{font-size:27.720000px;}
.fsd_c01216{font-size:49.896198px;}
.fs3_c01216{font-size:55.598598px;}
.fs10_c01216{font-size:59.875398px;}
.fs9_c01216{font-size:66.330000px;}
.fs8_c01216{font-size:67.518000px;}
.fsc_c01216{font-size:68.112198px;}
.fsb_c01216{font-size:69.894000px;}
.fs7_c01216{font-size:74.844000px;}
.fs2_c01216{font-size:75.042198px;}
.fsa_c01216{font-size:77.616198px;}
.fs1_c01216{font-size:80.586198px;}
.fse_c01216{font-size:84.348000px;}
.fsf_c01216{font-size:100.188000px;}
.fs6_c01216{font-size:142.560000px;}
.y0_c01216{bottom:0.000000px;}
.y1c_c01216{bottom:59.787135px;}
.y1_c01216{bottom:76.500000px;}
.y1b_c01216{bottom:77.245785px;}
.y1d_c01216{bottom:83.665935px;}
.y18_c01216{bottom:92.575935px;}
.y1a_c01216{bottom:92.932335px;}
.y19_c01216{bottom:146.743785px;}
.y17_c01216{bottom:156.722985px;}
.y16_c01216{bottom:189.873135px;}
.y15_c01216{bottom:252.599535px;}
.y14_c01216{bottom:315.682335px;}
.y13_c01216{bottom:347.758335px;}
.y12_c01216{bottom:411.553935px;}
.y11_c01216{bottom:443.629935px;}
.y10_c01216{bottom:507.064185px;}
.yf_c01216{bottom:538.788735px;}
.ye_c01216{bottom:601.515135px;}
.yd_c01216{bottom:634.303935px;}
.yc_c01216{bottom:697.025385px;}
.yb_c01216{bottom:729.106335px;}
.ya_c01216{bottom:792.901935px;}
.y9_c01216{bottom:824.972985px;}
.y2_c01216{bottom:827.824185px;}
.y8_c01216{bottom:861.332220px;}
.y7_c01216{bottom:882.709785px;}
.y5_c01216{bottom:888.768585px;}
.y6_c01216{bottom:903.737385px;}
.y4_c01216{bottom:920.849535px;}
.y3_c01216{bottom:1057.707135px;}
.h7_c01216{height:23.128875px;}
.h6_c01216{height:23.541891px;}
.h2_c01216{height:28.911094px;}
.h5_c01216{height:37.028666px;}
.h11_c01216{height:39.877015px;}
.he_c01216{height:52.040175px;}
.hc_c01216{height:68.597139px;}
.ha_c01216{height:69.180117px;}
.hd_c01216{height:71.038894px;}
.h9_c01216{height:73.455293px;}
.h4_c01216{height:73.649813px;}
.hb_c01216{height:76.138155px;}
.h3_c01216{height:79.090946px;}
.hf_c01216{height:82.782949px;}
.h10_c01216{height:104.492953px;}
.h8_c01216{height:139.914844px;}
.h1_c01216{height:1110.000000px;}
.h0_c01216{height:1263.000000px;}
.w1_c01216{width:775.500000px;}
.w0_c01216{width:892.500000px;}
.x0_c01216{left:0.000000px;}
.x2_c01216{left:15.559485px;}
.x1_c01216{left:58.500000px;}
.x4_c01216{left:90.423285px;}
.x2c_c01216{left:102.233985px;}
.x4d_c01216{left:122.137935px;}
.x3d_c01216{left:144.209985px;}
.x2d_c01216{left:145.650435px;}
.x33_c01216{left:166.663185px;}
.x50_c01216{left:177.770985px;}
.x5_c01216{left:178.850085px;}
.x3e_c01216{left:189.413385px;}
.x6_c01216{left:200.531085px;}
.x1d_c01216{left:201.862635px;}
.x42_c01216{left:203.590185px;}
.x4e_c01216{left:211.232985px;}
.x34_c01216{left:214.881135px;}
.x51_c01216{left:223.766385px;}
.x1e_c01216{left:233.057535px;}
.x3f_c01216{left:234.715785px;}
.x14_c01216{left:236.126535px;}
.x32_c01216{left:244.729635px;}
.x46_c01216{left:246.392835px;}
.x12_c01216{left:247.907535px;}
.x24_c01216{left:257.193735px;}
.x35_c01216{left:267.247185px;}
.x47_c01216{left:278.538135px;}
.x15_c01216{left:279.963735px;}
.xf_c01216{left:289.279635px;}
.x1f_c01216{left:290.700285px;}
.x2e_c01216{left:293.358435px;}
.x43_c01216{left:302.461485px;}
.x4b_c01216{left:304.406835px;}
.x7_c01216{left:313.212885px;}
.x4c_c01216{left:323.197035px;}
.x54_c01216{left:324.256335px;}
.x59_c01216{left:325.345335px;}
.x29_c01216{left:333.829635px;}
.x36_c01216{left:346.922385px;}
.x8_c01216{left:357.099585px;}
.x16_c01216{left:359.579535px;}
.x5a_c01216{left:367.375785px;}
.x3a_c01216{left:368.737035px;}
.x10_c01216{left:379.151835px;}
.x44_c01216{left:390.472485px;}
.x2f_c01216{left:391.794135px;}
.x25_c01216{left:401.798085px;}
.x20_c01216{left:411.539685px;}
.x55_c01216{left:412.589085px;}
.x48_c01216{left:414.910635px;}
.x17_c01216{left:423.360285px;}
.x9_c01216{left:424.409685px;}
.x49_c01216{left:435.458085px;}
.x18_c01216{left:446.689635px;}
.x45_c01216{left:467.865735px;}
.x40_c01216{left:469.147785px;}
.x26_c01216{left:479.399235px;}
.x37_c01216{left:480.542685px;}
.x21_c01216{left:500.669385px;}
.xa_c01216{left:512.697885px;}
.x11_c01216{left:515.202585px;}
.x2a_c01216{left:523.142385px;}
.x4f_c01216{left:534.477885px;}
.x3b_c01216{left:536.799435px;}
.x30_c01216{left:544.462035px;}
.x52_c01216{left:546.115335px;}
.x19_c01216{left:547.189485px;}
.x22_c01216{left:554.505585px;}
.x2b_c01216{left:556.267785px;}
.x3c_c01216{left:558.356685px;}
.xb_c01216{left:569.043735px;}
.x1a_c01216{left:579.626835px;}
.x38_c01216{left:589.601085px;}
.x4a_c01216{left:601.515735px;}
.x23_c01216{left:611.509785px;}
.x27_c01216{left:612.791835px;}
.x31_c01216{left:615.544035px;}
.x56_c01216{left:623.483835px;}
.xc_c01216{left:635.240085px;}
.x1b_c01216{left:645.991485px;}
.x41_c01216{left:656.356785px;}
.x57_c01216{left:657.678435px;}
.xd_c01216{left:666.722085px;}
.x39_c01216{left:668.721885px;}
.x3_c01216{left:679.399035px;}
.x53_c01216{left:700.901835px;}
.x1c_c01216{left:701.980935px;}
.x5b_c01216{left:707.440785px;}
.x13_c01216{left:709.140615px;}
.x58_c01216{left:710.965185px;}
.x5c_c01216{left:712.430385px;}
.xe_c01216{left:724.439085px;}
.x28_c01216{left:734.027235px;}
.x5d_c01216{left:763.667835px;}
@media print{
.v0_c01216{vertical-align:0.000000pt;}
.ls2_c01216{letter-spacing:-2.334646pt;}
.ls6_c01216{letter-spacing:-1.740979pt;}
.ls8_c01216{letter-spacing:-1.547537pt;}
.lsc_c01216{letter-spacing:-1.105878pt;}
.ls9_c01216{letter-spacing:-0.987222pt;}
.lse_c01216{letter-spacing:-0.641768pt;}
.ls5_c01216{letter-spacing:-0.260146pt;}
.ls0_c01216{letter-spacing:0.000000pt;}
.lsd_c01216{letter-spacing:0.673712pt;}
.ls7_c01216{letter-spacing:1.060596pt;}
.lsf_c01216{letter-spacing:2.075075pt;}
.ls1_c01216{letter-spacing:2.191945pt;}
.lsb_c01216{letter-spacing:3.106400pt;}
.ls3_c01216{letter-spacing:3.335209pt;}
.lsa_c01216{letter-spacing:3.449609pt;}
.ls10_c01216{letter-spacing:3.748800pt;}
.ls4_c01216{letter-spacing:49.420976pt;}
.ls11_c01216{letter-spacing:53.222576pt;}
.ws0_c01216{word-spacing:0.000000pt;}
._2_c01216{margin-left:-35.710400pt;}
._9_c01216{margin-left:-20.966264pt;}
._7_c01216{margin-left:-18.900459pt;}
._4_c01216{margin-left:-15.964256pt;}
._c_c01216{margin-left:-14.604646pt;}
._0_c01216{margin-left:-8.764570pt;}
._3_c01216{margin-left:-1.080288pt;}
._5_c01216{width:1.767392pt;}
._8_c01216{width:2.934914pt;}
._1_c01216{width:4.201058pt;}
._a_c01216{width:5.803204pt;}
._b_c01216{width:23.895770pt;}
._6_c01216{width:36.009512pt;}
.fs5_c01216{font-size:19.712000pt;}
.fs4_c01216{font-size:20.064000pt;}
.fs0_c01216{font-size:24.640000pt;}
.fsd_c01216{font-size:44.352176pt;}
.fs3_c01216{font-size:49.420976pt;}
.fs10_c01216{font-size:53.222576pt;}
.fs9_c01216{font-size:58.960000pt;}
.fs8_c01216{font-size:60.016000pt;}
.fsc_c01216{font-size:60.544176pt;}
.fsb_c01216{font-size:62.128000pt;}
.fs7_c01216{font-size:66.528000pt;}
.fs2_c01216{font-size:66.704176pt;}
.fsa_c01216{font-size:68.992176pt;}
.fs1_c01216{font-size:71.632176pt;}
.fse_c01216{font-size:74.976000pt;}
.fsf_c01216{font-size:89.056000pt;}
.fs6_c01216{font-size:126.720000pt;}
.y0_c01216{bottom:0.000000pt;}
.y1c_c01216{bottom:53.144120pt;}
.y1_c01216{bottom:68.000000pt;}
.y1b_c01216{bottom:68.662920pt;}
.y1d_c01216{bottom:74.369720pt;}
.y18_c01216{bottom:82.289720pt;}
.y1a_c01216{bottom:82.606520pt;}
.y19_c01216{bottom:130.438920pt;}
.y17_c01216{bottom:139.309320pt;}
.y16_c01216{bottom:168.776120pt;}
.y15_c01216{bottom:224.532920pt;}
.y14_c01216{bottom:280.606520pt;}
.y13_c01216{bottom:309.118520pt;}
.y12_c01216{bottom:365.825720pt;}
.y11_c01216{bottom:394.337720pt;}
.y10_c01216{bottom:450.723720pt;}
.yf_c01216{bottom:478.923320pt;}
.ye_c01216{bottom:534.680120pt;}
.yd_c01216{bottom:563.825720pt;}
.yc_c01216{bottom:619.578120pt;}
.yb_c01216{bottom:648.094520pt;}
.ya_c01216{bottom:704.801720pt;}
.y9_c01216{bottom:733.309320pt;}
.y2_c01216{bottom:735.843720pt;}
.y8_c01216{bottom:765.628640pt;}
.y7_c01216{bottom:784.630920pt;}
.y5_c01216{bottom:790.016520pt;}
.y6_c01216{bottom:803.322120pt;}
.y4_c01216{bottom:818.532920pt;}
.y3_c01216{bottom:940.184120pt;}
.h7_c01216{height:20.559000pt;}
.h6_c01216{height:20.926125pt;}
.h2_c01216{height:25.698750pt;}
.h5_c01216{height:32.914370pt;}
.h11_c01216{height:35.446236pt;}
.he_c01216{height:46.257934pt;}
.hc_c01216{height:60.975234pt;}
.ha_c01216{height:61.493438pt;}
.hd_c01216{height:63.145684pt;}
.h9_c01216{height:65.293594pt;}
.h4_c01216{height:65.466501pt;}
.hb_c01216{height:67.678360pt;}
.h3_c01216{height:70.303063pt;}
.hf_c01216{height:73.584844pt;}
.h10_c01216{height:92.882625pt;}
.h8_c01216{height:124.368750pt;}
.h1_c01216{height:986.666667pt;}
.h0_c01216{height:1122.666667pt;}
.w1_c01216{width:689.333333pt;}
.w0_c01216{width:793.333333pt;}
.x0_c01216{left:0.000000pt;}
.x2_c01216{left:13.830653pt;}
.x1_c01216{left:52.000000pt;}
.x4_c01216{left:80.376253pt;}
.x2c_c01216{left:90.874653pt;}
.x4d_c01216{left:108.567053pt;}
.x3d_c01216{left:128.186653pt;}
.x2d_c01216{left:129.467053pt;}
.x33_c01216{left:148.145053pt;}
.x50_c01216{left:158.018653pt;}
.x5_c01216{left:158.977853pt;}
.x3e_c01216{left:168.367453pt;}
.x6_c01216{left:178.249853pt;}
.x1d_c01216{left:179.433453pt;}
.x42_c01216{left:180.969053pt;}
.x4e_c01216{left:187.762653pt;}
.x34_c01216{left:191.005453pt;}
.x51_c01216{left:198.903453pt;}
.x1e_c01216{left:207.162253pt;}
.x3f_c01216{left:208.636253pt;}
.x14_c01216{left:209.890253pt;}
.x32_c01216{left:217.537453pt;}
.x46_c01216{left:219.015853pt;}
.x12_c01216{left:220.362253pt;}
.x24_c01216{left:228.616653pt;}
.x35_c01216{left:237.553053pt;}
.x47_c01216{left:247.589453pt;}
.x15_c01216{left:248.856653pt;}
.xf_c01216{left:257.137453pt;}
.x1f_c01216{left:258.400253pt;}
.x2e_c01216{left:260.763053pt;}
.x43_c01216{left:268.854653pt;}
.x4b_c01216{left:270.583853pt;}
.x7_c01216{left:278.411453pt;}
.x4c_c01216{left:287.286253pt;}
.x54_c01216{left:288.227853pt;}
.x59_c01216{left:289.195853pt;}
.x29_c01216{left:296.737453pt;}
.x36_c01216{left:308.375453pt;}
.x8_c01216{left:317.421853pt;}
.x16_c01216{left:319.626253pt;}
.x5a_c01216{left:326.556253pt;}
.x3a_c01216{left:327.766253pt;}
.x10_c01216{left:337.023853pt;}
.x44_c01216{left:347.086653pt;}
.x2f_c01216{left:348.261453pt;}
.x25_c01216{left:357.153853pt;}
.x20_c01216{left:365.813053pt;}
.x55_c01216{left:366.745853pt;}
.x48_c01216{left:368.809453pt;}
.x17_c01216{left:376.320253pt;}
.x9_c01216{left:377.253053pt;}
.x49_c01216{left:387.073853pt;}
.x18_c01216{left:397.057453pt;}
.x45_c01216{left:415.880653pt;}
.x40_c01216{left:417.020253pt;}
.x26_c01216{left:426.132653pt;}
.x37_c01216{left:427.149053pt;}
.x21_c01216{left:445.039453pt;}
.xa_c01216{left:455.731453pt;}
.x11_c01216{left:457.957853pt;}
.x2a_c01216{left:465.015453pt;}
.x4f_c01216{left:475.091453pt;}
.x3b_c01216{left:477.155053pt;}
.x30_c01216{left:483.966253pt;}
.x52_c01216{left:485.435853pt;}
.x19_c01216{left:486.390653pt;}
.x22_c01216{left:492.893853pt;}
.x2b_c01216{left:494.460253pt;}
.x3c_c01216{left:496.317053pt;}
.xb_c01216{left:505.816653pt;}
.x1a_c01216{left:515.223853pt;}
.x38_c01216{left:524.089853pt;}
.x4a_c01216{left:534.680653pt;}
.x23_c01216{left:543.564253pt;}
.x27_c01216{left:544.703853pt;}
.x31_c01216{left:547.150253pt;}
.x56_c01216{left:554.207853pt;}
.xc_c01216{left:564.657853pt;}
.x1b_c01216{left:574.214653pt;}
.x41_c01216{left:583.428253pt;}
.x57_c01216{left:584.603053pt;}
.xd_c01216{left:592.641853pt;}
.x39_c01216{left:594.419453pt;}
.x3_c01216{left:603.910253pt;}
.x53_c01216{left:623.023853pt;}
.x1c_c01216{left:623.983053pt;}
.x5b_c01216{left:628.836253pt;}
.x13_c01216{left:630.347213pt;}
.x58_c01216{left:631.969053pt;}
.x5c_c01216{left:633.271453pt;}
.xe_c01216{left:643.945853pt;}
.x28_c01216{left:652.468653pt;}
.x5d_c01216{left:678.815853pt;}
}





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

.ir_c01217:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01217{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01217;src:url('chunks/assets/font_8cc2d25e00114f91d578b8bf.woff2')format("woff");}.ff1_c01217{font-family:ff1_c01217;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01217;src:url('chunks/assets/font_efd5063fed660486d2f61d46.woff2')format("woff");}.ff2_c01217{font-family:ff2_c01217;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01217;src:url('chunks/assets/font_de29e96b7d22b331b7e08937.woff2')format("woff");}.ff3_c01217{font-family:ff3_c01217;line-height:0.666000;font-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_c01217{transform:matrix(0.130435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130435,0.000000,0.000000,0.250000,0,0);}
.m17_c01217{transform:matrix(0.134215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134215,0.000000,0.000000,0.250000,0,0);}
.m18_c01217{transform:matrix(0.146266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146266,0.000000,0.000000,0.250000,0,0);}
.m53_c01217{transform:matrix(0.197583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197583,0.000000,0.000000,0.250000,0,0);}
.m78_c01217{transform:matrix(0.204053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204053,0.000000,0.000000,0.250000,0,0);}
.m11_c01217{transform:matrix(0.212062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212062,0.000000,0.000000,0.250000,0,0);}
.m66_c01217{transform:matrix(0.229739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229739,0.000000,0.000000,0.250000,0,0);}
.m48_c01217{transform:matrix(0.234639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234639,0.000000,0.000000,0.250000,0,0);}
.m61_c01217{transform:matrix(0.237129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237129,0.000000,0.000000,0.250000,0,0);}
.m52_c01217{transform:matrix(0.242356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242356,0.000000,0.000000,0.250000,0,0);}
.m2a_c01217{transform:matrix(0.242828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242828,0.000000,0.000000,0.250000,0,0);}
.m15_c01217{transform:matrix(0.248978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248978,0.000000,0.000000,0.250000,0,0);}
.m33_c01217{transform:matrix(0.249508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249508,0.000000,0.000000,0.250000,0,0);}
.m0_c01217{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m5f_c01217{transform:matrix(0.263011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263011,0.000000,0.000000,0.250000,0,0);}
.mc_c01217{transform:matrix(0.266163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266163,0.000000,0.000000,0.250000,0,0);}
.m3e_c01217{transform:matrix(0.266696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266696,0.000000,0.000000,0.250000,0,0);}
.m21_c01217{transform:matrix(0.269866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269866,0.000000,0.000000,0.250000,0,0);}
.m47_c01217{transform:matrix(0.270576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270576,0.000000,0.000000,0.250000,0,0);}
.m59_c01217{transform:matrix(0.270951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270951,0.000000,0.000000,0.250000,0,0);}
.m14_c01217{transform:matrix(0.271003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271003,0.000000,0.000000,0.250000,0,0);}
.m55_c01217{transform:matrix(0.271312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271312,0.000000,0.000000,0.250000,0,0);}
.m5e_c01217{transform:matrix(0.273540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273540,0.000000,0.000000,0.250000,0,0);}
.m63_c01217{transform:matrix(0.275169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275169,0.000000,0.000000,0.250000,0,0);}
.m5_c01217{transform:matrix(0.275843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275843,0.000000,0.000000,0.250000,0,0);}
.m68_c01217{transform:matrix(0.276793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276793,0.000000,0.000000,0.250000,0,0);}
.m1a_c01217{transform:matrix(0.278787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278787,0.000000,0.000000,0.250000,0,0);}
.m5a_c01217{transform:matrix(0.280682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280682,0.000000,0.000000,0.250000,0,0);}
.m24_c01217{transform:matrix(0.281844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281844,0.000000,0.000000,0.250000,0,0);}
.m1_c01217{transform:matrix(0.281972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281972,0.000000,0.000000,0.250000,0,0);}
.m49_c01217{transform:matrix(0.283618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283618,0.000000,0.000000,0.250000,0,0);}
.m6e_c01217{transform:matrix(0.283782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283782,0.000000,0.000000,0.250000,0,0);}
.m4_c01217{transform:matrix(0.284604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284604,0.000000,0.000000,0.250000,0,0);}
.m44_c01217{transform:matrix(0.286532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286532,0.000000,0.000000,0.250000,0,0);}
.m50_c01217{transform:matrix(0.286665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286665,0.000000,0.000000,0.250000,0,0);}
.m4d_c01217{transform:matrix(0.287077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287077,0.000000,0.000000,0.250000,0,0);}
.m65_c01217{transform:matrix(0.287426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287426,0.000000,0.000000,0.250000,0,0);}
.m28_c01217{transform:matrix(0.287633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287633,0.000000,0.000000,0.250000,0,0);}
.m1c_c01217{transform:matrix(0.288286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288286,0.000000,0.000000,0.250000,0,0);}
.m29_c01217{transform:matrix(0.288455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288455,0.000000,0.000000,0.250000,0,0);}
.m51_c01217{transform:matrix(0.288605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288605,0.000000,0.000000,0.250000,0,0);}
.m35_c01217{transform:matrix(0.288715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288715,0.000000,0.000000,0.250000,0,0);}
.m6a_c01217{transform:matrix(0.290593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290593,0.000000,0.000000,0.250000,0,0);}
.m2d_c01217{transform:matrix(0.290603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290603,0.000000,0.000000,0.250000,0,0);}
.m10_c01217{transform:matrix(0.290784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290784,0.000000,0.000000,0.250000,0,0);}
.m6_c01217{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);}
.m6b_c01217{transform:matrix(0.292818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292818,0.000000,0.000000,0.250000,0,0);}
.m31_c01217{transform:matrix(0.293141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293141,0.000000,0.000000,0.250000,0,0);}
.m71_c01217{transform:matrix(0.293929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293929,0.000000,0.000000,0.250000,0,0);}
.m1b_c01217{transform:matrix(0.296190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296190,0.000000,0.000000,0.250000,0,0);}
.m30_c01217{transform:matrix(0.296255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296255,0.000000,0.000000,0.250000,0,0);}
.m5c_c01217{transform:matrix(0.297792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297792,0.000000,0.000000,0.250000,0,0);}
.m62_c01217{transform:matrix(0.297890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297890,0.000000,0.000000,0.250000,0,0);}
.m76_c01217{transform:matrix(0.298190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298190,0.000000,0.000000,0.250000,0,0);}
.m73_c01217{transform:matrix(0.298859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298859,0.000000,0.000000,0.250000,0,0);}
.m1e_c01217{transform:matrix(0.299126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299126,0.000000,0.000000,0.250000,0,0);}
.m77_c01217{transform:matrix(0.299232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299232,0.000000,0.000000,0.250000,0,0);}
.m42_c01217{transform:matrix(0.299603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299603,0.000000,0.000000,0.250000,0,0);}
.m23_c01217{transform:matrix(0.299997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299997,0.000000,0.000000,0.250000,0,0);}
.m27_c01217{transform:matrix(0.300868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300868,0.000000,0.000000,0.250000,0,0);}
.m46_c01217{transform:matrix(0.301195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301195,0.000000,0.000000,0.250000,0,0);}
.m3f_c01217{transform:matrix(0.303811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303811,0.000000,0.000000,0.250000,0,0);}
.m70_c01217{transform:matrix(0.304193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304193,0.000000,0.000000,0.250000,0,0);}
.m64_c01217{transform:matrix(0.304297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304297,0.000000,0.000000,0.250000,0,0);}
.m25_c01217{transform:matrix(0.304368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304368,0.000000,0.000000,0.250000,0,0);}
.m45_c01217{transform:matrix(0.307249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307249,0.000000,0.000000,0.250000,0,0);}
.m4e_c01217{transform:matrix(0.307428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307428,0.000000,0.000000,0.250000,0,0);}
.m7_c01217{transform:matrix(0.309101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309101,0.000000,0.000000,0.250000,0,0);}
.m6f_c01217{transform:matrix(0.309386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309386,0.000000,0.000000,0.250000,0,0);}
.m2b_c01217{transform:matrix(0.309909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309909,0.000000,0.000000,0.250000,0,0);}
.m19_c01217{transform:matrix(0.310491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310491,0.000000,0.000000,0.250000,0,0);}
.m67_c01217{transform:matrix(0.311256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311256,0.000000,0.000000,0.250000,0,0);}
.m2_c01217{transform:matrix(0.313599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313599,0.000000,0.000000,0.250000,0,0);}
.m75_c01217{transform:matrix(0.314357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314357,0.000000,0.000000,0.250000,0,0);}
.m16_c01217{transform:matrix(0.315088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315088,0.000000,0.000000,0.250000,0,0);}
.m12_c01217{transform:matrix(0.315879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315879,0.000000,0.000000,0.250000,0,0);}
.m26_c01217{transform:matrix(0.316556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316556,0.000000,0.000000,0.250000,0,0);}
.m69_c01217{transform:matrix(0.316958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316958,0.000000,0.000000,0.250000,0,0);}
.m57_c01217{transform:matrix(0.317128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317128,0.000000,0.000000,0.250000,0,0);}
.m3_c01217{transform:matrix(0.317437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317437,0.000000,0.000000,0.250000,0,0);}
.m5b_c01217{transform:matrix(0.318538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318538,0.000000,0.000000,0.250000,0,0);}
.m4f_c01217{transform:matrix(0.318885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318885,0.000000,0.000000,0.250000,0,0);}
.m54_c01217{transform:matrix(0.319919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319919,0.000000,0.000000,0.250000,0,0);}
.me_c01217{transform:matrix(0.320128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320128,0.000000,0.000000,0.250000,0,0);}
.m34_c01217{transform:matrix(0.321021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321021,0.000000,0.000000,0.250000,0,0);}
.m5d_c01217{transform:matrix(0.321954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321954,0.000000,0.000000,0.250000,0,0);}
.m43_c01217{transform:matrix(0.322619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322619,0.000000,0.000000,0.250000,0,0);}
.m58_c01217{transform:matrix(0.325255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325255,0.000000,0.000000,0.250000,0,0);}
.m74_c01217{transform:matrix(0.327063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327063,0.000000,0.000000,0.250000,0,0);}
.m6d_c01217{transform:matrix(0.328573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328573,0.000000,0.000000,0.250000,0,0);}
.m4b_c01217{transform:matrix(0.328808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328808,0.000000,0.000000,0.250000,0,0);}
.m4a_c01217{transform:matrix(0.329192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329192,0.000000,0.000000,0.250000,0,0);}
.m1d_c01217{transform:matrix(0.330333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330333,0.000000,0.000000,0.250000,0,0);}
.m2c_c01217{transform:matrix(0.333853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333853,0.000000,0.000000,0.250000,0,0);}
.m9_c01217{transform:matrix(0.334764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334764,0.000000,0.000000,0.250000,0,0);}
.m56_c01217{transform:matrix(0.337718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337718,0.000000,0.000000,0.250000,0,0);}
.m32_c01217{transform:matrix(0.339499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339499,0.000000,0.000000,0.250000,0,0);}
.m22_c01217{transform:matrix(0.341921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341921,0.000000,0.000000,0.250000,0,0);}
.m36_c01217{transform:matrix(0.342745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342745,0.000000,0.000000,0.250000,0,0);}
.m37_c01217{transform:matrix(0.343067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343067,0.000000,0.000000,0.250000,0,0);}
.mb_c01217{transform:matrix(0.345091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345091,0.000000,0.000000,0.250000,0,0);}
.md_c01217{transform:matrix(0.346458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346458,0.000000,0.000000,0.250000,0,0);}
.m2f_c01217{transform:matrix(0.348039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348039,0.000000,0.000000,0.250000,0,0);}
.m40_c01217{transform:matrix(0.349082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349082,0.000000,0.000000,0.250000,0,0);}
.m1f_c01217{transform:matrix(0.349091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349091,0.000000,0.000000,0.250000,0,0);}
.m2e_c01217{transform:matrix(0.350280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350280,0.000000,0.000000,0.250000,0,0);}
.m3d_c01217{transform:matrix(0.353108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353108,0.000000,0.000000,0.250000,0,0);}
.m6c_c01217{transform:matrix(0.355438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355438,0.000000,0.000000,0.250000,0,0);}
.m72_c01217{transform:matrix(0.356009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356009,0.000000,0.000000,0.250000,0,0);}
.m3b_c01217{transform:matrix(0.356619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356619,0.000000,0.000000,0.250000,0,0);}
.m39_c01217{transform:matrix(0.361683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361683,0.000000,0.000000,0.250000,0,0);}
.m3a_c01217{transform:matrix(0.363867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363867,0.000000,0.000000,0.250000,0,0);}
.m20_c01217{transform:matrix(0.365936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365936,0.000000,0.000000,0.250000,0,0);}
.m60_c01217{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);}
.m41_c01217{transform:matrix(0.367295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367295,0.000000,0.000000,0.250000,0,0);}
.mf_c01217{transform:matrix(0.367343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367343,0.000000,0.000000,0.250000,0,0);}
.m38_c01217{transform:matrix(0.377112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377112,0.000000,0.000000,0.250000,0,0);}
.m3c_c01217{transform:matrix(0.384864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384864,0.000000,0.000000,0.250000,0,0);}
.ma_c01217{transform:matrix(0.390803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390803,0.000000,0.000000,0.250000,0,0);}
.m4c_c01217{transform:matrix(0.391173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391173,0.000000,0.000000,0.250000,0,0);}
.m8_c01217{transform:matrix(0.397482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397482,0.000000,0.000000,0.250000,0,0);}
.v0_c01217{vertical-align:0.000000px;}
.v1_c01217{vertical-align:11.404800px;}
.ls7_c01217{letter-spacing:-2.619540px;}
.ls3_c01217{letter-spacing:-2.589602px;}
.ls4_c01217{letter-spacing:-2.567149px;}
.lsb_c01217{letter-spacing:-2.192929px;}
.ls1_c01217{letter-spacing:0.000000px;}
.ls9_c01217{letter-spacing:0.359251px;}
.lsa_c01217{letter-spacing:0.778378px;}
.ls10_c01217{letter-spacing:1.541786px;}
.ls6_c01217{letter-spacing:1.811700px;}
.lsd_c01217{letter-spacing:1.930500px;}
.lse_c01217{letter-spacing:2.215382px;}
.lsc_c01217{letter-spacing:2.365070px;}
.ls5_c01217{letter-spacing:3.008729px;}
.ls2_c01217{letter-spacing:3.742200px;}
.lsf_c01217{letter-spacing:3.960000px;}
.ls0_c01217{letter-spacing:12.216600px;}
.ls11_c01217{letter-spacing:52.747398px;}
.ls8_c01217{letter-spacing:65.577798px;}
.sc__c01217{text-shadow:none;}
.sc0_c01217{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01217{-webkit-text-stroke:0px transparent;}
.sc0_c01217{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01217{word-spacing:-18.711000px;}
.ws1_c01217{word-spacing:0.000000px;}
._1_c01217{margin-left:-19.683972px;}
._2_c01217{margin-left:-1.722204px;}
._0_c01217{width:39.348540px;}
.fc0_c01217{color:transparent;}
.fs0_c01217{font-size:20.592000px;}
.fs4_c01217{font-size:22.176000px;}
.fs9_c01217{font-size:23.166000px;}
.fsd_c01217{font-size:27.720000px;}
.fs2_c01217{font-size:36.234000px;}
.fs7_c01217{font-size:38.610000px;}
.fsa_c01217{font-size:38.808000px;}
.fsc_c01217{font-size:52.747398px;}
.fs5_c01217{font-size:59.400000px;}
.fs3_c01217{font-size:65.577798px;}
.fsb_c01217{font-size:66.330000px;}
.fs1_c01217{font-size:74.844000px;}
.fs8_c01217{font-size:79.200000px;}
.fs6_c01217{font-size:80.784000px;}
.y0_c01217{bottom:0.000000px;}
.y20_c01217{bottom:0.272295px;}
.y1f_c01217{bottom:10.958355px;}
.y1_c01217{bottom:76.500000px;}
.y21_c01217{bottom:83.309535px;}
.y1e_c01217{bottom:92.219535px;}
.y1d_c01217{bottom:99.347535px;}
.y1c_c01217{bottom:131.774985px;}
.y1b_c01217{bottom:163.494585px;}
.y1a_c01217{bottom:218.380185px;}
.y18_c01217{bottom:225.864585px;}
.y19_c01217{bottom:228.002985px;}
.y16_c01217{bottom:259.371135px;}
.y17_c01217{bottom:264.717135px;}
.y15_c01217{bottom:291.090735px;}
.y14_c01217{bottom:354.173535px;}
.y13_c01217{bottom:386.962335px;}
.y12_c01217{bottom:448.970985px;}
.y11_c01217{bottom:481.408335px;}
.y10_c01217{bottom:513.835785px;}
.yf_c01217{bottom:537.006735px;}
.ye_c01217{bottom:545.198985px;}
.yd_c01217{bottom:559.454985px;}
.yc_c01217{bottom:607.930335px;}
.yb_c01217{bottom:640.357785px;}
.ya_c01217{bottom:704.514735px;}
.y9_c01217{bottom:736.234335px;}
.y8_c01217{bottom:799.673535px;}
.y7_c01217{bottom:829.254735px;}
.y5_c01217{bottom:894.114585px;}
.y6_c01217{bottom:899.816985px;}
.y4_c01217{bottom:926.195535px;}
.y3_c01217{bottom:1063.760985px;}
.y2_c01217{bottom:1094.411385px;}
.h2_c01217{height:21.476813px;}
.h6_c01217{height:23.128875px;}
.ha_c01217{height:24.161414px;}
.he_c01217{height:28.911094px;}
.hd_c01217{height:35.129767px;}
.h4_c01217{height:37.790930px;}
.h8_c01217{height:40.269023px;}
.hb_c01217{height:40.475531px;}
.h5_c01217{height:43.674813px;}
.hc_c01217{height:69.180117px;}
.h3_c01217{height:73.455293px;}
.h9_c01217{height:77.730469px;}
.h7_c01217{height:79.285078px;}
.h1_c01217{height:1110.000000px;}
.h0_c01217{height:1263.000000px;}
.w1_c01217{width:775.500000px;}
.w0_c01217{width:892.500000px;}
.x0_c01217{left:0.000000px;}
.x2_c01217{left:54.426885px;}
.x1_c01217{left:58.500000px;}
.x4_c01217{left:90.061935px;}
.x19_c01217{left:145.912785px;}
.x4b_c01217{left:157.441335px;}
.x42_c01217{left:168.158085px;}
.x1a_c01217{left:177.023535px;}
.x20_c01217{left:178.780785px;}
.x2d_c01217{left:188.759985px;}
.x53_c01217{left:190.175685px;}
.xe_c01217{left:201.268635px;}
.x54_c01217{left:203.001135px;}
.x43_c01217{left:211.896285px;}
.x58_c01217{left:213.237735px;}
.x21_c01217{left:226.162185px;}
.x2e_c01217{left:232.948635px;}
.x3d_c01217{left:234.418785px;}
.xf_c01217{left:235.651335px;}
.x1d_c01217{left:244.917735px;}
.x28_c01217{left:246.729435px;}
.x5_c01217{left:255.050385px;}
.x55_c01217{left:259.401435px;}
.x10_c01217{left:267.242235px;}
.x1b_c01217{left:278.904435px;}
.x59_c01217{left:302.407035px;}
.x6_c01217{left:303.892035px;}
.x22_c01217{left:311.010135px;}
.x4c_c01217{left:314.653335px;}
.x1c_c01217{left:322.890135px;}
.x3e_c01217{left:324.107835px;}
.x1e_c01217{left:333.111885px;}
.x34_c01217{left:334.240485px;}
.x11_c01217{left:335.517585px;}
.x44_c01217{left:357.030285px;}
.x12_c01217{left:367.920285px;}
.x3f_c01217{left:369.375585px;}
.x38_c01217{left:379.711185px;}
.x56_c01217{left:389.071635px;}
.x7_c01217{left:390.472485px;}
.x4d_c01217{left:400.431885px;}
.x35_c01217{left:402.436635px;}
.x39_c01217{left:412.801935px;}
.x13_c01217{left:414.133485px;}
.x4e_c01217{left:415.281885px;}
.x1f_c01217{left:422.989035px;}
.x2f_c01217{left:424.894785px;}
.x4f_c01217{left:426.359985px;}
.x29_c01217{left:432.963285px;}
.x23_c01217{left:435.576885px;}
.x3a_c01217{left:445.273935px;}
.x40_c01217{left:447.001485px;}
.x45_c01217{left:457.406385px;}
.x24_c01217{left:468.053835px;}
.x8_c01217{left:479.498235px;}
.x46_c01217{left:490.135785px;}
.x2a_c01217{left:491.902935px;}
.x25_c01217{left:500.694135px;}
.x14_c01217{left:504.040335px;}
.x50_c01217{left:511.311885px;}
.x9_c01217{left:512.356335px;}
.x15_c01217{left:515.118435px;}
.x33_c01217{left:517.751835px;}
.x47_c01217{left:522.914685px;}
.x4a_c01217{left:533.829435px;}
.x16_c01217{left:534.893685px;}
.x3b_c01217{left:544.110585px;}
.xa_c01217{left:567.316185px;}
.x51_c01217{left:569.954535px;}
.x2b_c01217{left:579.161535px;}
.x5a_c01217{left:589.714935px;}
.x48_c01217{left:601.159335px;}
.x17_c01217{left:610.108935px;}
.x30_c01217{left:611.460285px;}
.x2c_c01217{left:623.587785px;}
.x57_c01217{left:632.537385px;}
.x3c_c01217{left:634.329285px;}
.x18_c01217{left:646.922085px;}
.xb_c01217{left:657.000285px;}
.x41_c01217{left:666.375585px;}
.x3_c01217{left:667.627935px;}
.xc_c01217{left:678.310035px;}
.x31_c01217{left:700.555335px;}
.x36_c01217{left:702.055185px;}
.x26_c01217{left:703.223385px;}
.xd_c01217{left:710.588985px;}
.x37_c01217{left:711.633435px;}
.x52_c01217{left:713.341185px;}
.x27_c01217{left:721.226535px;}
.x5b_c01217{left:722.275935px;}
.x49_c01217{left:732.710535px;}
.x32_c01217{left:734.571735px;}
.x5c_c01217{left:767.518935px;}
@media print{
.v0_c01217{vertical-align:0.000000pt;}
.v1_c01217{vertical-align:10.137600pt;}
.ls7_c01217{letter-spacing:-2.328480pt;}
.ls3_c01217{letter-spacing:-2.301869pt;}
.ls4_c01217{letter-spacing:-2.281910pt;}
.lsb_c01217{letter-spacing:-1.949270pt;}
.ls1_c01217{letter-spacing:0.000000pt;}
.ls9_c01217{letter-spacing:0.319334pt;}
.lsa_c01217{letter-spacing:0.691891pt;}
.ls10_c01217{letter-spacing:1.370477pt;}
.ls6_c01217{letter-spacing:1.610400pt;}
.lsd_c01217{letter-spacing:1.716000pt;}
.lse_c01217{letter-spacing:1.969229pt;}
.lsc_c01217{letter-spacing:2.102285pt;}
.ls5_c01217{letter-spacing:2.674426pt;}
.ls2_c01217{letter-spacing:3.326400pt;}
.lsf_c01217{letter-spacing:3.520000pt;}
.ls0_c01217{letter-spacing:10.859200pt;}
.ls11_c01217{letter-spacing:46.886576pt;}
.ls8_c01217{letter-spacing:58.291376pt;}
.ws0_c01217{word-spacing:-16.632000pt;}
.ws1_c01217{word-spacing:0.000000pt;}
._1_c01217{margin-left:-17.496864pt;}
._2_c01217{margin-left:-1.530848pt;}
._0_c01217{width:34.976480pt;}
.fs0_c01217{font-size:18.304000pt;}
.fs4_c01217{font-size:19.712000pt;}
.fs9_c01217{font-size:20.592000pt;}
.fsd_c01217{font-size:24.640000pt;}
.fs2_c01217{font-size:32.208000pt;}
.fs7_c01217{font-size:34.320000pt;}
.fsa_c01217{font-size:34.496000pt;}
.fsc_c01217{font-size:46.886576pt;}
.fs5_c01217{font-size:52.800000pt;}
.fs3_c01217{font-size:58.291376pt;}
.fsb_c01217{font-size:58.960000pt;}
.fs1_c01217{font-size:66.528000pt;}
.fs8_c01217{font-size:70.400000pt;}
.fs6_c01217{font-size:71.808000pt;}
.y0_c01217{bottom:0.000000pt;}
.y20_c01217{bottom:0.242040pt;}
.y1f_c01217{bottom:9.740760pt;}
.y1_c01217{bottom:68.000000pt;}
.y21_c01217{bottom:74.052920pt;}
.y1e_c01217{bottom:81.972920pt;}
.y1d_c01217{bottom:88.308920pt;}
.y1c_c01217{bottom:117.133320pt;}
.y1b_c01217{bottom:145.328520pt;}
.y1a_c01217{bottom:194.115720pt;}
.y18_c01217{bottom:200.768520pt;}
.y19_c01217{bottom:202.669320pt;}
.y16_c01217{bottom:230.552120pt;}
.y17_c01217{bottom:235.304120pt;}
.y15_c01217{bottom:258.747320pt;}
.y14_c01217{bottom:314.820920pt;}
.y13_c01217{bottom:343.966520pt;}
.y12_c01217{bottom:399.085320pt;}
.y11_c01217{bottom:427.918520pt;}
.y10_c01217{bottom:456.742920pt;}
.yf_c01217{bottom:477.339320pt;}
.ye_c01217{bottom:484.621320pt;}
.yd_c01217{bottom:497.293320pt;}
.yc_c01217{bottom:540.382520pt;}
.yb_c01217{bottom:569.206920pt;}
.ya_c01217{bottom:626.235320pt;}
.y9_c01217{bottom:654.430520pt;}
.y8_c01217{bottom:710.820920pt;}
.y7_c01217{bottom:737.115320pt;}
.y5_c01217{bottom:794.768520pt;}
.y6_c01217{bottom:799.837320pt;}
.y4_c01217{bottom:823.284920pt;}
.y3_c01217{bottom:945.565320pt;}
.y2_c01217{bottom:972.810120pt;}
.h2_c01217{height:19.090500pt;}
.h6_c01217{height:20.559000pt;}
.ha_c01217{height:21.476813pt;}
.he_c01217{height:25.698750pt;}
.hd_c01217{height:31.226460pt;}
.h4_c01217{height:33.591938pt;}
.h8_c01217{height:35.794688pt;}
.hb_c01217{height:35.978250pt;}
.h5_c01217{height:38.822056pt;}
.hc_c01217{height:61.493438pt;}
.h3_c01217{height:65.293594pt;}
.h9_c01217{height:69.093750pt;}
.h7_c01217{height:70.475625pt;}
.h1_c01217{height:986.666667pt;}
.h0_c01217{height:1122.666667pt;}
.w1_c01217{width:689.333333pt;}
.w0_c01217{width:793.333333pt;}
.x0_c01217{left:0.000000pt;}
.x2_c01217{left:48.379453pt;}
.x1_c01217{left:52.000000pt;}
.x4_c01217{left:80.055053pt;}
.x19_c01217{left:129.700253pt;}
.x4b_c01217{left:139.947853pt;}
.x42_c01217{left:149.473853pt;}
.x1a_c01217{left:157.354253pt;}
.x20_c01217{left:158.916253pt;}
.x2d_c01217{left:167.786653pt;}
.x53_c01217{left:169.045053pt;}
.xe_c01217{left:178.905453pt;}
.x54_c01217{left:180.445453pt;}
.x43_c01217{left:188.352253pt;}
.x58_c01217{left:189.544653pt;}
.x21_c01217{left:201.033053pt;}
.x2e_c01217{left:207.065453pt;}
.x3d_c01217{left:208.372253pt;}
.xf_c01217{left:209.467853pt;}
.x1d_c01217{left:217.704653pt;}
.x28_c01217{left:219.315053pt;}
.x5_c01217{left:226.711453pt;}
.x55_c01217{left:230.579053pt;}
.x10_c01217{left:237.548653pt;}
.x1b_c01217{left:247.915053pt;}
.x59_c01217{left:268.806253pt;}
.x6_c01217{left:270.126253pt;}
.x22_c01217{left:276.453453pt;}
.x4c_c01217{left:279.691853pt;}
.x1c_c01217{left:287.013453pt;}
.x3e_c01217{left:288.095853pt;}
.x1e_c01217{left:296.099453pt;}
.x34_c01217{left:297.102653pt;}
.x11_c01217{left:298.237853pt;}
.x44_c01217{left:317.360253pt;}
.x12_c01217{left:327.040253pt;}
.x3f_c01217{left:328.333853pt;}
.x38_c01217{left:337.521053pt;}
.x56_c01217{left:345.841453pt;}
.x7_c01217{left:347.086653pt;}
.x4d_c01217{left:355.939453pt;}
.x35_c01217{left:357.721453pt;}
.x39_c01217{left:366.935053pt;}
.x13_c01217{left:368.118653pt;}
.x4e_c01217{left:369.139453pt;}
.x1f_c01217{left:375.990253pt;}
.x2f_c01217{left:377.684253pt;}
.x4f_c01217{left:378.986653pt;}
.x29_c01217{left:384.856253pt;}
.x23_c01217{left:387.179453pt;}
.x3a_c01217{left:395.799053pt;}
.x40_c01217{left:397.334653pt;}
.x45_c01217{left:406.583453pt;}
.x24_c01217{left:416.047853pt;}
.x8_c01217{left:426.220653pt;}
.x46_c01217{left:435.676253pt;}
.x2a_c01217{left:437.247053pt;}
.x25_c01217{left:445.061453pt;}
.x14_c01217{left:448.035853pt;}
.x50_c01217{left:454.499453pt;}
.x9_c01217{left:455.427853pt;}
.x15_c01217{left:457.883053pt;}
.x33_c01217{left:460.223853pt;}
.x47_c01217{left:464.813053pt;}
.x4a_c01217{left:474.515053pt;}
.x16_c01217{left:475.461053pt;}
.x3b_c01217{left:483.653853pt;}
.xa_c01217{left:504.281053pt;}
.x51_c01217{left:506.626253pt;}
.x2b_c01217{left:514.810253pt;}
.x5a_c01217{left:524.191053pt;}
.x48_c01217{left:534.363853pt;}
.x17_c01217{left:542.319053pt;}
.x30_c01217{left:543.520253pt;}
.x2c_c01217{left:554.300253pt;}
.x57_c01217{left:562.255453pt;}
.x3c_c01217{left:563.848253pt;}
.x18_c01217{left:575.041853pt;}
.xb_c01217{left:584.000253pt;}
.x41_c01217{left:592.333853pt;}
.x3_c01217{left:593.447053pt;}
.xc_c01217{left:602.942253pt;}
.x31_c01217{left:622.715853pt;}
.x36_c01217{left:624.049053pt;}
.x26_c01217{left:625.087453pt;}
.xd_c01217{left:631.634653pt;}
.x37_c01217{left:632.563053pt;}
.x52_c01217{left:634.081053pt;}
.x27_c01217{left:641.090253pt;}
.x5b_c01217{left:642.023053pt;}
.x49_c01217{left:651.298253pt;}
.x32_c01217{left:652.952653pt;}
.x5c_c01217{left:682.239053pt;}
}





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

.ir_c01218:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01218{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01218;src:url('chunks/assets/font_49e04e415091764a8f7eeec3.woff2')format("woff");}.ff1_c01218{font-family:ff1_c01218;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01218;src:url('chunks/assets/font_d2a5178c1d97c077955caed1.woff2')format("woff");}.ff2_c01218{font-family:ff2_c01218;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01218;src:url('chunks/assets/font_ff54dd09d91aa4491297df6f.woff2')format("woff");}.ff3_c01218{font-family:ff3_c01218;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01218;src:url('chunks/assets/font_231efe08e636cfa9574df888.woff2')format("woff");}.ff4_c01218{font-family:ff4_c01218;line-height:0.666000;font-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_c01218{transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);}
.m64_c01218{transform:matrix(0.136114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136114,0.000000,0.000000,0.250000,0,0);}
.m41_c01218{transform:matrix(0.204907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204907,0.000000,0.000000,0.250000,0,0);}
.m59_c01218{transform:matrix(0.205258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205258,0.000000,0.000000,0.250000,0,0);}
.m5a_c01218{transform:matrix(0.210908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210908,0.000000,0.000000,0.250000,0,0);}
.m4d_c01218{transform:matrix(0.214748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214748,0.000000,0.000000,0.250000,0,0);}
.m4f_c01218{transform:matrix(0.216898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216898,0.000000,0.000000,0.250000,0,0);}
.m58_c01218{transform:matrix(0.217792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217792,0.000000,0.000000,0.250000,0,0);}
.m43_c01218{transform:matrix(0.218404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218404,0.000000,0.000000,0.250000,0,0);}
.m42_c01218{transform:matrix(0.219806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219806,0.000000,0.000000,0.250000,0,0);}
.m4e_c01218{transform:matrix(0.221956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221956,0.000000,0.000000,0.250000,0,0);}
.m7_c01218{transform:matrix(0.232150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232150,0.000000,0.000000,0.250000,0,0);}
.m23_c01218{transform:matrix(0.234093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234093,0.000000,0.000000,0.250000,0,0);}
.m63_c01218{transform:matrix(0.248826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248826,0.000000,0.000000,0.250000,0,0);}
.m65_c01218{transform:matrix(0.249688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249688,0.000000,0.000000,0.250000,0,0);}
.m0_c01218{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m10_c01218{transform:matrix(0.250060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250060,0.000000,0.000000,0.250000,0,0);}
.m15_c01218{transform:matrix(0.250657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250657,0.000000,0.000000,0.250000,0,0);}
.m6a_c01218{transform:matrix(0.251297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251297,0.000000,0.000000,0.250000,0,0);}
.m67_c01218{transform:matrix(0.251692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251692,0.000000,0.000000,0.250000,0,0);}
.m1c_c01218{transform:matrix(0.252065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252065,0.000000,0.000000,0.250000,0,0);}
.m52_c01218{transform:matrix(0.253325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253325,0.000000,0.000000,0.250000,0,0);}
.m16_c01218{transform:matrix(0.256061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256061,0.000000,0.000000,0.250000,0,0);}
.m3a_c01218{transform:matrix(0.256187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256187,0.000000,0.000000,0.250000,0,0);}
.m4c_c01218{transform:matrix(0.257450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257450,0.000000,0.000000,0.250000,0,0);}
.m1e_c01218{transform:matrix(0.258078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258078,0.000000,0.000000,0.250000,0,0);}
.m5_c01218{transform:matrix(0.260542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260542,0.000000,0.000000,0.250000,0,0);}
.m3c_c01218{transform:matrix(0.260682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260682,0.000000,0.000000,0.250000,0,0);}
.m39_c01218{transform:matrix(0.261143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261143,0.000000,0.000000,0.250000,0,0);}
.m2d_c01218{transform:matrix(0.261291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261291,0.000000,0.000000,0.250000,0,0);}
.m44_c01218{transform:matrix(0.262811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262811,0.000000,0.000000,0.250000,0,0);}
.m5c_c01218{transform:matrix(0.263552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263552,0.000000,0.000000,0.250000,0,0);}
.m28_c01218{transform:matrix(0.263561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263561,0.000000,0.000000,0.250000,0,0);}
.m3b_c01218{transform:matrix(0.263609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263609,0.000000,0.000000,0.250000,0,0);}
.m56_c01218{transform:matrix(0.264036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264036,0.000000,0.000000,0.250000,0,0);}
.m1f_c01218{transform:matrix(0.265705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265705,0.000000,0.000000,0.250000,0,0);}
.m6c_c01218{transform:matrix(0.266144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266144,0.000000,0.000000,0.250000,0,0);}
.m33_c01218{transform:matrix(0.266770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266770,0.000000,0.000000,0.250000,0,0);}
.m22_c01218{transform:matrix(0.267048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267048,0.000000,0.000000,0.250000,0,0);}
.m21_c01218{transform:matrix(0.267138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267138,0.000000,0.000000,0.250000,0,0);}
.m18_c01218{transform:matrix(0.267744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267744,0.000000,0.000000,0.250000,0,0);}
.m3e_c01218{transform:matrix(0.268040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268040,0.000000,0.000000,0.250000,0,0);}
.m2c_c01218{transform:matrix(0.268106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268106,0.000000,0.000000,0.250000,0,0);}
.m13_c01218{transform:matrix(0.268267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268267,0.000000,0.000000,0.250000,0,0);}
.m9_c01218{transform:matrix(0.268869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268869,0.000000,0.000000,0.250000,0,0);}
.m4a_c01218{transform:matrix(0.269076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269076,0.000000,0.000000,0.250000,0,0);}
.m3f_c01218{transform:matrix(0.269192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269192,0.000000,0.000000,0.250000,0,0);}
.m51_c01218{transform:matrix(0.269251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269251,0.000000,0.000000,0.250000,0,0);}
.m50_c01218{transform:matrix(0.269337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269337,0.000000,0.000000,0.250000,0,0);}
.m4_c01218{transform:matrix(0.269603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269603,0.000000,0.000000,0.250000,0,0);}
.m8_c01218{transform:matrix(0.269664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269664,0.000000,0.000000,0.250000,0,0);}
.m1_c01218{transform:matrix(0.270910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270910,0.000000,0.000000,0.250000,0,0);}
.me_c01218{transform:matrix(0.271448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271448,0.000000,0.000000,0.250000,0,0);}
.m24_c01218{transform:matrix(0.271950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271950,0.000000,0.000000,0.250000,0,0);}
.m60_c01218{transform:matrix(0.272391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272391,0.000000,0.000000,0.250000,0,0);}
.m6_c01218{transform:matrix(0.273370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273370,0.000000,0.000000,0.250000,0,0);}
.m3_c01218{transform:matrix(0.275025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275025,0.000000,0.000000,0.250000,0,0);}
.m2e_c01218{transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);}
.m27_c01218{transform:matrix(0.276773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276773,0.000000,0.000000,0.250000,0,0);}
.m47_c01218{transform:matrix(0.276862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276862,0.000000,0.000000,0.250000,0,0);}
.m53_c01218{transform:matrix(0.279736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279736,0.000000,0.000000,0.250000,0,0);}
.m46_c01218{transform:matrix(0.280425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280425,0.000000,0.000000,0.250000,0,0);}
.m61_c01218{transform:matrix(0.280711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280711,0.000000,0.000000,0.250000,0,0);}
.m20_c01218{transform:matrix(0.280813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280813,0.000000,0.000000,0.250000,0,0);}
.m31_c01218{transform:matrix(0.281802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281802,0.000000,0.000000,0.250000,0,0);}
.m6d_c01218{transform:matrix(0.281857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281857,0.000000,0.000000,0.250000,0,0);}
.m5e_c01218{transform:matrix(0.282625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282625,0.000000,0.000000,0.250000,0,0);}
.m66_c01218{transform:matrix(0.283770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283770,0.000000,0.000000,0.250000,0,0);}
.m37_c01218{transform:matrix(0.284970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284970,0.000000,0.000000,0.250000,0,0);}
.ma_c01218{transform:matrix(0.285064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285064,0.000000,0.000000,0.250000,0,0);}
.m69_c01218{transform:matrix(0.285751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285751,0.000000,0.000000,0.250000,0,0);}
.mb_c01218{transform:matrix(0.286923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286923,0.000000,0.000000,0.250000,0,0);}
.m30_c01218{transform:matrix(0.287317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287317,0.000000,0.000000,0.250000,0,0);}
.m5d_c01218{transform:matrix(0.288790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288790,0.000000,0.000000,0.250000,0,0);}
.m25_c01218{transform:matrix(0.290007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290007,0.000000,0.000000,0.250000,0,0);}
.m3d_c01218{transform:matrix(0.290919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290919,0.000000,0.000000,0.250000,0,0);}
.m4b_c01218{transform:matrix(0.291904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291904,0.000000,0.000000,0.250000,0,0);}
.m36_c01218{transform:matrix(0.292782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292782,0.000000,0.000000,0.250000,0,0);}
.m5f_c01218{transform:matrix(0.293772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293772,0.000000,0.000000,0.250000,0,0);}
.m45_c01218{transform:matrix(0.293927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293927,0.000000,0.000000,0.250000,0,0);}
.m54_c01218{transform:matrix(0.294251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294251,0.000000,0.000000,0.250000,0,0);}
.m48_c01218{transform:matrix(0.295703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295703,0.000000,0.000000,0.250000,0,0);}
.m11_c01218{transform:matrix(0.296715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296715,0.000000,0.000000,0.250000,0,0);}
.m38_c01218{transform:matrix(0.301339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301339,0.000000,0.000000,0.250000,0,0);}
.m1a_c01218{transform:matrix(0.302153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302153,0.000000,0.000000,0.250000,0,0);}
.m40_c01218{transform:matrix(0.303851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303851,0.000000,0.000000,0.250000,0,0);}
.m2a_c01218{transform:matrix(0.306585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306585,0.000000,0.000000,0.250000,0,0);}
.md_c01218{transform:matrix(0.306870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306870,0.000000,0.000000,0.250000,0,0);}
.m49_c01218{transform:matrix(0.307486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307486,0.000000,0.000000,0.250000,0,0);}
.m6b_c01218{transform:matrix(0.307922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307922,0.000000,0.000000,0.250000,0,0);}
.m1b_c01218{transform:matrix(0.310894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310894,0.000000,0.000000,0.250000,0,0);}
.m32_c01218{transform:matrix(0.312990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312990,0.000000,0.000000,0.250000,0,0);}
.m17_c01218{transform:matrix(0.313526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313526,0.000000,0.000000,0.250000,0,0);}
.m2b_c01218{transform:matrix(0.314085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314085,0.000000,0.000000,0.250000,0,0);}
.mc_c01218{transform:matrix(0.314989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314989,0.000000,0.000000,0.250000,0,0);}
.m26_c01218{transform:matrix(0.315537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315537,0.000000,0.000000,0.250000,0,0);}
.m35_c01218{transform:matrix(0.316779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316779,0.000000,0.000000,0.250000,0,0);}
.m57_c01218{transform:matrix(0.317327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317327,0.000000,0.000000,0.250000,0,0);}
.mf_c01218{transform:matrix(0.318322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318322,0.000000,0.000000,0.250000,0,0);}
.m1d_c01218{transform:matrix(0.321714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321714,0.000000,0.000000,0.250000,0,0);}
.m29_c01218{transform:matrix(0.324839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324839,0.000000,0.000000,0.250000,0,0);}
.m62_c01218{transform:matrix(0.326464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326464,0.000000,0.000000,0.250000,0,0);}
.m14_c01218{transform:matrix(0.330303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330303,0.000000,0.000000,0.250000,0,0);}
.m2f_c01218{transform:matrix(0.343928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343928,0.000000,0.000000,0.250000,0,0);}
.m19_c01218{transform:matrix(0.355863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355863,0.000000,0.000000,0.250000,0,0);}
.m55_c01218{transform:matrix(0.357194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357194,0.000000,0.000000,0.250000,0,0);}
.m68_c01218{transform:matrix(0.357440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357440,0.000000,0.000000,0.250000,0,0);}
.m2_c01218{transform:matrix(0.360155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360155,0.000000,0.000000,0.250000,0,0);}
.m5b_c01218{transform:matrix(0.368800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368800,0.000000,0.000000,0.250000,0,0);}
.m12_c01218{transform:matrix(0.375019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375019,0.000000,0.000000,0.250000,0,0);}
.v0_c01218{vertical-align:0.000000px;}
.v1_c01218{vertical-align:18.532800px;}
.ls4_c01218{letter-spacing:-2.820517px;}
.ls9_c01218{letter-spacing:-2.361176px;}
.ls8_c01218{letter-spacing:-1.627841px;}
.ls11_c01218{letter-spacing:-1.243246px;}
.ls2_c01218{letter-spacing:0.000000px;}
.lsd_c01218{letter-spacing:0.290110px;}
.ls10_c01218{letter-spacing:1.531138px;}
.ls1_c01218{letter-spacing:1.563372px;}
.ls6_c01218{letter-spacing:2.820517px;}
.ls7_c01218{letter-spacing:2.884986px;}
.lsc_c01218{letter-spacing:2.941396px;}
.lsf_c01218{letter-spacing:3.142862px;}
.lse_c01218{letter-spacing:3.578027px;}
.lsa_c01218{letter-spacing:3.924548px;}
.ls3_c01218{letter-spacing:4.029310px;}
.ls5_c01218{letter-spacing:4.098610px;}
.ls0_c01218{letter-spacing:9.167301px;}
.lsb_c01218{letter-spacing:31.363200px;}
.sc__c01218{text-shadow:none;}
.sc0_c01218{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01218{-webkit-text-stroke:0px transparent;}
.sc0_c01218{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01218{word-spacing:-21.709922px;}
.ws0_c01218{word-spacing:-20.146550px;}
.ws2_c01218{word-spacing:0.000000px;}
._4_c01218{margin-left:-14.505458px;}
._3_c01218{margin-left:-12.571482px;}
._2_c01218{margin-left:-5.157625px;}
._1_c01218{margin-left:-2.175734px;}
._6_c01218{width:2.149624px;}
._5_c01218{width:3.545793px;}
._7_c01218{width:6.027326px;}
._0_c01218{width:37.053468px;}
.fc0_c01218{color:transparent;}
.fs5_c01218{font-size:22.176000px;}
.fs9_c01218{font-size:25.146000px;}
.fs0_c01218{font-size:27.720000px;}
.fsa_c01218{font-size:31.363200px;}
.fs2_c01218{font-size:33.264000px;}
.fs7_c01218{font-size:33.660000px;}
.fs6_c01218{font-size:38.808000px;}
.fsb_c01218{font-size:39.204000px;}
.fs3_c01218{font-size:54.648000px;}
.fsf_c01218{font-size:63.756198px;}
.fsd_c01218{font-size:66.330000px;}
.fs8_c01218{font-size:66.528000px;}
.fsc_c01218{font-size:79.200000px;}
.fs1_c01218{font-size:80.586198px;}
.fse_c01218{font-size:81.180000px;}
.fs4_c01218{font-size:81.972198px;}
.y0_c01218{bottom:0.000000px;}
.y22_c01218{bottom:36.259785px;}
.y1_c01218{bottom:76.500000px;}
.y23_c01218{bottom:83.309535px;}
.y20_c01218{bottom:98.273385px;}
.y21_c01218{bottom:100.060335px;}
.y1f_c01218{bottom:131.067135px;}
.y1e_c01218{bottom:193.788585px;}
.y1d_c01218{bottom:226.220985px;}
.y1c_c01218{bottom:277.898985px;}
.y1b_c01218{bottom:289.660185px;}
.y1a_c01218{bottom:321.736185px;}
.y2_c01218{bottom:340.268985px;}
.y19_c01218{bottom:357.024735px;}
.y18_c01218{bottom:385.893135px;}
.y17_c01218{bottom:417.607785px;}
.y16_c01218{bottom:480.690585px;}
.y15_c01218{bottom:513.127935px;}
.y14_c01218{bottom:545.911785px;}
.y13_c01218{bottom:556.603785px;}
.y12_c01218{bottom:567.300735px;}
.y10_c01218{bottom:575.497935px;}
.y11_c01218{bottom:580.126185px;}
.yf_c01218{bottom:607.930335px;}
.ye_c01218{bottom:639.288585px;}
.yd_c01218{bottom:702.732735px;}
.yc_c01218{bottom:735.521535px;}
.y9_c01218{bottom:762.607935px;}
.yb_c01218{bottom:773.294985px;}
.ya_c01218{bottom:775.794735px;}
.y8_c01218{bottom:798.599385px;}
.y7_c01218{bottom:830.680335px;}
.y6_c01218{bottom:862.038585px;}
.y5_c01218{bottom:924.408585px;}
.y4_c01218{bottom:1050.574185px;}
.y3_c01218{bottom:1061.978985px;}
.hb_c01218{height:20.887891px;}
.h6_c01218{height:23.128875px;}
.ha_c01218{height:26.226492px;}
.h2_c01218{height:28.911094px;}
.h8_c01218{height:33.035449px;}
.h4_c01218{height:34.693313px;}
.hc_c01218{height:38.476582px;}
.h7_c01218{height:40.475531px;}
.he_c01218{height:69.180117px;}
.h9_c01218{height:69.386625px;}
.hd_c01218{height:77.730469px;}
.h3_c01218{height:79.090946px;}
.hf_c01218{height:79.673730px;}
.h5_c01218{height:80.411204px;}
.h10_c01218{height:82.603125px;}
.h1_c01218{height:1110.000000px;}
.h0_c01218{height:1263.000000px;}
.w1_c01218{width:775.500000px;}
.w0_c01218{width:892.500000px;}
.x0_c01218{left:0.000000px;}
.x1_c01218{left:58.500000px;}
.x2_c01218{left:67.950285px;}
.xb_c01218{left:90.779685px;}
.x4a_c01218{left:134.606985px;}
.x4b_c01218{left:157.119585px;}
.xc_c01218{left:167.648235px;}
.x31_c01218{left:178.063035px;}
.x4c_c01218{left:181.785435px;}
.x24_c01218{left:188.824335px;}
.x14_c01218{left:190.378635px;}
.x5_c01218{left:201.357735px;}
.xd_c01218{left:210.846885px;}
.x3e_c01218{left:212.000235px;}
.x1e_c01218{left:214.455435px;}
.x15_c01218{left:222.637785px;}
.x48_c01218{left:223.964385px;}
.x21_c01218{left:225.117735px;}
.x43_c01218{left:229.359885px;}
.x38_c01218{left:234.814785px;}
.x25_c01218{left:236.002785px;}
.x1d_c01218{left:245.422635px;}
.x2b_c01218{left:248.328285px;}
.xe_c01218{left:256.901685px;}
.x6_c01218{left:266.895735px;}
.x27_c01218{left:269.687535px;}
.x42_c01218{left:274.305885px;}
.x35_c01218{left:277.874835px;}
.x4f_c01218{left:291.229935px;}
.x39_c01218{left:299.976585px;}
.x7_c01218{left:301.045785px;}
.x3a_c01218{left:314.079135px;}
.xf_c01218{left:323.484135px;}
.x16_c01218{left:335.012685px;}
.x8_c01218{left:344.932485px;}
.x3b_c01218{left:347.778735px;}
.x50_c01218{left:355.926435px;}
.x36_c01218{left:367.029285px;}
.x26_c01218{left:368.227185px;}
.x17_c01218{left:378.572685px;}
.x4d_c01218{left:379.577535px;}
.x28_c01218{left:390.343785px;}
.x44_c01218{left:400.902135px;}
.x18_c01218{left:411.079335px;}
.x9_c01218{left:413.079135px;}
.x32_c01218{left:423.355335px;}
.x45_c01218{left:424.954185px;}
.x10_c01218{left:435.309585px;}
.x2c_c01218{left:445.714485px;}
.xa_c01218{left:456.936135px;}
.x46_c01218{left:458.460735px;}
.x11_c01218{left:466.103535px;}
.x49_c01218{left:467.539035px;}
.x3f_c01218{left:479.666535px;}
.x22_c01218{left:490.096185px;}
.x3c_c01218{left:501.575235px;}
.x29_c01218{left:511.009935px;}
.x37_c01218{left:512.074185px;}
.x19_c01218{left:522.667185px;}
.x4e_c01218{left:525.409485px;}
.x12_c01218{left:534.839235px;}
.x2d_c01218{left:547.095435px;}
.x33_c01218{left:557.292435px;}
.x47_c01218{left:578.899185px;}
.x23_c01218{left:600.778185px;}
.x2e_c01218{left:611.678085px;}
.x13_c01218{left:621.795885px;}
.x3d_c01218{left:625.038135px;}
.x2a_c01218{left:634.146135px;}
.x1a_c01218{left:645.229185px;}
.x40_c01218{left:655.747935px;}
.x3_c01218{left:666.905235px;}
.x1b_c01218{left:677.047785px;}
.x1c_c01218{left:690.482085px;}
.x34_c01218{left:701.174085px;}
.x41_c01218{left:702.480885px;}
.x20_c01218{left:705.168735px;}
.x1f_c01218{left:706.574535px;}
.x4_c01218{left:708.381285px;}
.x2f_c01218{left:710.118735px;}
.x30_c01218{left:712.628385px;}
.x51_c01218{left:760.079085px;}
@media print{
.v0_c01218{vertical-align:0.000000pt;}
.v1_c01218{vertical-align:16.473600pt;}
.ls4_c01218{letter-spacing:-2.507126pt;}
.ls9_c01218{letter-spacing:-2.098823pt;}
.ls8_c01218{letter-spacing:-1.446970pt;}
.ls11_c01218{letter-spacing:-1.105107pt;}
.ls2_c01218{letter-spacing:0.000000pt;}
.lsd_c01218{letter-spacing:0.257876pt;}
.ls10_c01218{letter-spacing:1.361011pt;}
.ls1_c01218{letter-spacing:1.389664pt;}
.ls6_c01218{letter-spacing:2.507126pt;}
.ls7_c01218{letter-spacing:2.564432pt;}
.lsc_c01218{letter-spacing:2.614574pt;}
.lsf_c01218{letter-spacing:2.793655pt;}
.lse_c01218{letter-spacing:3.180469pt;}
.lsa_c01218{letter-spacing:3.488487pt;}
.ls3_c01218{letter-spacing:3.581609pt;}
.ls5_c01218{letter-spacing:3.643209pt;}
.ls0_c01218{letter-spacing:8.148712pt;}
.lsb_c01218{letter-spacing:27.878400pt;}
.ws1_c01218{word-spacing:-19.297708pt;}
.ws0_c01218{word-spacing:-17.908044pt;}
.ws2_c01218{word-spacing:0.000000pt;}
._4_c01218{margin-left:-12.893740pt;}
._3_c01218{margin-left:-11.174651pt;}
._2_c01218{margin-left:-4.584556pt;}
._1_c01218{margin-left:-1.933986pt;}
._6_c01218{width:1.910777pt;}
._5_c01218{width:3.151816pt;}
._7_c01218{width:5.357623pt;}
._0_c01218{width:32.936416pt;}
.fs5_c01218{font-size:19.712000pt;}
.fs9_c01218{font-size:22.352000pt;}
.fs0_c01218{font-size:24.640000pt;}
.fsa_c01218{font-size:27.878400pt;}
.fs2_c01218{font-size:29.568000pt;}
.fs7_c01218{font-size:29.920000pt;}
.fs6_c01218{font-size:34.496000pt;}
.fsb_c01218{font-size:34.848000pt;}
.fs3_c01218{font-size:48.576000pt;}
.fsf_c01218{font-size:56.672176pt;}
.fsd_c01218{font-size:58.960000pt;}
.fs8_c01218{font-size:59.136000pt;}
.fsc_c01218{font-size:70.400000pt;}
.fs1_c01218{font-size:71.632176pt;}
.fse_c01218{font-size:72.160000pt;}
.fs4_c01218{font-size:72.864176pt;}
.y0_c01218{bottom:0.000000pt;}
.y22_c01218{bottom:32.230920pt;}
.y1_c01218{bottom:68.000000pt;}
.y23_c01218{bottom:74.052920pt;}
.y20_c01218{bottom:87.354120pt;}
.y21_c01218{bottom:88.942520pt;}
.y1f_c01218{bottom:116.504120pt;}
.y1e_c01218{bottom:172.256520pt;}
.y1d_c01218{bottom:201.085320pt;}
.y1c_c01218{bottom:247.021320pt;}
.y1b_c01218{bottom:257.475720pt;}
.y1a_c01218{bottom:285.987720pt;}
.y2_c01218{bottom:302.461320pt;}
.y19_c01218{bottom:317.355320pt;}
.y18_c01218{bottom:343.016120pt;}
.y17_c01218{bottom:371.206920pt;}
.y16_c01218{bottom:427.280520pt;}
.y15_c01218{bottom:456.113720pt;}
.y14_c01218{bottom:485.254920pt;}
.y13_c01218{bottom:494.758920pt;}
.y12_c01218{bottom:504.267320pt;}
.y10_c01218{bottom:511.553720pt;}
.y11_c01218{bottom:515.667720pt;}
.yf_c01218{bottom:540.382520pt;}
.ye_c01218{bottom:568.256520pt;}
.yd_c01218{bottom:624.651320pt;}
.yc_c01218{bottom:653.796920pt;}
.y9_c01218{bottom:677.873720pt;}
.yb_c01218{bottom:687.373320pt;}
.ya_c01218{bottom:689.595320pt;}
.y8_c01218{bottom:709.866120pt;}
.y7_c01218{bottom:738.382520pt;}
.y6_c01218{bottom:766.256520pt;}
.y5_c01218{bottom:821.696520pt;}
.y4_c01218{bottom:933.843720pt;}
.y3_c01218{bottom:943.981320pt;}
.hb_c01218{height:18.567014pt;}
.h6_c01218{height:20.559000pt;}
.ha_c01218{height:23.312438pt;}
.h2_c01218{height:25.698750pt;}
.h8_c01218{height:29.364844pt;}
.h4_c01218{height:30.838500pt;}
.hc_c01218{height:34.201406pt;}
.h7_c01218{height:35.978250pt;}
.he_c01218{height:61.493438pt;}
.h9_c01218{height:61.677000pt;}
.hd_c01218{height:69.093750pt;}
.h3_c01218{height:70.303063pt;}
.hf_c01218{height:70.821094pt;}
.h5_c01218{height:71.476626pt;}
.h10_c01218{height:73.425000pt;}
.h1_c01218{height:986.666667pt;}
.h0_c01218{height:1122.666667pt;}
.w1_c01218{width:689.333333pt;}
.w0_c01218{width:793.333333pt;}
.x0_c01218{left:0.000000pt;}
.x1_c01218{left:52.000000pt;}
.x2_c01218{left:60.400253pt;}
.xb_c01218{left:80.693053pt;}
.x4a_c01218{left:119.650653pt;}
.x4b_c01218{left:139.661853pt;}
.xc_c01218{left:149.020653pt;}
.x31_c01218{left:158.278253pt;}
.x4c_c01218{left:161.587053pt;}
.x24_c01218{left:167.843853pt;}
.x14_c01218{left:169.225453pt;}
.x5_c01218{left:178.984653pt;}
.xd_c01218{left:187.419453pt;}
.x3e_c01218{left:188.444653pt;}
.x1e_c01218{left:190.627053pt;}
.x15_c01218{left:197.900253pt;}
.x48_c01218{left:199.079453pt;}
.x21_c01218{left:200.104653pt;}
.x43_c01218{left:203.875453pt;}
.x38_c01218{left:208.724253pt;}
.x25_c01218{left:209.780253pt;}
.x1d_c01218{left:218.153453pt;}
.x2b_c01218{left:220.736253pt;}
.xe_c01218{left:228.357053pt;}
.x6_c01218{left:237.240653pt;}
.x27_c01218{left:239.722253pt;}
.x42_c01218{left:243.827453pt;}
.x35_c01218{left:246.999853pt;}
.x4f_c01218{left:258.871053pt;}
.x39_c01218{left:266.645853pt;}
.x7_c01218{left:267.596253pt;}
.x3a_c01218{left:279.181453pt;}
.xf_c01218{left:287.541453pt;}
.x16_c01218{left:297.789053pt;}
.x8_c01218{left:306.606653pt;}
.x3b_c01218{left:309.136653pt;}
.x50_c01218{left:316.379053pt;}
.x36_c01218{left:326.248253pt;}
.x26_c01218{left:327.313053pt;}
.x17_c01218{left:336.509053pt;}
.x4d_c01218{left:337.402253pt;}
.x28_c01218{left:346.972253pt;}
.x44_c01218{left:356.357453pt;}
.x18_c01218{left:365.403853pt;}
.x9_c01218{left:367.181453pt;}
.x32_c01218{left:376.315853pt;}
.x45_c01218{left:377.737053pt;}
.x10_c01218{left:386.941853pt;}
.x2c_c01218{left:396.190653pt;}
.xa_c01218{left:406.165453pt;}
.x46_c01218{left:407.520653pt;}
.x11_c01218{left:414.314253pt;}
.x49_c01218{left:415.590253pt;}
.x3f_c01218{left:426.370253pt;}
.x22_c01218{left:435.641053pt;}
.x3c_c01218{left:445.844653pt;}
.x29_c01218{left:454.231053pt;}
.x37_c01218{left:455.177053pt;}
.x19_c01218{left:464.593053pt;}
.x4e_c01218{left:467.030653pt;}
.x12_c01218{left:475.412653pt;}
.x2d_c01218{left:486.307053pt;}
.x33_c01218{left:495.371053pt;}
.x47_c01218{left:514.577053pt;}
.x23_c01218{left:534.025053pt;}
.x2e_c01218{left:543.713853pt;}
.x13_c01218{left:552.707453pt;}
.x3d_c01218{left:555.589453pt;}
.x2a_c01218{left:563.685453pt;}
.x1a_c01218{left:573.537053pt;}
.x40_c01218{left:582.887053pt;}
.x3_c01218{left:592.804653pt;}
.x1b_c01218{left:601.820253pt;}
.x1c_c01218{left:613.761853pt;}
.x34_c01218{left:623.265853pt;}
.x41_c01218{left:624.427453pt;}
.x20_c01218{left:626.816653pt;}
.x1f_c01218{left:628.066253pt;}
.x4_c01218{left:629.672253pt;}
.x2f_c01218{left:631.216653pt;}
.x30_c01218{left:633.447453pt;}
.x51_c01218{left:675.625853pt;}
}





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

.ir_c01219:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01219{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01219;src:url('chunks/assets/font_7fd09847b04c17adf6aa6acc.woff2')format("woff");}.ff1_c01219{font-family:ff1_c01219;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01219;src:url('chunks/assets/font_8ff8639afe49df508df61040.woff2')format("woff");}.ff2_c01219{font-family:ff2_c01219;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01219;src:url('chunks/assets/font_83ea67c0910db251bff985ca.woff2')format("woff");}.ff3_c01219{font-family:ff3_c01219;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01219;src:url('chunks/assets/font_c77097e6f13c1e0142918d0a.woff2')format("woff");}.ff4_c01219{font-family:ff4_c01219;line-height:0.666000;font-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_c01219{transform:matrix(0.012196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012196,0.000000,0.000000,0.250000,0,0);}
.m61_c01219{transform:matrix(0.085366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085366,0.000000,0.000000,0.250000,0,0);}
.m5f_c01219{transform:matrix(0.118684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118684,0.000000,0.000000,0.250000,0,0);}
.m34_c01219{transform:matrix(0.158537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158537,0.000000,0.000000,0.250000,0,0);}
.m1_c01219{transform:matrix(0.216520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216520,0.000000,0.000000,0.250000,0,0);}
.m49_c01219{transform:matrix(0.226942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226942,0.000000,0.000000,0.250000,0,0);}
.m6f_c01219{transform:matrix(0.232803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232803,0.000000,0.000000,0.250000,0,0);}
.m74_c01219{transform:matrix(0.233062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233062,0.000000,0.000000,0.250000,0,0);}
.m5a_c01219{transform:matrix(0.233400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233400,0.000000,0.000000,0.250000,0,0);}
.m73_c01219{transform:matrix(0.239423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239423,0.000000,0.000000,0.250000,0,0);}
.m47_c01219{transform:matrix(0.240221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240221,0.000000,0.000000,0.250000,0,0);}
.m65_c01219{transform:matrix(0.242257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242257,0.000000,0.000000,0.250000,0,0);}
.me_c01219{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01219{transform:matrix(0.250507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250507,0.000000,0.000000,0.250000,0,0);}
.m16_c01219{transform:matrix(0.255678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255678,0.000000,0.000000,0.250000,0,0);}
.m66_c01219{transform:matrix(0.259451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259451,0.000000,0.000000,0.250000,0,0);}
.m4a_c01219{transform:matrix(0.262919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262919,0.000000,0.000000,0.250000,0,0);}
.m27_c01219{transform:matrix(0.266059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266059,0.000000,0.000000,0.250000,0,0);}
.m2f_c01219{transform:matrix(0.266999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266999,0.000000,0.000000,0.250000,0,0);}
.m25_c01219{transform:matrix(0.267216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267216,0.000000,0.000000,0.250000,0,0);}
.mb_c01219{transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);}
.m71_c01219{transform:matrix(0.268510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268510,0.000000,0.000000,0.250000,0,0);}
.m59_c01219{transform:matrix(0.268609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268609,0.000000,0.000000,0.250000,0,0);}
.m9_c01219{transform:matrix(0.270609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270609,0.000000,0.000000,0.250000,0,0);}
.m6_c01219{transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);}
.m14_c01219{transform:matrix(0.271866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271866,0.000000,0.000000,0.250000,0,0);}
.m4_c01219{transform:matrix(0.272400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272400,0.000000,0.000000,0.250000,0,0);}
.m1d_c01219{transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);}
.m76_c01219{transform:matrix(0.273205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273205,0.000000,0.000000,0.250000,0,0);}
.m43_c01219{transform:matrix(0.274460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274460,0.000000,0.000000,0.250000,0,0);}
.m6d_c01219{transform:matrix(0.275031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275031,0.000000,0.000000,0.250000,0,0);}
.m26_c01219{transform:matrix(0.276160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276160,0.000000,0.000000,0.250000,0,0);}
.m40_c01219{transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);}
.m1a_c01219{transform:matrix(0.278393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278393,0.000000,0.000000,0.250000,0,0);}
.m72_c01219{transform:matrix(0.278861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278861,0.000000,0.000000,0.250000,0,0);}
.m41_c01219{transform:matrix(0.279838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279838,0.000000,0.000000,0.250000,0,0);}
.m52_c01219{transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);}
.m11_c01219{transform:matrix(0.281902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281902,0.000000,0.000000,0.250000,0,0);}
.m5e_c01219{transform:matrix(0.282883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282883,0.000000,0.000000,0.250000,0,0);}
.m2c_c01219{transform:matrix(0.283285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283285,0.000000,0.000000,0.250000,0,0);}
.m67_c01219{transform:matrix(0.283944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283944,0.000000,0.000000,0.250000,0,0);}
.m12_c01219{transform:matrix(0.284229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284229,0.000000,0.000000,0.250000,0,0);}
.m3f_c01219{transform:matrix(0.284540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284540,0.000000,0.000000,0.250000,0,0);}
.m2d_c01219{transform:matrix(0.285019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285019,0.000000,0.000000,0.250000,0,0);}
.m6a_c01219{transform:matrix(0.285182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285182,0.000000,0.000000,0.250000,0,0);}
.m20_c01219{transform:matrix(0.285266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285266,0.000000,0.000000,0.250000,0,0);}
.m4d_c01219{transform:matrix(0.285364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285364,0.000000,0.000000,0.250000,0,0);}
.m2b_c01219{transform:matrix(0.285582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285582,0.000000,0.000000,0.250000,0,0);}
.m1f_c01219{transform:matrix(0.286936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286936,0.000000,0.000000,0.250000,0,0);}
.m32_c01219{transform:matrix(0.287247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287247,0.000000,0.000000,0.250000,0,0);}
.m19_c01219{transform:matrix(0.287256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287256,0.000000,0.000000,0.250000,0,0);}
.m51_c01219{transform:matrix(0.287815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287815,0.000000,0.000000,0.250000,0,0);}
.m29_c01219{transform:matrix(0.287911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287911,0.000000,0.000000,0.250000,0,0);}
.m2e_c01219{transform:matrix(0.288190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288190,0.000000,0.000000,0.250000,0,0);}
.m64_c01219{transform:matrix(0.288289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288289,0.000000,0.000000,0.250000,0,0);}
.m31_c01219{transform:matrix(0.288294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288294,0.000000,0.000000,0.250000,0,0);}
.m55_c01219{transform:matrix(0.288370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288370,0.000000,0.000000,0.250000,0,0);}
.m15_c01219{transform:matrix(0.288451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288451,0.000000,0.000000,0.250000,0,0);}
.m13_c01219{transform:matrix(0.289228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289228,0.000000,0.000000,0.250000,0,0);}
.m3d_c01219{transform:matrix(0.290105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290105,0.000000,0.000000,0.250000,0,0);}
.m3c_c01219{transform:matrix(0.294025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294025,0.000000,0.000000,0.250000,0,0);}
.m4f_c01219{transform:matrix(0.294376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294376,0.000000,0.000000,0.250000,0,0);}
.m28_c01219{transform:matrix(0.294922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294922,0.000000,0.000000,0.250000,0,0);}
.m35_c01219{transform:matrix(0.295014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295014,0.000000,0.000000,0.250000,0,0);}
.m0_c01219{transform:matrix(0.295855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295855,0.000000,0.000000,0.250000,0,0);}
.m22_c01219{transform:matrix(0.297235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297235,0.000000,0.000000,0.250000,0,0);}
.m5d_c01219{transform:matrix(0.297564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297564,0.000000,0.000000,0.250000,0,0);}
.m17_c01219{transform:matrix(0.297632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297632,0.000000,0.000000,0.250000,0,0);}
.m1c_c01219{transform:matrix(0.297944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297944,0.000000,0.000000,0.250000,0,0);}
.m62_c01219{transform:matrix(0.298186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298186,0.000000,0.000000,0.250000,0,0);}
.m4b_c01219{transform:matrix(0.299497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299497,0.000000,0.000000,0.250000,0,0);}
.m79_c01219{transform:matrix(0.300619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300619,0.000000,0.000000,0.250000,0,0);}
.m3e_c01219{transform:matrix(0.300629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300629,0.000000,0.000000,0.250000,0,0);}
.m48_c01219{transform:matrix(0.300665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300665,0.000000,0.000000,0.250000,0,0);}
.m7a_c01219{transform:matrix(0.302043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302043,0.000000,0.000000,0.250000,0,0);}
.m75_c01219{transform:matrix(0.303906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303906,0.000000,0.000000,0.250000,0,0);}
.m23_c01219{transform:matrix(0.304558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304558,0.000000,0.000000,0.250000,0,0);}
.m18_c01219{transform:matrix(0.305740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305740,0.000000,0.000000,0.250000,0,0);}
.m10_c01219{transform:matrix(0.306121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306121,0.000000,0.000000,0.250000,0,0);}
.m77_c01219{transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);}
.m78_c01219{transform:matrix(0.308293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308293,0.000000,0.000000,0.250000,0,0);}
.m57_c01219{transform:matrix(0.308627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308627,0.000000,0.000000,0.250000,0,0);}
.m37_c01219{transform:matrix(0.308867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308867,0.000000,0.000000,0.250000,0,0);}
.m6b_c01219{transform:matrix(0.309638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309638,0.000000,0.000000,0.250000,0,0);}
.m63_c01219{transform:matrix(0.310074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310074,0.000000,0.000000,0.250000,0,0);}
.m4c_c01219{transform:matrix(0.311513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311513,0.000000,0.000000,0.250000,0,0);}
.m5_c01219{transform:matrix(0.312003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312003,0.000000,0.000000,0.250000,0,0);}
.m33_c01219{transform:matrix(0.312647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312647,0.000000,0.000000,0.250000,0,0);}
.m50_c01219{transform:matrix(0.313629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313629,0.000000,0.000000,0.250000,0,0);}
.m30_c01219{transform:matrix(0.314978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314978,0.000000,0.000000,0.250000,0,0);}
.m3b_c01219{transform:matrix(0.317695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317695,0.000000,0.000000,0.250000,0,0);}
.m68_c01219{transform:matrix(0.318724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318724,0.000000,0.000000,0.250000,0,0);}
.m70_c01219{transform:matrix(0.321694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321694,0.000000,0.000000,0.250000,0,0);}
.m4e_c01219{transform:matrix(0.322688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322688,0.000000,0.000000,0.250000,0,0);}
.m24_c01219{transform:matrix(0.322934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322934,0.000000,0.000000,0.250000,0,0);}
.m1e_c01219{transform:matrix(0.323473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323473,0.000000,0.000000,0.250000,0,0);}
.m58_c01219{transform:matrix(0.324414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324414,0.000000,0.000000,0.250000,0,0);}
.m3a_c01219{transform:matrix(0.324650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324650,0.000000,0.000000,0.250000,0,0);}
.m8_c01219{transform:matrix(0.324853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324853,0.000000,0.000000,0.250000,0,0);}
.ma_c01219{transform:matrix(0.325895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325895,0.000000,0.000000,0.250000,0,0);}
.m21_c01219{transform:matrix(0.326259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326259,0.000000,0.000000,0.250000,0,0);}
.m5b_c01219{transform:matrix(0.327377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327377,0.000000,0.000000,0.250000,0,0);}
.m36_c01219{transform:matrix(0.329926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329926,0.000000,0.000000,0.250000,0,0);}
.m56_c01219{transform:matrix(0.330669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330669,0.000000,0.000000,0.250000,0,0);}
.m69_c01219{transform:matrix(0.331464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331464,0.000000,0.000000,0.250000,0,0);}
.m42_c01219{transform:matrix(0.332874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332874,0.000000,0.000000,0.250000,0,0);}
.m45_c01219{transform:matrix(0.335764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335764,0.000000,0.000000,0.250000,0,0);}
.m46_c01219{transform:matrix(0.336349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336349,0.000000,0.000000,0.250000,0,0);}
.m6e_c01219{transform:matrix(0.337107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337107,0.000000,0.000000,0.250000,0,0);}
.m1b_c01219{transform:matrix(0.337757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337757,0.000000,0.000000,0.250000,0,0);}
.m6c_c01219{transform:matrix(0.340619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340619,0.000000,0.000000,0.250000,0,0);}
.m7_c01219{transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);}
.m44_c01219{transform:matrix(0.347995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347995,0.000000,0.000000,0.250000,0,0);}
.m2a_c01219{transform:matrix(0.348527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348527,0.000000,0.000000,0.250000,0,0);}
.mf_c01219{transform:matrix(0.349111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349111,0.000000,0.000000,0.250000,0,0);}
.m53_c01219{transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351716,0.000000,0.000000,0.250000,0,0);}
.m2_c01219{transform:matrix(0.352960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352960,0.000000,0.000000,0.250000,0,0);}
.m3_c01219{transform:matrix(0.357108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357108,0.000000,0.000000,0.250000,0,0);}
.m39_c01219{transform:matrix(0.358990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358990,0.000000,0.000000,0.250000,0,0);}
.m5c_c01219{transform:matrix(0.365853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365853,0.000000,0.000000,0.250000,0,0);}
.mc_c01219{transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);}
.md_c01219{transform:matrix(0.397107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397107,0.000000,0.000000,0.250000,0,0);}
.m38_c01219{transform:matrix(0.555764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555764,0.000000,0.000000,0.250000,0,0);}
.v0_c01219{vertical-align:0.000000px;}
.ls2_c01219{letter-spacing:-2.647267px;}
.ls5_c01219{letter-spacing:-0.642908px;}
.ls3_c01219{letter-spacing:0.000000px;}
.ls6_c01219{letter-spacing:0.287418px;}
.lsd_c01219{letter-spacing:0.453817px;}
.ls10_c01219{letter-spacing:0.512820px;}
.ls0_c01219{letter-spacing:1.107592px;}
.lsb_c01219{letter-spacing:1.282410px;}
.ls9_c01219{letter-spacing:2.889303px;}
.lsa_c01219{letter-spacing:3.214253px;}
.lsc_c01219{letter-spacing:3.316500px;}
.lse_c01219{letter-spacing:3.622974px;}
.ls11_c01219{letter-spacing:3.722400px;}
.ls1_c01219{letter-spacing:3.781810px;}
.ls4_c01219{letter-spacing:3.861000px;}
.ls7_c01219{letter-spacing:4.237200px;}
.lsf_c01219{letter-spacing:4.514400px;}
.ls8_c01219{letter-spacing:58.449798px;}
.sc__c01219{text-shadow:none;}
.sc0_c01219{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01219{-webkit-text-stroke:0px transparent;}
.sc0_c01219{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01219{word-spacing:-19.327156px;}
.ws1_c01219{word-spacing:-18.909050px;}
.ws2_c01219{word-spacing:0.000000px;}
._2_c01219{margin-left:-14.068439px;}
._1_c01219{margin-left:-10.420542px;}
._0_c01219{width:2.654289px;}
.fc0_c01219{color:transparent;}
.fsa_c01219{font-size:27.720000px;}
.fsd_c01219{font-size:32.868000px;}
.fs4_c01219{font-size:33.660000px;}
.fsb_c01219{font-size:34.650000px;}
.fs2_c01219{font-size:39.600000px;}
.fsc_c01219{font-size:44.352000px;}
.fs6_c01219{font-size:58.449798px;}
.fs7_c01219{font-size:65.538000px;}
.fs9_c01219{font-size:66.330000px;}
.fs8_c01219{font-size:69.696198px;}
.fse_c01219{font-size:74.448000px;}
.fs0_c01219{font-size:75.636198px;}
.fs1_c01219{font-size:77.220000px;}
.fs5_c01219{font-size:84.744000px;}
.fs3_c01219{font-size:90.288000px;}
.y0_c01219{bottom:0.000000px;}
.y1d_c01219{bottom:2.050335px;}
.y1c_c01219{bottom:69.404985px;}
.y1_c01219{bottom:76.500000px;}
.y1b_c01219{bottom:100.768185px;}
.y1a_c01219{bottom:164.568735px;}
.y19_c01219{bottom:196.283385px;}
.y18_c01219{bottom:210.544335px;}
.y17_c01219{bottom:255.089385px;}
.y16_c01219{bottom:259.366185px;}
.y15_c01219{bottom:289.660185px;}
.y14_c01219{bottom:291.442185px;}
.y13_c01219{bottom:329.933385px;}
.y12_c01219{bottom:355.237785px;}
.y11_c01219{bottom:386.962335px;}
.y10_c01219{bottom:418.681935px;}
.yf_c01219{bottom:481.764735px;}
.ye_c01219{bottom:514.192185px;}
.yd_c01219{bottom:545.555385px;}
.yc_c01219{bottom:608.999535px;}
.yb_c01219{bottom:633.591135px;}
.ya_c01219{bottom:672.790185px;}
.y9_c01219{bottom:705.227535px;}
.y8_c01219{bottom:767.948985px;}
.y7_c01219{bottom:800.029935px;}
.y6_c01219{bottom:815.706585px;}
.y5_c01219{bottom:862.038585px;}
.y4_c01219{bottom:895.188735px;}
.y3_c01219{bottom:927.621135px;}
.y2_c01219{bottom:1064.473785px;}
.hd_c01219{height:28.911094px;}
.h6_c01219{height:33.035449px;}
.h10_c01219{height:34.280297px;}
.he_c01219{height:36.138867px;}
.h8_c01219{height:38.927565px;}
.h4_c01219{height:41.301563px;}
.hf_c01219{height:46.257750px;}
.h9_c01219{height:68.354086px;}
.hb_c01219{height:68.403007px;}
.hc_c01219{height:69.180117px;}
.h11_c01219{height:73.066641px;}
.h2_c01219{height:74.232792px;}
.h3_c01219{height:75.749502px;}
.h7_c01219{height:83.130223px;}
.ha_c01219{height:88.568648px;}
.h5_c01219{height:88.612734px;}
.h1_c01219{height:1110.000000px;}
.h0_c01219{height:1263.000000px;}
.w1_c01219{width:775.500000px;}
.w0_c01219{width:892.500000px;}
.x0_c01219{left:0.000000px;}
.x1_c01219{left:58.500000px;}
.x17_c01219{left:81.513285px;}
.x3_c01219{left:82.597335px;}
.x18_c01219{left:147.427485px;}
.x32_c01219{left:157.456185px;}
.x3f_c01219{left:158.738235px;}
.x20_c01219{left:169.841085px;}
.x40_c01219{left:190.928085px;}
.x4_c01219{left:192.279435px;}
.x5d_c01219{left:200.892435px;}
.x39_c01219{left:202.313085px;}
.x2c_c01219{left:203.743635px;}
.x33_c01219{left:205.263285px;}
.x5_c01219{left:213.950535px;}
.x5a_c01219{left:223.914885px;}
.x19_c01219{left:226.043385px;}
.x4e_c01219{left:234.146535px;}
.x21_c01219{left:236.760135px;}
.x2d_c01219{left:247.813485px;}
.xe_c01219{left:248.912385px;}
.xf_c01219{left:259.371735px;}
.x6_c01219{left:261.539835px;}
.x41_c01219{left:268.613385px;}
.x3a_c01219{left:270.271635px;}
.x4a_c01219{left:280.622085px;}
.x28_c01219{left:291.596235px;}
.x1a_c01219{left:292.749585px;}
.x45_c01219{left:302.461485px;}
.x7_c01219{left:304.020735px;}
.x4b_c01219{left:314.212785px;}
.x10_c01219{left:315.499785px;}
.x1b_c01219{left:324.662235px;}
.x3e_c01219{left:327.241185px;}
.x22_c01219{left:336.032385px;}
.x2e_c01219{left:347.709435px;}
.x34_c01219{left:349.273635px;}
.x1c_c01219{left:358.465785px;}
.x23_c01219{left:359.708235px;}
.x46_c01219{left:360.752685px;}
.x4f_c01219{left:368.499435px;}
.x3b_c01219{left:370.078485px;}
.x8_c01219{left:371.127885px;}
.x42_c01219{left:379.156785px;}
.x2f_c01219{left:392.650485px;}
.x50_c01219{left:399.278535px;}
.x29_c01219{left:402.258435px;}
.x9_c01219{left:404.570085px;}
.x5b_c01219{left:414.277035px;}
.x35_c01219{left:415.618485px;}
.x11_c01219{left:426.731235px;}
.x51_c01219{left:430.874385px;}
.x58_c01219{left:437.264835px;}
.xa_c01219{left:438.358785px;}
.x47_c01219{left:446.833185px;}
.x1d_c01219{left:448.630035px;}
.x36_c01219{left:459.826935px;}
.x24_c01219{left:469.573485px;}
.x59_c01219{left:479.676435px;}
.x3c_c01219{left:481.918785px;}
.x2a_c01219{left:491.422785px;}
.xb_c01219{left:501.397035px;}
.x48_c01219{left:503.644335px;}
.x3d_c01219{left:514.781835px;}
.x43_c01219{left:525.201585px;}
.x12_c01219{left:535.552035px;}
.x25_c01219{left:536.740035px;}
.x4c_c01219{left:546.263835px;}
.x1e_c01219{left:547.927035px;}
.x56_c01219{left:549.382335px;}
.x5c_c01219{left:569.018985px;}
.xc_c01219{left:570.459435px;}
.x1f_c01219{left:581.017785px;}
.x37_c01219{left:591.194985px;}
.x16_c01219{left:597.758685px;}
.x44_c01219{left:602.881935px;}
.x5e_c01219{left:607.960635px;}
.x30_c01219{left:613.301685px;}
.x57_c01219{left:614.509485px;}
.x13_c01219{left:624.345135px;}
.x52_c01219{left:625.473735px;}
.x53_c01219{left:626.899335px;}
.x38_c01219{left:646.432035px;}
.x26_c01219{left:647.842785px;}
.x49_c01219{left:659.975235px;}
.x2_c01219{left:669.751485px;}
.x14_c01219{left:678.701085px;}
.x31_c01219{left:679.943535px;}
.x15_c01219{left:692.813535px;}
.xd_c01219{left:702.545235px;}
.x2b_c01219{left:703.743135px;}
.x4d_c01219{left:705.906285px;}
.x54_c01219{left:706.911135px;}
.x5f_c01219{left:708.044685px;}
.x55_c01219{left:710.841435px;}
.x27_c01219{left:723.953985px;}
@media print{
.v0_c01219{vertical-align:0.000000pt;}
.ls2_c01219{letter-spacing:-2.353126pt;}
.ls5_c01219{letter-spacing:-0.571473pt;}
.ls3_c01219{letter-spacing:0.000000pt;}
.ls6_c01219{letter-spacing:0.255482pt;}
.lsd_c01219{letter-spacing:0.403393pt;}
.ls10_c01219{letter-spacing:0.455840pt;}
.ls0_c01219{letter-spacing:0.984526pt;}
.lsb_c01219{letter-spacing:1.139920pt;}
.ls9_c01219{letter-spacing:2.568269pt;}
.lsa_c01219{letter-spacing:2.857114pt;}
.lsc_c01219{letter-spacing:2.948000pt;}
.lse_c01219{letter-spacing:3.220421pt;}
.ls11_c01219{letter-spacing:3.308800pt;}
.ls1_c01219{letter-spacing:3.361609pt;}
.ls4_c01219{letter-spacing:3.432000pt;}
.ls7_c01219{letter-spacing:3.766400pt;}
.lsf_c01219{letter-spacing:4.012800pt;}
.ls8_c01219{letter-spacing:51.955376pt;}
.ws0_c01219{word-spacing:-17.179694pt;}
.ws1_c01219{word-spacing:-16.808044pt;}
.ws2_c01219{word-spacing:0.000000pt;}
._2_c01219{margin-left:-12.505279pt;}
._1_c01219{margin-left:-9.262704pt;}
._0_c01219{width:2.359368pt;}
.fsa_c01219{font-size:24.640000pt;}
.fsd_c01219{font-size:29.216000pt;}
.fs4_c01219{font-size:29.920000pt;}
.fsb_c01219{font-size:30.800000pt;}
.fs2_c01219{font-size:35.200000pt;}
.fsc_c01219{font-size:39.424000pt;}
.fs6_c01219{font-size:51.955376pt;}
.fs7_c01219{font-size:58.256000pt;}
.fs9_c01219{font-size:58.960000pt;}
.fs8_c01219{font-size:61.952176pt;}
.fse_c01219{font-size:66.176000pt;}
.fs0_c01219{font-size:67.232176pt;}
.fs1_c01219{font-size:68.640000pt;}
.fs5_c01219{font-size:75.328000pt;}
.fs3_c01219{font-size:80.256000pt;}
.y0_c01219{bottom:0.000000pt;}
.y1d_c01219{bottom:1.822520pt;}
.y1c_c01219{bottom:61.693320pt;}
.y1_c01219{bottom:68.000000pt;}
.y1b_c01219{bottom:89.571720pt;}
.y1a_c01219{bottom:146.283320pt;}
.y19_c01219{bottom:174.474120pt;}
.y18_c01219{bottom:187.150520pt;}
.y17_c01219{bottom:226.746120pt;}
.y16_c01219{bottom:230.547720pt;}
.y15_c01219{bottom:257.475720pt;}
.y14_c01219{bottom:259.059720pt;}
.y13_c01219{bottom:293.274120pt;}
.y12_c01219{bottom:315.766920pt;}
.y11_c01219{bottom:343.966520pt;}
.y10_c01219{bottom:372.161720pt;}
.yf_c01219{bottom:428.235320pt;}
.ye_c01219{bottom:457.059720pt;}
.yd_c01219{bottom:484.938120pt;}
.yc_c01219{bottom:541.332920pt;}
.yb_c01219{bottom:563.192120pt;}
.ya_c01219{bottom:598.035720pt;}
.y9_c01219{bottom:626.868920pt;}
.y8_c01219{bottom:682.621320pt;}
.y7_c01219{bottom:711.137720pt;}
.y6_c01219{bottom:725.072520pt;}
.y5_c01219{bottom:766.256520pt;}
.y4_c01219{bottom:795.723320pt;}
.y3_c01219{bottom:824.552120pt;}
.y2_c01219{bottom:946.198920pt;}
.hd_c01219{height:25.698750pt;}
.h6_c01219{height:29.364844pt;}
.h10_c01219{height:30.471375pt;}
.he_c01219{height:32.123438pt;}
.h8_c01219{height:34.602280pt;}
.h4_c01219{height:36.712500pt;}
.hf_c01219{height:41.118000pt;}
.h9_c01219{height:60.759188pt;}
.hb_c01219{height:60.802673pt;}
.hc_c01219{height:61.493438pt;}
.h11_c01219{height:64.948125pt;}
.h2_c01219{height:65.984704pt;}
.h3_c01219{height:67.332891pt;}
.h7_c01219{height:73.893531pt;}
.ha_c01219{height:78.727688pt;}
.h5_c01219{height:78.766875pt;}
.h1_c01219{height:986.666667pt;}
.h0_c01219{height:1122.666667pt;}
.w1_c01219{width:689.333333pt;}
.w0_c01219{width:793.333333pt;}
.x0_c01219{left:0.000000pt;}
.x1_c01219{left:52.000000pt;}
.x17_c01219{left:72.456253pt;}
.x3_c01219{left:73.419853pt;}
.x18_c01219{left:131.046653pt;}
.x32_c01219{left:139.961053pt;}
.x3f_c01219{left:141.100653pt;}
.x20_c01219{left:150.969853pt;}
.x40_c01219{left:169.713853pt;}
.x4_c01219{left:170.915053pt;}
.x5d_c01219{left:178.571053pt;}
.x39_c01219{left:179.833853pt;}
.x2c_c01219{left:181.105453pt;}
.x33_c01219{left:182.456253pt;}
.x5_c01219{left:190.178253pt;}
.x5a_c01219{left:199.035453pt;}
.x19_c01219{left:200.927453pt;}
.x4e_c01219{left:208.130253pt;}
.x21_c01219{left:210.453453pt;}
.x2d_c01219{left:220.278653pt;}
.xe_c01219{left:221.255453pt;}
.xf_c01219{left:230.552653pt;}
.x6_c01219{left:232.479853pt;}
.x41_c01219{left:238.767453pt;}
.x3a_c01219{left:240.241453pt;}
.x4a_c01219{left:249.441853pt;}
.x28_c01219{left:259.196653pt;}
.x1a_c01219{left:260.221853pt;}
.x45_c01219{left:268.854653pt;}
.x7_c01219{left:270.240653pt;}
.x4b_c01219{left:279.300253pt;}
.x10_c01219{left:280.444253pt;}
.x1b_c01219{left:288.588653pt;}
.x3e_c01219{left:290.881053pt;}
.x22_c01219{left:298.695453pt;}
.x2e_c01219{left:309.075053pt;}
.x34_c01219{left:310.465453pt;}
.x1c_c01219{left:318.636253pt;}
.x23_c01219{left:319.740653pt;}
.x46_c01219{left:320.669053pt;}
.x4f_c01219{left:327.555053pt;}
.x3b_c01219{left:328.958653pt;}
.x8_c01219{left:329.891453pt;}
.x42_c01219{left:337.028253pt;}
.x2f_c01219{left:349.022653pt;}
.x50_c01219{left:354.914253pt;}
.x29_c01219{left:357.563053pt;}
.x9_c01219{left:359.617853pt;}
.x5b_c01219{left:368.246253pt;}
.x35_c01219{left:369.438653pt;}
.x11_c01219{left:379.316653pt;}
.x51_c01219{left:382.999453pt;}
.x58_c01219{left:388.679853pt;}
.xa_c01219{left:389.652253pt;}
.x47_c01219{left:397.185053pt;}
.x1d_c01219{left:398.782253pt;}
.x36_c01219{left:408.735053pt;}
.x24_c01219{left:417.398653pt;}
.x59_c01219{left:426.379053pt;}
.x3c_c01219{left:428.372253pt;}
.x2a_c01219{left:436.820253pt;}
.xb_c01219{left:445.686253pt;}
.x48_c01219{left:447.683853pt;}
.x3d_c01219{left:457.583853pt;}
.x43_c01219{left:466.845853pt;}
.x12_c01219{left:476.046253pt;}
.x25_c01219{left:477.102253pt;}
.x4c_c01219{left:485.567853pt;}
.x1e_c01219{left:487.046253pt;}
.x56_c01219{left:488.339853pt;}
.x5c_c01219{left:505.794653pt;}
.xc_c01219{left:507.075053pt;}
.x1f_c01219{left:516.460253pt;}
.x37_c01219{left:525.506653pt;}
.x16_c01219{left:531.341053pt;}
.x44_c01219{left:535.895053pt;}
.x5e_c01219{left:540.409453pt;}
.x30_c01219{left:545.157053pt;}
.x57_c01219{left:546.230653pt;}
.x13_c01219{left:554.973453pt;}
.x52_c01219{left:555.976653pt;}
.x53_c01219{left:557.243853pt;}
.x38_c01219{left:574.606253pt;}
.x26_c01219{left:575.860253pt;}
.x49_c01219{left:586.644653pt;}
.x2_c01219{left:595.334653pt;}
.x14_c01219{left:603.289853pt;}
.x31_c01219{left:604.394253pt;}
.x15_c01219{left:615.834253pt;}
.xd_c01219{left:624.484653pt;}
.x2b_c01219{left:625.549453pt;}
.x4d_c01219{left:627.472253pt;}
.x54_c01219{left:628.365453pt;}
.x5f_c01219{left:629.373053pt;}
.x55_c01219{left:631.859053pt;}
.x27_c01219{left:643.514653pt;}
}





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

.ir_c01220:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01220{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01220;src:url('chunks/assets/font_feb1a33a580976135f8081c9.woff2')format("woff");}.ff1_c01220{font-family:ff1_c01220;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01220;src:url('chunks/assets/font_51570c96eb76959c6976a838.woff2')format("woff");}.ff2_c01220{font-family:ff2_c01220;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01220;src:url('chunks/assets/font_e7526d6a1a3c296254097d11.woff2')format("woff");}.ff3_c01220{font-family:ff3_c01220;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01220;src:url('chunks/assets/font_85eb11058df412c75179deab.woff2')format("woff");}.ff4_c01220{font-family:ff4_c01220;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m13_c01220{transform:matrix(0.052326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.052326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.052326,0.000000,0.000000,0.250000,0,0);}
.m14_c01220{transform:matrix(0.081395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081395,0.000000,0.000000,0.250000,0,0);}
.m2_c01220{transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);}
.m77_c01220{transform:matrix(0.140477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140477,0.000000,0.000000,0.250000,0,0);}
.m56_c01220{transform:matrix(0.146170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146170,0.000000,0.000000,0.250000,0,0);}
.m1b_c01220{transform:matrix(0.172619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172619,0.000000,0.000000,0.250000,0,0);}
.m12_c01220{transform:matrix(0.176910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176910,0.000000,0.000000,0.250000,0,0);}
.m24_c01220{transform:matrix(0.177835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177835,0.000000,0.000000,0.250000,0,0);}
.m4_c01220{transform:matrix(0.193589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193589,0.000000,0.000000,0.250000,0,0);}
.m4b_c01220{transform:matrix(0.202174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202174,0.000000,0.000000,0.250000,0,0);}
.m63_c01220{transform:matrix(0.205463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205463,0.000000,0.000000,0.250000,0,0);}
.m78_c01220{transform:matrix(0.207301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207301,0.000000,0.000000,0.250000,0,0);}
.m5a_c01220{transform:matrix(0.217197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217197,0.000000,0.000000,0.250000,0,0);}
.m48_c01220{transform:matrix(0.224983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224983,0.000000,0.000000,0.250000,0,0);}
.m2b_c01220{transform:matrix(0.226087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226087,0.000000,0.000000,0.250000,0,0);}
.m4a_c01220{transform:matrix(0.231539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231539,0.000000,0.000000,0.250000,0,0);}
.m49_c01220{transform:matrix(0.235005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235005,0.000000,0.000000,0.250000,0,0);}
.m6c_c01220{transform:matrix(0.240973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240973,0.000000,0.000000,0.250000,0,0);}
.m3b_c01220{transform:matrix(0.245914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245914,0.000000,0.000000,0.250000,0,0);}
.m5c_c01220{transform:matrix(0.249177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249177,0.000000,0.000000,0.250000,0,0);}
.m0_c01220{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01220{transform:matrix(0.254849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254849,0.000000,0.000000,0.250000,0,0);}
.m53_c01220{transform:matrix(0.255363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255363,0.000000,0.000000,0.250000,0,0);}
.m69_c01220{transform:matrix(0.257168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257168,0.000000,0.000000,0.250000,0,0);}
.m4e_c01220{transform:matrix(0.257730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257730,0.000000,0.000000,0.250000,0,0);}
.m2a_c01220{transform:matrix(0.258292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258292,0.000000,0.000000,0.250000,0,0);}
.mb_c01220{transform:matrix(0.258927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258927,0.000000,0.000000,0.250000,0,0);}
.m66_c01220{transform:matrix(0.259160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259160,0.000000,0.000000,0.250000,0,0);}
.m1d_c01220{transform:matrix(0.259482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259482,0.000000,0.000000,0.250000,0,0);}
.m1a_c01220{transform:matrix(0.260499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260499,0.000000,0.000000,0.250000,0,0);}
.m3d_c01220{transform:matrix(0.261251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261251,0.000000,0.000000,0.250000,0,0);}
.m1_c01220{transform:matrix(0.261372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261372,0.000000,0.000000,0.250000,0,0);}
.m67_c01220{transform:matrix(0.262904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262904,0.000000,0.000000,0.250000,0,0);}
.m43_c01220{transform:matrix(0.265460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265460,0.000000,0.000000,0.250000,0,0);}
.m22_c01220{transform:matrix(0.265676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265676,0.000000,0.000000,0.250000,0,0);}
.m71_c01220{transform:matrix(0.266617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266617,0.000000,0.000000,0.250000,0,0);}
.mf_c01220{transform:matrix(0.267422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267422,0.000000,0.000000,0.250000,0,0);}
.m32_c01220{transform:matrix(0.270185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270185,0.000000,0.000000,0.250000,0,0);}
.m21_c01220{transform:matrix(0.270287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270287,0.000000,0.000000,0.250000,0,0);}
.m4d_c01220{transform:matrix(0.270442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270442,0.000000,0.000000,0.250000,0,0);}
.m72_c01220{transform:matrix(0.270967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270967,0.000000,0.000000,0.250000,0,0);}
.m59_c01220{transform:matrix(0.271900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271900,0.000000,0.000000,0.250000,0,0);}
.m9_c01220{transform:matrix(0.274314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274314,0.000000,0.000000,0.250000,0,0);}
.m8_c01220{transform:matrix(0.275114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275114,0.000000,0.000000,0.250000,0,0);}
.m31_c01220{transform:matrix(0.276771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276771,0.000000,0.000000,0.250000,0,0);}
.m6b_c01220{transform:matrix(0.278755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278755,0.000000,0.000000,0.250000,0,0);}
.m58_c01220{transform:matrix(0.279158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279158,0.000000,0.000000,0.250000,0,0);}
.m30_c01220{transform:matrix(0.279617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279617,0.000000,0.000000,0.250000,0,0);}
.m57_c01220{transform:matrix(0.281400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281400,0.000000,0.000000,0.250000,0,0);}
.m6e_c01220{transform:matrix(0.282457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282457,0.000000,0.000000,0.250000,0,0);}
.m3c_c01220{transform:matrix(0.282869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282869,0.000000,0.000000,0.250000,0,0);}
.m7a_c01220{transform:matrix(0.283332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283332,0.000000,0.000000,0.250000,0,0);}
.m16_c01220{transform:matrix(0.283610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283610,0.000000,0.000000,0.250000,0,0);}
.m51_c01220{transform:matrix(0.285027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285027,0.000000,0.000000,0.250000,0,0);}
.m2e_c01220{transform:matrix(0.285870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285870,0.000000,0.000000,0.250000,0,0);}
.m3a_c01220{transform:matrix(0.286873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286873,0.000000,0.000000,0.250000,0,0);}
.m55_c01220{transform:matrix(0.287480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287480,0.000000,0.000000,0.250000,0,0);}
.m29_c01220{transform:matrix(0.287524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287524,0.000000,0.000000,0.250000,0,0);}
.m36_c01220{transform:matrix(0.287843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287843,0.000000,0.000000,0.250000,0,0);}
.m1c_c01220{transform:matrix(0.288596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288596,0.000000,0.000000,0.250000,0,0);}
.m1e_c01220{transform:matrix(0.289235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289235,0.000000,0.000000,0.250000,0,0);}
.m47_c01220{transform:matrix(0.289521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289521,0.000000,0.000000,0.250000,0,0);}
.me_c01220{transform:matrix(0.289836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289836,0.000000,0.000000,0.250000,0,0);}
.m3_c01220{transform:matrix(0.289852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289852,0.000000,0.000000,0.250000,0,0);}
.m11_c01220{transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);}
.m2f_c01220{transform:matrix(0.290947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290947,0.000000,0.000000,0.250000,0,0);}
.m37_c01220{transform:matrix(0.291518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291518,0.000000,0.000000,0.250000,0,0);}
.m7b_c01220{transform:matrix(0.292152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292152,0.000000,0.000000,0.250000,0,0);}
.m28_c01220{transform:matrix(0.293509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293509,0.000000,0.000000,0.250000,0,0);}
.m79_c01220{transform:matrix(0.297103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297103,0.000000,0.000000,0.250000,0,0);}
.m68_c01220{transform:matrix(0.298293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298293,0.000000,0.000000,0.250000,0,0);}
.m33_c01220{transform:matrix(0.298450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298450,0.000000,0.000000,0.250000,0,0);}
.m44_c01220{transform:matrix(0.299558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299558,0.000000,0.000000,0.250000,0,0);}
.m61_c01220{transform:matrix(0.301662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301662,0.000000,0.000000,0.250000,0,0);}
.m23_c01220{transform:matrix(0.303390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303390,0.000000,0.000000,0.250000,0,0);}
.m1f_c01220{transform:matrix(0.303847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303847,0.000000,0.000000,0.250000,0,0);}
.m62_c01220{transform:matrix(0.304470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304470,0.000000,0.000000,0.250000,0,0);}
.m45_c01220{transform:matrix(0.304638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304638,0.000000,0.000000,0.250000,0,0);}
.m19_c01220{transform:matrix(0.305256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305256,0.000000,0.000000,0.250000,0,0);}
.m5d_c01220{transform:matrix(0.305411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305411,0.000000,0.000000,0.250000,0,0);}
.m17_c01220{transform:matrix(0.306254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306254,0.000000,0.000000,0.250000,0,0);}
.m65_c01220{transform:matrix(0.309091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309091,0.000000,0.000000,0.250000,0,0);}
.m70_c01220{transform:matrix(0.310260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310260,0.000000,0.000000,0.250000,0,0);}
.m3f_c01220{transform:matrix(0.310386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310386,0.000000,0.000000,0.250000,0,0);}
.m6d_c01220{transform:matrix(0.311274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311274,0.000000,0.000000,0.250000,0,0);}
.m60_c01220{transform:matrix(0.311485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311485,0.000000,0.000000,0.250000,0,0);}
.m2d_c01220{transform:matrix(0.311498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311498,0.000000,0.000000,0.250000,0,0);}
.m5_c01220{transform:matrix(0.314974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314974,0.000000,0.000000,0.250000,0,0);}
.m42_c01220{transform:matrix(0.315413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315413,0.000000,0.000000,0.250000,0,0);}
.m18_c01220{transform:matrix(0.315911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315911,0.000000,0.000000,0.250000,0,0);}
.m34_c01220{transform:matrix(0.315991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315991,0.000000,0.000000,0.250000,0,0);}
.m5e_c01220{transform:matrix(0.316121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316121,0.000000,0.000000,0.250000,0,0);}
.m6f_c01220{transform:matrix(0.317186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317186,0.000000,0.000000,0.250000,0,0);}
.m3e_c01220{transform:matrix(0.317306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317306,0.000000,0.000000,0.250000,0,0);}
.m2c_c01220{transform:matrix(0.318427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318427,0.000000,0.000000,0.250000,0,0);}
.m74_c01220{transform:matrix(0.319338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319338,0.000000,0.000000,0.250000,0,0);}
.md_c01220{transform:matrix(0.320542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320542,0.000000,0.000000,0.250000,0,0);}
.m35_c01220{transform:matrix(0.321187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321187,0.000000,0.000000,0.250000,0,0);}
.m26_c01220{transform:matrix(0.325390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325390,0.000000,0.000000,0.250000,0,0);}
.m38_c01220{transform:matrix(0.325421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325421,0.000000,0.000000,0.250000,0,0);}
.m27_c01220{transform:matrix(0.327624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327624,0.000000,0.000000,0.250000,0,0);}
.m76_c01220{transform:matrix(0.328918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328918,0.000000,0.000000,0.250000,0,0);}
.m6a_c01220{transform:matrix(0.333449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333449,0.000000,0.000000,0.250000,0,0);}
.m54_c01220{transform:matrix(0.334039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334039,0.000000,0.000000,0.250000,0,0);}
.ma_c01220{transform:matrix(0.334258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334258,0.000000,0.000000,0.250000,0,0);}
.m46_c01220{transform:matrix(0.336689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336689,0.000000,0.000000,0.250000,0,0);}
.m4c_c01220{transform:matrix(0.336829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336829,0.000000,0.000000,0.250000,0,0);}
.m39_c01220{transform:matrix(0.338107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338107,0.000000,0.000000,0.250000,0,0);}
.m73_c01220{transform:matrix(0.338476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338476,0.000000,0.000000,0.250000,0,0);}
.m40_c01220{transform:matrix(0.341839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341839,0.000000,0.000000,0.250000,0,0);}
.m7_c01220{transform:matrix(0.343395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343395,0.000000,0.000000,0.250000,0,0);}
.m52_c01220{transform:matrix(0.349419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349419,0.000000,0.000000,0.250000,0,0);}
.m5f_c01220{transform:matrix(0.350107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350107,0.000000,0.000000,0.250000,0,0);}
.m50_c01220{transform:matrix(0.351491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351491,0.000000,0.000000,0.250000,0,0);}
.m75_c01220{transform:matrix(0.353558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353558,0.000000,0.000000,0.250000,0,0);}
.m25_c01220{transform:matrix(0.359356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359356,0.000000,0.000000,0.250000,0,0);}
.mc_c01220{transform:matrix(0.362304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362304,0.000000,0.000000,0.250000,0,0);}
.m6_c01220{transform:matrix(0.364969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364969,0.000000,0.000000,0.250000,0,0);}
.m20_c01220{transform:matrix(0.372520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372520,0.000000,0.000000,0.250000,0,0);}
.m10_c01220{transform:matrix(0.377602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377602,0.000000,0.000000,0.250000,0,0);}
.m41_c01220{transform:matrix(0.390139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390139,0.000000,0.000000,0.250000,0,0);}
.m5b_c01220{transform:matrix(0.396432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396432,0.000000,0.000000,0.250000,0,0);}
.m4f_c01220{transform:matrix(0.400250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400250,0.000000,0.000000,0.250000,0,0);}
.m64_c01220{transform:matrix(0.402725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402725,0.000000,0.000000,0.250000,0,0);}
.v0_c01220{vertical-align:0.000000px;}
.lsb_c01220{letter-spacing:-4.490647px;}
.ls13_c01220{letter-spacing:-2.744280px;}
.lsc_c01220{letter-spacing:-2.626477px;}
.ls10_c01220{letter-spacing:-2.550240px;}
.lse_c01220{letter-spacing:-2.146207px;}
.ls9_c01220{letter-spacing:-1.951097px;}
.ls12_c01220{letter-spacing:-1.403289px;}
.ls0_c01220{letter-spacing:0.000000px;}
.ls3_c01220{letter-spacing:0.420236px;}
.ls7_c01220{letter-spacing:1.861047px;}
.lsf_c01220{letter-spacing:3.187810px;}
.ls11_c01220{letter-spacing:3.204302px;}
.lsa_c01220{letter-spacing:3.504471px;}
.ls4_c01220{letter-spacing:3.752110px;}
.ls1_c01220{letter-spacing:4.118400px;}
.ls2_c01220{letter-spacing:31.363200px;}
.lsd_c01220{letter-spacing:48.470598px;}
.ls5_c01220{letter-spacing:55.598598px;}
.ls8_c01220{letter-spacing:59.875398px;}
.ls6_c01220{letter-spacing:61.300998px;}
.sc__c01220{text-shadow:none;}
.sc0_c01220{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01220{-webkit-text-stroke:0px transparent;}
.sc0_c01220{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01220{word-spacing:-21.964851px;}
.ws1_c01220{word-spacing:0.000000px;}
._1_c01220{width:7.475134px;}
._0_c01220{width:31.465368px;}
.fc0_c01220{color:transparent;}
.fs15_c01220{font-size:22.176000px;}
.fs2_c01220{font-size:22.374000px;}
.fs0_c01220{font-size:22.572000px;}
.fs5_c01220{font-size:25.146000px;}
.fs1_c01220{font-size:26.928000px;}
.fs13_c01220{font-size:27.720000px;}
.fs14_c01220{font-size:28.314000px;}
.fs6_c01220{font-size:31.363200px;}
.fse_c01220{font-size:48.470598px;}
.fs8_c01220{font-size:55.598598px;}
.fsa_c01220{font-size:59.875398px;}
.fs9_c01220{font-size:61.300998px;}
.fsf_c01220{font-size:63.756198px;}
.fs4_c01220{font-size:67.320000px;}
.fsd_c01220{font-size:71.280000px;}
.fs11_c01220{font-size:72.864000px;}
.fsb_c01220{font-size:73.854000px;}
.fs7_c01220{font-size:75.042198px;}
.fs10_c01220{font-size:77.220000px;}
.fs12_c01220{font-size:78.408000px;}
.fs3_c01220{font-size:82.368000px;}
.fsc_c01220{font-size:128.304198px;}
.y0_c01220{bottom:0.000000px;}
.y1d_c01220{bottom:3.832335px;}
.y1c_c01220{bottom:62.994735px;}
.y1_c01220{bottom:76.500000px;}
.y1e_c01220{bottom:87.942735px;}
.y1b_c01220{bottom:104.337135px;}
.y1a_c01220{bottom:136.764585px;}
.y19_c01220{bottom:200.921535px;}
.y18_c01220{bottom:231.928335px;}
.y17_c01220{bottom:295.718985px;}
.y16_c01220{bottom:327.443535px;}
.y3_c01220{bottom:389.095785px;}
.y15_c01220{bottom:390.526335px;}
.y14_c01220{bottom:423.315135px;}
.y13_c01220{bottom:486.041535px;}
.y12_c01220{bottom:517.043385px;}
.y11_c01220{bottom:581.556735px;}
.y10_c01220{bottom:612.202185px;}
.yf_c01220{bottom:633.947535px;}
.ye_c01220{bottom:644.283135px;}
.yd_c01220{bottom:707.360985px;}
.yc_c01220{bottom:739.085535px;}
.y2_c01220{bottom:761.538735px;}
.yb_c01220{bottom:802.163385px;}
.ya_c01220{bottom:834.244335px;}
.y9_c01220{bottom:898.396335px;}
.y8_c01220{bottom:930.472335px;}
.y7_c01220{bottom:1012.795785px;}
.y6_c01220{bottom:1023.131385px;}
.y5_c01220{bottom:1035.961785px;}
.y4_c01220{bottom:1055.925135px;}
.h7_c01220{height:20.887891px;}
.h3_c01220{height:21.958857px;}
.h17_c01220{height:23.128875px;}
.h6_c01220{height:26.226492px;}
.h2_c01220{height:28.085063px;}
.h15_c01220{height:28.911094px;}
.h16_c01220{height:29.530617px;}
.h10_c01220{height:32.281418px;}
.h9_c01220{height:37.028666px;}
.hc_c01220{height:39.877015px;}
.ha_c01220{height:40.826465px;}
.h5_c01220{height:66.070898px;}
.h11_c01220{height:66.495722px;}
.h13_c01220{height:71.512031px;}
.h8_c01220{height:73.649813px;}
.hf_c01220{height:74.342813px;}
.h12_c01220{height:75.787207px;}
.h14_c01220{height:76.953164px;}
.hd_c01220{height:77.027414px;}
.h4_c01220{height:80.839688px;}
.hb_c01220{height:85.907250px;}
.he_c01220{height:125.923554px;}
.h1_c01220{height:1110.000000px;}
.h0_c01220{height:1263.000000px;}
.w1_c01220{width:775.500000px;}
.w0_c01220{width:892.500000px;}
.x0_c01220{left:0.000000px;}
.x2_c01220{left:53.664585px;}
.x1_c01220{left:58.500000px;}
.x3_c01220{left:66.188085px;}
.x50_c01220{left:81.443985px;}
.x21_c01220{left:82.468635px;}
.x7_c01220{left:83.904135px;}
.x19_c01220{left:137.106735px;}
.x49_c01220{left:148.051185px;}
.x57_c01220{left:158.119485px;}
.x2c_c01220{left:160.544985px;}
.x38_c01220{left:170.296485px;}
.x8_c01220{left:171.900285px;}
.x4a_c01220{left:180.775635px;}
.x4e_c01220{left:191.264685px;}
.x3f_c01220{left:192.319035px;}
.x11_c01220{left:193.789185px;}
.x1f_c01220{left:194.942535px;}
.x22_c01220{left:203.436735px;}
.x1a_c01220{left:206.337435px;}
.x39_c01220{left:213.712935px;}
.x4b_c01220{left:214.905885px;}
.x41_c01220{left:225.974085px;}
.x2d_c01220{left:227.280885px;}
.x46_c01220{left:234.537585px;}
.x33_c01220{left:237.240285px;}
.x9_c01220{left:240.556785px;}
.x28_c01220{left:247.110585px;}
.x37_c01220{left:248.422335px;}
.x3a_c01220{left:250.729035px;}
.x55_c01220{left:257.644185px;}
.x12_c01220{left:259.683585px;}
.x40_c01220{left:269.375685px;}
.x2e_c01220{left:271.390335px;}
.x20_c01220{left:282.280335px;}
.x4c_c01220{left:291.051735px;}
.x1b_c01220{left:293.551485px;}
.x56_c01220{left:305.114685px;}
.x4f_c01220{left:313.574235px;}
.x29_c01220{left:315.514635px;}
.x13_c01220{left:327.765885px;}
.x4d_c01220{left:335.819535px;}
.x3b_c01220{left:338.007435px;}
.x23_c01220{left:348.654885px;}
.x42_c01220{left:359.445885px;}
.xa_c01220{left:361.747635px;}
.x58_c01220{left:369.860685px;}
.x14_c01220{left:391.630785px;}
.x1c_c01220{left:393.833535px;}
.xb_c01220{left:404.614635px;}
.x59_c01220{left:413.861235px;}
.x34_c01220{left:414.935385px;}
.x2f_c01220{left:416.776785px;}
.x2a_c01220{left:426.518385px;}
.x51_c01220{left:435.819435px;}
.x43_c01220{left:437.611335px;}
.xc_c01220{left:438.695385px;}
.x3c_c01220{left:448.793385px;}
.x15_c01220{left:451.199085px;}
.x5c_c01220{left:456.896535px;}
.x52_c01220{left:468.964635px;}
.x24_c01220{left:471.305985px;}
.x1d_c01220{left:481.448535px;}
.x47_c01220{left:491.234685px;}
.xd_c01220{left:504.802635px;}
.x5d_c01220{left:511.742535px;}
.x44_c01220{left:513.885885px;}
.x30_c01220{left:515.494635px;}
.x2b_c01220{left:536.324235px;}
.xe_c01220{left:537.675585px;}
.x53_c01220{left:547.283535px;}
.x25_c01220{left:548.704185px;}
.x35_c01220{left:558.005235px;}
.x3d_c01220{left:560.049585px;}
.xf_c01220{left:570.786135px;}
.x48_c01220{left:579.745635px;}
.x16_c01220{left:583.413585px;}
.x3e_c01220{left:593.061135px;}
.x26_c01220{left:602.570085px;}
.x5f_c01220{left:605.401485px;}
.x5a_c01220{left:613.915485px;}
.x31_c01220{left:614.930235px;}
.x1e_c01220{left:624.716385px;}
.x5e_c01220{left:636.185535px;}
.x36_c01220{left:646.798335px;}
.x27_c01220{left:648.788235px;}
.x17_c01220{left:658.975335px;}
.x18_c01220{left:661.826535px;}
.x10_c01220{left:669.563385px;}
.x45_c01220{left:681.200835px;}
.x4_c01220{left:682.235385px;}
.x54_c01220{left:701.644335px;}
.x5_c01220{left:704.317335px;}
.x6_c01220{left:706.198335px;}
.x32_c01220{left:714.722235px;}
.x5b_c01220{left:736.427985px;}
.x60_c01220{left:757.609035px;}
@media print{
.v0_c01220{vertical-align:0.000000pt;}
.lsb_c01220{letter-spacing:-3.991686pt;}
.ls13_c01220{letter-spacing:-2.439360pt;}
.lsc_c01220{letter-spacing:-2.334646pt;}
.ls10_c01220{letter-spacing:-2.266880pt;}
.lse_c01220{letter-spacing:-1.907739pt;}
.ls9_c01220{letter-spacing:-1.734309pt;}
.ls12_c01220{letter-spacing:-1.247368pt;}
.ls0_c01220{letter-spacing:0.000000pt;}
.ls3_c01220{letter-spacing:0.373543pt;}
.ls7_c01220{letter-spacing:1.654264pt;}
.lsf_c01220{letter-spacing:2.833609pt;}
.ls11_c01220{letter-spacing:2.848268pt;}
.lsa_c01220{letter-spacing:3.115085pt;}
.ls4_c01220{letter-spacing:3.335209pt;}
.ls1_c01220{letter-spacing:3.660800pt;}
.ls2_c01220{letter-spacing:27.878400pt;}
.lsd_c01220{letter-spacing:43.084976pt;}
.ls5_c01220{letter-spacing:49.420976pt;}
.ls8_c01220{letter-spacing:53.222576pt;}
.ls6_c01220{letter-spacing:54.489776pt;}
.ws0_c01220{word-spacing:-19.524312pt;}
.ws1_c01220{word-spacing:0.000000pt;}
._1_c01220{width:6.644564pt;}
._0_c01220{width:27.969216pt;}
.fs15_c01220{font-size:19.712000pt;}
.fs2_c01220{font-size:19.888000pt;}
.fs0_c01220{font-size:20.064000pt;}
.fs5_c01220{font-size:22.352000pt;}
.fs1_c01220{font-size:23.936000pt;}
.fs13_c01220{font-size:24.640000pt;}
.fs14_c01220{font-size:25.168000pt;}
.fs6_c01220{font-size:27.878400pt;}
.fse_c01220{font-size:43.084976pt;}
.fs8_c01220{font-size:49.420976pt;}
.fsa_c01220{font-size:53.222576pt;}
.fs9_c01220{font-size:54.489776pt;}
.fsf_c01220{font-size:56.672176pt;}
.fs4_c01220{font-size:59.840000pt;}
.fsd_c01220{font-size:63.360000pt;}
.fs11_c01220{font-size:64.768000pt;}
.fsb_c01220{font-size:65.648000pt;}
.fs7_c01220{font-size:66.704176pt;}
.fs10_c01220{font-size:68.640000pt;}
.fs12_c01220{font-size:69.696000pt;}
.fs3_c01220{font-size:73.216000pt;}
.fsc_c01220{font-size:114.048176pt;}
.y0_c01220{bottom:0.000000pt;}
.y1d_c01220{bottom:3.406520pt;}
.y1c_c01220{bottom:55.995320pt;}
.y1_c01220{bottom:68.000000pt;}
.y1e_c01220{bottom:78.171320pt;}
.y1b_c01220{bottom:92.744120pt;}
.y1a_c01220{bottom:121.568520pt;}
.y19_c01220{bottom:178.596920pt;}
.y18_c01220{bottom:206.158520pt;}
.y17_c01220{bottom:262.861320pt;}
.y16_c01220{bottom:291.060920pt;}
.y3_c01220{bottom:345.862920pt;}
.y15_c01220{bottom:347.134520pt;}
.y14_c01220{bottom:376.280120pt;}
.y13_c01220{bottom:432.036920pt;}
.y12_c01220{bottom:459.594120pt;}
.y11_c01220{bottom:516.939320pt;}
.y10_c01220{bottom:544.179720pt;}
.yf_c01220{bottom:563.508920pt;}
.ye_c01220{bottom:572.696120pt;}
.yd_c01220{bottom:628.765320pt;}
.yc_c01220{bottom:656.964920pt;}
.y2_c01220{bottom:676.923320pt;}
.yb_c01220{bottom:713.034120pt;}
.ya_c01220{bottom:741.550520pt;}
.y9_c01220{bottom:798.574520pt;}
.y8_c01220{bottom:827.086520pt;}
.y7_c01220{bottom:900.262920pt;}
.y6_c01220{bottom:909.450120pt;}
.y5_c01220{bottom:920.854920pt;}
.y4_c01220{bottom:938.600120pt;}
.h7_c01220{height:18.567014pt;}
.h3_c01220{height:19.518984pt;}
.h17_c01220{height:20.559000pt;}
.h6_c01220{height:23.312438pt;}
.h2_c01220{height:24.964500pt;}
.h15_c01220{height:25.698750pt;}
.h16_c01220{height:26.249438pt;}
.h10_c01220{height:28.694594pt;}
.h9_c01220{height:32.914370pt;}
.hc_c01220{height:35.446236pt;}
.ha_c01220{height:36.290191pt;}
.h5_c01220{height:58.729688pt;}
.h11_c01220{height:59.107309pt;}
.h13_c01220{height:63.566250pt;}
.h8_c01220{height:65.466501pt;}
.hf_c01220{height:66.082500pt;}
.h12_c01220{height:67.366406pt;}
.h14_c01220{height:68.402813pt;}
.hd_c01220{height:68.468813pt;}
.h4_c01220{height:71.857500pt;}
.hb_c01220{height:76.362000pt;}
.he_c01220{height:111.932048pt;}
.h1_c01220{height:986.666667pt;}
.h0_c01220{height:1122.666667pt;}
.w1_c01220{width:689.333333pt;}
.w0_c01220{width:793.333333pt;}
.x0_c01220{left:0.000000pt;}
.x2_c01220{left:47.701853pt;}
.x1_c01220{left:52.000000pt;}
.x3_c01220{left:58.833853pt;}
.x50_c01220{left:72.394653pt;}
.x21_c01220{left:73.305453pt;}
.x7_c01220{left:74.581453pt;}
.x19_c01220{left:121.872653pt;}
.x49_c01220{left:131.601053pt;}
.x57_c01220{left:140.550653pt;}
.x2c_c01220{left:142.706653pt;}
.x38_c01220{left:151.374653pt;}
.x8_c01220{left:152.800253pt;}
.x4a_c01220{left:160.689453pt;}
.x4e_c01220{left:170.013053pt;}
.x3f_c01220{left:170.950253pt;}
.x11_c01220{left:172.257053pt;}
.x1f_c01220{left:173.282253pt;}
.x22_c01220{left:180.832653pt;}
.x1a_c01220{left:183.411053pt;}
.x39_c01220{left:189.967053pt;}
.x4b_c01220{left:191.027453pt;}
.x41_c01220{left:200.865853pt;}
.x2d_c01220{left:202.027453pt;}
.x46_c01220{left:208.477853pt;}
.x33_c01220{left:210.880253pt;}
.x9_c01220{left:213.828253pt;}
.x28_c01220{left:219.653853pt;}
.x37_c01220{left:220.819853pt;}
.x3a_c01220{left:222.870253pt;}
.x55_c01220{left:229.017053pt;}
.x12_c01220{left:230.829853pt;}
.x40_c01220{left:239.445053pt;}
.x2e_c01220{left:241.235853pt;}
.x20_c01220{left:250.915853pt;}
.x4c_c01220{left:258.712653pt;}
.x1b_c01220{left:260.934653pt;}
.x56_c01220{left:271.213053pt;}
.x4f_c01220{left:278.732653pt;}
.x29_c01220{left:280.457453pt;}
.x13_c01220{left:291.347453pt;}
.x4d_c01220{left:298.506253pt;}
.x3b_c01220{left:300.451053pt;}
.x23_c01220{left:309.915453pt;}
.x42_c01220{left:319.507453pt;}
.xa_c01220{left:321.553453pt;}
.x58_c01220{left:328.765053pt;}
.x14_c01220{left:348.116253pt;}
.x1c_c01220{left:350.074253pt;}
.xb_c01220{left:359.657453pt;}
.x59_c01220{left:367.876653pt;}
.x34_c01220{left:368.831453pt;}
.x2f_c01220{left:370.468253pt;}
.x2a_c01220{left:379.127453pt;}
.x51_c01220{left:387.395053pt;}
.x43_c01220{left:388.987853pt;}
.xc_c01220{left:389.951453pt;}
.x3c_c01220{left:398.927453pt;}
.x15_c01220{left:401.065853pt;}
.x5c_c01220{left:406.130253pt;}
.x52_c01220{left:416.857453pt;}
.x24_c01220{left:418.938653pt;}
.x1d_c01220{left:427.954253pt;}
.x47_c01220{left:436.653053pt;}
.xd_c01220{left:448.713453pt;}
.x5d_c01220{left:454.882253pt;}
.x44_c01220{left:456.787453pt;}
.x30_c01220{left:458.217453pt;}
.x2b_c01220{left:476.732653pt;}
.xe_c01220{left:477.933853pt;}
.x53_c01220{left:486.474253pt;}
.x25_c01220{left:487.737053pt;}
.x35_c01220{left:496.004653pt;}
.x3d_c01220{left:497.821853pt;}
.xf_c01220{left:507.365453pt;}
.x48_c01220{left:515.329453pt;}
.x16_c01220{left:518.589853pt;}
.x3e_c01220{left:527.165453pt;}
.x26_c01220{left:535.617853pt;}
.x5f_c01220{left:538.134653pt;}
.x5a_c01220{left:545.702653pt;}
.x31_c01220{left:546.604653pt;}
.x1e_c01220{left:555.303453pt;}
.x5e_c01220{left:565.498253pt;}
.x36_c01220{left:574.931853pt;}
.x27_c01220{left:576.700653pt;}
.x17_c01220{left:585.755853pt;}
.x18_c01220{left:588.290253pt;}
.x10_c01220{left:595.167453pt;}
.x45_c01220{left:605.511853pt;}
.x4_c01220{left:606.431453pt;}
.x54_c01220{left:623.683853pt;}
.x5_c01220{left:626.059853pt;}
.x6_c01220{left:627.731853pt;}
.x32_c01220{left:635.308653pt;}
.x5b_c01220{left:654.602653pt;}
.x60_c01220{left:673.430253pt;}
}





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

.ir_c01221:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01221{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01221;src:url('chunks/assets/font_75bab765334bb72db38c076c.woff2')format("woff");}.ff1_c01221{font-family:ff1_c01221;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01221;src:url('chunks/assets/font_cbb53397dd34c0b9e5a02b93.woff2')format("woff");}.ff2_c01221{font-family:ff2_c01221;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01221;src:url('chunks/assets/font_80a21768a18a94482e0ba886.woff2')format("woff");}.ff3_c01221{font-family:ff3_c01221;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01221;src:url('chunks/assets/font_c2c8c978700d48e55b7c5c99.woff2')format("woff");}.ff4_c01221{font-family:ff4_c01221;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5e_c01221{transform:matrix(0.083334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083334,0.000000,0.000000,0.250000,0,0);}
.m2f_c01221{transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);}
.m3c_c01221{transform:matrix(0.144048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144048,0.000000,0.000000,0.250000,0,0);}
.m43_c01221{transform:matrix(0.151082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151082,0.000000,0.000000,0.250000,0,0);}
.m5d_c01221{transform:matrix(0.176282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176282,0.000000,0.000000,0.250000,0,0);}
.m2_c01221{transform:matrix(0.178906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178906,0.000000,0.000000,0.250000,0,0);}
.m1a_c01221{transform:matrix(0.182031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182031,0.000000,0.000000,0.250000,0,0);}
.m3d_c01221{transform:matrix(0.184401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184401,0.000000,0.000000,0.250000,0,0);}
.m34_c01221{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01221{transform:matrix(0.192020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192020,0.000000,0.000000,0.250000,0,0);}
.m5c_c01221{transform:matrix(0.217237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217237,0.000000,0.000000,0.250000,0,0);}
.m4e_c01221{transform:matrix(0.218965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218965,0.000000,0.000000,0.250000,0,0);}
.m4d_c01221{transform:matrix(0.222741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222741,0.000000,0.000000,0.250000,0,0);}
.m30_c01221{transform:matrix(0.238723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238723,0.000000,0.000000,0.250000,0,0);}
.m42_c01221{transform:matrix(0.246273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246273,0.000000,0.000000,0.250000,0,0);}
.m0_c01221{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m57_c01221{transform:matrix(0.254215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254215,0.000000,0.000000,0.250000,0,0);}
.m31_c01221{transform:matrix(0.257104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257104,0.000000,0.000000,0.250000,0,0);}
.me_c01221{transform:matrix(0.258903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258903,0.000000,0.000000,0.250000,0,0);}
.m67_c01221{transform:matrix(0.258919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258919,0.000000,0.000000,0.250000,0,0);}
.m6a_c01221{transform:matrix(0.259866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259866,0.000000,0.000000,0.250000,0,0);}
.m13_c01221{transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);}
.m20_c01221{transform:matrix(0.268229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268229,0.000000,0.000000,0.250000,0,0);}
.m8_c01221{transform:matrix(0.269009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269009,0.000000,0.000000,0.250000,0,0);}
.m10_c01221{transform:matrix(0.271276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271276,0.000000,0.000000,0.250000,0,0);}
.m21_c01221{transform:matrix(0.271386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271386,0.000000,0.000000,0.250000,0,0);}
.ma_c01221{transform:matrix(0.271982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271982,0.000000,0.000000,0.250000,0,0);}
.m1f_c01221{transform:matrix(0.273900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273900,0.000000,0.000000,0.250000,0,0);}
.m51_c01221{transform:matrix(0.274252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274252,0.000000,0.000000,0.250000,0,0);}
.m6_c01221{transform:matrix(0.274474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274474,0.000000,0.000000,0.250000,0,0);}
.m26_c01221{transform:matrix(0.275065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275065,0.000000,0.000000,0.250000,0,0);}
.m60_c01221{transform:matrix(0.276015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276015,0.000000,0.000000,0.250000,0,0);}
.m1e_c01221{transform:matrix(0.276035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276035,0.000000,0.000000,0.250000,0,0);}
.m24_c01221{transform:matrix(0.276113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276113,0.000000,0.000000,0.250000,0,0);}
.m3f_c01221{transform:matrix(0.278003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278003,0.000000,0.000000,0.250000,0,0);}
.m12_c01221{transform:matrix(0.278792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278792,0.000000,0.000000,0.250000,0,0);}
.m35_c01221{transform:matrix(0.279589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279589,0.000000,0.000000,0.250000,0,0);}
.m45_c01221{transform:matrix(0.280210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280210,0.000000,0.000000,0.250000,0,0);}
.m33_c01221{transform:matrix(0.280279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280279,0.000000,0.000000,0.250000,0,0);}
.m1b_c01221{transform:matrix(0.282676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282676,0.000000,0.000000,0.250000,0,0);}
.m3_c01221{transform:matrix(0.284390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284390,0.000000,0.000000,0.250000,0,0);}
.m3a_c01221{transform:matrix(0.285030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285030,0.000000,0.000000,0.250000,0,0);}
.m32_c01221{transform:matrix(0.285698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285698,0.000000,0.000000,0.250000,0,0);}
.m69_c01221{transform:matrix(0.285741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285741,0.000000,0.000000,0.250000,0,0);}
.m3e_c01221{transform:matrix(0.286918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286918,0.000000,0.000000,0.250000,0,0);}
.m5a_c01221{transform:matrix(0.287309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287309,0.000000,0.000000,0.250000,0,0);}
.m1_c01221{transform:matrix(0.287443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287443,0.000000,0.000000,0.250000,0,0);}
.m53_c01221{transform:matrix(0.287468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287468,0.000000,0.000000,0.250000,0,0);}
.m5f_c01221{transform:matrix(0.287795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287795,0.000000,0.000000,0.250000,0,0);}
.m6b_c01221{transform:matrix(0.287871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287871,0.000000,0.000000,0.250000,0,0);}
.m36_c01221{transform:matrix(0.288324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288324,0.000000,0.000000,0.250000,0,0);}
.m37_c01221{transform:matrix(0.288926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288926,0.000000,0.000000,0.250000,0,0);}
.m2c_c01221{transform:matrix(0.289253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289253,0.000000,0.000000,0.250000,0,0);}
.m19_c01221{transform:matrix(0.289345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289345,0.000000,0.000000,0.250000,0,0);}
.m41_c01221{transform:matrix(0.291368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291368,0.000000,0.000000,0.250000,0,0);}
.m68_c01221{transform:matrix(0.292148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292148,0.000000,0.000000,0.250000,0,0);}
.m23_c01221{transform:matrix(0.293391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293391,0.000000,0.000000,0.250000,0,0);}
.m14_c01221{transform:matrix(0.293513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293513,0.000000,0.000000,0.250000,0,0);}
.m4b_c01221{transform:matrix(0.295414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295414,0.000000,0.000000,0.250000,0,0);}
.m65_c01221{transform:matrix(0.295980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295980,0.000000,0.000000,0.250000,0,0);}
.m6e_c01221{transform:matrix(0.300980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300980,0.000000,0.000000,0.250000,0,0);}
.m46_c01221{transform:matrix(0.301784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301784,0.000000,0.000000,0.250000,0,0);}
.m39_c01221{transform:matrix(0.302397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302397,0.000000,0.000000,0.250000,0,0);}
.m64_c01221{transform:matrix(0.302472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302472,0.000000,0.000000,0.250000,0,0);}
.md_c01221{transform:matrix(0.302487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302487,0.000000,0.000000,0.250000,0,0);}
.m28_c01221{transform:matrix(0.302527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302527,0.000000,0.000000,0.250000,0,0);}
.m61_c01221{transform:matrix(0.303251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303251,0.000000,0.000000,0.250000,0,0);}
.m62_c01221{transform:matrix(0.305245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305245,0.000000,0.000000,0.250000,0,0);}
.m59_c01221{transform:matrix(0.306011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306011,0.000000,0.000000,0.250000,0,0);}
.m47_c01221{transform:matrix(0.306087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306087,0.000000,0.000000,0.250000,0,0);}
.m70_c01221{transform:matrix(0.306104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306104,0.000000,0.000000,0.250000,0,0);}
.m63_c01221{transform:matrix(0.306273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306273,0.000000,0.000000,0.250000,0,0);}
.m4f_c01221{transform:matrix(0.306718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306718,0.000000,0.000000,0.250000,0,0);}
.m2e_c01221{transform:matrix(0.306727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306727,0.000000,0.000000,0.250000,0,0);}
.m5_c01221{transform:matrix(0.307617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307617,0.000000,0.000000,0.250000,0,0);}
.m4_c01221{transform:matrix(0.307829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307829,0.000000,0.000000,0.250000,0,0);}
.m72_c01221{transform:matrix(0.308541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308541,0.000000,0.000000,0.250000,0,0);}
.m40_c01221{transform:matrix(0.310309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310309,0.000000,0.000000,0.250000,0,0);}
.m25_c01221{transform:matrix(0.310406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310406,0.000000,0.000000,0.250000,0,0);}
.mc_c01221{transform:matrix(0.311292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311292,0.000000,0.000000,0.250000,0,0);}
.m49_c01221{transform:matrix(0.311482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311482,0.000000,0.000000,0.250000,0,0);}
.m16_c01221{transform:matrix(0.311658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311658,0.000000,0.000000,0.250000,0,0);}
.m2b_c01221{transform:matrix(0.312530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312530,0.000000,0.000000,0.250000,0,0);}
.m6d_c01221{transform:matrix(0.318130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318130,0.000000,0.000000,0.250000,0,0);}
.m71_c01221{transform:matrix(0.318542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318542,0.000000,0.000000,0.250000,0,0);}
.m29_c01221{transform:matrix(0.319387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319387,0.000000,0.000000,0.250000,0,0);}
.m18_c01221{transform:matrix(0.322189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322189,0.000000,0.000000,0.250000,0,0);}
.m27_c01221{transform:matrix(0.323527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323527,0.000000,0.000000,0.250000,0,0);}
.m38_c01221{transform:matrix(0.323664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323664,0.000000,0.000000,0.250000,0,0);}
.m4a_c01221{transform:matrix(0.323870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323870,0.000000,0.000000,0.250000,0,0);}
.m55_c01221{transform:matrix(0.324939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324939,0.000000,0.000000,0.250000,0,0);}
.m9_c01221{transform:matrix(0.326555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326555,0.000000,0.000000,0.250000,0,0);}
.m56_c01221{transform:matrix(0.326729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326729,0.000000,0.000000,0.250000,0,0);}
.m52_c01221{transform:matrix(0.328433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328433,0.000000,0.000000,0.250000,0,0);}
.m7_c01221{transform:matrix(0.329016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329016,0.000000,0.000000,0.250000,0,0);}
.m1c_c01221{transform:matrix(0.329242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329242,0.000000,0.000000,0.250000,0,0);}
.m66_c01221{transform:matrix(0.331339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331339,0.000000,0.000000,0.250000,0,0);}
.m2a_c01221{transform:matrix(0.334061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334061,0.000000,0.000000,0.250000,0,0);}
.m1d_c01221{transform:matrix(0.334589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334589,0.000000,0.000000,0.250000,0,0);}
.m22_c01221{transform:matrix(0.337849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337849,0.000000,0.000000,0.250000,0,0);}
.m48_c01221{transform:matrix(0.343263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343263,0.000000,0.000000,0.250000,0,0);}
.m3b_c01221{transform:matrix(0.345562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345562,0.000000,0.000000,0.250000,0,0);}
.m2d_c01221{transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);}
.m17_c01221{transform:matrix(0.347441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347441,0.000000,0.000000,0.250000,0,0);}
.m11_c01221{transform:matrix(0.350784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350784,0.000000,0.000000,0.250000,0,0);}
.m5b_c01221{transform:matrix(0.355176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355176,0.000000,0.000000,0.250000,0,0);}
.mf_c01221{transform:matrix(0.359239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359239,0.000000,0.000000,0.250000,0,0);}
.m50_c01221{transform:matrix(0.360708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360708,0.000000,0.000000,0.250000,0,0);}
.mb_c01221{transform:matrix(0.365654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365654,0.000000,0.000000,0.250000,0,0);}
.m54_c01221{transform:matrix(0.370846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370846,0.000000,0.000000,0.250000,0,0);}
.m58_c01221{transform:matrix(0.375145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375145,0.000000,0.000000,0.250000,0,0);}
.m44_c01221{transform:matrix(0.378256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378256,0.000000,0.000000,0.250000,0,0);}
.m15_c01221{transform:matrix(0.381346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381346,0.000000,0.000000,0.250000,0,0);}
.m6c_c01221{transform:matrix(0.387456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387456,0.000000,0.000000,0.250000,0,0);}
.m6f_c01221{transform:matrix(0.441029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441029,0.000000,0.000000,0.250000,0,0);}
.v2_c01221{vertical-align:-42.768000px;}
.v0_c01221{vertical-align:0.000000px;}
.v1_c01221{vertical-align:32.808600px;}
.lsc_c01221{letter-spacing:-2.591827px;}
.lsa_c01221{letter-spacing:-1.784658px;}
.ls11_c01221{letter-spacing:-0.614633px;}
.lse_c01221{letter-spacing:-0.349035px;}
.ls7_c01221{letter-spacing:-0.311019px;}
.ls9_c01221{letter-spacing:-0.214751px;}
.ls2_c01221{letter-spacing:0.000000px;}
.ls5_c01221{letter-spacing:0.659065px;}
.ls6_c01221{letter-spacing:1.155214px;}
.ls12_c01221{letter-spacing:2.443723px;}
.lsf_c01221{letter-spacing:3.356110px;}
.ls3_c01221{letter-spacing:3.702610px;}
.ls8_c01221{letter-spacing:3.801610px;}
.ls0_c01221{letter-spacing:4.264603px;}
.lsb_c01221{letter-spacing:31.363200px;}
.ls13_c01221{letter-spacing:55.598598px;}
.ls4_c01221{letter-spacing:57.024198px;}
.lsd_c01221{letter-spacing:58.449798px;}
.ls10_c01221{letter-spacing:62.726400px;}
.ls1_c01221{letter-spacing:1697.728758px;}
.sc__c01221{text-shadow:none;}
.sc0_c01221{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01221{-webkit-text-stroke:0px transparent;}
.sc0_c01221{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01221{word-spacing:-18.513050px;}
.ws1_c01221{word-spacing:0.000000px;}
._3_c01221{margin-left:-6.167700px;}
._4_c01221{margin-left:-3.702534px;}
._7_c01221{margin-left:-2.370852px;}
._8_c01221{width:7.108904px;}
._0_c01221{width:9.698832px;}
._1_c01221{width:13.699719px;}
._5_c01221{width:25.547968px;}
._6_c01221{width:41.429732px;}
._2_c01221{width:792.713750px;}
.fc0_c01221{color:transparent;}
.fs7_c01221{font-size:22.176000px;}
.fs2_c01221{font-size:26.928000px;}
.fsb_c01221{font-size:31.363200px;}
.fs10_c01221{font-size:32.472000px;}
.fs0_c01221{font-size:33.264000px;}
.fsd_c01221{font-size:33.660000px;}
.fsa_c01221{font-size:34.650000px;}
.fs9_c01221{font-size:37.818000px;}
.fs13_c01221{font-size:50.688000px;}
.fs11_c01221{font-size:55.598598px;}
.fs4_c01221{font-size:57.024198px;}
.fsc_c01221{font-size:58.449798px;}
.fsf_c01221{font-size:62.726400px;}
.fs12_c01221{font-size:66.330000px;}
.fs1_c01221{font-size:66.528000px;}
.fse_c01221{font-size:67.122198px;}
.fs3_c01221{font-size:74.052198px;}
.fs5_c01221{font-size:76.032198px;}
.fs6_c01221{font-size:86.328000px;}
.fs8_c01221{font-size:91.872198px;}
.y0_c01221{bottom:0.000000px;}
.y20_c01221{bottom:32.339385px;}
.y1_c01221{bottom:76.500000px;}
.y1f_c01221{bottom:94.714335px;}
.y1e_c01221{bottom:126.433935px;}
.y1d_c01221{bottom:190.585935px;}
.y1c_c01221{bottom:223.018335px;}
.y1b_c01221{bottom:285.739785px;}
.y1a_c01221{bottom:317.459385px;}
.y19_c01221{bottom:339.912585px;}
.y18_c01221{bottom:348.471135px;}
.y3_c01221{bottom:371.280735px;}
.y17_c01221{bottom:412.618185px;}
.y16_c01221{bottom:444.342735px;}
.y15_c01221{bottom:507.069135px;}
.y14_c01221{bottom:508.851135px;}
.y13_c01221{bottom:571.928985px;}
.y12_c01221{bottom:593.669385px;}
.y11_c01221{bottom:604.009935px;}
.y10_c01221{bottom:620.047935px;}
.yf_c01221{bottom:624.324735px;}
.ye_c01221{bottom:632.160585px;}
.yd_c01221{bottom:657.469935px;}
.yc_c01221{bottom:667.092735px;}
.yb_c01221{bottom:698.455935px;}
.ya_c01221{bottom:761.533785px;}
.y9_c01221{bottom:793.253385px;}
.y8_c01221{bottom:793.614735px;}
.y7_c01221{bottom:857.048985px;}
.y6_c01221{bottom:888.773535px;}
.y5_c01221{bottom:920.488185px;}
.y4_c01221{bottom:1057.702185px;}
.y2_c01221{bottom:1106.528985px;}
.hb_c01221{height:20.887891px;}
.hd_c01221{height:33.035449px;}
.h10_c01221{height:33.867281px;}
.h2_c01221{height:34.693313px;}
.h9_c01221{height:36.138867px;}
.h11_c01221{height:37.028666px;}
.h5_c01221{height:37.978116px;}
.hc_c01221{height:38.927565px;}
.hf_c01221{height:41.775782px;}
.h13_c01221{height:52.866000px;}
.he_c01221{height:65.876767px;}
.h12_c01221{height:69.180117px;}
.h3_c01221{height:69.386625px;}
.h4_c01221{height:72.678183px;}
.h6_c01221{height:74.584319px;}
.h7_c01221{height:84.684059px;}
.ha_c01221{height:90.167538px;}
.h8_c01221{height:95.819832px;}
.h1_c01221{height:1110.000000px;}
.h0_c01221{height:1263.000000px;}
.w1_c01221{width:775.500000px;}
.w0_c01221{width:892.500000px;}
.x2_c01221{left:-1.572465px;}
.x0_c01221{left:0.000000px;}
.x3_c01221{left:56.560335px;}
.x1_c01221{left:58.500000px;}
.x41_c01221{left:83.646735px;}
.x24_c01221{left:84.973335px;}
.x1c_c01221{left:86.240535px;}
.x5_c01221{left:88.378935px;}
.x42_c01221{left:96.130635px;}
.x43_c01221{left:112.975485px;}
.x3a_c01221{left:161.346885px;}
.x30_c01221{left:171.321135px;}
.x25_c01221{left:182.928885px;}
.x6_c01221{left:184.557435px;}
.x10_c01221{left:194.893035px;}
.x31_c01221{left:196.957185px;}
.x3b_c01221{left:205.248435px;}
.x32_c01221{left:206.476035px;}
.x51_c01221{left:215.153385px;}
.x1d_c01221{left:217.895685px;}
.x4a_c01221{left:219.529185px;}
.x38_c01221{left:227.864985px;}
.x11_c01221{left:229.260885px;}
.x26_c01221{left:230.537985px;}
.x4b_c01221{left:239.022285px;}
.x21_c01221{left:248.343135px;}
.x7_c01221{left:250.402335px;}
.x1e_c01221{left:261.435885px;}
.x57_c01221{left:271.806135px;}
.x27_c01221{left:273.464385px;}
.x2c_c01221{left:277.760985px;}
.x33_c01221{left:283.290135px;}
.x4d_c01221{left:284.527635px;}
.x3c_c01221{left:296.630385px;}
.x2a_c01221{left:304.664235px;}
.x22_c01221{left:316.776885px;}
.x8_c01221{left:318.049035px;}
.x12_c01221{left:319.128135px;}
.x13_c01221{left:329.468685px;}
.x19_c01221{left:338.690535px;}
.x34_c01221{left:340.710135px;}
.x2b_c01221{left:349.887435px;}
.x58_c01221{left:360.198285px;}
.x45_c01221{left:361.851585px;}
.x9_c01221{left:363.301935px;}
.x4e_c01221{left:370.910085px;}
.x1f_c01221{left:373.211835px;}
.x4f_c01221{left:384.280035px;}
.xa_c01221{left:385.428435px;}
.x14_c01221{left:394.477035px;}
.x46_c01221{left:405.169035px;}
.xb_c01221{left:406.238235px;}
.x1a_c01221{left:417.271785px;}
.x23_c01221{left:429.072585px;}
.x52_c01221{left:438.794385px;}
.x15_c01221{left:440.269485px;}
.x4c_c01221{left:449.857635px;}
.x50_c01221{left:452.223735px;}
.x3d_c01221{left:461.391135px;}
.x47_c01221{left:472.493985px;}
.xc_c01221{left:473.800785px;}
.x59_c01221{left:482.146485px;}
.x53_c01221{left:493.496835px;}
.x35_c01221{left:495.872835px;}
.xd_c01221{left:506.460885px;}
.x3e_c01221{left:515.851035px;}
.x16_c01221{left:517.251885px;}
.x54_c01221{left:527.206335px;}
.x1b_c01221{left:549.872385px;}
.x20_c01221{left:551.139585px;}
.x48_c01221{left:560.212935px;}
.x44_c01221{left:572.810685px;}
.x36_c01221{left:582.596835px;}
.x17_c01221{left:583.923435px;}
.x3f_c01221{left:595.249035px;}
.x39_c01221{left:604.342185px;}
.x18_c01221{left:615.751935px;}
.xe_c01221{left:618.118035px;}
.xf_c01221{left:650.832585px;}
.x28_c01221{left:661.618635px;}
.x37_c01221{left:671.394885px;}
.x40_c01221{left:682.378935px;}
.x4_c01221{left:684.373785px;}
.x29_c01221{left:693.689685px;}
.x2e_c01221{left:706.094385px;}
.x2d_c01221{left:707.920935px;}
.x2f_c01221{left:710.653335px;}
.x55_c01221{left:725.528085px;}
.x49_c01221{left:726.631935px;}
.x56_c01221{left:738.165435px;}
@media print{
.v2_c01221{vertical-align:-38.016000pt;}
.v0_c01221{vertical-align:0.000000pt;}
.v1_c01221{vertical-align:29.163200pt;}
.lsc_c01221{letter-spacing:-2.303846pt;}
.lsa_c01221{letter-spacing:-1.586363pt;}
.ls11_c01221{letter-spacing:-0.546341pt;}
.lse_c01221{letter-spacing:-0.310254pt;}
.ls7_c01221{letter-spacing:-0.276462pt;}
.ls9_c01221{letter-spacing:-0.190890pt;}
.ls2_c01221{letter-spacing:0.000000pt;}
.ls5_c01221{letter-spacing:0.585835pt;}
.ls6_c01221{letter-spacing:1.026857pt;}
.ls12_c01221{letter-spacing:2.172198pt;}
.lsf_c01221{letter-spacing:2.983209pt;}
.ls3_c01221{letter-spacing:3.291209pt;}
.ls8_c01221{letter-spacing:3.379209pt;}
.ls0_c01221{letter-spacing:3.790758pt;}
.lsb_c01221{letter-spacing:27.878400pt;}
.ls13_c01221{letter-spacing:49.420976pt;}
.ls4_c01221{letter-spacing:50.688176pt;}
.lsd_c01221{letter-spacing:51.955376pt;}
.ls10_c01221{letter-spacing:55.756800pt;}
.ls1_c01221{letter-spacing:1509.092229pt;}
.ws0_c01221{word-spacing:-16.456044pt;}
.ws1_c01221{word-spacing:0.000000pt;}
._3_c01221{margin-left:-5.482400pt;}
._4_c01221{margin-left:-3.291141pt;}
._7_c01221{margin-left:-2.107424pt;}
._8_c01221{width:6.319026pt;}
._0_c01221{width:8.621184pt;}
._1_c01221{width:12.177528pt;}
._5_c01221{width:22.709304pt;}
._6_c01221{width:36.826428pt;}
._2_c01221{width:704.634445pt;}
.fs7_c01221{font-size:19.712000pt;}
.fs2_c01221{font-size:23.936000pt;}
.fsb_c01221{font-size:27.878400pt;}
.fs10_c01221{font-size:28.864000pt;}
.fs0_c01221{font-size:29.568000pt;}
.fsd_c01221{font-size:29.920000pt;}
.fsa_c01221{font-size:30.800000pt;}
.fs9_c01221{font-size:33.616000pt;}
.fs13_c01221{font-size:45.056000pt;}
.fs11_c01221{font-size:49.420976pt;}
.fs4_c01221{font-size:50.688176pt;}
.fsc_c01221{font-size:51.955376pt;}
.fsf_c01221{font-size:55.756800pt;}
.fs12_c01221{font-size:58.960000pt;}
.fs1_c01221{font-size:59.136000pt;}
.fse_c01221{font-size:59.664176pt;}
.fs3_c01221{font-size:65.824176pt;}
.fs5_c01221{font-size:67.584176pt;}
.fs6_c01221{font-size:76.736000pt;}
.fs8_c01221{font-size:81.664176pt;}
.y0_c01221{bottom:0.000000pt;}
.y20_c01221{bottom:28.746120pt;}
.y1_c01221{bottom:68.000000pt;}
.y1f_c01221{bottom:84.190520pt;}
.y1e_c01221{bottom:112.385720pt;}
.y1d_c01221{bottom:169.409720pt;}
.y1c_c01221{bottom:198.238520pt;}
.y1b_c01221{bottom:253.990920pt;}
.y1a_c01221{bottom:282.186120pt;}
.y19_c01221{bottom:302.144520pt;}
.y18_c01221{bottom:309.752120pt;}
.y3_c01221{bottom:330.027320pt;}
.y17_c01221{bottom:366.771720pt;}
.y16_c01221{bottom:394.971320pt;}
.y15_c01221{bottom:450.728120pt;}
.y14_c01221{bottom:452.312120pt;}
.y13_c01221{bottom:508.381320pt;}
.y12_c01221{bottom:527.706120pt;}
.y11_c01221{bottom:536.897720pt;}
.y10_c01221{bottom:551.153720pt;}
.yf_c01221{bottom:554.955320pt;}
.ye_c01221{bottom:561.920520pt;}
.yd_c01221{bottom:584.417720pt;}
.yc_c01221{bottom:592.971320pt;}
.yb_c01221{bottom:620.849720pt;}
.ya_c01221{bottom:676.918920pt;}
.y9_c01221{bottom:705.114120pt;}
.y8_c01221{bottom:705.435320pt;}
.y7_c01221{bottom:761.821320pt;}
.y6_c01221{bottom:790.020920pt;}
.y5_c01221{bottom:818.211720pt;}
.y4_c01221{bottom:940.179720pt;}
.y2_c01221{bottom:983.581320pt;}
.hb_c01221{height:18.567014pt;}
.hd_c01221{height:29.364844pt;}
.h10_c01221{height:30.104250pt;}
.h2_c01221{height:30.838500pt;}
.h9_c01221{height:32.123438pt;}
.h11_c01221{height:32.914370pt;}
.h5_c01221{height:33.758325pt;}
.hc_c01221{height:34.602280pt;}
.hf_c01221{height:37.134029pt;}
.h13_c01221{height:46.992000pt;}
.he_c01221{height:58.557126pt;}
.h12_c01221{height:61.493438pt;}
.h3_c01221{height:61.677000pt;}
.h4_c01221{height:64.602829pt;}
.h6_c01221{height:66.297173pt;}
.h7_c01221{height:75.274719pt;}
.ha_c01221{height:80.148923pt;}
.h8_c01221{height:85.173184pt;}
.h1_c01221{height:986.666667pt;}
.h0_c01221{height:1122.666667pt;}
.w1_c01221{width:689.333333pt;}
.w0_c01221{width:793.333333pt;}
.x2_c01221{left:-1.397747pt;}
.x0_c01221{left:0.000000pt;}
.x3_c01221{left:50.275853pt;}
.x1_c01221{left:52.000000pt;}
.x41_c01221{left:74.352653pt;}
.x24_c01221{left:75.531853pt;}
.x1c_c01221{left:76.658253pt;}
.x5_c01221{left:78.559053pt;}
.x42_c01221{left:85.449453pt;}
.x43_c01221{left:100.422653pt;}
.x3a_c01221{left:143.419453pt;}
.x30_c01221{left:152.285453pt;}
.x25_c01221{left:162.603453pt;}
.x6_c01221{left:164.051053pt;}
.x10_c01221{left:173.238253pt;}
.x31_c01221{left:175.073053pt;}
.x3b_c01221{left:182.443053pt;}
.x32_c01221{left:183.534253pt;}
.x51_c01221{left:191.247453pt;}
.x1d_c01221{left:193.685053pt;}
.x4a_c01221{left:195.137053pt;}
.x38_c01221{left:202.546653pt;}
.x11_c01221{left:203.787453pt;}
.x26_c01221{left:204.922653pt;}
.x4b_c01221{left:212.464253pt;}
.x21_c01221{left:220.749453pt;}
.x7_c01221{left:222.579853pt;}
.x1e_c01221{left:232.387453pt;}
.x57_c01221{left:241.605453pt;}
.x27_c01221{left:243.079453pt;}
.x2c_c01221{left:246.898653pt;}
.x33_c01221{left:251.813453pt;}
.x4d_c01221{left:252.913453pt;}
.x3c_c01221{left:263.671453pt;}
.x2a_c01221{left:270.812653pt;}
.x22_c01221{left:281.579453pt;}
.x8_c01221{left:282.710253pt;}
.x12_c01221{left:283.669453pt;}
.x13_c01221{left:292.861053pt;}
.x19_c01221{left:301.058253pt;}
.x34_c01221{left:302.853453pt;}
.x2b_c01221{left:311.011053pt;}
.x58_c01221{left:320.176253pt;}
.x45_c01221{left:321.645853pt;}
.x9_c01221{left:322.935053pt;}
.x4e_c01221{left:329.697853pt;}
.x1f_c01221{left:331.743853pt;}
.x4f_c01221{left:341.582253pt;}
.xa_c01221{left:342.603053pt;}
.x14_c01221{left:350.646253pt;}
.x46_c01221{left:360.150253pt;}
.xb_c01221{left:361.100653pt;}
.x1a_c01221{left:370.908253pt;}
.x23_c01221{left:381.397853pt;}
.x52_c01221{left:390.039453pt;}
.x15_c01221{left:391.350653pt;}
.x4c_c01221{left:399.873453pt;}
.x50_c01221{left:401.976653pt;}
.x3d_c01221{left:410.125453pt;}
.x47_c01221{left:419.994653pt;}
.xc_c01221{left:421.156253pt;}
.x59_c01221{left:428.574653pt;}
.x53_c01221{left:438.663853pt;}
.x35_c01221{left:440.775853pt;}
.xd_c01221{left:450.187453pt;}
.x3e_c01221{left:458.534253pt;}
.x16_c01221{left:459.779453pt;}
.x54_c01221{left:468.627853pt;}
.x1b_c01221{left:488.775453pt;}
.x20_c01221{left:489.901853pt;}
.x48_c01221{left:497.967053pt;}
.x44_c01221{left:509.165053pt;}
.x36_c01221{left:517.863853pt;}
.x17_c01221{left:519.043053pt;}
.x3f_c01221{left:529.110253pt;}
.x39_c01221{left:537.193053pt;}
.x18_c01221{left:547.335053pt;}
.xe_c01221{left:549.438253pt;}
.xf_c01221{left:578.517853pt;}
.x28_c01221{left:588.105453pt;}
.x37_c01221{left:596.795453pt;}
.x40_c01221{left:606.559053pt;}
.x4_c01221{left:608.332253pt;}
.x29_c01221{left:616.613053pt;}
.x2e_c01221{left:627.639453pt;}
.x2d_c01221{left:629.263053pt;}
.x2f_c01221{left:631.691853pt;}
.x55_c01221{left:644.913853pt;}
.x49_c01221{left:645.895053pt;}
.x56_c01221{left:656.147053pt;}
}





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

.ir_c01222:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01222{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01222;src:url('chunks/assets/font_659428f525c2dbb917472d86.woff2')format("woff");}.ff1_c01222{font-family:ff1_c01222;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01222;src:url('chunks/assets/font_4337e55e495fccbdd2f588e4.woff2')format("woff");}.ff2_c01222{font-family:ff2_c01222;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01222;src:url('chunks/assets/font_b7a9775f9b0ae627757b5eee.woff2')format("woff");}.ff3_c01222{font-family:ff3_c01222;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1e_c01222{transform:matrix(0.153846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153846,0.000000,0.000000,0.250000,0,0);}
.m3d_c01222{transform:matrix(0.184616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184616,0.000000,0.000000,0.250000,0,0);}
.m1d_c01222{transform:matrix(0.185898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185898,0.000000,0.000000,0.250000,0,0);}
.m46_c01222{transform:matrix(0.207695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207695,0.000000,0.000000,0.250000,0,0);}
.m1_c01222{transform:matrix(0.234283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234283,0.000000,0.000000,0.250000,0,0);}
.m14_c01222{transform:matrix(0.235437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235437,0.000000,0.000000,0.250000,0,0);}
.m24_c01222{transform:matrix(0.249072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249072,0.000000,0.000000,0.250000,0,0);}
.me_c01222{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m56_c01222{transform:matrix(0.252865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252865,0.000000,0.000000,0.250000,0,0);}
.m61_c01222{transform:matrix(0.253828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253828,0.000000,0.000000,0.250000,0,0);}
.m34_c01222{transform:matrix(0.255443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255443,0.000000,0.000000,0.250000,0,0);}
.m50_c01222{transform:matrix(0.257903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257903,0.000000,0.000000,0.250000,0,0);}
.m7_c01222{transform:matrix(0.258852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258852,0.000000,0.000000,0.250000,0,0);}
.m8_c01222{transform:matrix(0.262012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262012,0.000000,0.000000,0.250000,0,0);}
.m4d_c01222{transform:matrix(0.263205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263205,0.000000,0.000000,0.250000,0,0);}
.m9_c01222{transform:matrix(0.264357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264357,0.000000,0.000000,0.250000,0,0);}
.m39_c01222{transform:matrix(0.266999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266999,0.000000,0.000000,0.250000,0,0);}
.m62_c01222{transform:matrix(0.267039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267039,0.000000,0.000000,0.250000,0,0);}
.m4c_c01222{transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);}
.m53_c01222{transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271128,0.000000,0.000000,0.250000,0,0);}
.m48_c01222{transform:matrix(0.272933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272933,0.000000,0.000000,0.250000,0,0);}
.m2d_c01222{transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);}
.m16_c01222{transform:matrix(0.273894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273894,0.000000,0.000000,0.250000,0,0);}
.m3a_c01222{transform:matrix(0.274890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274890,0.000000,0.000000,0.250000,0,0);}
.m2e_c01222{transform:matrix(0.275131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275131,0.000000,0.000000,0.250000,0,0);}
.m1c_c01222{transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275969,0.000000,0.000000,0.250000,0,0);}
.m69_c01222{transform:matrix(0.276054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276054,0.000000,0.000000,0.250000,0,0);}
.m5e_c01222{transform:matrix(0.276565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276565,0.000000,0.000000,0.250000,0,0);}
.mc_c01222{transform:matrix(0.277649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277649,0.000000,0.000000,0.250000,0,0);}
.m3c_c01222{transform:matrix(0.279988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279988,0.000000,0.000000,0.250000,0,0);}
.m36_c01222{transform:matrix(0.280350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280350,0.000000,0.000000,0.250000,0,0);}
.m49_c01222{transform:matrix(0.280647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280647,0.000000,0.000000,0.250000,0,0);}
.m2b_c01222{transform:matrix(0.280800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280800,0.000000,0.000000,0.250000,0,0);}
.m13_c01222{transform:matrix(0.281802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281802,0.000000,0.000000,0.250000,0,0);}
.mf_c01222{transform:matrix(0.282142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282142,0.000000,0.000000,0.250000,0,0);}
.m31_c01222{transform:matrix(0.282286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282286,0.000000,0.000000,0.250000,0,0);}
.m12_c01222{transform:matrix(0.284620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284620,0.000000,0.000000,0.250000,0,0);}
.m33_c01222{transform:matrix(0.285266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285266,0.000000,0.000000,0.250000,0,0);}
.m47_c01222{transform:matrix(0.285448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285448,0.000000,0.000000,0.250000,0,0);}
.m32_c01222{transform:matrix(0.286936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286936,0.000000,0.000000,0.250000,0,0);}
.m4f_c01222{transform:matrix(0.287247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287247,0.000000,0.000000,0.250000,0,0);}
.m5a_c01222{transform:matrix(0.287498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287498,0.000000,0.000000,0.250000,0,0);}
.m3f_c01222{transform:matrix(0.287539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287539,0.000000,0.000000,0.250000,0,0);}
.m3_c01222{transform:matrix(0.287777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287777,0.000000,0.000000,0.250000,0,0);}
.m42_c01222{transform:matrix(0.288662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288662,0.000000,0.000000,0.250000,0,0);}
.m11_c01222{transform:matrix(0.289228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289228,0.000000,0.000000,0.250000,0,0);}
.m23_c01222{transform:matrix(0.289459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289459,0.000000,0.000000,0.250000,0,0);}
.m5f_c01222{transform:matrix(0.289937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289937,0.000000,0.000000,0.250000,0,0);}
.m3b_c01222{transform:matrix(0.291010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291010,0.000000,0.000000,0.250000,0,0);}
.m0_c01222{transform:matrix(0.291044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291044,0.000000,0.000000,0.250000,0,0);}
.m1f_c01222{transform:matrix(0.291099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291099,0.000000,0.000000,0.250000,0,0);}
.m26_c01222{transform:matrix(0.291209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291209,0.000000,0.000000,0.250000,0,0);}
.m27_c01222{transform:matrix(0.291648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291648,0.000000,0.000000,0.250000,0,0);}
.m28_c01222{transform:matrix(0.291944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291944,0.000000,0.000000,0.250000,0,0);}
.m70_c01222{transform:matrix(0.293762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293762,0.000000,0.000000,0.250000,0,0);}
.ma_c01222{transform:matrix(0.293950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293950,0.000000,0.000000,0.250000,0,0);}
.m2_c01222{transform:matrix(0.293997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293997,0.000000,0.000000,0.250000,0,0);}
.m18_c01222{transform:matrix(0.294270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294270,0.000000,0.000000,0.250000,0,0);}
.m29_c01222{transform:matrix(0.294338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294338,0.000000,0.000000,0.250000,0,0);}
.m45_c01222{transform:matrix(0.294754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294754,0.000000,0.000000,0.250000,0,0);}
.m20_c01222{transform:matrix(0.297564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297564,0.000000,0.000000,0.250000,0,0);}
.m51_c01222{transform:matrix(0.301943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301943,0.000000,0.000000,0.250000,0,0);}
.m5d_c01222{transform:matrix(0.302079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302079,0.000000,0.000000,0.250000,0,0);}
.m4a_c01222{transform:matrix(0.303724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303724,0.000000,0.000000,0.250000,0,0);}
.m44_c01222{transform:matrix(0.305313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305313,0.000000,0.000000,0.250000,0,0);}
.m4_c01222{transform:matrix(0.305491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305491,0.000000,0.000000,0.250000,0,0);}
.m6e_c01222{transform:matrix(0.305631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305631,0.000000,0.000000,0.250000,0,0);}
.m2f_c01222{transform:matrix(0.306067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306067,0.000000,0.000000,0.250000,0,0);}
.m21_c01222{transform:matrix(0.306075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306075,0.000000,0.000000,0.250000,0,0);}
.m30_c01222{transform:matrix(0.306843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306843,0.000000,0.000000,0.250000,0,0);}
.m25_c01222{transform:matrix(0.307167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307167,0.000000,0.000000,0.250000,0,0);}
.m52_c01222{transform:matrix(0.307635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307635,0.000000,0.000000,0.250000,0,0);}
.m6f_c01222{transform:matrix(0.308686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308686,0.000000,0.000000,0.250000,0,0);}
.m6_c01222{transform:matrix(0.308804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308804,0.000000,0.000000,0.250000,0,0);}
.m64_c01222{transform:matrix(0.309798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309798,0.000000,0.000000,0.250000,0,0);}
.m65_c01222{transform:matrix(0.310212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310212,0.000000,0.000000,0.250000,0,0);}
.m1b_c01222{transform:matrix(0.312475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312475,0.000000,0.000000,0.250000,0,0);}
.mb_c01222{transform:matrix(0.314364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314364,0.000000,0.000000,0.250000,0,0);}
.m37_c01222{transform:matrix(0.315334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315334,0.000000,0.000000,0.250000,0,0);}
.m43_c01222{transform:matrix(0.316292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316292,0.000000,0.000000,0.250000,0,0);}
.m6a_c01222{transform:matrix(0.317124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317124,0.000000,0.000000,0.250000,0,0);}
.m22_c01222{transform:matrix(0.317229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317229,0.000000,0.000000,0.250000,0,0);}
.m6c_c01222{transform:matrix(0.317378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317378,0.000000,0.000000,0.250000,0,0);}
.m6b_c01222{transform:matrix(0.318019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318019,0.000000,0.000000,0.250000,0,0);}
.m2c_c01222{transform:matrix(0.320622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320622,0.000000,0.000000,0.250000,0,0);}
.m10_c01222{transform:matrix(0.323258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323258,0.000000,0.000000,0.250000,0,0);}
.m68_c01222{transform:matrix(0.324175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324175,0.000000,0.000000,0.250000,0,0);}
.m41_c01222{transform:matrix(0.324336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324336,0.000000,0.000000,0.250000,0,0);}
.m5_c01222{transform:matrix(0.325453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325453,0.000000,0.000000,0.250000,0,0);}
.m63_c01222{transform:matrix(0.325620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325620,0.000000,0.000000,0.250000,0,0);}
.m5c_c01222{transform:matrix(0.325709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325709,0.000000,0.000000,0.250000,0,0);}
.m55_c01222{transform:matrix(0.327078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327078,0.000000,0.000000,0.250000,0,0);}
.m6d_c01222{transform:matrix(0.327317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327317,0.000000,0.000000,0.250000,0,0);}
.m60_c01222{transform:matrix(0.327377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327377,0.000000,0.000000,0.250000,0,0);}
.m38_c01222{transform:matrix(0.329561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329561,0.000000,0.000000,0.250000,0,0);}
.m15_c01222{transform:matrix(0.330612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330612,0.000000,0.000000,0.250000,0,0);}
.m2a_c01222{transform:matrix(0.330908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330908,0.000000,0.000000,0.250000,0,0);}
.m57_c01222{transform:matrix(0.331194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331194,0.000000,0.000000,0.250000,0,0);}
.m35_c01222{transform:matrix(0.331746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331746,0.000000,0.000000,0.250000,0,0);}
.md_c01222{transform:matrix(0.333218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333218,0.000000,0.000000,0.250000,0,0);}
.m3e_c01222{transform:matrix(0.333642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333642,0.000000,0.000000,0.250000,0,0);}
.m4e_c01222{transform:matrix(0.335425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335425,0.000000,0.000000,0.250000,0,0);}
.m17_c01222{transform:matrix(0.337107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337107,0.000000,0.000000,0.250000,0,0);}
.m40_c01222{transform:matrix(0.338927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338927,0.000000,0.000000,0.250000,0,0);}
.m4b_c01222{transform:matrix(0.343397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343397,0.000000,0.000000,0.250000,0,0);}
.m54_c01222{transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345435,0.000000,0.000000,0.250000,0,0);}
.m1a_c01222{transform:matrix(0.348847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348847,0.000000,0.000000,0.250000,0,0);}
.m19_c01222{transform:matrix(0.359199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359199,0.000000,0.000000,0.250000,0,0);}
.m66_c01222{transform:matrix(0.361697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361697,0.000000,0.000000,0.250000,0,0);}
.m59_c01222{transform:matrix(0.365269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365269,0.000000,0.000000,0.250000,0,0);}
.m67_c01222{transform:matrix(0.379475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379475,0.000000,0.000000,0.250000,0,0);}
.m5b_c01222{transform:matrix(0.390593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390593,0.000000,0.000000,0.250000,0,0);}
.m58_c01222{transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);}
.v0_c01222{vertical-align:0.000000px;}
.ls5_c01222{letter-spacing:-2.966040px;}
.ls1_c01222{letter-spacing:-2.647267px;}
.ls6_c01222{letter-spacing:-1.323633px;}
.ls2_c01222{letter-spacing:0.000000px;}
.ls4_c01222{letter-spacing:1.129989px;}
.ls8_c01222{letter-spacing:1.157234px;}
.ls9_c01222{letter-spacing:3.691046px;}
.ls0_c01222{letter-spacing:3.781810px;}
.ls7_c01222{letter-spacing:3.960000px;}
.ls3_c01222{letter-spacing:55.598598px;}
.sc__c01222{text-shadow:none;}
.sc0_c01222{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01222{-webkit-text-stroke:0px transparent;}
.sc0_c01222{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01222{word-spacing:-17.585416px;}
.ws1_c01222{word-spacing:0.000000px;}
._2_c01222{margin-left:-25.839791px;}
._3_c01222{width:3.175884px;}
._1_c01222{width:5.029822px;}
._0_c01222{width:32.729400px;}
.fc0_c01222{color:transparent;}
.fs5_c01222{font-size:50.688000px;}
.fs1_c01222{font-size:55.598598px;}
.fs0_c01222{font-size:75.636198px;}
.fs2_c01222{font-size:79.200000px;}
.fs4_c01222{font-size:84.744000px;}
.fs3_c01222{font-size:86.922198px;}
.y0_c01222{bottom:0.000000px;}
.y1_c01222{bottom:76.500000px;}
.y1a_c01222{bottom:89.724735px;}
.y19_c01222{bottom:122.152185px;}
.y18_c01222{bottom:154.233135px;}
.y17_c01222{bottom:188.803935px;}
.y16_c01222{bottom:219.449385px;}
.y15_c01222{bottom:251.173935px;}
.y14_c01222{bottom:282.893535px;}
.y13_c01222{bottom:345.976335px;}
.y11_c01222{bottom:369.855135px;}
.y10_c01222{bottom:378.765135px;}
.y12_c01222{bottom:379.116585px;}
.yf_c01222{bottom:441.847935px;}
.ye_c01222{bottom:473.923935px;}
.yd_c01222{bottom:537.358185px;}
.yc_c01222{bottom:569.082735px;}
.yb_c01222{bottom:631.809135px;}
.ya_c01222{bottom:664.949385px;}
.y9_c01222{bottom:726.611535px;}
.y8_c01222{bottom:759.400335px;}
.y7_c01222{bottom:791.471385px;}
.y6_c01222{bottom:791.478315px;}
.y5_c01222{bottom:854.559135px;}
.y4_c01222{bottom:886.273785px;}
.y3_c01222{bottom:917.993385px;}
.y2_c01222{bottom:1054.138185px;}
.h3_c01222{height:37.028666px;}
.h8_c01222{height:52.866000px;}
.h2_c01222{height:74.232792px;}
.h4_c01222{height:77.730469px;}
.h7_c01222{height:82.603125px;}
.h6_c01222{height:83.171602px;}
.h5_c01222{height:85.309384px;}
.h1_c01222{height:1110.000000px;}
.h0_c01222{height:1263.000000px;}
.w1_c01222{width:775.500000px;}
.w0_c01222{width:892.500000px;}
.x0_c01222{left:0.000000px;}
.x1_c01222{left:58.500000px;}
.x17_c01222{left:69.076757px;}
.x32_c01222{left:86.804835px;}
.x18_c01222{left:88.284885px;}
.x3_c01222{left:89.354085px;}
.x2b_c01222{left:153.115035px;}
.x3f_c01222{left:162.049785px;}
.x19_c01222{left:175.538535px;}
.x4_c01222{left:176.647335px;}
.x3c_c01222{left:186.334485px;}
.xa_c01222{left:197.254185px;}
.x1d_c01222{left:198.630285px;}
.x1e_c01222{left:230.938935px;}
.x4e_c01222{left:233.126835px;}
.xb_c01222{left:241.170585px;}
.x40_c01222{left:243.680235px;}
.x5_c01222{left:244.769235px;}
.x4f_c01222{left:252.530835px;}
.x28_c01222{left:263.306985px;}
.x1f_c01222{left:265.509735px;}
.x3d_c01222{left:273.444585px;}
.x12_c01222{left:275.429535px;}
.x20_c01222{left:285.938385px;}
.x1a_c01222{left:298.036185px;}
.xc_c01222{left:309.648885px;}
.x3a_c01222{left:318.524235px;}
.x13_c01222{left:328.543035px;}
.x29_c01222{left:331.107135px;}
.x6_c01222{left:342.348585px;}
.x33_c01222{left:353.248485px;}
.x2c_c01222{left:364.381035px;}
.x14_c01222{left:374.617635px;}
.x2a_c01222{left:376.102635px;}
.x15_c01222{left:386.289735px;}
.x2d_c01222{left:397.150035px;}
.x3b_c01222{left:408.020235px;}
.x21_c01222{left:410.321985px;}
.x41_c01222{left:431.715885px;}
.x49_c01222{left:433.270185px;}
.x22_c01222{left:441.675285px;}
.xd_c01222{left:443.615685px;}
.x7_c01222{left:464.969985px;}
.x16_c01222{left:466.563885px;}
.x2e_c01222{left:475.285785px;}
.x1b_c01222{left:486.086685px;}
.x23_c01222{left:488.017185px;}
.x42_c01222{left:498.229035px;}
.x1c_c01222{left:508.683435px;}
.x24_c01222{left:518.811135px;}
.x2f_c01222{left:530.062485px;}
.x25_c01222{left:532.195935px;}
.xe_c01222{left:542.041485px;}
.x8_c01222{left:553.139385px;}
.x43_c01222{left:561.633585px;}
.x34_c01222{left:564.400635px;}
.x4a_c01222{left:573.543285px;}
.x37_c01222{left:576.043035px;}
.x46_c01222{left:584.730285px;}
.x30_c01222{left:597.803235px;}
.xf_c01222{left:609.534735px;}
.x44_c01222{left:610.554435px;}
.x35_c01222{left:617.875485px;}
.x38_c01222{left:619.528785px;}
.x50_c01222{left:628.621935px;}
.x9_c01222{left:630.720735px;}
.x10_c01222{left:632.017635px;}
.x11_c01222{left:640.922685px;}
.x4b_c01222{left:642.021585px;}
.x4c_c01222{left:652.842285px;}
.x2_c01222{left:664.405485px;}
.x31_c01222{left:684.527235px;}
.x39_c01222{left:695.897385px;}
.x36_c01222{left:707.317035px;}
.x48_c01222{left:709.623735px;}
.x26_c01222{left:729.092085px;}
.x45_c01222{left:730.408785px;}
.x4d_c01222{left:741.323535px;}
.x47_c01222{left:750.698835px;}
.x27_c01222{left:753.188685px;}
.x3e_c01222{left:771.548235px;}
@media print{
.v0_c01222{vertical-align:0.000000pt;}
.ls5_c01222{letter-spacing:-2.636480pt;}
.ls1_c01222{letter-spacing:-2.353126pt;}
.ls6_c01222{letter-spacing:-1.176563pt;}
.ls2_c01222{letter-spacing:0.000000pt;}
.ls4_c01222{letter-spacing:1.004434pt;}
.ls8_c01222{letter-spacing:1.028652pt;}
.ls9_c01222{letter-spacing:3.280930pt;}
.ls0_c01222{letter-spacing:3.361609pt;}
.ls7_c01222{letter-spacing:3.520000pt;}
.ls3_c01222{letter-spacing:49.420976pt;}
.ws0_c01222{word-spacing:-15.631481pt;}
.ws1_c01222{word-spacing:0.000000pt;}
._2_c01222{margin-left:-22.968703pt;}
._3_c01222{width:2.823008pt;}
._1_c01222{width:4.470953pt;}
._0_c01222{width:29.092800pt;}
.fs5_c01222{font-size:45.056000pt;}
.fs1_c01222{font-size:49.420976pt;}
.fs0_c01222{font-size:67.232176pt;}
.fs2_c01222{font-size:70.400000pt;}
.fs4_c01222{font-size:75.328000pt;}
.fs3_c01222{font-size:77.264176pt;}
.y0_c01222{bottom:0.000000pt;}
.y1_c01222{bottom:68.000000pt;}
.y1a_c01222{bottom:79.755320pt;}
.y19_c01222{bottom:108.579720pt;}
.y18_c01222{bottom:137.096120pt;}
.y17_c01222{bottom:167.825720pt;}
.y16_c01222{bottom:195.066120pt;}
.y15_c01222{bottom:223.265720pt;}
.y14_c01222{bottom:251.460920pt;}
.y13_c01222{bottom:307.534520pt;}
.y11_c01222{bottom:328.760120pt;}
.y10_c01222{bottom:336.680120pt;}
.y12_c01222{bottom:336.992520pt;}
.yf_c01222{bottom:392.753720pt;}
.ye_c01222{bottom:421.265720pt;}
.yd_c01222{bottom:477.651720pt;}
.yc_c01222{bottom:505.851320pt;}
.yb_c01222{bottom:561.608120pt;}
.ya_c01222{bottom:591.066120pt;}
.y9_c01222{bottom:645.876920pt;}
.y8_c01222{bottom:675.022520pt;}
.y7_c01222{bottom:703.530120pt;}
.y6_c01222{bottom:703.536280pt;}
.y5_c01222{bottom:759.608120pt;}
.y4_c01222{bottom:787.798920pt;}
.y3_c01222{bottom:815.994120pt;}
.y2_c01222{bottom:937.011720pt;}
.h3_c01222{height:32.914370pt;}
.h8_c01222{height:46.992000pt;}
.h2_c01222{height:65.984704pt;}
.h4_c01222{height:69.093750pt;}
.h7_c01222{height:73.425000pt;}
.h6_c01222{height:73.930313pt;}
.h5_c01222{height:75.830563pt;}
.h1_c01222{height:986.666667pt;}
.h0_c01222{height:1122.666667pt;}
.w1_c01222{width:689.333333pt;}
.w0_c01222{width:793.333333pt;}
.x0_c01222{left:0.000000pt;}
.x1_c01222{left:52.000000pt;}
.x17_c01222{left:61.401561pt;}
.x32_c01222{left:77.159853pt;}
.x18_c01222{left:78.475453pt;}
.x3_c01222{left:79.425853pt;}
.x2b_c01222{left:136.102253pt;}
.x3f_c01222{left:144.044253pt;}
.x19_c01222{left:156.034253pt;}
.x4_c01222{left:157.019853pt;}
.x3c_c01222{left:165.630653pt;}
.xa_c01222{left:175.337053pt;}
.x1d_c01222{left:176.560253pt;}
.x1e_c01222{left:205.279053pt;}
.x4e_c01222{left:207.223853pt;}
.xb_c01222{left:214.373853pt;}
.x40_c01222{left:216.604653pt;}
.x5_c01222{left:217.572653pt;}
.x4f_c01222{left:224.471853pt;}
.x28_c01222{left:234.050653pt;}
.x1f_c01222{left:236.008653pt;}
.x3d_c01222{left:243.061853pt;}
.x12_c01222{left:244.826253pt;}
.x20_c01222{left:254.167453pt;}
.x1a_c01222{left:264.921053pt;}
.xc_c01222{left:275.243453pt;}
.x3a_c01222{left:283.132653pt;}
.x13_c01222{left:292.038253pt;}
.x29_c01222{left:294.317453pt;}
.x6_c01222{left:304.309853pt;}
.x33_c01222{left:313.998653pt;}
.x2c_c01222{left:323.894253pt;}
.x14_c01222{left:332.993453pt;}
.x2a_c01222{left:334.313453pt;}
.x15_c01222{left:343.368653pt;}
.x2d_c01222{left:353.022253pt;}
.x3b_c01222{left:362.684653pt;}
.x21_c01222{left:364.730653pt;}
.x41_c01222{left:383.747453pt;}
.x49_c01222{left:385.129053pt;}
.x22_c01222{left:392.600253pt;}
.xd_c01222{left:394.325053pt;}
.x7_c01222{left:413.306653pt;}
.x16_c01222{left:414.723453pt;}
.x2e_c01222{left:422.476253pt;}
.x1b_c01222{left:432.077053pt;}
.x23_c01222{left:433.793053pt;}
.x42_c01222{left:442.870253pt;}
.x1c_c01222{left:452.163053pt;}
.x24_c01222{left:461.165453pt;}
.x2f_c01222{left:471.166653pt;}
.x25_c01222{left:473.063053pt;}
.xe_c01222{left:481.814653pt;}
.x8_c01222{left:491.679453pt;}
.x43_c01222{left:499.229853pt;}
.x34_c01222{left:501.689453pt;}
.x4a_c01222{left:509.816253pt;}
.x37_c01222{left:512.038253pt;}
.x46_c01222{left:519.760253pt;}
.x30_c01222{left:531.380653pt;}
.xf_c01222{left:541.808653pt;}
.x44_c01222{left:542.715053pt;}
.x35_c01222{left:549.222653pt;}
.x38_c01222{left:550.692253pt;}
.x50_c01222{left:558.775053pt;}
.x9_c01222{left:560.640653pt;}
.x10_c01222{left:561.793453pt;}
.x11_c01222{left:569.709053pt;}
.x4b_c01222{left:570.685853pt;}
.x4c_c01222{left:580.304253pt;}
.x2_c01222{left:590.582653pt;}
.x31_c01222{left:608.468653pt;}
.x39_c01222{left:618.575453pt;}
.x36_c01222{left:628.726253pt;}
.x48_c01222{left:630.776653pt;}
.x26_c01222{left:648.081853pt;}
.x45_c01222{left:649.252253pt;}
.x4d_c01222{left:658.954253pt;}
.x47_c01222{left:667.287853pt;}
.x27_c01222{left:669.501053pt;}
.x3e_c01222{left:685.820653pt;}
}





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

.ir_c01223:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01223{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01223;src:url('chunks/assets/font_0324ffc4b82101d0657f0c7b.woff2')format("woff");}.ff1_c01223{font-family:ff1_c01223;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01223;src:url('chunks/assets/font_d214da078db1f44704390b0c.woff2')format("woff");}.ff2_c01223{font-family:ff2_c01223;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01223;src:url('chunks/assets/font_6b4bc4046b06723808c492b8.woff2')format("woff");}.ff3_c01223{font-family:ff3_c01223;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01223;src:url('chunks/assets/font_3266a68954e0d68930c673ed.woff2')format("woff");}.ff4_c01223{font-family:ff4_c01223;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01223;src:url('chunks/assets/font_7f15953fa8010f18c45c7ddc.woff2')format("woff");}.ff5_c01223{font-family:ff5_c01223;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m69_c01223{transform:matrix(0.186607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186607,0.000000,0.000000,0.250000,0,0);}
.mb_c01223{transform:matrix(0.193257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193257,0.000000,0.000000,0.250000,0,0);}
.m77_c01223{transform:matrix(0.200826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200826,0.000000,0.000000,0.250000,0,0);}
.m52_c01223{transform:matrix(0.218565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218565,0.000000,0.000000,0.250000,0,0);}
.m76_c01223{transform:matrix(0.220727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220727,0.000000,0.000000,0.250000,0,0);}
.m75_c01223{transform:matrix(0.227892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227892,0.000000,0.000000,0.250000,0,0);}
.m17_c01223{transform:matrix(0.231336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231336,0.000000,0.000000,0.250000,0,0);}
.m53_c01223{transform:matrix(0.243931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243931,0.000000,0.000000,0.250000,0,0);}
.m81_c01223{transform:matrix(0.244606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244606,0.000000,0.000000,0.250000,0,0);}
.m39_c01223{transform:matrix(0.245550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245550,0.000000,0.000000,0.250000,0,0);}
.m2d_c01223{transform:matrix(0.246852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246852,0.000000,0.000000,0.250000,0,0);}
.m64_c01223{transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);}
.m0_c01223{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01223{transform:matrix(0.253134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253134,0.000000,0.000000,0.250000,0,0);}
.m91_c01223{transform:matrix(0.253716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253716,0.000000,0.000000,0.250000,0,0);}
.m4b_c01223{transform:matrix(0.265330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265330,0.000000,0.000000,0.250000,0,0);}
.m4e_c01223{transform:matrix(0.265418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265418,0.000000,0.000000,0.250000,0,0);}
.m26_c01223{transform:matrix(0.267616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267616,0.000000,0.000000,0.250000,0,0);}
.m3e_c01223{transform:matrix(0.267644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267644,0.000000,0.000000,0.250000,0,0);}
.m7f_c01223{transform:matrix(0.269009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269009,0.000000,0.000000,0.250000,0,0);}
.m85_c01223{transform:matrix(0.269532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269532,0.000000,0.000000,0.250000,0,0);}
.m55_c01223{transform:matrix(0.270220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270220,0.000000,0.000000,0.250000,0,0);}
.m19_c01223{transform:matrix(0.270557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270557,0.000000,0.000000,0.250000,0,0);}
.mf_c01223{transform:matrix(0.271918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271918,0.000000,0.000000,0.250000,0,0);}
.m43_c01223{transform:matrix(0.271971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271971,0.000000,0.000000,0.250000,0,0);}
.m3_c01223{transform:matrix(0.272751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272751,0.000000,0.000000,0.250000,0,0);}
.m6d_c01223{transform:matrix(0.272773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272773,0.000000,0.000000,0.250000,0,0);}
.m22_c01223{transform:matrix(0.273242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273242,0.000000,0.000000,0.250000,0,0);}
.m23_c01223{transform:matrix(0.273323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273323,0.000000,0.000000,0.250000,0,0);}
.m5f_c01223{transform:matrix(0.273900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273900,0.000000,0.000000,0.250000,0,0);}
.m6e_c01223{transform:matrix(0.274523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274523,0.000000,0.000000,0.250000,0,0);}
.m1e_c01223{transform:matrix(0.276887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276887,0.000000,0.000000,0.250000,0,0);}
.m7b_c01223{transform:matrix(0.276927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276927,0.000000,0.000000,0.250000,0,0);}
.m6a_c01223{transform:matrix(0.277813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277813,0.000000,0.000000,0.250000,0,0);}
.m45_c01223{transform:matrix(0.277981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277981,0.000000,0.000000,0.250000,0,0);}
.m3d_c01223{transform:matrix(0.278638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278638,0.000000,0.000000,0.250000,0,0);}
.m3c_c01223{transform:matrix(0.278792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278792,0.000000,0.000000,0.250000,0,0);}
.m9_c01223{transform:matrix(0.279376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279376,0.000000,0.000000,0.250000,0,0);}
.m5e_c01223{transform:matrix(0.279977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279977,0.000000,0.000000,0.250000,0,0);}
.m40_c01223{transform:matrix(0.281544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281544,0.000000,0.000000,0.250000,0,0);}
.m86_c01223{transform:matrix(0.281872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281872,0.000000,0.000000,0.250000,0,0);}
.m2f_c01223{transform:matrix(0.282394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282394,0.000000,0.000000,0.250000,0,0);}
.m6b_c01223{transform:matrix(0.282740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282740,0.000000,0.000000,0.250000,0,0);}
.m2e_c01223{transform:matrix(0.283067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283067,0.000000,0.000000,0.250000,0,0);}
.m27_c01223{transform:matrix(0.283588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283588,0.000000,0.000000,0.250000,0,0);}
.m62_c01223{transform:matrix(0.283840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283840,0.000000,0.000000,0.250000,0,0);}
.m14_c01223{transform:matrix(0.283862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283862,0.000000,0.000000,0.250000,0,0);}
.m3a_c01223{transform:matrix(0.286650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286650,0.000000,0.000000,0.250000,0,0);}
.m83_c01223{transform:matrix(0.286817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286817,0.000000,0.000000,0.250000,0,0);}
.m35_c01223{transform:matrix(0.289122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289122,0.000000,0.000000,0.250000,0,0);}
.m44_c01223{transform:matrix(0.289345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289345,0.000000,0.000000,0.250000,0,0);}
.m59_c01223{transform:matrix(0.289519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289519,0.000000,0.000000,0.250000,0,0);}
.m32_c01223{transform:matrix(0.290035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290035,0.000000,0.000000,0.250000,0,0);}
.ma_c01223{transform:matrix(0.290585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290585,0.000000,0.000000,0.250000,0,0);}
.mc_c01223{transform:matrix(0.291122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291122,0.000000,0.000000,0.250000,0,0);}
.m38_c01223{transform:matrix(0.291368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291368,0.000000,0.000000,0.250000,0,0);}
.m12_c01223{transform:matrix(0.291464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291464,0.000000,0.000000,0.250000,0,0);}
.m80_c01223{transform:matrix(0.293206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293206,0.000000,0.000000,0.250000,0,0);}
.m2c_c01223{transform:matrix(0.293391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293391,0.000000,0.000000,0.250000,0,0);}
.m49_c01223{transform:matrix(0.293588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293588,0.000000,0.000000,0.250000,0,0);}
.m5b_c01223{transform:matrix(0.293606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293606,0.000000,0.000000,0.250000,0,0);}
.m68_c01223{transform:matrix(0.293769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293769,0.000000,0.000000,0.250000,0,0);}
.m67_c01223{transform:matrix(0.295414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295414,0.000000,0.000000,0.250000,0,0);}
.m34_c01223{transform:matrix(0.295613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295613,0.000000,0.000000,0.250000,0,0);}
.m1a_c01223{transform:matrix(0.296670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296670,0.000000,0.000000,0.250000,0,0);}
.m5c_c01223{transform:matrix(0.297270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297270,0.000000,0.000000,0.250000,0,0);}
.m66_c01223{transform:matrix(0.297433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297433,0.000000,0.000000,0.250000,0,0);}
.m50_c01223{transform:matrix(0.297438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297438,0.000000,0.000000,0.250000,0,0);}
.m15_c01223{transform:matrix(0.299461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299461,0.000000,0.000000,0.250000,0,0);}
.m42_c01223{transform:matrix(0.300242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300242,0.000000,0.000000,0.250000,0,0);}
.m16_c01223{transform:matrix(0.300662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300662,0.000000,0.000000,0.250000,0,0);}
.m58_c01223{transform:matrix(0.300755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300755,0.000000,0.000000,0.250000,0,0);}
.m25_c01223{transform:matrix(0.301620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301620,0.000000,0.000000,0.250000,0,0);}
.m3f_c01223{transform:matrix(0.302763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302763,0.000000,0.000000,0.250000,0,0);}
.m37_c01223{transform:matrix(0.302870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302870,0.000000,0.000000,0.250000,0,0);}
.m46_c01223{transform:matrix(0.302884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302884,0.000000,0.000000,0.250000,0,0);}
.m5d_c01223{transform:matrix(0.302944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302944,0.000000,0.000000,0.250000,0,0);}
.m8a_c01223{transform:matrix(0.303317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303317,0.000000,0.000000,0.250000,0,0);}
.m8e_c01223{transform:matrix(0.304148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304148,0.000000,0.000000,0.250000,0,0);}
.m18_c01223{transform:matrix(0.304543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304543,0.000000,0.000000,0.250000,0,0);}
.m7d_c01223{transform:matrix(0.305234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305234,0.000000,0.000000,0.250000,0,0);}
.m36_c01223{transform:matrix(0.305572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305572,0.000000,0.000000,0.250000,0,0);}
.m71_c01223{transform:matrix(0.305759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305759,0.000000,0.000000,0.250000,0,0);}
.m70_c01223{transform:matrix(0.306919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306919,0.000000,0.000000,0.250000,0,0);}
.m24_c01223{transform:matrix(0.307226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307226,0.000000,0.000000,0.250000,0,0);}
.m7_c01223{transform:matrix(0.310313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310313,0.000000,0.000000,0.250000,0,0);}
.m4f_c01223{transform:matrix(0.312329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312329,0.000000,0.000000,0.250000,0,0);}
.m4d_c01223{transform:matrix(0.312488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312488,0.000000,0.000000,0.250000,0,0);}
.m4c_c01223{transform:matrix(0.312613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312613,0.000000,0.000000,0.250000,0,0);}
.m54_c01223{transform:matrix(0.313223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313223,0.000000,0.000000,0.250000,0,0);}
.m8f_c01223{transform:matrix(0.313436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313436,0.000000,0.000000,0.250000,0,0);}
.m30_c01223{transform:matrix(0.314272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314272,0.000000,0.000000,0.250000,0,0);}
.m13_c01223{transform:matrix(0.315826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315826,0.000000,0.000000,0.250000,0,0);}
.m31_c01223{transform:matrix(0.317011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317011,0.000000,0.000000,0.250000,0,0);}
.m90_c01223{transform:matrix(0.317198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317198,0.000000,0.000000,0.250000,0,0);}
.m20_c01223{transform:matrix(0.317732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317732,0.000000,0.000000,0.250000,0,0);}
.m11_c01223{transform:matrix(0.318027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318027,0.000000,0.000000,0.250000,0,0);}
.m61_c01223{transform:matrix(0.319142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319142,0.000000,0.000000,0.250000,0,0);}
.m4a_c01223{transform:matrix(0.319900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319900,0.000000,0.000000,0.250000,0,0);}
.m74_c01223{transform:matrix(0.321289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321289,0.000000,0.000000,0.250000,0,0);}
.m1c_c01223{transform:matrix(0.321427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321427,0.000000,0.000000,0.250000,0,0);}
.m33_c01223{transform:matrix(0.322035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322035,0.000000,0.000000,0.250000,0,0);}
.m8c_c01223{transform:matrix(0.322922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322922,0.000000,0.000000,0.250000,0,0);}
.m56_c01223{transform:matrix(0.323058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323058,0.000000,0.000000,0.250000,0,0);}
.m1b_c01223{transform:matrix(0.323607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323607,0.000000,0.000000,0.250000,0,0);}
.m7a_c01223{transform:matrix(0.323712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323712,0.000000,0.000000,0.250000,0,0);}
.m21_c01223{transform:matrix(0.324564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324564,0.000000,0.000000,0.250000,0,0);}
.me_c01223{transform:matrix(0.325204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325204,0.000000,0.000000,0.250000,0,0);}
.m89_c01223{transform:matrix(0.325696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325696,0.000000,0.000000,0.250000,0,0);}
.m8b_c01223{transform:matrix(0.325816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325816,0.000000,0.000000,0.250000,0,0);}
.m2_c01223{transform:matrix(0.326123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326123,0.000000,0.000000,0.250000,0,0);}
.m1d_c01223{transform:matrix(0.328402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328402,0.000000,0.000000,0.250000,0,0);}
.m2b_c01223{transform:matrix(0.328545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328545,0.000000,0.000000,0.250000,0,0);}
.m78_c01223{transform:matrix(0.330252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330252,0.000000,0.000000,0.250000,0,0);}
.m41_c01223{transform:matrix(0.330280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330280,0.000000,0.000000,0.250000,0,0);}
.m73_c01223{transform:matrix(0.330718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330718,0.000000,0.000000,0.250000,0,0);}
.m3b_c01223{transform:matrix(0.332454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332454,0.000000,0.000000,0.250000,0,0);}
.m84_c01223{transform:matrix(0.334061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334061,0.000000,0.000000,0.250000,0,0);}
.m79_c01223{transform:matrix(0.334635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334635,0.000000,0.000000,0.250000,0,0);}
.m82_c01223{transform:matrix(0.334656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334656,0.000000,0.000000,0.250000,0,0);}
.m28_c01223{transform:matrix(0.334766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334766,0.000000,0.000000,0.250000,0,0);}
.m8d_c01223{transform:matrix(0.336885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336885,0.000000,0.000000,0.250000,0,0);}
.m2a_c01223{transform:matrix(0.337145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337145,0.000000,0.000000,0.250000,0,0);}
.md_c01223{transform:matrix(0.338920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338920,0.000000,0.000000,0.250000,0,0);}
.m48_c01223{transform:matrix(0.340181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340181,0.000000,0.000000,0.250000,0,0);}
.m8_c01223{transform:matrix(0.340315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340315,0.000000,0.000000,0.250000,0,0);}
.m7e_c01223{transform:matrix(0.342543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342543,0.000000,0.000000,0.250000,0,0);}
.m29_c01223{transform:matrix(0.345291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345291,0.000000,0.000000,0.250000,0,0);}
.m5_c01223{transform:matrix(0.346409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346409,0.000000,0.000000,0.250000,0,0);}
.m6f_c01223{transform:matrix(0.347615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347615,0.000000,0.000000,0.250000,0,0);}
.m10_c01223{transform:matrix(0.348166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348166,0.000000,0.000000,0.250000,0,0);}
.m4_c01223{transform:matrix(0.348571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348571,0.000000,0.000000,0.250000,0,0);}
.m1f_c01223{transform:matrix(0.350196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350196,0.000000,0.000000,0.250000,0,0);}
.m65_c01223{transform:matrix(0.350728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350728,0.000000,0.000000,0.250000,0,0);}
.m63_c01223{transform:matrix(0.352824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352824,0.000000,0.000000,0.250000,0,0);}
.m57_c01223{transform:matrix(0.353294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353294,0.000000,0.000000,0.250000,0,0);}
.m5a_c01223{transform:matrix(0.355369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355369,0.000000,0.000000,0.250000,0,0);}
.m7c_c01223{transform:matrix(0.359239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359239,0.000000,0.000000,0.250000,0,0);}
.m60_c01223{transform:matrix(0.360723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360723,0.000000,0.000000,0.250000,0,0);}
.m88_c01223{transform:matrix(0.364670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364670,0.000000,0.000000,0.250000,0,0);}
.m6c_c01223{transform:matrix(0.379901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379901,0.000000,0.000000,0.250000,0,0);}
.m51_c01223{transform:matrix(0.384589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384589,0.000000,0.000000,0.250000,0,0);}
.m87_c01223{transform:matrix(0.388979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388979,0.000000,0.000000,0.250000,0,0);}
.m72_c01223{transform:matrix(0.395707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395707,0.000000,0.000000,0.250000,0,0);}
.m47_c01223{transform:matrix(0.401732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401732,0.000000,0.000000,0.250000,0,0);}
.m6_c01223{transform:matrix(0.408109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408109,0.000000,0.000000,0.250000,0,0);}
.v0_c01223{vertical-align:0.000000px;}
.ls7_c01223{letter-spacing:-2.591827px;}
.ls6_c01223{letter-spacing:-2.114640px;}
.ls8_c01223{letter-spacing:-0.720720px;}
.ls3_c01223{letter-spacing:-0.325830px;}
.ls0_c01223{letter-spacing:0.000000px;}
.ls1_c01223{letter-spacing:1.734638px;}
.ls9_c01223{letter-spacing:1.801810px;}
.lse_c01223{letter-spacing:2.051246px;}
.lsb_c01223{letter-spacing:3.110283px;}
.lsa_c01223{letter-spacing:3.306610px;}
.ls5_c01223{letter-spacing:3.534310px;}
.ls2_c01223{letter-spacing:3.702610px;}
.lsd_c01223{letter-spacing:4.217400px;}
.lsf_c01223{letter-spacing:4.405500px;}
.ls4_c01223{letter-spacing:54.172998px;}
.lsc_c01223{letter-spacing:57.024198px;}
.sc__c01223{text-shadow:none;}
.sc0_c01223{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01223{-webkit-text-stroke:0px transparent;}
.sc0_c01223{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01223{word-spacing:0.000000px;}
._0_c01223{width:31.689504px;}
.fc0_c01223{color:transparent;}
.fs2_c01223{font-size:16.236000px;}
.fs8_c01223{font-size:20.592000px;}
.fs1_c01223{font-size:22.176000px;}
.fs10_c01223{font-size:27.720000px;}
.fs9_c01223{font-size:33.264000px;}
.fsc_c01223{font-size:36.036198px;}
.fs0_c01223{font-size:45.144000px;}
.fs5_c01223{font-size:54.172998px;}
.fse_c01223{font-size:57.024198px;}
.fsd_c01223{font-size:66.132198px;}
.fsb_c01223{font-size:66.330000px;}
.fsa_c01223{font-size:69.696198px;}
.fs6_c01223{font-size:70.686198px;}
.fs4_c01223{font-size:74.052198px;}
.fs3_c01223{font-size:74.448000px;}
.fsf_c01223{font-size:84.348000px;}
.fs7_c01223{font-size:88.110000px;}
.y0_c01223{bottom:0.000000px;}
.y21_c01223{bottom:69.052545px;}
.y1_c01223{bottom:76.500000px;}
.y1f_c01223{bottom:79.389135px;}
.y20_c01223{bottom:86.155785px;}
.y1e_c01223{bottom:94.001535px;}
.y1d_c01223{bottom:111.465135px;}
.y1c_c01223{bottom:143.897535px;}
.y4_c01223{bottom:154.228185px;}
.y1b_c01223{bottom:176.329935px;}
.y1a_c01223{bottom:240.125535px;}
.y19_c01223{bottom:272.201535px;}
.y18_c01223{bottom:334.927935px;}
.y17_c01223{bottom:368.073135px;}
.y15_c01223{bottom:399.436335px;}
.y16_c01223{bottom:404.425935px;}
.y14_c01223{bottom:463.231935px;}
.y13_c01223{bottom:495.307935px;}
.y12_c01223{bottom:516.691935px;}
.y11_c01223{bottom:557.677935px;}
.y10_c01223{bottom:589.041135px;}
.yf_c01223{bottom:612.919935px;}
.ye_c01223{bottom:651.767535px;}
.yd_c01223{bottom:683.482185px;}
.yc_c01223{bottom:746.208585px;}
.yb_c01223{bottom:779.358735px;}
.ya_c01223{bottom:810.365535px;}
.y9_c01223{bottom:825.685785px;}
.y3_c01223{bottom:850.995135px;}
.y8_c01223{bottom:873.091935px;}
.y2_c01223{bottom:882.709785px;}
.y7_c01223{bottom:905.524335px;}
.y6_c01223{bottom:936.887535px;}
.y5_c01223{bottom:1064.835135px;}
.h4_c01223{height:16.933641px;}
.ha_c01223{height:21.476813px;}
.h3_c01223{height:23.128875px;}
.h12_c01223{height:28.911094px;}
.hb_c01223{height:34.693313px;}
.h7_c01223{height:36.079217px;}
.he_c01223{height:37.584628px;}
.h10_c01223{height:37.978116px;}
.h2_c01223{height:47.083781px;}
.hc_c01223{height:68.403007px;}
.hf_c01223{height:68.973816px;}
.hd_c01223{height:69.180117px;}
.h8_c01223{height:69.340123px;}
.h6_c01223{height:72.678183px;}
.h5_c01223{height:73.066641px;}
.h11_c01223{height:82.782949px;}
.h9_c01223{height:86.432124px;}
.h1_c01223{height:1110.000000px;}
.h0_c01223{height:1263.000000px;}
.w1_c01223{width:775.500000px;}
.w0_c01223{width:892.500000px;}
.x0_c01223{left:0.000000px;}
.x3_c01223{left:39.121485px;}
.x1_c01223{left:58.500000px;}
.x2_c01223{left:71.702385px;}
.x3b_c01223{left:92.888385px;}
.x1c_c01223{left:94.348635px;}
.x5_c01223{left:96.457335px;}
.x3c_c01223{left:127.251285px;}
.x1d_c01223{left:159.767835px;}
.x6_c01223{left:162.034935px;}
.x50_c01223{left:169.816335px;}
.x32_c01223{left:182.414085px;}
.x29_c01223{left:183.488235px;}
.x43_c01223{left:185.017785px;}
.xf_c01223{left:203.090235px;}
.x14_c01223{left:204.500985px;}
.x7_c01223{left:207.961035px;}
.x4d_c01223{left:225.721635px;}
.x2a_c01223{left:226.889835px;}
.x33_c01223{left:229.033185px;}
.x1e_c01223{left:237.527385px;}
.x60_c01223{left:247.630335px;}
.x8_c01223{left:249.432135px;}
.x44_c01223{left:251.426985px;}
.x4f_c01223{left:258.673785px;}
.x2b_c01223{left:259.762785px;}
.x51_c01223{left:262.356585px;}
.x41_c01223{left:270.791385px;}
.x37_c01223{left:272.162535px;}
.x1f_c01223{left:282.859485px;}
.x10_c01223{left:284.755335px;}
.x3d_c01223{left:292.888185px;}
.x15_c01223{left:295.204785px;}
.x57_c01223{left:303.446535px;}
.x4b_c01223{left:304.985985px;}
.x2e_c01223{left:306.025485px;}
.x61_c01223{left:315.821535px;}
.x9_c01223{left:317.608485px;}
.x16_c01223{left:326.345235px;}
.x52_c01223{left:329.137035px;}
.x58_c01223{left:337.096635px;}
.x2c_c01223{left:340.007235px;}
.x28_c01223{left:359.901285px;}
.x24_c01223{left:361.307085px;}
.x53_c01223{left:371.073435px;}
.x3e_c01223{left:372.241635px;}
.x11_c01223{left:382.171335px;}
.x3f_c01223{left:392.274285px;}
.x38_c01223{left:404.381985px;}
.x20_c01223{left:406.401585px;}
.x4c_c01223{left:415.138335px;}
.x2f_c01223{left:426.394635px;}
.x59_c01223{left:437.141085px;}
.x17_c01223{left:438.660735px;}
.x4e_c01223{left:447.224235px;}
.xa_c01223{left:450.550635px;}
.x39_c01223{left:460.059585px;}
.x54_c01223{left:461.272335px;}
.x42_c01223{left:471.781185px;}
.xb_c01223{left:482.641485px;}
.x48_c01223{left:494.249235px;}
.x34_c01223{left:505.159035px;}
.x30_c01223{left:514.217535px;}
.xc_c01223{left:516.346035px;}
.x5f_c01223{left:520.246635px;}
.x18_c01223{left:526.325235px;}
.x35_c01223{left:538.046835px;}
.x25_c01223{left:548.664585px;}
.x31_c01223{left:559.490235px;}
.x5c_c01223{left:569.707035px;}
.x49_c01223{left:573.028485px;}
.x5a_c01223{left:581.096985px;}
.x26_c01223{left:593.719485px;}
.x19_c01223{left:594.813435px;}
.x5d_c01223{left:603.322485px;}
.x21_c01223{left:604.881735px;}
.x45_c01223{left:617.593335px;}
.xd_c01223{left:626.141985px;}
.x46_c01223{left:629.166435px;}
.x12_c01223{left:638.205135px;}
.x1a_c01223{left:639.506985px;}
.x47_c01223{left:647.867535px;}
.x55_c01223{left:659.391135px;}
.x27_c01223{left:660.861285px;}
.x22_c01223{left:671.929485px;}
.x5e_c01223{left:680.596935px;}
.x36_c01223{left:682.740285px;}
.x56_c01223{left:691.625535px;}
.x4_c01223{left:693.674835px;}
.x23_c01223{left:704.837085px;}
.x1b_c01223{left:708.782235px;}
.x63_c01223{left:710.181105px;}
.x3a_c01223{left:711.588885px;}
.x4a_c01223{left:714.370785px;}
.x40_c01223{left:716.108235px;}
.x5b_c01223{left:726.003285px;}
.x2d_c01223{left:727.517985px;}
.x13_c01223{left:736.992285px;}
.xe_c01223{left:738.942585px;}
.x62_c01223{left:768.989085px;}
@media print{
.v0_c01223{vertical-align:0.000000pt;}
.ls7_c01223{letter-spacing:-2.303846pt;}
.ls6_c01223{letter-spacing:-1.879680pt;}
.ls8_c01223{letter-spacing:-0.640640pt;}
.ls3_c01223{letter-spacing:-0.289626pt;}
.ls0_c01223{letter-spacing:0.000000pt;}
.ls1_c01223{letter-spacing:1.541901pt;}
.ls9_c01223{letter-spacing:1.601609pt;}
.lse_c01223{letter-spacing:1.823330pt;}
.lsb_c01223{letter-spacing:2.764696pt;}
.lsa_c01223{letter-spacing:2.939209pt;}
.ls5_c01223{letter-spacing:3.141609pt;}
.ls2_c01223{letter-spacing:3.291209pt;}
.lsd_c01223{letter-spacing:3.748800pt;}
.lsf_c01223{letter-spacing:3.916000pt;}
.ls4_c01223{letter-spacing:48.153776pt;}
.lsc_c01223{letter-spacing:50.688176pt;}
.ws0_c01223{word-spacing:0.000000pt;}
._0_c01223{width:28.168448pt;}
.fs2_c01223{font-size:14.432000pt;}
.fs8_c01223{font-size:18.304000pt;}
.fs1_c01223{font-size:19.712000pt;}
.fs10_c01223{font-size:24.640000pt;}
.fs9_c01223{font-size:29.568000pt;}
.fsc_c01223{font-size:32.032176pt;}
.fs0_c01223{font-size:40.128000pt;}
.fs5_c01223{font-size:48.153776pt;}
.fse_c01223{font-size:50.688176pt;}
.fsd_c01223{font-size:58.784176pt;}
.fsb_c01223{font-size:58.960000pt;}
.fsa_c01223{font-size:61.952176pt;}
.fs6_c01223{font-size:62.832176pt;}
.fs4_c01223{font-size:65.824176pt;}
.fs3_c01223{font-size:66.176000pt;}
.fsf_c01223{font-size:74.976000pt;}
.fs7_c01223{font-size:78.320000pt;}
.y0_c01223{bottom:0.000000pt;}
.y21_c01223{bottom:61.380040pt;}
.y1_c01223{bottom:68.000000pt;}
.y1f_c01223{bottom:70.568120pt;}
.y20_c01223{bottom:76.582920pt;}
.y1e_c01223{bottom:83.556920pt;}
.y1d_c01223{bottom:99.080120pt;}
.y1c_c01223{bottom:127.908920pt;}
.y4_c01223{bottom:137.091720pt;}
.y1b_c01223{bottom:156.737720pt;}
.y1a_c01223{bottom:213.444920pt;}
.y19_c01223{bottom:241.956920pt;}
.y18_c01223{bottom:297.713720pt;}
.y17_c01223{bottom:327.176120pt;}
.y15_c01223{bottom:355.054520pt;}
.y16_c01223{bottom:359.489720pt;}
.y14_c01223{bottom:411.761720pt;}
.y13_c01223{bottom:440.273720pt;}
.y12_c01223{bottom:459.281720pt;}
.y11_c01223{bottom:495.713720pt;}
.y10_c01223{bottom:523.592120pt;}
.yf_c01223{bottom:544.817720pt;}
.ye_c01223{bottom:579.348920pt;}
.yd_c01223{bottom:607.539720pt;}
.yc_c01223{bottom:663.296520pt;}
.yb_c01223{bottom:692.763320pt;}
.ya_c01223{bottom:720.324920pt;}
.y9_c01223{bottom:733.942920pt;}
.y3_c01223{bottom:756.440120pt;}
.y8_c01223{bottom:776.081720pt;}
.y2_c01223{bottom:784.630920pt;}
.y7_c01223{bottom:804.910520pt;}
.y6_c01223{bottom:832.788920pt;}
.y5_c01223{bottom:946.520120pt;}
.h4_c01223{height:15.052125pt;}
.ha_c01223{height:19.090500pt;}
.h3_c01223{height:20.559000pt;}
.h12_c01223{height:25.698750pt;}
.hb_c01223{height:30.838500pt;}
.h7_c01223{height:32.070415pt;}
.he_c01223{height:33.408559pt;}
.h10_c01223{height:33.758325pt;}
.h2_c01223{height:41.852250pt;}
.hc_c01223{height:60.802673pt;}
.hf_c01223{height:61.310059pt;}
.hd_c01223{height:61.493438pt;}
.h8_c01223{height:61.635665pt;}
.h6_c01223{height:64.602829pt;}
.h5_c01223{height:64.948125pt;}
.h11_c01223{height:73.584844pt;}
.h9_c01223{height:76.828555pt;}
.h1_c01223{height:986.666667pt;}
.h0_c01223{height:1122.666667pt;}
.w1_c01223{width:689.333333pt;}
.w0_c01223{width:793.333333pt;}
.x0_c01223{left:0.000000pt;}
.x3_c01223{left:34.774653pt;}
.x1_c01223{left:52.000000pt;}
.x2_c01223{left:63.735453pt;}
.x3b_c01223{left:82.567453pt;}
.x1c_c01223{left:83.865453pt;}
.x5_c01223{left:85.739853pt;}
.x3c_c01223{left:113.112253pt;}
.x1d_c01223{left:142.015853pt;}
.x6_c01223{left:144.031053pt;}
.x50_c01223{left:150.947853pt;}
.x32_c01223{left:162.145853pt;}
.x29_c01223{left:163.100653pt;}
.x43_c01223{left:164.460253pt;}
.xf_c01223{left:180.524653pt;}
.x14_c01223{left:181.778653pt;}
.x7_c01223{left:184.854253pt;}
.x4d_c01223{left:200.641453pt;}
.x2a_c01223{left:201.679853pt;}
.x33_c01223{left:203.585053pt;}
.x1e_c01223{left:211.135453pt;}
.x60_c01223{left:220.115853pt;}
.x8_c01223{left:221.717453pt;}
.x44_c01223{left:223.490653pt;}
.x4f_c01223{left:229.932253pt;}
.x2b_c01223{left:230.900253pt;}
.x51_c01223{left:233.205853pt;}
.x41_c01223{left:240.703453pt;}
.x37_c01223{left:241.922253pt;}
.x1f_c01223{left:251.430653pt;}
.x10_c01223{left:253.115853pt;}
.x3d_c01223{left:260.345053pt;}
.x15_c01223{left:262.404253pt;}
.x57_c01223{left:269.730253pt;}
.x4b_c01223{left:271.098653pt;}
.x2e_c01223{left:272.022653pt;}
.x61_c01223{left:280.730253pt;}
.x9_c01223{left:282.318653pt;}
.x16_c01223{left:290.084653pt;}
.x52_c01223{left:292.566253pt;}
.x58_c01223{left:299.641453pt;}
.x2c_c01223{left:302.228653pt;}
.x28_c01223{left:319.912253pt;}
.x24_c01223{left:321.161853pt;}
.x53_c01223{left:329.843053pt;}
.x3e_c01223{left:330.881453pt;}
.x11_c01223{left:339.707853pt;}
.x3f_c01223{left:348.688253pt;}
.x38_c01223{left:359.450653pt;}
.x20_c01223{left:361.245853pt;}
.x4c_c01223{left:369.011853pt;}
.x2f_c01223{left:379.017453pt;}
.x59_c01223{left:388.569853pt;}
.x17_c01223{left:389.920653pt;}
.x4e_c01223{left:397.532653pt;}
.xa_c01223{left:400.489453pt;}
.x39_c01223{left:408.941853pt;}
.x54_c01223{left:410.019853pt;}
.x42_c01223{left:419.361053pt;}
.xb_c01223{left:429.014653pt;}
.x48_c01223{left:439.332653pt;}
.x34_c01223{left:449.030253pt;}
.x30_c01223{left:457.082253pt;}
.xc_c01223{left:458.974253pt;}
.x5f_c01223{left:462.441453pt;}
.x18_c01223{left:467.844653pt;}
.x35_c01223{left:478.263853pt;}
.x25_c01223{left:487.701853pt;}
.x31_c01223{left:497.324653pt;}
.x5c_c01223{left:506.406253pt;}
.x49_c01223{left:509.358653pt;}
.x5a_c01223{left:516.530653pt;}
.x26_c01223{left:527.750653pt;}
.x19_c01223{left:528.723053pt;}
.x5d_c01223{left:536.286653pt;}
.x21_c01223{left:537.672653pt;}
.x45_c01223{left:548.971853pt;}
.xd_c01223{left:556.570653pt;}
.x46_c01223{left:559.259053pt;}
.x12_c01223{left:567.293453pt;}
.x1a_c01223{left:568.450653pt;}
.x47_c01223{left:575.882253pt;}
.x55_c01223{left:586.125453pt;}
.x27_c01223{left:587.432253pt;}
.x22_c01223{left:597.270653pt;}
.x5e_c01223{left:604.975053pt;}
.x36_c01223{left:606.880253pt;}
.x56_c01223{left:614.778253pt;}
.x4_c01223{left:616.599853pt;}
.x23_c01223{left:626.521853pt;}
.x1b_c01223{left:630.028653pt;}
.x63_c01223{left:631.272093pt;}
.x3a_c01223{left:632.523453pt;}
.x4a_c01223{left:634.996253pt;}
.x40_c01223{left:636.540653pt;}
.x5b_c01223{left:645.336253pt;}
.x2d_c01223{left:646.682653pt;}
.x13_c01223{left:655.104253pt;}
.xe_c01223{left:656.837853pt;}
.x62_c01223{left:683.545853pt;}
}





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

.ir_c01224:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01224{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01224;src:url('chunks/assets/font_2b7c8b062cd5e0b966edc6bc.woff2')format("woff");}.ff1_c01224{font-family:ff1_c01224;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01224;src:url('chunks/assets/font_928672de71b483308a6fb48b.woff2')format("woff");}.ff2_c01224{font-family:ff2_c01224;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01224;src:url('chunks/assets/font_0e1acf6c85f8642d92157caf.woff2')format("woff");}.ff3_c01224{font-family:ff3_c01224;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m77_c01224{transform:matrix(0.054055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054055,0.000000,0.000000,0.250000,0,0);}
.m70_c01224{transform:matrix(0.085527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085527,0.000000,0.000000,0.250000,0,0);}
.m75_c01224{transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);}
.m57_c01224{transform:matrix(0.134137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134137,0.000000,0.000000,0.250000,0,0);}
.m2d_c01224{transform:matrix(0.165428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165428,0.000000,0.000000,0.250000,0,0);}
.me_c01224{transform:matrix(0.191441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191441,0.000000,0.000000,0.250000,0,0);}
.m6_c01224{transform:matrix(0.193474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193474,0.000000,0.000000,0.250000,0,0);}
.m76_c01224{transform:matrix(0.200772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200772,0.000000,0.000000,0.250000,0,0);}
.m46_c01224{transform:matrix(0.203690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203690,0.000000,0.000000,0.250000,0,0);}
.m6f_c01224{transform:matrix(0.205591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205591,0.000000,0.000000,0.250000,0,0);}
.m25_c01224{transform:matrix(0.211252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211252,0.000000,0.000000,0.250000,0,0);}
.m19_c01224{transform:matrix(0.213438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213438,0.000000,0.000000,0.250000,0,0);}
.m47_c01224{transform:matrix(0.214656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214656,0.000000,0.000000,0.250000,0,0);}
.m6b_c01224{transform:matrix(0.215781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215781,0.000000,0.000000,0.250000,0,0);}
.m1_c01224{transform:matrix(0.220973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220973,0.000000,0.000000,0.250000,0,0);}
.m58_c01224{transform:matrix(0.224130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224130,0.000000,0.000000,0.250000,0,0);}
.md_c01224{transform:matrix(0.227249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227249,0.000000,0.000000,0.250000,0,0);}
.m59_c01224{transform:matrix(0.227385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227385,0.000000,0.000000,0.250000,0,0);}
.m2e_c01224{transform:matrix(0.229217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229217,0.000000,0.000000,0.250000,0,0);}
.m38_c01224{transform:matrix(0.230788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230788,0.000000,0.000000,0.250000,0,0);}
.m33_c01224{transform:matrix(0.231988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231988,0.000000,0.000000,0.250000,0,0);}
.m9_c01224{transform:matrix(0.232097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232097,0.000000,0.000000,0.250000,0,0);}
.m4d_c01224{transform:matrix(0.233264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233264,0.000000,0.000000,0.250000,0,0);}
.m21_c01224{transform:matrix(0.238104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238104,0.000000,0.000000,0.250000,0,0);}
.m60_c01224{transform:matrix(0.238499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238499,0.000000,0.000000,0.250000,0,0);}
.m31_c01224{transform:matrix(0.240024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240024,0.000000,0.000000,0.250000,0,0);}
.m24_c01224{transform:matrix(0.241944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241944,0.000000,0.000000,0.250000,0,0);}
.m41_c01224{transform:matrix(0.243588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243588,0.000000,0.000000,0.250000,0,0);}
.m40_c01224{transform:matrix(0.247808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247808,0.000000,0.000000,0.250000,0,0);}
.m2_c01224{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m63_c01224{transform:matrix(0.251269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251269,0.000000,0.000000,0.250000,0,0);}
.m16_c01224{transform:matrix(0.251838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251838,0.000000,0.000000,0.250000,0,0);}
.m34_c01224{transform:matrix(0.252363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252363,0.000000,0.000000,0.250000,0,0);}
.m32_c01224{transform:matrix(0.252466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252466,0.000000,0.000000,0.250000,0,0);}
.m62_c01224{transform:matrix(0.252732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252732,0.000000,0.000000,0.250000,0,0);}
.mc_c01224{transform:matrix(0.254234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254234,0.000000,0.000000,0.250000,0,0);}
.m15_c01224{transform:matrix(0.254534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254534,0.000000,0.000000,0.250000,0,0);}
.m28_c01224{transform:matrix(0.255211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255211,0.000000,0.000000,0.250000,0,0);}
.m1e_c01224{transform:matrix(0.255278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255278,0.000000,0.000000,0.250000,0,0);}
.m1b_c01224{transform:matrix(0.255473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255473,0.000000,0.000000,0.250000,0,0);}
.m23_c01224{transform:matrix(0.255636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255636,0.000000,0.000000,0.250000,0,0);}
.m13_c01224{transform:matrix(0.256660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256660,0.000000,0.000000,0.250000,0,0);}
.m3b_c01224{transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);}
.m56_c01224{transform:matrix(0.257904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257904,0.000000,0.000000,0.250000,0,0);}
.m3d_c01224{transform:matrix(0.259422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259422,0.000000,0.000000,0.250000,0,0);}
.mf_c01224{transform:matrix(0.259723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259723,0.000000,0.000000,0.250000,0,0);}
.m30_c01224{transform:matrix(0.260007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260007,0.000000,0.000000,0.250000,0,0);}
.m20_c01224{transform:matrix(0.260738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260738,0.000000,0.000000,0.250000,0,0);}
.m2a_c01224{transform:matrix(0.261990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261990,0.000000,0.000000,0.250000,0,0);}
.m74_c01224{transform:matrix(0.262185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262185,0.000000,0.000000,0.250000,0,0);}
.m45_c01224{transform:matrix(0.262882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262882,0.000000,0.000000,0.250000,0,0);}
.m44_c01224{transform:matrix(0.263257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263257,0.000000,0.000000,0.250000,0,0);}
.m67_c01224{transform:matrix(0.264007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264007,0.000000,0.000000,0.250000,0,0);}
.m4e_c01224{transform:matrix(0.264211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264211,0.000000,0.000000,0.250000,0,0);}
.m0_c01224{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.m5e_c01224{transform:matrix(0.265399,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265399,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265399,0.000000,0.000000,0.250000,0,0);}
.m5f_c01224{transform:matrix(0.265686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265686,0.000000,0.000000,0.250000,0,0);}
.m4f_c01224{transform:matrix(0.266177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266177,0.000000,0.000000,0.250000,0,0);}
.m35_c01224{transform:matrix(0.266812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266812,0.000000,0.000000,0.250000,0,0);}
.m1c_c01224{transform:matrix(0.266996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266996,0.000000,0.000000,0.250000,0,0);}
.m66_c01224{transform:matrix(0.267332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267332,0.000000,0.000000,0.250000,0,0);}
.m8_c01224{transform:matrix(0.267519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267519,0.000000,0.000000,0.250000,0,0);}
.m36_c01224{transform:matrix(0.267636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267636,0.000000,0.000000,0.250000,0,0);}
.m22_c01224{transform:matrix(0.268372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268372,0.000000,0.000000,0.250000,0,0);}
.m5d_c01224{transform:matrix(0.268440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268440,0.000000,0.000000,0.250000,0,0);}
.m27_c01224{transform:matrix(0.268627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268627,0.000000,0.000000,0.250000,0,0);}
.m2b_c01224{transform:matrix(0.269604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269604,0.000000,0.000000,0.250000,0,0);}
.m1f_c01224{transform:matrix(0.271890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271890,0.000000,0.000000,0.250000,0,0);}
.m4_c01224{transform:matrix(0.271910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271910,0.000000,0.000000,0.250000,0,0);}
.m2c_c01224{transform:matrix(0.273257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273257,0.000000,0.000000,0.250000,0,0);}
.m43_c01224{transform:matrix(0.274008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274008,0.000000,0.000000,0.250000,0,0);}
.m17_c01224{transform:matrix(0.274093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274093,0.000000,0.000000,0.250000,0,0);}
.m7_c01224{transform:matrix(0.274939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274939,0.000000,0.000000,0.250000,0,0);}
.m3a_c01224{transform:matrix(0.275371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275371,0.000000,0.000000,0.250000,0,0);}
.m52_c01224{transform:matrix(0.275608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275608,0.000000,0.000000,0.250000,0,0);}
.m2f_c01224{transform:matrix(0.275836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275836,0.000000,0.000000,0.250000,0,0);}
.m50_c01224{transform:matrix(0.275870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275870,0.000000,0.000000,0.250000,0,0);}
.m42_c01224{transform:matrix(0.276451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276451,0.000000,0.000000,0.250000,0,0);}
.m1d_c01224{transform:matrix(0.277105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277105,0.000000,0.000000,0.250000,0,0);}
.m5b_c01224{transform:matrix(0.278962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278962,0.000000,0.000000,0.250000,0,0);}
.m12_c01224{transform:matrix(0.280428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280428,0.000000,0.000000,0.250000,0,0);}
.m54_c01224{transform:matrix(0.281580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281580,0.000000,0.000000,0.250000,0,0);}
.m49_c01224{transform:matrix(0.281827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281827,0.000000,0.000000,0.250000,0,0);}
.m26_c01224{transform:matrix(0.283646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283646,0.000000,0.000000,0.250000,0,0);}
.m3f_c01224{transform:matrix(0.283778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283778,0.000000,0.000000,0.250000,0,0);}
.m4c_c01224{transform:matrix(0.285347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285347,0.000000,0.000000,0.250000,0,0);}
.m53_c01224{transform:matrix(0.285613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285613,0.000000,0.000000,0.250000,0,0);}
.m61_c01224{transform:matrix(0.286594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286594,0.000000,0.000000,0.250000,0,0);}
.m68_c01224{transform:matrix(0.287996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287996,0.000000,0.000000,0.250000,0,0);}
.m51_c01224{transform:matrix(0.288357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288357,0.000000,0.000000,0.250000,0,0);}
.m3_c01224{transform:matrix(0.288512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288512,0.000000,0.000000,0.250000,0,0);}
.m29_c01224{transform:matrix(0.289228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289228,0.000000,0.000000,0.250000,0,0);}
.m3e_c01224{transform:matrix(0.290569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290569,0.000000,0.000000,0.250000,0,0);}
.m3c_c01224{transform:matrix(0.292552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292552,0.000000,0.000000,0.250000,0,0);}
.m55_c01224{transform:matrix(0.293094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293094,0.000000,0.000000,0.250000,0,0);}
.m4b_c01224{transform:matrix(0.293189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293189,0.000000,0.000000,0.250000,0,0);}
.m11_c01224{transform:matrix(0.293233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293233,0.000000,0.000000,0.250000,0,0);}
.m10_c01224{transform:matrix(0.293515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293515,0.000000,0.000000,0.250000,0,0);}
.m6d_c01224{transform:matrix(0.295064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295064,0.000000,0.000000,0.250000,0,0);}
.m48_c01224{transform:matrix(0.296008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296008,0.000000,0.000000,0.250000,0,0);}
.m73_c01224{transform:matrix(0.296825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296825,0.000000,0.000000,0.250000,0,0);}
.m65_c01224{transform:matrix(0.296872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296872,0.000000,0.000000,0.250000,0,0);}
.m6a_c01224{transform:matrix(0.297315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297315,0.000000,0.000000,0.250000,0,0);}
.m6c_c01224{transform:matrix(0.298606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298606,0.000000,0.000000,0.250000,0,0);}
.m72_c01224{transform:matrix(0.302496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302496,0.000000,0.000000,0.250000,0,0);}
.m71_c01224{transform:matrix(0.302630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302630,0.000000,0.000000,0.250000,0,0);}
.m5c_c01224{transform:matrix(0.302639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302639,0.000000,0.000000,0.250000,0,0);}
.m6e_c01224{transform:matrix(0.303936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303936,0.000000,0.000000,0.250000,0,0);}
.m1a_c01224{transform:matrix(0.305994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305994,0.000000,0.000000,0.250000,0,0);}
.m64_c01224{transform:matrix(0.306378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306378,0.000000,0.000000,0.250000,0,0);}
.m5a_c01224{transform:matrix(0.306543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306543,0.000000,0.000000,0.250000,0,0);}
.m37_c01224{transform:matrix(0.313654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313654,0.000000,0.000000,0.250000,0,0);}
.m5_c01224{transform:matrix(0.314717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314717,0.000000,0.000000,0.250000,0,0);}
.ma_c01224{transform:matrix(0.317677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317677,0.000000,0.000000,0.250000,0,0);}
.m69_c01224{transform:matrix(0.317715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317715,0.000000,0.000000,0.250000,0,0);}
.m18_c01224{transform:matrix(0.325317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325317,0.000000,0.000000,0.250000,0,0);}
.m4a_c01224{transform:matrix(0.329620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329620,0.000000,0.000000,0.250000,0,0);}
.m14_c01224{transform:matrix(0.332024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332024,0.000000,0.000000,0.250000,0,0);}
.m39_c01224{transform:matrix(0.335758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335758,0.000000,0.000000,0.250000,0,0);}
.mb_c01224{transform:matrix(0.394386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394386,0.000000,0.000000,0.250000,0,0);}
.v0_c01224{vertical-align:0.000000px;}
.v1_c01224{vertical-align:4.276800px;}
.ls17_c01224{letter-spacing:-4.102567px;}
.ls6_c01224{letter-spacing:-3.659040px;}
.ls3_c01224{letter-spacing:-2.862090px;}
.ls13_c01224{letter-spacing:-2.591827px;}
.ls15_c01224{letter-spacing:-2.567704px;}
.ls9_c01224{letter-spacing:-2.207898px;}
.ls11_c01224{letter-spacing:-1.471932px;}
.lsf_c01224{letter-spacing:-1.434517px;}
.lse_c01224{letter-spacing:-0.807169px;}
.lsd_c01224{letter-spacing:-0.482467px;}
.ls16_c01224{letter-spacing:-0.474289px;}
.ls14_c01224{letter-spacing:-0.148104px;}
.lsa_c01224{letter-spacing:0.000000px;}
.ls19_c01224{letter-spacing:0.711434px;}
.ls5_c01224{letter-spacing:1.643657px;}
.ls1c_c01224{letter-spacing:1.702810px;}
.ls12_c01224{letter-spacing:1.872625px;}
.ls0_c01224{letter-spacing:1.905334px;}
.lsb_c01224{letter-spacing:2.027995px;}
.ls1a_c01224{letter-spacing:2.036173px;}
.ls4_c01224{letter-spacing:2.494107px;}
.ls7_c01224{letter-spacing:3.115589px;}
.ls1_c01224{letter-spacing:3.459040px;}
.lsc_c01224{letter-spacing:3.475395px;}
.ls18_c01224{letter-spacing:3.491750px;}
.ls2_c01224{letter-spacing:4.088700px;}
.ls10_c01224{letter-spacing:5.227200px;}
.ls1d_c01224{letter-spacing:31.363200px;}
.ls8_c01224{letter-spacing:52.747398px;}
.ls1b_c01224{letter-spacing:54.172998px;}
.sc__c01224{text-shadow:none;}
.sc0_c01224{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01224{-webkit-text-stroke:0px transparent;}
.sc0_c01224{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01224{word-spacing:-13.315500px;}
.ws0_c01224{word-spacing:-0.327096px;}
.ws2_c01224{word-spacing:0.000000px;}
._4_c01224{margin-left:-14.146506px;}
._1_c01224{margin-left:-11.939400px;}
._2_c01224{width:19.318523px;}
._3_c01224{width:23.816272px;}
._0_c01224{width:49.326077px;}
.fc0_c01224{color:transparent;}
.fs9_c01224{font-size:22.176000px;}
.fs10_c01224{font-size:24.948000px;}
.fs7_c01224{font-size:27.720000px;}
.fs11_c01224{font-size:31.363200px;}
.fs3_c01224{font-size:33.660000px;}
.fsf_c01224{font-size:34.056198px;}
.fs6_c01224{font-size:40.986198px;}
.fs2_c01224{font-size:52.747398px;}
.fsc_c01224{font-size:53.262000px;}
.fsd_c01224{font-size:54.172998px;}
.fs8_c01224{font-size:60.192000px;}
.fse_c01224{font-size:66.528000px;}
.fs4_c01224{font-size:74.052198px;}
.fs5_c01224{font-size:74.844000px;}
.fsa_c01224{font-size:77.220000px;}
.fs0_c01224{font-size:81.774000px;}
.fs1_c01224{font-size:104.544000px;}
.fsb_c01224{font-size:117.216198px;}
.y0_c01224{bottom:0.000000px;}
.y21_c01224{bottom:39.467385px;}
.y26_c01224{bottom:74.755935px;}
.y20_c01224{bottom:75.825135px;}
.y1_c01224{bottom:76.500000px;}
.y27_c01224{bottom:83.309535px;}
.y25_c01224{bottom:89.011935px;}
.y24_c01224{bottom:99.342585px;}
.y23_c01224{bottom:102.911535px;}
.y22_c01224{bottom:112.177935px;}
.y1f_c01224{bottom:140.333535px;}
.y1e_c01224{bottom:173.473785px;}
.y1d_c01224{bottom:196.288335px;}
.y1c_c01224{bottom:208.049535px;}
.y1b_c01224{bottom:236.556585px;}
.y1a_c01224{bottom:267.919785px;}
.y19_c01224{bottom:298.575135px;}
.y18_c01224{bottom:331.363935px;}
.y17_c01224{bottom:358.445385px;}
.y16_c01224{bottom:363.083535px;}
.y15_c01224{bottom:395.159535px;}
.y14_c01224{bottom:458.593785px;}
.y13_c01224{bottom:491.031135px;}
.y12_c01224{bottom:521.325135px;}
.y11_c01224{bottom:545.548950px;}
.yf_c01224{bottom:553.757535px;}
.yd_c01224{bottom:554.465385px;}
.y10_c01224{bottom:557.316585px;}
.yc_c01224{bottom:586.189935px;}
.ye_c01224{bottom:642.496185px;}
.yb_c01224{bottom:649.624185px;}
.ya_c01224{bottom:681.348735px;}
.y9_c01224{bottom:714.137535px;}
.y8_c01224{bottom:744.782985px;}
.y7_c01224{bottom:776.146185px;}
.y6_c01224{bottom:808.578585px;}
.y5_c01224{bottom:840.303135px;}
.y4_c01224{bottom:903.380985px;}
.y3_c01224{bottom:935.461935px;}
.y2_c01224{bottom:1062.335385px;}
.h12_c01224{height:20.887891px;}
.ha_c01224{height:23.128875px;}
.h11_c01224{height:26.019984px;}
.h8_c01224{height:28.911094px;}
.h5_c01224{height:33.035449px;}
.h10_c01224{height:33.424296px;}
.h4_c01224{height:35.129767px;}
.he_c01224{height:36.079217px;}
.h7_c01224{height:40.225712px;}
.hd_c01224{height:52.273740px;}
.h9_c01224{height:62.778375px;}
.hf_c01224{height:69.386625px;}
.hb_c01224{height:72.678183px;}
.h6_c01224{height:73.455293px;}
.h2_c01224{height:80.256709px;}
.h3_c01224{height:102.604219px;}
.hc_c01224{height:115.041288px;}
.h1_c01224{height:1110.000000px;}
.h0_c01224{height:1263.000000px;}
.w1_c01224{width:775.500000px;}
.w0_c01224{width:892.500000px;}
.x0_c01224{left:0.000000px;}
.x1_c01224{left:58.500000px;}
.x28_c01224{left:90.393585px;}
.x11_c01224{left:91.472685px;}
.x3_c01224{left:92.546835px;}
.x29_c01224{left:146.977035px;}
.x12_c01224{left:156.089985px;}
.x37_c01224{left:178.805535px;}
.x4_c01224{left:191.329035px;}
.x56_c01224{left:200.946885px;}
.xb_c01224{left:201.956685px;}
.x30_c01224{left:203.268435px;}
.x57_c01224{left:223.325835px;}
.x59_c01224{left:233.958435px;}
.x13_c01224{left:235.804785px;}
.x51_c01224{left:257.188785px;}
.x31_c01224{left:260.633985px;}
.xc_c01224{left:268.657935px;}
.x44_c01224{left:269.741985px;}
.x32_c01224{left:271.756635px;}
.x19_c01224{left:279.399435px;}
.x33_c01224{left:290.883435px;}
.x5_c01224{left:292.328835px;}
.x20_c01224{left:300.684435px;}
.x49_c01224{left:301.723935px;}
.x2a_c01224{left:312.074385px;}
.x4f_c01224{left:313.341585px;}
.x3e_c01224{left:315.465135px;}
.x1a_c01224{left:323.498985px;}
.x3f_c01224{left:326.330385px;}
.x3a_c01224{left:334.577085px;}
.xd_c01224{left:336.700635px;}
.x5a_c01224{left:347.239185px;}
.x38_c01224{left:349.194435px;}
.x34_c01224{left:357.030285px;}
.x2b_c01224{left:359.881485px;}
.x14_c01224{left:368.246985px;}
.x21_c01224{left:369.816135px;}
.x5b_c01224{left:379.790385px;}
.xe_c01224{left:381.671385px;}
.x4a_c01224{left:390.843735px;}
.x1b_c01224{left:392.091135px;}
.x35_c01224{left:393.204885px;}
.x6_c01224{left:403.228635px;}
.x39_c01224{left:411.876285px;}
.x52_c01224{left:413.920635px;}
.x50_c01224{left:415.316535px;}
.x1c_c01224{left:423.662235px;}
.x7_c01224{left:436.022385px;}
.x53_c01224{left:446.051085px;}
.x15_c01224{left:447.778635px;}
.xf_c01224{left:457.866735px;}
.x5c_c01224{left:478.988385px;}
.x16_c01224{left:480.537735px;}
.x4b_c01224{left:481.809885px;}
.x10_c01224{left:489.279435px;}
.x40_c01224{left:490.828785px;}
.x22_c01224{left:500.293185px;}
.x8_c01224{left:502.941435px;}
.x1d_c01224{left:513.079035px;}
.x4c_c01224{left:522.726585px;}
.x3d_c01224{left:523.795785px;}
.x36_c01224{left:525.429285px;}
.x5d_c01224{left:528.171585px;}
.x2c_c01224{left:536.136135px;}
.x41_c01224{left:555.926235px;}
.x54_c01224{left:567.959685px;}
.x3c_c01224{left:569.410035px;}
.x2d_c01224{left:580.102035px;}
.x1e_c01224{left:581.389035px;}
.x5e_c01224{left:590.036685px;}
.x45_c01224{left:591.378135px;}
.x23_c01224{left:592.774035px;}
.x58_c01224{left:601.456335px;}
.x42_c01224{left:604.168935px;}
.x4d_c01224{left:613.306635px;}
.x1f_c01224{left:624.909435px;}
.x9_c01224{left:626.745885px;}
.x46_c01224{left:635.507385px;}
.x55_c01224{left:644.610435px;}
.xa_c01224{left:655.658835px;}
.x17_c01224{left:657.361635px;}
.x2e_c01224{left:667.113135px;}
.x2_c01224{left:669.043635px;}
.x24_c01224{left:680.260335px;}
.x43_c01224{left:691.783935px;}
.x27_c01224{left:699.109935px;}
.x18_c01224{left:702.015585px;}
.x25_c01224{left:703.901535px;}
.x47_c01224{left:706.307235px;}
.x3b_c01224{left:707.688285px;}
.x5f_c01224{left:710.029635px;}
.x60_c01224{left:711.158235px;}
.x4e_c01224{left:712.643235px;}
.x26_c01224{left:713.900535px;}
.x2f_c01224{left:723.092685px;}
.x61_c01224{left:730.611735px;}
.x48_c01224{left:757.802085px;}
@media print{
.v0_c01224{vertical-align:0.000000pt;}
.v1_c01224{vertical-align:3.801600pt;}
.ls17_c01224{letter-spacing:-3.646726pt;}
.ls6_c01224{letter-spacing:-3.252480pt;}
.ls3_c01224{letter-spacing:-2.544080pt;}
.ls13_c01224{letter-spacing:-2.303846pt;}
.ls15_c01224{letter-spacing:-2.282403pt;}
.ls9_c01224{letter-spacing:-1.962576pt;}
.ls11_c01224{letter-spacing:-1.308384pt;}
.lsf_c01224{letter-spacing:-1.275126pt;}
.lse_c01224{letter-spacing:-0.717484pt;}
.lsd_c01224{letter-spacing:-0.428859pt;}
.ls16_c01224{letter-spacing:-0.421590pt;}
.ls14_c01224{letter-spacing:-0.131648pt;}
.lsa_c01224{letter-spacing:0.000000pt;}
.ls19_c01224{letter-spacing:0.632386pt;}
.ls5_c01224{letter-spacing:1.461029pt;}
.ls1c_c01224{letter-spacing:1.513609pt;}
.ls12_c01224{letter-spacing:1.664555pt;}
.ls0_c01224{letter-spacing:1.693630pt;}
.lsb_c01224{letter-spacing:1.802662pt;}
.ls1a_c01224{letter-spacing:1.809931pt;}
.ls4_c01224{letter-spacing:2.216984pt;}
.ls7_c01224{letter-spacing:2.769413pt;}
.ls1_c01224{letter-spacing:3.074702pt;}
.lsc_c01224{letter-spacing:3.089240pt;}
.ls18_c01224{letter-spacing:3.103778pt;}
.ls2_c01224{letter-spacing:3.634400pt;}
.ls10_c01224{letter-spacing:4.646400pt;}
.ls1d_c01224{letter-spacing:27.878400pt;}
.ls8_c01224{letter-spacing:46.886576pt;}
.ls1b_c01224{letter-spacing:48.153776pt;}
.ws1_c01224{word-spacing:-11.836000pt;}
.ws0_c01224{word-spacing:-0.290752pt;}
.ws2_c01224{word-spacing:0.000000pt;}
._4_c01224{margin-left:-12.574672pt;}
._1_c01224{margin-left:-10.612800pt;}
._2_c01224{width:17.172021pt;}
._3_c01224{width:21.170019pt;}
._0_c01224{width:43.845402pt;}
.fs9_c01224{font-size:19.712000pt;}
.fs10_c01224{font-size:22.176000pt;}
.fs7_c01224{font-size:24.640000pt;}
.fs11_c01224{font-size:27.878400pt;}
.fs3_c01224{font-size:29.920000pt;}
.fsf_c01224{font-size:30.272176pt;}
.fs6_c01224{font-size:36.432176pt;}
.fs2_c01224{font-size:46.886576pt;}
.fsc_c01224{font-size:47.344000pt;}
.fsd_c01224{font-size:48.153776pt;}
.fs8_c01224{font-size:53.504000pt;}
.fse_c01224{font-size:59.136000pt;}
.fs4_c01224{font-size:65.824176pt;}
.fs5_c01224{font-size:66.528000pt;}
.fsa_c01224{font-size:68.640000pt;}
.fs0_c01224{font-size:72.688000pt;}
.fs1_c01224{font-size:92.928000pt;}
.fsb_c01224{font-size:104.192176pt;}
.y0_c01224{bottom:0.000000pt;}
.y21_c01224{bottom:35.082120pt;}
.y26_c01224{bottom:66.449720pt;}
.y20_c01224{bottom:67.400120pt;}
.y1_c01224{bottom:68.000000pt;}
.y27_c01224{bottom:74.052920pt;}
.y25_c01224{bottom:79.121720pt;}
.y24_c01224{bottom:88.304520pt;}
.y23_c01224{bottom:91.476920pt;}
.y22_c01224{bottom:99.713720pt;}
.y1f_c01224{bottom:124.740920pt;}
.y1e_c01224{bottom:154.198920pt;}
.y1d_c01224{bottom:174.478520pt;}
.y1c_c01224{bottom:184.932920pt;}
.y1b_c01224{bottom:210.272520pt;}
.y1a_c01224{bottom:238.150920pt;}
.y19_c01224{bottom:265.400120pt;}
.y18_c01224{bottom:294.545720pt;}
.y17_c01224{bottom:318.618120pt;}
.y16_c01224{bottom:322.740920pt;}
.y15_c01224{bottom:351.252920pt;}
.y14_c01224{bottom:407.638920pt;}
.y13_c01224{bottom:436.472120pt;}
.y12_c01224{bottom:463.400120pt;}
.y11_c01224{bottom:484.932400pt;}
.yf_c01224{bottom:492.228920pt;}
.yd_c01224{bottom:492.858120pt;}
.y10_c01224{bottom:495.392520pt;}
.yc_c01224{bottom:521.057720pt;}
.ye_c01224{bottom:571.107720pt;}
.yb_c01224{bottom:577.443720pt;}
.ya_c01224{bottom:605.643320pt;}
.y9_c01224{bottom:634.788920pt;}
.y8_c01224{bottom:662.029320pt;}
.y7_c01224{bottom:689.907720pt;}
.y6_c01224{bottom:718.736520pt;}
.y5_c01224{bottom:746.936120pt;}
.y4_c01224{bottom:803.005320pt;}
.y3_c01224{bottom:831.521720pt;}
.y2_c01224{bottom:944.298120pt;}
.h12_c01224{height:18.567014pt;}
.ha_c01224{height:20.559000pt;}
.h11_c01224{height:23.128875pt;}
.h8_c01224{height:25.698750pt;}
.h5_c01224{height:29.364844pt;}
.h10_c01224{height:29.710485pt;}
.h4_c01224{height:31.226460pt;}
.he_c01224{height:32.070415pt;}
.h7_c01224{height:35.756188pt;}
.hd_c01224{height:46.465547pt;}
.h9_c01224{height:55.803000pt;}
.hf_c01224{height:61.677000pt;}
.hb_c01224{height:64.602829pt;}
.h6_c01224{height:65.293594pt;}
.h2_c01224{height:71.339297pt;}
.h3_c01224{height:91.203750pt;}
.hc_c01224{height:102.258923pt;}
.h1_c01224{height:986.666667pt;}
.h0_c01224{height:1122.666667pt;}
.w1_c01224{width:689.333333pt;}
.w0_c01224{width:793.333333pt;}
.x0_c01224{left:0.000000pt;}
.x1_c01224{left:52.000000pt;}
.x28_c01224{left:80.349853pt;}
.x11_c01224{left:81.309053pt;}
.x3_c01224{left:82.263853pt;}
.x29_c01224{left:130.646253pt;}
.x12_c01224{left:138.746653pt;}
.x37_c01224{left:158.938253pt;}
.x4_c01224{left:170.070253pt;}
.x56_c01224{left:178.619453pt;}
.xb_c01224{left:179.517053pt;}
.x30_c01224{left:180.683053pt;}
.x57_c01224{left:198.511853pt;}
.x59_c01224{left:207.963053pt;}
.x13_c01224{left:209.604253pt;}
.x51_c01224{left:228.612253pt;}
.x31_c01224{left:231.674653pt;}
.xc_c01224{left:238.807053pt;}
.x44_c01224{left:239.770653pt;}
.x32_c01224{left:241.561453pt;}
.x19_c01224{left:248.355053pt;}
.x33_c01224{left:258.563053pt;}
.x5_c01224{left:259.847853pt;}
.x20_c01224{left:267.275053pt;}
.x49_c01224{left:268.199053pt;}
.x2a_c01224{left:277.399453pt;}
.x4f_c01224{left:278.525853pt;}
.x3e_c01224{left:280.413453pt;}
.x1a_c01224{left:287.554653pt;}
.x3f_c01224{left:290.071453pt;}
.x3a_c01224{left:297.401853pt;}
.xd_c01224{left:299.289453pt;}
.x5a_c01224{left:308.657053pt;}
.x38_c01224{left:310.395053pt;}
.x34_c01224{left:317.360253pt;}
.x2b_c01224{left:319.894653pt;}
.x14_c01224{left:327.330653pt;}
.x21_c01224{left:328.725453pt;}
.x5b_c01224{left:337.591453pt;}
.xe_c01224{left:339.263453pt;}
.x4a_c01224{left:347.416653pt;}
.x1b_c01224{left:348.525453pt;}
.x35_c01224{left:349.515453pt;}
.x6_c01224{left:358.425453pt;}
.x39_c01224{left:366.112253pt;}
.x52_c01224{left:367.929453pt;}
.x50_c01224{left:369.170253pt;}
.x1c_c01224{left:376.588653pt;}
.x7_c01224{left:387.575453pt;}
.x53_c01224{left:396.489853pt;}
.x15_c01224{left:398.025453pt;}
.xf_c01224{left:406.992653pt;}
.x5c_c01224{left:425.767453pt;}
.x16_c01224{left:427.144653pt;}
.x4b_c01224{left:428.275453pt;}
.x10_c01224{left:434.915053pt;}
.x40_c01224{left:436.292253pt;}
.x22_c01224{left:444.705053pt;}
.x8_c01224{left:447.059053pt;}
.x1d_c01224{left:456.070253pt;}
.x4c_c01224{left:464.645853pt;}
.x3d_c01224{left:465.596253pt;}
.x36_c01224{left:467.048253pt;}
.x5d_c01224{left:469.485853pt;}
.x2c_c01224{left:476.565453pt;}
.x41_c01224{left:494.156653pt;}
.x54_c01224{left:504.853053pt;}
.x3c_c01224{left:506.142253pt;}
.x2d_c01224{left:515.646253pt;}
.x1e_c01224{left:516.790253pt;}
.x5e_c01224{left:524.477053pt;}
.x45_c01224{left:525.669453pt;}
.x23_c01224{left:526.910253pt;}
.x58_c01224{left:534.627853pt;}
.x42_c01224{left:537.039053pt;}
.x4d_c01224{left:545.161453pt;}
.x1f_c01224{left:555.475053pt;}
.x9_c01224{left:557.107453pt;}
.x46_c01224{left:564.895453pt;}
.x55_c01224{left:572.987053pt;}
.xa_c01224{left:582.807853pt;}
.x17_c01224{left:584.321453pt;}
.x2e_c01224{left:592.989453pt;}
.x2_c01224{left:594.705453pt;}
.x24_c01224{left:604.675853pt;}
.x43_c01224{left:614.919053pt;}
.x27_c01224{left:621.431053pt;}
.x18_c01224{left:624.013853pt;}
.x25_c01224{left:625.690253pt;}
.x47_c01224{left:627.828653pt;}
.x3b_c01224{left:629.056253pt;}
.x5f_c01224{left:631.137453pt;}
.x60_c01224{left:632.140653pt;}
.x4e_c01224{left:633.460653pt;}
.x26_c01224{left:634.578253pt;}
.x2f_c01224{left:642.749053pt;}
.x61_c01224{left:649.432653pt;}
.x48_c01224{left:673.601853pt;}
}





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

.ir_c01225:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01225{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01225;src:url('chunks/assets/font_91441f9d607067d82d915976.woff2')format("woff");}.ff1_c01225{font-family:ff1_c01225;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01225;src:url('chunks/assets/font_431e0519b6ee38e6c14e906a.woff2')format("woff");}.ff2_c01225{font-family:ff2_c01225;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01225;src:url('chunks/assets/font_0d8ae69e2255c47da0e15854.woff2')format("woff");}.ff3_c01225{font-family:ff3_c01225;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01225;src:url('chunks/assets/font_a0a95d54547991efa0476ad6.woff2')format("woff");}.ff4_c01225{font-family:ff4_c01225;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2c_c01225{transform:matrix(0.022728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.022728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.022728,0.000000,0.000000,0.250000,0,0);}
.m66_c01225{transform:matrix(0.038574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.038574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.038574,0.000000,0.000000,0.250000,0,0);}
.m64_c01225{transform:matrix(0.039245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.039245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.039245,0.000000,0.000000,0.250000,0,0);}
.m65_c01225{transform:matrix(0.054817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054817,0.000000,0.000000,0.250000,0,0);}
.m2d_c01225{transform:matrix(0.079545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.079545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.079545,0.000000,0.000000,0.250000,0,0);}
.m6d_c01225{transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);}
.m67_c01225{transform:matrix(0.127193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127193,0.000000,0.000000,0.250000,0,0);}
.m62_c01225{transform:matrix(0.143082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143082,0.000000,0.000000,0.250000,0,0);}
.m68_c01225{transform:matrix(0.147728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147728,0.000000,0.000000,0.250000,0,0);}
.m3a_c01225{transform:matrix(0.170455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170455,0.000000,0.000000,0.250000,0,0);}
.m2b_c01225{transform:matrix(0.171591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171591,0.000000,0.000000,0.250000,0,0);}
.m46_c01225{transform:matrix(0.196859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196859,0.000000,0.000000,0.250000,0,0);}
.m61_c01225{transform:matrix(0.197016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197016,0.000000,0.000000,0.250000,0,0);}
.m3c_c01225{transform:matrix(0.221746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221746,0.000000,0.000000,0.250000,0,0);}
.m1_c01225{transform:matrix(0.238394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238394,0.000000,0.000000,0.250000,0,0);}
.m18_c01225{transform:matrix(0.240628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240628,0.000000,0.000000,0.250000,0,0);}
.m54_c01225{transform:matrix(0.243495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243495,0.000000,0.000000,0.250000,0,0);}
.m49_c01225{transform:matrix(0.246513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246513,0.000000,0.000000,0.250000,0,0);}
.m11_c01225{transform:matrix(0.247308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247308,0.000000,0.000000,0.250000,0,0);}
.m55_c01225{transform:matrix(0.248131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248131,0.000000,0.000000,0.250000,0,0);}
.m19_c01225{transform:matrix(0.249728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249728,0.000000,0.000000,0.250000,0,0);}
.m2_c01225{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m28_c01225{transform:matrix(0.258526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258526,0.000000,0.000000,0.250000,0,0);}
.m31_c01225{transform:matrix(0.259829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259829,0.000000,0.000000,0.250000,0,0);}
.m12_c01225{transform:matrix(0.264143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264143,0.000000,0.000000,0.250000,0,0);}
.m48_c01225{transform:matrix(0.266073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266073,0.000000,0.000000,0.250000,0,0);}
.m14_c01225{transform:matrix(0.266725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266725,0.000000,0.000000,0.250000,0,0);}
.m1d_c01225{transform:matrix(0.269191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269191,0.000000,0.000000,0.250000,0,0);}
.m5f_c01225{transform:matrix(0.270323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270323,0.000000,0.000000,0.250000,0,0);}
.m6c_c01225{transform:matrix(0.271074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271074,0.000000,0.000000,0.250000,0,0);}
.mb_c01225{transform:matrix(0.272107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272107,0.000000,0.000000,0.250000,0,0);}
.m10_c01225{transform:matrix(0.272956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272956,0.000000,0.000000,0.250000,0,0);}
.m34_c01225{transform:matrix(0.273921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273921,0.000000,0.000000,0.250000,0,0);}
.m0_c01225{transform:matrix(0.274279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274279,0.000000,0.000000,0.250000,0,0);}
.m3e_c01225{transform:matrix(0.274799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274799,0.000000,0.000000,0.250000,0,0);}
.m53_c01225{transform:matrix(0.275176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275176,0.000000,0.000000,0.250000,0,0);}
.m57_c01225{transform:matrix(0.275940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275940,0.000000,0.000000,0.250000,0,0);}
.m45_c01225{transform:matrix(0.277222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277222,0.000000,0.000000,0.250000,0,0);}
.m1b_c01225{transform:matrix(0.278103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278103,0.000000,0.000000,0.250000,0,0);}
.m5_c01225{transform:matrix(0.278367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278367,0.000000,0.000000,0.250000,0,0);}
.m29_c01225{transform:matrix(0.281505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281505,0.000000,0.000000,0.250000,0,0);}
.m13_c01225{transform:matrix(0.282343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282343,0.000000,0.000000,0.250000,0,0);}
.m4a_c01225{transform:matrix(0.283317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283317,0.000000,0.000000,0.250000,0,0);}
.m30_c01225{transform:matrix(0.283338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283338,0.000000,0.000000,0.250000,0,0);}
.m51_c01225{transform:matrix(0.283380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283380,0.000000,0.000000,0.250000,0,0);}
.m58_c01225{transform:matrix(0.285037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285037,0.000000,0.000000,0.250000,0,0);}
.m1e_c01225{transform:matrix(0.287582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287582,0.000000,0.000000,0.250000,0,0);}
.m3d_c01225{transform:matrix(0.288514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288514,0.000000,0.000000,0.250000,0,0);}
.m47_c01225{transform:matrix(0.290450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290450,0.000000,0.000000,0.250000,0,0);}
.m2f_c01225{transform:matrix(0.291089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291089,0.000000,0.000000,0.250000,0,0);}
.m5b_c01225{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);}
.m1c_c01225{transform:matrix(0.294196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294196,0.000000,0.000000,0.250000,0,0);}
.m20_c01225{transform:matrix(0.294571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294571,0.000000,0.000000,0.250000,0,0);}
.m33_c01225{transform:matrix(0.295042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295042,0.000000,0.000000,0.250000,0,0);}
.m2a_c01225{transform:matrix(0.295449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295449,0.000000,0.000000,0.250000,0,0);}
.m36_c01225{transform:matrix(0.295967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295967,0.000000,0.000000,0.250000,0,0);}
.m60_c01225{transform:matrix(0.296448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296448,0.000000,0.000000,0.250000,0,0);}
.m3b_c01225{transform:matrix(0.297853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297853,0.000000,0.000000,0.250000,0,0);}
.m9_c01225{transform:matrix(0.297874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297874,0.000000,0.000000,0.250000,0,0);}
.m50_c01225{transform:matrix(0.298726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298726,0.000000,0.000000,0.250000,0,0);}
.mf_c01225{transform:matrix(0.299257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299257,0.000000,0.000000,0.250000,0,0);}
.m27_c01225{transform:matrix(0.299627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299627,0.000000,0.000000,0.250000,0,0);}
.m4_c01225{transform:matrix(0.300952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300952,0.000000,0.000000,0.250000,0,0);}
.m44_c01225{transform:matrix(0.302959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302959,0.000000,0.000000,0.250000,0,0);}
.m23_c01225{transform:matrix(0.305782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305782,0.000000,0.000000,0.250000,0,0);}
.m24_c01225{transform:matrix(0.306836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306836,0.000000,0.000000,0.250000,0,0);}
.m52_c01225{transform:matrix(0.307793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307793,0.000000,0.000000,0.250000,0,0);}
.m32_c01225{transform:matrix(0.307990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307990,0.000000,0.000000,0.250000,0,0);}
.m43_c01225{transform:matrix(0.309462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309462,0.000000,0.000000,0.250000,0,0);}
.me_c01225{transform:matrix(0.309686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309686,0.000000,0.000000,0.250000,0,0);}
.m42_c01225{transform:matrix(0.310510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310510,0.000000,0.000000,0.250000,0,0);}
.m5c_c01225{transform:matrix(0.311293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311293,0.000000,0.000000,0.250000,0,0);}
.m6a_c01225{transform:matrix(0.311991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311991,0.000000,0.000000,0.250000,0,0);}
.m5a_c01225{transform:matrix(0.313575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313575,0.000000,0.000000,0.250000,0,0);}
.m37_c01225{transform:matrix(0.315774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315774,0.000000,0.000000,0.250000,0,0);}
.m4e_c01225{transform:matrix(0.315837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315837,0.000000,0.000000,0.250000,0,0);}
.m5e_c01225{transform:matrix(0.315963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315963,0.000000,0.000000,0.250000,0,0);}
.mc_c01225{transform:matrix(0.316026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316026,0.000000,0.000000,0.250000,0,0);}
.m3f_c01225{transform:matrix(0.316035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316035,0.000000,0.000000,0.250000,0,0);}
.m6b_c01225{transform:matrix(0.316454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316454,0.000000,0.000000,0.250000,0,0);}
.m15_c01225{transform:matrix(0.316649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316649,0.000000,0.000000,0.250000,0,0);}
.m1a_c01225{transform:matrix(0.318319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318319,0.000000,0.000000,0.250000,0,0);}
.m56_c01225{transform:matrix(0.319316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319316,0.000000,0.000000,0.250000,0,0);}
.m8_c01225{transform:matrix(0.321425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321425,0.000000,0.000000,0.250000,0,0);}
.m63_c01225{transform:matrix(0.321586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321586,0.000000,0.000000,0.250000,0,0);}
.m22_c01225{transform:matrix(0.321904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321904,0.000000,0.000000,0.250000,0,0);}
.m4d_c01225{transform:matrix(0.321961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321961,0.000000,0.000000,0.250000,0,0);}
.m59_c01225{transform:matrix(0.324595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324595,0.000000,0.000000,0.250000,0,0);}
.m1f_c01225{transform:matrix(0.326399,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326399,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326399,0.000000,0.000000,0.250000,0,0);}
.m35_c01225{transform:matrix(0.327139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327139,0.000000,0.000000,0.250000,0,0);}
.md_c01225{transform:matrix(0.329522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329522,0.000000,0.000000,0.250000,0,0);}
.m3_c01225{transform:matrix(0.331442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331442,0.000000,0.000000,0.250000,0,0);}
.m39_c01225{transform:matrix(0.332752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332752,0.000000,0.000000,0.250000,0,0);}
.m4f_c01225{transform:matrix(0.335965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335965,0.000000,0.000000,0.250000,0,0);}
.m16_c01225{transform:matrix(0.340474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340474,0.000000,0.000000,0.250000,0,0);}
.m5d_c01225{transform:matrix(0.345563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345563,0.000000,0.000000,0.250000,0,0);}
.m4b_c01225{transform:matrix(0.345607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345607,0.000000,0.000000,0.250000,0,0);}
.m17_c01225{transform:matrix(0.349950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349950,0.000000,0.000000,0.250000,0,0);}
.m69_c01225{transform:matrix(0.351041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351041,0.000000,0.000000,0.250000,0,0);}
.m26_c01225{transform:matrix(0.353914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353914,0.000000,0.000000,0.250000,0,0);}
.m41_c01225{transform:matrix(0.354340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354340,0.000000,0.000000,0.250000,0,0);}
.m7_c01225{transform:matrix(0.355489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355489,0.000000,0.000000,0.250000,0,0);}
.m40_c01225{transform:matrix(0.357318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357318,0.000000,0.000000,0.250000,0,0);}
.m21_c01225{transform:matrix(0.366821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366821,0.000000,0.000000,0.250000,0,0);}
.m4c_c01225{transform:matrix(0.369203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369203,0.000000,0.000000,0.250000,0,0);}
.m38_c01225{transform:matrix(0.372308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372308,0.000000,0.000000,0.250000,0,0);}
.m25_c01225{transform:matrix(0.374088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374088,0.000000,0.000000,0.250000,0,0);}
.ma_c01225{transform:matrix(0.382933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382933,0.000000,0.000000,0.250000,0,0);}
.m2e_c01225{transform:matrix(0.388256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388256,0.000000,0.000000,0.250000,0,0);}
.m6_c01225{transform:matrix(0.408283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408283,0.000000,0.000000,0.250000,0,0);}
.v0_c01225{vertical-align:0.000000px;}
.ls7_c01225{letter-spacing:-2.785867px;}
.ls1_c01225{letter-spacing:-2.550240px;}
.ls12_c01225{letter-spacing:-2.501730px;}
.lse_c01225{letter-spacing:-2.295216px;}
.lsd_c01225{letter-spacing:-2.076624px;}
.ls16_c01225{letter-spacing:-1.884967px;}
.lsf_c01225{letter-spacing:-1.603008px;}
.ls2_c01225{letter-spacing:0.000000px;}
.lsb_c01225{letter-spacing:0.007286px;}
.ls8_c01225{letter-spacing:0.123869px;}
.ls3_c01225{letter-spacing:2.513808px;}
.ls10_c01225{letter-spacing:2.589484px;}
.ls6_c01225{letter-spacing:2.958278px;}
.ls13_c01225{letter-spacing:3.395205px;}
.ls9_c01225{letter-spacing:3.474900px;}
.ls14_c01225{letter-spacing:3.573900px;}
.ls5_c01225{letter-spacing:3.592195px;}
.ls4_c01225{letter-spacing:3.643200px;}
.lsc_c01225{letter-spacing:3.870900px;}
.ls11_c01225{letter-spacing:3.880810px;}
.ls0_c01225{letter-spacing:3.979810px;}
.ls17_c01225{letter-spacing:31.363200px;}
.ls15_c01225{letter-spacing:61.300998px;}
.lsa_c01225{letter-spacing:62.726400px;}
.sc__c01225{text-shadow:none;}
.sc0_c01225{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01225{-webkit-text-stroke:0px transparent;}
.sc0_c01225{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01225{word-spacing:-18.216000px;}
.ws0_c01225{word-spacing:-15.920784px;}
.ws2_c01225{word-spacing:0.000000px;}
._5_c01225{margin-left:-23.158872px;}
._3_c01225{margin-left:-19.210158px;}
._9_c01225{margin-left:-11.765358px;}
._4_c01225{margin-left:-8.048700px;}
._7_c01225{margin-left:-2.687058px;}
._2_c01225{margin-left:-1.530144px;}
._1_c01225{width:5.719824px;}
._8_c01225{width:9.988902px;}
._0_c01225{width:15.665760px;}
._6_c01225{width:24.659910px;}
.fc0_c01225{color:transparent;}
.fsc_c01225{font-size:31.363200px;}
.fs8_c01225{font-size:33.660000px;}
.fs7_c01225{font-size:44.352000px;}
.fsb_c01225{font-size:53.856198px;}
.fsa_c01225{font-size:61.300998px;}
.fs3_c01225{font-size:62.726400px;}
.fs2_c01225{font-size:69.498000px;}
.fs9_c01225{font-size:71.478000px;}
.fs1_c01225{font-size:72.864000px;}
.fs4_c01225{font-size:77.418000px;}
.fs6_c01225{font-size:77.616198px;}
.fs0_c01225{font-size:79.596198px;}
.fs5_c01225{font-size:84.348000px;}
.y0_c01225{bottom:0.000000px;}
.y19_c01225{bottom:62.633385px;}
.y1_c01225{bottom:76.500000px;}
.y18_c01225{bottom:78.319935px;}
.y17_c01225{bottom:108.965385px;}
.y16_c01225{bottom:146.392335px;}
.y15_c01225{bottom:174.186585px;}
.y14_c01225{bottom:206.267535px;}
.y13_c01225{bottom:235.843785px;}
.y12_c01225{bottom:269.706735px;}
.y11_c01225{bottom:302.139135px;}
.y10_c01225{bottom:365.578335px;}
.yf_c01225{bottom:398.010735px;}
.ye_c01225{bottom:429.725385px;}
.yd_c01225{bottom:492.095385px;}
.yc_c01225{bottom:523.463535px;}
.yb_c01225{bottom:586.189935px;}
.ya_c01225{bottom:618.973785px;}
.y9_c01225{bottom:682.769385px;}
.y8_c01225{bottom:714.850335px;}
.y7_c01225{bottom:778.284585px;}
.y6_c01225{bottom:810.360585px;}
.y5_c01225{bottom:872.379135px;}
.y4_c01225{bottom:905.519385px;}
.y3_c01225{bottom:936.882585px;}
.y2_c01225{bottom:1063.404585px;}
.he_c01225{height:20.887891px;}
.ha_c01225{height:33.035449px;}
.hc_c01225{height:40.826465px;}
.h5_c01225{height:41.775782px;}
.h9_c01225{height:46.257750px;}
.hd_c01225{height:52.856913px;}
.h4_c01225{height:68.208486px;}
.hb_c01225{height:70.151748px;}
.h3_c01225{height:71.512031px;}
.h8_c01225{height:76.176054px;}
.h2_c01225{height:78.119315px;}
.h6_c01225{height:80.744555px;}
.h7_c01225{height:82.741764px;}
.h1_c01225{height:1110.000000px;}
.h0_c01225{height:1263.000000px;}
.w1_c01225{width:775.500000px;}
.w0_c01225{width:892.500000px;}
.x0_c01225{left:0.000000px;}
.x1_c01225{left:58.500000px;}
.x50_c01225{left:82.295385px;}
.x13_c01225{left:87.928485px;}
.x3_c01225{left:89.339235px;}
.x51_c01225{left:123.142785px;}
.x4_c01225{left:166.732485px;}
.x46_c01225{left:168.019485px;}
.x2b_c01225{left:178.013535px;}
.x3f_c01225{left:189.839085px;}
.x11_c01225{left:198.397635px;}
.x14_c01225{left:199.833135px;}
.xb_c01225{left:201.115185px;}
.x47_c01225{left:211.955685px;}
.x2c_c01225{left:221.207235px;}
.x15_c01225{left:223.236735px;}
.x40_c01225{left:233.631735px;}
.x30_c01225{left:234.948435px;}
.x31_c01225{left:243.635685px;}
.x23_c01225{left:256.035435px;}
.x16_c01225{left:269.405385px;}
.x44_c01225{left:276.394785px;}
.x32_c01225{left:277.924335px;}
.x12_c01225{left:288.621285px;}
.x1d_c01225{left:290.893335px;}
.x4e_c01225{left:299.258835px;}
.xc_c01225{left:300.540885px;}
.x5_c01225{left:311.722935px;}
.x41_c01225{left:312.975285px;}
.x17_c01225{left:322.390185px;}
.x2d_c01225{left:333.191085px;}
.x52_c01225{left:343.912785px;}
.x48_c01225{left:346.189785px;}
.x6_c01225{left:355.980885px;}
.x37_c01225{left:358.876635px;}
.x53_c01225{left:364.227585px;}
.x24_c01225{left:366.974835px;}
.x33_c01225{left:378.998385px;}
.x4f_c01225{left:389.135985px;}
.x1f_c01225{left:400.030935px;}
.x34_c01225{left:412.396035px;}
.xd_c01225{left:423.246435px;}
.x1e_c01225{left:433.141485px;}
.x18_c01225{left:445.402635px;}
.x39_c01225{left:446.768835px;}
.x7_c01225{left:456.337185px;}
.x25_c01225{left:476.453985px;}
.xe_c01225{left:477.864735px;}
.x38_c01225{left:479.844735px;}
.x8_c01225{left:488.705235px;}
.x49_c01225{left:490.170435px;}
.x35_c01225{left:498.823035px;}
.x19_c01225{left:500.609985px;}
.x20_c01225{left:511.554435px;}
.x9_c01225{left:522.563235px;}
.x54_c01225{left:534.156135px;}
.x21_c01225{left:543.021585px;}
.xf_c01225{left:544.422435px;}
.x3a_c01225{left:554.614485px;}
.x1a_c01225{left:566.588535px;}
.x26_c01225{left:568.528935px;}
.x42_c01225{left:578.221035px;}
.x2e_c01225{left:587.230035px;}
.xa_c01225{left:589.140735px;}
.x1b_c01225{left:599.491185px;}
.x4a_c01225{left:600.644535px;}
.x3b_c01225{left:602.030535px;}
.x43_c01225{left:610.722735px;}
.x36_c01225{left:622.617585px;}
.x4b_c01225{left:632.844285px;}
.x55_c01225{left:643.600635px;}
.x4c_c01225{left:644.739135px;}
.x27_c01225{left:655.074735px;}
.x1c_c01225{left:657.940785px;}
.x10_c01225{left:664.920285px;}
.x2f_c01225{left:676.384485px;}
.x2_c01225{left:677.597235px;}
.x22_c01225{left:687.571485px;}
.x3c_c01225{left:688.932735px;}
.x28_c01225{left:700.674135px;}
.x3d_c01225{left:711.415635px;}
.x45_c01225{left:712.969935px;}
.x56_c01225{left:715.128135px;}
.x57_c01225{left:716.350785px;}
.x3e_c01225{left:720.884985px;}
.x4d_c01225{left:723.364935px;}
.x29_c01225{left:754.841985px;}
.x2a_c01225{left:756.623985px;}
@media print{
.v0_c01225{vertical-align:0.000000pt;}
.ls7_c01225{letter-spacing:-2.476326pt;}
.ls1_c01225{letter-spacing:-2.266880pt;}
.ls12_c01225{letter-spacing:-2.223760pt;}
.lse_c01225{letter-spacing:-2.040192pt;}
.lsd_c01225{letter-spacing:-1.845888pt;}
.ls16_c01225{letter-spacing:-1.675526pt;}
.lsf_c01225{letter-spacing:-1.424896pt;}
.ls2_c01225{letter-spacing:0.000000pt;}
.lsb_c01225{letter-spacing:0.006477pt;}
.ls8_c01225{letter-spacing:0.110106pt;}
.ls3_c01225{letter-spacing:2.234496pt;}
.ls10_c01225{letter-spacing:2.301763pt;}
.ls6_c01225{letter-spacing:2.629581pt;}
.ls13_c01225{letter-spacing:3.017960pt;}
.ls9_c01225{letter-spacing:3.088800pt;}
.ls14_c01225{letter-spacing:3.176800pt;}
.ls5_c01225{letter-spacing:3.193062pt;}
.ls4_c01225{letter-spacing:3.238400pt;}
.lsc_c01225{letter-spacing:3.440800pt;}
.ls11_c01225{letter-spacing:3.449609pt;}
.ls0_c01225{letter-spacing:3.537609pt;}
.ls17_c01225{letter-spacing:27.878400pt;}
.ls15_c01225{letter-spacing:54.489776pt;}
.lsa_c01225{letter-spacing:55.756800pt;}
.ws1_c01225{word-spacing:-16.192000pt;}
.ws0_c01225{word-spacing:-14.151808pt;}
.ws2_c01225{word-spacing:0.000000pt;}
._5_c01225{margin-left:-20.585664pt;}
._3_c01225{margin-left:-17.075696pt;}
._9_c01225{margin-left:-10.458096pt;}
._4_c01225{margin-left:-7.154400pt;}
._7_c01225{margin-left:-2.388496pt;}
._2_c01225{margin-left:-1.360128pt;}
._1_c01225{width:5.084288pt;}
._8_c01225{width:8.879024pt;}
._0_c01225{width:13.925120pt;}
._6_c01225{width:21.919920pt;}
.fsc_c01225{font-size:27.878400pt;}
.fs8_c01225{font-size:29.920000pt;}
.fs7_c01225{font-size:39.424000pt;}
.fsb_c01225{font-size:47.872176pt;}
.fsa_c01225{font-size:54.489776pt;}
.fs3_c01225{font-size:55.756800pt;}
.fs2_c01225{font-size:61.776000pt;}
.fs9_c01225{font-size:63.536000pt;}
.fs1_c01225{font-size:64.768000pt;}
.fs4_c01225{font-size:68.816000pt;}
.fs6_c01225{font-size:68.992176pt;}
.fs0_c01225{font-size:70.752176pt;}
.fs5_c01225{font-size:74.976000pt;}
.y0_c01225{bottom:0.000000pt;}
.y19_c01225{bottom:55.674120pt;}
.y1_c01225{bottom:68.000000pt;}
.y18_c01225{bottom:69.617720pt;}
.y17_c01225{bottom:96.858120pt;}
.y16_c01225{bottom:130.126520pt;}
.y15_c01225{bottom:154.832520pt;}
.y14_c01225{bottom:183.348920pt;}
.y13_c01225{bottom:209.638920pt;}
.y12_c01225{bottom:239.739320pt;}
.y11_c01225{bottom:268.568120pt;}
.y10_c01225{bottom:324.958520pt;}
.yf_c01225{bottom:353.787320pt;}
.ye_c01225{bottom:381.978120pt;}
.yd_c01225{bottom:437.418120pt;}
.yc_c01225{bottom:465.300920pt;}
.yb_c01225{bottom:521.057720pt;}
.ya_c01225{bottom:550.198920pt;}
.y9_c01225{bottom:606.906120pt;}
.y8_c01225{bottom:635.422520pt;}
.y7_c01225{bottom:691.808520pt;}
.y6_c01225{bottom:720.320520pt;}
.y5_c01225{bottom:775.448120pt;}
.y4_c01225{bottom:804.906120pt;}
.y3_c01225{bottom:832.784520pt;}
.y2_c01225{bottom:945.248520pt;}
.he_c01225{height:18.567014pt;}
.ha_c01225{height:29.364844pt;}
.hc_c01225{height:36.290191pt;}
.h5_c01225{height:37.134029pt;}
.h9_c01225{height:41.118000pt;}
.hd_c01225{height:46.983923pt;}
.h4_c01225{height:60.629766pt;}
.hb_c01225{height:62.357109pt;}
.h3_c01225{height:63.566250pt;}
.h8_c01225{height:67.712048pt;}
.h2_c01225{height:69.439391pt;}
.h6_c01225{height:71.772938pt;}
.h7_c01225{height:73.548234pt;}
.h1_c01225{height:986.666667pt;}
.h0_c01225{height:1122.666667pt;}
.w1_c01225{width:689.333333pt;}
.w0_c01225{width:793.333333pt;}
.x0_c01225{left:0.000000pt;}
.x1_c01225{left:52.000000pt;}
.x50_c01225{left:73.151453pt;}
.x13_c01225{left:78.158653pt;}
.x3_c01225{left:79.412653pt;}
.x51_c01225{left:109.460253pt;}
.x4_c01225{left:148.206653pt;}
.x46_c01225{left:149.350653pt;}
.x2b_c01225{left:158.234253pt;}
.x3f_c01225{left:168.745853pt;}
.x11_c01225{left:176.353453pt;}
.x14_c01225{left:177.629453pt;}
.xb_c01225{left:178.769053pt;}
.x47_c01225{left:188.405053pt;}
.x2c_c01225{left:196.628653pt;}
.x15_c01225{left:198.432653pt;}
.x40_c01225{left:207.672653pt;}
.x30_c01225{left:208.843053pt;}
.x31_c01225{left:216.565053pt;}
.x23_c01225{left:227.587053pt;}
.x16_c01225{left:239.471453pt;}
.x44_c01225{left:245.684253pt;}
.x32_c01225{left:247.043853pt;}
.x12_c01225{left:256.552253pt;}
.x1d_c01225{left:258.571853pt;}
.x4e_c01225{left:266.007853pt;}
.xc_c01225{left:267.147453pt;}
.x5_c01225{left:277.087053pt;}
.x41_c01225{left:278.200253pt;}
.x17_c01225{left:286.569053pt;}
.x2d_c01225{left:296.169853pt;}
.x52_c01225{left:305.700253pt;}
.x48_c01225{left:307.724253pt;}
.x6_c01225{left:316.427453pt;}
.x37_c01225{left:319.001453pt;}
.x53_c01225{left:323.757853pt;}
.x24_c01225{left:326.199853pt;}
.x33_c01225{left:336.887453pt;}
.x4f_c01225{left:345.898653pt;}
.x1f_c01225{left:355.583053pt;}
.x34_c01225{left:366.574253pt;}
.xd_c01225{left:376.219053pt;}
.x1e_c01225{left:385.014653pt;}
.x18_c01225{left:395.913453pt;}
.x39_c01225{left:397.127853pt;}
.x7_c01225{left:405.633053pt;}
.x25_c01225{left:423.514653pt;}
.xe_c01225{left:424.768653pt;}
.x38_c01225{left:426.528653pt;}
.x8_c01225{left:434.404653pt;}
.x49_c01225{left:435.707053pt;}
.x35_c01225{left:443.398253pt;}
.x19_c01225{left:444.986653pt;}
.x20_c01225{left:454.715053pt;}
.x9_c01225{left:464.500653pt;}
.x54_c01225{left:474.805453pt;}
.x21_c01225{left:482.685853pt;}
.xf_c01225{left:483.931053pt;}
.x3a_c01225{left:492.990653pt;}
.x1a_c01225{left:503.634253pt;}
.x26_c01225{left:505.359053pt;}
.x42_c01225{left:513.974253pt;}
.x2e_c01225{left:521.982253pt;}
.xa_c01225{left:523.680653pt;}
.x1b_c01225{left:532.881053pt;}
.x4a_c01225{left:533.906253pt;}
.x3b_c01225{left:535.138253pt;}
.x43_c01225{left:542.864653pt;}
.x36_c01225{left:553.437853pt;}
.x4b_c01225{left:562.528253pt;}
.x55_c01225{left:572.089453pt;}
.x4c_c01225{left:573.101453pt;}
.x27_c01225{left:582.288653pt;}
.x1c_c01225{left:584.836253pt;}
.x10_c01225{left:591.040253pt;}
.x2f_c01225{left:601.230653pt;}
.x2_c01225{left:602.308653pt;}
.x22_c01225{left:611.174653pt;}
.x3c_c01225{left:612.384653pt;}
.x28_c01225{left:622.821453pt;}
.x3d_c01225{left:632.369453pt;}
.x45_c01225{left:633.751053pt;}
.x56_c01225{left:635.669453pt;}
.x57_c01225{left:636.756253pt;}
.x3e_c01225{left:640.786653pt;}
.x4d_c01225{left:642.991053pt;}
.x29_c01225{left:670.970653pt;}
.x2a_c01225{left:672.554653pt;}
}





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

.ir_c01226:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01226{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01226;src:url('chunks/assets/font_89b073e900f3b8a11c98a49b.woff2')format("woff");}.ff1_c01226{font-family:ff1_c01226;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01226;src:url('chunks/assets/font_15df9e44389b15d662acf443.woff2')format("woff");}.ff2_c01226{font-family:ff2_c01226;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01226;src:url('chunks/assets/font_d62b58ecdf3d4c63972bc587.woff2')format("woff");}.ff3_c01226{font-family:ff3_c01226;line-height:0.666000;font-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_c01226{transform:matrix(0.067461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.067461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.067461,0.000000,0.000000,0.250000,0,0);}
.me_c01226{transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);}
.m10_c01226{transform:matrix(0.153757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153757,0.000000,0.000000,0.250000,0,0);}
.m43_c01226{transform:matrix(0.165571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165571,0.000000,0.000000,0.250000,0,0);}
.mf_c01226{transform:matrix(0.189248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189248,0.000000,0.000000,0.250000,0,0);}
.m4a_c01226{transform:matrix(0.194331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194331,0.000000,0.000000,0.250000,0,0);}
.m49_c01226{transform:matrix(0.201017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201017,0.000000,0.000000,0.250000,0,0);}
.m4_c01226{transform:matrix(0.203605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203605,0.000000,0.000000,0.250000,0,0);}
.m13_c01226{transform:matrix(0.207048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207048,0.000000,0.000000,0.250000,0,0);}
.m5f_c01226{transform:matrix(0.207207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207207,0.000000,0.000000,0.250000,0,0);}
.m26_c01226{transform:matrix(0.207469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207469,0.000000,0.000000,0.250000,0,0);}
.m2_c01226{transform:matrix(0.211301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211301,0.000000,0.000000,0.250000,0,0);}
.m62_c01226{transform:matrix(0.214623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214623,0.000000,0.000000,0.250000,0,0);}
.m61_c01226{transform:matrix(0.219524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219524,0.000000,0.000000,0.250000,0,0);}
.m24_c01226{transform:matrix(0.222288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222288,0.000000,0.000000,0.250000,0,0);}
.m31_c01226{transform:matrix(0.223191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223191,0.000000,0.000000,0.250000,0,0);}
.m41_c01226{transform:matrix(0.224095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224095,0.000000,0.000000,0.250000,0,0);}
.m5a_c01226{transform:matrix(0.224998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224998,0.000000,0.000000,0.250000,0,0);}
.m63_c01226{transform:matrix(0.238055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238055,0.000000,0.000000,0.250000,0,0);}
.m27_c01226{transform:matrix(0.242817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242817,0.000000,0.000000,0.250000,0,0);}
.m3_c01226{transform:matrix(0.246968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246968,0.000000,0.000000,0.250000,0,0);}
.m11_c01226{transform:matrix(0.246978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246978,0.000000,0.000000,0.250000,0,0);}
.m0_c01226{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01226{transform:matrix(0.252313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252313,0.000000,0.000000,0.250000,0,0);}
.m6c_c01226{transform:matrix(0.252700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252700,0.000000,0.000000,0.250000,0,0);}
.m53_c01226{transform:matrix(0.253468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253468,0.000000,0.000000,0.250000,0,0);}
.m55_c01226{transform:matrix(0.254214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254214,0.000000,0.000000,0.250000,0,0);}
.m25_c01226{transform:matrix(0.254897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254897,0.000000,0.000000,0.250000,0,0);}
.m47_c01226{transform:matrix(0.255022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255022,0.000000,0.000000,0.250000,0,0);}
.m28_c01226{transform:matrix(0.256072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256072,0.000000,0.000000,0.250000,0,0);}
.m1e_c01226{transform:matrix(0.256819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256819,0.000000,0.000000,0.250000,0,0);}
.m5_c01226{transform:matrix(0.257265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257265,0.000000,0.000000,0.250000,0,0);}
.m44_c01226{transform:matrix(0.259240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259240,0.000000,0.000000,0.250000,0,0);}
.m4f_c01226{transform:matrix(0.260217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260217,0.000000,0.000000,0.250000,0,0);}
.m12_c01226{transform:matrix(0.261325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261325,0.000000,0.000000,0.250000,0,0);}
.m2d_c01226{transform:matrix(0.262297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262297,0.000000,0.000000,0.250000,0,0);}
.m39_c01226{transform:matrix(0.262564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262564,0.000000,0.000000,0.250000,0,0);}
.m3d_c01226{transform:matrix(0.263126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263126,0.000000,0.000000,0.250000,0,0);}
.m4e_c01226{transform:matrix(0.263201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263201,0.000000,0.000000,0.250000,0,0);}
.m14_c01226{transform:matrix(0.264461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264461,0.000000,0.000000,0.250000,0,0);}
.m29_c01226{transform:matrix(0.264512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264512,0.000000,0.000000,0.250000,0,0);}
.m42_c01226{transform:matrix(0.264701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264701,0.000000,0.000000,0.250000,0,0);}
.m68_c01226{transform:matrix(0.266310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266310,0.000000,0.000000,0.250000,0,0);}
.md_c01226{transform:matrix(0.266540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266540,0.000000,0.000000,0.250000,0,0);}
.m1c_c01226{transform:matrix(0.266609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266609,0.000000,0.000000,0.250000,0,0);}
.m40_c01226{transform:matrix(0.268404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268404,0.000000,0.000000,0.250000,0,0);}
.m45_c01226{transform:matrix(0.268518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268518,0.000000,0.000000,0.250000,0,0);}
.m5e_c01226{transform:matrix(0.269470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269470,0.000000,0.000000,0.250000,0,0);}
.m3f_c01226{transform:matrix(0.269975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269975,0.000000,0.000000,0.250000,0,0);}
.ma_c01226{transform:matrix(0.270267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270267,0.000000,0.000000,0.250000,0,0);}
.m37_c01226{transform:matrix(0.270806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270806,0.000000,0.000000,0.250000,0,0);}
.m22_c01226{transform:matrix(0.271248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271248,0.000000,0.000000,0.250000,0,0);}
.m30_c01226{transform:matrix(0.271599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271599,0.000000,0.000000,0.250000,0,0);}
.m57_c01226{transform:matrix(0.272131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272131,0.000000,0.000000,0.250000,0,0);}
.m19_c01226{transform:matrix(0.273053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273053,0.000000,0.000000,0.250000,0,0);}
.m3a_c01226{transform:matrix(0.274414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274414,0.000000,0.000000,0.250000,0,0);}
.m1f_c01226{transform:matrix(0.274430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274430,0.000000,0.000000,0.250000,0,0);}
.m52_c01226{transform:matrix(0.274628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274628,0.000000,0.000000,0.250000,0,0);}
.m66_c01226{transform:matrix(0.274884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274884,0.000000,0.000000,0.250000,0,0);}
.m2c_c01226{transform:matrix(0.275980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275980,0.000000,0.000000,0.250000,0,0);}
.m1_c01226{transform:matrix(0.276104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276104,0.000000,0.000000,0.250000,0,0);}
.m4c_c01226{transform:matrix(0.276428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276428,0.000000,0.000000,0.250000,0,0);}
.m3b_c01226{transform:matrix(0.277602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277602,0.000000,0.000000,0.250000,0,0);}
.m36_c01226{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m5d_c01226{transform:matrix(0.278252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278252,0.000000,0.000000,0.250000,0,0);}
.m59_c01226{transform:matrix(0.278563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278563,0.000000,0.000000,0.250000,0,0);}
.m65_c01226{transform:matrix(0.279975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279975,0.000000,0.000000,0.250000,0,0);}
.m38_c01226{transform:matrix(0.282046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282046,0.000000,0.000000,0.250000,0,0);}
.m6a_c01226{transform:matrix(0.282160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282160,0.000000,0.000000,0.250000,0,0);}
.m2a_c01226{transform:matrix(0.282571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282571,0.000000,0.000000,0.250000,0,0);}
.m50_c01226{transform:matrix(0.283046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283046,0.000000,0.000000,0.250000,0,0);}
.m16_c01226{transform:matrix(0.283836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283836,0.000000,0.000000,0.250000,0,0);}
.m2f_c01226{transform:matrix(0.285998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285998,0.000000,0.000000,0.250000,0,0);}
.m7_c01226{transform:matrix(0.287796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287796,0.000000,0.000000,0.250000,0,0);}
.m46_c01226{transform:matrix(0.287941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287941,0.000000,0.000000,0.250000,0,0);}
.m35_c01226{transform:matrix(0.289548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289548,0.000000,0.000000,0.250000,0,0);}
.m17_c01226{transform:matrix(0.289945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289945,0.000000,0.000000,0.250000,0,0);}
.m6e_c01226{transform:matrix(0.290208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290208,0.000000,0.000000,0.250000,0,0);}
.m1a_c01226{transform:matrix(0.291206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291206,0.000000,0.000000,0.250000,0,0);}
.m32_c01226{transform:matrix(0.292058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292058,0.000000,0.000000,0.250000,0,0);}
.m15_c01226{transform:matrix(0.293392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293392,0.000000,0.000000,0.250000,0,0);}
.m6b_c01226{transform:matrix(0.293491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293491,0.000000,0.000000,0.250000,0,0);}
.m64_c01226{transform:matrix(0.293773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293773,0.000000,0.000000,0.250000,0,0);}
.m5b_c01226{transform:matrix(0.295099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295099,0.000000,0.000000,0.250000,0,0);}
.m2e_c01226{transform:matrix(0.295212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295212,0.000000,0.000000,0.250000,0,0);}
.m20_c01226{transform:matrix(0.295679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295679,0.000000,0.000000,0.250000,0,0);}
.m56_c01226{transform:matrix(0.296880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296880,0.000000,0.000000,0.250000,0,0);}
.m58_c01226{transform:matrix(0.296997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296997,0.000000,0.000000,0.250000,0,0);}
.m18_c01226{transform:matrix(0.300442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300442,0.000000,0.000000,0.250000,0,0);}
.m54_c01226{transform:matrix(0.300573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300573,0.000000,0.000000,0.250000,0,0);}
.mc_c01226{transform:matrix(0.301736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301736,0.000000,0.000000,0.250000,0,0);}
.m33_c01226{transform:matrix(0.303517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303517,0.000000,0.000000,0.250000,0,0);}
.m2b_c01226{transform:matrix(0.303845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303845,0.000000,0.000000,0.250000,0,0);}
.m67_c01226{transform:matrix(0.305796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305796,0.000000,0.000000,0.250000,0,0);}
.m51_c01226{transform:matrix(0.311096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311096,0.000000,0.000000,0.250000,0,0);}
.m48_c01226{transform:matrix(0.311314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311314,0.000000,0.000000,0.250000,0,0);}
.mb_c01226{transform:matrix(0.313762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313762,0.000000,0.000000,0.250000,0,0);}
.m9_c01226{transform:matrix(0.316794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316794,0.000000,0.000000,0.250000,0,0);}
.m1d_c01226{transform:matrix(0.319027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319027,0.000000,0.000000,0.250000,0,0);}
.m6d_c01226{transform:matrix(0.320018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320018,0.000000,0.000000,0.250000,0,0);}
.m60_c01226{transform:matrix(0.323594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323594,0.000000,0.000000,0.250000,0,0);}
.m3e_c01226{transform:matrix(0.324741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324741,0.000000,0.000000,0.250000,0,0);}
.m69_c01226{transform:matrix(0.330140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330140,0.000000,0.000000,0.250000,0,0);}
.m5c_c01226{transform:matrix(0.334253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334253,0.000000,0.000000,0.250000,0,0);}
.m4d_c01226{transform:matrix(0.334564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334564,0.000000,0.000000,0.250000,0,0);}
.m21_c01226{transform:matrix(0.342031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342031,0.000000,0.000000,0.250000,0,0);}
.m23_c01226{transform:matrix(0.345530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345530,0.000000,0.000000,0.250000,0,0);}
.m34_c01226{transform:matrix(0.364195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364195,0.000000,0.000000,0.250000,0,0);}
.m4b_c01226{transform:matrix(0.370070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370070,0.000000,0.000000,0.250000,0,0);}
.m6_c01226{transform:matrix(0.385232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385232,0.000000,0.000000,0.250000,0,0);}
.m3c_c01226{transform:matrix(0.393470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393470,0.000000,0.000000,0.250000,0,0);}
.v0_c01226{vertical-align:0.000000px;}
.ls3_c01226{letter-spacing:-2.813580px;}
.ls2_c01226{letter-spacing:-2.494800px;}
.ls11_c01226{letter-spacing:-2.291058px;}
.lsd_c01226{letter-spacing:-2.017739px;}
.lsa_c01226{letter-spacing:-1.555092px;}
.ls0_c01226{letter-spacing:0.000000px;}
.ls12_c01226{letter-spacing:1.358557px;}
.lsf_c01226{letter-spacing:1.905196px;}
.lsb_c01226{letter-spacing:3.047378px;}
.ls4_c01226{letter-spacing:3.366000px;}
.ls5_c01226{letter-spacing:3.465000px;}
.ls6_c01226{letter-spacing:3.564000px;}
.lse_c01226{letter-spacing:3.613500px;}
.lsc_c01226{letter-spacing:3.705887px;}
.ls9_c01226{letter-spacing:3.778236px;}
.ls1_c01226{letter-spacing:4.019400px;}
.ls13_c01226{letter-spacing:4.316400px;}
.ls10_c01226{letter-spacing:4.425310px;}
.ls8_c01226{letter-spacing:29.937798px;}
.ls14_c01226{letter-spacing:52.747398px;}
.ls7_c01226{letter-spacing:55.598598px;}
.sc__c01226{text-shadow:none;}
.sc0_c01226{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01226{-webkit-text-stroke:0px transparent;}
.sc0_c01226{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01226{word-spacing:-20.097000px;}
.ws1_c01226{word-spacing:0.000000px;}
._1_c01226{margin-left:-26.928000px;}
._0_c01226{margin-left:-24.334596px;}
._6_c01226{margin-left:-4.742892px;}
._8_c01226{width:2.090088px;}
._2_c01226{width:4.662504px;}
._3_c01226{width:6.752592px;}
._a_c01226{width:12.540528px;}
._9_c01226{width:22.348656px;}
._7_c01226{width:28.457352px;}
._5_c01226{width:31.833648px;}
._4_c01226{width:38.023524px;}
.fc0_c01226{color:transparent;}
.fs12_c01226{font-size:22.176000px;}
.fs8_c01226{font-size:25.146000px;}
.fsf_c01226{font-size:27.720000px;}
.fs9_c01226{font-size:29.937798px;}
.fs1_c01226{font-size:33.264000px;}
.fs0_c01226{font-size:45.144000px;}
.fs11_c01226{font-size:52.747398px;}
.fs6_c01226{font-size:55.598598px;}
.fs7_c01226{font-size:66.528000px;}
.fs4_c01226{font-size:67.320000px;}
.fs5_c01226{font-size:69.300000px;}
.fs3_c01226{font-size:71.280000px;}
.fsc_c01226{font-size:72.270000px;}
.fsa_c01226{font-size:76.230000px;}
.fs10_c01226{font-size:79.200000px;}
.fs2_c01226{font-size:80.388000px;}
.fsb_c01226{font-size:86.328000px;}
.fsd_c01226{font-size:88.506198px;}
.fse_c01226{font-size:89.496198px;}
.y0_c01226{bottom:0.000000px;}
.y20_c01226{bottom:14.162985px;}
.y1f_c01226{bottom:31.626585px;}
.y1_c01226{bottom:76.500000px;}
.y1e_c01226{bottom:97.921935px;}
.y1d_c01226{bottom:130.349385px;}
.y1c_c01226{bottom:193.437135px;}
.y1b_c01226{bottom:225.513135px;}
.y1a_c01226{bottom:288.947385px;}
.y19_c01226{bottom:320.671935px;}
.y18_c01226{bottom:384.106185px;}
.y17_c01226{bottom:415.474335px;}
.y16_c01226{bottom:477.844335px;}
.y15_c01226{bottom:510.276735px;}
.y11_c01226{bottom:573.003135px;}
.y14_c01226{bottom:583.338735px;}
.y13_c01226{bottom:589.748985px;}
.y12_c01226{bottom:605.435535px;}
.y10_c01226{bottom:605.791935px;}
.yf_c01226{bottom:669.231135px;}
.ye_c01226{bottom:700.950735px;}
.yd_c01226{bottom:763.672185px;}
.yc_c01226{bottom:796.104585px;}
.yb_c01226{bottom:827.111385px;}
.ya_c01226{bottom:862.399935px;}
.y9_c01226{bottom:872.735535px;}
.y8_c01226{bottom:885.560985px;}
.y7_c01226{bottom:890.194185px;}
.y5_c01226{bottom:921.200985px;}
.y6_c01226{bottom:922.987935px;}
.y4_c01226{bottom:1058.414985px;}
.y3_c01226{bottom:1064.473785px;}
.y2_c01226{bottom:1106.172585px;}
.hb_c01226{height:19.938573px;}
.h14_c01226{height:23.128875px;}
.ha_c01226{height:26.226492px;}
.h11_c01226{height:28.911094px;}
.h3_c01226{height:34.693313px;}
.h13_c01226{height:35.129767px;}
.h8_c01226{height:37.028666px;}
.h2_c01226{height:47.083781px;}
.h7_c01226{height:68.014160px;}
.h9_c01226{height:69.386625px;}
.h6_c01226{height:70.212656px;}
.he_c01226{height:70.929053px;}
.h5_c01226{height:74.342813px;}
.hc_c01226{height:74.815576px;}
.h12_c01226{height:77.730469px;}
.h4_c01226{height:78.896426px;}
.hd_c01226{height:84.726211px;}
.hf_c01226{height:86.863993px;}
.h10_c01226{height:87.835624px;}
.h1_c01226{height:1110.000000px;}
.h0_c01226{height:1263.000000px;}
.w1_c01226{width:775.500000px;}
.w0_c01226{width:892.500000px;}
.x0_c01226{left:0.000000px;}
.x1_c01226{left:58.500000px;}
.x4a_c01226{left:87.928485px;}
.x39_c01226{left:89.002635px;}
.x5_c01226{left:90.180735px;}
.x17_c01226{left:111.401385px;}
.x6_c01226{left:123.479385px;}
.x7_c01226{left:135.988035px;}
.x8_c01226{left:157.436385px;}
.x9_c01226{left:189.730185px;}
.x2a_c01226{left:191.348835px;}
.x4d_c01226{left:199.882635px;}
.x10_c01226{left:200.946885px;}
.x50_c01226{left:211.584435px;}
.x2_c01226{left:212.836785px;}
.x3_c01226{left:219.400485px;}
.x18_c01226{left:222.281385px;}
.xa_c01226{left:224.187135px;}
.x19_c01226{left:235.037535px;}
.x27_c01226{left:244.373235px;}
.x2b_c01226{left:246.214635px;}
.x4e_c01226{left:255.065235px;}
.xb_c01226{left:257.812485px;}
.x11_c01226{left:267.370935px;}
.x33_c01226{left:269.138085px;}
.x1a_c01226{left:280.077585px;}
.x56_c01226{left:288.626235px;}
.xc_c01226{left:290.289435px;}
.x48_c01226{left:300.332985px;}
.x34_c01226{left:301.966485px;}
.xd_c01226{left:311.381385px;}
.x1b_c01226{left:313.534635px;}
.x3d_c01226{left:322.400085px;}
.x2c_c01226{left:323.479185px;}
.x28_c01226{left:334.240485px;}
.x51_c01226{left:335.463135px;}
.x4f_c01226{left:344.576085px;}
.xe_c01226{left:356.035335px;}
.x2e_c01226{left:357.045135px;}
.x21_c01226{left:358.312335px;}
.x57_c01226{left:366.623385px;}
.x52_c01226{left:368.623185px;}
.x12_c01226{left:378.028185px;}
.x3e_c01226{left:379.651785px;}
.x13_c01226{left:391.412985px;}
.x1c_c01226{left:402.822735px;}
.x3f_c01226{left:411.623835px;}
.x31_c01226{left:412.796985px;}
.x4b_c01226{left:423.152385px;}
.x29_c01226{left:424.736385px;}
.x2f_c01226{left:434.091885px;}
.x53_c01226{left:435.631335px;}
.x22_c01226{left:446.407485px;}
.x40_c01226{left:456.500535px;}
.x32_c01226{left:458.069685px;}
.x14_c01226{left:467.543985px;}
.x54_c01226{left:477.557835px;}
.x41_c01226{left:479.122035px;}
.x44_c01226{left:500.352585px;}
.x23_c01226{left:501.595035px;}
.x30_c01226{left:502.723635px;}
.x1d_c01226{left:512.093985px;}
.x58_c01226{left:521.706885px;}
.x49_c01226{left:524.097735px;}
.x24_c01226{left:534.849135px;}
.x3a_c01226{left:536.235135px;}
.x45_c01226{left:547.090485px;}
.x59_c01226{left:551.253435px;}
.x46_c01226{left:555.480735px;}
.x4c_c01226{left:556.841985px;}
.x25_c01226{left:567.464685px;}
.x3b_c01226{left:578.621985px;}
.x42_c01226{left:589.323885px;}
.x1e_c01226{left:591.754335px;}
.x2d_c01226{left:599.342685px;}
.xf_c01226{left:600.832635px;}
.x1f_c01226{left:645.536085px;}
.x35_c01226{left:654.594585px;}
.x55_c01226{left:656.579535px;}
.x26_c01226{left:666.672585px;}
.x36_c01226{left:668.335785px;}
.x43_c01226{left:677.953635px;}
.x3c_c01226{left:688.447635px;}
.x4_c01226{left:689.709885px;}
.x47_c01226{left:699.550485px;}
.x38_c01226{left:710.183085px;}
.x15_c01226{left:712.880835px;}
.x16_c01226{left:714.751935px;}
.x37_c01226{left:719.494035px;}
.x20_c01226{left:724.330185px;}
@media print{
.v0_c01226{vertical-align:0.000000pt;}
.ls3_c01226{letter-spacing:-2.500960pt;}
.ls2_c01226{letter-spacing:-2.217600pt;}
.ls11_c01226{letter-spacing:-2.036496pt;}
.lsd_c01226{letter-spacing:-1.793546pt;}
.lsa_c01226{letter-spacing:-1.382304pt;}
.ls0_c01226{letter-spacing:0.000000pt;}
.ls12_c01226{letter-spacing:1.207606pt;}
.lsf_c01226{letter-spacing:1.693507pt;}
.lsb_c01226{letter-spacing:2.708781pt;}
.ls4_c01226{letter-spacing:2.992000pt;}
.ls5_c01226{letter-spacing:3.080000pt;}
.ls6_c01226{letter-spacing:3.168000pt;}
.lse_c01226{letter-spacing:3.212000pt;}
.lsc_c01226{letter-spacing:3.294122pt;}
.ls9_c01226{letter-spacing:3.358432pt;}
.ls1_c01226{letter-spacing:3.572800pt;}
.ls13_c01226{letter-spacing:3.836800pt;}
.ls10_c01226{letter-spacing:3.933609pt;}
.ls8_c01226{letter-spacing:26.611376pt;}
.ls14_c01226{letter-spacing:46.886576pt;}
.ls7_c01226{letter-spacing:49.420976pt;}
.ws0_c01226{word-spacing:-17.864000pt;}
.ws1_c01226{word-spacing:0.000000pt;}
._1_c01226{margin-left:-23.936000pt;}
._0_c01226{margin-left:-21.630752pt;}
._6_c01226{margin-left:-4.215904pt;}
._8_c01226{width:1.857856pt;}
._2_c01226{width:4.144448pt;}
._3_c01226{width:6.002304pt;}
._a_c01226{width:11.147136pt;}
._9_c01226{width:19.865472pt;}
._7_c01226{width:25.295424pt;}
._5_c01226{width:28.296576pt;}
._4_c01226{width:33.798688pt;}
.fs12_c01226{font-size:19.712000pt;}
.fs8_c01226{font-size:22.352000pt;}
.fsf_c01226{font-size:24.640000pt;}
.fs9_c01226{font-size:26.611376pt;}
.fs1_c01226{font-size:29.568000pt;}
.fs0_c01226{font-size:40.128000pt;}
.fs11_c01226{font-size:46.886576pt;}
.fs6_c01226{font-size:49.420976pt;}
.fs7_c01226{font-size:59.136000pt;}
.fs4_c01226{font-size:59.840000pt;}
.fs5_c01226{font-size:61.600000pt;}
.fs3_c01226{font-size:63.360000pt;}
.fsc_c01226{font-size:64.240000pt;}
.fsa_c01226{font-size:67.760000pt;}
.fs10_c01226{font-size:70.400000pt;}
.fs2_c01226{font-size:71.456000pt;}
.fsb_c01226{font-size:76.736000pt;}
.fsd_c01226{font-size:78.672176pt;}
.fse_c01226{font-size:79.552176pt;}
.y0_c01226{bottom:0.000000pt;}
.y20_c01226{bottom:12.589320pt;}
.y1f_c01226{bottom:28.112520pt;}
.y1_c01226{bottom:68.000000pt;}
.y1e_c01226{bottom:87.041720pt;}
.y1d_c01226{bottom:115.866120pt;}
.y1c_c01226{bottom:171.944120pt;}
.y1b_c01226{bottom:200.456120pt;}
.y1a_c01226{bottom:256.842120pt;}
.y19_c01226{bottom:285.041720pt;}
.y18_c01226{bottom:341.427720pt;}
.y17_c01226{bottom:369.310520pt;}
.y16_c01226{bottom:424.750520pt;}
.y15_c01226{bottom:453.579320pt;}
.y11_c01226{bottom:509.336120pt;}
.y14_c01226{bottom:518.523320pt;}
.y13_c01226{bottom:524.221320pt;}
.y12_c01226{bottom:538.164920pt;}
.y10_c01226{bottom:538.481720pt;}
.yf_c01226{bottom:594.872120pt;}
.ye_c01226{bottom:623.067320pt;}
.yd_c01226{bottom:678.819720pt;}
.yc_c01226{bottom:707.648520pt;}
.yb_c01226{bottom:735.210120pt;}
.ya_c01226{bottom:766.577720pt;}
.y9_c01226{bottom:775.764920pt;}
.y8_c01226{bottom:787.165320pt;}
.y7_c01226{bottom:791.283720pt;}
.y5_c01226{bottom:818.845320pt;}
.y6_c01226{bottom:820.433720pt;}
.y4_c01226{bottom:940.813320pt;}
.y3_c01226{bottom:946.198920pt;}
.y2_c01226{bottom:983.264520pt;}
.hb_c01226{height:17.723176pt;}
.h14_c01226{height:20.559000pt;}
.ha_c01226{height:23.312438pt;}
.h11_c01226{height:25.698750pt;}
.h3_c01226{height:30.838500pt;}
.h13_c01226{height:31.226460pt;}
.h8_c01226{height:32.914370pt;}
.h2_c01226{height:41.852250pt;}
.h7_c01226{height:60.457031pt;}
.h9_c01226{height:61.677000pt;}
.h6_c01226{height:62.411250pt;}
.he_c01226{height:63.048047pt;}
.h5_c01226{height:66.082500pt;}
.hc_c01226{height:66.502734pt;}
.h12_c01226{height:69.093750pt;}
.h4_c01226{height:70.130156pt;}
.hd_c01226{height:75.312188pt;}
.hf_c01226{height:77.212438pt;}
.h10_c01226{height:78.076110pt;}
.h1_c01226{height:986.666667pt;}
.h0_c01226{height:1122.666667pt;}
.w1_c01226{width:689.333333pt;}
.w0_c01226{width:793.333333pt;}
.x0_c01226{left:0.000000pt;}
.x1_c01226{left:52.000000pt;}
.x4a_c01226{left:78.158653pt;}
.x39_c01226{left:79.113453pt;}
.x5_c01226{left:80.160653pt;}
.x17_c01226{left:99.023453pt;}
.x6_c01226{left:109.759453pt;}
.x7_c01226{left:120.878253pt;}
.x8_c01226{left:139.943453pt;}
.x9_c01226{left:168.649053pt;}
.x2a_c01226{left:170.087853pt;}
.x4d_c01226{left:177.673453pt;}
.x10_c01226{left:178.619453pt;}
.x50_c01226{left:188.075053pt;}
.x2_c01226{left:189.188253pt;}
.x3_c01226{left:195.022653pt;}
.x18_c01226{left:197.583453pt;}
.xa_c01226{left:199.277453pt;}
.x19_c01226{left:208.922253pt;}
.x27_c01226{left:217.220653pt;}
.x2b_c01226{left:218.857453pt;}
.x4e_c01226{left:226.724653pt;}
.xb_c01226{left:229.166653pt;}
.x11_c01226{left:237.663053pt;}
.x33_c01226{left:239.233853pt;}
.x1a_c01226{left:248.957853pt;}
.x56_c01226{left:256.556653pt;}
.xc_c01226{left:258.035053pt;}
.x48_c01226{left:266.962653pt;}
.x34_c01226{left:268.414653pt;}
.xd_c01226{left:276.783453pt;}
.x1b_c01226{left:278.697453pt;}
.x3d_c01226{left:286.577853pt;}
.x2c_c01226{left:287.537053pt;}
.x28_c01226{left:297.102653pt;}
.x51_c01226{left:298.189453pt;}
.x4f_c01226{left:306.289853pt;}
.xe_c01226{left:316.475853pt;}
.x2e_c01226{left:317.373453pt;}
.x21_c01226{left:318.499853pt;}
.x57_c01226{left:325.887453pt;}
.x52_c01226{left:327.665053pt;}
.x12_c01226{left:336.025053pt;}
.x3e_c01226{left:337.468253pt;}
.x13_c01226{left:347.922653pt;}
.x1c_c01226{left:358.064653pt;}
.x3f_c01226{left:365.887853pt;}
.x31_c01226{left:366.930653pt;}
.x4b_c01226{left:376.135453pt;}
.x29_c01226{left:377.543453pt;}
.x2f_c01226{left:385.859453pt;}
.x53_c01226{left:387.227853pt;}
.x22_c01226{left:396.806653pt;}
.x40_c01226{left:405.778253pt;}
.x32_c01226{left:407.173053pt;}
.x14_c01226{left:415.594653pt;}
.x54_c01226{left:424.495853pt;}
.x41_c01226{left:425.886253pt;}
.x44_c01226{left:444.757853pt;}
.x23_c01226{left:445.862253pt;}
.x30_c01226{left:446.865453pt;}
.x1d_c01226{left:455.194653pt;}
.x58_c01226{left:463.739453pt;}
.x49_c01226{left:465.864653pt;}
.x24_c01226{left:475.421453pt;}
.x3a_c01226{left:476.653453pt;}
.x45_c01226{left:486.302653pt;}
.x59_c01226{left:490.003053pt;}
.x46_c01226{left:493.760653pt;}
.x4c_c01226{left:494.970653pt;}
.x25_c01226{left:504.413053pt;}
.x3b_c01226{left:514.330653pt;}
.x42_c01226{left:523.843453pt;}
.x1e_c01226{left:526.003853pt;}
.x2d_c01226{left:532.749053pt;}
.xf_c01226{left:534.073453pt;}
.x1f_c01226{left:573.809853pt;}
.x35_c01226{left:581.861853pt;}
.x55_c01226{left:583.626253pt;}
.x26_c01226{left:592.597853pt;}
.x36_c01226{left:594.076253pt;}
.x43_c01226{left:602.625453pt;}
.x3c_c01226{left:611.953453pt;}
.x4_c01226{left:613.075453pt;}
.x47_c01226{left:621.822653pt;}
.x38_c01226{left:631.273853pt;}
.x15_c01226{left:633.671853pt;}
.x16_c01226{left:635.335053pt;}
.x37_c01226{left:639.550253pt;}
.x20_c01226{left:643.849053pt;}
}





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

.ir_c01227:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01227{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01227;src:url('chunks/assets/font_264d40b6b5dea06ad97bd94f.woff2')format("woff");}.ff1_c01227{font-family:ff1_c01227;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01227;src:url('chunks/assets/font_9197fe18b734f987a1fbf2bb.woff2')format("woff");}.ff2_c01227{font-family:ff2_c01227;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01227;src:url('chunks/assets/font_2c2da7e55e82b8b5129c2d6d.woff2')format("woff");}.ff3_c01227{font-family:ff3_c01227;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01227;src:url('chunks/assets/font_892742b1421e7a07117312c1.woff2')format("woff");}.ff4_c01227{font-family:ff4_c01227;line-height:0.666000;font-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_c01227{transform:matrix(0.119048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119048,0.000000,0.000000,0.250000,0,0);}
.m11_c01227{transform:matrix(0.141148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141148,0.000000,0.000000,0.250000,0,0);}
.m2e_c01227{transform:matrix(0.159420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159420,0.000000,0.000000,0.250000,0,0);}
.m52_c01227{transform:matrix(0.181042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181042,0.000000,0.000000,0.250000,0,0);}
.m2_c01227{transform:matrix(0.190931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190931,0.000000,0.000000,0.250000,0,0);}
.m73_c01227{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m3_c01227{transform:matrix(0.200638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200638,0.000000,0.000000,0.250000,0,0);}
.m3d_c01227{transform:matrix(0.204316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204316,0.000000,0.000000,0.250000,0,0);}
.m44_c01227{transform:matrix(0.221604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221604,0.000000,0.000000,0.250000,0,0);}
.m49_c01227{transform:matrix(0.222137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222137,0.000000,0.000000,0.250000,0,0);}
.m5_c01227{transform:matrix(0.223838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223838,0.000000,0.000000,0.250000,0,0);}
.mc_c01227{transform:matrix(0.223960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223960,0.000000,0.000000,0.250000,0,0);}
.m64_c01227{transform:matrix(0.226356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226356,0.000000,0.000000,0.250000,0,0);}
.m3f_c01227{transform:matrix(0.229653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229653,0.000000,0.000000,0.250000,0,0);}
.m2f_c01227{transform:matrix(0.236435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236435,0.000000,0.000000,0.250000,0,0);}
.m4b_c01227{transform:matrix(0.237013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237013,0.000000,0.000000,0.250000,0,0);}
.m3e_c01227{transform:matrix(0.242412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242412,0.000000,0.000000,0.250000,0,0);}
.m4a_c01227{transform:matrix(0.247086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247086,0.000000,0.000000,0.250000,0,0);}
.mf_c01227{transform:matrix(0.247318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247318,0.000000,0.000000,0.250000,0,0);}
.m55_c01227{transform:matrix(0.247816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247816,0.000000,0.000000,0.250000,0,0);}
.m0_c01227{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01227{transform:matrix(0.251420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251420,0.000000,0.000000,0.250000,0,0);}
.m3a_c01227{transform:matrix(0.252231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252231,0.000000,0.000000,0.250000,0,0);}
.m54_c01227{transform:matrix(0.252249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252249,0.000000,0.000000,0.250000,0,0);}
.m3b_c01227{transform:matrix(0.254001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254001,0.000000,0.000000,0.250000,0,0);}
.m74_c01227{transform:matrix(0.254325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254325,0.000000,0.000000,0.250000,0,0);}
.m66_c01227{transform:matrix(0.254880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254880,0.000000,0.000000,0.250000,0,0);}
.m63_c01227{transform:matrix(0.255162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255162,0.000000,0.000000,0.250000,0,0);}
.m6a_c01227{transform:matrix(0.257972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257972,0.000000,0.000000,0.250000,0,0);}
.m28_c01227{transform:matrix(0.261448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261448,0.000000,0.000000,0.250000,0,0);}
.md_c01227{transform:matrix(0.261956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261956,0.000000,0.000000,0.250000,0,0);}
.m23_c01227{transform:matrix(0.262012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262012,0.000000,0.000000,0.250000,0,0);}
.m14_c01227{transform:matrix(0.262534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262534,0.000000,0.000000,0.250000,0,0);}
.m1_c01227{transform:matrix(0.263161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263161,0.000000,0.000000,0.250000,0,0);}
.m21_c01227{transform:matrix(0.264495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264495,0.000000,0.000000,0.250000,0,0);}
.m2c_c01227{transform:matrix(0.265131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265131,0.000000,0.000000,0.250000,0,0);}
.m35_c01227{transform:matrix(0.267061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267061,0.000000,0.000000,0.250000,0,0);}
.m17_c01227{transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);}
.m46_c01227{transform:matrix(0.268168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268168,0.000000,0.000000,0.250000,0,0);}
.m1c_c01227{transform:matrix(0.271282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271282,0.000000,0.000000,0.250000,0,0);}
.m13_c01227{transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);}
.m60_c01227{transform:matrix(0.274659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274659,0.000000,0.000000,0.250000,0,0);}
.me_c01227{transform:matrix(0.275222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275222,0.000000,0.000000,0.250000,0,0);}
.m43_c01227{transform:matrix(0.276570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276570,0.000000,0.000000,0.250000,0,0);}
.m5f_c01227{transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277742,0.000000,0.000000,0.250000,0,0);}
.m4_c01227{transform:matrix(0.280647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280647,0.000000,0.000000,0.250000,0,0);}
.m1e_c01227{transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);}
.ma_c01227{transform:matrix(0.280800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280800,0.000000,0.000000,0.250000,0,0);}
.m2d_c01227{transform:matrix(0.281099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281099,0.000000,0.000000,0.250000,0,0);}
.m45_c01227{transform:matrix(0.281788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281788,0.000000,0.000000,0.250000,0,0);}
.m68_c01227{transform:matrix(0.283103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283103,0.000000,0.000000,0.250000,0,0);}
.m19_c01227{transform:matrix(0.283536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283536,0.000000,0.000000,0.250000,0,0);}
.m65_c01227{transform:matrix(0.284441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284441,0.000000,0.000000,0.250000,0,0);}
.m53_c01227{transform:matrix(0.285582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285582,0.000000,0.000000,0.250000,0,0);}
.m39_c01227{transform:matrix(0.286563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286563,0.000000,0.000000,0.250000,0,0);}
.m1a_c01227{transform:matrix(0.286591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286591,0.000000,0.000000,0.250000,0,0);}
.m48_c01227{transform:matrix(0.288289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288289,0.000000,0.000000,0.250000,0,0);}
.m2a_c01227{transform:matrix(0.289173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289173,0.000000,0.000000,0.250000,0,0);}
.m10_c01227{transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);}
.m6d_c01227{transform:matrix(0.291081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291081,0.000000,0.000000,0.250000,0,0);}
.m26_c01227{transform:matrix(0.291242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291242,0.000000,0.000000,0.250000,0,0);}
.m69_c01227{transform:matrix(0.291715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291715,0.000000,0.000000,0.250000,0,0);}
.m40_c01227{transform:matrix(0.293398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293398,0.000000,0.000000,0.250000,0,0);}
.m5d_c01227{transform:matrix(0.293493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293493,0.000000,0.000000,0.250000,0,0);}
.m8_c01227{transform:matrix(0.293629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293629,0.000000,0.000000,0.250000,0,0);}
.m6_c01227{transform:matrix(0.294456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294456,0.000000,0.000000,0.250000,0,0);}
.m6f_c01227{transform:matrix(0.299390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299390,0.000000,0.000000,0.250000,0,0);}
.mb_c01227{transform:matrix(0.299486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299486,0.000000,0.000000,0.250000,0,0);}
.m6e_c01227{transform:matrix(0.300072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300072,0.000000,0.000000,0.250000,0,0);}
.m1d_c01227{transform:matrix(0.300619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300619,0.000000,0.000000,0.250000,0,0);}
.m15_c01227{transform:matrix(0.301621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301621,0.000000,0.000000,0.250000,0,0);}
.m72_c01227{transform:matrix(0.302524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302524,0.000000,0.000000,0.250000,0,0);}
.m4d_c01227{transform:matrix(0.302846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302846,0.000000,0.000000,0.250000,0,0);}
.m5e_c01227{transform:matrix(0.304796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304796,0.000000,0.000000,0.250000,0,0);}
.m42_c01227{transform:matrix(0.305357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305357,0.000000,0.000000,0.250000,0,0);}
.m4c_c01227{transform:matrix(0.306725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306725,0.000000,0.000000,0.250000,0,0);}
.m24_c01227{transform:matrix(0.306908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306908,0.000000,0.000000,0.250000,0,0);}
.m1f_c01227{transform:matrix(0.307389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307389,0.000000,0.000000,0.250000,0,0);}
.m58_c01227{transform:matrix(0.308867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308867,0.000000,0.000000,0.250000,0,0);}
.m57_c01227{transform:matrix(0.310009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310009,0.000000,0.000000,0.250000,0,0);}
.m9_c01227{transform:matrix(0.310071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310071,0.000000,0.000000,0.250000,0,0);}
.m25_c01227{transform:matrix(0.311367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311367,0.000000,0.000000,0.250000,0,0);}
.m56_c01227{transform:matrix(0.311788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311788,0.000000,0.000000,0.250000,0,0);}
.m38_c01227{transform:matrix(0.311854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311854,0.000000,0.000000,0.250000,0,0);}
.m67_c01227{transform:matrix(0.312008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312008,0.000000,0.000000,0.250000,0,0);}
.m27_c01227{transform:matrix(0.315762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315762,0.000000,0.000000,0.250000,0,0);}
.m61_c01227{transform:matrix(0.319055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319055,0.000000,0.000000,0.250000,0,0);}
.m30_c01227{transform:matrix(0.319654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319654,0.000000,0.000000,0.250000,0,0);}
.m4f_c01227{transform:matrix(0.320236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320236,0.000000,0.000000,0.250000,0,0);}
.m70_c01227{transform:matrix(0.320238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320238,0.000000,0.000000,0.250000,0,0);}
.m71_c01227{transform:matrix(0.321777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321777,0.000000,0.000000,0.250000,0,0);}
.m6c_c01227{transform:matrix(0.324290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324290,0.000000,0.000000,0.250000,0,0);}
.m37_c01227{transform:matrix(0.325573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325573,0.000000,0.000000,0.250000,0,0);}
.m47_c01227{transform:matrix(0.328202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328202,0.000000,0.000000,0.250000,0,0);}
.m1b_c01227{transform:matrix(0.328832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328832,0.000000,0.000000,0.250000,0,0);}
.m12_c01227{transform:matrix(0.332487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332487,0.000000,0.000000,0.250000,0,0);}
.m16_c01227{transform:matrix(0.332874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332874,0.000000,0.000000,0.250000,0,0);}
.m5a_c01227{transform:matrix(0.333374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333374,0.000000,0.000000,0.250000,0,0);}
.m62_c01227{transform:matrix(0.334045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334045,0.000000,0.000000,0.250000,0,0);}
.m20_c01227{transform:matrix(0.335943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335943,0.000000,0.000000,0.250000,0,0);}
.m5b_c01227{transform:matrix(0.339155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339155,0.000000,0.000000,0.250000,0,0);}
.m34_c01227{transform:matrix(0.342633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342633,0.000000,0.000000,0.250000,0,0);}
.m4e_c01227{transform:matrix(0.343048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343048,0.000000,0.000000,0.250000,0,0);}
.m31_c01227{transform:matrix(0.343742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343742,0.000000,0.000000,0.250000,0,0);}
.m2b_c01227{transform:matrix(0.344466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344466,0.000000,0.000000,0.250000,0,0);}
.m51_c01227{transform:matrix(0.346226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346226,0.000000,0.000000,0.250000,0,0);}
.m7_c01227{transform:matrix(0.351359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351359,0.000000,0.000000,0.250000,0,0);}
.m29_c01227{transform:matrix(0.353231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353231,0.000000,0.000000,0.250000,0,0);}
.m5c_c01227{transform:matrix(0.355252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355252,0.000000,0.000000,0.250000,0,0);}
.m32_c01227{transform:matrix(0.356018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356018,0.000000,0.000000,0.250000,0,0);}
.m50_c01227{transform:matrix(0.357905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357905,0.000000,0.000000,0.250000,0,0);}
.m33_c01227{transform:matrix(0.363263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363263,0.000000,0.000000,0.250000,0,0);}
.m36_c01227{transform:matrix(0.376911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376911,0.000000,0.000000,0.250000,0,0);}
.m6b_c01227{transform:matrix(0.388544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388544,0.000000,0.000000,0.250000,0,0);}
.m59_c01227{transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399562,0.000000,0.000000,0.250000,0,0);}
.m41_c01227{transform:matrix(0.413907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413907,0.000000,0.000000,0.250000,0,0);}
.m18_c01227{transform:matrix(0.517435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517435,0.000000,0.000000,0.250000,0,0);}
.v0_c01227{vertical-align:0.000000px;}
.ls18_c01227{letter-spacing:-3.201667px;}
.ls7_c01227{letter-spacing:-2.993767px;}
.ls1a_c01227{letter-spacing:-2.661127px;}
.ls4_c01227{letter-spacing:-2.647267px;}
.ls16_c01227{letter-spacing:-2.577967px;}
.lsb_c01227{letter-spacing:-2.564100px;}
.ls6_c01227{letter-spacing:-0.347927px;}
.ls2_c01227{letter-spacing:0.000000px;}
.lse_c01227{letter-spacing:0.665599px;}
.ls1_c01227{letter-spacing:1.086310px;}
.ls1d_c01227{letter-spacing:1.293379px;}
.ls1c_c01227{letter-spacing:1.429524px;}
.ls0_c01227{letter-spacing:1.589742px;}
.ls12_c01227{letter-spacing:2.603700px;}
.ls13_c01227{letter-spacing:2.744755px;}
.ls10_c01227{letter-spacing:3.456574px;}
.ls15_c01227{letter-spacing:3.593700px;}
.ls17_c01227{letter-spacing:3.603610px;}
.ls11_c01227{letter-spacing:3.643200px;}
.lsc_c01227{letter-spacing:3.663000px;}
.lsf_c01227{letter-spacing:3.771900px;}
.ls5_c01227{letter-spacing:3.781810px;}
.ls1b_c01227{letter-spacing:3.801610px;}
.ls9_c01227{letter-spacing:3.861000px;}
.ls3_c01227{letter-spacing:4.078810px;}
.lsa_c01227{letter-spacing:4.167712px;}
.ls8_c01227{letter-spacing:4.276810px;}
.ls19_c01227{letter-spacing:4.286700px;}
.ls14_c01227{letter-spacing:29.937798px;}
.lsd_c01227{letter-spacing:54.172998px;}
.sc__c01227{text-shadow:none;}
.sc0_c01227{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01227{-webkit-text-stroke:0px transparent;}
.sc0_c01227{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01227{word-spacing:-19.904742px;}
.ws1_c01227{word-spacing:0.000000px;}
._3_c01227{margin-left:-30.459652px;}
._2_c01227{margin-left:-17.588736px;}
._1_c01227{margin-left:-14.859504px;}
._5_c01227{margin-left:-9.530594px;}
._6_c01227{width:1.026561px;}
._4_c01227{width:6.798528px;}
._7_c01227{width:28.987101px;}
._0_c01227{width:80.758887px;}
.fc0_c01227{color:transparent;}
.fs1_c01227{font-size:22.176000px;}
.fs12_c01227{font-size:25.344000px;}
.fs2_c01227{font-size:27.720000px;}
.fs13_c01227{font-size:29.937798px;}
.fs0_c01227{font-size:33.660000px;}
.fsc_c01227{font-size:50.292000px;}
.fsf_c01227{font-size:52.074000px;}
.fs9_c01227{font-size:54.172998px;}
.fse_c01227{font-size:64.944000px;}
.fs19_c01227{font-size:66.528000px;}
.fsa_c01227{font-size:67.122198px;}
.fs11_c01227{font-size:67.320000px;}
.fs14_c01227{font-size:71.874000px;}
.fs16_c01227{font-size:72.072198px;}
.fsd_c01227{font-size:72.864000px;}
.fs8_c01227{font-size:73.260000px;}
.fs15_c01227{font-size:73.656198px;}
.fs1d_c01227{font-size:74.844000px;}
.fsb_c01227{font-size:75.438000px;}
.fs4_c01227{font-size:75.636198px;}
.fs1e_c01227{font-size:76.032198px;}
.fs17_c01227{font-size:76.230000px;}
.fs6_c01227{font-size:77.220000px;}
.fs3_c01227{font-size:81.576198px;}
.fs18_c01227{font-size:84.546198px;}
.fs5_c01227{font-size:85.536198px;}
.fs1c_c01227{font-size:85.734000px;}
.fs7_c01227{font-size:85.932198px;}
.fs10_c01227{font-size:90.288000px;}
.fs1b_c01227{font-size:91.476198px;}
.fs1a_c01227{font-size:104.544000px;}
.fs1f_c01227{font-size:122.760000px;}
.y0_c01227{bottom:0.000000px;}
.y24_c01227{bottom:48.382335px;}
.y23_c01227{bottom:62.281935px;}
.y1_c01227{bottom:76.500000px;}
.y22_c01227{bottom:94.352985px;}
.y25_c01227{bottom:132.129999px;}
.y21_c01227{bottom:157.440735px;}
.y20_c01227{bottom:189.516735px;}
.y1f_c01227{bottom:216.603135px;}
.y1e_c01227{bottom:253.307385px;}
.y2_c01227{bottom:272.552985px;}
.y1d_c01227{bottom:285.383385px;}
.y1c_c01227{bottom:348.466185px;}
.y1b_c01227{bottom:380.547135px;}
.y19_c01227{bottom:442.917135px;}
.y1a_c01227{bottom:475.705935px;}
.y18_c01227{bottom:476.057385px;}
.y17_c01227{bottom:489.249135px;}
.y16_c01227{bottom:499.584735px;}
.y15_c01227{bottom:512.410185px;}
.y14_c01227{bottom:539.140185px;}
.y13_c01227{bottom:571.928985px;}
.y10_c01227{bottom:603.292185px;}
.y11_c01227{bottom:603.653535px;}
.y12_c01227{bottom:604.361385px;}
.yf_c01227{bottom:611.137935px;}
.ye_c01227{bottom:666.379935px;}
.yd_c01227{bottom:698.094585px;}
.yc_c01227{bottom:760.820985px;}
.yb_c01227{bottom:793.253385px;}
.y8_c01227{bottom:823.908735px;}
.y9_c01227{bottom:824.260185px;}
.ya_c01227{bottom:825.334335px;}
.y26_c01227{bottom:871.309935px;}
.y7_c01227{bottom:888.412185px;}
.y6_c01227{bottom:920.493135px;}
.y5_c01227{bottom:1056.276585px;}
.y4_c01227{bottom:1075.170735px;}
.y3_c01227{bottom:1087.283385px;}
.h13_c01227{height:19.938573px;}
.h3_c01227{height:23.128875px;}
.h12_c01227{height:24.873750px;}
.h4_c01227{height:28.911094px;}
.h2_c01227{height:33.035449px;}
.hb_c01227{height:36.079217px;}
.hd_c01227{height:49.358848px;}
.hf_c01227{height:51.107783px;}
.h19_c01227{height:65.293594px;}
.h11_c01227{height:66.070898px;}
.h14_c01227{height:70.540400px;}
.h16_c01227{height:70.734921px;}
.he_c01227{height:71.512031px;}
.ha_c01227{height:71.900684px;}
.h15_c01227{height:72.289530px;}
.hc_c01227{height:74.038271px;}
.h6_c01227{height:74.232792px;}
.h1e_c01227{height:74.621444px;}
.h8_c01227{height:75.749502px;}
.h1d_c01227{height:78.059953px;}
.h17_c01227{height:79.505508px;}
.h5_c01227{height:80.062577px;}
.h18_c01227{height:82.977470px;}
.h7_c01227{height:83.949101px;}
.h1c_c01227{height:84.143232px;}
.h9_c01227{height:84.295794px;}
.h10_c01227{height:88.612734px;}
.h1b_c01227{height:95.406816px;}
.h1a_c01227{height:102.604219px;}
.h1f_c01227{height:120.482227px;}
.h1_c01227{height:1110.000000px;}
.h0_c01227{height:1263.000000px;}
.w1_c01227{width:775.500000px;}
.w0_c01227{width:892.500000px;}
.x0_c01227{left:0.000000px;}
.x1_c01227{left:58.500000px;}
.x2_c01227{left:72.915135px;}
.x5e_c01227{left:74.429835px;}
.x16_c01227{left:90.779685px;}
.x6_c01227{left:92.581485px;}
.x31_c01227{left:110.450985px;}
.x7_c01227{left:125.746485px;}
.x8_c01227{left:137.878935px;}
.x17_c01227{left:147.486885px;}
.x5f_c01227{left:156.580035px;}
.x9_c01227{left:172.895235px;}
.x32_c01227{left:180.047985px;}
.x3b_c01227{left:191.284485px;}
.xa_c01227{left:192.393285px;}
.x18_c01227{left:199.927185px;}
.x12_c01227{left:202.184385px;}
.x22_c01227{left:203.278335px;}
.x27_c01227{left:204.788085px;}
.x33_c01227{left:213.688185px;}
.x28_c01227{left:223.984185px;}
.x57_c01227{left:234.636585px;}
.x52_c01227{left:235.780035px;}
.xb_c01227{left:239.007435px;}
.x64_c01227{left:242.611035px;}
.x63_c01227{left:248.422335px;}
.x5d_c01227{left:255.837435px;}
.x34_c01227{left:257.144235px;}
.x23_c01227{left:258.871785px;}
.x5b_c01227{left:267.905535px;}
.x29_c01227{left:269.029185px;}
.x46_c01227{left:270.256785px;}
.x49_c01227{left:278.958885px;}
.xc_c01227{left:280.790385px;}
.x3c_c01227{left:282.329835px;}
.x47_c01227{left:291.106185px;}
.x19_c01227{left:292.521885px;}
.x3d_c01227{left:293.531685px;}
.x35_c01227{left:303.565335px;}
.x4a_c01227{left:304.580085px;}
.x2d_c01227{left:305.832435px;}
.x3e_c01227{left:314.098935px;}
.x37_c01227{left:315.341385px;}
.x13_c01227{left:324.553335px;}
.x58_c01227{left:335.953185px;}
.x53_c01227{left:346.853085px;}
.x1a_c01227{left:347.986635px;}
.x24_c01227{left:359.039985px;}
.x60_c01227{left:368.816235px;}
.x1b_c01227{left:380.433885px;}
.x14_c01227{left:383.200935px;}
.x25_c01227{left:391.101135px;}
.xd_c01227{left:392.150535px;}
.x4d_c01227{left:401.738685px;}
.x4_c01227{left:411.519885px;}
.x3f_c01227{left:414.277035px;}
.x4e_c01227{left:422.226735px;}
.x4b_c01227{left:424.424535px;}
.x54_c01227{left:425.602635px;}
.x2a_c01227{left:436.730235px;}
.x4f_c01227{left:437.997435px;}
.x2e_c01227{left:445.798635px;}
.x40_c01227{left:447.362835px;}
.x2f_c01227{left:457.916235px;}
.x15_c01227{left:470.786235px;}
.x41_c01227{left:480.374385px;}
.x1c_c01227{left:481.646535px;}
.x5c_c01227{left:489.927885px;}
.x26_c01227{left:491.680185px;}
.x59_c01227{left:501.387135px;}
.x55_c01227{left:503.357235px;}
.x1d_c01227{left:513.148335px;}
.xe_c01227{left:514.177935px;}
.x38_c01227{left:524.855085px;}
.x61_c01227{left:535.542135px;}
.x2b_c01227{left:548.634885px;}
.x39_c01227{left:556.926135px;}
.xf_c01227{left:558.331935px;}
.x42_c01227{left:567.865635px;}
.x50_c01227{left:588.715035px;}
.x2c_c01227{left:591.536535px;}
.x51_c01227{left:601.189035px;}
.x1e_c01227{left:603.807585px;}
.x43_c01227{left:611.222685px;}
.x10_c01227{left:612.935385px;}
.x56_c01227{left:623.934285px;}
.x44_c01227{left:626.592435px;}
.x45_c01227{left:632.522535px;}
.x62_c01227{left:634.027335px;}
.x1f_c01227{left:636.319185px;}
.x5_c01227{left:657.643785px;}
.x20_c01227{left:668.959485px;}
.x48_c01227{left:678.468435px;}
.x4c_c01227{left:679.517835px;}
.x11_c01227{left:712.306635px;}
.x3a_c01227{left:713.940135px;}
.x21_c01227{left:715.068735px;}
.x5a_c01227{left:718.236735px;}
.x36_c01227{left:735.289485px;}
.x3_c01227{left:736.581435px;}
.x30_c01227{left:738.601035px;}
.x65_c01227{left:747.630825px;}
.x66_c01227{left:771.374985px;}
@media print{
.v0_c01227{vertical-align:0.000000pt;}
.ls18_c01227{letter-spacing:-2.845926pt;}
.ls7_c01227{letter-spacing:-2.661126pt;}
.ls1a_c01227{letter-spacing:-2.365446pt;}
.ls4_c01227{letter-spacing:-2.353126pt;}
.ls16_c01227{letter-spacing:-2.291526pt;}
.lsb_c01227{letter-spacing:-2.279200pt;}
.ls6_c01227{letter-spacing:-0.309268pt;}
.ls2_c01227{letter-spacing:0.000000pt;}
.lse_c01227{letter-spacing:0.591643pt;}
.ls1_c01227{letter-spacing:0.965609pt;}
.ls1d_c01227{letter-spacing:1.149670pt;}
.ls1c_c01227{letter-spacing:1.270688pt;}
.ls0_c01227{letter-spacing:1.413104pt;}
.ls12_c01227{letter-spacing:2.314400pt;}
.ls13_c01227{letter-spacing:2.439782pt;}
.ls10_c01227{letter-spacing:3.072510pt;}
.ls15_c01227{letter-spacing:3.194400pt;}
.ls17_c01227{letter-spacing:3.203209pt;}
.ls11_c01227{letter-spacing:3.238400pt;}
.lsc_c01227{letter-spacing:3.256000pt;}
.lsf_c01227{letter-spacing:3.352800pt;}
.ls5_c01227{letter-spacing:3.361609pt;}
.ls1b_c01227{letter-spacing:3.379209pt;}
.ls9_c01227{letter-spacing:3.432000pt;}
.ls3_c01227{letter-spacing:3.625609pt;}
.lsa_c01227{letter-spacing:3.704633pt;}
.ls8_c01227{letter-spacing:3.801609pt;}
.ls19_c01227{letter-spacing:3.810400pt;}
.ls14_c01227{letter-spacing:26.611376pt;}
.lsd_c01227{letter-spacing:48.153776pt;}
.ws0_c01227{word-spacing:-17.693104pt;}
.ws1_c01227{word-spacing:0.000000pt;}
._3_c01227{margin-left:-27.075247pt;}
._2_c01227{margin-left:-15.634432pt;}
._1_c01227{margin-left:-13.208448pt;}
._5_c01227{margin-left:-8.471639pt;}
._6_c01227{width:0.912498pt;}
._4_c01227{width:6.043136pt;}
._7_c01227{width:25.766312pt;}
._0_c01227{width:71.785677pt;}
.fs1_c01227{font-size:19.712000pt;}
.fs12_c01227{font-size:22.528000pt;}
.fs2_c01227{font-size:24.640000pt;}
.fs13_c01227{font-size:26.611376pt;}
.fs0_c01227{font-size:29.920000pt;}
.fsc_c01227{font-size:44.704000pt;}
.fsf_c01227{font-size:46.288000pt;}
.fs9_c01227{font-size:48.153776pt;}
.fse_c01227{font-size:57.728000pt;}
.fs19_c01227{font-size:59.136000pt;}
.fsa_c01227{font-size:59.664176pt;}
.fs11_c01227{font-size:59.840000pt;}
.fs14_c01227{font-size:63.888000pt;}
.fs16_c01227{font-size:64.064176pt;}
.fsd_c01227{font-size:64.768000pt;}
.fs8_c01227{font-size:65.120000pt;}
.fs15_c01227{font-size:65.472176pt;}
.fs1d_c01227{font-size:66.528000pt;}
.fsb_c01227{font-size:67.056000pt;}
.fs4_c01227{font-size:67.232176pt;}
.fs1e_c01227{font-size:67.584176pt;}
.fs17_c01227{font-size:67.760000pt;}
.fs6_c01227{font-size:68.640000pt;}
.fs3_c01227{font-size:72.512176pt;}
.fs18_c01227{font-size:75.152176pt;}
.fs5_c01227{font-size:76.032176pt;}
.fs1c_c01227{font-size:76.208000pt;}
.fs7_c01227{font-size:76.384176pt;}
.fs10_c01227{font-size:80.256000pt;}
.fs1b_c01227{font-size:81.312176pt;}
.fs1a_c01227{font-size:92.928000pt;}
.fs1f_c01227{font-size:109.120000pt;}
.y0_c01227{bottom:0.000000pt;}
.y24_c01227{bottom:43.006520pt;}
.y23_c01227{bottom:55.361720pt;}
.y1_c01227{bottom:68.000000pt;}
.y22_c01227{bottom:83.869320pt;}
.y25_c01227{bottom:117.448888pt;}
.y21_c01227{bottom:139.947320pt;}
.y20_c01227{bottom:168.459320pt;}
.y1f_c01227{bottom:192.536120pt;}
.y1e_c01227{bottom:225.162120pt;}
.y2_c01227{bottom:242.269320pt;}
.y1d_c01227{bottom:253.674120pt;}
.y1c_c01227{bottom:309.747720pt;}
.y1b_c01227{bottom:338.264120pt;}
.y19_c01227{bottom:393.704120pt;}
.y1a_c01227{bottom:422.849720pt;}
.y18_c01227{bottom:423.162120pt;}
.y17_c01227{bottom:434.888120pt;}
.y16_c01227{bottom:444.075320pt;}
.y15_c01227{bottom:455.475720pt;}
.y14_c01227{bottom:479.235720pt;}
.y13_c01227{bottom:508.381320pt;}
.y10_c01227{bottom:536.259720pt;}
.y11_c01227{bottom:536.580920pt;}
.y12_c01227{bottom:537.210120pt;}
.yf_c01227{bottom:543.233720pt;}
.ye_c01227{bottom:592.337720pt;}
.yd_c01227{bottom:620.528520pt;}
.yc_c01227{bottom:676.285320pt;}
.yb_c01227{bottom:705.114120pt;}
.y8_c01227{bottom:732.363320pt;}
.y9_c01227{bottom:732.675720pt;}
.ya_c01227{bottom:733.630520pt;}
.y26_c01227{bottom:774.497720pt;}
.y7_c01227{bottom:789.699720pt;}
.y6_c01227{bottom:818.216120pt;}
.y5_c01227{bottom:938.912520pt;}
.y4_c01227{bottom:955.707320pt;}
.y3_c01227{bottom:966.474120pt;}
.h13_c01227{height:17.723176pt;}
.h3_c01227{height:20.559000pt;}
.h12_c01227{height:22.110000pt;}
.h4_c01227{height:25.698750pt;}
.h2_c01227{height:29.364844pt;}
.hb_c01227{height:32.070415pt;}
.hd_c01227{height:43.874531pt;}
.hf_c01227{height:45.429141pt;}
.h19_c01227{height:58.038750pt;}
.h11_c01227{height:58.729688pt;}
.h14_c01227{height:62.702578pt;}
.h16_c01227{height:62.875485pt;}
.he_c01227{height:63.566250pt;}
.ha_c01227{height:63.911719pt;}
.h15_c01227{height:64.257360pt;}
.hc_c01227{height:65.811797pt;}
.h6_c01227{height:65.984704pt;}
.h1e_c01227{height:66.330173pt;}
.h8_c01227{height:67.332891pt;}
.h1d_c01227{height:69.386625pt;}
.h17_c01227{height:70.671563pt;}
.h5_c01227{height:71.166735pt;}
.h18_c01227{height:73.757751pt;}
.h7_c01227{height:74.621423pt;}
.h1c_c01227{height:74.793984pt;}
.h9_c01227{height:74.929595pt;}
.h10_c01227{height:78.766875pt;}
.h1b_c01227{height:84.806059pt;}
.h1a_c01227{height:91.203750pt;}
.h1f_c01227{height:107.095313pt;}
.h1_c01227{height:986.666667pt;}
.h0_c01227{height:1122.666667pt;}
.w1_c01227{width:689.333333pt;}
.w0_c01227{width:793.333333pt;}
.x0_c01227{left:0.000000pt;}
.x1_c01227{left:52.000000pt;}
.x2_c01227{left:64.813453pt;}
.x5e_c01227{left:66.159853pt;}
.x16_c01227{left:80.693053pt;}
.x6_c01227{left:82.294653pt;}
.x31_c01227{left:98.178653pt;}
.x7_c01227{left:111.774653pt;}
.x8_c01227{left:122.559053pt;}
.x17_c01227{left:131.099453pt;}
.x5f_c01227{left:139.182253pt;}
.x9_c01227{left:153.684653pt;}
.x32_c01227{left:160.042653pt;}
.x3b_c01227{left:170.030653pt;}
.xa_c01227{left:171.016253pt;}
.x18_c01227{left:177.713053pt;}
.x12_c01227{left:179.719453pt;}
.x22_c01227{left:180.691853pt;}
.x27_c01227{left:182.033853pt;}
.x33_c01227{left:189.945053pt;}
.x28_c01227{left:199.097053pt;}
.x57_c01227{left:208.565853pt;}
.x52_c01227{left:209.582253pt;}
.xb_c01227{left:212.451053pt;}
.x64_c01227{left:215.654253pt;}
.x63_c01227{left:220.819853pt;}
.x5d_c01227{left:227.411053pt;}
.x34_c01227{left:228.572653pt;}
.x23_c01227{left:230.108253pt;}
.x5b_c01227{left:238.138253pt;}
.x29_c01227{left:239.137053pt;}
.x46_c01227{left:240.228253pt;}
.x49_c01227{left:247.963453pt;}
.xc_c01227{left:249.591453pt;}
.x3c_c01227{left:250.959853pt;}
.x47_c01227{left:258.761053pt;}
.x19_c01227{left:260.019453pt;}
.x3d_c01227{left:260.917053pt;}
.x35_c01227{left:269.835853pt;}
.x4a_c01227{left:270.737853pt;}
.x2d_c01227{left:271.851053pt;}
.x3e_c01227{left:279.199053pt;}
.x37_c01227{left:280.303453pt;}
.x13_c01227{left:288.491853pt;}
.x58_c01227{left:298.625053pt;}
.x53_c01227{left:308.313853pt;}
.x1a_c01227{left:309.321453pt;}
.x24_c01227{left:319.146653pt;}
.x60_c01227{left:327.836653pt;}
.x1b_c01227{left:338.163453pt;}
.x14_c01227{left:340.623053pt;}
.x25_c01227{left:347.645453pt;}
.xd_c01227{left:348.578253pt;}
.x4d_c01227{left:357.101053pt;}
.x4_c01227{left:365.795453pt;}
.x3f_c01227{left:368.246253pt;}
.x4e_c01227{left:375.312653pt;}
.x4b_c01227{left:377.266253pt;}
.x54_c01227{left:378.313453pt;}
.x2a_c01227{left:388.204653pt;}
.x4f_c01227{left:389.331053pt;}
.x2e_c01227{left:396.265453pt;}
.x40_c01227{left:397.655853pt;}
.x2f_c01227{left:407.036653pt;}
.x15_c01227{left:418.476653pt;}
.x41_c01227{left:426.999453pt;}
.x1c_c01227{left:428.130253pt;}
.x5c_c01227{left:435.491453pt;}
.x26_c01227{left:437.049053pt;}
.x59_c01227{left:445.677453pt;}
.x55_c01227{left:447.428653pt;}
.x1d_c01227{left:456.131853pt;}
.xe_c01227{left:457.047053pt;}
.x38_c01227{left:466.537853pt;}
.x61_c01227{left:476.037453pt;}
.x2b_c01227{left:487.675453pt;}
.x39_c01227{left:495.045453pt;}
.xf_c01227{left:496.295053pt;}
.x42_c01227{left:504.769453pt;}
.x50_c01227{left:523.302253pt;}
.x2c_c01227{left:525.810253pt;}
.x51_c01227{left:534.390253pt;}
.x1e_c01227{left:536.717853pt;}
.x43_c01227{left:543.309053pt;}
.x10_c01227{left:544.831453pt;}
.x56_c01227{left:554.608253pt;}
.x44_c01227{left:556.971053pt;}
.x45_c01227{left:562.242253pt;}
.x62_c01227{left:563.579853pt;}
.x1f_c01227{left:565.617053pt;}
.x5_c01227{left:584.572253pt;}
.x20_c01227{left:594.630653pt;}
.x48_c01227{left:603.083053pt;}
.x4c_c01227{left:604.015853pt;}
.x11_c01227{left:633.161453pt;}
.x3a_c01227{left:634.613453pt;}
.x21_c01227{left:635.616653pt;}
.x5a_c01227{left:638.432653pt;}
.x36_c01227{left:653.590653pt;}
.x3_c01227{left:654.739053pt;}
.x30_c01227{left:656.534253pt;}
.x65_c01227{left:664.560733pt;}
.x66_c01227{left:685.666653pt;}
}





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

.ir_c01228:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01228{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01228;src:url('chunks/assets/font_c3caab2e8912d95736c98d38.woff2')format("woff");}.ff1_c01228{font-family:ff1_c01228;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01228;src:url('chunks/assets/font_228ad3cb95b5813f8593556b.woff2')format("woff");}.ff2_c01228{font-family:ff2_c01228;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01228;src:url('chunks/assets/font_27cc0938d4df81cf75dbc1e8.woff2')format("woff");}.ff3_c01228{font-family:ff3_c01228;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01228;src:url('chunks/assets/font_9da3e571b2e779d6835e3f7a.woff2')format("woff");}.ff4_c01228{font-family:ff4_c01228;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01228;src:url('chunks/assets/font_619546a9b94ad6f7381937d7.woff2')format("woff");}.ff5_c01228{font-family:ff5_c01228;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3b_c01228{transform:matrix(0.173077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173077,0.000000,0.000000,0.250000,0,0);}
.m3c_c01228{transform:matrix(0.185898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185898,0.000000,0.000000,0.250000,0,0);}
.m26_c01228{transform:matrix(0.186476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186476,0.000000,0.000000,0.250000,0,0);}
.m3a_c01228{transform:matrix(0.192307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192307,0.000000,0.000000,0.250000,0,0);}
.m6d_c01228{transform:matrix(0.197207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197207,0.000000,0.000000,0.250000,0,0);}
.m44_c01228{transform:matrix(0.199398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199398,0.000000,0.000000,0.250000,0,0);}
.m53_c01228{transform:matrix(0.203780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203780,0.000000,0.000000,0.250000,0,0);}
.m74_c01228{transform:matrix(0.205964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205964,0.000000,0.000000,0.250000,0,0);}
.m54_c01228{transform:matrix(0.210677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210677,0.000000,0.000000,0.250000,0,0);}
.m6f_c01228{transform:matrix(0.215214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215214,0.000000,0.000000,0.250000,0,0);}
.md_c01228{transform:matrix(0.224809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224809,0.000000,0.000000,0.250000,0,0);}
.m6e_c01228{transform:matrix(0.227713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227713,0.000000,0.000000,0.250000,0,0);}
.m15_c01228{transform:matrix(0.234566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234566,0.000000,0.000000,0.250000,0,0);}
.m35_c01228{transform:matrix(0.244727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244727,0.000000,0.000000,0.250000,0,0);}
.m0_c01228{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m75_c01228{transform:matrix(0.251215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251215,0.000000,0.000000,0.250000,0,0);}
.m30_c01228{transform:matrix(0.260978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260978,0.000000,0.000000,0.250000,0,0);}
.m7a_c01228{transform:matrix(0.267616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267616,0.000000,0.000000,0.250000,0,0);}
.m72_c01228{transform:matrix(0.267741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267741,0.000000,0.000000,0.250000,0,0);}
.m5a_c01228{transform:matrix(0.269009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269009,0.000000,0.000000,0.250000,0,0);}
.m5f_c01228{transform:matrix(0.269412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269412,0.000000,0.000000,0.250000,0,0);}
.m33_c01228{transform:matrix(0.270806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270806,0.000000,0.000000,0.250000,0,0);}
.m5_c01228{transform:matrix(0.273900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273900,0.000000,0.000000,0.250000,0,0);}
.m81_c01228{transform:matrix(0.274786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274786,0.000000,0.000000,0.250000,0,0);}
.m37_c01228{transform:matrix(0.275370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275370,0.000000,0.000000,0.250000,0,0);}
.m65_c01228{transform:matrix(0.275535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275535,0.000000,0.000000,0.250000,0,0);}
.m1c_c01228{transform:matrix(0.278792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278792,0.000000,0.000000,0.250000,0,0);}
.m76_c01228{transform:matrix(0.281420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281420,0.000000,0.000000,0.250000,0,0);}
.m2d_c01228{transform:matrix(0.281872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281872,0.000000,0.000000,0.250000,0,0);}
.m12_c01228{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);}
.m14_c01228{transform:matrix(0.282481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282481,0.000000,0.000000,0.250000,0,0);}
.m29_c01228{transform:matrix(0.283683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283683,0.000000,0.000000,0.250000,0,0);}
.m66_c01228{transform:matrix(0.284152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284152,0.000000,0.000000,0.250000,0,0);}
.m48_c01228{transform:matrix(0.284419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284419,0.000000,0.000000,0.250000,0,0);}
.m4_c01228{transform:matrix(0.284723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284723,0.000000,0.000000,0.250000,0,0);}
.m7c_c01228{transform:matrix(0.285225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285225,0.000000,0.000000,0.250000,0,0);}
.m55_c01228{transform:matrix(0.287087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287087,0.000000,0.000000,0.250000,0,0);}
.m24_c01228{transform:matrix(0.287354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287354,0.000000,0.000000,0.250000,0,0);}
.m64_c01228{transform:matrix(0.287391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287391,0.000000,0.000000,0.250000,0,0);}
.m27_c01228{transform:matrix(0.288775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288775,0.000000,0.000000,0.250000,0,0);}
.m85_c01228{transform:matrix(0.289345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289345,0.000000,0.000000,0.250000,0,0);}
.m36_c01228{transform:matrix(0.290630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290630,0.000000,0.000000,0.250000,0,0);}
.m22_c01228{transform:matrix(0.291137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291137,0.000000,0.000000,0.250000,0,0);}
.m1b_c01228{transform:matrix(0.291202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291202,0.000000,0.000000,0.250000,0,0);}
.m46_c01228{transform:matrix(0.291218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291218,0.000000,0.000000,0.250000,0,0);}
.m2c_c01228{transform:matrix(0.291345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291345,0.000000,0.000000,0.250000,0,0);}
.m42_c01228{transform:matrix(0.291368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291368,0.000000,0.000000,0.250000,0,0);}
.m32_c01228{transform:matrix(0.291691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291691,0.000000,0.000000,0.250000,0,0);}
.m1f_c01228{transform:matrix(0.291753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291753,0.000000,0.000000,0.250000,0,0);}
.m2b_c01228{transform:matrix(0.291762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291762,0.000000,0.000000,0.250000,0,0);}
.m6a_c01228{transform:matrix(0.291832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291832,0.000000,0.000000,0.250000,0,0);}
.m80_c01228{transform:matrix(0.292576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292576,0.000000,0.000000,0.250000,0,0);}
.m4b_c01228{transform:matrix(0.292818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292818,0.000000,0.000000,0.250000,0,0);}
.m23_c01228{transform:matrix(0.293073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293073,0.000000,0.000000,0.250000,0,0);}
.mc_c01228{transform:matrix(0.293391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293391,0.000000,0.000000,0.250000,0,0);}
.m45_c01228{transform:matrix(0.293607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293607,0.000000,0.000000,0.250000,0,0);}
.m39_c01228{transform:matrix(0.294112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294112,0.000000,0.000000,0.250000,0,0);}
.m1_c01228{transform:matrix(0.294813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294813,0.000000,0.000000,0.250000,0,0);}
.m3d_c01228{transform:matrix(0.294837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294837,0.000000,0.000000,0.250000,0,0);}
.m69_c01228{transform:matrix(0.295414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295414,0.000000,0.000000,0.250000,0,0);}
.m20_c01228{transform:matrix(0.297271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297271,0.000000,0.000000,0.250000,0,0);}
.m52_c01228{transform:matrix(0.297433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297433,0.000000,0.000000,0.250000,0,0);}
.m38_c01228{transform:matrix(0.298368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298368,0.000000,0.000000,0.250000,0,0);}
.m49_c01228{transform:matrix(0.298591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298591,0.000000,0.000000,0.250000,0,0);}
.m7e_c01228{transform:matrix(0.300816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300816,0.000000,0.000000,0.250000,0,0);}
.m51_c01228{transform:matrix(0.301311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301311,0.000000,0.000000,0.250000,0,0);}
.m34_c01228{transform:matrix(0.302397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302397,0.000000,0.000000,0.250000,0,0);}
.m61_c01228{transform:matrix(0.302855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302855,0.000000,0.000000,0.250000,0,0);}
.m4f_c01228{transform:matrix(0.303300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303300,0.000000,0.000000,0.250000,0,0);}
.m5d_c01228{transform:matrix(0.304182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304182,0.000000,0.000000,0.250000,0,0);}
.m78_c01228{transform:matrix(0.304928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304928,0.000000,0.000000,0.250000,0,0);}
.m7b_c01228{transform:matrix(0.305005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305005,0.000000,0.000000,0.250000,0,0);}
.m63_c01228{transform:matrix(0.305116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305116,0.000000,0.000000,0.250000,0,0);}
.m13_c01228{transform:matrix(0.307522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307522,0.000000,0.000000,0.250000,0,0);}
.m62_c01228{transform:matrix(0.307624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307624,0.000000,0.000000,0.250000,0,0);}
.m79_c01228{transform:matrix(0.309233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309233,0.000000,0.000000,0.250000,0,0);}
.m5c_c01228{transform:matrix(0.310795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310795,0.000000,0.000000,0.250000,0,0);}
.m7d_c01228{transform:matrix(0.311259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311259,0.000000,0.000000,0.250000,0,0);}
.m3_c01228{transform:matrix(0.312470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312470,0.000000,0.000000,0.250000,0,0);}
.m6c_c01228{transform:matrix(0.312646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312646,0.000000,0.000000,0.250000,0,0);}
.m73_c01228{transform:matrix(0.312864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312864,0.000000,0.000000,0.250000,0,0);}
.m17_c01228{transform:matrix(0.313190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313190,0.000000,0.000000,0.250000,0,0);}
.m7f_c01228{transform:matrix(0.313452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313452,0.000000,0.000000,0.250000,0,0);}
.ma_c01228{transform:matrix(0.313539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313539,0.000000,0.000000,0.250000,0,0);}
.m5b_c01228{transform:matrix(0.314122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314122,0.000000,0.000000,0.250000,0,0);}
.m2a_c01228{transform:matrix(0.314272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314272,0.000000,0.000000,0.250000,0,0);}
.m4d_c01228{transform:matrix(0.314700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314700,0.000000,0.000000,0.250000,0,0);}
.m2f_c01228{transform:matrix(0.315151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315151,0.000000,0.000000,0.250000,0,0);}
.m50_c01228{transform:matrix(0.315427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315427,0.000000,0.000000,0.250000,0,0);}
.mb_c01228{transform:matrix(0.317689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317689,0.000000,0.000000,0.250000,0,0);}
.m68_c01228{transform:matrix(0.319335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319335,0.000000,0.000000,0.250000,0,0);}
.m25_c01228{transform:matrix(0.319513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319513,0.000000,0.000000,0.250000,0,0);}
.m11_c01228{transform:matrix(0.320650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320650,0.000000,0.000000,0.250000,0,0);}
.m84_c01228{transform:matrix(0.320898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320898,0.000000,0.000000,0.250000,0,0);}
.m4c_c01228{transform:matrix(0.321638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321638,0.000000,0.000000,0.250000,0,0);}
.m57_c01228{transform:matrix(0.321839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321839,0.000000,0.000000,0.250000,0,0);}
.m10_c01228{transform:matrix(0.322097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322097,0.000000,0.000000,0.250000,0,0);}
.m40_c01228{transform:matrix(0.322343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322343,0.000000,0.000000,0.250000,0,0);}
.m3f_c01228{transform:matrix(0.322587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322587,0.000000,0.000000,0.250000,0,0);}
.m2_c01228{transform:matrix(0.323340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323340,0.000000,0.000000,0.250000,0,0);}
.m60_c01228{transform:matrix(0.324190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324190,0.000000,0.000000,0.250000,0,0);}
.m70_c01228{transform:matrix(0.324387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324387,0.000000,0.000000,0.250000,0,0);}
.m4a_c01228{transform:matrix(0.325628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325628,0.000000,0.000000,0.250000,0,0);}
.m47_c01228{transform:matrix(0.325863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325863,0.000000,0.000000,0.250000,0,0);}
.mf_c01228{transform:matrix(0.326969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326969,0.000000,0.000000,0.250000,0,0);}
.m7_c01228{transform:matrix(0.326999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326999,0.000000,0.000000,0.250000,0,0);}
.m58_c01228{transform:matrix(0.327825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327825,0.000000,0.000000,0.250000,0,0);}
.m19_c01228{transform:matrix(0.331522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331522,0.000000,0.000000,0.250000,0,0);}
.m6_c01228{transform:matrix(0.334298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334298,0.000000,0.000000,0.250000,0,0);}
.m1e_c01228{transform:matrix(0.336748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336748,0.000000,0.000000,0.250000,0,0);}
.m41_c01228{transform:matrix(0.337313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337313,0.000000,0.000000,0.250000,0,0);}
.m77_c01228{transform:matrix(0.337645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337645,0.000000,0.000000,0.250000,0,0);}
.m9_c01228{transform:matrix(0.338326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338326,0.000000,0.000000,0.250000,0,0);}
.m83_c01228{transform:matrix(0.338499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338499,0.000000,0.000000,0.250000,0,0);}
.m6b_c01228{transform:matrix(0.339319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339319,0.000000,0.000000,0.250000,0,0);}
.m31_c01228{transform:matrix(0.339355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339355,0.000000,0.000000,0.250000,0,0);}
.m82_c01228{transform:matrix(0.340154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340154,0.000000,0.000000,0.250000,0,0);}
.m59_c01228{transform:matrix(0.341613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341613,0.000000,0.000000,0.250000,0,0);}
.m71_c01228{transform:matrix(0.341720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341720,0.000000,0.000000,0.250000,0,0);}
.m2e_c01228{transform:matrix(0.346409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346409,0.000000,0.000000,0.250000,0,0);}
.m3e_c01228{transform:matrix(0.350549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350549,0.000000,0.000000,0.250000,0,0);}
.m5e_c01228{transform:matrix(0.352824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352824,0.000000,0.000000,0.250000,0,0);}
.m1a_c01228{transform:matrix(0.355554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355554,0.000000,0.000000,0.250000,0,0);}
.m28_c01228{transform:matrix(0.358575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358575,0.000000,0.000000,0.250000,0,0);}
.m16_c01228{transform:matrix(0.359607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359607,0.000000,0.000000,0.250000,0,0);}
.m56_c01228{transform:matrix(0.362463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362463,0.000000,0.000000,0.250000,0,0);}
.m1d_c01228{transform:matrix(0.366853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366853,0.000000,0.000000,0.250000,0,0);}
.m21_c01228{transform:matrix(0.379918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379918,0.000000,0.000000,0.250000,0,0);}
.me_c01228{transform:matrix(0.381380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381380,0.000000,0.000000,0.250000,0,0);}
.m4e_c01228{transform:matrix(0.395355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395355,0.000000,0.000000,0.250000,0,0);}
.m18_c01228{transform:matrix(0.401732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401732,0.000000,0.000000,0.250000,0,0);}
.m67_c01228{transform:matrix(0.408109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408109,0.000000,0.000000,0.250000,0,0);}
.m8_c01228{transform:matrix(0.418760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418760,0.000000,0.000000,0.250000,0,0);}
.m43_c01228{transform:matrix(0.452585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452585,0.000000,0.000000,0.250000,0,0);}
.v0_c01228{vertical-align:0.000000px;}
.ls4_c01228{letter-spacing:-2.591827px;}
.ls9_c01228{letter-spacing:-2.176020px;}
.ls8_c01228{letter-spacing:-1.992004px;}
.ls6_c01228{letter-spacing:-1.866115px;}
.ls2_c01228{letter-spacing:-1.399587px;}
.lse_c01228{letter-spacing:-0.984894px;}
.ls0_c01228{letter-spacing:0.000000px;}
.ls3_c01228{letter-spacing:2.999114px;}
.ls10_c01228{letter-spacing:3.405610px;}
.ls1_c01228{letter-spacing:3.702610px;}
.lsb_c01228{letter-spacing:3.742200px;}
.ls5_c01228{letter-spacing:3.801610px;}
.lsa_c01228{letter-spacing:3.880810px;}
.ls7_c01228{letter-spacing:3.920400px;}
.lsf_c01228{letter-spacing:4.217400px;}
.lsc_c01228{letter-spacing:4.425310px;}
.lsd_c01228{letter-spacing:55.598598px;}
.sc__c01228{text-shadow:none;}
.sc0_c01228{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01228{-webkit-text-stroke:0px transparent;}
.sc0_c01228{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01228{word-spacing:0.000000px;}
._2_c01228{margin-left:-8.862266px;}
._0_c01228{width:2.221491px;}
._4_c01228{width:8.219849px;}
._1_c01228{width:42.811664px;}
._3_c01228{width:72.127371px;}
.fc0_c01228{color:transparent;}
.fs12_c01228{font-size:22.176000px;}
.fs0_c01228{font-size:22.374000px;}
.fs2_c01228{font-size:27.720000px;}
.fs5_c01228{font-size:33.660000px;}
.fs3_c01228{font-size:39.600000px;}
.fsd_c01228{font-size:45.144000px;}
.fsf_c01228{font-size:49.896198px;}
.fsc_c01228{font-size:55.598598px;}
.fs11_c01228{font-size:60.192000px;}
.fs8_c01228{font-size:62.172000px;}
.fs7_c01228{font-size:68.112198px;}
.fs1_c01228{font-size:74.052198px;}
.fsa_c01228{font-size:74.844000px;}
.fs4_c01228{font-size:76.032198px;}
.fs9_c01228{font-size:77.616198px;}
.fs6_c01228{font-size:78.408000px;}
.fse_c01228{font-size:84.348000px;}
.fsb_c01228{font-size:88.506198px;}
.fs10_c01228{font-size:96.822198px;}
.y0_c01228{bottom:0.000000px;}
.y26_c01228{bottom:23.790735px;}
.y25_c01228{bottom:59.425785px;}
.y1_c01228{bottom:76.500000px;}
.y27_c01228{bottom:84.378735px;}
.y24_c01228{bottom:95.783535px;}
.y23_c01228{bottom:124.295535px;}
.y22_c01228{bottom:188.091135px;}
.y21_c01228{bottom:220.167135px;}
.y20_c01228{bottom:252.238185px;}
.y1f_c01228{bottom:284.314185px;}
.y1e_c01228{bottom:336.353535px;}
.y1d_c01228{bottom:341.699535px;}
.y1b_c01228{bottom:346.684185px;}
.y1c_c01228{bottom:348.109785px;}
.y1a_c01228{bottom:379.477935px;}
.y19_c01228{bottom:411.553935px;}
.y18_c01228{bottom:449.683785px;}
.y17_c01228{bottom:467.503785px;}
.y16_c01228{bottom:474.636735px;}
.y15_c01228{bottom:506.707785px;}
.y14_c01228{bottom:523.107135px;}
.y13_c01228{bottom:535.224735px;}
.y12_c01228{bottom:545.560335px;}
.y11_c01228{bottom:568.364985px;}
.y10_c01228{bottom:601.510185px;}
.yf_c01228{bottom:633.234735px;}
.ye_c01228{bottom:696.312585px;}
.yd_c01228{bottom:728.393535px;}
.y9_c01228{bottom:760.464585px;}
.yc_c01228{bottom:760.825935px;}
.yb_c01228{bottom:775.433385px;}
.ya_c01228{bottom:777.576735px;}
.y8_c01228{bottom:823.903785px;}
.y7_c01228{bottom:838.872585px;}
.y6_c01228{bottom:886.273785px;}
.y5_c01228{bottom:918.711135px;}
.y4_c01228{bottom:1043.802585px;}
.y3_c01228{bottom:1056.276585px;}
.y2_c01228{bottom:1092.634335px;}
.h2_c01228{height:21.958857px;}
.h14_c01228{height:23.128875px;}
.h4_c01228{height:28.911094px;}
.h7_c01228{height:33.035449px;}
.hd_c01228{height:37.028666px;}
.h5_c01228{height:41.301563px;}
.he_c01228{height:47.083781px;}
.h10_c01228{height:52.040175px;}
.h13_c01228{height:62.778375px;}
.h9_c01228{height:64.843453px;}
.h12_c01228{height:71.038894px;}
.h3_c01228{height:72.678183px;}
.hb_c01228{height:73.455293px;}
.h6_c01228{height:74.621444px;}
.ha_c01228{height:76.176054px;}
.h8_c01228{height:76.953164px;}
.hf_c01228{height:82.741764px;}
.hc_c01228{height:86.863993px;}
.h11_c01228{height:95.025692px;}
.h1_c01228{height:1110.000000px;}
.h0_c01228{height:1263.000000px;}
.w1_c01228{width:775.500000px;}
.w0_c01228{width:892.500000px;}
.x0_c01228{left:0.000000px;}
.x1_c01228{left:58.500000px;}
.x2_c01228{left:74.028885px;}
.x45_c01228{left:91.863735px;}
.x1c_c01228{left:92.918085px;}
.x5_c01228{left:93.987285px;}
.x3c_c01228{left:137.710635px;}
.x6_c01228{left:159.797535px;}
.x52_c01228{left:170.301435px;}
.x3d_c01228{left:171.326085px;}
.x11_c01228{left:193.333785px;}
.x28_c01228{left:203.387235px;}
.x7_c01228{left:204.421785px;}
.x43_c01228{left:205.431585px;}
.x55_c01228{left:216.445335px;}
.x1d_c01228{left:226.850235px;}
.x12_c01228{left:237.443235px;}
.x33_c01228{left:238.527285px;}
.x8_c01228{left:239.893485px;}
.x29_c01228{left:246.877935px;}
.x3e_c01228{left:271.464585px;}
.x56_c01228{left:280.369635px;}
.x44_c01228{left:282.889185px;}
.xf_c01228{left:293.254485px;}
.x13_c01228{left:305.941335px;}
.x38_c01228{left:315.638385px;}
.x2f_c01228{left:316.955085px;}
.x14_c01228{left:326.765985px;}
.x9_c01228{left:328.033185px;}
.x4e_c01228{left:337.596585px;}
.x4a_c01228{left:338.725185px;}
.x25_c01228{left:349.768635px;}
.xa_c01228{left:359.911185px;}
.x49_c01228{left:361.089285px;}
.x4f_c01228{left:371.454585px;}
.x1e_c01228{left:372.598035px;}
.x26_c01228{left:381.329835px;}
.x30_c01228{left:383.037585px;}
.x1f_c01228{left:393.546435px;}
.x53_c01228{left:395.858085px;}
.x57_c01228{left:402.332685px;}
.x15_c01228{left:404.713635px;}
.x2a_c01228{left:415.163085px;}
.x54_c01228{left:425.706585px;}
.x20_c01228{left:427.741035px;}
.x58_c01228{left:436.160985px;}
.x2b_c01228{left:439.645785px;}
.x31_c01228{left:447.229185px;}
.xb_c01228{left:449.912085px;}
.x16_c01228{left:451.600035px;}
.x2c_c01228{left:459.381435px;}
.x3f_c01228{left:461.282235px;}
.x4b_c01228{left:470.791185px;}
.x17_c01228{left:471.998985px;}
.x46_c01228{left:482.294985px;}
.x59_c01228{left:491.749485px;}
.x50_c01228{left:494.026485px;}
.x2d_c01228{left:504.243285px;}
.x21_c01228{left:515.821335px;}
.x5a_c01228{left:524.850135px;}
.x27_c01228{left:526.854885px;}
.x4c_c01228{left:527.864685px;}
.x18_c01228{left:535.977735px;}
.x41_c01228{left:537.893385px;}
.x51_c01228{left:547.303335px;}
.x19_c01228{left:548.377485px;}
.x34_c01228{left:549.916935px;}
.x35_c01228{left:560.252535px;}
.x47_c01228{left:570.197085px;}
.x42_c01228{left:573.355185px;}
.xc_c01228{left:582.611685px;}
.x22_c01228{left:593.278935px;}
.x5b_c01228{left:600.837585px;}
.x23_c01228{left:603.693735px;}
.x32_c01228{left:613.603635px;}
.xd_c01228{left:615.400485px;}
.x39_c01228{left:625.780635px;}
.x2e_c01228{left:636.611235px;}
.x36_c01228{left:638.056635px;}
.x4_c01228{left:647.813085px;}
.x40_c01228{left:658.574385px;}
.x1a_c01228{left:670.355385px;}
.x37_c01228{left:680.260335px;}
.x3_c01228{left:682.230435px;}
.x3a_c01228{left:693.090735px;}
.xe_c01228{left:703.406535px;}
.x24_c01228{left:704.708385px;}
.x3b_c01228{left:708.945585px;}
.x10_c01228{left:710.024685px;}
.x4d_c01228{left:712.039335px;}
.x1b_c01228{left:717.494235px;}
.x48_c01228{left:750.980985px;}
.x5c_c01228{left:764.737035px;}
@media print{
.v0_c01228{vertical-align:0.000000pt;}
.ls4_c01228{letter-spacing:-2.303846pt;}
.ls9_c01228{letter-spacing:-1.934240pt;}
.ls8_c01228{letter-spacing:-1.770670pt;}
.ls6_c01228{letter-spacing:-1.658769pt;}
.ls2_c01228{letter-spacing:-1.244077pt;}
.lse_c01228{letter-spacing:-0.875462pt;}
.ls0_c01228{letter-spacing:0.000000pt;}
.ls3_c01228{letter-spacing:2.665879pt;}
.ls10_c01228{letter-spacing:3.027209pt;}
.ls1_c01228{letter-spacing:3.291209pt;}
.lsb_c01228{letter-spacing:3.326400pt;}
.ls5_c01228{letter-spacing:3.379209pt;}
.lsa_c01228{letter-spacing:3.449609pt;}
.ls7_c01228{letter-spacing:3.484800pt;}
.lsf_c01228{letter-spacing:3.748800pt;}
.lsc_c01228{letter-spacing:3.933609pt;}
.lsd_c01228{letter-spacing:49.420976pt;}
.ws0_c01228{word-spacing:0.000000pt;}
._2_c01228{margin-left:-7.877569pt;}
._0_c01228{width:1.974658pt;}
._4_c01228{width:7.306532pt;}
._1_c01228{width:38.054812pt;}
._3_c01228{width:64.113218pt;}
.fs12_c01228{font-size:19.712000pt;}
.fs0_c01228{font-size:19.888000pt;}
.fs2_c01228{font-size:24.640000pt;}
.fs5_c01228{font-size:29.920000pt;}
.fs3_c01228{font-size:35.200000pt;}
.fsd_c01228{font-size:40.128000pt;}
.fsf_c01228{font-size:44.352176pt;}
.fsc_c01228{font-size:49.420976pt;}
.fs11_c01228{font-size:53.504000pt;}
.fs8_c01228{font-size:55.264000pt;}
.fs7_c01228{font-size:60.544176pt;}
.fs1_c01228{font-size:65.824176pt;}
.fsa_c01228{font-size:66.528000pt;}
.fs4_c01228{font-size:67.584176pt;}
.fs9_c01228{font-size:68.992176pt;}
.fs6_c01228{font-size:69.696000pt;}
.fse_c01228{font-size:74.976000pt;}
.fsb_c01228{font-size:78.672176pt;}
.fs10_c01228{font-size:86.064176pt;}
.y0_c01228{bottom:0.000000pt;}
.y26_c01228{bottom:21.147320pt;}
.y25_c01228{bottom:52.822920pt;}
.y1_c01228{bottom:68.000000pt;}
.y27_c01228{bottom:75.003320pt;}
.y24_c01228{bottom:85.140920pt;}
.y23_c01228{bottom:110.484920pt;}
.y22_c01228{bottom:167.192120pt;}
.y21_c01228{bottom:195.704120pt;}
.y20_c01228{bottom:224.211720pt;}
.y1f_c01228{bottom:252.723720pt;}
.y1e_c01228{bottom:298.980920pt;}
.y1d_c01228{bottom:303.732920pt;}
.y1b_c01228{bottom:308.163720pt;}
.y1c_c01228{bottom:309.430920pt;}
.y1a_c01228{bottom:337.313720pt;}
.y19_c01228{bottom:365.825720pt;}
.y18_c01228{bottom:399.718920pt;}
.y17_c01228{bottom:415.558920pt;}
.y16_c01228{bottom:421.899320pt;}
.y15_c01228{bottom:450.406920pt;}
.y14_c01228{bottom:464.984120pt;}
.y13_c01228{bottom:475.755320pt;}
.y12_c01228{bottom:484.942520pt;}
.y11_c01228{bottom:505.213320pt;}
.y10_c01228{bottom:534.675720pt;}
.yf_c01228{bottom:562.875320pt;}
.ye_c01228{bottom:618.944520pt;}
.yd_c01228{bottom:647.460920pt;}
.y9_c01228{bottom:675.968520pt;}
.yc_c01228{bottom:676.289720pt;}
.yb_c01228{bottom:689.274120pt;}
.ya_c01228{bottom:691.179320pt;}
.y8_c01228{bottom:732.358920pt;}
.y7_c01228{bottom:745.664520pt;}
.y6_c01228{bottom:787.798920pt;}
.y5_c01228{bottom:816.632120pt;}
.y4_c01228{bottom:927.824520pt;}
.y3_c01228{bottom:938.912520pt;}
.y2_c01228{bottom:971.230520pt;}
.h2_c01228{height:19.518984pt;}
.h14_c01228{height:20.559000pt;}
.h4_c01228{height:25.698750pt;}
.h7_c01228{height:29.364844pt;}
.hd_c01228{height:32.914370pt;}
.h5_c01228{height:36.712500pt;}
.he_c01228{height:41.852250pt;}
.h10_c01228{height:46.257934pt;}
.h13_c01228{height:55.803000pt;}
.h9_c01228{height:57.638625pt;}
.h12_c01228{height:63.145684pt;}
.h3_c01228{height:64.602829pt;}
.hb_c01228{height:65.293594pt;}
.h6_c01228{height:66.330173pt;}
.ha_c01228{height:67.712048pt;}
.h8_c01228{height:68.402813pt;}
.hf_c01228{height:73.548234pt;}
.hc_c01228{height:77.212438pt;}
.h11_c01228{height:84.467282pt;}
.h1_c01228{height:986.666667pt;}
.h0_c01228{height:1122.666667pt;}
.w1_c01228{width:689.333333pt;}
.w0_c01228{width:793.333333pt;}
.x0_c01228{left:0.000000pt;}
.x1_c01228{left:52.000000pt;}
.x2_c01228{left:65.803453pt;}
.x45_c01228{left:81.656653pt;}
.x1c_c01228{left:82.593853pt;}
.x5_c01228{left:83.544253pt;}
.x3c_c01228{left:122.409453pt;}
.x6_c01228{left:142.042253pt;}
.x52_c01228{left:151.379053pt;}
.x3d_c01228{left:152.289853pt;}
.x11_c01228{left:171.852253pt;}
.x28_c01228{left:180.788653pt;}
.x7_c01228{left:181.708253pt;}
.x43_c01228{left:182.605853pt;}
.x55_c01228{left:192.395853pt;}
.x1d_c01228{left:201.644653pt;}
.x12_c01228{left:211.060653pt;}
.x33_c01228{left:212.024253pt;}
.x8_c01228{left:213.238653pt;}
.x29_c01228{left:219.447053pt;}
.x3e_c01228{left:241.301853pt;}
.x56_c01228{left:249.217453pt;}
.x44_c01228{left:251.457053pt;}
.xf_c01228{left:260.670653pt;}
.x13_c01228{left:271.947853pt;}
.x38_c01228{left:280.567453pt;}
.x2f_c01228{left:281.737853pt;}
.x14_c01228{left:290.458653pt;}
.x9_c01228{left:291.585053pt;}
.x4e_c01228{left:300.085853pt;}
.x4a_c01228{left:301.089053pt;}
.x25_c01228{left:310.905453pt;}
.xa_c01228{left:319.921053pt;}
.x49_c01228{left:320.968253pt;}
.x4f_c01228{left:330.181853pt;}
.x1e_c01228{left:331.198253pt;}
.x26_c01228{left:338.959853pt;}
.x30_c01228{left:340.477853pt;}
.x1f_c01228{left:349.819053pt;}
.x53_c01228{left:351.873853pt;}
.x57_c01228{left:357.629053pt;}
.x15_c01228{left:359.745453pt;}
.x2a_c01228{left:369.033853pt;}
.x54_c01228{left:378.405853pt;}
.x20_c01228{left:380.214253pt;}
.x58_c01228{left:387.698653pt;}
.x2b_c01228{left:390.796253pt;}
.x31_c01228{left:397.537053pt;}
.xb_c01228{left:399.921853pt;}
.x16_c01228{left:401.422253pt;}
.x2c_c01228{left:408.339053pt;}
.x3f_c01228{left:410.028653pt;}
.x4b_c01228{left:418.481053pt;}
.x17_c01228{left:419.554653pt;}
.x46_c01228{left:428.706653pt;}
.x59_c01228{left:437.110653pt;}
.x50_c01228{left:439.134653pt;}
.x2d_c01228{left:448.216253pt;}
.x21_c01228{left:458.507853pt;}
.x5a_c01228{left:466.533453pt;}
.x27_c01228{left:468.315453pt;}
.x4c_c01228{left:469.213053pt;}
.x18_c01228{left:476.424653pt;}
.x41_c01228{left:478.127453pt;}
.x51_c01228{left:486.491853pt;}
.x19_c01228{left:487.446653pt;}
.x34_c01228{left:488.815053pt;}
.x35_c01228{left:498.002253pt;}
.x47_c01228{left:506.841853pt;}
.x42_c01228{left:509.649053pt;}
.xc_c01228{left:517.877053pt;}
.x22_c01228{left:527.359053pt;}
.x5b_c01228{left:534.077853pt;}
.x23_c01228{left:536.616653pt;}
.x32_c01228{left:545.425453pt;}
.xd_c01228{left:547.022653pt;}
.x39_c01228{left:556.249453pt;}
.x2e_c01228{left:565.876653pt;}
.x36_c01228{left:567.161453pt;}
.x4_c01228{left:575.833853pt;}
.x40_c01228{left:585.399453pt;}
.x1a_c01228{left:595.871453pt;}
.x37_c01228{left:604.675853pt;}
.x3_c01228{left:606.427053pt;}
.x3a_c01228{left:616.080653pt;}
.xe_c01228{left:625.250253pt;}
.x24_c01228{left:626.407453pt;}
.x3b_c01228{left:630.173853pt;}
.x10_c01228{left:631.133053pt;}
.x4d_c01228{left:632.923853pt;}
.x1b_c01228{left:637.772653pt;}
.x48_c01228{left:667.538653pt;}
.x5c_c01228{left:679.766253pt;}
}





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

.ir_c01229:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01229{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01229;src:url('chunks/assets/font_b912bc8a0b30d3164dc7fc68.woff2')format("woff");}.ff1_c01229{font-family:ff1_c01229;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01229;src:url('chunks/assets/font_8b4377acaa6ff6d59971e961.woff2')format("woff");}.ff2_c01229{font-family:ff2_c01229;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01229;src:url('chunks/assets/font_180ce2b1af92ebfd1cb0a46b.woff2')format("woff");}.ff3_c01229{font-family:ff3_c01229;line-height:0.666000;font-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_c01229{transform:matrix(0.136349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136349,0.000000,0.000000,0.250000,0,0);}
.m2_c01229{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);}
.m5d_c01229{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m78_c01229{transform:matrix(0.164634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164634,0.000000,0.000000,0.250000,0,0);}
.m66_c01229{transform:matrix(0.173624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173624,0.000000,0.000000,0.250000,0,0);}
.md_c01229{transform:matrix(0.181911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181911,0.000000,0.000000,0.250000,0,0);}
.m5e_c01229{transform:matrix(0.185417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185417,0.000000,0.000000,0.250000,0,0);}
.m53_c01229{transform:matrix(0.187411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187411,0.000000,0.000000,0.250000,0,0);}
.m64_c01229{transform:matrix(0.188644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188644,0.000000,0.000000,0.250000,0,0);}
.m37_c01229{transform:matrix(0.199765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199765,0.000000,0.000000,0.250000,0,0);}
.m67_c01229{transform:matrix(0.213628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213628,0.000000,0.000000,0.250000,0,0);}
.m12_c01229{transform:matrix(0.221923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221923,0.000000,0.000000,0.250000,0,0);}
.m21_c01229{transform:matrix(0.233930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233930,0.000000,0.000000,0.250000,0,0);}
.m72_c01229{transform:matrix(0.236142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236142,0.000000,0.000000,0.250000,0,0);}
.m2f_c01229{transform:matrix(0.239366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239366,0.000000,0.000000,0.250000,0,0);}
.m3_c01229{transform:matrix(0.240327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240327,0.000000,0.000000,0.250000,0,0);}
.m61_c01229{transform:matrix(0.242945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242945,0.000000,0.000000,0.250000,0,0);}
.m47_c01229{transform:matrix(0.243691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243691,0.000000,0.000000,0.250000,0,0);}
.m38_c01229{transform:matrix(0.245090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245090,0.000000,0.000000,0.250000,0,0);}
.m74_c01229{transform:matrix(0.248409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248409,0.000000,0.000000,0.250000,0,0);}
.m0_c01229{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m6f_c01229{transform:matrix(0.257004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257004,0.000000,0.000000,0.250000,0,0);}
.m40_c01229{transform:matrix(0.258247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258247,0.000000,0.000000,0.250000,0,0);}
.m7b_c01229{transform:matrix(0.258819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258819,0.000000,0.000000,0.250000,0,0);}
.m2a_c01229{transform:matrix(0.263348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263348,0.000000,0.000000,0.250000,0,0);}
.m5_c01229{transform:matrix(0.263719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263719,0.000000,0.000000,0.250000,0,0);}
.m3a_c01229{transform:matrix(0.264767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264767,0.000000,0.000000,0.250000,0,0);}
.m43_c01229{transform:matrix(0.265239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265239,0.000000,0.000000,0.250000,0,0);}
.mc_c01229{transform:matrix(0.266437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266437,0.000000,0.000000,0.250000,0,0);}
.m57_c01229{transform:matrix(0.269254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269254,0.000000,0.000000,0.250000,0,0);}
.m3e_c01229{transform:matrix(0.270182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270182,0.000000,0.000000,0.250000,0,0);}
.m1e_c01229{transform:matrix(0.271678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271678,0.000000,0.000000,0.250000,0,0);}
.m56_c01229{transform:matrix(0.272773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272773,0.000000,0.000000,0.250000,0,0);}
.m22_c01229{transform:matrix(0.273593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273593,0.000000,0.000000,0.250000,0,0);}
.m6b_c01229{transform:matrix(0.275040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275040,0.000000,0.000000,0.250000,0,0);}
.m7a_c01229{transform:matrix(0.276035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276035,0.000000,0.000000,0.250000,0,0);}
.m9_c01229{transform:matrix(0.276924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276924,0.000000,0.000000,0.250000,0,0);}
.m4c_c01229{transform:matrix(0.276927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276927,0.000000,0.000000,0.250000,0,0);}
.m7_c01229{transform:matrix(0.278792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278792,0.000000,0.000000,0.250000,0,0);}
.m39_c01229{transform:matrix(0.278958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278958,0.000000,0.000000,0.250000,0,0);}
.mb_c01229{transform:matrix(0.279376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279376,0.000000,0.000000,0.250000,0,0);}
.m48_c01229{transform:matrix(0.280400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280400,0.000000,0.000000,0.250000,0,0);}
.m24_c01229{transform:matrix(0.282394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282394,0.000000,0.000000,0.250000,0,0);}
.m20_c01229{transform:matrix(0.282481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282481,0.000000,0.000000,0.250000,0,0);}
.m5c_c01229{transform:matrix(0.282859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282859,0.000000,0.000000,0.250000,0,0);}
.m45_c01229{transform:matrix(0.283531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283531,0.000000,0.000000,0.250000,0,0);}
.m17_c01229{transform:matrix(0.283583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283583,0.000000,0.000000,0.250000,0,0);}
.m19_c01229{transform:matrix(0.283683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283683,0.000000,0.000000,0.250000,0,0);}
.m5b_c01229{transform:matrix(0.284265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284265,0.000000,0.000000,0.250000,0,0);}
.m29_c01229{transform:matrix(0.286058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286058,0.000000,0.000000,0.250000,0,0);}
.m52_c01229{transform:matrix(0.286500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01229{transform:matrix(0.286562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286562,0.000000,0.000000,0.250000,0,0);}
.m73_c01229{transform:matrix(0.286650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286650,0.000000,0.000000,0.250000,0,0);}
.m59_c01229{transform:matrix(0.286817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286817,0.000000,0.000000,0.250000,0,0);}
.m10_c01229{transform:matrix(0.287120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287120,0.000000,0.000000,0.250000,0,0);}
.ma_c01229{transform:matrix(0.288852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288852,0.000000,0.000000,0.250000,0,0);}
.m65_c01229{transform:matrix(0.289345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289345,0.000000,0.000000,0.250000,0,0);}
.m4_c01229{transform:matrix(0.290003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290003,0.000000,0.000000,0.250000,0,0);}
.m23_c01229{transform:matrix(0.290018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290018,0.000000,0.000000,0.250000,0,0);}
.m36_c01229{transform:matrix(0.291368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291368,0.000000,0.000000,0.250000,0,0);}
.m1f_c01229{transform:matrix(0.291545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291545,0.000000,0.000000,0.250000,0,0);}
.m16_c01229{transform:matrix(0.291762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291762,0.000000,0.000000,0.250000,0,0);}
.m6d_c01229{transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);}
.m2e_c01229{transform:matrix(0.293391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293391,0.000000,0.000000,0.250000,0,0);}
.m46_c01229{transform:matrix(0.293421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293421,0.000000,0.000000,0.250000,0,0);}
.m11_c01229{transform:matrix(0.294336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294336,0.000000,0.000000,0.250000,0,0);}
.m63_c01229{transform:matrix(0.294639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294639,0.000000,0.000000,0.250000,0,0);}
.m51_c01229{transform:matrix(0.294781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294781,0.000000,0.000000,0.250000,0,0);}
.m62_c01229{transform:matrix(0.294837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294837,0.000000,0.000000,0.250000,0,0);}
.m75_c01229{transform:matrix(0.295153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295153,0.000000,0.000000,0.250000,0,0);}
.m5a_c01229{transform:matrix(0.295210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295210,0.000000,0.000000,0.250000,0,0);}
.m30_c01229{transform:matrix(0.295825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295825,0.000000,0.000000,0.250000,0,0);}
.m3d_c01229{transform:matrix(0.297175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297175,0.000000,0.000000,0.250000,0,0);}
.m2d_c01229{transform:matrix(0.297413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297413,0.000000,0.000000,0.250000,0,0);}
.m6a_c01229{transform:matrix(0.297914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297914,0.000000,0.000000,0.250000,0,0);}
.m35_c01229{transform:matrix(0.298076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298076,0.000000,0.000000,0.250000,0,0);}
.m68_c01229{transform:matrix(0.298817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298817,0.000000,0.000000,0.250000,0,0);}
.m33_c01229{transform:matrix(0.298833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298833,0.000000,0.000000,0.250000,0,0);}
.m1_c01229{transform:matrix(0.299727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299727,0.000000,0.000000,0.250000,0,0);}
.m41_c01229{transform:matrix(0.303742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303742,0.000000,0.000000,0.250000,0,0);}
.m70_c01229{transform:matrix(0.304085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304085,0.000000,0.000000,0.250000,0,0);}
.m1d_c01229{transform:matrix(0.304559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304559,0.000000,0.000000,0.250000,0,0);}
.m3f_c01229{transform:matrix(0.306045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306045,0.000000,0.000000,0.250000,0,0);}
.m27_c01229{transform:matrix(0.306989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306989,0.000000,0.000000,0.250000,0,0);}
.m28_c01229{transform:matrix(0.307625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307625,0.000000,0.000000,0.250000,0,0);}
.m6c_c01229{transform:matrix(0.307942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307942,0.000000,0.000000,0.250000,0,0);}
.m42_c01229{transform:matrix(0.308660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308660,0.000000,0.000000,0.250000,0,0);}
.m3b_c01229{transform:matrix(0.309646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309646,0.000000,0.000000,0.250000,0,0);}
.m26_c01229{transform:matrix(0.310769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310769,0.000000,0.000000,0.250000,0,0);}
.m25_c01229{transform:matrix(0.312618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312618,0.000000,0.000000,0.250000,0,0);}
.m54_c01229{transform:matrix(0.313223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313223,0.000000,0.000000,0.250000,0,0);}
.me_c01229{transform:matrix(0.316424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316424,0.000000,0.000000,0.250000,0,0);}
.m3c_c01229{transform:matrix(0.318027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318027,0.000000,0.000000,0.250000,0,0);}
.m60_c01229{transform:matrix(0.319335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319335,0.000000,0.000000,0.250000,0,0);}
.m69_c01229{transform:matrix(0.322360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322360,0.000000,0.000000,0.250000,0,0);}
.m6_c01229{transform:matrix(0.322823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322823,0.000000,0.000000,0.250000,0,0);}
.m31_c01229{transform:matrix(0.324354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324354,0.000000,0.000000,0.250000,0,0);}
.mf_c01229{transform:matrix(0.326876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326876,0.000000,0.000000,0.250000,0,0);}
.m71_c01229{transform:matrix(0.327305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327305,0.000000,0.000000,0.250000,0,0);}
.m4a_c01229{transform:matrix(0.327377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327377,0.000000,0.000000,0.250000,0,0);}
.m18_c01229{transform:matrix(0.330045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330045,0.000000,0.000000,0.250000,0,0);}
.m76_c01229{transform:matrix(0.330982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330982,0.000000,0.000000,0.250000,0,0);}
.m58_c01229{transform:matrix(0.331595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331595,0.000000,0.000000,0.250000,0,0);}
.m15_c01229{transform:matrix(0.331861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331861,0.000000,0.000000,0.250000,0,0);}
.m55_c01229{transform:matrix(0.335416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335416,0.000000,0.000000,0.250000,0,0);}
.m6e_c01229{transform:matrix(0.336476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336476,0.000000,0.000000,0.250000,0,0);}
.m32_c01229{transform:matrix(0.338499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338499,0.000000,0.000000,0.250000,0,0);}
.m1c_c01229{transform:matrix(0.339994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339994,0.000000,0.000000,0.250000,0,0);}
.m50_c01229{transform:matrix(0.341026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341026,0.000000,0.000000,0.250000,0,0);}
.m34_c01229{transform:matrix(0.341879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341879,0.000000,0.000000,0.250000,0,0);}
.m2b_c01229{transform:matrix(0.342600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342600,0.000000,0.000000,0.250000,0,0);}
.m1b_c01229{transform:matrix(0.343414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343414,0.000000,0.000000,0.250000,0,0);}
.m13_c01229{transform:matrix(0.352824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352824,0.000000,0.000000,0.250000,0,0);}
.m44_c01229{transform:matrix(0.355270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355270,0.000000,0.000000,0.250000,0,0);}
.m4f_c01229{transform:matrix(0.356579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356579,0.000000,0.000000,0.250000,0,0);}
.m4e_c01229{transform:matrix(0.363339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363339,0.000000,0.000000,0.250000,0,0);}
.m77_c01229{transform:matrix(0.363579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363579,0.000000,0.000000,0.250000,0,0);}
.m8_c01229{transform:matrix(0.367188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367188,0.000000,0.000000,0.250000,0,0);}
.m49_c01229{transform:matrix(0.374531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374531,0.000000,0.000000,0.250000,0,0);}
.m79_c01229{transform:matrix(0.383573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383573,0.000000,0.000000,0.250000,0,0);}
.m14_c01229{transform:matrix(0.401732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401732,0.000000,0.000000,0.250000,0,0);}
.m1a_c01229{transform:matrix(0.417963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417963,0.000000,0.000000,0.250000,0,0);}
.m2c_c01229{transform:matrix(0.418760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418760,0.000000,0.000000,0.250000,0,0);}
.m4d_c01229{transform:matrix(0.465953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465953,0.000000,0.000000,0.250000,0,0);}
.v0_c01229{vertical-align:0.000000px;}
.ls15_c01229{letter-spacing:-3.035340px;}
.lsa_c01229{letter-spacing:-2.591827px;}
.ls6_c01229{letter-spacing:-2.550240px;}
.lsb_c01229{letter-spacing:-1.406992px;}
.lsc_c01229{letter-spacing:-1.007110px;}
.lsd_c01229{letter-spacing:-0.940463px;}
.ls9_c01229{letter-spacing:-0.318424px;}
.ls3_c01229{letter-spacing:0.000000px;}
.ls1_c01229{letter-spacing:0.229562px;}
.ls11_c01229{letter-spacing:0.644254px;}
.lsf_c01229{letter-spacing:1.540539px;}
.ls12_c01229{letter-spacing:2.051246px;}
.lse_c01229{letter-spacing:2.132703px;}
.ls10_c01229{letter-spacing:2.451128px;}
.ls2_c01229{letter-spacing:2.525180px;}
.ls0_c01229{letter-spacing:3.564000px;}
.ls7_c01229{letter-spacing:3.643200px;}
.ls4_c01229{letter-spacing:3.702610px;}
.ls17_c01229{letter-spacing:3.752110px;}
.ls13_c01229{letter-spacing:3.910500px;}
.ls5_c01229{letter-spacing:31.363200px;}
.ls16_c01229{letter-spacing:55.598598px;}
.ls14_c01229{letter-spacing:57.024198px;}
.ls8_c01229{letter-spacing:58.449798px;}
.sc__c01229{text-shadow:none;}
.sc0_c01229{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01229{-webkit-text-stroke:0px transparent;}
.sc0_c01229{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01229{word-spacing:-18.513050px;}
.ws1_c01229{word-spacing:0.000000px;}
._1_c01229{margin-left:-13.899600px;}
._7_c01229{margin-left:-5.331667px;}
._0_c01229{width:8.273232px;}
._6_c01229{width:16.872960px;}
._2_c01229{width:19.623725px;}
._4_c01229{width:33.936482px;}
._3_c01229{width:37.592539px;}
._5_c01229{width:54.770760px;}
.fc0_c01229{color:transparent;}
.fs18_c01229{font-size:22.176000px;}
.fs16_c01229{font-size:22.374000px;}
.fs5_c01229{font-size:25.146000px;}
.fs2_c01229{font-size:26.928000px;}
.fs15_c01229{font-size:27.720000px;}
.fs6_c01229{font-size:31.363200px;}
.fs0_c01229{font-size:33.660000px;}
.fs4_c01229{font-size:37.818000px;}
.fs12_c01229{font-size:39.204000px;}
.fs14_c01229{font-size:44.352000px;}
.fsa_c01229{font-size:45.144000px;}
.fsb_c01229{font-size:47.916198px;}
.fs11_c01229{font-size:55.598598px;}
.fsf_c01229{font-size:57.024198px;}
.fs9_c01229{font-size:58.449798px;}
.fsc_c01229{font-size:62.370000px;}
.fsd_c01229{font-size:66.330000px;}
.fs1_c01229{font-size:66.528000px;}
.fs8_c01229{font-size:71.280000px;}
.fs7_c01229{font-size:72.864000px;}
.fs3_c01229{font-size:74.052198px;}
.fs13_c01229{font-size:75.042198px;}
.fse_c01229{font-size:78.210000px;}
.fs10_c01229{font-size:86.724000px;}
.fs17_c01229{font-size:91.872198px;}
.y0_c01229{bottom:0.000000px;}
.y21_c01229{bottom:5.257935px;}
.y20_c01229{bottom:29.136735px;}
.y1f_c01229{bottom:43.744185px;}
.y1e_c01229{bottom:64.420335px;}
.y1d_c01229{bottom:67.979385px;}
.y1_c01229{bottom:76.500000px;}
.y1c_c01229{bottom:97.565535px;}
.y1b_c01229{bottom:129.636585px;}
.y22_c01229{bottom:164.919591px;}
.y1a_c01229{bottom:193.075785px;}
.y19_c01229{bottom:225.513135px;}
.y18_c01229{bottom:248.317785px;}
.y17_c01229{bottom:288.590985px;}
.y16_c01229{bottom:319.954185px;}
.y15_c01229{bottom:352.386585px;}
.y14_c01229{bottom:415.830735px;}
.y13_c01229{bottom:447.906735px;}
.y12_c01229{bottom:510.633135px;}
.y11_c01229{bottom:541.639935px;}
.y10_c01229{bottom:603.297135px;}
.yf_c01229{bottom:636.437385px;}
.ye_c01229{bottom:699.876585px;}
.yd_c01229{bottom:731.596185px;}
.y3_c01229{bottom:765.454185px;}
.yc_c01229{bottom:791.119935px;}
.y2_c01229{bottom:793.609785px;}
.yb_c01229{bottom:795.391785px;}
.ya_c01229{bottom:827.116335px;}
.y9_c01229{bottom:890.194185px;}
.y8_c01229{bottom:922.275135px;}
.y7_c01229{bottom:1014.221385px;}
.y6_c01229{bottom:1024.913385px;}
.y5_c01229{bottom:1040.951385px;}
.y4_c01229{bottom:1059.840585px;}
.h7_c01229{height:20.887891px;}
.h15_c01229{height:21.958857px;}
.h17_c01229{height:23.128875px;}
.h6_c01229{height:26.226492px;}
.h14_c01229{height:28.911094px;}
.h2_c01229{height:33.035449px;}
.h10_c01229{height:37.028666px;}
.h5_c01229{height:37.116299px;}
.he_c01229{height:37.978116px;}
.h11_c01229{height:38.476582px;}
.ha_c01229{height:38.927565px;}
.h13_c01229{height:46.257750px;}
.hb_c01229{height:47.083781px;}
.hc_c01229{height:69.180117px;}
.h3_c01229{height:69.386625px;}
.h9_c01229{height:69.957422px;}
.h8_c01229{height:71.512031px;}
.h4_c01229{height:72.678183px;}
.h12_c01229{height:73.649813px;}
.hd_c01229{height:76.758838px;}
.h16_c01229{height:90.167538px;}
.hf_c01229{height:90.450422px;}
.h1_c01229{height:1110.000000px;}
.h0_c01229{height:1263.000000px;}
.w1_c01229{width:775.500000px;}
.w0_c01229{width:892.500000px;}
.x0_c01229{left:0.000000px;}
.x3_c01229{left:50.501535px;}
.x1_c01229{left:58.500000px;}
.x2_c01229{left:64.005135px;}
.x23_c01229{left:79.533285px;}
.x7_c01229{left:80.632185px;}
.x3b_c01229{left:89.710485px;}
.x45_c01229{left:101.803335px;}
.x30_c01229{left:106.743435px;}
.x31_c01229{left:112.985385px;}
.x50_c01229{left:125.855385px;}
.x15_c01229{left:134.775285px;}
.x24_c01229{left:144.917835px;}
.x8_c01229{left:167.390835px;}
.x46_c01229{left:176.998785px;}
.x25_c01229{left:178.706535px;}
.x4a_c01229{left:187.408635px;}
.x13_c01229{left:189.551985px;}
.x38_c01229{left:191.804235px;}
.x16_c01229{left:200.021235px;}
.x26_c01229{left:211.831935px;}
.x3c_c01229{left:213.014985px;}
.x9_c01229{left:214.163385px;}
.x47_c01229{left:225.424635px;}
.x17_c01229{left:234.052485px;}
.xa_c01229{left:245.338485px;}
.x27_c01229{left:255.758235px;}
.x4b_c01229{left:257.312535px;}
.x32_c01229{left:258.352035px;}
.x54_c01229{left:266.663085px;}
.x1c_c01229{left:268.078785px;}
.x58_c01229{left:278.656935px;}
.x4c_c01229{left:280.122135px;}
.x28_c01229{left:288.987585px;}
.x1d_c01229{left:300.585435px;}
.x3d_c01229{left:301.862535px;}
.x14_c01229{left:312.217935px;}
.x18_c01229{left:313.856385px;}
.x1e_c01229{left:333.166335px;}
.x2d_c01229{left:344.219685px;}
.x59_c01229{left:346.165035px;}
.x4d_c01229{left:347.377785px;}
.xb_c01229{left:356.183835px;}
.x29_c01229{left:368.251935px;}
.x33_c01229{left:379.671585px;}
.x41_c01229{left:388.012335px;}
.xc_c01229{left:389.373585px;}
.x55_c01229{left:399.115185px;}
.x34_c01229{left:412.826685px;}
.x1f_c01229{left:422.954385px;}
.x2e_c01229{left:424.048335px;}
.x19_c01229{left:434.200785px;}
.xd_c01229{left:443.600835px;}
.x3e_c01229{left:445.867935px;}
.x56_c01229{left:446.996535px;}
.x48_c01229{left:456.975735px;}
.x1a_c01229{left:466.390635px;}
.x51_c01229{left:468.415185px;}
.x42_c01229{left:477.864735px;}
.x35_c01229{left:490.536735px;}
.x4e_c01229{left:499.644735px;}
.xe_c01229{left:501.203985px;}
.x5e_c01229{left:507.059835px;}
.x20_c01229{left:510.960435px;}
.x2a_c01229{left:512.643435px;}
.x5a_c01229{left:523.464135px;}
.x36_c01229{left:532.695885px;}
.x43_c01229{left:533.898735px;}
.xf_c01229{left:545.417385px;}
.x39_c01229{left:555.213435px;}
.x5b_c01229{left:568.444785px;}
.x10_c01229{left:575.176785px;}
.x57_c01229{left:577.216185px;}
.x44_c01229{left:579.003135px;}
.x52_c01229{left:587.942835px;}
.x3f_c01229{left:589.957485px;}
.x5c_c01229{left:600.268335px;}
.x4f_c01229{left:610.445535px;}
.x3a_c01229{left:622.642335px;}
.x21_c01229{left:632.220585px;}
.x2b_c01229{left:633.799635px;}
.x2f_c01229{left:643.763985px;}
.x11_c01229{left:645.070785px;}
.x4_c01229{left:654.782685px;}
.x1b_c01229{left:666.246885px;}
.x37_c01229{left:667.429935px;}
.x53_c01229{left:669.206985px;}
.x40_c01229{left:677.785335px;}
.x22_c01229{left:679.696035px;}
.x5d_c01229{left:688.427835px;}
.x49_c01229{left:698.575335px;}
.x5_c01229{left:700.218735px;}
.x6_c01229{left:701.921535px;}
.x12_c01229{left:712.331385px;}
.x5f_c01229{left:719.833110px;}
.x2c_c01229{left:720.889935px;}
@media print{
.v0_c01229{vertical-align:0.000000pt;}
.ls15_c01229{letter-spacing:-2.698080pt;}
.lsa_c01229{letter-spacing:-2.303846pt;}
.ls6_c01229{letter-spacing:-2.266880pt;}
.lsb_c01229{letter-spacing:-1.250659pt;}
.lsc_c01229{letter-spacing:-0.895209pt;}
.lsd_c01229{letter-spacing:-0.835967pt;}
.ls9_c01229{letter-spacing:-0.283044pt;}
.ls3_c01229{letter-spacing:0.000000pt;}
.ls1_c01229{letter-spacing:0.204055pt;}
.ls11_c01229{letter-spacing:0.572670pt;}
.lsf_c01229{letter-spacing:1.369368pt;}
.ls12_c01229{letter-spacing:1.823330pt;}
.lse_c01229{letter-spacing:1.895736pt;}
.ls10_c01229{letter-spacing:2.178780pt;}
.ls2_c01229{letter-spacing:2.244604pt;}
.ls0_c01229{letter-spacing:3.168000pt;}
.ls7_c01229{letter-spacing:3.238400pt;}
.ls4_c01229{letter-spacing:3.291209pt;}
.ls17_c01229{letter-spacing:3.335209pt;}
.ls13_c01229{letter-spacing:3.476000pt;}
.ls5_c01229{letter-spacing:27.878400pt;}
.ls16_c01229{letter-spacing:49.420976pt;}
.ls14_c01229{letter-spacing:50.688176pt;}
.ls8_c01229{letter-spacing:51.955376pt;}
.ws0_c01229{word-spacing:-16.456044pt;}
.ws1_c01229{word-spacing:0.000000pt;}
._1_c01229{margin-left:-12.355200pt;}
._7_c01229{margin-left:-4.739260pt;}
._0_c01229{width:7.353984pt;}
._6_c01229{width:14.998186pt;}
._2_c01229{width:17.443311pt;}
._4_c01229{width:30.165762pt;}
._3_c01229{width:33.415590pt;}
._5_c01229{width:48.685120pt;}
.fs18_c01229{font-size:19.712000pt;}
.fs16_c01229{font-size:19.888000pt;}
.fs5_c01229{font-size:22.352000pt;}
.fs2_c01229{font-size:23.936000pt;}
.fs15_c01229{font-size:24.640000pt;}
.fs6_c01229{font-size:27.878400pt;}
.fs0_c01229{font-size:29.920000pt;}
.fs4_c01229{font-size:33.616000pt;}
.fs12_c01229{font-size:34.848000pt;}
.fs14_c01229{font-size:39.424000pt;}
.fsa_c01229{font-size:40.128000pt;}
.fsb_c01229{font-size:42.592176pt;}
.fs11_c01229{font-size:49.420976pt;}
.fsf_c01229{font-size:50.688176pt;}
.fs9_c01229{font-size:51.955376pt;}
.fsc_c01229{font-size:55.440000pt;}
.fsd_c01229{font-size:58.960000pt;}
.fs1_c01229{font-size:59.136000pt;}
.fs8_c01229{font-size:63.360000pt;}
.fs7_c01229{font-size:64.768000pt;}
.fs3_c01229{font-size:65.824176pt;}
.fs13_c01229{font-size:66.704176pt;}
.fse_c01229{font-size:69.520000pt;}
.fs10_c01229{font-size:77.088000pt;}
.fs17_c01229{font-size:81.664176pt;}
.y0_c01229{bottom:0.000000pt;}
.y21_c01229{bottom:4.673720pt;}
.y20_c01229{bottom:25.899320pt;}
.y1f_c01229{bottom:38.883720pt;}
.y1e_c01229{bottom:57.262520pt;}
.y1d_c01229{bottom:60.426120pt;}
.y1_c01229{bottom:68.000000pt;}
.y1c_c01229{bottom:86.724920pt;}
.y1b_c01229{bottom:115.232520pt;}
.y22_c01229{bottom:146.595192pt;}
.y1a_c01229{bottom:171.622920pt;}
.y19_c01229{bottom:200.456120pt;}
.y18_c01229{bottom:220.726920pt;}
.y17_c01229{bottom:256.525320pt;}
.y16_c01229{bottom:284.403720pt;}
.y15_c01229{bottom:313.232520pt;}
.y14_c01229{bottom:369.627320pt;}
.y13_c01229{bottom:398.139320pt;}
.y12_c01229{bottom:453.896120pt;}
.y11_c01229{bottom:481.457720pt;}
.y10_c01229{bottom:536.264120pt;}
.yf_c01229{bottom:565.722120pt;}
.ye_c01229{bottom:622.112520pt;}
.yd_c01229{bottom:650.307720pt;}
.y3_c01229{bottom:680.403720pt;}
.yc_c01229{bottom:703.217720pt;}
.y2_c01229{bottom:705.430920pt;}
.yb_c01229{bottom:707.014920pt;}
.ya_c01229{bottom:735.214520pt;}
.y9_c01229{bottom:791.283720pt;}
.y8_c01229{bottom:819.800120pt;}
.y7_c01229{bottom:901.530120pt;}
.y6_c01229{bottom:911.034120pt;}
.y5_c01229{bottom:925.290120pt;}
.y4_c01229{bottom:942.080520pt;}
.h7_c01229{height:18.567014pt;}
.h15_c01229{height:19.518984pt;}
.h17_c01229{height:20.559000pt;}
.h6_c01229{height:23.312438pt;}
.h14_c01229{height:25.698750pt;}
.h2_c01229{height:29.364844pt;}
.h10_c01229{height:32.914370pt;}
.h5_c01229{height:32.992266pt;}
.he_c01229{height:33.758325pt;}
.h11_c01229{height:34.201406pt;}
.ha_c01229{height:34.602280pt;}
.h13_c01229{height:41.118000pt;}
.hb_c01229{height:41.852250pt;}
.hc_c01229{height:61.493438pt;}
.h3_c01229{height:61.677000pt;}
.h9_c01229{height:62.184375pt;}
.h8_c01229{height:63.566250pt;}
.h4_c01229{height:64.602829pt;}
.h12_c01229{height:65.466501pt;}
.hd_c01229{height:68.230078pt;}
.h16_c01229{height:80.148923pt;}
.hf_c01229{height:80.400375pt;}
.h1_c01229{height:986.666667pt;}
.h0_c01229{height:1122.666667pt;}
.w1_c01229{width:689.333333pt;}
.w0_c01229{width:793.333333pt;}
.x0_c01229{left:0.000000pt;}
.x3_c01229{left:44.890253pt;}
.x1_c01229{left:52.000000pt;}
.x2_c01229{left:56.893453pt;}
.x23_c01229{left:70.696253pt;}
.x7_c01229{left:71.673053pt;}
.x3b_c01229{left:79.742653pt;}
.x45_c01229{left:90.491853pt;}
.x30_c01229{left:94.883053pt;}
.x31_c01229{left:100.431453pt;}
.x50_c01229{left:111.871453pt;}
.x15_c01229{left:119.800253pt;}
.x24_c01229{left:128.815853pt;}
.x8_c01229{left:148.791853pt;}
.x46_c01229{left:157.332253pt;}
.x25_c01229{left:158.850253pt;}
.x4a_c01229{left:166.585453pt;}
.x13_c01229{left:168.490653pt;}
.x38_c01229{left:170.492653pt;}
.x16_c01229{left:177.796653pt;}
.x26_c01229{left:188.295053pt;}
.x3c_c01229{left:189.346653pt;}
.x9_c01229{left:190.367453pt;}
.x47_c01229{left:200.377453pt;}
.x17_c01229{left:208.046653pt;}
.xa_c01229{left:218.078653pt;}
.x27_c01229{left:227.340653pt;}
.x4b_c01229{left:228.722253pt;}
.x32_c01229{left:229.646253pt;}
.x54_c01229{left:237.033853pt;}
.x1c_c01229{left:238.292253pt;}
.x58_c01229{left:247.695053pt;}
.x4c_c01229{left:248.997453pt;}
.x28_c01229{left:256.877853pt;}
.x1d_c01229{left:267.187053pt;}
.x3d_c01229{left:268.322253pt;}
.x14_c01229{left:277.527053pt;}
.x18_c01229{left:278.983453pt;}
.x1e_c01229{left:296.147853pt;}
.x2d_c01229{left:305.973053pt;}
.x59_c01229{left:307.702253pt;}
.x4d_c01229{left:308.780253pt;}
.xb_c01229{left:316.607853pt;}
.x29_c01229{left:327.335053pt;}
.x33_c01229{left:337.485853pt;}
.x41_c01229{left:344.899853pt;}
.xc_c01229{left:346.109853pt;}
.x55_c01229{left:354.769053pt;}
.x34_c01229{left:366.957053pt;}
.x1f_c01229{left:375.959453pt;}
.x2e_c01229{left:376.931853pt;}
.x19_c01229{left:385.956253pt;}
.xd_c01229{left:394.311853pt;}
.x3e_c01229{left:396.327053pt;}
.x56_c01229{left:397.330253pt;}
.x48_c01229{left:406.200653pt;}
.x1a_c01229{left:414.569453pt;}
.x51_c01229{left:416.369053pt;}
.x42_c01229{left:424.768653pt;}
.x35_c01229{left:436.032653pt;}
.x4e_c01229{left:444.128653pt;}
.xe_c01229{left:445.514653pt;}
.x5e_c01229{left:450.719853pt;}
.x20_c01229{left:454.187053pt;}
.x2a_c01229{left:455.683053pt;}
.x5a_c01229{left:465.301453pt;}
.x36_c01229{left:473.507453pt;}
.x43_c01229{left:474.576653pt;}
.xf_c01229{left:484.815453pt;}
.x39_c01229{left:493.523053pt;}
.x5b_c01229{left:505.284253pt;}
.x10_c01229{left:511.268253pt;}
.x57_c01229{left:513.081053pt;}
.x44_c01229{left:514.669453pt;}
.x52_c01229{left:522.615853pt;}
.x3f_c01229{left:524.406653pt;}
.x5c_c01229{left:533.571853pt;}
.x4f_c01229{left:542.618253pt;}
.x3a_c01229{left:553.459853pt;}
.x21_c01229{left:561.973853pt;}
.x2b_c01229{left:563.377453pt;}
.x2f_c01229{left:572.234653pt;}
.x11_c01229{left:573.396253pt;}
.x4_c01229{left:582.029053pt;}
.x1b_c01229{left:592.219453pt;}
.x37_c01229{left:593.271053pt;}
.x53_c01229{left:594.850653pt;}
.x40_c01229{left:602.475853pt;}
.x22_c01229{left:604.174253pt;}
.x5d_c01229{left:611.935853pt;}
.x49_c01229{left:620.955853pt;}
.x5_c01229{left:622.416653pt;}
.x6_c01229{left:623.930253pt;}
.x12_c01229{left:633.183453pt;}
.x5f_c01229{left:639.851653pt;}
.x2c_c01229{left:640.791053pt;}
}





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

.ir_c01230:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01230{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01230;src:url('chunks/assets/font_6114137f1413ac2293388429.woff2')format("woff");}.ff1_c01230{font-family:ff1_c01230;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01230;src:url('chunks/assets/font_4fe9fa1049e540e2ff347bea.woff2')format("woff");}.ff2_c01230{font-family:ff2_c01230;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01230;src:url('chunks/assets/font_6a85e275e077b9512ea27ca0.woff2')format("woff");}.ff3_c01230{font-family:ff3_c01230;line-height:0.666000;font-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_c01230{transform:matrix(0.161937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161937,0.000000,0.000000,0.250000,0,0);}
.m5d_c01230{transform:matrix(0.173610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173610,0.000000,0.000000,0.250000,0,0);}
.m5c_c01230{transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);}
.m39_c01230{transform:matrix(0.198914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198914,0.000000,0.000000,0.250000,0,0);}
.m5b_c01230{transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);}
.m14_c01230{transform:matrix(0.204325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204325,0.000000,0.000000,0.250000,0,0);}
.m2a_c01230{transform:matrix(0.206007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206007,0.000000,0.000000,0.250000,0,0);}
.m2_c01230{transform:matrix(0.209923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209923,0.000000,0.000000,0.250000,0,0);}
.m44_c01230{transform:matrix(0.212611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212611,0.000000,0.000000,0.250000,0,0);}
.m4d_c01230{transform:matrix(0.217510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217510,0.000000,0.000000,0.250000,0,0);}
.m4e_c01230{transform:matrix(0.219573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219573,0.000000,0.000000,0.250000,0,0);}
.m5a_c01230{transform:matrix(0.220207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220207,0.000000,0.000000,0.250000,0,0);}
.m46_c01230{transform:matrix(0.220645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220645,0.000000,0.000000,0.250000,0,0);}
.m58_c01230{transform:matrix(0.227539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227539,0.000000,0.000000,0.250000,0,0);}
.m1c_c01230{transform:matrix(0.227763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227763,0.000000,0.000000,0.250000,0,0);}
.m25_c01230{transform:matrix(0.234495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234495,0.000000,0.000000,0.250000,0,0);}
.me_c01230{transform:matrix(0.240308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240308,0.000000,0.000000,0.250000,0,0);}
.m2b_c01230{transform:matrix(0.243587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243587,0.000000,0.000000,0.250000,0,0);}
.m5_c01230{transform:matrix(0.248072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248072,0.000000,0.000000,0.250000,0,0);}
.m15_c01230{transform:matrix(0.249198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249198,0.000000,0.000000,0.250000,0,0);}
.m0_c01230{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m19_c01230{transform:matrix(0.250084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250084,0.000000,0.000000,0.250000,0,0);}
.m24_c01230{transform:matrix(0.250353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250353,0.000000,0.000000,0.250000,0,0);}
.m1d_c01230{transform:matrix(0.252189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252189,0.000000,0.000000,0.250000,0,0);}
.m20_c01230{transform:matrix(0.252624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252624,0.000000,0.000000,0.250000,0,0);}
.ma_c01230{transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);}
.m63_c01230{transform:matrix(0.254876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254876,0.000000,0.000000,0.250000,0,0);}
.m67_c01230{transform:matrix(0.255327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255327,0.000000,0.000000,0.250000,0,0);}
.m3a_c01230{transform:matrix(0.255464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255464,0.000000,0.000000,0.250000,0,0);}
.m2d_c01230{transform:matrix(0.255518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255518,0.000000,0.000000,0.250000,0,0);}
.m2c_c01230{transform:matrix(0.256959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256959,0.000000,0.000000,0.250000,0,0);}
.m61_c01230{transform:matrix(0.257392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257392,0.000000,0.000000,0.250000,0,0);}
.m2e_c01230{transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257518,0.000000,0.000000,0.250000,0,0);}
.m57_c01230{transform:matrix(0.257542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257542,0.000000,0.000000,0.250000,0,0);}
.m3d_c01230{transform:matrix(0.258683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258683,0.000000,0.000000,0.250000,0,0);}
.m43_c01230{transform:matrix(0.258854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258854,0.000000,0.000000,0.250000,0,0);}
.mb_c01230{transform:matrix(0.259581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259581,0.000000,0.000000,0.250000,0,0);}
.m50_c01230{transform:matrix(0.260353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260353,0.000000,0.000000,0.250000,0,0);}
.m11_c01230{transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260363,0.000000,0.000000,0.250000,0,0);}
.m48_c01230{transform:matrix(0.260628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260628,0.000000,0.000000,0.250000,0,0);}
.m17_c01230{transform:matrix(0.263120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263120,0.000000,0.000000,0.250000,0,0);}
.m36_c01230{transform:matrix(0.263361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263361,0.000000,0.000000,0.250000,0,0);}
.m4b_c01230{transform:matrix(0.263533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263533,0.000000,0.000000,0.250000,0,0);}
.m5f_c01230{transform:matrix(0.263857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263857,0.000000,0.000000,0.250000,0,0);}
.mf_c01230{transform:matrix(0.264028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264028,0.000000,0.000000,0.250000,0,0);}
.md_c01230{transform:matrix(0.264495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264495,0.000000,0.000000,0.250000,0,0);}
.m3_c01230{transform:matrix(0.264515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264515,0.000000,0.000000,0.250000,0,0);}
.m10_c01230{transform:matrix(0.265951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265951,0.000000,0.000000,0.250000,0,0);}
.m1b_c01230{transform:matrix(0.266042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266042,0.000000,0.000000,0.250000,0,0);}
.m1e_c01230{transform:matrix(0.266172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266172,0.000000,0.000000,0.250000,0,0);}
.m38_c01230{transform:matrix(0.266331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266331,0.000000,0.000000,0.250000,0,0);}
.m29_c01230{transform:matrix(0.266682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266682,0.000000,0.000000,0.250000,0,0);}
.m34_c01230{transform:matrix(0.266917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266917,0.000000,0.000000,0.250000,0,0);}
.m42_c01230{transform:matrix(0.267153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267153,0.000000,0.000000,0.250000,0,0);}
.m40_c01230{transform:matrix(0.267297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267297,0.000000,0.000000,0.250000,0,0);}
.m49_c01230{transform:matrix(0.267410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267410,0.000000,0.000000,0.250000,0,0);}
.m41_c01230{transform:matrix(0.268168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268168,0.000000,0.000000,0.250000,0,0);}
.m30_c01230{transform:matrix(0.268285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268285,0.000000,0.000000,0.250000,0,0);}
.m26_c01230{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.m1_c01230{transform:matrix(0.269852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269852,0.000000,0.000000,0.250000,0,0);}
.m3b_c01230{transform:matrix(0.269894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269894,0.000000,0.000000,0.250000,0,0);}
.m33_c01230{transform:matrix(0.269923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269923,0.000000,0.000000,0.250000,0,0);}
.m2f_c01230{transform:matrix(0.272248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272248,0.000000,0.000000,0.250000,0,0);}
.m13_c01230{transform:matrix(0.276292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276292,0.000000,0.000000,0.250000,0,0);}
.m9_c01230{transform:matrix(0.276974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276974,0.000000,0.000000,0.250000,0,0);}
.m65_c01230{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m23_c01230{transform:matrix(0.277826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277826,0.000000,0.000000,0.250000,0,0);}
.m47_c01230{transform:matrix(0.278341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278341,0.000000,0.000000,0.250000,0,0);}
.m3e_c01230{transform:matrix(0.278692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278692,0.000000,0.000000,0.250000,0,0);}
.mc_c01230{transform:matrix(0.279158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279158,0.000000,0.000000,0.250000,0,0);}
.m52_c01230{transform:matrix(0.280232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280232,0.000000,0.000000,0.250000,0,0);}
.m18_c01230{transform:matrix(0.280635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280635,0.000000,0.000000,0.250000,0,0);}
.m5e_c01230{transform:matrix(0.280948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280948,0.000000,0.000000,0.250000,0,0);}
.m4f_c01230{transform:matrix(0.281777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281777,0.000000,0.000000,0.250000,0,0);}
.m66_c01230{transform:matrix(0.281931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281931,0.000000,0.000000,0.250000,0,0);}
.m12_c01230{transform:matrix(0.283546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283546,0.000000,0.000000,0.250000,0,0);}
.m53_c01230{transform:matrix(0.283769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283769,0.000000,0.000000,0.250000,0,0);}
.m4a_c01230{transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283977,0.000000,0.000000,0.250000,0,0);}
.m55_c01230{transform:matrix(0.284084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284084,0.000000,0.000000,0.250000,0,0);}
.m16_c01230{transform:matrix(0.284334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284334,0.000000,0.000000,0.250000,0,0);}
.m64_c01230{transform:matrix(0.286224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286224,0.000000,0.000000,0.250000,0,0);}
.m32_c01230{transform:matrix(0.286596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286596,0.000000,0.000000,0.250000,0,0);}
.m27_c01230{transform:matrix(0.289014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289014,0.000000,0.000000,0.250000,0,0);}
.m68_c01230{transform:matrix(0.289173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289173,0.000000,0.000000,0.250000,0,0);}
.m62_c01230{transform:matrix(0.289929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289929,0.000000,0.000000,0.250000,0,0);}
.m6_c01230{transform:matrix(0.297360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297360,0.000000,0.000000,0.250000,0,0);}
.m22_c01230{transform:matrix(0.301058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301058,0.000000,0.000000,0.250000,0,0);}
.m1f_c01230{transform:matrix(0.301946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301946,0.000000,0.000000,0.250000,0,0);}
.m59_c01230{transform:matrix(0.304610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304610,0.000000,0.000000,0.250000,0,0);}
.m1a_c01230{transform:matrix(0.307458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307458,0.000000,0.000000,0.250000,0,0);}
.m56_c01230{transform:matrix(0.310447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310447,0.000000,0.000000,0.250000,0,0);}
.m7_c01230{transform:matrix(0.310696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310696,0.000000,0.000000,0.250000,0,0);}
.m4c_c01230{transform:matrix(0.311068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311068,0.000000,0.000000,0.250000,0,0);}
.m28_c01230{transform:matrix(0.312509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312509,0.000000,0.000000,0.250000,0,0);}
.m35_c01230{transform:matrix(0.313550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313550,0.000000,0.000000,0.250000,0,0);}
.m51_c01230{transform:matrix(0.319433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319433,0.000000,0.000000,0.250000,0,0);}
.m60_c01230{transform:matrix(0.320282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320282,0.000000,0.000000,0.250000,0,0);}
.m21_c01230{transform:matrix(0.321019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321019,0.000000,0.000000,0.250000,0,0);}
.m4_c01230{transform:matrix(0.322243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322243,0.000000,0.000000,0.250000,0,0);}
.m37_c01230{transform:matrix(0.322502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322502,0.000000,0.000000,0.250000,0,0);}
.m3c_c01230{transform:matrix(0.324954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324954,0.000000,0.000000,0.250000,0,0);}
.m8_c01230{transform:matrix(0.333287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333287,0.000000,0.000000,0.250000,0,0);}
.m31_c01230{transform:matrix(0.358891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358891,0.000000,0.000000,0.250000,0,0);}
.m54_c01230{transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370468,0.000000,0.000000,0.250000,0,0);}
.m3f_c01230{transform:matrix(0.377813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377813,0.000000,0.000000,0.250000,0,0);}
.v0_c01230{vertical-align:0.000000px;}
.ls4_c01230{letter-spacing:-2.855167px;}
.ls9_c01230{letter-spacing:-2.585965px;}
.ls2_c01230{letter-spacing:0.000000px;}
.ls8_c01230{letter-spacing:0.342620px;}
.lsa_c01230{letter-spacing:2.218873px;}
.ls6_c01230{letter-spacing:2.895955px;}
.lsb_c01230{letter-spacing:3.271206px;}
.ls0_c01230{letter-spacing:3.295678px;}
.ls1_c01230{letter-spacing:3.638298px;}
.ls7_c01230{letter-spacing:3.907500px;}
.ls5_c01230{letter-spacing:4.046179px;}
.ls3_c01230{letter-spacing:4.078810px;}
.lsc_c01230{letter-spacing:51.321798px;}
.sc__c01230{text-shadow:none;}
.sc0_c01230{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01230{-webkit-text-stroke:0px transparent;}
.sc0_c01230{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01230{word-spacing:0.000000px;}
._5_c01230{margin-left:-28.365579px;}
._3_c01230{margin-left:-13.792256px;}
._4_c01230{width:2.447211px;}
._2_c01230{width:8.565486px;}
._6_c01230{width:19.376826px;}
._0_c01230{width:28.389240px;}
._1_c01230{width:30.346333px;}
._7_c01230{width:32.385743px;}
.fc0_c01230{color:transparent;}
.fs2_c01230{font-size:16.632000px;}
.fs7_c01230{font-size:24.948000px;}
.fs4_c01230{font-size:26.928000px;}
.fs1_c01230{font-size:27.720000px;}
.fs0_c01230{font-size:39.600000px;}
.fs9_c01230{font-size:51.321798px;}
.fs5_c01230{font-size:60.192000px;}
.fs6_c01230{font-size:66.528000px;}
.fs8_c01230{font-size:78.804000px;}
.fs3_c01230{font-size:81.576198px;}
.y0_c01230{bottom:0.000000px;}
.y3_c01230{bottom:48.020985px;}
.y1_c01230{bottom:76.500000px;}
.y2_c01230{bottom:80.101935px;}
.y1a_c01230{bottom:103.619385px;}
.y19_c01230{bottom:136.056735px;}
.y18_c01230{bottom:200.203785px;}
.y17_c01230{bottom:231.928335px;}
.y16_c01230{bottom:295.718985px;}
.y15_c01230{bottom:311.400585px;}
.y14_c01230{bottom:324.235935px;}
.y13_c01230{bottom:359.875935px;}
.y12_c01230{bottom:373.057785px;}
.y11_c01230{bottom:391.239135px;}
.y10_c01230{bottom:454.321935px;}
.yf_c01230{bottom:486.392985px;}
.ye_c01230{bottom:503.148735px;}
.yd_c01230{bottom:517.399785px;}
.yc_c01230{bottom:581.556735px;}
.yb_c01230{bottom:634.655385px;}
.ya_c01230{bottom:667.087785px;}
.y9_c01230{bottom:729.457785px;}
.y8_c01230{bottom:761.538735px;}
.y7_c01230{bottom:824.616585px;}
.y6_c01230{bottom:888.060735px;}
.y5_c01230{bottom:920.136735px;}
.y4_c01230{bottom:1058.414985px;}
.h8_c01230{height:26.019984px;}
.h5_c01230{height:28.085063px;}
.h3_c01230{height:28.911094px;}
.ha_c01230{height:34.180317px;}
.h2_c01230{height:41.301563px;}
.h6_c01230{height:62.778375px;}
.h7_c01230{height:69.386625px;}
.h9_c01230{height:77.341816px;}
.h4_c01230{height:80.062577px;}
.h1_c01230{height:1110.000000px;}
.h0_c01230{height:1263.000000px;}
.w1_c01230{width:775.500000px;}
.w0_c01230{width:892.500000px;}
.x0_c01230{left:0.000000px;}
.x1_c01230{left:58.500000px;}
.x3_c01230{left:61.178685px;}
.x2_c01230{left:73.875435px;}
.x28_c01230{left:85.428735px;}
.x17_c01230{left:86.512785px;}
.x5_c01230{left:87.577035px;}
.x43_c01230{left:118.390785px;}
.x2e_c01230{left:128.949135px;}
.x2f_c01230{left:150.649935px;}
.x3b_c01230{left:151.966635px;}
.x21_c01230{left:163.717935px;}
.x6_c01230{left:173.093235px;}
.x18_c01230{left:184.834635px;}
.x3f_c01230{left:194.477235px;}
.xd_c01230{left:195.605835px;}
.x27_c01230{left:197.051235px;}
.x13_c01230{left:206.644335px;}
.x37_c01230{left:214.356435px;}
.x29_c01230{left:218.351085px;}
.x30_c01230{left:230.176635px;}
.x44_c01230{left:240.091485px;}
.x4e_c01230{left:250.422135px;}
.x3c_c01230{left:252.456585px;}
.xe_c01230{left:262.618935px;}
.x14_c01230{left:273.152535px;}
.x31_c01230{left:274.553385px;}
.x20_c01230{left:284.349435px;}
.x38_c01230{left:286.126485px;}
.x19_c01230{left:294.967185px;}
.x3d_c01230{left:296.640285px;}
.x2a_c01230{left:297.719385px;}
.x51_c01230{left:317.489685px;}
.x49_c01230{left:319.034085px;}
.x22_c01230{left:329.250885px;}
.x7_c01230{left:330.864585px;}
.x2b_c01230{left:339.779535px;}
.x32_c01230{left:341.210085px;}
.x1a_c01230{left:351.981285px;}
.x4c_c01230{left:372.692085px;}
.x33_c01230{left:374.429535px;}
.x8_c01230{left:385.893735px;}
.xf_c01230{left:396.813435px;}
.x40_c01230{left:398.140035px;}
.x2c_c01230{left:408.198435px;}
.x1b_c01230{left:419.266635px;}
.x10_c01230{left:428.632035px;}
.x15_c01230{left:430.404135px;}
.x23_c01230{left:440.452635px;}
.x1c_c01230{left:452.768235px;}
.x4d_c01230{left:461.836635px;}
.x9_c01230{left:463.212735px;}
.x45_c01230{left:473.949285px;}
.x4f_c01230{left:483.943335px;}
.x52_c01230{left:496.546035px;}
.x24_c01230{left:507.431085px;}
.x11_c01230{left:517.727085px;}
.x1d_c01230{left:529.107135px;}
.x4a_c01230{left:539.724885px;}
.x34_c01230{left:541.155435px;}
.xa_c01230{left:552.139485px;}
.x46_c01230{left:572.261235px;}
.x35_c01230{left:573.889785px;}
.x1e_c01230{left:585.151035px;}
.x16_c01230{left:595.422285px;}
.x2d_c01230{left:606.460785px;}
.x50_c01230{left:619.692135px;}
.x4b_c01230{left:628.765485px;}
.x25_c01230{left:629.770335px;}
.x12_c01230{left:639.323835px;}
.x1f_c01230{left:651.332535px;}
.x47_c01230{left:661.108785px;}
.x4_c01230{left:662.623485px;}
.x39_c01230{left:672.414585px;}
.xb_c01230{left:676.107285px;}
.xc_c01230{left:695.555835px;}
.x3e_c01230{left:706.232985px;}
.x36_c01230{left:707.564535px;}
.x41_c01230{left:710.029635px;}
.x42_c01230{left:711.514635px;}
.x3a_c01230{left:717.905085px;}
.x26_c01230{left:720.657285px;}
.x48_c01230{left:728.720835px;}
@media print{
.v0_c01230{vertical-align:0.000000pt;}
.ls4_c01230{letter-spacing:-2.537926pt;}
.ls9_c01230{letter-spacing:-2.298636pt;}
.ls2_c01230{letter-spacing:0.000000pt;}
.ls8_c01230{letter-spacing:0.304551pt;}
.lsa_c01230{letter-spacing:1.972331pt;}
.ls6_c01230{letter-spacing:2.574182pt;}
.lsb_c01230{letter-spacing:2.907738pt;}
.ls0_c01230{letter-spacing:2.929492pt;}
.ls1_c01230{letter-spacing:3.234043pt;}
.ls7_c01230{letter-spacing:3.473333pt;}
.ls5_c01230{letter-spacing:3.596604pt;}
.ls3_c01230{letter-spacing:3.625609pt;}
.lsc_c01230{letter-spacing:45.619376pt;}
.ws0_c01230{word-spacing:0.000000pt;}
._5_c01230{margin-left:-25.213848pt;}
._3_c01230{margin-left:-12.259784pt;}
._4_c01230{width:2.175298pt;}
._2_c01230{width:7.613765pt;}
._6_c01230{width:17.223845pt;}
._0_c01230{width:25.234880pt;}
._1_c01230{width:26.974518pt;}
._7_c01230{width:28.787328pt;}
.fs2_c01230{font-size:14.784000pt;}
.fs7_c01230{font-size:22.176000pt;}
.fs4_c01230{font-size:23.936000pt;}
.fs1_c01230{font-size:24.640000pt;}
.fs0_c01230{font-size:35.200000pt;}
.fs9_c01230{font-size:45.619376pt;}
.fs5_c01230{font-size:53.504000pt;}
.fs6_c01230{font-size:59.136000pt;}
.fs8_c01230{font-size:70.048000pt;}
.fs3_c01230{font-size:72.512176pt;}
.y0_c01230{bottom:0.000000pt;}
.y3_c01230{bottom:42.685320pt;}
.y1_c01230{bottom:68.000000pt;}
.y2_c01230{bottom:71.201720pt;}
.y1a_c01230{bottom:92.106120pt;}
.y19_c01230{bottom:120.939320pt;}
.y18_c01230{bottom:177.958920pt;}
.y17_c01230{bottom:206.158520pt;}
.y16_c01230{bottom:262.861320pt;}
.y15_c01230{bottom:276.800520pt;}
.y14_c01230{bottom:288.209720pt;}
.y13_c01230{bottom:319.889720pt;}
.y12_c01230{bottom:331.606920pt;}
.y11_c01230{bottom:347.768120pt;}
.y10_c01230{bottom:403.841720pt;}
.yf_c01230{bottom:432.349320pt;}
.ye_c01230{bottom:447.243320pt;}
.yd_c01230{bottom:459.910920pt;}
.yc_c01230{bottom:516.939320pt;}
.yb_c01230{bottom:564.138120pt;}
.ya_c01230{bottom:592.966920pt;}
.y9_c01230{bottom:648.406920pt;}
.y8_c01230{bottom:676.923320pt;}
.y7_c01230{bottom:732.992520pt;}
.y6_c01230{bottom:789.387320pt;}
.y5_c01230{bottom:817.899320pt;}
.y4_c01230{bottom:940.813320pt;}
.h8_c01230{height:23.128875pt;}
.h5_c01230{height:24.964500pt;}
.h3_c01230{height:25.698750pt;}
.ha_c01230{height:30.382504pt;}
.h2_c01230{height:36.712500pt;}
.h6_c01230{height:55.803000pt;}
.h7_c01230{height:61.677000pt;}
.h9_c01230{height:68.748281pt;}
.h4_c01230{height:71.166735pt;}
.h1_c01230{height:986.666667pt;}
.h0_c01230{height:1122.666667pt;}
.w1_c01230{width:689.333333pt;}
.w0_c01230{width:793.333333pt;}
.x0_c01230{left:0.000000pt;}
.x1_c01230{left:52.000000pt;}
.x3_c01230{left:54.381053pt;}
.x2_c01230{left:65.667053pt;}
.x28_c01230{left:75.936653pt;}
.x17_c01230{left:76.900253pt;}
.x5_c01230{left:77.846253pt;}
.x43_c01230{left:105.236253pt;}
.x2e_c01230{left:114.621453pt;}
.x2f_c01230{left:133.911053pt;}
.x3b_c01230{left:135.081453pt;}
.x21_c01230{left:145.527053pt;}
.x6_c01230{left:153.860653pt;}
.x18_c01230{left:164.297453pt;}
.x3f_c01230{left:172.868653pt;}
.xd_c01230{left:173.871853pt;}
.x27_c01230{left:175.156653pt;}
.x13_c01230{left:183.683853pt;}
.x37_c01230{left:190.539053pt;}
.x29_c01230{left:194.089853pt;}
.x30_c01230{left:204.601453pt;}
.x44_c01230{left:213.414653pt;}
.x4e_c01230{left:222.597453pt;}
.x3c_c01230{left:224.405853pt;}
.xe_c01230{left:233.439053pt;}
.x14_c01230{left:242.802253pt;}
.x31_c01230{left:244.047453pt;}
.x20_c01230{left:252.755053pt;}
.x38_c01230{left:254.334653pt;}
.x19_c01230{left:262.193053pt;}
.x3d_c01230{left:263.680253pt;}
.x2a_c01230{left:264.639453pt;}
.x51_c01230{left:282.213053pt;}
.x49_c01230{left:283.585853pt;}
.x22_c01230{left:292.667453pt;}
.x7_c01230{left:294.101853pt;}
.x2b_c01230{left:302.026253pt;}
.x32_c01230{left:303.297853pt;}
.x1a_c01230{left:312.872253pt;}
.x4c_c01230{left:331.281853pt;}
.x33_c01230{left:332.826253pt;}
.x8_c01230{left:343.016653pt;}
.xf_c01230{left:352.723053pt;}
.x40_c01230{left:353.902253pt;}
.x2c_c01230{left:362.843053pt;}
.x1b_c01230{left:372.681453pt;}
.x10_c01230{left:381.006253pt;}
.x15_c01230{left:382.581453pt;}
.x23_c01230{left:391.513453pt;}
.x1c_c01230{left:402.460653pt;}
.x4d_c01230{left:410.521453pt;}
.x9_c01230{left:411.744653pt;}
.x45_c01230{left:421.288253pt;}
.x4f_c01230{left:430.171853pt;}
.x52_c01230{left:441.374253pt;}
.x24_c01230{left:451.049853pt;}
.x11_c01230{left:460.201853pt;}
.x1d_c01230{left:470.317453pt;}
.x4a_c01230{left:479.755453pt;}
.x34_c01230{left:481.027053pt;}
.xa_c01230{left:490.790653pt;}
.x46_c01230{left:508.676653pt;}
.x35_c01230{left:510.124253pt;}
.x1e_c01230{left:520.134253pt;}
.x16_c01230{left:529.264253pt;}
.x2d_c01230{left:539.076253pt;}
.x50_c01230{left:550.837453pt;}
.x4b_c01230{left:558.902653pt;}
.x25_c01230{left:559.795853pt;}
.x12_c01230{left:568.287853pt;}
.x1f_c01230{left:578.962253pt;}
.x47_c01230{left:587.652253pt;}
.x4_c01230{left:588.998653pt;}
.x39_c01230{left:597.701853pt;}
.xb_c01230{left:600.984253pt;}
.xc_c01230{left:618.271853pt;}
.x3e_c01230{left:627.762653pt;}
.x36_c01230{left:628.946253pt;}
.x41_c01230{left:631.137453pt;}
.x42_c01230{left:632.457453pt;}
.x3a_c01230{left:638.137853pt;}
.x26_c01230{left:640.584253pt;}
.x48_c01230{left:647.751853pt;}
}





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

.ir_c01231:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01231{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01231;src:url('chunks/assets/font_f0938ee285ad38d7b2c5671e.woff2')format("woff");}.ff1_c01231{font-family:ff1_c01231;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01231;src:url('chunks/assets/font_5329db9f1a0d0539b1f55d55.woff2')format("woff");}.ff2_c01231{font-family:ff2_c01231;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01231;src:url('chunks/assets/font_69608b8d0541826e6be69af3.woff2')format("woff");}.ff3_c01231{font-family:ff3_c01231;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01231;src:url('chunks/assets/font_85eb11058df412c75179deab.woff2')format("woff");}.ff4_c01231{font-family:ff4_c01231;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01231;src:url('chunks/assets/font_19475c635d50d5fda45df604.woff2')format("woff");}.ff5_c01231{font-family:ff5_c01231;line-height:1.402354;font-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_c01231{transform:matrix(0.087698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087698,0.000000,0.000000,0.250000,0,0);}
.m56_c01231{transform:matrix(0.147436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147436,0.000000,0.000000,0.250000,0,0);}
.m34_c01231{transform:matrix(0.179846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179846,0.000000,0.000000,0.250000,0,0);}
.m49_c01231{transform:matrix(0.186806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186806,0.000000,0.000000,0.250000,0,0);}
.m55_c01231{transform:matrix(0.197436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197436,0.000000,0.000000,0.250000,0,0);}
.m1_c01231{transform:matrix(0.230261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230261,0.000000,0.000000,0.250000,0,0);}
.m74_c01231{transform:matrix(0.233851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233851,0.000000,0.000000,0.250000,0,0);}
.m35_c01231{transform:matrix(0.240487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240487,0.000000,0.000000,0.250000,0,0);}
.m19_c01231{transform:matrix(0.243251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243251,0.000000,0.000000,0.250000,0,0);}
.m5_c01231{transform:matrix(0.247911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247911,0.000000,0.000000,0.250000,0,0);}
.m12_c01231{transform:matrix(0.249104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249104,0.000000,0.000000,0.250000,0,0);}
.m2_c01231{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m14_c01231{transform:matrix(0.252014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252014,0.000000,0.000000,0.250000,0,0);}
.m64_c01231{transform:matrix(0.252518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252518,0.000000,0.000000,0.250000,0,0);}
.m73_c01231{transform:matrix(0.252931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252931,0.000000,0.000000,0.250000,0,0);}
.m7_c01231{transform:matrix(0.253561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253561,0.000000,0.000000,0.250000,0,0);}
.m29_c01231{transform:matrix(0.253753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253753,0.000000,0.000000,0.250000,0,0);}
.m10_c01231{transform:matrix(0.255236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255236,0.000000,0.000000,0.250000,0,0);}
.m20_c01231{transform:matrix(0.255935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255935,0.000000,0.000000,0.250000,0,0);}
.m6_c01231{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m3e_c01231{transform:matrix(0.256720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256720,0.000000,0.000000,0.250000,0,0);}
.m17_c01231{transform:matrix(0.256799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256799,0.000000,0.000000,0.250000,0,0);}
.m6b_c01231{transform:matrix(0.257218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257218,0.000000,0.000000,0.250000,0,0);}
.m40_c01231{transform:matrix(0.258090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258090,0.000000,0.000000,0.250000,0,0);}
.m2c_c01231{transform:matrix(0.258630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258630,0.000000,0.000000,0.250000,0,0);}
.m75_c01231{transform:matrix(0.259726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259726,0.000000,0.000000,0.250000,0,0);}
.m7d_c01231{transform:matrix(0.260745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260745,0.000000,0.000000,0.250000,0,0);}
.m4d_c01231{transform:matrix(0.260941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260941,0.000000,0.000000,0.250000,0,0);}
.m4b_c01231{transform:matrix(0.261424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261424,0.000000,0.000000,0.250000,0,0);}
.m1e_c01231{transform:matrix(0.261553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261553,0.000000,0.000000,0.250000,0,0);}
.m3c_c01231{transform:matrix(0.262618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262618,0.000000,0.000000,0.250000,0,0);}
.m54_c01231{transform:matrix(0.263014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263014,0.000000,0.000000,0.250000,0,0);}
.m21_c01231{transform:matrix(0.264489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264489,0.000000,0.000000,0.250000,0,0);}
.m86_c01231{transform:matrix(0.264565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264565,0.000000,0.000000,0.250000,0,0);}
.m82_c01231{transform:matrix(0.265364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265364,0.000000,0.000000,0.250000,0,0);}
.m60_c01231{transform:matrix(0.265519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265519,0.000000,0.000000,0.250000,0,0);}
.m80_c01231{transform:matrix(0.265799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265799,0.000000,0.000000,0.250000,0,0);}
.m69_c01231{transform:matrix(0.266153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266153,0.000000,0.000000,0.250000,0,0);}
.m62_c01231{transform:matrix(0.266666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266666,0.000000,0.000000,0.250000,0,0);}
.mb_c01231{transform:matrix(0.266974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266974,0.000000,0.000000,0.250000,0,0);}
.m18_c01231{transform:matrix(0.267256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267256,0.000000,0.000000,0.250000,0,0);}
.m57_c01231{transform:matrix(0.267450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267450,0.000000,0.000000,0.250000,0,0);}
.m0_c01231{transform:matrix(0.268372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268372,0.000000,0.000000,0.250000,0,0);}
.m47_c01231{transform:matrix(0.269121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269121,0.000000,0.000000,0.250000,0,0);}
.m87_c01231{transform:matrix(0.269265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269265,0.000000,0.000000,0.250000,0,0);}
.m8a_c01231{transform:matrix(0.269732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269732,0.000000,0.000000,0.250000,0,0);}
.m89_c01231{transform:matrix(0.270031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270031,0.000000,0.000000,0.250000,0,0);}
.mf_c01231{transform:matrix(0.270099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270099,0.000000,0.000000,0.250000,0,0);}
.m66_c01231{transform:matrix(0.270109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270109,0.000000,0.000000,0.250000,0,0);}
.m83_c01231{transform:matrix(0.271137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271137,0.000000,0.000000,0.250000,0,0);}
.m46_c01231{transform:matrix(0.271605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271605,0.000000,0.000000,0.250000,0,0);}
.m44_c01231{transform:matrix(0.272573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272573,0.000000,0.000000,0.250000,0,0);}
.m77_c01231{transform:matrix(0.273056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273056,0.000000,0.000000,0.250000,0,0);}
.m7f_c01231{transform:matrix(0.273478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273478,0.000000,0.000000,0.250000,0,0);}
.m48_c01231{transform:matrix(0.274073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274073,0.000000,0.000000,0.250000,0,0);}
.m3f_c01231{transform:matrix(0.275382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275382,0.000000,0.000000,0.250000,0,0);}
.m7e_c01231{transform:matrix(0.276001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276001,0.000000,0.000000,0.250000,0,0);}
.m33_c01231{transform:matrix(0.276154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276154,0.000000,0.000000,0.250000,0,0);}
.m78_c01231{transform:matrix(0.276442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276442,0.000000,0.000000,0.250000,0,0);}
.m3b_c01231{transform:matrix(0.277343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277343,0.000000,0.000000,0.250000,0,0);}
.m81_c01231{transform:matrix(0.278169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278169,0.000000,0.000000,0.250000,0,0);}
.m1a_c01231{transform:matrix(0.278538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278538,0.000000,0.000000,0.250000,0,0);}
.m42_c01231{transform:matrix(0.279240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279240,0.000000,0.000000,0.250000,0,0);}
.m6c_c01231{transform:matrix(0.279689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279689,0.000000,0.000000,0.250000,0,0);}
.m41_c01231{transform:matrix(0.280512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280512,0.000000,0.000000,0.250000,0,0);}
.m43_c01231{transform:matrix(0.280689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280689,0.000000,0.000000,0.250000,0,0);}
.m1b_c01231{transform:matrix(0.280781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280781,0.000000,0.000000,0.250000,0,0);}
.m1d_c01231{transform:matrix(0.281360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281360,0.000000,0.000000,0.250000,0,0);}
.m28_c01231{transform:matrix(0.281837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281837,0.000000,0.000000,0.250000,0,0);}
.m38_c01231{transform:matrix(0.282072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282072,0.000000,0.000000,0.250000,0,0);}
.m30_c01231{transform:matrix(0.282839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282839,0.000000,0.000000,0.250000,0,0);}
.m85_c01231{transform:matrix(0.283636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283636,0.000000,0.000000,0.250000,0,0);}
.m7a_c01231{transform:matrix(0.283942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283942,0.000000,0.000000,0.250000,0,0);}
.m5c_c01231{transform:matrix(0.284686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284686,0.000000,0.000000,0.250000,0,0);}
.m88_c01231{transform:matrix(0.285012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285012,0.000000,0.000000,0.250000,0,0);}
.m16_c01231{transform:matrix(0.285564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285564,0.000000,0.000000,0.250000,0,0);}
.m72_c01231{transform:matrix(0.285629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285629,0.000000,0.000000,0.250000,0,0);}
.m2a_c01231{transform:matrix(0.286389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286389,0.000000,0.000000,0.250000,0,0);}
.m36_c01231{transform:matrix(0.286402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286402,0.000000,0.000000,0.250000,0,0);}
.m53_c01231{transform:matrix(0.286572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286572,0.000000,0.000000,0.250000,0,0);}
.m58_c01231{transform:matrix(0.288320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288320,0.000000,0.000000,0.250000,0,0);}
.m63_c01231{transform:matrix(0.288452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288452,0.000000,0.000000,0.250000,0,0);}
.m3_c01231{transform:matrix(0.289161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289161,0.000000,0.000000,0.250000,0,0);}
.m45_c01231{transform:matrix(0.289224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289224,0.000000,0.000000,0.250000,0,0);}
.m11_c01231{transform:matrix(0.289837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289837,0.000000,0.000000,0.250000,0,0);}
.m26_c01231{transform:matrix(0.290626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290626,0.000000,0.000000,0.250000,0,0);}
.m5e_c01231{transform:matrix(0.290689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290689,0.000000,0.000000,0.250000,0,0);}
.m8_c01231{transform:matrix(0.291035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291035,0.000000,0.000000,0.250000,0,0);}
.m70_c01231{transform:matrix(0.291505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291505,0.000000,0.000000,0.250000,0,0);}
.m2b_c01231{transform:matrix(0.292152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292152,0.000000,0.000000,0.250000,0,0);}
.m76_c01231{transform:matrix(0.293802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293802,0.000000,0.000000,0.250000,0,0);}
.mc_c01231{transform:matrix(0.294411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294411,0.000000,0.000000,0.250000,0,0);}
.m2d_c01231{transform:matrix(0.294793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294793,0.000000,0.000000,0.250000,0,0);}
.m79_c01231{transform:matrix(0.295670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295670,0.000000,0.000000,0.250000,0,0);}
.m15_c01231{transform:matrix(0.297135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297135,0.000000,0.000000,0.250000,0,0);}
.m31_c01231{transform:matrix(0.297166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297166,0.000000,0.000000,0.250000,0,0);}
.m5a_c01231{transform:matrix(0.297386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297386,0.000000,0.000000,0.250000,0,0);}
.md_c01231{transform:matrix(0.297559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297559,0.000000,0.000000,0.250000,0,0);}
.m22_c01231{transform:matrix(0.299571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299571,0.000000,0.000000,0.250000,0,0);}
.m39_c01231{transform:matrix(0.299577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299577,0.000000,0.000000,0.250000,0,0);}
.m4c_c01231{transform:matrix(0.300115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300115,0.000000,0.000000,0.250000,0,0);}
.m51_c01231{transform:matrix(0.300595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300595,0.000000,0.000000,0.250000,0,0);}
.m4_c01231{transform:matrix(0.300722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300722,0.000000,0.000000,0.250000,0,0);}
.m4a_c01231{transform:matrix(0.301940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301940,0.000000,0.000000,0.250000,0,0);}
.m71_c01231{transform:matrix(0.302200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302200,0.000000,0.000000,0.250000,0,0);}
.m67_c01231{transform:matrix(0.302384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302384,0.000000,0.000000,0.250000,0,0);}
.m32_c01231{transform:matrix(0.302430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302430,0.000000,0.000000,0.250000,0,0);}
.m52_c01231{transform:matrix(0.303465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303465,0.000000,0.000000,0.250000,0,0);}
.m2e_c01231{transform:matrix(0.304129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304129,0.000000,0.000000,0.250000,0,0);}
.m9_c01231{transform:matrix(0.306164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306164,0.000000,0.000000,0.250000,0,0);}
.m6e_c01231{transform:matrix(0.306390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306390,0.000000,0.000000,0.250000,0,0);}
.m6d_c01231{transform:matrix(0.311297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311297,0.000000,0.000000,0.250000,0,0);}
.m5f_c01231{transform:matrix(0.313898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313898,0.000000,0.000000,0.250000,0,0);}
.m3d_c01231{transform:matrix(0.315267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315267,0.000000,0.000000,0.250000,0,0);}
.m5d_c01231{transform:matrix(0.315288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315288,0.000000,0.000000,0.250000,0,0);}
.m7c_c01231{transform:matrix(0.316473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316473,0.000000,0.000000,0.250000,0,0);}
.m23_c01231{transform:matrix(0.316815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316815,0.000000,0.000000,0.250000,0,0);}
.m27_c01231{transform:matrix(0.319424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319424,0.000000,0.000000,0.250000,0,0);}
.m1c_c01231{transform:matrix(0.320605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320605,0.000000,0.000000,0.250000,0,0);}
.m2f_c01231{transform:matrix(0.321154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321154,0.000000,0.000000,0.250000,0,0);}
.m61_c01231{transform:matrix(0.322377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322377,0.000000,0.000000,0.250000,0,0);}
.m50_c01231{transform:matrix(0.325064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325064,0.000000,0.000000,0.250000,0,0);}
.m1f_c01231{transform:matrix(0.328651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328651,0.000000,0.000000,0.250000,0,0);}
.m6a_c01231{transform:matrix(0.328815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328815,0.000000,0.000000,0.250000,0,0);}
.m65_c01231{transform:matrix(0.329270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329270,0.000000,0.000000,0.250000,0,0);}
.m25_c01231{transform:matrix(0.329482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329482,0.000000,0.000000,0.250000,0,0);}
.m24_c01231{transform:matrix(0.330520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330520,0.000000,0.000000,0.250000,0,0);}
.m13_c01231{transform:matrix(0.334324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334324,0.000000,0.000000,0.250000,0,0);}
.m4e_c01231{transform:matrix(0.335907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335907,0.000000,0.000000,0.250000,0,0);}
.m7b_c01231{transform:matrix(0.336134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336134,0.000000,0.000000,0.250000,0,0);}
.m4f_c01231{transform:matrix(0.337386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337386,0.000000,0.000000,0.250000,0,0);}
.m84_c01231{transform:matrix(0.342252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342252,0.000000,0.000000,0.250000,0,0);}
.m59_c01231{transform:matrix(0.344266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344266,0.000000,0.000000,0.250000,0,0);}
.ma_c01231{transform:matrix(0.344637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344637,0.000000,0.000000,0.250000,0,0);}
.m3a_c01231{transform:matrix(0.344664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344664,0.000000,0.000000,0.250000,0,0);}
.m5b_c01231{transform:matrix(0.346369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346369,0.000000,0.000000,0.250000,0,0);}
.m37_c01231{transform:matrix(0.363123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363123,0.000000,0.000000,0.250000,0,0);}
.m6f_c01231{transform:matrix(0.383707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383707,0.000000,0.000000,0.250000,0,0);}
.m68_c01231{transform:matrix(0.412704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412704,0.000000,0.000000,0.250000,0,0);}
.v0_c01231{vertical-align:0.000000px;}
.v1_c01231{vertical-align:57.004200px;}
.ls3_c01231{letter-spacing:-2.799727px;}
.ls16_c01231{letter-spacing:-1.279875px;}
.ls15_c01231{letter-spacing:-1.039899px;}
.ls14_c01231{letter-spacing:-0.807921px;}
.lsd_c01231{letter-spacing:-0.567945px;}
.ls5_c01231{letter-spacing:0.000000px;}
.ls13_c01231{letter-spacing:0.855917px;}
.ls0_c01231{letter-spacing:1.199883px;}
.lsa_c01231{letter-spacing:1.983807px;}
.ls6_c01231{letter-spacing:2.015803px;}
.ls7_c01231{letter-spacing:2.059200px;}
.ls9_c01231{letter-spacing:2.439762px;}
.ls11_c01231{letter-spacing:2.911716px;}
.ls4_c01231{letter-spacing:2.951712px;}
.ls12_c01231{letter-spacing:3.405610px;}
.ls10_c01231{letter-spacing:3.695640px;}
.lsc_c01231{letter-spacing:3.863623px;}
.ls2_c01231{letter-spacing:3.999610px;}
.lse_c01231{letter-spacing:4.207500px;}
.lsf_c01231{letter-spacing:55.598598px;}
.lsb_c01231{letter-spacing:57.024198px;}
.ls8_c01231{letter-spacing:59.875398px;}
.ls1_c01231{letter-spacing:1947.080520px;}
.sc__c01231{text-shadow:none;}
.sc0_c01231{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01231{-webkit-text-stroke:0px transparent;}
.sc0_c01231{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01231{word-spacing:-21.197932px;}
.ws1_c01231{word-spacing:0.000000px;}
._2_c01231{margin-left:-15.517722px;}
._3_c01231{width:1.599771px;}
._1_c01231{width:5.119160px;}
._0_c01231{width:6.959205px;}
.fc0_c01231{color:transparent;}
.fs1_c01231{font-size:41.184000px;}
.fs6_c01231{font-size:43.560000px;}
.fs5_c01231{font-size:55.598598px;}
.fs3_c01231{font-size:57.024198px;}
.fs2_c01231{font-size:59.875398px;}
.fs8_c01231{font-size:60.192000px;}
.fs7_c01231{font-size:68.112198px;}
.fs0_c01231{font-size:79.992198px;}
.fs4_c01231{font-size:84.150000px;}
.y0_c01231{bottom:0.000000px;}
.y1a_c01231{bottom:36.616185px;}
.y19_c01231{bottom:72.261135px;}
.y1_c01231{bottom:76.500000px;}
.y18_c01231{bottom:116.811135px;}
.y17_c01231{bottom:136.056735px;}
.y16_c01231{bottom:167.776335px;}
.y14_c01231{bottom:231.921653px;}
.y15_c01231{bottom:231.928335px;}
.y13_c01231{bottom:296.075385px;}
.y12_c01231{bottom:327.799935px;}
.y11_c01231{bottom:361.657935px;}
.y10_c01231{bottom:391.239135px;}
.yf_c01231{bottom:423.666585px;}
.ye_c01231{bottom:486.397935px;}
.yd_c01231{bottom:518.468985px;}
.yc_c01231{bottom:581.908185px;}
.yb_c01231{bottom:613.632735px;}
.ya_c01231{bottom:645.703785px;}
.y9_c01231{bottom:709.147935px;}
.y8_c01231{bottom:740.511135px;}
.y7_c01231{bottom:772.943535px;}
.y6_c01231{bottom:804.658185px;}
.y5_c01231{bottom:868.453785px;}
.y4_c01231{bottom:900.534735px;}
.y3_c01231{bottom:932.249385px;}
.y2_c01231{bottom:1067.329935px;}
.h7_c01231{height:37.028666px;}
.h5_c01231{height:37.978116px;}
.h4_c01231{height:39.877015px;}
.h3_c01231{height:40.419844px;}
.h8_c01231{height:42.751758px;}
.h9_c01231{height:71.038894px;}
.h2_c01231{height:78.507968px;}
.h6_c01231{height:82.547534px;}
.ha_c01231{height:118.872091px;}
.h1_c01231{height:1110.000000px;}
.h0_c01231{height:1263.000000px;}
.w1_c01231{width:775.500000px;}
.w0_c01231{width:892.500000px;}
.x0_c01231{left:0.000000px;}
.x1_c01231{left:58.500000px;}
.x1e_c01231{left:85.428735px;}
.x3_c01231{left:86.859285px;}
.x1f_c01231{left:162.396285px;}
.x4_c01231{left:172.741785px;}
.x3f_c01231{left:173.880285px;}
.x50_c01231{left:182.904135px;}
.x3e_c01231{left:184.131735px;}
.x3a_c01231{left:195.244485px;}
.xd_c01231{left:196.873035px;}
.x2b_c01231{left:197.897685px;}
.xe_c01231{left:208.545135px;}
.x49_c01231{left:216.222585px;}
.x40_c01231{left:217.747185px;}
.x5_c01231{left:220.504335px;}
.x20_c01231{left:229.399485px;}
.x31_c01231{left:231.617085px;}
.x3c_c01231{left:239.363835px;}
.xf_c01231{left:241.769535px;}
.x3b_c01231{left:261.841785px;}
.x17_c01231{left:263.465385px;}
.x57_c01231{left:272.231835px;}
.x2c_c01231{left:273.637635px;}
.x41_c01231{left:274.771185px;}
.x18_c01231{left:283.795035px;}
.x32_c01231{left:285.487935px;}
.x10_c01231{left:286.651185px;}
.x51_c01231{left:294.274185px;}
.x6_c01231{left:296.036385px;}
.x19_c01231{left:298.714335px;}
.x26_c01231{left:307.084785px;}
.x11_c01231{left:318.895485px;}
.x43_c01231{left:328.721235px;}
.x21_c01231{left:329.815185px;}
.x27_c01231{left:340.635885px;}
.x45_c01231{left:342.794085px;}
.x33_c01231{left:351.001185px;}
.x12_c01231{left:361.069485px;}
.x22_c01231{left:363.252435px;}
.x13_c01231{left:365.593785px;}
.x14_c01231{left:368.672685px;}
.x1a_c01231{left:373.048485px;}
.x52_c01231{left:383.775135px;}
.x34_c01231{left:385.730385px;}
.x53_c01231{left:393.699885px;}
.x28_c01231{left:397.135185px;}
.x4a_c01231{left:406.243185px;}
.x23_c01231{left:408.539985px;}
.x35_c01231{left:418.266735px;}
.x7_c01231{left:419.890335px;}
.x29_c01231{left:429.730935px;}
.x46_c01231{left:431.621835px;}
.x8_c01231{left:440.754585px;}
.x1b_c01231{left:451.926735px;}
.x2d_c01231{left:462.094035px;}
.x42_c01231{left:463.682985px;}
.x36_c01231{left:474.152235px;}
.x1c_c01231{left:475.810485px;}
.x54_c01231{left:483.492885px;}
.x9_c01231{left:484.943235px;}
.x4b_c01231{left:495.263985px;}
.x1d_c01231{left:496.352985px;}
.x37_c01231{left:507.440985px;}
.x47_c01231{left:517.113285px;}
.x15_c01231{left:540.239685px;}
.x2e_c01231{left:550.406985px;}
.xa_c01231{left:551.852385px;}
.x44_c01231{left:561.821685px;}
.x24_c01231{left:563.054235px;}
.xb_c01231{left:583.849185px;}
.x4c_c01231{left:593.996685px;}
.x30_c01231{left:595.887585px;}
.x38_c01231{left:607.232985px;}
.x2a_c01231{left:617.756685px;}
.x48_c01231{left:627.181485px;}
.x3d_c01231{left:629.849535px;}
.x55_c01231{left:637.551735px;}
.xc_c01231{left:641.798835px;}
.x4f_c01231{left:650.213835px;}
.x56_c01231{left:659.440635px;}
.x2_c01231{left:673.325385px;}
.x25_c01231{left:685.126185px;}
.x39_c01231{left:693.427335px;}
.x2f_c01231{left:695.045985px;}
.x4d_c01231{left:705.307335px;}
.x16_c01231{left:706.683435px;}
.x4e_c01231{left:752.401635px;}
@media print{
.v0_c01231{vertical-align:0.000000pt;}
.v1_c01231{vertical-align:50.670400pt;}
.ls3_c01231{letter-spacing:-2.488646pt;}
.ls16_c01231{letter-spacing:-1.137667pt;}
.ls15_c01231{letter-spacing:-0.924354pt;}
.ls14_c01231{letter-spacing:-0.718152pt;}
.lsd_c01231{letter-spacing:-0.504840pt;}
.ls5_c01231{letter-spacing:0.000000pt;}
.ls13_c01231{letter-spacing:0.760815pt;}
.ls0_c01231{letter-spacing:1.066563pt;}
.lsa_c01231{letter-spacing:1.763384pt;}
.ls6_c01231{letter-spacing:1.791825pt;}
.ls7_c01231{letter-spacing:1.830400pt;}
.ls9_c01231{letter-spacing:2.168677pt;}
.ls11_c01231{letter-spacing:2.588192pt;}
.ls4_c01231{letter-spacing:2.623744pt;}
.ls12_c01231{letter-spacing:3.027209pt;}
.ls10_c01231{letter-spacing:3.285013pt;}
.lsc_c01231{letter-spacing:3.434332pt;}
.ls2_c01231{letter-spacing:3.555209pt;}
.lse_c01231{letter-spacing:3.740000pt;}
.lsf_c01231{letter-spacing:49.420976pt;}
.lsb_c01231{letter-spacing:50.688176pt;}
.ls8_c01231{letter-spacing:53.222576pt;}
.ls1_c01231{letter-spacing:1730.738240pt;}
.ws0_c01231{word-spacing:-18.842607pt;}
.ws1_c01231{word-spacing:0.000000pt;}
._2_c01231{margin-left:-13.793531pt;}
._3_c01231{width:1.422018pt;}
._1_c01231{width:4.550365pt;}
._0_c01231{width:6.185960pt;}
.fs1_c01231{font-size:36.608000pt;}
.fs6_c01231{font-size:38.720000pt;}
.fs5_c01231{font-size:49.420976pt;}
.fs3_c01231{font-size:50.688176pt;}
.fs2_c01231{font-size:53.222576pt;}
.fs8_c01231{font-size:53.504000pt;}
.fs7_c01231{font-size:60.544176pt;}
.fs0_c01231{font-size:71.104176pt;}
.fs4_c01231{font-size:74.800000pt;}
.y0_c01231{bottom:0.000000pt;}
.y1a_c01231{bottom:32.547720pt;}
.y19_c01231{bottom:64.232120pt;}
.y1_c01231{bottom:68.000000pt;}
.y18_c01231{bottom:103.832120pt;}
.y17_c01231{bottom:120.939320pt;}
.y16_c01231{bottom:149.134520pt;}
.y14_c01231{bottom:206.152580pt;}
.y15_c01231{bottom:206.158520pt;}
.y13_c01231{bottom:263.178120pt;}
.y12_c01231{bottom:291.377720pt;}
.y11_c01231{bottom:321.473720pt;}
.y10_c01231{bottom:347.768120pt;}
.yf_c01231{bottom:376.592520pt;}
.ye_c01231{bottom:432.353720pt;}
.yd_c01231{bottom:460.861320pt;}
.yc_c01231{bottom:517.251720pt;}
.yb_c01231{bottom:545.451320pt;}
.ya_c01231{bottom:573.958920pt;}
.y9_c01231{bottom:630.353720pt;}
.y8_c01231{bottom:658.232120pt;}
.y7_c01231{bottom:687.060920pt;}
.y6_c01231{bottom:715.251720pt;}
.y5_c01231{bottom:771.958920pt;}
.y4_c01231{bottom:800.475320pt;}
.y3_c01231{bottom:828.666120pt;}
.y2_c01231{bottom:948.737720pt;}
.h7_c01231{height:32.914370pt;}
.h5_c01231{height:33.758325pt;}
.h4_c01231{height:35.446236pt;}
.h3_c01231{height:35.928750pt;}
.h8_c01231{height:38.001563pt;}
.h9_c01231{height:63.145684pt;}
.h2_c01231{height:69.784860pt;}
.h6_c01231{height:73.375586pt;}
.ha_c01231{height:105.664081pt;}
.h1_c01231{height:986.666667pt;}
.h0_c01231{height:1122.666667pt;}
.w1_c01231{width:689.333333pt;}
.w0_c01231{width:793.333333pt;}
.x0_c01231{left:0.000000pt;}
.x1_c01231{left:52.000000pt;}
.x1e_c01231{left:75.936653pt;}
.x3_c01231{left:77.208253pt;}
.x1f_c01231{left:144.352253pt;}
.x4_c01231{left:153.548253pt;}
.x3f_c01231{left:154.560253pt;}
.x50_c01231{left:162.581453pt;}
.x3e_c01231{left:163.672653pt;}
.x3a_c01231{left:173.550653pt;}
.xd_c01231{left:174.998253pt;}
.x2b_c01231{left:175.909053pt;}
.xe_c01231{left:185.373453pt;}
.x49_c01231{left:192.197853pt;}
.x40_c01231{left:193.553053pt;}
.x5_c01231{left:196.003853pt;}
.x20_c01231{left:203.910653pt;}
.x31_c01231{left:205.881853pt;}
.x3c_c01231{left:212.767853pt;}
.xf_c01231{left:214.906253pt;}
.x3b_c01231{left:232.748253pt;}
.x17_c01231{left:234.191453pt;}
.x57_c01231{left:241.983853pt;}
.x2c_c01231{left:243.233453pt;}
.x41_c01231{left:244.241053pt;}
.x18_c01231{left:252.262253pt;}
.x32_c01231{left:253.767053pt;}
.x10_c01231{left:254.801053pt;}
.x51_c01231{left:261.577053pt;}
.x6_c01231{left:263.143453pt;}
.x19_c01231{left:265.523853pt;}
.x26_c01231{left:272.964253pt;}
.x11_c01231{left:283.462653pt;}
.x43_c01231{left:292.196653pt;}
.x21_c01231{left:293.169053pt;}
.x27_c01231{left:302.787453pt;}
.x45_c01231{left:304.705853pt;}
.x33_c01231{left:312.001053pt;}
.x12_c01231{left:320.950653pt;}
.x22_c01231{left:322.891053pt;}
.x13_c01231{left:324.972253pt;}
.x14_c01231{left:327.709053pt;}
.x1a_c01231{left:331.598653pt;}
.x52_c01231{left:341.133453pt;}
.x34_c01231{left:342.871453pt;}
.x53_c01231{left:349.955453pt;}
.x28_c01231{left:353.009053pt;}
.x4a_c01231{left:361.105053pt;}
.x23_c01231{left:363.146653pt;}
.x35_c01231{left:371.792653pt;}
.x7_c01231{left:373.235853pt;}
.x29_c01231{left:381.983053pt;}
.x46_c01231{left:383.663853pt;}
.x8_c01231{left:391.781853pt;}
.x1b_c01231{left:401.712653pt;}
.x2d_c01231{left:410.750253pt;}
.x42_c01231{left:412.162653pt;}
.x36_c01231{left:421.468653pt;}
.x1c_c01231{left:422.942653pt;}
.x54_c01231{left:429.771453pt;}
.x9_c01231{left:431.060653pt;}
.x4b_c01231{left:440.234653pt;}
.x1d_c01231{left:441.202653pt;}
.x37_c01231{left:451.058653pt;}
.x47_c01231{left:459.656253pt;}
.x15_c01231{left:480.213053pt;}
.x2e_c01231{left:489.250653pt;}
.xa_c01231{left:490.535453pt;}
.x44_c01231{left:499.397053pt;}
.x24_c01231{left:500.492653pt;}
.xb_c01231{left:518.977053pt;}
.x4c_c01231{left:527.997053pt;}
.x30_c01231{left:529.677853pt;}
.x38_c01231{left:539.762653pt;}
.x2a_c01231{left:549.117053pt;}
.x48_c01231{left:557.494653pt;}
.x3d_c01231{left:559.866253pt;}
.x55_c01231{left:566.712653pt;}
.xc_c01231{left:570.487853pt;}
.x4f_c01231{left:577.967853pt;}
.x56_c01231{left:586.169453pt;}
.x2_c01231{left:598.511453pt;}
.x25_c01231{left:609.001053pt;}
.x39_c01231{left:616.379853pt;}
.x2f_c01231{left:617.818653pt;}
.x4d_c01231{left:626.939853pt;}
.x16_c01231{left:628.163053pt;}
.x4e_c01231{left:668.801453pt;}
}





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

.ir_c01232:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01232{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01232;src:url('chunks/assets/font_77b8d7cc61d590e5d3817e0f.woff2')format("woff");}.ff1_c01232{font-family:ff1_c01232;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01232;src:url('chunks/assets/font_cba6aea80196b4286da034e2.woff2')format("woff");}.ff2_c01232{font-family:ff2_c01232;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01232;src:url('chunks/assets/font_557679b8ec5a2ca70b7eefa0.woff2')format("woff");}.ff3_c01232{font-family:ff3_c01232;line-height:0.666000;font-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_c01232{transform:matrix(0.078488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078488,0.000000,0.000000,0.250000,0,0);}
.m2e_c01232{transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);}
.m17_c01232{transform:matrix(0.128049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128049,0.000000,0.000000,0.250000,0,0);}
.m3d_c01232{transform:matrix(0.141075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141075,0.000000,0.000000,0.250000,0,0);}
.m18_c01232{transform:matrix(0.179878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179878,0.000000,0.000000,0.250000,0,0);}
.m21_c01232{transform:matrix(0.181402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181402,0.000000,0.000000,0.250000,0,0);}
.m1e_c01232{transform:matrix(0.181911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181911,0.000000,0.000000,0.250000,0,0);}
.m13_c01232{transform:matrix(0.204729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204729,0.000000,0.000000,0.250000,0,0);}
.mf_c01232{transform:matrix(0.209817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209817,0.000000,0.000000,0.250000,0,0);}
.m39_c01232{transform:matrix(0.216072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216072,0.000000,0.000000,0.250000,0,0);}
.m49_c01232{transform:matrix(0.223534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223534,0.000000,0.000000,0.250000,0,0);}
.m16_c01232{transform:matrix(0.231707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231707,0.000000,0.000000,0.250000,0,0);}
.m4d_c01232{transform:matrix(0.235811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235811,0.000000,0.000000,0.250000,0,0);}
.m2_c01232{transform:matrix(0.236213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236213,0.000000,0.000000,0.250000,0,0);}
.m5b_c01232{transform:matrix(0.238542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238542,0.000000,0.000000,0.250000,0,0);}
.ma_c01232{transform:matrix(0.240374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240374,0.000000,0.000000,0.250000,0,0);}
.m1a_c01232{transform:matrix(0.243302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243302,0.000000,0.000000,0.250000,0,0);}
.m0_c01232{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m4f_c01232{transform:matrix(0.251016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251016,0.000000,0.000000,0.250000,0,0);}
.m3f_c01232{transform:matrix(0.251116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251116,0.000000,0.000000,0.250000,0,0);}
.m2f_c01232{transform:matrix(0.251649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251649,0.000000,0.000000,0.250000,0,0);}
.m10_c01232{transform:matrix(0.251852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251852,0.000000,0.000000,0.250000,0,0);}
.m7b_c01232{transform:matrix(0.254788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254788,0.000000,0.000000,0.250000,0,0);}
.m43_c01232{transform:matrix(0.256139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256139,0.000000,0.000000,0.250000,0,0);}
.m4a_c01232{transform:matrix(0.256897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256897,0.000000,0.000000,0.250000,0,0);}
.m40_c01232{transform:matrix(0.262929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262929,0.000000,0.000000,0.250000,0,0);}
.m6f_c01232{transform:matrix(0.264231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264231,0.000000,0.000000,0.250000,0,0);}
.m28_c01232{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);}
.m20_c01232{transform:matrix(0.265460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265460,0.000000,0.000000,0.250000,0,0);}
.m6d_c01232{transform:matrix(0.266988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266988,0.000000,0.000000,0.250000,0,0);}
.m70_c01232{transform:matrix(0.267532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267532,0.000000,0.000000,0.250000,0,0);}
.m72_c01232{transform:matrix(0.268181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268181,0.000000,0.000000,0.250000,0,0);}
.m53_c01232{transform:matrix(0.268358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268358,0.000000,0.000000,0.250000,0,0);}
.m1d_c01232{transform:matrix(0.270287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270287,0.000000,0.000000,0.250000,0,0);}
.m55_c01232{transform:matrix(0.271437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271437,0.000000,0.000000,0.250000,0,0);}
.m84_c01232{transform:matrix(0.271900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271900,0.000000,0.000000,0.250000,0,0);}
.m83_c01232{transform:matrix(0.272116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272116,0.000000,0.000000,0.250000,0,0);}
.m9_c01232{transform:matrix(0.272477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272477,0.000000,0.000000,0.250000,0,0);}
.m19_c01232{transform:matrix(0.275114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275114,0.000000,0.000000,0.250000,0,0);}
.m5a_c01232{transform:matrix(0.275285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275285,0.000000,0.000000,0.250000,0,0);}
.m7f_c01232{transform:matrix(0.275841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275841,0.000000,0.000000,0.250000,0,0);}
.m11_c01232{transform:matrix(0.277739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277739,0.000000,0.000000,0.250000,0,0);}
.m12_c01232{transform:matrix(0.277766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277766,0.000000,0.000000,0.250000,0,0);}
.m56_c01232{transform:matrix(0.278239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278239,0.000000,0.000000,0.250000,0,0);}
.m41_c01232{transform:matrix(0.278755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278755,0.000000,0.000000,0.250000,0,0);}
.m3_c01232{transform:matrix(0.279333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279333,0.000000,0.000000,0.250000,0,0);}
.m50_c01232{transform:matrix(0.280010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280010,0.000000,0.000000,0.250000,0,0);}
.m44_c01232{transform:matrix(0.282869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282869,0.000000,0.000000,0.250000,0,0);}
.m31_c01232{transform:matrix(0.284989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284989,0.000000,0.000000,0.250000,0,0);}
.m33_c01232{transform:matrix(0.285485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285485,0.000000,0.000000,0.250000,0,0);}
.m30_c01232{transform:matrix(0.286192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286192,0.000000,0.000000,0.250000,0,0);}
.m64_c01232{transform:matrix(0.286589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286589,0.000000,0.000000,0.250000,0,0);}
.m66_c01232{transform:matrix(0.286731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286731,0.000000,0.000000,0.250000,0,0);}
.m60_c01232{transform:matrix(0.286873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286873,0.000000,0.000000,0.250000,0,0);}
.m5e_c01232{transform:matrix(0.287246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287246,0.000000,0.000000,0.250000,0,0);}
.m69_c01232{transform:matrix(0.287384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287384,0.000000,0.000000,0.250000,0,0);}
.m6b_c01232{transform:matrix(0.287524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287524,0.000000,0.000000,0.250000,0,0);}
.md_c01232{transform:matrix(0.287843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287843,0.000000,0.000000,0.250000,0,0);}
.m6e_c01232{transform:matrix(0.287956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287956,0.000000,0.000000,0.250000,0,0);}
.mb_c01232{transform:matrix(0.288357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288357,0.000000,0.000000,0.250000,0,0);}
.m6c_c01232{transform:matrix(0.288714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288714,0.000000,0.000000,0.250000,0,0);}
.me_c01232{transform:matrix(0.289521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289521,0.000000,0.000000,0.250000,0,0);}
.m1f_c01232{transform:matrix(0.289535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289535,0.000000,0.000000,0.250000,0,0);}
.m7d_c01232{transform:matrix(0.290154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290154,0.000000,0.000000,0.250000,0,0);}
.m71_c01232{transform:matrix(0.290441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290441,0.000000,0.000000,0.250000,0,0);}
.m46_c01232{transform:matrix(0.290622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290622,0.000000,0.000000,0.250000,0,0);}
.m37_c01232{transform:matrix(0.290924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290924,0.000000,0.000000,0.250000,0,0);}
.m35_c01232{transform:matrix(0.291120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291120,0.000000,0.000000,0.250000,0,0);}
.m78_c01232{transform:matrix(0.292505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292505,0.000000,0.000000,0.250000,0,0);}
.m61_c01232{transform:matrix(0.292714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292714,0.000000,0.000000,0.250000,0,0);}
.m4c_c01232{transform:matrix(0.292801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292801,0.000000,0.000000,0.250000,0,0);}
.m2c_c01232{transform:matrix(0.295167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295167,0.000000,0.000000,0.250000,0,0);}
.m1_c01232{transform:matrix(0.295773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295773,0.000000,0.000000,0.250000,0,0);}
.m6_c01232{transform:matrix(0.295971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295971,0.000000,0.000000,0.250000,0,0);}
.m68_c01232{transform:matrix(0.296291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296291,0.000000,0.000000,0.250000,0,0);}
.m82_c01232{transform:matrix(0.296411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296411,0.000000,0.000000,0.250000,0,0);}
.m2a_c01232{transform:matrix(0.296834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296834,0.000000,0.000000,0.250000,0,0);}
.m59_c01232{transform:matrix(0.297042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297042,0.000000,0.000000,0.250000,0,0);}
.m23_c01232{transform:matrix(0.297256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297256,0.000000,0.000000,0.250000,0,0);}
.m1c_c01232{transform:matrix(0.298606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298606,0.000000,0.000000,0.250000,0,0);}
.m24_c01232{transform:matrix(0.299189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299189,0.000000,0.000000,0.250000,0,0);}
.m8_c01232{transform:matrix(0.299480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299480,0.000000,0.000000,0.250000,0,0);}
.m48_c01232{transform:matrix(0.299692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299692,0.000000,0.000000,0.250000,0,0);}
.m3c_c01232{transform:matrix(0.301995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301995,0.000000,0.000000,0.250000,0,0);}
.m2d_c01232{transform:matrix(0.302551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302551,0.000000,0.000000,0.250000,0,0);}
.m36_c01232{transform:matrix(0.302944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302944,0.000000,0.000000,0.250000,0,0);}
.m32_c01232{transform:matrix(0.303008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303008,0.000000,0.000000,0.250000,0,0);}
.m5f_c01232{transform:matrix(0.303045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303045,0.000000,0.000000,0.250000,0,0);}
.m2b_c01232{transform:matrix(0.303390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303390,0.000000,0.000000,0.250000,0,0);}
.m5c_c01232{transform:matrix(0.303465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303465,0.000000,0.000000,0.250000,0,0);}
.m47_c01232{transform:matrix(0.305020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305020,0.000000,0.000000,0.250000,0,0);}
.m77_c01232{transform:matrix(0.308048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308048,0.000000,0.000000,0.250000,0,0);}
.m42_c01232{transform:matrix(0.308453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308453,0.000000,0.000000,0.250000,0,0);}
.m14_c01232{transform:matrix(0.310006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310006,0.000000,0.000000,0.250000,0,0);}
.m63_c01232{transform:matrix(0.310126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310126,0.000000,0.000000,0.250000,0,0);}
.m4e_c01232{transform:matrix(0.310474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310474,0.000000,0.000000,0.250000,0,0);}
.m29_c01232{transform:matrix(0.312340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312340,0.000000,0.000000,0.250000,0,0);}
.m54_c01232{transform:matrix(0.312770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312770,0.000000,0.000000,0.250000,0,0);}
.m22_c01232{transform:matrix(0.314423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314423,0.000000,0.000000,0.250000,0,0);}
.m4b_c01232{transform:matrix(0.315204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315204,0.000000,0.000000,0.250000,0,0);}
.m34_c01232{transform:matrix(0.315636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315636,0.000000,0.000000,0.250000,0,0);}
.m7c_c01232{transform:matrix(0.317186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317186,0.000000,0.000000,0.250000,0,0);}
.m1b_c01232{transform:matrix(0.317979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317979,0.000000,0.000000,0.250000,0,0);}
.m79_c01232{transform:matrix(0.319338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319338,0.000000,0.000000,0.250000,0,0);}
.mc_c01232{transform:matrix(0.319386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319386,0.000000,0.000000,0.250000,0,0);}
.m62_c01232{transform:matrix(0.321821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321821,0.000000,0.000000,0.250000,0,0);}
.m75_c01232{transform:matrix(0.322155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322155,0.000000,0.000000,0.250000,0,0);}
.m26_c01232{transform:matrix(0.322564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322564,0.000000,0.000000,0.250000,0,0);}
.m4_c01232{transform:matrix(0.322655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322655,0.000000,0.000000,0.250000,0,0);}
.m7_c01232{transform:matrix(0.325490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325490,0.000000,0.000000,0.250000,0,0);}
.m7a_c01232{transform:matrix(0.326366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326366,0.000000,0.000000,0.250000,0,0);}
.m80_c01232{transform:matrix(0.328274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328274,0.000000,0.000000,0.250000,0,0);}
.m25_c01232{transform:matrix(0.330977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330977,0.000000,0.000000,0.250000,0,0);}
.m73_c01232{transform:matrix(0.335666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335666,0.000000,0.000000,0.250000,0,0);}
.m57_c01232{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);}
.m5d_c01232{transform:matrix(0.336826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336826,0.000000,0.000000,0.250000,0,0);}
.m5_c01232{transform:matrix(0.336845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336845,0.000000,0.000000,0.250000,0,0);}
.m52_c01232{transform:matrix(0.338602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338602,0.000000,0.000000,0.250000,0,0);}
.m74_c01232{transform:matrix(0.339793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339793,0.000000,0.000000,0.250000,0,0);}
.m45_c01232{transform:matrix(0.341445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341445,0.000000,0.000000,0.250000,0,0);}
.m58_c01232{transform:matrix(0.343087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343087,0.000000,0.000000,0.250000,0,0);}
.m38_c01232{transform:matrix(0.346562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346562,0.000000,0.000000,0.250000,0,0);}
.m65_c01232{transform:matrix(0.348169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348169,0.000000,0.000000,0.250000,0,0);}
.m81_c01232{transform:matrix(0.348516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348516,0.000000,0.000000,0.250000,0,0);}
.m27_c01232{transform:matrix(0.355485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355485,0.000000,0.000000,0.250000,0,0);}
.m67_c01232{transform:matrix(0.361997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361997,0.000000,0.000000,0.250000,0,0);}
.m15_c01232{transform:matrix(0.364768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364768,0.000000,0.000000,0.250000,0,0);}
.m76_c01232{transform:matrix(0.373266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373266,0.000000,0.000000,0.250000,0,0);}
.m3b_c01232{transform:matrix(0.376246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376246,0.000000,0.000000,0.250000,0,0);}
.m51_c01232{transform:matrix(0.376315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376315,0.000000,0.000000,0.250000,0,0);}
.m6a_c01232{transform:matrix(0.382907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382907,0.000000,0.000000,0.250000,0,0);}
.m7e_c01232{transform:matrix(0.385550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385550,0.000000,0.000000,0.250000,0,0);}
.m3a_c01232{transform:matrix(0.402725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402725,0.000000,0.000000,0.250000,0,0);}
.v0_c01232{vertical-align:0.000000px;}
.ls4_c01232{letter-spacing:-2.952180px;}
.ls3_c01232{letter-spacing:-2.626477px;}
.lse_c01232{letter-spacing:-1.838534px;}
.ls13_c01232{letter-spacing:-1.590895px;}
.ls8_c01232{letter-spacing:-0.622850px;}
.ls10_c01232{letter-spacing:-0.180101px;}
.ls1_c01232{letter-spacing:0.000000px;}
.lsa_c01232{letter-spacing:0.983053px;}
.lsf_c01232{letter-spacing:1.605903px;}
.ls0_c01232{letter-spacing:2.266274px;}
.ls11_c01232{letter-spacing:2.679006px;}
.ls12_c01232{letter-spacing:3.316865px;}
.lsb_c01232{letter-spacing:3.366000px;}
.ls2_c01232{letter-spacing:3.752110px;}
.ls5_c01232{letter-spacing:4.217400px;}
.ls9_c01232{letter-spacing:31.363200px;}
.lsc_c01232{letter-spacing:49.896198px;}
.ls6_c01232{letter-spacing:52.747398px;}
.ls7_c01232{letter-spacing:58.449798px;}
.lsd_c01232{letter-spacing:61.300998px;}
.sc__c01232{text-shadow:none;}
.sc0_c01232{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01232{-webkit-text-stroke:0px transparent;}
.sc0_c01232{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01232{word-spacing:-18.760550px;}
.ws1_c01232{word-spacing:0.000000px;}
._2_c01232{margin-left:-17.935085px;}
._4_c01232{margin-left:-12.082411px;}
._3_c01232{margin-left:-8.179600px;}
._0_c01232{margin-left:-6.078072px;}
._6_c01232{width:6.528731px;}
._7_c01232{width:16.133744px;}
._1_c01232{width:27.125901px;}
._8_c01232{width:38.913760px;}
._5_c01232{width:44.008798px;}
.fc0_c01232{color:transparent;}
.fs7_c01232{font-size:25.146000px;}
.fs0_c01232{font-size:27.720000px;}
.fs8_c01232{font-size:31.363200px;}
.fs9_c01232{font-size:39.204000px;}
.fsc_c01232{font-size:49.896198px;}
.fs4_c01232{font-size:52.747398px;}
.fse_c01232{font-size:57.816198px;}
.fs5_c01232{font-size:58.449798px;}
.fsd_c01232{font-size:61.300998px;}
.fs6_c01232{font-size:64.548000px;}
.fsa_c01232{font-size:67.320000px;}
.fsb_c01232{font-size:70.092198px;}
.fs1_c01232{font-size:75.042198px;}
.fs2_c01232{font-size:78.804000px;}
.fs3_c01232{font-size:84.348000px;}
.y0_c01232{bottom:0.000000px;}
.y2_c01232{bottom:24.859935px;}
.y1f_c01232{bottom:32.695785px;}
.y1e_c01232{bottom:71.548335px;}
.y1_c01232{bottom:76.500000px;}
.y1d_c01232{bottom:135.338985px;}
.y1c_c01232{bottom:168.484185px;}
.y1b_c01232{bottom:231.566985px;}
.y1a_c01232{bottom:263.291535px;}
.y19_c01232{bottom:326.725785px;}
.y17_c01232{bottom:357.732585px;}
.y18_c01232{bottom:359.519535px;}
.y16_c01232{bottom:401.218335px;}
.y15_c01232{bottom:420.820335px;}
.y14_c01232{bottom:453.604185px;}
.y13_c01232{bottom:517.048335px;}
.yf_c01232{bottom:578.700585px;}
.y11_c01232{bottom:580.126185px;}
.y12_c01232{bottom:580.487535px;}
.y10_c01232{bottom:588.328335px;}
.ye_c01232{bottom:612.558585px;}
.yd_c01232{bottom:644.283135px;}
.yc_c01232{bottom:669.226185px;}
.yb_c01232{bottom:679.923135px;}
.ya_c01232{bottom:690.253785px;}
.y9_c01232{bottom:707.009535px;}
.y8_c01232{bottom:739.080585px;}
.y7_c01232{bottom:770.443785px;}
.y6_c01232{bottom:833.882985px;}
.y5_c01232{bottom:897.327135px;}
.y4_c01232{bottom:929.403135px;}
.y3_c01232{bottom:1055.920185px;}
.ha_c01232{height:20.887891px;}
.h9_c01232{height:26.226492px;}
.h2_c01232{height:28.911094px;}
.he_c01232{height:33.230868px;}
.h6_c01232{height:35.129767px;}
.hb_c01232{height:38.476582px;}
.h7_c01232{height:38.927565px;}
.hf_c01232{height:40.826465px;}
.h10_c01232{height:52.040175px;}
.h11_c01232{height:60.300488px;}
.h12_c01232{height:63.350332px;}
.h8_c01232{height:67.321547px;}
.hc_c01232{height:70.212656px;}
.hd_c01232{height:73.103972px;}
.h3_c01232{height:73.649813px;}
.h4_c01232{height:77.341816px;}
.h5_c01232{height:82.782949px;}
.h1_c01232{height:1110.000000px;}
.h0_c01232{height:1263.000000px;}
.w1_c01232{width:775.500000px;}
.w0_c01232{width:892.500000px;}
.x0_c01232{left:0.000000px;}
.x1_c01232{left:58.500000px;}
.x2_c01232{left:72.939885px;}
.x19_c01232{left:88.017585px;}
.x12_c01232{left:89.260035px;}
.x4_c01232{left:91.141035px;}
.x3f_c01232{left:107.926485px;}
.x1a_c01232{left:114.396135px;}
.x1b_c01232{left:123.301185px;}
.x55_c01232{left:155.976135px;}
.x40_c01232{left:166.732485px;}
.x4d_c01232{left:175.929585px;}
.x5_c01232{left:178.498635px;}
.x13_c01232{left:189.136185px;}
.xf_c01232{left:199.541085px;}
.x43_c01232{left:201.357735px;}
.x1c_c01232{left:210.866685px;}
.x32_c01232{left:212.505135px;}
.x6_c01232{left:221.761635px;}
.x10_c01232{left:222.850635px;}
.x4e_c01232{left:224.479185px;}
.x44_c01232{left:232.602135px;}
.x33_c01232{left:246.481935px;}
.x49_c01232{left:255.758235px;}
.x45_c01232{left:264.663285px;}
.x24_c01232{left:265.979985px;}
.x14_c01232{left:267.068985px;}
.x3e_c01232{left:269.979585px;}
.x5a_c01232{left:277.137285px;}
.x29_c01232{left:278.161935px;}
.x2f_c01232{left:287.581785px;}
.x7_c01232{left:290.442885px;}
.x53_c01232{left:298.253985px;}
.x1d_c01232{left:299.580585px;}
.x5e_c01232{left:300.926985px;}
.x60_c01232{left:310.341885px;}
.x41_c01232{left:312.707985px;}
.x25_c01232{left:322.395135px;}
.x11_c01232{left:332.404035px;}
.x8_c01232{left:333.869235px;}
.x1e_c01232{left:343.086135px;}
.x4a_c01232{left:345.100785px;}
.x54_c01232{left:346.130385px;}
.x5b_c01232{left:355.104735px;}
.x34_c01232{left:356.871885px;}
.x30_c01232{left:366.138285px;}
.x5f_c01232{left:377.270835px;}
.x4b_c01232{left:379.869585px;}
.x26_c01232{left:388.343985px;}
.x38_c01232{left:420.672435px;}
.x9_c01232{left:422.528685px;}
.x35_c01232{left:423.746385px;}
.x5c_c01232{left:432.537585px;}
.x31_c01232{left:433.859235px;}
.x56_c01232{left:445.912485px;}
.x15_c01232{left:456.124335px;}
.x1f_c01232{left:467.385585px;}
.x4f_c01232{left:477.528135px;}
.x57_c01232{left:478.656735px;}
.xa_c01232{left:487.789485px;}
.x39_c01232{left:493.962135px;}
.x20_c01232{left:501.446535px;}
.x61_c01232{left:519.142785px;}
.x2a_c01232{left:520.934685px;}
.x36_c01232{left:522.627585px;}
.x46_c01232{left:532.898835px;}
.x58_c01232{left:545.075835px;}
.x16_c01232{left:554.084835px;}
.x47_c01232{left:555.559935px;}
.x27_c01232{left:565.890585px;}
.xb_c01232{left:577.587435px;}
.x2b_c01232{left:589.269435px;}
.x42_c01232{left:598.986285px;}
.x21_c01232{left:600.471285px;}
.x62_c01232{left:608.005185px;}
.x50_c01232{left:610.935585px;}
.xc_c01232{left:612.702735px;}
.x2c_c01232{left:621.305835px;}
.x51_c01232{left:622.751235px;}
.x28_c01232{left:631.438485px;}
.x3a_c01232{left:633.111585px;}
.xd_c01232{left:634.863885px;}
.xe_c01232{left:643.734285px;}
.x63_c01232{left:654.743085px;}
.x22_c01232{left:655.921185px;}
.x3b_c01232{left:657.242835px;}
.x3_c01232{left:665.831085px;}
.x3c_c01232{left:676.057785px;}
.x52_c01232{left:687.333885px;}
.x23_c01232{left:689.982135px;}
.x5d_c01232{left:699.837585px;}
.x37_c01232{left:706.331985px;}
.x4c_c01232{left:709.470285px;}
.x59_c01232{left:710.544435px;}
.x17_c01232{left:711.955185px;}
.x2d_c01232{left:713.682735px;}
.x2e_c01232{left:716.192385px;}
.x48_c01232{left:720.399885px;}
.x3d_c01232{left:723.171885px;}
.x18_c01232{left:732.665985px;}
@media print{
.v0_c01232{vertical-align:0.000000pt;}
.ls4_c01232{letter-spacing:-2.624160pt;}
.ls3_c01232{letter-spacing:-2.334646pt;}
.lse_c01232{letter-spacing:-1.634252pt;}
.ls13_c01232{letter-spacing:-1.414129pt;}
.ls8_c01232{letter-spacing:-0.553645pt;}
.ls10_c01232{letter-spacing:-0.160090pt;}
.ls1_c01232{letter-spacing:0.000000pt;}
.lsa_c01232{letter-spacing:0.873825pt;}
.lsf_c01232{letter-spacing:1.427469pt;}
.ls0_c01232{letter-spacing:2.014466pt;}
.ls11_c01232{letter-spacing:2.381339pt;}
.ls12_c01232{letter-spacing:2.948325pt;}
.lsb_c01232{letter-spacing:2.992000pt;}
.ls2_c01232{letter-spacing:3.335209pt;}
.ls5_c01232{letter-spacing:3.748800pt;}
.ls9_c01232{letter-spacing:27.878400pt;}
.lsc_c01232{letter-spacing:44.352176pt;}
.ls6_c01232{letter-spacing:46.886576pt;}
.ls7_c01232{letter-spacing:51.955376pt;}
.lsd_c01232{letter-spacing:54.489776pt;}
.ws0_c01232{word-spacing:-16.676044pt;}
.ws1_c01232{word-spacing:0.000000pt;}
._2_c01232{margin-left:-15.942298pt;}
._4_c01232{margin-left:-10.739921pt;}
._3_c01232{margin-left:-7.270755pt;}
._0_c01232{margin-left:-5.402731pt;}
._6_c01232{width:5.803316pt;}
._7_c01232{width:14.341106pt;}
._1_c01232{width:24.111912pt;}
._8_c01232{width:34.590009pt;}
._5_c01232{width:39.118932pt;}
.fs7_c01232{font-size:22.352000pt;}
.fs0_c01232{font-size:24.640000pt;}
.fs8_c01232{font-size:27.878400pt;}
.fs9_c01232{font-size:34.848000pt;}
.fsc_c01232{font-size:44.352176pt;}
.fs4_c01232{font-size:46.886576pt;}
.fse_c01232{font-size:51.392176pt;}
.fs5_c01232{font-size:51.955376pt;}
.fsd_c01232{font-size:54.489776pt;}
.fs6_c01232{font-size:57.376000pt;}
.fsa_c01232{font-size:59.840000pt;}
.fsb_c01232{font-size:62.304176pt;}
.fs1_c01232{font-size:66.704176pt;}
.fs2_c01232{font-size:70.048000pt;}
.fs3_c01232{font-size:74.976000pt;}
.y0_c01232{bottom:0.000000pt;}
.y2_c01232{bottom:22.097720pt;}
.y1f_c01232{bottom:29.062920pt;}
.y1e_c01232{bottom:63.598520pt;}
.y1_c01232{bottom:68.000000pt;}
.y1d_c01232{bottom:120.301320pt;}
.y1c_c01232{bottom:149.763720pt;}
.y1b_c01232{bottom:205.837320pt;}
.y1a_c01232{bottom:234.036920pt;}
.y19_c01232{bottom:290.422920pt;}
.y17_c01232{bottom:317.984520pt;}
.y18_c01232{bottom:319.572920pt;}
.y16_c01232{bottom:356.638520pt;}
.y15_c01232{bottom:374.062520pt;}
.y14_c01232{bottom:403.203720pt;}
.y13_c01232{bottom:459.598520pt;}
.yf_c01232{bottom:514.400520pt;}
.y11_c01232{bottom:515.667720pt;}
.y12_c01232{bottom:515.988920pt;}
.y10_c01232{bottom:522.958520pt;}
.ye_c01232{bottom:544.496520pt;}
.yd_c01232{bottom:572.696120pt;}
.yc_c01232{bottom:594.867720pt;}
.yb_c01232{bottom:604.376120pt;}
.ya_c01232{bottom:613.558920pt;}
.y9_c01232{bottom:628.452920pt;}
.y8_c01232{bottom:656.960520pt;}
.y7_c01232{bottom:684.838920pt;}
.y6_c01232{bottom:741.229320pt;}
.y5_c01232{bottom:797.624120pt;}
.y4_c01232{bottom:826.136120pt;}
.y3_c01232{bottom:938.595720pt;}
.ha_c01232{height:18.567014pt;}
.h9_c01232{height:23.312438pt;}
.h2_c01232{height:25.698750pt;}
.he_c01232{height:29.538549pt;}
.h6_c01232{height:31.226460pt;}
.hb_c01232{height:34.201406pt;}
.h7_c01232{height:34.602280pt;}
.hf_c01232{height:36.290191pt;}
.h10_c01232{height:46.257934pt;}
.h11_c01232{height:53.600434pt;}
.h12_c01232{height:56.311406pt;}
.h8_c01232{height:59.841375pt;}
.hc_c01232{height:62.411250pt;}
.hd_c01232{height:64.981309pt;}
.h3_c01232{height:65.466501pt;}
.h4_c01232{height:68.748281pt;}
.h5_c01232{height:73.584844pt;}
.h1_c01232{height:986.666667pt;}
.h0_c01232{height:1122.666667pt;}
.w1_c01232{width:689.333333pt;}
.w0_c01232{width:793.333333pt;}
.x0_c01232{left:0.000000pt;}
.x1_c01232{left:52.000000pt;}
.x2_c01232{left:64.835453pt;}
.x19_c01232{left:78.237853pt;}
.x12_c01232{left:79.342253pt;}
.x4_c01232{left:81.014253pt;}
.x3f_c01232{left:95.934653pt;}
.x1a_c01232{left:101.685453pt;}
.x1b_c01232{left:109.601053pt;}
.x55_c01232{left:138.645453pt;}
.x40_c01232{left:148.206653pt;}
.x4d_c01232{left:156.381853pt;}
.x5_c01232{left:158.665453pt;}
.x13_c01232{left:168.121053pt;}
.xf_c01232{left:177.369853pt;}
.x43_c01232{left:178.984653pt;}
.x1c_c01232{left:187.437053pt;}
.x32_c01232{left:188.893453pt;}
.x6_c01232{left:197.121453pt;}
.x10_c01232{left:198.089453pt;}
.x4e_c01232{left:199.537053pt;}
.x44_c01232{left:206.757453pt;}
.x33_c01232{left:219.095053pt;}
.x49_c01232{left:227.340653pt;}
.x45_c01232{left:235.256253pt;}
.x24_c01232{left:236.426653pt;}
.x14_c01232{left:237.394653pt;}
.x3e_c01232{left:239.981853pt;}
.x5a_c01232{left:246.344253pt;}
.x29_c01232{left:247.255053pt;}
.x2f_c01232{left:255.628253pt;}
.x7_c01232{left:258.171453pt;}
.x53_c01232{left:265.114653pt;}
.x1d_c01232{left:266.293853pt;}
.x5e_c01232{left:267.490653pt;}
.x60_c01232{left:275.859453pt;}
.x41_c01232{left:277.962653pt;}
.x25_c01232{left:286.573453pt;}
.x11_c01232{left:295.470253pt;}
.x8_c01232{left:296.772653pt;}
.x1e_c01232{left:304.965453pt;}
.x4a_c01232{left:306.756253pt;}
.x54_c01232{left:307.671453pt;}
.x5b_c01232{left:315.648653pt;}
.x34_c01232{left:317.219453pt;}
.x30_c01232{left:325.456253pt;}
.x5f_c01232{left:335.351853pt;}
.x4b_c01232{left:337.661853pt;}
.x26_c01232{left:345.194653pt;}
.x38_c01232{left:373.931053pt;}
.x9_c01232{left:375.581053pt;}
.x35_c01232{left:376.663453pt;}
.x5c_c01232{left:384.477853pt;}
.x31_c01232{left:385.652653pt;}
.x56_c01232{left:396.366653pt;}
.x15_c01232{left:405.443853pt;}
.x1f_c01232{left:415.453853pt;}
.x4f_c01232{left:424.469453pt;}
.x57_c01232{left:425.472653pt;}
.xa_c01232{left:433.590653pt;}
.x39_c01232{left:439.077453pt;}
.x20_c01232{left:445.730253pt;}
.x61_c01232{left:461.460253pt;}
.x2a_c01232{left:463.053053pt;}
.x36_c01232{left:464.557853pt;}
.x46_c01232{left:473.687853pt;}
.x58_c01232{left:484.511853pt;}
.x16_c01232{left:492.519853pt;}
.x47_c01232{left:493.831053pt;}
.x27_c01232{left:503.013853pt;}
.xb_c01232{left:513.411053pt;}
.x2b_c01232{left:523.795053pt;}
.x42_c01232{left:532.432253pt;}
.x21_c01232{left:533.752253pt;}
.x62_c01232{left:540.449053pt;}
.x50_c01232{left:543.053853pt;}
.xc_c01232{left:544.624653pt;}
.x2c_c01232{left:552.271853pt;}
.x51_c01232{left:553.556653pt;}
.x28_c01232{left:561.278653pt;}
.x3a_c01232{left:562.765853pt;}
.xd_c01232{left:564.323453pt;}
.xe_c01232{left:572.208253pt;}
.x63_c01232{left:581.993853pt;}
.x22_c01232{left:583.041053pt;}
.x3b_c01232{left:584.215853pt;}
.x3_c01232{left:591.849853pt;}
.x3c_c01232{left:600.940253pt;}
.x52_c01232{left:610.963453pt;}
.x23_c01232{left:613.317453pt;}
.x5d_c01232{left:622.077853pt;}
.x37_c01232{left:627.850653pt;}
.x4c_c01232{left:630.640253pt;}
.x59_c01232{left:631.595053pt;}
.x17_c01232{left:632.849053pt;}
.x2d_c01232{left:634.384653pt;}
.x2e_c01232{left:636.615453pt;}
.x48_c01232{left:640.355453pt;}
.x3d_c01232{left:642.819453pt;}
.x18_c01232{left:651.258653pt;}
}





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

.ir_c01233:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01233{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01233;src:url('chunks/assets/font_1621cdb23a26eb507c8fa17c.woff2')format("woff");}.ff1_c01233{font-family:ff1_c01233;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01233;src:url('chunks/assets/font_a20a810457942a1258bf5f95.woff2')format("woff");}.ff2_c01233{font-family:ff2_c01233;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01233;src:url('chunks/assets/font_bf36a0dbe7362b2c7b70fdbe.woff2')format("woff");}.ff3_c01233{font-family:ff3_c01233;line-height:0.666000;font-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_c01233{transform:matrix(0.109917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109917,0.000000,0.000000,0.250000,0,0);}
.m20_c01233{transform:matrix(0.131250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131250,0.000000,0.000000,0.250000,0,0);}
.m7a_c01233{transform:matrix(0.167968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167968,0.000000,0.000000,0.250000,0,0);}
.m1c_c01233{transform:matrix(0.171528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171528,0.000000,0.000000,0.250000,0,0);}
.m84_c01233{transform:matrix(0.174419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174419,0.000000,0.000000,0.250000,0,0);}
.m58_c01233{transform:matrix(0.177760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177760,0.000000,0.000000,0.250000,0,0);}
.m66_c01233{transform:matrix(0.185417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185417,0.000000,0.000000,0.250000,0,0);}
.m1d_c01233{transform:matrix(0.190625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190625,0.000000,0.000000,0.250000,0,0);}
.m34_c01233{transform:matrix(0.197638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197638,0.000000,0.000000,0.250000,0,0);}
.m3e_c01233{transform:matrix(0.198560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198560,0.000000,0.000000,0.250000,0,0);}
.m1f_c01233{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m33_c01233{transform:matrix(0.200584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200584,0.000000,0.000000,0.250000,0,0);}
.m72_c01233{transform:matrix(0.203514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203514,0.000000,0.000000,0.250000,0,0);}
.m26_c01233{transform:matrix(0.204444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204444,0.000000,0.000000,0.250000,0,0);}
.m4a_c01233{transform:matrix(0.210818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210818,0.000000,0.000000,0.250000,0,0);}
.m59_c01233{transform:matrix(0.214530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214530,0.000000,0.000000,0.250000,0,0);}
.m74_c01233{transform:matrix(0.215767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215767,0.000000,0.000000,0.250000,0,0);}
.m13_c01233{transform:matrix(0.224106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224106,0.000000,0.000000,0.250000,0,0);}
.m2_c01233{transform:matrix(0.226842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226842,0.000000,0.000000,0.250000,0,0);}
.m3f_c01233{transform:matrix(0.228945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228945,0.000000,0.000000,0.250000,0,0);}
.m12_c01233{transform:matrix(0.229015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229015,0.000000,0.000000,0.250000,0,0);}
.m6b_c01233{transform:matrix(0.229248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229248,0.000000,0.000000,0.250000,0,0);}
.m71_c01233{transform:matrix(0.232782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232782,0.000000,0.000000,0.250000,0,0);}
.m3c_c01233{transform:matrix(0.239123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239123,0.000000,0.000000,0.250000,0,0);}
.m0_c01233{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m4_c01233{transform:matrix(0.250467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250467,0.000000,0.000000,0.250000,0,0);}
.m24_c01233{transform:matrix(0.252519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252519,0.000000,0.000000,0.250000,0,0);}
.m10_c01233{transform:matrix(0.252834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252834,0.000000,0.000000,0.250000,0,0);}
.m7e_c01233{transform:matrix(0.253561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253561,0.000000,0.000000,0.250000,0,0);}
.me_c01233{transform:matrix(0.255738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255738,0.000000,0.000000,0.250000,0,0);}
.m78_c01233{transform:matrix(0.255887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255887,0.000000,0.000000,0.250000,0,0);}
.m37_c01233{transform:matrix(0.256442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256442,0.000000,0.000000,0.250000,0,0);}
.m86_c01233{transform:matrix(0.257025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257025,0.000000,0.000000,0.250000,0,0);}
.m81_c01233{transform:matrix(0.258090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258090,0.000000,0.000000,0.250000,0,0);}
.m85_c01233{transform:matrix(0.258457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258457,0.000000,0.000000,0.250000,0,0);}
.m77_c01233{transform:matrix(0.260941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260941,0.000000,0.000000,0.250000,0,0);}
.md_c01233{transform:matrix(0.261012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261012,0.000000,0.000000,0.250000,0,0);}
.m54_c01233{transform:matrix(0.261814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261814,0.000000,0.000000,0.250000,0,0);}
.m32_c01233{transform:matrix(0.263110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263110,0.000000,0.000000,0.250000,0,0);}
.m41_c01233{transform:matrix(0.265509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265509,0.000000,0.000000,0.250000,0,0);}
.m57_c01233{transform:matrix(0.265799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265799,0.000000,0.000000,0.250000,0,0);}
.m75_c01233{transform:matrix(0.266519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266519,0.000000,0.000000,0.250000,0,0);}
.m31_c01233{transform:matrix(0.267444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267444,0.000000,0.000000,0.250000,0,0);}
.m11_c01233{transform:matrix(0.267859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267859,0.000000,0.000000,0.250000,0,0);}
.m30_c01233{transform:matrix(0.268048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268048,0.000000,0.000000,0.250000,0,0);}
.m2c_c01233{transform:matrix(0.269290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269290,0.000000,0.000000,0.250000,0,0);}
.m70_c01233{transform:matrix(0.269732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269732,0.000000,0.000000,0.250000,0,0);}
.m47_c01233{transform:matrix(0.270323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270323,0.000000,0.000000,0.250000,0,0);}
.m4d_c01233{transform:matrix(0.270384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270384,0.000000,0.000000,0.250000,0,0);}
.m44_c01233{transform:matrix(0.270811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270811,0.000000,0.000000,0.250000,0,0);}
.m25_c01233{transform:matrix(0.271286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271286,0.000000,0.000000,0.250000,0,0);}
.m49_c01233{transform:matrix(0.271311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271311,0.000000,0.000000,0.250000,0,0);}
.m23_c01233{transform:matrix(0.271605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271605,0.000000,0.000000,0.250000,0,0);}
.m5_c01233{transform:matrix(0.271789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271789,0.000000,0.000000,0.250000,0,0);}
.m69_c01233{transform:matrix(0.272444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272444,0.000000,0.000000,0.250000,0,0);}
.m6a_c01233{transform:matrix(0.272817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272817,0.000000,0.000000,0.250000,0,0);}
.m51_c01233{transform:matrix(0.275036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275036,0.000000,0.000000,0.250000,0,0);}
.m1_c01233{transform:matrix(0.275195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275195,0.000000,0.000000,0.250000,0,0);}
.m68_c01233{transform:matrix(0.275351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275351,0.000000,0.000000,0.250000,0,0);}
.m52_c01233{transform:matrix(0.275530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275530,0.000000,0.000000,0.250000,0,0);}
.m2f_c01233{transform:matrix(0.277367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277367,0.000000,0.000000,0.250000,0,0);}
.m55_c01233{transform:matrix(0.278024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278024,0.000000,0.000000,0.250000,0,0);}
.m1b_c01233{transform:matrix(0.278661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278661,0.000000,0.000000,0.250000,0,0);}
.m56_c01233{transform:matrix(0.282337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282337,0.000000,0.000000,0.250000,0,0);}
.m14_c01233{transform:matrix(0.282937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282937,0.000000,0.000000,0.250000,0,0);}
.m64_c01233{transform:matrix(0.284198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284198,0.000000,0.000000,0.250000,0,0);}
.m8_c01233{transform:matrix(0.284334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284334,0.000000,0.000000,0.250000,0,0);}
.m3a_c01233{transform:matrix(0.284956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284956,0.000000,0.000000,0.250000,0,0);}
.m43_c01233{transform:matrix(0.285127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285127,0.000000,0.000000,0.250000,0,0);}
.m79_c01233{transform:matrix(0.286057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286057,0.000000,0.000000,0.250000,0,0);}
.m1a_c01233{transform:matrix(0.286818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286818,0.000000,0.000000,0.250000,0,0);}
.m6e_c01233{transform:matrix(0.287205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287205,0.000000,0.000000,0.250000,0,0);}
.m27_c01233{transform:matrix(0.287357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287357,0.000000,0.000000,0.250000,0,0);}
.m6_c01233{transform:matrix(0.289246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289246,0.000000,0.000000,0.250000,0,0);}
.m42_c01233{transform:matrix(0.289404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289404,0.000000,0.000000,0.250000,0,0);}
.m80_c01233{transform:matrix(0.290583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290583,0.000000,0.000000,0.250000,0,0);}
.mc_c01233{transform:matrix(0.291880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291880,0.000000,0.000000,0.250000,0,0);}
.m6c_c01233{transform:matrix(0.293101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293101,0.000000,0.000000,0.250000,0,0);}
.m9_c01233{transform:matrix(0.294299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294299,0.000000,0.000000,0.250000,0,0);}
.mb_c01233{transform:matrix(0.294411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294411,0.000000,0.000000,0.250000,0,0);}
.m28_c01233{transform:matrix(0.294487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294487,0.000000,0.000000,0.250000,0,0);}
.m17_c01233{transform:matrix(0.294898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294898,0.000000,0.000000,0.250000,0,0);}
.m5d_c01233{transform:matrix(0.294949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294949,0.000000,0.000000,0.250000,0,0);}
.m45_c01233{transform:matrix(0.295670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295670,0.000000,0.000000,0.250000,0,0);}
.m19_c01233{transform:matrix(0.295859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295859,0.000000,0.000000,0.250000,0,0);}
.m2b_c01233{transform:matrix(0.295886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295886,0.000000,0.000000,0.250000,0,0);}
.m2a_c01233{transform:matrix(0.297559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297559,0.000000,0.000000,0.250000,0,0);}
.m36_c01233{transform:matrix(0.298202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298202,0.000000,0.000000,0.250000,0,0);}
.m40_c01233{transform:matrix(0.298302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298302,0.000000,0.000000,0.250000,0,0);}
.m4f_c01233{transform:matrix(0.299433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299433,0.000000,0.000000,0.250000,0,0);}
.ma_c01233{transform:matrix(0.299676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299676,0.000000,0.000000,0.250000,0,0);}
.m7c_c01233{transform:matrix(0.301366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301366,0.000000,0.000000,0.250000,0,0);}
.m22_c01233{transform:matrix(0.302289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302289,0.000000,0.000000,0.250000,0,0);}
.m16_c01233{transform:matrix(0.302588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302588,0.000000,0.000000,0.250000,0,0);}
.m83_c01233{transform:matrix(0.303786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303786,0.000000,0.000000,0.250000,0,0);}
.m2d_c01233{transform:matrix(0.304321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304321,0.000000,0.000000,0.250000,0,0);}
.m5e_c01233{transform:matrix(0.305233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305233,0.000000,0.000000,0.250000,0,0);}
.m6f_c01233{transform:matrix(0.305382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305382,0.000000,0.000000,0.250000,0,0);}
.m18_c01233{transform:matrix(0.305975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305975,0.000000,0.000000,0.250000,0,0);}
.m76_c01233{transform:matrix(0.307378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307378,0.000000,0.000000,0.250000,0,0);}
.m4c_c01233{transform:matrix(0.307594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307594,0.000000,0.000000,0.250000,0,0);}
.m29_c01233{transform:matrix(0.307707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307707,0.000000,0.000000,0.250000,0,0);}
.m48_c01233{transform:matrix(0.307973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307973,0.000000,0.000000,0.250000,0,0);}
.m15_c01233{transform:matrix(0.308809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308809,0.000000,0.000000,0.250000,0,0);}
.m46_c01233{transform:matrix(0.309267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309267,0.000000,0.000000,0.250000,0,0);}
.mf_c01233{transform:matrix(0.311382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311382,0.000000,0.000000,0.250000,0,0);}
.m5c_c01233{transform:matrix(0.311989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311989,0.000000,0.000000,0.250000,0,0);}
.m3b_c01233{transform:matrix(0.312531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312531,0.000000,0.000000,0.250000,0,0);}
.m67_c01233{transform:matrix(0.314060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314060,0.000000,0.000000,0.250000,0,0);}
.m62_c01233{transform:matrix(0.314431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314431,0.000000,0.000000,0.250000,0,0);}
.m7_c01233{transform:matrix(0.314512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314512,0.000000,0.000000,0.250000,0,0);}
.m5b_c01233{transform:matrix(0.314747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314747,0.000000,0.000000,0.250000,0,0);}
.m38_c01233{transform:matrix(0.315108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315108,0.000000,0.000000,0.250000,0,0);}
.m21_c01233{transform:matrix(0.317984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317984,0.000000,0.000000,0.250000,0,0);}
.m65_c01233{transform:matrix(0.319293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319293,0.000000,0.000000,0.250000,0,0);}
.m7f_c01233{transform:matrix(0.319709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319709,0.000000,0.000000,0.250000,0,0);}
.m60_c01233{transform:matrix(0.320823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320823,0.000000,0.000000,0.250000,0,0);}
.m4e_c01233{transform:matrix(0.322075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322075,0.000000,0.000000,0.250000,0,0);}
.m1e_c01233{transform:matrix(0.322525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322525,0.000000,0.000000,0.250000,0,0);}
.m7d_c01233{transform:matrix(0.323670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323670,0.000000,0.000000,0.250000,0,0);}
.m82_c01233{transform:matrix(0.323774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323774,0.000000,0.000000,0.250000,0,0);}
.m35_c01233{transform:matrix(0.325170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325170,0.000000,0.000000,0.250000,0,0);}
.m39_c01233{transform:matrix(0.327631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327631,0.000000,0.000000,0.250000,0,0);}
.m5f_c01233{transform:matrix(0.332175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332175,0.000000,0.000000,0.250000,0,0);}
.m3d_c01233{transform:matrix(0.336438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336438,0.000000,0.000000,0.250000,0,0);}
.m73_c01233{transform:matrix(0.342086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342086,0.000000,0.000000,0.250000,0,0);}
.m7b_c01233{transform:matrix(0.343012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343012,0.000000,0.000000,0.250000,0,0);}
.m50_c01233{transform:matrix(0.348813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348813,0.000000,0.000000,0.250000,0,0);}
.m3_c01233{transform:matrix(0.349430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349430,0.000000,0.000000,0.250000,0,0);}
.m53_c01233{transform:matrix(0.355073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355073,0.000000,0.000000,0.250000,0,0);}
.m6d_c01233{transform:matrix(0.356814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356814,0.000000,0.000000,0.250000,0,0);}
.m63_c01233{transform:matrix(0.360630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360630,0.000000,0.000000,0.250000,0,0);}
.m5a_c01233{transform:matrix(0.376729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376729,0.000000,0.000000,0.250000,0,0);}
.m2e_c01233{transform:matrix(0.380222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380222,0.000000,0.000000,0.250000,0,0);}
.m4b_c01233{transform:matrix(0.396884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396884,0.000000,0.000000,0.250000,0,0);}
.v2_c01233{vertical-align:-17.107200px;}
.v0_c01233{vertical-align:0.000000px;}
.v1_c01233{vertical-align:2.871000px;}
.ls12_c01233{letter-spacing:-3.492727px;}
.ls4_c01233{letter-spacing:-2.799727px;}
.ls16_c01233{letter-spacing:-2.467080px;}
.ls2_c01233{letter-spacing:0.000000px;}
.ls0_c01233{letter-spacing:0.023998px;}
.lsb_c01233{letter-spacing:0.303970px;}
.ls6_c01233{letter-spacing:1.567847px;}
.ls10_c01233{letter-spacing:2.247781px;}
.lsa_c01233{letter-spacing:2.935714px;}
.ls9_c01233{letter-spacing:3.227400px;}
.lse_c01233{letter-spacing:3.276900px;}
.ls14_c01233{letter-spacing:3.415667px;}
.ls15_c01233{letter-spacing:3.524400px;}
.lsd_c01233{letter-spacing:3.564000px;}
.ls13_c01233{letter-spacing:3.583810px;}
.lsc_c01233{letter-spacing:3.643200px;}
.ls1_c01233{letter-spacing:3.695640px;}
.ls11_c01233{letter-spacing:3.781810px;}
.ls8_c01233{letter-spacing:3.801610px;}
.ls3_c01233{letter-spacing:3.999610px;}
.ls5_c01233{letter-spacing:4.098610px;}
.ls17_c01233{letter-spacing:4.276810px;}
.ls7_c01233{letter-spacing:57.024198px;}
.ls18_c01233{letter-spacing:61.300998px;}
.lsf_c01233{letter-spacing:62.726400px;}
.sc__c01233{text-shadow:none;}
.sc0_c01233{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01233{-webkit-text-stroke:0px transparent;}
.sc0_c01233{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01233{word-spacing:0.000000px;}
._6_c01233{width:4.154040px;}
._7_c01233{width:21.369797px;}
._4_c01233{width:24.106500px;}
._3_c01233{width:35.841168px;}
._5_c01233{width:39.286368px;}
._0_c01233{width:48.075285px;}
._2_c01233{width:74.826396px;}
._1_c01233{width:283.228550px;}
._8_c01233{width:779.098320px;}
._9_c01233{width:1832.647608px;}
.fc0_c01233{color:transparent;}
.fs9_c01233{font-size:16.632000px;}
.fs2_c01233{font-size:22.176000px;}
.fs0_c01233{font-size:27.720000px;}
.fs18_c01233{font-size:33.264000px;}
.fs11_c01233{font-size:33.660000px;}
.fs12_c01233{font-size:39.600000px;}
.fs4_c01233{font-size:57.024198px;}
.fs17_c01233{font-size:61.300998px;}
.fsd_c01233{font-size:62.726400px;}
.fs6_c01233{font-size:64.548000px;}
.fsc_c01233{font-size:65.538000px;}
.fs14_c01233{font-size:70.488000px;}
.fsb_c01233{font-size:71.280000px;}
.fs13_c01233{font-size:71.676198px;}
.fsa_c01233{font-size:72.864000px;}
.fse_c01233{font-size:75.636198px;}
.fs5_c01233{font-size:76.032198px;}
.fs8_c01233{font-size:79.398000px;}
.fs1_c01233{font-size:79.992198px;}
.fs3_c01233{font-size:81.972198px;}
.fs16_c01233{font-size:84.546198px;}
.fs15_c01233{font-size:85.536198px;}
.fs19_c01233{font-size:89.496198px;}
.fs7_c01233{font-size:95.832198px;}
.fsf_c01233{font-size:99.792198px;}
.fs10_c01233{font-size:102.960000px;}
.y0_c01233{bottom:0.000000px;}
.y21_c01233{bottom:10.955385px;}
.y20_c01233{bottom:22.008735px;}
.y1f_c01233{bottom:67.984335px;}
.y1_c01233{bottom:76.500000px;}
.y1e_c01233{bottom:100.773135px;}
.y1d_c01233{bottom:133.205535px;}
.y1c_c01233{bottom:196.644735px;}
.y1b_c01233{bottom:214.821135px;}
.y1a_c01233{bottom:219.454335px;}
.y19_c01233{bottom:260.078985px;}
.y18_c01233{bottom:292.516335px;}
.y17_c01233{bottom:318.177135px;}
.y16_c01233{bottom:323.874585px;}
.y3_c01233{bottom:356.312925px;}
.y15_c01233{bottom:387.670185px;}
.y14_c01233{bottom:420.107535px;}
.y13_c01233{bottom:482.477535px;}
.y12_c01233{bottom:514.197135px;}
.y11_c01233{bottom:549.119385px;}
.y10_c01233{bottom:577.631385px;}
.yf_c01233{bottom:608.281785px;}
.yd_c01233{bottom:608.638185px;}
.ye_c01233{bottom:608.999535px;}
.yc_c01233{bottom:672.795135px;}
.yb_c01233{bottom:704.866185px;}
.ya_c01233{bottom:767.953935px;}
.y9_c01233{bottom:800.742735px;}
.y8_c01233{bottom:832.457385px;}
.y7_c01233{bottom:895.183785px;}
.y6_c01233{bottom:927.616185px;}
.y5_c01233{bottom:969.671385px;}
.y2_c01233{bottom:993.193785px;}
.y4_c01233{bottom:1063.404585px;}
.h4_c01233{height:23.128875px;}
.h2_c01233{height:28.911094px;}
.h11_c01233{height:33.035449px;}
.h6_c01233{height:37.978116px;}
.h17_c01233{height:40.826465px;}
.h12_c01233{height:41.301563px;}
.hd_c01233{height:41.775782px;}
.h8_c01233{height:67.321547px;}
.hc_c01233{height:68.354086px;}
.h14_c01233{height:69.180117px;}
.hb_c01233{height:69.957422px;}
.h18_c01233{height:70.728424px;}
.ha_c01233{height:71.512031px;}
.he_c01233{height:74.232792px;}
.h7_c01233{height:74.621444px;}
.h13_c01233{height:74.756035px;}
.h3_c01233{height:78.507968px;}
.h5_c01233{height:80.451229px;}
.h16_c01233{height:82.977470px;}
.h15_c01233{height:83.949101px;}
.hf_c01233{height:97.940585px;}
.h9_c01233{height:99.949988px;}
.h10_c01233{height:101.049609px;}
.h1_c01233{height:1110.000000px;}
.h0_c01233{height:1263.000000px;}
.w1_c01233{width:775.500000px;}
.w0_c01233{width:892.500000px;}
.x0_c01233{left:0.000000px;}
.x3_c01233{left:30.528285px;}
.x1_c01233{left:58.500000px;}
.x2_c01233{left:62.960685px;}
.x25_c01233{left:87.938385px;}
.x16_c01233{left:89.354085px;}
.x6_c01233{left:90.423285px;}
.x37_c01233{left:145.190085px;}
.x54_c01233{left:153.872385px;}
.x2f_c01233{left:165.544485px;}
.x36_c01233{left:169.880685px;}
.x4f_c01233{left:186.631485px;}
.x17_c01233{left:187.720485px;}
.x5a_c01233{left:199.328235px;}
.x45_c01233{left:200.422185px;}
.xf_c01233{left:201.471585px;}
.x7_c01233{left:211.158735px;}
.x18_c01233{left:213.668385px;}
.x50_c01233{left:232.235835px;}
.x10_c01233{left:233.290185px;}
.x3f_c01233{left:236.002785px;}
.x38_c01233{left:243.625785px;}
.x1d_c01233{left:245.328585px;}
.x55_c01233{left:246.650235px;}
.x30_c01233{left:247.719435px;}
.x5b_c01233{left:254.238585px;}
.x8_c01233{left:255.347385px;}
.x4b_c01233{left:265.207785px;}
.x22_c01233{left:266.524485px;}
.x19_c01233{left:277.063035px;}
.x2d_c01233{left:278.424285px;}
.x1e_c01233{left:288.675735px;}
.x11_c01233{left:290.477535px;}
.x9_c01233{left:301.095285px;}
.x56_c01233{left:310.678485px;}
.x31_c01233{left:311.742735px;}
.x39_c01233{left:322.132785px;}
.x26_c01233{left:323.385135px;}
.x23_c01233{left:334.314735px;}
.x48_c01233{left:345.229485px;}
.xa_c01233{left:346.531335px;}
.x51_c01233{left:355.178985px;}
.x12_c01233{left:356.639235px;}
.x24_c01233{left:358.104435px;}
.x3e_c01233{left:366.316485px;}
.x40_c01233{left:367.509435px;}
.xb_c01233{left:377.978685px;}
.x1a_c01233{left:379.201335px;}
.x4c_c01233{left:389.135985px;}
.x1f_c01233{left:390.244785px;}
.x27_c01233{left:400.674435px;}
.x32_c01233{left:411.183285px;}
.x1b_c01233{left:423.508785px;}
.x57_c01233{left:432.596985px;}
.x5c_c01233{left:444.189885px;}
.x34_c01233{left:455.015535px;}
.xc_c01233{left:456.802485px;}
.x52_c01233{left:467.385585px;}
.x46_c01233{left:478.750785px;}
.x35_c01233{left:489.274485px;}
.x3a_c01233{left:490.511985px;}
.x53_c01233{left:500.510985px;}
.x28_c01233{left:510.514935px;}
.x58_c01233{left:511.549485px;}
.x41_c01233{left:521.498985px;}
.x20_c01233{left:533.364135px;}
.xd_c01233{left:536.403435px;}
.x13_c01233{left:544.417485px;}
.xe_c01233{left:555.579735px;}
.x2e_c01233{left:557.005335px;}
.x4e_c01233{left:568.890285px;}
.x5e_c01233{left:576.236085px;}
.x59_c01233{left:587.650785px;}
.x3b_c01233{left:589.596135px;}
.x5d_c01233{left:599.699085px;}
.x49_c01233{left:600.896985px;}
.x14_c01233{left:610.737585px;}
.x29_c01233{left:623.092785px;}
.x42_c01233{left:632.987835px;}
.x3c_c01233{left:634.373835px;}
.x4a_c01233{left:643.412535px;}
.x2a_c01233{left:655.337085px;}
.x4_c01233{left:666.187485px;}
.x5_c01233{left:677.062635px;}
.x1c_c01233{left:688.700085px;}
.x43_c01233{left:691.081035px;}
.x3d_c01233{left:697.778385px;}
.x15_c01233{left:698.847585px;}
.x2b_c01233{left:700.218735px;}
.x4d_c01233{left:708.732735px;}
.x21_c01233{left:710.113785px;}
.x2c_c01233{left:711.455235px;}
.x44_c01233{left:733.215435px;}
.x47_c01233{left:734.556885px;}
.x33_c01233{left:744.620235px;}
@media print{
.v2_c01233{vertical-align:-15.206400pt;}
.v0_c01233{vertical-align:0.000000pt;}
.v1_c01233{vertical-align:2.552000pt;}
.ls12_c01233{letter-spacing:-3.104646pt;}
.ls4_c01233{letter-spacing:-2.488646pt;}
.ls16_c01233{letter-spacing:-2.192960pt;}
.ls2_c01233{letter-spacing:0.000000pt;}
.ls0_c01233{letter-spacing:0.021331pt;}
.lsb_c01233{letter-spacing:0.270196pt;}
.ls6_c01233{letter-spacing:1.393642pt;}
.ls10_c01233{letter-spacing:1.998027pt;}
.lsa_c01233{letter-spacing:2.609523pt;}
.ls9_c01233{letter-spacing:2.868800pt;}
.lse_c01233{letter-spacing:2.912800pt;}
.ls14_c01233{letter-spacing:3.036148pt;}
.ls15_c01233{letter-spacing:3.132800pt;}
.lsd_c01233{letter-spacing:3.168000pt;}
.ls13_c01233{letter-spacing:3.185609pt;}
.lsc_c01233{letter-spacing:3.238400pt;}
.ls1_c01233{letter-spacing:3.285013pt;}
.ls11_c01233{letter-spacing:3.361609pt;}
.ls8_c01233{letter-spacing:3.379209pt;}
.ls3_c01233{letter-spacing:3.555209pt;}
.ls5_c01233{letter-spacing:3.643209pt;}
.ls17_c01233{letter-spacing:3.801609pt;}
.ls7_c01233{letter-spacing:50.688176pt;}
.ls18_c01233{letter-spacing:54.489776pt;}
.lsf_c01233{letter-spacing:55.756800pt;}
.ws0_c01233{word-spacing:0.000000pt;}
._6_c01233{width:3.692480pt;}
._7_c01233{width:18.995375pt;}
._4_c01233{width:21.428000pt;}
._3_c01233{width:31.858816pt;}
._5_c01233{width:34.921216pt;}
._0_c01233{width:42.733587pt;}
._2_c01233{width:66.512352pt;}
._1_c01233{width:251.758711pt;}
._8_c01233{width:692.531840pt;}
._9_c01233{width:1629.020096pt;}
.fs9_c01233{font-size:14.784000pt;}
.fs2_c01233{font-size:19.712000pt;}
.fs0_c01233{font-size:24.640000pt;}
.fs18_c01233{font-size:29.568000pt;}
.fs11_c01233{font-size:29.920000pt;}
.fs12_c01233{font-size:35.200000pt;}
.fs4_c01233{font-size:50.688176pt;}
.fs17_c01233{font-size:54.489776pt;}
.fsd_c01233{font-size:55.756800pt;}
.fs6_c01233{font-size:57.376000pt;}
.fsc_c01233{font-size:58.256000pt;}
.fs14_c01233{font-size:62.656000pt;}
.fsb_c01233{font-size:63.360000pt;}
.fs13_c01233{font-size:63.712176pt;}
.fsa_c01233{font-size:64.768000pt;}
.fse_c01233{font-size:67.232176pt;}
.fs5_c01233{font-size:67.584176pt;}
.fs8_c01233{font-size:70.576000pt;}
.fs1_c01233{font-size:71.104176pt;}
.fs3_c01233{font-size:72.864176pt;}
.fs16_c01233{font-size:75.152176pt;}
.fs15_c01233{font-size:76.032176pt;}
.fs19_c01233{font-size:79.552176pt;}
.fs7_c01233{font-size:85.184176pt;}
.fsf_c01233{font-size:88.704176pt;}
.fs10_c01233{font-size:91.520000pt;}
.y0_c01233{bottom:0.000000pt;}
.y21_c01233{bottom:9.738120pt;}
.y20_c01233{bottom:19.563320pt;}
.y1f_c01233{bottom:60.430520pt;}
.y1_c01233{bottom:68.000000pt;}
.y1e_c01233{bottom:89.576120pt;}
.y1d_c01233{bottom:118.404920pt;}
.y1c_c01233{bottom:174.795320pt;}
.y1b_c01233{bottom:190.952120pt;}
.y1a_c01233{bottom:195.070520pt;}
.y19_c01233{bottom:231.181320pt;}
.y18_c01233{bottom:260.014520pt;}
.y17_c01233{bottom:282.824120pt;}
.y16_c01233{bottom:287.888520pt;}
.y3_c01233{bottom:316.722600pt;}
.y15_c01233{bottom:344.595720pt;}
.y14_c01233{bottom:373.428920pt;}
.y13_c01233{bottom:428.868920pt;}
.y12_c01233{bottom:457.064120pt;}
.y11_c01233{bottom:488.106120pt;}
.y10_c01233{bottom:513.450120pt;}
.yf_c01233{bottom:540.694920pt;}
.yd_c01233{bottom:541.011720pt;}
.ye_c01233{bottom:541.332920pt;}
.yc_c01233{bottom:598.040120pt;}
.yb_c01233{bottom:626.547720pt;}
.ya_c01233{bottom:682.625720pt;}
.y9_c01233{bottom:711.771320pt;}
.y8_c01233{bottom:739.962120pt;}
.y7_c01233{bottom:795.718920pt;}
.y6_c01233{bottom:824.547720pt;}
.y5_c01233{bottom:861.930120pt;}
.y2_c01233{bottom:882.838920pt;}
.y4_c01233{bottom:945.248520pt;}
.h4_c01233{height:20.559000pt;}
.h2_c01233{height:25.698750pt;}
.h11_c01233{height:29.364844pt;}
.h6_c01233{height:33.758325pt;}
.h17_c01233{height:36.290191pt;}
.h12_c01233{height:36.712500pt;}
.hd_c01233{height:37.134029pt;}
.h8_c01233{height:59.841375pt;}
.hc_c01233{height:60.759188pt;}
.h14_c01233{height:61.493438pt;}
.hb_c01233{height:62.184375pt;}
.h18_c01233{height:62.869710pt;}
.ha_c01233{height:63.566250pt;}
.he_c01233{height:65.984704pt;}
.h7_c01233{height:66.330173pt;}
.h13_c01233{height:66.449809pt;}
.h3_c01233{height:69.784860pt;}
.h5_c01233{height:71.512204pt;}
.h16_c01233{height:73.757751pt;}
.h15_c01233{height:74.621423pt;}
.hf_c01233{height:87.058298pt;}
.h9_c01233{height:88.844434pt;}
.h10_c01233{height:89.821875pt;}
.h1_c01233{height:986.666667pt;}
.h0_c01233{height:1122.666667pt;}
.w1_c01233{width:689.333333pt;}
.w0_c01233{width:793.333333pt;}
.x0_c01233{left:0.000000pt;}
.x3_c01233{left:27.136253pt;}
.x1_c01233{left:52.000000pt;}
.x2_c01233{left:55.965053pt;}
.x25_c01233{left:78.167453pt;}
.x16_c01233{left:79.425853pt;}
.x6_c01233{left:80.376253pt;}
.x37_c01233{left:129.057853pt;}
.x54_c01233{left:136.775453pt;}
.x2f_c01233{left:147.150653pt;}
.x36_c01233{left:151.005053pt;}
.x4f_c01233{left:165.894653pt;}
.x17_c01233{left:166.862653pt;}
.x5a_c01233{left:177.180653pt;}
.x45_c01233{left:178.153053pt;}
.xf_c01233{left:179.085853pt;}
.x7_c01233{left:187.696653pt;}
.x18_c01233{left:189.927453pt;}
.x50_c01233{left:206.431853pt;}
.x10_c01233{left:207.369053pt;}
.x3f_c01233{left:209.780253pt;}
.x38_c01233{left:216.556253pt;}
.x1d_c01233{left:218.069853pt;}
.x55_c01233{left:219.244653pt;}
.x30_c01233{left:220.195053pt;}
.x5b_c01233{left:225.989853pt;}
.x8_c01233{left:226.975453pt;}
.x4b_c01233{left:235.740253pt;}
.x22_c01233{left:236.910653pt;}
.x19_c01233{left:246.278253pt;}
.x2d_c01233{left:247.488253pt;}
.x1e_c01233{left:256.600653pt;}
.x11_c01233{left:258.202253pt;}
.x9_c01233{left:267.640253pt;}
.x56_c01233{left:276.158653pt;}
.x31_c01233{left:277.104653pt;}
.x39_c01233{left:286.340253pt;}
.x26_c01233{left:287.453453pt;}
.x23_c01233{left:297.168653pt;}
.x48_c01233{left:306.870653pt;}
.xa_c01233{left:308.027853pt;}
.x51_c01233{left:315.714653pt;}
.x12_c01233{left:317.012653pt;}
.x24_c01233{left:318.315053pt;}
.x3e_c01233{left:325.614653pt;}
.x40_c01233{left:326.675053pt;}
.xb_c01233{left:335.981053pt;}
.x1a_c01233{left:337.067853pt;}
.x4c_c01233{left:345.898653pt;}
.x1f_c01233{left:346.884253pt;}
.x27_c01233{left:356.155053pt;}
.x32_c01233{left:365.496253pt;}
.x1b_c01233{left:376.452253pt;}
.x57_c01233{left:384.530653pt;}
.x5c_c01233{left:394.835453pt;}
.x34_c01233{left:404.458253pt;}
.xc_c01233{left:406.046653pt;}
.x52_c01233{left:415.453853pt;}
.x46_c01233{left:425.556253pt;}
.x35_c01233{left:434.910653pt;}
.x3a_c01233{left:436.010653pt;}
.x53_c01233{left:444.898653pt;}
.x28_c01233{left:453.791053pt;}
.x58_c01233{left:454.710653pt;}
.x41_c01233{left:463.554653pt;}
.x20_c01233{left:474.101453pt;}
.xd_c01233{left:476.803053pt;}
.x13_c01233{left:483.926653pt;}
.xe_c01233{left:493.848653pt;}
.x2e_c01233{left:495.115853pt;}
.x4e_c01233{left:505.680253pt;}
.x5e_c01233{left:512.209853pt;}
.x59_c01233{left:522.356253pt;}
.x3b_c01233{left:524.085453pt;}
.x5d_c01233{left:533.065853pt;}
.x49_c01233{left:534.130653pt;}
.x14_c01233{left:542.877853pt;}
.x29_c01233{left:553.860253pt;}
.x42_c01233{left:562.655853pt;}
.x3c_c01233{left:563.887853pt;}
.x4a_c01233{left:571.922253pt;}
.x2a_c01233{left:582.521853pt;}
.x4_c01233{left:592.166653pt;}
.x5_c01233{left:601.833453pt;}
.x1c_c01233{left:612.177853pt;}
.x43_c01233{left:614.294253pt;}
.x3d_c01233{left:620.247453pt;}
.x15_c01233{left:621.197853pt;}
.x2b_c01233{left:622.416653pt;}
.x4d_c01233{left:629.984653pt;}
.x21_c01233{left:631.212253pt;}
.x2c_c01233{left:632.404653pt;}
.x44_c01233{left:651.747053pt;}
.x47_c01233{left:652.939453pt;}
.x33_c01233{left:661.884653pt;}
}





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

.ir_c01234:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01234{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01234;src:url('chunks/assets/font_f2936bab785e21b158b67307.woff2')format("woff");}.ff1_c01234{font-family:ff1_c01234;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01234;src:url('chunks/assets/font_c8ee946f90b1ee77b1349fe9.woff2')format("woff");}.ff2_c01234{font-family:ff2_c01234;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01234;src:url('chunks/assets/font_e89062c30bdf82ae6a02dcc0.woff2')format("woff");}.ff3_c01234{font-family:ff3_c01234;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01234;src:url('chunks/assets/font_365e67d2dd56b70dfe3f92a0.woff2')format("woff");}.ff4_c01234{font-family:ff4_c01234;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01234;src:url('chunks/assets/font_cf80f223c86527548e2c1457.woff2')format("woff");}.ff5_c01234{font-family:ff5_c01234;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mf_c01234{transform:matrix(0.028410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.028410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.028410,0.000000,0.000000,0.250000,0,0);}
.m14_c01234{transform:matrix(0.039474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.039474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.039474,0.000000,0.000000,0.250000,0,0);}
.me_c01234{transform:matrix(0.118507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118507,0.000000,0.000000,0.250000,0,0);}
.m2_c01234{transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130953,0.000000,0.000000,0.250000,0,0);}
.m9_c01234{transform:matrix(0.138524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138524,0.000000,0.000000,0.250000,0,0);}
.m10_c01234{transform:matrix(0.139205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139205,0.000000,0.000000,0.250000,0,0);}
.m4f_c01234{transform:matrix(0.143773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143773,0.000000,0.000000,0.250000,0,0);}
.m30_c01234{transform:matrix(0.149977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149977,0.000000,0.000000,0.250000,0,0);}
.m3_c01234{transform:matrix(0.157830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157830,0.000000,0.000000,0.250000,0,0);}
.m24_c01234{transform:matrix(0.174999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174999,0.000000,0.000000,0.250000,0,0);}
.m13_c01234{transform:matrix(0.192105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192105,0.000000,0.000000,0.250000,0,0);}
.m58_c01234{transform:matrix(0.221081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221081,0.000000,0.000000,0.250000,0,0);}
.m46_c01234{transform:matrix(0.225009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225009,0.000000,0.000000,0.250000,0,0);}
.m21_c01234{transform:matrix(0.234001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234001,0.000000,0.000000,0.250000,0,0);}
.m40_c01234{transform:matrix(0.237323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237323,0.000000,0.000000,0.250000,0,0);}
.m0_c01234{transform:matrix(0.237447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237447,0.000000,0.000000,0.250000,0,0);}
.m67_c01234{transform:matrix(0.243775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243775,0.000000,0.000000,0.250000,0,0);}
.m64_c01234{transform:matrix(0.244417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244417,0.000000,0.000000,0.250000,0,0);}
.m59_c01234{transform:matrix(0.249826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249826,0.000000,0.000000,0.250000,0,0);}
.m1_c01234{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m74_c01234{transform:matrix(0.256794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256794,0.000000,0.000000,0.250000,0,0);}
.m78_c01234{transform:matrix(0.259832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259832,0.000000,0.000000,0.250000,0,0);}
.m4e_c01234{transform:matrix(0.262251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262251,0.000000,0.000000,0.250000,0,0);}
.m1d_c01234{transform:matrix(0.266555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266555,0.000000,0.000000,0.250000,0,0);}
.m57_c01234{transform:matrix(0.269191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269191,0.000000,0.000000,0.250000,0,0);}
.m37_c01234{transform:matrix(0.271003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271003,0.000000,0.000000,0.250000,0,0);}
.m63_c01234{transform:matrix(0.271074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271074,0.000000,0.000000,0.250000,0,0);}
.m4_c01234{transform:matrix(0.272155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272155,0.000000,0.000000,0.250000,0,0);}
.m20_c01234{transform:matrix(0.272956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272956,0.000000,0.000000,0.250000,0,0);}
.m69_c01234{transform:matrix(0.273997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273997,0.000000,0.000000,0.250000,0,0);}
.m2f_c01234{transform:matrix(0.274838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274838,0.000000,0.000000,0.250000,0,0);}
.m15_c01234{transform:matrix(0.275843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275843,0.000000,0.000000,0.250000,0,0);}
.m12_c01234{transform:matrix(0.275966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275966,0.000000,0.000000,0.250000,0,0);}
.m6a_c01234{transform:matrix(0.279406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279406,0.000000,0.000000,0.250000,0,0);}
.m1c_c01234{transform:matrix(0.279451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279451,0.000000,0.000000,0.250000,0,0);}
.m2c_c01234{transform:matrix(0.280015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280015,0.000000,0.000000,0.250000,0,0);}
.m5a_c01234{transform:matrix(0.280358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280358,0.000000,0.000000,0.250000,0,0);}
.m18_c01234{transform:matrix(0.280409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280409,0.000000,0.000000,0.250000,0,0);}
.m23_c01234{transform:matrix(0.282214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282214,0.000000,0.000000,0.250000,0,0);}
.m50_c01234{transform:matrix(0.282407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282407,0.000000,0.000000,0.250000,0,0);}
.m17_c01234{transform:matrix(0.283772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283772,0.000000,0.000000,0.250000,0,0);}
.m8_c01234{transform:matrix(0.283782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283782,0.000000,0.000000,0.250000,0,0);}
.m11_c01234{transform:matrix(0.284082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284082,0.000000,0.000000,0.250000,0,0);}
.m2e_c01234{transform:matrix(0.285869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285869,0.000000,0.000000,0.250000,0,0);}
.m49_c01234{transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285878,0.000000,0.000000,0.250000,0,0);}
.m1f_c01234{transform:matrix(0.288605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288605,0.000000,0.000000,0.250000,0,0);}
.m71_c01234{transform:matrix(0.288675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288675,0.000000,0.000000,0.250000,0,0);}
.m3f_c01234{transform:matrix(0.289973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289973,0.000000,0.000000,0.250000,0,0);}
.m5b_c01234{transform:matrix(0.290501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290501,0.000000,0.000000,0.250000,0,0);}
.m48_c01234{transform:matrix(0.290667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290667,0.000000,0.000000,0.250000,0,0);}
.m33_c01234{transform:matrix(0.291041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291041,0.000000,0.000000,0.250000,0,0);}
.ma_c01234{transform:matrix(0.291989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291989,0.000000,0.000000,0.250000,0,0);}
.m77_c01234{transform:matrix(0.293548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293548,0.000000,0.000000,0.250000,0,0);}
.m1a_c01234{transform:matrix(0.293659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293659,0.000000,0.000000,0.250000,0,0);}
.m6f_c01234{transform:matrix(0.293706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293706,0.000000,0.000000,0.250000,0,0);}
.m25_c01234{transform:matrix(0.294364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294364,0.000000,0.000000,0.250000,0,0);}
.m5c_c01234{transform:matrix(0.295458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295458,0.000000,0.000000,0.250000,0,0);}
.m26_c01234{transform:matrix(0.298044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298044,0.000000,0.000000,0.250000,0,0);}
.m19_c01234{transform:matrix(0.298859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298859,0.000000,0.000000,0.250000,0,0);}
.m6d_c01234{transform:matrix(0.299859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299859,0.000000,0.000000,0.250000,0,0);}
.m60_c01234{transform:matrix(0.300964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300964,0.000000,0.000000,0.250000,0,0);}
.m4c_c01234{transform:matrix(0.301786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301786,0.000000,0.000000,0.250000,0,0);}
.m45_c01234{transform:matrix(0.302254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302254,0.000000,0.000000,0.250000,0,0);}
.m1b_c01234{transform:matrix(0.303692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303692,0.000000,0.000000,0.250000,0,0);}
.m3d_c01234{transform:matrix(0.303994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303994,0.000000,0.000000,0.250000,0,0);}
.m3b_c01234{transform:matrix(0.304012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304012,0.000000,0.000000,0.250000,0,0);}
.m6b_c01234{transform:matrix(0.304800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304800,0.000000,0.000000,0.250000,0,0);}
.m1e_c01234{transform:matrix(0.306241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306241,0.000000,0.000000,0.250000,0,0);}
.m53_c01234{transform:matrix(0.307632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307632,0.000000,0.000000,0.250000,0,0);}
.m73_c01234{transform:matrix(0.307674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307674,0.000000,0.000000,0.250000,0,0);}
.m61_c01234{transform:matrix(0.309337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309337,0.000000,0.000000,0.250000,0,0);}
.m65_c01234{transform:matrix(0.309909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309909,0.000000,0.000000,0.250000,0,0);}
.m47_c01234{transform:matrix(0.310868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310868,0.000000,0.000000,0.250000,0,0);}
.m36_c01234{transform:matrix(0.311070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311070,0.000000,0.000000,0.250000,0,0);}
.m39_c01234{transform:matrix(0.311104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311104,0.000000,0.000000,0.250000,0,0);}
.m2a_c01234{transform:matrix(0.311983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311983,0.000000,0.000000,0.250000,0,0);}
.m3c_c01234{transform:matrix(0.312639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312639,0.000000,0.000000,0.250000,0,0);}
.m38_c01234{transform:matrix(0.312808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312808,0.000000,0.000000,0.250000,0,0);}
.mc_c01234{transform:matrix(0.313171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313171,0.000000,0.000000,0.250000,0,0);}
.m44_c01234{transform:matrix(0.313773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313773,0.000000,0.000000,0.250000,0,0);}
.m2d_c01234{transform:matrix(0.315966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315966,0.000000,0.000000,0.250000,0,0);}
.m4b_c01234{transform:matrix(0.316008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316008,0.000000,0.000000,0.250000,0,0);}
.m43_c01234{transform:matrix(0.316560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316560,0.000000,0.000000,0.250000,0,0);}
.md_c01234{transform:matrix(0.317682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317682,0.000000,0.000000,0.250000,0,0);}
.m6_c01234{transform:matrix(0.319640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319640,0.000000,0.000000,0.250000,0,0);}
.m41_c01234{transform:matrix(0.319919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319919,0.000000,0.000000,0.250000,0,0);}
.m28_c01234{transform:matrix(0.320384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320384,0.000000,0.000000,0.250000,0,0);}
.m52_c01234{transform:matrix(0.322104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322104,0.000000,0.000000,0.250000,0,0);}
.m51_c01234{transform:matrix(0.323605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323605,0.000000,0.000000,0.250000,0,0);}
.m76_c01234{transform:matrix(0.324087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324087,0.000000,0.000000,0.250000,0,0);}
.m68_c01234{transform:matrix(0.324139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324139,0.000000,0.000000,0.250000,0,0);}
.m22_c01234{transform:matrix(0.324750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324750,0.000000,0.000000,0.250000,0,0);}
.m2b_c01234{transform:matrix(0.326905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326905,0.000000,0.000000,0.250000,0,0);}
.m31_c01234{transform:matrix(0.329419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329419,0.000000,0.000000,0.250000,0,0);}
.m4a_c01234{transform:matrix(0.329694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329694,0.000000,0.000000,0.250000,0,0);}
.m27_c01234{transform:matrix(0.329916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329916,0.000000,0.000000,0.250000,0,0);}
.m5_c01234{transform:matrix(0.330515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330515,0.000000,0.000000,0.250000,0,0);}
.m16_c01234{transform:matrix(0.330842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330842,0.000000,0.000000,0.250000,0,0);}
.m5e_c01234{transform:matrix(0.330939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330939,0.000000,0.000000,0.250000,0,0);}
.m55_c01234{transform:matrix(0.331120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331120,0.000000,0.000000,0.250000,0,0);}
.m5d_c01234{transform:matrix(0.332585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332585,0.000000,0.000000,0.250000,0,0);}
.m75_c01234{transform:matrix(0.332677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332677,0.000000,0.000000,0.250000,0,0);}
.m32_c01234{transform:matrix(0.334411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334411,0.000000,0.000000,0.250000,0,0);}
.m62_c01234{transform:matrix(0.335765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335765,0.000000,0.000000,0.250000,0,0);}
.m66_c01234{transform:matrix(0.336603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336603,0.000000,0.000000,0.250000,0,0);}
.m7_c01234{transform:matrix(0.336678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336678,0.000000,0.000000,0.250000,0,0);}
.m54_c01234{transform:matrix(0.337642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337642,0.000000,0.000000,0.250000,0,0);}
.m6e_c01234{transform:matrix(0.338545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338545,0.000000,0.000000,0.250000,0,0);}
.m29_c01234{transform:matrix(0.340747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340747,0.000000,0.000000,0.250000,0,0);}
.m70_c01234{transform:matrix(0.343827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343827,0.000000,0.000000,0.250000,0,0);}
.m3e_c01234{transform:matrix(0.343948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343948,0.000000,0.000000,0.250000,0,0);}
.m3a_c01234{transform:matrix(0.344354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344354,0.000000,0.000000,0.250000,0,0);}
.m42_c01234{transform:matrix(0.346693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346693,0.000000,0.000000,0.250000,0,0);}
.m35_c01234{transform:matrix(0.350579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350579,0.000000,0.000000,0.250000,0,0);}
.m4d_c01234{transform:matrix(0.359255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359255,0.000000,0.000000,0.250000,0,0);}
.m6c_c01234{transform:matrix(0.372193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372193,0.000000,0.000000,0.250000,0,0);}
.m5f_c01234{transform:matrix(0.376083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376083,0.000000,0.000000,0.250000,0,0);}
.m56_c01234{transform:matrix(0.385083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385083,0.000000,0.000000,0.250000,0,0);}
.mb_c01234{transform:matrix(0.390803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390803,0.000000,0.000000,0.250000,0,0);}
.m34_c01234{transform:matrix(0.397482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397482,0.000000,0.000000,0.250000,0,0);}
.m72_c01234{transform:matrix(0.403791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403791,0.000000,0.000000,0.250000,0,0);}
.v0_c01234{vertical-align:0.000000px;}
.v1_c01234{vertical-align:2.851200px;}
.ls9_c01234{letter-spacing:-3.063067px;}
.ls10_c01234{letter-spacing:-3.007627px;}
.ls2_c01234{letter-spacing:-2.702700px;}
.ls6_c01234{letter-spacing:-2.619540px;}
.lse_c01234{letter-spacing:-2.432430px;}
.ls17_c01234{letter-spacing:-1.829520px;}
.lsd_c01234{letter-spacing:-0.493970px;}
.ls5_c01234{letter-spacing:-0.067360px;}
.ls3_c01234{letter-spacing:0.000000px;}
.ls13_c01234{letter-spacing:0.469618px;}
.ls11_c01234{letter-spacing:0.628690px;}
.ls15_c01234{letter-spacing:1.121828px;}
.ls7_c01234{letter-spacing:1.369645px;}
.ls12_c01234{letter-spacing:1.631599px;}
.ls1_c01234{letter-spacing:2.701868px;}
.ls16_c01234{letter-spacing:2.724322px;}
.ls18_c01234{letter-spacing:3.227400px;}
.ls8_c01234{letter-spacing:3.742200px;}
.ls19_c01234{letter-spacing:3.880810px;}
.lsb_c01234{letter-spacing:3.979810px;}
.ls4_c01234{letter-spacing:29.937798px;}
.lsc_c01234{letter-spacing:54.172998px;}
.ls14_c01234{letter-spacing:55.598598px;}
.lsf_c01234{letter-spacing:57.024198px;}
.lsa_c01234{letter-spacing:62.726400px;}
.ls0_c01234{letter-spacing:244.567158px;}
.sc__c01234{text-shadow:none;}
.sc0_c01234{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01234{-webkit-text-stroke:0px transparent;}
.sc0_c01234{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01234{word-spacing:-21.412868px;}
.ws1_c01234{word-spacing:0.000000px;}
._1_c01234{margin-left:-1.676506px;}
._0_c01234{width:32.275940px;}
.fc0_c01234{color:transparent;}
.fsb_c01234{font-size:22.572000px;}
.fs3_c01234{font-size:25.146000px;}
.fs4_c01234{font-size:29.937798px;}
.fs5_c01234{font-size:45.144000px;}
.fs11_c01234{font-size:52.272000px;}
.fsa_c01234{font-size:54.172998px;}
.fse_c01234{font-size:55.598598px;}
.fsc_c01234{font-size:57.024198px;}
.fs8_c01234{font-size:62.726400px;}
.fs14_c01234{font-size:64.548000px;}
.fs12_c01234{font-size:66.330000px;}
.fs2_c01234{font-size:67.320000px;}
.fs6_c01234{font-size:74.844000px;}
.fs0_c01234{font-size:77.220000px;}
.fs15_c01234{font-size:77.616198px;}
.fs10_c01234{font-size:78.804000px;}
.fs13_c01234{font-size:79.200000px;}
.fs9_c01234{font-size:79.596198px;}
.fsf_c01234{font-size:84.348000px;}
.fsd_c01234{font-size:85.932198px;}
.fs7_c01234{font-size:87.516198px;}
.fs1_c01234{font-size:91.872198px;}
.y0_c01234{bottom:0.000000px;}
.y1b_c01234{bottom:23.790735px;}
.y1_c01234{bottom:76.500000px;}
.y1a_c01234{bottom:124.295535px;}
.y19_c01234{bottom:157.079385px;}
.y18_c01234{bottom:188.447535px;}
.y17_c01234{bottom:252.955935px;}
.y16_c01234{bottom:284.319135px;}
.y15_c01234{bottom:347.753385px;}
.y14_c01234{bottom:379.121535px;}
.y13_c01234{bottom:411.197535px;}
.y12_c01234{bottom:474.280335px;}
.y11_c01234{bottom:537.714585px;}
.y10_c01234{bottom:569.434185px;}
.yf_c01234{bottom:601.510185px;}
.ye_c01234{bottom:663.880185px;}
.yd_c01234{bottom:695.961135px;}
.yc_c01234{bottom:727.324335px;}
.yb_c01234{bottom:754.054335px;}
.ya_c01234{bottom:790.050735px;}
.y9_c01234{bottom:822.483135px;}
.y8_c01234{bottom:886.278735px;}
.y7_c01234{bottom:917.993385px;}
.y6_c01234{bottom:1022.774985px;}
.y5_c01234{bottom:1030.620735px;}
.y4_c01234{bottom:1040.951385px;}
.y3_c01234{bottom:1053.068985px;}
.y2_c01234{bottom:1065.186585px;}
.h5_c01234{height:19.938573px;}
.hc_c01234{height:23.541891px;}
.h4_c01234{height:26.226492px;}
.hb_c01234{height:36.079217px;}
.hf_c01234{height:37.028666px;}
.hd_c01234{height:37.978116px;}
.h9_c01234{height:41.775782px;}
.h6_c01234{height:47.083781px;}
.h12_c01234{height:54.518063px;}
.h15_c01234{height:67.321547px;}
.h13_c01234{height:69.180117px;}
.h7_c01234{height:73.455293px;}
.h16_c01234{height:76.138155px;}
.h11_c01234{height:77.341816px;}
.h14_c01234{height:77.730469px;}
.ha_c01234{height:78.119315px;}
.h2_c01234{height:80.538047px;}
.h10_c01234{height:82.741764px;}
.he_c01234{height:84.337753px;}
.h8_c01234{height:85.892362px;}
.h3_c01234{height:90.167538px;}
.h1_c01234{height:1110.000000px;}
.h0_c01234{height:1263.000000px;}
.w1_c01234{width:775.500000px;}
.w0_c01234{width:892.500000px;}
.x0_c01234{left:0.000000px;}
.x1_c01234{left:58.500000px;}
.x6_c01234{left:92.913135px;}
.x1b_c01234{left:94.794135px;}
.x4e_c01234{left:136.755285px;}
.x1c_c01234{left:148.961985px;}
.x1d_c01234{left:159.807435px;}
.x44_c01234{left:180.077685px;}
.x53_c01234{left:190.185585px;}
.x1e_c01234{left:191.279535px;}
.x37_c01234{left:192.319035px;}
.x13_c01234{left:201.946785px;}
.x4c_c01234{left:203.015985px;}
.x29_c01234{left:204.228735px;}
.x7_c01234{left:206.094885px;}
.x8_c01234{left:215.158335px;}
.x36_c01234{left:225.172185px;}
.x45_c01234{left:228.018435px;}
.x54_c01234{left:238.284735px;}
.x38_c01234{left:239.423235px;}
.x41_c01234{left:250.174635px;}
.x4f_c01234{left:258.515385px;}
.x9_c01234{left:261.901185px;}
.x49_c01234{left:269.425185px;}
.x46_c01234{left:280.468635px;}
.x1f_c01234{left:281.780385px;}
.x30_c01234{left:291.670485px;}
.x2c_c01234{left:293.249535px;}
.x42_c01234{left:294.412785px;}
.x4d_c01234{left:302.887185px;}
.x5a_c01234{left:304.094985px;}
.xa_c01234{left:305.104785px;}
.x14_c01234{left:315.286935px;}
.x20_c01234{left:325.612635px;}
.x2a_c01234{left:335.968035px;}
.x39_c01234{left:337.651035px;}
.x31_c01234{left:348.659835px;}
.x55_c01234{left:358.351935px;}
.x21_c01234{left:359.975535px;}
.x3a_c01234{left:370.380435px;}
.x5b_c01234{left:379.854735px;}
.xb_c01234{left:381.809985px;}
.x32_c01234{left:391.566435px;}
.x3b_c01234{left:404.233485px;}
.x40_c01234{left:414.697785px;}
.xc_c01234{left:425.845185px;}
.x2d_c01234{left:426.953985px;}
.x15_c01234{left:435.111585px;}
.x58_c01234{left:436.309485px;}
.x2e_c01234{left:446.090685px;}
.x4a_c01234{left:447.590535px;}
.x33_c01234{left:448.847835px;}
.x16_c01234{left:461.529735px;}
.x3c_c01234{left:469.667535px;}
.x22_c01234{left:470.944635px;}
.x34_c01234{left:482.656335px;}
.x2f_c01234{left:484.393785px;}
.x47_c01234{left:492.655335px;}
.x23_c01234{left:501.144585px;}
.x51_c01234{left:502.238535px;}
.x24_c01234{left:503.446335px;}
.x17_c01234{left:513.564135px;}
.x18_c01234{left:516.053985px;}
.x5c_c01234{left:518.053785px;}
.xd_c01234{left:537.918135px;}
.x3d_c01234{left:547.743885px;}
.x19_c01234{left:548.867535px;}
.x25_c01234{left:558.247785px;}
.x26_c01234{left:559.995135px;}
.xe_c01234{left:569.424885px;}
.x3e_c01234{left:570.741585px;}
.x56_c01234{left:581.077185px;}
.x1a_c01234{left:591.556335px;}
.x3f_c01234{left:603.109635px;}
.xf_c01234{left:604.277835px;}
.x52_c01234{left:612.178035px;}
.x48_c01234{left:613.826385px;}
.x27_c01234{left:615.454935px;}
.x59_c01234{left:635.056935px;}
.x10_c01234{left:637.447785px;}
.x3_c01234{left:646.219185px;}
.x2_c01234{left:659.009985px;}
.x43_c01234{left:668.608035px;}
.x35_c01234{left:680.299935px;}
.x11_c01234{left:681.339435px;}
.x57_c01234{left:690.610785px;}
.x4b_c01234{left:702.560085px;}
.x2b_c01234{left:711.935385px;}
.x12_c01234{left:713.826285px;}
.x4_c01234{left:716.533935px;}
.x5_c01234{left:718.924785px;}
.x50_c01234{left:723.805485px;}
.x28_c01234{left:736.799235px;}
@media print{
.v0_c01234{vertical-align:0.000000pt;}
.v1_c01234{vertical-align:2.534400pt;}
.ls9_c01234{letter-spacing:-2.722726pt;}
.ls10_c01234{letter-spacing:-2.673446pt;}
.ls2_c01234{letter-spacing:-2.402400pt;}
.ls6_c01234{letter-spacing:-2.328480pt;}
.lse_c01234{letter-spacing:-2.162160pt;}
.ls17_c01234{letter-spacing:-1.626240pt;}
.lsd_c01234{letter-spacing:-0.439085pt;}
.ls5_c01234{letter-spacing:-0.059875pt;}
.ls3_c01234{letter-spacing:0.000000pt;}
.ls13_c01234{letter-spacing:0.417438pt;}
.ls11_c01234{letter-spacing:0.558835pt;}
.ls15_c01234{letter-spacing:0.997181pt;}
.ls7_c01234{letter-spacing:1.217462pt;}
.ls12_c01234{letter-spacing:1.450310pt;}
.ls1_c01234{letter-spacing:2.401661pt;}
.ls16_c01234{letter-spacing:2.421619pt;}
.ls18_c01234{letter-spacing:2.868800pt;}
.ls8_c01234{letter-spacing:3.326400pt;}
.ls19_c01234{letter-spacing:3.449609pt;}
.lsb_c01234{letter-spacing:3.537609pt;}
.ls4_c01234{letter-spacing:26.611376pt;}
.lsc_c01234{letter-spacing:48.153776pt;}
.ls14_c01234{letter-spacing:49.420976pt;}
.lsf_c01234{letter-spacing:50.688176pt;}
.lsa_c01234{letter-spacing:55.756800pt;}
.ls0_c01234{letter-spacing:217.393029pt;}
.ws0_c01234{word-spacing:-19.033661pt;}
.ws1_c01234{word-spacing:0.000000pt;}
._1_c01234{margin-left:-1.490227pt;}
._0_c01234{width:28.689725pt;}
.fsb_c01234{font-size:20.064000pt;}
.fs3_c01234{font-size:22.352000pt;}
.fs4_c01234{font-size:26.611376pt;}
.fs5_c01234{font-size:40.128000pt;}
.fs11_c01234{font-size:46.464000pt;}
.fsa_c01234{font-size:48.153776pt;}
.fse_c01234{font-size:49.420976pt;}
.fsc_c01234{font-size:50.688176pt;}
.fs8_c01234{font-size:55.756800pt;}
.fs14_c01234{font-size:57.376000pt;}
.fs12_c01234{font-size:58.960000pt;}
.fs2_c01234{font-size:59.840000pt;}
.fs6_c01234{font-size:66.528000pt;}
.fs0_c01234{font-size:68.640000pt;}
.fs15_c01234{font-size:68.992176pt;}
.fs10_c01234{font-size:70.048000pt;}
.fs13_c01234{font-size:70.400000pt;}
.fs9_c01234{font-size:70.752176pt;}
.fsf_c01234{font-size:74.976000pt;}
.fsd_c01234{font-size:76.384176pt;}
.fs7_c01234{font-size:77.792176pt;}
.fs1_c01234{font-size:81.664176pt;}
.y0_c01234{bottom:0.000000pt;}
.y1b_c01234{bottom:21.147320pt;}
.y1_c01234{bottom:68.000000pt;}
.y1a_c01234{bottom:110.484920pt;}
.y19_c01234{bottom:139.626120pt;}
.y18_c01234{bottom:167.508920pt;}
.y17_c01234{bottom:224.849720pt;}
.y16_c01234{bottom:252.728120pt;}
.y15_c01234{bottom:309.114120pt;}
.y14_c01234{bottom:336.996920pt;}
.y13_c01234{bottom:365.508920pt;}
.y12_c01234{bottom:421.582520pt;}
.y11_c01234{bottom:477.968520pt;}
.y10_c01234{bottom:506.163720pt;}
.yf_c01234{bottom:534.675720pt;}
.ye_c01234{bottom:590.115720pt;}
.yd_c01234{bottom:618.632120pt;}
.yc_c01234{bottom:646.510520pt;}
.yb_c01234{bottom:670.270520pt;}
.ya_c01234{bottom:702.267320pt;}
.y9_c01234{bottom:731.096120pt;}
.y8_c01234{bottom:787.803320pt;}
.y7_c01234{bottom:815.994120pt;}
.y6_c01234{bottom:909.133320pt;}
.y5_c01234{bottom:916.107320pt;}
.y4_c01234{bottom:925.290120pt;}
.y3_c01234{bottom:936.061320pt;}
.y2_c01234{bottom:946.832520pt;}
.h5_c01234{height:17.723176pt;}
.hc_c01234{height:20.926125pt;}
.h4_c01234{height:23.312438pt;}
.hb_c01234{height:32.070415pt;}
.hf_c01234{height:32.914370pt;}
.hd_c01234{height:33.758325pt;}
.h9_c01234{height:37.134029pt;}
.h6_c01234{height:41.852250pt;}
.h12_c01234{height:48.460500pt;}
.h15_c01234{height:59.841375pt;}
.h13_c01234{height:61.493438pt;}
.h7_c01234{height:65.293594pt;}
.h16_c01234{height:67.678360pt;}
.h11_c01234{height:68.748281pt;}
.h14_c01234{height:69.093750pt;}
.ha_c01234{height:69.439391pt;}
.h2_c01234{height:71.589375pt;}
.h10_c01234{height:73.548234pt;}
.he_c01234{height:74.966891pt;}
.h8_c01234{height:76.348766pt;}
.h3_c01234{height:80.148923pt;}
.h1_c01234{height:986.666667pt;}
.h0_c01234{height:1122.666667pt;}
.w1_c01234{width:689.333333pt;}
.w0_c01234{width:793.333333pt;}
.x0_c01234{left:0.000000pt;}
.x1_c01234{left:52.000000pt;}
.x6_c01234{left:82.589453pt;}
.x1b_c01234{left:84.261453pt;}
.x4e_c01234{left:121.560253pt;}
.x1c_c01234{left:132.410653pt;}
.x1d_c01234{left:142.051053pt;}
.x44_c01234{left:160.069053pt;}
.x53_c01234{left:169.053853pt;}
.x1e_c01234{left:170.026253pt;}
.x37_c01234{left:170.950253pt;}
.x13_c01234{left:179.508253pt;}
.x4c_c01234{left:180.458653pt;}
.x29_c01234{left:181.536653pt;}
.x7_c01234{left:183.195453pt;}
.x8_c01234{left:191.251853pt;}
.x36_c01234{left:200.153053pt;}
.x45_c01234{left:202.683053pt;}
.x54_c01234{left:211.808653pt;}
.x38_c01234{left:212.820653pt;}
.x41_c01234{left:222.377453pt;}
.x4f_c01234{left:229.791453pt;}
.x9_c01234{left:232.801053pt;}
.x49_c01234{left:239.489053pt;}
.x46_c01234{left:249.305453pt;}
.x1f_c01234{left:250.471453pt;}
.x30_c01234{left:259.262653pt;}
.x2c_c01234{left:260.666253pt;}
.x42_c01234{left:261.700253pt;}
.x4d_c01234{left:269.233053pt;}
.x5a_c01234{left:270.306653pt;}
.xa_c01234{left:271.204253pt;}
.x14_c01234{left:280.255053pt;}
.x20_c01234{left:289.433453pt;}
.x2a_c01234{left:298.638253pt;}
.x39_c01234{left:300.134253pt;}
.x31_c01234{left:309.919853pt;}
.x55_c01234{left:318.535053pt;}
.x21_c01234{left:319.978253pt;}
.x3a_c01234{left:329.227053pt;}
.x5b_c01234{left:337.648653pt;}
.xb_c01234{left:339.386653pt;}
.x32_c01234{left:348.059053pt;}
.x3b_c01234{left:359.318653pt;}
.x40_c01234{left:368.620253pt;}
.xc_c01234{left:378.529053pt;}
.x2d_c01234{left:379.514653pt;}
.x15_c01234{left:386.765853pt;}
.x58_c01234{left:387.830653pt;}
.x2e_c01234{left:396.525053pt;}
.x4a_c01234{left:397.858253pt;}
.x33_c01234{left:398.975853pt;}
.x16_c01234{left:410.248653pt;}
.x3c_c01234{left:417.482253pt;}
.x22_c01234{left:418.617453pt;}
.x34_c01234{left:429.027853pt;}
.x2f_c01234{left:430.572253pt;}
.x47_c01234{left:437.915853pt;}
.x23_c01234{left:445.461853pt;}
.x51_c01234{left:446.434253pt;}
.x24_c01234{left:447.507853pt;}
.x17_c01234{left:456.501453pt;}
.x18_c01234{left:458.714653pt;}
.x5c_c01234{left:460.492253pt;}
.xd_c01234{left:478.149453pt;}
.x3d_c01234{left:486.883453pt;}
.x19_c01234{left:487.882253pt;}
.x25_c01234{left:496.220253pt;}
.x26_c01234{left:497.773453pt;}
.xe_c01234{left:506.155453pt;}
.x3e_c01234{left:507.325853pt;}
.x56_c01234{left:516.513053pt;}
.x1a_c01234{left:525.827853pt;}
.x3f_c01234{left:536.097453pt;}
.xf_c01234{left:537.135853pt;}
.x52_c01234{left:544.158253pt;}
.x48_c01234{left:545.623453pt;}
.x27_c01234{left:547.071053pt;}
.x59_c01234{left:564.495053pt;}
.x10_c01234{left:566.620253pt;}
.x3_c01234{left:574.417053pt;}
.x2_c01234{left:585.786653pt;}
.x43_c01234{left:594.318253pt;}
.x35_c01234{left:604.711053pt;}
.x11_c01234{left:605.635053pt;}
.x57_c01234{left:613.876253pt;}
.x4b_c01234{left:624.497853pt;}
.x2b_c01234{left:632.831453pt;}
.x12_c01234{left:634.512253pt;}
.x4_c01234{left:636.919053pt;}
.x5_c01234{left:639.044253pt;}
.x50_c01234{left:643.382653pt;}
.x28_c01234{left:654.932653pt;}
}





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

.ir_c01235:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01235{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01235;src:url('chunks/assets/font_7c708dd86dd3e2e347aa35fc.woff2')format("woff");}.ff1_c01235{font-family:ff1_c01235;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01235;src:url('chunks/assets/font_5d75d9c627aa680f62d20a58.woff2')format("woff");}.ff2_c01235{font-family:ff2_c01235;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01235;src:url('chunks/assets/font_85eb11058df412c75179deab.woff2')format("woff");}.ff3_c01235{font-family:ff3_c01235;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01235;src:url('chunks/assets/font_f4d8e5086cdf3cc8214e3ce2.woff2')format("woff");}.ff4_c01235{font-family:ff4_c01235;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01235;src:url('chunks/assets/font_edcc006c864d99e56da12f3a.woff2')format("woff");}.ff5_c01235{font-family:ff5_c01235;line-height:0.689941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m76_c01235{transform:matrix(0.103409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103409,0.000000,0.000000,0.250000,0,0);}
.m8a_c01235{transform:matrix(0.139590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139590,0.000000,0.000000,0.250000,0,0);}
.m3_c01235{transform:matrix(0.142422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142422,0.000000,0.000000,0.250000,0,0);}
.m61_c01235{transform:matrix(0.144736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144736,0.000000,0.000000,0.250000,0,0);}
.m75_c01235{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m68_c01235{transform:matrix(0.152443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152443,0.000000,0.000000,0.250000,0,0);}
.m1a_c01235{transform:matrix(0.156492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156492,0.000000,0.000000,0.250000,0,0);}
.me_c01235{transform:matrix(0.170090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170090,0.000000,0.000000,0.250000,0,0);}
.m78_c01235{transform:matrix(0.174999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174999,0.000000,0.000000,0.250000,0,0);}
.m62_c01235{transform:matrix(0.177632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177632,0.000000,0.000000,0.250000,0,0);}
.m77_c01235{transform:matrix(0.178125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178125,0.000000,0.000000,0.250000,0,0);}
.m85_c01235{transform:matrix(0.179327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179327,0.000000,0.000000,0.250000,0,0);}
.m79_c01235{transform:matrix(0.179688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179688,0.000000,0.000000,0.250000,0,0);}
.m6e_c01235{transform:matrix(0.184889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184889,0.000000,0.000000,0.250000,0,0);}
.m71_c01235{transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);}
.m35_c01235{transform:matrix(0.206081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206081,0.000000,0.000000,0.250000,0,0);}
.ma_c01235{transform:matrix(0.212279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212279,0.000000,0.000000,0.250000,0,0);}
.m4_c01235{transform:matrix(0.222541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222541,0.000000,0.000000,0.250000,0,0);}
.m1c_c01235{transform:matrix(0.225736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225736,0.000000,0.000000,0.250000,0,0);}
.m5c_c01235{transform:matrix(0.226961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226961,0.000000,0.000000,0.250000,0,0);}
.m64_c01235{transform:matrix(0.229839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229839,0.000000,0.000000,0.250000,0,0);}
.m65_c01235{transform:matrix(0.230072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230072,0.000000,0.000000,0.250000,0,0);}
.m2_c01235{transform:matrix(0.231428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231428,0.000000,0.000000,0.250000,0,0);}
.m63_c01235{transform:matrix(0.234468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234468,0.000000,0.000000,0.250000,0,0);}
.m26_c01235{transform:matrix(0.246679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246679,0.000000,0.000000,0.250000,0,0);}
.m13_c01235{transform:matrix(0.248405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248405,0.000000,0.000000,0.250000,0,0);}
.m0_c01235{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m89_c01235{transform:matrix(0.250649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250649,0.000000,0.000000,0.250000,0,0);}
.m8_c01235{transform:matrix(0.253155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253155,0.000000,0.000000,0.250000,0,0);}
.m49_c01235{transform:matrix(0.253572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253572,0.000000,0.000000,0.250000,0,0);}
.m67_c01235{transform:matrix(0.258060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258060,0.000000,0.000000,0.250000,0,0);}
.m41_c01235{transform:matrix(0.259058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259058,0.000000,0.000000,0.250000,0,0);}
.m6f_c01235{transform:matrix(0.259621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259621,0.000000,0.000000,0.250000,0,0);}
.m38_c01235{transform:matrix(0.261220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261220,0.000000,0.000000,0.250000,0,0);}
.m5a_c01235{transform:matrix(0.262480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262480,0.000000,0.000000,0.250000,0,0);}
.m45_c01235{transform:matrix(0.268434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268434,0.000000,0.000000,0.250000,0,0);}
.m1_c01235{transform:matrix(0.268659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268659,0.000000,0.000000,0.250000,0,0);}
.m3f_c01235{transform:matrix(0.271316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271316,0.000000,0.000000,0.250000,0,0);}
.m1f_c01235{transform:matrix(0.271524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271524,0.000000,0.000000,0.250000,0,0);}
.m3b_c01235{transform:matrix(0.271917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271917,0.000000,0.000000,0.250000,0,0);}
.m2a_c01235{transform:matrix(0.271918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271918,0.000000,0.000000,0.250000,0,0);}
.m20_c01235{transform:matrix(0.273518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273518,0.000000,0.000000,0.250000,0,0);}
.m30_c01235{transform:matrix(0.275225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275225,0.000000,0.000000,0.250000,0,0);}
.m1b_c01235{transform:matrix(0.276783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276783,0.000000,0.000000,0.250000,0,0);}
.m2d_c01235{transform:matrix(0.276862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276862,0.000000,0.000000,0.250000,0,0);}
.m40_c01235{transform:matrix(0.277442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277442,0.000000,0.000000,0.250000,0,0);}
.m55_c01235{transform:matrix(0.278280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278280,0.000000,0.000000,0.250000,0,0);}
.m9_c01235{transform:matrix(0.279370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279370,0.000000,0.000000,0.250000,0,0);}
.m59_c01235{transform:matrix(0.280599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280599,0.000000,0.000000,0.250000,0,0);}
.m52_c01235{transform:matrix(0.280855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280855,0.000000,0.000000,0.250000,0,0);}
.m3a_c01235{transform:matrix(0.281410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281410,0.000000,0.000000,0.250000,0,0);}
.m4d_c01235{transform:matrix(0.281565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281565,0.000000,0.000000,0.250000,0,0);}
.m2c_c01235{transform:matrix(0.281802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281802,0.000000,0.000000,0.250000,0,0);}
.m54_c01235{transform:matrix(0.282107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282107,0.000000,0.000000,0.250000,0,0);}
.m44_c01235{transform:matrix(0.283362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283362,0.000000,0.000000,0.250000,0,0);}
.m47_c01235{transform:matrix(0.285447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285447,0.000000,0.000000,0.250000,0,0);}
.m7f_c01235{transform:matrix(0.285484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285484,0.000000,0.000000,0.250000,0,0);}
.m33_c01235{transform:matrix(0.287495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287495,0.000000,0.000000,0.250000,0,0);}
.m6b_c01235{transform:matrix(0.287509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287509,0.000000,0.000000,0.250000,0,0);}
.m2b_c01235{transform:matrix(0.288430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288430,0.000000,0.000000,0.250000,0,0);}
.m42_c01235{transform:matrix(0.288591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288591,0.000000,0.000000,0.250000,0,0);}
.m21_c01235{transform:matrix(0.288645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288645,0.000000,0.000000,0.250000,0,0);}
.m81_c01235{transform:matrix(0.289907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289907,0.000000,0.000000,0.250000,0,0);}
.m7d_c01235{transform:matrix(0.289918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289918,0.000000,0.000000,0.250000,0,0);}
.m73_c01235{transform:matrix(0.290224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290224,0.000000,0.000000,0.250000,0,0);}
.m12_c01235{transform:matrix(0.292474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292474,0.000000,0.000000,0.250000,0,0);}
.m1e_c01235{transform:matrix(0.293172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293172,0.000000,0.000000,0.250000,0,0);}
.m87_c01235{transform:matrix(0.293852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293852,0.000000,0.000000,0.250000,0,0);}
.m4f_c01235{transform:matrix(0.294011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294011,0.000000,0.000000,0.250000,0,0);}
.m84_c01235{transform:matrix(0.294398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294398,0.000000,0.000000,0.250000,0,0);}
.m32_c01235{transform:matrix(0.294519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294519,0.000000,0.000000,0.250000,0,0);}
.m25_c01235{transform:matrix(0.294748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294748,0.000000,0.000000,0.250000,0,0);}
.m80_c01235{transform:matrix(0.295298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295298,0.000000,0.000000,0.250000,0,0);}
.m14_c01235{transform:matrix(0.295703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295703,0.000000,0.000000,0.250000,0,0);}
.m31_c01235{transform:matrix(0.296243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296243,0.000000,0.000000,0.250000,0,0);}
.m74_c01235{transform:matrix(0.297888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297888,0.000000,0.000000,0.250000,0,0);}
.m83_c01235{transform:matrix(0.298191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298191,0.000000,0.000000,0.250000,0,0);}
.m50_c01235{transform:matrix(0.301734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301734,0.000000,0.000000,0.250000,0,0);}
.m4a_c01235{transform:matrix(0.301918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301918,0.000000,0.000000,0.250000,0,0);}
.m86_c01235{transform:matrix(0.302809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302809,0.000000,0.000000,0.250000,0,0);}
.mb_c01235{transform:matrix(0.302953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302953,0.000000,0.000000,0.250000,0,0);}
.m15_c01235{transform:matrix(0.305153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305153,0.000000,0.000000,0.250000,0,0);}
.m28_c01235{transform:matrix(0.306726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306726,0.000000,0.000000,0.250000,0,0);}
.m72_c01235{transform:matrix(0.307374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307374,0.000000,0.000000,0.250000,0,0);}
.m6c_c01235{transform:matrix(0.307876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307876,0.000000,0.000000,0.250000,0,0);}
.m6d_c01235{transform:matrix(0.309507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309507,0.000000,0.000000,0.250000,0,0);}
.m36_c01235{transform:matrix(0.309638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309638,0.000000,0.000000,0.250000,0,0);}
.m88_c01235{transform:matrix(0.310131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310131,0.000000,0.000000,0.250000,0,0);}
.m18_c01235{transform:matrix(0.310426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310426,0.000000,0.000000,0.250000,0,0);}
.m3e_c01235{transform:matrix(0.312492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312492,0.000000,0.000000,0.250000,0,0);}
.m70_c01235{transform:matrix(0.315875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315875,0.000000,0.000000,0.250000,0,0);}
.m60_c01235{transform:matrix(0.316142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316142,0.000000,0.000000,0.250000,0,0);}
.m2e_c01235{transform:matrix(0.316886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316886,0.000000,0.000000,0.250000,0,0);}
.m11_c01235{transform:matrix(0.317132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317132,0.000000,0.000000,0.250000,0,0);}
.m17_c01235{transform:matrix(0.317271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317271,0.000000,0.000000,0.250000,0,0);}
.m6_c01235{transform:matrix(0.320377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320377,0.000000,0.000000,0.250000,0,0);}
.mc_c01235{transform:matrix(0.321153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321153,0.000000,0.000000,0.250000,0,0);}
.m22_c01235{transform:matrix(0.321466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321466,0.000000,0.000000,0.250000,0,0);}
.m66_c01235{transform:matrix(0.321938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321938,0.000000,0.000000,0.250000,0,0);}
.m3c_c01235{transform:matrix(0.322061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322061,0.000000,0.000000,0.250000,0,0);}
.m48_c01235{transform:matrix(0.322691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322691,0.000000,0.000000,0.250000,0,0);}
.m5_c01235{transform:matrix(0.324505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324505,0.000000,0.000000,0.250000,0,0);}
.m1d_c01235{transform:matrix(0.324903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324903,0.000000,0.000000,0.250000,0,0);}
.m5e_c01235{transform:matrix(0.325436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325436,0.000000,0.000000,0.250000,0,0);}
.m82_c01235{transform:matrix(0.325850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325850,0.000000,0.000000,0.250000,0,0);}
.m24_c01235{transform:matrix(0.326469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326469,0.000000,0.000000,0.250000,0,0);}
.m6a_c01235{transform:matrix(0.326551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326551,0.000000,0.000000,0.250000,0,0);}
.mf_c01235{transform:matrix(0.327552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327552,0.000000,0.000000,0.250000,0,0);}
.m57_c01235{transform:matrix(0.328334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328334,0.000000,0.000000,0.250000,0,0);}
.m51_c01235{transform:matrix(0.329180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329180,0.000000,0.000000,0.250000,0,0);}
.m7e_c01235{transform:matrix(0.331373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331373,0.000000,0.000000,0.250000,0,0);}
.m10_c01235{transform:matrix(0.333132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333132,0.000000,0.000000,0.250000,0,0);}
.m4b_c01235{transform:matrix(0.333408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333408,0.000000,0.000000,0.250000,0,0);}
.m7a_c01235{transform:matrix(0.333823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333823,0.000000,0.000000,0.250000,0,0);}
.m37_c01235{transform:matrix(0.333973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333973,0.000000,0.000000,0.250000,0,0);}
.m27_c01235{transform:matrix(0.336841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336841,0.000000,0.000000,0.250000,0,0);}
.m3d_c01235{transform:matrix(0.338314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338314,0.000000,0.000000,0.250000,0,0);}
.m19_c01235{transform:matrix(0.338465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338465,0.000000,0.000000,0.250000,0,0);}
.m56_c01235{transform:matrix(0.339035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339035,0.000000,0.000000,0.250000,0,0);}
.m34_c01235{transform:matrix(0.339776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339776,0.000000,0.000000,0.250000,0,0);}
.m23_c01235{transform:matrix(0.341173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341173,0.000000,0.000000,0.250000,0,0);}
.m39_c01235{transform:matrix(0.344839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344839,0.000000,0.000000,0.250000,0,0);}
.m4c_c01235{transform:matrix(0.345680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345680,0.000000,0.000000,0.250000,0,0);}
.m7b_c01235{transform:matrix(0.346357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346357,0.000000,0.000000,0.250000,0,0);}
.m7c_c01235{transform:matrix(0.347741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347741,0.000000,0.000000,0.250000,0,0);}
.m29_c01235{transform:matrix(0.348041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348041,0.000000,0.000000,0.250000,0,0);}
.m16_c01235{transform:matrix(0.350155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350155,0.000000,0.000000,0.250000,0,0);}
.md_c01235{transform:matrix(0.354714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354714,0.000000,0.000000,0.250000,0,0);}
.m46_c01235{transform:matrix(0.354732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354732,0.000000,0.000000,0.250000,0,0);}
.m7_c01235{transform:matrix(0.356631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356631,0.000000,0.000000,0.250000,0,0);}
.m5f_c01235{transform:matrix(0.356783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356783,0.000000,0.000000,0.250000,0,0);}
.m69_c01235{transform:matrix(0.362784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362784,0.000000,0.000000,0.250000,0,0);}
.m2f_c01235{transform:matrix(0.363305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363305,0.000000,0.000000,0.250000,0,0);}
.m43_c01235{transform:matrix(0.370578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370578,0.000000,0.000000,0.250000,0,0);}
.m5d_c01235{transform:matrix(0.385466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385466,0.000000,0.000000,0.250000,0,0);}
.m53_c01235{transform:matrix(0.386157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386157,0.000000,0.000000,0.250000,0,0);}
.m58_c01235{transform:matrix(0.393185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393185,0.000000,0.000000,0.250000,0,0);}
.m5b_c01235{transform:matrix(0.395535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395535,0.000000,0.000000,0.250000,0,0);}
.m4e_c01235{transform:matrix(0.450329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450329,0.000000,0.000000,0.250000,0,0);}
.v1_c01235{vertical-align:-71.280000px;}
.v0_c01235{vertical-align:0.000000px;}
.ls1c_c01235{letter-spacing:-3.714480px;}
.ls14_c01235{letter-spacing:-2.584890px;}
.ls4_c01235{letter-spacing:-2.564100px;}
.ls1e_c01235{letter-spacing:-2.494800px;}
.lsa_c01235{letter-spacing:-2.453227px;}
.ls19_c01235{letter-spacing:-2.356200px;}
.ls7_c01235{letter-spacing:-2.146518px;}
.lsd_c01235{letter-spacing:-1.531134px;}
.ls18_c01235{letter-spacing:-1.434517px;}
.lse_c01235{letter-spacing:-1.421244px;}
.ls9_c01235{letter-spacing:-1.333332px;}
.ls12_c01235{letter-spacing:-1.135530px;}
.ls5_c01235{letter-spacing:-0.937728px;}
.lsf_c01235{letter-spacing:-0.761904px;}
.ls2_c01235{letter-spacing:0.000000px;}
.ls11_c01235{letter-spacing:0.285714px;}
.ls8_c01235{letter-spacing:1.545786px;}
.ls1b_c01235{letter-spacing:1.999998px;}
.ls17_c01235{letter-spacing:2.373624px;}
.ls13_c01235{letter-spacing:2.754576px;}
.ls6_c01235{letter-spacing:3.267000px;}
.ls1d_c01235{letter-spacing:3.564000px;}
.ls3_c01235{letter-spacing:3.663000px;}
.ls15_c01235{letter-spacing:3.692700px;}
.ls10_c01235{letter-spacing:3.801610px;}
.lsc_c01235{letter-spacing:4.237200px;}
.ls0_c01235{letter-spacing:5.641020px;}
.ls1_c01235{letter-spacing:19.853460px;}
.lsb_c01235{letter-spacing:52.747398px;}
.ls16_c01235{letter-spacing:54.172998px;}
.ls1a_c01235{letter-spacing:57.024198px;}
.sc__c01235{text-shadow:none;}
.sc0_c01235{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01235{-webkit-text-stroke:0px transparent;}
.sc0_c01235{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01235{word-spacing:-18.315000px;}
.ws1_c01235{word-spacing:0.000000px;}
._8_c01235{margin-left:-22.692780px;}
._b_c01235{margin-left:-9.816840px;}
._a_c01235{width:1.098900px;}
._6_c01235{width:4.264326px;}
._7_c01235{width:5.347980px;}
._4_c01235{width:13.186800px;}
._5_c01235{width:28.139166px;}
._3_c01235{width:29.535660px;}
._2_c01235{width:38.974320px;}
._9_c01235{width:40.083120px;}
._1_c01235{width:45.267354px;}
._0_c01235{width:481.647672px;}
.fc0_c01235{color:transparent;}
.fs1_c01235{font-size:22.176000px;}
.fs0_c01235{font-size:33.264000px;}
.fs11_c01235{font-size:33.660000px;}
.fs7_c01235{font-size:34.848000px;}
.fsd_c01235{font-size:40.986198px;}
.fs8_c01235{font-size:52.747398px;}
.fsb_c01235{font-size:54.172998px;}
.fse_c01235{font-size:57.024198px;}
.fs4_c01235{font-size:65.340000px;}
.fs3_c01235{font-size:67.320000px;}
.fs6_c01235{font-size:70.092198px;}
.fs10_c01235{font-size:71.280000px;}
.fs2_c01235{font-size:73.260000px;}
.fsa_c01235{font-size:73.854000px;}
.fsc_c01235{font-size:75.240000px;}
.fs5_c01235{font-size:76.032198px;}
.fs9_c01235{font-size:84.744000px;}
.fsf_c01235{font-size:106.128000px;}
.y0_c01235{bottom:0.000000px;}
.y1f_c01235{bottom:37.333935px;}
.y1e_c01235{bottom:76.181535px;}
.y1_c01235{bottom:76.500000px;}
.y1d_c01235{bottom:108.613935px;}
.y1c_c01235{bottom:140.689935px;}
.y1b_c01235{bottom:205.554735px;}
.y1a_c01235{bottom:236.912985px;}
.y17_c01235{bottom:300.352185px;}
.y19_c01235{bottom:331.007535px;}
.y16_c01235{bottom:331.720335px;}
.y15_c01235{bottom:331.726275px;}
.y18_c01235{bottom:346.689135px;}
.y2_c01235{bottom:365.221935px;}
.y14_c01235{bottom:394.803135px;}
.y13_c01235{bottom:426.879135px;}
.y12_c01235{bottom:491.387535px;}
.y11_c01235{bottom:523.107135px;}
.y10_c01235{bottom:586.184985px;}
.yf_c01235{bottom:618.265935px;}
.ye_c01235{bottom:642.852585px;}
.yd_c01235{bottom:649.629135px;}
.yc_c01235{bottom:712.706985px;}
.yb_c01235{bottom:744.431535px;}
.ya_c01235{bottom:807.865785px;}
.y9_c01235{bottom:839.233935px;}
.y8_c01235{bottom:901.960335px;}
.y7_c01235{bottom:918.354735px;}
.y6_c01235{bottom:934.031385px;}
.y5_c01235{bottom:941.515785px;}
.y4_c01235{bottom:1060.553385px;}
.y3_c01235{bottom:1078.373385px;}
.h3_c01235{height:23.128875px;}
.h16_c01235{height:33.035449px;}
.ha_c01235{height:34.201406px;}
.h2_c01235{height:34.693313px;}
.hb_c01235{height:35.129767px;}
.hf_c01235{height:36.079217px;}
.h13_c01235{height:37.978116px;}
.h11_c01235{height:40.225712px;}
.h7_c01235{height:64.127637px;}
.h5_c01235{height:66.070898px;}
.h6_c01235{height:68.147578px;}
.h9_c01235{height:68.791659px;}
.h12_c01235{height:70.212656px;}
.h4_c01235{height:71.900684px;}
.he_c01235{height:72.483662px;}
.h15_c01235{height:74.342813px;}
.hd_c01235{height:74.621444px;}
.h10_c01235{height:78.472969px;}
.h8_c01235{height:79.299207px;}
.hc_c01235{height:83.171602px;}
.h14_c01235{height:104.158828px;}
.h1_c01235{height:1110.000000px;}
.h0_c01235{height:1263.000000px;}
.w1_c01235{width:775.500000px;}
.w0_c01235{width:892.500000px;}
.x0_c01235{left:0.000000px;}
.x1_c01235{left:58.500000px;}
.x2_c01235{left:60.802485px;}
.x3e_c01235{left:91.596435px;}
.x20_c01235{left:92.665635px;}
.x6_c01235{left:93.759585px;}
.x5c_c01235{left:102.634935px;}
.x5_c01235{left:105.154485px;}
.x7_c01235{left:117.866085px;}
.x8_c01235{left:125.360385px;}
.x9_c01235{left:158.475885px;}
.x3f_c01235{left:178.058085px;}
.x2b_c01235{left:180.533085px;}
.x4b_c01235{left:189.200535px;}
.x59_c01235{left:190.259835px;}
.x31_c01235{left:191.423085px;}
.x17_c01235{left:202.030935px;}
.x5d_c01235{left:212.406135px;}
.x4c_c01235{left:213.930735px;}
.x21_c01235{left:215.732535px;}
.x50_c01235{left:223.375335px;}
.xa_c01235{left:225.716685px;}
.x51_c01235{left:234.745485px;}
.x5a_c01235{left:236.393835px;}
.x22_c01235{left:247.115535px;}
.x1a_c01235{left:249.392535px;}
.x61_c01235{left:256.471035px;}
.x32_c01235{left:257.896635px;}
.xb_c01235{left:269.271735px;}
.x4d_c01235{left:270.504285px;}
.x40_c01235{left:279.547935px;}
.x52_c01235{left:280.745835px;}
.x5b_c01235{left:282.676335px;}
.x36_c01235{left:290.754735px;}
.xc_c01235{left:292.160535px;}
.x45_c01235{left:301.976385px;}
.x23_c01235{left:303.822735px;}
.x3b_c01235{left:314.524635px;}
.x5e_c01235{left:315.950235px;}
.x29_c01235{left:325.266135px;}
.x53_c01235{left:326.795685px;}
.x1f_c01235{left:335.319585px;}
.x18_c01235{left:347.362935px;}
.x37_c01235{left:357.767835px;}
.x33_c01235{left:379.092435px;}
.x2c_c01235{left:380.720985px;}
.x54_c01235{left:384.329535px;}
.x62_c01235{left:389.066685px;}
.x24_c01235{left:390.135885px;}
.x4e_c01235{left:392.031735px;}
.xd_c01235{left:393.269235px;}
.x46_c01235{left:401.204085px;}
.x1b_c01235{left:403.505835px;}
.x48_c01235{left:413.366235px;}
.x41_c01235{left:414.613635px;}
.x3c_c01235{left:423.657285px;}
.xe_c01235{left:427.013385px;}
.x38_c01235{left:435.477885px;}
.x1c_c01235{left:437.309385px;}
.x39_c01235{left:457.243035px;}
.xf_c01235{left:458.935935px;}
.x19_c01235{left:468.969585px;}
.x10_c01235{left:470.558535px;}
.x55_c01235{left:480.176385px;}
.x47_c01235{left:490.739685px;}
.x2d_c01235{left:492.665235px;}
.x11_c01235{left:501.768285px;}
.x2a_c01235{left:513.163185px;}
.x25_c01235{left:514.455135px;}
.x42_c01235{left:523.449285px;}
.x49_c01235{left:525.053085px;}
.x34_c01235{left:536.155935px;}
.x12_c01235{left:537.205335px;}
.x3_c01235{left:545.194635px;}
.x4a_c01235{left:546.852885px;}
.x26_c01235{left:548.115135px;}
.x3a_c01235{left:557.143935px;}
.x13_c01235{left:558.747735px;}
.x3d_c01235{left:559.861485px;}
.x56_c01235{left:568.929885px;}
.x63_c01235{left:579.003135px;}
.x2e_c01235{left:580.889085px;}
.x64_c01235{left:588.789285px;}
.x5f_c01235{left:591.378135px;}
.x65_c01235{left:603.812535px;}
.x14_c01235{left:612.168135px;}
.x15_c01235{left:613.955085px;}
.x27_c01235{left:624.013485px;}
.x16_c01235{left:625.617285px;}
.x2f_c01235{left:635.606385px;}
.x1d_c01235{left:638.007135px;}
.x43_c01235{left:646.016235px;}
.x30_c01235{left:667.766535px;}
.x4_c01235{left:680.849385px;}
.x66_c01235{left:690.358335px;}
.x28_c01235{left:691.877985px;}
.x35_c01235{left:701.738385px;}
.x68_c01235{left:710.871135px;}
.x44_c01235{left:712.851135px;}
.x1e_c01235{left:714.316335px;}
.x4f_c01235{left:720.701835px;}
.x67_c01235{left:735.324135px;}
.x60_c01235{left:746.426985px;}
.x57_c01235{left:748.520835px;}
.x58_c01235{left:760.024635px;}
@media print{
.v1_c01235{vertical-align:-63.360000pt;}
.v0_c01235{vertical-align:0.000000pt;}
.ls1c_c01235{letter-spacing:-3.301760pt;}
.ls14_c01235{letter-spacing:-2.297680pt;}
.ls4_c01235{letter-spacing:-2.279200pt;}
.ls1e_c01235{letter-spacing:-2.217600pt;}
.lsa_c01235{letter-spacing:-2.180646pt;}
.ls19_c01235{letter-spacing:-2.094400pt;}
.ls7_c01235{letter-spacing:-1.908016pt;}
.lsd_c01235{letter-spacing:-1.361008pt;}
.ls18_c01235{letter-spacing:-1.275126pt;}
.lse_c01235{letter-spacing:-1.263328pt;}
.ls9_c01235{letter-spacing:-1.185184pt;}
.ls12_c01235{letter-spacing:-1.009360pt;}
.ls5_c01235{letter-spacing:-0.833536pt;}
.lsf_c01235{letter-spacing:-0.677248pt;}
.ls2_c01235{letter-spacing:0.000000pt;}
.ls11_c01235{letter-spacing:0.253968pt;}
.ls8_c01235{letter-spacing:1.374032pt;}
.ls1b_c01235{letter-spacing:1.777776pt;}
.ls17_c01235{letter-spacing:2.109888pt;}
.ls13_c01235{letter-spacing:2.448512pt;}
.ls6_c01235{letter-spacing:2.904000pt;}
.ls1d_c01235{letter-spacing:3.168000pt;}
.ls3_c01235{letter-spacing:3.256000pt;}
.ls15_c01235{letter-spacing:3.282400pt;}
.ls10_c01235{letter-spacing:3.379209pt;}
.lsc_c01235{letter-spacing:3.766400pt;}
.ls0_c01235{letter-spacing:5.014240pt;}
.ls1_c01235{letter-spacing:17.647520pt;}
.lsb_c01235{letter-spacing:46.886576pt;}
.ls16_c01235{letter-spacing:48.153776pt;}
.ls1a_c01235{letter-spacing:50.688176pt;}
.ws0_c01235{word-spacing:-16.280000pt;}
.ws1_c01235{word-spacing:0.000000pt;}
._8_c01235{margin-left:-20.171360pt;}
._b_c01235{margin-left:-8.726080pt;}
._a_c01235{width:0.976800pt;}
._6_c01235{width:3.790512pt;}
._7_c01235{width:4.753760pt;}
._4_c01235{width:11.721600pt;}
._5_c01235{width:25.012592pt;}
._3_c01235{width:26.253920pt;}
._2_c01235{width:34.643840pt;}
._9_c01235{width:35.629440pt;}
._1_c01235{width:40.237648pt;}
._0_c01235{width:428.131264pt;}
.fs1_c01235{font-size:19.712000pt;}
.fs0_c01235{font-size:29.568000pt;}
.fs11_c01235{font-size:29.920000pt;}
.fs7_c01235{font-size:30.976000pt;}
.fsd_c01235{font-size:36.432176pt;}
.fs8_c01235{font-size:46.886576pt;}
.fsb_c01235{font-size:48.153776pt;}
.fse_c01235{font-size:50.688176pt;}
.fs4_c01235{font-size:58.080000pt;}
.fs3_c01235{font-size:59.840000pt;}
.fs6_c01235{font-size:62.304176pt;}
.fs10_c01235{font-size:63.360000pt;}
.fs2_c01235{font-size:65.120000pt;}
.fsa_c01235{font-size:65.648000pt;}
.fsc_c01235{font-size:66.880000pt;}
.fs5_c01235{font-size:67.584176pt;}
.fs9_c01235{font-size:75.328000pt;}
.fsf_c01235{font-size:94.336000pt;}
.y0_c01235{bottom:0.000000pt;}
.y1f_c01235{bottom:33.185720pt;}
.y1e_c01235{bottom:67.716920pt;}
.y1_c01235{bottom:68.000000pt;}
.y1d_c01235{bottom:96.545720pt;}
.y1c_c01235{bottom:125.057720pt;}
.y1b_c01235{bottom:182.715320pt;}
.y1a_c01235{bottom:210.589320pt;}
.y17_c01235{bottom:266.979720pt;}
.y19_c01235{bottom:294.228920pt;}
.y16_c01235{bottom:294.862520pt;}
.y15_c01235{bottom:294.867800pt;}
.y18_c01235{bottom:308.168120pt;}
.y2_c01235{bottom:324.641720pt;}
.y14_c01235{bottom:350.936120pt;}
.y13_c01235{bottom:379.448120pt;}
.y12_c01235{bottom:436.788920pt;}
.y11_c01235{bottom:464.984120pt;}
.y10_c01235{bottom:521.053320pt;}
.yf_c01235{bottom:549.569720pt;}
.ye_c01235{bottom:571.424520pt;}
.yd_c01235{bottom:577.448120pt;}
.yc_c01235{bottom:633.517320pt;}
.yb_c01235{bottom:661.716920pt;}
.ya_c01235{bottom:718.102920pt;}
.y9_c01235{bottom:745.985720pt;}
.y8_c01235{bottom:801.742520pt;}
.y7_c01235{bottom:816.315320pt;}
.y6_c01235{bottom:830.250120pt;}
.y5_c01235{bottom:836.902920pt;}
.y4_c01235{bottom:942.714120pt;}
.y3_c01235{bottom:958.554120pt;}
.h3_c01235{height:20.559000pt;}
.h16_c01235{height:29.364844pt;}
.ha_c01235{height:30.401250pt;}
.h2_c01235{height:30.838500pt;}
.hb_c01235{height:31.226460pt;}
.hf_c01235{height:32.070415pt;}
.h13_c01235{height:33.758325pt;}
.h11_c01235{height:35.756188pt;}
.h7_c01235{height:57.002344pt;}
.h5_c01235{height:58.729688pt;}
.h6_c01235{height:60.575625pt;}
.h9_c01235{height:61.148141pt;}
.h12_c01235{height:62.411250pt;}
.h4_c01235{height:63.911719pt;}
.he_c01235{height:64.429922pt;}
.h15_c01235{height:66.082500pt;}
.hd_c01235{height:66.330173pt;}
.h10_c01235{height:69.753750pt;}
.h8_c01235{height:70.488184pt;}
.hc_c01235{height:73.930313pt;}
.h14_c01235{height:92.585625pt;}
.h1_c01235{height:986.666667pt;}
.h0_c01235{height:1122.666667pt;}
.w1_c01235{width:689.333333pt;}
.w0_c01235{width:793.333333pt;}
.x0_c01235{left:0.000000pt;}
.x1_c01235{left:52.000000pt;}
.x2_c01235{left:54.046653pt;}
.x3e_c01235{left:81.419053pt;}
.x20_c01235{left:82.369453pt;}
.x6_c01235{left:83.341853pt;}
.x5c_c01235{left:91.231053pt;}
.x5_c01235{left:93.470653pt;}
.x7_c01235{left:104.769853pt;}
.x8_c01235{left:111.431453pt;}
.x9_c01235{left:140.867453pt;}
.x3f_c01235{left:158.273853pt;}
.x2b_c01235{left:160.473853pt;}
.x4b_c01235{left:168.178253pt;}
.x59_c01235{left:169.119853pt;}
.x31_c01235{left:170.153853pt;}
.x17_c01235{left:179.583053pt;}
.x5d_c01235{left:188.805453pt;}
.x4c_c01235{left:190.160653pt;}
.x21_c01235{left:191.762253pt;}
.x50_c01235{left:198.555853pt;}
.xa_c01235{left:200.637053pt;}
.x51_c01235{left:208.662653pt;}
.x5a_c01235{left:210.127853pt;}
.x22_c01235{left:219.658253pt;}
.x1a_c01235{left:221.682253pt;}
.x61_c01235{left:227.974253pt;}
.x32_c01235{left:229.241453pt;}
.xb_c01235{left:239.352653pt;}
.x4d_c01235{left:240.448253pt;}
.x40_c01235{left:248.487053pt;}
.x52_c01235{left:249.551853pt;}
.x5b_c01235{left:251.267853pt;}
.x36_c01235{left:258.448653pt;}
.xc_c01235{left:259.698253pt;}
.x45_c01235{left:268.423453pt;}
.x23_c01235{left:270.064653pt;}
.x3b_c01235{left:279.577453pt;}
.x5e_c01235{left:280.844653pt;}
.x29_c01235{left:289.125453pt;}
.x53_c01235{left:290.485053pt;}
.x1f_c01235{left:298.061853pt;}
.x18_c01235{left:308.767053pt;}
.x37_c01235{left:318.015853pt;}
.x33_c01235{left:336.971053pt;}
.x2c_c01235{left:338.418653pt;}
.x54_c01235{left:341.626253pt;}
.x62_c01235{left:345.837053pt;}
.x24_c01235{left:346.787453pt;}
.x4e_c01235{left:348.472653pt;}
.xd_c01235{left:349.572653pt;}
.x46_c01235{left:356.625853pt;}
.x1b_c01235{left:358.671853pt;}
.x48_c01235{left:367.436653pt;}
.x41_c01235{left:368.545453pt;}
.x3c_c01235{left:376.584253pt;}
.xe_c01235{left:379.567453pt;}
.x38_c01235{left:387.091453pt;}
.x1c_c01235{left:388.719453pt;}
.x39_c01235{left:406.438253pt;}
.xf_c01235{left:407.943053pt;}
.x19_c01235{left:416.861853pt;}
.x10_c01235{left:418.274253pt;}
.x55_c01235{left:426.823453pt;}
.x47_c01235{left:436.213053pt;}
.x2d_c01235{left:437.924653pt;}
.x11_c01235{left:446.016253pt;}
.x2a_c01235{left:456.145053pt;}
.x25_c01235{left:457.293453pt;}
.x42_c01235{left:465.288253pt;}
.x49_c01235{left:466.713853pt;}
.x34_c01235{left:476.583053pt;}
.x12_c01235{left:477.515853pt;}
.x3_c01235{left:484.617453pt;}
.x4a_c01235{left:486.091453pt;}
.x26_c01235{left:487.213453pt;}
.x3a_c01235{left:495.239053pt;}
.x13_c01235{left:496.664653pt;}
.x3d_c01235{left:497.654653pt;}
.x56_c01235{left:505.715453pt;}
.x63_c01235{left:514.669453pt;}
.x2e_c01235{left:516.345853pt;}
.x64_c01235{left:523.368253pt;}
.x5f_c01235{left:525.669453pt;}
.x65_c01235{left:536.722253pt;}
.x14_c01235{left:544.149453pt;}
.x15_c01235{left:545.737853pt;}
.x27_c01235{left:554.678653pt;}
.x16_c01235{left:556.104253pt;}
.x2f_c01235{left:564.983453pt;}
.x1d_c01235{left:567.117453pt;}
.x43_c01235{left:574.236653pt;}
.x30_c01235{left:593.570253pt;}
.x4_c01235{left:605.199453pt;}
.x66_c01235{left:613.651853pt;}
.x28_c01235{left:615.002653pt;}
.x35_c01235{left:623.767453pt;}
.x68_c01235{left:631.885453pt;}
.x44_c01235{left:633.645453pt;}
.x1e_c01235{left:634.947853pt;}
.x4f_c01235{left:640.623853pt;}
.x67_c01235{left:653.621453pt;}
.x60_c01235{left:663.490653pt;}
.x57_c01235{left:665.351853pt;}
.x58_c01235{left:675.577453pt;}
}





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

.ir_c01236:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01236{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01236;src:url('chunks/assets/font_3edd8df50d72374258a6ece0.woff2')format("woff");}.ff1_c01236{font-family:ff1_c01236;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01236;src:url('chunks/assets/font_d84dbcdc9d9a5d8966f0a7ea.woff2')format("woff");}.ff2_c01236{font-family:ff2_c01236;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01236;src:url('chunks/assets/font_a605be40b40348986b8b3e66.woff2')format("woff");}.ff3_c01236{font-family:ff3_c01236;line-height:0.666000;font-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_c01236{transform:matrix(0.048652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048652,0.000000,0.000000,0.250000,0,0);}
.m16_c01236{transform:matrix(0.106418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106418,0.000000,0.000000,0.250000,0,0);}
.m31_c01236{transform:matrix(0.151943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151943,0.000000,0.000000,0.250000,0,0);}
.m70_c01236{transform:matrix(0.156492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156492,0.000000,0.000000,0.250000,0,0);}
.m4f_c01236{transform:matrix(0.169767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169767,0.000000,0.000000,0.250000,0,0);}
.m6d_c01236{transform:matrix(0.179931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179931,0.000000,0.000000,0.250000,0,0);}
.m2_c01236{transform:matrix(0.184210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184210,0.000000,0.000000,0.250000,0,0);}
.m13_c01236{transform:matrix(0.199574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199574,0.000000,0.000000,0.250000,0,0);}
.m14_c01236{transform:matrix(0.201086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201086,0.000000,0.000000,0.250000,0,0);}
.m6e_c01236{transform:matrix(0.218886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218886,0.000000,0.000000,0.250000,0,0);}
.m10_c01236{transform:matrix(0.220014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220014,0.000000,0.000000,0.250000,0,0);}
.m15_c01236{transform:matrix(0.221824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221824,0.000000,0.000000,0.250000,0,0);}
.m8_c01236{transform:matrix(0.221868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221868,0.000000,0.000000,0.250000,0,0);}
.m12_c01236{transform:matrix(0.223344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223344,0.000000,0.000000,0.250000,0,0);}
.m6c_c01236{transform:matrix(0.224733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224733,0.000000,0.000000,0.250000,0,0);}
.m5c_c01236{transform:matrix(0.224803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224803,0.000000,0.000000,0.250000,0,0);}
.m2d_c01236{transform:matrix(0.230343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230343,0.000000,0.000000,0.250000,0,0);}
.m67_c01236{transform:matrix(0.239590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239590,0.000000,0.000000,0.250000,0,0);}
.m5d_c01236{transform:matrix(0.240585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240585,0.000000,0.000000,0.250000,0,0);}
.m4b_c01236{transform:matrix(0.243681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243681,0.000000,0.000000,0.250000,0,0);}
.m55_c01236{transform:matrix(0.244306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244306,0.000000,0.000000,0.250000,0,0);}
.m3e_c01236{transform:matrix(0.249588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249588,0.000000,0.000000,0.250000,0,0);}
.m0_c01236{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m5_c01236{transform:matrix(0.255125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255125,0.000000,0.000000,0.250000,0,0);}
.m4_c01236{transform:matrix(0.258865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258865,0.000000,0.000000,0.250000,0,0);}
.m5f_c01236{transform:matrix(0.264384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264384,0.000000,0.000000,0.250000,0,0);}
.m7_c01236{transform:matrix(0.266376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266376,0.000000,0.000000,0.250000,0,0);}
.m50_c01236{transform:matrix(0.267296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267296,0.000000,0.000000,0.250000,0,0);}
.m6b_c01236{transform:matrix(0.267851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267851,0.000000,0.000000,0.250000,0,0);}
.m11_c01236{transform:matrix(0.267866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267866,0.000000,0.000000,0.250000,0,0);}
.m39_c01236{transform:matrix(0.270636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270636,0.000000,0.000000,0.250000,0,0);}
.m3a_c01236{transform:matrix(0.270673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270673,0.000000,0.000000,0.250000,0,0);}
.m51_c01236{transform:matrix(0.271688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271688,0.000000,0.000000,0.250000,0,0);}
.m6a_c01236{transform:matrix(0.271918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271918,0.000000,0.000000,0.250000,0,0);}
.m60_c01236{transform:matrix(0.271930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271930,0.000000,0.000000,0.250000,0,0);}
.m6f_c01236{transform:matrix(0.273132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273132,0.000000,0.000000,0.250000,0,0);}
.m45_c01236{transform:matrix(0.275513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275513,0.000000,0.000000,0.250000,0,0);}
.m3c_c01236{transform:matrix(0.276862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276862,0.000000,0.000000,0.250000,0,0);}
.m4c_c01236{transform:matrix(0.278253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278253,0.000000,0.000000,0.250000,0,0);}
.m64_c01236{transform:matrix(0.279922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279922,0.000000,0.000000,0.250000,0,0);}
.m66_c01236{transform:matrix(0.280008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280008,0.000000,0.000000,0.250000,0,0);}
.m5e_c01236{transform:matrix(0.280817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280817,0.000000,0.000000,0.250000,0,0);}
.m25_c01236{transform:matrix(0.281807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281807,0.000000,0.000000,0.250000,0,0);}
.m32_c01236{transform:matrix(0.283362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283362,0.000000,0.000000,0.250000,0,0);}
.m34_c01236{transform:matrix(0.284270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284270,0.000000,0.000000,0.250000,0,0);}
.m53_c01236{transform:matrix(0.286751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286751,0.000000,0.000000,0.250000,0,0);}
.m24_c01236{transform:matrix(0.286893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286893,0.000000,0.000000,0.250000,0,0);}
.m4d_c01236{transform:matrix(0.288308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288308,0.000000,0.000000,0.250000,0,0);}
.m30_c01236{transform:matrix(0.288333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288333,0.000000,0.000000,0.250000,0,0);}
.m18_c01236{transform:matrix(0.288503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288503,0.000000,0.000000,0.250000,0,0);}
.m47_c01236{transform:matrix(0.288583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288583,0.000000,0.000000,0.250000,0,0);}
.m54_c01236{transform:matrix(0.289587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289587,0.000000,0.000000,0.250000,0,0);}
.m42_c01236{transform:matrix(0.289907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289907,0.000000,0.000000,0.250000,0,0);}
.m40_c01236{transform:matrix(0.290192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290192,0.000000,0.000000,0.250000,0,0);}
.m33_c01236{transform:matrix(0.290217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290217,0.000000,0.000000,0.250000,0,0);}
.mf_c01236{transform:matrix(0.290224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290224,0.000000,0.000000,0.250000,0,0);}
.m56_c01236{transform:matrix(0.290242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290242,0.000000,0.000000,0.250000,0,0);}
.m38_c01236{transform:matrix(0.291091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291091,0.000000,0.000000,0.250000,0,0);}
.m22_c01236{transform:matrix(0.292474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292474,0.000000,0.000000,0.250000,0,0);}
.m1c_c01236{transform:matrix(0.293049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293049,0.000000,0.000000,0.250000,0,0);}
.m1b_c01236{transform:matrix(0.293077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293077,0.000000,0.000000,0.250000,0,0);}
.m5b_c01236{transform:matrix(0.293382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293382,0.000000,0.000000,0.250000,0,0);}
.m2a_c01236{transform:matrix(0.294351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294351,0.000000,0.000000,0.250000,0,0);}
.m2b_c01236{transform:matrix(0.294519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294519,0.000000,0.000000,0.250000,0,0);}
.m65_c01236{transform:matrix(0.295354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295354,0.000000,0.000000,0.250000,0,0);}
.m1_c01236{transform:matrix(0.295518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295518,0.000000,0.000000,0.250000,0,0);}
.m4a_c01236{transform:matrix(0.296243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296243,0.000000,0.000000,0.250000,0,0);}
.me_c01236{transform:matrix(0.296564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296564,0.000000,0.000000,0.250000,0,0);}
.m1a_c01236{transform:matrix(0.296913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296913,0.000000,0.000000,0.250000,0,0);}
.m71_c01236{transform:matrix(0.299341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299341,0.000000,0.000000,0.250000,0,0);}
.m48_c01236{transform:matrix(0.301316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301316,0.000000,0.000000,0.250000,0,0);}
.m20_c01236{transform:matrix(0.301508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301508,0.000000,0.000000,0.250000,0,0);}
.m2c_c01236{transform:matrix(0.301889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301889,0.000000,0.000000,0.250000,0,0);}
.m17_c01236{transform:matrix(0.303999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303999,0.000000,0.000000,0.250000,0,0);}
.m41_c01236{transform:matrix(0.304226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304226,0.000000,0.000000,0.250000,0,0);}
.m49_c01236{transform:matrix(0.305976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305976,0.000000,0.000000,0.250000,0,0);}
.m52_c01236{transform:matrix(0.307949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307949,0.000000,0.000000,0.250000,0,0);}
.m37_c01236{transform:matrix(0.312307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312307,0.000000,0.000000,0.250000,0,0);}
.m3d_c01236{transform:matrix(0.313573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313573,0.000000,0.000000,0.250000,0,0);}
.m3b_c01236{transform:matrix(0.314149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314149,0.000000,0.000000,0.250000,0,0);}
.m69_c01236{transform:matrix(0.314611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314611,0.000000,0.000000,0.250000,0,0);}
.m6_c01236{transform:matrix(0.314797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314797,0.000000,0.000000,0.250000,0,0);}
.mc_c01236{transform:matrix(0.315802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315802,0.000000,0.000000,0.250000,0,0);}
.m19_c01236{transform:matrix(0.315826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315826,0.000000,0.000000,0.250000,0,0);}
.m29_c01236{transform:matrix(0.316291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316291,0.000000,0.000000,0.250000,0,0);}
.m58_c01236{transform:matrix(0.320058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320058,0.000000,0.000000,0.250000,0,0);}
.m35_c01236{transform:matrix(0.320323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320323,0.000000,0.000000,0.250000,0,0);}
.m1d_c01236{transform:matrix(0.322388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322388,0.000000,0.000000,0.250000,0,0);}
.m44_c01236{transform:matrix(0.324709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324709,0.000000,0.000000,0.250000,0,0);}
.m3_c01236{transform:matrix(0.325477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325477,0.000000,0.000000,0.250000,0,0);}
.m1e_c01236{transform:matrix(0.327106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327106,0.000000,0.000000,0.250000,0,0);}
.m5a_c01236{transform:matrix(0.328591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328591,0.000000,0.000000,0.250000,0,0);}
.m46_c01236{transform:matrix(0.330536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330536,0.000000,0.000000,0.250000,0,0);}
.m4e_c01236{transform:matrix(0.331370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331370,0.000000,0.000000,0.250000,0,0);}
.md_c01236{transform:matrix(0.332409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332409,0.000000,0.000000,0.250000,0,0);}
.m43_c01236{transform:matrix(0.333979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333979,0.000000,0.000000,0.250000,0,0);}
.m36_c01236{transform:matrix(0.334000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334000,0.000000,0.000000,0.250000,0,0);}
.m62_c01236{transform:matrix(0.334321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334321,0.000000,0.000000,0.250000,0,0);}
.m21_c01236{transform:matrix(0.339374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339374,0.000000,0.000000,0.250000,0,0);}
.m63_c01236{transform:matrix(0.340993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340993,0.000000,0.000000,0.250000,0,0);}
.m3f_c01236{transform:matrix(0.341561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341561,0.000000,0.000000,0.250000,0,0);}
.m27_c01236{transform:matrix(0.347245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347245,0.000000,0.000000,0.250000,0,0);}
.m23_c01236{transform:matrix(0.348576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348576,0.000000,0.000000,0.250000,0,0);}
.ma_c01236{transform:matrix(0.350726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350726,0.000000,0.000000,0.250000,0,0);}
.mb_c01236{transform:matrix(0.354109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354109,0.000000,0.000000,0.250000,0,0);}
.m1f_c01236{transform:matrix(0.375014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375014,0.000000,0.000000,0.250000,0,0);}
.m59_c01236{transform:matrix(0.385311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385311,0.000000,0.000000,0.250000,0,0);}
.m9_c01236{transform:matrix(0.386760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386760,0.000000,0.000000,0.250000,0,0);}
.m61_c01236{transform:matrix(0.391951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391951,0.000000,0.000000,0.250000,0,0);}
.m28_c01236{transform:matrix(0.396085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396085,0.000000,0.000000,0.250000,0,0);}
.m26_c01236{transform:matrix(0.406076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406076,0.000000,0.000000,0.250000,0,0);}
.m57_c01236{transform:matrix(0.412522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412522,0.000000,0.000000,0.250000,0,0);}
.m2e_c01236{transform:matrix(0.431754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431754,0.000000,0.000000,0.250000,0,0);}
.m68_c01236{transform:matrix(0.455164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455164,0.000000,0.000000,0.250000,0,0);}
.v1_c01236{vertical-align:-19.952460px;}
.v0_c01236{vertical-align:0.000000px;}
.v2_c01236{vertical-align:18.552600px;}
.ls15_c01236{letter-spacing:-2.619540px;}
.ls7_c01236{letter-spacing:-2.564100px;}
.ls1b_c01236{letter-spacing:-2.480940px;}
.ls1d_c01236{letter-spacing:-2.453227px;}
.ls9_c01236{letter-spacing:-2.425500px;}
.lsf_c01236{letter-spacing:-2.383927px;}
.ls10_c01236{letter-spacing:-1.406592px;}
.ls1a_c01236{letter-spacing:-1.344420px;}
.ls1c_c01236{letter-spacing:-0.925217px;}
.ls11_c01236{letter-spacing:-0.527472px;}
.ls4_c01236{letter-spacing:0.000000px;}
.ls17_c01236{letter-spacing:0.205286px;}
.ls3_c01236{letter-spacing:0.344322px;}
.ls2_c01236{letter-spacing:0.417582px;}
.lsb_c01236{letter-spacing:1.318680px;}
.lsa_c01236{letter-spacing:1.809522px;}
.ls18_c01236{letter-spacing:1.882782px;}
.lsc_c01236{letter-spacing:2.249082px;}
.ls19_c01236{letter-spacing:3.366000px;}
.ls8_c01236{letter-spacing:3.413916px;}
.ls13_c01236{letter-spacing:3.465000px;}
.ls5_c01236{letter-spacing:3.663000px;}
.ls14_c01236{letter-spacing:3.712500px;}
.ls16_c01236{letter-spacing:3.742200px;}
.ls12_c01236{letter-spacing:3.811500px;}
.ls1_c01236{letter-spacing:14.236200px;}
.ls0_c01236{letter-spacing:19.392912px;}
.ls6_c01236{letter-spacing:54.172998px;}
.lse_c01236{letter-spacing:59.875398px;}
.lsd_c01236{letter-spacing:61.300998px;}
.sc__c01236{text-shadow:none;}
.sc0_c01236{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01236{-webkit-text-stroke:0px transparent;}
.sc0_c01236{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01236{word-spacing:-19.057500px;}
.ws3_c01236{word-spacing:-18.732582px;}
.ws2_c01236{word-spacing:-18.315000px;}
.ws0_c01236{word-spacing:-17.787528px;}
.ws5_c01236{word-spacing:0.000000px;}
.ws4_c01236{word-spacing:0.293040px;}
._2_c01236{margin-left:-16.186500px;}
._7_c01236{margin-left:-11.968110px;}
._5_c01236{margin-left:-5.233140px;}
._4_c01236{margin-left:-4.122629px;}
._3_c01236{margin-left:-2.193450px;}
._6_c01236{width:4.600728px;}
._9_c01236{width:13.186800px;}
._1_c01236{width:27.981360px;}
._b_c01236{width:31.070160px;}
._a_c01236{width:35.051940px;}
._0_c01236{width:36.703260px;}
._8_c01236{width:43.560000px;}
._c_c01236{width:49.091328px;}
.fc0_c01236{color:transparent;}
.fs11_c01236{font-size:22.176000px;}
.fs1_c01236{font-size:27.720000px;}
.fs15_c01236{font-size:38.412000px;}
.fs4_c01236{font-size:46.728000px;}
.fs3_c01236{font-size:54.172998px;}
.fs5_c01236{font-size:55.044000px;}
.fs8_c01236{font-size:59.875398px;}
.fs7_c01236{font-size:61.300998px;}
.fs12_c01236{font-size:64.548000px;}
.fs13_c01236{font-size:67.320000px;}
.fsa_c01236{font-size:68.112198px;}
.fs6_c01236{font-size:69.300000px;}
.fsd_c01236{font-size:69.696198px;}
.fs16_c01236{font-size:70.092198px;}
.fs14_c01236{font-size:70.884000px;}
.fs2_c01236{font-size:73.260000px;}
.fse_c01236{font-size:74.250000px;}
.fsf_c01236{font-size:74.844000px;}
.fs9_c01236{font-size:75.636198px;}
.fsb_c01236{font-size:76.230000px;}
.fsc_c01236{font-size:79.200000px;}
.fs0_c01236{font-size:89.496198px;}
.fs10_c01236{font-size:114.048000px;}
.y0_c01236{bottom:0.000000px;}
.y1d_c01236{bottom:63.351135px;}
.y1_c01236{bottom:76.500000px;}
.y1b_c01236{bottom:95.783535px;}
.y1c_c01236{bottom:100.416735px;}
.y1a_c01236{bottom:128.210985px;}
.y19_c01236{bottom:186.309135px;}
.y18_c01236{bottom:190.580985px;}
.y17_c01236{bottom:222.661935px;}
.y16_c01236{bottom:286.808985px;}
.y15_c01236{bottom:318.533535px;}
.y14_c01236{bottom:383.393385px;}
.y13_c01236{bottom:415.474335px;}
.y12_c01236{bottom:478.552185px;}
.y11_c01236{bottom:510.276735px;}
.y10_c01236{bottom:573.003135px;}
.yf_c01236{bottom:603.292185px;}
.ye_c01236{bottom:633.947535px;}
.yd_c01236{bottom:636.442335px;}
.yc_c01236{bottom:636.798735px;}
.yb_c01236{bottom:699.876585px;}
.ya_c01236{bottom:731.601135px;}
.y9_c01236{bottom:795.035385px;}
.y8_c01236{bottom:827.116335px;}
.y7_c01236{bottom:888.768585px;}
.y5_c01236{bottom:920.844585px;}
.y6_c01236{bottom:925.834185px;}
.y4_c01236{bottom:1058.058585px;}
.y3_c01236{bottom:1081.580985px;}
.y2_c01236{bottom:1087.996185px;}
.h14_c01236{height:23.128875px;}
.h3_c01236{height:28.911094px;}
.h5_c01236{height:36.079217px;}
.ha_c01236{height:39.877015px;}
.h17_c01236{height:40.062516px;}
.h9_c01236{height:40.826465px;}
.h6_c01236{height:48.735844px;}
.hc_c01236{height:66.848397px;}
.h15_c01236{height:67.321547px;}
.h8_c01236{height:68.014160px;}
.h19_c01236{height:68.791659px;}
.h18_c01236{height:69.568770px;}
.h16_c01236{height:70.212656px;}
.h4_c01236{height:71.900684px;}
.hf_c01236{height:72.277734px;}
.h7_c01236{height:72.575276px;}
.h10_c01236{height:72.690957px;}
.h11_c01236{height:72.872314px;}
.h12_c01236{height:73.455293px;}
.hb_c01236{height:74.232792px;}
.hd_c01236{height:74.815576px;}
.he_c01236{height:77.730469px;}
.h2_c01236{height:87.835624px;}
.h13_c01236{height:111.931875px;}
.h1_c01236{height:1110.000000px;}
.h0_c01236{height:1263.000000px;}
.w1_c01236{width:775.500000px;}
.w0_c01236{width:892.500000px;}
.x0_c01236{left:0.000000px;}
.x1_c01236{left:58.500000px;}
.x45_c01236{left:89.458035px;}
.x2a_c01236{left:90.527235px;}
.x16_c01236{left:91.636035px;}
.x6_c01236{left:93.724935px;}
.x56_c01236{left:122.558685px;}
.x4e_c01236{left:133.522935px;}
.x57_c01236{left:144.289185px;}
.x46_c01236{left:145.358385px;}
.x7_c01236{left:146.709735px;}
.x47_c01236{left:176.295885px;}
.x17_c01236{left:177.978885px;}
.x33_c01236{left:179.379735px;}
.x2b_c01236{left:189.794535px;}
.x8_c01236{left:192.789285px;}
.x54_c01236{left:198.808485px;}
.x11_c01236{left:200.253885px;}
.x18_c01236{left:211.302285px;}
.x5b_c01236{left:222.885285px;}
.x61_c01236{left:224.286135px;}
.x9_c01236{left:234.463335px;}
.x3b_c01236{left:243.709935px;}
.x3d_c01236{left:245.323635px;}
.x58_c01236{left:246.595785px;}
.x4d_c01236{left:254.708835px;}
.x2c_c01236{left:256.134435px;}
.x34_c01236{left:259.802385px;}
.x52_c01236{left:265.811685px;}
.x19_c01236{left:267.232335px;}
.x48_c01236{left:277.562985px;}
.x12_c01236{left:279.483585px;}
.x23_c01236{left:289.150935px;}
.x1a_c01236{left:290.423085px;}
.x3e_c01236{left:292.640685px;}
.xa_c01236{left:301.882335px;}
.x3c_c01236{left:311.079435px;}
.x1b_c01236{left:312.450585px;}
.x32_c01236{left:322.484235px;}
.x5c_c01236{left:331.681335px;}
.x4f_c01236{left:333.582135px;}
.x3f_c01236{left:334.671135px;}
.x1c_c01236{left:336.849135px;}
.x13_c01236{left:344.932485px;}
.x1d_c01236{left:359.539935px;}
.x1e_c01236{left:368.623185px;}
.x44_c01236{left:377.721285px;}
.x24_c01236{left:389.497335px;}
.x50_c01236{left:400.788285px;}
.x40_c01236{left:411.222885px;}
.x14_c01236{left:413.079135px;}
.x2d_c01236{left:423.127635px;}
.x59_c01236{left:432.938535px;}
.x5d_c01236{left:434.240385px;}
.xb_c01236{left:435.314535px;}
.x2e_c01236{left:456.030285px;}
.x15_c01236{left:457.163835px;}
.xc_c01236{left:466.123335px;}
.x5e_c01236{left:467.380635px;}
.x49_c01236{left:477.770685px;}
.x1f_c01236{left:485.809485px;}
.xd_c01236{left:490.497135px;}
.x20_c01236{left:499.827885px;}
.x25_c01236{left:512.608785px;}
.x4a_c01236{left:533.077035px;}
.xe_c01236{left:534.923385px;}
.x41_c01236{left:544.174935px;}
.x26_c01236{left:545.432235px;}
.x5f_c01236{left:547.179585px;}
.x4b_c01236{left:556.460835px;}
.x2f_c01236{left:557.559735px;}
.x36_c01236{left:565.153035px;}
.x42_c01236{left:567.147885px;}
.x21_c01236{left:579.260535px;}
.x5a_c01236{left:600.872235px;}
.xf_c01236{left:603.149235px;}
.x22_c01236{left:610.623735px;}
.x37_c01236{left:621.518685px;}
.x30_c01236{left:623.077935px;}
.x53_c01236{left:632.047335px;}
.x10_c01236{left:633.156135px;}
.x27_c01236{left:636.606285px;}
.x38_c01236{left:644.249085px;}
.x31_c01236{left:655.193535px;}
.x39_c01236{left:665.380635px;}
.x43_c01236{left:666.697335px;}
.x60_c01236{left:668.350635px;}
.x4_c01236{left:677.953635px;}
.x55_c01236{left:680.270235px;}
.x28_c01236{left:702.871935px;}
.x3_c01236{left:708.757485px;}
.x29_c01236{left:710.965185px;}
.x2_c01236{left:718.068435px;}
.x5_c01236{left:720.058335px;}
.x4c_c01236{left:732.661035px;}
.x35_c01236{left:733.725285px;}
.x3a_c01236{left:736.017135px;}
.x51_c01236{left:744.640035px;}
@media print{
.v1_c01236{vertical-align:-17.735520pt;}
.v0_c01236{vertical-align:0.000000pt;}
.v2_c01236{vertical-align:16.491200pt;}
.ls15_c01236{letter-spacing:-2.328480pt;}
.ls7_c01236{letter-spacing:-2.279200pt;}
.ls1b_c01236{letter-spacing:-2.205280pt;}
.ls1d_c01236{letter-spacing:-2.180646pt;}
.ls9_c01236{letter-spacing:-2.156000pt;}
.lsf_c01236{letter-spacing:-2.119046pt;}
.ls10_c01236{letter-spacing:-1.250304pt;}
.ls1a_c01236{letter-spacing:-1.195040pt;}
.ls1c_c01236{letter-spacing:-0.822415pt;}
.ls11_c01236{letter-spacing:-0.468864pt;}
.ls4_c01236{letter-spacing:0.000000pt;}
.ls17_c01236{letter-spacing:0.182477pt;}
.ls3_c01236{letter-spacing:0.306064pt;}
.ls2_c01236{letter-spacing:0.371184pt;}
.lsb_c01236{letter-spacing:1.172160pt;}
.lsa_c01236{letter-spacing:1.608464pt;}
.ls18_c01236{letter-spacing:1.673584pt;}
.lsc_c01236{letter-spacing:1.999184pt;}
.ls19_c01236{letter-spacing:2.992000pt;}
.ls8_c01236{letter-spacing:3.034592pt;}
.ls13_c01236{letter-spacing:3.080000pt;}
.ls5_c01236{letter-spacing:3.256000pt;}
.ls14_c01236{letter-spacing:3.300000pt;}
.ls16_c01236{letter-spacing:3.326400pt;}
.ls12_c01236{letter-spacing:3.388000pt;}
.ls1_c01236{letter-spacing:12.654400pt;}
.ls0_c01236{letter-spacing:17.238144pt;}
.ls6_c01236{letter-spacing:48.153776pt;}
.lse_c01236{letter-spacing:53.222576pt;}
.lsd_c01236{letter-spacing:54.489776pt;}
.ws1_c01236{word-spacing:-16.940000pt;}
.ws3_c01236{word-spacing:-16.651184pt;}
.ws2_c01236{word-spacing:-16.280000pt;}
.ws0_c01236{word-spacing:-15.811136pt;}
.ws5_c01236{word-spacing:0.000000pt;}
.ws4_c01236{word-spacing:0.260480pt;}
._2_c01236{margin-left:-14.388000pt;}
._7_c01236{margin-left:-10.638320pt;}
._5_c01236{margin-left:-4.651680pt;}
._4_c01236{margin-left:-3.664559pt;}
._3_c01236{margin-left:-1.949733pt;}
._6_c01236{width:4.089536pt;}
._9_c01236{width:11.721600pt;}
._1_c01236{width:24.872320pt;}
._b_c01236{width:27.617920pt;}
._a_c01236{width:31.157280pt;}
._0_c01236{width:32.625120pt;}
._8_c01236{width:38.720000pt;}
._c_c01236{width:43.636736pt;}
.fs11_c01236{font-size:19.712000pt;}
.fs1_c01236{font-size:24.640000pt;}
.fs15_c01236{font-size:34.144000pt;}
.fs4_c01236{font-size:41.536000pt;}
.fs3_c01236{font-size:48.153776pt;}
.fs5_c01236{font-size:48.928000pt;}
.fs8_c01236{font-size:53.222576pt;}
.fs7_c01236{font-size:54.489776pt;}
.fs12_c01236{font-size:57.376000pt;}
.fs13_c01236{font-size:59.840000pt;}
.fsa_c01236{font-size:60.544176pt;}
.fs6_c01236{font-size:61.600000pt;}
.fsd_c01236{font-size:61.952176pt;}
.fs16_c01236{font-size:62.304176pt;}
.fs14_c01236{font-size:63.008000pt;}
.fs2_c01236{font-size:65.120000pt;}
.fse_c01236{font-size:66.000000pt;}
.fsf_c01236{font-size:66.528000pt;}
.fs9_c01236{font-size:67.232176pt;}
.fsb_c01236{font-size:67.760000pt;}
.fsc_c01236{font-size:70.400000pt;}
.fs0_c01236{font-size:79.552176pt;}
.fs10_c01236{font-size:101.376000pt;}
.y0_c01236{bottom:0.000000pt;}
.y1d_c01236{bottom:56.312120pt;}
.y1_c01236{bottom:68.000000pt;}
.y1b_c01236{bottom:85.140920pt;}
.y1c_c01236{bottom:89.259320pt;}
.y1a_c01236{bottom:113.965320pt;}
.y19_c01236{bottom:165.608120pt;}
.y18_c01236{bottom:169.405320pt;}
.y17_c01236{bottom:197.921720pt;}
.y16_c01236{bottom:254.941320pt;}
.y15_c01236{bottom:283.140920pt;}
.y14_c01236{bottom:340.794120pt;}
.y13_c01236{bottom:369.310520pt;}
.y12_c01236{bottom:425.379720pt;}
.y11_c01236{bottom:453.579320pt;}
.y10_c01236{bottom:509.336120pt;}
.yf_c01236{bottom:536.259720pt;}
.ye_c01236{bottom:563.508920pt;}
.yd_c01236{bottom:565.726520pt;}
.yc_c01236{bottom:566.043320pt;}
.yb_c01236{bottom:622.112520pt;}
.ya_c01236{bottom:650.312120pt;}
.y9_c01236{bottom:706.698120pt;}
.y8_c01236{bottom:735.214520pt;}
.y7_c01236{bottom:790.016520pt;}
.y5_c01236{bottom:818.528520pt;}
.y6_c01236{bottom:822.963720pt;}
.y4_c01236{bottom:940.496520pt;}
.y3_c01236{bottom:961.405320pt;}
.y2_c01236{bottom:967.107720pt;}
.h14_c01236{height:20.559000pt;}
.h3_c01236{height:25.698750pt;}
.h5_c01236{height:32.070415pt;}
.ha_c01236{height:35.446236pt;}
.h17_c01236{height:35.611125pt;}
.h9_c01236{height:36.290191pt;}
.h6_c01236{height:43.320750pt;}
.hc_c01236{height:59.420798pt;}
.h15_c01236{height:59.841375pt;}
.h8_c01236{height:60.457031pt;}
.h19_c01236{height:61.148141pt;}
.h18_c01236{height:61.838906pt;}
.h16_c01236{height:62.411250pt;}
.h4_c01236{height:63.911719pt;}
.hf_c01236{height:64.246875pt;}
.h7_c01236{height:64.511356pt;}
.h10_c01236{height:64.614184pt;}
.h11_c01236{height:64.775391pt;}
.h12_c01236{height:65.293594pt;}
.hb_c01236{height:65.984704pt;}
.hd_c01236{height:66.502734pt;}
.he_c01236{height:69.093750pt;}
.h2_c01236{height:78.076110pt;}
.h13_c01236{height:99.495000pt;}
.h1_c01236{height:986.666667pt;}
.h0_c01236{height:1122.666667pt;}
.w1_c01236{width:689.333333pt;}
.w0_c01236{width:793.333333pt;}
.x0_c01236{left:0.000000pt;}
.x1_c01236{left:52.000000pt;}
.x45_c01236{left:79.518253pt;}
.x2a_c01236{left:80.468653pt;}
.x16_c01236{left:81.454253pt;}
.x6_c01236{left:83.311053pt;}
.x56_c01236{left:108.941053pt;}
.x4e_c01236{left:118.687053pt;}
.x57_c01236{left:128.257053pt;}
.x46_c01236{left:129.207453pt;}
.x7_c01236{left:130.408653pt;}
.x47_c01236{left:156.707453pt;}
.x17_c01236{left:158.203453pt;}
.x33_c01236{left:159.448653pt;}
.x2b_c01236{left:168.706253pt;}
.x8_c01236{left:171.368253pt;}
.x54_c01236{left:176.718653pt;}
.x11_c01236{left:178.003453pt;}
.x18_c01236{left:187.824253pt;}
.x5b_c01236{left:198.120253pt;}
.x61_c01236{left:199.365453pt;}
.x9_c01236{left:208.411853pt;}
.x3b_c01236{left:216.631053pt;}
.x3d_c01236{left:218.065453pt;}
.x58_c01236{left:219.196253pt;}
.x4d_c01236{left:226.407853pt;}
.x2c_c01236{left:227.675053pt;}
.x34_c01236{left:230.935453pt;}
.x52_c01236{left:236.277053pt;}
.x19_c01236{left:237.539853pt;}
.x48_c01236{left:246.722653pt;}
.x12_c01236{left:248.429853pt;}
.x23_c01236{left:257.023053pt;}
.x1a_c01236{left:258.153853pt;}
.x3e_c01236{left:260.125053pt;}
.xa_c01236{left:268.339853pt;}
.x3c_c01236{left:276.515053pt;}
.x1b_c01236{left:277.733853pt;}
.x32_c01236{left:286.652653pt;}
.x5c_c01236{left:294.827853pt;}
.x4f_c01236{left:296.517453pt;}
.x3f_c01236{left:297.485453pt;}
.x1c_c01236{left:299.421453pt;}
.x13_c01236{left:306.606653pt;}
.x1d_c01236{left:319.591053pt;}
.x1e_c01236{left:327.665053pt;}
.x44_c01236{left:335.752253pt;}
.x24_c01236{left:346.219853pt;}
.x50_c01236{left:356.256253pt;}
.x40_c01236{left:365.531453pt;}
.x14_c01236{left:367.181453pt;}
.x2d_c01236{left:376.113453pt;}
.x59_c01236{left:384.834253pt;}
.x5d_c01236{left:385.991453pt;}
.xb_c01236{left:386.946253pt;}
.x2e_c01236{left:405.360253pt;}
.x15_c01236{left:406.367853pt;}
.xc_c01236{left:414.331853pt;}
.x5e_c01236{left:415.449453pt;}
.x49_c01236{left:424.685053pt;}
.x1f_c01236{left:431.830653pt;}
.xd_c01236{left:435.997453pt;}
.x20_c01236{left:444.291453pt;}
.x25_c01236{left:455.652253pt;}
.x4a_c01236{left:473.846253pt;}
.xe_c01236{left:475.487453pt;}
.x41_c01236{left:483.711053pt;}
.x26_c01236{left:484.828653pt;}
.x5f_c01236{left:486.381853pt;}
.x4b_c01236{left:494.631853pt;}
.x2f_c01236{left:495.608653pt;}
.x36_c01236{left:502.358253pt;}
.x42_c01236{left:504.131453pt;}
.x21_c01236{left:514.898253pt;}
.x5a_c01236{left:534.108653pt;}
.xf_c01236{left:536.132653pt;}
.x22_c01236{left:542.776653pt;}
.x37_c01236{left:552.461053pt;}
.x30_c01236{left:553.847053pt;}
.x53_c01236{left:561.819853pt;}
.x10_c01236{left:562.805453pt;}
.x27_c01236{left:565.872253pt;}
.x38_c01236{left:572.665853pt;}
.x31_c01236{left:582.394253pt;}
.x39_c01236{left:591.449453pt;}
.x43_c01236{left:592.619853pt;}
.x60_c01236{left:594.089453pt;}
.x4_c01236{left:602.625453pt;}
.x55_c01236{left:604.684653pt;}
.x28_c01236{left:624.775053pt;}
.x3_c01236{left:630.006653pt;}
.x29_c01236{left:631.969053pt;}
.x2_c01236{left:638.283053pt;}
.x5_c01236{left:640.051853pt;}
.x4c_c01236{left:651.254253pt;}
.x35_c01236{left:652.200253pt;}
.x3a_c01236{left:654.237453pt;}
.x51_c01236{left:661.902253pt;}
}





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

.ir_c01237:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01237{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01237;src:url('chunks/assets/font_de53cd4388f685206223a674.woff2')format("woff");}.ff1_c01237{font-family:ff1_c01237;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01237;src:url('chunks/assets/font_255c69024501c57eb3f13f95.woff2')format("woff");}.ff2_c01237{font-family:ff2_c01237;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01237;src:url('chunks/assets/font_dcf57b0cbf18367c22a9d094.woff2')format("woff");}.ff3_c01237{font-family:ff3_c01237;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01237;src:url('chunks/assets/font_b6af980945b4ab08f3bfb6ce.woff2')format("woff");}.ff4_c01237{font-family:ff4_c01237;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m31_c01237{transform:matrix(0.107022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107022,0.000000,0.000000,0.250000,0,0);}
.m11_c01237{transform:matrix(0.144522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144522,0.000000,0.000000,0.250000,0,0);}
.me_c01237{transform:matrix(0.150539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150539,0.000000,0.000000,0.250000,0,0);}
.m43_c01237{transform:matrix(0.157382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157382,0.000000,0.000000,0.250000,0,0);}
.mb_c01237{transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);}
.m44_c01237{transform:matrix(0.192731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192731,0.000000,0.000000,0.250000,0,0);}
.m54_c01237{transform:matrix(0.213471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213471,0.000000,0.000000,0.250000,0,0);}
.m60_c01237{transform:matrix(0.214514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214514,0.000000,0.000000,0.250000,0,0);}
.m2_c01237{transform:matrix(0.226024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226024,0.000000,0.000000,0.250000,0,0);}
.m3a_c01237{transform:matrix(0.236435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236435,0.000000,0.000000,0.250000,0,0);}
.md_c01237{transform:matrix(0.239771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239771,0.000000,0.000000,0.250000,0,0);}
.m53_c01237{transform:matrix(0.241303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241303,0.000000,0.000000,0.250000,0,0);}
.m26_c01237{transform:matrix(0.243266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243266,0.000000,0.000000,0.250000,0,0);}
.m58_c01237{transform:matrix(0.247083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247083,0.000000,0.000000,0.250000,0,0);}
.m1_c01237{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m28_c01237{transform:matrix(0.254001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254001,0.000000,0.000000,0.250000,0,0);}
.m0_c01237{transform:matrix(0.271900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271900,0.000000,0.000000,0.250000,0,0);}
.m29_c01237{transform:matrix(0.271980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271980,0.000000,0.000000,0.250000,0,0);}
.m66_c01237{transform:matrix(0.273618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273618,0.000000,0.000000,0.250000,0,0);}
.m4_c01237{transform:matrix(0.274546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274546,0.000000,0.000000,0.250000,0,0);}
.m47_c01237{transform:matrix(0.274969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274969,0.000000,0.000000,0.250000,0,0);}
.m69_c01237{transform:matrix(0.275599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275599,0.000000,0.000000,0.250000,0,0);}
.m1a_c01237{transform:matrix(0.276059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276059,0.000000,0.000000,0.250000,0,0);}
.m22_c01237{transform:matrix(0.277004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277004,0.000000,0.000000,0.250000,0,0);}
.m41_c01237{transform:matrix(0.277310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277310,0.000000,0.000000,0.250000,0,0);}
.m3d_c01237{transform:matrix(0.277780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277780,0.000000,0.000000,0.250000,0,0);}
.m5f_c01237{transform:matrix(0.277989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277989,0.000000,0.000000,0.250000,0,0);}
.m6_c01237{transform:matrix(0.278367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278367,0.000000,0.000000,0.250000,0,0);}
.m71_c01237{transform:matrix(0.279920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279920,0.000000,0.000000,0.250000,0,0);}
.m4b_c01237{transform:matrix(0.280973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280973,0.000000,0.000000,0.250000,0,0);}
.m3c_c01237{transform:matrix(0.282493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282493,0.000000,0.000000,0.250000,0,0);}
.m12_c01237{transform:matrix(0.283338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283338,0.000000,0.000000,0.250000,0,0);}
.mc_c01237{transform:matrix(0.284377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284377,0.000000,0.000000,0.250000,0,0);}
.m1e_c01237{transform:matrix(0.285296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285296,0.000000,0.000000,0.250000,0,0);}
.m40_c01237{transform:matrix(0.285410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285410,0.000000,0.000000,0.250000,0,0);}
.m3_c01237{transform:matrix(0.286010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286010,0.000000,0.000000,0.250000,0,0);}
.m63_c01237{transform:matrix(0.286372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286372,0.000000,0.000000,0.250000,0,0);}
.m36_c01237{transform:matrix(0.287530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287530,0.000000,0.000000,0.250000,0,0);}
.m5a_c01237{transform:matrix(0.287771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287771,0.000000,0.000000,0.250000,0,0);}
.m56_c01237{transform:matrix(0.287917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287917,0.000000,0.000000,0.250000,0,0);}
.m55_c01237{transform:matrix(0.288686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288686,0.000000,0.000000,0.250000,0,0);}
.m3b_c01237{transform:matrix(0.289677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289677,0.000000,0.000000,0.250000,0,0);}
.m4a_c01237{transform:matrix(0.290637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290637,0.000000,0.000000,0.250000,0,0);}
.m59_c01237{transform:matrix(0.291247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291247,0.000000,0.000000,0.250000,0,0);}
.m67_c01237{transform:matrix(0.291382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291382,0.000000,0.000000,0.250000,0,0);}
.mf_c01237{transform:matrix(0.291483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291483,0.000000,0.000000,0.250000,0,0);}
.m20_c01237{transform:matrix(0.291596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291596,0.000000,0.000000,0.250000,0,0);}
.m6a_c01237{transform:matrix(0.291710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291710,0.000000,0.000000,0.250000,0,0);}
.m18_c01237{transform:matrix(0.292106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292106,0.000000,0.000000,0.250000,0,0);}
.m45_c01237{transform:matrix(0.292300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292300,0.000000,0.000000,0.250000,0,0);}
.m9_c01237{transform:matrix(0.292392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292392,0.000000,0.000000,0.250000,0,0);}
.m1f_c01237{transform:matrix(0.292643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292643,0.000000,0.000000,0.250000,0,0);}
.m70_c01237{transform:matrix(0.292905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292905,0.000000,0.000000,0.250000,0,0);}
.m5d_c01237{transform:matrix(0.293026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293026,0.000000,0.000000,0.250000,0,0);}
.m38_c01237{transform:matrix(0.293368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293368,0.000000,0.000000,0.250000,0,0);}
.m57_c01237{transform:matrix(0.293547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293547,0.000000,0.000000,0.250000,0,0);}
.m2c_c01237{transform:matrix(0.295168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295168,0.000000,0.000000,0.250000,0,0);}
.m15_c01237{transform:matrix(0.295307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295307,0.000000,0.000000,0.250000,0,0);}
.m3f_c01237{transform:matrix(0.295348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295348,0.000000,0.000000,0.250000,0,0);}
.m19_c01237{transform:matrix(0.296448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296448,0.000000,0.000000,0.250000,0,0);}
.m65_c01237{transform:matrix(0.298188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298188,0.000000,0.000000,0.250000,0,0);}
.m33_c01237{transform:matrix(0.299209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299209,0.000000,0.000000,0.250000,0,0);}
.m5_c01237{transform:matrix(0.299701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299701,0.000000,0.000000,0.250000,0,0);}
.ma_c01237{transform:matrix(0.299813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299813,0.000000,0.000000,0.250000,0,0);}
.m2f_c01237{transform:matrix(0.301812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301812,0.000000,0.000000,0.250000,0,0);}
.m14_c01237{transform:matrix(0.303346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303346,0.000000,0.000000,0.250000,0,0);}
.m5b_c01237{transform:matrix(0.305026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305026,0.000000,0.000000,0.250000,0,0);}
.m4e_c01237{transform:matrix(0.305254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305254,0.000000,0.000000,0.250000,0,0);}
.m6d_c01237{transform:matrix(0.305344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305344,0.000000,0.000000,0.250000,0,0);}
.m42_c01237{transform:matrix(0.307918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307918,0.000000,0.000000,0.250000,0,0);}
.m25_c01237{transform:matrix(0.307984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307984,0.000000,0.000000,0.250000,0,0);}
.m37_c01237{transform:matrix(0.309981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309981,0.000000,0.000000,0.250000,0,0);}
.m1c_c01237{transform:matrix(0.313150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313150,0.000000,0.000000,0.250000,0,0);}
.m2e_c01237{transform:matrix(0.313976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313976,0.000000,0.000000,0.250000,0,0);}
.m68_c01237{transform:matrix(0.314334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314334,0.000000,0.000000,0.250000,0,0);}
.m6b_c01237{transform:matrix(0.315120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315120,0.000000,0.000000,0.250000,0,0);}
.m8_c01237{transform:matrix(0.316516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316516,0.000000,0.000000,0.250000,0,0);}
.m27_c01237{transform:matrix(0.317050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317050,0.000000,0.000000,0.250000,0,0);}
.m17_c01237{transform:matrix(0.317239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317239,0.000000,0.000000,0.250000,0,0);}
.m49_c01237{transform:matrix(0.317543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317543,0.000000,0.000000,0.250000,0,0);}
.m48_c01237{transform:matrix(0.318049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318049,0.000000,0.000000,0.250000,0,0);}
.m10_c01237{transform:matrix(0.319397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319397,0.000000,0.000000,0.250000,0,0);}
.m5c_c01237{transform:matrix(0.320022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320022,0.000000,0.000000,0.250000,0,0);}
.m52_c01237{transform:matrix(0.320235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320235,0.000000,0.000000,0.250000,0,0);}
.m39_c01237{transform:matrix(0.320287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320287,0.000000,0.000000,0.250000,0,0);}
.m2b_c01237{transform:matrix(0.323213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323213,0.000000,0.000000,0.250000,0,0);}
.m30_c01237{transform:matrix(0.323423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323423,0.000000,0.000000,0.250000,0,0);}
.m6f_c01237{transform:matrix(0.324542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324542,0.000000,0.000000,0.250000,0,0);}
.m64_c01237{transform:matrix(0.324595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324595,0.000000,0.000000,0.250000,0,0);}
.m13_c01237{transform:matrix(0.326218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326218,0.000000,0.000000,0.250000,0,0);}
.m5e_c01237{transform:matrix(0.327121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327121,0.000000,0.000000,0.250000,0,0);}
.m2a_c01237{transform:matrix(0.327287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327287,0.000000,0.000000,0.250000,0,0);}
.m24_c01237{transform:matrix(0.330380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330380,0.000000,0.000000,0.250000,0,0);}
.m3e_c01237{transform:matrix(0.330791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330791,0.000000,0.000000,0.250000,0,0);}
.m2d_c01237{transform:matrix(0.331786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331786,0.000000,0.000000,0.250000,0,0);}
.m4c_c01237{transform:matrix(0.334092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334092,0.000000,0.000000,0.250000,0,0);}
.m21_c01237{transform:matrix(0.343190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343190,0.000000,0.000000,0.250000,0,0);}
.m6c_c01237{transform:matrix(0.346817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346817,0.000000,0.000000,0.250000,0,0);}
.m1d_c01237{transform:matrix(0.347104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347104,0.000000,0.000000,0.250000,0,0);}
.m35_c01237{transform:matrix(0.348052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348052,0.000000,0.000000,0.250000,0,0);}
.m50_c01237{transform:matrix(0.348954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348954,0.000000,0.000000,0.250000,0,0);}
.m62_c01237{transform:matrix(0.349380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349380,0.000000,0.000000,0.250000,0,0);}
.m46_c01237{transform:matrix(0.354854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354854,0.000000,0.000000,0.250000,0,0);}
.m4d_c01237{transform:matrix(0.361715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361715,0.000000,0.000000,0.250000,0,0);}
.m34_c01237{transform:matrix(0.364284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364284,0.000000,0.000000,0.250000,0,0);}
.m6e_c01237{transform:matrix(0.370151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370151,0.000000,0.000000,0.250000,0,0);}
.m51_c01237{transform:matrix(0.370842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370842,0.000000,0.000000,0.250000,0,0);}
.m61_c01237{transform:matrix(0.388256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388256,0.000000,0.000000,0.250000,0,0);}
.m23_c01237{transform:matrix(0.388985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388985,0.000000,0.000000,0.250000,0,0);}
.m4f_c01237{transform:matrix(0.401483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401483,0.000000,0.000000,0.250000,0,0);}
.m1b_c01237{transform:matrix(0.402752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402752,0.000000,0.000000,0.250000,0,0);}
.m7_c01237{transform:matrix(0.408283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408283,0.000000,0.000000,0.250000,0,0);}
.m32_c01237{transform:matrix(0.435721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435721,0.000000,0.000000,0.250000,0,0);}
.m16_c01237{transform:matrix(0.442613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442613,0.000000,0.000000,0.250000,0,0);}
.v0_c01237{vertical-align:0.000000px;}
.ls16_c01237{letter-spacing:-2.716567px;}
.ls3_c01237{letter-spacing:-2.550240px;}
.ls15_c01237{letter-spacing:-2.439367px;}
.ls10_c01237{letter-spacing:-2.238390px;}
.ls14_c01237{letter-spacing:-1.573862px;}
.ls9_c01237{letter-spacing:-1.034669px;}
.ls7_c01237{letter-spacing:-0.590198px;}
.lsa_c01237{letter-spacing:-0.306029px;}
.ls2_c01237{letter-spacing:0.000000px;}
.ls4_c01237{letter-spacing:0.014573px;}
.lsc_c01237{letter-spacing:0.918086px;}
.ls1a_c01237{letter-spacing:2.149488px;}
.ls19_c01237{letter-spacing:2.404512px;}
.ls0_c01237{letter-spacing:2.577512px;}
.ls1b_c01237{letter-spacing:2.630390px;}
.ls13_c01237{letter-spacing:2.892701px;}
.lsd_c01237{letter-spacing:3.031142px;}
.ls11_c01237{letter-spacing:3.197700px;}
.ls17_c01237{letter-spacing:3.247200px;}
.lse_c01237{letter-spacing:3.276900px;}
.ls18_c01237{letter-spacing:3.336310px;}
.lsb_c01237{letter-spacing:3.455110px;}
.ls12_c01237{letter-spacing:3.465000px;}
.ls5_c01237{letter-spacing:3.643200px;}
.ls1_c01237{letter-spacing:3.880810px;}
.lsf_c01237{letter-spacing:4.276810px;}
.ls8_c01237{letter-spacing:55.598598px;}
.ls6_c01237{letter-spacing:59.875398px;}
.sc__c01237{text-shadow:none;}
.sc0_c01237{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01237{-webkit-text-stroke:0px transparent;}
.sc0_c01237{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01237{word-spacing:-20.846390px;}
.ws1_c01237{word-spacing:-19.210411px;}
.ws0_c01237{word-spacing:-18.216000px;}
.ws3_c01237{word-spacing:0.000000px;}
._0_c01237{margin-left:-3.206016px;}
._3_c01237{width:6.357472px;}
._7_c01237{width:7.636147px;}
._6_c01237{width:11.585376px;}
._1_c01237{width:23.462208px;}
._5_c01237{width:32.076000px;}
._2_c01237{width:38.927592px;}
._4_c01237{width:46.953403px;}
.fc0_c01237{color:transparent;}
.fs2_c01237{font-size:25.146000px;}
.fs5_c01237{font-size:55.598598px;}
.fs4_c01237{font-size:59.875398px;}
.fsa_c01237{font-size:63.954000px;}
.fsd_c01237{font-size:64.944000px;}
.fs8_c01237{font-size:65.538000px;}
.fs1_c01237{font-size:66.528000px;}
.fse_c01237{font-size:66.726198px;}
.fs6_c01237{font-size:69.102198px;}
.fsb_c01237{font-size:69.300000px;}
.fsc_c01237{font-size:69.696198px;}
.fs3_c01237{font-size:72.864000px;}
.fs7_c01237{font-size:74.844000px;}
.fs0_c01237{font-size:77.616198px;}
.fs9_c01237{font-size:85.536198px;}
.y0_c01237{bottom:0.000000px;}
.y1_c01237{bottom:76.500000px;}
.y18_c01237{bottom:102.911535px;}
.y17_c01237{bottom:134.987535px;}
.y16_c01237{bottom:167.058585px;}
.y15_c01237{bottom:230.859135px;}
.y14_c01237{bottom:294.298335px;}
.y13_c01237{bottom:326.369385px;}
.y12_c01237{bottom:357.732585px;}
.y11_c01237{bottom:420.463935px;}
.y10_c01237{bottom:451.822185px;}
.yf_c01237{bottom:515.622735px;}
.ye_c01237{bottom:547.342335px;}
.yd_c01237{bottom:611.137935px;}
.yc_c01237{bottom:642.501135px;}
.yb_c01237{bottom:663.880185px;}
.ya_c01237{bottom:705.578985px;}
.y9_c01237{bottom:737.303535px;}
.y8_c01237{bottom:800.742735px;}
.y7_c01237{bottom:831.744585px;}
.y6_c01237{bottom:896.257935px;}
.y5_c01237{bottom:927.972585px;}
.y4_c01237{bottom:946.510335px;}
.y3_c01237{bottom:959.335785px;}
.y2_c01237{bottom:1064.473785px;}
.h4_c01237{height:26.226492px;}
.h7_c01237{height:37.028666px;}
.h6_c01237{height:39.877015px;}
.ha_c01237{height:64.321963px;}
.hc_c01237{height:66.702023px;}
.hf_c01237{height:67.734563px;}
.he_c01237{height:68.403007px;}
.h3_c01237{height:69.386625px;}
.h10_c01237{height:69.593339px;}
.h5_c01237{height:71.512031px;}
.h8_c01237{height:72.071433px;}
.hd_c01237{height:72.277734px;}
.h2_c01237{height:76.176054px;}
.h9_c01237{height:78.059953px;}
.hb_c01237{height:83.949101px;}
.h1_c01237{height:1110.000000px;}
.h0_c01237{height:1263.000000px;}
.w1_c01237{width:775.500000px;}
.w0_c01237{width:892.500000px;}
.x0_c01237{left:0.000000px;}
.x1_c01237{left:58.500000px;}
.x4f_c01237{left:87.878985px;}
.x3a_c01237{left:89.477835px;}
.x12_c01237{left:90.883635px;}
.x5_c01237{left:91.987485px;}
.x3b_c01237{left:111.450885px;}
.x6_c01237{left:124.261485px;}
.x13_c01237{left:145.714785px;}
.x50_c01237{left:164.970285px;}
.x29_c01237{left:166.984935px;}
.x35_c01237{left:176.182035px;}
.x3c_c01237{left:189.017385px;}
.x36_c01237{left:190.616235px;}
.x54_c01237{left:198.308535px;}
.x26_c01237{left:199.486635px;}
.x7_c01237{left:201.491385px;}
.x4b_c01237{left:209.782635px;}
.x14_c01237{left:213.950535px;}
.x15_c01237{left:224.766285px;}
.x2a_c01237{left:231.230985px;}
.x3d_c01237{left:232.597185px;}
.x37_c01237{left:233.646585px;}
.x40_c01237{left:238.259985px;}
.x16_c01237{left:244.353435px;}
.x8_c01237{left:247.655085px;}
.x4c_c01237{left:254.758335px;}
.x55_c01237{left:256.619535px;}
.x38_c01237{left:257.634285px;}
.x51_c01237{left:266.044335px;}
.x3f_c01237{left:276.860085px;}
.x17_c01237{left:277.939185px;}
.xf_c01237{left:279.765735px;}
.x44_c01237{left:288.903435px;}
.x56_c01237{left:300.600285px;}
.x52_c01237{left:309.728085px;}
.x1f_c01237{left:312.861435px;}
.x9_c01237{left:322.499085px;}
.x32_c01237{left:323.716785px;}
.x57_c01237{left:332.829735px;}
.x2b_c01237{left:334.067235px;}
.x20_c01237{left:344.145435px;}
.xa_c01237{left:346.803585px;}
.x33_c01237{left:355.124535px;}
.x18_c01237{left:357.104535px;}
.x27_c01237{left:365.905635px;}
.x2c_c01237{left:367.009485px;}
.x4a_c01237{left:375.711585px;}
.x21_c01237{left:379.325085px;}
.x1d_c01237{left:388.002435px;}
.x58_c01237{left:400.530885px;}
.x2d_c01237{left:411.920835px;}
.x10_c01237{left:422.276235px;}
.xb_c01237{left:423.548385px;}
.x22_c01237{left:433.329585px;}
.x11_c01237{left:447.714285px;}
.xc_c01237{left:456.272835px;}
.x41_c01237{left:465.623385px;}
.x45_c01237{left:467.702385px;}
.x1e_c01237{left:477.523185px;}
.x19_c01237{left:488.571585px;}
.xd_c01237{left:489.809085px;}
.x46_c01237{left:499.441785px;}
.x2e_c01237{left:501.015885px;}
.x42_c01237{left:511.178235px;}
.x2f_c01237{left:512.311785px;}
.x47_c01237{left:544.085835px;}
.x23_c01237{left:545.437185px;}
.x4d_c01237{left:564.791685px;}
.x30_c01237{left:567.038985px;}
.x24_c01237{left:576.617235px;}
.x1a_c01237{left:578.003235px;}
.x34_c01237{left:587.848785px;}
.xe_c01237{left:601.045485px;}
.x43_c01237{left:632.527485px;}
.x31_c01237{left:643.239285px;}
.x3e_c01237{left:644.615385px;}
.x4e_c01237{left:653.579835px;}
.x39_c01237{left:664.553985px;}
.x1b_c01237{left:666.326085px;}
.x25_c01237{left:668.677335px;}
.x53_c01237{left:674.310435px;}
.x2_c01237{left:677.963535px;}
.x59_c01237{left:686.739885px;}
.x1c_c01237{left:699.862335px;}
.x48_c01237{left:701.723535px;}
.x3_c01237{left:710.029635px;}
.x4_c01237{left:711.900735px;}
.x28_c01237{left:717.167535px;}
.x49_c01237{left:719.474235px;}
@media print{
.v0_c01237{vertical-align:0.000000pt;}
.ls16_c01237{letter-spacing:-2.414726pt;}
.ls3_c01237{letter-spacing:-2.266880pt;}
.ls15_c01237{letter-spacing:-2.168326pt;}
.ls10_c01237{letter-spacing:-1.989680pt;}
.ls14_c01237{letter-spacing:-1.398989pt;}
.ls9_c01237{letter-spacing:-0.919706pt;}
.ls7_c01237{letter-spacing:-0.524621pt;}
.lsa_c01237{letter-spacing:-0.272026pt;}
.ls2_c01237{letter-spacing:0.000000pt;}
.ls4_c01237{letter-spacing:0.012954pt;}
.lsc_c01237{letter-spacing:0.816077pt;}
.ls1a_c01237{letter-spacing:1.910656pt;}
.ls19_c01237{letter-spacing:2.137344pt;}
.ls0_c01237{letter-spacing:2.291122pt;}
.ls1b_c01237{letter-spacing:2.338125pt;}
.ls13_c01237{letter-spacing:2.571290pt;}
.lsd_c01237{letter-spacing:2.694349pt;}
.ls11_c01237{letter-spacing:2.842400pt;}
.ls17_c01237{letter-spacing:2.886400pt;}
.lse_c01237{letter-spacing:2.912800pt;}
.ls18_c01237{letter-spacing:2.965609pt;}
.lsb_c01237{letter-spacing:3.071209pt;}
.ls12_c01237{letter-spacing:3.080000pt;}
.ls5_c01237{letter-spacing:3.238400pt;}
.ls1_c01237{letter-spacing:3.449609pt;}
.lsf_c01237{letter-spacing:3.801609pt;}
.ls8_c01237{letter-spacing:49.420976pt;}
.ls6_c01237{letter-spacing:53.222576pt;}
.ws2_c01237{word-spacing:-18.530125pt;}
.ws1_c01237{word-spacing:-17.075921pt;}
.ws0_c01237{word-spacing:-16.192000pt;}
.ws3_c01237{word-spacing:0.000000pt;}
._0_c01237{margin-left:-2.849792pt;}
._3_c01237{width:5.651086pt;}
._7_c01237{width:6.787686pt;}
._6_c01237{width:10.298112pt;}
._1_c01237{width:20.855296pt;}
._5_c01237{width:28.512000pt;}
._2_c01237{width:34.602304pt;}
._4_c01237{width:41.736358pt;}
.fs2_c01237{font-size:22.352000pt;}
.fs5_c01237{font-size:49.420976pt;}
.fs4_c01237{font-size:53.222576pt;}
.fsa_c01237{font-size:56.848000pt;}
.fsd_c01237{font-size:57.728000pt;}
.fs8_c01237{font-size:58.256000pt;}
.fs1_c01237{font-size:59.136000pt;}
.fse_c01237{font-size:59.312176pt;}
.fs6_c01237{font-size:61.424176pt;}
.fsb_c01237{font-size:61.600000pt;}
.fsc_c01237{font-size:61.952176pt;}
.fs3_c01237{font-size:64.768000pt;}
.fs7_c01237{font-size:66.528000pt;}
.fs0_c01237{font-size:68.992176pt;}
.fs9_c01237{font-size:76.032176pt;}
.y0_c01237{bottom:0.000000pt;}
.y1_c01237{bottom:68.000000pt;}
.y18_c01237{bottom:91.476920pt;}
.y17_c01237{bottom:119.988920pt;}
.y16_c01237{bottom:148.496520pt;}
.y15_c01237{bottom:205.208120pt;}
.y14_c01237{bottom:261.598520pt;}
.y13_c01237{bottom:290.106120pt;}
.y12_c01237{bottom:317.984520pt;}
.y11_c01237{bottom:373.745720pt;}
.y10_c01237{bottom:401.619720pt;}
.yf_c01237{bottom:458.331320pt;}
.ye_c01237{bottom:486.526520pt;}
.yd_c01237{bottom:543.233720pt;}
.yc_c01237{bottom:571.112120pt;}
.yb_c01237{bottom:590.115720pt;}
.ya_c01237{bottom:627.181320pt;}
.y9_c01237{bottom:655.380920pt;}
.y8_c01237{bottom:711.771320pt;}
.y7_c01237{bottom:739.328520pt;}
.y6_c01237{bottom:796.673720pt;}
.y5_c01237{bottom:824.864520pt;}
.y4_c01237{bottom:841.342520pt;}
.y3_c01237{bottom:852.742920pt;}
.y2_c01237{bottom:946.198920pt;}
.h4_c01237{height:23.312438pt;}
.h7_c01237{height:32.914370pt;}
.h6_c01237{height:35.446236pt;}
.ha_c01237{height:57.175078pt;}
.hc_c01237{height:59.290687pt;}
.hf_c01237{height:60.208500pt;}
.he_c01237{height:60.802673pt;}
.h3_c01237{height:61.677000pt;}
.h10_c01237{height:61.860746pt;}
.h5_c01237{height:63.566250pt;}
.h8_c01237{height:64.063496pt;}
.hd_c01237{height:64.246875pt;}
.h2_c01237{height:67.712048pt;}
.h9_c01237{height:69.386625pt;}
.hb_c01237{height:74.621423pt;}
.h1_c01237{height:986.666667pt;}
.h0_c01237{height:1122.666667pt;}
.w1_c01237{width:689.333333pt;}
.w0_c01237{width:793.333333pt;}
.x0_c01237{left:0.000000pt;}
.x1_c01237{left:52.000000pt;}
.x4f_c01237{left:78.114653pt;}
.x3a_c01237{left:79.535853pt;}
.x12_c01237{left:80.785453pt;}
.x5_c01237{left:81.766653pt;}
.x3b_c01237{left:99.067453pt;}
.x6_c01237{left:110.454653pt;}
.x13_c01237{left:129.524253pt;}
.x50_c01237{left:146.640253pt;}
.x29_c01237{left:148.431053pt;}
.x35_c01237{left:156.606253pt;}
.x3c_c01237{left:168.015453pt;}
.x36_c01237{left:169.436653pt;}
.x54_c01237{left:176.274253pt;}
.x26_c01237{left:177.321453pt;}
.x7_c01237{left:179.103453pt;}
.x4b_c01237{left:186.473453pt;}
.x14_c01237{left:190.178253pt;}
.x15_c01237{left:199.792253pt;}
.x2a_c01237{left:205.538653pt;}
.x3d_c01237{left:206.753053pt;}
.x37_c01237{left:207.685853pt;}
.x40_c01237{left:211.786653pt;}
.x16_c01237{left:217.203053pt;}
.x8_c01237{left:220.137853pt;}
.x4c_c01237{left:226.451853pt;}
.x55_c01237{left:228.106253pt;}
.x38_c01237{left:229.008253pt;}
.x51_c01237{left:236.483853pt;}
.x3f_c01237{left:246.097853pt;}
.x17_c01237{left:247.057053pt;}
.xf_c01237{left:248.680653pt;}
.x44_c01237{left:256.803053pt;}
.x56_c01237{left:267.200253pt;}
.x52_c01237{left:275.313853pt;}
.x1f_c01237{left:278.099053pt;}
.x9_c01237{left:286.665853pt;}
.x32_c01237{left:287.748253pt;}
.x57_c01237{left:295.848653pt;}
.x2b_c01237{left:296.948653pt;}
.x20_c01237{left:305.907053pt;}
.xa_c01237{left:308.269853pt;}
.x33_c01237{left:315.666253pt;}
.x18_c01237{left:317.426253pt;}
.x27_c01237{left:325.249453pt;}
.x2c_c01237{left:326.230653pt;}
.x4a_c01237{left:333.965853pt;}
.x21_c01237{left:337.177853pt;}
.x1d_c01237{left:344.891053pt;}
.x58_c01237{left:356.027453pt;}
.x2d_c01237{left:366.151853pt;}
.x10_c01237{left:375.356653pt;}
.xb_c01237{left:376.487453pt;}
.x22_c01237{left:385.181853pt;}
.x11_c01237{left:397.968253pt;}
.xc_c01237{left:405.575853pt;}
.x41_c01237{left:413.887453pt;}
.x45_c01237{left:415.735453pt;}
.x1e_c01237{left:424.465053pt;}
.x19_c01237{left:434.285853pt;}
.xd_c01237{left:435.385853pt;}
.x46_c01237{left:443.948253pt;}
.x2e_c01237{left:445.347453pt;}
.x42_c01237{left:454.380653pt;}
.x2f_c01237{left:455.388253pt;}
.x47_c01237{left:483.631853pt;}
.x23_c01237{left:484.833053pt;}
.x4d_c01237{left:502.037053pt;}
.x30_c01237{left:504.034653pt;}
.x24_c01237{left:512.548653pt;}
.x1a_c01237{left:513.780653pt;}
.x34_c01237{left:522.532253pt;}
.xe_c01237{left:534.262653pt;}
.x43_c01237{left:562.246653pt;}
.x31_c01237{left:571.768253pt;}
.x3e_c01237{left:572.991453pt;}
.x4e_c01237{left:580.959853pt;}
.x39_c01237{left:590.714653pt;}
.x1b_c01237{left:592.289853pt;}
.x25_c01237{left:594.379853pt;}
.x53_c01237{left:599.387053pt;}
.x2_c01237{left:602.634253pt;}
.x59_c01237{left:610.435453pt;}
.x1c_c01237{left:622.099853pt;}
.x48_c01237{left:623.754253pt;}
.x3_c01237{left:631.137453pt;}
.x4_c01237{left:632.800653pt;}
.x28_c01237{left:637.482253pt;}
.x49_c01237{left:639.532653pt;}
}





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

.ir_c01238:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01238{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01238;src:url('chunks/assets/font_dcc1ef4012e89717319e3d63.woff2')format("woff");}.ff1_c01238{font-family:ff1_c01238;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01238;src:url('chunks/assets/font_d3ed0db326181ee2c96cec44.woff2')format("woff");}.ff2_c01238{font-family:ff2_c01238;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01238;src:url('chunks/assets/font_f6b0051c50fcdf723492db68.woff2')format("woff");}.ff3_c01238{font-family:ff3_c01238;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01238;src:url('chunks/assets/font_6e2a890734d925a249ce0053.woff2')format("woff");}.ff4_c01238{font-family:ff4_c01238;line-height:0.666000;font-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_c01238{transform:matrix(0.105699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105699,0.000000,0.000000,0.250000,0,0);}
.m60_c01238{transform:matrix(0.139880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139880,0.000000,0.000000,0.250000,0,0);}
.m5e_c01238{transform:matrix(0.160715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160715,0.000000,0.000000,0.250000,0,0);}
.m5f_c01238{transform:matrix(0.166666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166666,0.000000,0.000000,0.250000,0,0);}
.m5c_c01238{transform:matrix(0.175595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175595,0.000000,0.000000,0.250000,0,0);}
.m5d_c01238{transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);}
.m59_c01238{transform:matrix(0.221243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221243,0.000000,0.000000,0.250000,0,0);}
.me_c01238{transform:matrix(0.223063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223063,0.000000,0.000000,0.250000,0,0);}
.m1c_c01238{transform:matrix(0.235924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235924,0.000000,0.000000,0.250000,0,0);}
.m28_c01238{transform:matrix(0.238936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238936,0.000000,0.000000,0.250000,0,0);}
.m5a_c01238{transform:matrix(0.242083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242083,0.000000,0.000000,0.250000,0,0);}
.m8_c01238{transform:matrix(0.243265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243265,0.000000,0.000000,0.250000,0,0);}
.m38_c01238{transform:matrix(0.244729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244729,0.000000,0.000000,0.250000,0,0);}
.m2_c01238{transform:matrix(0.247276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247276,0.000000,0.000000,0.250000,0,0);}
.m1_c01238{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m50_c01238{transform:matrix(0.250766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250766,0.000000,0.000000,0.250000,0,0);}
.m1e_c01238{transform:matrix(0.251593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251593,0.000000,0.000000,0.250000,0,0);}
.m3e_c01238{transform:matrix(0.256896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256896,0.000000,0.000000,0.250000,0,0);}
.m37_c01238{transform:matrix(0.267802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267802,0.000000,0.000000,0.250000,0,0);}
.m41_c01238{transform:matrix(0.269670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269670,0.000000,0.000000,0.250000,0,0);}
.m64_c01238{transform:matrix(0.269888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269888,0.000000,0.000000,0.250000,0,0);}
.m5_c01238{transform:matrix(0.270182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270182,0.000000,0.000000,0.250000,0,0);}
.m52_c01238{transform:matrix(0.270557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270557,0.000000,0.000000,0.250000,0,0);}
.m55_c01238{transform:matrix(0.272710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272710,0.000000,0.000000,0.250000,0,0);}
.m18_c01238{transform:matrix(0.272932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272932,0.000000,0.000000,0.250000,0,0);}
.m2c_c01238{transform:matrix(0.273900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273900,0.000000,0.000000,0.250000,0,0);}
.m6a_c01238{transform:matrix(0.274676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274676,0.000000,0.000000,0.250000,0,0);}
.m20_c01238{transform:matrix(0.275681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275681,0.000000,0.000000,0.250000,0,0);}
.m57_c01238{transform:matrix(0.275965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275965,0.000000,0.000000,0.250000,0,0);}
.m12_c01238{transform:matrix(0.276465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276465,0.000000,0.000000,0.250000,0,0);}
.m4_c01238{transform:matrix(0.278263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278263,0.000000,0.000000,0.250000,0,0);}
.m3f_c01238{transform:matrix(0.278418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278418,0.000000,0.000000,0.250000,0,0);}
.m23_c01238{transform:matrix(0.279706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279706,0.000000,0.000000,0.250000,0,0);}
.m3b_c01238{transform:matrix(0.282394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282394,0.000000,0.000000,0.250000,0,0);}
.md_c01238{transform:matrix(0.282481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282481,0.000000,0.000000,0.250000,0,0);}
.m40_c01238{transform:matrix(0.282916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282916,0.000000,0.000000,0.250000,0,0);}
.m5b_c01238{transform:matrix(0.285232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285232,0.000000,0.000000,0.250000,0,0);}
.m66_c01238{transform:matrix(0.285971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285971,0.000000,0.000000,0.250000,0,0);}
.m3a_c01238{transform:matrix(0.286347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286347,0.000000,0.000000,0.250000,0,0);}
.m39_c01238{transform:matrix(0.286868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286868,0.000000,0.000000,0.250000,0,0);}
.ma_c01238{transform:matrix(0.287014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287014,0.000000,0.000000,0.250000,0,0);}
.m2a_c01238{transform:matrix(0.287441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287441,0.000000,0.000000,0.250000,0,0);}
.m6b_c01238{transform:matrix(0.287497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287497,0.000000,0.000000,0.250000,0,0);}
.m56_c01238{transform:matrix(0.289210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289210,0.000000,0.000000,0.250000,0,0);}
.m19_c01238{transform:matrix(0.289261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289261,0.000000,0.000000,0.250000,0,0);}
.m6e_c01238{transform:matrix(0.289345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289345,0.000000,0.000000,0.250000,0,0);}
.m26_c01238{transform:matrix(0.290708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290708,0.000000,0.000000,0.250000,0,0);}
.mb_c01238{transform:matrix(0.290740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290740,0.000000,0.000000,0.250000,0,0);}
.m1b_c01238{transform:matrix(0.291368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291368,0.000000,0.000000,0.250000,0,0);}
.m3_c01238{transform:matrix(0.293059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293059,0.000000,0.000000,0.250000,0,0);}
.m65_c01238{transform:matrix(0.293073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293073,0.000000,0.000000,0.250000,0,0);}
.m48_c01238{transform:matrix(0.293391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293391,0.000000,0.000000,0.250000,0,0);}
.m24_c01238{transform:matrix(0.293778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293778,0.000000,0.000000,0.250000,0,0);}
.m27_c01238{transform:matrix(0.295380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295380,0.000000,0.000000,0.250000,0,0);}
.m0_c01238{transform:matrix(0.297270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297270,0.000000,0.000000,0.250000,0,0);}
.m43_c01238{transform:matrix(0.298285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298285,0.000000,0.000000,0.250000,0,0);}
.m69_c01238{transform:matrix(0.298617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298617,0.000000,0.000000,0.250000,0,0);}
.m16_c01238{transform:matrix(0.299249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299249,0.000000,0.000000,0.250000,0,0);}
.m22_c01238{transform:matrix(0.300148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300148,0.000000,0.000000,0.250000,0,0);}
.m4e_c01238{transform:matrix(0.300253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300253,0.000000,0.000000,0.250000,0,0);}
.m3d_c01238{transform:matrix(0.300803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300803,0.000000,0.000000,0.250000,0,0);}
.m36_c01238{transform:matrix(0.302073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302073,0.000000,0.000000,0.250000,0,0);}
.m17_c01238{transform:matrix(0.304247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304247,0.000000,0.000000,0.250000,0,0);}
.m25_c01238{transform:matrix(0.305591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305591,0.000000,0.000000,0.250000,0,0);}
.m10_c01238{transform:matrix(0.306098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306098,0.000000,0.000000,0.250000,0,0);}
.m35_c01238{transform:matrix(0.306504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306504,0.000000,0.000000,0.250000,0,0);}
.mc_c01238{transform:matrix(0.307417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307417,0.000000,0.000000,0.250000,0,0);}
.m47_c01238{transform:matrix(0.307522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307522,0.000000,0.000000,0.250000,0,0);}
.m62_c01238{transform:matrix(0.308660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308660,0.000000,0.000000,0.250000,0,0);}
.m6d_c01238{transform:matrix(0.310382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310382,0.000000,0.000000,0.250000,0,0);}
.m45_c01238{transform:matrix(0.310962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310962,0.000000,0.000000,0.250000,0,0);}
.m11_c01238{transform:matrix(0.311411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311411,0.000000,0.000000,0.250000,0,0);}
.m54_c01238{transform:matrix(0.312777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312777,0.000000,0.000000,0.250000,0,0);}
.m63_c01238{transform:matrix(0.313246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313246,0.000000,0.000000,0.250000,0,0);}
.m3c_c01238{transform:matrix(0.314083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314083,0.000000,0.000000,0.250000,0,0);}
.m53_c01238{transform:matrix(0.315644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315644,0.000000,0.000000,0.250000,0,0);}
.m49_c01238{transform:matrix(0.316437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316437,0.000000,0.000000,0.250000,0,0);}
.m51_c01238{transform:matrix(0.318301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318301,0.000000,0.000000,0.250000,0,0);}
.m58_c01238{transform:matrix(0.318660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318660,0.000000,0.000000,0.250000,0,0);}
.m2b_c01238{transform:matrix(0.319764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319764,0.000000,0.000000,0.250000,0,0);}
.m13_c01238{transform:matrix(0.319812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319812,0.000000,0.000000,0.250000,0,0);}
.m67_c01238{transform:matrix(0.322625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322625,0.000000,0.000000,0.250000,0,0);}
.m1a_c01238{transform:matrix(0.322752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322752,0.000000,0.000000,0.250000,0,0);}
.m34_c01238{transform:matrix(0.325075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325075,0.000000,0.000000,0.250000,0,0);}
.m1d_c01238{transform:matrix(0.326123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326123,0.000000,0.000000,0.250000,0,0);}
.m7_c01238{transform:matrix(0.326283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326283,0.000000,0.000000,0.250000,0,0);}
.m68_c01238{transform:matrix(0.327037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327037,0.000000,0.000000,0.250000,0,0);}
.m29_c01238{transform:matrix(0.327283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327283,0.000000,0.000000,0.250000,0,0);}
.m33_c01238{transform:matrix(0.327452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327452,0.000000,0.000000,0.250000,0,0);}
.m6_c01238{transform:matrix(0.328732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328732,0.000000,0.000000,0.250000,0,0);}
.m4c_c01238{transform:matrix(0.330252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330252,0.000000,0.000000,0.250000,0,0);}
.m4f_c01238{transform:matrix(0.332698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332698,0.000000,0.000000,0.250000,0,0);}
.m2f_c01238{transform:matrix(0.333047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333047,0.000000,0.000000,0.250000,0,0);}
.m6c_c01238{transform:matrix(0.333501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333501,0.000000,0.000000,0.250000,0,0);}
.m44_c01238{transform:matrix(0.335612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335612,0.000000,0.000000,0.250000,0,0);}
.m46_c01238{transform:matrix(0.338135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338135,0.000000,0.000000,0.250000,0,0);}
.m9_c01238{transform:matrix(0.339835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339835,0.000000,0.000000,0.250000,0,0);}
.m15_c01238{transform:matrix(0.340746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340746,0.000000,0.000000,0.250000,0,0);}
.mf_c01238{transform:matrix(0.341382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341382,0.000000,0.000000,0.250000,0,0);}
.m1f_c01238{transform:matrix(0.342139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342139,0.000000,0.000000,0.250000,0,0);}
.m4a_c01238{transform:matrix(0.342627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342627,0.000000,0.000000,0.250000,0,0);}
.m4d_c01238{transform:matrix(0.343556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343556,0.000000,0.000000,0.250000,0,0);}
.m2e_c01238{transform:matrix(0.343986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343986,0.000000,0.000000,0.250000,0,0);}
.m31_c01238{transform:matrix(0.348344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348344,0.000000,0.000000,0.250000,0,0);}
.m30_c01238{transform:matrix(0.349982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349982,0.000000,0.000000,0.250000,0,0);}
.m21_c01238{transform:matrix(0.350196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350196,0.000000,0.000000,0.250000,0,0);}
.m32_c01238{transform:matrix(0.358390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358390,0.000000,0.000000,0.250000,0,0);}
.m2d_c01238{transform:matrix(0.362851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362851,0.000000,0.000000,0.250000,0,0);}
.m4b_c01238{transform:matrix(0.384589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384589,0.000000,0.000000,0.250000,0,0);}
.m61_c01238{transform:matrix(0.427135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427135,0.000000,0.000000,0.250000,0,0);}
.m14_c01238{transform:matrix(0.439906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439906,0.000000,0.000000,0.250000,0,0);}
.v0_c01238{vertical-align:0.000000px;}
.ls2_c01238{letter-spacing:-2.591827px;}
.lsa_c01238{letter-spacing:-2.303023px;}
.ls5_c01238{letter-spacing:-2.066056px;}
.ls9_c01238{letter-spacing:-1.774080px;}
.ls1_c01238{letter-spacing:0.000000px;}
.lsc_c01238{letter-spacing:0.933137px;}
.ls6_c01238{letter-spacing:2.043841px;}
.ls7_c01238{letter-spacing:3.474900px;}
.ls3_c01238{letter-spacing:3.484810px;}
.ls4_c01238{letter-spacing:3.510074px;}
.ls0_c01238{letter-spacing:3.702610px;}
.ls8_c01238{letter-spacing:4.197610px;}
.lsb_c01238{letter-spacing:59.875398px;}
.sc__c01238{text-shadow:none;}
.sc0_c01238{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01238{-webkit-text-stroke:0px transparent;}
.sc0_c01238{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01238{word-spacing:-18.513050px;}
.ws0_c01238{word-spacing:-16.446993px;}
.ws2_c01238{word-spacing:0.000000px;}
._1_c01238{margin-left:-12.070531px;}
._0_c01238{margin-left:-1.880855px;}
._2_c01238{width:3.659832px;}
.fc0_c01238{color:transparent;}
.fs3_c01238{font-size:22.176000px;}
.fs8_c01238{font-size:25.740000px;}
.fs7_c01238{font-size:26.928000px;}
.fs1_c01238{font-size:33.264000px;}
.fsd_c01238{font-size:50.292000px;}
.fs9_c01238{font-size:50.688000px;}
.fsb_c01238{font-size:59.875398px;}
.fsc_c01238{font-size:68.112198px;}
.fs5_c01238{font-size:69.498000px;}
.fs2_c01238{font-size:69.696198px;}
.fs0_c01238{font-size:74.052198px;}
.fsa_c01238{font-size:74.448000px;}
.fs4_c01238{font-size:79.200000px;}
.fs6_c01238{font-size:83.952198px;}
.y0_c01238{bottom:0.000000px;}
.y1_c01238{bottom:76.500000px;}
.y19_c01238{bottom:122.869935px;}
.y18_c01238{bottom:155.302335px;}
.y17_c01238{bottom:219.805785px;}
.y16_c01238{bottom:251.530335px;}
.y15_c01238{bottom:314.969535px;}
.y14_c01238{bottom:345.976335px;}
.y13_c01238{bottom:409.766985px;}
.y1a_c01238{bottom:446.832585px;}
.y12_c01238{bottom:473.211135px;}
.y11_c01238{bottom:505.643535px;}
.y10_c01238{bottom:529.165935px;}
.yf_c01238{bottom:537.358185px;}
.ye_c01238{bottom:568.721385px;}
.yc_c01238{bottom:600.802335px;}
.yd_c01238{bottom:601.871535px;}
.yb_c01238{bottom:632.160585px;}
.ya_c01238{bottom:695.961135px;}
.y9_c01238{bottom:728.393535px;}
.y8_c01238{bottom:792.189135px;}
.y7_c01238{bottom:824.260185px;}
.y6_c01238{bottom:874.161135px;}
.y5_c01238{bottom:886.991535px;}
.y4_c01238{bottom:919.062585px;}
.y3_c01238{bottom:1034.536185px;}
.y2_c01238{bottom:1055.563785px;}
.h5_c01238{height:23.128875px;}
.h9_c01238{height:28.085063px;}
.h3_c01238{height:34.693313px;}
.hc_c01238{height:39.877015px;}
.he_c01238{height:49.358848px;}
.ha_c01238{height:52.866000px;}
.hd_c01238{height:66.848397px;}
.h7_c01238{height:68.174552px;}
.h4_c01238{height:68.403007px;}
.h2_c01238{height:72.678183px;}
.hb_c01238{height:73.066641px;}
.h6_c01238{height:77.730469px;}
.h8_c01238{height:82.353499px;}
.h1_c01238{height:1110.000000px;}
.h0_c01238{height:1263.000000px;}
.w1_c01238{width:775.500000px;}
.w0_c01238{width:892.500000px;}
.x0_c01238{left:0.000000px;}
.x1_c01238{left:58.500000px;}
.x45_c01238{left:100.323285px;}
.x20_c01238{left:101.397435px;}
.x4_c01238{left:102.466635px;}
.x21_c01238{left:158.188785px;}
.x11_c01238{left:162.064635px;}
.x4e_c01238{left:178.439235px;}
.x35_c01238{left:179.513385px;}
.x40_c01238{left:190.546935px;}
.x29_c01238{left:200.778585px;}
.x4d_c01238{left:210.871635px;}
.xe_c01238{left:212.005185px;}
.x19_c01238{left:213.212985px;}
.x5_c01238{left:224.053485px;}
.x12_c01238{left:225.766185px;}
.x41_c01238{left:234.700935px;}
.x4f_c01238{left:245.427585px;}
.x2a_c01238{left:248.699535px;}
.x36_c01238{left:256.471035px;}
.x1a_c01238{left:257.965935px;}
.x22_c01238{left:259.639035px;}
.x30_c01238{left:268.499535px;}
.xf_c01238{left:279.028185px;}
.x13_c01238{left:280.839885px;}
.x6_c01238{left:290.329035px;}
.x2b_c01238{left:292.244685px;}
.x46_c01238{left:301.649685px;}
.x23_c01238{left:313.341585px;}
.x31_c01238{left:324.191985px;}
.x10_c01238{left:326.147235px;}
.x1b_c01238{left:333.463335px;}
.x51_c01238{left:334.532535px;}
.x3b_c01238{left:336.997635px;}
.x34_c01238{left:338.027235px;}
.x3c_c01238{left:345.665085px;}
.x14_c01238{left:355.560135px;}
.x3d_c01238{left:367.375785px;}
.x7_c01238{left:370.073535px;}
.x42_c01238{left:378.721185px;}
.x2c_c01238{left:380.067585px;}
.x37_c01238{left:390.982335px;}
.x24_c01238{left:400.120035px;}
.x49_c01238{left:402.367335px;}
.x8_c01238{left:413.341485px;}
.x26_c01238{left:414.915585px;}
.x32_c01238{left:423.281085px;}
.x4a_c01238{left:425.533335px;}
.x1c_c01238{left:435.522435px;}
.x4b_c01238{left:436.581735px;}
.x9_c01238{left:457.455885px;}
.x43_c01238{left:467.474685px;}
.x1d_c01238{left:468.548835px;}
.x3e_c01238{left:489.432885px;}
.x15_c01238{left:491.982135px;}
.x4c_c01238{left:500.639685px;}
.x27_c01238{left:502.179135px;}
.x16_c01238{left:512.376135px;}
.x47_c01238{left:534.463035px;}
.x50_c01238{left:543.749235px;}
.x28_c01238{left:545.224335px;}
.x2d_c01238{left:556.287585px;}
.x1e_c01238{left:568.325985px;}
.xa_c01238{left:578.498235px;}
.x48_c01238{left:579.805035px;}
.x44_c01238{left:589.071435px;}
.x38_c01238{left:590.343585px;}
.xb_c01238{left:600.817785px;}
.x33_c01238{left:612.979935px;}
.x39_c01238{left:623.122485px;}
.x25_c01238{left:632.849235px;}
.x1f_c01238{left:644.313435px;}
.x3_c01238{left:649.931685px;}
.x3f_c01238{left:655.297485px;}
.xc_c01238{left:656.366685px;}
.x3a_c01238{left:668.231835px;}
.x2e_c01238{left:677.824935px;}
.x2_c01238{left:688.640685px;}
.x17_c01238{left:700.416735px;}
.x2f_c01238{left:702.074985px;}
.xd_c01238{left:723.622335px;}
.x18_c01238{left:734.789535px;}
.x52_c01238{left:762.123435px;}
@media print{
.v0_c01238{vertical-align:0.000000pt;}
.ls2_c01238{letter-spacing:-2.303846pt;}
.lsa_c01238{letter-spacing:-2.047132pt;}
.ls5_c01238{letter-spacing:-1.836495pt;}
.ls9_c01238{letter-spacing:-1.576960pt;}
.ls1_c01238{letter-spacing:0.000000pt;}
.lsc_c01238{letter-spacing:0.829455pt;}
.ls6_c01238{letter-spacing:1.816747pt;}
.ls7_c01238{letter-spacing:3.088800pt;}
.ls3_c01238{letter-spacing:3.097609pt;}
.ls4_c01238{letter-spacing:3.120066pt;}
.ls0_c01238{letter-spacing:3.291209pt;}
.ls8_c01238{letter-spacing:3.731209pt;}
.lsb_c01238{letter-spacing:53.222576pt;}
.ws1_c01238{word-spacing:-16.456044pt;}
.ws0_c01238{word-spacing:-14.619549pt;}
.ws2_c01238{word-spacing:0.000000pt;}
._1_c01238{margin-left:-10.729361pt;}
._0_c01238{margin-left:-1.671871pt;}
._2_c01238{width:3.253184pt;}
.fs3_c01238{font-size:19.712000pt;}
.fs8_c01238{font-size:22.880000pt;}
.fs7_c01238{font-size:23.936000pt;}
.fs1_c01238{font-size:29.568000pt;}
.fsd_c01238{font-size:44.704000pt;}
.fs9_c01238{font-size:45.056000pt;}
.fsb_c01238{font-size:53.222576pt;}
.fsc_c01238{font-size:60.544176pt;}
.fs5_c01238{font-size:61.776000pt;}
.fs2_c01238{font-size:61.952176pt;}
.fs0_c01238{font-size:65.824176pt;}
.fsa_c01238{font-size:66.176000pt;}
.fs4_c01238{font-size:70.400000pt;}
.fs6_c01238{font-size:74.624176pt;}
.y0_c01238{bottom:0.000000pt;}
.y1_c01238{bottom:68.000000pt;}
.y19_c01238{bottom:109.217720pt;}
.y18_c01238{bottom:138.046520pt;}
.y17_c01238{bottom:195.382920pt;}
.y16_c01238{bottom:223.582520pt;}
.y15_c01238{bottom:279.972920pt;}
.y14_c01238{bottom:307.534520pt;}
.y13_c01238{bottom:364.237320pt;}
.y1a_c01238{bottom:397.184520pt;}
.y12_c01238{bottom:420.632120pt;}
.y11_c01238{bottom:449.460920pt;}
.y10_c01238{bottom:470.369720pt;}
.yf_c01238{bottom:477.651720pt;}
.ye_c01238{bottom:505.530120pt;}
.yc_c01238{bottom:534.046520pt;}
.yd_c01238{bottom:534.996920pt;}
.yb_c01238{bottom:561.920520pt;}
.ya_c01238{bottom:618.632120pt;}
.y9_c01238{bottom:647.460920pt;}
.y8_c01238{bottom:704.168120pt;}
.y7_c01238{bottom:732.675720pt;}
.y6_c01238{bottom:777.032120pt;}
.y5_c01238{bottom:788.436920pt;}
.y4_c01238{bottom:816.944520pt;}
.y3_c01238{bottom:919.587720pt;}
.y2_c01238{bottom:938.278920pt;}
.h5_c01238{height:20.559000pt;}
.h9_c01238{height:24.964500pt;}
.h3_c01238{height:30.838500pt;}
.hc_c01238{height:35.446236pt;}
.he_c01238{height:43.874531pt;}
.ha_c01238{height:46.992000pt;}
.hd_c01238{height:59.420798pt;}
.h7_c01238{height:60.599602pt;}
.h4_c01238{height:60.802673pt;}
.h2_c01238{height:64.602829pt;}
.hb_c01238{height:64.948125pt;}
.h6_c01238{height:69.093750pt;}
.h8_c01238{height:73.203110pt;}
.h1_c01238{height:986.666667pt;}
.h0_c01238{height:1122.666667pt;}
.w1_c01238{width:689.333333pt;}
.w0_c01238{width:793.333333pt;}
.x0_c01238{left:0.000000pt;}
.x1_c01238{left:52.000000pt;}
.x45_c01238{left:89.176253pt;}
.x20_c01238{left:90.131053pt;}
.x4_c01238{left:91.081453pt;}
.x21_c01238{left:140.612253pt;}
.x11_c01238{left:144.057453pt;}
.x4e_c01238{left:158.612653pt;}
.x35_c01238{left:159.567453pt;}
.x40_c01238{left:169.375053pt;}
.x29_c01238{left:178.469853pt;}
.x4d_c01238{left:187.441453pt;}
.xe_c01238{left:188.449053pt;}
.x19_c01238{left:189.522653pt;}
.x5_c01238{left:199.158653pt;}
.x12_c01238{left:200.681053pt;}
.x41_c01238{left:208.623053pt;}
.x4f_c01238{left:218.157853pt;}
.x2a_c01238{left:221.066253pt;}
.x36_c01238{left:227.974253pt;}
.x1a_c01238{left:229.303053pt;}
.x22_c01238{left:230.790253pt;}
.x30_c01238{left:238.666253pt;}
.xf_c01238{left:248.025053pt;}
.x13_c01238{left:249.635453pt;}
.x6_c01238{left:258.070253pt;}
.x2b_c01238{left:259.773053pt;}
.x46_c01238{left:268.133053pt;}
.x23_c01238{left:278.525853pt;}
.x31_c01238{left:288.170653pt;}
.x10_c01238{left:289.908653pt;}
.x1b_c01238{left:296.411853pt;}
.x51_c01238{left:297.362253pt;}
.x3b_c01238{left:299.553453pt;}
.x34_c01238{left:300.468653pt;}
.x3c_c01238{left:307.257853pt;}
.x14_c01238{left:316.053453pt;}
.x3d_c01238{left:326.556253pt;}
.x7_c01238{left:328.954253pt;}
.x42_c01238{left:336.641053pt;}
.x2c_c01238{left:337.837853pt;}
.x37_c01238{left:347.539853pt;}
.x24_c01238{left:355.662253pt;}
.x49_c01238{left:357.659853pt;}
.x8_c01238{left:367.414653pt;}
.x26_c01238{left:368.813853pt;}
.x32_c01238{left:376.249853pt;}
.x4a_c01238{left:378.251853pt;}
.x1c_c01238{left:387.131053pt;}
.x4b_c01238{left:388.072653pt;}
.x9_c01238{left:406.627453pt;}
.x43_c01238{left:415.533053pt;}
.x1d_c01238{left:416.487853pt;}
.x3e_c01238{left:435.051453pt;}
.x15_c01238{left:437.317453pt;}
.x4c_c01238{left:445.013053pt;}
.x27_c01238{left:446.381453pt;}
.x16_c01238{left:455.445453pt;}
.x47_c01238{left:475.078253pt;}
.x50_c01238{left:483.332653pt;}
.x28_c01238{left:484.643853pt;}
.x2d_c01238{left:494.477853pt;}
.x1e_c01238{left:505.178653pt;}
.xa_c01238{left:514.220653pt;}
.x48_c01238{left:515.382253pt;}
.x44_c01238{left:523.619053pt;}
.x38_c01238{left:524.749853pt;}
.xb_c01238{left:534.060253pt;}
.x33_c01238{left:544.871053pt;}
.x39_c01238{left:553.886653pt;}
.x25_c01238{left:562.532653pt;}
.x1f_c01238{left:572.723053pt;}
.x3_c01238{left:577.717053pt;}
.x3f_c01238{left:582.486653pt;}
.xc_c01238{left:583.437053pt;}
.x3a_c01238{left:593.983853pt;}
.x2e_c01238{left:602.511053pt;}
.x2_c01238{left:612.125053pt;}
.x17_c01238{left:622.592653pt;}
.x2f_c01238{left:624.066653pt;}
.xd_c01238{left:643.219853pt;}
.x18_c01238{left:653.146253pt;}
.x52_c01238{left:677.443053pt;}
}





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

.ir_c01239:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01239{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01239;src:url('chunks/assets/font_087653d4ad95e7d8093560ef.woff2')format("woff");}.ff1_c01239{font-family:ff1_c01239;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01239;src:url('chunks/assets/font_cf287423e62c95eb094bd8c7.woff2')format("woff");}.ff2_c01239{font-family:ff2_c01239;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01239;src:url('chunks/assets/font_619546a9b94ad6f7381937d7.woff2')format("woff");}.ff3_c01239{font-family:ff3_c01239;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01239;src:url('chunks/assets/font_5df79a26146cf6148234e575.woff2')format("woff");}.ff4_c01239{font-family:ff4_c01239;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01239;src:url('chunks/assets/font_b0fc52c8023985008f530cda.woff2')format("woff");}.ff5_c01239{font-family:ff5_c01239;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01239;src:url('chunks/assets/font_a2cd29441b06845eefb7c0d7.woff2')format("woff");}.ff6_c01239{font-family:ff6_c01239;line-height:1.435059;font-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_c01239{transform:matrix(0.128713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128713,0.000000,0.000000,0.250000,0,0);}
.m2f_c01239{transform:matrix(0.180233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180233,0.000000,0.000000,0.250000,0,0);}
.mc_c01239{transform:matrix(0.182164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182164,0.000000,0.000000,0.250000,0,0);}
.m58_c01239{transform:matrix(0.191390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191390,0.000000,0.000000,0.250000,0,0);}
.m59_c01239{transform:matrix(0.205678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205678,0.000000,0.000000,0.250000,0,0);}
.m26_c01239{transform:matrix(0.216539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216539,0.000000,0.000000,0.250000,0,0);}
.m36_c01239{transform:matrix(0.218429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218429,0.000000,0.000000,0.250000,0,0);}
.m35_c01239{transform:matrix(0.218867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218867,0.000000,0.000000,0.250000,0,0);}
.m14_c01239{transform:matrix(0.231867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231867,0.000000,0.000000,0.250000,0,0);}
.m1c_c01239{transform:matrix(0.235863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235863,0.000000,0.000000,0.250000,0,0);}
.m52_c01239{transform:matrix(0.236073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236073,0.000000,0.000000,0.250000,0,0);}
.m12_c01239{transform:matrix(0.236323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236323,0.000000,0.000000,0.250000,0,0);}
.m57_c01239{transform:matrix(0.236812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236812,0.000000,0.000000,0.250000,0,0);}
.m71_c01239{transform:matrix(0.237439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237439,0.000000,0.000000,0.250000,0,0);}
.m66_c01239{transform:matrix(0.237563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237563,0.000000,0.000000,0.250000,0,0);}
.m33_c01239{transform:matrix(0.239167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239167,0.000000,0.000000,0.250000,0,0);}
.m9_c01239{transform:matrix(0.244114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244114,0.000000,0.000000,0.250000,0,0);}
.m3_c01239{transform:matrix(0.244613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244613,0.000000,0.000000,0.250000,0,0);}
.m1e_c01239{transform:matrix(0.247656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247656,0.000000,0.000000,0.250000,0,0);}
.m27_c01239{transform:matrix(0.249759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249759,0.000000,0.000000,0.250000,0,0);}
.m0_c01239{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m47_c01239{transform:matrix(0.251592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251592,0.000000,0.000000,0.250000,0,0);}
.m49_c01239{transform:matrix(0.254181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254181,0.000000,0.000000,0.250000,0,0);}
.m31_c01239{transform:matrix(0.256723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256723,0.000000,0.000000,0.250000,0,0);}
.m3f_c01239{transform:matrix(0.257986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257986,0.000000,0.000000,0.250000,0,0);}
.m51_c01239{transform:matrix(0.259640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259640,0.000000,0.000000,0.250000,0,0);}
.m73_c01239{transform:matrix(0.260578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260578,0.000000,0.000000,0.250000,0,0);}
.m64_c01239{transform:matrix(0.264674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264674,0.000000,0.000000,0.250000,0,0);}
.m29_c01239{transform:matrix(0.265739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265739,0.000000,0.000000,0.250000,0,0);}
.m48_c01239{transform:matrix(0.265747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265747,0.000000,0.000000,0.250000,0,0);}
.m54_c01239{transform:matrix(0.265996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265996,0.000000,0.000000,0.250000,0,0);}
.m2_c01239{transform:matrix(0.266937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266937,0.000000,0.000000,0.250000,0,0);}
.m19_c01239{transform:matrix(0.270357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270357,0.000000,0.000000,0.250000,0,0);}
.m6_c01239{transform:matrix(0.270510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270510,0.000000,0.000000,0.250000,0,0);}
.m43_c01239{transform:matrix(0.272320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272320,0.000000,0.000000,0.250000,0,0);}
.m7a_c01239{transform:matrix(0.273075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273075,0.000000,0.000000,0.250000,0,0);}
.m41_c01239{transform:matrix(0.273933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273933,0.000000,0.000000,0.250000,0,0);}
.m38_c01239{transform:matrix(0.274844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274844,0.000000,0.000000,0.250000,0,0);}
.m1a_c01239{transform:matrix(0.276124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276124,0.000000,0.000000,0.250000,0,0);}
.m72_c01239{transform:matrix(0.276551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276551,0.000000,0.000000,0.250000,0,0);}
.m13_c01239{transform:matrix(0.276862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276862,0.000000,0.000000,0.250000,0,0);}
.m76_c01239{transform:matrix(0.278761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278761,0.000000,0.000000,0.250000,0,0);}
.m74_c01239{transform:matrix(0.279922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279922,0.000000,0.000000,0.250000,0,0);}
.m1b_c01239{transform:matrix(0.280008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280008,0.000000,0.000000,0.250000,0,0);}
.m21_c01239{transform:matrix(0.281807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281807,0.000000,0.000000,0.250000,0,0);}
.m37_c01239{transform:matrix(0.283563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283563,0.000000,0.000000,0.250000,0,0);}
.m8_c01239{transform:matrix(0.284374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284374,0.000000,0.000000,0.250000,0,0);}
.m7c_c01239{transform:matrix(0.284380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284380,0.000000,0.000000,0.250000,0,0);}
.m16_c01239{transform:matrix(0.285447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285447,0.000000,0.000000,0.250000,0,0);}
.m7_c01239{transform:matrix(0.285778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285778,0.000000,0.000000,0.250000,0,0);}
.m44_c01239{transform:matrix(0.285918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285918,0.000000,0.000000,0.250000,0,0);}
.m30_c01239{transform:matrix(0.286590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286590,0.000000,0.000000,0.250000,0,0);}
.m15_c01239{transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);}
.m6b_c01239{transform:matrix(0.289918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289918,0.000000,0.000000,0.250000,0,0);}
.m22_c01239{transform:matrix(0.290241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290241,0.000000,0.000000,0.250000,0,0);}
.m18_c01239{transform:matrix(0.291732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291732,0.000000,0.000000,0.250000,0,0);}
.m68_c01239{transform:matrix(0.292655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292655,0.000000,0.000000,0.250000,0,0);}
.m4_c01239{transform:matrix(0.293716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293716,0.000000,0.000000,0.250000,0,0);}
.m32_c01239{transform:matrix(0.293852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293852,0.000000,0.000000,0.250000,0,0);}
.m11_c01239{transform:matrix(0.296243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296243,0.000000,0.000000,0.250000,0,0);}
.m5b_c01239{transform:matrix(0.298364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298364,0.000000,0.000000,0.250000,0,0);}
.m17_c01239{transform:matrix(0.298718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298718,0.000000,0.000000,0.250000,0,0);}
.m2d_c01239{transform:matrix(0.300689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300689,0.000000,0.000000,0.250000,0,0);}
.m42_c01239{transform:matrix(0.300989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300989,0.000000,0.000000,0.250000,0,0);}
.mb_c01239{transform:matrix(0.301503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301503,0.000000,0.000000,0.250000,0,0);}
.m1d_c01239{transform:matrix(0.303716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303716,0.000000,0.000000,0.250000,0,0);}
.m4d_c01239{transform:matrix(0.303967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303967,0.000000,0.000000,0.250000,0,0);}
.m1_c01239{transform:matrix(0.304428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304428,0.000000,0.000000,0.250000,0,0);}
.m5_c01239{transform:matrix(0.305676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305676,0.000000,0.000000,0.250000,0,0);}
.m62_c01239{transform:matrix(0.306633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306633,0.000000,0.000000,0.250000,0,0);}
.m65_c01239{transform:matrix(0.308835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308835,0.000000,0.000000,0.250000,0,0);}
.m2a_c01239{transform:matrix(0.309805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309805,0.000000,0.000000,0.250000,0,0);}
.m5a_c01239{transform:matrix(0.309936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309936,0.000000,0.000000,0.250000,0,0);}
.m4a_c01239{transform:matrix(0.310003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310003,0.000000,0.000000,0.250000,0,0);}
.m10_c01239{transform:matrix(0.310686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310686,0.000000,0.000000,0.250000,0,0);}
.m70_c01239{transform:matrix(0.311877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311877,0.000000,0.000000,0.250000,0,0);}
.mf_c01239{transform:matrix(0.313145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313145,0.000000,0.000000,0.250000,0,0);}
.m67_c01239{transform:matrix(0.313764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313764,0.000000,0.000000,0.250000,0,0);}
.m3e_c01239{transform:matrix(0.315056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315056,0.000000,0.000000,0.250000,0,0);}
.m1f_c01239{transform:matrix(0.315507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315507,0.000000,0.000000,0.250000,0,0);}
.m6f_c01239{transform:matrix(0.316291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316291,0.000000,0.000000,0.250000,0,0);}
.m7d_c01239{transform:matrix(0.316866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316866,0.000000,0.000000,0.250000,0,0);}
.m4f_c01239{transform:matrix(0.317670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317670,0.000000,0.000000,0.250000,0,0);}
.m77_c01239{transform:matrix(0.318164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318164,0.000000,0.000000,0.250000,0,0);}
.m23_c01239{transform:matrix(0.319084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319084,0.000000,0.000000,0.250000,0,0);}
.m5f_c01239{transform:matrix(0.319130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319130,0.000000,0.000000,0.250000,0,0);}
.m6a_c01239{transform:matrix(0.319343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319343,0.000000,0.000000,0.250000,0,0);}
.m79_c01239{transform:matrix(0.319399,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319399,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319399,0.000000,0.000000,0.250000,0,0);}
.m50_c01239{transform:matrix(0.319886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319886,0.000000,0.000000,0.250000,0,0);}
.m6d_c01239{transform:matrix(0.320580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320580,0.000000,0.000000,0.250000,0,0);}
.m61_c01239{transform:matrix(0.323678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323678,0.000000,0.000000,0.250000,0,0);}
.m20_c01239{transform:matrix(0.324052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324052,0.000000,0.000000,0.250000,0,0);}
.m56_c01239{transform:matrix(0.324210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324210,0.000000,0.000000,0.250000,0,0);}
.md_c01239{transform:matrix(0.324989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324989,0.000000,0.000000,0.250000,0,0);}
.m4c_c01239{transform:matrix(0.325715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325715,0.000000,0.000000,0.250000,0,0);}
.m39_c01239{transform:matrix(0.326899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326899,0.000000,0.000000,0.250000,0,0);}
.m2e_c01239{transform:matrix(0.327786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327786,0.000000,0.000000,0.250000,0,0);}
.m5c_c01239{transform:matrix(0.328255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328255,0.000000,0.000000,0.250000,0,0);}
.m2c_c01239{transform:matrix(0.330882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330882,0.000000,0.000000,0.250000,0,0);}
.m7e_c01239{transform:matrix(0.331932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331932,0.000000,0.000000,0.250000,0,0);}
.m63_c01239{transform:matrix(0.332869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332869,0.000000,0.000000,0.250000,0,0);}
.m24_c01239{transform:matrix(0.333007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333007,0.000000,0.000000,0.250000,0,0);}
.m5e_c01239{transform:matrix(0.342095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342095,0.000000,0.000000,0.250000,0,0);}
.m34_c01239{transform:matrix(0.344103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344103,0.000000,0.000000,0.250000,0,0);}
.me_c01239{transform:matrix(0.345345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345345,0.000000,0.000000,0.250000,0,0);}
.m5d_c01239{transform:matrix(0.346200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346200,0.000000,0.000000,0.250000,0,0);}
.m45_c01239{transform:matrix(0.348778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348778,0.000000,0.000000,0.250000,0,0);}
.m28_c01239{transform:matrix(0.350118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350118,0.000000,0.000000,0.250000,0,0);}
.m75_c01239{transform:matrix(0.353093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353093,0.000000,0.000000,0.250000,0,0);}
.ma_c01239{transform:matrix(0.353401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353401,0.000000,0.000000,0.250000,0,0);}
.m55_c01239{transform:matrix(0.354732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354732,0.000000,0.000000,0.250000,0,0);}
.m3c_c01239{transform:matrix(0.356639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356639,0.000000,0.000000,0.250000,0,0);}
.m60_c01239{transform:matrix(0.359959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359959,0.000000,0.000000,0.250000,0,0);}
.m6c_c01239{transform:matrix(0.363124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363124,0.000000,0.000000,0.250000,0,0);}
.m4b_c01239{transform:matrix(0.364409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364409,0.000000,0.000000,0.250000,0,0);}
.m78_c01239{transform:matrix(0.366775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366775,0.000000,0.000000,0.250000,0,0);}
.m3b_c01239{transform:matrix(0.367566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367566,0.000000,0.000000,0.250000,0,0);}
.m40_c01239{transform:matrix(0.380294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380294,0.000000,0.000000,0.250000,0,0);}
.m25_c01239{transform:matrix(0.388747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388747,0.000000,0.000000,0.250000,0,0);}
.m46_c01239{transform:matrix(0.389861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389861,0.000000,0.000000,0.250000,0,0);}
.m3a_c01239{transform:matrix(0.390143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390143,0.000000,0.000000,0.250000,0,0);}
.m53_c01239{transform:matrix(0.397119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397119,0.000000,0.000000,0.250000,0,0);}
.m3d_c01239{transform:matrix(0.399630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399630,0.000000,0.000000,0.250000,0,0);}
.m2b_c01239{transform:matrix(0.406076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406076,0.000000,0.000000,0.250000,0,0);}
.m4e_c01239{transform:matrix(0.412522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412522,0.000000,0.000000,0.250000,0,0);}
.m69_c01239{transform:matrix(0.418968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418968,0.000000,0.000000,0.250000,0,0);}
.m7b_c01239{transform:matrix(0.433009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433009,0.000000,0.000000,0.250000,0,0);}
.v1_c01239{vertical-align:-21.393900px;}
.v0_c01239{vertical-align:0.000000px;}
.ls14_c01239{letter-spacing:-3.069990px;}
.lsa_c01239{letter-spacing:-2.564100px;}
.ls19_c01239{letter-spacing:-2.549448px;}
.ls20_c01239{letter-spacing:-2.439367px;}
.ls1e_c01239{letter-spacing:-2.344320px;}
.ls1b_c01239{letter-spacing:-1.964794px;}
.lsb_c01239{letter-spacing:-1.406592px;}
.ls8_c01239{letter-spacing:-0.842490px;}
.ls12_c01239{letter-spacing:-0.534798px;}
.ls7_c01239{letter-spacing:0.000000px;}
.ls1d_c01239{letter-spacing:0.673992px;}
.ls15_c01239{letter-spacing:1.010988px;}
.ls3_c01239{letter-spacing:1.113968px;}
.ls4_c01239{letter-spacing:1.587623px;}
.ls1f_c01239{letter-spacing:1.597068px;}
.ls17_c01239{letter-spacing:2.059200px;}
.ls16_c01239{letter-spacing:2.633400px;}
.ls0_c01239{letter-spacing:2.710620px;}
.ls1c_c01239{letter-spacing:2.815619px;}
.lsc_c01239{letter-spacing:3.192790px;}
.lsd_c01239{letter-spacing:3.405610px;}
.ls10_c01239{letter-spacing:3.484810px;}
.ls21_c01239{letter-spacing:3.524400px;}
.lsf_c01239{letter-spacing:3.552417px;}
.ls9_c01239{letter-spacing:3.663000px;}
.ls18_c01239{letter-spacing:3.824330px;}
.ls5_c01239{letter-spacing:3.903273px;}
.ls6_c01239{letter-spacing:4.131329px;}
.ls1a_c01239{letter-spacing:4.148872px;}
.ls1_c01239{letter-spacing:4.262900px;}
.ls13_c01239{letter-spacing:4.385700px;}
.ls2_c01239{letter-spacing:17.763768px;}
.lse_c01239{letter-spacing:58.449798px;}
.ls11_c01239{letter-spacing:61.300998px;}
.sc__c01239{text-shadow:none;}
.sc0_c01239{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01239{-webkit-text-stroke:0px transparent;}
.sc0_c01239{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01239{word-spacing:-26.077372px;}
.ws0_c01239{word-spacing:-18.315000px;}
.ws2_c01239{word-spacing:0.000000px;}
._0_c01239{margin-left:-22.710600px;}
._8_c01239{margin-left:-18.323217px;}
._6_c01239{margin-left:-3.516480px;}
._3_c01239{width:3.882780px;}
._1_c01239{width:6.300360px;}
._a_c01239{width:8.864460px;}
._5_c01239{width:22.637340px;}
._9_c01239{width:24.037200px;}
._4_c01239{width:30.042045px;}
._2_c01239{width:32.673960px;}
._7_c01239{width:39.869280px;}
.fc0_c01239{color:transparent;}
.fs5_c01239{font-size:26.928000px;}
.fsc_c01239{font-size:34.056198px;}
.fs7_c01239{font-size:35.244000px;}
.fsb_c01239{font-size:41.184000px;}
.fsd_c01239{font-size:44.352000px;}
.fsa_c01239{font-size:52.668000px;}
.fs4_c01239{font-size:58.449798px;}
.fs8_c01239{font-size:61.300998px;}
.fs9_c01239{font-size:66.330000px;}
.fs3_c01239{font-size:68.112198px;}
.fs6_c01239{font-size:69.696198px;}
.fsf_c01239{font-size:70.488000px;}
.fs1_c01239{font-size:72.864000px;}
.fs2_c01239{font-size:73.260000px;}
.fse_c01239{font-size:79.200000px;}
.fs0_c01239{font-size:87.714000px;}
.y0_c01239{bottom:0.000000px;}
.y1d_c01239{bottom:65.840985px;}
.y1_c01239{bottom:76.500000px;}
.y1c_c01239{bottom:98.634735px;}
.y1b_c01239{bottom:162.430335px;}
.y1a_c01239{bottom:188.086185px;}
.y19_c01239{bottom:194.506335px;}
.y18_c01239{bottom:228.007935px;}
.y17_c01239{bottom:257.945535px;}
.y16_c01239{bottom:289.660185px;}
.y14_c01239{bottom:352.742985px;}
.y13_c01239{bottom:385.893135px;}
.y15_c01239{bottom:415.474335px;}
.y12_c01239{bottom:448.263135px;}
.y10_c01239{bottom:480.334185px;}
.y11_c01239{bottom:483.546735px;}
.yf_c01239{bottom:512.415135px;}
.ye_c01239{bottom:574.785135px;}
.yc_c01239{bottom:606.856185px;}
.yd_c01239{bottom:612.207135px;}
.yb_c01239{bottom:669.943935px;}
.ya_c01239{bottom:702.732735px;}
.y9_c01239{bottom:720.196335px;}
.y8_c01239{bottom:734.447385px;}
.y7_c01239{bottom:797.535135px;}
.y6_c01239{bottom:828.898335px;}
.y5_c01239{bottom:891.619785px;}
.y4_c01239{bottom:923.339385px;}
.y3_c01239{bottom:1030.259385px;}
.y2_c01239{bottom:1059.484185px;}
.h7_c01239{height:28.085063px;}
.he_c01239{height:35.519550px;}
.h9_c01239{height:36.758391px;}
.h6_c01239{height:38.927565px;}
.ha_c01239{height:40.826465px;}
.hd_c01239{height:42.953625px;}
.hf_c01239{height:46.257750px;}
.hc_c01239{height:51.690762px;}
.h8_c01239{height:68.403007px;}
.hb_c01239{height:69.180117px;}
.h5_c01239{height:71.038894px;}
.h4_c01239{height:71.900684px;}
.h10_c01239{height:72.554831px;}
.h3_c01239{height:75.994875px;}
.h11_c01239{height:82.448438px;}
.h2_c01239{height:86.086494px;}
.h1_c01239{height:1110.000000px;}
.h0_c01239{height:1263.000000px;}
.w1_c01239{width:775.500000px;}
.w0_c01239{width:892.500000px;}
.x0_c01239{left:0.000000px;}
.x1_c01239{left:58.500000px;}
.x27_c01239{left:94.036785px;}
.x18_c01239{left:95.101035px;}
.x4_c01239{left:96.190035px;}
.x4d_c01239{left:105.441585px;}
.x28_c01239{left:138.893685px;}
.x5b_c01239{left:160.243035px;}
.x5_c01239{left:171.657735px;}
.x11_c01239{left:184.007985px;}
.x36_c01239{left:192.952635px;}
.x5c_c01239{left:194.026785px;}
.x30_c01239{left:203.847585px;}
.xe_c01239{left:205.431585px;}
.x20_c01239{left:206.490885px;}
.x19_c01239{left:217.549185px;}
.x37_c01239{left:219.593535px;}
.x5d_c01239{left:226.053285px;}
.x6_c01239{left:228.033285px;}
.x29_c01239{left:239.438085px;}
.x4e_c01239{left:241.333935px;}
.x16_c01239{left:248.650035px;}
.x7_c01239{left:251.402235px;}
.x4f_c01239{left:260.406285px;}
.x38_c01239{left:262.896135px;}
.x5e_c01239{left:270.801285px;}
.x2a_c01239{left:285.819585px;}
.x31_c01239{left:293.200035px;}
.x26_c01239{left:295.006785px;}
.x55_c01239{left:303.530685px;}
.x53_c01239{left:304.629585px;}
.x8_c01239{left:306.208635px;}
.x21_c01239{left:316.069035px;}
.x39_c01239{left:328.953885px;}
.x3f_c01239{left:337.453035px;}
.x17_c01239{left:338.512335px;}
.x22_c01239{left:339.759735px;}
.xf_c01239{left:350.273535px;}
.x2b_c01239{left:351.421935px;}
.x45_c01239{left:361.534785px;}
.x1a_c01239{left:372.731685px;}
.x9_c01239{left:375.587835px;}
.x32_c01239{left:381.295185px;}
.x4b_c01239{left:382.705935px;}
.x3a_c01239{left:383.854335px;}
.x46_c01239{left:393.897885px;}
.x12_c01239{left:405.312585px;}
.xa_c01239{left:406.535235px;}
.x10_c01239{left:416.920335px;}
.x47_c01239{left:426.914385px;}
.x3b_c01239{left:427.948935px;}
.x50_c01239{left:438.319185px;}
.x33_c01239{left:440.937735px;}
.x1b_c01239{left:450.347685px;}
.x56_c01239{left:460.539735px;}
.x3c_c01239{left:461.594085px;}
.x5f_c01239{left:471.810885px;}
.x40_c01239{left:474.761085px;}
.x60_c01239{left:483.403785px;}
.x41_c01239{left:486.576735px;}
.x57_c01239{left:493.204785px;}
.xb_c01239{left:494.912535px;}
.x42_c01239{left:503.485935px;}
.x13_c01239{left:504.807585px;}
.x48_c01239{left:506.446035px;}
.x23_c01239{left:528.122085px;}
.x14_c01239{left:529.230885px;}
.x2c_c01239{left:539.734785px;}
.x1c_c01239{left:550.001085px;}
.x43_c01239{left:560.198085px;}
.x2d_c01239{left:571.875135px;}
.x34_c01239{left:573.181935px;}
.x61_c01239{left:582.106785px;}
.x51_c01239{left:583.180935px;}
.x1f_c01239{left:585.012435px;}
.x59_c01239{left:589.992135px;}
.x44_c01239{left:596.328135px;}
.x5a_c01239{left:601.090035px;}
.x58_c01239{left:605.574735px;}
.xc_c01239{left:616.024185px;}
.x2e_c01239{left:627.404235px;}
.x1d_c01239{left:628.834785px;}
.x35_c01239{left:639.358485px;}
.x15_c01239{left:649.565385px;}
.x49_c01239{left:651.550335px;}
.xd_c01239{left:659.935635px;}
.x4a_c01239{left:669.568335px;}
.x3d_c01239{left:670.840485px;}
.x52_c01239{left:671.974035px;}
.x2_c01239{left:683.299635px;}
.x24_c01239{left:693.095685px;}
.x3e_c01239{left:704.198535px;}
.x25_c01239{left:706.470585px;}
.x54_c01239{left:711.900735px;}
.x4c_c01239{left:713.291685px;}
.x3_c01239{left:721.102785px;}
.x1e_c01239{left:727.913985px;}
.x2f_c01239{left:729.785085px;}
@media print{
.v1_c01239{vertical-align:-19.016800pt;}
.v0_c01239{vertical-align:0.000000pt;}
.ls14_c01239{letter-spacing:-2.728880pt;}
.lsa_c01239{letter-spacing:-2.279200pt;}
.ls19_c01239{letter-spacing:-2.266176pt;}
.ls20_c01239{letter-spacing:-2.168326pt;}
.ls1e_c01239{letter-spacing:-2.083840pt;}
.ls1b_c01239{letter-spacing:-1.746483pt;}
.lsb_c01239{letter-spacing:-1.250304pt;}
.ls8_c01239{letter-spacing:-0.748880pt;}
.ls12_c01239{letter-spacing:-0.475376pt;}
.ls7_c01239{letter-spacing:0.000000pt;}
.ls1d_c01239{letter-spacing:0.599104pt;}
.ls15_c01239{letter-spacing:0.898656pt;}
.ls3_c01239{letter-spacing:0.990194pt;}
.ls4_c01239{letter-spacing:1.411221pt;}
.ls1f_c01239{letter-spacing:1.419616pt;}
.ls17_c01239{letter-spacing:1.830400pt;}
.ls16_c01239{letter-spacing:2.340800pt;}
.ls0_c01239{letter-spacing:2.409440pt;}
.ls1c_c01239{letter-spacing:2.502773pt;}
.lsc_c01239{letter-spacing:2.838035pt;}
.lsd_c01239{letter-spacing:3.027209pt;}
.ls10_c01239{letter-spacing:3.097609pt;}
.ls21_c01239{letter-spacing:3.132800pt;}
.lsf_c01239{letter-spacing:3.157704pt;}
.ls9_c01239{letter-spacing:3.256000pt;}
.ls18_c01239{letter-spacing:3.399405pt;}
.ls5_c01239{letter-spacing:3.469576pt;}
.ls6_c01239{letter-spacing:3.672293pt;}
.ls1a_c01239{letter-spacing:3.687886pt;}
.ls1_c01239{letter-spacing:3.789245pt;}
.ls13_c01239{letter-spacing:3.898400pt;}
.ls2_c01239{letter-spacing:15.790016pt;}
.lse_c01239{letter-spacing:51.955376pt;}
.ls11_c01239{letter-spacing:54.489776pt;}
.ws1_c01239{word-spacing:-23.179886pt;}
.ws0_c01239{word-spacing:-16.280000pt;}
.ws2_c01239{word-spacing:0.000000pt;}
._0_c01239{margin-left:-20.187200pt;}
._8_c01239{margin-left:-16.287304pt;}
._6_c01239{margin-left:-3.125760pt;}
._3_c01239{width:3.451360pt;}
._1_c01239{width:5.600320pt;}
._a_c01239{width:7.879520pt;}
._5_c01239{width:20.122080pt;}
._9_c01239{width:21.366400pt;}
._4_c01239{width:26.704040pt;}
._2_c01239{width:29.043520pt;}
._7_c01239{width:35.439360pt;}
.fs5_c01239{font-size:23.936000pt;}
.fsc_c01239{font-size:30.272176pt;}
.fs7_c01239{font-size:31.328000pt;}
.fsb_c01239{font-size:36.608000pt;}
.fsd_c01239{font-size:39.424000pt;}
.fsa_c01239{font-size:46.816000pt;}
.fs4_c01239{font-size:51.955376pt;}
.fs8_c01239{font-size:54.489776pt;}
.fs9_c01239{font-size:58.960000pt;}
.fs3_c01239{font-size:60.544176pt;}
.fs6_c01239{font-size:61.952176pt;}
.fsf_c01239{font-size:62.656000pt;}
.fs1_c01239{font-size:64.768000pt;}
.fs2_c01239{font-size:65.120000pt;}
.fse_c01239{font-size:70.400000pt;}
.fs0_c01239{font-size:77.968000pt;}
.y0_c01239{bottom:0.000000pt;}
.y1d_c01239{bottom:58.525320pt;}
.y1_c01239{bottom:68.000000pt;}
.y1c_c01239{bottom:87.675320pt;}
.y1b_c01239{bottom:144.382520pt;}
.y1a_c01239{bottom:167.187720pt;}
.y19_c01239{bottom:172.894520pt;}
.y18_c01239{bottom:202.673720pt;}
.y17_c01239{bottom:229.284920pt;}
.y16_c01239{bottom:257.475720pt;}
.y14_c01239{bottom:313.549320pt;}
.y13_c01239{bottom:343.016120pt;}
.y15_c01239{bottom:369.310520pt;}
.y12_c01239{bottom:398.456120pt;}
.y10_c01239{bottom:426.963720pt;}
.y11_c01239{bottom:429.819320pt;}
.yf_c01239{bottom:455.480120pt;}
.ye_c01239{bottom:510.920120pt;}
.yc_c01239{bottom:539.427720pt;}
.yd_c01239{bottom:544.184120pt;}
.yb_c01239{bottom:595.505720pt;}
.ya_c01239{bottom:624.651320pt;}
.y9_c01239{bottom:640.174520pt;}
.y8_c01239{bottom:652.842120pt;}
.y7_c01239{bottom:708.920120pt;}
.y6_c01239{bottom:736.798520pt;}
.y5_c01239{bottom:792.550920pt;}
.y4_c01239{bottom:820.746120pt;}
.y3_c01239{bottom:915.786120pt;}
.y2_c01239{bottom:941.763720pt;}
.h7_c01239{height:24.964500pt;}
.he_c01239{height:31.572934pt;}
.h9_c01239{height:32.674125pt;}
.h6_c01239{height:34.602280pt;}
.ha_c01239{height:36.290191pt;}
.hd_c01239{height:38.181000pt;}
.hf_c01239{height:41.118000pt;}
.hc_c01239{height:45.947344pt;}
.h8_c01239{height:60.802673pt;}
.hb_c01239{height:61.493438pt;}
.h5_c01239{height:63.145684pt;}
.h4_c01239{height:63.911719pt;}
.h10_c01239{height:64.493183pt;}
.h3_c01239{height:67.551000pt;}
.h11_c01239{height:73.287500pt;}
.h2_c01239{height:76.521328pt;}
.h1_c01239{height:986.666667pt;}
.h0_c01239{height:1122.666667pt;}
.w1_c01239{width:689.333333pt;}
.w0_c01239{width:793.333333pt;}
.x0_c01239{left:0.000000pt;}
.x1_c01239{left:52.000000pt;}
.x27_c01239{left:83.588253pt;}
.x18_c01239{left:84.534253pt;}
.x4_c01239{left:85.502253pt;}
.x4d_c01239{left:93.725853pt;}
.x28_c01239{left:123.461053pt;}
.x5b_c01239{left:142.438253pt;}
.x5_c01239{left:152.584653pt;}
.x11_c01239{left:163.562653pt;}
.x36_c01239{left:171.513453pt;}
.x5c_c01239{left:172.468253pt;}
.x30_c01239{left:181.197853pt;}
.xe_c01239{left:182.605853pt;}
.x20_c01239{left:183.547453pt;}
.x19_c01239{left:193.377053pt;}
.x37_c01239{left:195.194253pt;}
.x5d_c01239{left:200.936253pt;}
.x6_c01239{left:202.696253pt;}
.x29_c01239{left:212.833853pt;}
.x4e_c01239{left:214.519053pt;}
.x16_c01239{left:221.022253pt;}
.x7_c01239{left:223.468653pt;}
.x4f_c01239{left:231.472253pt;}
.x38_c01239{left:233.685453pt;}
.x5e_c01239{left:240.712253pt;}
.x2a_c01239{left:254.061853pt;}
.x31_c01239{left:260.622253pt;}
.x26_c01239{left:262.228253pt;}
.x55_c01239{left:269.805053pt;}
.x53_c01239{left:270.781853pt;}
.x8_c01239{left:272.185453pt;}
.x21_c01239{left:280.950253pt;}
.x39_c01239{left:292.403453pt;}
.x3f_c01239{left:299.958253pt;}
.x17_c01239{left:300.899853pt;}
.x22_c01239{left:302.008653pt;}
.xf_c01239{left:311.354253pt;}
.x2b_c01239{left:312.375053pt;}
.x45_c01239{left:321.364253pt;}
.x1a_c01239{left:331.317053pt;}
.x9_c01239{left:333.855853pt;}
.x32_c01239{left:338.929053pt;}
.x4b_c01239{left:340.183053pt;}
.x3a_c01239{left:341.203853pt;}
.x46_c01239{left:350.131453pt;}
.x12_c01239{left:360.277853pt;}
.xa_c01239{left:361.364653pt;}
.x10_c01239{left:370.595853pt;}
.x47_c01239{left:379.479453pt;}
.x3b_c01239{left:380.399053pt;}
.x50_c01239{left:389.617053pt;}
.x33_c01239{left:391.944653pt;}
.x1b_c01239{left:400.309053pt;}
.x56_c01239{left:409.368653pt;}
.x3c_c01239{left:410.305853pt;}
.x5f_c01239{left:419.387453pt;}
.x40_c01239{left:422.009853pt;}
.x60_c01239{left:429.692253pt;}
.x41_c01239{left:432.512653pt;}
.x57_c01239{left:438.404253pt;}
.xb_c01239{left:439.922253pt;}
.x42_c01239{left:447.543053pt;}
.x13_c01239{left:448.717853pt;}
.x48_c01239{left:450.174253pt;}
.x23_c01239{left:469.441853pt;}
.x14_c01239{left:470.427453pt;}
.x2c_c01239{left:479.764253pt;}
.x1c_c01239{left:488.889853pt;}
.x43_c01239{left:497.953853pt;}
.x2d_c01239{left:508.333453pt;}
.x34_c01239{left:509.495053pt;}
.x61_c01239{left:517.428253pt;}
.x51_c01239{left:518.383053pt;}
.x1f_c01239{left:520.011053pt;}
.x59_c01239{left:524.437453pt;}
.x44_c01239{left:530.069453pt;}
.x5a_c01239{left:534.302253pt;}
.x58_c01239{left:538.288653pt;}
.xc_c01239{left:547.577053pt;}
.x2e_c01239{left:557.692653pt;}
.x1d_c01239{left:558.964253pt;}
.x35_c01239{left:568.318653pt;}
.x15_c01239{left:577.391453pt;}
.x49_c01239{left:579.155853pt;}
.xd_c01239{left:586.609453pt;}
.x4a_c01239{left:595.171853pt;}
.x3d_c01239{left:596.302653pt;}
.x52_c01239{left:597.310253pt;}
.x2_c01239{left:607.377453pt;}
.x24_c01239{left:616.085053pt;}
.x3e_c01239{left:625.954253pt;}
.x25_c01239{left:627.973853pt;}
.x54_c01239{left:632.800653pt;}
.x4c_c01239{left:634.037053pt;}
.x3_c01239{left:640.980253pt;}
.x1e_c01239{left:647.034653pt;}
.x2f_c01239{left:648.697853pt;}
}





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

.ir_c01240:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01240{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01240;src:url('chunks/assets/font_5b2fa8a71f7e672e84df9ea6.woff2')format("woff");}.ff1_c01240{font-family:ff1_c01240;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01240;src:url('chunks/assets/font_e61819b629b6be17700139b6.woff2')format("woff");}.ff2_c01240{font-family:ff2_c01240;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01240;src:url('chunks/assets/font_844c33c2b6c27536801ce160.woff2')format("woff");}.ff3_c01240{font-family:ff3_c01240;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01240;src:url('chunks/assets/font_0cf6c329265f494ee222ecdf.woff2')format("woff");}.ff4_c01240{font-family:ff4_c01240;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01240;src:url('chunks/assets/font_b10824c837bba1912d03d8f5.woff2')format("woff");}.ff5_c01240{font-family:ff5_c01240;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m21_c01240{transform:matrix(0.123983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123983,0.000000,0.000000,0.250000,0,0);}
.m6e_c01240{transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125002,0.000000,0.000000,0.250000,0,0);}
.m4c_c01240{transform:matrix(0.145022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145022,0.000000,0.000000,0.250000,0,0);}
.m77_c01240{transform:matrix(0.156177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156177,0.000000,0.000000,0.250000,0,0);}
.m2c_c01240{transform:matrix(0.166666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166666,0.000000,0.000000,0.250000,0,0);}
.m20_c01240{transform:matrix(0.176830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176830,0.000000,0.000000,0.250000,0,0);}
.m1f_c01240{transform:matrix(0.180208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180208,0.000000,0.000000,0.250000,0,0);}
.m58_c01240{transform:matrix(0.185366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185366,0.000000,0.000000,0.250000,0,0);}
.m56_c01240{transform:matrix(0.206781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206781,0.000000,0.000000,0.250000,0,0);}
.m3a_c01240{transform:matrix(0.209110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209110,0.000000,0.000000,0.250000,0,0);}
.m3e_c01240{transform:matrix(0.211942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211942,0.000000,0.000000,0.250000,0,0);}
.mc_c01240{transform:matrix(0.221426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221426,0.000000,0.000000,0.250000,0,0);}
.m2d_c01240{transform:matrix(0.224206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224206,0.000000,0.000000,0.250000,0,0);}
.m2_c01240{transform:matrix(0.234331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234331,0.000000,0.000000,0.250000,0,0);}
.m37_c01240{transform:matrix(0.235392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235392,0.000000,0.000000,0.250000,0,0);}
.m66_c01240{transform:matrix(0.243966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243966,0.000000,0.000000,0.250000,0,0);}
.m63_c01240{transform:matrix(0.246357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246357,0.000000,0.000000,0.250000,0,0);}
.m70_c01240{transform:matrix(0.246517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246517,0.000000,0.000000,0.250000,0,0);}
.m1_c01240{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m40_c01240{transform:matrix(0.254675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254675,0.000000,0.000000,0.250000,0,0);}
.m76_c01240{transform:matrix(0.256603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256603,0.000000,0.000000,0.250000,0,0);}
.m9_c01240{transform:matrix(0.258685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258685,0.000000,0.000000,0.250000,0,0);}
.m2f_c01240{transform:matrix(0.260558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260558,0.000000,0.000000,0.250000,0,0);}
.m68_c01240{transform:matrix(0.262012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262012,0.000000,0.000000,0.250000,0,0);}
.m6f_c01240{transform:matrix(0.263181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263181,0.000000,0.000000,0.250000,0,0);}
.m53_c01240{transform:matrix(0.264811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264811,0.000000,0.000000,0.250000,0,0);}
.m43_c01240{transform:matrix(0.267599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267599,0.000000,0.000000,0.250000,0,0);}
.m6_c01240{transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268164,0.000000,0.000000,0.250000,0,0);}
.mb_c01240{transform:matrix(0.269219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269219,0.000000,0.000000,0.250000,0,0);}
.m30_c01240{transform:matrix(0.270675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270675,0.000000,0.000000,0.250000,0,0);}
.m4_c01240{transform:matrix(0.271491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271491,0.000000,0.000000,0.250000,0,0);}
.m6d_c01240{transform:matrix(0.271658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271658,0.000000,0.000000,0.250000,0,0);}
.m26_c01240{transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272953,0.000000,0.000000,0.250000,0,0);}
.m52_c01240{transform:matrix(0.273395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273395,0.000000,0.000000,0.250000,0,0);}
.m64_c01240{transform:matrix(0.275440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275440,0.000000,0.000000,0.250000,0,0);}
.m2a_c01240{transform:matrix(0.277737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277737,0.000000,0.000000,0.250000,0,0);}
.m59_c01240{transform:matrix(0.278178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278178,0.000000,0.000000,0.250000,0,0);}
.m31_c01240{transform:matrix(0.280050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280050,0.000000,0.000000,0.250000,0,0);}
.m4a_c01240{transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280810,0.000000,0.000000,0.250000,0,0);}
.m74_c01240{transform:matrix(0.280909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280909,0.000000,0.000000,0.250000,0,0);}
.m3d_c01240{transform:matrix(0.281703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281703,0.000000,0.000000,0.250000,0,0);}
.m51_c01240{transform:matrix(0.281818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281818,0.000000,0.000000,0.250000,0,0);}
.m61_c01240{transform:matrix(0.283256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283256,0.000000,0.000000,0.250000,0,0);}
.m8_c01240{transform:matrix(0.283474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283474,0.000000,0.000000,0.250000,0,0);}
.m33_c01240{transform:matrix(0.284147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284147,0.000000,0.000000,0.250000,0,0);}
.m6c_c01240{transform:matrix(0.284523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284523,0.000000,0.000000,0.250000,0,0);}
.m1b_c01240{transform:matrix(0.284775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284775,0.000000,0.000000,0.250000,0,0);}
.m1e_c01240{transform:matrix(0.284870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284870,0.000000,0.000000,0.250000,0,0);}
.m65_c01240{transform:matrix(0.285266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285266,0.000000,0.000000,0.250000,0,0);}
.m0_c01240{transform:matrix(0.286234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286234,0.000000,0.000000,0.250000,0,0);}
.m55_c01240{transform:matrix(0.286899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286899,0.000000,0.000000,0.250000,0,0);}
.m3b_c01240{transform:matrix(0.287351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287351,0.000000,0.000000,0.250000,0,0);}
.m7_c01240{transform:matrix(0.288855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288855,0.000000,0.000000,0.250000,0,0);}
.m75_c01240{transform:matrix(0.289113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289113,0.000000,0.000000,0.250000,0,0);}
.mf_c01240{transform:matrix(0.289194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289194,0.000000,0.000000,0.250000,0,0);}
.m11_c01240{transform:matrix(0.291737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291737,0.000000,0.000000,0.250000,0,0);}
.m35_c01240{transform:matrix(0.292168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292168,0.000000,0.000000,0.250000,0,0);}
.m4e_c01240{transform:matrix(0.292363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292363,0.000000,0.000000,0.250000,0,0);}
.m23_c01240{transform:matrix(0.292387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292387,0.000000,0.000000,0.250000,0,0);}
.m38_c01240{transform:matrix(0.293629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293629,0.000000,0.000000,0.250000,0,0);}
.m4d_c01240{transform:matrix(0.293938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293938,0.000000,0.000000,0.250000,0,0);}
.m5c_c01240{transform:matrix(0.294417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294417,0.000000,0.000000,0.250000,0,0);}
.m4f_c01240{transform:matrix(0.294809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294809,0.000000,0.000000,0.250000,0,0);}
.m5b_c01240{transform:matrix(0.295322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295322,0.000000,0.000000,0.250000,0,0);}
.md_c01240{transform:matrix(0.296243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296243,0.000000,0.000000,0.250000,0,0);}
.m42_c01240{transform:matrix(0.298317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298317,0.000000,0.000000,0.250000,0,0);}
.m1d_c01240{transform:matrix(0.298966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298966,0.000000,0.000000,0.250000,0,0);}
.m46_c01240{transform:matrix(0.300266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300266,0.000000,0.000000,0.250000,0,0);}
.m54_c01240{transform:matrix(0.300979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300979,0.000000,0.000000,0.250000,0,0);}
.me_c01240{transform:matrix(0.301178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301178,0.000000,0.000000,0.250000,0,0);}
.m1c_c01240{transform:matrix(0.301932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301932,0.000000,0.000000,0.250000,0,0);}
.m19_c01240{transform:matrix(0.302446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302446,0.000000,0.000000,0.250000,0,0);}
.m34_c01240{transform:matrix(0.302532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302532,0.000000,0.000000,0.250000,0,0);}
.m27_c01240{transform:matrix(0.303163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303163,0.000000,0.000000,0.250000,0,0);}
.m14_c01240{transform:matrix(0.303218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303218,0.000000,0.000000,0.250000,0,0);}
.m1a_c01240{transform:matrix(0.303814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303814,0.000000,0.000000,0.250000,0,0);}
.m2b_c01240{transform:matrix(0.304896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304896,0.000000,0.000000,0.250000,0,0);}
.m57_c01240{transform:matrix(0.304918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304918,0.000000,0.000000,0.250000,0,0);}
.m50_c01240{transform:matrix(0.305699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305699,0.000000,0.000000,0.250000,0,0);}
.m5d_c01240{transform:matrix(0.305904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305904,0.000000,0.000000,0.250000,0,0);}
.m3c_c01240{transform:matrix(0.308614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308614,0.000000,0.000000,0.250000,0,0);}
.m41_c01240{transform:matrix(0.309944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309944,0.000000,0.000000,0.250000,0,0);}
.m16_c01240{transform:matrix(0.310009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310009,0.000000,0.000000,0.250000,0,0);}
.m45_c01240{transform:matrix(0.310027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310027,0.000000,0.000000,0.250000,0,0);}
.m29_c01240{transform:matrix(0.310178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310178,0.000000,0.000000,0.250000,0,0);}
.m71_c01240{transform:matrix(0.310462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310462,0.000000,0.000000,0.250000,0,0);}
.m6b_c01240{transform:matrix(0.310470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310470,0.000000,0.000000,0.250000,0,0);}
.m6a_c01240{transform:matrix(0.311367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311367,0.000000,0.000000,0.250000,0,0);}
.m60_c01240{transform:matrix(0.312296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312296,0.000000,0.000000,0.250000,0,0);}
.m49_c01240{transform:matrix(0.314218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314218,0.000000,0.000000,0.250000,0,0);}
.m47_c01240{transform:matrix(0.314696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314696,0.000000,0.000000,0.250000,0,0);}
.m24_c01240{transform:matrix(0.315762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315762,0.000000,0.000000,0.250000,0,0);}
.m17_c01240{transform:matrix(0.316134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316134,0.000000,0.000000,0.250000,0,0);}
.m62_c01240{transform:matrix(0.317809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317809,0.000000,0.000000,0.250000,0,0);}
.m5a_c01240{transform:matrix(0.318271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318271,0.000000,0.000000,0.250000,0,0);}
.m2e_c01240{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);}
.m28_c01240{transform:matrix(0.320561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320561,0.000000,0.000000,0.250000,0,0);}
.m39_c01240{transform:matrix(0.321442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321442,0.000000,0.000000,0.250000,0,0);}
.m44_c01240{transform:matrix(0.321848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321848,0.000000,0.000000,0.250000,0,0);}
.m36_c01240{transform:matrix(0.323249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323249,0.000000,0.000000,0.250000,0,0);}
.m3f_c01240{transform:matrix(0.325393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325393,0.000000,0.000000,0.250000,0,0);}
.m5e_c01240{transform:matrix(0.326745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326745,0.000000,0.000000,0.250000,0,0);}
.m4b_c01240{transform:matrix(0.327218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327218,0.000000,0.000000,0.250000,0,0);}
.m5f_c01240{transform:matrix(0.328442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328442,0.000000,0.000000,0.250000,0,0);}
.m22_c01240{transform:matrix(0.331055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331055,0.000000,0.000000,0.250000,0,0);}
.m25_c01240{transform:matrix(0.331540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331540,0.000000,0.000000,0.250000,0,0);}
.m15_c01240{transform:matrix(0.334279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334279,0.000000,0.000000,0.250000,0,0);}
.m32_c01240{transform:matrix(0.337051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337051,0.000000,0.000000,0.250000,0,0);}
.m5_c01240{transform:matrix(0.337107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337107,0.000000,0.000000,0.250000,0,0);}
.m3_c01240{transform:matrix(0.337625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337625,0.000000,0.000000,0.250000,0,0);}
.m12_c01240{transform:matrix(0.339155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339155,0.000000,0.000000,0.250000,0,0);}
.m48_c01240{transform:matrix(0.347002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347002,0.000000,0.000000,0.250000,0,0);}
.ma_c01240{transform:matrix(0.347262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347262,0.000000,0.000000,0.250000,0,0);}
.m10_c01240{transform:matrix(0.349489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349489,0.000000,0.000000,0.250000,0,0);}
.m18_c01240{transform:matrix(0.351305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351305,0.000000,0.000000,0.250000,0,0);}
.m69_c01240{transform:matrix(0.361167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361167,0.000000,0.000000,0.250000,0,0);}
.m73_c01240{transform:matrix(0.377493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377493,0.000000,0.000000,0.250000,0,0);}
.m13_c01240{transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393319,0.000000,0.000000,0.250000,0,0);}
.m67_c01240{transform:matrix(0.398777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398777,0.000000,0.000000,0.250000,0,0);}
.m72_c01240{transform:matrix(0.495723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495723,0.000000,0.000000,0.250000,0,0);}
.v0_c01240{vertical-align:0.000000px;}
.v1_c01240{vertical-align:2.831400px;}
.v2_c01240{vertical-align:17.107200px;}
.ls11_c01240{letter-spacing:-2.993767px;}
.ls16_c01240{letter-spacing:-2.811917px;}
.ls4_c01240{letter-spacing:-2.647267px;}
.ls14_c01240{letter-spacing:-2.626477px;}
.ls18_c01240{letter-spacing:-2.480940px;}
.ls1b_c01240{letter-spacing:-2.162167px;}
.ls10_c01240{letter-spacing:-2.033031px;}
.ls12_c01240{letter-spacing:-0.410574px;}
.ls3_c01240{letter-spacing:0.000000px;}
.lse_c01240{letter-spacing:0.051144px;}
.ls5_c01240{letter-spacing:0.438690px;}
.ls13_c01240{letter-spacing:0.769826px;}
.lsa_c01240{letter-spacing:0.847125px;}
.ls7_c01240{letter-spacing:2.632140px;}
.ls1a_c01240{letter-spacing:3.088810px;}
.ls1d_c01240{letter-spacing:3.112580px;}
.ls17_c01240{letter-spacing:3.227400px;}
.ls1c_c01240{letter-spacing:3.375900px;}
.ls8_c01240{letter-spacing:3.564000px;}
.ls6_c01240{letter-spacing:3.573900px;}
.lsc_c01240{letter-spacing:3.643200px;}
.ls0_c01240{letter-spacing:3.652396px;}
.ls15_c01240{letter-spacing:3.752110px;}
.ls2_c01240{letter-spacing:3.781810px;}
.lsf_c01240{letter-spacing:3.861000px;}
.ls1_c01240{letter-spacing:8.870400px;}
.ls19_c01240{letter-spacing:31.363200px;}
.ls9_c01240{letter-spacing:57.024198px;}
.lsb_c01240{letter-spacing:58.449798px;}
.lsd_c01240{letter-spacing:59.875398px;}
.sc__c01240{text-shadow:none;}
.sc0_c01240{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01240{-webkit-text-stroke:0px transparent;}
.sc0_c01240{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01240{word-spacing:-15.966412px;}
.ws1_c01240{word-spacing:0.000000px;}
._0_c01240{margin-left:-9.605822px;}
._5_c01240{margin-left:-3.183840px;}
._1_c01240{width:5.839437px;}
._3_c01240{width:35.061170px;}
._2_c01240{width:41.823096px;}
._4_c01240{width:1006.030872px;}
.fc0_c01240{color:transparent;}
.fsd_c01240{font-size:22.176000px;}
.fsf_c01240{font-size:22.374000px;}
.fs16_c01240{font-size:25.146000px;}
.fs1_c01240{font-size:27.720000px;}
.fs17_c01240{font-size:31.363200px;}
.fs1d_c01240{font-size:39.600000px;}
.fse_c01240{font-size:45.144000px;}
.fsc_c01240{font-size:49.896198px;}
.fs1c_c01240{font-size:53.064000px;}
.fs4_c01240{font-size:57.024198px;}
.fs5_c01240{font-size:58.449798px;}
.fs7_c01240{font-size:59.875398px;}
.fs19_c01240{font-size:60.588000px;}
.fs18_c01240{font-size:61.776198px;}
.fs13_c01240{font-size:64.548000px;}
.fsa_c01240{font-size:64.746198px;}
.fs15_c01240{font-size:66.528000px;}
.fs1a_c01240{font-size:67.518000px;}
.fs14_c01240{font-size:70.884000px;}
.fs3_c01240{font-size:71.280000px;}
.fs2_c01240{font-size:71.478000px;}
.fs6_c01240{font-size:72.864000px;}
.fs8_c01240{font-size:73.062198px;}
.fs10_c01240{font-size:75.042198px;}
.fs0_c01240{font-size:75.636198px;}
.fs9_c01240{font-size:77.220000px;}
.fs1b_c01240{font-size:78.804000px;}
.fs11_c01240{font-size:79.200000px;}
.fsb_c01240{font-size:85.536198px;}
.fs12_c01240{font-size:88.704000px;}
.y0_c01240{bottom:0.000000px;}
.y20_c01240{bottom:23.791527px;}
.y1f_c01240{bottom:27.711135px;}
.y1e_c01240{bottom:36.259785px;}
.y1_c01240{bottom:76.500000px;}
.y21_c01240{bottom:85.447935px;}
.y1d_c01240{bottom:93.288735px;}
.y1c_c01240{bottom:125.716185px;}
.y1b_c01240{bottom:179.888985px;}
.y19_c01240{bottom:188.086185px;}
.y1a_c01240{bottom:190.585935px;}
.y18_c01240{bottom:203.416335px;}
.y17_c01240{bottom:220.523535px;}
.y16_c01240{bottom:284.670585px;}
.y15_c01240{bottom:316.038735px;}
.y14_c01240{bottom:379.477935px;}
.y13_c01240{bottom:411.197535px;}
.y12_c01240{bottom:443.273535px;}
.y11_c01240{bottom:474.631785px;}
.y10_c01240{bottom:531.660735px;}
.ye_c01240{bottom:537.363135px;}
.yf_c01240{bottom:543.065535px;}
.yd_c01240{bottom:550.188585px;}
.yc_c01240{bottom:570.151935px;}
.yb_c01240{bottom:601.510185px;}
.ya_c01240{bottom:664.954335px;}
.y9_c01240{bottom:697.025385px;}
.y8_c01240{bottom:760.113135px;}
.y7_c01240{bottom:792.184185px;}
.y6_c01240{bottom:823.552335px;}
.y5_c01240{bottom:887.704335px;}
.y4_c01240{bottom:919.418985px;}
.y3_c01240{bottom:1022.774985px;}
.y2_c01240{bottom:1055.920185px;}
.h18_c01240{height:20.887891px;}
.h10_c01240{height:21.958857px;}
.h1e_c01240{height:23.128875px;}
.h17_c01240{height:26.226492px;}
.h3_c01240{height:28.911094px;}
.h6_c01240{height:37.978116px;}
.h7_c01240{height:38.927565px;}
.h9_c01240{height:39.877015px;}
.h1d_c01240{height:41.301563px;}
.hf_c01240{height:49.915181px;}
.he_c01240{height:52.040175px;}
.h19_c01240{height:60.629960px;}
.h1a_c01240{height:63.191391px;}
.h1b_c01240{height:66.265225px;}
.h14_c01240{height:67.321547px;}
.hc_c01240{height:67.528261px;}
.h16_c01240{height:69.386625px;}
.h15_c01240{height:69.568770px;}
.h4_c01240{height:70.151748px;}
.h8_c01240{height:71.512031px;}
.ha_c01240{height:71.670877px;}
.h11_c01240{height:73.649813px;}
.h2_c01240{height:74.232792px;}
.h5_c01240{height:74.342813px;}
.hb_c01240{height:75.787207px;}
.h1c_c01240{height:77.341816px;}
.h12_c01240{height:77.730469px;}
.hd_c01240{height:83.949101px;}
.h13_c01240{height:87.058125px;}
.h1_c01240{height:1110.000000px;}
.h0_c01240{height:1263.000000px;}
.w1_c01240{width:775.500000px;}
.w0_c01240{width:892.500000px;}
.x0_c01240{left:0.000000px;}
.x1_c01240{left:58.500000px;}
.x29_c01240{left:95.551485px;}
.x14_c01240{left:97.590885px;}
.x4_c01240{left:100.090635px;}
.x22_c01240{left:106.906785px;}
.x23_c01240{left:153.907035px;}
.x48_c01240{left:161.926035px;}
.x41_c01240{left:164.698035px;}
.x2a_c01240{left:173.434785px;}
.x42_c01240{left:183.042735px;}
.xe_c01240{left:195.962235px;}
.x27_c01240{left:204.510885px;}
.x33_c01240{left:206.243385px;}
.xf_c01240{left:207.693735px;}
.x2b_c01240{left:220.217235px;}
.x4b_c01240{left:229.448985px;}
.x15_c01240{left:239.715285px;}
.x40_c01240{left:249.065835px;}
.x10_c01240{left:251.422035px;}
.x28_c01240{left:253.129785px;}
.x45_c01240{left:262.262535px;}
.x50_c01240{left:264.188085px;}
.x5_c01240{left:274.261335px;}
.x21_c01240{left:284.087085px;}
.x2c_c01240{left:285.958185px;}
.x4c_c01240{left:298.402485px;}
.x24_c01240{left:306.733335px;}
.x16_c01240{left:318.682635px;}
.x2d_c01240{left:329.617185px;}
.x11_c01240{left:340.630935px;}
.x6_c01240{left:342.803985px;}
.x17_c01240{left:351.491235px;}
.x4d_c01240{left:360.787335px;}
.x12_c01240{left:375.716535px;}
.x18_c01240{left:383.978085px;}
.x1e_c01240{left:385.042335px;}
.x7_c01240{left:396.046185px;}
.x25_c01240{left:405.698685px;}
.x2e_c01240{left:407.485635px;}
.x1f_c01240{left:428.245935px;}
.x3e_c01240{left:439.234935px;}
.x19_c01240{left:440.427885px;}
.x37_c01240{left:459.544785px;}
.x2f_c01240{left:461.123835px;}
.x13_c01240{left:462.975135px;}
.x8_c01240{left:474.157185px;}
.x30_c01240{left:483.938385px;}
.x43_c01240{left:484.987785px;}
.x26_c01240{left:495.536235px;}
.x9_c01240{left:506.337135px;}
.x1a_c01240{left:516.979635px;}
.x3_c01240{left:520.221885px;}
.x20_c01240{left:529.018035px;}
.xa_c01240{left:540.155535px;}
.x4e_c01240{left:542.516685px;}
.x46_c01240{left:549.986235px;}
.x39_c01240{left:561.791985px;}
.x34_c01240{left:571.637535px;}
.x31_c01240{left:573.825435px;}
.x1b_c01240{left:584.492685px;}
.xb_c01240{left:594.407535px;}
.x3f_c01240{left:605.747985px;}
.x3b_c01240{left:607.772535px;}
.x35_c01240{left:626.137035px;}
.x1c_c01240{left:628.087335px;}
.x44_c01240{left:639.492135px;}
.x4f_c01240{left:648.174435px;}
.x3c_c01240{left:650.807835px;}
.x47_c01240{left:659.995035px;}
.x2_c01240{left:672.251235px;}
.x1d_c01240{left:673.607535px;}
.x3d_c01240{left:683.675835px;}
.xc_c01240{left:693.976785px;}
.x36_c01240{left:695.763735px;}
.x3a_c01240{left:704.549985px;}
.x38_c01240{left:715.548885px;}
.x51_c01240{left:718.246635px;}
.x49_c01240{left:721.078035px;}
.x4a_c01240{left:722.592735px;}
.x32_c01240{left:728.270385px;}
.xd_c01240{left:738.932685px;}
.x52_c01240{left:774.691485px;}
@media print{
.v0_c01240{vertical-align:0.000000pt;}
.v1_c01240{vertical-align:2.516800pt;}
.v2_c01240{vertical-align:15.206400pt;}
.ls11_c01240{letter-spacing:-2.661126pt;}
.ls16_c01240{letter-spacing:-2.499482pt;}
.ls4_c01240{letter-spacing:-2.353126pt;}
.ls14_c01240{letter-spacing:-2.334646pt;}
.ls18_c01240{letter-spacing:-2.205280pt;}
.ls1b_c01240{letter-spacing:-1.921926pt;}
.ls10_c01240{letter-spacing:-1.807138pt;}
.ls12_c01240{letter-spacing:-0.364954pt;}
.ls3_c01240{letter-spacing:0.000000pt;}
.lse_c01240{letter-spacing:0.045461pt;}
.ls5_c01240{letter-spacing:0.389947pt;}
.ls13_c01240{letter-spacing:0.684290pt;}
.lsa_c01240{letter-spacing:0.753000pt;}
.ls7_c01240{letter-spacing:2.339680pt;}
.ls1a_c01240{letter-spacing:2.745609pt;}
.ls1d_c01240{letter-spacing:2.766738pt;}
.ls17_c01240{letter-spacing:2.868800pt;}
.ls1c_c01240{letter-spacing:3.000800pt;}
.ls8_c01240{letter-spacing:3.168000pt;}
.ls6_c01240{letter-spacing:3.176800pt;}
.lsc_c01240{letter-spacing:3.238400pt;}
.ls0_c01240{letter-spacing:3.246574pt;}
.ls15_c01240{letter-spacing:3.335209pt;}
.ls2_c01240{letter-spacing:3.361609pt;}
.lsf_c01240{letter-spacing:3.432000pt;}
.ls1_c01240{letter-spacing:7.884800pt;}
.ls19_c01240{letter-spacing:27.878400pt;}
.ls9_c01240{letter-spacing:50.688176pt;}
.lsb_c01240{letter-spacing:51.955376pt;}
.lsd_c01240{letter-spacing:53.222576pt;}
.ws0_c01240{word-spacing:-14.192367pt;}
.ws1_c01240{word-spacing:0.000000pt;}
._0_c01240{margin-left:-8.538508pt;}
._5_c01240{margin-left:-2.830080pt;}
._1_c01240{width:5.190610pt;}
._3_c01240{width:31.165484pt;}
._2_c01240{width:37.176085pt;}
._4_c01240{width:894.249664pt;}
.fsd_c01240{font-size:19.712000pt;}
.fsf_c01240{font-size:19.888000pt;}
.fs16_c01240{font-size:22.352000pt;}
.fs1_c01240{font-size:24.640000pt;}
.fs17_c01240{font-size:27.878400pt;}
.fs1d_c01240{font-size:35.200000pt;}
.fse_c01240{font-size:40.128000pt;}
.fsc_c01240{font-size:44.352176pt;}
.fs1c_c01240{font-size:47.168000pt;}
.fs4_c01240{font-size:50.688176pt;}
.fs5_c01240{font-size:51.955376pt;}
.fs7_c01240{font-size:53.222576pt;}
.fs19_c01240{font-size:53.856000pt;}
.fs18_c01240{font-size:54.912176pt;}
.fs13_c01240{font-size:57.376000pt;}
.fsa_c01240{font-size:57.552176pt;}
.fs15_c01240{font-size:59.136000pt;}
.fs1a_c01240{font-size:60.016000pt;}
.fs14_c01240{font-size:63.008000pt;}
.fs3_c01240{font-size:63.360000pt;}
.fs2_c01240{font-size:63.536000pt;}
.fs6_c01240{font-size:64.768000pt;}
.fs8_c01240{font-size:64.944176pt;}
.fs10_c01240{font-size:66.704176pt;}
.fs0_c01240{font-size:67.232176pt;}
.fs9_c01240{font-size:68.640000pt;}
.fs1b_c01240{font-size:70.048000pt;}
.fs11_c01240{font-size:70.400000pt;}
.fsb_c01240{font-size:76.032176pt;}
.fs12_c01240{font-size:78.848000pt;}
.y0_c01240{bottom:0.000000pt;}
.y20_c01240{bottom:21.148024pt;}
.y1f_c01240{bottom:24.632120pt;}
.y1e_c01240{bottom:32.230920pt;}
.y1_c01240{bottom:68.000000pt;}
.y21_c01240{bottom:75.953720pt;}
.y1d_c01240{bottom:82.923320pt;}
.y1c_c01240{bottom:111.747720pt;}
.y1b_c01240{bottom:159.901320pt;}
.y19_c01240{bottom:167.187720pt;}
.y1a_c01240{bottom:169.409720pt;}
.y18_c01240{bottom:180.814520pt;}
.y17_c01240{bottom:196.020920pt;}
.y16_c01240{bottom:253.040520pt;}
.y15_c01240{bottom:280.923320pt;}
.y14_c01240{bottom:337.313720pt;}
.y13_c01240{bottom:365.508920pt;}
.y12_c01240{bottom:394.020920pt;}
.y11_c01240{bottom:421.894920pt;}
.y10_c01240{bottom:472.587320pt;}
.ye_c01240{bottom:477.656120pt;}
.yf_c01240{bottom:482.724920pt;}
.yd_c01240{bottom:489.056520pt;}
.yc_c01240{bottom:506.801720pt;}
.yb_c01240{bottom:534.675720pt;}
.ya_c01240{bottom:591.070520pt;}
.y9_c01240{bottom:619.578120pt;}
.y8_c01240{bottom:675.656120pt;}
.y7_c01240{bottom:704.163720pt;}
.y6_c01240{bottom:732.046520pt;}
.y5_c01240{bottom:789.070520pt;}
.y4_c01240{bottom:817.261320pt;}
.y3_c01240{bottom:909.133320pt;}
.y2_c01240{bottom:938.595720pt;}
.h18_c01240{height:18.567014pt;}
.h10_c01240{height:19.518984pt;}
.h1e_c01240{height:20.559000pt;}
.h17_c01240{height:23.312438pt;}
.h3_c01240{height:25.698750pt;}
.h6_c01240{height:33.758325pt;}
.h7_c01240{height:34.602280pt;}
.h9_c01240{height:35.446236pt;}
.h1d_c01240{height:36.712500pt;}
.hf_c01240{height:44.369050pt;}
.he_c01240{height:46.257934pt;}
.h19_c01240{height:53.893298pt;}
.h1a_c01240{height:56.170125pt;}
.h1b_c01240{height:58.902422pt;}
.h14_c01240{height:59.841375pt;}
.hc_c01240{height:60.025121pt;}
.h16_c01240{height:61.677000pt;}
.h15_c01240{height:61.838906pt;}
.h4_c01240{height:62.357109pt;}
.h8_c01240{height:63.566250pt;}
.ha_c01240{height:63.707446pt;}
.h11_c01240{height:65.466501pt;}
.h2_c01240{height:65.984704pt;}
.h5_c01240{height:66.082500pt;}
.hb_c01240{height:67.366406pt;}
.h1c_c01240{height:68.748281pt;}
.h12_c01240{height:69.093750pt;}
.hd_c01240{height:74.621423pt;}
.h13_c01240{height:77.385000pt;}
.h1_c01240{height:986.666667pt;}
.h0_c01240{height:1122.666667pt;}
.w1_c01240{width:689.333333pt;}
.w0_c01240{width:793.333333pt;}
.x0_c01240{left:0.000000pt;}
.x1_c01240{left:52.000000pt;}
.x29_c01240{left:84.934653pt;}
.x14_c01240{left:86.747453pt;}
.x4_c01240{left:88.969453pt;}
.x22_c01240{left:95.028253pt;}
.x23_c01240{left:136.806253pt;}
.x48_c01240{left:143.934253pt;}
.x41_c01240{left:146.398253pt;}
.x2a_c01240{left:154.164253pt;}
.x42_c01240{left:162.704653pt;}
.xe_c01240{left:174.188653pt;}
.x27_c01240{left:181.787453pt;}
.x33_c01240{left:183.327453pt;}
.xf_c01240{left:184.616653pt;}
.x2b_c01240{left:195.748653pt;}
.x4b_c01240{left:203.954653pt;}
.x15_c01240{left:213.080253pt;}
.x40_c01240{left:221.391853pt;}
.x10_c01240{left:223.486253pt;}
.x28_c01240{left:225.004253pt;}
.x45_c01240{left:233.122253pt;}
.x50_c01240{left:234.833853pt;}
.x5_c01240{left:243.787853pt;}
.x21_c01240{left:252.521853pt;}
.x2c_c01240{left:254.185053pt;}
.x4c_c01240{left:265.246653pt;}
.x24_c01240{left:272.651853pt;}
.x16_c01240{left:283.273453pt;}
.x2d_c01240{left:292.993053pt;}
.x11_c01240{left:302.783053pt;}
.x6_c01240{left:304.714653pt;}
.x17_c01240{left:312.436653pt;}
.x4d_c01240{left:320.699853pt;}
.x12_c01240{left:333.970253pt;}
.x18_c01240{left:341.313853pt;}
.x1e_c01240{left:342.259853pt;}
.x7_c01240{left:352.041053pt;}
.x25_c01240{left:360.621053pt;}
.x2e_c01240{left:362.209453pt;}
.x1f_c01240{left:380.663053pt;}
.x3e_c01240{left:390.431053pt;}
.x19_c01240{left:391.491453pt;}
.x37_c01240{left:408.484253pt;}
.x2f_c01240{left:409.887853pt;}
.x13_c01240{left:411.533453pt;}
.x8_c01240{left:421.473053pt;}
.x30_c01240{left:430.167453pt;}
.x43_c01240{left:431.100253pt;}
.x26_c01240{left:440.476653pt;}
.x9_c01240{left:450.077453pt;}
.x1a_c01240{left:459.537453pt;}
.x3_c01240{left:462.419453pt;}
.x20_c01240{left:470.238253pt;}
.xa_c01240{left:480.138253pt;}
.x4e_c01240{left:482.237053pt;}
.x46_c01240{left:488.876653pt;}
.x39_c01240{left:499.370653pt;}
.x34_c01240{left:508.122253pt;}
.x31_c01240{left:510.067053pt;}
.x1b_c01240{left:519.549053pt;}
.xb_c01240{left:528.362253pt;}
.x3f_c01240{left:538.442653pt;}
.x3b_c01240{left:540.242253pt;}
.x35_c01240{left:556.566253pt;}
.x1c_c01240{left:558.299853pt;}
.x44_c01240{left:568.437453pt;}
.x4f_c01240{left:576.155053pt;}
.x3c_c01240{left:578.495853pt;}
.x47_c01240{left:586.662253pt;}
.x2_c01240{left:597.556653pt;}
.x1d_c01240{left:598.762253pt;}
.x3d_c01240{left:607.711853pt;}
.xc_c01240{left:616.868253pt;}
.x36_c01240{left:618.456653pt;}
.x3a_c01240{left:626.266653pt;}
.x38_c01240{left:636.043453pt;}
.x51_c01240{left:638.441453pt;}
.x49_c01240{left:640.958253pt;}
.x4a_c01240{left:642.304653pt;}
.x32_c01240{left:647.351453pt;}
.xd_c01240{left:656.829053pt;}
.x52_c01240{left:688.614653pt;}
}





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

.ir_c01241:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01241{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01241;src:url('chunks/assets/font_91ff385bb1239c4a5db7178d.woff2')format("woff");}.ff1_c01241{font-family:ff1_c01241;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01241;src:url('chunks/assets/font_932cf3aa60be425db292065a.woff2')format("woff");}.ff2_c01241{font-family:ff2_c01241;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01241;src:url('chunks/assets/font_a8f1eb341485ce68b479a9eb.woff2')format("woff");}.ff3_c01241{font-family:ff3_c01241;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1a_c01241{transform:matrix(0.175159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175159,0.000000,0.000000,0.250000,0,0);}
.m21_c01241{transform:matrix(0.201989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201989,0.000000,0.000000,0.250000,0,0);}
.m24_c01241{transform:matrix(0.218242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218242,0.000000,0.000000,0.250000,0,0);}
.m9_c01241{transform:matrix(0.224746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224746,0.000000,0.000000,0.250000,0,0);}
.m1_c01241{transform:matrix(0.241348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241348,0.000000,0.000000,0.250000,0,0);}
.m0_c01241{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01241{transform:matrix(0.252835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252835,0.000000,0.000000,0.250000,0,0);}
.m17_c01241{transform:matrix(0.253497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253497,0.000000,0.000000,0.250000,0,0);}
.m2a_c01241{transform:matrix(0.256707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256707,0.000000,0.000000,0.250000,0,0);}
.m2_c01241{transform:matrix(0.257990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257990,0.000000,0.000000,0.250000,0,0);}
.m41_c01241{transform:matrix(0.266331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266331,0.000000,0.000000,0.250000,0,0);}
.m3_c01241{transform:matrix(0.271980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271980,0.000000,0.000000,0.250000,0,0);}
.m8_c01241{transform:matrix(0.273963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273963,0.000000,0.000000,0.250000,0,0);}
.m25_c01241{transform:matrix(0.275878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275878,0.000000,0.000000,0.250000,0,0);}
.m7_c01241{transform:matrix(0.276228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276228,0.000000,0.000000,0.250000,0,0);}
.m37_c01241{transform:matrix(0.278367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278367,0.000000,0.000000,0.250000,0,0);}
.mf_c01241{transform:matrix(0.278910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278910,0.000000,0.000000,0.250000,0,0);}
.m11_c01241{transform:matrix(0.279551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279551,0.000000,0.000000,0.250000,0,0);}
.m35_c01241{transform:matrix(0.279994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279994,0.000000,0.000000,0.250000,0,0);}
.m6_c01241{transform:matrix(0.284636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284636,0.000000,0.000000,0.250000,0,0);}
.mb_c01241{transform:matrix(0.286956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286956,0.000000,0.000000,0.250000,0,0);}
.m22_c01241{transform:matrix(0.289162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289162,0.000000,0.000000,0.250000,0,0);}
.m1e_c01241{transform:matrix(0.290214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290214,0.000000,0.000000,0.250000,0,0);}
.m27_c01241{transform:matrix(0.290830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290830,0.000000,0.000000,0.250000,0,0);}
.m34_c01241{transform:matrix(0.292886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292886,0.000000,0.000000,0.250000,0,0);}
.m40_c01241{transform:matrix(0.293183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293183,0.000000,0.000000,0.250000,0,0);}
.m15_c01241{transform:matrix(0.293499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293499,0.000000,0.000000,0.250000,0,0);}
.ma_c01241{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);}
.m31_c01241{transform:matrix(0.297853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297853,0.000000,0.000000,0.250000,0,0);}
.m3a_c01241{transform:matrix(0.298899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298899,0.000000,0.000000,0.250000,0,0);}
.m28_c01241{transform:matrix(0.299013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299013,0.000000,0.000000,0.250000,0,0);}
.m13_c01241{transform:matrix(0.299508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299508,0.000000,0.000000,0.250000,0,0);}
.m23_c01241{transform:matrix(0.301395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301395,0.000000,0.000000,0.250000,0,0);}
.m26_c01241{transform:matrix(0.302015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302015,0.000000,0.000000,0.250000,0,0);}
.m4_c01241{transform:matrix(0.302260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302260,0.000000,0.000000,0.250000,0,0);}
.m3b_c01241{transform:matrix(0.303039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303039,0.000000,0.000000,0.250000,0,0);}
.m38_c01241{transform:matrix(0.310456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310456,0.000000,0.000000,0.250000,0,0);}
.m30_c01241{transform:matrix(0.310461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310461,0.000000,0.000000,0.250000,0,0);}
.me_c01241{transform:matrix(0.310563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310563,0.000000,0.000000,0.250000,0,0);}
.m16_c01241{transform:matrix(0.310749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310749,0.000000,0.000000,0.250000,0,0);}
.m1b_c01241{transform:matrix(0.317188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317188,0.000000,0.000000,0.250000,0,0);}
.m2d_c01241{transform:matrix(0.317716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317716,0.000000,0.000000,0.250000,0,0);}
.m1c_c01241{transform:matrix(0.318211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318211,0.000000,0.000000,0.250000,0,0);}
.m5_c01241{transform:matrix(0.318523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318523,0.000000,0.000000,0.250000,0,0);}
.m12_c01241{transform:matrix(0.319397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319397,0.000000,0.000000,0.250000,0,0);}
.m3d_c01241{transform:matrix(0.324256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324256,0.000000,0.000000,0.250000,0,0);}
.m10_c01241{transform:matrix(0.331442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331442,0.000000,0.000000,0.250000,0,0);}
.m2b_c01241{transform:matrix(0.332643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332643,0.000000,0.000000,0.250000,0,0);}
.m3c_c01241{transform:matrix(0.333100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333100,0.000000,0.000000,0.250000,0,0);}
.m20_c01241{transform:matrix(0.334108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334108,0.000000,0.000000,0.250000,0,0);}
.m3f_c01241{transform:matrix(0.335469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335469,0.000000,0.000000,0.250000,0,0);}
.m29_c01241{transform:matrix(0.335637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335637,0.000000,0.000000,0.250000,0,0);}
.m1d_c01241{transform:matrix(0.339820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339820,0.000000,0.000000,0.250000,0,0);}
.m3e_c01241{transform:matrix(0.345574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345574,0.000000,0.000000,0.250000,0,0);}
.m39_c01241{transform:matrix(0.345678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345678,0.000000,0.000000,0.250000,0,0);}
.mc_c01241{transform:matrix(0.349875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349875,0.000000,0.000000,0.250000,0,0);}
.m19_c01241{transform:matrix(0.350031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350031,0.000000,0.000000,0.250000,0,0);}
.md_c01241{transform:matrix(0.350861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350861,0.000000,0.000000,0.250000,0,0);}
.m2e_c01241{transform:matrix(0.352058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352058,0.000000,0.000000,0.250000,0,0);}
.m36_c01241{transform:matrix(0.355111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355111,0.000000,0.000000,0.250000,0,0);}
.m1f_c01241{transform:matrix(0.355718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355718,0.000000,0.000000,0.250000,0,0);}
.m2f_c01241{transform:matrix(0.368927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368927,0.000000,0.000000,0.250000,0,0);}
.m18_c01241{transform:matrix(0.397084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397084,0.000000,0.000000,0.250000,0,0);}
.m2c_c01241{transform:matrix(0.408283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408283,0.000000,0.000000,0.250000,0,0);}
.m14_c01241{transform:matrix(0.414764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414764,0.000000,0.000000,0.250000,0,0);}
.m33_c01241{transform:matrix(0.462929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462929,0.000000,0.000000,0.250000,0,0);}
.v1_c01241{vertical-align:-8.553600px;}
.v0_c01241{vertical-align:0.000000px;}
.ls8_c01241{letter-spacing:-3.437280px;}
.ls1_c01241{letter-spacing:-2.550240px;}
.lsb_c01241{letter-spacing:-2.470090px;}
.ls13_c01241{letter-spacing:-2.226081px;}
.ls4_c01241{letter-spacing:-1.903176px;}
.lsd_c01241{letter-spacing:-1.552003px;}
.ls6_c01241{letter-spacing:-1.434517px;}
.ls12_c01241{letter-spacing:-1.165824px;}
.lsf_c01241{letter-spacing:-0.481774px;}
.ls7_c01241{letter-spacing:0.000000px;}
.ls10_c01241{letter-spacing:3.128400px;}
.ls0_c01241{letter-spacing:3.302719px;}
.ls11_c01241{letter-spacing:3.326400px;}
.lse_c01241{letter-spacing:3.465000px;}
.ls9_c01241{letter-spacing:3.564000px;}
.ls2_c01241{letter-spacing:3.643200px;}
.ls5_c01241{letter-spacing:3.672900px;}
.lsa_c01241{letter-spacing:3.682810px;}
.ls3_c01241{letter-spacing:3.910500px;}
.ls14_c01241{letter-spacing:4.078810px;}
.lsc_c01241{letter-spacing:4.266900px;}
.sc__c01241{text-shadow:none;}
.sc0_c01241{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01241{-webkit-text-stroke:0px transparent;}
.sc0_c01241{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01241{word-spacing:-16.912130px;}
.ws1_c01241{word-spacing:-3.570336px;}
.ws2_c01241{word-spacing:0.000000px;}
._0_c01241{margin-left:-1.157508px;}
._1_c01241{width:19.670904px;}
.fc0_c01241{color:transparent;}
.fsa_c01241{font-size:22.176000px;}
.fs12_c01241{font-size:27.720000px;}
.fs10_c01241{font-size:34.056198px;}
.fs13_c01241{font-size:39.600000px;}
.fs5_c01241{font-size:40.986198px;}
.fsc_c01241{font-size:62.568000px;}
.fsf_c01241{font-size:64.152198px;}
.fsd_c01241{font-size:64.548000px;}
.fse_c01241{font-size:66.528000px;}
.fsb_c01241{font-size:69.300000px;}
.fs8_c01241{font-size:70.092198px;}
.fs3_c01241{font-size:71.280000px;}
.fs1_c01241{font-size:72.864000px;}
.fs4_c01241{font-size:73.458000px;}
.fs7_c01241{font-size:73.656198px;}
.fs2_c01241{font-size:78.210000px;}
.fs11_c01241{font-size:81.576198px;}
.fs9_c01241{font-size:85.338000px;}
.fs0_c01241{font-size:88.308000px;}
.fs6_c01241{font-size:98.208000px;}
.y0_c01241{bottom:0.000000px;}
.y12_c01241{bottom:61.563591px;}
.y1_c01241{bottom:76.500000px;}
.y11_c01241{bottom:326.017935px;}
.y10_c01241{bottom:363.796335px;}
.yf_c01241{bottom:399.079935px;}
.ye_c01241{bottom:483.546735px;}
.yd_c01241{bottom:516.330585px;}
.yc_c01241{bottom:547.698735px;}
.yb_c01241{bottom:609.707385px;}
.ya_c01241{bottom:611.132985px;}
.y9_c01241{bottom:643.213935px;}
.y8_c01241{bottom:706.291785px;}
.y7_c01241{bottom:738.724185px;}
.y6_c01241{bottom:770.448735px;}
.y5_c01241{bottom:801.811935px;}
.y4_c01241{bottom:864.889785px;}
.y3_c01241{bottom:927.977535px;}
.y2_c01241{bottom:1063.760985px;}
.hc_c01241{height:23.128875px;}
.h13_c01241{height:28.911094px;}
.h7_c01241{height:40.225712px;}
.h14_c01241{height:41.301563px;}
.hf_c01241{height:63.350332px;}
.he_c01241{height:65.256469px;}
.h10_c01241{height:65.293594px;}
.h11_c01241{height:66.908738px;}
.hd_c01241{height:68.014160px;}
.h5_c01241{height:69.957422px;}
.h3_c01241{height:71.512031px;}
.h6_c01241{height:72.095010px;}
.h9_c01241{height:72.289530px;}
.ha_c01241{height:73.103972px;}
.h4_c01241{height:76.758838px;}
.h12_c01241{height:80.062577px;}
.hb_c01241{height:83.754580px;}
.h2_c01241{height:86.669473px;}
.h8_c01241{height:96.385781px;}
.h1_c01241{height:1110.000000px;}
.h0_c01241{height:1263.000000px;}
.w1_c01241{width:775.500000px;}
.w0_c01241{width:892.500000px;}
.x0_c01241{left:0.000000px;}
.x1_c01241{left:58.500000px;}
.x27_c01241{left:94.739685px;}
.x14_c01241{left:96.521685px;}
.xb_c01241{left:99.714435px;}
.x3_c01241{left:101.135085px;}
.x2f_c01241{left:183.963435px;}
.x3a_c01241{left:193.784235px;}
.x4_c01241{left:197.714535px;}
.xc_c01241{left:206.787885px;}
.x30_c01241{left:227.716485px;}
.x3b_c01241{left:238.335819px;}
.xd_c01241{left:250.714185px;}
.x22_c01241{left:251.892285px;}
.x15_c01241{left:253.347585px;}
.x5_c01241{left:262.118985px;}
.x31_c01241{left:279.043035px;}
.xe_c01241{left:295.526535px;}
.x6_c01241{left:306.792735px;}
.x32_c01241{left:317.158035px;}
.x28_c01241{left:329.745885px;}
.x2d_c01241{left:339.235035px;}
.x33_c01241{left:340.715085px;}
.xf_c01241{left:362.935635px;}
.x16_c01241{left:373.637535px;}
.x1c_c01241{left:375.741285px;}
.x7_c01241{left:385.081935px;}
.x1d_c01241{left:387.230235px;}
.x10_c01241{left:395.080935px;}
.x1e_c01241{left:406.881735px;}
.x29_c01241{left:428.339985px;}
.x17_c01241{left:439.517085px;}
.x8_c01241{left:450.377385px;}
.x1f_c01241{left:472.533585px;}
.x18_c01241{left:474.756135px;}
.x34_c01241{left:484.819485px;}
.x11_c01241{left:493.843335px;}
.x23_c01241{left:495.630285px;}
.x2a_c01241{left:505.634235px;}
.x2e_c01241{left:520.959435px;}
.x2b_c01241{left:529.671435px;}
.x35_c01241{left:549.882285px;}
.x9_c01241{left:551.218785px;}
.x19_c01241{left:562.410735px;}
.x24_c01241{left:564.464985px;}
.x37_c01241{left:571.508835px;}
.x20_c01241{left:584.933235px;}
.x25_c01241{left:594.417435px;}
.x12_c01241{left:616.796385px;}
.xa_c01241{left:638.615985px;}
.x26_c01241{left:661.846335px;}
.x2c_c01241{left:671.241435px;}
.x1a_c01241{left:672.473985px;}
.x2_c01241{left:683.294685px;}
.x13_c01241{left:705.262785px;}
.x39_c01241{left:712.187835px;}
.x1b_c01241{left:717.167535px;}
.x38_c01241{left:719.805885px;}
.x21_c01241{left:739.323735px;}
.x36_c01241{left:761.395785px;}
@media print{
.v1_c01241{vertical-align:-7.603200pt;}
.v0_c01241{vertical-align:0.000000pt;}
.ls8_c01241{letter-spacing:-3.055360pt;}
.ls1_c01241{letter-spacing:-2.266880pt;}
.lsb_c01241{letter-spacing:-2.195635pt;}
.ls13_c01241{letter-spacing:-1.978739pt;}
.ls4_c01241{letter-spacing:-1.691712pt;}
.lsd_c01241{letter-spacing:-1.379558pt;}
.ls6_c01241{letter-spacing:-1.275126pt;}
.ls12_c01241{letter-spacing:-1.036288pt;}
.lsf_c01241{letter-spacing:-0.428243pt;}
.ls7_c01241{letter-spacing:0.000000pt;}
.ls10_c01241{letter-spacing:2.780800pt;}
.ls0_c01241{letter-spacing:2.935750pt;}
.ls11_c01241{letter-spacing:2.956800pt;}
.lse_c01241{letter-spacing:3.080000pt;}
.ls9_c01241{letter-spacing:3.168000pt;}
.ls2_c01241{letter-spacing:3.238400pt;}
.ls5_c01241{letter-spacing:3.264800pt;}
.lsa_c01241{letter-spacing:3.273609pt;}
.ls3_c01241{letter-spacing:3.476000pt;}
.ls14_c01241{letter-spacing:3.625609pt;}
.lsc_c01241{letter-spacing:3.792800pt;}
.ws0_c01241{word-spacing:-15.033005pt;}
.ws1_c01241{word-spacing:-3.173632pt;}
.ws2_c01241{word-spacing:0.000000pt;}
._0_c01241{margin-left:-1.028896pt;}
._1_c01241{width:17.485248pt;}
.fsa_c01241{font-size:19.712000pt;}
.fs12_c01241{font-size:24.640000pt;}
.fs10_c01241{font-size:30.272176pt;}
.fs13_c01241{font-size:35.200000pt;}
.fs5_c01241{font-size:36.432176pt;}
.fsc_c01241{font-size:55.616000pt;}
.fsf_c01241{font-size:57.024176pt;}
.fsd_c01241{font-size:57.376000pt;}
.fse_c01241{font-size:59.136000pt;}
.fsb_c01241{font-size:61.600000pt;}
.fs8_c01241{font-size:62.304176pt;}
.fs3_c01241{font-size:63.360000pt;}
.fs1_c01241{font-size:64.768000pt;}
.fs4_c01241{font-size:65.296000pt;}
.fs7_c01241{font-size:65.472176pt;}
.fs2_c01241{font-size:69.520000pt;}
.fs11_c01241{font-size:72.512176pt;}
.fs9_c01241{font-size:75.856000pt;}
.fs0_c01241{font-size:78.496000pt;}
.fs6_c01241{font-size:87.296000pt;}
.y0_c01241{bottom:0.000000pt;}
.y12_c01241{bottom:54.723192pt;}
.y1_c01241{bottom:68.000000pt;}
.y11_c01241{bottom:289.793720pt;}
.y10_c01241{bottom:323.374520pt;}
.yf_c01241{bottom:354.737720pt;}
.ye_c01241{bottom:429.819320pt;}
.yd_c01241{bottom:458.960520pt;}
.yc_c01241{bottom:486.843320pt;}
.yb_c01241{bottom:541.962120pt;}
.ya_c01241{bottom:543.229320pt;}
.y9_c01241{bottom:571.745720pt;}
.y8_c01241{bottom:627.814920pt;}
.y7_c01241{bottom:656.643720pt;}
.y6_c01241{bottom:684.843320pt;}
.y5_c01241{bottom:712.721720pt;}
.y4_c01241{bottom:768.790920pt;}
.y3_c01241{bottom:824.868920pt;}
.y2_c01241{bottom:945.565320pt;}
.hc_c01241{height:20.559000pt;}
.h13_c01241{height:25.698750pt;}
.h7_c01241{height:35.756188pt;}
.h14_c01241{height:36.712500pt;}
.hf_c01241{height:56.311406pt;}
.he_c01241{height:58.005750pt;}
.h10_c01241{height:58.038750pt;}
.h11_c01241{height:59.474434pt;}
.hd_c01241{height:60.457031pt;}
.h5_c01241{height:62.184375pt;}
.h3_c01241{height:63.566250pt;}
.h6_c01241{height:64.084453pt;}
.h9_c01241{height:64.257360pt;}
.ha_c01241{height:64.981309pt;}
.h4_c01241{height:68.230078pt;}
.h12_c01241{height:71.166735pt;}
.hb_c01241{height:74.448516pt;}
.h2_c01241{height:77.039531pt;}
.h8_c01241{height:85.676250pt;}
.h1_c01241{height:986.666667pt;}
.h0_c01241{height:1122.666667pt;}
.w1_c01241{width:689.333333pt;}
.w0_c01241{width:793.333333pt;}
.x0_c01241{left:0.000000pt;}
.x1_c01241{left:52.000000pt;}
.x27_c01241{left:84.213053pt;}
.x14_c01241{left:85.797053pt;}
.xb_c01241{left:88.635053pt;}
.x3_c01241{left:89.897853pt;}
.x2f_c01241{left:163.523053pt;}
.x3a_c01241{left:172.252653pt;}
.x4_c01241{left:175.746253pt;}
.xc_c01241{left:183.811453pt;}
.x30_c01241{left:202.414653pt;}
.x3b_c01241{left:211.854061pt;}
.xd_c01241{left:222.857053pt;}
.x22_c01241{left:223.904253pt;}
.x15_c01241{left:225.197853pt;}
.x5_c01241{left:232.994653pt;}
.x31_c01241{left:248.038253pt;}
.xe_c01241{left:262.690253pt;}
.x6_c01241{left:272.704653pt;}
.x32_c01241{left:281.918253pt;}
.x28_c01241{left:293.107453pt;}
.x2d_c01241{left:301.542253pt;}
.x33_c01241{left:302.857853pt;}
.xf_c01241{left:322.609453pt;}
.x16_c01241{left:332.122253pt;}
.x1c_c01241{left:333.992253pt;}
.x7_c01241{left:342.295053pt;}
.x1d_c01241{left:344.204653pt;}
.x10_c01241{left:351.183053pt;}
.x1e_c01241{left:361.672653pt;}
.x29_c01241{left:380.746653pt;}
.x17_c01241{left:390.681853pt;}
.x8_c01241{left:400.335453pt;}
.x1f_c01241{left:420.029853pt;}
.x18_c01241{left:422.005453pt;}
.x34_c01241{left:430.950653pt;}
.x11_c01241{left:438.971853pt;}
.x23_c01241{left:440.560253pt;}
.x2a_c01241{left:449.452653pt;}
.x2e_c01241{left:463.075053pt;}
.x2b_c01241{left:470.819053pt;}
.x35_c01241{left:488.784253pt;}
.x9_c01241{left:489.972253pt;}
.x19_c01241{left:499.920653pt;}
.x24_c01241{left:501.746653pt;}
.x37_c01241{left:508.007853pt;}
.x20_c01241{left:519.940653pt;}
.x25_c01241{left:528.371053pt;}
.x12_c01241{left:548.263453pt;}
.xa_c01241{left:567.658653pt;}
.x26_c01241{left:588.307853pt;}
.x2c_c01241{left:596.659053pt;}
.x1a_c01241{left:597.754653pt;}
.x2_c01241{left:607.373053pt;}
.x13_c01241{left:626.900253pt;}
.x39_c01241{left:633.055853pt;}
.x1b_c01241{left:637.482253pt;}
.x38_c01241{left:639.827453pt;}
.x21_c01241{left:657.176653pt;}
.x36_c01241{left:676.796253pt;}
}





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

.ir_c01242:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01242{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01242;src:url('chunks/assets/font_d7a8bec137d6d37444efa2c9.woff2')format("woff");}.ff1_c01242{font-family:ff1_c01242;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01242;src:url('chunks/assets/font_68a78055cf4935df5db646f9.woff2')format("woff");}.ff2_c01242{font-family:ff2_c01242;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01242{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01242{vertical-align:0.000000px;}
.ls1_c01242{letter-spacing:-1.950938px;}
.ls0_c01242{letter-spacing:0.000000px;}
.sc__c01242{text-shadow:none;}
.sc0_c01242{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01242{-webkit-text-stroke:0px transparent;}
.sc0_c01242{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01242{word-spacing:0.000000px;}
.fc0_c01242{color:transparent;}
.fs0_c01242{font-size:22.176000px;}
.fs2_c01242{font-size:67.320000px;}
.fs1_c01242{font-size:81.972198px;}
.y0_c01242{bottom:0.000000px;}
.y5_c01242{bottom:13.450185px;}
.y1_c01242{bottom:76.500000px;}
.y4_c01242{bottom:307.123785px;}
.y3_c01242{bottom:728.387595px;}
.y2_c01242{bottom:836.734185px;}
.h2_c01242{height:23.128875px;}
.h4_c01242{height:66.070898px;}
.h3_c01242{height:80.451229px;}
.h1_c01242{height:1110.000000px;}
.h0_c01242{height:1263.000000px;}
.w1_c01242{width:775.500000px;}
.w0_c01242{width:892.500000px;}
.x0_c01242{left:0.000000px;}
.x1_c01242{left:58.500000px;}
.x3_c01242{left:102.546627px;}
.x4_c01242{left:256.802685px;}
.x2_c01242{left:520.603035px;}
.x5_c01242{left:711.088935px;}
@media print{
.v0_c01242{vertical-align:0.000000pt;}
.ls1_c01242{letter-spacing:-1.734167pt;}
.ls0_c01242{letter-spacing:0.000000pt;}
.ws0_c01242{word-spacing:0.000000pt;}
.fs0_c01242{font-size:19.712000pt;}
.fs2_c01242{font-size:59.840000pt;}
.fs1_c01242{font-size:72.864176pt;}
.y0_c01242{bottom:0.000000pt;}
.y5_c01242{bottom:11.955720pt;}
.y1_c01242{bottom:68.000000pt;}
.y4_c01242{bottom:272.998920pt;}
.y3_c01242{bottom:647.455640pt;}
.y2_c01242{bottom:743.763720pt;}
.h2_c01242{height:20.559000pt;}
.h4_c01242{height:58.729688pt;}
.h3_c01242{height:71.512204pt;}
.h1_c01242{height:986.666667pt;}
.h0_c01242{height:1122.666667pt;}
.w1_c01242{width:689.333333pt;}
.w0_c01242{width:793.333333pt;}
.x0_c01242{left:0.000000pt;}
.x1_c01242{left:52.000000pt;}
.x3_c01242{left:91.152557pt;}
.x4_c01242{left:228.269053pt;}
.x2_c01242{left:462.758253pt;}
.x5_c01242{left:632.079053pt;}
}





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

.ir_c01243:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01243{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01243;src:url('chunks/assets/font_f75e94821681d0c89199b708.woff2')format("woff");}.ff1_c01243{font-family:ff1_c01243;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01243;src:url('chunks/assets/font_215df97b50917a97c9e44322.woff2')format("woff");}.ff2_c01243{font-family:ff2_c01243;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01243;src:url('chunks/assets/font_cb928df3e82ec8b7677ce9c9.woff2')format("woff");}.ff3_c01243{font-family:ff3_c01243;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01243;src:url('chunks/assets/font_980f0531b94709b2595790fd.woff2')format("woff");}.ff4_c01243{font-family:ff4_c01243;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01243;src:url('chunks/assets/font_4ab512fd239395de859d1f58.woff2')format("woff");}.ff5_c01243{font-family:ff5_c01243;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01243;src:url('chunks/assets/font_4048b3650c7fa8f551ec58ab.woff2')format("woff");}.ff6_c01243{font-family:ff6_c01243;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m88_c01243{transform:matrix(0.062501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062501,0.000000,0.000000,0.250000,0,0);}
.m8f_c01243{transform:matrix(0.081081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081081,0.000000,0.000000,0.250000,0,0);}
.m63_c01243{transform:matrix(0.083334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083334,0.000000,0.000000,0.250000,0,0);}
.m4_c01243{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m7a_c01243{transform:matrix(0.137470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137470,0.000000,0.000000,0.250000,0,0);}
.m6d_c01243{transform:matrix(0.160088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160088,0.000000,0.000000,0.250000,0,0);}
.m89_c01243{transform:matrix(0.170834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170834,0.000000,0.000000,0.250000,0,0);}
.m13_c01243{transform:matrix(0.173959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173959,0.000000,0.000000,0.250000,0,0);}
.m4c_c01243{transform:matrix(0.186192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186192,0.000000,0.000000,0.250000,0,0);}
.m2_c01243{transform:matrix(0.189285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189285,0.000000,0.000000,0.250000,0,0);}
.m72_c01243{transform:matrix(0.190625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190625,0.000000,0.000000,0.250000,0,0);}
.m30_c01243{transform:matrix(0.198264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198264,0.000000,0.000000,0.250000,0,0);}
.m3_c01243{transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);}
.m9_c01243{transform:matrix(0.207470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207470,0.000000,0.000000,0.250000,0,0);}
.m20_c01243{transform:matrix(0.209460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209460,0.000000,0.000000,0.250000,0,0);}
.m1_c01243{transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);}
.m57_c01243{transform:matrix(0.214468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214468,0.000000,0.000000,0.250000,0,0);}
.mb_c01243{transform:matrix(0.214961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214961,0.000000,0.000000,0.250000,0,0);}
.m5_c01243{transform:matrix(0.218421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218421,0.000000,0.000000,0.250000,0,0);}
.ma_c01243{transform:matrix(0.222895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222895,0.000000,0.000000,0.250000,0,0);}
.m19_c01243{transform:matrix(0.225245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225245,0.000000,0.000000,0.250000,0,0);}
.m7f_c01243{transform:matrix(0.225984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225984,0.000000,0.000000,0.250000,0,0);}
.m44_c01243{transform:matrix(0.234062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234062,0.000000,0.000000,0.250000,0,0);}
.m8_c01243{transform:matrix(0.238813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238813,0.000000,0.000000,0.250000,0,0);}
.m5b_c01243{transform:matrix(0.243960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243960,0.000000,0.000000,0.250000,0,0);}
.mc_c01243{transform:matrix(0.246369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246369,0.000000,0.000000,0.250000,0,0);}
.m2e_c01243{transform:matrix(0.246549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246549,0.000000,0.000000,0.250000,0,0);}
.m28_c01243{transform:matrix(0.249830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249830,0.000000,0.000000,0.250000,0,0);}
.m6_c01243{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m38_c01243{transform:matrix(0.251254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251254,0.000000,0.000000,0.250000,0,0);}
.m31_c01243{transform:matrix(0.251277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251277,0.000000,0.000000,0.250000,0,0);}
.m78_c01243{transform:matrix(0.253050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253050,0.000000,0.000000,0.250000,0,0);}
.m3b_c01243{transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);}
.m2a_c01243{transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);}
.m40_c01243{transform:matrix(0.254525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254525,0.000000,0.000000,0.250000,0,0);}
.m8b_c01243{transform:matrix(0.255369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255369,0.000000,0.000000,0.250000,0,0);}
.m1a_c01243{transform:matrix(0.255468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255468,0.000000,0.000000,0.250000,0,0);}
.m83_c01243{transform:matrix(0.255484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255484,0.000000,0.000000,0.250000,0,0);}
.m70_c01243{transform:matrix(0.255681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255681,0.000000,0.000000,0.250000,0,0);}
.m17_c01243{transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);}
.m6f_c01243{transform:matrix(0.257193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257193,0.000000,0.000000,0.250000,0,0);}
.m42_c01243{transform:matrix(0.257278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257278,0.000000,0.000000,0.250000,0,0);}
.m2d_c01243{transform:matrix(0.257794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257794,0.000000,0.000000,0.250000,0,0);}
.m1c_c01243{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m6a_c01243{transform:matrix(0.261427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261427,0.000000,0.000000,0.250000,0,0);}
.m49_c01243{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.m16_c01243{transform:matrix(0.262539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262539,0.000000,0.000000,0.250000,0,0);}
.m47_c01243{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m7b_c01243{transform:matrix(0.263982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263982,0.000000,0.000000,0.250000,0,0);}
.m2c_c01243{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.me_c01243{transform:matrix(0.266706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266706,0.000000,0.000000,0.250000,0,0);}
.m76_c01243{transform:matrix(0.266820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266820,0.000000,0.000000,0.250000,0,0);}
.m69_c01243{transform:matrix(0.267111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267111,0.000000,0.000000,0.250000,0,0);}
.m3e_c01243{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m77_c01243{transform:matrix(0.268390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268390,0.000000,0.000000,0.250000,0,0);}
.m67_c01243{transform:matrix(0.269900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269900,0.000000,0.000000,0.250000,0,0);}
.m74_c01243{transform:matrix(0.270820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270820,0.000000,0.000000,0.250000,0,0);}
.m52_c01243{transform:matrix(0.270873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270873,0.000000,0.000000,0.250000,0,0);}
.m27_c01243{transform:matrix(0.271556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271556,0.000000,0.000000,0.250000,0,0);}
.m8e_c01243{transform:matrix(0.272044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272044,0.000000,0.000000,0.250000,0,0);}
.m5e_c01243{transform:matrix(0.272217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272217,0.000000,0.000000,0.250000,0,0);}
.m82_c01243{transform:matrix(0.272729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272729,0.000000,0.000000,0.250000,0,0);}
.m6c_c01243{transform:matrix(0.274019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274019,0.000000,0.000000,0.250000,0,0);}
.m8d_c01243{transform:matrix(0.274211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274211,0.000000,0.000000,0.250000,0,0);}
.m7c_c01243{transform:matrix(0.274420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274420,0.000000,0.000000,0.250000,0,0);}
.m1d_c01243{transform:matrix(0.275414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275414,0.000000,0.000000,0.250000,0,0);}
.m3d_c01243{transform:matrix(0.277234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277234,0.000000,0.000000,0.250000,0,0);}
.m87_c01243{transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);}
.m0_c01243{transform:matrix(0.277895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277895,0.000000,0.000000,0.250000,0,0);}
.m5c_c01243{transform:matrix(0.278129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278129,0.000000,0.000000,0.250000,0,0);}
.m71_c01243{transform:matrix(0.280797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280797,0.000000,0.000000,0.250000,0,0);}
.m6b_c01243{transform:matrix(0.281251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281251,0.000000,0.000000,0.250000,0,0);}
.m8a_c01243{transform:matrix(0.282282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282282,0.000000,0.000000,0.250000,0,0);}
.m53_c01243{transform:matrix(0.283170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283170,0.000000,0.000000,0.250000,0,0);}
.m14_c01243{transform:matrix(0.283337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283337,0.000000,0.000000,0.250000,0,0);}
.m10_c01243{transform:matrix(0.283625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283625,0.000000,0.000000,0.250000,0,0);}
.m8c_c01243{transform:matrix(0.285552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285552,0.000000,0.000000,0.250000,0,0);}
.m1b_c01243{transform:matrix(0.285841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285841,0.000000,0.000000,0.250000,0,0);}
.m79_c01243{transform:matrix(0.286096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286096,0.000000,0.000000,0.250000,0,0);}
.m41_c01243{transform:matrix(0.287739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287739,0.000000,0.000000,0.250000,0,0);}
.m46_c01243{transform:matrix(0.288998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288998,0.000000,0.000000,0.250000,0,0);}
.m55_c01243{transform:matrix(0.289141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289141,0.000000,0.000000,0.250000,0,0);}
.m75_c01243{transform:matrix(0.289770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289770,0.000000,0.000000,0.250000,0,0);}
.m33_c01243{transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290193,0.000000,0.000000,0.250000,0,0);}
.m7d_c01243{transform:matrix(0.290504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290504,0.000000,0.000000,0.250000,0,0);}
.m58_c01243{transform:matrix(0.291288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291288,0.000000,0.000000,0.250000,0,0);}
.m4b_c01243{transform:matrix(0.291837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291837,0.000000,0.000000,0.250000,0,0);}
.m5a_c01243{transform:matrix(0.292741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292741,0.000000,0.000000,0.250000,0,0);}
.m3f_c01243{transform:matrix(0.293528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293528,0.000000,0.000000,0.250000,0,0);}
.m21_c01243{transform:matrix(0.294364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294364,0.000000,0.000000,0.250000,0,0);}
.m3a_c01243{transform:matrix(0.295112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295112,0.000000,0.000000,0.250000,0,0);}
.m6e_c01243{transform:matrix(0.296785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296785,0.000000,0.000000,0.250000,0,0);}
.m54_c01243{transform:matrix(0.296813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296813,0.000000,0.000000,0.250000,0,0);}
.m73_c01243{transform:matrix(0.297083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297083,0.000000,0.000000,0.250000,0,0);}
.m35_c01243{transform:matrix(0.302306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302306,0.000000,0.000000,0.250000,0,0);}
.m5d_c01243{transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308578,0.000000,0.000000,0.250000,0,0);}
.m66_c01243{transform:matrix(0.308647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308647,0.000000,0.000000,0.250000,0,0);}
.m81_c01243{transform:matrix(0.310706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310706,0.000000,0.000000,0.250000,0,0);}
.m29_c01243{transform:matrix(0.310978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310978,0.000000,0.000000,0.250000,0,0);}
.m80_c01243{transform:matrix(0.311428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311428,0.000000,0.000000,0.250000,0,0);}
.m34_c01243{transform:matrix(0.311744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311744,0.000000,0.000000,0.250000,0,0);}
.m48_c01243{transform:matrix(0.311965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311965,0.000000,0.000000,0.250000,0,0);}
.m23_c01243{transform:matrix(0.313359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313359,0.000000,0.000000,0.250000,0,0);}
.m61_c01243{transform:matrix(0.315710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315710,0.000000,0.000000,0.250000,0,0);}
.m4e_c01243{transform:matrix(0.316531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316531,0.000000,0.000000,0.250000,0,0);}
.md_c01243{transform:matrix(0.316737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316737,0.000000,0.000000,0.250000,0,0);}
.m1f_c01243{transform:matrix(0.318179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318179,0.000000,0.000000,0.250000,0,0);}
.m4d_c01243{transform:matrix(0.319506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319506,0.000000,0.000000,0.250000,0,0);}
.m32_c01243{transform:matrix(0.320051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320051,0.000000,0.000000,0.250000,0,0);}
.m15_c01243{transform:matrix(0.322496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322496,0.000000,0.000000,0.250000,0,0);}
.m39_c01243{transform:matrix(0.323794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323794,0.000000,0.000000,0.250000,0,0);}
.m11_c01243{transform:matrix(0.324044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324044,0.000000,0.000000,0.250000,0,0);}
.m45_c01243{transform:matrix(0.325665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325665,0.000000,0.000000,0.250000,0,0);}
.m60_c01243{transform:matrix(0.326578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326578,0.000000,0.000000,0.250000,0,0);}
.m3c_c01243{transform:matrix(0.327052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327052,0.000000,0.000000,0.250000,0,0);}
.m36_c01243{transform:matrix(0.327076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327076,0.000000,0.000000,0.250000,0,0);}
.m24_c01243{transform:matrix(0.327316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327316,0.000000,0.000000,0.250000,0,0);}
.mf_c01243{transform:matrix(0.328208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328208,0.000000,0.000000,0.250000,0,0);}
.m43_c01243{transform:matrix(0.330255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330255,0.000000,0.000000,0.250000,0,0);}
.m37_c01243{transform:matrix(0.336597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336597,0.000000,0.000000,0.250000,0,0);}
.m68_c01243{transform:matrix(0.337511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337511,0.000000,0.000000,0.250000,0,0);}
.m4a_c01243{transform:matrix(0.338886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338886,0.000000,0.000000,0.250000,0,0);}
.m12_c01243{transform:matrix(0.340057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340057,0.000000,0.000000,0.250000,0,0);}
.m1e_c01243{transform:matrix(0.343302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343302,0.000000,0.000000,0.250000,0,0);}
.m51_c01243{transform:matrix(0.343355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343355,0.000000,0.000000,0.250000,0,0);}
.m22_c01243{transform:matrix(0.344589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344589,0.000000,0.000000,0.250000,0,0);}
.m85_c01243{transform:matrix(0.345307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345307,0.000000,0.000000,0.250000,0,0);}
.m25_c01243{transform:matrix(0.345723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345723,0.000000,0.000000,0.250000,0,0);}
.m7e_c01243{transform:matrix(0.346183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346183,0.000000,0.000000,0.250000,0,0);}
.m2f_c01243{transform:matrix(0.349369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349369,0.000000,0.000000,0.250000,0,0);}
.m18_c01243{transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);}
.m7_c01243{transform:matrix(0.380304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380304,0.000000,0.000000,0.250000,0,0);}
.m2b_c01243{transform:matrix(0.382502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382502,0.000000,0.000000,0.250000,0,0);}
.m5f_c01243{transform:matrix(0.412678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412678,0.000000,0.000000,0.250000,0,0);}
.m56_c01243{transform:matrix(0.414708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414708,0.000000,0.000000,0.250000,0,0);}
.m90_c01243{transform:matrix(0.437818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437818,0.000000,0.000000,0.250000,0,0);}
.m59_c01243{transform:matrix(0.440068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440068,0.000000,0.000000,0.250000,0,0);}
.m65_c01243{transform:matrix(0.448948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448948,0.000000,0.000000,0.250000,0,0);}
.m84_c01243{transform:matrix(0.482336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482336,0.000000,0.000000,0.250000,0,0);}
.m26_c01243{transform:matrix(0.535704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535704,0.000000,0.000000,0.250000,0,0);}
.m62_c01243{transform:matrix(1.054338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.054338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.054338,0.000000,0.000000,0.250000,0,0);}
.m86_c01243{transform:matrix(1.120771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.120771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.120771,0.000000,0.000000,0.250000,0,0);}
.m64_c01243{transform:matrix(1.202748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.202748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.202748,0.000000,0.000000,0.250000,0,0);}
.m50_c01243{transform:matrix(1.347294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.347294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.347294,0.000000,0.000000,0.250000,0,0);}
.m4f_c01243{transform:matrix(1.433940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.433940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.433940,0.000000,0.000000,0.250000,0,0);}
.v1_c01243{vertical-align:-5.702400px;}
.v0_c01243{vertical-align:0.000000px;}
.lsf_c01243{letter-spacing:-2.882880px;}
.ls5_c01243{letter-spacing:-2.744280px;}
.ls13_c01243{letter-spacing:-2.716567px;}
.ls1d_c01243{letter-spacing:-2.480940px;}
.ls10_c01243{letter-spacing:-1.649340px;}
.ls4_c01243{letter-spacing:0.000000px;}
.ls17_c01243{letter-spacing:0.508365px;}
.ls1_c01243{letter-spacing:0.647619px;}
.lsd_c01243{letter-spacing:0.854647px;}
.ls23_c01243{letter-spacing:0.925214px;}
.ls12_c01243{letter-spacing:0.950400px;}
.ls15_c01243{letter-spacing:1.039500px;}
.ls22_c01243{letter-spacing:1.186498px;}
.ls20_c01243{letter-spacing:1.609978px;}
.ls1c_c01243{letter-spacing:1.744083px;}
.ls24_c01243{letter-spacing:2.347488px;}
.ls19_c01243{letter-spacing:2.462011px;}
.lse_c01243{letter-spacing:2.692810px;}
.ls1f_c01243{letter-spacing:2.705076px;}
.ls0_c01243{letter-spacing:2.791325px;}
.ls21_c01243{letter-spacing:3.049200px;}
.ls11_c01243{letter-spacing:3.524400px;}
.ls14_c01243{letter-spacing:3.544200px;}
.lsb_c01243{letter-spacing:3.564000px;}
.ls18_c01243{letter-spacing:3.603610px;}
.ls6_c01243{letter-spacing:3.781810px;}
.ls1a_c01243{letter-spacing:3.801610px;}
.ls2_c01243{letter-spacing:3.920400px;}
.ls1e_c01243{letter-spacing:4.395610px;}
.lsa_c01243{letter-spacing:9.979398px;}
.ls8_c01243{letter-spacing:48.470598px;}
.ls3_c01243{letter-spacing:49.896198px;}
.lsc_c01243{letter-spacing:51.321798px;}
.ls9_c01243{letter-spacing:52.747398px;}
.ls1b_c01243{letter-spacing:54.172998px;}
.ls16_c01243{letter-spacing:55.598598px;}
.ls7_c01243{letter-spacing:57.024198px;}
.sc__c01243{text-shadow:none;}
.sc0_c01243{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01243{-webkit-text-stroke:0px transparent;}
.sc0_c01243{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01243{word-spacing:-20.413325px;}
.ws0_c01243{word-spacing:-19.602000px;}
.ws2_c01243{word-spacing:-17.622000px;}
.ws1_c01243{word-spacing:-2.901096px;}
.ws4_c01243{word-spacing:0.000000px;}
._a_c01243{margin-left:-12.053448px;}
._11_c01243{margin-left:-6.949800px;}
._7_c01243{margin-left:-1.710720px;}
._12_c01243{width:3.005640px;}
._0_c01243{width:4.469256px;}
._5_c01243{width:6.379560px;}
._9_c01243{width:8.083152px;}
._1_c01243{width:9.095328px;}
._8_c01243{width:10.863072px;}
._2_c01243{width:12.153240px;}
._6_c01243{width:19.708920px;}
._3_c01243{width:26.501904px;}
._b_c01243{width:27.991656px;}
._4_c01243{width:30.084120px;}
._d_c01243{width:31.143420px;}
._c_c01243{width:32.411610px;}
._e_c01243{width:34.817310px;}
._10_c01243{width:115.424242px;}
._13_c01243{width:135.471600px;}
._f_c01243{width:161.306046px;}
.fc0_c01243{color:transparent;}
.fs7_c01243{font-size:9.979398px;}
.fs10_c01243{font-size:19.008000px;}
.fs15_c01243{font-size:20.790000px;}
.fs2_c01243{font-size:26.928000px;}
.fs20_c01243{font-size:27.720000px;}
.fs13_c01243{font-size:28.314000px;}
.fsa_c01243{font-size:28.908000px;}
.fs11_c01243{font-size:32.868000px;}
.fse_c01243{font-size:47.124000px;}
.fs5_c01243{font-size:48.470598px;}
.fs1_c01243{font-size:49.896198px;}
.fs21_c01243{font-size:50.688000px;}
.fs9_c01243{font-size:51.321798px;}
.fs6_c01243{font-size:52.747398px;}
.fsb_c01243{font-size:53.856198px;}
.fs1b_c01243{font-size:54.172998px;}
.fs16_c01243{font-size:55.598598px;}
.fs4_c01243{font-size:57.024198px;}
.fs19_c01243{font-size:60.588000px;}
.fs1e_c01243{font-size:60.984000px;}
.fsd_c01243{font-size:66.132198px;}
.fsf_c01243{font-size:70.488000px;}
.fs14_c01243{font-size:70.884000px;}
.fs8_c01243{font-size:71.280000px;}
.fs18_c01243{font-size:72.072198px;}
.fs3_c01243{font-size:75.636198px;}
.fs1a_c01243{font-size:76.032198px;}
.fs12_c01243{font-size:77.616198px;}
.fs17_c01243{font-size:78.210000px;}
.fs0_c01243{font-size:78.408000px;}
.fsc_c01243{font-size:82.368000px;}
.fs1f_c01243{font-size:83.556198px;}
.fs1d_c01243{font-size:87.912198px;}
.fs1c_c01243{font-size:124.542198px;}
.y0_c01243{bottom:0.000000px;}
.y1_c01243{bottom:76.500000px;}
.y27_c01243{bottom:106.831935px;}
.y25_c01243{bottom:138.546585px;}
.y26_c01243{bottom:141.402735px;}
.y24_c01243{bottom:169.201935px;}
.y23_c01243{bottom:169.914735px;}
.y22_c01243{bottom:201.985785px;}
.y21_c01243{bottom:233.710335px;}
.y20_c01243{bottom:265.073535px;}
.y1f_c01243{bottom:297.862335px;}
.y1e_c01243{bottom:329.576985px;}
.y1d_c01243{bottom:361.657935px;}
.y1c_c01243{bottom:394.085385px;}
.y1b_c01243{bottom:425.453535px;}
.y1a_c01243{bottom:456.816735px;}
.y19_c01243{bottom:457.529535px;}
.y28_c01243{bottom:484.259535px;}
.y18_c01243{bottom:486.397935px;}
.y17_c01243{bottom:488.536335px;}
.y16_c01243{bottom:502.430985px;}
.y15_c01243{bottom:519.894585px;}
.y14_c01243{bottom:550.901385px;}
.y13_c01243{bottom:582.982335px;}
.y12_c01243{bottom:613.989135px;}
.y11_c01243{bottom:646.421535px;}
.y10_c01243{bottom:669.582585px;}
.yf_c01243{bottom:677.784735px;}
.yc_c01243{bottom:707.004585px;}
.ye_c01243{bottom:708.430185px;}
.yb_c01243{bottom:709.855785px;}
.y9_c01243{bottom:741.218985px;}
.ya_c01243{bottom:741.936735px;}
.yd_c01243{bottom:772.225785px;}
.y8_c01243{bottom:773.299935px;}
.y7_c01243{bottom:805.014585px;}
.y6_c01243{bottom:836.382735px;}
.y5_c01243{bottom:868.453785px;}
.y4_c01243{bottom:882.714735px;}
.y3_c01243{bottom:899.460585px;}
.y2_c01243{bottom:931.541535px;}
.h9_c01243{height:6.646279px;}
.h13_c01243{height:19.824750px;}
.h18_c01243{height:21.683320px;}
.h4_c01243{height:28.085063px;}
.h24_c01243{height:28.911094px;}
.h16_c01243{height:29.530617px;}
.hc_c01243{height:30.150141px;}
.h7_c01243{height:32.281418px;}
.h3_c01243{height:33.230868px;}
.hb_c01243{height:34.180317px;}
.h14_c01243{height:34.280297px;}
.h8_c01243{height:35.129767px;}
.h1e_c01243{height:36.079217px;}
.h19_c01243{height:37.028666px;}
.h6_c01243{height:37.978116px;}
.h11_c01243{height:47.492156px;}
.h25_c01243{height:52.866000px;}
.he_c01243{height:54.276950px;}
.h1c_c01243{height:63.191391px;}
.h22_c01243{height:63.604406px;}
.h10_c01243{height:68.973816px;}
.ha_c01243{height:69.957422px;}
.h1b_c01243{height:70.734921px;}
.h12_c01243{height:71.038688px;}
.h17_c01243{height:71.437781px;}
.hd_c01243{height:71.836875px;}
.h5_c01243{height:74.232792px;}
.h1d_c01243{height:74.621444px;}
.h20_c01243{height:76.626200px;}
.h2_c01243{height:76.953164px;}
.h1a_c01243{height:78.821016px;}
.h15_c01243{height:80.951269px;}
.h23_c01243{height:82.005839px;}
.hf_c01243{height:83.011500px;}
.h21_c01243{height:86.238089px;}
.h1f_c01243{height:129.893621px;}
.h1_c01243{height:1110.000000px;}
.h0_c01243{height:1263.000000px;}
.w1_c01243{width:775.500000px;}
.w0_c01243{width:892.500000px;}
.x0_c01243{left:0.000000px;}
.x1_c01243{left:58.500000px;}
.xa_c01243{left:90.962835px;}
.x3_c01243{left:92.655735px;}
.x3d_c01243{left:109.708485px;}
.xf_c01243{left:111.025185px;}
.xb_c01243{left:113.485335px;}
.x32_c01243{left:163.747635px;}
.x2a_c01243{left:164.821785px;}
.x10_c01243{left:165.945435px;}
.x59_c01243{left:174.959385px;}
.x4_c01243{left:177.835335px;}
.x48_c01243{left:187.700685px;}
.x9_c01243{left:197.249235px;}
.xc_c01243{left:199.135185px;}
.x5_c01243{left:200.283585px;}
.x3e_c01243{left:210.376635px;}
.x22_c01243{left:219.831135px;}
.x6_c01243{left:232.364535px;}
.x50_c01243{left:241.734885px;}
.x18_c01243{left:242.937735px;}
.x7_c01243{left:245.902785px;}
.x20_c01243{left:254.461335px;}
.xd_c01243{left:265.574085px;}
.x56_c01243{left:275.384985px;}
.x26_c01243{left:277.364985px;}
.x11_c01243{left:289.071735px;}
.x16_c01243{left:298.753935px;}
.x4e_c01243{left:300.090435px;}
.x38_c01243{left:304.401885px;}
.x2f_c01243{left:310.940835px;}
.x41_c01243{left:320.083485px;}
.x12_c01243{left:321.202185px;}
.x4f_c01243{left:322.528785px;}
.x3f_c01243{left:331.042785px;}
.x17_c01243{left:332.151585px;}
.x30_c01243{left:333.299985px;}
.xe_c01243{left:343.081185px;}
.x45_c01243{left:345.036435px;}
.x57_c01243{left:349.031085px;}
.x53_c01243{left:351.085335px;}
.x49_c01243{left:353.055435px;}
.x33_c01243{left:354.401835px;}
.x31_c01243{left:355.441335px;}
.x5e_c01243{left:360.307185px;}
.x54_c01243{left:364.737435px;}
.x58_c01243{left:366.242235px;}
.x1e_c01243{left:376.439235px;}
.x39_c01243{left:378.102435px;}
.x23_c01243{left:386.230335px;}
.x34_c01243{left:387.502485px;}
.x3a_c01243{left:388.947885px;}
.x19_c01243{left:398.956785px;}
.x1c_c01243{left:410.356635px;}
.x46_c01243{left:411.628785px;}
.x24_c01243{left:420.657585px;}
.x47_c01243{left:421.999035px;}
.x1a_c01243{left:432.072285px;}
.x61_c01243{left:433.374135px;}
.x4a_c01243{left:434.482935px;}
.x27_c01243{left:442.249485px;}
.x62_c01243{left:444.402735px;}
.x4b_c01243{left:454.198785px;}
.x2b_c01243{left:455.238285px;}
.x25_c01243{left:456.540135px;}
.x2c_c01243{left:457.817235px;}
.x28_c01243{left:464.861085px;}
.x35_c01243{left:465.930285px;}
.x13_c01243{left:467.147985px;}
.x1f_c01243{left:477.835035px;}
.x42_c01243{left:487.343985px;}
.x1d_c01243{left:488.883435px;}
.x2d_c01243{left:498.382485px;}
.x1b_c01243{left:499.931835px;}
.x29_c01243{left:510.321885px;}
.x43_c01243{left:518.439885px;}
.x51_c01243{left:520.122885px;}
.x2e_c01243{left:530.775285px;}
.x40_c01243{left:532.829535px;}
.x36_c01243{left:541.675185px;}
.x5f_c01243{left:543.283935px;}
.x4c_c01243{left:553.990785px;}
.x5a_c01243{left:562.643385px;}
.x55_c01243{left:574.043235px;}
.x4d_c01243{left:587.324085px;}
.x52_c01243{left:597.560685px;}
.x14_c01243{left:600.520785px;}
.x60_c01243{left:608.876385px;}
.x37_c01243{left:631.329585px;}
.x5c_c01243{left:632.567085px;}
.x5b_c01243{left:641.665185px;}
.x5d_c01243{left:642.952185px;}
.x3b_c01243{left:654.564885px;}
.x2_c01243{left:687.022035px;}
.x15_c01243{left:697.040835px;}
.x21_c01243{left:699.119835px;}
.x8_c01243{left:710.410785px;}
.x44_c01243{left:712.613535px;}
.x3c_c01243{left:717.256635px;}
.x63_c01243{left:719.959335px;}
@media print{
.v1_c01243{vertical-align:-5.068800pt;}
.v0_c01243{vertical-align:0.000000pt;}
.lsf_c01243{letter-spacing:-2.562560pt;}
.ls5_c01243{letter-spacing:-2.439360pt;}
.ls13_c01243{letter-spacing:-2.414726pt;}
.ls1d_c01243{letter-spacing:-2.205280pt;}
.ls10_c01243{letter-spacing:-1.466080pt;}
.ls4_c01243{letter-spacing:0.000000pt;}
.ls17_c01243{letter-spacing:0.451880pt;}
.ls1_c01243{letter-spacing:0.575662pt;}
.lsd_c01243{letter-spacing:0.759686pt;}
.ls23_c01243{letter-spacing:0.822413pt;}
.ls12_c01243{letter-spacing:0.844800pt;}
.ls15_c01243{letter-spacing:0.924000pt;}
.ls22_c01243{letter-spacing:1.054665pt;}
.ls20_c01243{letter-spacing:1.431091pt;}
.ls1c_c01243{letter-spacing:1.550296pt;}
.ls24_c01243{letter-spacing:2.086656pt;}
.ls19_c01243{letter-spacing:2.188454pt;}
.lse_c01243{letter-spacing:2.393609pt;}
.ls1f_c01243{letter-spacing:2.404512pt;}
.ls0_c01243{letter-spacing:2.481178pt;}
.ls21_c01243{letter-spacing:2.710400pt;}
.ls11_c01243{letter-spacing:3.132800pt;}
.ls14_c01243{letter-spacing:3.150400pt;}
.lsb_c01243{letter-spacing:3.168000pt;}
.ls18_c01243{letter-spacing:3.203209pt;}
.ls6_c01243{letter-spacing:3.361609pt;}
.ls1a_c01243{letter-spacing:3.379209pt;}
.ls2_c01243{letter-spacing:3.484800pt;}
.ls1e_c01243{letter-spacing:3.907209pt;}
.lsa_c01243{letter-spacing:8.870576pt;}
.ls8_c01243{letter-spacing:43.084976pt;}
.ls3_c01243{letter-spacing:44.352176pt;}
.lsc_c01243{letter-spacing:45.619376pt;}
.ls9_c01243{letter-spacing:46.886576pt;}
.ls1b_c01243{letter-spacing:48.153776pt;}
.ls16_c01243{letter-spacing:49.420976pt;}
.ls7_c01243{letter-spacing:50.688176pt;}
.ws3_c01243{word-spacing:-18.145178pt;}
.ws0_c01243{word-spacing:-17.424000pt;}
.ws2_c01243{word-spacing:-15.664000pt;}
.ws1_c01243{word-spacing:-2.578752pt;}
.ws4_c01243{word-spacing:0.000000pt;}
._a_c01243{margin-left:-10.714176pt;}
._11_c01243{margin-left:-6.177600pt;}
._7_c01243{margin-left:-1.520640pt;}
._12_c01243{width:2.671680pt;}
._0_c01243{width:3.972672pt;}
._5_c01243{width:5.670720pt;}
._9_c01243{width:7.185024pt;}
._1_c01243{width:8.084736pt;}
._8_c01243{width:9.656064pt;}
._2_c01243{width:10.802880pt;}
._6_c01243{width:17.519040pt;}
._3_c01243{width:23.557248pt;}
._b_c01243{width:24.881472pt;}
._4_c01243{width:26.741440pt;}
._d_c01243{width:27.683040pt;}
._c_c01243{width:28.810320pt;}
._e_c01243{width:30.948720pt;}
._10_c01243{width:102.599326pt;}
._13_c01243{width:120.419200pt;}
._f_c01243{width:143.383152pt;}
.fs7_c01243{font-size:8.870576pt;}
.fs10_c01243{font-size:16.896000pt;}
.fs15_c01243{font-size:18.480000pt;}
.fs2_c01243{font-size:23.936000pt;}
.fs20_c01243{font-size:24.640000pt;}
.fs13_c01243{font-size:25.168000pt;}
.fsa_c01243{font-size:25.696000pt;}
.fs11_c01243{font-size:29.216000pt;}
.fse_c01243{font-size:41.888000pt;}
.fs5_c01243{font-size:43.084976pt;}
.fs1_c01243{font-size:44.352176pt;}
.fs21_c01243{font-size:45.056000pt;}
.fs9_c01243{font-size:45.619376pt;}
.fs6_c01243{font-size:46.886576pt;}
.fsb_c01243{font-size:47.872176pt;}
.fs1b_c01243{font-size:48.153776pt;}
.fs16_c01243{font-size:49.420976pt;}
.fs4_c01243{font-size:50.688176pt;}
.fs19_c01243{font-size:53.856000pt;}
.fs1e_c01243{font-size:54.208000pt;}
.fsd_c01243{font-size:58.784176pt;}
.fsf_c01243{font-size:62.656000pt;}
.fs14_c01243{font-size:63.008000pt;}
.fs8_c01243{font-size:63.360000pt;}
.fs18_c01243{font-size:64.064176pt;}
.fs3_c01243{font-size:67.232176pt;}
.fs1a_c01243{font-size:67.584176pt;}
.fs12_c01243{font-size:68.992176pt;}
.fs17_c01243{font-size:69.520000pt;}
.fs0_c01243{font-size:69.696000pt;}
.fsc_c01243{font-size:73.216000pt;}
.fs1f_c01243{font-size:74.272176pt;}
.fs1d_c01243{font-size:78.144176pt;}
.fs1c_c01243{font-size:110.704176pt;}
.y0_c01243{bottom:0.000000pt;}
.y1_c01243{bottom:68.000000pt;}
.y27_c01243{bottom:94.961720pt;}
.y25_c01243{bottom:123.152520pt;}
.y26_c01243{bottom:125.691320pt;}
.y24_c01243{bottom:150.401720pt;}
.y23_c01243{bottom:151.035320pt;}
.y22_c01243{bottom:179.542920pt;}
.y21_c01243{bottom:207.742520pt;}
.y20_c01243{bottom:235.620920pt;}
.y1f_c01243{bottom:264.766520pt;}
.y1e_c01243{bottom:292.957320pt;}
.y1d_c01243{bottom:321.473720pt;}
.y1c_c01243{bottom:350.298120pt;}
.y1b_c01243{bottom:378.180920pt;}
.y1a_c01243{bottom:406.059320pt;}
.y19_c01243{bottom:406.692920pt;}
.y28_c01243{bottom:430.452920pt;}
.y18_c01243{bottom:432.353720pt;}
.y17_c01243{bottom:434.254520pt;}
.y16_c01243{bottom:446.605320pt;}
.y15_c01243{bottom:462.128520pt;}
.y14_c01243{bottom:489.690120pt;}
.y13_c01243{bottom:518.206520pt;}
.y12_c01243{bottom:545.768120pt;}
.y11_c01243{bottom:574.596920pt;}
.y10_c01243{bottom:595.184520pt;}
.yf_c01243{bottom:602.475320pt;}
.yc_c01243{bottom:628.448520pt;}
.ye_c01243{bottom:629.715720pt;}
.yb_c01243{bottom:630.982920pt;}
.y9_c01243{bottom:658.861320pt;}
.ya_c01243{bottom:659.499320pt;}
.yd_c01243{bottom:686.422920pt;}
.y8_c01243{bottom:687.377720pt;}
.y7_c01243{bottom:715.568520pt;}
.y6_c01243{bottom:743.451320pt;}
.y5_c01243{bottom:771.958920pt;}
.y4_c01243{bottom:784.635320pt;}
.y3_c01243{bottom:799.520520pt;}
.y2_c01243{bottom:828.036920pt;}
.h9_c01243{height:5.907804pt;}
.h13_c01243{height:17.622000pt;}
.h18_c01243{height:19.274063pt;}
.h4_c01243{height:24.964500pt;}
.h24_c01243{height:25.698750pt;}
.h16_c01243{height:26.249438pt;}
.hc_c01243{height:26.800125pt;}
.h7_c01243{height:28.694594pt;}
.h3_c01243{height:29.538549pt;}
.hb_c01243{height:30.382504pt;}
.h14_c01243{height:30.471375pt;}
.h8_c01243{height:31.226460pt;}
.h1e_c01243{height:32.070415pt;}
.h19_c01243{height:32.914370pt;}
.h6_c01243{height:33.758325pt;}
.h11_c01243{height:42.215250pt;}
.h25_c01243{height:46.992000pt;}
.he_c01243{height:48.246177pt;}
.h1c_c01243{height:56.170125pt;}
.h22_c01243{height:56.537250pt;}
.h10_c01243{height:61.310059pt;}
.ha_c01243{height:62.184375pt;}
.h1b_c01243{height:62.875485pt;}
.h12_c01243{height:63.145500pt;}
.h17_c01243{height:63.500250pt;}
.hd_c01243{height:63.855000pt;}
.h5_c01243{height:65.984704pt;}
.h1d_c01243{height:66.330173pt;}
.h20_c01243{height:68.112177pt;}
.h2_c01243{height:68.402813pt;}
.h1a_c01243{height:70.063125pt;}
.h15_c01243{height:71.956684pt;}
.h23_c01243{height:72.894079pt;}
.hf_c01243{height:73.788000pt;}
.h21_c01243{height:76.656079pt;}
.h1f_c01243{height:115.460996pt;}
.h1_c01243{height:986.666667pt;}
.h0_c01243{height:1122.666667pt;}
.w1_c01243{width:689.333333pt;}
.w0_c01243{width:793.333333pt;}
.x0_c01243{left:0.000000pt;}
.x1_c01243{left:52.000000pt;}
.xa_c01243{left:80.855853pt;}
.x3_c01243{left:82.360653pt;}
.x3d_c01243{left:97.518653pt;}
.xf_c01243{left:98.689053pt;}
.xb_c01243{left:100.875853pt;}
.x32_c01243{left:145.553453pt;}
.x2a_c01243{left:146.508253pt;}
.x10_c01243{left:147.507053pt;}
.x59_c01243{left:155.519453pt;}
.x4_c01243{left:158.075853pt;}
.x48_c01243{left:166.845053pt;}
.x9_c01243{left:175.332653pt;}
.xc_c01243{left:177.009053pt;}
.x5_c01243{left:178.029853pt;}
.x3e_c01243{left:187.001453pt;}
.x22_c01243{left:195.405453pt;}
.x6_c01243{left:206.546253pt;}
.x50_c01243{left:214.875453pt;}
.x18_c01243{left:215.944653pt;}
.x7_c01243{left:218.580253pt;}
.x20_c01243{left:226.187853pt;}
.xd_c01243{left:236.065853pt;}
.x56_c01243{left:244.786653pt;}
.x26_c01243{left:246.546653pt;}
.x11_c01243{left:256.952653pt;}
.x16_c01243{left:265.559053pt;}
.x4e_c01243{left:266.747053pt;}
.x38_c01243{left:270.579453pt;}
.x2f_c01243{left:276.391853pt;}
.x41_c01243{left:284.518653pt;}
.x12_c01243{left:285.513053pt;}
.x4f_c01243{left:286.692253pt;}
.x3f_c01243{left:294.260253pt;}
.x17_c01243{left:295.245853pt;}
.x30_c01243{left:296.266653pt;}
.xe_c01243{left:304.961053pt;}
.x45_c01243{left:306.699053pt;}
.x57_c01243{left:310.249853pt;}
.x53_c01243{left:312.075853pt;}
.x49_c01243{left:313.827053pt;}
.x33_c01243{left:315.023853pt;}
.x31_c01243{left:315.947853pt;}
.x5e_c01243{left:320.273053pt;}
.x54_c01243{left:324.211053pt;}
.x58_c01243{left:325.548653pt;}
.x1e_c01243{left:334.612653pt;}
.x39_c01243{left:336.091053pt;}
.x23_c01243{left:343.315853pt;}
.x34_c01243{left:344.446653pt;}
.x3a_c01243{left:345.731453pt;}
.x19_c01243{left:354.628253pt;}
.x1c_c01243{left:364.761453pt;}
.x46_c01243{left:365.892253pt;}
.x24_c01243{left:373.917853pt;}
.x47_c01243{left:375.110253pt;}
.x1a_c01243{left:384.064253pt;}
.x61_c01243{left:385.221453pt;}
.x4a_c01243{left:386.207053pt;}
.x27_c01243{left:393.110653pt;}
.x62_c01243{left:395.024653pt;}
.x4b_c01243{left:403.732253pt;}
.x2b_c01243{left:404.656253pt;}
.x25_c01243{left:405.813453pt;}
.x2c_c01243{left:406.948653pt;}
.x28_c01243{left:413.209853pt;}
.x35_c01243{left:414.160253pt;}
.x13_c01243{left:415.242653pt;}
.x1f_c01243{left:424.742253pt;}
.x42_c01243{left:433.194653pt;}
.x1d_c01243{left:434.563053pt;}
.x2d_c01243{left:443.006653pt;}
.x1b_c01243{left:444.383853pt;}
.x29_c01243{left:453.619453pt;}
.x43_c01243{left:460.835453pt;}
.x51_c01243{left:462.331453pt;}
.x2e_c01243{left:471.800253pt;}
.x40_c01243{left:473.626253pt;}
.x36_c01243{left:481.489053pt;}
.x5f_c01243{left:482.919053pt;}
.x4c_c01243{left:492.436253pt;}
.x5a_c01243{left:500.127453pt;}
.x55_c01243{left:510.260653pt;}
.x4d_c01243{left:522.065853pt;}
.x52_c01243{left:531.165053pt;}
.x14_c01243{left:533.796253pt;}
.x60_c01243{left:541.223453pt;}
.x37_c01243{left:561.181853pt;}
.x5c_c01243{left:562.281853pt;}
.x5b_c01243{left:570.369053pt;}
.x5d_c01243{left:571.513053pt;}
.x3b_c01243{left:581.835453pt;}
.x2_c01243{left:610.686253pt;}
.x15_c01243{left:619.591853pt;}
.x21_c01243{left:621.439853pt;}
.x8_c01243{left:631.476253pt;}
.x44_c01243{left:633.434253pt;}
.x3c_c01243{left:637.561453pt;}
.x63_c01243{left:639.963853pt;}
}





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

.ir_c01244:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01244{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01244;src:url('chunks/assets/font_8dbc35930b97f67a7fc35d3a.woff2')format("woff");}.ff1_c01244{font-family:ff1_c01244;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01244;src:url('chunks/assets/font_434b4d503fe739fd73eaba3e.woff2')format("woff");}.ff2_c01244{font-family:ff2_c01244;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01244;src:url('chunks/assets/font_1e77f66c5fa7ac1596414a18.woff2')format("woff");}.ff3_c01244{font-family:ff3_c01244;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01244;src:url('chunks/assets/font_cec31b1753631be3af29d573.woff2')format("woff");}.ff4_c01244{font-family:ff4_c01244;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01244;src:url('chunks/assets/font_9181e9ba78287e801b7c89f3.woff2')format("woff");}.ff5_c01244{font-family:ff5_c01244;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01244;src:url('chunks/assets/font_4d1a26eafefa92520d7ba69f.woff2')format("woff");}.ff6_c01244{font-family:ff6_c01244;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.me_c01244{transform:matrix(0.026317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026317,0.000000,0.000000,0.250000,0,0);}
.m10_c01244{transform:matrix(0.072369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072369,0.000000,0.000000,0.250000,0,0);}
.m97_c01244{transform:matrix(0.095209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095209,0.000000,0.000000,0.250000,0,0);}
.m98_c01244{transform:matrix(0.130434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130434,0.000000,0.000000,0.250000,0,0);}
.m35_c01244{transform:matrix(0.132676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132676,0.000000,0.000000,0.250000,0,0);}
.m7a_c01244{transform:matrix(0.165973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165973,0.000000,0.000000,0.250000,0,0);}
.m40_c01244{transform:matrix(0.175163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175163,0.000000,0.000000,0.250000,0,0);}
.m66_c01244{transform:matrix(0.176395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176395,0.000000,0.000000,0.250000,0,0);}
.mf_c01244{transform:matrix(0.181287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181287,0.000000,0.000000,0.250000,0,0);}
.m3_c01244{transform:matrix(0.183761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183761,0.000000,0.000000,0.250000,0,0);}
.mc_c01244{transform:matrix(0.184210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184210,0.000000,0.000000,0.250000,0,0);}
.m5d_c01244{transform:matrix(0.190832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190832,0.000000,0.000000,0.250000,0,0);}
.m12_c01244{transform:matrix(0.191603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191603,0.000000,0.000000,0.250000,0,0);}
.m62_c01244{transform:matrix(0.208182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208182,0.000000,0.000000,0.250000,0,0);}
.m5a_c01244{transform:matrix(0.220149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220149,0.000000,0.000000,0.250000,0,0);}
.m88_c01244{transform:matrix(0.224573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224573,0.000000,0.000000,0.250000,0,0);}
.m38_c01244{transform:matrix(0.235081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235081,0.000000,0.000000,0.250000,0,0);}
.m8_c01244{transform:matrix(0.235959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235959,0.000000,0.000000,0.250000,0,0);}
.md_c01244{transform:matrix(0.237939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237939,0.000000,0.000000,0.250000,0,0);}
.m0_c01244{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m65_c01244{transform:matrix(0.250738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250738,0.000000,0.000000,0.250000,0,0);}
.m47_c01244{transform:matrix(0.252748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252748,0.000000,0.000000,0.250000,0,0);}
.m37_c01244{transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);}
.m26_c01244{transform:matrix(0.255288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255288,0.000000,0.000000,0.250000,0,0);}
.m4a_c01244{transform:matrix(0.256057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256057,0.000000,0.000000,0.250000,0,0);}
.m70_c01244{transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256872,0.000000,0.000000,0.250000,0,0);}
.m84_c01244{transform:matrix(0.257308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257308,0.000000,0.000000,0.250000,0,0);}
.m16_c01244{transform:matrix(0.258675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258675,0.000000,0.000000,0.250000,0,0);}
.m9_c01244{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m2f_c01244{transform:matrix(0.259766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259766,0.000000,0.000000,0.250000,0,0);}
.m85_c01244{transform:matrix(0.261057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261057,0.000000,0.000000,0.250000,0,0);}
.m2a_c01244{transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261543,0.000000,0.000000,0.250000,0,0);}
.m7_c01244{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m75_c01244{transform:matrix(0.264652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264652,0.000000,0.000000,0.250000,0,0);}
.m23_c01244{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m3e_c01244{transform:matrix(0.266364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266364,0.000000,0.000000,0.250000,0,0);}
.m19_c01244{transform:matrix(0.267439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267439,0.000000,0.000000,0.250000,0,0);}
.m8d_c01244{transform:matrix(0.267625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267625,0.000000,0.000000,0.250000,0,0);}
.m13_c01244{transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267924,0.000000,0.000000,0.250000,0,0);}
.m18_c01244{transform:matrix(0.268165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268165,0.000000,0.000000,0.250000,0,0);}
.m46_c01244{transform:matrix(0.268756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268756,0.000000,0.000000,0.250000,0,0);}
.m4c_c01244{transform:matrix(0.268797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268797,0.000000,0.000000,0.250000,0,0);}
.m36_c01244{transform:matrix(0.269912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269912,0.000000,0.000000,0.250000,0,0);}
.m55_c01244{transform:matrix(0.270484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270484,0.000000,0.000000,0.250000,0,0);}
.m80_c01244{transform:matrix(0.270599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270599,0.000000,0.000000,0.250000,0,0);}
.m11_c01244{transform:matrix(0.270814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270814,0.000000,0.000000,0.250000,0,0);}
.m43_c01244{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m7e_c01244{transform:matrix(0.271578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271578,0.000000,0.000000,0.250000,0,0);}
.m2d_c01244{transform:matrix(0.272044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272044,0.000000,0.000000,0.250000,0,0);}
.m22_c01244{transform:matrix(0.272183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272183,0.000000,0.000000,0.250000,0,0);}
.m1_c01244{transform:matrix(0.272372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272372,0.000000,0.000000,0.250000,0,0);}
.m92_c01244{transform:matrix(0.273573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273573,0.000000,0.000000,0.250000,0,0);}
.m6c_c01244{transform:matrix(0.274003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274003,0.000000,0.000000,0.250000,0,0);}
.m7d_c01244{transform:matrix(0.274285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274285,0.000000,0.000000,0.250000,0,0);}
.m77_c01244{transform:matrix(0.275518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275518,0.000000,0.000000,0.250000,0,0);}
.m5e_c01244{transform:matrix(0.277819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277819,0.000000,0.000000,0.250000,0,0);}
.m69_c01244{transform:matrix(0.278126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278126,0.000000,0.000000,0.250000,0,0);}
.m86_c01244{transform:matrix(0.279745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279745,0.000000,0.000000,0.250000,0,0);}
.m5c_c01244{transform:matrix(0.280175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280175,0.000000,0.000000,0.250000,0,0);}
.m2c_c01244{transform:matrix(0.281304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281304,0.000000,0.000000,0.250000,0,0);}
.m72_c01244{transform:matrix(0.281955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281955,0.000000,0.000000,0.250000,0,0);}
.m63_c01244{transform:matrix(0.282097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282097,0.000000,0.000000,0.250000,0,0);}
.m8e_c01244{transform:matrix(0.282333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282333,0.000000,0.000000,0.250000,0,0);}
.m32_c01244{transform:matrix(0.283794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283794,0.000000,0.000000,0.250000,0,0);}
.m31_c01244{transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285275,0.000000,0.000000,0.250000,0,0);}
.m45_c01244{transform:matrix(0.285402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285402,0.000000,0.000000,0.250000,0,0);}
.m64_c01244{transform:matrix(0.286056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286056,0.000000,0.000000,0.250000,0,0);}
.m3b_c01244{transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);}
.m94_c01244{transform:matrix(0.289030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289030,0.000000,0.000000,0.250000,0,0);}
.m89_c01244{transform:matrix(0.290944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290944,0.000000,0.000000,0.250000,0,0);}
.m3c_c01244{transform:matrix(0.291150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291150,0.000000,0.000000,0.250000,0,0);}
.m58_c01244{transform:matrix(0.293448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293448,0.000000,0.000000,0.250000,0,0);}
.m50_c01244{transform:matrix(0.295090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295090,0.000000,0.000000,0.250000,0,0);}
.m90_c01244{transform:matrix(0.295212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295212,0.000000,0.000000,0.250000,0,0);}
.m60_c01244{transform:matrix(0.297105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297105,0.000000,0.000000,0.250000,0,0);}
.m1e_c01244{transform:matrix(0.298122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298122,0.000000,0.000000,0.250000,0,0);}
.m6b_c01244{transform:matrix(0.298367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298367,0.000000,0.000000,0.250000,0,0);}
.m5b_c01244{transform:matrix(0.299264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299264,0.000000,0.000000,0.250000,0,0);}
.m28_c01244{transform:matrix(0.300069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300069,0.000000,0.000000,0.250000,0,0);}
.m42_c01244{transform:matrix(0.301192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301192,0.000000,0.000000,0.250000,0,0);}
.m79_c01244{transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);}
.m71_c01244{transform:matrix(0.302295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302295,0.000000,0.000000,0.250000,0,0);}
.m14_c01244{transform:matrix(0.302936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302936,0.000000,0.000000,0.250000,0,0);}
.m59_c01244{transform:matrix(0.304307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304307,0.000000,0.000000,0.250000,0,0);}
.mb_c01244{transform:matrix(0.304460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304460,0.000000,0.000000,0.250000,0,0);}
.m8f_c01244{transform:matrix(0.305335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305335,0.000000,0.000000,0.250000,0,0);}
.m15_c01244{transform:matrix(0.305586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305586,0.000000,0.000000,0.250000,0,0);}
.m6a_c01244{transform:matrix(0.305693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305693,0.000000,0.000000,0.250000,0,0);}
.m4_c01244{transform:matrix(0.305754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305754,0.000000,0.000000,0.250000,0,0);}
.m2b_c01244{transform:matrix(0.306703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306703,0.000000,0.000000,0.250000,0,0);}
.m1f_c01244{transform:matrix(0.306770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306770,0.000000,0.000000,0.250000,0,0);}
.m3d_c01244{transform:matrix(0.308963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308963,0.000000,0.000000,0.250000,0,0);}
.m4f_c01244{transform:matrix(0.310482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310482,0.000000,0.000000,0.250000,0,0);}
.m56_c01244{transform:matrix(0.311932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311932,0.000000,0.000000,0.250000,0,0);}
.m2_c01244{transform:matrix(0.312908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312908,0.000000,0.000000,0.250000,0,0);}
.m87_c01244{transform:matrix(0.312959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312959,0.000000,0.000000,0.250000,0,0);}
.m82_c01244{transform:matrix(0.318106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318106,0.000000,0.000000,0.250000,0,0);}
.m81_c01244{transform:matrix(0.318170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318170,0.000000,0.000000,0.250000,0,0);}
.m83_c01244{transform:matrix(0.318208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318208,0.000000,0.000000,0.250000,0,0);}
.m33_c01244{transform:matrix(0.319377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319377,0.000000,0.000000,0.250000,0,0);}
.m1d_c01244{transform:matrix(0.319617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319617,0.000000,0.000000,0.250000,0,0);}
.m8c_c01244{transform:matrix(0.320299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320299,0.000000,0.000000,0.250000,0,0);}
.ma_c01244{transform:matrix(0.320693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320693,0.000000,0.000000,0.250000,0,0);}
.m8a_c01244{transform:matrix(0.321107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321107,0.000000,0.000000,0.250000,0,0);}
.m4e_c01244{transform:matrix(0.322125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322125,0.000000,0.000000,0.250000,0,0);}
.m2e_c01244{transform:matrix(0.322227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322227,0.000000,0.000000,0.250000,0,0);}
.m57_c01244{transform:matrix(0.322405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322405,0.000000,0.000000,0.250000,0,0);}
.m27_c01244{transform:matrix(0.322496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322496,0.000000,0.000000,0.250000,0,0);}
.m17_c01244{transform:matrix(0.323414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323414,0.000000,0.000000,0.250000,0,0);}
.m48_c01244{transform:matrix(0.324585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324585,0.000000,0.000000,0.250000,0,0);}
.m95_c01244{transform:matrix(0.324763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324763,0.000000,0.000000,0.250000,0,0);}
.m30_c01244{transform:matrix(0.325665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325665,0.000000,0.000000,0.250000,0,0);}
.m61_c01244{transform:matrix(0.326703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326703,0.000000,0.000000,0.250000,0,0);}
.m49_c01244{transform:matrix(0.327064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327064,0.000000,0.000000,0.250000,0,0);}
.m39_c01244{transform:matrix(0.327537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327537,0.000000,0.000000,0.250000,0,0);}
.m78_c01244{transform:matrix(0.327666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327666,0.000000,0.000000,0.250000,0,0);}
.m93_c01244{transform:matrix(0.328578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328578,0.000000,0.000000,0.250000,0,0);}
.m44_c01244{transform:matrix(0.328711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328711,0.000000,0.000000,0.250000,0,0);}
.m41_c01244{transform:matrix(0.328864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328864,0.000000,0.000000,0.250000,0,0);}
.m6_c01244{transform:matrix(0.329165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329165,0.000000,0.000000,0.250000,0,0);}
.m96_c01244{transform:matrix(0.329397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329397,0.000000,0.000000,0.250000,0,0);}
.m51_c01244{transform:matrix(0.330019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330019,0.000000,0.000000,0.250000,0,0);}
.m24_c01244{transform:matrix(0.331086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331086,0.000000,0.000000,0.250000,0,0);}
.m3f_c01244{transform:matrix(0.332741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332741,0.000000,0.000000,0.250000,0,0);}
.m4b_c01244{transform:matrix(0.333358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333358,0.000000,0.000000,0.250000,0,0);}
.m29_c01244{transform:matrix(0.334644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334644,0.000000,0.000000,0.250000,0,0);}
.m73_c01244{transform:matrix(0.334952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334952,0.000000,0.000000,0.250000,0,0);}
.m6e_c01244{transform:matrix(0.335745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335745,0.000000,0.000000,0.250000,0,0);}
.m7f_c01244{transform:matrix(0.340057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340057,0.000000,0.000000,0.250000,0,0);}
.m25_c01244{transform:matrix(0.341900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341900,0.000000,0.000000,0.250000,0,0);}
.m3a_c01244{transform:matrix(0.343381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343381,0.000000,0.000000,0.250000,0,0);}
.m54_c01244{transform:matrix(0.345211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345211,0.000000,0.000000,0.250000,0,0);}
.m74_c01244{transform:matrix(0.346716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346716,0.000000,0.000000,0.250000,0,0);}
.m91_c01244{transform:matrix(0.354764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354764,0.000000,0.000000,0.250000,0,0);}
.m6f_c01244{transform:matrix(0.355566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355566,0.000000,0.000000,0.250000,0,0);}
.m6d_c01244{transform:matrix(0.355852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355852,0.000000,0.000000,0.250000,0,0);}
.m52_c01244{transform:matrix(0.357220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357220,0.000000,0.000000,0.250000,0,0);}
.m8b_c01244{transform:matrix(0.359212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359212,0.000000,0.000000,0.250000,0,0);}
.m53_c01244{transform:matrix(0.359561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359561,0.000000,0.000000,0.250000,0,0);}
.m34_c01244{transform:matrix(0.360161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360161,0.000000,0.000000,0.250000,0,0);}
.m20_c01244{transform:matrix(0.366157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366157,0.000000,0.000000,0.250000,0,0);}
.m4d_c01244{transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366416,0.000000,0.000000,0.250000,0,0);}
.m7b_c01244{transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);}
.m67_c01244{transform:matrix(0.374814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374814,0.000000,0.000000,0.250000,0,0);}
.m7c_c01244{transform:matrix(0.374997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374997,0.000000,0.000000,0.250000,0,0);}
.m21_c01244{transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);}
.m5_c01244{transform:matrix(0.402409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402409,0.000000,0.000000,0.250000,0,0);}
.m76_c01244{transform:matrix(0.404579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404579,0.000000,0.000000,0.250000,0,0);}
.m1a_c01244{transform:matrix(0.421516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421516,0.000000,0.000000,0.250000,0,0);}
.m5f_c01244{transform:matrix(0.425176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425176,0.000000,0.000000,0.250000,0,0);}
.m1b_c01244{transform:matrix(0.441018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441018,0.000000,0.000000,0.250000,0,0);}
.m1c_c01244{transform:matrix(0.501721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501721,0.000000,0.000000,0.250000,0,0);}
.m68_c01244{transform:matrix(0.965643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.965643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.965643,0.000000,0.000000,0.250000,0,0);}
.v0_c01244{vertical-align:0.000000px;}
.ls19_c01244{letter-spacing:-3.160080px;}
.ls8_c01244{letter-spacing:-2.882880px;}
.lsb_c01244{letter-spacing:-2.744280px;}
.ls10_c01244{letter-spacing:-2.252250px;}
.ls11_c01244{letter-spacing:-1.801800px;}
.lse_c01244{letter-spacing:-1.750201px;}
.ls17_c01244{letter-spacing:-1.152598px;}
.ls1c_c01244{letter-spacing:-0.762300px;}
.ls4_c01244{letter-spacing:0.000000px;}
.ls12_c01244{letter-spacing:0.095991px;}
.ls1d_c01244{letter-spacing:1.089000px;}
.ls23_c01244{letter-spacing:1.395662px;}
.ls22_c01244{letter-spacing:1.583842px;}
.ls1a_c01244{letter-spacing:1.819066px;}
.lsc_c01244{letter-spacing:1.928837px;}
.ls21_c01244{letter-spacing:2.117016px;}
.ls13_c01244{letter-spacing:2.129851px;}
.ls15_c01244{letter-spacing:3.026549px;}
.ls0_c01244{letter-spacing:3.178890px;}
.ls1_c01244{letter-spacing:3.217500px;}
.ls25_c01244{letter-spacing:3.246091px;}
.ls9_c01244{letter-spacing:3.355862px;}
.ls18_c01244{letter-spacing:3.504610px;}
.ls16_c01244{letter-spacing:3.524400px;}
.ls14_c01244{letter-spacing:3.536201px;}
.ls1b_c01244{letter-spacing:3.593700px;}
.ls1e_c01244{letter-spacing:3.702610px;}
.ls5_c01244{letter-spacing:3.861000px;}
.lsf_c01244{letter-spacing:3.880810px;}
.ls7_c01244{letter-spacing:3.920400px;}
.lsd_c01244{letter-spacing:4.118400px;}
.ls24_c01244{letter-spacing:4.187700px;}
.ls20_c01244{letter-spacing:8.553798px;}
.ls3_c01244{letter-spacing:12.231648px;}
.ls2_c01244{letter-spacing:23.051952px;}
.ls26_c01244{letter-spacing:32.788998px;}
.lsa_c01244{letter-spacing:54.172998px;}
.ls6_c01244{letter-spacing:55.598598px;}
.ls1f_c01244{letter-spacing:57.024198px;}
.sc__c01244{text-shadow:none;}
.sc0_c01244{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01244{-webkit-text-stroke:0px transparent;}
.sc0_c01244{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c01244{word-spacing:-22.848091px;}
.ws4_c01244{word-spacing:-22.628549px;}
.ws9_c01244{word-spacing:-21.421066px;}
.ws0_c01244{word-spacing:-21.068190px;}
.ws1_c01244{word-spacing:-19.602000px;}
.ws6_c01244{word-spacing:-18.449402px;}
.ws7_c01244{word-spacing:-17.889300px;}
.ws2_c01244{word-spacing:-16.087500px;}
.wsd_c01244{word-spacing:-2.823480px;}
.wsa_c01244{word-spacing:-1.332936px;}
.wse_c01244{word-spacing:0.000000px;}
.ws8_c01244{word-spacing:1.332936px;}
.ws5_c01244{word-spacing:3.606768px;}
.ws3_c01244{word-spacing:3.763584px;}
.wsb_c01244{word-spacing:7.056720px;}
._1a_c01244{margin-left:-14.166306px;}
._e_c01244{margin-left:-11.839608px;}
._15_c01244{margin-left:-10.813928px;}
._c_c01244{margin-left:-7.762392px;}
._12_c01244{margin-left:-1.097712px;}
._9_c01244{width:1.956240px;}
._8_c01244{width:3.268980px;}
._5_c01244{width:4.839120px;}
._a_c01244{width:6.639930px;}
._1_c01244{width:7.762392px;}
._3_c01244{width:9.330750px;}
._16_c01244{width:10.620275px;}
._13_c01244{width:11.792167px;}
._7_c01244{width:13.642200px;}
._f_c01244{width:21.232886px;}
._0_c01244{width:23.819252px;}
._1b_c01244{width:25.345426px;}
._18_c01244{width:26.650800px;}
._6_c01244{width:27.991656px;}
._10_c01244{width:29.638224px;}
._2_c01244{width:31.496256px;}
._17_c01244{width:32.561100px;}
._4_c01244{width:34.620300px;}
._1c_c01244{width:37.051789px;}
._14_c01244{width:39.124800px;}
._11_c01244{width:41.321808px;}
._19_c01244{width:42.696967px;}
._d_c01244{width:44.300520px;}
._b_c01244{width:86.366610px;}
.fc0_c01244{color:transparent;}
.fs19_c01244{font-size:4.158000px;}
.fs18_c01244{font-size:8.553798px;}
.fs15_c01244{font-size:21.780000px;}
.fs1_c01244{font-size:22.176000px;}
.fs1d_c01244{font-size:25.146000px;}
.fs0_c01244{font-size:27.720000px;}
.fs1e_c01244{font-size:32.788998px;}
.fs1a_c01244{font-size:33.660000px;}
.fs20_c01244{font-size:38.808000px;}
.fs21_c01244{font-size:39.204000px;}
.fs1f_c01244{font-size:53.856198px;}
.fs7_c01244{font-size:54.172998px;}
.fs3_c01244{font-size:55.598598px;}
.fs17_c01244{font-size:57.024198px;}
.fs9_c01244{font-size:64.350000px;}
.fsc_c01244{font-size:66.330000px;}
.fs1c_c01244{font-size:66.528000px;}
.fs10_c01244{font-size:69.894000px;}
.fs11_c01244{font-size:70.092198px;}
.fsf_c01244{font-size:70.488000px;}
.fs13_c01244{font-size:71.874000px;}
.fs14_c01244{font-size:72.468000px;}
.fs16_c01244{font-size:74.052198px;}
.fsa_c01244{font-size:76.428000px;}
.fs2_c01244{font-size:77.220000px;}
.fsb_c01244{font-size:77.616198px;}
.fs4_c01244{font-size:78.408000px;}
.fs8_c01244{font-size:79.200000px;}
.fsd_c01244{font-size:79.992198px;}
.fs5_c01244{font-size:81.972198px;}
.fs6_c01244{font-size:82.368000px;}
.fs1b_c01244{font-size:83.754000px;}
.fse_c01244{font-size:85.536198px;}
.fs12_c01244{font-size:90.288000px;}
.y0_c01244{bottom:0.000000px;}
.y26_c01244{bottom:74.755935px;}
.y1_c01244{bottom:76.500000px;}
.y25_c01244{bottom:83.309535px;}
.y24_c01244{bottom:94.001535px;}
.y23_c01244{bottom:106.831935px;}
.y27_c01244{bottom:166.702185px;}
.y22_c01244{bottom:169.558335px;}
.y21_c01244{bottom:201.985785px;}
.y20_c01244{bottom:233.710335px;}
.y1f_c01244{bottom:259.371135px;}
.y1e_c01244{bottom:265.786335px;}
.y1d_c01244{bottom:297.149535px;}
.y1c_c01244{bottom:324.592335px;}
.y1b_c01244{bottom:329.220585px;}
.y1a_c01244{bottom:360.232335px;}
.y19_c01244{bottom:360.239463px;}
.y18_c01244{bottom:392.308335px;}
.y17_c01244{bottom:423.666585px;}
.y16_c01244{bottom:455.742585px;}
.y15_c01244{bottom:487.110735px;}
.y14_c01244{bottom:518.830335px;}
.y12_c01244{bottom:550.893960px;}
.y13_c01244{bottom:550.901385px;}
.yd_c01244{bottom:581.908185px;}
.y11_c01244{bottom:582.982335px;}
.y10_c01244{bottom:614.696985px;}
.yf_c01244{bottom:646.421535px;}
.ye_c01244{bottom:678.141135px;}
.yc_c01244{bottom:709.147935px;}
.yb_c01244{bottom:741.580335px;}
.ya_c01244{bottom:772.587135px;}
.y9_c01244{bottom:804.658185px;}
.y8_c01244{bottom:836.021385px;}
.y2_c01244{bottom:845.292735px;}
.y7_c01244{bottom:867.745935px;}
.y6_c01244{bottom:900.534735px;}
.y5_c01244{bottom:932.249385px;}
.y4_c01244{bottom:989.632755px;}
.y3_c01244{bottom:1040.238585px;}
.h1a_c01244{height:4.080850px;}
.h19_c01244{height:5.696829px;}
.h1f_c01244{height:21.837473px;}
.h16_c01244{height:21.950156px;}
.h3_c01244{height:23.128875px;}
.h1e_c01244{height:26.226492px;}
.h2_c01244{height:28.911094px;}
.h1b_c01244{height:33.035449px;}
.h9_c01244{height:36.079217px;}
.h5_c01244{height:37.028666px;}
.h18_c01244{height:37.978116px;}
.h21_c01244{height:38.476582px;}
.h20_c01244{height:56.170332px;}
.hb_c01244{height:67.115039px;}
.he_c01244{height:69.180117px;}
.h1d_c01244{height:69.386625px;}
.h11_c01244{height:70.440047px;}
.h12_c01244{height:70.639793px;}
.h14_c01244{height:72.435516px;}
.h15_c01244{height:73.034156px;}
.h17_c01244{height:74.630731px;}
.h4_c01244{height:75.787207px;}
.hd_c01244{height:76.176054px;}
.h6_c01244{height:76.953164px;}
.ha_c01244{height:77.730469px;}
.hc_c01244{height:79.712016px;}
.h7_c01244{height:80.451229px;}
.hf_c01244{height:80.617137px;}
.h8_c01244{height:80.839688px;}
.h1c_c01244{height:82.159075px;}
.h10_c01244{height:83.949101px;}
.h13_c01244{height:94.167563px;}
.h1_c01244{height:1110.000000px;}
.h0_c01244{height:1263.000000px;}
.w1_c01244{width:775.500000px;}
.w0_c01244{width:892.500000px;}
.x0_c01244{left:0.000000px;}
.x1_c01244{left:58.500000px;}
.x29_c01244{left:111.376635px;}
.x2_c01244{left:124.261485px;}
.x1d_c01244{left:166.296885px;}
.x8_c01244{left:167.851185px;}
.x3f_c01244{left:179.424285px;}
.x2a_c01244{left:199.456935px;}
.x43_c01244{left:222.509085px;}
.x2b_c01244{left:234.601935px;}
.x58_c01244{left:243.244635px;}
.x35_c01244{left:244.343535px;}
.x9_c01244{left:245.650335px;}
.x13_c01244{left:255.530535px;}
.x40_c01244{left:257.055135px;}
.x44_c01244{left:266.529435px;}
.x3b_c01244{left:268.207485px;}
.x36_c01244{left:276.815535px;}
.x41_c01244{left:278.280735px;}
.x49_c01244{left:279.938985px;}
.x30_c01244{left:289.898385px;}
.x1e_c01244{left:301.926885px;}
.x2c_c01244{left:311.044785px;}
.x1f_c01244{left:313.321785px;}
.xa_c01244{left:322.494135px;}
.x3c_c01244{left:324.073185px;}
.x2d_c01244{left:333.671235px;}
.x14_c01244{left:335.720535px;}
.x15_c01244{left:344.234535px;}
.x20_c01244{left:345.496785px;}
.x26_c01244{left:347.219385px;}
.x37_c01244{left:354.956235px;}
.xb_c01244{left:356.465985px;}
.x4d_c01244{left:365.390835px;}
.x5c_c01244{left:366.554085px;}
.x16_c01244{left:367.791585px;}
.x21_c01244{left:378.582585px;}
.xc_c01244{left:379.701285px;}
.xd_c01244{left:389.908185px;}
.x45_c01244{left:401.025885px;}
.x3d_c01244{left:412.529685px;}
.x56_c01244{left:414.524535px;}
.x31_c01244{left:423.518685px;}
.x48_c01244{left:433.834485px;}
.x2e_c01244{left:434.923485px;}
.x38_c01244{left:445.645185px;}
.x4e_c01244{left:447.006435px;}
.x22_c01244{left:456.693585px;}
.x50_c01244{left:457.856835px;}
.x17_c01244{left:459.742785px;}
.x5b_c01244{left:464.598735px;}
.xe_c01244{left:468.093435px;}
.x59_c01244{left:477.745935px;}
.x18_c01244{left:478.795335px;}
.x4a_c01244{left:489.279435px;}
.x23_c01244{left:490.883235px;}
.x42_c01244{left:499.550685px;}
.xf_c01244{left:500.966385px;}
.x27_c01244{left:502.258335px;}
.x46_c01244{left:511.940535px;}
.x5d_c01244{left:513.178035px;}
.x55_c01244{left:518.870535px;}
.x19_c01244{left:521.395035px;}
.x32_c01244{left:522.988935px;}
.x39_c01244{left:534.180885px;}
.x2f_c01244{left:535.576785px;}
.x1a_c01244{left:544.541235px;}
.x52_c01244{left:545.793585px;}
.x4b_c01244{left:547.818135px;}
.x10_c01244{left:556.485585px;}
.x5a_c01244{left:565.905435px;}
.x1b_c01244{left:567.524085px;}
.x24_c01244{left:578.577435px;}
.x11_c01244{left:589.353585px;}
.x28_c01244{left:590.556435px;}
.x5e_c01244{left:597.931935px;}
.x4c_c01244{left:599.600085px;}
.x1c_c01244{left:600.763335px;}
.x33_c01244{left:601.956285px;}
.x25_c01244{left:611.791935px;}
.x3a_c01244{left:623.132385px;}
.x34_c01244{left:624.345135px;}
.x47_c01244{left:633.829335px;}
.x54_c01244{left:643.749135px;}
.x51_c01244{left:657.312135px;}
.x5f_c01244{left:676.839885px;}
.x53_c01244{left:679.354485px;}
.x3_c01244{left:680.626635px;}
.x4_c01244{left:684.900960px;}
.x57_c01244{left:687.452685px;}
.x4f_c01244{left:688.497135px;}
.x5_c01244{left:689.516835px;}
.x3e_c01244{left:700.060335px;}
.x12_c01244{left:701.164185px;}
.x6_c01244{left:712.262085px;}
.x62_c01244{left:715.628085px;}
.x60_c01244{left:718.939635px;}
.x61_c01244{left:720.454335px;}
.x7_c01244{left:723.483735px;}
.x63_c01244{left:763.949985px;}
@media print{
.v0_c01244{vertical-align:0.000000pt;}
.ls19_c01244{letter-spacing:-2.808960pt;}
.ls8_c01244{letter-spacing:-2.562560pt;}
.lsb_c01244{letter-spacing:-2.439360pt;}
.ls10_c01244{letter-spacing:-2.002000pt;}
.ls11_c01244{letter-spacing:-1.601600pt;}
.lse_c01244{letter-spacing:-1.555734pt;}
.ls17_c01244{letter-spacing:-1.024531pt;}
.ls1c_c01244{letter-spacing:-0.677600pt;}
.ls4_c01244{letter-spacing:0.000000pt;}
.ls12_c01244{letter-spacing:0.085325pt;}
.ls1d_c01244{letter-spacing:0.968000pt;}
.ls23_c01244{letter-spacing:1.240589pt;}
.ls22_c01244{letter-spacing:1.407859pt;}
.ls1a_c01244{letter-spacing:1.616947pt;}
.lsc_c01244{letter-spacing:1.714522pt;}
.ls21_c01244{letter-spacing:1.881792pt;}
.ls13_c01244{letter-spacing:1.893201pt;}
.ls15_c01244{letter-spacing:2.690266pt;}
.ls0_c01244{letter-spacing:2.825680pt;}
.ls1_c01244{letter-spacing:2.860000pt;}
.ls25_c01244{letter-spacing:2.885414pt;}
.ls9_c01244{letter-spacing:2.982989pt;}
.ls18_c01244{letter-spacing:3.115209pt;}
.ls16_c01244{letter-spacing:3.132800pt;}
.ls14_c01244{letter-spacing:3.143290pt;}
.ls1b_c01244{letter-spacing:3.194400pt;}
.ls1e_c01244{letter-spacing:3.291209pt;}
.ls5_c01244{letter-spacing:3.432000pt;}
.lsf_c01244{letter-spacing:3.449609pt;}
.ls7_c01244{letter-spacing:3.484800pt;}
.lsd_c01244{letter-spacing:3.660800pt;}
.ls24_c01244{letter-spacing:3.722400pt;}
.ls20_c01244{letter-spacing:7.603376pt;}
.ls3_c01244{letter-spacing:10.872576pt;}
.ls2_c01244{letter-spacing:20.490624pt;}
.ls26_c01244{letter-spacing:29.145776pt;}
.lsa_c01244{letter-spacing:48.153776pt;}
.ls6_c01244{letter-spacing:49.420976pt;}
.ls1f_c01244{letter-spacing:50.688176pt;}
.wsc_c01244{word-spacing:-20.309414pt;}
.ws4_c01244{word-spacing:-20.114266pt;}
.ws9_c01244{word-spacing:-19.040947pt;}
.ws0_c01244{word-spacing:-18.727280pt;}
.ws1_c01244{word-spacing:-17.424000pt;}
.ws6_c01244{word-spacing:-16.399469pt;}
.ws7_c01244{word-spacing:-15.901600pt;}
.ws2_c01244{word-spacing:-14.300000pt;}
.wsd_c01244{word-spacing:-2.509760pt;}
.wsa_c01244{word-spacing:-1.184832pt;}
.wse_c01244{word-spacing:0.000000pt;}
.ws8_c01244{word-spacing:1.184832pt;}
.ws5_c01244{word-spacing:3.206016pt;}
.ws3_c01244{word-spacing:3.345408pt;}
.wsb_c01244{word-spacing:6.272640pt;}
._1a_c01244{margin-left:-12.592272pt;}
._e_c01244{margin-left:-10.524096pt;}
._15_c01244{margin-left:-9.612381pt;}
._c_c01244{margin-left:-6.899904pt;}
._12_c01244{margin-left:-0.975744pt;}
._9_c01244{width:1.738880pt;}
._8_c01244{width:2.905760pt;}
._5_c01244{width:4.301440pt;}
._a_c01244{width:5.902160pt;}
._1_c01244{width:6.899904pt;}
._3_c01244{width:8.294000pt;}
._16_c01244{width:9.440244pt;}
._13_c01244{width:10.481926pt;}
._7_c01244{width:12.126400pt;}
._f_c01244{width:18.873677pt;}
._0_c01244{width:21.172668pt;}
._1b_c01244{width:22.529267pt;}
._18_c01244{width:23.689600pt;}
._6_c01244{width:24.881472pt;}
._10_c01244{width:26.345088pt;}
._2_c01244{width:27.996672pt;}
._17_c01244{width:28.943200pt;}
._4_c01244{width:30.773600pt;}
._1c_c01244{width:32.934924pt;}
._14_c01244{width:34.777600pt;}
._11_c01244{width:36.730496pt;}
._19_c01244{width:37.952860pt;}
._d_c01244{width:39.378240pt;}
._b_c01244{width:76.770320pt;}
.fs19_c01244{font-size:3.696000pt;}
.fs18_c01244{font-size:7.603376pt;}
.fs15_c01244{font-size:19.360000pt;}
.fs1_c01244{font-size:19.712000pt;}
.fs1d_c01244{font-size:22.352000pt;}
.fs0_c01244{font-size:24.640000pt;}
.fs1e_c01244{font-size:29.145776pt;}
.fs1a_c01244{font-size:29.920000pt;}
.fs20_c01244{font-size:34.496000pt;}
.fs21_c01244{font-size:34.848000pt;}
.fs1f_c01244{font-size:47.872176pt;}
.fs7_c01244{font-size:48.153776pt;}
.fs3_c01244{font-size:49.420976pt;}
.fs17_c01244{font-size:50.688176pt;}
.fs9_c01244{font-size:57.200000pt;}
.fsc_c01244{font-size:58.960000pt;}
.fs1c_c01244{font-size:59.136000pt;}
.fs10_c01244{font-size:62.128000pt;}
.fs11_c01244{font-size:62.304176pt;}
.fsf_c01244{font-size:62.656000pt;}
.fs13_c01244{font-size:63.888000pt;}
.fs14_c01244{font-size:64.416000pt;}
.fs16_c01244{font-size:65.824176pt;}
.fsa_c01244{font-size:67.936000pt;}
.fs2_c01244{font-size:68.640000pt;}
.fsb_c01244{font-size:68.992176pt;}
.fs4_c01244{font-size:69.696000pt;}
.fs8_c01244{font-size:70.400000pt;}
.fsd_c01244{font-size:71.104176pt;}
.fs5_c01244{font-size:72.864176pt;}
.fs6_c01244{font-size:73.216000pt;}
.fs1b_c01244{font-size:74.448000pt;}
.fse_c01244{font-size:76.032176pt;}
.fs12_c01244{font-size:80.256000pt;}
.y0_c01244{bottom:0.000000pt;}
.y26_c01244{bottom:66.449720pt;}
.y1_c01244{bottom:68.000000pt;}
.y25_c01244{bottom:74.052920pt;}
.y24_c01244{bottom:83.556920pt;}
.y23_c01244{bottom:94.961720pt;}
.y27_c01244{bottom:148.179720pt;}
.y22_c01244{bottom:150.718520pt;}
.y21_c01244{bottom:179.542920pt;}
.y20_c01244{bottom:207.742520pt;}
.y1f_c01244{bottom:230.552120pt;}
.y1e_c01244{bottom:236.254520pt;}
.y1d_c01244{bottom:264.132920pt;}
.y1c_c01244{bottom:288.526520pt;}
.y1b_c01244{bottom:292.640520pt;}
.y1a_c01244{bottom:320.206520pt;}
.y19_c01244{bottom:320.212856pt;}
.y18_c01244{bottom:348.718520pt;}
.y17_c01244{bottom:376.592520pt;}
.y16_c01244{bottom:405.104520pt;}
.y15_c01244{bottom:432.987320pt;}
.y14_c01244{bottom:461.182520pt;}
.y12_c01244{bottom:489.683520pt;}
.y13_c01244{bottom:489.690120pt;}
.yd_c01244{bottom:517.251720pt;}
.y11_c01244{bottom:518.206520pt;}
.y10_c01244{bottom:546.397320pt;}
.yf_c01244{bottom:574.596920pt;}
.ye_c01244{bottom:602.792120pt;}
.yc_c01244{bottom:630.353720pt;}
.yb_c01244{bottom:659.182520pt;}
.ya_c01244{bottom:686.744120pt;}
.y9_c01244{bottom:715.251720pt;}
.y8_c01244{bottom:743.130120pt;}
.y2_c01244{bottom:751.371320pt;}
.y7_c01244{bottom:771.329720pt;}
.y6_c01244{bottom:800.475320pt;}
.y5_c01244{bottom:828.666120pt;}
.y4_c01244{bottom:879.673560pt;}
.y3_c01244{bottom:924.656520pt;}
.h1a_c01244{height:3.627422pt;}
.h19_c01244{height:5.063848pt;}
.h1f_c01244{height:19.411087pt;}
.h16_c01244{height:19.511250pt;}
.h3_c01244{height:20.559000pt;}
.h1e_c01244{height:23.312438pt;}
.h2_c01244{height:25.698750pt;}
.h1b_c01244{height:29.364844pt;}
.h9_c01244{height:32.070415pt;}
.h5_c01244{height:32.914370pt;}
.h18_c01244{height:33.758325pt;}
.h21_c01244{height:34.201406pt;}
.h20_c01244{height:49.929184pt;}
.hb_c01244{height:59.657812pt;}
.he_c01244{height:61.493438pt;}
.h1d_c01244{height:61.677000pt;}
.h11_c01244{height:62.613375pt;}
.h12_c01244{height:62.790927pt;}
.h14_c01244{height:64.387125pt;}
.h15_c01244{height:64.919250pt;}
.h17_c01244{height:66.338427pt;}
.h4_c01244{height:67.366406pt;}
.hd_c01244{height:67.712048pt;}
.h6_c01244{height:68.402813pt;}
.ha_c01244{height:69.093750pt;}
.hc_c01244{height:70.855125pt;}
.h7_c01244{height:71.512204pt;}
.hf_c01244{height:71.659677pt;}
.h8_c01244{height:71.857500pt;}
.h1c_c01244{height:73.030289pt;}
.h10_c01244{height:74.621423pt;}
.h13_c01244{height:83.704500pt;}
.h1_c01244{height:986.666667pt;}
.h0_c01244{height:1122.666667pt;}
.w1_c01244{width:689.333333pt;}
.w0_c01244{width:793.333333pt;}
.x0_c01244{left:0.000000pt;}
.x1_c01244{left:52.000000pt;}
.x29_c01244{left:99.001453pt;}
.x2_c01244{left:110.454653pt;}
.x1d_c01244{left:147.819453pt;}
.x8_c01244{left:149.201053pt;}
.x3f_c01244{left:159.488253pt;}
.x2a_c01244{left:177.295053pt;}
.x43_c01244{left:197.785853pt;}
.x2b_c01244{left:208.535053pt;}
.x58_c01244{left:216.217453pt;}
.x35_c01244{left:217.194253pt;}
.x9_c01244{left:218.355853pt;}
.x13_c01244{left:227.138253pt;}
.x40_c01244{left:228.493453pt;}
.x44_c01244{left:236.915053pt;}
.x3b_c01244{left:238.406653pt;}
.x36_c01244{left:246.058253pt;}
.x41_c01244{left:247.360653pt;}
.x49_c01244{left:248.834653pt;}
.x30_c01244{left:257.687453pt;}
.x1e_c01244{left:268.379453pt;}
.x2c_c01244{left:276.484253pt;}
.x1f_c01244{left:278.508253pt;}
.xa_c01244{left:286.661453pt;}
.x3c_c01244{left:288.065053pt;}
.x2d_c01244{left:296.596653pt;}
.x14_c01244{left:298.418253pt;}
.x15_c01244{left:305.986253pt;}
.x20_c01244{left:307.108253pt;}
.x26_c01244{left:308.639453pt;}
.x37_c01244{left:315.516653pt;}
.xb_c01244{left:316.858653pt;}
.x4d_c01244{left:324.791853pt;}
.x5c_c01244{left:325.825853pt;}
.x16_c01244{left:326.925853pt;}
.x21_c01244{left:336.517853pt;}
.xc_c01244{left:337.512253pt;}
.xd_c01244{left:346.585053pt;}
.x45_c01244{left:356.467453pt;}
.x3d_c01244{left:366.693053pt;}
.x56_c01244{left:368.466253pt;}
.x31_c01244{left:376.461053pt;}
.x48_c01244{left:385.630653pt;}
.x2e_c01244{left:386.598653pt;}
.x38_c01244{left:396.129053pt;}
.x4e_c01244{left:397.339053pt;}
.x22_c01244{left:405.949853pt;}
.x50_c01244{left:406.983853pt;}
.x17_c01244{left:408.660253pt;}
.x5b_c01244{left:412.976653pt;}
.xe_c01244{left:416.083053pt;}
.x59_c01244{left:424.663053pt;}
.x18_c01244{left:425.595853pt;}
.x4a_c01244{left:434.915053pt;}
.x23_c01244{left:436.340653pt;}
.x42_c01244{left:444.045053pt;}
.xf_c01244{left:445.303453pt;}
.x27_c01244{left:446.451853pt;}
.x46_c01244{left:455.058253pt;}
.x5d_c01244{left:456.158253pt;}
.x55_c01244{left:461.218253pt;}
.x19_c01244{left:463.462253pt;}
.x32_c01244{left:464.879053pt;}
.x39_c01244{left:474.827453pt;}
.x2f_c01244{left:476.068253pt;}
.x1a_c01244{left:484.036653pt;}
.x52_c01244{left:485.149853pt;}
.x4b_c01244{left:486.949453pt;}
.x10_c01244{left:494.653853pt;}
.x5a_c01244{left:503.027053pt;}
.x1b_c01244{left:504.465853pt;}
.x24_c01244{left:514.291053pt;}
.x11_c01244{left:523.869853pt;}
.x28_c01244{left:524.939053pt;}
.x5e_c01244{left:531.495053pt;}
.x4c_c01244{left:532.977853pt;}
.x1c_c01244{left:534.011853pt;}
.x33_c01244{left:535.072253pt;}
.x25_c01244{left:543.815053pt;}
.x3a_c01244{left:553.895453pt;}
.x34_c01244{left:554.973453pt;}
.x47_c01244{left:563.403853pt;}
.x54_c01244{left:572.221453pt;}
.x51_c01244{left:584.277453pt;}
.x5f_c01244{left:601.635453pt;}
.x53_c01244{left:603.870653pt;}
.x3_c01244{left:605.001453pt;}
.x4_c01244{left:608.800853pt;}
.x57_c01244{left:611.069053pt;}
.x4f_c01244{left:611.997453pt;}
.x5_c01244{left:612.903853pt;}
.x3e_c01244{left:622.275853pt;}
.x12_c01244{left:623.257053pt;}
.x6_c01244{left:633.121853pt;}
.x62_c01244{left:636.113853pt;}
.x60_c01244{left:639.057453pt;}
.x61_c01244{left:640.403853pt;}
.x7_c01244{left:643.096653pt;}
.x63_c01244{left:679.066653pt;}
}





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

.ir_c01245:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01245{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01245;src:url('chunks/assets/font_a2f5908c224b5af08e2c622f.woff2')format("woff");}.ff1_c01245{font-family:ff1_c01245;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01245;src:url('chunks/assets/font_0370f993cc6e57b7344297cd.woff2')format("woff");}.ff2_c01245{font-family:ff2_c01245;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01245;src:url('chunks/assets/font_61faf658ec21e94212d4a0a1.woff2')format("woff");}.ff3_c01245{font-family:ff3_c01245;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01245;src:url('chunks/assets/font_e30872e40142831093d225c8.woff2')format("woff");}.ff4_c01245{font-family:ff4_c01245;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m29_c01245{transform:matrix(0.018751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018751,0.000000,0.000000,0.250000,0,0);}
.m14_c01245{transform:matrix(0.073170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073170,0.000000,0.000000,0.250000,0,0);}
.m2a_c01245{transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);}
.m32_c01245{transform:matrix(0.098648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098648,0.000000,0.000000,0.250000,0,0);}
.m8_c01245{transform:matrix(0.115853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115853,0.000000,0.000000,0.250000,0,0);}
.m19_c01245{transform:matrix(0.131098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131098,0.000000,0.000000,0.250000,0,0);}
.m5d_c01245{transform:matrix(0.133011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133011,0.000000,0.000000,0.250000,0,0);}
.m5e_c01245{transform:matrix(0.144096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144096,0.000000,0.000000,0.250000,0,0);}
.m6f_c01245{transform:matrix(0.144267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144267,0.000000,0.000000,0.250000,0,0);}
.m55_c01245{transform:matrix(0.144443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144443,0.000000,0.000000,0.250000,0,0);}
.m36_c01245{transform:matrix(0.171389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171389,0.000000,0.000000,0.250000,0,0);}
.m7_c01245{transform:matrix(0.176830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176830,0.000000,0.000000,0.250000,0,0);}
.m45_c01245{transform:matrix(0.182292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182292,0.000000,0.000000,0.250000,0,0);}
.m5_c01245{transform:matrix(0.194415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194415,0.000000,0.000000,0.250000,0,0);}
.m6a_c01245{transform:matrix(0.224050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224050,0.000000,0.000000,0.250000,0,0);}
.m82_c01245{transform:matrix(0.225922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225922,0.000000,0.000000,0.250000,0,0);}
.m6_c01245{transform:matrix(0.231101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231101,0.000000,0.000000,0.250000,0,0);}
.m3_c01245{transform:matrix(0.232244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232244,0.000000,0.000000,0.250000,0,0);}
.md_c01245{transform:matrix(0.234840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234840,0.000000,0.000000,0.250000,0,0);}
.ma_c01245{transform:matrix(0.235519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235519,0.000000,0.000000,0.250000,0,0);}
.me_c01245{transform:matrix(0.239384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239384,0.000000,0.000000,0.250000,0,0);}
.m4_c01245{transform:matrix(0.241459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241459,0.000000,0.000000,0.250000,0,0);}
.m4e_c01245{transform:matrix(0.247419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247419,0.000000,0.000000,0.250000,0,0);}
.m0_c01245{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01245{transform:matrix(0.250114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250114,0.000000,0.000000,0.250000,0,0);}
.m4b_c01245{transform:matrix(0.250823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250823,0.000000,0.000000,0.250000,0,0);}
.m9_c01245{transform:matrix(0.252283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252283,0.000000,0.000000,0.250000,0,0);}
.m46_c01245{transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);}
.m3f_c01245{transform:matrix(0.254597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254597,0.000000,0.000000,0.250000,0,0);}
.mf_c01245{transform:matrix(0.255417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255417,0.000000,0.000000,0.250000,0,0);}
.m70_c01245{transform:matrix(0.256023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256023,0.000000,0.000000,0.250000,0,0);}
.m71_c01245{transform:matrix(0.258113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258113,0.000000,0.000000,0.250000,0,0);}
.m1d_c01245{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m3b_c01245{transform:matrix(0.258705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258705,0.000000,0.000000,0.250000,0,0);}
.m6d_c01245{transform:matrix(0.260303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260303,0.000000,0.000000,0.250000,0,0);}
.m24_c01245{transform:matrix(0.260559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260559,0.000000,0.000000,0.250000,0,0);}
.m8f_c01245{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m69_c01245{transform:matrix(0.261624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261624,0.000000,0.000000,0.250000,0,0);}
.m44_c01245{transform:matrix(0.261678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261678,0.000000,0.000000,0.250000,0,0);}
.m6b_c01245{transform:matrix(0.261762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261762,0.000000,0.000000,0.250000,0,0);}
.m25_c01245{transform:matrix(0.261904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261904,0.000000,0.000000,0.250000,0,0);}
.m65_c01245{transform:matrix(0.262121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262121,0.000000,0.000000,0.250000,0,0);}
.m62_c01245{transform:matrix(0.262539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262539,0.000000,0.000000,0.250000,0,0);}
.m58_c01245{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m52_c01245{transform:matrix(0.265717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265717,0.000000,0.000000,0.250000,0,0);}
.mc_c01245{transform:matrix(0.266695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266695,0.000000,0.000000,0.250000,0,0);}
.m67_c01245{transform:matrix(0.266706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266706,0.000000,0.000000,0.250000,0,0);}
.m3d_c01245{transform:matrix(0.267266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267266,0.000000,0.000000,0.250000,0,0);}
.m2b_c01245{transform:matrix(0.267625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267625,0.000000,0.000000,0.250000,0,0);}
.m50_c01245{transform:matrix(0.269273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269273,0.000000,0.000000,0.250000,0,0);}
.m4a_c01245{transform:matrix(0.269402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269402,0.000000,0.000000,0.250000,0,0);}
.m53_c01245{transform:matrix(0.270599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270599,0.000000,0.000000,0.250000,0,0);}
.m20_c01245{transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270883,0.000000,0.000000,0.250000,0,0);}
.m2f_c01245{transform:matrix(0.272028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272028,0.000000,0.000000,0.250000,0,0);}
.m66_c01245{transform:matrix(0.272044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272044,0.000000,0.000000,0.250000,0,0);}
.m6c_c01245{transform:matrix(0.272488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272488,0.000000,0.000000,0.250000,0,0);}
.m8c_c01245{transform:matrix(0.274016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274016,0.000000,0.000000,0.250000,0,0);}
.m1_c01245{transform:matrix(0.275938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275938,0.000000,0.000000,0.250000,0,0);}
.m49_c01245{transform:matrix(0.278370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278370,0.000000,0.000000,0.250000,0,0);}
.m7d_c01245{transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278573,0.000000,0.000000,0.250000,0,0);}
.m59_c01245{transform:matrix(0.278818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278818,0.000000,0.000000,0.250000,0,0);}
.m8a_c01245{transform:matrix(0.280648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280648,0.000000,0.000000,0.250000,0,0);}
.m34_c01245{transform:matrix(0.280961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280961,0.000000,0.000000,0.250000,0,0);}
.m3c_c01245{transform:matrix(0.281440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281440,0.000000,0.000000,0.250000,0,0);}
.m2e_c01245{transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);}
.m51_c01245{transform:matrix(0.282334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282334,0.000000,0.000000,0.250000,0,0);}
.m63_c01245{transform:matrix(0.282638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282638,0.000000,0.000000,0.250000,0,0);}
.m39_c01245{transform:matrix(0.282847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282847,0.000000,0.000000,0.250000,0,0);}
.m68_c01245{transform:matrix(0.283259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283259,0.000000,0.000000,0.250000,0,0);}
.m60_c01245{transform:matrix(0.287346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287346,0.000000,0.000000,0.250000,0,0);}
.m87_c01245{transform:matrix(0.287958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287958,0.000000,0.000000,0.250000,0,0);}
.m75_c01245{transform:matrix(0.289803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289803,0.000000,0.000000,0.250000,0,0);}
.m79_c01245{transform:matrix(0.290350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290350,0.000000,0.000000,0.250000,0,0);}
.m56_c01245{transform:matrix(0.291009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291009,0.000000,0.000000,0.250000,0,0);}
.m7b_c01245{transform:matrix(0.292804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292804,0.000000,0.000000,0.250000,0,0);}
.m88_c01245{transform:matrix(0.294173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294173,0.000000,0.000000,0.250000,0,0);}
.m38_c01245{transform:matrix(0.295090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295090,0.000000,0.000000,0.250000,0,0);}
.m11_c01245{transform:matrix(0.295628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295628,0.000000,0.000000,0.250000,0,0);}
.m1c_c01245{transform:matrix(0.297137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297137,0.000000,0.000000,0.250000,0,0);}
.m7c_c01245{transform:matrix(0.297430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297430,0.000000,0.000000,0.250000,0,0);}
.m2c_c01245{transform:matrix(0.297909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297909,0.000000,0.000000,0.250000,0,0);}
.m5b_c01245{transform:matrix(0.298182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298182,0.000000,0.000000,0.250000,0,0);}
.m64_c01245{transform:matrix(0.298955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298955,0.000000,0.000000,0.250000,0,0);}
.m35_c01245{transform:matrix(0.298960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298960,0.000000,0.000000,0.250000,0,0);}
.m7e_c01245{transform:matrix(0.302092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302092,0.000000,0.000000,0.250000,0,0);}
.m27_c01245{transform:matrix(0.302718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302718,0.000000,0.000000,0.250000,0,0);}
.m78_c01245{transform:matrix(0.302837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302837,0.000000,0.000000,0.250000,0,0);}
.m61_c01245{transform:matrix(0.303230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303230,0.000000,0.000000,0.250000,0,0);}
.m30_c01245{transform:matrix(0.304872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304872,0.000000,0.000000,0.250000,0,0);}
.m8e_c01245{transform:matrix(0.306327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306327,0.000000,0.000000,0.250000,0,0);}
.m4f_c01245{transform:matrix(0.307020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307020,0.000000,0.000000,0.250000,0,0);}
.m37_c01245{transform:matrix(0.307760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307760,0.000000,0.000000,0.250000,0,0);}
.m77_c01245{transform:matrix(0.309636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309636,0.000000,0.000000,0.250000,0,0);}
.m3e_c01245{transform:matrix(0.309766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309766,0.000000,0.000000,0.250000,0,0);}
.m81_c01245{transform:matrix(0.309786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309786,0.000000,0.000000,0.250000,0,0);}
.m1b_c01245{transform:matrix(0.311312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311312,0.000000,0.000000,0.250000,0,0);}
.m7f_c01245{transform:matrix(0.311319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311319,0.000000,0.000000,0.250000,0,0);}
.m10_c01245{transform:matrix(0.311682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311682,0.000000,0.000000,0.250000,0,0);}
.m4d_c01245{transform:matrix(0.312060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312060,0.000000,0.000000,0.250000,0,0);}
.m85_c01245{transform:matrix(0.312747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312747,0.000000,0.000000,0.250000,0,0);}
.m54_c01245{transform:matrix(0.312838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312838,0.000000,0.000000,0.250000,0,0);}
.m22_c01245{transform:matrix(0.313100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313100,0.000000,0.000000,0.250000,0,0);}
.m41_c01245{transform:matrix(0.313924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313924,0.000000,0.000000,0.250000,0,0);}
.m40_c01245{transform:matrix(0.314182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314182,0.000000,0.000000,0.250000,0,0);}
.m72_c01245{transform:matrix(0.314794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314794,0.000000,0.000000,0.250000,0,0);}
.m73_c01245{transform:matrix(0.316478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316478,0.000000,0.000000,0.250000,0,0);}
.m5a_c01245{transform:matrix(0.317121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317121,0.000000,0.000000,0.250000,0,0);}
.m47_c01245{transform:matrix(0.317228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317228,0.000000,0.000000,0.250000,0,0);}
.m5c_c01245{transform:matrix(0.317842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317842,0.000000,0.000000,0.250000,0,0);}
.m4c_c01245{transform:matrix(0.318106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318106,0.000000,0.000000,0.250000,0,0);}
.m83_c01245{transform:matrix(0.319377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319377,0.000000,0.000000,0.250000,0,0);}
.m76_c01245{transform:matrix(0.319859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319859,0.000000,0.000000,0.250000,0,0);}
.m1a_c01245{transform:matrix(0.319975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319975,0.000000,0.000000,0.250000,0,0);}
.m8d_c01245{transform:matrix(0.323032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323032,0.000000,0.000000,0.250000,0,0);}
.m2d_c01245{transform:matrix(0.324287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324287,0.000000,0.000000,0.250000,0,0);}
.m42_c01245{transform:matrix(0.324336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324336,0.000000,0.000000,0.250000,0,0);}
.m48_c01245{transform:matrix(0.326100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326100,0.000000,0.000000,0.250000,0,0);}
.m74_c01245{transform:matrix(0.326985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326985,0.000000,0.000000,0.250000,0,0);}
.m1f_c01245{transform:matrix(0.328208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328208,0.000000,0.000000,0.250000,0,0);}
.m84_c01245{transform:matrix(0.328480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328480,0.000000,0.000000,0.250000,0,0);}
.m86_c01245{transform:matrix(0.331069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331069,0.000000,0.000000,0.250000,0,0);}
.m31_c01245{transform:matrix(0.333081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333081,0.000000,0.000000,0.250000,0,0);}
.m43_c01245{transform:matrix(0.333789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333789,0.000000,0.000000,0.250000,0,0);}
.m90_c01245{transform:matrix(0.336444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336444,0.000000,0.000000,0.250000,0,0);}
.m3a_c01245{transform:matrix(0.341984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341984,0.000000,0.000000,0.250000,0,0);}
.m26_c01245{transform:matrix(0.342694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342694,0.000000,0.000000,0.250000,0,0);}
.m91_c01245{transform:matrix(0.343150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343150,0.000000,0.000000,0.250000,0,0);}
.m7a_c01245{transform:matrix(0.347172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347172,0.000000,0.000000,0.250000,0,0);}
.m89_c01245{transform:matrix(0.351186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351186,0.000000,0.000000,0.250000,0,0);}
.m57_c01245{transform:matrix(0.352001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352001,0.000000,0.000000,0.250000,0,0);}
.m28_c01245{transform:matrix(0.354411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354411,0.000000,0.000000,0.250000,0,0);}
.m2_c01245{transform:matrix(0.370667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370667,0.000000,0.000000,0.250000,0,0);}
.m1e_c01245{transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);}
.m21_c01245{transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);}
.m17_c01245{transform:matrix(0.383517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383517,0.000000,0.000000,0.250000,0,0);}
.mb_c01245{transform:matrix(0.403291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403291,0.000000,0.000000,0.250000,0,0);}
.m5f_c01245{transform:matrix(0.417866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417866,0.000000,0.000000,0.250000,0,0);}
.m33_c01245{transform:matrix(0.423866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423866,0.000000,0.000000,0.250000,0,0);}
.m8b_c01245{transform:matrix(0.427160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427160,0.000000,0.000000,0.250000,0,0);}
.m13_c01245{transform:matrix(0.442852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442852,0.000000,0.000000,0.250000,0,0);}
.m16_c01245{transform:matrix(0.448093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448093,0.000000,0.000000,0.250000,0,0);}
.m18_c01245{transform:matrix(0.461272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461272,0.000000,0.000000,0.250000,0,0);}
.m6e_c01245{transform:matrix(0.470891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470891,0.000000,0.000000,0.250000,0,0);}
.m12_c01245{transform:matrix(0.471276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471276,0.000000,0.000000,0.250000,0,0);}
.m15_c01245{transform:matrix(0.475832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475832,0.000000,0.000000,0.250000,0,0);}
.m23_c01245{transform:matrix(0.535704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535704,0.000000,0.000000,0.250000,0,0);}
.v0_c01245{vertical-align:0.000000px;}
.ls11_c01245{letter-spacing:-2.744280px;}
.ls16_c01245{letter-spacing:-2.661127px;}
.ls14_c01245{letter-spacing:-2.564100px;}
.ls5_c01245{letter-spacing:-2.453227px;}
.ls6_c01245{letter-spacing:-2.370067px;}
.ls2_c01245{letter-spacing:0.000000px;}
.ls19_c01245{letter-spacing:2.524738px;}
.ls9_c01245{letter-spacing:2.551356px;}
.ls0_c01245{letter-spacing:2.877938px;}
.ls18_c01245{letter-spacing:3.238250px;}
.lsd_c01245{letter-spacing:3.239320px;}
.ls1_c01245{letter-spacing:3.338409px;}
.ls4_c01245{letter-spacing:3.385810px;}
.ls12_c01245{letter-spacing:3.484810px;}
.ls8_c01245{letter-spacing:3.504610px;}
.ls10_c01245{letter-spacing:3.583810px;}
.lse_c01245{letter-spacing:3.623400px;}
.lsa_c01245{letter-spacing:3.663000px;}
.ls15_c01245{letter-spacing:3.801610px;}
.ls3_c01245{letter-spacing:3.920400px;}
.ls17_c01245{letter-spacing:3.989700px;}
.lsb_c01245{letter-spacing:9.979398px;}
.lsf_c01245{letter-spacing:52.747398px;}
.lsc_c01245{letter-spacing:57.024198px;}
.ls7_c01245{letter-spacing:58.449798px;}
.ls13_c01245{letter-spacing:59.875398px;}
.sc__c01245{text-shadow:none;}
.sc0_c01245{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01245{-webkit-text-stroke:0px transparent;}
.sc0_c01245{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01245{word-spacing:-20.267458px;}
.ws2_c01245{word-spacing:-19.602000px;}
.ws5_c01245{word-spacing:-18.315000px;}
.ws1_c01245{word-spacing:-17.523050px;}
.ws6_c01245{word-spacing:0.000000px;}
.ws3_c01245{word-spacing:3.293136px;}
.ws4_c01245{word-spacing:8.311248px;}
._3_c01245{margin-left:-14.118582px;}
._7_c01245{margin-left:-7.761600px;}
._d_c01245{margin-left:-5.722200px;}
._f_c01245{margin-left:-4.310460px;}
._c_c01245{margin-left:-2.823480px;}
._e_c01245{margin-left:-1.411740px;}
._4_c01245{width:1.646568px;}
._0_c01245{width:3.084125px;}
._6_c01245{width:4.390848px;}
._a_c01245{width:6.153840px;}
._9_c01245{width:7.545780px;}
._b_c01245{width:9.010980px;}
._5_c01245{width:11.918016px;}
._1_c01245{width:19.966326px;}
._2_c01245{width:28.982424px;}
._8_c01245{width:35.277660px;}
.fc0_c01245{color:transparent;}
.fs7_c01245{font-size:9.979398px;}
.fs0_c01245{font-size:22.176000px;}
.fs12_c01245{font-size:27.720000px;}
.fs1_c01245{font-size:38.808000px;}
.fsa_c01245{font-size:52.747398px;}
.fs8_c01245{font-size:57.024198px;}
.fs5_c01245{font-size:58.449798px;}
.fsd_c01245{font-size:59.875398px;}
.fse_c01245{font-size:66.330000px;}
.fs3_c01245{font-size:67.716198px;}
.fsc_c01245{font-size:69.696198px;}
.fs4_c01245{font-size:70.092198px;}
.fsb_c01245{font-size:71.676198px;}
.fs9_c01245{font-size:72.468000px;}
.fs6_c01245{font-size:73.260000px;}
.fsf_c01245{font-size:76.032198px;}
.fs2_c01245{font-size:78.408000px;}
.fs10_c01245{font-size:79.794000px;}
.fs11_c01245{font-size:107.712198px;}
.y0_c01245{bottom:0.000000px;}
.y1_c01245{bottom:76.500000px;}
.y20_c01245{bottom:91.506735px;}
.y1f_c01245{bottom:135.338985px;}
.y1e_c01245{bottom:157.435785px;}
.y1d_c01245{bottom:168.132735px;}
.y2_c01245{bottom:198.778185px;}
.y1c_c01245{bottom:199.847385px;}
.y1b_c01245{bottom:231.928335px;}
.y1a_c01245{bottom:264.355785px;}
.y19_c01245{bottom:296.431785px;}
.y18_c01245{bottom:328.156335px;}
.y17_c01245{bottom:358.801785px;}
.y16_c01245{bottom:390.877785px;}
.y15_c01245{bottom:422.958735px;}
.y14_c01245{bottom:455.034735px;}
.y13_c01245{bottom:486.041535px;}
.y12_c01245{bottom:518.117535px;}
.y11_c01245{bottom:550.188585px;}
.y10_c01245{bottom:582.264585px;}
.yf_c01245{bottom:613.276335px;}
.ye_c01245{bottom:645.708735px;}
.yd_c01245{bottom:677.071935px;}
.yc_c01245{bottom:708.435135px;}
.yb_c01245{bottom:739.793385px;}
.ya_c01245{bottom:771.517935px;}
.y9_c01245{bottom:800.386335px;}
.y8_c01245{bottom:803.237535px;}
.y7_c01245{bottom:834.595785px;}
.y6_c01245{bottom:866.676735px;}
.y5_c01245{bottom:898.039935px;}
.y4_c01245{bottom:930.110985px;}
.y3_c01245{bottom:980.363385px;}
.ha_c01245{height:6.646279px;}
.h2_c01245{height:23.128875px;}
.h16_c01245{height:28.911094px;}
.hd_c01245{height:35.129767px;}
.hb_c01245{height:37.978116px;}
.h7_c01245{height:38.927565px;}
.h10_c01245{height:39.877015px;}
.h3_c01245{height:40.475531px;}
.h5_c01245{height:66.459745px;}
.hf_c01245{height:68.403007px;}
.h6_c01245{height:68.791659px;}
.h14_c01245{height:69.180117px;}
.hc_c01245{height:71.123379px;}
.h9_c01245{height:71.900684px;}
.he_c01245{height:72.236168px;}
.h8_c01245{height:73.832344px;}
.h12_c01245{height:74.621444px;}
.h11_c01245{height:76.626200px;}
.h4_c01245{height:76.953164px;}
.h13_c01245{height:80.417391px;}
.h15_c01245{height:105.713632px;}
.h1_c01245{height:1110.000000px;}
.h0_c01245{height:1263.000000px;}
.w1_c01245{width:775.500000px;}
.w0_c01245{width:892.500000px;}
.x0_c01245{left:0.000000px;}
.x1_c01245{left:58.500000px;}
.x4_c01245{left:107.436435px;}
.x54_c01245{left:135.280185px;}
.x47_c01245{left:136.369185px;}
.x10_c01245{left:137.869035px;}
.x5_c01245{left:151.060785px;}
.x11_c01245{left:160.990485px;}
.x6_c01245{left:172.197285px;}
.x15_c01245{left:184.364385px;}
.x2_c01245{left:192.289335px;}
.x33_c01245{left:203.159535px;}
.x16_c01245{left:204.788085px;}
.x34_c01245{left:211.252785px;}
.x7_c01245{left:215.861235px;}
.x3d_c01245{left:227.666985px;}
.x48_c01245{left:236.507685px;}
.x35_c01245{left:237.611535px;}
.x12_c01245{left:247.957035px;}
.x3e_c01245{left:249.649935px;}
.x27_c01245{left:292.200135px;}
.x21_c01245{left:293.541585px;}
.x55_c01245{left:302.461485px;}
.x41_c01245{left:303.466335px;}
.x43_c01245{left:314.079135px;}
.x13_c01245{left:315.673035px;}
.x28_c01245{left:325.701735px;}
.x44_c01245{left:337.918335px;}
.x17_c01245{left:339.398385px;}
.x50_c01245{left:347.615385px;}
.x36_c01245{left:348.704385px;}
.x18_c01245{left:350.233935px;}
.x14_c01245{left:358.134135px;}
.x29_c01245{left:360.089385px;}
.x2a_c01245{left:370.405185px;}
.x37_c01245{left:380.527935px;}
.x59_c01245{left:390.239835px;}
.x2e_c01245{left:392.269335px;}
.x38_c01245{left:393.576135px;}
.x2b_c01245{left:404.258235px;}
.x45_c01245{left:405.802635px;}
.x51_c01245{left:414.574035px;}
.x8_c01245{left:416.093685px;}
.x39_c01245{left:426.399585px;}
.x19_c01245{left:427.953885px;}
.x2f_c01245{left:437.388585px;}
.x22_c01245{left:448.080585px;}
.x9_c01245{left:459.663585px;}
.x1a_c01245{left:461.529735px;}
.xa_c01245{left:467.400435px;}
.x3a_c01245{left:470.806035px;}
.x1b_c01245{left:471.835635px;}
.x23_c01245{left:481.933635px;}
.x46_c01245{left:483.126585px;}
.xb_c01245{left:493.249335px;}
.xc_c01245{left:500.372385px;}
.x52_c01245{left:503.377035px;}
.x32_c01245{left:505.361985px;}
.x30_c01245{left:513.509685px;}
.x42_c01245{left:514.781835px;}
.x57_c01245{left:524.706585px;}
.x49_c01245{left:526.008435px;}
.xd_c01245{left:527.141985px;}
.x3f_c01245{left:535.933185px;}
.x1c_c01245{left:538.294335px;}
.x4d_c01245{left:546.664785px;}
.x24_c01245{left:548.610135px;}
.x58_c01245{left:558.569535px;}
.x5a_c01245{left:569.251635px;}
.x40_c01245{left:571.083135px;}
.x4e_c01245{left:579.443685px;}
.x25_c01245{left:581.012835px;}
.x1d_c01245{left:583.532385px;}
.xe_c01245{left:590.506935px;}
.x56_c01245{left:592.967085px;}
.x5b_c01245{left:602.773035px;}
.x1e_c01245{left:604.792635px;}
.xf_c01245{left:615.281685px;}
.x26_c01245{left:625.424235px;}
.x4a_c01245{left:626.547885px;}
.x31_c01245{left:636.675585px;}
.x4f_c01245{left:637.898235px;}
.x4b_c01245{left:642.160185px;}
.x53_c01245{left:648.644685px;}
.x1f_c01245{left:649.708935px;}
.x5c_c01245{left:656.505285px;}
.x2c_c01245{left:658.975335px;}
.x2d_c01245{left:660.752385px;}
.x3b_c01245{left:671.028585px;}
.x4c_c01245{left:679.611885px;}
.x20_c01245{left:680.923635px;}
.x3_c01245{left:692.368035px;}
.x3c_c01245{left:703.431285px;}
.x5d_c01245{left:731.923485px;}
@media print{
.v0_c01245{vertical-align:0.000000pt;}
.ls11_c01245{letter-spacing:-2.439360pt;}
.ls16_c01245{letter-spacing:-2.365446pt;}
.ls14_c01245{letter-spacing:-2.279200pt;}
.ls5_c01245{letter-spacing:-2.180646pt;}
.ls6_c01245{letter-spacing:-2.106726pt;}
.ls2_c01245{letter-spacing:0.000000pt;}
.ls19_c01245{letter-spacing:2.244211pt;}
.ls9_c01245{letter-spacing:2.267872pt;}
.ls0_c01245{letter-spacing:2.558167pt;}
.ls18_c01245{letter-spacing:2.878445pt;}
.lsd_c01245{letter-spacing:2.879395pt;}
.ls1_c01245{letter-spacing:2.967474pt;}
.ls4_c01245{letter-spacing:3.009609pt;}
.ls12_c01245{letter-spacing:3.097609pt;}
.ls8_c01245{letter-spacing:3.115209pt;}
.ls10_c01245{letter-spacing:3.185609pt;}
.lse_c01245{letter-spacing:3.220800pt;}
.lsa_c01245{letter-spacing:3.256000pt;}
.ls15_c01245{letter-spacing:3.379209pt;}
.ls3_c01245{letter-spacing:3.484800pt;}
.ls17_c01245{letter-spacing:3.546400pt;}
.lsb_c01245{letter-spacing:8.870576pt;}
.lsf_c01245{letter-spacing:46.886576pt;}
.lsc_c01245{letter-spacing:50.688176pt;}
.ls7_c01245{letter-spacing:51.955376pt;}
.ls13_c01245{letter-spacing:53.222576pt;}
.ws0_c01245{word-spacing:-18.015518pt;}
.ws2_c01245{word-spacing:-17.424000pt;}
.ws5_c01245{word-spacing:-16.280000pt;}
.ws1_c01245{word-spacing:-15.576044pt;}
.ws6_c01245{word-spacing:0.000000pt;}
.ws3_c01245{word-spacing:2.927232pt;}
.ws4_c01245{word-spacing:7.387776pt;}
._3_c01245{margin-left:-12.549851pt;}
._7_c01245{margin-left:-6.899200pt;}
._d_c01245{margin-left:-5.086400pt;}
._f_c01245{margin-left:-3.831520pt;}
._c_c01245{margin-left:-2.509760pt;}
._e_c01245{margin-left:-1.254880pt;}
._4_c01245{width:1.463616pt;}
._0_c01245{width:2.741444pt;}
._6_c01245{width:3.902976pt;}
._a_c01245{width:5.470080pt;}
._9_c01245{width:6.707360pt;}
._b_c01245{width:8.009760pt;}
._5_c01245{width:10.593792pt;}
._1_c01245{width:17.747845pt;}
._2_c01245{width:25.762155pt;}
._8_c01245{width:31.357920pt;}
.fs7_c01245{font-size:8.870576pt;}
.fs0_c01245{font-size:19.712000pt;}
.fs12_c01245{font-size:24.640000pt;}
.fs1_c01245{font-size:34.496000pt;}
.fsa_c01245{font-size:46.886576pt;}
.fs8_c01245{font-size:50.688176pt;}
.fs5_c01245{font-size:51.955376pt;}
.fsd_c01245{font-size:53.222576pt;}
.fse_c01245{font-size:58.960000pt;}
.fs3_c01245{font-size:60.192176pt;}
.fsc_c01245{font-size:61.952176pt;}
.fs4_c01245{font-size:62.304176pt;}
.fsb_c01245{font-size:63.712176pt;}
.fs9_c01245{font-size:64.416000pt;}
.fs6_c01245{font-size:65.120000pt;}
.fsf_c01245{font-size:67.584176pt;}
.fs2_c01245{font-size:69.696000pt;}
.fs10_c01245{font-size:70.928000pt;}
.fs11_c01245{font-size:95.744176pt;}
.y0_c01245{bottom:0.000000pt;}
.y1_c01245{bottom:68.000000pt;}
.y20_c01245{bottom:81.339320pt;}
.y1f_c01245{bottom:120.301320pt;}
.y1e_c01245{bottom:139.942920pt;}
.y1d_c01245{bottom:149.451320pt;}
.y2_c01245{bottom:176.691720pt;}
.y1c_c01245{bottom:177.642120pt;}
.y1b_c01245{bottom:206.158520pt;}
.y1a_c01245{bottom:234.982920pt;}
.y19_c01245{bottom:263.494920pt;}
.y18_c01245{bottom:291.694520pt;}
.y17_c01245{bottom:318.934920pt;}
.y16_c01245{bottom:347.446920pt;}
.y15_c01245{bottom:375.963320pt;}
.y14_c01245{bottom:404.475320pt;}
.y13_c01245{bottom:432.036920pt;}
.y12_c01245{bottom:460.548920pt;}
.y11_c01245{bottom:489.056520pt;}
.y10_c01245{bottom:517.568520pt;}
.yf_c01245{bottom:545.134520pt;}
.ye_c01245{bottom:573.963320pt;}
.yd_c01245{bottom:601.841720pt;}
.yc_c01245{bottom:629.720120pt;}
.yb_c01245{bottom:657.594120pt;}
.ya_c01245{bottom:685.793720pt;}
.y9_c01245{bottom:711.454520pt;}
.y8_c01245{bottom:713.988920pt;}
.y7_c01245{bottom:741.862920pt;}
.y6_c01245{bottom:770.379320pt;}
.y5_c01245{bottom:798.257720pt;}
.y4_c01245{bottom:826.765320pt;}
.y3_c01245{bottom:871.434120pt;}
.ha_c01245{height:5.907804pt;}
.h2_c01245{height:20.559000pt;}
.h16_c01245{height:25.698750pt;}
.hd_c01245{height:31.226460pt;}
.hb_c01245{height:33.758325pt;}
.h7_c01245{height:34.602280pt;}
.h10_c01245{height:35.446236pt;}
.h3_c01245{height:35.978250pt;}
.h5_c01245{height:59.075329pt;}
.hf_c01245{height:60.802673pt;}
.h6_c01245{height:61.148141pt;}
.h14_c01245{height:61.493438pt;}
.hc_c01245{height:63.220781pt;}
.h9_c01245{height:63.911719pt;}
.he_c01245{height:64.209927pt;}
.h8_c01245{height:65.628750pt;}
.h12_c01245{height:66.330173pt;}
.h11_c01245{height:68.112177pt;}
.h4_c01245{height:68.402813pt;}
.h13_c01245{height:71.482125pt;}
.h15_c01245{height:93.967673pt;}
.h1_c01245{height:986.666667pt;}
.h0_c01245{height:1122.666667pt;}
.w1_c01245{width:689.333333pt;}
.w0_c01245{width:793.333333pt;}
.x0_c01245{left:0.000000pt;}
.x1_c01245{left:52.000000pt;}
.x4_c01245{left:95.499053pt;}
.x54_c01245{left:120.249053pt;}
.x47_c01245{left:121.217053pt;}
.x10_c01245{left:122.550253pt;}
.x5_c01245{left:134.276253pt;}
.x11_c01245{left:143.102653pt;}
.x6_c01245{left:153.064253pt;}
.x15_c01245{left:163.879453pt;}
.x2_c01245{left:170.923853pt;}
.x33_c01245{left:180.586253pt;}
.x16_c01245{left:182.033853pt;}
.x34_c01245{left:187.780253pt;}
.x7_c01245{left:191.876653pt;}
.x3d_c01245{left:202.370653pt;}
.x48_c01245{left:210.229053pt;}
.x35_c01245{left:211.210253pt;}
.x12_c01245{left:220.406253pt;}
.x3e_c01245{left:221.911053pt;}
.x27_c01245{left:259.733453pt;}
.x21_c01245{left:260.925853pt;}
.x55_c01245{left:268.854653pt;}
.x41_c01245{left:269.747853pt;}
.x43_c01245{left:279.181453pt;}
.x13_c01245{left:280.598253pt;}
.x28_c01245{left:289.512653pt;}
.x44_c01245{left:300.371853pt;}
.x17_c01245{left:301.687453pt;}
.x50_c01245{left:308.991453pt;}
.x36_c01245{left:309.959453pt;}
.x18_c01245{left:311.319053pt;}
.x14_c01245{left:318.341453pt;}
.x29_c01245{left:320.079453pt;}
.x2a_c01245{left:329.249053pt;}
.x37_c01245{left:338.247053pt;}
.x59_c01245{left:346.879853pt;}
.x2e_c01245{left:348.683853pt;}
.x38_c01245{left:349.845453pt;}
.x2b_c01245{left:359.340653pt;}
.x45_c01245{left:360.713453pt;}
.x51_c01245{left:368.510253pt;}
.x8_c01245{left:369.861053pt;}
.x39_c01245{left:379.021853pt;}
.x19_c01245{left:380.403453pt;}
.x2f_c01245{left:388.789853pt;}
.x22_c01245{left:398.293853pt;}
.x9_c01245{left:408.589853pt;}
.x1a_c01245{left:410.248653pt;}
.xa_c01245{left:415.467053pt;}
.x3a_c01245{left:418.494253pt;}
.x1b_c01245{left:419.409453pt;}
.x23_c01245{left:428.385453pt;}
.x46_c01245{left:429.445853pt;}
.xb_c01245{left:438.443853pt;}
.xc_c01245{left:444.775453pt;}
.x52_c01245{left:447.446253pt;}
.x32_c01245{left:449.210653pt;}
.x30_c01245{left:456.453053pt;}
.x42_c01245{left:457.583853pt;}
.x57_c01245{left:466.405853pt;}
.x49_c01245{left:467.563053pt;}
.xd_c01245{left:468.570653pt;}
.x3f_c01245{left:476.385053pt;}
.x1c_c01245{left:478.483853pt;}
.x4d_c01245{left:485.924253pt;}
.x24_c01245{left:487.653453pt;}
.x58_c01245{left:496.506253pt;}
.x5a_c01245{left:506.001453pt;}
.x40_c01245{left:507.629453pt;}
.x4e_c01245{left:515.061053pt;}
.x25_c01245{left:516.455853pt;}
.x1d_c01245{left:518.695453pt;}
.xe_c01245{left:524.895053pt;}
.x56_c01245{left:527.081853pt;}
.x5b_c01245{left:535.798253pt;}
.x1e_c01245{left:537.593453pt;}
.xf_c01245{left:546.917053pt;}
.x26_c01245{left:555.932653pt;}
.x4a_c01245{left:556.931453pt;}
.x31_c01245{left:565.933853pt;}
.x4f_c01245{left:567.020653pt;}
.x4b_c01245{left:570.809053pt;}
.x53_c01245{left:576.573053pt;}
.x1f_c01245{left:577.519053pt;}
.x5c_c01245{left:583.560253pt;}
.x2c_c01245{left:585.755853pt;}
.x2d_c01245{left:587.335453pt;}
.x3b_c01245{left:596.469853pt;}
.x4c_c01245{left:604.099453pt;}
.x20_c01245{left:605.265453pt;}
.x3_c01245{left:615.438253pt;}
.x3c_c01245{left:625.272253pt;}
.x5d_c01245{left:650.598653pt;}
}





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

.ir_c01246:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01246{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01246;src:url('chunks/assets/font_4f124b0459828b7cc579cd31.woff2')format("woff");}.ff1_c01246{font-family:ff1_c01246;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01246;src:url('chunks/assets/font_b6c49ddff4ab2bcf3e2355a1.woff2')format("woff");}.ff2_c01246{font-family:ff2_c01246;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01246;src:url('chunks/assets/font_60bfb2e2faea6ac3984827bc.woff2')format("woff");}.ff3_c01246{font-family:ff3_c01246;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01246;src:url('chunks/assets/font_0cbbadb2f11655928c13002f.woff2')format("woff");}.ff4_c01246{font-family:ff4_c01246;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m31_c01246{transform:matrix(0.087838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087838,0.000000,0.000000,0.250000,0,0);}
.m1_c01246{transform:matrix(0.113638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113638,0.000000,0.000000,0.250000,0,0);}
.m29_c01246{transform:matrix(0.162162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162162,0.000000,0.000000,0.250000,0,0);}
.m50_c01246{transform:matrix(0.175975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175975,0.000000,0.000000,0.250000,0,0);}
.m2a_c01246{transform:matrix(0.189188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189188,0.000000,0.000000,0.250000,0,0);}
.m44_c01246{transform:matrix(0.189703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189703,0.000000,0.000000,0.250000,0,0);}
.m28_c01246{transform:matrix(0.199325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199325,0.000000,0.000000,0.250000,0,0);}
.m2b_c01246{transform:matrix(0.202703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202703,0.000000,0.000000,0.250000,0,0);}
.m3f_c01246{transform:matrix(0.220377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220377,0.000000,0.000000,0.250000,0,0);}
.m25_c01246{transform:matrix(0.223348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223348,0.000000,0.000000,0.250000,0,0);}
.m54_c01246{transform:matrix(0.223703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223703,0.000000,0.000000,0.250000,0,0);}
.m0_c01246{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m4c_c01246{transform:matrix(0.250114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250114,0.000000,0.000000,0.250000,0,0);}
.m64_c01246{transform:matrix(0.252989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252989,0.000000,0.000000,0.250000,0,0);}
.m53_c01246{transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);}
.m6_c01246{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m10_c01246{transform:matrix(0.259016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259016,0.000000,0.000000,0.250000,0,0);}
.m3d_c01246{transform:matrix(0.261326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261326,0.000000,0.000000,0.250000,0,0);}
.m5f_c01246{transform:matrix(0.261869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261869,0.000000,0.000000,0.250000,0,0);}
.md_c01246{transform:matrix(0.262539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262539,0.000000,0.000000,0.250000,0,0);}
.m1c_c01246{transform:matrix(0.263294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263294,0.000000,0.000000,0.250000,0,0);}
.m5b_c01246{transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263304,0.000000,0.000000,0.250000,0,0);}
.m14_c01246{transform:matrix(0.265924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265924,0.000000,0.000000,0.250000,0,0);}
.m59_c01246{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m4f_c01246{transform:matrix(0.266378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266378,0.000000,0.000000,0.250000,0,0);}
.m2f_c01246{transform:matrix(0.268324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268324,0.000000,0.000000,0.250000,0,0);}
.m66_c01246{transform:matrix(0.268494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268494,0.000000,0.000000,0.250000,0,0);}
.m52_c01246{transform:matrix(0.268552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268552,0.000000,0.000000,0.250000,0,0);}
.m12_c01246{transform:matrix(0.270653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270653,0.000000,0.000000,0.250000,0,0);}
.m4e_c01246{transform:matrix(0.271787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271787,0.000000,0.000000,0.250000,0,0);}
.m32_c01246{transform:matrix(0.272044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272044,0.000000,0.000000,0.250000,0,0);}
.m2c_c01246{transform:matrix(0.272443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272443,0.000000,0.000000,0.250000,0,0);}
.m47_c01246{transform:matrix(0.273342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273342,0.000000,0.000000,0.250000,0,0);}
.m2_c01246{transform:matrix(0.275938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275938,0.000000,0.000000,0.250000,0,0);}
.m2d_c01246{transform:matrix(0.277293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277293,0.000000,0.000000,0.250000,0,0);}
.m17_c01246{transform:matrix(0.278838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278838,0.000000,0.000000,0.250000,0,0);}
.m27_c01246{transform:matrix(0.279864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279864,0.000000,0.000000,0.250000,0,0);}
.m76_c01246{transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281826,0.000000,0.000000,0.250000,0,0);}
.m68_c01246{transform:matrix(0.283165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283165,0.000000,0.000000,0.250000,0,0);}
.m4d_c01246{transform:matrix(0.284403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284403,0.000000,0.000000,0.250000,0,0);}
.mf_c01246{transform:matrix(0.287284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287284,0.000000,0.000000,0.250000,0,0);}
.m79_c01246{transform:matrix(0.288005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288005,0.000000,0.000000,0.250000,0,0);}
.m6d_c01246{transform:matrix(0.288455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288455,0.000000,0.000000,0.250000,0,0);}
.m30_c01246{transform:matrix(0.289155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289155,0.000000,0.000000,0.250000,0,0);}
.m7_c01246{transform:matrix(0.289570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289570,0.000000,0.000000,0.250000,0,0);}
.ma_c01246{transform:matrix(0.290581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290581,0.000000,0.000000,0.250000,0,0);}
.m5c_c01246{transform:matrix(0.291754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291754,0.000000,0.000000,0.250000,0,0);}
.m11_c01246{transform:matrix(0.292956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292956,0.000000,0.000000,0.250000,0,0);}
.m56_c01246{transform:matrix(0.295442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295442,0.000000,0.000000,0.250000,0,0);}
.m26_c01246{transform:matrix(0.296650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296650,0.000000,0.000000,0.250000,0,0);}
.me_c01246{transform:matrix(0.296712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296712,0.000000,0.000000,0.250000,0,0);}
.m4a_c01246{transform:matrix(0.296813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296813,0.000000,0.000000,0.250000,0,0);}
.m19_c01246{transform:matrix(0.296873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296873,0.000000,0.000000,0.250000,0,0);}
.m6c_c01246{transform:matrix(0.297061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297061,0.000000,0.000000,0.250000,0,0);}
.m5e_c01246{transform:matrix(0.298292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298292,0.000000,0.000000,0.250000,0,0);}
.m69_c01246{transform:matrix(0.298560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298560,0.000000,0.000000,0.250000,0,0);}
.m22_c01246{transform:matrix(0.298758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298758,0.000000,0.000000,0.250000,0,0);}
.m24_c01246{transform:matrix(0.298960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298960,0.000000,0.000000,0.250000,0,0);}
.m1a_c01246{transform:matrix(0.298987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298987,0.000000,0.000000,0.250000,0,0);}
.m71_c01246{transform:matrix(0.299152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299152,0.000000,0.000000,0.250000,0,0);}
.m37_c01246{transform:matrix(0.300736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300736,0.000000,0.000000,0.250000,0,0);}
.m35_c01246{transform:matrix(0.300932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300932,0.000000,0.000000,0.250000,0,0);}
.mc_c01246{transform:matrix(0.301095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301095,0.000000,0.000000,0.250000,0,0);}
.m60_c01246{transform:matrix(0.301582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301582,0.000000,0.000000,0.250000,0,0);}
.m77_c01246{transform:matrix(0.301624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301624,0.000000,0.000000,0.250000,0,0);}
.m21_c01246{transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);}
.m78_c01246{transform:matrix(0.301645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301645,0.000000,0.000000,0.250000,0,0);}
.m3e_c01246{transform:matrix(0.302778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302778,0.000000,0.000000,0.250000,0,0);}
.m55_c01246{transform:matrix(0.303256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303256,0.000000,0.000000,0.250000,0,0);}
.m67_c01246{transform:matrix(0.304625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304625,0.000000,0.000000,0.250000,0,0);}
.m5_c01246{transform:matrix(0.305112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305112,0.000000,0.000000,0.250000,0,0);}
.m38_c01246{transform:matrix(0.306706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306706,0.000000,0.000000,0.250000,0,0);}
.m33_c01246{transform:matrix(0.307789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307789,0.000000,0.000000,0.250000,0,0);}
.m13_c01246{transform:matrix(0.308260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308260,0.000000,0.000000,0.250000,0,0);}
.m40_c01246{transform:matrix(0.308319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308319,0.000000,0.000000,0.250000,0,0);}
.m1f_c01246{transform:matrix(0.311312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311312,0.000000,0.000000,0.250000,0,0);}
.m75_c01246{transform:matrix(0.313431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313431,0.000000,0.000000,0.250000,0,0);}
.m4_c01246{transform:matrix(0.313732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313732,0.000000,0.000000,0.250000,0,0);}
.m63_c01246{transform:matrix(0.314312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314312,0.000000,0.000000,0.250000,0,0);}
.m65_c01246{transform:matrix(0.315806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315806,0.000000,0.000000,0.250000,0,0);}
.m6b_c01246{transform:matrix(0.316992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316992,0.000000,0.000000,0.250000,0,0);}
.m20_c01246{transform:matrix(0.317086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317086,0.000000,0.000000,0.250000,0,0);}
.m61_c01246{transform:matrix(0.317228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317228,0.000000,0.000000,0.250000,0,0);}
.m48_c01246{transform:matrix(0.318494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318494,0.000000,0.000000,0.250000,0,0);}
.m45_c01246{transform:matrix(0.318648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318648,0.000000,0.000000,0.250000,0,0);}
.m43_c01246{transform:matrix(0.319461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319461,0.000000,0.000000,0.250000,0,0);}
.m15_c01246{transform:matrix(0.321407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321407,0.000000,0.000000,0.250000,0,0);}
.m41_c01246{transform:matrix(0.321535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321535,0.000000,0.000000,0.250000,0,0);}
.m6f_c01246{transform:matrix(0.321636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321636,0.000000,0.000000,0.250000,0,0);}
.m36_c01246{transform:matrix(0.323720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323720,0.000000,0.000000,0.250000,0,0);}
.m3a_c01246{transform:matrix(0.324283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324283,0.000000,0.000000,0.250000,0,0);}
.m58_c01246{transform:matrix(0.324631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324631,0.000000,0.000000,0.250000,0,0);}
.m72_c01246{transform:matrix(0.324725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324725,0.000000,0.000000,0.250000,0,0);}
.m23_c01246{transform:matrix(0.326100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326100,0.000000,0.000000,0.250000,0,0);}
.m2e_c01246{transform:matrix(0.326703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326703,0.000000,0.000000,0.250000,0,0);}
.m62_c01246{transform:matrix(0.327290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327290,0.000000,0.000000,0.250000,0,0);}
.m73_c01246{transform:matrix(0.328899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328899,0.000000,0.000000,0.250000,0,0);}
.m18_c01246{transform:matrix(0.329371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329371,0.000000,0.000000,0.250000,0,0);}
.m74_c01246{transform:matrix(0.330265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330265,0.000000,0.000000,0.250000,0,0);}
.m46_c01246{transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331271,0.000000,0.000000,0.250000,0,0);}
.m5a_c01246{transform:matrix(0.333358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333358,0.000000,0.000000,0.250000,0,0);}
.m9_c01246{transform:matrix(0.337758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337758,0.000000,0.000000,0.250000,0,0);}
.m3_c01246{transform:matrix(0.337905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337905,0.000000,0.000000,0.250000,0,0);}
.m5d_c01246{transform:matrix(0.338925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338925,0.000000,0.000000,0.250000,0,0);}
.m1b_c01246{transform:matrix(0.339965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339965,0.000000,0.000000,0.250000,0,0);}
.m57_c01246{transform:matrix(0.341539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341539,0.000000,0.000000,0.250000,0,0);}
.m4b_c01246{transform:matrix(0.341977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341977,0.000000,0.000000,0.250000,0,0);}
.m8_c01246{transform:matrix(0.342029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342029,0.000000,0.000000,0.250000,0,0);}
.m42_c01246{transform:matrix(0.342169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342169,0.000000,0.000000,0.250000,0,0);}
.m70_c01246{transform:matrix(0.342533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342533,0.000000,0.000000,0.250000,0,0);}
.m6e_c01246{transform:matrix(0.342694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342694,0.000000,0.000000,0.250000,0,0);}
.m6a_c01246{transform:matrix(0.345211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345211,0.000000,0.000000,0.250000,0,0);}
.mb_c01246{transform:matrix(0.348404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348404,0.000000,0.000000,0.250000,0,0);}
.m39_c01246{transform:matrix(0.349926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349926,0.000000,0.000000,0.250000,0,0);}
.m51_c01246{transform:matrix(0.356158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356158,0.000000,0.000000,0.250000,0,0);}
.m1d_c01246{transform:matrix(0.371873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371873,0.000000,0.000000,0.250000,0,0);}
.m49_c01246{transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);}
.m34_c01246{transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);}
.m16_c01246{transform:matrix(0.407787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407787,0.000000,0.000000,0.250000,0,0);}
.m3c_c01246{transform:matrix(0.429881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429881,0.000000,0.000000,0.250000,0,0);}
.m1e_c01246{transform:matrix(0.477563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477563,0.000000,0.000000,0.250000,0,0);}
.m3b_c01246{transform:matrix(0.490600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490600,0.000000,0.000000,0.250000,0,0);}
.v0_c01246{vertical-align:0.000000px;}
.ls9_c01246{letter-spacing:-2.744280px;}
.ls8_c01246{letter-spacing:-1.756339px;}
.ls10_c01246{letter-spacing:-0.657301px;}
.ls0_c01246{letter-spacing:0.000000px;}
.ls13_c01246{letter-spacing:0.384199px;}
.lsb_c01246{letter-spacing:0.611582px;}
.lsc_c01246{letter-spacing:1.097712px;}
.ls7_c01246{letter-spacing:1.646568px;}
.ls4_c01246{letter-spacing:1.811225px;}
.lse_c01246{letter-spacing:2.242469px;}
.ls3_c01246{letter-spacing:2.524738px;}
.ls11_c01246{letter-spacing:3.050071px;}
.ls5_c01246{letter-spacing:3.238250px;}
.ls12_c01246{letter-spacing:3.405610px;}
.ls6_c01246{letter-spacing:3.564000px;}
.lsd_c01246{letter-spacing:3.623400px;}
.lsf_c01246{letter-spacing:3.672900px;}
.ls2_c01246{letter-spacing:3.920400px;}
.ls1_c01246{letter-spacing:31.363200px;}
.lsa_c01246{letter-spacing:52.747398px;}
.sc__c01246{text-shadow:none;}
.sc0_c01246{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01246{-webkit-text-stroke:0px transparent;}
.sc0_c01246{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01246{word-spacing:-19.602000px;}
.ws1_c01246{word-spacing:0.000000px;}
._3_c01246{margin-left:-4.312440px;}
._1_c01246{margin-left:-2.823480px;}
._2_c01246{margin-left:-1.409760px;}
._0_c01246{width:13.199472px;}
._6_c01246{width:18.394992px;}
._5_c01246{width:26.501904px;}
._4_c01246{width:32.709600px;}
.fc0_c01246{color:transparent;}
.fs1_c01246{font-size:23.166000px;}
.fse_c01246{font-size:25.938000px;}
.fs11_c01246{font-size:27.720000px;}
.fs8_c01246{font-size:28.314000px;}
.fs2_c01246{font-size:31.363200px;}
.fs0_c01246{font-size:33.264000px;}
.fs10_c01246{font-size:38.808000px;}
.fs7_c01246{font-size:52.747398px;}
.fs4_c01246{font-size:64.548000px;}
.fsf_c01246{font-size:68.112198px;}
.fs5_c01246{font-size:71.280000px;}
.fs9_c01246{font-size:72.468000px;}
.fsa_c01246{font-size:73.458000px;}
.fsc_c01246{font-size:73.854000px;}
.fs6_c01246{font-size:74.844000px;}
.fs3_c01246{font-size:78.408000px;}
.fsd_c01246{font-size:79.200000px;}
.fsb_c01246{font-size:107.712198px;}
.y0_c01246{bottom:0.000000px;}
.y23_c01246{bottom:5.257920px;}
.y1_c01246{bottom:76.500000px;}
.y22_c01246{bottom:134.987520px;}
.y21_c01246{bottom:166.702170px;}
.y20_c01246{bottom:198.778170px;}
.y1f_c01246{bottom:230.146320px;}
.y1e_c01246{bottom:262.935120px;}
.y1d_c01246{bottom:293.936970px;}
.y1c_c01246{bottom:326.374320px;}
.y1b_c01246{bottom:357.732570px;}
.y1a_c01246{bottom:390.169920px;}
.y19_c01246{bottom:420.102570px;}
.y18_c01246{bottom:421.528170px;}
.y17_c01246{bottom:446.119770px;}
.y16_c01246{bottom:452.891370px;}
.y15_c01246{bottom:483.546720px;}
.y14_c01246{bottom:515.266320px;}
.y13_c01246{bottom:546.629520px;}
.y12_c01246{bottom:570.151920px;}
.y11_c01246{bottom:577.992720px;}
.y10_c01246{bottom:609.707370px;}
.yf_c01246{bottom:641.788320px;}
.ye_c01246{bottom:674.220720px;}
.yd_c01246{bottom:688.833120px;}
.yc_c01246{bottom:705.935370px;}
.yb_c01246{bottom:737.654970px;}
.ya_c01246{bottom:769.023120px;}
.y9_c01246{bottom:800.742720px;}
.y8_c01246{bottom:832.457370px;}
.y7_c01246{bottom:863.820570px;}
.y6_c01246{bottom:895.545120px;}
.y5_c01246{bottom:927.259770px;}
.y4_c01246{bottom:1014.577770px;}
.y3_c01246{bottom:1025.269770px;}
.y2_c01246{bottom:1094.054970px;}
.h4_c01246{height:20.887891px;}
.h3_c01246{height:24.161414px;}
.h10_c01246{height:27.052523px;}
.h13_c01246{height:28.911094px;}
.ha_c01246{height:29.530617px;}
.h2_c01246{height:34.693313px;}
.h9_c01246{height:35.129767px;}
.h12_c01246{height:40.475531px;}
.h6_c01246{height:67.321547px;}
.h11_c01246{height:71.038894px;}
.hb_c01246{height:71.123379px;}
.h7_c01246{height:71.836875px;}
.he_c01246{height:72.483662px;}
.hc_c01246{height:74.031891px;}
.h5_c01246{height:76.953164px;}
.hf_c01246{height:77.730469px;}
.h8_c01246{height:78.059953px;}
.hd_c01246{height:105.713632px;}
.h1_c01246{height:1110.000000px;}
.h0_c01246{height:1263.000000px;}
.w1_c01246{width:775.500000px;}
.w0_c01246{width:892.500000px;}
.x0_c01246{left:0.000000px;}
.x1_c01246{left:58.500000px;}
.x39_c01246{left:132.141885px;}
.xf_c01246{left:133.879335px;}
.x3a_c01246{left:166.920585px;}
.x2_c01246{left:171.642885px;}
.x10_c01246{left:199.451985px;}
.x22_c01246{left:221.627985px;}
.x11_c01246{left:233.319885px;}
.x2a_c01246{left:245.363235px;}
.x42_c01246{left:256.946235px;}
.x3b_c01246{left:276.577935px;}
.x23_c01246{left:278.473785px;}
.x2e_c01246{left:283.300035px;}
.x1a_c01246{left:288.393585px;}
.x5_c01246{left:289.546935px;}
.x1b_c01246{left:300.912135px;}
.x24_c01246{left:311.282385px;}
.x3c_c01246{left:321.073485px;}
.x43_c01246{left:325.226535px;}
.x20_c01246{left:332.448585px;}
.x12_c01246{left:333.601935px;}
.x25_c01246{left:344.274135px;}
.x17_c01246{left:356.134335px;}
.x26_c01246{left:366.722385px;}
.x1c_c01246{left:367.806435px;}
.x13_c01246{left:378.627135px;}
.x6_c01246{left:388.368735px;}
.x32_c01246{left:389.616135px;}
.x3d_c01246{left:399.085485px;}
.x7_c01246{left:400.689285px;}
.x34_c01246{left:410.519985px;}
.x48_c01246{left:412.108935px;}
.x2f_c01246{left:422.414835px;}
.x35_c01246{left:433.874085px;}
.x3e_c01246{left:442.987035px;}
.x14_c01246{left:444.575985px;}
.x8_c01246{left:456.683685px;}
.x29_c01246{left:465.984735px;}
.x27_c01246{left:467.029185px;}
.x3f_c01246{left:469.053735px;}
.x41_c01246{left:470.276385px;}
.x9_c01246{left:478.300335px;}
.x21_c01246{left:488.566635px;}
.x33_c01246{left:490.279335px;}
.x1d_c01246{left:498.872535px;}
.x18_c01246{left:500.852535px;}
.x31_c01246{left:511.866285px;}
.x47_c01246{left:521.013885px;}
.xa_c01246{left:522.271185px;}
.x4a_c01246{left:528.419085px;}
.x37_c01246{left:532.052385px;}
.x44_c01246{left:533.591835px;}
.x1e_c01246{left:543.288885px;}
.xe_c01246{left:545.902485px;}
.xb_c01246{left:555.995535px;}
.x28_c01246{left:565.900485px;}
.x2b_c01246{left:568.093335px;}
.x1f_c01246{left:577.909185px;}
.x2c_c01246{left:579.176385px;}
.x15_c01246{left:588.917985px;}
.x38_c01246{left:601.154385px;}
.x49_c01246{left:610.524735px;}
.x19_c01246{left:611.861235px;}
.x16_c01246{left:621.003885px;}
.xc_c01246{left:623.117535px;}
.x36_c01246{left:632.740335px;}
.x45_c01246{left:634.690635px;}
.x46_c01246{left:644.135235px;}
.x30_c01246{left:645.753885px;}
.x2d_c01246{left:656.841885px;}
.x40_c01246{left:665.860785px;}
.x4_c01246{left:688.091235px;}
.xd_c01246{left:689.497035px;}
.x3_c01246{left:724.033185px;}
@media print{
.v0_c01246{vertical-align:0.000000pt;}
.ls9_c01246{letter-spacing:-2.439360pt;}
.ls8_c01246{letter-spacing:-1.561190pt;}
.ls10_c01246{letter-spacing:-0.584267pt;}
.ls0_c01246{letter-spacing:0.000000pt;}
.ls13_c01246{letter-spacing:0.341510pt;}
.lsb_c01246{letter-spacing:0.543629pt;}
.lsc_c01246{letter-spacing:0.975744pt;}
.ls7_c01246{letter-spacing:1.463616pt;}
.ls4_c01246{letter-spacing:1.609978pt;}
.lse_c01246{letter-spacing:1.993306pt;}
.ls3_c01246{letter-spacing:2.244211pt;}
.ls11_c01246{letter-spacing:2.711174pt;}
.ls5_c01246{letter-spacing:2.878445pt;}
.ls12_c01246{letter-spacing:3.027209pt;}
.ls6_c01246{letter-spacing:3.168000pt;}
.lsd_c01246{letter-spacing:3.220800pt;}
.lsf_c01246{letter-spacing:3.264800pt;}
.ls2_c01246{letter-spacing:3.484800pt;}
.ls1_c01246{letter-spacing:27.878400pt;}
.lsa_c01246{letter-spacing:46.886576pt;}
.ws0_c01246{word-spacing:-17.424000pt;}
.ws1_c01246{word-spacing:0.000000pt;}
._3_c01246{margin-left:-3.833280pt;}
._1_c01246{margin-left:-2.509760pt;}
._2_c01246{margin-left:-1.253120pt;}
._0_c01246{width:11.732864pt;}
._6_c01246{width:16.351104pt;}
._5_c01246{width:23.557248pt;}
._4_c01246{width:29.075200pt;}
.fs1_c01246{font-size:20.592000pt;}
.fse_c01246{font-size:23.056000pt;}
.fs11_c01246{font-size:24.640000pt;}
.fs8_c01246{font-size:25.168000pt;}
.fs2_c01246{font-size:27.878400pt;}
.fs0_c01246{font-size:29.568000pt;}
.fs10_c01246{font-size:34.496000pt;}
.fs7_c01246{font-size:46.886576pt;}
.fs4_c01246{font-size:57.376000pt;}
.fsf_c01246{font-size:60.544176pt;}
.fs5_c01246{font-size:63.360000pt;}
.fs9_c01246{font-size:64.416000pt;}
.fsa_c01246{font-size:65.296000pt;}
.fsc_c01246{font-size:65.648000pt;}
.fs6_c01246{font-size:66.528000pt;}
.fs3_c01246{font-size:69.696000pt;}
.fsd_c01246{font-size:70.400000pt;}
.fsb_c01246{font-size:95.744176pt;}
.y0_c01246{bottom:0.000000pt;}
.y23_c01246{bottom:4.673707pt;}
.y1_c01246{bottom:68.000000pt;}
.y22_c01246{bottom:119.988907pt;}
.y21_c01246{bottom:148.179707pt;}
.y20_c01246{bottom:176.691707pt;}
.y1f_c01246{bottom:204.574507pt;}
.y1e_c01246{bottom:233.720107pt;}
.y1d_c01246{bottom:261.277307pt;}
.y1c_c01246{bottom:290.110507pt;}
.y1b_c01246{bottom:317.984507pt;}
.y1a_c01246{bottom:346.817707pt;}
.y19_c01246{bottom:373.424507pt;}
.y18_c01246{bottom:374.691707pt;}
.y17_c01246{bottom:396.550907pt;}
.y16_c01246{bottom:402.570107pt;}
.y15_c01246{bottom:429.819307pt;}
.y14_c01246{bottom:458.014507pt;}
.y13_c01246{bottom:485.892907pt;}
.y12_c01246{bottom:506.801707pt;}
.y11_c01246{bottom:513.771307pt;}
.y10_c01246{bottom:541.962107pt;}
.yf_c01246{bottom:570.478507pt;}
.ye_c01246{bottom:599.307307pt;}
.yd_c01246{bottom:612.296107pt;}
.yc_c01246{bottom:627.498107pt;}
.yb_c01246{bottom:655.693307pt;}
.ya_c01246{bottom:683.576107pt;}
.y9_c01246{bottom:711.771307pt;}
.y8_c01246{bottom:739.962107pt;}
.y7_c01246{bottom:767.840507pt;}
.y6_c01246{bottom:796.040107pt;}
.y5_c01246{bottom:824.230907pt;}
.y4_c01246{bottom:901.846907pt;}
.y3_c01246{bottom:911.350907pt;}
.y2_c01246{bottom:972.493307pt;}
.h4_c01246{height:18.567014pt;}
.h3_c01246{height:21.476813pt;}
.h10_c01246{height:24.046688pt;}
.h13_c01246{height:25.698750pt;}
.ha_c01246{height:26.249438pt;}
.h2_c01246{height:30.838500pt;}
.h9_c01246{height:31.226460pt;}
.h12_c01246{height:35.978250pt;}
.h6_c01246{height:59.841375pt;}
.h11_c01246{height:63.145684pt;}
.hb_c01246{height:63.220781pt;}
.h7_c01246{height:63.855000pt;}
.he_c01246{height:64.429922pt;}
.hc_c01246{height:65.806125pt;}
.h5_c01246{height:68.402813pt;}
.hf_c01246{height:69.093750pt;}
.h8_c01246{height:69.386625pt;}
.hd_c01246{height:93.967673pt;}
.h1_c01246{height:986.666667pt;}
.h0_c01246{height:1122.666667pt;}
.w1_c01246{width:689.333333pt;}
.w0_c01246{width:793.333333pt;}
.x0_c01246{left:0.000000pt;}
.x1_c01246{left:52.000000pt;}
.x39_c01246{left:117.459453pt;}
.xf_c01246{left:119.003853pt;}
.x3a_c01246{left:148.373853pt;}
.x2_c01246{left:152.571453pt;}
.x10_c01246{left:177.290653pt;}
.x22_c01246{left:197.002653pt;}
.x11_c01246{left:207.395453pt;}
.x2a_c01246{left:218.100653pt;}
.x42_c01246{left:228.396653pt;}
.x3b_c01246{left:245.847053pt;}
.x23_c01246{left:247.532253pt;}
.x2e_c01246{left:251.822253pt;}
.x1a_c01246{left:256.349853pt;}
.x5_c01246{left:257.375053pt;}
.x1b_c01246{left:267.477453pt;}
.x24_c01246{left:276.695453pt;}
.x3c_c01246{left:285.398653pt;}
.x43_c01246{left:289.090253pt;}
.x20_c01246{left:295.509853pt;}
.x12_c01246{left:296.535053pt;}
.x25_c01246{left:306.021453pt;}
.x17_c01246{left:316.563853pt;}
.x26_c01246{left:325.975453pt;}
.x1c_c01246{left:326.939053pt;}
.x13_c01246{left:336.557453pt;}
.x6_c01246{left:345.216653pt;}
.x32_c01246{left:346.325453pt;}
.x3d_c01246{left:354.742653pt;}
.x7_c01246{left:356.168253pt;}
.x34_c01246{left:364.906653pt;}
.x48_c01246{left:366.319053pt;}
.x2f_c01246{left:375.479853pt;}
.x35_c01246{left:385.665853pt;}
.x3e_c01246{left:393.766253pt;}
.x14_c01246{left:395.178653pt;}
.x8_c01246{left:405.941053pt;}
.x29_c01246{left:414.208653pt;}
.x27_c01246{left:415.137053pt;}
.x3f_c01246{left:416.936653pt;}
.x41_c01246{left:418.023453pt;}
.x9_c01246{left:425.155853pt;}
.x21_c01246{left:434.281453pt;}
.x33_c01246{left:435.803853pt;}
.x1d_c01246{left:443.442253pt;}
.x18_c01246{left:445.202253pt;}
.x31_c01246{left:454.992253pt;}
.x47_c01246{left:463.123453pt;}
.xa_c01246{left:464.241053pt;}
.x4a_c01246{left:469.705853pt;}
.x37_c01246{left:472.935453pt;}
.x44_c01246{left:474.303853pt;}
.x1e_c01246{left:482.923453pt;}
.xe_c01246{left:485.246653pt;}
.xb_c01246{left:494.218253pt;}
.x28_c01246{left:503.022653pt;}
.x2b_c01246{left:504.971853pt;}
.x1f_c01246{left:513.697053pt;}
.x2c_c01246{left:514.823453pt;}
.x15_c01246{left:523.482653pt;}
.x38_c01246{left:534.359453pt;}
.x49_c01246{left:542.688653pt;}
.x19_c01246{left:543.876653pt;}
.x16_c01246{left:552.003453pt;}
.xc_c01246{left:553.882253pt;}
.x36_c01246{left:562.435853pt;}
.x45_c01246{left:564.169453pt;}
.x46_c01246{left:572.564653pt;}
.x30_c01246{left:574.003453pt;}
.x2d_c01246{left:583.859453pt;}
.x40_c01246{left:591.876253pt;}
.x4_c01246{left:611.636653pt;}
.xd_c01246{left:612.886253pt;}
.x3_c01246{left:643.585053pt;}
}





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

.ir_c01247:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01247{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01247;src:url('chunks/assets/font_76574cd528409eda94ffce17.woff2')format("woff");}.ff1_c01247{font-family:ff1_c01247;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01247;src:url('chunks/assets/font_0efde509120dae0cedd3a52d.woff2')format("woff");}.ff2_c01247{font-family:ff2_c01247;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01247;src:url('chunks/assets/font_706b7ad9c61f42a8147b2381.woff2')format("woff");}.ff3_c01247{font-family:ff3_c01247;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01247;src:url('chunks/assets/font_9fa0a0e53669a33efbf85ba6.woff2')format("woff");}.ff4_c01247{font-family:ff4_c01247;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01247;src:url('chunks/assets/font_76a34a413cff6d5825ae8b3c.woff2')format("woff");}.ff5_c01247{font-family:ff5_c01247;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3d_c01247{transform:matrix(0.018751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018751,0.000000,0.000000,0.250000,0,0);}
.m84_c01247{transform:matrix(0.034723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.034723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.034723,0.000000,0.000000,0.250000,0,0);}
.m87_c01247{transform:matrix(0.110775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110775,0.000000,0.000000,0.250000,0,0);}
.m88_c01247{transform:matrix(0.118417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118417,0.000000,0.000000,0.250000,0,0);}
.m8d_c01247{transform:matrix(0.133929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133929,0.000000,0.000000,0.250000,0,0);}
.m55_c01247{transform:matrix(0.136799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136799,0.000000,0.000000,0.250000,0,0);}
.m85_c01247{transform:matrix(0.145834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145834,0.000000,0.000000,0.250000,0,0);}
.m3c_c01247{transform:matrix(0.146874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146874,0.000000,0.000000,0.250000,0,0);}
.m51_c01247{transform:matrix(0.161437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161437,0.000000,0.000000,0.250000,0,0);}
.m20_c01247{transform:matrix(0.162880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162880,0.000000,0.000000,0.250000,0,0);}
.m6f_c01247{transform:matrix(0.164584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164584,0.000000,0.000000,0.250000,0,0);}
.m3e_c01247{transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);}
.m6e_c01247{transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);}
.m11_c01247{transform:matrix(0.178572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178572,0.000000,0.000000,0.250000,0,0);}
.m8b_c01247{transform:matrix(0.178573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178573,0.000000,0.000000,0.250000,0,0);}
.m6d_c01247{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m3b_c01247{transform:matrix(0.189063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189063,0.000000,0.000000,0.250000,0,0);}
.m50_c01247{transform:matrix(0.190367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190367,0.000000,0.000000,0.250000,0,0);}
.m8c_c01247{transform:matrix(0.214287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214287,0.000000,0.000000,0.250000,0,0);}
.m54_c01247{transform:matrix(0.214662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214662,0.000000,0.000000,0.250000,0,0);}
.mb_c01247{transform:matrix(0.221361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221361,0.000000,0.000000,0.250000,0,0);}
.m53_c01247{transform:matrix(0.222895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222895,0.000000,0.000000,0.250000,0,0);}
.m52_c01247{transform:matrix(0.224730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224730,0.000000,0.000000,0.250000,0,0);}
.m9_c01247{transform:matrix(0.226445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226445,0.000000,0.000000,0.250000,0,0);}
.md_c01247{transform:matrix(0.235249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235249,0.000000,0.000000,0.250000,0,0);}
.m56_c01247{transform:matrix(0.237484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237484,0.000000,0.000000,0.250000,0,0);}
.m59_c01247{transform:matrix(0.237667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237667,0.000000,0.000000,0.250000,0,0);}
.m6a_c01247{transform:matrix(0.238455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238455,0.000000,0.000000,0.250000,0,0);}
.m57_c01247{transform:matrix(0.239893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239893,0.000000,0.000000,0.250000,0,0);}
.m58_c01247{transform:matrix(0.242998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242998,0.000000,0.000000,0.250000,0,0);}
.m0_c01247{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m43_c01247{transform:matrix(0.250086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250086,0.000000,0.000000,0.250000,0,0);}
.m16_c01247{transform:matrix(0.250114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250114,0.000000,0.000000,0.250000,0,0);}
.m34_c01247{transform:matrix(0.250284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250284,0.000000,0.000000,0.250000,0,0);}
.ma_c01247{transform:matrix(0.251173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251173,0.000000,0.000000,0.250000,0,0);}
.m21_c01247{transform:matrix(0.252994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252994,0.000000,0.000000,0.250000,0,0);}
.m63_c01247{transform:matrix(0.255902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255902,0.000000,0.000000,0.250000,0,0);}
.m81_c01247{transform:matrix(0.258104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258104,0.000000,0.000000,0.250000,0,0);}
.mf_c01247{transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258684,0.000000,0.000000,0.250000,0,0);}
.m86_c01247{transform:matrix(0.258705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258705,0.000000,0.000000,0.250000,0,0);}
.m40_c01247{transform:matrix(0.258780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258780,0.000000,0.000000,0.250000,0,0);}
.m39_c01247{transform:matrix(0.260073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260073,0.000000,0.000000,0.250000,0,0);}
.m2b_c01247{transform:matrix(0.261813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261813,0.000000,0.000000,0.250000,0,0);}
.m8e_c01247{transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);}
.m42_c01247{transform:matrix(0.265717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265717,0.000000,0.000000,0.250000,0,0);}
.m6c_c01247{transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266213,0.000000,0.000000,0.250000,0,0);}
.m45_c01247{transform:matrix(0.266638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266638,0.000000,0.000000,0.250000,0,0);}
.m75_c01247{transform:matrix(0.266741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266741,0.000000,0.000000,0.250000,0,0);}
.m78_c01247{transform:matrix(0.273434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273434,0.000000,0.000000,0.250000,0,0);}
.m37_c01247{transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);}
.m60_c01247{transform:matrix(0.275038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275038,0.000000,0.000000,0.250000,0,0);}
.m44_c01247{transform:matrix(0.275069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275069,0.000000,0.000000,0.250000,0,0);}
.m5e_c01247{transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000000,0.000000,0.250000,0,0);}
.m1_c01247{transform:matrix(0.275938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275938,0.000000,0.000000,0.250000,0,0);}
.m8_c01247{transform:matrix(0.276607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276607,0.000000,0.000000,0.250000,0,0);}
.m18_c01247{transform:matrix(0.278374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278374,0.000000,0.000000,0.250000,0,0);}
.m8f_c01247{transform:matrix(0.280116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280116,0.000000,0.000000,0.250000,0,0);}
.m4f_c01247{transform:matrix(0.280820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280820,0.000000,0.000000,0.250000,0,0);}
.m7d_c01247{transform:matrix(0.280961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280961,0.000000,0.000000,0.250000,0,0);}
.m90_c01247{transform:matrix(0.282739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282739,0.000000,0.000000,0.250000,0,0);}
.m7e_c01247{transform:matrix(0.283338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283338,0.000000,0.000000,0.250000,0,0);}
.m6b_c01247{transform:matrix(0.283756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283756,0.000000,0.000000,0.250000,0,0);}
.m26_c01247{transform:matrix(0.284047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284047,0.000000,0.000000,0.250000,0,0);}
.m4b_c01247{transform:matrix(0.284062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284062,0.000000,0.000000,0.250000,0,0);}
.m28_c01247{transform:matrix(0.285870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285870,0.000000,0.000000,0.250000,0,0);}
.m82_c01247{transform:matrix(0.286873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286873,0.000000,0.000000,0.250000,0,0);}
.m6_c01247{transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287045,0.000000,0.000000,0.250000,0,0);}
.m7a_c01247{transform:matrix(0.288982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288982,0.000000,0.000000,0.250000,0,0);}
.m7b_c01247{transform:matrix(0.289940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289940,0.000000,0.000000,0.250000,0,0);}
.m5d_c01247{transform:matrix(0.290179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290179,0.000000,0.000000,0.250000,0,0);}
.m76_c01247{transform:matrix(0.291508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291508,0.000000,0.000000,0.250000,0,0);}
.m38_c01247{transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291801,0.000000,0.000000,0.250000,0,0);}
.m5a_c01247{transform:matrix(0.291876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291876,0.000000,0.000000,0.250000,0,0);}
.m4_c01247{transform:matrix(0.292147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292147,0.000000,0.000000,0.250000,0,0);}
.m61_c01247{transform:matrix(0.293400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293400,0.000000,0.000000,0.250000,0,0);}
.m7_c01247{transform:matrix(0.293448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293448,0.000000,0.000000,0.250000,0,0);}
.m69_c01247{transform:matrix(0.293573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293573,0.000000,0.000000,0.250000,0,0);}
.mc_c01247{transform:matrix(0.293937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293937,0.000000,0.000000,0.250000,0,0);}
.m4c_c01247{transform:matrix(0.294105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294105,0.000000,0.000000,0.250000,0,0);}
.m2e_c01247{transform:matrix(0.294295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294295,0.000000,0.000000,0.250000,0,0);}
.m1d_c01247{transform:matrix(0.294593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294593,0.000000,0.000000,0.250000,0,0);}
.m70_c01247{transform:matrix(0.295251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295251,0.000000,0.000000,0.250000,0,0);}
.m73_c01247{transform:matrix(0.295270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295270,0.000000,0.000000,0.250000,0,0);}
.m77_c01247{transform:matrix(0.295791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295791,0.000000,0.000000,0.250000,0,0);}
.m12_c01247{transform:matrix(0.296873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296873,0.000000,0.000000,0.250000,0,0);}
.m7c_c01247{transform:matrix(0.298177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298177,0.000000,0.000000,0.250000,0,0);}
.m5b_c01247{transform:matrix(0.298932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298932,0.000000,0.000000,0.250000,0,0);}
.m5_c01247{transform:matrix(0.298960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298960,0.000000,0.000000,0.250000,0,0);}
.m10_c01247{transform:matrix(0.300268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300268,0.000000,0.000000,0.250000,0,0);}
.m74_c01247{transform:matrix(0.300640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300640,0.000000,0.000000,0.250000,0,0);}
.m24_c01247{transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301644,0.000000,0.000000,0.250000,0,0);}
.m64_c01247{transform:matrix(0.302722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302722,0.000000,0.000000,0.250000,0,0);}
.m22_c01247{transform:matrix(0.303230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303230,0.000000,0.000000,0.250000,0,0);}
.m2c_c01247{transform:matrix(0.304653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304653,0.000000,0.000000,0.250000,0,0);}
.m65_c01247{transform:matrix(0.306532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306532,0.000000,0.000000,0.250000,0,0);}
.m1b_c01247{transform:matrix(0.307953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307953,0.000000,0.000000,0.250000,0,0);}
.m47_c01247{transform:matrix(0.309614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309614,0.000000,0.000000,0.250000,0,0);}
.m7f_c01247{transform:matrix(0.311236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311236,0.000000,0.000000,0.250000,0,0);}
.m3_c01247{transform:matrix(0.312345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312345,0.000000,0.000000,0.250000,0,0);}
.m71_c01247{transform:matrix(0.312747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312747,0.000000,0.000000,0.250000,0,0);}
.m4a_c01247{transform:matrix(0.312838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312838,0.000000,0.000000,0.250000,0,0);}
.m3f_c01247{transform:matrix(0.313756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313756,0.000000,0.000000,0.250000,0,0);}
.m2a_c01247{transform:matrix(0.314364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314364,0.000000,0.000000,0.250000,0,0);}
.m67_c01247{transform:matrix(0.317228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317228,0.000000,0.000000,0.250000,0,0);}
.me_c01247{transform:matrix(0.319171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319171,0.000000,0.000000,0.250000,0,0);}
.m2d_c01247{transform:matrix(0.322754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322754,0.000000,0.000000,0.250000,0,0);}
.m29_c01247{transform:matrix(0.322809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322809,0.000000,0.000000,0.250000,0,0);}
.m17_c01247{transform:matrix(0.322915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322915,0.000000,0.000000,0.250000,0,0);}
.m4d_c01247{transform:matrix(0.323238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323238,0.000000,0.000000,0.250000,0,0);}
.m5f_c01247{transform:matrix(0.325559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325559,0.000000,0.000000,0.250000,0,0);}
.m68_c01247{transform:matrix(0.326100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326100,0.000000,0.000000,0.250000,0,0);}
.m79_c01247{transform:matrix(0.326703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326703,0.000000,0.000000,0.250000,0,0);}
.m3a_c01247{transform:matrix(0.327411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327411,0.000000,0.000000,0.250000,0,0);}
.m25_c01247{transform:matrix(0.329277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329277,0.000000,0.000000,0.250000,0,0);}
.m72_c01247{transform:matrix(0.330265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330265,0.000000,0.000000,0.250000,0,0);}
.m1a_c01247{transform:matrix(0.330354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330354,0.000000,0.000000,0.250000,0,0);}
.m46_c01247{transform:matrix(0.330453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330453,0.000000,0.000000,0.250000,0,0);}
.m48_c01247{transform:matrix(0.334205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334205,0.000000,0.000000,0.250000,0,0);}
.m14_c01247{transform:matrix(0.335206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335206,0.000000,0.000000,0.250000,0,0);}
.m62_c01247{transform:matrix(0.335890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335890,0.000000,0.000000,0.250000,0,0);}
.m23_c01247{transform:matrix(0.336403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336403,0.000000,0.000000,0.250000,0,0);}
.m35_c01247{transform:matrix(0.339185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339185,0.000000,0.000000,0.250000,0,0);}
.m32_c01247{transform:matrix(0.340178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340178,0.000000,0.000000,0.250000,0,0);}
.m2_c01247{transform:matrix(0.340465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340465,0.000000,0.000000,0.250000,0,0);}
.m49_c01247{transform:matrix(0.342652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342652,0.000000,0.000000,0.250000,0,0);}
.m91_c01247{transform:matrix(0.345716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345716,0.000000,0.000000,0.250000,0,0);}
.m13_c01247{transform:matrix(0.348286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348286,0.000000,0.000000,0.250000,0,0);}
.m5c_c01247{transform:matrix(0.348453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348453,0.000000,0.000000,0.250000,0,0);}
.m4e_c01247{transform:matrix(0.355109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355109,0.000000,0.000000,0.250000,0,0);}
.m41_c01247{transform:matrix(0.356134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356134,0.000000,0.000000,0.250000,0,0);}
.m1e_c01247{transform:matrix(0.357083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357083,0.000000,0.000000,0.250000,0,0);}
.m80_c01247{transform:matrix(0.359818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359818,0.000000,0.000000,0.250000,0,0);}
.m27_c01247{transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367370,0.000000,0.000000,0.250000,0,0);}
.m66_c01247{transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373392,0.000000,0.000000,0.250000,0,0);}
.m31_c01247{transform:matrix(0.374196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374196,0.000000,0.000000,0.250000,0,0);}
.m19_c01247{transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379415,0.000000,0.000000,0.250000,0,0);}
.m1c_c01247{transform:matrix(0.381065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381065,0.000000,0.000000,0.250000,0,0);}
.m15_c01247{transform:matrix(0.386859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386859,0.000000,0.000000,0.250000,0,0);}
.m1f_c01247{transform:matrix(0.391110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391110,0.000000,0.000000,0.250000,0,0);}
.m30_c01247{transform:matrix(0.408213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408213,0.000000,0.000000,0.250000,0,0);}
.m36_c01247{transform:matrix(0.409814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409814,0.000000,0.000000,0.250000,0,0);}
.m2f_c01247{transform:matrix(0.471573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471573,0.000000,0.000000,0.250000,0,0);}
.m83_c01247{transform:matrix(0.479938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479938,0.000000,0.000000,0.250000,0,0);}
.m89_c01247{transform:matrix(0.552946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552946,0.000000,0.000000,0.250000,0,0);}
.m8a_c01247{transform:matrix(0.740298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.740298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.740298,0.000000,0.000000,0.250000,0,0);}
.m33_c01247{transform:matrix(1.027233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.027233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.027233,0.000000,0.000000,0.250000,0,0);}
.v0_c01247{vertical-align:0.000000px;}
.v1_c01247{vertical-align:4.296600px;}
.ls15_c01247{letter-spacing:-2.869027px;}
.ls8_c01247{letter-spacing:-2.744280px;}
.ls14_c01247{letter-spacing:-2.550240px;}
.ls1a_c01247{letter-spacing:-2.182950px;}
.ls7_c01247{letter-spacing:-1.614690px;}
.lse_c01247{letter-spacing:-0.409959px;}
.ls6_c01247{letter-spacing:-0.117612px;}
.ls3_c01247{letter-spacing:0.000000px;}
.lsc_c01247{letter-spacing:0.088407px;}
.ls1_c01247{letter-spacing:0.601940px;}
.ls0_c01247{letter-spacing:0.999900px;}
.ls13_c01247{letter-spacing:1.089871px;}
.ls5_c01247{letter-spacing:1.097712px;}
.ls2_c01247{letter-spacing:1.474070px;}
.ls11_c01247{letter-spacing:1.861200px;}
.ls12_c01247{letter-spacing:1.980000px;}
.ls16_c01247{letter-spacing:2.642350px;}
.ls9_c01247{letter-spacing:2.783484px;}
.ls1c_c01247{letter-spacing:2.970000px;}
.lsd_c01247{letter-spacing:3.564000px;}
.ls17_c01247{letter-spacing:3.643200px;}
.ls18_c01247{letter-spacing:3.752110px;}
.ls1b_c01247{letter-spacing:3.821400px;}
.lsf_c01247{letter-spacing:3.880810px;}
.ls4_c01247{letter-spacing:3.920400px;}
.ls1d_c01247{letter-spacing:39.916800px;}
.lsb_c01247{letter-spacing:47.044800px;}
.ls19_c01247{letter-spacing:51.321798px;}
.ls10_c01247{letter-spacing:57.024198px;}
.lsa_c01247{letter-spacing:58.449798px;}
.sc__c01247{text-shadow:none;}
.sc0_c01247{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01247{-webkit-text-stroke:0px transparent;}
.sc0_c01247{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01247{word-spacing:-22.385484px;}
.ws5_c01247{word-spacing:-21.076070px;}
.ws2_c01247{word-spacing:-19.602000px;}
.ws0_c01247{word-spacing:-19.484388px;}
.ws6_c01247{word-spacing:-15.592500px;}
.ws4_c01247{word-spacing:-0.940896px;}
.ws7_c01247{word-spacing:0.000000px;}
.ws3_c01247{word-spacing:0.940896px;}
._e_c01247{margin-left:-20.769210px;}
._d_c01247{margin-left:-19.524384px;}
._4_c01247{margin-left:-8.703288px;}
._10_c01247{width:3.366000px;}
._2_c01247{width:5.174532px;}
._0_c01247{width:7.331148px;}
._3_c01247{width:8.938512px;}
._9_c01247{width:10.579064px;}
._b_c01247{width:16.073640px;}
._a_c01247{width:21.791999px;}
._7_c01247{width:30.776922px;}
._6_c01247{width:32.196780px;}
._8_c01247{width:33.614262px;}
._5_c01247{width:35.036496px;}
._c_c01247{width:42.418728px;}
._1_c01247{width:53.239428px;}
._f_c01247{width:140.481000px;}
.fc0_c01247{color:transparent;}
.fsa_c01247{font-size:19.998000px;}
.fs1a_c01247{font-size:27.720000px;}
.fs4_c01247{font-size:35.838000px;}
.fse_c01247{font-size:37.224000px;}
.fsf_c01247{font-size:39.600000px;}
.fs19_c01247{font-size:39.916800px;}
.fs12_c01247{font-size:42.174000px;}
.fs0_c01247{font-size:43.560000px;}
.fs3_c01247{font-size:46.134000px;}
.fs8_c01247{font-size:46.530000px;}
.fs6_c01247{font-size:47.044800px;}
.fs15_c01247{font-size:51.321798px;}
.fs1b_c01247{font-size:53.262000px;}
.fsd_c01247{font-size:57.024198px;}
.fs5_c01247{font-size:58.449798px;}
.fs18_c01247{font-size:59.400000px;}
.fsc_c01247{font-size:60.588000px;}
.fs17_c01247{font-size:62.370000px;}
.fs9_c01247{font-size:71.280000px;}
.fs7_c01247{font-size:72.864000px;}
.fs14_c01247{font-size:75.042198px;}
.fs16_c01247{font-size:76.428000px;}
.fsb_c01247{font-size:77.616198px;}
.fs2_c01247{font-size:78.408000px;}
.fs11_c01247{font-size:81.972198px;}
.fs10_c01247{font-size:91.872198px;}
.fs13_c01247{font-size:104.544000px;}
.fs1_c01247{font-size:120.384000px;}
.y0_c01247{bottom:0.000000px;}
.y27_c01247{bottom:10.955385px;}
.y1_c01247{bottom:76.500000px;}
.y26_c01247{bottom:146.030985px;}
.y23_c01247{bottom:148.525785px;}
.y25_c01247{bottom:149.243535px;}
.y22_c01247{bottom:150.307785px;}
.y24_c01247{bottom:153.520335px;}
.y21_c01247{bottom:178.468335px;}
.y20_c01247{bottom:180.250335px;}
.y1f_c01247{bottom:201.629385px;}
.y1c_c01247{bottom:211.613535px;}
.y1e_c01247{bottom:212.326335px;}
.y1d_c01247{bottom:221.587785px;}
.y1b_c01247{bottom:243.333135px;}
.y1a_c01247{bottom:275.404185px;}
.y19_c01247{bottom:307.485135px;}
.y18_c01247{bottom:339.912585px;}
.y17_c01247{bottom:371.637135px;}
.y16_c01247{bottom:404.420985px;}
.y15_c01247{bottom:425.097135px;}
.y14_c01247{bottom:435.427785px;}
.y13_c01247{bottom:498.866985px;}
.y12_c01247{bottom:530.235135px;}
.y11_c01247{bottom:556.965135px;}
.y10_c01247{bottom:561.949785px;}
.yf_c01247{bottom:593.674335px;}
.ye_c01247{bottom:625.393935px;}
.yd_c01247{bottom:656.757135px;}
.yc_c01247{bottom:719.839935px;}
.y28_c01247{bottom:720.547785px;}
.yb_c01247{bottom:751.203135px;}
.ya_c01247{bottom:751.559535px;}
.y9_c01247{bottom:782.917785px;}
.y8_c01247{bottom:814.280985px;}
.y7_c01247{bottom:846.000585px;}
.y6_c01247{bottom:877.725135px;}
.y2_c01247{bottom:897.678585px;}
.y5_c01247{bottom:909.439785px;}
.y4_c01247{bottom:941.520735px;}
.y3_c01247{bottom:1098.331785px;}
.hb_c01247{height:20.154234px;}
.h1b_c01247{height:26.584589px;}
.h1c_c01247{height:28.911094px;}
.h7_c01247{height:31.331837px;}
.h16_c01247{height:34.180317px;}
.hf_c01247{height:36.533320px;}
.he_c01247{height:37.978116px;}
.h10_c01247{height:38.865234px;}
.h6_c01247{height:38.927565px;}
.h13_c01247{height:41.391475px;}
.h2_c01247{height:42.751758px;}
.h5_c01247{height:48.116320px;}
.h9_c01247{height:48.529336px;}
.h1d_c01247{height:52.273740px;}
.h1a_c01247{height:58.297852px;}
.h18_c01247{height:61.212744px;}
.hd_c01247{height:63.191391px;}
.h8_c01247{height:71.512031px;}
.ha_c01247{height:71.836875px;}
.h19_c01247{height:75.009902px;}
.h15_c01247{height:75.628465px;}
.h4_c01247{height:76.953164px;}
.hc_c01247{height:78.222575px;}
.h12_c01247{height:80.451229px;}
.h17_c01247{height:81.249764px;}
.h11_c01247{height:95.819832px;}
.h14_c01247{height:109.036125px;}
.h3_c01247{height:125.556750px;}
.h1_c01247{height:1110.000000px;}
.h0_c01247{height:1263.000000px;}
.w1_c01247{width:775.500000px;}
.w0_c01247{width:892.500000px;}
.x0_c01247{left:0.000000px;}
.x1_c01247{left:58.500000px;}
.x44_c01247{left:103.535835px;}
.x2_c01247{left:132.795285px;}
.xa_c01247{left:135.666285px;}
.x4b_c01247{left:145.714785px;}
.x4c_c01247{left:147.447285px;}
.x45_c01247{left:180.384585px;}
.xb_c01247{left:201.238935px;}
.x1a_c01247{left:202.421985px;}
.xc_c01247{left:214.301985px;}
.x4d_c01247{left:225.414735px;}
.xd_c01247{left:247.788735px;}
.x52_c01247{left:257.609535px;}
.x46_c01247{left:258.614385px;}
.x62_c01247{left:260.510235px;}
.x26_c01247{left:269.548935px;}
.x5c_c01247{left:270.761685px;}
.x56_c01247{left:282.047685px;}
.x5_c01247{left:291.323985px;}
.x2c_c01247{left:292.566435px;}
.x16_c01247{left:302.728785px;}
.x4f_c01247{left:304.094985px;}
.x27_c01247{left:313.851435px;}
.x5d_c01247{left:324.424635px;}
.xe_c01247{left:325.865085px;}
.x3_c01247{left:329.018235px;}
.x5e_c01247{left:331.250685px;}
.x58_c01247{left:332.453535px;}
.x17_c01247{left:334.190985px;}
.x53_c01247{left:336.913485px;}
.x18_c01247{left:347.595585px;}
.x2f_c01247{left:348.818235px;}
.x63_c01247{left:351.753585px;}
.xf_c01247{left:357.119385px;}
.x4e_c01247{left:360.218085px;}
.x5f_c01247{left:362.193135px;}
.x54_c01247{left:369.222135px;}
.x10_c01247{left:370.241835px;}
.x28_c01247{left:380.562585px;}
.x3c_c01247{left:382.765335px;}
.x1f_c01247{left:391.259535px;}
.x6_c01247{left:392.373285px;}
.x30_c01247{left:393.407835px;}
.x3d_c01247{left:400.223985px;}
.x7_c01247{left:402.862335px;}
.x31_c01247{left:404.396835px;}
.x20_c01247{left:414.984885px;}
.x19_c01247{left:416.024385px;}
.x3e_c01247{left:425.127435px;}
.x39_c01247{left:426.389685px;}
.x57_c01247{left:435.804585px;}
.x3f_c01247{left:437.076735px;}
.x21_c01247{left:446.501535px;}
.x64_c01247{left:448.105335px;}
.x60_c01247{left:451.080285px;}
.x29_c01247{left:457.574685px;}
.x51_c01247{left:459.128985px;}
.x11_c01247{left:461.049585px;}
.x43_c01247{left:469.786335px;}
.x22_c01247{left:471.048585px;}
.x2a_c01247{left:480.161535px;}
.x1b_c01247{left:481.191135px;}
.x3a_c01247{left:492.685035px;}
.x42_c01247{left:498.823035px;}
.x8_c01247{left:503.327535px;}
.x32_c01247{left:505.267935px;}
.x12_c01247{left:513.475035px;}
.x40_c01247{left:514.806585px;}
.x47_c01247{left:523.191885px;}
.x23_c01247{left:526.072785px;}
.x48_c01247{left:530.181285px;}
.x13_c01247{left:535.259985px;}
.x55_c01247{left:536.754885px;}
.x24_c01247{left:537.858735px;}
.x1c_c01247{left:546.442035px;}
.x41_c01247{left:549.100185px;}
.x3b_c01247{left:557.346885px;}
.x61_c01247{left:558.955635px;}
.x14_c01247{left:569.860485px;}
.x1d_c01247{left:580.300035px;}
.x50_c01247{left:582.270135px;}
.x49_c01247{left:591.165285px;}
.x33_c01247{left:593.655135px;}
.x15_c01247{left:600.134685px;}
.x2b_c01247{left:602.738385px;}
.x34_c01247{left:605.099535px;}
.x35_c01247{left:616.113285px;}
.x65_c01247{left:620.013885px;}
.x59_c01247{left:624.473835px;}
.x2d_c01247{left:625.973685px;}
.x36_c01247{left:627.909135px;}
.x4a_c01247{left:636.873585px;}
.x37_c01247{left:638.210085px;}
.x1e_c01247{left:645.387585px;}
.x2e_c01247{left:646.590435px;}
.x38_c01247{left:648.530835px;}
.x5a_c01247{left:656.787435px;}
.x25_c01247{left:659.331735px;}
.x5b_c01247{left:667.276485px;}
.x4_c01247{left:689.873235px;}
.x9_c01247{left:691.635435px;}
.x66_c01247{left:752.901585px;}
@media print{
.v0_c01247{vertical-align:0.000000pt;}
.v1_c01247{vertical-align:3.819200pt;}
.ls15_c01247{letter-spacing:-2.550246pt;}
.ls8_c01247{letter-spacing:-2.439360pt;}
.ls14_c01247{letter-spacing:-2.266880pt;}
.ls1a_c01247{letter-spacing:-1.940400pt;}
.ls7_c01247{letter-spacing:-1.435280pt;}
.lse_c01247{letter-spacing:-0.364408pt;}
.ls6_c01247{letter-spacing:-0.104544pt;}
.ls3_c01247{letter-spacing:0.000000pt;}
.lsc_c01247{letter-spacing:0.078584pt;}
.ls1_c01247{letter-spacing:0.535058pt;}
.ls0_c01247{letter-spacing:0.888800pt;}
.ls13_c01247{letter-spacing:0.968774pt;}
.ls5_c01247{letter-spacing:0.975744pt;}
.ls2_c01247{letter-spacing:1.310285pt;}
.ls11_c01247{letter-spacing:1.654400pt;}
.ls12_c01247{letter-spacing:1.760000pt;}
.ls16_c01247{letter-spacing:2.348755pt;}
.ls9_c01247{letter-spacing:2.474208pt;}
.ls1c_c01247{letter-spacing:2.640000pt;}
.lsd_c01247{letter-spacing:3.168000pt;}
.ls17_c01247{letter-spacing:3.238400pt;}
.ls18_c01247{letter-spacing:3.335209pt;}
.ls1b_c01247{letter-spacing:3.396800pt;}
.lsf_c01247{letter-spacing:3.449609pt;}
.ls4_c01247{letter-spacing:3.484800pt;}
.ls1d_c01247{letter-spacing:35.481600pt;}
.lsb_c01247{letter-spacing:41.817600pt;}
.ls19_c01247{letter-spacing:45.619376pt;}
.ls10_c01247{letter-spacing:50.688176pt;}
.lsa_c01247{letter-spacing:51.955376pt;}
.ws1_c01247{word-spacing:-19.898208pt;}
.ws5_c01247{word-spacing:-18.734285pt;}
.ws2_c01247{word-spacing:-17.424000pt;}
.ws0_c01247{word-spacing:-17.319456pt;}
.ws6_c01247{word-spacing:-13.860000pt;}
.ws4_c01247{word-spacing:-0.836352pt;}
.ws7_c01247{word-spacing:0.000000pt;}
.ws3_c01247{word-spacing:0.836352pt;}
._e_c01247{margin-left:-18.461520pt;}
._d_c01247{margin-left:-17.355008pt;}
._4_c01247{margin-left:-7.736256pt;}
._10_c01247{width:2.992000pt;}
._2_c01247{width:4.599584pt;}
._0_c01247{width:6.516576pt;}
._3_c01247{width:7.945344pt;}
._9_c01247{width:9.403613pt;}
._b_c01247{width:14.287680pt;}
._a_c01247{width:19.370666pt;}
._7_c01247{width:27.357264pt;}
._6_c01247{width:28.619360pt;}
._8_c01247{width:29.879344pt;}
._5_c01247{width:31.143552pt;}
._c_c01247{width:37.705536pt;}
._1_c01247{width:47.323936pt;}
._f_c01247{width:124.872000pt;}
.fsa_c01247{font-size:17.776000pt;}
.fs1a_c01247{font-size:24.640000pt;}
.fs4_c01247{font-size:31.856000pt;}
.fse_c01247{font-size:33.088000pt;}
.fsf_c01247{font-size:35.200000pt;}
.fs19_c01247{font-size:35.481600pt;}
.fs12_c01247{font-size:37.488000pt;}
.fs0_c01247{font-size:38.720000pt;}
.fs3_c01247{font-size:41.008000pt;}
.fs8_c01247{font-size:41.360000pt;}
.fs6_c01247{font-size:41.817600pt;}
.fs15_c01247{font-size:45.619376pt;}
.fs1b_c01247{font-size:47.344000pt;}
.fsd_c01247{font-size:50.688176pt;}
.fs5_c01247{font-size:51.955376pt;}
.fs18_c01247{font-size:52.800000pt;}
.fsc_c01247{font-size:53.856000pt;}
.fs17_c01247{font-size:55.440000pt;}
.fs9_c01247{font-size:63.360000pt;}
.fs7_c01247{font-size:64.768000pt;}
.fs14_c01247{font-size:66.704176pt;}
.fs16_c01247{font-size:67.936000pt;}
.fsb_c01247{font-size:68.992176pt;}
.fs2_c01247{font-size:69.696000pt;}
.fs11_c01247{font-size:72.864176pt;}
.fs10_c01247{font-size:81.664176pt;}
.fs13_c01247{font-size:92.928000pt;}
.fs1_c01247{font-size:107.008000pt;}
.y0_c01247{bottom:0.000000pt;}
.y27_c01247{bottom:9.738120pt;}
.y1_c01247{bottom:68.000000pt;}
.y26_c01247{bottom:129.805320pt;}
.y23_c01247{bottom:132.022920pt;}
.y25_c01247{bottom:132.660920pt;}
.y22_c01247{bottom:133.606920pt;}
.y24_c01247{bottom:136.462520pt;}
.y21_c01247{bottom:158.638520pt;}
.y20_c01247{bottom:160.222520pt;}
.y1f_c01247{bottom:179.226120pt;}
.y1c_c01247{bottom:188.100920pt;}
.y1e_c01247{bottom:188.734520pt;}
.y1d_c01247{bottom:196.966920pt;}
.y1b_c01247{bottom:216.296120pt;}
.y1a_c01247{bottom:244.803720pt;}
.y19_c01247{bottom:273.320120pt;}
.y18_c01247{bottom:302.144520pt;}
.y17_c01247{bottom:330.344120pt;}
.y16_c01247{bottom:359.485320pt;}
.y15_c01247{bottom:377.864120pt;}
.y14_c01247{bottom:387.046920pt;}
.y13_c01247{bottom:443.437320pt;}
.y12_c01247{bottom:471.320120pt;}
.y11_c01247{bottom:495.080120pt;}
.y10_c01247{bottom:499.510920pt;}
.yf_c01247{bottom:527.710520pt;}
.ye_c01247{bottom:555.905720pt;}
.yd_c01247{bottom:583.784120pt;}
.yc_c01247{bottom:639.857720pt;}
.y28_c01247{bottom:640.486920pt;}
.yb_c01247{bottom:667.736120pt;}
.ya_c01247{bottom:668.052920pt;}
.y9_c01247{bottom:695.926920pt;}
.y8_c01247{bottom:723.805320pt;}
.y7_c01247{bottom:752.000520pt;}
.y6_c01247{bottom:780.200120pt;}
.y2_c01247{bottom:797.936520pt;}
.y5_c01247{bottom:808.390920pt;}
.y4_c01247{bottom:836.907320pt;}
.y3_c01247{bottom:976.294920pt;}
.hb_c01247{height:17.914875pt;}
.h1b_c01247{height:23.630746pt;}
.h1c_c01247{height:25.698750pt;}
.h7_c01247{height:27.850522pt;}
.h16_c01247{height:30.382504pt;}
.hf_c01247{height:32.474063pt;}
.he_c01247{height:33.758325pt;}
.h10_c01247{height:34.546875pt;}
.h6_c01247{height:34.602280pt;}
.h13_c01247{height:36.792422pt;}
.h2_c01247{height:38.001563pt;}
.h5_c01247{height:42.770063pt;}
.h9_c01247{height:43.137188pt;}
.h1d_c01247{height:46.465547pt;}
.h1a_c01247{height:51.820313pt;}
.h18_c01247{height:54.411328pt;}
.hd_c01247{height:56.170125pt;}
.h8_c01247{height:63.566250pt;}
.ha_c01247{height:63.855000pt;}
.h19_c01247{height:66.675469pt;}
.h15_c01247{height:67.225302pt;}
.h4_c01247{height:68.402813pt;}
.hc_c01247{height:69.531177pt;}
.h12_c01247{height:71.512204pt;}
.h17_c01247{height:72.222013pt;}
.h11_c01247{height:85.173184pt;}
.h14_c01247{height:96.921000pt;}
.h3_c01247{height:111.606000pt;}
.h1_c01247{height:986.666667pt;}
.h0_c01247{height:1122.666667pt;}
.w1_c01247{width:689.333333pt;}
.w0_c01247{width:793.333333pt;}
.x0_c01247{left:0.000000pt;}
.x1_c01247{left:52.000000pt;}
.x44_c01247{left:92.031853pt;}
.x2_c01247{left:118.040253pt;}
.xa_c01247{left:120.592253pt;}
.x4b_c01247{left:129.524253pt;}
.x4c_c01247{left:131.064253pt;}
.x45_c01247{left:160.341853pt;}
.xb_c01247{left:178.879053pt;}
.x1a_c01247{left:179.930653pt;}
.xc_c01247{left:190.490653pt;}
.x4d_c01247{left:200.368653pt;}
.xd_c01247{left:220.256653pt;}
.x52_c01247{left:228.986253pt;}
.x46_c01247{left:229.879453pt;}
.x62_c01247{left:231.564653pt;}
.x26_c01247{left:239.599053pt;}
.x5c_c01247{left:240.677053pt;}
.x56_c01247{left:250.709053pt;}
.x5_c01247{left:258.954653pt;}
.x2c_c01247{left:260.059053pt;}
.x16_c01247{left:269.092253pt;}
.x4f_c01247{left:270.306653pt;}
.x27_c01247{left:278.979053pt;}
.x5d_c01247{left:288.377453pt;}
.xe_c01247{left:289.657853pt;}
.x3_c01247{left:292.460653pt;}
.x5e_c01247{left:294.445053pt;}
.x58_c01247{left:295.514253pt;}
.x17_c01247{left:297.058653pt;}
.x53_c01247{left:299.478653pt;}
.x18_c01247{left:308.973853pt;}
.x2f_c01247{left:310.060653pt;}
.x63_c01247{left:312.669853pt;}
.xf_c01247{left:317.439453pt;}
.x4e_c01247{left:320.193853pt;}
.x5f_c01247{left:321.949453pt;}
.x54_c01247{left:328.197453pt;}
.x10_c01247{left:329.103853pt;}
.x28_c01247{left:338.277853pt;}
.x3c_c01247{left:340.235853pt;}
.x1f_c01247{left:347.786253pt;}
.x6_c01247{left:348.776253pt;}
.x30_c01247{left:349.695853pt;}
.x3d_c01247{left:355.754653pt;}
.x7_c01247{left:358.099853pt;}
.x31_c01247{left:359.463853pt;}
.x20_c01247{left:368.875453pt;}
.x19_c01247{left:369.799453pt;}
.x3e_c01247{left:377.891053pt;}
.x39_c01247{left:379.013053pt;}
.x57_c01247{left:387.381853pt;}
.x3f_c01247{left:388.512653pt;}
.x21_c01247{left:396.890253pt;}
.x64_c01247{left:398.315853pt;}
.x60_c01247{left:400.960253pt;}
.x29_c01247{left:406.733053pt;}
.x51_c01247{left:408.114653pt;}
.x11_c01247{left:409.821853pt;}
.x43_c01247{left:417.587853pt;}
.x22_c01247{left:418.709853pt;}
.x2a_c01247{left:426.810253pt;}
.x1b_c01247{left:427.725453pt;}
.x3a_c01247{left:437.942253pt;}
.x42_c01247{left:443.398253pt;}
.x8_c01247{left:447.402253pt;}
.x32_c01247{left:449.127053pt;}
.x12_c01247{left:456.422253pt;}
.x40_c01247{left:457.605853pt;}
.x47_c01247{left:465.059453pt;}
.x23_c01247{left:467.620253pt;}
.x48_c01247{left:471.272253pt;}
.x13_c01247{left:475.786653pt;}
.x55_c01247{left:477.115453pt;}
.x24_c01247{left:478.096653pt;}
.x1c_c01247{left:485.726253pt;}
.x41_c01247{left:488.089053pt;}
.x3b_c01247{left:495.419453pt;}
.x61_c01247{left:496.849453pt;}
.x14_c01247{left:506.542653pt;}
.x1d_c01247{left:515.822253pt;}
.x50_c01247{left:517.573453pt;}
.x49_c01247{left:525.480253pt;}
.x33_c01247{left:527.693453pt;}
.x15_c01247{left:533.453053pt;}
.x2b_c01247{left:535.767453pt;}
.x34_c01247{left:537.866253pt;}
.x35_c01247{left:547.656253pt;}
.x65_c01247{left:551.123453pt;}
.x59_c01247{left:555.087853pt;}
.x2d_c01247{left:556.421053pt;}
.x36_c01247{left:558.141453pt;}
.x4a_c01247{left:566.109853pt;}
.x37_c01247{left:567.297853pt;}
.x1e_c01247{left:573.677853pt;}
.x2e_c01247{left:574.747053pt;}
.x38_c01247{left:576.471853pt;}
.x5a_c01247{left:583.811053pt;}
.x25_c01247{left:586.072653pt;}
.x5b_c01247{left:593.134653pt;}
.x4_c01247{left:613.220653pt;}
.x9_c01247{left:614.787053pt;}
.x66_c01247{left:669.245853pt;}
}





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

.ir_c01248:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01248{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01248;src:url('chunks/assets/font_845c2b6239d7d58a0d97b975.woff2')format("woff");}.ff1_c01248{font-family:ff1_c01248;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01248;src:url('chunks/assets/font_5f8e18ffd09cb2da183930ce.woff2')format("woff");}.ff2_c01248{font-family:ff2_c01248;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01248;src:url('chunks/assets/font_e49f231a352eba7bebdb95f5.woff2')format("woff");}.ff3_c01248{font-family:ff3_c01248;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01248;src:url('chunks/assets/font_e70fd08f1419a10839fd59f6.woff2')format("woff");}.ff4_c01248{font-family:ff4_c01248;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01248;src:url('chunks/assets/font_968f5d88b215172994cb42de.woff2')format("woff");}.ff5_c01248{font-family:ff5_c01248;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01248;src:url('chunks/assets/font_a4cbf65f991296383c8842bc.woff2')format("woff");}.ff6_c01248{font-family:ff6_c01248;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m58_c01248{transform:matrix(0.065790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065790,0.000000,0.000000,0.250000,0,0);}
.m89_c01248{transform:matrix(0.067074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.067074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.067074,0.000000,0.000000,0.250000,0,0);}
.m5_c01248{transform:matrix(0.068733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.068733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.068733,0.000000,0.000000,0.250000,0,0);}
.m55_c01248{transform:matrix(0.105264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105264,0.000000,0.000000,0.250000,0,0);}
.m15_c01248{transform:matrix(0.109384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109384,0.000000,0.000000,0.250000,0,0);}
.m9_c01248{transform:matrix(0.119566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119566,0.000000,0.000000,0.250000,0,0);}
.m3f_c01248{transform:matrix(0.122390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122390,0.000000,0.000000,0.250000,0,0);}
.m90_c01248{transform:matrix(0.140876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140876,0.000000,0.000000,0.250000,0,0);}
.m4c_c01248{transform:matrix(0.144048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144048,0.000000,0.000000,0.250000,0,0);}
.m7c_c01248{transform:matrix(0.147729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147729,0.000000,0.000000,0.250000,0,0);}
.m6_c01248{transform:matrix(0.152173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152173,0.000000,0.000000,0.250000,0,0);}
.m4f_c01248{transform:matrix(0.156052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156052,0.000000,0.000000,0.250000,0,0);}
.m41_c01248{transform:matrix(0.156249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156249,0.000000,0.000000,0.250000,0,0);}
.m48_c01248{transform:matrix(0.159853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159853,0.000000,0.000000,0.250000,0,0);}
.ma4_c01248{transform:matrix(0.163305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163305,0.000000,0.000000,0.250000,0,0);}
.m57_c01248{transform:matrix(0.171053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171053,0.000000,0.000000,0.250000,0,0);}
.m47_c01248{transform:matrix(0.174518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174518,0.000000,0.000000,0.250000,0,0);}
.ma7_c01248{transform:matrix(0.175018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175018,0.000000,0.000000,0.250000,0,0);}
.ma8_c01248{transform:matrix(0.178610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178610,0.000000,0.000000,0.250000,0,0);}
.maa_c01248{transform:matrix(0.192984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192984,0.000000,0.000000,0.250000,0,0);}
.m42_c01248{transform:matrix(0.203703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203703,0.000000,0.000000,0.250000,0,0);}
.m45_c01248{transform:matrix(0.219749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219749,0.000000,0.000000,0.250000,0,0);}
.m88_c01248{transform:matrix(0.219786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219786,0.000000,0.000000,0.250000,0,0);}
.m43_c01248{transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);}
.m4_c01248{transform:matrix(0.222274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222274,0.000000,0.000000,0.250000,0,0);}
.m11_c01248{transform:matrix(0.224961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224961,0.000000,0.000000,0.250000,0,0);}
.m94_c01248{transform:matrix(0.232718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232718,0.000000,0.000000,0.250000,0,0);}
.m8b_c01248{transform:matrix(0.234662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234662,0.000000,0.000000,0.250000,0,0);}
.m17_c01248{transform:matrix(0.238625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238625,0.000000,0.000000,0.250000,0,0);}
.mb_c01248{transform:matrix(0.238639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238639,0.000000,0.000000,0.250000,0,0);}
.m7b_c01248{transform:matrix(0.242939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242939,0.000000,0.000000,0.250000,0,0);}
.m52_c01248{transform:matrix(0.243686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243686,0.000000,0.000000,0.250000,0,0);}
.ma5_c01248{transform:matrix(0.244921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244921,0.000000,0.000000,0.250000,0,0);}
.m44_c01248{transform:matrix(0.245369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245369,0.000000,0.000000,0.250000,0,0);}
.m8_c01248{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m77_c01248{transform:matrix(0.250834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250834,0.000000,0.000000,0.250000,0,0);}
.m56_c01248{transform:matrix(0.253289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253289,0.000000,0.000000,0.250000,0,0);}
.m2b_c01248{transform:matrix(0.257560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257560,0.000000,0.000000,0.250000,0,0);}
.m4d_c01248{transform:matrix(0.259394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259394,0.000000,0.000000,0.250000,0,0);}
.m21_c01248{transform:matrix(0.260587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260587,0.000000,0.000000,0.250000,0,0);}
.m9b_c01248{transform:matrix(0.261020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261020,0.000000,0.000000,0.250000,0,0);}
.m46_c01248{transform:matrix(0.261845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261845,0.000000,0.000000,0.250000,0,0);}
.m5e_c01248{transform:matrix(0.263195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263195,0.000000,0.000000,0.250000,0,0);}
.m28_c01248{transform:matrix(0.264091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264091,0.000000,0.000000,0.250000,0,0);}
.m49_c01248{transform:matrix(0.264468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264468,0.000000,0.000000,0.250000,0,0);}
.m64_c01248{transform:matrix(0.264653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264653,0.000000,0.000000,0.250000,0,0);}
.m2e_c01248{transform:matrix(0.267162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267162,0.000000,0.000000,0.250000,0,0);}
.mb0_c01248{transform:matrix(0.269578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269578,0.000000,0.000000,0.250000,0,0);}
.m62_c01248{transform:matrix(0.270233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270233,0.000000,0.000000,0.250000,0,0);}
.md_c01248{transform:matrix(0.273171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273171,0.000000,0.000000,0.250000,0,0);}
.m95_c01248{transform:matrix(0.273385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273385,0.000000,0.000000,0.250000,0,0);}
.m24_c01248{transform:matrix(0.275076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275076,0.000000,0.000000,0.250000,0,0);}
.m10_c01248{transform:matrix(0.276275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276275,0.000000,0.000000,0.250000,0,0);}
.m50_c01248{transform:matrix(0.276374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276374,0.000000,0.000000,0.250000,0,0);}
.m6e_c01248{transform:matrix(0.276631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276631,0.000000,0.000000,0.250000,0,0);}
.m70_c01248{transform:matrix(0.276787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276787,0.000000,0.000000,0.250000,0,0);}
.m73_c01248{transform:matrix(0.278049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278049,0.000000,0.000000,0.250000,0,0);}
.m54_c01248{transform:matrix(0.279017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279017,0.000000,0.000000,0.250000,0,0);}
.m83_c01248{transform:matrix(0.281121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281121,0.000000,0.000000,0.250000,0,0);}
.m67_c01248{transform:matrix(0.281195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281195,0.000000,0.000000,0.250000,0,0);}
.m93_c01248{transform:matrix(0.281208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281208,0.000000,0.000000,0.250000,0,0);}
.m6f_c01248{transform:matrix(0.282163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282163,0.000000,0.000000,0.250000,0,0);}
.m6b_c01248{transform:matrix(0.282225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282225,0.000000,0.000000,0.250000,0,0);}
.m65_c01248{transform:matrix(0.283667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283667,0.000000,0.000000,0.250000,0,0);}
.ma_c01248{transform:matrix(0.283755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283755,0.000000,0.000000,0.250000,0,0);}
.m12_c01248{transform:matrix(0.284321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284321,0.000000,0.000000,0.250000,0,0);}
.ma2_c01248{transform:matrix(0.285635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285635,0.000000,0.000000,0.250000,0,0);}
.m96_c01248{transform:matrix(0.286042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286042,0.000000,0.000000,0.250000,0,0);}
.ma1_c01248{transform:matrix(0.286703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286703,0.000000,0.000000,0.250000,0,0);}
.m76_c01248{transform:matrix(0.287845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287845,0.000000,0.000000,0.250000,0,0);}
.m38_c01248{transform:matrix(0.288649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288649,0.000000,0.000000,0.250000,0,0);}
.m33_c01248{transform:matrix(0.289241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289241,0.000000,0.000000,0.250000,0,0);}
.m1d_c01248{transform:matrix(0.289373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289373,0.000000,0.000000,0.250000,0,0);}
.m5c_c01248{transform:matrix(0.290508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290508,0.000000,0.000000,0.250000,0,0);}
.mac_c01248{transform:matrix(0.291621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291621,0.000000,0.000000,0.250000,0,0);}
.m9e_c01248{transform:matrix(0.294625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294625,0.000000,0.000000,0.250000,0,0);}
.m9f_c01248{transform:matrix(0.295256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295256,0.000000,0.000000,0.250000,0,0);}
.m6d_c01248{transform:matrix(0.299669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299669,0.000000,0.000000,0.250000,0,0);}
.m59_c01248{transform:matrix(0.302609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302609,0.000000,0.000000,0.250000,0,0);}
.m7a_c01248{transform:matrix(0.302699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302699,0.000000,0.000000,0.250000,0,0);}
.m7d_c01248{transform:matrix(0.304695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304695,0.000000,0.000000,0.250000,0,0);}
.m5a_c01248{transform:matrix(0.305693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305693,0.000000,0.000000,0.250000,0,0);}
.m2c_c01248{transform:matrix(0.306438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306438,0.000000,0.000000,0.250000,0,0);}
.m2a_c01248{transform:matrix(0.307996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307996,0.000000,0.000000,0.250000,0,0);}
.m39_c01248{transform:matrix(0.308999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308999,0.000000,0.000000,0.250000,0,0);}
.m6c_c01248{transform:matrix(0.310458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310458,0.000000,0.000000,0.250000,0,0);}
.m1e_c01248{transform:matrix(0.311743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311743,0.000000,0.000000,0.250000,0,0);}
.m97_c01248{transform:matrix(0.313473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313473,0.000000,0.000000,0.250000,0,0);}
.m81_c01248{transform:matrix(0.315247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315247,0.000000,0.000000,0.250000,0,0);}
.m5d_c01248{transform:matrix(0.319093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319093,0.000000,0.000000,0.250000,0,0);}
.m80_c01248{transform:matrix(0.322197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322197,0.000000,0.000000,0.250000,0,0);}
.m74_c01248{transform:matrix(0.322248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322248,0.000000,0.000000,0.250000,0,0);}
.m5f_c01248{transform:matrix(0.324007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324007,0.000000,0.000000,0.250000,0,0);}
.ma0_c01248{transform:matrix(0.324911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324911,0.000000,0.000000,0.250000,0,0);}
.m13_c01248{transform:matrix(0.325199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325199,0.000000,0.000000,0.250000,0,0);}
.m86_c01248{transform:matrix(0.325659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325659,0.000000,0.000000,0.250000,0,0);}
.m69_c01248{transform:matrix(0.325663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325663,0.000000,0.000000,0.250000,0,0);}
.m7f_c01248{transform:matrix(0.325779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325779,0.000000,0.000000,0.250000,0,0);}
.m36_c01248{transform:matrix(0.326434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326434,0.000000,0.000000,0.250000,0,0);}
.m8d_c01248{transform:matrix(0.329072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329072,0.000000,0.000000,0.250000,0,0);}
.m87_c01248{transform:matrix(0.329101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329101,0.000000,0.000000,0.250000,0,0);}
.m82_c01248{transform:matrix(0.329903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329903,0.000000,0.000000,0.250000,0,0);}
.m2f_c01248{transform:matrix(0.331896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331896,0.000000,0.000000,0.250000,0,0);}
.m26_c01248{transform:matrix(0.331919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331919,0.000000,0.000000,0.250000,0,0);}
.m84_c01248{transform:matrix(0.333848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333848,0.000000,0.000000,0.250000,0,0);}
.mc_c01248{transform:matrix(0.334853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334853,0.000000,0.000000,0.250000,0,0);}
.m3a_c01248{transform:matrix(0.334958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334958,0.000000,0.000000,0.250000,0,0);}
.mae_c01248{transform:matrix(0.335629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335629,0.000000,0.000000,0.250000,0,0);}
.mad_c01248{transform:matrix(0.336114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336114,0.000000,0.000000,0.250000,0,0);}
.m53_c01248{transform:matrix(0.336523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336523,0.000000,0.000000,0.250000,0,0);}
.m14_c01248{transform:matrix(0.339060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339060,0.000000,0.000000,0.250000,0,0);}
.m85_c01248{transform:matrix(0.339541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339541,0.000000,0.000000,0.250000,0,0);}
.m92_c01248{transform:matrix(0.339711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339711,0.000000,0.000000,0.250000,0,0);}
.ma9_c01248{transform:matrix(0.340740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340740,0.000000,0.000000,0.250000,0,0);}
.m68_c01248{transform:matrix(0.341422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341422,0.000000,0.000000,0.250000,0,0);}
.m1f_c01248{transform:matrix(0.343105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343105,0.000000,0.000000,0.250000,0,0);}
.m35_c01248{transform:matrix(0.343337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343337,0.000000,0.000000,0.250000,0,0);}
.m32_c01248{transform:matrix(0.343513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343513,0.000000,0.000000,0.250000,0,0);}
.m23_c01248{transform:matrix(0.344763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344763,0.000000,0.000000,0.250000,0,0);}
.m72_c01248{transform:matrix(0.346788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346788,0.000000,0.000000,0.250000,0,0);}
.maf_c01248{transform:matrix(0.349609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349609,0.000000,0.000000,0.250000,0,0);}
.m66_c01248{transform:matrix(0.351196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351196,0.000000,0.000000,0.250000,0,0);}
.m75_c01248{transform:matrix(0.351884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351884,0.000000,0.000000,0.250000,0,0);}
.m30_c01248{transform:matrix(0.353843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353843,0.000000,0.000000,0.250000,0,0);}
.m20_c01248{transform:matrix(0.356466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356466,0.000000,0.000000,0.250000,0,0);}
.m9d_c01248{transform:matrix(0.358952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358952,0.000000,0.000000,0.250000,0,0);}
.m29_c01248{transform:matrix(0.361132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361132,0.000000,0.000000,0.250000,0,0);}
.m37_c01248{transform:matrix(0.361885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361885,0.000000,0.000000,0.250000,0,0);}
.ma3_c01248{transform:matrix(0.364082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364082,0.000000,0.000000,0.250000,0,0);}
.m51_c01248{transform:matrix(0.364784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364784,0.000000,0.000000,0.250000,0,0);}
.m99_c01248{transform:matrix(0.364797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364797,0.000000,0.000000,0.250000,0,0);}
.m78_c01248{transform:matrix(0.366835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366835,0.000000,0.000000,0.250000,0,0);}
.m1c_c01248{transform:matrix(0.368837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368837,0.000000,0.000000,0.250000,0,0);}
.m5b_c01248{transform:matrix(0.370855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370855,0.000000,0.000000,0.250000,0,0);}
.m79_c01248{transform:matrix(0.371635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371635,0.000000,0.000000,0.250000,0,0);}
.m1a_c01248{transform:matrix(0.373121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373121,0.000000,0.000000,0.250000,0,0);}
.m63_c01248{transform:matrix(0.373809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373809,0.000000,0.000000,0.250000,0,0);}
.m8e_c01248{transform:matrix(0.376278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376278,0.000000,0.000000,0.250000,0,0);}
.m98_c01248{transform:matrix(0.376711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376711,0.000000,0.000000,0.250000,0,0);}
.m61_c01248{transform:matrix(0.377373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377373,0.000000,0.000000,0.250000,0,0);}
.m2d_c01248{transform:matrix(0.377524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377524,0.000000,0.000000,0.250000,0,0);}
.m3d_c01248{transform:matrix(0.377842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377842,0.000000,0.000000,0.250000,0,0);}
.m3_c01248{transform:matrix(0.378336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378336,0.000000,0.000000,0.250000,0,0);}
.m22_c01248{transform:matrix(0.380708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380708,0.000000,0.000000,0.250000,0,0);}
.m60_c01248{transform:matrix(0.381828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381828,0.000000,0.000000,0.250000,0,0);}
.m71_c01248{transform:matrix(0.387762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387762,0.000000,0.000000,0.250000,0,0);}
.m6a_c01248{transform:matrix(0.388357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388357,0.000000,0.000000,0.250000,0,0);}
.m3e_c01248{transform:matrix(0.389024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389024,0.000000,0.000000,0.250000,0,0);}
.m25_c01248{transform:matrix(0.394302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394302,0.000000,0.000000,0.250000,0,0);}
.m27_c01248{transform:matrix(0.396777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396777,0.000000,0.000000,0.250000,0,0);}
.m91_c01248{transform:matrix(0.397960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397960,0.000000,0.000000,0.250000,0,0);}
.mf_c01248{transform:matrix(0.399758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399758,0.000000,0.000000,0.250000,0,0);}
.m31_c01248{transform:matrix(0.399833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399833,0.000000,0.000000,0.250000,0,0);}
.m16_c01248{transform:matrix(0.400207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400207,0.000000,0.000000,0.250000,0,0);}
.me_c01248{transform:matrix(0.400662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400662,0.000000,0.000000,0.250000,0,0);}
.m34_c01248{transform:matrix(0.401227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401227,0.000000,0.000000,0.250000,0,0);}
.m40_c01248{transform:matrix(0.403290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403290,0.000000,0.000000,0.250000,0,0);}
.m7e_c01248{transform:matrix(0.407021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407021,0.000000,0.000000,0.250000,0,0);}
.m4e_c01248{transform:matrix(0.409715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409715,0.000000,0.000000,0.250000,0,0);}
.m3b_c01248{transform:matrix(0.431647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431647,0.000000,0.000000,0.250000,0,0);}
.m4a_c01248{transform:matrix(0.439694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439694,0.000000,0.000000,0.250000,0,0);}
.m3c_c01248{transform:matrix(0.445616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445616,0.000000,0.000000,0.250000,0,0);}
.m9c_c01248{transform:matrix(0.455822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455822,0.000000,0.000000,0.250000,0,0);}
.m18_c01248{transform:matrix(0.457399,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457399,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457399,0.000000,0.000000,0.250000,0,0);}
.m4b_c01248{transform:matrix(0.474096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474096,0.000000,0.000000,0.250000,0,0);}
.ma6_c01248{transform:matrix(0.681971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681971,0.000000,0.000000,0.250000,0,0);}
.m9a_c01248{transform:matrix(0.985414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.985414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.985414,0.000000,0.000000,0.250000,0,0);}
.m2_c01248{transform:matrix(1.114340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.114340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.114340,0.000000,0.000000,0.250000,0,0);}
.m8f_c01248{transform:matrix(1.165483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.165483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.165483,0.000000,0.000000,0.250000,0,0);}
.m8c_c01248{transform:matrix(1.174117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.174117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.174117,0.000000,0.000000,0.250000,0,0);}
.mab_c01248{transform:matrix(1.207563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.207563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.207563,0.000000,0.000000,0.250000,0,0);}
.m8a_c01248{transform:matrix(1.224682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.224682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.224682,0.000000,0.000000,0.250000,0,0);}
.m1b_c01248{transform:matrix(1.258784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.258784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.258784,0.000000,0.000000,0.250000,0,0);}
.m0_c01248{transform:matrix(1.449003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.449003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.449003,0.000000,0.000000,0.250000,0,0);}
.m1_c01248{transform:matrix(1.455141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.455141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.455141,0.000000,0.000000,0.250000,0,0);}
.m7_c01248{transform:matrix(1.512379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.512379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.512379,0.000000,0.000000,0.250000,0,0);}
.m19_c01248{transform:matrix(1.660427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.660427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.660427,0.000000,0.000000,0.250000,0,0);}
.v2_c01248{vertical-align:-38.511000px;}
.v3_c01248{vertical-align:-21.354696px;}
.v0_c01248{vertical-align:0.000000px;}
.v1_c01248{vertical-align:1.455300px;}
.ls9_c01248{letter-spacing:-2.661127px;}
.ls13_c01248{letter-spacing:-2.654190px;}
.ls7_c01248{letter-spacing:-2.598750px;}
.ls1a_c01248{letter-spacing:-2.460150px;}
.ls2c_c01248{letter-spacing:-2.411640px;}
.ls17_c01248{letter-spacing:-1.954267px;}
.ls18_c01248{letter-spacing:-1.933470px;}
.ls27_c01248{letter-spacing:-1.884967px;}
.ls15_c01248{letter-spacing:-1.753290px;}
.ls3_c01248{letter-spacing:-1.288980px;}
.ls2e_c01248{letter-spacing:-1.129590px;}
.ls30_c01248{letter-spacing:-0.838530px;}
.ls32_c01248{letter-spacing:-0.741510px;}
.ls22_c01248{letter-spacing:-0.727650px;}
.ls20_c01248{letter-spacing:-0.713790px;}
.ls2f_c01248{letter-spacing:-0.581467px;}
.lsb_c01248{letter-spacing:-0.568260px;}
.ls10_c01248{letter-spacing:-0.541017px;}
.lse_c01248{letter-spacing:-0.073418px;}
.ls4_c01248{letter-spacing:0.000000px;}
.ls26_c01248{letter-spacing:0.392476px;}
.lsc_c01248{letter-spacing:0.811800px;}
.lsf_c01248{letter-spacing:1.019700px;}
.ls23_c01248{letter-spacing:1.039500px;}
.ls25_c01248{letter-spacing:1.049400px;}
.ls33_c01248{letter-spacing:1.059300px;}
.ls24_c01248{letter-spacing:1.069200px;}
.ls29_c01248{letter-spacing:1.171843px;}
.ls31_c01248{letter-spacing:1.197900px;}
.lsd_c01248{letter-spacing:1.346400px;}
.ls2a_c01248{letter-spacing:1.376100px;}
.ls2b_c01248{letter-spacing:1.584000px;}
.ls2d_c01248{letter-spacing:1.613700px;}
.ls2_c01248{letter-spacing:1.841400px;}
.ls16_c01248{letter-spacing:2.039400px;}
.lsa_c01248{letter-spacing:2.204934px;}
.ls1d_c01248{letter-spacing:2.405700px;}
.ls11_c01248{letter-spacing:2.621025px;}
.ls28_c01248{letter-spacing:2.692810px;}
.ls34_c01248{letter-spacing:2.851200px;}
.ls19_c01248{letter-spacing:3.514500px;}
.ls1f_c01248{letter-spacing:3.702610px;}
.ls6_c01248{letter-spacing:3.712500px;}
.ls12_c01248{letter-spacing:3.791700px;}
.ls8_c01248{letter-spacing:3.801610px;}
.ls1e_c01248{letter-spacing:3.999610px;}
.ls35_c01248{letter-spacing:4.020073px;}
.ls1_c01248{letter-spacing:12.031668px;}
.ls0_c01248{letter-spacing:15.800400px;}
.ls5_c01248{letter-spacing:32.788998px;}
.ls14_c01248{letter-spacing:38.491398px;}
.ls1c_c01248{letter-spacing:39.916800px;}
.ls1b_c01248{letter-spacing:54.172998px;}
.ls21_c01248{letter-spacing:58.449798px;}
.sc__c01248{text-shadow:none;}
.sc0_c01248{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01248{-webkit-text-stroke:0px transparent;}
.sc0_c01248{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01248{word-spacing:-21.183525px;}
.ws1_c01248{word-spacing:-19.952033px;}
.ws0_c01248{word-spacing:-18.562500px;}
.ws4_c01248{word-spacing:0.000000px;}
.ws3_c01248{word-spacing:5.643000px;}
._b_c01248{margin-left:-29.007000px;}
._3_c01248{margin-left:-14.509891px;}
._a_c01248{margin-left:-12.517758px;}
._4_c01248{margin-left:-7.648740px;}
._2_c01248{margin-left:-2.197045px;}
._6_c01248{width:3.925350px;}
._0_c01248{width:8.464500px;}
._c_c01248{width:10.117800px;}
._1_c01248{width:14.033250px;}
._d_c01248{width:21.043994px;}
._9_c01248{width:28.779151px;}
._7_c01248{width:33.615450px;}
._8_c01248{width:68.642046px;}
._5_c01248{width:79.153954px;}
.fc0_c01248{color:transparent;}
.fs8_c01248{font-size:16.236000px;}
.fsa_c01248{font-size:20.394000px;}
.fs25_c01248{font-size:20.790000px;}
.fs26_c01248{font-size:20.988000px;}
.fs31_c01248{font-size:21.186000px;}
.fsf_c01248{font-size:21.384000px;}
.fs1d_c01248{font-size:22.374000px;}
.fs2f_c01248{font-size:23.166000px;}
.fs2b_c01248{font-size:23.364000px;}
.fs30_c01248{font-size:23.958000px;}
.fs3_c01248{font-size:25.146000px;}
.fs9_c01248{font-size:26.928000px;}
.fs29_c01248{font-size:27.522000px;}
.fs1_c01248{font-size:27.720000px;}
.fs2a_c01248{font-size:31.680000px;}
.fs2d_c01248{font-size:32.274000px;}
.fs4_c01248{font-size:32.788998px;}
.fsc_c01248{font-size:34.056198px;}
.fs15_c01248{font-size:35.838000px;}
.fs0_c01248{font-size:36.828000px;}
.fs14_c01248{font-size:38.412000px;}
.fs13_c01248{font-size:38.491398px;}
.fs20_c01248{font-size:39.916800px;}
.fs19_c01248{font-size:40.788000px;}
.fs18_c01248{font-size:50.094000px;}
.fs27_c01248{font-size:53.856198px;}
.fs1f_c01248{font-size:54.172998px;}
.fs1b_c01248{font-size:55.242000px;}
.fs1a_c01248{font-size:55.836198px;}
.fs2e_c01248{font-size:57.024000px;}
.fs12_c01248{font-size:57.024198px;}
.fs24_c01248{font-size:58.449798px;}
.fs1e_c01248{font-size:60.588000px;}
.fs17_c01248{font-size:65.538000px;}
.fs2_c01248{font-size:66.528000px;}
.fs2c_c01248{font-size:68.904000px;}
.fs5_c01248{font-size:69.300000px;}
.fs1c_c01248{font-size:70.290000px;}
.fs16_c01248{font-size:73.062198px;}
.fs23_c01248{font-size:74.052198px;}
.fs6_c01248{font-size:74.250000px;}
.fs11_c01248{font-size:75.834000px;}
.fs7_c01248{font-size:76.032198px;}
.fs21_c01248{font-size:76.824000px;}
.fs22_c01248{font-size:79.992198px;}
.fs28_c01248{font-size:81.378000px;}
.fsb_c01248{font-size:81.972198px;}
.fsd_c01248{font-size:93.456198px;}
.fs10_c01248{font-size:104.544000px;}
.fse_c01248{font-size:126.324000px;}
.y0_c01248{bottom:0.000000px;}
.y1_c01248{bottom:76.500000px;}
.y32_c01248{bottom:96.852735px;}
.y31_c01248{bottom:128.215935px;}
.y2f_c01248{bottom:161.004735px;}
.y30_c01248{bottom:166.345785px;}
.y2e_c01248{bottom:188.091135px;}
.y2d_c01248{bottom:192.719385px;}
.y2c_c01248{bottom:224.443935px;}
.y2b_c01248{bottom:256.519935px;}
.y2a_c01248{bottom:278.255385px;}
.y29_c01248{bottom:288.590985px;}
.y28_c01248{bottom:319.959135px;}
.y27_c01248{bottom:351.322335px;}
.y25_c01248{bottom:383.036985px;}
.y22_c01248{bottom:414.043785px;}
.y21_c01248{bottom:445.768335px;}
.y26_c01248{bottom:446.119785px;}
.y24_c01248{bottom:446.481135px;}
.y23_c01248{bottom:455.391135px;}
.y20_c01248{bottom:477.126585px;}
.y1f_c01248{bottom:509.202585px;}
.y1e_c01248{bottom:540.565785px;}
.y19_c01248{bottom:571.572585px;}
.y1b_c01248{bottom:572.290335px;}
.y1a_c01248{bottom:576.205785px;}
.y18_c01248{bottom:603.653535px;}
.y1d_c01248{bottom:604.009935px;}
.y17_c01248{bottom:625.032585px;}
.yd_c01248{bottom:628.601535px;}
.y1c_c01248{bottom:628.957935px;}
.y16_c01248{bottom:635.016735px;}
.y15_c01248{bottom:667.092735px;}
.y14_c01248{bottom:683.125785px;}
.y13_c01248{bottom:698.455935px;}
.y3_c01248{bottom:711.281385px;}
.y12_c01248{bottom:730.526985px;}
.y11_c01248{bottom:760.825935px;}
.ye_c01248{bottom:761.533785px;}
.y10_c01248{bottom:762.959385px;}
.yf_c01248{bottom:772.943535px;}
.yc_c01248{bottom:794.322585px;}
.yb_c01248{bottom:826.403535px;}
.ya_c01248{bottom:858.474585px;}
.y9_c01248{bottom:890.199135px;}
.y8_c01248{bottom:920.844585px;}
.y7_c01248{bottom:921.913785px;}
.y6_c01248{bottom:961.122735px;}
.y5_c01248{bottom:971.814735px;}
.y4_c01248{bottom:984.640185px;}
.y2_c01248{bottom:1109.023785px;}
.ha_c01248{height:16.933641px;}
.hc_c01248{height:20.015596px;}
.h24_c01248{height:20.404248px;}
.h22_c01248{height:21.270305px;}
.h6_c01248{height:21.837473px;}
.h25_c01248{height:21.889828px;}
.h1b_c01248{height:21.958857px;}
.h2f_c01248{height:22.096336px;}
.h10_c01248{height:22.302844px;}
.h2e_c01248{height:24.145172px;}
.h2a_c01248{height:24.367922px;}
.h14_c01248{height:25.635271px;}
.h5_c01248{height:26.226492px;}
.hb_c01248{height:26.428359px;}
.h1e_c01248{height:26.584589px;}
.h28_c01248{height:27.011338px;}
.h3_c01248{height:28.911094px;}
.h2c_c01248{height:32.526141px;}
.h29_c01248{height:33.041250px;}
.h1d_c01248{height:36.079217px;}
.h2_c01248{height:36.144668px;}
.h13_c01248{height:37.978116px;}
.h23_c01248{height:38.927565px;}
.h17_c01248{height:41.106656px;}
.h16_c01248{height:52.246477px;}
.h26_c01248{height:56.170332px;}
.h18_c01248{height:56.272418px;}
.h2d_c01248{height:57.469500px;}
.h19_c01248{height:57.615680px;}
.h1c_c01248{height:63.191391px;}
.h1a_c01248{height:68.985791px;}
.h4_c01248{height:69.386625px;}
.h15_c01248{height:71.706552px;}
.h2b_c01248{height:71.864719px;}
.h8_c01248{height:72.872314px;}
.h7_c01248{height:73.733034px;}
.h12_c01248{height:74.426924px;}
.h9_c01248{height:74.621444px;}
.h21_c01248{height:74.630731px;}
.h1f_c01248{height:75.398555px;}
.h20_c01248{height:78.507968px;}
.hd_c01248{height:80.451229px;}
.h27_c01248{height:82.013766px;}
.hf_c01248{height:85.469098px;}
.he_c01248{height:97.471894px;}
.h11_c01248{height:109.036125px;}
.h1_c01248{height:1110.000000px;}
.h0_c01248{height:1263.000000px;}
.w1_c01248{width:775.500000px;}
.w0_c01248{width:892.500000px;}
.x2_c01248{left:-2.092215px;}
.x0_c01248{left:0.000000px;}
.x1_c01248{left:58.500000px;}
.xb_c01248{left:66.524685px;}
.x4d_c01248{left:98.867985px;}
.x3_c01248{left:116.593935px;}
.x5b_c01248{left:143.734785px;}
.x4e_c01248{left:156.055335px;}
.x11_c01248{left:165.173235px;}
.x2e_c01248{left:178.077885px;}
.x28_c01248{left:196.684935px;}
.x4f_c01248{left:199.169835px;}
.x29_c01248{left:200.456835px;}
.x5f_c01248{left:222.801135px;}
.x57_c01248{left:233.309985px;}
.x58_c01248{left:244.774185px;}
.x1b_c01248{left:253.699035px;}
.x5d_c01248{left:254.971185px;}
.x4_c01248{left:256.456185px;}
.x6b_c01248{left:264.683085px;}
.x40_c01248{left:265.861185px;}
.x41_c01248{left:276.553185px;}
.x5e_c01248{left:287.180835px;}
.x45_c01248{left:289.977585px;}
.x46_c01248{left:299.144985px;}
.x42_c01248{left:300.412185px;}
.x53_c01248{left:309.292485px;}
.x47_c01248{left:321.563535px;}
.x63_c01248{left:323.543535px;}
.x26_c01248{left:331.819935px;}
.x12_c01248{left:333.022785px;}
.x64_c01248{left:335.364135px;}
.x50_c01248{left:337.497585px;}
.x1c_c01248{left:344.823585px;}
.x2a_c01248{left:354.050385px;}
.x1d_c01248{left:355.743285px;}
.x2f_c01248{left:364.336485px;}
.x13_c01248{left:365.455185px;}
.x51_c01248{left:367.078785px;}
.x48_c01248{left:370.167585px;}
.x52_c01248{left:379.914135px;}
.x2b_c01248{left:387.136185px;}
.x43_c01248{left:388.824135px;}
.x14_c01248{left:398.179635px;}
.x36_c01248{left:399.996285px;}
.x6e_c01248{left:401.575335px;}
.x49_c01248{left:410.742735px;}
.x6f_c01248{left:412.094085px;}
.x2c_c01248{left:421.538685px;}
.x65_c01248{left:423.013785px;}
.x15_c01248{left:432.111885px;}
.x1e_c01248{left:433.359285px;}
.x66_c01248{left:434.755185px;}
.x30_c01248{left:443.150385px;}
.x4a_c01248{left:444.833385px;}
.x70_c01248{left:446.164935px;}
.x16_c01248{left:453.273135px;}
.x59_c01248{left:454.490835px;}
.x1f_c01248{left:455.753085px;}
.x20_c01248{left:466.737135px;}
.x31_c01248{left:475.379835px;}
.x21_c01248{left:477.542985px;}
.x67_c01248{left:479.255685px;}
.x5a_c01248{left:488.017185px;}
.x54_c01248{left:489.116085px;}
.x17_c01248{left:498.382485px;}
.x38_c01248{left:499.748685px;}
.x44_c01248{left:501.580185px;}
.x2d_c01248{left:509.713035px;}
.x37_c01248{left:511.292085px;}
.x18_c01248{left:519.934785px;}
.x62_c01248{left:521.479185px;}
.x55_c01248{left:522.672135px;}
.x32_c01248{left:531.884085px;}
.x71_c01248{left:534.037335px;}
.x35_c01248{left:542.838435px;}
.x56_c01248{left:545.244135px;}
.x19_c01248{left:552.723585px;}
.x3c_c01248{left:555.604485px;}
.x5c_c01248{left:557.643885px;}
.x39_c01248{left:564.999585px;}
.x3d_c01248{left:566.751885px;}
.x27_c01248{left:577.280535px;}
.x5_c01248{left:578.968485px;}
.x69_c01248{left:586.497435px;}
.x33_c01248{left:588.304185px;}
.x22_c01248{left:589.368435px;}
.x60_c01248{left:598.857585px;}
.x3e_c01248{left:599.872335px;}
.x23_c01248{left:610.499985px;}
.x4b_c01248{left:611.910735px;}
.x6_c01248{left:615.390585px;}
.x6a_c01248{left:618.662535px;}
.x24_c01248{left:621.484035px;}
.x7_c01248{left:634.329285px;}
.x8_c01248{left:635.819235px;}
.x1a_c01248{left:641.110785px;}
.x9_c01248{left:643.328385px;}
.x3a_c01248{left:654.005535px;}
.x4c_c01248{left:655.510335px;}
.x34_c01248{left:664.118385px;}
.x61_c01248{left:665.162835px;}
.x68_c01248{left:666.608235px;}
.x3b_c01248{left:674.404485px;}
.x6c_c01248{left:675.820185px;}
.x3f_c01248{left:677.458635px;}
.x6d_c01248{left:688.442685px;}
.xe_c01248{left:696.704235px;}
.x25_c01248{left:698.283285px;}
.xa_c01248{left:703.767885px;}
.xf_c01248{left:708.643635px;}
.xc_c01248{left:716.801235px;}
.xd_c01248{left:718.315935px;}
.x10_c01248{left:738.784185px;}
@media print{
.v2_c01248{vertical-align:-34.232000pt;}
.v3_c01248{vertical-align:-18.981952pt;}
.v0_c01248{vertical-align:0.000000pt;}
.v1_c01248{vertical-align:1.293600pt;}
.ls9_c01248{letter-spacing:-2.365446pt;}
.ls13_c01248{letter-spacing:-2.359280pt;}
.ls7_c01248{letter-spacing:-2.310000pt;}
.ls1a_c01248{letter-spacing:-2.186800pt;}
.ls2c_c01248{letter-spacing:-2.143680pt;}
.ls17_c01248{letter-spacing:-1.737126pt;}
.ls18_c01248{letter-spacing:-1.718640pt;}
.ls27_c01248{letter-spacing:-1.675526pt;}
.ls15_c01248{letter-spacing:-1.558480pt;}
.ls3_c01248{letter-spacing:-1.145760pt;}
.ls2e_c01248{letter-spacing:-1.004080pt;}
.ls30_c01248{letter-spacing:-0.745360pt;}
.ls32_c01248{letter-spacing:-0.659120pt;}
.ls22_c01248{letter-spacing:-0.646800pt;}
.ls20_c01248{letter-spacing:-0.634480pt;}
.ls2f_c01248{letter-spacing:-0.516859pt;}
.lsb_c01248{letter-spacing:-0.505120pt;}
.ls10_c01248{letter-spacing:-0.480904pt;}
.lse_c01248{letter-spacing:-0.065261pt;}
.ls4_c01248{letter-spacing:0.000000pt;}
.ls26_c01248{letter-spacing:0.348867pt;}
.lsc_c01248{letter-spacing:0.721600pt;}
.lsf_c01248{letter-spacing:0.906400pt;}
.ls23_c01248{letter-spacing:0.924000pt;}
.ls25_c01248{letter-spacing:0.932800pt;}
.ls33_c01248{letter-spacing:0.941600pt;}
.ls24_c01248{letter-spacing:0.950400pt;}
.ls29_c01248{letter-spacing:1.041638pt;}
.ls31_c01248{letter-spacing:1.064800pt;}
.lsd_c01248{letter-spacing:1.196800pt;}
.ls2a_c01248{letter-spacing:1.223200pt;}
.ls2b_c01248{letter-spacing:1.408000pt;}
.ls2d_c01248{letter-spacing:1.434400pt;}
.ls2_c01248{letter-spacing:1.636800pt;}
.ls16_c01248{letter-spacing:1.812800pt;}
.lsa_c01248{letter-spacing:1.959941pt;}
.ls1d_c01248{letter-spacing:2.138400pt;}
.ls11_c01248{letter-spacing:2.329800pt;}
.ls28_c01248{letter-spacing:2.393609pt;}
.ls34_c01248{letter-spacing:2.534400pt;}
.ls19_c01248{letter-spacing:3.124000pt;}
.ls1f_c01248{letter-spacing:3.291209pt;}
.ls6_c01248{letter-spacing:3.300000pt;}
.ls12_c01248{letter-spacing:3.370400pt;}
.ls8_c01248{letter-spacing:3.379209pt;}
.ls1e_c01248{letter-spacing:3.555209pt;}
.ls35_c01248{letter-spacing:3.573398pt;}
.ls1_c01248{letter-spacing:10.694816pt;}
.ls0_c01248{letter-spacing:14.044800pt;}
.ls5_c01248{letter-spacing:29.145776pt;}
.ls14_c01248{letter-spacing:34.214576pt;}
.ls1c_c01248{letter-spacing:35.481600pt;}
.ls1b_c01248{letter-spacing:48.153776pt;}
.ls21_c01248{letter-spacing:51.955376pt;}
.ws2_c01248{word-spacing:-18.829800pt;}
.ws1_c01248{word-spacing:-17.735140pt;}
.ws0_c01248{word-spacing:-16.500000pt;}
.ws4_c01248{word-spacing:0.000000pt;}
.ws3_c01248{word-spacing:5.016000pt;}
._b_c01248{margin-left:-25.784000pt;}
._3_c01248{margin-left:-12.897681pt;}
._a_c01248{margin-left:-11.126896pt;}
._4_c01248{margin-left:-6.798880pt;}
._2_c01248{margin-left:-1.952929pt;}
._6_c01248{width:3.489200pt;}
._0_c01248{width:7.524000pt;}
._c_c01248{width:8.993600pt;}
._1_c01248{width:12.474000pt;}
._d_c01248{width:18.705773pt;}
._9_c01248{width:25.581468pt;}
._7_c01248{width:29.880400pt;}
._8_c01248{width:61.015152pt;}
._5_c01248{width:70.359070pt;}
.fs8_c01248{font-size:14.432000pt;}
.fsa_c01248{font-size:18.128000pt;}
.fs25_c01248{font-size:18.480000pt;}
.fs26_c01248{font-size:18.656000pt;}
.fs31_c01248{font-size:18.832000pt;}
.fsf_c01248{font-size:19.008000pt;}
.fs1d_c01248{font-size:19.888000pt;}
.fs2f_c01248{font-size:20.592000pt;}
.fs2b_c01248{font-size:20.768000pt;}
.fs30_c01248{font-size:21.296000pt;}
.fs3_c01248{font-size:22.352000pt;}
.fs9_c01248{font-size:23.936000pt;}
.fs29_c01248{font-size:24.464000pt;}
.fs1_c01248{font-size:24.640000pt;}
.fs2a_c01248{font-size:28.160000pt;}
.fs2d_c01248{font-size:28.688000pt;}
.fs4_c01248{font-size:29.145776pt;}
.fsc_c01248{font-size:30.272176pt;}
.fs15_c01248{font-size:31.856000pt;}
.fs0_c01248{font-size:32.736000pt;}
.fs14_c01248{font-size:34.144000pt;}
.fs13_c01248{font-size:34.214576pt;}
.fs20_c01248{font-size:35.481600pt;}
.fs19_c01248{font-size:36.256000pt;}
.fs18_c01248{font-size:44.528000pt;}
.fs27_c01248{font-size:47.872176pt;}
.fs1f_c01248{font-size:48.153776pt;}
.fs1b_c01248{font-size:49.104000pt;}
.fs1a_c01248{font-size:49.632176pt;}
.fs2e_c01248{font-size:50.688000pt;}
.fs12_c01248{font-size:50.688176pt;}
.fs24_c01248{font-size:51.955376pt;}
.fs1e_c01248{font-size:53.856000pt;}
.fs17_c01248{font-size:58.256000pt;}
.fs2_c01248{font-size:59.136000pt;}
.fs2c_c01248{font-size:61.248000pt;}
.fs5_c01248{font-size:61.600000pt;}
.fs1c_c01248{font-size:62.480000pt;}
.fs16_c01248{font-size:64.944176pt;}
.fs23_c01248{font-size:65.824176pt;}
.fs6_c01248{font-size:66.000000pt;}
.fs11_c01248{font-size:67.408000pt;}
.fs7_c01248{font-size:67.584176pt;}
.fs21_c01248{font-size:68.288000pt;}
.fs22_c01248{font-size:71.104176pt;}
.fs28_c01248{font-size:72.336000pt;}
.fsb_c01248{font-size:72.864176pt;}
.fsd_c01248{font-size:83.072176pt;}
.fs10_c01248{font-size:92.928000pt;}
.fse_c01248{font-size:112.288000pt;}
.y0_c01248{bottom:0.000000pt;}
.y1_c01248{bottom:68.000000pt;}
.y32_c01248{bottom:86.091320pt;}
.y31_c01248{bottom:113.969720pt;}
.y2f_c01248{bottom:143.115320pt;}
.y30_c01248{bottom:147.862920pt;}
.y2e_c01248{bottom:167.192120pt;}
.y2d_c01248{bottom:171.306120pt;}
.y2c_c01248{bottom:199.505720pt;}
.y2b_c01248{bottom:228.017720pt;}
.y2a_c01248{bottom:247.338120pt;}
.y29_c01248{bottom:256.525320pt;}
.y28_c01248{bottom:284.408120pt;}
.y27_c01248{bottom:312.286520pt;}
.y25_c01248{bottom:340.477320pt;}
.y22_c01248{bottom:368.038920pt;}
.y21_c01248{bottom:396.238520pt;}
.y26_c01248{bottom:396.550920pt;}
.y24_c01248{bottom:396.872120pt;}
.y23_c01248{bottom:404.792120pt;}
.y20_c01248{bottom:424.112520pt;}
.y1f_c01248{bottom:452.624520pt;}
.y1e_c01248{bottom:480.502920pt;}
.y19_c01248{bottom:508.064520pt;}
.y1b_c01248{bottom:508.702520pt;}
.y1a_c01248{bottom:512.182920pt;}
.y18_c01248{bottom:536.580920pt;}
.y1d_c01248{bottom:536.897720pt;}
.y17_c01248{bottom:555.584520pt;}
.yd_c01248{bottom:558.756920pt;}
.y1c_c01248{bottom:559.073720pt;}
.y16_c01248{bottom:564.459320pt;}
.y15_c01248{bottom:592.971320pt;}
.y14_c01248{bottom:607.222920pt;}
.y13_c01248{bottom:620.849720pt;}
.y3_c01248{bottom:632.250120pt;}
.y12_c01248{bottom:649.357320pt;}
.y11_c01248{bottom:676.289720pt;}
.ye_c01248{bottom:676.918920pt;}
.y10_c01248{bottom:678.186120pt;}
.yf_c01248{bottom:687.060920pt;}
.yc_c01248{bottom:706.064520pt;}
.yb_c01248{bottom:734.580920pt;}
.ya_c01248{bottom:763.088520pt;}
.y9_c01248{bottom:791.288120pt;}
.y8_c01248{bottom:818.528520pt;}
.y7_c01248{bottom:819.478920pt;}
.y6_c01248{bottom:854.331320pt;}
.y5_c01248{bottom:863.835320pt;}
.y4_c01248{bottom:875.235720pt;}
.y2_c01248{bottom:985.798920pt;}
.ha_c01248{height:15.052125pt;}
.hc_c01248{height:17.791641pt;}
.h24_c01248{height:18.137109pt;}
.h22_c01248{height:18.906938pt;}
.h6_c01248{height:19.411087pt;}
.h25_c01248{height:19.457625pt;}
.h1b_c01248{height:19.518984pt;}
.h2f_c01248{height:19.641188pt;}
.h10_c01248{height:19.824750pt;}
.h2e_c01248{height:21.462375pt;}
.h2a_c01248{height:21.660375pt;}
.h14_c01248{height:22.786908pt;}
.h5_c01248{height:23.312438pt;}
.hb_c01248{height:23.491875pt;}
.h1e_c01248{height:23.630746pt;}
.h28_c01248{height:24.010078pt;}
.h3_c01248{height:25.698750pt;}
.h2c_c01248{height:28.912125pt;}
.h29_c01248{height:29.370000pt;}
.h1d_c01248{height:32.070415pt;}
.h2_c01248{height:32.128594pt;}
.h13_c01248{height:33.758325pt;}
.h23_c01248{height:34.602280pt;}
.h17_c01248{height:36.539250pt;}
.h16_c01248{height:46.441313pt;}
.h26_c01248{height:49.929184pt;}
.h18_c01248{height:50.019927pt;}
.h2d_c01248{height:51.084000pt;}
.h19_c01248{height:51.213938pt;}
.h1c_c01248{height:56.170125pt;}
.h1a_c01248{height:61.320703pt;}
.h4_c01248{height:61.677000pt;}
.h15_c01248{height:63.739157pt;}
.h2b_c01248{height:63.879750pt;}
.h8_c01248{height:64.775391pt;}
.h7_c01248{height:65.540475pt;}
.h12_c01248{height:66.157266pt;}
.h9_c01248{height:66.330173pt;}
.h21_c01248{height:66.338427pt;}
.h1f_c01248{height:67.020938pt;}
.h20_c01248{height:69.784860pt;}
.hd_c01248{height:71.512204pt;}
.h27_c01248{height:72.901125pt;}
.hf_c01248{height:75.972531pt;}
.he_c01248{height:86.641684pt;}
.h11_c01248{height:96.921000pt;}
.h1_c01248{height:986.666667pt;}
.h0_c01248{height:1122.666667pt;}
.w1_c01248{width:689.333333pt;}
.w0_c01248{width:793.333333pt;}
.x2_c01248{left:-1.859747pt;}
.x0_c01248{left:0.000000pt;}
.x1_c01248{left:52.000000pt;}
.xb_c01248{left:59.133053pt;}
.x4d_c01248{left:87.882653pt;}
.x3_c01248{left:103.639053pt;}
.x5b_c01248{left:127.764253pt;}
.x4e_c01248{left:138.715853pt;}
.x11_c01248{left:146.820653pt;}
.x2e_c01248{left:158.291453pt;}
.x28_c01248{left:174.831053pt;}
.x4f_c01248{left:177.039853pt;}
.x29_c01248{left:178.183853pt;}
.x5f_c01248{left:198.045453pt;}
.x57_c01248{left:207.386653pt;}
.x58_c01248{left:217.577053pt;}
.x1b_c01248{left:225.510253pt;}
.x5d_c01248{left:226.641053pt;}
.x4_c01248{left:227.961053pt;}
.x6b_c01248{left:235.273853pt;}
.x40_c01248{left:236.321053pt;}
.x41_c01248{left:245.825053pt;}
.x5e_c01248{left:255.271853pt;}
.x45_c01248{left:257.757853pt;}
.x46_c01248{left:265.906653pt;}
.x42_c01248{left:267.033053pt;}
.x53_c01248{left:274.926653pt;}
.x47_c01248{left:285.834253pt;}
.x63_c01248{left:287.594253pt;}
.x26_c01248{left:294.951053pt;}
.x12_c01248{left:296.020253pt;}
.x64_c01248{left:298.101453pt;}
.x50_c01248{left:299.997853pt;}
.x1c_c01248{left:306.509853pt;}
.x2a_c01248{left:314.711453pt;}
.x1d_c01248{left:316.216253pt;}
.x2f_c01248{left:323.854653pt;}
.x13_c01248{left:324.849053pt;}
.x51_c01248{left:326.292253pt;}
.x48_c01248{left:329.037853pt;}
.x52_c01248{left:337.701453pt;}
.x2b_c01248{left:344.121053pt;}
.x43_c01248{left:345.621453pt;}
.x14_c01248{left:353.937453pt;}
.x36_c01248{left:355.552253pt;}
.x6e_c01248{left:356.955853pt;}
.x49_c01248{left:365.104653pt;}
.x6f_c01248{left:366.305853pt;}
.x2c_c01248{left:374.701053pt;}
.x65_c01248{left:376.012253pt;}
.x15_c01248{left:384.099453pt;}
.x1e_c01248{left:385.208253pt;}
.x66_c01248{left:386.449053pt;}
.x30_c01248{left:393.911453pt;}
.x4a_c01248{left:395.407453pt;}
.x70_c01248{left:396.591053pt;}
.x16_c01248{left:402.909453pt;}
.x59_c01248{left:403.991853pt;}
.x1f_c01248{left:405.113853pt;}
.x20_c01248{left:414.877453pt;}
.x31_c01248{left:422.559853pt;}
.x21_c01248{left:424.482653pt;}
.x67_c01248{left:426.005053pt;}
.x5a_c01248{left:433.793053pt;}
.x54_c01248{left:434.769853pt;}
.x17_c01248{left:443.006653pt;}
.x38_c01248{left:444.221053pt;}
.x44_c01248{left:445.849053pt;}
.x2d_c01248{left:453.078253pt;}
.x37_c01248{left:454.481853pt;}
.x18_c01248{left:462.164253pt;}
.x62_c01248{left:463.537053pt;}
.x55_c01248{left:464.597453pt;}
.x32_c01248{left:472.785853pt;}
.x71_c01248{left:474.699853pt;}
.x35_c01248{left:482.523053pt;}
.x56_c01248{left:484.661453pt;}
.x19_c01248{left:491.309853pt;}
.x3c_c01248{left:493.870653pt;}
.x5c_c01248{left:495.683453pt;}
.x39_c01248{left:502.221853pt;}
.x3d_c01248{left:503.779453pt;}
.x27_c01248{left:513.138253pt;}
.x5_c01248{left:514.638653pt;}
.x69_c01248{left:521.331053pt;}
.x33_c01248{left:522.937053pt;}
.x22_c01248{left:523.883053pt;}
.x60_c01248{left:532.317853pt;}
.x3e_c01248{left:533.219853pt;}
.x23_c01248{left:542.666653pt;}
.x4b_c01248{left:543.920653pt;}
.x6_c01248{left:547.013853pt;}
.x6a_c01248{left:549.922253pt;}
.x24_c01248{left:552.430253pt;}
.x7_c01248{left:563.848253pt;}
.x8_c01248{left:565.172653pt;}
.x1a_c01248{left:569.876253pt;}
.x9_c01248{left:571.847453pt;}
.x3a_c01248{left:581.338253pt;}
.x4c_c01248{left:582.675853pt;}
.x34_c01248{left:590.327453pt;}
.x61_c01248{left:591.255853pt;}
.x68_c01248{left:592.540653pt;}
.x3b_c01248{left:599.470653pt;}
.x6c_c01248{left:600.729053pt;}
.x3f_c01248{left:602.185453pt;}
.x6d_c01248{left:611.949053pt;}
.xe_c01248{left:619.292653pt;}
.x25_c01248{left:620.696253pt;}
.xa_c01248{left:625.571453pt;}
.xf_c01248{left:629.905453pt;}
.xc_c01248{left:637.156653pt;}
.xd_c01248{left:638.503053pt;}
.x10_c01248{left:656.697053pt;}
}





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

.ir_c01249:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01249{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01249;src:url('chunks/assets/font_94e5b039e9f96900790be347.woff2')format("woff");}.ff1_c01249{font-family:ff1_c01249;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01249;src:url('chunks/assets/font_f656da11f7b0a0da8855dde8.woff2')format("woff");}.ff2_c01249{font-family:ff2_c01249;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01249;src:url('chunks/assets/font_9a9bf64684b67e7d93b3c1ca.woff2')format("woff");}.ff3_c01249{font-family:ff3_c01249;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01249;src:url('chunks/assets/font_0da42b9726f0ce1db725f017.woff2')format("woff");}.ff4_c01249{font-family:ff4_c01249;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01249;src:url('chunks/assets/font_e9110cb3293850ded20b12f6.woff2')format("woff");}.ff5_c01249{font-family:ff5_c01249;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01249;src:url('chunks/assets/font_c00f53a167d0c14ac7a3971d.woff2')format("woff");}.ff6_c01249{font-family:ff6_c01249;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5b_c01249{transform:matrix(0.081081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081081,0.000000,0.000000,0.250000,0,0);}
.m21_c01249{transform:matrix(0.093191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093191,0.000000,0.000000,0.250000,0,0);}
.m20_c01249{transform:matrix(0.138842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138842,0.000000,0.000000,0.250000,0,0);}
.m2f_c01249{transform:matrix(0.143116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143116,0.000000,0.000000,0.250000,0,0);}
.m4c_c01249{transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);}
.m4d_c01249{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01249{transform:matrix(0.152173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152173,0.000000,0.000000,0.250000,0,0);}
.m40_c01249{transform:matrix(0.157382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157382,0.000000,0.000000,0.250000,0,0);}
.m6b_c01249{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);}
.mb_c01249{transform:matrix(0.175812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175812,0.000000,0.000000,0.250000,0,0);}
.m6c_c01249{transform:matrix(0.176587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176587,0.000000,0.000000,0.250000,0,0);}
.m67_c01249{transform:matrix(0.180041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180041,0.000000,0.000000,0.250000,0,0);}
.m23_c01249{transform:matrix(0.180877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180877,0.000000,0.000000,0.250000,0,0);}
.m68_c01249{transform:matrix(0.185640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185640,0.000000,0.000000,0.250000,0,0);}
.m4b_c01249{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mc_c01249{transform:matrix(0.198171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198171,0.000000,0.000000,0.250000,0,0);}
.m70_c01249{transform:matrix(0.199036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199036,0.000000,0.000000,0.250000,0,0);}
.m76_c01249{transform:matrix(0.200270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200270,0.000000,0.000000,0.250000,0,0);}
.m3c_c01249{transform:matrix(0.202702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202702,0.000000,0.000000,0.250000,0,0);}
.m6d_c01249{transform:matrix(0.203696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203696,0.000000,0.000000,0.250000,0,0);}
.m6a_c01249{transform:matrix(0.211806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211806,0.000000,0.000000,0.250000,0,0);}
.m6e_c01249{transform:matrix(0.219377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219377,0.000000,0.000000,0.250000,0,0);}
.m69_c01249{transform:matrix(0.221776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221776,0.000000,0.000000,0.250000,0,0);}
.m24_c01249{transform:matrix(0.222124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222124,0.000000,0.000000,0.250000,0,0);}
.m26_c01249{transform:matrix(0.222460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222460,0.000000,0.000000,0.250000,0,0);}
.m11_c01249{transform:matrix(0.231599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231599,0.000000,0.000000,0.250000,0,0);}
.m6f_c01249{transform:matrix(0.234650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234650,0.000000,0.000000,0.250000,0,0);}
.mf_c01249{transform:matrix(0.236423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236423,0.000000,0.000000,0.250000,0,0);}
.m54_c01249{transform:matrix(0.238948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238948,0.000000,0.000000,0.250000,0,0);}
.m1_c01249{transform:matrix(0.240877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240877,0.000000,0.000000,0.250000,0,0);}
.m4a_c01249{transform:matrix(0.242317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242317,0.000000,0.000000,0.250000,0,0);}
.m7a_c01249{transform:matrix(0.246802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246802,0.000000,0.000000,0.250000,0,0);}
.m0_c01249{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m62_c01249{transform:matrix(0.250546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250546,0.000000,0.000000,0.250000,0,0);}
.m7f_c01249{transform:matrix(0.251792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251792,0.000000,0.000000,0.250000,0,0);}
.m44_c01249{transform:matrix(0.251885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251885,0.000000,0.000000,0.250000,0,0);}
.m4e_c01249{transform:matrix(0.252313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252313,0.000000,0.000000,0.250000,0,0);}
.m10_c01249{transform:matrix(0.254020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254020,0.000000,0.000000,0.250000,0,0);}
.m65_c01249{transform:matrix(0.254590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254590,0.000000,0.000000,0.250000,0,0);}
.m38_c01249{transform:matrix(0.255715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255715,0.000000,0.000000,0.250000,0,0);}
.m18_c01249{transform:matrix(0.256819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256819,0.000000,0.000000,0.250000,0,0);}
.m4_c01249{transform:matrix(0.259656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259656,0.000000,0.000000,0.250000,0,0);}
.m60_c01249{transform:matrix(0.260030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260030,0.000000,0.000000,0.250000,0,0);}
.m2d_c01249{transform:matrix(0.260595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260595,0.000000,0.000000,0.250000,0,0);}
.m3_c01249{transform:matrix(0.261325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261325,0.000000,0.000000,0.250000,0,0);}
.m66_c01249{transform:matrix(0.261489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261489,0.000000,0.000000,0.250000,0,0);}
.m77_c01249{transform:matrix(0.262779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262779,0.000000,0.000000,0.250000,0,0);}
.m78_c01249{transform:matrix(0.263496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263496,0.000000,0.000000,0.250000,0,0);}
.m5a_c01249{transform:matrix(0.265343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265343,0.000000,0.000000,0.250000,0,0);}
.m7d_c01249{transform:matrix(0.267358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267358,0.000000,0.000000,0.250000,0,0);}
.m6_c01249{transform:matrix(0.268905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268905,0.000000,0.000000,0.250000,0,0);}
.m5c_c01249{transform:matrix(0.271514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271514,0.000000,0.000000,0.250000,0,0);}
.m73_c01249{transform:matrix(0.272616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272616,0.000000,0.000000,0.250000,0,0);}
.m5f_c01249{transform:matrix(0.275973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275973,0.000000,0.000000,0.250000,0,0);}
.m3f_c01249{transform:matrix(0.276949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276949,0.000000,0.000000,0.250000,0,0);}
.m30_c01249{transform:matrix(0.277684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277684,0.000000,0.000000,0.250000,0,0);}
.m15_c01249{transform:matrix(0.278411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278411,0.000000,0.000000,0.250000,0,0);}
.m57_c01249{transform:matrix(0.279723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279723,0.000000,0.000000,0.250000,0,0);}
.m3b_c01249{transform:matrix(0.280352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280352,0.000000,0.000000,0.250000,0,0);}
.m64_c01249{transform:matrix(0.282099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282099,0.000000,0.000000,0.250000,0,0);}
.m4f_c01249{transform:matrix(0.283612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283612,0.000000,0.000000,0.250000,0,0);}
.m1c_c01249{transform:matrix(0.283821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283821,0.000000,0.000000,0.250000,0,0);}
.m47_c01249{transform:matrix(0.285190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285190,0.000000,0.000000,0.250000,0,0);}
.m41_c01249{transform:matrix(0.286536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286536,0.000000,0.000000,0.250000,0,0);}
.m43_c01249{transform:matrix(0.291019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291019,0.000000,0.000000,0.250000,0,0);}
.m7c_c01249{transform:matrix(0.291177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291177,0.000000,0.000000,0.250000,0,0);}
.m5d_c01249{transform:matrix(0.292079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292079,0.000000,0.000000,0.250000,0,0);}
.m72_c01249{transform:matrix(0.294355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294355,0.000000,0.000000,0.250000,0,0);}
.m32_c01249{transform:matrix(0.297210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297210,0.000000,0.000000,0.250000,0,0);}
.m42_c01249{transform:matrix(0.299885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299885,0.000000,0.000000,0.250000,0,0);}
.m59_c01249{transform:matrix(0.301653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301653,0.000000,0.000000,0.250000,0,0);}
.m8_c01249{transform:matrix(0.302015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302015,0.000000,0.000000,0.250000,0,0);}
.m3a_c01249{transform:matrix(0.303116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303116,0.000000,0.000000,0.250000,0,0);}
.m7e_c01249{transform:matrix(0.303639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303639,0.000000,0.000000,0.250000,0,0);}
.m28_c01249{transform:matrix(0.306357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306357,0.000000,0.000000,0.250000,0,0);}
.m63_c01249{transform:matrix(0.307288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307288,0.000000,0.000000,0.250000,0,0);}
.m5_c01249{transform:matrix(0.309701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309701,0.000000,0.000000,0.250000,0,0);}
.m49_c01249{transform:matrix(0.310271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310271,0.000000,0.000000,0.250000,0,0);}
.m1a_c01249{transform:matrix(0.310834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310834,0.000000,0.000000,0.250000,0,0);}
.m1b_c01249{transform:matrix(0.311270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311270,0.000000,0.000000,0.250000,0,0);}
.m51_c01249{transform:matrix(0.312621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312621,0.000000,0.000000,0.250000,0,0);}
.m2c_c01249{transform:matrix(0.313212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313212,0.000000,0.000000,0.250000,0,0);}
.m33_c01249{transform:matrix(0.314858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314858,0.000000,0.000000,0.250000,0,0);}
.m53_c01249{transform:matrix(0.314912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314912,0.000000,0.000000,0.250000,0,0);}
.m79_c01249{transform:matrix(0.314929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314929,0.000000,0.000000,0.250000,0,0);}
.m2_c01249{transform:matrix(0.315078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315078,0.000000,0.000000,0.250000,0,0);}
.m9_c01249{transform:matrix(0.315276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315276,0.000000,0.000000,0.250000,0,0);}
.m7_c01249{transform:matrix(0.315450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315450,0.000000,0.000000,0.250000,0,0);}
.m48_c01249{transform:matrix(0.317180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317180,0.000000,0.000000,0.250000,0,0);}
.m2a_c01249{transform:matrix(0.318914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318914,0.000000,0.000000,0.250000,0,0);}
.ma_c01249{transform:matrix(0.319347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319347,0.000000,0.000000,0.250000,0,0);}
.m3d_c01249{transform:matrix(0.320798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320798,0.000000,0.000000,0.250000,0,0);}
.m7b_c01249{transform:matrix(0.322237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322237,0.000000,0.000000,0.250000,0,0);}
.md_c01249{transform:matrix(0.322842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322842,0.000000,0.000000,0.250000,0,0);}
.m17_c01249{transform:matrix(0.324068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324068,0.000000,0.000000,0.250000,0,0);}
.m3e_c01249{transform:matrix(0.328411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328411,0.000000,0.000000,0.250000,0,0);}
.m2b_c01249{transform:matrix(0.330137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330137,0.000000,0.000000,0.250000,0,0);}
.m39_c01249{transform:matrix(0.330543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330543,0.000000,0.000000,0.250000,0,0);}
.m29_c01249{transform:matrix(0.334253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334253,0.000000,0.000000,0.250000,0,0);}
.m27_c01249{transform:matrix(0.336694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336694,0.000000,0.000000,0.250000,0,0);}
.m52_c01249{transform:matrix(0.337967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337967,0.000000,0.000000,0.250000,0,0);}
.m34_c01249{transform:matrix(0.343158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343158,0.000000,0.000000,0.250000,0,0);}
.m56_c01249{transform:matrix(0.344184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344184,0.000000,0.000000,0.250000,0,0);}
.m61_c01249{transform:matrix(0.346977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346977,0.000000,0.000000,0.250000,0,0);}
.m31_c01249{transform:matrix(0.347260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347260,0.000000,0.000000,0.250000,0,0);}
.m55_c01249{transform:matrix(0.347703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347703,0.000000,0.000000,0.250000,0,0);}
.m45_c01249{transform:matrix(0.358648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358648,0.000000,0.000000,0.250000,0,0);}
.m50_c01249{transform:matrix(0.358704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358704,0.000000,0.000000,0.250000,0,0);}
.m5e_c01249{transform:matrix(0.362275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362275,0.000000,0.000000,0.250000,0,0);}
.m58_c01249{transform:matrix(0.365542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365542,0.000000,0.000000,0.250000,0,0);}
.m19_c01249{transform:matrix(0.370070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370070,0.000000,0.000000,0.250000,0,0);}
.m13_c01249{transform:matrix(0.374996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374996,0.000000,0.000000,0.250000,0,0);}
.m1e_c01249{transform:matrix(0.375788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375788,0.000000,0.000000,0.250000,0,0);}
.m22_c01249{transform:matrix(0.384735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384735,0.000000,0.000000,0.250000,0,0);}
.m1d_c01249{transform:matrix(0.386783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386783,0.000000,0.000000,0.250000,0,0);}
.m16_c01249{transform:matrix(0.388041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388041,0.000000,0.000000,0.250000,0,0);}
.m35_c01249{transform:matrix(0.391298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391298,0.000000,0.000000,0.250000,0,0);}
.m46_c01249{transform:matrix(0.393193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393193,0.000000,0.000000,0.250000,0,0);}
.me_c01249{transform:matrix(0.397920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397920,0.000000,0.000000,0.250000,0,0);}
.m36_c01249{transform:matrix(0.400842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400842,0.000000,0.000000,0.250000,0,0);}
.m1f_c01249{transform:matrix(0.411577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411577,0.000000,0.000000,0.250000,0,0);}
.m75_c01249{transform:matrix(0.419728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419728,0.000000,0.000000,0.250000,0,0);}
.m37_c01249{transform:matrix(0.419929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419929,0.000000,0.000000,0.250000,0,0);}
.m71_c01249{transform:matrix(0.421700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421700,0.000000,0.000000,0.250000,0,0);}
.m74_c01249{transform:matrix(0.424161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424161,0.000000,0.000000,0.250000,0,0);}
.m14_c01249{transform:matrix(0.537342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537342,0.000000,0.000000,0.250000,0,0);}
.m25_c01249{transform:matrix(0.571834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571834,0.000000,0.000000,0.250000,0,0);}
.m12_c01249{transform:matrix(1.098962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.098962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.098962,0.000000,0.000000,0.250000,0,0);}
.v0_c01249{vertical-align:0.000000px;}
.ls8_c01249{letter-spacing:-2.813580px;}
.ls10_c01249{letter-spacing:-2.661127px;}
.ls3_c01249{letter-spacing:-2.654190px;}
.ls1a_c01249{letter-spacing:-2.439367px;}
.ls1d_c01249{letter-spacing:-2.315174px;}
.ls9_c01249{letter-spacing:-1.275120px;}
.ls21_c01249{letter-spacing:-1.122667px;}
.lsc_c01249{letter-spacing:-0.983664px;}
.ls12_c01249{letter-spacing:-0.796950px;}
.ls11_c01249{letter-spacing:-0.720720px;}
.ls2_c01249{letter-spacing:0.000000px;}
.lsd_c01249{letter-spacing:0.475210px;}
.lse_c01249{letter-spacing:0.603900px;}
.ls1c_c01249{letter-spacing:1.583644px;}
.ls22_c01249{letter-spacing:1.603810px;}
.ls13_c01249{letter-spacing:1.762200px;}
.lsa_c01249{letter-spacing:1.821600px;}
.ls23_c01249{letter-spacing:2.455200px;}
.ls14_c01249{letter-spacing:2.604571px;}
.ls19_c01249{letter-spacing:3.484810px;}
.ls5_c01249{letter-spacing:3.529033px;}
.ls16_c01249{letter-spacing:3.564000px;}
.ls7_c01249{letter-spacing:3.585305px;}
.ls20_c01249{letter-spacing:3.643200px;}
.ls1_c01249{letter-spacing:3.762158px;}
.lsf_c01249{letter-spacing:3.801610px;}
.ls1b_c01249{letter-spacing:3.821400px;}
.ls17_c01249{letter-spacing:3.880810px;}
.ls4_c01249{letter-spacing:4.019400px;}
.ls0_c01249{letter-spacing:4.904460px;}
.lsb_c01249{letter-spacing:5.702598px;}
.ls1f_c01249{letter-spacing:51.321798px;}
.ls18_c01249{letter-spacing:52.747398px;}
.ls1e_c01249{letter-spacing:57.024198px;}
.ls6_c01249{letter-spacing:58.449798px;}
.ls15_c01249{letter-spacing:65.577798px;}
.sc__c01249{text-shadow:none;}
.sc0_c01249{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01249{-webkit-text-stroke:0px transparent;}
.sc0_c01249{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01249{word-spacing:-114.761146px;}
.ws2_c01249{word-spacing:-23.859158px;}
.ws0_c01249{word-spacing:-23.626033px;}
.ws3_c01249{word-spacing:-20.097000px;}
.ws4_c01249{word-spacing:-2.113056px;}
.ws5_c01249{word-spacing:0.000000px;}
._7_c01249{margin-left:-6.912180px;}
._13_c01249{margin-left:-5.537466px;}
._6_c01249{margin-left:-4.421340px;}
._8_c01249{margin-left:-3.296700px;}
._1_c01249{margin-left:-2.251260px;}
._15_c01249{margin-left:-1.125432px;}
._3_c01249{width:2.411640px;}
._0_c01249{width:4.676760px;}
._d_c01249{width:6.107904px;}
._b_c01249{width:7.128000px;}
._9_c01249{width:8.553600px;}
._a_c01249{width:9.979200px;}
._c_c01249{width:11.404800px;}
._14_c01249{width:13.505184px;}
._e_c01249{width:14.882076px;}
._f_c01249{width:18.891180px;}
._11_c01249{width:24.508054px;}
._10_c01249{width:26.013240px;}
._2_c01249{width:28.056600px;}
._5_c01249{width:33.380820px;}
._4_c01249{width:39.073320px;}
._16_c01249{width:55.261800px;}
._12_c01249{width:63.077088px;}
.fc0_c01249{color:transparent;}
.fs6_c01249{font-size:5.702598px;}
.fs7_c01249{font-size:9.504198px;}
.fs8_c01249{font-size:12.078000px;}
.fs1_c01249{font-size:14.256000px;}
.fsa_c01249{font-size:20.592000px;}
.fs16_c01249{font-size:22.176000px;}
.fsd_c01249{font-size:22.572000px;}
.fsb_c01249{font-size:22.770000px;}
.fs19_c01249{font-size:32.076198px;}
.fs15_c01249{font-size:34.056198px;}
.fsc_c01249{font-size:35.244000px;}
.fs5_c01249{font-size:36.432000px;}
.fs1b_c01249{font-size:49.104000px;}
.fs17_c01249{font-size:51.321798px;}
.fs11_c01249{font-size:52.747398px;}
.fs14_c01249{font-size:57.024198px;}
.fs4_c01249{font-size:58.449798px;}
.fse_c01249{font-size:65.577798px;}
.fs12_c01249{font-size:69.696198px;}
.fsf_c01249{font-size:71.280000px;}
.fs18_c01249{font-size:72.864000px;}
.fs1a_c01249{font-size:75.438000px;}
.fs0_c01249{font-size:75.834000px;}
.fs9_c01249{font-size:76.032198px;}
.fs13_c01249{font-size:76.428000px;}
.fs10_c01249{font-size:77.616198px;}
.fs2_c01249{font-size:80.388000px;}
.fs3_c01249{font-size:104.544000px;}
.y0_c01249{bottom:0.000000px;}
.y1_c01249{bottom:76.500000px;}
.y20_c01249{bottom:173.478735px;}
.y1f_c01249{bottom:205.193385px;}
.y1e_c01249{bottom:236.917935px;}
.y1d_c01249{bottom:299.995785px;}
.y1c_c01249{bottom:332.433135px;}
.y1b_c01249{bottom:363.791385px;}
.y1a_c01249{bottom:385.893135px;}
.y18_c01249{bottom:395.867385px;}
.y17_c01249{bottom:395.873919px;}
.y19_c01249{bottom:401.931135px;}
.y16_c01249{bottom:427.586985px;}
.y15_c01249{bottom:459.662985px;}
.y14_c01249{bottom:490.669785px;}
.y13_c01249{bottom:522.750735px;}
.y12_c01249{bottom:554.113935px;}
.y11_c01249{bottom:586.184985px;}
.y10_c01249{bottom:618.260985px;}
.yf_c01249{bottom:636.793785px;}
.ye_c01249{bottom:649.980585px;}
.yd_c01249{bottom:681.705135px;}
.yc_c01249{bottom:713.419785px;}
.yb_c01249{bottom:745.500735px;}
.ya_c01249{bottom:776.507535px;}
.y9_c01249{bottom:804.301785px;}
.y8_c01249{bottom:808.227135px;}
.y7_c01249{bottom:840.303135px;}
.y6_c01249{bottom:872.022735px;}
.y5_c01249{bottom:893.050335px;}
.y4_c01249{bottom:903.380985px;}
.y3_c01249{bottom:931.541535px;}
.y2_c01249{bottom:935.100585px;}
.h8_c01249{height:3.797930px;}
.h9_c01249{height:9.327851px;}
.ha_c01249{height:11.847999px;}
.h3_c01249{height:13.991484px;}
.hc_c01249{height:21.476813px;}
.h18_c01249{height:23.128875px;}
.hf_c01249{height:23.541891px;}
.hd_c01249{height:23.748398px;}
.h1c_c01249{height:31.481034px;}
.h19_c01249{height:34.180317px;}
.h13_c01249{height:35.129767px;}
.he_c01249{height:35.519344px;}
.h17_c01249{height:35.519550px;}
.h7_c01249{height:35.756016px;}
.h16_c01249{height:37.978116px;}
.h6_c01249{height:38.927565px;}
.h10_c01249{height:43.674813px;}
.h1e_c01249{height:48.192891px;}
.h14_c01249{height:68.403007px;}
.h1b_c01249{height:71.512031px;}
.h11_c01249{height:71.836875px;}
.h1a_c01249{height:73.433250px;}
.h2_c01249{height:74.426924px;}
.h15_c01249{height:75.009902px;}
.hb_c01249{height:76.626200px;}
.h12_c01249{height:78.222575px;}
.h1d_c01249{height:78.679477px;}
.h4_c01249{height:78.896426px;}
.h5_c01249{height:109.036125px;}
.h1_c01249{height:1110.000000px;}
.h0_c01249{height:1263.000000px;}
.w1_c01249{width:775.500000px;}
.w0_c01249{width:892.500000px;}
.x0_c01249{left:0.000000px;}
.x1_c01249{left:58.500000px;}
.x53_c01249{left:91.784535px;}
.x54_c01249{left:147.808635px;}
.x55_c01249{left:181.453785px;}
.x39_c01249{left:203.238735px;}
.x12_c01249{left:204.565335px;}
.x3a_c01249{left:214.574235px;}
.x4d_c01249{left:225.741435px;}
.x49_c01249{left:227.998635px;}
.x56_c01249{left:236.799735px;}
.x3b_c01249{left:238.542135px;}
.x3c_c01249{left:248.357985px;}
.x4e_c01249{left:259.213335px;}
.x13_c01249{left:270.137985px;}
.xf_c01249{left:271.385385px;}
.x45_c01249{left:273.469335px;}
.x40_c01249{left:281.686335px;}
.x19_c01249{left:290.630985px;}
.x51_c01249{left:293.803935px;}
.x14_c01249{left:305.134485px;}
.x41_c01249{left:315.395835px;}
.x42_c01249{left:327.562935px;}
.x58_c01249{left:337.299585px;}
.x1a_c01249{left:345.204735px;}
.x4a_c01249{left:349.441935px;}
.x3d_c01249{left:351.119985px;}
.x6_c01249{left:359.762685px;}
.x3e_c01249{left:370.801185px;}
.x52_c01249{left:382.537635px;}
.x43_c01249{left:393.219735px;}
.x1b_c01249{left:397.377735px;}
.x1c_c01249{left:399.674535px;}
.x15_c01249{left:403.753335px;}
.x46_c01249{left:405.213585px;}
.x1d_c01249{left:411.217935px;}
.x22_c01249{left:416.945085px;}
.x57_c01249{left:427.369785px;}
.x59_c01249{left:428.542935px;}
.x47_c01249{left:437.447985px;}
.x1e_c01249{left:441.749535px;}
.x44_c01249{left:448.491435px;}
.x3f_c01249{left:449.506185px;}
.x16_c01249{left:460.366485px;}
.x38_c01249{left:469.677435px;}
.x2d_c01249{left:470.964435px;}
.x4f_c01249{left:480.730785px;}
.x17_c01249{left:482.002935px;}
.x23_c01249{left:483.374085px;}
.x1f_c01249{left:488.942835px;}
.xa_c01249{left:493.274085px;}
.x24_c01249{left:494.650185px;}
.x20_c01249{left:500.704035px;}
.x32_c01249{left:504.297735px;}
.x34_c01249{left:505.485735px;}
.x18_c01249{left:515.499585px;}
.x25_c01249{left:516.519285px;}
.x31_c01249{left:521.974185px;}
.x21_c01249{left:525.963885px;}
.x26_c01249{left:527.047935px;}
.x10_c01249{left:537.502335px;}
.x33_c01249{left:539.249685px;}
.x5a_c01249{left:547.021185px;}
.xb_c01249{left:548.941785px;}
.x27_c01249{left:550.129785px;}
.x4b_c01249{left:558.935835px;}
.x28_c01249{left:561.584085px;}
.x36_c01249{left:569.464485px;}
.x29_c01249{left:571.627635px;}
.x30_c01249{left:572.686935px;}
.x5b_c01249{left:580.799985px;}
.x2f_c01249{left:582.982935px;}
.xc_c01249{left:593.174985px;}
.x2a_c01249{left:594.570885px;}
.x4c_c01249{left:603.827385px;}
.x2b_c01249{left:605.465835px;}
.x7_c01249{left:614.925285px;}
.x11_c01249{left:616.494435px;}
.x37_c01249{left:625.889535px;}
.x2c_c01249{left:627.196335px;}
.x2e_c01249{left:636.665685px;}
.x35_c01249{left:638.066535px;}
.x5c_c01249{left:646.808235px;}
.x8_c01249{left:648.763485px;}
.x9_c01249{left:658.010085px;}
.xd_c01249{left:660.128685px;}
.x2_c01249{left:691.308735px;}
.xe_c01249{left:692.377935px;}
.x3_c01249{left:703.683735px;}
.x50_c01249{left:713.747085px;}
.x5_c01249{left:715.598385px;}
.x48_c01249{left:717.568485px;}
.x4_c01249{left:736.977435px;}
@media print{
.v0_c01249{vertical-align:0.000000pt;}
.ls8_c01249{letter-spacing:-2.500960pt;}
.ls10_c01249{letter-spacing:-2.365446pt;}
.ls3_c01249{letter-spacing:-2.359280pt;}
.ls1a_c01249{letter-spacing:-2.168326pt;}
.ls1d_c01249{letter-spacing:-2.057933pt;}
.ls9_c01249{letter-spacing:-1.133440pt;}
.ls21_c01249{letter-spacing:-0.997926pt;}
.lsc_c01249{letter-spacing:-0.874368pt;}
.ls12_c01249{letter-spacing:-0.708400pt;}
.ls11_c01249{letter-spacing:-0.640640pt;}
.ls2_c01249{letter-spacing:0.000000pt;}
.lsd_c01249{letter-spacing:0.422409pt;}
.lse_c01249{letter-spacing:0.536800pt;}
.ls1c_c01249{letter-spacing:1.407683pt;}
.ls22_c01249{letter-spacing:1.425609pt;}
.ls13_c01249{letter-spacing:1.566400pt;}
.lsa_c01249{letter-spacing:1.619200pt;}
.ls23_c01249{letter-spacing:2.182400pt;}
.ls14_c01249{letter-spacing:2.315174pt;}
.ls19_c01249{letter-spacing:3.097609pt;}
.ls5_c01249{letter-spacing:3.136918pt;}
.ls16_c01249{letter-spacing:3.168000pt;}
.ls7_c01249{letter-spacing:3.186938pt;}
.ls20_c01249{letter-spacing:3.238400pt;}
.ls1_c01249{letter-spacing:3.344141pt;}
.lsf_c01249{letter-spacing:3.379209pt;}
.ls1b_c01249{letter-spacing:3.396800pt;}
.ls17_c01249{letter-spacing:3.449609pt;}
.ls4_c01249{letter-spacing:3.572800pt;}
.ls0_c01249{letter-spacing:4.359520pt;}
.lsb_c01249{letter-spacing:5.068976pt;}
.ls1f_c01249{letter-spacing:45.619376pt;}
.ls18_c01249{letter-spacing:46.886576pt;}
.ls1e_c01249{letter-spacing:50.688176pt;}
.ls6_c01249{letter-spacing:51.955376pt;}
.ls15_c01249{letter-spacing:58.291376pt;}
.ws1_c01249{word-spacing:-102.009908pt;}
.ws2_c01249{word-spacing:-21.208141pt;}
.ws0_c01249{word-spacing:-21.000918pt;}
.ws3_c01249{word-spacing:-17.864000pt;}
.ws4_c01249{word-spacing:-1.878272pt;}
.ws5_c01249{word-spacing:0.000000pt;}
._7_c01249{margin-left:-6.144160pt;}
._13_c01249{margin-left:-4.922192pt;}
._6_c01249{margin-left:-3.930080pt;}
._8_c01249{margin-left:-2.930400pt;}
._1_c01249{margin-left:-2.001120pt;}
._15_c01249{margin-left:-1.000384pt;}
._3_c01249{width:2.143680pt;}
._0_c01249{width:4.157120pt;}
._d_c01249{width:5.429248pt;}
._b_c01249{width:6.336000pt;}
._9_c01249{width:7.603200pt;}
._a_c01249{width:8.870400pt;}
._c_c01249{width:10.137600pt;}
._14_c01249{width:12.004608pt;}
._e_c01249{width:13.228512pt;}
._f_c01249{width:16.792160pt;}
._11_c01249{width:21.784937pt;}
._10_c01249{width:23.122880pt;}
._2_c01249{width:24.939200pt;}
._5_c01249{width:29.671840pt;}
._4_c01249{width:34.731840pt;}
._16_c01249{width:49.121600pt;}
._12_c01249{width:56.068522pt;}
.fs6_c01249{font-size:5.068976pt;}
.fs7_c01249{font-size:8.448176pt;}
.fs8_c01249{font-size:10.736000pt;}
.fs1_c01249{font-size:12.672000pt;}
.fsa_c01249{font-size:18.304000pt;}
.fs16_c01249{font-size:19.712000pt;}
.fsd_c01249{font-size:20.064000pt;}
.fsb_c01249{font-size:20.240000pt;}
.fs19_c01249{font-size:28.512176pt;}
.fs15_c01249{font-size:30.272176pt;}
.fsc_c01249{font-size:31.328000pt;}
.fs5_c01249{font-size:32.384000pt;}
.fs1b_c01249{font-size:43.648000pt;}
.fs17_c01249{font-size:45.619376pt;}
.fs11_c01249{font-size:46.886576pt;}
.fs14_c01249{font-size:50.688176pt;}
.fs4_c01249{font-size:51.955376pt;}
.fse_c01249{font-size:58.291376pt;}
.fs12_c01249{font-size:61.952176pt;}
.fsf_c01249{font-size:63.360000pt;}
.fs18_c01249{font-size:64.768000pt;}
.fs1a_c01249{font-size:67.056000pt;}
.fs0_c01249{font-size:67.408000pt;}
.fs9_c01249{font-size:67.584176pt;}
.fs13_c01249{font-size:67.936000pt;}
.fs10_c01249{font-size:68.992176pt;}
.fs2_c01249{font-size:71.456000pt;}
.fs3_c01249{font-size:92.928000pt;}
.y0_c01249{bottom:0.000000pt;}
.y1_c01249{bottom:68.000000pt;}
.y20_c01249{bottom:154.203320pt;}
.y1f_c01249{bottom:182.394120pt;}
.y1e_c01249{bottom:210.593720pt;}
.y1d_c01249{bottom:266.662920pt;}
.y1c_c01249{bottom:295.496120pt;}
.y1b_c01249{bottom:323.370120pt;}
.y1a_c01249{bottom:343.016120pt;}
.y18_c01249{bottom:351.882120pt;}
.y17_c01249{bottom:351.887928pt;}
.y19_c01249{bottom:357.272120pt;}
.y16_c01249{bottom:380.077320pt;}
.y15_c01249{bottom:408.589320pt;}
.y14_c01249{bottom:436.150920pt;}
.y13_c01249{bottom:464.667320pt;}
.y12_c01249{bottom:492.545720pt;}
.y11_c01249{bottom:521.053320pt;}
.y10_c01249{bottom:549.565320pt;}
.yf_c01249{bottom:566.038920pt;}
.ye_c01249{bottom:577.760520pt;}
.yd_c01249{bottom:605.960120pt;}
.yc_c01249{bottom:634.150920pt;}
.yb_c01249{bottom:662.667320pt;}
.ya_c01249{bottom:690.228920pt;}
.y9_c01249{bottom:714.934920pt;}
.y8_c01249{bottom:718.424120pt;}
.y7_c01249{bottom:746.936120pt;}
.y6_c01249{bottom:775.131320pt;}
.y5_c01249{bottom:793.822520pt;}
.y4_c01249{bottom:803.005320pt;}
.y3_c01249{bottom:828.036920pt;}
.y2_c01249{bottom:831.200520pt;}
.h8_c01249{height:3.375938pt;}
.h9_c01249{height:8.291423pt;}
.ha_c01249{height:10.531555pt;}
.h3_c01249{height:12.436875pt;}
.hc_c01249{height:19.090500pt;}
.h18_c01249{height:20.559000pt;}
.hf_c01249{height:20.926125pt;}
.hd_c01249{height:21.109688pt;}
.h1c_c01249{height:27.983141pt;}
.h19_c01249{height:30.382504pt;}
.h13_c01249{height:31.226460pt;}
.he_c01249{height:31.572750pt;}
.h17_c01249{height:31.572934pt;}
.h7_c01249{height:31.783125pt;}
.h16_c01249{height:33.758325pt;}
.h6_c01249{height:34.602280pt;}
.h10_c01249{height:38.822056pt;}
.h1e_c01249{height:42.838125pt;}
.h14_c01249{height:60.802673pt;}
.h1b_c01249{height:63.566250pt;}
.h11_c01249{height:63.855000pt;}
.h1a_c01249{height:65.274000pt;}
.h2_c01249{height:66.157266pt;}
.h15_c01249{height:66.675469pt;}
.hb_c01249{height:68.112177pt;}
.h12_c01249{height:69.531177pt;}
.h1d_c01249{height:69.937313pt;}
.h4_c01249{height:70.130156pt;}
.h5_c01249{height:96.921000pt;}
.h1_c01249{height:986.666667pt;}
.h0_c01249{height:1122.666667pt;}
.w1_c01249{width:689.333333pt;}
.w0_c01249{width:793.333333pt;}
.x0_c01249{left:0.000000pt;}
.x1_c01249{left:52.000000pt;}
.x53_c01249{left:81.586253pt;}
.x54_c01249{left:131.385453pt;}
.x55_c01249{left:161.292253pt;}
.x39_c01249{left:180.656653pt;}
.x12_c01249{left:181.835853pt;}
.x3a_c01249{left:190.732653pt;}
.x4d_c01249{left:200.659053pt;}
.x49_c01249{left:202.665453pt;}
.x56_c01249{left:210.488653pt;}
.x3b_c01249{left:212.037453pt;}
.x3c_c01249{left:220.762653pt;}
.x4e_c01249{left:230.411853pt;}
.x13_c01249{left:240.122653pt;}
.xf_c01249{left:241.231453pt;}
.x45_c01249{left:243.083853pt;}
.x40_c01249{left:250.387853pt;}
.x19_c01249{left:258.338653pt;}
.x51_c01249{left:261.159053pt;}
.x14_c01249{left:271.230653pt;}
.x41_c01249{left:280.351853pt;}
.x42_c01249{left:291.167053pt;}
.x58_c01249{left:299.821853pt;}
.x1a_c01249{left:306.848653pt;}
.x4a_c01249{left:310.615053pt;}
.x3d_c01249{left:312.106653pt;}
.x6_c01249{left:319.789053pt;}
.x3e_c01249{left:329.601053pt;}
.x52_c01249{left:340.033453pt;}
.x43_c01249{left:349.528653pt;}
.x1b_c01249{left:353.224653pt;}
.x1c_c01249{left:355.266253pt;}
.x15_c01249{left:358.891853pt;}
.x46_c01249{left:360.189853pt;}
.x1d_c01249{left:365.527053pt;}
.x22_c01249{left:370.617853pt;}
.x57_c01249{left:379.884253pt;}
.x59_c01249{left:380.927053pt;}
.x47_c01249{left:388.842653pt;}
.x1e_c01249{left:392.666253pt;}
.x44_c01249{left:398.659053pt;}
.x3f_c01249{left:399.561053pt;}
.x16_c01249{left:409.214653pt;}
.x38_c01249{left:417.491053pt;}
.x2d_c01249{left:418.635053pt;}
.x4f_c01249{left:427.316253pt;}
.x17_c01249{left:428.447053pt;}
.x23_c01249{left:429.665853pt;}
.x1f_c01249{left:434.615853pt;}
.xa_c01249{left:438.465853pt;}
.x24_c01249{left:439.689053pt;}
.x20_c01249{left:445.070253pt;}
.x32_c01249{left:448.264653pt;}
.x34_c01249{left:449.320653pt;}
.x18_c01249{left:458.221853pt;}
.x25_c01249{left:459.128253pt;}
.x31_c01249{left:463.977053pt;}
.x21_c01249{left:467.523453pt;}
.x26_c01249{left:468.487053pt;}
.x10_c01249{left:477.779853pt;}
.x33_c01249{left:479.333053pt;}
.x5a_c01249{left:486.241053pt;}
.xb_c01249{left:487.948253pt;}
.x27_c01249{left:489.004253pt;}
.x4b_c01249{left:496.831853pt;}
.x28_c01249{left:499.185853pt;}
.x36_c01249{left:506.190653pt;}
.x29_c01249{left:508.113453pt;}
.x30_c01249{left:509.055053pt;}
.x5b_c01249{left:516.266653pt;}
.x2f_c01249{left:518.207053pt;}
.xc_c01249{left:527.266653pt;}
.x2a_c01249{left:528.507453pt;}
.x4c_c01249{left:536.735453pt;}
.x2b_c01249{left:538.191853pt;}
.x7_c01249{left:546.600253pt;}
.x11_c01249{left:547.995053pt;}
.x37_c01249{left:556.346253pt;}
.x2c_c01249{left:557.507853pt;}
.x2e_c01249{left:565.925053pt;}
.x35_c01249{left:567.170253pt;}
.x5c_c01249{left:574.940653pt;}
.x8_c01249{left:576.678653pt;}
.x9_c01249{left:584.897853pt;}
.xd_c01249{left:586.781053pt;}
.x2_c01249{left:614.496653pt;}
.xe_c01249{left:615.447053pt;}
.x3_c01249{left:625.496653pt;}
.x50_c01249{left:634.441853pt;}
.x5_c01249{left:636.087453pt;}
.x48_c01249{left:637.838653pt;}
.x4_c01249{left:655.091053pt;}
}





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

.ir_c01250:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01250{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01250;src:url('chunks/assets/font_904da537fa956a3679ff4344.woff2')format("woff");}.ff1_c01250{font-family:ff1_c01250;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01250;src:url('chunks/assets/font_c7f13c626c1da8491391fa8b.woff2')format("woff");}.ff2_c01250{font-family:ff2_c01250;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01250;src:url('chunks/assets/font_afafe179015becdb458b7389.woff2')format("woff");}.ff3_c01250{font-family:ff3_c01250;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01250;src:url('chunks/assets/font_64934ced0e7587540f40a6d1.woff2')format("woff");}.ff4_c01250{font-family:ff4_c01250;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01250;src:url('chunks/assets/font_d3d206b46b93718e7182aafd.woff2')format("woff");}.ff5_c01250{font-family:ff5_c01250;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01250;src:url('chunks/assets/font_376c0583463eea1805039e54.woff2')format("woff");}.ff6_c01250{font-family:ff6_c01250;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01250;src:url('chunks/assets/font_51faf00350ae34ce76040d15.woff2')format("woff");}.ff7_c01250{font-family:ff7_c01250;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m80_c01250{transform:matrix(0.068751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.068751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.068751,0.000000,0.000000,0.250000,0,0);}
.m77_c01250{transform:matrix(0.098763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098763,0.000000,0.000000,0.250000,0,0);}
.m69_c01250{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);}
.m6d_c01250{transform:matrix(0.110294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110294,0.000000,0.000000,0.250000,0,0);}
.m5e_c01250{transform:matrix(0.127207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127207,0.000000,0.000000,0.250000,0,0);}
.m58_c01250{transform:matrix(0.127315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127315,0.000000,0.000000,0.250000,0,0);}
.m25_c01250{transform:matrix(0.133039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133039,0.000000,0.000000,0.250000,0,0);}
.m65_c01250{transform:matrix(0.135283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135283,0.000000,0.000000,0.250000,0,0);}
.m7c_c01250{transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);}
.m6b_c01250{transform:matrix(0.139705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139705,0.000000,0.000000,0.250000,0,0);}
.m63_c01250{transform:matrix(0.139744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139744,0.000000,0.000000,0.250000,0,0);}
.m3b_c01250{transform:matrix(0.142427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142427,0.000000,0.000000,0.250000,0,0);}
.m7b_c01250{transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);}
.m64_c01250{transform:matrix(0.146557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146557,0.000000,0.000000,0.250000,0,0);}
.m87_c01250{transform:matrix(0.151777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151777,0.000000,0.000000,0.250000,0,0);}
.m6c_c01250{transform:matrix(0.156863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156863,0.000000,0.000000,0.250000,0,0);}
.m7e_c01250{transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);}
.m8a_c01250{transform:matrix(0.173396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173396,0.000000,0.000000,0.250000,0,0);}
.m7f_c01250{transform:matrix(0.174999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174999,0.000000,0.000000,0.250000,0,0);}
.ma6_c01250{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m20_c01250{transform:matrix(0.187827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187827,0.000000,0.000000,0.250000,0,0);}
.m4a_c01250{transform:matrix(0.188575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188575,0.000000,0.000000,0.250000,0,0);}
.ma4_c01250{transform:matrix(0.188749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188749,0.000000,0.000000,0.250000,0,0);}
.m7d_c01250{transform:matrix(0.189286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189286,0.000000,0.000000,0.250000,0,0);}
.m68_c01250{transform:matrix(0.189560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189560,0.000000,0.000000,0.250000,0,0);}
.m27_c01250{transform:matrix(0.189575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189575,0.000000,0.000000,0.250000,0,0);}
.m47_c01250{transform:matrix(0.191268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191268,0.000000,0.000000,0.250000,0,0);}
.m17_c01250{transform:matrix(0.191752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191752,0.000000,0.000000,0.250000,0,0);}
.m49_c01250{transform:matrix(0.195946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195946,0.000000,0.000000,0.250000,0,0);}
.m83_c01250{transform:matrix(0.203547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203547,0.000000,0.000000,0.250000,0,0);}
.m32_c01250{transform:matrix(0.204121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204121,0.000000,0.000000,0.250000,0,0);}
.m89_c01250{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m2a_c01250{transform:matrix(0.218588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218588,0.000000,0.000000,0.250000,0,0);}
.m8e_c01250{transform:matrix(0.230637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230637,0.000000,0.000000,0.250000,0,0);}
.m2c_c01250{transform:matrix(0.236324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236324,0.000000,0.000000,0.250000,0,0);}
.m55_c01250{transform:matrix(0.243079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243079,0.000000,0.000000,0.250000,0,0);}
.m1c_c01250{transform:matrix(0.243581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243581,0.000000,0.000000,0.250000,0,0);}
.m3a_c01250{transform:matrix(0.246447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246447,0.000000,0.000000,0.250000,0,0);}
.m23_c01250{transform:matrix(0.247631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247631,0.000000,0.000000,0.250000,0,0);}
.ma1_c01250{transform:matrix(0.249312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249312,0.000000,0.000000,0.250000,0,0);}
.m0_c01250{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m93_c01250{transform:matrix(0.250845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250845,0.000000,0.000000,0.250000,0,0);}
.m6a_c01250{transform:matrix(0.253611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253611,0.000000,0.000000,0.250000,0,0);}
.m7a_c01250{transform:matrix(0.256391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256391,0.000000,0.000000,0.250000,0,0);}
.m36_c01250{transform:matrix(0.257101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257101,0.000000,0.000000,0.250000,0,0);}
.m44_c01250{transform:matrix(0.257106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257106,0.000000,0.000000,0.250000,0,0);}
.m61_c01250{transform:matrix(0.258061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258061,0.000000,0.000000,0.250000,0,0);}
.m86_c01250{transform:matrix(0.262340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262340,0.000000,0.000000,0.250000,0,0);}
.m85_c01250{transform:matrix(0.267628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267628,0.000000,0.000000,0.250000,0,0);}
.m1f_c01250{transform:matrix(0.267675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267675,0.000000,0.000000,0.250000,0,0);}
.m73_c01250{transform:matrix(0.268555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268555,0.000000,0.000000,0.250000,0,0);}
.m78_c01250{transform:matrix(0.268984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268984,0.000000,0.000000,0.250000,0,0);}
.m72_c01250{transform:matrix(0.270241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270241,0.000000,0.000000,0.250000,0,0);}
.m67_c01250{transform:matrix(0.270740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270740,0.000000,0.000000,0.250000,0,0);}
.m2d_c01250{transform:matrix(0.271982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271982,0.000000,0.000000,0.250000,0,0);}
.m31_c01250{transform:matrix(0.272557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272557,0.000000,0.000000,0.250000,0,0);}
.m3c_c01250{transform:matrix(0.273622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273622,0.000000,0.000000,0.250000,0,0);}
.m3f_c01250{transform:matrix(0.273851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273851,0.000000,0.000000,0.250000,0,0);}
.m92_c01250{transform:matrix(0.275643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275643,0.000000,0.000000,0.250000,0,0);}
.m13_c01250{transform:matrix(0.277795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277795,0.000000,0.000000,0.250000,0,0);}
.m12_c01250{transform:matrix(0.279695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279695,0.000000,0.000000,0.250000,0,0);}
.maa_c01250{transform:matrix(0.280075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280075,0.000000,0.000000,0.250000,0,0);}
.m62_c01250{transform:matrix(0.280468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280468,0.000000,0.000000,0.250000,0,0);}
.m8_c01250{transform:matrix(0.280655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280655,0.000000,0.000000,0.250000,0,0);}
.m2b_c01250{transform:matrix(0.282640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282640,0.000000,0.000000,0.250000,0,0);}
.m98_c01250{transform:matrix(0.282980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282980,0.000000,0.000000,0.250000,0,0);}
.m51_c01250{transform:matrix(0.283188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283188,0.000000,0.000000,0.250000,0,0);}
.m53_c01250{transform:matrix(0.283346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283346,0.000000,0.000000,0.250000,0,0);}
.m34_c01250{transform:matrix(0.283668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283668,0.000000,0.000000,0.250000,0,0);}
.m5_c01250{transform:matrix(0.283756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283756,0.000000,0.000000,0.250000,0,0);}
.ma5_c01250{transform:matrix(0.284014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284014,0.000000,0.000000,0.250000,0,0);}
.m2_c01250{transform:matrix(0.284836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284836,0.000000,0.000000,0.250000,0,0);}
.m66_c01250{transform:matrix(0.284998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284998,0.000000,0.000000,0.250000,0,0);}
.m81_c01250{transform:matrix(0.285667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285667,0.000000,0.000000,0.250000,0,0);}
.m5f_c01250{transform:matrix(0.287314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287314,0.000000,0.000000,0.250000,0,0);}
.m4d_c01250{transform:matrix(0.287751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287751,0.000000,0.000000,0.250000,0,0);}
.m74_c01250{transform:matrix(0.288316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288316,0.000000,0.000000,0.250000,0,0);}
.m79_c01250{transform:matrix(0.289736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289736,0.000000,0.000000,0.250000,0,0);}
.m33_c01250{transform:matrix(0.289965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289965,0.000000,0.000000,0.250000,0,0);}
.m8f_c01250{transform:matrix(0.291018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291018,0.000000,0.000000,0.250000,0,0);}
.m19_c01250{transform:matrix(0.291462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291462,0.000000,0.000000,0.250000,0,0);}
.m90_c01250{transform:matrix(0.293414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293414,0.000000,0.000000,0.250000,0,0);}
.m52_c01250{transform:matrix(0.294578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294578,0.000000,0.000000,0.250000,0,0);}
.m4f_c01250{transform:matrix(0.294986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294986,0.000000,0.000000,0.250000,0,0);}
.ma9_c01250{transform:matrix(0.295149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295149,0.000000,0.000000,0.250000,0,0);}
.m59_c01250{transform:matrix(0.296125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296125,0.000000,0.000000,0.250000,0,0);}
.m9d_c01250{transform:matrix(0.297342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297342,0.000000,0.000000,0.250000,0,0);}
.m5b_c01250{transform:matrix(0.297418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297418,0.000000,0.000000,0.250000,0,0);}
.m41_c01250{transform:matrix(0.298408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298408,0.000000,0.000000,0.250000,0,0);}
.m6e_c01250{transform:matrix(0.301014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301014,0.000000,0.000000,0.250000,0,0);}
.m6f_c01250{transform:matrix(0.303274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303274,0.000000,0.000000,0.250000,0,0);}
.m21_c01250{transform:matrix(0.304120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304120,0.000000,0.000000,0.250000,0,0);}
.ma8_c01250{transform:matrix(0.305826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305826,0.000000,0.000000,0.250000,0,0);}
.m1_c01250{transform:matrix(0.305977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305977,0.000000,0.000000,0.250000,0,0);}
.ma_c01250{transform:matrix(0.305995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305995,0.000000,0.000000,0.250000,0,0);}
.m1a_c01250{transform:matrix(0.306192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306192,0.000000,0.000000,0.250000,0,0);}
.me_c01250{transform:matrix(0.306490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306490,0.000000,0.000000,0.250000,0,0);}
.m95_c01250{transform:matrix(0.307553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307553,0.000000,0.000000,0.250000,0,0);}
.ma7_c01250{transform:matrix(0.307879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307879,0.000000,0.000000,0.250000,0,0);}
.m76_c01250{transform:matrix(0.308179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308179,0.000000,0.000000,0.250000,0,0);}
.m3_c01250{transform:matrix(0.308733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308733,0.000000,0.000000,0.250000,0,0);}
.mf_c01250{transform:matrix(0.308810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308810,0.000000,0.000000,0.250000,0,0);}
.md_c01250{transform:matrix(0.309554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309554,0.000000,0.000000,0.250000,0,0);}
.m5a_c01250{transform:matrix(0.313136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313136,0.000000,0.000000,0.250000,0,0);}
.m60_c01250{transform:matrix(0.313312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313312,0.000000,0.000000,0.250000,0,0);}
.m5c_c01250{transform:matrix(0.313458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313458,0.000000,0.000000,0.250000,0,0);}
.m71_c01250{transform:matrix(0.314840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314840,0.000000,0.000000,0.250000,0,0);}
.m7_c01250{transform:matrix(0.315724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315724,0.000000,0.000000,0.250000,0,0);}
.m10_c01250{transform:matrix(0.316158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316158,0.000000,0.000000,0.250000,0,0);}
.m82_c01250{transform:matrix(0.317837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317837,0.000000,0.000000,0.250000,0,0);}
.m48_c01250{transform:matrix(0.318227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318227,0.000000,0.000000,0.250000,0,0);}
.m88_c01250{transform:matrix(0.319156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319156,0.000000,0.000000,0.250000,0,0);}
.ma2_c01250{transform:matrix(0.322304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322304,0.000000,0.000000,0.250000,0,0);}
.m1d_c01250{transform:matrix(0.322353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322353,0.000000,0.000000,0.250000,0,0);}
.m18_c01250{transform:matrix(0.323949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323949,0.000000,0.000000,0.250000,0,0);}
.m96_c01250{transform:matrix(0.324279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324279,0.000000,0.000000,0.250000,0,0);}
.m97_c01250{transform:matrix(0.324585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324585,0.000000,0.000000,0.250000,0,0);}
.ma3_c01250{transform:matrix(0.325521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325521,0.000000,0.000000,0.250000,0,0);}
.m1e_c01250{transform:matrix(0.325545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325545,0.000000,0.000000,0.250000,0,0);}
.m9f_c01250{transform:matrix(0.325549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325549,0.000000,0.000000,0.250000,0,0);}
.m56_c01250{transform:matrix(0.326645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326645,0.000000,0.000000,0.250000,0,0);}
.mc_c01250{transform:matrix(0.327140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327140,0.000000,0.000000,0.250000,0,0);}
.m9e_c01250{transform:matrix(0.327263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327263,0.000000,0.000000,0.250000,0,0);}
.m45_c01250{transform:matrix(0.329099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329099,0.000000,0.000000,0.250000,0,0);}
.m29_c01250{transform:matrix(0.330558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330558,0.000000,0.000000,0.250000,0,0);}
.m9_c01250{transform:matrix(0.332130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332130,0.000000,0.000000,0.250000,0,0);}
.m4b_c01250{transform:matrix(0.332568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332568,0.000000,0.000000,0.250000,0,0);}
.m8b_c01250{transform:matrix(0.334433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334433,0.000000,0.000000,0.250000,0,0);}
.m5d_c01250{transform:matrix(0.334897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334897,0.000000,0.000000,0.250000,0,0);}
.m54_c01250{transform:matrix(0.337670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337670,0.000000,0.000000,0.250000,0,0);}
.mb_c01250{transform:matrix(0.340051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340051,0.000000,0.000000,0.250000,0,0);}
.m35_c01250{transform:matrix(0.340208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340208,0.000000,0.000000,0.250000,0,0);}
.m94_c01250{transform:matrix(0.341119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341119,0.000000,0.000000,0.250000,0,0);}
.m40_c01250{transform:matrix(0.342271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342271,0.000000,0.000000,0.250000,0,0);}
.m2e_c01250{transform:matrix(0.348089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348089,0.000000,0.000000,0.250000,0,0);}
.m4_c01250{transform:matrix(0.351214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351214,0.000000,0.000000,0.250000,0,0);}
.m22_c01250{transform:matrix(0.351862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351862,0.000000,0.000000,0.250000,0,0);}
.m57_c01250{transform:matrix(0.355453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355453,0.000000,0.000000,0.250000,0,0);}
.m3d_c01250{transform:matrix(0.355784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355784,0.000000,0.000000,0.250000,0,0);}
.m4e_c01250{transform:matrix(0.356819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356819,0.000000,0.000000,0.250000,0,0);}
.m2f_c01250{transform:matrix(0.359065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359065,0.000000,0.000000,0.250000,0,0);}
.m42_c01250{transform:matrix(0.363738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363738,0.000000,0.000000,0.250000,0,0);}
.m50_c01250{transform:matrix(0.371230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371230,0.000000,0.000000,0.250000,0,0);}
.ma0_c01250{transform:matrix(0.375823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375823,0.000000,0.000000,0.250000,0,0);}
.m46_c01250{transform:matrix(0.377704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377704,0.000000,0.000000,0.250000,0,0);}
.m3e_c01250{transform:matrix(0.378282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378282,0.000000,0.000000,0.250000,0,0);}
.m84_c01250{transform:matrix(0.380134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380134,0.000000,0.000000,0.250000,0,0);}
.m11_c01250{transform:matrix(0.384952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384952,0.000000,0.000000,0.250000,0,0);}
.m8c_c01250{transform:matrix(0.385254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385254,0.000000,0.000000,0.250000,0,0);}
.m37_c01250{transform:matrix(0.385268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385268,0.000000,0.000000,0.250000,0,0);}
.m75_c01250{transform:matrix(0.385567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385567,0.000000,0.000000,0.250000,0,0);}
.m70_c01250{transform:matrix(0.391362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391362,0.000000,0.000000,0.250000,0,0);}
.m91_c01250{transform:matrix(0.392037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392037,0.000000,0.000000,0.250000,0,0);}
.m1b_c01250{transform:matrix(0.395709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395709,0.000000,0.000000,0.250000,0,0);}
.m43_c01250{transform:matrix(0.405105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405105,0.000000,0.000000,0.250000,0,0);}
.m6_c01250{transform:matrix(0.411639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411639,0.000000,0.000000,0.250000,0,0);}
.m8d_c01250{transform:matrix(0.427043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427043,0.000000,0.000000,0.250000,0,0);}
.m4c_c01250{transform:matrix(0.430162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430162,0.000000,0.000000,0.250000,0,0);}
.m9a_c01250{transform:matrix(0.438524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438524,0.000000,0.000000,0.250000,0,0);}
.m39_c01250{transform:matrix(0.544317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544317,0.000000,0.000000,0.250000,0,0);}
.m99_c01250{transform:matrix(0.705632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.705632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.705632,0.000000,0.000000,0.250000,0,0);}
.m15_c01250{transform:matrix(0.840749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.840749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.840749,0.000000,0.000000,0.250000,0,0);}
.m16_c01250{transform:matrix(0.919724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.919724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.919724,0.000000,0.000000,0.250000,0,0);}
.m38_c01250{transform:matrix(1.016368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.016368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.016368,0.000000,0.000000,0.250000,0,0);}
.m26_c01250{transform:matrix(1.060192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.060192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.060192,0.000000,0.000000,0.250000,0,0);}
.m30_c01250{transform:matrix(1.130896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.130896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.130896,0.000000,0.000000,0.250000,0,0);}
.m28_c01250{transform:matrix(1.135013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.135013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.135013,0.000000,0.000000,0.250000,0,0);}
.m14_c01250{transform:matrix(1.144526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.144526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.144526,0.000000,0.000000,0.250000,0,0);}
.m24_c01250{transform:matrix(1.329326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.329326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.329326,0.000000,0.000000,0.250000,0,0);}
.m9c_c01250{transform:matrix(1.437287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.437287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.437287,0.000000,0.000000,0.250000,0,0);}
.m9b_c01250{transform:matrix(1.637723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.637723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.637723,0.000000,0.000000,0.250000,0,0);}
.v3_c01250{vertical-align:-5.702400px;}
.v0_c01250{vertical-align:0.000000px;}
.v2_c01250{vertical-align:2.831400px;}
.v1_c01250{vertical-align:14.275800px;}
.v4_c01250{vertical-align:21.384000px;}
.lse_c01250{letter-spacing:-3.076927px;}
.ls3a_c01250{letter-spacing:-2.778930px;}
.ls2e_c01250{letter-spacing:-2.619540px;}
.ls1c_c01250{letter-spacing:-2.591827px;}
.ls20_c01250{letter-spacing:-2.529450px;}
.ls26_c01250{letter-spacing:-2.467080px;}
.ls37_c01250{letter-spacing:-2.425500px;}
.ls1a_c01250{letter-spacing:-2.328480px;}
.ls11_c01250{letter-spacing:-2.148300px;}
.lsc_c01250{letter-spacing:-1.976297px;}
.ls24_c01250{letter-spacing:-1.835658px;}
.ls23_c01250{letter-spacing:-1.819782px;}
.ls35_c01250{letter-spacing:-1.748934px;}
.ls3c_c01250{letter-spacing:-1.734480px;}
.ls2a_c01250{letter-spacing:-1.538467px;}
.ls2f_c01250{letter-spacing:-1.392930px;}
.lsb_c01250{letter-spacing:-1.122667px;}
.ls13_c01250{letter-spacing:-0.686070px;}
.ls17_c01250{letter-spacing:-0.672210px;}
.ls15_c01250{letter-spacing:-0.658350px;}
.ls6_c01250{letter-spacing:-0.563706px;}
.ls3b_c01250{letter-spacing:-0.550598px;}
.ls5_c01250{letter-spacing:0.000000px;}
.lsd_c01250{letter-spacing:0.332442px;}
.ls31_c01250{letter-spacing:0.490092px;}
.ls3e_c01250{letter-spacing:0.547114px;}
.ls0_c01250{letter-spacing:0.738995px;}
.ls22_c01250{letter-spacing:0.772210px;}
.ls40_c01250{letter-spacing:0.821700px;}
.ls9_c01250{letter-spacing:0.871200px;}
.ls34_c01250{letter-spacing:0.910602px;}
.ls16_c01250{letter-spacing:0.940500px;}
.ls18_c01250{letter-spacing:0.960300px;}
.ls14_c01250{letter-spacing:0.980100px;}
.ls41_c01250{letter-spacing:0.999900px;}
.ls3f_c01250{letter-spacing:1.029600px;}
.ls1e_c01250{letter-spacing:1.455300px;}
.ls1f_c01250{letter-spacing:1.524897px;}
.lsa_c01250{letter-spacing:1.603810px;}
.ls39_c01250{letter-spacing:1.640529px;}
.ls32_c01250{letter-spacing:1.801810px;}
.ls42_c01250{letter-spacing:2.369234px;}
.ls4_c01250{letter-spacing:2.522223px;}
.ls38_c01250{letter-spacing:2.593810px;}
.ls10_c01250{letter-spacing:2.596374px;}
.ls21_c01250{letter-spacing:3.009600px;}
.ls12_c01250{letter-spacing:3.069000px;}
.ls1b_c01250{letter-spacing:3.326400px;}
.ls25_c01250{letter-spacing:3.385729px;}
.ls27_c01250{letter-spacing:3.524400px;}
.lsf_c01250{letter-spacing:3.583810px;}
.ls7_c01250{letter-spacing:3.613500px;}
.ls3d_c01250{letter-spacing:3.643200px;}
.ls1d_c01250{letter-spacing:3.702610px;}
.ls2c_c01250{letter-spacing:3.742200px;}
.ls2b_c01250{letter-spacing:3.801610px;}
.ls8_c01250{letter-spacing:3.880810px;}
.ls43_c01250{letter-spacing:3.940200px;}
.ls1_c01250{letter-spacing:7.371540px;}
.ls19_c01250{letter-spacing:21.384000px;}
.ls2_c01250{letter-spacing:22.862609px;}
.ls30_c01250{letter-spacing:39.916800px;}
.ls33_c01250{letter-spacing:48.470598px;}
.ls29_c01250{letter-spacing:51.321798px;}
.ls28_c01250{letter-spacing:52.747398px;}
.ls2d_c01250{letter-spacing:55.598598px;}
.ls36_c01250{letter-spacing:57.024198px;}
.ls3_c01250{letter-spacing:63.354027px;}
.sc__c01250{text-shadow:none;}
.sc0_c01250{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01250{-webkit-text-stroke:0px transparent;}
.sc0_c01250{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01250{word-spacing:-19.660014px;}
.ws2_c01250{word-spacing:-18.494784px;}
.ws3_c01250{word-spacing:-18.067500px;}
.ws4_c01250{word-spacing:-16.318566px;}
.ws5_c01250{word-spacing:0.000000px;}
.ws0_c01250{word-spacing:23.348912px;}
._13_c01250{margin-left:-13.297680px;}
._c_c01250{margin-left:-10.190070px;}
._10_c01250{margin-left:-8.021970px;}
._1_c01250{margin-left:-6.229674px;}
._5_c01250{margin-left:-4.210668px;}
._18_c01250{margin-left:-2.170476px;}
._a_c01250{width:1.228590px;}
._19_c01250{width:2.844072px;}
._6_c01250{width:5.524200px;}
._11_c01250{width:6.793380px;}
._7_c01250{width:8.382528px;}
._f_c01250{width:9.828720px;}
._12_c01250{width:11.618640px;}
._e_c01250{width:14.887620px;}
._4_c01250{width:26.607240px;}
._2_c01250{width:30.175101px;}
._14_c01250{width:33.066000px;}
._16_c01250{width:38.965608px;}
._1b_c01250{width:44.134200px;}
._d_c01250{width:47.052720px;}
._b_c01250{width:55.286550px;}
._1a_c01250{width:65.765972px;}
._15_c01250{width:67.042800px;}
._3_c01250{width:70.379892px;}
._9_c01250{width:102.996773px;}
._17_c01250{width:156.399408px;}
._8_c01250{width:268.219784px;}
._0_c01250{width:2431.851840px;}
.fc0_c01250{color:transparent;}
.fs25_c01250{font-size:14.454198px;}
.fs17_c01250{font-size:15.444198px;}
.fs33_c01250{font-size:16.434000px;}
.fs7_c01250{font-size:17.226000px;}
.fs5_c01250{font-size:17.424000px;}
.fsf_c01250{font-size:18.810000px;}
.fs10_c01250{font-size:19.206000px;}
.fse_c01250{font-size:19.602000px;}
.fs34_c01250{font-size:19.998000px;}
.fs32_c01250{font-size:20.592000px;}
.fs11_c01250{font-size:21.384000px;}
.fs20_c01250{font-size:22.176000px;}
.fs0_c01250{font-size:27.720000px;}
.fs14_c01250{font-size:29.106000px;}
.fs2f_c01250{font-size:31.284000px;}
.fs6_c01250{font-size:32.076198px;}
.fs1f_c01250{font-size:32.472000px;}
.fs29_c01250{font-size:36.036198px;}
.fs9_c01250{font-size:38.808000px;}
.fs1e_c01250{font-size:39.600000px;}
.fs27_c01250{font-size:39.798000px;}
.fs28_c01250{font-size:39.916800px;}
.fs1d_c01250{font-size:43.956198px;}
.fs21_c01250{font-size:44.748000px;}
.fs2a_c01250{font-size:48.470598px;}
.fs1b_c01250{font-size:51.321798px;}
.fs2d_c01250{font-size:51.876198px;}
.fs1a_c01250{font-size:52.747398px;}
.fs16_c01250{font-size:54.846198px;}
.fs23_c01250{font-size:55.598598px;}
.fs2b_c01250{font-size:57.024198px;}
.fs26_c01250{font-size:59.796198px;}
.fs15_c01250{font-size:60.192000px;}
.fs2_c01250{font-size:60.984000px;}
.fsd_c01250{font-size:61.380000px;}
.fs31_c01250{font-size:62.172000px;}
.fs37_c01250{font-size:66.330000px;}
.fs12_c01250{font-size:66.528000px;}
.fs8_c01250{font-size:67.914000px;}
.fs24_c01250{font-size:68.112198px;}
.fs2c_c01250{font-size:69.300000px;}
.fs19_c01250{font-size:70.488000px;}
.fsc_c01250{font-size:71.676198px;}
.fs1_c01250{font-size:72.270000px;}
.fs30_c01250{font-size:72.864000px;}
.fs13_c01250{font-size:74.052198px;}
.fs22_c01250{font-size:74.844000px;}
.fs1c_c01250{font-size:76.032198px;}
.fs4_c01250{font-size:77.616198px;}
.fs18_c01250{font-size:78.012198px;}
.fs36_c01250{font-size:78.804000px;}
.fs2e_c01250{font-size:79.398000px;}
.fs35_c01250{font-size:80.586198px;}
.fsa_c01250{font-size:87.912198px;}
.fs3_c01250{font-size:104.544000px;}
.fsb_c01250{font-size:107.712198px;}
.y0_c01250{bottom:0.000000px;}
.y1_c01250{bottom:76.500000px;}
.y2b_c01250{bottom:195.570585px;}
.y2a_c01250{bottom:227.646585px;}
.y29_c01250{bottom:259.722585px;}
.y28_c01250{bottom:291.442185px;}
.y27_c01250{bottom:319.602735px;}
.y26_c01250{bottom:322.092585px;}
.y25_c01250{bottom:322.805385px;}
.y24_c01250{bottom:354.529935px;}
.y23_c01250{bottom:386.249535px;}
.y22_c01250{bottom:418.320585px;}
.y21_c01250{bottom:449.332335px;}
.y1f_c01250{bottom:450.045135px;}
.y20_c01250{bottom:455.391135px;}
.y1e_c01250{bottom:480.690585px;}
.y1d_c01250{bottom:512.771535px;}
.y1c_c01250{bottom:513.479385px;}
.y1b_c01250{bottom:538.432335px;}
.y1a_c01250{bottom:545.198985px;}
.y19_c01250{bottom:576.567135px;}
.y18_c01250{bottom:607.930335px;}
.y17_c01250{bottom:639.293535px;}
.y14_c01250{bottom:669.938985px;}
.ye_c01250{bottom:670.300335px;}
.y13_c01250{bottom:670.656735px;}
.y16_c01250{bottom:700.945785px;}
.yd_c01250{bottom:701.663535px;}
.y12_c01250{bottom:702.732735px;}
.y11_c01250{bottom:728.393535px;}
.y15_c01250{bottom:732.670335px;}
.yc_c01250{bottom:733.378185px;}
.y10_c01250{bottom:734.452335px;}
.yf_c01250{bottom:756.192735px;}
.yb_c01250{bottom:765.810585px;}
.ya_c01250{bottom:794.678985px;}
.y9_c01250{bottom:797.891535px;}
.y8_c01250{bottom:819.270585px;}
.y7_c01250{bottom:829.611135px;}
.y6_c01250{bottom:860.617935px;}
.y5_c01250{bottom:890.550585px;}
.y4_c01250{bottom:892.332585px;}
.y3_c01250{bottom:917.280585px;}
.y2_c01250{bottom:920.488185px;}
.h14_c01250{height:14.241744px;}
.h1a_c01250{height:16.107816px;}
.h34_c01250{height:17.140148px;}
.h8_c01250{height:18.172688px;}
.h10_c01250{height:19.228720px;}
.h11_c01250{height:19.238291px;}
.h12_c01250{height:19.618242px;}
.h13_c01250{height:20.031258px;}
.h35_c01250{height:20.154234px;}
.h33_c01250{height:20.209922px;}
.h29_c01250{height:26.584589px;}
.h17_c01250{height:28.565947px;}
.h5_c01250{height:28.911094px;}
.h30_c01250{height:30.703535px;}
.h9_c01250{height:31.481034px;}
.h2b_c01250{height:32.281418px;}
.h1f_c01250{height:34.180317px;}
.h1e_c01250{height:35.129767px;}
.h25_c01250{height:37.028666px;}
.h2a_c01250{height:37.584628px;}
.h2c_c01250{height:37.978116px;}
.h27_c01250{height:39.059561px;}
.hb_c01250{height:40.475531px;}
.h22_c01250{height:41.301563px;}
.h21_c01250{height:43.140604px;}
.h2e_c01250{height:50.913651px;}
.h19_c01250{height:53.828544px;}
.h18_c01250{height:62.778375px;}
.h3_c01250{height:63.604406px;}
.hf_c01250{height:64.017422px;}
.h32_c01250{height:64.843453px;}
.h28_c01250{height:66.848397px;}
.h2d_c01250{height:68.014160px;}
.h1d_c01250{height:69.180117px;}
.h15_c01250{height:69.386625px;}
.ha_c01250{height:69.485277px;}
.h1b_c01250{height:70.346269px;}
.h4_c01250{height:70.929053px;}
.h31_c01250{height:71.512031px;}
.h16_c01250{height:72.678183px;}
.h24_c01250{height:73.455293px;}
.h23_c01250{height:74.621444px;}
.he_c01250{height:74.756035px;}
.h7_c01250{height:76.176054px;}
.h1c_c01250{height:76.564706px;}
.h37_c01250{height:77.341816px;}
.h2f_c01250{height:77.924795px;}
.h20_c01250{height:79.299207px;}
.h36_c01250{height:81.215778px;}
.h26_c01250{height:83.749566px;}
.h2_c01250{height:85.204853px;}
.hc_c01250{height:86.281015px;}
.hd_c01250{height:105.713632px;}
.h6_c01250{height:109.036125px;}
.h1_c01250{height:1110.000000px;}
.h0_c01250{height:1263.000000px;}
.w1_c01250{width:775.500000px;}
.w0_c01250{width:892.500000px;}
.x0_c01250{left:0.000000px;}
.x1_c01250{left:58.500000px;}
.x2_c01250{left:80.780685px;}
.x40_c01250{left:139.057035px;}
.x41_c01250{left:149.511435px;}
.x55_c01250{left:150.580635px;}
.x4_c01250{left:151.649835px;}
.x5f_c01250{left:174.033735px;}
.x46_c01250{left:183.953535px;}
.x5_c01250{left:216.202785px;}
.x1b_c01250{left:217.217535px;}
.x56_c01250{left:219.380685px;}
.x57_c01250{left:222.207135px;}
.x51_c01250{left:229.156935px;}
.x52_c01250{left:240.314235px;}
.x64_c01250{left:248.362935px;}
.x6_c01250{left:250.278585px;}
.x63_c01250{left:259.322235px;}
.x60_c01250{left:260.822085px;}
.xe_c01250{left:262.549635px;}
.x50_c01250{left:273.236685px;}
.x58_c01250{left:277.597635px;}
.x47_c01250{left:281.859585px;}
.x67_c01250{left:283.126785px;}
.x59_c01250{left:284.141535px;}
.x61_c01250{left:285.176085px;}
.x38_c01250{left:293.907885px;}
.x4a_c01250{left:296.115585px;}
.x20_c01250{left:304.099935px;}
.xf_c01250{left:305.183985px;}
.x35_c01250{left:306.817485px;}
.x2d_c01250{left:311.604135px;}
.x68_c01250{left:315.034485px;}
.x5a_c01250{left:316.648185px;}
.x4b_c01250{left:319.370685px;}
.x2e_c01250{left:328.082685px;}
.x14_c01250{left:329.097435px;}
.x3b_c01250{left:338.848935px;}
.x7_c01250{left:340.066635px;}
.x39_c01250{left:343.556385px;}
.x62_c01250{left:345.848235px;}
.x5b_c01250{left:348.541035px;}
.x2b_c01250{left:349.897335px;}
.x1f_c01250{left:359.624085px;}
.x2f_c01250{left:361.544685px;}
.x42_c01250{left:372.444585px;}
.x48_c01250{left:373.474185px;}
.x43_c01250{left:383.587035px;}
.x15_c01250{left:384.883935px;}
.x36_c01250{left:389.828985px;}
.x30_c01250{left:393.091035px;}
.x21_c01250{left:394.100835px;}
.x16_c01250{left:396.120435px;}
.x3c_c01250{left:404.956185px;}
.x22_c01250{left:406.119435px;}
.x53_c01250{left:416.459985px;}
.x3a_c01250{left:417.826185px;}
.x1c_c01250{left:427.255935px;}
.x3d_c01250{left:429.186435px;}
.x29_c01250{left:431.765385px;}
.x31_c01250{left:438.324135px;}
.x17_c01250{left:440.764485px;}
.x2a_c01250{left:442.897935px;}
.x37_c01250{left:448.634985px;}
.x8_c01250{left:450.605085px;}
.x65_c01250{left:454.000785px;}
.x32_c01250{left:460.950585px;}
.x23_c01250{left:462.366285px;}
.x6b_c01250{left:471.984135px;}
.x5c_c01250{left:473.647335px;}
.x10_c01250{left:481.374285px;}
.x9_c01250{left:482.646435px;}
.x3e_c01250{left:483.715635px;}
.x33_c01250{left:493.199835px;}
.x1d_c01250{left:495.986685px;}
.x44_c01250{left:505.495635px;}
.x24_c01250{left:506.718285px;}
.x6d_c01250{left:515.588685px;}
.xa_c01250{left:516.895485px;}
.x4c_c01250{left:518.434935px;}
.x3f_c01250{left:528.795285px;}
.x4d_c01250{left:530.067435px;}
.x11_c01250{left:548.021085px;}
.x34_c01250{left:551.238585px;}
.x45_c01250{left:559.836735px;}
.x54_c01250{left:561.930585px;}
.xb_c01250{left:571.810785px;}
.x69_c01250{left:573.736335px;}
.x6e_c01250{left:581.195985px;}
.x6a_c01250{left:583.750185px;}
.x25_c01250{left:595.427235px;}
.x26_c01250{left:596.521185px;}
.xc_c01250{left:603.253185px;}
.x49_c01250{left:604.748085px;}
.x27_c01250{left:606.396435px;}
.x5d_c01250{left:607.648785px;}
.x18_c01250{left:617.004285px;}
.x5e_c01250{left:627.047835px;}
.x4e_c01250{left:628.107135px;}
.x4f_c01250{left:639.061485px;}
.x19_c01250{left:640.308885px;}
.x12_c01250{left:649.991085px;}
.x28_c01250{left:661.118685px;}
.x13_c01250{left:669.771285px;}
.x66_c01250{left:671.226585px;}
.x2c_c01250{left:672.360135px;}
.x6c_c01250{left:692.729385px;}
.x1e_c01250{left:693.798585px;}
.x1a_c01250{left:698.421885px;}
.x3_c01250{left:721.454235px;}
.xd_c01250{left:725.151885px;}
@media print{
.v3_c01250{vertical-align:-5.068800pt;}
.v0_c01250{vertical-align:0.000000pt;}
.v2_c01250{vertical-align:2.516800pt;}
.v1_c01250{vertical-align:12.689600pt;}
.v4_c01250{vertical-align:19.008000pt;}
.lse_c01250{letter-spacing:-2.735046pt;}
.ls3a_c01250{letter-spacing:-2.470160pt;}
.ls2e_c01250{letter-spacing:-2.328480pt;}
.ls1c_c01250{letter-spacing:-2.303846pt;}
.ls20_c01250{letter-spacing:-2.248400pt;}
.ls26_c01250{letter-spacing:-2.192960pt;}
.ls37_c01250{letter-spacing:-2.156000pt;}
.ls1a_c01250{letter-spacing:-2.069760pt;}
.ls11_c01250{letter-spacing:-1.909600pt;}
.lsc_c01250{letter-spacing:-1.756709pt;}
.ls24_c01250{letter-spacing:-1.631696pt;}
.ls23_c01250{letter-spacing:-1.617584pt;}
.ls35_c01250{letter-spacing:-1.554608pt;}
.ls3c_c01250{letter-spacing:-1.541760pt;}
.ls2a_c01250{letter-spacing:-1.367526pt;}
.ls2f_c01250{letter-spacing:-1.238160pt;}
.lsb_c01250{letter-spacing:-0.997926pt;}
.ls13_c01250{letter-spacing:-0.609840pt;}
.ls17_c01250{letter-spacing:-0.597520pt;}
.ls15_c01250{letter-spacing:-0.585200pt;}
.ls6_c01250{letter-spacing:-0.501072pt;}
.ls3b_c01250{letter-spacing:-0.489421pt;}
.ls5_c01250{letter-spacing:0.000000pt;}
.lsd_c01250{letter-spacing:0.295504pt;}
.ls31_c01250{letter-spacing:0.435638pt;}
.ls3e_c01250{letter-spacing:0.486323pt;}
.ls0_c01250{letter-spacing:0.656885pt;}
.ls22_c01250{letter-spacing:0.686409pt;}
.ls40_c01250{letter-spacing:0.730400pt;}
.ls9_c01250{letter-spacing:0.774400pt;}
.ls34_c01250{letter-spacing:0.809424pt;}
.ls16_c01250{letter-spacing:0.836000pt;}
.ls18_c01250{letter-spacing:0.853600pt;}
.ls14_c01250{letter-spacing:0.871200pt;}
.ls41_c01250{letter-spacing:0.888800pt;}
.ls3f_c01250{letter-spacing:0.915200pt;}
.ls1e_c01250{letter-spacing:1.293600pt;}
.ls1f_c01250{letter-spacing:1.355464pt;}
.lsa_c01250{letter-spacing:1.425609pt;}
.ls39_c01250{letter-spacing:1.458248pt;}
.ls32_c01250{letter-spacing:1.601609pt;}
.ls42_c01250{letter-spacing:2.105986pt;}
.ls4_c01250{letter-spacing:2.241976pt;}
.ls38_c01250{letter-spacing:2.305609pt;}
.ls10_c01250{letter-spacing:2.307888pt;}
.ls21_c01250{letter-spacing:2.675200pt;}
.ls12_c01250{letter-spacing:2.728000pt;}
.ls1b_c01250{letter-spacing:2.956800pt;}
.ls25_c01250{letter-spacing:3.009537pt;}
.ls27_c01250{letter-spacing:3.132800pt;}
.lsf_c01250{letter-spacing:3.185609pt;}
.ls7_c01250{letter-spacing:3.212000pt;}
.ls3d_c01250{letter-spacing:3.238400pt;}
.ls1d_c01250{letter-spacing:3.291209pt;}
.ls2c_c01250{letter-spacing:3.326400pt;}
.ls2b_c01250{letter-spacing:3.379209pt;}
.ls8_c01250{letter-spacing:3.449609pt;}
.ls43_c01250{letter-spacing:3.502400pt;}
.ls1_c01250{letter-spacing:6.552480pt;}
.ls19_c01250{letter-spacing:19.008000pt;}
.ls2_c01250{letter-spacing:20.322319pt;}
.ls30_c01250{letter-spacing:35.481600pt;}
.ls33_c01250{letter-spacing:43.084976pt;}
.ls29_c01250{letter-spacing:45.619376pt;}
.ls28_c01250{letter-spacing:46.886576pt;}
.ls2d_c01250{letter-spacing:49.420976pt;}
.ls36_c01250{letter-spacing:50.688176pt;}
.ls3_c01250{letter-spacing:56.314691pt;}
.ws1_c01250{word-spacing:-17.475568pt;}
.ws2_c01250{word-spacing:-16.439808pt;}
.ws3_c01250{word-spacing:-16.060000pt;}
.ws4_c01250{word-spacing:-14.505392pt;}
.ws5_c01250{word-spacing:0.000000pt;}
.ws0_c01250{word-spacing:20.754589pt;}
._13_c01250{margin-left:-11.820160pt;}
._c_c01250{margin-left:-9.057840pt;}
._10_c01250{margin-left:-7.130640pt;}
._1_c01250{margin-left:-5.537488pt;}
._5_c01250{margin-left:-3.742816pt;}
._18_c01250{margin-left:-1.929312pt;}
._a_c01250{width:1.092080pt;}
._19_c01250{width:2.528064pt;}
._6_c01250{width:4.910400pt;}
._11_c01250{width:6.038560pt;}
._7_c01250{width:7.451136pt;}
._f_c01250{width:8.736640pt;}
._12_c01250{width:10.327680pt;}
._e_c01250{width:13.233440pt;}
._4_c01250{width:23.650880pt;}
._2_c01250{width:26.822312pt;}
._14_c01250{width:29.392000pt;}
._16_c01250{width:34.636096pt;}
._1b_c01250{width:39.230400pt;}
._d_c01250{width:41.824640pt;}
._b_c01250{width:49.143600pt;}
._1a_c01250{width:58.458641pt;}
._15_c01250{width:59.593600pt;}
._3_c01250{width:62.559904pt;}
._9_c01250{width:91.552687pt;}
._17_c01250{width:139.021696pt;}
._8_c01250{width:238.417585pt;}
._0_c01250{width:2161.646080pt;}
.fs25_c01250{font-size:12.848176pt;}
.fs17_c01250{font-size:13.728176pt;}
.fs33_c01250{font-size:14.608000pt;}
.fs7_c01250{font-size:15.312000pt;}
.fs5_c01250{font-size:15.488000pt;}
.fsf_c01250{font-size:16.720000pt;}
.fs10_c01250{font-size:17.072000pt;}
.fse_c01250{font-size:17.424000pt;}
.fs34_c01250{font-size:17.776000pt;}
.fs32_c01250{font-size:18.304000pt;}
.fs11_c01250{font-size:19.008000pt;}
.fs20_c01250{font-size:19.712000pt;}
.fs0_c01250{font-size:24.640000pt;}
.fs14_c01250{font-size:25.872000pt;}
.fs2f_c01250{font-size:27.808000pt;}
.fs6_c01250{font-size:28.512176pt;}
.fs1f_c01250{font-size:28.864000pt;}
.fs29_c01250{font-size:32.032176pt;}
.fs9_c01250{font-size:34.496000pt;}
.fs1e_c01250{font-size:35.200000pt;}
.fs27_c01250{font-size:35.376000pt;}
.fs28_c01250{font-size:35.481600pt;}
.fs1d_c01250{font-size:39.072176pt;}
.fs21_c01250{font-size:39.776000pt;}
.fs2a_c01250{font-size:43.084976pt;}
.fs1b_c01250{font-size:45.619376pt;}
.fs2d_c01250{font-size:46.112176pt;}
.fs1a_c01250{font-size:46.886576pt;}
.fs16_c01250{font-size:48.752176pt;}
.fs23_c01250{font-size:49.420976pt;}
.fs2b_c01250{font-size:50.688176pt;}
.fs26_c01250{font-size:53.152176pt;}
.fs15_c01250{font-size:53.504000pt;}
.fs2_c01250{font-size:54.208000pt;}
.fsd_c01250{font-size:54.560000pt;}
.fs31_c01250{font-size:55.264000pt;}
.fs37_c01250{font-size:58.960000pt;}
.fs12_c01250{font-size:59.136000pt;}
.fs8_c01250{font-size:60.368000pt;}
.fs24_c01250{font-size:60.544176pt;}
.fs2c_c01250{font-size:61.600000pt;}
.fs19_c01250{font-size:62.656000pt;}
.fsc_c01250{font-size:63.712176pt;}
.fs1_c01250{font-size:64.240000pt;}
.fs30_c01250{font-size:64.768000pt;}
.fs13_c01250{font-size:65.824176pt;}
.fs22_c01250{font-size:66.528000pt;}
.fs1c_c01250{font-size:67.584176pt;}
.fs4_c01250{font-size:68.992176pt;}
.fs18_c01250{font-size:69.344176pt;}
.fs36_c01250{font-size:70.048000pt;}
.fs2e_c01250{font-size:70.576000pt;}
.fs35_c01250{font-size:71.632176pt;}
.fsa_c01250{font-size:78.144176pt;}
.fs3_c01250{font-size:92.928000pt;}
.fsb_c01250{font-size:95.744176pt;}
.y0_c01250{bottom:0.000000pt;}
.y1_c01250{bottom:68.000000pt;}
.y2b_c01250{bottom:173.840520pt;}
.y2a_c01250{bottom:202.352520pt;}
.y29_c01250{bottom:230.864520pt;}
.y28_c01250{bottom:259.059720pt;}
.y27_c01250{bottom:284.091320pt;}
.y26_c01250{bottom:286.304520pt;}
.y25_c01250{bottom:286.938120pt;}
.y24_c01250{bottom:315.137720pt;}
.y23_c01250{bottom:343.332920pt;}
.y22_c01250{bottom:371.840520pt;}
.y21_c01250{bottom:399.406520pt;}
.y1f_c01250{bottom:400.040120pt;}
.y20_c01250{bottom:404.792120pt;}
.y1e_c01250{bottom:427.280520pt;}
.y1d_c01250{bottom:455.796920pt;}
.y1c_c01250{bottom:456.426120pt;}
.y1b_c01250{bottom:478.606520pt;}
.y1a_c01250{bottom:484.621320pt;}
.y19_c01250{bottom:512.504120pt;}
.y18_c01250{bottom:540.382520pt;}
.y17_c01250{bottom:568.260920pt;}
.y14_c01250{bottom:595.501320pt;}
.ye_c01250{bottom:595.822520pt;}
.y13_c01250{bottom:596.139320pt;}
.y16_c01250{bottom:623.062920pt;}
.yd_c01250{bottom:623.700920pt;}
.y12_c01250{bottom:624.651320pt;}
.y11_c01250{bottom:647.460920pt;}
.y15_c01250{bottom:651.262520pt;}
.yc_c01250{bottom:651.891720pt;}
.y10_c01250{bottom:652.846520pt;}
.yf_c01250{bottom:672.171320pt;}
.yb_c01250{bottom:680.720520pt;}
.ya_c01250{bottom:706.381320pt;}
.y9_c01250{bottom:709.236920pt;}
.y8_c01250{bottom:728.240520pt;}
.y7_c01250{bottom:737.432120pt;}
.y6_c01250{bottom:764.993720pt;}
.y5_c01250{bottom:791.600520pt;}
.y4_c01250{bottom:793.184520pt;}
.y3_c01250{bottom:815.360520pt;}
.y2_c01250{bottom:818.211720pt;}
.h14_c01250{height:12.659328pt;}
.h1a_c01250{height:14.318059pt;}
.h34_c01250{height:15.235688pt;}
.h8_c01250{height:16.153500pt;}
.h10_c01250{height:17.092195pt;}
.h11_c01250{height:17.100703pt;}
.h12_c01250{height:17.438437pt;}
.h13_c01250{height:17.805563pt;}
.h35_c01250{height:17.914875pt;}
.h33_c01250{height:17.964375pt;}
.h29_c01250{height:23.630746pt;}
.h17_c01250{height:25.391953pt;}
.h5_c01250{height:25.698750pt;}
.h30_c01250{height:27.292031pt;}
.h9_c01250{height:27.983141pt;}
.h2b_c01250{height:28.694594pt;}
.h1f_c01250{height:30.382504pt;}
.h1e_c01250{height:31.226460pt;}
.h25_c01250{height:32.914370pt;}
.h2a_c01250{height:33.408559pt;}
.h2c_c01250{height:33.758325pt;}
.h27_c01250{height:34.719609pt;}
.hb_c01250{height:35.978250pt;}
.h22_c01250{height:36.712500pt;}
.h21_c01250{height:38.347204pt;}
.h2e_c01250{height:45.256579pt;}
.h19_c01250{height:47.847595pt;}
.h18_c01250{height:55.803000pt;}
.h3_c01250{height:56.537250pt;}
.hf_c01250{height:56.904375pt;}
.h32_c01250{height:57.638625pt;}
.h28_c01250{height:59.420798pt;}
.h2d_c01250{height:60.457031pt;}
.h1d_c01250{height:61.493438pt;}
.h15_c01250{height:61.677000pt;}
.ha_c01250{height:61.764691pt;}
.h1b_c01250{height:62.530016pt;}
.h4_c01250{height:63.048047pt;}
.h31_c01250{height:63.566250pt;}
.h16_c01250{height:64.602829pt;}
.h24_c01250{height:65.293594pt;}
.h23_c01250{height:66.330173pt;}
.he_c01250{height:66.449809pt;}
.h7_c01250{height:67.712048pt;}
.h1c_c01250{height:68.057516pt;}
.h37_c01250{height:68.748281pt;}
.h2f_c01250{height:69.266484pt;}
.h20_c01250{height:70.488184pt;}
.h36_c01250{height:72.191802pt;}
.h26_c01250{height:74.444059pt;}
.h2_c01250{height:75.737647pt;}
.hc_c01250{height:76.694235pt;}
.hd_c01250{height:93.967673pt;}
.h6_c01250{height:96.921000pt;}
.h1_c01250{height:986.666667pt;}
.h0_c01250{height:1122.666667pt;}
.w1_c01250{width:689.333333pt;}
.w0_c01250{width:793.333333pt;}
.x0_c01250{left:0.000000pt;}
.x1_c01250{left:52.000000pt;}
.x2_c01250{left:71.805053pt;}
.x40_c01250{left:123.606253pt;}
.x41_c01250{left:132.899053pt;}
.x55_c01250{left:133.849453pt;}
.x4_c01250{left:134.799853pt;}
.x5f_c01250{left:154.696653pt;}
.x46_c01250{left:163.514253pt;}
.x5_c01250{left:192.180253pt;}
.x1b_c01250{left:193.082253pt;}
.x56_c01250{left:195.005053pt;}
.x57_c01250{left:197.517453pt;}
.x51_c01250{left:203.695053pt;}
.x52_c01250{left:213.612653pt;}
.x64_c01250{left:220.767053pt;}
.x6_c01250{left:222.469853pt;}
.x63_c01250{left:230.508653pt;}
.x60_c01250{left:231.841853pt;}
.xe_c01250{left:233.377453pt;}
.x50_c01250{left:242.877053pt;}
.x58_c01250{left:246.753453pt;}
.x47_c01250{left:250.541853pt;}
.x67_c01250{left:251.668253pt;}
.x59_c01250{left:252.570253pt;}
.x61_c01250{left:253.489853pt;}
.x38_c01250{left:261.251453pt;}
.x4a_c01250{left:263.213853pt;}
.x20_c01250{left:270.311053pt;}
.xf_c01250{left:271.274653pt;}
.x35_c01250{left:272.726653pt;}
.x2d_c01250{left:276.981453pt;}
.x68_c01250{left:280.030653pt;}
.x5a_c01250{left:281.465053pt;}
.x4b_c01250{left:283.885053pt;}
.x2e_c01250{left:291.629053pt;}
.x14_c01250{left:292.531053pt;}
.x3b_c01250{left:301.199053pt;}
.x7_c01250{left:302.281453pt;}
.x39_c01250{left:305.383453pt;}
.x62_c01250{left:307.420653pt;}
.x5b_c01250{left:309.814253pt;}
.x2b_c01250{left:311.019853pt;}
.x1f_c01250{left:319.665853pt;}
.x2f_c01250{left:321.373053pt;}
.x42_c01250{left:331.061853pt;}
.x48_c01250{left:331.977053pt;}
.x43_c01250{left:340.966253pt;}
.x15_c01250{left:342.119053pt;}
.x36_c01250{left:346.514653pt;}
.x30_c01250{left:349.414253pt;}
.x21_c01250{left:350.311853pt;}
.x16_c01250{left:352.107053pt;}
.x3c_c01250{left:359.961053pt;}
.x22_c01250{left:360.995053pt;}
.x53_c01250{left:370.186653pt;}
.x3a_c01250{left:371.401053pt;}
.x1c_c01250{left:379.783053pt;}
.x3d_c01250{left:381.499053pt;}
.x29_c01250{left:383.791453pt;}
.x31_c01250{left:389.621453pt;}
.x17_c01250{left:391.790653pt;}
.x2a_c01250{left:393.687053pt;}
.x37_c01250{left:398.786653pt;}
.x8_c01250{left:400.537853pt;}
.x65_c01250{left:403.556253pt;}
.x32_c01250{left:409.733853pt;}
.x23_c01250{left:410.992253pt;}
.x6b_c01250{left:419.541453pt;}
.x5c_c01250{left:421.019853pt;}
.x10_c01250{left:427.888253pt;}
.x9_c01250{left:429.019053pt;}
.x3e_c01250{left:429.969453pt;}
.x33_c01250{left:438.399853pt;}
.x1d_c01250{left:440.877053pt;}
.x44_c01250{left:449.329453pt;}
.x24_c01250{left:450.416253pt;}
.x6d_c01250{left:458.301053pt;}
.xa_c01250{left:459.462653pt;}
.x4c_c01250{left:460.831053pt;}
.x3f_c01250{left:470.040253pt;}
.x4d_c01250{left:471.171053pt;}
.x11_c01250{left:487.129853pt;}
.x34_c01250{left:489.989853pt;}
.x45_c01250{left:497.632653pt;}
.x54_c01250{left:499.493853pt;}
.xb_c01250{left:508.276253pt;}
.x69_c01250{left:509.987853pt;}
.x6e_c01250{left:516.618653pt;}
.x6a_c01250{left:518.889053pt;}
.x25_c01250{left:529.268653pt;}
.x26_c01250{left:530.241053pt;}
.xc_c01250{left:536.225053pt;}
.x49_c01250{left:537.553853pt;}
.x27_c01250{left:539.019053pt;}
.x5d_c01250{left:540.132253pt;}
.x18_c01250{left:548.448253pt;}
.x5e_c01250{left:557.375853pt;}
.x4e_c01250{left:558.317453pt;}
.x4f_c01250{left:568.054653pt;}
.x19_c01250{left:569.163453pt;}
.x12_c01250{left:577.769853pt;}
.x28_c01250{left:587.661053pt;}
.x13_c01250{left:595.352253pt;}
.x66_c01250{left:596.645853pt;}
.x2c_c01250{left:597.653453pt;}
.x6c_c01250{left:615.759453pt;}
.x1e_c01250{left:616.709853pt;}
.x1a_c01250{left:620.819453pt;}
.x3_c01250{left:641.292653pt;}
.xd_c01250{left:644.579453pt;}
}





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

.ir_c01251:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01251{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01251;src:url('chunks/assets/font_3bfc20207a900cd9ecc25842.woff2')format("woff");}.ff1_c01251{font-family:ff1_c01251;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01251;src:url('chunks/assets/font_c58197a4000c4b0dbbb88ef8.woff2')format("woff");}.ff2_c01251{font-family:ff2_c01251;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01251;src:url('chunks/assets/font_82bbb0d1958e876f2337495b.woff2')format("woff");}.ff3_c01251{font-family:ff3_c01251;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01251;src:url('chunks/assets/font_0c5f92aacd83de438c719c18.woff2')format("woff");}.ff4_c01251{font-family:ff4_c01251;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01251;src:url('chunks/assets/font_66a584916d179d7e219d070a.woff2')format("woff");}.ff5_c01251{font-family:ff5_c01251;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01251;src:url('chunks/assets/font_bb2c7d17e61b848c66502766.woff2')format("woff");}.ff6_c01251{font-family:ff6_c01251;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01251;src:url('chunks/assets/font_c6ded61e651d7566304888e3.woff2')format("woff");}.ff7_c01251{font-family:ff7_c01251;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c01251;src:url('chunks/assets/font_1f5c800d8f88c79f484887c4.woff2')format("woff");}.ff8_c01251{font-family:ff8_c01251;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m65_c01251{transform:matrix(0.027779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.027779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.027779,0.000000,0.000000,0.250000,0,0);}
.m88_c01251{transform:matrix(0.052326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.052326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.052326,0.000000,0.000000,0.250000,0,0);}
.m29_c01251{transform:matrix(0.076390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076390,0.000000,0.000000,0.250000,0,0);}
.m7d_c01251{transform:matrix(0.076923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076923,0.000000,0.000000,0.250000,0,0);}
.m77_c01251{transform:matrix(0.081251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081251,0.000000,0.000000,0.250000,0,0);}
.m69_c01251{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);}
.m86_c01251{transform:matrix(0.084303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084303,0.000000,0.000000,0.250000,0,0);}
.mc6_c01251{transform:matrix(0.084581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084581,0.000000,0.000000,0.250000,0,0);}
.m75_c01251{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);}
.m85_c01251{transform:matrix(0.098838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098838,0.000000,0.000000,0.250000,0,0);}
.m95_c01251{transform:matrix(0.121409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121409,0.000000,0.000000,0.250000,0,0);}
.mac_c01251{transform:matrix(0.122446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122446,0.000000,0.000000,0.250000,0,0);}
.mc5_c01251{transform:matrix(0.126014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126014,0.000000,0.000000,0.250000,0,0);}
.m87_c01251{transform:matrix(0.136627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136627,0.000000,0.000000,0.250000,0,0);}
.m11_c01251{transform:matrix(0.137017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137017,0.000000,0.000000,0.250000,0,0);}
.m7c_c01251{transform:matrix(0.147436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147436,0.000000,0.000000,0.250000,0,0);}
.m52_c01251{transform:matrix(0.149726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149726,0.000000,0.000000,0.250000,0,0);}
.m80_c01251{transform:matrix(0.154148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154148,0.000000,0.000000,0.250000,0,0);}
.mb9_c01251{transform:matrix(0.155158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155158,0.000000,0.000000,0.250000,0,0);}
.m64_c01251{transform:matrix(0.159723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159723,0.000000,0.000000,0.250000,0,0);}
.m7b_c01251{transform:matrix(0.160256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160256,0.000000,0.000000,0.250000,0,0);}
.m5c_c01251{transform:matrix(0.161243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161243,0.000000,0.000000,0.250000,0,0);}
.m63_c01251{transform:matrix(0.165277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165277,0.000000,0.000000,0.250000,0,0);}
.m9d_c01251{transform:matrix(0.174582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174582,0.000000,0.000000,0.250000,0,0);}
.m1a_c01251{transform:matrix(0.194170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194170,0.000000,0.000000,0.250000,0,0);}
.ma3_c01251{transform:matrix(0.199143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199143,0.000000,0.000000,0.250000,0,0);}
.m6a_c01251{transform:matrix(0.202214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202214,0.000000,0.000000,0.250000,0,0);}
.m9c_c01251{transform:matrix(0.203451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203451,0.000000,0.000000,0.250000,0,0);}
.m67_c01251{transform:matrix(0.212907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212907,0.000000,0.000000,0.250000,0,0);}
.m47_c01251{transform:matrix(0.242317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242317,0.000000,0.000000,0.250000,0,0);}
.m37_c01251{transform:matrix(0.243839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243839,0.000000,0.000000,0.250000,0,0);}
.m1d_c01251{transform:matrix(0.247786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247786,0.000000,0.000000,0.250000,0,0);}
.ma_c01251{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m39_c01251{transform:matrix(0.251698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251698,0.000000,0.000000,0.250000,0,0);}
.m6e_c01251{transform:matrix(0.253747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253747,0.000000,0.000000,0.250000,0,0);}
.m2c_c01251{transform:matrix(0.254389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254389,0.000000,0.000000,0.250000,0,0);}
.ma7_c01251{transform:matrix(0.254763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254763,0.000000,0.000000,0.250000,0,0);}
.mb2_c01251{transform:matrix(0.254780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254780,0.000000,0.000000,0.250000,0,0);}
.m7e_c01251{transform:matrix(0.255593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255593,0.000000,0.000000,0.250000,0,0);}
.mba_c01251{transform:matrix(0.256439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256439,0.000000,0.000000,0.250000,0,0);}
.m3a_c01251{transform:matrix(0.256964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256964,0.000000,0.000000,0.250000,0,0);}
.mb1_c01251{transform:matrix(0.257523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257523,0.000000,0.000000,0.250000,0,0);}
.m51_c01251{transform:matrix(0.258795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258795,0.000000,0.000000,0.250000,0,0);}
.m99_c01251{transform:matrix(0.260998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260998,0.000000,0.000000,0.250000,0,0);}
.m71_c01251{transform:matrix(0.263268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263268,0.000000,0.000000,0.250000,0,0);}
.m35_c01251{transform:matrix(0.263847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263847,0.000000,0.000000,0.250000,0,0);}
.m17_c01251{transform:matrix(0.264011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264011,0.000000,0.000000,0.250000,0,0);}
.m9e_c01251{transform:matrix(0.264172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264172,0.000000,0.000000,0.250000,0,0);}
.m5a_c01251{transform:matrix(0.264687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264687,0.000000,0.000000,0.250000,0,0);}
.m53_c01251{transform:matrix(0.266507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266507,0.000000,0.000000,0.250000,0,0);}
.m84_c01251{transform:matrix(0.266864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266864,0.000000,0.000000,0.250000,0,0);}
.m10_c01251{transform:matrix(0.267081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267081,0.000000,0.000000,0.250000,0,0);}
.m5b_c01251{transform:matrix(0.267718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267718,0.000000,0.000000,0.250000,0,0);}
.m62_c01251{transform:matrix(0.268269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268269,0.000000,0.000000,0.250000,0,0);}
.m49_c01251{transform:matrix(0.269499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269499,0.000000,0.000000,0.250000,0,0);}
.m89_c01251{transform:matrix(0.270207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270207,0.000000,0.000000,0.250000,0,0);}
.m78_c01251{transform:matrix(0.270305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270305,0.000000,0.000000,0.250000,0,0);}
.m14_c01251{transform:matrix(0.271918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271918,0.000000,0.000000,0.250000,0,0);}
.mb7_c01251{transform:matrix(0.273412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273412,0.000000,0.000000,0.250000,0,0);}
.m21_c01251{transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273598,0.000000,0.000000,0.250000,0,0);}
.m50_c01251{transform:matrix(0.274532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274532,0.000000,0.000000,0.250000,0,0);}
.ma4_c01251{transform:matrix(0.274901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274901,0.000000,0.000000,0.250000,0,0);}
.m3e_c01251{transform:matrix(0.275356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275356,0.000000,0.000000,0.250000,0,0);}
.ma0_c01251{transform:matrix(0.275903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275903,0.000000,0.000000,0.250000,0,0);}
.m4b_c01251{transform:matrix(0.276519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276519,0.000000,0.000000,0.250000,0,0);}
.m19_c01251{transform:matrix(0.276582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276582,0.000000,0.000000,0.250000,0,0);}
.mc_c01251{transform:matrix(0.276862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276862,0.000000,0.000000,0.250000,0,0);}
.mbd_c01251{transform:matrix(0.277763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277763,0.000000,0.000000,0.250000,0,0);}
.m41_c01251{transform:matrix(0.278806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278806,0.000000,0.000000,0.250000,0,0);}
.m97_c01251{transform:matrix(0.279126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279126,0.000000,0.000000,0.250000,0,0);}
.m4d_c01251{transform:matrix(0.279337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279337,0.000000,0.000000,0.250000,0,0);}
.ma9_c01251{transform:matrix(0.279878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279878,0.000000,0.000000,0.250000,0,0);}
.mbc_c01251{transform:matrix(0.279933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279933,0.000000,0.000000,0.250000,0,0);}
.m20_c01251{transform:matrix(0.281105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281105,0.000000,0.000000,0.250000,0,0);}
.m46_c01251{transform:matrix(0.281807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281807,0.000000,0.000000,0.250000,0,0);}
.m31_c01251{transform:matrix(0.282039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282039,0.000000,0.000000,0.250000,0,0);}
.m7f_c01251{transform:matrix(0.282980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282980,0.000000,0.000000,0.250000,0,0);}
.m54_c01251{transform:matrix(0.283450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283450,0.000000,0.000000,0.250000,0,0);}
.m9_c01251{transform:matrix(0.284041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284041,0.000000,0.000000,0.250000,0,0);}
.m8c_c01251{transform:matrix(0.284788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284788,0.000000,0.000000,0.250000,0,0);}
.m5_c01251{transform:matrix(0.284920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284920,0.000000,0.000000,0.250000,0,0);}
.m3c_c01251{transform:matrix(0.285438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285438,0.000000,0.000000,0.250000,0,0);}
.m0_c01251{transform:matrix(0.286270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286270,0.000000,0.000000,0.250000,0,0);}
.m4c_c01251{transform:matrix(0.286409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286409,0.000000,0.000000,0.250000,0,0);}
.m66_c01251{transform:matrix(0.286923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286923,0.000000,0.000000,0.250000,0,0);}
.m61_c01251{transform:matrix(0.287611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287611,0.000000,0.000000,0.250000,0,0);}
.mc2_c01251{transform:matrix(0.288879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288879,0.000000,0.000000,0.250000,0,0);}
.m56_c01251{transform:matrix(0.289918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289918,0.000000,0.000000,0.250000,0,0);}
.m83_c01251{transform:matrix(0.290190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290190,0.000000,0.000000,0.250000,0,0);}
.m3f_c01251{transform:matrix(0.290492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290492,0.000000,0.000000,0.250000,0,0);}
.mf_c01251{transform:matrix(0.291160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291160,0.000000,0.000000,0.250000,0,0);}
.m15_c01251{transform:matrix(0.292436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292436,0.000000,0.000000,0.250000,0,0);}
.mbe_c01251{transform:matrix(0.292727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292727,0.000000,0.000000,0.250000,0,0);}
.m36_c01251{transform:matrix(0.292907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292907,0.000000,0.000000,0.250000,0,0);}
.m8f_c01251{transform:matrix(0.293072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293072,0.000000,0.000000,0.250000,0,0);}
.mbb_c01251{transform:matrix(0.293614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293614,0.000000,0.000000,0.250000,0,0);}
.m4e_c01251{transform:matrix(0.296149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296149,0.000000,0.000000,0.250000,0,0);}
.m3d_c01251{transform:matrix(0.296395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296395,0.000000,0.000000,0.250000,0,0);}
.m44_c01251{transform:matrix(0.297957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297957,0.000000,0.000000,0.250000,0,0);}
.m43_c01251{transform:matrix(0.298138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298138,0.000000,0.000000,0.250000,0,0);}
.m57_c01251{transform:matrix(0.298148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298148,0.000000,0.000000,0.250000,0,0);}
.m94_c01251{transform:matrix(0.298180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298180,0.000000,0.000000,0.250000,0,0);}
.ma6_c01251{transform:matrix(0.298368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298368,0.000000,0.000000,0.250000,0,0);}
.mc1_c01251{transform:matrix(0.298777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298777,0.000000,0.000000,0.250000,0,0);}
.m1c_c01251{transform:matrix(0.298988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298988,0.000000,0.000000,0.250000,0,0);}
.m81_c01251{transform:matrix(0.299295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299295,0.000000,0.000000,0.250000,0,0);}
.m58_c01251{transform:matrix(0.299620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299620,0.000000,0.000000,0.250000,0,0);}
.m91_c01251{transform:matrix(0.299639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299639,0.000000,0.000000,0.250000,0,0);}
.ma1_c01251{transform:matrix(0.299881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299881,0.000000,0.000000,0.250000,0,0);}
.m32_c01251{transform:matrix(0.301279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301279,0.000000,0.000000,0.250000,0,0);}
.m2f_c01251{transform:matrix(0.301630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301630,0.000000,0.000000,0.250000,0,0);}
.me_c01251{transform:matrix(0.303287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303287,0.000000,0.000000,0.250000,0,0);}
.m8e_c01251{transform:matrix(0.303368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303368,0.000000,0.000000,0.250000,0,0);}
.m6d_c01251{transform:matrix(0.304086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304086,0.000000,0.000000,0.250000,0,0);}
.mb3_c01251{transform:matrix(0.304906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304906,0.000000,0.000000,0.250000,0,0);}
.m3_c01251{transform:matrix(0.305154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305154,0.000000,0.000000,0.250000,0,0);}
.md_c01251{transform:matrix(0.306274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306274,0.000000,0.000000,0.250000,0,0);}
.m48_c01251{transform:matrix(0.306472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306472,0.000000,0.000000,0.250000,0,0);}
.m38_c01251{transform:matrix(0.307216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307216,0.000000,0.000000,0.250000,0,0);}
.m60_c01251{transform:matrix(0.307589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307589,0.000000,0.000000,0.250000,0,0);}
.m18_c01251{transform:matrix(0.310326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310326,0.000000,0.000000,0.250000,0,0);}
.m2_c01251{transform:matrix(0.310585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310585,0.000000,0.000000,0.250000,0,0);}
.m2e_c01251{transform:matrix(0.310736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310736,0.000000,0.000000,0.250000,0,0);}
.m40_c01251{transform:matrix(0.310861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310861,0.000000,0.000000,0.250000,0,0);}
.m13_c01251{transform:matrix(0.311146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311146,0.000000,0.000000,0.250000,0,0);}
.mc8_c01251{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);}
.m6c_c01251{transform:matrix(0.311374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311374,0.000000,0.000000,0.250000,0,0);}
.m5f_c01251{transform:matrix(0.311457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311457,0.000000,0.000000,0.250000,0,0);}
.m72_c01251{transform:matrix(0.311618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311618,0.000000,0.000000,0.250000,0,0);}
.m90_c01251{transform:matrix(0.311884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311884,0.000000,0.000000,0.250000,0,0);}
.m42_c01251{transform:matrix(0.312842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312842,0.000000,0.000000,0.250000,0,0);}
.mb8_c01251{transform:matrix(0.314053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314053,0.000000,0.000000,0.250000,0,0);}
.mbf_c01251{transform:matrix(0.316003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316003,0.000000,0.000000,0.250000,0,0);}
.ma8_c01251{transform:matrix(0.317653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317653,0.000000,0.000000,0.250000,0,0);}
.ma2_c01251{transform:matrix(0.317751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317751,0.000000,0.000000,0.250000,0,0);}
.m8a_c01251{transform:matrix(0.318818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318818,0.000000,0.000000,0.250000,0,0);}
.m1_c01251{transform:matrix(0.318972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318972,0.000000,0.000000,0.250000,0,0);}
.m1f_c01251{transform:matrix(0.319636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319636,0.000000,0.000000,0.250000,0,0);}
.mae_c01251{transform:matrix(0.319869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319869,0.000000,0.000000,0.250000,0,0);}
.m55_c01251{transform:matrix(0.320120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320120,0.000000,0.000000,0.250000,0,0);}
.m73_c01251{transform:matrix(0.321986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321986,0.000000,0.000000,0.250000,0,0);}
.mc3_c01251{transform:matrix(0.322265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322265,0.000000,0.000000,0.250000,0,0);}
.mb4_c01251{transform:matrix(0.322753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322753,0.000000,0.000000,0.250000,0,0);}
.ma5_c01251{transform:matrix(0.323211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323211,0.000000,0.000000,0.250000,0,0);}
.m82_c01251{transform:matrix(0.324536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324536,0.000000,0.000000,0.250000,0,0);}
.mb_c01251{transform:matrix(0.326532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326532,0.000000,0.000000,0.250000,0,0);}
.m30_c01251{transform:matrix(0.326551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326551,0.000000,0.000000,0.250000,0,0);}
.m92_c01251{transform:matrix(0.328022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328022,0.000000,0.000000,0.250000,0,0);}
.m6_c01251{transform:matrix(0.328920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328920,0.000000,0.000000,0.250000,0,0);}
.m5d_c01251{transform:matrix(0.329109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329109,0.000000,0.000000,0.250000,0,0);}
.m45_c01251{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);}
.m7_c01251{transform:matrix(0.332049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332049,0.000000,0.000000,0.250000,0,0);}
.mc0_c01251{transform:matrix(0.333278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333278,0.000000,0.000000,0.250000,0,0);}
.m4f_c01251{transform:matrix(0.333835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333835,0.000000,0.000000,0.250000,0,0);}
.m79_c01251{transform:matrix(0.334553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334553,0.000000,0.000000,0.250000,0,0);}
.mc9_c01251{transform:matrix(0.334735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334735,0.000000,0.000000,0.250000,0,0);}
.m5e_c01251{transform:matrix(0.335804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335804,0.000000,0.000000,0.250000,0,0);}
.m22_c01251{transform:matrix(0.336894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336894,0.000000,0.000000,0.250000,0,0);}
.m8_c01251{transform:matrix(0.337111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337111,0.000000,0.000000,0.250000,0,0);}
.m96_c01251{transform:matrix(0.337810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337810,0.000000,0.000000,0.250000,0,0);}
.m6f_c01251{transform:matrix(0.342336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342336,0.000000,0.000000,0.250000,0,0);}
.m7a_c01251{transform:matrix(0.343597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343597,0.000000,0.000000,0.250000,0,0);}
.m4_c01251{transform:matrix(0.345194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345194,0.000000,0.000000,0.250000,0,0);}
.m93_c01251{transform:matrix(0.345450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345450,0.000000,0.000000,0.250000,0,0);}
.mb5_c01251{transform:matrix(0.347741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347741,0.000000,0.000000,0.250000,0,0);}
.m8b_c01251{transform:matrix(0.350155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350155,0.000000,0.000000,0.250000,0,0);}
.m12_c01251{transform:matrix(0.352472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352472,0.000000,0.000000,0.250000,0,0);}
.m2d_c01251{transform:matrix(0.352783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352783,0.000000,0.000000,0.250000,0,0);}
.m76_c01251{transform:matrix(0.359491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359491,0.000000,0.000000,0.250000,0,0);}
.m1b_c01251{transform:matrix(0.363152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363152,0.000000,0.000000,0.250000,0,0);}
.m74_c01251{transform:matrix(0.364995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364995,0.000000,0.000000,0.250000,0,0);}
.m4a_c01251{transform:matrix(0.365856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365856,0.000000,0.000000,0.250000,0,0);}
.m70_c01251{transform:matrix(0.366603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366603,0.000000,0.000000,0.250000,0,0);}
.mb6_c01251{transform:matrix(0.367468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367468,0.000000,0.000000,0.250000,0,0);}
.mca_c01251{transform:matrix(0.373498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373498,0.000000,0.000000,0.250000,0,0);}
.m27_c01251{transform:matrix(0.380852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380852,0.000000,0.000000,0.250000,0,0);}
.m1e_c01251{transform:matrix(0.388378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388378,0.000000,0.000000,0.250000,0,0);}
.mc4_c01251{transform:matrix(0.403081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403081,0.000000,0.000000,0.250000,0,0);}
.m59_c01251{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_c01251{transform:matrix(0.407176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407176,0.000000,0.000000,0.250000,0,0);}
.m24_c01251{transform:matrix(0.444444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444444,0.000000,0.000000,0.250000,0,0);}
.m33_c01251{transform:matrix(0.446624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446624,0.000000,0.000000,0.250000,0,0);}
.m16_c01251{transform:matrix(0.451043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451043,0.000000,0.000000,0.250000,0,0);}
.mc7_c01251{transform:matrix(0.458855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458855,0.000000,0.000000,0.250000,0,0);}
.m8d_c01251{transform:matrix(0.477424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477424,0.000000,0.000000,0.250000,0,0);}
.m9b_c01251{transform:matrix(0.484963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484963,0.000000,0.000000,0.250000,0,0);}
.maa_c01251{transform:matrix(0.487074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487074,0.000000,0.000000,0.250000,0,0);}
.m9a_c01251{transform:matrix(0.592045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592045,0.000000,0.000000,0.250000,0,0);}
.m28_c01251{transform:matrix(0.667294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667294,0.000000,0.000000,0.250000,0,0);}
.m34_c01251{transform:matrix(0.750755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.750755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.750755,0.000000,0.000000,0.250000,0,0);}
.m26_c01251{transform:matrix(0.946290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.946290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.946290,0.000000,0.000000,0.250000,0,0);}
.m6b_c01251{transform:matrix(0.993216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.993216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.993216,0.000000,0.000000,0.250000,0,0);}
.m25_c01251{transform:matrix(1.066626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.066626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.066626,0.000000,0.000000,0.250000,0,0);}
.mb0_c01251{transform:matrix(1.166198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.166198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.166198,0.000000,0.000000,0.250000,0,0);}
.mad_c01251{transform:matrix(1.201066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.201066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.201066,0.000000,0.000000,0.250000,0,0);}
.m9f_c01251{transform:matrix(1.219748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.219748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.219748,0.000000,0.000000,0.250000,0,0);}
.m2a_c01251{transform:matrix(1.335177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.335177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.335177,0.000000,0.000000,0.250000,0,0);}
.m68_c01251{transform:matrix(1.335197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.335197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.335197,0.000000,0.000000,0.250000,0,0);}
.mab_c01251{transform:matrix(1.354769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.354769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.354769,0.000000,0.000000,0.250000,0,0);}
.m23_c01251{transform:matrix(1.373633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.373633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.373633,0.000000,0.000000,0.250000,0,0);}
.maf_c01251{transform:matrix(1.382009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.382009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.382009,0.000000,0.000000,0.250000,0,0);}
.m98_c01251{transform:matrix(1.575883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.575883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.575883,0.000000,0.000000,0.250000,0,0);}
.m2b_c01251{transform:matrix(1.659860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.659860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.659860,0.000000,0.000000,0.250000,0,0);}
.v0_c01251{vertical-align:0.000000px;}
.ls9_c01251{letter-spacing:-2.564100px;}
.ls16_c01251{letter-spacing:-2.508667px;}
.ls35_c01251{letter-spacing:-2.480940px;}
.ls25_c01251{letter-spacing:-2.411640px;}
.ls23_c01251{letter-spacing:-2.259180px;}
.ls18_c01251{letter-spacing:-2.242950px;}
.ls6_c01251{letter-spacing:-1.718640px;}
.ls2a_c01251{letter-spacing:-1.580040px;}
.ls2f_c01251{letter-spacing:-0.706860px;}
.ls1d_c01251{letter-spacing:-0.672210px;}
.ls1b_c01251{letter-spacing:-0.651420px;}
.lsc_c01251{letter-spacing:-0.569369px;}
.ls27_c01251{letter-spacing:-0.543629px;}
.ls32_c01251{letter-spacing:-0.292961px;}
.ls5_c01251{letter-spacing:0.000000px;}
.ls13_c01251{letter-spacing:0.183150px;}
.ls1e_c01251{letter-spacing:0.372596px;}
.ls2b_c01251{letter-spacing:0.707810px;}
.ls10_c01251{letter-spacing:0.851400px;}
.ls2e_c01251{letter-spacing:0.920700px;}
.ls1c_c01251{letter-spacing:0.930600px;}
.lsf_c01251{letter-spacing:0.950400px;}
.ls1f_c01251{letter-spacing:0.960300px;}
.ls7_c01251{letter-spacing:0.990000px;}
.lse_c01251{letter-spacing:0.999900px;}
.ls30_c01251{letter-spacing:1.009800px;}
.ls28_c01251{letter-spacing:1.049400px;}
.ls2c_c01251{letter-spacing:1.069200px;}
.ls31_c01251{letter-spacing:1.098900px;}
.ls8_c01251{letter-spacing:1.425600px;}
.lsb_c01251{letter-spacing:1.564200px;}
.ls29_c01251{letter-spacing:2.257200px;}
.ls1_c01251{letter-spacing:2.365080px;}
.ls36_c01251{letter-spacing:2.439558px;}
.ls19_c01251{letter-spacing:2.919636px;}
.ls2d_c01251{letter-spacing:3.445200px;}
.ls1a_c01251{letter-spacing:3.544200px;}
.ls2_c01251{letter-spacing:3.569475px;}
.ls20_c01251{letter-spacing:3.583650px;}
.ls15_c01251{letter-spacing:3.583810px;}
.ls26_c01251{letter-spacing:3.643200px;}
.ls14_c01251{letter-spacing:3.653110px;}
.ls4_c01251{letter-spacing:3.663000px;}
.ls3_c01251{letter-spacing:3.752110px;}
.ls17_c01251{letter-spacing:3.801610px;}
.lsa_c01251{letter-spacing:3.920400px;}
.ls11_c01251{letter-spacing:3.989700px;}
.ls12_c01251{letter-spacing:4.049110px;}
.ls33_c01251{letter-spacing:4.336200px;}
.lsd_c01251{letter-spacing:51.321798px;}
.ls22_c01251{letter-spacing:55.598598px;}
.ls21_c01251{letter-spacing:57.024198px;}
.ls24_c01251{letter-spacing:61.300998px;}
.ls34_c01251{letter-spacing:62.726400px;}
.ls0_c01251{letter-spacing:266.069958px;}
.sc__c01251{text-shadow:none;}
.sc0_c01251{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01251{-webkit-text-stroke:0px transparent;}
.sc0_c01251{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01251{word-spacing:-18.315000px;}
.ws1_c01251{word-spacing:-12.474050px;}
.ws2_c01251{word-spacing:0.000000px;}
._5_c01251{margin-left:-17.362620px;}
._9_c01251{margin-left:-12.573891px;}
._c_c01251{margin-left:-5.443416px;}
._0_c01251{width:4.761900px;}
._8_c01251{width:6.586404px;}
._4_c01251{width:8.937720px;}
._3_c01251{width:10.329660px;}
._7_c01251{width:13.479840px;}
._b_c01251{width:24.297167px;}
._1_c01251{width:26.300340px;}
._a_c01251{width:29.490587px;}
._6_c01251{width:31.920372px;}
._e_c01251{width:33.741576px;}
._2_c01251{width:34.745040px;}
._f_c01251{width:41.963279px;}
._d_c01251{width:50.707800px;}
.fc0_c01251{color:transparent;}
.fsb_c01251{font-size:17.028000px;}
.fs26_c01251{font-size:18.414000px;}
.fs16_c01251{font-size:18.612000px;}
.fsa_c01251{font-size:19.008000px;}
.fs17_c01251{font-size:19.206000px;}
.fs3_c01251{font-size:19.800000px;}
.fs9_c01251{font-size:19.998000px;}
.fs27_c01251{font-size:20.196000px;}
.fs22_c01251{font-size:20.988000px;}
.fs24_c01251{font-size:21.384000px;}
.fs28_c01251{font-size:21.978000px;}
.fs11_c01251{font-size:26.928000px;}
.fs1e_c01251{font-size:27.720000px;}
.fs4_c01251{font-size:28.512000px;}
.fs7_c01251{font-size:31.284000px;}
.fs23_c01251{font-size:45.144000px;}
.fs6_c01251{font-size:47.520000px;}
.fs2_c01251{font-size:49.104000px;}
.fs1a_c01251{font-size:49.896198px;}
.fs8_c01251{font-size:51.321798px;}
.fs1b_c01251{font-size:55.598598px;}
.fs19_c01251{font-size:57.024198px;}
.fs1d_c01251{font-size:61.300998px;}
.fs2b_c01251{font-size:62.726400px;}
.fs1c_c01251{font-size:64.548000px;}
.fs20_c01251{font-size:65.538000px;}
.fs21_c01251{font-size:68.904000px;}
.fs14_c01251{font-size:70.092198px;}
.fs15_c01251{font-size:70.884000px;}
.fs12_c01251{font-size:71.676198px;}
.fs1f_c01251{font-size:72.864000px;}
.fse_c01251{font-size:73.062198px;}
.fs1_c01251{font-size:73.260000px;}
.fs0_c01251{font-size:75.042198px;}
.fs13_c01251{font-size:76.032198px;}
.fs25_c01251{font-size:78.012198px;}
.fs5_c01251{font-size:78.408000px;}
.fsc_c01251{font-size:79.794000px;}
.fs18_c01251{font-size:79.992198px;}
.fsf_c01251{font-size:80.982198px;}
.fs29_c01251{font-size:81.378000px;}
.fs2a_c01251{font-size:86.724000px;}
.fs10_c01251{font-size:91.872198px;}
.fsd_c01251{font-size:95.832198px;}
.y0_c01251{bottom:0.000000px;}
.y23_c01251{bottom:3.114585px;}
.y1_c01251{bottom:76.500000px;}
.y22_c01251{bottom:102.198735px;}
.y21_c01251{bottom:133.918335px;}
.y20_c01251{bottom:165.632985px;}
.y1f_c01251{bottom:197.357535px;}
.y1e_c01251{bottom:229.428585px;}
.y1d_c01251{bottom:261.860985px;}
.y1c_c01251{bottom:293.936985px;}
.y1b_c01251{bottom:325.656585px;}
.y1a_c01251{bottom:352.035135px;}
.y19_c01251{bottom:357.732585px;}
.y18_c01251{bottom:388.739385px;}
.y17_c01251{bottom:421.176735px;}
.y16_c01251{bottom:452.896335px;}
.y15_c01251{bottom:484.259535px;}
.y14_c01251{bottom:515.261385px;}
.y13_c01251{bottom:547.693785px;}
.y12_c01251{bottom:579.056985px;}
.y11_c01251{bottom:610.781535px;}
.y10_c01251{bottom:642.501135px;}
.yf_c01251{bottom:674.933535px;}
.ye_c01251{bottom:699.881535px;}
.yd_c01251{bottom:706.296735px;}
.yc_c01251{bottom:735.160185px;}
.yb_c01251{bottom:738.372735px;}
.ya_c01251{bottom:769.374585px;}
.y9_c01251{bottom:797.173785px;}
.y8_c01251{bottom:802.163385px;}
.y7_c01251{bottom:829.254735px;}
.y5_c01251{bottom:833.887935px;}
.y6_c01251{bottom:861.325785px;}
.y4_c01251{bottom:864.894735px;}
.y3_c01251{bottom:897.683535px;}
.y2_c01251{bottom:928.328985px;}
.he_c01251{height:16.712051px;}
.hf_c01251{height:17.161031px;}
.h2a_c01251{height:18.557859px;}
.h24_c01251{height:18.655313px;}
.h1a_c01251{height:19.411734px;}
.hc_c01251{height:19.626943px;}
.hd_c01251{height:19.824750px;}
.h1b_c01251{height:20.031258px;}
.h5_c01251{height:20.650781px;}
.h27_c01251{height:20.987227px;}
.h2b_c01251{height:21.063797px;}
.h2c_c01251{height:21.559474px;}
.h25_c01251{height:21.889828px;}
.h2d_c01251{height:22.149703px;}
.h6_c01251{height:28.734750px;}
.h21_c01251{height:28.911094px;}
.h9_c01251{height:30.703535px;}
.ha_c01251{height:31.528406px;}
.hb_c01251{height:34.180317px;}
.h1e_c01251{height:37.028666px;}
.h1d_c01251{height:37.978116px;}
.h20_c01251{height:40.826465px;}
.h30_c01251{height:41.775782px;}
.h8_c01251{height:46.638281px;}
.h26_c01251{height:47.083781px;}
.h4_c01251{height:51.213938px;}
.h1f_c01251{height:67.321547px;}
.h23_c01251{height:67.625508px;}
.h19_c01251{height:69.568770px;}
.h15_c01251{height:70.346269px;}
.h29_c01251{height:71.437781px;}
.h22_c01251{height:71.512031px;}
.h12_c01251{height:71.706552px;}
.h3_c01251{height:71.900684px;}
.h18_c01251{height:73.103972px;}
.h2_c01251{height:73.649813px;}
.h17_c01251{height:74.621444px;}
.h31_c01251{height:76.407891px;}
.h28_c01251{height:76.564706px;}
.h16_c01251{height:76.626200px;}
.h7_c01251{height:76.953164px;}
.h13_c01251{height:79.440057px;}
.h10_c01251{height:80.417391px;}
.h1c_c01251{height:80.617137px;}
.h2e_c01251{height:82.013766px;}
.h2f_c01251{height:85.072518px;}
.h11_c01251{height:94.054062px;}
.h14_c01251{height:95.819832px;}
.h1_c01251{height:1110.000000px;}
.h0_c01251{height:1263.000000px;}
.w1_c01251{width:775.500000px;}
.w0_c01251{width:892.500000px;}
.x0_c01251{left:0.000000px;}
.x1_c01251{left:58.500000px;}
.x73_c01251{left:161.985435px;}
.x41_c01251{left:163.445685px;}
.x3b_c01251{left:164.485185px;}
.x3_c01251{left:165.539535px;}
.x2a_c01251{left:166.588935px;}
.x69_c01251{left:198.026385px;}
.x50_c01251{left:220.722135px;}
.x74_c01251{left:238.888635px;}
.x65_c01251{left:239.992485px;}
.x31_c01251{left:241.007235px;}
.x4_c01251{left:242.556585px;}
.x9_c01251{left:243.581235px;}
.x6a_c01251{left:248.848035px;}
.x4d_c01251{left:251.545785px;}
.x32_c01251{left:253.911885px;}
.x38_c01251{left:264.841485px;}
.x42_c01251{left:274.513785px;}
.x5_c01251{left:276.577935px;}
.x5f_c01251{left:285.992835px;}
.x2b_c01251{left:287.368935px;}
.xa_c01251{left:288.452985px;}
.x55_c01251{left:292.591185px;}
.x39_c01251{left:296.833335px;}
.x51_c01251{left:308.391585px;}
.x3c_c01251{left:309.510285px;}
.x66_c01251{left:316.861035px;}
.x2c_c01251{left:319.796385px;}
.x56_c01251{left:325.028535px;}
.x2f_c01251{left:328.968735px;}
.x3d_c01251{left:329.973585px;}
.x60_c01251{left:332.176335px;}
.x37_c01251{left:336.210585px;}
.x6e_c01251{left:339.388485px;}
.x17_c01251{left:340.937835px;}
.xb_c01251{left:342.734685px;}
.x6b_c01251{left:351.872385px;}
.x18_c01251{left:353.129685px;}
.x53_c01251{left:361.019985px;}
.x5a_c01251{left:362.084235px;}
.x2d_c01251{left:364.381035px;}
.x22_c01251{left:366.019485px;}
.x20_c01251{left:368.073735px;}
.x33_c01251{left:374.162235px;}
.xc_c01251{left:376.072935px;}
.x6f_c01251{left:385.774935px;}
.x47_c01251{left:387.037185px;}
.x23_c01251{left:388.274685px;}
.x48_c01251{left:395.595735px;}
.x19_c01251{left:396.783735px;}
.x49_c01251{left:399.159735px;}
.x5b_c01251{left:407.307435px;}
.x3e_c01251{left:408.574635px;}
.x24_c01251{left:410.138835px;}
.x54_c01251{left:418.370685px;}
.x43_c01251{left:420.281385px;}
.x25_c01251{left:421.573335px;}
.x1a_c01251{left:431.052585px;}
.x6_c01251{left:432.379185px;}
.x34_c01251{left:433.433535px;}
.x30_c01251{left:437.314335px;}
.x57_c01251{left:439.398285px;}
.x4e_c01251{left:441.670335px;}
.x14_c01251{left:442.793985px;}
.x58_c01251{left:448.199385px;}
.x70_c01251{left:451.842585px;}
.x1b_c01251{left:453.728535px;}
.x26_c01251{left:455.114535px;}
.x21_c01251{left:461.069385px;}
.x5c_c01251{left:463.772085px;}
.xd_c01251{left:464.890785px;}
.x27_c01251{left:466.261935px;}
.x12_c01251{left:473.142435px;}
.x15_c01251{left:475.028385px;}
.x13_c01251{left:478.127085px;}
.x6c_c01251{left:485.477835px;}
.x35_c01251{left:486.636135px;}
.x16_c01251{left:497.065785px;}
.xe_c01251{left:498.125085px;}
.x28_c01251{left:499.194285px;}
.x3f_c01251{left:507.049935px;}
.x29_c01251{left:510.336735px;}
.x6d_c01251{left:516.954885px;}
.x59_c01251{left:518.276535px;}
.x44_c01251{left:519.657585px;}
.x4a_c01251{left:521.048535px;}
.x61_c01251{left:530.785185px;}
.x4b_c01251{left:532.280085px;}
.x71_c01251{left:540.086235px;}
.x7_c01251{left:542.556285px;}
.x3a_c01251{left:551.802885px;}
.x2e_c01251{left:553.852185px;}
.x1c_c01251{left:563.960085px;}
.x4c_c01251{left:565.435185px;}
.x67_c01251{left:573.048285px;}
.x8_c01251{left:574.246185px;}
.x62_c01251{left:576.038085px;}
.xf_c01251{left:585.438135px;}
.x40_c01251{left:587.611185px;}
.x68_c01251{left:594.610485px;}
.x45_c01251{left:598.110135px;}
.x5d_c01251{left:606.025185px;}
.x1d_c01251{left:609.118935px;}
.x36_c01251{left:619.731735px;}
.x63_c01251{left:630.978135px;}
.x1e_c01251{left:641.105835px;}
.x52_c01251{left:642.580935px;}
.x46_c01251{left:652.104735px;}
.x10_c01251{left:654.347085px;}
.x5e_c01251{left:662.672985px;}
.x1f_c01251{left:663.742185px;}
.x64_c01251{left:668.177385px;}
.x72_c01251{left:672.983835px;}
.x4f_c01251{left:674.008485px;}
.x11_c01251{left:675.275685px;}
.x2_c01251{left:685.596435px;}
.x75_c01251{left:729.596985px;}
@media print{
.v0_c01251{vertical-align:0.000000pt;}
.ls9_c01251{letter-spacing:-2.279200pt;}
.ls16_c01251{letter-spacing:-2.229926pt;}
.ls35_c01251{letter-spacing:-2.205280pt;}
.ls25_c01251{letter-spacing:-2.143680pt;}
.ls23_c01251{letter-spacing:-2.008160pt;}
.ls18_c01251{letter-spacing:-1.993733pt;}
.ls6_c01251{letter-spacing:-1.527680pt;}
.ls2a_c01251{letter-spacing:-1.404480pt;}
.ls2f_c01251{letter-spacing:-0.628320pt;}
.ls1d_c01251{letter-spacing:-0.597520pt;}
.ls1b_c01251{letter-spacing:-0.579040pt;}
.lsc_c01251{letter-spacing:-0.506106pt;}
.ls27_c01251{letter-spacing:-0.483226pt;}
.ls32_c01251{letter-spacing:-0.260410pt;}
.ls5_c01251{letter-spacing:0.000000pt;}
.ls13_c01251{letter-spacing:0.162800pt;}
.ls1e_c01251{letter-spacing:0.331197pt;}
.ls2b_c01251{letter-spacing:0.629165pt;}
.ls10_c01251{letter-spacing:0.756800pt;}
.ls2e_c01251{letter-spacing:0.818400pt;}
.ls1c_c01251{letter-spacing:0.827200pt;}
.lsf_c01251{letter-spacing:0.844800pt;}
.ls1f_c01251{letter-spacing:0.853600pt;}
.ls7_c01251{letter-spacing:0.880000pt;}
.lse_c01251{letter-spacing:0.888800pt;}
.ls30_c01251{letter-spacing:0.897600pt;}
.ls28_c01251{letter-spacing:0.932800pt;}
.ls2c_c01251{letter-spacing:0.950400pt;}
.ls31_c01251{letter-spacing:0.976800pt;}
.ls8_c01251{letter-spacing:1.267200pt;}
.lsb_c01251{letter-spacing:1.390400pt;}
.ls29_c01251{letter-spacing:2.006400pt;}
.ls1_c01251{letter-spacing:2.102293pt;}
.ls36_c01251{letter-spacing:2.168496pt;}
.ls19_c01251{letter-spacing:2.595232pt;}
.ls2d_c01251{letter-spacing:3.062400pt;}
.ls1a_c01251{letter-spacing:3.150400pt;}
.ls2_c01251{letter-spacing:3.172866pt;}
.ls20_c01251{letter-spacing:3.185467pt;}
.ls15_c01251{letter-spacing:3.185609pt;}
.ls26_c01251{letter-spacing:3.238400pt;}
.ls14_c01251{letter-spacing:3.247209pt;}
.ls4_c01251{letter-spacing:3.256000pt;}
.ls3_c01251{letter-spacing:3.335209pt;}
.ls17_c01251{letter-spacing:3.379209pt;}
.lsa_c01251{letter-spacing:3.484800pt;}
.ls11_c01251{letter-spacing:3.546400pt;}
.ls12_c01251{letter-spacing:3.599209pt;}
.ls33_c01251{letter-spacing:3.854400pt;}
.lsd_c01251{letter-spacing:45.619376pt;}
.ls22_c01251{letter-spacing:49.420976pt;}
.ls21_c01251{letter-spacing:50.688176pt;}
.ls24_c01251{letter-spacing:54.489776pt;}
.ls34_c01251{letter-spacing:55.756800pt;}
.ls0_c01251{letter-spacing:236.506629pt;}
.ws0_c01251{word-spacing:-16.280000pt;}
.ws1_c01251{word-spacing:-11.088044pt;}
.ws2_c01251{word-spacing:0.000000pt;}
._5_c01251{margin-left:-15.433440pt;}
._9_c01251{margin-left:-11.176792pt;}
._c_c01251{margin-left:-4.838592pt;}
._0_c01251{width:4.232800pt;}
._8_c01251{width:5.854581pt;}
._4_c01251{width:7.944640pt;}
._3_c01251{width:9.181920pt;}
._7_c01251{width:11.982080pt;}
._b_c01251{width:21.597481pt;}
._1_c01251{width:23.378080pt;}
._a_c01251{width:26.213855pt;}
._6_c01251{width:28.373664pt;}
._e_c01251{width:29.992512pt;}
._2_c01251{width:30.884480pt;}
._f_c01251{width:37.300693pt;}
._d_c01251{width:45.073600pt;}
.fsb_c01251{font-size:15.136000pt;}
.fs26_c01251{font-size:16.368000pt;}
.fs16_c01251{font-size:16.544000pt;}
.fsa_c01251{font-size:16.896000pt;}
.fs17_c01251{font-size:17.072000pt;}
.fs3_c01251{font-size:17.600000pt;}
.fs9_c01251{font-size:17.776000pt;}
.fs27_c01251{font-size:17.952000pt;}
.fs22_c01251{font-size:18.656000pt;}
.fs24_c01251{font-size:19.008000pt;}
.fs28_c01251{font-size:19.536000pt;}
.fs11_c01251{font-size:23.936000pt;}
.fs1e_c01251{font-size:24.640000pt;}
.fs4_c01251{font-size:25.344000pt;}
.fs7_c01251{font-size:27.808000pt;}
.fs23_c01251{font-size:40.128000pt;}
.fs6_c01251{font-size:42.240000pt;}
.fs2_c01251{font-size:43.648000pt;}
.fs1a_c01251{font-size:44.352176pt;}
.fs8_c01251{font-size:45.619376pt;}
.fs1b_c01251{font-size:49.420976pt;}
.fs19_c01251{font-size:50.688176pt;}
.fs1d_c01251{font-size:54.489776pt;}
.fs2b_c01251{font-size:55.756800pt;}
.fs1c_c01251{font-size:57.376000pt;}
.fs20_c01251{font-size:58.256000pt;}
.fs21_c01251{font-size:61.248000pt;}
.fs14_c01251{font-size:62.304176pt;}
.fs15_c01251{font-size:63.008000pt;}
.fs12_c01251{font-size:63.712176pt;}
.fs1f_c01251{font-size:64.768000pt;}
.fse_c01251{font-size:64.944176pt;}
.fs1_c01251{font-size:65.120000pt;}
.fs0_c01251{font-size:66.704176pt;}
.fs13_c01251{font-size:67.584176pt;}
.fs25_c01251{font-size:69.344176pt;}
.fs5_c01251{font-size:69.696000pt;}
.fsc_c01251{font-size:70.928000pt;}
.fs18_c01251{font-size:71.104176pt;}
.fsf_c01251{font-size:71.984176pt;}
.fs29_c01251{font-size:72.336000pt;}
.fs2a_c01251{font-size:77.088000pt;}
.fs10_c01251{font-size:81.664176pt;}
.fsd_c01251{font-size:85.184176pt;}
.y0_c01251{bottom:0.000000pt;}
.y23_c01251{bottom:2.768520pt;}
.y1_c01251{bottom:68.000000pt;}
.y22_c01251{bottom:90.843320pt;}
.y21_c01251{bottom:119.038520pt;}
.y20_c01251{bottom:147.229320pt;}
.y1f_c01251{bottom:175.428920pt;}
.y1e_c01251{bottom:203.936520pt;}
.y1d_c01251{bottom:232.765320pt;}
.y1c_c01251{bottom:261.277320pt;}
.y1b_c01251{bottom:289.472520pt;}
.y1a_c01251{bottom:312.920120pt;}
.y19_c01251{bottom:317.984520pt;}
.y18_c01251{bottom:345.546120pt;}
.y17_c01251{bottom:374.379320pt;}
.y16_c01251{bottom:402.574520pt;}
.y15_c01251{bottom:430.452920pt;}
.y14_c01251{bottom:458.010120pt;}
.y13_c01251{bottom:486.838920pt;}
.y12_c01251{bottom:514.717320pt;}
.y11_c01251{bottom:542.916920pt;}
.y10_c01251{bottom:571.112120pt;}
.yf_c01251{bottom:599.940920pt;}
.ye_c01251{bottom:622.116920pt;}
.yd_c01251{bottom:627.819320pt;}
.yc_c01251{bottom:653.475720pt;}
.yb_c01251{bottom:656.331320pt;}
.ya_c01251{bottom:683.888520pt;}
.y9_c01251{bottom:708.598920pt;}
.y8_c01251{bottom:713.034120pt;}
.y7_c01251{bottom:737.115320pt;}
.y5_c01251{bottom:741.233720pt;}
.y6_c01251{bottom:765.622920pt;}
.y4_c01251{bottom:768.795320pt;}
.y3_c01251{bottom:797.940920pt;}
.y2_c01251{bottom:825.181320pt;}
.he_c01251{height:14.855156pt;}
.hf_c01251{height:15.254250pt;}
.h2a_c01251{height:16.495875pt;}
.h24_c01251{height:16.582500pt;}
.h1a_c01251{height:17.254875pt;}
.hc_c01251{height:17.446172pt;}
.hd_c01251{height:17.622000pt;}
.h1b_c01251{height:17.805563pt;}
.h5_c01251{height:18.356250pt;}
.h27_c01251{height:18.655313pt;}
.h2b_c01251{height:18.723375pt;}
.h2c_c01251{height:19.163977pt;}
.h25_c01251{height:19.457625pt;}
.h2d_c01251{height:19.688625pt;}
.h6_c01251{height:25.542000pt;}
.h21_c01251{height:25.698750pt;}
.h9_c01251{height:27.292031pt;}
.ha_c01251{height:28.025250pt;}
.hb_c01251{height:30.382504pt;}
.h1e_c01251{height:32.914370pt;}
.h1d_c01251{height:33.758325pt;}
.h20_c01251{height:36.290191pt;}
.h30_c01251{height:37.134029pt;}
.h8_c01251{height:41.456250pt;}
.h26_c01251{height:41.852250pt;}
.h4_c01251{height:45.523500pt;}
.h1f_c01251{height:59.841375pt;}
.h23_c01251{height:60.111562pt;}
.h19_c01251{height:61.838906pt;}
.h15_c01251{height:62.530016pt;}
.h29_c01251{height:63.500250pt;}
.h22_c01251{height:63.566250pt;}
.h12_c01251{height:63.739157pt;}
.h3_c01251{height:63.911719pt;}
.h18_c01251{height:64.981309pt;}
.h2_c01251{height:65.466501pt;}
.h17_c01251{height:66.330173pt;}
.h31_c01251{height:67.918125pt;}
.h28_c01251{height:68.057516pt;}
.h16_c01251{height:68.112177pt;}
.h7_c01251{height:68.402813pt;}
.h13_c01251{height:70.613384pt;}
.h10_c01251{height:71.482125pt;}
.h1c_c01251{height:71.659677pt;}
.h2e_c01251{height:72.901125pt;}
.h2f_c01251{height:75.620016pt;}
.h11_c01251{height:83.603610pt;}
.h14_c01251{height:85.173184pt;}
.h1_c01251{height:986.666667pt;}
.h0_c01251{height:1122.666667pt;}
.w1_c01251{width:689.333333pt;}
.w0_c01251{width:793.333333pt;}
.x0_c01251{left:0.000000pt;}
.x1_c01251{left:52.000000pt;}
.x73_c01251{left:143.987053pt;}
.x41_c01251{left:145.285053pt;}
.x3b_c01251{left:146.209053pt;}
.x3_c01251{left:147.146253pt;}
.x2a_c01251{left:148.079053pt;}
.x69_c01251{left:176.023453pt;}
.x50_c01251{left:196.197453pt;}
.x74_c01251{left:212.345453pt;}
.x65_c01251{left:213.326653pt;}
.x31_c01251{left:214.228653pt;}
.x4_c01251{left:215.605853pt;}
.x9_c01251{left:216.516653pt;}
.x6a_c01251{left:221.198253pt;}
.x4d_c01251{left:223.596253pt;}
.x32_c01251{left:225.699453pt;}
.x38_c01251{left:235.414653pt;}
.x42_c01251{left:244.012253pt;}
.x5_c01251{left:245.847053pt;}
.x5f_c01251{left:254.215853pt;}
.x2b_c01251{left:255.439053pt;}
.xa_c01251{left:256.402653pt;}
.x55_c01251{left:260.081053pt;}
.x39_c01251{left:263.851853pt;}
.x51_c01251{left:274.125853pt;}
.x3c_c01251{left:275.120253pt;}
.x66_c01251{left:281.654253pt;}
.x2c_c01251{left:284.263453pt;}
.x56_c01251{left:288.914253pt;}
.x2f_c01251{left:292.416653pt;}
.x3d_c01251{left:293.309853pt;}
.x60_c01251{left:295.267853pt;}
.x37_c01251{left:298.853853pt;}
.x6e_c01251{left:301.678653pt;}
.x17_c01251{left:303.055853pt;}
.xb_c01251{left:304.653053pt;}
.x6b_c01251{left:312.775453pt;}
.x18_c01251{left:313.893053pt;}
.x53_c01251{left:320.906653pt;}
.x5a_c01251{left:321.852653pt;}
.x2d_c01251{left:323.894253pt;}
.x22_c01251{left:325.350653pt;}
.x20_c01251{left:327.176653pt;}
.x33_c01251{left:332.588653pt;}
.xc_c01251{left:334.287053pt;}
.x6f_c01251{left:342.911053pt;}
.x47_c01251{left:344.033053pt;}
.x23_c01251{left:345.133053pt;}
.x48_c01251{left:351.640653pt;}
.x19_c01251{left:352.696653pt;}
.x49_c01251{left:354.808653pt;}
.x5b_c01251{left:362.051053pt;}
.x3e_c01251{left:363.177453pt;}
.x24_c01251{left:364.567853pt;}
.x54_c01251{left:371.885053pt;}
.x43_c01251{left:373.583453pt;}
.x25_c01251{left:374.731853pt;}
.x1a_c01251{left:383.157853pt;}
.x6_c01251{left:384.337053pt;}
.x34_c01251{left:385.274253pt;}
.x30_c01251{left:388.723853pt;}
.x57_c01251{left:390.576253pt;}
.x4e_c01251{left:392.595853pt;}
.x14_c01251{left:393.594653pt;}
.x58_c01251{left:398.399453pt;}
.x70_c01251{left:401.637853pt;}
.x1b_c01251{left:403.314253pt;}
.x26_c01251{left:404.546253pt;}
.x21_c01251{left:409.839453pt;}
.x5c_c01251{left:412.241853pt;}
.xd_c01251{left:413.236253pt;}
.x27_c01251{left:414.455053pt;}
.x12_c01251{left:420.571053pt;}
.x15_c01251{left:422.247453pt;}
.x13_c01251{left:425.001853pt;}
.x6c_c01251{left:431.535853pt;}
.x35_c01251{left:432.565453pt;}
.x16_c01251{left:441.836253pt;}
.xe_c01251{left:442.777853pt;}
.x28_c01251{left:443.728253pt;}
.x3f_c01251{left:450.711053pt;}
.x29_c01251{left:453.632653pt;}
.x6d_c01251{left:459.515453pt;}
.x59_c01251{left:460.690253pt;}
.x44_c01251{left:461.917853pt;}
.x4a_c01251{left:463.154253pt;}
.x61_c01251{left:471.809053pt;}
.x4b_c01251{left:473.137853pt;}
.x71_c01251{left:480.076653pt;}
.x7_c01251{left:482.272253pt;}
.x3a_c01251{left:490.491453pt;}
.x2e_c01251{left:492.313053pt;}
.x1c_c01251{left:501.297853pt;}
.x4c_c01251{left:502.609053pt;}
.x67_c01251{left:509.376253pt;}
.x8_c01251{left:510.441053pt;}
.x62_c01251{left:512.033853pt;}
.xf_c01251{left:520.389453pt;}
.x40_c01251{left:522.321053pt;}
.x68_c01251{left:528.542653pt;}
.x45_c01251{left:531.653453pt;}
.x5d_c01251{left:538.689053pt;}
.x1d_c01251{left:541.439053pt;}
.x36_c01251{left:550.872653pt;}
.x63_c01251{left:560.869453pt;}
.x1e_c01251{left:569.871853pt;}
.x52_c01251{left:571.183053pt;}
.x46_c01251{left:579.648653pt;}
.x10_c01251{left:581.641853pt;}
.x5e_c01251{left:589.042653pt;}
.x1f_c01251{left:589.993053pt;}
.x64_c01251{left:593.935453pt;}
.x72_c01251{left:598.207853pt;}
.x4f_c01251{left:599.118653pt;}
.x11_c01251{left:600.245053pt;}
.x2_c01251{left:609.419053pt;}
.x75_c01251{left:648.530653pt;}
}





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

.ir_c01252:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01252{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01252;src:url('chunks/assets/font_da8445a697aaa1f733283bd9.woff2')format("woff");}.ff1_c01252{font-family:ff1_c01252;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01252;src:url('chunks/assets/font_49f1ed31b974bf2695d4f9cd.woff2')format("woff");}.ff2_c01252{font-family:ff2_c01252;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01252;src:url('chunks/assets/font_bf6774cbf115e7b967a6c49c.woff2')format("woff");}.ff3_c01252{font-family:ff3_c01252;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01252;src:url('chunks/assets/font_db6c86758ce539afa507265b.woff2')format("woff");}.ff4_c01252{font-family:ff4_c01252;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01252;src:url('chunks/assets/font_3aed865531b6f5185ef02fd0.woff2')format("woff");}.ff5_c01252{font-family:ff5_c01252;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01252;src:url('chunks/assets/font_6cf0290bcaa0cc24f4bc805f.woff2')format("woff");}.ff6_c01252{font-family:ff6_c01252;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2d_c01252{transform:matrix(0.146794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146794,0.000000,0.000000,0.250000,0,0);}
.m1b_c01252{transform:matrix(0.162191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162191,0.000000,0.000000,0.250000,0,0);}
.m25_c01252{transform:matrix(0.186497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186497,0.000000,0.000000,0.250000,0,0);}
.m28_c01252{transform:matrix(0.188490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188490,0.000000,0.000000,0.250000,0,0);}
.m24_c01252{transform:matrix(0.203451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203451,0.000000,0.000000,0.250000,0,0);}
.m1d_c01252{transform:matrix(0.211320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211320,0.000000,0.000000,0.250000,0,0);}
.mf_c01252{transform:matrix(0.215303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215303,0.000000,0.000000,0.250000,0,0);}
.m2c_c01252{transform:matrix(0.220122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220122,0.000000,0.000000,0.250000,0,0);}
.m2_c01252{transform:matrix(0.226519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226519,0.000000,0.000000,0.250000,0,0);}
.m1a_c01252{transform:matrix(0.241596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241596,0.000000,0.000000,0.250000,0,0);}
.m1_c01252{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01252{transform:matrix(0.251843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251843,0.000000,0.000000,0.250000,0,0);}
.m26_c01252{transform:matrix(0.253396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253396,0.000000,0.000000,0.250000,0,0);}
.m8_c01252{transform:matrix(0.253496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253496,0.000000,0.000000,0.250000,0,0);}
.m2a_c01252{transform:matrix(0.254258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254258,0.000000,0.000000,0.250000,0,0);}
.m20_c01252{transform:matrix(0.254881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254881,0.000000,0.000000,0.250000,0,0);}
.m29_c01252{transform:matrix(0.255591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255591,0.000000,0.000000,0.250000,0,0);}
.mc_c01252{transform:matrix(0.257392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257392,0.000000,0.000000,0.250000,0,0);}
.ma_c01252{transform:matrix(0.262779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262779,0.000000,0.000000,0.250000,0,0);}
.m22_c01252{transform:matrix(0.264687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264687,0.000000,0.000000,0.250000,0,0);}
.m0_c01252{transform:matrix(0.271540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271540,0.000000,0.000000,0.250000,0,0);}
.m21_c01252{transform:matrix(0.272602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272602,0.000000,0.000000,0.250000,0,0);}
.mb_c01252{transform:matrix(0.272724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272724,0.000000,0.000000,0.250000,0,0);}
.m1c_c01252{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01252{transform:matrix(0.276113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276113,0.000000,0.000000,0.250000,0,0);}
.m17_c01252{transform:matrix(0.281133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281133,0.000000,0.000000,0.250000,0,0);}
.md_c01252{transform:matrix(0.286736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286736,0.000000,0.000000,0.250000,0,0);}
.m3_c01252{transform:matrix(0.287188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287188,0.000000,0.000000,0.250000,0,0);}
.m1f_c01252{transform:matrix(0.304553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304553,0.000000,0.000000,0.250000,0,0);}
.m27_c01252{transform:matrix(0.310274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310274,0.000000,0.000000,0.250000,0,0);}
.m2b_c01252{transform:matrix(0.311116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311116,0.000000,0.000000,0.250000,0,0);}
.m12_c01252{transform:matrix(0.328933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328933,0.000000,0.000000,0.250000,0,0);}
.m23_c01252{transform:matrix(0.340075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340075,0.000000,0.000000,0.250000,0,0);}
.m14_c01252{transform:matrix(0.363189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363189,0.000000,0.000000,0.250000,0,0);}
.m4_c01252{transform:matrix(0.375581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375581,0.000000,0.000000,0.250000,0,0);}
.m6_c01252{transform:matrix(0.408607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408607,0.000000,0.000000,0.250000,0,0);}
.m19_c01252{transform:matrix(0.465194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465194,0.000000,0.000000,0.250000,0,0);}
.m16_c01252{transform:matrix(0.469480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469480,0.000000,0.000000,0.250000,0,0);}
.me_c01252{transform:matrix(0.503646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503646,0.000000,0.000000,0.250000,0,0);}
.m18_c01252{transform:matrix(0.520526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520526,0.000000,0.000000,0.250000,0,0);}
.m10_c01252{transform:matrix(0.557407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557407,0.000000,0.000000,0.250000,0,0);}
.m15_c01252{transform:matrix(0.653187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.653187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.653187,0.000000,0.000000,0.250000,0,0);}
.m11_c01252{transform:matrix(0.768027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.768027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.768027,0.000000,0.000000,0.250000,0,0);}
.m5_c01252{transform:matrix(0.956971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.956971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.956971,0.000000,0.000000,0.250000,0,0);}
.m13_c01252{transform:matrix(1.229822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.229822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.229822,0.000000,0.000000,0.250000,0,0);}
.m7_c01252{transform:matrix(1.406253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.406253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.406253,0.000000,0.000000,0.250000,0,0);}
.v2_c01252{vertical-align:-5.682600px;}
.v4_c01252{vertical-align:-2.831400px;}
.v6_c01252{vertical-align:-1.425600px;}
.v0_c01252{vertical-align:0.000000px;}
.v1_c01252{vertical-align:1.405800px;}
.v7_c01252{vertical-align:2.882880px;}
.v8_c01252{vertical-align:7.147800px;}
.v5_c01252{vertical-align:9.979200px;}
.v3_c01252{vertical-align:11.404800px;}
.ls26_c01252{letter-spacing:-4.989600px;}
.ls18_c01252{letter-spacing:-4.546087px;}
.ls8_c01252{letter-spacing:-3.880800px;}
.ls25_c01252{letter-spacing:-2.279977px;}
.ls27_c01252{letter-spacing:-2.189880px;}
.ls16_c01252{letter-spacing:-2.104190px;}
.ls19_c01252{letter-spacing:-1.981980px;}
.ls22_c01252{letter-spacing:-1.580040px;}
.ls12_c01252{letter-spacing:-1.427580px;}
.ls1b_c01252{letter-spacing:-1.018710px;}
.ls9_c01252{letter-spacing:-0.827306px;}
.ls1c_c01252{letter-spacing:-0.376359px;}
.ls7_c01252{letter-spacing:0.000000px;}
.ls20_c01252{letter-spacing:0.237164px;}
.ls21_c01252{letter-spacing:0.480586px;}
.lsb_c01252{letter-spacing:0.950400px;}
.ls13_c01252{letter-spacing:0.960300px;}
.ls2_c01252{letter-spacing:1.010400px;}
.ls24_c01252{letter-spacing:1.502586px;}
.ls23_c01252{letter-spacing:1.524600px;}
.lsd_c01252{letter-spacing:1.603810px;}
.ls5_c01252{letter-spacing:1.756342px;}
.ls11_c01252{letter-spacing:2.039400px;}
.ls3_c01252{letter-spacing:2.132701px;}
.ls14_c01252{letter-spacing:2.168100px;}
.ls0_c01252{letter-spacing:2.214894px;}
.ls1_c01252{letter-spacing:2.793067px;}
.ls17_c01252{letter-spacing:3.177900px;}
.lsa_c01252{letter-spacing:3.257110px;}
.ls15_c01252{letter-spacing:3.276900px;}
.ls1e_c01252{letter-spacing:3.306610px;}
.lsf_c01252{letter-spacing:3.494700px;}
.ls1d_c01252{letter-spacing:3.583810px;}
.ls1f_c01252{letter-spacing:3.643200px;}
.ls6_c01252{letter-spacing:3.861000px;}
.ls10_c01252{letter-spacing:3.900610px;}
.lsc_c01252{letter-spacing:4.098610px;}
.ls4_c01252{letter-spacing:6.035682px;}
.ls1a_c01252{letter-spacing:14.256198px;}
.lse_c01252{letter-spacing:15.681798px;}
.sc__c01252{text-shadow:none;}
.sc0_c01252{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01252{-webkit-text-stroke:0px transparent;}
.sc0_c01252{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01252{word-spacing:-40.883732px;}
.ws2_c01252{word-spacing:-36.980750px;}
.ws1_c01252{word-spacing:-16.285550px;}
.ws4_c01252{word-spacing:0.000000px;}
.ws0_c01252{word-spacing:20.329175px;}
._17_c01252{margin-left:-28.003646px;}
._13_c01252{margin-left:-26.680104px;}
._16_c01252{margin-left:-24.354099px;}
._15_c01252{margin-left:-22.383504px;}
._1d_c01252{margin-left:-19.505638px;}
._14_c01252{margin-left:-16.030982px;}
._1_c01252{margin-left:-4.885716px;}
._1b_c01252{width:2.417262px;}
._b_c01252{width:4.448862px;}
._f_c01252{width:6.474589px;}
._0_c01252{width:7.817095px;}
._10_c01252{width:8.873579px;}
._11_c01252{width:10.360922px;}
._19_c01252{width:12.252240px;}
._c_c01252{width:14.244065px;}
._1a_c01252{width:15.808661px;}
._7_c01252{width:18.700159px;}
._e_c01252{width:20.584283px;}
._9_c01252{width:22.100641px;}
._5_c01252{width:23.511787px;}
._4_c01252{width:24.955405px;}
._3_c01252{width:26.366551px;}
._8_c01252{width:27.809773px;}
._6_c01252{width:29.221513px;}
._d_c01252{width:30.642005px;}
._2_c01252{width:36.486965px;}
._12_c01252{width:47.308085px;}
._a_c01252{width:61.756200px;}
._18_c01252{width:64.953227px;}
._1c_c01252{width:65.973244px;}
.fc0_c01252{color:transparent;}
.fs1c_c01252{font-size:14.256198px;}
.fs8_c01252{font-size:15.681798px;}
.fs3_c01252{font-size:19.008000px;}
.fsd_c01252{font-size:19.206000px;}
.fs2b_c01252{font-size:22.176000px;}
.fs23_c01252{font-size:22.374000px;}
.fs12_c01252{font-size:26.136000px;}
.fs1d_c01252{font-size:29.106000px;}
.fs26_c01252{font-size:30.492000px;}
.fs7_c01252{font-size:32.076198px;}
.fs13_c01252{font-size:36.036198px;}
.fsc_c01252{font-size:40.788000px;}
.fse_c01252{font-size:43.362000px;}
.fsa_c01252{font-size:45.144000px;}
.fs24_c01252{font-size:46.530000px;}
.fs20_c01252{font-size:49.896198px;}
.fs1f_c01252{font-size:50.688000px;}
.fs11_c01252{font-size:55.440000px;}
.fs18_c01252{font-size:56.628000px;}
.fs2a_c01252{font-size:60.192000px;}
.fs6_c01252{font-size:60.984000px;}
.fs14_c01252{font-size:62.568000px;}
.fs16_c01252{font-size:63.558000px;}
.fs2_c01252{font-size:65.142198px;}
.fs10_c01252{font-size:65.538000px;}
.fs21_c01252{font-size:66.132198px;}
.fs15_c01252{font-size:66.528000px;}
.fs9_c01252{font-size:69.894000px;}
.fs1e_c01252{font-size:71.676198px;}
.fs22_c01252{font-size:72.864000px;}
.fs27_c01252{font-size:73.656198px;}
.fs0_c01252{font-size:77.220000px;}
.fsb_c01252{font-size:78.012198px;}
.fs5_c01252{font-size:81.972198px;}
.fsf_c01252{font-size:85.536198px;}
.fs4_c01252{font-size:107.712198px;}
.fs1_c01252{font-size:110.880000px;}
.fs25_c01252{font-size:117.216198px;}
.fs19_c01252{font-size:120.384000px;}
.fs17_c01252{font-size:129.888198px;}
.fs1b_c01252{font-size:133.056198px;}
.fs1a_c01252{font-size:137.808198px;}
.fs29_c01252{font-size:139.392198px;}
.fs28_c01252{font-size:142.560000px;}
.y0_c01252{bottom:0.000000px;}
.y1_c01252{bottom:76.500000px;}
.y1a_c01252{bottom:239.769135px;}
.y19_c01252{bottom:631.091385px;}
.y17_c01252{bottom:661.746735px;}
.y18_c01252{bottom:662.098185px;}
.y16_c01252{bottom:692.035785px;}
.y15_c01252{bottom:693.109935px;}
.y13_c01252{bottom:721.616985px;}
.y14_c01252{bottom:723.760335px;}
.y12_c01252{bottom:725.185935px;}
.y11_c01252{bottom:756.192735px;}
.yf_c01252{bottom:756.549135px;}
.y10_c01252{bottom:756.900585px;}
.ye_c01252{bottom:785.768985px;}
.yd_c01252{bottom:788.981535px;}
.yc_c01252{bottom:819.983385px;}
.yb_c01252{bottom:820.701135px;}
.ya_c01252{bottom:845.292735px;}
.y7_c01252{bottom:851.351535px;}
.y8_c01252{bottom:851.707935px;}
.y9_c01252{bottom:852.059385px;}
.y6_c01252{bottom:873.804735px;}
.y5_c01252{bottom:881.996985px;}
.y3_c01252{bottom:883.071135px;}
.y4_c01252{bottom:883.778985px;}
.y2_c01252{bottom:924.769935px;}
.h19_c01252{height:9.494628px;}
.ha_c01252{height:10.444077px;}
.h5_c01252{height:19.824750px;}
.h10_c01252{height:20.031258px;}
.h27_c01252{height:23.128875px;}
.h1a_c01252{height:28.565947px;}
.h21_c01252{height:29.926230px;}
.h9_c01252{height:31.481034px;}
.he_c01252{height:40.011275px;}
.hf_c01252{height:41.106656px;}
.h11_c01252{height:43.700766px;}
.hc_c01252{height:47.083781px;}
.h17_c01252{height:59.061234px;}
.h26_c01252{height:62.778375px;}
.h8_c01252{height:63.604406px;}
.h4_c01252{height:63.933505px;}
.h24_c01252{height:65.256469px;}
.h15_c01252{height:66.289008px;}
.h1d_c01252{height:66.475406px;}
.h13_c01252{height:68.354086px;}
.h1e_c01252{height:68.973816px;}
.h1c_c01252{height:70.346269px;}
.h22_c01252{height:71.098913px;}
.h1f_c01252{height:71.512031px;}
.hb_c01252{height:72.897258px;}
.h2_c01252{height:75.787207px;}
.hd_c01252{height:76.564706px;}
.h12_c01252{height:78.266501px;}
.h7_c01252{height:80.451229px;}
.h1b_c01252{height:82.503701px;}
.h14_c01252{height:91.096901px;}
.h6_c01252{height:105.713632px;}
.h3_c01252{height:108.822656px;}
.h20_c01252{height:122.189088px;}
.h16_c01252{height:135.469332px;}
.h25_c01252{height:136.805819px;}
.h18_c01252{height:138.773457px;}
.h23_c01252{height:148.685625px;}
.h1_c01252{height:1110.000000px;}
.h0_c01252{height:1263.000000px;}
.w1_c01252{width:775.500000px;}
.w0_c01252{width:892.500000px;}
.x0_c01252{left:0.000000px;}
.x1_c01252{left:58.500000px;}
.x4_c01252{left:111.480585px;}
.x29_c01252{left:112.549785px;}
.x5_c01252{left:155.560335px;}
.x2a_c01252{left:157.436385px;}
.x2b_c01252{left:179.552985px;}
.x12_c01252{left:185.210835px;}
.x2c_c01252{left:200.516235px;}
.x22_c01252{left:222.122985px;}
.x6_c01252{left:223.459485px;}
.x2d_c01252{left:231.958635px;}
.x7_c01252{left:255.951285px;}
.x2e_c01252{left:266.069085px;}
.x19_c01252{left:276.954135px;}
.xd_c01252{left:282.998085px;}
.x1a_c01252{left:289.972635px;}
.x1c_c01252{left:301.204185px;}
.x8_c01252{left:302.728785px;}
.x9_c01252{left:313.480185px;}
.x23_c01252{left:324.449385px;}
.x1b_c01252{left:335.497785px;}
.x1d_c01252{left:346.268985px;}
.x13_c01252{left:368.207385px;}
.x1e_c01252{left:379.414185px;}
.xa_c01252{left:390.749685px;}
.xb_c01252{left:401.278335px;}
.x14_c01252{left:412.722735px;}
.x15_c01252{left:447.214335px;}
.x24_c01252{left:457.713285px;}
.x25_c01252{left:468.781485px;}
.xe_c01252{left:479.522985px;}
.xf_c01252{left:490.620885px;}
.x1f_c01252{left:500.916885px;}
.x26_c01252{left:512.386035px;}
.x16_c01252{left:546.575685px;}
.x10_c01252{left:557.757735px;}
.x11_c01252{left:568.672485px;}
.x17_c01252{left:590.135685px;}
.x30_c01252{left:599.011035px;}
.x27_c01252{left:601.589985px;}
.x18_c01252{left:611.910735px;}
.x28_c01252{left:634.928235px;}
.x20_c01252{left:646.011285px;}
.x21_c01252{left:656.356785px;}
.xc_c01252{left:667.751685px;}
.x2_c01252{left:688.447635px;}
.x2f_c01252{left:726.904185px;}
.x3_c01252{left:733.764885px;}
@media print{
.v2_c01252{vertical-align:-5.051200pt;}
.v4_c01252{vertical-align:-2.516800pt;}
.v6_c01252{vertical-align:-1.267200pt;}
.v0_c01252{vertical-align:0.000000pt;}
.v1_c01252{vertical-align:1.249600pt;}
.v7_c01252{vertical-align:2.562560pt;}
.v8_c01252{vertical-align:6.353600pt;}
.v5_c01252{vertical-align:8.870400pt;}
.v3_c01252{vertical-align:10.137600pt;}
.ls26_c01252{letter-spacing:-4.435200pt;}
.ls18_c01252{letter-spacing:-4.040966pt;}
.ls8_c01252{letter-spacing:-3.449600pt;}
.ls25_c01252{letter-spacing:-2.026646pt;}
.ls27_c01252{letter-spacing:-1.946560pt;}
.ls16_c01252{letter-spacing:-1.870392pt;}
.ls19_c01252{letter-spacing:-1.761760pt;}
.ls22_c01252{letter-spacing:-1.404480pt;}
.ls12_c01252{letter-spacing:-1.268960pt;}
.ls1b_c01252{letter-spacing:-0.905520pt;}
.ls9_c01252{letter-spacing:-0.735383pt;}
.ls1c_c01252{letter-spacing:-0.334542pt;}
.ls7_c01252{letter-spacing:0.000000pt;}
.ls20_c01252{letter-spacing:0.210813pt;}
.ls21_c01252{letter-spacing:0.427188pt;}
.lsb_c01252{letter-spacing:0.844800pt;}
.ls13_c01252{letter-spacing:0.853600pt;}
.ls2_c01252{letter-spacing:0.898134pt;}
.ls24_c01252{letter-spacing:1.335632pt;}
.ls23_c01252{letter-spacing:1.355200pt;}
.lsd_c01252{letter-spacing:1.425609pt;}
.ls5_c01252{letter-spacing:1.561193pt;}
.ls11_c01252{letter-spacing:1.812800pt;}
.ls3_c01252{letter-spacing:1.895734pt;}
.ls14_c01252{letter-spacing:1.927200pt;}
.ls0_c01252{letter-spacing:1.968795pt;}
.ls1_c01252{letter-spacing:2.482726pt;}
.ls17_c01252{letter-spacing:2.824800pt;}
.lsa_c01252{letter-spacing:2.895209pt;}
.ls15_c01252{letter-spacing:2.912800pt;}
.ls1e_c01252{letter-spacing:2.939209pt;}
.lsf_c01252{letter-spacing:3.106400pt;}
.ls1d_c01252{letter-spacing:3.185609pt;}
.ls1f_c01252{letter-spacing:3.238400pt;}
.ls6_c01252{letter-spacing:3.432000pt;}
.ls10_c01252{letter-spacing:3.467209pt;}
.lsc_c01252{letter-spacing:3.643209pt;}
.ls4_c01252{letter-spacing:5.365051pt;}
.ls1a_c01252{letter-spacing:12.672176pt;}
.lse_c01252{letter-spacing:13.939376pt;}
.ws3_c01252{word-spacing:-36.341095pt;}
.ws2_c01252{word-spacing:-32.871778pt;}
.ws1_c01252{word-spacing:-14.476044pt;}
.ws4_c01252{word-spacing:0.000000pt;}
.ws0_c01252{word-spacing:18.070378pt;}
._17_c01252{margin-left:-24.892130pt;}
._13_c01252{margin-left:-23.715648pt;}
._16_c01252{margin-left:-21.648088pt;}
._15_c01252{margin-left:-19.896448pt;}
._1d_c01252{margin-left:-17.338345pt;}
._14_c01252{margin-left:-14.249762pt;}
._1_c01252{margin-left:-4.342859pt;}
._1b_c01252{width:2.148677pt;}
._b_c01252{width:3.954544pt;}
._f_c01252{width:5.755190pt;}
._0_c01252{width:6.948529pt;}
._10_c01252{width:7.887626pt;}
._11_c01252{width:9.209708pt;}
._19_c01252{width:10.890880pt;}
._c_c01252{width:12.661391pt;}
._1a_c01252{width:14.052143pt;}
._7_c01252{width:16.622364pt;}
._e_c01252{width:18.297141pt;}
._9_c01252{width:19.645014pt;}
._5_c01252{width:20.899366pt;}
._4_c01252{width:22.182582pt;}
._3_c01252{width:23.436934pt;}
._8_c01252{width:24.719798pt;}
._6_c01252{width:25.974678pt;}
._d_c01252{width:27.237338pt;}
._2_c01252{width:32.432858pt;}
._12_c01252{width:42.051631pt;}
._a_c01252{width:54.894400pt;}
._18_c01252{width:57.736202pt;}
._1c_c01252{width:58.642883pt;}
.fs1c_c01252{font-size:12.672176pt;}
.fs8_c01252{font-size:13.939376pt;}
.fs3_c01252{font-size:16.896000pt;}
.fsd_c01252{font-size:17.072000pt;}
.fs2b_c01252{font-size:19.712000pt;}
.fs23_c01252{font-size:19.888000pt;}
.fs12_c01252{font-size:23.232000pt;}
.fs1d_c01252{font-size:25.872000pt;}
.fs26_c01252{font-size:27.104000pt;}
.fs7_c01252{font-size:28.512176pt;}
.fs13_c01252{font-size:32.032176pt;}
.fsc_c01252{font-size:36.256000pt;}
.fse_c01252{font-size:38.544000pt;}
.fsa_c01252{font-size:40.128000pt;}
.fs24_c01252{font-size:41.360000pt;}
.fs20_c01252{font-size:44.352176pt;}
.fs1f_c01252{font-size:45.056000pt;}
.fs11_c01252{font-size:49.280000pt;}
.fs18_c01252{font-size:50.336000pt;}
.fs2a_c01252{font-size:53.504000pt;}
.fs6_c01252{font-size:54.208000pt;}
.fs14_c01252{font-size:55.616000pt;}
.fs16_c01252{font-size:56.496000pt;}
.fs2_c01252{font-size:57.904176pt;}
.fs10_c01252{font-size:58.256000pt;}
.fs21_c01252{font-size:58.784176pt;}
.fs15_c01252{font-size:59.136000pt;}
.fs9_c01252{font-size:62.128000pt;}
.fs1e_c01252{font-size:63.712176pt;}
.fs22_c01252{font-size:64.768000pt;}
.fs27_c01252{font-size:65.472176pt;}
.fs0_c01252{font-size:68.640000pt;}
.fsb_c01252{font-size:69.344176pt;}
.fs5_c01252{font-size:72.864176pt;}
.fsf_c01252{font-size:76.032176pt;}
.fs4_c01252{font-size:95.744176pt;}
.fs1_c01252{font-size:98.560000pt;}
.fs25_c01252{font-size:104.192176pt;}
.fs19_c01252{font-size:107.008000pt;}
.fs17_c01252{font-size:115.456176pt;}
.fs1b_c01252{font-size:118.272176pt;}
.fs1a_c01252{font-size:122.496176pt;}
.fs29_c01252{font-size:123.904176pt;}
.fs28_c01252{font-size:126.720000pt;}
.y0_c01252{bottom:0.000000pt;}
.y1_c01252{bottom:68.000000pt;}
.y1a_c01252{bottom:213.128120pt;}
.y19_c01252{bottom:560.970120pt;}
.y17_c01252{bottom:588.219320pt;}
.y18_c01252{bottom:588.531720pt;}
.y16_c01252{bottom:615.142920pt;}
.y15_c01252{bottom:616.097720pt;}
.y13_c01252{bottom:641.437320pt;}
.y14_c01252{bottom:643.342520pt;}
.y12_c01252{bottom:644.609720pt;}
.y11_c01252{bottom:672.171320pt;}
.yf_c01252{bottom:672.488120pt;}
.y10_c01252{bottom:672.800520pt;}
.ye_c01252{bottom:698.461320pt;}
.yd_c01252{bottom:701.316920pt;}
.yc_c01252{bottom:728.874120pt;}
.yb_c01252{bottom:729.512120pt;}
.ya_c01252{bottom:751.371320pt;}
.y7_c01252{bottom:756.756920pt;}
.y8_c01252{bottom:757.073720pt;}
.y9_c01252{bottom:757.386120pt;}
.y6_c01252{bottom:776.715320pt;}
.y5_c01252{bottom:783.997320pt;}
.y3_c01252{bottom:784.952120pt;}
.y4_c01252{bottom:785.581320pt;}
.y2_c01252{bottom:822.017720pt;}
.h19_c01252{height:8.439669pt;}
.ha_c01252{height:9.283624pt;}
.h5_c01252{height:17.622000pt;}
.h10_c01252{height:17.805563pt;}
.h27_c01252{height:20.559000pt;}
.h1a_c01252{height:25.391953pt;}
.h21_c01252{height:26.601094pt;}
.h9_c01252{height:27.983141pt;}
.he_c01252{height:35.565578pt;}
.hf_c01252{height:36.539250pt;}
.h11_c01252{height:38.845125pt;}
.hc_c01252{height:41.852250pt;}
.h17_c01252{height:52.498875pt;}
.h26_c01252{height:55.803000pt;}
.h8_c01252{height:56.537250pt;}
.h4_c01252{height:56.829782pt;}
.h24_c01252{height:58.005750pt;}
.h15_c01252{height:58.923563pt;}
.h1d_c01252{height:59.089250pt;}
.h13_c01252{height:60.759188pt;}
.h1e_c01252{height:61.310059pt;}
.h1c_c01252{height:62.530016pt;}
.h22_c01252{height:63.199034pt;}
.h1f_c01252{height:63.566250pt;}
.hb_c01252{height:64.797562pt;}
.h2_c01252{height:67.366406pt;}
.hd_c01252{height:68.057516pt;}
.h12_c01252{height:69.570223pt;}
.h7_c01252{height:71.512204pt;}
.h1b_c01252{height:73.336623pt;}
.h14_c01252{height:80.975023pt;}
.h6_c01252{height:93.967673pt;}
.h3_c01252{height:96.731250pt;}
.h20_c01252{height:108.612523pt;}
.h16_c01252{height:120.417184pt;}
.h25_c01252{height:121.605173pt;}
.h18_c01252{height:123.354184pt;}
.h23_c01252{height:132.165000pt;}
.h1_c01252{height:986.666667pt;}
.h0_c01252{height:1122.666667pt;}
.w1_c01252{width:689.333333pt;}
.w0_c01252{width:793.333333pt;}
.x0_c01252{left:0.000000pt;}
.x1_c01252{left:52.000000pt;}
.x4_c01252{left:99.093853pt;}
.x29_c01252{left:100.044253pt;}
.x5_c01252{left:138.275853pt;}
.x2a_c01252{left:139.943453pt;}
.x2b_c01252{left:159.602653pt;}
.x12_c01252{left:164.631853pt;}
.x2c_c01252{left:178.236653pt;}
.x22_c01252{left:197.442653pt;}
.x6_c01252{left:198.630653pt;}
.x2d_c01252{left:206.185453pt;}
.x7_c01252{left:227.512253pt;}
.x2e_c01252{left:236.505853pt;}
.x19_c01252{left:246.181453pt;}
.xd_c01252{left:251.553853pt;}
.x1a_c01252{left:257.753453pt;}
.x1c_c01252{left:267.737053pt;}
.x8_c01252{left:269.092253pt;}
.x9_c01252{left:278.649053pt;}
.x23_c01252{left:288.399453pt;}
.x1b_c01252{left:298.220253pt;}
.x1d_c01252{left:307.794653pt;}
.x13_c01252{left:327.295453pt;}
.x1e_c01252{left:337.257053pt;}
.xa_c01252{left:347.333053pt;}
.xb_c01252{left:356.691853pt;}
.x14_c01252{left:366.864653pt;}
.x15_c01252{left:397.523853pt;}
.x24_c01252{left:406.856253pt;}
.x25_c01252{left:416.694653pt;}
.xe_c01252{left:426.242653pt;}
.xf_c01252{left:436.107453pt;}
.x1f_c01252{left:445.259453pt;}
.x26_c01252{left:455.454253pt;}
.x16_c01252{left:485.845053pt;}
.x10_c01252{left:495.784653pt;}
.x11_c01252{left:505.486653pt;}
.x17_c01252{left:524.565053pt;}
.x30_c01252{left:532.454253pt;}
.x27_c01252{left:534.746653pt;}
.x18_c01252{left:543.920653pt;}
.x28_c01252{left:564.380653pt;}
.x20_c01252{left:574.232253pt;}
.x21_c01252{left:583.428253pt;}
.xc_c01252{left:593.557053pt;}
.x2_c01252{left:611.953453pt;}
.x2f_c01252{left:646.137053pt;}
.x3_c01252{left:652.235453pt;}
}




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